diff --git a/crcsim/experiment/README.md b/crcsim/experiment/README.md index 4e486f4..dede1ca 100644 --- a/crcsim/experiment/README.md +++ b/crcsim/experiment/README.md @@ -1,10 +1,10 @@ -# Experiment: Test 100% and 80% Diagnostic Compliance for FQHCs and No Screening, All FIT, and ALL Colonocscopy +# Experiment: ACCSIS Runs and No Screening, All FIT, and ALL Colonocscopy -This branch tests 80% and 100% compliance for FQHCs 1-8 with differing screening uptake, differing test costs, and low and extra low costs for Stage III and Stage IV inital treatment. Scenarios for no screening, 100% colonoscopy, and 100% FIT were also added. +This branch tests ACCSIS inital and diagnostic screening compliance for different sites. Scenarios for no screening, 100% colonoscopy, and 100% FIT were also added to ensure model is running as expected. ## Results -The results for the 100% diagnostic compliance match a previous run from April 2025. The results differ between 80% and 100% compliance. +The results are for 100% FIT and differing diagnostic anf initial compliance with public cost. Results for North Carolina, Appalachia, Oregon, and Chicago are included now. ## Experiment Workflow @@ -70,7 +70,7 @@ The subdirectories and files in `scenarios/` must be uploaded to AWS S3 for the To upload the files to S3, run ``` -aws s3 cp ./scenarios s3://crcsim-exp-fqhc-diagnostic-compliance-comp-additional-scenarios/scenarios --recursive +aws s3 cp ./scenarios s3://crcsim-exp-accsis-scenarios/scenarios --recursive ``` *(Another note: this manual step is necessary because `boto3` does not include functionality to upload a directory to S3 recursively. Future experiments could improve this workflow by writing a function to upload the directory recursively in `prepare.py`. Or submit a patch to resolve https://github.com/boto/boto3/issues/358)* diff --git a/crcsim/experiment/prepare.py b/crcsim/experiment/prepare.py index 8a7b546..8f4efab 100644 --- a/crcsim/experiment/prepare.py +++ b/crcsim/experiment/prepare.py @@ -1,6 +1,5 @@ import json import random -from copy import deepcopy from enum import Enum, unique from pathlib import Path from typing import Callable, Dict, List, Optional @@ -200,122 +199,66 @@ def transform(params): def create_scenarios() -> List: # For each health center, define the initial compliance rate in the baseline # scenario and the implementation scenario and vary diagnostic compliance. - initial_compliance = { - "fqhc1": (0.522, 0.593), - "fqhc2": (0.154, 0.421), - "fqhc3": (0.519, 0.568), - "fqhc4": (0.278, 0.374), - "fqhc5": (0.383, 0.572), - "fqhc6": (0.211, 0.392), - "fqhc7": (0.257, 0.354), - "fqhc8": (0.190, 0.390), - } - low_initial_stage_3_treatment_cost = 67_300 - low_initial_stage_4_treatment_cost = 97_931 - extra_low_initial_stage_3_treatment_cost = 50_000 - extra_low_initial_stage_4_treatment_cost = 80_000 - - diagnostic_compliance_rates = { - "100Compliance": 1.0, - "80Compliance": 0.8, - } - FIT_cost_dict = { - "Public": 22, - "Patient+Public": 44, + compliance_rates = { + "NC": { + "initial": (0.097, 0.300), + "diagnostic": (0.444, 0.688), + }, + "APP": { + "initial": (0.439, 0.529), + "diagnostic": (0.6, 0.6), + }, + "OR": { + "initial": (0.045, 0.118), + "diagnostic": (0.15, 0.43), + }, + "CHI": { + "initial": (0.403, 0.483), + "diagnostic": (0.6, 0.6), + }, } - Colonoscopy_cost_dict = { - "Public": 912, - "Patient+Public": 1437, + costs = { + "public": { + "FIT": 22, + "Colonoscopy": 912, + }, + #'Patient-Public": {"FIT": 44, "Colonoscopy": 1437,} } scenarios = [] - for fqhc, screening_rates in initial_compliance.items(): - for compliance, diagnostic_rate in diagnostic_compliance_rates.items(): - for cost_category in ( - FIT_cost_dict.keys() & Colonoscopy_cost_dict.keys() - ): # Only common keys - FIT_cost = FIT_cost_dict[cost_category] - Col_cost = Colonoscopy_cost_dict[cost_category] - baseline = ( - Scenario( - name=f"{fqhc}_{cost_category}_{compliance}_baseline", - params=get_default_params(), - ) - .transform(transform_initial_compliance(screening_rates[0])) - .transform(transform_diagnostic_compliance(diagnostic_rate)) - .transform(transform_test_cost(Test.FIT, FIT_cost)) - .transform(transform_test_cost(Test.COLONOSCOPY, Col_cost)) - ) - scenarios.append(baseline) - - implementation = ( - Scenario( - name=f"{fqhc}_{cost_category}_{compliance}_implementation", - params=get_default_params(), - ) - .transform(transform_initial_compliance(screening_rates[1])) - .transform(transform_diagnostic_compliance(diagnostic_rate)) - .transform(transform_test_cost(Test.FIT, FIT_cost)) - .transform(transform_test_cost(Test.COLONOSCOPY, Col_cost)) - ) - scenarios.append(implementation) - - # Sensitivity analysis 2. Lower cost for stage III and stage IV initial phase - baseline_low_cost = deepcopy(baseline) - baseline_low_cost.transform( - transform_treatment_cost( - "3", "initial", low_initial_stage_3_treatment_cost - ) - ).transform( - transform_treatment_cost( - "4", "initial", low_initial_stage_4_treatment_cost - ) - ) - baseline_low_cost.name = f"{fqhc}_{cost_category}_{compliance}_baseline_low_initial_treat_cost" - scenarios.append(baseline_low_cost) - - implementation_low_cost = deepcopy(implementation) - implementation_low_cost.transform( - transform_treatment_cost( - "3", "initial", low_initial_stage_3_treatment_cost - ) - ).transform( - transform_treatment_cost( - "4", "initial", low_initial_stage_4_treatment_cost - ) + for site, rates in compliance_rates.items(): + for cost_category, test_costs in costs.items(): + fit_cost = test_costs["FIT"] + col_cost = test_costs["Colonoscopy"] + irr = 1.19 + baseline = ( + Scenario( + name=f"{site}_{cost_category}_baseline", + params=get_default_params(), ) - implementation_low_cost.name = f"{fqhc}_{cost_category}_{compliance}_implementation_low_initial_treat_cost" - scenarios.append(implementation_low_cost) - - # Sensitivity analysis 2a. Extra low cost for stage III and stage IV initial phase - baseline_extra_low_cost = deepcopy(baseline) - baseline_extra_low_cost.transform( - transform_treatment_cost( - "3", "initial", extra_low_initial_stage_3_treatment_cost - ) - ).transform( - transform_treatment_cost( - "4", "initial", extra_low_initial_stage_4_treatment_cost - ) - ) - baseline_extra_low_cost.name = f"{fqhc}_{cost_category}_{compliance}_baseline_extra_low_initial_treat_cost" - scenarios.append(baseline_extra_low_cost) - - implementation_extra_low_cost = deepcopy(implementation) - implementation_extra_low_cost.transform( - transform_treatment_cost( - "3", "initial", extra_low_initial_stage_3_treatment_cost - ) - ).transform( - transform_treatment_cost( - "4", "initial", extra_low_initial_stage_4_treatment_cost - ) + .transform(transform_initial_compliance(rates["initial"][0])) + .transform(transform_diagnostic_compliance(rates["diagnostic"][0])) + .transform(transform_test_cost(Test.FIT, fit_cost)) + .transform(transform_test_cost(Test.COLONOSCOPY, col_cost)) + .transform(transform_lesion_risk_alpha(irr)) + ) + scenarios.append(baseline) + + implementation = ( + Scenario( + name=f"{site}_{cost_category}_implementation", + params=get_default_params(), ) - implementation_extra_low_cost.name = f"{fqhc}_{cost_category}_{compliance}_implementation_extra_low_initial_treat_cost" - scenarios.append(implementation_extra_low_cost) + .transform(transform_initial_compliance(rates["initial"][1])) + .transform(transform_diagnostic_compliance(rates["diagnostic"][1])) + .transform(transform_test_cost(Test.FIT, fit_cost)) + .transform(transform_test_cost(Test.COLONOSCOPY, col_cost)) + .transform(transform_lesion_risk_alpha(irr)) + ) + scenarios.append(implementation) # No screening baseline scenario no_screening = ( diff --git a/crcsim/experiment/run_iteration.sh b/crcsim/experiment/run_iteration.sh index ed93b6e..6aea339 100755 --- a/crcsim/experiment/run_iteration.sh +++ b/crcsim/experiment/run_iteration.sh @@ -12,7 +12,7 @@ if [ ! -d "$output_dir" ]; then mkdir $output_dir fi -aws s3 cp "s3://crcsim-exp-fqhc-diagnostic-compliance-comp-additional-scenarios/scenarios/$scenario/params.json" "./params.json" +aws s3 cp "s3://crcsim-exp-accsis-scenarios/scenarios/$scenario/params.json" "./params.json" crc-simulate \ --npeople=$npeople \ @@ -23,5 +23,5 @@ crc-simulate \ crc-analyze \ --params-file=./params.json && -aws s3 cp ./results.csv "s3://crcsim-exp-fqhc-diagnostic-compliance-comp-additional-scenarios/scenarios/$scenario/results_$iteration.csv" -aws s3 cp ./output.csv "s3://crcsim-exp-fqhc-diagnostic-compliance-comp-additional-scenarios/$scenario/output_$iteration.csv" \ No newline at end of file +aws s3 cp ./results.csv "s3://crcsim-exp-accsis-scenarios/scenarios/$scenario/results_$iteration.csv" +aws s3 cp ./output.csv "s3://crcsim-exp-accsis-scenarios/$scenario/output_$iteration.csv" \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/APP_public_baseline/params.json similarity index 92% rename from crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline/params.json rename to crcsim/experiment/scenarios/APP_public_baseline/params.json index d520f72..e2b1472 100644 --- a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline/params.json +++ b/crcsim/experiment/scenarios/APP_public_baseline/params.json @@ -55,11 +55,11 @@ "surveillance_freq_cancer_rest": 5, "surveillance_end_age": 85, "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, + "initial_compliance_rate": 0.439, "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, + "diagnostic_compliance_rate": 0.6, "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, + "lesion_risk_alpha": 0.5592999999999999, "lesion_risk_beta": 2.45, "lesion_incidence_ages": [ 0, diff --git a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/APP_public_implementation/params.json similarity index 92% rename from crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation/params.json rename to crcsim/experiment/scenarios/APP_public_implementation/params.json index bdf86c6..9caf0bb 100644 --- a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation/params.json +++ b/crcsim/experiment/scenarios/APP_public_implementation/params.json @@ -55,11 +55,11 @@ "surveillance_freq_cancer_rest": 5, "surveillance_end_age": 85, "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, + "initial_compliance_rate": 0.529, "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, + "diagnostic_compliance_rate": 0.6, "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, + "lesion_risk_alpha": 0.5592999999999999, "lesion_risk_beta": 2.45, "lesion_incidence_ages": [ 0, diff --git a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/CHI_public_baseline/params.json similarity index 92% rename from crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline/params.json rename to crcsim/experiment/scenarios/CHI_public_baseline/params.json index 0f621c8..d7d07a6 100644 --- a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline/params.json +++ b/crcsim/experiment/scenarios/CHI_public_baseline/params.json @@ -55,11 +55,11 @@ "surveillance_freq_cancer_rest": 5, "surveillance_end_age": 85, "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, + "initial_compliance_rate": 0.403, "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, + "diagnostic_compliance_rate": 0.6, "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, + "lesion_risk_alpha": 0.5592999999999999, "lesion_risk_beta": 2.45, "lesion_incidence_ages": [ 0, diff --git a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/CHI_public_implementation/params.json similarity index 92% rename from crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation/params.json rename to crcsim/experiment/scenarios/CHI_public_implementation/params.json index ae1341e..d6f75ee 100644 --- a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation/params.json +++ b/crcsim/experiment/scenarios/CHI_public_implementation/params.json @@ -55,11 +55,11 @@ "surveillance_freq_cancer_rest": 5, "surveillance_end_age": 85, "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, + "initial_compliance_rate": 0.483, "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, + "diagnostic_compliance_rate": 0.6, "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, + "lesion_risk_alpha": 0.5592999999999999, "lesion_risk_beta": 2.45, "lesion_incidence_ages": [ 0, diff --git a/crcsim/experiment/scenarios/NC_public_baseline/params.json b/crcsim/experiment/scenarios/NC_public_baseline/params.json new file mode 100644 index 0000000..e343a0d --- /dev/null +++ b/crcsim/experiment/scenarios/NC_public_baseline/params.json @@ -0,0 +1,1214 @@ +{ + "max_age": 100, + "mean_duration_polyp1_polyp2": 25.5, + "mean_duration_polyp2_polyp3": 6.25, + "mean_duration_polyp2_pre": 80, + "mean_duration_polyp3_pre": 76, + "mean_duration_pre1_pre2": 3.5, + "mean_duration_pre2_pre3": 2.5, + "mean_duration_pre3_pre4": 2.5, + "mean_duration_pre1_clin1": 18, + "mean_duration_pre2_clin2": 3.9, + "mean_duration_pre3_clin3": 2.75, + "mean_duration_pre4_clin4": 1.9, + "mean_duration_clin1_dead": 135, + "mean_duration_clin2_dead": 51, + "mean_duration_clin3_dead": 19, + "mean_duration_clin4_dead": 2.7, + "proportion_survive_clin1": 0, + "proportion_survive_clin2": 0, + "proportion_survive_clin3": 0, + "proportion_survive_clin4": 0, + "cost_polypectomy": 432, + "cost_polyp_pathology": 65, + "cost_treatment_stage1_initial": 37200, + "cost_treatment_stage1_ongoing": 3818, + "cost_treatment_stage1_terminal": 75070, + "cost_treatment_stage2_initial": 52756, + "cost_treatment_stage2_ongoing": 4452, + "cost_treatment_stage2_terminal": 84626, + "cost_treatment_stage3_initial": 76639, + "cost_treatment_stage3_ongoing": 6897, + "cost_treatment_stage3_terminal": 88600, + "cost_treatment_stage4_initial": 113889, + "cost_treatment_stage4_ongoing": 32652, + "cost_treatment_stage4_terminal": 111408, + "max_ongoing_treatments": 4, + "value_loss_cancer": 0.15, + "value_life_year_ages": [ + 0, + 65, + 100 + ], + "value_life_year_dollars": [ + 217000, + 547000, + 547000 + ], + "duration_screen_skip_testing": 5, + "surveillance_freq_polyp_none": 10, + "surveillance_freq_polyp_mild": 7, + "surveillance_freq_polyp_moderate": 3, + "surveillance_freq_polyp_severe": 1, + "surveillance_freq_cancer_first": 1, + "surveillance_freq_cancer_second": 3, + "surveillance_freq_cancer_rest": 5, + "surveillance_end_age": 85, + "use_conditional_compliance": true, + "initial_compliance_rate": 0.097, + "never_compliant_rate": 0.0, + "diagnostic_compliance_rate": 0.444, + "surveillance_compliance_rate": 1.0, + "lesion_risk_alpha": 0.5592999999999999, + "lesion_risk_beta": 2.45, + "lesion_incidence_ages": [ + 0, + 20, + 30, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 85, + 100 + ], + "lesion_incidence_rates": [ + 0.0, + 0.002, + 0.002, + 0.015, + 0.02, + 0.025, + 0.027, + 0.027, + 0.027, + 0.014, + 0.011, + 0.011, + 0.011 + ], + "tests": { + "FIT": { + "proportion": 1.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 1, + "specificity": 0.97, + "sensitivity_polyp1": 0.07, + "sensitivity_polyp2": 0.07, + "sensitivity_polyp3": 0.22, + "sensitivity_cancer": 0.74, + "cost": 22, + "proportion_perforation": 0, + "cost_perforation": 0, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + "Colonoscopy": { + "proportion": 0.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 10, + "specificity": 0.86, + "sensitivity_polyp1": 0.75, + "sensitivity_polyp2": 0.85, + "sensitivity_polyp3": 0.95, + "sensitivity_cancer": 0.95, + "cost": 912, + "proportion_perforation": 0.001, + "cost_perforation": 6487, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + } + }, + "routine_tests": [ + "FIT", + "Colonoscopy" + ], + "diagnostic_test": "Colonoscopy", + "surveillance_test": "Colonoscopy", + "polypectomy_proportion_lethal": 2e-05, + "cost_discount_age": 45, + "cost_discount_rate": 0.03, + "lifespan_discount_age": 45, + "lifespan_discount_rate": 0.03, + "death_rate_black_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_female_rates": [ + 0.009674, + 0.000588, + 0.000355, + 0.000214, + 0.000248, + 0.000197, + 0.000171, + 0.000151, + 0.000139, + 0.000133, + 0.000133, + 0.00014, + 0.000154, + 0.000174, + 0.000201, + 0.000231, + 0.000267, + 0.000313, + 0.000372, + 0.000438, + 0.000508, + 0.000576, + 0.000637, + 0.000688, + 0.000731, + 0.000772, + 0.000815, + 0.000859, + 0.000908, + 0.000965, + 0.00103, + 0.001105, + 0.001186, + 0.001269, + 0.001353, + 0.00144, + 0.001536, + 0.001637, + 0.00175, + 0.00188, + 0.002033, + 0.002206, + 0.002383, + 0.002553, + 0.002721, + 0.002895, + 0.003099, + 0.003347, + 0.003655, + 0.004018, + 0.0044, + 0.004802, + 0.005266, + 0.005797, + 0.006375, + 0.006974, + 0.007576, + 0.008184, + 0.008803, + 0.009446, + 0.010126, + 0.010845, + 0.011602, + 0.012397, + 0.013231, + 0.014149, + 0.015137, + 0.016142, + 0.017121, + 0.018187, + 0.019264, + 0.020677, + 0.022638, + 0.024656, + 0.026985, + 0.029625, + 0.032101, + 0.035679, + 0.039136, + 0.042432, + 0.047008, + 0.051308, + 0.055972, + 0.061447, + 0.067875, + 0.073825, + 0.081779, + 0.090536, + 0.100072, + 0.110418, + 0.121605, + 0.133654, + 0.146574, + 0.160368, + 0.175024, + 0.190515, + 0.2068, + 0.223822, + 0.241511, + 0.259776, + 1.0 + ], + "death_rate_black_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_male_rates": [ + 0.011882, + 0.000622, + 0.000406, + 0.000347, + 0.000231, + 0.000231, + 0.000211, + 0.000192, + 0.000169, + 0.000142, + 0.000125, + 0.00014, + 0.000211, + 0.000352, + 0.000546, + 0.000757, + 0.000965, + 0.001172, + 0.00137, + 0.001554, + 0.001736, + 0.001909, + 0.002051, + 0.002154, + 0.002225, + 0.002287, + 0.002346, + 0.002397, + 0.002444, + 0.002494, + 0.002543, + 0.002598, + 0.002675, + 0.002779, + 0.002899, + 0.003034, + 0.003172, + 0.003292, + 0.003391, + 0.003483, + 0.003593, + 0.003742, + 0.003932, + 0.004165, + 0.004434, + 0.004731, + 0.005061, + 0.005438, + 0.005874, + 0.006376, + 0.006905, + 0.007485, + 0.008192, + 0.00905, + 0.01002, + 0.011026, + 0.012041, + 0.013122, + 0.014298, + 0.015581, + 0.016979, + 0.018443, + 0.01992, + 0.021354, + 0.02276, + 0.024279, + 0.025931, + 0.027551, + 0.029041, + 0.030501, + 0.031843, + 0.034142, + 0.036113, + 0.039043, + 0.041873, + 0.044907, + 0.048772, + 0.052158, + 0.057218, + 0.062038, + 0.066654, + 0.072113, + 0.079691, + 0.087605, + 0.09403, + 0.100906, + 0.110227, + 0.120226, + 0.130918, + 0.142314, + 0.154416, + 0.167219, + 0.180709, + 0.194863, + 0.209647, + 0.225017, + 0.240921, + 0.257294, + 0.274063, + 0.291147, + 1.0 + ], + "death_rate_white_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_female_rates": [ + 0.004376, + 0.000296, + 0.00018, + 0.000151, + 0.000116, + 0.000112, + 0.000102, + 9.5e-05, + 8.9e-05, + 8.5e-05, + 8.5e-05, + 9e-05, + 0.000106, + 0.000134, + 0.00017, + 0.000212, + 0.000255, + 0.000298, + 0.000339, + 0.000379, + 0.00042, + 0.000464, + 0.000504, + 0.000542, + 0.000576, + 0.000609, + 0.000643, + 0.000682, + 0.000728, + 0.000781, + 0.000839, + 0.000898, + 0.000953, + 0.001, + 0.001043, + 0.001089, + 0.001143, + 0.001197, + 0.001252, + 0.001313, + 0.001388, + 0.00148, + 0.001589, + 0.001709, + 0.00184, + 0.001979, + 0.002133, + 0.002311, + 0.00252, + 0.002762, + 0.003018, + 0.003292, + 0.0036, + 0.003941, + 0.004301, + 0.004674, + 0.00505, + 0.005425, + 0.005806, + 0.006206, + 0.006644, + 0.007124, + 0.007647, + 0.008217, + 0.008842, + 0.009515, + 0.010293, + 0.011188, + 0.01228, + 0.013537, + 0.014827, + 0.01657, + 0.018235, + 0.020046, + 0.021938, + 0.024382, + 0.027026, + 0.029965, + 0.033566, + 0.037224, + 0.041748, + 0.046426, + 0.052066, + 0.059213, + 0.066359, + 0.073798, + 0.081793, + 0.092586, + 0.104549, + 0.117741, + 0.132206, + 0.147969, + 0.165031, + 0.183365, + 0.202911, + 0.223578, + 0.245236, + 0.267725, + 0.290853, + 0.314404, + 1.0 + ], + "death_rate_white_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_male_rates": [ + 0.005273, + 0.000389, + 0.000273, + 0.000199, + 0.000147, + 0.000143, + 0.000126, + 0.000112, + 0.0001, + 9.1e-05, + 9e-05, + 0.000105, + 0.000145, + 0.000215, + 0.000309, + 0.000412, + 0.00052, + 0.000642, + 0.000778, + 0.000921, + 0.001068, + 0.001209, + 0.00133, + 0.001424, + 0.001497, + 0.001561, + 0.001624, + 0.001682, + 0.001737, + 0.001792, + 0.001847, + 0.0019, + 0.001952, + 0.002003, + 0.002053, + 0.002111, + 0.002174, + 0.002233, + 0.002285, + 0.00234, + 0.002413, + 0.002516, + 0.002649, + 0.002811, + 0.002999, + 0.003203, + 0.003433, + 0.003709, + 0.004047, + 0.004445, + 0.004874, + 0.005331, + 0.005844, + 0.006408, + 0.007003, + 0.007607, + 0.008219, + 0.008857, + 0.009542, + 0.010285, + 0.011098, + 0.011952, + 0.012814, + 0.013657, + 0.014502, + 0.015384, + 0.016444, + 0.017624, + 0.018968, + 0.020586, + 0.022109, + 0.024359, + 0.026347, + 0.02881, + 0.031309, + 0.034486, + 0.038026, + 0.042286, + 0.046547, + 0.051534, + 0.057008, + 0.062923, + 0.069911, + 0.078099, + 0.086754, + 0.096549, + 0.106472, + 0.119677, + 0.134128, + 0.149846, + 0.166829, + 0.185047, + 0.204441, + 0.224919, + 0.246354, + 0.26859, + 0.291442, + 0.3147, + 0.338142, + 0.361537, + 1.0 + ], + "us_age_distribution_rates": [ + 0.01237, + 0.01236, + 0.01234, + 0.01231, + 0.01208, + 0.01214, + 0.01213, + 0.01209, + 0.01211, + 0.01225, + 0.01225, + 0.01225, + 0.01264, + 0.0127, + 0.0126, + 0.01257, + 0.01262, + 0.01257, + 0.01257, + 0.01293, + 0.01318, + 0.01304, + 0.0131, + 0.01319, + 0.01332, + 0.01362, + 0.01389, + 0.01409, + 0.01443, + 0.01466, + 0.0146, + 0.01401, + 0.01366, + 0.0134, + 0.01342, + 0.01348, + 0.01304, + 0.0132, + 0.01317, + 0.01301, + 0.01323, + 0.01241, + 0.01214, + 0.012, + 0.01164, + 0.01197, + 0.01159, + 0.01174, + 0.01224, + 0.0129, + 0.01303, + 0.01232, + 0.01204, + 0.01203, + 0.01223, + 0.01294, + 0.01315, + 0.01311, + 0.01306, + 0.01319, + 0.01326, + 0.01278, + 0.01266, + 0.01248, + 0.01198, + 0.01183, + 0.01129, + 0.01081, + 0.01033, + 0.00995, + 0.00965, + 0.0093, + 0.00912, + 0.00941, + 0.00689, + 0.00671, + 0.00645, + 0.00649, + 0.00557, + 0.00499, + 0.00462, + 0.00424, + 0.00395, + 0.00352, + 0.00324, + 0.00298, + 0.00255, + 0.00234, + 0.00211, + 0.00188, + 0.00168, + 0.0014, + 0.0012, + 0.00099, + 0.00079, + 0.00064, + 0.00049, + 0.00036, + 0.00027, + 0.00019, + 0.00028 + ] +} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/NC_public_implementation/params.json b/crcsim/experiment/scenarios/NC_public_implementation/params.json new file mode 100644 index 0000000..f2877e7 --- /dev/null +++ b/crcsim/experiment/scenarios/NC_public_implementation/params.json @@ -0,0 +1,1214 @@ +{ + "max_age": 100, + "mean_duration_polyp1_polyp2": 25.5, + "mean_duration_polyp2_polyp3": 6.25, + "mean_duration_polyp2_pre": 80, + "mean_duration_polyp3_pre": 76, + "mean_duration_pre1_pre2": 3.5, + "mean_duration_pre2_pre3": 2.5, + "mean_duration_pre3_pre4": 2.5, + "mean_duration_pre1_clin1": 18, + "mean_duration_pre2_clin2": 3.9, + "mean_duration_pre3_clin3": 2.75, + "mean_duration_pre4_clin4": 1.9, + "mean_duration_clin1_dead": 135, + "mean_duration_clin2_dead": 51, + "mean_duration_clin3_dead": 19, + "mean_duration_clin4_dead": 2.7, + "proportion_survive_clin1": 0, + "proportion_survive_clin2": 0, + "proportion_survive_clin3": 0, + "proportion_survive_clin4": 0, + "cost_polypectomy": 432, + "cost_polyp_pathology": 65, + "cost_treatment_stage1_initial": 37200, + "cost_treatment_stage1_ongoing": 3818, + "cost_treatment_stage1_terminal": 75070, + "cost_treatment_stage2_initial": 52756, + "cost_treatment_stage2_ongoing": 4452, + "cost_treatment_stage2_terminal": 84626, + "cost_treatment_stage3_initial": 76639, + "cost_treatment_stage3_ongoing": 6897, + "cost_treatment_stage3_terminal": 88600, + "cost_treatment_stage4_initial": 113889, + "cost_treatment_stage4_ongoing": 32652, + "cost_treatment_stage4_terminal": 111408, + "max_ongoing_treatments": 4, + "value_loss_cancer": 0.15, + "value_life_year_ages": [ + 0, + 65, + 100 + ], + "value_life_year_dollars": [ + 217000, + 547000, + 547000 + ], + "duration_screen_skip_testing": 5, + "surveillance_freq_polyp_none": 10, + "surveillance_freq_polyp_mild": 7, + "surveillance_freq_polyp_moderate": 3, + "surveillance_freq_polyp_severe": 1, + "surveillance_freq_cancer_first": 1, + "surveillance_freq_cancer_second": 3, + "surveillance_freq_cancer_rest": 5, + "surveillance_end_age": 85, + "use_conditional_compliance": true, + "initial_compliance_rate": 0.3, + "never_compliant_rate": 0.0, + "diagnostic_compliance_rate": 0.688, + "surveillance_compliance_rate": 1.0, + "lesion_risk_alpha": 0.5592999999999999, + "lesion_risk_beta": 2.45, + "lesion_incidence_ages": [ + 0, + 20, + 30, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 85, + 100 + ], + "lesion_incidence_rates": [ + 0.0, + 0.002, + 0.002, + 0.015, + 0.02, + 0.025, + 0.027, + 0.027, + 0.027, + 0.014, + 0.011, + 0.011, + 0.011 + ], + "tests": { + "FIT": { + "proportion": 1.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 1, + "specificity": 0.97, + "sensitivity_polyp1": 0.07, + "sensitivity_polyp2": 0.07, + "sensitivity_polyp3": 0.22, + "sensitivity_cancer": 0.74, + "cost": 22, + "proportion_perforation": 0, + "cost_perforation": 0, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + "Colonoscopy": { + "proportion": 0.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 10, + "specificity": 0.86, + "sensitivity_polyp1": 0.75, + "sensitivity_polyp2": 0.85, + "sensitivity_polyp3": 0.95, + "sensitivity_cancer": 0.95, + "cost": 912, + "proportion_perforation": 0.001, + "cost_perforation": 6487, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + } + }, + "routine_tests": [ + "FIT", + "Colonoscopy" + ], + "diagnostic_test": "Colonoscopy", + "surveillance_test": "Colonoscopy", + "polypectomy_proportion_lethal": 2e-05, + "cost_discount_age": 45, + "cost_discount_rate": 0.03, + "lifespan_discount_age": 45, + "lifespan_discount_rate": 0.03, + "death_rate_black_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_female_rates": [ + 0.009674, + 0.000588, + 0.000355, + 0.000214, + 0.000248, + 0.000197, + 0.000171, + 0.000151, + 0.000139, + 0.000133, + 0.000133, + 0.00014, + 0.000154, + 0.000174, + 0.000201, + 0.000231, + 0.000267, + 0.000313, + 0.000372, + 0.000438, + 0.000508, + 0.000576, + 0.000637, + 0.000688, + 0.000731, + 0.000772, + 0.000815, + 0.000859, + 0.000908, + 0.000965, + 0.00103, + 0.001105, + 0.001186, + 0.001269, + 0.001353, + 0.00144, + 0.001536, + 0.001637, + 0.00175, + 0.00188, + 0.002033, + 0.002206, + 0.002383, + 0.002553, + 0.002721, + 0.002895, + 0.003099, + 0.003347, + 0.003655, + 0.004018, + 0.0044, + 0.004802, + 0.005266, + 0.005797, + 0.006375, + 0.006974, + 0.007576, + 0.008184, + 0.008803, + 0.009446, + 0.010126, + 0.010845, + 0.011602, + 0.012397, + 0.013231, + 0.014149, + 0.015137, + 0.016142, + 0.017121, + 0.018187, + 0.019264, + 0.020677, + 0.022638, + 0.024656, + 0.026985, + 0.029625, + 0.032101, + 0.035679, + 0.039136, + 0.042432, + 0.047008, + 0.051308, + 0.055972, + 0.061447, + 0.067875, + 0.073825, + 0.081779, + 0.090536, + 0.100072, + 0.110418, + 0.121605, + 0.133654, + 0.146574, + 0.160368, + 0.175024, + 0.190515, + 0.2068, + 0.223822, + 0.241511, + 0.259776, + 1.0 + ], + "death_rate_black_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_male_rates": [ + 0.011882, + 0.000622, + 0.000406, + 0.000347, + 0.000231, + 0.000231, + 0.000211, + 0.000192, + 0.000169, + 0.000142, + 0.000125, + 0.00014, + 0.000211, + 0.000352, + 0.000546, + 0.000757, + 0.000965, + 0.001172, + 0.00137, + 0.001554, + 0.001736, + 0.001909, + 0.002051, + 0.002154, + 0.002225, + 0.002287, + 0.002346, + 0.002397, + 0.002444, + 0.002494, + 0.002543, + 0.002598, + 0.002675, + 0.002779, + 0.002899, + 0.003034, + 0.003172, + 0.003292, + 0.003391, + 0.003483, + 0.003593, + 0.003742, + 0.003932, + 0.004165, + 0.004434, + 0.004731, + 0.005061, + 0.005438, + 0.005874, + 0.006376, + 0.006905, + 0.007485, + 0.008192, + 0.00905, + 0.01002, + 0.011026, + 0.012041, + 0.013122, + 0.014298, + 0.015581, + 0.016979, + 0.018443, + 0.01992, + 0.021354, + 0.02276, + 0.024279, + 0.025931, + 0.027551, + 0.029041, + 0.030501, + 0.031843, + 0.034142, + 0.036113, + 0.039043, + 0.041873, + 0.044907, + 0.048772, + 0.052158, + 0.057218, + 0.062038, + 0.066654, + 0.072113, + 0.079691, + 0.087605, + 0.09403, + 0.100906, + 0.110227, + 0.120226, + 0.130918, + 0.142314, + 0.154416, + 0.167219, + 0.180709, + 0.194863, + 0.209647, + 0.225017, + 0.240921, + 0.257294, + 0.274063, + 0.291147, + 1.0 + ], + "death_rate_white_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_female_rates": [ + 0.004376, + 0.000296, + 0.00018, + 0.000151, + 0.000116, + 0.000112, + 0.000102, + 9.5e-05, + 8.9e-05, + 8.5e-05, + 8.5e-05, + 9e-05, + 0.000106, + 0.000134, + 0.00017, + 0.000212, + 0.000255, + 0.000298, + 0.000339, + 0.000379, + 0.00042, + 0.000464, + 0.000504, + 0.000542, + 0.000576, + 0.000609, + 0.000643, + 0.000682, + 0.000728, + 0.000781, + 0.000839, + 0.000898, + 0.000953, + 0.001, + 0.001043, + 0.001089, + 0.001143, + 0.001197, + 0.001252, + 0.001313, + 0.001388, + 0.00148, + 0.001589, + 0.001709, + 0.00184, + 0.001979, + 0.002133, + 0.002311, + 0.00252, + 0.002762, + 0.003018, + 0.003292, + 0.0036, + 0.003941, + 0.004301, + 0.004674, + 0.00505, + 0.005425, + 0.005806, + 0.006206, + 0.006644, + 0.007124, + 0.007647, + 0.008217, + 0.008842, + 0.009515, + 0.010293, + 0.011188, + 0.01228, + 0.013537, + 0.014827, + 0.01657, + 0.018235, + 0.020046, + 0.021938, + 0.024382, + 0.027026, + 0.029965, + 0.033566, + 0.037224, + 0.041748, + 0.046426, + 0.052066, + 0.059213, + 0.066359, + 0.073798, + 0.081793, + 0.092586, + 0.104549, + 0.117741, + 0.132206, + 0.147969, + 0.165031, + 0.183365, + 0.202911, + 0.223578, + 0.245236, + 0.267725, + 0.290853, + 0.314404, + 1.0 + ], + "death_rate_white_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_male_rates": [ + 0.005273, + 0.000389, + 0.000273, + 0.000199, + 0.000147, + 0.000143, + 0.000126, + 0.000112, + 0.0001, + 9.1e-05, + 9e-05, + 0.000105, + 0.000145, + 0.000215, + 0.000309, + 0.000412, + 0.00052, + 0.000642, + 0.000778, + 0.000921, + 0.001068, + 0.001209, + 0.00133, + 0.001424, + 0.001497, + 0.001561, + 0.001624, + 0.001682, + 0.001737, + 0.001792, + 0.001847, + 0.0019, + 0.001952, + 0.002003, + 0.002053, + 0.002111, + 0.002174, + 0.002233, + 0.002285, + 0.00234, + 0.002413, + 0.002516, + 0.002649, + 0.002811, + 0.002999, + 0.003203, + 0.003433, + 0.003709, + 0.004047, + 0.004445, + 0.004874, + 0.005331, + 0.005844, + 0.006408, + 0.007003, + 0.007607, + 0.008219, + 0.008857, + 0.009542, + 0.010285, + 0.011098, + 0.011952, + 0.012814, + 0.013657, + 0.014502, + 0.015384, + 0.016444, + 0.017624, + 0.018968, + 0.020586, + 0.022109, + 0.024359, + 0.026347, + 0.02881, + 0.031309, + 0.034486, + 0.038026, + 0.042286, + 0.046547, + 0.051534, + 0.057008, + 0.062923, + 0.069911, + 0.078099, + 0.086754, + 0.096549, + 0.106472, + 0.119677, + 0.134128, + 0.149846, + 0.166829, + 0.185047, + 0.204441, + 0.224919, + 0.246354, + 0.26859, + 0.291442, + 0.3147, + 0.338142, + 0.361537, + 1.0 + ], + "us_age_distribution_rates": [ + 0.01237, + 0.01236, + 0.01234, + 0.01231, + 0.01208, + 0.01214, + 0.01213, + 0.01209, + 0.01211, + 0.01225, + 0.01225, + 0.01225, + 0.01264, + 0.0127, + 0.0126, + 0.01257, + 0.01262, + 0.01257, + 0.01257, + 0.01293, + 0.01318, + 0.01304, + 0.0131, + 0.01319, + 0.01332, + 0.01362, + 0.01389, + 0.01409, + 0.01443, + 0.01466, + 0.0146, + 0.01401, + 0.01366, + 0.0134, + 0.01342, + 0.01348, + 0.01304, + 0.0132, + 0.01317, + 0.01301, + 0.01323, + 0.01241, + 0.01214, + 0.012, + 0.01164, + 0.01197, + 0.01159, + 0.01174, + 0.01224, + 0.0129, + 0.01303, + 0.01232, + 0.01204, + 0.01203, + 0.01223, + 0.01294, + 0.01315, + 0.01311, + 0.01306, + 0.01319, + 0.01326, + 0.01278, + 0.01266, + 0.01248, + 0.01198, + 0.01183, + 0.01129, + 0.01081, + 0.01033, + 0.00995, + 0.00965, + 0.0093, + 0.00912, + 0.00941, + 0.00689, + 0.00671, + 0.00645, + 0.00649, + 0.00557, + 0.00499, + 0.00462, + 0.00424, + 0.00395, + 0.00352, + 0.00324, + 0.00298, + 0.00255, + 0.00234, + 0.00211, + 0.00188, + 0.00168, + 0.0014, + 0.0012, + 0.00099, + 0.00079, + 0.00064, + 0.00049, + 0.00036, + 0.00027, + 0.00019, + 0.00028 + ] +} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/OR_public_baseline/params.json b/crcsim/experiment/scenarios/OR_public_baseline/params.json new file mode 100644 index 0000000..9ef1690 --- /dev/null +++ b/crcsim/experiment/scenarios/OR_public_baseline/params.json @@ -0,0 +1,1214 @@ +{ + "max_age": 100, + "mean_duration_polyp1_polyp2": 25.5, + "mean_duration_polyp2_polyp3": 6.25, + "mean_duration_polyp2_pre": 80, + "mean_duration_polyp3_pre": 76, + "mean_duration_pre1_pre2": 3.5, + "mean_duration_pre2_pre3": 2.5, + "mean_duration_pre3_pre4": 2.5, + "mean_duration_pre1_clin1": 18, + "mean_duration_pre2_clin2": 3.9, + "mean_duration_pre3_clin3": 2.75, + "mean_duration_pre4_clin4": 1.9, + "mean_duration_clin1_dead": 135, + "mean_duration_clin2_dead": 51, + "mean_duration_clin3_dead": 19, + "mean_duration_clin4_dead": 2.7, + "proportion_survive_clin1": 0, + "proportion_survive_clin2": 0, + "proportion_survive_clin3": 0, + "proportion_survive_clin4": 0, + "cost_polypectomy": 432, + "cost_polyp_pathology": 65, + "cost_treatment_stage1_initial": 37200, + "cost_treatment_stage1_ongoing": 3818, + "cost_treatment_stage1_terminal": 75070, + "cost_treatment_stage2_initial": 52756, + "cost_treatment_stage2_ongoing": 4452, + "cost_treatment_stage2_terminal": 84626, + "cost_treatment_stage3_initial": 76639, + "cost_treatment_stage3_ongoing": 6897, + "cost_treatment_stage3_terminal": 88600, + "cost_treatment_stage4_initial": 113889, + "cost_treatment_stage4_ongoing": 32652, + "cost_treatment_stage4_terminal": 111408, + "max_ongoing_treatments": 4, + "value_loss_cancer": 0.15, + "value_life_year_ages": [ + 0, + 65, + 100 + ], + "value_life_year_dollars": [ + 217000, + 547000, + 547000 + ], + "duration_screen_skip_testing": 5, + "surveillance_freq_polyp_none": 10, + "surveillance_freq_polyp_mild": 7, + "surveillance_freq_polyp_moderate": 3, + "surveillance_freq_polyp_severe": 1, + "surveillance_freq_cancer_first": 1, + "surveillance_freq_cancer_second": 3, + "surveillance_freq_cancer_rest": 5, + "surveillance_end_age": 85, + "use_conditional_compliance": true, + "initial_compliance_rate": 0.045, + "never_compliant_rate": 0.0, + "diagnostic_compliance_rate": 0.15, + "surveillance_compliance_rate": 1.0, + "lesion_risk_alpha": 0.5592999999999999, + "lesion_risk_beta": 2.45, + "lesion_incidence_ages": [ + 0, + 20, + 30, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 85, + 100 + ], + "lesion_incidence_rates": [ + 0.0, + 0.002, + 0.002, + 0.015, + 0.02, + 0.025, + 0.027, + 0.027, + 0.027, + 0.014, + 0.011, + 0.011, + 0.011 + ], + "tests": { + "FIT": { + "proportion": 1.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 1, + "specificity": 0.97, + "sensitivity_polyp1": 0.07, + "sensitivity_polyp2": 0.07, + "sensitivity_polyp3": 0.22, + "sensitivity_cancer": 0.74, + "cost": 22, + "proportion_perforation": 0, + "cost_perforation": 0, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + "Colonoscopy": { + "proportion": 0.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 10, + "specificity": 0.86, + "sensitivity_polyp1": 0.75, + "sensitivity_polyp2": 0.85, + "sensitivity_polyp3": 0.95, + "sensitivity_cancer": 0.95, + "cost": 912, + "proportion_perforation": 0.001, + "cost_perforation": 6487, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + } + }, + "routine_tests": [ + "FIT", + "Colonoscopy" + ], + "diagnostic_test": "Colonoscopy", + "surveillance_test": "Colonoscopy", + "polypectomy_proportion_lethal": 2e-05, + "cost_discount_age": 45, + "cost_discount_rate": 0.03, + "lifespan_discount_age": 45, + "lifespan_discount_rate": 0.03, + "death_rate_black_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_female_rates": [ + 0.009674, + 0.000588, + 0.000355, + 0.000214, + 0.000248, + 0.000197, + 0.000171, + 0.000151, + 0.000139, + 0.000133, + 0.000133, + 0.00014, + 0.000154, + 0.000174, + 0.000201, + 0.000231, + 0.000267, + 0.000313, + 0.000372, + 0.000438, + 0.000508, + 0.000576, + 0.000637, + 0.000688, + 0.000731, + 0.000772, + 0.000815, + 0.000859, + 0.000908, + 0.000965, + 0.00103, + 0.001105, + 0.001186, + 0.001269, + 0.001353, + 0.00144, + 0.001536, + 0.001637, + 0.00175, + 0.00188, + 0.002033, + 0.002206, + 0.002383, + 0.002553, + 0.002721, + 0.002895, + 0.003099, + 0.003347, + 0.003655, + 0.004018, + 0.0044, + 0.004802, + 0.005266, + 0.005797, + 0.006375, + 0.006974, + 0.007576, + 0.008184, + 0.008803, + 0.009446, + 0.010126, + 0.010845, + 0.011602, + 0.012397, + 0.013231, + 0.014149, + 0.015137, + 0.016142, + 0.017121, + 0.018187, + 0.019264, + 0.020677, + 0.022638, + 0.024656, + 0.026985, + 0.029625, + 0.032101, + 0.035679, + 0.039136, + 0.042432, + 0.047008, + 0.051308, + 0.055972, + 0.061447, + 0.067875, + 0.073825, + 0.081779, + 0.090536, + 0.100072, + 0.110418, + 0.121605, + 0.133654, + 0.146574, + 0.160368, + 0.175024, + 0.190515, + 0.2068, + 0.223822, + 0.241511, + 0.259776, + 1.0 + ], + "death_rate_black_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_male_rates": [ + 0.011882, + 0.000622, + 0.000406, + 0.000347, + 0.000231, + 0.000231, + 0.000211, + 0.000192, + 0.000169, + 0.000142, + 0.000125, + 0.00014, + 0.000211, + 0.000352, + 0.000546, + 0.000757, + 0.000965, + 0.001172, + 0.00137, + 0.001554, + 0.001736, + 0.001909, + 0.002051, + 0.002154, + 0.002225, + 0.002287, + 0.002346, + 0.002397, + 0.002444, + 0.002494, + 0.002543, + 0.002598, + 0.002675, + 0.002779, + 0.002899, + 0.003034, + 0.003172, + 0.003292, + 0.003391, + 0.003483, + 0.003593, + 0.003742, + 0.003932, + 0.004165, + 0.004434, + 0.004731, + 0.005061, + 0.005438, + 0.005874, + 0.006376, + 0.006905, + 0.007485, + 0.008192, + 0.00905, + 0.01002, + 0.011026, + 0.012041, + 0.013122, + 0.014298, + 0.015581, + 0.016979, + 0.018443, + 0.01992, + 0.021354, + 0.02276, + 0.024279, + 0.025931, + 0.027551, + 0.029041, + 0.030501, + 0.031843, + 0.034142, + 0.036113, + 0.039043, + 0.041873, + 0.044907, + 0.048772, + 0.052158, + 0.057218, + 0.062038, + 0.066654, + 0.072113, + 0.079691, + 0.087605, + 0.09403, + 0.100906, + 0.110227, + 0.120226, + 0.130918, + 0.142314, + 0.154416, + 0.167219, + 0.180709, + 0.194863, + 0.209647, + 0.225017, + 0.240921, + 0.257294, + 0.274063, + 0.291147, + 1.0 + ], + "death_rate_white_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_female_rates": [ + 0.004376, + 0.000296, + 0.00018, + 0.000151, + 0.000116, + 0.000112, + 0.000102, + 9.5e-05, + 8.9e-05, + 8.5e-05, + 8.5e-05, + 9e-05, + 0.000106, + 0.000134, + 0.00017, + 0.000212, + 0.000255, + 0.000298, + 0.000339, + 0.000379, + 0.00042, + 0.000464, + 0.000504, + 0.000542, + 0.000576, + 0.000609, + 0.000643, + 0.000682, + 0.000728, + 0.000781, + 0.000839, + 0.000898, + 0.000953, + 0.001, + 0.001043, + 0.001089, + 0.001143, + 0.001197, + 0.001252, + 0.001313, + 0.001388, + 0.00148, + 0.001589, + 0.001709, + 0.00184, + 0.001979, + 0.002133, + 0.002311, + 0.00252, + 0.002762, + 0.003018, + 0.003292, + 0.0036, + 0.003941, + 0.004301, + 0.004674, + 0.00505, + 0.005425, + 0.005806, + 0.006206, + 0.006644, + 0.007124, + 0.007647, + 0.008217, + 0.008842, + 0.009515, + 0.010293, + 0.011188, + 0.01228, + 0.013537, + 0.014827, + 0.01657, + 0.018235, + 0.020046, + 0.021938, + 0.024382, + 0.027026, + 0.029965, + 0.033566, + 0.037224, + 0.041748, + 0.046426, + 0.052066, + 0.059213, + 0.066359, + 0.073798, + 0.081793, + 0.092586, + 0.104549, + 0.117741, + 0.132206, + 0.147969, + 0.165031, + 0.183365, + 0.202911, + 0.223578, + 0.245236, + 0.267725, + 0.290853, + 0.314404, + 1.0 + ], + "death_rate_white_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_male_rates": [ + 0.005273, + 0.000389, + 0.000273, + 0.000199, + 0.000147, + 0.000143, + 0.000126, + 0.000112, + 0.0001, + 9.1e-05, + 9e-05, + 0.000105, + 0.000145, + 0.000215, + 0.000309, + 0.000412, + 0.00052, + 0.000642, + 0.000778, + 0.000921, + 0.001068, + 0.001209, + 0.00133, + 0.001424, + 0.001497, + 0.001561, + 0.001624, + 0.001682, + 0.001737, + 0.001792, + 0.001847, + 0.0019, + 0.001952, + 0.002003, + 0.002053, + 0.002111, + 0.002174, + 0.002233, + 0.002285, + 0.00234, + 0.002413, + 0.002516, + 0.002649, + 0.002811, + 0.002999, + 0.003203, + 0.003433, + 0.003709, + 0.004047, + 0.004445, + 0.004874, + 0.005331, + 0.005844, + 0.006408, + 0.007003, + 0.007607, + 0.008219, + 0.008857, + 0.009542, + 0.010285, + 0.011098, + 0.011952, + 0.012814, + 0.013657, + 0.014502, + 0.015384, + 0.016444, + 0.017624, + 0.018968, + 0.020586, + 0.022109, + 0.024359, + 0.026347, + 0.02881, + 0.031309, + 0.034486, + 0.038026, + 0.042286, + 0.046547, + 0.051534, + 0.057008, + 0.062923, + 0.069911, + 0.078099, + 0.086754, + 0.096549, + 0.106472, + 0.119677, + 0.134128, + 0.149846, + 0.166829, + 0.185047, + 0.204441, + 0.224919, + 0.246354, + 0.26859, + 0.291442, + 0.3147, + 0.338142, + 0.361537, + 1.0 + ], + "us_age_distribution_rates": [ + 0.01237, + 0.01236, + 0.01234, + 0.01231, + 0.01208, + 0.01214, + 0.01213, + 0.01209, + 0.01211, + 0.01225, + 0.01225, + 0.01225, + 0.01264, + 0.0127, + 0.0126, + 0.01257, + 0.01262, + 0.01257, + 0.01257, + 0.01293, + 0.01318, + 0.01304, + 0.0131, + 0.01319, + 0.01332, + 0.01362, + 0.01389, + 0.01409, + 0.01443, + 0.01466, + 0.0146, + 0.01401, + 0.01366, + 0.0134, + 0.01342, + 0.01348, + 0.01304, + 0.0132, + 0.01317, + 0.01301, + 0.01323, + 0.01241, + 0.01214, + 0.012, + 0.01164, + 0.01197, + 0.01159, + 0.01174, + 0.01224, + 0.0129, + 0.01303, + 0.01232, + 0.01204, + 0.01203, + 0.01223, + 0.01294, + 0.01315, + 0.01311, + 0.01306, + 0.01319, + 0.01326, + 0.01278, + 0.01266, + 0.01248, + 0.01198, + 0.01183, + 0.01129, + 0.01081, + 0.01033, + 0.00995, + 0.00965, + 0.0093, + 0.00912, + 0.00941, + 0.00689, + 0.00671, + 0.00645, + 0.00649, + 0.00557, + 0.00499, + 0.00462, + 0.00424, + 0.00395, + 0.00352, + 0.00324, + 0.00298, + 0.00255, + 0.00234, + 0.00211, + 0.00188, + 0.00168, + 0.0014, + 0.0012, + 0.00099, + 0.00079, + 0.00064, + 0.00049, + 0.00036, + 0.00027, + 0.00019, + 0.00028 + ] +} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/OR_public_implementation/params.json b/crcsim/experiment/scenarios/OR_public_implementation/params.json new file mode 100644 index 0000000..14188d1 --- /dev/null +++ b/crcsim/experiment/scenarios/OR_public_implementation/params.json @@ -0,0 +1,1214 @@ +{ + "max_age": 100, + "mean_duration_polyp1_polyp2": 25.5, + "mean_duration_polyp2_polyp3": 6.25, + "mean_duration_polyp2_pre": 80, + "mean_duration_polyp3_pre": 76, + "mean_duration_pre1_pre2": 3.5, + "mean_duration_pre2_pre3": 2.5, + "mean_duration_pre3_pre4": 2.5, + "mean_duration_pre1_clin1": 18, + "mean_duration_pre2_clin2": 3.9, + "mean_duration_pre3_clin3": 2.75, + "mean_duration_pre4_clin4": 1.9, + "mean_duration_clin1_dead": 135, + "mean_duration_clin2_dead": 51, + "mean_duration_clin3_dead": 19, + "mean_duration_clin4_dead": 2.7, + "proportion_survive_clin1": 0, + "proportion_survive_clin2": 0, + "proportion_survive_clin3": 0, + "proportion_survive_clin4": 0, + "cost_polypectomy": 432, + "cost_polyp_pathology": 65, + "cost_treatment_stage1_initial": 37200, + "cost_treatment_stage1_ongoing": 3818, + "cost_treatment_stage1_terminal": 75070, + "cost_treatment_stage2_initial": 52756, + "cost_treatment_stage2_ongoing": 4452, + "cost_treatment_stage2_terminal": 84626, + "cost_treatment_stage3_initial": 76639, + "cost_treatment_stage3_ongoing": 6897, + "cost_treatment_stage3_terminal": 88600, + "cost_treatment_stage4_initial": 113889, + "cost_treatment_stage4_ongoing": 32652, + "cost_treatment_stage4_terminal": 111408, + "max_ongoing_treatments": 4, + "value_loss_cancer": 0.15, + "value_life_year_ages": [ + 0, + 65, + 100 + ], + "value_life_year_dollars": [ + 217000, + 547000, + 547000 + ], + "duration_screen_skip_testing": 5, + "surveillance_freq_polyp_none": 10, + "surveillance_freq_polyp_mild": 7, + "surveillance_freq_polyp_moderate": 3, + "surveillance_freq_polyp_severe": 1, + "surveillance_freq_cancer_first": 1, + "surveillance_freq_cancer_second": 3, + "surveillance_freq_cancer_rest": 5, + "surveillance_end_age": 85, + "use_conditional_compliance": true, + "initial_compliance_rate": 0.118, + "never_compliant_rate": 0.0, + "diagnostic_compliance_rate": 0.43, + "surveillance_compliance_rate": 1.0, + "lesion_risk_alpha": 0.5592999999999999, + "lesion_risk_beta": 2.45, + "lesion_incidence_ages": [ + 0, + 20, + 30, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 85, + 100 + ], + "lesion_incidence_rates": [ + 0.0, + 0.002, + 0.002, + 0.015, + 0.02, + 0.025, + 0.027, + 0.027, + 0.027, + 0.014, + 0.011, + 0.011, + 0.011 + ], + "tests": { + "FIT": { + "proportion": 1.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 1, + "specificity": 0.97, + "sensitivity_polyp1": 0.07, + "sensitivity_polyp2": 0.07, + "sensitivity_polyp3": 0.22, + "sensitivity_cancer": 0.74, + "cost": 22, + "proportion_perforation": 0, + "cost_perforation": 0, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + "Colonoscopy": { + "proportion": 0.0, + "routine_start": 45, + "routine_end": 75, + "routine_freq": 10, + "specificity": 0.86, + "sensitivity_polyp1": 0.75, + "sensitivity_polyp2": 0.85, + "sensitivity_polyp3": 0.95, + "sensitivity_cancer": 0.95, + "cost": 912, + "proportion_perforation": 0.001, + "cost_perforation": 6487, + "compliance_rate_given_prev_compliant": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "compliance_rate_given_not_prev_compliant": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + } + }, + "routine_tests": [ + "FIT", + "Colonoscopy" + ], + "diagnostic_test": "Colonoscopy", + "surveillance_test": "Colonoscopy", + "polypectomy_proportion_lethal": 2e-05, + "cost_discount_age": 45, + "cost_discount_rate": 0.03, + "lifespan_discount_age": 45, + "lifespan_discount_rate": 0.03, + "death_rate_black_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_female_rates": [ + 0.009674, + 0.000588, + 0.000355, + 0.000214, + 0.000248, + 0.000197, + 0.000171, + 0.000151, + 0.000139, + 0.000133, + 0.000133, + 0.00014, + 0.000154, + 0.000174, + 0.000201, + 0.000231, + 0.000267, + 0.000313, + 0.000372, + 0.000438, + 0.000508, + 0.000576, + 0.000637, + 0.000688, + 0.000731, + 0.000772, + 0.000815, + 0.000859, + 0.000908, + 0.000965, + 0.00103, + 0.001105, + 0.001186, + 0.001269, + 0.001353, + 0.00144, + 0.001536, + 0.001637, + 0.00175, + 0.00188, + 0.002033, + 0.002206, + 0.002383, + 0.002553, + 0.002721, + 0.002895, + 0.003099, + 0.003347, + 0.003655, + 0.004018, + 0.0044, + 0.004802, + 0.005266, + 0.005797, + 0.006375, + 0.006974, + 0.007576, + 0.008184, + 0.008803, + 0.009446, + 0.010126, + 0.010845, + 0.011602, + 0.012397, + 0.013231, + 0.014149, + 0.015137, + 0.016142, + 0.017121, + 0.018187, + 0.019264, + 0.020677, + 0.022638, + 0.024656, + 0.026985, + 0.029625, + 0.032101, + 0.035679, + 0.039136, + 0.042432, + 0.047008, + 0.051308, + 0.055972, + 0.061447, + 0.067875, + 0.073825, + 0.081779, + 0.090536, + 0.100072, + 0.110418, + 0.121605, + 0.133654, + 0.146574, + 0.160368, + 0.175024, + 0.190515, + 0.2068, + 0.223822, + 0.241511, + 0.259776, + 1.0 + ], + "death_rate_black_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_black_male_rates": [ + 0.011882, + 0.000622, + 0.000406, + 0.000347, + 0.000231, + 0.000231, + 0.000211, + 0.000192, + 0.000169, + 0.000142, + 0.000125, + 0.00014, + 0.000211, + 0.000352, + 0.000546, + 0.000757, + 0.000965, + 0.001172, + 0.00137, + 0.001554, + 0.001736, + 0.001909, + 0.002051, + 0.002154, + 0.002225, + 0.002287, + 0.002346, + 0.002397, + 0.002444, + 0.002494, + 0.002543, + 0.002598, + 0.002675, + 0.002779, + 0.002899, + 0.003034, + 0.003172, + 0.003292, + 0.003391, + 0.003483, + 0.003593, + 0.003742, + 0.003932, + 0.004165, + 0.004434, + 0.004731, + 0.005061, + 0.005438, + 0.005874, + 0.006376, + 0.006905, + 0.007485, + 0.008192, + 0.00905, + 0.01002, + 0.011026, + 0.012041, + 0.013122, + 0.014298, + 0.015581, + 0.016979, + 0.018443, + 0.01992, + 0.021354, + 0.02276, + 0.024279, + 0.025931, + 0.027551, + 0.029041, + 0.030501, + 0.031843, + 0.034142, + 0.036113, + 0.039043, + 0.041873, + 0.044907, + 0.048772, + 0.052158, + 0.057218, + 0.062038, + 0.066654, + 0.072113, + 0.079691, + 0.087605, + 0.09403, + 0.100906, + 0.110227, + 0.120226, + 0.130918, + 0.142314, + 0.154416, + 0.167219, + 0.180709, + 0.194863, + 0.209647, + 0.225017, + 0.240921, + 0.257294, + 0.274063, + 0.291147, + 1.0 + ], + "death_rate_white_female_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_female_rates": [ + 0.004376, + 0.000296, + 0.00018, + 0.000151, + 0.000116, + 0.000112, + 0.000102, + 9.5e-05, + 8.9e-05, + 8.5e-05, + 8.5e-05, + 9e-05, + 0.000106, + 0.000134, + 0.00017, + 0.000212, + 0.000255, + 0.000298, + 0.000339, + 0.000379, + 0.00042, + 0.000464, + 0.000504, + 0.000542, + 0.000576, + 0.000609, + 0.000643, + 0.000682, + 0.000728, + 0.000781, + 0.000839, + 0.000898, + 0.000953, + 0.001, + 0.001043, + 0.001089, + 0.001143, + 0.001197, + 0.001252, + 0.001313, + 0.001388, + 0.00148, + 0.001589, + 0.001709, + 0.00184, + 0.001979, + 0.002133, + 0.002311, + 0.00252, + 0.002762, + 0.003018, + 0.003292, + 0.0036, + 0.003941, + 0.004301, + 0.004674, + 0.00505, + 0.005425, + 0.005806, + 0.006206, + 0.006644, + 0.007124, + 0.007647, + 0.008217, + 0.008842, + 0.009515, + 0.010293, + 0.011188, + 0.01228, + 0.013537, + 0.014827, + 0.01657, + 0.018235, + 0.020046, + 0.021938, + 0.024382, + 0.027026, + 0.029965, + 0.033566, + 0.037224, + 0.041748, + 0.046426, + 0.052066, + 0.059213, + 0.066359, + 0.073798, + 0.081793, + 0.092586, + 0.104549, + 0.117741, + 0.132206, + 0.147969, + 0.165031, + 0.183365, + 0.202911, + 0.223578, + 0.245236, + 0.267725, + 0.290853, + 0.314404, + 1.0 + ], + "death_rate_white_male_ages": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "death_rate_white_male_rates": [ + 0.005273, + 0.000389, + 0.000273, + 0.000199, + 0.000147, + 0.000143, + 0.000126, + 0.000112, + 0.0001, + 9.1e-05, + 9e-05, + 0.000105, + 0.000145, + 0.000215, + 0.000309, + 0.000412, + 0.00052, + 0.000642, + 0.000778, + 0.000921, + 0.001068, + 0.001209, + 0.00133, + 0.001424, + 0.001497, + 0.001561, + 0.001624, + 0.001682, + 0.001737, + 0.001792, + 0.001847, + 0.0019, + 0.001952, + 0.002003, + 0.002053, + 0.002111, + 0.002174, + 0.002233, + 0.002285, + 0.00234, + 0.002413, + 0.002516, + 0.002649, + 0.002811, + 0.002999, + 0.003203, + 0.003433, + 0.003709, + 0.004047, + 0.004445, + 0.004874, + 0.005331, + 0.005844, + 0.006408, + 0.007003, + 0.007607, + 0.008219, + 0.008857, + 0.009542, + 0.010285, + 0.011098, + 0.011952, + 0.012814, + 0.013657, + 0.014502, + 0.015384, + 0.016444, + 0.017624, + 0.018968, + 0.020586, + 0.022109, + 0.024359, + 0.026347, + 0.02881, + 0.031309, + 0.034486, + 0.038026, + 0.042286, + 0.046547, + 0.051534, + 0.057008, + 0.062923, + 0.069911, + 0.078099, + 0.086754, + 0.096549, + 0.106472, + 0.119677, + 0.134128, + 0.149846, + 0.166829, + 0.185047, + 0.204441, + 0.224919, + 0.246354, + 0.26859, + 0.291442, + 0.3147, + 0.338142, + 0.361537, + 1.0 + ], + "us_age_distribution_rates": [ + 0.01237, + 0.01236, + 0.01234, + 0.01231, + 0.01208, + 0.01214, + 0.01213, + 0.01209, + 0.01211, + 0.01225, + 0.01225, + 0.01225, + 0.01264, + 0.0127, + 0.0126, + 0.01257, + 0.01262, + 0.01257, + 0.01257, + 0.01293, + 0.01318, + 0.01304, + 0.0131, + 0.01319, + 0.01332, + 0.01362, + 0.01389, + 0.01409, + 0.01443, + 0.01466, + 0.0146, + 0.01401, + 0.01366, + 0.0134, + 0.01342, + 0.01348, + 0.01304, + 0.0132, + 0.01317, + 0.01301, + 0.01323, + 0.01241, + 0.01214, + 0.012, + 0.01164, + 0.01197, + 0.01159, + 0.01174, + 0.01224, + 0.0129, + 0.01303, + 0.01232, + 0.01204, + 0.01203, + 0.01223, + 0.01294, + 0.01315, + 0.01311, + 0.01306, + 0.01319, + 0.01326, + 0.01278, + 0.01266, + 0.01248, + 0.01198, + 0.01183, + 0.01129, + 0.01081, + 0.01033, + 0.00995, + 0.00965, + 0.0093, + 0.00912, + 0.00941, + 0.00689, + 0.00671, + 0.00645, + 0.00649, + 0.00557, + 0.00499, + 0.00462, + 0.00424, + 0.00395, + 0.00352, + 0.00324, + 0.00298, + 0.00255, + 0.00234, + 0.00211, + 0.00188, + 0.00168, + 0.0014, + 0.0012, + 0.00099, + 0.00079, + 0.00064, + 0.00049, + 0.00036, + 0.00027, + 0.00019, + 0.00028 + ] +} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index 844b904..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 056202b..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 958d0ce..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index 33a79ff..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 8ee1c97..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 2e07d3e..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index 638f28a..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 31bf132..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 2cd9f3c..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index 052935b..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 7db5d6c..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index cc6d126..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 9ac89d4..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 3fbf1e2..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 35a1afa..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index be142f9..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index b27d41c..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 9a91212..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.522, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 05642d9..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 29c46b8..0000000 --- a/crcsim/experiment/scenarios/fqhc1_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.593, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index e4285c2..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 88ff7ce..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 4bb8d7a..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index f663ce4..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index aa0fdcc..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 5a412ea..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index 15e1f49..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 8623513..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 62afc27..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index 2e424ff..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index e70cde1..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 27862d4..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline/params.json deleted file mode 100644 index 9746277..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index b53841d..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index c52a299..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation/params.json deleted file mode 100644 index 998a861..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 25b5550..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 006e07b..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline/params.json deleted file mode 100644 index ba04c76..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index f663785..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 2ee7058..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.154, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation/params.json deleted file mode 100644 index 286e07e..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index e63a1f5..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 2f86846..0000000 --- a/crcsim/experiment/scenarios/fqhc2_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.421, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index ca546fb..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 45a6ee3..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 163da97..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index 21ee800..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 626d260..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 36839c9..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index d0fb41d..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 0978db8..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 963d351..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index bdc4e66..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 5c6846f..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 23f7be2..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline/params.json deleted file mode 100644 index 672ac51..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index f5cf5b7..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 3358554..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation/params.json deleted file mode 100644 index e7e3246..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 952dbf3..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 623ce00..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline/params.json deleted file mode 100644 index 30c9813..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index bcf8f4c..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 92d3b58..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.519, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation/params.json deleted file mode 100644 index c29e804..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index f52a9e6..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 5ae299c..0000000 --- a/crcsim/experiment/scenarios/fqhc3_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.568, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index 1f38cbf..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index bf55430..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 7110b55..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index 26b50ae..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 620862a..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 8bbbb6d..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index e1caff5..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 979f145..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 45b48a4..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index 15d114b..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 4c5d017..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 1496a20..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline/params.json deleted file mode 100644 index 27cf576..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index d457192..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 29d0721..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation/params.json deleted file mode 100644 index 126b439..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index d8ffd8a..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 610fa75..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline/params.json deleted file mode 100644 index e52d690..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 28e407d..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 8c1967c..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.278, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation/params.json deleted file mode 100644 index 1c16f2c..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 2212e6e..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 243de7d..0000000 --- a/crcsim/experiment/scenarios/fqhc4_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.374, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index ace72ec..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index c512a69..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index cadf684..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index d3bc625..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index bf64d6b..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 971e85f..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index fdd6d93..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 2e4a715..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 592963c..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index 34e8859..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 99ff602..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 042526a..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline/params.json deleted file mode 100644 index f4e0343..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 9f2b94a..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 70317dc..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation/params.json deleted file mode 100644 index dc22339..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index c3939f2..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index cc6a54a..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline/params.json deleted file mode 100644 index b3857f2..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 6d426b4..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 8b52769..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.383, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation/params.json deleted file mode 100644 index eb87cef..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 0faa44f..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index e7db8d0..0000000 --- a/crcsim/experiment/scenarios/fqhc5_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.572, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index 2e798cf..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 0e8d8bb..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index c4d90f1..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index 7f15068..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 91b30d7..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 1f1024e..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index fa755f2..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 29912e9..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index f241784..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index cfabe6b..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 181d97f..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 7345953..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline/params.json deleted file mode 100644 index 324f41f..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index b9040cf..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 0953bb9..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation/params.json deleted file mode 100644 index a5f2fd3..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 31f6fd6..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 84b1edf..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline/params.json deleted file mode 100644 index 7a0e444..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 5e9c811..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 71574f0..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.211, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation/params.json deleted file mode 100644 index 047b294..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 5cf3883..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 7d3ffeb..0000000 --- a/crcsim/experiment/scenarios/fqhc6_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.392, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index 7bc567f..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index d3df037..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 857e771..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index d6b4fa6..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 8d29589..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index c8c967a..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index d05179f..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index c02f0b1..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 62d4722..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index 1e1f131..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 003e099..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 9e1ba36..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline/params.json deleted file mode 100644 index 0fe0d87..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 19328a7..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index a6d52bf..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation/params.json deleted file mode 100644 index cb3b121..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 4187864..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 95e4ebf..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline/params.json deleted file mode 100644 index 06932ab..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 7a3fe85..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 95dd3d3..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.257, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation/params.json deleted file mode 100644 index f337886..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 7ed724b..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index b20d2f6..0000000 --- a/crcsim/experiment/scenarios/fqhc7_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.354, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline/params.json deleted file mode 100644 index e800eaa..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index f6db738..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 7d8625a..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation/params.json deleted file mode 100644 index e0ad862..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index d59b6d7..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 82dc8df..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline/params.json deleted file mode 100644 index 87525d3..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index eb4b62e..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 134d9ca..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation/params.json deleted file mode 100644 index 14a5c9c..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 85d8fe0..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 8590431..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Patient-Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 44, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 1437, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline/params.json deleted file mode 100644 index 34333d9..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index bc50adb..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index 1ebb7d6..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation/params.json deleted file mode 100644 index 83a4e18..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index 207e119..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index e0de517..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_100Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 1.0, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline/params.json b/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline/params.json deleted file mode 100644 index d9d48ec..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json deleted file mode 100644 index b1a6252..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline_low_initial_treat_cost/params.json deleted file mode 100644 index b5e24ff..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_baseline_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.19, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation/params.json b/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation/params.json deleted file mode 100644 index fb8c669..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 76639, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 113889, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json deleted file mode 100644 index ee640ea..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation_extra_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 50000, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 80000, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation_low_initial_treat_cost/params.json b/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation_low_initial_treat_cost/params.json deleted file mode 100644 index 87f2ae3..0000000 --- a/crcsim/experiment/scenarios/fqhc8_Public_80Compliance_implementation_low_initial_treat_cost/params.json +++ /dev/null @@ -1,1214 +0,0 @@ -{ - "max_age": 100, - "mean_duration_polyp1_polyp2": 25.5, - "mean_duration_polyp2_polyp3": 6.25, - "mean_duration_polyp2_pre": 80, - "mean_duration_polyp3_pre": 76, - "mean_duration_pre1_pre2": 3.5, - "mean_duration_pre2_pre3": 2.5, - "mean_duration_pre3_pre4": 2.5, - "mean_duration_pre1_clin1": 18, - "mean_duration_pre2_clin2": 3.9, - "mean_duration_pre3_clin3": 2.75, - "mean_duration_pre4_clin4": 1.9, - "mean_duration_clin1_dead": 135, - "mean_duration_clin2_dead": 51, - "mean_duration_clin3_dead": 19, - "mean_duration_clin4_dead": 2.7, - "proportion_survive_clin1": 0, - "proportion_survive_clin2": 0, - "proportion_survive_clin3": 0, - "proportion_survive_clin4": 0, - "cost_polypectomy": 432, - "cost_polyp_pathology": 65, - "cost_treatment_stage1_initial": 37200, - "cost_treatment_stage1_ongoing": 3818, - "cost_treatment_stage1_terminal": 75070, - "cost_treatment_stage2_initial": 52756, - "cost_treatment_stage2_ongoing": 4452, - "cost_treatment_stage2_terminal": 84626, - "cost_treatment_stage3_initial": 67300, - "cost_treatment_stage3_ongoing": 6897, - "cost_treatment_stage3_terminal": 88600, - "cost_treatment_stage4_initial": 97931, - "cost_treatment_stage4_ongoing": 32652, - "cost_treatment_stage4_terminal": 111408, - "max_ongoing_treatments": 4, - "value_loss_cancer": 0.15, - "value_life_year_ages": [ - 0, - 65, - 100 - ], - "value_life_year_dollars": [ - 217000, - 547000, - 547000 - ], - "duration_screen_skip_testing": 5, - "surveillance_freq_polyp_none": 10, - "surveillance_freq_polyp_mild": 7, - "surveillance_freq_polyp_moderate": 3, - "surveillance_freq_polyp_severe": 1, - "surveillance_freq_cancer_first": 1, - "surveillance_freq_cancer_second": 3, - "surveillance_freq_cancer_rest": 5, - "surveillance_end_age": 85, - "use_conditional_compliance": true, - "initial_compliance_rate": 0.39, - "never_compliant_rate": 0.0, - "diagnostic_compliance_rate": 0.8, - "surveillance_compliance_rate": 1.0, - "lesion_risk_alpha": 0.47, - "lesion_risk_beta": 2.45, - "lesion_incidence_ages": [ - 0, - 20, - 30, - 40, - 45, - 50, - 55, - 60, - 65, - 70, - 75, - 85, - 100 - ], - "lesion_incidence_rates": [ - 0.0, - 0.002, - 0.002, - 0.015, - 0.02, - 0.025, - 0.027, - 0.027, - 0.027, - 0.014, - 0.011, - 0.011, - 0.011 - ], - "tests": { - "FIT": { - "proportion": 1.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 1, - "specificity": 0.97, - "sensitivity_polyp1": 0.07, - "sensitivity_polyp2": 0.07, - "sensitivity_polyp3": 0.22, - "sensitivity_cancer": 0.74, - "cost": 22, - "proportion_perforation": 0, - "cost_perforation": 0, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "Colonoscopy": { - "proportion": 0.0, - "routine_start": 45, - "routine_end": 75, - "routine_freq": 10, - "specificity": 0.86, - "sensitivity_polyp1": 0.75, - "sensitivity_polyp2": 0.85, - "sensitivity_polyp3": 0.95, - "sensitivity_cancer": 0.95, - "cost": 912, - "proportion_perforation": 0.001, - "cost_perforation": 6487, - "compliance_rate_given_prev_compliant": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "compliance_rate_given_not_prev_compliant": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "routine_tests": [ - "FIT", - "Colonoscopy" - ], - "diagnostic_test": "Colonoscopy", - "surveillance_test": "Colonoscopy", - "polypectomy_proportion_lethal": 2e-05, - "cost_discount_age": 45, - "cost_discount_rate": 0.03, - "lifespan_discount_age": 45, - "lifespan_discount_rate": 0.03, - "death_rate_black_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_female_rates": [ - 0.009674, - 0.000588, - 0.000355, - 0.000214, - 0.000248, - 0.000197, - 0.000171, - 0.000151, - 0.000139, - 0.000133, - 0.000133, - 0.00014, - 0.000154, - 0.000174, - 0.000201, - 0.000231, - 0.000267, - 0.000313, - 0.000372, - 0.000438, - 0.000508, - 0.000576, - 0.000637, - 0.000688, - 0.000731, - 0.000772, - 0.000815, - 0.000859, - 0.000908, - 0.000965, - 0.00103, - 0.001105, - 0.001186, - 0.001269, - 0.001353, - 0.00144, - 0.001536, - 0.001637, - 0.00175, - 0.00188, - 0.002033, - 0.002206, - 0.002383, - 0.002553, - 0.002721, - 0.002895, - 0.003099, - 0.003347, - 0.003655, - 0.004018, - 0.0044, - 0.004802, - 0.005266, - 0.005797, - 0.006375, - 0.006974, - 0.007576, - 0.008184, - 0.008803, - 0.009446, - 0.010126, - 0.010845, - 0.011602, - 0.012397, - 0.013231, - 0.014149, - 0.015137, - 0.016142, - 0.017121, - 0.018187, - 0.019264, - 0.020677, - 0.022638, - 0.024656, - 0.026985, - 0.029625, - 0.032101, - 0.035679, - 0.039136, - 0.042432, - 0.047008, - 0.051308, - 0.055972, - 0.061447, - 0.067875, - 0.073825, - 0.081779, - 0.090536, - 0.100072, - 0.110418, - 0.121605, - 0.133654, - 0.146574, - 0.160368, - 0.175024, - 0.190515, - 0.2068, - 0.223822, - 0.241511, - 0.259776, - 1.0 - ], - "death_rate_black_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_black_male_rates": [ - 0.011882, - 0.000622, - 0.000406, - 0.000347, - 0.000231, - 0.000231, - 0.000211, - 0.000192, - 0.000169, - 0.000142, - 0.000125, - 0.00014, - 0.000211, - 0.000352, - 0.000546, - 0.000757, - 0.000965, - 0.001172, - 0.00137, - 0.001554, - 0.001736, - 0.001909, - 0.002051, - 0.002154, - 0.002225, - 0.002287, - 0.002346, - 0.002397, - 0.002444, - 0.002494, - 0.002543, - 0.002598, - 0.002675, - 0.002779, - 0.002899, - 0.003034, - 0.003172, - 0.003292, - 0.003391, - 0.003483, - 0.003593, - 0.003742, - 0.003932, - 0.004165, - 0.004434, - 0.004731, - 0.005061, - 0.005438, - 0.005874, - 0.006376, - 0.006905, - 0.007485, - 0.008192, - 0.00905, - 0.01002, - 0.011026, - 0.012041, - 0.013122, - 0.014298, - 0.015581, - 0.016979, - 0.018443, - 0.01992, - 0.021354, - 0.02276, - 0.024279, - 0.025931, - 0.027551, - 0.029041, - 0.030501, - 0.031843, - 0.034142, - 0.036113, - 0.039043, - 0.041873, - 0.044907, - 0.048772, - 0.052158, - 0.057218, - 0.062038, - 0.066654, - 0.072113, - 0.079691, - 0.087605, - 0.09403, - 0.100906, - 0.110227, - 0.120226, - 0.130918, - 0.142314, - 0.154416, - 0.167219, - 0.180709, - 0.194863, - 0.209647, - 0.225017, - 0.240921, - 0.257294, - 0.274063, - 0.291147, - 1.0 - ], - "death_rate_white_female_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_female_rates": [ - 0.004376, - 0.000296, - 0.00018, - 0.000151, - 0.000116, - 0.000112, - 0.000102, - 9.5e-05, - 8.9e-05, - 8.5e-05, - 8.5e-05, - 9e-05, - 0.000106, - 0.000134, - 0.00017, - 0.000212, - 0.000255, - 0.000298, - 0.000339, - 0.000379, - 0.00042, - 0.000464, - 0.000504, - 0.000542, - 0.000576, - 0.000609, - 0.000643, - 0.000682, - 0.000728, - 0.000781, - 0.000839, - 0.000898, - 0.000953, - 0.001, - 0.001043, - 0.001089, - 0.001143, - 0.001197, - 0.001252, - 0.001313, - 0.001388, - 0.00148, - 0.001589, - 0.001709, - 0.00184, - 0.001979, - 0.002133, - 0.002311, - 0.00252, - 0.002762, - 0.003018, - 0.003292, - 0.0036, - 0.003941, - 0.004301, - 0.004674, - 0.00505, - 0.005425, - 0.005806, - 0.006206, - 0.006644, - 0.007124, - 0.007647, - 0.008217, - 0.008842, - 0.009515, - 0.010293, - 0.011188, - 0.01228, - 0.013537, - 0.014827, - 0.01657, - 0.018235, - 0.020046, - 0.021938, - 0.024382, - 0.027026, - 0.029965, - 0.033566, - 0.037224, - 0.041748, - 0.046426, - 0.052066, - 0.059213, - 0.066359, - 0.073798, - 0.081793, - 0.092586, - 0.104549, - 0.117741, - 0.132206, - 0.147969, - 0.165031, - 0.183365, - 0.202911, - 0.223578, - 0.245236, - 0.267725, - 0.290853, - 0.314404, - 1.0 - ], - "death_rate_white_male_ages": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100 - ], - "death_rate_white_male_rates": [ - 0.005273, - 0.000389, - 0.000273, - 0.000199, - 0.000147, - 0.000143, - 0.000126, - 0.000112, - 0.0001, - 9.1e-05, - 9e-05, - 0.000105, - 0.000145, - 0.000215, - 0.000309, - 0.000412, - 0.00052, - 0.000642, - 0.000778, - 0.000921, - 0.001068, - 0.001209, - 0.00133, - 0.001424, - 0.001497, - 0.001561, - 0.001624, - 0.001682, - 0.001737, - 0.001792, - 0.001847, - 0.0019, - 0.001952, - 0.002003, - 0.002053, - 0.002111, - 0.002174, - 0.002233, - 0.002285, - 0.00234, - 0.002413, - 0.002516, - 0.002649, - 0.002811, - 0.002999, - 0.003203, - 0.003433, - 0.003709, - 0.004047, - 0.004445, - 0.004874, - 0.005331, - 0.005844, - 0.006408, - 0.007003, - 0.007607, - 0.008219, - 0.008857, - 0.009542, - 0.010285, - 0.011098, - 0.011952, - 0.012814, - 0.013657, - 0.014502, - 0.015384, - 0.016444, - 0.017624, - 0.018968, - 0.020586, - 0.022109, - 0.024359, - 0.026347, - 0.02881, - 0.031309, - 0.034486, - 0.038026, - 0.042286, - 0.046547, - 0.051534, - 0.057008, - 0.062923, - 0.069911, - 0.078099, - 0.086754, - 0.096549, - 0.106472, - 0.119677, - 0.134128, - 0.149846, - 0.166829, - 0.185047, - 0.204441, - 0.224919, - 0.246354, - 0.26859, - 0.291442, - 0.3147, - 0.338142, - 0.361537, - 1.0 - ], - "us_age_distribution_rates": [ - 0.01237, - 0.01236, - 0.01234, - 0.01231, - 0.01208, - 0.01214, - 0.01213, - 0.01209, - 0.01211, - 0.01225, - 0.01225, - 0.01225, - 0.01264, - 0.0127, - 0.0126, - 0.01257, - 0.01262, - 0.01257, - 0.01257, - 0.01293, - 0.01318, - 0.01304, - 0.0131, - 0.01319, - 0.01332, - 0.01362, - 0.01389, - 0.01409, - 0.01443, - 0.01466, - 0.0146, - 0.01401, - 0.01366, - 0.0134, - 0.01342, - 0.01348, - 0.01304, - 0.0132, - 0.01317, - 0.01301, - 0.01323, - 0.01241, - 0.01214, - 0.012, - 0.01164, - 0.01197, - 0.01159, - 0.01174, - 0.01224, - 0.0129, - 0.01303, - 0.01232, - 0.01204, - 0.01203, - 0.01223, - 0.01294, - 0.01315, - 0.01311, - 0.01306, - 0.01319, - 0.01326, - 0.01278, - 0.01266, - 0.01248, - 0.01198, - 0.01183, - 0.01129, - 0.01081, - 0.01033, - 0.00995, - 0.00965, - 0.0093, - 0.00912, - 0.00941, - 0.00689, - 0.00671, - 0.00645, - 0.00649, - 0.00557, - 0.00499, - 0.00462, - 0.00424, - 0.00395, - 0.00352, - 0.00324, - 0.00298, - 0.00255, - 0.00234, - 0.00211, - 0.00188, - 0.00168, - 0.0014, - 0.0012, - 0.00099, - 0.00079, - 0.00064, - 0.00049, - 0.00036, - 0.00027, - 0.00019, - 0.00028 - ] -} \ No newline at end of file diff --git a/crcsim/experiment/summarize.py b/crcsim/experiment/summarize.py index 1a4ddd1..ed04090 100644 --- a/crcsim/experiment/summarize.py +++ b/crcsim/experiment/summarize.py @@ -4,7 +4,7 @@ import pandas as pd import s3fs # noqa: F401 -S3_BUCKET_NAME = "crcsim-exp-fqhc-diagnostic-compliance-comp-additional-scenarios" +S3_BUCKET_NAME = "crcsim-exp-accsis-scenarios" def main() -> None: diff --git a/crcsim/experiment/summary/combined.csv b/crcsim/experiment/summary/combined.csv index 017fba3..966d57b 100644 --- a/crcsim/experiment/summary/combined.csv +++ b/crcsim/experiment/summary/combined.csv @@ -1,9601 +1,1101 @@ -n,n_unscreened_undiagnosed_40yos,polyp,polyp_per_1k_40yo,crc,crc_per_1k_40yo,clin_crc,clin_crc_per_1k_40yo,deadcrc,deadcrc_per_1k_40yo,lifeexp,lifeexp_if_unscreened_undiagnosed_at_40,discounted_lifeexp,discounted_lifeexp_if_unscreened_undiagnosed_at_40,lifeobs,lifeobs_if_unscreened_undiagnosed_at_40,discounted_lifeobs,discounted_lifeobs_if_unscreened_undiagnosed_at_40,lifelost,lifelost_per_1k_40yo,discounted_lifelost,discounted_lifelost_per_1k_40yo,cost_routine,discounted_cost_routine,cost_routine_per_1k_40yo,discounted_cost_routine_per_1k_40yo,cost_diagnostic,discounted_cost_diagnostic,cost_diagnostic_per_1k_40yo,discounted_cost_diagnostic_per_1k_40yo,cost_surveillance,discounted_cost_surveillance,cost_surveillance_per_1k_40yo,discounted_cost_surveillance_per_1k_40yo,cost_treatment_initial,discounted_cost_treatment_initial,cost_treatment_initial_per_1k_40yo,discounted_cost_treatment_initial_per_1k_40yo,cost_treatment_ongoing,discounted_cost_treatment_ongoing,cost_treatment_ongoing_per_1k_40yo,discounted_cost_treatment_ongoing_per_1k_40yo,cost_treatment_terminal,discounted_cost_treatment_terminal,cost_treatment_terminal_per_1k_40yo,discounted_cost_treatment_terminal_per_1k_40yo,prob_polyp,FIT_adopted,Colonoscopy_adopted,FIT_performed_routine,FIT_performed_routine_per_1k_40yo,Colonoscopy_performed_routine,Colonoscopy_performed_routine_per_1k_40yo,FIT_performed_diagnostic,FIT_performed_diagnostic_per_1k_40yo,Colonoscopy_performed_diagnostic,Colonoscopy_performed_diagnostic_per_1k_40yo,FIT_performed_surveillance,FIT_performed_surveillance_per_1k_40yo,Colonoscopy_performed_surveillance,Colonoscopy_performed_surveillance_per_1k_40yo,FIT_noncompliant_routine,Colonoscopy_noncompliant_routine,FIT_noncompliant_routine_50,Colonoscopy_noncompliant_routine_50,FIT_noncompliant_diagnostic,Colonoscopy_noncompliant_diagnostic,FIT_noncompliant_surveillance,Colonoscopy_noncompliant_surveillance,FIT_perforations,FIT_perforations_per_1k_40yo,Colonoscopy_perforations,Colonoscopy_perforations_per_1k_40yo,FIT_test_fatalities,FIT_test_fatalities_per_1k_40yo,Colonoscopy_test_fatalities,Colonoscopy_test_fatalities_per_1k_40yo,prob_crc,prob_crc_given_polyp,prob_dead_crc_given_crc,prob_dead_crc,prob_crc_from_medium_polyp,prob_crc_from_large_polyp,time_polyp_to_pre,time_pre_to_clin,crc_onset_proportion_stage2,crc_onset_proportion_stage1,crc_onset_proportion_stage3,crc_onset_proportion_stage4,time_pre_to_dead,time_clin_to_dead,crc_mortality_rate,polyp_prevalence_rate,crc_incidence_rate,crc_incidence_stage1_rate,crc_incidence_stage2_rate,crc_incidence_stage3_rate,crc_incidence_stage4_rate,crc_survival_rate,crc_survival_stage1_rate,crc_survival_stage2_rate,crc_survival_stage3_rate,crc_survival_stage4_rate,crc_survival_rate_20_64,crc_survival_stage1_rate_20_64,crc_survival_stage2_rate_20_64,crc_survival_stage3_rate_20_64,crc_survival_stage4_rate_20_64,crc_survival_rate_65_100,crc_survival_stage1_rate_65_100,crc_survival_stage2_rate_65_100,crc_survival_stage3_rate_65_100,crc_survival_stage4_rate_65_100,polyp_prevalence_rate_0,polyp_prevalence_rate_1,polyp_prevalence_rate_2,polyp_prevalence_rate_3,polyp_prevalence_rate_4,polyp_prevalence_rate_5,polyp_prevalence_rate_6,polyp_prevalence_rate_7,polyp_prevalence_rate_8,polyp_prevalence_rate_9,polyp_prevalence_rate_10,polyp_prevalence_rate_11,polyp_prevalence_rate_12,polyp_prevalence_rate_13,polyp_prevalence_rate_14,polyp_prevalence_rate_15,polyp_prevalence_rate_16,polyp_prevalence_rate_17,polyp_prevalence_rate_18,polyp_prevalence_rate_19,polyp_prevalence_rate_20,polyp_prevalence_rate_21,polyp_prevalence_rate_22,polyp_prevalence_rate_23,polyp_prevalence_rate_24,polyp_prevalence_rate_25,polyp_prevalence_rate_26,polyp_prevalence_rate_27,polyp_prevalence_rate_28,polyp_prevalence_rate_29,polyp_prevalence_rate_30,polyp_prevalence_rate_31,polyp_prevalence_rate_32,polyp_prevalence_rate_33,polyp_prevalence_rate_34,polyp_prevalence_rate_35,polyp_prevalence_rate_36,polyp_prevalence_rate_37,polyp_prevalence_rate_38,polyp_prevalence_rate_39,polyp_prevalence_rate_40,polyp_prevalence_rate_41,polyp_prevalence_rate_42,polyp_prevalence_rate_43,polyp_prevalence_rate_44,polyp_prevalence_rate_45,polyp_prevalence_rate_46,polyp_prevalence_rate_47,polyp_prevalence_rate_48,polyp_prevalence_rate_49,polyp_prevalence_rate_50,polyp_prevalence_rate_51,polyp_prevalence_rate_52,polyp_prevalence_rate_53,polyp_prevalence_rate_54,polyp_prevalence_rate_55,polyp_prevalence_rate_56,polyp_prevalence_rate_57,polyp_prevalence_rate_58,polyp_prevalence_rate_59,polyp_prevalence_rate_60,polyp_prevalence_rate_61,polyp_prevalence_rate_62,polyp_prevalence_rate_63,polyp_prevalence_rate_64,polyp_prevalence_rate_65,polyp_prevalence_rate_66,polyp_prevalence_rate_67,polyp_prevalence_rate_68,polyp_prevalence_rate_69,polyp_prevalence_rate_70,polyp_prevalence_rate_71,polyp_prevalence_rate_72,polyp_prevalence_rate_73,polyp_prevalence_rate_74,polyp_prevalence_rate_75,polyp_prevalence_rate_76,polyp_prevalence_rate_77,polyp_prevalence_rate_78,polyp_prevalence_rate_79,polyp_prevalence_rate_80,polyp_prevalence_rate_81,polyp_prevalence_rate_82,polyp_prevalence_rate_83,polyp_prevalence_rate_84,polyp_prevalence_rate_85,polyp_prevalence_rate_86,polyp_prevalence_rate_87,polyp_prevalence_rate_88,polyp_prevalence_rate_89,polyp_prevalence_rate_90,polyp_prevalence_rate_91,polyp_prevalence_rate_92,polyp_prevalence_rate_93,polyp_prevalence_rate_94,polyp_prevalence_rate_95,polyp_prevalence_rate_96,polyp_prevalence_rate_97,polyp_prevalence_rate_98,polyp_prevalence_rate_99,polyp_prevalence_rate_100,crc_incidence_15_39,crc_incidence_40_64,crc_incidence_65_74,crc_incidence_75_100,scenario,iteration -100000,95722,47554,452.3202607551033,5146,52.600238189757846,4048,41.72499529888636,1548,15.827082593343224,77.33641368994157,79.71097387857898,63.332022412709286,65.08964454015363,77.14359793533667,79.52217045946321,63.25977022409726,65.02073870621874,0.1928157546048936,188.80341911577148,0.0722521886120262,68.9058339348918,213.93548,150.5970168762858,223496.4376005516,157327.26382261736,509.24385,341.3514531725592,531432.18904745,356036.6444208845,462.04237,225.64051002053432,479108.1674014333,232869.0284831852,2860.88736,1328.5504882752955,2950836.3803514345,1350124.4932675716,932.17204,423.3384233812468,957123.9213555922,425593.1570562136,1504.2691,635.461457740075,1540562.2949792107,638213.8197337829,0.38,100000,0,972434,10158.928981843255,0,0.0,0,0.0,44304,462.26572783686095,0,0.0,41837,433.55759386556906,1222424,0,43831,0,0,0,0,0,85,0.877541213096258,0,0.0,0,0.0,0,0.0,0.05146,0.1354210526315789,0.300816167897396,0.01548,0.3512810991459339,0.6487189008540661,23.71413151580005,4.092401923435555,0.3115118577075099,0.2712450592885375,0.2176383399209486,0.1996047430830039,11.04408352078105,5.8845268953553465,16.423311808349066,11507.193666755426,46.41057609605922,13.464478895895189,14.34915835376907,9.75823939822644,8.838699448168525,0.5788043478260869,0.8087431693989071,0.682791435368755,0.5698070374574348,0.1138613861386138,0.7562604340567612,0.9293598233995584,0.8456973293768546,0.7268722466960352,0.1933701657458563,0.5042105263157894,0.724031007751938,0.6233766233766234,0.5152905198776758,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024624052531312,0.0047262142618079,0.0073607797350119,0.0097162370924465,0.0120037028371463,0.0144623469741103,0.0166226455501279,0.0187155401266081,0.0206823223906842,0.0227975349589501,0.0249192763056737,0.0271965668056097,0.0293488544280366,0.0313220995385629,0.0333498431566782,0.035576962831273,0.0374723021806208,0.0393277659629648,0.0414570775306589,0.0435806095452367,0.0579194119305426,0.0718336088384842,0.0846668484301923,0.0974089451831607,0.1087093986467972,0.1242337772141196,0.1351099238906909,0.1462844017184908,0.1561942982783832,0.1650616477242295,0.1771612444980144,0.188554373215676,0.1990655221123546,0.2081872494730058,0.2170449801138236,0.2270315091210613,0.2356204672303733,0.2436152402781991,0.2504108719552971,0.2567066895368782,0.262983374348665,0.2690188203427824,0.2752813632981801,0.2791593401992799,0.2840881540028124,0.2874797107864837,0.2916583416583416,0.2957258228362454,0.2992942271399395,0.3026860321058597,0.2999609968662999,0.2972437423456399,0.2949550133059236,0.2928160836534851,0.2901946218986778,0.2872384392842382,0.2839560856772234,0.2835984910611776,0.2842980001365094,0.2845758904695689,0.2845394736842105,0.2859028407076159,0.2871528646484864,0.2873213134434539,0.2888569718731298,0.289703632639303,0.29013964092334,0.2948560641812175,0.2993197278911564,0.3051331930604629,0.3072669104204753,0.3090831282764523,0.3133052685291491,0.3174493554327808,0.3239317045561739,0.3313404280760492,0.3356342997392238,0.333736640451704,0.332972094283392,0.3388305847076461,0.0,2.1864350705968367,52.25148087569136,149.60056160407896,209.09863654546868,fqhc1_100Compliance_baseline,0 -100000,95614,47646,455.0379651515468,5174,53.01524881293534,4034,41.65707950718514,1533,15.677620432154288,77.26635035352784,79.70467427179084,63.26822878755484,65.07230799661077,77.074512501756,79.51483311680083,63.19711334400885,65.00394364943182,0.1918378517718366,189.8411549900061,0.0711154435459917,68.36434717895656,211.47434,148.8634789675462,221175.07896333173,155692.13605491476,507.85856,340.5458912330238,530549.4906603636,355574.79095805675,465.32621,227.6405380154086,483556.55029598175,235638.2801255901,2830.47028,1310.5731517604927,2921889.294454787,1333153.4455580837,927.58294,414.4648887704457,957613.4875645826,421031.5460443091,1488.78012,625.1243901586422,1523137.4484908066,624992.8620669489,0.38039,100000,0,961247,10053.41268015144,0,0.0,0,0.0,44150,461.1249398623633,0,0.0,42147,437.7392432070617,1227903,0,44107,0,0,0,0,0,85,0.8680737130545736,0,0.0,0,0.0,0,0.0,0.05174,0.1360182970109624,0.2962891379976807,0.01533,0.3485016648168701,0.6514983351831298,23.595089872759832,4.134714488859929,0.3103619236489836,0.279127416955875,0.2114526524541398,0.1990580069410014,11.474036148668423,6.237596156925848,16.330653530358877,11555.902428390697,46.15988077536433,13.67182923320474,14.395476485277172,9.356453574012038,8.736121482870379,0.5922161626177491,0.7912966252220248,0.6972843450479234,0.6225087924970691,0.1170610211706102,0.7564853556485356,0.927927927927928,0.8490566037735849,0.782608695652174,0.0867052023121387,0.5230715040507221,0.7023460410557185,0.6333711691259932,0.5712074303405573,0.1253968253968254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.004980978950038,0.0073831842140006,0.0092524808849845,0.0114309562101748,0.0137285078019099,0.0159617896799477,0.0182908760205593,0.0204223622820659,0.0226252689824777,0.0247239213432406,0.0267664412145632,0.0287311358629634,0.030797306911093,0.0328561394810775,0.0349216203631848,0.0369299336650082,0.038614930829629,0.0408080429624078,0.042445795571871,0.057537712081456,0.0719771986629363,0.0847206612959131,0.0977482411425201,0.1103401662283897,0.1256818446612225,0.1372278132605022,0.1476689740499376,0.1583222740699516,0.1671537238385835,0.1792833412434741,0.1913609018481383,0.202062551727142,0.2112504792682258,0.2201161522100878,0.2292200374843353,0.2369581969867878,0.2446358212315659,0.2524731671304446,0.2594562986573718,0.2655908127944802,0.2711398242102922,0.2772036977853532,0.281491510801711,0.2853150931246886,0.2900974226168454,0.2942310822825229,0.2974569152050505,0.2997773001527825,0.3027297903204536,0.3002529465583122,0.2970554272517321,0.294843648850235,0.2916558432187491,0.2895178165951826,0.286587602396381,0.2835384639691593,0.2832226866650275,0.2841870140499249,0.2849934025177418,0.286021867745076,0.2867384220400908,0.2882136279926335,0.2879650085916404,0.2874948966113499,0.287227398115859,0.2904382470119522,0.2953916760970703,0.2990781956468403,0.3014198461172364,0.3075280541547408,0.3121922812218751,0.3149571572580645,0.3175752092286813,0.3216406829992576,0.323828444548323,0.3217904128232269,0.3284656931386277,0.3364105348900353,0.3373268438786971,0.0,1.824998793924412,52.53771894597867,147.3632014345691,209.1203874486424,fqhc1_100Compliance_baseline,1 -100000,95716,47398,451.6277320406202,5145,52.72890634794601,4028,41.60223995988132,1500,15.347486313677964,77.34534288058313,79.71480301006999,63.32656324425341,65.07478884533124,77.15486043559999,79.52442072067237,63.25589198310163,65.00592480041426,0.1904824449831466,190.3822893976184,0.0706712611517801,68.86404491697817,211.47874,148.76179984184057,220943.98010781896,155419.99231250843,502.3284,336.95555919582625,524332.3373312717,351557.83692990325,454.35366,222.247364855397,471469.2736846504,229694.78512634744,2837.45072,1325.40957880479,2932672.4058673577,1352956.2234159284,966.74491,440.3666839444128,996082.2850934012,446144.7343645913,1460.72456,618.8928912177438,1496029.9427472942,621830.8857760855,0.38019,100000,0,961267,10042.908186719043,0,0.0,0,0.0,43658,455.6291529106942,0,0.0,41127,426.51176396840657,1235513,0,44374,0,0,0,0,0,112,1.1701282962096202,0,0.0,2,0.0208951481466003,0,0.0,0.05145,0.1353270733054525,0.2915451895043732,0.015,0.3492387671741552,0.6507612328258447,23.81470114115606,4.099852505657433,0.3167825223435948,0.2713505461767627,0.2065541211519364,0.205312810327706,11.32870383756001,6.246131923158445,16.058667804795114,11554.688343107466,45.91121460346067,13.206434751272202,14.424565391097463,9.241800907323052,9.038413553767954,0.5940913604766633,0.7941445562671546,0.7147335423197492,0.6021634615384616,0.1354292623941959,0.7694944301628106,0.9325581395348838,0.8796561604584527,0.7766990291262136,0.1648351648351648,0.5225445648374694,0.7043740573152338,0.6526429341963322,0.5447284345047924,0.1271317829457364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0044898952019946,0.0066251369668438,0.0089477960593134,0.0111350647765868,0.0132560909803602,0.01540217934212,0.0177107683513163,0.019861795432707,0.0220081686132806,0.0240706948516597,0.0260217703840624,0.028357779103495,0.0304319607701737,0.0326106025737608,0.0345668802977051,0.0363918806959403,0.0385218086155187,0.0407053514800528,0.042724800183404,0.0567281081927836,0.0703065314537481,0.0836883302205527,0.0963122731337787,0.1087546031042596,0.1235329601134475,0.1348301486199575,0.1457525667788523,0.1550060378084358,0.1645288603848051,0.1770200387847446,0.1890908697205591,0.1998280908289721,0.2098401926444833,0.2193862382593567,0.2292414771467837,0.2385819654753004,0.2462370913672464,0.2535264011983523,0.2607849200077873,0.2674500641907912,0.2728834757401844,0.2781510219530658,0.2818240605465476,0.2852546591391974,0.2897686679313148,0.2928836796217305,0.2964162760267795,0.3002278081234306,0.3041820580474934,0.3018123552539452,0.2995130540042367,0.2969661939267488,0.2941592971504537,0.2919253735777309,0.2892349584665514,0.2855969807507066,0.2866070114021168,0.2869546010602147,0.2884318218148878,0.2890693386474959,0.2899695451419589,0.2901941990331722,0.2915627227369922,0.2918764686136287,0.2933499390259723,0.2944216918514334,0.2973006631588779,0.3036787438774447,0.3065856526852215,0.3114620938628158,0.3132669721388318,0.31736414740787,0.3184158715735272,0.3214152352501867,0.3260844010814623,0.3241400212153356,0.3298534430837181,0.3337882096069869,0.3385093167701863,0.0,1.8484738543729649,51.00737759741676,149.9164245195776,208.6832144485421,fqhc1_100Compliance_baseline,2 -100000,95663,47789,455.0348619633505,5180,52.63267930129727,4080,42.07478335406584,1629,16.631299457470497,77.2498286400838,79.6480939354263,63.26585613190741,65.03896306726445,77.03747586508165,79.440252147455,63.18479238822122,64.96235545149833,0.2123527750021594,207.8417879713044,0.0810637436861938,76.60761576612174,210.16116,147.96727676611977,219688.38526912185,154674.97607056252,500.2706,336.00966622230084,522253.5149430814,350550.18502612435,458.66205,224.95966321029184,476310.20352696447,232769.1598850376,2964.97479,1387.8802627881666,3056668.680681141,1408575.6787193257,953.76094,436.54212484518064,978936.8512382008,439012.6399287281,1591.12348,685.4808162802437,1625006.5542581773,682140.6186701746,0.38288,100000,0,955278,9985.835694050991,0,0.0,0,0.0,43468,453.7490983974996,0,0.0,41544,431.1802891400019,1233869,0,44310,0,0,0,0,0,85,0.8780824352152871,0,0.0,1,0.0104533623239915,0,0.0,0.0518,0.1352904304220643,0.3144787644787645,0.01629,0.3470522803114572,0.6529477196885428,23.71016517035675,4.276217837266481,0.3053921568627451,0.2544117647058823,0.2181372549019608,0.2220588235294117,11.626620909790384,6.250444140626674,17.41937193558233,11680.036841149962,46.76805584867152,12.73499062160314,14.17873944922591,9.873425495789409,9.980900282053062,0.5644607843137255,0.8015414258188824,0.6861958266452648,0.5752808988764045,0.1147902869757174,0.7393483709273183,0.911214953271028,0.8475073313782991,0.7456140350877193,0.18,0.4918487686437738,0.7245901639344262,0.625414364640884,0.5166163141993958,0.0963172804532577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805664735199,0.0047156895555082,0.006790430466601,0.0090631985368827,0.011331387128602,0.0134031328295276,0.0157135864910062,0.0182978506152039,0.0204540805890775,0.0227568337071517,0.0246992091739919,0.0269440164355418,0.0290685709581824,0.0313434066500381,0.0333374630902971,0.0352470291346482,0.0373655524008869,0.0396902025518838,0.0417186849771119,0.043605196755156,0.0583140033017783,0.0722918063002681,0.086082219959908,0.0993307799149795,0.11207733547216,0.1280216756276194,0.1395225351514379,0.1502184802302035,0.1600205428886297,0.1696931276056217,0.1811372883368048,0.1913986658712511,0.2021573631743123,0.2114068190793804,0.2201088456401028,0.2301665796170558,0.2384214945424013,0.2465648338259515,0.2538815280244046,0.2612057772517838,0.2665296214998316,0.2729835772854357,0.2790141950210428,0.2839868612611745,0.2883647223745962,0.2924123430832973,0.2961391173331659,0.3002515932108147,0.3041993011988725,0.3061516262691783,0.3032807920364142,0.3009336514459875,0.2980583209771941,0.2954367666232073,0.2937550254623425,0.2912100544102996,0.2885123901512152,0.2890141122738996,0.2893504273504274,0.2897513861563227,0.2904085424212284,0.2913335971507717,0.2931243977039426,0.2938462916517377,0.2963640741632555,0.2975769550748752,0.2980128695750772,0.3027153558052434,0.3056610346629507,0.3090098267492798,0.3142070335425037,0.3188192657177373,0.3182356239486636,0.323957469270794,0.3287505805852299,0.3308823529411764,0.338570781084756,0.3390480032271077,0.3419477693144722,0.3369565217391304,0.0,2.0987150127887637,52.18159704611836,152.41776181793756,210.9710566823035,fqhc1_100Compliance_baseline,3 -100000,95753,47519,452.20515284116425,5128,52.43699936294424,4047,41.74281745741648,1549,15.82195858093219,77.32698317968122,79.6861702555093,63.31555014592704,65.06090466055602,77.1284832415975,79.490626022944,63.24096034492487,64.9897505263374,0.198499938083728,195.54423256529677,0.074589801002169,71.1541342186166,212.10046,149.22261005524751,221507.4410201247,155840.74614607115,502.29727,337.1059097908022,524069.50173884886,351552.1628667531,454.89378,222.5831281356232,471859.84773323033,229939.8909018413,2829.73522,1315.454831798988,2919358.2759809094,1338128.909512603,941.20523,418.93125559486543,971109.0305264588,425712.9461723751,1498.9102,635.0986433111752,1532644.261798586,635738.5242322044,0.38018,100000,0,964093,10068.520046369304,0,0.0,0,0.0,43744,456.3094628888912,0,0.0,41254,427.6419537769052,1231231,0,44161,0,0,0,0,0,82,0.8563700354035905,0,0.0,1,0.0104435370171169,0,0.0,0.05128,0.134883476248093,0.3020670826833073,0.01549,0.3532050084096431,0.6467949915903569,23.734227804781444,4.175167424551068,0.3135656041512231,0.2713120830244626,0.2181863108475414,0.1969360019767729,11.65950395568956,6.3858682276171175,16.46587650034879,11523.2099077236,46.47348311960101,13.410731788034688,14.50558438447506,9.85765409311712,8.699512853974145,0.5829009142574747,0.785063752276867,0.69424743892829,0.5877689694224235,0.1217063989962358,0.7480916030534351,0.9105145413870246,0.8510028653295129,0.7268518518518519,0.1257485029940119,0.5149930264993027,0.6989247311827957,0.6347826086956522,0.5427286356821589,0.1206349206349206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0044107805560625,0.0064348496843472,0.0087573146944083,0.0107907449783879,0.0129728628888549,0.0151017661214667,0.0174244125512933,0.0198581415314173,0.022384622470599,0.0244949831404823,0.0265662050771425,0.0286169501978722,0.0307258255506245,0.0327309112665305,0.03473930025419,0.0369082005569877,0.0393336514324834,0.0413141538653418,0.0432757920178353,0.0588376535927924,0.0727400169479113,0.0858538733317257,0.0987206576471454,0.1104552497602007,0.1259079135169424,0.1360030543418317,0.1462383680074956,0.1559189781412003,0.1649045221815527,0.1770608778132275,0.1889816649880329,0.2005636193502056,0.2096096621739891,0.2181790164223132,0.2274691905310754,0.2360161729884287,0.2444539537397806,0.252263201535683,0.2580789328932893,0.2636264703158285,0.2694955739777996,0.2747642068344471,0.279615564594507,0.2839515178039559,0.2876641390789717,0.2917705111024835,0.2949166783363675,0.2989003018017434,0.3027237354085603,0.3006039248389309,0.2981057377725236,0.2959353023909986,0.2935377242743111,0.2918385517139041,0.2891317324027733,0.2861593446563558,0.2861754247980468,0.287053609477542,0.2868040613830752,0.2872159674377789,0.2871497812980257,0.2878340763064816,0.2899170901310511,0.2907957813998083,0.2911382536382536,0.2921453493319717,0.2955135219634203,0.2990976552973556,0.3029873656866218,0.3065337962754205,0.3083797707917148,0.3109437250996016,0.3140837656966689,0.3187343416535214,0.3232511970103935,0.326169214469502,0.3304643714971977,0.3359009628610729,0.3393682588597843,0.0,2.0315265157742286,51.596788504929535,153.6925044459965,207.8934973755231,fqhc1_100Compliance_baseline,4 -100000,95751,47777,454.9195308665184,5216,53.190045012584726,4159,42.76717736629382,1593,16.208708003049576,77.39144353273707,79.7303306895171,63.36142006586866,65.08733877727788,77.19195306206149,79.53582730083652,63.28591207230343,65.01639090297934,0.1994904706755846,194.50338868058736,0.0755079935652247,70.94787429853966,211.8039,148.9518669723344,221202.8072813861,155561.68287781268,503.14281,336.82619503564274,524831.0200415661,351134.54912827787,459.28323,225.153558654944,475702.0709966475,232092.6615612116,2936.95771,1359.8113773481637,3022106.7038464346,1375039.8253287838,990.98186,445.1265249419399,1015354.10596234,445445.7629348441,1551.77644,659.1295352004406,1580907.0819103718,654705.365724817,0.38213,100000,0,962745,10054.673058244822,0,0.0,0,0.0,43651,455.19106850059006,0,0.0,41705,431.5672943363516,1236828,0,44432,0,0,0,0,0,95,0.9921567398773904,0,0.0,0,0.0,0,0.0,0.05216,0.1364980504016957,0.3054064417177914,0.01593,0.3546969419520234,0.6453030580479766,23.613975895122437,4.146884272957244,0.3188266410194758,0.2647270978600625,0.2091849002163981,0.2072613609040634,11.264769852539796,6.078934411957884,16.985780836763414,11636.5187687039,47.3748903810262,13.335908529283348,15.11276740197836,9.61737992210914,9.308834527655346,0.5777831209425343,0.8019981834695731,0.6907993966817496,0.5678160919540229,0.1276102088167053,0.7658495350803043,0.9212962962962964,0.8770053475935828,0.7227722772277227,0.1942857142857142,0.5030241935483871,0.7249626307922272,0.6176470588235294,0.5209580838323353,0.1106259097525473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023995626113721,0.0045907354297353,0.0069702319352285,0.0091508312936086,0.0114691258858577,0.0136593111310153,0.016028123089464,0.0182014814210214,0.0202167761444084,0.0222333633461569,0.0243135245901639,0.0266025114904793,0.0287502183495853,0.0308553667548346,0.0328426521523998,0.035121064374845,0.0371129326047358,0.0389442024476249,0.0409767050238563,0.0430239704978488,0.0583814365194517,0.0722611698231662,0.0860853510133859,0.0991166263539804,0.1116043186706591,0.1271360291007529,0.1370438323912144,0.1474897066802847,0.157074660657646,0.1666452276820169,0.1775964519462624,0.1891114379650458,0.2000673847123651,0.2097207656004195,0.2178812096694405,0.2274361839848634,0.2363117531656857,0.2445520309130122,0.2529215075092094,0.2596787479406919,0.2658214681952662,0.2721939818872334,0.2783065154936571,0.2830870908263691,0.2878260553217807,0.2925677171746992,0.2966710386609206,0.3001436215508585,0.302672579873547,0.3064921727910681,0.3048785400636506,0.3024777741191966,0.2996166322618696,0.296681782192471,0.2944632734914973,0.2912908337396392,0.2889284532606469,0.2889828847661354,0.2898351181370049,0.2903254474680506,0.2913265210812426,0.2919096784363177,0.2930202435916184,0.2934809293190796,0.2945499963970888,0.2963271251690771,0.2981221988994156,0.3031916559651705,0.3073317475863998,0.3111787252538823,0.3159662340019969,0.3177213175621917,0.3232228083396131,0.3278055429350295,0.3332403273809524,0.3358252540591052,0.3400507538438573,0.3491182880919358,0.3526570048309179,0.3479729729729729,0.0,2.553433148045778,50.95117702982699,158.5496676018569,214.31960473779847,fqhc1_100Compliance_baseline,5 -100000,95716,47505,453.5918759664006,5127,52.3005558109407,4097,42.093275941326425,1600,16.21463496176188,77.37264048070351,79.73126362240124,63.34029949113111,65.08158042928535,77.16790102351898,79.53370212351734,63.262005390680656,65.00978466754091,0.2047394571845302,197.56149888389984,0.0782941004504564,71.7957617444398,210.97648,148.4267577775468,220419.2402524134,155069.9546340704,506.56271,339.5698540233813,528503.2387479628,354037.1674016025,456.18441,223.000627121652,472101.6966860296,229613.6840231593,2931.20378,1353.08045651217,3014466.73492415,1365829.5754738117,946.25244,428.0142446340257,972713.945421873,431324.0444093432,1556.63242,667.3234116263043,1579671.4655856912,657022.2299168897,0.37967,100000,0,958984,10019.0563751097,0,0.0,0,0.0,44073,459.693259225208,0,0.0,41304,427.08638054243806,1236081,0,44394,0,0,0,0,0,83,0.867148648083915,0,0.0,1,0.0104475740733001,0,0.0,0.05127,0.1350383227539705,0.31207333723425,0.016,0.3449237634808479,0.6550762365191521,23.62531666240521,4.241000501786352,0.3048572125945814,0.264827922870393,0.2145472296802538,0.2157676348547718,11.332952782198776,6.042553773773261,17.192781174396742,11527.097192589315,46.56854339010084,13.27063777982948,14.058066365530786,9.617389285475817,9.622449959264763,0.5667561630461313,0.7907834101382488,0.6925540432345877,0.5847554038680318,0.0961538461538461,0.7275862068965517,0.9192825112107624,0.8333333333333334,0.7101449275362319,0.0928961748633879,0.5032345931222336,0.701095461658842,0.6432432432432432,0.5461309523809523,0.0970042796005706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0046415939517395,0.0068880164744311,0.009272424439389,0.0113270089172233,0.0132133477207484,0.015473375193672,0.0175050014289797,0.0195547287075275,0.0216915076570305,0.024032891431618,0.0260164271047227,0.0279691516709511,0.0296607551133905,0.0317977817900438,0.0340258397932816,0.0358766216957786,0.0379337171308542,0.0399871109909984,0.0419153568117663,0.0568904482942263,0.0711886399547942,0.0845287529885491,0.0966626373048825,0.1089956460777802,0.1244224527124898,0.1357228474748867,0.1466018177561141,0.1563888414217361,0.1663592295482819,0.1781671710590085,0.1896368908508612,0.2009114045200443,0.2098257740640687,0.2179715694041017,0.2278392661282281,0.2363703339882122,0.2446741431338107,0.252765976781698,0.2600215566665138,0.2651825611817276,0.2704395154210803,0.2756320640712745,0.2792288034936593,0.2837297487815846,0.2881922185512106,0.2926814006457587,0.2955013605269181,0.3004450654660249,0.3041575492341357,0.3014131472442956,0.2988981094746098,0.2972687893789379,0.2950921396308642,0.2928168596022558,0.2900364036831961,0.2876868147492812,0.2874631268436578,0.2875014893363517,0.2874626971720904,0.2872142378434731,0.2875336041286474,0.2885036154118652,0.288819324186315,0.2905411854538512,0.2920219087479977,0.2928218868988859,0.2975114176530897,0.2999237804878049,0.3039181218016328,0.3073919482967551,0.3095238095238095,0.3116380655226209,0.3135912101143889,0.3176841714603822,0.3173821252638986,0.3199878677585684,0.3254,0.329175704989154,0.3369770071617037,0.0,2.693512996234669,49.895042958874775,151.52708314090827,216.73180866576047,fqhc1_100Compliance_baseline,6 -100000,95746,47397,450.8073444321434,5191,53.06749107012303,4081,42.08008689658054,1544,15.77089382324066,77.33281654085012,79.69631714849646,63.319784280511655,65.06990649742531,77.13955185543759,79.50838810561922,63.24653008807135,65.00145586353221,0.1932646854125295,187.92904287724355,0.0732541924403094,68.45063389309303,212.88146,149.7191758377806,222339.79487393727,156371.20698283022,503.09145,337.38113292340955,524882.2509556535,351809.41545694805,457.00762,223.82662813563977,473779.2388193763,231117.8297111721,2896.67709,1340.0801634558643,2985982.4013535813,1360225.788498595,946.75268,425.9399163528918,971606.9391932822,427654.4360630117,1504.25222,636.2983925091203,1536975.6856683306,633263.8396856688,0.37934,100000,0,967643,10106.354312451696,0,0.0,0,0.0,43723,456.0817162074656,0,0.0,41414,429.0623106970526,1228272,0,44120,0,0,0,0,0,96,1.002652852338479,0,0.0,0,0.0,0,0.0,0.05191,0.1368429377339589,0.2974378732421499,0.01544,0.3483125458547322,0.6516874541452677,23.59636174465994,4.22375586049507,0.3107081597647635,0.2639059054153393,0.2151433472188189,0.2102425876010781,11.351751740660143,5.946268971649606,16.483231267609796,11514.726439974263,46.52739195841976,13.07861518067097,14.37146065997573,9.78440210852608,9.292914009246989,0.5724087233521196,0.8096564531104921,0.6892744479495269,0.570615034168565,0.1037296037296037,0.7683235046335299,0.9304347826086956,0.8416666666666667,0.7653061224489796,0.1812865497076023,0.4920525224602626,0.7196110210696921,0.6288546255506607,0.5146627565982405,0.0844250363901018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024622804973198,0.0047873581288732,0.0068839476088943,0.0092192598164279,0.0114556627192446,0.0138017438070404,0.0159393834324233,0.0183358856559469,0.0204699290403059,0.0224757067816221,0.0247903381246283,0.0270153713458398,0.0293140853614649,0.0313285272914521,0.0334602408146841,0.0355053438901866,0.037417537464141,0.0391444671599506,0.0411866239653953,0.0433061432842662,0.05785814210845,0.0717409499895375,0.0846895973154362,0.0975955927962404,0.1094011868748089,0.124402521043949,0.1352495094659808,0.1452217231175356,0.1549751642365005,0.1648898517771723,0.1768708947991816,0.187953084763368,0.1985905843202505,0.2081146680661244,0.2170512792309215,0.2264926034192576,0.2352685196549915,0.2436307166006482,0.2515207226837351,0.2581915600027477,0.2637547006074631,0.2696092771803363,0.2752015532325468,0.2796731015805682,0.283970263113141,0.2879228720781142,0.2914664063282267,0.2955883662075719,0.2999236077842373,0.3031378655125092,0.3004657548998492,0.2983768913342503,0.2965268583983549,0.2946995956094743,0.2915713139358635,0.2887192510096683,0.2851926785319129,0.285045045045045,0.2845680799959116,0.2856914155608523,0.2864665023526775,0.287099444247369,0.2884438881935753,0.2886095661846496,0.2887740206284251,0.2884091439840162,0.2895520694448384,0.2937754144510479,0.2995988138845282,0.3031331386630889,0.3066003616636528,0.3127802099266838,0.3175177924834561,0.3233898305084746,0.3268998793727382,0.3311118905647141,0.3339347466546384,0.331013916500994,0.3342332613390928,0.3363431151241535,0.0,2.112351310061369,51.67189127592128,149.2951528325968,214.1411874599252,fqhc1_100Compliance_baseline,7 -100000,95782,47600,452.6842204171974,5065,51.732058215531104,4035,41.58401369777202,1539,15.723204777515608,77.34910350822409,79.67804515280963,63.34642956891118,65.06688614580997,77.14927420445362,79.48041477713653,63.270345501694045,64.99429506588845,0.1998293037704712,197.63037567309996,0.0760840672171312,72.5910799215228,213.29858,150.03109875240722,222691.7166064605,156638.09353783302,505.53459,339.1668013817324,527232.0477751561,353537.8373616466,457.46092,224.39638021104284,473882.4831387943,231478.4341259487,2845.59852,1331.892418878594,2935116.806915704,1354750.8706005237,924.15264,420.2353868279784,951830.5840345784,425722.07390530384,1493.51764,642.6657846116653,1526865.611492765,642103.218541888,0.38101,100000,0,969539,10122.350754839114,0,0.0,0,0.0,43975,458.53083042742895,0,0.0,41374,428.3477062496085,1227320,0,44048,0,0,0,0,0,92,0.9500741266626298,0,0.0,1,0.0104403750182706,0,0.0,0.05065,0.1329361434083095,0.3038499506416584,0.01539,0.3367385546727204,0.6632614453272796,23.39690044755328,4.238499344000108,0.2976456009913259,0.2780669144981412,0.2210656753407682,0.2032218091697645,11.31624569745763,5.958757410045377,16.616807262335527,11599.83153903018,46.37306163172475,13.794450546701734,13.636633566119349,9.869806625333014,9.072170893570656,0.5719950433705081,0.7789661319073083,0.6827643630308077,0.5840807174887892,0.1134146341463414,0.7348798674399337,0.9126016260162602,0.8393939393939394,0.6798029556650246,0.1263736263736263,0.5024752475247525,0.6746031746031746,0.6234213547646383,0.555878084179971,0.109717868338558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315942968243,0.0048753788301117,0.0072637996976798,0.0097002569806299,0.0117338430878106,0.014017264546602,0.0161845940602132,0.0183191304791549,0.0205683107010391,0.0227335509151737,0.0249664484535554,0.0269368907131862,0.0293510097117311,0.0315372343162987,0.0339004021033096,0.0357685117283121,0.0376134352914394,0.0395786024616086,0.0416151456270327,0.0434556227806183,0.0583250717453691,0.0720097895661632,0.0854207077326343,0.098453001513368,0.1109331366246904,0.1260117928017414,0.1366628157161178,0.1474738666695024,0.1571634384504562,0.1664506176146042,0.1788935529006565,0.1909659140064019,0.2019396996944755,0.2109942262269268,0.2197872317018163,0.229739307625861,0.2383104564222743,0.247113060100073,0.253820409552442,0.2600016025457584,0.2658710886005689,0.2712568127061355,0.2772335794056407,0.2819496184852005,0.2861495878503878,0.2905308818455168,0.2939616125722579,0.2972350523596849,0.3005103494728116,0.3043702070931721,0.3019741980662016,0.2993051255589955,0.2971421334796741,0.2937738979871582,0.2921998013254852,0.288406903925462,0.2855519070472341,0.2860557247159742,0.2870542173802026,0.2868055555555555,0.2877548734035402,0.2877792896724447,0.2888814663270844,0.2905931428316491,0.2917116987294954,0.2922904678834587,0.2934442102864954,0.2958743745476287,0.2997893997893998,0.3017796138873441,0.3055896666211852,0.3070774442856386,0.3129852913326179,0.3145007984183712,0.3160719329629978,0.3181709930935937,0.3235474946203504,0.3318467464017839,0.3369057433360813,0.3466353677621283,0.0,2.1028566836671643,52.56727937146314,149.66152363662988,207.4668391564914,fqhc1_100Compliance_baseline,8 -100000,95661,47864,455.32662213441216,5175,52.67559402473317,4144,42.67151712819226,1655,16.87207953084329,77.31532774038504,79.70664353946296,63.31028192710126,65.07590015238884,77.1067409924306,79.50301478245244,63.23067405401379,65.00078636470964,0.2085867479544418,203.6287570105202,0.0796078730874683,75.11378767920007,212.59502,149.59719965259129,222237.92350069515,156382.64251115007,504.86407,339.1016079821131,527132.802291425,353851.67203156266,465.2693,228.3987433080851,482502.4200039724,235657.65644400296,2954.11361,1383.931488746126,3044841.366910235,1403438.787746444,980.92485,445.3530781178289,1007529.3693354658,447673.29458841897,1615.39964,696.5498933030252,1648856.1064592677,693669.603312692,0.38162,100000,0,966341,10101.723795486145,0,0.0,0,0.0,43794,457.13509162563633,0,0.0,42092,436.1547548112606,1225463,0,43959,0,0,0,0,0,100,1.0349045065387148,0,0.0,0,0.0,0,0.0,0.05175,0.1356061003092081,0.3198067632850241,0.01655,0.3650999259807549,0.634900074019245,23.500261470774507,4.1811671005333135,0.3011583011583011,0.2649613899613899,0.2171814671814672,0.2166988416988417,11.192155301642153,5.899971261839851,17.88056939326897,11645.139580684214,47.61211772952088,13.405062081569666,14.238379397074135,10.063957383729504,9.904718867147578,0.5740830115830116,0.8069216757741348,0.6939102564102564,0.5855555555555556,0.111358574610245,0.7491961414790996,0.9209401709401708,0.8599439775910365,0.7660550458715596,0.1343283582089552,0.4989655172413793,0.7222222222222222,0.6273849607182941,0.5278592375366569,0.1047345767575322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.004805450232162,0.0072154904706813,0.0096620811574177,0.0119730631510416,0.0142500636618283,0.0164619966545632,0.0189877942903835,0.0212507030730684,0.0235627828865177,0.0255371519409261,0.0275709046831503,0.0296075304768273,0.0315101805292226,0.033711808422791,0.0356913848381425,0.0377868725068642,0.0399165550954323,0.0418456609700537,0.0440134239379664,0.058653293632137,0.0727268919881057,0.0861593039243469,0.0990960654116111,0.1109316953731847,0.126689743508315,0.1380181787291879,0.1485529245092086,0.1586609376002052,0.1685646513325247,0.1805345979737012,0.1921427643262442,0.2022448668539203,0.2113298821263229,0.2202139025652887,0.2296582248993311,0.238248961172423,0.2456416778274228,0.2530201189881466,0.2601290559204117,0.2661139032355189,0.2715046526599169,0.2776093957188861,0.2815870616324131,0.2853515411437388,0.2896877233628275,0.2940881951659135,0.2983605306335296,0.3013106651658062,0.3056786995989022,0.3030719112618797,0.2998844216956988,0.2980367321089297,0.2957471712836519,0.2927017595961096,0.2899455357689248,0.2861432929238647,0.2864599525484742,0.2871157285191177,0.2872399124290266,0.2884055808401104,0.2888495226847751,0.2894231170892685,0.2900343183135,0.2912342098324504,0.2942658287020204,0.2965050091074681,0.3015043746459369,0.3049101964781554,0.3095522150640261,0.3139874167958421,0.3191602163079207,0.3251417769376181,0.3312691131498471,0.3354072398190045,0.3389388915206063,0.3396197948098974,0.3382120253164557,0.3442934782608696,0.340943113772455,0.0,2.4867258526622544,54.008130774231816,151.52499356082026,214.2897879786392,fqhc1_100Compliance_baseline,9 -100000,95620,47673,454.2878058983476,5186,53.03283831834344,4095,42.177368751307256,1583,16.136791466220455,77.3146043072854,79.73384065666416,63.296484254502126,65.083027914457,77.10604007136564,79.52935843690618,63.21826983962245,65.00899440170261,0.2085642359197663,204.48221975797765,0.0782144148796817,74.03351275439718,211.63318,148.8403687733694,221327.31646099145,155658.19783870463,503.50748,337.5992367199442,525943.5787492156,352435.6899392848,457.39043,224.26634869287983,474393.8715749843,231472.59359669103,2924.22914,1355.49941632626,3014138.381091822,1373849.0716535682,962.81004,434.5156697371062,988571.4076553022,436214.5584523205,1543.87686,658.2235748303983,1575593.6833298474,654933.0865568131,0.38268,100000,0,961969,10060.3325664087,0,0.0,0,0.0,43741,456.797741058356,0,0.0,41473,429.711357456599,1232612,0,44214,0,0,0,0,0,74,0.7738966743359129,0,0.0,2,0.020916126333403,0,0.0,0.05186,0.1355179262046618,0.3052448900887003,0.01583,0.3446369332841872,0.6553630667158128,23.68247971895359,4.130786614395479,0.3218559218559219,0.2554334554334554,0.2139194139194139,0.2087912087912088,11.094648267241904,5.917952825161067,17.055418379060818,11639.341874181826,46.718579601089374,12.80551323748884,14.806122639946253,9.680001741287096,9.426941982367186,0.57997557997558,0.8154875717017208,0.6927162367223065,0.5776255707762558,0.1204678362573099,0.7574013157894737,0.9230769230769232,0.8728323699421965,0.7746478873239436,0.1164021164021164,0.5050364709968739,0.7283737024221453,0.6286008230452675,0.5143288084464555,0.1216216216216216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025331077178725,0.0048777519749318,0.0071669306046209,0.0093786516283086,0.01165771484375,0.0140354451008352,0.0164829000112197,0.018418633159669,0.0207423469126837,0.0226418572262444,0.024676923076923,0.0267282999486389,0.0287639524715806,0.0307351501725825,0.0326799409572766,0.0348959841184498,0.0369376463518246,0.039223014711226,0.0409834359913434,0.0431993825679748,0.0578643699305962,0.0721034988476849,0.0850923067229538,0.0976051371124796,0.1101094655505473,0.1258841967046465,0.137700634168623,0.1483668140885597,0.1585331935559787,0.1679235148780749,0.1800597646094264,0.1914556962025316,0.2016821370985314,0.2109206418752396,0.2192968922195283,0.2299276552305712,0.2383038158556344,0.2457782734574785,0.2539787120446206,0.2606272576113755,0.2664953465759133,0.2721849889469806,0.2778047308570684,0.2830844459359045,0.2876704014372594,0.2924528301886792,0.2954443166474971,0.2994662600076248,0.3025228557019642,0.3055606823634877,0.3025595502293238,0.3003324815211716,0.2978995973759045,0.2951902099316602,0.2930491140444761,0.2905118659128862,0.2874499057515325,0.2879330747485372,0.2887302239572632,0.2890726879722753,0.2897025000467473,0.2904101504868693,0.2912101645490523,0.2917491602340222,0.2921570968127014,0.2936922043705119,0.2966226138032305,0.3011658635162443,0.305656839254089,0.3086812927577259,0.3142600089968511,0.3182940280476916,0.3243429718371699,0.3278353635469471,0.3299430810861248,0.3358279876455215,0.342623960578996,0.3445412193639862,0.3475543478260869,0.3563218390804598,0.0,2.564846490604787,52.600122434532864,145.5355718845019,215.86585229213503,fqhc1_100Compliance_baseline,10 -100000,95652,47410,453.5190063981934,5070,51.92782168694852,4006,41.358257015012754,1553,15.88048341906076,77.29129418892526,79.69181457928933,63.29829466637945,65.07026347173627,77.09334035722915,79.49576584486816,63.224179168218605,64.99917074459019,0.1979538316961111,196.04873442116852,0.0741154981608431,71.09272714608039,212.38448,149.37834520412278,222038.7237067704,156168.5539289537,501.16305,335.9007320563844,523437.952159913,350663.3965378501,455.55351,222.35812949010972,473454.4494626354,230321.28195248617,2845.39367,1310.03871882569,2938466.90084891,1333320.1698089845,921.94255,410.7065978520644,949703.6235520428,415228.70180661534,1506.65766,637.082482841989,1541829.8833270606,637571.0785902336,0.37973,100000,0,965384,10092.669259398654,0,0.0,0,0.0,43648,455.7771923221679,0,0.0,41124,427.0375946138084,1230245,0,44167,0,0,0,0,0,96,1.0036381884330698,0,0.0,0,0.0,0,0.0,0.0507,0.1335159192057514,0.3063116370808678,0.01553,0.3566420314572673,0.6433579685427326,23.600614035526863,4.124115059154677,0.3130304543185222,0.2573639540688966,0.2216674987518722,0.2079380928607089,11.293375814354173,6.061570395293181,16.548141436655065,11442.015276766078,45.86451920294243,12.640609080271409,14.401920244632112,9.900953417255684,8.921036460783226,0.5751372940589117,0.8147429679922406,0.6961722488038278,0.5608108108108109,0.1116446578631452,0.752568493150685,0.9080188679245284,0.8614958448753463,0.6796536796536796,0.1710526315789473,0.5021141649048626,0.7495881383855024,0.6293393057110862,0.5190258751902588,0.0983847283406754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359997163781,0.0041670891209571,0.0063842960526983,0.0085865257595772,0.0109269602905716,0.0128431023068696,0.0149988783979444,0.0170931443625298,0.0192520039260592,0.0213277906333831,0.0231766346706046,0.0251319762545447,0.0271488092176328,0.0291923417760649,0.0312074162778213,0.0334902001344572,0.0355258930699636,0.0373162222775978,0.0393399298727513,0.0412001417818644,0.0562823942484534,0.0704926103214588,0.0841663166736665,0.0966118999252702,0.1090154937307383,0.1240817968204238,0.1353609341825902,0.1452492543672773,0.1555641083207714,0.164626945786366,0.1762980852164913,0.1875115042714683,0.1972028733130169,0.2069671458130343,0.2162835291265345,0.2258314941942352,0.2341946799834657,0.2417686324391863,0.2500624361448518,0.257283944959384,0.2642208205543661,0.269865032396903,0.2761224948802632,0.2804052029011569,0.2851655564739631,0.2891835224469659,0.2926627678358984,0.2958743332866581,0.299376918792181,0.3028852493604452,0.299207406510301,0.2962580822671619,0.2940123978585517,0.2911542407907857,0.2902003328973963,0.2867301120255007,0.2840704042546456,0.2846230924651346,0.2838830969065117,0.2839997856874967,0.2849406959096104,0.2854007237349469,0.2865104974227884,0.2867004758606823,0.2893683327340285,0.2889165952362399,0.2892337316644957,0.2939207158724696,0.2985544783171747,0.3001584158415841,0.303164958737644,0.3055892113996734,0.3102237823606845,0.3121198296836983,0.3160762942779291,0.3165219459973831,0.3224961479198767,0.3290229885057471,0.3323229539818131,0.3368580060422961,0.0,2.0272503657253984,51.17568780677776,146.2150676994717,211.62619113317805,fqhc1_100Compliance_baseline,11 -100000,95636,47604,453.5948805888996,5044,51.43460621523276,4040,41.699778326153336,1586,16.249111213350623,77.27514686010801,79.68713914969081,63.27600815666828,65.05656230953703,77.0707231891214,79.48483449320845,63.19771714922045,64.98149467890015,0.204423670986614,202.3046564823545,0.0782910074478309,75.06763063688027,210.86714,148.36119244167747,220489.06269605583,155130.8842294508,501.75964,336.7372687650628,524115.53180810576,351562.9666287411,461.45515,226.48487616320497,479190.4303818646,234207.0645738506,2867.75593,1341.938514578952,2962126.876908277,1366684.3495952908,965.14763,436.5961031266389,992159.2810238824,439512.9675475805,1536.9328,663.272519325154,1575355.9329122924,665222.4516717584,0.38058,100000,0,958487,10022.230122547997,0,0.0,0,0.0,43585,455.1633276172153,0,0.0,41780,433.5292149399808,1232082,0,44223,0,0,0,0,0,85,0.8887866493788951,0,0.0,0,0.0,0,0.0,0.05044,0.1325345525250932,0.3144329896907216,0.01586,0.3523610847714773,0.6476389152285227,23.634327567146308,4.204097239034786,0.3277227722772277,0.2559405940594059,0.2086633663366336,0.2076732673267326,11.34928063726822,6.1728377324838215,16.98861220431349,11575.44242132774,46.26276993256496,12.668054774147205,14.969905246925023,9.430791142292929,9.194018769199802,0.5806930693069307,0.7959381044487428,0.6986404833836858,0.5741399762752076,0.135876042908224,0.7186468646864687,0.8950892857142857,0.8314285714285714,0.7116279069767442,0.1306532663316583,0.5215700141442716,0.7201365187713311,0.6509240246406571,0.5270700636942676,0.1375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0050677558963339,0.0072751255644056,0.0096394108684611,0.0118390138223537,0.0138809678996252,0.0161010727250479,0.0183867443926044,0.0204062854630775,0.0224340596330275,0.0246479234406572,0.0269667769308212,0.0291472900119346,0.031221332343816,0.0331264650303074,0.034925101382107,0.037170251360456,0.0392684294705356,0.0413657460403355,0.0433522093253657,0.0580175170885679,0.072718890146276,0.0856356493056285,0.0981532399945218,0.1109855286785676,0.1264801203160414,0.1368664916736628,0.147240375696969,0.1571781780817519,0.1667186206748288,0.1787291475462938,0.1901275543407523,0.200723918755383,0.2105465194073066,0.2189748796962606,0.2281569036959685,0.2361631876434047,0.244490334811605,0.2523787844297746,0.2591818453269632,0.2647826540911147,0.2716388155965992,0.2766744964054381,0.2814113803953594,0.2859662996532636,0.2905693906261569,0.293925907352849,0.2983432449985355,0.3015399385062466,0.3041151284490961,0.3014749501159467,0.2986186665932159,0.2957917130418856,0.2934379107625197,0.2910356909555199,0.2874674827850038,0.2844183142888752,0.2855199095096801,0.2860570786746311,0.2864536093474897,0.2872841444270015,0.2883676041912865,0.2897358254150569,0.2908300835654596,0.2914491017964072,0.2919984437816106,0.2924506914531852,0.2959289044653753,0.2989791637533212,0.3013552491208661,0.3044834131790653,0.307143234812034,0.313307937300943,0.3151396521870059,0.3219848894692659,0.3236891828058573,0.3337387866808575,0.3375,0.3482777474029524,0.3566539923954372,0.0,2.041537393408743,53.065329388772,143.47944501963622,212.6751059704598,fqhc1_100Compliance_baseline,12 -100000,95692,47616,454.7611085566192,5099,52.21962128495591,4011,41.41412030263764,1520,15.539439033566026,77.28391542799022,79.68189915696786,63.28504443165552,65.05977200473305,77.087116641415,79.48609105494535,63.21069252709386,64.98798998015135,0.1967987865752292,195.80810202251087,0.0743519045616594,71.7820245816938,210.11848,147.90860122664424,219577.89574886093,154567.36323479938,500.00941,335.4472301446776,522022.2484638215,350051.5718604248,457.72172,223.91299894203183,475106.3620783346,231515.1848176135,2833.41945,1316.6478220851527,2927018.68494754,1341962.8517380266,922.79509,414.7288498063956,952425.375161978,421486.2786924649,1481.3117,635.1360182762037,1515743.0297203527,636106.4912159194,0.3813,100000,0,955084,9980.813443130042,0,0.0,0,0.0,43478,453.8310412573674,0,0.0,41303,428.4161685407349,1239968,0,44499,0,0,0,0,0,91,0.9509676879989968,0,0.0,0,0.0,0,0.0,0.05099,0.1337267243640178,0.2980976662090606,0.0152,0.363261480787254,0.636738519212746,23.66975743651447,4.097452835209149,0.3093991523310895,0.2734978808277237,0.2079281974569932,0.2091747693841934,11.326463768111768,6.062466708909439,16.28568268737975,11546.219279087009,46.04520806858577,13.356530053413351,14.137887016376885,9.306635931134828,9.244155067660708,0.5843929194714536,0.7866909753874203,0.7099113618049959,0.605515587529976,0.1132300357568533,0.7510955302366346,0.9174107142857144,0.8757575757575757,0.7458563535911602,0.1208791208791208,0.5181184668989547,0.6964560862865947,0.6498353457738749,0.5666156202143952,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019963113840416,0.0041889808503732,0.0065281176076428,0.0088616985599739,0.011039549057314,0.0132731643712818,0.0151971033709011,0.0172202475793602,0.0191971362822807,0.0213382777766395,0.0235857767199458,0.025615469976573,0.0277320436303766,0.0298973534504081,0.032,0.0341065389825951,0.0361420814854727,0.0379301396169616,0.0397665806773737,0.0418342886920271,0.0571183838046191,0.0703943718003747,0.0838930400470153,0.0966380807071079,0.1091949170431038,0.1242709402885541,0.1363269553398882,0.1466469291472752,0.1567774416640834,0.1661425182736376,0.1784944382167802,0.1908047969320434,0.2008362278285297,0.2098340907846465,0.2183966319130645,0.2279745584921577,0.2366520592049367,0.2445255885767094,0.2509830215696524,0.2575164898193289,0.263807094829585,0.2704518277099111,0.2766686832022585,0.2807322929171669,0.2855387086568181,0.2895438059756729,0.2944086156158036,0.2988866976270755,0.3034990744216753,0.306195623517005,0.3036714039621016,0.3008590474881451,0.2979582079478021,0.2952497657319974,0.2927448447868881,0.2891092442118471,0.2862994417295314,0.2869119549376954,0.2879433833560709,0.2884255546645282,0.288750327678538,0.2899218672732667,0.2898158066074391,0.2908300466116887,0.2921554429157615,0.2929190148194531,0.2933503836317135,0.2968313287064661,0.3010125698324022,0.304440329380245,0.3078315160837895,0.3117860714849713,0.3149205561072492,0.3189064362336114,0.3228687166267722,0.3307692307692307,0.3345892991710625,0.3376597444089457,0.3418591859185919,0.3392519833774083,0.0,1.993882697661814,49.9348858424986,155.2215393218294,207.2114978175736,fqhc1_100Compliance_baseline,13 -100000,95659,48164,458.8172571321047,5219,53.293469511493946,4155,42.86057767695669,1600,16.339288514410562,77.35161970545354,79.75660694059644,63.31721993396855,65.09375711304462,77.14808406704982,79.55525621245962,63.240817886584246,65.02044680910964,0.2035356384037214,201.35072813681631,0.0764020473843061,73.31030393497429,210.46762,148.10475191814996,220018.62867059032,154825.73716864063,506.38224,339.884453547541,528801.2837265704,354747.8371585956,467.42042,229.25504271641924,484869.9651888479,236787.12419801316,2951.23376,1374.1685205347096,3047771.1872380017,1399288.826117376,990.01619,449.1260192695106,1021967.3005153724,456600.286632842,1563.1507,659.9465429250073,1598832.1433424978,662178.1092168385,0.38371,100000,0,956671,10000.846757754103,0,0.0,0,0.0,44096,460.38532704711525,0,0.0,42301,438.4532558358335,1234980,0,44265,0,0,0,0,0,95,0.9931109461733868,0,0.0,1,0.0,0,0.0,0.05219,0.1360141773735373,0.3065721402567541,0.016,0.3448592974066581,0.6551407025933419,23.440013775652247,4.212550960505151,0.3068592057761732,0.2685920577617328,0.2093862815884476,0.2151624548736462,11.513374442337213,6.15878436827564,16.94197727975893,11678.224168090765,47.325436758527246,13.630909614307477,14.302960399276108,9.600227559998388,9.791339184945286,0.5783393501805054,0.7894265232974911,0.712156862745098,0.5839080459770115,0.1185682326621924,0.7706953642384106,0.9307359307359307,0.8861111111111111,0.7258883248730964,0.2063492063492063,0.4994910078045469,0.6896024464831805,0.6437158469945355,0.5423476968796433,0.0950354609929078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0042184251888657,0.0063835833316418,0.0087072258798667,0.0111383494898737,0.0135567325320839,0.0158466323356957,0.0180024711276306,0.0201533742331288,0.0221141042712281,0.0244988407164987,0.0265223914339149,0.0290715623520694,0.0311343415911504,0.0331980209269416,0.0351245654692931,0.0372393350192778,0.0394796943775433,0.0418760469011725,0.0438450149104331,0.0585248111344472,0.072401553780272,0.086349133045048,0.0995570332803737,0.1121828696863523,0.1272913932517675,0.1378504920956799,0.1479365620736698,0.1581469990371242,0.1676260228956807,0.179275091934562,0.1910901172238954,0.201258477851443,0.2105896905410878,0.2197823980266056,0.2292888420819245,0.2383602051419568,0.2468702152571377,0.2547483623400656,0.2612574438845625,0.2681643087672215,0.274310425432445,0.2799134434603696,0.2846367511134524,0.2889759671960111,0.2933895990452873,0.2973195670357932,0.3011028338642334,0.304518993713939,0.3083953604586938,0.3056883493581135,0.3023389807257013,0.2998932314349133,0.2967732641889945,0.2948315206116824,0.29151973131822,0.288058053320713,0.2887714533466403,0.2896520021792427,0.2901279609888056,0.2915389789969355,0.2919044433074895,0.2929303471164082,0.2926135100280161,0.2946639608451713,0.2954862726849697,0.297782680015838,0.3024090370092991,0.3059483178937104,0.3090142288439557,0.3128473948212752,0.3162527507073247,0.318108376833209,0.3218693558097532,0.3257498374965177,0.3257325141776938,0.3357262868489384,0.332931484830219,0.3350390519795314,0.3469996272828923,0.0,2.2331985065974687,52.339740082349486,151.73402299578427,218.55583058839244,fqhc1_100Compliance_baseline,14 -100000,95798,47780,454.9781832606109,5042,51.59815444998851,4000,41.253470844902814,1546,15.731017349005198,77.3507064425629,79.67930597634722,63.34838135415546,65.06996092537536,77.15629961716635,79.48814419445985,63.27503643769668,65.0002206286102,0.1944068253965412,191.16178188737365,0.0733449164587796,69.74029676516125,212.56246,149.5078696166519,221886.11453266247,156065.75253831176,503.14732,337.4304943147487,524701.1419862628,351715.45785376395,459.3116,224.866171187178,476693.3547673229,232540.50902344735,2828.95068,1320.184419445892,2915780.433829516,1340834.964660945,920.9216,410.9071974709063,945856.6880310654,413477.7513204895,1509.45806,648.5662705291232,1537280.2354955217,644870.670761917,0.38151,100000,0,966193,10085.732478757383,0,0.0,0,0.0,43630,454.89467421031753,0,0.0,41562,431.08415624543306,1232590,0,44284,0,0,0,0,0,96,1.0021086035199065,0,0.0,0,0.0,0,0.0,0.05042,0.1321590521873607,0.306624355414518,0.01546,0.3518063173822583,0.6481936826177417,23.5226350790441,4.181970604168658,0.3105,0.26575,0.2175,0.20625,11.38573632011752,5.991858383714116,16.71894655854954,11565.36019612435,45.9135746857929,12.929482302136662,14.113523650321556,9.76132454734459,9.109244185990104,0.57775,0.8015051740357478,0.6811594202898551,0.5862068965517241,0.1248484848484848,0.7443037974683544,0.9327146171693736,0.8342696629213483,0.7385321100917431,0.1222222222222222,0.5076376554174068,0.7120253164556962,0.6196388261851016,0.5352760736196319,0.1255813953488372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0043694241686942,0.0064740682111073,0.0085425808548675,0.0104522531316089,0.0125932788337218,0.0149504708328237,0.0172975069139002,0.0194876196899557,0.0217662709783053,0.0238641719777855,0.0262164214328223,0.0284771750971163,0.0305937577204974,0.0323884552325761,0.0345557851239669,0.0367009498582455,0.0389264388787526,0.0409886286930785,0.0429011638801557,0.0577549146458533,0.071778089124025,0.0859365172543922,0.0987074401008827,0.111437815506866,0.1271668357855572,0.1388835867744056,0.1492044910338956,0.1587201605671093,0.1682618621451002,0.1809502281925428,0.1917535801134828,0.2020731018297188,0.2105309154467992,0.2183769046414986,0.2288836777133755,0.2370414939608682,0.2452344846953103,0.2526627084844089,0.2589220351390922,0.2652142288109175,0.2712202752711269,0.2764584195283409,0.2809358544758257,0.2859187212729058,0.2904468318135391,0.2948509755914758,0.2977320373546788,0.300858857615894,0.304234476220572,0.3014668350213577,0.298922073463783,0.2965478450397243,0.2942178343581305,0.2913694139981905,0.2874642523971922,0.2844831675653452,0.2850037753192607,0.2849825855357508,0.2861321680192633,0.2857223180148437,0.2855420972554289,0.2865197979332173,0.287772201810198,0.2904944791166586,0.2909995053242729,0.2916393676114513,0.2965350270406238,0.3008030297717151,0.3042224592171268,0.3059545454545455,0.3088634548842161,0.3126614987080103,0.3125477026408182,0.3140155416159536,0.3127070515854235,0.3161448741559239,0.3189089417555373,0.3283249860879243,0.3297380585516178,0.0,1.853620460228436,51.98018999606673,148.85901931931326,205.8409715179749,fqhc1_100Compliance_baseline,15 -100000,95735,47836,456.2490207343187,5085,51.80968297905677,3989,41.08215386222385,1510,15.438449887710869,77.31652017658898,79.67804920667882,63.31665033110207,65.06269693822878,77.11755413673569,79.48153463596763,63.240993722954855,64.99048730281267,0.1989660398532891,196.51457071118728,0.0756566081472129,72.20963541611525,211.50228,148.82831484813218,220924.48947615817,155458.40230650463,501.67503,336.8737146285062,523451.391862955,351308.4537823223,459.53848,225.23811746258204,476104.381887502,232272.7891704384,2803.55453,1322.7723404545416,2887877.724969969,1341162.288770608,916.27858,418.6436581712964,941978.0644487388,422315.8210488032,1463.5286,633.4215554654486,1497066.381156317,634132.4836239732,0.38228,100000,0,961374,10042.02224891628,0,0.0,0,0.0,43668,455.5282811928762,0,0.0,41566,430.2815062411866,1234244,0,44290,0,0,0,0,0,86,0.8983130516530005,0,0.0,0,0.0,0,0.0,0.05085,0.1330176833734435,0.2969518190757129,0.0151,0.3555054490792935,0.6444945509207065,23.47470932942598,4.121709260903922,0.3128603660065179,0.2742541990473803,0.2160942592128353,0.1967911757332665,11.489806047967027,6.242703855814032,16.29119564860578,11579.37711709554,45.88123850668533,13.22191323125946,14.24291264882561,9.69835501070254,8.718057615897715,0.5846076710955127,0.8025594149908593,0.6810897435897436,0.5974477958236659,0.1133757961783439,0.7431874483897605,0.9310344827586208,0.8494623655913979,0.7276995305164319,0.1256544502617801,0.515478761699064,0.7177541729893778,0.6095890410958904,0.5546995377503852,0.1094276094276094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0043896554171186,0.0068003044912458,0.0089517054980338,0.0112202962239583,0.013606827857332,0.0159097630873099,0.0181162750324234,0.020337215365896,0.0223393908369593,0.0243724879009105,0.0264511690472034,0.0283307967586689,0.0305011790631339,0.032492650471917,0.0345825196573778,0.0368415059573719,0.0388265925334273,0.0407800496886662,0.0425274782518101,0.0572764953383238,0.0707371945796055,0.0842439750823248,0.0973963153024312,0.1099066800231981,0.1251335314711202,0.1361432617943794,0.1461251862891207,0.1562640227355285,0.1658620319708185,0.1780224278527647,0.189801638404017,0.2010570502642625,0.2103283510283521,0.2191899954865201,0.2286420464621386,0.2365967235815028,0.2450970464135021,0.252794643363786,0.2596822414918842,0.2657773869986233,0.271898023622968,0.2775732900950374,0.2823141486810551,0.2864884568651276,0.2902652902652902,0.2937906860290435,0.2981761718700284,0.302263579535895,0.3054272974327854,0.303042536299167,0.2996600090847774,0.2975690233791139,0.2952517319680074,0.2929443065443898,0.2888517911567855,0.2859018571835353,0.2858363176397148,0.2868227653392582,0.288601758524555,0.2897290815752988,0.2912341634763389,0.2913361103552215,0.2921850222232149,0.2929193559997121,0.2933527136813144,0.2944802704468623,0.2997498436522827,0.3040186981092583,0.3067791931222148,0.3097413169319826,0.3142283085708243,0.3195373554235698,0.3201503759398496,0.3222356551660001,0.3232168162494095,0.3281035795887281,0.3394900622364987,0.3410958904109589,0.3474446987032799,0.0,2.246659692140589,52.70886161715193,149.34560950019144,199.55876117650624,fqhc1_100Compliance_baseline,16 -100000,95680,47696,454.8808528428093,5108,52.14255852842809,4063,41.90008361204013,1532,15.614548494983277,77.40264542862671,79.78333526510997,63.35728834693722,65.11207701612526,77.20307104459528,79.58892879261842,63.28133669688743,65.0410472851412,0.1995743840314361,194.40647249155063,0.0759516500497881,71.0297309840513,211.3408,148.73202505789922,220882.9431438127,155447.35060399165,504.90397,338.83786466769845,527131.3545150502,353567.7842826331,463.7636,227.49100378379063,481511.5384615384,235242.4417153736,2814.23787,1315.242752024417,2899867.077759197,1333254.400273441,919.9962,421.5842585199552,949077.518812709,428232.6677673405,1477.69626,631.2621022535202,1507757.7968227423,627557.0425358155,0.38177,100000,0,960640,10040.133779264212,0,0.0,0,0.0,43879,458.0058528428093,0,0.0,42117,437.0819397993311,1235223,0,44324,0,0,0,0,0,73,0.7525083612040133,0,0.0,0,0.0,0,0.0,0.05108,0.1337978363936401,0.2999216914643696,0.01532,0.3510558069381598,0.6489441930618401,23.725474966044278,4.028962068164938,0.309623430962343,0.2872261875461481,0.209205020920502,0.1939453605710066,11.671345816196055,6.579629244820837,16.271232441742384,11588.824221468582,46.18089308098812,14.16150337160762,14.11549470423069,9.397460494981503,8.506434510168305,0.59438838296825,0.7994858611825193,0.7114467408585056,0.5858823529411765,0.1129441624365482,0.7781512605042017,0.9208333333333332,0.8973607038123167,0.7291666666666666,0.2146892655367231,0.5182735816219979,0.7147016011644832,0.6423118865866958,0.5440729483282675,0.0834697217675941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.0046621464116675,0.0068370866301481,0.0090287722291622,0.0113889425570209,0.0136651528419852,0.0157513228052647,0.0179424372320881,0.0201933492754511,0.0224121168704907,0.0246420041616695,0.0266818606465654,0.0291178285009253,0.031020845348933,0.0328215604944386,0.0346869799795351,0.0369461443674733,0.0390602299613963,0.0407908558591353,0.0426394563495372,0.0571980777267028,0.0713298429319371,0.084918827591273,0.0974257550732718,0.1101629660882864,0.1252288190292782,0.1364393738392146,0.1464372784277821,0.1567068479097204,0.166575507008569,0.1792587965406197,0.1909647812628525,0.2012007439391797,0.2105280423396135,0.2190941395205562,0.2286859471190044,0.238149386845039,0.2463909765989237,0.254148966298499,0.2603063907625471,0.2663642030892845,0.2714055681314322,0.2761222224845923,0.2813247536120945,0.286497036112155,0.2907209900234958,0.2947614347646831,0.2982006446209679,0.3021310650161992,0.3057282970247564,0.3031278502065561,0.3005381423817935,0.2972704088781773,0.294858899936778,0.2933891015503761,0.289733156555266,0.2863900100908174,0.2866185779478875,0.2864739059527045,0.2874644886363636,0.2877274082910826,0.2883959713132421,0.2897085685818665,0.289929669647017,0.2900066876851055,0.2905681877039415,0.2900172848601626,0.2940387434881617,0.2985558811218083,0.3041901533367496,0.3088881838371934,0.3135040559885478,0.3192729551864619,0.3228048964787668,0.322565543071161,0.329283962153954,0.3347000759301443,0.3394532029535023,0.3456756756756757,0.3564504101416853,0.0,2.112728621307108,51.67463844070481,145.08855863962174,215.1021973348554,fqhc1_100Compliance_baseline,17 -100000,95736,47684,454.917690315033,5240,53.63708531795771,4129,42.6276426840478,1579,16.179911423080135,77.33907921770925,79.70658145222114,63.32552877917672,65.07563210959445,77.14330462514894,79.51262739406128,63.25153160442081,65.00475236440263,0.195774592560312,193.9540581598607,0.0739971747559025,70.87974519181728,213.1118,149.95221294155786,222603.6182836133,156630.9569457235,504.60394,337.9008300338335,526601.4038606166,352473.479186339,461.03027,225.12208265745969,478342.6088409794,232654.63055337095,2903.209,1345.3649923753303,2998246.3023314117,1371017.24782248,966.86233,431.69877948773376,996746.5321300242,437747.2523269548,1537.65296,654.6924632221991,1576368.9730091086,657147.2443357542,0.3808,100000,0,968690,10118.346285618783,0,0.0,0,0.0,43837,457.3828027074455,0,0.0,41844,433.9328988050472,1226646,0,44013,0,0,0,0,0,94,0.9818668003676776,0,0.0,0,0.0,0,0.0,0.0524,0.1376050420168067,0.3013358778625954,0.01579,0.350748995250274,0.649251004749726,23.54292402560858,4.185443170686005,0.313877452167595,0.2693146040203439,0.2124000968757568,0.2044078469363041,11.240223043994888,6.03361083506785,16.90749126832854,11560.366613839196,47.10400359860843,13.39275981722788,14.668587257182931,9.637580054223683,9.405076469973933,0.5768951319932187,0.7985611510791367,0.6936728395061729,0.556442417331813,0.1267772511848341,0.736750651607298,0.9182242990654206,0.8691860465116279,0.6951871657754011,0.1354166666666666,0.5151108126259234,0.7236842105263158,0.6302521008403361,0.518840579710145,0.1242331288343558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020762437206287,0.0042077300563734,0.0064553454523309,0.0085656803771744,0.0107321241467706,0.0131684811944311,0.0153367664304287,0.0173049239910565,0.0196834291089797,0.0218152768389356,0.0241623678300019,0.0262933557922414,0.0282005923975645,0.0305268797263604,0.0323396436755506,0.0345387423347776,0.0364968040692434,0.0384192282944851,0.0405457400455476,0.0423820636772795,0.0572093848868655,0.0709921108251198,0.0847960574604173,0.0976948639212552,0.1100729742270215,0.125552664424277,0.1366568354940694,0.1469849246231155,0.1568070100448813,0.1658833880555376,0.1780457317730221,0.189599168453193,0.2009812453766154,0.2107048294273397,0.2194294899318514,0.2294271526115101,0.2375561063844041,0.2451159126716182,0.2534506242905789,0.2606802346901357,0.2666203784065266,0.271779937546051,0.2770183985243343,0.2814351901734727,0.2858893026528062,0.2900373813388421,0.2935610316330861,0.2968644917329678,0.3004453624217388,0.3040507628914838,0.3018738758087465,0.2992476248009226,0.2972322672332522,0.2940921628373792,0.2912628563795841,0.2880474675801321,0.285644330711149,0.2854308761804827,0.2862290378769767,0.286420325797991,0.2883914043651461,0.2889742831806089,0.2900045850527281,0.2904188283494021,0.2908865112724493,0.2932733338505702,0.2926214417221356,0.2973268719712365,0.3015213901877311,0.305242779819051,0.3087501134610148,0.31361009490483,0.31640625,0.3190857142857143,0.3260240739012783,0.330970942593905,0.3286573146292585,0.3296009771986971,0.3304685334072637,0.3274674827850038,0.0,1.9924486893546247,50.26136510678365,157.27284355807885,218.01025819803291,fqhc1_100Compliance_baseline,18 -100000,95696,47223,449.7889148971744,5143,52.56228055509112,4108,42.43646547400101,1576,16.134425681324192,77.30793472821749,79.68393146015347,63.31631099018998,65.07006509962635,77.1078952227038,79.48408909452134,63.24130287827044,64.99667100587615,0.2000395055136863,199.8423656321364,0.0750081119195442,73.39409375019557,212.89444,149.7397556837732,222469.52850693863,156474.41448312698,501.05842,335.92784380529366,523130.4025246615,350572.9537340053,457.31169,223.81385397342495,474419.88170874433,231149.6893234765,2909.61979,1364.2406546159204,3007377.8945828457,1392494.163409045,942.03368,429.134957612069,971554.3909881292,435587.6605208869,1536.92198,656.0805347227864,1575972.747032269,662636.0214890689,0.37821,100000,0,967702,10112.251295769938,0,0.0,0,0.0,43571,454.81524828623975,0,0.0,41381,429.0356963718442,1229609,0,44173,0,0,0,0,0,96,0.9927269687343254,0,0.0,0,0.0,0,0.0,0.05143,0.1359826551386795,0.3064359323352129,0.01576,0.3568503350707371,0.6431496649292628,23.50493207718613,4.159944657058524,0.314508276533593,0.2704479065238558,0.2081304771178189,0.2069133398247322,11.26272086082015,5.987271667298651,16.995474796645546,11521.22128685797,47.34502160539868,13.734393905676315,14.657553969801356,9.47786188921263,9.475211840708372,0.5749756572541382,0.8055805580558055,0.6873065015479877,0.5707602339181287,0.1070588235294117,0.7363344051446945,0.9146341463414634,0.8449848024316109,0.7219730941704036,0.135,0.5048882681564246,0.7189014539579968,0.6334371754932503,0.5174050632911392,0.0984615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186116679829,0.0046106765027765,0.0069588857667454,0.0092020801170065,0.0113802782523797,0.0134923221050059,0.0157640892822546,0.0181316998468606,0.0201701118403565,0.0224790410580299,0.0244289990568745,0.02652977412731,0.0284462544736517,0.0306273823014319,0.0324844182110868,0.0344043336227928,0.0365746257058488,0.0387550221650073,0.0407560359085849,0.0428228916918586,0.0569697602757612,0.0714868853488518,0.0843903104312886,0.0969984434815531,0.1090389643248713,0.1236781998138905,0.1358843248748196,0.1459743687997615,0.1559054781642594,0.165164971896855,0.1773675935299059,0.1891131736656498,0.1993563888194301,0.2086194078803516,0.2169900563181978,0.2270859408748047,0.2351549773503224,0.2443806952413094,0.2518070511874908,0.258462102381416,0.2651948412790293,0.270835526546654,0.2760155288324969,0.2805992707033874,0.2846806751301133,0.2888984827926483,0.2931816473300423,0.2964425870241068,0.3004332485861049,0.303968715319981,0.3018028943326057,0.2993731487221878,0.2955724760293288,0.2937372509873703,0.2914472705637364,0.2876334614972197,0.2846325660969157,0.2858035244608101,0.2864132480240873,0.2860152846225269,0.286737007814989,0.2875358307798754,0.288108289049751,0.288451244535641,0.2901615342150109,0.2916492910758966,0.2924657144483014,0.296245133743564,0.2997927133471524,0.3039091556540318,0.3063973063973064,0.3102278749337573,0.3138241025963412,0.3150653694131955,0.3172905525846702,0.3217319490325625,0.3258443908323281,0.3307385229540918,0.3265251276538565,0.3309727916511368,0.0,1.949737183960652,54.45600934028309,153.26831161829037,208.5844171843836,fqhc1_100Compliance_baseline,19 -100000,95711,47257,450.23038104293136,5180,53.06600077316087,4149,42.80594706982478,1586,16.205033904148948,77.38171245272493,79.7557764004435,63.34258245905804,65.09502398870283,77.18074842232322,79.55858105929258,63.26646387949266,65.02298574412087,0.2009640304017068,197.1953411509162,0.0761185795653816,72.03824458196095,211.90598,149.006645359271,221401.4481094127,155683.51579943034,503.90955,337.46722165084003,525909.7177962825,352009.87115421705,455.1128,222.56278255907696,472767.8009842129,230304.76733792108,2945.15973,1369.2311836994568,3037578.439259855,1391165.8979334407,970.00241,438.8231976330674,997220.8419094984,442292.19380181486,1547.28544,661.7234805509512,1581698.2165059398,660008.6759065625,0.37821,100000,0,963209,10063.702186791486,0,0.0,0,0.0,43861,457.6798905037039,0,0.0,41331,429.0311458453052,1235898,0,44347,0,0,0,0,0,74,0.7731608697014972,0,0.0,0,0.0,0,0.0,0.0518,0.1369609476216916,0.3061776061776062,0.01586,0.3490774907749077,0.6509225092250922,23.86739307857109,4.199206652579759,0.3126054470956857,0.2631959508315257,0.2176428054953,0.2065557965774885,10.8909882629511,5.670953683516049,16.999338003343773,11505.964041263976,47.526574030718834,13.292011958752052,14.836401092522566,10.001444931815692,9.39671604762852,0.5876114726440106,0.8021978021978022,0.7286044718581342,0.5681063122923588,0.1213535589264877,0.7378800328677074,0.915217391304348,0.867816091954023,0.6990291262135923,0.1527093596059113,0.5252387448840382,0.7199367088607594,0.6775553213909379,0.5294117647058824,0.1116207951070336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673958839734,0.0044906689373435,0.0067581280188334,0.0092030148507811,0.0114225847793803,0.0135437881873727,0.0156818761152179,0.017803911960472,0.0198624045469879,0.0222438325314771,0.0243072286068708,0.0264268334000677,0.0285781863803706,0.0306142420090853,0.0326821667027852,0.0345736706609733,0.0366216146237895,0.0385297871678064,0.0406548033821801,0.0427378930145794,0.0571064531963112,0.0712087267854525,0.0845538861843209,0.0969377557568298,0.1087894353792441,0.1244236707415084,0.1353937889253164,0.1455977855850101,0.1551387093672887,0.1642783593615925,0.176343831144344,0.1884308971250433,0.1992517998129499,0.2088038214750281,0.2178422551941838,0.2268812681263698,0.2357198617151778,0.2431906614785992,0.2505642316809,0.2577823573186788,0.2646112910689495,0.2701884410361919,0.2755437741118553,0.2809987659202281,0.2857819502301461,0.2904628728424113,0.2934166927164739,0.2974320491459242,0.3011049008953061,0.3038333311370854,0.3004018439125351,0.2969322627136092,0.2942267693518466,0.2914488934963212,0.2905759162303665,0.2870596123369499,0.2835547989470531,0.2841391702058151,0.2843851338732406,0.2850904443221557,0.2864569746208027,0.286677146787188,0.2871593552675307,0.2882153238511549,0.2899269933673712,0.2913054695562435,0.2921427563831288,0.2961638895797065,0.2991636881007739,0.3045152670255825,0.3081017683146878,0.3121609522304734,0.3175857958466654,0.3196024882415414,0.3247711563609191,0.3274440518256772,0.328521501291597,0.3335343787696019,0.3372474057891862,0.342376767290791,0.0,2.032171157640524,53.33205223975879,154.4445778176276,214.14439390733983,fqhc1_100Compliance_baseline,20 -100000,95853,47637,452.2028522842269,5138,52.25710202080269,4040,41.52191376378413,1492,15.158628316275966,77.44506122741345,79.7220740676805,63.40474875222951,65.08363934527236,77.25000977897456,79.53188066227355,63.33049096464767,65.01396887559048,0.195051448438889,190.1934054069443,0.0742577875818355,69.67046968188129,212.77014,149.63861387696676,221975.46242684108,156112.6035460202,499.13146,334.6397283704417,520075.7305457315,348469.23904314014,460.29652,225.0448583169682,475883.1231156041,231518.6771621909,2863.86972,1335.4146180921146,2943520.9435281106,1349087.0351209587,954.14946,432.3981737648633,974502.4255891836,430355.67666504456,1457.15082,623.8898390931405,1481626.386237259,617201.7511002742,0.38053,100000,0,967137,10089.793746674595,0,0.0,0,0.0,43387,451.9629015262955,0,0.0,41595,429.7935380217625,1235573,0,44397,0,0,0,0,0,94,0.9598030317256632,0,0.0,2,0.0208652832983839,0,0.0,0.05138,0.1350222058707592,0.2903853639548462,0.01492,0.362369985141159,0.637630014858841,23.849376723834396,4.208857994212919,0.3116336633663366,0.2641089108910891,0.2188118811881188,0.2054455445544554,11.46846650242055,6.163683510865738,15.843194958987963,11578.283665527642,46.205338031610935,12.99178235200681,14.27618307212173,9.917231316258649,9.020141291223757,0.5896039603960396,0.8050609184629803,0.7116759332803813,0.5859728506787331,0.1313253012048192,0.7454858125537404,0.9254079254079254,0.8441176470588235,0.7464788732394366,0.1325966850828729,0.5265901981230449,0.7241379310344828,0.6626768226332971,0.5350223546944859,0.1309707241910631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0045685227767704,0.0067935471441752,0.0091652795258008,0.0113398500213384,0.0135922922749793,0.0156950215921127,0.0180794762764232,0.0204229594910598,0.0226996186055072,0.0248720049150112,0.0268088815958155,0.0287680377959225,0.0311464955049476,0.0334222808337025,0.0357032266055614,0.0377360441787834,0.0397492357908916,0.041734147253021,0.043929745702751,0.0580175595920835,0.0720121186794818,0.0855739833312392,0.0982097884486232,0.1101887507101824,0.1254802617690521,0.137105399709841,0.1478238694321659,0.1571218326081392,0.1662153628803527,0.1776686298955333,0.1892615710243839,0.1999891440047766,0.2091690231572971,0.2185485022573239,0.227636339496133,0.2365162340195499,0.2445530647789201,0.2517174144693586,0.25824905038671,0.2638387902330744,0.2695950053781041,0.2750928488633407,0.2802900666531047,0.2851666747537483,0.2903483836034506,0.2939807574411651,0.2972711782508074,0.3016228388031887,0.3048383482925415,0.3025231546826901,0.300528374390997,0.2975916465502722,0.2964395617037186,0.2934490200135986,0.2898718378032817,0.2872198191112858,0.2874378413630064,0.2881025118805159,0.2881130772092035,0.2898512962721706,0.2919319342922267,0.2917013657561625,0.2919874852996649,0.2916159809183065,0.2913383792720415,0.2931122017261804,0.2965727436710829,0.3020141196013289,0.3055544651619234,0.3103604214715326,0.3132625574393915,0.3184745232885276,0.3214394400486914,0.3246545727981953,0.3230167200284596,0.3253749617385981,0.3213920163766632,0.3272526257600884,0.3265862203191903,0.0,2.405178501220284,50.329136481238855,154.05607623636965,207.41567783285905,fqhc1_100Compliance_baseline,21 -100000,95668,47714,453.8403645942216,5237,53.3825312539198,4186,43.01333779320149,1623,16.50499644604256,77.29747507811412,79.7001627039434,63.28577397120039,65.06558700844099,77.08851349215415,79.49731082693133,63.206938036547015,64.99229150863218,0.2089615859599689,202.8518770120797,0.0788359346533766,73.29549980880756,210.93908,148.4592260752456,220490.73880503408,155181.69719785676,504.4075,338.0527704280439,526501.0557344148,352613.5180290629,467.13529,229.59996745315715,483050.4557427771,235988.57463848605,2951.13578,1368.3561545865298,3034195.7080737557,1380161.849546653,928.52732,422.1422649711789,952819.950244596,423504.97028387553,1578.47304,664.9142962560546,1606290.9854914914,657630.4307608462,0.38122,100000,0,958814,10022.30630931973,0,0.0,0,0.0,43802,457.0702847347075,0,0.0,42309,437.1890287243383,1232452,0,44238,0,0,0,0,0,86,0.8780365430446961,0,0.0,1,0.0104528159886273,0,0.0,0.05237,0.1373747442421699,0.3099102539621921,0.01623,0.3481914504932408,0.6518085495067593,23.63257763539085,4.123764024407746,0.3136645962732919,0.2663640707118967,0.2133301481127568,0.2066411849020544,11.383327217893692,6.242423088736002,17.17234760439025,11633.478896601026,47.83383710698183,13.746152685171213,14.879076922384098,9.905018265111428,9.303589234315092,0.5733397037744864,0.8089686098654708,0.674028941355674,0.5901455767077267,0.099421965317919,0.7674979887369268,0.922920892494929,0.8482384823848238,0.7373271889400922,0.1585365853658536,0.491335372069317,0.7186495176848875,0.6059322033898306,0.5428994082840237,0.0855920114122681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0047369809100683,0.0073404741357429,0.0097551061883954,0.0119832356770833,0.0140662877630426,0.016421198645506,0.0186474949449561,0.0209660758665125,0.0231948469549723,0.0254172094406777,0.0274396194820271,0.0294852933611794,0.0316454391822266,0.0337415078365374,0.0357375590885112,0.0380493366500829,0.0401125602259511,0.0421569545449816,0.0439816986107202,0.058417341342387,0.0731671569602495,0.087111195063594,0.1000652233373309,0.1125106813938032,0.1274943394629367,0.1374932325559176,0.1474341222333468,0.1566052465538076,0.1661441333104277,0.1777267285728152,0.1896110653427568,0.2006056183079721,0.2094439879485072,0.2190941258170835,0.2292681303320427,0.2375502905677246,0.24539013483222,0.2537830591656821,0.2599685956286032,0.2649661755166342,0.2719511909501838,0.2770777575140333,0.281937744498044,0.2864144976891267,0.2910400809267095,0.2944816786720952,0.2985281936922587,0.3017526562277026,0.3055999788530418,0.3036205687152646,0.3010976585123693,0.2985993448548514,0.2964512113931745,0.2945187165775401,0.2910398653301706,0.28754700287547,0.2880127009067399,0.2884108494175665,0.2887123716103351,0.2889000670690811,0.2901718213058419,0.2913011772059589,0.2919323660763881,0.2927015849489613,0.2929640951246049,0.294482524216847,0.2984939382577178,0.3027871768932919,0.3066940160151473,0.3094245582238332,0.314572333685322,0.3190943773844518,0.3230095180540867,0.3227523107086173,0.3270588235294118,0.3313464771511539,0.3320579943616593,0.331696672122204,0.3329523809523809,0.0,2.8617052283604894,53.4809197338062,151.038643077578,218.70398892864807,fqhc1_100Compliance_baseline,22 -100000,95832,48002,456.4028716921279,5238,53.291176225060525,4173,42.98146756824443,1593,16.23674764170632,77.32864418348662,79.63795543324804,63.32870225298407,65.0377373716414,77.1231127746426,79.4366267467885,63.25049763404292,64.96345658918437,0.2055314088440099,201.32868645953292,0.0782046189411431,74.28078245702352,210.80444,148.4111662243888,219972.9109274564,154865.98028256613,506.63737,339.5391572428425,528063.6008848819,353698.62780401664,458.11908,224.84266043398887,474614.5859420653,231907.0438539414,2958.11723,1377.5427994723002,3046651.2542783204,1397762.523686485,970.60377,439.5293746955147,996001.7217630852,442057.89868497296,1559.91914,671.2321778263886,1592156.002170465,669619.3795526469,0.38339,100000,0,958202,9998.768678520746,0,0.0,0,0.0,43973,458.2394189832207,0,0.0,41553,430.1590282995242,1234440,0,44376,0,0,0,0,0,97,1.01218799565907,0,0.0,1,0.0104349277902996,0,0.0,0.05238,0.1366232817757375,0.3041237113402061,0.01593,0.3425384052670081,0.6574615947329919,23.420864698537116,4.199208700909581,0.312724658519051,0.2671938653247064,0.2015336688233884,0.218547807332854,11.221493339657345,5.7805305286153725,17.01219822234336,11624.814538997016,47.65103857201843,13.560936408508656,14.817221030684893,9.316416046023258,9.956465086801623,0.5720105439731608,0.8143497757847533,0.675095785440613,0.5850178359096314,0.1162280701754386,0.7389121338912134,0.9237668161434978,0.8567335243553008,0.7634408602150538,0.1401869158878504,0.5050369375419744,0.7414050822122571,0.608786610878661,0.5343511450381679,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025624145439813,0.0048858614118314,0.0074468624765383,0.0097513408093612,0.0118059792556436,0.0139482793728364,0.0160839873611252,0.0185330707134619,0.0207758497353199,0.0228802979759736,0.0250519995491664,0.0271132867419927,0.0290424023184592,0.0311920938851142,0.0332766176849703,0.0355670795326591,0.0376149921872574,0.039750342139095,0.0417129740228715,0.0435262281432139,0.057969502909948,0.0718348144276006,0.085284561366733,0.0983596221141013,0.1107293061104025,0.1266252299105727,0.137744552250676,0.1485075818036711,0.157787935748462,0.1666577319366563,0.1785745056649291,0.1899372430209911,0.2009134406263593,0.2109342545422743,0.2197843309859155,0.2295777612816734,0.2382600926908258,0.2458303771523812,0.2538447559119511,0.2606695952378221,0.2668150776258884,0.272445856735809,0.27796042870877,0.2826859791981936,0.2877060648457935,0.2910977068916602,0.2941581875595208,0.2981092651105901,0.3021099454033795,0.3054366212073158,0.3032205902169519,0.2998663525262128,0.2971259987013354,0.2947703896856439,0.2922202550101915,0.2891968967526295,0.2864636156186612,0.2871724183199593,0.2878186002898303,0.287242183190077,0.2887858505029353,0.2899288094815516,0.2903818068015856,0.2920702785757231,0.2930241471828286,0.2943626047576909,0.2948637911464245,0.2984397961417003,0.3014972144846796,0.3061553588987217,0.3077548806941431,0.3122162390455073,0.3145989974937343,0.3202549897548759,0.3250116877045348,0.3302523995734092,0.3378316906747536,0.3423441597740569,0.3418966930855425,0.331918178309533,0.0,1.9854582224855488,52.07722318394347,158.03582441237333,216.686003891502,fqhc1_100Compliance_baseline,23 -100000,95737,47419,452.1449387384188,5149,52.49798928314027,4051,41.63489559940253,1563,15.96039148918391,77.35098256499538,79.69562438293114,63.33757887846742,65.06947074098356,77.14862059259788,79.49530475373952,63.26170124501108,64.99638255850769,0.2023619723974974,200.31962919162535,0.0758776334563364,73.08818247587112,211.563,148.80496869103143,220983.5277896738,155430.99187464765,500.33369,336.1673748832873,521944.1281845054,350467.7761819228,455.43138,223.47717230541943,470119.2851248733,229402.53414832457,2887.65439,1343.9016806871202,2972786.205960078,1360524.5660304232,943.32622,429.0121063441088,966795.6484953573,429621.05948355113,1522.4946,650.9848548104096,1556895.0771384104,653457.9622403472,0.38016,100000,0,961650,10044.705808621537,0,0.0,0,0.0,43507,453.73262166142666,0,0.0,41318,426.0003969207308,1235647,0,44346,0,0,0,0,0,80,0.8356225910567493,0,0.0,1,0.0104452823882093,0,0.0,0.05149,0.1354429713804713,0.3035540881724606,0.01563,0.3379992534527808,0.6620007465472191,23.78647732289756,4.185630838192463,0.3083189335966428,0.2552456183658356,0.2246358923722537,0.2117995556652678,11.280608162146429,6.01894015296797,16.76527662101345,11550.147241766468,46.30279924300927,12.789106593456207,13.913894872341912,10.075411532080444,9.524386245130705,0.5699827203159714,0.8085106382978723,0.6933546837469976,0.5604395604395604,0.113053613053613,0.7193877551020408,0.9090909090909092,0.8592814371257484,0.6865671641791045,0.1044776119402985,0.5088695652173914,0.734006734006734,0.6327868852459017,0.5246826516220028,0.1156773211567732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022480329711502,0.0044597155917738,0.0065548486601118,0.0091614528317217,0.0115301318746123,0.0138143763170485,0.015973333605162,0.0181562107712562,0.020308874784084,0.0223111484100748,0.0245197531623511,0.0266680353110244,0.0285714285714285,0.0305220883534136,0.0325475834321968,0.0344079130965054,0.0363858515573227,0.0384248210023866,0.0402869470291625,0.0423477200987592,0.0568401273552899,0.0715735297194384,0.0851184297442672,0.0984692375625552,0.1110455187535578,0.1271141649048625,0.1374256291692738,0.148156819342755,0.1580870178287203,0.1666916970607166,0.1779235608410893,0.1903457979327885,0.2008831942918674,0.2094972372668089,0.2179708741070151,0.2276102859676346,0.235366384846488,0.2433682078974013,0.2513049793472833,0.257733612992699,0.2639690823044791,0.2699673596406051,0.2758718558200589,0.2809256443715507,0.2854872560080552,0.2891204586557744,0.2936354207020657,0.2972481959548734,0.3009753952032289,0.3039974677868193,0.3018042278174229,0.2978114246386786,0.2954753617878732,0.2927005610503788,0.2904706721340702,0.2878922393999694,0.2848166379132967,0.2856908299811181,0.2862923189865637,0.2859382795239113,0.2867314520650346,0.2880858605750295,0.2884531044420775,0.2891893698068655,0.2908055874473785,0.2934268641205508,0.2946395668565921,0.2988387015995242,0.3039618437543517,0.3072770970410937,0.3113263043576632,0.3176514071492687,0.3203002815139193,0.3254638708704178,0.3289890150809905,0.3307411334982915,0.3359025743795283,0.338869758962933,0.3355463347164591,0.3374374759522893,0.0,2.6383217061422184,50.6876746295007,149.75467687071645,212.15666000527733,fqhc1_100Compliance_baseline,24 -100000,95834,47490,451.9272909405847,5141,52.28833190725629,4094,42.04144666819709,1567,15.902498069578646,77.51248185563044,79.79968292481526,63.42745123530996,65.11150383913704,77.31313303403748,79.6040999637466,63.35213098789433,65.04006590548882,0.199348821592963,195.5829610686521,0.0753202474156324,71.4379336482267,212.43266,149.3163755184125,221667.32057516123,155807.30796837504,502.7933,337.3620143646096,524006.58430202224,351383.83492769743,452.79677,222.19034801354317,468261.6503537367,228622.20498576143,2912.35965,1349.5640929251351,2993927.6561554354,1363195.8103858067,980.66059,443.37308990265205,1005627.7521547676,444983.826097889,1536.71644,654.9737827383487,1562148.1311434354,648480.7557807948,0.37963,100000,0,965603,10075.787298870964,0,0.0,0,0.0,43780,456.1429137884258,0,0.0,41164,425.35008452115113,1237751,0,44380,0,0,0,0,0,72,0.7408644113780077,0,0.0,0,0.0,0,0.0,0.05141,0.1354213312962621,0.3048045127407119,0.01567,0.3733457595526561,0.6266542404473439,23.634858623596863,4.181059568406612,0.306790425012213,0.2642892037127504,0.209086468001954,0.2198339032730825,11.208818199353171,5.996984147402206,16.614756241114936,11515.907345376656,46.456758180200254,13.175598942898691,14.187000773246034,9.320239343015755,9.773919121039777,0.5725451880801172,0.7874306839186691,0.7014331210191083,0.5887850467289719,0.1188888888888888,0.7495812395309883,0.922566371681416,0.8760806916426513,0.7295918367346939,0.1557788944723618,0.4996551724137931,0.6904761904761905,0.6347634763476347,0.546969696969697,0.108416547788873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024892234836986,0.0047396724764788,0.0070140585248178,0.0094468853689967,0.0118348605213433,0.0139123360113902,0.0160656472073466,0.0184165442976015,0.020279170453269,0.02264035177421,0.0248220777225948,0.0269308474089571,0.0291609296972935,0.0310399835331652,0.0330824742268041,0.0351281283245711,0.0369921980091471,0.0390540764701003,0.0409789236410474,0.0428794503435352,0.0578058191677964,0.0716317099182367,0.0847706268206299,0.098056926793404,0.1099903129343385,0.1253023501452337,0.1359772770629756,0.1463007464432299,0.1560936049427507,0.1644535349424942,0.1758121229717087,0.1870173354215045,0.1979176844825153,0.2073269272766979,0.216947141790061,0.2265840981975008,0.2350968661920836,0.242454875268165,0.2505577386951745,0.2569877728259627,0.2633982631560738,0.2692298732761833,0.2750834247172993,0.2798438414059049,0.2838145253019046,0.2886400471489612,0.2925622718153838,0.296774928486444,0.3006595728235385,0.3044767113944306,0.302691844114102,0.2991450653170098,0.2962361830138519,0.292971948119102,0.2912065198133821,0.2889098688919005,0.2857863379882104,0.2856512790355778,0.2855395903393458,0.2857903990622835,0.2864437735286443,0.2871709233791748,0.2883470076215068,0.2890988952482364,0.2902343935720059,0.2911131706312429,0.291064093185527,0.2960188223639403,0.3002796671615509,0.305522092255081,0.3068166659255636,0.3109361239185619,0.3139463318562284,0.3174875195589002,0.3204845814977973,0.3233532934131736,0.329771445532799,0.327808112324493,0.3281667557455905,0.3356824925816024,0.0,2.690471349324168,51.28622801664584,150.45719187509292,210.4467556554389,fqhc1_100Compliance_baseline,25 -100000,95748,47603,452.11388227430336,5162,52.87838910473326,4097,42.31942181559928,1552,15.958557881104566,77.31288813594676,79.67189951740352,63.318020272784125,65.06226491745655,77.1238318486048,79.48309678497844,63.24850721890444,64.99437132136383,0.1890562873419696,188.80273242507428,0.0695130538796888,67.89359609271628,210.8524,148.33960582529156,220215.98362367885,154927.1063889497,500.23466,335.736749305133,522005.00271546136,350202.0296038905,461.4195,226.57752180191437,478764.2457283703,234152.2524805246,2865.44132,1316.2950305836537,2962516.313656682,1344845.5418777682,960.70711,433.1176023940094,987804.9149851694,436833.8298564417,1510.07362,623.5686042934078,1553634.0184651376,631321.9162609315,0.38001,100000,0,958420,10009.817437439946,0,0.0,0,0.0,43407,452.87630028825663,0,0.0,41760,432.928102936876,1238768,0,44496,0,0,0,0,0,92,0.9608555792288088,0,0.0,1,0.0104440823829218,0,0.0,0.05162,0.1358385305649851,0.3006586594343278,0.01552,0.3432117058714576,0.6567882941285423,23.8490514989508,4.156256919880266,0.3048572125945814,0.2758115694410544,0.2186966072736148,0.2006346106907493,11.706520752621213,6.376331230616202,16.321782200919703,11616.924060152369,46.5845592458496,13.844278100385514,14.007821948556352,9.822115304236783,8.91034389267094,0.5916524286062973,0.8123893805309734,0.7133706965572458,0.5825892857142857,0.1131386861313868,0.7905579399141631,0.93058568329718,0.9011976047904192,0.7725118483412322,0.1761006289308176,0.512619372442019,0.7309417040358744,0.644808743169399,0.5240875912408759,0.0980392156862745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699082420142,0.0046625244529135,0.0068994206515894,0.0094868565392272,0.0117675776283805,0.0138594704684317,0.0162638931375548,0.0185500913722167,0.0209172511092481,0.0233665434513265,0.0256226225507787,0.0276633978538789,0.0297738422140631,0.0319407535587005,0.0338804692094213,0.0361520494429401,0.0383424624910693,0.0403818219547624,0.0423321687047666,0.0442895542914296,0.0593074361356732,0.0735404896421845,0.0861391018045696,0.0985722996698837,0.1109740540426563,0.1260074034902168,0.1372216150834491,0.1479691757493188,0.157571485030068,0.1664843766754594,0.1777758637396238,0.1896275790475366,0.2000717492689184,0.2098805930980186,0.2179322179322179,0.2273779333104464,0.2359517964740013,0.2448458536256172,0.251998001998002,0.25830431595345,0.2647331142076756,0.2702020202020202,0.2763534448097254,0.2812735832105509,0.2858148881145202,0.2900282023177625,0.2949617785784884,0.2985878973524664,0.3021140609636185,0.3051113573991978,0.3030470317359867,0.3002186258198468,0.2979454466083674,0.2963358955094492,0.2938912009512485,0.2899474466422541,0.2884170495959436,0.2880913272010512,0.2880574064582265,0.2882663998856652,0.2891123972205053,0.2894372602523035,0.2911490358472414,0.2930580944313166,0.294215114184857,0.2953516214668679,0.2955897844717137,0.2991883219027245,0.3015828449092759,0.3053944545960118,0.3099622607193197,0.3148421830465533,0.3186826869202515,0.3218034891624499,0.3298766816143498,0.3340385519511048,0.3408708938120703,0.3494048819850716,0.3556843267108168,0.3636363636363636,0.0,1.8536603144377388,50.86240411909672,149.60241601317043,219.376943202552,fqhc1_100Compliance_baseline,26 -100000,95782,47713,454.1771940448101,5125,52.46288446681005,4059,41.79282119813744,1551,15.75452590257042,77.37208356525132,79.70871511103995,63.35007434272507,65.07873626318938,77.16966664169534,79.51328780365453,63.27388372213595,65.00790864674521,0.2024169235559725,195.42730738541536,0.0761906205891236,70.82761644417701,211.805,149.0209604872459,221132.36307448163,155583.47130697407,504.58015,338.35737075178747,526193.8360025892,352651.02080953366,454.90794,222.63660022448025,471610.6888559437,229775.17319175703,2867.50542,1331.0778814497369,2951271.794282851,1347183.8251965258,951.60717,432.1326636709749,978908.8242049654,436557.9583543621,1513.48206,650.1175158613971,1538492.7439393622,643502.262960159,0.3817,100000,0,962750,10051.471048840074,0,0.0,0,0.0,43852,457.1944624250903,0,0.0,41270,427.7212837485122,1235338,0,44358,0,0,0,0,0,85,0.8665511265164645,0,0.0,1,0.0104403750182706,0,0.0,0.05125,0.1342677495415247,0.3026341463414634,0.01551,0.3588498879761015,0.6411501120238984,23.75894472374844,4.096712476372407,0.3062330623306233,0.2697708795269771,0.2153239714215324,0.2086720867208672,11.014502292561128,5.815066155672642,16.75187194540916,11542.5786424976,46.30280403175744,13.294456218695965,13.882528062001684,9.687819607842089,9.438000143217709,0.5782212367578221,0.782648401826484,0.7007240547063556,0.5881006864988558,0.1239669421487603,0.7232375979112271,0.9053117782909932,0.8651315789473685,0.7336683417085427,0.1408450704225352,0.5209621993127148,0.702416918429003,0.6474973375931843,0.5451851851851852,0.1182965299684542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0048355703337253,0.0073471210245377,0.009619975416747,0.0116342926878877,0.0136626486398436,0.0156152850401084,0.0177663938608486,0.020162279267495,0.0223723262716201,0.0240723091585452,0.0262215334722236,0.0283805314282777,0.0305089632306757,0.0326998236622565,0.0346338237725243,0.0368185158732623,0.0391272335085918,0.0410224438902743,0.043103448275862,0.058189407774589,0.0726628035897328,0.0858484730943819,0.0981432639465361,0.1100868136036074,0.1257514130262532,0.1369527665031104,0.1471041691033397,0.1565234091588067,0.1652455223241066,0.1769325100578731,0.1883484651967142,0.1989046930858751,0.208385707571402,0.2167033208709038,0.2263833368398906,0.2347495343156392,0.243019962233612,0.2508103452183965,0.256933554627139,0.2632290883866119,0.2698258735538156,0.2763559021623538,0.2804159984681299,0.2849742818322981,0.2897746156402713,0.2940116613698356,0.2979399392529896,0.3013432970897384,0.3057381909216681,0.3022330905866229,0.2991080005489227,0.2972056028718237,0.2948845670723783,0.2928128431110715,0.2891953039011862,0.2865991435839904,0.2862898602944789,0.2859435282870702,0.2866356655442122,0.2865388926249719,0.2878811756362777,0.2895269494814598,0.2904352857397187,0.2918832179723613,0.2926727835105138,0.2934832100170745,0.2983199874391584,0.3025377516778523,0.305368596088368,0.3097136643711489,0.3119556611243072,0.3157664416104026,0.315861130020422,0.3204864359214219,0.325772711246915,0.3255778818552651,0.3331370239497448,0.341031149301826,0.3447378207512086,0.0,2.2222993116841474,49.942937421218446,152.95801486245588,212.956587417894,fqhc1_100Compliance_baseline,27 -100000,95644,47605,454.1110785830789,5066,51.649868261469614,4001,41.22579565890176,1497,15.23357450545774,77.25911226955019,79.6541647514975,63.27736057920528,65.04526889427285,77.06574982807487,79.46602004201914,63.20379449659743,64.97624338698091,0.1933624414753154,188.1447094783653,0.0735660826078543,69.0255072919399,211.068,148.53101991476973,220680.8581824265,155295.7006344044,499.99976,335.89231937858784,522184.8417046548,350603.3095422482,459.99129,225.40330382342464,477063.37041529,232695.80237823923,2806.46364,1313.8129850884377,2893290.4939149343,1332760.845754289,929.80195,425.017082922697,954031.4499602694,426307.2125281337,1459.63154,626.3666278771545,1487551.5244029944,621928.9806733667,0.37984,100000,0,959400,10030.948099201203,0,0.0,0,0.0,43540,454.5920287733679,0,0.0,41769,432.9388147714441,1230719,0,44219,0,0,0,0,0,70,0.7214252854334825,0,0.0,1,0.0104554389193258,0,0.0,0.05066,0.1333719460825611,0.295499407816818,0.01497,0.3568181818181818,0.6431818181818182,23.5447042990872,4.097242897753484,0.3319170207448138,0.2696825793551612,0.1957010747313171,0.2026993251687078,11.459128072109852,6.243545874565207,16.09660788585187,11524.241712657293,46.095112924847214,13.286317580152293,15.077169964689055,8.712054810314172,9.019570569691698,0.5966008497875531,0.8025949953660797,0.7168674698795181,0.5977011494252874,0.1245376078914919,0.758563074352548,0.9303370786516854,0.8787878787878788,0.7319587628865979,0.1692307692307692,0.5274607703281027,0.7129337539432177,0.655958549222798,0.5534804753820034,0.1103896103896103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0043906346647197,0.0064247000791669,0.0085453584782962,0.0108754260135306,0.0131077750392112,0.0153149662499745,0.0173851792112865,0.0194027867226873,0.0217822998341761,0.0238986230866235,0.0260188313088478,0.0282643353047055,0.0300083442357813,0.0321771705142361,0.0341515364572563,0.0363302980389719,0.0383333852333945,0.0405138339920948,0.0428668230388324,0.0569314690576211,0.0717240801449563,0.0854028625132572,0.0986848339984626,0.1105772277018607,0.1267131267343091,0.1375885620810894,0.1482243130067873,0.1582273743195987,0.1675722692324213,0.1790753365550569,0.1905922891879591,0.2007058746636746,0.2090085352091071,0.2179005061811444,0.2265938190580893,0.2360239413771885,0.244299343663306,0.2516317572945805,0.2576023895686139,0.2641111020872249,0.2701076630778974,0.2756112897293834,0.2803875372631983,0.284814060919274,0.2894616534664475,0.2931471444344073,0.296128637372166,0.2991139191240383,0.302645670540637,0.3010564092877669,0.2978385908771155,0.2954458747226972,0.2936533271424011,0.2906423768988804,0.2872293076722378,0.2845684394071491,0.2840311555146576,0.2842085450781103,0.2839971423468476,0.284826126851557,0.2864700540881993,0.2879405919882857,0.2887737401592314,0.2898481406193949,0.2908313908313908,0.2919084142303229,0.296056540638584,0.3005691539509061,0.3035446435620115,0.3093212669683258,0.3112059427848901,0.3172560289891291,0.3201263062927599,0.3234478935698447,0.3268149882903981,0.3286037735849056,0.3298147779326827,0.3222344523940561,0.3290845886442642,0.0,2.3049886362563337,52.3252743465075,145.98849620181628,208.78251529358943,fqhc1_100Compliance_baseline,28 -100000,95623,47497,453.5310542442717,5188,53.19849826924485,4123,42.5943549146126,1585,16.240862553988055,77.28554750318864,79.71821112563572,63.27381344368565,65.07233506813684,77.08367554719388,79.51696022880577,63.198898841486574,64.99966284138326,0.2018719559947612,201.25089682994712,0.0749146021990725,72.67222675358198,210.0021,147.75359159953683,219614.6324629012,154516.79156639808,502.88499,337.3452706929206,525401.796638884,352284.74393495347,458.19448,224.51168351564624,476005.8772471058,232281.8815388737,2930.09733,1352.3758201475928,3030288.2151783565,1380348.8597383394,927.75454,421.7729377652191,957528.8476621732,428398.31763131655,1538.64166,650.9672681121689,1578688.3699528358,655934.1341299346,0.37967,100000,0,954555,9982.483293768237,0,0.0,0,0.0,43754,457.0343954906246,0,0.0,41529,431.06783932735846,1237888,0,44444,0,0,0,0,0,73,0.7634146596530124,0,0.0,0,0.0,0,0.0,0.05188,0.1366449811678562,0.3055127216653816,0.01585,0.350735294117647,0.649264705882353,23.707089511978754,4.176245273624703,0.3048750909531894,0.2694639825369876,0.2180451127819548,0.207615813727868,11.261336726347832,6.067817871804028,16.853872372629606,11594.472988982016,46.94281027080064,13.599659651772642,14.169290823918011,9.898910848618783,9.27494894649118,0.5794324520979869,0.7974797479747975,0.7191726332537789,0.5672969966629589,0.1039719626168224,0.7645569620253164,0.9188034188034188,0.8898809523809523,0.7277227722772277,0.1675977653631284,0.5047651463580667,0.7091757387247278,0.6568946796959826,0.5208034433285509,0.087149187592319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219700040535,0.0045238312590654,0.0070157982374202,0.0089851095187274,0.0110385382330199,0.012997993256527,0.0152910813926207,0.017591533180778,0.0197297767231592,0.0218756080825046,0.0239018485463983,0.02614029859948,0.0280694169960474,0.0300475194046158,0.0321528136293237,0.0342049192197099,0.0361550657506139,0.0382797976965656,0.0404055123027603,0.0424424487071168,0.0571368839178382,0.071332012952309,0.085094309882835,0.0976285542714467,0.1107437492737855,0.1263278296141748,0.1374620109238518,0.1482954182035264,0.1582027906180448,0.1679254810533214,0.1801594751777641,0.1912485363632421,0.2014624471470293,0.2106941324713745,0.2193347078734688,0.2288866443943749,0.238408745417151,0.2473630831643002,0.2552234227478782,0.2619074906023654,0.2675232968686693,0.2730794891903597,0.2784012134282904,0.282878947873668,0.2871895297637872,0.2904244427723847,0.2936117474743681,0.2968537122630098,0.3004769681416388,0.3031455008645837,0.3007267833109017,0.2991383693605793,0.2969075649186053,0.2945687177783875,0.2914713039349516,0.2886470101956462,0.285332236165398,0.2868582117716555,0.2870807686405565,0.2867544705000535,0.2888473403758063,0.2900443131462333,0.2900466400351368,0.2912885460099444,0.2920050791825391,0.2916958155201451,0.2934481784806552,0.2989989709046683,0.302863283416528,0.3055238844112443,0.3088182146729309,0.3136624690447336,0.3165697128917245,0.3217141994869473,0.3244651162790697,0.3337612323491656,0.3395798700317364,0.3488884438213498,0.3429113580916237,0.3414451516286035,0.0,2.0241546074134487,51.75489898560941,149.970552138024,219.18129460491932,fqhc1_100Compliance_baseline,29 -100000,95822,47539,451.85865458871655,5252,53.66199828849325,4155,42.91290100394481,1646,16.91678320218739,77.35864855579545,79.66376440953209,63.35358995694328,65.05422242186035,77.15417787645397,79.45936755626533,63.27729491821436,64.98028071354291,0.2044706793414832,204.3968532667577,0.0762950387289151,73.94170831743452,211.65408,148.90357723342285,220882.5530671453,155396.0230776052,501.68976,336.55671476424294,523077.80050510325,350744.6773854052,460.09357,225.3275797125571,477057.00152365846,232826.2839261337,2955.02927,1361.9833958919,3052863.559516604,1390358.211988791,947.39006,419.34068192272775,978819.8117342571,427746.5946470824,1597.35484,667.0341160681647,1642195.383106176,674140.9432528997,0.38118,100000,0,962064,10040.116048506608,0,0.0,0,0.0,43555,454.08152616309405,0,0.0,41701,432.1971989730959,1235175,0,44357,0,0,0,0,0,94,0.9601135438625784,0,0.0,0,0.0,0,0.0,0.05252,0.137782674851776,0.3134044173648134,0.01646,0.3542388331814038,0.6457611668185962,23.658488694547184,4.154966144582697,0.3287605294825511,0.247653429602888,0.2149217809867629,0.2086642599277978,11.462983478934603,6.265723685316935,17.40563889574006,11588.450334393498,47.41719903882199,12.466987415924796,15.550613308213505,9.98190164185014,9.41769667283354,0.5677496991576414,0.7891156462585034,0.698389458272328,0.5666293393057111,0.1003460207612456,0.7363872082973206,0.9172749391727494,0.8644986449864499,0.7073170731707317,0.063953488372093,0.5026684456304202,0.7038834951456311,0.6369107321965898,0.5247093023255814,0.1093525179856115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022974313300811,0.0047402485591872,0.0071271429585246,0.0093457943925233,0.0115721455712921,0.013854839530034,0.0159414089557103,0.0181367498699417,0.0204830108493553,0.0226682215266269,0.0246025893149786,0.0265041951299567,0.0287874740583968,0.03082068433239,0.0329941126130306,0.0349724744110143,0.0370952888465796,0.0393642829003296,0.0412684892803722,0.0432569179836342,0.058058256478738,0.0722343617677501,0.0854261875812334,0.0982123151622158,0.1106087433076177,0.126784676354029,0.1379756363906235,0.1486792693694748,0.1585898380363644,0.1677406212139081,0.1797431010906898,0.1911314488473479,0.2021835343243331,0.2119425514925454,0.2202492349016931,0.2294947524741502,0.2378242042765948,0.2446936548822874,0.2522293571736516,0.2586915930673448,0.2654678839633885,0.2706355986752021,0.2757747212423948,0.2797641164555141,0.2851621371967524,0.2891230664941147,0.2925993547257584,0.2962313314267556,0.2990451051936961,0.3034558232137442,0.3012237762237762,0.2987910427256491,0.2966367303340782,0.2944016835308022,0.2923784104389086,0.2884215991692627,0.2858338994296908,0.2871707452998738,0.2880427362097215,0.2880230004107216,0.2886545808674807,0.2890959704645515,0.2895745616791302,0.290881519969672,0.2914218566392479,0.2930926707298015,0.2953833893095007,0.3001352243781251,0.3034054641742363,0.3068988772959892,0.3088929219600726,0.3126028124170867,0.3157795513102495,0.3217935031264298,0.323790812985312,0.3252147311448405,0.3268113726689086,0.3394420688250865,0.3394007280873705,0.3430255402750491,0.0,1.777095401561628,50.73522527594323,159.37794066684913,218.43736460997863,fqhc1_100Compliance_baseline,30 -100000,95869,47192,448.57044508652433,5126,52.33182780669456,4075,42.01566721255046,1558,15.896692361451564,77.41454581429173,79.7046315954022,63.37712166936033,65.06866464357309,77.21941033728167,79.51144340495732,63.30325525754181,64.99776293962127,0.195135477010055,193.18819044488575,0.0738664118185141,70.90170395181872,211.54166,148.84017205469132,220656.54173924835,155253.28990832603,501.49619,336.67324834794715,522590.2742283741,350667.620392926,454.95092,222.7529398230264,471863.9184720817,230242.51697776516,2872.48134,1336.904493834074,2959906.716456832,1358401.7967776055,958.48559,434.0868921270067,984876.2060728702,438090.6110495429,1513.6559,644.6599543772385,1544505.5231618143,641986.525023156,0.37784,100000,0,961553,10029.84280632947,0,0.0,0,0.0,43598,454.2239931573293,0,0.0,41292,428.0632947042318,1236782,0,44430,0,0,0,0,0,72,0.7510248359740896,0,0.0,2,0.0208618009992802,0,0.0,0.05126,0.1356658903239466,0.3039406944986344,0.01558,0.3433644859813084,0.6566355140186916,23.406715110312547,4.1199575299507725,0.3173006134969325,0.260122699386503,0.2166871165644171,0.2058895705521472,11.30482218938504,6.081829362236834,16.585608659628246,11437.602483273246,46.47854875072878,12.896165090128402,14.557653440648783,9.88043360508539,9.144296614866205,0.5830674846625767,0.8179245283018868,0.6821345707656613,0.5877689694224235,0.1287246722288438,0.7530864197530864,0.922566371681416,0.8610354223433242,0.7122641509433962,0.1684782608695652,0.5108391608391608,0.7401315789473685,0.6112311015118791,0.5484351713859911,0.1175572519083969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.004680613950661,0.0070880274192076,0.0092583192901955,0.0113731070230714,0.0134311500931022,0.015403422982885,0.0173915704435105,0.0197556590667647,0.0218885524916127,0.0240814528767656,0.0261875698796787,0.0284208254985974,0.0304674070795549,0.032703053797142,0.0345689468193883,0.0367492628420671,0.0387481216643349,0.0407241697895796,0.0429066247828664,0.0573355993702363,0.071324812674393,0.0844891887361716,0.0973350973350973,0.1090541479749794,0.1238724941380257,0.1342959447434213,0.1450392227725929,0.1545823108929905,0.1634056224899598,0.1750328119284807,0.1861282300789274,0.1967663772777156,0.2064138986013986,0.2151751272103834,0.2246356765848207,0.2329802653584569,0.2410333048676345,0.2493905273780771,0.2564419565690213,0.2626144667468319,0.2684714380895606,0.2730346776386573,0.2775808383233533,0.282655688331876,0.2872770276929142,0.2902677007755816,0.2937937874299083,0.2972696422557832,0.3011043527595625,0.2990891845712979,0.2963853765805387,0.2937354074657515,0.291607766206041,0.2906344052543403,0.2874988546470786,0.2860250993252191,0.28537095772161,0.2852961198093941,0.2852424080980287,0.2849534450651769,0.2857255117677105,0.28548846689823,0.2869912387712099,0.2878042959427208,0.2899666675279708,0.2908772623316486,0.2939714108141703,0.2980344407723082,0.3008110874872037,0.3053569019025772,0.3129226736566186,0.3166058958037204,0.3224605302353291,0.326660516605166,0.3251748251748251,0.3259002561398222,0.3352056168505516,0.3426648721399731,0.3552484124019425,0.0,1.8566082249221731,53.26046570629095,145.71359372076253,212.6256169030641,fqhc1_100Compliance_baseline,31 -100000,95717,47596,452.11404452709553,5199,53.27162364052363,4140,42.75102646342865,1605,16.43386232330725,77.36002699221102,79.73349791279968,63.33690834044432,65.0891718006735,77.15584402296152,79.52815355033657,63.26158009546863,65.01488937385648,0.2041829692495014,205.3443624631086,0.0753282449756937,74.28242681702102,211.77156,148.99291866793433,221247.5944712016,155659.82915044803,502.31259,335.9638786027224,524295.9766812583,350504.6220554297,460.21029,225.6811924956707,477415.2031509554,233068.30623681087,2939.84765,1360.7765155090958,3041364.229969598,1391871.9332973526,937.98323,426.0379700480976,968244.564706374,433600.4885243223,1560.18084,657.6151846571237,1600749.2086045323,664746.9084166175,0.38083,100000,0,962598,10056.70883960007,0,0.0,0,0.0,43656,455.5721554164882,0,0.0,41680,432.05491187563337,1236303,0,44385,0,0,0,0,0,78,0.8149022639656488,0,0.0,1,0.0104474649226365,0,0.0,0.05199,0.1365176062810177,0.3087132140796307,0.01605,0.3471166326719822,0.6528833673280178,23.64682869561072,4.130868737736345,0.3171497584541062,0.2710144927536232,0.2057971014492753,0.2060386473429951,11.446232462156887,6.186829932161211,17.067847546189988,11610.66685494276,47.34632697058473,13.671671357127677,14.912248732013468,9.46933574551013,9.293071135933458,0.578743961352657,0.7923351158645277,0.7052551408987052,0.57981220657277,0.1019929660023446,0.7578512396694215,0.9240246406570842,0.8587257617728532,0.7103825136612022,0.1508379888268156,0.504778156996587,0.6913385826771653,0.6470588235294118,0.5440956651718983,0.0890207715133531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903333299571,0.0046629970906952,0.0070121672772292,0.0094475710599565,0.0115749216811098,0.0139607347969532,0.0162487257900101,0.0185653922309089,0.0208535650396115,0.0227175003583201,0.0249441243412823,0.0271241427456777,0.0292048866768129,0.0314762743462184,0.0337075173851138,0.035926967453786,0.0382671031367836,0.0402702674651527,0.0422478080439327,0.0442823651992706,0.0585415774689069,0.072682176383787,0.0856462542219984,0.0987716641426888,0.1106917708574922,0.1263623006099301,0.1372840187104233,0.1474284619723106,0.1572562128218546,0.1667453234940792,0.1789703870474302,0.1900176363026519,0.2002651799202286,0.2097019248636418,0.2191630198139555,0.2288976500033223,0.2384601655400129,0.2465259039395574,0.254497432467665,0.2609317765567766,0.2669896177769556,0.2720941374434719,0.2769758231364899,0.2815391059780983,0.2860697423199699,0.2905163394670441,0.2939315897384608,0.2979142320004065,0.3008443346823724,0.3045982313481029,0.3016532816766886,0.2993288959788767,0.2968743397236347,0.2941711940816091,0.2924877121601354,0.290002905687501,0.2867089806744979,0.2866721177432543,0.2868235534516228,0.2866263560377023,0.2875221651889874,0.2881105664166322,0.2889064745205023,0.290284570920409,0.2933597858303853,0.295169946332737,0.2951061655501306,0.2990046783258501,0.3022301704186829,0.3059324394222735,0.3092486869148207,0.3120148856990962,0.3155848228284729,0.31898446381205,0.3202236719478099,0.3213992252611808,0.3175706300045324,0.3220271348762968,0.3186872796311364,0.3242937853107344,0.0,1.8976164591772688,52.99167226603393,150.86310599349005,218.77901003908468,fqhc1_100Compliance_baseline,32 -100000,95761,47681,454.0574973110139,5176,52.99652259270476,4073,42.031724814903775,1581,16.18613005294431,77.33346816806463,79.69710341120893,63.32120940122799,65.07093026096894,77.13682893853587,79.50062172511737,63.248090590769245,64.99948498124081,0.1966392295287562,196.48168609155903,0.0731188104587445,71.44527972812398,213.6981,150.3364545849477,223157.52759474108,156991.0867523811,502.00637,336.7576623340044,523692.5157423168,351129.27462948515,455.68511,222.9468263212007,472911.6550579045,230434.58879464056,2923.75845,1351.7920685327415,3017224.2040078947,1375926.166847108,992.94349,452.31213646075,1022247.7104457972,458021.222230562,1553.73956,657.8000480403155,1592927.8098599638,662848.9854488976,0.38044,100000,0,971355,10143.52398157914,0,0.0,0,0.0,43681,455.59256899990606,0,0.0,41242,427.7315399797412,1225295,0,43922,0,0,0,0,0,87,0.898069151324652,0,0.0,1,0.0104426645502866,0,0.0,0.05176,0.1360529912732625,0.3054482225656877,0.01581,0.3567208271787297,0.6432791728212703,23.729972419296555,4.118126406661944,0.3145101890498404,0.2641787380309354,0.1964154186103609,0.2248956543088632,10.939905566481508,5.729723207834067,16.971228214733575,11526.102203184511,46.43662176478912,13.023819254780909,14.376857065658642,8.80729439613052,10.228651048219051,0.5683771176037319,0.7983271375464684,0.6846213895394223,0.57875,0.1266375545851528,0.7358326068003488,0.938095238095238,0.85,0.6931818181818182,0.1848341232227488,0.5027341079972659,0.7088414634146342,0.6248671625929861,0.5464743589743589,0.1092198581560283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021480318151882,0.004259116537541,0.0063739520532651,0.0089008108272876,0.0112385834299546,0.0133999938905802,0.0157097418749745,0.0179522769488273,0.0200114467928539,0.0221921958809319,0.0245432736667281,0.0266210833230668,0.0287324407149174,0.0307929969104016,0.0326847285558054,0.0345636647407208,0.0367168166333599,0.0387760184282067,0.0410229753612641,0.0430240793201133,0.0578067263731446,0.071477907779894,0.0850164199305431,0.0975381476690748,0.1102792306394466,0.1255630035313273,0.1359523026490277,0.145685003671658,0.1551589717300524,0.1644236646542202,0.1770091666038325,0.1886447480878041,0.1996215499053874,0.2085064963471718,0.217703086161765,0.227591780700589,0.236037323094781,0.2436856612476796,0.2515032561094597,0.2583897994689131,0.2646164518180242,0.2705262050340788,0.2752471500875076,0.2795570188566297,0.2844738724973017,0.2881528944423264,0.2925820916028627,0.2954271273826304,0.2997388628900897,0.3033767124190762,0.3004441453566622,0.2975943506395372,0.2954145984785635,0.2930011691179654,0.2910890795215055,0.2881882770870337,0.2847310126582278,0.2846528563696304,0.285667969216593,0.2868935760514914,0.2871350057950424,0.2883850124108585,0.2905875974811293,0.2914876088263454,0.2925993385419163,0.2943533697632058,0.2953676158096047,0.2997027069316226,0.3030886005106859,0.3080230356579362,0.3113997375209304,0.3159812047938334,0.3200175317763446,0.3237813660829353,0.3265936534681269,0.3307208170051063,0.3391198416324044,0.3382711038961039,0.3406440866185452,0.3425181783390739,0.0,1.7484429631608536,50.38205274231919,154.23451141071837,213.37925178336152,fqhc1_100Compliance_baseline,33 -100000,95800,47231,450.33402922755744,5003,51.05427974947808,3919,40.35490605427975,1514,15.407098121085596,77.34149214859087,79.68161132562638,63.33904717832892,65.07305267815978,77.14257760787794,79.48535126393703,63.26485135646844,65.00183778825772,0.1989145407129342,196.260061689344,0.0741958218604779,71.21488990206615,213.02644,149.79207222737335,222365.8037578288,156359.15681354215,502.89239,337.6076123011117,524358.8830897703,351840.6613853416,453.27946,222.50933283887335,469853.3089770355,229599.76942973395,2765.28004,1289.9089143855392,2848540.146137787,1309399.984888132,896.69077,405.325100010254,920335.5427974948,407958.4184615953,1473.98086,631.2776166560553,1501882.254697286,629191.6702760801,0.37728,100000,0,968302,10107.536534446765,0,0.0,0,0.0,43720,455.7724425887265,0,0.0,41081,425.53235908141966,1231619,0,44161,0,0,0,0,0,86,0.8977035490605428,0,0.0,0,0.0,0,0.0,0.05003,0.1326070822731128,0.3026184289426344,0.01514,0.3461243284727552,0.6538756715272448,23.670988209111098,4.119236605049802,0.3026282214850727,0.2658841541209492,0.2235264097984179,0.20796121459556,11.210689892809793,6.052377195216084,16.354460986865792,11450.538021436018,44.826316722906,12.60961483553964,13.452942409122436,9.843821917879978,8.919937560363946,0.5820362337330952,0.7936660268714012,0.7116357504215851,0.5810502283105022,0.1239263803680981,0.7550847457627119,0.9221698113207548,0.8888888888888888,0.7316017316017316,0.1475409836065573,0.5074844833880978,0.7055016181229773,0.6398104265402843,0.5271317829457365,0.1170886075949367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210622283902,0.0045720426183307,0.0070729108529098,0.0093382920782018,0.0115175255634125,0.0135681616770736,0.0156455577427152,0.0178294257005146,0.0197153141361256,0.021831288783305,0.0239623492740546,0.0263295714769821,0.0284712150667036,0.0304207186418328,0.0324095092657559,0.0345126980681571,0.0367175770126844,0.0383514180792132,0.0401400694112512,0.0418800749531542,0.056278953299111,0.0705846681443687,0.0832957843887206,0.0964304853573192,0.1089016049655928,0.1240632893999767,0.1356471224279944,0.1459547407375898,0.1555619590390505,0.1642355715127806,0.1759140664521198,0.1863338594253345,0.1962978251895626,0.2057804731464787,0.2143155534057429,0.2252390861595678,0.2332226357902244,0.242316068341528,0.2499348980446769,0.2561031361433665,0.2629112857620976,0.2684700033841737,0.2733415233415233,0.2775451609044144,0.28231927637801,0.2870304312529213,0.2906227362425999,0.2951300308418688,0.2981728968945703,0.3026130640049447,0.30053595175091,0.2979687071095251,0.2951797063951853,0.2925513501038541,0.2901698939090437,0.2883842474441065,0.2859423909950359,0.2851097332939671,0.2857337907258546,0.2849292583275348,0.2862573975578695,0.2861009047449725,0.287652589040809,0.2884950610110401,0.2902737024387897,0.2911356113326556,0.2929313156163286,0.2970828987705824,0.3010783000916203,0.3055091819699499,0.3073331502334523,0.3091344873501997,0.3116423196104471,0.3140293012196057,0.3177826045896685,0.3212884821110187,0.3264296754250386,0.3310118803768947,0.3400111296605453,0.3442748091603053,0.0,2.149470075807499,51.28023398076933,140.0507628409749,204.41795788198044,fqhc1_100Compliance_baseline,34 -100000,95709,47657,453.29070411351074,5148,52.450657722889176,4051,41.81424944362599,1595,16.278510902840903,77.3419109081298,79.71097494976905,63.33255108723839,65.0810503461092,77.13373130395799,79.5059172746202,63.25223541539554,65.00468652056587,0.2081796041718178,205.05767514885065,0.0803156718428468,76.36382554332499,210.99232,148.52423011154775,220451.9115234722,155183.13858837492,500.67213,335.3426463234969,522628.007815357,349886.17196240363,451.98443,221.57900810047065,469773.3337512669,229572.3466844575,2887.72767,1357.5515430031403,2982063.2960327663,1383283.5292429563,962.27648,438.62785872337537,992306.6587259296,445180.8698485773,1552.02892,672.662654210452,1585764.3063870692,671792.7897598422,0.37909,100000,0,959056,10020.541432885098,0,0.0,0,0.0,43618,455.2027500026121,0,0.0,40847,424.21297892570186,1241138,0,44477,0,0,0,0,0,77,0.8045220407694156,0,0.0,0,0.0,0,0.0,0.05148,0.135798886807882,0.3098290598290598,0.01595,0.3527885862516213,0.6472114137483788,23.855734793530903,4.205782854952384,0.3090594914835843,0.2621574919772895,0.2179708713897803,0.2108121451493458,11.289551239942336,6.015203456901026,17.141781341612848,11535.07248604362,46.49863998001543,12.859736836604124,14.286672557025504,9.897786188452786,9.45444439793302,0.5699827203159714,0.7702448210922788,0.7036741214057508,0.5866364665911665,0.1077283372365339,0.7165217391304348,0.8792270531400966,0.851063829787234,0.7169811320754716,0.1435897435897435,0.5118924508790073,0.7006172839506173,0.6511375947995667,0.5454545454545454,0.0971168437025796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0046417350765176,0.0067660783120308,0.0091919232956853,0.0115609875137267,0.0137655779099128,0.0160351488832482,0.0182391606107618,0.0204824202780049,0.0226288802235254,0.0251768323936442,0.0272926100483627,0.0294208383036485,0.0314641006356696,0.0335166706223492,0.0354473561792526,0.0375115216918504,0.0394781904791556,0.0417797464932256,0.0436762682896327,0.0584456954264885,0.0728357584005024,0.0864373701550794,0.0985925863592376,0.1112095702259636,0.1262922870173433,0.1371729304161449,0.1466614138015481,0.1565832496313551,0.1658708784429017,0.1779293108834523,0.1893679436247713,0.1994429393652555,0.2086997418733867,0.2175983983455437,0.2265575694498267,0.235586736116533,0.2432739333295857,0.2504027043582821,0.2562291835963878,0.2615893656651665,0.2680420816121142,0.2748996910840464,0.2801078490113841,0.2845150160365439,0.2885167877091528,0.2935709723074611,0.2969902813819773,0.2997488933184913,0.3033380756665613,0.3009683927370544,0.2976944097331886,0.2953453748700806,0.2932497658670124,0.2911561198939149,0.2880414039480313,0.2843324444163918,0.284530612913262,0.2860406827055874,0.2868069174540916,0.2875362318840579,0.2891128952715365,0.2894450261780105,0.288676841940602,0.2888462000240125,0.2902848528953113,0.2927487639938625,0.2969871774775057,0.2997791875503838,0.3040390414219965,0.3087327523602033,0.3107120152574698,0.3136406396989652,0.3175835045271247,0.3197668953849046,0.3227030231179609,0.3275335775335775,0.324989824989825,0.3304685334072637,0.3324447829398324,0.0,1.972291746368756,50.10946866008511,157.4666365582663,209.85481884718865,fqhc1_100Compliance_baseline,35 -100000,95702,47478,451.4952665566028,5168,52.65302710497168,4113,42.32931391193497,1555,15.851288374328645,77.33810060160408,79.72147532881507,63.31256206328344,65.07525466529644,77.14307139610861,79.53005252910901,63.23884469258947,65.00540148157948,0.1950292054954729,191.4227997060607,0.07371737069397,69.85318371695826,211.31176,148.6652663058027,220801.8223234624,155341.8594238393,501.5123,335.60023590276705,523400.33646109793,350037.12719122734,454.90791,222.75069469587623,471281.415226432,229678.45288023763,2907.35631,1343.277146770664,2995874.7779565733,1361553.1664086524,944.85454,427.9466722519061,967419.0717017408,427402.63159912935,1513.84002,638.2919742266347,1544836.9313076008,636124.6520142133,0.38153,100000,0,960508,10036.446469248292,0,0.0,0,0.0,43613,455.0375122776953,0,0.0,41312,427.5668220099893,1237527,0,44399,0,0,0,0,0,91,0.9508683204112768,0,0.0,0,0.0,0,0.0,0.05168,0.1354546169370691,0.3008900928792569,0.01555,0.3525060107268356,0.6474939892731644,23.750255060662564,4.2094317097329,0.3095064429856552,0.2701191344517384,0.2171164600048626,0.2032579625577437,11.822282294484296,6.358579736983673,16.460282520637303,11598.87744917689,46.84553316665154,13.579463786663563,14.454984096254693,9.753276923930445,9.057808359802843,0.5866763919280331,0.8010801080108011,0.7101335428122545,0.5677491601343785,0.1339712918660287,0.775103734439834,0.9361702127659576,0.8622589531680441,0.7352941176470589,0.1845238095238095,0.5085969738651994,0.7020280811232449,0.6494505494505495,0.5181422351233672,0.1212574850299401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024224118708317,0.0046053966321769,0.0069242796515523,0.0092485314145171,0.0116604430154353,0.0139133623279927,0.0162168777920567,0.0183950075071241,0.0204632612363859,0.0228638713971228,0.024836185768927,0.026831096552928,0.028923070595735,0.0311100126664401,0.0334337411541397,0.0354456018518518,0.0375018119318299,0.0396733999398259,0.0418039859856321,0.0436476519854993,0.058294606025795,0.0712558490092014,0.0838990609097109,0.0969930268513551,0.1088799831259228,0.1251652896933281,0.1363626716471761,0.1465128909619501,0.15625,0.1663823532567296,0.1786641669629677,0.189810654859209,0.2006770510182978,0.2091590523608907,0.2179348902731614,0.2272822990900728,0.2368306438103746,0.2453458793868041,0.2527906791882899,0.2606253725184539,0.2671884769469467,0.2731444089382074,0.2782316307925457,0.2830077890952666,0.2870783172779066,0.2914677620298758,0.2945228641925828,0.2990549456147948,0.3028011240756809,0.3055291758995462,0.3032084482410708,0.3002969970300297,0.2981298284620688,0.2945233148661126,0.2920881663650657,0.2891440979921398,0.2857458668224668,0.2857423377133413,0.2866364627333424,0.2889343533179149,0.2893984948365048,0.2894716119379478,0.2902404408081482,0.2911922639869878,0.2918510368580927,0.294226995765775,0.2950375430474792,0.2982888133902689,0.3017963239637261,0.3062593144560357,0.3112256329822989,0.3163830009397514,0.3170807069583488,0.3213246811367196,0.3246107067170368,0.3254727994396451,0.3258006584854834,0.3281899109792285,0.3302997858672377,0.3273542600896861,0.0,2.4715008413775097,52.07675373358827,147.4745450378447,217.73075653975823,fqhc1_100Compliance_baseline,36 -100000,95655,47485,453.83931838377504,5080,52.00982698238461,4025,41.54513616643145,1523,15.587266739846322,77.27782633283482,79.68739150506698,63.2892740309558,65.07179465787756,77.08713976852944,79.49935849729725,63.2171157216575,65.00286017121785,0.1906865643053805,188.0330077697323,0.0721583092982953,68.93448665971391,211.09308,148.51986853295134,220681.6998588678,155266.18423809667,505.22214,338.8305386139004,527664.1471956511,353714.4306245364,451.5373,220.55851657316487,468419.4448800376,227861.035882336,2848.65554,1312.3915321796865,2945143.4216716327,1339096.6830585822,947.97704,424.85015491547233,978000.79452198,431111.57275152527,1492.4292,630.8880931544658,1530092.8963462445,633806.8644834731,0.3801,100000,0,959514,10030.986357221263,0,0.0,0,0.0,43954,458.9723485442476,0,0.0,40975,424.78699492969525,1235801,0,44310,0,0,0,0,0,71,0.7317965605561654,0,0.0,0,0.0,0,0.0,0.0508,0.1336490397263877,0.2998031496062992,0.01523,0.3477687817736772,0.6522312182263227,23.993706089866453,4.146369520527204,0.3162732919254658,0.2703105590062112,0.1980124223602484,0.2154037267080745,11.085011041346233,5.816989967686698,16.190029121804706,11538.038817236582,45.66270439546468,13.005925265273667,14.40959677351903,8.91081234180964,9.33637001486234,0.582111801242236,0.7922794117647058,0.6842105263157895,0.6198243412797992,0.1337946943483275,0.7605877268798618,0.9263657957244656,0.848314606741573,0.8041237113402062,0.1720430107526881,0.5101115760111576,0.7076461769115442,0.6205016357688113,0.560530679933665,0.1233480176211453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0045331007626156,0.006791464479321,0.0088315700681931,0.0110382013327229,0.0131824247919234,0.0152881183069862,0.0172408510116743,0.019342893966981,0.0216346892574343,0.023876923076923,0.0257922037902521,0.0276382943694435,0.0296621524127553,0.0316645846023601,0.0337591146506697,0.0359056195144192,0.0377750319291432,0.0398339212686916,0.0417161922635804,0.0564913893997659,0.0706924720371999,0.0842640020152825,0.0970881959864038,0.109088606793504,0.1243979633961744,0.1361637958498821,0.1464051312649164,0.1561243261743818,0.1653675191651098,0.1771716758084852,0.1886937502706916,0.1995472010275053,0.208314183791828,0.2173678532901833,0.2273855427026548,0.2363100487870228,0.2434235693872499,0.250788607738568,0.2578308289177033,0.2645725912737867,0.2704540674440887,0.2758800089863195,0.2808251176942704,0.2849058207740791,0.2894318363925494,0.2927946532497277,0.2973423406231314,0.3012656915961705,0.3044298453907445,0.3023265212647007,0.2998470589856291,0.2967392530745797,0.2942392781746146,0.2918475997858545,0.2900566876053317,0.2880273768595827,0.288364221871714,0.2889629249957287,0.2900099935755585,0.2910719964085969,0.2916502171338334,0.2914585466780915,0.2925938300478895,0.29415852022235,0.2960398350579631,0.2978759654702408,0.3020070986587932,0.3069746153575327,0.312594478478797,0.3167441436514447,0.3197606692788309,0.321161929857582,0.3206484511758886,0.3244815614150323,0.3309967922062493,0.3360392096798897,0.3355102040816327,0.3433250069386622,0.3466819221967963,0.0,2.1212735883580103,50.42139031885415,140.9506606638627,219.07800889068665,fqhc1_100Compliance_baseline,37 -100000,95824,47642,454.1137919519118,5142,52.46076139589247,4066,41.91016864251127,1512,15.52846885957589,77.39792083527668,79.70333189350737,63.37134666233783,65.07243991859767,77.20546860652432,79.50988853217255,63.29974641915972,65.00218677929367,0.1924522287523586,193.4433613348148,0.0716002431781106,70.25313930400046,212.01312,149.14223122355594,221252.62982133916,155641.83422060855,505.54942,338.66756657444625,527060.3710970111,352905.8237753029,459.8996,225.24525923895985,476211.1579562532,232211.9204767704,2861.9799,1326.4907718846537,2956776.5069293706,1354583.2867882887,966.10799,436.7674496089152,995411.671397562,443094.9633310891,1481.75944,624.3146214578117,1523891.613791952,632879.0121720474,0.38111,100000,0,963696,10056.937719151778,0,0.0,0,0.0,44042,459.070796460177,0,0.0,41649,430.8628318584071,1234420,0,44246,0,0,0,0,0,83,0.8661713140758056,0,0.0,2,0.0208715979295374,0,0.0,0.05142,0.1349216761564902,0.294049008168028,0.01512,0.3428199404761904,0.6571800595238095,23.610895845117263,4.173114479990218,0.3027545499262174,0.2737333989178553,0.2105263157894736,0.2129857353664535,10.929135430544944,5.506926048235657,16.09269420287224,11480.85527431251,46.38258487498413,13.582182868885251,13.992401690406496,9.325083191330425,9.482917124361965,0.5777176586325627,0.8041329739442947,0.6945572705117791,0.5841121495327103,0.1143187066974595,0.7584459459459459,0.9367088607594936,0.8419540229885057,0.7526881720430108,0.1193181818181818,0.5034698126301179,0.7057902973395931,0.636466591166478,0.5373134328358209,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024601117680408,0.0043976532338963,0.006481058877225,0.0086309312267091,0.0103793916720884,0.0124361401152022,0.0147643210857736,0.0170568732466207,0.0190653288922492,0.0216797454497089,0.0238819732595666,0.0260890083509448,0.0282737789467195,0.030409055827116,0.0325396825396825,0.0345059006948674,0.0362710917536545,0.0384734976472295,0.0405183692965878,0.0423271062080449,0.0570582160701805,0.0707106625529467,0.0838593327321911,0.0968566021867115,0.1095019762845849,0.1251638547084443,0.135854178374882,0.1457186951200042,0.1556210742212536,0.1647075226838842,0.1766606358232101,0.1879745603218898,0.1985346073987107,0.2075981196020553,0.2166010599696523,0.2260560573857598,0.2343575792712839,0.2426143261837312,0.2497648005622116,0.2564653939858396,0.2626762190894384,0.2683482221054475,0.2745728263181528,0.2795522762876242,0.2839856099422217,0.2885846656753468,0.2921750630037178,0.2963550121753247,0.3000749121719363,0.3034662318535662,0.3008808033140727,0.2983667653184259,0.2960323250462989,0.2935675543470442,0.2912456168903224,0.288823896784414,0.2860449370975106,0.285068021100423,0.2868725671839676,0.2865192505954708,0.286829941101916,0.2881799060368383,0.2896327483429905,0.28982438937422,0.2903295438192546,0.2906167194887515,0.2922397835682757,0.2969571100412222,0.3001576458223857,0.3009217136753827,0.3063928603952281,0.3095124155899399,0.312563004032258,0.3185072353389185,0.3189744556508624,0.3214327934744059,0.3284014643075045,0.3347389558232931,0.3329723876556578,0.3383571966842502,0.0,2.0768897438738625,51.43569111999165,149.51704970063938,212.9816362586394,fqhc1_100Compliance_baseline,38 -100000,95549,47280,451.4856251766109,5063,51.64889219144104,3986,41.08886539890527,1501,15.35337889459858,77.19945181010942,79.67040021998176,63.224607941291474,65.05358751965099,77.00848519471751,79.48156176394986,63.15246312591506,64.98443394292582,0.1909666153919147,188.83845603190247,0.0721448153764114,69.15357672517075,210.67684,148.24414107159376,220490.88949125577,155149.8614026246,499.46738,334.7706830629149,522086.1442819914,349717.3105557513,452.80149,222.2591043452856,469181.1426597871,229033.9195257584,2785.5023,1302.1576599538623,2878508.901192059,1326064.9823167818,896.3158,405.18267785796513,926376.2258108404,412364.4390396187,1452.71652,621.2813257379512,1488259.2387152142,622862.3442451683,0.37971,100000,0,957622,10022.313158693443,0,0.0,0,0.0,43523,454.84515798176847,0,0.0,41063,425.1535861181174,1234533,0,44304,0,0,0,0,0,79,0.8163350741504358,0,0.0,1,0.0104658342839799,0,0.0,0.05063,0.1333386005109162,0.2964645467114359,0.01501,0.3684609552691433,0.6315390447308568,23.382031346053456,4.159254294149452,0.3278976417461114,0.2611640742599097,0.2180130456598093,0.1929252383341695,11.54164762962062,6.306011728422952,16.03033735012039,11544.330753598217,45.77174992720046,12.783503581356571,14.97638744994663,9.61538598981581,8.396472906081454,0.5910687405920723,0.7982708933717579,0.712318286151492,0.5857307249712314,0.1105331599479843,0.7582508250825083,0.9217391304347826,0.8571428571428571,0.7361111111111112,0.109090909090909,0.5180245133381399,0.7005163511187608,0.6549145299145299,0.5359877488514548,0.1109271523178807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0044439033298837,0.0065297749614103,0.0086627623230844,0.0109541067719998,0.0130685640889722,0.0154105220186763,0.0174637236868996,0.0194637740483012,0.0217669785507127,0.023794614902943,0.0261585760850565,0.0284649131840744,0.0305643522482283,0.0326967592592592,0.0344898973169923,0.0363287529167747,0.0386190268337802,0.0406016290648501,0.0425714047102054,0.0575726195332684,0.0717745994463551,0.084940664515383,0.0972931966409929,0.1096208926514262,0.1259713137780793,0.1367755935665049,0.1470647870489931,0.1569835334954628,0.1657203079967307,0.1779215309351275,0.1886632733902738,0.1991555933756627,0.2082844261126164,0.2178798079576182,0.2275741787844788,0.2355113413828989,0.2437736274897026,0.251408218305131,0.2582038294108864,0.2645697783654013,0.2702157598499062,0.2759847703092196,0.2813160422670509,0.2856986341392155,0.2903508663595608,0.2943250840821244,0.2973786209710322,0.3017984117921835,0.304477138438355,0.3018992634958318,0.2991129232210254,0.2961386696730552,0.2939255105432787,0.2921450240913687,0.2894974789658396,0.2859224069675376,0.2866390641430074,0.2881190659481653,0.2887025548424007,0.2890114839000225,0.2895236588067732,0.2902385752688172,0.2913486289871292,0.2920209050841743,0.2932578110725379,0.2951114408835364,0.298636849048307,0.3028176427243061,0.3052889362878698,0.3087227133321306,0.3122998582602761,0.3170974155069582,0.3198313507001957,0.322162562488428,0.3221531605488448,0.3241700465675229,0.332279106542795,0.3318977119784657,0.3369852663392519,0.0,2.4008267949940727,52.63112856730254,141.71983902345576,208.35200288404917,fqhc1_100Compliance_baseline,39 -100000,95675,47773,454.48654298406063,5224,53.31591324797492,4145,42.686177162268095,1613,16.420172458845048,77.33990302576841,79.7301306398387,63.32261558699434,65.08850831379289,77.13223581663837,79.52716287146868,63.24476950344104,65.01529456128652,0.2076672091300366,202.96776837002997,0.0778460835533039,73.21375250636208,210.29404,147.97959168096122,219799.94773974392,154668.5741112739,501.68931,336.7865597850148,523683.6791220277,351326.9218552546,460.51242,226.0168191185823,477346.6422785472,233100.5148055995,2908.546,1345.949981363047,2998673.2166187614,1365475.5663057724,943.06034,424.2207641000121,971220.4651162792,428972.0512487384,1554.96708,657.4004557063256,1585325.5082309905,653402.2485493053,0.38274,100000,0,955882,9990.906715442909,0,0.0,0,0.0,43682,455.8557616932323,0,0.0,41751,432.3909067154429,1240413,0,44510,0,0,0,0,0,75,0.7839038411288215,0,0.0,0,0.0,0,0.0,0.05224,0.1364895229137273,0.3087672281776416,0.01613,0.3428991905813098,0.6571008094186902,23.71090911616888,4.150211987405489,0.3153196622436671,0.2636911942098914,0.2270205066344994,0.1939686369119421,11.511922578032246,6.195119164414264,17.121584536751296,11633.96011239357,47.0908768831788,13.358553621966015,14.652873760999068,10.4674031213528,8.612046378860908,0.5785283474065138,0.8124428179322964,0.6801836266258607,0.5674814027630181,0.1082089552238805,0.7558528428093646,0.933774834437086,0.8488372093023255,0.7124463519313304,0.1385542168674698,0.5066124109867752,0.7265625,0.6199376947040498,0.519774011299435,0.1003134796238244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0047539404997212,0.0071130683605442,0.0094665420712631,0.0118971355358286,0.0141696695779637,0.0163697150079504,0.0186372172777006,0.0207822211318285,0.0227537922987164,0.0248603208775437,0.0269662690673181,0.0294510828208872,0.0313964627476025,0.0335958384509789,0.0358372537868996,0.0379192092912423,0.0399730122482873,0.0418608521970705,0.0440112582091108,0.0584044542406167,0.0727080476135638,0.0861213399217364,0.0994845360824742,0.1114287522680281,0.1261438530790144,0.1366659947591211,0.1480878330193398,0.1582629313567377,0.1684054769844418,0.1801410801787733,0.1916617974853383,0.202633782446525,0.2116345428505832,0.2196909667194928,0.2285916803260532,0.2374104732367969,0.2456436389816971,0.2530827084727689,0.2597487373881973,0.2660852870080151,0.2721767594108019,0.2784585541256624,0.282999437186411,0.287083778273954,0.291215758694983,0.2949147457372869,0.2983822800574399,0.3023659142679644,0.3054482149215937,0.3024107251019611,0.2994032559674403,0.2970941037337388,0.2953225666657036,0.2937839684001069,0.2904408955451975,0.2881374670309711,0.2870714648408707,0.2874917025513591,0.2877362684258255,0.2887421172431807,0.2904673780367759,0.2910247055144376,0.2909009812667261,0.2908737491300904,0.2933867110325465,0.2946111190103796,0.2972582519393235,0.3003295701563705,0.3034049612893032,0.308716323296355,0.3134288887713545,0.3168484392628808,0.3196149765044717,0.3219817130061578,0.3256416293854485,0.3284470911589555,0.3309630231613165,0.3325936199722607,0.329733898958735,0.0,2.379255655849652,51.77925531923093,145.69422324719602,225.5183150196347,fqhc1_100Compliance_baseline,40 -100000,95793,47162,449.6153163592329,5062,51.57996930882214,4038,41.66275197561408,1571,16.024135375236185,77.331780499572,79.67140178330921,63.32970022966426,65.06233931092459,77.12509577129059,79.46786678414543,63.25127836420621,64.98720703111144,0.2066847282814166,203.5349991637787,0.0784218654580541,75.13227981314685,210.76374,148.4016752524639,220019.9805831324,154919.12274640516,502.48599,336.6844432684327,524035.7646174564,350952.60955229786,456.3071,223.15260710501656,473370.02703746624,230658.0902082023,2837.12177,1328.3977178003613,2930523.451609199,1355539.8388194975,913.4179,419.4161339368113,942583.7796081132,426900.4997887418,1525.95604,657.8874133678926,1559140.793168603,658168.5219238565,0.37803,100000,0,958017,10000.9082083242,0,0.0,0,0.0,43705,455.722234401261,0,0.0,41239,427.5468979988099,1240156,0,44490,0,0,0,0,0,92,0.9604042049001492,0,0.0,0,0.0,0,0.0,0.05062,0.133904716556887,0.3103516396681153,0.01571,0.3636535552193646,0.6363464447806354,23.5715488744932,4.218426713777903,0.3244180287270926,0.2592867756315007,0.2092620108964834,0.2070331847449232,11.581390784794934,6.234813187389057,16.966691540915665,11437.728201212552,46.28502061929493,12.740758746066536,14.936939218104932,9.350810843457198,9.256511811666265,0.5755324418028727,0.7975167144221585,0.6862595419847328,0.5952662721893491,0.104066985645933,0.7487520798668885,0.9118329466357308,0.8522427440633246,0.7745098039215687,0.1382978723404255,0.5021156558533145,0.7175324675324676,0.6186895810955961,0.5382215288611545,0.0941358024691358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019346670043048,0.0040853979968371,0.0060580230752838,0.0081271079686293,0.0102822273073989,0.0122811841261112,0.0145898329968801,0.01720160071869,0.0191879127394655,0.0213441162921635,0.0235576331652109,0.0255149187834979,0.0276286836531145,0.0297898640296662,0.0318079550849381,0.033711698300459,0.0360301580397274,0.0381264520411549,0.0399555241499709,0.0420336935923866,0.0571631309284052,0.0707815572570185,0.0839046480910749,0.0965711463488961,0.1088046868414397,0.1235284171369391,0.1339247858899347,0.1442913050876297,0.1545809674251803,0.1636753281542995,0.17501211175109,0.1874100758337931,0.1983468377834575,0.2081050041017227,0.2164146250192608,0.2258157442800953,0.2343811022216271,0.2428100642229695,0.2510829383348831,0.2575922343433418,0.2635375722543353,0.2692608822670172,0.2748636917363485,0.2795394918117235,0.283868617570275,0.2879258492333481,0.2912457280204304,0.2944435952308162,0.2984240947616702,0.3016830572239456,0.2993068174170536,0.2965370344922358,0.2947649873346468,0.2923577000866801,0.2890972026205933,0.2869310783277418,0.284171009488207,0.2839246720409805,0.2840732320210601,0.2839946500222916,0.2850455039137111,0.2866047300629228,0.2876026478967655,0.2872302399356597,0.2881135707410972,0.2899653438257289,0.2906338048211287,0.2952201849239931,0.2999580917790039,0.3059748676203272,0.3087501134610148,0.306455890934168,0.3102881698685541,0.311386816867103,0.3138597149287321,0.3180853572270691,0.3200061040744697,0.3250650130026005,0.3331514324693042,0.3368298368298368,0.0,1.849811443531824,52.64841418117039,149.48325474932113,207.3084077638895,fqhc1_100Compliance_baseline,41 -100000,95674,47490,452.6203566277149,5212,53.12833162614712,4121,42.35215419027113,1526,15.448293162196626,77.34192318165195,79.71806408721504,63.32298576779221,65.0752082120009,77.14229799991776,79.52424046970674,63.24703206273272,65.00431878964244,0.1996251817341914,193.82361750830057,0.07595370505949,70.88942235846218,212.17834,149.2094071529447,221772.2056149006,155956.06659379214,502.77759,337.12939745275503,524744.5073896775,351606.9296245183,460.71447,226.12523102134412,477017.7477684637,232755.4067595885,2890.50523,1345.1111722648654,2972241.883897402,1357028.5903298005,944.9251,426.3894955022143,965646.8633066457,423722.8009711147,1479.56696,635.7116397405503,1499908.940778059,625827.2170268415,0.38037,100000,0,964447,10080.5548006773,0,0.0,0,0.0,43769,456.6862470472647,0,0.0,41695,431.2874971256558,1229777,0,44175,0,0,0,0,0,79,0.825720676463825,0,0.0,0,0.0,0,0.0,0.05212,0.1370244761679417,0.2927858787413661,0.01526,0.3595443689142017,0.6404556310857983,23.5277153058816,4.107593440510727,0.3295316670710992,0.2586750788643533,0.2152390196554234,0.196554234409124,11.542264296197905,6.380459987792924,16.432676358382494,11577.43525558166,47.08358419426904,12.96341552719396,15.406079892803104,9.993157529935203,8.720931244336777,0.589662703227372,0.8123827392120075,0.6973490427098674,0.5896279594137542,0.1160493827160493,0.7591537835638731,0.9101382488479264,0.8589743589743589,0.7336065573770492,0.1490683229813664,0.5176348547717843,0.745253164556962,0.6322314049586777,0.5349922239502333,0.1078582434514637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161771108613,0.0044191727227577,0.006827150349473,0.009253052186808,0.0115322424821779,0.0137545560057828,0.0159349958199946,0.0180123145415743,0.0203689312446316,0.0225669380023549,0.0247926257831004,0.0268119364975046,0.028726883755374,0.0308178951923671,0.0330319170898881,0.0349424003640048,0.0368770523219076,0.0390388208428482,0.04110942407288,0.042953607602851,0.0573887792088412,0.0722280975466739,0.0859416000167936,0.098753090966486,0.1106913726152287,0.125556931347959,0.1359572751210396,0.146869907007957,0.157441850521635,0.1668079990553987,0.1787435446831908,0.1901770726160177,0.2011886490546321,0.2104439556591488,0.2193615850302696,0.2292206784994128,0.2378485788921387,0.2456799990994135,0.2532672323819032,0.2589279578513343,0.2651353853274705,0.270924491658282,0.2759465505201737,0.2804171911526704,0.2848031295178161,0.2892103706624606,0.2926468931151482,0.2962571879293674,0.300711444011041,0.303443631658172,0.3011352911037402,0.2994362741719846,0.2974768345486087,0.2945211414048059,0.2920713533711947,0.2887965283295642,0.2863729669982631,0.2865878649769661,0.2872498336489737,0.2881298613459587,0.2888710400478183,0.2894171022783312,0.2898023979613151,0.291171155090475,0.2927150415359938,0.2934971360443719,0.2936764039855072,0.2979613499422434,0.3012035619869208,0.3047034764826176,0.3110791625482972,0.3165705296276874,0.3180626638372238,0.3194340470130259,0.3244941328651945,0.3252663270032422,0.3324408746095493,0.3348407392843098,0.3359312012899758,0.3376288659793814,0.0,2.6151037538212925,53.133372772068455,147.02085041679098,216.3709733576009,fqhc1_100Compliance_baseline,42 -100000,95738,47441,452.3700098184629,5113,52.298982640122,4015,41.3524410369968,1523,15.490191982284989,77.32392886815877,79.6877145577961,63.31606620966248,65.06479707117093,77.13499929511403,79.50260001073744,63.24556690355446,64.99830010406961,0.1889295730447457,185.11454705866012,0.0704993061080188,66.49696710131536,211.00002,148.48427366535003,220393.17721281,155094.396859502,503.01611,337.3990322791184,524819.6954187469,351829.7878367193,454.91787,222.16051491721743,471428.60724059417,229218.3469673872,2857.61502,1311.2119825105583,2945490.714240949,1330245.944672501,918.3143,408.2223929445467,946444.2750005224,413654.9755601261,1485.32814,624.3355238761869,1513197.3719944016,620130.2555926251,0.37971,100000,0,959091,10017.871691491362,0,0.0,0,0.0,43715,455.9944849485053,0,0.0,41100,425.5572499947774,1236255,0,44397,0,0,0,0,0,101,1.0549625018279054,0,0.0,1,0.0104451732854248,0,0.0,0.05113,0.1346553949066392,0.2978681791511832,0.01523,0.3526551982049364,0.6473448017950636,24.059413101013032,4.21509750072304,0.310585305105853,0.2669987546699875,0.211706102117061,0.2107098381070983,11.382739213628048,6.092431825937451,16.183986286373155,11555.359748242558,45.72111109781487,13.05098200914877,13.96223843148142,9.457662380374826,9.250228276809864,0.5648816936488169,0.7994402985074627,0.6688051323175621,0.5694117647058824,0.1099290780141844,0.744661921708185,0.9101654846335696,0.8440366972477065,0.7745098039215687,0.1058823529411764,0.4949844344517468,0.7272727272727273,0.6065217391304348,0.5046439628482973,0.1109467455621301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025423642975072,0.004633525636476,0.0070838492297075,0.009236115344754,0.0115860357244578,0.0137983706720977,0.0160675325734559,0.0184449865771127,0.0205502561114007,0.0224326814784478,0.0242472087515506,0.0260272284851845,0.0281590229158313,0.0303548436936704,0.0322780369009782,0.0342243446622012,0.0364075155884241,0.0382978723404255,0.0403980534065385,0.042454107890734,0.0575873049016025,0.071672926234739,0.0846545866364665,0.096918013480405,0.1093395758860312,0.1244354181872031,0.1356710875331565,0.1466429590511275,0.1565500667556742,0.1654624587281849,0.1781770037243547,0.1898619205691857,0.1999239089080928,0.208467702263957,0.2175404644616467,0.2276511880245355,0.2371862099743389,0.2448952040230854,0.2526020680340056,0.2596396313786621,0.2662226340785358,0.271451826347656,0.2769043020817289,0.2815108914691488,0.2855388132851739,0.2900421691203669,0.2932129303758626,0.2971489692231291,0.3003588966196344,0.3033276112504952,0.3021570133247107,0.2997922027880606,0.2968353716958801,0.2943692912475431,0.2914730293536844,0.2876316553801,0.2847013864763288,0.2852818457007281,0.2856412876852325,0.2858184793823602,0.287204463602605,0.2883001772700413,0.2899935334487578,0.2912863440046306,0.2927611886688537,0.2947343835154283,0.295858826195332,0.2992444430510706,0.3038489877548156,0.308036067389069,0.3116612259702575,0.3161252900232018,0.3191901518465287,0.3224274406332454,0.3273475495697718,0.331289790143834,0.3347343140198138,0.3385457388584832,0.3389473684210526,0.3413173652694611,0.0,2.194929586943417,48.95222283702224,150.43148477075712,212.7529094723466,fqhc1_100Compliance_baseline,43 -100000,95795,47681,454.7418967587035,5097,51.99645075421473,4058,41.79758860065765,1542,15.710632078918524,77.4066300966336,79.74372543324688,63.35719594835807,65.08697797158206,77.2138968091535,79.55436070641204,63.28474679878149,65.01805103740419,0.1927332874801095,189.36472683483885,0.0724491495765846,68.92693417786688,211.3463,148.71307733869168,220623.5189728065,155240.9596938167,499.74768,335.58473272240235,521121.1023539851,349752.08802380326,460.84679,225.14698354547477,477247.81042851927,232118.5734686084,2857.60352,1324.813015210527,2947153.191711467,1347079.5920565033,948.89992,427.6408362556125,977437.5280547,433301.7341828875,1499.92342,635.0487615392628,1530783.798736886,634575.5926210962,0.38003,100000,0,960665,10028.341771491205,0,0.0,0,0.0,43331,451.7354767994154,0,0.0,41779,432.3190145623467,1239952,0,44504,0,0,0,0,0,87,0.89775040450963,0,0.0,0,0.0,0,0.0,0.05097,0.1341209904481225,0.3025309005297233,0.01542,0.3534256832646948,0.6465743167353051,23.71013842242237,4.175117327685524,0.3176441596845736,0.2654016757023164,0.2084770823065549,0.2084770823065549,11.52688428242143,6.367781777637851,16.3079746988571,11536.34851752141,46.34209614491157,13.26377187898053,14.474896926146782,9.393830760587276,9.209596579196988,0.5842779694430754,0.8068709377901578,0.7051978277734678,0.574468085106383,0.1264775413711583,0.7385398981324278,0.8912579957356077,0.8765060240963856,0.6868686868686869,0.1396648044692737,0.5211805555555555,0.7417763157894737,0.64576802507837,0.5401234567901234,0.1229385307346326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023810971284981,0.0045831558881385,0.0068093483930546,0.0086361927598223,0.0110352823913507,0.0133703997881916,0.0153137170938602,0.0176695758689327,0.0197984382027065,0.021971836751402,0.0241867710660626,0.0261861763257264,0.0285103496474747,0.0304917594012826,0.0322849986084052,0.0341893580331051,0.0360534646500175,0.0382111461270525,0.0400918403391027,0.0422266873496923,0.0565722752029381,0.0704739395967539,0.0839333815468142,0.0969586144565651,0.1097508296897223,0.1250383018289783,0.1363906140704156,0.1463883986476429,0.1568064698539375,0.1661311398153503,0.1784204241035406,0.189073767744586,0.1999065603337751,0.2095603087774465,0.2189185330008896,0.228217098858306,0.2365483478862088,0.2452872607097492,0.2523301961673659,0.259599208029573,0.2659945894702767,0.271489829062825,0.2760708626031836,0.2800957797066746,0.2848523841895697,0.2883765042062348,0.2924861131962167,0.2968575205939184,0.3001617599482368,0.3036156970304341,0.3008857896720693,0.2984098187165849,0.2957157931762223,0.2925432141517329,0.2918451119574399,0.2888166529316607,0.2861284426797756,0.2864626682986536,0.2864669806525938,0.287137296532201,0.2875774433012707,0.2877834617118441,0.2896485835341031,0.29051357104843,0.2916369005095966,0.2921588857363941,0.2921281812801217,0.296275587860715,0.3004926108374384,0.3049420426065163,0.3073814655172414,0.3138617482627096,0.3197573656845754,0.3219504920966299,0.3289328932893289,0.3306414397784956,0.3360519558979006,0.3405597162002365,0.3399241603466955,0.3506787330316742,0.0,2.1920126931457307,51.243692469149416,153.1530705836868,207.5827979982327,fqhc1_100Compliance_baseline,44 -100000,95677,47774,455.2818336695339,5105,51.94560866247896,4051,41.64010159181412,1495,15.176061122317796,77.29491858535671,79.69773218624536,63.29396199958445,65.0742758297103,77.10388065905303,79.51310813455446,63.221369045068734,65.0072521863797,0.1910379263036787,184.62405169090343,0.07259295451572,67.02364333060018,212.1658,149.29097362595755,221751.68535802755,156036.06242481753,509.09535,341.6649844891312,531369.3991241364,356377.313368953,463.57058,227.4323015561898,480254.6589044389,234453.9969669289,2856.32286,1326.1128145484051,2937589.316136584,1338496.7934548275,939.95617,422.28194620673537,965943.675073424,424961.06228400033,1459.82816,620.4927712534793,1484088.966000188,612223.501883681,0.38128,100000,0,964390,10079.622061728523,0,0.0,0,0.0,44242,461.657451634144,0,0.0,42097,435.7891656301932,1226082,0,43999,0,0,0,0,0,68,0.7002727928342234,0,0.0,1,0.010451832728869,0,0.0,0.05105,0.1338911036508602,0.2928501469147894,0.01495,0.3397327310370788,0.6602672689629211,23.537988930378575,4.218126678890697,0.3184398913848432,0.26734139718588,0.2073562083436188,0.2068625030856578,11.729613019995778,6.4312551716601805,15.941940185991712,11553.021095275575,46.152502087773335,13.222450467016657,14.508784552491838,9.280193000426014,9.141074067838836,0.5778820044433474,0.7903970452446907,0.6829457364341085,0.5904761904761905,0.1288782816229117,0.7561807331628303,0.9146067415730336,0.8739255014326648,0.7313432835820896,0.1573033707865168,0.5052119527449618,0.7037617554858934,0.61211477151966,0.5461658841940532,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025241517734953,0.0049620993028707,0.0072208398923475,0.0093233694270753,0.0115129737268035,0.0138411831255796,0.0162965835340217,0.0183384074702192,0.0204403159143921,0.0224546450998268,0.0245984038733766,0.0268534974266254,0.0291935500468208,0.0311037823353601,0.0329283524469172,0.0348407913378905,0.0369430051813471,0.0392146683832385,0.0410827793556172,0.0431111759678125,0.0584972474955865,0.0723895676937735,0.0863916378939414,0.0993013026916682,0.1112705480174724,0.1273385253534242,0.1384973037238333,0.1487254839327924,0.1585937917401293,0.1677307209459532,0.1789838834784107,0.1891777842698088,0.200110900906778,0.2093999344190621,0.2185479259226674,0.2279788730055032,0.2363579565105822,0.2446887518566863,0.251413648234359,0.2577716643741403,0.2638318070782731,0.2691047396138092,0.2743951517447091,0.2793366429239514,0.2830952033824173,0.2878004859577932,0.2920688575899843,0.2965049729097245,0.3002779753054496,0.3038444822000079,0.301308752788154,0.2992711750415197,0.2959187977112651,0.2924399071390463,0.290609569846236,0.2875386168292906,0.2840553112046324,0.2846461599003083,0.285195230540914,0.2856302056394799,0.2864314078069978,0.2873679012345679,0.2890910992573998,0.2896839567895723,0.290870590500024,0.2918707660239708,0.2921079603689784,0.2969044330026372,0.3012056613664162,0.3054666192339618,0.3086155944532848,0.3105688480430993,0.3160395049381173,0.3179173278923902,0.3221858944418496,0.3248317392844492,0.33071223347951,0.3295797305449427,0.3357585556453786,0.3381913303437967,0.0,2.603096873469963,50.52942265587482,148.02257243588832,213.3241063543583,fqhc1_100Compliance_baseline,45 -100000,95730,47763,454.5388070615272,5066,51.81238901075943,3965,40.92760890003134,1551,15.93022041157422,77.3593554540744,79.73173531459429,63.33143217950936,65.08448553289435,77.16624564667494,79.53761598730819,63.25956235629974,65.01353500024437,0.1931098073994661,194.1193272861028,0.0718698232096244,70.95053264997375,211.36346,148.67841070181908,220791.24621330824,155310.15429000216,503.2105,338.145724188111,525134.2421393503,352713.31813737133,456.8678,223.51800409722435,473978.1259793168,230966.60245596315,2833.76843,1307.5449888703,2928862.1330826283,1334989.1923442965,908.49059,408.646594557247,934886.7544134544,412876.4211402179,1510.24112,638.0120135739786,1552712.6919460983,646539.0293287773,0.381,100000,0,960743,10035.965736968556,0,0.0,0,0.0,43763,456.6175702496605,0,0.0,41394,429.1444688185522,1235488,0,44302,0,0,0,0,0,83,0.8670218322364984,0,0.0,0,0.0,0,0.0,0.05066,0.1329658792650918,0.3061587050927754,0.01551,0.3456464379947229,0.6543535620052771,23.67781392032349,4.162822383479443,0.3134930643127364,0.2564943253467843,0.2148802017654476,0.2151324085750315,11.43802216088364,6.30170897864189,16.519482040011987,11584.856733674496,45.18878306505976,12.340927629430414,14.115360436620078,9.450282944735214,9.282212054274044,0.5747793190416142,0.8053097345132744,0.6926790024135157,0.57981220657277,0.123094958968347,0.7567332754126846,0.9258373205741628,0.8731988472622478,0.7298578199052133,0.1542857142857142,0.5003553660270078,0.7212020033388982,0.6227678571428571,0.5304212168486739,0.1150442477876106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763278369728,0.0047543260312021,0.0069307031162795,0.0090898011415571,0.0116734287137874,0.0139371048693332,0.0162495540037718,0.0182614376416307,0.0201590644231359,0.0221644365728559,0.0244167563964518,0.0265614889224416,0.0285711346145931,0.0305893261899855,0.0327523759403151,0.034856315898284,0.0371152591856384,0.0390914276824145,0.04138382693847,0.043579247778854,0.0581374708947198,0.0717911150646224,0.0848655849127849,0.0974766060351172,0.1098563927373948,0.1258713150908071,0.1371304882965855,0.1481631306088122,0.1588451510877463,0.1685390847148452,0.1802715224652515,0.1910870082916585,0.2019711935947086,0.2111436950146627,0.2199814965746635,0.2284355144539436,0.2371497805719646,0.2451805196265886,0.2529099448642026,0.2601759168060105,0.2656658416414147,0.2709667617222196,0.2765266093203516,0.2810129913630165,0.2858130312988856,0.2899609956566141,0.294077935716161,0.2982496252826258,0.3005572579289657,0.3030291057553009,0.3008702191663086,0.2984115652329109,0.2964667583419864,0.2942453698378005,0.2912352836774537,0.2880498544894943,0.2848377098443965,0.284471928078448,0.2855395487904322,0.2862947585081088,0.2873794736940264,0.2876898261074829,0.2903596581053687,0.2912124731951394,0.2925385297571966,0.2941176470588235,0.2949917758493562,0.2994925447938855,0.3045499021526419,0.3083290630296819,0.3107991849671723,0.3126188966391883,0.3144891914035419,0.3181577953944884,0.3182789703559149,0.3241629594942636,0.3272754808420415,0.3338645418326693,0.3413513513513513,0.3405933158092377,0.0,1.911032544646768,50.44383141673322,143.77574083735658,209.2247319684108,fqhc1_100Compliance_baseline,46 -100000,95879,47590,452.132375181218,5195,52.900009386831314,4081,41.8861273062923,1529,15.582139988944398,77.4394230829848,79.71911208793675,63.39129033748679,65.0769303551167,77.24129833428788,79.52492816965517,63.3165209322832,65.00625927732311,0.1981247486969266,194.1839182815812,0.0747694052035825,70.67107779359105,212.2186,149.26658524029455,221340.0223197989,155682.25079558045,500.84568,335.7910799995414,521724.986701989,349576.13241642225,456.45051,224.1920540089799,471429.7499973925,230374.363677028,2909.42639,1345.5847371743066,2994463.2609852003,1363405.7271918831,950.58811,431.3609397544932,979809.5933416076,438265.38632494427,1497.62648,635.9726913285403,1529197.071308629,635420.5700375787,0.38113,100000,0,964630,10060.910105445404,0,0.0,0,0.0,43569,453.7177066928107,0,0.0,41347,426.568904556785,1237218,0,44421,0,0,0,0,0,80,0.8343850061014403,0,0.0,1,0.010429812576268,0,0.0,0.05195,0.1363051977015716,0.2943214629451395,0.01529,0.3427152317880794,0.6572847682119205,23.996413931978807,4.201491690765153,0.3244302866944376,0.2563097280078412,0.2033815241362411,0.21587846116148,11.290910141261763,5.944110111099876,16.235445238561365,11531.368540720794,46.27454046557428,12.75599100144821,14.813196787846698,9.170378319541562,9.534974356737813,0.5574614065180102,0.8126195028680688,0.6616314199395771,0.536144578313253,0.1180476730987514,0.743993371996686,0.9492273730684326,0.8296089385474861,0.7373737373737373,0.1262626262626262,0.4791231732776618,0.7082630691399663,0.5993788819875776,0.4731012658227848,0.1156661786237188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0046414528355425,0.0069690299150934,0.0094528322959924,0.0117495197536259,0.0138275574367635,0.0160020371785077,0.0183904528763769,0.0206366719790772,0.0229239550727306,0.0251644500911903,0.0271080010670825,0.0290916938127485,0.03107853532494,0.0329810814990463,0.0352016686974659,0.0374110246647906,0.0392817175778173,0.0413625556743737,0.0433923202563382,0.0573954196245217,0.0718487790096237,0.0853971412115817,0.0983799334334281,0.11044791831149,0.1256677717012606,0.136010252933949,0.1460250334700469,0.1554385366477636,0.1649544111981507,0.1769347365705255,0.1883934263271061,0.1989810328720099,0.2090326951656613,0.2174902685227947,0.2255547562392784,0.2343074316793723,0.2423054457225018,0.2502350449134015,0.2578133930816891,0.2642008383662251,0.2694669499638095,0.2746629485649466,0.2789712411886497,0.284483699938124,0.2900621500215371,0.2935052924930329,0.2967764051648617,0.2997907355258739,0.3033313159487409,0.3014666380143977,0.2993580775244835,0.2970822281167108,0.2944302812945599,0.2919738283447316,0.2887400241099904,0.2855317537937344,0.2860993579795141,0.286328709370325,0.2864800582189957,0.2866538726686665,0.2889626980071538,0.2902608080261432,0.2900722741985545,0.2913443918227468,0.2928462473176659,0.292529658748274,0.2965262471672927,0.2996092804536496,0.3038866491839211,0.3067798894729748,0.3088312506563058,0.3134839151266256,0.3166326607723116,0.3191449465591599,0.3219898381188704,0.3236648250460405,0.3302231237322515,0.3322314049586777,0.338097028958255,0.0,2.654750823451524,51.913342540168,143.36411724320078,215.21210325948013,fqhc1_100Compliance_baseline,47 -100000,95724,47761,454.0971961054699,5214,53.16326104216288,4173,42.883707325226695,1578,16.00434582758765,77.34647984393533,79.69958943309416,63.33814763576003,65.07581513230978,77.13567317308754,79.49349309837967,63.25805863786848,65.00017226125296,0.2108066708477878,206.0963347144877,0.0800889978915506,75.64287105682865,210.48126,148.1239816554671,219883.4774978062,154740.69371888673,502.58736,337.5784565118816,524334.7227445573,351954.8561613405,461.97608,226.65192460206484,477937.2362208015,233119.34248042965,2910.92655,1361.9148682080945,2995510.8227821654,1377304.6448206245,948.08738,432.2417845151578,971039.1333416906,432150.66703768953,1528.19874,660.701357986006,1552764.406000585,653044.8944708599,0.38147,100000,0,956733,9994.703522627551,0,0.0,0,0.0,43649,455.2567799089048,0,0.0,41903,433.1097739333918,1239350,0,44509,0,0,0,0,0,77,0.8043959717521206,0,0.0,0,0.0,0,0.0,0.05214,0.1366817836264975,0.3026467203682393,0.01578,0.3577745025792189,0.6422254974207812,23.26745041850896,4.095146040587833,0.3251857177090822,0.2657560508027797,0.2118380062305296,0.1972202252576084,11.1341258176321,5.947683472654794,17.004639800602686,11588.491429452166,48.00437180060407,13.665633270258756,15.475503166556198,9.850930465236376,9.012304898552744,0.5842319674095375,0.8115419296663661,0.7103905674281503,0.5463800904977375,0.1105710814094775,0.7442231075697211,0.9242424242424242,0.8469656992084432,0.7248908296943232,0.1081081081081081,0.5154215215901302,0.7310664605873262,0.6574642126789366,0.4839694656488549,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812639254608,0.0050988859491733,0.007479120366142,0.0097113020865077,0.0118982244188174,0.0141513275777813,0.0165035677879714,0.018810153196093,0.0209545031738406,0.0233534344189284,0.0255845180864912,0.0276312278036663,0.0299693623671169,0.0319185094395979,0.0338409475465313,0.0357515684592407,0.0375834756949836,0.0397460238413894,0.0418403517708084,0.0438727149627623,0.0583930174771877,0.0721986142220175,0.085401038661281,0.0979967401020032,0.1098130594772413,0.1256568305086537,0.1367816945484634,0.1471204912885681,0.1571985266641755,0.1670275020899873,0.1785306720065456,0.1905518964342493,0.2019019671774807,0.2110721349812586,0.2191810937070623,0.2281362086525262,0.2365530239664536,0.2450678244437945,0.252518834528456,0.2598009460217837,0.2656741625023135,0.2711604793919906,0.2773799519452697,0.2821536469572723,0.2870815721712093,0.2901768124507486,0.2929984112886075,0.2963321200397077,0.2992691270993158,0.3033163467377815,0.3004377399151458,0.297617409965059,0.2959990990230031,0.2938186019641826,0.2916109873793615,0.2885613261698121,0.2853937555302743,0.2858453172601303,0.2857800825628603,0.2851899365690257,0.2856234810244905,0.2872912929488064,0.2876038592746071,0.289358568048922,0.2895437855480093,0.2912537811619902,0.2944746815604251,0.2971955580651232,0.3018656585809793,0.3066387748658036,0.3077027886274866,0.3109203624225083,0.3193776166968693,0.3241211753093918,0.328419866679185,0.3327414772727273,0.3331811263318112,0.3267286696320259,0.3258270781206561,0.3265783320342946,0.0,2.8171679014641544,54.199681932391776,152.2620833228999,216.423103153458,fqhc1_100Compliance_baseline,48 -100000,95751,47544,452.9978799177032,5141,52.55297594803187,4086,42.2032145878372,1595,16.334033064928825,77.41222784566315,79.76889109724969,63.350809200748486,65.08988074297253,77.20763307397213,79.56476823128446,63.27429132865055,65.01572703709236,0.2045947716910205,204.12286596523188,0.0765178720979378,74.15370588016401,210.0978,147.8179887041843,219420.99821411783,154377.48817681725,502.29973,336.4909313273111,524121.1162285512,350954.46661372844,457.4222,223.6486934378552,474701.0892836629,231254.8507787317,2869.53486,1338.1149841925694,2964835.949494,1365492.4542162165,968.4679,441.4639932098429,997975.5407254233,447610.0872148536,1550.2867,660.4085432508289,1589069.9836033045,663942.5440845538,0.38195,100000,0,954990,9973.681737005358,0,0.0,0,0.0,43764,456.56964418126176,0,0.0,41421,429.5620933462836,1243454,0,44563,0,0,0,0,0,81,0.8459441676849327,0,0.0,2,0.0208875103132082,0,0.0,0.05141,0.134598769472444,0.3102509239447578,0.01595,0.3492831874883634,0.6507168125116366,23.569683919827444,4.149506827770172,0.3135095447870778,0.272148800783162,0.2075379344101811,0.206803720019579,11.673517900815868,6.323649030927004,16.973718870767023,11624.88631243886,46.70817859783978,13.451813446956864,14.481107425517724,9.516238419856712,9.25901930550849,0.5797846304454234,0.8039568345323741,0.7017954722872756,0.5601415094339622,0.1195266272189349,0.7607413647851727,0.948955916473318,0.8835227272727273,0.7066666666666667,0.1340782122905028,0.5056916177992411,0.7121879588839941,0.6329386437029063,0.507223113964687,0.1156156156156156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0042568286626463,0.0063405429533741,0.0086826712161832,0.010949684319686,0.0133048302539827,0.015706219295921,0.0181014866891829,0.0198873797917241,0.0219344933469805,0.0242067721570878,0.0262379896526238,0.0283123612139156,0.0306166584280771,0.0326994314488252,0.0347098041242441,0.0368418327724566,0.0388230655904384,0.0407435516234002,0.0428342257130356,0.0571998287867873,0.0711505461850751,0.0853114871031017,0.0981213051984936,0.1105308137878644,0.1261573951598396,0.1377418362040604,0.1478661782869798,0.1586253326066745,0.1674661687217625,0.1798727899956878,0.1902658220995073,0.2013910809722328,0.2098855985549291,0.2185307174566805,0.228173106783195,0.2370165066663686,0.2456413028787674,0.2537328685462535,0.2608610926431142,0.2670278906602757,0.272741099528506,0.2785355178328503,0.283432321103554,0.2877463831439946,0.2916758992540069,0.2959117375115576,0.2989516702203269,0.3019888233548004,0.3064973978867686,0.3036683598933133,0.3006846501437765,0.2974681769752705,0.2953388733933347,0.2936360417773057,0.2916521025516329,0.2901528360272057,0.2904801445806672,0.2902033898305085,0.2909000761425814,0.2915111333964752,0.2922230489094255,0.2928904234961311,0.2935566152822446,0.2955494571053573,0.2958875074314369,0.2964929124075224,0.300550527199776,0.303865674754919,0.3058136344035438,0.3101433643431756,0.312191795194628,0.3176002980996149,0.3236747529200359,0.3264010306432318,0.3292952824694234,0.3275578790141897,0.3342546890424481,0.3376344086021505,0.3418482344102179,0.0,1.8622220464854549,52.144998963263625,152.61943848635332,211.1260002994323,fqhc1_100Compliance_baseline,49 -100000,95746,47677,452.8230944373656,5223,53.49570739247593,4160,43.04096254673825,1584,16.31399745159067,77.32373385663094,79.6930822689132,63.321321634088775,65.07481360534919,77.12384626586817,79.4917276342998,63.24646599097215,65.00108828228406,0.1998875907627706,201.35463461339495,0.0748556431166278,73.72532306513335,211.76804,148.9589141602305,221176.9055626345,155577.16683749764,503.23233,336.92568256868014,525203.9145238444,351508.25368023745,459.2354,224.3520691868916,476317.9349528962,231913.21676567444,2961.61653,1371.4848115776886,3064881.1020825934,1404099.7447179907,992.83405,443.3914567138383,1026098.447976939,452244.0903158752,1546.9724,656.1392904001212,1593313.141018946,665546.7216013373,0.38108,100000,0,962582,10053.495707392476,0,0.0,0,0.0,43770,456.7397071418128,0,0.0,41674,432.0389363524325,1235771,0,44382,0,0,0,0,0,77,0.8042111419798217,0,0.0,0,0.0,0,0.0,0.05223,0.1370578356250656,0.3032739804709937,0.01584,0.3459923315683768,0.6540076684316232,23.621665805598514,4.1927951395072185,0.3163461538461538,0.2665865384615384,0.1995192307692307,0.2175480769230769,11.148650607065424,5.885185506882642,16.86590554898461,11610.673509462778,47.6554611108418,13.505738385435912,15.064343845927542,9.20918284649191,9.876196032986432,0.5807692307692308,0.806131650135257,0.7006079027355623,0.5903614457831325,0.1215469613259668,0.7558333333333334,0.9117647058823528,0.8689839572192514,0.7562189054726368,0.1475409836065573,0.5097972972972973,0.7361319340329835,0.6337579617834395,0.5373608903020668,0.1149584487534626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0045635705375886,0.0067701989443767,0.0089628681177976,0.0114561289272342,0.0137925414336501,0.016083302737323,0.0183836671330671,0.0205945210802409,0.0231348251318551,0.0252997097763329,0.0276881996508164,0.0295969384605888,0.0318003359335552,0.0339894511937078,0.0360786908293963,0.0384025850283773,0.0404822177034485,0.0423892701185277,0.0443543765693864,0.0589482036772152,0.0726755138778415,0.0857460557233971,0.0984337691571385,0.1106471375997806,0.1254863813229572,0.1370421055981668,0.1467136275125294,0.1573894098297626,0.1663807338465827,0.1777354264918061,0.1898347992600045,0.2002675163391585,0.2092705383210681,0.2181676164492068,0.2280725066161733,0.2373678811934174,0.2449811829466943,0.2522333575185924,0.2585313397320765,0.2648305819017802,0.2715432149240132,0.2772059605544592,0.281984365460357,0.2869087202388176,0.2903388661774122,0.2936636982189313,0.2973619272940039,0.301589973327809,0.3053409959665726,0.3018063457477572,0.2996932641916892,0.2967067006462695,0.2954624277456647,0.293333135312551,0.2891850129278032,0.2860526066500363,0.2869511137297262,0.2879311224923857,0.2881744916294543,0.2894176136363636,0.2906407828282828,0.291801080899912,0.2926131282418172,0.29289819869652,0.2955623924492882,0.2967653602601403,0.3007341126059422,0.3061124006471126,0.3106084740363173,0.313607305936073,0.3186057666684432,0.321466893896358,0.3253683487289106,0.3296220059880239,0.3293044199549709,0.3341408024224073,0.3428686543110394,0.3483483483483483,0.3400840657241116,0.0,1.6039638682249642,52.87321742752224,156.2909266531316,217.482539020909,fqhc1_100Compliance_baseline,50 -100000,95782,47845,455.2629930467103,5062,51.59633334029358,3967,40.84274707147481,1586,16.182581278319518,77.38153749659537,79.72311682390227,63.350937847410606,65.08288510321694,77.18252427506576,79.5268215311127,63.276030904508566,65.01116808509137,0.1990132215296114,196.29529278957136,0.0749069429020394,71.71701812556819,211.22992,148.75217584819342,220531.9579879309,155302.85006388824,505.79538,339.0970326227563,527530.9452715542,353491.6191171163,461.14823,225.9017078656014,477994.38307824015,233144.38412425693,2817.26303,1307.436187666325,2905141.675888997,1328825.831227501,929.05348,418.48292071196494,957649.7462988872,424594.9350733589,1537.78386,653.0226566412149,1571892.9443945626,653273.4124458417,0.38089,100000,0,960136,10024.179908542315,0,0.0,0,0.0,43947,458.23849992691737,0,0.0,41685,431.6990666304734,1234816,0,44294,0,0,0,0,0,90,0.9396337516443592,0,0.0,1,0.0104403750182706,0,0.0,0.05062,0.1328992622541941,0.3133148952983011,0.01586,0.3419062027231467,0.6580937972768532,23.9146381746755,4.191572536593594,0.3193849256365011,0.2535921351146962,0.2210738593395513,0.2059490799092513,11.513649686420552,6.362995068542065,16.996641570968976,11579.032503965562,45.22919538154347,12.15077661533219,14.25375548408174,9.940228850030769,8.884434432098782,0.5744895386942274,0.7952286282306164,0.6874506708760852,0.5952109464082098,0.1052631578947368,0.7476394849785408,0.9178743961352656,0.8495575221238938,0.756198347107438,0.1176470588235294,0.502498215560314,0.7094594594594594,0.6282327586206896,0.5338582677165354,0.1020092735703245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091413640138,0.0045613963954832,0.0070208189602694,0.009049084427653,0.0111840901234316,0.0133961745574478,0.0159518082113589,0.0182488084181304,0.0205195282961025,0.0226126282831796,0.0249731003740328,0.0271399390275197,0.0293648916809755,0.0315167365093747,0.0335946364105208,0.0354807046546469,0.0375218601570826,0.0395040996776233,0.0414788191053954,0.0432790913160716,0.0585724720859856,0.073029418839352,0.0866206115752728,0.0997478196910791,0.1121460860036036,0.1279192645038571,0.1388909493583698,0.149574239637705,0.1597823187323267,0.1685440222924816,0.1797223119147562,0.1903314767749959,0.2004369137801736,0.209264460010272,0.2184557853057633,0.2278111093891828,0.2372223708857372,0.2452705057158594,0.2519902020820576,0.2589236683141131,0.2646970397779833,0.2701527600836849,0.2762940007570023,0.2805229947676577,0.2850694107368217,0.289595766935335,0.2937055076807793,0.2970950033040207,0.3010512160746841,0.3037734606519591,0.3006437566358004,0.2981750271205525,0.29513293008862,0.2922739473000664,0.2900520918359775,0.2869062901155327,0.2840935986241065,0.2834120589052514,0.2829149742526469,0.2844023660230563,0.2850082065055207,0.2861416733914618,0.2883367753509815,0.2887724383989296,0.2895989285628871,0.2907223979671213,0.2924261292878976,0.2979200398555237,0.3029829496128068,0.3062138898714774,0.3093434343434343,0.3132498421384971,0.3172776179156762,0.3215555723689188,0.3263305322128851,0.3323550129138295,0.3380175279540646,0.3447378951580632,0.3479097909790979,0.3454821564160972,0.0,2.2719792055362946,50.54691882988693,144.7230333926772,206.27919299115771,fqhc1_100Compliance_baseline,51 -100000,95860,47322,449.44711036928857,5220,53.265178385145006,4173,42.97934487794701,1603,16.31546004590027,77.37299817448195,79.6744510314208,63.35320242165369,65.05708394022948,77.17557146460327,79.48163457306646,63.27849092107125,64.98698736332173,0.1974267098786839,192.81645835434347,0.0747115005824383,70.09657690774418,210.6335,148.1503976495634,219730.3359065304,154548.7144268343,503.25063,337.554624319793,524406.6033799291,351554.52151032025,458.16767,224.34186234734423,474809.84769455454,231581.09766226128,2953.71083,1368.914027163083,3040073.252660129,1386832.27327674,949.05267,427.0570557553728,972389.5785520552,427850.0268676954,1560.83902,660.0748287774019,1589570.9159190485,653591.3989492069,0.37946,100000,0,957425,9987.742541205926,0,0.0,0,0.0,43788,456.1861047360735,0,0.0,41635,431.2121844356353,1239927,0,44564,0,0,0,0,0,77,0.8032547465053202,0,0.0,1,0.0104318798247444,0,0.0,0.0522,0.1375639066041216,0.307088122605364,0.01603,0.3457738748627881,0.6542261251372119,23.720914309829595,4.250377132454218,0.3242271746944644,0.2578480709321831,0.2115983704768751,0.2063263838964773,11.420375202201017,6.018637141052137,16.97005463034333,11574.029229529642,47.32915331516458,13.029484256032982,15.35338963963368,9.715516910544167,9.230762508953744,0.578001437814522,0.8169144981412639,0.6903178122690318,0.5571913929784824,0.1242740998838559,0.7631578947368421,0.9424778761061948,0.8530927835051546,0.7487437185929648,0.1242937853107344,0.5018599932363882,0.7259615384615384,0.6248704663212435,0.5014619883040936,0.1242690058479532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496050232934,0.004733092117932,0.0070296095675725,0.0094226590581402,0.0116097025394953,0.0138640065146579,0.0157675333543974,0.0180122258620865,0.0200063349988249,0.0219780219780219,0.0241790891860048,0.0263576389957626,0.0285185756127639,0.030745952177538,0.0330299062915579,0.0350080033045902,0.0368419963582188,0.039045418277152,0.0410405524689755,0.0432516231063759,0.0584346520406248,0.0719764258396204,0.084981562185719,0.0975028353005418,0.1094612241459202,0.1253736703672796,0.1366656423189818,0.1472586355372691,0.1569144394159337,0.1659308157229199,0.1779652808420418,0.1898667127893024,0.2001630434782608,0.2100590422042423,0.2186519944979367,0.2276397549926342,0.2362325955016065,0.2448697178344809,0.2527280564441117,0.2594428733355469,0.2651812968273055,0.270691288432526,0.2757588308384119,0.280495400536604,0.284712022819688,0.289176209826376,0.2929606366207052,0.2964083656474477,0.3006714361488803,0.3036797678712741,0.3011438568160409,0.2989451099588772,0.2966505155220012,0.2945067960884575,0.2935005193648909,0.2903319476708644,0.2873141990617151,0.2876550888794317,0.2888389589610036,0.289853009218066,0.290480808683651,0.2914330677682699,0.2932224237496612,0.293898048975601,0.2941808287187321,0.2955710955710955,0.2962017416957422,0.299446338640558,0.302517194427958,0.3070113314447592,0.3095891643792467,0.314225611359453,0.3195921431252346,0.3183299234674547,0.3239344262295082,0.330914198759218,0.3334345581536593,0.3398215733982157,0.3435346015991177,0.353875236294896,0.0,2.042746091966778,53.065600694150106,147.013793668934,222.9350513000888,fqhc1_100Compliance_baseline,52 -100000,95785,47287,451.2501957509005,5034,51.31283603904578,3926,40.3403455655896,1519,15.430390979798508,77.39816222968327,79.72759650907432,63.35848721039546,65.07968519937225,77.1931258597698,79.52713184160577,63.280925959969146,65.00659607445219,0.205036369913472,200.4646674685517,0.0775612504263136,73.08912492005959,211.70666,148.86152426089478,221022.76974474083,155412.1462242468,498.43913,334.91392274853865,519701.3937464112,348980.2920588178,450.63813,220.6665150948563,465906.60333037534,226906.4803233157,2777.53336,1310.5142929597475,2854981.9595970144,1323407.0083622143,912.02532,421.6998854060881,936044.5998851596,424142.49141941697,1478.07702,643.6977771452141,1502503.3773555355,637242.1235344086,0.37841,100000,0,962303,10046.489533851856,0,0.0,0,0.0,43353,451.9287988724748,0,0.0,40794,421.4856188338467,1239242,0,44460,0,0,0,0,0,94,0.9709244662525448,0,0.0,0,0.0,0,0.0,0.05034,0.1330303110382918,0.3017481128327374,0.01519,0.3526366251198466,0.6473633748801534,23.52418462933763,4.042047421655206,0.3008150789607743,0.2784004075394803,0.217269485481406,0.2035150280183393,11.44982150055302,6.295653151633255,16.48121936989069,11420.743242325696,45.08854258502241,13.236766043603753,13.380502855779488,9.58179335456184,8.889480331077348,0.5807437595517065,0.8005489478499542,0.6926333615580017,0.5662368112543963,0.130162703379224,0.737331081081081,0.9142212189616252,0.896969696969697,0.6650717703349283,0.1633663366336633,0.513129102844639,0.7230769230769231,0.6133960047003525,0.5341614906832298,0.1189279731993299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786656134167,0.0045605642938219,0.0067361928336647,0.0087537574132748,0.0108066893712194,0.0128849716042094,0.014958985071585,0.0170489327837407,0.0191665219301382,0.0211786372007366,0.0232765421221403,0.0254486870324573,0.0274086634808077,0.0293948126801152,0.0315270732813724,0.0337619416473018,0.0358454456111312,0.0378266279552053,0.0395834848846997,0.0414874673275781,0.0557822135500902,0.0693629527365525,0.0825007076881139,0.0948752443612973,0.1071518933963059,0.1222343203272831,0.1333672744243272,0.1435731539910399,0.1533606040863407,0.1623059106116496,0.1749526107185938,0.186681376207318,0.1975575571225241,0.2064407594328286,0.2158164274567554,0.2256151531244468,0.2342762211642453,0.2423571211729387,0.2492003720254973,0.255859486815439,0.2624095438466696,0.2683573891193829,0.2740956370478185,0.2799487277780439,0.2843515619311148,0.2892456174906441,0.292930808175511,0.2967711602729456,0.2984810061070282,0.3011943367871549,0.299837205860589,0.2972315724393762,0.2943394633535479,0.2918655457337736,0.2890438748463714,0.2867215041128084,0.2838976365529645,0.2838312973229325,0.2832265539803708,0.2831474266602622,0.2834965948316074,0.2849963540332276,0.2864507242142171,0.2868765004001067,0.2887389428006008,0.2907660048150353,0.2930174914795933,0.2979848239830824,0.3014372294372294,0.3057404651891299,0.3096375766318067,0.3148235294117647,0.3200964928558174,0.3236311672683514,0.3281264528126453,0.331446095777306,0.3316704459561602,0.330518697225573,0.3240360951599672,0.3309433962264151,0.0,2.517759639785462,51.128288667524416,144.90948821321768,200.2335676168272,fqhc1_100Compliance_baseline,53 -100000,95864,47300,449.4596511724943,5196,52.79354084953684,4141,42.4768421931069,1549,15.678461153300509,77.3584022892406,79.64247333589422,63.35300198276878,65.04241508468802,77.15836594001266,79.44887732022092,63.27728553479918,64.97252151547991,0.2000363492279433,193.59601567330745,0.0757164479696044,69.89356920810508,212.99014,149.81860646240256,222179.253943086,156282.232604943,505.15223,339.04961484240005,526198.4373696069,352929.97771259287,459.10751,225.26228475135005,475058.1344404573,231949.5721502299,2915.83169,1364.0874653570595,2993291.2355002924,1374630.376526181,973.76517,446.8213224391101,993568.7327881164,443913.88033961086,1512.10962,645.4276962169736,1532352.2490194442,633184.0483266138,0.379,100000,0,968137,10099.056997413,0,0.0,0,0.0,43947,457.69006091963615,0,0.0,41653,430.51614787615785,1226796,0,44028,0,0,0,0,0,92,0.949261453726112,0,0.0,1,0.0104314445464407,0,0.0,0.05196,0.1370976253298153,0.2981139337952271,0.01549,0.3576171154555514,0.6423828845444486,23.534115157321036,4.197784267709482,0.3182806085486597,0.2779521854624487,0.1951219512195122,0.2086452547693793,11.569890429760404,6.204327797836273,16.519086396028687,11517.020899520436,47.47067001101325,14.092687848089712,14.891431109039816,9.041345438335066,9.445205615548655,0.5935764308138131,0.8132059079061685,0.7101669195751138,0.6027227722772277,0.1145833333333333,0.7771381578947368,0.926829268292683,0.9074626865671642,0.7684729064039408,0.1559139784946236,0.5172649572649572,0.7283763277693475,0.6429298067141404,0.547107438016529,0.103244837758112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400368536686,0.0047319411091183,0.0072318974348571,0.009574673313771,0.0121061191299044,0.0143701849194475,0.0166571579933982,0.0186444999745015,0.0208692811124837,0.0226643085699097,0.0249163143509371,0.027004029074953,0.0288393398173919,0.0309732237457953,0.0331207040468265,0.0351460460698171,0.0371477634791244,0.0390941597139451,0.0411473911598537,0.0429594023763447,0.0579349027294147,0.0714972312193083,0.0851843706473132,0.0977968664678455,0.1097229537553987,0.1249405774289306,0.135871811447526,0.1468736707783921,0.1571666453183041,0.1662611081929958,0.1778153468438395,0.1894207366542268,0.2000804496483045,0.2097818006908916,0.2182847718526663,0.2269895198149644,0.2347305255643794,0.2427220491830929,0.2497759526267427,0.2567274976801732,0.2628698378903764,0.26912999742672,0.2752202330207445,0.2798714612885046,0.2846465162066576,0.2886611920791102,0.2923475712836695,0.2961883179711768,0.2990951047500518,0.3021268163804491,0.2998100421679442,0.2967285539300018,0.2944928679048678,0.2912736360090716,0.288063581668276,0.285436476947341,0.2826007818806286,0.2836514005349436,0.2848193100151926,0.2852028639618138,0.2854820020184652,0.2870691694928622,0.2878373011725853,0.2889522833136464,0.2904153584353953,0.2914572864321608,0.2933616418966737,0.2974726989079563,0.3013865663322185,0.3046976689149213,0.3090826727066817,0.3157202252513025,0.3188043274341817,0.321382256465024,0.3241763428679317,0.3279197516121327,0.3297757153905646,0.3259858442871587,0.3316858868753432,0.3380174705658944,0.0,2.811233341516401,52.288001876528845,155.78402727126527,212.38714244487764,fqhc1_100Compliance_baseline,54 -100000,95729,47715,454.6375706421252,5195,52.962007333201015,4102,42.22335969246519,1542,15.76324833644977,77.38965647392791,79.75561406590693,63.34469261111818,65.09355748104,77.1947284426922,79.56348143409554,63.271173938757904,65.02308982802549,0.1949280312357189,192.13263181138984,0.0735186723602794,70.46765301450364,212.7114,149.53625758999578,222201.40187404028,156207.667049688,506.67626,339.8723783176191,528661.7848300933,354415.859684755,458.66001,224.82934450296457,474691.5668188323,231452.4019168391,2859.50227,1330.16501909649,2949539.700613189,1351970.2588520611,953.85763,430.9014544967995,981525.190903488,435336.6613899479,1497.62762,635.6025775056022,1533594.8772054447,638832.1007326094,0.38244,100000,0,966870,10100.063721547283,0,0.0,0,0.0,44078,459.7770790460571,0,0.0,41548,429.57724409531073,1230803,0,44137,0,0,0,0,0,96,1.0028309080842797,0,0.0,1,0.0104461552925445,0,0.0,0.05195,0.1358383014329045,0.2968238691049085,0.01542,0.3532110091743119,0.6467889908256881,23.47599080767893,4.081299891816042,0.3310580204778157,0.2688932228181375,0.1999024865919063,0.2001462701121404,11.413191404213734,6.1363214156818,16.34980600251612,11599.752841054897,46.744679594775214,13.390753604452726,15.32363228748172,9.096195947482736,8.93409775535804,0.583130180399805,0.8023572076155938,0.6973490427098674,0.5780487804878048,0.1047503045066991,0.763681592039801,0.9311111111111112,0.8683544303797468,0.7377049180327869,0.1348314606741573,0.5079419889502762,0.7136294027565084,0.6272066458982347,0.5321821036106751,0.0964230171073094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020156389271533,0.0043287410155814,0.0067790418007083,0.0090314322287014,0.0110470261527663,0.0130137265284509,0.0154056341187385,0.0178336276681536,0.020085452612642,0.0219974819076085,0.0241702371922343,0.0260658884885069,0.0283114880493446,0.0304175462081037,0.0325827978505048,0.0350347764078502,0.0369465269436275,0.0389675063285886,0.0409183503783154,0.0429577611535977,0.0574847048505982,0.0713590454759537,0.084328248599425,0.0973636593166133,0.1098101265822784,0.1253291874226607,0.135430481141584,0.1463736497632097,0.1565653868745661,0.1662698412698412,0.1791751911273823,0.190346379351377,0.2014286801561327,0.2115294194832318,0.2208420890497618,0.2294575531761762,0.2383299507103508,0.2464520478678577,0.2539113872386739,0.2610162899240413,0.2671860731253395,0.2729928371951718,0.2782136105860113,0.2823433685923515,0.2867297428432799,0.290999495390826,0.2940963283261266,0.2973433112683751,0.3016119233205362,0.3049543556439608,0.3020934107277222,0.2989604361499059,0.2965237185251798,0.2944872811126324,0.2925829461035309,0.2897449975597853,0.2870489995273357,0.2870616647357342,0.2874502160833828,0.288963684676705,0.2905208430043636,0.2915090085674515,0.2935741721166822,0.2925483592209346,0.2952310659270017,0.2966360066143034,0.2976244216228416,0.3022175092786077,0.3065005757353711,0.3092620422368108,0.3129937346771996,0.3144146535704805,0.3170411164653607,0.3203977867504112,0.3225569434239529,0.3219217825229198,0.3209378733572282,0.3232682060390763,0.3256375838926174,0.3293278257604206,0.0,2.3556116902992126,52.34691397480788,150.02835106863054,212.037435021466,fqhc1_100Compliance_baseline,55 -100000,95771,47139,448.52826012049576,5105,52.3749360453582,3996,41.24421797830241,1498,15.338672458259808,77.34687979821054,79.70772290967903,63.33382307926016,65.0819069723786,77.15398613274927,79.51420842954418,63.262243973888616,65.01179019443613,0.1928936654612698,193.5144801348514,0.0715791053715406,70.11677794247362,211.71744,148.89685374547943,221066.3353207129,155471.75423194855,501.63694,336.12901429452813,523324.7956061856,350508.4673800296,450.01894,219.9350519005507,466668.3025132869,227158.3216411836,2821.07994,1302.5860576851464,2915015.672802832,1329469.0226531492,941.04777,421.4884864320509,972527.048897892,430025.3692997364,1464.42228,618.6462947411393,1502045.191133015,624348.054594317,0.37811,100000,0,962352,10048.469787305134,0,0.0,0,0.0,43697,455.7747125956709,0,0.0,40739,422.1528437627256,1239331,0,44437,0,0,0,0,0,87,0.9084169529398252,0,0.0,0,0.0,0,0.0,0.05105,0.1350136203750231,0.2934378060724779,0.01498,0.3485274807728381,0.6514725192271619,23.85193020914596,4.101606368417673,0.3128128128128128,0.2722722722722723,0.2007007007007007,0.2142142142142142,11.503510610632675,6.216752034714124,16.066376702912347,11461.197245302046,45.50091328040222,13.19294224883354,14.020203348917944,8.887619762082581,9.40014792056816,0.5890890890890891,0.8097426470588235,0.7056,0.5935162094763092,0.1343457943925233,0.7558441558441559,0.9268867924528302,0.8685714285714285,0.751269035532995,0.1521739130434782,0.5212953185498064,0.7349397590361446,0.6422222222222222,0.5421487603305785,0.1294642857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381378946941,0.0043605240741491,0.0064365482233502,0.0083234244946492,0.0107023683567998,0.0129121606484592,0.0150576001631155,0.0172213148223764,0.0195252601664247,0.0219007249047794,0.0240319058408603,0.026203115213619,0.0286398881141893,0.0307700231779551,0.0326232790472062,0.0346406715183592,0.0368027006596319,0.0386319076319802,0.0407484407484407,0.0428815394868377,0.0569669136833315,0.0709728033472803,0.0836880622365744,0.0959873039895741,0.1080104121657937,0.1228880271346907,0.1339452263862981,0.1442300536862807,0.1542760842204066,0.1645568264576104,0.1764883033073407,0.1882961826452442,0.1981970240034756,0.2071996331397126,0.2166597104760231,0.2266311201575256,0.2356003433399846,0.2440041358538065,0.251287577992059,0.2570931324280382,0.2630763180419645,0.2685416910302888,0.2743984668890624,0.2788998298953017,0.2843346598078229,0.288757163588066,0.2916322908072701,0.2950586381713531,0.2985671055013837,0.3024548280040036,0.2992433914340621,0.2961492492203706,0.2945705935251798,0.2920129636298163,0.2901047143682332,0.2875398873230835,0.2845756853585013,0.2846617329229157,0.2849769177043763,0.2861183754069488,0.2856235997012696,0.2856551642591096,0.2873340015033826,0.2883011462468222,0.2901909972166235,0.2915874215147331,0.2919774525992142,0.2948637250582237,0.2998037979118492,0.3042444418024016,0.3085779294653015,0.3102809672469442,0.3115527325325451,0.3116282595512432,0.315198217435707,0.316727230101981,0.3191392635247765,0.3180161943319838,0.3219026548672566,0.3281371784879189,0.0,1.898500145677928,50.51307101817628,145.8234591840488,210.55249612579595,fqhc1_100Compliance_baseline,56 -100000,95748,47566,452.0094414504741,5125,52.36662906797009,4059,41.73455320215566,1532,15.53035050340477,77.36211040614715,79.72364441617292,63.32787542470121,65.07545652557108,77.16251357276728,79.53062749376765,63.25183377187128,65.0051471546939,0.1995968333798714,193.01692240526336,0.0760416528299359,70.30937087718314,212.54794,149.4910328054303,221986.58979822035,156129.44333608047,501.73973,336.5687954292889,523356.1223210928,350850.5232791169,458.60039,224.32977471712184,475215.21076158254,231409.32954340675,2853.5185,1329.7249556397817,2933616.7752851234,1342189.928081819,916.55099,416.0870229968335,936439.7585328151,413751.0684263205,1490.0835,643.886920666375,1511445.857876927,632030.3002844088,0.38084,100000,0,966127,10090.299536282742,0,0.0,0,0.0,43561,454.26536324518526,0,0.0,41699,431.8105861219033,1230422,0,44227,0,0,0,0,0,74,0.7728620963362158,0,0.0,0,0.0,0,0.0,0.05125,0.1345709484297867,0.2989268292682926,0.01532,0.3499442171811082,0.6500557828188918,23.584300586962826,4.156319787962326,0.3227395910322739,0.2682926829268293,0.2062084257206208,0.2027593003202759,11.327610345913374,5.982555472502473,16.467102650576834,11530.515937457176,46.49865418381546,13.22541700435379,14.993810603627216,9.30533663290116,8.974089942933304,0.5821630943582163,0.8025711662075299,0.6969465648854962,0.5770609318996416,0.1130012150668286,0.7398042414355628,0.917391304347826,0.8662952646239555,0.6933962264150944,0.1384615384615384,0.5139428168019767,0.7186009538950715,0.6330178759200841,0.5376,0.1050955414012738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020870692886741,0.0042793112539801,0.0066389199066084,0.0090634748061818,0.0113931132699252,0.0134028598199372,0.015683315318255,0.0183063791554357,0.0204496886534902,0.0225897291485331,0.0248897548969336,0.0270461829238228,0.0292695473251028,0.0313994229183841,0.0337602823849972,0.0359384208186433,0.0379736348856234,0.0399057866503418,0.0420898346136654,0.0438731719511687,0.0582254697286012,0.0722199554314051,0.0855662643021195,0.098414968919928,0.1107583253341209,0.125994246065324,0.1367431596592295,0.1472708109316611,0.1565428299729674,0.1658212780559994,0.1773582060616504,0.1890016883847785,0.1999956482478758,0.2092745949612191,0.2182368478978648,0.2280624002836376,0.2373290156886829,0.2450609783538094,0.2529411097371436,0.2595476667620956,0.2653996620292136,0.2708187134502924,0.275871453250349,0.2794759301879555,0.2836397192743874,0.2866789063173848,0.2906071678846731,0.295544447412269,0.2996091829075756,0.3024120695794374,0.3000161559588561,0.2979217957005515,0.2953688593776377,0.2920479145619858,0.290482828162999,0.2868234826600639,0.2835184278289442,0.2834675307672165,0.2843587389041934,0.2844079052506348,0.2837208435799985,0.284234278426371,0.2864782753454303,0.2874147771436185,0.289370031749063,0.2903568009521591,0.2910673411139684,0.2950043602840413,0.3006109414051652,0.3029494822717289,0.3056091974671038,0.3079013377926421,0.3119682007328737,0.3127242822966507,0.3155711256568636,0.3164542158811835,0.3151487826871055,0.3187919463087248,0.3228831725616291,0.3320625238276782,0.0,2.5124567673156384,53.15047253751474,146.34325122365135,209.376745857065,fqhc1_100Compliance_baseline,57 -100000,95767,47636,453.02661668424406,5118,52.27270354088569,4063,41.91422932743012,1553,15.924065701128782,77.32840490063373,79.68930005057597,63.31625382636724,65.06474678218076,77.13714053093487,79.4993592206475,63.24435080012929,64.99541428732802,0.1912643696988567,189.94082992846015,0.0719030262379476,69.33249485274473,212.91776,149.78175463263133,222328.94420833897,156402.26240002437,503.86443,337.9466702638766,525632.295049443,352380.79950700817,459.95329,225.15008278997752,476822.2143327033,232464.10068086625,2843.96307,1321.8704670467723,2937599.444485052,1348228.7813618188,916.78858,416.4416179073712,945812.639009262,423362.0242055982,1504.47366,635.3741951613514,1544478.2440715488,639930.3688929459,0.37961,100000,0,967808,10105.861100379045,0,0.0,0,0.0,43908,457.965687554168,0,0.0,41625,431.2550252174549,1226969,0,44068,0,0,0,0,0,82,0.8562448442574164,0,0.0,0,0.0,0,0.0,0.05118,0.1348225810700455,0.3034388432981633,0.01553,0.3466015771686068,0.6533984228313932,23.68140998749917,4.118948941338743,0.3266059561900074,0.2665518090081221,0.2087127738124538,0.1981294609894167,11.08933478441532,5.936254717320818,16.501680647428323,11545.85890328933,46.31951117023021,13.168740685538634,15.015278864606303,9.365715588451508,8.769776031633754,0.5897120354417917,0.8116343490304709,0.7015825169555389,0.589622641509434,0.1068322981366459,0.7561779242174629,0.9274725274725276,0.8675675675675676,0.7058823529411765,0.1675675675675675,0.5187785187785188,0.7277070063694268,0.6374085684430512,0.5527950310559007,0.0887096774193548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584264766981,0.0044929917442544,0.0068736547130731,0.0093396207239984,0.0116477792923846,0.0136183996088657,0.0159997552618697,0.0185200310368767,0.0206403729374961,0.0227035437181403,0.024837271282866,0.0271063925909193,0.0292266556972439,0.0314250988793671,0.0333006552809452,0.0352059537960618,0.0372850828614903,0.0394599023095191,0.041586565938919,0.0435027130612287,0.0574992172007097,0.0711073460508701,0.0843101893597835,0.0967636826117575,0.1089698336266028,0.1238122417055099,0.1349176051409302,0.1458931954111061,0.1558548359535201,0.1650815435917781,0.1774025050887981,0.1893973818024451,0.1999042687437448,0.2091225230742312,0.217810993462038,0.2268322128324122,0.2359354946710563,0.2443614099851438,0.2517284048724556,0.2577998785476127,0.2651030397000798,0.2714578094848254,0.2764985142126511,0.2815667926339152,0.2858983083803227,0.2903452441113754,0.2937940196004712,0.2979677074313656,0.3022020037067278,0.3047792468265907,0.3022582513028373,0.2996823738089018,0.2968569577829724,0.2940862464472754,0.2920747996438112,0.2884285889120059,0.2841652704454209,0.2841164411644116,0.2840457637811386,0.2848156530106741,0.2849219391947412,0.2860938883968113,0.2874388594026433,0.2887731481481481,0.2909878226751836,0.2922486847902143,0.2933227570186124,0.2969802845021213,0.3014289190974515,0.3057643124139287,0.309228619088409,0.3112614029569047,0.3163676990875799,0.3172051089406461,0.3188244047619047,0.3214702450408401,0.3252449133383572,0.3298387096774193,0.336533187054306,0.3399378399378399,0.0,1.9441010868650177,53.20685438221489,141.96161218634805,215.4609656838738,fqhc1_100Compliance_baseline,58 -100000,95732,47423,452.13721639577153,5034,51.38302761876906,3981,41.01032047800109,1519,15.491162829565871,77.31464774318667,79.68041282911163,63.30648041847581,65.05598148912243,77.12087167750823,79.49037051817514,63.23293069564501,64.98624633196958,0.1937760656784348,190.0423109364908,0.0735497228307977,69.73515715284861,212.55322,149.44073935606102,222029.43634312457,156103.22499901915,501.59605,336.4460873727771,523408.0035933648,350895.194263963,452.48812,221.31102573483724,469240.99569631886,228501.2288021132,2852.86419,1324.3043393863009,2940526.281703088,1343818.9627149757,932.7941,421.294194300212,958322.7969748882,424018.79653638456,1476.9852,632.9294161708025,1507675.385451051,631025.1284622817,0.38051,100000,0,966151,10092.247106505662,0,0.0,0,0.0,43569,454.5397568211257,0,0.0,41017,425.07207621276063,1231236,0,44152,0,0,0,0,0,84,0.8670037187147454,0,0.0,1,0.0104458279363222,0,0.0,0.05034,0.1322961288796615,0.3017481128327374,0.01519,0.3571968265961466,0.6428031734038534,23.59310749613668,4.125875131325823,0.3062044712383823,0.2685254961065059,0.2132629992464205,0.2120070334086913,11.305687943911652,6.128916505039914,16.26501610278577,11544.736508789149,45.6612203999709,13.14465820956763,13.854119651746757,9.468002370187913,9.194440168468605,0.583019341873901,0.8194574368568756,0.7054963084495488,0.5653710247349824,0.1244075829383886,0.7523645743766122,0.9256756756756755,0.8816568047337278,0.7035175879396985,0.1428571428571428,0.5131298793470547,0.744,0.637911464245176,0.5230769230769231,0.1193353474320241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0044712108769048,0.0066180799447816,0.0089625038105883,0.0110788951625209,0.0130812176535311,0.0154354679099376,0.0174082620326315,0.0194733506429783,0.0216412104336431,0.0239201090912819,0.0258340093027076,0.027793492907619,0.029850592478104,0.0319986787642316,0.0340845652848134,0.0362642255796373,0.0385078343882951,0.0403339849436426,0.0423811805888358,0.0564337621115937,0.0708932571332872,0.0840650867088408,0.0972983205207752,0.1096793242715989,0.1249682633716993,0.136041352665209,0.1466022105330408,0.1560392102365655,0.1654951116643951,0.1768740496295577,0.1883688926934454,0.1995641989431824,0.2085415570752235,0.2177542064524665,0.2258752206788581,0.2353112242044628,0.2435715252402219,0.2516434274276096,0.2585468367803948,0.2645558466853711,0.2709463496936109,0.2764820213799805,0.2807933194154488,0.2849711966165139,0.2905428726394162,0.294514208525115,0.2972124416875341,0.3012682119633369,0.304486377582597,0.3031838402300859,0.3007030456155768,0.2987288433176487,0.2956435272585782,0.2940652951036089,0.2911189238764903,0.287384839051216,0.2882594941895723,0.2883569467887406,0.2886614453542185,0.2886443875740198,0.2893063185460846,0.2909253781092454,0.2923295707048262,0.2934920293492029,0.2947662680540456,0.2955261142160061,0.2996129596104626,0.3025674923462287,0.3065037445802128,0.3117529880478087,0.3162203559921829,0.3178557946394866,0.3211950737418276,0.3226563967687394,0.3291617473435655,0.3288274605103281,0.3334010564811052,0.3379895918926321,0.3422767343809889,0.0,2.268717450960719,50.54845330207476,149.8863762335164,205.1871821131012,fqhc1_100Compliance_baseline,59 -100000,95804,47806,454.344286251096,5159,52.42996117072356,4108,42.1903052064632,1539,15.57346248590873,77.3504688262772,79.6825522933852,63.33176974345843,65.05990322382229,77.14872856670782,79.48785878702397,63.25490366136785,64.98880143110976,0.2017402595693767,194.69350636123292,0.0768660820905822,71.10179271252548,209.17908,147.35266511569813,218340.65383491296,153806.38085643412,501.91106,336.7655075048881,523234.2282159409,350855.6714801972,466.81391,229.3357832856207,483358.9202956035,236310.7552304224,2882.13323,1342.0725308110586,2959469.020082669,1351957.1216348566,955.025,436.5961565303664,978099.8079412133,436964.9456498336,1498.0752,643.0504657613114,1517638.2823264163,632465.9837498694,0.38242,100000,0,950814,9924.575174314225,0,0.0,0,0.0,43623,454.6469875996827,0,0.0,42222,436.7667320779926,1242861,0,44621,0,0,0,0,0,90,0.9394179783725104,0,0.0,3,0.031313932612417,0,0.0,0.05159,0.1349040322158883,0.2983136266718356,0.01539,0.3537919525310588,0.6462080474689412,23.30244771384576,4.131775895977029,0.3230282375851996,0.2675267770204479,0.2044790652385589,0.2049659201557935,11.305571529986468,6.0916578382428535,16.45413924892082,11650.908392836156,46.8133402123105,13.273008211156352,15.048137830712044,9.279811922992806,9.212382247449296,0.5861733203505355,0.7816196542311192,0.7309721175584024,0.5797619047619048,0.1092636579572446,0.7573149741824441,0.9144893111638956,0.903846153846154,0.7539267015706806,0.1182795698924731,0.5186693822131704,0.6991150442477876,0.6656282450674974,0.5285053929121726,0.1067073170731707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730899365844,0.0049177169625746,0.0071856287425149,0.0096217347571197,0.0116667005716378,0.0137805300360554,0.0158686451481311,0.0183808512376439,0.0204899595108584,0.0226644555002763,0.02488643704562,0.0271294347178723,0.0293497598749498,0.0314630579414612,0.0337867802518538,0.0356784906128269,0.0377835056882291,0.0396431905404003,0.0416121053397351,0.0437661364204214,0.0582736965094201,0.0726249973860856,0.0860807780176479,0.0997320724980299,0.1116344249167615,0.1278576939744009,0.1385153764581124,0.1486462045853502,0.1587191423934398,0.1682939114964579,0.1800551035343751,0.1913483474067747,0.2012320328542094,0.2104785640891104,0.2192175673296954,0.2288234186121236,0.2379767179704677,0.2457688152682751,0.2539541960463716,0.2606798451565614,0.2665100888559792,0.2726645621419385,0.2785169416356218,0.2829309766728936,0.2864847137703604,0.2903742788105922,0.293770032051282,0.2975897938656243,0.3024222797927461,0.3059457176048157,0.3035081335327969,0.3003622639430295,0.2986075878008907,0.2964424021732847,0.2938477302089366,0.2906982081924318,0.287450353656028,0.2875775174721921,0.2878588853443423,0.2883710149062121,0.2880786042515037,0.2907748350891011,0.2922110447885795,0.2921606203761476,0.2926975450709628,0.2946491159747644,0.2971519166525111,0.3025950098366798,0.307088255733148,0.3103801457553673,0.3156779661016949,0.3200504016380532,0.3227111470716375,0.3253075307530753,0.3275109170305676,0.3334885887284583,0.3375,0.3395663417545255,0.3382590005373455,0.3383742911153119,0.0,2.7170541742098093,49.76643751083091,154.29954733192085,216.7853873094376,fqhc1_100Compliance_baseline,60 -100000,95709,47199,449.8323041720215,5119,52.04317253340856,4020,41.34407422499452,1556,15.818784022401235,77.30949638025908,79.66983221208088,63.31695901961641,65.05946595387452,77.11480807524971,79.48122490176263,63.242496647497696,64.99056965945508,0.1946883050093646,188.60731031824685,0.0744623721187167,68.89629441944578,211.92094,149.0786453685316,221422.1651046401,155762.41039874163,505.26778,338.6439837853438,527286.7650900125,353192.58772460674,455.94734,223.4299655978625,472641.56975833,230515.42821600195,2842.42677,1329.045735871798,2922879.781420765,1341648.095656415,932.71211,427.0837545749868,956303.0436009152,428005.4379159597,1518.42354,649.6988442212456,1544197.348211767,641438.0519238357,0.37821,100000,0,963277,10064.643868392732,0,0.0,0,0.0,43978,458.8074266787867,0,0.0,41294,427.6400338526157,1230717,0,44215,0,0,0,0,0,91,0.950798775454764,0,0.0,1,0.0104483381918105,0,0.0,0.05119,0.1353480870415906,0.3039656182848212,0.01556,0.3513972809667673,0.6486027190332326,23.589461243521782,4.178113432908514,0.3141791044776119,0.2666666666666666,0.2072139303482587,0.2119402985074626,11.209762059689591,5.960242665015425,16.678992861793276,11433.803280876926,46.140039161844456,13.05776353072403,14.38512414326533,9.356826475061492,9.340325012793608,0.5778606965174129,0.7798507462686567,0.7070467141726049,0.602641056422569,0.107981220657277,0.743073047858942,0.9058823529411764,0.8492063492063492,0.7355769230769231,0.1444444444444444,0.5083068221986567,0.6970633693972179,0.6463276836158192,0.5584,0.0982142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267761112405,0.004287973400373,0.0064929794659524,0.0090497277971885,0.0112133380775682,0.013354097326127,0.0153901034500331,0.0174752722855655,0.0198990229344671,0.0218296814074157,0.0238112321774515,0.0260080293244894,0.0283293401474565,0.0304834091985746,0.0326103771541722,0.0346541302887844,0.0365456069717136,0.0385185799773908,0.0403791587415422,0.0424184341014208,0.0567152956902223,0.0702652347756913,0.0830544920543347,0.0962341336193751,0.1084090861156222,0.1235668655074671,0.1347772106497448,0.1456936016182263,0.1553582684315673,0.1641376499983914,0.1756054990518876,0.1861588099001754,0.1967482506067102,0.2052749658002736,0.214428063376017,0.2239773860991021,0.2327927082635212,0.2410782679223178,0.25,0.256834045869772,0.2635070212199442,0.2687785875554204,0.2739949808229556,0.2780302939448089,0.2829613248927716,0.2870089516904638,0.2910719423560465,0.2947965845030095,0.2978483619829786,0.3011198563203212,0.2994597653145082,0.2964094518530751,0.2940604523356584,0.2910527532212399,0.288261515601783,0.2852788923944007,0.2817367878931939,0.2819919219781302,0.282616496642231,0.2831550181292085,0.2835546896952213,0.2855560828982756,0.2867160679896173,0.2883752093802345,0.290571572847284,0.2923120906539141,0.2941092690708141,0.2975817566720962,0.3029974846282839,0.3070013001851779,0.3109182935647144,0.3149212038159489,0.3190145688738823,0.3243795399515738,0.3299335641433517,0.3323134855260061,0.3367440439828955,0.3491511556555532,0.349480021893815,0.3555386372287781,0.0,2.5152169734288385,51.50133848154088,149.61277558861875,206.9869125020034,fqhc1_100Compliance_baseline,61 -100000,95741,47750,455.09238466278816,5203,53.20604547685944,4083,42.12406388067808,1573,16.053728287776398,77.40440741590693,79.75989298359939,63.3594678928421,65.09859603766633,77.20744165453088,79.56627376015109,63.28518698136314,65.02794903991708,0.1969657613760489,193.6192234482945,0.0742809114789579,70.64699774925032,211.67344,148.89358117715804,221089.64811313857,155517.05244060332,507.06312,339.7222513039892,529103.5188686143,354318.5587198684,459.52584,225.04137156020997,476632.76965981134,232501.1561516144,2913.20756,1344.4176164576038,3008481.4656207897,1369904.5304076662,967.76397,438.402701661864,994881.7121191547,441972.0199933828,1543.8699,656.1847307354012,1578014.3721080832,656204.493007879,0.38079,100000,0,962152,10049.529459688118,0,0.0,0,0.0,44094,460.0119071244295,0,0.0,41544,430.5783311225076,1234789,0,44288,0,0,0,0,0,88,0.9191464471856362,0,0.0,0,0.0,0,0.0,0.05203,0.1366369915176344,0.3023255813953488,0.01573,0.3412322274881517,0.6587677725118484,23.89259421744714,4.179924061542758,0.304677932892481,0.2578986039676708,0.2167523879500367,0.2206710751898114,10.95072696643284,5.65772415471328,16.732191510904805,11560.78810136518,46.41644140393822,12.818687275844002,13.980432051965884,9.731139919320276,9.886182156808058,0.5655155522899828,0.7977207977207977,0.6872990353697749,0.5751412429378531,0.1165371809100998,0.7469458987783595,0.937799043062201,0.868421052631579,0.7297297297297297,0.1592039800995024,0.494722505958461,0.705511811023622,0.6186252771618626,0.5342857142857143,0.1042857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793372280215,0.0045806941981251,0.0066447541948181,0.0087239120499669,0.0108791800961841,0.0132532573289902,0.0152764331210191,0.017632113302654,0.0197502860879516,0.0219698132514709,0.0239312910598436,0.0262128847515728,0.0285593856339505,0.030456591374924,0.0325020378261811,0.0346089437449606,0.036648889349143,0.0385680646466322,0.0408214166943797,0.0425476512863243,0.0571106401194416,0.0711706903588359,0.0844941887299123,0.0976007233577256,0.1101074090080214,0.1260322931977033,0.1370252493104179,0.1485542733040923,0.1581483301638853,0.1667149245568317,0.1785237356767468,0.1902721419682952,0.2005938526462335,0.2094996501049685,0.2187152773957909,0.2275208432521009,0.2358788419702125,0.2429144790835197,0.2506690252642082,0.2584823829631409,0.2650470183221275,0.2702828867519372,0.2758946275139269,0.2805001851210453,0.2853060829135994,0.2900630197904254,0.294448120450942,0.2976847446875991,0.3017321493107543,0.3048055942585241,0.302764593891615,0.2998355488556941,0.2976090250883987,0.2946483818514095,0.2915656237061572,0.2882249828519168,0.2853134064825324,0.2863136928376679,0.287359054476294,0.2878814762242725,0.2893230671712746,0.2899255641762829,0.2902707998915966,0.2914453359411464,0.2922727815597755,0.2936771184244623,0.2958152143220195,0.2993296960249415,0.302569280044562,0.3054757312128489,0.3110850545684134,0.3153376171916148,0.3190680869619385,0.3247837532907108,0.329598073717355,0.3328293987672985,0.3322765700483092,0.3336655371736097,0.338343809784094,0.335408560311284,0.0,1.9880254127013124,50.01268868803813,154.37471431855263,213.3946861961221,fqhc1_100Compliance_baseline,62 -100000,95753,47653,453.6045868014579,5245,53.61711904587846,4149,42.78717115912817,1646,16.876755819661003,77.33232137485312,79.69861304662095,63.31916690730778,65.0715148430617,77.12894203351273,79.4956648727908,63.243515857458505,64.99778623622433,0.2033793413403941,202.9481738301513,0.0756510498492772,73.7286068373777,209.72622,147.55989625878573,219028.35420300148,154104.72388205669,500.25505,335.83921634322286,521894.26963123865,350185.9851317691,460.52078,225.7104826165106,477198.5942999175,232820.1342637475,2928.76259,1357.5614805548594,3025487.7236222364,1384598.02883968,980.1943,441.591824398932,1011827.0759140706,449335.586769012,1607.40122,673.7684258744956,1650149.5514500851,680377.5737696282,0.38066,100000,0,953301,9955.834281954612,0,0.0,0,0.0,43556,454.2938602445876,0,0.0,41696,431.735820287615,1244894,0,44605,0,0,0,0,0,86,0.8981441834720583,0,0.0,0,0.0,0,0.0,0.05245,0.1377870015236694,0.3138226882745472,0.01646,0.3455210237659963,0.6544789762340036,23.84957996924752,4.078153158550859,0.3106772716317185,0.2692214991564232,0.2034225114485418,0.2166787177633164,11.088478266369496,5.984633506728213,17.463716299237248,11591.112382623178,47.36879812530812,13.737224289684695,14.523188733793493,9.216201738804216,9.892183363025715,0.5712219812002892,0.8119964189794091,0.6943366951124903,0.5509478672985783,0.114571746384872,0.7428330522765598,0.908315565031983,0.863905325443787,0.7252747252747253,0.1573604060913705,0.5025312183597705,0.7422839506172839,0.6340694006309149,0.5030211480362538,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023409947707649,0.0046354055726298,0.0070871578263341,0.0092893731197658,0.0116077968584683,0.0140789111765365,0.0164089907807783,0.0186423546947901,0.020684014109708,0.0227784602784602,0.0248088081520513,0.0271033314511575,0.0289568937150378,0.031104199066874,0.0330877801163798,0.0352650563806807,0.0373380825662424,0.0394132110510535,0.0413605329065646,0.043159023922847,0.0577894692889055,0.0720862105042896,0.0851809124278972,0.0980874575487072,0.1108428399721654,0.126442373795598,0.1370065039097728,0.1475722161909019,0.1578475240546341,0.1672259807653132,0.1791698974756612,0.1907147339493216,0.2016010615734345,0.2112417300016403,0.2196439573981163,0.2281494275781128,0.23639467166477,0.2450612006120061,0.2519032869283048,0.2592181201905459,0.2648246497043748,0.2704198004514989,0.2758567659967113,0.280947874111967,0.2861166757724762,0.2897547395262321,0.2932569656345355,0.2978093471244504,0.3017051776334515,0.304267601549938,0.3023090060650072,0.2998158278127491,0.2984459601997046,0.2954876483567195,0.293609953583557,0.290755429217673,0.2876645153125791,0.2872213212770488,0.2876917576149694,0.2886438141391106,0.2890623537560136,0.2894544592967007,0.2902274201309706,0.2896129709449047,0.2924152176001537,0.2919244969060371,0.2916832132523969,0.2957397414983059,0.2990072706935123,0.3032273412100547,0.3075072621641249,0.3088696391560823,0.3123698984419353,0.3122622851057355,0.3165454206304794,0.3225995316159251,0.3271716260895702,0.3273052464228935,0.3317139001349528,0.3307984790874524,0.0,2.118838308584538,51.62008519969391,153.64086920103853,220.24734372052671,fqhc1_100Compliance_baseline,63 -100000,95729,47695,454.5853398656624,5103,52.13676106508999,4103,42.31737509009809,1589,16.212433014029187,77.41699606751023,79.77008078009256,63.36600846061516,65.10037839735824,77.21021088277291,79.56657661945982,63.28679217443295,65.02499941113497,0.2067851847373134,203.50416063273255,0.0792162861822163,75.37898622327077,210.88276,148.4097358697501,220291.40594804083,155031.11478209333,508.55277,341.0828481538651,530681.9772482738,355741.0505045247,455.8946,223.19608746768404,472879.6811833405,230629.8704494236,2895.73558,1352.877639314671,2985691.6503880746,1374092.4817776114,947.65385,434.0081109430822,971652.0385672052,435164.5286423474,1546.83432,671.0254583239375,1579203.0419204212,670300.6870979464,0.38229,100000,0,958558,10013.245724910948,0,0.0,0,0.0,44154,460.6545560906308,0,0.0,41381,428.9400286224655,1237021,0,44375,0,0,0,0,0,90,0.940153976329012,0,0.0,0,0.0,0,0.0,0.05103,0.1334850506160244,0.3113854595336077,0.01589,0.3496451251400821,0.6503548748599178,23.49229555840049,4.188536260816894,0.3114794053131854,0.26322203265903,0.2135023153789909,0.2117962466487935,11.336478030433115,6.053519035222925,17.08900365771574,11525.751142675532,46.75193813710073,13.090025813256874,14.390766361111124,9.58699154683782,9.684154415894907,0.5756763343894711,0.8,0.7167449139280125,0.5662100456621004,0.098964326812428,0.7429752066115702,0.9177777777777778,0.9050445103857568,0.7401960784313726,0.136986301369863,0.5057034220532319,0.7158730158730159,0.6493092454835282,0.5133928571428571,0.0861538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0044778085078361,0.0065826841934436,0.0087226718386661,0.0109097933951521,0.0132738858690119,0.0155542871121621,0.0176668707899571,0.0197845770229116,0.0222310887402042,0.0242962689702521,0.0262736565540457,0.0282186767548007,0.0302571549211645,0.032548254980244,0.0347525059419241,0.0367958420905504,0.0386346664454032,0.0408036001953916,0.0427123376149847,0.0570417240947249,0.0708456274719065,0.084066850614266,0.0967931930289548,0.1096121594397038,0.1249153833135894,0.1361345964123182,0.1472732885534537,0.1570489876595972,0.1657532630495168,0.1773156574087037,0.1891251420223989,0.2000086965029187,0.2088750027311062,0.217011504356712,0.2275503429962381,0.2351892102769882,0.2435658252601766,0.2509807033854108,0.2575292932991578,0.2636141904310534,0.2694599584044119,0.2752490928646566,0.2800828137528273,0.2853140237246197,0.2883027042995532,0.2928447381901323,0.2964736668275704,0.3001008090573061,0.3034251086813331,0.3013345159859694,0.2984375858092152,0.2960941785397825,0.2935468499559586,0.2912814424575202,0.2889829731299483,0.2849007792535571,0.2848693776855588,0.2858453384071758,0.2859626095285395,0.2871526679198228,0.2883223845475046,0.288484747596654,0.2902639569158485,0.292560169835174,0.2942088934850052,0.295670091453088,0.2988495024875622,0.3039117003922113,0.308054454862882,0.3120793323162523,0.3181484587963933,0.3237758331781791,0.3285617418820161,0.3313609467455621,0.3375884878728095,0.3404096277470474,0.3424116834418788,0.3352059925093633,0.33271719038817,0.0,2.0727415514651453,52.85682121123527,148.9754400775498,212.7037970630792,fqhc1_100Compliance_baseline,64 -100000,95695,47699,454.7573018444015,5241,53.58691676681123,4109,42.353309995297565,1553,15.82109828099692,77.3508434030137,79.73994639409743,63.31502979323547,65.08219900800562,77.16200824704293,79.55613882805316,63.2444825002277,65.01616577161721,0.1888351559707644,183.8075660442655,0.0705472930077704,66.03323638840664,211.63032,148.90459061866434,221150.86472647477,155603.31325426025,501.70246,335.7344099553071,523681.7388578296,350250.75493961305,458.95181,224.6237943725904,476045.9689638957,232043.2842267771,2894.36991,1334.0262201690034,2980721.531950468,1350609.8857797938,973.87462,439.280199160273,997353.4144939652,439262.4506951784,1512.46542,635.3716729076755,1541365.4004911436,629932.5336119379,0.38109,100000,0,961956,10052.31203302158,0,0.0,0,0.0,43501,453.9840117038508,0,0.0,41532,430.4091122838184,1237364,0,44360,0,0,0,0,0,114,1.1912848111186582,0,0.0,0,0.0,0,0.0,0.05241,0.1375265685271195,0.2963174966609426,0.01553,0.339937626123647,0.6600623738763529,23.989649714554982,4.087925469413418,0.3115113166220492,0.2708688245315162,0.2129471890971039,0.2046726697493307,11.334409902059834,6.097394400907701,16.435611348514275,11595.703239878823,46.64134640492986,13.548577933933547,14.32126219413939,9.623009053154584,9.148497223702345,0.5935750790946702,0.8283917340521114,0.703125,0.576,0.1343638525564803,0.764102564102564,0.960698689956332,0.8459214501510574,0.7525773195876289,0.1497326203208556,0.5256890098673018,0.7358778625954199,0.6533192834562698,0.5256975036710719,0.1299694189602446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691127161481,0.0045126811410491,0.006679592727568,0.0087710382957964,0.0110989033347575,0.0133350991218597,0.0152913933631884,0.0174643054108707,0.01963571655025,0.0218758321214231,0.0242231565993231,0.0260779359503707,0.0280800641830038,0.0301978157840511,0.0323229821356698,0.0345066418566186,0.0364257964257964,0.0385078468820061,0.0405983128244068,0.0427780731104787,0.0575713897766915,0.0713560262598552,0.0847066232812008,0.0975014465309557,0.1100362884509894,0.1253372266480464,0.1361412149324389,0.1464032799105478,0.1566080896186078,0.1657956581926663,0.1780278532315785,0.1901854437985125,0.2013405292479108,0.2104174645729605,0.2194493675763146,0.2285733290467057,0.2370342256256837,0.2457198815862045,0.2531878413516674,0.2601012994751678,0.2651242462471499,0.2711642224276969,0.2761352199396128,0.2811810683801669,0.2859624612768025,0.2910866940947501,0.2953786922336529,0.2979840349806792,0.3023544470734262,0.3055482305785559,0.3032443852354231,0.3011197362093838,0.299073956972022,0.2967158070698774,0.2953180029003522,0.2929135779872487,0.2886450005519025,0.2889121270546714,0.2900197292332812,0.2899845478926522,0.2903953327990158,0.291745171926519,0.2924295006338189,0.2930885385485265,0.2936899568523684,0.2950980645494716,0.2954296160877513,0.299934796783308,0.3053331947187857,0.3093073170731707,0.3118096856414613,0.3145861672072826,0.3183030453389567,0.3216140932018369,0.3286179618427175,0.3318412062669337,0.3336358136721113,0.336762960031658,0.3411290322580645,0.3493150684931507,0.0,2.188688952848524,50.80113205502671,152.20638508211866,215.187819616396,fqhc1_100Compliance_baseline,65 -100000,95737,47364,452.0195953497603,5181,53.16648735598567,4061,41.97958991821344,1509,15.46946321693807,77.26691653433518,79.62589861305669,63.2951211478972,65.03882039857946,77.07472457149217,79.4343076372018,63.22311425256895,64.96884274635406,0.1921919628430117,191.5909758548935,0.0720068953282506,69.97765222540409,211.43782,148.79350996272703,220852.7737447382,155419.02290935273,499.47121,335.53982066312943,521291.09957487695,350060.1341833664,460.74159,225.70566656938783,478469.1394131841,233637.44978967667,2830.7188,1316.819809217695,2928943.867052446,1347725.6614545835,931.96003,421.3449598182653,963997.3573435558,430687.8433195028,1466.22478,622.8733054616707,1505151.508821041,628913.2028429175,0.37876,100000,0,961081,10038.762442942643,0,0.0,0,0.0,43442,453.3148103658983,0,0.0,41792,433.7194606056175,1231961,0,44285,0,0,0,0,0,84,0.8774037206095867,0,0.0,0,0.0,0,0.0,0.05181,0.1367884676312176,0.2912565141864505,0.01509,0.352377441946185,0.647622558053815,23.525835222474345,4.064989657845719,0.3156857916769268,0.2802265451859148,0.2063531149963063,0.197734548140852,11.153365340163138,6.046902544159521,16.30047964190689,11446.757016529114,46.83228729088121,13.963477767273766,14.631366895075576,9.368731823810592,8.868710804721267,0.5941886234917508,0.8075571177504394,0.6926677067082684,0.6145584725536993,0.1133250311332503,0.7554076539101497,0.917864476386037,0.8324022346368715,0.7210526315789474,0.155688622754491,0.5264078349073102,0.7250384024577573,0.6385281385281385,0.5833333333333334,0.1022012578616352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0044003285037869,0.0066059179283191,0.008705722209242,0.0111059129833411,0.0131856271573009,0.0155053774402365,0.017629464787007,0.0200157427189924,0.0222629380936783,0.0241304726661404,0.0261385569381134,0.0279291693231598,0.0298286090969017,0.0320647071567848,0.0339562961278452,0.035840400965133,0.0378993017730606,0.0399983368674899,0.0419258379437168,0.0563740589531277,0.0699482949906847,0.0832231526369913,0.0957957199671737,0.1083037061262382,0.1242843991068877,0.1358584303775968,0.1459806594530118,0.1549812341613113,0.1636236784200075,0.1753393055420803,0.1864612450974019,0.1973737219760238,0.2064385436627429,0.2155771752184308,0.2249597691582043,0.2335830072666294,0.2423962510701572,0.2503605782880765,0.2576530319874388,0.2632273142738138,0.2688585970865266,0.2741305428632307,0.2788013185495954,0.2827914662001263,0.2874030792746816,0.290759270158917,0.2941318737270876,0.2976128764708932,0.3008248294823666,0.2983235246476972,0.2958645994261752,0.2933933891532412,0.2913912074876676,0.2895422016574174,0.2861919808571341,0.2838783378552049,0.2840550144774941,0.2839535759526173,0.2854691689008043,0.2869778685606131,0.2882418060332898,0.2903719866563162,0.2916815742397137,0.2922040423484119,0.2932912844036697,0.2941428082582411,0.2971977329974811,0.3021326177529835,0.3068031836179658,0.3126799177518848,0.3162971647836282,0.3195396515942393,0.3244596131968145,0.328837688489276,0.3315684198140958,0.3315126687907753,0.3309957924263674,0.3336968375136314,0.3371603520857252,0.0,1.735694403356754,52.961590128273656,156.30325433017978,204.6687051732241,fqhc1_100Compliance_baseline,66 -100000,95689,47311,451.713363082486,5116,52.116753231823935,3995,41.03919990803541,1485,15.017400119135951,77.288290147924,79.65890550516419,63.294707477804174,65.04459610701174,77.09729179870556,79.47468449170132,63.221877546805096,64.97735939893022,0.1909983492184466,184.22101346286013,0.0728299309990774,67.23670808152349,210.60952,148.2651836612385,220097.9422922175,154944.8564215725,500.87351,335.5152405472565,522740.6389449153,349933.0875654011,450.58556,220.4517087716149,466990.8035406369,227267.46688562463,2821.4957,1309.677735906822,2899343.7385697416,1319524.6089426612,935.03952,416.9770275876194,959815.6214402908,418484.0851025914,1448.4698,622.5793119591381,1467680.0050162503,611459.778347015,0.37924,100000,0,957316,10004.451922373522,0,0.0,0,0.0,43647,455.4023973497477,0,0.0,40812,422.5668572145179,1236185,0,44362,0,0,0,0,0,71,0.7419870622537597,0,0.0,1,0.010450522003574,0,0.0,0.05116,0.13490138171079,0.2902658326817826,0.01485,0.3387846125255528,0.6612153874744471,23.865723185954632,4.265919125097196,0.3188986232790988,0.2700876095118898,0.2030037546933667,0.2080100125156445,11.448535819524244,6.074913779567549,15.875937474462502,11445.323828169814,45.36168849219848,13.151374745378543,14.218248036945209,8.957766067199811,9.034299642674926,0.5734668335419274,0.7970342910101946,0.6726844583987441,0.5856966707768188,0.1191335740072202,0.75,0.9202733485193622,0.8693009118541033,0.772972972972973,0.1176470588235294,0.5029772329246935,0.7125,0.6042328042328042,0.5303514376996805,0.1195652173913043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020154143752721,0.0042071755152522,0.0063725291228639,0.0086856701680245,0.01065820519079,0.0127686871875286,0.0150690238779796,0.0172918899607002,0.0194931973136799,0.0214910709717034,0.0235308586303728,0.0253946747141302,0.0276469741522896,0.0296286379271281,0.0316861094779837,0.0336802290131558,0.0357416495827379,0.0378883792366285,0.0395352707453558,0.0417522173700063,0.057100780213697,0.0706664572535469,0.0839342128740409,0.0961155954999421,0.1079217954943732,0.1230583526571582,0.1343237617874437,0.1452484204021182,0.1547485376364783,0.1647391084909206,0.1764356969533567,0.1877126449236103,0.1984663812915945,0.2076124567474048,0.2167184367633776,0.2255594882776526,0.2344410403202361,0.241332656857771,0.2488767048492225,0.2564561874906702,0.2627391858981793,0.2686806874399193,0.2746444626315102,0.2801820408751411,0.2839319838845138,0.289053528431191,0.2927661710270406,0.2955759205679544,0.2987489942640608,0.3016244366020328,0.2996887924879087,0.2972596889078709,0.2954782805046713,0.2926797499131643,0.2905313909019211,0.2872943411256472,0.2845025399186593,0.2843627539392349,0.2837969366323447,0.2840600913502712,0.284676316922904,0.2861509337224665,0.2872527288695579,0.2885898576512455,0.2898253316789157,0.2903517380300604,0.290990787317018,0.2948465836376689,0.3007322175732217,0.3030291078330835,0.3065964975954995,0.3094255791812123,0.313968015992004,0.3183534743202417,0.3236625704518155,0.3201070514312311,0.3251386598710838,0.3287073750991277,0.3283582089552239,0.3266666666666666,0.0,2.73425933509693,48.94560617670835,143.79777944160602,214.41230941456232,fqhc1_100Compliance_baseline,67 -100000,95837,47502,451.6940221417616,5140,52.443210868453725,4038,41.61232091989524,1524,15.568100003130317,77.36488025655099,79.6798886986253,63.35773544642036,65.07127501941696,77.16775910163007,79.48403151902404,63.282830404773726,64.99888237185976,0.1971211549209215,195.85717960126203,0.0749050416466303,72.39264755719432,211.72822,148.90828643735347,220925.1124304809,155376.38535988546,501.52263,337.3521714836009,522807.91343635553,351506.16305143206,460.6584,226.0262738329869,477705.0199818441,233534.3531330882,2863.23814,1335.387961780506,2954226.853929067,1360465.7748221674,935.97478,426.1555045800143,966042.2905558395,434077.3131254258,1485.6417,640.6361539812732,1519966.5473668834,643287.036361598,0.3797,100000,0,962401,10042.05056502186,0,0.0,0,0.0,43681,455.2417124910003,0,0.0,41703,432.0982501539072,1235663,0,44363,0,0,0,0,0,76,0.7930131368886756,0,0.0,1,0.0104343833801141,0,0.0,0.0514,0.1353700289702396,0.2964980544747082,0.01524,0.3562768140272337,0.6437231859727662,23.616541120332965,4.138052518745373,0.3058444774640911,0.279098563645369,0.2038137691926696,0.2112431896978702,10.908401374616908,5.670069378605497,16.466650607691506,11504.082751860182,46.302299522015566,13.853942388002377,13.98421107104602,9.07237512693282,9.391770936034352,0.5760277365032194,0.8127772848269743,0.6866396761133603,0.5625759416767923,0.1160609613130129,0.7558609539207761,0.9465346534653464,0.8249258160237388,0.714975845410628,0.1648936170212765,0.4966083541592288,0.7041800643086816,0.6347438752783965,0.5113636363636364,0.1022556390977443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026131874810088,0.0049272071049109,0.0073260816624726,0.0094868565392272,0.0116838348196581,0.0138068667779904,0.0157903321168627,0.0179369908324315,0.0203119888779849,0.0224167050514355,0.0246074693559627,0.0267848896277823,0.0287470322825986,0.0308463446515505,0.0329131147372001,0.0350886248438613,0.0372979178949328,0.039268507485883,0.0411280358014308,0.0432281154414365,0.0580744078350386,0.0727799147085876,0.0858789021579719,0.0989394098498372,0.1109496277105515,0.1260585837680302,0.1365552895311142,0.1467145757810922,0.1564343549643158,0.1655795122264708,0.1770667469983216,0.1887398246543355,0.1988070922602233,0.2076976005067659,0.2159058440844853,0.225940219614955,0.2347921980996513,0.2423531261228889,0.2502094703231504,0.2571304457171599,0.2639163116145346,0.2693443522312101,0.2751899063168216,0.2794609976565115,0.2839357868297477,0.2876936517897793,0.2912137341629807,0.2950282557622706,0.2975138264330387,0.3011528136021477,0.2985491671144546,0.2953634016370928,0.2948492479986493,0.2918170010102467,0.2903149173731644,0.2878296518387077,0.2857708010254138,0.2852593042536076,0.286510228845858,0.287704010571051,0.2885669244050747,0.2896138086660464,0.2898243996479611,0.2905986725960356,0.29095395524891,0.2911339777569899,0.2903024810241305,0.2947566129284708,0.2971376646978646,0.300265336026296,0.3026675163874727,0.3064910230532243,0.3111896943672644,0.3140306706340123,0.3140620579081392,0.3187293339631554,0.3257517936192947,0.3277259829752736,0.3290516534572287,0.3279816513761467,0.0,1.9987928569646949,54.18388063571405,141.8949208419711,210.68625077461616,fqhc1_100Compliance_baseline,68 -100000,95636,47033,448.8686268769083,5106,52.2083734158685,3970,40.91555481199549,1477,15.11982935296332,77.2563444549925,79.66685525150365,63.27473565930678,65.05577222616995,77.06965284470097,79.48111604702538,63.20498550838165,64.98826242185177,0.1866916102915325,185.73920447826708,0.069750150925131,67.50980431817766,211.15424,148.61050045376473,220789.49349617297,155391.7985421439,501.07165,337.0008532472538,523342.4128989084,351784.843832086,450.83237,221.4339130774009,467042.578108662,228269.56838389847,2791.94691,1300.5094764866158,2883046.7501777573,1323553.0098358523,948.47823,429.1988672027429,976684.9094483248,433710.1271516403,1436.55472,610.3092176692975,1472477.686226944,613355.5706047749,0.37734,100000,0,959792,10035.886068007863,0,0.0,0,0.0,43657,455.8743569367184,0,0.0,40971,424.0348822619098,1231840,0,44259,0,0,0,0,0,80,0.8365050817683718,0,0.0,1,0.0104563135221046,0,0.0,0.05106,0.1353156304658928,0.2892675283979631,0.01477,0.350459403712732,0.6495405962872679,23.799222758935773,4.070639697666104,0.3143576826196473,0.2770780856423174,0.2007556675062972,0.207808564231738,11.398781955998691,6.218387020238276,15.84749104854196,11458.342618187671,45.730735832693824,13.596588223429732,14.201798637434772,8.830529904500725,9.101819067328584,0.5861460957178841,0.8163636363636364,0.6794871794871795,0.5872020075282308,0.1369696969696969,0.7720033528918693,0.9083333333333332,0.8660968660968661,0.8,0.1686046511627907,0.5063017644940583,0.7451612903225806,0.6064659977703456,0.5205930807248764,0.1286370597243491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0047130129835906,0.0070936380519388,0.0090518423699369,0.0111811984942517,0.0136507645446858,0.0155867471845927,0.0175323879194082,0.0196694147249555,0.0217181961603868,0.0236824823510096,0.0257635548978501,0.0277752040931879,0.029806274679616,0.0317642319253773,0.0337220491913537,0.0358149852800928,0.0379777078334216,0.0402796999053099,0.042159940754957,0.0564334085778781,0.071015525152423,0.0848537655629973,0.0973106678595863,0.1094709519488467,0.1250912630810416,0.1359106875656631,0.1466266291847687,0.1568451426739339,0.1663072053221739,0.1774642117971714,0.1887362696882379,0.1990176539135927,0.2084785133565621,0.2172494018281455,0.2266441746387588,0.2349586222321628,0.2426079509600649,0.2502641955387884,0.2571428571428571,0.2633763463299827,0.2691315764794148,0.2736028086156182,0.2775177611367127,0.281894631795446,0.2862292451083266,0.290189984460374,0.2933239903172379,0.2970670608370935,0.300587575097379,0.2978058116340503,0.2953919082791313,0.2935854914967186,0.2913523765400819,0.2888180721635668,0.2864558536697741,0.2838952142336113,0.2840539207627815,0.2841076632950454,0.2837266769329943,0.2845838658747462,0.2861019769422764,0.2869395629744579,0.2884834154937432,0.2896118529884203,0.290407188116755,0.2920872309573228,0.2970145045581279,0.3007102569458951,0.3047379190933417,0.3082133020273626,0.3140600315955766,0.3197547087166009,0.3221218961625282,0.3267907915252683,0.32619574071919,0.3288241415192507,0.338728780102645,0.332089552238806,0.3276320790573926,0.0,2.313494185102382,52.041618807980896,147.9656997400239,202.00999058527876,fqhc1_100Compliance_baseline,69 -100000,95694,47772,455.68165193220057,5106,52.21852989738124,4029,41.53865446109474,1487,15.183815077225322,77.32722884548278,79.7031520722716,63.32110870231941,65.07564355178155,77.14602481185817,79.52586032498499,63.254301901973626,65.0127242043414,0.1812040336246099,177.2917472866169,0.0668068003457875,62.91934744015748,211.6158,149.0678157188923,221137.7724831233,155775.33436585302,507.04566,339.9079932632369,529272.3786235292,354616.2036867326,464.98257,227.6177488237226,482428.7729638222,235229.99710567843,2820.26615,1295.0331204226222,2908215.259054904,1314827.1579886875,917.17129,414.2692106233629,943445.9109244047,417995.1265440573,1443.4942,597.1904806508969,1475127.8032060526,594589.3839321757,0.38199,100000,0,961890,10051.716931051058,0,0.0,0,0.0,44056,459.7780425105022,0,0.0,42121,436.6940456036951,1229580,0,44133,0,0,0,0,0,88,0.9091479089598092,0,0.0,0,0.0,0,0.0,0.05106,0.1336684206392837,0.2912260086173129,0.01487,0.3638909634055265,0.6361090365944735,23.34485940757516,4.140156994934631,0.3189377016629436,0.2670637875403326,0.2144452717795979,0.1995532390171258,11.42349255139218,6.204528754584757,15.667417242623609,11592.270121892889,45.94586376150519,13.193797417219216,14.60673241254629,9.428610187014932,8.716723744724746,0.5879870935716058,0.8187732342007435,0.7089494163424125,0.5729166666666666,0.1019900497512437,0.7870289219982471,0.9242761692650334,0.92797783933518,0.7514792899408284,0.1296296296296296,0.5093490304709142,0.7432216905901117,0.6233766233766234,0.5294964028776978,0.0950155763239875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021463138072772,0.0044795329934833,0.0069189408542152,0.0086941507460109,0.0109110137175745,0.0129208964190076,0.0152550323251687,0.0175870415573008,0.0199824105700202,0.0222527163060286,0.0245615834273407,0.0266830996764751,0.0287180753129467,0.0305203503348789,0.0323026750330251,0.0344264159918923,0.0363836025153583,0.0386412242270717,0.0406586091406461,0.0426416785665891,0.0576045289798305,0.072014652014652,0.0853717378534866,0.0978937844548247,0.1101220296794743,0.1248148775017983,0.1361243765255226,0.1465292345042752,0.1568145639469663,0.1653615944049943,0.177204282544538,0.1888387397040837,0.1995758564437194,0.2093234332454864,0.217967761456786,0.2279533925525552,0.2368658864480715,0.2444142087685958,0.2526715825297788,0.2602905984863231,0.2661158746138091,0.2728240275081284,0.2772033597539335,0.2815965319857256,0.2861635601967093,0.2910696906606876,0.2941809266486541,0.2978596227950808,0.3018350285995289,0.3058859207299385,0.3033579276174062,0.3016064974507675,0.2991289419247709,0.2967898243488794,0.2949408604544173,0.2929780228195114,0.290166500640387,0.2899422797063296,0.2898156337165793,0.2905350232541627,0.2909565055415852,0.2919802700100222,0.2924567618253803,0.292546804820563,0.2942035928143712,0.2941604322527015,0.2955674816139932,0.3001909651566853,0.3028770706190061,0.3064694716861753,0.3092281802883522,0.314464408756029,0.3184757360788499,0.3195860599604322,0.3240391861341371,0.3268074065337893,0.3294797687861271,0.3327971043635632,0.3415166393889798,0.3387894937190712,0.0,2.159363272799811,49.57418415663657,151.6952827578443,211.57955649123812,fqhc1_100Compliance_baseline,70 -100000,95761,47564,452.74172157767777,5127,52.19243742233269,4116,42.23013544135922,1620,16.478524660352335,77.38146625236273,79.70542991364901,63.35451413110488,65.06832563595968,77.16883428484583,79.49923893960366,63.27455776643251,64.99412396019315,0.2126319675168986,206.1909740453558,0.0799563646723697,74.20167576653114,210.70324,148.27609330376876,220030.09575923395,154839.5205812061,502.20865,337.6237069080163,523627.34307285846,351756.8079990981,464.11283,227.5868724707053,479628.1576006934,233772.32418994707,2934.99344,1371.0462971659324,3015517.820407055,1382340.2817075148,946.1555,436.5998200685122,963826.7457524462,431814.11138587695,1571.51712,673.4396032353783,1599514.290786437,666221.8782282335,0.38026,100000,0,957742,10001.367989056089,0,0.0,0,0.0,43657,455.10176376604255,0,0.0,42076,434.46705861467615,1237290,0,44401,0,0,0,0,0,83,0.8562984931235055,0,0.0,1,0.0104426645502866,0,0.0,0.05127,0.1348288013464471,0.3159742539496781,0.0162,0.3529631706861095,0.6470368293138904,23.522939891502467,4.137996343359329,0.3102526724975704,0.2657920310981535,0.2181729834791059,0.20578231292517,11.066521415242349,5.986932315768978,17.39354535187258,11521.517735381074,47.107326718069416,13.357060945201107,14.440295568691036,10.002003982095234,9.307966222082038,0.5840621963070942,0.8162705667276051,0.711824588880188,0.5579064587973274,0.1192443919716647,0.7626427406199021,0.9288793103448276,0.8773841961852861,0.7184466019417476,0.1798941798941798,0.5083044982698962,0.7333333333333333,0.6450549450549451,0.5101156069364162,0.1018237082066869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0045907819530584,0.007121047666386,0.0095052400682427,0.0119474920434787,0.013925931958385,0.0160632746249184,0.0182246757619975,0.0204842664487127,0.0226714683254215,0.0250071712494365,0.0269527122000266,0.0289601874499003,0.0311197125827405,0.033063900859847,0.0353096696237697,0.0373996191737726,0.0393663234943443,0.0412329364832013,0.0430862140774677,0.0574723439782926,0.0710922294539899,0.0848191810706494,0.0977335323675966,0.1106425596963786,0.1260921072116096,0.1361529240789655,0.1462347505801699,0.1558567796791215,0.1650565592666059,0.1777378235218121,0.1882746090454869,0.1987472950489881,0.2083219391605867,0.2173243249191223,0.2263943980322201,0.2350373925661346,0.2435220918327164,0.2514134556436048,0.2576127442553435,0.2635149999421075,0.2695405797780171,0.2759016742842257,0.2811541411042945,0.2859692793394451,0.2897413793103448,0.292736298500744,0.2963782210187763,0.3001941998964267,0.3030394896399009,0.3009251788499811,0.2982733279303287,0.2960498551050839,0.2931582444887463,0.291533581923254,0.2884167993143137,0.284371346415142,0.2848044271984544,0.2846406843782485,0.2851679237227835,0.2856529530351676,0.2865124331129997,0.2885072820598423,0.2892331698617922,0.2901132581471637,0.2899610894941634,0.2900155785299532,0.2935318723855903,0.2968412244613346,0.302125306154697,0.3061178281936331,0.3072955047899779,0.3098539011501399,0.3139377537212449,0.3113587414551924,0.3198023296858454,0.3233433734939759,0.3192975454001197,0.3148047722342733,0.3124762988244217,0.0,2.9382984927780247,52.664061547359005,147.402780542835,216.71957007818884,fqhc1_100Compliance_baseline,71 -100000,95764,47643,452.7588655444635,5139,52.44141848711416,4038,41.66492627709787,1547,15.799256505576208,77.31912755708531,79.66738678435775,63.32066847763053,65.05761011585156,77.11668085825283,79.4669212582606,63.243929327642846,64.9840025198239,0.2024466988324746,200.46552609714752,0.0767391499876879,73.60759602765654,210.57256,148.1975752584614,219886.51267699763,154752.51440223117,500.1027,335.9056841689346,521680.1512050457,350223.30308414786,457.41793,224.4246812490232,474198.0493713713,231764.89234394184,2856.33229,1327.4837620766216,2947090.0442755106,1350953.4088610115,936.94014,420.4128168027577,966244.026983,426899.1476282913,1507.76562,646.1068823160502,1540466.2085961322,645865.8991453708,0.38132,100000,0,957148,9994.841485318077,0,0.0,0,0.0,43490,453.594252537488,0,0.0,41368,428.5952967712293,1238501,0,44468,0,0,0,0,0,90,0.9398103671525836,0,0.0,0,0.0,0,0.0,0.05139,0.134768698206231,0.3010313290523448,0.01547,0.3558911260253542,0.6441088739746458,23.68144582669224,4.150411269739172,0.3110450718177315,0.2677067855373947,0.2109955423476968,0.2102526002971768,11.089929056403738,5.882765207752407,16.572634404873323,11593.659502867176,46.08554874542931,13.145822854904376,14.198355586958275,9.448976337667482,9.292393965899183,0.5807330361565132,0.8048103607770583,0.7189490445859873,0.5692488262910798,0.1024734982332155,0.7362924281984334,0.9161147902869756,0.8761904761904762,0.694300518134715,0.1117021276595744,0.518864659051575,0.7245222929936306,0.6663124335812965,0.5326251896813353,0.0998487140695915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019848302261288,0.0045298391755084,0.0070106732681303,0.0093643990330902,0.0120206242182017,0.014471500005092,0.0167728778995666,0.0190744598292692,0.0211652113453712,0.0234127065375401,0.0253247618754677,0.0274976897012013,0.0296086800020568,0.0317286990203249,0.0337701196863392,0.0355205092961007,0.0375063407766286,0.0394473430352567,0.0416987052931274,0.043702870474524,0.0583188066930407,0.0716766391899242,0.0847046977754003,0.0972396025027604,0.1093165213540952,0.1250171828573241,0.1360656781009355,0.1466710648123517,0.1564221946948016,0.1653873367782328,0.1773834009971893,0.1888183028322204,0.1998672989906021,0.2099525444485752,0.2185670906130352,0.2281642100133999,0.2370885468406424,0.2452857785778578,0.2525621673154842,0.2587413388306706,0.2651246787525179,0.2709601160939986,0.2767454254752176,0.2809459248683216,0.285589232957654,0.2901661793552685,0.2939231501427784,0.2974569904111857,0.301885814269976,0.3054411531759861,0.302878075716152,0.2994428011281557,0.2972881547048542,0.2955068041475654,0.2936859307680879,0.2906674017580936,0.2880733363942939,0.2879807061294133,0.2882945881871365,0.2888198757763975,0.2900827684356391,0.2905657398819977,0.2912222618024851,0.2924811021156684,0.2935354457443486,0.293866500052067,0.2947167771487097,0.2989787607292776,0.3030568297209286,0.3063091482649842,0.310586532808755,0.3132097396080917,0.3171190371716918,0.320054632369679,0.3191608915527252,0.321775799461169,0.3273305084745763,0.3281783490660775,0.3313367819221345,0.3257661748013621,0.0,1.9087085134640505,50.08794575713591,152.08542017096624,211.93393459467805,fqhc1_100Compliance_baseline,72 -100000,95664,47126,450.2425154708145,5198,52.99799297541395,4101,42.10570329486536,1646,16.735658136812177,77.34181859432726,79.72337580848179,63.3271521787835,65.08498097259664,77.12585326479555,79.5118687484669,63.24548151483792,65.00785499999238,0.2159653295317127,211.5070600148954,0.0816706639455802,77.12597260426435,211.58742,148.8324495381275,221177.68439538384,155578.32574231422,500.44419,335.000694904386,522267.9482354908,349326.42919412826,450.76056,220.86433353793905,465555.6531192507,226637.5173037411,2964.51052,1382.9332609724424,3050425.510118749,1397256.8085042797,984.70408,445.926135954931,1012110.5640575348,448972.5632411045,1612.3818,692.8462490821324,1642804.733232982,689768.6366824581,0.37972,100000,0,961761,10053.531108881083,0,0.0,0,0.0,43477,453.6711824719853,0,0.0,40906,421.9978257233651,1238519,0,44453,0,0,0,0,0,83,0.8571667502926911,0,0.0,0,0.0,0,0.0,0.05198,0.136890340250711,0.3166602539438245,0.01646,0.3555637435519528,0.6444362564480471,23.563744672212877,4.241186161509002,0.3104120946110704,0.2499390392587173,0.2165325530358449,0.2231163130943672,11.3722570887862,6.04615322449517,17.679803214938378,11500.572871293942,46.74545243887637,12.447077990877789,14.396308466631709,9.848222927483542,10.053843053883336,0.5683979517190929,0.7931707317073171,0.7219167321288296,0.5630630630630631,0.1081967213114754,0.729957805907173,0.8966346153846154,0.8657142857142858,0.6964285714285714,0.1692307692307692,0.5027434842249657,0.722495894909688,0.66738894907909,0.5180722891566265,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265607436886,0.0041152680499102,0.0065237462333735,0.0087546464625947,0.0108695652173913,0.0131852244033558,0.0152177679927427,0.0171799556975592,0.0192765666043193,0.0215789042666448,0.0236754949911306,0.0254501011636386,0.0274894291210995,0.0298421334652322,0.0316357706122786,0.0336784617135055,0.0355851234702231,0.0376165458811803,0.0394070221066319,0.0412731177414983,0.0554818490467485,0.0692110360714098,0.0836219745156076,0.0963895991834243,0.1089930903528667,0.124805635769365,0.1358007661209028,0.1468675147708522,0.1567491906100075,0.1658533446304658,0.1774474959612277,0.1884998539767011,0.1991625428245146,0.2084996118649071,0.2179891968008449,0.2275818528199902,0.2361949836471809,0.2444854388589554,0.2526356404407676,0.2591247981492722,0.2651607157315197,0.2716407437726582,0.2779302188054405,0.2832496675332766,0.2878360982244784,0.2915331920555911,0.294560648518815,0.2975627130717956,0.3011188521405817,0.3049396557409483,0.3021387135415965,0.2995214258210023,0.2979364743996056,0.2949025270758122,0.2915398660986001,0.2873072033573802,0.2838528076916994,0.2833836164491375,0.2829489783725654,0.2827438752783964,0.2833022039596563,0.2837286331105459,0.283941071988298,0.2845856859113124,0.2850253137221969,0.2871545054315263,0.287149565959869,0.2911865364689629,0.2946776743369049,0.2985612936467045,0.3035633124261431,0.3064192047377326,0.3115029910269192,0.3138024765931743,0.3154038764722248,0.3169005778983371,0.3164133738601823,0.3159154367770243,0.3152263374485596,0.3264683447749809,0.0,2.932064712559144,50.70280531240754,153.34134760246053,211.95674952515,fqhc1_100Compliance_baseline,73 -100000,95680,47553,453.8043478260869,5053,51.64088628762541,3968,40.89673913043478,1601,16.35660535117057,77.38307130315455,79.75963854193651,63.34642469116329,65.09750411054137,77.1748926703402,79.55334629423206,63.267974152420656,65.02190485593775,0.2081786328143522,206.29224770445376,0.0784505387426364,75.59925460361683,211.30054,148.66317565006182,220840.8653846154,155375.39261085054,502.99435,337.7863770249629,525105.560200669,352447.9922343626,451.1771,220.67025235957252,467975.0209030101,227922.44995417347,2860.47736,1325.0463576476138,2950767.035953177,1346850.1603760994,954.59523,436.1986388094385,980972.0735785952,439331.1309236063,1565.62242,669.9249197065861,1601596.864548495,671744.7864475605,0.37995,100000,0,960457,10038.221153846152,0,0.0,0,0.0,43709,456.1977424749164,0,0.0,40898,423.8607859531773,1236437,0,44399,0,0,0,0,0,81,0.846571906354515,0,0.0,3,0.0313545150501672,0,0.0,0.05053,0.1329911830504013,0.3168414803087275,0.01601,0.3481312843862644,0.6518687156137355,23.567628336454423,4.17660083433938,0.3031754032258064,0.2560483870967742,0.2169858870967742,0.2237903225806451,11.216130592346063,5.868590728263033,17.064883920211155,11492.94812755088,45.08646444490478,12.40437491164085,13.499370094209972,9.561889576279476,9.620829862774478,0.5700604838709677,0.7992125984251969,0.7015793848711555,0.5900116144018583,0.1103603603603603,0.7226596675415573,0.8909512761020881,0.8484848484848485,0.6984126984126984,0.155440414507772,0.5083185840707964,0.7316239316239316,0.6460481099656358,0.5595238095238095,0.097841726618705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611694319872,0.0047210909164589,0.0069066236650743,0.0093728421138145,0.0114178231915001,0.0134470718771949,0.015647617688434,0.0176280251916422,0.0198603743113264,0.0218150176588012,0.0241344310364272,0.0261541937073851,0.0281694486439788,0.0302209404130401,0.0322174653118068,0.0342913837472483,0.0362148443569689,0.0381413982065758,0.0402749469656004,0.0422893349173596,0.0571183838046191,0.0710599319549856,0.0838954689942405,0.097209370794078,0.1089977437108576,0.1245573046061464,0.1356702954239498,0.1458426392699891,0.1553556565721237,0.1644093948225612,0.1765022325030932,0.1872087365518732,0.1975065759440012,0.2070458097871828,0.2165911291032297,0.2258543504277292,0.2353972614979115,0.2441065495297629,0.251757304595678,0.2581018518518518,0.2636482529541798,0.269564810262893,0.2745543909516196,0.279341202437503,0.2841079004631599,0.2879165330636608,0.291253020193042,0.2950686117263678,0.299130569988468,0.3028346602236569,0.3005154153601851,0.2975792816198606,0.2961029825548678,0.2931860834416053,0.2911073203293036,0.2890085844133984,0.2868730630573651,0.2865756746571414,0.2859239789038898,0.2860579921940439,0.2862787490215082,0.288293420819991,0.2887694966785364,0.2891130017548926,0.2915295464301044,0.2918766638236282,0.2916831236246685,0.2975142332700743,0.3020010440229685,0.3044722298436091,0.306974437581714,0.3109388909252762,0.3149987583809287,0.3192987713515133,0.32565213383722,0.3332947173308619,0.3378778897451097,0.3410672853828306,0.3522577237919197,0.3538011695906433,0.0,2.092793198253905,49.704229923781696,143.58278796908417,210.4645300174782,fqhc1_100Compliance_baseline,74 -100000,95702,47774,455.1837997116048,5073,51.87979352573614,4034,41.68146956176464,1569,16.10206683245909,77.3960056150407,79.78022594366067,63.35197710932333,65.11317799458315,77.19928407642291,79.58457255104535,63.278490480547305,65.04189845127713,0.196721538617794,195.6533926153128,0.073486628776024,71.27954330601938,211.10342,148.5484171956095,220583.89584334704,155219.5462974749,505.97377,338.8463825078294,528158.7323148941,353526.523627332,459.45227,224.8944091070908,476926.2711333096,232608.62746580807,2860.47782,1324.8416888393865,2957001.0971557545,1352944.9293241836,924.34412,415.2192299891655,953883.4716097888,422117.5208290418,1525.4078,641.1066019009673,1567285.67846022,647698.361561718,0.38062,100000,0,959561,10026.54072015214,0,0.0,0,0.0,43913,458.30808133581326,0,0.0,41555,431.0254749117051,1240828,0,44457,0,0,0,0,0,92,0.9613174228333786,0,0.0,1,0.0104491024221019,0,0.0,0.05073,0.1332825390152908,0.309284447072738,0.01569,0.3527514231499051,0.6472485768500948,23.64097341526035,4.040090497950852,0.3212692117005453,0.2595438770451165,0.2129400099157164,0.2062469013386217,11.133905715433444,6.0414430113159705,16.54136466603676,11537.20773567076,45.92349689514754,12.835247088896582,14.534600516076756,9.521947096032346,9.031702194141864,0.5746157659890927,0.8051575931232091,0.6867283950617284,0.5727590221187427,0.1117788461538461,0.7495667244367418,0.907865168539326,0.8724035608308606,0.7336683417085427,0.1213872832369942,0.5045138888888889,0.729235880398671,0.62148070907195,0.5242424242424243,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096325860793,0.004603435338971,0.0070745620267554,0.0093370586741173,0.0118507517343804,0.0141734207632468,0.0162729284133894,0.0183973292223504,0.0204972499948884,0.0225593154414624,0.0244617592782448,0.0268796780188301,0.0290847757448602,0.0309329322936516,0.0329866485069852,0.0349703842297315,0.0368958587972074,0.0389038820842848,0.0409863344218649,0.0431887109045241,0.0578835227272727,0.0717350355797404,0.0848821110924651,0.0976166195317346,0.1101027667984189,0.1251797648253108,0.1360342870479403,0.1458453088075621,0.1560630661425397,0.1651705758072992,0.1770356569779338,0.1885410807770518,0.1994653394333902,0.2089558764058452,0.2181470365117583,0.2280284246878597,0.2362452329445349,0.2439123011950759,0.2516680071138096,0.258827025729537,0.2645334072124486,0.2718530448381299,0.2779489722428836,0.2821389709311363,0.2863564764328123,0.2904192720170018,0.2934114567100916,0.2972630511910796,0.300626547029703,0.3041027864265164,0.301440729075923,0.2983883114926947,0.2961658787054054,0.2932717222318189,0.2907293393322283,0.2865400747349958,0.2835001970831691,0.2834867033883068,0.2841426919676256,0.2842883023693652,0.2852110707296617,0.2861321606659076,0.2863704381079059,0.2875844501052165,0.2888050434616487,0.2890119559029036,0.2911878476437868,0.2955077576249493,0.2999860617464632,0.3025074037512339,0.3062170514451918,0.3095175183638958,0.3128880526810912,0.3158451768974902,0.3181134911687335,0.3227299703264095,0.3192816922842794,0.3214141414141414,0.3287596048298573,0.3351206434316354,0.0,1.783991394491393,50.54644713689116,150.46377956845495,210.45321930200055,fqhc1_100Compliance_baseline,75 -100000,95825,47529,452.7002348030263,5173,52.76284894338638,4071,41.94103835116097,1576,16.050091312288025,77.38566316619061,79.70521814585855,63.36611244363343,65.08363952079044,77.18458660417896,79.50941084604924,63.28927299079555,65.01136711499713,0.2010765620116501,195.8072998093172,0.0768394528378735,72.27240579331351,212.76728,149.64594144146275,222037.1093138534,156165.63677689823,505.93112,339.5260305184373,527429.8356378815,353774.6418141794,456.61205,224.2929745601468,473121.4088181581,231474.91757414327,2862.56417,1347.2322290974653,2947985.567440647,1366632.1201121474,943.09831,425.0047195251151,970018.8677276286,429352.4545005119,1534.29448,657.9901648781652,1563706.986694495,654217.5645891669,0.3802,100000,0,967124,10092.595877902426,0,0.0,0,0.0,44089,459.52517610226977,0,0.0,41362,428.2911557526741,1231160,0,44160,0,0,0,0,0,90,0.9392121054004696,0,0.0,0,0.0,0,0.0,0.05173,0.1360599684376643,0.3046588053353953,0.01576,0.3543015726179463,0.6456984273820536,23.351169361985995,4.181083253002146,0.3149103414394498,0.2643085237042495,0.2156718251043969,0.2051093097519037,11.503057895384444,6.234158557866564,16.89974940434342,11457.618404097338,46.68415840149525,13.227001164771576,14.54583396614257,9.75466354537667,9.15665972520443,0.576271186440678,0.7936802973977695,0.6926677067082684,0.5854214123006833,0.1077844311377245,0.7390243902439024,0.8993576017130621,0.8528528528528528,0.7468354430379747,0.1450777202072538,0.5058078141499472,0.7126436781609196,0.6364594309799789,0.5257410296411856,0.0965732087227414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864351331368,0.0041564023803006,0.0062721377028549,0.0087883282872411,0.0111375564506285,0.0132573057733428,0.0155337430816744,0.0177160934789264,0.0197046348817006,0.0216132135328189,0.0238370960964961,0.0256186556364121,0.0277797761585184,0.0297269199493571,0.0319450602707802,0.0343331680713931,0.0363894090989042,0.038546449560017,0.0406309056548917,0.0425286160249739,0.0570895094245152,0.0710850930378423,0.0840425977946417,0.0967480956133438,0.1085081057166633,0.123593962885901,0.1354309020604905,0.1460578619560827,0.1560336643590865,0.1641709511568123,0.1755482184915522,0.1867039721721094,0.1980870905755013,0.2072266797663883,0.2162399639746504,0.2265519605458124,0.2350411639539676,0.2435632442147832,0.251418925808023,0.257979696359978,0.2637068178930712,0.2695278769632896,0.275197092007742,0.2791445128143855,0.283019781603351,0.2870858040833364,0.2923021286678056,0.2957221623677039,0.2993329806861138,0.3010349679778014,0.2988380683726241,0.2967859741614838,0.2944624033731553,0.2923866947465597,0.2905110788123275,0.2871273505580186,0.2841670882873767,0.284105439165929,0.285153315577409,0.2863664734730272,0.2870486260297771,0.2876828450893033,0.2880311792808649,0.2871577064937968,0.2874852562405218,0.2883962609013525,0.2894361780970298,0.2938443670150987,0.2975572090411343,0.3009235403702089,0.3045334786953756,0.3058021559923906,0.3094760591626974,0.310991754293063,0.3104838709677419,0.3129500649273993,0.3145332927941623,0.3149779735682819,0.3221075502444324,0.321791494166353,0.0,2.1057326805287464,53.55634164258667,148.89495709569917,208.5678828550901,fqhc1_100Compliance_baseline,76 -100000,95751,47358,451.0344539482616,5184,52.69918852022433,4088,41.95256446407871,1529,15.529863917870308,77.37657405990127,79.72254379716767,63.3458979718325,65.07985308780275,77.17404912164254,79.52736965700161,63.26944646395982,65.00946978503237,0.2025249382587333,195.17414016605983,0.076451507872683,70.38330277038085,211.54782,148.7931940482814,220935.36359933575,155395.9687609335,501.71815,336.3692742112071,523260.03905964433,350573.7216438544,452.23251,221.72655872689376,468020.3862100657,228164.98872592612,2872.97548,1336.7320166355132,2950192.68728264,1345777.6280514186,949.65555,432.8261441833594,973030.2242274232,433266.2470192046,1488.84932,635.3526639412333,1513400.5075665007,625131.8040778144,0.38001,100000,0,961581,10042.516527242537,0,0.0,0,0.0,43689,455.5252686656014,0,0.0,41120,425.1234974047268,1237471,0,44382,0,0,0,0,0,75,0.7832816367453082,0,0.0,0,0.0,0,0.0,0.05184,0.13641746269835,0.294945987654321,0.01529,0.3510068353962682,0.6489931646037318,23.366990600416194,4.20461805962694,0.309197651663405,0.2700587084148728,0.2213796477495107,0.1993639921722113,11.50108617971456,6.141603914099504,16.247310228724455,11549.455870050244,46.46594205702136,13.4362673503356,14.2210430189821,9.951135013661249,8.857496674042402,0.5878180039138943,0.8197463768115942,0.7009493670886076,0.5734806629834254,0.1141104294478527,0.7531592249368155,0.9225512528473804,0.8513119533527697,0.762114537444934,0.1348314606741573,0.5201654601861427,0.7518796992481203,0.6449511400651465,0.5103244837758112,0.108320251177394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155980958168,0.0042271082322172,0.006382028856105,0.0087671177211589,0.0109327963550565,0.0131057728536369,0.0154072049841441,0.0177032711234532,0.0199450004600333,0.0221002958307315,0.0242292554936044,0.0263598197513883,0.0286210689722527,0.0307929969104016,0.0328271365493335,0.0347190639599785,0.0368015573872343,0.0388505627885263,0.0408258740604435,0.0426786086232035,0.057365328211926,0.0717976070950468,0.0852814760457071,0.0982753728284516,0.1105080101180438,0.1259830866807611,0.136636413758005,0.1473627086902393,0.1572061729054306,0.1670312701068073,0.1786729857819905,0.1896146896200997,0.200339429280127,0.2092829866619981,0.2183409478725161,0.2273432650527622,0.236185393195699,0.2442358977821287,0.2504907467293007,0.2563820775236394,0.2637202525497814,0.2693804565057326,0.2745582412386975,0.2795265224052087,0.283312698759498,0.2880715191665948,0.2916036828363336,0.2958613685413228,0.3009224567840624,0.3039051695752387,0.3008686779178582,0.2985799547231941,0.2970612600216228,0.2952069402813004,0.2925489383125537,0.2897809661909486,0.2880379906601035,0.2880826643559014,0.2880804848154705,0.2882687522218272,0.2890130214658023,0.2900171269956887,0.2917110234412507,0.2926184339169851,0.2942598042734429,0.2976576483100309,0.2971088435374149,0.3002933649584919,0.3052201828459767,0.3093931377581237,0.312701073904572,0.3156560321149376,0.318875,0.3240754716981132,0.3273538432939864,0.3288685230877687,0.3324746173662676,0.3280381254964257,0.3299972951041385,0.3407631280695126,0.0,2.915027914274136,50.79825099615462,147.0028311590914,216.5506787584268,fqhc1_100Compliance_baseline,77 -100000,95751,47759,455.14929347996366,5135,52.45898215162244,4098,42.2136583429938,1505,15.394095100834456,77.3313489084019,79.69830279011926,63.31030609897547,65.06356183050728,77.13818092540306,79.50720134380302,63.23824112860283,64.99455623102824,0.1931679829988439,191.1014463162388,0.0720649703726366,69.00559947904128,210.50524,148.14784866024735,219846.51857421856,154721.98583852634,504.54636,338.8862329903806,526347.0982026297,353335.7176325893,459.9486,225.22446632689608,476157.053190045,232050.601490512,2890.63076,1336.0577484682242,2978718.081273303,1355160.0907230463,963.41987,431.3666049984612,990540.6836482123,434926.2259433196,1465.7604,621.1909623487077,1500080.291589644,621250.1477218003,0.38214,100000,0,956842,9993.023571555388,0,0.0,0,0.0,43781,456.6323067122014,0,0.0,41705,431.4733005399421,1236607,0,44389,0,0,0,0,0,94,0.971269229564182,0,0.0,0,0.0,0,0.0,0.05135,0.1343748364473753,0.2930866601752677,0.01505,0.3527110117384013,0.6472889882615986,23.67206327354579,4.138727251813314,0.3101512933138116,0.2733040507564666,0.2108345534407028,0.205710102489019,11.298582875698116,6.050218440650441,16.084596149359662,11597.097474097509,46.72944120359841,13.7225819717994,14.38550766541274,9.485665943595771,9.135685622790506,0.5758906783796974,0.8151785714285714,0.6774193548387096,0.5659722222222222,0.1150652431791221,0.7445008460236887,0.9071274298056156,0.8599439775910365,0.7074468085106383,0.1149425287356321,0.5075445816186557,0.7503805175038052,0.6061269146608315,0.5266272189349113,0.1150971599402092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046626612225,0.0045833882596306,0.0067292565338746,0.0090835196098354,0.0109157866894545,0.0131885814382173,0.0153970082899124,0.0176542062754627,0.0197813212777056,0.0218878669316016,0.0238246636035444,0.0260029794010376,0.0279813114889062,0.0298258270637947,0.0317912512128155,0.0341126472200105,0.0362523686744742,0.0383418076164781,0.0405089344185611,0.0426613339999166,0.0578822104845612,0.0719278419554662,0.0849793871749415,0.0985919936066625,0.110610885013601,0.1258130360750055,0.1371802081896414,0.1471509212908723,0.1571253005610473,0.1662553648068669,0.178080715555795,0.1898192764561293,0.201125589192602,0.2110833825879468,0.219769694834647,0.2296599272856256,0.2388406314896277,0.246857310059984,0.2542803653486129,0.2609462710505212,0.2665146745671697,0.2724771716225708,0.2772761742262666,0.2824012387914581,0.2873665264028409,0.2910810277654485,0.2951997196916608,0.2987009682303396,0.3027711920401104,0.3051254319554723,0.3024122984142369,0.2992868234097811,0.2967800899887514,0.2940777805015213,0.2922589433783463,0.2894985808893093,0.2862230907429003,0.2861463015937883,0.2866724545903342,0.2879272365522632,0.2875491676453591,0.2889417594085492,0.2905605334444676,0.2914405196191832,0.2934322287354947,0.2955011020355244,0.2953825260298777,0.298442094725646,0.3025389599019436,0.30698522128452,0.3119727891156462,0.3196397535155633,0.3241387918122815,0.3295437434121367,0.3321939953810623,0.3332561102745279,0.3352652697280428,0.3393797542422469,0.3430015965939329,0.3421346225362588,0.0,2.2252314005069995,51.54611183080375,150.6158278006011,215.1897577354063,fqhc1_100Compliance_baseline,78 -100000,95488,47662,456.18297587131366,5064,51.71330428954423,4016,41.4502345844504,1525,15.593582439678285,77.22623088476638,79.71232013029656,63.24095407219974,65.07567882977659,77.03352127761154,79.52239995039385,63.16875220058724,65.00660427678442,0.1927096071548391,189.92017990271395,0.0722018716125063,69.07455299217702,211.56784,148.751130183764,221564.845844504,155779.9201823936,501.7711,336.1966129762563,524860.5688672923,351482.24445292784,454.53298,222.2331003394736,471505.94839142094,229275.0257188225,2838.72512,1322.8479500386786,2932890.3422419573,1346903.328881108,974.97354,443.1275936721193,1005491.1926105898,448514.455923382,1490.1355,629.6215425939998,1525680.169235925,631859.705343914,0.38063,100000,0,961672,10071.129356568365,0,0.0,0,0.0,43685,456.8427446380697,0,0.0,41243,427.5092158176944,1229799,0,44232,0,0,0,0,0,84,0.8692191689008043,0,0.0,1,0.0104725201072386,0,0.0,0.05064,0.1330425872894937,0.3011453396524486,0.01525,0.3517045454545454,0.6482954545454546,23.44880605752572,4.173541676456775,0.3182270916334661,0.2634462151394422,0.2084163346613546,0.209910358565737,11.723885182251813,6.422312054018485,16.176943991023187,11507.074684075753,46.03867444242731,12.895799981225316,14.615912238183764,9.24362478034864,9.28333744266959,0.5794322709163346,0.8015122873345936,0.7034428794992176,0.5663082437275986,0.1257413997627521,0.7542955326460481,0.9311926605504588,0.853185595567867,0.7374301675977654,0.1702127659574468,0.5080645161290323,0.7106109324758842,0.6444929116684842,0.5197568389057751,0.1129770992366412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205147692151,0.0044326331057847,0.0066907628891099,0.008622267412303,0.0107203942010099,0.0129949548998624,0.0152756660782252,0.0176772321337338,0.0198266954484536,0.0217005973299453,0.0238239430114038,0.0257456893449449,0.0277714850587968,0.0298695271002011,0.0323400562076376,0.0343942186238171,0.036234063961992,0.0381073158562192,0.0400470897100649,0.0419764430707543,0.0566574906582652,0.0705847793701084,0.0829968454258675,0.0953861394486131,0.1079878686688294,0.1241852232620746,0.1354865459648526,0.1462956640491635,0.1561562848084997,0.1649396994647118,0.1769342056962708,0.1881256846603542,0.198229432415342,0.2077651598193537,0.2163471085320918,0.2259186417325022,0.2344545240998221,0.2431634240367924,0.2512765110593051,0.2581118913213089,0.2643253020429933,0.2699936695505381,0.2759925506802842,0.2805084643942762,0.2847047930017788,0.2890484961615961,0.2921527507440383,0.2966944575667428,0.3001194556975174,0.3041563628188682,0.3021309904584531,0.2979411967224403,0.2961694571283612,0.2939426756190889,0.292407396396932,0.2897817825180826,0.2872173541016337,0.2869093598487961,0.2869874612976616,0.2876107775871926,0.2885576797049076,0.2900760343635825,0.2910759837745159,0.2904909549195869,0.2923669970789637,0.2948428456487321,0.2954667876279307,0.2997402272229351,0.3047063345096258,0.3067593726543673,0.3094038051128366,0.3137037623344414,0.3193293024995325,0.3217933313307299,0.3267991901343641,0.3303198887343532,0.3292941532868828,0.334211059347782,0.3360723089564503,0.3421650264950794,0.0,2.343937688867541,50.58324433512083,152.58398875668513,206.2665892866178,fqhc1_100Compliance_baseline,79 -100000,95708,47556,454.0477285075438,5144,52.50344798762904,4093,42.18038199523551,1562,15.93388222510135,77.36399481233721,79.75005070624101,63.33329461681414,65.09796624616786,77.15766414546022,79.54625336180183,63.25564498036096,65.02399862082596,0.2063306668769939,203.79734443918096,0.077649636453188,73.9676253418935,213.015,149.74982899409346,222567.6014544239,156465.32055219362,506.06966,339.50364839303217,528176.0458895807,354140.42545349634,458.305,224.34592765167616,475704.8000167175,231970.23191631396,2889.70317,1347.2698095400176,2980137.4806703725,1368534.103251575,962.46533,439.7052771245334,991086.6803193046,444964.0753062408,1516.53534,653.3260758765521,1548396.0588456555,650609.4927056904,0.37899,100000,0,968250,10116.709157019268,0,0.0,0,0.0,44060,459.7421323191374,0,0.0,41573,431.1656287875622,1227834,0,44124,0,0,0,0,0,77,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05144,0.1357291749122668,0.3036547433903577,0.01562,0.3567316620241411,0.6432683379758589,23.57997826391753,4.169671408822845,0.3185927192768141,0.2619105790373809,0.2110921084778891,0.2084045932079159,11.187093679158233,6.006123492261422,16.82451538592635,11425.72331826224,46.86698458040776,13.133007163814018,14.794622743289295,9.59079791323562,9.348556760068826,0.5778157830442219,0.8171641791044776,0.6878834355828221,0.5775462962962963,0.1090269636576787,0.7431874483897605,0.9465478841870824,0.8595988538681948,0.7303921568627451,0.124401913875598,0.5083275503122832,0.723916532905297,0.625130890052356,0.5303030303030303,0.1040372670807453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0042796150374719,0.0065276536993421,0.0087708600117893,0.0108264311443049,0.0127554659005236,0.0149944918193316,0.0171269251194901,0.019279351150113,0.0213395590780163,0.023627618881585,0.025778489852929,0.0280089282959092,0.0301800084491659,0.0320449971618762,0.0337479450355159,0.0358204626205496,0.0378353136512219,0.0399060300828473,0.0418837257762033,0.0565093886417277,0.0700432275148889,0.0835711288292068,0.0966127183434815,0.1083260427317093,0.1233519765708425,0.1349316593678093,0.1457278413684524,0.1550967686838818,0.1641141607810775,0.175519208006026,0.1861662430371532,0.1964922581767571,0.2061933452155752,0.2155639883407578,0.2249147588894301,0.233751603368468,0.2424242424242424,0.2501474792394609,0.2575036058517823,0.2632321480196589,0.2690072837384401,0.2746778068379507,0.2798226695422957,0.2843890770893284,0.288167516064702,0.291964140586904,0.2950067956355507,0.2985142118863049,0.3017320803390455,0.2985012489592006,0.2957901092266315,0.2926702526578936,0.290849626118403,0.2892309969654356,0.2855989027735446,0.2828115900971087,0.2830600736660256,0.2829977438889925,0.2835078998757322,0.2838951450518308,0.2847200377477194,0.2855535647318638,0.2876623810690969,0.2890935182970581,0.2905322828093715,0.2914807129253248,0.2947006409254338,0.298402600580237,0.3020401720531944,0.3070250734131466,0.3085263157894737,0.3096016086464748,0.3115627616655249,0.3181689742865216,0.325062329336341,0.3232805046930297,0.3238948869423508,0.3243019076582803,0.3294618660472319,0.0,2.228467183819948,52.81768242583885,149.9615612772887,212.3880290549465,fqhc1_100Compliance_baseline,80 -100000,95667,47370,451.7858822791558,4995,50.96846352451733,3974,40.9441082086822,1499,15.261270866652032,77.31725194233033,79.72223523353433,63.30264576078415,65.08368761591308,77.1206972612601,79.53127959774427,63.22877051032406,65.01474350565957,0.196554681070225,190.95563579006125,0.073875250460091,68.94411025351133,210.83216,148.42953620336826,220381.2809014603,155152.28469939294,503.39497,337.5718181415384,525583.1686997607,352249.4675714076,460.87435,225.94412337862536,477805.0424911411,233267.44461726584,2809.10318,1312.3851451300409,2894649.764286536,1330141.5902349197,909.63852,413.8381423219018,936323.2776192416,418066.8488840468,1465.00814,624.6163851935202,1492661.8792269016,618711.8560182849,0.37996,100000,0,958328,10017.330950066376,0,0.0,0,0.0,43773,456.9078156522103,0,0.0,41791,432.9392580513656,1236568,0,44365,0,0,0,0,0,83,0.8675927958439169,0,0.0,1,0.0104529252511315,0,0.0,0.04995,0.1314612064427834,0.3001001001001001,0.01499,0.3434208006129094,0.6565791993870906,23.538648390548968,4.1933535772459445,0.3193256165072974,0.2697533970810267,0.2028183190739808,0.208102667337695,11.268936840713284,5.802687980934774,16.02728509126932,11458.304789699509,45.46196001531077,13.057715469260971,14.46853176283619,8.871542142805097,9.064170640408516,0.5805234021137393,0.808768656716418,0.7013396375098503,0.5732009925558312,0.1064087061668681,0.7589958158995815,0.9328859060402684,0.8402061855670103,0.7527472527472527,0.1516853932584269,0.5037783375314862,0.72,0.6401816118047673,0.5208333333333334,0.0939907550077041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022085566373205,0.0043705318663489,0.0065965068958868,0.008830493145952,0.0108663580403927,0.0130793521442395,0.0150776324648562,0.0177039065053939,0.020011867978965,0.0220988248793631,0.0239047912178106,0.0262438603341622,0.0284208467580059,0.0303420830154442,0.0325225923057061,0.0346814828610154,0.0366028112949371,0.0384239931875298,0.0404615256564983,0.0424675812033523,0.0570965888314266,0.0716701747772088,0.0846665826824557,0.0970012626262626,0.1092543359918977,0.1249272386677532,0.1361629412638774,0.1462271686458278,0.1556745433753353,0.1654508003261382,0.1766144234394355,0.1873653673374395,0.197991032561379,0.2080126977176947,0.2175718392387078,0.2267916708223899,0.235233079686698,0.2441742768455621,0.2529743339646823,0.2592910528906134,0.2644861326363026,0.2700939823257118,0.2747902838415031,0.2795711804515781,0.2831171670067036,0.286543438077634,0.2901890143981186,0.294015225652301,0.2969184415047006,0.3004608901764551,0.2983919719501874,0.295206194058536,0.2923783571187774,0.2899799685838221,0.2867066437095529,0.283973858609976,0.2810989288761098,0.282897430438414,0.283754807528675,0.2839396470525511,0.2843276338385724,0.2868865362666771,0.2879110776816681,0.2879203155291129,0.2891450528338136,0.2891027308192457,0.2902695035460993,0.2930527763881941,0.2972434755266743,0.3002052415535207,0.3016341352700862,0.3076353637901861,0.3091684434968017,0.3148021569074201,0.3200112317484088,0.3200234879624192,0.322964318389753,0.322866344605475,0.3238833912810912,0.3304769001490313,0.0,2.312577197446152,51.78456735673596,143.71745581901243,205.30691532817175,fqhc1_100Compliance_baseline,81 -100000,95864,47684,454.9152966702829,5139,52.574480514061584,4034,41.57973796211299,1558,15.94967871150797,77.4717338221379,79.75720669065917,63.40399372213196,65.0902245768368,77.27911911226454,79.56668680267296,63.3329311891474,65.0223502881495,0.1926147098733679,190.51988798621267,0.0710625329845626,67.87428868730672,212.06174,149.16191285093353,221211.02812317447,155597.4222345547,502.57987,337.0496503895964,523761.1303513311,351089.199688722,459.79676,224.4256782430149,476364.9753817909,231667.76342137935,2926.23542,1337.7984375093886,3016912.5532003674,1359943.3233637116,974.09951,427.6434479783856,1003144.6006843027,433111.989879814,1532.02012,637.8893169102338,1568892.013686055,639396.9044007414,0.38161,100000,0,963917,10055.046732871568,0,0.0,0,0.0,43595,454.2372527747642,0,0.0,41730,432.0287073353918,1238042,0,44386,0,0,0,0,0,75,0.7823583409830593,0,0.0,0,0.0,0,0.0,0.05139,0.1346662823301276,0.3031718233119284,0.01558,0.349814126394052,0.6501858736059479,23.909654531301324,4.167810408276176,0.3076351016360932,0.2521070897372335,0.214427367377293,0.2258304412493802,10.791786037821405,5.58310337925284,16.501171613457906,11532.946617505744,45.71955683741986,12.300737029933082,13.954301662154744,9.607251484115467,9.857266661216563,0.5728805156172534,0.7984267453294002,0.6954069298952458,0.6,0.128430296377607,0.7454873646209387,0.9002375296912114,0.8694267515923567,0.7486910994764397,0.1703296703296703,0.5075187969924813,0.7265100671140939,0.6364617044228694,0.5578635014836796,0.1179698216735253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021864561190403,0.0044169342829066,0.0067229106248352,0.0087596427121396,0.0107613202178684,0.0130841311668888,0.0153308613804905,0.0173298381256438,0.019647488920205,0.0218031579808557,0.0239251111247669,0.0258961078919029,0.0278088819945964,0.0296741400775807,0.0318420781362746,0.0336331436714546,0.0356455717152491,0.0376631048742317,0.0396129045656079,0.0416376143447357,0.0559946612166586,0.0703637884173113,0.0841498559077809,0.0966430260047281,0.1083872599650091,0.1242176928281461,0.1354002099392448,0.1467991404803948,0.1567030339261695,0.1658093278463648,0.1786617316361993,0.1903202800829875,0.199874060885048,0.2088809326289132,0.2176252278367042,0.2276434444346211,0.2368157320386619,0.2446883733459039,0.252244195655373,0.2577589359173599,0.2647520365541273,0.2710749967940123,0.2759145621902289,0.2810143524659712,0.2851186074982727,0.2892604659740579,0.2928829042442999,0.297230784843526,0.3015012456595541,0.3040780374937554,0.3014424689701442,0.2988938477124004,0.2967188529300461,0.2946551724137931,0.2933006294512249,0.2895481946051269,0.2857187809751569,0.2861220761426288,0.285658539895828,0.2869189342403628,0.287443971209106,0.2891058440667333,0.2902254077074893,0.2909179536037932,0.2936177303782702,0.2946384780195668,0.2961471300625246,0.2999751676185746,0.3039296794208893,0.3077702834418496,0.3128598848368522,0.3169850824391521,0.3204856787048568,0.3262347077480743,0.3305196023260176,0.333648393194707,0.3374020494273659,0.3360444356278516,0.341122750470051,0.3476796407185629,0.0,1.9869309735544367,48.31511361651414,149.3604210976567,218.0799139369318,fqhc1_100Compliance_baseline,82 -100000,95748,47515,452.7614153820445,4996,51.05067468772194,3944,40.67970088148055,1515,15.509462338638926,77.34438518034166,79.69766400966193,63.33412346583962,65.0724263024749,77.14665317570174,79.50144475012726,63.25940342408748,65.00069932792307,0.1977320046399171,196.2192595346721,0.0747200417521369,71.72697455182231,213.03392,149.84695282256146,222494.381083678,156501.39201086338,502.85143,337.5702849267939,524671.3038392448,352051.8411132872,455.72244,223.0140327799324,472971.1847767055,230629.0608627829,2792.98179,1295.2415223407197,2882963.9574716967,1318839.9881256118,939.97792,421.1519932419248,965913.6796591053,424177.7110559261,1478.04204,630.2887014221695,1514547.7921209843,631919.2583772555,0.37883,100000,0,968336,10113.380958348998,0,0.0,0,0.0,43735,456.22885073317457,0,0.0,41223,427.5076241801395,1228184,0,44114,0,0,0,0,0,78,0.8146384258679032,0,0.0,0,0.0,0,0.0,0.04996,0.1318797349734709,0.3032425940752602,0.01515,0.3577329490874159,0.6422670509125841,23.68737694802288,4.110343612040588,0.3078093306288032,0.2685091277890467,0.2112068965517241,0.2124746450304259,11.061279055283524,5.855691373698981,16.214680714832653,11442.17348388242,44.98710464293768,13.017229862713055,13.678416353366718,9.196891911671743,9.094566515186177,0.5780933062880325,0.7922568460812087,0.700164744645799,0.5846338535414166,0.1241050119331742,0.7351676698194325,0.8938053097345132,0.84,0.7246376811594203,0.1564245810055866,0.5124056094929881,0.7166392092257001,0.6490438695163104,0.5383386581469649,0.1153262518968133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892103237308,0.0047144464834284,0.0069907365131545,0.0090186161299168,0.011295931024666,0.0134679791923284,0.0154093883125089,0.017776417164141,0.0198220106057974,0.0220198506088202,0.0240491023854414,0.0261313134423335,0.0281622077361245,0.0303292448069535,0.0324331015700757,0.0345978567516456,0.0364968792373539,0.0387124205373902,0.0408122966919903,0.0425915316910577,0.0566053494247593,0.0704381586245147,0.0833840280254242,0.0955054998212295,0.1077521668529492,0.1228812215161095,0.1338297059946544,0.1453603421494989,0.1553955912508544,0.1647405660377358,0.1766187631196512,0.1879171399210341,0.1984386722190208,0.2082677509618747,0.2178527047386537,0.2270291812425275,0.2362891797498298,0.2441723172418446,0.2511598888321706,0.2576161745681019,0.263086673914552,0.2691992795153103,0.2736220705320067,0.2771262052093826,0.2814139941690962,0.2856438146681959,0.2891572301833851,0.2940150038847069,0.2975195907000842,0.3006782613285477,0.2981096535486041,0.2955419964819701,0.2932164762815823,0.2913696060037523,0.2895814781834372,0.2860160411436968,0.281326645252148,0.2810682395346932,0.2825134282547532,0.2820165672040616,0.2823463478423314,0.284718804747938,0.2860183639398998,0.2872205256235928,0.2890817965996019,0.2904649412009034,0.2898028648418664,0.2958937576346039,0.2999965055736101,0.304500870115488,0.3079498665218768,0.3113247411789562,0.3147858705845576,0.319801905905305,0.3222594453750232,0.326323168594462,0.332525007578054,0.3397801302931596,0.3465455546380402,0.3494208494208494,0.0,1.9063191107524629,50.83468630999364,142.47151585395514,206.45734120224463,fqhc1_100Compliance_baseline,83 -100000,95662,47923,457.0675921473521,5164,52.66458991030921,4100,42.19021136919571,1549,15.77428864125776,77.28108161739658,79.66952366033183,63.29287913429015,65.05644468121646,77.08265069677596,79.47498320930016,63.21725532071022,64.98499040867658,0.1984309206206234,194.5404510316706,0.0756238135799307,71.45427253988146,211.51504,148.8903089676009,221106.646317242,155642.06159980022,505.26283,339.0338977176534,527504.4636323723,353737.52139580343,460.35362,225.29493644082865,477319.78214965184,232513.04221827563,2895.85492,1343.8052320105594,2982439.5057598627,1360008.772564403,967.4451,435.8786635230299,993711.703706801,438136.3217475807,1512.77512,649.1760878799968,1542334.364742531,644868.9427869474,0.38198,100000,0,961432,10050.30210532918,0,0.0,0,0.0,43921,458.4265434550814,0,0.0,41678,431.6761096360101,1229249,0,44061,0,0,0,0,0,83,0.8676381426271664,0,0.0,2,0.0209069431958353,0,0.0,0.05164,0.1351903241007382,0.2999612703330751,0.01549,0.3475124838172739,0.652487516182726,23.83041645594785,4.111251707594124,0.3263414634146341,0.2582926829268293,0.2095121951219512,0.2058536585365853,11.289003261415717,6.15395814824615,16.54683103592063,11573.004443708858,46.67738836610891,12.773842501130622,15.042290688021724,9.485543836624576,9.375711340331993,0.5795121951219512,0.8026440037771483,0.680119581464873,0.5948777648428405,0.1244075829383886,0.7321274763135228,0.9225181598062954,0.8485714285714285,0.7537688442211056,0.1105527638190954,0.5192242259271861,0.7260061919504643,0.6204453441295547,0.546969696969697,0.1286821705426356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0049878851164346,0.0068908125881648,0.0092247361095589,0.0114618717328071,0.0139403690277381,0.0159267491893876,0.0180503940866582,0.0201993355481727,0.0223236675912752,0.0241564220606781,0.0262639122756581,0.0283422459893048,0.0306417878154074,0.0328716509102918,0.0347515897223801,0.0366905953157856,0.0389533556141407,0.0410377505695353,0.0430264433349662,0.0586735759956538,0.0725018586192814,0.0855070486107466,0.0981271043771043,0.1110384266390934,0.12722309800146,0.138343949044586,0.148852319326836,0.1588576194345836,0.1677172033889205,0.1791068924603602,0.1908482989584575,0.2006099553425552,0.2099770014237214,0.2185502710803543,0.227378602009805,0.236405905956253,0.2439172749391727,0.2525736881576256,0.258705897191868,0.2648881578185272,0.271023219850512,0.275489998458565,0.2802146999843898,0.2845205079550431,0.2893279559946227,0.2927406628090478,0.295985833853523,0.299697916531615,0.3031676600018501,0.3003196180766274,0.2979069350860512,0.2956753855714366,0.2944881205750771,0.2919364682415636,0.2888231597983172,0.286173226352688,0.2867509440157609,0.2875911909928072,0.2874110534481836,0.2889962365893389,0.2900506569574165,0.2904938815775665,0.291459536925075,0.2920087641152818,0.2928060361649538,0.2941963396237156,0.2986054400402035,0.3038845804513379,0.3058327089166699,0.3100158263621976,0.3154203143128362,0.3187046761690422,0.3226049029929312,0.3269570062215619,0.3310217290799815,0.333383640205252,0.3420582986317668,0.3444771329232415,0.3449980981361734,0.0,2.5657918194040685,50.16405626612505,146.16503801822375,225.25788001011813,fqhc1_100Compliance_baseline,84 -100000,95736,47445,449.95612935572825,5133,52.39408373025821,4057,41.8860198880254,1633,16.733517172223614,77.3612597271838,79.72609462991721,63.34108899169471,65.08890767538153,77.1485593584723,79.51498157222127,63.26042299442117,65.01086769452944,0.2127003687115092,211.1130576959397,0.0806659972735417,78.03998085209685,210.60116,148.06509447507872,219981.15651374613,154659.78782806752,502.3473,336.87502718915573,524234.7288376368,351393.4924982852,455.83807,223.356992149686,473393.3316620707,231115.7403389364,2885.17559,1357.7548233810026,2980047.735439124,1384680.2615598186,965.19324,443.3916359417635,994984.3319127602,450069.7455468061,1591.96486,686.9205125564786,1632537.185593716,691289.9362506733,0.37977,100000,0,957278,9999.14347789755,0,0.0,0,0.0,43669,455.6175315450823,0,0.0,41278,428.3655051391326,1242631,0,44645,0,0,0,0,0,90,0.940085234394585,0,0.0,0,0.0,0,0.0,0.05133,0.1351607551939331,0.3181375413987921,0.01633,0.3550928531232414,0.6449071468767585,23.5411343560827,4.183823277949657,0.3049051022923342,0.2625092432832142,0.2164160709884151,0.2161695834360364,11.54929227834864,6.32934377474257,17.604764378022296,11560.210559717532,46.42871342546928,12.973214874335506,13.834533245926057,9.776502651062293,9.844462654145437,0.5698792210993345,0.7830985915492957,0.6855295068714632,0.5842824601366743,0.1334093500570125,0.7278797996661102,0.9174107142857144,0.845679012345679,0.7393364928909952,0.1441860465116279,0.5036726128016789,0.6855753646677472,0.628696604600219,0.5352323838080959,0.1299093655589124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238632104618,0.0046435234001135,0.007123865965781,0.0093364895205778,0.0117258212142784,0.0139712022158408,0.0162237676666734,0.0183897483024455,0.0207551606735714,0.0228398853398853,0.0250479324946428,0.0275663739536794,0.0294761958634591,0.0318729203795082,0.0340536189709615,0.0361215354237095,0.0383986082057867,0.0405225909553161,0.0426337243157807,0.0446669514571199,0.058493087750073,0.0726277448661321,0.0860553422703337,0.09877296098079,0.111177859280806,0.1263477231406705,0.1370114308739634,0.1465008140116409,0.1559455648607075,0.1651157804459691,0.1772078299631759,0.1891003104615817,0.1991563199895627,0.2078482811389845,0.2167522344741153,0.2263276123449413,0.2356823528100159,0.2444806471546542,0.2524965145143557,0.2597280717817249,0.266568006289599,0.2716363848805281,0.2762723692147563,0.2805503005340166,0.284645330293365,0.2896254842875592,0.2943535290443473,0.2976987686951218,0.3008965187130493,0.3037336955804967,0.3014619843714274,0.2984920896506262,0.2962020332691199,0.2933493057760586,0.2912696292338291,0.2878862037320281,0.284170616113744,0.2845420597484276,0.2847702421909596,0.285569214323891,0.285011779664186,0.2866711451829605,0.2865724751439037,0.2875758657622277,0.2882218753751951,0.2887087102745261,0.2915977411442587,0.2951577887549948,0.2984860166818532,0.302498017446471,0.3066400942114322,0.3087075402250499,0.3145241654210264,0.318660647103085,0.3219317760474601,0.3243939571378381,0.3289971260021176,0.3313906752411575,0.3224467201771381,0.3230403800475059,0.0,1.9243992935259773,52.35165916363532,147.72230609773226,212.813062787177,fqhc1_100Compliance_baseline,85 -100000,95644,47473,452.1872778219229,5014,51.074819120906696,3984,40.98532056375726,1507,15.23357450545774,77.2430810454354,79.64775016488463,63.27207635196621,65.05012222523021,77.04506688585455,79.45792860580207,63.1948423616352,64.97970923911649,0.1980141595808504,189.82155908256004,0.0772339903310168,70.41298611372326,211.15886,148.56773493223193,220775.85630044749,155334.08779665417,501.40047,336.79846355870103,523580.8832754799,351482.812749747,458.00358,224.44160942483305,475534.1056417548,232030.8121675661,2829.22319,1336.1465369084603,2909843.053406382,1348834.8000081333,933.46119,426.6334565646089,957693.9902137092,427846.679787944,1468.48272,642.1488394841297,1486360.796286228,628487.5998753415,0.38016,100000,0,959813,10035.266195474886,0,0.0,0,0.0,43632,455.5016519593492,0,0.0,41491,430.4713311864832,1232232,0,44246,0,0,0,0,0,84,0.87825686922337,0,0.0,0,0.0,0,0.0,0.05014,0.131891835016835,0.3005584363781412,0.01507,0.3536259541984732,0.6463740458015267,23.342503822219435,4.212566182820768,0.3232931726907631,0.2600401606425703,0.2128514056224899,0.2038152610441767,11.405780406565048,6.080134244553665,16.400503772533575,11569.177821283542,45.84110222991115,12.663089465025593,14.70834652499995,9.451239289832811,9.018426950052802,0.5835843373493976,0.8108108108108109,0.7142857142857143,0.5613207547169812,0.1096059113300492,0.7294407894736842,0.9101654846335696,0.8582474226804123,0.6807511737089202,0.125,0.5195086705202312,0.7422512234910277,0.6522222222222223,0.521259842519685,0.1048387096774193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0046456900574118,0.0068322792199222,0.0090836119042054,0.0114633873445017,0.0136055807322165,0.0156716798368595,0.0179402875347165,0.0203902159685863,0.0223441948102484,0.0244280132497872,0.0264133504492939,0.0286622238677033,0.0307110625759792,0.0328247899419889,0.0349206349206349,0.0368075915009997,0.0389865166440041,0.0410264945440171,0.043049430212797,0.0584921829278488,0.0717241234823963,0.0855504924298103,0.098214661669965,0.110286353845504,0.1256167545475721,0.1367253487457901,0.1470472210079643,0.1566449431228397,0.1656694774155432,0.1773916797064695,0.1881911618023331,0.19935512685047,0.2087600354870154,0.2184696104583232,0.2278698710693917,0.235805174765749,0.2441586546589871,0.252088898993918,0.2590248153754415,0.2655656003708855,0.2705310615375607,0.2762835317107834,0.2802922159711142,0.2849218417371206,0.2883008528442541,0.292924102666934,0.2971164142573045,0.3011679211004412,0.30394023535634,0.3018613615839769,0.2989716268120431,0.2970678250567677,0.2947618152096865,0.2935722471090738,0.2904650200082793,0.2874673008323424,0.2873865579376561,0.2879401363333504,0.2886721331975633,0.2889022353184062,0.2900441470512541,0.2913115406361904,0.2916675977029473,0.2938352218167851,0.2963494132985658,0.2968517883670438,0.3022378677395021,0.3051578947368421,0.3096442656256224,0.3117620137299771,0.3167305236270754,0.3184765502045955,0.3217027746104143,0.3280542986425339,0.3309742863882991,0.3329749654430963,0.3412907141412098,0.3464159171436358,0.3474285714285714,0.0,2.564134486133024,52.64150285618099,144.0656886592052,205.20871540816157,fqhc1_100Compliance_baseline,86 -100000,95831,47564,452.9432020953553,5106,52.19605346912794,4011,41.416660579561935,1563,16.007346265822125,77.44904619750217,79.77457772617028,63.38601454967061,65.10652968128103,77.2529584973124,79.57964361797424,63.31273099460273,65.03541372168505,0.1960877001897643,194.93410819603696,0.0732835550678814,71.1159595959856,212.45752,149.3728474665685,221699.28311298013,155870.27474679874,503.6857,337.64382169404166,525159.2490947605,351895.28444838023,455.2331,222.9702096447076,472162.9222276716,230444.63055039756,2869.91374,1332.030522058924,2967011.6350658974,1362392.7418730834,919.48536,413.8208747891067,949716.5113585376,422176.1018997817,1531.2626,652.6534232259996,1570614.8741012826,657677.1849323735,0.37984,100000,0,965716,10077.240141499096,0,0.0,0,0.0,43780,456.376329162797,0,0.0,41195,427.0434410576953,1237561,0,44422,0,0,0,0,0,86,0.8869781177280838,0,0.0,1,0.0104350366791539,0,0.0,0.05106,0.1344250210614996,0.3061104582843713,0.01563,0.3550751879699248,0.6449248120300752,23.516675722059045,4.199567873153049,0.3056594365494889,0.2682622787334829,0.2076788830715532,0.2183994016454749,11.043243408661771,5.7186503494395575,16.658435995880144,11496.504416626109,45.70681133395235,13.117220523239236,13.796050697749903,9.206446453164585,9.587093659798631,0.5669409124906507,0.7871747211895911,0.7014681892332789,0.5654261704681873,0.1095890410958904,0.7276595744680852,0.8909512761020881,0.8719512195121951,0.6964285714285714,0.1510416666666666,0.5003526093088858,0.7178294573643411,0.6391982182628062,0.5172413793103449,0.097953216374269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381333360339,0.0047743099550951,0.0069911621158158,0.0090409483853272,0.0111555162349878,0.0133994481382301,0.015609228918365,0.0178711764765919,0.0199693408277976,0.0218763749475601,0.023763898140083,0.0259954844006568,0.0280119243421052,0.0297960402359796,0.0321469456791906,0.034381586015951,0.0362450838335748,0.0382920481527949,0.0403104318826426,0.0424938320442219,0.0570275175766173,0.0718654274393367,0.0858196832982257,0.0979335413449315,0.1103723684487809,0.1257304688738362,0.1358398965433171,0.1464301665284246,0.1560069559280082,0.1658545988027799,0.1784592885715514,0.1893614492972809,0.2001042209484106,0.2091553906591008,0.2176504813867451,0.2278690880152089,0.2364221521877123,0.2446943425024971,0.2521165338645418,0.2580844137300817,0.2641370078013202,0.2694806330841274,0.2746691514708311,0.2795689933222635,0.2840086217335497,0.28927294837307,0.2929869611827179,0.2963620005828908,0.3003352675693101,0.3024618375765219,0.2999932980363246,0.2967829446743211,0.2947675396780887,0.2921191548120765,0.290067653401873,0.2865903764798977,0.2839659397976497,0.2837661702890286,0.283865503514864,0.283564650899306,0.2839382282432959,0.2841220716132571,0.2849273494501839,0.285907798898561,0.2876676370925404,0.288422355763031,0.2886455363946826,0.292115588216977,0.2968216351850561,0.3024899850757992,0.305021222794184,0.3070633539062088,0.3102628285356696,0.3122833458929917,0.3146866230121609,0.3157400891391039,0.3207575757575757,0.328965934287442,0.3282401091405184,0.335469280060309,0.0,1.6562562889643535,51.61353467048122,147.53429966986607,207.33302893307243,fqhc1_100Compliance_baseline,87 -100000,95795,47860,455.4413069575656,5174,52.57059345477321,4113,42.22558588652852,1634,16.597943525236182,77.3497797498425,79.68080838810538,63.33168066437421,65.05897791792066,77.14228714744591,79.48121178507651,63.25182116495247,64.98547013788996,0.2074926023965844,199.5966030288656,0.0798594994217438,73.50778003069536,210.92764,148.446141732204,220186.2518920612,154962.0906458626,500.74554,336.01587402325305,522042.6535831724,350082.6066237832,461.64736,226.50054247301716,477731.75009134086,233219.84495636864,2945.56916,1374.8995492173526,3025794.2376950784,1386249.0606152231,971.32321,441.7346756376276,994225.9721279816,441564.6620264365,1595.58346,687.3864444324122,1622336.092697949,679051.9238923129,0.38069,100000,0,958762,10008.46599509369,0,0.0,0,0.0,43529,453.6771230231223,0,0.0,41690,430.9515110391983,1238126,0,44393,0,0,0,0,0,82,0.8559945717417402,0,0.0,0,0.0,0,0.0,0.05174,0.1359111087761695,0.3158098183223811,0.01634,0.3451917732073374,0.6548082267926626,23.682881242879365,4.134401332588388,0.3082907853148553,0.2569900316070994,0.2144420131291028,0.2202771699489423,11.129373876326309,5.879700038587597,17.47822407982152,11545.572731344557,46.90277178274851,12.92819022138977,14.252236474173223,9.839759078019206,9.8825860091663,0.5696571845368344,0.8088930936613056,0.6703470031545742,0.6145124716553289,0.1059602649006622,0.7259136212624585,0.9253393665158371,0.8376068376068376,0.7081339712918661,0.1138613861386138,0.5049845307665864,0.7252032520325203,0.6063249727371864,0.5854383358098069,0.1036931818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044713922151135,0.0068910223882111,0.0091842851192229,0.0115756281151459,0.0140013237615192,0.0159563621533442,0.0180986699059849,0.0202175068481949,0.0224160167045384,0.0244900051255766,0.0266340842351684,0.028728895469595,0.0308094693810303,0.0329059344150686,0.0348836007811612,0.0371206161235559,0.0392813799827813,0.0413125246773757,0.0431468910082878,0.0581011997913406,0.0719880368515168,0.0852497851198088,0.098109281232593,0.1102467613235092,0.1252511367241197,0.1358206738521599,0.1464899675341955,0.1557772839928211,0.1646784955695252,0.1769225795327183,0.1891906519597761,0.1996583874582503,0.2093409717059518,0.2178017383650566,0.2273951349254723,0.2360012053975021,0.2435244232997042,0.2513247024383602,0.2583360051298493,0.2645936003331713,0.270405836753306,0.276108455969337,0.2810355770036762,0.2844760609886375,0.2892413402455392,0.2937221132094337,0.2974409173542162,0.3000698468543046,0.3027889496934133,0.3005221791559,0.29799501850858,0.2961951164559101,0.2937849020572321,0.2923687260408308,0.2888456887446616,0.2858024105532884,0.2859672421425409,0.2869577089804417,0.2882707679132172,0.2885554453778368,0.2894929038116105,0.2911164967407655,0.2916313889755358,0.2935949027498323,0.2940840388510881,0.2937691348225422,0.2967510153077163,0.3010360172437769,0.3057864199466834,0.3092238927265339,0.3116494141138143,0.3152207857098245,0.3185336976320583,0.3204327147253567,0.3215704603879411,0.3245614035087719,0.331018059138718,0.3347627981774323,0.3366298972993534,0.0,2.765937236129588,51.71574702154114,148.7459641781096,216.95871393061532,fqhc1_100Compliance_baseline,88 -100000,95796,47833,455.8541066432836,5118,52.256879201636806,4018,41.30652636853313,1545,15.773101173326651,77.41775944651599,79.7478359876685,63.37436231324406,65.09601815434175,77.2233647666072,79.55343662001322,63.301731831249626,65.02509687155444,0.1943946799087825,194.3993676552793,0.0726304819944374,70.92128278731025,212.71492,149.62988716631804,222049.89769927764,156196.38311236174,505.57645,339.13855493539006,527143.9621696104,353401.95304124395,458.06388,224.57704404841832,473558.35316714685,230890.6076487687,2872.68368,1338.0904325880945,2957559.7519729426,1355789.6040671098,935.73534,430.1856375852444,959201.3340849304,431539.40516305313,1508.24876,641.8409103155357,1541746.1689423358,644064.7231257652,0.38219,100000,0,966886,10093.177168148984,0,0.0,0,0.0,43884,457.43037287569416,0,0.0,41497,428.640026723454,1233420,0,44218,0,0,0,0,0,95,0.9812518267986136,0,0.0,1,0.0104388492212618,0,0.0,0.05118,0.133912451921819,0.3018757327080891,0.01545,0.3533370723499719,0.6466629276500281,23.61021139876151,4.117684866812889,0.3061224489795918,0.2625684420109507,0.221005475360876,0.2103036336485813,11.168385153579678,6.001896320645415,16.470448883697735,11523.210070749808,45.76108728575655,12.870714921913969,13.739757167282942,9.888972354438916,9.261642842120729,0.5769039323046292,0.809478672985782,0.6910569105691057,0.5900900900900901,0.1065088757396449,0.7564322469982847,0.9361233480176212,0.85625,0.7663551401869159,0.1067415730337078,0.5035063113604488,0.7138103161397671,0.6329670329670329,0.5341246290801187,0.1064467766116941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025415405178262,0.0048452657293746,0.0071130683605442,0.0094858930348763,0.0116021312942324,0.0139358280060263,0.0160024462338191,0.0184024659100187,0.0205646067989942,0.0227514635444385,0.025020500205002,0.0271715699357408,0.0289773136108055,0.031018366002306,0.0330260661552421,0.0350030985333608,0.0368825739152031,0.0389483832844362,0.0406689866514309,0.042734597847134,0.0569443285201569,0.0711582688689107,0.0847868013919751,0.0976145208558733,0.1095301787237627,0.1256206554121152,0.1369616337944622,0.1472630045820354,0.1566801101081877,0.1655222649513138,0.1777091914097366,0.1885579717190048,0.1993312198723238,0.2090502183406113,0.2173316050793093,0.2265889432117337,0.2360047700246302,0.2441050976869526,0.2517525282839379,0.2580836954036131,0.2648733555860986,0.270109710550887,0.2756849921495945,0.2809846183288281,0.2860087543802214,0.2901586911059171,0.2932328011284906,0.2969713894036709,0.3008988996228754,0.3037210464703329,0.3011178357197493,0.2979847898306015,0.2956464324347105,0.2938811969629298,0.2917864233014312,0.2887667048491791,0.2846572532933659,0.2845928663712038,0.2839183174204071,0.284159119161783,0.2846301579310473,0.2852547758208135,0.2853636722893571,0.2867273895795935,0.2875776397515528,0.2887262003311258,0.2883012684690793,0.2923105682951146,0.2954055744769583,0.2986951737148247,0.3021190261496844,0.3043615510075235,0.3075290298414284,0.310220078384082,0.3134746474927631,0.3173349056603773,0.3183560803557737,0.3188580619219944,0.3237274441152706,0.3228376327769347,0.0,2.395164098475314,50.37892619117433,146.99493743521126,210.84265444526685,fqhc1_100Compliance_baseline,89 -100000,95721,48031,457.9872755194785,5178,52.89330449953511,4118,42.43582912840442,1584,16.140658789607297,77.3893283971574,79.74911468592416,63.35181630130408,65.09300719584026,77.19419448313289,79.55851257346552,63.277365778520696,65.0232525688711,0.1951339140245096,190.60211245863456,0.0744505227833798,69.75462696915713,211.01938,148.53195835432896,220452.5443737529,155171.75787374657,502.62405,336.86880805255674,524524.5870812048,351359.61602214427,461.8905,225.8768160249971,479059.40180315706,233351.02512143968,2918.25636,1359.4185963564053,3008395.4095757464,1380023.0921086469,981.65178,442.7774257223944,1009536.9145746492,446645.9689350389,1549.47938,658.1017789355341,1580740.2973224267,654823.1103325486,0.38475,100000,0,959179,10020.570198806949,0,0.0,0,0.0,43731,456.25306881457567,0,0.0,41872,433.8964281610096,1238261,0,44389,0,0,0,0,0,80,0.8357622674230315,0,0.0,1,0.0104470283427878,0,0.0,0.05178,0.1345808966861598,0.3059096176129779,0.01584,0.3484314089474661,0.6515685910525338,23.40729668331805,4.140133671848964,0.307673627974745,0.2625060709082079,0.2183098591549295,0.2115104419621175,11.299456122410476,5.998205050952426,16.787033843811617,11591.6323244109,46.949606435250814,13.116621464403504,14.361490214735568,9.849681646593504,9.621813109518236,0.5876639145216125,0.8251618871415356,0.7119179163378059,0.5661846496106785,0.1343283582089552,0.7352445193929174,0.9186046511627908,0.8727810650887574,0.6796116504854369,0.1981132075471698,0.5279672578444747,0.7634408602150538,0.6533907427341227,0.5324675324675324,0.1138088012139605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020053272835917,0.0044594443937689,0.0065832851505837,0.0088238579247179,0.0111524541498922,0.0133135191254605,0.0156530246209033,0.0178159629395318,0.0198228207669592,0.0220712378106805,0.0240291013423506,0.0263676283498173,0.0284730785039046,0.0303036541430777,0.0325478265353478,0.0348875661375661,0.0369289064198527,0.0390651743203012,0.0410170055299155,0.0429419731222002,0.0575495243366297,0.0712118041021347,0.0846156266717014,0.0976499658272435,0.1105594383479333,0.1261157409365878,0.1362122369314324,0.1474120126897609,0.15729760912762,0.1666934731559816,0.1776976093043291,0.1890374505095086,0.1999499880406184,0.2095439087598823,0.2187503438259855,0.2286176376103597,0.2382302386320512,0.2465724151117409,0.2544532437768045,0.260077204155737,0.2671716003700277,0.2731512325116589,0.2795711634614248,0.2837001663614711,0.2879570988328359,0.2919455655084161,0.2949221191589369,0.2976104272266474,0.301423897158672,0.3039761876539307,0.3015184673012633,0.2992067630993879,0.2972677135519724,0.2943135135135135,0.2924525508542326,0.2894323570219708,0.2861979371703015,0.2859497389033942,0.2863013466012328,0.2862217801381907,0.287816417382234,0.2890578941162599,0.2899245487515111,0.2911969403864541,0.2927482833696198,0.2952425252603561,0.2950782618522913,0.2987118053394735,0.3030597377367654,0.3081295076826591,0.3118415128320576,0.3155347466989321,0.3200724456657506,0.3234940663962746,0.3233271375464684,0.3288183092013078,0.3319340329835082,0.3359825153983707,0.3331499312242091,0.3256704980842911,0.0,2.224835690460262,51.4999433247318,152.88904085790483,215.34154487155547,fqhc1_100Compliance_baseline,90 -100000,95672,47910,455.8282465089055,5206,53.17125177690443,4141,42.6979680575299,1569,16.023496947905343,77.35982293729873,79.73666327567176,63.33991942654043,65.09047490441962,77.15973790892235,79.53953477782062,63.26360762648879,65.01807695529861,0.2000850283763782,197.1284978511392,0.0763118000516485,72.3979491210116,211.4629,148.70977617551665,221029.03670875487,155437.09358591505,502.34475,336.7807123795622,524481.3738606907,351427.5675010058,461.15784,225.78864443929456,478616.3976921148,233327.3339572613,2946.8339,1365.8936552096543,3038789.604063885,1386487.9387923758,964.12082,438.1501300139128,987714.9009114476,437996.020481305,1531.82664,654.5144712942031,1564671.105443599,651188.888651878,0.3828,100000,0,961195,10046.774395852495,0,0.0,0,0.0,43669,455.8282465089055,0,0.0,41837,433.8468935529727,1235555,0,44336,0,0,0,0,0,77,0.8048331800317753,0,0.0,1,0.0104523789614516,0,0.0,0.05206,0.1359979101358411,0.3013830195927776,0.01569,0.3545421110702464,0.6454578889297535,23.552145311039556,4.136863170962098,0.3276986235208887,0.2663607824197054,0.1965708765998551,0.2093697174595508,11.517177422488976,6.05753575109988,16.69314286632024,11649.585858553894,47.12087189755599,13.375846867103602,15.208845602252367,9.094013316601542,9.442166111598471,0.586090316348708,0.8041704442429737,0.709653647752395,0.5872235872235873,0.1141868512110726,0.7528925619834711,0.9082774049217002,0.8644986449864499,0.7661691542288557,0.1658031088082901,0.5172296144660525,0.7332317073170732,0.6518218623481782,0.5285481239804242,0.0994065281899109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304289707133,0.0047739228266488,0.0071627859787957,0.0095265178444476,0.011906214413535,0.0139243727416153,0.016384923424938,0.0186405746235154,0.0208788739300087,0.0230481217775595,0.0253242362775831,0.0274429340856629,0.0294679932574106,0.031579489291598,0.0339563477328052,0.0360295181594559,0.0378690629011553,0.0398805140385632,0.0418559680622121,0.0439187076602397,0.0590822659172116,0.0727973360698653,0.0868127715851124,0.0994118204105683,0.1116349713634781,0.1269402914008189,0.1382399456550582,0.148508313184999,0.1584174292311639,0.1668670301833326,0.1789986421535875,0.1911177050281023,0.201129599199051,0.210609841520007,0.2194007333913292,0.2285597181912843,0.2379745987812772,0.2452755949771227,0.252951516869861,0.2598688351970333,0.2659921369102683,0.2721096390191423,0.2775537236999278,0.2825006883836751,0.2875175825774846,0.2922541276051278,0.2962814923993555,0.2999377722464219,0.3032296418832469,0.3069866751018149,0.3036129361656388,0.3012283256849221,0.2988853548005742,0.29658474674051,0.2941106748648048,0.2914012495608206,0.2878833362299148,0.2877062476446396,0.2877301346255567,0.2884406350790285,0.2891392906529133,0.2900575346784363,0.28989533936368,0.2910131883799679,0.2927944097446574,0.2933923899810915,0.2941991293040086,0.2980550092098279,0.3018664252385263,0.3058600836028078,0.3122057225642883,0.3146727340070903,0.318422379032258,0.3215832257084251,0.3228375972261268,0.3249585209765347,0.3269026279811636,0.329595514617541,0.3304949441192123,0.3309406875708349,0.0,2.314821739557873,52.7631155877559,145.81530959494262,221.69372467731128,fqhc1_100Compliance_baseline,91 -100000,95865,47334,450.5502529598916,5194,53.11636155009649,4099,42.2886350597194,1577,16.105982371042614,77.34109898624328,79.63212326867519,63.34986309044478,65.04425673257425,77.14673637149261,79.43871084507879,63.2769329622099,64.9735105761011,0.1943626147506734,193.4124235963992,0.0729301282348799,70.74615647314886,211.00882,148.47747022702254,220110.3843947217,154881.83406563662,501.8086,336.5462709902831,522974.48495279823,350584.1537432451,453.7501,222.2603038017444,470028.3732331925,229362.1269613013,2940.87263,1357.0575343895573,3033876.597298284,1381985.421225361,959.72119,429.58854146482224,990473.9686016794,437682.8948095981,1547.7323,652.4348901697748,1583151.0353100714,655728.8693162826,0.37969,100000,0,959131,10005.017472487352,0,0.0,0,0.0,43707,455.4321180827205,0,0.0,41192,426.4538674177229,1239266,0,44491,0,0,0,0,0,80,0.8345068586032441,0,0.0,1,0.0104313357325405,0,0.0,0.05194,0.1367958071057968,0.30361956103196,0.01577,0.3472888233124308,0.6527111766875692,23.5296376259026,4.1394156321270215,0.3130031715052452,0.2612832398145889,0.2041961454013174,0.2215174432788485,11.155304034654296,5.938372101866078,16.82708124068761,11503.303214680604,46.86881428367902,13.09963843026374,14.675140469547202,9.239016130239852,9.855019253628228,0.5772139546230788,0.8151260504201681,0.7131722525331254,0.5519713261648745,0.1277533039647577,0.7495812395309883,0.9282407407407408,0.8940217391304348,0.6938775510204082,0.1464646464646464,0.506368330464716,0.7386541471048513,0.6404371584699453,0.5085803432137286,0.1225352112676056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0046103494746228,0.0067654606497682,0.0088837898755254,0.0112312727420567,0.0135756736953512,0.0157400898560469,0.0176587605202754,0.0198455661552918,0.0219830804955143,0.0242658281008327,0.0262556023917212,0.0282550866345531,0.0302690467616646,0.0321586810922205,0.0342859501914522,0.0362209446604351,0.0382519322820613,0.0402184294672148,0.0423021702490688,0.0568294386919844,0.0704596283677863,0.0835550434691526,0.0962277624918611,0.108427137847884,0.1238157602898152,0.1341624908626699,0.1451642054455182,0.154832789124357,0.1640732167352537,0.1764288097108483,0.1884813356979108,0.200163052339801,0.2085446358310745,0.2171473830110223,0.2263795662479785,0.2353610513046485,0.244480683799134,0.2519995008338344,0.2591218730322285,0.2651616783087385,0.2712320119705879,0.2763529731711066,0.2808484137154628,0.2848940251037898,0.2893647429895027,0.294389133480088,0.2979426798565724,0.3007021945195205,0.3039235080778107,0.3016009686533028,0.2981296466805008,0.2961049564323822,0.2926772859992483,0.2910412270011592,0.2870809735190571,0.2841319070827267,0.2837058813868313,0.2841002465078061,0.2848775769733661,0.2856471737823211,0.2852475894430475,0.2868864499611777,0.2883951392314246,0.2903700487287113,0.291130971046305,0.2917213068019841,0.2959488809846076,0.3000454879456944,0.3039215686274509,0.3081492902816198,0.3122358410819949,0.3141065830721003,0.3178107045660719,0.3219718309859155,0.3243211334120425,0.3296770262035344,0.333199759567221,0.3395867319195215,0.3401983218916857,0.0,1.7747309311876465,52.43543327830648,151.41792031535715,214.23940498115837,fqhc1_100Compliance_baseline,92 -100000,95651,47497,452.7605566068311,5127,52.44064358971679,4014,41.47369081347816,1559,16.006105529476955,77.31769350596971,79.74034047417611,63.289715480586615,65.08150546507544,77.1230023240041,79.54691566910262,63.21735846621606,65.01184923605395,0.1946911819656094,193.4248050734908,0.0723570143705529,69.65622902148993,211.85472,149.06126287693948,221487.19825197852,155838.6873916002,505.46358,338.6613721813109,527923.0431464387,353536.776595447,454.20526,221.8809113882116,471717.50426027953,229547.17976751237,2892.62806,1328.7578805376136,2991266.1341752834,1356290.8809501356,952.33346,423.3733927538245,982485.6614149356,429475.1678015129,1520.92706,635.9804622837613,1562712.7996570866,640032.9864423792,0.38094,100000,0,962976,10067.59992054448,0,0.0,0,0.0,43944,458.8869954313076,0,0.0,41169,427.3034259965918,1231372,0,44131,0,0,0,0,0,98,1.0245580286667155,0,0.0,0,0.0,0,0.0,0.05127,0.1345881241140337,0.3040764579676224,0.01559,0.3455663189269746,0.6544336810730254,23.538142045617192,4.224311208737063,0.317887394120578,0.2516193323368211,0.2164922770303936,0.2140009965122072,11.151397454902169,5.837093053587795,16.4573053956175,11611.368346756244,45.62291369422779,12.272301257022503,14.386242096968394,9.73194354775402,9.232426792482878,0.5752366716492276,0.810891089108911,0.6974921630094044,0.5834292289988493,0.1082654249126891,0.7710736468500443,0.9528301886792452,0.853448275862069,0.695,0.1870967741935484,0.4987876688604087,0.7081911262798635,0.6390086206896551,0.5500747384155455,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198800551098,0.0047154504522776,0.0068934010152284,0.0090244819561174,0.0113545026300528,0.0138447432762836,0.0159039438516312,0.0183185361517792,0.0202020202020202,0.0224071834190942,0.0246984550633885,0.0266207392936095,0.0284934610235815,0.0304721428497746,0.0326283488485023,0.0346758004097766,0.0369314352663065,0.0387747470760537,0.0407738497882215,0.0430597559703827,0.0572270584915716,0.0712511918857466,0.0848773212335097,0.0978661554989151,0.1104821847213128,0.1260948305991251,0.137762475558956,0.1481288039481117,0.1579324583079276,0.1673970483985306,0.1799844673598826,0.1912558240329396,0.2027206587087218,0.2116928198333351,0.2206318248432558,0.2299434401685705,0.2383660517759578,0.2461604287708868,0.2541232023064961,0.2606075879765396,0.2670409167197176,0.2732122176339155,0.2785472453062481,0.2829738511156138,0.2872824078576291,0.2911969444957802,0.2944634124989057,0.297730884128901,0.3010701207282514,0.3039996834023692,0.3023415421881308,0.2992304521093857,0.2966042088678821,0.2930099775073533,0.2910375890833123,0.2878831893586117,0.2851791556686529,0.286427227358259,0.2872581221600095,0.2886479003230272,0.2882815842836679,0.288341633661425,0.2889588859416445,0.2892697400469421,0.2906068400495379,0.293596466303309,0.2960004516074402,0.3013898821554056,0.3051654616240267,0.3108390094098193,0.3139724537876042,0.3174427198817443,0.3200300262729889,0.323047906450396,0.3263099011747156,0.329149560117302,0.3318154219793564,0.3367711225704086,0.3406385281385281,0.3370955605718585,0.0,1.9049062350568755,49.29870143684575,149.17804108300817,212.9576183538761,fqhc1_100Compliance_baseline,93 -100000,95698,47516,452.26650504712745,5204,52.95826454053377,4102,42.15344103325044,1584,16.050492173295158,77.34880342590687,79.70598455865118,63.338894218876014,65.07690098547803,77.13849460594254,79.50486994251558,63.25729028449964,65.00297250806116,0.2103088199643252,201.1146161355981,0.0816039343763748,73.92847741687092,211.26534,148.5981321891554,220762.54467178,155278.20036903114,500.60497,336.7084640850518,522413.84354949946,351149.5476238289,460.70268,226.3194193610422,477903.0178269138,233790.45947515857,2896.87677,1375.897599051085,2972435.453196514,1383082.3100285083,939.56543,431.265359456562,964837.6977575287,433695.2041714414,1539.32698,669.4502132780925,1560430.6464084934,654984.357589471,0.38059,100000,0,960297,10034.661121444546,0,0.0,0,0.0,43489,453.71899099249725,0,0.0,41769,432.9139584944304,1235644,0,44335,0,0,0,0,0,105,1.0972016134088487,0,0.0,3,0.0313486175259671,0,0.0,0.05204,0.1367350692346094,0.304381245196003,0.01584,0.3483063328424153,0.6516936671575847,23.36451528940332,4.169173850508302,0.3217942467089225,0.2564602632862018,0.2155046318868844,0.2062408581179912,11.621920978231657,6.412332835516148,17.058907873044742,11555.585251638036,47.16661001827655,12.823340494216245,15.057884858357443,9.97884930789052,9.306535357812338,0.5867869332033154,0.8127376425855514,0.7037878787878787,0.6040723981900452,0.1052009456264775,0.7472089314194578,0.9402298850574712,0.8809523809523809,0.7272727272727273,0.0954773869346733,0.5161516853932584,0.7228525121555915,0.6326963906581741,0.557632398753894,0.1081916537867078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898008161777,0.0046425820054332,0.0072548323271269,0.009579536565792,0.0118147063608264,0.0138545324986002,0.0160335144281243,0.0182913136674492,0.0205508149813499,0.0226398100384835,0.0246194844462665,0.0267671117588496,0.0290549432472446,0.0311644188201379,0.0330926346193521,0.0351839796645897,0.0372966648373836,0.0393458952436291,0.0415709190729206,0.0432965842069066,0.0574534972375113,0.0714995970232051,0.0852867725756017,0.0982364577633738,0.1105566866751764,0.1258000698242755,0.1366168932471584,0.1469066127143009,0.1569442515040446,0.1659746140062875,0.1781431480503808,0.1887864424388027,0.1989447919499592,0.20825903845102,0.2167084874097552,0.2257538983276257,0.2353000323997005,0.2426473899923433,0.2509197856104651,0.2584932684044686,0.2653314037626628,0.2708650178993425,0.276613876855337,0.2816823795776082,0.2859120214664707,0.2904747244627794,0.2942330521711965,0.2978474675341178,0.3010055057254375,0.3037240979568179,0.3009751832672002,0.2982280081932282,0.2958860536797512,0.2942323243992606,0.2919271258667538,0.2901726326090613,0.2869606448553817,0.2872812402796195,0.2866563293403991,0.2875690115761353,0.2867430319764188,0.2864561817645323,0.287054995933179,0.2872138893222492,0.2893160139960696,0.2911323399615804,0.29372815368439,0.297608974961612,0.3011627500960229,0.3056477093206951,0.3097096188747731,0.3149053795449713,0.3199088145896656,0.3232910230922159,0.3253818593249104,0.3284506371323091,0.3327660891089108,0.3323064284247278,0.3383333333333333,0.3395348837209302,0.0,2.7230702589804325,54.02082323837035,149.10381730866493,210.1440601777396,fqhc1_100Compliance_baseline,94 -100000,95626,47687,455.7442536548637,5148,52.55892748833999,3987,41.003492773931775,1501,15.32010122769958,77.26744378178137,79.68403438018196,63.28338998351626,65.07002043207464,77.06932344308315,79.48911229354879,63.20889308877897,64.99930461278495,0.1981203386982173,194.92208663317,0.0744968947372868,70.7158192896884,211.25786,148.6029334966097,220920.7119402673,155399.90535692152,501.52224,337.42846059453564,523705.1324953464,352105.58906002087,458.71342,225.4590966859568,475345.680045176,232441.0036884304,2823.54346,1325.3964111410835,2906525.934369313,1339852.5935844684,930.99719,424.2619485938304,958665.1015414218,428850.8457214028,1470.49358,628.6311310941466,1501759.4168949868,626211.4039059599,0.38176,100000,0,960263,10041.85054273942,0,0.0,0,0.0,43571,454.9181185033359,0,0.0,41539,429.987660259762,1233511,0,44205,0,0,0,0,0,98,1.014368477192395,0,0.0,1,0.0104574069813649,0,0.0,0.05148,0.1348491198658843,0.2915695415695415,0.01501,0.3553857622064852,0.6446142377935147,23.497795675005623,4.199738689199249,0.3069977426636568,0.272385252069225,0.2066716829696513,0.2139453222974667,11.40909835650298,6.041913954953163,16.079519844728605,11602.078647557348,45.793791620015575,13.274027484579674,14.003627541767385,9.144522411684411,9.371614181984098,0.5849009280160522,0.8103130755064457,0.7140522875816994,0.5861650485436893,0.1113716295427901,0.7569386038687973,0.9161147902869756,0.8847262247838616,0.7333333333333333,0.1804123711340206,0.511794138670479,0.7345971563981043,0.6465222348916762,0.5405405405405406,0.0910470409711684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0048266071790711,0.0069444444444444,0.0088915535322331,0.0111394825990091,0.0134130443638733,0.0156616432489752,0.0176418340156612,0.0199286291270871,0.0218635753858127,0.0239782575252551,0.0258865102518798,0.0276623323183277,0.029870892623466,0.0317196531791907,0.0338581781715549,0.0359391830309056,0.0378647125374962,0.0400062412232797,0.0420493999645504,0.0569502508361204,0.0715991453349532,0.0853689273487219,0.0973064611237469,0.1097786270018051,0.1251680943657945,0.1360083266069076,0.1466021590170398,0.156378688857751,0.1657556460013531,0.1772946391018797,0.1885310716103944,0.19956904057113,0.2095333975312965,0.2187995420116258,0.2288543986174349,0.2377428823339025,0.2460224587618426,0.2537465940054496,0.2601395876548586,0.2661441570770335,0.2719308505661083,0.277548266433078,0.2823664863697965,0.2863063982886036,0.2908880089800046,0.2944393687187895,0.2975292786205669,0.3021657238281401,0.306578304664088,0.3045153814021802,0.3023527793065492,0.3000563459642203,0.2980054921231392,0.2955552252118329,0.2926586542141927,0.28989913384954,0.2903902574945501,0.2903313833506728,0.2900926585887384,0.2918381857645385,0.2923718759886112,0.2937049757078238,0.2938354789049776,0.2945725264169068,0.2956025634345855,0.2965542730425883,0.3006337056092358,0.3050182225960191,0.3092816274634456,0.3130948023426061,0.3153442552735839,0.3193448035045394,0.3264586368166833,0.3289002075080173,0.3328554360812425,0.3385328185328185,0.35,0.3493053586617522,0.3418734987990392,0.0,2.6396477521762405,51.157070117555016,148.8676775707823,204.02683200343972,fqhc1_100Compliance_baseline,95 -100000,95848,47576,453.79141974793424,5076,52.00943160003339,4003,41.29454970369752,1564,16.0462398798097,77.40182060844235,79.71441349396159,63.36325590393732,65.0751832634327,77.20832525878865,79.52113334229233,63.291604594736754,65.0055234769026,0.1934953496537019,193.2801516692564,0.0716513092005683,69.65978653011007,213.1074,149.860955738161,222338.91161004925,156352.7207016954,504.1332,337.5120429652413,525513.9596027043,351675.0093536028,453.96456,222.04370684509624,470066.2715966948,229060.61829267285,2875.74898,1316.5451587841292,2970643.174609799,1343896.8458226875,932.54404,416.7024022302221,963604.6865870962,425417.5175592832,1525.38088,641.3933240938499,1566317.2940489107,648272.5770957123,0.37918,100000,0,968670,10106.314164093148,0,0.0,0,0.0,43864,457.1509056005342,0,0.0,41001,424.2237709707037,1232185,0,44267,0,0,0,0,0,79,0.824221684333528,0,0.0,1,0.0104331858776395,0,0.0,0.05076,0.1338678200327021,0.3081166272655634,0.01564,0.3472117558402411,0.6527882441597589,23.89440841152257,4.256701234672662,0.317262053459905,0.2500624531601299,0.2188358730951786,0.2138396202847864,11.223681649460383,5.964538476301585,16.681474060481264,11465.64116379051,45.548979967864966,12.176834660675771,14.2268382365492,9.80268686868448,9.342620201955508,0.5663252560579566,0.7902097902097902,0.6708661417322834,0.5878995433789954,0.1273364485981308,0.7477396021699819,0.9166666666666666,0.873015873015873,0.7692307692307693,0.1489361702127659,0.4970659302726959,0.7032040472175379,0.6041884816753926,0.5359765051395007,0.1212574850299401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020049008687903,0.0040438232879627,0.0062289493973947,0.0083589790466904,0.0105631296957127,0.012673561627102,0.0148397288895683,0.0169830577668912,0.0189606885131958,0.0211354820220464,0.0235046896622418,0.0256702385351233,0.0279382439405464,0.0297563888717283,0.0316235701834909,0.0337580210173905,0.0356710315201076,0.0377133495095294,0.0397083415561349,0.0418162706713707,0.0566622168453548,0.070426510558227,0.0837018253452648,0.096552593432911,0.1085905658588986,0.1236178144835088,0.134249941740991,0.1443056810331083,0.1545389548718933,0.1633678212625581,0.175653296053339,0.1867356639730348,0.1981948713492848,0.208034778049633,0.2171093844446154,0.2264965305060923,0.2352888710504604,0.2433009621436921,0.2506945153133539,0.2577224052718286,0.2633398067230776,0.2692550357526756,0.2757715812243643,0.2796033722935428,0.2848265650411438,0.2884560932671829,0.2924573114327858,0.2971757441780691,0.3010200783482229,0.3043335089567966,0.3016148100381536,0.2989291598023064,0.2971477523277206,0.2941007111392624,0.2913164437078253,0.2879056137244726,0.2843127977035424,0.2849927260244863,0.2839884294708184,0.285701593844951,0.2866356011183597,0.2875,0.2877727802765284,0.2872193820849077,0.2883807523391254,0.2882750058198184,0.2882600468807365,0.2937228091982597,0.2975665636824383,0.3031578119469896,0.3073622402890695,0.3121076233183856,0.3156251950808415,0.3203101475459199,0.3203399224090153,0.3251956547132344,0.3290507859733978,0.3297145154804985,0.3319716775599128,0.3425435276305829,0.0,1.866271753321601,48.4318734502794,154.90758812660803,207.87733153415212,fqhc1_100Compliance_baseline,96 -100000,95703,47561,453.7475314253472,5055,51.81655747468732,4002,41.31531926898843,1519,15.474958987701534,77.32145341825886,79.7089128947363,63.3143933609397,65.08020936263834,77.12492847278703,79.51494350444912,63.24005373810886,65.00921136871546,0.1965249454718218,193.96939028717952,0.0743396228308341,70.9979939228873,212.03424,149.14967088787057,221553.97427457865,155845.98936498002,503.1978,337.7205766906854,525279.9285288862,352374.96957071696,453.38862,221.64000430635284,471039.6852763237,229426.65985963948,2836.42576,1314.1226647842832,2931089.6314640087,1340604.2665222131,953.27304,429.5025944035187,985701.367773215,438536.4824780741,1477.46904,633.5418240006937,1508008.3800925782,632551.5022930077,0.38002,100000,0,963792,10070.63519429903,0,0.0,0,0.0,43773,456.8404334242396,0,0.0,41067,426.3293731648956,1234222,0,44194,0,0,0,0,0,90,0.9404093915551236,0,0.0,0,0.0,0,0.0,0.05055,0.1330193147729066,0.3004945598417408,0.01519,0.348048503220917,0.651951496779083,23.823236387974543,4.124003784377254,0.3143428285857071,0.2656171914042978,0.2101449275362318,0.2098950524737631,11.41248195658746,6.244187567215536,16.260855075218874,11480.928297942888,45.6705176708809,12.965272289699216,14.147648410612934,9.307945938399454,9.249651032169286,0.5817091454272864,0.8071495766698025,0.6923688394276629,0.6004756242568371,0.1119047619047619,0.7438811188811189,0.9155555555555556,0.8859934853420195,0.7180851063829787,0.1608040201005025,0.5167949615115466,0.7275693311582382,0.629863301787592,0.5666156202143952,0.0967238689547582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019656318391829,0.0042794848392657,0.0064560662660386,0.0086889360880478,0.0109474198274458,0.0132426045147094,0.0153584139837033,0.0175719828466408,0.01942362935626,0.0215366347984523,0.0237340961051476,0.0258680002875363,0.0281138131094926,0.0301400352406565,0.0321841453344343,0.0344396195202646,0.0363771958899569,0.0381809313282895,0.0403398573181638,0.0423445300205313,0.0572144759517468,0.0708550971915463,0.0839866091574053,0.0970851310112596,0.1090396910805849,0.1242393133446929,0.1353273329370807,0.1459245295076205,0.1556004402979492,0.1647576147576147,0.1766873148397522,0.1876136658872434,0.1974807740419653,0.2072971938077785,0.2160648667678834,0.2252059709425939,0.2335728151007385,0.2422072593608435,0.249379188352553,0.2563603471570221,0.2627896757481844,0.2680825696652328,0.2738502313144101,0.2785086142860566,0.2838146358050178,0.2876766284279454,0.2917265782267845,0.2951429914497338,0.2994522529971062,0.3035805997076524,0.3004246855176862,0.2979359938518965,0.2960564211354473,0.2940854247452105,0.2922741497708497,0.288550061937023,0.2851771099946282,0.2862054850593533,0.2866536070181416,0.2874668375977067,0.2875983038499617,0.2892907088971616,0.2901845357381429,0.2914063894342316,0.2931262154570118,0.2935473782966746,0.2959204036833252,0.300568235331052,0.3040997094142772,0.30699604743083,0.3121858443146311,0.3162913907284768,0.3193489369755851,0.323572138542702,0.3271274094969441,0.328695445356166,0.3332822790626435,0.3327925370107483,0.3345215245407184,0.3399465852727966,0.0,1.9068640921155484,50.03456656744631,149.28043151414255,210.20024200011227,fqhc1_100Compliance_baseline,97 -100000,95717,47592,453.0752112999781,5270,54.002946185108186,4179,43.20026745510202,1632,16.747286270986347,77.3455376358958,79.73446425693487,63.32130932583449,65.08814401512338,77.14438510849783,79.53319600519885,63.24614997338208,65.01485295877875,0.2011525273979657,201.2682517360247,0.0751593524524096,73.29105634462962,210.97956,148.4398851427881,220420.1552493288,155082.0493149473,506.0431,338.59541296178134,528227.1905722077,353286.80690136686,458.26763,224.13394615973615,476182.86197854095,232033.98096482013,2943.77626,1350.1852238338129,3045401.8930806443,1380503.2479432214,980.32446,433.3564963030227,1011420.0298797496,439977.16842674016,1586.95608,666.733503521484,1629620.9868675366,672448.931283916,0.38158,100000,0,958998,10019.09796587858,0,0.0,0,0.0,44030,459.51084969232215,0,0.0,41432,430.2475004440173,1238676,0,44379,0,0,0,0,0,86,0.8984819833467409,0,0.0,0,0.0,0,0.0,0.0527,0.1381099638345825,0.3096774193548387,0.01632,0.3497822931785196,0.6502177068214804,23.78374137790563,4.167150954799655,0.3120363723378799,0.2656137832017229,0.2132089016511127,0.2091409428092845,11.150664806391646,5.9495528667176565,17.398458622837307,11644.08468910417,47.42251720829643,13.344749549616028,14.813641143607931,9.774187487977972,9.489939027094506,0.585307489830103,0.8036036036036036,0.7070552147239264,0.5869809203142536,0.1247139588100686,0.7363872082973206,0.892018779342723,0.8786127167630058,0.7076923076923077,0.1578947368421052,0.5274652547981469,0.7485380116959064,0.6450939457202505,0.5531609195402298,0.1154970760233918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002087153871873,0.0043004209138394,0.0065587085638864,0.009187178601191,0.0115365833808089,0.0136382155225096,0.0159083029104036,0.0180856387161341,0.020216377617801,0.0225801826895506,0.0248192400389723,0.0269001643385373,0.0289869980250164,0.0309543927621952,0.0330440346332855,0.0350570672400959,0.037052766786136,0.0391580957520782,0.0410760895562742,0.0431244660234637,0.0577429192079538,0.0717844060701203,0.0851340714698011,0.0981745488978904,0.1107384320054003,0.1261079263004252,0.1372395059632443,0.1482566188843213,0.1581704097230387,0.1666004786999967,0.1789140134939967,0.1896006583506583,0.1998519856774376,0.2092354144559069,0.2188841201716738,0.2285859883901271,0.2377503766110584,0.2457259189274306,0.254116953227782,0.2603057977980727,0.2665756878346652,0.272758080725454,0.2787313521053502,0.2825394925801819,0.2871503231517297,0.2917886038905147,0.2957801006581494,0.2985305687384209,0.3028805203520636,0.3058494211031238,0.303406652360515,0.3009436158702768,0.2990570273911091,0.2969332393109502,0.2957600674366672,0.2922776744611445,0.2891206918318394,0.2895935758767617,0.2906590316478347,0.2916347302187126,0.2923966756513926,0.2931868913339786,0.294803617787455,0.2959609251287999,0.297161776348936,0.299368026839354,0.2997246586618978,0.3046799186101111,0.3095362896180592,0.3141175076059899,0.315972850678733,0.3172803038295179,0.3194453120119933,0.3243692400664753,0.3292420125550454,0.327266238401142,0.332823259372609,0.3336711939995945,0.341861731083288,0.3442307692307692,0.0,1.8254679944012064,50.68324784531144,155.04066751590412,224.62807045065503,fqhc1_100Compliance_baseline,98 -100000,95610,47340,450.4758916431336,5233,53.36261897291078,4102,42.2863717184395,1593,16.28490743646062,77.23812690061078,79.66930998210414,63.25655152000609,65.05418414679171,77.02952625414152,79.4618413375164,63.17789267351482,64.97809743885904,0.2086006464692644,207.46864458773476,0.0786588464912725,76.08670793267436,210.98572,148.42071885152748,220673.2768538856,155235.55993256718,501.85822,337.1459790701087,524279.65693965065,352004.53830154653,453.65978,222.80871360049423,470529.6098734442,230004.55989574452,2916.52787,1360.1421070342717,3010727.570337831,1382879.266848941,957.08983,430.2791446689928,987763.2988181151,436764.24796757015,1555.0888,666.7858213026997,1592487.5640623365,670775.7176691472,0.38074,100000,0,959026,10030.603493358436,0,0.0,0,0.0,43738,456.8036816232612,0,0.0,41161,426.50350381759233,1231354,0,44185,0,0,0,0,0,70,0.7321409894362514,0,0.0,0,0.0,0,0.0,0.05233,0.1374428744024793,0.3044142939040703,0.01593,0.3612844036697247,0.6387155963302752,23.54375861364214,4.147494967654293,0.2986348122866894,0.2720624085811799,0.2152608483666504,0.2140419307654802,11.21480157285661,5.900149271410992,17.024638821804565,11549.738998574445,46.91380803545423,13.589805795868427,14.005472324021348,9.73550286166077,9.583027053903686,0.5748415407118479,0.7921146953405018,0.6979591836734694,0.5843714609286523,0.1173120728929384,0.7397145256087322,0.9157175398633256,0.8497109826589595,0.7333333333333333,0.1581632653061224,0.5073857780831329,0.7119645494830132,0.6382252559726962,0.537890044576523,0.1055718475073313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022498783849521,0.0045439331392695,0.006467793030623,0.0093003872620269,0.0113580850024425,0.0138553541774911,0.0161762456015095,0.0183569648183712,0.0205592946423091,0.022799901671583,0.024963319413521,0.0267976408211915,0.0289416535441174,0.0313911053380342,0.0333663795774211,0.0356562677841585,0.0375684193066843,0.0397120538496696,0.0418349502435774,0.0437404158103921,0.0589403696579409,0.0724405323273603,0.0860726779917425,0.0985255397577672,0.1104505037277969,0.125659386055971,0.1368513875313416,0.1467327577017375,0.1563911061653363,0.1655996218794311,0.176624189388953,0.1875108412836079,0.1976441359470857,0.2067106445462315,0.2155909712119208,0.2253614905729473,0.235155935388608,0.243143578871397,0.2507107280129182,0.2578193175033298,0.2641257686506555,0.2703276343253828,0.276391509154119,0.2804221356796,0.2844036697247706,0.2893504503725304,0.2939117562193424,0.2971545907890877,0.3016565404787869,0.3055801711481741,0.3025964211492267,0.2996759291181134,0.2976499463973368,0.2950644087422203,0.292243623112962,0.2898099430903039,0.2867314736992341,0.2873729566161234,0.2875044938626676,0.2873536509071409,0.2876450409582544,0.2886867088607595,0.2892468382306676,0.2895420154899942,0.2903202521594764,0.2911669621441234,0.2937268320501853,0.2965302658872336,0.3010375771172182,0.3054853985793212,0.309600617929029,0.3119843452506875,0.3136050156739812,0.3175481133505076,0.3204001495886313,0.323094958968347,0.320618711518246,0.3252533280349692,0.328629579375848,0.3300641267446246,0.0,2.351342271950321,51.72341730179985,148.93339530651429,218.80283233976076,fqhc1_100Compliance_baseline,99 -100000,95722,47554,452.3202607551033,5146,52.600238189757846,4048,41.72499529888636,1548,15.827082593343224,77.33641368994157,79.71097387857898,63.332022412709286,65.08964454015363,77.14359793533667,79.52217045946321,63.25977022409726,65.02073870621874,0.1928157546048936,188.80341911577148,0.0722521886120262,68.9058339348918,213.93548,150.5970168762858,223496.4376005516,157327.26382261733,509.24385,341.3514531725592,531432.18904745,356036.6444208845,462.04237,225.64051002053432,479108.1674014333,232869.0284831852,2315.40368,1085.615581320561,2389220.7016150937,1104570.7243798194,932.17204,423.3384233812468,957123.9213555922,425593.1570562136,1504.2691,635.461457740075,1540562.2949792107,638213.8197337828,0.38,100000,0,972434,10158.928981843255,0,0.0,0,0.0,44304,462.26572783686095,0,0.0,41837,433.55759386556906,1222424,0,43831,0,0,0,0,0,85,0.877541213096258,0,0.0,0,0.0,0,0.0,0.05146,0.1354210526315789,0.300816167897396,0.01548,0.3512810991459339,0.6487189008540661,23.71413151580005,4.092401923435555,0.3115118577075099,0.2712450592885375,0.2176383399209486,0.1996047430830039,11.04408352078105,5.8845268953553465,16.423311808349066,11507.193666755426,46.41057609605922,13.464478895895189,14.34915835376907,9.75823939822644,8.838699448168525,0.5788043478260869,0.8087431693989071,0.682791435368755,0.5698070374574348,0.1138613861386138,0.7562604340567612,0.9293598233995584,0.8456973293768546,0.7268722466960352,0.1933701657458563,0.5042105263157894,0.724031007751938,0.6233766233766234,0.5152905198776758,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024624052531312,0.0047262142618079,0.0073607797350119,0.0097162370924465,0.0120037028371463,0.0144623469741103,0.0166226455501279,0.0187155401266081,0.0206823223906842,0.0227975349589501,0.0249192763056737,0.0271965668056097,0.0293488544280366,0.0313220995385629,0.0333498431566782,0.035576962831273,0.0374723021806208,0.0393277659629648,0.0414570775306589,0.0435806095452367,0.0579194119305426,0.0718336088384842,0.0846668484301923,0.0974089451831607,0.1087093986467972,0.1242337772141196,0.1351099238906909,0.1462844017184908,0.1561942982783832,0.1650616477242295,0.1771612444980144,0.188554373215676,0.1990655221123546,0.2081872494730058,0.2170449801138236,0.2270315091210613,0.2356204672303733,0.2436152402781991,0.2504108719552971,0.2567066895368782,0.262983374348665,0.2690188203427824,0.2752813632981801,0.2791593401992799,0.2840881540028124,0.2874797107864837,0.2916583416583416,0.2957258228362454,0.2992942271399395,0.3026860321058597,0.2999609968662999,0.2972437423456399,0.2949550133059236,0.2928160836534851,0.2901946218986778,0.2872384392842382,0.2839560856772234,0.2835984910611776,0.2842980001365094,0.2845758904695689,0.2845394736842105,0.2859028407076159,0.2871528646484864,0.2873213134434539,0.2888569718731298,0.289703632639303,0.29013964092334,0.2948560641812175,0.2993197278911564,0.3051331930604629,0.3072669104204753,0.3090831282764523,0.3133052685291491,0.3174493554327808,0.3239317045561739,0.3313404280760492,0.3356342997392238,0.333736640451704,0.332972094283392,0.3388305847076461,0.0,2.1864350705968367,52.25148087569136,149.60056160407896,209.09863654546868,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95614,47646,455.0379651515468,5174,53.01524881293534,4034,41.65707950718514,1533,15.677620432154288,77.26635035352784,79.70467427179084,63.26822878755484,65.07230799661077,77.074512501756,79.51483311680083,63.19711334400885,65.00394364943182,0.1918378517718366,189.8411549900061,0.0711154435459917,68.36434717895656,211.47434,148.8634789675462,221175.07896333173,155692.13605491476,507.85856,340.5458912330238,530549.4906603636,355574.79095805675,465.32621,227.6405380154086,483556.55029598175,235638.2801255901,2296.3672,1075.4759711875904,2371718.242098437,1095437.755650314,927.58294,414.4648887704457,957613.4875645826,421031.5460443091,1488.78012,625.1243901586422,1523137.4484908066,624992.8620669489,0.38039,100000,0,961247,10053.41268015144,0,0.0,0,0.0,44150,461.1249398623633,0,0.0,42147,437.7392432070617,1227903,0,44107,0,0,0,0,0,85,0.8680737130545736,0,0.0,0,0.0,0,0.0,0.05174,0.1360182970109624,0.2962891379976807,0.01533,0.3485016648168701,0.6514983351831298,23.595089872759832,4.134714488859929,0.3103619236489836,0.279127416955875,0.2114526524541398,0.1990580069410014,11.474036148668423,6.237596156925848,16.330653530358877,11555.902428390697,46.15988077536433,13.67182923320474,14.395476485277172,9.356453574012038,8.736121482870379,0.5922161626177491,0.7912966252220248,0.6972843450479234,0.6225087924970691,0.1170610211706102,0.7564853556485356,0.927927927927928,0.8490566037735849,0.782608695652174,0.0867052023121387,0.5230715040507221,0.7023460410557185,0.6333711691259932,0.5712074303405573,0.1253968253968254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.004980978950038,0.0073831842140006,0.0092524808849845,0.0114309562101748,0.0137285078019099,0.0159617896799477,0.0182908760205593,0.0204223622820659,0.0226252689824777,0.0247239213432406,0.0267664412145632,0.0287311358629634,0.030797306911093,0.0328561394810775,0.0349216203631848,0.0369299336650082,0.038614930829629,0.0408080429624078,0.042445795571871,0.057537712081456,0.0719771986629363,0.0847206612959131,0.0977482411425201,0.1103401662283897,0.1256818446612225,0.1372278132605022,0.1476689740499376,0.1583222740699516,0.1671537238385835,0.1792833412434741,0.1913609018481383,0.202062551727142,0.2112504792682258,0.2201161522100878,0.2292200374843353,0.2369581969867878,0.2446358212315659,0.2524731671304446,0.2594562986573718,0.2655908127944802,0.2711398242102922,0.2772036977853532,0.281491510801711,0.2853150931246886,0.2900974226168454,0.2942310822825229,0.2974569152050505,0.2997773001527825,0.3027297903204536,0.3002529465583122,0.2970554272517321,0.294843648850235,0.2916558432187491,0.2895178165951826,0.286587602396381,0.2835384639691593,0.2832226866650275,0.2841870140499249,0.2849934025177418,0.286021867745076,0.2867384220400908,0.2882136279926335,0.2879650085916404,0.2874948966113499,0.287227398115859,0.2904382470119522,0.2953916760970703,0.2990781956468403,0.3014198461172364,0.3075280541547408,0.3121922812218751,0.3149571572580645,0.3175752092286813,0.3216406829992576,0.323828444548323,0.3217904128232269,0.3284656931386277,0.3364105348900353,0.3373268438786971,0.0,1.824998793924412,52.53771894597867,147.3632014345691,209.1203874486424,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95716,47398,451.6277320406202,5145,52.72890634794601,4028,41.60223995988132,1500,15.347486313677964,77.34534288058313,79.71480301006999,63.32656324425341,65.07478884533124,77.15486043559999,79.52442072067237,63.25589198310163,65.00592480041426,0.1904824449831466,190.3822893976184,0.0706712611517801,68.86404491697817,211.47874,148.76179984184057,220943.98010781896,155419.99231250843,502.3284,336.95555919582625,524332.3373312717,351557.83692990325,454.35366,222.247364855397,471469.2736846504,229694.78512634744,2300.42236,1084.3955210208032,2376818.5047431984,1106365.457207576,966.74491,440.3666839444128,996082.2850934012,446144.7343645913,1460.72456,618.8928912177438,1496029.9427472942,621830.8857760855,0.38019,100000,0,961267,10042.908186719043,0,0.0,0,0.0,43658,455.6291529106942,0,0.0,41127,426.51176396840657,1235513,0,44374,0,0,0,0,0,112,1.1701282962096202,0,0.0,2,0.0208951481466003,0,0.0,0.05145,0.1353270733054525,0.2915451895043732,0.015,0.3492387671741552,0.6507612328258447,23.81470114115606,4.099852505657433,0.3167825223435948,0.2713505461767627,0.2065541211519364,0.205312810327706,11.32870383756001,6.246131923158445,16.058667804795114,11554.688343107466,45.91121460346067,13.206434751272202,14.424565391097463,9.241800907323052,9.038413553767954,0.5940913604766633,0.7941445562671546,0.7147335423197492,0.6021634615384616,0.1354292623941959,0.7694944301628106,0.9325581395348838,0.8796561604584527,0.7766990291262136,0.1648351648351648,0.5225445648374694,0.7043740573152338,0.6526429341963322,0.5447284345047924,0.1271317829457364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0044898952019946,0.0066251369668438,0.0089477960593134,0.0111350647765868,0.0132560909803602,0.01540217934212,0.0177107683513163,0.019861795432707,0.0220081686132806,0.0240706948516597,0.0260217703840624,0.028357779103495,0.0304319607701737,0.0326106025737608,0.0345668802977051,0.0363918806959403,0.0385218086155187,0.0407053514800528,0.042724800183404,0.0567281081927836,0.0703065314537481,0.0836883302205527,0.0963122731337787,0.1087546031042596,0.1235329601134475,0.1348301486199575,0.1457525667788523,0.1550060378084358,0.1645288603848051,0.1770200387847446,0.1890908697205591,0.1998280908289721,0.2098401926444833,0.2193862382593567,0.2292414771467837,0.2385819654753004,0.2462370913672464,0.2535264011983523,0.2607849200077873,0.2674500641907912,0.2728834757401844,0.2781510219530658,0.2818240605465476,0.2852546591391974,0.2897686679313148,0.2928836796217305,0.2964162760267795,0.3002278081234306,0.3041820580474934,0.3018123552539452,0.2995130540042367,0.2969661939267488,0.2941592971504537,0.2919253735777309,0.2892349584665514,0.2855969807507066,0.2866070114021168,0.2869546010602147,0.2884318218148878,0.2890693386474959,0.2899695451419589,0.2901941990331722,0.2915627227369922,0.2918764686136287,0.2933499390259723,0.2944216918514334,0.2973006631588779,0.3036787438774447,0.3065856526852215,0.3114620938628158,0.3132669721388318,0.31736414740787,0.3184158715735272,0.3214152352501867,0.3260844010814623,0.3241400212153356,0.3298534430837181,0.3337882096069869,0.3385093167701863,0.0,1.8484738543729649,51.00737759741676,149.9164245195776,208.6832144485421,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95663,47789,455.0348619633505,5180,52.63267930129727,4080,42.07478335406584,1629,16.631299457470497,77.2498286400838,79.6480939354263,63.26585613190741,65.03896306726445,77.03747586508165,79.440252147455,63.18479238822122,64.96235545149833,0.2123527750021594,207.8417879713044,0.0810637436861938,76.60761576612174,210.16116,147.96727676611977,219688.38526912185,154674.9760705625,500.2706,336.00966622230084,522253.5149430814,350550.18502612435,458.66205,224.95966321029184,476310.20352696447,232769.1598850375,2377.80764,1123.2869604234595,2452169.720790692,1141125.7563390902,953.76094,436.5421248451806,978936.8512382008,439012.6399287281,1591.12348,685.4808162802437,1625006.5542581773,682140.6186701746,0.38288,100000,0,955278,9985.835694050991,0,0.0,0,0.0,43468,453.7490983974996,0,0.0,41544,431.1802891400019,1233869,0,44310,0,0,0,0,0,85,0.8780824352152871,0,0.0,1,0.0104533623239915,0,0.0,0.0518,0.1352904304220643,0.3144787644787645,0.01629,0.3470522803114572,0.6529477196885428,23.71016517035675,4.276217837266481,0.3053921568627451,0.2544117647058823,0.2181372549019608,0.2220588235294117,11.626620909790384,6.250444140626674,17.41937193558233,11680.036841149962,46.76805584867152,12.73499062160314,14.17873944922591,9.873425495789409,9.980900282053062,0.5644607843137255,0.8015414258188824,0.6861958266452648,0.5752808988764045,0.1147902869757174,0.7393483709273183,0.911214953271028,0.8475073313782991,0.7456140350877193,0.18,0.4918487686437738,0.7245901639344262,0.625414364640884,0.5166163141993958,0.0963172804532577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805664735199,0.0047156895555082,0.006790430466601,0.0090631985368827,0.011331387128602,0.0134031328295276,0.0157135864910062,0.0182978506152039,0.0204540805890775,0.0227568337071517,0.0246992091739919,0.0269440164355418,0.0290685709581824,0.0313434066500381,0.0333374630902971,0.0352470291346482,0.0373655524008869,0.0396902025518838,0.0417186849771119,0.043605196755156,0.0583140033017783,0.0722918063002681,0.086082219959908,0.0993307799149795,0.11207733547216,0.1280216756276194,0.1395225351514379,0.1502184802302035,0.1600205428886297,0.1696931276056217,0.1811372883368048,0.1913986658712511,0.2021573631743123,0.2114068190793804,0.2201088456401028,0.2301665796170558,0.2384214945424013,0.2465648338259515,0.2538815280244046,0.2612057772517838,0.2665296214998316,0.2729835772854357,0.2790141950210428,0.2839868612611745,0.2883647223745962,0.2924123430832973,0.2961391173331659,0.3002515932108147,0.3041993011988725,0.3061516262691783,0.3032807920364142,0.3009336514459875,0.2980583209771941,0.2954367666232073,0.2937550254623425,0.2912100544102996,0.2885123901512152,0.2890141122738996,0.2893504273504274,0.2897513861563227,0.2904085424212284,0.2913335971507717,0.2931243977039426,0.2938462916517377,0.2963640741632555,0.2975769550748752,0.2980128695750772,0.3027153558052434,0.3056610346629507,0.3090098267492798,0.3142070335425037,0.3188192657177373,0.3182356239486636,0.323957469270794,0.3287505805852299,0.3308823529411764,0.338570781084756,0.3390480032271077,0.3419477693144722,0.3369565217391304,0.0,2.0987150127887637,52.18159704611836,152.41776181793756,210.9710566823035,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95753,47519,452.20515284116425,5128,52.43699936294424,4047,41.74281745741648,1549,15.82195858093219,77.32698317968122,79.6861702555093,63.31555014592704,65.06090466055602,77.1284832415975,79.490626022944,63.24096034492487,64.9897505263374,0.198499938083728,195.54423256529677,0.074589801002169,71.1541342186166,212.10046,149.22261005524751,221507.4410201247,155840.74614607115,502.29727,337.1059097908022,524069.50173884886,351552.1628667531,454.89378,222.5831281356232,471859.84773323033,229939.8909018413,2296.28464,1077.511039397718,2369883.763432999,1097247.0877417233,941.20523,418.93125559486543,971109.0305264588,425712.9461723751,1498.9102,635.0986433111752,1532644.261798586,635738.5242322044,0.38018,100000,0,964093,10068.520046369304,0,0.0,0,0.0,43744,456.3094628888912,0,0.0,41254,427.6419537769052,1231231,0,44161,0,0,0,0,0,82,0.8563700354035905,0,0.0,1,0.0104435370171169,0,0.0,0.05128,0.134883476248093,0.3020670826833073,0.01549,0.3532050084096431,0.6467949915903569,23.734227804781444,4.175167424551068,0.3135656041512231,0.2713120830244626,0.2181863108475414,0.1969360019767729,11.65950395568956,6.3858682276171175,16.46587650034879,11523.2099077236,46.47348311960101,13.410731788034688,14.50558438447506,9.85765409311712,8.699512853974145,0.5829009142574747,0.785063752276867,0.69424743892829,0.5877689694224235,0.1217063989962358,0.7480916030534351,0.9105145413870246,0.8510028653295129,0.7268518518518519,0.1257485029940119,0.5149930264993027,0.6989247311827957,0.6347826086956522,0.5427286356821589,0.1206349206349206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0044107805560625,0.0064348496843472,0.0087573146944083,0.0107907449783879,0.0129728628888549,0.0151017661214667,0.0174244125512933,0.0198581415314173,0.022384622470599,0.0244949831404823,0.0265662050771425,0.0286169501978722,0.0307258255506245,0.0327309112665305,0.03473930025419,0.0369082005569877,0.0393336514324834,0.0413141538653418,0.0432757920178353,0.0588376535927924,0.0727400169479113,0.0858538733317257,0.0987206576471454,0.1104552497602007,0.1259079135169424,0.1360030543418317,0.1462383680074956,0.1559189781412003,0.1649045221815527,0.1770608778132275,0.1889816649880329,0.2005636193502056,0.2096096621739891,0.2181790164223132,0.2274691905310754,0.2360161729884287,0.2444539537397806,0.252263201535683,0.2580789328932893,0.2636264703158285,0.2694955739777996,0.2747642068344471,0.279615564594507,0.2839515178039559,0.2876641390789717,0.2917705111024835,0.2949166783363675,0.2989003018017434,0.3027237354085603,0.3006039248389309,0.2981057377725236,0.2959353023909986,0.2935377242743111,0.2918385517139041,0.2891317324027733,0.2861593446563558,0.2861754247980468,0.287053609477542,0.2868040613830752,0.2872159674377789,0.2871497812980257,0.2878340763064816,0.2899170901310511,0.2907957813998083,0.2911382536382536,0.2921453493319717,0.2955135219634203,0.2990976552973556,0.3029873656866218,0.3065337962754205,0.3083797707917148,0.3109437250996016,0.3140837656966689,0.3187343416535214,0.3232511970103935,0.326169214469502,0.3304643714971977,0.3359009628610729,0.3393682588597843,0.0,2.0315265157742286,51.596788504929535,153.6925044459965,207.8934973755231,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95751,47777,454.9195308665184,5216,53.190045012584726,4159,42.76717736629382,1593,16.208708003049576,77.39144353273707,79.7303306895171,63.36142006586866,65.08733877727788,77.19195306206149,79.53582730083652,63.28591207230343,65.01639090297934,0.1994904706755846,194.50338868058736,0.0755079935652247,70.94787429853966,211.8039,148.9518669723344,221202.8072813861,155561.68287781268,503.14281,336.82619503564274,524831.0200415661,351134.54912827787,459.28323,225.153558654944,475702.0709966475,232092.6615612116,2379.83372,1113.4989490768253,2448477.8644609456,1125995.2914834148,990.98186,445.1265249419399,1015354.10596234,445445.7629348441,1551.77644,659.1295352004406,1580907.0819103718,654705.365724817,0.38213,100000,0,962745,10054.673058244822,0,0.0,0,0.0,43651,455.19106850059006,0,0.0,41705,431.5672943363516,1236828,0,44432,0,0,0,0,0,95,0.9921567398773904,0,0.0,0,0.0,0,0.0,0.05216,0.1364980504016957,0.3054064417177914,0.01593,0.3546969419520234,0.6453030580479766,23.613975895122437,4.146884272957244,0.3188266410194758,0.2647270978600625,0.2091849002163981,0.2072613609040634,11.264769852539796,6.078934411957884,16.985780836763414,11636.5187687039,47.3748903810262,13.335908529283348,15.11276740197836,9.61737992210914,9.308834527655346,0.5777831209425343,0.8019981834695731,0.6907993966817496,0.5678160919540229,0.1276102088167053,0.7658495350803043,0.9212962962962964,0.8770053475935828,0.7227722772277227,0.1942857142857142,0.5030241935483871,0.7249626307922272,0.6176470588235294,0.5209580838323353,0.1106259097525473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023995626113721,0.0045907354297353,0.0069702319352285,0.0091508312936086,0.0114691258858577,0.0136593111310153,0.016028123089464,0.0182014814210214,0.0202167761444084,0.0222333633461569,0.0243135245901639,0.0266025114904793,0.0287502183495853,0.0308553667548346,0.0328426521523998,0.035121064374845,0.0371129326047358,0.0389442024476249,0.0409767050238563,0.0430239704978488,0.0583814365194517,0.0722611698231662,0.0860853510133859,0.0991166263539804,0.1116043186706591,0.1271360291007529,0.1370438323912144,0.1474897066802847,0.157074660657646,0.1666452276820169,0.1775964519462624,0.1891114379650458,0.2000673847123651,0.2097207656004195,0.2178812096694405,0.2274361839848634,0.2363117531656857,0.2445520309130122,0.2529215075092094,0.2596787479406919,0.2658214681952662,0.2721939818872334,0.2783065154936571,0.2830870908263691,0.2878260553217807,0.2925677171746992,0.2966710386609206,0.3001436215508585,0.302672579873547,0.3064921727910681,0.3048785400636506,0.3024777741191966,0.2996166322618696,0.296681782192471,0.2944632734914973,0.2912908337396392,0.2889284532606469,0.2889828847661354,0.2898351181370049,0.2903254474680506,0.2913265210812426,0.2919096784363177,0.2930202435916184,0.2934809293190796,0.2945499963970888,0.2963271251690771,0.2981221988994156,0.3031916559651705,0.3073317475863998,0.3111787252538823,0.3159662340019969,0.3177213175621917,0.3232228083396131,0.3278055429350295,0.3332403273809524,0.3358252540591052,0.3400507538438573,0.3491182880919358,0.3526570048309179,0.3479729729729729,0.0,2.553433148045778,50.95117702982699,158.5496676018569,214.31960473779847,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95716,47505,453.5918759664006,5127,52.3005558109407,4097,42.093275941326425,1600,16.21463496176188,77.37264048070351,79.73126362240124,63.34029949113111,65.08158042928535,77.16790102351898,79.53370212351734,63.262005390680656,65.00978466754091,0.2047394571845302,197.56149888389984,0.0782941004504564,71.7957617444398,210.97648,148.4267577775468,220419.2402524134,155069.9546340704,506.56271,339.5698540233813,528503.2387479628,354037.1674016025,456.18441,223.000627121652,472101.6966860296,229613.6840231593,2361.58808,1100.8292456016106,2428361.193530862,1111257.5629983968,946.25244,428.0142446340257,972713.945421873,431324.0444093432,1556.63242,667.3234116263043,1579671.4655856912,657022.2299168897,0.37967,100000,0,958984,10019.0563751097,0,0.0,0,0.0,44073,459.693259225208,0,0.0,41304,427.08638054243806,1236081,0,44394,0,0,0,0,0,83,0.867148648083915,0,0.0,1,0.0104475740733001,0,0.0,0.05127,0.1350383227539705,0.31207333723425,0.016,0.3449237634808479,0.6550762365191521,23.62531666240521,4.241000501786352,0.3048572125945814,0.264827922870393,0.2145472296802538,0.2157676348547718,11.332952782198776,6.042553773773261,17.192781174396742,11527.097192589315,46.56854339010084,13.27063777982948,14.058066365530786,9.617389285475817,9.622449959264763,0.5667561630461313,0.7907834101382488,0.6925540432345877,0.5847554038680318,0.0961538461538461,0.7275862068965517,0.9192825112107624,0.8333333333333334,0.7101449275362319,0.0928961748633879,0.5032345931222336,0.701095461658842,0.6432432432432432,0.5461309523809523,0.0970042796005706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0046415939517395,0.0068880164744311,0.009272424439389,0.0113270089172233,0.0132133477207484,0.015473375193672,0.0175050014289797,0.0195547287075275,0.0216915076570305,0.024032891431618,0.0260164271047227,0.0279691516709511,0.0296607551133905,0.0317977817900438,0.0340258397932816,0.0358766216957786,0.0379337171308542,0.0399871109909984,0.0419153568117663,0.0568904482942263,0.0711886399547942,0.0845287529885491,0.0966626373048825,0.1089956460777802,0.1244224527124898,0.1357228474748867,0.1466018177561141,0.1563888414217361,0.1663592295482819,0.1781671710590085,0.1896368908508612,0.2009114045200443,0.2098257740640687,0.2179715694041017,0.2278392661282281,0.2363703339882122,0.2446741431338107,0.252765976781698,0.2600215566665138,0.2651825611817276,0.2704395154210803,0.2756320640712745,0.2792288034936593,0.2837297487815846,0.2881922185512106,0.2926814006457587,0.2955013605269181,0.3004450654660249,0.3041575492341357,0.3014131472442956,0.2988981094746098,0.2972687893789379,0.2950921396308642,0.2928168596022558,0.2900364036831961,0.2876868147492812,0.2874631268436578,0.2875014893363517,0.2874626971720904,0.2872142378434731,0.2875336041286474,0.2885036154118652,0.288819324186315,0.2905411854538512,0.2920219087479977,0.2928218868988859,0.2975114176530897,0.2999237804878049,0.3039181218016328,0.3073919482967551,0.3095238095238095,0.3116380655226209,0.3135912101143889,0.3176841714603822,0.3173821252638986,0.3199878677585684,0.3254,0.329175704989154,0.3369770071617037,0.0,2.693512996234669,49.895042958874775,151.52708314090827,216.73180866576047,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95746,47397,450.8073444321434,5191,53.06749107012303,4081,42.08008689658054,1544,15.77089382324066,77.33281654085012,79.69631714849646,63.319784280511655,65.06990649742531,77.13955185543759,79.50838810561922,63.24653008807135,65.00145586353221,0.1932646854125295,187.92904287724355,0.0732541924403094,68.45063389309303,212.88146,149.7191758377806,222339.79487393727,156371.20698283022,503.09145,337.3811329234095,524882.2509556535,351809.41545694805,457.00762,223.82662813563977,473779.2388193763,231117.8297111721,2336.57392,1093.4951301006763,2409768.512522716,1111459.6642164437,946.75268,425.93991635289177,971606.9391932822,427654.4360630115,1504.25222,636.2983925091203,1536975.6856683306,633263.8396856688,0.37934,100000,0,967643,10106.354312451696,0,0.0,0,0.0,43723,456.0817162074656,0,0.0,41414,429.0623106970526,1228272,0,44120,0,0,0,0,0,96,1.002652852338479,0,0.0,0,0.0,0,0.0,0.05191,0.1368429377339589,0.2974378732421499,0.01544,0.3483125458547322,0.6516874541452677,23.59636174465994,4.22375586049507,0.3107081597647635,0.2639059054153393,0.2151433472188189,0.2102425876010781,11.351751740660143,5.946268971649606,16.483231267609796,11514.726439974263,46.52739195841976,13.07861518067097,14.37146065997573,9.78440210852608,9.292914009246989,0.5724087233521196,0.8096564531104921,0.6892744479495269,0.570615034168565,0.1037296037296037,0.7683235046335299,0.9304347826086956,0.8416666666666667,0.7653061224489796,0.1812865497076023,0.4920525224602626,0.7196110210696921,0.6288546255506607,0.5146627565982405,0.0844250363901018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024622804973198,0.0047873581288732,0.0068839476088943,0.0092192598164279,0.0114556627192446,0.0138017438070404,0.0159393834324233,0.0183358856559469,0.0204699290403059,0.0224757067816221,0.0247903381246283,0.0270153713458398,0.0293140853614649,0.0313285272914521,0.0334602408146841,0.0355053438901866,0.037417537464141,0.0391444671599506,0.0411866239653953,0.0433061432842662,0.05785814210845,0.0717409499895375,0.0846895973154362,0.0975955927962404,0.1094011868748089,0.124402521043949,0.1352495094659808,0.1452217231175356,0.1549751642365005,0.1648898517771723,0.1768708947991816,0.187953084763368,0.1985905843202505,0.2081146680661244,0.2170512792309215,0.2264926034192576,0.2352685196549915,0.2436307166006482,0.2515207226837351,0.2581915600027477,0.2637547006074631,0.2696092771803363,0.2752015532325468,0.2796731015805682,0.283970263113141,0.2879228720781142,0.2914664063282267,0.2955883662075719,0.2999236077842373,0.3031378655125092,0.3004657548998492,0.2983768913342503,0.2965268583983549,0.2946995956094743,0.2915713139358635,0.2887192510096683,0.2851926785319129,0.285045045045045,0.2845680799959116,0.2856914155608523,0.2864665023526775,0.287099444247369,0.2884438881935753,0.2886095661846496,0.2887740206284251,0.2884091439840162,0.2895520694448384,0.2937754144510479,0.2995988138845282,0.3031331386630889,0.3066003616636528,0.3127802099266838,0.3175177924834561,0.3233898305084746,0.3268998793727382,0.3311118905647141,0.3339347466546384,0.331013916500994,0.3342332613390928,0.3363431151241535,0.0,2.112351310061369,51.67189127592128,149.2951528325968,214.1411874599252,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95782,47600,452.6842204171974,5065,51.732058215531104,4035,41.58401369777202,1539,15.723204777515608,77.34910350822409,79.67804515280963,63.34642956891118,65.06688614580997,77.14927420445362,79.48041477713653,63.270345501694045,64.99429506588845,0.1998293037704712,197.63037567309996,0.0760840672171312,72.5910799215228,213.29858,150.03109875240722,222691.7166064605,156638.09353783302,505.53459,339.1668013817324,527232.0477751561,353537.8373616466,457.46092,224.39638021104284,473882.4831387943,231478.4341259487,2296.96872,1086.6268466967342,2368721.764005763,1105079.4582455305,924.15264,420.2353868279784,951830.5840345784,425722.07390530384,1493.51764,642.6657846116653,1526865.611492765,642103.218541888,0.38101,100000,0,969539,10122.350754839114,0,0.0,0,0.0,43975,458.53083042742895,0,0.0,41374,428.3477062496085,1227320,0,44048,0,0,0,0,0,92,0.9500741266626298,0,0.0,1,0.0104403750182706,0,0.0,0.05065,0.1329361434083095,0.3038499506416584,0.01539,0.3367385546727204,0.6632614453272796,23.39690044755328,4.238499344000108,0.2976456009913259,0.2780669144981412,0.2210656753407682,0.2032218091697645,11.31624569745763,5.958757410045377,16.616807262335527,11599.83153903018,46.37306163172475,13.794450546701734,13.636633566119349,9.869806625333014,9.072170893570656,0.5719950433705081,0.7789661319073083,0.6827643630308077,0.5840807174887892,0.1134146341463414,0.7348798674399337,0.9126016260162602,0.8393939393939394,0.6798029556650246,0.1263736263736263,0.5024752475247525,0.6746031746031746,0.6234213547646383,0.555878084179971,0.109717868338558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315942968243,0.0048753788301117,0.0072637996976798,0.0097002569806299,0.0117338430878106,0.014017264546602,0.0161845940602132,0.0183191304791549,0.0205683107010391,0.0227335509151737,0.0249664484535554,0.0269368907131862,0.0293510097117311,0.0315372343162987,0.0339004021033096,0.0357685117283121,0.0376134352914394,0.0395786024616086,0.0416151456270327,0.0434556227806183,0.0583250717453691,0.0720097895661632,0.0854207077326343,0.098453001513368,0.1109331366246904,0.1260117928017414,0.1366628157161178,0.1474738666695024,0.1571634384504562,0.1664506176146042,0.1788935529006565,0.1909659140064019,0.2019396996944755,0.2109942262269268,0.2197872317018163,0.229739307625861,0.2383104564222743,0.247113060100073,0.253820409552442,0.2600016025457584,0.2658710886005689,0.2712568127061355,0.2772335794056407,0.2819496184852005,0.2861495878503878,0.2905308818455168,0.2939616125722579,0.2972350523596849,0.3005103494728116,0.3043702070931721,0.3019741980662016,0.2993051255589955,0.2971421334796741,0.2937738979871582,0.2921998013254852,0.288406903925462,0.2855519070472341,0.2860557247159742,0.2870542173802026,0.2868055555555555,0.2877548734035402,0.2877792896724447,0.2888814663270844,0.2905931428316491,0.2917116987294954,0.2922904678834587,0.2934442102864954,0.2958743745476287,0.2997893997893998,0.3017796138873441,0.3055896666211852,0.3070774442856386,0.3129852913326179,0.3145007984183712,0.3160719329629978,0.3181709930935937,0.3235474946203504,0.3318467464017839,0.3369057433360813,0.3466353677621283,0.0,2.1028566836671643,52.56727937146314,149.66152363662988,207.4668391564914,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95661,47864,455.32662213441216,5175,52.67559402473317,4144,42.67151712819226,1655,16.87207953084329,77.31532774038504,79.70664353946296,63.31028192710126,65.07590015238884,77.1067409924306,79.50301478245244,63.23067405401379,65.00078636470964,0.2085867479544418,203.6287570105202,0.0796078730874683,75.11378767920007,212.59502,149.59719965259129,222237.92350069515,156382.64251115007,504.86407,339.1016079821131,527132.802291425,353851.67203156266,465.2693,228.3987433080851,482502.4200039724,235657.65644400296,2377.40316,1124.5420903978747,2450324.8763864064,1140636.4248731197,980.92485,445.3530781178289,1007529.3693354658,447673.29458841897,1615.39964,696.5498933030252,1648856.1064592677,693669.603312692,0.38162,100000,0,966341,10101.723795486145,0,0.0,0,0.0,43794,457.13509162563633,0,0.0,42092,436.1547548112606,1225463,0,43959,0,0,0,0,0,100,1.0349045065387148,0,0.0,0,0.0,0,0.0,0.05175,0.1356061003092081,0.3198067632850241,0.01655,0.3650999259807549,0.634900074019245,23.500261470774507,4.1811671005333135,0.3011583011583011,0.2649613899613899,0.2171814671814672,0.2166988416988417,11.192155301642153,5.899971261839851,17.88056939326897,11645.139580684214,47.61211772952088,13.405062081569666,14.238379397074135,10.063957383729504,9.904718867147578,0.5740830115830116,0.8069216757741348,0.6939102564102564,0.5855555555555556,0.111358574610245,0.7491961414790996,0.9209401709401708,0.8599439775910365,0.7660550458715596,0.1343283582089552,0.4989655172413793,0.7222222222222222,0.6273849607182941,0.5278592375366569,0.1047345767575322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.004805450232162,0.0072154904706813,0.0096620811574177,0.0119730631510416,0.0142500636618283,0.0164619966545632,0.0189877942903835,0.0212507030730684,0.0235627828865177,0.0255371519409261,0.0275709046831503,0.0296075304768273,0.0315101805292226,0.033711808422791,0.0356913848381425,0.0377868725068642,0.0399165550954323,0.0418456609700537,0.0440134239379664,0.058653293632137,0.0727268919881057,0.0861593039243469,0.0990960654116111,0.1109316953731847,0.126689743508315,0.1380181787291879,0.1485529245092086,0.1586609376002052,0.1685646513325247,0.1805345979737012,0.1921427643262442,0.2022448668539203,0.2113298821263229,0.2202139025652887,0.2296582248993311,0.238248961172423,0.2456416778274228,0.2530201189881466,0.2601290559204117,0.2661139032355189,0.2715046526599169,0.2776093957188861,0.2815870616324131,0.2853515411437388,0.2896877233628275,0.2940881951659135,0.2983605306335296,0.3013106651658062,0.3056786995989022,0.3030719112618797,0.2998844216956988,0.2980367321089297,0.2957471712836519,0.2927017595961096,0.2899455357689248,0.2861432929238647,0.2864599525484742,0.2871157285191177,0.2872399124290266,0.2884055808401104,0.2888495226847751,0.2894231170892685,0.2900343183135,0.2912342098324504,0.2942658287020204,0.2965050091074681,0.3015043746459369,0.3049101964781554,0.3095522150640261,0.3139874167958421,0.3191602163079207,0.3251417769376181,0.3312691131498471,0.3354072398190045,0.3389388915206063,0.3396197948098974,0.3382120253164557,0.3442934782608696,0.340943113772455,0.0,2.4867258526622544,54.008130774231816,151.52499356082026,214.2897879786392,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95620,47673,454.2878058983476,5186,53.03283831834344,4095,42.177368751307256,1583,16.136791466220455,77.3146043072854,79.73384065666416,63.296484254502126,65.083027914457,77.10604007136564,79.52935843690618,63.21826983962245,65.00899440170261,0.2085642359197663,204.48221975797765,0.0782144148796817,74.03351275439718,211.63318,148.8403687733694,221327.31646099145,155658.19783870463,503.50748,337.5992367199442,525943.5787492156,352435.6899392848,457.39043,224.26634869287983,474393.8715749843,231472.59359669103,2365.31292,1107.0030626079442,2437773.520184062,1122123.2677230982,962.81004,434.5156697371062,988571.4076553022,436214.5584523205,1543.87686,658.2235748303983,1575593.6833298474,654933.0865568131,0.38268,100000,0,961969,10060.3325664087,0,0.0,0,0.0,43741,456.797741058356,0,0.0,41473,429.711357456599,1232612,0,44214,0,0,0,0,0,74,0.7738966743359129,0,0.0,2,0.020916126333403,0,0.0,0.05186,0.1355179262046618,0.3052448900887003,0.01583,0.3446369332841872,0.6553630667158128,23.68247971895359,4.130786614395479,0.3218559218559219,0.2554334554334554,0.2139194139194139,0.2087912087912088,11.094648267241904,5.917952825161067,17.055418379060818,11639.341874181826,46.718579601089374,12.80551323748884,14.806122639946253,9.680001741287096,9.426941982367186,0.57997557997558,0.8154875717017208,0.6927162367223065,0.5776255707762558,0.1204678362573099,0.7574013157894737,0.9230769230769232,0.8728323699421965,0.7746478873239436,0.1164021164021164,0.5050364709968739,0.7283737024221453,0.6286008230452675,0.5143288084464555,0.1216216216216216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025331077178725,0.0048777519749318,0.0071669306046209,0.0093786516283086,0.01165771484375,0.0140354451008352,0.0164829000112197,0.018418633159669,0.0207423469126837,0.0226418572262444,0.024676923076923,0.0267282999486389,0.0287639524715806,0.0307351501725825,0.0326799409572766,0.0348959841184498,0.0369376463518246,0.039223014711226,0.0409834359913434,0.0431993825679748,0.0578643699305962,0.0721034988476849,0.0850923067229538,0.0976051371124796,0.1101094655505473,0.1258841967046465,0.137700634168623,0.1483668140885597,0.1585331935559787,0.1679235148780749,0.1800597646094264,0.1914556962025316,0.2016821370985314,0.2109206418752396,0.2192968922195283,0.2299276552305712,0.2383038158556344,0.2457782734574785,0.2539787120446206,0.2606272576113755,0.2664953465759133,0.2721849889469806,0.2778047308570684,0.2830844459359045,0.2876704014372594,0.2924528301886792,0.2954443166474971,0.2994662600076248,0.3025228557019642,0.3055606823634877,0.3025595502293238,0.3003324815211716,0.2978995973759045,0.2951902099316602,0.2930491140444761,0.2905118659128862,0.2874499057515325,0.2879330747485372,0.2887302239572632,0.2890726879722753,0.2897025000467473,0.2904101504868693,0.2912101645490523,0.2917491602340222,0.2921570968127014,0.2936922043705119,0.2966226138032305,0.3011658635162443,0.305656839254089,0.3086812927577259,0.3142600089968511,0.3182940280476916,0.3243429718371699,0.3278353635469471,0.3299430810861248,0.3358279876455215,0.342623960578996,0.3445412193639862,0.3475543478260869,0.3563218390804598,0.0,2.564846490604787,52.600122434532864,145.5355718845019,215.86585229213503,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95652,47410,453.5190063981934,5070,51.92782168694852,4006,41.358257015012754,1553,15.88048341906076,77.29129418892526,79.69181457928933,63.29829466637945,65.07026347173627,77.09334035722915,79.49576584486816,63.224179168218605,64.99917074459019,0.1979538316961111,196.04873442116852,0.0741154981608431,71.09272714608039,212.38448,149.37834520412278,222038.7237067704,156168.5539289537,501.16305,335.9007320563843,523437.952159913,350663.3965378501,455.55351,222.35812949010972,473454.4494626354,230321.28195248617,2295.1672,1068.630338408979,2370619.913854389,1088329.0452985612,921.94255,410.7065978520644,949703.6235520428,415228.70180661534,1506.65766,637.082482841989,1541829.8833270606,637571.0785902337,0.37973,100000,0,965384,10092.669259398654,0,0.0,0,0.0,43648,455.7771923221679,0,0.0,41124,427.0375946138084,1230245,0,44167,0,0,0,0,0,96,1.0036381884330698,0,0.0,0,0.0,0,0.0,0.0507,0.1335159192057514,0.3063116370808678,0.01553,0.3566420314572673,0.6433579685427326,23.600614035526863,4.124115059154677,0.3130304543185222,0.2573639540688966,0.2216674987518722,0.2079380928607089,11.293375814354173,6.061570395293181,16.548141436655065,11442.015276766078,45.86451920294243,12.640609080271409,14.401920244632112,9.900953417255684,8.921036460783226,0.5751372940589117,0.8147429679922406,0.6961722488038278,0.5608108108108109,0.1116446578631452,0.752568493150685,0.9080188679245284,0.8614958448753463,0.6796536796536796,0.1710526315789473,0.5021141649048626,0.7495881383855024,0.6293393057110862,0.5190258751902588,0.0983847283406754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359997163781,0.0041670891209571,0.0063842960526983,0.0085865257595772,0.0109269602905716,0.0128431023068696,0.0149988783979444,0.0170931443625298,0.0192520039260592,0.0213277906333831,0.0231766346706046,0.0251319762545447,0.0271488092176328,0.0291923417760649,0.0312074162778213,0.0334902001344572,0.0355258930699636,0.0373162222775978,0.0393399298727513,0.0412001417818644,0.0562823942484534,0.0704926103214588,0.0841663166736665,0.0966118999252702,0.1090154937307383,0.1240817968204238,0.1353609341825902,0.1452492543672773,0.1555641083207714,0.164626945786366,0.1762980852164913,0.1875115042714683,0.1972028733130169,0.2069671458130343,0.2162835291265345,0.2258314941942352,0.2341946799834657,0.2417686324391863,0.2500624361448518,0.257283944959384,0.2642208205543661,0.269865032396903,0.2761224948802632,0.2804052029011569,0.2851655564739631,0.2891835224469659,0.2926627678358984,0.2958743332866581,0.299376918792181,0.3028852493604452,0.299207406510301,0.2962580822671619,0.2940123978585517,0.2911542407907857,0.2902003328973963,0.2867301120255007,0.2840704042546456,0.2846230924651346,0.2838830969065117,0.2839997856874967,0.2849406959096104,0.2854007237349469,0.2865104974227884,0.2867004758606823,0.2893683327340285,0.2889165952362399,0.2892337316644957,0.2939207158724696,0.2985544783171747,0.3001584158415841,0.303164958737644,0.3055892113996734,0.3102237823606845,0.3121198296836983,0.3160762942779291,0.3165219459973831,0.3224961479198767,0.3290229885057471,0.3323229539818131,0.3368580060422961,0.0,2.0272503657253984,51.17568780677776,146.2150676994717,211.62619113317805,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95636,47604,453.5948805888996,5044,51.43460621523276,4040,41.699778326153336,1586,16.249111213350623,77.27514686010801,79.68713914969081,63.27600815666828,65.05656230953703,77.0707231891214,79.48483449320845,63.19771714922045,64.98149467890015,0.204423670986614,202.3046564823545,0.0782910074478309,75.06763063688027,210.86714,148.36119244167747,220489.06269605583,155130.8842294508,501.75964,336.7372687650628,524115.53180810576,351562.9666287411,461.45515,226.48487616320497,479190.4303818646,234207.0645738506,2325.83644,1098.666935646126,2402238.027521017,1119071.11929203,965.14763,436.5961031266389,992159.2810238824,439512.9675475805,1536.9328,663.272519325154,1575355.9329122924,665222.4516717584,0.38058,100000,0,958487,10022.230122547997,0,0.0,0,0.0,43585,455.1633276172153,0,0.0,41780,433.5292149399808,1232082,0,44223,0,0,0,0,0,85,0.8887866493788951,0,0.0,0,0.0,0,0.0,0.05044,0.1325345525250932,0.3144329896907216,0.01586,0.3523610847714773,0.6476389152285227,23.634327567146308,4.204097239034786,0.3277227722772277,0.2559405940594059,0.2086633663366336,0.2076732673267326,11.34928063726822,6.1728377324838215,16.98861220431349,11575.44242132774,46.26276993256496,12.668054774147205,14.969905246925023,9.430791142292929,9.194018769199802,0.5806930693069307,0.7959381044487428,0.6986404833836858,0.5741399762752076,0.135876042908224,0.7186468646864687,0.8950892857142857,0.8314285714285714,0.7116279069767442,0.1306532663316583,0.5215700141442716,0.7201365187713311,0.6509240246406571,0.5270700636942676,0.1375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0050677558963339,0.0072751255644056,0.0096394108684611,0.0118390138223537,0.0138809678996252,0.0161010727250479,0.0183867443926044,0.0204062854630775,0.0224340596330275,0.0246479234406572,0.0269667769308212,0.0291472900119346,0.031221332343816,0.0331264650303074,0.034925101382107,0.037170251360456,0.0392684294705356,0.0413657460403355,0.0433522093253657,0.0580175170885679,0.072718890146276,0.0856356493056285,0.0981532399945218,0.1109855286785676,0.1264801203160414,0.1368664916736628,0.147240375696969,0.1571781780817519,0.1667186206748288,0.1787291475462938,0.1901275543407523,0.200723918755383,0.2105465194073066,0.2189748796962606,0.2281569036959685,0.2361631876434047,0.244490334811605,0.2523787844297746,0.2591818453269632,0.2647826540911147,0.2716388155965992,0.2766744964054381,0.2814113803953594,0.2859662996532636,0.2905693906261569,0.293925907352849,0.2983432449985355,0.3015399385062466,0.3041151284490961,0.3014749501159467,0.2986186665932159,0.2957917130418856,0.2934379107625197,0.2910356909555199,0.2874674827850038,0.2844183142888752,0.2855199095096801,0.2860570786746311,0.2864536093474897,0.2872841444270015,0.2883676041912865,0.2897358254150569,0.2908300835654596,0.2914491017964072,0.2919984437816106,0.2924506914531852,0.2959289044653753,0.2989791637533212,0.3013552491208661,0.3044834131790653,0.307143234812034,0.313307937300943,0.3151396521870059,0.3219848894692659,0.3236891828058573,0.3337387866808575,0.3375,0.3482777474029524,0.3566539923954372,0.0,2.041537393408743,53.065329388772,143.47944501963622,212.6751059704598,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95692,47616,454.7611085566192,5099,52.21962128495591,4011,41.41412030263764,1520,15.539439033566026,77.28391542799022,79.68189915696786,63.28504443165552,65.05977200473305,77.087116641415,79.48609105494535,63.21069252709386,64.98798998015135,0.1967987865752292,195.80810202251087,0.0743519045616594,71.7820245816938,210.11848,147.90860122664424,219577.89574886093,154567.36323479938,500.00941,335.4472301446776,522022.2484638215,350051.5718604248,457.72172,223.91299894203183,475106.3620783346,231515.1848176135,2294.57692,1076.0385417936202,2369964.678343017,1096568.387946349,922.79509,414.7288498063956,952425.375161978,421486.2786924649,1481.3117,635.1360182762037,1515743.0297203527,636106.4912159194,0.3813,100000,0,955084,9980.813443130042,0,0.0,0,0.0,43478,453.8310412573674,0,0.0,41303,428.4161685407349,1239968,0,44499,0,0,0,0,0,91,0.9509676879989968,0,0.0,0,0.0,0,0.0,0.05099,0.1337267243640178,0.2980976662090606,0.0152,0.363261480787254,0.636738519212746,23.66975743651447,4.097452835209149,0.3093991523310895,0.2734978808277237,0.2079281974569932,0.2091747693841934,11.326463768111768,6.062466708909439,16.28568268737975,11546.219279087009,46.04520806858577,13.356530053413351,14.137887016376885,9.306635931134828,9.244155067660708,0.5843929194714536,0.7866909753874203,0.7099113618049959,0.605515587529976,0.1132300357568533,0.7510955302366346,0.9174107142857144,0.8757575757575757,0.7458563535911602,0.1208791208791208,0.5181184668989547,0.6964560862865947,0.6498353457738749,0.5666156202143952,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019963113840416,0.0041889808503732,0.0065281176076428,0.0088616985599739,0.011039549057314,0.0132731643712818,0.0151971033709011,0.0172202475793602,0.0191971362822807,0.0213382777766395,0.0235857767199458,0.025615469976573,0.0277320436303766,0.0298973534504081,0.032,0.0341065389825951,0.0361420814854727,0.0379301396169616,0.0397665806773737,0.0418342886920271,0.0571183838046191,0.0703943718003747,0.0838930400470153,0.0966380807071079,0.1091949170431038,0.1242709402885541,0.1363269553398882,0.1466469291472752,0.1567774416640834,0.1661425182736376,0.1784944382167802,0.1908047969320434,0.2008362278285297,0.2098340907846465,0.2183966319130645,0.2279745584921577,0.2366520592049367,0.2445255885767094,0.2509830215696524,0.2575164898193289,0.263807094829585,0.2704518277099111,0.2766686832022585,0.2807322929171669,0.2855387086568181,0.2895438059756729,0.2944086156158036,0.2988866976270755,0.3034990744216753,0.306195623517005,0.3036714039621016,0.3008590474881451,0.2979582079478021,0.2952497657319974,0.2927448447868881,0.2891092442118471,0.2862994417295314,0.2869119549376954,0.2879433833560709,0.2884255546645282,0.288750327678538,0.2899218672732667,0.2898158066074391,0.2908300466116887,0.2921554429157615,0.2929190148194531,0.2933503836317135,0.2968313287064661,0.3010125698324022,0.304440329380245,0.3078315160837895,0.3117860714849713,0.3149205561072492,0.3189064362336114,0.3228687166267722,0.3307692307692307,0.3345892991710625,0.3376597444089457,0.3418591859185919,0.3392519833774083,0.0,1.993882697661814,49.9348858424986,155.2215393218294,207.2114978175736,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95659,48164,458.8172571321047,5219,53.293469511493946,4155,42.86057767695669,1600,16.339288514410562,77.35161970545354,79.75660694059644,63.31721993396855,65.09375711304462,77.14808406704982,79.55525621245962,63.240817886584246,65.02044680910964,0.2035356384037214,201.35072813681631,0.0764020473843061,73.31030393497429,210.46762,148.10475191814996,220018.62867059032,154825.73716864063,506.38224,339.884453547541,528801.2837265704,354747.8371585956,467.42042,229.25504271641924,484869.9651888479,236787.12419801316,2382.9264,1121.05288669989,2460963.8821229576,1141976.6298422534,990.01619,449.1260192695106,1021967.3005153724,456600.286632842,1563.1507,659.9465429250073,1598832.1433424978,662178.1092168385,0.38371,100000,0,956671,10000.846757754103,0,0.0,0,0.0,44096,460.38532704711525,0,0.0,42301,438.4532558358335,1234980,0,44265,0,0,0,0,0,95,0.9931109461733868,0,0.0,1,0.0,0,0.0,0.05219,0.1360141773735373,0.3065721402567541,0.016,0.3448592974066581,0.6551407025933419,23.440013775652247,4.212550960505151,0.3068592057761732,0.2685920577617328,0.2093862815884476,0.2151624548736462,11.513374442337213,6.15878436827564,16.94197727975893,11678.224168090765,47.325436758527246,13.630909614307477,14.302960399276108,9.600227559998388,9.791339184945286,0.5783393501805054,0.7894265232974911,0.712156862745098,0.5839080459770115,0.1185682326621924,0.7706953642384106,0.9307359307359307,0.8861111111111111,0.7258883248730964,0.2063492063492063,0.4994910078045469,0.6896024464831805,0.6437158469945355,0.5423476968796433,0.0950354609929078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0042184251888657,0.0063835833316418,0.0087072258798667,0.0111383494898737,0.0135567325320839,0.0158466323356957,0.0180024711276306,0.0201533742331288,0.0221141042712281,0.0244988407164987,0.0265223914339149,0.0290715623520694,0.0311343415911504,0.0331980209269416,0.0351245654692931,0.0372393350192778,0.0394796943775433,0.0418760469011725,0.0438450149104331,0.0585248111344472,0.072401553780272,0.086349133045048,0.0995570332803737,0.1121828696863523,0.1272913932517675,0.1378504920956799,0.1479365620736698,0.1581469990371242,0.1676260228956807,0.179275091934562,0.1910901172238954,0.201258477851443,0.2105896905410878,0.2197823980266056,0.2292888420819245,0.2383602051419568,0.2468702152571377,0.2547483623400656,0.2612574438845625,0.2681643087672215,0.274310425432445,0.2799134434603696,0.2846367511134524,0.2889759671960111,0.2933895990452873,0.2973195670357932,0.3011028338642334,0.304518993713939,0.3083953604586938,0.3056883493581135,0.3023389807257013,0.2998932314349133,0.2967732641889945,0.2948315206116824,0.29151973131822,0.288058053320713,0.2887714533466403,0.2896520021792427,0.2901279609888056,0.2915389789969355,0.2919044433074895,0.2929303471164082,0.2926135100280161,0.2946639608451713,0.2954862726849697,0.297782680015838,0.3024090370092991,0.3059483178937104,0.3090142288439557,0.3128473948212752,0.3162527507073247,0.318108376833209,0.3218693558097532,0.3257498374965177,0.3257325141776938,0.3357262868489384,0.332931484830219,0.3350390519795314,0.3469996272828923,0.0,2.2331985065974687,52.339740082349486,151.73402299578427,218.55583058839244,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95798,47780,454.9781832606109,5042,51.59815444998851,4000,41.253470844902814,1546,15.731017349005198,77.3507064425629,79.67930597634722,63.34838135415546,65.06996092537536,77.15629961716635,79.48814419445985,63.27503643769668,65.0002206286102,0.1944068253965412,191.16178188737365,0.0733449164587796,69.74029676516125,212.56246,149.5078696166519,221886.11453266247,156065.75253831176,503.14732,337.4304943147487,524701.1419862628,351715.45785376395,459.3116,224.866171187178,476693.3547673229,232540.50902344735,2286.68896,1075.5379235578805,2357871.521326124,1093595.6111378944,920.9216,410.9071974709063,945856.6880310654,413477.7513204895,1509.45806,648.5662705291232,1537280.2354955217,644870.670761917,0.38151,100000,0,966193,10085.732478757383,0,0.0,0,0.0,43630,454.89467421031753,0,0.0,41562,431.08415624543306,1232590,0,44284,0,0,0,0,0,96,1.0021086035199065,0,0.0,0,0.0,0,0.0,0.05042,0.1321590521873607,0.306624355414518,0.01546,0.3518063173822583,0.6481936826177417,23.5226350790441,4.181970604168658,0.3105,0.26575,0.2175,0.20625,11.38573632011752,5.991858383714116,16.71894655854954,11565.36019612435,45.9135746857929,12.929482302136662,14.113523650321556,9.76132454734459,9.109244185990104,0.57775,0.8015051740357478,0.6811594202898551,0.5862068965517241,0.1248484848484848,0.7443037974683544,0.9327146171693736,0.8342696629213483,0.7385321100917431,0.1222222222222222,0.5076376554174068,0.7120253164556962,0.6196388261851016,0.5352760736196319,0.1255813953488372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0043694241686942,0.0064740682111073,0.0085425808548675,0.0104522531316089,0.0125932788337218,0.0149504708328237,0.0172975069139002,0.0194876196899557,0.0217662709783053,0.0238641719777855,0.0262164214328223,0.0284771750971163,0.0305937577204974,0.0323884552325761,0.0345557851239669,0.0367009498582455,0.0389264388787526,0.0409886286930785,0.0429011638801557,0.0577549146458533,0.071778089124025,0.0859365172543922,0.0987074401008827,0.111437815506866,0.1271668357855572,0.1388835867744056,0.1492044910338956,0.1587201605671093,0.1682618621451002,0.1809502281925428,0.1917535801134828,0.2020731018297188,0.2105309154467992,0.2183769046414986,0.2288836777133755,0.2370414939608682,0.2452344846953103,0.2526627084844089,0.2589220351390922,0.2652142288109175,0.2712202752711269,0.2764584195283409,0.2809358544758257,0.2859187212729058,0.2904468318135391,0.2948509755914758,0.2977320373546788,0.300858857615894,0.304234476220572,0.3014668350213577,0.298922073463783,0.2965478450397243,0.2942178343581305,0.2913694139981905,0.2874642523971922,0.2844831675653452,0.2850037753192607,0.2849825855357508,0.2861321680192633,0.2857223180148437,0.2855420972554289,0.2865197979332173,0.287772201810198,0.2904944791166586,0.2909995053242729,0.2916393676114513,0.2965350270406238,0.3008030297717151,0.3042224592171268,0.3059545454545455,0.3088634548842161,0.3126614987080103,0.3125477026408182,0.3140155416159536,0.3127070515854235,0.3161448741559239,0.3189089417555373,0.3283249860879243,0.3297380585516178,0.0,1.853620460228436,51.98018999606673,148.85901931931326,205.8409715179749,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95735,47836,456.2490207343187,5085,51.80968297905677,3989,41.08215386222385,1510,15.438449887710869,77.31652017658898,79.67804920667882,63.31665033110207,65.06269693822878,77.11755413673569,79.48153463596763,63.240993722954855,64.99048730281267,0.1989660398532891,196.51457071118728,0.0756566081472129,72.20963541611525,211.50228,148.82831484813218,220924.48947615817,155458.40230650463,501.67503,336.8737146285062,523451.391862955,351308.4537823223,459.53848,225.23811746258204,476104.381887502,232272.7891704384,2272.45424,1080.6368068750123,2341462.871468115,1096574.9693163545,916.27858,418.6436581712964,941978.0644487388,422315.8210488032,1463.5286,633.4215554654486,1497066.381156317,634132.4836239732,0.38228,100000,0,961374,10042.02224891628,0,0.0,0,0.0,43668,455.5282811928762,0,0.0,41566,430.2815062411866,1234244,0,44290,0,0,0,0,0,86,0.8983130516530005,0,0.0,0,0.0,0,0.0,0.05085,0.1330176833734435,0.2969518190757129,0.0151,0.3555054490792935,0.6444945509207065,23.47470932942598,4.121709260903922,0.3128603660065179,0.2742541990473803,0.2160942592128353,0.1967911757332665,11.489806047967027,6.242703855814032,16.29119564860578,11579.37711709554,45.88123850668533,13.22191323125946,14.24291264882561,9.69835501070254,8.718057615897715,0.5846076710955127,0.8025594149908593,0.6810897435897436,0.5974477958236659,0.1133757961783439,0.7431874483897605,0.9310344827586208,0.8494623655913979,0.7276995305164319,0.1256544502617801,0.515478761699064,0.7177541729893778,0.6095890410958904,0.5546995377503852,0.1094276094276094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0043896554171186,0.0068003044912458,0.0089517054980338,0.0112202962239583,0.013606827857332,0.0159097630873099,0.0181162750324234,0.020337215365896,0.0223393908369593,0.0243724879009105,0.0264511690472034,0.0283307967586689,0.0305011790631339,0.032492650471917,0.0345825196573778,0.0368415059573719,0.0388265925334273,0.0407800496886662,0.0425274782518101,0.0572764953383238,0.0707371945796055,0.0842439750823248,0.0973963153024312,0.1099066800231981,0.1251335314711202,0.1361432617943794,0.1461251862891207,0.1562640227355285,0.1658620319708185,0.1780224278527647,0.189801638404017,0.2010570502642625,0.2103283510283521,0.2191899954865201,0.2286420464621386,0.2365967235815028,0.2450970464135021,0.252794643363786,0.2596822414918842,0.2657773869986233,0.271898023622968,0.2775732900950374,0.2823141486810551,0.2864884568651276,0.2902652902652902,0.2937906860290435,0.2981761718700284,0.302263579535895,0.3054272974327854,0.303042536299167,0.2996600090847774,0.2975690233791139,0.2952517319680074,0.2929443065443898,0.2888517911567855,0.2859018571835353,0.2858363176397148,0.2868227653392582,0.288601758524555,0.2897290815752988,0.2912341634763389,0.2913361103552215,0.2921850222232149,0.2929193559997121,0.2933527136813144,0.2944802704468623,0.2997498436522827,0.3040186981092583,0.3067791931222148,0.3097413169319826,0.3142283085708243,0.3195373554235698,0.3201503759398496,0.3222356551660001,0.3232168162494095,0.3281035795887281,0.3394900622364987,0.3410958904109589,0.3474446987032799,0.0,2.246659692140589,52.70886161715193,149.34560950019144,199.55876117650624,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95680,47696,454.8808528428093,5108,52.14255852842809,4063,41.90008361204013,1532,15.614548494983277,77.40264542862671,79.78333526510997,63.35728834693722,65.11207701612526,77.20307104459528,79.58892879261842,63.28133669688743,65.0410472851412,0.1995743840314361,194.40647249155063,0.0759516500497881,71.0297309840513,211.3408,148.73202505789922,220882.9431438127,155447.35060399165,504.90397,338.83786466769845,527131.3545150502,353567.7842826331,463.7636,227.49100378379063,481511.5384615384,235242.4417153736,2289.69788,1081.0063109986295,2361184.0719063543,1097963.6008285396,919.9962,421.5842585199552,949077.518812709,428232.6677673405,1477.69626,631.2621022535202,1507757.7968227423,627557.0425358155,0.38177,100000,0,960640,10040.133779264212,0,0.0,0,0.0,43879,458.0058528428093,0,0.0,42117,437.0819397993311,1235223,0,44324,0,0,0,0,0,73,0.7525083612040133,0,0.0,0,0.0,0,0.0,0.05108,0.1337978363936401,0.2999216914643696,0.01532,0.3510558069381598,0.6489441930618401,23.725474966044278,4.028962068164938,0.309623430962343,0.2872261875461481,0.209205020920502,0.1939453605710066,11.671345816196055,6.579629244820837,16.271232441742384,11588.824221468582,46.18089308098812,14.16150337160762,14.11549470423069,9.397460494981503,8.506434510168305,0.59438838296825,0.7994858611825193,0.7114467408585056,0.5858823529411765,0.1129441624365482,0.7781512605042017,0.9208333333333332,0.8973607038123167,0.7291666666666666,0.2146892655367231,0.5182735816219979,0.7147016011644832,0.6423118865866958,0.5440729483282675,0.0834697217675941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.0046621464116675,0.0068370866301481,0.0090287722291622,0.0113889425570209,0.0136651528419852,0.0157513228052647,0.0179424372320881,0.0201933492754511,0.0224121168704907,0.0246420041616695,0.0266818606465654,0.0291178285009253,0.031020845348933,0.0328215604944386,0.0346869799795351,0.0369461443674733,0.0390602299613963,0.0407908558591353,0.0426394563495372,0.0571980777267028,0.0713298429319371,0.084918827591273,0.0974257550732718,0.1101629660882864,0.1252288190292782,0.1364393738392146,0.1464372784277821,0.1567068479097204,0.166575507008569,0.1792587965406197,0.1909647812628525,0.2012007439391797,0.2105280423396135,0.2190941395205562,0.2286859471190044,0.238149386845039,0.2463909765989237,0.254148966298499,0.2603063907625471,0.2663642030892845,0.2714055681314322,0.2761222224845923,0.2813247536120945,0.286497036112155,0.2907209900234958,0.2947614347646831,0.2982006446209679,0.3021310650161992,0.3057282970247564,0.3031278502065561,0.3005381423817935,0.2972704088781773,0.294858899936778,0.2933891015503761,0.289733156555266,0.2863900100908174,0.2866185779478875,0.2864739059527045,0.2874644886363636,0.2877274082910826,0.2883959713132421,0.2897085685818665,0.289929669647017,0.2900066876851055,0.2905681877039415,0.2900172848601626,0.2940387434881617,0.2985558811218083,0.3041901533367496,0.3088881838371934,0.3135040559885478,0.3192729551864619,0.3228048964787668,0.322565543071161,0.329283962153954,0.3347000759301443,0.3394532029535023,0.3456756756756757,0.3564504101416853,0.0,2.112728621307108,51.67463844070481,145.08855863962174,215.1021973348554,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95736,47684,454.917690315033,5240,53.63708531795771,4129,42.6276426840478,1579,16.179911423080135,77.33907921770925,79.70658145222114,63.32552877917672,65.07563210959445,77.14330462514894,79.51262739406128,63.25153160442081,65.00475236440263,0.195774592560312,193.9540581598607,0.0739971747559025,70.87974519181728,213.1118,149.95221294155786,222603.6182836133,156630.9569457235,504.60394,337.9008300338335,526601.4038606166,352473.479186339,461.03027,225.12208265745969,478342.6088409794,232654.63055337095,2352.95892,1100.5128021269256,2430443.177070277,1122214.1745288346,966.86233,431.69877948773376,996746.5321300242,437747.2523269548,1537.65296,654.6924632221991,1576368.9730091086,657147.2443357542,0.3808,100000,0,968690,10118.346285618783,0,0.0,0,0.0,43837,457.3828027074455,0,0.0,41844,433.9328988050472,1226646,0,44013,0,0,0,0,0,94,0.9818668003676776,0,0.0,0,0.0,0,0.0,0.0524,0.1376050420168067,0.3013358778625954,0.01579,0.350748995250274,0.649251004749726,23.54292402560858,4.185443170686005,0.313877452167595,0.2693146040203439,0.2124000968757568,0.2044078469363041,11.240223043994888,6.03361083506785,16.90749126832854,11560.366613839196,47.10400359860843,13.39275981722788,14.668587257182931,9.637580054223683,9.405076469973933,0.5768951319932187,0.7985611510791367,0.6936728395061729,0.556442417331813,0.1267772511848341,0.736750651607298,0.9182242990654206,0.8691860465116279,0.6951871657754011,0.1354166666666666,0.5151108126259234,0.7236842105263158,0.6302521008403361,0.518840579710145,0.1242331288343558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020762437206287,0.0042077300563734,0.0064553454523309,0.0085656803771744,0.0107321241467706,0.0131684811944311,0.0153367664304287,0.0173049239910565,0.0196834291089797,0.0218152768389356,0.0241623678300019,0.0262933557922414,0.0282005923975645,0.0305268797263604,0.0323396436755506,0.0345387423347776,0.0364968040692434,0.0384192282944851,0.0405457400455476,0.0423820636772795,0.0572093848868655,0.0709921108251198,0.0847960574604173,0.0976948639212552,0.1100729742270215,0.125552664424277,0.1366568354940694,0.1469849246231155,0.1568070100448813,0.1658833880555376,0.1780457317730221,0.189599168453193,0.2009812453766154,0.2107048294273397,0.2194294899318514,0.2294271526115101,0.2375561063844041,0.2451159126716182,0.2534506242905789,0.2606802346901357,0.2666203784065266,0.271779937546051,0.2770183985243343,0.2814351901734727,0.2858893026528062,0.2900373813388421,0.2935610316330861,0.2968644917329678,0.3004453624217388,0.3040507628914838,0.3018738758087465,0.2992476248009226,0.2972322672332522,0.2940921628373792,0.2912628563795841,0.2880474675801321,0.285644330711149,0.2854308761804827,0.2862290378769767,0.286420325797991,0.2883914043651461,0.2889742831806089,0.2900045850527281,0.2904188283494021,0.2908865112724493,0.2932733338505702,0.2926214417221356,0.2973268719712365,0.3015213901877311,0.305242779819051,0.3087501134610148,0.31361009490483,0.31640625,0.3190857142857143,0.3260240739012783,0.330970942593905,0.3286573146292585,0.3296009771986971,0.3304685334072637,0.3274674827850038,0.0,1.9924486893546247,50.26136510678365,157.27284355807885,218.01025819803291,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95696,47223,449.7889148971744,5143,52.56228055509112,4108,42.43646547400101,1576,16.134425681324192,77.30793472821749,79.68393146015347,63.31631099018998,65.07006509962635,77.1078952227038,79.48408909452134,63.24130287827044,64.99667100587615,0.2000395055136863,199.8423656321364,0.0750081119195442,73.39409375019557,212.89444,149.7397556837732,222469.52850693863,156474.41448312698,501.05842,335.92784380529366,523130.4025246615,350572.9537340053,457.31169,223.81385397342495,474419.88170874433,231149.6893234765,2357.5336,1115.8211802961332,2436634.718274536,1139075.3430615005,942.03368,429.134957612069,971554.3909881292,435587.6605208869,1536.92198,656.0805347227864,1575972.747032269,662636.0214890689,0.37821,100000,0,967702,10112.251295769938,0,0.0,0,0.0,43571,454.81524828623975,0,0.0,41381,429.0356963718442,1229609,0,44173,0,0,0,0,0,96,0.9927269687343254,0,0.0,0,0.0,0,0.0,0.05143,0.1359826551386795,0.3064359323352129,0.01576,0.3568503350707371,0.6431496649292628,23.50493207718613,4.159944657058524,0.314508276533593,0.2704479065238558,0.2081304771178189,0.2069133398247322,11.26272086082015,5.987271667298651,16.995474796645546,11521.22128685797,47.34502160539868,13.734393905676315,14.657553969801356,9.47786188921263,9.475211840708372,0.5749756572541382,0.8055805580558055,0.6873065015479877,0.5707602339181287,0.1070588235294117,0.7363344051446945,0.9146341463414634,0.8449848024316109,0.7219730941704036,0.135,0.5048882681564246,0.7189014539579968,0.6334371754932503,0.5174050632911392,0.0984615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186116679829,0.0046106765027765,0.0069588857667454,0.0092020801170065,0.0113802782523797,0.0134923221050059,0.0157640892822546,0.0181316998468606,0.0201701118403565,0.0224790410580299,0.0244289990568745,0.02652977412731,0.0284462544736517,0.0306273823014319,0.0324844182110868,0.0344043336227928,0.0365746257058488,0.0387550221650073,0.0407560359085849,0.0428228916918586,0.0569697602757612,0.0714868853488518,0.0843903104312886,0.0969984434815531,0.1090389643248713,0.1236781998138905,0.1358843248748196,0.1459743687997615,0.1559054781642594,0.165164971896855,0.1773675935299059,0.1891131736656498,0.1993563888194301,0.2086194078803516,0.2169900563181978,0.2270859408748047,0.2351549773503224,0.2443806952413094,0.2518070511874908,0.258462102381416,0.2651948412790293,0.270835526546654,0.2760155288324969,0.2805992707033874,0.2846806751301133,0.2888984827926483,0.2931816473300423,0.2964425870241068,0.3004332485861049,0.303968715319981,0.3018028943326057,0.2993731487221878,0.2955724760293288,0.2937372509873703,0.2914472705637364,0.2876334614972197,0.2846325660969157,0.2858035244608101,0.2864132480240873,0.2860152846225269,0.286737007814989,0.2875358307798754,0.288108289049751,0.288451244535641,0.2901615342150109,0.2916492910758966,0.2924657144483014,0.296245133743564,0.2997927133471524,0.3039091556540318,0.3063973063973064,0.3102278749337573,0.3138241025963412,0.3150653694131955,0.3172905525846702,0.3217319490325625,0.3258443908323281,0.3307385229540918,0.3265251276538565,0.3309727916511368,0.0,1.949737183960652,54.45600934028309,153.26831161829037,208.5844171843836,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95711,47257,450.23038104293136,5180,53.06600077316087,4149,42.80594706982478,1586,16.205033904148948,77.38171245272493,79.7557764004435,63.34258245905804,65.09502398870283,77.18074842232322,79.55858105929258,63.26646387949266,65.02298574412087,0.2009640304017068,197.1953411509162,0.0761185795653816,72.03824458196095,211.90598,149.006645359271,221401.4481094127,155683.51579943034,503.90955,337.46722165084003,525909.7177962825,352009.87115421705,455.1128,222.56278255907696,472767.8009842129,230304.76733792108,2378.9532,1116.762011671469,2455131.0507674143,1136474.44643089,970.00241,438.8231976330674,997220.8419094984,442292.19380181486,1547.28544,661.7234805509512,1581698.2165059398,660008.6759065625,0.37821,100000,0,963209,10063.702186791486,0,0.0,0,0.0,43861,457.6798905037039,0,0.0,41331,429.0311458453052,1235898,0,44347,0,0,0,0,0,74,0.7731608697014972,0,0.0,0,0.0,0,0.0,0.0518,0.1369609476216916,0.3061776061776062,0.01586,0.3490774907749077,0.6509225092250922,23.86739307857109,4.199206652579759,0.3126054470956857,0.2631959508315257,0.2176428054953,0.2065557965774885,10.8909882629511,5.670953683516049,16.999338003343773,11505.964041263976,47.526574030718834,13.292011958752052,14.836401092522566,10.001444931815692,9.39671604762852,0.5876114726440106,0.8021978021978022,0.7286044718581342,0.5681063122923588,0.1213535589264877,0.7378800328677074,0.915217391304348,0.867816091954023,0.6990291262135923,0.1527093596059113,0.5252387448840382,0.7199367088607594,0.6775553213909379,0.5294117647058824,0.1116207951070336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673958839734,0.0044906689373435,0.0067581280188334,0.0092030148507811,0.0114225847793803,0.0135437881873727,0.0156818761152179,0.017803911960472,0.0198624045469879,0.0222438325314771,0.0243072286068708,0.0264268334000677,0.0285781863803706,0.0306142420090853,0.0326821667027852,0.0345736706609733,0.0366216146237895,0.0385297871678064,0.0406548033821801,0.0427378930145794,0.0571064531963112,0.0712087267854525,0.0845538861843209,0.0969377557568298,0.1087894353792441,0.1244236707415084,0.1353937889253164,0.1455977855850101,0.1551387093672887,0.1642783593615925,0.176343831144344,0.1884308971250433,0.1992517998129499,0.2088038214750281,0.2178422551941838,0.2268812681263698,0.2357198617151778,0.2431906614785992,0.2505642316809,0.2577823573186788,0.2646112910689495,0.2701884410361919,0.2755437741118553,0.2809987659202281,0.2857819502301461,0.2904628728424113,0.2934166927164739,0.2974320491459242,0.3011049008953061,0.3038333311370854,0.3004018439125351,0.2969322627136092,0.2942267693518466,0.2914488934963212,0.2905759162303665,0.2870596123369499,0.2835547989470531,0.2841391702058151,0.2843851338732406,0.2850904443221557,0.2864569746208027,0.286677146787188,0.2871593552675307,0.2882153238511549,0.2899269933673712,0.2913054695562435,0.2921427563831288,0.2961638895797065,0.2991636881007739,0.3045152670255825,0.3081017683146878,0.3121609522304734,0.3175857958466654,0.3196024882415414,0.3247711563609191,0.3274440518256772,0.328521501291597,0.3335343787696019,0.3372474057891862,0.342376767290791,0.0,2.032171157640524,53.33205223975879,154.4445778176276,214.14439390733983,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95853,47637,452.2028522842269,5138,52.25710202080269,4040,41.52191376378413,1492,15.158628316275966,77.44506122741345,79.7220740676805,63.40474875222951,65.08363934527236,77.25000977897456,79.53188066227355,63.33049096464767,65.01396887559048,0.195051448438889,190.1934054069443,0.0742577875818355,69.67046968188129,212.77014,149.63861387696676,221975.46242684108,156112.6035460202,499.13146,334.6397283704417,520075.7305457315,348469.23904314014,460.29652,225.0448583169682,475883.1231156041,231518.6771621909,2313.01436,1088.009856261248,2379063.399163302,1101164.4296783588,954.14946,432.3981737648633,974502.4255891836,430355.67666504456,1457.15082,623.8898390931405,1481626.386237259,617201.7511002742,0.38053,100000,0,967137,10089.793746674595,0,0.0,0,0.0,43387,451.9629015262955,0,0.0,41595,429.7935380217625,1235573,0,44397,0,0,0,0,0,94,0.9598030317256632,0,0.0,2,0.0208652832983839,0,0.0,0.05138,0.1350222058707592,0.2903853639548462,0.01492,0.362369985141159,0.637630014858841,23.849376723834396,4.208857994212919,0.3116336633663366,0.2641089108910891,0.2188118811881188,0.2054455445544554,11.46846650242055,6.163683510865738,15.843194958987963,11578.283665527642,46.205338031610935,12.99178235200681,14.27618307212173,9.917231316258649,9.020141291223757,0.5896039603960396,0.8050609184629803,0.7116759332803813,0.5859728506787331,0.1313253012048192,0.7454858125537404,0.9254079254079254,0.8441176470588235,0.7464788732394366,0.1325966850828729,0.5265901981230449,0.7241379310344828,0.6626768226332971,0.5350223546944859,0.1309707241910631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0045685227767704,0.0067935471441752,0.0091652795258008,0.0113398500213384,0.0135922922749793,0.0156950215921127,0.0180794762764232,0.0204229594910598,0.0226996186055072,0.0248720049150112,0.0268088815958155,0.0287680377959225,0.0311464955049476,0.0334222808337025,0.0357032266055614,0.0377360441787834,0.0397492357908916,0.041734147253021,0.043929745702751,0.0580175595920835,0.0720121186794818,0.0855739833312392,0.0982097884486232,0.1101887507101824,0.1254802617690521,0.137105399709841,0.1478238694321659,0.1571218326081392,0.1662153628803527,0.1776686298955333,0.1892615710243839,0.1999891440047766,0.2091690231572971,0.2185485022573239,0.227636339496133,0.2365162340195499,0.2445530647789201,0.2517174144693586,0.25824905038671,0.2638387902330744,0.2695950053781041,0.2750928488633407,0.2802900666531047,0.2851666747537483,0.2903483836034506,0.2939807574411651,0.2972711782508074,0.3016228388031887,0.3048383482925415,0.3025231546826901,0.300528374390997,0.2975916465502722,0.2964395617037186,0.2934490200135986,0.2898718378032817,0.2872198191112858,0.2874378413630064,0.2881025118805159,0.2881130772092035,0.2898512962721706,0.2919319342922267,0.2917013657561625,0.2919874852996649,0.2916159809183065,0.2913383792720415,0.2931122017261804,0.2965727436710829,0.3020141196013289,0.3055544651619234,0.3103604214715326,0.3132625574393915,0.3184745232885276,0.3214394400486914,0.3246545727981953,0.3230167200284596,0.3253749617385981,0.3213920163766632,0.3272526257600884,0.3265862203191903,0.0,2.405178501220284,50.329136481238855,154.05607623636965,207.41567783285905,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95668,47714,453.8403645942216,5237,53.3825312539198,4186,43.01333779320149,1623,16.50499644604256,77.29747507811412,79.7001627039434,63.28577397120039,65.06558700844099,77.08851349215415,79.49731082693133,63.206938036547015,64.99229150863218,0.2089615859599689,202.8518770120797,0.0788359346533766,73.29549980880756,210.93908,148.4592260752456,220490.73880503408,155181.69719785676,504.4075,338.0527704280439,526501.0557344148,352613.5180290629,467.13529,229.59996745315715,483050.4557427771,235988.57463848605,2387.81232,1121.0672797620737,2454651.712171259,1130962.990132369,928.52732,422.1422649711789,952819.950244596,423504.97028387553,1578.47304,664.9142962560546,1606290.9854914914,657630.4307608462,0.38122,100000,0,958814,10022.30630931973,0,0.0,0,0.0,43802,457.0702847347075,0,0.0,42309,437.1890287243383,1232452,0,44238,0,0,0,0,0,86,0.8780365430446961,0,0.0,1,0.0104528159886273,0,0.0,0.05237,0.1373747442421699,0.3099102539621921,0.01623,0.3481914504932408,0.6518085495067593,23.63257763539085,4.123764024407746,0.3136645962732919,0.2663640707118967,0.2133301481127568,0.2066411849020544,11.383327217893692,6.242423088736002,17.17234760439025,11633.478896601026,47.83383710698183,13.746152685171213,14.879076922384098,9.905018265111428,9.303589234315092,0.5733397037744864,0.8089686098654708,0.674028941355674,0.5901455767077267,0.099421965317919,0.7674979887369268,0.922920892494929,0.8482384823848238,0.7373271889400922,0.1585365853658536,0.491335372069317,0.7186495176848875,0.6059322033898306,0.5428994082840237,0.0855920114122681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0047369809100683,0.0073404741357429,0.0097551061883954,0.0119832356770833,0.0140662877630426,0.016421198645506,0.0186474949449561,0.0209660758665125,0.0231948469549723,0.0254172094406777,0.0274396194820271,0.0294852933611794,0.0316454391822266,0.0337415078365374,0.0357375590885112,0.0380493366500829,0.0401125602259511,0.0421569545449816,0.0439816986107202,0.058417341342387,0.0731671569602495,0.087111195063594,0.1000652233373309,0.1125106813938032,0.1274943394629367,0.1374932325559176,0.1474341222333468,0.1566052465538076,0.1661441333104277,0.1777267285728152,0.1896110653427568,0.2006056183079721,0.2094439879485072,0.2190941258170835,0.2292681303320427,0.2375502905677246,0.24539013483222,0.2537830591656821,0.2599685956286032,0.2649661755166342,0.2719511909501838,0.2770777575140333,0.281937744498044,0.2864144976891267,0.2910400809267095,0.2944816786720952,0.2985281936922587,0.3017526562277026,0.3055999788530418,0.3036205687152646,0.3010976585123693,0.2985993448548514,0.2964512113931745,0.2945187165775401,0.2910398653301706,0.28754700287547,0.2880127009067399,0.2884108494175665,0.2887123716103351,0.2889000670690811,0.2901718213058419,0.2913011772059589,0.2919323660763881,0.2927015849489613,0.2929640951246049,0.294482524216847,0.2984939382577178,0.3027871768932919,0.3066940160151473,0.3094245582238332,0.314572333685322,0.3190943773844518,0.3230095180540867,0.3227523107086173,0.3270588235294118,0.3313464771511539,0.3320579943616593,0.331696672122204,0.3329523809523809,0.0,2.8617052283604894,53.4809197338062,151.038643077578,218.70398892864807,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95832,48002,456.4028716921279,5238,53.291176225060525,4173,42.98146756824443,1593,16.23674764170632,77.32864418348662,79.63795543324804,63.32870225298407,65.0377373716414,77.1231127746426,79.4366267467885,63.25049763404292,64.96345658918437,0.2055314088440099,201.32868645953292,0.0782046189411431,74.28078245702352,210.80444,148.4111662243888,219972.9109274564,154865.98028256613,506.63737,339.5391572428425,528063.6008848819,353698.62780401664,458.11908,224.84266043398887,474614.5859420653,231907.0438539414,2393.27628,1124.399532216598,2465303.36422072,1141528.0972550774,970.60377,439.5293746955147,996001.7217630852,442057.89868497296,1559.91914,671.2321778263886,1592156.002170465,669619.3795526469,0.38339,100000,0,958202,9998.768678520746,0,0.0,0,0.0,43973,458.2394189832207,0,0.0,41553,430.1590282995242,1234440,0,44376,0,0,0,0,0,97,1.01218799565907,0,0.0,1,0.0104349277902996,0,0.0,0.05238,0.1366232817757375,0.3041237113402061,0.01593,0.3425384052670081,0.6574615947329919,23.420864698537116,4.199208700909581,0.312724658519051,0.2671938653247064,0.2015336688233884,0.218547807332854,11.221493339657345,5.7805305286153725,17.01219822234336,11624.814538997016,47.65103857201843,13.560936408508656,14.817221030684893,9.316416046023258,9.956465086801623,0.5720105439731608,0.8143497757847533,0.675095785440613,0.5850178359096314,0.1162280701754386,0.7389121338912134,0.9237668161434978,0.8567335243553008,0.7634408602150538,0.1401869158878504,0.5050369375419744,0.7414050822122571,0.608786610878661,0.5343511450381679,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025624145439813,0.0048858614118314,0.0074468624765383,0.0097513408093612,0.0118059792556436,0.0139482793728364,0.0160839873611252,0.0185330707134619,0.0207758497353199,0.0228802979759736,0.0250519995491664,0.0271132867419927,0.0290424023184592,0.0311920938851142,0.0332766176849703,0.0355670795326591,0.0376149921872574,0.039750342139095,0.0417129740228715,0.0435262281432139,0.057969502909948,0.0718348144276006,0.085284561366733,0.0983596221141013,0.1107293061104025,0.1266252299105727,0.137744552250676,0.1485075818036711,0.157787935748462,0.1666577319366563,0.1785745056649291,0.1899372430209911,0.2009134406263593,0.2109342545422743,0.2197843309859155,0.2295777612816734,0.2382600926908258,0.2458303771523812,0.2538447559119511,0.2606695952378221,0.2668150776258884,0.272445856735809,0.27796042870877,0.2826859791981936,0.2877060648457935,0.2910977068916602,0.2941581875595208,0.2981092651105901,0.3021099454033795,0.3054366212073158,0.3032205902169519,0.2998663525262128,0.2971259987013354,0.2947703896856439,0.2922202550101915,0.2891968967526295,0.2864636156186612,0.2871724183199593,0.2878186002898303,0.287242183190077,0.2887858505029353,0.2899288094815516,0.2903818068015856,0.2920702785757231,0.2930241471828286,0.2943626047576909,0.2948637911464245,0.2984397961417003,0.3014972144846796,0.3061553588987217,0.3077548806941431,0.3122162390455073,0.3145989974937343,0.3202549897548759,0.3250116877045348,0.3302523995734092,0.3378316906747536,0.3423441597740569,0.3418966930855425,0.331918178309533,0.0,1.9854582224855488,52.07722318394347,158.03582441237333,216.686003891502,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95737,47419,452.1449387384188,5149,52.49798928314027,4051,41.63489559940253,1563,15.96039148918391,77.35098256499538,79.69562438293114,63.33757887846742,65.06947074098356,77.14862059259788,79.49530475373952,63.26170124501108,64.99638255850769,0.2023619723974974,200.31962919162535,0.0758776334563364,73.08818247587112,211.563,148.80496869103143,220983.5277896738,155430.99187464765,500.33369,336.1673748832873,521944.1281845054,350467.7761819228,455.43138,223.47717230541943,470119.2851248733,229402.53414832457,2322.44092,1090.5092366208123,2389915.831914516,1103360.059030718,943.32622,429.0121063441088,966795.6484953573,429621.05948355113,1522.4946,650.9848548104096,1556895.0771384104,653457.9622403472,0.38016,100000,0,961650,10044.705808621537,0,0.0,0,0.0,43507,453.73262166142666,0,0.0,41318,426.0003969207308,1235647,0,44346,0,0,0,0,0,80,0.8356225910567493,0,0.0,1,0.0104452823882093,0,0.0,0.05149,0.1354429713804713,0.3035540881724606,0.01563,0.3379992534527808,0.6620007465472191,23.78647732289756,4.185630838192463,0.3083189335966428,0.2552456183658356,0.2246358923722537,0.2117995556652678,11.280608162146429,6.01894015296797,16.76527662101345,11550.147241766468,46.30279924300927,12.789106593456207,13.913894872341912,10.075411532080444,9.524386245130705,0.5699827203159714,0.8085106382978723,0.6933546837469976,0.5604395604395604,0.113053613053613,0.7193877551020408,0.9090909090909092,0.8592814371257484,0.6865671641791045,0.1044776119402985,0.5088695652173914,0.734006734006734,0.6327868852459017,0.5246826516220028,0.1156773211567732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022480329711502,0.0044597155917738,0.0065548486601118,0.0091614528317217,0.0115301318746123,0.0138143763170485,0.015973333605162,0.0181562107712562,0.020308874784084,0.0223111484100748,0.0245197531623511,0.0266680353110244,0.0285714285714285,0.0305220883534136,0.0325475834321968,0.0344079130965054,0.0363858515573227,0.0384248210023866,0.0402869470291625,0.0423477200987592,0.0568401273552899,0.0715735297194384,0.0851184297442672,0.0984692375625552,0.1110455187535578,0.1271141649048625,0.1374256291692738,0.148156819342755,0.1580870178287203,0.1666916970607166,0.1779235608410893,0.1903457979327885,0.2008831942918674,0.2094972372668089,0.2179708741070151,0.2276102859676346,0.235366384846488,0.2433682078974013,0.2513049793472833,0.257733612992699,0.2639690823044791,0.2699673596406051,0.2758718558200589,0.2809256443715507,0.2854872560080552,0.2891204586557744,0.2936354207020657,0.2972481959548734,0.3009753952032289,0.3039974677868193,0.3018042278174229,0.2978114246386786,0.2954753617878732,0.2927005610503788,0.2904706721340702,0.2878922393999694,0.2848166379132967,0.2856908299811181,0.2862923189865637,0.2859382795239113,0.2867314520650346,0.2880858605750295,0.2884531044420775,0.2891893698068655,0.2908055874473785,0.2934268641205508,0.2946395668565921,0.2988387015995242,0.3039618437543517,0.3072770970410937,0.3113263043576632,0.3176514071492687,0.3203002815139193,0.3254638708704178,0.3289890150809905,0.3307411334982915,0.3359025743795283,0.338869758962933,0.3355463347164591,0.3374374759522893,0.0,2.6383217061422184,50.6876746295007,149.75467687071645,212.15666000527733,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95834,47490,451.9272909405847,5141,52.28833190725629,4094,42.04144666819709,1567,15.902498069578646,77.51248185563044,79.79968292481526,63.42745123530996,65.11150383913704,77.31313303403748,79.6040999637466,63.35213098789433,65.04006590548882,0.199348821592963,195.5829610686521,0.0753202474156324,71.4379336482267,212.43266,149.3163755184125,221667.32057516123,155807.30796837504,502.7933,337.3620143646096,524006.58430202224,351383.83492769743,452.79677,222.19034801354317,468261.6503537367,228622.20498576143,2348.7512,1099.8611820177357,2414914.2058142205,1111733.687436333,980.66059,443.37308990265205,1005627.7521547676,444983.826097889,1536.71644,654.9737827383487,1562148.1311434354,648480.7557807948,0.37963,100000,0,965603,10075.787298870964,0,0.0,0,0.0,43780,456.1429137884258,0,0.0,41164,425.35008452115113,1237751,0,44380,0,0,0,0,0,72,0.7408644113780077,0,0.0,0,0.0,0,0.0,0.05141,0.1354213312962621,0.3048045127407119,0.01567,0.3733457595526561,0.6266542404473439,23.634858623596863,4.181059568406612,0.306790425012213,0.2642892037127504,0.209086468001954,0.2198339032730825,11.208818199353171,5.996984147402206,16.614756241114936,11515.907345376656,46.456758180200254,13.175598942898691,14.187000773246034,9.320239343015755,9.773919121039777,0.5725451880801172,0.7874306839186691,0.7014331210191083,0.5887850467289719,0.1188888888888888,0.7495812395309883,0.922566371681416,0.8760806916426513,0.7295918367346939,0.1557788944723618,0.4996551724137931,0.6904761904761905,0.6347634763476347,0.546969696969697,0.108416547788873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024892234836986,0.0047396724764788,0.0070140585248178,0.0094468853689967,0.0118348605213433,0.0139123360113902,0.0160656472073466,0.0184165442976015,0.020279170453269,0.02264035177421,0.0248220777225948,0.0269308474089571,0.0291609296972935,0.0310399835331652,0.0330824742268041,0.0351281283245711,0.0369921980091471,0.0390540764701003,0.0409789236410474,0.0428794503435352,0.0578058191677964,0.0716317099182367,0.0847706268206299,0.098056926793404,0.1099903129343385,0.1253023501452337,0.1359772770629756,0.1463007464432299,0.1560936049427507,0.1644535349424942,0.1758121229717087,0.1870173354215045,0.1979176844825153,0.2073269272766979,0.216947141790061,0.2265840981975008,0.2350968661920836,0.242454875268165,0.2505577386951745,0.2569877728259627,0.2633982631560738,0.2692298732761833,0.2750834247172993,0.2798438414059049,0.2838145253019046,0.2886400471489612,0.2925622718153838,0.296774928486444,0.3006595728235385,0.3044767113944306,0.302691844114102,0.2991450653170098,0.2962361830138519,0.292971948119102,0.2912065198133821,0.2889098688919005,0.2857863379882104,0.2856512790355778,0.2855395903393458,0.2857903990622835,0.2864437735286443,0.2871709233791748,0.2883470076215068,0.2890988952482364,0.2902343935720059,0.2911131706312429,0.291064093185527,0.2960188223639403,0.3002796671615509,0.305522092255081,0.3068166659255636,0.3109361239185619,0.3139463318562284,0.3174875195589002,0.3204845814977973,0.3233532934131736,0.329771445532799,0.327808112324493,0.3281667557455905,0.3356824925816024,0.0,2.690471349324168,51.28622801664584,150.45719187509292,210.4467556554389,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95748,47603,452.11388227430336,5162,52.87838910473326,4097,42.31942181559928,1552,15.958557881104566,77.31288813594676,79.67189951740352,63.318020272784125,65.06226491745655,77.1238318486048,79.48309678497844,63.24850721890444,64.99437132136383,0.1890562873419696,188.80273242507428,0.0695130538796888,67.89359609271628,210.8524,148.33960582529156,220215.98362367885,154927.1063889497,500.23466,335.736749305133,522005.00271546136,350202.0296038905,461.4195,226.57752180191437,478764.2457283703,234152.2524805246,2319.66764,1077.5030662678062,2397563.061369428,1100506.5224561123,960.70711,433.1176023940094,987804.9149851694,436833.8298564417,1510.07362,623.5686042934078,1553634.0184651376,631321.9162609315,0.38001,100000,0,958420,10009.817437439946,0,0.0,0,0.0,43407,452.87630028825663,0,0.0,41760,432.928102936876,1238768,0,44496,0,0,0,0,0,92,0.9608555792288088,0,0.0,1,0.0104440823829218,0,0.0,0.05162,0.1358385305649851,0.3006586594343278,0.01552,0.3432117058714576,0.6567882941285423,23.8490514989508,4.156256919880266,0.3048572125945814,0.2758115694410544,0.2186966072736148,0.2006346106907493,11.706520752621213,6.376331230616202,16.321782200919703,11616.924060152369,46.5845592458496,13.844278100385514,14.007821948556352,9.822115304236783,8.91034389267094,0.5916524286062973,0.8123893805309734,0.7133706965572458,0.5825892857142857,0.1131386861313868,0.7905579399141631,0.93058568329718,0.9011976047904192,0.7725118483412322,0.1761006289308176,0.512619372442019,0.7309417040358744,0.644808743169399,0.5240875912408759,0.0980392156862745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699082420142,0.0046625244529135,0.0068994206515894,0.0094868565392272,0.0117675776283805,0.0138594704684317,0.0162638931375548,0.0185500913722167,0.0209172511092481,0.0233665434513265,0.0256226225507787,0.0276633978538789,0.0297738422140631,0.0319407535587005,0.0338804692094213,0.0361520494429401,0.0383424624910693,0.0403818219547624,0.0423321687047666,0.0442895542914296,0.0593074361356732,0.0735404896421845,0.0861391018045696,0.0985722996698837,0.1109740540426563,0.1260074034902168,0.1372216150834491,0.1479691757493188,0.157571485030068,0.1664843766754594,0.1777758637396238,0.1896275790475366,0.2000717492689184,0.2098805930980186,0.2179322179322179,0.2273779333104464,0.2359517964740013,0.2448458536256172,0.251998001998002,0.25830431595345,0.2647331142076756,0.2702020202020202,0.2763534448097254,0.2812735832105509,0.2858148881145202,0.2900282023177625,0.2949617785784884,0.2985878973524664,0.3021140609636185,0.3051113573991978,0.3030470317359867,0.3002186258198468,0.2979454466083674,0.2963358955094492,0.2938912009512485,0.2899474466422541,0.2884170495959436,0.2880913272010512,0.2880574064582265,0.2882663998856652,0.2891123972205053,0.2894372602523035,0.2911490358472414,0.2930580944313166,0.294215114184857,0.2953516214668679,0.2955897844717137,0.2991883219027245,0.3015828449092759,0.3053944545960118,0.3099622607193197,0.3148421830465533,0.3186826869202515,0.3218034891624499,0.3298766816143498,0.3340385519511048,0.3408708938120703,0.3494048819850716,0.3556843267108168,0.3636363636363636,0.0,1.8536603144377388,50.86240411909672,149.60241601317043,219.376943202552,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95782,47713,454.1771940448101,5125,52.46288446681005,4059,41.79282119813744,1551,15.75452590257042,77.37208356525132,79.70871511103995,63.35007434272507,65.07873626318938,77.16966664169534,79.51328780365453,63.27388372213595,65.00790864674521,0.2024169235559725,195.42730738541536,0.0761906205891236,70.82761644417701,211.805,149.0209604872459,221132.36307448163,155583.47130697407,504.58015,338.35737075178747,526193.8360025892,352651.02080953366,454.90794,222.63660022448025,471610.6888559437,229775.17319175703,2317.03784,1082.905955808201,2385839.5940782195,1097359.624781483,951.60717,432.1326636709749,978908.8242049654,436557.9583543621,1513.48206,650.1175158613971,1538492.7439393622,643502.262960159,0.3817,100000,0,962750,10051.471048840074,0,0.0,0,0.0,43852,457.1944624250903,0,0.0,41270,427.7212837485122,1235338,0,44358,0,0,0,0,0,85,0.8665511265164645,0,0.0,1,0.0104403750182706,0,0.0,0.05125,0.1342677495415247,0.3026341463414634,0.01551,0.3588498879761015,0.6411501120238984,23.75894472374844,4.096712476372407,0.3062330623306233,0.2697708795269771,0.2153239714215324,0.2086720867208672,11.014502292561128,5.815066155672642,16.75187194540916,11542.5786424976,46.30280403175744,13.294456218695965,13.882528062001684,9.687819607842089,9.438000143217709,0.5782212367578221,0.782648401826484,0.7007240547063556,0.5881006864988558,0.1239669421487603,0.7232375979112271,0.9053117782909932,0.8651315789473685,0.7336683417085427,0.1408450704225352,0.5209621993127148,0.702416918429003,0.6474973375931843,0.5451851851851852,0.1182965299684542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0048355703337253,0.0073471210245377,0.009619975416747,0.0116342926878877,0.0136626486398436,0.0156152850401084,0.0177663938608486,0.020162279267495,0.0223723262716201,0.0240723091585452,0.0262215334722236,0.0283805314282777,0.0305089632306757,0.0326998236622565,0.0346338237725243,0.0368185158732623,0.0391272335085918,0.0410224438902743,0.043103448275862,0.058189407774589,0.0726628035897328,0.0858484730943819,0.0981432639465361,0.1100868136036074,0.1257514130262532,0.1369527665031104,0.1471041691033397,0.1565234091588067,0.1652455223241066,0.1769325100578731,0.1883484651967142,0.1989046930858751,0.208385707571402,0.2167033208709038,0.2263833368398906,0.2347495343156392,0.243019962233612,0.2508103452183965,0.256933554627139,0.2632290883866119,0.2698258735538156,0.2763559021623538,0.2804159984681299,0.2849742818322981,0.2897746156402713,0.2940116613698356,0.2979399392529896,0.3013432970897384,0.3057381909216681,0.3022330905866229,0.2991080005489227,0.2972056028718237,0.2948845670723783,0.2928128431110715,0.2891953039011862,0.2865991435839904,0.2862898602944789,0.2859435282870702,0.2866356655442122,0.2865388926249719,0.2878811756362777,0.2895269494814598,0.2904352857397187,0.2918832179723613,0.2926727835105138,0.2934832100170745,0.2983199874391584,0.3025377516778523,0.305368596088368,0.3097136643711489,0.3119556611243072,0.3157664416104026,0.315861130020422,0.3204864359214219,0.325772711246915,0.3255778818552651,0.3331370239497448,0.341031149301826,0.3447378207512086,0.0,2.2222993116841474,49.942937421218446,152.95801486245588,212.956587417894,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95644,47605,454.1110785830789,5066,51.649868261469614,4001,41.22579565890176,1497,15.23357450545774,77.25911226955019,79.6541647514975,63.27736057920528,65.04526889427285,77.06574982807487,79.46602004201914,63.20379449659743,64.97624338698091,0.1933624414753154,188.1447094783653,0.0735660826078543,69.0255072919399,211.068,148.53101991476973,220680.8581824265,155295.7006344044,499.99976,335.89231937858784,522184.8417046548,350603.3095422482,459.99129,225.40330382342464,477063.37041529,232695.80237823923,2288.73508,1079.6745162886978,2360539.207895948,1096515.447402339,929.80195,425.017082922697,954031.4499602694,426307.2125281337,1459.63154,626.3666278771545,1487551.5244029944,621928.9806733667,0.37984,100000,0,959400,10030.948099201203,0,0.0,0,0.0,43540,454.5920287733679,0,0.0,41769,432.9388147714441,1230719,0,44219,0,0,0,0,0,70,0.7214252854334825,0,0.0,1,0.0104554389193258,0,0.0,0.05066,0.1333719460825611,0.295499407816818,0.01497,0.3568181818181818,0.6431818181818182,23.5447042990872,4.097242897753484,0.3319170207448138,0.2696825793551612,0.1957010747313171,0.2026993251687078,11.459128072109852,6.243545874565207,16.09660788585187,11524.241712657293,46.095112924847214,13.286317580152293,15.077169964689055,8.712054810314172,9.019570569691698,0.5966008497875531,0.8025949953660797,0.7168674698795181,0.5977011494252874,0.1245376078914919,0.758563074352548,0.9303370786516854,0.8787878787878788,0.7319587628865979,0.1692307692307692,0.5274607703281027,0.7129337539432177,0.655958549222798,0.5534804753820034,0.1103896103896103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0043906346647197,0.0064247000791669,0.0085453584782962,0.0108754260135306,0.0131077750392112,0.0153149662499745,0.0173851792112865,0.0194027867226873,0.0217822998341761,0.0238986230866235,0.0260188313088478,0.0282643353047055,0.0300083442357813,0.0321771705142361,0.0341515364572563,0.0363302980389719,0.0383333852333945,0.0405138339920948,0.0428668230388324,0.0569314690576211,0.0717240801449563,0.0854028625132572,0.0986848339984626,0.1105772277018607,0.1267131267343091,0.1375885620810894,0.1482243130067873,0.1582273743195987,0.1675722692324213,0.1790753365550569,0.1905922891879591,0.2007058746636746,0.2090085352091071,0.2179005061811444,0.2265938190580893,0.2360239413771885,0.244299343663306,0.2516317572945805,0.2576023895686139,0.2641111020872249,0.2701076630778974,0.2756112897293834,0.2803875372631983,0.284814060919274,0.2894616534664475,0.2931471444344073,0.296128637372166,0.2991139191240383,0.302645670540637,0.3010564092877669,0.2978385908771155,0.2954458747226972,0.2936533271424011,0.2906423768988804,0.2872293076722378,0.2845684394071491,0.2840311555146576,0.2842085450781103,0.2839971423468476,0.284826126851557,0.2864700540881993,0.2879405919882857,0.2887737401592314,0.2898481406193949,0.2908313908313908,0.2919084142303229,0.296056540638584,0.3005691539509061,0.3035446435620115,0.3093212669683258,0.3112059427848901,0.3172560289891291,0.3201263062927599,0.3234478935698447,0.3268149882903981,0.3286037735849056,0.3298147779326827,0.3222344523940561,0.3290845886442642,0.0,2.3049886362563337,52.3252743465075,145.98849620181628,208.78251529358943,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95623,47497,453.5310542442717,5188,53.19849826924485,4123,42.5943549146126,1585,16.240862553988055,77.28554750318864,79.71821112563572,63.27381344368565,65.07233506813684,77.08367554719388,79.51696022880577,63.198898841486574,64.99966284138326,0.2018719559947612,201.25089682994712,0.0749146021990725,72.67222675358198,210.0021,147.75359159953683,219614.6324629012,154516.79156639808,502.88499,337.3452706929206,525401.796638884,352284.74393495347,458.19448,224.51168351564624,476005.8772471058,232281.8815388737,2365.4672,1103.582939203803,2446118.1514907503,1126473.0234397615,927.75454,421.7729377652191,957528.8476621732,428398.31763131655,1538.64166,650.9672681121689,1578688.3699528358,655934.1341299346,0.37967,100000,0,954555,9982.483293768237,0,0.0,0,0.0,43754,457.0343954906246,0,0.0,41529,431.06783932735846,1237888,0,44444,0,0,0,0,0,73,0.7634146596530124,0,0.0,0,0.0,0,0.0,0.05188,0.1366449811678562,0.3055127216653816,0.01585,0.350735294117647,0.649264705882353,23.707089511978754,4.176245273624703,0.3048750909531894,0.2694639825369876,0.2180451127819548,0.207615813727868,11.261336726347832,6.067817871804028,16.853872372629606,11594.472988982016,46.94281027080064,13.599659651772642,14.169290823918011,9.898910848618783,9.27494894649118,0.5794324520979869,0.7974797479747975,0.7191726332537789,0.5672969966629589,0.1039719626168224,0.7645569620253164,0.9188034188034188,0.8898809523809523,0.7277227722772277,0.1675977653631284,0.5047651463580667,0.7091757387247278,0.6568946796959826,0.5208034433285509,0.087149187592319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219700040535,0.0045238312590654,0.0070157982374202,0.0089851095187274,0.0110385382330199,0.012997993256527,0.0152910813926207,0.017591533180778,0.0197297767231592,0.0218756080825046,0.0239018485463983,0.02614029859948,0.0280694169960474,0.0300475194046158,0.0321528136293237,0.0342049192197099,0.0361550657506139,0.0382797976965656,0.0404055123027603,0.0424424487071168,0.0571368839178382,0.071332012952309,0.085094309882835,0.0976285542714467,0.1107437492737855,0.1263278296141748,0.1374620109238518,0.1482954182035264,0.1582027906180448,0.1679254810533214,0.1801594751777641,0.1912485363632421,0.2014624471470293,0.2106941324713745,0.2193347078734688,0.2288866443943749,0.238408745417151,0.2473630831643002,0.2552234227478782,0.2619074906023654,0.2675232968686693,0.2730794891903597,0.2784012134282904,0.282878947873668,0.2871895297637872,0.2904244427723847,0.2936117474743681,0.2968537122630098,0.3004769681416388,0.3031455008645837,0.3007267833109017,0.2991383693605793,0.2969075649186053,0.2945687177783875,0.2914713039349516,0.2886470101956462,0.285332236165398,0.2868582117716555,0.2870807686405565,0.2867544705000535,0.2888473403758063,0.2900443131462333,0.2900466400351368,0.2912885460099444,0.2920050791825391,0.2916958155201451,0.2934481784806552,0.2989989709046683,0.302863283416528,0.3055238844112443,0.3088182146729309,0.3136624690447336,0.3165697128917245,0.3217141994869473,0.3244651162790697,0.3337612323491656,0.3395798700317364,0.3488884438213498,0.3429113580916237,0.3414451516286035,0.0,2.0241546074134487,51.75489898560941,149.970552138024,219.18129460491932,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95822,47539,451.85865458871655,5252,53.66199828849325,4155,42.91290100394481,1646,16.91678320218739,77.35864855579545,79.66376440953209,63.35358995694328,65.05422242186035,77.15417787645397,79.45936755626533,63.27729491821436,64.98028071354291,0.2044706793414832,204.3968532667577,0.0762950387289151,73.94170831743452,211.65408,148.90357723342285,220882.5530671453,155396.0230776052,501.68976,336.55671476424294,523077.80050510325,350744.6773854052,460.09357,225.3275797125571,477057.00152365846,232826.2839261337,2391.9722,1112.5116710143116,2471850.973680366,1136603.8185534754,947.39006,419.34068192272775,978819.8117342571,427746.5946470824,1597.35484,667.0341160681647,1642195.383106176,674140.9432528997,0.38118,100000,0,962064,10040.116048506608,0,0.0,0,0.0,43555,454.08152616309405,0,0.0,41701,432.1971989730959,1235175,0,44357,0,0,0,0,0,94,0.9601135438625784,0,0.0,0,0.0,0,0.0,0.05252,0.137782674851776,0.3134044173648134,0.01646,0.3542388331814038,0.6457611668185962,23.658488694547184,4.154966144582697,0.3287605294825511,0.247653429602888,0.2149217809867629,0.2086642599277978,11.462983478934603,6.265723685316935,17.40563889574006,11588.450334393498,47.41719903882199,12.466987415924796,15.550613308213505,9.98190164185014,9.41769667283354,0.5677496991576414,0.7891156462585034,0.698389458272328,0.5666293393057111,0.1003460207612456,0.7363872082973206,0.9172749391727494,0.8644986449864499,0.7073170731707317,0.063953488372093,0.5026684456304202,0.7038834951456311,0.6369107321965898,0.5247093023255814,0.1093525179856115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022974313300811,0.0047402485591872,0.0071271429585246,0.0093457943925233,0.0115721455712921,0.013854839530034,0.0159414089557103,0.0181367498699417,0.0204830108493553,0.0226682215266269,0.0246025893149786,0.0265041951299567,0.0287874740583968,0.03082068433239,0.0329941126130306,0.0349724744110143,0.0370952888465796,0.0393642829003296,0.0412684892803722,0.0432569179836342,0.058058256478738,0.0722343617677501,0.0854261875812334,0.0982123151622158,0.1106087433076177,0.126784676354029,0.1379756363906235,0.1486792693694748,0.1585898380363644,0.1677406212139081,0.1797431010906898,0.1911314488473479,0.2021835343243331,0.2119425514925454,0.2202492349016931,0.2294947524741502,0.2378242042765948,0.2446936548822874,0.2522293571736516,0.2586915930673448,0.2654678839633885,0.2706355986752021,0.2757747212423948,0.2797641164555141,0.2851621371967524,0.2891230664941147,0.2925993547257584,0.2962313314267556,0.2990451051936961,0.3034558232137442,0.3012237762237762,0.2987910427256491,0.2966367303340782,0.2944016835308022,0.2923784104389086,0.2884215991692627,0.2858338994296908,0.2871707452998738,0.2880427362097215,0.2880230004107216,0.2886545808674807,0.2890959704645515,0.2895745616791302,0.290881519969672,0.2914218566392479,0.2930926707298015,0.2953833893095007,0.3001352243781251,0.3034054641742363,0.3068988772959892,0.3088929219600726,0.3126028124170867,0.3157795513102495,0.3217935031264298,0.323790812985312,0.3252147311448405,0.3268113726689086,0.3394420688250865,0.3394007280873705,0.3430255402750491,0.0,1.777095401561628,50.73522527594323,159.37794066684913,218.43736460997863,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95869,47192,448.57044508652433,5126,52.33182780669456,4075,42.01566721255046,1558,15.896692361451564,77.41454581429173,79.7046315954022,63.37712166936033,65.06866464357309,77.21941033728167,79.51144340495732,63.30325525754181,64.99776293962127,0.195135477010055,193.18819044488575,0.0738664118185141,70.90170395181872,211.54166,148.84017205469132,220656.54173924835,155253.28990832603,501.49619,336.67324834794715,522590.2742283741,350667.620392926,454.95092,222.7529398230264,471863.9184720817,230242.51697776516,2322.30376,1091.3401007731982,2393622.9229469383,1109785.570022842,958.48559,434.0868921270067,984876.2060728702,438090.6110495429,1513.6559,644.6599543772385,1544505.5231618143,641986.525023156,0.37784,100000,0,961553,10029.84280632947,0,0.0,0,0.0,43598,454.2239931573293,0,0.0,41292,428.0632947042318,1236782,0,44430,0,0,0,0,0,72,0.7510248359740896,0,0.0,2,0.0208618009992802,0,0.0,0.05126,0.1356658903239466,0.3039406944986344,0.01558,0.3433644859813084,0.6566355140186916,23.406715110312547,4.1199575299507725,0.3173006134969325,0.260122699386503,0.2166871165644171,0.2058895705521472,11.30482218938504,6.081829362236834,16.585608659628246,11437.602483273246,46.47854875072878,12.896165090128402,14.557653440648783,9.88043360508539,9.144296614866205,0.5830674846625767,0.8179245283018868,0.6821345707656613,0.5877689694224235,0.1287246722288438,0.7530864197530864,0.922566371681416,0.8610354223433242,0.7122641509433962,0.1684782608695652,0.5108391608391608,0.7401315789473685,0.6112311015118791,0.5484351713859911,0.1175572519083969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.004680613950661,0.0070880274192076,0.0092583192901955,0.0113731070230714,0.0134311500931022,0.015403422982885,0.0173915704435105,0.0197556590667647,0.0218885524916127,0.0240814528767656,0.0261875698796787,0.0284208254985974,0.0304674070795549,0.032703053797142,0.0345689468193883,0.0367492628420671,0.0387481216643349,0.0407241697895796,0.0429066247828664,0.0573355993702363,0.071324812674393,0.0844891887361716,0.0973350973350973,0.1090541479749794,0.1238724941380257,0.1342959447434213,0.1450392227725929,0.1545823108929905,0.1634056224899598,0.1750328119284807,0.1861282300789274,0.1967663772777156,0.2064138986013986,0.2151751272103834,0.2246356765848207,0.2329802653584569,0.2410333048676345,0.2493905273780771,0.2564419565690213,0.2626144667468319,0.2684714380895606,0.2730346776386573,0.2775808383233533,0.282655688331876,0.2872770276929142,0.2902677007755816,0.2937937874299083,0.2972696422557832,0.3011043527595625,0.2990891845712979,0.2963853765805387,0.2937354074657515,0.291607766206041,0.2906344052543403,0.2874988546470786,0.2860250993252191,0.28537095772161,0.2852961198093941,0.2852424080980287,0.2849534450651769,0.2857255117677105,0.28548846689823,0.2869912387712099,0.2878042959427208,0.2899666675279708,0.2908772623316486,0.2939714108141703,0.2980344407723082,0.3008110874872037,0.3053569019025772,0.3129226736566186,0.3166058958037204,0.3224605302353291,0.326660516605166,0.3251748251748251,0.3259002561398222,0.3352056168505516,0.3426648721399731,0.3552484124019425,0.0,1.8566082249221731,53.26046570629095,145.71359372076253,212.6256169030641,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95717,47596,452.11404452709553,5199,53.27162364052363,4140,42.75102646342865,1605,16.43386232330725,77.36002699221102,79.73349791279968,63.33690834044432,65.0891718006735,77.15584402296152,79.52815355033657,63.26158009546863,65.01488937385648,0.2041829692495014,205.3443624631086,0.0753282449756937,74.28242681702102,211.77156,148.99291866793433,221247.5944712016,155659.82915044803,502.31259,335.9638786027224,524295.9766812583,350504.6220554297,460.21029,225.6811924956707,477415.2031509554,233068.30623681087,2383.28172,1115.4566533095262,2464371.553642509,1140019.865260503,937.98323,426.0379700480976,968244.564706374,433600.4885243223,1560.18084,657.6151846571237,1600749.2086045323,664746.9084166175,0.38083,100000,0,962598,10056.70883960007,0,0.0,0,0.0,43656,455.5721554164882,0,0.0,41680,432.05491187563337,1236303,0,44385,0,0,0,0,0,78,0.8149022639656488,0,0.0,1,0.0104474649226365,0,0.0,0.05199,0.1365176062810177,0.3087132140796307,0.01605,0.3471166326719822,0.6528833673280178,23.64682869561072,4.130868737736345,0.3171497584541062,0.2710144927536232,0.2057971014492753,0.2060386473429951,11.446232462156887,6.186829932161211,17.067847546189988,11610.66685494276,47.34632697058473,13.671671357127677,14.912248732013468,9.46933574551013,9.293071135933458,0.578743961352657,0.7923351158645277,0.7052551408987052,0.57981220657277,0.1019929660023446,0.7578512396694215,0.9240246406570842,0.8587257617728532,0.7103825136612022,0.1508379888268156,0.504778156996587,0.6913385826771653,0.6470588235294118,0.5440956651718983,0.0890207715133531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903333299571,0.0046629970906952,0.0070121672772292,0.0094475710599565,0.0115749216811098,0.0139607347969532,0.0162487257900101,0.0185653922309089,0.0208535650396115,0.0227175003583201,0.0249441243412823,0.0271241427456777,0.0292048866768129,0.0314762743462184,0.0337075173851138,0.035926967453786,0.0382671031367836,0.0402702674651527,0.0422478080439327,0.0442823651992706,0.0585415774689069,0.072682176383787,0.0856462542219984,0.0987716641426888,0.1106917708574922,0.1263623006099301,0.1372840187104233,0.1474284619723106,0.1572562128218546,0.1667453234940792,0.1789703870474302,0.1900176363026519,0.2002651799202286,0.2097019248636418,0.2191630198139555,0.2288976500033223,0.2384601655400129,0.2465259039395574,0.254497432467665,0.2609317765567766,0.2669896177769556,0.2720941374434719,0.2769758231364899,0.2815391059780983,0.2860697423199699,0.2905163394670441,0.2939315897384608,0.2979142320004065,0.3008443346823724,0.3045982313481029,0.3016532816766886,0.2993288959788767,0.2968743397236347,0.2941711940816091,0.2924877121601354,0.290002905687501,0.2867089806744979,0.2866721177432543,0.2868235534516228,0.2866263560377023,0.2875221651889874,0.2881105664166322,0.2889064745205023,0.290284570920409,0.2933597858303853,0.295169946332737,0.2951061655501306,0.2990046783258501,0.3022301704186829,0.3059324394222735,0.3092486869148207,0.3120148856990962,0.3155848228284729,0.31898446381205,0.3202236719478099,0.3213992252611808,0.3175706300045324,0.3220271348762968,0.3186872796311364,0.3242937853107344,0.0,1.8976164591772688,52.99167226603393,150.86310599349005,218.77901003908468,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95761,47681,454.0574973110139,5176,52.99652259270476,4073,42.031724814903775,1581,16.18613005294431,77.33346816806463,79.69710341120893,63.32120940122799,65.07093026096894,77.13682893853587,79.50062172511737,63.248090590769245,64.99948498124081,0.1966392295287562,196.48168609155903,0.0731188104587445,71.44527972812398,213.6981,150.3364545849477,223157.52759474108,156991.08675238112,502.00637,336.75766233400446,523692.5157423168,351129.27462948515,455.68511,222.9468263212007,472911.6550579045,230434.58879464056,2364.80336,1102.5431300008534,2440883.9088981943,1122926.1182638807,992.94349,452.31213646075,1022247.7104457972,458021.222230562,1553.73956,657.8000480403153,1592927.8098599638,662848.9854488976,0.38044,100000,0,971355,10143.52398157914,0,0.0,0,0.0,43681,455.59256899990606,0,0.0,41242,427.7315399797412,1225295,0,43922,0,0,0,0,0,87,0.898069151324652,0,0.0,1,0.0104426645502866,0,0.0,0.05176,0.1360529912732625,0.3054482225656877,0.01581,0.3567208271787297,0.6432791728212703,23.729972419296555,4.118126406661944,0.3145101890498404,0.2641787380309354,0.1964154186103609,0.2248956543088632,10.939905566481508,5.729723207834067,16.971228214733575,11526.102203184511,46.43662176478912,13.023819254780909,14.376857065658642,8.80729439613052,10.228651048219051,0.5683771176037319,0.7983271375464684,0.6846213895394223,0.57875,0.1266375545851528,0.7358326068003488,0.938095238095238,0.85,0.6931818181818182,0.1848341232227488,0.5027341079972659,0.7088414634146342,0.6248671625929861,0.5464743589743589,0.1092198581560283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021480318151882,0.004259116537541,0.0063739520532651,0.0089008108272876,0.0112385834299546,0.0133999938905802,0.0157097418749745,0.0179522769488273,0.0200114467928539,0.0221921958809319,0.0245432736667281,0.0266210833230668,0.0287324407149174,0.0307929969104016,0.0326847285558054,0.0345636647407208,0.0367168166333599,0.0387760184282067,0.0410229753612641,0.0430240793201133,0.0578067263731446,0.071477907779894,0.0850164199305431,0.0975381476690748,0.1102792306394466,0.1255630035313273,0.1359523026490277,0.145685003671658,0.1551589717300524,0.1644236646542202,0.1770091666038325,0.1886447480878041,0.1996215499053874,0.2085064963471718,0.217703086161765,0.227591780700589,0.236037323094781,0.2436856612476796,0.2515032561094597,0.2583897994689131,0.2646164518180242,0.2705262050340788,0.2752471500875076,0.2795570188566297,0.2844738724973017,0.2881528944423264,0.2925820916028627,0.2954271273826304,0.2997388628900897,0.3033767124190762,0.3004441453566622,0.2975943506395372,0.2954145984785635,0.2930011691179654,0.2910890795215055,0.2881882770870337,0.2847310126582278,0.2846528563696304,0.285667969216593,0.2868935760514914,0.2871350057950424,0.2883850124108585,0.2905875974811293,0.2914876088263454,0.2925993385419163,0.2943533697632058,0.2953676158096047,0.2997027069316226,0.3030886005106859,0.3080230356579362,0.3113997375209304,0.3159812047938334,0.3200175317763446,0.3237813660829353,0.3265936534681269,0.3307208170051063,0.3391198416324044,0.3382711038961039,0.3406440866185452,0.3425181783390739,0.0,1.7484429631608536,50.38205274231919,154.23451141071837,213.37925178336152,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95800,47231,450.33402922755744,5003,51.05427974947808,3919,40.35490605427975,1514,15.407098121085596,77.34149214859087,79.68161132562638,63.33904717832892,65.07305267815978,77.14257760787794,79.48535126393703,63.26485135646844,65.00183778825772,0.1989145407129342,196.260061689344,0.0741958218604779,71.21488990206615,213.02644,149.79207222737335,222365.8037578288,156359.15681354215,502.89239,337.6076123011117,524358.8830897703,351840.6613853416,453.27946,222.50933283887335,469853.3089770355,229599.76942973395,2228.00556,1049.3556346272226,2294585.1356993737,1064903.0935355397,896.69077,405.325100010254,920335.5427974948,407958.4184615953,1473.98086,631.2776166560553,1501882.254697286,629191.6702760801,0.37728,100000,0,968302,10107.536534446765,0,0.0,0,0.0,43720,455.7724425887265,0,0.0,41081,425.53235908141966,1231619,0,44161,0,0,0,0,0,86,0.8977035490605428,0,0.0,0,0.0,0,0.0,0.05003,0.1326070822731128,0.3026184289426344,0.01514,0.3461243284727552,0.6538756715272448,23.670988209111098,4.119236605049802,0.3026282214850727,0.2658841541209492,0.2235264097984179,0.20796121459556,11.210689892809793,6.052377195216084,16.354460986865792,11450.538021436018,44.826316722906,12.60961483553964,13.452942409122436,9.843821917879978,8.919937560363946,0.5820362337330952,0.7936660268714012,0.7116357504215851,0.5810502283105022,0.1239263803680981,0.7550847457627119,0.9221698113207548,0.8888888888888888,0.7316017316017316,0.1475409836065573,0.5074844833880978,0.7055016181229773,0.6398104265402843,0.5271317829457365,0.1170886075949367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210622283902,0.0045720426183307,0.0070729108529098,0.0093382920782018,0.0115175255634125,0.0135681616770736,0.0156455577427152,0.0178294257005146,0.0197153141361256,0.021831288783305,0.0239623492740546,0.0263295714769821,0.0284712150667036,0.0304207186418328,0.0324095092657559,0.0345126980681571,0.0367175770126844,0.0383514180792132,0.0401400694112512,0.0418800749531542,0.056278953299111,0.0705846681443687,0.0832957843887206,0.0964304853573192,0.1089016049655928,0.1240632893999767,0.1356471224279944,0.1459547407375898,0.1555619590390505,0.1642355715127806,0.1759140664521198,0.1863338594253345,0.1962978251895626,0.2057804731464787,0.2143155534057429,0.2252390861595678,0.2332226357902244,0.242316068341528,0.2499348980446769,0.2561031361433665,0.2629112857620976,0.2684700033841737,0.2733415233415233,0.2775451609044144,0.28231927637801,0.2870304312529213,0.2906227362425999,0.2951300308418688,0.2981728968945703,0.3026130640049447,0.30053595175091,0.2979687071095251,0.2951797063951853,0.2925513501038541,0.2901698939090437,0.2883842474441065,0.2859423909950359,0.2851097332939671,0.2857337907258546,0.2849292583275348,0.2862573975578695,0.2861009047449725,0.287652589040809,0.2884950610110401,0.2902737024387897,0.2911356113326556,0.2929313156163286,0.2970828987705824,0.3010783000916203,0.3055091819699499,0.3073331502334523,0.3091344873501997,0.3116423196104471,0.3140293012196057,0.3177826045896685,0.3212884821110187,0.3264296754250386,0.3310118803768947,0.3400111296605453,0.3442748091603053,0.0,2.149470075807499,51.28023398076933,140.0507628409749,204.41795788198044,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95709,47657,453.29070411351074,5148,52.450657722889176,4051,41.81424944362599,1595,16.278510902840903,77.3419109081298,79.71097494976905,63.33255108723839,65.0810503461092,77.13373130395799,79.5059172746202,63.25223541539554,65.00468652056587,0.2081796041718178,205.05767514885065,0.0803156718428468,76.36382554332499,210.99232,148.52423011154775,220451.9115234722,155183.13858837492,500.67213,335.3426463234969,522628.007815357,349886.17196240363,451.98443,221.57900810047065,469773.3337512669,229572.3466844575,2327.72228,1103.6347343021405,2403704.729962699,1124736.6645792357,962.27648,438.62785872337537,992306.6587259296,445180.8698485773,1552.02892,672.662654210452,1585764.3063870692,671792.7897598422,0.37909,100000,0,959056,10020.541432885098,0,0.0,0,0.0,43618,455.2027500026121,0,0.0,40847,424.21297892570186,1241138,0,44477,0,0,0,0,0,77,0.8045220407694156,0,0.0,0,0.0,0,0.0,0.05148,0.135798886807882,0.3098290598290598,0.01595,0.3527885862516213,0.6472114137483788,23.855734793530903,4.205782854952384,0.3090594914835843,0.2621574919772895,0.2179708713897803,0.2108121451493458,11.289551239942336,6.015203456901026,17.141781341612848,11535.07248604362,46.49863998001543,12.859736836604124,14.286672557025504,9.897786188452786,9.45444439793302,0.5699827203159714,0.7702448210922788,0.7036741214057508,0.5866364665911665,0.1077283372365339,0.7165217391304348,0.8792270531400966,0.851063829787234,0.7169811320754716,0.1435897435897435,0.5118924508790073,0.7006172839506173,0.6511375947995667,0.5454545454545454,0.0971168437025796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0046417350765176,0.0067660783120308,0.0091919232956853,0.0115609875137267,0.0137655779099128,0.0160351488832482,0.0182391606107618,0.0204824202780049,0.0226288802235254,0.0251768323936442,0.0272926100483627,0.0294208383036485,0.0314641006356696,0.0335166706223492,0.0354473561792526,0.0375115216918504,0.0394781904791556,0.0417797464932256,0.0436762682896327,0.0584456954264885,0.0728357584005024,0.0864373701550794,0.0985925863592376,0.1112095702259636,0.1262922870173433,0.1371729304161449,0.1466614138015481,0.1565832496313551,0.1658708784429017,0.1779293108834523,0.1893679436247713,0.1994429393652555,0.2086997418733867,0.2175983983455437,0.2265575694498267,0.235586736116533,0.2432739333295857,0.2504027043582821,0.2562291835963878,0.2615893656651665,0.2680420816121142,0.2748996910840464,0.2801078490113841,0.2845150160365439,0.2885167877091528,0.2935709723074611,0.2969902813819773,0.2997488933184913,0.3033380756665613,0.3009683927370544,0.2976944097331886,0.2953453748700806,0.2932497658670124,0.2911561198939149,0.2880414039480313,0.2843324444163918,0.284530612913262,0.2860406827055874,0.2868069174540916,0.2875362318840579,0.2891128952715365,0.2894450261780105,0.288676841940602,0.2888462000240125,0.2902848528953113,0.2927487639938625,0.2969871774775057,0.2997791875503838,0.3040390414219965,0.3087327523602033,0.3107120152574698,0.3136406396989652,0.3175835045271247,0.3197668953849046,0.3227030231179609,0.3275335775335775,0.324989824989825,0.3304685334072637,0.3324447829398324,0.0,1.972291746368756,50.10946866008511,157.4666365582663,209.85481884718865,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95702,47478,451.4952665566028,5168,52.65302710497168,4113,42.32931391193497,1555,15.851288374328645,77.33810060160408,79.72147532881507,63.31256206328344,65.07525466529644,77.14307139610861,79.53005252910901,63.23884469258947,65.00540148157948,0.1950292054954729,191.4227997060607,0.07371737069397,69.85318371695826,211.31176,148.6652663058027,220801.8223234624,155341.8594238393,501.5123,335.60023590276705,523400.33646109793,350037.12719122734,454.90791,222.75069469587623,471281.415226432,229678.45288023763,2352.60288,1100.3248635069774,2423594.198658335,1115076.5829162786,944.85454,427.9466722519061,967419.0717017408,427402.63159912935,1513.84002,638.2919742266347,1544836.9313076008,636124.6520142133,0.38153,100000,0,960508,10036.446469248292,0,0.0,0,0.0,43613,455.0375122776953,0,0.0,41312,427.5668220099893,1237527,0,44399,0,0,0,0,0,91,0.9508683204112768,0,0.0,0,0.0,0,0.0,0.05168,0.1354546169370691,0.3008900928792569,0.01555,0.3525060107268356,0.6474939892731644,23.750255060662564,4.2094317097329,0.3095064429856552,0.2701191344517384,0.2171164600048626,0.2032579625577437,11.822282294484296,6.358579736983673,16.460282520637303,11598.87744917689,46.84553316665154,13.579463786663563,14.454984096254693,9.753276923930445,9.057808359802843,0.5866763919280331,0.8010801080108011,0.7101335428122545,0.5677491601343785,0.1339712918660287,0.775103734439834,0.9361702127659576,0.8622589531680441,0.7352941176470589,0.1845238095238095,0.5085969738651994,0.7020280811232449,0.6494505494505495,0.5181422351233672,0.1212574850299401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024224118708317,0.0046053966321769,0.0069242796515523,0.0092485314145171,0.0116604430154353,0.0139133623279927,0.0162168777920567,0.0183950075071241,0.0204632612363859,0.0228638713971228,0.024836185768927,0.026831096552928,0.028923070595735,0.0311100126664401,0.0334337411541397,0.0354456018518518,0.0375018119318299,0.0396733999398259,0.0418039859856321,0.0436476519854993,0.058294606025795,0.0712558490092014,0.0838990609097109,0.0969930268513551,0.1088799831259228,0.1251652896933281,0.1363626716471761,0.1465128909619501,0.15625,0.1663823532567296,0.1786641669629677,0.189810654859209,0.2006770510182978,0.2091590523608907,0.2179348902731614,0.2272822990900728,0.2368306438103746,0.2453458793868041,0.2527906791882899,0.2606253725184539,0.2671884769469467,0.2731444089382074,0.2782316307925457,0.2830077890952666,0.2870783172779066,0.2914677620298758,0.2945228641925828,0.2990549456147948,0.3028011240756809,0.3055291758995462,0.3032084482410708,0.3002969970300297,0.2981298284620688,0.2945233148661126,0.2920881663650657,0.2891440979921398,0.2857458668224668,0.2857423377133413,0.2866364627333424,0.2889343533179149,0.2893984948365048,0.2894716119379478,0.2902404408081482,0.2911922639869878,0.2918510368580927,0.294226995765775,0.2950375430474792,0.2982888133902689,0.3017963239637261,0.3062593144560357,0.3112256329822989,0.3163830009397514,0.3170807069583488,0.3213246811367196,0.3246107067170368,0.3254727994396451,0.3258006584854834,0.3281899109792285,0.3302997858672377,0.3273542600896861,0.0,2.4715008413775097,52.07675373358827,147.4745450378447,217.73075653975823,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95655,47485,453.83931838377504,5080,52.00982698238461,4025,41.54513616643145,1523,15.587266739846322,77.27782633283482,79.68739150506698,63.2892740309558,65.07179465787756,77.08713976852944,79.49935849729725,63.2171157216575,65.00286017121785,0.1906865643053805,188.0330077697323,0.0721583092982953,68.93448665971391,211.09308,148.51986853295134,220681.6998588678,155266.18423809667,505.22214,338.8305386139004,527664.1471956511,353714.4306245364,451.5373,220.55851657316487,468419.4448800376,227861.035882336,2308.96996,1073.7783282951864,2386486.7283466626,1095188.1744761765,947.97704,424.85015491547233,978000.79452198,431111.57275152527,1492.4292,630.8880931544658,1530092.8963462445,633806.8644834731,0.3801,100000,0,959514,10030.986357221263,0,0.0,0,0.0,43954,458.9723485442476,0,0.0,40975,424.78699492969525,1235801,0,44310,0,0,0,0,0,71,0.7317965605561654,0,0.0,0,0.0,0,0.0,0.0508,0.1336490397263877,0.2998031496062992,0.01523,0.3477687817736772,0.6522312182263227,23.993706089866453,4.146369520527204,0.3162732919254658,0.2703105590062112,0.1980124223602484,0.2154037267080745,11.085011041346233,5.816989967686698,16.190029121804706,11538.038817236582,45.66270439546468,13.005925265273667,14.40959677351903,8.91081234180964,9.33637001486234,0.582111801242236,0.7922794117647058,0.6842105263157895,0.6198243412797992,0.1337946943483275,0.7605877268798618,0.9263657957244656,0.848314606741573,0.8041237113402062,0.1720430107526881,0.5101115760111576,0.7076461769115442,0.6205016357688113,0.560530679933665,0.1233480176211453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0045331007626156,0.006791464479321,0.0088315700681931,0.0110382013327229,0.0131824247919234,0.0152881183069862,0.0172408510116743,0.019342893966981,0.0216346892574343,0.023876923076923,0.0257922037902521,0.0276382943694435,0.0296621524127553,0.0316645846023601,0.0337591146506697,0.0359056195144192,0.0377750319291432,0.0398339212686916,0.0417161922635804,0.0564913893997659,0.0706924720371999,0.0842640020152825,0.0970881959864038,0.109088606793504,0.1243979633961744,0.1361637958498821,0.1464051312649164,0.1561243261743818,0.1653675191651098,0.1771716758084852,0.1886937502706916,0.1995472010275053,0.208314183791828,0.2173678532901833,0.2273855427026548,0.2363100487870228,0.2434235693872499,0.250788607738568,0.2578308289177033,0.2645725912737867,0.2704540674440887,0.2758800089863195,0.2808251176942704,0.2849058207740791,0.2894318363925494,0.2927946532497277,0.2973423406231314,0.3012656915961705,0.3044298453907445,0.3023265212647007,0.2998470589856291,0.2967392530745797,0.2942392781746146,0.2918475997858545,0.2900566876053317,0.2880273768595827,0.288364221871714,0.2889629249957287,0.2900099935755585,0.2910719964085969,0.2916502171338334,0.2914585466780915,0.2925938300478895,0.29415852022235,0.2960398350579631,0.2978759654702408,0.3020070986587932,0.3069746153575327,0.312594478478797,0.3167441436514447,0.3197606692788309,0.321161929857582,0.3206484511758886,0.3244815614150323,0.3309967922062493,0.3360392096798897,0.3355102040816327,0.3433250069386622,0.3466819221967963,0.0,2.1212735883580103,50.42139031885415,140.9506606638627,219.07800889068665,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95824,47642,454.1137919519118,5142,52.46076139589247,4066,41.91016864251127,1512,15.52846885957589,77.39792083527668,79.70333189350737,63.37134666233783,65.07243991859767,77.20546860652432,79.50988853217255,63.29974641915972,65.00218677929367,0.1924522287523586,193.4433613348148,0.0716002431781106,70.25313930400046,212.01312,149.14223122355594,221252.62982133916,155641.83422060855,505.54942,338.66756657444625,527060.3710970111,352905.8237753029,459.8996,225.24525923895985,476211.1579562532,232211.9204767704,2312.07372,1084.3487401684015,2386619.76122892,1105603.019093085,966.10799,436.7674496089152,995411.671397562,443094.9633310891,1481.75944,624.3146214578117,1523891.613791952,632879.0121720474,0.38111,100000,0,963696,10056.937719151778,0,0.0,0,0.0,44042,459.070796460177,0,0.0,41649,430.8628318584071,1234420,0,44246,0,0,0,0,0,83,0.8661713140758056,0,0.0,2,0.0208715979295374,0,0.0,0.05142,0.1349216761564902,0.294049008168028,0.01512,0.3428199404761904,0.6571800595238095,23.610895845117263,4.173114479990218,0.3027545499262174,0.2737333989178553,0.2105263157894736,0.2129857353664535,10.929135430544944,5.506926048235657,16.09269420287224,11480.85527431251,46.38258487498413,13.582182868885251,13.992401690406496,9.325083191330425,9.482917124361965,0.5777176586325627,0.8041329739442947,0.6945572705117791,0.5841121495327103,0.1143187066974595,0.7584459459459459,0.9367088607594936,0.8419540229885057,0.7526881720430108,0.1193181818181818,0.5034698126301179,0.7057902973395931,0.636466591166478,0.5373134328358209,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024601117680408,0.0043976532338963,0.006481058877225,0.0086309312267091,0.0103793916720884,0.0124361401152022,0.0147643210857736,0.0170568732466207,0.0190653288922492,0.0216797454497089,0.0238819732595666,0.0260890083509448,0.0282737789467195,0.030409055827116,0.0325396825396825,0.0345059006948674,0.0362710917536545,0.0384734976472295,0.0405183692965878,0.0423271062080449,0.0570582160701805,0.0707106625529467,0.0838593327321911,0.0968566021867115,0.1095019762845849,0.1251638547084443,0.135854178374882,0.1457186951200042,0.1556210742212536,0.1647075226838842,0.1766606358232101,0.1879745603218898,0.1985346073987107,0.2075981196020553,0.2166010599696523,0.2260560573857598,0.2343575792712839,0.2426143261837312,0.2497648005622116,0.2564653939858396,0.2626762190894384,0.2683482221054475,0.2745728263181528,0.2795522762876242,0.2839856099422217,0.2885846656753468,0.2921750630037178,0.2963550121753247,0.3000749121719363,0.3034662318535662,0.3008808033140727,0.2983667653184259,0.2960323250462989,0.2935675543470442,0.2912456168903224,0.288823896784414,0.2860449370975106,0.285068021100423,0.2868725671839676,0.2865192505954708,0.286829941101916,0.2881799060368383,0.2896327483429905,0.28982438937422,0.2903295438192546,0.2906167194887515,0.2922397835682757,0.2969571100412222,0.3001576458223857,0.3009217136753827,0.3063928603952281,0.3095124155899399,0.312563004032258,0.3185072353389185,0.3189744556508624,0.3214327934744059,0.3284014643075045,0.3347389558232931,0.3329723876556578,0.3383571966842502,0.0,2.0768897438738625,51.43569111999165,149.51704970063938,212.9816362586394,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95549,47280,451.4856251766109,5063,51.64889219144104,3986,41.08886539890527,1501,15.35337889459858,77.19945181010942,79.67040021998176,63.224607941291474,65.05358751965099,77.00848519471751,79.48156176394986,63.15246312591506,64.98443394292582,0.1909666153919147,188.83845603190247,0.0721448153764114,69.15357672517075,210.67684,148.24414107159376,220490.88949125577,155149.8614026246,499.46738,334.7706830629149,522086.1442819914,349717.3105557513,452.80149,222.2591043452856,469181.1426597871,229033.9195257584,2263.23676,1069.7330772631094,2337261.0493045454,1088159.8732201364,896.3158,405.18267785796513,926376.2258108404,412364.4390396187,1452.71652,621.2813257379512,1488259.2387152142,622862.3442451684,0.37971,100000,0,957622,10022.313158693443,0,0.0,0,0.0,43523,454.84515798176847,0,0.0,41063,425.1535861181174,1234533,0,44304,0,0,0,0,0,79,0.8163350741504358,0,0.0,1,0.0104658342839799,0,0.0,0.05063,0.1333386005109162,0.2964645467114359,0.01501,0.3684609552691433,0.6315390447308568,23.382031346053456,4.159254294149452,0.3278976417461114,0.2611640742599097,0.2180130456598093,0.1929252383341695,11.54164762962062,6.306011728422952,16.03033735012039,11544.330753598217,45.77174992720046,12.783503581356571,14.97638744994663,9.61538598981581,8.396472906081454,0.5910687405920723,0.7982708933717579,0.712318286151492,0.5857307249712314,0.1105331599479843,0.7582508250825083,0.9217391304347826,0.8571428571428571,0.7361111111111112,0.109090909090909,0.5180245133381399,0.7005163511187608,0.6549145299145299,0.5359877488514548,0.1109271523178807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0044439033298837,0.0065297749614103,0.0086627623230844,0.0109541067719998,0.0130685640889722,0.0154105220186763,0.0174637236868996,0.0194637740483012,0.0217669785507127,0.023794614902943,0.0261585760850565,0.0284649131840744,0.0305643522482283,0.0326967592592592,0.0344898973169923,0.0363287529167747,0.0386190268337802,0.0406016290648501,0.0425714047102054,0.0575726195332684,0.0717745994463551,0.084940664515383,0.0972931966409929,0.1096208926514262,0.1259713137780793,0.1367755935665049,0.1470647870489931,0.1569835334954628,0.1657203079967307,0.1779215309351275,0.1886632733902738,0.1991555933756627,0.2082844261126164,0.2178798079576182,0.2275741787844788,0.2355113413828989,0.2437736274897026,0.251408218305131,0.2582038294108864,0.2645697783654013,0.2702157598499062,0.2759847703092196,0.2813160422670509,0.2856986341392155,0.2903508663595608,0.2943250840821244,0.2973786209710322,0.3017984117921835,0.304477138438355,0.3018992634958318,0.2991129232210254,0.2961386696730552,0.2939255105432787,0.2921450240913687,0.2894974789658396,0.2859224069675376,0.2866390641430074,0.2881190659481653,0.2887025548424007,0.2890114839000225,0.2895236588067732,0.2902385752688172,0.2913486289871292,0.2920209050841743,0.2932578110725379,0.2951114408835364,0.298636849048307,0.3028176427243061,0.3052889362878698,0.3087227133321306,0.3122998582602761,0.3170974155069582,0.3198313507001957,0.322162562488428,0.3221531605488448,0.3241700465675229,0.332279106542795,0.3318977119784657,0.3369852663392519,0.0,2.4008267949940727,52.63112856730254,141.71983902345576,208.35200288404917,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95675,47773,454.48654298406063,5224,53.31591324797492,4145,42.686177162268095,1613,16.420172458845048,77.33990302576841,79.7301306398387,63.32261558699434,65.08850831379289,77.13223581663837,79.52716287146868,63.24476950344104,65.01529456128652,0.2076672091300366,202.96776837002997,0.0778460835533039,73.21375250636208,210.29404,147.97959168096122,219799.94773974392,154668.5741112739,501.68931,336.7865597850148,523683.6791220277,351326.9218552546,460.51242,226.0168191185823,477346.6422785472,233100.5148055995,2354.22256,1099.579571751428,2427212.751502482,1115878.559447534,943.06034,424.2207641000121,971220.4651162792,428972.0512487384,1554.96708,657.4004557063256,1585325.5082309905,653402.2485493053,0.38274,100000,0,955882,9990.906715442909,0,0.0,0,0.0,43682,455.8557616932323,0,0.0,41751,432.3909067154429,1240413,0,44510,0,0,0,0,0,75,0.7839038411288215,0,0.0,0,0.0,0,0.0,0.05224,0.1364895229137273,0.3087672281776416,0.01613,0.3428991905813098,0.6571008094186902,23.71090911616888,4.150211987405489,0.3153196622436671,0.2636911942098914,0.2270205066344994,0.1939686369119421,11.511922578032246,6.195119164414264,17.121584536751296,11633.96011239357,47.0908768831788,13.358553621966015,14.652873760999068,10.4674031213528,8.612046378860908,0.5785283474065138,0.8124428179322964,0.6801836266258607,0.5674814027630181,0.1082089552238805,0.7558528428093646,0.933774834437086,0.8488372093023255,0.7124463519313304,0.1385542168674698,0.5066124109867752,0.7265625,0.6199376947040498,0.519774011299435,0.1003134796238244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0047539404997212,0.0071130683605442,0.0094665420712631,0.0118971355358286,0.0141696695779637,0.0163697150079504,0.0186372172777006,0.0207822211318285,0.0227537922987164,0.0248603208775437,0.0269662690673181,0.0294510828208872,0.0313964627476025,0.0335958384509789,0.0358372537868996,0.0379192092912423,0.0399730122482873,0.0418608521970705,0.0440112582091108,0.0584044542406167,0.0727080476135638,0.0861213399217364,0.0994845360824742,0.1114287522680281,0.1261438530790144,0.1366659947591211,0.1480878330193398,0.1582629313567377,0.1684054769844418,0.1801410801787733,0.1916617974853383,0.202633782446525,0.2116345428505832,0.2196909667194928,0.2285916803260532,0.2374104732367969,0.2456436389816971,0.2530827084727689,0.2597487373881973,0.2660852870080151,0.2721767594108019,0.2784585541256624,0.282999437186411,0.287083778273954,0.291215758694983,0.2949147457372869,0.2983822800574399,0.3023659142679644,0.3054482149215937,0.3024107251019611,0.2994032559674403,0.2970941037337388,0.2953225666657036,0.2937839684001069,0.2904408955451975,0.2881374670309711,0.2870714648408707,0.2874917025513591,0.2877362684258255,0.2887421172431807,0.2904673780367759,0.2910247055144376,0.2909009812667261,0.2908737491300904,0.2933867110325465,0.2946111190103796,0.2972582519393235,0.3003295701563705,0.3034049612893032,0.308716323296355,0.3134288887713545,0.3168484392628808,0.3196149765044717,0.3219817130061578,0.3256416293854485,0.3284470911589555,0.3309630231613165,0.3325936199722607,0.329733898958735,0.0,2.379255655849652,51.77925531923093,145.69422324719602,225.5183150196347,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95793,47162,449.6153163592329,5062,51.57996930882214,4038,41.66275197561408,1571,16.024135375236185,77.331780499572,79.67140178330921,63.32970022966426,65.06233931092459,77.12509577129059,79.46786678414543,63.25127836420621,64.98720703111144,0.2066847282814166,203.5349991637787,0.0784218654580541,75.13227981314685,210.76374,148.4016752524639,220019.9805831324,154919.12274640516,502.48599,336.6844432684327,524035.7646174564,350952.60955229786,456.3071,223.15260710501656,473370.02703746624,230658.0902082024,2299.75452,1086.8061103612615,2374611.2137630098,1108393.0040412776,913.4179,419.4161339368113,942583.7796081132,426900.4997887418,1525.95604,657.8874133678926,1559140.793168603,658168.5219238565,0.37803,100000,0,958017,10000.9082083242,0,0.0,0,0.0,43705,455.722234401261,0,0.0,41239,427.5468979988099,1240156,0,44490,0,0,0,0,0,92,0.9604042049001492,0,0.0,0,0.0,0,0.0,0.05062,0.133904716556887,0.3103516396681153,0.01571,0.3636535552193646,0.6363464447806354,23.5715488744932,4.218426713777903,0.3244180287270926,0.2592867756315007,0.2092620108964834,0.2070331847449232,11.581390784794934,6.234813187389057,16.966691540915665,11437.728201212552,46.28502061929493,12.740758746066536,14.936939218104932,9.350810843457198,9.256511811666265,0.5755324418028727,0.7975167144221585,0.6862595419847328,0.5952662721893491,0.104066985645933,0.7487520798668885,0.9118329466357308,0.8522427440633246,0.7745098039215687,0.1382978723404255,0.5021156558533145,0.7175324675324676,0.6186895810955961,0.5382215288611545,0.0941358024691358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019346670043048,0.0040853979968371,0.0060580230752838,0.0081271079686293,0.0102822273073989,0.0122811841261112,0.0145898329968801,0.01720160071869,0.0191879127394655,0.0213441162921635,0.0235576331652109,0.0255149187834979,0.0276286836531145,0.0297898640296662,0.0318079550849381,0.033711698300459,0.0360301580397274,0.0381264520411549,0.0399555241499709,0.0420336935923866,0.0571631309284052,0.0707815572570185,0.0839046480910749,0.0965711463488961,0.1088046868414397,0.1235284171369391,0.1339247858899347,0.1442913050876297,0.1545809674251803,0.1636753281542995,0.17501211175109,0.1874100758337931,0.1983468377834575,0.2081050041017227,0.2164146250192608,0.2258157442800953,0.2343811022216271,0.2428100642229695,0.2510829383348831,0.2575922343433418,0.2635375722543353,0.2692608822670172,0.2748636917363485,0.2795394918117235,0.283868617570275,0.2879258492333481,0.2912457280204304,0.2944435952308162,0.2984240947616702,0.3016830572239456,0.2993068174170536,0.2965370344922358,0.2947649873346468,0.2923577000866801,0.2890972026205933,0.2869310783277418,0.284171009488207,0.2839246720409805,0.2840732320210601,0.2839946500222916,0.2850455039137111,0.2866047300629228,0.2876026478967655,0.2872302399356597,0.2881135707410972,0.2899653438257289,0.2906338048211287,0.2952201849239931,0.2999580917790039,0.3059748676203272,0.3087501134610148,0.306455890934168,0.3102881698685541,0.311386816867103,0.3138597149287321,0.3180853572270691,0.3200061040744697,0.3250650130026005,0.3331514324693042,0.3368298368298368,0.0,1.849811443531824,52.64841418117039,149.48325474932113,207.3084077638895,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95674,47490,452.6203566277149,5212,53.12833162614712,4121,42.35215419027113,1526,15.448293162196626,77.34192318165195,79.71806408721504,63.32298576779221,65.0752082120009,77.14229799991776,79.52424046970674,63.24703206273272,65.00431878964244,0.1996251817341914,193.82361750830057,0.0759537050594971,70.88942235846218,212.17834,149.20940715294472,221772.2056149006,155956.06659379217,502.77759,337.12939745275514,524744.5073896775,351606.9296245183,460.71447,226.12523102134415,477017.7477684637,232755.4067595885,2348.41212,1102.7091353418614,2415329.849279846,1113339.9667400343,944.9251,426.3894955022143,965646.8633066457,423722.8009711147,1479.56696,635.7116397405503,1499908.940778059,625827.2170268415,0.38037,100000,0,964447,10080.5548006773,0,0.0,0,0.0,43769,456.6862470472647,0,0.0,41695,431.2874971256558,1229777,0,44175,0,0,0,0,0,79,0.825720676463825,0,0.0,0,0.0,0,0.0,0.05212,0.1370244761679417,0.2927858787413661,0.01526,0.3595443689142017,0.6404556310857983,23.5277153058816,4.107593440510727,0.3295316670710992,0.2586750788643533,0.2152390196554234,0.196554234409124,11.542264296197905,6.380459987792924,16.432676358382494,11577.43525558166,47.08358419426904,12.96341552719396,15.406079892803104,9.993157529935203,8.720931244336777,0.589662703227372,0.8123827392120075,0.6973490427098674,0.5896279594137542,0.1160493827160493,0.7591537835638731,0.9101382488479264,0.8589743589743589,0.7336065573770492,0.1490683229813664,0.5176348547717843,0.745253164556962,0.6322314049586777,0.5349922239502333,0.1078582434514637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161771108613,0.0044191727227577,0.006827150349473,0.009253052186808,0.0115322424821779,0.0137545560057828,0.0159349958199946,0.0180123145415743,0.0203689312446316,0.0225669380023549,0.0247926257831004,0.0268119364975046,0.028726883755374,0.0308178951923671,0.0330319170898881,0.0349424003640048,0.0368770523219076,0.0390388208428482,0.04110942407288,0.042953607602851,0.0573887792088412,0.0722280975466739,0.0859416000167936,0.098753090966486,0.1106913726152287,0.125556931347959,0.1359572751210396,0.146869907007957,0.157441850521635,0.1668079990553987,0.1787435446831908,0.1901770726160177,0.2011886490546321,0.2104439556591488,0.2193615850302696,0.2292206784994128,0.2378485788921387,0.2456799990994135,0.2532672323819032,0.2589279578513343,0.2651353853274705,0.270924491658282,0.2759465505201737,0.2804171911526704,0.2848031295178161,0.2892103706624606,0.2926468931151482,0.2962571879293674,0.300711444011041,0.303443631658172,0.3011352911037402,0.2994362741719846,0.2974768345486087,0.2945211414048059,0.2920713533711947,0.2887965283295642,0.2863729669982631,0.2865878649769661,0.2872498336489737,0.2881298613459587,0.2888710400478183,0.2894171022783312,0.2898023979613151,0.291171155090475,0.2927150415359938,0.2934971360443719,0.2936764039855072,0.2979613499422434,0.3012035619869208,0.3047034764826176,0.3110791625482972,0.3165705296276874,0.3180626638372238,0.3194340470130259,0.3244941328651945,0.3252663270032422,0.3324408746095493,0.3348407392843098,0.3359312012899758,0.3376288659793814,0.0,2.6151037538212925,53.133372772068455,147.02085041679098,216.3709733576009,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95738,47441,452.3700098184629,5113,52.298982640122,4015,41.3524410369968,1523,15.490191982284989,77.32392886815877,79.6877145577961,63.31606620966248,65.06479707117093,77.13499929511403,79.50260001073744,63.24556690355446,64.99830010406961,0.1889295730447457,185.11454705866012,0.0704993061080188,66.49696710131536,211.00002,148.48427366535003,220393.17721281,155094.396859502,503.01611,337.3990322791184,524819.6954187469,351829.7878367193,454.91787,222.16051491721743,471428.60724059417,229218.3469673872,2309.01384,1069.6420170341398,2379902.5256429003,1085357.1800477756,918.3143,408.2223929445467,946444.2750005224,413654.9755601261,1485.32814,624.3355238761869,1513197.3719944016,620130.2555926251,0.37971,100000,0,959091,10017.871691491362,0,0.0,0,0.0,43715,455.9944849485053,0,0.0,41100,425.5572499947774,1236255,0,44397,0,0,0,0,0,101,1.0549625018279054,0,0.0,1,0.0104451732854248,0,0.0,0.05113,0.1346553949066392,0.2978681791511832,0.01523,0.3526551982049364,0.6473448017950636,24.059413101013032,4.21509750072304,0.310585305105853,0.2669987546699875,0.211706102117061,0.2107098381070983,11.382739213628048,6.092431825937451,16.183986286373155,11555.359748242558,45.72111109781487,13.05098200914877,13.96223843148142,9.457662380374826,9.250228276809864,0.5648816936488169,0.7994402985074627,0.6688051323175621,0.5694117647058824,0.1099290780141844,0.744661921708185,0.9101654846335696,0.8440366972477065,0.7745098039215687,0.1058823529411764,0.4949844344517468,0.7272727272727273,0.6065217391304348,0.5046439628482973,0.1109467455621301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025423642975072,0.004633525636476,0.0070838492297075,0.009236115344754,0.0115860357244578,0.0137983706720977,0.0160675325734559,0.0184449865771127,0.0205502561114007,0.0224326814784478,0.0242472087515506,0.0260272284851845,0.0281590229158313,0.0303548436936704,0.0322780369009782,0.0342243446622012,0.0364075155884241,0.0382978723404255,0.0403980534065385,0.042454107890734,0.0575873049016025,0.071672926234739,0.0846545866364665,0.096918013480405,0.1093395758860312,0.1244354181872031,0.1356710875331565,0.1466429590511275,0.1565500667556742,0.1654624587281849,0.1781770037243547,0.1898619205691857,0.1999239089080928,0.208467702263957,0.2175404644616467,0.2276511880245355,0.2371862099743389,0.2448952040230854,0.2526020680340056,0.2596396313786621,0.2662226340785358,0.271451826347656,0.2769043020817289,0.2815108914691488,0.2855388132851739,0.2900421691203669,0.2932129303758626,0.2971489692231291,0.3003588966196344,0.3033276112504952,0.3021570133247107,0.2997922027880606,0.2968353716958801,0.2943692912475431,0.2914730293536844,0.2876316553801,0.2847013864763288,0.2852818457007281,0.2856412876852325,0.2858184793823602,0.287204463602605,0.2883001772700413,0.2899935334487578,0.2912863440046306,0.2927611886688537,0.2947343835154283,0.295858826195332,0.2992444430510706,0.3038489877548156,0.308036067389069,0.3116612259702575,0.3161252900232018,0.3191901518465287,0.3224274406332454,0.3273475495697718,0.331289790143834,0.3347343140198138,0.3385457388584832,0.3389473684210526,0.3413173652694611,0.0,2.194929586943417,48.95222283702224,150.43148477075712,212.7529094723466,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95795,47681,454.7418967587035,5097,51.99645075421473,4058,41.79758860065765,1542,15.710632078918524,77.4066300966336,79.74372543324688,63.35719594835807,65.08697797158206,77.2138968091535,79.55436070641204,63.28474679878149,65.01805103740419,0.1927332874801095,189.36472683483885,0.0724491495765846,68.92693417786688,211.3463,148.71307733869168,220623.5189728065,155240.9596938167,499.74768,335.58473272240235,521121.1023539851,349752.08802380326,460.84679,225.14698354547477,477247.81042851927,232118.5734686084,2313.14152,1083.1194858390977,2384958.7139203507,1100943.8549392947,948.89992,427.6408362556125,977437.5280547,433301.7341828875,1499.92342,635.0487615392628,1530783.798736886,634575.5926210962,0.38003,100000,0,960665,10028.341771491205,0,0.0,0,0.0,43331,451.7354767994154,0,0.0,41779,432.3190145623467,1239952,0,44504,0,0,0,0,0,87,0.89775040450963,0,0.0,0,0.0,0,0.0,0.05097,0.1341209904481225,0.3025309005297233,0.01542,0.3534256832646948,0.6465743167353051,23.71013842242237,4.175117327685524,0.3176441596845736,0.2654016757023164,0.2084770823065549,0.2084770823065549,11.52688428242143,6.367781777637851,16.3079746988571,11536.34851752141,46.34209614491157,13.26377187898053,14.474896926146782,9.393830760587276,9.209596579196988,0.5842779694430754,0.8068709377901578,0.7051978277734678,0.574468085106383,0.1264775413711583,0.7385398981324278,0.8912579957356077,0.8765060240963856,0.6868686868686869,0.1396648044692737,0.5211805555555555,0.7417763157894737,0.64576802507837,0.5401234567901234,0.1229385307346326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023810971284981,0.0045831558881385,0.0068093483930546,0.0086361927598223,0.0110352823913507,0.0133703997881916,0.0153137170938602,0.0176695758689327,0.0197984382027065,0.021971836751402,0.0241867710660626,0.0261861763257264,0.0285103496474747,0.0304917594012826,0.0322849986084052,0.0341893580331051,0.0360534646500175,0.0382111461270525,0.0400918403391027,0.0422266873496923,0.0565722752029381,0.0704739395967539,0.0839333815468142,0.0969586144565651,0.1097508296897223,0.1250383018289783,0.1363906140704156,0.1463883986476429,0.1568064698539375,0.1661311398153503,0.1784204241035406,0.189073767744586,0.1999065603337751,0.2095603087774465,0.2189185330008896,0.228217098858306,0.2365483478862088,0.2452872607097492,0.2523301961673659,0.259599208029573,0.2659945894702767,0.271489829062825,0.2760708626031836,0.2800957797066746,0.2848523841895697,0.2883765042062348,0.2924861131962167,0.2968575205939184,0.3001617599482368,0.3036156970304341,0.3008857896720693,0.2984098187165849,0.2957157931762223,0.2925432141517329,0.2918451119574399,0.2888166529316607,0.2861284426797756,0.2864626682986536,0.2864669806525938,0.287137296532201,0.2875774433012707,0.2877834617118441,0.2896485835341031,0.29051357104843,0.2916369005095966,0.2921588857363941,0.2921281812801217,0.296275587860715,0.3004926108374384,0.3049420426065163,0.3073814655172414,0.3138617482627096,0.3197573656845754,0.3219504920966299,0.3289328932893289,0.3306414397784956,0.3360519558979006,0.3405597162002365,0.3399241603466955,0.3506787330316742,0.0,2.1920126931457307,51.243692469149416,153.1530705836868,207.5827979982327,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95677,47774,455.2818336695339,5105,51.94560866247896,4051,41.64010159181412,1495,15.176061122317796,77.29491858535671,79.69773218624536,63.29396199958445,65.0742758297103,77.10388065905303,79.51310813455446,63.221369045068734,65.0072521863797,0.1910379263036787,184.62405169090343,0.07259295451572,67.02364333060018,212.1658,149.29097362595755,221751.68535802755,156036.06242481753,509.09535,341.6649844891312,531369.3991241364,356377.313368953,463.57058,227.43230155618983,480254.6589044389,234453.99696692897,2316.4856,1085.810499072963,2382900.968884894,1096800.7612962497,939.95617,422.2819462067354,965943.675073424,424961.0622840005,1459.82816,620.4927712534793,1484088.966000188,612223.501883681,0.38128,100000,0,964390,10079.622061728523,0,0.0,0,0.0,44242,461.657451634144,0,0.0,42097,435.7891656301932,1226082,0,43999,0,0,0,0,0,68,0.7002727928342234,0,0.0,1,0.010451832728869,0,0.0,0.05105,0.1338911036508602,0.2928501469147894,0.01495,0.3397327310370788,0.6602672689629211,23.537988930378575,4.218126678890697,0.3184398913848432,0.26734139718588,0.2073562083436188,0.2068625030856578,11.729613019995778,6.4312551716601805,15.941940185991712,11553.021095275575,46.152502087773335,13.222450467016657,14.508784552491838,9.280193000426014,9.141074067838836,0.5778820044433474,0.7903970452446907,0.6829457364341085,0.5904761904761905,0.1288782816229117,0.7561807331628303,0.9146067415730336,0.8739255014326648,0.7313432835820896,0.1573033707865168,0.5052119527449618,0.7037617554858934,0.61211477151966,0.5461658841940532,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025241517734953,0.0049620993028707,0.0072208398923475,0.0093233694270753,0.0115129737268035,0.0138411831255796,0.0162965835340217,0.0183384074702192,0.0204403159143921,0.0224546450998268,0.0245984038733766,0.0268534974266254,0.0291935500468208,0.0311037823353601,0.0329283524469172,0.0348407913378905,0.0369430051813471,0.0392146683832385,0.0410827793556172,0.0431111759678125,0.0584972474955865,0.0723895676937735,0.0863916378939414,0.0993013026916682,0.1112705480174724,0.1273385253534242,0.1384973037238333,0.1487254839327924,0.1585937917401293,0.1677307209459532,0.1789838834784107,0.1891777842698088,0.200110900906778,0.2093999344190621,0.2185479259226674,0.2279788730055032,0.2363579565105822,0.2446887518566863,0.251413648234359,0.2577716643741403,0.2638318070782731,0.2691047396138092,0.2743951517447091,0.2793366429239514,0.2830952033824173,0.2878004859577932,0.2920688575899843,0.2965049729097245,0.3002779753054496,0.3038444822000079,0.301308752788154,0.2992711750415197,0.2959187977112651,0.2924399071390463,0.290609569846236,0.2875386168292906,0.2840553112046324,0.2846461599003083,0.285195230540914,0.2856302056394799,0.2864314078069978,0.2873679012345679,0.2890910992573998,0.2896839567895723,0.290870590500024,0.2918707660239708,0.2921079603689784,0.2969044330026372,0.3012056613664162,0.3054666192339618,0.3086155944532848,0.3105688480430993,0.3160395049381173,0.3179173278923902,0.3221858944418496,0.3248317392844492,0.33071223347951,0.3295797305449427,0.3357585556453786,0.3381913303437967,0.0,2.603096873469963,50.52942265587482,148.02257243588832,213.3241063543583,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95730,47763,454.5388070615272,5066,51.81238901075943,3965,40.92760890003134,1551,15.93022041157422,77.3593554540744,79.73173531459429,63.33143217950936,65.08448553289435,77.16624564667494,79.53761598730819,63.25956235629974,65.01353500024437,0.1931098073994661,194.1193272861028,0.0718698232096244,70.95053264997375,211.36346,148.67841070181908,220791.24621330824,155310.1542900022,503.2105,338.145724188111,525134.2421393503,352713.31813737133,456.8678,223.51800409722435,473978.1259793168,230966.60245596315,2285.74892,1064.9079764313394,2361734.9211323517,1086738.85498774,908.49059,408.646594557247,934886.7544134544,412876.4211402179,1510.24112,638.0120135739786,1552712.6919460983,646539.0293287773,0.381,100000,0,960743,10035.965736968556,0,0.0,0,0.0,43763,456.6175702496605,0,0.0,41394,429.1444688185522,1235488,0,44302,0,0,0,0,0,83,0.8670218322364984,0,0.0,0,0.0,0,0.0,0.05066,0.1329658792650918,0.3061587050927754,0.01551,0.3456464379947229,0.6543535620052771,23.67781392032349,4.162822383479443,0.3134930643127364,0.2564943253467843,0.2148802017654476,0.2151324085750315,11.43802216088364,6.30170897864189,16.519482040011987,11584.856733674496,45.18878306505976,12.340927629430414,14.115360436620078,9.450282944735214,9.282212054274044,0.5747793190416142,0.8053097345132744,0.6926790024135157,0.57981220657277,0.123094958968347,0.7567332754126846,0.9258373205741628,0.8731988472622478,0.7298578199052133,0.1542857142857142,0.5003553660270078,0.7212020033388982,0.6227678571428571,0.5304212168486739,0.1150442477876106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763278369728,0.0047543260312021,0.0069307031162795,0.0090898011415571,0.0116734287137874,0.0139371048693332,0.0162495540037718,0.0182614376416307,0.0201590644231359,0.0221644365728559,0.0244167563964518,0.0265614889224416,0.0285711346145931,0.0305893261899855,0.0327523759403151,0.034856315898284,0.0371152591856384,0.0390914276824145,0.04138382693847,0.043579247778854,0.0581374708947198,0.0717911150646224,0.0848655849127849,0.0974766060351172,0.1098563927373948,0.1258713150908071,0.1371304882965855,0.1481631306088122,0.1588451510877463,0.1685390847148452,0.1802715224652515,0.1910870082916585,0.2019711935947086,0.2111436950146627,0.2199814965746635,0.2284355144539436,0.2371497805719646,0.2451805196265886,0.2529099448642026,0.2601759168060105,0.2656658416414147,0.2709667617222196,0.2765266093203516,0.2810129913630165,0.2858130312988856,0.2899609956566141,0.294077935716161,0.2982496252826258,0.3005572579289657,0.3030291057553009,0.3008702191663086,0.2984115652329109,0.2964667583419864,0.2942453698378005,0.2912352836774537,0.2880498544894943,0.2848377098443965,0.284471928078448,0.2855395487904322,0.2862947585081088,0.2873794736940264,0.2876898261074829,0.2903596581053687,0.2912124731951394,0.2925385297571966,0.2941176470588235,0.2949917758493562,0.2994925447938855,0.3045499021526419,0.3083290630296819,0.3107991849671723,0.3126188966391883,0.3144891914035419,0.3181577953944884,0.3182789703559149,0.3241629594942636,0.3272754808420415,0.3338645418326693,0.3413513513513513,0.3405933158092377,0.0,1.911032544646768,50.44383141673322,143.77574083735658,209.2247319684108,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95879,47590,452.132375181218,5195,52.900009386831314,4081,41.8861273062923,1529,15.582139988944398,77.4394230829848,79.71911208793675,63.39129033748679,65.0769303551167,77.24129833428788,79.52492816965517,63.3165209322832,65.00625927732311,0.1981247486969266,194.1839182815812,0.0747694052035825,70.67107779359105,212.2186,149.26658524029455,221340.0223197989,155682.25079558045,500.84568,335.7910799995414,521724.986701989,349576.13241642225,456.45051,224.19205400897997,471429.7499973925,230374.363677028,2355.11464,1099.645107809916,2422008.1561134346,1112576.9645176898,950.58811,431.3609397544932,979809.5933416076,438265.38632494427,1497.62648,635.9726913285403,1529197.071308629,635420.5700375787,0.38113,100000,0,964630,10060.910105445404,0,0.0,0,0.0,43569,453.7177066928107,0,0.0,41347,426.568904556785,1237218,0,44421,0,0,0,0,0,80,0.8343850061014403,0,0.0,1,0.010429812576268,0,0.0,0.05195,0.1363051977015716,0.2943214629451395,0.01529,0.3427152317880794,0.6572847682119205,23.996413931978807,4.201491690765153,0.3244302866944376,0.2563097280078412,0.2033815241362411,0.21587846116148,11.290910141261763,5.944110111099876,16.235445238561365,11531.368540720794,46.27454046557428,12.75599100144821,14.813196787846698,9.170378319541562,9.534974356737813,0.5574614065180102,0.8126195028680688,0.6616314199395771,0.536144578313253,0.1180476730987514,0.743993371996686,0.9492273730684326,0.8296089385474861,0.7373737373737373,0.1262626262626262,0.4791231732776618,0.7082630691399663,0.5993788819875776,0.4731012658227848,0.1156661786237188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0046414528355425,0.0069690299150934,0.0094528322959924,0.0117495197536259,0.0138275574367635,0.0160020371785077,0.0183904528763769,0.0206366719790772,0.0229239550727306,0.0251644500911903,0.0271080010670825,0.0290916938127485,0.03107853532494,0.0329810814990463,0.0352016686974659,0.0374110246647906,0.0392817175778173,0.0413625556743737,0.0433923202563382,0.0573954196245217,0.0718487790096237,0.0853971412115817,0.0983799334334281,0.11044791831149,0.1256677717012606,0.136010252933949,0.1460250334700469,0.1554385366477636,0.1649544111981507,0.1769347365705255,0.1883934263271061,0.1989810328720099,0.2090326951656613,0.2174902685227947,0.2255547562392784,0.2343074316793723,0.2423054457225018,0.2502350449134015,0.2578133930816891,0.2642008383662251,0.2694669499638095,0.2746629485649466,0.2789712411886497,0.284483699938124,0.2900621500215371,0.2935052924930329,0.2967764051648617,0.2997907355258739,0.3033313159487409,0.3014666380143977,0.2993580775244835,0.2970822281167108,0.2944302812945599,0.2919738283447316,0.2887400241099904,0.2855317537937344,0.2860993579795141,0.286328709370325,0.2864800582189957,0.2866538726686665,0.2889626980071538,0.2902608080261432,0.2900722741985545,0.2913443918227468,0.2928462473176659,0.292529658748274,0.2965262471672927,0.2996092804536496,0.3038866491839211,0.3067798894729748,0.3088312506563058,0.3134839151266256,0.3166326607723116,0.3191449465591599,0.3219898381188704,0.3236648250460405,0.3302231237322515,0.3322314049586777,0.338097028958255,0.0,2.654750823451524,51.913342540168,143.36411724320078,215.21210325948013,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95724,47761,454.0971961054699,5214,53.16326104216288,4173,42.883707325226695,1578,16.00434582758765,77.34647984393533,79.69958943309416,63.33814763576003,65.07581513230978,77.13567317308754,79.49349309837967,63.25805863786848,65.00017226125296,0.2108066708477878,206.0963347144877,0.0800889978915506,75.64287105682865,210.48126,148.1239816554671,219883.4774978062,154740.6937188867,502.58736,337.5784565118816,524334.7227445573,351954.8561613405,461.97608,226.65192460206484,477937.2362208015,233119.34248042965,2367.64816,1118.8107623997787,2435273.6617776104,1130650.5812542094,948.08738,432.2417845151578,971039.1333416906,432150.6670376895,1528.19874,660.701357986006,1552764.406000585,653044.8944708599,0.38147,100000,0,956733,9994.703522627551,0,0.0,0,0.0,43649,455.2567799089048,0,0.0,41903,433.1097739333918,1239350,0,44509,0,0,0,0,0,77,0.8043959717521206,0,0.0,0,0.0,0,0.0,0.05214,0.1366817836264975,0.3026467203682393,0.01578,0.3577745025792189,0.6422254974207812,23.26745041850896,4.095146040587833,0.3251857177090822,0.2657560508027797,0.2118380062305296,0.1972202252576084,11.1341258176321,5.947683472654794,17.004639800602686,11588.491429452166,48.00437180060407,13.665633270258756,15.475503166556198,9.850930465236376,9.012304898552744,0.5842319674095375,0.8115419296663661,0.7103905674281503,0.5463800904977375,0.1105710814094775,0.7442231075697211,0.9242424242424242,0.8469656992084432,0.7248908296943232,0.1081081081081081,0.5154215215901302,0.7310664605873262,0.6574642126789366,0.4839694656488549,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812639254608,0.0050988859491733,0.007479120366142,0.0097113020865077,0.0118982244188174,0.0141513275777813,0.0165035677879714,0.018810153196093,0.0209545031738406,0.0233534344189284,0.0255845180864912,0.0276312278036663,0.0299693623671169,0.0319185094395979,0.0338409475465313,0.0357515684592407,0.0375834756949836,0.0397460238413894,0.0418403517708084,0.0438727149627623,0.0583930174771877,0.0721986142220175,0.085401038661281,0.0979967401020032,0.1098130594772413,0.1256568305086537,0.1367816945484634,0.1471204912885681,0.1571985266641755,0.1670275020899873,0.1785306720065456,0.1905518964342493,0.2019019671774807,0.2110721349812586,0.2191810937070623,0.2281362086525262,0.2365530239664536,0.2450678244437945,0.252518834528456,0.2598009460217837,0.2656741625023135,0.2711604793919906,0.2773799519452697,0.2821536469572723,0.2870815721712093,0.2901768124507486,0.2929984112886075,0.2963321200397077,0.2992691270993158,0.3033163467377815,0.3004377399151458,0.297617409965059,0.2959990990230031,0.2938186019641826,0.2916109873793615,0.2885613261698121,0.2853937555302743,0.2858453172601303,0.2857800825628603,0.2851899365690257,0.2856234810244905,0.2872912929488064,0.2876038592746071,0.289358568048922,0.2895437855480093,0.2912537811619902,0.2944746815604251,0.2971955580651232,0.3018656585809793,0.3066387748658036,0.3077027886274866,0.3109203624225083,0.3193776166968693,0.3241211753093918,0.328419866679185,0.3327414772727273,0.3331811263318112,0.3267286696320259,0.3258270781206561,0.3265783320342946,0.0,2.8171679014641544,54.199681932391776,152.2620833228999,216.423103153458,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95751,47544,452.9978799177032,5141,52.55297594803187,4086,42.2032145878372,1595,16.334033064928825,77.41222784566315,79.76889109724969,63.350809200748486,65.08988074297253,77.20763307397213,79.56476823128446,63.27429132865055,65.01572703709236,0.2045947716910205,204.12286596523188,0.0765178720979378,74.15370588016401,210.0978,147.8179887041843,219420.99821411783,154377.48817681725,502.29973,336.4909313273111,524121.1162285512,350954.46661372844,457.4222,223.6486934378552,474701.0892836629,231254.8507787317,2327.59176,1094.0314006048632,2405443.4522877047,1117177.1430573706,968.4679,441.4639932098429,997975.5407254233,447610.0872148536,1550.2867,660.4085432508289,1589069.9836033045,663942.5440845538,0.38195,100000,0,954990,9973.681737005358,0,0.0,0,0.0,43764,456.56964418126176,0,0.0,41421,429.5620933462836,1243454,0,44563,0,0,0,0,0,81,0.8459441676849327,0,0.0,2,0.0208875103132082,0,0.0,0.05141,0.134598769472444,0.3102509239447578,0.01595,0.3492831874883634,0.6507168125116366,23.569683919827444,4.149506827770172,0.3135095447870778,0.272148800783162,0.2075379344101811,0.206803720019579,11.673517900815868,6.323649030927004,16.973718870767023,11624.88631243886,46.70817859783978,13.451813446956864,14.481107425517724,9.516238419856712,9.25901930550849,0.5797846304454234,0.8039568345323741,0.7017954722872756,0.5601415094339622,0.1195266272189349,0.7607413647851727,0.948955916473318,0.8835227272727273,0.7066666666666667,0.1340782122905028,0.5056916177992411,0.7121879588839941,0.6329386437029063,0.507223113964687,0.1156156156156156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0042568286626463,0.0063405429533741,0.0086826712161832,0.010949684319686,0.0133048302539827,0.015706219295921,0.0181014866891829,0.0198873797917241,0.0219344933469805,0.0242067721570878,0.0262379896526238,0.0283123612139156,0.0306166584280771,0.0326994314488252,0.0347098041242441,0.0368418327724566,0.0388230655904384,0.0407435516234002,0.0428342257130356,0.0571998287867873,0.0711505461850751,0.0853114871031017,0.0981213051984936,0.1105308137878644,0.1261573951598396,0.1377418362040604,0.1478661782869798,0.1586253326066745,0.1674661687217625,0.1798727899956878,0.1902658220995073,0.2013910809722328,0.2098855985549291,0.2185307174566805,0.228173106783195,0.2370165066663686,0.2456413028787674,0.2537328685462535,0.2608610926431142,0.2670278906602757,0.272741099528506,0.2785355178328503,0.283432321103554,0.2877463831439946,0.2916758992540069,0.2959117375115576,0.2989516702203269,0.3019888233548004,0.3064973978867686,0.3036683598933133,0.3006846501437765,0.2974681769752705,0.2953388733933347,0.2936360417773057,0.2916521025516329,0.2901528360272057,0.2904801445806672,0.2902033898305085,0.2909000761425814,0.2915111333964752,0.2922230489094255,0.2928904234961311,0.2935566152822446,0.2955494571053573,0.2958875074314369,0.2964929124075224,0.300550527199776,0.303865674754919,0.3058136344035438,0.3101433643431756,0.312191795194628,0.3176002980996149,0.3236747529200359,0.3264010306432318,0.3292952824694234,0.3275578790141897,0.3342546890424481,0.3376344086021505,0.3418482344102179,0.0,1.8622220464854549,52.144998963263625,152.61943848635332,211.1260002994323,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95746,47677,452.8230944373656,5223,53.49570739247593,4160,43.04096254673825,1584,16.31399745159067,77.32373385663094,79.6930822689132,63.321321634088775,65.07481360534919,77.12384626586817,79.4917276342998,63.24646599097215,65.00108828228406,0.1998875907627706,201.35463461339495,0.0748556431166278,73.72532306513335,211.76804,148.9589141602305,221176.9055626345,155577.16683749764,503.23233,336.92568256868014,525203.9145238444,351508.25368023745,459.2354,224.3520691868916,476317.9349528962,231913.21676567444,2397.30836,1121.6281699413023,2480987.73839116,1148629.0079390288,992.83405,443.3914567138383,1026098.447976939,452244.0903158752,1546.9724,656.1392904001212,1593313.141018946,665546.7216013373,0.38108,100000,0,962582,10053.495707392476,0,0.0,0,0.0,43770,456.7397071418128,0,0.0,41674,432.0389363524325,1235771,0,44382,0,0,0,0,0,77,0.8042111419798217,0,0.0,0,0.0,0,0.0,0.05223,0.1370578356250656,0.3032739804709937,0.01584,0.3459923315683768,0.6540076684316232,23.621665805598514,4.1927951395072185,0.3163461538461538,0.2665865384615384,0.1995192307692307,0.2175480769230769,11.148650607065424,5.885185506882642,16.86590554898461,11610.673509462778,47.6554611108418,13.505738385435912,15.064343845927542,9.20918284649191,9.876196032986432,0.5807692307692308,0.806131650135257,0.7006079027355623,0.5903614457831325,0.1215469613259668,0.7558333333333334,0.9117647058823528,0.8689839572192514,0.7562189054726368,0.1475409836065573,0.5097972972972973,0.7361319340329835,0.6337579617834395,0.5373608903020668,0.1149584487534626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0045635705375886,0.0067701989443767,0.0089628681177976,0.0114561289272342,0.0137925414336501,0.016083302737323,0.0183836671330671,0.0205945210802409,0.0231348251318551,0.0252997097763329,0.0276881996508164,0.0295969384605888,0.0318003359335552,0.0339894511937078,0.0360786908293963,0.0384025850283773,0.0404822177034485,0.0423892701185277,0.0443543765693864,0.0589482036772152,0.0726755138778415,0.0857460557233971,0.0984337691571385,0.1106471375997806,0.1254863813229572,0.1370421055981668,0.1467136275125294,0.1573894098297626,0.1663807338465827,0.1777354264918061,0.1898347992600045,0.2002675163391585,0.2092705383210681,0.2181676164492068,0.2280725066161733,0.2373678811934174,0.2449811829466943,0.2522333575185924,0.2585313397320765,0.2648305819017802,0.2715432149240132,0.2772059605544592,0.281984365460357,0.2869087202388176,0.2903388661774122,0.2936636982189313,0.2973619272940039,0.301589973327809,0.3053409959665726,0.3018063457477572,0.2996932641916892,0.2967067006462695,0.2954624277456647,0.293333135312551,0.2891850129278032,0.2860526066500363,0.2869511137297262,0.2879311224923857,0.2881744916294543,0.2894176136363636,0.2906407828282828,0.291801080899912,0.2926131282418172,0.29289819869652,0.2955623924492882,0.2967653602601403,0.3007341126059422,0.3061124006471126,0.3106084740363173,0.313607305936073,0.3186057666684432,0.321466893896358,0.3253683487289106,0.3296220059880239,0.3293044199549709,0.3341408024224073,0.3428686543110394,0.3483483483483483,0.3400840657241116,0.0,1.6039638682249642,52.87321742752224,156.2909266531316,217.482539020909,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95782,47845,455.2629930467103,5062,51.59633334029358,3967,40.84274707147481,1586,16.182581278319518,77.38153749659537,79.72311682390227,63.350937847410606,65.08288510321694,77.18252427506576,79.5268215311127,63.276030904508566,65.01116808509137,0.1990132215296114,196.29529278957136,0.0749069429020394,71.71701812556819,211.22992,148.75217584819342,220531.9579879309,155302.85006388824,505.79538,339.0970326227563,527530.9452715542,353491.6191171163,461.14823,225.9017078656014,477994.38307824015,233144.38412425693,2273.23436,1062.9402573146265,2343930.5923868786,1080338.1609432108,929.05348,418.48292071196494,957649.7462988872,424594.9350733589,1537.78386,653.0226566412149,1571892.9443945626,653273.4124458417,0.38089,100000,0,960136,10024.179908542315,0,0.0,0,0.0,43947,458.23849992691737,0,0.0,41685,431.6990666304734,1234816,0,44294,0,0,0,0,0,90,0.9396337516443592,0,0.0,1,0.0104403750182706,0,0.0,0.05062,0.1328992622541941,0.3133148952983011,0.01586,0.3419062027231467,0.6580937972768532,23.9146381746755,4.191572536593594,0.3193849256365011,0.2535921351146962,0.2210738593395513,0.2059490799092513,11.513649686420552,6.362995068542065,16.996641570968976,11579.032503965562,45.22919538154347,12.15077661533219,14.25375548408174,9.940228850030769,8.884434432098782,0.5744895386942274,0.7952286282306164,0.6874506708760852,0.5952109464082098,0.1052631578947368,0.7476394849785408,0.9178743961352656,0.8495575221238938,0.756198347107438,0.1176470588235294,0.502498215560314,0.7094594594594594,0.6282327586206896,0.5338582677165354,0.1020092735703245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091413640138,0.0045613963954832,0.0070208189602694,0.009049084427653,0.0111840901234316,0.0133961745574478,0.0159518082113589,0.0182488084181304,0.0205195282961025,0.0226126282831796,0.0249731003740328,0.0271399390275197,0.0293648916809755,0.0315167365093747,0.0335946364105208,0.0354807046546469,0.0375218601570826,0.0395040996776233,0.0414788191053954,0.0432790913160716,0.0585724720859856,0.073029418839352,0.0866206115752728,0.0997478196910791,0.1121460860036036,0.1279192645038571,0.1388909493583698,0.149574239637705,0.1597823187323267,0.1685440222924816,0.1797223119147562,0.1903314767749959,0.2004369137801736,0.209264460010272,0.2184557853057633,0.2278111093891828,0.2372223708857372,0.2452705057158594,0.2519902020820576,0.2589236683141131,0.2646970397779833,0.2701527600836849,0.2762940007570023,0.2805229947676577,0.2850694107368217,0.289595766935335,0.2937055076807793,0.2970950033040207,0.3010512160746841,0.3037734606519591,0.3006437566358004,0.2981750271205525,0.29513293008862,0.2922739473000664,0.2900520918359775,0.2869062901155327,0.2840935986241065,0.2834120589052514,0.2829149742526469,0.2844023660230563,0.2850082065055207,0.2861416733914618,0.2883367753509815,0.2887724383989296,0.2895989285628871,0.2907223979671213,0.2924261292878976,0.2979200398555237,0.3029829496128068,0.3062138898714774,0.3093434343434343,0.3132498421384971,0.3172776179156762,0.3215555723689188,0.3263305322128851,0.3323550129138295,0.3380175279540646,0.3447378951580632,0.3479097909790979,0.3454821564160972,0.0,2.2719792055362946,50.54691882988693,144.7230333926772,206.27919299115771,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95860,47322,449.44711036928857,5220,53.265178385145006,4173,42.97934487794701,1603,16.31546004590027,77.37299817448195,79.6744510314208,63.35320242165369,65.05708394022948,77.17557146460327,79.48163457306646,63.27849092107125,64.98698736332173,0.1974267098786839,192.81645835434347,0.0747115005824383,70.09657690774418,210.6335,148.1503976495634,219730.3359065304,154548.7144268343,503.25063,337.554624319793,524406.6033799291,351554.52151032025,458.16767,224.34186234734423,474809.84769455454,231581.09766226128,2392.3246,1120.6566919356555,2463155.1429167534,1136566.4635256163,949.05267,427.0570557553728,972389.5785520552,427850.0268676954,1560.83902,660.0748287774019,1589570.9159190485,653591.3989492069,0.37946,100000,0,957425,9987.742541205926,0,0.0,0,0.0,43788,456.1861047360735,0,0.0,41635,431.2121844356353,1239927,0,44564,0,0,0,0,0,77,0.8032547465053202,0,0.0,1,0.0104318798247444,0,0.0,0.0522,0.1375639066041216,0.307088122605364,0.01603,0.3457738748627881,0.6542261251372119,23.720914309829595,4.250377132454218,0.3242271746944644,0.2578480709321831,0.2115983704768751,0.2063263838964773,11.420375202201017,6.018637141052137,16.97005463034333,11574.029229529642,47.32915331516458,13.029484256032982,15.35338963963368,9.715516910544167,9.230762508953744,0.578001437814522,0.8169144981412639,0.6903178122690318,0.5571913929784824,0.1242740998838559,0.7631578947368421,0.9424778761061948,0.8530927835051546,0.7487437185929648,0.1242937853107344,0.5018599932363882,0.7259615384615384,0.6248704663212435,0.5014619883040936,0.1242690058479532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496050232934,0.004733092117932,0.0070296095675725,0.0094226590581402,0.0116097025394953,0.0138640065146579,0.0157675333543974,0.0180122258620865,0.0200063349988249,0.0219780219780219,0.0241790891860048,0.0263576389957626,0.0285185756127639,0.030745952177538,0.0330299062915579,0.0350080033045902,0.0368419963582188,0.039045418277152,0.0410405524689755,0.0432516231063759,0.0584346520406248,0.0719764258396204,0.084981562185719,0.0975028353005418,0.1094612241459202,0.1253736703672796,0.1366656423189818,0.1472586355372691,0.1569144394159337,0.1659308157229199,0.1779652808420418,0.1898667127893024,0.2001630434782608,0.2100590422042423,0.2186519944979367,0.2276397549926342,0.2362325955016065,0.2448697178344809,0.2527280564441117,0.2594428733355469,0.2651812968273055,0.270691288432526,0.2757588308384119,0.280495400536604,0.284712022819688,0.289176209826376,0.2929606366207052,0.2964083656474477,0.3006714361488803,0.3036797678712741,0.3011438568160409,0.2989451099588772,0.2966505155220012,0.2945067960884575,0.2935005193648909,0.2903319476708644,0.2873141990617151,0.2876550888794317,0.2888389589610036,0.289853009218066,0.290480808683651,0.2914330677682699,0.2932224237496612,0.293898048975601,0.2941808287187321,0.2955710955710955,0.2962017416957422,0.299446338640558,0.302517194427958,0.3070113314447592,0.3095891643792467,0.314225611359453,0.3195921431252346,0.3183299234674547,0.3239344262295082,0.330914198759218,0.3334345581536593,0.3398215733982157,0.3435346015991177,0.353875236294896,0.0,2.042746091966778,53.065600694150106,147.013793668934,222.9350513000888,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95785,47287,451.2501957509005,5034,51.31283603904578,3926,40.3403455655896,1519,15.430390979798508,77.39816222968327,79.72759650907432,63.35848721039546,65.07968519937225,77.1931258597698,79.52713184160577,63.280925959969146,65.00659607445219,0.205036369913472,200.4646674685517,0.0775612504263136,73.08912492005959,211.70666,148.86152426089478,221022.76974474083,155412.1462242468,498.43913,334.91392274853854,519701.3937464112,348980.2920588178,450.63813,220.66651509485624,465906.60333037534,226906.48032331569,2246.62696,1067.8412506468364,2309913.744323224,1079255.80273199,912.02532,421.6998854060881,936044.5998851596,424142.49141941697,1478.07702,643.6977771452141,1502503.3773555355,637242.1235344087,0.37841,100000,0,962303,10046.489533851856,0,0.0,0,0.0,43353,451.9287988724748,0,0.0,40794,421.4856188338467,1239242,0,44460,0,0,0,0,0,94,0.9709244662525448,0,0.0,0,0.0,0,0.0,0.05034,0.1330303110382918,0.3017481128327374,0.01519,0.3526366251198466,0.6473633748801534,23.52418462933763,4.042047421655206,0.3008150789607743,0.2784004075394803,0.217269485481406,0.2035150280183393,11.44982150055302,6.295653151633255,16.48121936989069,11420.743242325696,45.08854258502241,13.236766043603753,13.380502855779488,9.58179335456184,8.889480331077348,0.5807437595517065,0.8005489478499542,0.6926333615580017,0.5662368112543963,0.130162703379224,0.737331081081081,0.9142212189616252,0.896969696969697,0.6650717703349283,0.1633663366336633,0.513129102844639,0.7230769230769231,0.6133960047003525,0.5341614906832298,0.1189279731993299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786656134167,0.0045605642938219,0.0067361928336647,0.0087537574132748,0.0108066893712194,0.0128849716042094,0.014958985071585,0.0170489327837407,0.0191665219301382,0.0211786372007366,0.0232765421221403,0.0254486870324573,0.0274086634808077,0.0293948126801152,0.0315270732813724,0.0337619416473018,0.0358454456111312,0.0378266279552053,0.0395834848846997,0.0414874673275781,0.0557822135500902,0.0693629527365525,0.0825007076881139,0.0948752443612973,0.1071518933963059,0.1222343203272831,0.1333672744243272,0.1435731539910399,0.1533606040863407,0.1623059106116496,0.1749526107185938,0.186681376207318,0.1975575571225241,0.2064407594328286,0.2158164274567554,0.2256151531244468,0.2342762211642453,0.2423571211729387,0.2492003720254973,0.255859486815439,0.2624095438466696,0.2683573891193829,0.2740956370478185,0.2799487277780439,0.2843515619311148,0.2892456174906441,0.292930808175511,0.2967711602729456,0.2984810061070282,0.3011943367871549,0.299837205860589,0.2972315724393762,0.2943394633535479,0.2918655457337736,0.2890438748463714,0.2867215041128084,0.2838976365529645,0.2838312973229325,0.2832265539803708,0.2831474266602622,0.2834965948316074,0.2849963540332276,0.2864507242142171,0.2868765004001067,0.2887389428006008,0.2907660048150353,0.2930174914795933,0.2979848239830824,0.3014372294372294,0.3057404651891299,0.3096375766318067,0.3148235294117647,0.3200964928558174,0.3236311672683514,0.3281264528126453,0.331446095777306,0.3316704459561602,0.330518697225573,0.3240360951599672,0.3309433962264151,0.0,2.517759639785462,51.128288667524416,144.90948821321768,200.2335676168272,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95864,47300,449.4596511724943,5196,52.79354084953684,4141,42.4768421931069,1549,15.678461153300509,77.3584022892406,79.64247333589422,63.35300198276878,65.04241508468802,77.15836594001266,79.44887732022092,63.27728553479918,64.97252151547991,0.2000363492279433,193.59601567330745,0.0757164479696044,69.89356920810508,212.99014,149.81860646240256,222179.253943086,156282.232604943,505.15223,339.04961484240005,526198.4373696069,352929.97771259287,459.10751,225.26228475135,475058.1344404573,231949.5721502299,2371.90748,1119.4385619614363,2434814.86272219,1128341.3802443433,973.76517,446.8213224391101,993568.7327881164,443913.88033961086,1512.10962,645.4276962169736,1532352.2490194442,633184.0483266138,0.379,100000,0,968137,10099.056997413,0,0.0,0,0.0,43947,457.69006091963615,0,0.0,41653,430.51614787615785,1226796,0,44028,0,0,0,0,0,92,0.949261453726112,0,0.0,1,0.0104314445464407,0,0.0,0.05196,0.1370976253298153,0.2981139337952271,0.01549,0.3576171154555514,0.6423828845444486,23.534115157321036,4.197784267709482,0.3182806085486597,0.2779521854624487,0.1951219512195122,0.2086452547693793,11.569890429760404,6.204327797836273,16.519086396028687,11517.020899520436,47.47067001101325,14.092687848089712,14.891431109039816,9.041345438335066,9.445205615548655,0.5935764308138131,0.8132059079061685,0.7101669195751138,0.6027227722772277,0.1145833333333333,0.7771381578947368,0.926829268292683,0.9074626865671642,0.7684729064039408,0.1559139784946236,0.5172649572649572,0.7283763277693475,0.6429298067141404,0.547107438016529,0.103244837758112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400368536686,0.0047319411091183,0.0072318974348571,0.009574673313771,0.0121061191299044,0.0143701849194475,0.0166571579933982,0.0186444999745015,0.0208692811124837,0.0226643085699097,0.0249163143509371,0.027004029074953,0.0288393398173919,0.0309732237457953,0.0331207040468265,0.0351460460698171,0.0371477634791244,0.0390941597139451,0.0411473911598537,0.0429594023763447,0.0579349027294147,0.0714972312193083,0.0851843706473132,0.0977968664678455,0.1097229537553987,0.1249405774289306,0.135871811447526,0.1468736707783921,0.1571666453183041,0.1662611081929958,0.1778153468438395,0.1894207366542268,0.2000804496483045,0.2097818006908916,0.2182847718526663,0.2269895198149644,0.2347305255643794,0.2427220491830929,0.2497759526267427,0.2567274976801732,0.2628698378903764,0.26912999742672,0.2752202330207445,0.2798714612885046,0.2846465162066576,0.2886611920791102,0.2923475712836695,0.2961883179711768,0.2990951047500518,0.3021268163804491,0.2998100421679442,0.2967285539300018,0.2944928679048678,0.2912736360090716,0.288063581668276,0.285436476947341,0.2826007818806286,0.2836514005349436,0.2848193100151926,0.2852028639618138,0.2854820020184652,0.2870691694928622,0.2878373011725853,0.2889522833136464,0.2904153584353953,0.2914572864321608,0.2933616418966737,0.2974726989079563,0.3013865663322185,0.3046976689149213,0.3090826727066817,0.3157202252513025,0.3188043274341817,0.321382256465024,0.3241763428679317,0.3279197516121327,0.3297757153905646,0.3259858442871587,0.3316858868753432,0.3380174705658944,0.0,2.811233341516401,52.288001876528845,155.78402727126527,212.38714244487764,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95729,47715,454.6375706421252,5195,52.962007333201015,4102,42.22335969246519,1542,15.76324833644977,77.38965647392791,79.75561406590693,63.34469261111818,65.09355748104,77.1947284426922,79.56348143409554,63.271173938757904,65.02308982802549,0.1949280312357189,192.13263181138984,0.0735186723602794,70.46765301450364,212.7114,149.53625758999578,222201.40187404028,156207.667049688,506.67626,339.8723783176191,528661.7848300933,354415.859684755,458.66001,224.82934450296457,474691.5668188323,231452.4019168391,2335.11396,1097.7269220313203,2407497.163868838,1114903.4483085796,953.85763,430.9014544967994,981525.190903488,435336.6613899479,1497.62762,635.6025775056022,1533594.8772054447,638832.1007326094,0.38244,100000,0,966870,10100.063721547283,0,0.0,0,0.0,44078,459.7770790460571,0,0.0,41548,429.57724409531073,1230803,0,44137,0,0,0,0,0,96,1.0028309080842797,0,0.0,1,0.0104461552925445,0,0.0,0.05195,0.1358383014329045,0.2968238691049085,0.01542,0.3532110091743119,0.6467889908256881,23.47599080767893,4.081299891816042,0.3310580204778157,0.2688932228181375,0.1999024865919063,0.2001462701121404,11.413191404213734,6.1363214156818,16.34980600251612,11599.752841054897,46.744679594775214,13.390753604452726,15.32363228748172,9.096195947482736,8.93409775535804,0.583130180399805,0.8023572076155938,0.6973490427098674,0.5780487804878048,0.1047503045066991,0.763681592039801,0.9311111111111112,0.8683544303797468,0.7377049180327869,0.1348314606741573,0.5079419889502762,0.7136294027565084,0.6272066458982347,0.5321821036106751,0.0964230171073094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020156389271533,0.0043287410155814,0.0067790418007083,0.0090314322287014,0.0110470261527663,0.0130137265284509,0.0154056341187385,0.0178336276681536,0.020085452612642,0.0219974819076085,0.0241702371922343,0.0260658884885069,0.0283114880493446,0.0304175462081037,0.0325827978505048,0.0350347764078502,0.0369465269436275,0.0389675063285886,0.0409183503783154,0.0429577611535977,0.0574847048505982,0.0713590454759537,0.084328248599425,0.0973636593166133,0.1098101265822784,0.1253291874226607,0.135430481141584,0.1463736497632097,0.1565653868745661,0.1662698412698412,0.1791751911273823,0.190346379351377,0.2014286801561327,0.2115294194832318,0.2208420890497618,0.2294575531761762,0.2383299507103508,0.2464520478678577,0.2539113872386739,0.2610162899240413,0.2671860731253395,0.2729928371951718,0.2782136105860113,0.2823433685923515,0.2867297428432799,0.290999495390826,0.2940963283261266,0.2973433112683751,0.3016119233205362,0.3049543556439608,0.3020934107277222,0.2989604361499059,0.2965237185251798,0.2944872811126324,0.2925829461035309,0.2897449975597853,0.2870489995273357,0.2870616647357342,0.2874502160833828,0.288963684676705,0.2905208430043636,0.2915090085674515,0.2935741721166822,0.2925483592209346,0.2952310659270017,0.2966360066143034,0.2976244216228416,0.3022175092786077,0.3065005757353711,0.3092620422368108,0.3129937346771996,0.3144146535704805,0.3170411164653607,0.3203977867504112,0.3225569434239529,0.3219217825229198,0.3209378733572282,0.3232682060390763,0.3256375838926174,0.3293278257604206,0.0,2.3556116902992126,52.34691397480788,150.02835106863054,212.037435021466,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95771,47139,448.52826012049576,5105,52.3749360453582,3996,41.24421797830241,1498,15.338672458259808,77.34687979821054,79.70772290967903,63.33382307926016,65.0819069723786,77.15398613274927,79.51420842954418,63.262243973888616,65.01179019443613,0.1928936654612698,193.5144801348514,0.0715791053715406,70.11677794247362,211.71744,148.89685374547943,221066.3353207129,155471.75423194855,501.63694,336.12901429452813,523324.7956061856,350508.4673800296,450.01894,219.9350519005507,466668.3025132869,227158.3216411836,2285.89604,1065.2839225710734,2361584.696828894,1087073.5009252003,941.04777,421.4884864320509,972527.048897892,430025.3692997364,1464.42228,618.6462947411393,1502045.191133015,624348.054594317,0.37811,100000,0,962352,10048.469787305134,0,0.0,0,0.0,43697,455.7747125956709,0,0.0,40739,422.1528437627256,1239331,0,44437,0,0,0,0,0,87,0.9084169529398252,0,0.0,0,0.0,0,0.0,0.05105,0.1350136203750231,0.2934378060724779,0.01498,0.3485274807728381,0.6514725192271619,23.85193020914596,4.101606368417673,0.3128128128128128,0.2722722722722723,0.2007007007007007,0.2142142142142142,11.503510610632675,6.216752034714124,16.066376702912347,11461.197245302046,45.50091328040222,13.19294224883354,14.020203348917944,8.887619762082581,9.40014792056816,0.5890890890890891,0.8097426470588235,0.7056,0.5935162094763092,0.1343457943925233,0.7558441558441559,0.9268867924528302,0.8685714285714285,0.751269035532995,0.1521739130434782,0.5212953185498064,0.7349397590361446,0.6422222222222222,0.5421487603305785,0.1294642857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381378946941,0.0043605240741491,0.0064365482233502,0.0083234244946492,0.0107023683567998,0.0129121606484592,0.0150576001631155,0.0172213148223764,0.0195252601664247,0.0219007249047794,0.0240319058408603,0.026203115213619,0.0286398881141893,0.0307700231779551,0.0326232790472062,0.0346406715183592,0.0368027006596319,0.0386319076319802,0.0407484407484407,0.0428815394868377,0.0569669136833315,0.0709728033472803,0.0836880622365744,0.0959873039895741,0.1080104121657937,0.1228880271346907,0.1339452263862981,0.1442300536862807,0.1542760842204066,0.1645568264576104,0.1764883033073407,0.1882961826452442,0.1981970240034756,0.2071996331397126,0.2166597104760231,0.2266311201575256,0.2356003433399846,0.2440041358538065,0.251287577992059,0.2570931324280382,0.2630763180419645,0.2685416910302888,0.2743984668890624,0.2788998298953017,0.2843346598078229,0.288757163588066,0.2916322908072701,0.2950586381713531,0.2985671055013837,0.3024548280040036,0.2992433914340621,0.2961492492203706,0.2945705935251798,0.2920129636298163,0.2901047143682332,0.2875398873230835,0.2845756853585013,0.2846617329229157,0.2849769177043763,0.2861183754069488,0.2856235997012696,0.2856551642591096,0.2873340015033826,0.2883011462468222,0.2901909972166235,0.2915874215147331,0.2919774525992142,0.2948637250582237,0.2998037979118492,0.3042444418024016,0.3085779294653015,0.3102809672469442,0.3115527325325451,0.3116282595512432,0.315198217435707,0.316727230101981,0.3191392635247765,0.3180161943319838,0.3219026548672566,0.3281371784879189,0.0,1.898500145677928,50.51307101817628,145.8234591840488,210.55249612579595,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95748,47566,452.0094414504741,5125,52.36662906797009,4059,41.73455320215566,1532,15.53035050340477,77.36211040614715,79.72364441617292,63.32787542470121,65.07545652557108,77.16251357276728,79.53062749376765,63.25183377187128,65.0051471546939,0.1995968333798714,193.01692240526336,0.0760416528299359,70.30937087718314,212.54794,149.49103280543028,221986.58979822035,156129.44333608047,501.73973,336.5687954292888,523356.1223210928,350850.5232791169,458.60039,224.32977471712184,475215.21076158254,231409.32954340675,2317.74792,1089.8561447059756,2383965.618080796,1101570.39803022,916.55099,416.0870229968335,936439.7585328151,413751.0684263205,1490.0835,643.886920666375,1511445.857876927,632030.3002844088,0.38084,100000,0,966127,10090.299536282742,0,0.0,0,0.0,43561,454.26536324518526,0,0.0,41699,431.8105861219033,1230422,0,44227,0,0,0,0,0,74,0.7728620963362158,0,0.0,0,0.0,0,0.0,0.05125,0.1345709484297867,0.2989268292682926,0.01532,0.3499442171811082,0.6500557828188918,23.584300586962826,4.156319787962326,0.3227395910322739,0.2682926829268293,0.2062084257206208,0.2027593003202759,11.327610345913374,5.982555472502473,16.467102650576834,11530.515937457176,46.49865418381546,13.22541700435379,14.993810603627216,9.30533663290116,8.974089942933304,0.5821630943582163,0.8025711662075299,0.6969465648854962,0.5770609318996416,0.1130012150668286,0.7398042414355628,0.917391304347826,0.8662952646239555,0.6933962264150944,0.1384615384615384,0.5139428168019767,0.7186009538950715,0.6330178759200841,0.5376,0.1050955414012738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020870692886741,0.0042793112539801,0.0066389199066084,0.0090634748061818,0.0113931132699252,0.0134028598199372,0.015683315318255,0.0183063791554357,0.0204496886534902,0.0225897291485331,0.0248897548969336,0.0270461829238228,0.0292695473251028,0.0313994229183841,0.0337602823849972,0.0359384208186433,0.0379736348856234,0.0399057866503418,0.0420898346136654,0.0438731719511687,0.0582254697286012,0.0722199554314051,0.0855662643021195,0.098414968919928,0.1107583253341209,0.125994246065324,0.1367431596592295,0.1472708109316611,0.1565428299729674,0.1658212780559994,0.1773582060616504,0.1890016883847785,0.1999956482478758,0.2092745949612191,0.2182368478978648,0.2280624002836376,0.2373290156886829,0.2450609783538094,0.2529411097371436,0.2595476667620956,0.2653996620292136,0.2708187134502924,0.275871453250349,0.2794759301879555,0.2836397192743874,0.2866789063173848,0.2906071678846731,0.295544447412269,0.2996091829075756,0.3024120695794374,0.3000161559588561,0.2979217957005515,0.2953688593776377,0.2920479145619858,0.290482828162999,0.2868234826600639,0.2835184278289442,0.2834675307672165,0.2843587389041934,0.2844079052506348,0.2837208435799985,0.284234278426371,0.2864782753454303,0.2874147771436185,0.289370031749063,0.2903568009521591,0.2910673411139684,0.2950043602840413,0.3006109414051652,0.3029494822717289,0.3056091974671038,0.3079013377926421,0.3119682007328737,0.3127242822966507,0.3155711256568636,0.3164542158811835,0.3151487826871055,0.3187919463087248,0.3228831725616291,0.3320625238276782,0.0,2.5124567673156384,53.15047253751474,146.34325122365135,209.376745857065,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95767,47636,453.02661668424406,5118,52.27270354088569,4063,41.91422932743012,1553,15.924065701128782,77.32840490063373,79.68930005057597,63.31625382636724,65.06474678218076,77.13714053093487,79.4993592206475,63.24435080012929,64.99541428732802,0.1912643696988567,189.94082992846015,0.0719030262379476,69.33249485274473,212.91776,149.78175463263133,222328.94420833897,156402.26240002437,503.86443,337.9466702638766,525632.295049443,352380.79950700817,459.95329,225.15008278997752,476822.2143327033,232464.10068086625,2314.17112,1086.0478740975514,2389648.876961793,1107241.3191366044,916.78858,416.4416179073712,945812.639009262,423362.0242055982,1504.47366,635.3741951613514,1544478.2440715488,639930.3688929459,0.37961,100000,0,967808,10105.861100379045,0,0.0,0,0.0,43908,457.965687554168,0,0.0,41625,431.2550252174549,1226969,0,44068,0,0,0,0,0,82,0.8562448442574164,0,0.0,0,0.0,0,0.0,0.05118,0.1348225810700455,0.3034388432981633,0.01553,0.3466015771686068,0.6533984228313932,23.68140998749917,4.118948941338743,0.3266059561900074,0.2665518090081221,0.2087127738124538,0.1981294609894167,11.08933478441532,5.936254717320818,16.501680647428323,11545.85890328933,46.31951117023021,13.168740685538634,15.015278864606303,9.365715588451508,8.769776031633754,0.5897120354417917,0.8116343490304709,0.7015825169555389,0.589622641509434,0.1068322981366459,0.7561779242174629,0.9274725274725276,0.8675675675675676,0.7058823529411765,0.1675675675675675,0.5187785187785188,0.7277070063694268,0.6374085684430512,0.5527950310559007,0.0887096774193548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584264766981,0.0044929917442544,0.0068736547130731,0.0093396207239984,0.0116477792923846,0.0136183996088657,0.0159997552618697,0.0185200310368767,0.0206403729374961,0.0227035437181403,0.024837271282866,0.0271063925909193,0.0292266556972439,0.0314250988793671,0.0333006552809452,0.0352059537960618,0.0372850828614903,0.0394599023095191,0.041586565938919,0.0435027130612287,0.0574992172007097,0.0711073460508701,0.0843101893597835,0.0967636826117575,0.1089698336266028,0.1238122417055099,0.1349176051409302,0.1458931954111061,0.1558548359535201,0.1650815435917781,0.1774025050887981,0.1893973818024451,0.1999042687437448,0.2091225230742312,0.217810993462038,0.2268322128324122,0.2359354946710563,0.2443614099851438,0.2517284048724556,0.2577998785476127,0.2651030397000798,0.2714578094848254,0.2764985142126511,0.2815667926339152,0.2858983083803227,0.2903452441113754,0.2937940196004712,0.2979677074313656,0.3022020037067278,0.3047792468265907,0.3022582513028373,0.2996823738089018,0.2968569577829724,0.2940862464472754,0.2920747996438112,0.2884285889120059,0.2841652704454209,0.2841164411644116,0.2840457637811386,0.2848156530106741,0.2849219391947412,0.2860938883968113,0.2874388594026433,0.2887731481481481,0.2909878226751836,0.2922486847902143,0.2933227570186124,0.2969802845021213,0.3014289190974515,0.3057643124139287,0.309228619088409,0.3112614029569047,0.3163676990875799,0.3172051089406461,0.3188244047619047,0.3214702450408401,0.3252449133383572,0.3298387096774193,0.336533187054306,0.3399378399378399,0.0,1.9441010868650177,53.20685438221489,141.96161218634805,215.4609656838738,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95732,47423,452.13721639577153,5034,51.38302761876906,3981,41.01032047800109,1519,15.491162829565871,77.31464774318667,79.68041282911163,63.30648041847581,65.05598148912243,77.12087167750823,79.49037051817514,63.23293069564501,64.98624633196958,0.1937760656784348,190.0423109364908,0.0735497228307977,69.73515715284861,212.55322,149.44073935606102,222029.43634312457,156103.22499901915,501.59605,336.4460873727771,523408.0035933648,350895.194263963,452.48812,221.31102573483724,469240.99569631886,228501.2288021132,2304.55468,1080.149209413168,2375561.3170099864,1096568.4300058167,932.7941,421.294194300212,958322.7969748882,424018.79653638456,1476.9852,632.9294161708025,1507675.385451051,631025.1284622817,0.38051,100000,0,966151,10092.247106505662,0,0.0,0,0.0,43569,454.5397568211257,0,0.0,41017,425.07207621276063,1231236,0,44152,0,0,0,0,0,84,0.8670037187147454,0,0.0,1,0.0104458279363222,0,0.0,0.05034,0.1322961288796615,0.3017481128327374,0.01519,0.3571968265961466,0.6428031734038534,23.59310749613668,4.125875131325823,0.3062044712383823,0.2685254961065059,0.2132629992464205,0.2120070334086913,11.305687943911652,6.128916505039914,16.26501610278577,11544.736508789149,45.6612203999709,13.14465820956763,13.854119651746757,9.468002370187913,9.194440168468605,0.583019341873901,0.8194574368568756,0.7054963084495488,0.5653710247349824,0.1244075829383886,0.7523645743766122,0.9256756756756755,0.8816568047337278,0.7035175879396985,0.1428571428571428,0.5131298793470547,0.744,0.637911464245176,0.5230769230769231,0.1193353474320241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0044712108769048,0.0066180799447816,0.0089625038105883,0.0110788951625209,0.0130812176535311,0.0154354679099376,0.0174082620326315,0.0194733506429783,0.0216412104336431,0.0239201090912819,0.0258340093027076,0.027793492907619,0.029850592478104,0.0319986787642316,0.0340845652848134,0.0362642255796373,0.0385078343882951,0.0403339849436426,0.0423811805888358,0.0564337621115937,0.0708932571332872,0.0840650867088408,0.0972983205207752,0.1096793242715989,0.1249682633716993,0.136041352665209,0.1466022105330408,0.1560392102365655,0.1654951116643951,0.1768740496295577,0.1883688926934454,0.1995641989431824,0.2085415570752235,0.2177542064524665,0.2258752206788581,0.2353112242044628,0.2435715252402219,0.2516434274276096,0.2585468367803948,0.2645558466853711,0.2709463496936109,0.2764820213799805,0.2807933194154488,0.2849711966165139,0.2905428726394162,0.294514208525115,0.2972124416875341,0.3012682119633369,0.304486377582597,0.3031838402300859,0.3007030456155768,0.2987288433176487,0.2956435272585782,0.2940652951036089,0.2911189238764903,0.287384839051216,0.2882594941895723,0.2883569467887406,0.2886614453542185,0.2886443875740198,0.2893063185460846,0.2909253781092454,0.2923295707048262,0.2934920293492029,0.2947662680540456,0.2955261142160061,0.2996129596104626,0.3025674923462287,0.3065037445802128,0.3117529880478087,0.3162203559921829,0.3178557946394866,0.3211950737418276,0.3226563967687394,0.3291617473435655,0.3288274605103281,0.3334010564811052,0.3379895918926321,0.3422767343809889,0.0,2.268717450960719,50.54845330207476,149.8863762335164,205.1871821131012,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95804,47806,454.344286251096,5159,52.42996117072356,4108,42.1903052064632,1539,15.57346248590873,77.3504688262772,79.6825522933852,63.33176974345843,65.05990322382229,77.14872856670782,79.48785878702397,63.25490366136785,64.98880143110976,0.2017402595693767,194.69350636123292,0.0768660820905822,71.10179271252548,209.17908,147.35266511569813,218340.65383491296,153806.38085643412,501.91106,336.7655075048881,523234.2282159409,350855.6714801972,466.81391,229.3357832856207,483358.9202956035,236310.7552304224,2339.56124,1098.811516778865,2402964.1768610915,1107872.4028003686,955.025,436.5961565303664,978099.8079412133,436964.9456498336,1498.0752,643.0504657613114,1517638.2823264163,632465.9837498694,0.38242,100000,0,950814,9924.575174314225,0,0.0,0,0.0,43623,454.6469875996827,0,0.0,42222,436.7667320779926,1242861,0,44621,0,0,0,0,0,90,0.9394179783725104,0,0.0,3,0.031313932612417,0,0.0,0.05159,0.1349040322158883,0.2983136266718356,0.01539,0.3537919525310588,0.6462080474689412,23.30244771384576,4.131775895977029,0.3230282375851996,0.2675267770204479,0.2044790652385589,0.2049659201557935,11.305571529986468,6.0916578382428535,16.45413924892082,11650.908392836156,46.8133402123105,13.273008211156352,15.048137830712044,9.279811922992806,9.212382247449296,0.5861733203505355,0.7816196542311192,0.7309721175584024,0.5797619047619048,0.1092636579572446,0.7573149741824441,0.9144893111638956,0.903846153846154,0.7539267015706806,0.1182795698924731,0.5186693822131704,0.6991150442477876,0.6656282450674974,0.5285053929121726,0.1067073170731707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730899365844,0.0049177169625746,0.0071856287425149,0.0096217347571197,0.0116667005716378,0.0137805300360554,0.0158686451481311,0.0183808512376439,0.0204899595108584,0.0226644555002763,0.02488643704562,0.0271294347178723,0.0293497598749498,0.0314630579414612,0.0337867802518538,0.0356784906128269,0.0377835056882291,0.0396431905404003,0.0416121053397351,0.0437661364204214,0.0582736965094201,0.0726249973860856,0.0860807780176479,0.0997320724980299,0.1116344249167615,0.1278576939744009,0.1385153764581124,0.1486462045853502,0.1587191423934398,0.1682939114964579,0.1800551035343751,0.1913483474067747,0.2012320328542094,0.2104785640891104,0.2192175673296954,0.2288234186121236,0.2379767179704677,0.2457688152682751,0.2539541960463716,0.2606798451565614,0.2665100888559792,0.2726645621419385,0.2785169416356218,0.2829309766728936,0.2864847137703604,0.2903742788105922,0.293770032051282,0.2975897938656243,0.3024222797927461,0.3059457176048157,0.3035081335327969,0.3003622639430295,0.2986075878008907,0.2964424021732847,0.2938477302089366,0.2906982081924318,0.287450353656028,0.2875775174721921,0.2878588853443423,0.2883710149062121,0.2880786042515037,0.2907748350891011,0.2922110447885795,0.2921606203761476,0.2926975450709628,0.2946491159747644,0.2971519166525111,0.3025950098366798,0.307088255733148,0.3103801457553673,0.3156779661016949,0.3200504016380532,0.3227111470716375,0.3253075307530753,0.3275109170305676,0.3334885887284583,0.3375,0.3395663417545255,0.3382590005373455,0.3383742911153119,0.0,2.7170541742098093,49.76643751083091,154.29954733192085,216.7853873094376,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95709,47199,449.8323041720215,5119,52.04317253340856,4020,41.34407422499452,1556,15.818784022401235,77.30949638025908,79.66983221208088,63.31695901961641,65.05946595387452,77.11480807524971,79.48122490176263,63.242496647497696,64.99056965945508,0.1946883050093646,188.60731031824685,0.0744623721187167,68.89629441944578,211.92094,149.0786453685316,221422.1651046401,155762.41039874163,505.26778,338.6439837853438,527286.7650900125,353192.5877246067,455.94734,223.4299655978625,472641.56975833,230515.42821600195,2302.85924,1087.588011145492,2367797.302239079,1098040.8228541643,932.71211,427.0837545749868,956303.0436009152,428005.4379159597,1518.42354,649.6988442212456,1544197.348211767,641438.0519238357,0.37821,100000,0,963277,10064.643868392732,0,0.0,0,0.0,43978,458.8074266787867,0,0.0,41294,427.6400338526157,1230717,0,44215,0,0,0,0,0,91,0.950798775454764,0,0.0,1,0.0104483381918105,0,0.0,0.05119,0.1353480870415906,0.3039656182848212,0.01556,0.3513972809667673,0.6486027190332326,23.589461243521782,4.178113432908514,0.3141791044776119,0.2666666666666666,0.2072139303482587,0.2119402985074626,11.209762059689591,5.960242665015425,16.678992861793276,11433.803280876926,46.140039161844456,13.05776353072403,14.38512414326533,9.356826475061492,9.340325012793608,0.5778606965174129,0.7798507462686567,0.7070467141726049,0.602641056422569,0.107981220657277,0.743073047858942,0.9058823529411764,0.8492063492063492,0.7355769230769231,0.1444444444444444,0.5083068221986567,0.6970633693972179,0.6463276836158192,0.5584,0.0982142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267761112405,0.004287973400373,0.0064929794659524,0.0090497277971885,0.0112133380775682,0.013354097326127,0.0153901034500331,0.0174752722855655,0.0198990229344671,0.0218296814074157,0.0238112321774515,0.0260080293244894,0.0283293401474565,0.0304834091985746,0.0326103771541722,0.0346541302887844,0.0365456069717136,0.0385185799773908,0.0403791587415422,0.0424184341014208,0.0567152956902223,0.0702652347756913,0.0830544920543347,0.0962341336193751,0.1084090861156222,0.1235668655074671,0.1347772106497448,0.1456936016182263,0.1553582684315673,0.1641376499983914,0.1756054990518876,0.1861588099001754,0.1967482506067102,0.2052749658002736,0.214428063376017,0.2239773860991021,0.2327927082635212,0.2410782679223178,0.25,0.256834045869772,0.2635070212199442,0.2687785875554204,0.2739949808229556,0.2780302939448089,0.2829613248927716,0.2870089516904638,0.2910719423560465,0.2947965845030095,0.2978483619829786,0.3011198563203212,0.2994597653145082,0.2964094518530751,0.2940604523356584,0.2910527532212399,0.288261515601783,0.2852788923944007,0.2817367878931939,0.2819919219781302,0.282616496642231,0.2831550181292085,0.2835546896952213,0.2855560828982756,0.2867160679896173,0.2883752093802345,0.290571572847284,0.2923120906539141,0.2941092690708141,0.2975817566720962,0.3029974846282839,0.3070013001851779,0.3109182935647144,0.3149212038159489,0.3190145688738823,0.3243795399515738,0.3299335641433517,0.3323134855260061,0.3367440439828955,0.3491511556555532,0.349480021893815,0.3555386372287781,0.0,2.5152169734288385,51.50133848154088,149.61277558861875,206.9869125020034,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95741,47750,455.09238466278816,5203,53.20604547685944,4083,42.12406388067808,1573,16.053728287776398,77.40440741590693,79.75989298359939,63.3594678928421,65.09859603766633,77.20744165453088,79.56627376015109,63.28518698136314,65.02794903991708,0.1969657613760489,193.6192234482945,0.0742809114789579,70.64699774925032,211.67344,148.89358117715804,221089.64811313857,155517.05244060332,507.06312,339.7222513039892,529103.5188686143,354318.5587198684,459.52584,225.04137156020997,476632.76965981134,232501.1561516143,2341.67824,1091.1343874669876,2417849.949342497,1111676.154904365,967.76397,438.402701661864,994881.7121191547,441972.0199933828,1543.8699,656.1847307354013,1578014.3721080832,656204.493007879,0.38079,100000,0,962152,10049.529459688118,0,0.0,0,0.0,44094,460.0119071244295,0,0.0,41544,430.5783311225076,1234789,0,44288,0,0,0,0,0,88,0.9191464471856362,0,0.0,0,0.0,0,0.0,0.05203,0.1366369915176344,0.3023255813953488,0.01573,0.3412322274881517,0.6587677725118484,23.89259421744714,4.179924061542758,0.304677932892481,0.2578986039676708,0.2167523879500367,0.2206710751898114,10.95072696643284,5.65772415471328,16.732191510904805,11560.78810136518,46.41644140393822,12.818687275844002,13.980432051965884,9.731139919320276,9.886182156808058,0.5655155522899828,0.7977207977207977,0.6872990353697749,0.5751412429378531,0.1165371809100998,0.7469458987783595,0.937799043062201,0.868421052631579,0.7297297297297297,0.1592039800995024,0.494722505958461,0.705511811023622,0.6186252771618626,0.5342857142857143,0.1042857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793372280215,0.0045806941981251,0.0066447541948181,0.0087239120499669,0.0108791800961841,0.0132532573289902,0.0152764331210191,0.017632113302654,0.0197502860879516,0.0219698132514709,0.0239312910598436,0.0262128847515728,0.0285593856339505,0.030456591374924,0.0325020378261811,0.0346089437449606,0.036648889349143,0.0385680646466322,0.0408214166943797,0.0425476512863243,0.0571106401194416,0.0711706903588359,0.0844941887299123,0.0976007233577256,0.1101074090080214,0.1260322931977033,0.1370252493104179,0.1485542733040923,0.1581483301638853,0.1667149245568317,0.1785237356767468,0.1902721419682952,0.2005938526462335,0.2094996501049685,0.2187152773957909,0.2275208432521009,0.2358788419702125,0.2429144790835197,0.2506690252642082,0.2584823829631409,0.2650470183221275,0.2702828867519372,0.2758946275139269,0.2805001851210453,0.2853060829135994,0.2900630197904254,0.294448120450942,0.2976847446875991,0.3017321493107543,0.3048055942585241,0.302764593891615,0.2998355488556941,0.2976090250883987,0.2946483818514095,0.2915656237061572,0.2882249828519168,0.2853134064825324,0.2863136928376679,0.287359054476294,0.2878814762242725,0.2893230671712746,0.2899255641762829,0.2902707998915966,0.2914453359411464,0.2922727815597755,0.2936771184244623,0.2958152143220195,0.2993296960249415,0.302569280044562,0.3054757312128489,0.3110850545684134,0.3153376171916148,0.3190680869619385,0.3247837532907108,0.329598073717355,0.3328293987672985,0.3322765700483092,0.3336655371736097,0.338343809784094,0.335408560311284,0.0,1.9880254127013124,50.01268868803813,154.37471431855263,213.3946861961221,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95753,47653,453.6045868014579,5245,53.61711904587846,4149,42.78717115912817,1646,16.876755819661003,77.33232137485312,79.69861304662095,63.31916690730778,65.0715148430617,77.12894203351273,79.4956648727908,63.243515857458505,64.99778623622433,0.2033793413403941,202.9481738301513,0.0756510498492772,73.7286068373777,209.72622,147.55989625878573,219028.35420300148,154104.72388205669,500.25505,335.83921634322286,521894.26963123865,350185.9851317691,460.52078,225.7104826165106,477198.5942999175,232820.1342637475,2371.91,1111.583951842311,2449196.1609557923,1132969.9871986378,980.1943,441.591824398932,1011827.0759140706,449335.586769012,1607.40122,673.7684258744956,1650149.5514500851,680377.5737696282,0.38066,100000,0,953301,9955.834281954612,0,0.0,0,0.0,43556,454.2938602445876,0,0.0,41696,431.735820287615,1244894,0,44605,0,0,0,0,0,86,0.8981441834720583,0,0.0,0,0.0,0,0.0,0.05245,0.1377870015236694,0.3138226882745472,0.01646,0.3455210237659963,0.6544789762340036,23.84957996924752,4.078153158550859,0.3106772716317185,0.2692214991564232,0.2034225114485418,0.2166787177633164,11.088478266369496,5.984633506728213,17.463716299237248,11591.112382623178,47.36879812530812,13.737224289684695,14.523188733793493,9.216201738804216,9.892183363025715,0.5712219812002892,0.8119964189794091,0.6943366951124903,0.5509478672985783,0.114571746384872,0.7428330522765598,0.908315565031983,0.863905325443787,0.7252747252747253,0.1573604060913705,0.5025312183597705,0.7422839506172839,0.6340694006309149,0.5030211480362538,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023409947707649,0.0046354055726298,0.0070871578263341,0.0092893731197658,0.0116077968584683,0.0140789111765365,0.0164089907807783,0.0186423546947901,0.020684014109708,0.0227784602784602,0.0248088081520513,0.0271033314511575,0.0289568937150378,0.031104199066874,0.0330877801163798,0.0352650563806807,0.0373380825662424,0.0394132110510535,0.0413605329065646,0.043159023922847,0.0577894692889055,0.0720862105042896,0.0851809124278972,0.0980874575487072,0.1108428399721654,0.126442373795598,0.1370065039097728,0.1475722161909019,0.1578475240546341,0.1672259807653132,0.1791698974756612,0.1907147339493216,0.2016010615734345,0.2112417300016403,0.2196439573981163,0.2281494275781128,0.23639467166477,0.2450612006120061,0.2519032869283048,0.2592181201905459,0.2648246497043748,0.2704198004514989,0.2758567659967113,0.280947874111967,0.2861166757724762,0.2897547395262321,0.2932569656345355,0.2978093471244504,0.3017051776334515,0.304267601549938,0.3023090060650072,0.2998158278127491,0.2984459601997046,0.2954876483567195,0.293609953583557,0.290755429217673,0.2876645153125791,0.2872213212770488,0.2876917576149694,0.2886438141391106,0.2890623537560136,0.2894544592967007,0.2902274201309706,0.2896129709449047,0.2924152176001537,0.2919244969060371,0.2916832132523969,0.2957397414983059,0.2990072706935123,0.3032273412100547,0.3075072621641249,0.3088696391560823,0.3123698984419353,0.3122622851057355,0.3165454206304794,0.3225995316159251,0.3271716260895702,0.3273052464228935,0.3317139001349528,0.3307984790874524,0.0,2.118838308584538,51.62008519969391,153.64086920103853,220.24734372052671,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95729,47695,454.5853398656624,5103,52.13676106508999,4103,42.31737509009809,1589,16.212433014029187,77.41699606751023,79.77008078009256,63.36600846061516,65.10037839735824,77.21021088277291,79.56657661945982,63.28679217443295,65.02499941113497,0.2067851847373134,203.50416063273255,0.0792162861822163,75.37898622327077,210.88276,148.4097358697501,220291.40594804083,155031.11478209333,508.55277,341.0828481538651,530681.9772482738,355741.0505045247,455.8946,223.196087467684,472879.6811833405,230629.8704494236,2337.44992,1100.3523673441762,2411274.033991789,1119048.8859298872,947.65385,434.0081109430821,971652.0385672052,435164.5286423474,1546.83432,671.0254583239375,1579203.0419204212,670300.6870979464,0.38229,100000,0,958558,10013.245724910948,0,0.0,0,0.0,44154,460.6545560906308,0,0.0,41381,428.9400286224655,1237021,0,44375,0,0,0,0,0,90,0.940153976329012,0,0.0,0,0.0,0,0.0,0.05103,0.1334850506160244,0.3113854595336077,0.01589,0.3496451251400821,0.6503548748599178,23.49229555840049,4.188536260816894,0.3114794053131854,0.26322203265903,0.2135023153789909,0.2117962466487935,11.336478030433115,6.053519035222925,17.08900365771574,11525.751142675532,46.75193813710073,13.090025813256874,14.390766361111124,9.58699154683782,9.684154415894907,0.5756763343894711,0.8,0.7167449139280125,0.5662100456621004,0.098964326812428,0.7429752066115702,0.9177777777777778,0.9050445103857568,0.7401960784313726,0.136986301369863,0.5057034220532319,0.7158730158730159,0.6493092454835282,0.5133928571428571,0.0861538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0044778085078361,0.0065826841934436,0.0087226718386661,0.0109097933951521,0.0132738858690119,0.0155542871121621,0.0176668707899571,0.0197845770229116,0.0222310887402042,0.0242962689702521,0.0262736565540457,0.0282186767548007,0.0302571549211645,0.032548254980244,0.0347525059419241,0.0367958420905504,0.0386346664454032,0.0408036001953916,0.0427123376149847,0.0570417240947249,0.0708456274719065,0.084066850614266,0.0967931930289548,0.1096121594397038,0.1249153833135894,0.1361345964123182,0.1472732885534537,0.1570489876595972,0.1657532630495168,0.1773156574087037,0.1891251420223989,0.2000086965029187,0.2088750027311062,0.217011504356712,0.2275503429962381,0.2351892102769882,0.2435658252601766,0.2509807033854108,0.2575292932991578,0.2636141904310534,0.2694599584044119,0.2752490928646566,0.2800828137528273,0.2853140237246197,0.2883027042995532,0.2928447381901323,0.2964736668275704,0.3001008090573061,0.3034251086813331,0.3013345159859694,0.2984375858092152,0.2960941785397825,0.2935468499559586,0.2912814424575202,0.2889829731299483,0.2849007792535571,0.2848693776855588,0.2858453384071758,0.2859626095285395,0.2871526679198228,0.2883223845475046,0.288484747596654,0.2902639569158485,0.292560169835174,0.2942088934850052,0.295670091453088,0.2988495024875622,0.3039117003922113,0.308054454862882,0.3120793323162523,0.3181484587963933,0.3237758331781791,0.3285617418820161,0.3313609467455621,0.3375884878728095,0.3404096277470474,0.3424116834418788,0.3352059925093633,0.33271719038817,0.0,2.0727415514651453,52.85682121123527,148.9754400775498,212.7037970630792,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95695,47699,454.7573018444015,5241,53.58691676681123,4109,42.353309995297565,1553,15.82109828099692,77.3508434030137,79.73994639409743,63.31502979323547,65.08219900800562,77.16200824704293,79.55613882805316,63.2444825002277,65.01616577161721,0.1888351559707644,183.8075660442655,0.0705472930077704,66.03323638840664,211.63032,148.90459061866434,221150.86472647477,155603.31325426025,501.70246,335.734409955307,523681.7388578296,350250.75493961305,458.95181,224.6237943725904,476045.9689638957,232043.28422677703,2341.3126,1090.56752548773,2411942.1913370606,1105229.9975998153,973.87462,439.280199160273,997353.4144939652,439262.4506951784,1512.46542,635.3716729076755,1541365.4004911436,629932.5336119379,0.38109,100000,0,961956,10052.31203302158,0,0.0,0,0.0,43501,453.9840117038508,0,0.0,41532,430.4091122838184,1237364,0,44360,0,0,0,0,0,114,1.1912848111186582,0,0.0,0,0.0,0,0.0,0.05241,0.1375265685271195,0.2963174966609426,0.01553,0.339937626123647,0.6600623738763529,23.989649714554982,4.087925469413418,0.3115113166220492,0.2708688245315162,0.2129471890971039,0.2046726697493307,11.334409902059834,6.097394400907701,16.435611348514275,11595.703239878823,46.64134640492986,13.548577933933547,14.32126219413939,9.623009053154584,9.148497223702345,0.5935750790946702,0.8283917340521114,0.703125,0.576,0.1343638525564803,0.764102564102564,0.960698689956332,0.8459214501510574,0.7525773195876289,0.1497326203208556,0.5256890098673018,0.7358778625954199,0.6533192834562698,0.5256975036710719,0.1299694189602446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691127161481,0.0045126811410491,0.006679592727568,0.0087710382957964,0.0110989033347575,0.0133350991218597,0.0152913933631884,0.0174643054108707,0.01963571655025,0.0218758321214231,0.0242231565993231,0.0260779359503707,0.0280800641830038,0.0301978157840511,0.0323229821356698,0.0345066418566186,0.0364257964257964,0.0385078468820061,0.0405983128244068,0.0427780731104787,0.0575713897766915,0.0713560262598552,0.0847066232812008,0.0975014465309557,0.1100362884509894,0.1253372266480464,0.1361412149324389,0.1464032799105478,0.1566080896186078,0.1657956581926663,0.1780278532315785,0.1901854437985125,0.2013405292479108,0.2104174645729605,0.2194493675763146,0.2285733290467057,0.2370342256256837,0.2457198815862045,0.2531878413516674,0.2601012994751678,0.2651242462471499,0.2711642224276969,0.2761352199396128,0.2811810683801669,0.2859624612768025,0.2910866940947501,0.2953786922336529,0.2979840349806792,0.3023544470734262,0.3055482305785559,0.3032443852354231,0.3011197362093838,0.299073956972022,0.2967158070698774,0.2953180029003522,0.2929135779872487,0.2886450005519025,0.2889121270546714,0.2900197292332812,0.2899845478926522,0.2903953327990158,0.291745171926519,0.2924295006338189,0.2930885385485265,0.2936899568523684,0.2950980645494716,0.2954296160877513,0.299934796783308,0.3053331947187857,0.3093073170731707,0.3118096856414613,0.3145861672072826,0.3183030453389567,0.3216140932018369,0.3286179618427175,0.3318412062669337,0.3336358136721113,0.336762960031658,0.3411290322580645,0.3493150684931507,0.0,2.188688952848524,50.80113205502671,152.20638508211866,215.187819616396,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95737,47364,452.0195953497603,5181,53.16648735598567,4061,41.97958991821344,1509,15.46946321693807,77.26691653433518,79.62589861305669,63.2951211478972,65.03882039857946,77.07472457149217,79.4343076372018,63.22311425256895,64.96884274635406,0.1921919628430117,191.5909758548935,0.0720068953282506,69.97765222540409,211.43782,148.79350996272703,220852.7737447382,155419.02290935273,499.47121,335.53982066312943,521291.09957487695,350060.1341833663,460.74159,225.70566656938783,478469.1394131841,233637.44978967664,2304.53492,1083.498104731866,2383958.093527058,1108642.700336282,931.96003,421.3449598182653,963997.3573435558,430687.8433195028,1466.22478,622.8733054616707,1505151.508821041,628913.2028429175,0.37876,100000,0,961081,10038.762442942643,0,0.0,0,0.0,43442,453.3148103658983,0,0.0,41792,433.7194606056175,1231961,0,44285,0,0,0,0,0,84,0.8774037206095867,0,0.0,0,0.0,0,0.0,0.05181,0.1367884676312176,0.2912565141864505,0.01509,0.352377441946185,0.647622558053815,23.525835222474345,4.064989657845719,0.3156857916769268,0.2802265451859148,0.2063531149963063,0.197734548140852,11.153365340163138,6.046902544159521,16.30047964190689,11446.757016529114,46.83228729088121,13.963477767273766,14.631366895075576,9.368731823810592,8.868710804721267,0.5941886234917508,0.8075571177504394,0.6926677067082684,0.6145584725536993,0.1133250311332503,0.7554076539101497,0.917864476386037,0.8324022346368715,0.7210526315789474,0.155688622754491,0.5264078349073102,0.7250384024577573,0.6385281385281385,0.5833333333333334,0.1022012578616352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0044003285037869,0.0066059179283191,0.008705722209242,0.0111059129833411,0.0131856271573009,0.0155053774402365,0.017629464787007,0.0200157427189924,0.0222629380936783,0.0241304726661404,0.0261385569381134,0.0279291693231598,0.0298286090969017,0.0320647071567848,0.0339562961278452,0.035840400965133,0.0378993017730606,0.0399983368674899,0.0419258379437168,0.0563740589531277,0.0699482949906847,0.0832231526369913,0.0957957199671737,0.1083037061262382,0.1242843991068877,0.1358584303775968,0.1459806594530118,0.1549812341613113,0.1636236784200075,0.1753393055420803,0.1864612450974019,0.1973737219760238,0.2064385436627429,0.2155771752184308,0.2249597691582043,0.2335830072666294,0.2423962510701572,0.2503605782880765,0.2576530319874388,0.2632273142738138,0.2688585970865266,0.2741305428632307,0.2788013185495954,0.2827914662001263,0.2874030792746816,0.290759270158917,0.2941318737270876,0.2976128764708932,0.3008248294823666,0.2983235246476972,0.2958645994261752,0.2933933891532412,0.2913912074876676,0.2895422016574174,0.2861919808571341,0.2838783378552049,0.2840550144774941,0.2839535759526173,0.2854691689008043,0.2869778685606131,0.2882418060332898,0.2903719866563162,0.2916815742397137,0.2922040423484119,0.2932912844036697,0.2941428082582411,0.2971977329974811,0.3021326177529835,0.3068031836179658,0.3126799177518848,0.3162971647836282,0.3195396515942393,0.3244596131968145,0.328837688489276,0.3315684198140958,0.3315126687907753,0.3309957924263674,0.3336968375136314,0.3371603520857252,0.0,1.735694403356754,52.961590128273656,156.30325433017978,204.6687051732241,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95689,47311,451.713363082486,5116,52.116753231823935,3995,41.03919990803541,1485,15.017400119135951,77.288290147924,79.65890550516419,63.294707477804174,65.04459610701174,77.09729179870556,79.47468449170132,63.221877546805096,64.97735939893022,0.1909983492184466,184.22101346286013,0.0728299309990774,67.23670808152349,210.60952,148.2651836612385,220097.9422922175,154944.8564215725,500.87351,335.5152405472565,522740.6389449153,349933.0875654011,450.58556,220.45170877161485,466990.8035406369,227267.46688562463,2289.45792,1071.359518170581,2352470.566104777,1079571.110368081,935.03952,416.9770275876194,959815.6214402908,418484.0851025916,1448.4698,622.5793119591381,1467680.0050162503,611459.778347015,0.37924,100000,0,957316,10004.451922373522,0,0.0,0,0.0,43647,455.4023973497477,0,0.0,40812,422.5668572145179,1236185,0,44362,0,0,0,0,0,71,0.7419870622537597,0,0.0,1,0.010450522003574,0,0.0,0.05116,0.13490138171079,0.2902658326817826,0.01485,0.3387846125255528,0.6612153874744471,23.865723185954632,4.265919125097196,0.3188986232790988,0.2700876095118898,0.2030037546933667,0.2080100125156445,11.448535819524244,6.074913779567549,15.875937474462502,11445.323828169814,45.36168849219848,13.151374745378543,14.218248036945209,8.957766067199811,9.034299642674926,0.5734668335419274,0.7970342910101946,0.6726844583987441,0.5856966707768188,0.1191335740072202,0.75,0.9202733485193622,0.8693009118541033,0.772972972972973,0.1176470588235294,0.5029772329246935,0.7125,0.6042328042328042,0.5303514376996805,0.1195652173913043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020154143752721,0.0042071755152522,0.0063725291228639,0.0086856701680245,0.01065820519079,0.0127686871875286,0.0150690238779796,0.0172918899607002,0.0194931973136799,0.0214910709717034,0.0235308586303728,0.0253946747141302,0.0276469741522896,0.0296286379271281,0.0316861094779837,0.0336802290131558,0.0357416495827379,0.0378883792366285,0.0395352707453558,0.0417522173700063,0.057100780213697,0.0706664572535469,0.0839342128740409,0.0961155954999421,0.1079217954943732,0.1230583526571582,0.1343237617874437,0.1452484204021182,0.1547485376364783,0.1647391084909206,0.1764356969533567,0.1877126449236103,0.1984663812915945,0.2076124567474048,0.2167184367633776,0.2255594882776526,0.2344410403202361,0.241332656857771,0.2488767048492225,0.2564561874906702,0.2627391858981793,0.2686806874399193,0.2746444626315102,0.2801820408751411,0.2839319838845138,0.289053528431191,0.2927661710270406,0.2955759205679544,0.2987489942640608,0.3016244366020328,0.2996887924879087,0.2972596889078709,0.2954782805046713,0.2926797499131643,0.2905313909019211,0.2872943411256472,0.2845025399186593,0.2843627539392349,0.2837969366323447,0.2840600913502712,0.284676316922904,0.2861509337224665,0.2872527288695579,0.2885898576512455,0.2898253316789157,0.2903517380300604,0.290990787317018,0.2948465836376689,0.3007322175732217,0.3030291078330835,0.3065964975954995,0.3094255791812123,0.313968015992004,0.3183534743202417,0.3236625704518155,0.3201070514312311,0.3251386598710838,0.3287073750991277,0.3283582089552239,0.3266666666666666,0.0,2.73425933509693,48.94560617670835,143.79777944160602,214.41230941456232,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95837,47502,451.6940221417616,5140,52.443210868453725,4038,41.61232091989524,1524,15.568100003130317,77.36488025655099,79.6798886986253,63.35773544642036,65.07127501941696,77.16775910163007,79.48403151902404,63.282830404773726,64.99888237185976,0.1971211549209215,195.85717960126203,0.0749050416466303,72.39264755719432,211.72822,148.90828643735347,220925.1124304809,155376.38535988546,501.52263,337.3521714836009,522807.91343635553,351506.16305143206,460.6584,226.0262738329869,477705.0199818441,233534.3531330882,2317.5942,1092.20850075693,2390843.160783414,1112549.3162403663,935.97478,426.1555045800143,966042.2905558395,434077.3131254258,1485.6417,640.6361539812732,1519966.5473668834,643287.036361598,0.3797,100000,0,962401,10042.05056502186,0,0.0,0,0.0,43681,455.2417124910003,0,0.0,41703,432.0982501539072,1235663,0,44363,0,0,0,0,0,76,0.7930131368886756,0,0.0,1,0.0104343833801141,0,0.0,0.0514,0.1353700289702396,0.2964980544747082,0.01524,0.3562768140272337,0.6437231859727662,23.616541120332965,4.138052518745373,0.3058444774640911,0.279098563645369,0.2038137691926696,0.2112431896978702,10.908401374616908,5.670069378605497,16.466650607691506,11504.082751860182,46.302299522015566,13.853942388002377,13.98421107104602,9.07237512693282,9.391770936034352,0.5760277365032194,0.8127772848269743,0.6866396761133603,0.5625759416767923,0.1160609613130129,0.7558609539207761,0.9465346534653464,0.8249258160237388,0.714975845410628,0.1648936170212765,0.4966083541592288,0.7041800643086816,0.6347438752783965,0.5113636363636364,0.1022556390977443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026131874810088,0.0049272071049109,0.0073260816624726,0.0094868565392272,0.0116838348196581,0.0138068667779904,0.0157903321168627,0.0179369908324315,0.0203119888779849,0.0224167050514355,0.0246074693559627,0.0267848896277823,0.0287470322825986,0.0308463446515505,0.0329131147372001,0.0350886248438613,0.0372979178949328,0.039268507485883,0.0411280358014308,0.0432281154414365,0.0580744078350386,0.0727799147085876,0.0858789021579719,0.0989394098498372,0.1109496277105515,0.1260585837680302,0.1365552895311142,0.1467145757810922,0.1564343549643158,0.1655795122264708,0.1770667469983216,0.1887398246543355,0.1988070922602233,0.2076976005067659,0.2159058440844853,0.225940219614955,0.2347921980996513,0.2423531261228889,0.2502094703231504,0.2571304457171599,0.2639163116145346,0.2693443522312101,0.2751899063168216,0.2794609976565115,0.2839357868297477,0.2876936517897793,0.2912137341629807,0.2950282557622706,0.2975138264330387,0.3011528136021477,0.2985491671144546,0.2953634016370928,0.2948492479986493,0.2918170010102467,0.2903149173731644,0.2878296518387077,0.2857708010254138,0.2852593042536076,0.286510228845858,0.287704010571051,0.2885669244050747,0.2896138086660464,0.2898243996479611,0.2905986725960356,0.29095395524891,0.2911339777569899,0.2903024810241305,0.2947566129284708,0.2971376646978646,0.300265336026296,0.3026675163874727,0.3064910230532243,0.3111896943672644,0.3140306706340123,0.3140620579081392,0.3187293339631554,0.3257517936192947,0.3277259829752736,0.3290516534572287,0.3279816513761467,0.0,1.9987928569646949,54.18388063571405,141.8949208419711,210.68625077461616,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95636,47033,448.8686268769083,5106,52.2083734158685,3970,40.91555481199549,1477,15.11982935296332,77.2563444549925,79.66685525150365,63.27473565930678,65.05577222616995,77.06965284470097,79.48111604702538,63.20498550838165,64.98826242185177,0.1866916102915325,185.73920447826708,0.069750150925131,67.50980431817766,211.15424,148.61050045376473,220789.49349617297,155391.7985421439,501.07165,337.0008532472538,523342.4128989084,351784.843832086,450.83237,221.4339130774009,467042.578108662,228269.56838389847,2268.47916,1068.0640848141156,2341869.839809277,1086678.201528833,948.47823,429.1988672027429,976684.9094483248,433710.1271516403,1436.55472,610.3092176692975,1472477.686226944,613355.5706047749,0.37734,100000,0,959792,10035.886068007863,0,0.0,0,0.0,43657,455.8743569367184,0,0.0,40971,424.0348822619098,1231840,0,44259,0,0,0,0,0,80,0.8365050817683718,0,0.0,1,0.0104563135221046,0,0.0,0.05106,0.1353156304658928,0.2892675283979631,0.01477,0.350459403712732,0.6495405962872679,23.799222758935773,4.070639697666104,0.3143576826196473,0.2770780856423174,0.2007556675062972,0.207808564231738,11.398781955998691,6.218387020238276,15.84749104854196,11458.342618187671,45.730735832693824,13.596588223429732,14.201798637434772,8.830529904500725,9.101819067328584,0.5861460957178841,0.8163636363636364,0.6794871794871795,0.5872020075282308,0.1369696969696969,0.7720033528918693,0.9083333333333332,0.8660968660968661,0.8,0.1686046511627907,0.5063017644940583,0.7451612903225806,0.6064659977703456,0.5205930807248764,0.1286370597243491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0047130129835906,0.0070936380519388,0.0090518423699369,0.0111811984942517,0.0136507645446858,0.0155867471845927,0.0175323879194082,0.0196694147249555,0.0217181961603868,0.0236824823510096,0.0257635548978501,0.0277752040931879,0.029806274679616,0.0317642319253773,0.0337220491913537,0.0358149852800928,0.0379777078334216,0.0402796999053099,0.042159940754957,0.0564334085778781,0.071015525152423,0.0848537655629973,0.0973106678595863,0.1094709519488467,0.1250912630810416,0.1359106875656631,0.1466266291847687,0.1568451426739339,0.1663072053221739,0.1774642117971714,0.1887362696882379,0.1990176539135927,0.2084785133565621,0.2172494018281455,0.2266441746387588,0.2349586222321628,0.2426079509600649,0.2502641955387884,0.2571428571428571,0.2633763463299827,0.2691315764794148,0.2736028086156182,0.2775177611367127,0.281894631795446,0.2862292451083266,0.290189984460374,0.2933239903172379,0.2970670608370935,0.300587575097379,0.2978058116340503,0.2953919082791313,0.2935854914967186,0.2913523765400819,0.2888180721635668,0.2864558536697741,0.2838952142336113,0.2840539207627815,0.2841076632950454,0.2837266769329943,0.2845838658747462,0.2861019769422764,0.2869395629744579,0.2884834154937432,0.2896118529884203,0.290407188116755,0.2920872309573228,0.2970145045581279,0.3007102569458951,0.3047379190933417,0.3082133020273626,0.3140600315955766,0.3197547087166009,0.3221218961625282,0.3267907915252683,0.32619574071919,0.3288241415192507,0.338728780102645,0.332089552238806,0.3276320790573926,0.0,2.313494185102382,52.041618807980896,147.9656997400239,202.00999058527876,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95694,47772,455.68165193220057,5106,52.21852989738124,4029,41.53865446109474,1487,15.183815077225322,77.32722884548278,79.7031520722716,63.32110870231941,65.07564355178155,77.14602481185817,79.52586032498499,63.254301901973626,65.0127242043414,0.1812040336246099,177.2917472866169,0.0668068003457875,62.91934744015748,211.6158,149.0678157188923,221137.7724831233,155775.33436585302,507.04566,339.9079932632369,529272.3786235292,354616.2036867326,464.98257,227.6177488237226,482428.7729638222,235229.99710567843,2290.15892,1066.3949775501592,2361212.1554120425,1082773.6142252372,917.17129,414.2692106233629,943445.9109244047,417995.1265440573,1443.4942,597.1904806508969,1475127.8032060526,594589.3839321757,0.38199,100000,0,961890,10051.716931051058,0,0.0,0,0.0,44056,459.7780425105022,0,0.0,42121,436.6940456036951,1229580,0,44133,0,0,0,0,0,88,0.9091479089598092,0,0.0,0,0.0,0,0.0,0.05106,0.1336684206392837,0.2912260086173129,0.01487,0.3638909634055265,0.6361090365944735,23.34485940757516,4.140156994934631,0.3189377016629436,0.2670637875403326,0.2144452717795979,0.1995532390171258,11.42349255139218,6.204528754584757,15.667417242623609,11592.270121892889,45.94586376150519,13.193797417219216,14.60673241254629,9.428610187014932,8.716723744724746,0.5879870935716058,0.8187732342007435,0.7089494163424125,0.5729166666666666,0.1019900497512437,0.7870289219982471,0.9242761692650334,0.92797783933518,0.7514792899408284,0.1296296296296296,0.5093490304709142,0.7432216905901117,0.6233766233766234,0.5294964028776978,0.0950155763239875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021463138072772,0.0044795329934833,0.0069189408542152,0.0086941507460109,0.0109110137175745,0.0129208964190076,0.0152550323251687,0.0175870415573008,0.0199824105700202,0.0222527163060286,0.0245615834273407,0.0266830996764751,0.0287180753129467,0.0305203503348789,0.0323026750330251,0.0344264159918923,0.0363836025153583,0.0386412242270717,0.0406586091406461,0.0426416785665891,0.0576045289798305,0.072014652014652,0.0853717378534866,0.0978937844548247,0.1101220296794743,0.1248148775017983,0.1361243765255226,0.1465292345042752,0.1568145639469663,0.1653615944049943,0.177204282544538,0.1888387397040837,0.1995758564437194,0.2093234332454864,0.217967761456786,0.2279533925525552,0.2368658864480715,0.2444142087685958,0.2526715825297788,0.2602905984863231,0.2661158746138091,0.2728240275081284,0.2772033597539335,0.2815965319857256,0.2861635601967093,0.2910696906606876,0.2941809266486541,0.2978596227950808,0.3018350285995289,0.3058859207299385,0.3033579276174062,0.3016064974507675,0.2991289419247709,0.2967898243488794,0.2949408604544173,0.2929780228195114,0.290166500640387,0.2899422797063296,0.2898156337165793,0.2905350232541627,0.2909565055415852,0.2919802700100222,0.2924567618253803,0.292546804820563,0.2942035928143712,0.2941604322527015,0.2955674816139932,0.3001909651566853,0.3028770706190061,0.3064694716861753,0.3092281802883522,0.314464408756029,0.3184757360788499,0.3195860599604322,0.3240391861341371,0.3268074065337893,0.3294797687861271,0.3327971043635632,0.3415166393889798,0.3387894937190712,0.0,2.159363272799811,49.57418415663657,151.6952827578443,211.57955649123812,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95761,47564,452.74172157767777,5127,52.19243742233269,4116,42.23013544135922,1620,16.478524660352335,77.38146625236273,79.70542991364901,63.35451413110488,65.06832563595968,77.16883428484583,79.49923893960366,63.27455776643251,64.99412396019315,0.2126319675168986,206.1909740453558,0.0799563646723697,74.20167576653114,210.70324,148.27609330376876,220030.09575923395,154839.5205812061,502.20865,337.6237069080163,523627.34307285846,351756.8079990981,464.11283,227.5868724707053,479628.1576006934,233772.32418994707,2368.8358,1117.149407213266,2433223.128413446,1126129.0162104266,946.1555,436.5998200685122,963826.7457524462,431814.11138587695,1571.51712,673.4396032353783,1599514.290786437,666221.8782282335,0.38026,100000,0,957742,10001.367989056089,0,0.0,0,0.0,43657,455.10176376604255,0,0.0,42076,434.46705861467615,1237290,0,44401,0,0,0,0,0,83,0.8562984931235055,0,0.0,1,0.0104426645502866,0,0.0,0.05127,0.1348288013464471,0.3159742539496781,0.0162,0.3529631706861095,0.6470368293138904,23.522939891502467,4.137996343359329,0.3102526724975704,0.2657920310981535,0.2181729834791059,0.20578231292517,11.066521415242349,5.986932315768978,17.39354535187258,11521.517735381074,47.107326718069416,13.357060945201107,14.440295568691036,10.002003982095234,9.307966222082038,0.5840621963070942,0.8162705667276051,0.711824588880188,0.5579064587973274,0.1192443919716647,0.7626427406199021,0.9288793103448276,0.8773841961852861,0.7184466019417476,0.1798941798941798,0.5083044982698962,0.7333333333333333,0.6450549450549451,0.5101156069364162,0.1018237082066869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0045907819530584,0.007121047666386,0.0095052400682427,0.0119474920434787,0.013925931958385,0.0160632746249184,0.0182246757619975,0.0204842664487127,0.0226714683254215,0.0250071712494365,0.0269527122000266,0.0289601874499003,0.0311197125827405,0.033063900859847,0.0353096696237697,0.0373996191737726,0.0393663234943443,0.0412329364832013,0.0430862140774677,0.0574723439782926,0.0710922294539899,0.0848191810706494,0.0977335323675966,0.1106425596963786,0.1260921072116096,0.1361529240789655,0.1462347505801699,0.1558567796791215,0.1650565592666059,0.1777378235218121,0.1882746090454869,0.1987472950489881,0.2083219391605867,0.2173243249191223,0.2263943980322201,0.2350373925661346,0.2435220918327164,0.2514134556436048,0.2576127442553435,0.2635149999421075,0.2695405797780171,0.2759016742842257,0.2811541411042945,0.2859692793394451,0.2897413793103448,0.292736298500744,0.2963782210187763,0.3001941998964267,0.3030394896399009,0.3009251788499811,0.2982733279303287,0.2960498551050839,0.2931582444887463,0.291533581923254,0.2884167993143137,0.284371346415142,0.2848044271984544,0.2846406843782485,0.2851679237227835,0.2856529530351676,0.2865124331129997,0.2885072820598423,0.2892331698617922,0.2901132581471637,0.2899610894941634,0.2900155785299532,0.2935318723855903,0.2968412244613346,0.302125306154697,0.3061178281936331,0.3072955047899779,0.3098539011501399,0.3139377537212449,0.3113587414551924,0.3198023296858454,0.3233433734939759,0.3192975454001197,0.3148047722342733,0.3124762988244217,0.0,2.9382984927780247,52.664061547359005,147.402780542835,216.71957007818884,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95764,47643,452.7588655444635,5139,52.44141848711416,4038,41.66492627709787,1547,15.799256505576208,77.31912755708531,79.66738678435775,63.32066847763053,65.05761011585156,77.11668085825283,79.4669212582606,63.243929327642846,64.9840025198239,0.2024466988324746,200.46552609714752,0.0767391499876879,73.60759602765654,210.57256,148.1975752584614,219886.51267699763,154752.51440223117,500.1027,335.9056841689346,521680.1512050457,350223.30308414786,457.41793,224.4246812490232,474198.0493713713,231764.89234394184,2313.51752,1086.1609782996943,2387444.258802891,1106034.9788826946,936.94014,420.4128168027577,966244.026983,426899.1476282913,1507.76562,646.1068823160502,1540466.2085961322,645865.8991453708,0.38132,100000,0,957148,9994.841485318077,0,0.0,0,0.0,43490,453.594252537488,0,0.0,41368,428.5952967712293,1238501,0,44468,0,0,0,0,0,90,0.9398103671525836,0,0.0,0,0.0,0,0.0,0.05139,0.134768698206231,0.3010313290523448,0.01547,0.3558911260253542,0.6441088739746458,23.68144582669224,4.150411269739172,0.3110450718177315,0.2677067855373947,0.2109955423476968,0.2102526002971768,11.089929056403738,5.882765207752407,16.572634404873323,11593.659502867176,46.08554874542931,13.145822854904376,14.198355586958275,9.448976337667482,9.292393965899183,0.5807330361565132,0.8048103607770583,0.7189490445859873,0.5692488262910798,0.1024734982332155,0.7362924281984334,0.9161147902869756,0.8761904761904762,0.694300518134715,0.1117021276595744,0.518864659051575,0.7245222929936306,0.6663124335812965,0.5326251896813353,0.0998487140695915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019848302261288,0.0045298391755084,0.0070106732681303,0.0093643990330902,0.0120206242182017,0.014471500005092,0.0167728778995666,0.0190744598292692,0.0211652113453712,0.0234127065375401,0.0253247618754677,0.0274976897012013,0.0296086800020568,0.0317286990203249,0.0337701196863392,0.0355205092961007,0.0375063407766286,0.0394473430352567,0.0416987052931274,0.043702870474524,0.0583188066930407,0.0716766391899242,0.0847046977754003,0.0972396025027604,0.1093165213540952,0.1250171828573241,0.1360656781009355,0.1466710648123517,0.1564221946948016,0.1653873367782328,0.1773834009971893,0.1888183028322204,0.1998672989906021,0.2099525444485752,0.2185670906130352,0.2281642100133999,0.2370885468406424,0.2452857785778578,0.2525621673154842,0.2587413388306706,0.2651246787525179,0.2709601160939986,0.2767454254752176,0.2809459248683216,0.285589232957654,0.2901661793552685,0.2939231501427784,0.2974569904111857,0.301885814269976,0.3054411531759861,0.302878075716152,0.2994428011281557,0.2972881547048542,0.2955068041475654,0.2936859307680879,0.2906674017580936,0.2880733363942939,0.2879807061294133,0.2882945881871365,0.2888198757763975,0.2900827684356391,0.2905657398819977,0.2912222618024851,0.2924811021156684,0.2935354457443486,0.293866500052067,0.2947167771487097,0.2989787607292776,0.3030568297209286,0.3063091482649842,0.310586532808755,0.3132097396080917,0.3171190371716918,0.320054632369679,0.3191608915527252,0.321775799461169,0.3273305084745763,0.3281783490660775,0.3313367819221345,0.3257661748013621,0.0,1.9087085134640505,50.08794575713591,152.08542017096624,211.93393459467805,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95664,47126,450.2425154708145,5198,52.99799297541395,4101,42.10570329486536,1646,16.735658136812177,77.34181859432726,79.72337580848179,63.3271521787835,65.08498097259664,77.12585326479555,79.5118687484669,63.24548151483792,65.00785499999238,0.2159653295317127,211.5070600148954,0.0816706639455802,77.12597260426435,211.58742,148.8324495381275,221177.68439538384,155578.32574231422,500.44419,335.000694904386,522267.9482354908,349326.42919412826,450.76056,220.86433353793905,465555.6531192507,226637.5173037411,2381.38644,1119.4934734364228,2449982.9402910187,1130960.3397215588,984.70408,445.926135954931,1012110.5640575348,448972.5632411045,1612.3818,692.8462490821324,1642804.733232982,689768.6366824581,0.37972,100000,0,961761,10053.531108881083,0,0.0,0,0.0,43477,453.6711824719853,0,0.0,40906,421.9978257233651,1238519,0,44453,0,0,0,0,0,83,0.8571667502926911,0,0.0,0,0.0,0,0.0,0.05198,0.136890340250711,0.3166602539438245,0.01646,0.3555637435519528,0.6444362564480471,23.563744672212877,4.241186161509002,0.3104120946110704,0.2499390392587173,0.2165325530358449,0.2231163130943672,11.3722570887862,6.04615322449517,17.679803214938378,11500.572871293942,46.74545243887637,12.447077990877789,14.396308466631709,9.848222927483542,10.053843053883336,0.5683979517190929,0.7931707317073171,0.7219167321288296,0.5630630630630631,0.1081967213114754,0.729957805907173,0.8966346153846154,0.8657142857142858,0.6964285714285714,0.1692307692307692,0.5027434842249657,0.722495894909688,0.66738894907909,0.5180722891566265,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265607436886,0.0041152680499102,0.0065237462333735,0.0087546464625947,0.0108695652173913,0.0131852244033558,0.0152177679927427,0.0171799556975592,0.0192765666043193,0.0215789042666448,0.0236754949911306,0.0254501011636386,0.0274894291210995,0.0298421334652322,0.0316357706122786,0.0336784617135055,0.0355851234702231,0.0376165458811803,0.0394070221066319,0.0412731177414983,0.0554818490467485,0.0692110360714098,0.0836219745156076,0.0963895991834243,0.1089930903528667,0.124805635769365,0.1358007661209028,0.1468675147708522,0.1567491906100075,0.1658533446304658,0.1774474959612277,0.1884998539767011,0.1991625428245146,0.2084996118649071,0.2179891968008449,0.2275818528199902,0.2361949836471809,0.2444854388589554,0.2526356404407676,0.2591247981492722,0.2651607157315197,0.2716407437726582,0.2779302188054405,0.2832496675332766,0.2878360982244784,0.2915331920555911,0.294560648518815,0.2975627130717956,0.3011188521405817,0.3049396557409483,0.3021387135415965,0.2995214258210023,0.2979364743996056,0.2949025270758122,0.2915398660986001,0.2873072033573802,0.2838528076916994,0.2833836164491375,0.2829489783725654,0.2827438752783964,0.2833022039596563,0.2837286331105459,0.283941071988298,0.2845856859113124,0.2850253137221969,0.2871545054315263,0.287149565959869,0.2911865364689629,0.2946776743369049,0.2985612936467045,0.3035633124261431,0.3064192047377326,0.3115029910269192,0.3138024765931743,0.3154038764722248,0.3169005778983371,0.3164133738601823,0.3159154367770243,0.3152263374485596,0.3264683447749809,0.0,2.932064712559144,50.70280531240754,153.34134760246053,211.95674952515,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95680,47553,453.8043478260869,5053,51.64088628762541,3968,40.89673913043478,1601,16.35660535117057,77.38307130315455,79.75963854193651,63.34642469116329,65.09750411054137,77.1748926703402,79.55334629423206,63.267974152420656,65.02190485593775,0.2081786328143522,206.29224770445376,0.0784505387426364,75.59925460361683,211.30054,148.66317565006182,220840.8653846154,155375.39261085054,502.99435,337.7863770249629,525105.560200669,352447.9922343626,451.1771,220.67025235957252,467975.0209030101,227922.44995417347,2295.0514,1072.7305167599752,2366694.7324414714,1089813.0478858808,954.59523,436.1986388094385,980972.0735785952,439331.1309236063,1565.62242,669.9249197065861,1601596.864548495,671744.7864475605,0.37995,100000,0,960457,10038.221153846152,0,0.0,0,0.0,43709,456.1977424749164,0,0.0,40898,423.8607859531773,1236437,0,44399,0,0,0,0,0,81,0.846571906354515,0,0.0,3,0.0313545150501672,0,0.0,0.05053,0.1329911830504013,0.3168414803087275,0.01601,0.3481312843862644,0.6518687156137355,23.567628336454423,4.17660083433938,0.3031754032258064,0.2560483870967742,0.2169858870967742,0.2237903225806451,11.216130592346063,5.868590728263033,17.064883920211155,11492.94812755088,45.08646444490478,12.40437491164085,13.499370094209972,9.561889576279476,9.620829862774478,0.5700604838709677,0.7992125984251969,0.7015793848711555,0.5900116144018583,0.1103603603603603,0.7226596675415573,0.8909512761020881,0.8484848484848485,0.6984126984126984,0.155440414507772,0.5083185840707964,0.7316239316239316,0.6460481099656358,0.5595238095238095,0.097841726618705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611694319872,0.0047210909164589,0.0069066236650743,0.0093728421138145,0.0114178231915001,0.0134470718771949,0.015647617688434,0.0176280251916422,0.0198603743113264,0.0218150176588012,0.0241344310364272,0.0261541937073851,0.0281694486439788,0.0302209404130401,0.0322174653118068,0.0342913837472483,0.0362148443569689,0.0381413982065758,0.0402749469656004,0.0422893349173596,0.0571183838046191,0.0710599319549856,0.0838954689942405,0.097209370794078,0.1089977437108576,0.1245573046061464,0.1356702954239498,0.1458426392699891,0.1553556565721237,0.1644093948225612,0.1765022325030932,0.1872087365518732,0.1975065759440012,0.2070458097871828,0.2165911291032297,0.2258543504277292,0.2353972614979115,0.2441065495297629,0.251757304595678,0.2581018518518518,0.2636482529541798,0.269564810262893,0.2745543909516196,0.279341202437503,0.2841079004631599,0.2879165330636608,0.291253020193042,0.2950686117263678,0.299130569988468,0.3028346602236569,0.3005154153601851,0.2975792816198606,0.2961029825548678,0.2931860834416053,0.2911073203293036,0.2890085844133984,0.2868730630573651,0.2865756746571414,0.2859239789038898,0.2860579921940439,0.2862787490215082,0.288293420819991,0.2887694966785364,0.2891130017548926,0.2915295464301044,0.2918766638236282,0.2916831236246685,0.2975142332700743,0.3020010440229685,0.3044722298436091,0.306974437581714,0.3109388909252762,0.3149987583809287,0.3192987713515133,0.32565213383722,0.3332947173308619,0.3378778897451097,0.3410672853828306,0.3522577237919197,0.3538011695906433,0.0,2.092793198253905,49.704229923781696,143.58278796908417,210.4645300174782,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95702,47774,455.1837997116048,5073,51.87979352573614,4034,41.68146956176464,1569,16.10206683245909,77.3960056150407,79.78022594366067,63.35197710932333,65.11317799458315,77.19928407642291,79.58457255104535,63.278490480547305,65.04189845127713,0.196721538617794,195.6533926153128,0.073486628776024,71.27954330601938,211.10342,148.5484171956095,220583.89584334704,155219.5462974749,505.97377,338.8463825078294,528158.7323148941,353526.523627332,459.45227,224.8944091070908,476926.2711333096,232608.62746580807,2316.86388,1082.9634187164872,2394943.8465235834,1106074.19581691,924.34412,415.2192299891655,953883.4716097888,422117.5208290418,1525.4078,641.1066019009673,1567285.67846022,647698.361561718,0.38062,100000,0,959561,10026.54072015214,0,0.0,0,0.0,43913,458.30808133581326,0,0.0,41555,431.0254749117051,1240828,0,44457,0,0,0,0,0,92,0.9613174228333786,0,0.0,1,0.0104491024221019,0,0.0,0.05073,0.1332825390152908,0.309284447072738,0.01569,0.3527514231499051,0.6472485768500948,23.64097341526035,4.040090497950852,0.3212692117005453,0.2595438770451165,0.2129400099157164,0.2062469013386217,11.133905715433444,6.0414430113159705,16.54136466603676,11537.20773567076,45.92349689514754,12.835247088896582,14.534600516076756,9.521947096032346,9.031702194141864,0.5746157659890927,0.8051575931232091,0.6867283950617284,0.5727590221187427,0.1117788461538461,0.7495667244367418,0.907865168539326,0.8724035608308606,0.7336683417085427,0.1213872832369942,0.5045138888888889,0.729235880398671,0.62148070907195,0.5242424242424243,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096325860793,0.004603435338971,0.0070745620267554,0.0093370586741173,0.0118507517343804,0.0141734207632468,0.0162729284133894,0.0183973292223504,0.0204972499948884,0.0225593154414624,0.0244617592782448,0.0268796780188301,0.0290847757448602,0.0309329322936516,0.0329866485069852,0.0349703842297315,0.0368958587972074,0.0389038820842848,0.0409863344218649,0.0431887109045241,0.0578835227272727,0.0717350355797404,0.0848821110924651,0.0976166195317346,0.1101027667984189,0.1251797648253108,0.1360342870479403,0.1458453088075621,0.1560630661425397,0.1651705758072992,0.1770356569779338,0.1885410807770518,0.1994653394333902,0.2089558764058452,0.2181470365117583,0.2280284246878597,0.2362452329445349,0.2439123011950759,0.2516680071138096,0.258827025729537,0.2645334072124486,0.2718530448381299,0.2779489722428836,0.2821389709311363,0.2863564764328123,0.2904192720170018,0.2934114567100916,0.2972630511910796,0.300626547029703,0.3041027864265164,0.301440729075923,0.2983883114926947,0.2961658787054054,0.2932717222318189,0.2907293393322283,0.2865400747349958,0.2835001970831691,0.2834867033883068,0.2841426919676256,0.2842883023693652,0.2852110707296617,0.2861321606659076,0.2863704381079059,0.2875844501052165,0.2888050434616487,0.2890119559029036,0.2911878476437868,0.2955077576249493,0.2999860617464632,0.3025074037512339,0.3062170514451918,0.3095175183638958,0.3128880526810912,0.3158451768974902,0.3181134911687335,0.3227299703264095,0.3192816922842794,0.3214141414141414,0.3287596048298573,0.3351206434316354,0.0,1.783991394491393,50.54644713689116,150.46377956845495,210.45321930200055,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95825,47529,452.7002348030263,5173,52.76284894338638,4071,41.94103835116097,1576,16.050091312288025,77.38566316619061,79.70521814585855,63.36611244363343,65.08363952079044,77.18458660417896,79.50941084604924,63.28927299079555,65.01136711499713,0.2010765620116501,195.8072998093172,0.0768394528378735,72.27240579331351,212.76728,149.64594144146275,222037.1093138534,156165.63677689823,505.93112,339.5260305184373,527429.8356378815,353774.6418141794,456.61205,224.2929745601468,473121.4088181581,231474.91757414327,2316.96244,1100.1679974804472,2387304.31515784,1117495.3482707508,943.09831,425.0047195251151,970018.8677276286,429352.4545005119,1534.29448,657.9901648781652,1563706.986694495,654217.5645891669,0.3802,100000,0,967124,10092.595877902426,0,0.0,0,0.0,44089,459.52517610226977,0,0.0,41362,428.2911557526741,1231160,0,44160,0,0,0,0,0,90,0.9392121054004696,0,0.0,0,0.0,0,0.0,0.05173,0.1360599684376643,0.3046588053353953,0.01576,0.3543015726179463,0.6456984273820536,23.351169361985995,4.181083253002146,0.3149103414394498,0.2643085237042495,0.2156718251043969,0.2051093097519037,11.503057895384444,6.234158557866564,16.89974940434342,11457.618404097338,46.68415840149525,13.227001164771576,14.54583396614257,9.75466354537667,9.15665972520443,0.576271186440678,0.7936802973977695,0.6926677067082684,0.5854214123006833,0.1077844311377245,0.7390243902439024,0.8993576017130621,0.8528528528528528,0.7468354430379747,0.1450777202072538,0.5058078141499472,0.7126436781609196,0.6364594309799789,0.5257410296411856,0.0965732087227414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864351331368,0.0041564023803006,0.0062721377028549,0.0087883282872411,0.0111375564506285,0.0132573057733428,0.0155337430816744,0.0177160934789264,0.0197046348817006,0.0216132135328189,0.0238370960964961,0.0256186556364121,0.0277797761585184,0.0297269199493571,0.0319450602707802,0.0343331680713931,0.0363894090989042,0.038546449560017,0.0406309056548917,0.0425286160249739,0.0570895094245152,0.0710850930378423,0.0840425977946417,0.0967480956133438,0.1085081057166633,0.123593962885901,0.1354309020604905,0.1460578619560827,0.1560336643590865,0.1641709511568123,0.1755482184915522,0.1867039721721094,0.1980870905755013,0.2072266797663883,0.2162399639746504,0.2265519605458124,0.2350411639539676,0.2435632442147832,0.251418925808023,0.257979696359978,0.2637068178930712,0.2695278769632896,0.275197092007742,0.2791445128143855,0.283019781603351,0.2870858040833364,0.2923021286678056,0.2957221623677039,0.2993329806861138,0.3010349679778014,0.2988380683726241,0.2967859741614838,0.2944624033731553,0.2923866947465597,0.2905110788123275,0.2871273505580186,0.2841670882873767,0.284105439165929,0.285153315577409,0.2863664734730272,0.2870486260297771,0.2876828450893033,0.2880311792808649,0.2871577064937968,0.2874852562405218,0.2883962609013525,0.2894361780970298,0.2938443670150987,0.2975572090411343,0.3009235403702089,0.3045334786953756,0.3058021559923906,0.3094760591626974,0.310991754293063,0.3104838709677419,0.3129500649273993,0.3145332927941623,0.3149779735682819,0.3221075502444324,0.321791494166353,0.0,2.1057326805287464,53.55634164258667,148.89495709569917,208.5678828550901,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95751,47358,451.0344539482616,5184,52.69918852022433,4088,41.95256446407871,1529,15.529863917870308,77.37657405990127,79.72254379716767,63.3458979718325,65.07985308780275,77.17404912164254,79.52736965700161,63.26944646395982,65.00946978503237,0.2025249382587333,195.17414016605983,0.076451507872683,70.38330277038085,211.54782,148.7931940482814,220935.36359933575,155395.9687609335,501.71815,336.3692742112071,523260.03905964433,350573.7216438544,452.23251,221.72655872689376,468020.3862100657,228164.98872592612,2324.63568,1091.0913820552482,2387482.825244645,1099199.362988635,949.65555,432.8261441833594,973030.2242274232,433266.2470192046,1488.84932,635.3526639412333,1513400.5075665007,625131.8040778144,0.38001,100000,0,961581,10042.516527242537,0,0.0,0,0.0,43689,455.5252686656014,0,0.0,41120,425.1234974047268,1237471,0,44382,0,0,0,0,0,75,0.7832816367453082,0,0.0,0,0.0,0,0.0,0.05184,0.13641746269835,0.294945987654321,0.01529,0.3510068353962682,0.6489931646037318,23.366990600416194,4.20461805962694,0.309197651663405,0.2700587084148728,0.2213796477495107,0.1993639921722113,11.50108617971456,6.141603914099504,16.247310228724455,11549.455870050244,46.46594205702136,13.4362673503356,14.2210430189821,9.951135013661249,8.857496674042402,0.5878180039138943,0.8197463768115942,0.7009493670886076,0.5734806629834254,0.1141104294478527,0.7531592249368155,0.9225512528473804,0.8513119533527697,0.762114537444934,0.1348314606741573,0.5201654601861427,0.7518796992481203,0.6449511400651465,0.5103244837758112,0.108320251177394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155980958168,0.0042271082322172,0.006382028856105,0.0087671177211589,0.0109327963550565,0.0131057728536369,0.0154072049841441,0.0177032711234532,0.0199450004600333,0.0221002958307315,0.0242292554936044,0.0263598197513883,0.0286210689722527,0.0307929969104016,0.0328271365493335,0.0347190639599785,0.0368015573872343,0.0388505627885263,0.0408258740604435,0.0426786086232035,0.057365328211926,0.0717976070950468,0.0852814760457071,0.0982753728284516,0.1105080101180438,0.1259830866807611,0.136636413758005,0.1473627086902393,0.1572061729054306,0.1670312701068073,0.1786729857819905,0.1896146896200997,0.200339429280127,0.2092829866619981,0.2183409478725161,0.2273432650527622,0.236185393195699,0.2442358977821287,0.2504907467293007,0.2563820775236394,0.2637202525497814,0.2693804565057326,0.2745582412386975,0.2795265224052087,0.283312698759498,0.2880715191665948,0.2916036828363336,0.2958613685413228,0.3009224567840624,0.3039051695752387,0.3008686779178582,0.2985799547231941,0.2970612600216228,0.2952069402813004,0.2925489383125537,0.2897809661909486,0.2880379906601035,0.2880826643559014,0.2880804848154705,0.2882687522218272,0.2890130214658023,0.2900171269956887,0.2917110234412507,0.2926184339169851,0.2942598042734429,0.2976576483100309,0.2971088435374149,0.3002933649584919,0.3052201828459767,0.3093931377581237,0.312701073904572,0.3156560321149376,0.318875,0.3240754716981132,0.3273538432939864,0.3288685230877687,0.3324746173662676,0.3280381254964257,0.3299972951041385,0.3407631280695126,0.0,2.915027914274136,50.79825099615462,147.0028311590914,216.5506787584268,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95751,47759,455.14929347996366,5135,52.45898215162244,4098,42.2136583429938,1505,15.394095100834456,77.3313489084019,79.69830279011926,63.31030609897547,65.06356183050728,77.13818092540306,79.50720134380302,63.23824112860283,64.99455623102824,0.1931679829988439,191.1014463162388,0.0720649703726366,69.00559947904128,210.50524,148.14784866024735,219846.51857421856,154721.98583852634,504.54636,338.8862329903806,526347.0982026297,353335.7176325893,459.9486,225.22446632689608,476157.053190045,232050.601490512,2340.98596,1094.12192565294,2411989.973995049,1109795.705165418,963.41987,431.3666049984612,990540.6836482123,434926.2259433196,1465.7604,621.1909623487077,1500080.291589644,621250.1477218003,0.38214,100000,0,956842,9993.023571555388,0,0.0,0,0.0,43781,456.6323067122014,0,0.0,41705,431.4733005399421,1236607,0,44389,0,0,0,0,0,94,0.971269229564182,0,0.0,0,0.0,0,0.0,0.05135,0.1343748364473753,0.2930866601752677,0.01505,0.3527110117384013,0.6472889882615986,23.67206327354579,4.138727251813314,0.3101512933138116,0.2733040507564666,0.2108345534407028,0.205710102489019,11.298582875698116,6.050218440650441,16.084596149359662,11597.097474097509,46.72944120359841,13.7225819717994,14.38550766541274,9.485665943595771,9.135685622790506,0.5758906783796974,0.8151785714285714,0.6774193548387096,0.5659722222222222,0.1150652431791221,0.7445008460236887,0.9071274298056156,0.8599439775910365,0.7074468085106383,0.1149425287356321,0.5075445816186557,0.7503805175038052,0.6061269146608315,0.5266272189349113,0.1150971599402092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046626612225,0.0045833882596306,0.0067292565338746,0.0090835196098354,0.0109157866894545,0.0131885814382173,0.0153970082899124,0.0176542062754627,0.0197813212777056,0.0218878669316016,0.0238246636035444,0.0260029794010376,0.0279813114889062,0.0298258270637947,0.0317912512128155,0.0341126472200105,0.0362523686744742,0.0383418076164781,0.0405089344185611,0.0426613339999166,0.0578822104845612,0.0719278419554662,0.0849793871749415,0.0985919936066625,0.110610885013601,0.1258130360750055,0.1371802081896414,0.1471509212908723,0.1571253005610473,0.1662553648068669,0.178080715555795,0.1898192764561293,0.201125589192602,0.2110833825879468,0.219769694834647,0.2296599272856256,0.2388406314896277,0.246857310059984,0.2542803653486129,0.2609462710505212,0.2665146745671697,0.2724771716225708,0.2772761742262666,0.2824012387914581,0.2873665264028409,0.2910810277654485,0.2951997196916608,0.2987009682303396,0.3027711920401104,0.3051254319554723,0.3024122984142369,0.2992868234097811,0.2967800899887514,0.2940777805015213,0.2922589433783463,0.2894985808893093,0.2862230907429003,0.2861463015937883,0.2866724545903342,0.2879272365522632,0.2875491676453591,0.2889417594085492,0.2905605334444676,0.2914405196191832,0.2934322287354947,0.2955011020355244,0.2953825260298777,0.298442094725646,0.3025389599019436,0.30698522128452,0.3119727891156462,0.3196397535155633,0.3241387918122815,0.3295437434121367,0.3321939953810623,0.3332561102745279,0.3352652697280428,0.3393797542422469,0.3430015965939329,0.3421346225362588,0.0,2.2252314005069995,51.54611183080375,150.6158278006011,215.1897577354063,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95488,47662,456.18297587131366,5064,51.71330428954423,4016,41.4502345844504,1525,15.593582439678285,77.22623088476638,79.71232013029656,63.24095407219974,65.07567882977659,77.03352127761154,79.52239995039385,63.16875220058724,65.00660427678442,0.1927096071548391,189.92017990271395,0.0722018716125063,69.07455299217702,211.56784,148.751130183764,221564.845844504,155779.9201823936,501.7711,336.1966129762563,524860.5688672923,351482.24445292784,454.53298,222.2331003394736,471505.94839142094,229275.0257188225,2300.36648,1082.9511398701786,2376344.839142091,1102470.7593053824,974.97354,443.1275936721193,1005491.1926105898,448514.455923382,1490.1355,629.6215425939998,1525680.169235925,631859.705343914,0.38063,100000,0,961672,10071.129356568365,0,0.0,0,0.0,43685,456.8427446380697,0,0.0,41243,427.5092158176944,1229799,0,44232,0,0,0,0,0,84,0.8692191689008043,0,0.0,1,0.0104725201072386,0,0.0,0.05064,0.1330425872894937,0.3011453396524486,0.01525,0.3517045454545454,0.6482954545454546,23.44880605752572,4.173541676456775,0.3182270916334661,0.2634462151394422,0.2084163346613546,0.209910358565737,11.723885182251813,6.422312054018485,16.176943991023187,11507.074684075753,46.03867444242731,12.895799981225316,14.615912238183764,9.24362478034864,9.28333744266959,0.5794322709163346,0.8015122873345936,0.7034428794992176,0.5663082437275986,0.1257413997627521,0.7542955326460481,0.9311926605504588,0.853185595567867,0.7374301675977654,0.1702127659574468,0.5080645161290323,0.7106109324758842,0.6444929116684842,0.5197568389057751,0.1129770992366412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205147692151,0.0044326331057847,0.0066907628891099,0.008622267412303,0.0107203942010099,0.0129949548998624,0.0152756660782252,0.0176772321337338,0.0198266954484536,0.0217005973299453,0.0238239430114038,0.0257456893449449,0.0277714850587968,0.0298695271002011,0.0323400562076376,0.0343942186238171,0.036234063961992,0.0381073158562192,0.0400470897100649,0.0419764430707543,0.0566574906582652,0.0705847793701084,0.0829968454258675,0.0953861394486131,0.1079878686688294,0.1241852232620746,0.1354865459648526,0.1462956640491635,0.1561562848084997,0.1649396994647118,0.1769342056962708,0.1881256846603542,0.198229432415342,0.2077651598193537,0.2163471085320918,0.2259186417325022,0.2344545240998221,0.2431634240367924,0.2512765110593051,0.2581118913213089,0.2643253020429933,0.2699936695505381,0.2759925506802842,0.2805084643942762,0.2847047930017788,0.2890484961615961,0.2921527507440383,0.2966944575667428,0.3001194556975174,0.3041563628188682,0.3021309904584531,0.2979411967224403,0.2961694571283612,0.2939426756190889,0.292407396396932,0.2897817825180826,0.2872173541016337,0.2869093598487961,0.2869874612976616,0.2876107775871926,0.2885576797049076,0.2900760343635825,0.2910759837745159,0.2904909549195869,0.2923669970789637,0.2948428456487321,0.2954667876279307,0.2997402272229351,0.3047063345096258,0.3067593726543673,0.3094038051128366,0.3137037623344414,0.3193293024995325,0.3217933313307299,0.3267991901343641,0.3303198887343532,0.3292941532868828,0.334211059347782,0.3360723089564503,0.3421650264950794,0.0,2.343937688867541,50.58324433512083,152.58398875668513,206.2665892866178,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95708,47556,454.0477285075438,5144,52.50344798762904,4093,42.18038199523551,1562,15.93388222510135,77.36399481233721,79.75005070624101,63.33329461681414,65.09796624616786,77.15766414546022,79.54625336180183,63.25564498036096,65.02399862082596,0.2063306668769939,203.79734443918096,0.077649636453188,73.9676253418935,213.015,149.74982899409346,222567.6014544239,156465.32055219362,506.06966,339.50364839303217,528176.0458895807,354140.42545349634,458.305,224.34592765167616,475704.8000167175,231970.23191631396,2339.16476,1100.339020136592,2411664.3958707736,1117283.8426637186,962.46533,439.7052771245334,991086.6803193046,444964.0753062408,1516.53534,653.3260758765521,1548396.0588456555,650609.4927056904,0.37899,100000,0,968250,10116.709157019268,0,0.0,0,0.0,44060,459.7421323191374,0,0.0,41573,431.1656287875622,1227834,0,44124,0,0,0,0,0,77,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05144,0.1357291749122668,0.3036547433903577,0.01562,0.3567316620241411,0.6432683379758589,23.57997826391753,4.169671408822845,0.3185927192768141,0.2619105790373809,0.2110921084778891,0.2084045932079159,11.187093679158233,6.006123492261422,16.82451538592635,11425.72331826224,46.86698458040776,13.133007163814018,14.794622743289295,9.59079791323562,9.348556760068826,0.5778157830442219,0.8171641791044776,0.6878834355828221,0.5775462962962963,0.1090269636576787,0.7431874483897605,0.9465478841870824,0.8595988538681948,0.7303921568627451,0.124401913875598,0.5083275503122832,0.723916532905297,0.625130890052356,0.5303030303030303,0.1040372670807453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0042796150374719,0.0065276536993421,0.0087708600117893,0.0108264311443049,0.0127554659005236,0.0149944918193316,0.0171269251194901,0.019279351150113,0.0213395590780163,0.023627618881585,0.025778489852929,0.0280089282959092,0.0301800084491659,0.0320449971618762,0.0337479450355159,0.0358204626205496,0.0378353136512219,0.0399060300828473,0.0418837257762033,0.0565093886417277,0.0700432275148889,0.0835711288292068,0.0966127183434815,0.1083260427317093,0.1233519765708425,0.1349316593678093,0.1457278413684524,0.1550967686838818,0.1641141607810775,0.175519208006026,0.1861662430371532,0.1964922581767571,0.2061933452155752,0.2155639883407578,0.2249147588894301,0.233751603368468,0.2424242424242424,0.2501474792394609,0.2575036058517823,0.2632321480196589,0.2690072837384401,0.2746778068379507,0.2798226695422957,0.2843890770893284,0.288167516064702,0.291964140586904,0.2950067956355507,0.2985142118863049,0.3017320803390455,0.2985012489592006,0.2957901092266315,0.2926702526578936,0.290849626118403,0.2892309969654356,0.2855989027735446,0.2828115900971087,0.2830600736660256,0.2829977438889925,0.2835078998757322,0.2838951450518308,0.2847200377477194,0.2855535647318638,0.2876623810690969,0.2890935182970581,0.2905322828093715,0.2914807129253248,0.2947006409254338,0.298402600580237,0.3020401720531944,0.3070250734131466,0.3085263157894737,0.3096016086464748,0.3115627616655249,0.3181689742865216,0.325062329336341,0.3232805046930297,0.3238948869423508,0.3243019076582803,0.3294618660472319,0.0,2.228467183819948,52.81768242583885,149.9615612772887,212.3880290549465,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95667,47370,451.7858822791558,4995,50.96846352451733,3974,40.9441082086822,1499,15.261270866652032,77.31725194233033,79.72223523353433,63.30264576078415,65.08368761591308,77.1206972612601,79.53127959774427,63.22877051032406,65.01474350565957,0.196554681070225,190.95563579006125,0.073875250460091,68.94411025351133,210.83216,148.42953620336826,220381.2809014603,155152.28469939294,503.39497,337.5718181415384,525583.1686997607,352249.4675714076,460.87435,225.94412337862536,477805.0424911411,233267.44461726584,2279.92152,1077.0056001888438,2350636.3113717376,1093237.2920535223,909.63852,413.8381423219018,936323.2776192416,418066.8488840468,1465.00814,624.6163851935202,1492661.8792269016,618711.8560182849,0.37996,100000,0,958328,10017.330950066376,0,0.0,0,0.0,43773,456.9078156522103,0,0.0,41791,432.9392580513656,1236568,0,44365,0,0,0,0,0,83,0.8675927958439169,0,0.0,1,0.0104529252511315,0,0.0,0.04995,0.1314612064427834,0.3001001001001001,0.01499,0.3434208006129094,0.6565791993870906,23.538648390548968,4.1933535772459445,0.3193256165072974,0.2697533970810267,0.2028183190739808,0.208102667337695,11.268936840713284,5.802687980934774,16.02728509126932,11458.304789699509,45.46196001531077,13.057715469260971,14.46853176283619,8.871542142805097,9.064170640408516,0.5805234021137393,0.808768656716418,0.7013396375098503,0.5732009925558312,0.1064087061668681,0.7589958158995815,0.9328859060402684,0.8402061855670103,0.7527472527472527,0.1516853932584269,0.5037783375314862,0.72,0.6401816118047673,0.5208333333333334,0.0939907550077041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022085566373205,0.0043705318663489,0.0065965068958868,0.008830493145952,0.0108663580403927,0.0130793521442395,0.0150776324648562,0.0177039065053939,0.020011867978965,0.0220988248793631,0.0239047912178106,0.0262438603341622,0.0284208467580059,0.0303420830154442,0.0325225923057061,0.0346814828610154,0.0366028112949371,0.0384239931875298,0.0404615256564983,0.0424675812033523,0.0570965888314266,0.0716701747772088,0.0846665826824557,0.0970012626262626,0.1092543359918977,0.1249272386677532,0.1361629412638774,0.1462271686458278,0.1556745433753353,0.1654508003261382,0.1766144234394355,0.1873653673374395,0.197991032561379,0.2080126977176947,0.2175718392387078,0.2267916708223899,0.235233079686698,0.2441742768455621,0.2529743339646823,0.2592910528906134,0.2644861326363026,0.2700939823257118,0.2747902838415031,0.2795711804515781,0.2831171670067036,0.286543438077634,0.2901890143981186,0.294015225652301,0.2969184415047006,0.3004608901764551,0.2983919719501874,0.295206194058536,0.2923783571187774,0.2899799685838221,0.2867066437095529,0.283973858609976,0.2810989288761098,0.282897430438414,0.283754807528675,0.2839396470525511,0.2843276338385724,0.2868865362666771,0.2879110776816681,0.2879203155291129,0.2891450528338136,0.2891027308192457,0.2902695035460993,0.2930527763881941,0.2972434755266743,0.3002052415535207,0.3016341352700862,0.3076353637901861,0.3091684434968017,0.3148021569074201,0.3200112317484088,0.3200234879624192,0.322964318389753,0.322866344605475,0.3238833912810912,0.3304769001490313,0.0,2.312577197446152,51.78456735673596,143.71745581901243,205.30691532817175,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95864,47684,454.9152966702829,5139,52.574480514061584,4034,41.57973796211299,1558,15.94967871150797,77.4717338221379,79.75720669065917,63.40399372213196,65.0902245768368,77.27911911226454,79.56668680267296,63.3329311891474,65.0223502881495,0.1926147098733679,190.51988798621267,0.0710625329845626,67.87428868730672,212.06174,149.16191285093353,221211.02812317447,155597.4222345547,502.57987,337.0496503895964,523761.1303513311,351089.199688722,459.79676,224.4256782430149,476364.9753817909,231667.76342137935,2349.11692,1085.6890505436816,2422193.440707669,1104255.6648415278,974.09951,427.6434479783856,1003144.6006843027,433111.989879814,1532.02012,637.8893169102338,1568892.013686055,639396.9044007414,0.38161,100000,0,963917,10055.046732871568,0,0.0,0,0.0,43595,454.2372527747642,0,0.0,41730,432.0287073353918,1238042,0,44386,0,0,0,0,0,75,0.7823583409830593,0,0.0,0,0.0,0,0.0,0.05139,0.1346662823301276,0.3031718233119284,0.01558,0.349814126394052,0.6501858736059479,23.909654531301324,4.167810408276176,0.3076351016360932,0.2521070897372335,0.214427367377293,0.2258304412493802,10.791786037821405,5.58310337925284,16.501171613457906,11532.946617505744,45.71955683741986,12.300737029933082,13.954301662154744,9.607251484115467,9.857266661216563,0.5728805156172534,0.7984267453294002,0.6954069298952458,0.6,0.128430296377607,0.7454873646209387,0.9002375296912114,0.8694267515923567,0.7486910994764397,0.1703296703296703,0.5075187969924813,0.7265100671140939,0.6364617044228694,0.5578635014836796,0.1179698216735253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021864561190403,0.0044169342829066,0.0067229106248352,0.0087596427121396,0.0107613202178684,0.0130841311668888,0.0153308613804905,0.0173298381256438,0.019647488920205,0.0218031579808557,0.0239251111247669,0.0258961078919029,0.0278088819945964,0.0296741400775807,0.0318420781362746,0.0336331436714546,0.0356455717152491,0.0376631048742317,0.0396129045656079,0.0416376143447357,0.0559946612166586,0.0703637884173113,0.0841498559077809,0.0966430260047281,0.1083872599650091,0.1242176928281461,0.1354002099392448,0.1467991404803948,0.1567030339261695,0.1658093278463648,0.1786617316361993,0.1903202800829875,0.199874060885048,0.2088809326289132,0.2176252278367042,0.2276434444346211,0.2368157320386619,0.2446883733459039,0.252244195655373,0.2577589359173599,0.2647520365541273,0.2710749967940123,0.2759145621902289,0.2810143524659712,0.2851186074982727,0.2892604659740579,0.2928829042442999,0.297230784843526,0.3015012456595541,0.3040780374937554,0.3014424689701442,0.2988938477124004,0.2967188529300461,0.2946551724137931,0.2933006294512249,0.2895481946051269,0.2857187809751569,0.2861220761426288,0.285658539895828,0.2869189342403628,0.287443971209106,0.2891058440667333,0.2902254077074893,0.2909179536037932,0.2936177303782702,0.2946384780195668,0.2961471300625246,0.2999751676185746,0.3039296794208893,0.3077702834418496,0.3128598848368522,0.3169850824391521,0.3204856787048568,0.3262347077480743,0.3305196023260176,0.333648393194707,0.3374020494273659,0.3360444356278516,0.341122750470051,0.3476796407185629,0.0,1.9869309735544367,48.31511361651414,149.3604210976567,218.0799139369318,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95748,47515,452.7614153820445,4996,51.05067468772194,3944,40.67970088148055,1515,15.509462338638926,77.34438518034166,79.69766400966193,63.33412346583962,65.0724263024749,77.14665317570174,79.50144475012726,63.25940342408748,65.00069932792307,0.1977320046399171,196.2192595346721,0.0747200417521369,71.72697455182231,213.03392,149.84695282256146,222494.381083678,156501.39201086338,502.85143,337.5702849267939,524671.3038392448,352051.8411132872,455.72244,223.0140327799324,472971.1847767055,230629.0608627829,2256.48788,1056.692637472412,2330004.0523039647,1077011.724138274,939.97792,421.1519932419248,965913.6796591053,424177.7110559261,1478.04204,630.2887014221695,1514547.7921209843,631919.2583772555,0.37883,100000,0,968336,10113.380958348998,0,0.0,0,0.0,43735,456.22885073317457,0,0.0,41223,427.5076241801395,1228184,0,44114,0,0,0,0,0,78,0.8146384258679032,0,0.0,0,0.0,0,0.0,0.04996,0.1318797349734709,0.3032425940752602,0.01515,0.3577329490874159,0.6422670509125841,23.68737694802288,4.110343612040588,0.3078093306288032,0.2685091277890467,0.2112068965517241,0.2124746450304259,11.061279055283524,5.855691373698981,16.214680714832653,11442.17348388242,44.98710464293768,13.017229862713055,13.678416353366718,9.196891911671743,9.094566515186177,0.5780933062880325,0.7922568460812087,0.700164744645799,0.5846338535414166,0.1241050119331742,0.7351676698194325,0.8938053097345132,0.84,0.7246376811594203,0.1564245810055866,0.5124056094929881,0.7166392092257001,0.6490438695163104,0.5383386581469649,0.1153262518968133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892103237308,0.0047144464834284,0.0069907365131545,0.0090186161299168,0.011295931024666,0.0134679791923284,0.0154093883125089,0.017776417164141,0.0198220106057974,0.0220198506088202,0.0240491023854414,0.0261313134423335,0.0281622077361245,0.0303292448069535,0.0324331015700757,0.0345978567516456,0.0364968792373539,0.0387124205373902,0.0408122966919903,0.0425915316910577,0.0566053494247593,0.0704381586245147,0.0833840280254242,0.0955054998212295,0.1077521668529492,0.1228812215161095,0.1338297059946544,0.1453603421494989,0.1553955912508544,0.1647405660377358,0.1766187631196512,0.1879171399210341,0.1984386722190208,0.2082677509618747,0.2178527047386537,0.2270291812425275,0.2362891797498298,0.2441723172418446,0.2511598888321706,0.2576161745681019,0.263086673914552,0.2691992795153103,0.2736220705320067,0.2771262052093826,0.2814139941690962,0.2856438146681959,0.2891572301833851,0.2940150038847069,0.2975195907000842,0.3006782613285477,0.2981096535486041,0.2955419964819701,0.2932164762815823,0.2913696060037523,0.2895814781834372,0.2860160411436968,0.281326645252148,0.2810682395346932,0.2825134282547532,0.2820165672040616,0.2823463478423314,0.284718804747938,0.2860183639398998,0.2872205256235928,0.2890817965996019,0.2904649412009034,0.2898028648418664,0.2958937576346039,0.2999965055736101,0.304500870115488,0.3079498665218768,0.3113247411789562,0.3147858705845576,0.319801905905305,0.3222594453750232,0.326323168594462,0.332525007578054,0.3397801302931596,0.3465455546380402,0.3494208494208494,0.0,1.9063191107524629,50.83468630999364,142.47151585395514,206.45734120224463,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95662,47923,457.0675921473521,5164,52.66458991030921,4100,42.19021136919571,1549,15.77428864125776,77.28108161739658,79.66952366033183,63.29287913429015,65.05644468121646,77.08265069677596,79.47498320930016,63.21725532071022,64.98499040867658,0.1984309206206234,194.5404510316706,0.0756238135799307,71.45427253988146,211.51504,148.8903089676009,221106.646317242,155642.06159980022,505.26283,339.0338977176534,527504.4636323723,353737.52139580343,460.35362,225.29493644082865,477319.78214965184,232513.04221827563,2349.2618,1098.0914141741123,2419285.4006815664,1111377.9914429053,967.4451,435.8786635230299,993711.703706801,438136.3217475807,1512.77512,649.1760878799968,1542334.364742531,644868.9427869474,0.38198,100000,0,961432,10050.30210532918,0,0.0,0,0.0,43921,458.4265434550814,0,0.0,41678,431.6761096360101,1229249,0,44061,0,0,0,0,0,83,0.8676381426271664,0,0.0,2,0.0209069431958353,0,0.0,0.05164,0.1351903241007382,0.2999612703330751,0.01549,0.3475124838172739,0.652487516182726,23.83041645594785,4.111251707594124,0.3263414634146341,0.2582926829268293,0.2095121951219512,0.2058536585365853,11.289003261415717,6.15395814824615,16.54683103592063,11573.004443708858,46.67738836610891,12.773842501130622,15.042290688021724,9.485543836624576,9.375711340331993,0.5795121951219512,0.8026440037771483,0.680119581464873,0.5948777648428405,0.1244075829383886,0.7321274763135228,0.9225181598062954,0.8485714285714285,0.7537688442211056,0.1105527638190954,0.5192242259271861,0.7260061919504643,0.6204453441295547,0.546969696969697,0.1286821705426356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0049878851164346,0.0068908125881648,0.0092247361095589,0.0114618717328071,0.0139403690277381,0.0159267491893876,0.0180503940866582,0.0201993355481727,0.0223236675912752,0.0241564220606781,0.0262639122756581,0.0283422459893048,0.0306417878154074,0.0328716509102918,0.0347515897223801,0.0366905953157856,0.0389533556141407,0.0410377505695353,0.0430264433349662,0.0586735759956538,0.0725018586192814,0.0855070486107466,0.0981271043771043,0.1110384266390934,0.12722309800146,0.138343949044586,0.148852319326836,0.1588576194345836,0.1677172033889205,0.1791068924603602,0.1908482989584575,0.2006099553425552,0.2099770014237214,0.2185502710803543,0.227378602009805,0.236405905956253,0.2439172749391727,0.2525736881576256,0.258705897191868,0.2648881578185272,0.271023219850512,0.275489998458565,0.2802146999843898,0.2845205079550431,0.2893279559946227,0.2927406628090478,0.295985833853523,0.299697916531615,0.3031676600018501,0.3003196180766274,0.2979069350860512,0.2956753855714366,0.2944881205750771,0.2919364682415636,0.2888231597983172,0.286173226352688,0.2867509440157609,0.2875911909928072,0.2874110534481836,0.2889962365893389,0.2900506569574165,0.2904938815775665,0.291459536925075,0.2920087641152818,0.2928060361649538,0.2941963396237156,0.2986054400402035,0.3038845804513379,0.3058327089166699,0.3100158263621976,0.3154203143128362,0.3187046761690422,0.3226049029929312,0.3269570062215619,0.3310217290799815,0.333383640205252,0.3420582986317668,0.3444771329232415,0.3449980981361734,0.0,2.5657918194040685,50.16405626612505,146.16503801822375,225.25788001011813,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95736,47445,449.95612935572825,5133,52.39408373025821,4057,41.8860198880254,1633,16.733517172223614,77.3612597271838,79.72609462991721,63.34108899169471,65.08890767538153,77.1485593584723,79.51498157222127,63.26042299442117,65.01086769452944,0.2127003687115092,211.1130576959397,0.0806659972735417,78.03998085209685,210.60116,148.06509447507872,219981.15651374613,154659.78782806752,502.3473,336.87502718915573,524234.7288376368,351393.4924982852,455.83807,223.356992149686,473393.3316620707,231115.7403389364,2321.87908,1100.8973211328057,2398338.8485000418,1123034.1239422122,965.19324,443.3916359417635,994984.3319127602,450069.7455468061,1591.96486,686.9205125564786,1632537.185593716,691289.9362506733,0.37977,100000,0,957278,9999.14347789755,0,0.0,0,0.0,43669,455.6175315450823,0,0.0,41278,428.3655051391326,1242631,0,44645,0,0,0,0,0,90,0.940085234394585,0,0.0,0,0.0,0,0.0,0.05133,0.1351607551939331,0.3181375413987921,0.01633,0.3550928531232414,0.6449071468767585,23.5411343560827,4.183823277949657,0.3049051022923342,0.2625092432832142,0.2164160709884151,0.2161695834360364,11.54929227834864,6.32934377474257,17.604764378022296,11560.210559717532,46.42871342546928,12.973214874335506,13.834533245926057,9.776502651062293,9.844462654145437,0.5698792210993345,0.7830985915492957,0.6855295068714632,0.5842824601366743,0.1334093500570125,0.7278797996661102,0.9174107142857144,0.845679012345679,0.7393364928909952,0.1441860465116279,0.5036726128016789,0.6855753646677472,0.628696604600219,0.5352323838080959,0.1299093655589124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238632104618,0.0046435234001135,0.007123865965781,0.0093364895205778,0.0117258212142784,0.0139712022158408,0.0162237676666734,0.0183897483024455,0.0207551606735714,0.0228398853398853,0.0250479324946428,0.0275663739536794,0.0294761958634591,0.0318729203795082,0.0340536189709615,0.0361215354237095,0.0383986082057867,0.0405225909553161,0.0426337243157807,0.0446669514571199,0.058493087750073,0.0726277448661321,0.0860553422703337,0.09877296098079,0.111177859280806,0.1263477231406705,0.1370114308739634,0.1465008140116409,0.1559455648607075,0.1651157804459691,0.1772078299631759,0.1891003104615817,0.1991563199895627,0.2078482811389845,0.2167522344741153,0.2263276123449413,0.2356823528100159,0.2444806471546542,0.2524965145143557,0.2597280717817249,0.266568006289599,0.2716363848805281,0.2762723692147563,0.2805503005340166,0.284645330293365,0.2896254842875592,0.2943535290443473,0.2976987686951218,0.3008965187130493,0.3037336955804967,0.3014619843714274,0.2984920896506262,0.2962020332691199,0.2933493057760586,0.2912696292338291,0.2878862037320281,0.284170616113744,0.2845420597484276,0.2847702421909596,0.285569214323891,0.285011779664186,0.2866711451829605,0.2865724751439037,0.2875758657622277,0.2882218753751951,0.2887087102745261,0.2915977411442587,0.2951577887549948,0.2984860166818532,0.302498017446471,0.3066400942114322,0.3087075402250499,0.3145241654210264,0.318660647103085,0.3219317760474601,0.3243939571378381,0.3289971260021176,0.3313906752411575,0.3224467201771381,0.3230403800475059,0.0,1.9243992935259773,52.35165916363532,147.72230609773226,212.813062787177,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95644,47473,452.1872778219229,5014,51.074819120906696,3984,40.98532056375726,1507,15.23357450545774,77.2430810454354,79.64775016488463,63.27207635196621,65.05012222523021,77.04506688585455,79.45792860580207,63.1948423616352,64.97970923911649,0.1980141595808504,189.82155908256004,0.0772339903310168,70.41298611372326,211.15886,148.56773493223193,220775.85630044749,155334.08779665417,501.40047,336.79846355870103,523580.8832754799,351482.812749747,458.00358,224.44160942483305,475534.1056417548,232030.8121675661,2293.54872,1092.7046432973182,2360454.4770189454,1104967.700512976,933.46119,426.6334565646089,957693.9902137092,427846.679787944,1468.48272,642.1488394841297,1486360.796286228,628487.5998753415,0.38016,100000,0,959813,10035.266195474886,0,0.0,0,0.0,43632,455.5016519593492,0,0.0,41491,430.4713311864832,1232232,0,44246,0,0,0,0,0,84,0.87825686922337,0,0.0,0,0.0,0,0.0,0.05014,0.131891835016835,0.3005584363781412,0.01507,0.3536259541984732,0.6463740458015267,23.342503822219435,4.212566182820768,0.3232931726907631,0.2600401606425703,0.2128514056224899,0.2038152610441767,11.405780406565048,6.080134244553665,16.400503772533575,11569.177821283542,45.84110222991115,12.663089465025593,14.70834652499995,9.451239289832811,9.018426950052802,0.5835843373493976,0.8108108108108109,0.7142857142857143,0.5613207547169812,0.1096059113300492,0.7294407894736842,0.9101654846335696,0.8582474226804123,0.6807511737089202,0.125,0.5195086705202312,0.7422512234910277,0.6522222222222223,0.521259842519685,0.1048387096774193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0046456900574118,0.0068322792199222,0.0090836119042054,0.0114633873445017,0.0136055807322165,0.0156716798368595,0.0179402875347165,0.0203902159685863,0.0223441948102484,0.0244280132497872,0.0264133504492939,0.0286622238677033,0.0307110625759792,0.0328247899419889,0.0349206349206349,0.0368075915009997,0.0389865166440041,0.0410264945440171,0.043049430212797,0.0584921829278488,0.0717241234823963,0.0855504924298103,0.098214661669965,0.110286353845504,0.1256167545475721,0.1367253487457901,0.1470472210079643,0.1566449431228397,0.1656694774155432,0.1773916797064695,0.1881911618023331,0.19935512685047,0.2087600354870154,0.2184696104583232,0.2278698710693917,0.235805174765749,0.2441586546589871,0.252088898993918,0.2590248153754415,0.2655656003708855,0.2705310615375607,0.2762835317107834,0.2802922159711142,0.2849218417371206,0.2883008528442541,0.292924102666934,0.2971164142573045,0.3011679211004412,0.30394023535634,0.3018613615839769,0.2989716268120431,0.2970678250567677,0.2947618152096865,0.2935722471090738,0.2904650200082793,0.2874673008323424,0.2873865579376561,0.2879401363333504,0.2886721331975633,0.2889022353184062,0.2900441470512541,0.2913115406361904,0.2916675977029473,0.2938352218167851,0.2963494132985658,0.2968517883670438,0.3022378677395021,0.3051578947368421,0.3096442656256224,0.3117620137299771,0.3167305236270754,0.3184765502045955,0.3217027746104143,0.3280542986425339,0.3309742863882991,0.3329749654430963,0.3412907141412098,0.3464159171436358,0.3474285714285714,0.0,2.564134486133024,52.64150285618099,144.0656886592052,205.20871540816157,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95831,47564,452.9432020953553,5106,52.19605346912794,4011,41.416660579561935,1563,16.007346265822125,77.44904619750217,79.77457772617028,63.38601454967061,65.10652968128103,77.2529584973124,79.57964361797424,63.31273099460273,65.03541372168505,0.1960877001897643,194.93410819603696,0.0732835550678814,71.1159595959856,212.45752,149.3728474665685,221699.28311298013,155870.27474679874,503.6857,337.64382169404166,525159.2490947605,351895.28444838023,455.2331,222.9702096447076,472162.9222276716,230444.63055039756,2316.52088,1084.285986729349,2394370.089010863,1108646.3873994737,919.48536,413.8208747891067,949716.5113585376,422176.1018997817,1531.2626,652.6534232259996,1570614.8741012826,657677.1849323735,0.37984,100000,0,965716,10077.240141499096,0,0.0,0,0.0,43780,456.376329162797,0,0.0,41195,427.0434410576953,1237561,0,44422,0,0,0,0,0,86,0.8869781177280838,0,0.0,1,0.0104350366791539,0,0.0,0.05106,0.1344250210614996,0.3061104582843713,0.01563,0.3550751879699248,0.6449248120300752,23.516675722059045,4.199567873153049,0.3056594365494889,0.2682622787334829,0.2076788830715532,0.2183994016454749,11.043243408661771,5.7186503494395575,16.658435995880144,11496.504416626109,45.70681133395235,13.117220523239236,13.796050697749903,9.206446453164585,9.587093659798631,0.5669409124906507,0.7871747211895911,0.7014681892332789,0.5654261704681873,0.1095890410958904,0.7276595744680852,0.8909512761020881,0.8719512195121951,0.6964285714285714,0.1510416666666666,0.5003526093088858,0.7178294573643411,0.6391982182628062,0.5172413793103449,0.097953216374269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381333360339,0.0047743099550951,0.0069911621158158,0.0090409483853272,0.0111555162349878,0.0133994481382301,0.015609228918365,0.0178711764765919,0.0199693408277976,0.0218763749475601,0.023763898140083,0.0259954844006568,0.0280119243421052,0.0297960402359796,0.0321469456791906,0.034381586015951,0.0362450838335748,0.0382920481527949,0.0403104318826426,0.0424938320442219,0.0570275175766173,0.0718654274393367,0.0858196832982257,0.0979335413449315,0.1103723684487809,0.1257304688738362,0.1358398965433171,0.1464301665284246,0.1560069559280082,0.1658545988027799,0.1784592885715514,0.1893614492972809,0.2001042209484106,0.2091553906591008,0.2176504813867451,0.2278690880152089,0.2364221521877123,0.2446943425024971,0.2521165338645418,0.2580844137300817,0.2641370078013202,0.2694806330841274,0.2746691514708311,0.2795689933222635,0.2840086217335497,0.28927294837307,0.2929869611827179,0.2963620005828908,0.3003352675693101,0.3024618375765219,0.2999932980363246,0.2967829446743211,0.2947675396780887,0.2921191548120765,0.290067653401873,0.2865903764798977,0.2839659397976497,0.2837661702890286,0.283865503514864,0.283564650899306,0.2839382282432959,0.2841220716132571,0.2849273494501839,0.285907798898561,0.2876676370925404,0.288422355763031,0.2886455363946826,0.292115588216977,0.2968216351850561,0.3024899850757992,0.305021222794184,0.3070633539062088,0.3102628285356696,0.3122833458929917,0.3146866230121609,0.3157400891391039,0.3207575757575757,0.328965934287442,0.3282401091405184,0.335469280060309,0.0,1.6562562889643535,51.61353467048122,147.53429966986607,207.33302893307243,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95795,47860,455.4413069575656,5174,52.57059345477321,4113,42.22558588652852,1634,16.597943525236182,77.3497797498425,79.68080838810538,63.33168066437421,65.05897791792066,77.14228714744591,79.48121178507651,63.25182116495247,64.98547013788996,0.2074926023965844,199.5966030288656,0.0798594994217438,73.50778003069536,210.92764,148.446141732204,220186.2518920612,154962.0906458626,500.74554,336.01587402325305,522042.6535831724,350082.6066237832,461.64736,226.50054247301716,477731.75009134086,233219.84495636864,2369.85344,1116.3046943084885,2435118.99368443,1126594.054291444,971.32321,441.7346756376276,994225.9721279816,441564.6620264365,1595.58346,687.3864444324122,1622336.092697949,679051.9238923129,0.38069,100000,0,958762,10008.46599509369,0,0.0,0,0.0,43529,453.6771230231223,0,0.0,41690,430.9515110391983,1238126,0,44393,0,0,0,0,0,82,0.8559945717417402,0,0.0,0,0.0,0,0.0,0.05174,0.1359111087761695,0.3158098183223811,0.01634,0.3451917732073374,0.6548082267926626,23.682881242879365,4.134401332588388,0.3082907853148553,0.2569900316070994,0.2144420131291028,0.2202771699489423,11.129373876326309,5.879700038587597,17.47822407982152,11545.572731344557,46.90277178274851,12.92819022138977,14.252236474173223,9.839759078019206,9.8825860091663,0.5696571845368344,0.8088930936613056,0.6703470031545742,0.6145124716553289,0.1059602649006622,0.7259136212624585,0.9253393665158371,0.8376068376068376,0.7081339712918661,0.1138613861386138,0.5049845307665864,0.7252032520325203,0.6063249727371864,0.5854383358098069,0.1036931818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044713922151135,0.0068910223882111,0.0091842851192229,0.0115756281151459,0.0140013237615192,0.0159563621533442,0.0180986699059849,0.0202175068481949,0.0224160167045384,0.0244900051255766,0.0266340842351684,0.028728895469595,0.0308094693810303,0.0329059344150686,0.0348836007811612,0.0371206161235559,0.0392813799827813,0.0413125246773757,0.0431468910082878,0.0581011997913406,0.0719880368515168,0.0852497851198088,0.098109281232593,0.1102467613235092,0.1252511367241197,0.1358206738521599,0.1464899675341955,0.1557772839928211,0.1646784955695252,0.1769225795327183,0.1891906519597761,0.1996583874582503,0.2093409717059518,0.2178017383650566,0.2273951349254723,0.2360012053975021,0.2435244232997042,0.2513247024383602,0.2583360051298493,0.2645936003331713,0.270405836753306,0.276108455969337,0.2810355770036762,0.2844760609886375,0.2892413402455392,0.2937221132094337,0.2974409173542162,0.3000698468543046,0.3027889496934133,0.3005221791559,0.29799501850858,0.2961951164559101,0.2937849020572321,0.2923687260408308,0.2888456887446616,0.2858024105532884,0.2859672421425409,0.2869577089804417,0.2882707679132172,0.2885554453778368,0.2894929038116105,0.2911164967407655,0.2916313889755358,0.2935949027498323,0.2940840388510881,0.2937691348225422,0.2967510153077163,0.3010360172437769,0.3057864199466834,0.3092238927265339,0.3116494141138143,0.3152207857098245,0.3185336976320583,0.3204327147253567,0.3215704603879411,0.3245614035087719,0.331018059138718,0.3347627981774323,0.3366298972993534,0.0,2.765937236129588,51.71574702154114,148.7459641781096,216.95871393061532,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95796,47833,455.8541066432836,5118,52.256879201636806,4018,41.30652636853313,1545,15.773101173326651,77.41775944651599,79.7478359876685,63.37436231324406,65.09601815434175,77.2233647666072,79.55343662001322,63.301731831249626,65.02509687155444,0.1943946799087825,194.3993676552793,0.0726304819944374,70.92128278731025,212.71492,149.62988716631804,222049.89769927764,156196.38311236174,505.57645,339.13855493539006,527143.9621696104,353401.95304124395,458.06388,224.57704404841832,473558.35316714685,230890.6076487687,2313.03912,1086.039940906544,2380710.301056412,1100032.9632036588,935.73534,430.1856375852444,959201.3340849304,431539.40516305313,1508.24876,641.8409103155357,1541746.1689423358,644064.7231257652,0.38219,100000,0,966886,10093.177168148984,0,0.0,0,0.0,43884,457.43037287569416,0,0.0,41497,428.640026723454,1233420,0,44218,0,0,0,0,0,95,0.9812518267986136,0,0.0,1,0.0104388492212618,0,0.0,0.05118,0.133912451921819,0.3018757327080891,0.01545,0.3533370723499719,0.6466629276500281,23.61021139876151,4.117684866812889,0.3061224489795918,0.2625684420109507,0.221005475360876,0.2103036336485813,11.168385153579678,6.001896320645415,16.470448883697735,11523.210070749808,45.76108728575655,12.870714921913969,13.739757167282942,9.888972354438916,9.261642842120729,0.5769039323046292,0.809478672985782,0.6910569105691057,0.5900900900900901,0.1065088757396449,0.7564322469982847,0.9361233480176212,0.85625,0.7663551401869159,0.1067415730337078,0.5035063113604488,0.7138103161397671,0.6329670329670329,0.5341246290801187,0.1064467766116941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025415405178262,0.0048452657293746,0.0071130683605442,0.0094858930348763,0.0116021312942324,0.0139358280060263,0.0160024462338191,0.0184024659100187,0.0205646067989942,0.0227514635444385,0.025020500205002,0.0271715699357408,0.0289773136108055,0.031018366002306,0.0330260661552421,0.0350030985333608,0.0368825739152031,0.0389483832844362,0.0406689866514309,0.042734597847134,0.0569443285201569,0.0711582688689107,0.0847868013919751,0.0976145208558733,0.1095301787237627,0.1256206554121152,0.1369616337944622,0.1472630045820354,0.1566801101081877,0.1655222649513138,0.1777091914097366,0.1885579717190048,0.1993312198723238,0.2090502183406113,0.2173316050793093,0.2265889432117337,0.2360047700246302,0.2441050976869526,0.2517525282839379,0.2580836954036131,0.2648733555860986,0.270109710550887,0.2756849921495945,0.2809846183288281,0.2860087543802214,0.2901586911059171,0.2932328011284906,0.2969713894036709,0.3008988996228754,0.3037210464703329,0.3011178357197493,0.2979847898306015,0.2956464324347105,0.2938811969629298,0.2917864233014312,0.2887667048491791,0.2846572532933659,0.2845928663712038,0.2839183174204071,0.284159119161783,0.2846301579310473,0.2852547758208135,0.2853636722893571,0.2867273895795935,0.2875776397515528,0.2887262003311258,0.2883012684690793,0.2923105682951146,0.2954055744769583,0.2986951737148247,0.3021190261496844,0.3043615510075235,0.3075290298414284,0.310220078384082,0.3134746474927631,0.3173349056603773,0.3183560803557737,0.3188580619219944,0.3237274441152706,0.3228376327769347,0.0,2.395164098475314,50.37892619117433,146.99493743521126,210.84265444526685,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95721,48031,457.9872755194785,5178,52.89330449953511,4118,42.43582912840442,1584,16.140658789607297,77.3893283971574,79.74911468592416,63.35181630130408,65.09300719584026,77.19419448313289,79.55851257346552,63.277365778520696,65.0232525688711,0.1951339140245096,190.60211245863456,0.0744505227833798,69.75462696915713,211.01938,148.53195835432896,220452.5443737529,155171.75787374657,502.62405,336.86880805255674,524524.5870812048,351359.61602214427,461.8905,225.8768160249971,479059.40180315706,233351.02512143968,2355.1504,1107.6759332545869,2427021.6566897547,1123931.4579825737,981.65178,442.7774257223944,1009536.9145746492,446645.9689350389,1549.47938,658.1017789355341,1580740.2973224267,654823.1103325486,0.38475,100000,0,959179,10020.570198806949,0,0.0,0,0.0,43731,456.25306881457567,0,0.0,41872,433.8964281610096,1238261,0,44389,0,0,0,0,0,80,0.8357622674230315,0,0.0,1,0.0104470283427878,0,0.0,0.05178,0.1345808966861598,0.3059096176129779,0.01584,0.3484314089474661,0.6515685910525338,23.40729668331805,4.140133671848964,0.307673627974745,0.2625060709082079,0.2183098591549295,0.2115104419621175,11.299456122410476,5.998205050952426,16.787033843811617,11591.6323244109,46.949606435250814,13.116621464403504,14.361490214735568,9.849681646593504,9.621813109518236,0.5876639145216125,0.8251618871415356,0.7119179163378059,0.5661846496106785,0.1343283582089552,0.7352445193929174,0.9186046511627908,0.8727810650887574,0.6796116504854369,0.1981132075471698,0.5279672578444747,0.7634408602150538,0.6533907427341227,0.5324675324675324,0.1138088012139605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020053272835917,0.0044594443937689,0.0065832851505837,0.0088238579247179,0.0111524541498922,0.0133135191254605,0.0156530246209033,0.0178159629395318,0.0198228207669592,0.0220712378106805,0.0240291013423506,0.0263676283498173,0.0284730785039046,0.0303036541430777,0.0325478265353478,0.0348875661375661,0.0369289064198527,0.0390651743203012,0.0410170055299155,0.0429419731222002,0.0575495243366297,0.0712118041021347,0.0846156266717014,0.0976499658272435,0.1105594383479333,0.1261157409365878,0.1362122369314324,0.1474120126897609,0.15729760912762,0.1666934731559816,0.1776976093043291,0.1890374505095086,0.1999499880406184,0.2095439087598823,0.2187503438259855,0.2286176376103597,0.2382302386320512,0.2465724151117409,0.2544532437768045,0.260077204155737,0.2671716003700277,0.2731512325116589,0.2795711634614248,0.2837001663614711,0.2879570988328359,0.2919455655084161,0.2949221191589369,0.2976104272266474,0.301423897158672,0.3039761876539307,0.3015184673012633,0.2992067630993879,0.2972677135519724,0.2943135135135135,0.2924525508542326,0.2894323570219708,0.2861979371703015,0.2859497389033942,0.2863013466012328,0.2862217801381907,0.287816417382234,0.2890578941162599,0.2899245487515111,0.2911969403864541,0.2927482833696198,0.2952425252603561,0.2950782618522913,0.2987118053394735,0.3030597377367654,0.3081295076826591,0.3118415128320576,0.3155347466989321,0.3200724456657506,0.3234940663962746,0.3233271375464684,0.3288183092013078,0.3319340329835082,0.3359825153983707,0.3331499312242091,0.3256704980842911,0.0,2.224835690460262,51.4999433247318,152.88904085790483,215.34154487155547,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95672,47910,455.8282465089055,5206,53.17125177690443,4141,42.6979680575299,1569,16.023496947905343,77.35982293729873,79.73666327567176,63.33991942654043,65.09047490441962,77.15973790892235,79.53953477782062,63.26360762648879,65.01807695529861,0.2000850283763782,197.1284978511392,0.0763118000516485,72.3979491210116,211.4629,148.70977617551665,221029.03670875487,155437.09358591505,502.34475,336.7807123795622,524481.3738606907,351427.5675010058,461.15784,225.78864443929456,478616.3976921148,233327.3339572613,2397.89884,1120.0203977797084,2472714.27376871,1137184.2894174838,964.12082,438.1501300139128,987714.9009114476,437996.020481305,1531.82664,654.5144712942031,1564671.105443599,651188.888651878,0.3828,100000,0,961195,10046.774395852495,0,0.0,0,0.0,43669,455.8282465089055,0,0.0,41837,433.8468935529727,1235555,0,44336,0,0,0,0,0,77,0.8048331800317753,0,0.0,1,0.0104523789614516,0,0.0,0.05206,0.1359979101358411,0.3013830195927776,0.01569,0.3545421110702464,0.6454578889297535,23.552145311039556,4.136863170962098,0.3276986235208887,0.2663607824197054,0.1965708765998551,0.2093697174595508,11.517177422488976,6.05753575109988,16.69314286632024,11649.585858553894,47.12087189755599,13.375846867103602,15.208845602252367,9.094013316601542,9.442166111598471,0.586090316348708,0.8041704442429737,0.709653647752395,0.5872235872235873,0.1141868512110726,0.7528925619834711,0.9082774049217002,0.8644986449864499,0.7661691542288557,0.1658031088082901,0.5172296144660525,0.7332317073170732,0.6518218623481782,0.5285481239804242,0.0994065281899109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304289707133,0.0047739228266488,0.0071627859787957,0.0095265178444476,0.011906214413535,0.0139243727416153,0.016384923424938,0.0186405746235154,0.0208788739300087,0.0230481217775595,0.0253242362775831,0.0274429340856629,0.0294679932574106,0.031579489291598,0.0339563477328052,0.0360295181594559,0.0378690629011553,0.0398805140385632,0.0418559680622121,0.0439187076602397,0.0590822659172116,0.0727973360698653,0.0868127715851124,0.0994118204105683,0.1116349713634781,0.1269402914008189,0.1382399456550582,0.148508313184999,0.1584174292311639,0.1668670301833326,0.1789986421535875,0.1911177050281023,0.201129599199051,0.210609841520007,0.2194007333913292,0.2285597181912843,0.2379745987812772,0.2452755949771227,0.252951516869861,0.2598688351970333,0.2659921369102683,0.2721096390191423,0.2775537236999278,0.2825006883836751,0.2875175825774846,0.2922541276051278,0.2962814923993555,0.2999377722464219,0.3032296418832469,0.3069866751018149,0.3036129361656388,0.3012283256849221,0.2988853548005742,0.29658474674051,0.2941106748648048,0.2914012495608206,0.2878833362299148,0.2877062476446396,0.2877301346255567,0.2884406350790285,0.2891392906529133,0.2900575346784363,0.28989533936368,0.2910131883799679,0.2927944097446574,0.2933923899810915,0.2941991293040086,0.2980550092098279,0.3018664252385263,0.3058600836028078,0.3122057225642883,0.3146727340070903,0.318422379032258,0.3215832257084251,0.3228375972261268,0.3249585209765347,0.3269026279811636,0.329595514617541,0.3304949441192123,0.3309406875708349,0.0,2.314821739557873,52.7631155877559,145.81530959494262,221.69372467731128,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95865,47334,450.5502529598916,5194,53.11636155009649,4099,42.2886350597194,1577,16.105982371042614,77.34109898624328,79.63212326867519,63.34986309044478,65.04425673257425,77.14673637149261,79.43871084507879,63.2769329622099,64.9735105761011,0.1943626147506734,193.4124235963992,0.0729301282348799,70.74615647314886,211.00882,148.47747022702254,220110.3843947217,154881.83406563662,501.8086,336.5462709902831,522974.48495279823,350584.1537432451,453.7501,222.2603038017444,470028.3732331925,229362.1269613013,2374.82112,1107.4640108383385,2450001.022270902,1128209.6902799,959.72119,429.58854146482224,990473.9686016794,437682.8948095981,1547.7323,652.4348901697748,1583151.0353100714,655728.8693162826,0.37969,100000,0,959131,10005.017472487352,0,0.0,0,0.0,43707,455.4321180827205,0,0.0,41192,426.4538674177229,1239266,0,44491,0,0,0,0,0,80,0.8345068586032441,0,0.0,1,0.0104313357325405,0,0.0,0.05194,0.1367958071057968,0.30361956103196,0.01577,0.3472888233124308,0.6527111766875692,23.5296376259026,4.1394156321270215,0.3130031715052452,0.2612832398145889,0.2041961454013174,0.2215174432788485,11.155304034654296,5.938372101866078,16.82708124068761,11503.303214680604,46.86881428367902,13.09963843026374,14.675140469547202,9.239016130239852,9.855019253628228,0.5772139546230788,0.8151260504201681,0.7131722525331254,0.5519713261648745,0.1277533039647577,0.7495812395309883,0.9282407407407408,0.8940217391304348,0.6938775510204082,0.1464646464646464,0.506368330464716,0.7386541471048513,0.6404371584699453,0.5085803432137286,0.1225352112676056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0046103494746228,0.0067654606497682,0.0088837898755254,0.0112312727420567,0.0135756736953512,0.0157400898560469,0.0176587605202754,0.0198455661552918,0.0219830804955143,0.0242658281008327,0.0262556023917212,0.0282550866345531,0.0302690467616646,0.0321586810922205,0.0342859501914522,0.0362209446604351,0.0382519322820613,0.0402184294672148,0.0423021702490688,0.0568294386919844,0.0704596283677863,0.0835550434691526,0.0962277624918611,0.108427137847884,0.1238157602898152,0.1341624908626699,0.1451642054455182,0.154832789124357,0.1640732167352537,0.1764288097108483,0.1884813356979108,0.200163052339801,0.2085446358310745,0.2171473830110223,0.2263795662479785,0.2353610513046485,0.244480683799134,0.2519995008338344,0.2591218730322285,0.2651616783087385,0.2712320119705879,0.2763529731711066,0.2808484137154628,0.2848940251037898,0.2893647429895027,0.294389133480088,0.2979426798565724,0.3007021945195205,0.3039235080778107,0.3016009686533028,0.2981296466805008,0.2961049564323822,0.2926772859992483,0.2910412270011592,0.2870809735190571,0.2841319070827267,0.2837058813868313,0.2841002465078061,0.2848775769733661,0.2856471737823211,0.2852475894430475,0.2868864499611777,0.2883951392314246,0.2903700487287113,0.291130971046305,0.2917213068019841,0.2959488809846076,0.3000454879456944,0.3039215686274509,0.3081492902816198,0.3122358410819949,0.3141065830721003,0.3178107045660719,0.3219718309859155,0.3243211334120425,0.3296770262035344,0.333199759567221,0.3395867319195215,0.3401983218916857,0.0,1.7747309311876465,52.43543327830648,151.41792031535715,214.23940498115837,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95651,47497,452.7605566068311,5127,52.44064358971679,4014,41.47369081347816,1559,16.006105529476955,77.31769350596971,79.74034047417611,63.289715480586615,65.08150546507544,77.1230023240041,79.54691566910262,63.21735846621606,65.01184923605395,0.1946911819656094,193.4248050734908,0.0723570143705529,69.65622902148993,211.85472,149.06126287693948,221487.19825197852,155838.6873916002,505.46358,338.6613721813109,527923.0431464387,353536.776595447,454.20526,221.8809113882116,471717.50426027953,229547.17976751237,2329.50016,1080.8698389401145,2409064.9967067777,1103662.731116365,952.33346,423.3733927538245,982485.6614149356,429475.1678015129,1520.92706,635.9804622837613,1562712.7996570866,640032.9864423792,0.38094,100000,0,962976,10067.59992054448,0,0.0,0,0.0,43944,458.8869954313076,0,0.0,41169,427.3034259965918,1231372,0,44131,0,0,0,0,0,98,1.0245580286667155,0,0.0,0,0.0,0,0.0,0.05127,0.1345881241140337,0.3040764579676224,0.01559,0.3455663189269746,0.6544336810730254,23.538142045617192,4.224311208737063,0.317887394120578,0.2516193323368211,0.2164922770303936,0.2140009965122072,11.151397454902169,5.837093053587795,16.4573053956175,11611.368346756244,45.62291369422779,12.272301257022503,14.386242096968394,9.73194354775402,9.232426792482878,0.5752366716492276,0.810891089108911,0.6974921630094044,0.5834292289988493,0.1082654249126891,0.7710736468500443,0.9528301886792452,0.853448275862069,0.695,0.1870967741935484,0.4987876688604087,0.7081911262798635,0.6390086206896551,0.5500747384155455,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198800551098,0.0047154504522776,0.0068934010152284,0.0090244819561174,0.0113545026300528,0.0138447432762836,0.0159039438516312,0.0183185361517792,0.0202020202020202,0.0224071834190942,0.0246984550633885,0.0266207392936095,0.0284934610235815,0.0304721428497746,0.0326283488485023,0.0346758004097766,0.0369314352663065,0.0387747470760537,0.0407738497882215,0.0430597559703827,0.0572270584915716,0.0712511918857466,0.0848773212335097,0.0978661554989151,0.1104821847213128,0.1260948305991251,0.137762475558956,0.1481288039481117,0.1579324583079276,0.1673970483985306,0.1799844673598826,0.1912558240329396,0.2027206587087218,0.2116928198333351,0.2206318248432558,0.2299434401685705,0.2383660517759578,0.2461604287708868,0.2541232023064961,0.2606075879765396,0.2670409167197176,0.2732122176339155,0.2785472453062481,0.2829738511156138,0.2872824078576291,0.2911969444957802,0.2944634124989057,0.297730884128901,0.3010701207282514,0.3039996834023692,0.3023415421881308,0.2992304521093857,0.2966042088678821,0.2930099775073533,0.2910375890833123,0.2878831893586117,0.2851791556686529,0.286427227358259,0.2872581221600095,0.2886479003230272,0.2882815842836679,0.288341633661425,0.2889588859416445,0.2892697400469421,0.2906068400495379,0.293596466303309,0.2960004516074402,0.3013898821554056,0.3051654616240267,0.3108390094098193,0.3139724537876042,0.3174427198817443,0.3200300262729889,0.323047906450396,0.3263099011747156,0.329149560117302,0.3318154219793564,0.3367711225704086,0.3406385281385281,0.3370955605718585,0.0,1.9049062350568755,49.29870143684575,149.17804108300817,212.9576183538761,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95698,47516,452.26650504712745,5204,52.95826454053377,4102,42.15344103325044,1584,16.050492173295158,77.34880342590687,79.70598455865118,63.338894218876014,65.07690098547803,77.13849460594254,79.50486994251558,63.25729028449964,65.00297250806116,0.2103088199643252,201.1146161355981,0.0816039343763748,73.92847741687092,211.26534,148.5981321891554,220762.54467178,155278.20036903114,500.60497,336.7084640850518,522413.84354949946,351149.5476238289,460.70268,226.3194193610422,477903.0178269138,233790.45947515857,2341.59056,1119.6944273288184,2405671.842671738,1128846.692019497,939.56543,431.265359456562,964837.6977575287,433695.2041714414,1539.32698,669.4502132780925,1560430.6464084934,654984.357589471,0.38059,100000,0,960297,10034.661121444546,0,0.0,0,0.0,43489,453.71899099249725,0,0.0,41769,432.9139584944304,1235644,0,44335,0,0,0,0,0,105,1.0972016134088487,0,0.0,3,0.0313486175259671,0,0.0,0.05204,0.1367350692346094,0.304381245196003,0.01584,0.3483063328424153,0.6516936671575847,23.36451528940332,4.169173850508302,0.3217942467089225,0.2564602632862018,0.2155046318868844,0.2062408581179912,11.621920978231657,6.412332835516148,17.058907873044742,11555.585251638036,47.16661001827655,12.823340494216245,15.057884858357443,9.97884930789052,9.306535357812338,0.5867869332033154,0.8127376425855514,0.7037878787878787,0.6040723981900452,0.1052009456264775,0.7472089314194578,0.9402298850574712,0.8809523809523809,0.7272727272727273,0.0954773869346733,0.5161516853932584,0.7228525121555915,0.6326963906581741,0.557632398753894,0.1081916537867078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898008161777,0.0046425820054332,0.0072548323271269,0.009579536565792,0.0118147063608264,0.0138545324986002,0.0160335144281243,0.0182913136674492,0.0205508149813499,0.0226398100384835,0.0246194844462665,0.0267671117588496,0.0290549432472446,0.0311644188201379,0.0330926346193521,0.0351839796645897,0.0372966648373836,0.0393458952436291,0.0415709190729206,0.0432965842069066,0.0574534972375113,0.0714995970232051,0.0852867725756017,0.0982364577633738,0.1105566866751764,0.1258000698242755,0.1366168932471584,0.1469066127143009,0.1569442515040446,0.1659746140062875,0.1781431480503808,0.1887864424388027,0.1989447919499592,0.20825903845102,0.2167084874097552,0.2257538983276257,0.2353000323997005,0.2426473899923433,0.2509197856104651,0.2584932684044686,0.2653314037626628,0.2708650178993425,0.276613876855337,0.2816823795776082,0.2859120214664707,0.2904747244627794,0.2942330521711965,0.2978474675341178,0.3010055057254375,0.3037240979568179,0.3009751832672002,0.2982280081932282,0.2958860536797512,0.2942323243992606,0.2919271258667538,0.2901726326090613,0.2869606448553817,0.2872812402796195,0.2866563293403991,0.2875690115761353,0.2867430319764188,0.2864561817645323,0.287054995933179,0.2872138893222492,0.2893160139960696,0.2911323399615804,0.29372815368439,0.297608974961612,0.3011627500960229,0.3056477093206951,0.3097096188747731,0.3149053795449713,0.3199088145896656,0.3232910230922159,0.3253818593249104,0.3284506371323091,0.3327660891089108,0.3323064284247278,0.3383333333333333,0.3395348837209302,0.0,2.7230702589804325,54.02082323837035,149.10381730866493,210.1440601777396,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95626,47687,455.7442536548637,5148,52.55892748833999,3987,41.003492773931775,1501,15.32010122769958,77.26744378178137,79.68403438018196,63.28338998351626,65.07002043207464,77.06932344308315,79.48911229354879,63.20889308877897,64.99930461278495,0.1981203386982173,194.92208663317,0.0744968947372868,70.7158192896884,211.25786,148.6029334966097,220920.7119402673,155399.90535692152,501.52224,337.42846059453564,523705.1324953464,352105.58906002087,458.71342,225.4590966859568,475345.680045176,232441.0036884304,2283.92704,1083.0830290276274,2350810.0307447766,1095038.5763575053,930.99719,424.2619485938304,958665.1015414218,428850.8457214028,1470.49358,628.6311310941466,1501759.4168949868,626211.4039059599,0.38176,100000,0,960263,10041.85054273942,0,0.0,0,0.0,43571,454.9181185033359,0,0.0,41539,429.987660259762,1233511,0,44205,0,0,0,0,0,98,1.014368477192395,0,0.0,1,0.0104574069813649,0,0.0,0.05148,0.1348491198658843,0.2915695415695415,0.01501,0.3553857622064852,0.6446142377935147,23.497795675005623,4.199738689199249,0.3069977426636568,0.272385252069225,0.2066716829696513,0.2139453222974667,11.40909835650298,6.041913954953163,16.079519844728605,11602.078647557348,45.793791620015575,13.274027484579674,14.003627541767385,9.144522411684411,9.371614181984098,0.5849009280160522,0.8103130755064457,0.7140522875816994,0.5861650485436893,0.1113716295427901,0.7569386038687973,0.9161147902869756,0.8847262247838616,0.7333333333333333,0.1804123711340206,0.511794138670479,0.7345971563981043,0.6465222348916762,0.5405405405405406,0.0910470409711684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0048266071790711,0.0069444444444444,0.0088915535322331,0.0111394825990091,0.0134130443638733,0.0156616432489752,0.0176418340156612,0.0199286291270871,0.0218635753858127,0.0239782575252551,0.0258865102518798,0.0276623323183277,0.029870892623466,0.0317196531791907,0.0338581781715549,0.0359391830309056,0.0378647125374962,0.0400062412232797,0.0420493999645504,0.0569502508361204,0.0715991453349532,0.0853689273487219,0.0973064611237469,0.1097786270018051,0.1251680943657945,0.1360083266069076,0.1466021590170398,0.156378688857751,0.1657556460013531,0.1772946391018797,0.1885310716103944,0.19956904057113,0.2095333975312965,0.2187995420116258,0.2288543986174349,0.2377428823339025,0.2460224587618426,0.2537465940054496,0.2601395876548586,0.2661441570770335,0.2719308505661083,0.277548266433078,0.2823664863697965,0.2863063982886036,0.2908880089800046,0.2944393687187895,0.2975292786205669,0.3021657238281401,0.306578304664088,0.3045153814021802,0.3023527793065492,0.3000563459642203,0.2980054921231392,0.2955552252118329,0.2926586542141927,0.28989913384954,0.2903902574945501,0.2903313833506728,0.2900926585887384,0.2918381857645385,0.2923718759886112,0.2937049757078238,0.2938354789049776,0.2945725264169068,0.2956025634345855,0.2965542730425883,0.3006337056092358,0.3050182225960191,0.3092816274634456,0.3130948023426061,0.3153442552735839,0.3193448035045394,0.3264586368166833,0.3289002075080173,0.3328554360812425,0.3385328185328185,0.35,0.3493053586617522,0.3418734987990392,0.0,2.6396477521762405,51.157070117555016,148.8676775707823,204.02683200343972,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95848,47576,453.79141974793424,5076,52.00943160003339,4003,41.29454970369752,1564,16.0462398798097,77.40182060844235,79.71441349396159,63.36325590393732,65.0751832634327,77.20832525878865,79.52113334229233,63.291604594736754,65.0055234769026,0.1934953496537019,193.2801516692564,0.0716513092005683,69.65978653011007,213.1074,149.860955738161,222338.91161004925,156352.7207016954,504.1332,337.5120429652413,525513.9596027043,351675.0093536028,453.96456,222.04370684509624,470066.2715966948,229060.61829267285,2317.46332,1069.9923642188446,2393503.296886737,1091993.6610245858,932.54404,416.7024022302221,963604.6865870962,425417.5175592832,1525.38088,641.3933240938499,1566317.2940489107,648272.5770957123,0.37918,100000,0,968670,10106.314164093148,0,0.0,0,0.0,43864,457.1509056005342,0,0.0,41001,424.2237709707037,1232185,0,44267,0,0,0,0,0,79,0.824221684333528,0,0.0,1,0.0104331858776395,0,0.0,0.05076,0.1338678200327021,0.3081166272655634,0.01564,0.3472117558402411,0.6527882441597589,23.89440841152257,4.256701234672662,0.317262053459905,0.2500624531601299,0.2188358730951786,0.2138396202847864,11.223681649460383,5.964538476301585,16.681474060481264,11465.64116379051,45.548979967864966,12.176834660675771,14.2268382365492,9.80268686868448,9.342620201955508,0.5663252560579566,0.7902097902097902,0.6708661417322834,0.5878995433789954,0.1273364485981308,0.7477396021699819,0.9166666666666666,0.873015873015873,0.7692307692307693,0.1489361702127659,0.4970659302726959,0.7032040472175379,0.6041884816753926,0.5359765051395007,0.1212574850299401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020049008687903,0.0040438232879627,0.0062289493973947,0.0083589790466904,0.0105631296957127,0.012673561627102,0.0148397288895683,0.0169830577668912,0.0189606885131958,0.0211354820220464,0.0235046896622418,0.0256702385351233,0.0279382439405464,0.0297563888717283,0.0316235701834909,0.0337580210173905,0.0356710315201076,0.0377133495095294,0.0397083415561349,0.0418162706713707,0.0566622168453548,0.070426510558227,0.0837018253452648,0.096552593432911,0.1085905658588986,0.1236178144835088,0.134249941740991,0.1443056810331083,0.1545389548718933,0.1633678212625581,0.175653296053339,0.1867356639730348,0.1981948713492848,0.208034778049633,0.2171093844446154,0.2264965305060923,0.2352888710504604,0.2433009621436921,0.2506945153133539,0.2577224052718286,0.2633398067230776,0.2692550357526756,0.2757715812243643,0.2796033722935428,0.2848265650411438,0.2884560932671829,0.2924573114327858,0.2971757441780691,0.3010200783482229,0.3043335089567966,0.3016148100381536,0.2989291598023064,0.2971477523277206,0.2941007111392624,0.2913164437078253,0.2879056137244726,0.2843127977035424,0.2849927260244863,0.2839884294708184,0.285701593844951,0.2866356011183597,0.2875,0.2877727802765284,0.2872193820849077,0.2883807523391254,0.2882750058198184,0.2882600468807365,0.2937228091982597,0.2975665636824383,0.3031578119469896,0.3073622402890695,0.3121076233183856,0.3156251950808415,0.3203101475459199,0.3203399224090153,0.3251956547132344,0.3290507859733978,0.3297145154804985,0.3319716775599128,0.3425435276305829,0.0,1.866271753321601,48.4318734502794,154.90758812660803,207.87733153415212,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95703,47561,453.7475314253472,5055,51.81655747468732,4002,41.31531926898843,1519,15.474958987701534,77.32145341825886,79.7089128947363,63.3143933609397,65.08020936263834,77.12492847278703,79.51494350444912,63.24005373810886,65.00921136871546,0.1965249454718218,193.96939028717952,0.0743396228308341,70.9979939228873,212.03424,149.14967088787057,221553.97427457865,155845.98936498002,503.1978,337.7205766906854,525279.9285288862,352374.96957071696,453.38862,221.64000430635284,471039.6852763237,229426.65985963948,2295.47572,1072.669344105639,2371746.005872334,1094154.5373552328,953.27304,429.5025944035187,985701.367773215,438536.4824780741,1477.46904,633.5418240006937,1508008.3800925782,632551.5022930077,0.38002,100000,0,963792,10070.63519429903,0,0.0,0,0.0,43773,456.8404334242396,0,0.0,41067,426.3293731648956,1234222,0,44194,0,0,0,0,0,90,0.9404093915551236,0,0.0,0,0.0,0,0.0,0.05055,0.1330193147729066,0.3004945598417408,0.01519,0.348048503220917,0.651951496779083,23.823236387974543,4.124003784377254,0.3143428285857071,0.2656171914042978,0.2101449275362318,0.2098950524737631,11.41248195658746,6.244187567215536,16.260855075218874,11480.928297942888,45.6705176708809,12.965272289699216,14.147648410612934,9.307945938399454,9.249651032169286,0.5817091454272864,0.8071495766698025,0.6923688394276629,0.6004756242568371,0.1119047619047619,0.7438811188811189,0.9155555555555556,0.8859934853420195,0.7180851063829787,0.1608040201005025,0.5167949615115466,0.7275693311582382,0.629863301787592,0.5666156202143952,0.0967238689547582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019656318391829,0.0042794848392657,0.0064560662660386,0.0086889360880478,0.0109474198274458,0.0132426045147094,0.0153584139837033,0.0175719828466408,0.01942362935626,0.0215366347984523,0.0237340961051476,0.0258680002875363,0.0281138131094926,0.0301400352406565,0.0321841453344343,0.0344396195202646,0.0363771958899569,0.0381809313282895,0.0403398573181638,0.0423445300205313,0.0572144759517468,0.0708550971915463,0.0839866091574053,0.0970851310112596,0.1090396910805849,0.1242393133446929,0.1353273329370807,0.1459245295076205,0.1556004402979492,0.1647576147576147,0.1766873148397522,0.1876136658872434,0.1974807740419653,0.2072971938077785,0.2160648667678834,0.2252059709425939,0.2335728151007385,0.2422072593608435,0.249379188352553,0.2563603471570221,0.2627896757481844,0.2680825696652328,0.2738502313144101,0.2785086142860566,0.2838146358050178,0.2876766284279454,0.2917265782267845,0.2951429914497338,0.2994522529971062,0.3035805997076524,0.3004246855176862,0.2979359938518965,0.2960564211354473,0.2940854247452105,0.2922741497708497,0.288550061937023,0.2851771099946282,0.2862054850593533,0.2866536070181416,0.2874668375977067,0.2875983038499617,0.2892907088971616,0.2901845357381429,0.2914063894342316,0.2931262154570118,0.2935473782966746,0.2959204036833252,0.300568235331052,0.3040997094142772,0.30699604743083,0.3121858443146311,0.3162913907284768,0.3193489369755851,0.323572138542702,0.3271274094969441,0.328695445356166,0.3332822790626435,0.3327925370107483,0.3345215245407184,0.3399465852727966,0.0,1.9068640921155484,50.03456656744631,149.28043151414255,210.20024200011227,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95717,47592,453.0752112999781,5270,54.002946185108186,4179,43.20026745510202,1632,16.747286270986347,77.3455376358958,79.73446425693487,63.32130932583449,65.08814401512338,77.14438510849783,79.53319600519885,63.24614997338208,65.01485295877875,0.2011525273979657,201.2682517360247,0.0751593524524096,73.29105634462962,210.97956,148.4398851427881,220420.1552493288,155082.0493149473,506.0431,338.59541296178134,528227.1905722077,353286.80690136686,458.26763,224.13394615973615,476182.86197854095,232033.98096482013,2380.47808,1103.2700930299256,2461830.1869051475,1127471.6226270413,980.32446,433.3564963030227,1011420.0298797496,439977.16842674016,1586.95608,666.733503521484,1629620.9868675366,672448.931283916,0.38158,100000,0,958998,10019.09796587858,0,0.0,0,0.0,44030,459.51084969232215,0,0.0,41432,430.2475004440173,1238676,0,44379,0,0,0,0,0,86,0.8984819833467409,0,0.0,0,0.0,0,0.0,0.0527,0.1381099638345825,0.3096774193548387,0.01632,0.3497822931785196,0.6502177068214804,23.78374137790563,4.167150954799655,0.3120363723378799,0.2656137832017229,0.2132089016511127,0.2091409428092845,11.150664806391646,5.9495528667176565,17.398458622837307,11644.08468910417,47.42251720829643,13.344749549616028,14.813641143607931,9.774187487977972,9.489939027094506,0.585307489830103,0.8036036036036036,0.7070552147239264,0.5869809203142536,0.1247139588100686,0.7363872082973206,0.892018779342723,0.8786127167630058,0.7076923076923077,0.1578947368421052,0.5274652547981469,0.7485380116959064,0.6450939457202505,0.5531609195402298,0.1154970760233918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002087153871873,0.0043004209138394,0.0065587085638864,0.009187178601191,0.0115365833808089,0.0136382155225096,0.0159083029104036,0.0180856387161341,0.020216377617801,0.0225801826895506,0.0248192400389723,0.0269001643385373,0.0289869980250164,0.0309543927621952,0.0330440346332855,0.0350570672400959,0.037052766786136,0.0391580957520782,0.0410760895562742,0.0431244660234637,0.0577429192079538,0.0717844060701203,0.0851340714698011,0.0981745488978904,0.1107384320054003,0.1261079263004252,0.1372395059632443,0.1482566188843213,0.1581704097230387,0.1666004786999967,0.1789140134939967,0.1896006583506583,0.1998519856774376,0.2092354144559069,0.2188841201716738,0.2285859883901271,0.2377503766110584,0.2457259189274306,0.254116953227782,0.2603057977980727,0.2665756878346652,0.272758080725454,0.2787313521053502,0.2825394925801819,0.2871503231517297,0.2917886038905147,0.2957801006581494,0.2985305687384209,0.3028805203520636,0.3058494211031238,0.303406652360515,0.3009436158702768,0.2990570273911091,0.2969332393109502,0.2957600674366672,0.2922776744611445,0.2891206918318394,0.2895935758767617,0.2906590316478347,0.2916347302187126,0.2923966756513926,0.2931868913339786,0.294803617787455,0.2959609251287999,0.297161776348936,0.299368026839354,0.2997246586618978,0.3046799186101111,0.3095362896180592,0.3141175076059899,0.315972850678733,0.3172803038295179,0.3194453120119933,0.3243692400664753,0.3292420125550454,0.327266238401142,0.332823259372609,0.3336711939995945,0.341861731083288,0.3442307692307692,0.0,1.8254679944012064,50.68324784531144,155.04066751590412,224.62807045065503,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95610,47340,450.4758916431336,5233,53.36261897291078,4102,42.2863717184395,1593,16.28490743646062,77.23812690061078,79.66930998210414,63.25655152000609,65.05418414679171,77.02952625414152,79.4618413375164,63.17789267351482,64.97809743885904,0.2086006464692644,207.46864458773476,0.0786588464912725,76.08670793267436,210.98572,148.42071885152748,220673.2768538856,155235.55993256718,501.85822,337.1459790701087,524279.65693965065,352004.53830154653,453.65978,222.80871360049423,470529.6098734442,230004.55989574452,2348.53412,1105.3859899033062,2423947.5368685285,1123719.3911759297,957.08983,430.2791446689928,987763.2988181151,436764.24796757015,1555.0888,666.7858213026997,1592487.5640623365,670775.7176691472,0.38074,100000,0,959026,10030.603493358436,0,0.0,0,0.0,43738,456.8036816232612,0,0.0,41161,426.50350381759233,1231354,0,44185,0,0,0,0,0,70,0.7321409894362514,0,0.0,0,0.0,0,0.0,0.05233,0.1374428744024793,0.3044142939040703,0.01593,0.3612844036697247,0.6387155963302752,23.54375861364214,4.147494967654293,0.2986348122866894,0.2720624085811799,0.2152608483666504,0.2140419307654802,11.21480157285661,5.900149271410992,17.024638821804565,11549.738998574445,46.91380803545423,13.589805795868427,14.005472324021348,9.73550286166077,9.583027053903686,0.5748415407118479,0.7921146953405018,0.6979591836734694,0.5843714609286523,0.1173120728929384,0.7397145256087322,0.9157175398633256,0.8497109826589595,0.7333333333333333,0.1581632653061224,0.5073857780831329,0.7119645494830132,0.6382252559726962,0.537890044576523,0.1055718475073313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022498783849521,0.0045439331392695,0.006467793030623,0.0093003872620269,0.0113580850024425,0.0138553541774911,0.0161762456015095,0.0183569648183712,0.0205592946423091,0.022799901671583,0.024963319413521,0.0267976408211915,0.0289416535441174,0.0313911053380342,0.0333663795774211,0.0356562677841585,0.0375684193066843,0.0397120538496696,0.0418349502435774,0.0437404158103921,0.0589403696579409,0.0724405323273603,0.0860726779917425,0.0985255397577672,0.1104505037277969,0.125659386055971,0.1368513875313416,0.1467327577017375,0.1563911061653363,0.1655996218794311,0.176624189388953,0.1875108412836079,0.1976441359470857,0.2067106445462315,0.2155909712119208,0.2253614905729473,0.235155935388608,0.243143578871397,0.2507107280129182,0.2578193175033298,0.2641257686506555,0.2703276343253828,0.276391509154119,0.2804221356796,0.2844036697247706,0.2893504503725304,0.2939117562193424,0.2971545907890877,0.3016565404787869,0.3055801711481741,0.3025964211492267,0.2996759291181134,0.2976499463973368,0.2950644087422203,0.292243623112962,0.2898099430903039,0.2867314736992341,0.2873729566161234,0.2875044938626676,0.2873536509071409,0.2876450409582544,0.2886867088607595,0.2892468382306676,0.2895420154899942,0.2903202521594764,0.2911669621441234,0.2937268320501853,0.2965302658872336,0.3010375771172182,0.3054853985793212,0.309600617929029,0.3119843452506875,0.3136050156739812,0.3175481133505076,0.3204001495886313,0.323094958968347,0.320618711518246,0.3252533280349692,0.328629579375848,0.3300641267446246,0.0,2.351342271950321,51.72341730179985,148.93339530651429,218.80283233976076,fqhc1_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95722,47554,452.3202607551033,5146,52.600238189757846,4048,41.72499529888636,1548,15.827082593343224,77.33641368994157,79.71097387857898,63.332022412709286,65.08964454015363,77.14359793533667,79.52217045946321,63.25977022409726,65.02073870621874,0.1928157546048936,188.80341911577148,0.0722521886120262,68.9058339348918,213.93548,150.5970168762858,223496.4376005516,157327.26382261733,509.24385,341.3514531725592,531432.18904745,356036.6444208845,462.04237,225.64051002053432,479108.1674014333,232869.0284831852,2634.34414,1227.8642281662967,2717315.1835523704,1248082.118673436,932.17204,423.3384233812468,957123.9213555922,425593.1570562136,1504.2691,635.461457740075,1540562.2949792107,638213.8197337828,0.38,100000,0,972434,10158.928981843255,0,0.0,0,0.0,44304,462.26572783686095,0,0.0,41837,433.55759386556906,1222424,0,43831,0,0,0,0,0,85,0.877541213096258,0,0.0,0,0.0,0,0.0,0.05146,0.1354210526315789,0.300816167897396,0.01548,0.3512810991459339,0.6487189008540661,23.71413151580005,4.092401923435555,0.3115118577075099,0.2712450592885375,0.2176383399209486,0.1996047430830039,11.04408352078105,5.8845268953553465,16.423311808349066,11507.193666755426,46.41057609605922,13.464478895895189,14.34915835376907,9.75823939822644,8.838699448168525,0.5788043478260869,0.8087431693989071,0.682791435368755,0.5698070374574348,0.1138613861386138,0.7562604340567612,0.9293598233995584,0.8456973293768546,0.7268722466960352,0.1933701657458563,0.5042105263157894,0.724031007751938,0.6233766233766234,0.5152905198776758,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024624052531312,0.0047262142618079,0.0073607797350119,0.0097162370924465,0.0120037028371463,0.0144623469741103,0.0166226455501279,0.0187155401266081,0.0206823223906842,0.0227975349589501,0.0249192763056737,0.0271965668056097,0.0293488544280366,0.0313220995385629,0.0333498431566782,0.035576962831273,0.0374723021806208,0.0393277659629648,0.0414570775306589,0.0435806095452367,0.0579194119305426,0.0718336088384842,0.0846668484301923,0.0974089451831607,0.1087093986467972,0.1242337772141196,0.1351099238906909,0.1462844017184908,0.1561942982783832,0.1650616477242295,0.1771612444980144,0.188554373215676,0.1990655221123546,0.2081872494730058,0.2170449801138236,0.2270315091210613,0.2356204672303733,0.2436152402781991,0.2504108719552971,0.2567066895368782,0.262983374348665,0.2690188203427824,0.2752813632981801,0.2791593401992799,0.2840881540028124,0.2874797107864837,0.2916583416583416,0.2957258228362454,0.2992942271399395,0.3026860321058597,0.2999609968662999,0.2972437423456399,0.2949550133059236,0.2928160836534851,0.2901946218986778,0.2872384392842382,0.2839560856772234,0.2835984910611776,0.2842980001365094,0.2845758904695689,0.2845394736842105,0.2859028407076159,0.2871528646484864,0.2873213134434539,0.2888569718731298,0.289703632639303,0.29013964092334,0.2948560641812175,0.2993197278911564,0.3051331930604629,0.3072669104204753,0.3090831282764523,0.3133052685291491,0.3174493554327808,0.3239317045561739,0.3313404280760492,0.3356342997392238,0.333736640451704,0.332972094283392,0.3388305847076461,0.0,2.1864350705968367,52.25148087569136,149.60056160407896,209.09863654546868,fqhc1_100Compliance_baseline_low_initial_treat_cost,0 -100000,95614,47646,455.0379651515468,5174,53.01524881293534,4034,41.65707950718514,1533,15.677620432154288,77.26635035352784,79.70467427179084,63.26822878755484,65.07230799661077,77.074512501756,79.51483311680083,63.19711334400885,65.00394364943182,0.1918378517718366,189.8411549900061,0.0711154435459917,68.36434717895656,211.47434,148.8634789675462,221175.07896333173,155692.13605491476,507.85856,340.5458912330238,530549.4906603636,355574.79095805675,465.32621,227.6405380154086,483556.55029598175,235638.2801255901,2608.32456,1212.9863325906983,2693021.231200452,1234435.9638092285,927.58294,414.4648887704457,957613.4875645826,421031.5460443091,1488.78012,625.1243901586422,1523137.4484908066,624992.8620669489,0.38039,100000,0,961247,10053.41268015144,0,0.0,0,0.0,44150,461.1249398623633,0,0.0,42147,437.7392432070617,1227903,0,44107,0,0,0,0,0,85,0.8680737130545736,0,0.0,0,0.0,0,0.0,0.05174,0.1360182970109624,0.2962891379976807,0.01533,0.3485016648168701,0.6514983351831298,23.595089872759832,4.134714488859929,0.3103619236489836,0.279127416955875,0.2114526524541398,0.1990580069410014,11.474036148668423,6.237596156925848,16.330653530358877,11555.902428390697,46.15988077536433,13.67182923320474,14.395476485277172,9.356453574012038,8.736121482870379,0.5922161626177491,0.7912966252220248,0.6972843450479234,0.6225087924970691,0.1170610211706102,0.7564853556485356,0.927927927927928,0.8490566037735849,0.782608695652174,0.0867052023121387,0.5230715040507221,0.7023460410557185,0.6333711691259932,0.5712074303405573,0.1253968253968254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.004980978950038,0.0073831842140006,0.0092524808849845,0.0114309562101748,0.0137285078019099,0.0159617896799477,0.0182908760205593,0.0204223622820659,0.0226252689824777,0.0247239213432406,0.0267664412145632,0.0287311358629634,0.030797306911093,0.0328561394810775,0.0349216203631848,0.0369299336650082,0.038614930829629,0.0408080429624078,0.042445795571871,0.057537712081456,0.0719771986629363,0.0847206612959131,0.0977482411425201,0.1103401662283897,0.1256818446612225,0.1372278132605022,0.1476689740499376,0.1583222740699516,0.1671537238385835,0.1792833412434741,0.1913609018481383,0.202062551727142,0.2112504792682258,0.2201161522100878,0.2292200374843353,0.2369581969867878,0.2446358212315659,0.2524731671304446,0.2594562986573718,0.2655908127944802,0.2711398242102922,0.2772036977853532,0.281491510801711,0.2853150931246886,0.2900974226168454,0.2942310822825229,0.2974569152050505,0.2997773001527825,0.3027297903204536,0.3002529465583122,0.2970554272517321,0.294843648850235,0.2916558432187491,0.2895178165951826,0.286587602396381,0.2835384639691593,0.2832226866650275,0.2841870140499249,0.2849934025177418,0.286021867745076,0.2867384220400908,0.2882136279926335,0.2879650085916404,0.2874948966113499,0.287227398115859,0.2904382470119522,0.2953916760970703,0.2990781956468403,0.3014198461172364,0.3075280541547408,0.3121922812218751,0.3149571572580645,0.3175752092286813,0.3216406829992576,0.323828444548323,0.3217904128232269,0.3284656931386277,0.3364105348900353,0.3373268438786971,0.0,1.824998793924412,52.53771894597867,147.3632014345691,209.1203874486424,fqhc1_100Compliance_baseline_low_initial_treat_cost,1 -100000,95716,47398,451.6277320406202,5145,52.72890634794601,4028,41.60223995988132,1500,15.347486313677964,77.34534288058313,79.71480301006999,63.32656324425341,65.07478884533124,77.15486043559999,79.52442072067237,63.25589198310163,65.00592480041426,0.1904824449831466,190.3822893976184,0.0706712611517801,68.86404491697817,211.47874,148.76179984184057,220943.98010781896,155419.99231250843,502.3284,336.95555919582625,524332.3373312717,351557.83692990325,454.35366,222.247364855397,471469.2736846504,229694.78512634744,2612.93395,1224.829525900377,2700359.490576288,1250127.1113506388,966.74491,440.3666839444128,996082.2850934012,446144.7343645913,1460.72456,618.8928912177438,1496029.9427472942,621830.8857760855,0.38019,100000,0,961267,10042.908186719043,0,0.0,0,0.0,43658,455.6291529106942,0,0.0,41127,426.51176396840657,1235513,0,44374,0,0,0,0,0,112,1.1701282962096202,0,0.0,2,0.0208951481466003,0,0.0,0.05145,0.1353270733054525,0.2915451895043732,0.015,0.3492387671741552,0.6507612328258447,23.81470114115606,4.099852505657433,0.3167825223435948,0.2713505461767627,0.2065541211519364,0.205312810327706,11.32870383756001,6.246131923158445,16.058667804795114,11554.688343107466,45.91121460346067,13.206434751272202,14.424565391097463,9.241800907323052,9.038413553767954,0.5940913604766633,0.7941445562671546,0.7147335423197492,0.6021634615384616,0.1354292623941959,0.7694944301628106,0.9325581395348838,0.8796561604584527,0.7766990291262136,0.1648351648351648,0.5225445648374694,0.7043740573152338,0.6526429341963322,0.5447284345047924,0.1271317829457364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0044898952019946,0.0066251369668438,0.0089477960593134,0.0111350647765868,0.0132560909803602,0.01540217934212,0.0177107683513163,0.019861795432707,0.0220081686132806,0.0240706948516597,0.0260217703840624,0.028357779103495,0.0304319607701737,0.0326106025737608,0.0345668802977051,0.0363918806959403,0.0385218086155187,0.0407053514800528,0.042724800183404,0.0567281081927836,0.0703065314537481,0.0836883302205527,0.0963122731337787,0.1087546031042596,0.1235329601134475,0.1348301486199575,0.1457525667788523,0.1550060378084358,0.1645288603848051,0.1770200387847446,0.1890908697205591,0.1998280908289721,0.2098401926444833,0.2193862382593567,0.2292414771467837,0.2385819654753004,0.2462370913672464,0.2535264011983523,0.2607849200077873,0.2674500641907912,0.2728834757401844,0.2781510219530658,0.2818240605465476,0.2852546591391974,0.2897686679313148,0.2928836796217305,0.2964162760267795,0.3002278081234306,0.3041820580474934,0.3018123552539452,0.2995130540042367,0.2969661939267488,0.2941592971504537,0.2919253735777309,0.2892349584665514,0.2855969807507066,0.2866070114021168,0.2869546010602147,0.2884318218148878,0.2890693386474959,0.2899695451419589,0.2901941990331722,0.2915627227369922,0.2918764686136287,0.2933499390259723,0.2944216918514334,0.2973006631588779,0.3036787438774447,0.3065856526852215,0.3114620938628158,0.3132669721388318,0.31736414740787,0.3184158715735272,0.3214152352501867,0.3260844010814623,0.3241400212153356,0.3298534430837181,0.3337882096069869,0.3385093167701863,0.0,1.8484738543729649,51.00737759741676,149.9164245195776,208.6832144485421,fqhc1_100Compliance_baseline_low_initial_treat_cost,2 -100000,95663,47789,455.0348619633505,5180,52.63267930129727,4080,42.07478335406584,1629,16.631299457470497,77.2498286400838,79.6480939354263,63.26585613190741,65.03896306726445,77.03747586508165,79.440252147455,63.18479238822122,64.96235545149833,0.2123527750021594,207.8417879713044,0.0810637436861938,76.60761576612174,210.16116,147.96727676611977,219688.38526912185,154674.9760705625,500.2706,336.00966622230084,522253.5149430814,350550.18502612435,458.66205,224.95966321029184,476310.20352696447,232769.1598850375,2718.80323,1277.1820055520911,2803274.7770820484,1296726.7205584012,953.76094,436.5421248451806,978936.8512382008,439012.6399287281,1591.12348,685.4808162802437,1625006.5542581773,682140.6186701746,0.38288,100000,0,955278,9985.835694050991,0,0.0,0,0.0,43468,453.7490983974996,0,0.0,41544,431.1802891400019,1233869,0,44310,0,0,0,0,0,85,0.8780824352152871,0,0.0,1,0.0104533623239915,0,0.0,0.0518,0.1352904304220643,0.3144787644787645,0.01629,0.3470522803114572,0.6529477196885428,23.71016517035675,4.276217837266481,0.3053921568627451,0.2544117647058823,0.2181372549019608,0.2220588235294117,11.626620909790384,6.250444140626674,17.41937193558233,11680.036841149962,46.76805584867152,12.73499062160314,14.17873944922591,9.873425495789409,9.980900282053062,0.5644607843137255,0.8015414258188824,0.6861958266452648,0.5752808988764045,0.1147902869757174,0.7393483709273183,0.911214953271028,0.8475073313782991,0.7456140350877193,0.18,0.4918487686437738,0.7245901639344262,0.625414364640884,0.5166163141993958,0.0963172804532577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805664735199,0.0047156895555082,0.006790430466601,0.0090631985368827,0.011331387128602,0.0134031328295276,0.0157135864910062,0.0182978506152039,0.0204540805890775,0.0227568337071517,0.0246992091739919,0.0269440164355418,0.0290685709581824,0.0313434066500381,0.0333374630902971,0.0352470291346482,0.0373655524008869,0.0396902025518838,0.0417186849771119,0.043605196755156,0.0583140033017783,0.0722918063002681,0.086082219959908,0.0993307799149795,0.11207733547216,0.1280216756276194,0.1395225351514379,0.1502184802302035,0.1600205428886297,0.1696931276056217,0.1811372883368048,0.1913986658712511,0.2021573631743123,0.2114068190793804,0.2201088456401028,0.2301665796170558,0.2384214945424013,0.2465648338259515,0.2538815280244046,0.2612057772517838,0.2665296214998316,0.2729835772854357,0.2790141950210428,0.2839868612611745,0.2883647223745962,0.2924123430832973,0.2961391173331659,0.3002515932108147,0.3041993011988725,0.3061516262691783,0.3032807920364142,0.3009336514459875,0.2980583209771941,0.2954367666232073,0.2937550254623425,0.2912100544102996,0.2885123901512152,0.2890141122738996,0.2893504273504274,0.2897513861563227,0.2904085424212284,0.2913335971507717,0.2931243977039426,0.2938462916517377,0.2963640741632555,0.2975769550748752,0.2980128695750772,0.3027153558052434,0.3056610346629507,0.3090098267492798,0.3142070335425037,0.3188192657177373,0.3182356239486636,0.323957469270794,0.3287505805852299,0.3308823529411764,0.338570781084756,0.3390480032271077,0.3419477693144722,0.3369565217391304,0.0,2.0987150127887637,52.18159704611836,152.41776181793756,210.9710566823035,fqhc1_100Compliance_baseline_low_initial_treat_cost,3 -100000,95753,47519,452.20515284116425,5128,52.43699936294424,4047,41.74281745741648,1549,15.82195858093219,77.32698317968122,79.6861702555093,63.31555014592704,65.06090466055602,77.1284832415975,79.490626022944,63.24096034492487,64.9897505263374,0.198499938083728,195.54423256529677,0.074589801002169,71.1541342186166,212.10046,149.22261005524751,221507.4410201247,155840.74614607115,502.29727,337.1059097908022,524069.50173884886,351552.1628667531,454.89378,222.5831281356232,471859.84773323033,229939.8909018413,2608.18521,1216.98989413646,2691042.139671864,1238347.274638994,941.20523,418.93125559486543,971109.0305264588,425712.9461723751,1498.9102,635.0986433111752,1532644.261798586,635738.5242322044,0.38018,100000,0,964093,10068.520046369304,0,0.0,0,0.0,43744,456.3094628888912,0,0.0,41254,427.6419537769052,1231231,0,44161,0,0,0,0,0,82,0.8563700354035905,0,0.0,1,0.0104435370171169,0,0.0,0.05128,0.134883476248093,0.3020670826833073,0.01549,0.3532050084096431,0.6467949915903569,23.734227804781444,4.175167424551068,0.3135656041512231,0.2713120830244626,0.2181863108475414,0.1969360019767729,11.65950395568956,6.3858682276171175,16.46587650034879,11523.2099077236,46.47348311960101,13.410731788034688,14.50558438447506,9.85765409311712,8.699512853974145,0.5829009142574747,0.785063752276867,0.69424743892829,0.5877689694224235,0.1217063989962358,0.7480916030534351,0.9105145413870246,0.8510028653295129,0.7268518518518519,0.1257485029940119,0.5149930264993027,0.6989247311827957,0.6347826086956522,0.5427286356821589,0.1206349206349206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0044107805560625,0.0064348496843472,0.0087573146944083,0.0107907449783879,0.0129728628888549,0.0151017661214667,0.0174244125512933,0.0198581415314173,0.022384622470599,0.0244949831404823,0.0265662050771425,0.0286169501978722,0.0307258255506245,0.0327309112665305,0.03473930025419,0.0369082005569877,0.0393336514324834,0.0413141538653418,0.0432757920178353,0.0588376535927924,0.0727400169479113,0.0858538733317257,0.0987206576471454,0.1104552497602007,0.1259079135169424,0.1360030543418317,0.1462383680074956,0.1559189781412003,0.1649045221815527,0.1770608778132275,0.1889816649880329,0.2005636193502056,0.2096096621739891,0.2181790164223132,0.2274691905310754,0.2360161729884287,0.2444539537397806,0.252263201535683,0.2580789328932893,0.2636264703158285,0.2694955739777996,0.2747642068344471,0.279615564594507,0.2839515178039559,0.2876641390789717,0.2917705111024835,0.2949166783363675,0.2989003018017434,0.3027237354085603,0.3006039248389309,0.2981057377725236,0.2959353023909986,0.2935377242743111,0.2918385517139041,0.2891317324027733,0.2861593446563558,0.2861754247980468,0.287053609477542,0.2868040613830752,0.2872159674377789,0.2871497812980257,0.2878340763064816,0.2899170901310511,0.2907957813998083,0.2911382536382536,0.2921453493319717,0.2955135219634203,0.2990976552973556,0.3029873656866218,0.3065337962754205,0.3083797707917148,0.3109437250996016,0.3140837656966689,0.3187343416535214,0.3232511970103935,0.326169214469502,0.3304643714971977,0.3359009628610729,0.3393682588597843,0.0,2.0315265157742286,51.596788504929535,153.6925044459965,207.8934973755231,fqhc1_100Compliance_baseline_low_initial_treat_cost,4 -100000,95751,47777,454.9195308665184,5216,53.190045012584726,4159,42.76717736629382,1593,16.208708003049576,77.39144353273707,79.7303306895171,63.36142006586866,65.08733877727788,77.19195306206149,79.53582730083652,63.28591207230343,65.01639090297934,0.1994904706755846,194.50338868058736,0.0755079935652247,70.94787429853966,211.8039,148.9518669723344,221202.8072813861,155561.68287781268,503.14281,336.82619503564274,524831.0200415661,351134.54912827787,459.28323,225.153558654944,475702.0709966475,232092.6615612116,2704.13192,1257.0783818520729,2782383.6931206984,1271173.2770555704,990.98186,445.1265249419399,1015354.10596234,445445.7629348441,1551.77644,659.1295352004406,1580907.0819103718,654705.365724817,0.38213,100000,0,962745,10054.673058244822,0,0.0,0,0.0,43651,455.19106850059006,0,0.0,41705,431.5672943363516,1236828,0,44432,0,0,0,0,0,95,0.9921567398773904,0,0.0,0,0.0,0,0.0,0.05216,0.1364980504016957,0.3054064417177914,0.01593,0.3546969419520234,0.6453030580479766,23.613975895122437,4.146884272957244,0.3188266410194758,0.2647270978600625,0.2091849002163981,0.2072613609040634,11.264769852539796,6.078934411957884,16.985780836763414,11636.5187687039,47.3748903810262,13.335908529283348,15.11276740197836,9.61737992210914,9.308834527655346,0.5777831209425343,0.8019981834695731,0.6907993966817496,0.5678160919540229,0.1276102088167053,0.7658495350803043,0.9212962962962964,0.8770053475935828,0.7227722772277227,0.1942857142857142,0.5030241935483871,0.7249626307922272,0.6176470588235294,0.5209580838323353,0.1106259097525473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023995626113721,0.0045907354297353,0.0069702319352285,0.0091508312936086,0.0114691258858577,0.0136593111310153,0.016028123089464,0.0182014814210214,0.0202167761444084,0.0222333633461569,0.0243135245901639,0.0266025114904793,0.0287502183495853,0.0308553667548346,0.0328426521523998,0.035121064374845,0.0371129326047358,0.0389442024476249,0.0409767050238563,0.0430239704978488,0.0583814365194517,0.0722611698231662,0.0860853510133859,0.0991166263539804,0.1116043186706591,0.1271360291007529,0.1370438323912144,0.1474897066802847,0.157074660657646,0.1666452276820169,0.1775964519462624,0.1891114379650458,0.2000673847123651,0.2097207656004195,0.2178812096694405,0.2274361839848634,0.2363117531656857,0.2445520309130122,0.2529215075092094,0.2596787479406919,0.2658214681952662,0.2721939818872334,0.2783065154936571,0.2830870908263691,0.2878260553217807,0.2925677171746992,0.2966710386609206,0.3001436215508585,0.302672579873547,0.3064921727910681,0.3048785400636506,0.3024777741191966,0.2996166322618696,0.296681782192471,0.2944632734914973,0.2912908337396392,0.2889284532606469,0.2889828847661354,0.2898351181370049,0.2903254474680506,0.2913265210812426,0.2919096784363177,0.2930202435916184,0.2934809293190796,0.2945499963970888,0.2963271251690771,0.2981221988994156,0.3031916559651705,0.3073317475863998,0.3111787252538823,0.3159662340019969,0.3177213175621917,0.3232228083396131,0.3278055429350295,0.3332403273809524,0.3358252540591052,0.3400507538438573,0.3491182880919358,0.3526570048309179,0.3479729729729729,0.0,2.553433148045778,50.95117702982699,158.5496676018569,214.31960473779847,fqhc1_100Compliance_baseline_low_initial_treat_cost,5 -100000,95716,47505,453.5918759664006,5127,52.3005558109407,4097,42.093275941326425,1600,16.21463496176188,77.37264048070351,79.73126362240124,63.34029949113111,65.08158042928535,77.16790102351898,79.53370212351734,63.262005390680656,65.00978466754091,0.2047394571845302,197.56149888389984,0.0782941004504564,71.7957617444398,210.97648,148.4267577775468,220419.2402524134,155069.9546340704,506.56271,339.5698540233813,528503.2387479628,354037.1674016025,456.18441,223.000627121652,472101.6966860296,229613.6840231593,2692.81627,1247.7366723830469,2769248.014960926,1259592.617338362,946.25244,428.0142446340257,972713.945421873,431324.0444093432,1556.63242,667.3234116263043,1579671.4655856912,657022.2299168897,0.37967,100000,0,958984,10019.0563751097,0,0.0,0,0.0,44073,459.693259225208,0,0.0,41304,427.08638054243806,1236081,0,44394,0,0,0,0,0,83,0.867148648083915,0,0.0,1,0.0104475740733001,0,0.0,0.05127,0.1350383227539705,0.31207333723425,0.016,0.3449237634808479,0.6550762365191521,23.62531666240521,4.241000501786352,0.3048572125945814,0.264827922870393,0.2145472296802538,0.2157676348547718,11.332952782198776,6.042553773773261,17.192781174396742,11527.097192589315,46.56854339010084,13.27063777982948,14.058066365530786,9.617389285475817,9.622449959264763,0.5667561630461313,0.7907834101382488,0.6925540432345877,0.5847554038680318,0.0961538461538461,0.7275862068965517,0.9192825112107624,0.8333333333333334,0.7101449275362319,0.0928961748633879,0.5032345931222336,0.701095461658842,0.6432432432432432,0.5461309523809523,0.0970042796005706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0046415939517395,0.0068880164744311,0.009272424439389,0.0113270089172233,0.0132133477207484,0.015473375193672,0.0175050014289797,0.0195547287075275,0.0216915076570305,0.024032891431618,0.0260164271047227,0.0279691516709511,0.0296607551133905,0.0317977817900438,0.0340258397932816,0.0358766216957786,0.0379337171308542,0.0399871109909984,0.0419153568117663,0.0568904482942263,0.0711886399547942,0.0845287529885491,0.0966626373048825,0.1089956460777802,0.1244224527124898,0.1357228474748867,0.1466018177561141,0.1563888414217361,0.1663592295482819,0.1781671710590085,0.1896368908508612,0.2009114045200443,0.2098257740640687,0.2179715694041017,0.2278392661282281,0.2363703339882122,0.2446741431338107,0.252765976781698,0.2600215566665138,0.2651825611817276,0.2704395154210803,0.2756320640712745,0.2792288034936593,0.2837297487815846,0.2881922185512106,0.2926814006457587,0.2955013605269181,0.3004450654660249,0.3041575492341357,0.3014131472442956,0.2988981094746098,0.2972687893789379,0.2950921396308642,0.2928168596022558,0.2900364036831961,0.2876868147492812,0.2874631268436578,0.2875014893363517,0.2874626971720904,0.2872142378434731,0.2875336041286474,0.2885036154118652,0.288819324186315,0.2905411854538512,0.2920219087479977,0.2928218868988859,0.2975114176530897,0.2999237804878049,0.3039181218016328,0.3073919482967551,0.3095238095238095,0.3116380655226209,0.3135912101143889,0.3176841714603822,0.3173821252638986,0.3199878677585684,0.3254,0.329175704989154,0.3369770071617037,0.0,2.693512996234669,49.895042958874775,151.52708314090827,216.73180866576047,fqhc1_100Compliance_baseline_low_initial_treat_cost,6 -100000,95746,47397,450.8073444321434,5191,53.06749107012303,4081,42.08008689658054,1544,15.77089382324066,77.33281654085012,79.69631714849646,63.319784280511655,65.06990649742531,77.13955185543759,79.50838810561922,63.24653008807135,65.00145586353221,0.1932646854125295,187.92904287724355,0.0732541924403094,68.45063389309303,212.88146,149.7191758377806,222339.79487393727,156371.20698283022,503.09145,337.3811329234095,524882.2509556535,351809.41545694805,457.00762,223.82662813563977,473779.2388193763,231117.8297111721,2662.92919,1237.4016876285268,2745478.871179997,1256615.104159471,946.75268,425.93991635289177,971606.9391932822,427654.4360630115,1504.25222,636.2983925091203,1536975.6856683306,633263.8396856688,0.37934,100000,0,967643,10106.354312451696,0,0.0,0,0.0,43723,456.0817162074656,0,0.0,41414,429.0623106970526,1228272,0,44120,0,0,0,0,0,96,1.002652852338479,0,0.0,0,0.0,0,0.0,0.05191,0.1368429377339589,0.2974378732421499,0.01544,0.3483125458547322,0.6516874541452677,23.59636174465994,4.22375586049507,0.3107081597647635,0.2639059054153393,0.2151433472188189,0.2102425876010781,11.351751740660143,5.946268971649606,16.483231267609796,11514.726439974263,46.52739195841976,13.07861518067097,14.37146065997573,9.78440210852608,9.292914009246989,0.5724087233521196,0.8096564531104921,0.6892744479495269,0.570615034168565,0.1037296037296037,0.7683235046335299,0.9304347826086956,0.8416666666666667,0.7653061224489796,0.1812865497076023,0.4920525224602626,0.7196110210696921,0.6288546255506607,0.5146627565982405,0.0844250363901018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024622804973198,0.0047873581288732,0.0068839476088943,0.0092192598164279,0.0114556627192446,0.0138017438070404,0.0159393834324233,0.0183358856559469,0.0204699290403059,0.0224757067816221,0.0247903381246283,0.0270153713458398,0.0293140853614649,0.0313285272914521,0.0334602408146841,0.0355053438901866,0.037417537464141,0.0391444671599506,0.0411866239653953,0.0433061432842662,0.05785814210845,0.0717409499895375,0.0846895973154362,0.0975955927962404,0.1094011868748089,0.124402521043949,0.1352495094659808,0.1452217231175356,0.1549751642365005,0.1648898517771723,0.1768708947991816,0.187953084763368,0.1985905843202505,0.2081146680661244,0.2170512792309215,0.2264926034192576,0.2352685196549915,0.2436307166006482,0.2515207226837351,0.2581915600027477,0.2637547006074631,0.2696092771803363,0.2752015532325468,0.2796731015805682,0.283970263113141,0.2879228720781142,0.2914664063282267,0.2955883662075719,0.2999236077842373,0.3031378655125092,0.3004657548998492,0.2983768913342503,0.2965268583983549,0.2946995956094743,0.2915713139358635,0.2887192510096683,0.2851926785319129,0.285045045045045,0.2845680799959116,0.2856914155608523,0.2864665023526775,0.287099444247369,0.2884438881935753,0.2886095661846496,0.2887740206284251,0.2884091439840162,0.2895520694448384,0.2937754144510479,0.2995988138845282,0.3031331386630889,0.3066003616636528,0.3127802099266838,0.3175177924834561,0.3233898305084746,0.3268998793727382,0.3311118905647141,0.3339347466546384,0.331013916500994,0.3342332613390928,0.3363431151241535,0.0,2.112351310061369,51.67189127592128,149.2951528325968,214.1411874599252,fqhc1_100Compliance_baseline_low_initial_treat_cost,7 -100000,95782,47600,452.6842204171974,5065,51.732058215531104,4035,41.58401369777202,1539,15.723204777515608,77.34910350822409,79.67804515280963,63.34642956891118,65.06688614580997,77.14927420445362,79.48041477713653,63.270345501694045,64.99429506588845,0.1998293037704712,197.63037567309996,0.0760840672171312,72.5910799215228,213.29858,150.03109875240722,222691.7166064605,156638.09353783302,505.53459,339.1668013817324,527232.0477751561,353537.8373616466,457.46092,224.39638021104284,473882.4831387943,231478.4341259487,2617.38152,1230.0114027573322,2699559.906871855,1251093.4755562968,924.15264,420.2353868279784,951830.5840345784,425722.07390530384,1493.51764,642.6657846116653,1526865.611492765,642103.218541888,0.38101,100000,0,969539,10122.350754839114,0,0.0,0,0.0,43975,458.53083042742895,0,0.0,41374,428.3477062496085,1227320,0,44048,0,0,0,0,0,92,0.9500741266626298,0,0.0,1,0.0104403750182706,0,0.0,0.05065,0.1329361434083095,0.3038499506416584,0.01539,0.3367385546727204,0.6632614453272796,23.39690044755328,4.238499344000108,0.2976456009913259,0.2780669144981412,0.2210656753407682,0.2032218091697645,11.31624569745763,5.958757410045377,16.616807262335527,11599.83153903018,46.37306163172475,13.794450546701734,13.636633566119349,9.869806625333014,9.072170893570656,0.5719950433705081,0.7789661319073083,0.6827643630308077,0.5840807174887892,0.1134146341463414,0.7348798674399337,0.9126016260162602,0.8393939393939394,0.6798029556650246,0.1263736263736263,0.5024752475247525,0.6746031746031746,0.6234213547646383,0.555878084179971,0.109717868338558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315942968243,0.0048753788301117,0.0072637996976798,0.0097002569806299,0.0117338430878106,0.014017264546602,0.0161845940602132,0.0183191304791549,0.0205683107010391,0.0227335509151737,0.0249664484535554,0.0269368907131862,0.0293510097117311,0.0315372343162987,0.0339004021033096,0.0357685117283121,0.0376134352914394,0.0395786024616086,0.0416151456270327,0.0434556227806183,0.0583250717453691,0.0720097895661632,0.0854207077326343,0.098453001513368,0.1109331366246904,0.1260117928017414,0.1366628157161178,0.1474738666695024,0.1571634384504562,0.1664506176146042,0.1788935529006565,0.1909659140064019,0.2019396996944755,0.2109942262269268,0.2197872317018163,0.229739307625861,0.2383104564222743,0.247113060100073,0.253820409552442,0.2600016025457584,0.2658710886005689,0.2712568127061355,0.2772335794056407,0.2819496184852005,0.2861495878503878,0.2905308818455168,0.2939616125722579,0.2972350523596849,0.3005103494728116,0.3043702070931721,0.3019741980662016,0.2993051255589955,0.2971421334796741,0.2937738979871582,0.2921998013254852,0.288406903925462,0.2855519070472341,0.2860557247159742,0.2870542173802026,0.2868055555555555,0.2877548734035402,0.2877792896724447,0.2888814663270844,0.2905931428316491,0.2917116987294954,0.2922904678834587,0.2934442102864954,0.2958743745476287,0.2997893997893998,0.3017796138873441,0.3055896666211852,0.3070774442856386,0.3129852913326179,0.3145007984183712,0.3160719329629978,0.3181709930935937,0.3235474946203504,0.3318467464017839,0.3369057433360813,0.3466353677621283,0.0,2.1028566836671643,52.56727937146314,149.66152363662988,207.4668391564914,fqhc1_100Compliance_baseline_low_initial_treat_cost,8 -100000,95661,47864,455.32662213441216,5175,52.67559402473317,4144,42.67151712819226,1655,16.87207953084329,77.31532774038504,79.70664353946296,63.31028192710126,65.07590015238884,77.1067409924306,79.50301478245244,63.23067405401379,65.00078636470964,0.2085867479544418,203.6287570105202,0.0796078730874683,75.11378767920007,212.59502,149.59719965259129,222237.92350069515,156382.64251115007,504.86407,339.1016079821131,527132.802291425,353851.67203156266,465.2693,228.3987433080851,482502.4200039724,235657.65644400296,2712.99421,1275.6077116882948,2796182.268636121,1293598.6678879526,980.92485,445.3530781178289,1007529.3693354658,447673.29458841897,1615.39964,696.5498933030252,1648856.1064592677,693669.603312692,0.38162,100000,0,966341,10101.723795486145,0,0.0,0,0.0,43794,457.13509162563633,0,0.0,42092,436.1547548112606,1225463,0,43959,0,0,0,0,0,100,1.0349045065387148,0,0.0,0,0.0,0,0.0,0.05175,0.1356061003092081,0.3198067632850241,0.01655,0.3650999259807549,0.634900074019245,23.500261470774507,4.1811671005333135,0.3011583011583011,0.2649613899613899,0.2171814671814672,0.2166988416988417,11.192155301642153,5.899971261839851,17.88056939326897,11645.139580684214,47.61211772952088,13.405062081569666,14.238379397074135,10.063957383729504,9.904718867147578,0.5740830115830116,0.8069216757741348,0.6939102564102564,0.5855555555555556,0.111358574610245,0.7491961414790996,0.9209401709401708,0.8599439775910365,0.7660550458715596,0.1343283582089552,0.4989655172413793,0.7222222222222222,0.6273849607182941,0.5278592375366569,0.1047345767575322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.004805450232162,0.0072154904706813,0.0096620811574177,0.0119730631510416,0.0142500636618283,0.0164619966545632,0.0189877942903835,0.0212507030730684,0.0235627828865177,0.0255371519409261,0.0275709046831503,0.0296075304768273,0.0315101805292226,0.033711808422791,0.0356913848381425,0.0377868725068642,0.0399165550954323,0.0418456609700537,0.0440134239379664,0.058653293632137,0.0727268919881057,0.0861593039243469,0.0990960654116111,0.1109316953731847,0.126689743508315,0.1380181787291879,0.1485529245092086,0.1586609376002052,0.1685646513325247,0.1805345979737012,0.1921427643262442,0.2022448668539203,0.2113298821263229,0.2202139025652887,0.2296582248993311,0.238248961172423,0.2456416778274228,0.2530201189881466,0.2601290559204117,0.2661139032355189,0.2715046526599169,0.2776093957188861,0.2815870616324131,0.2853515411437388,0.2896877233628275,0.2940881951659135,0.2983605306335296,0.3013106651658062,0.3056786995989022,0.3030719112618797,0.2998844216956988,0.2980367321089297,0.2957471712836519,0.2927017595961096,0.2899455357689248,0.2861432929238647,0.2864599525484742,0.2871157285191177,0.2872399124290266,0.2884055808401104,0.2888495226847751,0.2894231170892685,0.2900343183135,0.2912342098324504,0.2942658287020204,0.2965050091074681,0.3015043746459369,0.3049101964781554,0.3095522150640261,0.3139874167958421,0.3191602163079207,0.3251417769376181,0.3312691131498471,0.3354072398190045,0.3389388915206063,0.3396197948098974,0.3382120253164557,0.3442934782608696,0.340943113772455,0.0,2.4867258526622544,54.008130774231816,151.52499356082026,214.2897879786392,fqhc1_100Compliance_baseline_low_initial_treat_cost,9 -100000,95620,47673,454.2878058983476,5186,53.03283831834344,4095,42.177368751307256,1583,16.136791466220455,77.3146043072854,79.73384065666416,63.296484254502126,65.083027914457,77.10604007136564,79.52935843690618,63.21826983962245,65.00899440170261,0.2085642359197663,204.48221975797765,0.0782144148796817,74.03351275439718,211.63318,148.8403687733694,221327.31646099145,155658.19783870463,503.50748,337.5992367199442,525943.5787492156,352435.6899392848,457.39043,224.26634869287983,474393.8715749843,231472.59359669103,2690.81581,1251.9945377088843,2773403.2733737715,1268973.0429803042,962.81004,434.5156697371062,988571.4076553022,436214.5584523205,1543.87686,658.2235748303983,1575593.6833298474,654933.0865568131,0.38268,100000,0,961969,10060.3325664087,0,0.0,0,0.0,43741,456.797741058356,0,0.0,41473,429.711357456599,1232612,0,44214,0,0,0,0,0,74,0.7738966743359129,0,0.0,2,0.020916126333403,0,0.0,0.05186,0.1355179262046618,0.3052448900887003,0.01583,0.3446369332841872,0.6553630667158128,23.68247971895359,4.130786614395479,0.3218559218559219,0.2554334554334554,0.2139194139194139,0.2087912087912088,11.094648267241904,5.917952825161067,17.055418379060818,11639.341874181826,46.718579601089374,12.80551323748884,14.806122639946253,9.680001741287096,9.426941982367186,0.57997557997558,0.8154875717017208,0.6927162367223065,0.5776255707762558,0.1204678362573099,0.7574013157894737,0.9230769230769232,0.8728323699421965,0.7746478873239436,0.1164021164021164,0.5050364709968739,0.7283737024221453,0.6286008230452675,0.5143288084464555,0.1216216216216216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025331077178725,0.0048777519749318,0.0071669306046209,0.0093786516283086,0.01165771484375,0.0140354451008352,0.0164829000112197,0.018418633159669,0.0207423469126837,0.0226418572262444,0.024676923076923,0.0267282999486389,0.0287639524715806,0.0307351501725825,0.0326799409572766,0.0348959841184498,0.0369376463518246,0.039223014711226,0.0409834359913434,0.0431993825679748,0.0578643699305962,0.0721034988476849,0.0850923067229538,0.0976051371124796,0.1101094655505473,0.1258841967046465,0.137700634168623,0.1483668140885597,0.1585331935559787,0.1679235148780749,0.1800597646094264,0.1914556962025316,0.2016821370985314,0.2109206418752396,0.2192968922195283,0.2299276552305712,0.2383038158556344,0.2457782734574785,0.2539787120446206,0.2606272576113755,0.2664953465759133,0.2721849889469806,0.2778047308570684,0.2830844459359045,0.2876704014372594,0.2924528301886792,0.2954443166474971,0.2994662600076248,0.3025228557019642,0.3055606823634877,0.3025595502293238,0.3003324815211716,0.2978995973759045,0.2951902099316602,0.2930491140444761,0.2905118659128862,0.2874499057515325,0.2879330747485372,0.2887302239572632,0.2890726879722753,0.2897025000467473,0.2904101504868693,0.2912101645490523,0.2917491602340222,0.2921570968127014,0.2936922043705119,0.2966226138032305,0.3011658635162443,0.305656839254089,0.3086812927577259,0.3142600089968511,0.3182940280476916,0.3243429718371699,0.3278353635469471,0.3299430810861248,0.3358279876455215,0.342623960578996,0.3445412193639862,0.3475543478260869,0.3563218390804598,0.0,2.564846490604787,52.600122434532864,145.5355718845019,215.86585229213503,fqhc1_100Compliance_baseline_low_initial_treat_cost,10 -100000,95652,47410,453.5190063981934,5070,51.92782168694852,4006,41.358257015012754,1553,15.88048341906076,77.29129418892526,79.69181457928933,63.29829466637945,65.07026347173627,77.09334035722915,79.49576584486816,63.224179168218605,64.99917074459019,0.1979538316961111,196.04873442116852,0.0741154981608431,71.09272714608039,212.38448,149.37834520412278,222038.7237067704,156168.5539289537,501.16305,335.9007320563843,523437.952159913,350663.3965378501,455.55351,222.35812949010972,473454.4494626354,230321.28195248617,2616.16841,1209.8382034914855,2701967.068121942,1231710.0881230773,921.94255,410.7065978520644,949703.6235520428,415228.70180661534,1506.65766,637.082482841989,1541829.8833270606,637571.0785902337,0.37973,100000,0,965384,10092.669259398654,0,0.0,0,0.0,43648,455.7771923221679,0,0.0,41124,427.0375946138084,1230245,0,44167,0,0,0,0,0,96,1.0036381884330698,0,0.0,0,0.0,0,0.0,0.0507,0.1335159192057514,0.3063116370808678,0.01553,0.3566420314572673,0.6433579685427326,23.600614035526863,4.124115059154677,0.3130304543185222,0.2573639540688966,0.2216674987518722,0.2079380928607089,11.293375814354173,6.061570395293181,16.548141436655065,11442.015276766078,45.86451920294243,12.640609080271409,14.401920244632112,9.900953417255684,8.921036460783226,0.5751372940589117,0.8147429679922406,0.6961722488038278,0.5608108108108109,0.1116446578631452,0.752568493150685,0.9080188679245284,0.8614958448753463,0.6796536796536796,0.1710526315789473,0.5021141649048626,0.7495881383855024,0.6293393057110862,0.5190258751902588,0.0983847283406754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359997163781,0.0041670891209571,0.0063842960526983,0.0085865257595772,0.0109269602905716,0.0128431023068696,0.0149988783979444,0.0170931443625298,0.0192520039260592,0.0213277906333831,0.0231766346706046,0.0251319762545447,0.0271488092176328,0.0291923417760649,0.0312074162778213,0.0334902001344572,0.0355258930699636,0.0373162222775978,0.0393399298727513,0.0412001417818644,0.0562823942484534,0.0704926103214588,0.0841663166736665,0.0966118999252702,0.1090154937307383,0.1240817968204238,0.1353609341825902,0.1452492543672773,0.1555641083207714,0.164626945786366,0.1762980852164913,0.1875115042714683,0.1972028733130169,0.2069671458130343,0.2162835291265345,0.2258314941942352,0.2341946799834657,0.2417686324391863,0.2500624361448518,0.257283944959384,0.2642208205543661,0.269865032396903,0.2761224948802632,0.2804052029011569,0.2851655564739631,0.2891835224469659,0.2926627678358984,0.2958743332866581,0.299376918792181,0.3028852493604452,0.299207406510301,0.2962580822671619,0.2940123978585517,0.2911542407907857,0.2902003328973963,0.2867301120255007,0.2840704042546456,0.2846230924651346,0.2838830969065117,0.2839997856874967,0.2849406959096104,0.2854007237349469,0.2865104974227884,0.2867004758606823,0.2893683327340285,0.2889165952362399,0.2892337316644957,0.2939207158724696,0.2985544783171747,0.3001584158415841,0.303164958737644,0.3055892113996734,0.3102237823606845,0.3121198296836983,0.3160762942779291,0.3165219459973831,0.3224961479198767,0.3290229885057471,0.3323229539818131,0.3368580060422961,0.0,2.0272503657253984,51.17568780677776,146.2150676994717,211.62619113317805,fqhc1_100Compliance_baseline_low_initial_treat_cost,11 -100000,95636,47604,453.5948805888996,5044,51.43460621523276,4040,41.699778326153336,1586,16.249111213350623,77.27514686010801,79.68713914969081,63.27600815666828,65.05656230953703,77.0707231891214,79.48483449320845,63.19771714922045,64.98149467890015,0.204423670986614,202.3046564823545,0.0782910074478309,75.06763063688027,210.86714,148.36119244167747,220489.06269605583,155130.8842294508,501.75964,336.7372687650628,524115.53180810576,351562.9666287411,461.45515,226.48487616320497,479190.4303818646,234207.0645738506,2641.32058,1240.3697706564285,2728240.1815216024,1263362.092367339,965.14763,436.5961031266389,992159.2810238824,439512.9675475805,1536.9328,663.272519325154,1575355.9329122924,665222.4516717584,0.38058,100000,0,958487,10022.230122547997,0,0.0,0,0.0,43585,455.1633276172153,0,0.0,41780,433.5292149399808,1232082,0,44223,0,0,0,0,0,85,0.8887866493788951,0,0.0,0,0.0,0,0.0,0.05044,0.1325345525250932,0.3144329896907216,0.01586,0.3523610847714773,0.6476389152285227,23.634327567146308,4.204097239034786,0.3277227722772277,0.2559405940594059,0.2086633663366336,0.2076732673267326,11.34928063726822,6.1728377324838215,16.98861220431349,11575.44242132774,46.26276993256496,12.668054774147205,14.969905246925023,9.430791142292929,9.194018769199802,0.5806930693069307,0.7959381044487428,0.6986404833836858,0.5741399762752076,0.135876042908224,0.7186468646864687,0.8950892857142857,0.8314285714285714,0.7116279069767442,0.1306532663316583,0.5215700141442716,0.7201365187713311,0.6509240246406571,0.5270700636942676,0.1375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0050677558963339,0.0072751255644056,0.0096394108684611,0.0118390138223537,0.0138809678996252,0.0161010727250479,0.0183867443926044,0.0204062854630775,0.0224340596330275,0.0246479234406572,0.0269667769308212,0.0291472900119346,0.031221332343816,0.0331264650303074,0.034925101382107,0.037170251360456,0.0392684294705356,0.0413657460403355,0.0433522093253657,0.0580175170885679,0.072718890146276,0.0856356493056285,0.0981532399945218,0.1109855286785676,0.1264801203160414,0.1368664916736628,0.147240375696969,0.1571781780817519,0.1667186206748288,0.1787291475462938,0.1901275543407523,0.200723918755383,0.2105465194073066,0.2189748796962606,0.2281569036959685,0.2361631876434047,0.244490334811605,0.2523787844297746,0.2591818453269632,0.2647826540911147,0.2716388155965992,0.2766744964054381,0.2814113803953594,0.2859662996532636,0.2905693906261569,0.293925907352849,0.2983432449985355,0.3015399385062466,0.3041151284490961,0.3014749501159467,0.2986186665932159,0.2957917130418856,0.2934379107625197,0.2910356909555199,0.2874674827850038,0.2844183142888752,0.2855199095096801,0.2860570786746311,0.2864536093474897,0.2872841444270015,0.2883676041912865,0.2897358254150569,0.2908300835654596,0.2914491017964072,0.2919984437816106,0.2924506914531852,0.2959289044653753,0.2989791637533212,0.3013552491208661,0.3044834131790653,0.307143234812034,0.313307937300943,0.3151396521870059,0.3219848894692659,0.3236891828058573,0.3337387866808575,0.3375,0.3482777474029524,0.3566539923954372,0.0,2.041537393408743,53.065329388772,143.47944501963622,212.6751059704598,fqhc1_100Compliance_baseline_low_initial_treat_cost,12 -100000,95692,47616,454.7611085566192,5099,52.21962128495591,4011,41.41412030263764,1520,15.539439033566026,77.28391542799022,79.68189915696786,63.28504443165552,65.05977200473305,77.087116641415,79.48609105494535,63.21069252709386,64.98798998015135,0.1967987865752292,195.80810202251087,0.0743519045616594,71.7820245816938,210.11848,147.90860122664424,219577.89574886093,154567.36323479938,500.00941,335.4472301446776,522022.2484638215,350051.5718604248,457.72172,223.91299894203183,475106.3620783346,231515.1848176135,2607.69585,1215.983478545575,2693679.126781758,1239312.6473953668,922.79509,414.7288498063956,952425.375161978,421486.2786924649,1481.3117,635.1360182762037,1515743.0297203527,636106.4912159194,0.3813,100000,0,955084,9980.813443130042,0,0.0,0,0.0,43478,453.8310412573674,0,0.0,41303,428.4161685407349,1239968,0,44499,0,0,0,0,0,91,0.9509676879989968,0,0.0,0,0.0,0,0.0,0.05099,0.1337267243640178,0.2980976662090606,0.0152,0.363261480787254,0.636738519212746,23.66975743651447,4.097452835209149,0.3093991523310895,0.2734978808277237,0.2079281974569932,0.2091747693841934,11.326463768111768,6.062466708909439,16.28568268737975,11546.219279087009,46.04520806858577,13.356530053413351,14.137887016376885,9.306635931134828,9.244155067660708,0.5843929194714536,0.7866909753874203,0.7099113618049959,0.605515587529976,0.1132300357568533,0.7510955302366346,0.9174107142857144,0.8757575757575757,0.7458563535911602,0.1208791208791208,0.5181184668989547,0.6964560862865947,0.6498353457738749,0.5666156202143952,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019963113840416,0.0041889808503732,0.0065281176076428,0.0088616985599739,0.011039549057314,0.0132731643712818,0.0151971033709011,0.0172202475793602,0.0191971362822807,0.0213382777766395,0.0235857767199458,0.025615469976573,0.0277320436303766,0.0298973534504081,0.032,0.0341065389825951,0.0361420814854727,0.0379301396169616,0.0397665806773737,0.0418342886920271,0.0571183838046191,0.0703943718003747,0.0838930400470153,0.0966380807071079,0.1091949170431038,0.1242709402885541,0.1363269553398882,0.1466469291472752,0.1567774416640834,0.1661425182736376,0.1784944382167802,0.1908047969320434,0.2008362278285297,0.2098340907846465,0.2183966319130645,0.2279745584921577,0.2366520592049367,0.2445255885767094,0.2509830215696524,0.2575164898193289,0.263807094829585,0.2704518277099111,0.2766686832022585,0.2807322929171669,0.2855387086568181,0.2895438059756729,0.2944086156158036,0.2988866976270755,0.3034990744216753,0.306195623517005,0.3036714039621016,0.3008590474881451,0.2979582079478021,0.2952497657319974,0.2927448447868881,0.2891092442118471,0.2862994417295314,0.2869119549376954,0.2879433833560709,0.2884255546645282,0.288750327678538,0.2899218672732667,0.2898158066074391,0.2908300466116887,0.2921554429157615,0.2929190148194531,0.2933503836317135,0.2968313287064661,0.3010125698324022,0.304440329380245,0.3078315160837895,0.3117860714849713,0.3149205561072492,0.3189064362336114,0.3228687166267722,0.3307692307692307,0.3345892991710625,0.3376597444089457,0.3418591859185919,0.3392519833774083,0.0,1.993882697661814,49.9348858424986,155.2215393218294,207.2114978175736,fqhc1_100Compliance_baseline_low_initial_treat_cost,13 -100000,95659,48164,458.8172571321047,5219,53.293469511493946,4155,42.86057767695669,1600,16.339288514410562,77.35161970545354,79.75660694059644,63.31721993396855,65.09375711304462,77.14808406704982,79.55525621245962,63.240817886584246,65.02044680910964,0.2035356384037214,201.35072813681631,0.0764020473843061,73.31030393497429,210.46762,148.10475191814996,220018.62867059032,154825.73716864063,506.38224,339.884453547541,528801.2837265704,354747.8371585956,467.42042,229.25504271641924,484869.9651888479,236787.12419801316,2713.14183,1268.2346304265525,2801771.2813221966,1291444.2844556856,990.01619,449.1260192695106,1021967.3005153724,456600.286632842,1563.1507,659.9465429250073,1598832.1433424978,662178.1092168385,0.38371,100000,0,956671,10000.846757754103,0,0.0,0,0.0,44096,460.38532704711525,0,0.0,42301,438.4532558358335,1234980,0,44265,0,0,0,0,0,95,0.9931109461733868,0,0.0,1,0.0,0,0.0,0.05219,0.1360141773735373,0.3065721402567541,0.016,0.3448592974066581,0.6551407025933419,23.440013775652247,4.212550960505151,0.3068592057761732,0.2685920577617328,0.2093862815884476,0.2151624548736462,11.513374442337213,6.15878436827564,16.94197727975893,11678.224168090765,47.325436758527246,13.630909614307477,14.302960399276108,9.600227559998388,9.791339184945286,0.5783393501805054,0.7894265232974911,0.712156862745098,0.5839080459770115,0.1185682326621924,0.7706953642384106,0.9307359307359307,0.8861111111111111,0.7258883248730964,0.2063492063492063,0.4994910078045469,0.6896024464831805,0.6437158469945355,0.5423476968796433,0.0950354609929078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0042184251888657,0.0063835833316418,0.0087072258798667,0.0111383494898737,0.0135567325320839,0.0158466323356957,0.0180024711276306,0.0201533742331288,0.0221141042712281,0.0244988407164987,0.0265223914339149,0.0290715623520694,0.0311343415911504,0.0331980209269416,0.0351245654692931,0.0372393350192778,0.0394796943775433,0.0418760469011725,0.0438450149104331,0.0585248111344472,0.072401553780272,0.086349133045048,0.0995570332803737,0.1121828696863523,0.1272913932517675,0.1378504920956799,0.1479365620736698,0.1581469990371242,0.1676260228956807,0.179275091934562,0.1910901172238954,0.201258477851443,0.2105896905410878,0.2197823980266056,0.2292888420819245,0.2383602051419568,0.2468702152571377,0.2547483623400656,0.2612574438845625,0.2681643087672215,0.274310425432445,0.2799134434603696,0.2846367511134524,0.2889759671960111,0.2933895990452873,0.2973195670357932,0.3011028338642334,0.304518993713939,0.3083953604586938,0.3056883493581135,0.3023389807257013,0.2998932314349133,0.2967732641889945,0.2948315206116824,0.29151973131822,0.288058053320713,0.2887714533466403,0.2896520021792427,0.2901279609888056,0.2915389789969355,0.2919044433074895,0.2929303471164082,0.2926135100280161,0.2946639608451713,0.2954862726849697,0.297782680015838,0.3024090370092991,0.3059483178937104,0.3090142288439557,0.3128473948212752,0.3162527507073247,0.318108376833209,0.3218693558097532,0.3257498374965177,0.3257325141776938,0.3357262868489384,0.332931484830219,0.3350390519795314,0.3469996272828923,0.0,2.2331985065974687,52.339740082349486,151.73402299578427,218.55583058839244,fqhc1_100Compliance_baseline_low_initial_treat_cost,14 -100000,95798,47780,454.9781832606109,5042,51.59815444998851,4000,41.253470844902814,1546,15.731017349005198,77.3507064425629,79.67930597634722,63.34838135415546,65.06996092537536,77.15629961716635,79.48814419445985,63.27503643769668,65.0002206286102,0.1944068253965412,191.16178188737365,0.0733449164587796,69.74029676516125,212.56246,149.5078696166519,221886.11453266247,156065.75253831176,503.14732,337.4304943147487,524701.1419862628,351715.45785376395,459.3116,224.866171187178,476693.3547673229,232540.50902344735,2603.25159,1218.520685773523,2683545.2410279964,1238075.7069808587,920.9216,410.9071974709063,945856.6880310654,413477.7513204895,1509.45806,648.5662705291232,1537280.2354955217,644870.670761917,0.38151,100000,0,966193,10085.732478757383,0,0.0,0,0.0,43630,454.89467421031753,0,0.0,41562,431.08415624543306,1232590,0,44284,0,0,0,0,0,96,1.0021086035199065,0,0.0,0,0.0,0,0.0,0.05042,0.1321590521873607,0.306624355414518,0.01546,0.3518063173822583,0.6481936826177417,23.5226350790441,4.181970604168658,0.3105,0.26575,0.2175,0.20625,11.38573632011752,5.991858383714116,16.71894655854954,11565.36019612435,45.9135746857929,12.929482302136662,14.113523650321556,9.76132454734459,9.109244185990104,0.57775,0.8015051740357478,0.6811594202898551,0.5862068965517241,0.1248484848484848,0.7443037974683544,0.9327146171693736,0.8342696629213483,0.7385321100917431,0.1222222222222222,0.5076376554174068,0.7120253164556962,0.6196388261851016,0.5352760736196319,0.1255813953488372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0043694241686942,0.0064740682111073,0.0085425808548675,0.0104522531316089,0.0125932788337218,0.0149504708328237,0.0172975069139002,0.0194876196899557,0.0217662709783053,0.0238641719777855,0.0262164214328223,0.0284771750971163,0.0305937577204974,0.0323884552325761,0.0345557851239669,0.0367009498582455,0.0389264388787526,0.0409886286930785,0.0429011638801557,0.0577549146458533,0.071778089124025,0.0859365172543922,0.0987074401008827,0.111437815506866,0.1271668357855572,0.1388835867744056,0.1492044910338956,0.1587201605671093,0.1682618621451002,0.1809502281925428,0.1917535801134828,0.2020731018297188,0.2105309154467992,0.2183769046414986,0.2288836777133755,0.2370414939608682,0.2452344846953103,0.2526627084844089,0.2589220351390922,0.2652142288109175,0.2712202752711269,0.2764584195283409,0.2809358544758257,0.2859187212729058,0.2904468318135391,0.2948509755914758,0.2977320373546788,0.300858857615894,0.304234476220572,0.3014668350213577,0.298922073463783,0.2965478450397243,0.2942178343581305,0.2913694139981905,0.2874642523971922,0.2844831675653452,0.2850037753192607,0.2849825855357508,0.2861321680192633,0.2857223180148437,0.2855420972554289,0.2865197979332173,0.287772201810198,0.2904944791166586,0.2909995053242729,0.2916393676114513,0.2965350270406238,0.3008030297717151,0.3042224592171268,0.3059545454545455,0.3088634548842161,0.3126614987080103,0.3125477026408182,0.3140155416159536,0.3127070515854235,0.3161448741559239,0.3189089417555373,0.3283249860879243,0.3297380585516178,0.0,1.853620460228436,51.98018999606673,148.85901931931326,205.8409715179749,fqhc1_100Compliance_baseline_low_initial_treat_cost,15 -100000,95735,47836,456.2490207343187,5085,51.80968297905677,3989,41.08215386222385,1510,15.438449887710869,77.31652017658898,79.67804920667882,63.31665033110207,65.06269693822878,77.11755413673569,79.48153463596763,63.240993722954855,64.99048730281267,0.1989660398532891,196.51457071118728,0.0756566081472129,72.20963541611525,211.50228,148.82831484813218,220924.48947615817,155458.40230650463,501.67503,336.8737146285062,523451.391862955,351308.4537823223,459.53848,225.23811746258204,476104.381887502,232272.7891704384,2582.50229,1222.1356484189232,2660371.9851673893,1239431.6161476192,916.27858,418.6436581712964,941978.0644487388,422315.8210488032,1463.5286,633.4215554654486,1497066.381156317,634132.4836239732,0.38228,100000,0,961374,10042.02224891628,0,0.0,0,0.0,43668,455.5282811928762,0,0.0,41566,430.2815062411866,1234244,0,44290,0,0,0,0,0,86,0.8983130516530005,0,0.0,0,0.0,0,0.0,0.05085,0.1330176833734435,0.2969518190757129,0.0151,0.3555054490792935,0.6444945509207065,23.47470932942598,4.121709260903922,0.3128603660065179,0.2742541990473803,0.2160942592128353,0.1967911757332665,11.489806047967027,6.242703855814032,16.29119564860578,11579.37711709554,45.88123850668533,13.22191323125946,14.24291264882561,9.69835501070254,8.718057615897715,0.5846076710955127,0.8025594149908593,0.6810897435897436,0.5974477958236659,0.1133757961783439,0.7431874483897605,0.9310344827586208,0.8494623655913979,0.7276995305164319,0.1256544502617801,0.515478761699064,0.7177541729893778,0.6095890410958904,0.5546995377503852,0.1094276094276094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0043896554171186,0.0068003044912458,0.0089517054980338,0.0112202962239583,0.013606827857332,0.0159097630873099,0.0181162750324234,0.020337215365896,0.0223393908369593,0.0243724879009105,0.0264511690472034,0.0283307967586689,0.0305011790631339,0.032492650471917,0.0345825196573778,0.0368415059573719,0.0388265925334273,0.0407800496886662,0.0425274782518101,0.0572764953383238,0.0707371945796055,0.0842439750823248,0.0973963153024312,0.1099066800231981,0.1251335314711202,0.1361432617943794,0.1461251862891207,0.1562640227355285,0.1658620319708185,0.1780224278527647,0.189801638404017,0.2010570502642625,0.2103283510283521,0.2191899954865201,0.2286420464621386,0.2365967235815028,0.2450970464135021,0.252794643363786,0.2596822414918842,0.2657773869986233,0.271898023622968,0.2775732900950374,0.2823141486810551,0.2864884568651276,0.2902652902652902,0.2937906860290435,0.2981761718700284,0.302263579535895,0.3054272974327854,0.303042536299167,0.2996600090847774,0.2975690233791139,0.2952517319680074,0.2929443065443898,0.2888517911567855,0.2859018571835353,0.2858363176397148,0.2868227653392582,0.288601758524555,0.2897290815752988,0.2912341634763389,0.2913361103552215,0.2921850222232149,0.2929193559997121,0.2933527136813144,0.2944802704468623,0.2997498436522827,0.3040186981092583,0.3067791931222148,0.3097413169319826,0.3142283085708243,0.3195373554235698,0.3201503759398496,0.3222356551660001,0.3232168162494095,0.3281035795887281,0.3394900622364987,0.3410958904109589,0.3474446987032799,0.0,2.246659692140589,52.70886161715193,149.34560950019144,199.55876117650624,fqhc1_100Compliance_baseline_low_initial_treat_cost,16 -100000,95680,47696,454.8808528428093,5108,52.14255852842809,4063,41.90008361204013,1532,15.614548494983277,77.40264542862671,79.78333526510997,63.35728834693722,65.11207701612526,77.20307104459528,79.58892879261842,63.28133669688743,65.0410472851412,0.1995743840314361,194.40647249155063,0.0759516500497881,71.0297309840513,211.3408,148.73202505789922,220882.9431438127,155447.35060399165,504.90397,338.83786466769845,527131.3545150502,353567.7842826331,463.7636,227.49100378379063,481511.5384615384,235242.4417153736,2596.17866,1218.0968111271577,2675818.3319397992,1235569.4157569385,919.9962,421.5842585199552,949077.518812709,428232.6677673405,1477.69626,631.2621022535202,1507757.7968227423,627557.0425358155,0.38177,100000,0,960640,10040.133779264212,0,0.0,0,0.0,43879,458.0058528428093,0,0.0,42117,437.0819397993311,1235223,0,44324,0,0,0,0,0,73,0.7525083612040133,0,0.0,0,0.0,0,0.0,0.05108,0.1337978363936401,0.2999216914643696,0.01532,0.3510558069381598,0.6489441930618401,23.725474966044278,4.028962068164938,0.309623430962343,0.2872261875461481,0.209205020920502,0.1939453605710066,11.671345816196055,6.579629244820837,16.271232441742384,11588.824221468582,46.18089308098812,14.16150337160762,14.11549470423069,9.397460494981503,8.506434510168305,0.59438838296825,0.7994858611825193,0.7114467408585056,0.5858823529411765,0.1129441624365482,0.7781512605042017,0.9208333333333332,0.8973607038123167,0.7291666666666666,0.2146892655367231,0.5182735816219979,0.7147016011644832,0.6423118865866958,0.5440729483282675,0.0834697217675941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.0046621464116675,0.0068370866301481,0.0090287722291622,0.0113889425570209,0.0136651528419852,0.0157513228052647,0.0179424372320881,0.0201933492754511,0.0224121168704907,0.0246420041616695,0.0266818606465654,0.0291178285009253,0.031020845348933,0.0328215604944386,0.0346869799795351,0.0369461443674733,0.0390602299613963,0.0407908558591353,0.0426394563495372,0.0571980777267028,0.0713298429319371,0.084918827591273,0.0974257550732718,0.1101629660882864,0.1252288190292782,0.1364393738392146,0.1464372784277821,0.1567068479097204,0.166575507008569,0.1792587965406197,0.1909647812628525,0.2012007439391797,0.2105280423396135,0.2190941395205562,0.2286859471190044,0.238149386845039,0.2463909765989237,0.254148966298499,0.2603063907625471,0.2663642030892845,0.2714055681314322,0.2761222224845923,0.2813247536120945,0.286497036112155,0.2907209900234958,0.2947614347646831,0.2982006446209679,0.3021310650161992,0.3057282970247564,0.3031278502065561,0.3005381423817935,0.2972704088781773,0.294858899936778,0.2933891015503761,0.289733156555266,0.2863900100908174,0.2866185779478875,0.2864739059527045,0.2874644886363636,0.2877274082910826,0.2883959713132421,0.2897085685818665,0.289929669647017,0.2900066876851055,0.2905681877039415,0.2900172848601626,0.2940387434881617,0.2985558811218083,0.3041901533367496,0.3088881838371934,0.3135040559885478,0.3192729551864619,0.3228048964787668,0.322565543071161,0.329283962153954,0.3347000759301443,0.3394532029535023,0.3456756756756757,0.3564504101416853,0.0,2.112728621307108,51.67463844070481,145.08855863962174,215.1021973348554,fqhc1_100Compliance_baseline_low_initial_treat_cost,17 -100000,95736,47684,454.917690315033,5240,53.63708531795771,4129,42.6276426840478,1579,16.179911423080135,77.33907921770925,79.70658145222114,63.32552877917672,65.07563210959445,77.14330462514894,79.51262739406128,63.25153160442081,65.00475236440263,0.195774592560312,193.9540581598607,0.0739971747559025,70.87974519181728,213.1118,149.95221294155786,222603.6182836133,156630.9569457235,504.60394,337.9008300338335,526601.4038606166,352473.479186339,461.03027,225.12208265745969,478342.6088409794,232654.63055337095,2673.81237,1243.1549463806894,2761539.149327317,1267161.4610811917,966.86233,431.69877948773376,996746.5321300242,437747.2523269548,1537.65296,654.6924632221991,1576368.9730091086,657147.2443357542,0.3808,100000,0,968690,10118.346285618783,0,0.0,0,0.0,43837,457.3828027074455,0,0.0,41844,433.9328988050472,1226646,0,44013,0,0,0,0,0,94,0.9818668003676776,0,0.0,0,0.0,0,0.0,0.0524,0.1376050420168067,0.3013358778625954,0.01579,0.350748995250274,0.649251004749726,23.54292402560858,4.185443170686005,0.313877452167595,0.2693146040203439,0.2124000968757568,0.2044078469363041,11.240223043994888,6.03361083506785,16.90749126832854,11560.366613839196,47.10400359860843,13.39275981722788,14.668587257182931,9.637580054223683,9.405076469973933,0.5768951319932187,0.7985611510791367,0.6936728395061729,0.556442417331813,0.1267772511848341,0.736750651607298,0.9182242990654206,0.8691860465116279,0.6951871657754011,0.1354166666666666,0.5151108126259234,0.7236842105263158,0.6302521008403361,0.518840579710145,0.1242331288343558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020762437206287,0.0042077300563734,0.0064553454523309,0.0085656803771744,0.0107321241467706,0.0131684811944311,0.0153367664304287,0.0173049239910565,0.0196834291089797,0.0218152768389356,0.0241623678300019,0.0262933557922414,0.0282005923975645,0.0305268797263604,0.0323396436755506,0.0345387423347776,0.0364968040692434,0.0384192282944851,0.0405457400455476,0.0423820636772795,0.0572093848868655,0.0709921108251198,0.0847960574604173,0.0976948639212552,0.1100729742270215,0.125552664424277,0.1366568354940694,0.1469849246231155,0.1568070100448813,0.1658833880555376,0.1780457317730221,0.189599168453193,0.2009812453766154,0.2107048294273397,0.2194294899318514,0.2294271526115101,0.2375561063844041,0.2451159126716182,0.2534506242905789,0.2606802346901357,0.2666203784065266,0.271779937546051,0.2770183985243343,0.2814351901734727,0.2858893026528062,0.2900373813388421,0.2935610316330861,0.2968644917329678,0.3004453624217388,0.3040507628914838,0.3018738758087465,0.2992476248009226,0.2972322672332522,0.2940921628373792,0.2912628563795841,0.2880474675801321,0.285644330711149,0.2854308761804827,0.2862290378769767,0.286420325797991,0.2883914043651461,0.2889742831806089,0.2900045850527281,0.2904188283494021,0.2908865112724493,0.2932733338505702,0.2926214417221356,0.2973268719712365,0.3015213901877311,0.305242779819051,0.3087501134610148,0.31361009490483,0.31640625,0.3190857142857143,0.3260240739012783,0.330970942593905,0.3286573146292585,0.3296009771986971,0.3304685334072637,0.3274674827850038,0.0,1.9924486893546247,50.26136510678365,157.27284355807885,218.01025819803291,fqhc1_100Compliance_baseline_low_initial_treat_cost,18 -100000,95696,47223,449.7889148971744,5143,52.56228055509112,4108,42.43646547400101,1576,16.134425681324192,77.30793472821749,79.68393146015347,63.31631099018998,65.07006509962635,77.1078952227038,79.48408909452134,63.24130287827044,64.99667100587615,0.2000395055136863,199.8423656321364,0.0750081119195442,73.39409375019557,212.89444,149.7397556837732,222469.52850693863,156474.41448312698,501.05842,335.92784380529366,523130.4025246615,350572.9537340053,457.31169,223.81385397342495,474419.88170874433,231149.6893234765,2678.39704,1260.4087806974278,2768260.8677478684,1286497.513686495,942.03368,429.134957612069,971554.3909881292,435587.6605208869,1536.92198,656.0805347227864,1575972.747032269,662636.0214890689,0.37821,100000,0,967702,10112.251295769938,0,0.0,0,0.0,43571,454.81524828623975,0,0.0,41381,429.0356963718442,1229609,0,44173,0,0,0,0,0,96,0.9927269687343254,0,0.0,0,0.0,0,0.0,0.05143,0.1359826551386795,0.3064359323352129,0.01576,0.3568503350707371,0.6431496649292628,23.50493207718613,4.159944657058524,0.314508276533593,0.2704479065238558,0.2081304771178189,0.2069133398247322,11.26272086082015,5.987271667298651,16.995474796645546,11521.22128685797,47.34502160539868,13.734393905676315,14.657553969801356,9.47786188921263,9.475211840708372,0.5749756572541382,0.8055805580558055,0.6873065015479877,0.5707602339181287,0.1070588235294117,0.7363344051446945,0.9146341463414634,0.8449848024316109,0.7219730941704036,0.135,0.5048882681564246,0.7189014539579968,0.6334371754932503,0.5174050632911392,0.0984615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186116679829,0.0046106765027765,0.0069588857667454,0.0092020801170065,0.0113802782523797,0.0134923221050059,0.0157640892822546,0.0181316998468606,0.0201701118403565,0.0224790410580299,0.0244289990568745,0.02652977412731,0.0284462544736517,0.0306273823014319,0.0324844182110868,0.0344043336227928,0.0365746257058488,0.0387550221650073,0.0407560359085849,0.0428228916918586,0.0569697602757612,0.0714868853488518,0.0843903104312886,0.0969984434815531,0.1090389643248713,0.1236781998138905,0.1358843248748196,0.1459743687997615,0.1559054781642594,0.165164971896855,0.1773675935299059,0.1891131736656498,0.1993563888194301,0.2086194078803516,0.2169900563181978,0.2270859408748047,0.2351549773503224,0.2443806952413094,0.2518070511874908,0.258462102381416,0.2651948412790293,0.270835526546654,0.2760155288324969,0.2805992707033874,0.2846806751301133,0.2888984827926483,0.2931816473300423,0.2964425870241068,0.3004332485861049,0.303968715319981,0.3018028943326057,0.2993731487221878,0.2955724760293288,0.2937372509873703,0.2914472705637364,0.2876334614972197,0.2846325660969157,0.2858035244608101,0.2864132480240873,0.2860152846225269,0.286737007814989,0.2875358307798754,0.288108289049751,0.288451244535641,0.2901615342150109,0.2916492910758966,0.2924657144483014,0.296245133743564,0.2997927133471524,0.3039091556540318,0.3063973063973064,0.3102278749337573,0.3138241025963412,0.3150653694131955,0.3172905525846702,0.3217319490325625,0.3258443908323281,0.3307385229540918,0.3265251276538565,0.3309727916511368,0.0,1.949737183960652,54.45600934028309,153.26831161829037,208.5844171843836,fqhc1_100Compliance_baseline_low_initial_treat_cost,19 -100000,95711,47257,450.23038104293136,5180,53.06600077316087,4149,42.80594706982478,1586,16.205033904148948,77.38171245272493,79.7557764004435,63.34258245905804,65.09502398870283,77.18074842232322,79.55858105929258,63.26646387949266,65.02298574412087,0.2009640304017068,197.1953411509162,0.0761185795653816,72.03824458196095,211.90598,149.006645359271,221401.4481094127,155683.51579943034,503.90955,337.46722165084003,525909.7177962825,352009.87115421705,455.1128,222.56278255907696,472767.8009842129,230304.76733792108,2709.43523,1264.238539076213,2795088.516471461,1285247.0593499723,970.00241,438.8231976330674,997220.8419094984,442292.19380181486,1547.28544,661.7234805509512,1581698.2165059398,660008.6759065625,0.37821,100000,0,963209,10063.702186791486,0,0.0,0,0.0,43861,457.6798905037039,0,0.0,41331,429.0311458453052,1235898,0,44347,0,0,0,0,0,74,0.7731608697014972,0,0.0,0,0.0,0,0.0,0.0518,0.1369609476216916,0.3061776061776062,0.01586,0.3490774907749077,0.6509225092250922,23.86739307857109,4.199206652579759,0.3126054470956857,0.2631959508315257,0.2176428054953,0.2065557965774885,10.8909882629511,5.670953683516049,16.999338003343773,11505.964041263976,47.526574030718834,13.292011958752052,14.836401092522566,10.001444931815692,9.39671604762852,0.5876114726440106,0.8021978021978022,0.7286044718581342,0.5681063122923588,0.1213535589264877,0.7378800328677074,0.915217391304348,0.867816091954023,0.6990291262135923,0.1527093596059113,0.5252387448840382,0.7199367088607594,0.6775553213909379,0.5294117647058824,0.1116207951070336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673958839734,0.0044906689373435,0.0067581280188334,0.0092030148507811,0.0114225847793803,0.0135437881873727,0.0156818761152179,0.017803911960472,0.0198624045469879,0.0222438325314771,0.0243072286068708,0.0264268334000677,0.0285781863803706,0.0306142420090853,0.0326821667027852,0.0345736706609733,0.0366216146237895,0.0385297871678064,0.0406548033821801,0.0427378930145794,0.0571064531963112,0.0712087267854525,0.0845538861843209,0.0969377557568298,0.1087894353792441,0.1244236707415084,0.1353937889253164,0.1455977855850101,0.1551387093672887,0.1642783593615925,0.176343831144344,0.1884308971250433,0.1992517998129499,0.2088038214750281,0.2178422551941838,0.2268812681263698,0.2357198617151778,0.2431906614785992,0.2505642316809,0.2577823573186788,0.2646112910689495,0.2701884410361919,0.2755437741118553,0.2809987659202281,0.2857819502301461,0.2904628728424113,0.2934166927164739,0.2974320491459242,0.3011049008953061,0.3038333311370854,0.3004018439125351,0.2969322627136092,0.2942267693518466,0.2914488934963212,0.2905759162303665,0.2870596123369499,0.2835547989470531,0.2841391702058151,0.2843851338732406,0.2850904443221557,0.2864569746208027,0.286677146787188,0.2871593552675307,0.2882153238511549,0.2899269933673712,0.2913054695562435,0.2921427563831288,0.2961638895797065,0.2991636881007739,0.3045152670255825,0.3081017683146878,0.3121609522304734,0.3175857958466654,0.3196024882415414,0.3247711563609191,0.3274440518256772,0.328521501291597,0.3335343787696019,0.3372474057891862,0.342376767290791,0.0,2.032171157640524,53.33205223975879,154.4445778176276,214.14439390733983,fqhc1_100Compliance_baseline_low_initial_treat_cost,20 -100000,95853,47637,452.2028522842269,5138,52.25710202080269,4040,41.52191376378413,1492,15.158628316275966,77.44506122741345,79.7220740676805,63.40474875222951,65.08363934527236,77.25000977897456,79.53188066227355,63.33049096464767,65.01396887559048,0.195051448438889,190.1934054069443,0.0742577875818355,69.67046968188129,212.77014,149.6386138769668,221975.46242684108,156112.60354602023,499.13146,334.6397283704417,520075.7305457315,348469.23904314014,460.29652,225.0448583169682,475883.1231156041,231518.67716219096,2634.22012,1232.552520375221,2708117.7010630863,1245935.8388952892,954.14946,432.3981737648633,974502.4255891836,430355.67666504456,1457.15082,623.8898390931406,1481626.386237259,617201.7511002743,0.38053,100000,0,967137,10089.793746674595,0,0.0,0,0.0,43387,451.9629015262955,0,0.0,41595,429.7935380217625,1235573,0,44397,0,0,0,0,0,94,0.9598030317256632,0,0.0,2,0.0208652832983839,0,0.0,0.05138,0.1350222058707592,0.2903853639548462,0.01492,0.362369985141159,0.637630014858841,23.849376723834396,4.208857994212919,0.3116336633663366,0.2641089108910891,0.2188118811881188,0.2054455445544554,11.46846650242055,6.163683510865738,15.843194958987963,11578.283665527642,46.205338031610935,12.99178235200681,14.27618307212173,9.917231316258649,9.020141291223757,0.5896039603960396,0.8050609184629803,0.7116759332803813,0.5859728506787331,0.1313253012048192,0.7454858125537404,0.9254079254079254,0.8441176470588235,0.7464788732394366,0.1325966850828729,0.5265901981230449,0.7241379310344828,0.6626768226332971,0.5350223546944859,0.1309707241910631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0045685227767704,0.0067935471441752,0.0091652795258008,0.0113398500213384,0.0135922922749793,0.0156950215921127,0.0180794762764232,0.0204229594910598,0.0226996186055072,0.0248720049150112,0.0268088815958155,0.0287680377959225,0.0311464955049476,0.0334222808337025,0.0357032266055614,0.0377360441787834,0.0397492357908916,0.041734147253021,0.043929745702751,0.0580175595920835,0.0720121186794818,0.0855739833312392,0.0982097884486232,0.1101887507101824,0.1254802617690521,0.137105399709841,0.1478238694321659,0.1571218326081392,0.1662153628803527,0.1776686298955333,0.1892615710243839,0.1999891440047766,0.2091690231572971,0.2185485022573239,0.227636339496133,0.2365162340195499,0.2445530647789201,0.2517174144693586,0.25824905038671,0.2638387902330744,0.2695950053781041,0.2750928488633407,0.2802900666531047,0.2851666747537483,0.2903483836034506,0.2939807574411651,0.2972711782508074,0.3016228388031887,0.3048383482925415,0.3025231546826901,0.300528374390997,0.2975916465502722,0.2964395617037186,0.2934490200135986,0.2898718378032817,0.2872198191112858,0.2874378413630064,0.2881025118805159,0.2881130772092035,0.2898512962721706,0.2919319342922267,0.2917013657561625,0.2919874852996649,0.2916159809183065,0.2913383792720415,0.2931122017261804,0.2965727436710829,0.3020141196013289,0.3055544651619234,0.3103604214715326,0.3132625574393915,0.3184745232885276,0.3214394400486914,0.3246545727981953,0.3230167200284596,0.3253749617385981,0.3213920163766632,0.3272526257600884,0.3265862203191903,0.0,2.405178501220284,50.329136481238855,154.05607623636965,207.41567783285905,fqhc1_100Compliance_baseline_low_initial_treat_cost,21 -100000,95668,47714,453.8403645942216,5237,53.3825312539198,4186,43.01333779320149,1623,16.50499644604256,77.29747507811412,79.7001627039434,63.28577397120039,65.06558700844099,77.08851349215415,79.49731082693133,63.206938036547015,64.99229150863218,0.2089615859599689,202.8518770120797,0.0788359346533766,73.29549980880756,210.93908,148.4592260752456,220490.73880503408,155181.69719785676,504.4075,338.0527704280439,526501.0557344148,352613.5180290629,467.13529,229.59996745315715,483050.4557427771,235988.57463848605,2716.09583,1265.5299761710926,2792450.714972614,1276617.478999095,928.52732,422.1422649711789,952819.950244596,423504.97028387553,1578.47304,664.9142962560546,1606290.9854914914,657630.4307608462,0.38122,100000,0,958814,10022.30630931973,0,0.0,0,0.0,43802,457.0702847347075,0,0.0,42309,437.1890287243383,1232452,0,44238,0,0,0,0,0,86,0.8780365430446961,0,0.0,1,0.0104528159886273,0,0.0,0.05237,0.1373747442421699,0.3099102539621921,0.01623,0.3481914504932408,0.6518085495067593,23.63257763539085,4.123764024407746,0.3136645962732919,0.2663640707118967,0.2133301481127568,0.2066411849020544,11.383327217893692,6.242423088736002,17.17234760439025,11633.478896601026,47.83383710698183,13.746152685171213,14.879076922384098,9.905018265111428,9.303589234315092,0.5733397037744864,0.8089686098654708,0.674028941355674,0.5901455767077267,0.099421965317919,0.7674979887369268,0.922920892494929,0.8482384823848238,0.7373271889400922,0.1585365853658536,0.491335372069317,0.7186495176848875,0.6059322033898306,0.5428994082840237,0.0855920114122681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0047369809100683,0.0073404741357429,0.0097551061883954,0.0119832356770833,0.0140662877630426,0.016421198645506,0.0186474949449561,0.0209660758665125,0.0231948469549723,0.0254172094406777,0.0274396194820271,0.0294852933611794,0.0316454391822266,0.0337415078365374,0.0357375590885112,0.0380493366500829,0.0401125602259511,0.0421569545449816,0.0439816986107202,0.058417341342387,0.0731671569602495,0.087111195063594,0.1000652233373309,0.1125106813938032,0.1274943394629367,0.1374932325559176,0.1474341222333468,0.1566052465538076,0.1661441333104277,0.1777267285728152,0.1896110653427568,0.2006056183079721,0.2094439879485072,0.2190941258170835,0.2292681303320427,0.2375502905677246,0.24539013483222,0.2537830591656821,0.2599685956286032,0.2649661755166342,0.2719511909501838,0.2770777575140333,0.281937744498044,0.2864144976891267,0.2910400809267095,0.2944816786720952,0.2985281936922587,0.3017526562277026,0.3055999788530418,0.3036205687152646,0.3010976585123693,0.2985993448548514,0.2964512113931745,0.2945187165775401,0.2910398653301706,0.28754700287547,0.2880127009067399,0.2884108494175665,0.2887123716103351,0.2889000670690811,0.2901718213058419,0.2913011772059589,0.2919323660763881,0.2927015849489613,0.2929640951246049,0.294482524216847,0.2984939382577178,0.3027871768932919,0.3066940160151473,0.3094245582238332,0.314572333685322,0.3190943773844518,0.3230095180540867,0.3227523107086173,0.3270588235294118,0.3313464771511539,0.3320579943616593,0.331696672122204,0.3329523809523809,0.0,2.8617052283604894,53.4809197338062,151.038643077578,218.70398892864807,fqhc1_100Compliance_baseline_low_initial_treat_cost,22 -100000,95832,48002,456.4028716921279,5238,53.291176225060525,4173,42.98146756824443,1593,16.23674764170632,77.32864418348662,79.63795543324804,63.32870225298407,65.0377373716414,77.1231127746426,79.4366267467885,63.25049763404292,64.96345658918437,0.2055314088440099,201.32868645953292,0.0782046189411431,74.28078245702352,210.80444,148.4111662243888,219972.9109274564,154865.98028256613,506.63737,339.5391572428425,528063.6008848819,353698.62780401664,458.11908,224.84266043398887,474614.5859420653,231907.0438539414,2720.34353,1271.005490243869,2801829.61849904,1289829.7398261456,970.60377,439.5293746955147,996001.7217630852,442057.89868497296,1559.91914,671.2321778263886,1592156.002170465,669619.3795526469,0.38339,100000,0,958202,9998.768678520746,0,0.0,0,0.0,43973,458.2394189832207,0,0.0,41553,430.1590282995242,1234440,0,44376,0,0,0,0,0,97,1.01218799565907,0,0.0,1,0.0104349277902996,0,0.0,0.05238,0.1366232817757375,0.3041237113402061,0.01593,0.3425384052670081,0.6574615947329919,23.420864698537116,4.199208700909581,0.312724658519051,0.2671938653247064,0.2015336688233884,0.218547807332854,11.221493339657345,5.7805305286153725,17.01219822234336,11624.814538997016,47.65103857201843,13.560936408508656,14.817221030684893,9.316416046023258,9.956465086801623,0.5720105439731608,0.8143497757847533,0.675095785440613,0.5850178359096314,0.1162280701754386,0.7389121338912134,0.9237668161434978,0.8567335243553008,0.7634408602150538,0.1401869158878504,0.5050369375419744,0.7414050822122571,0.608786610878661,0.5343511450381679,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025624145439813,0.0048858614118314,0.0074468624765383,0.0097513408093612,0.0118059792556436,0.0139482793728364,0.0160839873611252,0.0185330707134619,0.0207758497353199,0.0228802979759736,0.0250519995491664,0.0271132867419927,0.0290424023184592,0.0311920938851142,0.0332766176849703,0.0355670795326591,0.0376149921872574,0.039750342139095,0.0417129740228715,0.0435262281432139,0.057969502909948,0.0718348144276006,0.085284561366733,0.0983596221141013,0.1107293061104025,0.1266252299105727,0.137744552250676,0.1485075818036711,0.157787935748462,0.1666577319366563,0.1785745056649291,0.1899372430209911,0.2009134406263593,0.2109342545422743,0.2197843309859155,0.2295777612816734,0.2382600926908258,0.2458303771523812,0.2538447559119511,0.2606695952378221,0.2668150776258884,0.272445856735809,0.27796042870877,0.2826859791981936,0.2877060648457935,0.2910977068916602,0.2941581875595208,0.2981092651105901,0.3021099454033795,0.3054366212073158,0.3032205902169519,0.2998663525262128,0.2971259987013354,0.2947703896856439,0.2922202550101915,0.2891968967526295,0.2864636156186612,0.2871724183199593,0.2878186002898303,0.287242183190077,0.2887858505029353,0.2899288094815516,0.2903818068015856,0.2920702785757231,0.2930241471828286,0.2943626047576909,0.2948637911464245,0.2984397961417003,0.3014972144846796,0.3061553588987217,0.3077548806941431,0.3122162390455073,0.3145989974937343,0.3202549897548759,0.3250116877045348,0.3302523995734092,0.3378316906747536,0.3423441597740569,0.3418966930855425,0.331918178309533,0.0,1.9854582224855488,52.07722318394347,158.03582441237333,216.686003891502,fqhc1_100Compliance_baseline_low_initial_treat_cost,23 -100000,95737,47419,452.1449387384188,5149,52.49798928314027,4051,41.63489559940253,1563,15.96039148918391,77.35098256499538,79.69562438293114,63.33757887846742,65.06947074098356,77.14862059259788,79.49530475373952,63.26170124501108,64.99638255850769,0.2023619723974974,200.31962919162535,0.0758776334563364,73.08818247587112,211.563,148.80496869103143,220983.5277896738,155430.99187464765,500.33369,336.1673748832873,521944.1281845054,350467.7761819228,455.43138,223.47717230541943,470119.2851248733,229402.53414832457,2652.23726,1238.2653230669555,2729988.040151666,1253286.0818287414,943.32622,429.0121063441088,966795.6484953573,429621.05948355113,1522.4946,650.9848548104096,1556895.0771384104,653457.9622403472,0.38016,100000,0,961650,10044.705808621537,0,0.0,0,0.0,43507,453.73262166142666,0,0.0,41318,426.0003969207308,1235647,0,44346,0,0,0,0,0,80,0.8356225910567493,0,0.0,1,0.0104452823882093,0,0.0,0.05149,0.1354429713804713,0.3035540881724606,0.01563,0.3379992534527808,0.6620007465472191,23.78647732289756,4.185630838192463,0.3083189335966428,0.2552456183658356,0.2246358923722537,0.2117995556652678,11.280608162146429,6.01894015296797,16.76527662101345,11550.147241766468,46.30279924300927,12.789106593456207,13.913894872341912,10.075411532080444,9.524386245130705,0.5699827203159714,0.8085106382978723,0.6933546837469976,0.5604395604395604,0.113053613053613,0.7193877551020408,0.9090909090909092,0.8592814371257484,0.6865671641791045,0.1044776119402985,0.5088695652173914,0.734006734006734,0.6327868852459017,0.5246826516220028,0.1156773211567732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022480329711502,0.0044597155917738,0.0065548486601118,0.0091614528317217,0.0115301318746123,0.0138143763170485,0.015973333605162,0.0181562107712562,0.020308874784084,0.0223111484100748,0.0245197531623511,0.0266680353110244,0.0285714285714285,0.0305220883534136,0.0325475834321968,0.0344079130965054,0.0363858515573227,0.0384248210023866,0.0402869470291625,0.0423477200987592,0.0568401273552899,0.0715735297194384,0.0851184297442672,0.0984692375625552,0.1110455187535578,0.1271141649048625,0.1374256291692738,0.148156819342755,0.1580870178287203,0.1666916970607166,0.1779235608410893,0.1903457979327885,0.2008831942918674,0.2094972372668089,0.2179708741070151,0.2276102859676346,0.235366384846488,0.2433682078974013,0.2513049793472833,0.257733612992699,0.2639690823044791,0.2699673596406051,0.2758718558200589,0.2809256443715507,0.2854872560080552,0.2891204586557744,0.2936354207020657,0.2972481959548734,0.3009753952032289,0.3039974677868193,0.3018042278174229,0.2978114246386786,0.2954753617878732,0.2927005610503788,0.2904706721340702,0.2878922393999694,0.2848166379132967,0.2856908299811181,0.2862923189865637,0.2859382795239113,0.2867314520650346,0.2880858605750295,0.2884531044420775,0.2891893698068655,0.2908055874473785,0.2934268641205508,0.2946395668565921,0.2988387015995242,0.3039618437543517,0.3072770970410937,0.3113263043576632,0.3176514071492687,0.3203002815139193,0.3254638708704178,0.3289890150809905,0.3307411334982915,0.3359025743795283,0.338869758962933,0.3355463347164591,0.3374374759522893,0.0,2.6383217061422184,50.6876746295007,149.75467687071645,212.15666000527733,fqhc1_100Compliance_baseline_low_initial_treat_cost,24 -100000,95834,47490,451.9272909405847,5141,52.28833190725629,4094,42.04144666819709,1567,15.902498069578646,77.51248185563044,79.79968292481526,63.42745123530996,65.11150383913704,77.31313303403748,79.6040999637466,63.35213098789433,65.04006590548882,0.199348821592963,195.5829610686521,0.0753202474156324,71.4379336482267,212.43266,149.31637551841254,221667.32057516123,155807.30796837504,502.7933,337.36201436460965,524006.58430202224,351383.83492769755,452.79677,222.19034801354317,468261.6503537367,228622.20498576155,2675.71118,1244.8816035238322,2750606.006219087,1257576.8344468905,980.66059,443.37308990265205,1005627.7521547676,444983.826097889,1536.71644,654.9737827383489,1562148.1311434354,648480.7557807948,0.37963,100000,0,965603,10075.787298870964,0,0.0,0,0.0,43780,456.1429137884258,0,0.0,41164,425.35008452115113,1237751,0,44380,0,0,0,0,0,72,0.7408644113780077,0,0.0,0,0.0,0,0.0,0.05141,0.1354213312962621,0.3048045127407119,0.01567,0.3733457595526561,0.6266542404473439,23.634858623596863,4.181059568406612,0.306790425012213,0.2642892037127504,0.209086468001954,0.2198339032730825,11.208818199353171,5.996984147402206,16.614756241114936,11515.907345376656,46.456758180200254,13.175598942898691,14.187000773246034,9.320239343015755,9.773919121039777,0.5725451880801172,0.7874306839186691,0.7014331210191083,0.5887850467289719,0.1188888888888888,0.7495812395309883,0.922566371681416,0.8760806916426513,0.7295918367346939,0.1557788944723618,0.4996551724137931,0.6904761904761905,0.6347634763476347,0.546969696969697,0.108416547788873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024892234836986,0.0047396724764788,0.0070140585248178,0.0094468853689967,0.0118348605213433,0.0139123360113902,0.0160656472073466,0.0184165442976015,0.020279170453269,0.02264035177421,0.0248220777225948,0.0269308474089571,0.0291609296972935,0.0310399835331652,0.0330824742268041,0.0351281283245711,0.0369921980091471,0.0390540764701003,0.0409789236410474,0.0428794503435352,0.0578058191677964,0.0716317099182367,0.0847706268206299,0.098056926793404,0.1099903129343385,0.1253023501452337,0.1359772770629756,0.1463007464432299,0.1560936049427507,0.1644535349424942,0.1758121229717087,0.1870173354215045,0.1979176844825153,0.2073269272766979,0.216947141790061,0.2265840981975008,0.2350968661920836,0.242454875268165,0.2505577386951745,0.2569877728259627,0.2633982631560738,0.2692298732761833,0.2750834247172993,0.2798438414059049,0.2838145253019046,0.2886400471489612,0.2925622718153838,0.296774928486444,0.3006595728235385,0.3044767113944306,0.302691844114102,0.2991450653170098,0.2962361830138519,0.292971948119102,0.2912065198133821,0.2889098688919005,0.2857863379882104,0.2856512790355778,0.2855395903393458,0.2857903990622835,0.2864437735286443,0.2871709233791748,0.2883470076215068,0.2890988952482364,0.2902343935720059,0.2911131706312429,0.291064093185527,0.2960188223639403,0.3002796671615509,0.305522092255081,0.3068166659255636,0.3109361239185619,0.3139463318562284,0.3174875195589002,0.3204845814977973,0.3233532934131736,0.329771445532799,0.327808112324493,0.3281667557455905,0.3356824925816024,0.0,2.690471349324168,51.28622801664584,150.45719187509292,210.4467556554389,fqhc1_100Compliance_baseline_low_initial_treat_cost,25 -100000,95748,47603,452.11388227430336,5162,52.87838910473326,4097,42.31942181559928,1552,15.958557881104566,77.31288813594676,79.67189951740352,63.318020272784125,65.06226491745655,77.1238318486048,79.48309678497844,63.24850721890444,64.99437132136383,0.1890562873419696,188.80273242507428,0.0695130538796888,67.89359609271628,210.8524,148.33960582529156,220215.98362367885,154927.1063889497,500.23466,335.736749305133,522005.00271546136,350202.0296038905,461.4195,226.5775218019144,478764.2457283703,234152.2524805246,2638.63334,1217.3325912021314,2727749.822450599,1243601.986522542,960.70711,433.1176023940094,987804.9149851694,436833.8298564417,1510.07362,623.5686042934078,1553634.0184651376,631321.9162609315,0.38001,100000,0,958420,10009.817437439946,0,0.0,0,0.0,43407,452.87630028825663,0,0.0,41760,432.928102936876,1238768,0,44496,0,0,0,0,0,92,0.9608555792288088,0,0.0,1,0.0104440823829218,0,0.0,0.05162,0.1358385305649851,0.3006586594343278,0.01552,0.3432117058714576,0.6567882941285423,23.8490514989508,4.156256919880266,0.3048572125945814,0.2758115694410544,0.2186966072736148,0.2006346106907493,11.706520752621213,6.376331230616202,16.321782200919703,11616.924060152369,46.5845592458496,13.844278100385514,14.007821948556352,9.822115304236783,8.91034389267094,0.5916524286062973,0.8123893805309734,0.7133706965572458,0.5825892857142857,0.1131386861313868,0.7905579399141631,0.93058568329718,0.9011976047904192,0.7725118483412322,0.1761006289308176,0.512619372442019,0.7309417040358744,0.644808743169399,0.5240875912408759,0.0980392156862745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699082420142,0.0046625244529135,0.0068994206515894,0.0094868565392272,0.0117675776283805,0.0138594704684317,0.0162638931375548,0.0185500913722167,0.0209172511092481,0.0233665434513265,0.0256226225507787,0.0276633978538789,0.0297738422140631,0.0319407535587005,0.0338804692094213,0.0361520494429401,0.0383424624910693,0.0403818219547624,0.0423321687047666,0.0442895542914296,0.0593074361356732,0.0735404896421845,0.0861391018045696,0.0985722996698837,0.1109740540426563,0.1260074034902168,0.1372216150834491,0.1479691757493188,0.157571485030068,0.1664843766754594,0.1777758637396238,0.1896275790475366,0.2000717492689184,0.2098805930980186,0.2179322179322179,0.2273779333104464,0.2359517964740013,0.2448458536256172,0.251998001998002,0.25830431595345,0.2647331142076756,0.2702020202020202,0.2763534448097254,0.2812735832105509,0.2858148881145202,0.2900282023177625,0.2949617785784884,0.2985878973524664,0.3021140609636185,0.3051113573991978,0.3030470317359867,0.3002186258198468,0.2979454466083674,0.2963358955094492,0.2938912009512485,0.2899474466422541,0.2884170495959436,0.2880913272010512,0.2880574064582265,0.2882663998856652,0.2891123972205053,0.2894372602523035,0.2911490358472414,0.2930580944313166,0.294215114184857,0.2953516214668679,0.2955897844717137,0.2991883219027245,0.3015828449092759,0.3053944545960118,0.3099622607193197,0.3148421830465533,0.3186826869202515,0.3218034891624499,0.3298766816143498,0.3340385519511048,0.3408708938120703,0.3494048819850716,0.3556843267108168,0.3636363636363636,0.0,1.8536603144377388,50.86240411909672,149.60241601317043,219.376943202552,fqhc1_100Compliance_baseline_low_initial_treat_cost,26 -100000,95782,47713,454.1771940448101,5125,52.46288446681005,4059,41.79282119813744,1551,15.75452590257042,77.37208356525132,79.70871511103995,63.35007434272507,65.07873626318938,77.16966664169534,79.51328780365453,63.27388372213595,65.00790864674521,0.2024169235559725,195.42730738541536,0.0761906205891236,70.82761644417701,211.805,149.0209604872459,221132.36307448163,155583.47130697407,504.58015,338.35737075178747,526193.8360025892,352651.02080953366,454.90794,222.63660022448025,471610.6888559437,229775.17319175703,2637.91022,1227.4763406467057,2715499.049925873,1242953.186033602,951.60717,432.1326636709749,978908.8242049654,436557.9583543621,1513.48206,650.1175158613971,1538492.7439393622,643502.262960159,0.3817,100000,0,962750,10051.471048840074,0,0.0,0,0.0,43852,457.1944624250903,0,0.0,41270,427.7212837485122,1235338,0,44358,0,0,0,0,0,85,0.8665511265164645,0,0.0,1,0.0104403750182706,0,0.0,0.05125,0.1342677495415247,0.3026341463414634,0.01551,0.3588498879761015,0.6411501120238984,23.75894472374844,4.096712476372407,0.3062330623306233,0.2697708795269771,0.2153239714215324,0.2086720867208672,11.014502292561128,5.815066155672642,16.75187194540916,11542.5786424976,46.30280403175744,13.294456218695965,13.882528062001684,9.687819607842089,9.438000143217709,0.5782212367578221,0.782648401826484,0.7007240547063556,0.5881006864988558,0.1239669421487603,0.7232375979112271,0.9053117782909932,0.8651315789473685,0.7336683417085427,0.1408450704225352,0.5209621993127148,0.702416918429003,0.6474973375931843,0.5451851851851852,0.1182965299684542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0048355703337253,0.0073471210245377,0.009619975416747,0.0116342926878877,0.0136626486398436,0.0156152850401084,0.0177663938608486,0.020162279267495,0.0223723262716201,0.0240723091585452,0.0262215334722236,0.0283805314282777,0.0305089632306757,0.0326998236622565,0.0346338237725243,0.0368185158732623,0.0391272335085918,0.0410224438902743,0.043103448275862,0.058189407774589,0.0726628035897328,0.0858484730943819,0.0981432639465361,0.1100868136036074,0.1257514130262532,0.1369527665031104,0.1471041691033397,0.1565234091588067,0.1652455223241066,0.1769325100578731,0.1883484651967142,0.1989046930858751,0.208385707571402,0.2167033208709038,0.2263833368398906,0.2347495343156392,0.243019962233612,0.2508103452183965,0.256933554627139,0.2632290883866119,0.2698258735538156,0.2763559021623538,0.2804159984681299,0.2849742818322981,0.2897746156402713,0.2940116613698356,0.2979399392529896,0.3013432970897384,0.3057381909216681,0.3022330905866229,0.2991080005489227,0.2972056028718237,0.2948845670723783,0.2928128431110715,0.2891953039011862,0.2865991435839904,0.2862898602944789,0.2859435282870702,0.2866356655442122,0.2865388926249719,0.2878811756362777,0.2895269494814598,0.2904352857397187,0.2918832179723613,0.2926727835105138,0.2934832100170745,0.2983199874391584,0.3025377516778523,0.305368596088368,0.3097136643711489,0.3119556611243072,0.3157664416104026,0.315861130020422,0.3204864359214219,0.325772711246915,0.3255778818552651,0.3331370239497448,0.341031149301826,0.3447378207512086,0.0,2.2222993116841474,49.942937421218446,152.95801486245588,212.956587417894,fqhc1_100Compliance_baseline_low_initial_treat_cost,27 -100000,95644,47605,454.1110785830789,5066,51.649868261469614,4001,41.22579565890176,1497,15.23357450545774,77.25911226955019,79.6541647514975,63.27736057920528,65.04526889427285,77.06574982807487,79.46602004201914,63.20379449659743,64.97624338698091,0.1933624414753154,188.1447094783653,0.0735660826078543,69.0255072919399,211.068,148.53101991476973,220680.8581824265,155295.7006344044,499.99976,335.89231937858784,522184.8417046548,350603.3095422482,459.99129,225.40330382342464,477063.37041529,232695.80237823923,2589.07988,1215.6612259291671,2669432.2905775583,1233564.9326188394,929.80195,425.017082922697,954031.4499602694,426307.2125281337,1459.63154,626.3666278771545,1487551.5244029944,621928.9806733667,0.37984,100000,0,959400,10030.948099201203,0,0.0,0,0.0,43540,454.5920287733679,0,0.0,41769,432.9388147714441,1230719,0,44219,0,0,0,0,0,70,0.7214252854334825,0,0.0,1,0.0104554389193258,0,0.0,0.05066,0.1333719460825611,0.295499407816818,0.01497,0.3568181818181818,0.6431818181818182,23.5447042990872,4.097242897753484,0.3319170207448138,0.2696825793551612,0.1957010747313171,0.2026993251687078,11.459128072109852,6.243545874565207,16.09660788585187,11524.241712657293,46.095112924847214,13.286317580152293,15.077169964689055,8.712054810314172,9.019570569691698,0.5966008497875531,0.8025949953660797,0.7168674698795181,0.5977011494252874,0.1245376078914919,0.758563074352548,0.9303370786516854,0.8787878787878788,0.7319587628865979,0.1692307692307692,0.5274607703281027,0.7129337539432177,0.655958549222798,0.5534804753820034,0.1103896103896103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0043906346647197,0.0064247000791669,0.0085453584782962,0.0108754260135306,0.0131077750392112,0.0153149662499745,0.0173851792112865,0.0194027867226873,0.0217822998341761,0.0238986230866235,0.0260188313088478,0.0282643353047055,0.0300083442357813,0.0321771705142361,0.0341515364572563,0.0363302980389719,0.0383333852333945,0.0405138339920948,0.0428668230388324,0.0569314690576211,0.0717240801449563,0.0854028625132572,0.0986848339984626,0.1105772277018607,0.1267131267343091,0.1375885620810894,0.1482243130067873,0.1582273743195987,0.1675722692324213,0.1790753365550569,0.1905922891879591,0.2007058746636746,0.2090085352091071,0.2179005061811444,0.2265938190580893,0.2360239413771885,0.244299343663306,0.2516317572945805,0.2576023895686139,0.2641111020872249,0.2701076630778974,0.2756112897293834,0.2803875372631983,0.284814060919274,0.2894616534664475,0.2931471444344073,0.296128637372166,0.2991139191240383,0.302645670540637,0.3010564092877669,0.2978385908771155,0.2954458747226972,0.2936533271424011,0.2906423768988804,0.2872293076722378,0.2845684394071491,0.2840311555146576,0.2842085450781103,0.2839971423468476,0.284826126851557,0.2864700540881993,0.2879405919882857,0.2887737401592314,0.2898481406193949,0.2908313908313908,0.2919084142303229,0.296056540638584,0.3005691539509061,0.3035446435620115,0.3093212669683258,0.3112059427848901,0.3172560289891291,0.3201263062927599,0.3234478935698447,0.3268149882903981,0.3286037735849056,0.3298147779326827,0.3222344523940561,0.3290845886442642,0.0,2.3049886362563337,52.3252743465075,145.98849620181628,208.78251529358943,fqhc1_100Compliance_baseline_low_initial_treat_cost,28 -100000,95623,47497,453.5310542442717,5188,53.19849826924485,4123,42.5943549146126,1585,16.240862553988055,77.28554750318864,79.71821112563572,63.27381344368565,65.07233506813684,77.08367554719388,79.51696022880577,63.198898841486574,64.99966284138326,0.2018719559947612,201.25089682994712,0.0749146021990725,72.67222675358198,210.0021,147.75359159953683,219614.6324629012,154516.79156639808,502.88499,337.3452706929206,525401.796638884,352284.74393495347,458.19448,224.51168351564624,476005.8772471058,232281.8815388737,2694.31388,1248.7076038252212,2786178.408960188,1274401.6646886435,927.75454,421.7729377652191,957528.8476621732,428398.31763131655,1538.64166,650.9672681121689,1578688.3699528358,655934.1341299346,0.37967,100000,0,954555,9982.483293768237,0,0.0,0,0.0,43754,457.0343954906246,0,0.0,41529,431.06783932735846,1237888,0,44444,0,0,0,0,0,73,0.7634146596530124,0,0.0,0,0.0,0,0.0,0.05188,0.1366449811678562,0.3055127216653816,0.01585,0.350735294117647,0.649264705882353,23.707089511978754,4.176245273624703,0.3048750909531894,0.2694639825369876,0.2180451127819548,0.207615813727868,11.261336726347832,6.067817871804028,16.853872372629606,11594.472988982016,46.94281027080064,13.599659651772642,14.169290823918011,9.898910848618783,9.27494894649118,0.5794324520979869,0.7974797479747975,0.7191726332537789,0.5672969966629589,0.1039719626168224,0.7645569620253164,0.9188034188034188,0.8898809523809523,0.7277227722772277,0.1675977653631284,0.5047651463580667,0.7091757387247278,0.6568946796959826,0.5208034433285509,0.087149187592319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219700040535,0.0045238312590654,0.0070157982374202,0.0089851095187274,0.0110385382330199,0.012997993256527,0.0152910813926207,0.017591533180778,0.0197297767231592,0.0218756080825046,0.0239018485463983,0.02614029859948,0.0280694169960474,0.0300475194046158,0.0321528136293237,0.0342049192197099,0.0361550657506139,0.0382797976965656,0.0404055123027603,0.0424424487071168,0.0571368839178382,0.071332012952309,0.085094309882835,0.0976285542714467,0.1107437492737855,0.1263278296141748,0.1374620109238518,0.1482954182035264,0.1582027906180448,0.1679254810533214,0.1801594751777641,0.1912485363632421,0.2014624471470293,0.2106941324713745,0.2193347078734688,0.2288866443943749,0.238408745417151,0.2473630831643002,0.2552234227478782,0.2619074906023654,0.2675232968686693,0.2730794891903597,0.2784012134282904,0.282878947873668,0.2871895297637872,0.2904244427723847,0.2936117474743681,0.2968537122630098,0.3004769681416388,0.3031455008645837,0.3007267833109017,0.2991383693605793,0.2969075649186053,0.2945687177783875,0.2914713039349516,0.2886470101956462,0.285332236165398,0.2868582117716555,0.2870807686405565,0.2867544705000535,0.2888473403758063,0.2900443131462333,0.2900466400351368,0.2912885460099444,0.2920050791825391,0.2916958155201451,0.2934481784806552,0.2989989709046683,0.302863283416528,0.3055238844112443,0.3088182146729309,0.3136624690447336,0.3165697128917245,0.3217141994869473,0.3244651162790697,0.3337612323491656,0.3395798700317364,0.3488884438213498,0.3429113580916237,0.3414451516286035,0.0,2.0241546074134487,51.75489898560941,149.970552138024,219.18129460491932,fqhc1_100Compliance_baseline_low_initial_treat_cost,29 -100000,95822,47539,451.85865458871655,5252,53.66199828849325,4155,42.91290100394481,1646,16.91678320218739,77.35864855579545,79.66376440953209,63.35358995694328,65.05422242186035,77.15417787645397,79.45936755626533,63.27729491821436,64.98028071354291,0.2044706793414832,204.3968532667577,0.0762950387289151,73.94170831743452,211.65408,148.90357723342285,220882.5530671453,155396.0230776052,501.68976,336.55671476424294,523077.80050510325,350744.6773854052,460.09357,225.3275797125571,477057.00152365846,232826.2839261337,2720.08271,1258.1306279429589,2810410.396359917,1284714.7502065897,947.39006,419.34068192272775,978819.8117342571,427746.5946470824,1597.35484,667.0341160681647,1642195.383106176,674140.9432528997,0.38118,100000,0,962064,10040.116048506608,0,0.0,0,0.0,43555,454.08152616309405,0,0.0,41701,432.1971989730959,1235175,0,44357,0,0,0,0,0,94,0.9601135438625784,0,0.0,0,0.0,0,0.0,0.05252,0.137782674851776,0.3134044173648134,0.01646,0.3542388331814038,0.6457611668185962,23.658488694547184,4.154966144582697,0.3287605294825511,0.247653429602888,0.2149217809867629,0.2086642599277978,11.462983478934603,6.265723685316935,17.40563889574006,11588.450334393498,47.41719903882199,12.466987415924796,15.550613308213505,9.98190164185014,9.41769667283354,0.5677496991576414,0.7891156462585034,0.698389458272328,0.5666293393057111,0.1003460207612456,0.7363872082973206,0.9172749391727494,0.8644986449864499,0.7073170731707317,0.063953488372093,0.5026684456304202,0.7038834951456311,0.6369107321965898,0.5247093023255814,0.1093525179856115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022974313300811,0.0047402485591872,0.0071271429585246,0.0093457943925233,0.0115721455712921,0.013854839530034,0.0159414089557103,0.0181367498699417,0.0204830108493553,0.0226682215266269,0.0246025893149786,0.0265041951299567,0.0287874740583968,0.03082068433239,0.0329941126130306,0.0349724744110143,0.0370952888465796,0.0393642829003296,0.0412684892803722,0.0432569179836342,0.058058256478738,0.0722343617677501,0.0854261875812334,0.0982123151622158,0.1106087433076177,0.126784676354029,0.1379756363906235,0.1486792693694748,0.1585898380363644,0.1677406212139081,0.1797431010906898,0.1911314488473479,0.2021835343243331,0.2119425514925454,0.2202492349016931,0.2294947524741502,0.2378242042765948,0.2446936548822874,0.2522293571736516,0.2586915930673448,0.2654678839633885,0.2706355986752021,0.2757747212423948,0.2797641164555141,0.2851621371967524,0.2891230664941147,0.2925993547257584,0.2962313314267556,0.2990451051936961,0.3034558232137442,0.3012237762237762,0.2987910427256491,0.2966367303340782,0.2944016835308022,0.2923784104389086,0.2884215991692627,0.2858338994296908,0.2871707452998738,0.2880427362097215,0.2880230004107216,0.2886545808674807,0.2890959704645515,0.2895745616791302,0.290881519969672,0.2914218566392479,0.2930926707298015,0.2953833893095007,0.3001352243781251,0.3034054641742363,0.3068988772959892,0.3088929219600726,0.3126028124170867,0.3157795513102495,0.3217935031264298,0.323790812985312,0.3252147311448405,0.3268113726689086,0.3394420688250865,0.3394007280873705,0.3430255402750491,0.0,1.777095401561628,50.73522527594323,159.37794066684913,218.43736460997863,fqhc1_100Compliance_baseline_low_initial_treat_cost,30 -100000,95869,47192,448.57044508652433,5126,52.33182780669456,4075,42.01566721255046,1558,15.896692361451564,77.41454581429173,79.7046315954022,63.37712166936033,65.06866464357309,77.21941033728167,79.51144340495732,63.30325525754181,64.99776293962127,0.195135477010055,193.18819044488575,0.0738664118185141,70.90170395181872,211.54166,148.84017205469132,220656.54173924835,155253.28990832603,501.49619,336.67324834794715,522590.2742283741,350667.620392926,454.95092,222.7529398230264,471863.9184720817,230242.51697776516,2643.1509,1234.790438255179,2724039.616560098,1255199.211797127,958.48559,434.0868921270067,984876.2060728702,438090.6110495429,1513.6559,644.6599543772385,1544505.5231618143,641986.525023156,0.37784,100000,0,961553,10029.84280632947,0,0.0,0,0.0,43598,454.2239931573293,0,0.0,41292,428.0632947042318,1236782,0,44430,0,0,0,0,0,72,0.7510248359740896,0,0.0,2,0.0208618009992802,0,0.0,0.05126,0.1356658903239466,0.3039406944986344,0.01558,0.3433644859813084,0.6566355140186916,23.406715110312547,4.1199575299507725,0.3173006134969325,0.260122699386503,0.2166871165644171,0.2058895705521472,11.30482218938504,6.081829362236834,16.585608659628246,11437.602483273246,46.47854875072878,12.896165090128402,14.557653440648783,9.88043360508539,9.144296614866205,0.5830674846625767,0.8179245283018868,0.6821345707656613,0.5877689694224235,0.1287246722288438,0.7530864197530864,0.922566371681416,0.8610354223433242,0.7122641509433962,0.1684782608695652,0.5108391608391608,0.7401315789473685,0.6112311015118791,0.5484351713859911,0.1175572519083969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.004680613950661,0.0070880274192076,0.0092583192901955,0.0113731070230714,0.0134311500931022,0.015403422982885,0.0173915704435105,0.0197556590667647,0.0218885524916127,0.0240814528767656,0.0261875698796787,0.0284208254985974,0.0304674070795549,0.032703053797142,0.0345689468193883,0.0367492628420671,0.0387481216643349,0.0407241697895796,0.0429066247828664,0.0573355993702363,0.071324812674393,0.0844891887361716,0.0973350973350973,0.1090541479749794,0.1238724941380257,0.1342959447434213,0.1450392227725929,0.1545823108929905,0.1634056224899598,0.1750328119284807,0.1861282300789274,0.1967663772777156,0.2064138986013986,0.2151751272103834,0.2246356765848207,0.2329802653584569,0.2410333048676345,0.2493905273780771,0.2564419565690213,0.2626144667468319,0.2684714380895606,0.2730346776386573,0.2775808383233533,0.282655688331876,0.2872770276929142,0.2902677007755816,0.2937937874299083,0.2972696422557832,0.3011043527595625,0.2990891845712979,0.2963853765805387,0.2937354074657515,0.291607766206041,0.2906344052543403,0.2874988546470786,0.2860250993252191,0.28537095772161,0.2852961198093941,0.2852424080980287,0.2849534450651769,0.2857255117677105,0.28548846689823,0.2869912387712099,0.2878042959427208,0.2899666675279708,0.2908772623316486,0.2939714108141703,0.2980344407723082,0.3008110874872037,0.3053569019025772,0.3129226736566186,0.3166058958037204,0.3224605302353291,0.326660516605166,0.3251748251748251,0.3259002561398222,0.3352056168505516,0.3426648721399731,0.3552484124019425,0.0,1.8566082249221731,53.26046570629095,145.71359372076253,212.6256169030641,fqhc1_100Compliance_baseline_low_initial_treat_cost,31 -100000,95717,47596,452.11404452709553,5199,53.27162364052363,4140,42.75102646342865,1605,16.43386232330725,77.36002699221102,79.73349791279968,63.33690834044432,65.0891718006735,77.15584402296152,79.52815355033657,63.26158009546863,65.01488937385648,0.2041829692495014,205.3443624631086,0.0753282449756937,74.28242681702102,211.77156,148.99291866793433,221247.5944712016,155659.82915044803,502.31259,335.9638786027224,524295.9766812583,350504.6220554297,460.21029,225.6811924956707,477415.2031509554,233068.30623681087,2706.93209,1258.2577432076196,2799766.655870953,1286490.580941366,937.98323,426.0379700480976,968244.564706374,433600.4885243223,1560.18084,657.6151846571237,1600749.2086045323,664746.9084166175,0.38083,100000,0,962598,10056.70883960007,0,0.0,0,0.0,43656,455.5721554164882,0,0.0,41680,432.05491187563337,1236303,0,44385,0,0,0,0,0,78,0.8149022639656488,0,0.0,1,0.0104474649226365,0,0.0,0.05199,0.1365176062810177,0.3087132140796307,0.01605,0.3471166326719822,0.6528833673280178,23.64682869561072,4.130868737736345,0.3171497584541062,0.2710144927536232,0.2057971014492753,0.2060386473429951,11.446232462156887,6.186829932161211,17.067847546189988,11610.66685494276,47.34632697058473,13.671671357127677,14.912248732013468,9.46933574551013,9.293071135933458,0.578743961352657,0.7923351158645277,0.7052551408987052,0.57981220657277,0.1019929660023446,0.7578512396694215,0.9240246406570842,0.8587257617728532,0.7103825136612022,0.1508379888268156,0.504778156996587,0.6913385826771653,0.6470588235294118,0.5440956651718983,0.0890207715133531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903333299571,0.0046629970906952,0.0070121672772292,0.0094475710599565,0.0115749216811098,0.0139607347969532,0.0162487257900101,0.0185653922309089,0.0208535650396115,0.0227175003583201,0.0249441243412823,0.0271241427456777,0.0292048866768129,0.0314762743462184,0.0337075173851138,0.035926967453786,0.0382671031367836,0.0402702674651527,0.0422478080439327,0.0442823651992706,0.0585415774689069,0.072682176383787,0.0856462542219984,0.0987716641426888,0.1106917708574922,0.1263623006099301,0.1372840187104233,0.1474284619723106,0.1572562128218546,0.1667453234940792,0.1789703870474302,0.1900176363026519,0.2002651799202286,0.2097019248636418,0.2191630198139555,0.2288976500033223,0.2384601655400129,0.2465259039395574,0.254497432467665,0.2609317765567766,0.2669896177769556,0.2720941374434719,0.2769758231364899,0.2815391059780983,0.2860697423199699,0.2905163394670441,0.2939315897384608,0.2979142320004065,0.3008443346823724,0.3045982313481029,0.3016532816766886,0.2993288959788767,0.2968743397236347,0.2941711940816091,0.2924877121601354,0.290002905687501,0.2867089806744979,0.2866721177432543,0.2868235534516228,0.2866263560377023,0.2875221651889874,0.2881105664166322,0.2889064745205023,0.290284570920409,0.2933597858303853,0.295169946332737,0.2951061655501306,0.2990046783258501,0.3022301704186829,0.3059324394222735,0.3092486869148207,0.3120148856990962,0.3155848228284729,0.31898446381205,0.3202236719478099,0.3213992252611808,0.3175706300045324,0.3220271348762968,0.3186872796311364,0.3242937853107344,0.0,1.8976164591772688,52.99167226603393,150.86310599349005,218.77901003908468,fqhc1_100Compliance_baseline_low_initial_treat_cost,32 -100000,95761,47681,454.0574973110139,5176,52.99652259270476,4073,42.031724814903775,1581,16.18613005294431,77.33346816806463,79.69710341120893,63.32120940122799,65.07093026096894,77.13682893853587,79.50062172511737,63.248090590769245,64.99948498124081,0.1966392295287562,196.48168609155903,0.0731188104587445,71.44527972812398,213.6981,150.3364545849477,223157.52759474108,156991.0867523811,502.00637,336.7576623340044,523692.5157423168,351129.27462948515,455.68511,222.9468263212007,472911.6550579045,230434.58879464056,2687.76278,1246.595316363385,2773744.499326448,1268999.832964304,992.94349,452.31213646075,1022247.7104457972,458021.222230562,1553.73956,657.8000480403155,1592927.8098599638,662848.9854488976,0.38044,100000,0,971355,10143.52398157914,0,0.0,0,0.0,43681,455.59256899990606,0,0.0,41242,427.7315399797412,1225295,0,43922,0,0,0,0,0,87,0.898069151324652,0,0.0,1,0.0104426645502866,0,0.0,0.05176,0.1360529912732625,0.3054482225656877,0.01581,0.3567208271787297,0.6432791728212703,23.729972419296555,4.118126406661944,0.3145101890498404,0.2641787380309354,0.1964154186103609,0.2248956543088632,10.939905566481508,5.729723207834067,16.971228214733575,11526.102203184511,46.43662176478912,13.023819254780909,14.376857065658642,8.80729439613052,10.228651048219051,0.5683771176037319,0.7983271375464684,0.6846213895394223,0.57875,0.1266375545851528,0.7358326068003488,0.938095238095238,0.85,0.6931818181818182,0.1848341232227488,0.5027341079972659,0.7088414634146342,0.6248671625929861,0.5464743589743589,0.1092198581560283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021480318151882,0.004259116537541,0.0063739520532651,0.0089008108272876,0.0112385834299546,0.0133999938905802,0.0157097418749745,0.0179522769488273,0.0200114467928539,0.0221921958809319,0.0245432736667281,0.0266210833230668,0.0287324407149174,0.0307929969104016,0.0326847285558054,0.0345636647407208,0.0367168166333599,0.0387760184282067,0.0410229753612641,0.0430240793201133,0.0578067263731446,0.071477907779894,0.0850164199305431,0.0975381476690748,0.1102792306394466,0.1255630035313273,0.1359523026490277,0.145685003671658,0.1551589717300524,0.1644236646542202,0.1770091666038325,0.1886447480878041,0.1996215499053874,0.2085064963471718,0.217703086161765,0.227591780700589,0.236037323094781,0.2436856612476796,0.2515032561094597,0.2583897994689131,0.2646164518180242,0.2705262050340788,0.2752471500875076,0.2795570188566297,0.2844738724973017,0.2881528944423264,0.2925820916028627,0.2954271273826304,0.2997388628900897,0.3033767124190762,0.3004441453566622,0.2975943506395372,0.2954145984785635,0.2930011691179654,0.2910890795215055,0.2881882770870337,0.2847310126582278,0.2846528563696304,0.285667969216593,0.2868935760514914,0.2871350057950424,0.2883850124108585,0.2905875974811293,0.2914876088263454,0.2925993385419163,0.2943533697632058,0.2953676158096047,0.2997027069316226,0.3030886005106859,0.3080230356579362,0.3113997375209304,0.3159812047938334,0.3200175317763446,0.3237813660829353,0.3265936534681269,0.3307208170051063,0.3391198416324044,0.3382711038961039,0.3406440866185452,0.3425181783390739,0.0,1.7484429631608536,50.38205274231919,154.23451141071837,213.37925178336152,fqhc1_100Compliance_baseline_low_initial_treat_cost,33 -100000,95800,47231,450.33402922755744,5003,51.05427974947808,3919,40.35490605427975,1514,15.407098121085596,77.34149214859087,79.68161132562638,63.33904717832892,65.07305267815978,77.14257760787794,79.48535126393703,63.26485135646844,65.00183778825772,0.1989145407129342,196.260061689344,0.0741958218604779,71.21488990206615,213.02644,149.79207222737335,222365.8037578288,156359.15681354215,502.89239,337.6076123011117,524358.8830897703,351840.6613853416,453.27946,222.50933283887335,469853.3089770355,229599.76942973395,2541.73709,1190.2690435629197,2618032.3486430063,1208099.385732736,896.69077,405.325100010254,920335.5427974948,407958.4184615953,1473.98086,631.2776166560553,1501882.254697286,629191.6702760801,0.37728,100000,0,968302,10107.536534446765,0,0.0,0,0.0,43720,455.7724425887265,0,0.0,41081,425.53235908141966,1231619,0,44161,0,0,0,0,0,86,0.8977035490605428,0,0.0,0,0.0,0,0.0,0.05003,0.1326070822731128,0.3026184289426344,0.01514,0.3461243284727552,0.6538756715272448,23.670988209111098,4.119236605049802,0.3026282214850727,0.2658841541209492,0.2235264097984179,0.20796121459556,11.210689892809793,6.052377195216084,16.354460986865792,11450.538021436018,44.826316722906,12.60961483553964,13.452942409122436,9.843821917879978,8.919937560363946,0.5820362337330952,0.7936660268714012,0.7116357504215851,0.5810502283105022,0.1239263803680981,0.7550847457627119,0.9221698113207548,0.8888888888888888,0.7316017316017316,0.1475409836065573,0.5074844833880978,0.7055016181229773,0.6398104265402843,0.5271317829457365,0.1170886075949367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210622283902,0.0045720426183307,0.0070729108529098,0.0093382920782018,0.0115175255634125,0.0135681616770736,0.0156455577427152,0.0178294257005146,0.0197153141361256,0.021831288783305,0.0239623492740546,0.0263295714769821,0.0284712150667036,0.0304207186418328,0.0324095092657559,0.0345126980681571,0.0367175770126844,0.0383514180792132,0.0401400694112512,0.0418800749531542,0.056278953299111,0.0705846681443687,0.0832957843887206,0.0964304853573192,0.1089016049655928,0.1240632893999767,0.1356471224279944,0.1459547407375898,0.1555619590390505,0.1642355715127806,0.1759140664521198,0.1863338594253345,0.1962978251895626,0.2057804731464787,0.2143155534057429,0.2252390861595678,0.2332226357902244,0.242316068341528,0.2499348980446769,0.2561031361433665,0.2629112857620976,0.2684700033841737,0.2733415233415233,0.2775451609044144,0.28231927637801,0.2870304312529213,0.2906227362425999,0.2951300308418688,0.2981728968945703,0.3026130640049447,0.30053595175091,0.2979687071095251,0.2951797063951853,0.2925513501038541,0.2901698939090437,0.2883842474441065,0.2859423909950359,0.2851097332939671,0.2857337907258546,0.2849292583275348,0.2862573975578695,0.2861009047449725,0.287652589040809,0.2884950610110401,0.2902737024387897,0.2911356113326556,0.2929313156163286,0.2970828987705824,0.3010783000916203,0.3055091819699499,0.3073331502334523,0.3091344873501997,0.3116423196104471,0.3140293012196057,0.3177826045896685,0.3212884821110187,0.3264296754250386,0.3310118803768947,0.3400111296605453,0.3442748091603053,0.0,2.149470075807499,51.28023398076933,140.0507628409749,204.41795788198044,fqhc1_100Compliance_baseline_low_initial_treat_cost,34 -100000,95709,47657,453.29070411351074,5148,52.450657722889176,4051,41.81424944362599,1595,16.278510902840903,77.3419109081298,79.71097494976905,63.33255108723839,65.0810503461092,77.13373130395799,79.5059172746202,63.25223541539554,65.00468652056587,0.2081796041718178,205.05767514885065,0.0803156718428468,76.36382554332499,210.99232,148.52423011154775,220451.9115234722,155183.13858837492,500.67213,335.3426463234969,522628.007815357,349886.17196240363,451.98443,221.57900810047065,469773.3337512669,229572.3466844575,2653.76941,1251.5607969891507,2740494.8019517497,1275419.8215310478,962.27648,438.62785872337537,992306.6587259296,445180.8698485773,1552.02892,672.662654210452,1585764.3063870692,671792.7897598422,0.37909,100000,0,959056,10020.541432885098,0,0.0,0,0.0,43618,455.2027500026121,0,0.0,40847,424.21297892570186,1241138,0,44477,0,0,0,0,0,77,0.8045220407694156,0,0.0,0,0.0,0,0.0,0.05148,0.135798886807882,0.3098290598290598,0.01595,0.3527885862516213,0.6472114137483788,23.855734793530903,4.205782854952384,0.3090594914835843,0.2621574919772895,0.2179708713897803,0.2108121451493458,11.289551239942336,6.015203456901026,17.141781341612848,11535.07248604362,46.49863998001543,12.859736836604124,14.286672557025504,9.897786188452786,9.45444439793302,0.5699827203159714,0.7702448210922788,0.7036741214057508,0.5866364665911665,0.1077283372365339,0.7165217391304348,0.8792270531400966,0.851063829787234,0.7169811320754716,0.1435897435897435,0.5118924508790073,0.7006172839506173,0.6511375947995667,0.5454545454545454,0.0971168437025796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0046417350765176,0.0067660783120308,0.0091919232956853,0.0115609875137267,0.0137655779099128,0.0160351488832482,0.0182391606107618,0.0204824202780049,0.0226288802235254,0.0251768323936442,0.0272926100483627,0.0294208383036485,0.0314641006356696,0.0335166706223492,0.0354473561792526,0.0375115216918504,0.0394781904791556,0.0417797464932256,0.0436762682896327,0.0584456954264885,0.0728357584005024,0.0864373701550794,0.0985925863592376,0.1112095702259636,0.1262922870173433,0.1371729304161449,0.1466614138015481,0.1565832496313551,0.1658708784429017,0.1779293108834523,0.1893679436247713,0.1994429393652555,0.2086997418733867,0.2175983983455437,0.2265575694498267,0.235586736116533,0.2432739333295857,0.2504027043582821,0.2562291835963878,0.2615893656651665,0.2680420816121142,0.2748996910840464,0.2801078490113841,0.2845150160365439,0.2885167877091528,0.2935709723074611,0.2969902813819773,0.2997488933184913,0.3033380756665613,0.3009683927370544,0.2976944097331886,0.2953453748700806,0.2932497658670124,0.2911561198939149,0.2880414039480313,0.2843324444163918,0.284530612913262,0.2860406827055874,0.2868069174540916,0.2875362318840579,0.2891128952715365,0.2894450261780105,0.288676841940602,0.2888462000240125,0.2902848528953113,0.2927487639938625,0.2969871774775057,0.2997791875503838,0.3040390414219965,0.3087327523602033,0.3107120152574698,0.3136406396989652,0.3175835045271247,0.3197668953849046,0.3227030231179609,0.3275335775335775,0.324989824989825,0.3304685334072637,0.3324447829398324,0.0,1.972291746368756,50.10946866008511,157.4666365582663,209.85481884718865,fqhc1_100Compliance_baseline_low_initial_treat_cost,35 -100000,95702,47478,451.4952665566028,5168,52.65302710497168,4113,42.32931391193497,1555,15.851288374328645,77.33810060160408,79.72147532881507,63.31256206328344,65.07525466529644,77.14307139610861,79.53005252910901,63.23884469258947,65.00540148157948,0.1950292054954729,191.4227997060607,0.07371737069397,69.85318371695826,211.31176,148.6652663058027,220801.8223234624,155341.8594238393,501.5123,335.60023590276705,523400.33646109793,350037.12719122734,454.90791,222.75069469587623,471281.415226432,229678.45288023763,2676.0955,1242.1909409433,2757371.5387348225,1259070.6026729508,944.85454,427.9466722519061,967419.0717017408,427402.63159912935,1513.84002,638.2919742266347,1544836.9313076008,636124.6520142133,0.38153,100000,0,960508,10036.446469248292,0,0.0,0,0.0,43613,455.0375122776953,0,0.0,41312,427.5668220099893,1237527,0,44399,0,0,0,0,0,91,0.9508683204112768,0,0.0,0,0.0,0,0.0,0.05168,0.1354546169370691,0.3008900928792569,0.01555,0.3525060107268356,0.6474939892731644,23.750255060662564,4.2094317097329,0.3095064429856552,0.2701191344517384,0.2171164600048626,0.2032579625577437,11.822282294484296,6.358579736983673,16.460282520637303,11598.87744917689,46.84553316665154,13.579463786663563,14.454984096254693,9.753276923930445,9.057808359802843,0.5866763919280331,0.8010801080108011,0.7101335428122545,0.5677491601343785,0.1339712918660287,0.775103734439834,0.9361702127659576,0.8622589531680441,0.7352941176470589,0.1845238095238095,0.5085969738651994,0.7020280811232449,0.6494505494505495,0.5181422351233672,0.1212574850299401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024224118708317,0.0046053966321769,0.0069242796515523,0.0092485314145171,0.0116604430154353,0.0139133623279927,0.0162168777920567,0.0183950075071241,0.0204632612363859,0.0228638713971228,0.024836185768927,0.026831096552928,0.028923070595735,0.0311100126664401,0.0334337411541397,0.0354456018518518,0.0375018119318299,0.0396733999398259,0.0418039859856321,0.0436476519854993,0.058294606025795,0.0712558490092014,0.0838990609097109,0.0969930268513551,0.1088799831259228,0.1251652896933281,0.1363626716471761,0.1465128909619501,0.15625,0.1663823532567296,0.1786641669629677,0.189810654859209,0.2006770510182978,0.2091590523608907,0.2179348902731614,0.2272822990900728,0.2368306438103746,0.2453458793868041,0.2527906791882899,0.2606253725184539,0.2671884769469467,0.2731444089382074,0.2782316307925457,0.2830077890952666,0.2870783172779066,0.2914677620298758,0.2945228641925828,0.2990549456147948,0.3028011240756809,0.3055291758995462,0.3032084482410708,0.3002969970300297,0.2981298284620688,0.2945233148661126,0.2920881663650657,0.2891440979921398,0.2857458668224668,0.2857423377133413,0.2866364627333424,0.2889343533179149,0.2893984948365048,0.2894716119379478,0.2902404408081482,0.2911922639869878,0.2918510368580927,0.294226995765775,0.2950375430474792,0.2982888133902689,0.3017963239637261,0.3062593144560357,0.3112256329822989,0.3163830009397514,0.3170807069583488,0.3213246811367196,0.3246107067170368,0.3254727994396451,0.3258006584854834,0.3281899109792285,0.3302997858672377,0.3273542600896861,0.0,2.4715008413775097,52.07675373358827,147.4745450378447,217.73075653975823,fqhc1_100Compliance_baseline_low_initial_treat_cost,36 -100000,95655,47485,453.83931838377504,5080,52.00982698238461,4025,41.54513616643145,1523,15.587266739846322,77.27782633283482,79.68739150506698,63.2892740309558,65.07179465787756,77.08713976852944,79.49935849729725,63.2171157216575,65.00286017121785,0.1906865643053805,188.0330077697323,0.0721583092982953,68.93448665971391,211.09308,148.51986853295134,220681.6998588678,155266.18423809667,505.22214,338.8305386139004,527664.1471956511,353714.4306245364,451.5373,220.55851657316487,468419.4448800376,227861.035882336,2621.41319,1212.2509863276202,2709820.6471172445,1236649.1415269666,947.97704,424.85015491547233,978000.79452198,431111.57275152527,1492.4292,630.8880931544658,1530092.8963462445,633806.8644834731,0.3801,100000,0,959514,10030.986357221263,0,0.0,0,0.0,43954,458.9723485442476,0,0.0,40975,424.78699492969525,1235801,0,44310,0,0,0,0,0,71,0.7317965605561654,0,0.0,0,0.0,0,0.0,0.0508,0.1336490397263877,0.2998031496062992,0.01523,0.3477687817736772,0.6522312182263227,23.993706089866453,4.146369520527204,0.3162732919254658,0.2703105590062112,0.1980124223602484,0.2154037267080745,11.085011041346233,5.816989967686698,16.190029121804706,11538.038817236582,45.66270439546468,13.005925265273667,14.40959677351903,8.91081234180964,9.33637001486234,0.582111801242236,0.7922794117647058,0.6842105263157895,0.6198243412797992,0.1337946943483275,0.7605877268798618,0.9263657957244656,0.848314606741573,0.8041237113402062,0.1720430107526881,0.5101115760111576,0.7076461769115442,0.6205016357688113,0.560530679933665,0.1233480176211453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0045331007626156,0.006791464479321,0.0088315700681931,0.0110382013327229,0.0131824247919234,0.0152881183069862,0.0172408510116743,0.019342893966981,0.0216346892574343,0.023876923076923,0.0257922037902521,0.0276382943694435,0.0296621524127553,0.0316645846023601,0.0337591146506697,0.0359056195144192,0.0377750319291432,0.0398339212686916,0.0417161922635804,0.0564913893997659,0.0706924720371999,0.0842640020152825,0.0970881959864038,0.109088606793504,0.1243979633961744,0.1361637958498821,0.1464051312649164,0.1561243261743818,0.1653675191651098,0.1771716758084852,0.1886937502706916,0.1995472010275053,0.208314183791828,0.2173678532901833,0.2273855427026548,0.2363100487870228,0.2434235693872499,0.250788607738568,0.2578308289177033,0.2645725912737867,0.2704540674440887,0.2758800089863195,0.2808251176942704,0.2849058207740791,0.2894318363925494,0.2927946532497277,0.2973423406231314,0.3012656915961705,0.3044298453907445,0.3023265212647007,0.2998470589856291,0.2967392530745797,0.2942392781746146,0.2918475997858545,0.2900566876053317,0.2880273768595827,0.288364221871714,0.2889629249957287,0.2900099935755585,0.2910719964085969,0.2916502171338334,0.2914585466780915,0.2925938300478895,0.29415852022235,0.2960398350579631,0.2978759654702408,0.3020070986587932,0.3069746153575327,0.312594478478797,0.3167441436514447,0.3197606692788309,0.321161929857582,0.3206484511758886,0.3244815614150323,0.3309967922062493,0.3360392096798897,0.3355102040816327,0.3433250069386622,0.3466819221967963,0.0,2.1212735883580103,50.42139031885415,140.9506606638627,219.07800889068665,fqhc1_100Compliance_baseline_low_initial_treat_cost,37 -100000,95824,47642,454.1137919519118,5142,52.46076139589247,4066,41.91016864251127,1512,15.52846885957589,77.39792083527668,79.70333189350737,63.37134666233783,65.07243991859767,77.20546860652432,79.50988853217255,63.29974641915972,65.00218677929367,0.1924522287523586,193.4433613348148,0.0716002431781106,70.25313930400046,212.01312,149.14223122355594,221252.62982133916,155641.83422060855,505.54942,338.66756657444625,527060.3710970111,352905.8237753029,459.8996,225.24525923895985,476211.1579562532,232211.9204767704,2631.39909,1225.0775975474576,2717661.9009851394,1250265.428697209,966.10799,436.7674496089152,995411.671397562,443094.9633310891,1481.75944,624.3146214578117,1523891.613791952,632879.0121720474,0.38111,100000,0,963696,10056.937719151778,0,0.0,0,0.0,44042,459.070796460177,0,0.0,41649,430.8628318584071,1234420,0,44246,0,0,0,0,0,83,0.8661713140758056,0,0.0,2,0.0208715979295374,0,0.0,0.05142,0.1349216761564902,0.294049008168028,0.01512,0.3428199404761904,0.6571800595238095,23.610895845117263,4.173114479990218,0.3027545499262174,0.2737333989178553,0.2105263157894736,0.2129857353664535,10.929135430544944,5.506926048235657,16.09269420287224,11480.85527431251,46.38258487498413,13.582182868885251,13.992401690406496,9.325083191330425,9.482917124361965,0.5777176586325627,0.8041329739442947,0.6945572705117791,0.5841121495327103,0.1143187066974595,0.7584459459459459,0.9367088607594936,0.8419540229885057,0.7526881720430108,0.1193181818181818,0.5034698126301179,0.7057902973395931,0.636466591166478,0.5373134328358209,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024601117680408,0.0043976532338963,0.006481058877225,0.0086309312267091,0.0103793916720884,0.0124361401152022,0.0147643210857736,0.0170568732466207,0.0190653288922492,0.0216797454497089,0.0238819732595666,0.0260890083509448,0.0282737789467195,0.030409055827116,0.0325396825396825,0.0345059006948674,0.0362710917536545,0.0384734976472295,0.0405183692965878,0.0423271062080449,0.0570582160701805,0.0707106625529467,0.0838593327321911,0.0968566021867115,0.1095019762845849,0.1251638547084443,0.135854178374882,0.1457186951200042,0.1556210742212536,0.1647075226838842,0.1766606358232101,0.1879745603218898,0.1985346073987107,0.2075981196020553,0.2166010599696523,0.2260560573857598,0.2343575792712839,0.2426143261837312,0.2497648005622116,0.2564653939858396,0.2626762190894384,0.2683482221054475,0.2745728263181528,0.2795522762876242,0.2839856099422217,0.2885846656753468,0.2921750630037178,0.2963550121753247,0.3000749121719363,0.3034662318535662,0.3008808033140727,0.2983667653184259,0.2960323250462989,0.2935675543470442,0.2912456168903224,0.288823896784414,0.2860449370975106,0.285068021100423,0.2868725671839676,0.2865192505954708,0.286829941101916,0.2881799060368383,0.2896327483429905,0.28982438937422,0.2903295438192546,0.2906167194887515,0.2922397835682757,0.2969571100412222,0.3001576458223857,0.3009217136753827,0.3063928603952281,0.3095124155899399,0.312563004032258,0.3185072353389185,0.3189744556508624,0.3214327934744059,0.3284014643075045,0.3347389558232931,0.3329723876556578,0.3383571966842502,0.0,2.0768897438738625,51.43569111999165,149.51704970063938,212.9816362586394,fqhc1_100Compliance_baseline_low_initial_treat_cost,38 -100000,95549,47280,451.4856251766109,5063,51.64889219144104,3986,41.08886539890527,1501,15.35337889459858,77.19945181010942,79.67040021998176,63.224607941291474,65.05358751965099,77.00848519471751,79.48156176394986,63.15246312591506,64.98443394292582,0.1909666153919147,188.83845603190247,0.0721448153764114,69.15357672517075,210.67684,148.24414107159376,220490.88949125577,155149.8614026246,499.46738,334.7706830629149,522086.1442819914,349717.3105557513,452.80149,222.2591043452856,469181.1426597871,229033.9195257584,2568.77051,1205.8281343600709,2653896.775476457,1227463.8712703122,896.3158,405.18267785796513,926376.2258108404,412364.4390396187,1452.71652,621.2813257379512,1488259.2387152142,622862.3442451683,0.37971,100000,0,957622,10022.313158693443,0,0.0,0,0.0,43523,454.84515798176847,0,0.0,41063,425.1535861181174,1234533,0,44304,0,0,0,0,0,79,0.8163350741504358,0,0.0,1,0.0104658342839799,0,0.0,0.05063,0.1333386005109162,0.2964645467114359,0.01501,0.3684609552691433,0.6315390447308568,23.382031346053456,4.159254294149452,0.3278976417461114,0.2611640742599097,0.2180130456598093,0.1929252383341695,11.54164762962062,6.306011728422952,16.03033735012039,11544.330753598217,45.77174992720046,12.783503581356571,14.97638744994663,9.61538598981581,8.396472906081454,0.5910687405920723,0.7982708933717579,0.712318286151492,0.5857307249712314,0.1105331599479843,0.7582508250825083,0.9217391304347826,0.8571428571428571,0.7361111111111112,0.109090909090909,0.5180245133381399,0.7005163511187608,0.6549145299145299,0.5359877488514548,0.1109271523178807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0044439033298837,0.0065297749614103,0.0086627623230844,0.0109541067719998,0.0130685640889722,0.0154105220186763,0.0174637236868996,0.0194637740483012,0.0217669785507127,0.023794614902943,0.0261585760850565,0.0284649131840744,0.0305643522482283,0.0326967592592592,0.0344898973169923,0.0363287529167747,0.0386190268337802,0.0406016290648501,0.0425714047102054,0.0575726195332684,0.0717745994463551,0.084940664515383,0.0972931966409929,0.1096208926514262,0.1259713137780793,0.1367755935665049,0.1470647870489931,0.1569835334954628,0.1657203079967307,0.1779215309351275,0.1886632733902738,0.1991555933756627,0.2082844261126164,0.2178798079576182,0.2275741787844788,0.2355113413828989,0.2437736274897026,0.251408218305131,0.2582038294108864,0.2645697783654013,0.2702157598499062,0.2759847703092196,0.2813160422670509,0.2856986341392155,0.2903508663595608,0.2943250840821244,0.2973786209710322,0.3017984117921835,0.304477138438355,0.3018992634958318,0.2991129232210254,0.2961386696730552,0.2939255105432787,0.2921450240913687,0.2894974789658396,0.2859224069675376,0.2866390641430074,0.2881190659481653,0.2887025548424007,0.2890114839000225,0.2895236588067732,0.2902385752688172,0.2913486289871292,0.2920209050841743,0.2932578110725379,0.2951114408835364,0.298636849048307,0.3028176427243061,0.3052889362878698,0.3087227133321306,0.3122998582602761,0.3170974155069582,0.3198313507001957,0.322162562488428,0.3221531605488448,0.3241700465675229,0.332279106542795,0.3318977119784657,0.3369852663392519,0.0,2.4008267949940727,52.63112856730254,141.71983902345576,208.35200288404917,fqhc1_100Compliance_baseline_low_initial_treat_cost,39 -100000,95675,47773,454.48654298406063,5224,53.31591324797492,4145,42.686177162268095,1613,16.420172458845048,77.33990302576841,79.7301306398387,63.32261558699434,65.08850831379289,77.13223581663837,79.52716287146868,63.24476950344104,65.01529456128652,0.2076672091300366,202.96776837002997,0.0778460835533039,73.21375250636208,210.29404,147.97959168096122,219799.94773974392,154668.5741112739,501.68931,336.7865597850148,523683.6791220277,351326.9218552546,460.51242,226.0168191185823,477346.6422785472,233100.5148055995,2679.02609,1244.3390136512342,2761938.374706036,1262426.8021439598,943.06034,424.2207641000121,971220.4651162792,428972.0512487384,1554.96708,657.4004557063256,1585325.5082309905,653402.2485493053,0.38274,100000,0,955882,9990.906715442909,0,0.0,0,0.0,43682,455.8557616932323,0,0.0,41751,432.3909067154429,1240413,0,44510,0,0,0,0,0,75,0.7839038411288215,0,0.0,0,0.0,0,0.0,0.05224,0.1364895229137273,0.3087672281776416,0.01613,0.3428991905813098,0.6571008094186902,23.71090911616888,4.150211987405489,0.3153196622436671,0.2636911942098914,0.2270205066344994,0.1939686369119421,11.511922578032246,6.195119164414264,17.121584536751296,11633.96011239357,47.0908768831788,13.358553621966015,14.652873760999068,10.4674031213528,8.612046378860908,0.5785283474065138,0.8124428179322964,0.6801836266258607,0.5674814027630181,0.1082089552238805,0.7558528428093646,0.933774834437086,0.8488372093023255,0.7124463519313304,0.1385542168674698,0.5066124109867752,0.7265625,0.6199376947040498,0.519774011299435,0.1003134796238244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0047539404997212,0.0071130683605442,0.0094665420712631,0.0118971355358286,0.0141696695779637,0.0163697150079504,0.0186372172777006,0.0207822211318285,0.0227537922987164,0.0248603208775437,0.0269662690673181,0.0294510828208872,0.0313964627476025,0.0335958384509789,0.0358372537868996,0.0379192092912423,0.0399730122482873,0.0418608521970705,0.0440112582091108,0.0584044542406167,0.0727080476135638,0.0861213399217364,0.0994845360824742,0.1114287522680281,0.1261438530790144,0.1366659947591211,0.1480878330193398,0.1582629313567377,0.1684054769844418,0.1801410801787733,0.1916617974853383,0.202633782446525,0.2116345428505832,0.2196909667194928,0.2285916803260532,0.2374104732367969,0.2456436389816971,0.2530827084727689,0.2597487373881973,0.2660852870080151,0.2721767594108019,0.2784585541256624,0.282999437186411,0.287083778273954,0.291215758694983,0.2949147457372869,0.2983822800574399,0.3023659142679644,0.3054482149215937,0.3024107251019611,0.2994032559674403,0.2970941037337388,0.2953225666657036,0.2937839684001069,0.2904408955451975,0.2881374670309711,0.2870714648408707,0.2874917025513591,0.2877362684258255,0.2887421172431807,0.2904673780367759,0.2910247055144376,0.2909009812667261,0.2908737491300904,0.2933867110325465,0.2946111190103796,0.2972582519393235,0.3003295701563705,0.3034049612893032,0.308716323296355,0.3134288887713545,0.3168484392628808,0.3196149765044717,0.3219817130061578,0.3256416293854485,0.3284470911589555,0.3309630231613165,0.3325936199722607,0.329733898958735,0.0,2.379255655849652,51.77925531923093,145.69422324719602,225.5183150196347,fqhc1_100Compliance_baseline_low_initial_treat_cost,40 -100000,95793,47162,449.6153163592329,5062,51.57996930882214,4038,41.66275197561408,1571,16.024135375236185,77.331780499572,79.67140178330921,63.32970022966426,65.06233931092459,77.12509577129059,79.46786678414543,63.25127836420621,64.98720703111144,0.2066847282814166,203.5349991637787,0.0784218654580541,75.13227981314685,210.76374,148.4016752524639,220019.9805831324,154919.12274640516,502.48599,336.6844432684327,524035.7646174564,350952.60955229786,456.3071,223.15260710501656,473370.02703746624,230658.0902082023,2612.44542,1227.5343313841877,2698092.4911006023,1252359.4118403096,913.4179,419.4161339368113,942583.7796081132,426900.4997887418,1525.95604,657.8874133678926,1559140.793168603,658168.5219238565,0.37803,100000,0,958017,10000.9082083242,0,0.0,0,0.0,43705,455.722234401261,0,0.0,41239,427.5468979988099,1240156,0,44490,0,0,0,0,0,92,0.9604042049001492,0,0.0,0,0.0,0,0.0,0.05062,0.133904716556887,0.3103516396681153,0.01571,0.3636535552193646,0.6363464447806354,23.5715488744932,4.218426713777903,0.3244180287270926,0.2592867756315007,0.2092620108964834,0.2070331847449232,11.581390784794934,6.234813187389057,16.966691540915665,11437.728201212552,46.28502061929493,12.740758746066536,14.936939218104932,9.350810843457198,9.256511811666265,0.5755324418028727,0.7975167144221585,0.6862595419847328,0.5952662721893491,0.104066985645933,0.7487520798668885,0.9118329466357308,0.8522427440633246,0.7745098039215687,0.1382978723404255,0.5021156558533145,0.7175324675324676,0.6186895810955961,0.5382215288611545,0.0941358024691358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019346670043048,0.0040853979968371,0.0060580230752838,0.0081271079686293,0.0102822273073989,0.0122811841261112,0.0145898329968801,0.01720160071869,0.0191879127394655,0.0213441162921635,0.0235576331652109,0.0255149187834979,0.0276286836531145,0.0297898640296662,0.0318079550849381,0.033711698300459,0.0360301580397274,0.0381264520411549,0.0399555241499709,0.0420336935923866,0.0571631309284052,0.0707815572570185,0.0839046480910749,0.0965711463488961,0.1088046868414397,0.1235284171369391,0.1339247858899347,0.1442913050876297,0.1545809674251803,0.1636753281542995,0.17501211175109,0.1874100758337931,0.1983468377834575,0.2081050041017227,0.2164146250192608,0.2258157442800953,0.2343811022216271,0.2428100642229695,0.2510829383348831,0.2575922343433418,0.2635375722543353,0.2692608822670172,0.2748636917363485,0.2795394918117235,0.283868617570275,0.2879258492333481,0.2912457280204304,0.2944435952308162,0.2984240947616702,0.3016830572239456,0.2993068174170536,0.2965370344922358,0.2947649873346468,0.2923577000866801,0.2890972026205933,0.2869310783277418,0.284171009488207,0.2839246720409805,0.2840732320210601,0.2839946500222916,0.2850455039137111,0.2866047300629228,0.2876026478967655,0.2872302399356597,0.2881135707410972,0.2899653438257289,0.2906338048211287,0.2952201849239931,0.2999580917790039,0.3059748676203272,0.3087501134610148,0.306455890934168,0.3102881698685541,0.311386816867103,0.3138597149287321,0.3180853572270691,0.3200061040744697,0.3250650130026005,0.3331514324693042,0.3368298368298368,0.0,1.849811443531824,52.64841418117039,149.48325474932113,207.3084077638895,fqhc1_100Compliance_baseline_low_initial_treat_cost,41 -100000,95674,47490,452.6203566277149,5212,53.12833162614712,4121,42.35215419027113,1526,15.448293162196626,77.34192318165195,79.71806408721504,63.32298576779221,65.0752082120009,77.14229799991776,79.52424046970674,63.24703206273272,65.00431878964244,0.1996251817341914,193.82361750830057,0.07595370505949,70.88942235846218,212.17834,149.2094071529447,221772.2056149006,155956.06659379214,502.77759,337.12939745275503,524744.5073896775,351606.9296245183,460.71447,226.12523102134412,477017.7477684637,232755.4067595885,2665.10989,1244.8926490776091,2740649.6122248466,1256265.6210744383,944.9251,426.3894955022143,965646.8633066457,423722.8009711147,1479.56696,635.7116397405503,1499908.940778059,625827.2170268415,0.38037,100000,0,964447,10080.5548006773,0,0.0,0,0.0,43769,456.6862470472647,0,0.0,41695,431.2874971256558,1229777,0,44175,0,0,0,0,0,79,0.825720676463825,0,0.0,0,0.0,0,0.0,0.05212,0.1370244761679417,0.2927858787413661,0.01526,0.3595443689142017,0.6404556310857983,23.5277153058816,4.107593440510727,0.3295316670710992,0.2586750788643533,0.2152390196554234,0.196554234409124,11.542264296197905,6.380459987792924,16.432676358382494,11577.43525558166,47.08358419426904,12.96341552719396,15.406079892803104,9.993157529935203,8.720931244336777,0.589662703227372,0.8123827392120075,0.6973490427098674,0.5896279594137542,0.1160493827160493,0.7591537835638731,0.9101382488479264,0.8589743589743589,0.7336065573770492,0.1490683229813664,0.5176348547717843,0.745253164556962,0.6322314049586777,0.5349922239502333,0.1078582434514637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161771108613,0.0044191727227577,0.006827150349473,0.009253052186808,0.0115322424821779,0.0137545560057828,0.0159349958199946,0.0180123145415743,0.0203689312446316,0.0225669380023549,0.0247926257831004,0.0268119364975046,0.028726883755374,0.0308178951923671,0.0330319170898881,0.0349424003640048,0.0368770523219076,0.0390388208428482,0.04110942407288,0.042953607602851,0.0573887792088412,0.0722280975466739,0.0859416000167936,0.098753090966486,0.1106913726152287,0.125556931347959,0.1359572751210396,0.146869907007957,0.157441850521635,0.1668079990553987,0.1787435446831908,0.1901770726160177,0.2011886490546321,0.2104439556591488,0.2193615850302696,0.2292206784994128,0.2378485788921387,0.2456799990994135,0.2532672323819032,0.2589279578513343,0.2651353853274705,0.270924491658282,0.2759465505201737,0.2804171911526704,0.2848031295178161,0.2892103706624606,0.2926468931151482,0.2962571879293674,0.300711444011041,0.303443631658172,0.3011352911037402,0.2994362741719846,0.2974768345486087,0.2945211414048059,0.2920713533711947,0.2887965283295642,0.2863729669982631,0.2865878649769661,0.2872498336489737,0.2881298613459587,0.2888710400478183,0.2894171022783312,0.2898023979613151,0.291171155090475,0.2927150415359938,0.2934971360443719,0.2936764039855072,0.2979613499422434,0.3012035619869208,0.3047034764826176,0.3110791625482972,0.3165705296276874,0.3180626638372238,0.3194340470130259,0.3244941328651945,0.3252663270032422,0.3324408746095493,0.3348407392843098,0.3359312012899758,0.3376288659793814,0.0,2.6151037538212925,53.133372772068455,147.02085041679098,216.3709733576009,fqhc1_100Compliance_baseline_low_initial_treat_cost,42 -100000,95738,47441,452.3700098184629,5113,52.298982640122,4015,41.3524410369968,1523,15.490191982284989,77.32392886815877,79.6877145577961,63.31606620966248,65.06479707117093,77.13499929511403,79.50260001073744,63.24556690355446,64.99830010406961,0.1889295730447457,185.11454705866012,0.0704993061080188,66.49696710131536,211.00002,148.48427366535003,220393.17721281,155094.396859502,503.01611,337.3990322791184,524819.6954187469,351829.7878367193,454.91787,222.16051491721743,471428.60724059417,229218.3469673872,2628.22563,1210.5476693233948,2708922.0267814244,1228132.8305619447,918.3143,408.2223929445467,946444.2750005224,413654.9755601261,1485.32814,624.3355238761869,1513197.3719944016,620130.2555926251,0.37971,100000,0,959091,10017.871691491362,0,0.0,0,0.0,43715,455.9944849485053,0,0.0,41100,425.5572499947774,1236255,0,44397,0,0,0,0,0,101,1.0549625018279054,0,0.0,1,0.0104451732854248,0,0.0,0.05113,0.1346553949066392,0.2978681791511832,0.01523,0.3526551982049364,0.6473448017950636,24.059413101013032,4.21509750072304,0.310585305105853,0.2669987546699875,0.211706102117061,0.2107098381070983,11.382739213628048,6.092431825937451,16.183986286373155,11555.359748242558,45.72111109781487,13.05098200914877,13.96223843148142,9.457662380374826,9.250228276809864,0.5648816936488169,0.7994402985074627,0.6688051323175621,0.5694117647058824,0.1099290780141844,0.744661921708185,0.9101654846335696,0.8440366972477065,0.7745098039215687,0.1058823529411764,0.4949844344517468,0.7272727272727273,0.6065217391304348,0.5046439628482973,0.1109467455621301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025423642975072,0.004633525636476,0.0070838492297075,0.009236115344754,0.0115860357244578,0.0137983706720977,0.0160675325734559,0.0184449865771127,0.0205502561114007,0.0224326814784478,0.0242472087515506,0.0260272284851845,0.0281590229158313,0.0303548436936704,0.0322780369009782,0.0342243446622012,0.0364075155884241,0.0382978723404255,0.0403980534065385,0.042454107890734,0.0575873049016025,0.071672926234739,0.0846545866364665,0.096918013480405,0.1093395758860312,0.1244354181872031,0.1356710875331565,0.1466429590511275,0.1565500667556742,0.1654624587281849,0.1781770037243547,0.1898619205691857,0.1999239089080928,0.208467702263957,0.2175404644616467,0.2276511880245355,0.2371862099743389,0.2448952040230854,0.2526020680340056,0.2596396313786621,0.2662226340785358,0.271451826347656,0.2769043020817289,0.2815108914691488,0.2855388132851739,0.2900421691203669,0.2932129303758626,0.2971489692231291,0.3003588966196344,0.3033276112504952,0.3021570133247107,0.2997922027880606,0.2968353716958801,0.2943692912475431,0.2914730293536844,0.2876316553801,0.2847013864763288,0.2852818457007281,0.2856412876852325,0.2858184793823602,0.287204463602605,0.2883001772700413,0.2899935334487578,0.2912863440046306,0.2927611886688537,0.2947343835154283,0.295858826195332,0.2992444430510706,0.3038489877548156,0.308036067389069,0.3116612259702575,0.3161252900232018,0.3191901518465287,0.3224274406332454,0.3273475495697718,0.331289790143834,0.3347343140198138,0.3385457388584832,0.3389473684210526,0.3413173652694611,0.0,2.194929586943417,48.95222283702224,150.43148477075712,212.7529094723466,fqhc1_100Compliance_baseline_low_initial_treat_cost,43 -100000,95795,47681,454.7418967587035,5097,51.99645075421473,4058,41.79758860065765,1542,15.710632078918524,77.4066300966336,79.74372543324688,63.35719594835807,65.08697797158206,77.2138968091535,79.55436070641204,63.28474679878149,65.01805103740419,0.1927332874801095,189.36472683483885,0.0724491495765846,68.92693417786688,211.3463,148.71307733869173,220623.5189728065,155240.9596938167,499.74768,335.58473272240235,521121.1023539851,349752.08802380326,460.84679,225.14698354547477,477247.81042851927,232118.5734686084,2630.19528,1223.9787582891925,2712265.233049741,1244321.6851497386,948.89992,427.6408362556125,977437.5280547,433301.7341828875,1499.92342,635.0487615392628,1530783.798736886,634575.5926210962,0.38003,100000,0,960665,10028.341771491205,0,0.0,0,0.0,43331,451.7354767994154,0,0.0,41779,432.3190145623467,1239952,0,44504,0,0,0,0,0,87,0.89775040450963,0,0.0,0,0.0,0,0.0,0.05097,0.1341209904481225,0.3025309005297233,0.01542,0.3534256832646948,0.6465743167353051,23.71013842242237,4.175117327685524,0.3176441596845736,0.2654016757023164,0.2084770823065549,0.2084770823065549,11.52688428242143,6.367781777637851,16.3079746988571,11536.34851752141,46.34209614491157,13.26377187898053,14.474896926146782,9.393830760587276,9.209596579196988,0.5842779694430754,0.8068709377901578,0.7051978277734678,0.574468085106383,0.1264775413711583,0.7385398981324278,0.8912579957356077,0.8765060240963856,0.6868686868686869,0.1396648044692737,0.5211805555555555,0.7417763157894737,0.64576802507837,0.5401234567901234,0.1229385307346326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023810971284981,0.0045831558881385,0.0068093483930546,0.0086361927598223,0.0110352823913507,0.0133703997881916,0.0153137170938602,0.0176695758689327,0.0197984382027065,0.021971836751402,0.0241867710660626,0.0261861763257264,0.0285103496474747,0.0304917594012826,0.0322849986084052,0.0341893580331051,0.0360534646500175,0.0382111461270525,0.0400918403391027,0.0422266873496923,0.0565722752029381,0.0704739395967539,0.0839333815468142,0.0969586144565651,0.1097508296897223,0.1250383018289783,0.1363906140704156,0.1463883986476429,0.1568064698539375,0.1661311398153503,0.1784204241035406,0.189073767744586,0.1999065603337751,0.2095603087774465,0.2189185330008896,0.228217098858306,0.2365483478862088,0.2452872607097492,0.2523301961673659,0.259599208029573,0.2659945894702767,0.271489829062825,0.2760708626031836,0.2800957797066746,0.2848523841895697,0.2883765042062348,0.2924861131962167,0.2968575205939184,0.3001617599482368,0.3036156970304341,0.3008857896720693,0.2984098187165849,0.2957157931762223,0.2925432141517329,0.2918451119574399,0.2888166529316607,0.2861284426797756,0.2864626682986536,0.2864669806525938,0.287137296532201,0.2875774433012707,0.2877834617118441,0.2896485835341031,0.29051357104843,0.2916369005095966,0.2921588857363941,0.2921281812801217,0.296275587860715,0.3004926108374384,0.3049420426065163,0.3073814655172414,0.3138617482627096,0.3197573656845754,0.3219504920966299,0.3289328932893289,0.3306414397784956,0.3360519558979006,0.3405597162002365,0.3399241603466955,0.3506787330316742,0.0,2.1920126931457307,51.243692469149416,153.1530705836868,207.5827979982327,fqhc1_100Compliance_baseline_low_initial_treat_cost,44 -100000,95677,47774,455.2818336695339,5105,51.94560866247896,4051,41.64010159181412,1495,15.176061122317796,77.29491858535671,79.69773218624536,63.29396199958445,65.0742758297103,77.10388065905303,79.51310813455446,63.221369045068734,65.0072521863797,0.1910379263036787,184.62405169090343,0.07259295451572,67.02364333060018,212.1658,149.29097362595755,221751.68535802755,156036.06242481753,509.09535,341.6649844891312,531369.3991241364,356377.313368953,463.57058,227.4323015561898,480254.6589044389,234453.9969669289,2630.73981,1225.8378280386294,2705669.7534412662,1237511.0531572876,939.95617,422.28194620673537,965943.675073424,424961.06228400033,1459.82816,620.4927712534793,1484088.966000188,612223.501883681,0.38128,100000,0,964390,10079.622061728523,0,0.0,0,0.0,44242,461.657451634144,0,0.0,42097,435.7891656301932,1226082,0,43999,0,0,0,0,0,68,0.7002727928342234,0,0.0,1,0.010451832728869,0,0.0,0.05105,0.1338911036508602,0.2928501469147894,0.01495,0.3397327310370788,0.6602672689629211,23.537988930378575,4.218126678890697,0.3184398913848432,0.26734139718588,0.2073562083436188,0.2068625030856578,11.729613019995778,6.4312551716601805,15.941940185991712,11553.021095275575,46.152502087773335,13.222450467016657,14.508784552491838,9.280193000426014,9.141074067838836,0.5778820044433474,0.7903970452446907,0.6829457364341085,0.5904761904761905,0.1288782816229117,0.7561807331628303,0.9146067415730336,0.8739255014326648,0.7313432835820896,0.1573033707865168,0.5052119527449618,0.7037617554858934,0.61211477151966,0.5461658841940532,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025241517734953,0.0049620993028707,0.0072208398923475,0.0093233694270753,0.0115129737268035,0.0138411831255796,0.0162965835340217,0.0183384074702192,0.0204403159143921,0.0224546450998268,0.0245984038733766,0.0268534974266254,0.0291935500468208,0.0311037823353601,0.0329283524469172,0.0348407913378905,0.0369430051813471,0.0392146683832385,0.0410827793556172,0.0431111759678125,0.0584972474955865,0.0723895676937735,0.0863916378939414,0.0993013026916682,0.1112705480174724,0.1273385253534242,0.1384973037238333,0.1487254839327924,0.1585937917401293,0.1677307209459532,0.1789838834784107,0.1891777842698088,0.200110900906778,0.2093999344190621,0.2185479259226674,0.2279788730055032,0.2363579565105822,0.2446887518566863,0.251413648234359,0.2577716643741403,0.2638318070782731,0.2691047396138092,0.2743951517447091,0.2793366429239514,0.2830952033824173,0.2878004859577932,0.2920688575899843,0.2965049729097245,0.3002779753054496,0.3038444822000079,0.301308752788154,0.2992711750415197,0.2959187977112651,0.2924399071390463,0.290609569846236,0.2875386168292906,0.2840553112046324,0.2846461599003083,0.285195230540914,0.2856302056394799,0.2864314078069978,0.2873679012345679,0.2890910992573998,0.2896839567895723,0.290870590500024,0.2918707660239708,0.2921079603689784,0.2969044330026372,0.3012056613664162,0.3054666192339618,0.3086155944532848,0.3105688480430993,0.3160395049381173,0.3179173278923902,0.3221858944418496,0.3248317392844492,0.33071223347951,0.3295797305449427,0.3357585556453786,0.3381913303437967,0.0,2.603096873469963,50.52942265587482,148.02257243588832,213.3241063543583,fqhc1_100Compliance_baseline_low_initial_treat_cost,45 -100000,95730,47763,454.5388070615272,5066,51.81238901075943,3965,40.92760890003134,1551,15.93022041157422,77.3593554540744,79.73173531459429,63.33143217950936,65.08448553289435,77.16624564667494,79.53761598730819,63.25956235629974,65.01353500024437,0.1931098073994661,194.1193272861028,0.0718698232096244,70.95053264997375,211.36346,148.67841070181908,220791.24621330824,155310.15429000216,503.2105,338.145724188111,525134.2421393503,352713.31813737133,456.8678,223.51800409722435,473978.1259793168,230966.60245596315,2604.46064,1206.1827658149618,2691537.7415648177,1231257.4842485455,908.49059,408.646594557247,934886.7544134544,412876.4211402179,1510.24112,638.0120135739786,1552712.6919460983,646539.0293287773,0.381,100000,0,960743,10035.965736968556,0,0.0,0,0.0,43763,456.6175702496605,0,0.0,41394,429.1444688185522,1235488,0,44302,0,0,0,0,0,83,0.8670218322364984,0,0.0,0,0.0,0,0.0,0.05066,0.1329658792650918,0.3061587050927754,0.01551,0.3456464379947229,0.6543535620052771,23.67781392032349,4.162822383479443,0.3134930643127364,0.2564943253467843,0.2148802017654476,0.2151324085750315,11.43802216088364,6.30170897864189,16.519482040011987,11584.856733674496,45.18878306505976,12.340927629430414,14.115360436620078,9.450282944735214,9.282212054274044,0.5747793190416142,0.8053097345132744,0.6926790024135157,0.57981220657277,0.123094958968347,0.7567332754126846,0.9258373205741628,0.8731988472622478,0.7298578199052133,0.1542857142857142,0.5003553660270078,0.7212020033388982,0.6227678571428571,0.5304212168486739,0.1150442477876106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763278369728,0.0047543260312021,0.0069307031162795,0.0090898011415571,0.0116734287137874,0.0139371048693332,0.0162495540037718,0.0182614376416307,0.0201590644231359,0.0221644365728559,0.0244167563964518,0.0265614889224416,0.0285711346145931,0.0305893261899855,0.0327523759403151,0.034856315898284,0.0371152591856384,0.0390914276824145,0.04138382693847,0.043579247778854,0.0581374708947198,0.0717911150646224,0.0848655849127849,0.0974766060351172,0.1098563927373948,0.1258713150908071,0.1371304882965855,0.1481631306088122,0.1588451510877463,0.1685390847148452,0.1802715224652515,0.1910870082916585,0.2019711935947086,0.2111436950146627,0.2199814965746635,0.2284355144539436,0.2371497805719646,0.2451805196265886,0.2529099448642026,0.2601759168060105,0.2656658416414147,0.2709667617222196,0.2765266093203516,0.2810129913630165,0.2858130312988856,0.2899609956566141,0.294077935716161,0.2982496252826258,0.3005572579289657,0.3030291057553009,0.3008702191663086,0.2984115652329109,0.2964667583419864,0.2942453698378005,0.2912352836774537,0.2880498544894943,0.2848377098443965,0.284471928078448,0.2855395487904322,0.2862947585081088,0.2873794736940264,0.2876898261074829,0.2903596581053687,0.2912124731951394,0.2925385297571966,0.2941176470588235,0.2949917758493562,0.2994925447938855,0.3045499021526419,0.3083290630296819,0.3107991849671723,0.3126188966391883,0.3144891914035419,0.3181577953944884,0.3182789703559149,0.3241629594942636,0.3272754808420415,0.3338645418326693,0.3413513513513513,0.3405933158092377,0.0,1.911032544646768,50.44383141673322,143.77574083735658,209.2247319684108,fqhc1_100Compliance_baseline_low_initial_treat_cost,46 -100000,95879,47590,452.132375181218,5195,52.900009386831314,4081,41.8861273062923,1529,15.582139988944398,77.4394230829848,79.71911208793675,63.39129033748679,65.0769303551167,77.24129833428788,79.52492816965517,63.3165209322832,65.00625927732311,0.1981247486969266,194.1839182815812,0.0747694052035825,70.67107779359105,212.2186,149.26658524029455,221340.0223197989,155682.25079558045,500.84568,335.7910799995414,521724.986701989,349576.13241642225,456.45051,224.19205400897997,471429.7499973925,230374.363677028,2676.77104,1242.609928907175,2754182.6781672733,1258379.5188802297,950.58811,431.3609397544932,979809.5933416076,438265.38632494427,1497.62648,635.9726913285403,1529197.071308629,635420.5700375787,0.38113,100000,0,964630,10060.910105445404,0,0.0,0,0.0,43569,453.7177066928107,0,0.0,41347,426.568904556785,1237218,0,44421,0,0,0,0,0,80,0.8343850061014403,0,0.0,1,0.010429812576268,0,0.0,0.05195,0.1363051977015716,0.2943214629451395,0.01529,0.3427152317880794,0.6572847682119205,23.996413931978807,4.201491690765153,0.3244302866944376,0.2563097280078412,0.2033815241362411,0.21587846116148,11.290910141261763,5.944110111099876,16.235445238561365,11531.368540720794,46.27454046557428,12.75599100144821,14.813196787846698,9.170378319541562,9.534974356737813,0.5574614065180102,0.8126195028680688,0.6616314199395771,0.536144578313253,0.1180476730987514,0.743993371996686,0.9492273730684326,0.8296089385474861,0.7373737373737373,0.1262626262626262,0.4791231732776618,0.7082630691399663,0.5993788819875776,0.4731012658227848,0.1156661786237188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0046414528355425,0.0069690299150934,0.0094528322959924,0.0117495197536259,0.0138275574367635,0.0160020371785077,0.0183904528763769,0.0206366719790772,0.0229239550727306,0.0251644500911903,0.0271080010670825,0.0290916938127485,0.03107853532494,0.0329810814990463,0.0352016686974659,0.0374110246647906,0.0392817175778173,0.0413625556743737,0.0433923202563382,0.0573954196245217,0.0718487790096237,0.0853971412115817,0.0983799334334281,0.11044791831149,0.1256677717012606,0.136010252933949,0.1460250334700469,0.1554385366477636,0.1649544111981507,0.1769347365705255,0.1883934263271061,0.1989810328720099,0.2090326951656613,0.2174902685227947,0.2255547562392784,0.2343074316793723,0.2423054457225018,0.2502350449134015,0.2578133930816891,0.2642008383662251,0.2694669499638095,0.2746629485649466,0.2789712411886497,0.284483699938124,0.2900621500215371,0.2935052924930329,0.2967764051648617,0.2997907355258739,0.3033313159487409,0.3014666380143977,0.2993580775244835,0.2970822281167108,0.2944302812945599,0.2919738283447316,0.2887400241099904,0.2855317537937344,0.2860993579795141,0.286328709370325,0.2864800582189957,0.2866538726686665,0.2889626980071538,0.2902608080261432,0.2900722741985545,0.2913443918227468,0.2928462473176659,0.292529658748274,0.2965262471672927,0.2996092804536496,0.3038866491839211,0.3067798894729748,0.3088312506563058,0.3134839151266256,0.3166326607723116,0.3191449465591599,0.3219898381188704,0.3236648250460405,0.3302231237322515,0.3322314049586777,0.338097028958255,0.0,2.654750823451524,51.913342540168,143.36411724320078,215.21210325948013,fqhc1_100Compliance_baseline_low_initial_treat_cost,47 -100000,95724,47761,454.0971961054699,5214,53.16326104216288,4173,42.883707325226695,1578,16.00434582758765,77.34647984393533,79.69958943309416,63.33814763576003,65.07581513230978,77.13567317308754,79.49349309837967,63.25805863786848,65.00017226125296,0.2108066708477878,206.0963347144877,0.0800889978915506,75.64287105682865,210.48126,148.1239816554671,219883.4774978062,154740.6937188867,502.58736,337.5784565118816,524334.7227445573,351954.8561613405,461.97608,226.65192460206484,477937.2362208015,233119.34248042965,2684.74872,1260.8841621981542,2762303.288621453,1274834.5683403898,948.08738,432.2417845151578,971039.1333416906,432150.6670376895,1528.19874,660.701357986006,1552764.406000585,653044.8944708599,0.38147,100000,0,956733,9994.703522627551,0,0.0,0,0.0,43649,455.2567799089048,0,0.0,41903,433.1097739333918,1239350,0,44509,0,0,0,0,0,77,0.8043959717521206,0,0.0,0,0.0,0,0.0,0.05214,0.1366817836264975,0.3026467203682393,0.01578,0.3577745025792189,0.6422254974207812,23.26745041850896,4.095146040587833,0.3251857177090822,0.2657560508027797,0.2118380062305296,0.1972202252576084,11.1341258176321,5.947683472654794,17.004639800602686,11588.491429452166,48.00437180060407,13.665633270258756,15.475503166556198,9.850930465236376,9.012304898552744,0.5842319674095375,0.8115419296663661,0.7103905674281503,0.5463800904977375,0.1105710814094775,0.7442231075697211,0.9242424242424242,0.8469656992084432,0.7248908296943232,0.1081081081081081,0.5154215215901302,0.7310664605873262,0.6574642126789366,0.4839694656488549,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812639254608,0.0050988859491733,0.007479120366142,0.0097113020865077,0.0118982244188174,0.0141513275777813,0.0165035677879714,0.018810153196093,0.0209545031738406,0.0233534344189284,0.0255845180864912,0.0276312278036663,0.0299693623671169,0.0319185094395979,0.0338409475465313,0.0357515684592407,0.0375834756949836,0.0397460238413894,0.0418403517708084,0.0438727149627623,0.0583930174771877,0.0721986142220175,0.085401038661281,0.0979967401020032,0.1098130594772413,0.1256568305086537,0.1367816945484634,0.1471204912885681,0.1571985266641755,0.1670275020899873,0.1785306720065456,0.1905518964342493,0.2019019671774807,0.2110721349812586,0.2191810937070623,0.2281362086525262,0.2365530239664536,0.2450678244437945,0.252518834528456,0.2598009460217837,0.2656741625023135,0.2711604793919906,0.2773799519452697,0.2821536469572723,0.2870815721712093,0.2901768124507486,0.2929984112886075,0.2963321200397077,0.2992691270993158,0.3033163467377815,0.3004377399151458,0.297617409965059,0.2959990990230031,0.2938186019641826,0.2916109873793615,0.2885613261698121,0.2853937555302743,0.2858453172601303,0.2857800825628603,0.2851899365690257,0.2856234810244905,0.2872912929488064,0.2876038592746071,0.289358568048922,0.2895437855480093,0.2912537811619902,0.2944746815604251,0.2971955580651232,0.3018656585809793,0.3066387748658036,0.3077027886274866,0.3109203624225083,0.3193776166968693,0.3241211753093918,0.328419866679185,0.3327414772727273,0.3331811263318112,0.3267286696320259,0.3258270781206561,0.3265783320342946,0.0,2.8171679014641544,54.199681932391776,152.2620833228999,216.423103153458,fqhc1_100Compliance_baseline_low_initial_treat_cost,48 -100000,95751,47544,452.9978799177032,5141,52.55297594803187,4086,42.2032145878372,1595,16.334033064928825,77.41222784566315,79.76889109724969,63.350809200748486,65.08988074297253,77.20763307397213,79.56476823128446,63.27429132865055,65.01572703709235,0.2045947716910205,204.12286596523188,0.0765178720979378,74.15370588017822,210.0978,147.8179887041843,219420.99821411783,154377.48817681725,502.29973,336.4909313273111,524121.1162285512,350954.46661372844,457.4222,223.6486934378552,474701.0892836629,231254.8507787317,2642.92814,1236.2530755892196,2730912.930413259,1261849.8618638122,968.4679,441.4639932098429,997975.5407254233,447610.0872148536,1550.2867,660.4085432508289,1589069.9836033045,663942.5440845538,0.38195,100000,0,954990,9973.681737005358,0,0.0,0,0.0,43764,456.56964418126176,0,0.0,41421,429.5620933462836,1243454,0,44563,0,0,0,0,0,81,0.8459441676849327,0,0.0,2,0.0208875103132082,0,0.0,0.05141,0.134598769472444,0.3102509239447578,0.01595,0.3492831874883634,0.6507168125116366,23.569683919827444,4.149506827770172,0.3135095447870778,0.272148800783162,0.2075379344101811,0.206803720019579,11.673517900815868,6.323649030927004,16.973718870767023,11624.88631243886,46.70817859783978,13.451813446956864,14.481107425517724,9.516238419856712,9.25901930550849,0.5797846304454234,0.8039568345323741,0.7017954722872756,0.5601415094339622,0.1195266272189349,0.7607413647851727,0.948955916473318,0.8835227272727273,0.7066666666666667,0.1340782122905028,0.5056916177992411,0.7121879588839941,0.6329386437029063,0.507223113964687,0.1156156156156156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0042568286626463,0.0063405429533741,0.0086826712161832,0.010949684319686,0.0133048302539827,0.015706219295921,0.0181014866891829,0.0198873797917241,0.0219344933469805,0.0242067721570878,0.0262379896526238,0.0283123612139156,0.0306166584280771,0.0326994314488252,0.0347098041242441,0.0368418327724566,0.0388230655904384,0.0407435516234002,0.0428342257130356,0.0571998287867873,0.0711505461850751,0.0853114871031017,0.0981213051984936,0.1105308137878644,0.1261573951598396,0.1377418362040604,0.1478661782869798,0.1586253326066745,0.1674661687217625,0.1798727899956878,0.1902658220995073,0.2013910809722328,0.2098855985549291,0.2185307174566805,0.228173106783195,0.2370165066663686,0.2456413028787674,0.2537328685462535,0.2608610926431142,0.2670278906602757,0.272741099528506,0.2785355178328503,0.283432321103554,0.2877463831439946,0.2916758992540069,0.2959117375115576,0.2989516702203269,0.3019888233548004,0.3064973978867686,0.3036683598933133,0.3006846501437765,0.2974681769752705,0.2953388733933347,0.2936360417773057,0.2916521025516329,0.2901528360272057,0.2904801445806672,0.2902033898305085,0.2909000761425814,0.2915111333964752,0.2922230489094255,0.2928904234961311,0.2935566152822446,0.2955494571053573,0.2958875074314369,0.2964929124075224,0.300550527199776,0.303865674754919,0.3058136344035438,0.3101433643431756,0.312191795194628,0.3176002980996149,0.3236747529200359,0.3264010306432318,0.3292952824694234,0.3275578790141897,0.3342546890424481,0.3376344086021505,0.3418482344102179,0.0,1.8622220464854549,52.144998963263625,152.61943848635332,211.1260002994323,fqhc1_100Compliance_baseline_low_initial_treat_cost,49 -100000,95746,47677,452.8230944373656,5223,53.49570739247593,4160,43.04096254673825,1584,16.31399745159067,77.32373385663094,79.6930822689132,63.321321634088775,65.07481360534919,77.12384626586817,79.4917276342998,63.24646599097215,65.00108828228406,0.1998875907627706,201.35463461339495,0.0748556431166278,73.72532306513335,211.76804,148.9589141602305,221176.9055626345,155577.16683749764,503.23233,336.92568256868014,525203.9145238444,351508.25368023745,459.2354,224.3520691868916,476317.9349528962,231913.21676567444,2724.02961,1266.6062336330897,2819087.659014476,1296910.8825779555,992.83405,443.3914567138383,1026098.447976939,452244.0903158752,1546.9724,656.1392904001212,1593313.141018946,665546.7216013373,0.38108,100000,0,962582,10053.495707392476,0,0.0,0,0.0,43770,456.7397071418128,0,0.0,41674,432.0389363524325,1235771,0,44382,0,0,0,0,0,77,0.8042111419798217,0,0.0,0,0.0,0,0.0,0.05223,0.1370578356250656,0.3032739804709937,0.01584,0.3459923315683768,0.6540076684316232,23.621665805598514,4.1927951395072185,0.3163461538461538,0.2665865384615384,0.1995192307692307,0.2175480769230769,11.148650607065424,5.885185506882642,16.86590554898461,11610.673509462778,47.6554611108418,13.505738385435912,15.064343845927542,9.20918284649191,9.876196032986432,0.5807692307692308,0.806131650135257,0.7006079027355623,0.5903614457831325,0.1215469613259668,0.7558333333333334,0.9117647058823528,0.8689839572192514,0.7562189054726368,0.1475409836065573,0.5097972972972973,0.7361319340329835,0.6337579617834395,0.5373608903020668,0.1149584487534626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0045635705375886,0.0067701989443767,0.0089628681177976,0.0114561289272342,0.0137925414336501,0.016083302737323,0.0183836671330671,0.0205945210802409,0.0231348251318551,0.0252997097763329,0.0276881996508164,0.0295969384605888,0.0318003359335552,0.0339894511937078,0.0360786908293963,0.0384025850283773,0.0404822177034485,0.0423892701185277,0.0443543765693864,0.0589482036772152,0.0726755138778415,0.0857460557233971,0.0984337691571385,0.1106471375997806,0.1254863813229572,0.1370421055981668,0.1467136275125294,0.1573894098297626,0.1663807338465827,0.1777354264918061,0.1898347992600045,0.2002675163391585,0.2092705383210681,0.2181676164492068,0.2280725066161733,0.2373678811934174,0.2449811829466943,0.2522333575185924,0.2585313397320765,0.2648305819017802,0.2715432149240132,0.2772059605544592,0.281984365460357,0.2869087202388176,0.2903388661774122,0.2936636982189313,0.2973619272940039,0.301589973327809,0.3053409959665726,0.3018063457477572,0.2996932641916892,0.2967067006462695,0.2954624277456647,0.293333135312551,0.2891850129278032,0.2860526066500363,0.2869511137297262,0.2879311224923857,0.2881744916294543,0.2894176136363636,0.2906407828282828,0.291801080899912,0.2926131282418172,0.29289819869652,0.2955623924492882,0.2967653602601403,0.3007341126059422,0.3061124006471126,0.3106084740363173,0.313607305936073,0.3186057666684432,0.321466893896358,0.3253683487289106,0.3296220059880239,0.3293044199549709,0.3341408024224073,0.3428686543110394,0.3483483483483483,0.3400840657241116,0.0,1.6039638682249642,52.87321742752224,156.2909266531316,217.482539020909,fqhc1_100Compliance_baseline_low_initial_treat_cost,50 -100000,95782,47845,455.2629930467103,5062,51.59633334029358,3967,40.84274707147481,1586,16.182581278319518,77.38153749659537,79.72311682390227,63.350937847410606,65.08288510321694,77.18252427506576,79.5268215311127,63.276030904508566,65.01116808509137,0.1990132215296114,196.29529278957136,0.0749069429020394,71.71701812556819,211.22992,148.7521758481934,220531.9579879309,155302.8500638882,505.79538,339.0970326227563,527530.9452715542,353491.6191171163,461.14823,225.9017078656014,477994.38307824015,233144.38412425693,2590.69985,1206.2512860857423,2671189.304879831,1225773.0848027212,929.05348,418.48292071196494,957649.7462988872,424594.9350733589,1537.78386,653.0226566412147,1571892.9443945626,653273.4124458416,0.38089,100000,0,960136,10024.179908542315,0,0.0,0,0.0,43947,458.23849992691737,0,0.0,41685,431.6990666304734,1234816,0,44294,0,0,0,0,0,90,0.9396337516443592,0,0.0,1,0.0104403750182706,0,0.0,0.05062,0.1328992622541941,0.3133148952983011,0.01586,0.3419062027231467,0.6580937972768532,23.9146381746755,4.191572536593594,0.3193849256365011,0.2535921351146962,0.2210738593395513,0.2059490799092513,11.513649686420552,6.362995068542065,16.996641570968976,11579.032503965562,45.22919538154347,12.15077661533219,14.25375548408174,9.940228850030769,8.884434432098782,0.5744895386942274,0.7952286282306164,0.6874506708760852,0.5952109464082098,0.1052631578947368,0.7476394849785408,0.9178743961352656,0.8495575221238938,0.756198347107438,0.1176470588235294,0.502498215560314,0.7094594594594594,0.6282327586206896,0.5338582677165354,0.1020092735703245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091413640138,0.0045613963954832,0.0070208189602694,0.009049084427653,0.0111840901234316,0.0133961745574478,0.0159518082113589,0.0182488084181304,0.0205195282961025,0.0226126282831796,0.0249731003740328,0.0271399390275197,0.0293648916809755,0.0315167365093747,0.0335946364105208,0.0354807046546469,0.0375218601570826,0.0395040996776233,0.0414788191053954,0.0432790913160716,0.0585724720859856,0.073029418839352,0.0866206115752728,0.0997478196910791,0.1121460860036036,0.1279192645038571,0.1388909493583698,0.149574239637705,0.1597823187323267,0.1685440222924816,0.1797223119147562,0.1903314767749959,0.2004369137801736,0.209264460010272,0.2184557853057633,0.2278111093891828,0.2372223708857372,0.2452705057158594,0.2519902020820576,0.2589236683141131,0.2646970397779833,0.2701527600836849,0.2762940007570023,0.2805229947676577,0.2850694107368217,0.289595766935335,0.2937055076807793,0.2970950033040207,0.3010512160746841,0.3037734606519591,0.3006437566358004,0.2981750271205525,0.29513293008862,0.2922739473000664,0.2900520918359775,0.2869062901155327,0.2840935986241065,0.2834120589052514,0.2829149742526469,0.2844023660230563,0.2850082065055207,0.2861416733914618,0.2883367753509815,0.2887724383989296,0.2895989285628871,0.2907223979671213,0.2924261292878976,0.2979200398555237,0.3029829496128068,0.3062138898714774,0.3093434343434343,0.3132498421384971,0.3172776179156762,0.3215555723689188,0.3263305322128851,0.3323550129138295,0.3380175279540646,0.3447378951580632,0.3479097909790979,0.3454821564160972,0.0,2.2719792055362946,50.54691882988693,144.7230333926772,206.27919299115771,fqhc1_100Compliance_baseline_low_initial_treat_cost,51 -100000,95860,47322,449.44711036928857,5220,53.265178385145006,4173,42.97934487794701,1603,16.31546004590027,77.37299817448195,79.6744510314208,63.35320242165369,65.05708394022948,77.17557146460327,79.48163457306646,63.27849092107125,64.98698736332173,0.1974267098786839,192.81645835434347,0.0747115005824383,70.09657690774418,210.6335,148.1503976495634,219730.3359065304,154548.7144268343,503.25063,337.554624319793,524406.6033799291,351554.52151032025,458.16767,224.34186234734423,474809.84769455454,231581.09766226128,2719.3908,1265.620004135009,2799368.620905488,1282812.3973868228,949.05267,427.0570557553728,972389.5785520552,427850.0268676954,1560.83902,660.0748287774019,1589570.9159190485,653591.3989492069,0.37946,100000,0,957425,9987.742541205926,0,0.0,0,0.0,43788,456.1861047360735,0,0.0,41635,431.2121844356353,1239927,0,44564,0,0,0,0,0,77,0.8032547465053202,0,0.0,1,0.0104318798247444,0,0.0,0.0522,0.1375639066041216,0.307088122605364,0.01603,0.3457738748627881,0.6542261251372119,23.720914309829595,4.250377132454218,0.3242271746944644,0.2578480709321831,0.2115983704768751,0.2063263838964773,11.420375202201017,6.018637141052137,16.97005463034333,11574.029229529642,47.32915331516458,13.029484256032982,15.35338963963368,9.715516910544167,9.230762508953744,0.578001437814522,0.8169144981412639,0.6903178122690318,0.5571913929784824,0.1242740998838559,0.7631578947368421,0.9424778761061948,0.8530927835051546,0.7487437185929648,0.1242937853107344,0.5018599932363882,0.7259615384615384,0.6248704663212435,0.5014619883040936,0.1242690058479532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496050232934,0.004733092117932,0.0070296095675725,0.0094226590581402,0.0116097025394953,0.0138640065146579,0.0157675333543974,0.0180122258620865,0.0200063349988249,0.0219780219780219,0.0241790891860048,0.0263576389957626,0.0285185756127639,0.030745952177538,0.0330299062915579,0.0350080033045902,0.0368419963582188,0.039045418277152,0.0410405524689755,0.0432516231063759,0.0584346520406248,0.0719764258396204,0.084981562185719,0.0975028353005418,0.1094612241459202,0.1253736703672796,0.1366656423189818,0.1472586355372691,0.1569144394159337,0.1659308157229199,0.1779652808420418,0.1898667127893024,0.2001630434782608,0.2100590422042423,0.2186519944979367,0.2276397549926342,0.2362325955016065,0.2448697178344809,0.2527280564441117,0.2594428733355469,0.2651812968273055,0.270691288432526,0.2757588308384119,0.280495400536604,0.284712022819688,0.289176209826376,0.2929606366207052,0.2964083656474477,0.3006714361488803,0.3036797678712741,0.3011438568160409,0.2989451099588772,0.2966505155220012,0.2945067960884575,0.2935005193648909,0.2903319476708644,0.2873141990617151,0.2876550888794317,0.2888389589610036,0.289853009218066,0.290480808683651,0.2914330677682699,0.2932224237496612,0.293898048975601,0.2941808287187321,0.2955710955710955,0.2962017416957422,0.299446338640558,0.302517194427958,0.3070113314447592,0.3095891643792467,0.314225611359453,0.3195921431252346,0.3183299234674547,0.3239344262295082,0.330914198759218,0.3334345581536593,0.3398215733982157,0.3435346015991177,0.353875236294896,0.0,2.042746091966778,53.065600694150106,147.013793668934,222.9350513000888,fqhc1_100Compliance_baseline_low_initial_treat_cost,52 -100000,95785,47287,451.2501957509005,5034,51.31283603904578,3926,40.3403455655896,1519,15.430390979798508,77.39816222968327,79.72759650907432,63.35848721039546,65.07968519937225,77.1931258597698,79.52713184160577,63.280925959969146,65.00659607445219,0.205036369913472,200.4646674685517,0.0775612504263136,73.08912492005959,211.70666,148.86152426089478,221022.76974474083,155412.1462242468,498.43913,334.91392274853854,519701.3937464112,348980.2920588178,450.63813,220.66651509485624,465906.60333037534,226906.48032331569,2556.50832,1209.5328003916857,2628094.785196012,1221845.8739799403,912.02532,421.6998854060881,936044.5998851596,424142.49141941697,1478.07702,643.6977771452141,1502503.3773555355,637242.1235344087,0.37841,100000,0,962303,10046.489533851856,0,0.0,0,0.0,43353,451.9287988724748,0,0.0,40794,421.4856188338467,1239242,0,44460,0,0,0,0,0,94,0.9709244662525448,0,0.0,0,0.0,0,0.0,0.05034,0.1330303110382918,0.3017481128327374,0.01519,0.3526366251198466,0.6473633748801534,23.52418462933763,4.042047421655206,0.3008150789607743,0.2784004075394803,0.217269485481406,0.2035150280183393,11.44982150055302,6.295653151633255,16.48121936989069,11420.743242325696,45.08854258502241,13.236766043603753,13.380502855779488,9.58179335456184,8.889480331077348,0.5807437595517065,0.8005489478499542,0.6926333615580017,0.5662368112543963,0.130162703379224,0.737331081081081,0.9142212189616252,0.896969696969697,0.6650717703349283,0.1633663366336633,0.513129102844639,0.7230769230769231,0.6133960047003525,0.5341614906832298,0.1189279731993299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786656134167,0.0045605642938219,0.0067361928336647,0.0087537574132748,0.0108066893712194,0.0128849716042094,0.014958985071585,0.0170489327837407,0.0191665219301382,0.0211786372007366,0.0232765421221403,0.0254486870324573,0.0274086634808077,0.0293948126801152,0.0315270732813724,0.0337619416473018,0.0358454456111312,0.0378266279552053,0.0395834848846997,0.0414874673275781,0.0557822135500902,0.0693629527365525,0.0825007076881139,0.0948752443612973,0.1071518933963059,0.1222343203272831,0.1333672744243272,0.1435731539910399,0.1533606040863407,0.1623059106116496,0.1749526107185938,0.186681376207318,0.1975575571225241,0.2064407594328286,0.2158164274567554,0.2256151531244468,0.2342762211642453,0.2423571211729387,0.2492003720254973,0.255859486815439,0.2624095438466696,0.2683573891193829,0.2740956370478185,0.2799487277780439,0.2843515619311148,0.2892456174906441,0.292930808175511,0.2967711602729456,0.2984810061070282,0.3011943367871549,0.299837205860589,0.2972315724393762,0.2943394633535479,0.2918655457337736,0.2890438748463714,0.2867215041128084,0.2838976365529645,0.2838312973229325,0.2832265539803708,0.2831474266602622,0.2834965948316074,0.2849963540332276,0.2864507242142171,0.2868765004001067,0.2887389428006008,0.2907660048150353,0.2930174914795933,0.2979848239830824,0.3014372294372294,0.3057404651891299,0.3096375766318067,0.3148235294117647,0.3200964928558174,0.3236311672683514,0.3281264528126453,0.331446095777306,0.3316704459561602,0.330518697225573,0.3240360951599672,0.3309433962264151,0.0,2.517759639785462,51.128288667524416,144.90948821321768,200.2335676168272,fqhc1_100Compliance_baseline_low_initial_treat_cost,53 -100000,95864,47300,449.4596511724943,5196,52.79354084953684,4141,42.4768421931069,1549,15.678461153300509,77.3584022892406,79.64247333589422,63.35300198276878,65.04241508468802,77.15836594001266,79.44887732022092,63.27728553479918,64.97252151547991,0.2000363492279433,193.59601567330745,0.0757164479696044,69.89356920810508,212.99014,149.81860646240256,222179.253943086,156282.232604943,505.15223,339.04961484240005,526198.4373696069,352929.97771259287,459.10751,225.26228475135,475058.1344404573,231949.5721502299,2687.26647,1261.6360039374329,2758628.1190019194,1271522.1279452487,973.76517,446.8213224391101,993568.7327881164,443913.88033961086,1512.10962,645.4276962169736,1532352.2490194442,633184.0483266138,0.379,100000,0,968137,10099.056997413,0,0.0,0,0.0,43947,457.69006091963615,0,0.0,41653,430.51614787615785,1226796,0,44028,0,0,0,0,0,92,0.949261453726112,0,0.0,1,0.0104314445464407,0,0.0,0.05196,0.1370976253298153,0.2981139337952271,0.01549,0.3576171154555514,0.6423828845444486,23.534115157321036,4.197784267709482,0.3182806085486597,0.2779521854624487,0.1951219512195122,0.2086452547693793,11.569890429760404,6.204327797836273,16.519086396028687,11517.020899520436,47.47067001101325,14.092687848089712,14.891431109039816,9.041345438335066,9.445205615548655,0.5935764308138131,0.8132059079061685,0.7101669195751138,0.6027227722772277,0.1145833333333333,0.7771381578947368,0.926829268292683,0.9074626865671642,0.7684729064039408,0.1559139784946236,0.5172649572649572,0.7283763277693475,0.6429298067141404,0.547107438016529,0.103244837758112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400368536686,0.0047319411091183,0.0072318974348571,0.009574673313771,0.0121061191299044,0.0143701849194475,0.0166571579933982,0.0186444999745015,0.0208692811124837,0.0226643085699097,0.0249163143509371,0.027004029074953,0.0288393398173919,0.0309732237457953,0.0331207040468265,0.0351460460698171,0.0371477634791244,0.0390941597139451,0.0411473911598537,0.0429594023763447,0.0579349027294147,0.0714972312193083,0.0851843706473132,0.0977968664678455,0.1097229537553987,0.1249405774289306,0.135871811447526,0.1468736707783921,0.1571666453183041,0.1662611081929958,0.1778153468438395,0.1894207366542268,0.2000804496483045,0.2097818006908916,0.2182847718526663,0.2269895198149644,0.2347305255643794,0.2427220491830929,0.2497759526267427,0.2567274976801732,0.2628698378903764,0.26912999742672,0.2752202330207445,0.2798714612885046,0.2846465162066576,0.2886611920791102,0.2923475712836695,0.2961883179711768,0.2990951047500518,0.3021268163804491,0.2998100421679442,0.2967285539300018,0.2944928679048678,0.2912736360090716,0.288063581668276,0.285436476947341,0.2826007818806286,0.2836514005349436,0.2848193100151926,0.2852028639618138,0.2854820020184652,0.2870691694928622,0.2878373011725853,0.2889522833136464,0.2904153584353953,0.2914572864321608,0.2933616418966737,0.2974726989079563,0.3013865663322185,0.3046976689149213,0.3090826727066817,0.3157202252513025,0.3188043274341817,0.321382256465024,0.3241763428679317,0.3279197516121327,0.3297757153905646,0.3259858442871587,0.3316858868753432,0.3380174705658944,0.0,2.811233341516401,52.288001876528845,155.78402727126527,212.38714244487764,fqhc1_100Compliance_baseline_low_initial_treat_cost,54 -100000,95729,47715,454.6375706421252,5195,52.962007333201015,4102,42.22335969246519,1542,15.76324833644977,77.38965647392791,79.75561406590693,63.34469261111818,65.09355748104,77.1947284426922,79.56348143409554,63.271173938757904,65.02308982802549,0.1949280312357189,192.13263181138984,0.0735186723602794,70.46765301450364,212.7114,149.53625758999578,222201.40187404028,156207.667049688,506.67626,339.8723783176191,528661.7848300933,354415.859684755,458.66001,224.82934450296457,474691.5668188323,231452.4019168391,2639.78376,1232.793907659402,2722286.767855091,1252523.3185966655,953.85763,430.9014544967994,981525.190903488,435336.6613899479,1497.62762,635.6025775056022,1533594.8772054447,638832.1007326094,0.38244,100000,0,966870,10100.063721547283,0,0.0,0,0.0,44078,459.7770790460571,0,0.0,41548,429.57724409531073,1230803,0,44137,0,0,0,0,0,96,1.0028309080842797,0,0.0,1,0.0104461552925445,0,0.0,0.05195,0.1358383014329045,0.2968238691049085,0.01542,0.3532110091743119,0.6467889908256881,23.47599080767893,4.081299891816042,0.3310580204778157,0.2688932228181375,0.1999024865919063,0.2001462701121404,11.413191404213734,6.1363214156818,16.34980600251612,11599.752841054897,46.744679594775214,13.390753604452726,15.32363228748172,9.096195947482736,8.93409775535804,0.583130180399805,0.8023572076155938,0.6973490427098674,0.5780487804878048,0.1047503045066991,0.763681592039801,0.9311111111111112,0.8683544303797468,0.7377049180327869,0.1348314606741573,0.5079419889502762,0.7136294027565084,0.6272066458982347,0.5321821036106751,0.0964230171073094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020156389271533,0.0043287410155814,0.0067790418007083,0.0090314322287014,0.0110470261527663,0.0130137265284509,0.0154056341187385,0.0178336276681536,0.020085452612642,0.0219974819076085,0.0241702371922343,0.0260658884885069,0.0283114880493446,0.0304175462081037,0.0325827978505048,0.0350347764078502,0.0369465269436275,0.0389675063285886,0.0409183503783154,0.0429577611535977,0.0574847048505982,0.0713590454759537,0.084328248599425,0.0973636593166133,0.1098101265822784,0.1253291874226607,0.135430481141584,0.1463736497632097,0.1565653868745661,0.1662698412698412,0.1791751911273823,0.190346379351377,0.2014286801561327,0.2115294194832318,0.2208420890497618,0.2294575531761762,0.2383299507103508,0.2464520478678577,0.2539113872386739,0.2610162899240413,0.2671860731253395,0.2729928371951718,0.2782136105860113,0.2823433685923515,0.2867297428432799,0.290999495390826,0.2940963283261266,0.2973433112683751,0.3016119233205362,0.3049543556439608,0.3020934107277222,0.2989604361499059,0.2965237185251798,0.2944872811126324,0.2925829461035309,0.2897449975597853,0.2870489995273357,0.2870616647357342,0.2874502160833828,0.288963684676705,0.2905208430043636,0.2915090085674515,0.2935741721166822,0.2925483592209346,0.2952310659270017,0.2966360066143034,0.2976244216228416,0.3022175092786077,0.3065005757353711,0.3092620422368108,0.3129937346771996,0.3144146535704805,0.3170411164653607,0.3203977867504112,0.3225569434239529,0.3219217825229198,0.3209378733572282,0.3232682060390763,0.3256375838926174,0.3293278257604206,0.0,2.3556116902992126,52.34691397480788,150.02835106863054,212.037435021466,fqhc1_100Compliance_baseline_low_initial_treat_cost,55 -100000,95771,47139,448.52826012049576,5105,52.3749360453582,3996,41.24421797830241,1498,15.338672458259808,77.34687979821054,79.70772290967903,63.33382307926016,65.0819069723786,77.15398613274927,79.51420842954418,63.262243973888616,65.01179019443613,0.1928936654612698,193.5144801348514,0.0715791053715406,70.11677794247362,211.71744,148.89685374547943,221066.3353207129,155471.75423194855,501.63694,336.12901429452813,523324.7956061856,350508.4673800296,450.01894,219.9350519005507,466668.3025132869,227158.3216411836,2596.14969,1203.145584762918,2682253.8973175595,1227738.3286829188,941.04777,421.4884864320509,972527.048897892,430025.3692997364,1464.42228,618.6462947411393,1502045.191133015,624348.054594317,0.37811,100000,0,962352,10048.469787305134,0,0.0,0,0.0,43697,455.7747125956709,0,0.0,40739,422.1528437627256,1239331,0,44437,0,0,0,0,0,87,0.9084169529398252,0,0.0,0,0.0,0,0.0,0.05105,0.1350136203750231,0.2934378060724779,0.01498,0.3485274807728381,0.6514725192271619,23.85193020914596,4.101606368417673,0.3128128128128128,0.2722722722722723,0.2007007007007007,0.2142142142142142,11.503510610632675,6.216752034714124,16.066376702912347,11461.197245302046,45.50091328040222,13.19294224883354,14.020203348917944,8.887619762082581,9.40014792056816,0.5890890890890891,0.8097426470588235,0.7056,0.5935162094763092,0.1343457943925233,0.7558441558441559,0.9268867924528302,0.8685714285714285,0.751269035532995,0.1521739130434782,0.5212953185498064,0.7349397590361446,0.6422222222222222,0.5421487603305785,0.1294642857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381378946941,0.0043605240741491,0.0064365482233502,0.0083234244946492,0.0107023683567998,0.0129121606484592,0.0150576001631155,0.0172213148223764,0.0195252601664247,0.0219007249047794,0.0240319058408603,0.026203115213619,0.0286398881141893,0.0307700231779551,0.0326232790472062,0.0346406715183592,0.0368027006596319,0.0386319076319802,0.0407484407484407,0.0428815394868377,0.0569669136833315,0.0709728033472803,0.0836880622365744,0.0959873039895741,0.1080104121657937,0.1228880271346907,0.1339452263862981,0.1442300536862807,0.1542760842204066,0.1645568264576104,0.1764883033073407,0.1882961826452442,0.1981970240034756,0.2071996331397126,0.2166597104760231,0.2266311201575256,0.2356003433399846,0.2440041358538065,0.251287577992059,0.2570931324280382,0.2630763180419645,0.2685416910302888,0.2743984668890624,0.2788998298953017,0.2843346598078229,0.288757163588066,0.2916322908072701,0.2950586381713531,0.2985671055013837,0.3024548280040036,0.2992433914340621,0.2961492492203706,0.2945705935251798,0.2920129636298163,0.2901047143682332,0.2875398873230835,0.2845756853585013,0.2846617329229157,0.2849769177043763,0.2861183754069488,0.2856235997012696,0.2856551642591096,0.2873340015033826,0.2883011462468222,0.2901909972166235,0.2915874215147331,0.2919774525992142,0.2948637250582237,0.2998037979118492,0.3042444418024016,0.3085779294653015,0.3102809672469442,0.3115527325325451,0.3116282595512432,0.315198217435707,0.316727230101981,0.3191392635247765,0.3180161943319838,0.3219026548672566,0.3281371784879189,0.0,1.898500145677928,50.51307101817628,145.8234591840488,210.55249612579595,fqhc1_100Compliance_baseline_low_initial_treat_cost,56 -100000,95748,47566,452.0094414504741,5125,52.36662906797009,4059,41.73455320215566,1532,15.53035050340477,77.36211040614715,79.72364441617292,63.32787542470121,65.07545652557108,77.16251357276728,79.53062749376765,63.25183377187128,65.0051471546939,0.1995968333798714,193.01692240526336,0.0760416528299359,70.30937087718314,212.54794,149.49103280543028,221986.58979822035,156129.44333608047,501.73973,336.5687954292888,523356.1223210928,350850.5232791169,458.60039,224.32977471712184,475215.21076158254,231409.32954340675,2629.85041,1229.8520823419449,2704214.8347746166,1242075.731756219,916.55099,416.0870229968335,936439.7585328151,413751.0684263205,1490.0835,643.886920666375,1511445.857876927,632030.3002844088,0.38084,100000,0,966127,10090.299536282742,0,0.0,0,0.0,43561,454.26536324518526,0,0.0,41699,431.8105861219033,1230422,0,44227,0,0,0,0,0,74,0.7728620963362158,0,0.0,0,0.0,0,0.0,0.05125,0.1345709484297867,0.2989268292682926,0.01532,0.3499442171811082,0.6500557828188918,23.584300586962826,4.156319787962326,0.3227395910322739,0.2682926829268293,0.2062084257206208,0.2027593003202759,11.327610345913374,5.982555472502473,16.467102650576834,11530.515937457176,46.49865418381546,13.22541700435379,14.993810603627216,9.30533663290116,8.974089942933304,0.5821630943582163,0.8025711662075299,0.6969465648854962,0.5770609318996416,0.1130012150668286,0.7398042414355628,0.917391304347826,0.8662952646239555,0.6933962264150944,0.1384615384615384,0.5139428168019767,0.7186009538950715,0.6330178759200841,0.5376,0.1050955414012738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020870692886741,0.0042793112539801,0.0066389199066084,0.0090634748061818,0.0113931132699252,0.0134028598199372,0.015683315318255,0.0183063791554357,0.0204496886534902,0.0225897291485331,0.0248897548969336,0.0270461829238228,0.0292695473251028,0.0313994229183841,0.0337602823849972,0.0359384208186433,0.0379736348856234,0.0399057866503418,0.0420898346136654,0.0438731719511687,0.0582254697286012,0.0722199554314051,0.0855662643021195,0.098414968919928,0.1107583253341209,0.125994246065324,0.1367431596592295,0.1472708109316611,0.1565428299729674,0.1658212780559994,0.1773582060616504,0.1890016883847785,0.1999956482478758,0.2092745949612191,0.2182368478978648,0.2280624002836376,0.2373290156886829,0.2450609783538094,0.2529411097371436,0.2595476667620956,0.2653996620292136,0.2708187134502924,0.275871453250349,0.2794759301879555,0.2836397192743874,0.2866789063173848,0.2906071678846731,0.295544447412269,0.2996091829075756,0.3024120695794374,0.3000161559588561,0.2979217957005515,0.2953688593776377,0.2920479145619858,0.290482828162999,0.2868234826600639,0.2835184278289442,0.2834675307672165,0.2843587389041934,0.2844079052506348,0.2837208435799985,0.284234278426371,0.2864782753454303,0.2874147771436185,0.289370031749063,0.2903568009521591,0.2910673411139684,0.2950043602840413,0.3006109414051652,0.3029494822717289,0.3056091974671038,0.3079013377926421,0.3119682007328737,0.3127242822966507,0.3155711256568636,0.3164542158811835,0.3151487826871055,0.3187919463087248,0.3228831725616291,0.3320625238276782,0.0,2.5124567673156384,53.15047253751474,146.34325122365135,209.376745857065,fqhc1_100Compliance_baseline_low_initial_treat_cost,57 -100000,95767,47636,453.02661668424406,5118,52.27270354088569,4063,41.91422932743012,1553,15.924065701128782,77.32840490063373,79.68930005057597,63.31625382636724,65.06474678218076,77.13714053093487,79.4993592206475,63.24435080012929,64.99541428732802,0.1912643696988567,189.94082992846015,0.0719030262379476,69.33249485274473,212.91776,149.78175463263133,222328.94420833897,156402.26240002437,503.86443,337.9466702638766,525632.295049443,352380.79950700817,459.95329,225.15008278997752,476822.2143327033,232464.10068086625,2623.20641,1223.887366885118,2709226.7273695534,1248056.3418349938,916.78858,416.4416179073712,945812.639009262,423362.0242055982,1504.47366,635.3741951613514,1544478.2440715488,639930.3688929459,0.37961,100000,0,967808,10105.861100379045,0,0.0,0,0.0,43908,457.965687554168,0,0.0,41625,431.2550252174549,1226969,0,44068,0,0,0,0,0,82,0.8562448442574164,0,0.0,0,0.0,0,0.0,0.05118,0.1348225810700455,0.3034388432981633,0.01553,0.3466015771686068,0.6533984228313932,23.68140998749917,4.118948941338743,0.3266059561900074,0.2665518090081221,0.2087127738124538,0.1981294609894167,11.08933478441532,5.936254717320818,16.501680647428323,11545.85890328933,46.31951117023021,13.168740685538634,15.015278864606303,9.365715588451508,8.769776031633754,0.5897120354417917,0.8116343490304709,0.7015825169555389,0.589622641509434,0.1068322981366459,0.7561779242174629,0.9274725274725276,0.8675675675675676,0.7058823529411765,0.1675675675675675,0.5187785187785188,0.7277070063694268,0.6374085684430512,0.5527950310559007,0.0887096774193548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584264766981,0.0044929917442544,0.0068736547130731,0.0093396207239984,0.0116477792923846,0.0136183996088657,0.0159997552618697,0.0185200310368767,0.0206403729374961,0.0227035437181403,0.024837271282866,0.0271063925909193,0.0292266556972439,0.0314250988793671,0.0333006552809452,0.0352059537960618,0.0372850828614903,0.0394599023095191,0.041586565938919,0.0435027130612287,0.0574992172007097,0.0711073460508701,0.0843101893597835,0.0967636826117575,0.1089698336266028,0.1238122417055099,0.1349176051409302,0.1458931954111061,0.1558548359535201,0.1650815435917781,0.1774025050887981,0.1893973818024451,0.1999042687437448,0.2091225230742312,0.217810993462038,0.2268322128324122,0.2359354946710563,0.2443614099851438,0.2517284048724556,0.2577998785476127,0.2651030397000798,0.2714578094848254,0.2764985142126511,0.2815667926339152,0.2858983083803227,0.2903452441113754,0.2937940196004712,0.2979677074313656,0.3022020037067278,0.3047792468265907,0.3022582513028373,0.2996823738089018,0.2968569577829724,0.2940862464472754,0.2920747996438112,0.2884285889120059,0.2841652704454209,0.2841164411644116,0.2840457637811386,0.2848156530106741,0.2849219391947412,0.2860938883968113,0.2874388594026433,0.2887731481481481,0.2909878226751836,0.2922486847902143,0.2933227570186124,0.2969802845021213,0.3014289190974515,0.3057643124139287,0.309228619088409,0.3112614029569047,0.3163676990875799,0.3172051089406461,0.3188244047619047,0.3214702450408401,0.3252449133383572,0.3298387096774193,0.336533187054306,0.3399378399378399,0.0,1.9441010868650177,53.20685438221489,141.96161218634805,215.4609656838738,fqhc1_100Compliance_baseline_low_initial_treat_cost,58 -100000,95732,47423,452.13721639577153,5034,51.38302761876906,3981,41.01032047800109,1519,15.491162829565871,77.31464774318667,79.68041282911163,63.30648041847581,65.05598148912243,77.12087167750823,79.49037051817514,63.23293069564501,64.98624633196958,0.1937760656784348,190.0423109364908,0.0735497228307977,69.73515715284861,212.55322,149.44073935606102,222029.43634312457,156103.22499901915,501.59605,336.4460873727771,523408.0035933648,350895.1942639631,452.48812,221.31102573483727,469240.99569631886,228501.2288021132,2623.29164,1222.2850818797972,2703918.136046463,1240450.7916681962,932.7941,421.294194300212,958322.7969748882,424018.79653638456,1476.9852,632.9294161708025,1507675.385451051,631025.1284622817,0.38051,100000,0,966151,10092.247106505662,0,0.0,0,0.0,43569,454.5397568211257,0,0.0,41017,425.07207621276063,1231236,0,44152,0,0,0,0,0,84,0.8670037187147454,0,0.0,1,0.0104458279363222,0,0.0,0.05034,0.1322961288796615,0.3017481128327374,0.01519,0.3571968265961466,0.6428031734038534,23.59310749613668,4.125875131325823,0.3062044712383823,0.2685254961065059,0.2132629992464205,0.2120070334086913,11.305687943911652,6.128916505039914,16.26501610278577,11544.736508789149,45.6612203999709,13.14465820956763,13.854119651746757,9.468002370187913,9.194440168468605,0.583019341873901,0.8194574368568756,0.7054963084495488,0.5653710247349824,0.1244075829383886,0.7523645743766122,0.9256756756756755,0.8816568047337278,0.7035175879396985,0.1428571428571428,0.5131298793470547,0.744,0.637911464245176,0.5230769230769231,0.1193353474320241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0044712108769048,0.0066180799447816,0.0089625038105883,0.0110788951625209,0.0130812176535311,0.0154354679099376,0.0174082620326315,0.0194733506429783,0.0216412104336431,0.0239201090912819,0.0258340093027076,0.027793492907619,0.029850592478104,0.0319986787642316,0.0340845652848134,0.0362642255796373,0.0385078343882951,0.0403339849436426,0.0423811805888358,0.0564337621115937,0.0708932571332872,0.0840650867088408,0.0972983205207752,0.1096793242715989,0.1249682633716993,0.136041352665209,0.1466022105330408,0.1560392102365655,0.1654951116643951,0.1768740496295577,0.1883688926934454,0.1995641989431824,0.2085415570752235,0.2177542064524665,0.2258752206788581,0.2353112242044628,0.2435715252402219,0.2516434274276096,0.2585468367803948,0.2645558466853711,0.2709463496936109,0.2764820213799805,0.2807933194154488,0.2849711966165139,0.2905428726394162,0.294514208525115,0.2972124416875341,0.3012682119633369,0.304486377582597,0.3031838402300859,0.3007030456155768,0.2987288433176487,0.2956435272585782,0.2940652951036089,0.2911189238764903,0.287384839051216,0.2882594941895723,0.2883569467887406,0.2886614453542185,0.2886443875740198,0.2893063185460846,0.2909253781092454,0.2923295707048262,0.2934920293492029,0.2947662680540456,0.2955261142160061,0.2996129596104626,0.3025674923462287,0.3065037445802128,0.3117529880478087,0.3162203559921829,0.3178557946394866,0.3211950737418276,0.3226563967687394,0.3291617473435655,0.3288274605103281,0.3334010564811052,0.3379895918926321,0.3422767343809889,0.0,2.268717450960719,50.54845330207476,149.8863762335164,205.1871821131012,fqhc1_100Compliance_baseline_low_initial_treat_cost,59 -100000,95804,47806,454.344286251096,5159,52.42996117072356,4108,42.1903052064632,1539,15.57346248590873,77.3504688262772,79.6825522933852,63.33176974345843,65.05990322382229,77.14872856670782,79.48785878702397,63.25490366136785,64.98880143110976,0.2017402595693767,194.69350636123292,0.0768660820905822,71.10179271252548,209.17908,147.35266511569813,218340.65383491296,153806.38085643412,501.91106,336.7655075048881,523234.2282159409,350855.6714801972,466.81391,229.3357832856207,483358.9202956035,236310.7552304224,2655.10217,1240.4186081382768,2726621.8216358395,1249978.2975014371,955.025,436.5961565303664,978099.8079412133,436964.9456498336,1498.0752,643.0504657613114,1517638.2823264163,632465.9837498694,0.38242,100000,0,950814,9924.575174314225,0,0.0,0,0.0,43623,454.6469875996827,0,0.0,42222,436.7667320779926,1242861,0,44621,0,0,0,0,0,90,0.9394179783725104,0,0.0,3,0.031313932612417,0,0.0,0.05159,0.1349040322158883,0.2983136266718356,0.01539,0.3537919525310588,0.6462080474689412,23.30244771384576,4.131775895977029,0.3230282375851996,0.2675267770204479,0.2044790652385589,0.2049659201557935,11.305571529986468,6.0916578382428535,16.45413924892082,11650.908392836156,46.8133402123105,13.273008211156352,15.048137830712044,9.279811922992806,9.212382247449296,0.5861733203505355,0.7816196542311192,0.7309721175584024,0.5797619047619048,0.1092636579572446,0.7573149741824441,0.9144893111638956,0.903846153846154,0.7539267015706806,0.1182795698924731,0.5186693822131704,0.6991150442477876,0.6656282450674974,0.5285053929121726,0.1067073170731707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730899365844,0.0049177169625746,0.0071856287425149,0.0096217347571197,0.0116667005716378,0.0137805300360554,0.0158686451481311,0.0183808512376439,0.0204899595108584,0.0226644555002763,0.02488643704562,0.0271294347178723,0.0293497598749498,0.0314630579414612,0.0337867802518538,0.0356784906128269,0.0377835056882291,0.0396431905404003,0.0416121053397351,0.0437661364204214,0.0582736965094201,0.0726249973860856,0.0860807780176479,0.0997320724980299,0.1116344249167615,0.1278576939744009,0.1385153764581124,0.1486462045853502,0.1587191423934398,0.1682939114964579,0.1800551035343751,0.1913483474067747,0.2012320328542094,0.2104785640891104,0.2192175673296954,0.2288234186121236,0.2379767179704677,0.2457688152682751,0.2539541960463716,0.2606798451565614,0.2665100888559792,0.2726645621419385,0.2785169416356218,0.2829309766728936,0.2864847137703604,0.2903742788105922,0.293770032051282,0.2975897938656243,0.3024222797927461,0.3059457176048157,0.3035081335327969,0.3003622639430295,0.2986075878008907,0.2964424021732847,0.2938477302089366,0.2906982081924318,0.287450353656028,0.2875775174721921,0.2878588853443423,0.2883710149062121,0.2880786042515037,0.2907748350891011,0.2922110447885795,0.2921606203761476,0.2926975450709628,0.2946491159747644,0.2971519166525111,0.3025950098366798,0.307088255733148,0.3103801457553673,0.3156779661016949,0.3200504016380532,0.3227111470716375,0.3253075307530753,0.3275109170305676,0.3334885887284583,0.3375,0.3395663417545255,0.3382590005373455,0.3383742911153119,0.0,2.7170541742098093,49.76643751083091,154.29954733192085,216.7853873094376,fqhc1_100Compliance_baseline_low_initial_treat_cost,60 -100000,95709,47199,449.8323041720215,5119,52.04317253340856,4020,41.34407422499452,1556,15.818784022401235,77.30949638025908,79.66983221208088,63.31695901961641,65.05946595387452,77.11480807524971,79.48122490176263,63.242496647497696,64.99056965945508,0.1946883050093646,188.60731031824685,0.0744623721187167,68.89629441944578,211.92094,149.0786453685316,221422.1651046401,155762.41039874163,505.26778,338.6439837853438,527286.7650900125,353192.58772460674,455.94734,223.4299655978625,472641.56975833,230515.42821600195,2616.04127,1227.9896127772904,2690195.551097598,1239912.2368609952,932.71211,427.0837545749868,956303.0436009152,428005.4379159597,1518.42354,649.6988442212456,1544197.348211767,641438.0519238357,0.37821,100000,0,963277,10064.643868392732,0,0.0,0,0.0,43978,458.8074266787867,0,0.0,41294,427.6400338526157,1230717,0,44215,0,0,0,0,0,91,0.950798775454764,0,0.0,1,0.0104483381918105,0,0.0,0.05119,0.1353480870415906,0.3039656182848212,0.01556,0.3513972809667673,0.6486027190332326,23.589461243521782,4.178113432908514,0.3141791044776119,0.2666666666666666,0.2072139303482587,0.2119402985074626,11.209762059689591,5.960242665015425,16.678992861793276,11433.803280876926,46.140039161844456,13.05776353072403,14.38512414326533,9.356826475061492,9.340325012793608,0.5778606965174129,0.7798507462686567,0.7070467141726049,0.602641056422569,0.107981220657277,0.743073047858942,0.9058823529411764,0.8492063492063492,0.7355769230769231,0.1444444444444444,0.5083068221986567,0.6970633693972179,0.6463276836158192,0.5584,0.0982142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267761112405,0.004287973400373,0.0064929794659524,0.0090497277971885,0.0112133380775682,0.013354097326127,0.0153901034500331,0.0174752722855655,0.0198990229344671,0.0218296814074157,0.0238112321774515,0.0260080293244894,0.0283293401474565,0.0304834091985746,0.0326103771541722,0.0346541302887844,0.0365456069717136,0.0385185799773908,0.0403791587415422,0.0424184341014208,0.0567152956902223,0.0702652347756913,0.0830544920543347,0.0962341336193751,0.1084090861156222,0.1235668655074671,0.1347772106497448,0.1456936016182263,0.1553582684315673,0.1641376499983914,0.1756054990518876,0.1861588099001754,0.1967482506067102,0.2052749658002736,0.214428063376017,0.2239773860991021,0.2327927082635212,0.2410782679223178,0.25,0.256834045869772,0.2635070212199442,0.2687785875554204,0.2739949808229556,0.2780302939448089,0.2829613248927716,0.2870089516904638,0.2910719423560465,0.2947965845030095,0.2978483619829786,0.3011198563203212,0.2994597653145082,0.2964094518530751,0.2940604523356584,0.2910527532212399,0.288261515601783,0.2852788923944007,0.2817367878931939,0.2819919219781302,0.282616496642231,0.2831550181292085,0.2835546896952213,0.2855560828982756,0.2867160679896173,0.2883752093802345,0.290571572847284,0.2923120906539141,0.2941092690708141,0.2975817566720962,0.3029974846282839,0.3070013001851779,0.3109182935647144,0.3149212038159489,0.3190145688738823,0.3243795399515738,0.3299335641433517,0.3323134855260061,0.3367440439828955,0.3491511556555532,0.349480021893815,0.3555386372287781,0.0,2.5152169734288385,51.50133848154088,149.61277558861875,206.9869125020034,fqhc1_100Compliance_baseline_low_initial_treat_cost,61 -100000,95741,47750,455.09238466278816,5203,53.20604547685944,4083,42.12406388067808,1573,16.053728287776398,77.40440741590693,79.75989298359939,63.3594678928421,65.09859603766633,77.20744165453088,79.56627376015109,63.28518698136314,65.02794903991708,0.1969657613760489,193.6192234482945,0.0742809114789579,70.64699774925032,211.67344,148.89358117715804,221089.64811313857,155517.05244060332,507.06312,339.7222513039892,529103.5188686143,354318.5587198684,459.52584,225.04137156020997,476632.76965981134,232501.1561516143,2674.2715,1238.4191828365088,2761558.663477507,1261833.0316546815,967.76397,438.402701661864,994881.7121191547,441972.0199933828,1543.8699,656.1847307354013,1578014.3721080832,656204.493007879,0.38079,100000,0,962152,10049.529459688118,0,0.0,0,0.0,44094,460.0119071244295,0,0.0,41544,430.5783311225076,1234789,0,44288,0,0,0,0,0,88,0.9191464471856362,0,0.0,0,0.0,0,0.0,0.05203,0.1366369915176344,0.3023255813953488,0.01573,0.3412322274881517,0.6587677725118484,23.89259421744714,4.179924061542758,0.304677932892481,0.2578986039676708,0.2167523879500367,0.2206710751898114,10.95072696643284,5.65772415471328,16.732191510904805,11560.78810136518,46.41644140393822,12.818687275844002,13.980432051965884,9.731139919320276,9.886182156808058,0.5655155522899828,0.7977207977207977,0.6872990353697749,0.5751412429378531,0.1165371809100998,0.7469458987783595,0.937799043062201,0.868421052631579,0.7297297297297297,0.1592039800995024,0.494722505958461,0.705511811023622,0.6186252771618626,0.5342857142857143,0.1042857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793372280215,0.0045806941981251,0.0066447541948181,0.0087239120499669,0.0108791800961841,0.0132532573289902,0.0152764331210191,0.017632113302654,0.0197502860879516,0.0219698132514709,0.0239312910598436,0.0262128847515728,0.0285593856339505,0.030456591374924,0.0325020378261811,0.0346089437449606,0.036648889349143,0.0385680646466322,0.0408214166943797,0.0425476512863243,0.0571106401194416,0.0711706903588359,0.0844941887299123,0.0976007233577256,0.1101074090080214,0.1260322931977033,0.1370252493104179,0.1485542733040923,0.1581483301638853,0.1667149245568317,0.1785237356767468,0.1902721419682952,0.2005938526462335,0.2094996501049685,0.2187152773957909,0.2275208432521009,0.2358788419702125,0.2429144790835197,0.2506690252642082,0.2584823829631409,0.2650470183221275,0.2702828867519372,0.2758946275139269,0.2805001851210453,0.2853060829135994,0.2900630197904254,0.294448120450942,0.2976847446875991,0.3017321493107543,0.3048055942585241,0.302764593891615,0.2998355488556941,0.2976090250883987,0.2946483818514095,0.2915656237061572,0.2882249828519168,0.2853134064825324,0.2863136928376679,0.287359054476294,0.2878814762242725,0.2893230671712746,0.2899255641762829,0.2902707998915966,0.2914453359411464,0.2922727815597755,0.2936771184244623,0.2958152143220195,0.2993296960249415,0.302569280044562,0.3054757312128489,0.3110850545684134,0.3153376171916148,0.3190680869619385,0.3247837532907108,0.329598073717355,0.3328293987672985,0.3322765700483092,0.3336655371736097,0.338343809784094,0.335408560311284,0.0,1.9880254127013124,50.01268868803813,154.37471431855263,213.3946861961221,fqhc1_100Compliance_baseline_low_initial_treat_cost,62 -100000,95753,47653,453.6045868014579,5245,53.61711904587846,4149,42.78717115912817,1646,16.876755819661003,77.33232137485312,79.69861304662095,63.31916690730778,65.0715148430617,77.12894203351273,79.4956648727908,63.243515857458505,64.99778623622433,0.2033793413403941,202.9481738301513,0.0756510498492772,73.7286068373777,209.72622,147.55989625878573,219028.35420300148,154104.72388205669,500.25505,335.8392163432229,521894.26963123865,350185.9851317691,460.52078,225.71048261651063,477198.5942999175,232820.1342637475,2694.68643,1254.208667929364,2783171.34711184,1278803.0640599912,980.1943,441.5918243989319,1011827.0759140706,449335.586769012,1607.40122,673.7684258744956,1650149.5514500851,680377.5737696282,0.38066,100000,0,953301,9955.834281954612,0,0.0,0,0.0,43556,454.2938602445876,0,0.0,41696,431.735820287615,1244894,0,44605,0,0,0,0,0,86,0.8981441834720583,0,0.0,0,0.0,0,0.0,0.05245,0.1377870015236694,0.3138226882745472,0.01646,0.3455210237659963,0.6544789762340036,23.84957996924752,4.078153158550859,0.3106772716317185,0.2692214991564232,0.2034225114485418,0.2166787177633164,11.088478266369496,5.984633506728213,17.463716299237248,11591.112382623178,47.36879812530812,13.737224289684695,14.523188733793493,9.216201738804216,9.892183363025715,0.5712219812002892,0.8119964189794091,0.6943366951124903,0.5509478672985783,0.114571746384872,0.7428330522765598,0.908315565031983,0.863905325443787,0.7252747252747253,0.1573604060913705,0.5025312183597705,0.7422839506172839,0.6340694006309149,0.5030211480362538,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023409947707649,0.0046354055726298,0.0070871578263341,0.0092893731197658,0.0116077968584683,0.0140789111765365,0.0164089907807783,0.0186423546947901,0.020684014109708,0.0227784602784602,0.0248088081520513,0.0271033314511575,0.0289568937150378,0.031104199066874,0.0330877801163798,0.0352650563806807,0.0373380825662424,0.0394132110510535,0.0413605329065646,0.043159023922847,0.0577894692889055,0.0720862105042896,0.0851809124278972,0.0980874575487072,0.1108428399721654,0.126442373795598,0.1370065039097728,0.1475722161909019,0.1578475240546341,0.1672259807653132,0.1791698974756612,0.1907147339493216,0.2016010615734345,0.2112417300016403,0.2196439573981163,0.2281494275781128,0.23639467166477,0.2450612006120061,0.2519032869283048,0.2592181201905459,0.2648246497043748,0.2704198004514989,0.2758567659967113,0.280947874111967,0.2861166757724762,0.2897547395262321,0.2932569656345355,0.2978093471244504,0.3017051776334515,0.304267601549938,0.3023090060650072,0.2998158278127491,0.2984459601997046,0.2954876483567195,0.293609953583557,0.290755429217673,0.2876645153125791,0.2872213212770488,0.2876917576149694,0.2886438141391106,0.2890623537560136,0.2894544592967007,0.2902274201309706,0.2896129709449047,0.2924152176001537,0.2919244969060371,0.2916832132523969,0.2957397414983059,0.2990072706935123,0.3032273412100547,0.3075072621641249,0.3088696391560823,0.3123698984419353,0.3122622851057355,0.3165454206304794,0.3225995316159251,0.3271716260895702,0.3273052464228935,0.3317139001349528,0.3307984790874524,0.0,2.118838308584538,51.62008519969391,153.64086920103853,220.24734372052671,fqhc1_100Compliance_baseline_low_initial_treat_cost,63 -100000,95729,47695,454.5853398656624,5103,52.13676106508999,4103,42.31737509009809,1589,16.212433014029187,77.41699606751023,79.77008078009256,63.36600846061516,65.10037839735824,77.21021088277291,79.56657661945982,63.28679217443295,65.02499941113497,0.2067851847373134,203.50416063273255,0.0792162861822163,75.37898622327077,210.88276,148.4097358697501,220291.40594804083,155031.11478209333,508.55277,341.0828481538651,530681.9772482738,355741.0505045247,455.8946,223.196087467684,472879.6811833405,230629.8704494236,2662.29867,1247.0406001900692,2745470.2754651154,1267150.714910434,947.65385,434.0081109430821,971652.0385672052,435164.5286423474,1546.83432,671.0254583239375,1579203.0419204212,670300.6870979464,0.38229,100000,0,958558,10013.245724910948,0,0.0,0,0.0,44154,460.6545560906308,0,0.0,41381,428.9400286224655,1237021,0,44375,0,0,0,0,0,90,0.940153976329012,0,0.0,0,0.0,0,0.0,0.05103,0.1334850506160244,0.3113854595336077,0.01589,0.3496451251400821,0.6503548748599178,23.49229555840049,4.188536260816894,0.3114794053131854,0.26322203265903,0.2135023153789909,0.2117962466487935,11.336478030433115,6.053519035222925,17.08900365771574,11525.751142675532,46.75193813710073,13.090025813256874,14.390766361111124,9.58699154683782,9.684154415894907,0.5756763343894711,0.8,0.7167449139280125,0.5662100456621004,0.098964326812428,0.7429752066115702,0.9177777777777778,0.9050445103857568,0.7401960784313726,0.136986301369863,0.5057034220532319,0.7158730158730159,0.6493092454835282,0.5133928571428571,0.0861538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0044778085078361,0.0065826841934436,0.0087226718386661,0.0109097933951521,0.0132738858690119,0.0155542871121621,0.0176668707899571,0.0197845770229116,0.0222310887402042,0.0242962689702521,0.0262736565540457,0.0282186767548007,0.0302571549211645,0.032548254980244,0.0347525059419241,0.0367958420905504,0.0386346664454032,0.0408036001953916,0.0427123376149847,0.0570417240947249,0.0708456274719065,0.084066850614266,0.0967931930289548,0.1096121594397038,0.1249153833135894,0.1361345964123182,0.1472732885534537,0.1570489876595972,0.1657532630495168,0.1773156574087037,0.1891251420223989,0.2000086965029187,0.2088750027311062,0.217011504356712,0.2275503429962381,0.2351892102769882,0.2435658252601766,0.2509807033854108,0.2575292932991578,0.2636141904310534,0.2694599584044119,0.2752490928646566,0.2800828137528273,0.2853140237246197,0.2883027042995532,0.2928447381901323,0.2964736668275704,0.3001008090573061,0.3034251086813331,0.3013345159859694,0.2984375858092152,0.2960941785397825,0.2935468499559586,0.2912814424575202,0.2889829731299483,0.2849007792535571,0.2848693776855588,0.2858453384071758,0.2859626095285395,0.2871526679198228,0.2883223845475046,0.288484747596654,0.2902639569158485,0.292560169835174,0.2942088934850052,0.295670091453088,0.2988495024875622,0.3039117003922113,0.308054454862882,0.3120793323162523,0.3181484587963933,0.3237758331781791,0.3285617418820161,0.3313609467455621,0.3375884878728095,0.3404096277470474,0.3424116834418788,0.3352059925093633,0.33271719038817,0.0,2.0727415514651453,52.85682121123527,148.9754400775498,212.7037970630792,fqhc1_100Compliance_baseline_low_initial_treat_cost,64 -100000,95695,47699,454.7573018444015,5241,53.58691676681123,4109,42.353309995297565,1553,15.82109828099692,77.3508434030137,79.73994639409743,63.31502979323547,65.08219900800562,77.16200824704293,79.55613882805316,63.2444825002277,65.01616577161721,0.1888351559707644,183.8075660442655,0.0705472930077704,66.03323638840664,211.63032,148.90459061866434,221150.86472647477,155603.31325426025,501.70246,335.7344099553071,523681.7388578296,350250.75493961305,458.95181,224.6237943725904,476045.9689638957,232043.2842267771,2663.45908,1232.538191940322,2743400.3657453367,1248474.0314714296,973.87462,439.280199160273,997353.4144939652,439262.4506951784,1512.46542,635.3716729076755,1541365.4004911436,629932.5336119379,0.38109,100000,0,961956,10052.31203302158,0,0.0,0,0.0,43501,453.9840117038508,0,0.0,41532,430.4091122838184,1237364,0,44360,0,0,0,0,0,114,1.1912848111186582,0,0.0,0,0.0,0,0.0,0.05241,0.1375265685271195,0.2963174966609426,0.01553,0.339937626123647,0.6600623738763529,23.989649714554982,4.087925469413418,0.3115113166220492,0.2708688245315162,0.2129471890971039,0.2046726697493307,11.334409902059834,6.097394400907701,16.435611348514275,11595.703239878823,46.64134640492986,13.548577933933547,14.32126219413939,9.623009053154584,9.148497223702345,0.5935750790946702,0.8283917340521114,0.703125,0.576,0.1343638525564803,0.764102564102564,0.960698689956332,0.8459214501510574,0.7525773195876289,0.1497326203208556,0.5256890098673018,0.7358778625954199,0.6533192834562698,0.5256975036710719,0.1299694189602446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691127161481,0.0045126811410491,0.006679592727568,0.0087710382957964,0.0110989033347575,0.0133350991218597,0.0152913933631884,0.0174643054108707,0.01963571655025,0.0218758321214231,0.0242231565993231,0.0260779359503707,0.0280800641830038,0.0301978157840511,0.0323229821356698,0.0345066418566186,0.0364257964257964,0.0385078468820061,0.0405983128244068,0.0427780731104787,0.0575713897766915,0.0713560262598552,0.0847066232812008,0.0975014465309557,0.1100362884509894,0.1253372266480464,0.1361412149324389,0.1464032799105478,0.1566080896186078,0.1657956581926663,0.1780278532315785,0.1901854437985125,0.2013405292479108,0.2104174645729605,0.2194493675763146,0.2285733290467057,0.2370342256256837,0.2457198815862045,0.2531878413516674,0.2601012994751678,0.2651242462471499,0.2711642224276969,0.2761352199396128,0.2811810683801669,0.2859624612768025,0.2910866940947501,0.2953786922336529,0.2979840349806792,0.3023544470734262,0.3055482305785559,0.3032443852354231,0.3011197362093838,0.299073956972022,0.2967158070698774,0.2953180029003522,0.2929135779872487,0.2886450005519025,0.2889121270546714,0.2900197292332812,0.2899845478926522,0.2903953327990158,0.291745171926519,0.2924295006338189,0.2930885385485265,0.2936899568523684,0.2950980645494716,0.2954296160877513,0.299934796783308,0.3053331947187857,0.3093073170731707,0.3118096856414613,0.3145861672072826,0.3183030453389567,0.3216140932018369,0.3286179618427175,0.3318412062669337,0.3336358136721113,0.336762960031658,0.3411290322580645,0.3493150684931507,0.0,2.188688952848524,50.80113205502671,152.20638508211866,215.187819616396,fqhc1_100Compliance_baseline_low_initial_treat_cost,65 -100000,95737,47364,452.0195953497603,5181,53.16648735598567,4061,41.97958991821344,1509,15.46946321693807,77.26691653433518,79.62589861305669,63.2951211478972,65.03882039857946,77.07472457149217,79.4343076372018,63.22311425256895,64.96884274635406,0.1921919628430117,191.5909758548935,0.0720068953282506,69.97765222540409,211.43782,148.79350996272703,220852.7737447382,155419.02290935273,499.47121,335.53982066312943,521291.09957487695,350060.1341833663,460.74159,225.70566656938783,478469.1394131841,233637.44978967664,2611.30859,1219.7166282976298,2701641.758149932,1248176.6982323546,931.96003,421.3449598182653,963997.3573435558,430687.8433195028,1466.22478,622.8733054616707,1505151.508821041,628913.2028429175,0.37876,100000,0,961081,10038.762442942643,0,0.0,0,0.0,43442,453.3148103658983,0,0.0,41792,433.7194606056175,1231961,0,44285,0,0,0,0,0,84,0.8774037206095867,0,0.0,0,0.0,0,0.0,0.05181,0.1367884676312176,0.2912565141864505,0.01509,0.352377441946185,0.647622558053815,23.525835222474345,4.064989657845719,0.3156857916769268,0.2802265451859148,0.2063531149963063,0.197734548140852,11.153365340163138,6.046902544159521,16.30047964190689,11446.757016529114,46.83228729088121,13.963477767273766,14.631366895075576,9.368731823810592,8.868710804721267,0.5941886234917508,0.8075571177504394,0.6926677067082684,0.6145584725536993,0.1133250311332503,0.7554076539101497,0.917864476386037,0.8324022346368715,0.7210526315789474,0.155688622754491,0.5264078349073102,0.7250384024577573,0.6385281385281385,0.5833333333333334,0.1022012578616352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0044003285037869,0.0066059179283191,0.008705722209242,0.0111059129833411,0.0131856271573009,0.0155053774402365,0.017629464787007,0.0200157427189924,0.0222629380936783,0.0241304726661404,0.0261385569381134,0.0279291693231598,0.0298286090969017,0.0320647071567848,0.0339562961278452,0.035840400965133,0.0378993017730606,0.0399983368674899,0.0419258379437168,0.0563740589531277,0.0699482949906847,0.0832231526369913,0.0957957199671737,0.1083037061262382,0.1242843991068877,0.1358584303775968,0.1459806594530118,0.1549812341613113,0.1636236784200075,0.1753393055420803,0.1864612450974019,0.1973737219760238,0.2064385436627429,0.2155771752184308,0.2249597691582043,0.2335830072666294,0.2423962510701572,0.2503605782880765,0.2576530319874388,0.2632273142738138,0.2688585970865266,0.2741305428632307,0.2788013185495954,0.2827914662001263,0.2874030792746816,0.290759270158917,0.2941318737270876,0.2976128764708932,0.3008248294823666,0.2983235246476972,0.2958645994261752,0.2933933891532412,0.2913912074876676,0.2895422016574174,0.2861919808571341,0.2838783378552049,0.2840550144774941,0.2839535759526173,0.2854691689008043,0.2869778685606131,0.2882418060332898,0.2903719866563162,0.2916815742397137,0.2922040423484119,0.2932912844036697,0.2941428082582411,0.2971977329974811,0.3021326177529835,0.3068031836179658,0.3126799177518848,0.3162971647836282,0.3195396515942393,0.3244596131968145,0.328837688489276,0.3315684198140958,0.3315126687907753,0.3309957924263674,0.3336968375136314,0.3371603520857252,0.0,1.735694403356754,52.961590128273656,156.30325433017978,204.6687051732241,fqhc1_100Compliance_baseline_low_initial_treat_cost,66 -100000,95689,47311,451.713363082486,5116,52.116753231823935,3995,41.03919990803541,1485,15.017400119135951,77.288290147924,79.65890550516419,63.294707477804174,65.04459610701174,77.09729179870556,79.47468449170132,63.221877546805096,64.97735939893022,0.1909983492184466,184.22101346286013,0.0728299309990774,67.23670808152349,210.60952,148.2651836612385,220097.9422922175,154944.8564215725,500.87351,335.5152405472565,522740.6389449153,349933.0875654011,450.58556,220.45170877161485,466990.8035406369,227267.46688562463,2598.23923,1209.7839256742384,2669827.806748947,1218913.74468801,935.03952,416.9770275876194,959815.6214402908,418484.0851025916,1448.4698,622.5793119591381,1467680.0050162503,611459.778347015,0.37924,100000,0,957316,10004.451922373522,0,0.0,0,0.0,43647,455.4023973497477,0,0.0,40812,422.5668572145179,1236185,0,44362,0,0,0,0,0,71,0.7419870622537597,0,0.0,1,0.010450522003574,0,0.0,0.05116,0.13490138171079,0.2902658326817826,0.01485,0.3387846125255528,0.6612153874744471,23.865723185954632,4.265919125097196,0.3188986232790988,0.2700876095118898,0.2030037546933667,0.2080100125156445,11.448535819524244,6.074913779567549,15.875937474462502,11445.323828169814,45.36168849219848,13.151374745378543,14.218248036945209,8.957766067199811,9.034299642674926,0.5734668335419274,0.7970342910101946,0.6726844583987441,0.5856966707768188,0.1191335740072202,0.75,0.9202733485193622,0.8693009118541033,0.772972972972973,0.1176470588235294,0.5029772329246935,0.7125,0.6042328042328042,0.5303514376996805,0.1195652173913043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020154143752721,0.0042071755152522,0.0063725291228639,0.0086856701680245,0.01065820519079,0.0127686871875286,0.0150690238779796,0.0172918899607002,0.0194931973136799,0.0214910709717034,0.0235308586303728,0.0253946747141302,0.0276469741522896,0.0296286379271281,0.0316861094779837,0.0336802290131558,0.0357416495827379,0.0378883792366285,0.0395352707453558,0.0417522173700063,0.057100780213697,0.0706664572535469,0.0839342128740409,0.0961155954999421,0.1079217954943732,0.1230583526571582,0.1343237617874437,0.1452484204021182,0.1547485376364783,0.1647391084909206,0.1764356969533567,0.1877126449236103,0.1984663812915945,0.2076124567474048,0.2167184367633776,0.2255594882776526,0.2344410403202361,0.241332656857771,0.2488767048492225,0.2564561874906702,0.2627391858981793,0.2686806874399193,0.2746444626315102,0.2801820408751411,0.2839319838845138,0.289053528431191,0.2927661710270406,0.2955759205679544,0.2987489942640608,0.3016244366020328,0.2996887924879087,0.2972596889078709,0.2954782805046713,0.2926797499131643,0.2905313909019211,0.2872943411256472,0.2845025399186593,0.2843627539392349,0.2837969366323447,0.2840600913502712,0.284676316922904,0.2861509337224665,0.2872527288695579,0.2885898576512455,0.2898253316789157,0.2903517380300604,0.290990787317018,0.2948465836376689,0.3007322175732217,0.3030291078330835,0.3065964975954995,0.3094255791812123,0.313968015992004,0.3183534743202417,0.3236625704518155,0.3201070514312311,0.3251386598710838,0.3287073750991277,0.3283582089552239,0.3266666666666666,0.0,2.73425933509693,48.94560617670835,143.79777944160602,214.41230941456232,fqhc1_100Compliance_baseline_low_initial_treat_cost,67 -100000,95837,47502,451.6940221417616,5140,52.443210868453725,4038,41.61232091989524,1524,15.568100003130317,77.36488025655099,79.6798886986253,63.35773544642036,65.07127501941696,77.16775910163007,79.48403151902404,63.282830404773726,64.99888237185976,0.1971211549209215,195.85717960126203,0.0749050416466303,72.39264755719432,211.72822,148.90828643735347,220925.1124304809,155376.38535988546,501.52263,337.35217148360096,522807.91343635553,351506.16305143206,460.6584,226.02627383298696,477705.0199818441,233534.35313308824,2634.15157,1233.340708657415,2717662.218141219,1256394.8864196187,935.97478,426.1555045800143,966042.2905558395,434077.3131254258,1485.6417,640.6361539812732,1519966.5473668834,643287.036361598,0.3797,100000,0,962401,10042.05056502186,0,0.0,0,0.0,43681,455.2417124910003,0,0.0,41703,432.0982501539072,1235663,0,44363,0,0,0,0,0,76,0.7930131368886756,0,0.0,1,0.0104343833801141,0,0.0,0.0514,0.1353700289702396,0.2964980544747082,0.01524,0.3562768140272337,0.6437231859727662,23.616541120332965,4.138052518745373,0.3058444774640911,0.279098563645369,0.2038137691926696,0.2112431896978702,10.908401374616908,5.670069378605497,16.466650607691506,11504.082751860182,46.302299522015566,13.853942388002377,13.98421107104602,9.07237512693282,9.391770936034352,0.5760277365032194,0.8127772848269743,0.6866396761133603,0.5625759416767923,0.1160609613130129,0.7558609539207761,0.9465346534653464,0.8249258160237388,0.714975845410628,0.1648936170212765,0.4966083541592288,0.7041800643086816,0.6347438752783965,0.5113636363636364,0.1022556390977443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026131874810088,0.0049272071049109,0.0073260816624726,0.0094868565392272,0.0116838348196581,0.0138068667779904,0.0157903321168627,0.0179369908324315,0.0203119888779849,0.0224167050514355,0.0246074693559627,0.0267848896277823,0.0287470322825986,0.0308463446515505,0.0329131147372001,0.0350886248438613,0.0372979178949328,0.039268507485883,0.0411280358014308,0.0432281154414365,0.0580744078350386,0.0727799147085876,0.0858789021579719,0.0989394098498372,0.1109496277105515,0.1260585837680302,0.1365552895311142,0.1467145757810922,0.1564343549643158,0.1655795122264708,0.1770667469983216,0.1887398246543355,0.1988070922602233,0.2076976005067659,0.2159058440844853,0.225940219614955,0.2347921980996513,0.2423531261228889,0.2502094703231504,0.2571304457171599,0.2639163116145346,0.2693443522312101,0.2751899063168216,0.2794609976565115,0.2839357868297477,0.2876936517897793,0.2912137341629807,0.2950282557622706,0.2975138264330387,0.3011528136021477,0.2985491671144546,0.2953634016370928,0.2948492479986493,0.2918170010102467,0.2903149173731644,0.2878296518387077,0.2857708010254138,0.2852593042536076,0.286510228845858,0.287704010571051,0.2885669244050747,0.2896138086660464,0.2898243996479611,0.2905986725960356,0.29095395524891,0.2911339777569899,0.2903024810241305,0.2947566129284708,0.2971376646978646,0.300265336026296,0.3026675163874727,0.3064910230532243,0.3111896943672644,0.3140306706340123,0.3140620579081392,0.3187293339631554,0.3257517936192947,0.3277259829752736,0.3290516534572287,0.3279816513761467,0.0,1.9987928569646949,54.18388063571405,141.8949208419711,210.68625077461616,fqhc1_100Compliance_baseline_low_initial_treat_cost,68 -100000,95636,47033,448.8686268769083,5106,52.2083734158685,3970,40.91555481199549,1477,15.11982935296332,77.2563444549925,79.66685525150365,63.27473565930678,65.05577222616995,77.06965284470097,79.48111604702538,63.20498550838165,64.98826242185177,0.1866916102915325,185.73920447826708,0.069750150925131,67.50980431817766,211.15424,148.61050045376473,220789.49349617297,155391.7985421439,501.07165,337.0008532472538,523342.4128989084,351784.843832086,450.83237,221.4339130774009,467042.578108662,228269.56838389847,2572.46958,1203.198219960501,2656061.085783596,1224308.0220424326,948.47823,429.1988672027429,976684.9094483248,433710.1271516403,1436.55472,610.3092176692975,1472477.686226944,613355.5706047749,0.37734,100000,0,959792,10035.886068007863,0,0.0,0,0.0,43657,455.8743569367184,0,0.0,40971,424.0348822619098,1231840,0,44259,0,0,0,0,0,80,0.8365050817683718,0,0.0,1,0.0104563135221046,0,0.0,0.05106,0.1353156304658928,0.2892675283979631,0.01477,0.350459403712732,0.6495405962872679,23.799222758935773,4.070639697666104,0.3143576826196473,0.2770780856423174,0.2007556675062972,0.207808564231738,11.398781955998691,6.218387020238276,15.84749104854196,11458.342618187671,45.730735832693824,13.596588223429732,14.201798637434772,8.830529904500725,9.101819067328584,0.5861460957178841,0.8163636363636364,0.6794871794871795,0.5872020075282308,0.1369696969696969,0.7720033528918693,0.9083333333333332,0.8660968660968661,0.8,0.1686046511627907,0.5063017644940583,0.7451612903225806,0.6064659977703456,0.5205930807248764,0.1286370597243491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0047130129835906,0.0070936380519388,0.0090518423699369,0.0111811984942517,0.0136507645446858,0.0155867471845927,0.0175323879194082,0.0196694147249555,0.0217181961603868,0.0236824823510096,0.0257635548978501,0.0277752040931879,0.029806274679616,0.0317642319253773,0.0337220491913537,0.0358149852800928,0.0379777078334216,0.0402796999053099,0.042159940754957,0.0564334085778781,0.071015525152423,0.0848537655629973,0.0973106678595863,0.1094709519488467,0.1250912630810416,0.1359106875656631,0.1466266291847687,0.1568451426739339,0.1663072053221739,0.1774642117971714,0.1887362696882379,0.1990176539135927,0.2084785133565621,0.2172494018281455,0.2266441746387588,0.2349586222321628,0.2426079509600649,0.2502641955387884,0.2571428571428571,0.2633763463299827,0.2691315764794148,0.2736028086156182,0.2775177611367127,0.281894631795446,0.2862292451083266,0.290189984460374,0.2933239903172379,0.2970670608370935,0.300587575097379,0.2978058116340503,0.2953919082791313,0.2935854914967186,0.2913523765400819,0.2888180721635668,0.2864558536697741,0.2838952142336113,0.2840539207627815,0.2841076632950454,0.2837266769329943,0.2845838658747462,0.2861019769422764,0.2869395629744579,0.2884834154937432,0.2896118529884203,0.290407188116755,0.2920872309573228,0.2970145045581279,0.3007102569458951,0.3047379190933417,0.3082133020273626,0.3140600315955766,0.3197547087166009,0.3221218961625282,0.3267907915252683,0.32619574071919,0.3288241415192507,0.338728780102645,0.332089552238806,0.3276320790573926,0.0,2.313494185102382,52.041618807980896,147.9656997400239,202.00999058527876,fqhc1_100Compliance_baseline_low_initial_treat_cost,69 -100000,95694,47772,455.68165193220057,5106,52.21852989738124,4029,41.53865446109474,1487,15.183815077225322,77.32722884548278,79.7031520722716,63.32110870231941,65.07564355178155,77.14602481185817,79.52586032498499,63.254301901973626,65.0127242043414,0.1812040336246099,177.2917472866169,0.0668068003457875,62.91934744015748,211.6158,149.0678157188923,221137.7724831233,155775.33436585302,507.04566,339.9079932632369,529272.3786235292,354616.2036867326,464.98257,227.6177488237226,482428.7729638222,235229.99710567843,2599.52128,1199.9647806914115,2680445.283925847,1218348.8708872278,917.17129,414.2692106233629,943445.9109244047,417995.1265440573,1443.4942,597.1904806508969,1475127.8032060526,594589.3839321757,0.38199,100000,0,961890,10051.716931051058,0,0.0,0,0.0,44056,459.7780425105022,0,0.0,42121,436.6940456036951,1229580,0,44133,0,0,0,0,0,88,0.9091479089598092,0,0.0,0,0.0,0,0.0,0.05106,0.1336684206392837,0.2912260086173129,0.01487,0.3638909634055265,0.6361090365944735,23.34485940757516,4.140156994934631,0.3189377016629436,0.2670637875403326,0.2144452717795979,0.1995532390171258,11.42349255139218,6.204528754584757,15.667417242623609,11592.270121892889,45.94586376150519,13.193797417219216,14.60673241254629,9.428610187014932,8.716723744724746,0.5879870935716058,0.8187732342007435,0.7089494163424125,0.5729166666666666,0.1019900497512437,0.7870289219982471,0.9242761692650334,0.92797783933518,0.7514792899408284,0.1296296296296296,0.5093490304709142,0.7432216905901117,0.6233766233766234,0.5294964028776978,0.0950155763239875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021463138072772,0.0044795329934833,0.0069189408542152,0.0086941507460109,0.0109110137175745,0.0129208964190076,0.0152550323251687,0.0175870415573008,0.0199824105700202,0.0222527163060286,0.0245615834273407,0.0266830996764751,0.0287180753129467,0.0305203503348789,0.0323026750330251,0.0344264159918923,0.0363836025153583,0.0386412242270717,0.0406586091406461,0.0426416785665891,0.0576045289798305,0.072014652014652,0.0853717378534866,0.0978937844548247,0.1101220296794743,0.1248148775017983,0.1361243765255226,0.1465292345042752,0.1568145639469663,0.1653615944049943,0.177204282544538,0.1888387397040837,0.1995758564437194,0.2093234332454864,0.217967761456786,0.2279533925525552,0.2368658864480715,0.2444142087685958,0.2526715825297788,0.2602905984863231,0.2661158746138091,0.2728240275081284,0.2772033597539335,0.2815965319857256,0.2861635601967093,0.2910696906606876,0.2941809266486541,0.2978596227950808,0.3018350285995289,0.3058859207299385,0.3033579276174062,0.3016064974507675,0.2991289419247709,0.2967898243488794,0.2949408604544173,0.2929780228195114,0.290166500640387,0.2899422797063296,0.2898156337165793,0.2905350232541627,0.2909565055415852,0.2919802700100222,0.2924567618253803,0.292546804820563,0.2942035928143712,0.2941604322527015,0.2955674816139932,0.3001909651566853,0.3028770706190061,0.3064694716861753,0.3092281802883522,0.314464408756029,0.3184757360788499,0.3195860599604322,0.3240391861341371,0.3268074065337893,0.3294797687861271,0.3327971043635632,0.3415166393889798,0.3387894937190712,0.0,2.159363272799811,49.57418415663657,151.6952827578443,211.57955649123812,fqhc1_100Compliance_baseline_low_initial_treat_cost,70 -100000,95761,47564,452.74172157767777,5127,52.19243742233269,4116,42.23013544135922,1620,16.478524660352335,77.38146625236273,79.70542991364901,63.35451413110488,65.0683256359597,77.16883428484583,79.49923893960366,63.27455776643251,64.99412396019315,0.2126319675168986,206.1909740453558,0.0799563646723697,74.20167576654535,210.70324,148.27609330376876,220030.09575923395,154839.5205812061,502.20865,337.6237069080163,523627.34307285846,351756.8079990981,464.11283,227.5868724707053,479628.1576006934,233772.32418994707,2699.16376,1265.4606780999804,2773016.2696713693,1275848.234771964,946.1555,436.5998200685122,963826.7457524462,431814.111385877,1571.51712,673.4396032353783,1599514.290786437,666221.8782282334,0.38026,100000,0,957742,10001.367989056089,0,0.0,0,0.0,43657,455.10176376604255,0,0.0,42076,434.46705861467615,1237290,0,44401,0,0,0,0,0,83,0.8562984931235055,0,0.0,1,0.0104426645502866,0,0.0,0.05127,0.1348288013464471,0.3159742539496781,0.0162,0.3529631706861095,0.6470368293138904,23.522939891502467,4.137996343359329,0.3102526724975704,0.2657920310981535,0.2181729834791059,0.20578231292517,11.066521415242349,5.986932315768978,17.39354535187258,11521.517735381074,47.107326718069416,13.357060945201107,14.440295568691036,10.002003982095234,9.307966222082038,0.5840621963070942,0.8162705667276051,0.711824588880188,0.5579064587973274,0.1192443919716647,0.7626427406199021,0.9288793103448276,0.8773841961852861,0.7184466019417476,0.1798941798941798,0.5083044982698962,0.7333333333333333,0.6450549450549451,0.5101156069364162,0.1018237082066869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0045907819530584,0.007121047666386,0.0095052400682427,0.0119474920434787,0.013925931958385,0.0160632746249184,0.0182246757619975,0.0204842664487127,0.0226714683254215,0.0250071712494365,0.0269527122000266,0.0289601874499003,0.0311197125827405,0.033063900859847,0.0353096696237697,0.0373996191737726,0.0393663234943443,0.0412329364832013,0.0430862140774677,0.0574723439782926,0.0710922294539899,0.0848191810706494,0.0977335323675966,0.1106425596963786,0.1260921072116096,0.1361529240789655,0.1462347505801699,0.1558567796791215,0.1650565592666059,0.1777378235218121,0.1882746090454869,0.1987472950489881,0.2083219391605867,0.2173243249191223,0.2263943980322201,0.2350373925661346,0.2435220918327164,0.2514134556436048,0.2576127442553435,0.2635149999421075,0.2695405797780171,0.2759016742842257,0.2811541411042945,0.2859692793394451,0.2897413793103448,0.292736298500744,0.2963782210187763,0.3001941998964267,0.3030394896399009,0.3009251788499811,0.2982733279303287,0.2960498551050839,0.2931582444887463,0.291533581923254,0.2884167993143137,0.284371346415142,0.2848044271984544,0.2846406843782485,0.2851679237227835,0.2856529530351676,0.2865124331129997,0.2885072820598423,0.2892331698617922,0.2901132581471637,0.2899610894941634,0.2900155785299532,0.2935318723855903,0.2968412244613346,0.302125306154697,0.3061178281936331,0.3072955047899779,0.3098539011501399,0.3139377537212449,0.3113587414551924,0.3198023296858454,0.3233433734939759,0.3192975454001197,0.3148047722342733,0.3124762988244217,0.0,2.9382984927780247,52.664061547359005,147.402780542835,216.71957007818884,fqhc1_100Compliance_baseline_low_initial_treat_cost,71 -100000,95764,47643,452.7588655444635,5139,52.44141848711416,4038,41.66492627709787,1547,15.799256505576208,77.31912755708531,79.66738678435775,63.32066847763053,65.05761011585156,77.11668085825283,79.4669212582606,63.243929327642846,64.9840025198239,0.2024466988324746,200.46552609714752,0.0767391499876879,73.60759602765654,210.57256,148.1975752584614,219886.51267699763,154752.51440223117,500.1027,335.9056841689346,521680.1512050457,350223.30308414786,457.41793,224.4246812490232,474198.0493713713,231764.89234394184,2629.37921,1226.6813097832555,2713211.0918507995,1248757.7565329326,936.94014,420.4128168027577,966244.026983,426899.1476282913,1507.76562,646.1068823160502,1540466.2085961322,645865.8991453708,0.38132,100000,0,957148,9994.841485318077,0,0.0,0,0.0,43490,453.594252537488,0,0.0,41368,428.5952967712293,1238501,0,44468,0,0,0,0,0,90,0.9398103671525836,0,0.0,0,0.0,0,0.0,0.05139,0.134768698206231,0.3010313290523448,0.01547,0.3558911260253542,0.6441088739746458,23.68144582669224,4.150411269739172,0.3110450718177315,0.2677067855373947,0.2109955423476968,0.2102526002971768,11.089929056403738,5.882765207752407,16.572634404873323,11593.659502867176,46.08554874542931,13.145822854904376,14.198355586958275,9.448976337667482,9.292393965899183,0.5807330361565132,0.8048103607770583,0.7189490445859873,0.5692488262910798,0.1024734982332155,0.7362924281984334,0.9161147902869756,0.8761904761904762,0.694300518134715,0.1117021276595744,0.518864659051575,0.7245222929936306,0.6663124335812965,0.5326251896813353,0.0998487140695915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019848302261288,0.0045298391755084,0.0070106732681303,0.0093643990330902,0.0120206242182017,0.014471500005092,0.0167728778995666,0.0190744598292692,0.0211652113453712,0.0234127065375401,0.0253247618754677,0.0274976897012013,0.0296086800020568,0.0317286990203249,0.0337701196863392,0.0355205092961007,0.0375063407766286,0.0394473430352567,0.0416987052931274,0.043702870474524,0.0583188066930407,0.0716766391899242,0.0847046977754003,0.0972396025027604,0.1093165213540952,0.1250171828573241,0.1360656781009355,0.1466710648123517,0.1564221946948016,0.1653873367782328,0.1773834009971893,0.1888183028322204,0.1998672989906021,0.2099525444485752,0.2185670906130352,0.2281642100133999,0.2370885468406424,0.2452857785778578,0.2525621673154842,0.2587413388306706,0.2651246787525179,0.2709601160939986,0.2767454254752176,0.2809459248683216,0.285589232957654,0.2901661793552685,0.2939231501427784,0.2974569904111857,0.301885814269976,0.3054411531759861,0.302878075716152,0.2994428011281557,0.2972881547048542,0.2955068041475654,0.2936859307680879,0.2906674017580936,0.2880733363942939,0.2879807061294133,0.2882945881871365,0.2888198757763975,0.2900827684356391,0.2905657398819977,0.2912222618024851,0.2924811021156684,0.2935354457443486,0.293866500052067,0.2947167771487097,0.2989787607292776,0.3030568297209286,0.3063091482649842,0.310586532808755,0.3132097396080917,0.3171190371716918,0.320054632369679,0.3191608915527252,0.321775799461169,0.3273305084745763,0.3281783490660775,0.3313367819221345,0.3257661748013621,0.0,1.9087085134640505,50.08794575713591,152.08542017096624,211.93393459467805,fqhc1_100Compliance_baseline_low_initial_treat_cost,72 -100000,95664,47126,450.2425154708145,5198,52.99799297541395,4101,42.10570329486536,1646,16.735658136812177,77.34181859432726,79.72337580848179,63.3271521787835,65.08498097259664,77.12585326479555,79.5118687484669,63.24548151483792,65.00785499999238,0.2159653295317127,211.5070600148954,0.0816706639455802,77.12597260426435,211.58742,148.8324495381275,221177.68439538384,155578.32574231422,500.44419,335.000694904386,522267.9482354908,349326.42919412826,450.76056,220.86433353793907,465555.6531192507,226637.5173037411,2720.08255,1272.998501544902,2798539.3564977422,1285946.635977649,984.70408,445.926135954931,1012110.5640575348,448972.5632411045,1612.3818,692.8462490821324,1642804.733232982,689768.6366824581,0.37972,100000,0,961761,10053.531108881083,0,0.0,0,0.0,43477,453.6711824719853,0,0.0,40906,421.9978257233651,1238519,0,44453,0,0,0,0,0,83,0.8571667502926911,0,0.0,0,0.0,0,0.0,0.05198,0.136890340250711,0.3166602539438245,0.01646,0.3555637435519528,0.6444362564480471,23.563744672212877,4.241186161509002,0.3104120946110704,0.2499390392587173,0.2165325530358449,0.2231163130943672,11.3722570887862,6.04615322449517,17.679803214938378,11500.572871293942,46.74545243887637,12.447077990877789,14.396308466631709,9.848222927483542,10.053843053883336,0.5683979517190929,0.7931707317073171,0.7219167321288296,0.5630630630630631,0.1081967213114754,0.729957805907173,0.8966346153846154,0.8657142857142858,0.6964285714285714,0.1692307692307692,0.5027434842249657,0.722495894909688,0.66738894907909,0.5180722891566265,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265607436886,0.0041152680499102,0.0065237462333735,0.0087546464625947,0.0108695652173913,0.0131852244033558,0.0152177679927427,0.0171799556975592,0.0192765666043193,0.0215789042666448,0.0236754949911306,0.0254501011636386,0.0274894291210995,0.0298421334652322,0.0316357706122786,0.0336784617135055,0.0355851234702231,0.0376165458811803,0.0394070221066319,0.0412731177414983,0.0554818490467485,0.0692110360714098,0.0836219745156076,0.0963895991834243,0.1089930903528667,0.124805635769365,0.1358007661209028,0.1468675147708522,0.1567491906100075,0.1658533446304658,0.1774474959612277,0.1884998539767011,0.1991625428245146,0.2084996118649071,0.2179891968008449,0.2275818528199902,0.2361949836471809,0.2444854388589554,0.2526356404407676,0.2591247981492722,0.2651607157315197,0.2716407437726582,0.2779302188054405,0.2832496675332766,0.2878360982244784,0.2915331920555911,0.294560648518815,0.2975627130717956,0.3011188521405817,0.3049396557409483,0.3021387135415965,0.2995214258210023,0.2979364743996056,0.2949025270758122,0.2915398660986001,0.2873072033573802,0.2838528076916994,0.2833836164491375,0.2829489783725654,0.2827438752783964,0.2833022039596563,0.2837286331105459,0.283941071988298,0.2845856859113124,0.2850253137221969,0.2871545054315263,0.287149565959869,0.2911865364689629,0.2946776743369049,0.2985612936467045,0.3035633124261431,0.3064192047377326,0.3115029910269192,0.3138024765931743,0.3154038764722248,0.3169005778983371,0.3164133738601823,0.3159154367770243,0.3152263374485596,0.3264683447749809,0.0,2.932064712559144,50.70280531240754,153.34134760246053,211.95674952515,fqhc1_100Compliance_baseline_low_initial_treat_cost,73 -100000,95680,47553,453.8043478260869,5053,51.64088628762541,3968,40.89673913043478,1601,16.35660535117057,77.38307130315455,79.75963854193651,63.34642469116329,65.09750411054137,77.1748926703402,79.55334629423206,63.26797415242066,65.02190485593775,0.2081786328143522,206.29224770445376,0.0784505387426293,75.59925460361683,211.30054,148.66317565006182,220840.8653846154,155375.39261085054,502.99435,337.7863770249629,525105.560200669,352447.9922343626,451.1771,220.67025235957252,467975.0209030101,227922.44995417347,2623.5179,1219.4660032435877,2705947.867892977,1239242.0983852162,954.59523,436.1986388094385,980972.0735785952,439331.1309236063,1565.62242,669.9249197065863,1601596.864548495,671744.7864475605,0.37995,100000,0,960457,10038.221153846152,0,0.0,0,0.0,43709,456.1977424749164,0,0.0,40898,423.8607859531773,1236437,0,44399,0,0,0,0,0,81,0.846571906354515,0,0.0,3,0.0313545150501672,0,0.0,0.05053,0.1329911830504013,0.3168414803087275,0.01601,0.3481312843862644,0.6518687156137355,23.567628336454423,4.17660083433938,0.3031754032258064,0.2560483870967742,0.2169858870967742,0.2237903225806451,11.216130592346063,5.868590728263033,17.064883920211155,11492.94812755088,45.08646444490478,12.40437491164085,13.499370094209972,9.561889576279476,9.620829862774478,0.5700604838709677,0.7992125984251969,0.7015793848711555,0.5900116144018583,0.1103603603603603,0.7226596675415573,0.8909512761020881,0.8484848484848485,0.6984126984126984,0.155440414507772,0.5083185840707964,0.7316239316239316,0.6460481099656358,0.5595238095238095,0.097841726618705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611694319872,0.0047210909164589,0.0069066236650743,0.0093728421138145,0.0114178231915001,0.0134470718771949,0.015647617688434,0.0176280251916422,0.0198603743113264,0.0218150176588012,0.0241344310364272,0.0261541937073851,0.0281694486439788,0.0302209404130401,0.0322174653118068,0.0342913837472483,0.0362148443569689,0.0381413982065758,0.0402749469656004,0.0422893349173596,0.0571183838046191,0.0710599319549856,0.0838954689942405,0.097209370794078,0.1089977437108576,0.1245573046061464,0.1356702954239498,0.1458426392699891,0.1553556565721237,0.1644093948225612,0.1765022325030932,0.1872087365518732,0.1975065759440012,0.2070458097871828,0.2165911291032297,0.2258543504277292,0.2353972614979115,0.2441065495297629,0.251757304595678,0.2581018518518518,0.2636482529541798,0.269564810262893,0.2745543909516196,0.279341202437503,0.2841079004631599,0.2879165330636608,0.291253020193042,0.2950686117263678,0.299130569988468,0.3028346602236569,0.3005154153601851,0.2975792816198606,0.2961029825548678,0.2931860834416053,0.2911073203293036,0.2890085844133984,0.2868730630573651,0.2865756746571414,0.2859239789038898,0.2860579921940439,0.2862787490215082,0.288293420819991,0.2887694966785364,0.2891130017548926,0.2915295464301044,0.2918766638236282,0.2916831236246685,0.2975142332700743,0.3020010440229685,0.3044722298436091,0.306974437581714,0.3109388909252762,0.3149987583809287,0.3192987713515133,0.32565213383722,0.3332947173308619,0.3378778897451097,0.3410672853828306,0.3522577237919197,0.3538011695906433,0.0,2.092793198253905,49.704229923781696,143.58278796908417,210.4645300174782,fqhc1_100Compliance_baseline_low_initial_treat_cost,74 -100000,95702,47774,455.1837997116048,5073,51.87979352573614,4034,41.68146956176464,1569,16.10206683245909,77.3960056150407,79.78022594366067,63.35197710932333,65.11317799458315,77.19928407642291,79.58457255104535,63.278490480547305,65.04189845127713,0.196721538617794,195.6533926153128,0.073486628776024,71.27954330601938,211.10342,148.54841719560952,220583.89584334704,155219.54629747494,505.97377,338.8463825078294,528158.7323148941,353526.5236273321,459.45227,224.8944091070908,476926.2711333096,232608.62746580807,2633.24457,1223.8729569346117,2722039.309523312,1249880.5930671135,924.34412,415.2192299891655,953883.4716097888,422117.5208290418,1525.4078,641.1066019009673,1567285.67846022,647698.361561718,0.38062,100000,0,959561,10026.54072015214,0,0.0,0,0.0,43913,458.30808133581326,0,0.0,41555,431.0254749117051,1240828,0,44457,0,0,0,0,0,92,0.9613174228333786,0,0.0,1,0.0104491024221019,0,0.0,0.05073,0.1332825390152908,0.309284447072738,0.01569,0.3527514231499051,0.6472485768500948,23.64097341526035,4.040090497950852,0.3212692117005453,0.2595438770451165,0.2129400099157164,0.2062469013386217,11.133905715433444,6.0414430113159705,16.54136466603676,11537.20773567076,45.92349689514754,12.835247088896582,14.534600516076756,9.521947096032346,9.031702194141864,0.5746157659890927,0.8051575931232091,0.6867283950617284,0.5727590221187427,0.1117788461538461,0.7495667244367418,0.907865168539326,0.8724035608308606,0.7336683417085427,0.1213872832369942,0.5045138888888889,0.729235880398671,0.62148070907195,0.5242424242424243,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096325860793,0.004603435338971,0.0070745620267554,0.0093370586741173,0.0118507517343804,0.0141734207632468,0.0162729284133894,0.0183973292223504,0.0204972499948884,0.0225593154414624,0.0244617592782448,0.0268796780188301,0.0290847757448602,0.0309329322936516,0.0329866485069852,0.0349703842297315,0.0368958587972074,0.0389038820842848,0.0409863344218649,0.0431887109045241,0.0578835227272727,0.0717350355797404,0.0848821110924651,0.0976166195317346,0.1101027667984189,0.1251797648253108,0.1360342870479403,0.1458453088075621,0.1560630661425397,0.1651705758072992,0.1770356569779338,0.1885410807770518,0.1994653394333902,0.2089558764058452,0.2181470365117583,0.2280284246878597,0.2362452329445349,0.2439123011950759,0.2516680071138096,0.258827025729537,0.2645334072124486,0.2718530448381299,0.2779489722428836,0.2821389709311363,0.2863564764328123,0.2904192720170018,0.2934114567100916,0.2972630511910796,0.300626547029703,0.3041027864265164,0.301440729075923,0.2983883114926947,0.2961658787054054,0.2932717222318189,0.2907293393322283,0.2865400747349958,0.2835001970831691,0.2834867033883068,0.2841426919676256,0.2842883023693652,0.2852110707296617,0.2861321606659076,0.2863704381079059,0.2875844501052165,0.2888050434616487,0.2890119559029036,0.2911878476437868,0.2955077576249493,0.2999860617464632,0.3025074037512339,0.3062170514451918,0.3095175183638958,0.3128880526810912,0.3158451768974902,0.3181134911687335,0.3227299703264095,0.3192816922842794,0.3214141414141414,0.3287596048298573,0.3351206434316354,0.0,1.783991394491393,50.54644713689116,150.46377956845495,210.45321930200055,fqhc1_100Compliance_baseline_low_initial_treat_cost,75 -100000,95825,47529,452.7002348030263,5173,52.76284894338638,4071,41.94103835116097,1576,16.050091312288025,77.38566316619061,79.70521814585855,63.36611244363343,65.08363952079044,77.18458660417896,79.50941084604924,63.28927299079555,65.01136711499713,0.2010765620116501,195.8072998093172,0.0768394528378735,72.27240579331351,212.76728,149.64594144146275,222037.1093138534,156165.63677689823,505.93112,339.5260305184373,527429.8356378815,353774.6418141794,456.61205,224.2929745601469,473121.4088181581,231474.91757414327,2635.1641,1244.4532744364344,2714235.6378815547,1262932.92401402,943.09831,425.0047195251151,970018.8677276286,429352.4545005119,1534.29448,657.9901648781652,1563706.986694495,654217.5645891669,0.3802,100000,0,967124,10092.595877902426,0,0.0,0,0.0,44089,459.52517610226977,0,0.0,41362,428.2911557526741,1231160,0,44160,0,0,0,0,0,90,0.9392121054004696,0,0.0,0,0.0,0,0.0,0.05173,0.1360599684376643,0.3046588053353953,0.01576,0.3543015726179463,0.6456984273820536,23.351169361985995,4.181083253002146,0.3149103414394498,0.2643085237042495,0.2156718251043969,0.2051093097519037,11.503057895384444,6.234158557866564,16.89974940434342,11457.618404097338,46.68415840149525,13.227001164771576,14.54583396614257,9.75466354537667,9.15665972520443,0.576271186440678,0.7936802973977695,0.6926677067082684,0.5854214123006833,0.1077844311377245,0.7390243902439024,0.8993576017130621,0.8528528528528528,0.7468354430379747,0.1450777202072538,0.5058078141499472,0.7126436781609196,0.6364594309799789,0.5257410296411856,0.0965732087227414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864351331368,0.0041564023803006,0.0062721377028549,0.0087883282872411,0.0111375564506285,0.0132573057733428,0.0155337430816744,0.0177160934789264,0.0197046348817006,0.0216132135328189,0.0238370960964961,0.0256186556364121,0.0277797761585184,0.0297269199493571,0.0319450602707802,0.0343331680713931,0.0363894090989042,0.038546449560017,0.0406309056548917,0.0425286160249739,0.0570895094245152,0.0710850930378423,0.0840425977946417,0.0967480956133438,0.1085081057166633,0.123593962885901,0.1354309020604905,0.1460578619560827,0.1560336643590865,0.1641709511568123,0.1755482184915522,0.1867039721721094,0.1980870905755013,0.2072266797663883,0.2162399639746504,0.2265519605458124,0.2350411639539676,0.2435632442147832,0.251418925808023,0.257979696359978,0.2637068178930712,0.2695278769632896,0.275197092007742,0.2791445128143855,0.283019781603351,0.2870858040833364,0.2923021286678056,0.2957221623677039,0.2993329806861138,0.3010349679778014,0.2988380683726241,0.2967859741614838,0.2944624033731553,0.2923866947465597,0.2905110788123275,0.2871273505580186,0.2841670882873767,0.284105439165929,0.285153315577409,0.2863664734730272,0.2870486260297771,0.2876828450893033,0.2880311792808649,0.2871577064937968,0.2874852562405218,0.2883962609013525,0.2894361780970298,0.2938443670150987,0.2975572090411343,0.3009235403702089,0.3045334786953756,0.3058021559923906,0.3094760591626974,0.310991754293063,0.3104838709677419,0.3129500649273993,0.3145332927941623,0.3149779735682819,0.3221075502444324,0.321791494166353,0.0,2.1057326805287464,53.55634164258667,148.89495709569917,208.5678828550901,fqhc1_100Compliance_baseline_low_initial_treat_cost,76 -100000,95751,47358,451.0344539482616,5184,52.69918852022433,4088,41.95256446407871,1529,15.529863917870308,77.37657405990127,79.72254379716767,63.3458979718325,65.07985308780275,77.17404912164254,79.52736965700161,63.26944646395982,65.0094697850324,0.2025249382587333,195.17414016605983,0.076451507872683,70.38330277035243,211.54782,148.7931940482814,220935.36359933575,155395.9687609335,501.71815,336.3692742112071,523260.03905964433,350573.7216438544,452.23251,221.72655872689376,468020.3862100657,228164.98872592612,2645.02324,1234.9156726753667,2716213.8254430764,1243532.0076817663,949.65555,432.8261441833594,973030.2242274232,433266.2470192046,1488.84932,635.3526639412333,1513400.5075665007,625131.8040778144,0.38001,100000,0,961581,10042.516527242537,0,0.0,0,0.0,43689,455.5252686656014,0,0.0,41120,425.1234974047268,1237471,0,44382,0,0,0,0,0,75,0.7832816367453082,0,0.0,0,0.0,0,0.0,0.05184,0.13641746269835,0.294945987654321,0.01529,0.3510068353962682,0.6489931646037318,23.366990600416194,4.20461805962694,0.309197651663405,0.2700587084148728,0.2213796477495107,0.1993639921722113,11.50108617971456,6.141603914099504,16.247310228724455,11549.455870050244,46.46594205702136,13.4362673503356,14.2210430189821,9.951135013661249,8.857496674042402,0.5878180039138943,0.8197463768115942,0.7009493670886076,0.5734806629834254,0.1141104294478527,0.7531592249368155,0.9225512528473804,0.8513119533527697,0.762114537444934,0.1348314606741573,0.5201654601861427,0.7518796992481203,0.6449511400651465,0.5103244837758112,0.108320251177394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155980958168,0.0042271082322172,0.006382028856105,0.0087671177211589,0.0109327963550565,0.0131057728536369,0.0154072049841441,0.0177032711234532,0.0199450004600333,0.0221002958307315,0.0242292554936044,0.0263598197513883,0.0286210689722527,0.0307929969104016,0.0328271365493335,0.0347190639599785,0.0368015573872343,0.0388505627885263,0.0408258740604435,0.0426786086232035,0.057365328211926,0.0717976070950468,0.0852814760457071,0.0982753728284516,0.1105080101180438,0.1259830866807611,0.136636413758005,0.1473627086902393,0.1572061729054306,0.1670312701068073,0.1786729857819905,0.1896146896200997,0.200339429280127,0.2092829866619981,0.2183409478725161,0.2273432650527622,0.236185393195699,0.2442358977821287,0.2504907467293007,0.2563820775236394,0.2637202525497814,0.2693804565057326,0.2745582412386975,0.2795265224052087,0.283312698759498,0.2880715191665948,0.2916036828363336,0.2958613685413228,0.3009224567840624,0.3039051695752387,0.3008686779178582,0.2985799547231941,0.2970612600216228,0.2952069402813004,0.2925489383125537,0.2897809661909486,0.2880379906601035,0.2880826643559014,0.2880804848154705,0.2882687522218272,0.2890130214658023,0.2900171269956887,0.2917110234412507,0.2926184339169851,0.2942598042734429,0.2976576483100309,0.2971088435374149,0.3002933649584919,0.3052201828459767,0.3093931377581237,0.312701073904572,0.3156560321149376,0.318875,0.3240754716981132,0.3273538432939864,0.3288685230877687,0.3324746173662676,0.3280381254964257,0.3299972951041385,0.3407631280695126,0.0,2.915027914274136,50.79825099615462,147.0028311590914,216.5506787584268,fqhc1_100Compliance_baseline_low_initial_treat_cost,77 -100000,95751,47759,455.14929347996366,5135,52.45898215162244,4098,42.2136583429938,1505,15.394095100834456,77.3313489084019,79.69830279011926,63.31030609897547,65.06356183050728,77.13818092540306,79.50720134380302,63.23824112860283,64.99455623102824,0.1931679829988439,191.1014463162388,0.0720649703726366,69.00559947904128,210.50524,148.14784866024735,219846.51857421856,154721.98583852634,504.54636,338.8862329903806,526347.0982026297,353335.7176325893,459.9486,225.22446632689608,476157.053190045,232050.601490512,2661.4871,1235.38543648345,2742478.867061441,1253093.206842174,963.41987,431.3666049984612,990540.6836482123,434926.2259433196,1465.7604,621.1909623487077,1500080.291589644,621250.1477218003,0.38214,100000,0,956842,9993.023571555388,0,0.0,0,0.0,43781,456.6323067122014,0,0.0,41705,431.4733005399421,1236607,0,44389,0,0,0,0,0,94,0.971269229564182,0,0.0,0,0.0,0,0.0,0.05135,0.1343748364473753,0.2930866601752677,0.01505,0.3527110117384013,0.6472889882615986,23.67206327354579,4.138727251813314,0.3101512933138116,0.2733040507564666,0.2108345534407028,0.205710102489019,11.298582875698116,6.050218440650441,16.084596149359662,11597.097474097509,46.72944120359841,13.7225819717994,14.38550766541274,9.485665943595771,9.135685622790506,0.5758906783796974,0.8151785714285714,0.6774193548387096,0.5659722222222222,0.1150652431791221,0.7445008460236887,0.9071274298056156,0.8599439775910365,0.7074468085106383,0.1149425287356321,0.5075445816186557,0.7503805175038052,0.6061269146608315,0.5266272189349113,0.1150971599402092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046626612225,0.0045833882596306,0.0067292565338746,0.0090835196098354,0.0109157866894545,0.0131885814382173,0.0153970082899124,0.0176542062754627,0.0197813212777056,0.0218878669316016,0.0238246636035444,0.0260029794010376,0.0279813114889062,0.0298258270637947,0.0317912512128155,0.0341126472200105,0.0362523686744742,0.0383418076164781,0.0405089344185611,0.0426613339999166,0.0578822104845612,0.0719278419554662,0.0849793871749415,0.0985919936066625,0.110610885013601,0.1258130360750055,0.1371802081896414,0.1471509212908723,0.1571253005610473,0.1662553648068669,0.178080715555795,0.1898192764561293,0.201125589192602,0.2110833825879468,0.219769694834647,0.2296599272856256,0.2388406314896277,0.246857310059984,0.2542803653486129,0.2609462710505212,0.2665146745671697,0.2724771716225708,0.2772761742262666,0.2824012387914581,0.2873665264028409,0.2910810277654485,0.2951997196916608,0.2987009682303396,0.3027711920401104,0.3051254319554723,0.3024122984142369,0.2992868234097811,0.2967800899887514,0.2940777805015213,0.2922589433783463,0.2894985808893093,0.2862230907429003,0.2861463015937883,0.2866724545903342,0.2879272365522632,0.2875491676453591,0.2889417594085492,0.2905605334444676,0.2914405196191832,0.2934322287354947,0.2955011020355244,0.2953825260298777,0.298442094725646,0.3025389599019436,0.30698522128452,0.3119727891156462,0.3196397535155633,0.3241387918122815,0.3295437434121367,0.3321939953810623,0.3332561102745279,0.3352652697280428,0.3393797542422469,0.3430015965939329,0.3421346225362588,0.0,2.2252314005069995,51.54611183080375,150.6158278006011,215.1897577354063,fqhc1_100Compliance_baseline_low_initial_treat_cost,78 -100000,95488,47662,456.18297587131366,5064,51.71330428954423,4016,41.4502345844504,1525,15.593582439678285,77.22623088476638,79.71232013029656,63.24095407219974,65.07567882977659,77.03352127761154,79.52239995039385,63.16875220058724,65.00660427678442,0.1927096071548391,189.92017990271395,0.0722018716125063,69.07455299217702,211.56784,148.751130183764,221564.845844504,155779.9201823936,501.7711,336.1966129762563,524860.5688672923,351482.24445292784,454.53298,222.2331003394736,471505.94839142094,229275.0257188225,2613.29348,1222.334857204272,2699818.563589142,1244439.9932801763,974.97354,443.1275936721193,1005491.1926105898,448514.455923382,1490.1355,629.6215425939998,1525680.169235925,631859.705343914,0.38063,100000,0,961672,10071.129356568365,0,0.0,0,0.0,43685,456.8427446380697,0,0.0,41243,427.5092158176944,1229799,0,44232,0,0,0,0,0,84,0.8692191689008043,0,0.0,1,0.0104725201072386,0,0.0,0.05064,0.1330425872894937,0.3011453396524486,0.01525,0.3517045454545454,0.6482954545454546,23.44880605752572,4.173541676456775,0.3182270916334661,0.2634462151394422,0.2084163346613546,0.209910358565737,11.723885182251813,6.422312054018485,16.176943991023187,11507.074684075753,46.03867444242731,12.895799981225316,14.615912238183764,9.24362478034864,9.28333744266959,0.5794322709163346,0.8015122873345936,0.7034428794992176,0.5663082437275986,0.1257413997627521,0.7542955326460481,0.9311926605504588,0.853185595567867,0.7374301675977654,0.1702127659574468,0.5080645161290323,0.7106109324758842,0.6444929116684842,0.5197568389057751,0.1129770992366412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205147692151,0.0044326331057847,0.0066907628891099,0.008622267412303,0.0107203942010099,0.0129949548998624,0.0152756660782252,0.0176772321337338,0.0198266954484536,0.0217005973299453,0.0238239430114038,0.0257456893449449,0.0277714850587968,0.0298695271002011,0.0323400562076376,0.0343942186238171,0.036234063961992,0.0381073158562192,0.0400470897100649,0.0419764430707543,0.0566574906582652,0.0705847793701084,0.0829968454258675,0.0953861394486131,0.1079878686688294,0.1241852232620746,0.1354865459648526,0.1462956640491635,0.1561562848084997,0.1649396994647118,0.1769342056962708,0.1881256846603542,0.198229432415342,0.2077651598193537,0.2163471085320918,0.2259186417325022,0.2344545240998221,0.2431634240367924,0.2512765110593051,0.2581118913213089,0.2643253020429933,0.2699936695505381,0.2759925506802842,0.2805084643942762,0.2847047930017788,0.2890484961615961,0.2921527507440383,0.2966944575667428,0.3001194556975174,0.3041563628188682,0.3021309904584531,0.2979411967224403,0.2961694571283612,0.2939426756190889,0.292407396396932,0.2897817825180826,0.2872173541016337,0.2869093598487961,0.2869874612976616,0.2876107775871926,0.2885576797049076,0.2900760343635825,0.2910759837745159,0.2904909549195869,0.2923669970789637,0.2948428456487321,0.2954667876279307,0.2997402272229351,0.3047063345096258,0.3067593726543673,0.3094038051128366,0.3137037623344414,0.3193293024995325,0.3217933313307299,0.3267991901343641,0.3303198887343532,0.3292941532868828,0.334211059347782,0.3360723089564503,0.3421650264950794,0.0,2.343937688867541,50.58324433512083,152.58398875668513,206.2665892866178,fqhc1_100Compliance_baseline_low_initial_treat_cost,79 -100000,95708,47556,454.0477285075438,5144,52.50344798762904,4093,42.18038199523551,1562,15.93388222510135,77.36399481233721,79.75005070624101,63.33329461681414,65.09796624616786,77.15766414546022,79.54625336180183,63.25564498036096,65.02399862082596,0.2063306668769939,203.79734443918096,0.077649636453188,73.9676253418935,213.015,149.74982899409346,222567.6014544239,156465.32055219362,506.06966,339.50364839303217,528176.0458895807,354140.42545349634,458.305,224.34592765167616,475704.8000167175,231970.23191631396,2659.59386,1244.2095454329408,2742588.0177205666,1263731.1671259883,962.46533,439.7052771245334,991086.6803193046,444964.0753062408,1516.53534,653.3260758765521,1548396.0588456555,650609.4927056904,0.37899,100000,0,968250,10116.709157019268,0,0.0,0,0.0,44060,459.7421323191374,0,0.0,41573,431.1656287875622,1227834,0,44124,0,0,0,0,0,77,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05144,0.1357291749122668,0.3036547433903577,0.01562,0.3567316620241411,0.6432683379758589,23.57997826391753,4.169671408822845,0.3185927192768141,0.2619105790373809,0.2110921084778891,0.2084045932079159,11.187093679158233,6.006123492261422,16.82451538592635,11425.72331826224,46.86698458040776,13.133007163814018,14.794622743289295,9.59079791323562,9.348556760068826,0.5778157830442219,0.8171641791044776,0.6878834355828221,0.5775462962962963,0.1090269636576787,0.7431874483897605,0.9465478841870824,0.8595988538681948,0.7303921568627451,0.124401913875598,0.5083275503122832,0.723916532905297,0.625130890052356,0.5303030303030303,0.1040372670807453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0042796150374719,0.0065276536993421,0.0087708600117893,0.0108264311443049,0.0127554659005236,0.0149944918193316,0.0171269251194901,0.019279351150113,0.0213395590780163,0.023627618881585,0.025778489852929,0.0280089282959092,0.0301800084491659,0.0320449971618762,0.0337479450355159,0.0358204626205496,0.0378353136512219,0.0399060300828473,0.0418837257762033,0.0565093886417277,0.0700432275148889,0.0835711288292068,0.0966127183434815,0.1083260427317093,0.1233519765708425,0.1349316593678093,0.1457278413684524,0.1550967686838818,0.1641141607810775,0.175519208006026,0.1861662430371532,0.1964922581767571,0.2061933452155752,0.2155639883407578,0.2249147588894301,0.233751603368468,0.2424242424242424,0.2501474792394609,0.2575036058517823,0.2632321480196589,0.2690072837384401,0.2746778068379507,0.2798226695422957,0.2843890770893284,0.288167516064702,0.291964140586904,0.2950067956355507,0.2985142118863049,0.3017320803390455,0.2985012489592006,0.2957901092266315,0.2926702526578936,0.290849626118403,0.2892309969654356,0.2855989027735446,0.2828115900971087,0.2830600736660256,0.2829977438889925,0.2835078998757322,0.2838951450518308,0.2847200377477194,0.2855535647318638,0.2876623810690969,0.2890935182970581,0.2905322828093715,0.2914807129253248,0.2947006409254338,0.298402600580237,0.3020401720531944,0.3070250734131466,0.3085263157894737,0.3096016086464748,0.3115627616655249,0.3181689742865216,0.325062329336341,0.3232805046930297,0.3238948869423508,0.3243019076582803,0.3294618660472319,0.0,2.228467183819948,52.81768242583885,149.9615612772887,212.3880290549465,fqhc1_100Compliance_baseline_low_initial_treat_cost,80 -100000,95667,47370,451.7858822791558,4995,50.96846352451733,3974,40.9441082086822,1499,15.261270866652032,77.31725194233033,79.72223523353433,63.30264576078415,65.08368761591308,77.1206972612601,79.53127959774427,63.22877051032406,65.01474350565957,0.196554681070225,190.95563579006125,0.073875250460091,68.94411025351133,210.83216,148.42953620336826,220381.2809014603,155152.28469939294,503.39497,337.5718181415384,525583.1686997607,352249.4675714076,460.87435,225.94412337862536,477805.0424911411,233267.44461726584,2587.25573,1213.8452045819556,2666553.8900561323,1230938.1339249224,909.63852,413.8381423219018,936323.2776192416,418066.8488840468,1465.00814,624.6163851935202,1492661.8792269016,618711.8560182849,0.37996,100000,0,958328,10017.330950066376,0,0.0,0,0.0,43773,456.9078156522103,0,0.0,41791,432.9392580513656,1236568,0,44365,0,0,0,0,0,83,0.8675927958439169,0,0.0,1,0.0104529252511315,0,0.0,0.04995,0.1314612064427834,0.3001001001001001,0.01499,0.3434208006129094,0.6565791993870906,23.538648390548968,4.1933535772459445,0.3193256165072974,0.2697533970810267,0.2028183190739808,0.208102667337695,11.268936840713284,5.802687980934774,16.02728509126932,11458.304789699509,45.46196001531077,13.057715469260971,14.46853176283619,8.871542142805097,9.064170640408516,0.5805234021137393,0.808768656716418,0.7013396375098503,0.5732009925558312,0.1064087061668681,0.7589958158995815,0.9328859060402684,0.8402061855670103,0.7527472527472527,0.1516853932584269,0.5037783375314862,0.72,0.6401816118047673,0.5208333333333334,0.0939907550077041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022085566373205,0.0043705318663489,0.0065965068958868,0.008830493145952,0.0108663580403927,0.0130793521442395,0.0150776324648562,0.0177039065053939,0.020011867978965,0.0220988248793631,0.0239047912178106,0.0262438603341622,0.0284208467580059,0.0303420830154442,0.0325225923057061,0.0346814828610154,0.0366028112949371,0.0384239931875298,0.0404615256564983,0.0424675812033523,0.0570965888314266,0.0716701747772088,0.0846665826824557,0.0970012626262626,0.1092543359918977,0.1249272386677532,0.1361629412638774,0.1462271686458278,0.1556745433753353,0.1654508003261382,0.1766144234394355,0.1873653673374395,0.197991032561379,0.2080126977176947,0.2175718392387078,0.2267916708223899,0.235233079686698,0.2441742768455621,0.2529743339646823,0.2592910528906134,0.2644861326363026,0.2700939823257118,0.2747902838415031,0.2795711804515781,0.2831171670067036,0.286543438077634,0.2901890143981186,0.294015225652301,0.2969184415047006,0.3004608901764551,0.2983919719501874,0.295206194058536,0.2923783571187774,0.2899799685838221,0.2867066437095529,0.283973858609976,0.2810989288761098,0.282897430438414,0.283754807528675,0.2839396470525511,0.2843276338385724,0.2868865362666771,0.2879110776816681,0.2879203155291129,0.2891450528338136,0.2891027308192457,0.2902695035460993,0.2930527763881941,0.2972434755266743,0.3002052415535207,0.3016341352700862,0.3076353637901861,0.3091684434968017,0.3148021569074201,0.3200112317484088,0.3200234879624192,0.322964318389753,0.322866344605475,0.3238833912810912,0.3304769001490313,0.0,2.312577197446152,51.78456735673596,143.71745581901243,205.30691532817175,fqhc1_100Compliance_baseline_low_initial_treat_cost,81 -100000,95864,47684,454.9152966702829,5139,52.574480514061584,4034,41.57973796211299,1558,15.94967871150797,77.4717338221379,79.75720669065917,63.40399372213196,65.0902245768368,77.27911911226454,79.56668680267296,63.3329311891474,65.02235028814951,0.1926147098733679,190.51988798621267,0.0710625329845626,67.8742886872925,212.06174,149.16191285093353,221211.02812317447,155597.42223455472,502.57987,337.0496503895964,523761.1303513311,351089.1996887221,459.79676,224.4256782430149,476364.9753817909,231667.76342137935,2683.99441,1232.272369623156,2767289.378703163,1252933.5825994709,974.09951,427.6434479783856,1003144.6006843027,433111.989879814,1532.02012,637.8893169102338,1568892.013686055,639396.9044007414,0.38161,100000,0,963917,10055.046732871568,0,0.0,0,0.0,43595,454.2372527747642,0,0.0,41730,432.0287073353918,1238042,0,44386,0,0,0,0,0,75,0.7823583409830593,0,0.0,0,0.0,0,0.0,0.05139,0.1346662823301276,0.3031718233119284,0.01558,0.349814126394052,0.6501858736059479,23.909654531301324,4.167810408276176,0.3076351016360932,0.2521070897372335,0.214427367377293,0.2258304412493802,10.791786037821405,5.58310337925284,16.501171613457906,11532.946617505744,45.71955683741986,12.300737029933082,13.954301662154744,9.607251484115467,9.857266661216563,0.5728805156172534,0.7984267453294002,0.6954069298952458,0.6,0.128430296377607,0.7454873646209387,0.9002375296912114,0.8694267515923567,0.7486910994764397,0.1703296703296703,0.5075187969924813,0.7265100671140939,0.6364617044228694,0.5578635014836796,0.1179698216735253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021864561190403,0.0044169342829066,0.0067229106248352,0.0087596427121396,0.0107613202178684,0.0130841311668888,0.0153308613804905,0.0173298381256438,0.019647488920205,0.0218031579808557,0.0239251111247669,0.0258961078919029,0.0278088819945964,0.0296741400775807,0.0318420781362746,0.0336331436714546,0.0356455717152491,0.0376631048742317,0.0396129045656079,0.0416376143447357,0.0559946612166586,0.0703637884173113,0.0841498559077809,0.0966430260047281,0.1083872599650091,0.1242176928281461,0.1354002099392448,0.1467991404803948,0.1567030339261695,0.1658093278463648,0.1786617316361993,0.1903202800829875,0.199874060885048,0.2088809326289132,0.2176252278367042,0.2276434444346211,0.2368157320386619,0.2446883733459039,0.252244195655373,0.2577589359173599,0.2647520365541273,0.2710749967940123,0.2759145621902289,0.2810143524659712,0.2851186074982727,0.2892604659740579,0.2928829042442999,0.297230784843526,0.3015012456595541,0.3040780374937554,0.3014424689701442,0.2988938477124004,0.2967188529300461,0.2946551724137931,0.2933006294512249,0.2895481946051269,0.2857187809751569,0.2861220761426288,0.285658539895828,0.2869189342403628,0.287443971209106,0.2891058440667333,0.2902254077074893,0.2909179536037932,0.2936177303782702,0.2946384780195668,0.2961471300625246,0.2999751676185746,0.3039296794208893,0.3077702834418496,0.3128598848368522,0.3169850824391521,0.3204856787048568,0.3262347077480743,0.3305196023260176,0.333648393194707,0.3374020494273659,0.3360444356278516,0.341122750470051,0.3476796407185629,0.0,1.9869309735544367,48.31511361651414,149.3604210976567,218.0799139369318,fqhc1_100Compliance_baseline_low_initial_treat_cost,82 -100000,95748,47515,452.7614153820445,4996,51.05067468772194,3944,40.67970088148055,1515,15.509462338638926,77.34438518034166,79.69766400966193,63.33412346583962,65.0724263024749,77.14665317570174,79.50144475012726,63.25940342408748,65.00069932792307,0.1977320046399171,196.2192595346721,0.0747200417521369,71.72697455182231,213.03392,149.8469528225615,222494.381083678,156501.3920108634,502.85143,337.570284926794,524671.3038392448,352051.8411132872,455.72244,223.0140327799324,472971.1847767055,230629.060862783,2568.20388,1195.6233606289666,2651167.115762209,1217745.3837639152,939.97792,421.1519932419248,965913.6796591053,424177.7110559261,1478.04204,630.2887014221695,1514547.7921209843,631919.2583772555,0.37883,100000,0,968336,10113.380958348998,0,0.0,0,0.0,43735,456.22885073317457,0,0.0,41223,427.5076241801395,1228184,0,44114,0,0,0,0,0,78,0.8146384258679032,0,0.0,0,0.0,0,0.0,0.04996,0.1318797349734709,0.3032425940752602,0.01515,0.3577329490874159,0.6422670509125841,23.68737694802288,4.110343612040588,0.3078093306288032,0.2685091277890467,0.2112068965517241,0.2124746450304259,11.061279055283524,5.855691373698981,16.214680714832653,11442.17348388242,44.98710464293768,13.017229862713055,13.678416353366718,9.196891911671743,9.094566515186177,0.5780933062880325,0.7922568460812087,0.700164744645799,0.5846338535414166,0.1241050119331742,0.7351676698194325,0.8938053097345132,0.84,0.7246376811594203,0.1564245810055866,0.5124056094929881,0.7166392092257001,0.6490438695163104,0.5383386581469649,0.1153262518968133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892103237308,0.0047144464834284,0.0069907365131545,0.0090186161299168,0.011295931024666,0.0134679791923284,0.0154093883125089,0.017776417164141,0.0198220106057974,0.0220198506088202,0.0240491023854414,0.0261313134423335,0.0281622077361245,0.0303292448069535,0.0324331015700757,0.0345978567516456,0.0364968792373539,0.0387124205373902,0.0408122966919903,0.0425915316910577,0.0566053494247593,0.0704381586245147,0.0833840280254242,0.0955054998212295,0.1077521668529492,0.1228812215161095,0.1338297059946544,0.1453603421494989,0.1553955912508544,0.1647405660377358,0.1766187631196512,0.1879171399210341,0.1984386722190208,0.2082677509618747,0.2178527047386537,0.2270291812425275,0.2362891797498298,0.2441723172418446,0.2511598888321706,0.2576161745681019,0.263086673914552,0.2691992795153103,0.2736220705320067,0.2771262052093826,0.2814139941690962,0.2856438146681959,0.2891572301833851,0.2940150038847069,0.2975195907000842,0.3006782613285477,0.2981096535486041,0.2955419964819701,0.2932164762815823,0.2913696060037523,0.2895814781834372,0.2860160411436968,0.281326645252148,0.2810682395346932,0.2825134282547532,0.2820165672040616,0.2823463478423314,0.284718804747938,0.2860183639398998,0.2872205256235928,0.2890817965996019,0.2904649412009034,0.2898028648418664,0.2958937576346039,0.2999965055736101,0.304500870115488,0.3079498665218768,0.3113247411789562,0.3147858705845576,0.319801905905305,0.3222594453750232,0.326323168594462,0.332525007578054,0.3397801302931596,0.3465455546380402,0.3494208494208494,0.0,1.9063191107524629,50.83468630999364,142.47151585395514,206.45734120224463,fqhc1_100Compliance_baseline_low_initial_treat_cost,83 -100000,95662,47923,457.0675921473521,5164,52.66458991030921,4100,42.19021136919571,1549,15.77428864125776,77.28108161739658,79.66952366033183,63.29287913429015,65.05644468121646,77.08265069677596,79.47498320930016,63.21725532071022,64.98499040867658,0.1984309206206234,194.5404510316706,0.0756238135799307,71.45427253988146,211.51504,148.8903089676009,221106.646317242,155642.06159980022,505.26283,339.0338977176534,527504.4636323723,353737.52139580343,460.35362,225.29493644082865,477319.78214965184,232513.0422182757,2667.69956,1241.2823566509967,2747375.687315758,1256274.5151167617,967.4451,435.87866352303,993711.703706801,438136.3217475807,1512.77512,649.1760878799968,1542334.364742531,644868.9427869474,0.38198,100000,0,961432,10050.30210532918,0,0.0,0,0.0,43921,458.4265434550814,0,0.0,41678,431.6761096360101,1229249,0,44061,0,0,0,0,0,83,0.8676381426271664,0,0.0,2,0.0209069431958353,0,0.0,0.05164,0.1351903241007382,0.2999612703330751,0.01549,0.3475124838172739,0.652487516182726,23.83041645594785,4.111251707594124,0.3263414634146341,0.2582926829268293,0.2095121951219512,0.2058536585365853,11.289003261415717,6.15395814824615,16.54683103592063,11573.004443708858,46.67738836610891,12.773842501130622,15.042290688021724,9.485543836624576,9.375711340331993,0.5795121951219512,0.8026440037771483,0.680119581464873,0.5948777648428405,0.1244075829383886,0.7321274763135228,0.9225181598062954,0.8485714285714285,0.7537688442211056,0.1105527638190954,0.5192242259271861,0.7260061919504643,0.6204453441295547,0.546969696969697,0.1286821705426356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0049878851164346,0.0068908125881648,0.0092247361095589,0.0114618717328071,0.0139403690277381,0.0159267491893876,0.0180503940866582,0.0201993355481727,0.0223236675912752,0.0241564220606781,0.0262639122756581,0.0283422459893048,0.0306417878154074,0.0328716509102918,0.0347515897223801,0.0366905953157856,0.0389533556141407,0.0410377505695353,0.0430264433349662,0.0586735759956538,0.0725018586192814,0.0855070486107466,0.0981271043771043,0.1110384266390934,0.12722309800146,0.138343949044586,0.148852319326836,0.1588576194345836,0.1677172033889205,0.1791068924603602,0.1908482989584575,0.2006099553425552,0.2099770014237214,0.2185502710803543,0.227378602009805,0.236405905956253,0.2439172749391727,0.2525736881576256,0.258705897191868,0.2648881578185272,0.271023219850512,0.275489998458565,0.2802146999843898,0.2845205079550431,0.2893279559946227,0.2927406628090478,0.295985833853523,0.299697916531615,0.3031676600018501,0.3003196180766274,0.2979069350860512,0.2956753855714366,0.2944881205750771,0.2919364682415636,0.2888231597983172,0.286173226352688,0.2867509440157609,0.2875911909928072,0.2874110534481836,0.2889962365893389,0.2900506569574165,0.2904938815775665,0.291459536925075,0.2920087641152818,0.2928060361649538,0.2941963396237156,0.2986054400402035,0.3038845804513379,0.3058327089166699,0.3100158263621976,0.3154203143128362,0.3187046761690422,0.3226049029929312,0.3269570062215619,0.3310217290799815,0.333383640205252,0.3420582986317668,0.3444771329232415,0.3449980981361734,0.0,2.5657918194040685,50.16405626612505,146.16503801822375,225.25788001011813,fqhc1_100Compliance_baseline_low_initial_treat_cost,84 -100000,95736,47445,449.95612935572825,5133,52.39408373025821,4057,41.8860198880254,1633,16.733517172223614,77.3612597271838,79.72609462991721,63.34108899169471,65.08890767538153,77.1485593584723,79.51498157222127,63.26042299442117,65.01086769452944,0.2127003687115092,211.1130576959397,0.0806659972735417,78.03998085209685,210.60116,148.06509447507872,219981.15651374613,154659.78782806752,502.3473,336.87502718915573,524234.7288376368,351393.4924982852,455.83807,223.356992149686,473393.3316620707,231115.7403389364,2649.41117,1250.075442745232,2736591.626974179,1275002.3172399208,965.19324,443.3916359417636,994984.3319127602,450069.7455468061,1591.96486,686.9205125564786,1632537.185593716,691289.9362506731,0.37977,100000,0,957278,9999.14347789755,0,0.0,0,0.0,43669,455.6175315450823,0,0.0,41278,428.3655051391326,1242631,0,44645,0,0,0,0,0,90,0.940085234394585,0,0.0,0,0.0,0,0.0,0.05133,0.1351607551939331,0.3181375413987921,0.01633,0.3550928531232414,0.6449071468767585,23.5411343560827,4.183823277949657,0.3049051022923342,0.2625092432832142,0.2164160709884151,0.2161695834360364,11.54929227834864,6.32934377474257,17.604764378022296,11560.210559717532,46.42871342546928,12.973214874335506,13.834533245926057,9.776502651062293,9.844462654145437,0.5698792210993345,0.7830985915492957,0.6855295068714632,0.5842824601366743,0.1334093500570125,0.7278797996661102,0.9174107142857144,0.845679012345679,0.7393364928909952,0.1441860465116279,0.5036726128016789,0.6855753646677472,0.628696604600219,0.5352323838080959,0.1299093655589124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238632104618,0.0046435234001135,0.007123865965781,0.0093364895205778,0.0117258212142784,0.0139712022158408,0.0162237676666734,0.0183897483024455,0.0207551606735714,0.0228398853398853,0.0250479324946428,0.0275663739536794,0.0294761958634591,0.0318729203795082,0.0340536189709615,0.0361215354237095,0.0383986082057867,0.0405225909553161,0.0426337243157807,0.0446669514571199,0.058493087750073,0.0726277448661321,0.0860553422703337,0.09877296098079,0.111177859280806,0.1263477231406705,0.1370114308739634,0.1465008140116409,0.1559455648607075,0.1651157804459691,0.1772078299631759,0.1891003104615817,0.1991563199895627,0.2078482811389845,0.2167522344741153,0.2263276123449413,0.2356823528100159,0.2444806471546542,0.2524965145143557,0.2597280717817249,0.266568006289599,0.2716363848805281,0.2762723692147563,0.2805503005340166,0.284645330293365,0.2896254842875592,0.2943535290443473,0.2976987686951218,0.3008965187130493,0.3037336955804967,0.3014619843714274,0.2984920896506262,0.2962020332691199,0.2933493057760586,0.2912696292338291,0.2878862037320281,0.284170616113744,0.2845420597484276,0.2847702421909596,0.285569214323891,0.285011779664186,0.2866711451829605,0.2865724751439037,0.2875758657622277,0.2882218753751951,0.2887087102745261,0.2915977411442587,0.2951577887549948,0.2984860166818532,0.302498017446471,0.3066400942114322,0.3087075402250499,0.3145241654210264,0.318660647103085,0.3219317760474601,0.3243939571378381,0.3289971260021176,0.3313906752411575,0.3224467201771381,0.3230403800475059,0.0,1.9243992935259773,52.35165916363532,147.72230609773226,212.813062787177,fqhc1_100Compliance_baseline_low_initial_treat_cost,85 -100000,95644,47473,452.1872778219229,5014,51.074819120906696,3984,40.98532056375726,1507,15.23357450545774,77.2430810454354,79.64775016488463,63.27207635196621,65.05012222523021,77.04506688585455,79.45792860580207,63.1948423616352,64.97970923911649,0.1980141595808504,189.82155908256004,0.0772339903310168,70.41298611372326,211.15886,148.56773493223193,220775.85630044749,155334.08779665417,501.40047,336.79846355870103,523580.8832754799,351482.812749747,458.00358,224.44160942483305,475534.1056417548,232030.8121675661,2605.79266,1234.7194747484475,2680663.7739952323,1247205.8439977402,933.46119,426.6334565646089,957693.9902137092,427846.679787944,1468.48272,642.1488394841297,1486360.796286228,628487.5998753415,0.38016,100000,0,959813,10035.266195474886,0,0.0,0,0.0,43632,455.5016519593492,0,0.0,41491,430.4713311864832,1232232,0,44246,0,0,0,0,0,84,0.87825686922337,0,0.0,0,0.0,0,0.0,0.05014,0.131891835016835,0.3005584363781412,0.01507,0.3536259541984732,0.6463740458015267,23.342503822219435,4.212566182820768,0.3232931726907631,0.2600401606425703,0.2128514056224899,0.2038152610441767,11.405780406565048,6.080134244553665,16.400503772533575,11569.177821283542,45.84110222991115,12.663089465025593,14.70834652499995,9.451239289832811,9.018426950052802,0.5835843373493976,0.8108108108108109,0.7142857142857143,0.5613207547169812,0.1096059113300492,0.7294407894736842,0.9101654846335696,0.8582474226804123,0.6807511737089202,0.125,0.5195086705202312,0.7422512234910277,0.6522222222222223,0.521259842519685,0.1048387096774193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0046456900574118,0.0068322792199222,0.0090836119042054,0.0114633873445017,0.0136055807322165,0.0156716798368595,0.0179402875347165,0.0203902159685863,0.0223441948102484,0.0244280132497872,0.0264133504492939,0.0286622238677033,0.0307110625759792,0.0328247899419889,0.0349206349206349,0.0368075915009997,0.0389865166440041,0.0410264945440171,0.043049430212797,0.0584921829278488,0.0717241234823963,0.0855504924298103,0.098214661669965,0.110286353845504,0.1256167545475721,0.1367253487457901,0.1470472210079643,0.1566449431228397,0.1656694774155432,0.1773916797064695,0.1881911618023331,0.19935512685047,0.2087600354870154,0.2184696104583232,0.2278698710693917,0.235805174765749,0.2441586546589871,0.252088898993918,0.2590248153754415,0.2655656003708855,0.2705310615375607,0.2762835317107834,0.2802922159711142,0.2849218417371206,0.2883008528442541,0.292924102666934,0.2971164142573045,0.3011679211004412,0.30394023535634,0.3018613615839769,0.2989716268120431,0.2970678250567677,0.2947618152096865,0.2935722471090738,0.2904650200082793,0.2874673008323424,0.2873865579376561,0.2879401363333504,0.2886721331975633,0.2889022353184062,0.2900441470512541,0.2913115406361904,0.2916675977029473,0.2938352218167851,0.2963494132985658,0.2968517883670438,0.3022378677395021,0.3051578947368421,0.3096442656256224,0.3117620137299771,0.3167305236270754,0.3184765502045955,0.3217027746104143,0.3280542986425339,0.3309742863882991,0.3329749654430963,0.3412907141412098,0.3464159171436358,0.3474285714285714,0.0,2.564134486133024,52.64150285618099,144.0656886592052,205.20871540816157,fqhc1_100Compliance_baseline_low_initial_treat_cost,86 -100000,95831,47564,452.9432020953553,5106,52.19605346912794,4011,41.416660579561935,1563,16.007346265822125,77.44904619750217,79.77457772617028,63.38601454967061,65.10652968128103,77.2529584973124,79.57964361797424,63.31273099460273,65.03541372168505,0.1960877001897643,194.93410819603696,0.0732835550678814,71.1159595959856,212.45752,149.3728474665685,221699.28311298013,155870.27474679874,503.6857,337.64382169404166,525159.2490947605,351895.28444838023,455.2331,222.9702096447076,472162.9222276716,230444.63055039756,2637.94749,1228.3717590180702,2726858.5948179606,1256105.510950905,919.48536,413.8208747891067,949716.5113585376,422176.1018997817,1531.2626,652.6534232259996,1570614.8741012826,657677.1849323735,0.37984,100000,0,965716,10077.240141499096,0,0.0,0,0.0,43780,456.376329162797,0,0.0,41195,427.0434410576953,1237561,0,44422,0,0,0,0,0,86,0.8869781177280838,0,0.0,1,0.0104350366791539,0,0.0,0.05106,0.1344250210614996,0.3061104582843713,0.01563,0.3550751879699248,0.6449248120300752,23.516675722059045,4.199567873153049,0.3056594365494889,0.2682622787334829,0.2076788830715532,0.2183994016454749,11.043243408661771,5.7186503494395575,16.658435995880144,11496.504416626109,45.70681133395235,13.117220523239236,13.796050697749903,9.206446453164585,9.587093659798631,0.5669409124906507,0.7871747211895911,0.7014681892332789,0.5654261704681873,0.1095890410958904,0.7276595744680852,0.8909512761020881,0.8719512195121951,0.6964285714285714,0.1510416666666666,0.5003526093088858,0.7178294573643411,0.6391982182628062,0.5172413793103449,0.097953216374269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381333360339,0.0047743099550951,0.0069911621158158,0.0090409483853272,0.0111555162349878,0.0133994481382301,0.015609228918365,0.0178711764765919,0.0199693408277976,0.0218763749475601,0.023763898140083,0.0259954844006568,0.0280119243421052,0.0297960402359796,0.0321469456791906,0.034381586015951,0.0362450838335748,0.0382920481527949,0.0403104318826426,0.0424938320442219,0.0570275175766173,0.0718654274393367,0.0858196832982257,0.0979335413449315,0.1103723684487809,0.1257304688738362,0.1358398965433171,0.1464301665284246,0.1560069559280082,0.1658545988027799,0.1784592885715514,0.1893614492972809,0.2001042209484106,0.2091553906591008,0.2176504813867451,0.2278690880152089,0.2364221521877123,0.2446943425024971,0.2521165338645418,0.2580844137300817,0.2641370078013202,0.2694806330841274,0.2746691514708311,0.2795689933222635,0.2840086217335497,0.28927294837307,0.2929869611827179,0.2963620005828908,0.3003352675693101,0.3024618375765219,0.2999932980363246,0.2967829446743211,0.2947675396780887,0.2921191548120765,0.290067653401873,0.2865903764798977,0.2839659397976497,0.2837661702890286,0.283865503514864,0.283564650899306,0.2839382282432959,0.2841220716132571,0.2849273494501839,0.285907798898561,0.2876676370925404,0.288422355763031,0.2886455363946826,0.292115588216977,0.2968216351850561,0.3024899850757992,0.305021222794184,0.3070633539062088,0.3102628285356696,0.3122833458929917,0.3146866230121609,0.3157400891391039,0.3207575757575757,0.328965934287442,0.3282401091405184,0.335469280060309,0.0,1.6562562889643535,51.61353467048122,147.53429966986607,207.33302893307243,fqhc1_100Compliance_baseline_low_initial_treat_cost,87 -100000,95795,47860,455.4413069575656,5174,52.57059345477321,4113,42.22558588652852,1634,16.597943525236182,77.3497797498425,79.68080838810538,63.33168066437421,65.05897791792066,77.14228714744591,79.48121178507651,63.25182116495247,64.98547013788996,0.2074926023965844,199.5966030288656,0.0798594994217438,73.50778003069536,210.92764,148.446141732204,220186.2518920612,154962.0906458626,500.74554,336.01587402325305,522042.6535831724,350082.6066237832,461.64736,226.50054247301716,477731.75009134086,233219.84495636864,2704.30921,1266.7940373620502,2778197.567722741,1277641.906762409,971.32321,441.7346756376276,994225.9721279816,441564.6620264365,1595.58346,687.3864444324122,1622336.092697949,679051.9238923129,0.38069,100000,0,958762,10008.46599509369,0,0.0,0,0.0,43529,453.6771230231223,0,0.0,41690,430.9515110391983,1238126,0,44393,0,0,0,0,0,82,0.8559945717417402,0,0.0,0,0.0,0,0.0,0.05174,0.1359111087761695,0.3158098183223811,0.01634,0.3451917732073374,0.6548082267926626,23.682881242879365,4.134401332588388,0.3082907853148553,0.2569900316070994,0.2144420131291028,0.2202771699489423,11.129373876326309,5.879700038587597,17.47822407982152,11545.572731344557,46.90277178274851,12.92819022138977,14.252236474173223,9.839759078019206,9.8825860091663,0.5696571845368344,0.8088930936613056,0.6703470031545742,0.6145124716553289,0.1059602649006622,0.7259136212624585,0.9253393665158371,0.8376068376068376,0.7081339712918661,0.1138613861386138,0.5049845307665864,0.7252032520325203,0.6063249727371864,0.5854383358098069,0.1036931818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044713922151135,0.0068910223882111,0.0091842851192229,0.0115756281151459,0.0140013237615192,0.0159563621533442,0.0180986699059849,0.0202175068481949,0.0224160167045384,0.0244900051255766,0.0266340842351684,0.028728895469595,0.0308094693810303,0.0329059344150686,0.0348836007811612,0.0371206161235559,0.0392813799827813,0.0413125246773757,0.0431468910082878,0.0581011997913406,0.0719880368515168,0.0852497851198088,0.098109281232593,0.1102467613235092,0.1252511367241197,0.1358206738521599,0.1464899675341955,0.1557772839928211,0.1646784955695252,0.1769225795327183,0.1891906519597761,0.1996583874582503,0.2093409717059518,0.2178017383650566,0.2273951349254723,0.2360012053975021,0.2435244232997042,0.2513247024383602,0.2583360051298493,0.2645936003331713,0.270405836753306,0.276108455969337,0.2810355770036762,0.2844760609886375,0.2892413402455392,0.2937221132094337,0.2974409173542162,0.3000698468543046,0.3027889496934133,0.3005221791559,0.29799501850858,0.2961951164559101,0.2937849020572321,0.2923687260408308,0.2888456887446616,0.2858024105532884,0.2859672421425409,0.2869577089804417,0.2882707679132172,0.2885554453778368,0.2894929038116105,0.2911164967407655,0.2916313889755358,0.2935949027498323,0.2940840388510881,0.2937691348225422,0.2967510153077163,0.3010360172437769,0.3057864199466834,0.3092238927265339,0.3116494141138143,0.3152207857098245,0.3185336976320583,0.3204327147253567,0.3215704603879411,0.3245614035087719,0.331018059138718,0.3347627981774323,0.3366298972993534,0.0,2.765937236129588,51.71574702154114,148.7459641781096,216.95871393061532,fqhc1_100Compliance_baseline_low_initial_treat_cost,88 -100000,95796,47833,455.8541066432836,5118,52.256879201636806,4018,41.30652636853313,1545,15.773101173326651,77.41775944651599,79.7478359876685,63.37436231324406,65.09601815434175,77.2233647666072,79.55343662001322,63.301731831249626,65.02509687155444,0.1943946799087825,194.3993676552793,0.0726304819944374,70.92128278731025,212.71492,149.62988716631804,222049.89769927764,156196.38311236174,505.57645,339.13855493539006,527143.9621696104,353401.95304124395,458.06388,224.57704404841832,473558.35316714685,230890.6076487687,2639.50429,1233.2463882260772,2717108.877197378,1249306.0615788868,935.73534,430.1856375852444,959201.3340849304,431539.40516305313,1508.24876,641.8409103155357,1541746.1689423358,644064.7231257652,0.38219,100000,0,966886,10093.177168148984,0,0.0,0,0.0,43884,457.43037287569416,0,0.0,41497,428.640026723454,1233420,0,44218,0,0,0,0,0,95,0.9812518267986136,0,0.0,1,0.0104388492212618,0,0.0,0.05118,0.133912451921819,0.3018757327080891,0.01545,0.3533370723499719,0.6466629276500281,23.61021139876151,4.117684866812889,0.3061224489795918,0.2625684420109507,0.221005475360876,0.2103036336485813,11.168385153579678,6.001896320645415,16.470448883697735,11523.210070749808,45.76108728575655,12.870714921913969,13.739757167282942,9.888972354438916,9.261642842120729,0.5769039323046292,0.809478672985782,0.6910569105691057,0.5900900900900901,0.1065088757396449,0.7564322469982847,0.9361233480176212,0.85625,0.7663551401869159,0.1067415730337078,0.5035063113604488,0.7138103161397671,0.6329670329670329,0.5341246290801187,0.1064467766116941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025415405178262,0.0048452657293746,0.0071130683605442,0.0094858930348763,0.0116021312942324,0.0139358280060263,0.0160024462338191,0.0184024659100187,0.0205646067989942,0.0227514635444385,0.025020500205002,0.0271715699357408,0.0289773136108055,0.031018366002306,0.0330260661552421,0.0350030985333608,0.0368825739152031,0.0389483832844362,0.0406689866514309,0.042734597847134,0.0569443285201569,0.0711582688689107,0.0847868013919751,0.0976145208558733,0.1095301787237627,0.1256206554121152,0.1369616337944622,0.1472630045820354,0.1566801101081877,0.1655222649513138,0.1777091914097366,0.1885579717190048,0.1993312198723238,0.2090502183406113,0.2173316050793093,0.2265889432117337,0.2360047700246302,0.2441050976869526,0.2517525282839379,0.2580836954036131,0.2648733555860986,0.270109710550887,0.2756849921495945,0.2809846183288281,0.2860087543802214,0.2901586911059171,0.2932328011284906,0.2969713894036709,0.3008988996228754,0.3037210464703329,0.3011178357197493,0.2979847898306015,0.2956464324347105,0.2938811969629298,0.2917864233014312,0.2887667048491791,0.2846572532933659,0.2845928663712038,0.2839183174204071,0.284159119161783,0.2846301579310473,0.2852547758208135,0.2853636722893571,0.2867273895795935,0.2875776397515528,0.2887262003311258,0.2883012684690793,0.2923105682951146,0.2954055744769583,0.2986951737148247,0.3021190261496844,0.3043615510075235,0.3075290298414284,0.310220078384082,0.3134746474927631,0.3173349056603773,0.3183560803557737,0.3188580619219944,0.3237274441152706,0.3228376327769347,0.0,2.395164098475314,50.37892619117433,146.99493743521126,210.84265444526685,fqhc1_100Compliance_baseline_low_initial_treat_cost,89 -100000,95721,48031,457.9872755194785,5178,52.89330449953511,4118,42.43582912840442,1584,16.140658789607297,77.3893283971574,79.74911468592416,63.35181630130408,65.09300719584026,77.19419448313289,79.55851257346552,63.277365778520696,65.0232525688711,0.1951339140245096,190.60211245863456,0.0744505227833798,69.75462696915713,211.01938,148.53195835432896,220452.5443737529,155171.75787374657,502.62405,336.86880805255674,524524.5870812048,351359.61602214427,461.8905,225.8768160249971,479059.40180315706,233351.02512143968,2683.41498,1254.354395580572,2766072.899363776,1273279.1688568688,981.65178,442.7774257223944,1009536.9145746492,446645.9689350389,1549.47938,658.1017789355341,1580740.2973224267,654823.1103325486,0.38475,100000,0,959179,10020.570198806949,0,0.0,0,0.0,43731,456.25306881457567,0,0.0,41872,433.8964281610096,1238261,0,44389,0,0,0,0,0,80,0.8357622674230315,0,0.0,1,0.0104470283427878,0,0.0,0.05178,0.1345808966861598,0.3059096176129779,0.01584,0.3484314089474661,0.6515685910525338,23.40729668331805,4.140133671848964,0.307673627974745,0.2625060709082079,0.2183098591549295,0.2115104419621175,11.299456122410476,5.998205050952426,16.787033843811617,11591.6323244109,46.949606435250814,13.116621464403504,14.361490214735568,9.849681646593504,9.621813109518236,0.5876639145216125,0.8251618871415356,0.7119179163378059,0.5661846496106785,0.1343283582089552,0.7352445193929174,0.9186046511627908,0.8727810650887574,0.6796116504854369,0.1981132075471698,0.5279672578444747,0.7634408602150538,0.6533907427341227,0.5324675324675324,0.1138088012139605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020053272835917,0.0044594443937689,0.0065832851505837,0.0088238579247179,0.0111524541498922,0.0133135191254605,0.0156530246209033,0.0178159629395318,0.0198228207669592,0.0220712378106805,0.0240291013423506,0.0263676283498173,0.0284730785039046,0.0303036541430777,0.0325478265353478,0.0348875661375661,0.0369289064198527,0.0390651743203012,0.0410170055299155,0.0429419731222002,0.0575495243366297,0.0712118041021347,0.0846156266717014,0.0976499658272435,0.1105594383479333,0.1261157409365878,0.1362122369314324,0.1474120126897609,0.15729760912762,0.1666934731559816,0.1776976093043291,0.1890374505095086,0.1999499880406184,0.2095439087598823,0.2187503438259855,0.2286176376103597,0.2382302386320512,0.2465724151117409,0.2544532437768045,0.260077204155737,0.2671716003700277,0.2731512325116589,0.2795711634614248,0.2837001663614711,0.2879570988328359,0.2919455655084161,0.2949221191589369,0.2976104272266474,0.301423897158672,0.3039761876539307,0.3015184673012633,0.2992067630993879,0.2972677135519724,0.2943135135135135,0.2924525508542326,0.2894323570219708,0.2861979371703015,0.2859497389033942,0.2863013466012328,0.2862217801381907,0.287816417382234,0.2890578941162599,0.2899245487515111,0.2911969403864541,0.2927482833696198,0.2952425252603561,0.2950782618522913,0.2987118053394735,0.3030597377367654,0.3081295076826591,0.3118415128320576,0.3155347466989321,0.3200724456657506,0.3234940663962746,0.3233271375464684,0.3288183092013078,0.3319340329835082,0.3359825153983707,0.3331499312242091,0.3256704980842911,0.0,2.224835690460262,51.4999433247318,152.88904085790483,215.34154487155547,fqhc1_100Compliance_baseline_low_initial_treat_cost,90 -100000,95672,47910,455.8282465089055,5206,53.17125177690443,4141,42.6979680575299,1569,16.023496947905343,77.35982293729873,79.73666327567176,63.33991942654043,65.09047490441962,77.15973790892235,79.53953477782062,63.26360762648879,65.01807695529861,0.2000850283763782,197.1284978511392,0.0763118000516485,72.3979491210116,211.4629,148.70977617551665,221029.03670875487,155437.09358591505,502.34475,336.7807123795622,524481.3738606907,351427.5675010058,461.15784,225.78864443929456,478616.3976921148,233327.3339572613,2715.94117,1262.6886936672183,2800873.045405134,1282035.4745996806,964.12082,438.1501300139128,987714.9009114476,437996.020481305,1531.82664,654.5144712942031,1564671.105443599,651188.888651878,0.3828,100000,0,961195,10046.774395852495,0,0.0,0,0.0,43669,455.8282465089055,0,0.0,41837,433.8468935529727,1235555,0,44336,0,0,0,0,0,77,0.8048331800317753,0,0.0,1,0.0104523789614516,0,0.0,0.05206,0.1359979101358411,0.3013830195927776,0.01569,0.3545421110702464,0.6454578889297535,23.552145311039556,4.136863170962098,0.3276986235208887,0.2663607824197054,0.1965708765998551,0.2093697174595508,11.517177422488976,6.05753575109988,16.69314286632024,11649.585858553894,47.12087189755599,13.375846867103602,15.208845602252367,9.094013316601542,9.442166111598471,0.586090316348708,0.8041704442429737,0.709653647752395,0.5872235872235873,0.1141868512110726,0.7528925619834711,0.9082774049217002,0.8644986449864499,0.7661691542288557,0.1658031088082901,0.5172296144660525,0.7332317073170732,0.6518218623481782,0.5285481239804242,0.0994065281899109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304289707133,0.0047739228266488,0.0071627859787957,0.0095265178444476,0.011906214413535,0.0139243727416153,0.016384923424938,0.0186405746235154,0.0208788739300087,0.0230481217775595,0.0253242362775831,0.0274429340856629,0.0294679932574106,0.031579489291598,0.0339563477328052,0.0360295181594559,0.0378690629011553,0.0398805140385632,0.0418559680622121,0.0439187076602397,0.0590822659172116,0.0727973360698653,0.0868127715851124,0.0994118204105683,0.1116349713634781,0.1269402914008189,0.1382399456550582,0.148508313184999,0.1584174292311639,0.1668670301833326,0.1789986421535875,0.1911177050281023,0.201129599199051,0.210609841520007,0.2194007333913292,0.2285597181912843,0.2379745987812772,0.2452755949771227,0.252951516869861,0.2598688351970333,0.2659921369102683,0.2721096390191423,0.2775537236999278,0.2825006883836751,0.2875175825774846,0.2922541276051278,0.2962814923993555,0.2999377722464219,0.3032296418832469,0.3069866751018149,0.3036129361656388,0.3012283256849221,0.2988853548005742,0.29658474674051,0.2941106748648048,0.2914012495608206,0.2878833362299148,0.2877062476446396,0.2877301346255567,0.2884406350790285,0.2891392906529133,0.2900575346784363,0.28989533936368,0.2910131883799679,0.2927944097446574,0.2933923899810915,0.2941991293040086,0.2980550092098279,0.3018664252385263,0.3058600836028078,0.3122057225642883,0.3146727340070903,0.318422379032258,0.3215832257084251,0.3228375972261268,0.3249585209765347,0.3269026279811636,0.329595514617541,0.3304949441192123,0.3309406875708349,0.0,2.314821739557873,52.7631155877559,145.81530959494262,221.69372467731128,fqhc1_100Compliance_baseline_low_initial_treat_cost,91 -100000,95865,47334,450.5502529598916,5194,53.11636155009649,4099,42.2886350597194,1577,16.105982371042614,77.34109898624328,79.63212326867519,63.34986309044478,65.04425673257425,77.14673637149261,79.43871084507879,63.2769329622099,64.9735105761011,0.1943626147506734,193.4124235963992,0.0729301282348799,70.74615647314886,211.00882,148.47747022702254,220110.3843947217,154881.83406563662,501.8086,336.5462709902831,522974.48495279823,350584.1537432451,453.7501,222.2603038017444,470028.3732331925,229362.1269613013,2702.59299,1252.240384853444,2788055.3382360614,1275379.5496492062,959.72119,429.58854146482224,990473.9686016794,437682.8948095981,1547.7323,652.4348901697748,1583151.0353100714,655728.8693162826,0.37969,100000,0,959131,10005.017472487352,0,0.0,0,0.0,43707,455.4321180827205,0,0.0,41192,426.4538674177229,1239266,0,44491,0,0,0,0,0,80,0.8345068586032441,0,0.0,1,0.0104313357325405,0,0.0,0.05194,0.1367958071057968,0.30361956103196,0.01577,0.3472888233124308,0.6527111766875692,23.5296376259026,4.1394156321270215,0.3130031715052452,0.2612832398145889,0.2041961454013174,0.2215174432788485,11.155304034654296,5.938372101866078,16.82708124068761,11503.303214680604,46.86881428367902,13.09963843026374,14.675140469547202,9.239016130239852,9.855019253628228,0.5772139546230788,0.8151260504201681,0.7131722525331254,0.5519713261648745,0.1277533039647577,0.7495812395309883,0.9282407407407408,0.8940217391304348,0.6938775510204082,0.1464646464646464,0.506368330464716,0.7386541471048513,0.6404371584699453,0.5085803432137286,0.1225352112676056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0046103494746228,0.0067654606497682,0.0088837898755254,0.0112312727420567,0.0135756736953512,0.0157400898560469,0.0176587605202754,0.0198455661552918,0.0219830804955143,0.0242658281008327,0.0262556023917212,0.0282550866345531,0.0302690467616646,0.0321586810922205,0.0342859501914522,0.0362209446604351,0.0382519322820613,0.0402184294672148,0.0423021702490688,0.0568294386919844,0.0704596283677863,0.0835550434691526,0.0962277624918611,0.108427137847884,0.1238157602898152,0.1341624908626699,0.1451642054455182,0.154832789124357,0.1640732167352537,0.1764288097108483,0.1884813356979108,0.200163052339801,0.2085446358310745,0.2171473830110223,0.2263795662479785,0.2353610513046485,0.244480683799134,0.2519995008338344,0.2591218730322285,0.2651616783087385,0.2712320119705879,0.2763529731711066,0.2808484137154628,0.2848940251037898,0.2893647429895027,0.294389133480088,0.2979426798565724,0.3007021945195205,0.3039235080778107,0.3016009686533028,0.2981296466805008,0.2961049564323822,0.2926772859992483,0.2910412270011592,0.2870809735190571,0.2841319070827267,0.2837058813868313,0.2841002465078061,0.2848775769733661,0.2856471737823211,0.2852475894430475,0.2868864499611777,0.2883951392314246,0.2903700487287113,0.291130971046305,0.2917213068019841,0.2959488809846076,0.3000454879456944,0.3039215686274509,0.3081492902816198,0.3122358410819949,0.3141065830721003,0.3178107045660719,0.3219718309859155,0.3243211334120425,0.3296770262035344,0.333199759567221,0.3395867319195215,0.3401983218916857,0.0,1.7747309311876465,52.43543327830648,151.41792031535715,214.23940498115837,fqhc1_100Compliance_baseline_low_initial_treat_cost,92 -100000,95651,47497,452.7605566068311,5127,52.44064358971679,4014,41.47369081347816,1559,16.006105529476955,77.31769350596971,79.74034047417611,63.289715480586615,65.08150546507544,77.1230023240041,79.54691566910262,63.21735846621606,65.01184923605395,0.1946911819656094,193.4248050734908,0.0723570143705529,69.65622902148993,211.85472,149.06126287693948,221487.19825197852,155838.6873916002,505.46358,338.6613721813109,527923.0431464387,353536.776595447,454.20526,221.8809113882116,471717.50426027953,229547.17976751237,2657.16739,1225.661156040877,2747772.8408485013,1251179.7744308766,952.33346,423.3733927538245,982485.6614149356,429475.1678015129,1520.92706,635.9804622837613,1562712.7996570866,640032.9864423792,0.38094,100000,0,962976,10067.59992054448,0,0.0,0,0.0,43944,458.8869954313076,0,0.0,41169,427.3034259965918,1231372,0,44131,0,0,0,0,0,98,1.0245580286667155,0,0.0,0,0.0,0,0.0,0.05127,0.1345881241140337,0.3040764579676224,0.01559,0.3455663189269746,0.6544336810730254,23.538142045617192,4.224311208737063,0.317887394120578,0.2516193323368211,0.2164922770303936,0.2140009965122072,11.151397454902169,5.837093053587795,16.4573053956175,11611.368346756244,45.62291369422779,12.272301257022503,14.386242096968394,9.73194354775402,9.232426792482878,0.5752366716492276,0.810891089108911,0.6974921630094044,0.5834292289988493,0.1082654249126891,0.7710736468500443,0.9528301886792452,0.853448275862069,0.695,0.1870967741935484,0.4987876688604087,0.7081911262798635,0.6390086206896551,0.5500747384155455,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198800551098,0.0047154504522776,0.0068934010152284,0.0090244819561174,0.0113545026300528,0.0138447432762836,0.0159039438516312,0.0183185361517792,0.0202020202020202,0.0224071834190942,0.0246984550633885,0.0266207392936095,0.0284934610235815,0.0304721428497746,0.0326283488485023,0.0346758004097766,0.0369314352663065,0.0387747470760537,0.0407738497882215,0.0430597559703827,0.0572270584915716,0.0712511918857466,0.0848773212335097,0.0978661554989151,0.1104821847213128,0.1260948305991251,0.137762475558956,0.1481288039481117,0.1579324583079276,0.1673970483985306,0.1799844673598826,0.1912558240329396,0.2027206587087218,0.2116928198333351,0.2206318248432558,0.2299434401685705,0.2383660517759578,0.2461604287708868,0.2541232023064961,0.2606075879765396,0.2670409167197176,0.2732122176339155,0.2785472453062481,0.2829738511156138,0.2872824078576291,0.2911969444957802,0.2944634124989057,0.297730884128901,0.3010701207282514,0.3039996834023692,0.3023415421881308,0.2992304521093857,0.2966042088678821,0.2930099775073533,0.2910375890833123,0.2878831893586117,0.2851791556686529,0.286427227358259,0.2872581221600095,0.2886479003230272,0.2882815842836679,0.288341633661425,0.2889588859416445,0.2892697400469421,0.2906068400495379,0.293596466303309,0.2960004516074402,0.3013898821554056,0.3051654616240267,0.3108390094098193,0.3139724537876042,0.3174427198817443,0.3200300262729889,0.323047906450396,0.3263099011747156,0.329149560117302,0.3318154219793564,0.3367711225704086,0.3406385281385281,0.3370955605718585,0.0,1.9049062350568755,49.29870143684575,149.17804108300817,212.9576183538761,fqhc1_100Compliance_baseline_low_initial_treat_cost,93 -100000,95698,47516,452.26650504712745,5204,52.95826454053377,4102,42.15344103325044,1584,16.050492173295158,77.34880342590687,79.70598455865118,63.338894218876014,65.07690098547803,77.13849460594254,79.50486994251558,63.25729028449964,65.00297250806116,0.2103088199643252,201.1146161355981,0.0816039343763748,73.92847741687092,211.26534,148.5981321891554,220762.54467178,155278.20036903114,500.60497,336.7084640850518,522413.84354949946,351149.5476238289,460.70268,226.3194193610422,477903.0178269138,233790.45947515857,2665.42918,1269.528157555994,2736162.9919120567,1277510.7500219385,939.56543,431.265359456562,964837.6977575287,433695.2041714414,1539.32698,669.4502132780925,1560430.6464084934,654984.357589471,0.38059,100000,0,960297,10034.661121444546,0,0.0,0,0.0,43489,453.71899099249725,0,0.0,41769,432.9139584944304,1235644,0,44335,0,0,0,0,0,105,1.0972016134088487,0,0.0,3,0.0313486175259671,0,0.0,0.05204,0.1367350692346094,0.304381245196003,0.01584,0.3483063328424153,0.6516936671575847,23.36451528940332,4.169173850508302,0.3217942467089225,0.2564602632862018,0.2155046318868844,0.2062408581179912,11.621920978231657,6.412332835516148,17.058907873044742,11555.585251638036,47.16661001827655,12.823340494216245,15.057884858357443,9.97884930789052,9.306535357812338,0.5867869332033154,0.8127376425855514,0.7037878787878787,0.6040723981900452,0.1052009456264775,0.7472089314194578,0.9402298850574712,0.8809523809523809,0.7272727272727273,0.0954773869346733,0.5161516853932584,0.7228525121555915,0.6326963906581741,0.557632398753894,0.1081916537867078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898008161777,0.0046425820054332,0.0072548323271269,0.009579536565792,0.0118147063608264,0.0138545324986002,0.0160335144281243,0.0182913136674492,0.0205508149813499,0.0226398100384835,0.0246194844462665,0.0267671117588496,0.0290549432472446,0.0311644188201379,0.0330926346193521,0.0351839796645897,0.0372966648373836,0.0393458952436291,0.0415709190729206,0.0432965842069066,0.0574534972375113,0.0714995970232051,0.0852867725756017,0.0982364577633738,0.1105566866751764,0.1258000698242755,0.1366168932471584,0.1469066127143009,0.1569442515040446,0.1659746140062875,0.1781431480503808,0.1887864424388027,0.1989447919499592,0.20825903845102,0.2167084874097552,0.2257538983276257,0.2353000323997005,0.2426473899923433,0.2509197856104651,0.2584932684044686,0.2653314037626628,0.2708650178993425,0.276613876855337,0.2816823795776082,0.2859120214664707,0.2904747244627794,0.2942330521711965,0.2978474675341178,0.3010055057254375,0.3037240979568179,0.3009751832672002,0.2982280081932282,0.2958860536797512,0.2942323243992606,0.2919271258667538,0.2901726326090613,0.2869606448553817,0.2872812402796195,0.2866563293403991,0.2875690115761353,0.2867430319764188,0.2864561817645323,0.287054995933179,0.2872138893222492,0.2893160139960696,0.2911323399615804,0.29372815368439,0.297608974961612,0.3011627500960229,0.3056477093206951,0.3097096188747731,0.3149053795449713,0.3199088145896656,0.3232910230922159,0.3253818593249104,0.3284506371323091,0.3327660891089108,0.3323064284247278,0.3383333333333333,0.3395348837209302,0.0,2.7230702589804325,54.02082323837035,149.10381730866493,210.1440601777396,fqhc1_100Compliance_baseline_low_initial_treat_cost,94 -100000,95626,47687,455.7442536548637,5148,52.55892748833999,3987,41.003492773931775,1501,15.32010122769958,77.26744378178137,79.68403438018196,63.28338998351626,65.07002043207464,77.06932344308315,79.48911229354879,63.20889308877897,64.99930461278495,0.1981203386982173,194.92208663317,0.0744968947372868,70.7158192896884,211.25786,148.6029334966097,220920.7119402673,155399.90535692152,501.52224,337.42846059453564,523705.1324953464,352105.58906002087,458.71342,225.4590966859568,475345.680045176,232441.0036884304,2597.26314,1224.0575555151538,2673501.307175873,1237484.3405717623,930.99719,424.2619485938304,958665.1015414218,428850.8457214028,1470.49358,628.6311310941466,1501759.4168949868,626211.4039059599,0.38176,100000,0,960263,10041.85054273942,0,0.0,0,0.0,43571,454.9181185033359,0,0.0,41539,429.987660259762,1233511,0,44205,0,0,0,0,0,98,1.014368477192395,0,0.0,1,0.0104574069813649,0,0.0,0.05148,0.1348491198658843,0.2915695415695415,0.01501,0.3553857622064852,0.6446142377935147,23.497795675005623,4.199738689199249,0.3069977426636568,0.272385252069225,0.2066716829696513,0.2139453222974667,11.40909835650298,6.041913954953163,16.079519844728605,11602.078647557348,45.793791620015575,13.274027484579674,14.003627541767385,9.144522411684411,9.371614181984098,0.5849009280160522,0.8103130755064457,0.7140522875816994,0.5861650485436893,0.1113716295427901,0.7569386038687973,0.9161147902869756,0.8847262247838616,0.7333333333333333,0.1804123711340206,0.511794138670479,0.7345971563981043,0.6465222348916762,0.5405405405405406,0.0910470409711684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0048266071790711,0.0069444444444444,0.0088915535322331,0.0111394825990091,0.0134130443638733,0.0156616432489752,0.0176418340156612,0.0199286291270871,0.0218635753858127,0.0239782575252551,0.0258865102518798,0.0276623323183277,0.029870892623466,0.0317196531791907,0.0338581781715549,0.0359391830309056,0.0378647125374962,0.0400062412232797,0.0420493999645504,0.0569502508361204,0.0715991453349532,0.0853689273487219,0.0973064611237469,0.1097786270018051,0.1251680943657945,0.1360083266069076,0.1466021590170398,0.156378688857751,0.1657556460013531,0.1772946391018797,0.1885310716103944,0.19956904057113,0.2095333975312965,0.2187995420116258,0.2288543986174349,0.2377428823339025,0.2460224587618426,0.2537465940054496,0.2601395876548586,0.2661441570770335,0.2719308505661083,0.277548266433078,0.2823664863697965,0.2863063982886036,0.2908880089800046,0.2944393687187895,0.2975292786205669,0.3021657238281401,0.306578304664088,0.3045153814021802,0.3023527793065492,0.3000563459642203,0.2980054921231392,0.2955552252118329,0.2926586542141927,0.28989913384954,0.2903902574945501,0.2903313833506728,0.2900926585887384,0.2918381857645385,0.2923718759886112,0.2937049757078238,0.2938354789049776,0.2945725264169068,0.2956025634345855,0.2965542730425883,0.3006337056092358,0.3050182225960191,0.3092816274634456,0.3130948023426061,0.3153442552735839,0.3193448035045394,0.3264586368166833,0.3289002075080173,0.3328554360812425,0.3385328185328185,0.35,0.3493053586617522,0.3418734987990392,0.0,2.6396477521762405,51.157070117555016,148.8676775707823,204.02683200343972,fqhc1_100Compliance_baseline_low_initial_treat_cost,95 -100000,95848,47576,453.79141974793424,5076,52.00943160003339,4003,41.29454970369752,1564,16.0462398798097,77.40182060844235,79.71441349396159,63.36325590393732,65.0751832634327,77.20832525878865,79.52113334229233,63.291604594736754,65.0055234769026,0.1934953496537019,193.2801516692564,0.0716513092005683,69.65978653011007,213.1074,149.860955738161,222338.91161004925,156352.7207016954,504.1332,337.5120429652413,525513.9596027043,351675.0093536028,453.96456,222.04370684509624,470066.2715966948,229060.61829267285,2642.31207,1213.6692145094128,2729302.9692847007,1238773.3228751903,932.54404,416.7024022302221,963604.6865870962,425417.5175592832,1525.38088,641.3933240938499,1566317.2940489107,648272.5770957123,0.37918,100000,0,968670,10106.314164093148,0,0.0,0,0.0,43864,457.1509056005342,0,0.0,41001,424.2237709707037,1232185,0,44267,0,0,0,0,0,79,0.824221684333528,0,0.0,1,0.0104331858776395,0,0.0,0.05076,0.1338678200327021,0.3081166272655634,0.01564,0.3472117558402411,0.6527882441597589,23.89440841152257,4.256701234672662,0.317262053459905,0.2500624531601299,0.2188358730951786,0.2138396202847864,11.223681649460383,5.964538476301585,16.681474060481264,11465.64116379051,45.548979967864966,12.176834660675771,14.2268382365492,9.80268686868448,9.342620201955508,0.5663252560579566,0.7902097902097902,0.6708661417322834,0.5878995433789954,0.1273364485981308,0.7477396021699819,0.9166666666666666,0.873015873015873,0.7692307692307693,0.1489361702127659,0.4970659302726959,0.7032040472175379,0.6041884816753926,0.5359765051395007,0.1212574850299401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020049008687903,0.0040438232879627,0.0062289493973947,0.0083589790466904,0.0105631296957127,0.012673561627102,0.0148397288895683,0.0169830577668912,0.0189606885131958,0.0211354820220464,0.0235046896622418,0.0256702385351233,0.0279382439405464,0.0297563888717283,0.0316235701834909,0.0337580210173905,0.0356710315201076,0.0377133495095294,0.0397083415561349,0.0418162706713707,0.0566622168453548,0.070426510558227,0.0837018253452648,0.096552593432911,0.1085905658588986,0.1236178144835088,0.134249941740991,0.1443056810331083,0.1545389548718933,0.1633678212625581,0.175653296053339,0.1867356639730348,0.1981948713492848,0.208034778049633,0.2171093844446154,0.2264965305060923,0.2352888710504604,0.2433009621436921,0.2506945153133539,0.2577224052718286,0.2633398067230776,0.2692550357526756,0.2757715812243643,0.2796033722935428,0.2848265650411438,0.2884560932671829,0.2924573114327858,0.2971757441780691,0.3010200783482229,0.3043335089567966,0.3016148100381536,0.2989291598023064,0.2971477523277206,0.2941007111392624,0.2913164437078253,0.2879056137244726,0.2843127977035424,0.2849927260244863,0.2839884294708184,0.285701593844951,0.2866356011183597,0.2875,0.2877727802765284,0.2872193820849077,0.2883807523391254,0.2882750058198184,0.2882600468807365,0.2937228091982597,0.2975665636824383,0.3031578119469896,0.3073622402890695,0.3121076233183856,0.3156251950808415,0.3203101475459199,0.3203399224090153,0.3251956547132344,0.3290507859733978,0.3297145154804985,0.3319716775599128,0.3425435276305829,0.0,1.866271753321601,48.4318734502794,154.90758812660803,207.87733153415212,fqhc1_100Compliance_baseline_low_initial_treat_cost,96 -100000,95703,47561,453.7475314253472,5055,51.81655747468732,4002,41.31531926898843,1519,15.474958987701534,77.32145341825886,79.7089128947363,63.3143933609397,65.08020936263834,77.12492847278703,79.51494350444912,63.24005373810886,65.00921136871546,0.1965249454718218,193.96939028717952,0.0743396228308341,70.9979939228873,212.03424,149.14967088787057,221553.97427457865,155845.98936498002,503.1978,337.7205766906854,525279.9285288862,352374.96957071696,453.38862,221.64000430635284,471039.6852763237,229426.65985963948,2610.12641,1213.142647690654,2697036.9685380817,1237474.1344283314,953.27304,429.5025944035187,985701.367773215,438536.4824780741,1477.46904,633.5418240006937,1508008.3800925782,632551.5022930077,0.38002,100000,0,963792,10070.63519429903,0,0.0,0,0.0,43773,456.8404334242396,0,0.0,41067,426.3293731648956,1234222,0,44194,0,0,0,0,0,90,0.9404093915551236,0,0.0,0,0.0,0,0.0,0.05055,0.1330193147729066,0.3004945598417408,0.01519,0.348048503220917,0.651951496779083,23.823236387974543,4.124003784377254,0.3143428285857071,0.2656171914042978,0.2101449275362318,0.2098950524737631,11.41248195658746,6.244187567215536,16.260855075218874,11480.928297942888,45.6705176708809,12.965272289699216,14.147648410612934,9.307945938399454,9.249651032169286,0.5817091454272864,0.8071495766698025,0.6923688394276629,0.6004756242568371,0.1119047619047619,0.7438811188811189,0.9155555555555556,0.8859934853420195,0.7180851063829787,0.1608040201005025,0.5167949615115466,0.7275693311582382,0.629863301787592,0.5666156202143952,0.0967238689547582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019656318391829,0.0042794848392657,0.0064560662660386,0.0086889360880478,0.0109474198274458,0.0132426045147094,0.0153584139837033,0.0175719828466408,0.01942362935626,0.0215366347984523,0.0237340961051476,0.0258680002875363,0.0281138131094926,0.0301400352406565,0.0321841453344343,0.0344396195202646,0.0363771958899569,0.0381809313282895,0.0403398573181638,0.0423445300205313,0.0572144759517468,0.0708550971915463,0.0839866091574053,0.0970851310112596,0.1090396910805849,0.1242393133446929,0.1353273329370807,0.1459245295076205,0.1556004402979492,0.1647576147576147,0.1766873148397522,0.1876136658872434,0.1974807740419653,0.2072971938077785,0.2160648667678834,0.2252059709425939,0.2335728151007385,0.2422072593608435,0.249379188352553,0.2563603471570221,0.2627896757481844,0.2680825696652328,0.2738502313144101,0.2785086142860566,0.2838146358050178,0.2876766284279454,0.2917265782267845,0.2951429914497338,0.2994522529971062,0.3035805997076524,0.3004246855176862,0.2979359938518965,0.2960564211354473,0.2940854247452105,0.2922741497708497,0.288550061937023,0.2851771099946282,0.2862054850593533,0.2866536070181416,0.2874668375977067,0.2875983038499617,0.2892907088971616,0.2901845357381429,0.2914063894342316,0.2931262154570118,0.2935473782966746,0.2959204036833252,0.300568235331052,0.3040997094142772,0.30699604743083,0.3121858443146311,0.3162913907284768,0.3193489369755851,0.323572138542702,0.3271274094969441,0.328695445356166,0.3332822790626435,0.3327925370107483,0.3345215245407184,0.3399465852727966,0.0,1.9068640921155484,50.03456656744631,149.28043151414255,210.20024200011227,fqhc1_100Compliance_baseline_low_initial_treat_cost,97 -100000,95717,47592,453.0752112999781,5270,54.002946185108186,4179,43.20026745510202,1632,16.747286270986347,77.3455376358958,79.73446425693487,63.32130932583449,65.08814401512338,77.14438510849783,79.53319600519885,63.24614997338208,65.01485295877875,0.2011525273979657,201.2682517360247,0.0751593524524096,73.29105634462962,210.97956,148.4398851427881,220420.1552493288,155082.0493149473,506.0431,338.59541296178134,528227.1905722077,353286.80690136686,458.26763,224.13394615973615,476182.86197854095,232033.98096482013,2708.45976,1247.2076433816007,2801710.855960801,1275072.832810891,980.32446,433.3564963030227,1011420.0298797496,439977.16842674016,1586.95608,666.733503521484,1629620.9868675366,672448.931283916,0.38158,100000,0,958998,10019.09796587858,0,0.0,0,0.0,44030,459.51084969232215,0,0.0,41432,430.2475004440173,1238676,0,44379,0,0,0,0,0,86,0.8984819833467409,0,0.0,0,0.0,0,0.0,0.0527,0.1381099638345825,0.3096774193548387,0.01632,0.3497822931785196,0.6502177068214804,23.78374137790563,4.167150954799655,0.3120363723378799,0.2656137832017229,0.2132089016511127,0.2091409428092845,11.150664806391646,5.9495528667176565,17.398458622837307,11644.08468910417,47.42251720829643,13.344749549616028,14.813641143607931,9.774187487977972,9.489939027094506,0.585307489830103,0.8036036036036036,0.7070552147239264,0.5869809203142536,0.1247139588100686,0.7363872082973206,0.892018779342723,0.8786127167630058,0.7076923076923077,0.1578947368421052,0.5274652547981469,0.7485380116959064,0.6450939457202505,0.5531609195402298,0.1154970760233918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002087153871873,0.0043004209138394,0.0065587085638864,0.009187178601191,0.0115365833808089,0.0136382155225096,0.0159083029104036,0.0180856387161341,0.020216377617801,0.0225801826895506,0.0248192400389723,0.0269001643385373,0.0289869980250164,0.0309543927621952,0.0330440346332855,0.0350570672400959,0.037052766786136,0.0391580957520782,0.0410760895562742,0.0431244660234637,0.0577429192079538,0.0717844060701203,0.0851340714698011,0.0981745488978904,0.1107384320054003,0.1261079263004252,0.1372395059632443,0.1482566188843213,0.1581704097230387,0.1666004786999967,0.1789140134939967,0.1896006583506583,0.1998519856774376,0.2092354144559069,0.2188841201716738,0.2285859883901271,0.2377503766110584,0.2457259189274306,0.254116953227782,0.2603057977980727,0.2665756878346652,0.272758080725454,0.2787313521053502,0.2825394925801819,0.2871503231517297,0.2917886038905147,0.2957801006581494,0.2985305687384209,0.3028805203520636,0.3058494211031238,0.303406652360515,0.3009436158702768,0.2990570273911091,0.2969332393109502,0.2957600674366672,0.2922776744611445,0.2891206918318394,0.2895935758767617,0.2906590316478347,0.2916347302187126,0.2923966756513926,0.2931868913339786,0.294803617787455,0.2959609251287999,0.297161776348936,0.299368026839354,0.2997246586618978,0.3046799186101111,0.3095362896180592,0.3141175076059899,0.315972850678733,0.3172803038295179,0.3194453120119933,0.3243692400664753,0.3292420125550454,0.327266238401142,0.332823259372609,0.3336711939995945,0.341861731083288,0.3442307692307692,0.0,1.8254679944012064,50.68324784531144,155.04066751590412,224.62807045065503,fqhc1_100Compliance_baseline_low_initial_treat_cost,98 -100000,95610,47340,450.4758916431336,5233,53.36261897291078,4102,42.2863717184395,1593,16.28490743646062,77.23812690061078,79.66930998210414,63.25655152000609,65.05418414679171,77.02952625414152,79.4618413375164,63.17789267351482,64.97809743885904,0.2086006464692644,207.46864458773476,0.0786588464912725,76.08670793267436,210.98572,148.42071885152748,220673.2768538856,155235.55993256718,501.85822,337.1459790701087,524279.65693965065,352004.53830154653,453.65978,222.80871360049423,470529.6098734442,230004.55989574452,2678.87207,1253.7212581307251,2765057.7450057524,1274470.1371516837,957.08983,430.2791446689928,987763.2988181151,436764.24796757015,1555.0888,666.7858213026997,1592487.5640623365,670775.7176691472,0.38074,100000,0,959026,10030.603493358436,0,0.0,0,0.0,43738,456.8036816232612,0,0.0,41161,426.50350381759233,1231354,0,44185,0,0,0,0,0,70,0.7321409894362514,0,0.0,0,0.0,0,0.0,0.05233,0.1374428744024793,0.3044142939040703,0.01593,0.3612844036697247,0.6387155963302752,23.54375861364214,4.147494967654293,0.2986348122866894,0.2720624085811799,0.2152608483666504,0.2140419307654802,11.21480157285661,5.900149271410992,17.024638821804565,11549.738998574445,46.91380803545423,13.589805795868427,14.005472324021348,9.73550286166077,9.583027053903686,0.5748415407118479,0.7921146953405018,0.6979591836734694,0.5843714609286523,0.1173120728929384,0.7397145256087322,0.9157175398633256,0.8497109826589595,0.7333333333333333,0.1581632653061224,0.5073857780831329,0.7119645494830132,0.6382252559726962,0.537890044576523,0.1055718475073313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022498783849521,0.0045439331392695,0.006467793030623,0.0093003872620269,0.0113580850024425,0.0138553541774911,0.0161762456015095,0.0183569648183712,0.0205592946423091,0.022799901671583,0.024963319413521,0.0267976408211915,0.0289416535441174,0.0313911053380342,0.0333663795774211,0.0356562677841585,0.0375684193066843,0.0397120538496696,0.0418349502435774,0.0437404158103921,0.0589403696579409,0.0724405323273603,0.0860726779917425,0.0985255397577672,0.1104505037277969,0.125659386055971,0.1368513875313416,0.1467327577017375,0.1563911061653363,0.1655996218794311,0.176624189388953,0.1875108412836079,0.1976441359470857,0.2067106445462315,0.2155909712119208,0.2253614905729473,0.235155935388608,0.243143578871397,0.2507107280129182,0.2578193175033298,0.2641257686506555,0.2703276343253828,0.276391509154119,0.2804221356796,0.2844036697247706,0.2893504503725304,0.2939117562193424,0.2971545907890877,0.3016565404787869,0.3055801711481741,0.3025964211492267,0.2996759291181134,0.2976499463973368,0.2950644087422203,0.292243623112962,0.2898099430903039,0.2867314736992341,0.2873729566161234,0.2875044938626676,0.2873536509071409,0.2876450409582544,0.2886867088607595,0.2892468382306676,0.2895420154899942,0.2903202521594764,0.2911669621441234,0.2937268320501853,0.2965302658872336,0.3010375771172182,0.3054853985793212,0.309600617929029,0.3119843452506875,0.3136050156739812,0.3175481133505076,0.3204001495886313,0.323094958968347,0.320618711518246,0.3252533280349692,0.328629579375848,0.3300641267446246,0.0,2.351342271950321,51.72341730179985,148.93339530651429,218.80283233976076,fqhc1_100Compliance_baseline_low_initial_treat_cost,99 -100000,95726,49064,469.2560015042935,4639,47.22854814783862,3750,38.66243235902472,1458,14.907130769070054,77.33641368994157,79.71241749358603,63.332022412709286,65.08994296992422,77.15046914704854,79.52813441234777,63.26140916860655,65.02202983356324,0.1859445428930257,184.28308123826295,0.0706132441027378,67.9131363609855,240.05718,169.00035408824937,250775.0872281303,176545.71076849484,561.53699,379.5986127780117,586096.7971084137,396037.5892125285,502.13718,246.7726374508665,521339.3957754424,255303.49465349512,2636.19484,1253.8982720807433,2718434.9393059355,1274721.2524380137,869.66853,400.2932555409389,894488.2685999623,404260.1048324523,1414.80626,609.7500930226586,1447852.8508451204,610314.610325519,0.38224,100000,0,1091169,11398.867601278647,0,0.0,0,0.0,48957,510.89568142406455,0,0.0,45494,472.0138729289848,1052321,0,37771,0,0,0,0,0,85,0.8879510268892464,0,0.0,1,0.0104464826692852,0,0.0,0.04639,0.1213635412306404,0.3142918732485449,0.01458,0.3696907216494845,0.6303092783505154,22.912040057860903,4.010243110474065,0.3048,0.2917333333333333,0.1965333333333333,0.2069333333333333,11.516091841845634,6.311447393549869,15.696079119927782,11242.380899647307,43.29933974530184,13.544534424613882,12.991473279055354,8.24086783358511,8.522464208047493,0.5848,0.8171846435100548,0.7016622922134733,0.5617367706919946,0.1069587628865979,0.7619453924914675,0.9282786885245902,0.8562300319488818,0.7525252525252525,0.1329479768786127,0.504266873545384,0.7277227722772277,0.6433734939759036,0.4916512059369202,0.099502487562189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0041886834552074,0.0063861109701,0.0086897308724286,0.0107524694058167,0.012955003768358,0.0149807768792257,0.0172044108637941,0.0194452680114095,0.0217021886452511,0.0236686997078571,0.0257589601962978,0.0277340737312972,0.0298286090969017,0.0321528809641736,0.0341919212800264,0.0365615001501392,0.0381459234591723,0.0402527619859276,0.0424470323534926,0.0575662016539971,0.0716460384386018,0.0858527070815113,0.0984211411512424,0.1108241989881956,0.1267715786469948,0.137550881953867,0.1481012792836862,0.158170562493329,0.1666220313018886,0.1782189938122141,0.1886698601844743,0.198530929795395,0.2070995576429468,0.216005976971082,0.2243733622281437,0.2332323187307812,0.2406391873061536,0.247724309924616,0.2539942131085671,0.2590944809096792,0.2647759381640707,0.2695542273983605,0.2730513848178501,0.2764360709003176,0.2807515893803569,0.2842318210766867,0.2869622631926456,0.2896546375762589,0.2924119205472591,0.2886014333929459,0.2853802134918015,0.2823382034175041,0.2793444516641398,0.2764987225952112,0.2721735004668105,0.2694071871441225,0.2705143756351834,0.271195401906776,0.2710575073042115,0.2719445689526371,0.2736775793846093,0.2742405933580565,0.2741022053434606,0.2756997060159181,0.2768485915492957,0.2766477967741018,0.2816963304768183,0.286079048618398,0.2911006376490158,0.2935080350620891,0.298398291510945,0.2977449356605937,0.3043878490334458,0.3096135721017907,0.3127463863337713,0.317560301121524,0.3231608730800323,0.3233857840477482,0.3353383458646616,0.0,1.9454426822301216,50.979151841443006,140.4224918553573,184.37868981437643,fqhc1_100Compliance_implementation,0 -100000,95604,48454,463.4847914313208,4570,46.51479017614326,3651,37.540270281578174,1386,14.08936864566336,77.26635035352784,79.70485529784668,63.26822878755484,65.07240056869412,77.0817134629938,79.52721860419972,63.19689432675609,65.00663759636349,0.1846368905340369,177.63669364696,0.0713344607987522,65.76297233063144,239.91066,168.68209011794164,250942.0735534078,176438.31860376307,554.33612,374.7005642741247,579192.3873478097,391296.9481131803,490.52038,240.6995460508901,509324.996862056,248754.04543172973,2592.47196,1213.6618352018463,2668519.130998703,1226309.4694801958,827.45027,376.4909632967681,847976.8419731392,376281.8222007107,1346.0096,581.4969679196071,1369399.8995857914,573937.002356974,0.37894,100000,0,1090503,11406.457888791265,0,0.0,0,0.0,48433,505.94117400945566,0,0.0,44191,458.5163800677796,1054246,0,37803,0,0,0,0,0,88,0.920463578929752,0,0.0,0,0.0,0,0.0,0.0457,0.1205995672138069,0.3032822757111597,0.01386,0.358625026199958,0.6413749738000419,23.157106346453585,4.031321228218559,0.3075869624760339,0.2774582306217474,0.2111750205423171,0.2037797863599014,11.09522921956341,5.952920892281461,14.787266537077723,11195.006011906093,41.827207283480085,12.495733290806545,12.685808191295587,8.545152393644315,8.100513407733635,0.5798411394138592,0.8124383020730503,0.6705253784505788,0.5901426718547341,0.1155913978494623,0.7447199265381084,0.920704845814978,0.8299319727891157,0.7288135593220338,0.1219512195121951,0.5097580015612803,0.7245080500894454,0.6139927623642943,0.5488215488215489,0.1137931034482758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0044838955110322,0.0070582022403444,0.0093439889376931,0.0117363245862258,0.0138610026804733,0.0160638471587197,0.018331749486527,0.0204530572153556,0.0224408238549031,0.0244470672756196,0.0268283908105052,0.0289061374070947,0.0309625933105126,0.0327125489345439,0.0346950601187889,0.0364742586469594,0.038606549714891,0.0403838547846541,0.0423450390596481,0.0572713016204913,0.0714824673555364,0.0846971575033088,0.0974415150781027,0.1093870480496023,0.1242557789690022,0.1337932354004124,0.1433082626553582,0.152762463468682,0.1614456277605235,0.1734312963921974,0.1840259331938376,0.1948459334938079,0.2028201110952855,0.2115687722508183,0.2205657237936772,0.2298197010657074,0.2380786163876096,0.2451801274695811,0.251525439280635,0.2567719371388203,0.2624467238068474,0.2677459084341915,0.2723022703843111,0.276063629403687,0.2810029476696143,0.2836338592536939,0.2870270201473826,0.2901012402578908,0.2939043525269972,0.2908210611256808,0.2878242470872719,0.2849728543700244,0.2820239142663455,0.2786571526057351,0.274657461010891,0.2709053868384896,0.2712053205779248,0.2710406160556086,0.2712371721778791,0.2713582879697701,0.2726645236357899,0.274296341183108,0.2739829791026155,0.2758323146616812,0.2775930160049886,0.2785907089075152,0.2842752690871434,0.2884077235203582,0.2938849774543153,0.2979754517867657,0.3032912462359343,0.307982638233629,0.3109503353681513,0.3160285528877352,0.3200280112044817,0.3203737191078963,0.3256880733944954,0.3317984832069339,0.3288490284005979,0.0,2.57986994723735,46.73103207198339,134.00448332791584,188.2981913981128,fqhc1_100Compliance_implementation,1 -100000,95716,48561,463.8409461323081,4679,47.84988925571483,3759,38.80229010823687,1392,14.240043461908146,77.34534288058313,79.71428141106506,63.32656324425341,65.07473115076615,77.16324808555042,79.53467670199868,63.25848053453901,65.00995397800847,0.1820947950327109,179.60470906638193,0.0680827097143961,64.77717275768669,240.06972,168.83960948125022,250814.61824564336,176396.4326562437,556.5216,376.3611869618871,580961.4693468177,392737.5433176137,498.50014,244.33161401544376,518101.9265326592,253125.265080223,2617.94475,1231.2099286673622,2701542.626102219,1252741.1495124777,858.14548,396.6118262459141,885053.8154540516,402871.3180408232,1341.47536,572.558832504918,1372424.8192569686,571399.5203687132,0.37882,100000,0,1091226,11400.664465711065,0,0.0,0,0.0,48549,506.72823770320537,0,0.0,44925,466.6617911320992,1054219,0,37852,0,0,0,0,0,98,1.0238622591834177,0,0.0,1,0.0104475740733001,0,0.0,0.04679,0.1235151259173222,0.2974994656977986,0.01392,0.3652423993426458,0.6347576006573542,23.0046108684833,3.92896697535772,0.3131151902101622,0.2870444267092312,0.209364192604416,0.1904761904761904,11.38214890206388,6.3170959618705504,14.96738436826932,11205.719886609788,43.45700164920588,13.453531772265404,13.443036245812932,8.721187398533221,7.839246232594312,0.5948390529396116,0.8202038924930491,0.7000849617672048,0.5667090216010165,0.1131284916201117,0.7946735395189003,0.9281314168377824,0.8801169590643275,0.7553191489361702,0.2040816326530612,0.5052023121387283,0.731418918918919,0.6263473053892216,0.5075125208681135,0.0896309314586994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0047534104960168,0.0071019844973824,0.0093032703635994,0.0113181069372978,0.0133884482635742,0.01540217934212,0.0174351540887886,0.0197902398135465,0.0221002958307315,0.0241424558669755,0.0263606490039022,0.028368064841291,0.0306895095241529,0.0327867160651812,0.0348256649334808,0.0367551109177903,0.0390618513906185,0.040944914637443,0.0426740308461859,0.0578995738992397,0.071347085727443,0.0848592325208029,0.0980945065813701,0.1100770285955471,0.1256508487491004,0.1351996942480412,0.1445582941013569,0.1545153361120017,0.1629091767128577,0.1743468189409039,0.1855220276956724,0.1965377668487367,0.2059522115563533,0.2142322344806324,0.2237097292564804,0.23266349039867,0.2400994275045271,0.2465223409807792,0.2522755635955622,0.257212900540028,0.2622653857840731,0.2675379975161157,0.2718521001963696,0.2758599762095501,0.280093590296164,0.2833616765868054,0.2865179954789058,0.2889771727315078,0.2918760634719639,0.2882067851373182,0.2846905089408528,0.2818390739774697,0.2789202156100521,0.27767959247323,0.2746891393787375,0.2709063358272564,0.271190320470896,0.2718533992289533,0.2709424316120213,0.2722517961508394,0.2734195599693823,0.2736771991174389,0.2743352986984091,0.2750898203592814,0.2761356565028002,0.27676933066087,0.2817010950721752,0.2862006670372429,0.2919982749833379,0.2972777752697395,0.3019642951182263,0.3052211340527727,0.3081979599546656,0.3119359940459578,0.3154448731439261,0.3164480627167194,0.3162086818000796,0.3213221349227851,0.3247204010798303,0.0,1.8006318564193742,51.11197687226191,142.2109945273291,184.21241328125063,fqhc1_100Compliance_implementation,2 -100000,95658,48688,465.4916473269356,4556,46.43626251855569,3636,37.38317757009346,1358,13.778251688306256,77.2498286400838,79.6479917361585,63.26585613190741,65.03865252603089,77.07757333672892,79.48035281883675,63.20066724661808,64.97763052126103,0.1722553033548877,167.63891732175296,0.0651888852893307,61.02200476985331,240.49476,169.15428472955142,251411.0267829141,176832.34515623513,552.49401,373.98191827166175,576959.6270045369,390344.7158331365,492.6629,241.99359009637223,510829.6535574651,249780.85291350863,2564.06315,1211.8425242813205,2636803.665140396,1223336.8006690678,842.82358,387.3719189148022,863742.0079867862,387671.9360076953,1320.67306,563.9353328697284,1341693.8259215122,557451.3898660454,0.37902,100000,0,1093158,11427.773944677914,0,0.0,0,0.0,48282,504.0874783081394,0,0.0,44454,460.5260406866127,1047789,0,37629,0,0,0,0,0,82,0.8572205147504652,0,0.0,1,0.010453908716469,0,0.0,0.04556,0.120204738536225,0.2980684811237928,0.01358,0.3622180054817626,0.6377819945182374,22.89777860586867,3.9617792510971537,0.2912541254125412,0.2986798679867987,0.2136963696369637,0.1963696369636963,11.509846898366217,6.285337817622844,14.556184380221245,11210.29271430093,42.026209618888124,13.493818454982462,11.926713853593824,8.689589618317003,7.916087691994834,0.597084708470847,0.8250460405156538,0.6978281397544853,0.5881595881595881,0.1106442577030812,0.7520361990950226,0.933481152993348,0.8741007194244604,0.7384615384615385,0.1270718232044199,0.5294350059265113,0.7480314960629921,0.6350832266325224,0.5378006872852233,0.1050656660412758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0045432880018659,0.006790430466601,0.0091140012192643,0.0114636205511082,0.0134744260892591,0.0156116164294163,0.0178996273038239,0.020065453057885,0.0222140289427597,0.0243607233339829,0.0263995891114535,0.028584658126254,0.0306834461931706,0.0325521371051001,0.0344503050987692,0.0365887777835345,0.0385593704253574,0.0405859525370121,0.0426033281895149,0.0581874033518619,0.0716926202469342,0.0853781406771478,0.097870235915567,0.1096676832807437,0.1248386072600275,0.1356425340327479,0.1449122470509254,0.1535721544171917,0.1622913489011579,0.1735696792499649,0.1836752396235416,0.1948166643043274,0.2042680586474246,0.2125562814513993,0.2217667577595592,0.2308398245142806,0.2388315569841538,0.2464983444650517,0.2521706174200661,0.2575361864633028,0.2637486497910111,0.2689629770448172,0.2726452869665596,0.2759385125094399,0.2794548307775952,0.2837663233689175,0.2874295046826753,0.2908236759801186,0.2932830887214068,0.2893185283125784,0.2857890676658585,0.2826476354353253,0.2799843729652298,0.278608814607744,0.2744119852479838,0.271296018209696,0.2719191786663167,0.2724805870808089,0.273223751137763,0.2745189788126076,0.2755444216506233,0.2757951009668595,0.2751009841772858,0.2762785114045618,0.2777374721459294,0.2786537809426924,0.2835774481450384,0.2898570833911475,0.2928476093271571,0.2959504354853192,0.3002556477278656,0.3059202378003468,0.3089504088828869,0.312580823942361,0.3207897793263647,0.3253193087903832,0.3292634107285828,0.3371028540656973,0.3322222222222222,0.0,2.465643568814342,47.69498810242736,139.2714436044308,179.9634995610142,fqhc1_100Compliance_implementation,3 -100000,95743,48880,467.6373207440753,4687,47.71105981638345,3731,38.36311793029255,1379,13.96446737620505,77.32698317968122,79.6861127346049,63.31555014592704,65.06089198348886,77.14950970253555,79.51618724626995,63.24720130617325,64.998282709991,0.1774734771456678,169.9254883349539,0.0683488397537885,62.60927349785561,240.15442,168.94653488151482,250832.1234972792,176458.13780800143,559.70959,378.15731093351786,583992.4798679799,394367.8816555967,498.38716,244.7480847162332,517160.51304011786,252891.94792252485,2601.43735,1230.662653723927,2675052.8498166967,1243329.699010817,846.18527,387.9765375176754,870683.0368799808,392114.3955120144,1336.18154,573.7226590937668,1354949.7300063714,564595.115983437,0.38107,100000,0,1091611,11401.460158967237,0,0.0,0,0.0,48852,509.614279895136,0,0.0,45056,467.25086951526487,1051231,0,37700,0,0,0,0,0,97,1.0026842693460618,0,0.0,0,0.0,0,0.0,0.04687,0.1229957750544519,0.2942180499253253,0.01379,0.3597710547833197,0.6402289452166803,23.062334061765263,3.853796438888098,0.3122487268828732,0.2902707049048512,0.2026266416510319,0.1948539265612436,11.292753801563336,6.358216548844752,14.69400672309492,11192.421453468103,42.97136164877325,13.40596072936263,13.36004511035768,8.255761097873705,7.949594711179242,0.5944786920396676,0.8162511542012927,0.6987124463519313,0.5687830687830688,0.123796423658872,0.7632933104631218,0.9471458773784356,0.8210227272727273,0.7426900584795322,0.1529411764705882,0.5177387914230019,0.7147540983606557,0.6457564575645757,0.517948717948718,0.1149012567324955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.0043195230273164,0.0065261961309705,0.0089198634590377,0.0112687515891177,0.0133496257828012,0.0153464942692825,0.0177000183737214,0.0198785822329422,0.022005916009048,0.0240952742105748,0.0262482549067914,0.0281957978701533,0.0302219018689182,0.0323712063380717,0.0340790493412554,0.0359154346295606,0.0379233442248846,0.0398586498986644,0.0420360666326349,0.0564458038855424,0.0699160964994873,0.0832442179866222,0.0960766173966064,0.1080915837409343,0.1231985958828069,0.1335207084902158,0.1430275024223,0.1525947303725081,0.1613609530964903,0.1732846148871499,0.184881139329615,0.194509428419094,0.2040916798862206,0.2125615031535845,0.2213934208192942,0.2305759092127602,0.2376667980406508,0.2451758719774665,0.2519020991841598,0.2578486756806816,0.264093947944596,0.2688885466156416,0.2722124913021571,0.2760683241140356,0.2799585757964296,0.2841257716725729,0.2877216204864514,0.2914292374637381,0.293397855984388,0.2906127717939408,0.2871808262100431,0.2841233460354064,0.281622463998153,0.2792560291892854,0.2765238401076551,0.2726554600606673,0.2730470923192721,0.2731852608288656,0.2731016365508182,0.2736569555174726,0.274435056003144,0.2768231830803599,0.2776493084893494,0.2795285003825554,0.2800093293251788,0.2812906509812793,0.2857187412282069,0.2906738094409851,0.2938312325754899,0.3002202544163257,0.3019470323458599,0.3045310853530031,0.3102416398593551,0.3138955526849972,0.3143222209315832,0.3192608173076923,0.3153081510934393,0.3161483906164757,0.3236074270557029,0.0,2.3251751107006164,50.60139769102962,136.0658908384909,185.69825555242963,fqhc1_100Compliance_implementation,4 -100000,95765,48651,463.9586487756487,4621,47.18843001096434,3643,37.52936876729494,1351,13.721088080196314,77.39144353273707,79.73062811455165,63.36142006586866,65.08738528063813,77.2127310332069,79.555438428296,63.2935755886521,65.02314900174781,0.1787124995301781,175.18968625564924,0.0678444772165534,64.23627889031991,240.12296,168.97984994457207,250741.64882785987,176452.40217884627,560.78883,379.1925398564789,585048.4728241008,395434.0172672709,494.73746,242.75746307452985,513908.9646530569,251342.72270615087,2556.31027,1203.8213355564772,2631223.4741293797,1220127.4290609667,834.83546,379.89691548467925,856492.9045058215,382333.44004674855,1309.24456,565.8293573924602,1330313.1624288624,560258.0862305706,0.37964,100000,0,1091468,11397.34767399363,0,0.0,0,0.0,48826,509.2779199081084,0,0.0,44685,463.885553177048,1054394,0,37749,0,0,0,0,0,94,0.9815694669242416,0,0.0,1,0.0104422283715344,0,0.0,0.04621,0.1217205773891054,0.2923609608309889,0.01351,0.3623038810900083,0.6376961189099918,23.238922058589843,3.965669709436444,0.3110074114740598,0.2841065056272303,0.2053252813615152,0.1995608015371946,11.301846767988232,6.223464318491868,14.587245925624728,11256.635570444538,41.84865683814823,12.69275226900552,12.865733722251845,8.3489440538389,7.941226793051959,0.5909964315124897,0.8019323671497585,0.7087378640776699,0.5868983957219251,0.1114167812929848,0.7607142857142857,0.9237875288683602,0.8858024691358025,0.7121951219512195,0.120253164556962,0.5156559651208878,0.7142857142857143,0.6378244746600742,0.5395948434622467,0.1089630931458699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021666936659646,0.0045096628393647,0.0068484811590673,0.0090695808492702,0.0111640959420849,0.0138221643188665,0.0159262278377827,0.017997428938723,0.0201452665774499,0.0222845215683064,0.0243545081967213,0.0266332895600787,0.0287199827371839,0.0309486316526178,0.0330697784695949,0.0352247254847273,0.0371757984723975,0.0394316531839867,0.0414119995010602,0.0432921176262252,0.0578976483972987,0.0719024002343733,0.0859978180597516,0.099228132163964,0.1111814012335916,0.1269443475134558,0.1375002651169696,0.1471110780131281,0.1559786845505708,0.1634365955622253,0.1741297281005791,0.1863435313456401,0.197159220578806,0.2055581651937383,0.2130428569858315,0.2221964064436183,0.2304048858228666,0.2378256963162623,0.2456199995467011,0.2526278465955232,0.2583820505118192,0.2627656218969404,0.268107034795764,0.2726576247650741,0.2770139192007372,0.2812184863615121,0.2847045306958389,0.2877492153449305,0.2909281309389908,0.2940874442118567,0.2909098231906238,0.2874168552424055,0.28448106454058,0.2812765283952749,0.2788344919390623,0.2757329436478217,0.2719604695810909,0.2726946596004892,0.2726825294457078,0.2738936011640699,0.2746746709422424,0.2755622011922797,0.2757764752508291,0.275643167390578,0.2780574332422456,0.2784222135720773,0.2801583934379861,0.2859955005624296,0.2910588399525372,0.29488038466086,0.3008645272258181,0.3037847552595412,0.3063012327138477,0.3080579447713897,0.3122276814684342,0.319027680856013,0.3252008330853912,0.3255445544554455,0.3295789755966747,0.3302134032197679,0.0,1.8968772340462885,48.79005103479864,133.32070622295325,183.64840981076023,fqhc1_100Compliance_implementation,5 -100000,95724,49105,468.7643642137813,4699,47.80410346412603,3767,38.73636705528394,1483,15.126822949312606,77.37264048070351,79.73204403024222,63.34029949113111,65.08185629055274,77.17975577901184,79.5413333196551,63.267575779301694,65.01205622207105,0.1928847016916677,190.7107105871262,0.0727237118294183,69.8000684816833,239.2181,168.33231215938918,249903.76499101584,175851.52247224224,559.04631,378.3259952358879,583397.1104425222,394604.8343760476,500.82638,246.40594478067388,518722.3684760353,254053.35145698432,2656.84574,1265.3001678799776,2735958.777318123,1282579.6238254623,873.92473,405.1694889647867,899161.6000167148,409467.0186837012,1439.23674,621.7096999281833,1470106.911537337,622130.8201656861,0.3817,100000,0,1087355,11359.262045046176,0,0.0,0,0.0,48769,508.8274622874096,0,0.0,45262,468.4300697839622,1055110,0,37889,0,0,0,0,0,95,0.981989887593498,0,0.0,0,0.0,0,0.0,0.04699,0.1231071522137804,0.3155990636305597,0.01483,0.3695961031053379,0.630403896894662,22.67744059483457,4.098301305772433,0.3055481815768516,0.287231218476241,0.2025484470400849,0.2046721529068224,11.452575987096484,6.265715465036308,15.987795029662069,11285.910165485871,43.67389421864,13.414046777523346,13.103020169599738,8.581465895890405,8.575361375626501,0.581629944252721,0.8179297597042514,0.6907037358818419,0.5543905635648755,0.1141374837872892,0.7475247524752475,0.931106471816284,0.8427299703264095,0.7183098591549296,0.1256830601092896,0.50293542074364,0.7280265339966833,0.6277641277641277,0.4909090909090909,0.1105442176870748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0043983663210807,0.0064518092455643,0.0091200844978875,0.0112660016878666,0.0134067634423926,0.0155753078365815,0.0178926847192593,0.0202393973157243,0.0226225816357866,0.0245450351155995,0.026785897620172,0.0290482457944309,0.0312670573332372,0.0333749445470395,0.0354913390384058,0.0376233318493824,0.0396622897089634,0.0415722629861356,0.0433578086757277,0.0575509522218509,0.0715885073346307,0.0849279161205766,0.0983131010562825,0.1102010267438305,0.1259964055396976,0.1369007212558337,0.1467611659164192,0.1561979411387809,0.1651922148946437,0.1774169233088536,0.1884763512051581,0.1986820499994563,0.2070643556235988,0.2153631192721111,0.2240143567701698,0.232084463343043,0.2391057175985861,0.2460872725620698,0.2529838681938568,0.2581481481481481,0.2647657602845509,0.2701050711332757,0.2741666566709448,0.2795129183579223,0.2826604203908032,0.2853763844565421,0.2886656919458394,0.2919803388953563,0.2950316288877174,0.2916565835820494,0.2876529813331868,0.2840530393576781,0.2823575230429703,0.280688223079205,0.2767349434423723,0.2734334296405059,0.2734733324597038,0.27327470359093,0.27371167876733,0.2735443532629933,0.273779399360521,0.275542504893998,0.276225560906327,0.2764774652255863,0.277968552322429,0.279510461902882,0.2849420609524993,0.2887433738696601,0.2911085946346987,0.2959572845156369,0.2973624875465366,0.3012956272580042,0.3012373453318335,0.3036934441366574,0.3054003724394786,0.3070452155625657,0.3080135215748658,0.3112493239588967,0.3149754809505847,0.0,2.4024889418024227,52.60226766337369,140.6451395672695,179.98849355010967,fqhc1_100Compliance_implementation,6 -100000,95747,48681,465.1947319498261,4732,48.283497133069446,3759,38.71661775303665,1434,14.621868048085055,77.33281654085012,79.69902958615667,63.319784280511655,65.07098701000099,77.15435689197463,79.5229272198859,63.25335722989247,65.00742787580643,0.1784596488754886,176.10236627076858,0.0664270506191897,63.55913419456272,239.72806,168.65988853916113,250376.575767387,176151.6168017391,557.39436,376.4883212974893,581612.1758384075,392670.4453377019,489.32431,239.99235762353507,507227.9549228696,247642.30248519935,2649.96319,1226.6198442574898,2733745.569051772,1247178.52701128,856.77734,388.0776366685792,883514.0422154219,393995.09819480433,1397.00272,582.190273891848,1427189.7396263068,582695.811258939,0.3811,100000,0,1089673,11380.753443972137,0,0.0,0,0.0,48635,507.3997096514773,0,0.0,44362,459.617533708628,1057914,0,37913,0,0,0,0,0,84,0.8668678914221856,0,0.0,0,0.0,0,0.0,0.04732,0.1241668853319338,0.3030431107354184,0.01434,0.3640413039076736,0.6359586960923264,23.05903877048497,4.095548702888366,0.3101888800212822,0.2825219473264166,0.200585262037776,0.2067039106145251,11.383244250582244,6.215229587356652,15.13958235029386,11195.769200296312,42.964518859964905,12.961879805176205,13.25396458767179,8.302095284016813,8.446579183100097,0.5812716147911678,0.8069679849340866,0.7101200686106347,0.553050397877984,0.1068211068211068,0.766269477543538,0.9200913242009132,0.8825396825396825,0.72,0.1779141104294478,0.5056221889055472,0.7275641025641025,0.6462984723854289,0.5025906735751295,0.0879478827361563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021684280922899,0.0045642185550698,0.0066808813077469,0.0088635000660696,0.0111097546087168,0.0133331975228161,0.0154702780978798,0.0177029096477794,0.0196315003783153,0.021933013178239,0.024257212573561,0.0261120466587259,0.028224479723616,0.0301856867732932,0.0323971853655516,0.0345437067816056,0.0363918806959403,0.0385317863888254,0.0403855551974046,0.0424093423478795,0.0570942383781018,0.0712566956812855,0.0845060084306776,0.0970848270134457,0.1095136707633282,0.1247409381212198,0.1352472055486033,0.1459359933588054,0.1546069143766487,0.1629206253887232,0.174665719268781,0.1852965675403771,0.1967599891274803,0.2071509772200603,0.2146918128333425,0.223615893013318,0.231427455792938,0.2391426642664266,0.2460115738114149,0.2519888737537345,0.2580118934678483,0.2633506505663203,0.2685095300106547,0.2724734584321902,0.2773486835713591,0.2811402373645876,0.2847525495839329,0.2875449726032621,0.2909145023745745,0.2939423508003903,0.2900275704391096,0.2858222698661389,0.2833807018037538,0.2804450409108619,0.2775822903211438,0.2734861108987785,0.2692234788652303,0.2691262644449537,0.2686239468981363,0.2689463955637708,0.2694252187377572,0.2699440856827847,0.2705867644607435,0.2714165111525815,0.2724838632560363,0.2742709008425146,0.2754670976156049,0.2808240590221333,0.2843096234309623,0.2895504731861198,0.2926190261089529,0.2953288746116173,0.2975345536047815,0.3016625291506808,0.304798962386511,0.3088235294117647,0.3111378325567413,0.3056716417910448,0.3122282608695652,0.3191811978771797,0.0,2.162678106001951,47.28696701077236,142.0938044644324,192.6741559118063,fqhc1_100Compliance_implementation,7 -100000,95777,49075,468.6093738580244,4631,46.973699322384284,3702,38.03627175626716,1377,13.928187351869449,77.34910350822409,79.67897000546614,63.34642956891118,65.06715328852476,77.17113482762855,79.50700238316409,63.277320069208834,65.00330428994596,0.1779686805955407,171.96762230204854,0.0691094997023427,63.84899857880555,242.2783,170.46316989958655,252960.8361088779,177979.23290517196,564.76239,382.05799001326807,589056.2452363302,398296.36711860826,505.3062,248.53873871471257,524341.8879271642,256879.44766373828,2590.60036,1239.0323548487622,2662824.300197333,1251690.2839712764,845.44709,393.3655639156432,864348.3090929973,392363.6897170647,1333.09284,583.1527983655347,1350703.1959656286,572707.3693547159,0.38104,100000,0,1101265,11498.219823130814,0,0.0,0,0.0,49173,512.7849066059701,0,0.0,45594,472.7544191194128,1038973,0,37361,0,0,0,0,0,113,1.1798239660878918,0,0.0,2,0.0208818401077502,0,0.0,0.04631,0.1215357967667436,0.2973439861800906,0.01377,0.3695289704043351,0.6304710295956648,22.86084049146688,3.972074217481009,0.3111831442463533,0.2868719611021069,0.2093462992976769,0.1925985953538627,11.478463083362945,6.360211856429889,14.83788775384347,11154.651481110302,42.82541381408286,13.114089876816898,13.217447091424065,8.550249539688743,7.943627306153147,0.5948136142625607,0.8097928436911488,0.7083333333333334,0.5716129032258065,0.1164095371669004,0.7618636755823986,0.9290322580645162,0.8550295857988166,0.7540106951871658,0.1242603550295858,0.5186787259142744,0.7169179229480737,0.6474201474201474,0.5136054421768708,0.1139705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556545690213,0.0046929322210847,0.006837710888598,0.0090400300657179,0.0112864521901818,0.0132945152489922,0.0153182902219776,0.0177272031433382,0.0199552462986236,0.022068302265147,0.0242285784534688,0.026598255515649,0.0285702540491655,0.0309090534809996,0.0329827817300752,0.0352520734994887,0.0371891847145621,0.0390286389747205,0.0409293529650141,0.0428923993293832,0.0569266892773284,0.0705141614023344,0.0840148465022647,0.096813519421557,0.1092118159112225,0.1248150653083653,0.1344286622853508,0.1447820399655432,0.1546030865119853,0.1629718522645694,0.1747306330258441,0.1856898751973698,0.1956985038274182,0.2047002985531654,0.2131147540983606,0.2219035173208115,0.231093702922567,0.2387714031951611,0.2457008031217387,0.2517969966120318,0.2566951896392229,0.2616313068700147,0.2667116253756418,0.2709012073591414,0.2748437215512532,0.2782322647413942,0.281954746150671,0.2848767708624768,0.2878742766896658,0.2920041153348985,0.2884804284349476,0.2844513494562303,0.2812864756922471,0.2775094089316356,0.2746170029928586,0.2712606837606837,0.2664753284026934,0.2667756703727926,0.2668854019686177,0.2678825369738339,0.2691103574223845,0.2700989943122552,0.272123156403633,0.2720032037020557,0.2737200057474017,0.274752089714968,0.277162492190606,0.2830875431440225,0.2872143082146232,0.2925477152134315,0.2946165358973196,0.299498812978106,0.2998678164537043,0.3055892153892759,0.3072955738934734,0.3106807651182131,0.3177155106415557,0.3142280524722503,0.3216725881388357,0.3271173271173271,0.0,2.3213083347395957,49.960991670716496,140.42977152765783,180.3363052395471,fqhc1_100Compliance_implementation,8 -100000,95663,48285,460.30335657464224,4648,47.18647753049768,3675,37.79935816355331,1386,14.080679050416569,77.31532774038504,79.7082731865422,63.31028192710126,65.07667296529958,77.13137114000669,79.52901668486669,63.23937322733921,65.00984539226009,0.1839566003783517,179.25650167551055,0.0709086997620502,66.82757303948961,241.48168,169.8439984270067,252429.54956461745,177544.08541129457,555.61146,375.7362873227718,580197.6103613728,392167.5750528121,493.11286,242.89085191741253,511700.2498353596,250837.39827144888,2622.94795,1238.0788579374655,2702744.6975319614,1255090.858469278,846.97148,392.0328253385798,869744.4884647146,394180.6292282069,1344.4845,585.3514294716454,1368457.8781765157,580226.8900826337,0.3769,100000,0,1097644,11474.07043475534,0,0.0,0,0.0,48549,506.8730857280244,0,0.0,44501,461.4636797926053,1047367,0,37525,0,0,0,0,0,97,1.0035227831031852,0,0.0,1,0.0104533623239915,0,0.0,0.04648,0.1233218360307774,0.2981927710843373,0.01386,0.3613168724279835,0.6386831275720165,23.10127944188184,4.0340990895310105,0.3115646258503401,0.2829931972789116,0.2005442176870748,0.2048979591836734,11.240664041245166,6.061859072619913,14.94078632281438,11075.378827939046,42.26436584265264,12.868707332280106,13.098031428106472,8.169797370158827,8.127829712107225,0.5858503401360544,0.825,0.6917030567685589,0.5549525101763908,0.1248339973439575,0.7657192075796727,0.910386965376782,0.8571428571428571,0.7277777777777777,0.1493506493506493,0.5027844073190135,0.7486338797814208,0.622991347342398,0.4991023339317774,0.1185308848080133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325688352209,0.0049271072000648,0.0069820779800686,0.0091540853026639,0.0113525390625,0.0134351922587216,0.0157174329892701,0.0178948981155201,0.0200542005420054,0.0222827533946382,0.0245318236826451,0.0266047600949142,0.0287016367134054,0.0309428129829984,0.0331434115728411,0.0352562776651636,0.0374134858469062,0.0395939929218602,0.0416272272438864,0.043606499286079,0.0569822596485362,0.0701392524343,0.0833245869980478,0.0956540039987372,0.107507703997636,0.1227386761794874,0.1331167107344992,0.1432558535909836,0.1526226336436809,0.1613460712752254,0.1728520151337134,0.183919870059556,0.1944876832812653,0.2029370889552761,0.2109935131444179,0.2198411642042681,0.2284338802819261,0.235859461162754,0.2427655105863654,0.2486619677955418,0.2542349331326347,0.2599302483439833,0.2657733374369658,0.2692607563962624,0.2730132510657937,0.2763042808746535,0.2802377228651861,0.2830351807351464,0.2863203093676845,0.289419894238504,0.2853375669348545,0.2822699327437523,0.2785794655414909,0.275263135097674,0.2728499807173158,0.2699229970054391,0.2659028862693114,0.2669280405129461,0.2676722158926658,0.2686336507034247,0.2685228266736149,0.2689512961508248,0.2703682861251797,0.2710602356079128,0.271936116291302,0.272680212242785,0.2748446764447218,0.2776156862745098,0.2813309982486865,0.2861952861952861,0.2921771485615754,0.2947918867525882,0.2983359497645212,0.3012259194395796,0.3042579189773475,0.3062212253571007,0.3106197352587244,0.3155196213764543,0.3219923788786064,0.3310785419015408,0.0,2.4003059290266675,49.9913276286542,132.29195164246974,183.27158092981776,fqhc1_100Compliance_implementation,9 -100000,95632,48591,465.3672410908482,4605,46.99263844738163,3703,38.19851095867492,1384,14.158440689309018,77.3146043072854,79.73293472707776,63.296484254502126,65.08252885110788,77.13718135224418,79.5573951252593,63.22897155197976,65.01773556919731,0.1774229550412229,175.53960181845696,0.0675127025223645,64.79328191056766,240.1531,168.84867966716376,251122.11393675755,176560.85794207352,554.92853,374.5637964448592,579762.7676928225,391159.8590899064,493.24721,241.777516869018,511757.4138363727,249872.30895564443,2613.15808,1233.156651444324,2698923.843483353,1255890.7284636144,844.92586,390.0576547361447,871733.1855445877,396088.83505118,1345.51008,580.3959143146068,1378242.9103229044,583031.8639830542,0.38018,100000,0,1091605,11414.64154257989,0,0.0,0,0.0,48426,505.8348669901288,0,0.0,44509,461.44595951146056,1055849,0,37841,0,0,0,0,0,95,0.993391333444872,0,0.0,1,0.010456750878367,0,0.0,0.04605,0.1211268346572676,0.300542888165038,0.01384,0.3593163818257607,0.6406836181742392,22.77395121431386,4.025612481620331,0.3132595193086686,0.2927356197677558,0.1909262759924385,0.2030785849311369,11.408273729228886,6.193599356018776,14.94030598922075,11263.84726626644,42.657146198882586,13.421838991136976,13.131378463114885,7.771006061273741,8.332922683356992,0.5889819065622468,0.7896678966789668,0.7224137931034482,0.5770862800565771,0.1050531914893617,0.7530755711775043,0.9037199124726476,0.8975155279503105,0.7541899441340782,0.1111111111111111,0.5161793372319688,0.7065390749601276,0.6551312649164678,0.5170454545454546,0.1031468531468531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046751036041,0.0044822585715589,0.0066187517765054,0.0089010821521109,0.0111592610677083,0.0132308005703809,0.0152079232157974,0.0171212585555215,0.0192695175461026,0.0214129911624048,0.0234461538461538,0.0257421674370826,0.0277046212090037,0.0297154161600758,0.0318025578298702,0.0337076328142771,0.035746850132626,0.0378014721913641,0.0398813859119758,0.0418743872676831,0.0569421798570174,0.070549416016341,0.0837647404731652,0.0964611271341656,0.1086541201802809,0.1247604425856318,0.1361005193784452,0.1464100760820919,0.1561253195563114,0.1649820076266179,0.175891865068663,0.1873414977782594,0.1971106704726211,0.2057773201296994,0.2138795212590094,0.223346648912561,0.231795479178073,0.2404082276342172,0.2470721871982734,0.2540961990483288,0.2606687732212924,0.2660016139029553,0.2712923302648082,0.2755864944525652,0.2795912918962212,0.2840187146023147,0.2873625,0.2895856890571599,0.292120742033482,0.2948175673004704,0.2912583511446277,0.2882775283829606,0.2854993390893495,0.2824427480916031,0.2800688815652742,0.2747743613278262,0.2713357263713847,0.2720963428440171,0.2722706304459251,0.2730561545452925,0.2725543579606907,0.2727219236653199,0.2749340698133189,0.2763966201681045,0.2781267846944603,0.2789649845520082,0.2811224633398069,0.2858293574570915,0.2898214779961251,0.2946285356597942,0.2997359351922302,0.3036731281676159,0.3087382274059752,0.3133353356359813,0.3173441985369015,0.3226528448580515,0.3308789691670502,0.3362295413214791,0.3362350380848748,0.3412759415833974,0.0,2.0767460851528896,49.44400524753996,138.0295418577397,184.7919170278536,fqhc1_100Compliance_implementation,10 -100000,95644,48406,462.7890928861193,4655,47.415415499142654,3666,37.73367905984693,1347,13.717535862155492,77.29129418892526,79.69195218877772,63.29829466637945,65.07007373815028,77.11618969346138,79.52079588218972,63.231801379780535,65.00765232168511,0.1751044954638843,171.15630658800285,0.0664932865989129,62.42141646517041,240.61334,169.2439661651906,251571.80795449796,176951.99507045982,552.99584,373.7618237527527,577608.4438124712,390211.41289861634,492.87918,242.85824027365447,511636.474844214,251099.75273809445,2556.08592,1218.9936320575175,2633297.7918113,1235309.1172028747,825.30537,380.8535668082847,848977.5521726402,384283.6840871188,1305.47188,560.7272349759575,1331085.692777383,557158.4376439629,0.37891,100000,0,1093697,11435.082179749905,0,0.0,0,0.0,48377,505.1858977039856,0,0.0,44610,462.6949939358454,1052560,0,37756,0,0,0,0,0,72,0.7527916021914599,0,0.0,1,0.0104554389193258,0,0.0,0.04655,0.1228523923886938,0.2893662728249194,0.01347,0.3651254405971387,0.6348745594028613,22.919236603543016,3.945712142374464,0.3074195308237861,0.2918712493180578,0.2059465357337697,0.1947626841243862,11.655179300454792,6.588982114002733,14.500484471536698,11217.144280265931,42.50694625273692,13.251387453000431,12.926983037688636,8.475064931195105,7.853510830852749,0.6031096563011457,0.8233644859813084,0.7036379769299024,0.5894039735099338,0.1288515406162464,0.7787234042553192,0.9417879417879418,0.8694362017804155,0.7115384615384616,0.1409395973154362,0.5202729827378563,0.7266553480475382,0.6329113924050633,0.5429616087751371,0.1256637168141593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0042279225387813,0.0064045958811648,0.0087186261558784,0.0109269602905716,0.0132504965116871,0.0153047698676509,0.0179304429513754,0.0204175527564207,0.0222390596522843,0.0243149561079662,0.026364439332005,0.0283830216241795,0.0302743029078993,0.0323646311877355,0.0344424562746294,0.036345358634484,0.0385110580417402,0.0406530289472041,0.0425159252270191,0.057175403394365,0.0717106434684236,0.0850833718341803,0.0982464265414816,0.1103969435033615,0.1254180956009992,0.1354926377697803,0.1459340846630733,0.1553412589804995,0.1638664934674553,0.1744075727192358,0.1858224065311779,0.1961057477769675,0.2043088442970212,0.2134859938730081,0.2227631637315353,0.2311378717129515,0.2391409565188028,0.245610450928984,0.2522106661779529,0.2575200148086445,0.2621455714703303,0.2677869822485207,0.2728939704454751,0.2773018361221489,0.2811140014547606,0.2847163977316826,0.2882305029525555,0.2915026416658033,0.2937345935329088,0.2910003093601624,0.2884313887284429,0.285291839752165,0.2819764923325728,0.2787644787644787,0.2751030161915412,0.2701056694507719,0.2695849130927175,0.2696799972678528,0.2704447376867934,0.2701024758770289,0.2711239124859437,0.2728848965949446,0.272417403702631,0.2723014791980309,0.273510910926458,0.2768280297901151,0.2821527626289383,0.287338285036789,0.2923422890282873,0.297076234805007,0.3027677117798435,0.305605899631273,0.3099029420685472,0.313958938783163,0.3206360507891301,0.3256563795485951,0.3346955455659992,0.3274628508530545,0.3266616314199396,0.0,2.320304668906219,50.80352602794125,137.27353806098998,176.4758463153693,fqhc1_100Compliance_implementation,11 -100000,95628,48659,464.3200736186054,4706,47.86255071736311,3733,38.44062408499602,1403,14.315890743296942,77.27514686010801,79.68772729524139,63.27600815666828,65.05715849803674,77.09426352517607,79.51002225720714,63.20678721548696,64.9916049894871,0.1808833349319343,177.7050380342473,0.0692209411813209,65.55350854964104,239.12152,168.15460171237282,250053.64537583131,175842.22290993517,556.37574,376.4687810506912,581189.4319655331,393060.0335331834,498.19278,245.35976981659311,517358.190069854,253804.0807856237,2622.30276,1247.9468778573269,2701942.809637345,1264856.9913669182,867.49086,401.6552499180174,891523.3613585979,404477.6951056426,1356.11788,584.3887976547853,1384847.115907475,581553.7986487896,0.37822,100000,0,1086916,11366.074789810516,0,0.0,0,0.0,48585,507.4141464842933,0,0.0,44992,466.7775128623416,1053612,0,37804,0,0,0,0,0,93,0.97251850922324,0,0.0,2,0.0209143765424352,0,0.0,0.04706,0.1244249378668499,0.2981300467488312,0.01403,0.3599673868732164,0.6400326131267835,23.15734871312813,4.085310413974024,0.3193142244843289,0.2842218055183498,0.2011786766675596,0.1952852933297615,12.014663130344372,6.81838623041316,14.946067616463814,11226.767072082295,43.10576793016979,13.031351929336322,13.658956932695869,8.514937010226143,7.900522057911449,0.6102330565229038,0.8162111215834119,0.7340604026845637,0.5872170439414115,0.1316872427983539,0.7771084337349398,0.9290322580645162,0.8882175226586103,0.7272727272727273,0.1592356687898089,0.5348113574484636,0.7281879194630873,0.6747967479674797,0.533210332103321,0.1241258741258741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0046623354246272,0.0065851554969306,0.0087252412392077,0.0110660197927155,0.0131680788658953,0.0155096463678264,0.0178967034537677,0.0203858382832547,0.0224750163826998,0.0244427805073184,0.026535308499928,0.0285505576361167,0.0311285650968386,0.0331887649731515,0.0351837292063229,0.0372739051567763,0.0392480656384691,0.0413553395633442,0.0434769006152883,0.057924056983392,0.0715887419577928,0.0849834550133935,0.0979435747245106,0.109709722398276,0.1248596665889978,0.1360482045505265,0.1453487132470523,0.1546933533126404,0.1630839012016595,0.1735530051930945,0.184695139144958,0.195487000599553,0.2043689959205158,0.2123874271587497,0.2214816542806678,0.2303138150237264,0.2376358281710165,0.2451346368333599,0.2510020097616997,0.2561220346847631,0.2620401749592504,0.26777369232594,0.272382370244084,0.2762943508183166,0.2805297621249676,0.2837602555270245,0.287233771851701,0.2908108388300698,0.2942092894299067,0.2901705142364572,0.2869172766800594,0.2848194806108804,0.281991341991342,0.2787614556455201,0.2749388753056235,0.2720056809215717,0.2723746870243998,0.2737897061321556,0.2745446152753613,0.2752057325197335,0.2764112546451955,0.2773829126456427,0.2790071836843627,0.2796709472224215,0.2812572819304559,0.2820933521923621,0.2872353712608506,0.2918279794914722,0.2971108746206298,0.3007756132756132,0.3044234723467074,0.3055659320134479,0.3075594925305908,0.3119180633147113,0.3159386068476977,0.3211357424840571,0.3226843480008037,0.3165350040860801,0.3162295705055112,0.0,2.242011526261936,50.32893890058647,137.74537407683505,186.86690040580035,fqhc1_100Compliance_implementation,12 -100000,95680,48845,465.698160535117,4554,46.33152173913043,3613,37.13419732441472,1366,13.89005016722408,77.28391542799022,79.68167663624719,63.28504443165552,65.05967055832808,77.10503905883496,79.50696692943716,63.217554397561074,64.9960814832727,0.1788763691552617,174.7097068100345,0.0674900340944475,63.58907505537559,239.38376,168.43525197315776,250192.0568561873,176040.1880990361,559.1263,378.4800094931876,583743.802257525,394941.2411091008,500.66885,246.6094756533361,519379.03428093647,254681.689803012,2461.15378,1165.5820762637031,2530982.065217391,1177461.432483114,814.06269,374.8653530643693,834548.4740802675,375719.3854022322,1317.84992,566.1472767268541,1341728.1145484948,561760.102445992,0.38214,100000,0,1088108,11372.366220735785,0,0.0,0,0.0,48691,508.246237458194,0,0.0,45187,468.3319397993311,1051411,0,37760,0,0,0,0,0,92,0.951086956521739,0,0.0,1,0.0104515050167224,0,0.0,0.04554,0.1191709844559585,0.2999560825647782,0.01366,0.3693086003372681,0.6306913996627319,23.16155555296709,3.990977135807338,0.2994741212288956,0.3050096872405203,0.2026017160254636,0.1929144755051204,11.64451974871463,6.604350215580508,14.800085249788882,11256.557870156306,41.697384941257454,13.511479446577106,12.372865959700306,8.11987342409531,7.693166110884735,0.6036534735676723,0.823049001814882,0.6913123844731978,0.6092896174863388,0.1147776183644189,0.7789954337899543,0.9405286343612336,0.8415841584158416,0.7880434782608695,0.1688311688311688,0.5274027005559968,0.7407407407407407,0.6328626444159179,0.5492700729927007,0.0994475138121546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022395168318437,0.0047164070107108,0.006934221346843,0.0094816109592382,0.0116703804320177,0.0140473474044495,0.0162578407873935,0.0185173836662989,0.0205983124520582,0.0227621954967321,0.0251246486242485,0.0275268949785764,0.0295842766001234,0.0315978233984664,0.033796129032258,0.0358439248373786,0.0379135624656767,0.0398181402977018,0.0417212756662297,0.044096342848805,0.0582889376371043,0.0722399623095848,0.0853430724345654,0.098309079621621,0.1101683288480818,0.1257912229819844,0.1357352191641182,0.1456352037827878,0.1546897546897546,0.1636240703177822,0.1741299966590147,0.1854258729746122,0.1957281426565204,0.2050518432549024,0.2133042433858935,0.2234454592872918,0.2316848281642917,0.2392271728721906,0.2464555121330546,0.2520009173259947,0.2575067505707564,0.2639789041898623,0.2692088787706317,0.2737855222734255,0.2779258069618328,0.2822533890883075,0.2861954970071877,0.2888945426790484,0.2918058252427184,0.2945471800076447,0.291732256979482,0.28915364637012,0.2854933933089682,0.281563891570953,0.2787795141207723,0.2743652493117161,0.2719958268786949,0.2718003273322422,0.2713277414075286,0.2702668994761786,0.2705448693960033,0.2717807894424908,0.2724813354584346,0.2737174039450731,0.2748030927090107,0.2758997579826684,0.275334391294491,0.2792358283745694,0.2838242462224079,0.289950123708911,0.2953029210241615,0.2986992552187139,0.3007114135477884,0.3053678818026579,0.3086453744493392,0.3116219667943806,0.3133072994893361,0.3195691202872531,0.3257409440175631,0.333965844402277,0.0,2.489190062036858,46.99526223082038,137.6247594983632,180.59300365160968,fqhc1_100Compliance_implementation,13 -100000,95648,48910,466.868099698896,4770,48.61575777852125,3802,39.0807962529274,1431,14.542907326865173,77.35161970545354,79.75647002325148,63.31721993396855,65.09392232500913,77.16898607404706,79.58037529051798,63.24744724411232,65.02935453439613,0.1826336314064889,176.09473273350318,0.0697726898562365,64.56779061299756,239.1818,168.26152169010942,250064.3819003011,175917.24544756944,562.82196,380.9545725067925,587715.5612244897,397575.79075852566,503.02012,247.7192539229524,521745.6925393108,255811.42155193933,2686.68542,1261.6905449838814,2763765.483857477,1274119.9353762488,876.30548,402.5575188562395,899503.993810639,404238.186024354,1396.43484,599.0382266078507,1420860.049347608,591842.7926874554,0.38118,100000,0,1087190,11366.56281365005,0,0.0,0,0.0,49017,511.74096687855473,0,0.0,45368,470.14051522248246,1053692,0,37779,0,0,0,0,0,98,1.0245901639344264,0,0.0,0,0.0,0,0.0,0.0477,0.1251377302062018,0.3,0.01431,0.3618130766145206,0.6381869233854793,23.220369894960637,4.073242126128232,0.3011572856391373,0.2840610205155181,0.2041031036296686,0.2106785902156759,11.382831474793882,6.1208683546977545,15.268225781687052,11272.58648228646,43.51474699322754,13.246410140928116,12.939798436975035,8.537806978519662,8.790731436804714,0.5775907417148869,0.7759259259259259,0.7126637554585152,0.5760309278350515,0.1186017478152309,0.7557058326289096,0.9238476953907816,0.8892405063291139,0.6772486772486772,0.1340782122905028,0.4971363115693012,0.648881239242685,0.6453558504221955,0.5434412265758092,0.1141479099678456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0043705318663489,0.0066373028599265,0.0090628302040152,0.0113519616718713,0.0138215522509676,0.0160607760159078,0.0184926121452859,0.02060327198364,0.0227286694663525,0.0249194657036748,0.0271081242164539,0.0291744705373865,0.0311961978989474,0.0334046047534938,0.0355384042377089,0.0374055533099095,0.0394066169066428,0.0413961714523512,0.0434483405799368,0.0578357819063342,0.0721517794507208,0.0856057266410563,0.098628897330401,0.1110161263086795,0.1264209657274709,0.1375195098903199,0.1469666609822646,0.1561446865872837,0.1638442953020134,0.1751461168503461,0.1864707921650199,0.1973939169624001,0.2065391098754351,0.2144674103357522,0.2237421157065103,0.2315994101085936,0.2398455441977754,0.2473549178094632,0.2537074148296593,0.2595047248921429,0.2642404693453007,0.2700344105856894,0.2736588811339502,0.2775189848848776,0.281910901686741,0.2857642183052878,0.2886686882271591,0.2913128758355485,0.2948662328271872,0.2913545442341254,0.2874026543819238,0.2845830934898283,0.2818726246688932,0.278935836318953,0.2755070916577703,0.2712446622441422,0.2715504560164754,0.2710243802848053,0.270805929823314,0.2714925373134328,0.2724057298933013,0.2734962601829281,0.2747747747747748,0.275779090822453,0.2761796651273187,0.2769673541942947,0.2826987141567296,0.2872816916079302,0.2920083173133508,0.2949802087081684,0.2990002082899396,0.3013960958734865,0.3028669810614567,0.309548017376837,0.3093669098611438,0.3161094224924012,0.3244107071514183,0.3276139410187667,0.3316042978881067,0.0,2.567146304650148,50.98203758651772,134.0904245569809,193.39619334318184,fqhc1_100Compliance_implementation,14 -100000,95788,48970,467.3654319956571,4676,47.60512799098008,3779,38.83576230843112,1434,14.552971144611016,77.3507064425629,79.67955997535894,63.34838135415546,65.0702031921731,77.16539931605118,79.49964830953347,63.277251244858576,65.0041134742635,0.1853071265117165,179.9116658254718,0.071130109296881,66.08971790959117,239.81474,168.72572960108656,250359.66926963712,176144.73901019606,556.61826,375.6719375499994,580477.6903161147,391575.3398567666,501.14662,245.81040021706048,519801.4678247797,253988.2686161896,2666.87307,1258.7180928113005,2739209.2328892974,1269204.985186349,860.88558,397.6783249422433,881774.4185075375,398315.9887583946,1397.02006,604.7706249029097,1418394.6005762725,596809.9787901762,0.38223,100000,0,1090067,11379.984966801689,0,0.0,0,0.0,48491,505.5852507620996,0,0.0,45256,469.0462270848123,1058830,0,37982,0,0,0,0,0,91,0.950014615609471,0,0.0,3,0.0313191631519605,0,0.0,0.04676,0.1223347199330246,0.306672369546621,0.01434,0.3658838071693449,0.6341161928306551,22.899768040783904,4.028682286056828,0.2987562847314104,0.2934638793331569,0.2021698862132839,0.2056099497221487,11.40724172588203,6.267689564998846,15.33728981573831,11253.732369015115,43.4866219727535,13.577166172965468,12.795326468665046,8.461512193745184,8.652617137377797,0.5869277586663139,0.7871956717763751,0.7147918511957484,0.5929319371727748,0.1093951093951094,0.7517241379310344,0.918032786885246,0.869281045751634,0.7374301675977654,0.1390374331550802,0.5139366170294005,0.6843800322061192,0.6573511543134872,0.5487179487179488,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0046532846715328,0.0067581965965478,0.0090809361287177,0.0114486741499918,0.0137538558644771,0.015979780685663,0.0180324522910501,0.0200907455853499,0.0222679315179238,0.024397241605443,0.0263911263428999,0.0287446688248291,0.0307494338068766,0.0326898486160953,0.0345376215222175,0.0364345657550264,0.0384838682922783,0.0407423562645397,0.0429147015647937,0.0576622075672517,0.0720641592689022,0.0855225914666107,0.0982217925004203,0.1102328179509069,0.1265460157720036,0.1374168849486197,0.1466656733573146,0.1556701471184848,0.163779797633339,0.1751706172361084,0.1856071250999805,0.196990111920026,0.2066053402088886,0.2151016414349637,0.2234673333480829,0.2304992199687987,0.2383594882106469,0.2454050991501416,0.2517218497585978,0.2575813566759821,0.264436660828955,0.2692098543597503,0.2727968981858216,0.2776019114846754,0.2814722748640201,0.2852503247726591,0.2895198170731707,0.2928519706217027,0.2952930026851998,0.2920168631347171,0.2879848472370913,0.2849414773286122,0.2821725774117715,0.2793444274854408,0.2755586784181343,0.2714965008451683,0.2718970323003771,0.2720763723150358,0.2723514948508712,0.2716310595989289,0.2728223753034759,0.2732735876711755,0.2749233900731429,0.275897632696136,0.2767053436703262,0.2773855613755409,0.283050900745119,0.288533669856627,0.2935997157184032,0.2986830154405086,0.3015163607342378,0.3065013531373906,0.3107314468766684,0.3118974070953852,0.3132900177200236,0.3137915199755089,0.3168094655242758,0.3152204047685056,0.3176561295296838,0.0,2.3996977710003478,50.16086119541284,137.91347824499823,192.0714495674464,fqhc1_100Compliance_implementation,15 -100000,95729,48458,462.4512948009485,4620,47.007698816450606,3674,37.73151291667102,1379,14.00829424730228,77.31652017658898,79.67686859655159,63.31665033110207,65.06236614513124,77.1353415053788,79.50014136197504,63.24796187431341,64.99759335428155,0.1811786712101764,176.72723457654627,0.0686884567886565,64.77279084968757,240.24616,168.98447887806802,250964.63976433477,176523.5810235853,553.98208,374.426080531716,578082.5141806558,390515.5287652812,490.38712,241.406086548634,507438.2371068329,248506.2252691585,2551.94284,1207.347104526436,2623899.006570632,1219313.4207256276,838.56476,386.3952067281885,860298.4362105527,387965.3316426451,1332.07162,575.8298346347253,1354736.6628712302,571608.7728666213,0.37942,100000,0,1092028,11407.48362565158,0,0.0,0,0.0,48408,505.01937761806767,0,0.0,44327,458.3459557709785,1054356,0,37832,0,0,0,0,0,88,0.919261665743923,0,0.0,0,0.0,0,0.0,0.0462,0.1217647989035896,0.2984848484848484,0.01379,0.3541927409261577,0.6458072590738423,22.77916385645913,3.98394021052484,0.3176374523679913,0.2827980402830702,0.2068590092542188,0.1927054980947196,11.399429004754216,6.340162622517725,14.843248607507409,11165.862332264873,42.28085502535145,12.59960898094542,13.438112560272163,8.44258882561527,7.800544658518593,0.5827436037016875,0.8036573628488932,0.6786632390745502,0.5697368421052632,0.1144067796610169,0.7530755711775043,0.919047619047619,0.8571428571428571,0.75,0.1077844311377245,0.5063091482649842,0.7253634894991923,0.5954773869346733,0.5137931034482759,0.1164510166358595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0048255796271327,0.0070235980715554,0.0090837964985724,0.0109354654947916,0.0131688835475526,0.0153488419528214,0.0173913931496497,0.019560327198364,0.0216127116735262,0.02411639853579,0.0262144595385515,0.0283093565868355,0.0302222130691764,0.0321512563436068,0.0342201787467066,0.0363952549531085,0.0386179283447088,0.0407055913017265,0.0429849875503974,0.0570566494748491,0.0714181072370348,0.0846206281789103,0.0976225276285212,0.1096068073261,0.1248281405334517,0.1354450656115077,0.1441816401260325,0.1535437276981261,0.1628690353587367,0.1746033455767511,0.1854292453850981,0.1952720629811665,0.2034002077297327,0.2109127333568158,0.2199711847500831,0.2275731927912637,0.2358209291074582,0.2433616267986019,0.2498568385367753,0.2562809420256327,0.2616839914408989,0.2673064634463825,0.2711937560694889,0.2756517724809874,0.2792650594981195,0.283275767132202,0.2861650022263214,0.2888710637306906,0.2926452940168009,0.289252751392514,0.2860858794384806,0.2830781809467422,0.2802954739291961,0.2771993405320302,0.2737719969395562,0.2695237192250561,0.2692099522723918,0.2696042459511579,0.2704028833458231,0.2730045279347378,0.2737987307343608,0.2747273411056788,0.275289661319073,0.2761781671094516,0.2782336344575881,0.2798571954778568,0.2838288976942997,0.2888370635942776,0.2932147355163728,0.2995889235217057,0.3062711148648648,0.3088556965189675,0.3140688411243048,0.3167395552247138,0.3197069943289225,0.3225609756097561,0.3248241206030151,0.3263186663022683,0.3212927756653992,0.0,2.511812862185261,48.93987643685988,133.86804398762155,185.4447222037073,fqhc1_100Compliance_implementation,16 -100000,95681,48697,465.7037447351094,4656,47.5747536083444,3658,37.67728180098453,1387,14.10938430827437,77.40264542862671,79.78387768307276,63.35728834693722,65.1122489288931,77.22648900493326,79.61235101921343,63.289868284612346,65.049077260383,0.176156423693456,171.5266638593249,0.0674200623248708,63.17166851009404,241.19766,169.68956219861315,252084.76081980747,177348.85779046314,561.94696,379.1326593946855,586739.3944461283,395674.5981325085,498.03994,243.52501414283577,517166.6161515871,251899.34344900493,2594.79895,1214.8445157039532,2670833.5928763286,1228830.43973413,866.63954,397.45173598740143,886083.339429981,395997.91541484377,1352.25946,580.4397579731105,1376401.918876266,575450.1490822285,0.379,100000,0,1096353,11458.39821908216,0,0.0,0,0.0,48947,510.9582884794264,0,0.0,44956,466.5503077936058,1050290,0,37640,0,0,0,0,0,95,0.9928825994711594,0,0.0,1,0.0104513957839069,0,0.0,0.04656,0.1228496042216358,0.2978951890034364,0.01387,0.3673259167696745,0.6326740832303255,23.08770682263748,4.077387084367752,0.3015308911973756,0.2908693275013668,0.1951886276653909,0.2124111536358666,11.02488584460228,5.923300127303839,14.91113660541427,11155.578151914682,41.98896450693601,13.11398063106742,12.59017559792274,7.853651752192987,8.431156525752863,0.5932203389830508,0.8223684210526315,0.7098821396192203,0.5742296918767507,0.1312741312741312,0.7537912578055308,0.905829596412556,0.8871951219512195,0.6842105263157895,0.1875,0.5222703981080016,0.7621359223300971,0.6348387096774194,0.5395948434622467,0.1148086522462562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683314599345,0.0047432272188269,0.0069892473118279,0.008998303931426,0.0111550624866535,0.0134716819746247,0.0154148867841813,0.0174727753339933,0.0193960451688723,0.0213885136518072,0.0236372209352385,0.0257063074901445,0.027832613612996,0.0297740427197264,0.0319748245976062,0.0339727556483452,0.0361684062292909,0.0383749286566699,0.0403852354158649,0.0423471780707697,0.0572903064049392,0.0704577818730105,0.0841396100489012,0.0974090866057246,0.1094305392947926,0.1245728191292387,0.1352888737954748,0.1454183479010742,0.1547027454500764,0.1632062116597314,0.1749534240084429,0.1853843823045623,0.1955545406104894,0.2049877547450363,0.2138127502309824,0.2228027451848572,0.2313985109892559,0.2385557053009883,0.2453654945926051,0.2520630929249057,0.2578307134778293,0.2627386492191782,0.2678114120493303,0.2720545161097495,0.2758282238324891,0.2794953146904744,0.282402318377136,0.2849059236986005,0.2875782409498613,0.2907207550642146,0.2881969587255611,0.2845485041418498,0.281204461383253,0.2774943595786569,0.2747908846392575,0.2707051008592845,0.2681804572887285,0.2687869774131337,0.2686035263970676,0.2691543700340522,0.2691512928867956,0.2688620176880332,0.2700714803687972,0.2705478693967902,0.2721684852527755,0.2731382223025857,0.2749025368664896,0.2812422283014175,0.2872536410719872,0.2912152614225153,0.2939583991336912,0.2999736495388669,0.3071944236992781,0.3095524181435866,0.3145011169024572,0.3103007780745558,0.3158291836426739,0.3154761904761904,0.3181695827725437,0.3151447661469933,0.0,2.0215217443802107,48.72020925284884,132.60112305103866,186.38423066208017,fqhc1_100Compliance_implementation,17 -100000,95726,49025,468.2322462027036,4727,48.012034348035016,3766,38.73555773770971,1399,14.30123477425151,77.33907921770925,79.70561620319148,63.32552877917672,65.07536306163718,77.15662389934009,79.52599725342031,63.25618914133472,65.0090461500352,0.1824553183691648,179.618949771168,0.069339637841999,66.31691160197306,239.99272,168.76908633859216,250707.7492008441,176304.12380182202,558.60979,376.9306558859959,582900.1107327163,393110.6035177757,493.37213,242.9632019848732,511457.3679042266,250783.2031931836,2660.13663,1238.104391658211,2740721.465432589,1255524.5946947986,878.49615,396.0222075261305,903954.8398554206,400232.3102197215,1364.98234,585.0139271946892,1397907.360591689,587829.5846931173,0.38142,100000,0,1090876,11395.806781856549,0,0.0,0,0.0,48694,508.0646846206882,0,0.0,44601,461.9434636357938,1054598,0,37856,0,0,0,0,0,91,0.9401834402356728,0,0.0,0,0.0,0,0.0,0.04727,0.1239316239316239,0.2959593822720541,0.01399,0.3549633848657445,0.6450366151342555,23.252872328805683,4.115296715947136,0.3082846521508232,0.2788104089219331,0.2047265002655337,0.20817843866171,11.25151915735995,6.028987444290815,14.9813278674311,11238.39076768446,42.746133692674974,12.730481064894898,13.020271208349769,8.525505773610673,8.469875645819636,0.575942644715879,0.7942857142857143,0.6744186046511628,0.5888456549935149,0.125,0.7631578947368421,0.9262672811059908,0.8741721854304636,0.7346938775510204,0.1823529411764705,0.4984984984984985,0.7012987012987013,0.6041909196740396,0.5391304347826087,0.1091205211726384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027953330092367,0.0051303889362047,0.0074804867898866,0.0097951552593074,0.0120647386142844,0.0144007984601126,0.0164278794676999,0.0188567519831749,0.0210638254361029,0.023269628628198,0.0251879352251633,0.0269304246009736,0.0287971038341286,0.0309599118080382,0.0328767406092261,0.0348596719819652,0.036890468149468,0.03891737063866,0.0408984557791296,0.0429433152406055,0.0577186113286348,0.0707477583988114,0.0839379324806039,0.0962124876448444,0.1083073224228108,0.1243019123371128,0.1346849570854154,0.1448252366199282,0.154265380053217,0.1620528337517972,0.1744363981206086,0.185998917162967,0.1966902764631001,0.2059177554548836,0.2144917642913767,0.223764285951824,0.2316316048059314,0.239832091651849,0.2468108770655529,0.253826764436297,0.2597794772708866,0.2644699609457215,0.2702373634687219,0.27497606510292,0.277913857496241,0.2811919894766606,0.2840723315570753,0.2872364715731791,0.2906976744186046,0.2933721144481587,0.2892896922849819,0.2857691885362907,0.2833577093997862,0.2787542933010073,0.2769819378948305,0.2733814048702985,0.2696588415452378,0.2693120566213935,0.2702310659066862,0.2719378020292801,0.2733864035579474,0.2743221690590112,0.2747255036773132,0.2749031482388565,0.2759551098376313,0.2759841807325458,0.2783724091063541,0.2835066029783647,0.2871583937534858,0.2931381446553289,0.2954555751891622,0.3021175224986765,0.3042959427207637,0.3066009104704097,0.3119189289698773,0.3170703033153068,0.3242085945863281,0.3243843358901897,0.3303204601479046,0.3305629013978088,0.0,2.352184602733028,47.35699295391934,135.47667756569138,197.6596215932343,fqhc1_100Compliance_implementation,18 -100000,95696,48761,465.8397425179736,4691,48.027085771610096,3738,38.58050493228557,1404,14.368416652733655,77.30793472821749,79.68315647319591,63.31631099018998,65.06988389467149,77.1329485744425,79.51021635266115,63.24960458245484,65.00577002153419,0.174986153774995,172.94012053476138,0.0667064077351398,64.11387313730188,240.9539,169.59737758385364,251790.75405450596,177224.93813303966,559.69976,378.12757029627846,584370.2035612774,394632.9530322151,496.44722,244.2060062935593,515552.948921585,252751.54711501044,2622.18964,1228.842500127924,2708610.6002340745,1252666.5552034092,863.88038,391.0920603246997,891804.6835813409,397796.6771211513,1359.06342,579.3629407266209,1392146.8608928274,581514.7721853827,0.3802,100000,0,1095245,11445.034275204816,0,0.0,0,0.0,48829,509.7287242935964,0,0.0,44928,466.25773282059856,1046909,0,37561,0,0,0,0,0,93,0.9718274536030764,0,0.0,0,0.0,0,0.0,0.04691,0.1233824302998422,0.2992965252611383,0.01404,0.3637669265490357,0.6362330734509642,23.18627240156608,3.932938787687541,0.3127340823970037,0.2899946495452113,0.1987693953986088,0.198501872659176,11.187487670008252,6.171774060603278,15.002598255485315,11235.614896655628,42.94235524357164,13.394205218667494,13.314966605595458,8.186228334241193,8.046955085067497,0.5965757089352595,0.8062730627306273,0.7194183062446535,0.576043068640646,0.1172506738544474,0.7679033649698016,0.9079754601226994,0.8797653958944281,0.7361963190184049,0.1566265060240964,0.5195812330360605,0.7226890756302521,0.6533816425120773,0.5310344827586206,0.1059027777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023996112022355,0.0045093429532649,0.0066951379096967,0.0087856504428374,0.0108819461394516,0.0133090301820699,0.0156519256457056,0.017590607452782,0.0195873970025966,0.0218750959658515,0.0239984417927584,0.0262323021796938,0.0284771072442305,0.0306067786133717,0.0328455855037767,0.0347661580449075,0.036751144911619,0.0388592429559186,0.040891265226301,0.0429588549865004,0.0568658992625399,0.0710599859743141,0.0848974453129098,0.0975578973938284,0.1102724129206376,0.1257957405409978,0.1363496525751869,0.1463012240553486,0.1560977694214169,0.1647037370746986,0.1754956546086994,0.186257328919755,0.1961187214611872,0.2053681736183239,0.2136571629707849,0.2233914112603981,0.2319270722917108,0.2394060408346926,0.2467155272174445,0.2521071919377004,0.2578191920361153,0.263343780698882,0.2688748461611284,0.2733998417228231,0.2771828315120279,0.2799570852499044,0.2833291583166332,0.286858729430944,0.2905977366121777,0.293023317225171,0.2903655827105635,0.2875313162459048,0.2853238281745305,0.2813493669422443,0.2786329866270431,0.2746913108006793,0.2713693471312383,0.2712526678706288,0.2709611277231952,0.2708207012162499,0.2709358684057862,0.2724043338398689,0.2728506976355585,0.2748876329491344,0.2765045381612663,0.2795413774276577,0.2808446626741975,0.2853029544316475,0.2897657645040439,0.2940203261640274,0.2993526775609977,0.3048607088314287,0.3093318332395774,0.3134914639673666,0.3194366722626375,0.3234017595307918,0.3287876517308556,0.3286422200198216,0.3310197544046983,0.3265306122448979,0.0,1.7380550669898152,50.66788501344529,135.61724794182877,188.4298294908256,fqhc1_100Compliance_implementation,19 -100000,95714,48679,464.88496980588,4824,49.14641536243392,3803,39.23146039241908,1467,14.919447520738869,77.38171245272493,79.75457926908216,63.34258245905804,65.09469688034848,77.18834440252294,79.56775276806309,63.2681190626292,65.02552328290908,0.1933680502019825,186.82650101906967,0.0744633964288397,69.1735974394021,239.98722,168.76497665677124,250733.6648766116,176322.14373735423,558.23799,376.7927589330613,582747.9783521742,393177.7680726554,497.27966,243.679337391656,517144.00192239386,252617.01447004612,2738.11253,1289.430869656294,2821139.655640763,1307587.134229364,898.14754,412.4686042266151,920853.4801596422,413426.2116582887,1435.48216,625.8619039547333,1460266.0634807865,619112.3236168327,0.37959,100000,0,1090851,11396.984767118707,0,0.0,0,0.0,48621,507.4597237603695,0,0.0,44910,466.8282591888334,1056532,0,37912,0,0,0,0,0,103,1.076122615291389,0,0.0,0,0.0,0,0.0,0.04824,0.1270844858926736,0.3041044776119403,0.01467,0.3589641434262948,0.6410358565737052,22.957039001324613,4.124926723736327,0.2937154877728109,0.2747830660005259,0.2153562976597423,0.2161451485669208,11.116172602552403,5.892381681714481,15.843583060659512,11162.9871213176,43.57420051176824,12.820076413015338,12.598923352232244,9.103768279144356,9.051432467376308,0.5745464107283723,0.8181818181818182,0.6991942703670546,0.5653235653235653,0.1046228710462287,0.7450130095403296,0.9247311827956988,0.8823529411764706,0.6951871657754011,0.1487179487179487,0.5003773584905661,0.7327586206896551,0.6300863131935882,0.5268987341772152,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0045819014891179,0.0068900434306124,0.0090608049082745,0.0111682974957788,0.0132586558044806,0.0154881468264083,0.0176609906488627,0.0197806241885855,0.0217422458798239,0.0240101699780607,0.0262012320328542,0.0284550755339825,0.0306663782358334,0.0329201969019927,0.0348221670802315,0.0369952254202355,0.0388203430634968,0.0406976744186046,0.0427188310943899,0.0580488161508976,0.0719468146364445,0.0855586917515713,0.0979432959865341,0.1105508555032806,0.1257257680714927,0.1364162095054169,0.1458155877342419,0.1540795504321535,0.162962088866957,0.1749207991207086,0.1858780733378804,0.1962473486702561,0.2048366641885687,0.213070213070213,0.2228569530705104,0.230486132021814,0.2378140675259239,0.2449273554197053,0.2516430419748563,0.2569409097219008,0.2628896707304244,0.2679232780755623,0.2718755990032586,0.2757695343330702,0.2783539439326009,0.2813968603139686,0.2844593048386686,0.2880737742023099,0.2908036890645586,0.2876681042010936,0.2846147513994073,0.281620095250137,0.279276296850711,0.2761949820364593,0.272350539338168,0.2685017410622843,0.2686338191373035,0.2685260586319218,0.2689476578158534,0.2704333414030056,0.2705542679813018,0.2697028222540651,0.2700155245065425,0.2709346685741535,0.2732642112864954,0.2739625620207487,0.2782276831425114,0.281743284408751,0.2861510720865509,0.2890688259109312,0.2916622857743665,0.2958364685226988,0.3007279344858962,0.3032336222160097,0.30574523192842,0.3143117316740021,0.3148371531966224,0.3192307692307692,0.3267023718439173,0.0,1.951548530572537,50.21921380556697,141.10036010752495,190.7162319147018,fqhc1_100Compliance_implementation,20 -100000,95866,48808,465.5039325725492,4737,48.2757181899735,3743,38.55381469968498,1381,14.08215634322909,77.44506122741345,79.72427670292538,63.40474875222951,65.0849382340728,77.26359319710214,79.5448800727983,63.33577947996843,65.01869070326231,0.1814680303113078,179.39663012707285,0.0689692722610786,66.24753081048596,241.04344,169.58648060697652,251437.6525566937,176899.27670600265,559.60314,377.6726239265701,583242.6616318611,393466.811931832,497.04792,243.3605596556,515781.1111342916,251723.59777502707,2614.49463,1226.965806449861,2694743.9655352263,1247413.687069306,837.43045,381.9302533920418,862763.8891786452,387705.0885045129,1339.40646,576.833526339351,1367787.0777960904,577155.1479262464,0.38272,100000,0,1095652,11428.98420712244,0,0.0,0,0.0,48781,508.3345503098074,0,0.0,44970,466.3384307262221,1053367,0,37825,0,0,0,0,0,83,0.8657918344355663,0,0.0,2,0.0208624538418208,0,0.0,0.04737,0.1237719481605351,0.2915347266202238,0.01381,0.3595959595959596,0.6404040404040404,23.275509068740018,3.9834370945716495,0.3133849853059043,0.2880042746460058,0.1995725353994122,0.1990382046486775,11.3489372005851,6.188808477153132,14.742003236668232,11232.2722472807,42.94309174409643,13.140790265389986,13.337101297065246,8.429199641009834,8.036000540631353,0.5808175260486241,0.7949907235621522,0.6845694799658995,0.5903614457831325,0.097986577181208,0.7511032656663724,0.9051724137931034,0.843558282208589,0.7541899441340782,0.1280487804878048,0.506896551724138,0.7117263843648208,0.6233766233766234,0.5387323943661971,0.0895008605851979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022470090487661,0.0045786525390249,0.0067935471441752,0.008952133490317,0.011095982278944,0.0132972500025434,0.0153589179499714,0.0173962698971111,0.0195141377937076,0.021482617586912,0.023653249505944,0.0259163538654031,0.0284293989564931,0.0305396120060071,0.0325575165620911,0.0345066061106523,0.0366819723670058,0.0385783120045593,0.0406955618998183,0.0427643900611811,0.0576090923309525,0.0709226526263006,0.084837507328922,0.0982046358380289,0.1102647996380966,0.1258970786896318,0.1364478658181471,0.1468566389358153,0.1564359603284632,0.1658764221725123,0.1772102921261366,0.1879096789520858,0.1981673886373753,0.2074657990413905,0.2156673220346429,0.2244557040446057,0.2322206742825299,0.2396440729380835,0.2472685646930818,0.2538807353092577,0.2595362493064546,0.2639409983987283,0.2688905706785233,0.2725423809922596,0.2756788880668518,0.2793573071860044,0.283216389628907,0.2858650057200966,0.2889483965278586,0.2926077217024641,0.2890818191592302,0.2861121400447243,0.2827965435978005,0.2805076098360184,0.2779066160504586,0.2744558190474742,0.2712786019612773,0.2717336417390171,0.2720766556431782,0.2720288880235069,0.2728659387265388,0.27240058910162,0.2738942287687763,0.2745641662600364,0.2738782127700157,0.2745877312962915,0.2752549439405037,0.2797502562668903,0.2843167755539424,0.2891311166875784,0.2931852052567403,0.297502371166614,0.3036326250856751,0.3074647246244879,0.3091674462114125,0.3107804935647656,0.3162953921269453,0.3174830907972945,0.3223140495867768,0.3249321442419542,0.0,1.8961861489802732,49.31579246417549,141.73274811610503,185.0971836664981,fqhc1_100Compliance_implementation,21 -100000,95673,48509,463.2236890240716,4607,46.690288796212094,3664,37.58636187848191,1384,13.995589142182224,77.29747507811412,79.6996820374552,63.28577397120039,65.06543826680273,77.11656033352101,79.52674625009791,63.21577503371912,65.00161277116885,0.1809147445931103,172.93578735728943,0.069998937481273,63.8254956338784,241.54702,169.9062244247937,252471.00017768855,177590.1353952878,559.59693,378.4315496262254,584177.9080827401,394820.2405573834,495.05955,243.7474017565121,513152.3418310286,251508.6718913292,2550.01548,1209.4772426864704,2613287.9495782508,1212527.4099734826,833.4981,385.9583379866268,850143.2379041108,382553.1263257275,1342.9794,580.7618537347095,1358455.0918231893,566320.0368440879,0.3792,100000,0,1097941,11475.9545535313,0,0.0,0,0.0,48892,510.2798072601465,0,0.0,44767,463.6417798124863,1041758,0,37404,0,0,0,0,0,98,1.0138701619056578,0,0.0,0,0.0,0,0.0,0.04607,0.1214926160337552,0.3004124158888647,0.01384,0.3702854761408626,0.6297145238591373,22.8906983774632,4.087658798140311,0.2985807860262008,0.298853711790393,0.2014192139737991,0.2011462882096069,11.58514421206601,6.329328519475731,14.796632050562607,11213.71688000892,42.14348023800201,13.635746269665711,12.326024332586009,8.23070094632867,7.95100868942162,0.5900655021834061,0.8210045662100457,0.7074954296160878,0.5528455284552846,0.1099050203527815,0.7627264883520276,0.926441351888668,0.8451612903225807,0.7103825136612022,0.1595092024539877,0.5101796407185629,0.731418918918919,0.6530612244897959,0.5009009009009009,0.0958188153310104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025538124771981,0.0046659769135577,0.0072287933397634,0.0098465603089116,0.01202392578125,0.0139949886940047,0.0161662110888988,0.0184840995894691,0.0205672090573447,0.0227135410799684,0.0245453519739878,0.0265250354420496,0.0286413859797123,0.0305116183213972,0.0328325847916989,0.034816247582205,0.036752969465807,0.0388656989180321,0.0409180286935985,0.0429485576121394,0.0572437350492525,0.0712685551577581,0.0845060076604228,0.0970650115716389,0.1086965694755053,0.1247936857251682,0.1345633273532128,0.1440819673877155,0.1531749256795773,0.1619317571775215,0.1733892711546343,0.1841654562403798,0.1948916240060995,0.2042200287032066,0.2124575635994885,0.2217870773054051,0.2306540301309848,0.2386965239135822,0.2453477539705982,0.2521546784027873,0.2576019090203528,0.2628891335410274,0.2673725852491442,0.2712348493939757,0.2746557680144018,0.2792307122942932,0.2833575508567992,0.2869354735970444,0.2893863152980235,0.2924451021324948,0.2889479076790336,0.2858343899884227,0.2829871888932784,0.2808423244916259,0.2786641929499072,0.2748868778280543,0.2720099733308084,0.2717927765974832,0.2725343744695297,0.273251481494624,0.2740355117597843,0.2752248633183751,0.2768827821314985,0.2783870610391049,0.2794692205069563,0.28134596031275,0.2849366838706038,0.2888204553938036,0.2931680899812539,0.2970013344846534,0.3028076975077741,0.3088829424418909,0.3114152410575427,0.3160893687209476,0.3188217858466098,0.3242833838266138,0.3251097321023157,0.3310027966440271,0.3347767253044655,0.338001514004542,0.0,2.690752478541513,49.59217551578752,133.8653923834932,179.7159563507551,fqhc1_100Compliance_implementation,22 -100000,95827,49277,471.3181045008192,4691,47.78402746616298,3726,38.277312239765415,1439,14.6305321047304,77.32864418348662,79.64034879492654,63.32870225298407,65.0388406933578,77.14764136581935,79.46415915648927,63.25922372936822,64.97389848405159,0.1810028176672631,176.18963843726476,0.0694785236158423,64.94220930620997,240.01868,168.94586121516167,250470.59805691507,176302.7687574083,560.07861,378.9833739871765,583832.5941540485,394852.03200160345,502.51942,246.70929873530952,520692.8318741064,254597.7018854556,2631.32635,1243.902063791057,2703295.9291222724,1256172.83472423,864.10488,396.8899300867823,887150.2812359773,399844.495880422,1397.23788,596.6456306967387,1421756.5613031818,591383.680168259,0.38189,100000,0,1090994,11385.027184405231,0,0.0,0,0.0,48868,509.3032235173803,0,0.0,45261,468.6570590752085,1049392,0,37720,0,0,0,0,0,93,0.9704989199286214,0,0.0,2,0.020870944514594,0,0.0,0.04691,0.1228364188640708,0.3067576209763377,0.01439,0.3623128972729136,0.6376871027270863,22.86962493062325,4.010277905670781,0.3164251207729469,0.2777777777777778,0.2058507783145464,0.1999463231347289,11.458880906816685,6.396841888471678,15.23136582427211,11248.092887484556,42.87186976317464,12.79176341451806,13.358236689520783,8.583032576665211,8.138837082470584,0.5942028985507246,0.8251207729468599,0.6938083121289228,0.5827900912646675,0.1275167785234899,0.7436347673397717,0.9234234234234234,0.8558282208588958,0.6907216494845361,0.1371428571428571,0.5284112872052571,0.751269035532995,0.6318874560375146,0.5462478184991274,0.1245614035087719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598521294373,0.0047338117828325,0.0070004565515142,0.0093551925889809,0.0113382143583485,0.0132763184687436,0.0155335847518091,0.0177880739281741,0.0201013755186297,0.022245871109019,0.0245906678415541,0.026487007922499,0.0284974359501371,0.0302758904673666,0.0322457565945511,0.0342775677183412,0.0360957032866959,0.0382900630391506,0.0402401529001163,0.0419459594487697,0.0563152569598731,0.0704188536417055,0.0837691944866621,0.0970365699873896,0.1094807412560875,0.1259686029917014,0.1362821722854385,0.1464782437508646,0.1559936773752563,0.164490329774004,0.1759676064528635,0.1867284117589777,0.1965029414003458,0.2058106616240558,0.2140114635246487,0.2225828247361017,0.2309770775878432,0.239650533094651,0.2466957351137757,0.253511920461452,0.2584425972941954,0.2639872438212259,0.2687474040230226,0.2722600477923076,0.2766317172257766,0.2815478906413782,0.2855407351744004,0.2887394786772103,0.2923039037793561,0.2940531688699304,0.2905019658533958,0.2867976986814215,0.2846528022559041,0.2814285507644685,0.2787277346129276,0.2761947051708034,0.2716340448424816,0.2719334174353261,0.2719690909400371,0.2711698743580174,0.2724710186861804,0.2744364602815238,0.2759805861645176,0.2777246972558604,0.2791220351951033,0.2806274835727086,0.2816614286927716,0.2867525499859634,0.2911704454706433,0.2960637337624112,0.3013482436758804,0.3056520366277234,0.3096056496468971,0.3126229756319055,0.3174144202966141,0.3200804638504319,0.3228821223997588,0.3246805111821086,0.3224764468371467,0.3314350797266515,0.0,2.315003770451197,49.12370655542158,138.46256920162645,187.54103516325137,fqhc1_100Compliance_implementation,23 -100000,95750,48631,465.51436031331593,4637,47.43603133159269,3654,37.61879895561358,1363,13.890339425587468,77.35098256499538,79.6970980956993,63.33757887846742,65.07013403299372,77.17315707364753,79.52237004118541,63.27014049389668,65.0061221698785,0.1778254913478463,174.72805451389206,0.0674383845707424,64.01186311522622,240.07126,168.88661820057817,250727.1644908616,176382.89107109993,554.70692,374.6639791213797,578807.9895561358,390773.58654974384,491.45087,241.1716935370496,509298.51697127934,248991.3786448811,2573.46357,1200.8761159296653,2651623.832898172,1218455.1770117043,837.66422,382.3117785383456,860714.6840731071,385292.830375399,1326.06116,571.8578580089765,1353054.91383812,570313.8933173124,0.37841,100000,0,1091233,11396.689295039165,0,0.0,0,0.0,48472,505.68146214099215,0,0.0,44375,459.5822454308094,1056103,0,37898,0,0,0,0,0,91,0.9503916449086162,0,0.0,0,0.0,0,0.0,0.04637,0.1225390449512433,0.2939400474444684,0.01363,0.3647277996274063,0.6352722003725937,23.00868466441104,4.036387179756971,0.3163656267104543,0.2851669403393541,0.1945812807881773,0.2038861521620142,11.295068964928548,6.104054933824544,14.69176258534119,11095.160331877589,41.91475656570599,12.841756973280615,12.98499137816831,7.928785015647712,8.159223198609364,0.5831964969896004,0.7936660268714012,0.7240484429065744,0.5527426160337553,0.0993288590604026,0.7477313974591652,0.9121621621621622,0.8910891089108911,0.7081081081081081,0.1058823529411764,0.5121473354231975,0.705685618729097,0.6647127784290738,0.4980988593155893,0.097391304347826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022277804218606,0.0045509370470601,0.0067679319756882,0.0088872186560494,0.0112047666012546,0.0135904144312895,0.0159019785731032,0.0180235346947939,0.0201760034342133,0.0219938797858948,0.0241302253111097,0.0260829398480804,0.028149899758392,0.0299660179178251,0.0317013287117273,0.0335393583595171,0.0356717577012684,0.0378960039016696,0.0399650669550029,0.0416089343570617,0.0559012046683508,0.0688663158665564,0.0824333675844569,0.0944741158164767,0.1068277410581575,0.12285282396592,0.1333305052390446,0.1434530904137578,0.1527335654923408,0.1613193885760257,0.1726500145409894,0.1836284143543569,0.1939921911535993,0.2026846665499737,0.2101764310950174,0.2191932624113475,0.2280249229532359,0.2349474157808897,0.241890649996029,0.249111829287859,0.2558427434283599,0.2611391205680395,0.2663032553299672,0.2705941506745998,0.2750166798083338,0.2798007134948948,0.2830603550591557,0.2863039447280855,0.2899675370866152,0.2927247316931677,0.2894496030143991,0.2854981362017029,0.2824982049079927,0.2792159015398838,0.2754640276561966,0.2720517407458373,0.2683759602921184,0.2681283001541438,0.2675825861657518,0.2680137315238078,0.2687263297326542,0.2694636678200692,0.2693975401292474,0.2707184776809532,0.2730962043447123,0.2733937823834197,0.2744250437927332,0.2787882569494275,0.2838752212082306,0.2888853966133658,0.2922945050978976,0.2950931873223123,0.2984041890038648,0.3046974821495678,0.3130096367679763,0.3162022945446031,0.3141064871481028,0.3157157157157157,0.3205793932768516,0.3276320790573926,0.0,2.1515357967365856,47.853111074124506,134.3581037121042,186.09398018929664,fqhc1_100Compliance_implementation,24 -100000,95841,49043,467.83735562024606,4665,47.495330808317945,3714,38.15694744420447,1390,14.117131499045296,77.51248185563044,79.79846343694032,63.42745123530996,65.11103731421936,77.3279954136111,79.618879743337,63.356682009970775,65.04447350737162,0.1844864420193346,179.58369360331972,0.070769225339184,66.56380684773922,241.37212,169.8086132216495,251846.41228701704,177177.42221142256,565.15874,381.6020947162284,589080.9465677527,397558.89933976944,505.7645,248.22621023152965,524188.0719107688,256164.3892270003,2615.15848,1231.765107939984,2686871.380724325,1243445.9447835304,838.09415,387.5826377019868,858611.1058941372,388555.8960735093,1354.9029,589.9446682477394,1376980.8537056164,584375.0930537914,0.38167,100000,0,1097146,11447.564194864412,0,0.0,0,0.0,49214,512.870274725848,0,0.0,45558,471.81268976742734,1050547,0,37665,0,0,0,0,0,107,1.1059984766436075,0,0.0,2,0.0208678957857284,0,0.0,0.04665,0.1222260067597662,0.2979635584137192,0.0139,0.3608311047109648,0.6391688952890352,23.07924404124748,3.959233154937244,0.312331717824448,0.2827140549273021,0.2014001077005923,0.2035541195476575,11.034164842410757,6.027637660744278,14.948461065882531,11206.112456101897,42.40547688115328,12.818037951514054,13.087894132658043,8.287070651670817,8.212474145310368,0.5823909531502424,0.7952380952380952,0.7,0.5882352941176471,0.1005291005291005,0.7615248226950354,0.9138321995464852,0.8727810650887574,0.7297297297297297,0.1585365853658536,0.5042536736272235,0.7093596059113301,0.6289537712895377,0.5417406749555951,0.0844594594594594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022767287960658,0.0044763573388967,0.0065680779249739,0.0091627685157938,0.0111237530222068,0.0134750330519678,0.015780578689092,0.0181718061674008,0.0203506478919261,0.022630125779732,0.0248428123783971,0.0270131681503056,0.0289759766548159,0.0306286278868716,0.0328353900555675,0.0347883570557977,0.0366633552713274,0.0389424572317262,0.0410022542409856,0.0429962000936963,0.0572560880221098,0.0713621012348518,0.084708643760544,0.0972061758218674,0.1097984711605281,0.1256033544925485,0.1358606948301079,0.1463295338550527,0.1558588456244064,0.1641234861383276,0.1755338594868927,0.1869856355977967,0.1976202625093637,0.206475212928587,0.2142080344490459,0.2233539026386216,0.2311137353639108,0.2386728665453646,0.2469822217189446,0.2533167258973157,0.2588193235155052,0.2637046526524195,0.2681607054440855,0.2722638716454971,0.2764912280701754,0.2800967417192526,0.2843330259911784,0.2871679343905433,0.2892950526166647,0.2923573227024759,0.2887895258239846,0.2858197629107018,0.2824019690104604,0.2793218295098912,0.275974025974026,0.2719952508524111,0.2683710599688105,0.2687405134566108,0.2687504242177425,0.2690526465212839,0.2695465971511032,0.2702739833568849,0.2713887618017718,0.2726547613772322,0.2742253353911907,0.2751555349889454,0.2763668033938304,0.2795031055900621,0.2835033779125879,0.286933250591475,0.2912673056443025,0.2952021897433249,0.2991845993501318,0.3001111522786217,0.3044906900328587,0.3073662504296024,0.3091687583050347,0.3077669902912621,0.3061440677966102,0.3033296743505305,0.0,2.315096816558608,48.6624323774325,135.07638035053327,187.70347420669472,fqhc1_100Compliance_implementation,25 -100000,95741,48897,466.5817152526086,4761,48.537199318996045,3793,39.04283431340805,1382,14.10054208750692,77.31288813594676,79.67106440118073,63.318020272784125,65.0617962672743,77.13362732283363,79.49439639382051,63.24972816440231,64.99652578220477,0.1792608131131317,176.66800736022026,0.0682921083818115,65.27048506953292,239.99228,168.89350283611842,250668.24035679596,176406.66259608572,558.11251,376.7997353301369,582308.4363021068,392930.217717254,503.06179,247.08923562357023,522047.9313982516,255466.38427837775,2674.28874,1259.499908967104,2756632.4772041235,1278922.0572546076,869.22862,398.2451618069936,891893.5983538922,400073.5773246928,1339.8103,575.4409224869651,1368755.9352837342,574865.5039985091,0.38091,100000,0,1090874,11394.010925308909,0,0.0,0,0.0,48604,507.0659383127396,0,0.0,45436,471.0938887206108,1053537,0,37831,0,0,0,0,0,88,0.9087016011948904,0,0.0,3,0.0313345379722376,0,0.0,0.04761,0.1249901551547609,0.290275152278933,0.01382,0.3598469593233991,0.6401530406766008,23.14454774134151,3.995819483763877,0.3055628789876087,0.291326127076193,0.2119694173477458,0.1911415765884524,11.59910431353087,6.369089886083801,14.840512911688233,11266.349524878004,43.624781203257946,13.530658895728884,13.239402959643908,8.908063387389113,7.946655960496035,0.6005800158186132,0.8171945701357466,0.7092320966350302,0.5708955223880597,0.1296551724137931,0.776748104465038,0.93125,0.8892128279883382,0.725,0.1524390243902439,0.5203376822716808,0.7296,0.633578431372549,0.5198675496688742,0.1229946524064171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091413640138,0.0048855147528355,0.0074168772004586,0.0097915735586884,0.0119506514376379,0.0140020366598778,0.0162740899357601,0.0181723514818633,0.0206412170037009,0.0227112153264865,0.0249356614819903,0.0270370180212558,0.0292493289315355,0.0314875471231691,0.0333539667801506,0.0352942392360321,0.0372863104051689,0.0393450787524123,0.0413243765987979,0.0433840383413211,0.0573349480101891,0.0716998503855449,0.08508541048415,0.0976543196896258,0.1103074522373581,0.1256452022338805,0.1357540002546581,0.146489696866485,0.1559075470488966,0.1639467307156183,0.1750392971727568,0.1861624474170839,0.195970775620257,0.2049694875215993,0.2143085030309031,0.2224905025086668,0.2306756545612821,0.2391040208806786,0.2462927216986488,0.25236011181889,0.2585548249675866,0.2644448342396071,0.2690719820192819,0.2736478793907218,0.2778310882213611,0.2815584223561158,0.2848041056452622,0.2884104233699177,0.2922810060711188,0.2958363576377433,0.2921032077351935,0.2892757449500158,0.2862171409261788,0.282509785795791,0.2792197180169071,0.2756856919707806,0.271062677205265,0.2707307465038408,0.2705046780031414,0.2700044622936189,0.2710278625025729,0.271842359863368,0.2729816647872029,0.2748397435897436,0.2768644555214724,0.2789387606759949,0.2816465578424414,0.2870047990966406,0.291717651994546,0.296614531775886,0.3019184543516712,0.3071699305116867,0.3104325699745547,0.3111964460507492,0.3110800744878957,0.3111683446499649,0.3098206141684402,0.3104758096761295,0.3114215283483977,0.3164983164983165,0.0,2.2299911273095323,51.531758414416345,134.4204931295568,193.66484233589568,fqhc1_100Compliance_implementation,26 -100000,95783,48595,464.2264284893979,4668,47.44056878569266,3683,37.88772537924266,1360,13.833352473821034,77.37208356525132,79.70955768899343,63.35007434272507,65.07900167648002,77.19906980669212,79.54254169174553,63.283254254009904,65.017180670345,0.1730137585591933,167.01599724790128,0.0668200887151684,61.82100613501973,240.70948,169.32375739934534,251307.1004249188,176778.50704127597,556.57806,375.49864205170354,580537.8616247142,391486.1322486282,491.43015,240.4140843134093,509701.99304678285,248350.85393057557,2585.55056,1210.7581809696924,2661048.703840974,1225728.8881844298,835.39172,382.2662252838379,857470.1982606518,384395.12782418303,1318.94518,569.8554105996182,1342481.442427153,564040.903646701,0.38084,100000,0,1094134,11423.050019314493,0,0.0,0,0.0,48592,506.7391917146049,0,0.0,44419,460.40529112681793,1056419,0,37893,0,0,0,0,0,100,1.0335863357798356,0,0.0,2,0.0104402660179781,0,0.0,0.04668,0.122571158491755,0.2913453299057412,0.0136,0.3635240839851791,0.6364759160148209,23.159825267636588,4.085191958088451,0.3171327721965788,0.2872658159109422,0.199837089329351,0.1957643225631279,11.37526719485099,6.131833132470088,14.510309668434996,11222.366162334054,42.07568300696983,13.000207283079334,13.191994659599317,8.047637647340293,7.835843416950892,0.5891935921802878,0.8156899810964083,0.6883561643835616,0.5774456521739131,0.1081830790568654,0.7637209302325582,0.9212253829321664,0.86084142394822,0.7108433734939759,0.1118881118881118,0.5172546012269938,0.7354409317803661,0.6263096623981373,0.5385964912280702,0.1072664359861591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020054694621695,0.0042982847410891,0.0065657283188894,0.0088682561127985,0.0108512152954337,0.0129805342889721,0.0153808519096107,0.0174806620813519,0.019835268149117,0.0217687214074445,0.0238470998155359,0.0257394445698803,0.0279593766703671,0.0302724520686175,0.032349877798517,0.03449024085306,0.0365194708403204,0.0383510500388903,0.0401712421288888,0.0422609999375299,0.0570212055434964,0.0713523689990586,0.0847040077156125,0.0975863482089379,0.1093177125036874,0.1243951399894347,0.1352445551375125,0.1457571246278179,0.1553483011780775,0.1635827931644077,0.1746245212376813,0.1855210957008659,0.1953899321857068,0.2042373622529298,0.2124984877313771,0.2215135206962992,0.2300562173738455,0.2384560046760487,0.2451318205517647,0.2518199716130214,0.2579533894386386,0.2635250403122152,0.2687877320038278,0.2736441620903772,0.2768991947220335,0.2800182077653659,0.2837993297654179,0.287739084050903,0.2916736644919578,0.2929397980542647,0.2895588097123606,0.286828399122807,0.2839268392121578,0.2816460715470131,0.2799028176942905,0.2770280584984581,0.272890739601571,0.2728610434412962,0.2728667109770438,0.2733335704631144,0.2754044583612913,0.2764352233879524,0.277061051229764,0.2776939798589237,0.2780800992887489,0.2801854778126052,0.2809689955464783,0.2876986609936178,0.2911617216882574,0.2958523892130579,0.2985067893715884,0.3039390756302521,0.3076205867727499,0.3123588740027096,0.3174070969544565,0.3229653882132834,0.3288762019230769,0.3322920734088246,0.3360021350413664,0.3415361670395227,0.0,2.242183403257914,46.19737826872136,140.25869954252946,187.03330420313617,fqhc1_100Compliance_implementation,27 -100000,95633,49044,469.16859243148286,4733,48.11100770654481,3756,38.55363734275826,1436,14.534731734861396,77.25911226955019,79.65566720975548,63.27736057920528,65.04585652788953,77.07029691689192,79.47434131473928,63.204210509170814,64.97906385941141,0.188815352658267,181.3258950162009,0.0731500700344653,66.79266847811505,238.21028,167.72257666362236,249087.95081195823,175381.4861644227,555.5327,375.9690585135063,580120.1886378133,392356.9254478122,499.34804,245.51091830920925,517977.54959062254,253460.58798879295,2671.87428,1256.174539663705,2744860.90575429,1264592.364498767,891.24916,410.931790834915,909868.7482354416,407656.0369160352,1402.28636,611.1679374770258,1421495.425219328,598120.672758885,0.38021,100000,0,1082774,11322.179582361738,0,0.0,0,0.0,48518,506.5824558468311,0,0.0,45148,467.9033388056424,1055177,0,37857,0,0,0,0,0,72,0.7424215490468772,0,0.0,1,0.0104566415358715,0,0.0,0.04733,0.1244838378790668,0.3034016480033805,0.01436,0.3545069570477919,0.6454930429522081,22.91651743348218,4.149085286326058,0.3168264110756124,0.277689030883919,0.1956869009584664,0.2097976570820021,11.426245777351696,6.111653451785871,15.528062861540526,11252.267406923977,43.23688939486909,12.86989972590433,13.55599353017429,8.119472427306373,8.691523711484091,0.5838658146964856,0.8053691275167785,0.7016806722689075,0.5741496598639456,0.1218274111675127,0.752991452991453,0.925925925925926,0.8583815028901735,0.7043010752688172,0.1564245810055866,0.5073472544470224,0.7106164383561644,0.6374407582938388,0.5300546448087432,0.1116584564860427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0047556758839574,0.006627692182774,0.0089213136075434,0.0113332315987588,0.0135762736031613,0.0156820360136223,0.0177220617209591,0.0200059291972071,0.0223043380350891,0.0246060469360345,0.0267481260909744,0.0286763420178352,0.0306582878335222,0.0327048309029175,0.0348361079516079,0.0367461953650274,0.0387501946333108,0.0408587833901972,0.0427448445547238,0.0573327620261895,0.0714121121980853,0.085071304055615,0.0979624072026536,0.1104035315612162,0.1258592384684637,0.1366065073986339,0.146883624777554,0.1564976524817385,0.1651434278779547,0.1764693190644688,0.1860288699120031,0.1963441469313057,0.2050973001402524,0.2137050966724387,0.2234451354953354,0.2326231929463366,0.2401646740356418,0.2473926642024452,0.2530476245188717,0.2585368683645646,0.2645040987932308,0.2692973922122298,0.2732824427480916,0.2761676092043681,0.2790818343546155,0.2823037936571658,0.2862771098162716,0.2903489427941367,0.292382740204114,0.2893750168586302,0.2858502144324779,0.2833914873779825,0.2806847029810691,0.2783880054249817,0.2756218447421319,0.2719477596563802,0.2724046140195209,0.2729527687017808,0.2734137894097904,0.274341748226884,0.2753900471409692,0.2763190902249351,0.2770776377497722,0.2783699808795411,0.2789295235137303,0.2797240365312297,0.2845536076997594,0.288666271074034,0.2932265572606414,0.3006651282747387,0.3058922736376093,0.311575663026521,0.31708048908559,0.3202247191011236,0.3250029195375452,0.3274176567904948,0.3341288782816229,0.3415570175438596,0.3460207612456747,0.0,2.7735581207593025,50.30778403347007,135.50739455762147,189.4466013837478,fqhc1_100Compliance_implementation,28 -100000,95621,48852,467.75289946769016,4689,47.96017611194194,3735,38.52710178726431,1380,14.05548990284561,77.28554750318864,79.71666603318751,63.27381344368565,65.07172202846738,77.10770357355935,79.54127937828235,63.20654435220858,65.0074146061854,0.1778439296292902,175.3866549051537,0.0672690914770655,64.30742228197062,239.67768,168.70681448300644,250653.81035546583,176432.80710618634,562.63147,380.1483897510234,587836.4376026186,397000.8446274028,495.85406,242.98895621878344,514797.64905198646,251305.1726676553,2630.4478,1231.9825545158603,2714969.1594942533,1253139.4443990751,880.27521,399.5012399022665,908310.2561152884,405921.8132336223,1352.23568,581.8000613678697,1379986.3837441567,581765.5010192518,0.38201,100000,0,1089444,11393.35501615754,0,0.0,0,0.0,49045,512.3351565032785,0,0.0,44846,465.274364417858,1049817,0,37629,0,0,0,0,0,101,1.0562533334727728,0,0.0,0,0.0,0,0.0,0.04689,0.1227454778670715,0.2943058221369162,0.0138,0.3591477156320426,0.6408522843679574,23.17721837152278,4.04046096579512,0.309772423025435,0.2880856760374832,0.1925033467202141,0.2096385542168674,11.209658799197298,5.999747663978288,14.845114561003587,11251.082942363942,42.92247912930423,13.268890040691636,13.131077205726069,7.953021802424383,8.569490080462142,0.58714859437751,0.8262081784386617,0.6974935177182369,0.5549374130737135,0.1251596424010217,0.7465034965034965,0.9207708779443254,0.8792569659442725,0.6848484848484848,0.1428571428571428,0.5167888846005403,0.7536945812807881,0.6270983213429256,0.516245487364621,0.1195286195286195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023611674098094,0.0044731156619906,0.0069142671486009,0.0088123189510596,0.0111504496805436,0.0131813505281708,0.0155155001989166,0.0178060640732265,0.019975248284256,0.0221009186526427,0.0239841610159928,0.0260689074075976,0.0280288214101904,0.0301412225543758,0.0322880419630964,0.0341546163553238,0.0362698059047244,0.0382082917912927,0.0404479880092428,0.0423168391188251,0.0564260701405947,0.0707129982814268,0.0839489308043923,0.0969247463626881,0.1098001521041068,0.1250542770299609,0.1355647646371267,0.1459514774229309,0.1560216146808624,0.1648366996132359,0.1769427452503479,0.1890292156756463,0.1986749915552504,0.2075641208243401,0.2163732374957281,0.2257745916193181,0.2340660937203142,0.2415378374723937,0.2487162592020358,0.2544262745951892,0.2589081058553865,0.2630112612085313,0.2676810769814183,0.2721818225454196,0.275883462076516,0.2799028012482885,0.2832448805887949,0.2867145330481719,0.2905596308872702,0.2930681833177181,0.2904571013478974,0.2872860635696821,0.2840435712677325,0.2816216372243389,0.2789476806264088,0.2753334965120548,0.2711851008663757,0.2708746618575293,0.2718785669261827,0.2728277337135728,0.2728936019267031,0.2729899744446629,0.2739394445255931,0.2751606233743136,0.278089552238806,0.2796406721908154,0.2800382419930827,0.2853993977212753,0.2902502157031924,0.2952615721720076,0.2994604316546763,0.3023645991716038,0.3050974046181614,0.3090595470226489,0.3143042190969652,0.3191068728921967,0.3228962818003913,0.323682108626198,0.3313577586206896,0.3314752879970271,0.0,1.953176822018669,50.08763582318486,137.7126571675232,186.7517158285449,fqhc1_100Compliance_implementation,29 -100000,95815,49052,468.4235245003392,4723,48.259667066743205,3753,38.64739341439232,1467,14.955904607838022,77.35864855579545,79.66265763279725,63.35358995694328,65.05382786412417,77.16460657400268,79.47173636492327,63.28001240774192,64.98425294977956,0.1940419817927789,190.9212678739749,0.073577549201353,69.5749143446136,239.20732,168.3649896589947,249655.39842404632,175718.82237540538,559.09358,377.5761809590401,583003.1101602046,393557.4085049733,497.94457,244.3015708745558,516319.313259928,252464.3071855298,2667.43459,1253.277340027101,2747585.138026405,1271660.439416689,867.55604,397.1130630113776,888976.9034076085,397985.9552380909,1423.25622,611.9138996391594,1451625.4448677138,609654.590522109,0.38358,100000,0,1087306,11347.97265563847,0,0.0,0,0.0,48735,508.0937222773052,0,0.0,44946,465.7725825810155,1057058,0,37961,0,0,0,0,0,97,1.0019308041538382,0,0.0,0,0.0,0,0.0,0.04723,0.1231294645184837,0.3106076646199449,0.01467,0.3574190922043558,0.6425809077956443,23.25658039024349,3.946996778582151,0.2885691446842526,0.2928324007460698,0.2104982680522248,0.2081001865174527,11.136958357900248,6.1676105639628656,15.81321417749576,11301.487650076877,43.10981898231367,13.510106995903929,12.300372491879871,8.73954758455534,8.559791909974527,0.5837996269650946,0.8016378525932666,0.7054478301015698,0.5810126582278481,0.1113956466069142,0.7532355478861087,0.9229122055674518,0.8717948717948718,0.7184466019417476,0.1264367816091954,0.5080956052428681,0.7120253164556962,0.6381322957198443,0.5325342465753424,0.1070840197693575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024694856587656,0.0045174163619605,0.0069041029228382,0.0091631404304545,0.0116331050738625,0.0139260464879711,0.0160330847899604,0.0182693582773147,0.0202889075046482,0.0224127172478697,0.0243675099866844,0.0263614077196869,0.0285825833230592,0.0304399279650115,0.0325201575485121,0.0344970047510844,0.0365982368279458,0.0386892111837944,0.0405928972816885,0.0426318255166311,0.0572647700124148,0.0712836919473893,0.0856157563179355,0.0985286389910667,0.1112387496574837,0.1262958774979657,0.1370883955643194,0.147034732195096,0.1566804040058935,0.1644919533821527,0.1759353970390309,0.1867562421567354,0.1975987993996998,0.2063405242200148,0.2152348867677334,0.2248994203508927,0.2332254464285714,0.2401489330588645,0.2477025708515804,0.2544352945218815,0.2602966356610671,0.2656939260264676,0.271091752674936,0.2749205968718163,0.2786534605335116,0.2826188774126753,0.2864879061507291,0.2896386032262575,0.2918499922356229,0.2949111864227974,0.290602429084453,0.2877028568287689,0.2854472104693496,0.2823085127850327,0.2792059538634881,0.2748744255637491,0.2718701138714721,0.2715577988266527,0.2723008698618455,0.2739550068684994,0.2746708065240161,0.2756390028400126,0.2759399912121021,0.2772233113527,0.2785962390705473,0.2790830796450966,0.2813726047648831,0.2869027437684435,0.2926205979136035,0.2974728669888299,0.3020003620564808,0.3054202837179758,0.3099404201944183,0.3146332193082478,0.3197316936836221,0.3266736768314055,0.3307540585647094,0.3310497682853113,0.3387631143014908,0.3430685358255452,0.0,2.075288404722696,50.42075353757756,134.87229815666714,191.36333385716705,fqhc1_100Compliance_implementation,30 -100000,95863,49062,466.9371916172037,4729,48.08946100163775,3781,38.87839938245204,1408,14.322522766865214,77.41454581429173,79.70440744869923,63.37712166936033,65.0685130941854,77.23526219806487,79.52842056562052,63.30959683216788,65.00443155629124,0.1792836162268543,175.98688307870702,0.067524837192451,64.08153789416815,242.22484,170.4069864699362,252677.67543264863,177760.55702829282,560.38651,378.0191972392331,584017.5354412026,393782.6806545383,500.01432,245.49736802936812,518179.2766760898,253435.16734723715,2624.10015,1244.5793437105403,2698554.3118825825,1259822.0921390173,851.2424,394.96365132403815,867672.9916651889,391703.38016131066,1358.24904,582.7876408063153,1382319.6853843506,578898.7281008926,0.3825,100000,0,1101022,11485.348883302211,0,0.0,0,0.0,48841,508.8928992416261,0,0.0,45095,467.0310755974672,1046041,0,37563,0,0,0,0,0,95,0.9909975694480664,0,0.0,0,0.0,0,0.0,0.04729,0.1236339869281045,0.297737365193487,0.01408,0.349787578393688,0.650212421606312,22.889032832796342,3.9100968755824574,0.3070616239090187,0.3004496165035705,0.1991536630521026,0.1933350965353081,11.323040409660551,6.285575915477145,15.088340670171846,11302.03170734691,43.78367349911208,14.075405675571773,13.323898186681728,8.42715665293125,7.9572129839273344,0.5897910605659878,0.8045774647887324,0.7097329888027563,0.5524568393094289,0.1039671682626539,0.7598290598290598,0.896969696969697,0.8936170212765957,0.7111111111111111,0.1385542168674698,0.5135963232477978,0.733229329173167,0.6370192307692307,0.5026178010471204,0.0938053097345132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024295186516171,0.0047211387467706,0.006875082389446,0.0092786226219722,0.0114137615611342,0.0137160532768953,0.0160248573757131,0.0182891998857562,0.0203891925021706,0.0227684187916168,0.0249830987646733,0.0272136057771212,0.0294691847680894,0.0316311720929275,0.0335903992081821,0.035705063984053,0.0376796300319687,0.0401156524622782,0.0420005813229248,0.0440295402537965,0.0580740678955709,0.0723675960372862,0.0857618738346148,0.0984492949909183,0.1102687220958638,0.1255082535089294,0.1356235633097107,0.146549891586242,0.1555752325680635,0.1637555286633753,0.1759789156626506,0.1866479269149683,0.1973076630558785,0.2060861013986014,0.2141036066726741,0.2229758137682282,0.2316971203692349,0.239685856815424,0.2471855336999036,0.2534905012588693,0.2587305073577861,0.2645886656615593,0.2699009386008464,0.2740206704111328,0.2789299851859047,0.2822846866377611,0.2853569463204762,0.2895369087419121,0.2923853923853924,0.2950201174065035,0.2921210817207482,0.2887277521423863,0.2861639639133245,0.2830528499798282,0.2804040045021029,0.2768242635055761,0.2731011012903531,0.2731504924941603,0.2738212598157528,0.2740931263858093,0.2752353313241805,0.2761037278420133,0.2769537579459055,0.2781566942734399,0.2782888465204957,0.2804572785218446,0.2808599363218844,0.2870513853592016,0.2912429280483148,0.2954277633749705,0.2977931281959272,0.2998063739599141,0.3060342165400531,0.3124023510155494,0.3172394729567861,0.317758098345374,0.3233433734939759,0.3258336681398152,0.3302603036876356,0.3290662650602409,0.0,2.1446727768474743,50.72476634724729,148.0205472453248,180.7753721415689,fqhc1_100Compliance_implementation,31 -100000,95712,48907,467.4648946840521,4631,47.22500835840856,3720,38.30240722166499,1435,14.627214978268135,77.36002699221102,79.73147385700145,63.33690834044432,65.08850263022798,77.17154555513831,79.5480257277638,63.26415533089369,65.02014454457351,0.1884814370727099,183.44812923764664,0.072753009550631,68.35808565446655,240.35968,169.07047047300065,251128.05081912404,176645.00843467974,560.34647,378.7569765094044,584921.3264794383,395196.4294021694,497.88421,244.8482134383365,517088.70361083245,253333.1676768285,2612.58331,1245.0986472797397,2691319.197174858,1262569.7585253052,855.0645,399.2631474936589,875998.2342861919,399776.4935365044,1389.5843,607.8256064032778,1417419.5921096622,604380.5082558055,0.3821,100000,0,1092544,11414.911400869274,0,0.0,0,0.0,48950,510.8554831160147,0,0.0,44997,467.00518221330657,1051298,0,37745,0,0,0,0,0,87,0.9089769307923772,0,0.0,2,0.0208960213975259,0,0.0,0.04631,0.1211986390997121,0.3098682789894191,0.01435,0.3625233450923428,0.6374766549076571,22.753595838933556,4.046624778971376,0.3094086021505376,0.278494623655914,0.2099462365591398,0.2021505376344086,11.415456027970082,6.280263823635915,15.454254243087997,11221.989753645232,42.91625206941959,12.876086551814304,13.041928899475066,8.61452881072253,8.383707807407687,0.5922043010752688,0.8040540540540541,0.7019982623805386,0.6043533930857875,0.1196808510638298,0.7464671654197839,0.9232409381663113,0.8470948012232415,0.7476190476190476,0.1573604060913705,0.5184743742550656,0.7054673721340388,0.6444174757281553,0.5516637478108581,0.1063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978912398334,0.004338614684386,0.0064641831484732,0.0087466222393791,0.0107815614955856,0.013125738259134,0.0155045871559633,0.0176672314192982,0.0199131101456682,0.0219803845287577,0.0242367077446738,0.0265389511724364,0.0286187322611163,0.0307659030982201,0.0325319851423854,0.0346150267263572,0.0365600977974846,0.0387262177843745,0.0407742955512331,0.0426192609882666,0.0576372788604131,0.0713799780208278,0.0843849986886965,0.0975304486842382,0.1095576994042912,0.1248572757643675,0.1350023868880284,0.1455756827518678,0.1554055497404567,0.1635807766573696,0.1748817565747654,0.184829661053634,0.1951195652173913,0.2043225869928831,0.2122338553580855,0.2212327629174281,0.2300320201715924,0.2377899980882336,0.2465644700439929,0.2526333867643691,0.2581585216365613,0.2639741027708633,0.2681124289042084,0.2733736309773176,0.2772214737404265,0.2812842387758368,0.2855213634601678,0.2873513568452078,0.2911143585034981,0.2947006339206874,0.2919149394057594,0.2883073665103615,0.2852354664263181,0.2823716328446595,0.2791902281193879,0.2752912042557094,0.2714806457212289,0.2714260036928708,0.2708343965297269,0.2717877690176859,0.2718276523975474,0.2730219855787178,0.2742726517040731,0.2748780487804878,0.2758423349309679,0.2776412776412776,0.2801698513800424,0.2837749069410992,0.2882936369351121,0.2938360500079126,0.296329900648732,0.2985279375296786,0.3019231966141781,0.3070848375451263,0.3123670335769124,0.3181924334423167,0.3204935299428227,0.3273453093812375,0.3316993464052287,0.3373860182370821,0.0,2.1991554943602325,52.37733729735838,130.1084969384729,185.9849941245024,fqhc1_100Compliance_implementation,32 -100000,95748,48685,465.0541003467435,4618,46.95659439361658,3670,37.71358148473075,1404,14.287504699837072,77.33346816806463,79.69866550741125,63.32120940122799,65.07155920407955,77.14744197936494,79.51554918621315,63.24977090140749,65.00367622043501,0.1860261886996852,183.11632119809929,0.0714384998204948,67.88298364453738,241.15806,169.62735113600803,251867.4645945607,177160.20296612778,557.43796,376.6298296674925,581556.3876007854,392718.88673130766,495.26919,242.99737390409425,513666.8859923968,250969.30758162675,2575.99591,1227.1257806003575,2646526.99795296,1237839.942422449,826.65415,382.9369955296454,848499.4464636337,385126.57346611447,1359.9952,594.3237202401726,1385534.6325771818,589907.5304191406,0.37974,100000,0,1096173,11448.521117934575,0,0.0,0,0.0,48516,506.0471236997117,0,0.0,44685,463.0697246939884,1050540,0,37677,0,0,0,0,0,113,1.1801813092701674,0,0.0,0,0.0,0,0.0,0.04618,0.1216095223047348,0.3040277176266782,0.01404,0.3673172757475083,0.6326827242524917,22.674282648696646,4.043843655774059,0.3188010899182561,0.2841961852861035,0.2005449591280654,0.1964577656675749,11.467107606874736,6.346993384068644,15.20712979634466,11149.30429139672,42.33669385563575,12.863745576953468,13.188065409524295,8.293111538495568,7.991771330662415,0.5852861035422343,0.8207094918504314,0.6615384615384615,0.6032608695652174,0.102635228848821,0.7454702329594478,0.912472647702407,0.8526645768025078,0.7370892018779343,0.1058823529411764,0.5113500597371565,0.7491467576791809,0.5898942420681551,0.5487571701720841,0.101633393829401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101474238816,0.0044923538717397,0.0067291882345776,0.009063382714544,0.0109334635178291,0.0131047052714109,0.0152204053337682,0.0173195076646731,0.0194799885532071,0.0217211059134226,0.0238561454948074,0.0259945588008829,0.028289954032681,0.0303704390274044,0.0321582221671979,0.0342322043183016,0.0361476971504307,0.0381231062964346,0.0403385108019878,0.0424738574344873,0.0573185243950813,0.0714203481009346,0.0851845244965844,0.0980247796545993,0.1102416182410698,0.1251083899075777,0.1357467983745185,0.1457690260777009,0.1546077928736221,0.1641088339071029,0.1758058260794622,0.1868832236842105,0.1971808007309035,0.2057797272021263,0.2132839055298271,0.222661484114592,0.2306764902880107,0.2380245079836613,0.2453025007942631,0.2511819045547682,0.2569776852815354,0.2618485351539666,0.2665507698857589,0.2706641757083662,0.2745126581510729,0.2782103799928651,0.2813202738493828,0.2851682539682539,0.2883991469010534,0.2902184085307182,0.2870654396728016,0.2835482674797083,0.2811669595782073,0.2784791862059014,0.2754635810710577,0.2711094108645753,0.2672085263840352,0.2682926829268293,0.2682452820539048,0.2692362496437731,0.269022550776583,0.2703340809821745,0.270605139311149,0.2716340276079756,0.2712241577335375,0.2734780801994598,0.2751476781323309,0.2798875702685821,0.2820226288587791,0.2859616671258215,0.2877496731142071,0.2941362082566395,0.2983014861995753,0.3005968119664576,0.3054518297236744,0.3100426338228327,0.3157014743882049,0.3154918198343769,0.3182950456684196,0.3258212375859434,0.0,2.3931810628734325,50.16206996919065,133.95782979573494,181.2295222532571,fqhc1_100Compliance_implementation,33 -100000,95804,49400,471.6504530082251,4621,47.13790655922509,3694,38.046428124086674,1401,14.258277316187216,77.34149214859087,79.68108677212116,63.33904717832892,65.072736244962,77.16344193663343,79.50632201926561,63.27107091335374,65.00826968591699,0.1780502119574407,174.76475285555182,0.0679762649751793,64.46655904501597,240.4952,169.33887624468508,251028.34954699173,176755.53864628312,563.49306,381.2405846398215,587647.5094985595,397412.7966865501,506.88298,249.2014194797938,525994.2591123544,257735.55686462947,2606.99518,1230.983589424057,2686965.7112437896,1250688.8773049226,866.02268,395.4424640361707,893187.7583399441,402020.3319163952,1357.0575,577.8586245549187,1382752.0145296643,575542.8290306169,0.38364,100000,0,1093160,11410.37952486326,0,0.0,0,0.0,49108,512.0349881007056,0,0.0,45829,475.293307168803,1048382,0,37573,0,0,0,0,0,88,0.9081040457600936,0,0.0,2,0.0208759550749446,0,0.0,0.04621,0.1204514649150245,0.3031811296256221,0.01401,0.3637312186978297,0.6362687813021702,23.16945357970979,4.002861934070558,0.3023822414726583,0.2872225230102869,0.2100703844071467,0.2003248511099079,11.696127934790006,6.617347524538242,14.813371200720043,11296.0288265019,42.15036148955023,13.02973710704103,12.647843507324358,8.494442678992533,7.978338196192307,0.5944775311315647,0.8124410933081998,0.7063563115487914,0.5811855670103093,0.127027027027027,0.7661431064572426,0.9156118143459916,0.8779761904761905,0.7209302325581395,0.1524390243902439,0.5172684458398744,0.7291311754684838,0.6325224071702945,0.5413907284768212,0.1197916666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0045517674847683,0.0069612867218022,0.0093281307157663,0.0114463041155822,0.013934868749427,0.0162573433420365,0.0184623553799181,0.0203388790608734,0.0224763972229617,0.0246903453367238,0.0268122118277692,0.029109236782555,0.031132493380997,0.0332053822024104,0.0353617315981518,0.0371846912148448,0.0389538985020125,0.0408899141675499,0.0429957524777213,0.0572093362965745,0.0719379326209247,0.0855313485701111,0.0982398991225765,0.1105151119167053,0.1258904601855962,0.1374675359092595,0.1474100619968735,0.1565915300546448,0.1653768650317269,0.1766396486582491,0.1872060715482664,0.1980204474093067,0.2067473197600078,0.2147734394757386,0.2240993733808648,0.2324746692229665,0.2398190045248869,0.2469283991439151,0.2538006080972955,0.259664108039476,0.264602565149906,0.2705269499273539,0.2751052530858291,0.2791616664848418,0.2819305256686136,0.2856928838951311,0.289490708441682,0.2929303358025966,0.2954745600084121,0.2923361926623978,0.2893354365269872,0.2857785146261275,0.2821008027903088,0.2782372821060121,0.2749168167526481,0.2718461927010986,0.2721737564855885,0.2714000988024462,0.2719972937364242,0.2733593764602531,0.2728742385111291,0.2741254649559075,0.2749303310667707,0.2748122735887532,0.2760288039098448,0.2780837161525951,0.2827107959022852,0.2889740524576331,0.2942039909548934,0.3002057142857143,0.3075491759702286,0.3093556928508384,0.3121988527724665,0.3157993789404347,0.3187086092715231,0.3238139106402579,0.3287838663678957,0.3346196251378169,0.3386303443057132,0.0,1.9597137914163727,49.621482536526734,126.13179380697903,194.0852100787223,fqhc1_100Compliance_implementation,34 -100000,95715,48378,462.2055059290602,4674,47.76680771039022,3752,38.7400094029149,1411,14.459593585122498,77.3419109081298,79.71088812461603,63.33255108723839,65.08082417773761,77.16665986649356,79.53741148693605,63.26605979527869,65.01726343450153,0.175251041636244,173.47663767998256,0.0664912919596929,63.56074323608141,240.70354,169.1459904185851,251479.43373556912,176718.37268827777,556.24511,375.7854798730133,580708.1126260251,392169.6075568232,492.45946,241.37705502715207,511714.1722822964,250038.73587078755,2645.08909,1231.109685618573,2734823.684897874,1257542.79435676,863.47762,388.7491220811858,892343.6451966775,396362.34872401,1368.6501,577.7357898240451,1404142.0675965103,580748.9531811108,0.37871,100000,0,1094107,11430.883351616778,0,0.0,0,0.0,48512,506.36786292639607,0,0.0,44476,461.7980462832367,1054236,0,37900,0,0,0,0,0,93,0.971634540040746,0,0.0,0,0.0,0,0.0,0.04674,0.1234189749412479,0.3018827556696619,0.01411,0.3501331694324933,0.6498668305675066,22.95179710723775,4.064015718142927,0.3062366737739872,0.2822494669509595,0.2100213219616204,0.2014925373134328,11.437359983646086,6.330567067059095,14.942004381289385,11141.715629949762,42.89390566570437,12.929057258976057,13.052008968952912,8.83196747863906,8.080871959136335,0.5866204690831557,0.8139754485363551,0.6919060052219321,0.5799492385786802,0.115079365079365,0.7661996497373029,0.9211711711711712,0.8674698795180723,0.7333333333333333,0.1538461538461538,0.5080459770114942,0.7365853658536585,0.620563035495716,0.5242214532871973,0.105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521467919637,0.0047836221749265,0.0070298234936092,0.0094356870073941,0.0115609875137267,0.013857212674106,0.0159535969499576,0.0180452355678941,0.0199409233536728,0.0217182158721061,0.0237931706116925,0.0260404366085822,0.0279097509306678,0.0300841738700404,0.0321961488452727,0.0342474957875476,0.0363611884961526,0.0383358067227762,0.0403231676250091,0.0422268075616415,0.056784475915946,0.0699130143510619,0.0829311285516431,0.096196726829063,0.1086452048436774,0.1240438025710204,0.1340469774448853,0.1442031299904184,0.1537401448625088,0.1624776064965296,0.1744243651323583,0.1848461238800156,0.1959671104150352,0.2048108462715941,0.2122858336815712,0.2213514859704466,0.2299913029904333,0.2385870664658679,0.2454841306738935,0.2519590459303323,0.2576083437398825,0.263257620061288,0.2685318821720099,0.2720837475595587,0.2750488773391298,0.2781392483056069,0.281706538475983,0.2853637450097897,0.2881575202463194,0.2911357413647851,0.2877305231464057,0.284665724594932,0.2806436678404579,0.2774077537222182,0.2744848601393429,0.2716007986465684,0.2682435198891373,0.267800264615083,0.2681815089461868,0.2695952071963165,0.2698196602077544,0.2703138836957591,0.2723228272448148,0.2720811051693405,0.2744910179640719,0.2750194552529182,0.2769898451239576,0.2810173309140962,0.2838953407023926,0.2877390237143196,0.2915346310547759,0.2936327608982827,0.2986224170319349,0.3010084161043294,0.3029395244336266,0.3053462081959491,0.31,0.3183938349219225,0.3197015750207239,0.3258640334219521,0.0,1.8268116700468315,50.088683690963606,130.94389790138376,196.48526403804965,fqhc1_100Compliance_implementation,35 -100000,95706,49081,468.71669487806406,4789,48.701230852820096,3842,39.53775102919357,1495,15.234154598457776,77.33810060160408,79.7204747920694,63.31256206328344,65.07482965744532,77.14493499286006,79.53181998626638,63.23872675134168,65.00554232297654,0.1931656087440245,188.65480580301156,0.0738353119417567,69.28733446878255,240.24968,169.06219958232407,251028.8592146783,176647.44068535313,562.36173,380.221966607234,586990.920109502,396679.17017452826,504.50043,247.77601753012732,523332.6541700625,256017.581262759,2735.43895,1290.053506216466,2817087.528472614,1306852.5967196063,869.70508,397.6990664032188,892708.6180594738,399530.5448115258,1446.7944,624.9829032792026,1475295.4046768227,620857.2126082897,0.38168,100000,0,1092044,11410.402691576286,0,0.0,0,0.0,49022,511.5771216015715,0,0.0,45546,472.175203226548,1047187,0,37617,0,0,0,0,0,95,0.9717259106012162,0,0.0,0,0.0,0,0.0,0.04789,0.1254715992454412,0.3121737314679473,0.01495,0.3608826479438315,0.6391173520561685,23.114783010558067,3.98824324477833,0.3003643935450286,0.284487246225924,0.209005726184279,0.2061426340447683,11.428311527742132,6.337550522029925,16.09450899641355,11272.584093699585,44.21936269358365,13.46832694904281,13.169959880940198,8.975813146293579,8.60526271730707,0.5843310775637689,0.8023787740164684,0.6949740034662045,0.5753424657534246,0.1313131313131313,0.7637729549248747,0.9094736842105264,0.8702064896755162,0.7280701754385965,0.141025641025641,0.5030257186081695,0.7200647249190939,0.6220858895705521,0.5147826086956522,0.1289308176100629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024629543289209,0.004798133495638,0.0070968789977054,0.0095432648332215,0.0118028917084685,0.0136485399117937,0.0157681088468677,0.0177617535007711,0.0198701232295341,0.0220037884605539,0.0241081225197141,0.0263792908704447,0.0284912295132534,0.0305748357465038,0.0327944953939156,0.0348982607707172,0.0370159453302961,0.0389068725099601,0.0409830952529474,0.0432440879258256,0.0576605744125326,0.0714898873581508,0.084397527780984,0.096999148023098,0.1097342332841172,0.1254495832099183,0.1360158745317756,0.145741486167018,0.1552313775782836,0.1651717700577216,0.1770378751144873,0.1882226841626607,0.1987437678256515,0.2070082514390772,0.2155962797864729,0.2243330414639282,0.2325028198742503,0.2404412178513141,0.2475670274014603,0.2535333967606231,0.2595011463906065,0.2654898334250296,0.270330112721417,0.2743951395463097,0.2769537276625727,0.2816701615887504,0.2854619701372883,0.2890496630959507,0.2925559469539991,0.2948934374340578,0.290492649926701,0.2864408643536592,0.2835356846414654,0.2803138476627291,0.2779928506800753,0.2744084310996222,0.2703308852562583,0.2718360800615354,0.2723462973373537,0.2727806544600438,0.273452236436642,0.2747023516678146,0.2766201770502756,0.2774271249191516,0.2776514516862539,0.2785136984532755,0.2803783173348391,0.2855985542468997,0.2887306824101406,0.2919050231173105,0.2964140215785468,0.3005837589909308,0.304366596768225,0.3065259402408206,0.3091109276080374,0.3149889701613839,0.3197258641239571,0.3186119873817035,0.3207899653055778,0.3270018621973929,0.0,2.3545087300489165,51.81470922020204,140.87805891247817,191.2051725528903,fqhc1_100Compliance_implementation,36 -100000,95648,48701,465.456674473068,4720,48.06164268986283,3721,38.29667112746738,1394,14.11425225828036,77.27782633283482,79.68784621950599,63.2892740309558,65.07179319056587,77.09535477514653,79.51126323524043,63.22000384794424,65.00748893987026,0.182471557688288,176.58298426555064,0.0692701830115538,64.30425069561352,240.37772,169.09987080055848,251314.71646035463,176793.73328506455,557.27251,376.098562197742,582025.2279190364,392609.1216075315,491.13292,240.68801870028804,510118.0160588826,248934.73905792128,2629.91289,1237.0928954415056,2706581.2353629977,1250491.679165832,817.28457,378.28903009528665,841124.7804449649,382156.0705844785,1353.03006,583.7744517191621,1372218.3840749415,575462.6254315064,0.38106,100000,0,1092626,11423.396202743394,0,0.0,0,0.0,48652,508.0294412847106,0,0.0,44398,460.7519237203078,1053783,0,37792,0,0,0,0,0,83,0.8677651388424222,0,0.0,0,0.0,0,0.0,0.0472,0.1238650081352018,0.2953389830508474,0.01394,0.3590420133955754,0.6409579866044246,23.11082337746278,4.003029312413074,0.3198065036280569,0.2813759742004837,0.1972588013974738,0.2015587207739854,11.239733109009869,6.194831198109815,15.05032839990925,11289.21780772199,42.70637166523602,12.908058878504654,13.406094038439967,8.157048882672685,8.235169865618712,0.5775329212577264,0.7994269340974212,0.6983193277310924,0.55858310626703,0.0946666666666666,0.7690311418685121,0.9409190371991248,0.8587896253602305,0.7311827956989247,0.1506024096385542,0.4912280701754385,0.6898305084745763,0.6322657176749703,0.5,0.0787671232876712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340757554263,0.0047055005679052,0.0069640427994233,0.0089840137402563,0.0114349661732539,0.0137325414370269,0.0159714431412544,0.0184562901529002,0.020570364763405,0.0227205211993321,0.0247487179487179,0.0266242103641312,0.028574662495884,0.0308061756642549,0.0326657030766054,0.0345455297670762,0.0368075273051335,0.0388557188100306,0.0408341658341658,0.0428757624732808,0.0569738643369943,0.0705780086507545,0.0838240387945964,0.0968997958453476,0.1090698042526249,0.1246930307392666,0.1359683122896069,0.1461096728140548,0.1559054107530562,0.164843305455053,0.1764959429316494,0.1873951126557746,0.1972399682204542,0.2056828376988555,0.214203163351788,0.2235444019721899,0.2321586050613411,0.2397448302243424,0.2472796178416221,0.2538509075095557,0.2587745664739884,0.2639432571074679,0.2686641284555537,0.2724027646347161,0.2767502580605987,0.2813898167206932,0.2848276293561909,0.287675066464834,0.2918204779483194,0.2953643257500824,0.2928830273066508,0.289289895998347,0.2873299019953465,0.2847353736284388,0.2818294006571806,0.2784414629663664,0.2763730783236491,0.2759396397431897,0.2763065785654527,0.275768599757472,0.2762050783441158,0.2765785319652723,0.2770429804216552,0.277998039914469,0.2791494049187001,0.2807676370040401,0.2833810644511866,0.2882987395748416,0.2936321168908714,0.2971739303008653,0.3003682990042286,0.3046119710497121,0.3044622712459263,0.3102239829346335,0.3140015015015015,0.3171513353115727,0.3217457886676876,0.3275510204081632,0.3346281908990011,0.3404336249524534,0.0,2.278037018461461,49.973881620853,130.82718296930798,192.32034297083732,fqhc1_100Compliance_implementation,37 -100000,95823,49009,467.6643394592113,4748,48.474792064535656,3765,38.75896183588492,1426,14.495476033937573,77.39792083527668,79.70178030327004,63.37134666233783,65.07166697997373,77.2148987722034,79.52350918968874,63.30162613868582,65.00634003130644,0.183022063073281,178.2711135813031,0.069720523652009,65.32694866729116,240.36012,169.05786693195975,250837.37724763367,176427.0097283112,562.23422,379.89839804385366,586171.8063512936,395894.8075039903,498.97942,245.0939322101167,518012.9092180374,253639.9419190548,2688.01225,1253.290194078351,2767728.6977030565,1270985.902292001,866.83233,388.7705698741746,889609.0604552142,390759.3310803789,1393.6611,594.7555030372371,1417950.7216430292,589056.7886440002,0.38208,100000,0,1092546,11401.69896580153,0,0.0,0,0.0,49029,511.0777162059214,0,0.0,45051,467.3408263151853,1052313,0,37696,0,0,0,0,0,93,0.9705394320778936,0,0.0,2,0.0208718157436106,0,0.0,0.04748,0.1242671691792294,0.3003369839932603,0.01426,0.3479838709677419,0.652016129032258,23.19913714526893,4.088413157832299,0.3078353253652058,0.2717131474103585,0.2087649402390438,0.2116865869853917,11.31320498957538,6.0481779972403205,15.240001300285204,11277.620222268852,43.05694196827008,12.60548608268944,13.10731217495776,8.726238016511802,8.617905694111078,0.5803452855245684,0.8142717497556208,0.6988783433994823,0.5750636132315522,0.1129234629861982,0.7666370896184561,0.9379157427937916,0.8710691823899371,0.7230769230769231,0.1411042944785276,0.5007581501137225,0.7167832167832168,0.633769322235434,0.5262267343485617,0.1056782334384858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002328500850409,0.0043672547092381,0.0066027689030883,0.0088949361818791,0.0111723324658425,0.0133215281594105,0.0156609810274907,0.0176383575618464,0.0199133579908862,0.0221092263305436,0.0243120299981558,0.0265196204154911,0.0285819960137259,0.030686589281304,0.0328276061099544,0.0348978875420736,0.0370573447408986,0.0390543215762689,0.0411214953271028,0.0430144456933516,0.0576551954351522,0.0719380817906076,0.0849560120377069,0.0977784319703931,0.1097091779190251,0.1256039158059435,0.136158299930012,0.1462677353088312,0.1558857777730297,0.1649594010447393,0.1760182652335925,0.1876629206191254,0.1982279719519487,0.2073866742472283,0.2156084365171875,0.2239025740381954,0.2324417139607747,0.2398435216619078,0.2461400684698574,0.2522448325955412,0.2588342693383254,0.2644984234497256,0.2690052950075643,0.2737658049930021,0.2785484945780578,0.2831700691977729,0.2860654305891748,0.2896572718739694,0.2913707157062788,0.2940055212304456,0.2901829390873149,0.2872933473955266,0.2843918312387791,0.2817758219000776,0.2786422126904304,0.2741574402631619,0.2710159754466042,0.2716633750632477,0.2725187337513381,0.2735267468509602,0.2743176525384257,0.2750049125564944,0.2761291934778534,0.2776120067693952,0.2799808314364442,0.2814380576883171,0.2829480508402286,0.2878949682769018,0.2940086041061873,0.2977614591969679,0.3014438794042862,0.3049536423841059,0.3101110901901713,0.3134848484848485,0.3133713857958267,0.3168526130358191,0.3212332928311057,0.3238817891373802,0.3250873890830869,0.3332086761406133,0.0,1.9498604521863725,48.99444046652909,138.11595669958072,193.00116423328924,fqhc1_100Compliance_implementation,38 -100000,95556,48614,464.5652810917159,4672,47.69977814056679,3656,37.66377830800787,1405,14.337142617941312,77.19945181010942,79.66917522441453,63.224607941291474,65.05322513765562,77.01837135733484,79.49231700518364,63.156450676300565,64.98924433251995,0.1810804527745801,176.85821923089406,0.0681572649909085,63.98080513567095,239.40796,168.4257044789906,250541.5881786596,176258.18481203754,556.74349,376.2125838323576,582002.6581271715,393077.37990989065,492.68906,242.1949372945257,512195.278161497,250882.16060992752,2574.41147,1220.822581310409,2653231.2570639206,1236863.5989286366,836.49948,385.12023198827984,861635.2714638537,389313.871794884,1365.05468,580.9315405356243,1393319.45665369,576386.491146768,0.37907,100000,0,1088218,11388.254008120894,0,0.0,0,0.0,48612,508.0685671229437,0,0.0,44475,462.0327347314664,1050542,0,37750,0,0,0,0,0,92,0.9627862195989786,0,0.0,1,0.0104650676043367,0,0.0,0.04672,0.1232490041417152,0.3007277397260274,0.01405,0.3748463744367062,0.6251536255632937,22.80524799205472,4.0754591749090885,0.2975929978118162,0.2825492341356674,0.2188183807439825,0.2010393873085339,11.392944158539708,6.1943889582461615,15.120436754404253,11235.257307641725,42.43006813803278,12.821087593169976,12.432451263604934,8.896588908835826,8.279940372422042,0.587800875273523,0.8063891577928364,0.7150735294117647,0.5725,0.1088435374149659,0.7608318890814558,0.9145833333333332,0.898989898989899,0.7376237623762376,0.1314285714285714,0.5079936051159073,0.7124773960216998,0.6460176991150443,0.5167224080267558,0.1017857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023821350011657,0.0048598851484344,0.0071492403932082,0.0092931511306328,0.0115140285865537,0.0139962078737588,0.0160943001479818,0.0184038422235847,0.0204666393778141,0.0225560827637094,0.0246466222527895,0.0266418516652442,0.0285987930217709,0.0306778209875906,0.0329244473839222,0.0353194484700426,0.0374607191379471,0.0394832567710823,0.0414904477176607,0.0432109076482993,0.0570723236887801,0.0711267236407487,0.0846165974667577,0.0968452330776363,0.108853962986059,0.1250225280142483,0.1357495425726564,0.1460783267527478,0.1556936261381896,0.1646074604557136,0.1753703943674139,0.1865600381952733,0.1968956565370099,0.2059091258047181,0.2141942887407865,0.2235635119827643,0.2314198449369567,0.2385411143575916,0.2465334258511449,0.2525890376357666,0.2590102361383212,0.2640308514628657,0.2680182583437074,0.2724610195532402,0.2763287611211859,0.2800582888757162,0.2827328288342557,0.2855394500325085,0.2891339604281543,0.2923369773559465,0.2894722641916684,0.2868104920923569,0.283761117453874,0.280852417302799,0.2781703235403496,0.2745581901506675,0.271021377672209,0.2704918032786885,0.2714398111723052,0.2725420457185751,0.2736546034127133,0.2746121158217215,0.276436407879004,0.2773567612277289,0.2767021813896438,0.2787526399499387,0.2785689871254415,0.2833187061183551,0.2894322042803601,0.2912625187288069,0.2964263210009902,0.3038239916186485,0.3066046511627907,0.3094396389620158,0.3126909191891141,0.3154685117860912,0.3191585274229902,0.3212169103121295,0.3148247978436658,0.3103057757644394,0.0,2.237917975505226,50.1925280612077,135.63954181116702,180.8014077958515,fqhc1_100Compliance_implementation,39 -100000,95679,48736,466.3719311447653,4722,48.140135243888416,3777,38.88000501677484,1446,14.726324480816062,77.33990302576841,79.7290594126315,63.32261558699434,65.08849786438134,77.14268519756781,79.53568748152989,63.248178670974674,65.0177867466383,0.1972178282005927,193.3719311016091,0.074436916019664,70.71111774304484,240.0739,168.94556482905188,250915.9794730296,176575.38731493,558.17241,376.9521740853893,582772.6146803374,393377.5650132996,501.52589,246.26319067691907,519979.9224490223,254222.7251728461,2646.39287,1258.9889364354217,2725517.5325829075,1276022.5373794332,883.43923,407.7390508725673,911033.121165564,413884.76992936543,1404.89498,607.4100887608712,1431858.8195946864,605141.348896687,0.38097,100000,0,1091245,11405.271794228618,0,0.0,0,0.0,48720,508.5650978793674,0,0.0,45308,469.4133508920453,1053569,0,37820,0,0,0,0,0,84,0.8779355971529803,0,0.0,0,0.0,0,0.0,0.04722,0.1239467674620048,0.3062261753494282,0.01446,0.3511218920557913,0.6488781079442086,23.12497914324149,3.992265604015673,0.316388668255229,0.2814402965316389,0.1975112523166534,0.2046597828964786,11.58389460568559,6.450381075671127,15.68246510431929,11247.047624324588,43.59131913933572,13.196562560274,13.529206332627153,8.373245233171382,8.492305013263186,0.598623245962404,0.8024459078080903,0.702928870292887,0.628686327077748,0.1280724450194049,0.7760067114093959,0.9324894514767932,0.8635014836795252,0.7874396135265701,0.1666666666666666,0.5168278529980658,0.6977928692699491,0.6398601398601399,0.5677179962894249,0.1168614357262103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021675276005266,0.0042268511479397,0.0066564519893253,0.0088571080323406,0.0111548356263282,0.0133247826706569,0.0155746728095568,0.0176267657385482,0.0200055201741921,0.0220784670972496,0.0241942097925038,0.0263817032109715,0.028505028484462,0.0305511778581214,0.0326349468469398,0.0347922288739311,0.0367273782142931,0.038592084366988,0.040362429651822,0.0422182841655373,0.0570777925184635,0.071515316484851,0.0845599420879801,0.0970439722280664,0.1094888970937285,0.125937523140557,0.1368526023211898,0.1472757655423456,0.1564085311802462,0.1653246989954005,0.1765554670169922,0.1879733414116934,0.1980231394893654,0.207484257477698,0.2156716007263522,0.2251340215320544,0.233401390144035,0.2407128231667529,0.2477737569906866,0.2541998282278843,0.2604808770976211,0.2649396801645937,0.2692539714458073,0.2739420935412027,0.2764098394475929,0.2809529672494459,0.2848355275496043,0.2882469562565132,0.2909328536859949,0.2938043062642564,0.2901732859756754,0.2862580733818881,0.283082336382829,0.2802588248887862,0.2767656971478627,0.2729745423428379,0.2693382596750509,0.2698547829930747,0.2697548610992974,0.2699690732643702,0.2711364823520633,0.2721476642134676,0.2729488728697029,0.2732295217091047,0.2741193386053199,0.275038920601972,0.2759002298459181,0.2809689448779418,0.2879725807015703,0.2928242108996335,0.2969505308335216,0.300405882663012,0.3016438527407963,0.3025977948950309,0.3085363585642551,0.3133960047003525,0.3171846435100548,0.3213779128672746,0.320733740967204,0.3221060782036392,0.0,2.2821674811399086,51.64967245762822,139.96420526637124,184.5953211646034,fqhc1_100Compliance_implementation,40 -100000,95791,49196,469.6474616613252,4739,48.36571285402595,3792,39.0746521071917,1461,14.876136589032374,77.331780499572,79.6716246592378,63.32970022966426,65.06229969535582,77.12960630219514,79.47374667650578,63.25210542576905,64.98896206033626,0.2021741973768627,197.87798273202384,0.0775948038952094,73.33763501955559,240.44482,169.2566545406841,251009.8234698458,176693.69203858828,561.48192,379.2860108959231,585665.8349949368,395464.3451847491,505.20704,248.13419922168237,524460.4503554613,256739.7041778197,2697.09484,1275.8282498589035,2782416.009854788,1298699.804636034,892.57691,409.04815688966414,918255.619003873,413480.897881496,1419.71644,622.1094050835484,1447886.2941194894,619839.4659020337,0.3827,100000,0,1092931,11409.537430447535,0,0.0,0,0.0,48872,509.68253802549305,0,0.0,45570,472.74796170830246,1047965,0,37637,0,0,0,0,0,109,1.137893956634757,0,0.0,0,0.0,0,0.0,0.04739,0.1238306767703161,0.3082928887951044,0.01461,0.3702429149797571,0.629757085020243,22.82193120982613,4.038630580344321,0.2993143459915612,0.2908755274261603,0.1964662447257384,0.21334388185654,10.94839161458992,5.902765637971559,15.866092905687664,11262.978572913811,43.67907068408043,13.550088498943156,12.969393963271171,8.2520861181247,8.907502103741397,0.5751582278481012,0.7815049864007253,0.7066079295154185,0.5624161073825503,0.1211372064276885,0.75,0.9111570247933884,0.8852941176470588,0.6647398843930635,0.1657754010695187,0.495782208588957,0.6801292407108239,0.630188679245283,0.5314685314685315,0.107717041800643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094454292225,0.0042678723490531,0.0067581965965478,0.0089804543053354,0.0112789219425375,0.013289341031986,0.0152627393405517,0.0174364000163338,0.0196377093087444,0.0215181450580948,0.023834419977857,0.0259772262893637,0.0281845103442602,0.0301922165681204,0.0323249837446202,0.0343433716879115,0.0364255900904166,0.0386881301082852,0.0409859916032755,0.0430667346960025,0.0579371373711232,0.0718611730002824,0.0851215497992515,0.0974538423546966,0.110104213864975,0.1259458088515027,0.1365544436906377,0.1459458884587569,0.1551729658764636,0.1646360411911574,0.1761482310889085,0.187414130705237,0.1976354658371582,0.2070659010117582,0.2150302123116546,0.2246080549554041,0.2335639366212898,0.241738465345421,0.2489395967065121,0.2553237772485803,0.2617588567200074,0.2666588744082754,0.2717626601369814,0.2754526174528811,0.2789347775929277,0.2823543913713405,0.2850239731600756,0.2880308781941861,0.2909976804157109,0.2941215288776264,0.291447952838569,0.2880440756210156,0.2849003249813593,0.2810076119769474,0.2777002346093309,0.2736084526452798,0.2704520990312163,0.270768725900402,0.2704369213951423,0.2703319021574531,0.2714331144658323,0.2714263186943152,0.2719279882771614,0.2729342948360161,0.2739251707223237,0.2744250253952543,0.2757424052793264,0.2791389898483519,0.282168540110312,0.2885860979462875,0.2933387747698726,0.2965316388668255,0.2994895065229722,0.3060433295324971,0.3103157500234236,0.3151622418879056,0.3228322373451598,0.3279246794871794,0.324575807334428,0.3249027237354085,0.0,2.0382589782678338,51.41031105317764,137.5752591952861,191.45384510991835,fqhc1_100Compliance_implementation,41 -100000,95700,48895,467.59665621734587,4693,48.0564263322884,3754,38.77742946708464,1384,14.106583072100314,77.34192318165195,79.71639066165365,63.32298576779221,65.07467850073671,77.15990517333583,79.53928718027613,63.253388181499616,65.0096161733417,0.1820180083161204,177.10348137751453,0.0695975862925877,65.06232739501172,240.35286,169.15490969199854,251152.41379310345,176755.39152768918,560.6281,378.4321674852952,585203.8349007315,394821.4602772155,500.03048,244.88234641986543,520552.64367816097,254284.85084144212,2626.0282,1228.6747342550173,2713157.1264367816,1253017.6637983455,846.8772,386.7974686893516,874562.3928944619,393810.32255940576,1342.53916,581.9413802552193,1370106.7711598745,577890.5832999178,0.38023,100000,0,1092513,11416.01880877743,0,0.0,0,0.0,48864,510.09404388714734,0,0.0,45006,468.2967607105538,1049241,0,37659,0,0,0,0,0,103,1.0553814002089863,0,0.0,0,0.0,0,0.0,0.04693,0.1234252952160534,0.2949073087577242,0.01384,0.3729366211534543,0.6270633788465457,23.08085449587028,3.954220035458294,0.2940863079381992,0.2991475759190197,0.2099094299413958,0.1968566862013852,11.1627073614205,6.053847508052354,14.948549616700324,11218.523852556837,43.11553405658682,13.784823870275094,12.463530232840114,8.698438015439576,8.168741938032042,0.595631326584976,0.8343722172751559,0.6929347826086957,0.5697969543147208,0.115020297699594,0.7713280562884784,0.9423076923076924,0.8774834437086093,0.7386934673366834,0.1428571428571428,0.5192969048528849,0.7572519083969466,0.6234413965087282,0.5127334465195246,0.1068301225919439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401850895578,0.0043583584192335,0.0062996439331689,0.0086944156661994,0.0109220709222743,0.01300116063611,0.0149970434108843,0.0173077512176692,0.0194588735735612,0.0214815952490656,0.0236237426816639,0.0254975252099977,0.0275852138316911,0.0297769306063572,0.0320915781541923,0.0340826835977085,0.035995069452357,0.0381661165431483,0.0403702163061564,0.0424008753191267,0.0573666892985846,0.0710471204188481,0.0850197329750608,0.0977239485231445,0.1097932868343023,0.1247592439731623,0.13567977915804,0.1456646783127396,0.1550992485542954,0.163802449522869,0.1751716999644201,0.1861875521188689,0.1972027210884353,0.2066795793528336,0.2147645097024864,0.2235146842146077,0.2313762696729545,0.2393291310220621,0.246483666061706,0.252258958531362,0.2576476305072195,0.2629202442505206,0.2687651618247441,0.2727338103628061,0.2765502581232918,0.2808673155106566,0.284707531700234,0.2868662715270535,0.2899744795512546,0.2925895614984556,0.2902995335795745,0.286962152629476,0.284107565678205,0.2810840452551373,0.2791193813150019,0.2752782400268698,0.2712845672098563,0.2717432244329812,0.2717976685527302,0.2729196301564722,0.272941000858305,0.274335585807443,0.2758217920907725,0.2761962042234697,0.2764208211844558,0.2759173540896278,0.2785024563781128,0.2849363661822821,0.288053281531844,0.2930398618957941,0.2983487391187292,0.3012995179207713,0.3054221002059025,0.3081060889054912,0.3132585509378447,0.3161959654178674,0.3204690515066053,0.3203140333660451,0.3234190782422294,0.3211009174311927,0.0,1.7692147810776204,49.907497244650784,136.5044103161899,192.90034627992367,fqhc1_100Compliance_implementation,42 -100000,95734,49267,470.7731840307519,4689,47.63198027868887,3782,38.88900495121901,1380,13.986671402009735,77.32392886815877,79.68806412823693,63.31606620966248,65.06501035663238,77.13684256669865,79.50638892448681,63.243822792150745,64.99773760401385,0.1870863014601269,181.67520375011748,0.0722434175117356,67.27275261853549,240.76712,169.44959481679066,251495.47705099548,177000.0325181094,561.63296,379.3073722398671,586030.678755719,395591.79438802,500.86499,245.9451293338527,519596.5278793324,254149.8650058148,2659.94321,1253.0357538777762,2737567.227944095,1269070.440918306,877.24177,399.2633217584235,903526.061796227,404332.2737526113,1344.95522,588.206737042158,1365923.4754632628,580655.3623618978,0.38425,100000,0,1094396,11431.612593227068,0,0.0,0,0.0,48912,510.27847995487497,0,0.0,45335,470.0106545219045,1046750,0,37582,0,0,0,0,0,95,0.981887312762446,0,0.0,2,0.0208912194204775,0,0.0,0.04689,0.1220299284320104,0.2943058221369162,0.0138,0.3741123960235342,0.6258876039764658,22.85963922439031,4.09278233894349,0.3059227921734532,0.2884717080909572,0.2014806980433633,0.2041248016922263,11.703277965628825,6.43780744856837,14.9517482823033,11258.307868887958,43.38641500418233,13.415460975642445,13.063919439140529,8.361119073391489,8.545915516007867,0.5980962453728186,0.8267644362969753,0.7035436473638721,0.594488188976378,0.1204663212435233,0.7586821015138023,0.9147121535181236,0.867109634551495,0.7653631284916201,0.1436781609195402,0.530274539300489,0.7604501607717041,0.6460280373831776,0.5420240137221269,0.1137123745819397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023600433518692,0.0046132476249378,0.0068910223882111,0.0091243471722652,0.0111791512389632,0.0136863543788187,0.0157820687967701,0.0181081384547857,0.0200492797186353,0.0221357632845295,0.0244522591426843,0.0267459290745189,0.0288889574273406,0.0309110573209043,0.0329068207615313,0.0345857667062897,0.0366054504210559,0.0387972640559643,0.0408776581916497,0.0430184826321601,0.0576099893508174,0.0713837333389131,0.0845454450119026,0.097165991902834,0.1093359486222278,0.125,0.1352320719879454,0.1452653774067132,0.1549686985876973,0.1633016308718355,0.1749765829394601,0.1862771606874398,0.1972751391788448,0.2061541153185859,0.215239436000088,0.2250055370985603,0.2330223838960923,0.240734906955289,0.2476047768242292,0.2538288701393983,0.2592159225190574,0.2644802342606149,0.269921782412894,0.2743303383995297,0.2780386337096146,0.2825199491866158,0.2866127132870637,0.2889041741500758,0.2914911541701769,0.2945605368134626,0.2912281174615581,0.2875584916047344,0.2842628864526674,0.2800728513197074,0.2773841880913128,0.2740613917084505,0.2703287333817539,0.2713170683815227,0.2714441379780025,0.2726286588185084,0.272815443439336,0.2739890538252549,0.2748311233425068,0.2757546771072008,0.2764039031856883,0.2772420943494038,0.27829014371393,0.2840592416319629,0.2869196834955535,0.2908581795235841,0.296133845806014,0.2969292249447891,0.304827156649019,0.3066606389391199,0.3136576239476146,0.3192466156562684,0.3212466287084207,0.3269568612141323,0.3282801881860951,0.3341997772001485,0.0,2.4019068900521097,48.337696719156376,144.09143000838148,190.05625002703053,fqhc1_100Compliance_implementation,43 -100000,95805,48961,466.593601586556,4711,47.90981681540629,3734,38.494859349720784,1447,14.863524868221909,77.4066300966336,79.74594398025086,63.35719594835807,65.08776015774966,77.21907483483919,79.55782830622572,63.285448013498,65.01751670544995,0.1875552617944151,188.1156740251413,0.0717479348600704,70.24345229970663,240.47012,169.1559468320568,250999.32153854184,176562.52474511432,558.79992,377.98760400436,582799.8538698398,394070.3345382391,497.80614,244.3335243734816,515925.8285058192,252306.9762870445,2690.01964,1260.1364877419269,2775273.900109597,1282912.6874846015,875.0837,395.63446391368666,903377.2558843484,403007.7195085489,1412.8881,606.0632493923034,1452069.056938573,612570.266180873,0.38156,100000,0,1093046,11409.06006993372,0,0.0,0,0.0,48768,508.5433954386514,0,0.0,44972,465.8420750482751,1051557,0,37780,0,0,0,0,0,91,0.9394081728511038,0,0.0,3,0.0313136057617034,0,0.0,0.04711,0.1234668204214278,0.3071534706007217,0.01447,0.3618795768917819,0.638120423108218,22.926671744613767,4.22725669847558,0.2905731119442956,0.2777182645956079,0.2177289769683985,0.2139796464916979,11.598664283992504,6.129564788562189,15.410034228358644,11237.888748824813,42.51543307667395,12.76438019203646,12.207129523201298,8.989213481941103,8.554709879495087,0.5747188002142475,0.8061716489874639,0.6866359447004609,0.5916359163591636,0.1051314142678347,0.7551385165326184,0.937354988399072,0.8481848184818482,0.7387387387387387,0.1226993865030674,0.4975143403441682,0.7128712871287128,0.6240409207161125,0.5363790186125211,0.10062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.004562876437306,0.0068600886940461,0.0089816404702152,0.0109030624179981,0.013054723936376,0.0152933259925368,0.017751237686929,0.0202379492211455,0.0224425887265135,0.0245557218111382,0.0268120998194056,0.0287267719125143,0.0308118347093825,0.0332443381541918,0.0352842774829103,0.0373267121870473,0.0396110425759099,0.0415774928834126,0.043673805086775,0.0579704096325201,0.0721874803923619,0.0856304370611047,0.0988177184593557,0.1106264618496744,0.1251598178340853,0.1359102905171226,0.1457035320135241,0.1553703664184041,0.1639547962080231,0.1755369517496664,0.1871917985984947,0.1983002217102117,0.2067297191035778,0.2146443284811864,0.2231959105091947,0.2311570118890946,0.2389388489208633,0.2462407294005579,0.2522774090180819,0.2577486444929999,0.2628682913152176,0.2683529634359775,0.2722234192822428,0.2763819095477386,0.2802546986230509,0.2829707107735809,0.2868566924328722,0.2898788882563014,0.2928951948942455,0.2900220774325561,0.2872476395970479,0.2846086736273323,0.2816779462907112,0.2782429568593743,0.2750805109968101,0.2713025673334383,0.2709492194509241,0.2717172230408346,0.2719845802903574,0.2729318553786639,0.2729534368939646,0.2736156351791531,0.2749274816766679,0.2762409913659824,0.2766439909297052,0.277393018018018,0.2832687238331524,0.2878173819668156,0.2905307623107913,0.2939751469202817,0.2976047591713197,0.3026746556303663,0.3069601427721594,0.3103511338697878,0.3123706599218211,0.3157973846385089,0.3172074729596853,0.3203146189313805,0.3327003418154197,0.0,1.792005260721062,48.6864342079393,133.4349081064353,193.98684955566924,fqhc1_100Compliance_implementation,44 -100000,95680,49228,470.9970735785953,4677,47.50209030100334,3728,38.2943143812709,1419,14.391722408026755,77.29491858535671,79.69776002655826,63.29396199958445,65.07424384561628,77.11160117964273,79.52154400220168,63.22402059791487,65.01007638551548,0.1833174057139786,176.21602435657735,0.0699414016695882,64.16746010080487,240.2774,169.11369428675036,251125.8152173913,176749.05886531377,562.56568,380.7580414143167,587276.943979933,397261.6926671086,508.48263,249.91042874857104,527354.2537625418,258008.7111405561,2642.06107,1243.767282241119,2715737.1132943146,1254446.196815153,848.34176,389.9484041411298,870918.9381270903,391934.1014715814,1378.39372,588.4826586547539,1399180.685618729,578019.3924753092,0.3814,100000,0,1092170,11414.809782608694,0,0.0,0,0.0,48973,511.1204013377926,0,0.0,45879,475.49122073578593,1046658,0,37597,0,0,0,0,0,96,1.0033444816053512,0,0.0,2,0.0209030100334448,0,0.0,0.04677,0.122627163083377,0.3033996151379089,0.01419,0.3567323481116584,0.6432676518883416,22.97968875563813,4.074813194495924,0.3205472103004292,0.2733369098712446,0.2009120171673819,0.2052038626609442,11.609147539581608,6.409798324769139,15.121020322719648,11224.638935951803,42.93706981762302,12.548735494692195,13.8296781543592,8.305913536099878,8.252742632471751,0.6013948497854077,0.8292443572129539,0.7330543933054393,0.5914552736982643,0.1019607843137254,0.7851027397260274,0.9330357142857144,0.8825136612021858,0.7738693467336684,0.1419354838709677,0.517578125,0.7478108581436077,0.6670687575392038,0.5254545454545455,0.0918032786885245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020983912333877,0.0043735476473154,0.0067638247092875,0.0089980173859996,0.0111159746327758,0.0130461814438453,0.0152455202253153,0.0175823951288285,0.0196525760117854,0.0218502545610997,0.0239624151160166,0.0259083858109982,0.0280304589421691,0.0302483767906832,0.0324528535595949,0.0345715526691348,0.0366931597981409,0.0389431063122923,0.04084137816245,0.0426824819420268,0.0573261048959084,0.0715302789178323,0.0847238838864051,0.0980701643622282,0.1101872856766024,0.1254616450967735,0.1358811040339702,0.1454781654971196,0.1550544988245351,0.1644938033156285,0.1760700703504595,0.187184176071502,0.1977731626961258,0.207469832109129,0.2151812423016012,0.2240283468054479,0.2323329242441147,0.2401003747172741,0.2470081976519745,0.2529599871628823,0.2577758742432485,0.2626486005803613,0.2680819842847676,0.2731991512724919,0.2778526750470638,0.2817154976817599,0.2838690297386602,0.2869821732828115,0.2898751195801122,0.2933918036241045,0.2894910063002915,0.2859103134090784,0.2833092089545946,0.2802231061916292,0.2769205685742659,0.2737349029200428,0.269867130654856,0.2702742577990524,0.2706269501611281,0.2714094677721316,0.2711559708619688,0.2718095614381667,0.2728033297776662,0.2733623479522374,0.275697000312718,0.2763867538625882,0.2784943481108169,0.2824777205974645,0.2869364807766176,0.2918673509672325,0.295457639424604,0.2973115445440168,0.2997630331753554,0.3068791059427622,0.3125641264807387,0.3149151743638077,0.3174436090225564,0.3182907348242811,0.3229083132852178,0.3221850613154961,0.0,2.5686648600055038,50.30175931142348,134.17025011187195,188.0519020467488,fqhc1_100Compliance_implementation,45 -100000,95721,48983,467.0866372060467,4789,48.77717533247667,3771,38.82115732179981,1433,14.5840515665319,77.3593554540744,79.73032588323544,63.33143217950936,65.08374291985629,77.17293479736384,79.54647991571768,63.25962881156818,65.01499013549633,0.1864206567105668,183.84596751775464,0.071803367941186,68.75278435995824,239.65766,168.61886660791689,250371.03665862244,176156.60785816787,561.68944,379.1689679657197,586229.5107656626,395549.8563175476,503.33216,247.4968925623732,521928.2289152851,255576.0469195061,2653.82715,1257.1720958270728,2734461.4661359577,1275371.9725317038,852.73854,395.2635055735396,872309.7543903637,394385.8174904968,1390.38272,606.5171146473798,1416717.9824698863,604473.6839233493,0.38088,100000,0,1089353,11380.50166630102,0,0.0,0,0.0,48982,511.1208616708977,0,0.0,45358,469.9386759436278,1053110,0,37788,0,0,0,0,0,100,1.0447028342787894,0,0.0,1,0.0104470283427878,0,0.0,0.04789,0.1257351396765385,0.2992273961160994,0.01433,0.3684841222288795,0.6315158777711204,23.20003357131857,3.9740329974733086,0.3118536197295147,0.2871917263325378,0.1967647838769557,0.2041898700609918,11.212711032779618,6.177166289930292,15.585361319663116,11308.296818968804,43.47870999613495,13.27836608667437,13.493101113315792,8.251688820418792,8.455553975725998,0.594272076372315,0.8217913204062789,0.7142857142857143,0.5619946091644205,0.122077922077922,0.7624784853700516,0.9327548806941433,0.8696883852691218,0.675392670157068,0.1273885350318471,0.5193560751245688,0.7395498392282959,0.6476306196840826,0.5226860254083484,0.1207177814029363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0044603485154135,0.0067277542695363,0.0092523003798419,0.0118361245843628,0.014415588382013,0.0165655741882868,0.018720780679011,0.0207315327840363,0.0228298815507939,0.0250217915192534,0.0271674935034254,0.0293530597966994,0.0316299196373377,0.0333415887561141,0.0354163436191657,0.0376133681202633,0.0397879909968779,0.0418226047904191,0.0437590491963792,0.0577965269873756,0.0724243312261899,0.0862432474956731,0.0998906460296096,0.1117519902989402,0.1274567880339348,0.1378589468769234,0.1477609079874789,0.1569142967071724,0.1656470689248073,0.1766208293818432,0.1875196223841332,0.198285335045097,0.2068659852480903,0.2150992443768863,0.2240901328483665,0.2326256658811967,0.2399739012070691,0.2470980699186438,0.254418620634357,0.2598179273328783,0.2648588627198878,0.2695807335980336,0.2744445906660127,0.2791481724029203,0.2840040847964368,0.2865573114622924,0.2894656604924155,0.29236181164481,0.2950806717155087,0.2919766848424615,0.288412700591651,0.2853955915985015,0.2829106280193236,0.2814164004259851,0.2768933103795,0.2719260972884503,0.2712707813290261,0.2711585169081305,0.2708244643110543,0.2714677308072426,0.2711381154632688,0.2722089963663701,0.2738671604828094,0.2749006844397645,0.2759058299448343,0.2769979624179307,0.282470680218921,0.2877514731006589,0.28963510537905,0.2914727280943558,0.2981356646302928,0.2993602609131962,0.305622369212267,0.3089799315638583,0.3141525917297612,0.3161930536761389,0.3159563924677899,0.323901913230935,0.3380756271059528,0.0,2.206778726536108,50.49444262570493,141.59338885419078,186.205419366099,fqhc1_100Compliance_implementation,46 -100000,95882,48640,463.65324044137583,4554,46.12961765503431,3578,36.65964414592937,1374,13.933793621326211,77.4394230829848,79.71937371921949,63.39129033748679,65.07733924866794,77.25531382302931,79.54155608226245,63.320829968179936,65.01222912002162,0.1841092599554912,177.81763695704456,0.0704603693068506,65.11012864632448,239.06212,168.18582656096638,249329.5091883774,175409.17644705615,557.88972,377.5228951956129,581220.83394172,393107.5021334692,494.32437,243.29809312116257,511625.1016874909,250666.5501904723,2533.65785,1200.9841524374483,2601679.7730543795,1211769.5734730698,816.45479,373.9032315946399,837166.8092029787,375608.2701598196,1329.70824,573.8393302465961,1351006.1951148286,566672.3439087673,0.37865,100000,0,1086646,11333.159508562609,0,0.0,0,0.0,48709,507.34235831542935,0,0.0,44639,461.76550343130094,1061299,0,38106,0,0,0,0,0,101,1.0220896518637492,0,0.0,1,0.0104294862435076,0,0.0,0.04554,0.1202693780536115,0.3017127799736495,0.01374,0.3594178443366378,0.6405821556633622,23.103611562882925,4.069829141598825,0.3180547792062604,0.2792062604807155,0.198993851313583,0.203745108999441,11.724499367470424,6.551126930922332,14.669979093379714,11102.951616140112,41.00964741493414,12.216765679732813,12.93238090946762,7.869343515837933,7.991157309895788,0.5832867523756289,0.8168168168168168,0.6889279437609842,0.5814606741573034,0.1001371742112482,0.7527075812274369,0.9325581395348838,0.8483965014577259,0.7485029940119761,0.1011904761904761,0.5072874493927125,0.7293497363796133,0.620125786163522,0.5302752293577981,0.0998217468805704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0044083667761157,0.0063502368658639,0.0087928601163581,0.0110786994216715,0.0134510897214138,0.0155946014769544,0.0176560587515299,0.0200543500469944,0.0224022586386791,0.0242525461587327,0.0262463959942951,0.0284551592317415,0.0308211774636868,0.0327137009887311,0.0348822800495663,0.0368734157570741,0.0385571881541044,0.0406358039431472,0.0426654182272159,0.0567091985655908,0.070710553814002,0.0837530760772815,0.0957645625971189,0.1079260140434357,0.1237330010980657,0.1334053641794839,0.1432199787460149,0.1525438184997228,0.1613027517044299,0.1733642950826721,0.1842571582928147,0.1945337620578778,0.203166486380175,0.2117183978186056,0.2198649845064187,0.2275690675463329,0.2357533615663719,0.2424554805383116,0.2487340976373632,0.2542752560534854,0.2596941753239173,0.2651305683563748,0.2693527349312528,0.2735808999259969,0.2774168143335302,0.2817126650757756,0.2844107718470012,0.2866457502162657,0.2896622447772183,0.2866578067737908,0.2832679810249801,0.2805617126343256,0.27867294483563,0.2759278991298171,0.2725123903926801,0.2689343189950033,0.2697192295135488,0.2704897148001562,0.2711747180251117,0.2711264983992256,0.2719439428436838,0.2728954479318229,0.2730914805551251,0.2746006845407872,0.2747947751561774,0.2772872968565484,0.2835057934196666,0.2875898286346047,0.2913456650111454,0.2943418220946915,0.2976527297495546,0.3007822200148994,0.30318988865483,0.3058121093385577,0.3099882491186839,0.314718482252142,0.3193515704154002,0.3180570801317234,0.3305847076461769,0.0,2.613098117736749,47.36151165287403,129.9950325055042,179.28607516905151,fqhc1_100Compliance_implementation,47 -100000,95727,48902,466.8693263133703,4795,48.85768905324517,3828,39.288810889299775,1403,14.217514389879552,77.34647984393533,79.70012598112882,63.33814763576003,65.07590158296665,77.16294356055083,79.52255784719274,63.26748895121296,65.01088172004486,0.1835362833844982,177.5681339360773,0.0706586845470695,65.01986292178685,239.69858,168.57790457896454,250397.4009422629,176102.10722258565,556.27936,375.8682922784043,580367.9526152496,391904.3752237135,498.61249,245.090437980375,516345.1795209293,252641.47420346385,2691.7715,1268.2169030301425,2766468.446728718,1279582.9723973204,877.16964,402.8461231158833,901586.950390172,406225.66266959935,1358.88412,587.1805344397777,1379534.739415212,578242.6290101692,0.38114,100000,0,1089539,11381.70004283013,0,0.0,0,0.0,48548,506.4401892882885,0,0.0,45022,465.8664744533935,1057686,0,37956,0,0,0,0,0,103,1.0655301012253595,0,0.0,2,0.0208927470828501,0,0.0,0.04795,0.1258067901558482,0.2925964546402502,0.01403,0.3756019261637239,0.6243980738362761,23.02045924655856,3.967324308548341,0.3079937304075235,0.2915360501567398,0.2016718913270637,0.1987983281086729,11.20744147913008,6.190222327296297,15.064156868438449,11263.26619567792,43.96801097273213,13.78982883165047,13.30088231035428,8.497074546393126,8.38022528433424,0.589864158829676,0.8064516129032258,0.6946564885496184,0.5816062176165803,0.1182654402102496,0.7579034941763727,0.8987854251012146,0.8670520231213873,0.7433155080213903,0.16,0.5129474485910129,0.7331189710610932,0.6230492196878752,0.5299145299145299,0.1058020477815699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020862872189588,0.0046528601404981,0.0071239382592017,0.0096401942260417,0.0118982244188174,0.0139578921648476,0.0160958205912334,0.0181977770746792,0.0204331960217109,0.0225855661236984,0.0246209985752211,0.0266977336179996,0.0287265324587197,0.0309622396638032,0.0328731504983594,0.0347932150129725,0.0368932239893969,0.0389607694622272,0.0411256536338403,0.0429683024135165,0.0575288688425316,0.0715840817266428,0.0846710733396285,0.0978631220291927,0.1101410767381539,0.1260242976622223,0.1370150742041223,0.1468725720793111,0.1552915051938208,0.1640373815749989,0.1755251003907974,0.1854539555507489,0.1959744381167673,0.2050354602178973,0.2142229061332161,0.2233008634049147,0.2314682663574327,0.2393225828216719,0.2464917355840679,0.2521413521436423,0.258352511246545,0.2645411712438474,0.2702296579386395,0.2746117714723926,0.2787583762260853,0.2821825431007961,0.2843676551482722,0.2884720544286895,0.290980899967627,0.2943465414446262,0.2907666841616537,0.2877250859106529,0.2845586787090965,0.2817563960116016,0.2798961809417872,0.2759369409318185,0.2718391439529047,0.2714187575648533,0.2719795657726692,0.272930967030622,0.2737786565688597,0.2746744817277054,0.2756237603090093,0.2759756884921077,0.2776009381805998,0.2796649846538001,0.2814088907825593,0.2863038109231875,0.2897049591964846,0.2928883466488252,0.2961353968684949,0.300443224989447,0.3028002489110143,0.3066747297603749,0.3119394618834081,0.3122566945853486,0.3176381529144587,0.3199919549477071,0.3220901299419408,0.3170353123787349,0.0,2.7434883295667243,51.58783262387716,135.93702693407735,193.72668312479885,fqhc1_100Compliance_implementation,48 -100000,95751,48873,467.6086933817923,4712,47.97861118943927,3749,38.67322534490501,1408,14.412382116113667,77.41222784566315,79.76611931303611,63.350809200748486,65.0888688877508,77.23322515972696,79.58926597102909,63.28397516431455,65.02468571281088,0.1790026859361972,176.8533420070213,0.0668340364339385,64.18317493992731,240.93168,169.45831724620746,251623.1475389291,176978.1174569534,561.70663,379.2745923909041,586160.7502793705,395633.73418960697,499.24215,244.5245773936124,518088.42727491097,252895.7080409856,2632.21729,1230.4991072891798,2719715.0525843077,1255840.0509093895,854.42319,386.8272355664282,881310.8479284812,392965.0818961976,1375.97164,579.1247018629374,1410274.0650228194,582492.1176717954,0.38234,100000,0,1095144,11437.41579722405,0,0.0,0,0.0,49020,511.4411337740598,0,0.0,45119,467.880231015864,1050559,0,37548,0,0,0,0,0,76,0.7937253919019122,0,0.0,0,0.0,0,0.0,0.04712,0.1232410943139614,0.298811544991511,0.01408,0.3639698390055023,0.6360301609944976,23.154531739632585,4.056933720463383,0.3043478260869565,0.2886102960789544,0.1965857562016537,0.2104561216324353,11.240081165950086,5.959851880466976,14.886405817564976,11218.689133013302,42.74480296580296,13.267102501041462,12.747135967864926,8.209709355048203,8.52085514184837,0.5860229394505201,0.8271719038817006,0.7011393514461,0.5698778833107191,0.1039290240811153,0.7775816416593115,0.91340206185567,0.8501529051987767,0.751412429378531,0.1875,0.5030581039755352,0.7571189279731994,0.6412776412776413,0.5125,0.0852713178294573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748835325096,0.0040845284548725,0.0063101083471979,0.0086115850190917,0.0108378491037932,0.0130605181452639,0.0150437246468393,0.0172647776088487,0.019427496908565,0.0217093142272262,0.0236841026481921,0.026063480331773,0.0281581544534912,0.0299778590185881,0.0322447505546097,0.0340682398420622,0.0359823971006989,0.0380034444836387,0.0398282530045327,0.0419166666666666,0.0566545917674938,0.070803034266283,0.0836086723937191,0.0969580949175361,0.109630520562976,0.1249880958679434,0.1353120954220345,0.1457057990609928,0.1555253990981557,0.1642736033309724,0.1762923831599374,0.1867981938473866,0.1970195070974484,0.20624685248845,0.2138356466181978,0.222490850615504,0.2306385831610704,0.2393901518990192,0.246722139605635,0.2529336266960029,0.2591555164590953,0.2642807017543859,0.2694913851211523,0.2737053747741063,0.2770714545675118,0.2808670833128291,0.2841516407771839,0.2872545537571668,0.2899971619494827,0.2932019704433498,0.2898935101466747,0.2864572640799288,0.2842754079988793,0.2805016448549798,0.2781192423907436,0.2736712665664708,0.2709428396592032,0.2709830574615459,0.270326063046752,0.2713245431086288,0.2724981934742732,0.2741125676441284,0.275396298448004,0.2757949670514351,0.2769922879177378,0.278204599360627,0.2802782785038306,0.2849562465090299,0.2889620516374978,0.2928697011134987,0.296983550714894,0.3000209183139839,0.3045282785108096,0.3108967167751103,0.3152483246121362,0.32378522555955,0.3282204020848845,0.3332017370706672,0.3349384697699304,0.3287313432835821,0.0,1.8145987158805252,49.43276296498591,134.97710425710974,191.65355125683325,fqhc1_100Compliance_implementation,49 -100000,95738,48648,465.1757922663937,4689,47.85978399381646,3686,38.009985585660864,1341,13.599615617623096,77.32373385663094,79.6938890327698,63.321321634088775,65.07507407346236,77.15150834759513,79.52593695559236,63.25629265716752,65.01408115761531,0.1722255090358118,167.9520771774463,0.0650289769212548,60.99291584705213,240.63798,169.271580733487,251350.5400154589,176807.09930590467,558.30756,376.6303592658046,582655.3301719275,392890.3458039698,494.60511,242.4780396807079,514209.7077440514,251310.6664181224,2561.58329,1188.5032235957976,2642916.9713175544,1208711.0484821054,816.87591,370.38663452965193,840976.7490442666,374610.9638071104,1302.531,550.9575305828394,1323805.824228624,544558.7437617922,0.38018,100000,0,1093809,11425.02454615722,0,0.0,0,0.0,48756,508.7321648666152,0,0.0,44635,463.73435835300506,1052704,0,37811,0,0,0,0,0,98,1.0236269819716308,0,0.0,3,0.0313355198562744,0,0.0,0.04689,0.1233363143774001,0.2859884836852207,0.01341,0.3740302164148632,0.6259697835851368,23.24461269998395,3.994257437250046,0.3014107433532284,0.2984264785675529,0.2061855670103092,0.1939772110689094,11.146737357449366,6.012733435340659,14.239896891830371,11159.395508385178,42.14635068418957,13.55937534009832,12.553971493345516,8.34776126829464,7.685242582451088,0.5827455236028215,0.8081818181818182,0.6948694869486949,0.5565789473684211,0.0895104895104895,0.777676120768527,0.9258474576271186,0.8866666666666667,0.6910994764397905,0.1153846153846153,0.5005784805244891,0.7197452229299363,0.623921085080148,0.5114235500878734,0.0837606837606837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018844984802431,0.0040058008052166,0.0061104344295574,0.0083429872162266,0.010632020185577,0.012621092198148,0.0148492636560192,0.0169334000592362,0.0191527000910085,0.0215167187259972,0.0237716770415645,0.0257368799424874,0.0280435364072176,0.0301412775779808,0.0322244356595068,0.0342079146507877,0.0362591269224794,0.0384910671674309,0.04014389835619,0.0422505860901276,0.0560990634494711,0.0700081636070583,0.0832502858581514,0.0961657813075264,0.1086071624414729,0.1241554321966693,0.1348977340235933,0.145008033538694,0.1541731190260052,0.1631497683993824,0.1742697488129717,0.1856102811523025,0.1963986690733531,0.2046376367949797,0.2134874716765294,0.2227081488042515,0.2304270760175245,0.2374566162347946,0.2449816949459916,0.2504346234788178,0.2560960114585379,0.2626477320502639,0.2675495593412565,0.2726989826451226,0.2760984012227371,0.2800561244584482,0.2839033903390339,0.2874286513354436,0.290852632940872,0.2928400200205474,0.2888862008252355,0.2848169985843675,0.2821908942540379,0.2798134673134673,0.2773104256613403,0.2734788056599737,0.2696693002791314,0.269437588872726,0.2697350543478261,0.2704852541680723,0.2703624972029537,0.2716929133858268,0.2722922282824483,0.2728448468090799,0.2734729117202676,0.2748895243046529,0.2761140972044478,0.2824899547965846,0.2868861078977811,0.293305289892456,0.2962558075977043,0.2998991132586417,0.3023899371069182,0.3077858880778589,0.3084591019191354,0.3077104456496109,0.3093839433649646,0.3111510791366906,0.3136990002701972,0.3239650588682111,0.0,1.886859247579842,47.55999450723333,134.24327776128055,192.14298593697345,fqhc1_100Compliance_implementation,50 -100000,95779,49126,467.2527380741081,4717,47.91238162854071,3770,38.74544524373819,1416,14.366405997139248,77.38153749659537,79.7230725352369,63.350937847410606,65.08288998160768,77.19666857705288,79.54375847549281,63.27980749548464,65.01666562875099,0.1848689195424953,179.31405974408676,0.0711303519259658,66.22435285669326,239.98656,168.8808752441022,250562.8164837804,176323.48974629326,557.99185,377.1998160570583,581948.1723551091,393188.59672481264,501.48367,246.6191854274508,520248.8436922499,254863.70977180425,2651.80583,1241.919263382818,2724234.080539576,1252213.526329172,884.04644,399.8395795327535,903557.564810658,398011.6095728206,1371.69804,591.5642551731675,1392413.9320727924,582089.8249986332,0.38214,100000,0,1090848,11389.218931080926,0,0.0,0,0.0,48677,507.5434072187014,0,0.0,45253,469.1529458440786,1054350,0,37827,0,0,0,0,0,89,0.9187817788868125,0,0.0,1,0.0104407020328046,0,0.0,0.04717,0.1234364369079395,0.300190799236803,0.01416,0.3603843008994276,0.6396156991005724,23.31294634117119,4.096069480029793,0.3159151193633952,0.2782493368700265,0.2005305039787798,0.2053050397877984,11.359818833468234,6.194334896851719,15.149333107552769,11279.05583322903,42.97561791664885,12.864427875937343,13.346213935536012,8.39280336033924,8.372172744836245,0.5806366047745358,0.8026692087702574,0.691855583543241,0.5753968253968254,0.1136950904392764,0.7447963800904978,0.891832229580574,0.8417721518987342,0.7112299465240641,0.1342281879194631,0.5125703564727955,0.7348993288590604,0.6377142857142857,0.5307557117750439,0.1088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002511697624015,0.0046120785776552,0.0067367395803741,0.0092217381148248,0.0117636293389186,0.0140883781060089,0.016359522159253,0.0185345839414568,0.0211428805003167,0.0234309452186547,0.0255159551575021,0.0277452731415901,0.0299715193452533,0.0322481003274232,0.034492006188757,0.0368139361877996,0.0389092978734413,0.0409453716181196,0.0429651790908335,0.0447806259500655,0.0590242629793895,0.0727620721031658,0.0860941038329279,0.0991267430985382,0.1114705727382896,0.1274902503725467,0.1377621858803828,0.1477342803070576,0.1567982924226254,0.1657251883849806,0.1768979881809668,0.1884855826429297,0.1984522075607052,0.2068302278564013,0.214734318114324,0.2234706754931698,0.231508529378972,0.2393381443762505,0.2467030287910916,0.2528601501006773,0.2580909984390356,0.2629635256582561,0.268461138180614,0.2731365083925963,0.2774110566422366,0.2818080013782749,0.2852949992506369,0.2875857687420584,0.2904239227397898,0.2932019912028867,0.2891367148135707,0.2859555189456342,0.2832255343082114,0.2792622608043607,0.2764045610237096,0.2732685056558841,0.2695993443243072,0.2696808944748225,0.2707350995624003,0.2702975916007519,0.2710804118337026,0.2715343665900563,0.2717445638590352,0.2742976715195227,0.2754370879908283,0.2764711976792374,0.2784577550385844,0.2821893086066339,0.2871761073918623,0.2902820824669465,0.2947159960392475,0.299332948159042,0.3052519827640042,0.3053815382293003,0.3062441752096924,0.3085480093676815,0.3105057194461168,0.3125248508946322,0.3157177880686461,0.311864406779661,0.0,2.3287377691382605,47.52081220749266,142.20005250106027,190.844405718823,fqhc1_100Compliance_implementation,51 -100000,95867,48759,465.3634723105969,4676,47.57632970678127,3694,38.04228775282422,1379,14.061147214369909,77.37299817448195,79.67420376472869,63.35320242165369,65.05694903123621,77.18735279858575,79.49104351641016,63.28163235216861,64.98846682932657,0.1856453758962004,183.16024831852928,0.0715700694850838,68.48220190964582,240.5953,169.2850852493583,250967.79913838964,176583.2718759931,559.18545,377.0988015442967,582799.1696829983,392862.436025219,497.42374,244.09186878112592,515773.331803436,252206.85984637323,2594.63468,1231.0679464502562,2670694.6811728748,1248342.116109043,839.41979,388.4132728309245,862672.5463402423,392222.3213732829,1341.22852,591.8207212385358,1368063.3586114096,590158.9851222469,0.37954,100000,0,1093615,11407.627233563166,0,0.0,0,0.0,48773,508.2666611034037,0,0.0,44931,465.6346813814973,1052554,0,37841,0,0,0,0,0,87,0.9075072757048828,0,0.0,2,0.0208622362231007,0,0.0,0.04676,0.1232017705643673,0.2949101796407186,0.01379,0.3649815043156597,0.6350184956843403,22.950116851755705,3.990560525612003,0.2907417433676231,0.297509474824039,0.2081754195993503,0.2035733622089875,11.185548274229102,6.103749885500701,15.056556938270845,11166.292836295112,42.37866919003493,13.481553469497408,12.233312490811008,8.388684040228938,8.27511918949759,0.5760693015701137,0.8007279344858963,0.707635009310987,0.5344603381014305,0.1023936170212766,0.7497820401046208,0.9190871369294604,0.8668831168831169,0.6702127659574468,0.1420118343195266,0.4978405967805261,0.7082658022690438,0.643603133159269,0.4905335628227194,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0044189039901892,0.0068267348325776,0.00911804723514,0.0114368785962629,0.0138640065146579,0.0159611876102045,0.0179918154078519,0.0200676414390665,0.0220089427317282,0.0240973730584812,0.0263373894486282,0.0286935788867878,0.0305815748841996,0.0326388387748579,0.0346779023896565,0.0365726227795193,0.0384647268507004,0.0403850547259548,0.0423555116266971,0.0564841558658227,0.0701902880968055,0.0833019065577205,0.09608215812078,0.1082666385846672,0.1241298446132232,0.1350231537899098,0.1447178156764343,0.1539767086878088,0.1631819789311243,0.174498450146375,0.1848844877352677,0.195249483639526,0.2040677966101695,0.2123252998789479,0.2215354622891259,0.2299393046815727,0.2379334398415877,0.2447930846719303,0.2513823856025827,0.2570850436491877,0.2617513245459117,0.266841002946362,0.2709189111507646,0.2745719105350663,0.2790918157528596,0.2832641112890312,0.2867003088812904,0.2915211260317213,0.2929438142970192,0.2892739895592272,0.2868437697659709,0.2831814789258002,0.2803483233688588,0.2764053945787154,0.2727661589697367,0.2686713308801465,0.2684395712298502,0.2697086255020763,0.2696523255400164,0.2693354713603819,0.2702995024679947,0.273003770597671,0.2733931107954545,0.2739321128909229,0.2755233910571207,0.2757156204875562,0.2802734679861393,0.2852216920344119,0.2900454973329149,0.2944763271162123,0.2982924785250366,0.3053135888501742,0.3097391828735112,0.312814304339728,0.3204188481675393,0.3289016467744372,0.3335349868925186,0.3329673346143288,0.3402646502835538,0.0,1.908297946438719,49.96469010796272,132.87643900068014,186.55641145890564,fqhc1_100Compliance_implementation,52 -100000,95785,49193,469.4889596492144,4638,47.1785770214543,3682,37.7929738476797,1390,14.104504880722452,77.39816222968327,79.72757738406783,63.35848721039546,65.07966398256686,77.21251102013193,79.54814193897153,63.28729330359084,65.01383588896083,0.185651209551338,179.43544509630271,0.0711939068046234,65.82809360602937,241.4313,169.86021706170206,252055.4366550086,177334.88235287575,564.61621,381.7499033272759,588828.4386908179,397915.1363233031,505.68303,248.36696295645208,524138.14271545655,256385.4858739649,2563.08974,1207.2075562275786,2634867.098188652,1219319.5868116908,840.11752,383.6341329527633,863083.8127055385,386514.5395503204,1348.3987,581.8683579241737,1370707.375893929,575600.6081961861,0.3801,100000,0,1097415,11457.065302500392,0,0.0,0,0.0,49166,512.6063579892468,0,0.0,45510,471.2846479093804,1044323,0,37499,0,0,0,0,0,90,0.939604322179882,0,0.0,0,0.0,0,0.0,0.04638,0.1220205209155485,0.2996981457524795,0.0139,0.3561076604554865,0.6438923395445134,23.032053197435168,3.996434937782688,0.3006518196632265,0.3001086366105377,0.1998913633894622,0.1993481803367734,11.52794317232532,6.3372048157922105,15.042589315263111,11221.587592952092,42.24894224710879,13.57109800835372,12.589858829533965,8.04027996577918,8.047705443441941,0.5939706681151548,0.8171945701357466,0.7145438121047877,0.5652173913043478,0.1049046321525885,0.7590788308237378,0.9245689655172412,0.8601823708206687,0.6966292134831461,0.1329113924050632,0.5209557383470427,0.7394695787831513,0.6529562982005142,0.5232974910394266,0.0972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022077737943327,0.0044186800713474,0.0066144544089599,0.0089263953204971,0.011111675900981,0.0137602540354591,0.0158047587507005,0.0179569848589968,0.0200451577968716,0.0221812973194188,0.0243934923366937,0.0264551350463837,0.0284883302673093,0.030723468200953,0.0329209196824414,0.0349931315134426,0.0372339875231483,0.0392596049152278,0.0412280063603579,0.0432278757836419,0.0581520321385715,0.0722279164139142,0.0851436359823862,0.0975312404754648,0.1101623445076955,0.1258469962684595,0.136572380073605,0.1459506049352501,0.1551219616386859,0.1637412478689298,0.1752283105022831,0.1862170405139408,0.1966278097059111,0.2057130373040581,0.2148265365553467,0.2235031198831703,0.2309939238530576,0.2391639213393449,0.2465377417342482,0.2532631096862835,0.2590135130448855,0.2642208482836806,0.2695893977044137,0.2735593626452617,0.2778067694996298,0.2811249923072189,0.2837810820942146,0.2865036519530009,0.2897405385829216,0.2928419915416134,0.2899959661153691,0.2859143712410403,0.2824540187862084,0.2799971177403084,0.2775261942816551,0.2733899623320574,0.2700069369994324,0.2697780028423477,0.2688779591211559,0.2686670575067953,0.2698805953467578,0.2713731971745076,0.2724015830035409,0.2736407799294603,0.2732744878779948,0.2747882668870068,0.2758058623499986,0.2810832609504901,0.2843618271024808,0.2866179858643445,0.2923519367304754,0.2973551045959622,0.3003945259524103,0.3019405109762493,0.3088099204145845,0.3120667371636705,0.3143717080511662,0.316956261234272,0.3223612622415669,0.3269375470278405,0.0,2.477224478887628,48.67022758769855,135.63263474662145,183.86994480648045,fqhc1_100Compliance_implementation,53 -100000,95873,48893,465.2717657734712,4765,48.35563714497304,3786,38.87434418449407,1448,14.675664681401436,77.3584022892406,79.64220866841406,63.35300198276878,65.04231955001775,77.17579676163137,79.46584215678976,63.283031608446656,64.97763837788149,0.1826055276092262,176.36651162429473,0.0699703743221249,64.68117213626101,241.0914,169.6828783492454,251469.5482565477,176987.13751446744,561.88021,379.6356615536531,585446.3196103178,395359.27916501055,500.17833,245.98887211752844,518703.8895205116,254105.209017959,2677.46758,1260.243534711765,2751401.103543229,1273380.85775392,857.87155,390.50696795097946,876630.5216275698,389213.66536176245,1404.5006,603.9803796747718,1425201.9025168712,593876.0903836472,0.38123,100000,0,1095870,11430.43401166126,0,0.0,0,0.0,49063,511.1032303151043,0,0.0,45132,467.6394813972651,1045861,0,37530,0,0,0,0,0,101,1.053476995608774,0,0.0,0,0.0,0,0.0,0.04765,0.1249901634184088,0.3038824763903462,0.01448,0.3578441194149469,0.6421558805850531,23.34859086377478,4.062650316755639,0.3045430533544638,0.2836767036450079,0.2113048071843634,0.2004754358161648,11.471779359255612,6.3006329818128535,15.468914503177666,11268.992926100222,43.39710286547937,13.202697315963452,13.038591141046252,8.959664068625063,8.196150339844596,0.5686740623349181,0.7849162011173184,0.6834345186470078,0.5575,0.1001317523056653,0.7590467784642542,0.9142857142857144,0.8524096385542169,0.6990291262135923,0.1214285714285714,0.4873727855258198,0.6898222940226171,0.6151035322777101,0.5084175084175084,0.0953150242326332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0047319411091183,0.0070493249890963,0.0091380763333976,0.0113539337263671,0.013627250429986,0.0156893108928644,0.0178999439033097,0.020154579704522,0.02221449820587,0.0242713974223796,0.0265116565171925,0.0287774217402021,0.0307980332050939,0.033151961087409,0.0350630846428645,0.0371780283438502,0.0394457284401007,0.0417891227815106,0.0439554723262588,0.0582231766815395,0.0726210873835095,0.0858596965222581,0.0989562551189701,0.1113510438831188,0.1269160477915931,0.1370664349374225,0.147253354883988,0.1565829081360346,0.1660627760387633,0.1776272573576128,0.1885696358640386,0.1986693048639951,0.2075671775586505,0.21496899327088,0.2243642238994267,0.2328608233050422,0.2405662498875596,0.2474219786951638,0.2535199972504496,0.2592335462371563,0.2644303308888031,0.2700814625367055,0.2737789819454768,0.2763656687402799,0.2809726878327746,0.2844444444444444,0.2883401221995926,0.2916342614196091,0.2934720883242429,0.2905006867946887,0.2869072349323832,0.2841820792162824,0.2804487179487179,0.2781934794227685,0.2745371078806427,0.2711601720647773,0.2701967213114754,0.2710777626193724,0.2720058361950855,0.272954706695045,0.2727272727272727,0.2709773054679834,0.2713977249961044,0.2730667049615854,0.2730798066234068,0.2745779964373568,0.2790545590433483,0.2820619702653884,0.2873481900719254,0.2908697221219776,0.2939049316073581,0.2979134226097789,0.3047040971168437,0.3089339339339339,0.3123961054381382,0.3211757463835026,0.3273533561781899,0.3316980103570455,0.3345907204828366,0.0,2.3984608088137005,48.712772134480815,142.73252089291518,190.4671498966834,fqhc1_100Compliance_implementation,54 -100000,95723,48512,463.59809032311983,4623,46.95841124912508,3694,37.91147373149609,1365,13.84202333817369,77.38965647392791,79.7568568697559,63.34469261111818,65.09410822655546,77.21377383687306,79.58612151141,63.27691540906841,65.03104877990474,0.1758826370548547,170.73535834589393,0.0677772020497755,63.05944665072616,241.527,169.85326702005972,252318.43966444844,177442.2521442702,559.96492,378.4713768779464,584301.3591299896,394698.50179992936,494.48633,243.37021278585388,512057.3738808855,250749.44954602336,2584.15222,1220.5473332473646,2654486.079625586,1229953.9538536868,839.09799,383.9512535293651,857899.5957084504,382515.7534396996,1322.57342,571.0928504599583,1342765.1243692737,562693.0065711298,0.3777,100000,0,1097850,11469.019984747658,0,0.0,0,0.0,48971,510.8699058742413,0,0.0,44667,462.0728560534041,1047141,0,37545,0,0,0,0,0,93,0.9715533361887948,0,0.0,0,0.0,0,0.0,0.04623,0.1223987291501191,0.2952628163530175,0.01365,0.3639378238341968,0.6360621761658031,22.879603538220525,3.96394613702848,0.3118570655116405,0.2839740119112073,0.2111532214401732,0.1930157011369788,11.292258037508647,6.25993737789815,14.554401706426985,11111.495303128771,42.189756135285485,12.894739642723898,12.944241680305646,8.624013664907512,7.726761147348439,0.5936654033567949,0.8036224976167778,0.7022569444444444,0.5884615384615385,0.1150070126227209,0.7669642857142858,0.9096774193548388,0.8654434250764526,0.7262569832402235,0.1543624161073825,0.5182595182595182,0.7191780821917808,0.6375757575757576,0.5474209650582362,0.1046099290780141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334980957783,0.0047139685532678,0.0068196348653832,0.0089298413149927,0.011108059446428,0.0133192130666775,0.0154770037010226,0.0178846683884402,0.0197890260855343,0.0218132312448179,0.024088234691158,0.025891628852432,0.0280444928757941,0.030201618716148,0.0322217981908759,0.0344667217858619,0.0363762503365295,0.0384587452925126,0.0403882930074,0.0423443605105496,0.0570074234941583,0.0714667001601406,0.0842924741110679,0.0963913729615991,0.1082743414181269,0.123500666370502,0.1340428240986355,0.1437709541801926,0.1534969665897633,0.1624050795829937,0.1735834428100704,0.1847095859882947,0.1948437466020051,0.2039475123018042,0.2123909383973858,0.2216808769792935,0.2292115035070308,0.2371493095738346,0.2441761605169189,0.2501658621399648,0.2552510201486584,0.260460116606494,0.2653451779048339,0.2693080677576802,0.2728705859526581,0.2765195782947262,0.2802103764038627,0.2841720222521401,0.2869584318590017,0.2897231952382206,0.2870958642829319,0.2837298046698055,0.2809870925153443,0.2780114667665447,0.2753745359894701,0.2727591356557252,0.2687330772621371,0.269163053046852,0.2695556495979687,0.2710176208336282,0.2714582329168366,0.2716404476794239,0.2729175300455864,0.273034751083208,0.2741483346795267,0.2745876288659793,0.2756816071579303,0.2805462237153167,0.283781433689263,0.2882357576235127,0.2913069029429049,0.2922548242135871,0.298043369890329,0.3020274299344067,0.3052477333089111,0.305037637521714,0.3066248880931065,0.3124754033844943,0.3135048231511254,0.315592203898051,0.0,2.6153198863471667,47.830621203650985,136.88526635399003,184.3440933744196,fqhc1_100Compliance_implementation,55 -100000,95769,48753,465.1714020194426,4649,47.37441134396308,3672,37.84105503868684,1421,14.472324029696455,77.34687979821054,79.70740370611564,63.33382307926016,65.08182672887938,77.16383129178178,79.52666695480842,63.26422205301925,65.01524198343083,0.1830485064287614,180.73675130722225,0.0696010262409032,66.58474544855153,241.7822,170.08236739021618,252463.94971232864,177596.47421421984,561.12344,378.9427624145332,585420.8668775909,395191.9134504695,498.00419,244.2027783442425,517101.6926145204,252652.81850677743,2589.26082,1225.2005153284815,2670010.483559398,1245727.6307424307,830.73507,384.01677816247786,854637.3669976715,388204.9207141232,1375.66954,592.6622436068806,1403143.2718311772,590382.1551924552,0.37981,100000,0,1099010,11475.634077833118,0,0.0,0,0.0,49006,511.1988221658365,0,0.0,44904,465.9754200210924,1046176,0,37607,0,0,0,0,0,92,0.9606448850880764,0,0.0,1,0.0104417922292182,0,0.0,0.04649,0.1224033069166162,0.305657130565713,0.01421,0.3564213564213564,0.6435786435786436,22.90501178290764,4.108408434587005,0.3112745098039216,0.2794117647058823,0.2069716775599128,0.2023420479302832,11.477410638371015,6.3005910954751805,15.194100182361366,11179.877345893025,42.26367667616655,12.574706286914273,13.106292033174253,8.549390477543833,8.033287878534194,0.5901416122004357,0.827485380116959,0.6920384951881015,0.5697368421052632,0.126514131897712,0.7704778156996587,0.9285714285714286,0.8571428571428571,0.7258883248730964,0.1963190184049079,0.5056,0.7491349480968859,0.6148908857509627,0.5150976909413855,0.1068965517241379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002715739126,0.0045937614083478,0.0067512690355329,0.0088823846255475,0.011231382762269,0.0132176534082808,0.0152309103884188,0.0176806859942833,0.0197808263989695,0.0219007249047794,0.0242164511928806,0.0263776657459981,0.0283419545253545,0.0305128046644827,0.0325204091110813,0.0347543830631822,0.0367313547211233,0.0388505627885263,0.0409671618208089,0.0430481506164611,0.0569356017117211,0.0707845188284518,0.0846203042598475,0.0973230895351403,0.1100361482605625,0.1252853157494293,0.1358312576183157,0.145843301117455,0.1554692667107593,0.1639442593802551,0.1754480325294206,0.1862282114181354,0.1968431229834986,0.2058768931741993,0.2140919027584009,0.2228651722688145,0.2298772397337406,0.2377783523116871,0.2447437395754144,0.2509476529128159,0.2569210657226483,0.2622110975952091,0.2682557520553617,0.2725039838012053,0.2767126944451185,0.2805052020562265,0.2834068832743683,0.2862170609610449,0.289298826206112,0.2921059906014295,0.2887324889527621,0.2851257261353804,0.2816573033707865,0.2781569474442044,0.275585888344412,0.2721487111395998,0.2682134351193199,0.2685197303841372,0.2682947583390061,0.2684058074031951,0.269500503599806,0.2706155632984901,0.2717053536048718,0.2723849838476105,0.2733875026964837,0.2741159020531369,0.2758855973161994,0.2804927873283258,0.2850548989439821,0.2893248427797334,0.2919843863471314,0.2948163006756756,0.3016101748010776,0.3062132408384859,0.3135405105438402,0.3172156038308806,0.3181749508989273,0.3203471941865159,0.3171001660210293,0.3296960249415432,0.0,1.9332631532464395,51.13737726355304,130.35968823247765,183.1062764606952,fqhc1_100Compliance_implementation,56 -100000,95753,48759,466.1890489070839,4736,48.32224577820016,3782,38.912618925777785,1467,14.89248378640878,77.36211040614715,79.72319005385457,63.32787542470121,65.0754596182162,77.1795121709397,79.54534792028586,63.25931909164693,65.01095190321182,0.1825982352074504,177.84213356870282,0.0685563330542819,64.5077150043818,240.28356,169.09623005134952,250941.02534646436,176596.27379961935,560.11013,377.7668170253839,584296.5860077491,393865.6721203344,500.27203,244.9106582907216,518949.8605787808,253032.4021763155,2676.25581,1257.2055686021208,2755951.0511420006,1274358.0061499202,875.43251,401.10668824028266,901416.5926916128,406052.6649194096,1427.94832,606.3942408160149,1452389.899010997,601263.4384134584,0.37956,100000,0,1092198,11406.410243021106,0,0.0,0,0.0,48869,509.7594853424958,0,0.0,45168,468.2464256994559,1052962,0,37825,0,0,0,0,0,94,0.96080540557476,0,0.0,1,0.0104435370171169,0,0.0,0.04736,0.124776056486458,0.3097550675675675,0.01467,0.3628640776699029,0.6371359223300971,23.05723340328388,3.9925798031876414,0.2956107879428873,0.29613960867266,0.1993654151242728,0.2088841882601798,11.35464129818801,6.215978430139954,15.650213589264732,11204.855077318209,43.57625187149038,13.841289651324198,12.57263577979252,8.471769862013902,8.690556578359743,0.594923320994183,0.7991071428571429,0.6958855098389982,0.629973474801061,0.1291139240506329,0.7626392459297343,0.9213250517598344,0.8576051779935275,0.7755102040816326,0.1564245810055866,0.5200764818355641,0.706436420722135,0.6341161928306551,0.578853046594982,0.1211129296235679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020769378843601,0.0044821222138844,0.0066490711602882,0.0086672018045662,0.0107115609582422,0.0131278771336619,0.015183651826321,0.0172343379890549,0.019335180621875,0.0215962152863111,0.02394577077693,0.0258951866384534,0.0280446904384683,0.0301518929947857,0.0321904801221979,0.0343547753447883,0.0363352075631905,0.0384296148738379,0.0402274357348523,0.0420603093588875,0.0567849686847599,0.0710130978783947,0.084565531995218,0.0966198308863741,0.1090145866073217,0.1245426281170026,0.1347618542484353,0.1446485980114543,0.1544387106424351,0.1638412626928727,0.1752086586613537,0.1867201956477042,0.1972109820301962,0.2065797532592528,0.215630605350324,0.2252786209647043,0.2330735563396007,0.2406717886992811,0.2476806169899058,0.2533398967408102,0.2578148499502533,0.2633511036288814,0.2691716340240325,0.2727131114146716,0.277246468275159,0.2801768734295708,0.2835807827490025,0.2865370678804368,0.2903250844081083,0.2934043338429905,0.2897760912858604,0.2862680945245591,0.2834462974941643,0.2801379051685588,0.2771428994916033,0.2735467114811702,0.2695119447997094,0.2697711696681224,0.2691032724181895,0.2696054943299792,0.2707945491101348,0.2714114809076468,0.2728123635002184,0.2728402734617775,0.2725863384850219,0.2737187604993151,0.2746016076716965,0.2799067599067599,0.2843731596632833,0.2870783438991938,0.2934163940303859,0.2980588603631809,0.3057052592454934,0.3080416976917349,0.3124425657048337,0.3190770306491085,0.3235998802036537,0.3303220738413197,0.3325320512820512,0.3310554290053151,0.0,2.274285270839631,50.729738079479766,141.88427843688768,185.81683646068592,fqhc1_100Compliance_implementation,57 -100000,95769,48646,464.67019599244014,4638,47.18645908383715,3676,37.89326399983293,1447,14.785577796573005,77.32840490063373,79.68836134402196,63.31625382636724,65.06457263926175,77.13949256896467,79.50182041944527,63.24407988670092,64.9953838401438,0.1889123316690586,186.5409245766898,0.0721739396663139,69.18879911795273,241.0232,169.50939719303344,251671.1879627019,176997.99928911476,559.44997,378.4650599919044,583663.2626423999,394684.5627052801,493.54553,242.0295933049928,512327.85139241297,250400.19316214687,2613.40527,1231.687104677399,2693468.512775533,1250954.7157534352,836.36815,385.1183560732032,858339.7237101776,387488.3833644848,1404.1371,606.5974224905535,1434885.3595631153,605879.3953103308,0.379,100000,0,1095560,11439.599452850089,0,0.0,0,0.0,48834,509.3923921101818,0,0.0,44569,462.3834434942413,1047344,0,37606,0,0,0,0,0,100,1.0441792229218223,0,0.0,3,0.0313253766876546,0,0.0,0.04638,0.1223746701846965,0.3119879258300991,0.01447,0.3773740710156895,0.6226259289843105,22.708616981928667,4.006659540379356,0.3201849836779107,0.2714907508161044,0.2053862894450489,0.2029379760609358,11.081397722873357,5.997629144835388,15.474213711882324,11152.180668935263,42.306230781901405,12.323106667680438,13.385742504016642,8.33693145352722,8.260450156677107,0.5840587595212187,0.7985971943887775,0.7085811384876806,0.5761589403973509,0.1085790884718498,0.7540394973070018,0.928735632183908,0.8628048780487805,0.7215909090909091,0.1485714285714285,0.5101483216237315,0.6980461811722913,0.6489988221436984,0.531951640759931,0.0963222416812609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021280261037868,0.0042495790989675,0.0064878365755594,0.0086790381918331,0.010864478850888,0.0126813070404172,0.0147964594550497,0.0168967207089476,0.0191069128381279,0.0216082871005384,0.0235354415457946,0.0259256217015421,0.0278691896338955,0.0302821181002605,0.0323922151363176,0.0344510367353689,0.0363220437230871,0.038246549203024,0.0404223039674127,0.0424195715342074,0.0568747586293277,0.0707838728233017,0.0843931847968545,0.0977737602219933,0.1095926495690472,0.1246379875277454,0.1345550182404343,0.1442878733050937,0.1535848572893522,0.1615656836461126,0.1741312824489971,0.1861569756118673,0.1963704807807383,0.2054181750571456,0.2138815499779832,0.2228696124151223,0.2313118010758688,0.2387019798971218,0.2456542719273346,0.2522173584213783,0.2584710456880988,0.263251461988304,0.2677250180535331,0.2715070530659246,0.2755562035990717,0.2795311980084542,0.2823488133129495,0.2853850463481715,0.2882045699029252,0.2916683158519691,0.2885076355409518,0.2847850600951621,0.2817173111042271,0.2781849660943586,0.2757351304012231,0.2725213505157794,0.2677842796141072,0.2668242012504307,0.2682111296871268,0.2681344148319814,0.2685081428357986,0.2693995631039301,0.269990220761116,0.2704487835253302,0.2718687991584785,0.2743351373747313,0.2751698754246885,0.2799301810927905,0.2851436312480461,0.2905633692150546,0.2948354270791121,0.2974994768780079,0.3031072047536519,0.3056781626393356,0.3072723908216136,0.3113021256824254,0.314277117496615,0.3194668820678514,0.328390993959363,0.3282887077997671,0.0,1.8596974981099672,48.52469233628851,137.06246010516736,186.2793588057968,fqhc1_100Compliance_implementation,58 -100000,95734,48968,467.7648484342032,4692,47.86178369231412,3743,38.54429983078113,1411,14.38360457099881,77.31464774318667,79.68073592501243,63.30648041847581,65.056142697915,77.13079319519065,79.50133121808432,63.23641176281283,64.99055942090195,0.1838545479960203,179.4047069281106,0.070068655662979,65.58327701306155,240.00746,168.8911378759881,250702.42547057476,176417.0909770699,557.29786,376.4894236444668,581597.259072012,392736.9405579581,497.76709,243.9392663581357,517002.4442726722,252482.66142994052,2629.62204,1234.1663086576525,2708811.7805586318,1251586.96348163,882.18437,401.1127809253624,907642.9899513236,405672.13308552623,1370.88636,589.3375573503093,1398346.8778072577,585674.133607613,0.38155,100000,0,1090943,11395.564794117034,0,0.0,0,0.0,48552,506.5807341174505,0,0.0,44950,466.5218208786847,1053042,0,37754,0,0,0,0,0,81,0.8460943865293418,0,0.0,1,0.0104456097102387,0,0.0,0.04692,0.1229720875376752,0.3007246376811594,0.01411,0.3650501330059341,0.6349498669940659,23.118506370783248,3.961026733687525,0.3165909698103126,0.2831952978893935,0.1969008816457387,0.2033128506545551,11.153604094900576,6.068870817106922,15.156377339811913,11253.96461817576,42.94022127168642,12.945460111490164,13.370552897816523,8.25579744739405,8.368410814985676,0.5928399679401549,0.810377358490566,0.7063291139240506,0.576662143826323,0.1287779237844941,0.7455516014234875,0.9318181818181818,0.871875,0.675531914893617,0.125,0.5273004963726613,0.7241935483870968,0.6450867052023121,0.5428051001821493,0.1299145299145299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400698981917,0.004633431679695,0.0068007876733185,0.0091454120516207,0.0115570476626481,0.0136924895064998,0.0157823323573519,0.0179902391211124,0.0200764622901887,0.0222759100773924,0.0243199737524735,0.0265735701817435,0.0286166886109282,0.0306543019062339,0.0325770556782757,0.034622144112478,0.0367302136296327,0.0387991864519342,0.0408456123202345,0.0427589081058553,0.0576172078939124,0.0717433401371225,0.0853162113391245,0.0984087586634834,0.1103518096684383,0.1257127743983073,0.1356635637027523,0.146512346007645,0.1569822131007354,0.1656705046624674,0.1769393344691496,0.1879110282884971,0.1976950644314456,0.2061121399064222,0.214418009833969,0.2234027199555925,0.2315099594018766,0.2387933464899915,0.2464743881357474,0.2528850459884942,0.2587586078972385,0.2639071140687974,0.2687626654657928,0.2732311900848261,0.2772579233910169,0.2806671515390589,0.2843277048155097,0.2868784723546537,0.2910602104392337,0.2934151447720121,0.2900048376693184,0.2860378912685338,0.2834414581402533,0.2802598225602027,0.2773281152717246,0.2744286238083598,0.2707701541571898,0.2708166106970268,0.2709362963972869,0.2715772618094476,0.2724795131694387,0.2737676229427611,0.2747821747177109,0.2756455763599255,0.27877732175241,0.280749354005168,0.2826961200792977,0.2867658525934936,0.2904044795325705,0.2955511811023622,0.2979425729143115,0.3029568333948242,0.3087875556670639,0.3118214258598435,0.3161344695196179,0.3178605089538172,0.3202863234846177,0.3285772523440685,0.3336998350742166,0.3346168656141702,0.0,2.123311522524116,48.930068900814405,137.838724996314,191.17983208683228,fqhc1_100Compliance_implementation,59 -100000,95833,48901,467.4798868865631,4669,47.70799202779836,3777,39.02622269990504,1403,14.38961526822702,77.3504688262772,79.68197094210812,63.33176974345843,65.0597062521659,77.17207359079232,79.5030784784357,63.26463695950337,64.99366945882713,0.1783952354848708,178.89246367242606,0.0671327839550599,66.03679333876755,240.295,169.10244574582327,250743.25128087404,176455.13023464085,561.77063,379.495309172638,585810.774994,395611.0625881147,501.07775,246.02692302465715,520116.6821449814,254648.38764168016,2633.98967,1232.0973214169,2724255.903498795,1261510.4058768165,875.97571,397.9573833449703,905488.6416996232,406685.1745692712,1360.18762,581.4365160688325,1396666.3884048292,588438.3919205989,0.3803,100000,0,1092250,11397.420512767,0,0.0,0,0.0,48948,510.35655776194005,0,0.0,45258,469.51467657278806,1049727,0,37744,0,0,0,0,0,86,0.8973944257197416,0,0.0,0,0.0,0,0.0,0.04669,0.1227714961872206,0.3004926108374384,0.01403,0.367477328936521,0.6325226710634789,22.906361399646432,3.98557743946351,0.3113582208101668,0.2915011914217633,0.200688377018798,0.1964522107492719,11.343146060743106,6.224135915305271,14.994994021819142,11243.997327822948,43.29113334252448,13.515347211431717,13.224922798856518,8.439208015119682,8.111655317116576,0.5851204659782896,0.8138056312443234,0.6828231292517006,0.5567282321899736,0.1199460916442048,0.7559681697612732,0.9343891402714932,0.8726708074534162,0.6954314720812182,0.1411764705882353,0.5120937263794406,0.7329286798179059,0.6112412177985949,0.5080213903743316,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0044208754550155,0.0066883182786968,0.0087885961614663,0.0110055536342738,0.0133833085494286,0.0156442812707154,0.0178294257005146,0.0199685084454623,0.0219376369182892,0.0237790059780769,0.025835600965241,0.0281671311483839,0.0300823892893923,0.0318571841095664,0.0338585524616417,0.0359915533196695,0.0379920136908157,0.0399048104001912,0.0420657061958694,0.0572349480535736,0.071162732347837,0.0848343864281747,0.0978904903979493,0.1104977613905715,0.1253487192493025,0.1352354294559835,0.1454798804420665,0.1546887009992313,0.1646003664691448,0.1764440044761986,0.1874114989244754,0.1977712852038101,0.206078422801189,0.2146416040651569,0.2239257347320845,0.2328962785248005,0.2407938704560029,0.2477606857013112,0.2534009710516672,0.2588791966496216,0.2639676397348516,0.2688505203405865,0.2728230673436153,0.2771739790404255,0.281460667233581,0.2853530928480236,0.287332476358962,0.289746245468669,0.2931389365351629,0.2901939655172413,0.2877792921158055,0.2860161135838638,0.2825886022934057,0.2792495955593155,0.2758019632427143,0.2719209486166007,0.2709132016121104,0.2717100669312124,0.2725654897494305,0.2734800447594181,0.2735836070087117,0.2747213831892511,0.2758344637416887,0.2773286131177343,0.27862397678997,0.2794450096077766,0.2830294530154277,0.2890329738913352,0.2952848722986247,0.2979402770282425,0.2995970485111727,0.3023760779204665,0.3062140133104015,0.3118289522399111,0.3122534230679972,0.3155368926214757,0.3176517098240759,0.322228144989339,0.3172645739910314,0.0,1.483709854452581,49.74820837211788,139.99180761061575,192.57298159859093,fqhc1_100Compliance_implementation,60 -100000,95715,48736,465.0368280833725,4539,46.24144595935851,3623,37.21464765188319,1401,14.28198297027634,77.30949638025908,79.6707270441831,63.31695901961641,65.0598948648079,77.12830932339412,79.49234388591421,63.24834032003525,64.99452561608459,0.1811870568649567,178.38315826888618,0.0686186995811652,65.3692487233144,241.47574,169.884524493331,252286.20383429973,177489.96969475108,561.68744,379.7412392162749,586192.2791620959,396100.65216139046,498.32689,244.62343918276372,516825.3878702397,252598.6457612796,2547.63161,1201.5194455861388,2620602.204461161,1214226.856382111,823.33107,381.26296053299313,843935.6527190096,382086.0504687635,1359.77418,584.3555546371367,1387660.3667136813,583019.6118683757,0.37803,100000,0,1097617,11467.554719740898,0,0.0,0,0.0,49070,511.9991641853419,0,0.0,44924,465.4547354124223,1042605,0,37468,0,0,0,0,0,84,0.8776053910045447,0,0.0,0,0.0,0,0.0,0.04539,0.1200698357273232,0.3086582947785856,0.01401,0.3699006552525893,0.6300993447474107,22.83844723225594,4.1345355387769365,0.309964118134143,0.2787744962738062,0.2103229367927132,0.2009384487993375,11.770693703045731,6.464570190173959,15.01336190866408,11132.50049423092,41.65813403907638,12.382832932446217,12.753476961476366,8.557374957292248,7.964449187861551,0.5812862268837979,0.8,0.6874443455031166,0.5748031496062992,0.1208791208791208,0.7528991971454059,0.9047619047619048,0.85625,0.717948717948718,0.1878787878787878,0.504396482813749,0.718804920913884,0.6201743462017435,0.5255731922398589,0.1012433392539964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875411429902,0.0046529073067877,0.0068987906825744,0.0091106687251157,0.0115894881309408,0.0141378362698097,0.0162666258981807,0.0185878918411301,0.0206655492416499,0.0227609992733673,0.0249592554249223,0.0271988007474793,0.0294704370179948,0.0315229032789586,0.0334553704945083,0.0355423305023453,0.0373827906687917,0.0392640836306313,0.0411361817558227,0.043125,0.058059396015204,0.0713388595830193,0.0838874787606721,0.0963827549947423,0.1083272700431284,0.1240124795092803,0.1345868171979118,0.1449511400651466,0.1548239617159459,0.1630747126436781,0.1755720256819063,0.1856575257932856,0.1958343308594685,0.2037973298314729,0.2128559159674968,0.2218564334486122,0.2296592470152004,0.2378480043247139,0.2442528735632184,0.2504355001375263,0.2558163761372317,0.2610104460327301,0.2662642045454545,0.2711358376997878,0.2748761053347585,0.2788507758865073,0.2819092398304343,0.2854435612082671,0.2890920391567825,0.2912871287128712,0.2872341858241418,0.283483954387268,0.280407927542152,0.2764360266200863,0.272967555126587,0.2683901184681789,0.2647720075997467,0.2649910586845602,0.265598852498207,0.265756358768407,0.2664708193776547,0.2672343956847325,0.2680640977364963,0.2699053824868339,0.2715737870377046,0.2735702041452392,0.2740626868221026,0.2779899812147777,0.2812325321408608,0.2855174043156402,0.2882618510158014,0.2914207419898819,0.29047976011994,0.2961172382535126,0.3013903144536717,0.306727613689639,0.3073311117843078,0.3032022699635184,0.3101007350939286,0.3085670962850644,0.0,2.452928303442641,48.35320837426077,132.0823452298518,181.95747519519276,fqhc1_100Compliance_implementation,61 -100000,95733,48405,461.0740288092925,4686,47.601140672495376,3734,38.41935382783366,1403,14.2792976298664,77.40440741590693,79.76256816247653,63.3594678928421,65.09953315552131,77.22490996193346,79.58725709777984,63.29042557840267,65.03455957494978,0.1794974539734681,175.311064696686,0.0690423144394287,64.97358057153235,240.56252,169.2327376238615,251284.84430656096,176775.75927199767,557.72174,376.2954522738997,581973.3738627224,392460.57500955765,491.12877,241.7757803806355,509586.3077517679,249828.2460056484,2614.90616,1245.2503848903025,2692627.52655824,1261923.6155665256,856.89121,395.3502324737648,880557.4357849435,398451.9842785605,1363.10082,590.2768083203208,1388718.916152215,585756.1469408165,0.37948,100000,0,1093466,11422.038377570952,0,0.0,0,0.0,48649,507.5365861301745,0,0.0,44434,460.6770914940511,1056526,0,37812,0,0,0,0,0,97,1.0132347257476524,0,0.0,1,0.0104457188221407,0,0.0,0.04686,0.1234847686307578,0.2994024754588135,0.01403,0.3653295128939828,0.6346704871060171,22.93214561443817,3.950919020960358,0.3176218532404927,0.2771826459560793,0.2062131762185324,0.1989823245848955,11.29599577922499,6.174254044295719,15.065345448850527,11225.14898243151,42.8992954864502,12.840048491020784,13.36900769363499,8.463743280668297,8.226496021126124,0.5990894483128013,0.8222222222222222,0.7074198988195616,0.6012987012987013,0.1130551816958277,0.7692307692307693,0.9271948608137044,0.8772455089820359,0.7676767676767676,0.1286549707602339,0.5214508580343213,0.7359154929577465,0.6408450704225352,0.5437062937062938,0.1083916083916083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793372280215,0.0046921712693184,0.007131698013675,0.0094246686639922,0.0114993950362469,0.0135688110749185,0.0157350318471337,0.0179178188422803,0.0200670263200915,0.0222154003581478,0.0244847341935616,0.0267260579064587,0.0286416300850202,0.0307247033618984,0.0328218991508197,0.0350327689222435,0.0373120417546911,0.0395435684647302,0.0416112404389757,0.0435683782939277,0.0579551267996784,0.0717686825664263,0.0852302528060421,0.0983987467538611,0.1112563375530984,0.1270500904101767,0.1378286053765038,0.1467641829814868,0.1557091577283022,0.1640393771715352,0.1749951536821246,0.1864239879670609,0.1955949532303676,0.2047194156497397,0.2134134266288203,0.2228952351423477,0.2315304460361023,0.2390043173232595,0.2465271871633498,0.2538881450200844,0.2589802544164712,0.263933794777818,0.2684743601850977,0.2729650641982681,0.276289184051531,0.2791023326086155,0.2821124105994982,0.2845002536783358,0.2876627482354155,0.2908995334778895,0.2875067024128686,0.2843285013564245,0.2822468696103313,0.2803657694962043,0.2776489356987754,0.2750452877867592,0.2708979546850152,0.2699440538909459,0.270303750212116,0.2706641608453601,0.2710750265358187,0.2717173306067875,0.2718889212706607,0.2745689750815452,0.2749535027898326,0.2775436328377504,0.2793285074500746,0.2839160839160839,0.2900641581411479,0.2932136276316305,0.2988371570960355,0.3031669463087248,0.3101524730383042,0.3146218991231357,0.3146098505810736,0.3169005915787031,0.3183599638227314,0.319634703196347,0.3181072210065646,0.3285548237117396,0.0,2.26935004610918,50.52023867102258,133.62129676490818,188.7433267900758,fqhc1_100Compliance_implementation,62 -100000,95745,48783,465.34022664368894,4701,47.96072901979216,3740,38.44587184709384,1379,14.047730952007935,77.33232137485312,79.69850731582706,63.31916690730778,65.07125130420347,77.15191024451428,79.52251367924825,63.24961232297207,65.00607132844823,0.1804111303388396,175.9936365788093,0.0695545843357123,65.17997575524248,240.5942,169.2654138920548,251286.43793409577,176787.7318837065,561.99803,379.52339657311006,586318.9200480443,395734.9381932321,496.16313,243.14197683693683,514366.0034466552,251055.73715560927,2629.47534,1236.0691187813416,2702510.7107420755,1247180.1752377057,847.24927,390.6748929593972,869155.5485926158,392290.56656681467,1338.04636,580.4175429060733,1362989.3153689487,574798.4490983115,0.38013,100000,0,1093610,11422.110815186172,0,0.0,0,0.0,49048,511.6507389419813,0,0.0,44830,464.3688965481226,1049532,0,37663,0,0,0,0,0,107,1.1071074207530418,0,0.0,0,0.0,0,0.0,0.04701,0.1236682187672638,0.2933418421612423,0.01379,0.3561085049969406,0.6438914950030593,23.27078483635397,3.9386966114298754,0.3098930481283422,0.2885026737967914,0.2040106951871657,0.1975935828877005,11.470585939380449,6.390892240986712,14.840122979571744,11252.40303936988,42.76158707753675,13.161441359717696,12.967093020502343,8.485662053637991,8.147390643678717,0.5844919786096257,0.8081556997219648,0.6790336496980155,0.583224115334207,0.1109607577807848,0.7688808007279345,0.9477272727272728,0.8762541806020067,0.7433155080213903,0.1560693641618497,0.5077622112836047,0.7120500782472613,0.6104651162790697,0.53125,0.097173144876325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022396530057967,0.0048078386026838,0.0069754690926813,0.0094113342548174,0.0115772767966143,0.0139668503784598,0.0160214571265399,0.0183769104329804,0.020183017228158,0.0223587223587223,0.0245112612381723,0.0270517216598566,0.0291516709511568,0.031371337350018,0.033355687387155,0.0352237139933645,0.0372970510271703,0.0392783408895205,0.0414861002857885,0.0432957693669673,0.0580540766259526,0.071557866761533,0.0851811449789171,0.0978274585681837,0.1090864994253055,0.1242278073961242,0.1345302900073218,0.1449739730256224,0.1545404054429325,0.1631762371990777,0.1741256556909124,0.1851679508267682,0.1960270232047083,0.2056787233809841,0.214380034332497,0.2233664418828688,0.2316746625013946,0.2389245134435819,0.2464887799786717,0.2526220573417606,0.2584597230416826,0.2642350107003777,0.2688823181549379,0.2731562432633116,0.2762450386590117,0.2811049125010775,0.2853624076320034,0.2883098072598371,0.2918671426354183,0.2942927908937605,0.2914505335017604,0.2889401681226306,0.2849492592696708,0.2812837769675309,0.2786695717906532,0.2751256473319992,0.2715877657472536,0.2713364749001898,0.2726530751049973,0.2734113712374582,0.2732709162602081,0.2745940406747595,0.2752421914147319,0.2766573816155989,0.2780147622699386,0.2795779759435918,0.2797918669758498,0.2846687933946331,0.290443864229765,0.2937369272662694,0.2977512869141154,0.3013220518244315,0.3028743567214761,0.3078493647912885,0.3126504908316355,0.3189264552108748,0.3207743857036485,0.3256637168141593,0.3272872766070952,0.3273475495697718,0.0,2.3911841353278827,47.28392818238188,142.040237317922,188.7673974755791,fqhc1_100Compliance_implementation,63 -100000,95728,49025,467.9717533010196,4846,49.40038442253051,3830,39.476433227477855,1440,14.64566271101454,77.41699606751023,79.77051303712457,63.36600846061516,65.10056797604346,77.22644581628401,79.5854972935364,63.29302633323622,65.03254529200139,0.1905502512262131,185.01574358816697,0.0729821273789426,68.02268404207723,238.56162,167.828616561874,249207.3165635969,175317.75777397832,560.27355,378.3064951039127,584713.6156610396,394626.3044291248,503.71614,247.82076762642976,523536.0500584991,256694.3612302405,2696.87159,1271.375381359189,2779423.460220625,1290348.119734236,868.63921,397.8456263860709,894299.8286812635,402542.6365392684,1401.01364,604.5165575063432,1426386.9714190206,598564.2165730587,0.38287,100000,0,1084371,11327.605298345312,0,0.0,0,0.0,48759,508.7435233160622,0,0.0,45440,471.97267257228816,1061749,0,38100,0,0,0,0,0,114,1.190874143406318,0,0.0,2,0.0208925288316897,0,0.0,0.04846,0.1265703763679578,0.2971522905489063,0.0144,0.3668053079817785,0.6331946920182214,23.38697579202715,4.103915485483538,0.2955613577023498,0.2960835509138381,0.2031331592689295,0.2052219321148825,11.475571368603545,6.22815218684616,15.27481667754524,11307.771890264645,43.65534351078933,13.826687302550637,12.750940786318104,8.588054244396695,8.489661177523892,0.5953002610966057,0.8121693121693122,0.7058303886925795,0.6053984575835476,0.1132315521628498,0.7586790855207451,0.91869918699187,0.867741935483871,0.7905759162303665,0.1276595744680851,0.5224613061532654,0.7305295950155763,0.6447688564476886,0.545144804088586,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0043359774691264,0.0065522557611165,0.0088546796779008,0.0110928095005693,0.0135690873185529,0.0155848656582541,0.0177791385997142,0.0199685245365544,0.0220774039100944,0.0243270107698771,0.0264789194958742,0.0287529426277537,0.0308847306468389,0.0328880177438489,0.0349075126588818,0.0370646457116826,0.0393918021905078,0.041583088227652,0.0433799706216337,0.0584334896154207,0.072291803999121,0.0858284898969764,0.0982299675020771,0.1106036955788052,0.1258328574148106,0.1362744370074146,0.1461721876862811,0.1556533723650893,0.1645896786924628,0.1774384597161501,0.1888970635968234,0.1989282958164407,0.2085422469823584,0.2162375976530309,0.2250904544297775,0.2333151259099067,0.2411428828342774,0.248948400775519,0.2566021328207241,0.2618954036807546,0.2672617239526135,0.2715658350371692,0.2756256058593329,0.2788384561267315,0.2825843457282473,0.2869207800807066,0.2884468830970889,0.2912041763041259,0.2938326223205351,0.2908763634409758,0.2875883361921098,0.2853268506548255,0.2824544195707362,0.2796543597800471,0.2755352755352755,0.2726370666708667,0.273062369519833,0.2731512099167387,0.2742866246548184,0.2744934157983693,0.2742096505823627,0.2751973410884919,0.2769999778824674,0.2777632299378675,0.2781176592064844,0.2785827037997519,0.2828583845532998,0.2862042682926829,0.2896808302330135,0.2907060195568314,0.2947373938567984,0.299609447647387,0.3046167773083886,0.3080906148867314,0.3129504766333411,0.3148342582870856,0.3176866706278471,0.3230563002680965,0.3238341968911917,0.0,1.953607111201449,51.37256503386759,132.83577549191514,198.36949394835796,fqhc1_100Compliance_implementation,64 -100000,95697,48844,466.6708465260144,4714,48.06838249892891,3758,38.69504791163777,1388,14.086126001860038,77.3508434030137,79.74208532803088,63.31502979323547,65.08308642844426,77.17405662344254,79.57033282498503,63.2483865983982,65.02107315423932,0.1767867795711595,171.75250304585177,0.066643194837269,62.01327420494352,239.43018,168.42468732311886,250195.8891083315,175997.65292863813,561.968,379.65752864555657,586652.8940301159,396145.309083953,498.71334,244.61063464881312,517935.4943206162,253053.1160084351,2650.71394,1223.8060947636152,2730093.87964095,1239081.1794115845,864.8656,383.9652290723753,888052.9901668809,385666.3121874474,1347.4821,573.2544968877565,1368565.3050774843,565353.8982934138,0.38082,100000,0,1088319,11372.540414015068,0,0.0,0,0.0,48878,510.1518333908064,0,0.0,45077,467.82030784664096,1054321,0,37832,0,0,0,0,0,107,1.1181123755185638,0,0.0,0,0.0,0,0.0,0.04714,0.1237855154666246,0.2944420873992363,0.01388,0.3625050999592003,0.6374949000407997,23.353836629889557,4.018058449256233,0.3116019159127195,0.2799361362426822,0.2080894092602448,0.2003725385843534,11.254968451994303,6.211039161993852,14.87819014762894,11257.55152540696,42.85670875612583,13.045294540796904,13.176320894534008,8.579132481623889,8.055960839171023,0.5870143693453965,0.8193916349809885,0.6942783945345858,0.5754475703324808,0.1075697211155378,0.7703703703703704,0.9227467811158798,0.8556701030927835,0.7430167597765364,0.1388888888888889,0.5130694548170276,0.7372013651877133,0.6409090909090909,0.5257048092868989,0.1001642036124794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0044315542890752,0.0068927712188734,0.0091877388405561,0.0112921931270219,0.0136407163668221,0.0157504411959726,0.0180772726808493,0.0203824913070157,0.022439344127979,0.0244490252181849,0.026858803833157,0.0289546497155964,0.0309096716362549,0.0329425363276089,0.0349932287843858,0.0370063403920268,0.0389437847712364,0.0410135324894163,0.0428610144051366,0.0575400555660002,0.0716065669891527,0.0848229749446304,0.0974088140300674,0.1096154860488422,0.1259825858803863,0.1364446897488695,0.1466328747284576,0.1561170610744137,0.1648371693760394,0.1766379616955692,0.1873734804117908,0.1975888932410671,0.2053529418201315,0.2145900069350417,0.2236757499833706,0.2321336875711638,0.2397370524206711,0.2470562854125742,0.2534292884727777,0.2589176176477396,0.2643423916859771,0.2693901716992303,0.2734083743901416,0.2777291939950445,0.2813585203063813,0.28461096253343,0.2879273096962765,0.2916537427626137,0.2943192302622908,0.2904579947257951,0.2873921644046376,0.2848389454157063,0.2810577130917213,0.2773840349189909,0.2735646206633625,0.2706234728462205,0.270789086750531,0.2720518226332971,0.2726030072251513,0.2728424268390366,0.2735151669640581,0.275066401062417,0.276304136037552,0.2770146411141531,0.2770242392986075,0.2781239474570562,0.2816216551040634,0.2865438457018423,0.2916196333346308,0.2956684658964179,0.2993318020463562,0.3033471509002041,0.3051051051051051,0.3095481117194024,0.3163265306122449,0.3187028657616892,0.3230890464933018,0.3325314087142475,0.3278813236972233,0.0,2.196514977082771,46.696311761268014,143.17727658560747,192.07940346792032,fqhc1_100Compliance_implementation,65 -100000,95722,49130,469.0562253191534,4690,47.65884540648963,3756,38.64315413384593,1478,15.0017759762646,77.26691653433518,79.62675583470393,63.2951211478972,65.03884499049505,77.07568871714443,79.44078959419164,63.22144637935047,64.970298532623,0.1912278171907502,185.96624051228616,0.0736747685467307,68.54645787204561,240.40918,169.13137679335458,251152.8384279476,176689.51379552716,560.40021,378.2771645364936,584857.4831282254,394595.5721030626,500.23741,245.46794344128855,519058.2415745597,253684.18146796757,2676.94519,1261.327854382627,2753221.453793277,1274407.7775032136,881.33238,405.8444664622909,901102.1604228911,404558.8353126474,1433.19082,612.8919950281809,1455391.7176824554,603655.4607363623,0.38247,100000,0,1092769,11416.038110361254,0,0.0,0,0.0,48863,509.85144480892586,0,0.0,45226,469.0457783999499,1046560,0,37620,0,0,0,0,0,79,0.8148596978750967,0,0.0,1,0.0104469192035268,0,0.0,0.0469,0.1226239966533322,0.3151385927505331,0.01478,0.3676857663494634,0.6323142336505365,23.07488472130697,4.017556616952351,0.3120340788072417,0.2763578274760383,0.2036741214057508,0.2079339723109691,11.483589541789817,6.336695849545988,15.723040446857055,11274.875422074228,43.3105873745827,12.908142964198976,13.35328556945199,8.572529374139322,8.476629466792414,0.5849307774227902,0.8198458574181118,0.6868600682593856,0.6078431372549019,0.0973111395646607,0.7476149176062445,0.9247787610619468,0.8454545454545455,0.7447916666666666,0.1229050279329608,0.5128697656550134,0.7389078498293515,0.6247030878859857,0.5619546247818499,0.0897009966777408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024510796904752,0.0047957497287815,0.0071640215935381,0.0094574415131906,0.0115330634827004,0.0137761803427244,0.016127223609766,0.0182521615745041,0.0204450896006051,0.0226621356043236,0.0246737670804588,0.0269290788879306,0.028854657260967,0.030940683290589,0.0331063654183431,0.0351346881395877,0.0372798160862406,0.0394770970586709,0.0413193072909087,0.0432825556921666,0.0587055948875383,0.0720895178679841,0.085856412732062,0.099026674383122,0.1111029047131688,0.1261324189315045,0.1369461580115307,0.146628034555855,0.1552850832629226,0.1641919240721057,0.1764407784786242,0.1877059129530085,0.1984249738584872,0.2065520980514573,0.215070591736193,0.2239367666159704,0.2316767685804388,0.2398170161462969,0.2465463964373352,0.2531038989326944,0.258243348031897,0.263680835127797,0.2693609868125103,0.2737844058693776,0.2787450942272876,0.2824894280677096,0.2866286716352477,0.2888532437111722,0.2915203276266507,0.2952661705024654,0.2923099762470308,0.289414880410494,0.2857848673066064,0.2819070480377129,0.2790704589720335,0.2753436623603512,0.2716941657553136,0.2714112002103326,0.2713890028723841,0.2719223079120251,0.272521341920024,0.2733412322274881,0.2734741784037559,0.274811206935073,0.2754358542743778,0.2749687565090606,0.2742146969956103,0.2783320220298977,0.2842514124293785,0.2877150860344137,0.2914722298471955,0.2950120032008536,0.2980866062437059,0.2990285367334547,0.3047467465593109,0.3071841453344343,0.3118623420130957,0.3183098591549296,0.3225894564326687,0.3209498276522405,0.0,2.272749396311562,49.8990037309856,137.63765821724755,191.71945756625183,fqhc1_100Compliance_implementation,66 -100000,95697,49293,471.7389259851406,4620,47.16971273916633,3661,37.61873412959654,1390,14.19062248555336,77.288290147924,79.65828187325519,63.294707477804174,65.04405164400582,77.11476913686775,79.4877671190641,63.22969882476869,64.9826544298983,0.1735210110562519,170.51475419108897,0.065008653035484,61.3972141075152,240.11152,169.05266326422915,250907.8654503276,176653.85880877083,565.12893,381.98660881280944,589933.4148405906,398556.1290456434,502.23579,246.95056154201976,520475.3963029144,254737.08840976967,2552.83533,1175.3720699648063,2629745.237572756,1190344.5666685535,856.0322,380.6542178910296,881296.7073157988,384564.4141573026,1341.3686,559.9781006327748,1371687.1166285255,558885.9482538211,0.38264,100000,0,1091416,11404.902975014891,0,0.0,0,0.0,49275,514.258545199954,0,0.0,45202,467.9666029238116,1042148,0,37386,0,0,0,0,0,103,1.0763137820412343,0,0.0,0,0.0,0,0.0,0.0462,0.1207401212628057,0.3008658008658009,0.0139,0.3575129533678756,0.6424870466321243,23.45869193928996,4.038690422032236,0.3163070199399071,0.2895383774924884,0.1912045889101338,0.2029500136574706,11.541007249759003,6.397093213947596,14.699141789856084,11315.326677079152,41.81128544611704,12.94458050248242,13.059372053936595,7.815304389308858,7.992028500389157,0.5894564326686698,0.7924528301886793,0.6899827288428325,0.6128571428571429,0.1211305518169582,0.7616822429906542,0.9151376146788992,0.8412698412698413,0.7687861271676301,0.1232876712328767,0.5183326900810498,0.7067307692307693,0.6334519572953736,0.5616698292220114,0.1206030150753768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572023212712,0.0042984154661854,0.0064537078378049,0.0086755114894654,0.0108005857944837,0.0131759818346587,0.0153748903978303,0.0176797835961823,0.0198305206022754,0.0220129969810162,0.0243097546477545,0.0264211369095276,0.0285314771593958,0.0305764101296588,0.0327282104177411,0.0347037060002893,0.0368081008883642,0.0387604943908842,0.0404601431186553,0.0425008598138633,0.0574308093994778,0.0714779294748303,0.0848140723559231,0.0988002525784045,0.1111451251952877,0.1267906868402384,0.1373825325192461,0.1464443615831247,0.1552459664916763,0.1640254246387081,0.176200386021285,0.1871939858746046,0.1975063973430609,0.2062329644346655,0.2157093776152931,0.224969495285635,0.233702213279678,0.2411266780130972,0.2486268890935762,0.2537018756169792,0.2601845625912958,0.2657806530248693,0.2707666405823907,0.2754051134317609,0.279689990388242,0.2838893620172548,0.2872193653580835,0.2901396605331566,0.293327798030643,0.2968008774132167,0.2939623708771599,0.2908049458871478,0.2872473946214268,0.2843919935207682,0.2813512950902548,0.2777505663380885,0.2728092090699219,0.2735764031134781,0.2735911828433965,0.2747785481312492,0.2751655257546852,0.2752703847441933,0.2764815240323355,0.2765271882847048,0.2779685264663805,0.28002683386227,0.2813038443069796,0.285598453190295,0.2899428889817523,0.2951671983930048,0.3001312395347785,0.3038268672472948,0.3076683485952781,0.3112148828801687,0.3144567219152854,0.3157101449275362,0.3213271558810342,0.3231164722167293,0.3269537480063796,0.3339503887449093,0.0,2.487997644934038,46.210687390950696,137.44343602440406,185.98491066456717,fqhc1_100Compliance_implementation,67 -100000,95827,49261,469.73191271771,4623,47.05354440815219,3696,37.9642480720465,1378,14.00440376929258,77.36488025655099,79.67866919511752,63.35773544642036,65.07068507725313,77.19134405501482,79.50908513658113,63.29169273934218,65.0083012254198,0.1735362015361659,169.5840585363868,0.066042707078175,62.38385183333151,240.97304,169.53854420786038,251466.7473676521,176921.47746236486,559.77111,377.477352588911,583541.1105429577,393308.9657287728,497.86123,244.210020602742,515611.85260938987,251847.9011881673,2589.57885,1207.2454171622066,2664467.06043182,1221936.8415605263,833.01736,379.7121688388231,855278.919302493,382233.5446573742,1328.88194,567.2855714723523,1352571.947363478,564721.620245063,0.38347,100000,0,1095332,11430.306698529645,0,0.0,0,0.0,48872,509.3658363509241,0,0.0,44862,464.11762864328426,1052362,0,37774,0,0,0,0,0,85,0.8870151418702453,0,0.0,1,0.010435472257297,0,0.0,0.04623,0.1205570188019923,0.2980748431754272,0.01378,0.3748435544430538,0.6251564455569462,23.27184032777045,4.00159977410884,0.3011363636363636,0.2878787878787879,0.2188852813852813,0.1920995670995671,11.543748010936744,6.54157496401142,14.70827169342216,11382.728905923055,42.188138745947846,13.057014604270972,12.55067554451019,8.923097888748451,7.657350708418241,0.5844155844155844,0.8035714285714286,0.7053009883198562,0.5500618046971569,0.1056338028169014,0.75625,0.9172113289760347,0.8603174603174604,0.7010309278350515,0.125,0.5097049689440993,0.7173553719008264,0.6441102756892231,0.5024390243902439,0.1003584229390681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017725108882,0.0048156859564459,0.007163730822307,0.0094157559013529,0.0120499079732766,0.0142956054249989,0.0167995270036086,0.0190905935439083,0.0211604514229636,0.0232560519985669,0.0255196162833599,0.0275853575936701,0.0293531213385681,0.0312165500205846,0.0331704702414084,0.0352025436676714,0.0373293338849813,0.0394446459099621,0.0415861940066039,0.0435316395114135,0.0585247303752842,0.0726335814031273,0.0856789683745194,0.0988449018166544,0.1111871689290942,0.1261245090171897,0.1359731358777979,0.1453294921812712,0.1550475255763342,0.1639674378748928,0.1758668545792944,0.1876452718407766,0.1982877568093173,0.2070614959537824,0.2152801432856813,0.2247384833137979,0.233497449150088,0.2417808219178082,0.2496574993489657,0.2555037377408957,0.2605377697218791,0.2665266351595776,0.2713884164777022,0.2752169651182251,0.2803963902770365,0.2841662464176332,0.2876216168958497,0.2911447029407658,0.2956118601167415,0.2981378711764551,0.2953145342048398,0.2923714281794861,0.2894226444794243,0.2865257633862922,0.2842820277044464,0.2802914579005254,0.2760326138482444,0.275637138408588,0.2758838383838384,0.2772164305444177,0.2769965359048778,0.2783285279829377,0.2797081451747784,0.2787082673565423,0.2801653089988294,0.2818692847706137,0.2841567098833432,0.2883630915220377,0.2935885367639368,0.2993044028140068,0.3042648862242812,0.3080513418903151,0.3117546848381601,0.3139375476009139,0.3190767781441356,0.3235676314235086,0.3260039700717667,0.3301600162041725,0.3366174055829228,0.3395793499043977,0.0,2.350496303216997,48.25693437522623,131.2115148273925,191.6842215020724,fqhc1_100Compliance_implementation,68 -100000,95644,48458,462.5486177909749,4595,46.84036635857973,3669,37.85914432687884,1398,14.292585002718411,77.2563444549925,79.6654057402468,63.27473565930678,65.05546310230342,77.07545235136983,79.48888380449455,63.20579467620545,64.99013545626038,0.1808921036226678,176.52193575224828,0.0689409831013279,65.32764604304475,240.45098,169.1213256635313,251402.05344820372,176823.7690430464,556.28459,375.9807336553847,581106.8127639999,392591.2170709973,492.3697,242.39882968774705,511656.4760988666,250891.19187473287,2564.04399,1218.9408431777176,2644945.1089456733,1238580.729766339,827.83192,386.48490229434265,849377.0544937477,388028.76649874647,1355.9965,585.6003656853275,1387522.8765003555,585987.4941199004,0.37845,100000,0,1092959,11427.366065827442,0,0.0,0,0.0,48589,507.4965497051566,0,0.0,44432,461.4717075822843,1049580,0,37737,0,0,0,0,0,91,0.9409895027393248,0,0.0,1,0.0104554389193258,0,0.0,0.04595,0.1214163033425815,0.3042437431991295,0.01398,0.3539490179690764,0.6460509820309235,22.964492460136896,4.064235760191457,0.3014445352957209,0.2861815208503679,0.2183156173344235,0.1940583265194876,11.478992654036627,6.392218056936114,14.991172465562148,11193.34858862608,42.27869434440782,12.976006698137722,12.534812536895076,8.839721989592366,7.928153119782656,0.5906241482692832,0.7866666666666666,0.7142857142857143,0.5880149812734082,0.1123595505617977,0.7523809523809524,0.9166666666666666,0.8637873754152824,0.7281553398058253,0.1666666666666666,0.5163086714399363,0.6821305841924399,0.6583850931677019,0.5394957983193277,0.093984962406015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0046319288892492,0.006677559139021,0.0086861113650909,0.0110896327195035,0.013630390269246,0.0156071486861433,0.0177673791327802,0.0199353558496818,0.0222406622000942,0.0245957149893285,0.0265445800961894,0.0286296673770036,0.0309613163972286,0.0332214245131966,0.035182119205298,0.0374228994972269,0.0395051212266012,0.0414455474391792,0.0432864310076872,0.0582210749631611,0.0722202434578558,0.0858414604700966,0.0983432276535724,0.1097768163351448,0.1257156160382649,0.1356139084656533,0.1458284521502055,0.1549857306241115,0.1631054207493104,0.1742730536597988,0.1848874249680369,0.1948020826525499,0.203351196151275,0.2116483225621457,0.2213478656573952,0.2308561203377509,0.238590006536095,0.2455141535699269,0.2514049776350499,0.2574101336548158,0.262431878113097,0.2676066359140983,0.2713768028990376,0.2745558530055975,0.2789566591366391,0.2823700436112086,0.2846986877309211,0.2886482982171799,0.2919026683038249,0.2887852608596035,0.28429711073451,0.2817465917750995,0.2797758665624185,0.2776007386008279,0.2735773730921598,0.2693576003551271,0.2689677843523997,0.2704652557621455,0.2712956335003579,0.2719589836047101,0.2730888726178933,0.2746285546637608,0.2765620821820126,0.2780839643439087,0.2798090147131328,0.2800136328779573,0.2832321081961054,0.2879315144766147,0.2915945903443938,0.2978790613718411,0.3014628499263313,0.3083213683750546,0.3102827570689267,0.3116372611756102,0.3136800648673694,0.3174415161385845,0.3252751572327044,0.3272969374167776,0.328782707622298,0.0,1.9194316456241167,50.37648047712592,132.11419959510155,184.3100433261343,fqhc1_100Compliance_implementation,69 -100000,95690,48898,467.14390218413627,4592,46.78649806667364,3645,37.48563068241196,1390,14.108057268262096,77.32722884548278,79.70510871809431,63.32110870231941,65.07637636792931,77.15278252113148,79.53621874343557,63.25464710205653,65.01493020991167,0.1744463243512939,168.88997465873956,0.0664616002628832,61.4461580176453,240.08688,168.83037636047925,250900.4702685756,176434.50893098663,558.95064,378.01873402537313,583536.8481555022,394456.630948841,496.77363,243.986828760122,515981.0429511966,252475.11220355396,2575.37654,1207.053653602468,2646472.536315184,1216655.1598642354,843.76392,385.5637878376372,864142.0106594211,385487.2033823003,1348.63528,576.016582230391,1369745.9504650433,567007.3975347826,0.37928,100000,0,1091304,11404.5668303898,0,0.0,0,0.0,48808,509.44717316334,0,0.0,44783,464.77165848051,1051960,0,37829,0,0,0,0,0,97,1.0136900407566098,0,0.0,0,0.0,0,0.0,0.04592,0.1210715039021303,0.3027003484320557,0.0139,0.367223382045929,0.632776617954071,22.922137231234867,4.126565292520731,0.3012345679012346,0.2899862825788751,0.2021947873799725,0.2065843621399176,11.502500346402796,6.287096841475097,14.877846584725896,11172.167504431533,41.89881765717983,12.909791694198637,12.546890370105324,8.1731248787747,8.26901071410116,0.5720164609053497,0.7956480605487228,0.6775956284153005,0.5725915875169606,0.1035856573705179,0.765466297322253,0.9147465437788018,0.8817891373801917,0.7471264367816092,0.1604938271604938,0.4902419984387197,0.7126805778491172,0.5961783439490446,0.5186500888099467,0.0879864636209813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023589203636584,0.0048443818345815,0.007182712792939,0.0093137105538458,0.0114601234480023,0.0135318135073768,0.015581343177044,0.0175870415573008,0.0198801464422309,0.0223346407102845,0.0243257101835709,0.0263444394231954,0.0284609292231102,0.030603412744209,0.0327058434990814,0.0348097665904836,0.0366644565082259,0.0385485880398671,0.0408059248164097,0.0428206598217543,0.0573556446895629,0.0711071107110711,0.0842730219336431,0.0969068911099421,0.1092888106061405,0.124730250074049,0.1346598747744879,0.1445624048301051,0.1538617690737951,0.1628173909312279,0.1740952175786299,0.1850565008442654,0.1957540757175329,0.2051091378329906,0.213671827715603,0.2225324027916251,0.2315005970249188,0.2394529360821495,0.2471322403131559,0.2526454420522217,0.257840890678888,0.2633358289270506,0.2675163004248169,0.2711078633379654,0.2747789330482946,0.2791141892391492,0.2823182022921776,0.2851418904308228,0.2875855909496874,0.2911050146403229,0.2877110769976569,0.2846500632250261,0.2822804227591933,0.2788826235560491,0.276711922249425,0.2730057121854852,0.2697328907855224,0.270012259910094,0.2702744057941446,0.2698333836080699,0.269436323345934,0.2700388799434473,0.2705054542426513,0.270797679639055,0.270658338717783,0.2715286789514664,0.2739388096520826,0.2789026371703537,0.2848200312989045,0.2895328208160851,0.2933979790656577,0.2997992180069745,0.3036518259129565,0.3088747538997425,0.3110132983704813,0.3130638547158758,0.3193772672309553,0.3230769230769231,0.3341476655808903,0.3342125094197438,0.0,2.323652223919109,46.66058398292521,138.52551637958004,184.48994315356512,fqhc1_100Compliance_implementation,70 -100000,95775,49376,471.9916470895327,4816,48.93761419994779,3868,39.77029496215087,1433,14.57582876533542,77.38146625236273,79.70389296617694,63.35451413110488,65.06755016184788,77.19544273780342,79.52237053916713,63.28444463037038,65.00155845167157,0.1860235145593094,181.52242700980992,0.0700695007344975,65.99171017630567,239.98524,168.8684334625314,250571.9028974158,176317.8631819696,560.85734,379.7900495044303,584982.740798747,395927.8825418222,515.02526,253.7257092840409,533654.909945184,261802.2927529144,2701.48944,1287.7823208031014,2778759.5823544767,1303076.8726822883,904.24974,416.6640217758895,926579.4727225268,417619.94278585416,1389.61202,591.434832701398,1414945.632993996,587096.496754496,0.38342,100000,0,1090842,11389.631949882536,0,0.0,0,0.0,48881,509.7154789872096,0,0.0,46505,481.4408770555991,1048998,0,37679,0,0,0,0,0,93,0.971025841816758,0,0.0,2,0.0208822761681023,0,0.0,0.04816,0.1256063846434719,0.2975498338870432,0.01433,0.3710254372019078,0.6289745627980922,22.712411343723165,3.964821925919503,0.3084281282316443,0.297052740434333,0.1980351602895553,0.1964839710444674,11.633342595488608,6.579249613206116,15.198357425084692,11309.470129198718,44.940482315529415,14.446625844696158,13.65758987061057,8.501684581701443,8.334582018521248,0.5964322647362978,0.825065274151436,0.6999161777032691,0.5483028720626631,0.1368421052631579,0.7862176977290525,0.9251824817518248,0.8688524590163934,0.7564766839378239,0.1941176470588235,0.5028946352759552,0.7337770382695508,0.6251511487303507,0.4781849912739965,0.1203389830508474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0044590376585998,0.0066544263093293,0.0088553091234056,0.0112763988733769,0.0131624488466315,0.0153498043052837,0.0174389534587087,0.0195954229668982,0.0216586184318219,0.0239724624021636,0.025936983799645,0.0280966425848089,0.0305017397212328,0.0326714503690873,0.0348235585711187,0.0367357920443726,0.0387530194801828,0.0407520905832857,0.0427290805543119,0.0575725004435075,0.0716841752814631,0.0853783874486114,0.0982360608863846,0.1106402268678115,0.126545462237311,0.1373703302997518,0.1468215106872179,0.1570363566454479,0.1655945795274239,0.177917478497691,0.189006520822294,0.1998325486315743,0.2083784522832923,0.2167622107544865,0.2259658530640282,0.2340919491478129,0.2418910252804248,0.2496225408393783,0.2554920183812154,0.2609002709148586,0.2664645424109755,0.2703995264871264,0.274175771516197,0.2785149752941033,0.2819499341238471,0.285244713293006,0.2880195164097938,0.2908698015061722,0.2950366194214658,0.2923089328190724,0.2887793762354491,0.2865476525161653,0.2827160137417362,0.2804322334535631,0.2758362379991438,0.2730886319541934,0.2730378215815109,0.2737477676673187,0.2734387478038652,0.2739055138638014,0.274415958886644,0.2748782619553003,0.2749833222148098,0.2759295966374513,0.2774385510996119,0.2795197740112994,0.2836629808441053,0.2877322385359404,0.2917093545590669,0.2973924027790309,0.3017146452729274,0.3077018402627176,0.3123970654289564,0.3164073418429143,0.316374269005848,0.3248799519807923,0.3261862219575144,0.3261397356352846,0.3285606631499623,0.0,2.2849273419666565,55.59423388344754,140.17083432119995,185.97803606712003,fqhc1_100Compliance_implementation,71 -100000,95762,48773,465.0278816231908,4647,47.430087090912885,3684,37.937804139429,1390,14.128777594452917,77.31912755708531,79.66874463716275,63.32066847763053,65.05826795777207,77.14005180523648,79.49464448144758,63.25263637830941,64.99484423885215,0.1790757518488277,174.10015571516624,0.0680320993211225,63.42371891992116,240.76624,169.326823606687,251421.48242517907,176820.4753521094,559.00575,377.8557184197872,583243.5830496439,394076.6571497956,490.72415,241.13319300679623,509869.2800902237,249756.10215828416,2586.21617,1219.1301999365007,2657818.779891815,1230231.668027506,856.30197,392.8678262419384,877910.6534951234,393966.9767151248,1350.72262,577.1945648898087,1372943.192498068,570373.0419928477,0.38031,100000,0,1094392,11428.249201144505,0,0.0,0,0.0,48840,509.4818403959817,0,0.0,44376,460.7673189783004,1049015,0,37714,0,0,0,0,0,81,0.845846995676782,0,0.0,1,0.0104425555021824,0,0.0,0.04647,0.1221897925376666,0.2991177103507639,0.0139,0.358572312770786,0.641427687229214,23.427798418560226,4.008163466255198,0.3175895765472312,0.2801302931596091,0.2000542888165038,0.2022258414766558,11.407240684268892,6.218360061664825,14.86506875863614,11221.925985859076,42.166605322812266,12.589059163647406,13.09679790684227,8.272035408287476,8.208712844035112,0.5871335504885994,0.7829457364341085,0.7111111111111111,0.5712347354138398,0.1369127516778523,0.7557932263814616,0.918918918918919,0.8607594936708861,0.702020202020202,0.1768292682926829,0.5132708821233412,0.6802721088435374,0.6557377049180327,0.5231910946196661,0.1256454388984509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019240701171657,0.0040434134922323,0.0061787265127226,0.0086534359828556,0.0114104402477346,0.0135854898006986,0.0158246240122355,0.0183596781440182,0.0206744238359133,0.0228598923035973,0.0250171736745511,0.0272715137949091,0.029567238471348,0.0314615075563247,0.0334826034916835,0.0353359446861725,0.0373315112739921,0.0392622636225013,0.0414610069101678,0.0434112402616339,0.0579865967974279,0.07143753792079,0.084980962670051,0.0982501524807033,0.1110220863423119,0.1254824417633312,0.1368920094181532,0.147000617113187,0.1572636614063934,0.1658949128561322,0.1775390015180715,0.1884352784600569,0.1986427996606999,0.207139342918056,0.2152600545630555,0.2236923690154568,0.2314585425733735,0.2385349996063036,0.2454046203422139,0.2513567977283656,0.2575,0.2628653670637242,0.2683126110124333,0.2720184256615724,0.2753272641085167,0.278275993930946,0.2823286384976526,0.285643375334097,0.2878536635920821,0.2917001992163278,0.2885102029828245,0.2848893960432792,0.281927405383326,0.2781984221021298,0.275339944183837,0.271229229780593,0.2678856709004919,0.267706984444408,0.2678355398797049,0.2687006294466931,0.2697970255354971,0.271029510263583,0.2723871237458194,0.2738166967931981,0.275894312841661,0.2768671256007273,0.2781387430841254,0.2841569313425376,0.2887532693984307,0.2923627215911324,0.2972582972582973,0.3001580611169652,0.3053263315828957,0.3111262179922955,0.3138699748157821,0.3188220230473751,0.3283177851339151,0.3292682926829268,0.3279978296256104,0.3352102102102102,0.0,2.1138511268813445,48.69474416762693,131.94138242208413,189.52618836404147,fqhc1_100Compliance_implementation,72 -100000,95672,48918,467.1481729241576,4736,48.185467012292,3761,38.631992641525216,1414,14.372021071995986,77.34181859432726,79.72454094995312,63.3271521787835,65.08545981136733,77.1601819543104,79.54839204752311,63.25768581930237,65.02107672899704,0.1816366400168618,176.1489024300147,0.0694663594811331,64.38308237028423,240.12384,168.90018332514845,250986.53733589765,176540.87227731047,560.02098,378.05511358607697,584704.5426038967,394506.9232231761,502.27732,247.31719289348965,520580.2533656661,255110.85287431232,2630.43813,1238.9062615041464,2703171.1263483567,1249023.6766705,836.65327,382.77777110687634,854533.3117317501,380257.1956265324,1369.69054,588.5222450303297,1392740.6346684506,580924.6815943477,0.38223,100000,0,1091472,11408.47896981353,0,0.0,0,0.0,48810,509.4907600969981,0,0.0,45358,469.6671962538674,1052180,0,37836,0,0,0,0,0,109,1.1393093067982274,0,0.0,0,0.0,0,0.0,0.04736,0.1239044554325929,0.2985641891891892,0.01414,0.3683360258481422,0.6316639741518578,23.06507043024182,4.045926546185385,0.302579101302845,0.2961978197287955,0.1978197287955331,0.2034033501728263,11.571065840759177,6.445157019831664,15.064819550278386,11312.916639467338,43.0356482170154,13.735645883701466,12.937424101142826,8.181284620232002,8.181293611939111,0.5785695293804839,0.8204667863554758,0.6783831282952548,0.5591397849462365,0.0967320261437908,0.7588235294117647,0.9203187250996016,0.8653295128939829,0.6936416184971098,0.1144578313253012,0.4951380785686503,0.738562091503268,0.5956907477820025,0.5183887915936952,0.0918196994991652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607345748397,0.0046626189728047,0.0068585574708562,0.0092624565822347,0.0115406515638345,0.0137961228313105,0.0159006818946274,0.0180374222920898,0.0202577704187491,0.0225306841097769,0.02451603642031,0.0266922737216157,0.028527926092816,0.0310983337970261,0.0330491505480668,0.0350748352796367,0.0371088082901554,0.0392682116454855,0.0413957407850521,0.0431822683722724,0.0577917532881334,0.0718414274046616,0.0853862059555173,0.0980922416423768,0.1109059836273103,0.1266382474586669,0.1370572380568348,0.1473769374893544,0.1571585797172684,0.1655798888912721,0.1775564051478111,0.1875790908205976,0.1981185426862425,0.2068347289940311,0.2159230904611052,0.2250251935194516,0.2327258116720052,0.241007760656844,0.248575967321003,0.2552696962410836,0.2597988206729101,0.2646216434224523,0.2701811217251489,0.2751146610463793,0.2793334061585891,0.2830509309427642,0.2857785891120058,0.2889654558630948,0.2912411498983937,0.294754327449145,0.2913842263826124,0.2887408119804905,0.2862971873988715,0.2826952482617351,0.2801850012600246,0.2749571813065818,0.2715090676641886,0.2711063126727847,0.2717615213061169,0.272289456380729,0.2726273837902264,0.2733954329285069,0.2745057188691431,0.2764059441181705,0.2789930431040665,0.2818955673206685,0.2835270768358378,0.2884164452086916,0.2922711224525466,0.2957713112488648,0.2998597729226037,0.3052194043986109,0.3095577746077033,0.3152713061776642,0.3171610756861658,0.3228725905030559,0.323498259948555,0.3265062636707099,0.3233205898416166,0.3262759924385633,0.0,2.6880881702827133,51.01468591272635,129.5543041230066,192.21492739487655,fqhc1_100Compliance_implementation,73 -100000,95678,48864,466.4081607057004,4587,46.729655720228266,3632,37.35445975041284,1419,14.444281862079055,77.38307130315455,79.75874396134915,63.34642469116329,65.09712965149187,77.19837038584116,79.57770473375345,63.276625398900286,65.03068668741669,0.1847009173133926,181.03922759570423,0.0697992922630064,66.44296407517913,241.8086,170.16301712243444,252731.2025753047,177849.26688471343,560.60438,378.7550018192615,585310.5625117582,395247.7141545959,496.73236,243.83580586951837,514974.382825728,251603.7967404109,2563.29111,1198.6379229045897,2641595.236104434,1215433.9992226104,825.1743,377.76899507139785,849686.1556470662,382118.7119686089,1377.2513,588.5608785348878,1404680.59533017,587855.2810107081,0.38103,100000,0,1099130,11487.781935241122,0,0.0,0,0.0,48913,510.5771441710738,0,0.0,44842,464.49549530717616,1043374,0,37490,0,0,0,0,0,78,0.8152344321578628,0,0.0,0,0.0,0,0.0,0.04587,0.1203842217148256,0.3093525179856115,0.01419,0.3623613146326146,0.6376386853673854,22.79485111200689,4.045172315124725,0.3174559471365639,0.266795154185022,0.2106277533039647,0.2051211453744493,11.28030381925434,6.211132008375157,15.093491685825915,11195.392438968756,41.54909523284472,11.904555248956358,13.18085835407344,8.430054994237906,8.033626635577006,0.585352422907489,0.8194014447884417,0.7025151777970512,0.5895424836601307,0.0953020134228188,0.7617702448210922,0.9420654911838792,0.8427299703264095,0.6871508379888268,0.1879194630872483,0.5124513618677042,0.7342657342657343,0.6446078431372549,0.5597269624573379,0.0721476510067114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021764878572223,0.0044475513140032,0.0065516576910984,0.0087229375685446,0.0112144781658278,0.0136201227643352,0.0158718832188219,0.0181588053363819,0.0201159118088988,0.0222449710805138,0.0243599864666741,0.0267600427174895,0.029126213592233,0.0315190968645708,0.0334560985422921,0.0353359446861725,0.0373036920399453,0.039398436932402,0.0414305175694928,0.0435620863946641,0.0580916764165134,0.0721396941050846,0.0851438822505009,0.0980674601505656,0.1099420137058513,0.1255193411635356,0.1352886929053731,0.144684788157223,0.1534152145380043,0.1621129326047359,0.1738896539851953,0.1847102076124567,0.195589082490027,0.2039852656661602,0.2122272087293206,0.2216780969897071,0.2302770426451375,0.2380995281478395,0.245688333806415,0.2521251976261943,0.2573934373119822,0.2627809826934553,0.2680394060672081,0.2724514272007676,0.2761507801487386,0.2799087883643535,0.2831708934402642,0.2865247866074722,0.2903493099251664,0.2933525058374998,0.290636553068495,0.2873072328037242,0.2833715096752434,0.2793125324413172,0.275696502667457,0.272407571633895,0.2691663771045898,0.2694549026027173,0.2693265132139812,0.2700407669164901,0.2705061406773353,0.2711123311307621,0.2721301935027955,0.2739325145213497,0.2745154001664883,0.2761072891705959,0.277912075556555,0.28236534466185,0.2863735729900413,0.2897627330649259,0.294167903233059,0.2994462438616654,0.3024278459061068,0.3020475265281722,0.3064338235294118,0.314110713047498,0.3142222222222222,0.3193342365008709,0.3243812532912059,0.332726610848198,0.0,2.312090689945185,45.62825377802763,141.51043239030082,179.94405317228546,fqhc1_100Compliance_implementation,74 -100000,95688,48796,465.4920157177493,4711,47.73848340439763,3702,38.05074826519522,1422,14.442772343449544,77.3960056150407,79.77965515142165,63.35197710932333,65.11287956460463,77.20511047777497,79.5931551626688,63.27890063234503,65.04353748242761,0.1908951372657412,186.4999887528569,0.0730764769783007,69.3420821770161,241.16312,169.58464948110833,252030.6830532564,177226.6631982154,556.99028,376.7840807547289,581463.5795502048,393136.7263969661,495.35727,244.3295358568068,513258.6008694925,251961.9964299836,2587.3482,1246.1777607478211,2663917.878939888,1262493.811133183,859.83914,400.5349241646825,883232.3279826102,403313.34515221766,1368.68426,602.7214384363891,1392689.156425048,600260.9191117929,0.37994,100000,0,1096196,11455.940138784385,0,0.0,0,0.0,48634,507.59760889557725,0,0.0,44824,464.0080260847755,1051872,0,37712,0,0,0,0,0,94,0.982359334503804,0,0.0,3,0.0313518936543767,0,0.0,0.04711,0.1239932620940148,0.3018467416684355,0.01422,0.3577252344068488,0.6422747655931512,22.83259027672169,4.055324201754562,0.3055105348460292,0.2895732036736899,0.2088060507833603,0.1961102106969205,11.613408937487051,6.567956991137689,15.527658285567398,11206.111662238454,42.84866933995089,13.199196695775065,12.819364462444884,8.700966493988869,8.129141687742068,0.595894111291194,0.8264925373134329,0.6843501326259946,0.5963777490297542,0.1170798898071625,0.7538461538461538,0.930379746835443,0.8806451612903226,0.6893203883495146,0.1444444444444444,0.5229067930489731,0.7441471571906354,0.610231425091352,0.562610229276896,0.108058608058608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0046642736914684,0.0068309616126347,0.0088188976377952,0.0112505849083474,0.0132570358001058,0.0152737135108129,0.0173968085432214,0.0198531967531538,0.0220987123584924,0.0242362107853188,0.0261199010236454,0.0283645638356953,0.0305102902700809,0.0327386786904528,0.0349183378126938,0.0373201578571206,0.0394943067996637,0.0416411003067963,0.0435960770826168,0.0584696371498401,0.0727822601743425,0.0862132256542031,0.0986836571620825,0.1113863473457857,0.1266999428946088,0.136628369561758,0.1470347147556341,0.1563401346010041,0.1653832128531285,0.1770882695041571,0.1873749337486885,0.1971244756460692,0.2065403910681691,0.2145652843132943,0.2234533600469332,0.2317866024332854,0.2392312789927104,0.245794868890525,0.2518486348103363,0.2580019622554395,0.2633507609000093,0.2680317415332294,0.2717965890879518,0.2755887379252669,0.2797733892077225,0.2824560747197386,0.284445064067629,0.2873555807716113,0.2904985344952223,0.287474525367371,0.2836516068933395,0.2812872801785238,0.277639366926367,0.2747028259292703,0.2714595221384761,0.2678233438485804,0.268103265045861,0.2685470289029141,0.2684737814409549,0.2696178937558248,0.2712889168073495,0.2728292713332917,0.2728480046039089,0.2742400762903803,0.2751807851239669,0.2768797521824838,0.2822261671182534,0.287705031971087,0.2913714375688868,0.2960699085393461,0.3004162934078094,0.3041468898326255,0.308144353198222,0.3105735101812068,0.314521841794569,0.3190137649372258,0.3248,0.3232104121475054,0.3186646433990895,0.0,2.4764386559447376,50.307813347798266,138.07769060556564,181.6939586599286,fqhc1_100Compliance_implementation,75 -100000,95818,48928,466.46767830679,4793,48.77997870963702,3806,39.09495084430901,1403,14.193575319877269,77.38566316619061,79.70574589604297,63.36611244363343,65.08387443377083,77.20695057785488,79.53412882409592,63.29834218037038,65.02171087751519,0.1787125883357276,171.617071947054,0.0677702632630428,62.16355625564063,241.21328,169.5996849982058,251740.86288588785,177001.695099194,561.71941,379.3281960122177,585580.8094512513,395229.91758798726,498.89667,244.98066087452185,517005.677430128,252777.68992801625,2654.78284,1246.0484981041543,2725953.714333424,1255838.6148230864,872.34325,400.3808784531374,892621.6368532008,400211.50661519816,1362.15868,577.7239844047843,1378904.1307478764,566903.7952568841,0.38164,100000,0,1096424,11442.766494813084,0,0.0,0,0.0,49008,510.7912918240832,0,0.0,45066,466.6450979982884,1052154,0,37784,0,0,0,0,0,84,0.876662005051243,0,0.0,1,0.0104364524410862,0,0.0,0.04793,0.1255895608426789,0.2927185478823284,0.01403,0.3571859296482412,0.6428140703517587,23.301584010929297,4.097760334635953,0.3066211245401997,0.3005780346820809,0.1941671045717288,0.1986337362059905,11.823580136223766,6.514273836551206,14.87606958124962,11222.261065061532,43.52117262316675,13.9649857675631,13.247850375330568,8.135418430633319,8.172918049639765,0.5916973200210195,0.8146853146853147,0.7095115681233933,0.5548037889039242,0.1084656084656084,0.7736660929432013,0.9240506329113924,0.8988095238095238,0.7473118279569892,0.1204819277108433,0.5117246596066566,0.7373134328358208,0.6329723225030084,0.4900542495479204,0.1050847457627118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0045720426183307,0.0069013812911672,0.0090626460488082,0.0112290980104967,0.0134914978108135,0.0156662487641296,0.0178691703235024,0.0200623435024784,0.0220532552856177,0.0243187571096239,0.0263373978733013,0.0283356286871261,0.0304175073084366,0.03255444646098,0.0345621881810951,0.0367637928893671,0.0387972138148347,0.041006843127278,0.0432479681987991,0.0574876908954352,0.071974409098987,0.0852584797283132,0.0979238463478187,0.109896244799073,0.1248059313709958,0.1359437240444105,0.1457830685018866,0.1550850621300197,0.1644639605869123,0.1759094966179522,0.1868606673363794,0.1969649273254236,0.2060862067083619,0.2141421684365425,0.2230918899796586,0.2308009311339563,0.2388931314855577,0.2458320119603135,0.2519256702703938,0.2574730692406276,0.2629129339305711,0.2680486567481152,0.2728695132875485,0.277331364813515,0.2803734877671713,0.2835882286953595,0.2870280061306953,0.2905970784285916,0.2928191314631101,0.2888987304399173,0.2858984380356824,0.2841704910670428,0.2800541529244019,0.2771376951100316,0.2735640254605956,0.2698227280620057,0.270004419057595,0.2703624151921175,0.271244390626113,0.2726848742631147,0.2740874906485018,0.2744379788169297,0.2743285781260465,0.2747049349775246,0.2770000782044263,0.2778220300409649,0.2833495313038844,0.287556505589235,0.2916716169656647,0.2979678853306722,0.3049570668492862,0.3086196127420362,0.3115668828231036,0.3127864558974839,0.3164094710802214,0.3202007909948281,0.3228978526991772,0.3273322422258592,0.3247539742619227,0.0,2.4038627297307023,50.03491039085911,135.83697541726565,196.03498111405412,fqhc1_100Compliance_implementation,76 -100000,95769,48843,465.4115632407146,4708,48.021802462174605,3771,38.812141716004135,1422,14.45144044523802,77.37657405990127,79.72194876320458,63.3458979718325,65.07927735058632,77.19141330877696,79.54251596145,63.27410498207975,65.01241110389849,0.1851607511243145,179.43280175458654,0.0717929897527511,66.86624668783736,240.96204,169.4183445485435,251607.09624199895,176902.6628121245,562.06122,380.1957896936268,586313.5148116823,396413.6968054659,493.84364,242.96930721599347,513042.8844406854,251588.6830969821,2686.33464,1260.3530556098954,2764388.758366486,1275444.091835454,875.91427,401.15980772911695,899750.3054224227,404113.1124070074,1395.6615,606.8069862811998,1419528.6366151886,600249.0270621765,0.38062,100000,0,1095282,11436.686192818135,0,0.0,0,0.0,48949,510.5201056709373,0,0.0,44691,463.9810377053117,1048091,0,37624,0,0,0,0,0,95,0.9919702617757312,0,0.0,2,0.0208835844584364,0,0.0,0.04708,0.12369292207451,0.3020390824129141,0.01422,0.3611733550621308,0.6388266449378692,23.1580393778374,4.0977979222185,0.3009811721028905,0.279236276849642,0.2025987801644126,0.2171837708830549,11.169297139965956,5.82573978899226,15.329652977284155,11187.835004727867,43.08054653391461,12.93177721603952,12.748838022622026,8.462346533717476,8.937584761535595,0.5783611774065235,0.8129154795821463,0.6854625550660793,0.5759162303664922,0.1306471306471306,0.7465397923875432,0.9208791208791208,0.8647798742138365,0.7397959183673469,0.1283422459893048,0.5040152963671128,0.7307692307692307,0.6156670746634026,0.5193661971830986,0.1313291139240506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220297781829,0.0050684750985818,0.0072850504271596,0.0096001462879434,0.0115429989423155,0.0136862150079938,0.0159680231668892,0.0183362600563564,0.0206503848945501,0.0225609319179863,0.0248749590029517,0.0270991582837199,0.029453491241056,0.0314826829795779,0.0337342934367714,0.0356079712242113,0.037504141815772,0.0395228215767634,0.041708250166334,0.0437503905355022,0.0585220749399853,0.0728291902406375,0.0860248870438511,0.0991855393831117,0.1116157996796222,0.1264336226123907,0.1365564037319762,0.1465781409601634,0.155649295173003,0.1642575276657802,0.1758573151818025,0.1863753908743683,0.1972932690738585,0.2054118522408963,0.213805251279793,0.222254242360426,0.2306799021852004,0.2382147398746356,0.2449760005446684,0.2512480534945497,0.256057924748719,0.2610245978301533,0.2659076399233879,0.2701622074579518,0.2743034055727554,0.2778277310406838,0.2810735169173872,0.2850704582963057,0.2883462532299741,0.2907287646694677,0.2875386061501275,0.2847947517944635,0.2812245471141693,0.2783181313851784,0.2756680731364275,0.2723984800622625,0.2679641662986562,0.267605863990717,0.2673018033344675,0.2673768308921438,0.2689000391710656,0.268558179746139,0.270190345287184,0.271054964539007,0.273865750679834,0.2749631468694235,0.2763897123175517,0.2809955875955503,0.286275191104934,0.2897684839432412,0.2928677764244147,0.2960917363631581,0.2978855721393035,0.3015336039693279,0.3067950379559341,0.3124926960383312,0.315140580363855,0.318217665615142,0.3204168893639765,0.3157503714710252,0.0,2.154978628830704,50.286600894612775,133.42921935449053,193.19631092733792,fqhc1_100Compliance_implementation,77 -100000,95755,48727,465.625815884288,4672,47.60064748577098,3767,38.7969296642473,1419,14.422223382590987,77.3313489084019,79.6982518771154,63.31030609897547,65.06337185135017,77.14994148595018,79.52202937151947,63.24160981012241,64.99957042099628,0.181407422451727,176.22250559593056,0.0686962888530544,63.80143035389096,240.31766,169.21892104731972,250970.9362435382,176720.2559107301,558.3364,376.53483232628383,582503.4201869353,392642.2456543092,500.91682,245.41904597726747,520301.8850190591,254118.4820691381,2657.83308,1249.2298099458744,2735880.841731502,1264831.5283231935,875.19675,399.2343253670968,901141.1310114354,404123.1506740624,1377.46592,586.0040233040385,1401310.1352409795,578700.2699817817,0.37955,100000,0,1092353,11407.769829251736,0,0.0,0,0.0,48744,508.4538666388178,0,0.0,45254,469.7509268445512,1051287,0,37650,0,0,0,0,0,79,0.8250221920526344,0,0.0,0,0.0,0,0.0,0.04672,0.1230931366091424,0.3037243150684932,0.01419,0.3726695349313665,0.6273304650686334,22.96541687318632,4.047957530395317,0.3089992036103,0.2837801964427927,0.2057340058401911,0.2014865941067162,11.235878224991929,6.179102496960097,15.073059638617575,11176.81419768411,43.338161782074586,13.213197341968614,13.180004872373717,8.670490924561667,8.274468643170595,0.6044597823201486,0.8063610851262862,0.7285223367697594,0.6038709677419355,0.1304347826086956,0.794351279788173,0.9344978165938864,0.9177215189873418,0.8087431693989071,0.1931818181818181,0.5227790432801822,0.7103109656301145,0.6580188679245284,0.5405405405405406,0.111492281303602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.0044921261040185,0.0067495559502664,0.0088701483438325,0.0110582107469124,0.0134839241885712,0.0157436958937912,0.0177665233772731,0.0199858850965029,0.0222258639408402,0.0242964391204463,0.0263317408948476,0.0283106244597209,0.0302796071277659,0.0323189991535746,0.0342998366182036,0.0362327845086465,0.0384679243716663,0.0404474058981902,0.0423810019789605,0.0569132000626337,0.0708022017119775,0.0835361503923461,0.0965180721624549,0.1080895843438284,0.1239621344333386,0.1351982341455132,0.1444458647577655,0.1536702150399726,0.1626264902509953,0.173866649421199,0.1842943164096343,0.1953840291764193,0.2051405552149925,0.2145695947508064,0.2228848882582476,0.2314701087563366,0.2391301901020856,0.2464118361187696,0.2527405812208616,0.2586139072081453,0.2630716467875411,0.2687003909489397,0.2718107514492492,0.277093491239376,0.2800497953951585,0.2839453672203322,0.2863084260731319,0.2888376551045256,0.2915534927876375,0.2879479002677646,0.2853140706968057,0.2820552448927979,0.2786143493234578,0.2758294119387967,0.2719910937595315,0.2681259842519685,0.2690303931015335,0.2698750106283479,0.2702683515547352,0.2719654363290998,0.2724272073558882,0.2732796470857523,0.2741025413186422,0.2752227823303151,0.2752808988764045,0.2780177890724269,0.2823154739602847,0.2869133384626145,0.2919205507636306,0.294445198967812,0.298973954222573,0.3011477045908183,0.3041644702161307,0.3057095343680709,0.3072477170269333,0.312156746326258,0.3165565487757482,0.3180729305296779,0.3159851301115242,0.0,1.9787126819652807,49.43038684799385,140.61438829675592,191.41669378296916,fqhc1_100Compliance_implementation,78 -100000,95517,48639,465.351717495315,4629,47.56221405613661,3657,37.98276746547735,1396,14.43722059947444,77.22623088476638,79.71363295852505,63.24095407219974,65.07633348254772,77.05232087417762,79.53823295392532,63.17531978299299,65.01168279201659,0.1739100105887558,175.40000459973726,0.0656342892067485,64.65069053113837,239.29972,168.25247872091114,250531.0258906792,176149.24957956295,554.70427,375.3166918283948,580456.6935728719,392649.7291878877,494.33873,242.57512765728472,515523.896269774,252448.50928537015,2582.64099,1207.4008692764926,2683822.942512851,1244037.228217482,838.65317,382.0484129102052,871266.2039218149,393231.13467781054,1355.08782,574.8314499907463,1401638.4517939216,585894.6997620929,0.37879,100000,0,1087726,11387.77390412178,0,0.0,0,0.0,48397,506.38106305683806,0,0.0,44549,464.47229289027086,1052866,0,37823,0,0,0,0,0,89,0.9213019671890867,0,0.0,0,0.0,0,0.0,0.04629,0.1222049156524723,0.3015770144739684,0.01396,0.3607305936073059,0.639269406392694,23.148708269943736,3.9724842174762713,0.2964178288214383,0.2953240360951599,0.2009844134536505,0.2072737216297511,11.489037205574087,6.281201257106721,14.928541756119024,11146.885434314649,41.92662876483286,13.191332909700614,12.28313140920188,8.166536359038597,8.285628086891766,0.5810773858353842,0.7953703703703704,0.690959409594096,0.5768707482993197,0.1226912928759894,0.7508928571428571,0.9123931623931624,0.8410596026490066,0.7210526315789474,0.14375,0.5061095782420181,0.7058823529411765,0.6329923273657289,0.5266055045871559,0.1170568561872909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002482646805,0.0046456429346668,0.0068938209434077,0.0091306558210472,0.0111581690829125,0.0134943688528767,0.0158879172236451,0.0183005333823799,0.0205530604519831,0.0225610130939939,0.024388241090491,0.02619782027555,0.0283375379704474,0.0304880564379718,0.0324947047579686,0.0348287036557714,0.0369075651172681,0.039032452547764,0.0409326262931438,0.0428626619749193,0.0569308226132283,0.0699657986948949,0.083261477633599,0.0957243879562005,0.1080467057642521,0.1233678141427844,0.1340151386290185,0.1438523497092868,0.1532283110401919,0.1621453138435081,0.1735239185118809,0.1846794572844701,0.1948759880076315,0.204338437592485,0.2123883066740209,0.2206619190987768,0.2284084554300413,0.2356494787264018,0.2430468696700247,0.2494751454105338,0.2550224314016438,0.2611085715625256,0.2666129013129025,0.271565341693995,0.2751391714275273,0.2790996625588668,0.2833218253719164,0.2862212916980506,0.28972921047849,0.2933826931975937,0.2900453343407631,0.2873272016302252,0.2835686307661961,0.2798874215198095,0.2767038616406401,0.2725072752335732,0.2686649882032524,0.2690122808169699,0.2696185658623282,0.2705659771181751,0.2706938470170189,0.2716246598035735,0.2731961992273154,0.2742822780017372,0.275767347426251,0.2775419341478567,0.2772089602896255,0.2808375198926576,0.2842361957847065,0.2882510433892432,0.2928991406603347,0.2950276243093923,0.298799825881475,0.3035086406822772,0.3056140672222731,0.3077366539836274,0.3133182844243792,0.3171566653242046,0.3223791417707767,0.3296910324039186,0.0,1.202679844593441,49.57957843318115,131.9876690381196,186.4419447864433,fqhc1_100Compliance_implementation,79 -100000,95701,48901,466.7662824839866,4776,48.6410800305117,3747,38.473997136916026,1391,14.14823251585668,77.36399481233721,79.74803472818883,63.33329461681414,65.09699768224368,77.18523579636948,79.57427582288406,63.26525147469039,65.03318213774148,0.1787590159677279,173.75890530476568,0.0680431421237557,63.81554450220506,240.60696,169.21065169840156,251415.0740326642,176811.5807675381,562.27097,380.7532623499789,586849.6567433986,397178.8825483593,503.31354,248.45137318621747,521272.5154387101,256053.2621114,2590.13885,1224.8790579314557,2662471.896845383,1235997.8845831524,845.16573,387.8608691792275,866331.9296559076,388533.7760011968,1335.3004,572.3083171545198,1359349.599272735,567965.059878021,0.37993,100000,0,1093668,11427.957910575647,0,0.0,0,0.0,49096,512.303946667224,0,0.0,45418,469.9532920241168,1049007,0,37641,0,0,0,0,0,92,0.9613274678425512,0,0.0,3,0.0313476348209527,0,0.0,0.04776,0.1257073671465796,0.2912479061976549,0.01391,0.356421647819063,0.643578352180937,23.115604836008213,3.956078422023002,0.2997064318121163,0.3013077128369362,0.2169735788630904,0.1820122764878569,11.414544428467238,6.455888725102213,14.95896814788254,11223.818291207755,43.14993298050972,13.874803575023432,12.938362044684386,8.83608745619395,7.500679904607946,0.5986122231118228,0.8024800708591674,0.709706144256456,0.5473554735547356,0.1392961876832844,0.759493670886076,0.9030303030303032,0.8430232558139535,0.7112299465240641,0.1886792452830188,0.524199843871975,0.7239747634069401,0.6508344030808729,0.4984025559105431,0.124282982791587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0045230054661433,0.0067814504994721,0.0090960830944976,0.0109587089684364,0.0132852456344112,0.0155555102207352,0.0177907594264471,0.0199850674521595,0.0221587360099939,0.0242119080337182,0.0264149780731033,0.0284923728900729,0.0306958340632051,0.0329535368547072,0.0349576599770464,0.0372188901664646,0.0391001162211522,0.041287264562804,0.0434556119312794,0.0572189441804605,0.0713104458865396,0.0849008109270585,0.0978074557021925,0.1108604915890214,0.1259250644902101,0.1358985505709711,0.1457398149133071,0.1548520008966408,0.1637785993677329,0.1748211115295636,0.1854896277228579,0.1947615630504273,0.2042358240941197,0.2134796858846044,0.2227363294221828,0.2313611777170579,0.2396447042950303,0.2466393656483613,0.2522580275885753,0.2584669819502099,0.2638106370543542,0.2690660419772367,0.2727871680302831,0.2772760378732702,0.2807866011986069,0.284666241735718,0.2871743436087552,0.2901384440541378,0.2927371509004565,0.2893818611267681,0.2869581910677801,0.2832124163287071,0.2791789025162665,0.2775239193765434,0.2734688907829051,0.2695857243927364,0.2699358536029436,0.2714457565951102,0.2728432919155573,0.2731520262094897,0.2751305098716489,0.2746912296752193,0.2759639959995555,0.2773273559710034,0.2781405472636816,0.2785236800362565,0.2830482599619902,0.2861519181229548,0.2908241391495543,0.296299626815341,0.3002198262325971,0.3036805988771054,0.307058645707376,0.3131955484896661,0.315522528898325,0.321510472404831,0.3209349593495935,0.3246824958586416,0.3227676845767298,0.0,2.576179193607316,51.07185040910852,133.3859588212789,188.72832406082037,fqhc1_100Compliance_implementation,80 -100000,95657,48687,465.05744482892,4622,47.043081008185496,3679,37.74945900456841,1402,14.21746448247384,77.31725194233033,79.72616213750749,63.30264576078415,65.0852806261203,77.1402195879359,79.55427831001833,63.23415531264168,65.02152964158765,0.1770323543944272,171.88382748915387,0.0684904481424695,63.75098453264627,241.2905,169.81975169402543,252245.52306679072,177529.87412737744,563.51544,381.0120168887946,588421.4223736894,397632.01531387627,499.83169,246.25393306549432,517694.3663296988,253718.6705532041,2587.14872,1233.1561900581744,2656279.7495217286,1240813.5212876988,847.33791,391.2539284831253,865804.9384781041,389016.086207099,1360.62692,589.2219843478015,1381182.0985395736,580888.7947163968,0.38058,100000,0,1096775,11465.705593945033,0,0.0,0,0.0,49186,513.4700021953438,0,0.0,45196,467.77548950939297,1043221,0,37446,0,0,0,0,0,84,0.857229476149158,0,0.0,1,0.0104540180018189,0,0.0,0.04622,0.1214462136738662,0.303331890956296,0.01402,0.3500103369857349,0.6499896630142651,22.908979690917352,3.9888447355847023,0.3153030714868171,0.2835009513454743,0.2005979885838543,0.2005979885838543,11.262163096640514,6.26025926352061,15.015948249451512,11201.961880288523,42.36273834048122,12.897004184019638,13.163200885752913,8.185144829084773,8.1173884416239,0.5971731448763251,0.822627037392138,0.7,0.5867208672086721,0.1273712737127371,0.7600671140939598,0.9384288747346072,0.8783382789317508,0.6896551724137931,0.154696132596685,0.5190993164455167,0.7272727272727273,0.6269744835965978,0.5476635514018692,0.118491921005386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026036653935384,0.0050398012472747,0.0071546728640003,0.0095316485280817,0.0117820623696393,0.0138840786390954,0.0158631383510497,0.0181636155606407,0.0203801845675349,0.022436915385167,0.0245511439417256,0.0270045315823545,0.0290493592053116,0.0311259575433278,0.0331009553317841,0.0352187723091885,0.0373595389144586,0.0391609117815047,0.041221882348045,0.0431673425137341,0.0580184095871947,0.0717539505513493,0.0851791975477125,0.0975948488100498,0.1094795029221258,0.1253016128349489,0.1357441569193538,0.1467718917076703,0.1561120552366905,0.1648820891358925,0.1764895989313454,0.1868579161028416,0.1972532973490619,0.2054374712693999,0.2142691939160985,0.2231099980052749,0.231484167540669,0.2394817638921691,0.2461069083237872,0.2524267399267399,0.257327935222672,0.262334564841229,0.2675707979787221,0.2714931042333177,0.2759496131093376,0.2802859431811179,0.2826581930092326,0.2861191601850439,0.2887567078295726,0.2921225526984503,0.2879726008998724,0.2838992934074226,0.2811341942728804,0.2778777884989271,0.2757362754693478,0.2708546786353279,0.2668866122590727,0.2679734284498838,0.2688881332879972,0.2688244589244181,0.2700158449063286,0.2717194748014781,0.2725053211468636,0.2712807388449983,0.2723807240469911,0.2745627238283075,0.2760172033274857,0.2811701663655056,0.2856695434298441,0.2905495715071939,0.2948138778460426,0.2984430885756364,0.3012040676274253,0.3026782346284421,0.3068709377901578,0.3091944670463791,0.313971031985516,0.3166799363057325,0.318506751389992,0.3188352377441946,0.0,2.78618926970918,51.24064847013473,129.69169841397297,180.9204479981806,fqhc1_100Compliance_implementation,81 -100000,95851,48953,466.9956494976578,4635,47.22955420392067,3702,37.98604083421143,1383,14.094792959906522,77.4717338221379,79.75767530030265,63.40399372213196,65.09039363200986,77.29416793242908,79.58258423428741,63.33731781745974,65.0267837321409,0.1775658897088305,175.09106601524138,0.0666759046722162,63.6098998689647,243.0516,170.93757831514566,253572.31536447196,178336.77094150888,560.08957,378.7367129770389,583697.8435279757,394494.9588184149,509.32518,250.51257392509217,526187.3950193529,257446.65204423552,2583.70156,1219.9230291391673,2657310.899208146,1234499.941721178,827.21128,383.8220823823534,848412.3378994481,385830.6250141922,1335.32726,570.7216987088221,1363158.6524918885,570145.7498562355,0.38092,100000,0,1104780,11526.014334748725,0,0.0,0,0.0,48876,509.2591626587099,0,0.0,45905,473.8709037986041,1041323,0,37346,0,0,0,0,0,91,0.9389573400381844,0,0.0,2,0.0208657186675152,0,0.0,0.04635,0.1216790927228814,0.2983818770226537,0.01383,0.3706788837984173,0.6293211162015827,22.55130438765132,4.037897585715867,0.3065910318746623,0.2928146947595894,0.2096164235548352,0.190977849810913,11.518559090185578,6.411474892863293,14.70722350490516,11214.8541212435,42.49671379059599,13.367679941352206,12.863367426903274,8.598079964225912,7.667586458114597,0.5975148568341437,0.8145756457564576,0.707488986784141,0.5786082474226805,0.1089108910891089,0.7899382171226832,0.9232409381663113,0.8928571428571429,0.7258064516129032,0.1901408450704225,0.5126508369015181,0.7317073170731707,0.6295369211514393,0.5322033898305085,0.0884955752212389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020548638526166,0.0043865425332536,0.0066316493946338,0.0086885911490052,0.0110966588082269,0.0136538911554936,0.0159828049873685,0.0179622395169269,0.0200561654327291,0.0222635836495096,0.0245396259653003,0.0266550433311112,0.0291029750164365,0.0310837646235685,0.0330481393670755,0.0348929666766488,0.0369485389190587,0.0388334421540279,0.0409203708895326,0.0429258241758241,0.0574619162313491,0.0712396642380021,0.0846729402888101,0.0972524297346992,0.1095149764971227,0.125412297023004,0.1353861814480213,0.1458160464670964,0.1553308921651311,0.1643125066981031,0.1755939571317896,0.1878903801681471,0.1988187907804883,0.2077284139286104,0.2155728074317276,0.2250538763330938,0.2339165005512433,0.2411490020878701,0.2491649966599866,0.2546435470412747,0.2588933262540686,0.2638219962449417,0.2682702294400906,0.273091265477841,0.2763331757403838,0.2796906126263496,0.2838903726630556,0.2867488521928823,0.289864237043155,0.2924184879029609,0.2894563890714487,0.2853741310416552,0.2815096031267949,0.2785435331954973,0.2760422817999291,0.2721921392066196,0.2678936283909093,0.2679418042001336,0.2678480669535459,0.2690402914853727,0.2698285947742762,0.2699978470631984,0.2703532388873908,0.2712531799579692,0.2718591890543718,0.2728841053634421,0.2732047069396467,0.2779256965944272,0.2812037833190026,0.2869094871196202,0.2881658123467795,0.2916884201733319,0.2952357289272626,0.2983183771962899,0.3012082045518404,0.3045990566037735,0.3100495718792249,0.3113879003558719,0.3157613058603157,0.3189910979228487,0.0,2.514705738863744,48.59657896943288,139.97239194259993,181.44463212863832,fqhc1_100Compliance_implementation,82 -100000,95745,48524,462.6455689592146,4713,48.05472870645986,3805,39.19786934043553,1440,14.653506710533186,77.34438518034166,79.69690832288038,63.33412346583962,65.0721461212217,77.15989644003929,79.51662623825843,63.26437141002139,65.00625271050593,0.1844887403023705,180.2820846219504,0.0697520558182276,65.89341071577337,240.02748,168.85224731882712,250693.3834664996,176355.1282868964,560.98991,379.1970661299437,585377.0431876339,395507.36046974425,497.94073,244.7565222298283,516958.6296934566,253184.15890356965,2645.63682,1250.748037003436,2725883.346388845,1269164.4617736137,862.78468,396.00698287625016,885228.8996814454,397790.89170554624,1385.47688,590.6044981378963,1411421.9854822706,587491.4773265184,0.37933,100000,0,1091034,11395.153793931797,0,0.0,0,0.0,48945,510.61674238863645,0,0.0,45063,467.5231082563058,1052268,0,37776,0,0,0,0,0,81,0.8459971800093999,0,0.0,1,0.0104444096297456,0,0.0,0.04713,0.1242453800121266,0.305537873965627,0.0144,0.3649501323020557,0.6350498676979442,22.92428102122046,3.986390123125796,0.3256241787122207,0.2867279894875164,0.1978975032851511,0.1897503285151117,11.812343041366274,6.833437443661669,15.375978405296054,11184.960531993824,43.73032808447376,13.32420622197971,14.075886504633283,8.358663091479352,7.971572266381426,0.6010512483574244,0.7772685609532539,0.7304277643260694,0.6082337317397079,0.1052631578947368,0.7706422018348624,0.8934426229508197,0.8735955056179775,0.8040201005025126,0.1089743589743589,0.5230237912509593,0.6832504145936982,0.6727066817667045,0.5379061371841155,0.1042402826855123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728293018921,0.0049881885373049,0.0072240992704877,0.0092928308095426,0.0113772698619273,0.0135595980983987,0.0158272354823586,0.0178682585846216,0.0200774488867999,0.0222142637879873,0.0241515698008033,0.0264700146770535,0.0288713640896986,0.0309262425078783,0.0332064494166434,0.0354245677851378,0.0377393644550253,0.0396772721616128,0.0415198661387044,0.0432373313889901,0.0574497849417463,0.0710675303745408,0.0838367946297461,0.096919727833924,0.1088462633527011,0.124397259115134,0.1345431789737171,0.1443512863617985,0.1530270016235153,0.1617544574412196,0.1743511351770316,0.1847200588438906,0.1958793150312585,0.2046080531631181,0.2136981480666872,0.2227769352535506,0.2311133921697702,0.2393379583300538,0.2466684057116285,0.2524206285622725,0.2590768234586744,0.2639936389892541,0.2683050867503223,0.2716311291695132,0.2762986973570795,0.2798195666642017,0.2831322285084864,0.2855306366621694,0.2892835874996763,0.290982471412179,0.2884499011605234,0.2859124939899718,0.2825860711071107,0.279772038666859,0.2766014274479545,0.2718771999632702,0.267814473122023,0.2673755611626306,0.2677974769860211,0.2677204599665349,0.2689852150537634,0.2701282858492051,0.2721850299276314,0.2727394179599652,0.2748353096179183,0.2767121157136191,0.276819842011382,0.2813330415481289,0.284313725490196,0.2893541378629271,0.2934345488229181,0.2978959025470653,0.3042719052073589,0.3068394636302344,0.3095745666882936,0.3128426455149889,0.3154626684840224,0.3220890062995326,0.3257534246575342,0.3235068912710566,0.0,2.025732122419874,52.2939781596545,136.45633270703655,189.88005148577489,fqhc1_100Compliance_implementation,83 -100000,95680,48567,464.26630434782606,4668,47.69021739130434,3710,38.283862876254176,1392,14.255852842809364,77.28108161739658,79.6711401973681,63.29287913429015,65.05686238159282,77.10154770141948,79.49193829944002,63.22515235731612,64.9914755522398,0.1795339159771032,179.20189792808117,0.0677267769740339,65.38682935301665,239.59958,168.62099056081183,250417.39130434784,176234.09653303918,561.90687,379.5196580393461,586750.4285117056,396129.4870382275,496.15812,243.27990221245892,515549.4983277592,252014.4392036863,2607.23887,1219.4118757861493,2689668.823160535,1239299.938444469,836.81479,383.5589076089883,860302.7696488295,386688.3934684421,1353.2101,575.7400011053505,1386068.4155518394,576403.6160150522,0.37827,100000,0,1089089,11382.608695652174,0,0.0,0,0.0,49004,511.6220735785953,0,0.0,44675,463.99456521739125,1050444,0,37704,0,0,0,0,0,99,1.0346989966555182,0,0.0,0,0.0,0,0.0,0.04668,0.123403917836466,0.2982005141388175,0.01392,0.3611111111111111,0.6388888888888888,23.38129265010601,4.0574207660025365,0.3075471698113207,0.2830188679245283,0.206199460916442,0.2032345013477089,11.2775311825556,6.141411937495715,14.832717521199765,11177.499604039896,42.50294275008631,12.780438021421729,12.940936334766931,8.497510628392591,8.284057765505061,0.5827493261455525,0.8,0.7002629272567923,0.5647058823529412,0.1206896551724138,0.7481617647058824,0.9253393665158371,0.8595890410958904,0.6701570680628273,0.1595092024539877,0.5141113653699466,0.7088815789473685,0.6454652532391049,0.5296167247386759,0.1099830795262267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008509345084,0.0046736078021877,0.0067284370338045,0.008899635277504,0.0111059129833411,0.013329395951285,0.0154373228378571,0.0177543186180422,0.0199539994888832,0.0220575440894993,0.024033384257313,0.0260893671197995,0.0283628136569313,0.0307039235080778,0.0328093876750642,0.0348129077618205,0.0367934202757434,0.0388275955121485,0.0405787754592547,0.0425148265115745,0.0568864465037558,0.0709087672638555,0.0841188201952346,0.0967762299566516,0.1083176840461671,0.1238733020185349,0.134779931633368,0.1442920137187653,0.1544136515268155,0.1630481467164884,0.1740959242442218,0.1852730819245773,0.1951623267008636,0.2047828657775441,0.2130313112839609,0.221261117395258,0.2294402288702882,0.2376876555584336,0.2451835696110505,0.2520317747796284,0.2578661509420852,0.2628157830013,0.2686048854491366,0.2724872487248725,0.2756315188057669,0.2798348329840996,0.2835630327838071,0.2870184105319447,0.29045465735498,0.2932878991996196,0.2897070317764062,0.2862198110869385,0.2819988145973864,0.2781523060008101,0.2752592504426227,0.2721758443746649,0.2693317724482693,0.2692610708072087,0.2698231115967764,0.2700771547192673,0.2709787265889573,0.2719112675220941,0.2723747642003772,0.2732558139534883,0.2749753670904328,0.2762228684183196,0.2774717474018968,0.2838028389684454,0.2881095966814236,0.2922786155845178,0.2955520433506435,0.2999894703590607,0.3074569073195103,0.3106475575898552,0.3130684982364952,0.3184602936076754,0.3189603365384615,0.316600790513834,0.3177470775770457,0.3211182470721571,0.0,1.8554103840664948,47.39944637908092,139.20466618686905,191.11534133093204,fqhc1_100Compliance_implementation,84 -100000,95730,48700,465.7787527420871,4675,47.67575472683589,3738,38.50412618823775,1396,14.16483860858665,77.3612597271838,79.72683321571179,63.34108899169471,65.08902861499821,77.17847448402156,79.54909653591466,63.2704113768181,65.02311010050147,0.1827852431622432,177.73667979713537,0.0706776148766081,65.9185144967438,241.40864,169.83032216748285,252176.57996448345,177405.5386686335,560.62376,379.2464034870566,585012.4725791288,395545.398626736,498.16881,244.5063868725886,517657.7875274209,253250.83956692324,2639.33346,1234.7532659657202,2716968.400710331,1249806.14139815,871.11486,394.0865591106504,895554.3403321843,397277.7116918574,1358.74974,588.4119120511123,1380160.3259166407,579900.3300377966,0.37922,100000,0,1097312,11462.571816567428,0,0.0,0,0.0,48936,510.6131829102685,0,0.0,44925,466.5099759740938,1046755,0,37562,0,0,0,0,0,106,1.096834848010028,0,0.0,0,0.0,0,0.0,0.04675,0.1232793629028004,0.2986096256684492,0.01396,0.3680627192077573,0.6319372807922427,22.690459363840432,4.055937906840049,0.3047084002140182,0.2867843766720171,0.2017121455323702,0.2067950775815944,11.101545326118996,5.868924698863768,14.996338760462775,11172.982941124244,42.96499369515304,13.269862312309336,12.913153015234377,8.435267009938483,8.34671135767084,0.5906902086677368,0.8236940298507462,0.6988586479367866,0.5848806366047745,0.1138421733505821,0.753315649867374,0.9190371991247264,0.8463949843260188,0.700507614213198,0.1518987341772152,0.520138089758343,0.7528455284552845,0.6414634146341464,0.5439856373429084,0.1040650406504065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0043190850839484,0.0064135089606462,0.0083713464254147,0.0102817044645581,0.0125659355206614,0.0149899047580201,0.0174299280134783,0.0198247569192389,0.0217956592956592,0.0237970738109152,0.0259230729728341,0.0280466106488671,0.0300704631613647,0.0321961488452727,0.034043565011527,0.0360793248071247,0.0383441949275663,0.0402524748357041,0.0420934182147806,0.0563102335731364,0.069898888400427,0.0836996087234734,0.0969916194361783,0.1090217242360679,0.1245559878213802,0.1354246203444472,0.1453775432025198,0.1552142193358185,0.1632219887654903,0.1747472463580865,0.1865778200856735,0.1961688156378422,0.2051988369296692,0.2131839620048593,0.2219185055664992,0.2298600657858058,0.236990842182145,0.244428827276643,0.2512874505046806,0.2575916956617231,0.2619097684633537,0.2668904940358675,0.2713239517518667,0.2758386658910219,0.2797792445640817,0.2826361060135076,0.2859646004215445,0.2897904303869474,0.292042279508672,0.2891907871751458,0.285441848340582,0.2828227494276122,0.2803321942990613,0.2773783226839429,0.2732009167303285,0.2693751972230988,0.2698477588998086,0.2698696043929889,0.2700492453199168,0.2709063782170832,0.2722579119536515,0.2732906294990297,0.2743972956142692,0.2759190120620333,0.2780333151425379,0.2795032820891705,0.2849705181282148,0.2907127127826908,0.2942268937448137,0.299233198015336,0.3035854488353834,0.3077209071756103,0.3113207547169811,0.3178673554100175,0.3209459459459459,0.3278811524609843,0.3333333333333333,0.3348991434097817,0.3303185214313802,0.0,2.066704830615819,49.11581317629853,140.8269302853243,186.76357104095823,fqhc1_100Compliance_implementation,85 -100000,95643,48619,465.4078186589714,4658,47.41591125330657,3692,37.93272900264525,1384,14.03134573361354,77.2430810454354,79.64935101091763,63.27207635196621,65.05091429442186,77.0647751200474,79.47571139518273,63.204501316364485,64.98783479396279,0.1783059253880026,173.63961573489917,0.0675750356017275,63.07950045906807,239.54348,168.44617771046032,250455.6109699612,176119.50999659355,557.89386,376.7240692466325,582612.5801156383,393193.1815811885,487.07467,238.60087267297163,505349.1525778154,246482.16849542176,2563.57142,1196.0821880236597,2633810.702299175,1204394.633108386,823.59547,377.4082231179113,841718.9653189465,375679.1726749203,1335.3272,569.2027247460279,1354510.544420397,559510.6927929731,0.38151,100000,0,1088834,11384.345953180054,0,0.0,0,0.0,48712,508.6101439728992,0,0.0,43978,455.9455475047834,1053758,0,37836,0,0,0,0,0,103,1.0560103719038507,0,0.0,1,0.0104555482366717,0,0.0,0.04658,0.1220937852218814,0.2971232288535852,0.01384,0.3718717683557394,0.6281282316442606,23.20105597254208,3.9550374613074473,0.323943661971831,0.2919826652221018,0.1958288190682557,0.1882448537378115,11.225370220517169,6.185467182529242,14.7916243275702,11223.51405628713,42.31966477695036,13.261597793004013,13.447102535214407,7.977899658220002,7.633064790511941,0.594257854821235,0.7968460111317254,0.6998327759197325,0.5795297372060858,0.1136690647482014,0.7518518518518519,0.9045454545454544,0.8135048231511254,0.7458563535911602,0.1756756756756756,0.5290964777947933,0.7225705329153606,0.6598870056497175,0.5239852398523985,0.0968921389396709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023613588454678,0.0045645426328281,0.0068830390952559,0.0091648970219165,0.0114633873445017,0.0136870512755231,0.0159469793525363,0.017930076784839,0.0199402814136125,0.0221189096196776,0.0239665268533806,0.0260944576234634,0.0280134513929596,0.0297620274029051,0.0320180010941031,0.0340402651252727,0.0360491013622002,0.0379154298050775,0.0399101319936343,0.0419820270636558,0.0561564103367921,0.0701498947280212,0.0833945782500052,0.0964495858025536,0.1088214180144419,0.1247538588579051,0.1342065844408324,0.1439339019189765,0.1529942970864852,0.1622382128665019,0.1743272695884853,0.1853212799167533,0.1960837698615815,0.2050698056392006,0.2138913683096961,0.2231539715816445,0.231809696278659,0.2404458419267223,0.2473063284233497,0.2535710191447896,0.259529602595296,0.2649200440167638,0.2695112710740671,0.2738826011893343,0.2776818712312779,0.2812349668808822,0.2849664362288348,0.2881578277039074,0.2916056264989952,0.2943375292237382,0.2909553557003608,0.2877573190687696,0.2845873188048516,0.2812504516483358,0.2789646611064032,0.2756233535502052,0.2720563781772112,0.27157472944345,0.2709610229969439,0.2724400171379605,0.2730852160869972,0.2740186767964546,0.2749476768522394,0.2764018848120771,0.2773153589675933,0.2774057378117101,0.2788840075312375,0.2832930542041995,0.2880779612297122,0.2921902338158104,0.296583850931677,0.2991289568727427,0.3025976476507956,0.3071840826245443,0.3097053563023628,0.3173088252621656,0.3196923076923077,0.3241869918699187,0.3327846364883401,0.3362595419847328,0.0,2.527643617744142,46.427776506372346,136.6879781870608,193.16097569267507,fqhc1_100Compliance_implementation,86 -100000,95824,49249,470.1849223576557,4558,46.36625480046752,3615,37.21405910836534,1390,14.150943396226417,77.44904619750217,79.77700121871554,63.38601454967061,65.10759347244475,77.27256036503255,79.6014606311592,63.319145831692005,65.04301488786618,0.1764858324696234,175.54058755634117,0.0668687179786076,64.57858457856958,239.62576,168.5981803212982,250068.62581399232,175945.67156588976,559.66868,378.88617850749,583577.92411087,394916.93991848617,503.11954,247.49383953543608,521735.0037568876,255724.27058180253,2508.14784,1185.45949952286,2583140.058857906,1202809.0974316036,816.44132,375.3200191103021,837882.6598764402,377537.33836022415,1342.66436,571.5563695623466,1368340.040073468,571157.1192648339,0.38201,100000,0,1089208,11366.755718817833,0,0.0,0,0.0,48744,508.1607947904492,0,0.0,45415,470.6336617131408,1058872,0,37888,0,0,0,0,0,84,0.8766071130405744,0,0.0,1,0.0104357989647687,0,0.0,0.04558,0.1193162482657522,0.3049583150504607,0.0139,0.3753430441207515,0.6246569558792485,23.077199411771332,3.986499922420359,0.3131396957123098,0.2874135546334716,0.2063623789764868,0.1930843706777316,11.49346710870195,6.4652317706877644,14.685291296449895,11279.65079192554,41.536761124091335,12.775827771739902,12.850514541714928,8.31690551690911,7.593513293727398,0.5939142461964039,0.8007699711260827,0.7111307420494699,0.5884718498659517,0.1017191977077364,0.7567811934900542,0.9190371991247264,0.8198757763975155,0.7745664739884393,0.1233766233766233,0.5221203666799522,0.7079037800687286,0.6679012345679012,0.5322862129144852,0.0955882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021874968352186,0.0046526714849016,0.0066563169056243,0.0090815818612163,0.0112165309090169,0.0134707217985399,0.015425710877522,0.0175241633411241,0.0199386816555953,0.0221321791447954,0.0243070143977045,0.0263752052545156,0.0284231085526315,0.0308050284678822,0.0327251724955909,0.0351575010589608,0.0371148531862263,0.0390190792202405,0.0409770491121985,0.0429536629293023,0.0579472789293053,0.0719640336661613,0.085688832992716,0.0991584454880701,0.1113253672209226,0.1270713561041596,0.1376053426617904,0.1477322273621523,0.1569508161741171,0.1654458223564437,0.1768204157570413,0.1871002592912705,0.1976635615486504,0.2065082171151705,0.2144707664610183,0.2243553610309802,0.2336172818885362,0.2412891497312401,0.2486986239362665,0.2544055001655988,0.2598823122187608,0.2648180323472136,0.270289393617774,0.2744950490319036,0.2778564769411451,0.2819231241557166,0.2861717903026829,0.2902069559490336,0.292928772137867,0.2945494176503801,0.2910381781647689,0.2882019549325083,0.2847696036538381,0.2815998620313016,0.2784296361892111,0.274172950620287,0.2699623352165725,0.2695512090343997,0.2701546060421529,0.2700629286572863,0.2708576943779349,0.2726045883940621,0.2740419528186402,0.2748182946286119,0.2751804129849715,0.2763076606260296,0.2758193490257912,0.2806467630811247,0.2868858155535478,0.290872067979794,0.295529242267345,0.3010204081632653,0.3026956196181206,0.3055618273500414,0.3077568525079246,0.3138148667601683,0.314946350309808,0.3162444712505026,0.3153887982599239,0.3130402104472003,0.0,2.0315259303894013,47.93311505051024,134.73694058658,180.37202510774435,fqhc1_100Compliance_implementation,87 -100000,95803,49166,469.3276828491801,4669,47.55592204837009,3740,38.41215828314353,1466,14.905587507698089,77.3497797498425,79.68386497860426,63.33168066437421,65.0604029210222,77.16308015318673,79.49948492226144,63.26130957348373,64.9930802732117,0.1866995966557709,184.3800563428175,0.0703710908904824,67.32264781049935,241.0276,169.6004785111832,251586.69352734252,177030.44634425145,559.07637,377.940522397919,582943.0811143701,393871.91674365,503.91405,247.78258602084165,521668.2358590024,255382.50098141804,2628.83875,1235.9467723532534,2703998.079392086,1250297.805596727,849.78713,394.7490625109336,869446.9797396741,394501.69707032345,1416.96432,606.2113784466254,1442564.7422314542,602151.4326036493,0.38139,100000,0,1095580,11435.75879669739,0,0.0,0,0.0,48782,508.5331357055625,0,0.0,45475,470.4132438441385,1047395,0,37606,0,0,0,0,0,80,0.8246088327087878,0,0.0,0,0.0,0,0.0,0.04669,0.1224206193135635,0.3139858642107517,0.01466,0.3650401482396541,0.6349598517603459,22.830464183890832,3.963746822309454,0.3160427807486631,0.2772727272727273,0.2085561497326203,0.1981283422459893,11.397806793850686,6.296628541570438,15.67961320464239,11220.395893540175,43.219348782603575,12.939302833029698,13.425515983992632,8.660318142187661,8.194211823393585,0.5967914438502674,0.8206364513018322,0.7106598984771574,0.558974358974359,0.1417004048582996,0.766553480475382,0.9033613445378152,0.8828828828828829,0.751269035532995,0.1802325581395348,0.5187353629976581,0.750445632798574,0.6431095406360424,0.4939965694682676,0.1300527240773286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299633284032,0.0045220882719742,0.0067387906712403,0.0089709333631348,0.0115247685891567,0.0137162058958301,0.0157218597063621,0.0182211651337749,0.020707912139579,0.0228559145948269,0.0250228085821775,0.0270855793418553,0.0289856562644594,0.0308918476414074,0.0328024426473015,0.0347182756589756,0.036715765938286,0.0388955731651661,0.0410294239880309,0.04307176545305,0.0571801157999061,0.0711021884835367,0.084017231078829,0.0972067508774879,0.1093381112984823,0.1251136627968449,0.1362850444984248,0.1456805627986675,0.1550153274302254,0.1636938917788384,0.1751104406852709,0.1866538240928128,0.1965365705086368,0.2048159847847235,0.2132092491144699,0.221859073786838,0.2304679654549106,0.2379153314218249,0.245278096037571,0.2516454710912192,0.2568173933156008,0.2617466922249754,0.267250044344587,0.2719557593095771,0.276855693868142,0.2806566334001944,0.2835819031202378,0.2869066978351458,0.2905285745679236,0.2937719090166311,0.2907990314769976,0.28833984482474,0.2847248616917944,0.2818703642120787,0.2788294508039731,0.2748432482030891,0.2706482915573537,0.2699179535889163,0.2700528379069371,0.2710946408209806,0.2731042986044947,0.2742501280990106,0.2758714199294937,0.2771191530060722,0.2758249641319942,0.276839378238342,0.2787534289188654,0.283546276098473,0.2890438039746124,0.2902367442770495,0.2944384351901929,0.3015415268456375,0.306228157763355,0.3104860110698309,0.3133911098686049,0.3132530120481928,0.3153262518968133,0.3224970083765456,0.3237992444684295,0.3220015278838808,0.0,2.3910286659409925,51.10751900970547,136.94422684969734,185.4320520513953,fqhc1_100Compliance_implementation,88 -100000,95796,48674,464.40352415549705,4651,47.26710927387364,3731,38.33145434047351,1398,14.165518393252327,77.41775944651599,79.74703928530649,63.37436231324406,65.0955782538585,77.22909837195662,79.56394556058245,63.3026224605031,65.02930670911871,0.1886610745593628,183.0937247240314,0.0717398527409614,66.27154473979147,240.11042,168.93984238056336,250647.64708338556,176353.75420744432,559.6401,378.4361728192537,583583.8448369452,394427.79742291296,497.42807,243.72353142592527,515995.7618272161,251902.0452365696,2644.42948,1240.798797862007,2719461.438890977,1254569.0313077776,865.60989,399.3371865351549,888762.3282809303,402146.1325942644,1359.97406,585.332491151316,1380204.7267109274,575486.0592556779,0.38012,100000,0,1091411,11393.074867426614,0,0.0,0,0.0,48845,509.22794271159546,0,0.0,44954,465.9275961418013,1056254,0,37889,0,0,0,0,0,91,0.949935279134828,0,0.0,1,0.0104388492212618,0,0.0,0.04651,0.1223560980742923,0.3005805203182111,0.01398,0.3592013174145739,0.640798682585426,22.96020468342976,4.084774044124543,0.2934870008040739,0.2851782363977486,0.2184400964888769,0.2028946663093004,11.440379160766271,6.179580917921541,14.873101552255235,11200.824869658389,42.790551295646125,13.129136012352795,12.349558016247055,9.082540059181996,8.229317207864273,0.5888501742160279,0.8355263157894737,0.691324200913242,0.5803680981595092,0.1030383091149273,0.7757417102966842,0.9417879417879418,0.8794788273615635,0.7227722772277227,0.1282051282051282,0.5059961315280465,0.7478559176672385,0.618020304568528,0.533442088091354,0.0965058236272878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021466397999169,0.0043080291526866,0.0064332173189516,0.0089577705104507,0.0113580899699015,0.0135286453031475,0.0156966670064213,0.0177186249693802,0.0200230996453284,0.0220461802996806,0.0242939880067654,0.0262695944073172,0.0283208947552375,0.0304743078934634,0.0324303700877527,0.0344168655035997,0.0367507037589004,0.0387542248118274,0.0406719441500966,0.0429676519276619,0.0572719399839317,0.0713942207167649,0.0849660869474059,0.0974912804134975,0.1102520618936768,0.1260209418551821,0.137290631522073,0.1462854469478676,0.1558228131769627,0.164248982215556,0.1756120122187325,0.1856997774368504,0.196423142075316,0.2049879341784868,0.2134891948011997,0.2235005199230071,0.2327154783267758,0.2401634926338483,0.2476613286824163,0.2539617205186252,0.2585149509718998,0.2635933944097566,0.2678683145059433,0.2722086681974742,0.2762140276868621,0.2796212028040831,0.2833108681543607,0.2865535662170564,0.290074364800661,0.2922666245874262,0.2887365512060315,0.2852517047871246,0.283118487937765,0.2798180326216835,0.2775705361636617,0.2735319252838481,0.2695150588643205,0.2684667908131595,0.270079060771606,0.2698728069397385,0.2698368350469378,0.2703740716791096,0.2705246753246753,0.2712115844477902,0.2722064405242176,0.2729363725642218,0.2729994633223173,0.2772289569634454,0.2803670107392347,0.2841989471202954,0.2887425581814902,0.2942754919499105,0.2972433578645378,0.3021382321939467,0.3058098262656454,0.3102918586789555,0.3151655119322555,0.3221639079531692,0.3191547006231374,0.3175210405508799,0.0,2.3964983260652017,49.36323567561341,136.97458328872085,187.01655957893195,fqhc1_100Compliance_implementation,89 -100000,95721,49206,470.4610273607672,4636,47.26235622277243,3674,37.7973485442066,1395,14.166170432820383,77.3893283971574,79.74970971151117,63.35181630130408,65.09350163113054,77.20789541272939,79.57395959565143,63.28261255432033,65.02922038269537,0.1814329844280138,175.7501158597421,0.0692037469837458,64.28124843516514,241.35078,169.7432936837649,252139.84392139656,177331.30001124612,560.31353,378.7603268942384,584777.3738260152,395108.42126595415,502.49623,247.010815907674,521975.27188391256,255695.39504993628,2599.82817,1223.3297831488096,2673944.254656763,1235936.6271219754,869.37166,395.6972272805625,888129.5535984789,393405.5091974136,1360.38794,582.0980977621281,1381791.1639034275,572412.1570652104,0.38247,100000,0,1097049,11460.901996427116,0,0.0,0,0.0,48878,510.02392369490497,0,0.0,45356,470.7744382110509,1046394,0,37587,0,0,0,0,0,83,0.8671033524513951,0,0.0,2,0.0208940566855757,0,0.0,0.04636,0.1212121212121212,0.3009059534081104,0.01395,0.3730912092447379,0.6269087907552621,22.88865498701767,4.037124524705342,0.3062057702776266,0.2917800762112139,0.1956995100707675,0.2063146434403919,11.201502580135251,6.058548907398642,14.893396115868455,11296.238378403672,42.11019262127933,13.155717829849555,12.781774746860853,7.965632290825398,8.207067753743523,0.5958083832335329,0.8274253731343284,0.6817777777777778,0.6105702364394993,0.1266490765171504,0.7689625108979947,0.93446088794926,0.8817891373801917,0.7540106951871658,0.132183908045977,0.5172140878512069,0.7429048414023373,0.604679802955665,0.5601503759398496,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306997376869,0.0045303901000334,0.0068470223060771,0.0091284790268371,0.0115591069903623,0.0137817315717688,0.0156937877058535,0.0178261668129221,0.0198841284600529,0.0221837939608509,0.0243572533789668,0.0267167348948875,0.028534730785039,0.0306642374085168,0.0327647374283239,0.0345269467266056,0.0366087235606539,0.0386909392666355,0.0407554465325128,0.0426901681355084,0.057827853018263,0.0726176898366625,0.0863819432790736,0.0993491677969487,0.1120633314359201,0.1270489202851039,0.1372247443676015,0.1473572150955447,0.156880969168643,0.1656141103307779,0.1774073715153277,0.1883510897193229,0.1986912616715762,0.2075370621419512,0.216010472701671,0.2250058145330099,0.2333084107977815,0.2417123965455199,0.248726587936335,0.2544092720692656,0.2599405704771705,0.2652851315497271,0.2703459851771297,0.2739862115191267,0.2777804741912781,0.28083776333924,0.2853392341446949,0.2882607038495743,0.2918116326293053,0.2951519222411,0.2921610738255034,0.2890324882010756,0.2854036613593322,0.2818946640543966,0.2791227654788682,0.2754075879932957,0.2714216048702984,0.2718277256129369,0.2723586890140462,0.2720403022670025,0.2718121429767597,0.2719652952261306,0.2733781505609091,0.2741383904778824,0.2742644249140237,0.2753978283857323,0.27834179357022,0.2836994004162912,0.2875939198781205,0.2925646340986428,0.2970955849294128,0.3008556879626227,0.3052841227360428,0.3091725945338824,0.3145483242038808,0.3157649253731343,0.3176981867226135,0.3229456133386264,0.3200883002207506,0.3215248363496342,0.0,2.2841734697458844,49.59838702912278,131.30452059909567,184.76864962997053,fqhc1_100Compliance_implementation,90 -100000,95663,49127,469.8890898257425,4736,48.13773350198091,3761,38.62517378714864,1383,13.976145427176652,77.35982293729873,79.73582332181162,63.33991942654043,65.0899488888305,77.18039550760746,79.56393082598571,63.2705109345462,65.02645902806128,0.1794274296912732,171.89249582591515,0.0694084919942312,63.48986076922358,239.88954,168.72304647803196,250764.9979615944,176372.11012994955,557.62687,376.9613127489066,582229.8380774177,393374.6786934128,499.67601,245.02447239211253,518525.3650836792,253071.9499232091,2608.71431,1229.9831068881397,2681467.631163564,1240321.8457830967,844.28045,389.8702145647716,866339.8283557906,391416.0609839152,1339.17164,578.7501827553577,1356365.5331737453,568786.648214617,0.38212,100000,0,1090407,11398.408998254288,0,0.0,0,0.0,48717,508.5247169752151,0,0.0,45058,467.1503088968567,1055110,0,37812,0,0,0,0,0,89,0.9303492468352446,0,0.0,0,0.0,0,0.0,0.04736,0.1239401235214068,0.2920185810810811,0.01383,0.3524041387705417,0.6475958612294583,23.19303974802473,4.044061140396616,0.3257112470087742,0.2773198617388992,0.2087210848178675,0.1882478064344589,11.579053780454869,6.326302033870737,14.778403792919915,11298.837306133908,43.20921031420341,12.89735843557414,13.931114537558974,8.633577746081638,7.747159594988658,0.5950545067801116,0.7929050814956855,0.7175510204081633,0.5834394904458599,0.1045197740112994,0.7601769911504425,0.9117647058823528,0.8619718309859155,0.7027027027027027,0.1351351351351351,0.524135309768149,0.7054908485856906,0.6586206896551724,0.5466666666666666,0.0964285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0048651442819351,0.0070511844975396,0.0093233937965915,0.0116520253782332,0.0138022291210748,0.0158856316041532,0.0179467820266906,0.0200106233018039,0.022076274654227,0.0240539266908435,0.0262528853552192,0.0283373761460346,0.0304777594728171,0.0322966630563721,0.0344695716884405,0.0365562008882815,0.0385225752248187,0.0404749280018298,0.0427514330380406,0.0573473332288565,0.0718107663794096,0.0851316176161887,0.0983986027230066,0.1106118617430834,0.1253901909951854,0.135223497192353,0.1458945843453065,0.1554384201691453,0.1647683967580913,0.1770937739122937,0.1875568551007147,0.1981304546542756,0.2067965415344204,0.2144422299789687,0.2244079661505062,0.2331823051513257,0.2411653628270839,0.2482253418910031,0.2539568098328011,0.2600441654237915,0.2657749821702073,0.2704383921285729,0.2752965680700032,0.2791439311264702,0.2823650967416573,0.2861602627339818,0.2892852608861241,0.2922345524306587,0.2953279152781253,0.2919127913220921,0.2883657080101585,0.2853989455184534,0.2827114248667339,0.2803777047627505,0.27713692819433,0.2737916778438767,0.2747065660451487,0.2748593829896029,0.2753796037524254,0.2757404400649459,0.2764672319830011,0.2767683931663155,0.2776011207222432,0.2773067093414861,0.278356646068723,0.2802639370611623,0.2852474323062558,0.2892097317183216,0.2925306314797361,0.2969123281496507,0.3032363483027619,0.3063170441001192,0.3081117927743694,0.3160399365494075,0.3187943262411347,0.3198484848484848,0.3164607413312076,0.3107209364192604,0.3223981900452489,0.0,2.624640957090114,48.64369862278672,140.53298171291442,190.1064880536973,fqhc1_100Compliance_implementation,91 -100000,95858,48880,466.75290533914745,4647,47.45561142523316,3652,37.55555091906778,1289,13.175739114106282,77.34109898624328,79.63187909857085,63.34986309044478,65.04409576308619,77.17772969327886,79.47128107611942,63.287559308987625,64.9846368046183,0.1633692929644183,160.59802245142407,0.0623037814571532,59.458958467885736,240.3841,169.1005031682566,250771.03632456344,176407.29325487348,556.43583,376.5308716521766,579928.5505643764,392250.0547770441,495.38789,243.6932141749392,512716.6538004131,251130.236932547,2547.38984,1208.727636980761,2621348.129524922,1224851.950263026,857.69314,397.9718353436057,878646.1849819525,399084.48324537824,1248.2866,538.1461942830845,1276228.588119927,538628.1905172132,0.38037,100000,0,1092655,11398.683469298338,0,0.0,0,0.0,48523,505.6333326378601,0,0.0,44784,463.1746959043585,1053870,0,37876,0,0,0,0,0,83,0.8658640906340629,0,0.0,0,0.0,0,0.0,0.04647,0.1221705181796671,0.2773832580159242,0.01289,0.3751547668179942,0.6248452331820058,22.80742396634974,4.016457770870562,0.3085980284775465,0.2965498357064622,0.2029025191675794,0.1919496166484118,11.63289734439862,6.376382767177699,13.82660859207986,11236.216695299294,42.20447482289328,13.293182721060958,12.929690907779,8.239879478342454,7.741721715710866,0.6048740416210295,0.7922437673130194,0.7089618456078084,0.6059379217273954,0.1469329529243937,0.7658623771224308,0.9348314606741572,0.8395061728395061,0.7473684210526316,0.16875,0.533754441373865,0.6927899686520376,0.6562889165628891,0.5571687840290381,0.1404805914972273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002592273808921,0.0047623390177422,0.0069378936798222,0.0090259305135338,0.0110584839306405,0.0130871936823251,0.0150982609492955,0.0172200969140525,0.019396155496088,0.0214920670642511,0.0235488133405717,0.0258658707937191,0.0277723570555549,0.0299504084614276,0.0321899246772249,0.0339556821583015,0.0361072048970138,0.0383758638195588,0.0403633532312483,0.042550092590666,0.0574324324324324,0.0717226820499958,0.0856891477171556,0.0985949510648128,0.1104337113434627,0.1258131970260223,0.1364199688582414,0.1467220869787071,0.156685125316091,0.1653467362532551,0.1764623595747428,0.187807488943914,0.1979740671905398,0.2062947379924594,0.2148529444114476,0.2235833591777059,0.2325910886008166,0.2401165210153974,0.247109810194797,0.2536698193143564,0.259625059271167,0.2649163003834284,0.2701398824656206,0.2742762039320865,0.2778418261471063,0.281322362910775,0.2846195196959658,0.2872353942720642,0.2903204962522616,0.2924717294461871,0.2893778309431324,0.28657146780173,0.2831626912691269,0.2797037208160672,0.2774396579877089,0.2736875898125783,0.2703889784181755,0.2704412825388499,0.2701146479402669,0.2707123067298239,0.2720231062097938,0.2732713159921787,0.2740956288728856,0.2746825254873904,0.2746097789749633,0.2758001093721517,0.277285381512414,0.2809922538965723,0.2857043284310309,0.289371086519907,0.2944948742266179,0.2948138018093835,0.2997256515775034,0.3055597295266716,0.3086247086247086,0.3122362869198312,0.3100997883277895,0.3149543831812773,0.3242807206238236,0.3248216297408937,0.0,2.105274232536098,48.442115906849175,140.79161396606193,178.76021230440466,fqhc1_100Compliance_implementation,92 -100000,95637,48761,465.2278929702939,4741,48.307663352049936,3755,38.62521827326244,1422,14.45047418885996,77.31769350596971,79.73869067841198,63.289715480586615,65.08061784164559,77.13032219417717,79.5574028359406,63.218405406317046,65.01455858529133,0.1873713117925461,181.2878424713915,0.0713100742695687,66.05925635426502,240.42898,169.12478791560315,251396.53063145012,176839.478408069,559.76522,378.2031875484876,584650.0622144149,394806.18764501216,503.69265,247.06064448829017,522662.5469222163,255237.44757553516,2662.57309,1246.8230074483124,2740601.566339387,1260400.970670276,867.2927,390.9056309418032,893706.5152608299,395586.468565308,1387.81912,595.6248973235239,1411936.6144902078,588419.3418988074,0.37904,100000,0,1092859,11427.11502870228,0,0.0,0,0.0,48902,510.6601001704361,0,0.0,45463,471.3970534416596,1046933,0,37577,0,0,0,0,0,85,0.8783211518554535,0,0.0,0,0.0,0,0.0,0.04741,0.1250791473195441,0.2999367222105041,0.01422,0.3731494625836544,0.6268505374163456,23.08056459467731,4.115201538176194,0.3022636484687084,0.2806924101198402,0.2103861517976032,0.2066577896138482,11.477485307702608,6.223324389783975,15.161007415134728,11207.10609602596,42.96456700239392,12.947947112430048,12.793690915295077,8.791455065887876,8.431473908780918,0.5856191744340878,0.801707779886148,0.7066079295154185,0.5835443037974684,0.1172680412371134,0.7547826086956522,0.9084967320261438,0.8422712933753943,0.7722772277227723,0.1627906976744186,0.5109404990403071,0.719327731092437,0.6540342298288508,0.5187074829931972,0.1043046357615894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0046850281912951,0.0070862944162436,0.0094614782670555,0.0117106026229308,0.0139262428687856,0.0160467631036663,0.0185126533781505,0.0206318504190844,0.0225506877959777,0.0246984550633885,0.0269806179630867,0.0291936978683966,0.031380235197029,0.0334555974582838,0.0354836706817335,0.0375854096032017,0.0397000166195778,0.0417217371395269,0.0436968129484398,0.0581577627288688,0.0724696907778231,0.0858070208609062,0.0984053758004718,0.1104387771265642,0.1259783310916004,0.1366708465282353,0.1464888718342287,0.1557773356438397,0.1648836759682928,0.1766495162281979,0.1873760632822235,0.1976405999803928,0.2062360362728348,0.2142833526202678,0.2228988497332313,0.2306944413401578,0.2386449382271125,0.2457536672873427,0.2520368057385784,0.2565619608887448,0.2622513456587877,0.2670116766537979,0.2711409074009666,0.2747753772082335,0.2784398299340686,0.2821282503470789,0.2859975846945909,0.2896500854081474,0.2938523022541118,0.2906250840890133,0.2863658844864538,0.2822607864094054,0.2789510862513875,0.275957579168765,0.2733816247936915,0.2696828004549476,0.2690904927792225,0.2682379349046015,0.2681586040573131,0.268559317307156,0.2693520894966791,0.2705948117016211,0.2706361143059365,0.2718536666587379,0.2722533357421219,0.2736492196743478,0.2776261090773717,0.2826441124475718,0.2854676033122719,0.2878952122854561,0.2921123346857052,0.2950031230480949,0.2984198645598194,0.3018499581667751,0.3099367236934614,0.3126513317191283,0.3146936347412254,0.3267407206719046,0.334841628959276,0.0,2.45070929032061,49.66359911681045,133.293647229077,193.09384746306296,fqhc1_100Compliance_implementation,93 -100000,95711,49123,469.4444734669996,4659,47.47625664761626,3768,38.8043171631265,1383,14.042273092956922,77.34880342590687,79.70713525086761,63.338894218876014,65.07741799726779,77.16596942149326,79.53025032649286,63.268113420758645,65.01211750000134,0.1828340044136069,176.8849243747468,0.0707807981173687,65.30049726644904,240.27014,169.0866444038398,251036.20273531775,176662.8607013194,561.25126,378.8407284018965,585803.679827815,395220.06139678566,500.92837,245.2391673896701,520728.5473978958,254170.82887080705,2646.11496,1239.230266756093,2722886.2931115543,1253092.5910497026,854.73758,389.6322137720281,877345.5193237977,391579.2891098109,1341.15464,584.2521983014516,1362040.0371953067,573821.0778154588,0.38084,100000,0,1092137,11410.73648796899,0,0.0,0,0.0,48883,510.108555965354,0,0.0,45243,470.0609125387887,1051282,0,37750,0,0,0,0,0,91,0.940330787474794,0,0.0,0,0.0,0,0.0,0.04659,0.1223348387774393,0.296844816484224,0.01383,0.3734840698869476,0.6265159301130524,22.89370408573228,3.972183492872962,0.3057324840764331,0.3012208067940552,0.1934713375796178,0.1995753715498938,10.877473104099522,5.833566849286734,14.833231085680852,11232.318477000732,43.10182227388512,13.793082841672923,13.05911354094264,8.095416768209812,8.154209123059738,0.5804140127388535,0.7964757709251101,0.7022569444444444,0.522633744855967,0.1236702127659574,0.7502222222222222,0.9188034188034188,0.8615384615384616,0.6547619047619048,0.1463414634146341,0.5081346954218691,0.7106446776611695,0.6396614268440145,0.483065953654189,0.1173469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999270908225,0.0044601224506345,0.0065851554969306,0.0090512906469996,0.0113164958516349,0.0134168066371456,0.0157481117555322,0.0177197101153414,0.0198050156355386,0.0220052403176942,0.0240967560088146,0.0260484019951967,0.0284172107130005,0.0308858048840752,0.0330407154867393,0.0351013153951868,0.0369752945805463,0.0391583141380813,0.0408833804691399,0.042836749366983,0.057284595300261,0.0710458008875492,0.0843694586966329,0.0973328423378399,0.1095241611375407,0.1246455926537175,0.1355478906871849,0.1453945266744755,0.1550478714310138,0.1643241851382958,0.1754185610549677,0.1872456930135919,0.1973959013183657,0.2060113533201351,0.2140711479847273,0.2229806094182825,0.2309891877401483,0.2385766230257455,0.245144225857352,0.2526115641894987,0.257993958962608,0.2635862891625443,0.2692262186464742,0.2733467461857201,0.2772161883380862,0.2810057722366494,0.2849311305086227,0.2877329744553349,0.2909224749137964,0.2935230398673282,0.2904600002687702,0.2869461340949347,0.2837803643724696,0.2812107927260142,0.2780322910643597,0.2742292598757043,0.2703282828282828,0.2700701289784709,0.2712859159961213,0.2723846099139463,0.2725359065591177,0.2735700817096166,0.2744955121930902,0.2755528856850442,0.2763585916570991,0.2787161286979949,0.2798797436042884,0.284217767910191,0.2879896835354802,0.2913578299952689,0.296507677673597,0.3008160237388724,0.3062318657751987,0.3113142857142857,0.3142910833411632,0.3201324033573708,0.320227307633236,0.3247811036448788,0.3252480705622932,0.3380605596013798,0.0,2.021538812203738,48.93025799959853,135.5137331884401,197.2546229253904,fqhc1_100Compliance_implementation,94 -100000,95631,48798,466.9824638454058,4613,47.05587100417229,3619,37.1950518137424,1389,14.106304441028536,77.26744378178137,79.68251838305709,63.28338998351626,65.06946819241924,77.08635171731207,79.50676098703097,63.21532069576222,65.00595916042744,0.181092064469297,175.7573960261141,0.0680692877540352,63.50903199179925,241.26366,169.66612830093672,252285.5768526942,177417.05922027037,560.23834,379.4927823987368,585173.6570777259,396171.1175149656,499.44375,245.12610543015643,518432.8617289373,253343.82759539213,2598.62843,1227.1786778535347,2670637.1574071166,1236898.1181981072,871.26357,402.83369516865474,890760.2555656639,401184.2735441518,1359.24138,582.3013762492059,1382103.2092104023,575101.1842067719,0.3799,100000,0,1096653,11467.526220577009,0,0.0,0,0.0,48846,510.0751848250045,0,0.0,45145,468.1431753301754,1043008,0,37454,0,0,0,0,0,89,0.9306605598602964,0,0.0,1,0.0104568602231493,0,0.0,0.04613,0.1214266912345354,0.3011055712117927,0.01389,0.3590965602983837,0.6409034397016162,23.182889023568425,4.127399713515618,0.303951367781155,0.2799115777839182,0.1992263056092843,0.2169107488256424,11.509741955281823,6.124349833047855,14.885814646259687,11216.225318165678,41.83342560685357,12.466788236689052,12.590499259385837,8.16845164703552,8.607686463743155,0.5893893340701851,0.805528134254689,0.7109090909090909,0.6019417475728155,0.1286624203821656,0.7539964476021315,0.8977272727272727,0.8658536585365854,0.7789473684210526,0.1309523809523809,0.5150421179302046,0.7347294938917975,0.6450777202072538,0.5386064030131826,0.1280388978930308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365979694814,0.0044412897992293,0.0066906270305393,0.0089525241850256,0.0111293095555397,0.0134435979956817,0.0154985011317984,0.0178664406987309,0.0198877289133835,0.0219352592395367,0.0240295369468232,0.026143320869458,0.028485309851041,0.030602466744289,0.0322350901096178,0.0343430166442675,0.0363109108798094,0.0384854900983933,0.0403578115248595,0.0425354462051709,0.0576364358422339,0.07195224130708,0.0853530474230268,0.0982510450558591,0.110297067331039,0.1255347536956245,0.1361507333807738,0.146312872975277,0.1556175929491293,0.1641608316508441,0.1760741092226727,0.1859570826608317,0.1964260450335738,0.2055454038143799,0.2139381797366914,0.2231096439727939,0.2312284499592711,0.2390631854843245,0.2466092364965326,0.2527182942059373,0.2582437296727971,0.2624741279511676,0.2678138202818968,0.2722890988441801,0.2762195270155312,0.2806048198120421,0.2838999486980568,0.2876794182335965,0.2905563680130453,0.2931200591255229,0.2897551251313273,0.286610101899091,0.2833955092560005,0.2799295266152558,0.2771778685480876,0.2728663667798892,0.2700299083759277,0.2698267107806204,0.2700966274135551,0.2704916573178766,0.2707098655798388,0.2726482728655225,0.2737027043985693,0.2742852049116395,0.2755354102213588,0.277339786121302,0.2786838746277124,0.2838197116136499,0.2878771985034442,0.2926539345431492,0.2948776479181884,0.3002509209332123,0.3028575049103466,0.3077629063097514,0.3113997929021933,0.3146094215861658,0.3191260193875981,0.3233973050224581,0.3300478738383554,0.3202380952380952,0.0,2.365867718936017,48.72440308387533,135.28559730427486,178.70855423696227,fqhc1_100Compliance_implementation,95 -100000,95848,48828,466.0608463400384,4695,47.89875636424338,3734,38.47758951673483,1407,14.356063767632085,77.40182060844235,79.71590839154942,63.36325590393732,65.07585789240458,77.22247136059298,79.53940890342527,63.295369227302565,65.01140848906121,0.1793492478493732,176.49948812415062,0.0678866766347567,64.44940334337446,239.6724,168.58581214696213,250054.66989399883,175888.71144620873,559.29848,377.7304045551345,583053.3657457641,393620.0176896071,497.77776,243.991754701168,516861.196895084,252621.7418515292,2634.44751,1234.699287159435,2714251.54411151,1253868.205032379,851.70654,388.8841367536903,876183.6032050748,393312.3870646132,1366.05462,583.3506436947473,1394629.0793756782,580847.5990236108,0.37931,100000,0,1089420,11366.121358818127,0,0.0,0,0.0,48806,508.711710207829,0,0.0,44899,465.8730489942409,1058225,0,38041,0,0,0,0,0,92,0.9598531007428428,0,0.0,1,0.0104331858776395,0,0.0,0.04695,0.1237773852521684,0.2996805111821086,0.01407,0.3560327198364008,0.6439672801635992,23.41384397750588,4.026151693059025,0.306373861810391,0.2905731119442956,0.2024638457418318,0.2005891805034815,11.043161724167154,5.889646847675049,14.949252110510326,11195.63797979056,42.94570740285692,13.340726336158784,13.051745540511908,8.35343626019024,8.199799265995987,0.5859667916443492,0.8055299539170507,0.6888111888111889,0.5753968253968254,0.1214953271028037,0.7486910994764397,0.9104477611940298,0.8385093167701864,0.7213114754098361,0.1686046511627907,0.5139103554868625,0.7256493506493507,0.6301703163017032,0.5287958115183246,0.1074523396880415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023187994896615,0.0044492191063049,0.0066956133587631,0.0090496358816539,0.011081627880969,0.0135897227085793,0.0158079804311267,0.0179526433966115,0.0202383629413087,0.0224558099546585,0.0244784993080826,0.0264913577205731,0.0285960981025019,0.0305080208397685,0.0327777548578736,0.0345835916511675,0.0364673367354332,0.0383347158855246,0.0406414557389308,0.0425954834009782,0.0570168119811438,0.0706676841698115,0.0842990967579688,0.0973119465540604,0.109836756187467,0.1258488672968263,0.1363438946621328,0.1454553185156839,0.1559214949680366,0.1641994087150263,0.1755380362885444,0.1863985564403721,0.1970821157376728,0.2058470076692813,0.2142252607744644,0.2230904603260689,0.2308558684137162,0.2392670451351807,0.246447647452399,0.2518823664034786,0.2576542410507816,0.2628909354401383,0.2676983826728459,0.2716080432100983,0.2760516542466684,0.2795115165392522,0.2828771403574553,0.2861207433093269,0.2898284709744969,0.2925358196375895,0.2893679897911209,0.286596579835854,0.2839292984598969,0.2806106299099306,0.2775962263592944,0.2737574158520032,0.2702046861951058,0.2695547140245495,0.269379087743141,0.2693058068177787,0.2704965304262087,0.2704425959350231,0.2703314974540164,0.2711503482542922,0.2711190476190476,0.2732597141235358,0.2736162777589899,0.2776348020216427,0.2830051562445929,0.2861959462108441,0.2909566315030205,0.296450389719823,0.3004990642545228,0.3056015660292124,0.3104753114905399,0.3137163500757488,0.3154159746338517,0.3149558941459502,0.3161744784611216,0.316628701594533,0.0,1.8177241071272263,50.27297820918347,137.35764812358144,187.4055340031593,fqhc1_100Compliance_implementation,96 -100000,95697,48449,463.0030199483787,4697,47.7757923445876,3723,38.329310218711136,1422,14.493662288264,77.32145341825886,79.70938634867298,63.3143933609397,65.08054051959567,77.14297788024172,79.53524035994826,63.24630530399568,65.01681733346429,0.178475538017139,174.14598872471743,0.0680880569440205,63.72318613138361,241.13562,169.59270798884648,251978.24383209503,177218.41644863106,562.40429,379.99529065375737,587158.1658777182,396547.1756207168,493.79922,242.25294525247443,512664.4199922673,250571.74895323557,2614.43439,1227.398920645761,2689767.9551083106,1240627.4387956266,865.89022,393.8781442725889,889318.6829263195,396194.30436506576,1382.52242,588.553209900735,1408860.1314565763,583384.0144409257,0.37767,100000,0,1096071,11453.556537822502,0,0.0,0,0.0,49174,513.2762782532368,0,0.0,44646,463.201563267396,1047083,0,37575,0,0,0,0,0,90,0.9404683532399134,0,0.0,0,0.0,0,0.0,0.04697,0.1243678343527418,0.3027464338939749,0.01422,0.3569237062794027,0.6430762937205973,23.001704604768456,3.976540520595199,0.3056674724684394,0.2879398334676336,0.2027934461455815,0.2035992479183454,11.466880423829174,6.29833707280522,15.15075230632414,11160.098416104023,42.79611284574229,13.205202972289438,12.918076034640745,8.529224560556667,8.143609278255447,0.5989793177544991,0.8236940298507462,0.7012302284710018,0.5986754966887418,0.1279683377308707,0.7738607050730868,0.9042553191489362,0.8909657320872274,0.7619047619047619,0.1790123456790123,0.51953125,0.760797342192691,0.6266829865361077,0.5357798165137615,0.1140939597315436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020568209451244,0.0043200486766048,0.0066083319798603,0.008709261084745,0.0110084649194204,0.0133240974655692,0.0157255473857042,0.0178782928323463,0.0197098723151943,0.0221098532151411,0.0243389823557756,0.0260120355727166,0.0280832416084599,0.0299445623724831,0.0321638332352728,0.0345330286706851,0.036522964098527,0.0384826942037258,0.040185953636392,0.0424405394701186,0.0571037623514174,0.0711534032619391,0.0843513853904282,0.0972817107437146,0.109038343849579,0.1239468224734324,0.134139351222826,0.1440668037108438,0.1533874122286703,0.1622494181244838,0.174483991898996,0.1860203297357567,0.1964237157245565,0.2053340918041395,0.2129648981926584,0.2218912964049646,0.2302613234588831,0.2379437844884748,0.2457626157840436,0.2517572177576299,0.2569370577625676,0.2622487143525012,0.2674285173486649,0.2716732542819499,0.2755225909830294,0.2791810721360286,0.2826418395401149,0.2860281418266788,0.2887508555341762,0.2922007843963043,0.2885865477597507,0.2852421699303384,0.2818313280076375,0.2804020968949824,0.2778724602457134,0.2732481740671699,0.2688633815936972,0.269175392670157,0.2692517192074624,0.2688778232260359,0.2698845084612944,0.2714521776763583,0.272823911955978,0.2731038168618893,0.2743237739284602,0.2752658537219521,0.2768359974970135,0.2807231935827536,0.2844020676166527,0.2896179172745554,0.2914012019339388,0.2946867565424266,0.3001573811772112,0.2999618757148303,0.3044212897775274,0.3067142008318479,0.3084569506040679,0.311804008908686,0.320393657736468,0.3201520912547528,0.0,2.2735646223476604,50.48916175201142,132.8260556252817,188.5073914992263,fqhc1_100Compliance_implementation,97 -100000,95714,48484,461.8864533923982,4643,47.38073844996552,3701,38.16578556950916,1413,14.511983617861546,77.3455376358958,79.73395507333358,63.32130932583449,65.0880768537654,77.16915490822059,79.55704393123315,63.25499769094454,65.02299226051545,0.1763827276752039,176.91114210042258,0.0663116348899492,65.08459324994931,240.19666,168.8402945628572,250952.25358881667,176400.6113660041,558.25244,377.7706090255394,582762.2186931901,394198.8346799209,496.72769,244.25959734074195,515247.1007376141,252397.2105273836,2628.49389,1229.6849300102529,2715135.278015756,1253724.415143295,843.9419,382.8096256415628,869051.5703031949,387290.3054658282,1374.48922,584.1133585731142,1413228.221576781,590635.5175012796,0.3782,100000,0,1091803,11406.920617673486,0,0.0,0,0.0,48805,509.39256535094137,0,0.0,44818,464.6028794115803,1053445,0,37780,0,0,0,0,0,92,0.9611968990952212,0,0.0,2,0.0208955847629395,0,0.0,0.04643,0.1227657324167107,0.3043290975662287,0.01413,0.3598923841059602,0.6401076158940397,23.183562519032325,3.977822842788553,0.3072142664144826,0.2834369089435288,0.2010267495271548,0.2083220751148338,11.40921872288595,6.31557100949059,15.067839870962294,11166.005330352364,42.50490002661564,12.937172198228414,12.939113792341004,8.276704728128816,8.351909307917396,0.5733585517427722,0.7988560533841754,0.6807387862796834,0.571236559139785,0.1102464332036316,0.7445454545454545,0.9101654846335696,0.8654434250764526,0.7441860465116279,0.1292134831460674,0.500961168781238,0.7236421725239617,0.6061728395061728,0.5192307692307693,0.1045531197301855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0046756934935848,0.0072287933397634,0.0096038537368645,0.0117909172295922,0.014167854960277,0.0164385796740837,0.0187902739907886,0.0207583442408376,0.0228566747224839,0.0249833341879903,0.0271669354258892,0.029542158264501,0.0316032437890918,0.0336835153041216,0.0355525690065129,0.0374667232931768,0.0397177105495303,0.0418759423906826,0.0437998791440061,0.058021261931118,0.0718307206094727,0.0848960574228957,0.0977654806741431,0.1101068373814822,0.1258315266247157,0.1356108429261047,0.1458222402078763,0.1558227780450002,0.1646954020521186,0.1758334141688492,0.185963658415091,0.196112362730053,0.2041702676979291,0.2122922856828436,0.2215501196490295,0.2299847130630781,0.237228658193679,0.244751675721042,0.2501573496595525,0.2557932469935245,0.2621075630644841,0.2670369932632077,0.2702214459186237,0.2728066240740965,0.277117320908275,0.2807346092862404,0.2841178634397554,0.2872418641247565,0.2905687639563903,0.2871828550749889,0.2832665015259549,0.2806124595128927,0.2779231609823431,0.2751957453094992,0.2708999543170397,0.267630276472999,0.2680734725951149,0.2686998995864322,0.2685791571753986,0.2688290577530315,0.2697251685659083,0.2703504775439403,0.2705782842897208,0.2725705666882137,0.2746237675142708,0.2754443563908072,0.2804976924036422,0.2835177068113824,0.2875580388762099,0.2910400720396218,0.2951301427371956,0.2986085227978631,0.3024357239512855,0.3093081878442722,0.3165954415954416,0.3197683279987807,0.3204531660934655,0.3271789302199294,0.3330772185939301,0.0,1.9464407938135837,47.75745610178842,143.74563559420915,182.70825234810985,fqhc1_100Compliance_implementation,98 -100000,95608,48763,465.4840599113045,4729,48.3013973726048,3778,38.898418542381386,1425,14.4548573341143,77.23812690061078,79.66771961827598,63.25655152000609,65.0535011601321,77.0529609089046,79.4888895494095,63.18584834845033,64.98812178778834,0.1851659917061852,178.8300688664748,0.0707031715557633,65.3793723437559,239.72498,168.7365736509888,250736.90486151783,176487.4967209112,560.5996,378.45485858028695,585750.3765375282,395239.1797783941,494.36416,242.26567713581312,513480.2736172705,250645.8023223924,2638.27826,1231.5321430423785,2715816.919086269,1244552.3166360646,838.03669,380.4505684761184,861411.6078152456,382892.50777521246,1377.285,588.858352559395,1397895.5526734164,579537.6146628495,0.38049,100000,0,1089659,11397.132039159902,0,0.0,0,0.0,48935,511.1810727135804,0,0.0,44614,463.0365659777424,1047923,0,37632,0,0,0,0,0,92,0.9622625721696928,0,0.0,1,0.0104593757844531,0,0.0,0.04729,0.1242871034718389,0.3013322055402833,0.01425,0.3633968382650993,0.6366031617349007,23.46898856267628,4.007235844134195,0.3057173107464266,0.2887771307570143,0.2138697723663314,0.1916357861302276,11.257684448809412,6.189261486491346,15.285431682333607,11240.4133840675,43.22535990232068,13.409475220645383,12.962273107876282,8.928268049456747,7.925343524342279,0.5923769190047644,0.8249312557286893,0.6831168831168831,0.5742574257425742,0.117403314917127,0.7790492957746479,0.9353448275862069,0.8397435897435898,0.8190954773869347,0.1614906832298136,0.512112036336109,0.7432216905901117,0.6251482799525504,0.4942528735632184,0.1047957371225577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023714934327874,0.0046960737577718,0.0067825521890991,0.0091682506124025,0.011205422569614,0.0132950273541367,0.0154214901320822,0.0178053364932783,0.0201603829552196,0.0223797281656816,0.0246039563325945,0.026643239522004,0.029033984479529,0.0310612152326756,0.0329219806888005,0.0350975218583475,0.037195223088406,0.0393920821083905,0.0413795257229705,0.043483704043734,0.0582749607945635,0.0724982446579965,0.0864248116745989,0.0990784138185265,0.1109198437004963,0.1267053639522074,0.1373463512063488,0.1473936680524464,0.157577119378551,0.1668976185105217,0.1779938068469946,0.1881660396994894,0.1978055504102335,0.206678571819845,0.2147122991824051,0.2227658512231652,0.2312251859307722,0.2385279725798814,0.2457815982171283,0.251369131677746,0.2565283465389033,0.2608940315830197,0.2665369880561255,0.2710548766566935,0.2750204012033665,0.2793843341197979,0.2833166081284495,0.286659696011425,0.2895655672806095,0.2926858291244678,0.2890963294708017,0.2859446941082407,0.2841711908622999,0.2811215926847618,0.2784004756949606,0.2752467962474707,0.2719898605830165,0.2715968263876341,0.2712583143819571,0.2716595866204976,0.2718157840588114,0.2728653724747474,0.2735105292875217,0.2733013499944215,0.2741312741312741,0.2750688776836305,0.2766732087493244,0.2828260665141209,0.2868179116999336,0.2902489871376312,0.2966435657018617,0.2991250263546279,0.3035825739608039,0.3103604282913588,0.3139329805996472,0.3204516354324292,0.3263691986270706,0.3285205696202531,0.3370330265295073,0.3337112622826909,0.0,2.3980410467636517,49.20568026756716,136.45371564910604,194.66442853272812,fqhc1_100Compliance_implementation,99 -100000,95726,49064,469.2560015042935,4639,47.22854814783862,3750,38.66243235902472,1458,14.907130769070054,77.33641368994157,79.71241749358603,63.332022412709286,65.08994296992422,77.15046914704854,79.52813441234777,63.26140916860655,65.02202983356324,0.1859445428930257,184.28308123826295,0.0706132441027378,67.9131363609855,240.05718,169.00035408824937,250775.0872281303,176545.71076849484,561.53699,379.5986127780117,586096.7971084137,396037.5892125285,502.13718,246.7726374508665,521339.3957754424,255303.49465349512,2146.59916,1030.9142003520624,2214137.559283789,1048849.950350499,869.66853,400.2932555409389,894488.2685999623,404260.1048324523,1414.80626,609.7500930226586,1447852.8508451204,610314.610325519,0.38224,100000,0,1091169,11398.867601278647,0,0.0,0,0.0,48957,510.89568142406455,0,0.0,45494,472.0138729289848,1052321,0,37771,0,0,0,0,0,85,0.8879510268892464,0,0.0,1,0.0104464826692852,0,0.0,0.04639,0.1213635412306404,0.3142918732485449,0.01458,0.3696907216494845,0.6303092783505154,22.912040057860903,4.010243110474065,0.3048,0.2917333333333333,0.1965333333333333,0.2069333333333333,11.516091841845634,6.311447393549869,15.696079119927782,11242.380899647307,43.29933974530184,13.544534424613882,12.991473279055354,8.24086783358511,8.522464208047493,0.5848,0.8171846435100548,0.7016622922134733,0.5617367706919946,0.1069587628865979,0.7619453924914675,0.9282786885245902,0.8562300319488818,0.7525252525252525,0.1329479768786127,0.504266873545384,0.7277227722772277,0.6433734939759036,0.4916512059369202,0.099502487562189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0041886834552074,0.0063861109701,0.0086897308724286,0.0107524694058167,0.012955003768358,0.0149807768792257,0.0172044108637941,0.0194452680114095,0.0217021886452511,0.0236686997078571,0.0257589601962978,0.0277340737312972,0.0298286090969017,0.0321528809641736,0.0341919212800264,0.0365615001501392,0.0381459234591723,0.0402527619859276,0.0424470323534926,0.0575662016539971,0.0716460384386018,0.0858527070815113,0.0984211411512424,0.1108241989881956,0.1267715786469948,0.137550881953867,0.1481012792836862,0.158170562493329,0.1666220313018886,0.1782189938122141,0.1886698601844743,0.198530929795395,0.2070995576429468,0.216005976971082,0.2243733622281437,0.2332323187307812,0.2406391873061536,0.247724309924616,0.2539942131085671,0.2590944809096792,0.2647759381640707,0.2695542273983605,0.2730513848178501,0.2764360709003176,0.2807515893803569,0.2842318210766867,0.2869622631926456,0.2896546375762589,0.2924119205472591,0.2886014333929459,0.2853802134918015,0.2823382034175041,0.2793444516641398,0.2764987225952112,0.2721735004668105,0.2694071871441225,0.2705143756351834,0.271195401906776,0.2710575073042115,0.2719445689526371,0.2736775793846093,0.2742405933580565,0.2741022053434606,0.2756997060159181,0.2768485915492957,0.2766477967741018,0.2816963304768183,0.286079048618398,0.2911006376490158,0.2935080350620891,0.298398291510945,0.2977449356605937,0.3043878490334458,0.3096135721017907,0.3127463863337713,0.317560301121524,0.3231608730800323,0.3233857840477482,0.3353383458646616,0.0,1.9454426822301216,50.979151841443006,140.4224918553573,184.37868981437643,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95604,48454,463.4847914313208,4570,46.51479017614326,3651,37.540270281578174,1386,14.08936864566336,77.26635035352784,79.70485529784668,63.26822878755484,65.07240056869412,77.0817134629938,79.52721860419972,63.19689432675609,65.00663759636349,0.1846368905340369,177.63669364696,0.0713344607987522,65.76297233063144,239.91066,168.6820901179417,250942.0735534078,176438.31860376312,554.33612,374.7005642741247,579192.3873478097,391296.9481131804,490.52038,240.6995460508901,509324.996862056,248754.04543172976,2099.14348,992.7153086942228,2161091.669804611,1003788.4489082284,827.45027,376.4909632967681,847976.8419731392,376281.8222007107,1346.0096,581.4969679196071,1369399.8995857914,573937.002356974,0.37894,100000,0,1090503,11406.457888791265,0,0.0,0,0.0,48433,505.94117400945566,0,0.0,44191,458.5163800677796,1054246,0,37803,0,0,0,0,0,88,0.920463578929752,0,0.0,0,0.0,0,0.0,0.0457,0.1205995672138069,0.3032822757111597,0.01386,0.358625026199958,0.6413749738000419,23.157106346453585,4.031321228218559,0.3075869624760339,0.2774582306217474,0.2111750205423171,0.2037797863599014,11.09522921956341,5.952920892281461,14.787266537077723,11195.006011906093,41.827207283480085,12.495733290806545,12.685808191295587,8.545152393644315,8.100513407733635,0.5798411394138592,0.8124383020730503,0.6705253784505788,0.5901426718547341,0.1155913978494623,0.7447199265381084,0.920704845814978,0.8299319727891157,0.7288135593220338,0.1219512195121951,0.5097580015612803,0.7245080500894454,0.6139927623642943,0.5488215488215489,0.1137931034482758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0044838955110322,0.0070582022403444,0.0093439889376931,0.0117363245862258,0.0138610026804733,0.0160638471587197,0.018331749486527,0.0204530572153556,0.0224408238549031,0.0244470672756196,0.0268283908105052,0.0289061374070947,0.0309625933105126,0.0327125489345439,0.0346950601187889,0.0364742586469594,0.038606549714891,0.0403838547846541,0.0423450390596481,0.0572713016204913,0.0714824673555364,0.0846971575033088,0.0974415150781027,0.1093870480496023,0.1242557789690022,0.1337932354004124,0.1433082626553582,0.152762463468682,0.1614456277605235,0.1734312963921974,0.1840259331938376,0.1948459334938079,0.2028201110952855,0.2115687722508183,0.2205657237936772,0.2298197010657074,0.2380786163876096,0.2451801274695811,0.251525439280635,0.2567719371388203,0.2624467238068474,0.2677459084341915,0.2723022703843111,0.276063629403687,0.2810029476696143,0.2836338592536939,0.2870270201473826,0.2901012402578908,0.2939043525269972,0.2908210611256808,0.2878242470872719,0.2849728543700244,0.2820239142663455,0.2786571526057351,0.274657461010891,0.2709053868384896,0.2712053205779248,0.2710406160556086,0.2712371721778791,0.2713582879697701,0.2726645236357899,0.274296341183108,0.2739829791026155,0.2758323146616812,0.2775930160049886,0.2785907089075152,0.2842752690871434,0.2884077235203582,0.2938849774543153,0.2979754517867657,0.3032912462359343,0.307982638233629,0.3109503353681513,0.3160285528877352,0.3200280112044817,0.3203737191078963,0.3256880733944954,0.3317984832069339,0.3288490284005979,0.0,2.57986994723735,46.73103207198339,134.00448332791584,188.2981913981128,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95716,48561,463.8409461323081,4679,47.84988925571483,3759,38.80229010823687,1392,14.240043461908146,77.34534288058313,79.71428141106506,63.32656324425341,65.07473115076615,77.16324808555042,79.53467670199868,63.25848053453901,65.00995397800847,0.1820947950327109,179.60470906638193,0.0680827097143961,64.77717275768669,240.06972,168.83960948125028,250814.61824564336,176396.43265624373,556.5216,376.3611869618871,580961.4693468177,392737.5433176137,498.50014,244.33161401544385,518101.9265326592,253125.265080223,2135.94464,1016.0125546325996,2204647.206318693,1034589.8644245468,858.14548,396.6118262459141,885053.8154540516,402871.3180408232,1341.47536,572.558832504918,1372424.8192569686,571399.5203687132,0.37882,100000,0,1091226,11400.664465711065,0,0.0,0,0.0,48549,506.72823770320537,0,0.0,44925,466.6617911320992,1054219,0,37852,0,0,0,0,0,98,1.0238622591834177,0,0.0,1,0.0104475740733001,0,0.0,0.04679,0.1235151259173222,0.2974994656977986,0.01392,0.3652423993426458,0.6347576006573542,23.0046108684833,3.92896697535772,0.3131151902101622,0.2870444267092312,0.209364192604416,0.1904761904761904,11.38214890206388,6.3170959618705504,14.96738436826932,11205.719886609788,43.45700164920588,13.453531772265404,13.443036245812932,8.721187398533221,7.839246232594312,0.5948390529396116,0.8202038924930491,0.7000849617672048,0.5667090216010165,0.1131284916201117,0.7946735395189003,0.9281314168377824,0.8801169590643275,0.7553191489361702,0.2040816326530612,0.5052023121387283,0.731418918918919,0.6263473053892216,0.5075125208681135,0.0896309314586994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0047534104960168,0.0071019844973824,0.0093032703635994,0.0113181069372978,0.0133884482635742,0.01540217934212,0.0174351540887886,0.0197902398135465,0.0221002958307315,0.0241424558669755,0.0263606490039022,0.028368064841291,0.0306895095241529,0.0327867160651812,0.0348256649334808,0.0367551109177903,0.0390618513906185,0.040944914637443,0.0426740308461859,0.0578995738992397,0.071347085727443,0.0848592325208029,0.0980945065813701,0.1100770285955471,0.1256508487491004,0.1351996942480412,0.1445582941013569,0.1545153361120017,0.1629091767128577,0.1743468189409039,0.1855220276956724,0.1965377668487367,0.2059522115563533,0.2142322344806324,0.2237097292564804,0.23266349039867,0.2400994275045271,0.2465223409807792,0.2522755635955622,0.257212900540028,0.2622653857840731,0.2675379975161157,0.2718521001963696,0.2758599762095501,0.280093590296164,0.2833616765868054,0.2865179954789058,0.2889771727315078,0.2918760634719639,0.2882067851373182,0.2846905089408528,0.2818390739774697,0.2789202156100521,0.27767959247323,0.2746891393787375,0.2709063358272564,0.271190320470896,0.2718533992289533,0.2709424316120213,0.2722517961508394,0.2734195599693823,0.2736771991174389,0.2743352986984091,0.2750898203592814,0.2761356565028002,0.27676933066087,0.2817010950721752,0.2862006670372429,0.2919982749833379,0.2972777752697395,0.3019642951182263,0.3052211340527727,0.3081979599546656,0.3119359940459578,0.3154448731439261,0.3164480627167194,0.3162086818000796,0.3213221349227851,0.3247204010798303,0.0,1.8006318564193742,51.11197687226191,142.2109945273291,184.21241328125063,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95658,48688,465.4916473269356,4556,46.43626251855569,3636,37.38317757009346,1358,13.778251688306256,77.2498286400838,79.6479917361585,63.26585613190741,65.03865252603089,77.07757333672892,79.48035281883675,63.20066724661808,64.97763052126103,0.1722553033548877,167.63891732175296,0.0651888852893307,61.02200476985331,240.49476,169.15428472955145,251411.0267829141,176832.34515623518,552.49401,373.98191827166175,576959.6270045369,390344.7158331365,492.6629,241.99359009637223,510829.6535574651,249780.85291350863,2078.11608,991.6325997215256,2137581.8018357065,1001914.123465076,842.82358,387.3719189148023,863742.0079867862,387671.9360076953,1320.67306,563.9353328697284,1341693.8259215122,557451.3898660454,0.37902,100000,0,1093158,11427.773944677914,0,0.0,0,0.0,48282,504.0874783081394,0,0.0,44454,460.5260406866127,1047789,0,37629,0,0,0,0,0,82,0.8572205147504652,0,0.0,1,0.010453908716469,0,0.0,0.04556,0.120204738536225,0.2980684811237928,0.01358,0.3622180054817626,0.6377819945182374,22.89777860586867,3.9617792510971537,0.2912541254125412,0.2986798679867987,0.2136963696369637,0.1963696369636963,11.509846898366217,6.285337817622844,14.556184380221245,11210.29271430093,42.026209618888124,13.493818454982462,11.926713853593824,8.689589618317003,7.916087691994834,0.597084708470847,0.8250460405156538,0.6978281397544853,0.5881595881595881,0.1106442577030812,0.7520361990950226,0.933481152993348,0.8741007194244604,0.7384615384615385,0.1270718232044199,0.5294350059265113,0.7480314960629921,0.6350832266325224,0.5378006872852233,0.1050656660412758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0045432880018659,0.006790430466601,0.0091140012192643,0.0114636205511082,0.0134744260892591,0.0156116164294163,0.0178996273038239,0.020065453057885,0.0222140289427597,0.0243607233339829,0.0263995891114535,0.028584658126254,0.0306834461931706,0.0325521371051001,0.0344503050987692,0.0365887777835345,0.0385593704253574,0.0405859525370121,0.0426033281895149,0.0581874033518619,0.0716926202469342,0.0853781406771478,0.097870235915567,0.1096676832807437,0.1248386072600275,0.1356425340327479,0.1449122470509254,0.1535721544171917,0.1622913489011579,0.1735696792499649,0.1836752396235416,0.1948166643043274,0.2042680586474246,0.2125562814513993,0.2217667577595592,0.2308398245142806,0.2388315569841538,0.2464983444650517,0.2521706174200661,0.2575361864633028,0.2637486497910111,0.2689629770448172,0.2726452869665596,0.2759385125094399,0.2794548307775952,0.2837663233689175,0.2874295046826753,0.2908236759801186,0.2932830887214068,0.2893185283125784,0.2857890676658585,0.2826476354353253,0.2799843729652298,0.278608814607744,0.2744119852479838,0.271296018209696,0.2719191786663167,0.2724805870808089,0.273223751137763,0.2745189788126076,0.2755444216506233,0.2757951009668595,0.2751009841772858,0.2762785114045618,0.2777374721459294,0.2786537809426924,0.2835774481450384,0.2898570833911475,0.2928476093271571,0.2959504354853192,0.3002556477278656,0.3059202378003468,0.3089504088828869,0.312580823942361,0.3207897793263647,0.3253193087903832,0.3292634107285828,0.3371028540656973,0.3322222222222222,0.0,2.465643568814342,47.69498810242736,139.2714436044308,179.9634995610142,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95743,48880,467.6373207440753,4687,47.71105981638345,3731,38.36311793029255,1379,13.96446737620505,77.32698317968122,79.6861127346049,63.31555014592704,65.06089198348886,77.14950970253555,79.51618724626995,63.24720130617325,64.998282709991,0.1774734771456678,169.9254883349539,0.0683488397537885,62.60927349785561,240.15442,168.94653488151482,250832.1234972792,176458.13780800143,559.70959,378.15731093351786,583992.4798679799,394367.8816555967,498.38716,244.74808471623325,517160.51304011786,252891.94792252485,2124.18504,1016.6282794817738,2185355.545575133,1028553.731846479,846.18527,387.9765375176754,870683.0368799808,392114.3955120144,1336.18154,573.7226590937668,1354949.7300063714,564595.1159834372,0.38107,100000,0,1091611,11401.460158967237,0,0.0,0,0.0,48852,509.614279895136,0,0.0,45056,467.25086951526487,1051231,0,37700,0,0,0,0,0,97,1.0026842693460618,0,0.0,0,0.0,0,0.0,0.04687,0.1229957750544519,0.2942180499253253,0.01379,0.3597710547833197,0.6402289452166803,23.062334061765263,3.853796438888098,0.3122487268828732,0.2902707049048512,0.2026266416510319,0.1948539265612436,11.292753801563336,6.358216548844752,14.69400672309492,11192.421453468103,42.97136164877325,13.40596072936263,13.36004511035768,8.255761097873705,7.949594711179242,0.5944786920396676,0.8162511542012927,0.6987124463519313,0.5687830687830688,0.123796423658872,0.7632933104631218,0.9471458773784356,0.8210227272727273,0.7426900584795322,0.1529411764705882,0.5177387914230019,0.7147540983606557,0.6457564575645757,0.517948717948718,0.1149012567324955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.0043195230273164,0.0065261961309705,0.0089198634590377,0.0112687515891177,0.0133496257828012,0.0153464942692825,0.0177000183737214,0.0198785822329422,0.022005916009048,0.0240952742105748,0.0262482549067914,0.0281957978701533,0.0302219018689182,0.0323712063380717,0.0340790493412554,0.0359154346295606,0.0379233442248846,0.0398586498986644,0.0420360666326349,0.0564458038855424,0.0699160964994873,0.0832442179866222,0.0960766173966064,0.1080915837409343,0.1231985958828069,0.1335207084902158,0.1430275024223,0.1525947303725081,0.1613609530964903,0.1732846148871499,0.184881139329615,0.194509428419094,0.2040916798862206,0.2125615031535845,0.2213934208192942,0.2305759092127602,0.2376667980406508,0.2451758719774665,0.2519020991841598,0.2578486756806816,0.264093947944596,0.2688885466156416,0.2722124913021571,0.2760683241140356,0.2799585757964296,0.2841257716725729,0.2877216204864514,0.2914292374637381,0.293397855984388,0.2906127717939408,0.2871808262100431,0.2841233460354064,0.281622463998153,0.2792560291892854,0.2765238401076551,0.2726554600606673,0.2730470923192721,0.2731852608288656,0.2731016365508182,0.2736569555174726,0.274435056003144,0.2768231830803599,0.2776493084893494,0.2795285003825554,0.2800093293251788,0.2812906509812793,0.2857187412282069,0.2906738094409851,0.2938312325754899,0.3002202544163257,0.3019470323458599,0.3045310853530031,0.3102416398593551,0.3138955526849972,0.3143222209315832,0.3192608173076923,0.3153081510934393,0.3161483906164757,0.3236074270557029,0.0,2.3251751107006164,50.60139769102962,136.0658908384909,185.69825555242963,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95765,48651,463.9586487756487,4621,47.18843001096434,3643,37.52936876729494,1351,13.721088080196314,77.39144353273707,79.73062811455165,63.36142006586866,65.08738528063813,77.2127310332069,79.555438428296,63.2935755886521,65.02314900174781,0.1787124995301781,175.18968625564924,0.0678444772165534,64.23627889031991,240.12296,168.97984994457207,250741.64882785987,176452.40217884627,560.78883,379.19253985647896,585048.4728241008,395434.0172672709,494.73746,242.75746307452988,513908.9646530569,251342.72270615093,2081.64936,989.275334735756,2144066.49611027,1004230.1785500628,834.83546,379.89691548467925,856492.9045058215,382333.44004674855,1309.24456,565.8293573924602,1330313.1624288624,560258.0862305706,0.37964,100000,0,1091468,11397.34767399363,0,0.0,0,0.0,48826,509.2779199081084,0,0.0,44685,463.885553177048,1054394,0,37749,0,0,0,0,0,94,0.9815694669242416,0,0.0,1,0.0104422283715344,0,0.0,0.04621,0.1217205773891054,0.2923609608309889,0.01351,0.3623038810900083,0.6376961189099918,23.238922058589843,3.965669709436444,0.3110074114740598,0.2841065056272303,0.2053252813615152,0.1995608015371946,11.301846767988232,6.223464318491868,14.587245925624728,11256.635570444538,41.84865683814823,12.69275226900552,12.865733722251845,8.3489440538389,7.941226793051959,0.5909964315124897,0.8019323671497585,0.7087378640776699,0.5868983957219251,0.1114167812929848,0.7607142857142857,0.9237875288683602,0.8858024691358025,0.7121951219512195,0.120253164556962,0.5156559651208878,0.7142857142857143,0.6378244746600742,0.5395948434622467,0.1089630931458699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021666936659646,0.0045096628393647,0.0068484811590673,0.0090695808492702,0.0111640959420849,0.0138221643188665,0.0159262278377827,0.017997428938723,0.0201452665774499,0.0222845215683064,0.0243545081967213,0.0266332895600787,0.0287199827371839,0.0309486316526178,0.0330697784695949,0.0352247254847273,0.0371757984723975,0.0394316531839867,0.0414119995010602,0.0432921176262252,0.0578976483972987,0.0719024002343733,0.0859978180597516,0.099228132163964,0.1111814012335916,0.1269443475134558,0.1375002651169696,0.1471110780131281,0.1559786845505708,0.1634365955622253,0.1741297281005791,0.1863435313456401,0.197159220578806,0.2055581651937383,0.2130428569858315,0.2221964064436183,0.2304048858228666,0.2378256963162623,0.2456199995467011,0.2526278465955232,0.2583820505118192,0.2627656218969404,0.268107034795764,0.2726576247650741,0.2770139192007372,0.2812184863615121,0.2847045306958389,0.2877492153449305,0.2909281309389908,0.2940874442118567,0.2909098231906238,0.2874168552424055,0.28448106454058,0.2812765283952749,0.2788344919390623,0.2757329436478217,0.2719604695810909,0.2726946596004892,0.2726825294457078,0.2738936011640699,0.2746746709422424,0.2755622011922797,0.2757764752508291,0.275643167390578,0.2780574332422456,0.2784222135720773,0.2801583934379861,0.2859955005624296,0.2910588399525372,0.29488038466086,0.3008645272258181,0.3037847552595412,0.3063012327138477,0.3080579447713897,0.3122276814684342,0.319027680856013,0.3252008330853912,0.3255445544554455,0.3295789755966747,0.3302134032197679,0.0,1.8968772340462885,48.79005103479864,133.32070622295325,183.64840981076023,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95724,49105,468.7643642137813,4699,47.80410346412603,3767,38.73636705528394,1483,15.126822949312606,77.37264048070351,79.73204403024222,63.34029949113111,65.08185629055274,77.17975577901184,79.5413333196551,63.267575779301694,65.01205622207105,0.1928847016916677,190.7107105871262,0.0727237118294183,69.8000684816833,239.2181,168.33231215938918,249903.76499101584,175851.52247224224,559.04631,378.3259952358879,583397.1104425222,394604.8343760476,500.82638,246.40594478067388,518722.3684760353,254053.35145698432,2161.96948,1039.4805219271009,2226261.2093101,1053926.5376611706,873.92473,405.1694889647867,899161.6000167148,409467.0186837012,1439.23674,621.7096999281833,1470106.911537337,622130.8201656861,0.3817,100000,0,1087355,11359.262045046176,0,0.0,0,0.0,48769,508.8274622874096,0,0.0,45262,468.4300697839622,1055110,0,37889,0,0,0,0,0,95,0.981989887593498,0,0.0,0,0.0,0,0.0,0.04699,0.1231071522137804,0.3155990636305597,0.01483,0.3695961031053379,0.630403896894662,22.67744059483457,4.098301305772433,0.3055481815768516,0.287231218476241,0.2025484470400849,0.2046721529068224,11.452575987096484,6.265715465036308,15.987795029662069,11285.910165485871,43.67389421864,13.414046777523346,13.103020169599738,8.581465895890405,8.575361375626501,0.581629944252721,0.8179297597042514,0.6907037358818419,0.5543905635648755,0.1141374837872892,0.7475247524752475,0.931106471816284,0.8427299703264095,0.7183098591549296,0.1256830601092896,0.50293542074364,0.7280265339966833,0.6277641277641277,0.4909090909090909,0.1105442176870748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0043983663210807,0.0064518092455643,0.0091200844978875,0.0112660016878666,0.0134067634423926,0.0155753078365815,0.0178926847192593,0.0202393973157243,0.0226225816357866,0.0245450351155995,0.026785897620172,0.0290482457944309,0.0312670573332372,0.0333749445470395,0.0354913390384058,0.0376233318493824,0.0396622897089634,0.0415722629861356,0.0433578086757277,0.0575509522218509,0.0715885073346307,0.0849279161205766,0.0983131010562825,0.1102010267438305,0.1259964055396976,0.1369007212558337,0.1467611659164192,0.1561979411387809,0.1651922148946437,0.1774169233088536,0.1884763512051581,0.1986820499994563,0.2070643556235988,0.2153631192721111,0.2240143567701698,0.232084463343043,0.2391057175985861,0.2460872725620698,0.2529838681938568,0.2581481481481481,0.2647657602845509,0.2701050711332757,0.2741666566709448,0.2795129183579223,0.2826604203908032,0.2853763844565421,0.2886656919458394,0.2919803388953563,0.2950316288877174,0.2916565835820494,0.2876529813331868,0.2840530393576781,0.2823575230429703,0.280688223079205,0.2767349434423723,0.2734334296405059,0.2734733324597038,0.27327470359093,0.27371167876733,0.2735443532629933,0.273779399360521,0.275542504893998,0.276225560906327,0.2764774652255863,0.277968552322429,0.279510461902882,0.2849420609524993,0.2887433738696601,0.2911085946346987,0.2959572845156369,0.2973624875465366,0.3012956272580042,0.3012373453318335,0.3036934441366574,0.3054003724394786,0.3070452155625657,0.3080135215748658,0.3112493239588967,0.3149754809505847,0.0,2.4024889418024227,52.60226766337369,140.6451395672695,179.98849355010967,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95747,48681,465.1947319498261,4732,48.283497133069446,3759,38.71661775303665,1434,14.621868048085055,77.33281654085012,79.69902958615667,63.319784280511655,65.07098701000099,77.15435689197463,79.5229272198859,63.25335722989247,65.00742787580643,0.1784596488754886,176.10236627076858,0.0664270506191897,63.55913419456272,239.72806,168.65988853916113,250376.575767387,176151.6168017391,557.39436,376.4883212974893,581612.1758384075,392670.4453377019,489.32431,239.99235762353507,507227.9549228696,247642.3024851994,2153.73304,1007.727123707028,2221567.7984688813,1024657.277728835,856.77734,388.07763666857926,883514.0422154219,393995.09819480433,1397.00272,582.1902738918483,1427189.7396263068,582695.811258939,0.3811,100000,0,1089673,11380.753443972137,0,0.0,0,0.0,48635,507.3997096514773,0,0.0,44362,459.617533708628,1057914,0,37913,0,0,0,0,0,84,0.8668678914221856,0,0.0,0,0.0,0,0.0,0.04732,0.1241668853319338,0.3030431107354184,0.01434,0.3640413039076736,0.6359586960923264,23.05903877048497,4.095548702888366,0.3101888800212822,0.2825219473264166,0.200585262037776,0.2067039106145251,11.383244250582244,6.215229587356652,15.13958235029386,11195.769200296312,42.964518859964905,12.961879805176205,13.25396458767179,8.302095284016813,8.446579183100097,0.5812716147911678,0.8069679849340866,0.7101200686106347,0.553050397877984,0.1068211068211068,0.766269477543538,0.9200913242009132,0.8825396825396825,0.72,0.1779141104294478,0.5056221889055472,0.7275641025641025,0.6462984723854289,0.5025906735751295,0.0879478827361563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021684280922899,0.0045642185550698,0.0066808813077469,0.0088635000660696,0.0111097546087168,0.0133331975228161,0.0154702780978798,0.0177029096477794,0.0196315003783153,0.021933013178239,0.024257212573561,0.0261120466587259,0.028224479723616,0.0301856867732932,0.0323971853655516,0.0345437067816056,0.0363918806959403,0.0385317863888254,0.0403855551974046,0.0424093423478795,0.0570942383781018,0.0712566956812855,0.0845060084306776,0.0970848270134457,0.1095136707633282,0.1247409381212198,0.1352472055486033,0.1459359933588054,0.1546069143766487,0.1629206253887232,0.174665719268781,0.1852965675403771,0.1967599891274803,0.2071509772200603,0.2146918128333425,0.223615893013318,0.231427455792938,0.2391426642664266,0.2460115738114149,0.2519888737537345,0.2580118934678483,0.2633506505663203,0.2685095300106547,0.2724734584321902,0.2773486835713591,0.2811402373645876,0.2847525495839329,0.2875449726032621,0.2909145023745745,0.2939423508003903,0.2900275704391096,0.2858222698661389,0.2833807018037538,0.2804450409108619,0.2775822903211438,0.2734861108987785,0.2692234788652303,0.2691262644449537,0.2686239468981363,0.2689463955637708,0.2694252187377572,0.2699440856827847,0.2705867644607435,0.2714165111525815,0.2724838632560363,0.2742709008425146,0.2754670976156049,0.2808240590221333,0.2843096234309623,0.2895504731861198,0.2926190261089529,0.2953288746116173,0.2975345536047815,0.3016625291506808,0.304798962386511,0.3088235294117647,0.3111378325567413,0.3056716417910448,0.3122282608695652,0.3191811978771797,0.0,2.162678106001951,47.28696701077236,142.0938044644324,192.6741559118063,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95777,49075,468.6093738580244,4631,46.973699322384284,3702,38.03627175626716,1377,13.928187351869449,77.34910350822409,79.67897000546614,63.34642956891118,65.06715328852476,77.17113482762855,79.50700238316409,63.277320069208834,65.00330428994596,0.1779686805955407,171.96762230204854,0.0691094997023427,63.84899857880555,242.2783,170.46316989958655,252960.8361088779,177979.23290517196,564.76239,382.05799001326807,589056.2452363302,398296.36711860826,505.3062,248.53873871471257,524341.8879271642,256879.44766373836,2108.43164,1019.3940900904016,2167181.8495045784,1030144.2821795504,845.44709,393.3655639156432,864348.3090929973,392363.6897170647,1333.09284,583.1527983655347,1350703.1959656286,572707.3693547159,0.38104,100000,0,1101265,11498.219823130814,0,0.0,0,0.0,49173,512.7849066059701,0,0.0,45594,472.7544191194128,1038973,0,37361,0,0,0,0,0,113,1.1798239660878918,0,0.0,2,0.0208818401077502,0,0.0,0.04631,0.1215357967667436,0.2973439861800906,0.01377,0.3695289704043351,0.6304710295956648,22.86084049146688,3.972074217481009,0.3111831442463533,0.2868719611021069,0.2093462992976769,0.1925985953538627,11.478463083362945,6.360211856429889,14.83788775384347,11154.651481110302,42.82541381408286,13.114089876816898,13.217447091424065,8.550249539688743,7.943627306153147,0.5948136142625607,0.8097928436911488,0.7083333333333334,0.5716129032258065,0.1164095371669004,0.7618636755823986,0.9290322580645162,0.8550295857988166,0.7540106951871658,0.1242603550295858,0.5186787259142744,0.7169179229480737,0.6474201474201474,0.5136054421768708,0.1139705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556545690213,0.0046929322210847,0.006837710888598,0.0090400300657179,0.0112864521901818,0.0132945152489922,0.0153182902219776,0.0177272031433382,0.0199552462986236,0.022068302265147,0.0242285784534688,0.026598255515649,0.0285702540491655,0.0309090534809996,0.0329827817300752,0.0352520734994887,0.0371891847145621,0.0390286389747205,0.0409293529650141,0.0428923993293832,0.0569266892773284,0.0705141614023344,0.0840148465022647,0.096813519421557,0.1092118159112225,0.1248150653083653,0.1344286622853508,0.1447820399655432,0.1546030865119853,0.1629718522645694,0.1747306330258441,0.1856898751973698,0.1956985038274182,0.2047002985531654,0.2131147540983606,0.2219035173208115,0.231093702922567,0.2387714031951611,0.2457008031217387,0.2517969966120318,0.2566951896392229,0.2616313068700147,0.2667116253756418,0.2709012073591414,0.2748437215512532,0.2782322647413942,0.281954746150671,0.2848767708624768,0.2878742766896658,0.2920041153348985,0.2884804284349476,0.2844513494562303,0.2812864756922471,0.2775094089316356,0.2746170029928586,0.2712606837606837,0.2664753284026934,0.2667756703727926,0.2668854019686177,0.2678825369738339,0.2691103574223845,0.2700989943122552,0.272123156403633,0.2720032037020557,0.2737200057474017,0.274752089714968,0.277162492190606,0.2830875431440225,0.2872143082146232,0.2925477152134315,0.2946165358973196,0.299498812978106,0.2998678164537043,0.3055892153892759,0.3072955738934734,0.3106807651182131,0.3177155106415557,0.3142280524722503,0.3216725881388357,0.3271173271173271,0.0,2.3213083347395957,49.960991670716496,140.42977152765783,180.3363052395471,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95663,48285,460.30335657464224,4648,47.18647753049768,3675,37.79935816355331,1386,14.080679050416569,77.31532774038504,79.7082731865422,63.31028192710126,65.07667296529958,77.13137114000669,79.52901668486669,63.23937322733921,65.00984539226009,0.1839566003783517,179.25650167551055,0.0709086997620502,66.82757303948961,241.48168,169.8439984270067,252429.54956461745,177544.08541129457,555.61146,375.7362873227718,580197.6103613728,392167.5750528121,493.11286,242.89085191741253,511700.2498353596,250837.39827144888,2133.83616,1019.4116335478932,2198469.4605019703,1033521.1247273168,846.97148,392.0328253385798,869744.4884647146,394180.6292282069,1344.4845,585.3514294716454,1368457.8781765157,580226.8900826337,0.3769,100000,0,1097644,11474.07043475534,0,0.0,0,0.0,48549,506.8730857280244,0,0.0,44501,461.4636797926053,1047367,0,37525,0,0,0,0,0,97,1.0035227831031852,0,0.0,1,0.0104533623239915,0,0.0,0.04648,0.1233218360307774,0.2981927710843373,0.01386,0.3613168724279835,0.6386831275720165,23.10127944188184,4.0340990895310105,0.3115646258503401,0.2829931972789116,0.2005442176870748,0.2048979591836734,11.240664041245166,6.061859072619913,14.94078632281438,11075.378827939046,42.26436584265264,12.868707332280106,13.098031428106472,8.169797370158827,8.127829712107225,0.5858503401360544,0.825,0.6917030567685589,0.5549525101763908,0.1248339973439575,0.7657192075796727,0.910386965376782,0.8571428571428571,0.7277777777777777,0.1493506493506493,0.5027844073190135,0.7486338797814208,0.622991347342398,0.4991023339317774,0.1185308848080133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325688352209,0.0049271072000648,0.0069820779800686,0.0091540853026639,0.0113525390625,0.0134351922587216,0.0157174329892701,0.0178948981155201,0.0200542005420054,0.0222827533946382,0.0245318236826451,0.0266047600949142,0.0287016367134054,0.0309428129829984,0.0331434115728411,0.0352562776651636,0.0374134858469062,0.0395939929218602,0.0416272272438864,0.043606499286079,0.0569822596485362,0.0701392524343,0.0833245869980478,0.0956540039987372,0.107507703997636,0.1227386761794874,0.1331167107344992,0.1432558535909836,0.1526226336436809,0.1613460712752254,0.1728520151337134,0.183919870059556,0.1944876832812653,0.2029370889552761,0.2109935131444179,0.2198411642042681,0.2284338802819261,0.235859461162754,0.2427655105863654,0.2486619677955418,0.2542349331326347,0.2599302483439833,0.2657733374369658,0.2692607563962624,0.2730132510657937,0.2763042808746535,0.2802377228651861,0.2830351807351464,0.2863203093676845,0.289419894238504,0.2853375669348545,0.2822699327437523,0.2785794655414909,0.275263135097674,0.2728499807173158,0.2699229970054391,0.2659028862693114,0.2669280405129461,0.2676722158926658,0.2686336507034247,0.2685228266736149,0.2689512961508248,0.2703682861251797,0.2710602356079128,0.271936116291302,0.272680212242785,0.2748446764447218,0.2776156862745098,0.2813309982486865,0.2861952861952861,0.2921771485615754,0.2947918867525882,0.2983359497645212,0.3012259194395796,0.3042579189773475,0.3062212253571007,0.3106197352587244,0.3155196213764543,0.3219923788786064,0.3310785419015408,0.0,2.4003059290266675,49.9913276286542,132.29195164246974,183.27158092981776,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95632,48591,465.3672410908482,4605,46.99263844738163,3703,38.19851095867492,1384,14.158440689309018,77.3146043072854,79.73293472707776,63.296484254502126,65.08252885110788,77.13718135224418,79.5573951252593,63.22897155197976,65.01773556919731,0.1774229550412229,175.53960181845696,0.0675127025223645,64.79328191056766,240.1531,168.84867966716376,251122.11393675755,176560.85794207352,554.92853,374.5637964448592,579762.7676928225,391159.8590899064,493.24721,241.777516869018,511757.4138363727,249872.30895564443,2133.10188,1016.8855688048748,2202764.3048352017,1035564.7155814732,844.92586,390.0576547361447,871733.1855445877,396088.83505118,1345.51008,580.3959143146068,1378242.9103229044,583031.8639830542,0.38018,100000,0,1091605,11414.64154257989,0,0.0,0,0.0,48426,505.8348669901288,0,0.0,44509,461.44595951146056,1055849,0,37841,0,0,0,0,0,95,0.993391333444872,0,0.0,1,0.010456750878367,0,0.0,0.04605,0.1211268346572676,0.300542888165038,0.01384,0.3593163818257607,0.6406836181742392,22.77395121431386,4.025612481620331,0.3132595193086686,0.2927356197677558,0.1909262759924385,0.2030785849311369,11.408273729228886,6.193599356018776,14.94030598922075,11263.84726626644,42.657146198882586,13.421838991136976,13.131378463114885,7.771006061273741,8.332922683356992,0.5889819065622468,0.7896678966789668,0.7224137931034482,0.5770862800565771,0.1050531914893617,0.7530755711775043,0.9037199124726476,0.8975155279503105,0.7541899441340782,0.1111111111111111,0.5161793372319688,0.7065390749601276,0.6551312649164678,0.5170454545454546,0.1031468531468531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046751036041,0.0044822585715589,0.0066187517765054,0.0089010821521109,0.0111592610677083,0.0132308005703809,0.0152079232157974,0.0171212585555215,0.0192695175461026,0.0214129911624048,0.0234461538461538,0.0257421674370826,0.0277046212090037,0.0297154161600758,0.0318025578298702,0.0337076328142771,0.035746850132626,0.0378014721913641,0.0398813859119758,0.0418743872676831,0.0569421798570174,0.070549416016341,0.0837647404731652,0.0964611271341656,0.1086541201802809,0.1247604425856318,0.1361005193784452,0.1464100760820919,0.1561253195563114,0.1649820076266179,0.175891865068663,0.1873414977782594,0.1971106704726211,0.2057773201296994,0.2138795212590094,0.223346648912561,0.231795479178073,0.2404082276342172,0.2470721871982734,0.2540961990483288,0.2606687732212924,0.2660016139029553,0.2712923302648082,0.2755864944525652,0.2795912918962212,0.2840187146023147,0.2873625,0.2895856890571599,0.292120742033482,0.2948175673004704,0.2912583511446277,0.2882775283829606,0.2854993390893495,0.2824427480916031,0.2800688815652742,0.2747743613278262,0.2713357263713847,0.2720963428440171,0.2722706304459251,0.2730561545452925,0.2725543579606907,0.2727219236653199,0.2749340698133189,0.2763966201681045,0.2781267846944603,0.2789649845520082,0.2811224633398069,0.2858293574570915,0.2898214779961251,0.2946285356597942,0.2997359351922302,0.3036731281676159,0.3087382274059752,0.3133353356359813,0.3173441985369015,0.3226528448580515,0.3308789691670502,0.3362295413214791,0.3362350380848748,0.3412759415833974,0.0,2.0767460851528896,49.44400524753996,138.0295418577397,184.7919170278536,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95644,48406,462.7890928861193,4655,47.415415499142654,3666,37.73367905984693,1347,13.717535862155492,77.29129418892526,79.69195218877772,63.29829466637945,65.07007373815028,77.11618969346138,79.52079588218972,63.231801379780535,65.00765232168511,0.1751044954638843,171.15630658800285,0.0664932865989129,62.42141646517041,240.61334,169.2439661651906,251571.80795449796,176951.99507045982,552.99584,373.7618237527527,577608.4438124712,390211.41289861634,492.87918,242.85824027365447,511636.474844214,251099.75273809445,2084.35196,1005.5773357935888,2146964.744259964,1019058.525149082,825.30537,380.8535668082847,848977.5521726402,384283.6840871188,1305.47188,560.7272349759575,1331085.692777383,557158.4376439629,0.37891,100000,0,1093697,11435.082179749905,0,0.0,0,0.0,48377,505.1858977039856,0,0.0,44610,462.6949939358454,1052560,0,37756,0,0,0,0,0,72,0.7527916021914599,0,0.0,1,0.0104554389193258,0,0.0,0.04655,0.1228523923886938,0.2893662728249194,0.01347,0.3651254405971387,0.6348745594028613,22.919236603543016,3.945712142374464,0.3074195308237861,0.2918712493180578,0.2059465357337697,0.1947626841243862,11.655179300454792,6.588982114002733,14.500484471536698,11217.144280265931,42.50694625273692,13.251387453000431,12.926983037688636,8.475064931195105,7.853510830852749,0.6031096563011457,0.8233644859813084,0.7036379769299024,0.5894039735099338,0.1288515406162464,0.7787234042553192,0.9417879417879418,0.8694362017804155,0.7115384615384616,0.1409395973154362,0.5202729827378563,0.7266553480475382,0.6329113924050633,0.5429616087751371,0.1256637168141593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0042279225387813,0.0064045958811648,0.0087186261558784,0.0109269602905716,0.0132504965116871,0.0153047698676509,0.0179304429513754,0.0204175527564207,0.0222390596522843,0.0243149561079662,0.026364439332005,0.0283830216241795,0.0302743029078993,0.0323646311877355,0.0344424562746294,0.036345358634484,0.0385110580417402,0.0406530289472041,0.0425159252270191,0.057175403394365,0.0717106434684236,0.0850833718341803,0.0982464265414816,0.1103969435033615,0.1254180956009992,0.1354926377697803,0.1459340846630733,0.1553412589804995,0.1638664934674553,0.1744075727192358,0.1858224065311779,0.1961057477769675,0.2043088442970212,0.2134859938730081,0.2227631637315353,0.2311378717129515,0.2391409565188028,0.245610450928984,0.2522106661779529,0.2575200148086445,0.2621455714703303,0.2677869822485207,0.2728939704454751,0.2773018361221489,0.2811140014547606,0.2847163977316826,0.2882305029525555,0.2915026416658033,0.2937345935329088,0.2910003093601624,0.2884313887284429,0.285291839752165,0.2819764923325728,0.2787644787644787,0.2751030161915412,0.2701056694507719,0.2695849130927175,0.2696799972678528,0.2704447376867934,0.2701024758770289,0.2711239124859437,0.2728848965949446,0.272417403702631,0.2723014791980309,0.273510910926458,0.2768280297901151,0.2821527626289383,0.287338285036789,0.2923422890282873,0.297076234805007,0.3027677117798435,0.305605899631273,0.3099029420685472,0.313958938783163,0.3206360507891301,0.3256563795485951,0.3346955455659992,0.3274628508530545,0.3266616314199396,0.0,2.320304668906219,50.80352602794125,137.27353806098998,176.4758463153693,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95628,48659,464.3200736186054,4706,47.86255071736311,3733,38.44062408499602,1403,14.315890743296942,77.27514686010801,79.68772729524139,63.27600815666828,65.05715849803674,77.09426352517607,79.51002225720714,63.20678721548696,64.9916049894871,0.1808833349319343,177.7050380342473,0.0692209411813209,65.55350854964104,239.12152,168.15460171237282,250053.64537583131,175842.22290993517,556.37574,376.4687810506912,581189.4319655331,393060.0335331834,498.19278,245.35976981659311,517358.190069854,253804.0807856237,2141.65988,1029.4268412679824,2207123.687622872,1044113.7144643652,867.49086,401.6552499180174,891523.3613585979,404477.6951056426,1356.11788,584.3887976547853,1384847.115907475,581553.7986487896,0.37822,100000,0,1086916,11366.074789810516,0,0.0,0,0.0,48585,507.4141464842933,0,0.0,44992,466.7775128623416,1053612,0,37804,0,0,0,0,0,93,0.97251850922324,0,0.0,2,0.0209143765424352,0,0.0,0.04706,0.1244249378668499,0.2981300467488312,0.01403,0.3599673868732164,0.6400326131267835,23.15734871312813,4.085310413974024,0.3193142244843289,0.2842218055183498,0.2011786766675596,0.1952852933297615,12.014663130344372,6.81838623041316,14.946067616463814,11226.767072082295,43.10576793016979,13.031351929336322,13.658956932695869,8.514937010226143,7.900522057911449,0.6102330565229038,0.8162111215834119,0.7340604026845637,0.5872170439414115,0.1316872427983539,0.7771084337349398,0.9290322580645162,0.8882175226586103,0.7272727272727273,0.1592356687898089,0.5348113574484636,0.7281879194630873,0.6747967479674797,0.533210332103321,0.1241258741258741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0046623354246272,0.0065851554969306,0.0087252412392077,0.0110660197927155,0.0131680788658953,0.0155096463678264,0.0178967034537677,0.0203858382832547,0.0224750163826998,0.0244427805073184,0.026535308499928,0.0285505576361167,0.0311285650968386,0.0331887649731515,0.0351837292063229,0.0372739051567763,0.0392480656384691,0.0413553395633442,0.0434769006152883,0.057924056983392,0.0715887419577928,0.0849834550133935,0.0979435747245106,0.109709722398276,0.1248596665889978,0.1360482045505265,0.1453487132470523,0.1546933533126404,0.1630839012016595,0.1735530051930945,0.184695139144958,0.195487000599553,0.2043689959205158,0.2123874271587497,0.2214816542806678,0.2303138150237264,0.2376358281710165,0.2451346368333599,0.2510020097616997,0.2561220346847631,0.2620401749592504,0.26777369232594,0.272382370244084,0.2762943508183166,0.2805297621249676,0.2837602555270245,0.287233771851701,0.2908108388300698,0.2942092894299067,0.2901705142364572,0.2869172766800594,0.2848194806108804,0.281991341991342,0.2787614556455201,0.2749388753056235,0.2720056809215717,0.2723746870243998,0.2737897061321556,0.2745446152753613,0.2752057325197335,0.2764112546451955,0.2773829126456427,0.2790071836843627,0.2796709472224215,0.2812572819304559,0.2820933521923621,0.2872353712608506,0.2918279794914722,0.2971108746206298,0.3007756132756132,0.3044234723467074,0.3055659320134479,0.3075594925305908,0.3119180633147113,0.3159386068476977,0.3211357424840571,0.3226843480008037,0.3165350040860801,0.3162295705055112,0.0,2.242011526261936,50.32893890058647,137.74537407683505,186.86690040580035,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95680,48845,465.698160535117,4554,46.33152173913043,3613,37.13419732441472,1366,13.89005016722408,77.28391542799022,79.68167663624719,63.28504443165552,65.05967055832808,77.10503905883496,79.50696692943716,63.217554397561074,64.9960814832727,0.1788763691552617,174.7097068100345,0.0674900340944475,63.58907505537559,239.38376,168.43525197315776,250192.0568561873,176040.1880990361,559.1263,378.4800094931876,583743.802257525,394941.2411091008,500.66885,246.6094756533361,519379.03428093647,254681.689803012,2009.17656,962.3521996928052,2065480.769230769,971938.5472710554,814.06269,374.8653530643693,834548.4740802675,375719.3854022322,1317.84992,566.147276726854,1341728.1145484948,561760.102445992,0.38214,100000,0,1088108,11372.366220735785,0,0.0,0,0.0,48691,508.246237458194,0,0.0,45187,468.3319397993311,1051411,0,37760,0,0,0,0,0,92,0.951086956521739,0,0.0,1,0.0104515050167224,0,0.0,0.04554,0.1191709844559585,0.2999560825647782,0.01366,0.3693086003372681,0.6306913996627319,23.16155555296709,3.990977135807338,0.2994741212288956,0.3050096872405203,0.2026017160254636,0.1929144755051204,11.64451974871463,6.604350215580508,14.800085249788882,11256.557870156306,41.697384941257454,13.511479446577106,12.372865959700306,8.11987342409531,7.693166110884735,0.6036534735676723,0.823049001814882,0.6913123844731978,0.6092896174863388,0.1147776183644189,0.7789954337899543,0.9405286343612336,0.8415841584158416,0.7880434782608695,0.1688311688311688,0.5274027005559968,0.7407407407407407,0.6328626444159179,0.5492700729927007,0.0994475138121546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022395168318437,0.0047164070107108,0.006934221346843,0.0094816109592382,0.0116703804320177,0.0140473474044495,0.0162578407873935,0.0185173836662989,0.0205983124520582,0.0227621954967321,0.0251246486242485,0.0275268949785764,0.0295842766001234,0.0315978233984664,0.033796129032258,0.0358439248373786,0.0379135624656767,0.0398181402977018,0.0417212756662297,0.044096342848805,0.0582889376371043,0.0722399623095848,0.0853430724345654,0.098309079621621,0.1101683288480818,0.1257912229819844,0.1357352191641182,0.1456352037827878,0.1546897546897546,0.1636240703177822,0.1741299966590147,0.1854258729746122,0.1957281426565204,0.2050518432549024,0.2133042433858935,0.2234454592872918,0.2316848281642917,0.2392271728721906,0.2464555121330546,0.2520009173259947,0.2575067505707564,0.2639789041898623,0.2692088787706317,0.2737855222734255,0.2779258069618328,0.2822533890883075,0.2861954970071877,0.2888945426790484,0.2918058252427184,0.2945471800076447,0.291732256979482,0.28915364637012,0.2854933933089682,0.281563891570953,0.2787795141207723,0.2743652493117161,0.2719958268786949,0.2718003273322422,0.2713277414075286,0.2702668994761786,0.2705448693960033,0.2717807894424908,0.2724813354584346,0.2737174039450731,0.2748030927090107,0.2758997579826684,0.275334391294491,0.2792358283745694,0.2838242462224079,0.289950123708911,0.2953029210241615,0.2986992552187139,0.3007114135477884,0.3053678818026579,0.3086453744493392,0.3116219667943806,0.3133072994893361,0.3195691202872531,0.3257409440175631,0.333965844402277,0.0,2.489190062036858,46.99526223082038,137.6247594983632,180.59300365160968,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95648,48910,466.868099698896,4770,48.61575777852125,3802,39.0807962529274,1431,14.542907326865173,77.35161970545354,79.75647002325148,63.31721993396855,65.09392232500913,77.16898607404706,79.58037529051798,63.24744724411232,65.02935453439613,0.1826336314064889,176.09473273350318,0.0697726898562365,64.56779061299756,239.1818,168.26152169010942,250064.3819003011,175917.24544756944,562.82196,380.9545725067925,587715.5612244897,397575.79075852566,503.02012,247.71925392295245,521745.6925393108,255811.4215519394,2177.93828,1034.4163999953507,2240932.4606891936,1045508.8677252238,876.30548,402.55751885623954,899503.993810639,404238.186024354,1396.43484,599.0382266078507,1420860.049347608,591842.7926874554,0.38118,100000,0,1087190,11366.56281365005,0,0.0,0,0.0,49017,511.74096687855473,0,0.0,45368,470.14051522248246,1053692,0,37779,0,0,0,0,0,98,1.0245901639344264,0,0.0,0,0.0,0,0.0,0.0477,0.1251377302062018,0.3,0.01431,0.3618130766145206,0.6381869233854793,23.220369894960637,4.073242126128232,0.3011572856391373,0.2840610205155181,0.2041031036296686,0.2106785902156759,11.382831474793882,6.1208683546977545,15.268225781687052,11272.58648228646,43.51474699322754,13.246410140928116,12.939798436975035,8.537806978519662,8.790731436804714,0.5775907417148869,0.7759259259259259,0.7126637554585152,0.5760309278350515,0.1186017478152309,0.7557058326289096,0.9238476953907816,0.8892405063291139,0.6772486772486772,0.1340782122905028,0.4971363115693012,0.648881239242685,0.6453558504221955,0.5434412265758092,0.1141479099678456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0043705318663489,0.0066373028599265,0.0090628302040152,0.0113519616718713,0.0138215522509676,0.0160607760159078,0.0184926121452859,0.02060327198364,0.0227286694663525,0.0249194657036748,0.0271081242164539,0.0291744705373865,0.0311961978989474,0.0334046047534938,0.0355384042377089,0.0374055533099095,0.0394066169066428,0.0413961714523512,0.0434483405799368,0.0578357819063342,0.0721517794507208,0.0856057266410563,0.098628897330401,0.1110161263086795,0.1264209657274709,0.1375195098903199,0.1469666609822646,0.1561446865872837,0.1638442953020134,0.1751461168503461,0.1864707921650199,0.1973939169624001,0.2065391098754351,0.2144674103357522,0.2237421157065103,0.2315994101085936,0.2398455441977754,0.2473549178094632,0.2537074148296593,0.2595047248921429,0.2642404693453007,0.2700344105856894,0.2736588811339502,0.2775189848848776,0.281910901686741,0.2857642183052878,0.2886686882271591,0.2913128758355485,0.2948662328271872,0.2913545442341254,0.2874026543819238,0.2845830934898283,0.2818726246688932,0.278935836318953,0.2755070916577703,0.2712446622441422,0.2715504560164754,0.2710243802848053,0.270805929823314,0.2714925373134328,0.2724057298933013,0.2734962601829281,0.2747747747747748,0.275779090822453,0.2761796651273187,0.2769673541942947,0.2826987141567296,0.2872816916079302,0.2920083173133508,0.2949802087081684,0.2990002082899396,0.3013960958734865,0.3028669810614567,0.309548017376837,0.3093669098611438,0.3161094224924012,0.3244107071514183,0.3276139410187667,0.3316042978881067,0.0,2.567146304650148,50.98203758651772,134.0904245569809,193.39619334318184,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95788,48970,467.3654319956571,4676,47.60512799098008,3779,38.83576230843112,1434,14.552971144611016,77.3507064425629,79.67955997535894,63.34838135415546,65.0702031921731,77.16539931605118,79.49964830953347,63.277251244858576,65.0041134742635,0.1853071265117165,179.9116658254718,0.071130109296881,66.08971790959117,239.81474,168.72572960108656,250359.66926963712,176144.73901019606,556.61826,375.6719375499994,580477.6903161147,391575.3398567666,501.14662,245.81040021706048,519801.4678247797,253988.2686161896,2163.764,1030.7129293508465,2224290.14072744,1041465.7883564197,860.88558,397.6783249422433,881774.4185075375,398315.9887583946,1397.02006,604.7706249029097,1418394.6005762725,596809.9787901763,0.38223,100000,0,1090067,11379.984966801689,0,0.0,0,0.0,48491,505.5852507620996,0,0.0,45256,469.0462270848123,1058830,0,37982,0,0,0,0,0,91,0.950014615609471,0,0.0,3,0.0313191631519605,0,0.0,0.04676,0.1223347199330246,0.306672369546621,0.01434,0.3658838071693449,0.6341161928306551,22.899768040783904,4.028682286056828,0.2987562847314104,0.2934638793331569,0.2021698862132839,0.2056099497221487,11.40724172588203,6.267689564998846,15.33728981573831,11253.732369015115,43.4866219727535,13.577166172965468,12.795326468665046,8.461512193745184,8.652617137377797,0.5869277586663139,0.7871956717763751,0.7147918511957484,0.5929319371727748,0.1093951093951094,0.7517241379310344,0.918032786885246,0.869281045751634,0.7374301675977654,0.1390374331550802,0.5139366170294005,0.6843800322061192,0.6573511543134872,0.5487179487179488,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0046532846715328,0.0067581965965478,0.0090809361287177,0.0114486741499918,0.0137538558644771,0.015979780685663,0.0180324522910501,0.0200907455853499,0.0222679315179238,0.024397241605443,0.0263911263428999,0.0287446688248291,0.0307494338068766,0.0326898486160953,0.0345376215222175,0.0364345657550264,0.0384838682922783,0.0407423562645397,0.0429147015647937,0.0576622075672517,0.0720641592689022,0.0855225914666107,0.0982217925004203,0.1102328179509069,0.1265460157720036,0.1374168849486197,0.1466656733573146,0.1556701471184848,0.163779797633339,0.1751706172361084,0.1856071250999805,0.196990111920026,0.2066053402088886,0.2151016414349637,0.2234673333480829,0.2304992199687987,0.2383594882106469,0.2454050991501416,0.2517218497585978,0.2575813566759821,0.264436660828955,0.2692098543597503,0.2727968981858216,0.2776019114846754,0.2814722748640201,0.2852503247726591,0.2895198170731707,0.2928519706217027,0.2952930026851998,0.2920168631347171,0.2879848472370913,0.2849414773286122,0.2821725774117715,0.2793444274854408,0.2755586784181343,0.2714965008451683,0.2718970323003771,0.2720763723150358,0.2723514948508712,0.2716310595989289,0.2728223753034759,0.2732735876711755,0.2749233900731429,0.275897632696136,0.2767053436703262,0.2773855613755409,0.283050900745119,0.288533669856627,0.2935997157184032,0.2986830154405086,0.3015163607342378,0.3065013531373906,0.3107314468766684,0.3118974070953852,0.3132900177200236,0.3137915199755089,0.3168094655242758,0.3152204047685056,0.3176561295296838,0.0,2.3996977710003478,50.16086119541284,137.91347824499823,192.0714495674464,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95729,48458,462.4512948009485,4620,47.007698816450606,3674,37.73151291667102,1379,14.00829424730228,77.31652017658898,79.67686859655159,63.31665033110207,65.06236614513124,77.1353415053788,79.50014136197504,63.24796187431341,64.99759335428155,0.1811786712101764,176.72723457654627,0.0686884567886565,64.77279084968757,240.24616,168.98447887806807,250964.63976433477,176523.58102358537,553.98208,374.426080531716,578082.5141806558,390515.52876528125,490.38712,241.40608654863405,507438.2371068329,248506.22526915857,2082.45972,996.0250972504522,2141057.067346363,1006150.5889024776,838.56476,386.3952067281885,860298.4362105527,387965.3316426451,1332.07162,575.8298346347253,1354736.6628712302,571608.7728666213,0.37942,100000,0,1092028,11407.48362565158,0,0.0,0,0.0,48408,505.01937761806767,0,0.0,44327,458.3459557709785,1054356,0,37832,0,0,0,0,0,88,0.919261665743923,0,0.0,0,0.0,0,0.0,0.0462,0.1217647989035896,0.2984848484848484,0.01379,0.3541927409261577,0.6458072590738423,22.77916385645913,3.98394021052484,0.3176374523679913,0.2827980402830702,0.2068590092542188,0.1927054980947196,11.399429004754216,6.340162622517725,14.843248607507409,11165.862332264873,42.28085502535145,12.59960898094542,13.438112560272163,8.44258882561527,7.800544658518593,0.5827436037016875,0.8036573628488932,0.6786632390745502,0.5697368421052632,0.1144067796610169,0.7530755711775043,0.919047619047619,0.8571428571428571,0.75,0.1077844311377245,0.5063091482649842,0.7253634894991923,0.5954773869346733,0.5137931034482759,0.1164510166358595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0048255796271327,0.0070235980715554,0.0090837964985724,0.0109354654947916,0.0131688835475526,0.0153488419528214,0.0173913931496497,0.019560327198364,0.0216127116735262,0.02411639853579,0.0262144595385515,0.0283093565868355,0.0302222130691764,0.0321512563436068,0.0342201787467066,0.0363952549531085,0.0386179283447088,0.0407055913017265,0.0429849875503974,0.0570566494748491,0.0714181072370348,0.0846206281789103,0.0976225276285212,0.1096068073261,0.1248281405334517,0.1354450656115077,0.1441816401260325,0.1535437276981261,0.1628690353587367,0.1746033455767511,0.1854292453850981,0.1952720629811665,0.2034002077297327,0.2109127333568158,0.2199711847500831,0.2275731927912637,0.2358209291074582,0.2433616267986019,0.2498568385367753,0.2562809420256327,0.2616839914408989,0.2673064634463825,0.2711937560694889,0.2756517724809874,0.2792650594981195,0.283275767132202,0.2861650022263214,0.2888710637306906,0.2926452940168009,0.289252751392514,0.2860858794384806,0.2830781809467422,0.2802954739291961,0.2771993405320302,0.2737719969395562,0.2695237192250561,0.2692099522723918,0.2696042459511579,0.2704028833458231,0.2730045279347378,0.2737987307343608,0.2747273411056788,0.275289661319073,0.2761781671094516,0.2782336344575881,0.2798571954778568,0.2838288976942997,0.2888370635942776,0.2932147355163728,0.2995889235217057,0.3062711148648648,0.3088556965189675,0.3140688411243048,0.3167395552247138,0.3197069943289225,0.3225609756097561,0.3248241206030151,0.3263186663022683,0.3212927756653992,0.0,2.511812862185261,48.93987643685988,133.86804398762155,185.4447222037073,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95681,48697,465.7037447351094,4656,47.5747536083444,3658,37.67728180098453,1387,14.10938430827437,77.40264542862671,79.78387768307276,63.35728834693722,65.1122489288931,77.22648900493326,79.61235101921343,63.289868284612346,65.049077260383,0.176156423693456,171.5266638593249,0.0674200623248708,63.17166851009404,241.19766,169.68956219861315,252084.76081980747,177348.85779046314,561.94696,379.1326593946855,586739.3944461283,395674.5981325085,498.03994,243.52501414283577,517166.6161515871,251899.34344900493,2107.11856,998.1658788216188,2169590.660632728,1010760.3052493376,866.63954,397.45173598740143,886083.339429981,395997.91541484377,1352.25946,580.4397579731105,1376401.918876266,575450.1490822285,0.379,100000,0,1096353,11458.39821908216,0,0.0,0,0.0,48947,510.9582884794264,0,0.0,44956,466.5503077936058,1050290,0,37640,0,0,0,0,0,95,0.9928825994711594,0,0.0,1,0.0104513957839069,0,0.0,0.04656,0.1228496042216358,0.2978951890034364,0.01387,0.3673259167696745,0.6326740832303255,23.08770682263748,4.077387084367752,0.3015308911973756,0.2908693275013668,0.1951886276653909,0.2124111536358666,11.02488584460228,5.923300127303839,14.91113660541427,11155.578151914682,41.98896450693601,13.11398063106742,12.59017559792274,7.853651752192987,8.431156525752863,0.5932203389830508,0.8223684210526315,0.7098821396192203,0.5742296918767507,0.1312741312741312,0.7537912578055308,0.905829596412556,0.8871951219512195,0.6842105263157895,0.1875,0.5222703981080016,0.7621359223300971,0.6348387096774194,0.5395948434622467,0.1148086522462562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683314599345,0.0047432272188269,0.0069892473118279,0.008998303931426,0.0111550624866535,0.0134716819746247,0.0154148867841813,0.0174727753339933,0.0193960451688723,0.0213885136518072,0.0236372209352385,0.0257063074901445,0.027832613612996,0.0297740427197264,0.0319748245976062,0.0339727556483452,0.0361684062292909,0.0383749286566699,0.0403852354158649,0.0423471780707697,0.0572903064049392,0.0704577818730105,0.0841396100489012,0.0974090866057246,0.1094305392947926,0.1245728191292387,0.1352888737954748,0.1454183479010742,0.1547027454500764,0.1632062116597314,0.1749534240084429,0.1853843823045623,0.1955545406104894,0.2049877547450363,0.2138127502309824,0.2228027451848572,0.2313985109892559,0.2385557053009883,0.2453654945926051,0.2520630929249057,0.2578307134778293,0.2627386492191782,0.2678114120493303,0.2720545161097495,0.2758282238324891,0.2794953146904744,0.282402318377136,0.2849059236986005,0.2875782409498613,0.2907207550642146,0.2881969587255611,0.2845485041418498,0.281204461383253,0.2774943595786569,0.2747908846392575,0.2707051008592845,0.2681804572887285,0.2687869774131337,0.2686035263970676,0.2691543700340522,0.2691512928867956,0.2688620176880332,0.2700714803687972,0.2705478693967902,0.2721684852527755,0.2731382223025857,0.2749025368664896,0.2812422283014175,0.2872536410719872,0.2912152614225153,0.2939583991336912,0.2999736495388669,0.3071944236992781,0.3095524181435866,0.3145011169024572,0.3103007780745558,0.3158291836426739,0.3154761904761904,0.3181695827725437,0.3151447661469933,0.0,2.0215217443802107,48.72020925284884,132.60112305103866,186.38423066208017,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95726,49025,468.2322462027036,4727,48.012034348035016,3766,38.73555773770971,1399,14.30123477425151,77.33907921770925,79.70561620319148,63.32552877917672,65.07536306163718,77.15662389934009,79.52599725342031,63.25618914133472,65.0090461500352,0.1824553183691648,179.618949771168,0.069339637841999,66.31691160197306,239.99272,168.76908633859216,250707.7492008441,176304.12380182202,558.60979,376.9306558859959,582900.1107327163,393110.6035177757,493.37213,242.9632019848732,511457.3679042266,250783.2031931836,2156.01256,1013.3134761440436,2221703.1945344,1028280.3039470424,878.49615,396.0222075261305,903954.8398554206,400232.3102197215,1364.98234,585.0139271946892,1397907.360591689,587829.5846931173,0.38142,100000,0,1090876,11395.806781856549,0,0.0,0,0.0,48694,508.0646846206882,0,0.0,44601,461.9434636357938,1054598,0,37856,0,0,0,0,0,91,0.9401834402356728,0,0.0,0,0.0,0,0.0,0.04727,0.1239316239316239,0.2959593822720541,0.01399,0.3549633848657445,0.6450366151342555,23.252872328805683,4.115296715947136,0.3082846521508232,0.2788104089219331,0.2047265002655337,0.20817843866171,11.25151915735995,6.028987444290815,14.9813278674311,11238.39076768446,42.746133692674974,12.730481064894898,13.020271208349769,8.525505773610673,8.469875645819636,0.575942644715879,0.7942857142857143,0.6744186046511628,0.5888456549935149,0.125,0.7631578947368421,0.9262672811059908,0.8741721854304636,0.7346938775510204,0.1823529411764705,0.4984984984984985,0.7012987012987013,0.6041909196740396,0.5391304347826087,0.1091205211726384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027953330092367,0.0051303889362047,0.0074804867898866,0.0097951552593074,0.0120647386142844,0.0144007984601126,0.0164278794676999,0.0188567519831749,0.0210638254361029,0.023269628628198,0.0251879352251633,0.0269304246009736,0.0287971038341286,0.0309599118080382,0.0328767406092261,0.0348596719819652,0.036890468149468,0.03891737063866,0.0408984557791296,0.0429433152406055,0.0577186113286348,0.0707477583988114,0.0839379324806039,0.0962124876448444,0.1083073224228108,0.1243019123371128,0.1346849570854154,0.1448252366199282,0.154265380053217,0.1620528337517972,0.1744363981206086,0.185998917162967,0.1966902764631001,0.2059177554548836,0.2144917642913767,0.223764285951824,0.2316316048059314,0.239832091651849,0.2468108770655529,0.253826764436297,0.2597794772708866,0.2644699609457215,0.2702373634687219,0.27497606510292,0.277913857496241,0.2811919894766606,0.2840723315570753,0.2872364715731791,0.2906976744186046,0.2933721144481587,0.2892896922849819,0.2857691885362907,0.2833577093997862,0.2787542933010073,0.2769819378948305,0.2733814048702985,0.2696588415452378,0.2693120566213935,0.2702310659066862,0.2719378020292801,0.2733864035579474,0.2743221690590112,0.2747255036773132,0.2749031482388565,0.2759551098376313,0.2759841807325458,0.2783724091063541,0.2835066029783647,0.2871583937534858,0.2931381446553289,0.2954555751891622,0.3021175224986765,0.3042959427207637,0.3066009104704097,0.3119189289698773,0.3170703033153068,0.3242085945863281,0.3243843358901897,0.3303204601479046,0.3305629013978088,0.0,2.352184602733028,47.35699295391934,135.47667756569138,197.6596215932343,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95696,48761,465.8397425179736,4691,48.027085771610096,3738,38.58050493228557,1404,14.368416652733655,77.30793472821749,79.68315647319591,63.31631099018998,65.06988389467149,77.1329485744425,79.51021635266115,63.24960458245484,65.00577002153419,0.174986153774995,172.94012053476138,0.0667064077351398,64.11387313730188,240.9539,169.59737758385364,251790.75405450596,177224.93813303966,559.69976,378.12757029627846,584370.2035612774,394632.9530322151,496.44722,244.2060062935593,515552.948921585,252751.54711501044,2138.57092,1015.0031680407872,2209414.270188932,1035358.8358351312,863.88038,391.0920603246997,891804.6835813409,397796.6771211513,1359.06342,579.3629407266209,1392146.8608928274,581514.7721853828,0.3802,100000,0,1095245,11445.034275204816,0,0.0,0,0.0,48829,509.7287242935964,0,0.0,44928,466.25773282059856,1046909,0,37561,0,0,0,0,0,93,0.9718274536030764,0,0.0,0,0.0,0,0.0,0.04691,0.1233824302998422,0.2992965252611383,0.01404,0.3637669265490357,0.6362330734509642,23.18627240156608,3.932938787687541,0.3127340823970037,0.2899946495452113,0.1987693953986088,0.198501872659176,11.187487670008252,6.171774060603278,15.002598255485315,11235.614896655628,42.94235524357164,13.394205218667494,13.314966605595458,8.186228334241193,8.046955085067497,0.5965757089352595,0.8062730627306273,0.7194183062446535,0.576043068640646,0.1172506738544474,0.7679033649698016,0.9079754601226994,0.8797653958944281,0.7361963190184049,0.1566265060240964,0.5195812330360605,0.7226890756302521,0.6533816425120773,0.5310344827586206,0.1059027777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023996112022355,0.0045093429532649,0.0066951379096967,0.0087856504428374,0.0108819461394516,0.0133090301820699,0.0156519256457056,0.017590607452782,0.0195873970025966,0.0218750959658515,0.0239984417927584,0.0262323021796938,0.0284771072442305,0.0306067786133717,0.0328455855037767,0.0347661580449075,0.036751144911619,0.0388592429559186,0.040891265226301,0.0429588549865004,0.0568658992625399,0.0710599859743141,0.0848974453129098,0.0975578973938284,0.1102724129206376,0.1257957405409978,0.1363496525751869,0.1463012240553486,0.1560977694214169,0.1647037370746986,0.1754956546086994,0.186257328919755,0.1961187214611872,0.2053681736183239,0.2136571629707849,0.2233914112603981,0.2319270722917108,0.2394060408346926,0.2467155272174445,0.2521071919377004,0.2578191920361153,0.263343780698882,0.2688748461611284,0.2733998417228231,0.2771828315120279,0.2799570852499044,0.2833291583166332,0.286858729430944,0.2905977366121777,0.293023317225171,0.2903655827105635,0.2875313162459048,0.2853238281745305,0.2813493669422443,0.2786329866270431,0.2746913108006793,0.2713693471312383,0.2712526678706288,0.2709611277231952,0.2708207012162499,0.2709358684057862,0.2724043338398689,0.2728506976355585,0.2748876329491344,0.2765045381612663,0.2795413774276577,0.2808446626741975,0.2853029544316475,0.2897657645040439,0.2940203261640274,0.2993526775609977,0.3048607088314287,0.3093318332395774,0.3134914639673666,0.3194366722626375,0.3234017595307918,0.3287876517308556,0.3286422200198216,0.3310197544046983,0.3265306122448979,0.0,1.7380550669898152,50.66788501344529,135.61724794182877,188.4298294908256,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95714,48679,464.88496980588,4824,49.14641536243392,3803,39.23146039241908,1467,14.919447520738869,77.38171245272493,79.75457926908216,63.34258245905804,65.0946968803485,77.18834440252294,79.56775276806309,63.2681190626292,65.02552328290908,0.1933680502019825,186.82650101906967,0.0744633964288397,69.17359743941631,239.98722,168.7649766567713,250733.6648766116,176322.14373735432,558.23799,376.7927589330613,582747.9783521742,393177.7680726554,497.27966,243.679337391656,517144.00192239386,252617.01447004627,2205.58752,1048.6372157690607,2274405.834047266,1065648.1766189495,898.14754,412.4686042266151,920853.4801596422,413426.2116582887,1435.48216,625.8619039547333,1460266.0634807865,619112.3236168327,0.37959,100000,0,1090851,11396.984767118707,0,0.0,0,0.0,48621,507.4597237603695,0,0.0,44910,466.8282591888334,1056532,0,37912,0,0,0,0,0,103,1.076122615291389,0,0.0,0,0.0,0,0.0,0.04824,0.1270844858926736,0.3041044776119403,0.01467,0.3589641434262948,0.6410358565737052,22.957039001324613,4.124926723736327,0.2937154877728109,0.2747830660005259,0.2153562976597423,0.2161451485669208,11.116172602552403,5.892381681714481,15.843583060659512,11162.9871213176,43.57420051176824,12.820076413015338,12.598923352232244,9.103768279144356,9.051432467376308,0.5745464107283723,0.8181818181818182,0.6991942703670546,0.5653235653235653,0.1046228710462287,0.7450130095403296,0.9247311827956988,0.8823529411764706,0.6951871657754011,0.1487179487179487,0.5003773584905661,0.7327586206896551,0.6300863131935882,0.5268987341772152,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0045819014891179,0.0068900434306124,0.0090608049082745,0.0111682974957788,0.0132586558044806,0.0154881468264083,0.0176609906488627,0.0197806241885855,0.0217422458798239,0.0240101699780607,0.0262012320328542,0.0284550755339825,0.0306663782358334,0.0329201969019927,0.0348221670802315,0.0369952254202355,0.0388203430634968,0.0406976744186046,0.0427188310943899,0.0580488161508976,0.0719468146364445,0.0855586917515713,0.0979432959865341,0.1105508555032806,0.1257257680714927,0.1364162095054169,0.1458155877342419,0.1540795504321535,0.162962088866957,0.1749207991207086,0.1858780733378804,0.1962473486702561,0.2048366641885687,0.213070213070213,0.2228569530705104,0.230486132021814,0.2378140675259239,0.2449273554197053,0.2516430419748563,0.2569409097219008,0.2628896707304244,0.2679232780755623,0.2718755990032586,0.2757695343330702,0.2783539439326009,0.2813968603139686,0.2844593048386686,0.2880737742023099,0.2908036890645586,0.2876681042010936,0.2846147513994073,0.281620095250137,0.279276296850711,0.2761949820364593,0.272350539338168,0.2685017410622843,0.2686338191373035,0.2685260586319218,0.2689476578158534,0.2704333414030056,0.2705542679813018,0.2697028222540651,0.2700155245065425,0.2709346685741535,0.2732642112864954,0.2739625620207487,0.2782276831425114,0.281743284408751,0.2861510720865509,0.2890688259109312,0.2916622857743665,0.2958364685226988,0.3007279344858962,0.3032336222160097,0.30574523192842,0.3143117316740021,0.3148371531966224,0.3192307692307692,0.3267023718439173,0.0,1.951548530572537,50.21921380556697,141.10036010752495,190.7162319147018,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95866,48808,465.5039325725492,4737,48.2757181899735,3743,38.55381469968498,1381,14.08215634322909,77.44506122741345,79.72427670292538,63.40474875222951,65.0849382340728,77.26359319710214,79.5448800727983,63.33577947996843,65.01869070326231,0.1814680303113078,179.39663012707285,0.0689692722610786,66.24753081048596,241.04344,169.58648060697652,251437.6525566937,176899.27670600265,559.60314,377.6726239265701,583242.6616318611,393466.811931832,497.04792,243.3605596556,515781.1111342916,251723.59777502707,2134.0962,1012.0141138401812,2199716.3958024746,1029279.63264993,837.43045,381.9302533920418,862763.8891786452,387705.0885045129,1339.40646,576.833526339351,1367787.0777960904,577155.1479262464,0.38272,100000,0,1095652,11428.98420712244,0,0.0,0,0.0,48781,508.3345503098074,0,0.0,44970,466.3384307262221,1053367,0,37825,0,0,0,0,0,83,0.8657918344355663,0,0.0,2,0.0208624538418208,0,0.0,0.04737,0.1237719481605351,0.2915347266202238,0.01381,0.3595959595959596,0.6404040404040404,23.275509068740018,3.9834370945716495,0.3133849853059043,0.2880042746460058,0.1995725353994122,0.1990382046486775,11.3489372005851,6.188808477153132,14.742003236668232,11232.2722472807,42.94309174409643,13.140790265389986,13.337101297065246,8.429199641009834,8.036000540631353,0.5808175260486241,0.7949907235621522,0.6845694799658995,0.5903614457831325,0.097986577181208,0.7511032656663724,0.9051724137931034,0.843558282208589,0.7541899441340782,0.1280487804878048,0.506896551724138,0.7117263843648208,0.6233766233766234,0.5387323943661971,0.0895008605851979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022470090487661,0.0045786525390249,0.0067935471441752,0.008952133490317,0.011095982278944,0.0132972500025434,0.0153589179499714,0.0173962698971111,0.0195141377937076,0.021482617586912,0.023653249505944,0.0259163538654031,0.0284293989564931,0.0305396120060071,0.0325575165620911,0.0345066061106523,0.0366819723670058,0.0385783120045593,0.0406955618998183,0.0427643900611811,0.0576090923309525,0.0709226526263006,0.084837507328922,0.0982046358380289,0.1102647996380966,0.1258970786896318,0.1364478658181471,0.1468566389358153,0.1564359603284632,0.1658764221725123,0.1772102921261366,0.1879096789520858,0.1981673886373753,0.2074657990413905,0.2156673220346429,0.2244557040446057,0.2322206742825299,0.2396440729380835,0.2472685646930818,0.2538807353092577,0.2595362493064546,0.2639409983987283,0.2688905706785233,0.2725423809922596,0.2756788880668518,0.2793573071860044,0.283216389628907,0.2858650057200966,0.2889483965278586,0.2926077217024641,0.2890818191592302,0.2861121400447243,0.2827965435978005,0.2805076098360184,0.2779066160504586,0.2744558190474742,0.2712786019612773,0.2717336417390171,0.2720766556431782,0.2720288880235069,0.2728659387265388,0.27240058910162,0.2738942287687763,0.2745641662600364,0.2738782127700157,0.2745877312962915,0.2752549439405037,0.2797502562668903,0.2843167755539424,0.2891311166875784,0.2931852052567403,0.297502371166614,0.3036326250856751,0.3074647246244879,0.3091674462114125,0.3107804935647656,0.3162953921269453,0.3174830907972945,0.3223140495867768,0.3249321442419542,0.0,1.8961861489802732,49.31579246417549,141.73274811610503,185.0971836664981,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95673,48509,463.2236890240716,4607,46.690288796212094,3664,37.58636187848191,1384,13.995589142182224,77.29747507811412,79.6996820374552,63.28577397120039,65.06543826680273,77.11656033352101,79.52674625009791,63.21577503371912,65.00161277116885,0.1809147445931103,172.93578735728943,0.069998937481273,63.8254956338784,241.54702,169.9062244247937,252471.00017768855,177590.1353952878,559.59693,378.4315496262254,584177.9080827401,394820.2405573834,495.05955,243.7474017565121,513152.3418310286,251508.6718913292,2075.93624,996.0281855493045,2129231.110135566,1000853.325459884,833.4981,385.9583379866268,850143.2379041108,382553.1263257275,1342.9794,580.7618537347095,1358455.0918231893,566320.0368440879,0.3792,100000,0,1097941,11475.9545535313,0,0.0,0,0.0,48892,510.2798072601465,0,0.0,44767,463.6417798124863,1041758,0,37404,0,0,0,0,0,98,1.0138701619056578,0,0.0,0,0.0,0,0.0,0.04607,0.1214926160337552,0.3004124158888647,0.01384,0.3702854761408626,0.6297145238591373,22.8906983774632,4.087658798140311,0.2985807860262008,0.298853711790393,0.2014192139737991,0.2011462882096069,11.58514421206601,6.329328519475731,14.796632050562607,11213.71688000892,42.14348023800201,13.635746269665711,12.326024332586009,8.23070094632867,7.95100868942162,0.5900655021834061,0.8210045662100457,0.7074954296160878,0.5528455284552846,0.1099050203527815,0.7627264883520276,0.926441351888668,0.8451612903225807,0.7103825136612022,0.1595092024539877,0.5101796407185629,0.731418918918919,0.6530612244897959,0.5009009009009009,0.0958188153310104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025538124771981,0.0046659769135577,0.0072287933397634,0.0098465603089116,0.01202392578125,0.0139949886940047,0.0161662110888988,0.0184840995894691,0.0205672090573447,0.0227135410799684,0.0245453519739878,0.0265250354420496,0.0286413859797123,0.0305116183213972,0.0328325847916989,0.034816247582205,0.036752969465807,0.0388656989180321,0.0409180286935985,0.0429485576121394,0.0572437350492525,0.0712685551577581,0.0845060076604228,0.0970650115716389,0.1086965694755053,0.1247936857251682,0.1345633273532128,0.1440819673877155,0.1531749256795773,0.1619317571775215,0.1733892711546343,0.1841654562403798,0.1948916240060995,0.2042200287032066,0.2124575635994885,0.2217870773054051,0.2306540301309848,0.2386965239135822,0.2453477539705982,0.2521546784027873,0.2576019090203528,0.2628891335410274,0.2673725852491442,0.2712348493939757,0.2746557680144018,0.2792307122942932,0.2833575508567992,0.2869354735970444,0.2893863152980235,0.2924451021324948,0.2889479076790336,0.2858343899884227,0.2829871888932784,0.2808423244916259,0.2786641929499072,0.2748868778280543,0.2720099733308084,0.2717927765974832,0.2725343744695297,0.273251481494624,0.2740355117597843,0.2752248633183751,0.2768827821314985,0.2783870610391049,0.2794692205069563,0.28134596031275,0.2849366838706038,0.2888204553938036,0.2931680899812539,0.2970013344846534,0.3028076975077741,0.3088829424418909,0.3114152410575427,0.3160893687209476,0.3188217858466098,0.3242833838266138,0.3251097321023157,0.3310027966440271,0.3347767253044655,0.338001514004542,0.0,2.690752478541513,49.59217551578752,133.8653923834932,179.7159563507551,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95827,49277,471.3181045008192,4691,47.78402746616298,3726,38.277312239765415,1439,14.6305321047304,77.32864418348662,79.64034879492654,63.32870225298407,65.0388406933578,77.14764136581935,79.46415915648927,63.25922372936822,64.97389848405159,0.1810028176672631,176.18963843726476,0.0694785236158423,64.94220930620997,240.01868,168.94586121516167,250470.59805691507,176302.7687574083,560.07861,378.9833739871765,583832.5941540485,394852.03200160345,502.51942,246.70929873530952,520692.8318741064,254597.7018854556,2140.12732,1021.2028450390916,2198917.8415269186,1031817.3927871648,864.10488,396.8899300867823,887150.2812359773,399844.495880422,1397.23788,596.6456306967387,1421756.5613031818,591383.680168259,0.38189,100000,0,1090994,11385.027184405231,0,0.0,0,0.0,48868,509.3032235173803,0,0.0,45261,468.6570590752085,1049392,0,37720,0,0,0,0,0,93,0.9704989199286214,0,0.0,2,0.020870944514594,0,0.0,0.04691,0.1228364188640708,0.3067576209763377,0.01439,0.3623128972729136,0.6376871027270863,22.86962493062325,4.010277905670781,0.3164251207729469,0.2777777777777778,0.2058507783145464,0.1999463231347289,11.458880906816685,6.396841888471678,15.23136582427211,11248.092887484556,42.87186976317464,12.79176341451806,13.358236689520783,8.583032576665211,8.138837082470584,0.5942028985507246,0.8251207729468599,0.6938083121289228,0.5827900912646675,0.1275167785234899,0.7436347673397717,0.9234234234234234,0.8558282208588958,0.6907216494845361,0.1371428571428571,0.5284112872052571,0.751269035532995,0.6318874560375146,0.5462478184991274,0.1245614035087719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598521294373,0.0047338117828325,0.0070004565515142,0.0093551925889809,0.0113382143583485,0.0132763184687436,0.0155335847518091,0.0177880739281741,0.0201013755186297,0.022245871109019,0.0245906678415541,0.026487007922499,0.0284974359501371,0.0302758904673666,0.0322457565945511,0.0342775677183412,0.0360957032866959,0.0382900630391506,0.0402401529001163,0.0419459594487697,0.0563152569598731,0.0704188536417055,0.0837691944866621,0.0970365699873896,0.1094807412560875,0.1259686029917014,0.1362821722854385,0.1464782437508646,0.1559936773752563,0.164490329774004,0.1759676064528635,0.1867284117589777,0.1965029414003458,0.2058106616240558,0.2140114635246487,0.2225828247361017,0.2309770775878432,0.239650533094651,0.2466957351137757,0.253511920461452,0.2584425972941954,0.2639872438212259,0.2687474040230226,0.2722600477923076,0.2766317172257766,0.2815478906413782,0.2855407351744004,0.2887394786772103,0.2923039037793561,0.2940531688699304,0.2905019658533958,0.2867976986814215,0.2846528022559041,0.2814285507644685,0.2787277346129276,0.2761947051708034,0.2716340448424816,0.2719334174353261,0.2719690909400371,0.2711698743580174,0.2724710186861804,0.2744364602815238,0.2759805861645176,0.2777246972558604,0.2791220351951033,0.2806274835727086,0.2816614286927716,0.2867525499859634,0.2911704454706433,0.2960637337624112,0.3013482436758804,0.3056520366277234,0.3096056496468971,0.3126229756319055,0.3174144202966141,0.3200804638504319,0.3228821223997588,0.3246805111821086,0.3224764468371467,0.3314350797266515,0.0,2.315003770451197,49.12370655542158,138.46256920162645,187.54103516325137,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95750,48631,465.51436031331593,4637,47.43603133159269,3654,37.61879895561358,1363,13.890339425587468,77.35098256499538,79.6970980956993,63.33757887846742,65.07013403299372,77.17315707364753,79.52237004118541,63.27014049389668,65.0061221698785,0.1778254913478463,174.72805451389206,0.0674383845707424,64.01186311522622,240.07126,168.88661820057817,250727.1644908616,176382.89107109993,554.70692,374.6639791213797,578807.9895561358,390773.58654974384,491.45087,241.1716935370496,509298.51697127934,248991.3786448811,2100.18684,989.1937894498956,2164420.428198433,1004457.4156751296,837.66422,382.3117785383456,860714.6840731071,385292.830375399,1326.06116,571.8578580089765,1353054.91383812,570313.8933173124,0.37841,100000,0,1091233,11396.689295039165,0,0.0,0,0.0,48472,505.68146214099215,0,0.0,44375,459.5822454308094,1056103,0,37898,0,0,0,0,0,91,0.9503916449086162,0,0.0,0,0.0,0,0.0,0.04637,0.1225390449512433,0.2939400474444684,0.01363,0.3647277996274063,0.6352722003725937,23.00868466441104,4.036387179756971,0.3163656267104543,0.2851669403393541,0.1945812807881773,0.2038861521620142,11.295068964928548,6.104054933824544,14.69176258534119,11095.160331877589,41.91475656570599,12.841756973280615,12.98499137816831,7.928785015647712,8.159223198609364,0.5831964969896004,0.7936660268714012,0.7240484429065744,0.5527426160337553,0.0993288590604026,0.7477313974591652,0.9121621621621622,0.8910891089108911,0.7081081081081081,0.1058823529411764,0.5121473354231975,0.705685618729097,0.6647127784290738,0.4980988593155893,0.097391304347826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022277804218606,0.0045509370470601,0.0067679319756882,0.0088872186560494,0.0112047666012546,0.0135904144312895,0.0159019785731032,0.0180235346947939,0.0201760034342133,0.0219938797858948,0.0241302253111097,0.0260829398480804,0.028149899758392,0.0299660179178251,0.0317013287117273,0.0335393583595171,0.0356717577012684,0.0378960039016696,0.0399650669550029,0.0416089343570617,0.0559012046683508,0.0688663158665564,0.0824333675844569,0.0944741158164767,0.1068277410581575,0.12285282396592,0.1333305052390446,0.1434530904137578,0.1527335654923408,0.1613193885760257,0.1726500145409894,0.1836284143543569,0.1939921911535993,0.2026846665499737,0.2101764310950174,0.2191932624113475,0.2280249229532359,0.2349474157808897,0.241890649996029,0.249111829287859,0.2558427434283599,0.2611391205680395,0.2663032553299672,0.2705941506745998,0.2750166798083338,0.2798007134948948,0.2830603550591557,0.2863039447280855,0.2899675370866152,0.2927247316931677,0.2894496030143991,0.2854981362017029,0.2824982049079927,0.2792159015398838,0.2754640276561966,0.2720517407458373,0.2683759602921184,0.2681283001541438,0.2675825861657518,0.2680137315238078,0.2687263297326542,0.2694636678200692,0.2693975401292474,0.2707184776809532,0.2730962043447123,0.2733937823834197,0.2744250437927332,0.2787882569494275,0.2838752212082306,0.2888853966133658,0.2922945050978976,0.2950931873223123,0.2984041890038648,0.3046974821495678,0.3130096367679763,0.3162022945446031,0.3141064871481028,0.3157157157157157,0.3205793932768516,0.3276320790573926,0.0,2.1515357967365856,47.853111074124506,134.3581037121042,186.09398018929664,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95841,49043,467.83735562024606,4665,47.495330808317945,3714,38.15694744420447,1390,14.117131499045296,77.51248185563044,79.79846343694032,63.42745123530996,65.11103731421936,77.3279954136111,79.618879743337,63.356682009970775,65.04447350737162,0.1844864420193346,179.58369360331972,0.070769225339184,66.56380684773922,241.37212,169.8086132216495,251846.41228701704,177177.42221142256,565.15874,381.6020947162284,589080.9465677527,397558.89933976944,505.7645,248.22621023152965,524188.0719107688,256164.3892270003,2130.20948,1012.958883547216,2189088.219029434,1023354.7683634518,838.09415,387.5826377019868,858611.1058941372,388555.8960735093,1354.9029,589.9446682477394,1376980.8537056164,584375.0930537914,0.38167,100000,0,1097146,11447.564194864412,0,0.0,0,0.0,49214,512.870274725848,0,0.0,45558,471.81268976742734,1050547,0,37665,0,0,0,0,0,107,1.1059984766436075,0,0.0,2,0.0208678957857284,0,0.0,0.04665,0.1222260067597662,0.2979635584137192,0.0139,0.3608311047109648,0.6391688952890352,23.07924404124748,3.959233154937244,0.312331717824448,0.2827140549273021,0.2014001077005923,0.2035541195476575,11.034164842410757,6.027637660744278,14.948461065882531,11206.112456101897,42.40547688115328,12.818037951514054,13.087894132658043,8.287070651670817,8.212474145310368,0.5823909531502424,0.7952380952380952,0.7,0.5882352941176471,0.1005291005291005,0.7615248226950354,0.9138321995464852,0.8727810650887574,0.7297297297297297,0.1585365853658536,0.5042536736272235,0.7093596059113301,0.6289537712895377,0.5417406749555951,0.0844594594594594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022767287960658,0.0044763573388967,0.0065680779249739,0.0091627685157938,0.0111237530222068,0.0134750330519678,0.015780578689092,0.0181718061674008,0.0203506478919261,0.022630125779732,0.0248428123783971,0.0270131681503056,0.0289759766548159,0.0306286278868716,0.0328353900555675,0.0347883570557977,0.0366633552713274,0.0389424572317262,0.0410022542409856,0.0429962000936963,0.0572560880221098,0.0713621012348518,0.084708643760544,0.0972061758218674,0.1097984711605281,0.1256033544925485,0.1358606948301079,0.1463295338550527,0.1558588456244064,0.1641234861383276,0.1755338594868927,0.1869856355977967,0.1976202625093637,0.206475212928587,0.2142080344490459,0.2233539026386216,0.2311137353639108,0.2386728665453646,0.2469822217189446,0.2533167258973157,0.2588193235155052,0.2637046526524195,0.2681607054440855,0.2722638716454971,0.2764912280701754,0.2800967417192526,0.2843330259911784,0.2871679343905433,0.2892950526166647,0.2923573227024759,0.2887895258239846,0.2858197629107018,0.2824019690104604,0.2793218295098912,0.275974025974026,0.2719952508524111,0.2683710599688105,0.2687405134566108,0.2687504242177425,0.2690526465212839,0.2695465971511032,0.2702739833568849,0.2713887618017718,0.2726547613772322,0.2742253353911907,0.2751555349889454,0.2763668033938304,0.2795031055900621,0.2835033779125879,0.286933250591475,0.2912673056443025,0.2952021897433249,0.2991845993501318,0.3001111522786217,0.3044906900328587,0.3073662504296024,0.3091687583050347,0.3077669902912621,0.3061440677966102,0.3033296743505305,0.0,2.315096816558608,48.6624323774325,135.07638035053327,187.70347420669472,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95741,48897,466.5817152526086,4761,48.537199318996045,3793,39.04283431340805,1382,14.10054208750692,77.31288813594676,79.67106440118073,63.318020272784125,65.0617962672743,77.13362732283363,79.49439639382051,63.24972816440231,64.99652578220477,0.1792608131131317,176.66800736022026,0.0682921083818115,65.27048506953292,239.99228,168.89350283611842,250668.24035679596,176406.66259608572,558.11251,376.7997353301369,582308.4363021068,392930.217717254,503.06179,247.08923562357023,522047.9313982516,255466.38427837775,2177.9558,1037.681151016318,2244390.9714751258,1053402.0053060062,869.22862,398.2451618069936,891893.5983538922,400073.5773246928,1339.8103,575.4409224869651,1368755.9352837342,574865.5039985091,0.38091,100000,0,1090874,11394.010925308909,0,0.0,0,0.0,48604,507.0659383127396,0,0.0,45436,471.0938887206108,1053537,0,37831,0,0,0,0,0,88,0.9087016011948904,0,0.0,3,0.0313345379722376,0,0.0,0.04761,0.1249901551547609,0.290275152278933,0.01382,0.3598469593233991,0.6401530406766008,23.14454774134151,3.995819483763877,0.3055628789876087,0.291326127076193,0.2119694173477458,0.1911415765884524,11.59910431353087,6.369089886083801,14.840512911688233,11266.349524878004,43.624781203257946,13.530658895728884,13.239402959643908,8.908063387389113,7.946655960496035,0.6005800158186132,0.8171945701357466,0.7092320966350302,0.5708955223880597,0.1296551724137931,0.776748104465038,0.93125,0.8892128279883382,0.725,0.1524390243902439,0.5203376822716808,0.7296,0.633578431372549,0.5198675496688742,0.1229946524064171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091413640138,0.0048855147528355,0.0074168772004586,0.0097915735586884,0.0119506514376379,0.0140020366598778,0.0162740899357601,0.0181723514818633,0.0206412170037009,0.0227112153264865,0.0249356614819903,0.0270370180212558,0.0292493289315355,0.0314875471231691,0.0333539667801506,0.0352942392360321,0.0372863104051689,0.0393450787524123,0.0413243765987979,0.0433840383413211,0.0573349480101891,0.0716998503855449,0.08508541048415,0.0976543196896258,0.1103074522373581,0.1256452022338805,0.1357540002546581,0.146489696866485,0.1559075470488966,0.1639467307156183,0.1750392971727568,0.1861624474170839,0.195970775620257,0.2049694875215993,0.2143085030309031,0.2224905025086668,0.2306756545612821,0.2391040208806786,0.2462927216986488,0.25236011181889,0.2585548249675866,0.2644448342396071,0.2690719820192819,0.2736478793907218,0.2778310882213611,0.2815584223561158,0.2848041056452622,0.2884104233699177,0.2922810060711188,0.2958363576377433,0.2921032077351935,0.2892757449500158,0.2862171409261788,0.282509785795791,0.2792197180169071,0.2756856919707806,0.271062677205265,0.2707307465038408,0.2705046780031414,0.2700044622936189,0.2710278625025729,0.271842359863368,0.2729816647872029,0.2748397435897436,0.2768644555214724,0.2789387606759949,0.2816465578424414,0.2870047990966406,0.291717651994546,0.296614531775886,0.3019184543516712,0.3071699305116867,0.3104325699745547,0.3111964460507492,0.3110800744878957,0.3111683446499649,0.3098206141684402,0.3104758096761295,0.3114215283483977,0.3164983164983165,0.0,2.2299911273095323,51.531758414416345,134.4204931295568,193.66484233589568,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95783,48595,464.2264284893979,4668,47.44056878569266,3683,37.88772537924266,1360,13.833352473821034,77.37208356525132,79.70955768899343,63.35007434272507,65.07900167648002,77.19906980669212,79.54254169174553,63.283254254009904,65.017180670345,0.1730137585591933,167.01599724790128,0.0668200887151684,61.82100613501973,240.70948,169.32375739934534,251307.1004249188,176778.50704127597,556.57806,375.49864205170354,580537.8616247142,391486.1322486282,491.43015,240.4140843134093,509701.99304678285,248350.85393057557,2109.9202,999.2158205401848,2171580.551872462,1011975.632983081,835.39172,382.2662252838379,857470.1982606518,384395.12782418303,1318.94518,569.8554105996182,1342481.442427153,564040.903646701,0.38084,100000,0,1094134,11423.050019314493,0,0.0,0,0.0,48592,506.7391917146049,0,0.0,44419,460.40529112681793,1056419,0,37893,0,0,0,0,0,100,1.0335863357798356,0,0.0,2,0.0104402660179781,0,0.0,0.04668,0.122571158491755,0.2913453299057412,0.0136,0.3635240839851791,0.6364759160148209,23.159825267636588,4.085191958088451,0.3171327721965788,0.2872658159109422,0.199837089329351,0.1957643225631279,11.37526719485099,6.131833132470088,14.510309668434996,11222.366162334054,42.07568300696983,13.000207283079334,13.191994659599317,8.047637647340293,7.835843416950892,0.5891935921802878,0.8156899810964083,0.6883561643835616,0.5774456521739131,0.1081830790568654,0.7637209302325582,0.9212253829321664,0.86084142394822,0.7108433734939759,0.1118881118881118,0.5172546012269938,0.7354409317803661,0.6263096623981373,0.5385964912280702,0.1072664359861591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020054694621695,0.0042982847410891,0.0065657283188894,0.0088682561127985,0.0108512152954337,0.0129805342889721,0.0153808519096107,0.0174806620813519,0.019835268149117,0.0217687214074445,0.0238470998155359,0.0257394445698803,0.0279593766703671,0.0302724520686175,0.032349877798517,0.03449024085306,0.0365194708403204,0.0383510500388903,0.0401712421288888,0.0422609999375299,0.0570212055434964,0.0713523689990586,0.0847040077156125,0.0975863482089379,0.1093177125036874,0.1243951399894347,0.1352445551375125,0.1457571246278179,0.1553483011780775,0.1635827931644077,0.1746245212376813,0.1855210957008659,0.1953899321857068,0.2042373622529298,0.2124984877313771,0.2215135206962992,0.2300562173738455,0.2384560046760487,0.2451318205517647,0.2518199716130214,0.2579533894386386,0.2635250403122152,0.2687877320038278,0.2736441620903772,0.2768991947220335,0.2800182077653659,0.2837993297654179,0.287739084050903,0.2916736644919578,0.2929397980542647,0.2895588097123606,0.286828399122807,0.2839268392121578,0.2816460715470131,0.2799028176942905,0.2770280584984581,0.272890739601571,0.2728610434412962,0.2728667109770438,0.2733335704631144,0.2754044583612913,0.2764352233879524,0.277061051229764,0.2776939798589237,0.2780800992887489,0.2801854778126052,0.2809689955464783,0.2876986609936178,0.2911617216882574,0.2958523892130579,0.2985067893715884,0.3039390756302521,0.3076205867727499,0.3123588740027096,0.3174070969544565,0.3229653882132834,0.3288762019230769,0.3322920734088246,0.3360021350413664,0.3415361670395227,0.0,2.242183403257914,46.19737826872136,140.25869954252946,187.03330420313617,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95633,49044,469.16859243148286,4733,48.11100770654481,3756,38.55363734275826,1436,14.534731734861396,77.25911226955019,79.65566720975548,63.27736057920528,65.04585652788953,77.07029691689192,79.47434131473928,63.204210509170814,64.97906385941141,0.188815352658267,181.3258950162009,0.0731500700344653,66.79266847811505,238.21028,167.72257666362236,249087.95081195823,175381.4861644227,555.5327,375.9690585135063,580120.1886378133,392356.9254478122,499.34804,245.51091830920925,517977.54959062254,253460.58798879295,2174.14524,1034.0693500341392,2232985.810337436,1040927.2492879456,891.24916,410.931790834915,909868.7482354416,407656.0369160352,1402.28636,611.1679374770258,1421495.425219328,598120.672758885,0.38021,100000,0,1082774,11322.179582361738,0,0.0,0,0.0,48518,506.5824558468311,0,0.0,45148,467.9033388056424,1055177,0,37857,0,0,0,0,0,72,0.7424215490468772,0,0.0,1,0.0104566415358715,0,0.0,0.04733,0.1244838378790668,0.3034016480033805,0.01436,0.3545069570477919,0.6454930429522081,22.91651743348218,4.149085286326058,0.3168264110756124,0.277689030883919,0.1956869009584664,0.2097976570820021,11.426245777351696,6.111653451785871,15.528062861540526,11252.267406923977,43.23688939486909,12.86989972590433,13.55599353017429,8.119472427306373,8.691523711484091,0.5838658146964856,0.8053691275167785,0.7016806722689075,0.5741496598639456,0.1218274111675127,0.752991452991453,0.925925925925926,0.8583815028901735,0.7043010752688172,0.1564245810055866,0.5073472544470224,0.7106164383561644,0.6374407582938388,0.5300546448087432,0.1116584564860427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0047556758839574,0.006627692182774,0.0089213136075434,0.0113332315987588,0.0135762736031613,0.0156820360136223,0.0177220617209591,0.0200059291972071,0.0223043380350891,0.0246060469360345,0.0267481260909744,0.0286763420178352,0.0306582878335222,0.0327048309029175,0.0348361079516079,0.0367461953650274,0.0387501946333108,0.0408587833901972,0.0427448445547238,0.0573327620261895,0.0714121121980853,0.085071304055615,0.0979624072026536,0.1104035315612162,0.1258592384684637,0.1366065073986339,0.146883624777554,0.1564976524817385,0.1651434278779547,0.1764693190644688,0.1860288699120031,0.1963441469313057,0.2050973001402524,0.2137050966724387,0.2234451354953354,0.2326231929463366,0.2401646740356418,0.2473926642024452,0.2530476245188717,0.2585368683645646,0.2645040987932308,0.2692973922122298,0.2732824427480916,0.2761676092043681,0.2790818343546155,0.2823037936571658,0.2862771098162716,0.2903489427941367,0.292382740204114,0.2893750168586302,0.2858502144324779,0.2833914873779825,0.2806847029810691,0.2783880054249817,0.2756218447421319,0.2719477596563802,0.2724046140195209,0.2729527687017808,0.2734137894097904,0.274341748226884,0.2753900471409692,0.2763190902249351,0.2770776377497722,0.2783699808795411,0.2789295235137303,0.2797240365312297,0.2845536076997594,0.288666271074034,0.2932265572606414,0.3006651282747387,0.3058922736376093,0.311575663026521,0.31708048908559,0.3202247191011236,0.3250029195375452,0.3274176567904948,0.3341288782816229,0.3415570175438596,0.3460207612456747,0.0,2.7735581207593025,50.30778403347007,135.50739455762147,189.4466013837478,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95621,48852,467.75289946769016,4689,47.96017611194194,3735,38.52710178726431,1380,14.05548990284561,77.28554750318864,79.71666603318751,63.27381344368565,65.07172202846738,77.10770357355935,79.54127937828235,63.20654435220858,65.0074146061854,0.1778439296292902,175.3866549051537,0.0672690914770655,64.30742228197062,239.67768,168.70681448300644,250653.81035546583,176432.80710618634,562.63147,380.1483897510234,587836.4376026186,397000.8446274028,495.85406,242.98895621878344,514797.64905198646,251305.1726676553,2143.92908,1014.2798271801956,2211791.301074032,1030911.7844880734,880.27521,399.5012399022665,908310.2561152884,405921.8132336223,1352.23568,581.8000613678697,1379986.3837441567,581765.5010192518,0.38201,100000,0,1089444,11393.35501615754,0,0.0,0,0.0,49045,512.3351565032785,0,0.0,44846,465.274364417858,1049817,0,37629,0,0,0,0,0,101,1.0562533334727728,0,0.0,0,0.0,0,0.0,0.04689,0.1227454778670715,0.2943058221369162,0.0138,0.3591477156320426,0.6408522843679574,23.17721837152278,4.04046096579512,0.309772423025435,0.2880856760374832,0.1925033467202141,0.2096385542168674,11.209658799197298,5.999747663978288,14.845114561003587,11251.082942363942,42.92247912930423,13.268890040691636,13.131077205726069,7.953021802424383,8.569490080462142,0.58714859437751,0.8262081784386617,0.6974935177182369,0.5549374130737135,0.1251596424010217,0.7465034965034965,0.9207708779443254,0.8792569659442725,0.6848484848484848,0.1428571428571428,0.5167888846005403,0.7536945812807881,0.6270983213429256,0.516245487364621,0.1195286195286195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023611674098094,0.0044731156619906,0.0069142671486009,0.0088123189510596,0.0111504496805436,0.0131813505281708,0.0155155001989166,0.0178060640732265,0.019975248284256,0.0221009186526427,0.0239841610159928,0.0260689074075976,0.0280288214101904,0.0301412225543758,0.0322880419630964,0.0341546163553238,0.0362698059047244,0.0382082917912927,0.0404479880092428,0.0423168391188251,0.0564260701405947,0.0707129982814268,0.0839489308043923,0.0969247463626881,0.1098001521041068,0.1250542770299609,0.1355647646371267,0.1459514774229309,0.1560216146808624,0.1648366996132359,0.1769427452503479,0.1890292156756463,0.1986749915552504,0.2075641208243401,0.2163732374957281,0.2257745916193181,0.2340660937203142,0.2415378374723937,0.2487162592020358,0.2544262745951892,0.2589081058553865,0.2630112612085313,0.2676810769814183,0.2721818225454196,0.275883462076516,0.2799028012482885,0.2832448805887949,0.2867145330481719,0.2905596308872702,0.2930681833177181,0.2904571013478974,0.2872860635696821,0.2840435712677325,0.2816216372243389,0.2789476806264088,0.2753334965120548,0.2711851008663757,0.2708746618575293,0.2718785669261827,0.2728277337135728,0.2728936019267031,0.2729899744446629,0.2739394445255931,0.2751606233743136,0.278089552238806,0.2796406721908154,0.2800382419930827,0.2853993977212753,0.2902502157031924,0.2952615721720076,0.2994604316546763,0.3023645991716038,0.3050974046181614,0.3090595470226489,0.3143042190969652,0.3191068728921967,0.3228962818003913,0.323682108626198,0.3313577586206896,0.3314752879970271,0.0,1.953176822018669,50.08763582318486,137.7126571675232,186.7517158285449,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95815,49052,468.4235245003392,4723,48.259667066743205,3753,38.64739341439232,1467,14.955904607838022,77.35864855579545,79.66265763279725,63.35358995694328,65.05382786412417,77.16460657400268,79.47173636492327,63.28001240774192,64.98425294977956,0.1940419817927789,190.9212678739749,0.073577549201353,69.5749143446136,239.20732,168.3649896589947,249655.39842404632,175718.82237540538,559.09358,377.5761809590401,583003.1101602046,393557.4085049733,497.94457,244.3015708745558,516319.313259928,252464.3071855298,2159.04828,1024.768849261656,2223815.769973386,1039993.371874608,867.55604,397.1130630113776,888976.9034076085,397985.9552380909,1423.25622,611.9138996391594,1451625.4448677138,609654.590522109,0.38358,100000,0,1087306,11347.97265563847,0,0.0,0,0.0,48735,508.0937222773052,0,0.0,44946,465.7725825810155,1057058,0,37961,0,0,0,0,0,97,1.0019308041538382,0,0.0,0,0.0,0,0.0,0.04723,0.1231294645184837,0.3106076646199449,0.01467,0.3574190922043558,0.6425809077956443,23.25658039024349,3.946996778582151,0.2885691446842526,0.2928324007460698,0.2104982680522248,0.2081001865174527,11.136958357900248,6.1676105639628656,15.81321417749576,11301.487650076877,43.10981898231367,13.510106995903929,12.300372491879871,8.73954758455534,8.559791909974527,0.5837996269650946,0.8016378525932666,0.7054478301015698,0.5810126582278481,0.1113956466069142,0.7532355478861087,0.9229122055674518,0.8717948717948718,0.7184466019417476,0.1264367816091954,0.5080956052428681,0.7120253164556962,0.6381322957198443,0.5325342465753424,0.1070840197693575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024694856587656,0.0045174163619605,0.0069041029228382,0.0091631404304545,0.0116331050738625,0.0139260464879711,0.0160330847899604,0.0182693582773147,0.0202889075046482,0.0224127172478697,0.0243675099866844,0.0263614077196869,0.0285825833230592,0.0304399279650115,0.0325201575485121,0.0344970047510844,0.0365982368279458,0.0386892111837944,0.0405928972816885,0.0426318255166311,0.0572647700124148,0.0712836919473893,0.0856157563179355,0.0985286389910667,0.1112387496574837,0.1262958774979657,0.1370883955643194,0.147034732195096,0.1566804040058935,0.1644919533821527,0.1759353970390309,0.1867562421567354,0.1975987993996998,0.2063405242200148,0.2152348867677334,0.2248994203508927,0.2332254464285714,0.2401489330588645,0.2477025708515804,0.2544352945218815,0.2602966356610671,0.2656939260264676,0.271091752674936,0.2749205968718163,0.2786534605335116,0.2826188774126753,0.2864879061507291,0.2896386032262575,0.2918499922356229,0.2949111864227974,0.290602429084453,0.2877028568287689,0.2854472104693496,0.2823085127850327,0.2792059538634881,0.2748744255637491,0.2718701138714721,0.2715577988266527,0.2723008698618455,0.2739550068684994,0.2746708065240161,0.2756390028400126,0.2759399912121021,0.2772233113527,0.2785962390705473,0.2790830796450966,0.2813726047648831,0.2869027437684435,0.2926205979136035,0.2974728669888299,0.3020003620564808,0.3054202837179758,0.3099404201944183,0.3146332193082478,0.3197316936836221,0.3266736768314055,0.3307540585647094,0.3310497682853113,0.3387631143014908,0.3430685358255452,0.0,2.075288404722696,50.42075353757756,134.87229815666714,191.36333385716705,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95863,49062,466.9371916172037,4729,48.08946100163775,3781,38.87839938245204,1408,14.322522766865214,77.41454581429173,79.70440744869923,63.37712166936033,65.0685130941854,77.23526219806487,79.52842056562052,63.30959683216788,65.00443155629124,0.1792836162268543,175.98688307870702,0.067524837192451,64.08153789416815,242.22484,170.4069864699362,252677.67543264863,177760.55702829282,560.38651,378.0191972392331,584017.5354412026,393782.6806545383,500.01432,245.49736802936812,518179.2766760898,253435.16734723715,2145.34728,1029.7137341426892,2207146.6572087253,1043593.9459156628,851.2424,394.96365132403815,867672.9916651889,391703.38016131066,1358.24904,582.7876408063153,1382319.6853843506,578898.7281008926,0.3825,100000,0,1101022,11485.348883302211,0,0.0,0,0.0,48841,508.8928992416261,0,0.0,45095,467.0310755974672,1046041,0,37563,0,0,0,0,0,95,0.9909975694480664,0,0.0,0,0.0,0,0.0,0.04729,0.1236339869281045,0.297737365193487,0.01408,0.349787578393688,0.650212421606312,22.889032832796342,3.9100968755824574,0.3070616239090187,0.3004496165035705,0.1991536630521026,0.1933350965353081,11.323040409660551,6.285575915477145,15.088340670171846,11302.03170734691,43.78367349911208,14.075405675571773,13.323898186681728,8.42715665293125,7.9572129839273344,0.5897910605659878,0.8045774647887324,0.7097329888027563,0.5524568393094289,0.1039671682626539,0.7598290598290598,0.896969696969697,0.8936170212765957,0.7111111111111111,0.1385542168674698,0.5135963232477978,0.733229329173167,0.6370192307692307,0.5026178010471204,0.0938053097345132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024295186516171,0.0047211387467706,0.006875082389446,0.0092786226219722,0.0114137615611342,0.0137160532768953,0.0160248573757131,0.0182891998857562,0.0203891925021706,0.0227684187916168,0.0249830987646733,0.0272136057771212,0.0294691847680894,0.0316311720929275,0.0335903992081821,0.035705063984053,0.0376796300319687,0.0401156524622782,0.0420005813229248,0.0440295402537965,0.0580740678955709,0.0723675960372862,0.0857618738346148,0.0984492949909183,0.1102687220958638,0.1255082535089294,0.1356235633097107,0.146549891586242,0.1555752325680635,0.1637555286633753,0.1759789156626506,0.1866479269149683,0.1973076630558785,0.2060861013986014,0.2141036066726741,0.2229758137682282,0.2316971203692349,0.239685856815424,0.2471855336999036,0.2534905012588693,0.2587305073577861,0.2645886656615593,0.2699009386008464,0.2740206704111328,0.2789299851859047,0.2822846866377611,0.2853569463204762,0.2895369087419121,0.2923853923853924,0.2950201174065035,0.2921210817207482,0.2887277521423863,0.2861639639133245,0.2830528499798282,0.2804040045021029,0.2768242635055761,0.2731011012903531,0.2731504924941603,0.2738212598157528,0.2740931263858093,0.2752353313241805,0.2761037278420133,0.2769537579459055,0.2781566942734399,0.2782888465204957,0.2804572785218446,0.2808599363218844,0.2870513853592016,0.2912429280483148,0.2954277633749705,0.2977931281959272,0.2998063739599141,0.3060342165400531,0.3124023510155494,0.3172394729567861,0.317758098345374,0.3233433734939759,0.3258336681398152,0.3302603036876356,0.3290662650602409,0.0,2.1446727768474743,50.72476634724729,148.0205472453248,180.7753721415689,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95712,48907,467.4648946840521,4631,47.22500835840856,3720,38.30240722166499,1435,14.627214978268135,77.36002699221102,79.73147385700145,63.33690834044432,65.08850263022798,77.17154555513831,79.5480257277638,63.26415533089369,65.02014454457351,0.1884814370727099,183.44812923764664,0.072753009550631,68.35808565446655,240.35968,169.07047047300065,251128.05081912404,176645.00843467974,560.34647,378.7569765094044,584921.3264794383,395196.4294021694,497.88421,244.8482134383365,517088.70361083245,253333.1676768285,2119.73872,1019.07765822511,2183983.4085590104,1034011.5536454252,855.0645,399.2631474936589,875998.2342861919,399776.4935365044,1389.5843,607.8256064032778,1417419.5921096622,604380.5082558055,0.3821,100000,0,1092544,11414.911400869274,0,0.0,0,0.0,48950,510.8554831160147,0,0.0,44997,467.00518221330657,1051298,0,37745,0,0,0,0,0,87,0.9089769307923772,0,0.0,2,0.0208960213975259,0,0.0,0.04631,0.1211986390997121,0.3098682789894191,0.01435,0.3625233450923428,0.6374766549076571,22.753595838933556,4.046624778971376,0.3094086021505376,0.278494623655914,0.2099462365591398,0.2021505376344086,11.415456027970082,6.280263823635915,15.454254243087997,11221.989753645232,42.91625206941959,12.876086551814304,13.041928899475066,8.61452881072253,8.383707807407687,0.5922043010752688,0.8040540540540541,0.7019982623805386,0.6043533930857875,0.1196808510638298,0.7464671654197839,0.9232409381663113,0.8470948012232415,0.7476190476190476,0.1573604060913705,0.5184743742550656,0.7054673721340388,0.6444174757281553,0.5516637478108581,0.1063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978912398334,0.004338614684386,0.0064641831484732,0.0087466222393791,0.0107815614955856,0.013125738259134,0.0155045871559633,0.0176672314192982,0.0199131101456682,0.0219803845287577,0.0242367077446738,0.0265389511724364,0.0286187322611163,0.0307659030982201,0.0325319851423854,0.0346150267263572,0.0365600977974846,0.0387262177843745,0.0407742955512331,0.0426192609882666,0.0576372788604131,0.0713799780208278,0.0843849986886965,0.0975304486842382,0.1095576994042912,0.1248572757643675,0.1350023868880284,0.1455756827518678,0.1554055497404567,0.1635807766573696,0.1748817565747654,0.184829661053634,0.1951195652173913,0.2043225869928831,0.2122338553580855,0.2212327629174281,0.2300320201715924,0.2377899980882336,0.2465644700439929,0.2526333867643691,0.2581585216365613,0.2639741027708633,0.2681124289042084,0.2733736309773176,0.2772214737404265,0.2812842387758368,0.2855213634601678,0.2873513568452078,0.2911143585034981,0.2947006339206874,0.2919149394057594,0.2883073665103615,0.2852354664263181,0.2823716328446595,0.2791902281193879,0.2752912042557094,0.2714806457212289,0.2714260036928708,0.2708343965297269,0.2717877690176859,0.2718276523975474,0.2730219855787178,0.2742726517040731,0.2748780487804878,0.2758423349309679,0.2776412776412776,0.2801698513800424,0.2837749069410992,0.2882936369351121,0.2938360500079126,0.296329900648732,0.2985279375296786,0.3019231966141781,0.3070848375451263,0.3123670335769124,0.3181924334423167,0.3204935299428227,0.3273453093812375,0.3316993464052287,0.3373860182370821,0.0,2.1991554943602325,52.37733729735838,130.1084969384729,185.9849941245024,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95748,48685,465.0541003467435,4618,46.95659439361658,3670,37.71358148473075,1404,14.287504699837072,77.33346816806463,79.69866550741125,63.32120940122799,65.07155920407955,77.14744197936494,79.51554918621315,63.24977090140749,65.00367622043501,0.1860261886996852,183.11632119809929,0.0714384998204948,67.88298364453738,241.15806,169.62735113600803,251867.4645945607,177160.20296612778,557.43796,376.6298296674925,581556.3876007854,392718.88673130766,495.26919,242.99737390409425,513666.8859923968,250969.30758162675,2105.25668,1010.0853713470184,2163581.8607177176,1019859.9436200316,826.65415,382.9369955296454,848499.4464636337,385126.57346611447,1359.9952,594.3237202401726,1385534.6325771818,589907.5304191406,0.37974,100000,0,1096173,11448.521117934575,0,0.0,0,0.0,48516,506.0471236997117,0,0.0,44685,463.0697246939884,1050540,0,37677,0,0,0,0,0,113,1.1801813092701674,0,0.0,0,0.0,0,0.0,0.04618,0.1216095223047348,0.3040277176266782,0.01404,0.3673172757475083,0.6326827242524917,22.674282648696646,4.043843655774059,0.3188010899182561,0.2841961852861035,0.2005449591280654,0.1964577656675749,11.467107606874736,6.346993384068644,15.20712979634466,11149.30429139672,42.33669385563575,12.863745576953468,13.188065409524295,8.293111538495568,7.991771330662415,0.5852861035422343,0.8207094918504314,0.6615384615384615,0.6032608695652174,0.102635228848821,0.7454702329594478,0.912472647702407,0.8526645768025078,0.7370892018779343,0.1058823529411764,0.5113500597371565,0.7491467576791809,0.5898942420681551,0.5487571701720841,0.101633393829401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101474238816,0.0044923538717397,0.0067291882345776,0.009063382714544,0.0109334635178291,0.0131047052714109,0.0152204053337682,0.0173195076646731,0.0194799885532071,0.0217211059134226,0.0238561454948074,0.0259945588008829,0.028289954032681,0.0303704390274044,0.0321582221671979,0.0342322043183016,0.0361476971504307,0.0381231062964346,0.0403385108019878,0.0424738574344873,0.0573185243950813,0.0714203481009346,0.0851845244965844,0.0980247796545993,0.1102416182410698,0.1251083899075777,0.1357467983745185,0.1457690260777009,0.1546077928736221,0.1641088339071029,0.1758058260794622,0.1868832236842105,0.1971808007309035,0.2057797272021263,0.2132839055298271,0.222661484114592,0.2306764902880107,0.2380245079836613,0.2453025007942631,0.2511819045547682,0.2569776852815354,0.2618485351539666,0.2665507698857589,0.2706641757083662,0.2745126581510729,0.2782103799928651,0.2813202738493828,0.2851682539682539,0.2883991469010534,0.2902184085307182,0.2870654396728016,0.2835482674797083,0.2811669595782073,0.2784791862059014,0.2754635810710577,0.2711094108645753,0.2672085263840352,0.2682926829268293,0.2682452820539048,0.2692362496437731,0.269022550776583,0.2703340809821745,0.270605139311149,0.2716340276079756,0.2712241577335375,0.2734780801994598,0.2751476781323309,0.2798875702685821,0.2820226288587791,0.2859616671258215,0.2877496731142071,0.2941362082566395,0.2983014861995753,0.3005968119664576,0.3054518297236744,0.3100426338228327,0.3157014743882049,0.3154918198343769,0.3182950456684196,0.3258212375859434,0.0,2.3931810628734325,50.16206996919065,133.95782979573494,181.2295222532571,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95804,49400,471.6504530082251,4621,47.13790655922509,3694,38.046428124086674,1401,14.258277316187216,77.34149214859087,79.68108677212116,63.33904717832892,65.072736244962,77.16344193663343,79.50632201926561,63.27107091335374,65.00826968591699,0.1780502119574407,174.76475285555182,0.0679762649751793,64.46655904501597,240.4952,169.33887624468508,251028.34954699173,176755.53864628312,563.49306,381.2405846398215,587647.5094985595,397412.7966865501,506.88298,249.2014194797938,525994.2591123544,257735.55686462947,2116.13504,1011.3632132522686,2180722.516805144,1027564.8007203751,866.02268,395.4424640361707,893187.7583399441,402020.3319163952,1357.0575,577.8586245549187,1382752.0145296643,575542.8290306169,0.38364,100000,0,1093160,11410.37952486326,0,0.0,0,0.0,49108,512.0349881007056,0,0.0,45829,475.293307168803,1048382,0,37573,0,0,0,0,0,88,0.9081040457600936,0,0.0,2,0.0208759550749446,0,0.0,0.04621,0.1204514649150245,0.3031811296256221,0.01401,0.3637312186978297,0.6362687813021702,23.16945357970979,4.002861934070558,0.3023822414726583,0.2872225230102869,0.2100703844071467,0.2003248511099079,11.696127934790006,6.617347524538242,14.813371200720043,11296.0288265019,42.15036148955023,13.02973710704103,12.647843507324358,8.494442678992533,7.978338196192307,0.5944775311315647,0.8124410933081998,0.7063563115487914,0.5811855670103093,0.127027027027027,0.7661431064572426,0.9156118143459916,0.8779761904761905,0.7209302325581395,0.1524390243902439,0.5172684458398744,0.7291311754684838,0.6325224071702945,0.5413907284768212,0.1197916666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0045517674847683,0.0069612867218022,0.0093281307157663,0.0114463041155822,0.013934868749427,0.0162573433420365,0.0184623553799181,0.0203388790608734,0.0224763972229617,0.0246903453367238,0.0268122118277692,0.029109236782555,0.031132493380997,0.0332053822024104,0.0353617315981518,0.0371846912148448,0.0389538985020125,0.0408899141675499,0.0429957524777213,0.0572093362965745,0.0719379326209247,0.0855313485701111,0.0982398991225765,0.1105151119167053,0.1258904601855962,0.1374675359092595,0.1474100619968735,0.1565915300546448,0.1653768650317269,0.1766396486582491,0.1872060715482664,0.1980204474093067,0.2067473197600078,0.2147734394757386,0.2240993733808648,0.2324746692229665,0.2398190045248869,0.2469283991439151,0.2538006080972955,0.259664108039476,0.264602565149906,0.2705269499273539,0.2751052530858291,0.2791616664848418,0.2819305256686136,0.2856928838951311,0.289490708441682,0.2929303358025966,0.2954745600084121,0.2923361926623978,0.2893354365269872,0.2857785146261275,0.2821008027903088,0.2782372821060121,0.2749168167526481,0.2718461927010986,0.2721737564855885,0.2714000988024462,0.2719972937364242,0.2733593764602531,0.2728742385111291,0.2741254649559075,0.2749303310667707,0.2748122735887532,0.2760288039098448,0.2780837161525951,0.2827107959022852,0.2889740524576331,0.2942039909548934,0.3002057142857143,0.3075491759702286,0.3093556928508384,0.3121988527724665,0.3157993789404347,0.3187086092715231,0.3238139106402579,0.3287838663678957,0.3346196251378169,0.3386303443057132,0.0,1.9597137914163727,49.621482536526734,126.13179380697903,194.0852100787223,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95715,48378,462.2055059290602,4674,47.76680771039022,3752,38.7400094029149,1411,14.459593585122498,77.3419109081298,79.71088812461603,63.33255108723839,65.08082417773761,77.16665986649356,79.53741148693605,63.26605979527869,65.01726343450153,0.175251041636244,173.47663767998256,0.0664912919596929,63.56074323608141,240.70354,169.14599041858514,251479.43373556912,176718.37268827783,556.24511,375.7854798730133,580708.1126260251,392169.6075568232,492.45946,241.37705502715207,511714.1722822964,250038.7358707876,2145.34364,1009.0559858237048,2217132.110954396,1029974.7644817476,863.47762,388.7491220811858,892343.6451966775,396362.34872401,1368.6501,577.7357898240451,1404142.0675965103,580748.9531811108,0.37871,100000,0,1094107,11430.883351616778,0,0.0,0,0.0,48512,506.36786292639607,0,0.0,44476,461.7980462832367,1054236,0,37900,0,0,0,0,0,93,0.971634540040746,0,0.0,0,0.0,0,0.0,0.04674,0.1234189749412479,0.3018827556696619,0.01411,0.3501331694324933,0.6498668305675066,22.95179710723775,4.064015718142927,0.3062366737739872,0.2822494669509595,0.2100213219616204,0.2014925373134328,11.437359983646086,6.330567067059095,14.942004381289385,11141.715629949762,42.89390566570437,12.929057258976057,13.052008968952912,8.83196747863906,8.080871959136335,0.5866204690831557,0.8139754485363551,0.6919060052219321,0.5799492385786802,0.115079365079365,0.7661996497373029,0.9211711711711712,0.8674698795180723,0.7333333333333333,0.1538461538461538,0.5080459770114942,0.7365853658536585,0.620563035495716,0.5242214532871973,0.105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521467919637,0.0047836221749265,0.0070298234936092,0.0094356870073941,0.0115609875137267,0.013857212674106,0.0159535969499576,0.0180452355678941,0.0199409233536728,0.0217182158721061,0.0237931706116925,0.0260404366085822,0.0279097509306678,0.0300841738700404,0.0321961488452727,0.0342474957875476,0.0363611884961526,0.0383358067227762,0.0403231676250091,0.0422268075616415,0.056784475915946,0.0699130143510619,0.0829311285516431,0.096196726829063,0.1086452048436774,0.1240438025710204,0.1340469774448853,0.1442031299904184,0.1537401448625088,0.1624776064965296,0.1744243651323583,0.1848461238800156,0.1959671104150352,0.2048108462715941,0.2122858336815712,0.2213514859704466,0.2299913029904333,0.2385870664658679,0.2454841306738935,0.2519590459303323,0.2576083437398825,0.263257620061288,0.2685318821720099,0.2720837475595587,0.2750488773391298,0.2781392483056069,0.281706538475983,0.2853637450097897,0.2881575202463194,0.2911357413647851,0.2877305231464057,0.284665724594932,0.2806436678404579,0.2774077537222182,0.2744848601393429,0.2716007986465684,0.2682435198891373,0.267800264615083,0.2681815089461868,0.2695952071963165,0.2698196602077544,0.2703138836957591,0.2723228272448148,0.2720811051693405,0.2744910179640719,0.2750194552529182,0.2769898451239576,0.2810173309140962,0.2838953407023926,0.2877390237143196,0.2915346310547759,0.2936327608982827,0.2986224170319349,0.3010084161043294,0.3029395244336266,0.3053462081959491,0.31,0.3183938349219225,0.3197015750207239,0.3258640334219521,0.0,1.8268116700468315,50.088683690963606,130.94389790138376,196.48526403804965,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95706,49081,468.71669487806406,4789,48.701230852820096,3842,39.53775102919357,1495,15.234154598457776,77.33810060160408,79.7204747920694,63.31256206328344,65.07482965744532,77.14493499286006,79.53181998626638,63.23872675134168,65.00554232297654,0.1931656087440245,188.65480580301156,0.0738353119417567,69.28733446878255,240.24968,169.06219958232407,251028.8592146783,176647.44068535313,562.36173,380.221966607234,586990.920109502,396679.17017452826,504.50043,247.77601753012732,523332.6541700625,256017.581262759,2214.48676,1055.1577888204356,2280983.679184168,1069639.5929413352,869.70508,397.6990664032188,892708.6180594738,399530.5448115258,1446.7944,624.9829032792026,1475295.4046768227,620857.2126082897,0.38168,100000,0,1092044,11410.402691576286,0,0.0,0,0.0,49022,511.5771216015715,0,0.0,45546,472.175203226548,1047187,0,37617,0,0,0,0,0,95,0.9717259106012162,0,0.0,0,0.0,0,0.0,0.04789,0.1254715992454412,0.3121737314679473,0.01495,0.3608826479438315,0.6391173520561685,23.114783010558067,3.98824324477833,0.3003643935450286,0.284487246225924,0.209005726184279,0.2061426340447683,11.428311527742132,6.337550522029925,16.09450899641355,11272.584093699585,44.21936269358365,13.46832694904281,13.169959880940198,8.975813146293579,8.60526271730707,0.5843310775637689,0.8023787740164684,0.6949740034662045,0.5753424657534246,0.1313131313131313,0.7637729549248747,0.9094736842105264,0.8702064896755162,0.7280701754385965,0.141025641025641,0.5030257186081695,0.7200647249190939,0.6220858895705521,0.5147826086956522,0.1289308176100629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024629543289209,0.004798133495638,0.0070968789977054,0.0095432648332215,0.0118028917084685,0.0136485399117937,0.0157681088468677,0.0177617535007711,0.0198701232295341,0.0220037884605539,0.0241081225197141,0.0263792908704447,0.0284912295132534,0.0305748357465038,0.0327944953939156,0.0348982607707172,0.0370159453302961,0.0389068725099601,0.0409830952529474,0.0432440879258256,0.0576605744125326,0.0714898873581508,0.084397527780984,0.096999148023098,0.1097342332841172,0.1254495832099183,0.1360158745317756,0.145741486167018,0.1552313775782836,0.1651717700577216,0.1770378751144873,0.1882226841626607,0.1987437678256515,0.2070082514390772,0.2155962797864729,0.2243330414639282,0.2325028198742503,0.2404412178513141,0.2475670274014603,0.2535333967606231,0.2595011463906065,0.2654898334250296,0.270330112721417,0.2743951395463097,0.2769537276625727,0.2816701615887504,0.2854619701372883,0.2890496630959507,0.2925559469539991,0.2948934374340578,0.290492649926701,0.2864408643536592,0.2835356846414654,0.2803138476627291,0.2779928506800753,0.2744084310996222,0.2703308852562583,0.2718360800615354,0.2723462973373537,0.2727806544600438,0.273452236436642,0.2747023516678146,0.2766201770502756,0.2774271249191516,0.2776514516862539,0.2785136984532755,0.2803783173348391,0.2855985542468997,0.2887306824101406,0.2919050231173105,0.2964140215785468,0.3005837589909308,0.304366596768225,0.3065259402408206,0.3091109276080374,0.3149889701613839,0.3197258641239571,0.3186119873817035,0.3207899653055778,0.3270018621973929,0.0,2.3545087300489165,51.81470922020204,140.87805891247817,191.2051725528903,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95648,48701,465.456674473068,4720,48.06164268986283,3721,38.29667112746738,1394,14.11425225828036,77.27782633283482,79.68784621950599,63.2892740309558,65.07179319056587,77.09535477514653,79.51126323524043,63.22000384794424,65.00748893987026,0.182471557688288,176.58298426555064,0.0692701830115538,64.30425069561352,240.37772,169.09987080055848,251314.71646035463,176793.73328506455,557.27251,376.098562197742,582025.2279190364,392609.1216075315,491.13292,240.68801870028804,510118.0160588826,248934.73905792128,2146.29584,1019.0658867897256,2209945.926731348,1031499.8624014368,817.28457,378.28903009528665,841124.7804449649,382156.0705844785,1353.03006,583.7744517191621,1372218.3840749415,575462.6254315064,0.38106,100000,0,1092626,11423.396202743394,0,0.0,0,0.0,48652,508.0294412847106,0,0.0,44398,460.7519237203078,1053783,0,37792,0,0,0,0,0,83,0.8677651388424222,0,0.0,0,0.0,0,0.0,0.0472,0.1238650081352018,0.2953389830508474,0.01394,0.3590420133955754,0.6409579866044246,23.11082337746278,4.003029312413074,0.3198065036280569,0.2813759742004837,0.1972588013974738,0.2015587207739854,11.239733109009869,6.194831198109815,15.05032839990925,11289.21780772199,42.70637166523602,12.908058878504654,13.406094038439967,8.157048882672685,8.235169865618712,0.5775329212577264,0.7994269340974212,0.6983193277310924,0.55858310626703,0.0946666666666666,0.7690311418685121,0.9409190371991248,0.8587896253602305,0.7311827956989247,0.1506024096385542,0.4912280701754385,0.6898305084745763,0.6322657176749703,0.5,0.0787671232876712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340757554263,0.0047055005679052,0.0069640427994233,0.0089840137402563,0.0114349661732539,0.0137325414370269,0.0159714431412544,0.0184562901529002,0.020570364763405,0.0227205211993321,0.0247487179487179,0.0266242103641312,0.028574662495884,0.0308061756642549,0.0326657030766054,0.0345455297670762,0.0368075273051335,0.0388557188100306,0.0408341658341658,0.0428757624732808,0.0569738643369943,0.0705780086507545,0.0838240387945964,0.0968997958453476,0.1090698042526249,0.1246930307392666,0.1359683122896069,0.1461096728140548,0.1559054107530562,0.164843305455053,0.1764959429316494,0.1873951126557746,0.1972399682204542,0.2056828376988555,0.214203163351788,0.2235444019721899,0.2321586050613411,0.2397448302243424,0.2472796178416221,0.2538509075095557,0.2587745664739884,0.2639432571074679,0.2686641284555537,0.2724027646347161,0.2767502580605987,0.2813898167206932,0.2848276293561909,0.287675066464834,0.2918204779483194,0.2953643257500824,0.2928830273066508,0.289289895998347,0.2873299019953465,0.2847353736284388,0.2818294006571806,0.2784414629663664,0.2763730783236491,0.2759396397431897,0.2763065785654527,0.275768599757472,0.2762050783441158,0.2765785319652723,0.2770429804216552,0.277998039914469,0.2791494049187001,0.2807676370040401,0.2833810644511866,0.2882987395748416,0.2936321168908714,0.2971739303008653,0.3003682990042286,0.3046119710497121,0.3044622712459263,0.3102239829346335,0.3140015015015015,0.3171513353115727,0.3217457886676876,0.3275510204081632,0.3346281908990011,0.3404336249524534,0.0,2.278037018461461,49.973881620853,130.82718296930798,192.32034297083732,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95823,49009,467.6643394592113,4748,48.474792064535656,3765,38.75896183588492,1426,14.495476033937573,77.39792083527668,79.70178030327004,63.37134666233783,65.07166697997373,77.2148987722034,79.52350918968874,63.30162613868582,65.00634003130644,0.183022063073281,178.2711135813031,0.069720523652009,65.32694866729116,240.36012,169.05786693195975,250837.37724763367,176427.0097283112,562.23422,379.89839804385366,586171.8063512936,395894.8075039903,498.97942,245.0939322101167,518012.9092180374,253639.9419190548,2175.65704,1025.2853380027716,2240846.4773592977,1040694.3820930184,866.83233,388.7705698741746,889609.0604552142,390759.3310803789,1393.6611,594.7555030372371,1417950.7216430292,589056.7886440002,0.38208,100000,0,1092546,11401.69896580153,0,0.0,0,0.0,49029,511.0777162059214,0,0.0,45051,467.3408263151853,1052313,0,37696,0,0,0,0,0,93,0.9705394320778936,0,0.0,2,0.0208718157436106,0,0.0,0.04748,0.1242671691792294,0.3003369839932603,0.01426,0.3479838709677419,0.652016129032258,23.19913714526893,4.088413157832299,0.3078353253652058,0.2717131474103585,0.2087649402390438,0.2116865869853917,11.31320498957538,6.0481779972403205,15.240001300285204,11277.620222268852,43.05694196827008,12.60548608268944,13.10731217495776,8.726238016511802,8.617905694111078,0.5803452855245684,0.8142717497556208,0.6988783433994823,0.5750636132315522,0.1129234629861982,0.7666370896184561,0.9379157427937916,0.8710691823899371,0.7230769230769231,0.1411042944785276,0.5007581501137225,0.7167832167832168,0.633769322235434,0.5262267343485617,0.1056782334384858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002328500850409,0.0043672547092381,0.0066027689030883,0.0088949361818791,0.0111723324658425,0.0133215281594105,0.0156609810274907,0.0176383575618464,0.0199133579908862,0.0221092263305436,0.0243120299981558,0.0265196204154911,0.0285819960137259,0.030686589281304,0.0328276061099544,0.0348978875420736,0.0370573447408986,0.0390543215762689,0.0411214953271028,0.0430144456933516,0.0576551954351522,0.0719380817906076,0.0849560120377069,0.0977784319703931,0.1097091779190251,0.1256039158059435,0.136158299930012,0.1462677353088312,0.1558857777730297,0.1649594010447393,0.1760182652335925,0.1876629206191254,0.1982279719519487,0.2073866742472283,0.2156084365171875,0.2239025740381954,0.2324417139607747,0.2398435216619078,0.2461400684698574,0.2522448325955412,0.2588342693383254,0.2644984234497256,0.2690052950075643,0.2737658049930021,0.2785484945780578,0.2831700691977729,0.2860654305891748,0.2896572718739694,0.2913707157062788,0.2940055212304456,0.2901829390873149,0.2872933473955266,0.2843918312387791,0.2817758219000776,0.2786422126904304,0.2741574402631619,0.2710159754466042,0.2716633750632477,0.2725187337513381,0.2735267468509602,0.2743176525384257,0.2750049125564944,0.2761291934778534,0.2776120067693952,0.2799808314364442,0.2814380576883171,0.2829480508402286,0.2878949682769018,0.2940086041061873,0.2977614591969679,0.3014438794042862,0.3049536423841059,0.3101110901901713,0.3134848484848485,0.3133713857958267,0.3168526130358191,0.3212332928311057,0.3238817891373802,0.3250873890830869,0.3332086761406133,0.0,1.9498604521863725,48.99444046652909,138.11595669958072,193.00116423328924,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95556,48614,464.5652810917159,4672,47.69977814056679,3656,37.66377830800787,1405,14.337142617941312,77.19945181010942,79.66917522441453,63.224607941291474,65.05322513765562,77.01837135733484,79.49231700518364,63.156450676300565,64.98924433251995,0.1810804527745801,176.85821923089406,0.0681572649909085,63.98080513567095,239.40796,168.42570447899058,250541.5881786596,176258.18481203748,556.74349,376.2125838323576,582002.6581271715,393077.37990989065,492.68906,242.1949372945257,512195.278161497,250882.16060992752,2084.08244,998.5768306311068,2148687.847963498,1012819.8946184856,836.49948,385.12023198827984,861635.2714638537,389313.871794884,1365.05468,580.9315405356243,1393319.45665369,576386.491146768,0.37907,100000,0,1088218,11388.254008120894,0,0.0,0,0.0,48612,508.0685671229437,0,0.0,44475,462.0327347314664,1050542,0,37750,0,0,0,0,0,92,0.9627862195989786,0,0.0,1,0.0104650676043367,0,0.0,0.04672,0.1232490041417152,0.3007277397260274,0.01405,0.3748463744367062,0.6251536255632937,22.80524799205472,4.0754591749090885,0.2975929978118162,0.2825492341356674,0.2188183807439825,0.2010393873085339,11.392944158539708,6.1943889582461615,15.120436754404253,11235.257307641725,42.43006813803278,12.821087593169976,12.432451263604934,8.896588908835826,8.279940372422042,0.587800875273523,0.8063891577928364,0.7150735294117647,0.5725,0.1088435374149659,0.7608318890814558,0.9145833333333332,0.898989898989899,0.7376237623762376,0.1314285714285714,0.5079936051159073,0.7124773960216998,0.6460176991150443,0.5167224080267558,0.1017857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023821350011657,0.0048598851484344,0.0071492403932082,0.0092931511306328,0.0115140285865537,0.0139962078737588,0.0160943001479818,0.0184038422235847,0.0204666393778141,0.0225560827637094,0.0246466222527895,0.0266418516652442,0.0285987930217709,0.0306778209875906,0.0329244473839222,0.0353194484700426,0.0374607191379471,0.0394832567710823,0.0414904477176607,0.0432109076482993,0.0570723236887801,0.0711267236407487,0.0846165974667577,0.0968452330776363,0.108853962986059,0.1250225280142483,0.1357495425726564,0.1460783267527478,0.1556936261381896,0.1646074604557136,0.1753703943674139,0.1865600381952733,0.1968956565370099,0.2059091258047181,0.2141942887407865,0.2235635119827643,0.2314198449369567,0.2385411143575916,0.2465334258511449,0.2525890376357666,0.2590102361383212,0.2640308514628657,0.2680182583437074,0.2724610195532402,0.2763287611211859,0.2800582888757162,0.2827328288342557,0.2855394500325085,0.2891339604281543,0.2923369773559465,0.2894722641916684,0.2868104920923569,0.283761117453874,0.280852417302799,0.2781703235403496,0.2745581901506675,0.271021377672209,0.2704918032786885,0.2714398111723052,0.2725420457185751,0.2736546034127133,0.2746121158217215,0.276436407879004,0.2773567612277289,0.2767021813896438,0.2787526399499387,0.2785689871254415,0.2833187061183551,0.2894322042803601,0.2912625187288069,0.2964263210009902,0.3038239916186485,0.3066046511627907,0.3094396389620158,0.3126909191891141,0.3154685117860912,0.3191585274229902,0.3212169103121295,0.3148247978436658,0.3103057757644394,0.0,2.237917975505226,50.1925280612077,135.63954181116702,180.8014077958515,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95679,48736,466.3719311447653,4722,48.140135243888416,3777,38.88000501677484,1446,14.726324480816062,77.33990302576841,79.7290594126315,63.32261558699434,65.08849786438134,77.14268519756781,79.53568748152989,63.248178670974674,65.0177867466383,0.1972178282005927,193.3719311016091,0.074436916019664,70.71111774304484,240.0739,168.94556482905188,250915.9794730296,176575.38731493,558.17241,376.9521740853893,582772.6146803374,393377.5650132996,501.52589,246.26319067691907,519979.9224490223,254222.7251728461,2155.29496,1033.6209217228911,2220110.7453046124,1048175.82389842,883.43923,407.7390508725673,911033.121165564,413884.76992936543,1404.89498,607.4100887608712,1431858.8195946864,605141.348896687,0.38097,100000,0,1091245,11405.271794228618,0,0.0,0,0.0,48720,508.5650978793674,0,0.0,45308,469.4133508920453,1053569,0,37820,0,0,0,0,0,84,0.8779355971529803,0,0.0,0,0.0,0,0.0,0.04722,0.1239467674620048,0.3062261753494282,0.01446,0.3511218920557913,0.6488781079442086,23.12497914324149,3.992265604015673,0.316388668255229,0.2814402965316389,0.1975112523166534,0.2046597828964786,11.58389460568559,6.450381075671127,15.68246510431929,11247.047624324588,43.59131913933572,13.196562560274,13.529206332627153,8.373245233171382,8.492305013263186,0.598623245962404,0.8024459078080903,0.702928870292887,0.628686327077748,0.1280724450194049,0.7760067114093959,0.9324894514767932,0.8635014836795252,0.7874396135265701,0.1666666666666666,0.5168278529980658,0.6977928692699491,0.6398601398601399,0.5677179962894249,0.1168614357262103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021675276005266,0.0042268511479397,0.0066564519893253,0.0088571080323406,0.0111548356263282,0.0133247826706569,0.0155746728095568,0.0176267657385482,0.0200055201741921,0.0220784670972496,0.0241942097925038,0.0263817032109715,0.028505028484462,0.0305511778581214,0.0326349468469398,0.0347922288739311,0.0367273782142931,0.038592084366988,0.040362429651822,0.0422182841655373,0.0570777925184635,0.071515316484851,0.0845599420879801,0.0970439722280664,0.1094888970937285,0.125937523140557,0.1368526023211898,0.1472757655423456,0.1564085311802462,0.1653246989954005,0.1765554670169922,0.1879733414116934,0.1980231394893654,0.207484257477698,0.2156716007263522,0.2251340215320544,0.233401390144035,0.2407128231667529,0.2477737569906866,0.2541998282278843,0.2604808770976211,0.2649396801645937,0.2692539714458073,0.2739420935412027,0.2764098394475929,0.2809529672494459,0.2848355275496043,0.2882469562565132,0.2909328536859949,0.2938043062642564,0.2901732859756754,0.2862580733818881,0.283082336382829,0.2802588248887862,0.2767656971478627,0.2729745423428379,0.2693382596750509,0.2698547829930747,0.2697548610992974,0.2699690732643702,0.2711364823520633,0.2721476642134676,0.2729488728697029,0.2732295217091047,0.2741193386053199,0.275038920601972,0.2759002298459181,0.2809689448779418,0.2879725807015703,0.2928242108996335,0.2969505308335216,0.300405882663012,0.3016438527407963,0.3025977948950309,0.3085363585642551,0.3133960047003525,0.3171846435100548,0.3213779128672746,0.320733740967204,0.3221060782036392,0.0,2.2821674811399086,51.64967245762822,139.96420526637124,184.5953211646034,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95791,49196,469.6474616613252,4739,48.36571285402595,3792,39.0746521071917,1461,14.876136589032374,77.331780499572,79.6716246592378,63.32970022966426,65.06229969535582,77.12960630219514,79.47374667650578,63.25210542576905,64.98896206033626,0.2021741973768627,197.87798273202384,0.0775948038952094,73.33763501955559,240.44482,169.2566545406841,251009.8234698458,176693.69203858828,561.48192,379.2860108959231,585665.8349949368,395464.3451847491,505.20704,248.13419922168237,524460.4503554613,256739.7041778197,2189.07604,1046.470042498163,2257762.04445094,1064950.6138344556,892.57691,409.04815688966414,918255.619003873,413480.897881496,1419.71644,622.1094050835484,1447886.2941194894,619839.4659020337,0.3827,100000,0,1092931,11409.537430447535,0,0.0,0,0.0,48872,509.68253802549305,0,0.0,45570,472.74796170830246,1047965,0,37637,0,0,0,0,0,109,1.137893956634757,0,0.0,0,0.0,0,0.0,0.04739,0.1238306767703161,0.3082928887951044,0.01461,0.3702429149797571,0.629757085020243,22.82193120982613,4.038630580344321,0.2993143459915612,0.2908755274261603,0.1964662447257384,0.21334388185654,10.94839161458992,5.902765637971559,15.866092905687664,11262.978572913811,43.67907068408043,13.550088498943156,12.969393963271171,8.2520861181247,8.907502103741397,0.5751582278481012,0.7815049864007253,0.7066079295154185,0.5624161073825503,0.1211372064276885,0.75,0.9111570247933884,0.8852941176470588,0.6647398843930635,0.1657754010695187,0.495782208588957,0.6801292407108239,0.630188679245283,0.5314685314685315,0.107717041800643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094454292225,0.0042678723490531,0.0067581965965478,0.0089804543053354,0.0112789219425375,0.013289341031986,0.0152627393405517,0.0174364000163338,0.0196377093087444,0.0215181450580948,0.023834419977857,0.0259772262893637,0.0281845103442602,0.0301922165681204,0.0323249837446202,0.0343433716879115,0.0364255900904166,0.0386881301082852,0.0409859916032755,0.0430667346960025,0.0579371373711232,0.0718611730002824,0.0851215497992515,0.0974538423546966,0.110104213864975,0.1259458088515027,0.1365544436906377,0.1459458884587569,0.1551729658764636,0.1646360411911574,0.1761482310889085,0.187414130705237,0.1976354658371582,0.2070659010117582,0.2150302123116546,0.2246080549554041,0.2335639366212898,0.241738465345421,0.2489395967065121,0.2553237772485803,0.2617588567200074,0.2666588744082754,0.2717626601369814,0.2754526174528811,0.2789347775929277,0.2823543913713405,0.2850239731600756,0.2880308781941861,0.2909976804157109,0.2941215288776264,0.291447952838569,0.2880440756210156,0.2849003249813593,0.2810076119769474,0.2777002346093309,0.2736084526452798,0.2704520990312163,0.270768725900402,0.2704369213951423,0.2703319021574531,0.2714331144658323,0.2714263186943152,0.2719279882771614,0.2729342948360161,0.2739251707223237,0.2744250253952543,0.2757424052793264,0.2791389898483519,0.282168540110312,0.2885860979462875,0.2933387747698726,0.2965316388668255,0.2994895065229722,0.3060433295324971,0.3103157500234236,0.3151622418879056,0.3228322373451598,0.3279246794871794,0.324575807334428,0.3249027237354085,0.0,2.0382589782678338,51.41031105317764,137.5752591952861,191.45384510991835,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95700,48895,467.59665621734587,4693,48.0564263322884,3754,38.77742946708464,1384,14.106583072100314,77.34192318165195,79.71639066165365,63.32298576779221,65.07467850073671,77.15990517333583,79.53928718027613,63.253388181499616,65.0096161733417,0.1820180083161204,177.10348137751453,0.0695975862925877,65.06232739501172,240.35286,169.15490969199854,251152.41379310345,176755.39152768918,560.6281,378.4321674852952,585203.8349007315,394821.4602772155,500.03048,244.88234641986543,520552.64367816097,254284.85084144212,2133.42472,1007.5443646312356,2203909.634273772,1027441.1333659724,846.8772,386.7974686893516,874562.3928944619,393810.32255940576,1342.53916,581.9413802552193,1370106.7711598745,577890.5832999178,0.38023,100000,0,1092513,11416.01880877743,0,0.0,0,0.0,48864,510.09404388714734,0,0.0,45006,468.2967607105538,1049241,0,37659,0,0,0,0,0,103,1.0553814002089863,0,0.0,0,0.0,0,0.0,0.04693,0.1234252952160534,0.2949073087577242,0.01384,0.3729366211534543,0.6270633788465457,23.08085449587028,3.954220035458294,0.2940863079381992,0.2991475759190197,0.2099094299413958,0.1968566862013852,11.1627073614205,6.053847508052354,14.948549616700324,11218.523852556837,43.11553405658682,13.784823870275094,12.463530232840114,8.698438015439576,8.168741938032042,0.595631326584976,0.8343722172751559,0.6929347826086957,0.5697969543147208,0.115020297699594,0.7713280562884784,0.9423076923076924,0.8774834437086093,0.7386934673366834,0.1428571428571428,0.5192969048528849,0.7572519083969466,0.6234413965087282,0.5127334465195246,0.1068301225919439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401850895578,0.0043583584192335,0.0062996439331689,0.0086944156661994,0.0109220709222743,0.01300116063611,0.0149970434108843,0.0173077512176692,0.0194588735735612,0.0214815952490656,0.0236237426816639,0.0254975252099977,0.0275852138316911,0.0297769306063572,0.0320915781541923,0.0340826835977085,0.035995069452357,0.0381661165431483,0.0403702163061564,0.0424008753191267,0.0573666892985846,0.0710471204188481,0.0850197329750608,0.0977239485231445,0.1097932868343023,0.1247592439731623,0.13567977915804,0.1456646783127396,0.1550992485542954,0.163802449522869,0.1751716999644201,0.1861875521188689,0.1972027210884353,0.2066795793528336,0.2147645097024864,0.2235146842146077,0.2313762696729545,0.2393291310220621,0.246483666061706,0.252258958531362,0.2576476305072195,0.2629202442505206,0.2687651618247441,0.2727338103628061,0.2765502581232918,0.2808673155106566,0.284707531700234,0.2868662715270535,0.2899744795512546,0.2925895614984556,0.2902995335795745,0.286962152629476,0.284107565678205,0.2810840452551373,0.2791193813150019,0.2752782400268698,0.2712845672098563,0.2717432244329812,0.2717976685527302,0.2729196301564722,0.272941000858305,0.274335585807443,0.2758217920907725,0.2761962042234697,0.2764208211844558,0.2759173540896278,0.2785024563781128,0.2849363661822821,0.288053281531844,0.2930398618957941,0.2983487391187292,0.3012995179207713,0.3054221002059025,0.3081060889054912,0.3132585509378447,0.3161959654178674,0.3204690515066053,0.3203140333660451,0.3234190782422294,0.3211009174311927,0.0,1.7692147810776204,49.907497244650784,136.5044103161899,192.90034627992367,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95734,49267,470.7731840307519,4689,47.63198027868887,3782,38.88900495121901,1380,13.986671402009735,77.32392886815877,79.68806412823693,63.31606620966248,65.06501035663238,77.13684256669865,79.50638892448681,63.243822792150745,64.99773760401385,0.1870863014601269,181.67520375011748,0.0722434175117356,67.27275261853549,240.76712,169.44959481679066,251495.47705099548,177000.0325181094,561.63296,379.3073722398671,586030.678755719,395591.79438802,500.86499,245.9451293338527,519596.5278793324,254149.8650058148,2164.99612,1029.8099346145286,2228632.627906491,1043693.2823791696,877.24177,399.2633217584235,903526.061796227,404332.2737526113,1344.95522,588.206737042158,1365923.4754632628,580655.3623618978,0.38425,100000,0,1094396,11431.612593227068,0,0.0,0,0.0,48912,510.27847995487497,0,0.0,45335,470.0106545219045,1046750,0,37582,0,0,0,0,0,95,0.981887312762446,0,0.0,2,0.0208912194204775,0,0.0,0.04689,0.1220299284320104,0.2943058221369162,0.0138,0.3741123960235342,0.6258876039764658,22.85963922439031,4.09278233894349,0.3059227921734532,0.2884717080909572,0.2014806980433633,0.2041248016922263,11.703277965628825,6.43780744856837,14.9517482823033,11258.307868887958,43.38641500418233,13.415460975642445,13.063919439140529,8.361119073391489,8.545915516007867,0.5980962453728186,0.8267644362969753,0.7035436473638721,0.594488188976378,0.1204663212435233,0.7586821015138023,0.9147121535181236,0.867109634551495,0.7653631284916201,0.1436781609195402,0.530274539300489,0.7604501607717041,0.6460280373831776,0.5420240137221269,0.1137123745819397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023600433518692,0.0046132476249378,0.0068910223882111,0.0091243471722652,0.0111791512389632,0.0136863543788187,0.0157820687967701,0.0181081384547857,0.0200492797186353,0.0221357632845295,0.0244522591426843,0.0267459290745189,0.0288889574273406,0.0309110573209043,0.0329068207615313,0.0345857667062897,0.0366054504210559,0.0387972640559643,0.0408776581916497,0.0430184826321601,0.0576099893508174,0.0713837333389131,0.0845454450119026,0.097165991902834,0.1093359486222278,0.125,0.1352320719879454,0.1452653774067132,0.1549686985876973,0.1633016308718355,0.1749765829394601,0.1862771606874398,0.1972751391788448,0.2061541153185859,0.215239436000088,0.2250055370985603,0.2330223838960923,0.240734906955289,0.2476047768242292,0.2538288701393983,0.2592159225190574,0.2644802342606149,0.269921782412894,0.2743303383995297,0.2780386337096146,0.2825199491866158,0.2866127132870637,0.2889041741500758,0.2914911541701769,0.2945605368134626,0.2912281174615581,0.2875584916047344,0.2842628864526674,0.2800728513197074,0.2773841880913128,0.2740613917084505,0.2703287333817539,0.2713170683815227,0.2714441379780025,0.2726286588185084,0.272815443439336,0.2739890538252549,0.2748311233425068,0.2757546771072008,0.2764039031856883,0.2772420943494038,0.27829014371393,0.2840592416319629,0.2869196834955535,0.2908581795235841,0.296133845806014,0.2969292249447891,0.304827156649019,0.3066606389391199,0.3136576239476146,0.3192466156562684,0.3212466287084207,0.3269568612141323,0.3282801881860951,0.3341997772001485,0.0,2.4019068900521097,48.337696719156376,144.09143000838148,190.05625002703053,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95805,48961,466.593601586556,4711,47.90981681540629,3734,38.494859349720784,1447,14.863524868221909,77.4066300966336,79.74594398025086,63.35719594835807,65.08776015774966,77.21907483483919,79.55782830622572,63.285448013498,65.01751670544995,0.1875552617944151,188.1156740251413,0.0717479348600704,70.24345229970663,240.47012,169.1559468320568,250999.32153854184,176562.52474511432,558.79992,377.98760400436,582799.8538698398,394070.3345382391,497.80614,244.3335243734816,515925.8285058192,252306.9762870445,2163.25576,1024.684561985641,2231130.734304055,1042837.1113076946,875.0837,395.63446391368666,903377.2558843484,403007.7195085489,1412.8881,606.0632493923034,1452069.056938573,612570.266180873,0.38156,100000,0,1093046,11409.06006993372,0,0.0,0,0.0,48768,508.5433954386514,0,0.0,44972,465.8420750482751,1051557,0,37780,0,0,0,0,0,91,0.9394081728511038,0,0.0,3,0.0313136057617034,0,0.0,0.04711,0.1234668204214278,0.3071534706007217,0.01447,0.3618795768917819,0.638120423108218,22.926671744613767,4.22725669847558,0.2905731119442956,0.2777182645956079,0.2177289769683985,0.2139796464916979,11.598664283992504,6.129564788562189,15.410034228358644,11237.888748824813,42.51543307667395,12.76438019203646,12.207129523201298,8.989213481941103,8.554709879495087,0.5747188002142475,0.8061716489874639,0.6866359447004609,0.5916359163591636,0.1051314142678347,0.7551385165326184,0.937354988399072,0.8481848184818482,0.7387387387387387,0.1226993865030674,0.4975143403441682,0.7128712871287128,0.6240409207161125,0.5363790186125211,0.10062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.004562876437306,0.0068600886940461,0.0089816404702152,0.0109030624179981,0.013054723936376,0.0152933259925368,0.017751237686929,0.0202379492211455,0.0224425887265135,0.0245557218111382,0.0268120998194056,0.0287267719125143,0.0308118347093825,0.0332443381541918,0.0352842774829103,0.0373267121870473,0.0396110425759099,0.0415774928834126,0.043673805086775,0.0579704096325201,0.0721874803923619,0.0856304370611047,0.0988177184593557,0.1106264618496744,0.1251598178340853,0.1359102905171226,0.1457035320135241,0.1553703664184041,0.1639547962080231,0.1755369517496664,0.1871917985984947,0.1983002217102117,0.2067297191035778,0.2146443284811864,0.2231959105091947,0.2311570118890946,0.2389388489208633,0.2462407294005579,0.2522774090180819,0.2577486444929999,0.2628682913152176,0.2683529634359775,0.2722234192822428,0.2763819095477386,0.2802546986230509,0.2829707107735809,0.2868566924328722,0.2898788882563014,0.2928951948942455,0.2900220774325561,0.2872476395970479,0.2846086736273323,0.2816779462907112,0.2782429568593743,0.2750805109968101,0.2713025673334383,0.2709492194509241,0.2717172230408346,0.2719845802903574,0.2729318553786639,0.2729534368939646,0.2736156351791531,0.2749274816766679,0.2762409913659824,0.2766439909297052,0.277393018018018,0.2832687238331524,0.2878173819668156,0.2905307623107913,0.2939751469202817,0.2976047591713197,0.3026746556303663,0.3069601427721594,0.3103511338697878,0.3123706599218211,0.3157973846385089,0.3172074729596853,0.3203146189313805,0.3327003418154197,0.0,1.792005260721062,48.6864342079393,133.4349081064353,193.98684955566924,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95680,49228,470.9970735785953,4677,47.50209030100334,3728,38.2943143812709,1419,14.391722408026755,77.29491858535671,79.69776002655826,63.29396199958445,65.07424384561628,77.11160117964273,79.52154400220168,63.22402059791487,65.01007638551548,0.1833174057139786,176.21602435657735,0.0699414016695882,64.16746010080487,240.2774,169.11369428675036,251125.8152173913,176749.05886531377,562.56568,380.7580414143167,587276.943979933,397261.6926671086,508.48263,249.91042874857104,527354.2537625418,258008.7111405561,2151.39816,1025.7213552609978,2211777.0484949835,1035371.2803229492,848.34176,389.9484041411298,870918.9381270903,391934.1014715814,1378.39372,588.4826586547539,1399180.685618729,578019.3924753092,0.3814,100000,0,1092170,11414.809782608694,0,0.0,0,0.0,48973,511.1204013377926,0,0.0,45879,475.49122073578593,1046658,0,37597,0,0,0,0,0,96,1.0033444816053512,0,0.0,2,0.0209030100334448,0,0.0,0.04677,0.122627163083377,0.3033996151379089,0.01419,0.3567323481116584,0.6432676518883416,22.97968875563813,4.074813194495924,0.3205472103004292,0.2733369098712446,0.2009120171673819,0.2052038626609442,11.609147539581608,6.409798324769139,15.121020322719648,11224.638935951803,42.93706981762302,12.548735494692195,13.8296781543592,8.305913536099878,8.252742632471751,0.6013948497854077,0.8292443572129539,0.7330543933054393,0.5914552736982643,0.1019607843137254,0.7851027397260274,0.9330357142857144,0.8825136612021858,0.7738693467336684,0.1419354838709677,0.517578125,0.7478108581436077,0.6670687575392038,0.5254545454545455,0.0918032786885245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020983912333877,0.0043735476473154,0.0067638247092875,0.0089980173859996,0.0111159746327758,0.0130461814438453,0.0152455202253153,0.0175823951288285,0.0196525760117854,0.0218502545610997,0.0239624151160166,0.0259083858109982,0.0280304589421691,0.0302483767906832,0.0324528535595949,0.0345715526691348,0.0366931597981409,0.0389431063122923,0.04084137816245,0.0426824819420268,0.0573261048959084,0.0715302789178323,0.0847238838864051,0.0980701643622282,0.1101872856766024,0.1254616450967735,0.1358811040339702,0.1454781654971196,0.1550544988245351,0.1644938033156285,0.1760700703504595,0.187184176071502,0.1977731626961258,0.207469832109129,0.2151812423016012,0.2240283468054479,0.2323329242441147,0.2401003747172741,0.2470081976519745,0.2529599871628823,0.2577758742432485,0.2626486005803613,0.2680819842847676,0.2731991512724919,0.2778526750470638,0.2817154976817599,0.2838690297386602,0.2869821732828115,0.2898751195801122,0.2933918036241045,0.2894910063002915,0.2859103134090784,0.2833092089545946,0.2802231061916292,0.2769205685742659,0.2737349029200428,0.269867130654856,0.2702742577990524,0.2706269501611281,0.2714094677721316,0.2711559708619688,0.2718095614381667,0.2728033297776662,0.2733623479522374,0.275697000312718,0.2763867538625882,0.2784943481108169,0.2824777205974645,0.2869364807766176,0.2918673509672325,0.295457639424604,0.2973115445440168,0.2997630331753554,0.3068791059427622,0.3125641264807387,0.3149151743638077,0.3174436090225564,0.3182907348242811,0.3229083132852178,0.3221850613154961,0.0,2.5686648600055038,50.30175931142348,134.17025011187195,188.0519020467488,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95721,48983,467.0866372060467,4789,48.77717533247667,3771,38.82115732179981,1433,14.5840515665319,77.3593554540744,79.73032588323544,63.33143217950936,65.08374291985629,77.17293479736384,79.54647991571768,63.25962881156818,65.01499013549633,0.1864206567105668,183.84596751775464,0.071803367941186,68.75278435995824,239.65766,168.61886660791689,250371.03665862244,176156.60785816787,561.68944,379.1689679657197,586229.5107656626,395549.8563175476,503.33216,247.4968925623732,521928.2289152851,255576.0469195061,2162.58424,1035.128221651939,2227455.1665778668,1049598.6686849694,852.73854,395.2635055735396,872309.7543903637,394385.8174904968,1390.38272,606.5171146473798,1416717.9824698863,604473.6839233493,0.38088,100000,0,1089353,11380.50166630102,0,0.0,0,0.0,48982,511.1208616708977,0,0.0,45358,469.9386759436278,1053110,0,37788,0,0,0,0,0,100,1.0447028342787894,0,0.0,1,0.0104470283427878,0,0.0,0.04789,0.1257351396765385,0.2992273961160994,0.01433,0.3684841222288795,0.6315158777711204,23.20003357131857,3.9740329974733086,0.3118536197295147,0.2871917263325378,0.1967647838769557,0.2041898700609918,11.212711032779618,6.177166289930292,15.585361319663116,11308.296818968804,43.47870999613495,13.27836608667437,13.493101113315792,8.251688820418792,8.455553975725998,0.594272076372315,0.8217913204062789,0.7142857142857143,0.5619946091644205,0.122077922077922,0.7624784853700516,0.9327548806941433,0.8696883852691218,0.675392670157068,0.1273885350318471,0.5193560751245688,0.7395498392282959,0.6476306196840826,0.5226860254083484,0.1207177814029363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0044603485154135,0.0067277542695363,0.0092523003798419,0.0118361245843628,0.014415588382013,0.0165655741882868,0.018720780679011,0.0207315327840363,0.0228298815507939,0.0250217915192534,0.0271674935034254,0.0293530597966994,0.0316299196373377,0.0333415887561141,0.0354163436191657,0.0376133681202633,0.0397879909968779,0.0418226047904191,0.0437590491963792,0.0577965269873756,0.0724243312261899,0.0862432474956731,0.0998906460296096,0.1117519902989402,0.1274567880339348,0.1378589468769234,0.1477609079874789,0.1569142967071724,0.1656470689248073,0.1766208293818432,0.1875196223841332,0.198285335045097,0.2068659852480903,0.2150992443768863,0.2240901328483665,0.2326256658811967,0.2399739012070691,0.2470980699186438,0.254418620634357,0.2598179273328783,0.2648588627198878,0.2695807335980336,0.2744445906660127,0.2791481724029203,0.2840040847964368,0.2865573114622924,0.2894656604924155,0.29236181164481,0.2950806717155087,0.2919766848424615,0.288412700591651,0.2853955915985015,0.2829106280193236,0.2814164004259851,0.2768933103795,0.2719260972884503,0.2712707813290261,0.2711585169081305,0.2708244643110543,0.2714677308072426,0.2711381154632688,0.2722089963663701,0.2738671604828094,0.2749006844397645,0.2759058299448343,0.2769979624179307,0.282470680218921,0.2877514731006589,0.28963510537905,0.2914727280943558,0.2981356646302928,0.2993602609131962,0.305622369212267,0.3089799315638583,0.3141525917297612,0.3161930536761389,0.3159563924677899,0.323901913230935,0.3380756271059528,0.0,2.206778726536108,50.49444262570493,141.59338885419078,186.205419366099,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95882,48640,463.65324044137583,4554,46.12961765503431,3578,36.65964414592937,1374,13.933793621326211,77.4394230829848,79.71937371921949,63.39129033748679,65.07733924866794,77.25531382302931,79.54155608226245,63.320829968179936,65.01222912002162,0.1841092599554912,177.81763695704456,0.0704603693068506,65.11012864632448,239.06212,168.18582656096638,249329.5091883774,175409.17644705615,557.88972,377.5228951956129,581220.83394172,393107.5021334692,494.32437,243.29809312116257,511625.1016874909,250666.5501904723,2063.35696,988.9235313766324,2117695.083540185,997116.2172009686,816.45479,373.9032315946399,837166.8092029787,375608.2701598196,1329.70824,573.8393302465961,1351006.1951148286,566672.3439087673,0.37865,100000,0,1086646,11333.159508562609,0,0.0,0,0.0,48709,507.34235831542935,0,0.0,44639,461.76550343130094,1061299,0,38106,0,0,0,0,0,101,1.0220896518637492,0,0.0,1,0.0104294862435076,0,0.0,0.04554,0.1202693780536115,0.3017127799736495,0.01374,0.3594178443366378,0.6405821556633622,23.103611562882925,4.069829141598825,0.3180547792062604,0.2792062604807155,0.198993851313583,0.203745108999441,11.724499367470424,6.551126930922332,14.669979093379714,11102.951616140112,41.00964741493414,12.216765679732813,12.93238090946762,7.869343515837933,7.991157309895788,0.5832867523756289,0.8168168168168168,0.6889279437609842,0.5814606741573034,0.1001371742112482,0.7527075812274369,0.9325581395348838,0.8483965014577259,0.7485029940119761,0.1011904761904761,0.5072874493927125,0.7293497363796133,0.620125786163522,0.5302752293577981,0.0998217468805704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0044083667761157,0.0063502368658639,0.0087928601163581,0.0110786994216715,0.0134510897214138,0.0155946014769544,0.0176560587515299,0.0200543500469944,0.0224022586386791,0.0242525461587327,0.0262463959942951,0.0284551592317415,0.0308211774636868,0.0327137009887311,0.0348822800495663,0.0368734157570741,0.0385571881541044,0.0406358039431472,0.0426654182272159,0.0567091985655908,0.070710553814002,0.0837530760772815,0.0957645625971189,0.1079260140434357,0.1237330010980657,0.1334053641794839,0.1432199787460149,0.1525438184997228,0.1613027517044299,0.1733642950826721,0.1842571582928147,0.1945337620578778,0.203166486380175,0.2117183978186056,0.2198649845064187,0.2275690675463329,0.2357533615663719,0.2424554805383116,0.2487340976373632,0.2542752560534854,0.2596941753239173,0.2651305683563748,0.2693527349312528,0.2735808999259969,0.2774168143335302,0.2817126650757756,0.2844107718470012,0.2866457502162657,0.2896622447772183,0.2866578067737908,0.2832679810249801,0.2805617126343256,0.27867294483563,0.2759278991298171,0.2725123903926801,0.2689343189950033,0.2697192295135488,0.2704897148001562,0.2711747180251117,0.2711264983992256,0.2719439428436838,0.2728954479318229,0.2730914805551251,0.2746006845407872,0.2747947751561774,0.2772872968565484,0.2835057934196666,0.2875898286346047,0.2913456650111454,0.2943418220946915,0.2976527297495546,0.3007822200148994,0.30318988865483,0.3058121093385577,0.3099882491186839,0.314718482252142,0.3193515704154002,0.3180570801317234,0.3305847076461769,0.0,2.613098117736749,47.36151165287403,129.9950325055042,179.28607516905151,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95727,48902,466.8693263133703,4795,48.85768905324517,3828,39.288810889299775,1403,14.217514389879552,77.34647984393533,79.70012598112882,63.33814763576003,65.07590158296665,77.16294356055083,79.52255784719274,63.26748895121296,65.01088172004486,0.1835362833844982,177.5681339360773,0.0706586845470695,65.01986292178685,239.69858,168.57790457896454,250397.4009422629,176102.10722258565,556.27936,375.8682922784043,580367.9526152496,391904.3752237135,498.61249,245.090437980375,516345.1795209293,252641.47420346385,2192.00244,1044.5248587534556,2252181.140117208,1053675.106616834,877.16964,402.8461231158833,901586.950390172,406225.66266959935,1358.88412,587.1805344397777,1379534.739415212,578242.6290101692,0.38114,100000,0,1089539,11381.70004283013,0,0.0,0,0.0,48548,506.4401892882885,0,0.0,45022,465.8664744533935,1057686,0,37956,0,0,0,0,0,103,1.0655301012253595,0,0.0,2,0.0208927470828501,0,0.0,0.04795,0.1258067901558482,0.2925964546402502,0.01403,0.3756019261637239,0.6243980738362761,23.02045924655856,3.967324308548341,0.3079937304075235,0.2915360501567398,0.2016718913270637,0.1987983281086729,11.20744147913008,6.190222327296297,15.064156868438449,11263.26619567792,43.96801097273213,13.78982883165047,13.30088231035428,8.497074546393126,8.38022528433424,0.589864158829676,0.8064516129032258,0.6946564885496184,0.5816062176165803,0.1182654402102496,0.7579034941763727,0.8987854251012146,0.8670520231213873,0.7433155080213903,0.16,0.5129474485910129,0.7331189710610932,0.6230492196878752,0.5299145299145299,0.1058020477815699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020862872189588,0.0046528601404981,0.0071239382592017,0.0096401942260417,0.0118982244188174,0.0139578921648476,0.0160958205912334,0.0181977770746792,0.0204331960217109,0.0225855661236984,0.0246209985752211,0.0266977336179996,0.0287265324587197,0.0309622396638032,0.0328731504983594,0.0347932150129725,0.0368932239893969,0.0389607694622272,0.0411256536338403,0.0429683024135165,0.0575288688425316,0.0715840817266428,0.0846710733396285,0.0978631220291927,0.1101410767381539,0.1260242976622223,0.1370150742041223,0.1468725720793111,0.1552915051938208,0.1640373815749989,0.1755251003907974,0.1854539555507489,0.1959744381167673,0.2050354602178973,0.2142229061332161,0.2233008634049147,0.2314682663574327,0.2393225828216719,0.2464917355840679,0.2521413521436423,0.258352511246545,0.2645411712438474,0.2702296579386395,0.2746117714723926,0.2787583762260853,0.2821825431007961,0.2843676551482722,0.2884720544286895,0.290980899967627,0.2943465414446262,0.2907666841616537,0.2877250859106529,0.2845586787090965,0.2817563960116016,0.2798961809417872,0.2759369409318185,0.2718391439529047,0.2714187575648533,0.2719795657726692,0.272930967030622,0.2737786565688597,0.2746744817277054,0.2756237603090093,0.2759756884921077,0.2776009381805998,0.2796649846538001,0.2814088907825593,0.2863038109231875,0.2897049591964846,0.2928883466488252,0.2961353968684949,0.300443224989447,0.3028002489110143,0.3066747297603749,0.3119394618834081,0.3122566945853486,0.3176381529144587,0.3199919549477071,0.3220901299419408,0.3170353123787349,0.0,2.7434883295667243,51.58783262387716,135.93702693407735,193.72668312479885,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95751,48873,467.6086933817923,4712,47.97861118943927,3749,38.67322534490501,1408,14.412382116113667,77.41222784566315,79.76611931303611,63.350809200748486,65.0888688877508,77.23322515972696,79.58926597102909,63.28397516431455,65.02468571281088,0.1790026859361972,176.8533420070213,0.0668340364339385,64.18317493992731,240.93168,169.45831724620746,251623.1475389291,176978.1174569534,561.70663,379.2745923909041,586160.7502793705,395633.73418960697,499.24215,244.5245773936124,518088.42727491097,252895.7080409856,2140.92716,1012.794443160292,2211251.140980251,1033086.4082078988,854.42319,386.8272355664282,881310.8479284812,392965.0818961976,1375.97164,579.1247018629374,1410274.0650228194,582492.1176717954,0.38234,100000,0,1095144,11437.41579722405,0,0.0,0,0.0,49020,511.4411337740598,0,0.0,45119,467.880231015864,1050559,0,37548,0,0,0,0,0,76,0.7937253919019122,0,0.0,0,0.0,0,0.0,0.04712,0.1232410943139614,0.298811544991511,0.01408,0.3639698390055023,0.6360301609944976,23.154531739632585,4.056933720463383,0.3043478260869565,0.2886102960789544,0.1965857562016537,0.2104561216324353,11.240081165950086,5.959851880466976,14.886405817564976,11218.689133013302,42.74480296580296,13.267102501041462,12.747135967864926,8.209709355048203,8.52085514184837,0.5860229394505201,0.8271719038817006,0.7011393514461,0.5698778833107191,0.1039290240811153,0.7775816416593115,0.91340206185567,0.8501529051987767,0.751412429378531,0.1875,0.5030581039755352,0.7571189279731994,0.6412776412776413,0.5125,0.0852713178294573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748835325096,0.0040845284548725,0.0063101083471979,0.0086115850190917,0.0108378491037932,0.0130605181452639,0.0150437246468393,0.0172647776088487,0.019427496908565,0.0217093142272262,0.0236841026481921,0.026063480331773,0.0281581544534912,0.0299778590185881,0.0322447505546097,0.0340682398420622,0.0359823971006989,0.0380034444836387,0.0398282530045327,0.0419166666666666,0.0566545917674938,0.070803034266283,0.0836086723937191,0.0969580949175361,0.109630520562976,0.1249880958679434,0.1353120954220345,0.1457057990609928,0.1555253990981557,0.1642736033309724,0.1762923831599374,0.1867981938473866,0.1970195070974484,0.20624685248845,0.2138356466181978,0.222490850615504,0.2306385831610704,0.2393901518990192,0.246722139605635,0.2529336266960029,0.2591555164590953,0.2642807017543859,0.2694913851211523,0.2737053747741063,0.2770714545675118,0.2808670833128291,0.2841516407771839,0.2872545537571668,0.2899971619494827,0.2932019704433498,0.2898935101466747,0.2864572640799288,0.2842754079988793,0.2805016448549798,0.2781192423907436,0.2736712665664708,0.2709428396592032,0.2709830574615459,0.270326063046752,0.2713245431086288,0.2724981934742732,0.2741125676441284,0.275396298448004,0.2757949670514351,0.2769922879177378,0.278204599360627,0.2802782785038306,0.2849562465090299,0.2889620516374978,0.2928697011134987,0.296983550714894,0.3000209183139839,0.3045282785108096,0.3108967167751103,0.3152483246121362,0.32378522555955,0.3282204020848845,0.3332017370706672,0.3349384697699304,0.3287313432835821,0.0,1.8145987158805252,49.43276296498591,134.97710425710974,191.65355125683325,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95738,48648,465.1757922663937,4689,47.85978399381646,3686,38.009985585660864,1341,13.599615617623096,77.32373385663094,79.6938890327698,63.321321634088775,65.07507407346236,77.15150834759513,79.52593695559236,63.25629265716752,65.01408115761531,0.1722255090358118,167.9520771774463,0.0650289769212548,60.99291584705213,240.63798,169.271580733487,251350.5400154589,176807.09930590467,558.30756,376.6303592658046,582655.3301719275,392890.3458039698,494.60511,242.4780396807079,514209.7077440514,251310.6664181224,2088.29988,980.2497954514204,2154735.047734442,997357.5335304898,816.87591,370.38663452965193,840976.7490442666,374610.9638071104,1302.531,550.9575305828394,1323805.824228624,544558.7437617922,0.38018,100000,0,1093809,11425.02454615722,0,0.0,0,0.0,48756,508.7321648666152,0,0.0,44635,463.73435835300506,1052704,0,37811,0,0,0,0,0,98,1.0236269819716308,0,0.0,3,0.0313355198562744,0,0.0,0.04689,0.1233363143774001,0.2859884836852207,0.01341,0.3740302164148632,0.6259697835851368,23.24461269998395,3.994257437250046,0.3014107433532284,0.2984264785675529,0.2061855670103092,0.1939772110689094,11.146737357449366,6.012733435340659,14.239896891830371,11159.395508385178,42.14635068418957,13.55937534009832,12.553971493345516,8.34776126829464,7.685242582451088,0.5827455236028215,0.8081818181818182,0.6948694869486949,0.5565789473684211,0.0895104895104895,0.777676120768527,0.9258474576271186,0.8866666666666667,0.6910994764397905,0.1153846153846153,0.5005784805244891,0.7197452229299363,0.623921085080148,0.5114235500878734,0.0837606837606837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018844984802431,0.0040058008052166,0.0061104344295574,0.0083429872162266,0.010632020185577,0.012621092198148,0.0148492636560192,0.0169334000592362,0.0191527000910085,0.0215167187259972,0.0237716770415645,0.0257368799424874,0.0280435364072176,0.0301412775779808,0.0322244356595068,0.0342079146507877,0.0362591269224794,0.0384910671674309,0.04014389835619,0.0422505860901276,0.0560990634494711,0.0700081636070583,0.0832502858581514,0.0961657813075264,0.1086071624414729,0.1241554321966693,0.1348977340235933,0.145008033538694,0.1541731190260052,0.1631497683993824,0.1742697488129717,0.1856102811523025,0.1963986690733531,0.2046376367949797,0.2134874716765294,0.2227081488042515,0.2304270760175245,0.2374566162347946,0.2449816949459916,0.2504346234788178,0.2560960114585379,0.2626477320502639,0.2675495593412565,0.2726989826451226,0.2760984012227371,0.2800561244584482,0.2839033903390339,0.2874286513354436,0.290852632940872,0.2928400200205474,0.2888862008252355,0.2848169985843675,0.2821908942540379,0.2798134673134673,0.2773104256613403,0.2734788056599737,0.2696693002791314,0.269437588872726,0.2697350543478261,0.2704852541680723,0.2703624972029537,0.2716929133858268,0.2722922282824483,0.2728448468090799,0.2734729117202676,0.2748895243046529,0.2761140972044478,0.2824899547965846,0.2868861078977811,0.293305289892456,0.2962558075977043,0.2998991132586417,0.3023899371069182,0.3077858880778589,0.3084591019191354,0.3077104456496109,0.3093839433649646,0.3111510791366906,0.3136990002701972,0.3239650588682111,0.0,1.886859247579842,47.55999450723333,134.24327776128055,192.14298593697345,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95779,49126,467.2527380741081,4717,47.91238162854071,3770,38.74544524373819,1416,14.366405997139248,77.38153749659537,79.7230725352369,63.350937847410606,65.08288998160768,77.19666857705288,79.54375847549281,63.27980749548464,65.01666562875099,0.1848689195424953,179.31405974408676,0.0711303519259658,66.22435285669326,239.98656,168.8808752441022,250562.8164837804,176323.48974629326,557.99185,377.1998160570583,581948.1723551091,393188.59672481264,501.48367,246.6191854274508,520248.8436922499,254863.70977180425,2161.3132,1022.2577408171004,2221882.79267898,1032628.9278621614,884.04644,399.8395795327535,903557.564810658,398011.6095728206,1371.69804,591.5642551731675,1392413.9320727924,582089.8249986332,0.38214,100000,0,1090848,11389.218931080926,0,0.0,0,0.0,48677,507.5434072187014,0,0.0,45253,469.1529458440786,1054350,0,37827,0,0,0,0,0,89,0.9187817788868125,0,0.0,1,0.0104407020328046,0,0.0,0.04717,0.1234364369079395,0.300190799236803,0.01416,0.3603843008994276,0.6396156991005724,23.31294634117119,4.096069480029793,0.3159151193633952,0.2782493368700265,0.2005305039787798,0.2053050397877984,11.359818833468234,6.194334896851719,15.149333107552769,11279.05583322903,42.97561791664885,12.864427875937343,13.346213935536012,8.39280336033924,8.372172744836245,0.5806366047745358,0.8026692087702574,0.691855583543241,0.5753968253968254,0.1136950904392764,0.7447963800904978,0.891832229580574,0.8417721518987342,0.7112299465240641,0.1342281879194631,0.5125703564727955,0.7348993288590604,0.6377142857142857,0.5307557117750439,0.1088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002511697624015,0.0046120785776552,0.0067367395803741,0.0092217381148248,0.0117636293389186,0.0140883781060089,0.016359522159253,0.0185345839414568,0.0211428805003167,0.0234309452186547,0.0255159551575021,0.0277452731415901,0.0299715193452533,0.0322481003274232,0.034492006188757,0.0368139361877996,0.0389092978734413,0.0409453716181196,0.0429651790908335,0.0447806259500655,0.0590242629793895,0.0727620721031658,0.0860941038329279,0.0991267430985382,0.1114705727382896,0.1274902503725467,0.1377621858803828,0.1477342803070576,0.1567982924226254,0.1657251883849806,0.1768979881809668,0.1884855826429297,0.1984522075607052,0.2068302278564013,0.214734318114324,0.2234706754931698,0.231508529378972,0.2393381443762505,0.2467030287910916,0.2528601501006773,0.2580909984390356,0.2629635256582561,0.268461138180614,0.2731365083925963,0.2774110566422366,0.2818080013782749,0.2852949992506369,0.2875857687420584,0.2904239227397898,0.2932019912028867,0.2891367148135707,0.2859555189456342,0.2832255343082114,0.2792622608043607,0.2764045610237096,0.2732685056558841,0.2695993443243072,0.2696808944748225,0.2707350995624003,0.2702975916007519,0.2710804118337026,0.2715343665900563,0.2717445638590352,0.2742976715195227,0.2754370879908283,0.2764711976792374,0.2784577550385844,0.2821893086066339,0.2871761073918623,0.2902820824669465,0.2947159960392475,0.299332948159042,0.3052519827640042,0.3053815382293003,0.3062441752096924,0.3085480093676815,0.3105057194461168,0.3125248508946322,0.3157177880686461,0.311864406779661,0.0,2.3287377691382605,47.52081220749266,142.20005250106027,190.844405718823,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95867,48759,465.3634723105969,4676,47.57632970678127,3694,38.04228775282422,1379,14.061147214369909,77.37299817448195,79.67420376472869,63.35320242165369,65.05694903123621,77.18735279858575,79.49104351641016,63.28163235216861,64.98846682932657,0.1856453758962004,183.16024831852928,0.0715700694850838,68.48220190964582,240.5953,169.2850852493583,250967.79913838964,176583.2718759931,559.18545,377.0988015442967,582799.1696829983,392862.436025219,497.42374,244.09186878112592,515773.331803436,252206.85984637323,2105.85844,1010.4468201398548,2168296.2854788406,1025659.4867262508,839.41979,388.4132728309245,862672.5463402423,392222.3213732829,1341.22852,591.8207212385358,1368063.3586114096,590158.9851222469,0.37954,100000,0,1093615,11407.627233563166,0,0.0,0,0.0,48773,508.2666611034037,0,0.0,44931,465.6346813814973,1052554,0,37841,0,0,0,0,0,87,0.9075072757048828,0,0.0,2,0.0208622362231007,0,0.0,0.04676,0.1232017705643673,0.2949101796407186,0.01379,0.3649815043156597,0.6350184956843403,22.950116851755705,3.990560525612003,0.2907417433676231,0.297509474824039,0.2081754195993503,0.2035733622089875,11.185548274229102,6.103749885500701,15.056556938270845,11166.292836295112,42.37866919003493,13.481553469497408,12.233312490811008,8.388684040228938,8.27511918949759,0.5760693015701137,0.8007279344858963,0.707635009310987,0.5344603381014305,0.1023936170212766,0.7497820401046208,0.9190871369294604,0.8668831168831169,0.6702127659574468,0.1420118343195266,0.4978405967805261,0.7082658022690438,0.643603133159269,0.4905335628227194,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0044189039901892,0.0068267348325776,0.00911804723514,0.0114368785962629,0.0138640065146579,0.0159611876102045,0.0179918154078519,0.0200676414390665,0.0220089427317282,0.0240973730584812,0.0263373894486282,0.0286935788867878,0.0305815748841996,0.0326388387748579,0.0346779023896565,0.0365726227795193,0.0384647268507004,0.0403850547259548,0.0423555116266971,0.0564841558658227,0.0701902880968055,0.0833019065577205,0.09608215812078,0.1082666385846672,0.1241298446132232,0.1350231537899098,0.1447178156764343,0.1539767086878088,0.1631819789311243,0.174498450146375,0.1848844877352677,0.195249483639526,0.2040677966101695,0.2123252998789479,0.2215354622891259,0.2299393046815727,0.2379334398415877,0.2447930846719303,0.2513823856025827,0.2570850436491877,0.2617513245459117,0.266841002946362,0.2709189111507646,0.2745719105350663,0.2790918157528596,0.2832641112890312,0.2867003088812904,0.2915211260317213,0.2929438142970192,0.2892739895592272,0.2868437697659709,0.2831814789258002,0.2803483233688588,0.2764053945787154,0.2727661589697367,0.2686713308801465,0.2684395712298502,0.2697086255020763,0.2696523255400164,0.2693354713603819,0.2702995024679947,0.273003770597671,0.2733931107954545,0.2739321128909229,0.2755233910571207,0.2757156204875562,0.2802734679861393,0.2852216920344119,0.2900454973329149,0.2944763271162123,0.2982924785250366,0.3053135888501742,0.3097391828735112,0.312814304339728,0.3204188481675393,0.3289016467744372,0.3335349868925186,0.3329673346143288,0.3402646502835538,0.0,1.908297946438719,49.96469010796272,132.87643900068014,186.55641145890564,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95785,49193,469.4889596492144,4638,47.1785770214543,3682,37.7929738476797,1390,14.104504880722452,77.39816222968327,79.72757738406783,63.35848721039546,65.07966398256686,77.21251102013193,79.54814193897153,63.28729330359084,65.01383588896083,0.185651209551338,179.43544509630271,0.0711939068046234,65.82809360602937,241.4313,169.86021706170206,252055.4366550086,177334.88235287575,564.61621,381.7499033272759,588828.4386908179,397915.1363233031,505.68303,248.36696295645208,524138.14271545655,256385.4858739649,2090.63412,995.9943911253492,2148774.651563397,1005965.5176962462,840.11752,383.6341329527633,863083.8127055385,386514.5395503204,1348.3987,581.8683579241737,1370707.375893929,575600.6081961861,0.3801,100000,0,1097415,11457.065302500392,0,0.0,0,0.0,49166,512.6063579892468,0,0.0,45510,471.2846479093804,1044323,0,37499,0,0,0,0,0,90,0.939604322179882,0,0.0,0,0.0,0,0.0,0.04638,0.1220205209155485,0.2996981457524795,0.0139,0.3561076604554865,0.6438923395445134,23.032053197435168,3.996434937782688,0.3006518196632265,0.3001086366105377,0.1998913633894622,0.1993481803367734,11.52794317232532,6.3372048157922105,15.042589315263111,11221.587592952092,42.24894224710879,13.57109800835372,12.589858829533965,8.04027996577918,8.047705443441941,0.5939706681151548,0.8171945701357466,0.7145438121047877,0.5652173913043478,0.1049046321525885,0.7590788308237378,0.9245689655172412,0.8601823708206687,0.6966292134831461,0.1329113924050632,0.5209557383470427,0.7394695787831513,0.6529562982005142,0.5232974910394266,0.0972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022077737943327,0.0044186800713474,0.0066144544089599,0.0089263953204971,0.011111675900981,0.0137602540354591,0.0158047587507005,0.0179569848589968,0.0200451577968716,0.0221812973194188,0.0243934923366937,0.0264551350463837,0.0284883302673093,0.030723468200953,0.0329209196824414,0.0349931315134426,0.0372339875231483,0.0392596049152278,0.0412280063603579,0.0432278757836419,0.0581520321385715,0.0722279164139142,0.0851436359823862,0.0975312404754648,0.1101623445076955,0.1258469962684595,0.136572380073605,0.1459506049352501,0.1551219616386859,0.1637412478689298,0.1752283105022831,0.1862170405139408,0.1966278097059111,0.2057130373040581,0.2148265365553467,0.2235031198831703,0.2309939238530576,0.2391639213393449,0.2465377417342482,0.2532631096862835,0.2590135130448855,0.2642208482836806,0.2695893977044137,0.2735593626452617,0.2778067694996298,0.2811249923072189,0.2837810820942146,0.2865036519530009,0.2897405385829216,0.2928419915416134,0.2899959661153691,0.2859143712410403,0.2824540187862084,0.2799971177403084,0.2775261942816551,0.2733899623320574,0.2700069369994324,0.2697780028423477,0.2688779591211559,0.2686670575067953,0.2698805953467578,0.2713731971745076,0.2724015830035409,0.2736407799294603,0.2732744878779948,0.2747882668870068,0.2758058623499986,0.2810832609504901,0.2843618271024808,0.2866179858643445,0.2923519367304754,0.2973551045959622,0.3003945259524103,0.3019405109762493,0.3088099204145845,0.3120667371636705,0.3143717080511662,0.316956261234272,0.3223612622415669,0.3269375470278405,0.0,2.477224478887628,48.67022758769855,135.63263474662145,183.86994480648045,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95873,48893,465.2717657734712,4765,48.35563714497304,3786,38.87434418449407,1448,14.675664681401436,77.3584022892406,79.64220866841406,63.35300198276878,65.04231955001775,77.17579676163137,79.46584215678976,63.283031608446656,64.97763837788149,0.1826055276092262,176.36651162429473,0.0699703743221249,64.68117213626101,241.0914,169.6828783492454,251469.5482565477,176987.13751446744,561.88021,379.6356615536531,585446.3196103178,395359.27916501055,500.17833,245.98887211752844,518703.8895205116,254105.209017959,2174.06684,1034.22411082143,2233906.7307792604,1045134.979141828,857.87155,390.50696795097946,876630.5216275698,389213.66536176245,1404.5006,603.9803796747718,1425201.9025168712,593876.0903836472,0.38123,100000,0,1095870,11430.43401166126,0,0.0,0,0.0,49063,511.1032303151043,0,0.0,45132,467.6394813972651,1045861,0,37530,0,0,0,0,0,101,1.053476995608774,0,0.0,0,0.0,0,0.0,0.04765,0.1249901634184088,0.3038824763903462,0.01448,0.3578441194149469,0.6421558805850531,23.34859086377478,4.062650316755639,0.3045430533544638,0.2836767036450079,0.2113048071843634,0.2004754358161648,11.471779359255612,6.3006329818128535,15.468914503177666,11268.992926100222,43.39710286547937,13.202697315963452,13.038591141046252,8.959664068625063,8.196150339844596,0.5686740623349181,0.7849162011173184,0.6834345186470078,0.5575,0.1001317523056653,0.7590467784642542,0.9142857142857144,0.8524096385542169,0.6990291262135923,0.1214285714285714,0.4873727855258198,0.6898222940226171,0.6151035322777101,0.5084175084175084,0.0953150242326332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0047319411091183,0.0070493249890963,0.0091380763333976,0.0113539337263671,0.013627250429986,0.0156893108928644,0.0178999439033097,0.020154579704522,0.02221449820587,0.0242713974223796,0.0265116565171925,0.0287774217402021,0.0307980332050939,0.033151961087409,0.0350630846428645,0.0371780283438502,0.0394457284401007,0.0417891227815106,0.0439554723262588,0.0582231766815395,0.0726210873835095,0.0858596965222581,0.0989562551189701,0.1113510438831188,0.1269160477915931,0.1370664349374225,0.147253354883988,0.1565829081360346,0.1660627760387633,0.1776272573576128,0.1885696358640386,0.1986693048639951,0.2075671775586505,0.21496899327088,0.2243642238994267,0.2328608233050422,0.2405662498875596,0.2474219786951638,0.2535199972504496,0.2592335462371563,0.2644303308888031,0.2700814625367055,0.2737789819454768,0.2763656687402799,0.2809726878327746,0.2844444444444444,0.2883401221995926,0.2916342614196091,0.2934720883242429,0.2905006867946887,0.2869072349323832,0.2841820792162824,0.2804487179487179,0.2781934794227685,0.2745371078806427,0.2711601720647773,0.2701967213114754,0.2710777626193724,0.2720058361950855,0.272954706695045,0.2727272727272727,0.2709773054679834,0.2713977249961044,0.2730667049615854,0.2730798066234068,0.2745779964373568,0.2790545590433483,0.2820619702653884,0.2873481900719254,0.2908697221219776,0.2939049316073581,0.2979134226097789,0.3047040971168437,0.3089339339339339,0.3123961054381382,0.3211757463835026,0.3273533561781899,0.3316980103570455,0.3345907204828366,0.0,2.3984608088137005,48.712772134480815,142.73252089291518,190.4671498966834,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95723,48512,463.59809032311983,4623,46.95841124912508,3694,37.91147373149609,1365,13.84202333817369,77.38965647392791,79.7568568697559,63.34469261111818,65.09410822655546,77.21377383687306,79.58612151141,63.27691540906841,65.03104877990474,0.1758826370548547,170.73535834589393,0.0677772020497755,63.05944665072616,241.527,169.85326702005972,252318.43966444844,177442.2521442702,559.96492,378.4713768779464,584301.3591299896,394698.50179992936,494.48633,243.37021278585388,512057.3738808855,250749.44954602336,2104.13656,1005.3220961951688,2162002.193830114,1014091.5936558289,839.09799,383.9512535293651,857899.5957084504,382515.7534396996,1322.57342,571.0928504599583,1342765.1243692737,562693.0065711298,0.3777,100000,0,1097850,11469.019984747658,0,0.0,0,0.0,48971,510.8699058742413,0,0.0,44667,462.0728560534041,1047141,0,37545,0,0,0,0,0,93,0.9715533361887948,0,0.0,0,0.0,0,0.0,0.04623,0.1223987291501191,0.2952628163530175,0.01365,0.3639378238341968,0.6360621761658031,22.879603538220525,3.96394613702848,0.3118570655116405,0.2839740119112073,0.2111532214401732,0.1930157011369788,11.292258037508647,6.25993737789815,14.554401706426985,11111.495303128771,42.189756135285485,12.894739642723898,12.944241680305646,8.624013664907512,7.726761147348439,0.5936654033567949,0.8036224976167778,0.7022569444444444,0.5884615384615385,0.1150070126227209,0.7669642857142858,0.9096774193548388,0.8654434250764526,0.7262569832402235,0.1543624161073825,0.5182595182595182,0.7191780821917808,0.6375757575757576,0.5474209650582362,0.1046099290780141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334980957783,0.0047139685532678,0.0068196348653832,0.0089298413149927,0.011108059446428,0.0133192130666775,0.0154770037010226,0.0178846683884402,0.0197890260855343,0.0218132312448179,0.024088234691158,0.025891628852432,0.0280444928757941,0.030201618716148,0.0322217981908759,0.0344667217858619,0.0363762503365295,0.0384587452925126,0.0403882930074,0.0423443605105496,0.0570074234941583,0.0714667001601406,0.0842924741110679,0.0963913729615991,0.1082743414181269,0.123500666370502,0.1340428240986355,0.1437709541801926,0.1534969665897633,0.1624050795829937,0.1735834428100704,0.1847095859882947,0.1948437466020051,0.2039475123018042,0.2123909383973858,0.2216808769792935,0.2292115035070308,0.2371493095738346,0.2441761605169189,0.2501658621399648,0.2552510201486584,0.260460116606494,0.2653451779048339,0.2693080677576802,0.2728705859526581,0.2765195782947262,0.2802103764038627,0.2841720222521401,0.2869584318590017,0.2897231952382206,0.2870958642829319,0.2837298046698055,0.2809870925153443,0.2780114667665447,0.2753745359894701,0.2727591356557252,0.2687330772621371,0.269163053046852,0.2695556495979687,0.2710176208336282,0.2714582329168366,0.2716404476794239,0.2729175300455864,0.273034751083208,0.2741483346795267,0.2745876288659793,0.2756816071579303,0.2805462237153167,0.283781433689263,0.2882357576235127,0.2913069029429049,0.2922548242135871,0.298043369890329,0.3020274299344067,0.3052477333089111,0.305037637521714,0.3066248880931065,0.3124754033844943,0.3135048231511254,0.315592203898051,0.0,2.6153198863471667,47.830621203650985,136.88526635399003,184.3440933744196,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95769,48753,465.1714020194426,4649,47.37441134396308,3672,37.84105503868684,1421,14.472324029696455,77.34687979821054,79.70740370611564,63.33382307926016,65.08182672887938,77.16383129178178,79.52666695480842,63.26422205301925,65.01524198343083,0.1830485064287614,180.73675130722225,0.0696010262409032,66.58474544855153,241.7822,170.08236739021618,252463.94971232864,177596.47421421984,561.12344,378.9427624145332,585420.8668775909,395191.9134504695,498.00419,244.2027783442425,517101.6926145204,252652.81850677743,2105.25432,1007.4233416706948,2171421.7753135148,1025117.9796938986,830.73507,384.01677816247786,854637.3669976715,388204.9207141232,1375.66954,592.6622436068806,1403143.2718311772,590382.1551924552,0.37981,100000,0,1099010,11475.634077833118,0,0.0,0,0.0,49006,511.1988221658365,0,0.0,44904,465.9754200210924,1046176,0,37607,0,0,0,0,0,92,0.9606448850880764,0,0.0,1,0.0104417922292182,0,0.0,0.04649,0.1224033069166162,0.305657130565713,0.01421,0.3564213564213564,0.6435786435786436,22.90501178290764,4.108408434587005,0.3112745098039216,0.2794117647058823,0.2069716775599128,0.2023420479302832,11.477410638371015,6.3005910954751805,15.194100182361366,11179.877345893025,42.26367667616655,12.574706286914273,13.106292033174253,8.549390477543833,8.033287878534194,0.5901416122004357,0.827485380116959,0.6920384951881015,0.5697368421052632,0.126514131897712,0.7704778156996587,0.9285714285714286,0.8571428571428571,0.7258883248730964,0.1963190184049079,0.5056,0.7491349480968859,0.6148908857509627,0.5150976909413855,0.1068965517241379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002715739126,0.0045937614083478,0.0067512690355329,0.0088823846255475,0.011231382762269,0.0132176534082808,0.0152309103884188,0.0176806859942833,0.0197808263989695,0.0219007249047794,0.0242164511928806,0.0263776657459981,0.0283419545253545,0.0305128046644827,0.0325204091110813,0.0347543830631822,0.0367313547211233,0.0388505627885263,0.0409671618208089,0.0430481506164611,0.0569356017117211,0.0707845188284518,0.0846203042598475,0.0973230895351403,0.1100361482605625,0.1252853157494293,0.1358312576183157,0.145843301117455,0.1554692667107593,0.1639442593802551,0.1754480325294206,0.1862282114181354,0.1968431229834986,0.2058768931741993,0.2140919027584009,0.2228651722688145,0.2298772397337406,0.2377783523116871,0.2447437395754144,0.2509476529128159,0.2569210657226483,0.2622110975952091,0.2682557520553617,0.2725039838012053,0.2767126944451185,0.2805052020562265,0.2834068832743683,0.2862170609610449,0.289298826206112,0.2921059906014295,0.2887324889527621,0.2851257261353804,0.2816573033707865,0.2781569474442044,0.275585888344412,0.2721487111395998,0.2682134351193199,0.2685197303841372,0.2682947583390061,0.2684058074031951,0.269500503599806,0.2706155632984901,0.2717053536048718,0.2723849838476105,0.2733875026964837,0.2741159020531369,0.2758855973161994,0.2804927873283258,0.2850548989439821,0.2893248427797334,0.2919843863471314,0.2948163006756756,0.3016101748010776,0.3062132408384859,0.3135405105438402,0.3172156038308806,0.3181749508989273,0.3203471941865159,0.3171001660210293,0.3296960249415432,0.0,1.9332631532464395,51.13737726355304,130.35968823247765,183.1062764606952,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95753,48759,466.1890489070839,4736,48.32224577820016,3782,38.912618925777785,1467,14.89248378640878,77.36211040614715,79.72319005385457,63.32787542470121,65.0754596182162,77.1795121709397,79.54534792028586,63.25931909164693,65.01095190321182,0.1825982352074504,177.84213356870282,0.0685563330542819,64.5077150043818,240.28356,169.09623005134952,250941.02534646436,176596.27379961935,560.11013,377.7668170253839,584296.5860077491,393865.6721203344,500.27203,244.9106582907216,518949.8605787808,253032.4021763155,2175.40092,1031.8756216317383,2240315.478366213,1046349.6981022548,875.43251,401.10668824028266,901416.5926916128,406052.6649194096,1427.94832,606.3942408160149,1452389.899010997,601263.4384134584,0.37956,100000,0,1092198,11406.410243021106,0,0.0,0,0.0,48869,509.7594853424958,0,0.0,45168,468.2464256994559,1052962,0,37825,0,0,0,0,0,94,0.96080540557476,0,0.0,1,0.0104435370171169,0,0.0,0.04736,0.124776056486458,0.3097550675675675,0.01467,0.3628640776699029,0.6371359223300971,23.05723340328388,3.9925798031876414,0.2956107879428873,0.29613960867266,0.1993654151242728,0.2088841882601798,11.35464129818801,6.215978430139954,15.650213589264732,11204.855077318209,43.57625187149038,13.841289651324198,12.57263577979252,8.471769862013902,8.690556578359743,0.594923320994183,0.7991071428571429,0.6958855098389982,0.629973474801061,0.1291139240506329,0.7626392459297343,0.9213250517598344,0.8576051779935275,0.7755102040816326,0.1564245810055866,0.5200764818355641,0.706436420722135,0.6341161928306551,0.578853046594982,0.1211129296235679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020769378843601,0.0044821222138844,0.0066490711602882,0.0086672018045662,0.0107115609582422,0.0131278771336619,0.015183651826321,0.0172343379890549,0.019335180621875,0.0215962152863111,0.02394577077693,0.0258951866384534,0.0280446904384683,0.0301518929947857,0.0321904801221979,0.0343547753447883,0.0363352075631905,0.0384296148738379,0.0402274357348523,0.0420603093588875,0.0567849686847599,0.0710130978783947,0.084565531995218,0.0966198308863741,0.1090145866073217,0.1245426281170026,0.1347618542484353,0.1446485980114543,0.1544387106424351,0.1638412626928727,0.1752086586613537,0.1867201956477042,0.1972109820301962,0.2065797532592528,0.215630605350324,0.2252786209647043,0.2330735563396007,0.2406717886992811,0.2476806169899058,0.2533398967408102,0.2578148499502533,0.2633511036288814,0.2691716340240325,0.2727131114146716,0.277246468275159,0.2801768734295708,0.2835807827490025,0.2865370678804368,0.2903250844081083,0.2934043338429905,0.2897760912858604,0.2862680945245591,0.2834462974941643,0.2801379051685588,0.2771428994916033,0.2735467114811702,0.2695119447997094,0.2697711696681224,0.2691032724181895,0.2696054943299792,0.2707945491101348,0.2714114809076468,0.2728123635002184,0.2728402734617775,0.2725863384850219,0.2737187604993151,0.2746016076716965,0.2799067599067599,0.2843731596632833,0.2870783438991938,0.2934163940303859,0.2980588603631809,0.3057052592454934,0.3080416976917349,0.3124425657048337,0.3190770306491085,0.3235998802036537,0.3303220738413197,0.3325320512820512,0.3310554290053151,0.0,2.274285270839631,50.729738079479766,141.88427843688768,185.81683646068592,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95769,48646,464.67019599244014,4638,47.18645908383715,3676,37.89326399983293,1447,14.785577796573005,77.32840490063373,79.68836134402196,63.31625382636724,65.06457263926175,77.13949256896467,79.50182041944527,63.24407988670092,64.9953838401438,0.1889123316690586,186.5409245766898,0.0721739396663139,69.18879911795273,241.0232,169.50939719303344,251671.1879627019,176997.99928911476,559.44997,378.4650599919044,583663.2626423999,394684.5627052801,493.54553,242.0295933049928,512327.85139241297,250400.19316214687,2126.95404,1012.7597985835166,2193464.3569422257,1030219.8056954052,836.36815,385.1183560732032,858339.7237101776,387488.3833644848,1404.1371,606.5974224905535,1434885.3595631153,605879.3953103308,0.379,100000,0,1095560,11439.599452850089,0,0.0,0,0.0,48834,509.3923921101818,0,0.0,44569,462.3834434942413,1047344,0,37606,0,0,0,0,0,100,1.0441792229218223,0,0.0,3,0.0313253766876546,0,0.0,0.04638,0.1223746701846965,0.3119879258300991,0.01447,0.3773740710156895,0.6226259289843105,22.708616981928667,4.006659540379356,0.3201849836779107,0.2714907508161044,0.2053862894450489,0.2029379760609358,11.081397722873357,5.997629144835388,15.474213711882324,11152.180668935263,42.306230781901405,12.323106667680438,13.385742504016642,8.33693145352722,8.260450156677107,0.5840587595212187,0.7985971943887775,0.7085811384876806,0.5761589403973509,0.1085790884718498,0.7540394973070018,0.928735632183908,0.8628048780487805,0.7215909090909091,0.1485714285714285,0.5101483216237315,0.6980461811722913,0.6489988221436984,0.531951640759931,0.0963222416812609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021280261037868,0.0042495790989675,0.0064878365755594,0.0086790381918331,0.010864478850888,0.0126813070404172,0.0147964594550497,0.0168967207089476,0.0191069128381279,0.0216082871005384,0.0235354415457946,0.0259256217015421,0.0278691896338955,0.0302821181002605,0.0323922151363176,0.0344510367353689,0.0363220437230871,0.038246549203024,0.0404223039674127,0.0424195715342074,0.0568747586293277,0.0707838728233017,0.0843931847968545,0.0977737602219933,0.1095926495690472,0.1246379875277454,0.1345550182404343,0.1442878733050937,0.1535848572893522,0.1615656836461126,0.1741312824489971,0.1861569756118673,0.1963704807807383,0.2054181750571456,0.2138815499779832,0.2228696124151223,0.2313118010758688,0.2387019798971218,0.2456542719273346,0.2522173584213783,0.2584710456880988,0.263251461988304,0.2677250180535331,0.2715070530659246,0.2755562035990717,0.2795311980084542,0.2823488133129495,0.2853850463481715,0.2882045699029252,0.2916683158519691,0.2885076355409518,0.2847850600951621,0.2817173111042271,0.2781849660943586,0.2757351304012231,0.2725213505157794,0.2677842796141072,0.2668242012504307,0.2682111296871268,0.2681344148319814,0.2685081428357986,0.2693995631039301,0.269990220761116,0.2704487835253302,0.2718687991584785,0.2743351373747313,0.2751698754246885,0.2799301810927905,0.2851436312480461,0.2905633692150546,0.2948354270791121,0.2974994768780079,0.3031072047536519,0.3056781626393356,0.3072723908216136,0.3113021256824254,0.314277117496615,0.3194668820678514,0.328390993959363,0.3282887077997671,0.0,1.8596974981099672,48.52469233628851,137.06246010516736,186.2793588057968,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95734,48968,467.7648484342032,4692,47.86178369231412,3743,38.54429983078113,1411,14.38360457099881,77.31464774318667,79.68073592501243,63.30648041847581,65.056142697915,77.13079319519065,79.50133121808432,63.23641176281283,64.99055942090195,0.1838545479960203,179.4047069281106,0.070068655662979,65.58327701306155,240.00746,168.8911378759881,250702.42547057476,176417.0909770699,557.29786,376.4894236444668,581597.259072012,392736.9405579581,497.76709,243.9392663581357,517002.4442726722,252482.66142994052,2144.23804,1014.1754573051938,2209107.359976602,1028978.5546722328,882.18437,401.1127809253624,907642.9899513236,405672.13308552623,1370.88636,589.3375573503093,1398346.8778072577,585674.133607613,0.38155,100000,0,1090943,11395.564794117034,0,0.0,0,0.0,48552,506.5807341174505,0,0.0,44950,466.5218208786847,1053042,0,37754,0,0,0,0,0,81,0.8460943865293418,0,0.0,1,0.0104456097102387,0,0.0,0.04692,0.1229720875376752,0.3007246376811594,0.01411,0.3650501330059341,0.6349498669940659,23.118506370783248,3.961026733687525,0.3165909698103126,0.2831952978893935,0.1969008816457387,0.2033128506545551,11.153604094900576,6.068870817106922,15.156377339811913,11253.96461817576,42.94022127168642,12.945460111490164,13.370552897816523,8.25579744739405,8.368410814985676,0.5928399679401549,0.810377358490566,0.7063291139240506,0.576662143826323,0.1287779237844941,0.7455516014234875,0.9318181818181818,0.871875,0.675531914893617,0.125,0.5273004963726613,0.7241935483870968,0.6450867052023121,0.5428051001821493,0.1299145299145299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400698981917,0.004633431679695,0.0068007876733185,0.0091454120516207,0.0115570476626481,0.0136924895064998,0.0157823323573519,0.0179902391211124,0.0200764622901887,0.0222759100773924,0.0243199737524735,0.0265735701817435,0.0286166886109282,0.0306543019062339,0.0325770556782757,0.034622144112478,0.0367302136296327,0.0387991864519342,0.0408456123202345,0.0427589081058553,0.0576172078939124,0.0717433401371225,0.0853162113391245,0.0984087586634834,0.1103518096684383,0.1257127743983073,0.1356635637027523,0.146512346007645,0.1569822131007354,0.1656705046624674,0.1769393344691496,0.1879110282884971,0.1976950644314456,0.2061121399064222,0.214418009833969,0.2234027199555925,0.2315099594018766,0.2387933464899915,0.2464743881357474,0.2528850459884942,0.2587586078972385,0.2639071140687974,0.2687626654657928,0.2732311900848261,0.2772579233910169,0.2806671515390589,0.2843277048155097,0.2868784723546537,0.2910602104392337,0.2934151447720121,0.2900048376693184,0.2860378912685338,0.2834414581402533,0.2802598225602027,0.2773281152717246,0.2744286238083598,0.2707701541571898,0.2708166106970268,0.2709362963972869,0.2715772618094476,0.2724795131694387,0.2737676229427611,0.2747821747177109,0.2756455763599255,0.27877732175241,0.280749354005168,0.2826961200792977,0.2867658525934936,0.2904044795325705,0.2955511811023622,0.2979425729143115,0.3029568333948242,0.3087875556670639,0.3118214258598435,0.3161344695196179,0.3178605089538172,0.3202863234846177,0.3285772523440685,0.3336998350742166,0.3346168656141702,0.0,2.123311522524116,48.930068900814405,137.838724996314,191.17983208683228,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95833,48901,467.4798868865631,4669,47.70799202779836,3777,39.02622269990504,1403,14.38961526822702,77.3504688262772,79.68197094210812,63.33176974345843,65.0597062521659,77.17207359079232,79.5030784784357,63.26463695950337,64.99366945882713,0.1783952354848708,178.89246367242606,0.0671327839550599,66.03679333876755,240.295,169.10244574582327,250743.25128087404,176455.13023464085,561.77063,379.495309172638,585810.774994,395611.0625881147,501.07775,246.02692302465715,520116.6821449814,254648.38764168016,2151.60512,1015.551246288702,2225444.2206755504,1040065.47628552,875.97571,397.9573833449703,905488.6416996232,406685.1745692712,1360.18762,581.4365160688325,1396666.3884048292,588438.3919205989,0.3803,100000,0,1092250,11397.420512767,0,0.0,0,0.0,48948,510.35655776194005,0,0.0,45258,469.51467657278806,1049727,0,37744,0,0,0,0,0,86,0.8973944257197416,0,0.0,0,0.0,0,0.0,0.04669,0.1227714961872206,0.3004926108374384,0.01403,0.367477328936521,0.6325226710634789,22.906361399646432,3.98557743946351,0.3113582208101668,0.2915011914217633,0.200688377018798,0.1964522107492719,11.343146060743106,6.224135915305271,14.994994021819142,11243.997327822948,43.29113334252448,13.515347211431717,13.224922798856518,8.439208015119682,8.111655317116576,0.5851204659782896,0.8138056312443234,0.6828231292517006,0.5567282321899736,0.1199460916442048,0.7559681697612732,0.9343891402714932,0.8726708074534162,0.6954314720812182,0.1411764705882353,0.5120937263794406,0.7329286798179059,0.6112412177985949,0.5080213903743316,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0044208754550155,0.0066883182786968,0.0087885961614663,0.0110055536342738,0.0133833085494286,0.0156442812707154,0.0178294257005146,0.0199685084454623,0.0219376369182892,0.0237790059780769,0.025835600965241,0.0281671311483839,0.0300823892893923,0.0318571841095664,0.0338585524616417,0.0359915533196695,0.0379920136908157,0.0399048104001912,0.0420657061958694,0.0572349480535736,0.071162732347837,0.0848343864281747,0.0978904903979493,0.1104977613905715,0.1253487192493025,0.1352354294559835,0.1454798804420665,0.1546887009992313,0.1646003664691448,0.1764440044761986,0.1874114989244754,0.1977712852038101,0.206078422801189,0.2146416040651569,0.2239257347320845,0.2328962785248005,0.2407938704560029,0.2477606857013112,0.2534009710516672,0.2588791966496216,0.2639676397348516,0.2688505203405865,0.2728230673436153,0.2771739790404255,0.281460667233581,0.2853530928480236,0.287332476358962,0.289746245468669,0.2931389365351629,0.2901939655172413,0.2877792921158055,0.2860161135838638,0.2825886022934057,0.2792495955593155,0.2758019632427143,0.2719209486166007,0.2709132016121104,0.2717100669312124,0.2725654897494305,0.2734800447594181,0.2735836070087117,0.2747213831892511,0.2758344637416887,0.2773286131177343,0.27862397678997,0.2794450096077766,0.2830294530154277,0.2890329738913352,0.2952848722986247,0.2979402770282425,0.2995970485111727,0.3023760779204665,0.3062140133104015,0.3118289522399111,0.3122534230679972,0.3155368926214757,0.3176517098240759,0.322228144989339,0.3172645739910314,0.0,1.483709854452581,49.74820837211788,139.99180761061575,192.57298159859093,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95715,48736,465.0368280833725,4539,46.24144595935851,3623,37.21464765188319,1401,14.28198297027634,77.30949638025908,79.6707270441831,63.31695901961641,65.0598948648079,77.12830932339412,79.49234388591421,63.24834032003525,64.99452561608459,0.1811870568649567,178.38315826888618,0.0686186995811652,65.3692487233144,241.47574,169.884524493331,252286.20383429973,177489.96969475108,561.68744,379.7412392162749,586192.2791620959,396100.65216139046,498.32689,244.62343918276372,516825.3878702397,252598.6457612796,2069.79596,985.3811458103722,2127571.603196991,994609.3567469805,823.33107,381.26296053299313,843935.6527190096,382086.0504687635,1359.77418,584.3555546371367,1387660.3667136813,583019.6118683757,0.37803,100000,0,1097617,11467.554719740898,0,0.0,0,0.0,49070,511.9991641853419,0,0.0,44924,465.4547354124223,1042605,0,37468,0,0,0,0,0,84,0.8776053910045447,0,0.0,0,0.0,0,0.0,0.04539,0.1200698357273232,0.3086582947785856,0.01401,0.3699006552525893,0.6300993447474107,22.83844723225594,4.1345355387769365,0.309964118134143,0.2787744962738062,0.2103229367927132,0.2009384487993375,11.770693703045731,6.464570190173959,15.01336190866408,11132.50049423092,41.65813403907638,12.382832932446217,12.753476961476366,8.557374957292248,7.964449187861551,0.5812862268837979,0.8,0.6874443455031166,0.5748031496062992,0.1208791208791208,0.7528991971454059,0.9047619047619048,0.85625,0.717948717948718,0.1878787878787878,0.504396482813749,0.718804920913884,0.6201743462017435,0.5255731922398589,0.1012433392539964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875411429902,0.0046529073067877,0.0068987906825744,0.0091106687251157,0.0115894881309408,0.0141378362698097,0.0162666258981807,0.0185878918411301,0.0206655492416499,0.0227609992733673,0.0249592554249223,0.0271988007474793,0.0294704370179948,0.0315229032789586,0.0334553704945083,0.0355423305023453,0.0373827906687917,0.0392640836306313,0.0411361817558227,0.043125,0.058059396015204,0.0713388595830193,0.0838874787606721,0.0963827549947423,0.1083272700431284,0.1240124795092803,0.1345868171979118,0.1449511400651466,0.1548239617159459,0.1630747126436781,0.1755720256819063,0.1856575257932856,0.1958343308594685,0.2037973298314729,0.2128559159674968,0.2218564334486122,0.2296592470152004,0.2378480043247139,0.2442528735632184,0.2504355001375263,0.2558163761372317,0.2610104460327301,0.2662642045454545,0.2711358376997878,0.2748761053347585,0.2788507758865073,0.2819092398304343,0.2854435612082671,0.2890920391567825,0.2912871287128712,0.2872341858241418,0.283483954387268,0.280407927542152,0.2764360266200863,0.272967555126587,0.2683901184681789,0.2647720075997467,0.2649910586845602,0.265598852498207,0.265756358768407,0.2664708193776547,0.2672343956847325,0.2680640977364963,0.2699053824868339,0.2715737870377046,0.2735702041452392,0.2740626868221026,0.2779899812147777,0.2812325321408608,0.2855174043156402,0.2882618510158014,0.2914207419898819,0.29047976011994,0.2961172382535126,0.3013903144536717,0.306727613689639,0.3073311117843078,0.3032022699635184,0.3101007350939286,0.3085670962850644,0.0,2.452928303442641,48.35320837426077,132.0823452298518,181.95747519519276,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95733,48405,461.0740288092925,4686,47.601140672495376,3734,38.41935382783366,1403,14.2792976298664,77.40440741590693,79.76256816247653,63.3594678928421,65.09953315552131,77.22490996193346,79.58725709777984,63.29042557840267,65.03455957494978,0.1794974539734681,175.311064696686,0.0690423144394287,64.97358057153235,240.56252,169.2327376238615,251284.84430656096,176775.75927199767,557.72174,376.2954522738997,581973.3738627224,392460.57500955765,491.12877,241.7757803806355,509586.3077517679,249828.2460056484,2129.56604,1024.4302005800157,2192963.722018531,1038569.8981333664,856.89121,395.3502324737648,880557.4357849435,398451.9842785605,1363.10082,590.2768083203208,1388718.916152215,585756.1469408165,0.37948,100000,0,1093466,11422.038377570952,0,0.0,0,0.0,48649,507.5365861301745,0,0.0,44434,460.6770914940511,1056526,0,37812,0,0,0,0,0,97,1.0132347257476524,0,0.0,1,0.0104457188221407,0,0.0,0.04686,0.1234847686307578,0.2994024754588135,0.01403,0.3653295128939828,0.6346704871060171,22.93214561443817,3.950919020960358,0.3176218532404927,0.2771826459560793,0.2062131762185324,0.1989823245848955,11.29599577922499,6.174254044295719,15.065345448850527,11225.14898243151,42.8992954864502,12.840048491020784,13.36900769363499,8.463743280668297,8.226496021126124,0.5990894483128013,0.8222222222222222,0.7074198988195616,0.6012987012987013,0.1130551816958277,0.7692307692307693,0.9271948608137044,0.8772455089820359,0.7676767676767676,0.1286549707602339,0.5214508580343213,0.7359154929577465,0.6408450704225352,0.5437062937062938,0.1083916083916083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793372280215,0.0046921712693184,0.007131698013675,0.0094246686639922,0.0114993950362469,0.0135688110749185,0.0157350318471337,0.0179178188422803,0.0200670263200915,0.0222154003581478,0.0244847341935616,0.0267260579064587,0.0286416300850202,0.0307247033618984,0.0328218991508197,0.0350327689222435,0.0373120417546911,0.0395435684647302,0.0416112404389757,0.0435683782939277,0.0579551267996784,0.0717686825664263,0.0852302528060421,0.0983987467538611,0.1112563375530984,0.1270500904101767,0.1378286053765038,0.1467641829814868,0.1557091577283022,0.1640393771715352,0.1749951536821246,0.1864239879670609,0.1955949532303676,0.2047194156497397,0.2134134266288203,0.2228952351423477,0.2315304460361023,0.2390043173232595,0.2465271871633498,0.2538881450200844,0.2589802544164712,0.263933794777818,0.2684743601850977,0.2729650641982681,0.276289184051531,0.2791023326086155,0.2821124105994982,0.2845002536783358,0.2876627482354155,0.2908995334778895,0.2875067024128686,0.2843285013564245,0.2822468696103313,0.2803657694962043,0.2776489356987754,0.2750452877867592,0.2708979546850152,0.2699440538909459,0.270303750212116,0.2706641608453601,0.2710750265358187,0.2717173306067875,0.2718889212706607,0.2745689750815452,0.2749535027898326,0.2775436328377504,0.2793285074500746,0.2839160839160839,0.2900641581411479,0.2932136276316305,0.2988371570960355,0.3031669463087248,0.3101524730383042,0.3146218991231357,0.3146098505810736,0.3169005915787031,0.3183599638227314,0.319634703196347,0.3181072210065646,0.3285548237117396,0.0,2.26935004610918,50.52023867102258,133.62129676490818,188.7433267900758,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95745,48783,465.34022664368894,4701,47.96072901979216,3740,38.44587184709384,1379,14.047730952007935,77.33232137485312,79.69850731582706,63.31916690730778,65.07125130420347,77.15191024451428,79.52251367924825,63.24961232297207,65.00607132844823,0.1804111303388396,175.9936365788093,0.0695545843357123,65.17997575524248,240.5942,169.26541389205482,251286.43793409577,176787.73188370652,561.99803,379.52339657311006,586318.9200480443,395734.9381932321,496.16313,243.14197683693683,514366.0034466552,251055.73715560927,2139.58632,1013.8251755981496,2199296.046790955,1023504.9930525358,847.24927,390.6748929593972,869155.5485926158,392290.56656681467,1338.04636,580.4175429060733,1362989.3153689487,574798.4490983115,0.38013,100000,0,1093610,11422.110815186172,0,0.0,0,0.0,49048,511.6507389419813,0,0.0,44830,464.3688965481226,1049532,0,37663,0,0,0,0,0,107,1.1071074207530418,0,0.0,0,0.0,0,0.0,0.04701,0.1236682187672638,0.2933418421612423,0.01379,0.3561085049969406,0.6438914950030593,23.27078483635397,3.9386966114298754,0.3098930481283422,0.2885026737967914,0.2040106951871657,0.1975935828877005,11.470585939380449,6.390892240986712,14.840122979571744,11252.40303936988,42.76158707753675,13.161441359717696,12.967093020502343,8.485662053637991,8.147390643678717,0.5844919786096257,0.8081556997219648,0.6790336496980155,0.583224115334207,0.1109607577807848,0.7688808007279345,0.9477272727272728,0.8762541806020067,0.7433155080213903,0.1560693641618497,0.5077622112836047,0.7120500782472613,0.6104651162790697,0.53125,0.097173144876325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022396530057967,0.0048078386026838,0.0069754690926813,0.0094113342548174,0.0115772767966143,0.0139668503784598,0.0160214571265399,0.0183769104329804,0.020183017228158,0.0223587223587223,0.0245112612381723,0.0270517216598566,0.0291516709511568,0.031371337350018,0.033355687387155,0.0352237139933645,0.0372970510271703,0.0392783408895205,0.0414861002857885,0.0432957693669673,0.0580540766259526,0.071557866761533,0.0851811449789171,0.0978274585681837,0.1090864994253055,0.1242278073961242,0.1345302900073218,0.1449739730256224,0.1545404054429325,0.1631762371990777,0.1741256556909124,0.1851679508267682,0.1960270232047083,0.2056787233809841,0.214380034332497,0.2233664418828688,0.2316746625013946,0.2389245134435819,0.2464887799786717,0.2526220573417606,0.2584597230416826,0.2642350107003777,0.2688823181549379,0.2731562432633116,0.2762450386590117,0.2811049125010775,0.2853624076320034,0.2883098072598371,0.2918671426354183,0.2942927908937605,0.2914505335017604,0.2889401681226306,0.2849492592696708,0.2812837769675309,0.2786695717906532,0.2751256473319992,0.2715877657472536,0.2713364749001898,0.2726530751049973,0.2734113712374582,0.2732709162602081,0.2745940406747595,0.2752421914147319,0.2766573816155989,0.2780147622699386,0.2795779759435918,0.2797918669758498,0.2846687933946331,0.290443864229765,0.2937369272662694,0.2977512869141154,0.3013220518244315,0.3028743567214761,0.3078493647912885,0.3126504908316355,0.3189264552108748,0.3207743857036485,0.3256637168141593,0.3272872766070952,0.3273475495697718,0.0,2.3911841353278827,47.28392818238188,142.040237317922,188.7673974755791,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95728,49025,467.9717533010196,4846,49.40038442253051,3830,39.476433227477855,1440,14.64566271101454,77.41699606751023,79.77051303712457,63.36600846061516,65.10056797604346,77.22644581628401,79.5854972935364,63.29302633323622,65.03254529200139,0.1905502512262131,185.01574358816697,0.0729821273789426,68.02268404207723,238.56162,167.828616561874,249207.3165635969,175317.75777397832,560.27355,378.3064951039127,584713.6156610396,394626.3044291248,503.71614,247.82076762642976,523536.0500584991,256694.3612302405,2190.78668,1043.656063204953,2258897.8355340133,1060599.93231338,868.63921,397.8456263860709,894299.8286812635,402542.6365392684,1401.01364,604.5165575063432,1426386.9714190206,598564.2165730587,0.38287,100000,0,1084371,11327.605298345312,0,0.0,0,0.0,48759,508.7435233160622,0,0.0,45440,471.97267257228816,1061749,0,38100,0,0,0,0,0,114,1.190874143406318,0,0.0,2,0.0208925288316897,0,0.0,0.04846,0.1265703763679578,0.2971522905489063,0.0144,0.3668053079817785,0.6331946920182214,23.38697579202715,4.103915485483538,0.2955613577023498,0.2960835509138381,0.2031331592689295,0.2052219321148825,11.475571368603545,6.22815218684616,15.27481667754524,11307.771890264645,43.65534351078933,13.826687302550637,12.750940786318104,8.588054244396695,8.489661177523892,0.5953002610966057,0.8121693121693122,0.7058303886925795,0.6053984575835476,0.1132315521628498,0.7586790855207451,0.91869918699187,0.867741935483871,0.7905759162303665,0.1276595744680851,0.5224613061532654,0.7305295950155763,0.6447688564476886,0.545144804088586,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0043359774691264,0.0065522557611165,0.0088546796779008,0.0110928095005693,0.0135690873185529,0.0155848656582541,0.0177791385997142,0.0199685245365544,0.0220774039100944,0.0243270107698771,0.0264789194958742,0.0287529426277537,0.0308847306468389,0.0328880177438489,0.0349075126588818,0.0370646457116826,0.0393918021905078,0.041583088227652,0.0433799706216337,0.0584334896154207,0.072291803999121,0.0858284898969764,0.0982299675020771,0.1106036955788052,0.1258328574148106,0.1362744370074146,0.1461721876862811,0.1556533723650893,0.1645896786924628,0.1774384597161501,0.1888970635968234,0.1989282958164407,0.2085422469823584,0.2162375976530309,0.2250904544297775,0.2333151259099067,0.2411428828342774,0.248948400775519,0.2566021328207241,0.2618954036807546,0.2672617239526135,0.2715658350371692,0.2756256058593329,0.2788384561267315,0.2825843457282473,0.2869207800807066,0.2884468830970889,0.2912041763041259,0.2938326223205351,0.2908763634409758,0.2875883361921098,0.2853268506548255,0.2824544195707362,0.2796543597800471,0.2755352755352755,0.2726370666708667,0.273062369519833,0.2731512099167387,0.2742866246548184,0.2744934157983693,0.2742096505823627,0.2751973410884919,0.2769999778824674,0.2777632299378675,0.2781176592064844,0.2785827037997519,0.2828583845532998,0.2862042682926829,0.2896808302330135,0.2907060195568314,0.2947373938567984,0.299609447647387,0.3046167773083886,0.3080906148867314,0.3129504766333411,0.3148342582870856,0.3176866706278471,0.3230563002680965,0.3238341968911917,0.0,1.953607111201449,51.37256503386759,132.83577549191514,198.36949394835796,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95697,48844,466.6708465260144,4714,48.06838249892891,3758,38.69504791163777,1388,14.086126001860038,77.3508434030137,79.74208532803088,63.31502979323547,65.08308642844426,77.17405662344254,79.57033282498503,63.2483865983982,65.02107315423932,0.1767867795711595,171.75250304585177,0.066643194837269,62.01327420494352,239.43018,168.42468732311886,250195.8891083315,175997.65292863813,561.968,379.65752864555657,586652.8940301159,396145.309083953,498.71334,244.61063464881312,517935.4943206162,253053.1160084351,2152.03572,1005.4408938800524,2216734.150495836,1018622.0876185258,864.8656,383.9652290723753,888052.9901668809,385666.3121874474,1347.4821,573.2544968877565,1368565.3050774843,565353.8982934138,0.38082,100000,0,1088319,11372.540414015068,0,0.0,0,0.0,48878,510.1518333908064,0,0.0,45077,467.82030784664096,1054321,0,37832,0,0,0,0,0,107,1.1181123755185638,0,0.0,0,0.0,0,0.0,0.04714,0.1237855154666246,0.2944420873992363,0.01388,0.3625050999592003,0.6374949000407997,23.353836629889557,4.018058449256233,0.3116019159127195,0.2799361362426822,0.2080894092602448,0.2003725385843534,11.254968451994303,6.211039161993852,14.87819014762894,11257.55152540696,42.85670875612583,13.045294540796904,13.176320894534008,8.579132481623889,8.055960839171023,0.5870143693453965,0.8193916349809885,0.6942783945345858,0.5754475703324808,0.1075697211155378,0.7703703703703704,0.9227467811158798,0.8556701030927835,0.7430167597765364,0.1388888888888889,0.5130694548170276,0.7372013651877133,0.6409090909090909,0.5257048092868989,0.1001642036124794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0044315542890752,0.0068927712188734,0.0091877388405561,0.0112921931270219,0.0136407163668221,0.0157504411959726,0.0180772726808493,0.0203824913070157,0.022439344127979,0.0244490252181849,0.026858803833157,0.0289546497155964,0.0309096716362549,0.0329425363276089,0.0349932287843858,0.0370063403920268,0.0389437847712364,0.0410135324894163,0.0428610144051366,0.0575400555660002,0.0716065669891527,0.0848229749446304,0.0974088140300674,0.1096154860488422,0.1259825858803863,0.1364446897488695,0.1466328747284576,0.1561170610744137,0.1648371693760394,0.1766379616955692,0.1873734804117908,0.1975888932410671,0.2053529418201315,0.2145900069350417,0.2236757499833706,0.2321336875711638,0.2397370524206711,0.2470562854125742,0.2534292884727777,0.2589176176477396,0.2643423916859771,0.2693901716992303,0.2734083743901416,0.2777291939950445,0.2813585203063813,0.28461096253343,0.2879273096962765,0.2916537427626137,0.2943192302622908,0.2904579947257951,0.2873921644046376,0.2848389454157063,0.2810577130917213,0.2773840349189909,0.2735646206633625,0.2706234728462205,0.270789086750531,0.2720518226332971,0.2726030072251513,0.2728424268390366,0.2735151669640581,0.275066401062417,0.276304136037552,0.2770146411141531,0.2770242392986075,0.2781239474570562,0.2816216551040634,0.2865438457018423,0.2916196333346308,0.2956684658964179,0.2993318020463562,0.3033471509002041,0.3051051051051051,0.3095481117194024,0.3163265306122449,0.3187028657616892,0.3230890464933018,0.3325314087142475,0.3278813236972233,0.0,2.196514977082771,46.696311761268014,143.17727658560747,192.07940346792032,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95722,49130,469.0562253191534,4690,47.65884540648963,3756,38.64315413384593,1478,15.0017759762646,77.26691653433518,79.62675583470393,63.2951211478972,65.03884499049505,77.07568871714443,79.44078959419164,63.22144637935047,64.970298532623,0.1912278171907502,185.96624051228616,0.0736747685467307,68.54645787204561,240.40918,169.13137679335458,251152.8384279476,176689.51379552716,560.40021,378.2771645364936,584857.4831282254,394595.5721030626,500.23741,245.46794344128855,519058.2415745597,253684.18146796757,2173.5714,1034.401711256004,2237114.184826894,1047082.2081193504,881.33238,405.8444664622909,901102.1604228911,404558.8353126474,1433.19082,612.8919950281809,1455391.7176824554,603655.4607363623,0.38247,100000,0,1092769,11416.038110361254,0,0.0,0,0.0,48863,509.85144480892586,0,0.0,45226,469.0457783999499,1046560,0,37620,0,0,0,0,0,79,0.8148596978750967,0,0.0,1,0.0104469192035268,0,0.0,0.0469,0.1226239966533322,0.3151385927505331,0.01478,0.3676857663494634,0.6323142336505365,23.07488472130697,4.017556616952351,0.3120340788072417,0.2763578274760383,0.2036741214057508,0.2079339723109691,11.483589541789817,6.336695849545988,15.723040446857055,11274.875422074228,43.3105873745827,12.908142964198976,13.35328556945199,8.572529374139322,8.476629466792414,0.5849307774227902,0.8198458574181118,0.6868600682593856,0.6078431372549019,0.0973111395646607,0.7476149176062445,0.9247787610619468,0.8454545454545455,0.7447916666666666,0.1229050279329608,0.5128697656550134,0.7389078498293515,0.6247030878859857,0.5619546247818499,0.0897009966777408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024510796904752,0.0047957497287815,0.0071640215935381,0.0094574415131906,0.0115330634827004,0.0137761803427244,0.016127223609766,0.0182521615745041,0.0204450896006051,0.0226621356043236,0.0246737670804588,0.0269290788879306,0.028854657260967,0.030940683290589,0.0331063654183431,0.0351346881395877,0.0372798160862406,0.0394770970586709,0.0413193072909087,0.0432825556921666,0.0587055948875383,0.0720895178679841,0.085856412732062,0.099026674383122,0.1111029047131688,0.1261324189315045,0.1369461580115307,0.146628034555855,0.1552850832629226,0.1641919240721057,0.1764407784786242,0.1877059129530085,0.1984249738584872,0.2065520980514573,0.215070591736193,0.2239367666159704,0.2316767685804388,0.2398170161462969,0.2465463964373352,0.2531038989326944,0.258243348031897,0.263680835127797,0.2693609868125103,0.2737844058693776,0.2787450942272876,0.2824894280677096,0.2866286716352477,0.2888532437111722,0.2915203276266507,0.2952661705024654,0.2923099762470308,0.289414880410494,0.2857848673066064,0.2819070480377129,0.2790704589720335,0.2753436623603512,0.2716941657553136,0.2714112002103326,0.2713890028723841,0.2719223079120251,0.272521341920024,0.2733412322274881,0.2734741784037559,0.274811206935073,0.2754358542743778,0.2749687565090606,0.2742146969956103,0.2783320220298977,0.2842514124293785,0.2877150860344137,0.2914722298471955,0.2950120032008536,0.2980866062437059,0.2990285367334547,0.3047467465593109,0.3071841453344343,0.3118623420130957,0.3183098591549296,0.3225894564326687,0.3209498276522405,0.0,2.272749396311562,49.8990037309856,137.63765821724755,191.71945756625183,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95697,49293,471.7389259851406,4620,47.16971273916633,3661,37.61873412959654,1390,14.19062248555336,77.288290147924,79.65828187325519,63.294707477804174,65.04405164400582,77.11476913686775,79.4877671190641,63.22969882476869,64.9826544298983,0.1735210110562519,170.51475419108897,0.065008653035484,61.3972141075152,240.11152,169.05266326422915,250907.8654503276,176653.85880877083,565.12893,381.98660881280944,589933.4148405906,398556.1290456434,502.23579,246.95056154201976,520475.3963029144,254737.08840976967,2088.17752,971.7095455417328,2149861.960145041,983192.1852740762,856.0322,380.6542178910296,881296.7073157988,384564.4141573026,1341.3686,559.9781006327748,1371687.1166285255,558885.9482538211,0.38264,100000,0,1091416,11404.902975014891,0,0.0,0,0.0,49275,514.258545199954,0,0.0,45202,467.9666029238116,1042148,0,37386,0,0,0,0,0,103,1.0763137820412343,0,0.0,0,0.0,0,0.0,0.0462,0.1207401212628057,0.3008658008658009,0.0139,0.3575129533678756,0.6424870466321243,23.45869193928996,4.038690422032236,0.3163070199399071,0.2895383774924884,0.1912045889101338,0.2029500136574706,11.541007249759003,6.397093213947596,14.699141789856084,11315.326677079152,41.81128544611704,12.94458050248242,13.059372053936595,7.815304389308858,7.992028500389157,0.5894564326686698,0.7924528301886793,0.6899827288428325,0.6128571428571429,0.1211305518169582,0.7616822429906542,0.9151376146788992,0.8412698412698413,0.7687861271676301,0.1232876712328767,0.5183326900810498,0.7067307692307693,0.6334519572953736,0.5616698292220114,0.1206030150753768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572023212712,0.0042984154661854,0.0064537078378049,0.0086755114894654,0.0108005857944837,0.0131759818346587,0.0153748903978303,0.0176797835961823,0.0198305206022754,0.0220129969810162,0.0243097546477545,0.0264211369095276,0.0285314771593958,0.0305764101296588,0.0327282104177411,0.0347037060002893,0.0368081008883642,0.0387604943908842,0.0404601431186553,0.0425008598138633,0.0574308093994778,0.0714779294748303,0.0848140723559231,0.0988002525784045,0.1111451251952877,0.1267906868402384,0.1373825325192461,0.1464443615831247,0.1552459664916763,0.1640254246387081,0.176200386021285,0.1871939858746046,0.1975063973430609,0.2062329644346655,0.2157093776152931,0.224969495285635,0.233702213279678,0.2411266780130972,0.2486268890935762,0.2537018756169792,0.2601845625912958,0.2657806530248693,0.2707666405823907,0.2754051134317609,0.279689990388242,0.2838893620172548,0.2872193653580835,0.2901396605331566,0.293327798030643,0.2968008774132167,0.2939623708771599,0.2908049458871478,0.2872473946214268,0.2843919935207682,0.2813512950902548,0.2777505663380885,0.2728092090699219,0.2735764031134781,0.2735911828433965,0.2747785481312492,0.2751655257546852,0.2752703847441933,0.2764815240323355,0.2765271882847048,0.2779685264663805,0.28002683386227,0.2813038443069796,0.285598453190295,0.2899428889817523,0.2951671983930048,0.3001312395347785,0.3038268672472948,0.3076683485952781,0.3112148828801687,0.3144567219152854,0.3157101449275362,0.3213271558810342,0.3231164722167293,0.3269537480063796,0.3339503887449093,0.0,2.487997644934038,46.210687390950696,137.44343602440406,185.98491066456717,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95827,49261,469.73191271771,4623,47.05354440815219,3696,37.9642480720465,1378,14.00440376929258,77.36488025655099,79.67866919511752,63.35773544642036,65.07068507725313,77.19134405501482,79.50908513658113,63.29169273934218,65.0083012254198,0.1735362015361659,169.5840585363868,0.066042707078175,62.38385183333151,240.97304,169.53854420786038,251466.7473676521,176921.47746236486,559.77111,377.477352588911,583541.1105429577,393308.9657287728,497.86123,244.210020602742,515611.85260938987,251847.9011881673,2101.54788,991.5742323713832,2161500.078266042,1003190.157650123,833.01736,379.7121688388231,855278.919302493,382233.5446573742,1328.88194,567.2855714723523,1352571.947363478,564721.620245063,0.38347,100000,0,1095332,11430.306698529645,0,0.0,0,0.0,48872,509.3658363509241,0,0.0,44862,464.11762864328426,1052362,0,37774,0,0,0,0,0,85,0.8870151418702453,0,0.0,1,0.010435472257297,0,0.0,0.04623,0.1205570188019923,0.2980748431754272,0.01378,0.3748435544430538,0.6251564455569462,23.27184032777045,4.00159977410884,0.3011363636363636,0.2878787878787879,0.2188852813852813,0.1920995670995671,11.543748010936744,6.54157496401142,14.70827169342216,11382.728905923055,42.188138745947846,13.057014604270972,12.55067554451019,8.923097888748451,7.657350708418241,0.5844155844155844,0.8035714285714286,0.7053009883198562,0.5500618046971569,0.1056338028169014,0.75625,0.9172113289760347,0.8603174603174604,0.7010309278350515,0.125,0.5097049689440993,0.7173553719008264,0.6441102756892231,0.5024390243902439,0.1003584229390681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017725108882,0.0048156859564459,0.007163730822307,0.0094157559013529,0.0120499079732766,0.0142956054249989,0.0167995270036086,0.0190905935439083,0.0211604514229636,0.0232560519985669,0.0255196162833599,0.0275853575936701,0.0293531213385681,0.0312165500205846,0.0331704702414084,0.0352025436676714,0.0373293338849813,0.0394446459099621,0.0415861940066039,0.0435316395114135,0.0585247303752842,0.0726335814031273,0.0856789683745194,0.0988449018166544,0.1111871689290942,0.1261245090171897,0.1359731358777979,0.1453294921812712,0.1550475255763342,0.1639674378748928,0.1758668545792944,0.1876452718407766,0.1982877568093173,0.2070614959537824,0.2152801432856813,0.2247384833137979,0.233497449150088,0.2417808219178082,0.2496574993489657,0.2555037377408957,0.2605377697218791,0.2665266351595776,0.2713884164777022,0.2752169651182251,0.2803963902770365,0.2841662464176332,0.2876216168958497,0.2911447029407658,0.2956118601167415,0.2981378711764551,0.2953145342048398,0.2923714281794861,0.2894226444794243,0.2865257633862922,0.2842820277044464,0.2802914579005254,0.2760326138482444,0.275637138408588,0.2758838383838384,0.2772164305444177,0.2769965359048778,0.2783285279829377,0.2797081451747784,0.2787082673565423,0.2801653089988294,0.2818692847706137,0.2841567098833432,0.2883630915220377,0.2935885367639368,0.2993044028140068,0.3042648862242812,0.3080513418903151,0.3117546848381601,0.3139375476009139,0.3190767781441356,0.3235676314235086,0.3260039700717667,0.3301600162041725,0.3366174055829228,0.3395793499043977,0.0,2.350496303216997,48.25693437522623,131.2115148273925,191.6842215020724,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95644,48458,462.5486177909749,4595,46.84036635857973,3669,37.85914432687884,1398,14.292585002718411,77.2563444549925,79.6654057402468,63.27473565930678,65.05546310230342,77.07545235136983,79.48888380449455,63.20579467620545,64.99013545626038,0.1808921036226678,176.52193575224828,0.0689409831013279,65.32764604304475,240.45098,169.1213256635313,251402.05344820372,176823.7690430464,556.28459,375.9807336553847,581106.8127639999,392591.2170709973,492.3697,242.39882968774705,511656.4760988666,250891.19187473287,2082.42832,999.1291390504008,2149672.9120488474,1017036.0702714248,827.83192,386.48490229434265,849377.0544937477,388028.76649874647,1355.9965,585.6003656853275,1387522.8765003555,585987.4941199004,0.37845,100000,0,1092959,11427.366065827442,0,0.0,0,0.0,48589,507.4965497051566,0,0.0,44432,461.4717075822843,1049580,0,37737,0,0,0,0,0,91,0.9409895027393248,0,0.0,1,0.0104554389193258,0,0.0,0.04595,0.1214163033425815,0.3042437431991295,0.01398,0.3539490179690764,0.6460509820309235,22.964492460136896,4.064235760191457,0.3014445352957209,0.2861815208503679,0.2183156173344235,0.1940583265194876,11.478992654036627,6.392218056936114,14.991172465562148,11193.34858862608,42.27869434440782,12.976006698137722,12.534812536895076,8.839721989592366,7.928153119782656,0.5906241482692832,0.7866666666666666,0.7142857142857143,0.5880149812734082,0.1123595505617977,0.7523809523809524,0.9166666666666666,0.8637873754152824,0.7281553398058253,0.1666666666666666,0.5163086714399363,0.6821305841924399,0.6583850931677019,0.5394957983193277,0.093984962406015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0046319288892492,0.006677559139021,0.0086861113650909,0.0110896327195035,0.013630390269246,0.0156071486861433,0.0177673791327802,0.0199353558496818,0.0222406622000942,0.0245957149893285,0.0265445800961894,0.0286296673770036,0.0309613163972286,0.0332214245131966,0.035182119205298,0.0374228994972269,0.0395051212266012,0.0414455474391792,0.0432864310076872,0.0582210749631611,0.0722202434578558,0.0858414604700966,0.0983432276535724,0.1097768163351448,0.1257156160382649,0.1356139084656533,0.1458284521502055,0.1549857306241115,0.1631054207493104,0.1742730536597988,0.1848874249680369,0.1948020826525499,0.203351196151275,0.2116483225621457,0.2213478656573952,0.2308561203377509,0.238590006536095,0.2455141535699269,0.2514049776350499,0.2574101336548158,0.262431878113097,0.2676066359140983,0.2713768028990376,0.2745558530055975,0.2789566591366391,0.2823700436112086,0.2846986877309211,0.2886482982171799,0.2919026683038249,0.2887852608596035,0.28429711073451,0.2817465917750995,0.2797758665624185,0.2776007386008279,0.2735773730921598,0.2693576003551271,0.2689677843523997,0.2704652557621455,0.2712956335003579,0.2719589836047101,0.2730888726178933,0.2746285546637608,0.2765620821820126,0.2780839643439087,0.2798090147131328,0.2800136328779573,0.2832321081961054,0.2879315144766147,0.2915945903443938,0.2978790613718411,0.3014628499263313,0.3083213683750546,0.3102827570689267,0.3116372611756102,0.3136800648673694,0.3174415161385845,0.3252751572327044,0.3272969374167776,0.328782707622298,0.0,1.9194316456241167,50.37648047712592,132.11419959510155,184.3100433261343,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95690,48898,467.14390218413627,4592,46.78649806667364,3645,37.48563068241196,1390,14.108057268262096,77.32722884548278,79.70510871809431,63.32110870231941,65.07637636792931,77.15278252113148,79.53621874343557,63.25464710205653,65.01493020991167,0.1744463243512939,168.88997465873956,0.0664616002628832,61.4461580176453,240.08688,168.83037636047925,250900.4702685756,176434.50893098663,558.95064,378.01873402537313,583536.8481555022,394456.630948841,496.77363,243.986828760122,515981.0429511966,252475.11220355396,2090.21004,989.8991601984608,2149144.2783989967,999369.8881288124,843.76392,385.5637878376372,864142.0106594211,385487.2033823003,1348.63528,576.016582230391,1369745.9504650433,567007.3975347826,0.37928,100000,0,1091304,11404.5668303898,0,0.0,0,0.0,48808,509.44717316334,0,0.0,44783,464.77165848051,1051960,0,37829,0,0,0,0,0,97,1.0136900407566098,0,0.0,0,0.0,0,0.0,0.04592,0.1210715039021303,0.3027003484320557,0.0139,0.367223382045929,0.632776617954071,22.922137231234867,4.126565292520731,0.3012345679012346,0.2899862825788751,0.2021947873799725,0.2065843621399176,11.502500346402796,6.287096841475097,14.877846584725896,11172.167504431533,41.89881765717983,12.909791694198637,12.546890370105324,8.1731248787747,8.26901071410116,0.5720164609053497,0.7956480605487228,0.6775956284153005,0.5725915875169606,0.1035856573705179,0.765466297322253,0.9147465437788018,0.8817891373801917,0.7471264367816092,0.1604938271604938,0.4902419984387197,0.7126805778491172,0.5961783439490446,0.5186500888099467,0.0879864636209813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023589203636584,0.0048443818345815,0.007182712792939,0.0093137105538458,0.0114601234480023,0.0135318135073768,0.015581343177044,0.0175870415573008,0.0198801464422309,0.0223346407102845,0.0243257101835709,0.0263444394231954,0.0284609292231102,0.030603412744209,0.0327058434990814,0.0348097665904836,0.0366644565082259,0.0385485880398671,0.0408059248164097,0.0428206598217543,0.0573556446895629,0.0711071107110711,0.0842730219336431,0.0969068911099421,0.1092888106061405,0.124730250074049,0.1346598747744879,0.1445624048301051,0.1538617690737951,0.1628173909312279,0.1740952175786299,0.1850565008442654,0.1957540757175329,0.2051091378329906,0.213671827715603,0.2225324027916251,0.2315005970249188,0.2394529360821495,0.2471322403131559,0.2526454420522217,0.257840890678888,0.2633358289270506,0.2675163004248169,0.2711078633379654,0.2747789330482946,0.2791141892391492,0.2823182022921776,0.2851418904308228,0.2875855909496874,0.2911050146403229,0.2877110769976569,0.2846500632250261,0.2822804227591933,0.2788826235560491,0.276711922249425,0.2730057121854852,0.2697328907855224,0.270012259910094,0.2702744057941446,0.2698333836080699,0.269436323345934,0.2700388799434473,0.2705054542426513,0.270797679639055,0.270658338717783,0.2715286789514664,0.2739388096520826,0.2789026371703537,0.2848200312989045,0.2895328208160851,0.2933979790656577,0.2997992180069745,0.3036518259129565,0.3088747538997425,0.3110132983704813,0.3130638547158758,0.3193772672309553,0.3230769230769231,0.3341476655808903,0.3342125094197438,0.0,2.323652223919109,46.66058398292521,138.52551637958004,184.48994315356512,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95775,49376,471.9916470895327,4816,48.93761419994779,3868,39.77029496215087,1433,14.57582876533542,77.38146625236273,79.70389296617694,63.35451413110488,65.06755016184788,77.19544273780342,79.52237053916713,63.28444463037038,65.00155845167157,0.1860235145593094,181.52242700980992,0.0700695007344975,65.99171017630567,239.98524,168.8684334625314,250571.9028974158,176317.8631819696,560.85734,379.7900495044303,584982.740798747,395927.8825418222,515.02526,253.7257092840409,533654.909945184,261802.2927529144,2204.40956,1064.5401494309872,2267537.833463848,1077772.85663205,904.24974,416.6640217758895,926579.4727225268,417619.94278585416,1389.61202,591.434832701398,1414945.632993996,587096.496754496,0.38342,100000,0,1090842,11389.631949882536,0,0.0,0,0.0,48881,509.7154789872096,0,0.0,46505,481.4408770555991,1048998,0,37679,0,0,0,0,0,93,0.971025841816758,0,0.0,2,0.0208822761681023,0,0.0,0.04816,0.1256063846434719,0.2975498338870432,0.01433,0.3710254372019078,0.6289745627980922,22.712411343723165,3.964821925919503,0.3084281282316443,0.297052740434333,0.1980351602895553,0.1964839710444674,11.633342595488608,6.579249613206116,15.198357425084692,11309.470129198718,44.940482315529415,14.446625844696158,13.65758987061057,8.501684581701443,8.334582018521248,0.5964322647362978,0.825065274151436,0.6999161777032691,0.5483028720626631,0.1368421052631579,0.7862176977290525,0.9251824817518248,0.8688524590163934,0.7564766839378239,0.1941176470588235,0.5028946352759552,0.7337770382695508,0.6251511487303507,0.4781849912739965,0.1203389830508474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0044590376585998,0.0066544263093293,0.0088553091234056,0.0112763988733769,0.0131624488466315,0.0153498043052837,0.0174389534587087,0.0195954229668982,0.0216586184318219,0.0239724624021636,0.025936983799645,0.0280966425848089,0.0305017397212328,0.0326714503690873,0.0348235585711187,0.0367357920443726,0.0387530194801828,0.0407520905832857,0.0427290805543119,0.0575725004435075,0.0716841752814631,0.0853783874486114,0.0982360608863846,0.1106402268678115,0.126545462237311,0.1373703302997518,0.1468215106872179,0.1570363566454479,0.1655945795274239,0.177917478497691,0.189006520822294,0.1998325486315743,0.2083784522832923,0.2167622107544865,0.2259658530640282,0.2340919491478129,0.2418910252804248,0.2496225408393783,0.2554920183812154,0.2609002709148586,0.2664645424109755,0.2703995264871264,0.274175771516197,0.2785149752941033,0.2819499341238471,0.285244713293006,0.2880195164097938,0.2908698015061722,0.2950366194214658,0.2923089328190724,0.2887793762354491,0.2865476525161653,0.2827160137417362,0.2804322334535631,0.2758362379991438,0.2730886319541934,0.2730378215815109,0.2737477676673187,0.2734387478038652,0.2739055138638014,0.274415958886644,0.2748782619553003,0.2749833222148098,0.2759295966374513,0.2774385510996119,0.2795197740112994,0.2836629808441053,0.2877322385359404,0.2917093545590669,0.2973924027790309,0.3017146452729274,0.3077018402627176,0.3123970654289564,0.3164073418429143,0.316374269005848,0.3248799519807923,0.3261862219575144,0.3261397356352846,0.3285606631499623,0.0,2.2849273419666565,55.59423388344754,140.17083432119995,185.97803606712003,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95762,48773,465.0278816231908,4647,47.430087090912885,3684,37.937804139429,1390,14.128777594452917,77.31912755708531,79.66874463716275,63.32066847763053,65.05826795777207,77.14005180523648,79.49464448144758,63.25263637830941,64.99484423885215,0.1790757518488277,174.10015571516624,0.0680320993211225,63.42371891992116,240.76624,169.326823606687,251421.48242517907,176820.4753521094,559.00575,377.8557184197872,583243.5830496439,394076.6571497956,490.72415,241.13319300679623,509869.2800902237,249756.10215828416,2108.33664,1002.0249707290272,2169813.746580064,1014541.6456726335,856.30197,392.8678262419384,877910.6534951234,393966.9767151248,1350.72262,577.1945648898087,1372943.192498068,570373.0419928477,0.38031,100000,0,1094392,11428.249201144505,0,0.0,0,0.0,48840,509.4818403959817,0,0.0,44376,460.7673189783004,1049015,0,37714,0,0,0,0,0,81,0.845846995676782,0,0.0,1,0.0104425555021824,0,0.0,0.04647,0.1221897925376666,0.2991177103507639,0.0139,0.358572312770786,0.641427687229214,23.427798418560226,4.008163466255198,0.3175895765472312,0.2801302931596091,0.2000542888165038,0.2022258414766558,11.407240684268892,6.218360061664825,14.86506875863614,11221.925985859076,42.166605322812266,12.589059163647406,13.09679790684227,8.272035408287476,8.208712844035112,0.5871335504885994,0.7829457364341085,0.7111111111111111,0.5712347354138398,0.1369127516778523,0.7557932263814616,0.918918918918919,0.8607594936708861,0.702020202020202,0.1768292682926829,0.5132708821233412,0.6802721088435374,0.6557377049180327,0.5231910946196661,0.1256454388984509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019240701171657,0.0040434134922323,0.0061787265127226,0.0086534359828556,0.0114104402477346,0.0135854898006986,0.0158246240122355,0.0183596781440182,0.0206744238359133,0.0228598923035973,0.0250171736745511,0.0272715137949091,0.029567238471348,0.0314615075563247,0.0334826034916835,0.0353359446861725,0.0373315112739921,0.0392622636225013,0.0414610069101678,0.0434112402616339,0.0579865967974279,0.07143753792079,0.084980962670051,0.0982501524807033,0.1110220863423119,0.1254824417633312,0.1368920094181532,0.147000617113187,0.1572636614063934,0.1658949128561322,0.1775390015180715,0.1884352784600569,0.1986427996606999,0.207139342918056,0.2152600545630555,0.2236923690154568,0.2314585425733735,0.2385349996063036,0.2454046203422139,0.2513567977283656,0.2575,0.2628653670637242,0.2683126110124333,0.2720184256615724,0.2753272641085167,0.278275993930946,0.2823286384976526,0.285643375334097,0.2878536635920821,0.2917001992163278,0.2885102029828245,0.2848893960432792,0.281927405383326,0.2781984221021298,0.275339944183837,0.271229229780593,0.2678856709004919,0.267706984444408,0.2678355398797049,0.2687006294466931,0.2697970255354971,0.271029510263583,0.2723871237458194,0.2738166967931981,0.275894312841661,0.2768671256007273,0.2781387430841254,0.2841569313425376,0.2887532693984307,0.2923627215911324,0.2972582972582973,0.3001580611169652,0.3053263315828957,0.3111262179922955,0.3138699748157821,0.3188220230473751,0.3283177851339151,0.3292682926829268,0.3279978296256104,0.3352102102102102,0.0,2.1138511268813445,48.69474416762693,131.94138242208413,189.52618836404147,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95672,48918,467.1481729241576,4736,48.185467012292,3761,38.631992641525216,1414,14.372021071995986,77.34181859432726,79.72454094995312,63.3271521787835,65.08545981136733,77.1601819543104,79.54839204752311,63.25768581930237,65.02107672899704,0.1816366400168618,176.1489024300147,0.0694663594811331,64.38308237028423,240.12384,168.90018332514845,250986.53733589765,176540.87227731047,560.02098,378.05511358607697,584704.5426038967,394506.9232231761,502.27732,247.3171928934896,520580.2533656661,255110.85287431232,2144.54496,1023.712976965312,2203394.8908771635,1032193.2199654714,836.65327,382.77777110687634,854533.3117317501,380257.1956265324,1369.69054,588.5222450303297,1392740.6346684506,580924.6815943477,0.38223,100000,0,1091472,11408.47896981353,0,0.0,0,0.0,48810,509.4907600969981,0,0.0,45358,469.6671962538674,1052180,0,37836,0,0,0,0,0,109,1.1393093067982274,0,0.0,0,0.0,0,0.0,0.04736,0.1239044554325929,0.2985641891891892,0.01414,0.3683360258481422,0.6316639741518578,23.06507043024182,4.045926546185385,0.302579101302845,0.2961978197287955,0.1978197287955331,0.2034033501728263,11.571065840759177,6.445157019831664,15.064819550278386,11312.916639467338,43.0356482170154,13.735645883701466,12.937424101142826,8.181284620232002,8.181293611939111,0.5785695293804839,0.8204667863554758,0.6783831282952548,0.5591397849462365,0.0967320261437908,0.7588235294117647,0.9203187250996016,0.8653295128939829,0.6936416184971098,0.1144578313253012,0.4951380785686503,0.738562091503268,0.5956907477820025,0.5183887915936952,0.0918196994991652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607345748397,0.0046626189728047,0.0068585574708562,0.0092624565822347,0.0115406515638345,0.0137961228313105,0.0159006818946274,0.0180374222920898,0.0202577704187491,0.0225306841097769,0.02451603642031,0.0266922737216157,0.028527926092816,0.0310983337970261,0.0330491505480668,0.0350748352796367,0.0371088082901554,0.0392682116454855,0.0413957407850521,0.0431822683722724,0.0577917532881334,0.0718414274046616,0.0853862059555173,0.0980922416423768,0.1109059836273103,0.1266382474586669,0.1370572380568348,0.1473769374893544,0.1571585797172684,0.1655798888912721,0.1775564051478111,0.1875790908205976,0.1981185426862425,0.2068347289940311,0.2159230904611052,0.2250251935194516,0.2327258116720052,0.241007760656844,0.248575967321003,0.2552696962410836,0.2597988206729101,0.2646216434224523,0.2701811217251489,0.2751146610463793,0.2793334061585891,0.2830509309427642,0.2857785891120058,0.2889654558630948,0.2912411498983937,0.294754327449145,0.2913842263826124,0.2887408119804905,0.2862971873988715,0.2826952482617351,0.2801850012600246,0.2749571813065818,0.2715090676641886,0.2711063126727847,0.2717615213061169,0.272289456380729,0.2726273837902264,0.2733954329285069,0.2745057188691431,0.2764059441181705,0.2789930431040665,0.2818955673206685,0.2835270768358378,0.2884164452086916,0.2922711224525466,0.2957713112488648,0.2998597729226037,0.3052194043986109,0.3095577746077033,0.3152713061776642,0.3171610756861658,0.3228725905030559,0.323498259948555,0.3265062636707099,0.3233205898416166,0.3262759924385633,0.0,2.6880881702827133,51.01468591272635,129.5543041230066,192.21492739487655,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95678,48864,466.4081607057004,4587,46.729655720228266,3632,37.35445975041284,1419,14.444281862079055,77.38307130315455,79.75874396134915,63.34642469116329,65.09712965149187,77.19837038584116,79.57770473375345,63.276625398900286,65.03068668741669,0.1847009173133926,181.03922759570423,0.0697992922630064,66.44296407517913,241.8086,170.16301712243444,252731.2025753047,177849.26688471343,560.60438,378.7550018192615,585310.5625117582,395247.7141545959,496.73236,243.83580586951837,514974.382825728,251603.7967404109,2079.841,983.4696509694176,2142405.443257593,996604.3361289088,825.1743,377.76899507139785,849686.1556470662,382118.7119686089,1377.2513,588.5608785348878,1404680.59533017,587855.2810107081,0.38103,100000,0,1099130,11487.781935241122,0,0.0,0,0.0,48913,510.5771441710738,0,0.0,44842,464.49549530717616,1043374,0,37490,0,0,0,0,0,78,0.8152344321578628,0,0.0,0,0.0,0,0.0,0.04587,0.1203842217148256,0.3093525179856115,0.01419,0.3623613146326146,0.6376386853673854,22.79485111200689,4.045172315124725,0.3174559471365639,0.266795154185022,0.2106277533039647,0.2051211453744493,11.28030381925434,6.211132008375157,15.093491685825915,11195.392438968756,41.54909523284472,11.904555248956358,13.18085835407344,8.430054994237906,8.033626635577006,0.585352422907489,0.8194014447884417,0.7025151777970512,0.5895424836601307,0.0953020134228188,0.7617702448210922,0.9420654911838792,0.8427299703264095,0.6871508379888268,0.1879194630872483,0.5124513618677042,0.7342657342657343,0.6446078431372549,0.5597269624573379,0.0721476510067114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021764878572223,0.0044475513140032,0.0065516576910984,0.0087229375685446,0.0112144781658278,0.0136201227643352,0.0158718832188219,0.0181588053363819,0.0201159118088988,0.0222449710805138,0.0243599864666741,0.0267600427174895,0.029126213592233,0.0315190968645708,0.0334560985422921,0.0353359446861725,0.0373036920399453,0.039398436932402,0.0414305175694928,0.0435620863946641,0.0580916764165134,0.0721396941050846,0.0851438822505009,0.0980674601505656,0.1099420137058513,0.1255193411635356,0.1352886929053731,0.144684788157223,0.1534152145380043,0.1621129326047359,0.1738896539851953,0.1847102076124567,0.195589082490027,0.2039852656661602,0.2122272087293206,0.2216780969897071,0.2302770426451375,0.2380995281478395,0.245688333806415,0.2521251976261943,0.2573934373119822,0.2627809826934553,0.2680394060672081,0.2724514272007676,0.2761507801487386,0.2799087883643535,0.2831708934402642,0.2865247866074722,0.2903493099251664,0.2933525058374998,0.290636553068495,0.2873072328037242,0.2833715096752434,0.2793125324413172,0.275696502667457,0.272407571633895,0.2691663771045898,0.2694549026027173,0.2693265132139812,0.2700407669164901,0.2705061406773353,0.2711123311307621,0.2721301935027955,0.2739325145213497,0.2745154001664883,0.2761072891705959,0.277912075556555,0.28236534466185,0.2863735729900413,0.2897627330649259,0.294167903233059,0.2994462438616654,0.3024278459061068,0.3020475265281722,0.3064338235294118,0.314110713047498,0.3142222222222222,0.3193342365008709,0.3243812532912059,0.332726610848198,0.0,2.312090689945185,45.62825377802763,141.51043239030082,179.94405317228546,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95688,48796,465.4920157177493,4711,47.73848340439763,3702,38.05074826519522,1422,14.442772343449544,77.3960056150407,79.77965515142165,63.35197710932333,65.11287956460463,77.20511047777497,79.5931551626688,63.27890063234503,65.04353748242761,0.1908951372657412,186.4999887528569,0.0730764769783007,69.3420821770161,241.16312,169.58464948110833,252030.6830532564,177226.6631982154,556.99028,376.7840807547289,581463.5795502048,393136.7263969661,495.35727,244.3295358568068,513258.6008694925,251961.9964299836,2105.92976,1022.9218766262078,2167536.03377644,1035908.1325511094,859.83914,400.5349241646825,883232.3279826102,403313.34515221766,1368.68426,602.7214384363891,1392689.156425048,600260.9191117929,0.37994,100000,0,1096196,11455.940138784385,0,0.0,0,0.0,48634,507.59760889557725,0,0.0,44824,464.0080260847755,1051872,0,37712,0,0,0,0,0,94,0.982359334503804,0,0.0,3,0.0313518936543767,0,0.0,0.04711,0.1239932620940148,0.3018467416684355,0.01422,0.3577252344068488,0.6422747655931512,22.83259027672169,4.055324201754562,0.3055105348460292,0.2895732036736899,0.2088060507833603,0.1961102106969205,11.613408937487051,6.567956991137689,15.527658285567398,11206.111662238454,42.84866933995089,13.199196695775065,12.819364462444884,8.700966493988869,8.129141687742068,0.595894111291194,0.8264925373134329,0.6843501326259946,0.5963777490297542,0.1170798898071625,0.7538461538461538,0.930379746835443,0.8806451612903226,0.6893203883495146,0.1444444444444444,0.5229067930489731,0.7441471571906354,0.610231425091352,0.562610229276896,0.108058608058608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0046642736914684,0.0068309616126347,0.0088188976377952,0.0112505849083474,0.0132570358001058,0.0152737135108129,0.0173968085432214,0.0198531967531538,0.0220987123584924,0.0242362107853188,0.0261199010236454,0.0283645638356953,0.0305102902700809,0.0327386786904528,0.0349183378126938,0.0373201578571206,0.0394943067996637,0.0416411003067963,0.0435960770826168,0.0584696371498401,0.0727822601743425,0.0862132256542031,0.0986836571620825,0.1113863473457857,0.1266999428946088,0.136628369561758,0.1470347147556341,0.1563401346010041,0.1653832128531285,0.1770882695041571,0.1873749337486885,0.1971244756460692,0.2065403910681691,0.2145652843132943,0.2234533600469332,0.2317866024332854,0.2392312789927104,0.245794868890525,0.2518486348103363,0.2580019622554395,0.2633507609000093,0.2680317415332294,0.2717965890879518,0.2755887379252669,0.2797733892077225,0.2824560747197386,0.284445064067629,0.2873555807716113,0.2904985344952223,0.287474525367371,0.2836516068933395,0.2812872801785238,0.277639366926367,0.2747028259292703,0.2714595221384761,0.2678233438485804,0.268103265045861,0.2685470289029141,0.2684737814409549,0.2696178937558248,0.2712889168073495,0.2728292713332917,0.2728480046039089,0.2742400762903803,0.2751807851239669,0.2768797521824838,0.2822261671182534,0.287705031971087,0.2913714375688868,0.2960699085393461,0.3004162934078094,0.3041468898326255,0.308144353198222,0.3105735101812068,0.314521841794569,0.3190137649372258,0.3248,0.3232104121475054,0.3186646433990895,0.0,2.4764386559447376,50.307813347798266,138.07769060556564,181.6939586599286,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95818,48928,466.46767830679,4793,48.77997870963702,3806,39.09495084430901,1403,14.193575319877269,77.38566316619061,79.70574589604297,63.36611244363343,65.08387443377083,77.20695057785488,79.53412882409592,63.29834218037038,65.02171087751519,0.1787125883357276,171.617071947054,0.0677702632630428,62.16355625564063,241.21328,169.59968499820576,251740.86288588785,177001.69509919398,561.71941,379.3281960122177,585580.8094512513,395229.91758798726,498.89667,244.98066087452185,517005.677430128,252777.68992801616,2169.39884,1029.0077853475336,2228658.1226909347,1038567.332805458,872.34325,400.38087845313737,892621.6368532008,400211.5066151981,1362.15868,577.7239844047842,1378904.1307478764,566903.7952568842,0.38164,100000,0,1096424,11442.766494813084,0,0.0,0,0.0,49008,510.7912918240832,0,0.0,45066,466.6450979982884,1052154,0,37784,0,0,0,0,0,84,0.876662005051243,0,0.0,1,0.0104364524410862,0,0.0,0.04793,0.1255895608426789,0.2927185478823284,0.01403,0.3571859296482412,0.6428140703517587,23.301584010929297,4.097760334635953,0.3066211245401997,0.3005780346820809,0.1941671045717288,0.1986337362059905,11.823580136223766,6.514273836551206,14.87606958124962,11222.261065061532,43.52117262316675,13.9649857675631,13.247850375330568,8.135418430633319,8.172918049639765,0.5916973200210195,0.8146853146853147,0.7095115681233933,0.5548037889039242,0.1084656084656084,0.7736660929432013,0.9240506329113924,0.8988095238095238,0.7473118279569892,0.1204819277108433,0.5117246596066566,0.7373134328358208,0.6329723225030084,0.4900542495479204,0.1050847457627118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0045720426183307,0.0069013812911672,0.0090626460488082,0.0112290980104967,0.0134914978108135,0.0156662487641296,0.0178691703235024,0.0200623435024784,0.0220532552856177,0.0243187571096239,0.0263373978733013,0.0283356286871261,0.0304175073084366,0.03255444646098,0.0345621881810951,0.0367637928893671,0.0387972138148347,0.041006843127278,0.0432479681987991,0.0574876908954352,0.071974409098987,0.0852584797283132,0.0979238463478187,0.109896244799073,0.1248059313709958,0.1359437240444105,0.1457830685018866,0.1550850621300197,0.1644639605869123,0.1759094966179522,0.1868606673363794,0.1969649273254236,0.2060862067083619,0.2141421684365425,0.2230918899796586,0.2308009311339563,0.2388931314855577,0.2458320119603135,0.2519256702703938,0.2574730692406276,0.2629129339305711,0.2680486567481152,0.2728695132875485,0.277331364813515,0.2803734877671713,0.2835882286953595,0.2870280061306953,0.2905970784285916,0.2928191314631101,0.2888987304399173,0.2858984380356824,0.2841704910670428,0.2800541529244019,0.2771376951100316,0.2735640254605956,0.2698227280620057,0.270004419057595,0.2703624151921175,0.271244390626113,0.2726848742631147,0.2740874906485018,0.2744379788169297,0.2743285781260465,0.2747049349775246,0.2770000782044263,0.2778220300409649,0.2833495313038844,0.287556505589235,0.2916716169656647,0.2979678853306722,0.3049570668492862,0.3086196127420362,0.3115668828231036,0.3127864558974839,0.3164094710802214,0.3202007909948281,0.3228978526991772,0.3273322422258592,0.3247539742619227,0.0,2.4038627297307023,50.03491039085911,135.83697541726565,196.03498111405412,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95769,48843,465.4115632407146,4708,48.021802462174605,3771,38.812141716004135,1422,14.45144044523802,77.37657405990127,79.72194876320458,63.3458979718325,65.07927735058632,77.19141330877696,79.54251596145,63.27410498207975,65.01241110389849,0.1851607511243145,179.43280175458654,0.0717929897527511,66.86624668783736,240.96204,169.41834454854347,251607.09624199895,176902.66281212444,562.06122,380.1957896936268,586313.5148116823,396413.6968054659,493.84364,242.9693072159934,513042.8844406854,251588.683096982,2173.01332,1028.845834911275,2236959.4336371897,1042268.5784661795,875.91427,401.15980772911695,899750.3054224227,404113.1124070074,1395.6615,606.8069862811998,1419528.6366151886,600249.0270621765,0.38062,100000,0,1095282,11436.686192818135,0,0.0,0,0.0,48949,510.5201056709373,0,0.0,44691,463.9810377053117,1048091,0,37624,0,0,0,0,0,95,0.9919702617757312,0,0.0,2,0.0208835844584364,0,0.0,0.04708,0.12369292207451,0.3020390824129141,0.01422,0.3611733550621308,0.6388266449378692,23.1580393778374,4.0977979222185,0.3009811721028905,0.279236276849642,0.2025987801644126,0.2171837708830549,11.169297139965956,5.82573978899226,15.329652977284155,11187.835004727867,43.08054653391461,12.93177721603952,12.748838022622026,8.462346533717476,8.937584761535595,0.5783611774065235,0.8129154795821463,0.6854625550660793,0.5759162303664922,0.1306471306471306,0.7465397923875432,0.9208791208791208,0.8647798742138365,0.7397959183673469,0.1283422459893048,0.5040152963671128,0.7307692307692307,0.6156670746634026,0.5193661971830986,0.1313291139240506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220297781829,0.0050684750985818,0.0072850504271596,0.0096001462879434,0.0115429989423155,0.0136862150079938,0.0159680231668892,0.0183362600563564,0.0206503848945501,0.0225609319179863,0.0248749590029517,0.0270991582837199,0.029453491241056,0.0314826829795779,0.0337342934367714,0.0356079712242113,0.037504141815772,0.0395228215767634,0.041708250166334,0.0437503905355022,0.0585220749399853,0.0728291902406375,0.0860248870438511,0.0991855393831117,0.1116157996796222,0.1264336226123907,0.1365564037319762,0.1465781409601634,0.155649295173003,0.1642575276657802,0.1758573151818025,0.1863753908743683,0.1972932690738585,0.2054118522408963,0.213805251279793,0.222254242360426,0.2306799021852004,0.2382147398746356,0.2449760005446684,0.2512480534945497,0.256057924748719,0.2610245978301533,0.2659076399233879,0.2701622074579518,0.2743034055727554,0.2778277310406838,0.2810735169173872,0.2850704582963057,0.2883462532299741,0.2907287646694677,0.2875386061501275,0.2847947517944635,0.2812245471141693,0.2783181313851784,0.2756680731364275,0.2723984800622625,0.2679641662986562,0.267605863990717,0.2673018033344675,0.2673768308921438,0.2689000391710656,0.268558179746139,0.270190345287184,0.271054964539007,0.273865750679834,0.2749631468694235,0.2763897123175517,0.2809955875955503,0.286275191104934,0.2897684839432412,0.2928677764244147,0.2960917363631581,0.2978855721393035,0.3015336039693279,0.3067950379559341,0.3124926960383312,0.315140580363855,0.318217665615142,0.3204168893639765,0.3157503714710252,0.0,2.154978628830704,50.286600894612775,133.42921935449053,193.19631092733792,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95755,48727,465.625815884288,4672,47.60064748577098,3767,38.7969296642473,1419,14.422223382590987,77.3313489084019,79.6982518771154,63.31030609897547,65.06337185135017,77.14994148595018,79.52202937151947,63.24160981012241,64.99957042099628,0.181407422451727,176.22250559593056,0.0686962888530544,63.80143035389096,240.31766,169.21892104731972,250970.9362435382,176720.2559107301,558.3364,376.53483232628383,582503.4201869353,392642.2456543092,500.91682,245.41904597726747,520301.8850190591,254118.4820691381,2163.12376,1026.7364567609843,2228013.9940473083,1041248.4953903032,875.19675,399.2343253670968,901141.1310114354,404123.1506740624,1377.46592,586.0040233040385,1401310.1352409795,578700.2699817817,0.37955,100000,0,1092353,11407.769829251736,0,0.0,0,0.0,48744,508.4538666388178,0,0.0,45254,469.7509268445512,1051287,0,37650,0,0,0,0,0,79,0.8250221920526344,0,0.0,0,0.0,0,0.0,0.04672,0.1230931366091424,0.3037243150684932,0.01419,0.3726695349313665,0.6273304650686334,22.96541687318632,4.047957530395317,0.3089992036103,0.2837801964427927,0.2057340058401911,0.2014865941067162,11.235878224991929,6.179102496960097,15.073059638617575,11176.81419768411,43.338161782074586,13.213197341968614,13.180004872373717,8.670490924561667,8.274468643170595,0.6044597823201486,0.8063610851262862,0.7285223367697594,0.6038709677419355,0.1304347826086956,0.794351279788173,0.9344978165938864,0.9177215189873418,0.8087431693989071,0.1931818181818181,0.5227790432801822,0.7103109656301145,0.6580188679245284,0.5405405405405406,0.111492281303602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.0044921261040185,0.0067495559502664,0.0088701483438325,0.0110582107469124,0.0134839241885712,0.0157436958937912,0.0177665233772731,0.0199858850965029,0.0222258639408402,0.0242964391204463,0.0263317408948476,0.0283106244597209,0.0302796071277659,0.0323189991535746,0.0342998366182036,0.0362327845086465,0.0384679243716663,0.0404474058981902,0.0423810019789605,0.0569132000626337,0.0708022017119775,0.0835361503923461,0.0965180721624549,0.1080895843438284,0.1239621344333386,0.1351982341455132,0.1444458647577655,0.1536702150399726,0.1626264902509953,0.173866649421199,0.1842943164096343,0.1953840291764193,0.2051405552149925,0.2145695947508064,0.2228848882582476,0.2314701087563366,0.2391301901020856,0.2464118361187696,0.2527405812208616,0.2586139072081453,0.2630716467875411,0.2687003909489397,0.2718107514492492,0.277093491239376,0.2800497953951585,0.2839453672203322,0.2863084260731319,0.2888376551045256,0.2915534927876375,0.2879479002677646,0.2853140706968057,0.2820552448927979,0.2786143493234578,0.2758294119387967,0.2719910937595315,0.2681259842519685,0.2690303931015335,0.2698750106283479,0.2702683515547352,0.2719654363290998,0.2724272073558882,0.2732796470857523,0.2741025413186422,0.2752227823303151,0.2752808988764045,0.2780177890724269,0.2823154739602847,0.2869133384626145,0.2919205507636306,0.294445198967812,0.298973954222573,0.3011477045908183,0.3041644702161307,0.3057095343680709,0.3072477170269333,0.312156746326258,0.3165565487757482,0.3180729305296779,0.3159851301115242,0.0,1.9787126819652807,49.43038684799385,140.61438829675592,191.41669378296916,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95517,48639,465.351717495315,4629,47.56221405613661,3657,37.98276746547735,1396,14.43722059947444,77.22623088476638,79.71363295852505,63.24095407219974,65.07633348254772,77.05232087417762,79.53823295392532,63.17531978299299,65.01168279201659,0.1739100105887558,175.40000459973726,0.0656342892067485,64.65069053113837,239.29972,168.25247872091114,250531.0258906792,176149.24957956295,554.70427,375.3166918283948,580456.6935728719,392649.7291878877,494.33873,242.57512765728472,515523.896269774,252448.50928537015,2098.22644,991.6321805614853,2180271.993467131,1021740.7797161604,838.65317,382.0484129102052,871266.2039218149,393231.13467781054,1355.08782,574.8314499907463,1401638.4517939216,585894.6997620929,0.37879,100000,0,1087726,11387.77390412178,0,0.0,0,0.0,48397,506.38106305683806,0,0.0,44549,464.47229289027086,1052866,0,37823,0,0,0,0,0,89,0.9213019671890867,0,0.0,0,0.0,0,0.0,0.04629,0.1222049156524723,0.3015770144739684,0.01396,0.3607305936073059,0.639269406392694,23.148708269943736,3.9724842174762713,0.2964178288214383,0.2953240360951599,0.2009844134536505,0.2072737216297511,11.489037205574087,6.281201257106721,14.928541756119024,11146.885434314649,41.92662876483286,13.191332909700614,12.28313140920188,8.166536359038597,8.285628086891766,0.5810773858353842,0.7953703703703704,0.690959409594096,0.5768707482993197,0.1226912928759894,0.7508928571428571,0.9123931623931624,0.8410596026490066,0.7210526315789474,0.14375,0.5061095782420181,0.7058823529411765,0.6329923273657289,0.5266055045871559,0.1170568561872909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002482646805,0.0046456429346668,0.0068938209434077,0.0091306558210472,0.0111581690829125,0.0134943688528767,0.0158879172236451,0.0183005333823799,0.0205530604519831,0.0225610130939939,0.024388241090491,0.02619782027555,0.0283375379704474,0.0304880564379718,0.0324947047579686,0.0348287036557714,0.0369075651172681,0.039032452547764,0.0409326262931438,0.0428626619749193,0.0569308226132283,0.0699657986948949,0.083261477633599,0.0957243879562005,0.1080467057642521,0.1233678141427844,0.1340151386290185,0.1438523497092868,0.1532283110401919,0.1621453138435081,0.1735239185118809,0.1846794572844701,0.1948759880076315,0.204338437592485,0.2123883066740209,0.2206619190987768,0.2284084554300413,0.2356494787264018,0.2430468696700247,0.2494751454105338,0.2550224314016438,0.2611085715625256,0.2666129013129025,0.271565341693995,0.2751391714275273,0.2790996625588668,0.2833218253719164,0.2862212916980506,0.28972921047849,0.2933826931975937,0.2900453343407631,0.2873272016302252,0.2835686307661961,0.2798874215198095,0.2767038616406401,0.2725072752335732,0.2686649882032524,0.2690122808169699,0.2696185658623282,0.2705659771181751,0.2706938470170189,0.2716246598035735,0.2731961992273154,0.2742822780017372,0.275767347426251,0.2775419341478567,0.2772089602896255,0.2808375198926576,0.2842361957847065,0.2882510433892432,0.2928991406603347,0.2950276243093923,0.298799825881475,0.3035086406822772,0.3056140672222731,0.3077366539836274,0.3133182844243792,0.3171566653242046,0.3223791417707767,0.3296910324039186,0.0,1.202679844593441,49.57957843318115,131.9876690381196,186.4419447864433,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95701,48901,466.7662824839866,4776,48.6410800305117,3747,38.473997136916026,1391,14.14823251585668,77.36399481233721,79.74803472818883,63.33329461681414,65.09699768224368,77.18523579636948,79.57427582288406,63.26525147469039,65.03318213774148,0.1787590159677279,173.75890530476568,0.0680431421237557,63.81554450220506,240.60696,169.2106516984015,251415.0740326642,176811.5807675381,562.27097,380.75326234997885,586849.6567433986,397178.8825483593,503.31354,248.45137318621744,521272.5154387101,256053.2621114,2112.92708,1011.9757633791072,2171488.615583954,1021161.9519776512,845.16573,387.8608691792275,866331.9296559076,388533.7760011968,1335.3004,572.3083171545197,1359349.599272735,567965.059878021,0.37993,100000,0,1093668,11427.957910575647,0,0.0,0,0.0,49096,512.303946667224,0,0.0,45418,469.9532920241168,1049007,0,37641,0,0,0,0,0,92,0.9613274678425512,0,0.0,3,0.0313476348209527,0,0.0,0.04776,0.1257073671465796,0.2912479061976549,0.01391,0.356421647819063,0.643578352180937,23.115604836008213,3.956078422023002,0.2997064318121163,0.3013077128369362,0.2169735788630904,0.1820122764878569,11.414544428467238,6.455888725102213,14.95896814788254,11223.818291207755,43.14993298050972,13.874803575023432,12.938362044684386,8.83608745619395,7.500679904607946,0.5986122231118228,0.8024800708591674,0.709706144256456,0.5473554735547356,0.1392961876832844,0.759493670886076,0.9030303030303032,0.8430232558139535,0.7112299465240641,0.1886792452830188,0.524199843871975,0.7239747634069401,0.6508344030808729,0.4984025559105431,0.124282982791587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0045230054661433,0.0067814504994721,0.0090960830944976,0.0109587089684364,0.0132852456344112,0.0155555102207352,0.0177907594264471,0.0199850674521595,0.0221587360099939,0.0242119080337182,0.0264149780731033,0.0284923728900729,0.0306958340632051,0.0329535368547072,0.0349576599770464,0.0372188901664646,0.0391001162211522,0.041287264562804,0.0434556119312794,0.0572189441804605,0.0713104458865396,0.0849008109270585,0.0978074557021925,0.1108604915890214,0.1259250644902101,0.1358985505709711,0.1457398149133071,0.1548520008966408,0.1637785993677329,0.1748211115295636,0.1854896277228579,0.1947615630504273,0.2042358240941197,0.2134796858846044,0.2227363294221828,0.2313611777170579,0.2396447042950303,0.2466393656483613,0.2522580275885753,0.2584669819502099,0.2638106370543542,0.2690660419772367,0.2727871680302831,0.2772760378732702,0.2807866011986069,0.284666241735718,0.2871743436087552,0.2901384440541378,0.2927371509004565,0.2893818611267681,0.2869581910677801,0.2832124163287071,0.2791789025162665,0.2775239193765434,0.2734688907829051,0.2695857243927364,0.2699358536029436,0.2714457565951102,0.2728432919155573,0.2731520262094897,0.2751305098716489,0.2746912296752193,0.2759639959995555,0.2773273559710034,0.2781405472636816,0.2785236800362565,0.2830482599619902,0.2861519181229548,0.2908241391495543,0.296299626815341,0.3002198262325971,0.3036805988771054,0.307058645707376,0.3131955484896661,0.315522528898325,0.321510472404831,0.3209349593495935,0.3246824958586416,0.3227676845767298,0.0,2.576179193607316,51.07185040910852,133.3859588212789,188.72832406082037,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95657,48687,465.05744482892,4622,47.043081008185496,3679,37.74945900456841,1402,14.21746448247384,77.31725194233033,79.72616213750749,63.30264576078415,65.0852806261203,77.1402195879359,79.55427831001833,63.23415531264168,65.02152964158765,0.1770323543944272,171.88382748915387,0.0684904481424695,63.75098453264627,241.2905,169.81975169402543,252245.52306679072,177529.87412737744,563.51544,381.0120168887946,588421.4223736894,397632.01531387627,499.83169,246.25393306549432,517694.3663296988,253718.6705532041,2110.33308,1014.959644132768,2167155.649874029,1022050.288146992,847.33791,391.2539284831253,865804.9384781041,389016.086207099,1360.62692,589.2219843478015,1381182.0985395736,580888.7947163968,0.38058,100000,0,1096775,11465.705593945033,0,0.0,0,0.0,49186,513.4700021953438,0,0.0,45196,467.77548950939297,1043221,0,37446,0,0,0,0,0,84,0.857229476149158,0,0.0,1,0.0104540180018189,0,0.0,0.04622,0.1214462136738662,0.303331890956296,0.01402,0.3500103369857349,0.6499896630142651,22.908979690917352,3.9888447355847023,0.3153030714868171,0.2835009513454743,0.2005979885838543,0.2005979885838543,11.262163096640514,6.26025926352061,15.015948249451512,11201.961880288523,42.36273834048122,12.897004184019638,13.163200885752913,8.185144829084773,8.1173884416239,0.5971731448763251,0.822627037392138,0.7,0.5867208672086721,0.1273712737127371,0.7600671140939598,0.9384288747346072,0.8783382789317508,0.6896551724137931,0.154696132596685,0.5190993164455167,0.7272727272727273,0.6269744835965978,0.5476635514018692,0.118491921005386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026036653935384,0.0050398012472747,0.0071546728640003,0.0095316485280817,0.0117820623696393,0.0138840786390954,0.0158631383510497,0.0181636155606407,0.0203801845675349,0.022436915385167,0.0245511439417256,0.0270045315823545,0.0290493592053116,0.0311259575433278,0.0331009553317841,0.0352187723091885,0.0373595389144586,0.0391609117815047,0.041221882348045,0.0431673425137341,0.0580184095871947,0.0717539505513493,0.0851791975477125,0.0975948488100498,0.1094795029221258,0.1253016128349489,0.1357441569193538,0.1467718917076703,0.1561120552366905,0.1648820891358925,0.1764895989313454,0.1868579161028416,0.1972532973490619,0.2054374712693999,0.2142691939160985,0.2231099980052749,0.231484167540669,0.2394817638921691,0.2461069083237872,0.2524267399267399,0.257327935222672,0.262334564841229,0.2675707979787221,0.2714931042333177,0.2759496131093376,0.2802859431811179,0.2826581930092326,0.2861191601850439,0.2887567078295726,0.2921225526984503,0.2879726008998724,0.2838992934074226,0.2811341942728804,0.2778777884989271,0.2757362754693478,0.2708546786353279,0.2668866122590727,0.2679734284498838,0.2688881332879972,0.2688244589244181,0.2700158449063286,0.2717194748014781,0.2725053211468636,0.2712807388449983,0.2723807240469911,0.2745627238283075,0.2760172033274857,0.2811701663655056,0.2856695434298441,0.2905495715071939,0.2948138778460426,0.2984430885756364,0.3012040676274253,0.3026782346284421,0.3068709377901578,0.3091944670463791,0.313971031985516,0.3166799363057325,0.318506751389992,0.3188352377441946,0.0,2.78618926970918,51.24064847013473,129.69169841397297,180.9204479981806,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95851,48953,466.9956494976578,4635,47.22955420392067,3702,37.98604083421143,1383,14.094792959906522,77.4717338221379,79.75767530030265,63.40399372213196,65.09039363200986,77.29416793242908,79.58258423428741,63.33731781745974,65.0267837321409,0.1775658897088305,175.09106601524138,0.0666759046722162,63.6098998689647,243.0516,170.93757831514571,253572.31536447196,178336.7709415089,560.08957,378.7367129770389,583697.8435279757,394494.9588184149,509.32518,250.51257392509223,526187.3950193529,257446.65204423552,2107.70536,1006.7438865537596,2167556.770404065,1018939.1519689512,827.21128,383.8220823823535,848412.3378994481,385830.6250141922,1335.32726,570.7216987088221,1363158.6524918885,570145.7498562355,0.38092,100000,0,1104780,11526.014334748725,0,0.0,0,0.0,48876,509.2591626587099,0,0.0,45905,473.8709037986041,1041323,0,37346,0,0,0,0,0,91,0.9389573400381844,0,0.0,2,0.0208657186675152,0,0.0,0.04635,0.1216790927228814,0.2983818770226537,0.01383,0.3706788837984173,0.6293211162015827,22.55130438765132,4.037897585715867,0.3065910318746623,0.2928146947595894,0.2096164235548352,0.190977849810913,11.518559090185578,6.411474892863293,14.70722350490516,11214.8541212435,42.49671379059599,13.367679941352206,12.863367426903274,8.598079964225912,7.667586458114597,0.5975148568341437,0.8145756457564576,0.707488986784141,0.5786082474226805,0.1089108910891089,0.7899382171226832,0.9232409381663113,0.8928571428571429,0.7258064516129032,0.1901408450704225,0.5126508369015181,0.7317073170731707,0.6295369211514393,0.5322033898305085,0.0884955752212389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020548638526166,0.0043865425332536,0.0066316493946338,0.0086885911490052,0.0110966588082269,0.0136538911554936,0.0159828049873685,0.0179622395169269,0.0200561654327291,0.0222635836495096,0.0245396259653003,0.0266550433311112,0.0291029750164365,0.0310837646235685,0.0330481393670755,0.0348929666766488,0.0369485389190587,0.0388334421540279,0.0409203708895326,0.0429258241758241,0.0574619162313491,0.0712396642380021,0.0846729402888101,0.0972524297346992,0.1095149764971227,0.125412297023004,0.1353861814480213,0.1458160464670964,0.1553308921651311,0.1643125066981031,0.1755939571317896,0.1878903801681471,0.1988187907804883,0.2077284139286104,0.2155728074317276,0.2250538763330938,0.2339165005512433,0.2411490020878701,0.2491649966599866,0.2546435470412747,0.2588933262540686,0.2638219962449417,0.2682702294400906,0.273091265477841,0.2763331757403838,0.2796906126263496,0.2838903726630556,0.2867488521928823,0.289864237043155,0.2924184879029609,0.2894563890714487,0.2853741310416552,0.2815096031267949,0.2785435331954973,0.2760422817999291,0.2721921392066196,0.2678936283909093,0.2679418042001336,0.2678480669535459,0.2690402914853727,0.2698285947742762,0.2699978470631984,0.2703532388873908,0.2712531799579692,0.2718591890543718,0.2728841053634421,0.2732047069396467,0.2779256965944272,0.2812037833190026,0.2869094871196202,0.2881658123467795,0.2916884201733319,0.2952357289272626,0.2983183771962899,0.3012082045518404,0.3045990566037735,0.3100495718792249,0.3113879003558719,0.3157613058603157,0.3189910979228487,0.0,2.514705738863744,48.59657896943288,139.97239194259993,181.44463212863832,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95745,48524,462.6455689592146,4713,48.05472870645986,3805,39.19786934043553,1440,14.653506710533186,77.34438518034166,79.69690832288038,63.33412346583962,65.0721461212217,77.15989644003929,79.51662623825843,63.26437141002139,65.00625271050593,0.1844887403023705,180.2820846219504,0.0697520558182276,65.89341071577337,240.02748,168.85224731882712,250693.3834664996,176355.1282868964,560.98991,379.1970661299437,585377.0431876339,395507.3604697442,497.94073,244.7565222298283,516958.6296934566,253184.15890356965,2168.4334,1035.1090403683995,2235741.9395268685,1052180.7436869603,862.78468,396.00698287625016,885228.8996814454,397790.89170554624,1385.47688,590.6044981378963,1411421.9854822706,587491.4773265183,0.37933,100000,0,1091034,11395.153793931797,0,0.0,0,0.0,48945,510.61674238863645,0,0.0,45063,467.5231082563058,1052268,0,37776,0,0,0,0,0,81,0.8459971800093999,0,0.0,1,0.0104444096297456,0,0.0,0.04713,0.1242453800121266,0.305537873965627,0.0144,0.3649501323020557,0.6350498676979442,22.92428102122046,3.986390123125796,0.3256241787122207,0.2867279894875164,0.1978975032851511,0.1897503285151117,11.812343041366274,6.833437443661669,15.375978405296054,11184.960531993824,43.73032808447376,13.32420622197971,14.075886504633283,8.358663091479352,7.971572266381426,0.6010512483574244,0.7772685609532539,0.7304277643260694,0.6082337317397079,0.1052631578947368,0.7706422018348624,0.8934426229508197,0.8735955056179775,0.8040201005025126,0.1089743589743589,0.5230237912509593,0.6832504145936982,0.6727066817667045,0.5379061371841155,0.1042402826855123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728293018921,0.0049881885373049,0.0072240992704877,0.0092928308095426,0.0113772698619273,0.0135595980983987,0.0158272354823586,0.0178682585846216,0.0200774488867999,0.0222142637879873,0.0241515698008033,0.0264700146770535,0.0288713640896986,0.0309262425078783,0.0332064494166434,0.0354245677851378,0.0377393644550253,0.0396772721616128,0.0415198661387044,0.0432373313889901,0.0574497849417463,0.0710675303745408,0.0838367946297461,0.096919727833924,0.1088462633527011,0.124397259115134,0.1345431789737171,0.1443512863617985,0.1530270016235153,0.1617544574412196,0.1743511351770316,0.1847200588438906,0.1958793150312585,0.2046080531631181,0.2136981480666872,0.2227769352535506,0.2311133921697702,0.2393379583300538,0.2466684057116285,0.2524206285622725,0.2590768234586744,0.2639936389892541,0.2683050867503223,0.2716311291695132,0.2762986973570795,0.2798195666642017,0.2831322285084864,0.2855306366621694,0.2892835874996763,0.290982471412179,0.2884499011605234,0.2859124939899718,0.2825860711071107,0.279772038666859,0.2766014274479545,0.2718771999632702,0.267814473122023,0.2673755611626306,0.2677974769860211,0.2677204599665349,0.2689852150537634,0.2701282858492051,0.2721850299276314,0.2727394179599652,0.2748353096179183,0.2767121157136191,0.276819842011382,0.2813330415481289,0.284313725490196,0.2893541378629271,0.2934345488229181,0.2978959025470653,0.3042719052073589,0.3068394636302344,0.3095745666882936,0.3128426455149889,0.3154626684840224,0.3220890062995326,0.3257534246575342,0.3235068912710566,0.0,2.025732122419874,52.2939781596545,136.45633270703655,189.88005148577489,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95680,48567,464.26630434782606,4668,47.69021739130434,3710,38.283862876254176,1392,14.255852842809364,77.28108161739658,79.6711401973681,63.29287913429015,65.05686238159282,77.10154770141948,79.49193829944002,63.22515235731612,64.9914755522398,0.1795339159771032,179.20189792808117,0.0677267769740339,65.38682935301665,239.59958,168.62099056081183,250417.39130434784,176234.09653303918,561.90687,379.5196580393461,586750.4285117056,396129.4870382275,496.15812,243.27990221245892,515549.4983277592,252014.4392036863,2117.13068,998.8902253403712,2185580.142140468,1016931.852992157,836.81479,383.5589076089883,860302.7696488295,386688.3934684421,1353.2101,575.7400011053505,1386068.4155518394,576403.6160150522,0.37827,100000,0,1089089,11382.608695652174,0,0.0,0,0.0,49004,511.6220735785953,0,0.0,44675,463.99456521739125,1050444,0,37704,0,0,0,0,0,99,1.0346989966555182,0,0.0,0,0.0,0,0.0,0.04668,0.123403917836466,0.2982005141388175,0.01392,0.3611111111111111,0.6388888888888888,23.38129265010601,4.0574207660025365,0.3075471698113207,0.2830188679245283,0.206199460916442,0.2032345013477089,11.2775311825556,6.141411937495715,14.832717521199765,11177.499604039896,42.50294275008631,12.780438021421729,12.940936334766931,8.497510628392591,8.284057765505061,0.5827493261455525,0.8,0.7002629272567923,0.5647058823529412,0.1206896551724138,0.7481617647058824,0.9253393665158371,0.8595890410958904,0.6701570680628273,0.1595092024539877,0.5141113653699466,0.7088815789473685,0.6454652532391049,0.5296167247386759,0.1099830795262267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008509345084,0.0046736078021877,0.0067284370338045,0.008899635277504,0.0111059129833411,0.013329395951285,0.0154373228378571,0.0177543186180422,0.0199539994888832,0.0220575440894993,0.024033384257313,0.0260893671197995,0.0283628136569313,0.0307039235080778,0.0328093876750642,0.0348129077618205,0.0367934202757434,0.0388275955121485,0.0405787754592547,0.0425148265115745,0.0568864465037558,0.0709087672638555,0.0841188201952346,0.0967762299566516,0.1083176840461671,0.1238733020185349,0.134779931633368,0.1442920137187653,0.1544136515268155,0.1630481467164884,0.1740959242442218,0.1852730819245773,0.1951623267008636,0.2047828657775441,0.2130313112839609,0.221261117395258,0.2294402288702882,0.2376876555584336,0.2451835696110505,0.2520317747796284,0.2578661509420852,0.2628157830013,0.2686048854491366,0.2724872487248725,0.2756315188057669,0.2798348329840996,0.2835630327838071,0.2870184105319447,0.29045465735498,0.2932878991996196,0.2897070317764062,0.2862198110869385,0.2819988145973864,0.2781523060008101,0.2752592504426227,0.2721758443746649,0.2693317724482693,0.2692610708072087,0.2698231115967764,0.2700771547192673,0.2709787265889573,0.2719112675220941,0.2723747642003772,0.2732558139534883,0.2749753670904328,0.2762228684183196,0.2774717474018968,0.2838028389684454,0.2881095966814236,0.2922786155845178,0.2955520433506435,0.2999894703590607,0.3074569073195103,0.3106475575898552,0.3130684982364952,0.3184602936076754,0.3189603365384615,0.316600790513834,0.3177470775770457,0.3211182470721571,0.0,1.8554103840664948,47.39944637908092,139.20466618686905,191.11534133093204,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95730,48700,465.7787527420871,4675,47.67575472683589,3738,38.50412618823775,1396,14.16483860858665,77.3612597271838,79.72683321571179,63.34108899169471,65.08902861499821,77.17847448402156,79.54909653591466,63.2704113768181,65.02311010050147,0.1827852431622432,177.73667979713537,0.0706776148766081,65.9185144967438,241.40864,169.83032216748285,252176.57996448345,177405.5386686335,560.62376,379.2464034870566,585012.4725791288,395545.398626736,498.16881,244.5063868725886,517657.7875274209,253250.83956692315,2146.29832,1015.526387773388,2210515.2407813645,1029353.9145123438,871.11486,394.0865591106504,895554.3403321843,397277.7116918574,1358.74974,588.4119120511123,1380160.3259166407,579900.3300377966,0.37922,100000,0,1097312,11462.571816567428,0,0.0,0,0.0,48936,510.6131829102685,0,0.0,44925,466.5099759740938,1046755,0,37562,0,0,0,0,0,106,1.096834848010028,0,0.0,0,0.0,0,0.0,0.04675,0.1232793629028004,0.2986096256684492,0.01396,0.3680627192077573,0.6319372807922427,22.690459363840432,4.055937906840049,0.3047084002140182,0.2867843766720171,0.2017121455323702,0.2067950775815944,11.101545326118996,5.868924698863768,14.996338760462775,11172.982941124244,42.96499369515304,13.269862312309336,12.913153015234377,8.435267009938483,8.34671135767084,0.5906902086677368,0.8236940298507462,0.6988586479367866,0.5848806366047745,0.1138421733505821,0.753315649867374,0.9190371991247264,0.8463949843260188,0.700507614213198,0.1518987341772152,0.520138089758343,0.7528455284552845,0.6414634146341464,0.5439856373429084,0.1040650406504065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0043190850839484,0.0064135089606462,0.0083713464254147,0.0102817044645581,0.0125659355206614,0.0149899047580201,0.0174299280134783,0.0198247569192389,0.0217956592956592,0.0237970738109152,0.0259230729728341,0.0280466106488671,0.0300704631613647,0.0321961488452727,0.034043565011527,0.0360793248071247,0.0383441949275663,0.0402524748357041,0.0420934182147806,0.0563102335731364,0.069898888400427,0.0836996087234734,0.0969916194361783,0.1090217242360679,0.1245559878213802,0.1354246203444472,0.1453775432025198,0.1552142193358185,0.1632219887654903,0.1747472463580865,0.1865778200856735,0.1961688156378422,0.2051988369296692,0.2131839620048593,0.2219185055664992,0.2298600657858058,0.236990842182145,0.244428827276643,0.2512874505046806,0.2575916956617231,0.2619097684633537,0.2668904940358675,0.2713239517518667,0.2758386658910219,0.2797792445640817,0.2826361060135076,0.2859646004215445,0.2897904303869474,0.292042279508672,0.2891907871751458,0.285441848340582,0.2828227494276122,0.2803321942990613,0.2773783226839429,0.2732009167303285,0.2693751972230988,0.2698477588998086,0.2698696043929889,0.2700492453199168,0.2709063782170832,0.2722579119536515,0.2732906294990297,0.2743972956142692,0.2759190120620333,0.2780333151425379,0.2795032820891705,0.2849705181282148,0.2907127127826908,0.2942268937448137,0.299233198015336,0.3035854488353834,0.3077209071756103,0.3113207547169811,0.3178673554100175,0.3209459459459459,0.3278811524609843,0.3333333333333333,0.3348991434097817,0.3303185214313802,0.0,2.066704830615819,49.11581317629853,140.8269302853243,186.76357104095823,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95643,48619,465.4078186589714,4658,47.41591125330657,3692,37.93272900264525,1384,14.03134573361354,77.2430810454354,79.64935101091763,63.27207635196621,65.05091429442186,77.0647751200474,79.47571139518273,63.204501316364485,64.98783479396279,0.1783059253880026,173.63961573489917,0.0675750356017275,63.07950045906807,239.54348,168.44617771046026,250455.6109699612,176119.50999659355,557.89386,376.7240692466325,582612.5801156383,393193.1815811885,487.07467,238.60087267297163,505349.1525778154,246482.16849542176,2103.29056,991.2471400384452,2162257.3528642976,999814.1160143669,823.59547,377.4082231179113,841718.9653189465,375679.1726749203,1335.3272,569.2027247460278,1354510.544420397,559510.6927929731,0.38151,100000,0,1088834,11384.345953180054,0,0.0,0,0.0,48712,508.6101439728992,0,0.0,43978,455.9455475047834,1053758,0,37836,0,0,0,0,0,103,1.0560103719038507,0,0.0,1,0.0104555482366717,0,0.0,0.04658,0.1220937852218814,0.2971232288535852,0.01384,0.3718717683557394,0.6281282316442606,23.20105597254208,3.9550374613074473,0.323943661971831,0.2919826652221018,0.1958288190682557,0.1882448537378115,11.225370220517169,6.185467182529242,14.7916243275702,11223.51405628713,42.31966477695036,13.261597793004013,13.447102535214407,7.977899658220002,7.633064790511941,0.594257854821235,0.7968460111317254,0.6998327759197325,0.5795297372060858,0.1136690647482014,0.7518518518518519,0.9045454545454544,0.8135048231511254,0.7458563535911602,0.1756756756756756,0.5290964777947933,0.7225705329153606,0.6598870056497175,0.5239852398523985,0.0968921389396709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023613588454678,0.0045645426328281,0.0068830390952559,0.0091648970219165,0.0114633873445017,0.0136870512755231,0.0159469793525363,0.017930076784839,0.0199402814136125,0.0221189096196776,0.0239665268533806,0.0260944576234634,0.0280134513929596,0.0297620274029051,0.0320180010941031,0.0340402651252727,0.0360491013622002,0.0379154298050775,0.0399101319936343,0.0419820270636558,0.0561564103367921,0.0701498947280212,0.0833945782500052,0.0964495858025536,0.1088214180144419,0.1247538588579051,0.1342065844408324,0.1439339019189765,0.1529942970864852,0.1622382128665019,0.1743272695884853,0.1853212799167533,0.1960837698615815,0.2050698056392006,0.2138913683096961,0.2231539715816445,0.231809696278659,0.2404458419267223,0.2473063284233497,0.2535710191447896,0.259529602595296,0.2649200440167638,0.2695112710740671,0.2738826011893343,0.2776818712312779,0.2812349668808822,0.2849664362288348,0.2881578277039074,0.2916056264989952,0.2943375292237382,0.2909553557003608,0.2877573190687696,0.2845873188048516,0.2812504516483358,0.2789646611064032,0.2756233535502052,0.2720563781772112,0.27157472944345,0.2709610229969439,0.2724400171379605,0.2730852160869972,0.2740186767964546,0.2749476768522394,0.2764018848120771,0.2773153589675933,0.2774057378117101,0.2788840075312375,0.2832930542041995,0.2880779612297122,0.2921902338158104,0.296583850931677,0.2991289568727427,0.3025976476507956,0.3071840826245443,0.3097053563023628,0.3173088252621656,0.3196923076923077,0.3241869918699187,0.3327846364883401,0.3362595419847328,0.0,2.527643617744142,46.427776506372346,136.6879781870608,193.16097569267507,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95824,49249,470.1849223576557,4558,46.36625480046752,3615,37.21405910836534,1390,14.150943396226417,77.44904619750217,79.77700121871554,63.38601454967061,65.10759347244475,77.27256036503255,79.6014606311592,63.319145831692005,65.04301488786618,0.1764858324696234,175.54058755634117,0.0668687179786076,64.57858457856958,239.62576,168.5981803212982,250068.62581399232,175945.67156588976,559.66868,378.88617850749,583577.92411087,394916.93991848617,503.11954,247.49383953543608,521735.0037568876,255724.27058180253,2045.7578,977.8040440408188,2107193.688428786,992698.6183428146,816.44132,375.3200191103021,837882.6598764402,377537.33836022415,1342.66436,571.5563695623466,1368340.040073468,571157.1192648339,0.38201,100000,0,1089208,11366.755718817833,0,0.0,0,0.0,48744,508.1607947904492,0,0.0,45415,470.6336617131408,1058872,0,37888,0,0,0,0,0,84,0.8766071130405744,0,0.0,1,0.0104357989647687,0,0.0,0.04558,0.1193162482657522,0.3049583150504607,0.0139,0.3753430441207515,0.6246569558792485,23.077199411771332,3.986499922420359,0.3131396957123098,0.2874135546334716,0.2063623789764868,0.1930843706777316,11.49346710870195,6.4652317706877644,14.685291296449895,11279.65079192554,41.536761124091335,12.775827771739902,12.850514541714928,8.31690551690911,7.593513293727398,0.5939142461964039,0.8007699711260827,0.7111307420494699,0.5884718498659517,0.1017191977077364,0.7567811934900542,0.9190371991247264,0.8198757763975155,0.7745664739884393,0.1233766233766233,0.5221203666799522,0.7079037800687286,0.6679012345679012,0.5322862129144852,0.0955882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021874968352186,0.0046526714849016,0.0066563169056243,0.0090815818612163,0.0112165309090169,0.0134707217985399,0.015425710877522,0.0175241633411241,0.0199386816555953,0.0221321791447954,0.0243070143977045,0.0263752052545156,0.0284231085526315,0.0308050284678822,0.0327251724955909,0.0351575010589608,0.0371148531862263,0.0390190792202405,0.0409770491121985,0.0429536629293023,0.0579472789293053,0.0719640336661613,0.085688832992716,0.0991584454880701,0.1113253672209226,0.1270713561041596,0.1376053426617904,0.1477322273621523,0.1569508161741171,0.1654458223564437,0.1768204157570413,0.1871002592912705,0.1976635615486504,0.2065082171151705,0.2144707664610183,0.2243553610309802,0.2336172818885362,0.2412891497312401,0.2486986239362665,0.2544055001655988,0.2598823122187608,0.2648180323472136,0.270289393617774,0.2744950490319036,0.2778564769411451,0.2819231241557166,0.2861717903026829,0.2902069559490336,0.292928772137867,0.2945494176503801,0.2910381781647689,0.2882019549325083,0.2847696036538381,0.2815998620313016,0.2784296361892111,0.274172950620287,0.2699623352165725,0.2695512090343997,0.2701546060421529,0.2700629286572863,0.2708576943779349,0.2726045883940621,0.2740419528186402,0.2748182946286119,0.2751804129849715,0.2763076606260296,0.2758193490257912,0.2806467630811247,0.2868858155535478,0.290872067979794,0.295529242267345,0.3010204081632653,0.3026956196181206,0.3055618273500414,0.3077568525079246,0.3138148667601683,0.314946350309808,0.3162444712505026,0.3153887982599239,0.3130402104472003,0.0,2.0315259303894013,47.93311505051024,134.73694058658,180.37202510774435,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95803,49166,469.3276828491801,4669,47.55592204837009,3740,38.41215828314353,1466,14.905587507698089,77.3497797498425,79.68386497860426,63.33168066437421,65.0604029210222,77.16308015318673,79.49948492226144,63.26130957348373,64.9930802732117,0.1866995966557709,184.3800563428175,0.0703710908904824,67.32264781049935,241.0276,169.6004785111832,251586.69352734252,177030.44634425145,559.07637,377.940522397919,582943.0811143701,393871.91674365,503.91405,247.78258602084165,521668.2358590024,255382.50098141804,2139.16556,1017.1611848188612,2198988.5494191204,1028043.0979838212,849.78713,394.7490625109336,869446.9797396741,394501.69707032345,1416.96432,606.2113784466254,1442564.7422314542,602151.4326036493,0.38139,100000,0,1095580,11435.75879669739,0,0.0,0,0.0,48782,508.5331357055625,0,0.0,45475,470.4132438441385,1047395,0,37606,0,0,0,0,0,80,0.8246088327087878,0,0.0,0,0.0,0,0.0,0.04669,0.1224206193135635,0.3139858642107517,0.01466,0.3650401482396541,0.6349598517603459,22.830464183890832,3.963746822309454,0.3160427807486631,0.2772727272727273,0.2085561497326203,0.1981283422459893,11.397806793850686,6.296628541570438,15.67961320464239,11220.395893540175,43.219348782603575,12.939302833029698,13.425515983992632,8.660318142187661,8.194211823393585,0.5967914438502674,0.8206364513018322,0.7106598984771574,0.558974358974359,0.1417004048582996,0.766553480475382,0.9033613445378152,0.8828828828828829,0.751269035532995,0.1802325581395348,0.5187353629976581,0.750445632798574,0.6431095406360424,0.4939965694682676,0.1300527240773286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299633284032,0.0045220882719742,0.0067387906712403,0.0089709333631348,0.0115247685891567,0.0137162058958301,0.0157218597063621,0.0182211651337749,0.020707912139579,0.0228559145948269,0.0250228085821775,0.0270855793418553,0.0289856562644594,0.0308918476414074,0.0328024426473015,0.0347182756589756,0.036715765938286,0.0388955731651661,0.0410294239880309,0.04307176545305,0.0571801157999061,0.0711021884835367,0.084017231078829,0.0972067508774879,0.1093381112984823,0.1251136627968449,0.1362850444984248,0.1456805627986675,0.1550153274302254,0.1636938917788384,0.1751104406852709,0.1866538240928128,0.1965365705086368,0.2048159847847235,0.2132092491144699,0.221859073786838,0.2304679654549106,0.2379153314218249,0.245278096037571,0.2516454710912192,0.2568173933156008,0.2617466922249754,0.267250044344587,0.2719557593095771,0.276855693868142,0.2806566334001944,0.2835819031202378,0.2869066978351458,0.2905285745679236,0.2937719090166311,0.2907990314769976,0.28833984482474,0.2847248616917944,0.2818703642120787,0.2788294508039731,0.2748432482030891,0.2706482915573537,0.2699179535889163,0.2700528379069371,0.2710946408209806,0.2731042986044947,0.2742501280990106,0.2758714199294937,0.2771191530060722,0.2758249641319942,0.276839378238342,0.2787534289188654,0.283546276098473,0.2890438039746124,0.2902367442770495,0.2944384351901929,0.3015415268456375,0.306228157763355,0.3104860110698309,0.3133911098686049,0.3132530120481928,0.3153262518968133,0.3224970083765456,0.3237992444684295,0.3220015278838808,0.0,2.3910286659409925,51.10751900970547,136.94422684969734,185.4320520513953,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95796,48674,464.40352415549705,4651,47.26710927387364,3731,38.33145434047351,1398,14.165518393252327,77.41775944651599,79.74703928530649,63.37436231324406,65.0955782538585,77.22909837195662,79.56394556058245,63.3026224605031,65.02930670911871,0.1886610745593628,183.0937247240314,0.0717398527409614,66.27154473979147,240.11042,168.93984238056336,250647.64708338556,176353.75420744432,559.6401,378.4361728192537,583583.8448369452,394427.79742291296,497.42807,243.7235314259253,515995.7618272161,251902.0452365696,2137.419,1013.920580380327,2197151.1127813268,1024684.5502420972,865.60989,399.3371865351549,888762.3282809303,402146.1325942644,1359.97406,585.332491151316,1380204.7267109274,575486.0592556779,0.38012,100000,0,1091411,11393.074867426614,0,0.0,0,0.0,48845,509.22794271159546,0,0.0,44954,465.9275961418013,1056254,0,37889,0,0,0,0,0,91,0.949935279134828,0,0.0,1,0.0104388492212618,0,0.0,0.04651,0.1223560980742923,0.3005805203182111,0.01398,0.3592013174145739,0.640798682585426,22.96020468342976,4.084774044124543,0.2934870008040739,0.2851782363977486,0.2184400964888769,0.2028946663093004,11.440379160766271,6.179580917921541,14.873101552255235,11200.824869658389,42.790551295646125,13.129136012352795,12.349558016247055,9.082540059181996,8.229317207864273,0.5888501742160279,0.8355263157894737,0.691324200913242,0.5803680981595092,0.1030383091149273,0.7757417102966842,0.9417879417879418,0.8794788273615635,0.7227722772277227,0.1282051282051282,0.5059961315280465,0.7478559176672385,0.618020304568528,0.533442088091354,0.0965058236272878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021466397999169,0.0043080291526866,0.0064332173189516,0.0089577705104507,0.0113580899699015,0.0135286453031475,0.0156966670064213,0.0177186249693802,0.0200230996453284,0.0220461802996806,0.0242939880067654,0.0262695944073172,0.0283208947552375,0.0304743078934634,0.0324303700877527,0.0344168655035997,0.0367507037589004,0.0387542248118274,0.0406719441500966,0.0429676519276619,0.0572719399839317,0.0713942207167649,0.0849660869474059,0.0974912804134975,0.1102520618936768,0.1260209418551821,0.137290631522073,0.1462854469478676,0.1558228131769627,0.164248982215556,0.1756120122187325,0.1856997774368504,0.196423142075316,0.2049879341784868,0.2134891948011997,0.2235005199230071,0.2327154783267758,0.2401634926338483,0.2476613286824163,0.2539617205186252,0.2585149509718998,0.2635933944097566,0.2678683145059433,0.2722086681974742,0.2762140276868621,0.2796212028040831,0.2833108681543607,0.2865535662170564,0.290074364800661,0.2922666245874262,0.2887365512060315,0.2852517047871246,0.283118487937765,0.2798180326216835,0.2775705361636617,0.2735319252838481,0.2695150588643205,0.2684667908131595,0.270079060771606,0.2698728069397385,0.2698368350469378,0.2703740716791096,0.2705246753246753,0.2712115844477902,0.2722064405242176,0.2729363725642218,0.2729994633223173,0.2772289569634454,0.2803670107392347,0.2841989471202954,0.2887425581814902,0.2942754919499105,0.2972433578645378,0.3021382321939467,0.3058098262656454,0.3102918586789555,0.3151655119322555,0.3221639079531692,0.3191547006231374,0.3175210405508799,0.0,2.3964983260652017,49.36323567561341,136.97458328872085,187.01655957893195,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95721,49206,470.4610273607672,4636,47.26235622277243,3674,37.7973485442066,1395,14.166170432820383,77.3893283971574,79.74970971151117,63.35181630130408,65.09350163113054,77.20789541272939,79.57395959565143,63.28261255432033,65.02922038269537,0.1814329844280138,175.7501158597421,0.0692037469837458,64.28124843516514,241.35078,169.7432936837649,252139.84392139656,177331.30001124612,560.31353,378.7603268942384,584777.3738260152,395108.42126595415,502.49623,247.010815907674,521975.27188391256,255695.39504993628,2117.01196,1007.0683834745572,2178346.444353904,1018802.1999384856,869.37166,395.6972272805625,888129.5535984789,393405.5091974136,1360.38794,582.0980977621281,1381791.1639034275,572412.1570652104,0.38247,100000,0,1097049,11460.901996427116,0,0.0,0,0.0,48878,510.02392369490497,0,0.0,45356,470.7744382110509,1046394,0,37587,0,0,0,0,0,83,0.8671033524513951,0,0.0,2,0.0208940566855757,0,0.0,0.04636,0.1212121212121212,0.3009059534081104,0.01395,0.3730912092447379,0.6269087907552621,22.88865498701767,4.037124524705342,0.3062057702776266,0.2917800762112139,0.1956995100707675,0.2063146434403919,11.201502580135251,6.058548907398642,14.893396115868455,11296.238378403672,42.11019262127933,13.155717829849555,12.781774746860853,7.965632290825398,8.207067753743523,0.5958083832335329,0.8274253731343284,0.6817777777777778,0.6105702364394993,0.1266490765171504,0.7689625108979947,0.93446088794926,0.8817891373801917,0.7540106951871658,0.132183908045977,0.5172140878512069,0.7429048414023373,0.604679802955665,0.5601503759398496,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306997376869,0.0045303901000334,0.0068470223060771,0.0091284790268371,0.0115591069903623,0.0137817315717688,0.0156937877058535,0.0178261668129221,0.0198841284600529,0.0221837939608509,0.0243572533789668,0.0267167348948875,0.028534730785039,0.0306642374085168,0.0327647374283239,0.0345269467266056,0.0366087235606539,0.0386909392666355,0.0407554465325128,0.0426901681355084,0.057827853018263,0.0726176898366625,0.0863819432790736,0.0993491677969487,0.1120633314359201,0.1270489202851039,0.1372247443676015,0.1473572150955447,0.156880969168643,0.1656141103307779,0.1774073715153277,0.1883510897193229,0.1986912616715762,0.2075370621419512,0.216010472701671,0.2250058145330099,0.2333084107977815,0.2417123965455199,0.248726587936335,0.2544092720692656,0.2599405704771705,0.2652851315497271,0.2703459851771297,0.2739862115191267,0.2777804741912781,0.28083776333924,0.2853392341446949,0.2882607038495743,0.2918116326293053,0.2951519222411,0.2921610738255034,0.2890324882010756,0.2854036613593322,0.2818946640543966,0.2791227654788682,0.2754075879932957,0.2714216048702984,0.2718277256129369,0.2723586890140462,0.2720403022670025,0.2718121429767597,0.2719652952261306,0.2733781505609091,0.2741383904778824,0.2742644249140237,0.2753978283857323,0.27834179357022,0.2836994004162912,0.2875939198781205,0.2925646340986428,0.2970955849294128,0.3008556879626227,0.3052841227360428,0.3091725945338824,0.3145483242038808,0.3157649253731343,0.3176981867226135,0.3229456133386264,0.3200883002207506,0.3215248363496342,0.0,2.2841734697458844,49.59838702912278,131.30452059909567,184.76864962997053,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95663,49127,469.8890898257425,4736,48.13773350198091,3761,38.62517378714864,1383,13.976145427176652,77.35982293729873,79.73582332181162,63.33991942654043,65.0899488888305,77.18039550760746,79.56393082598571,63.2705109345462,65.02645902806128,0.1794274296912732,171.89249582591515,0.0694084919942312,63.48986076922358,239.88954,168.72304647803196,250764.9979615944,176372.11012994955,557.62687,376.9613127489066,582229.8380774177,393374.6786934128,499.67601,245.02447239211253,518525.3650836792,253071.9499232091,2133.492,1016.21041190869,2193458.1604172983,1025583.1883839,844.28045,389.8702145647716,866339.8283557906,391416.0609839152,1339.17164,578.7501827553577,1356365.5331737453,568786.648214617,0.38212,100000,0,1090407,11398.408998254288,0,0.0,0,0.0,48717,508.5247169752151,0,0.0,45058,467.1503088968567,1055110,0,37812,0,0,0,0,0,89,0.9303492468352446,0,0.0,0,0.0,0,0.0,0.04736,0.1239401235214068,0.2920185810810811,0.01383,0.3524041387705417,0.6475958612294583,23.19303974802473,4.044061140396616,0.3257112470087742,0.2773198617388992,0.2087210848178675,0.1882478064344589,11.579053780454869,6.326302033870737,14.778403792919915,11298.837306133908,43.20921031420341,12.89735843557414,13.931114537558974,8.633577746081638,7.747159594988658,0.5950545067801116,0.7929050814956855,0.7175510204081633,0.5834394904458599,0.1045197740112994,0.7601769911504425,0.9117647058823528,0.8619718309859155,0.7027027027027027,0.1351351351351351,0.524135309768149,0.7054908485856906,0.6586206896551724,0.5466666666666666,0.0964285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0048651442819351,0.0070511844975396,0.0093233937965915,0.0116520253782332,0.0138022291210748,0.0158856316041532,0.0179467820266906,0.0200106233018039,0.022076274654227,0.0240539266908435,0.0262528853552192,0.0283373761460346,0.0304777594728171,0.0322966630563721,0.0344695716884405,0.0365562008882815,0.0385225752248187,0.0404749280018298,0.0427514330380406,0.0573473332288565,0.0718107663794096,0.0851316176161887,0.0983986027230066,0.1106118617430834,0.1253901909951854,0.135223497192353,0.1458945843453065,0.1554384201691453,0.1647683967580913,0.1770937739122937,0.1875568551007147,0.1981304546542756,0.2067965415344204,0.2144422299789687,0.2244079661505062,0.2331823051513257,0.2411653628270839,0.2482253418910031,0.2539568098328011,0.2600441654237915,0.2657749821702073,0.2704383921285729,0.2752965680700032,0.2791439311264702,0.2823650967416573,0.2861602627339818,0.2892852608861241,0.2922345524306587,0.2953279152781253,0.2919127913220921,0.2883657080101585,0.2853989455184534,0.2827114248667339,0.2803777047627505,0.27713692819433,0.2737916778438767,0.2747065660451487,0.2748593829896029,0.2753796037524254,0.2757404400649459,0.2764672319830011,0.2767683931663155,0.2776011207222432,0.2773067093414861,0.278356646068723,0.2802639370611623,0.2852474323062558,0.2892097317183216,0.2925306314797361,0.2969123281496507,0.3032363483027619,0.3063170441001192,0.3081117927743694,0.3160399365494075,0.3187943262411347,0.3198484848484848,0.3164607413312076,0.3107209364192604,0.3223981900452489,0.0,2.624640957090114,48.64369862278672,140.53298171291442,190.1064880536973,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95858,48880,466.75290533914745,4647,47.45561142523316,3652,37.55555091906778,1289,13.175739114106282,77.34109898624328,79.63187909857085,63.34986309044478,65.04409576308619,77.17772969327886,79.47128107611942,63.287559308987625,64.9846368046183,0.1633692929644183,160.59802245142407,0.0623037814571532,59.458958467885736,240.3841,169.1005031682566,250771.03632456344,176407.29325487348,556.43583,376.5308716521766,579928.5505643764,392250.0547770441,495.38789,243.6932141749392,512716.6538004131,251130.236932547,2080.64312,996.8514762348904,2141025.6420956,1010409.6890648569,857.69314,397.9718353436057,878646.1849819525,399084.48324537824,1248.2866,538.1461942830845,1276228.588119927,538628.1905172132,0.38037,100000,0,1092655,11398.683469298338,0,0.0,0,0.0,48523,505.6333326378601,0,0.0,44784,463.1746959043585,1053870,0,37876,0,0,0,0,0,83,0.8658640906340629,0,0.0,0,0.0,0,0.0,0.04647,0.1221705181796671,0.2773832580159242,0.01289,0.3751547668179942,0.6248452331820058,22.80742396634974,4.016457770870562,0.3085980284775465,0.2965498357064622,0.2029025191675794,0.1919496166484118,11.63289734439862,6.376382767177699,13.82660859207986,11236.216695299294,42.20447482289328,13.293182721060958,12.929690907779,8.239879478342454,7.741721715710866,0.6048740416210295,0.7922437673130194,0.7089618456078084,0.6059379217273954,0.1469329529243937,0.7658623771224308,0.9348314606741572,0.8395061728395061,0.7473684210526316,0.16875,0.533754441373865,0.6927899686520376,0.6562889165628891,0.5571687840290381,0.1404805914972273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002592273808921,0.0047623390177422,0.0069378936798222,0.0090259305135338,0.0110584839306405,0.0130871936823251,0.0150982609492955,0.0172200969140525,0.019396155496088,0.0214920670642511,0.0235488133405717,0.0258658707937191,0.0277723570555549,0.0299504084614276,0.0321899246772249,0.0339556821583015,0.0361072048970138,0.0383758638195588,0.0403633532312483,0.042550092590666,0.0574324324324324,0.0717226820499958,0.0856891477171556,0.0985949510648128,0.1104337113434627,0.1258131970260223,0.1364199688582414,0.1467220869787071,0.156685125316091,0.1653467362532551,0.1764623595747428,0.187807488943914,0.1979740671905398,0.2062947379924594,0.2148529444114476,0.2235833591777059,0.2325910886008166,0.2401165210153974,0.247109810194797,0.2536698193143564,0.259625059271167,0.2649163003834284,0.2701398824656206,0.2742762039320865,0.2778418261471063,0.281322362910775,0.2846195196959658,0.2872353942720642,0.2903204962522616,0.2924717294461871,0.2893778309431324,0.28657146780173,0.2831626912691269,0.2797037208160672,0.2774396579877089,0.2736875898125783,0.2703889784181755,0.2704412825388499,0.2701146479402669,0.2707123067298239,0.2720231062097938,0.2732713159921787,0.2740956288728856,0.2746825254873904,0.2746097789749633,0.2758001093721517,0.277285381512414,0.2809922538965723,0.2857043284310309,0.289371086519907,0.2944948742266179,0.2948138018093835,0.2997256515775034,0.3055597295266716,0.3086247086247086,0.3122362869198312,0.3100997883277895,0.3149543831812773,0.3242807206238236,0.3248216297408937,0.0,2.105274232536098,48.442115906849175,140.79161396606193,178.76021230440466,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95637,48761,465.2278929702939,4741,48.307663352049936,3755,38.62521827326244,1422,14.45047418885996,77.31769350596971,79.73869067841198,63.289715480586615,65.08061784164559,77.13032219417717,79.5574028359406,63.218405406317046,65.01455858529133,0.1873713117925461,181.2878424713915,0.0713100742695687,66.05925635426502,240.42898,169.12478791560315,251396.53063145012,176839.478408069,559.76522,378.2031875484876,584650.0622144149,394806.18764501216,503.69265,247.06064448829017,522662.5469222163,255237.44757553516,2156.65512,1020.0256443327822,2220033.7526271213,1031646.7163177244,867.2927,390.9056309418032,893706.5152608299,395586.468565308,1387.81912,595.6248973235239,1411936.6144902078,588419.3418988074,0.37904,100000,0,1092859,11427.11502870228,0,0.0,0,0.0,48902,510.6601001704361,0,0.0,45463,471.3970534416596,1046933,0,37577,0,0,0,0,0,85,0.8783211518554535,0,0.0,0,0.0,0,0.0,0.04741,0.1250791473195441,0.2999367222105041,0.01422,0.3731494625836544,0.6268505374163456,23.08056459467731,4.115201538176194,0.3022636484687084,0.2806924101198402,0.2103861517976032,0.2066577896138482,11.477485307702608,6.223324389783975,15.161007415134728,11207.10609602596,42.96456700239392,12.947947112430048,12.793690915295077,8.791455065887876,8.431473908780918,0.5856191744340878,0.801707779886148,0.7066079295154185,0.5835443037974684,0.1172680412371134,0.7547826086956522,0.9084967320261438,0.8422712933753943,0.7722772277227723,0.1627906976744186,0.5109404990403071,0.719327731092437,0.6540342298288508,0.5187074829931972,0.1043046357615894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0046850281912951,0.0070862944162436,0.0094614782670555,0.0117106026229308,0.0139262428687856,0.0160467631036663,0.0185126533781505,0.0206318504190844,0.0225506877959777,0.0246984550633885,0.0269806179630867,0.0291936978683966,0.031380235197029,0.0334555974582838,0.0354836706817335,0.0375854096032017,0.0397000166195778,0.0417217371395269,0.0436968129484398,0.0581577627288688,0.0724696907778231,0.0858070208609062,0.0984053758004718,0.1104387771265642,0.1259783310916004,0.1366708465282353,0.1464888718342287,0.1557773356438397,0.1648836759682928,0.1766495162281979,0.1873760632822235,0.1976405999803928,0.2062360362728348,0.2142833526202678,0.2228988497332313,0.2306944413401578,0.2386449382271125,0.2457536672873427,0.2520368057385784,0.2565619608887448,0.2622513456587877,0.2670116766537979,0.2711409074009666,0.2747753772082335,0.2784398299340686,0.2821282503470789,0.2859975846945909,0.2896500854081474,0.2938523022541118,0.2906250840890133,0.2863658844864538,0.2822607864094054,0.2789510862513875,0.275957579168765,0.2733816247936915,0.2696828004549476,0.2690904927792225,0.2682379349046015,0.2681586040573131,0.268559317307156,0.2693520894966791,0.2705948117016211,0.2706361143059365,0.2718536666587379,0.2722533357421219,0.2736492196743478,0.2776261090773717,0.2826441124475718,0.2854676033122719,0.2878952122854561,0.2921123346857052,0.2950031230480949,0.2984198645598194,0.3018499581667751,0.3099367236934614,0.3126513317191283,0.3146936347412254,0.3267407206719046,0.334841628959276,0.0,2.45070929032061,49.66359911681045,133.293647229077,193.09384746306296,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95711,49123,469.4444734669996,4659,47.47625664761626,3768,38.8043171631265,1383,14.042273092956922,77.34880342590687,79.70713525086761,63.338894218876014,65.07741799726779,77.16596942149326,79.53025032649286,63.268113420758645,65.01211750000134,0.1828340044136069,176.8849243747468,0.0707807981173687,65.30049726644904,240.27014,169.0866444038398,251036.20273531775,176662.8607013194,561.25126,378.8407284018965,585803.679827815,395220.06139678566,500.92837,245.2391673896701,520728.5473978958,254170.82887080705,2161.19124,1022.0978548813912,2225313.07791163,1035270.3901226114,854.73758,389.6322137720281,877345.5193237977,391579.2891098109,1341.15464,584.2521983014516,1362040.0371953067,573821.0778154588,0.38084,100000,0,1092137,11410.73648796899,0,0.0,0,0.0,48883,510.108555965354,0,0.0,45243,470.0609125387887,1051282,0,37750,0,0,0,0,0,91,0.940330787474794,0,0.0,0,0.0,0,0.0,0.04659,0.1223348387774393,0.296844816484224,0.01383,0.3734840698869476,0.6265159301130524,22.89370408573228,3.972183492872962,0.3057324840764331,0.3012208067940552,0.1934713375796178,0.1995753715498938,10.877473104099522,5.833566849286734,14.833231085680852,11232.318477000732,43.10182227388512,13.793082841672923,13.05911354094264,8.095416768209812,8.154209123059738,0.5804140127388535,0.7964757709251101,0.7022569444444444,0.522633744855967,0.1236702127659574,0.7502222222222222,0.9188034188034188,0.8615384615384616,0.6547619047619048,0.1463414634146341,0.5081346954218691,0.7106446776611695,0.6396614268440145,0.483065953654189,0.1173469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999270908225,0.0044601224506345,0.0065851554969306,0.0090512906469996,0.0113164958516349,0.0134168066371456,0.0157481117555322,0.0177197101153414,0.0198050156355386,0.0220052403176942,0.0240967560088146,0.0260484019951967,0.0284172107130005,0.0308858048840752,0.0330407154867393,0.0351013153951868,0.0369752945805463,0.0391583141380813,0.0408833804691399,0.042836749366983,0.057284595300261,0.0710458008875492,0.0843694586966329,0.0973328423378399,0.1095241611375407,0.1246455926537175,0.1355478906871849,0.1453945266744755,0.1550478714310138,0.1643241851382958,0.1754185610549677,0.1872456930135919,0.1973959013183657,0.2060113533201351,0.2140711479847273,0.2229806094182825,0.2309891877401483,0.2385766230257455,0.245144225857352,0.2526115641894987,0.257993958962608,0.2635862891625443,0.2692262186464742,0.2733467461857201,0.2772161883380862,0.2810057722366494,0.2849311305086227,0.2877329744553349,0.2909224749137964,0.2935230398673282,0.2904600002687702,0.2869461340949347,0.2837803643724696,0.2812107927260142,0.2780322910643597,0.2742292598757043,0.2703282828282828,0.2700701289784709,0.2712859159961213,0.2723846099139463,0.2725359065591177,0.2735700817096166,0.2744955121930902,0.2755528856850442,0.2763585916570991,0.2787161286979949,0.2798797436042884,0.284217767910191,0.2879896835354802,0.2913578299952689,0.296507677673597,0.3008160237388724,0.3062318657751987,0.3113142857142857,0.3142910833411632,0.3201324033573708,0.320227307633236,0.3247811036448788,0.3252480705622932,0.3380605596013798,0.0,2.021538812203738,48.93025799959853,135.5137331884401,197.2546229253904,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95631,48798,466.9824638454058,4613,47.05587100417229,3619,37.1950518137424,1389,14.106304441028536,77.26744378178137,79.68251838305709,63.28338998351626,65.06946819241924,77.08635171731207,79.50676098703097,63.21532069576222,65.00595916042744,0.181092064469297,175.7573960261141,0.0680692877540352,63.50903199179925,241.26366,169.66612830093672,252285.5768526942,177417.05922027037,560.23834,379.4927823987368,585173.6570777259,396171.1175149656,499.44375,245.12610543015643,518432.8617289373,253343.82759539213,2103.82968,1003.820912346112,2162929.761269881,1012990.5596591148,871.26357,402.83369516865474,890760.2555656639,401184.2735441518,1359.24138,582.3013762492059,1382103.2092104023,575101.1842067719,0.3799,100000,0,1096653,11467.526220577009,0,0.0,0,0.0,48846,510.0751848250045,0,0.0,45145,468.1431753301754,1043008,0,37454,0,0,0,0,0,89,0.9306605598602964,0,0.0,1,0.0104568602231493,0,0.0,0.04613,0.1214266912345354,0.3011055712117927,0.01389,0.3590965602983837,0.6409034397016162,23.182889023568425,4.127399713515618,0.303951367781155,0.2799115777839182,0.1992263056092843,0.2169107488256424,11.509741955281823,6.124349833047855,14.885814646259687,11216.225318165678,41.83342560685357,12.466788236689052,12.590499259385837,8.16845164703552,8.607686463743155,0.5893893340701851,0.805528134254689,0.7109090909090909,0.6019417475728155,0.1286624203821656,0.7539964476021315,0.8977272727272727,0.8658536585365854,0.7789473684210526,0.1309523809523809,0.5150421179302046,0.7347294938917975,0.6450777202072538,0.5386064030131826,0.1280388978930308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365979694814,0.0044412897992293,0.0066906270305393,0.0089525241850256,0.0111293095555397,0.0134435979956817,0.0154985011317984,0.0178664406987309,0.0198877289133835,0.0219352592395367,0.0240295369468232,0.026143320869458,0.028485309851041,0.030602466744289,0.0322350901096178,0.0343430166442675,0.0363109108798094,0.0384854900983933,0.0403578115248595,0.0425354462051709,0.0576364358422339,0.07195224130708,0.0853530474230268,0.0982510450558591,0.110297067331039,0.1255347536956245,0.1361507333807738,0.146312872975277,0.1556175929491293,0.1641608316508441,0.1760741092226727,0.1859570826608317,0.1964260450335738,0.2055454038143799,0.2139381797366914,0.2231096439727939,0.2312284499592711,0.2390631854843245,0.2466092364965326,0.2527182942059373,0.2582437296727971,0.2624741279511676,0.2678138202818968,0.2722890988441801,0.2762195270155312,0.2806048198120421,0.2838999486980568,0.2876794182335965,0.2905563680130453,0.2931200591255229,0.2897551251313273,0.286610101899091,0.2833955092560005,0.2799295266152558,0.2771778685480876,0.2728663667798892,0.2700299083759277,0.2698267107806204,0.2700966274135551,0.2704916573178766,0.2707098655798388,0.2726482728655225,0.2737027043985693,0.2742852049116395,0.2755354102213588,0.277339786121302,0.2786838746277124,0.2838197116136499,0.2878771985034442,0.2926539345431492,0.2948776479181884,0.3002509209332123,0.3028575049103466,0.3077629063097514,0.3113997929021933,0.3146094215861658,0.3191260193875981,0.3233973050224581,0.3300478738383554,0.3202380952380952,0.0,2.365867718936017,48.72440308387533,135.28559730427486,178.70855423696227,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95848,48828,466.0608463400384,4695,47.89875636424338,3734,38.47758951673483,1407,14.356063767632085,77.40182060844235,79.71590839154942,63.36325590393732,65.07585789240458,77.22247136059298,79.53940890342527,63.295369227302565,65.01140848906121,0.1793492478493732,176.49948812415062,0.0678866766347567,64.44940334337446,239.6724,168.58581214696213,250054.66989399883,175888.71144620873,559.29848,377.7304045551345,583053.3657457641,393620.0176896071,497.77776,243.991754701168,516861.196895084,252621.7418515292,2144.38988,1014.485463064,2210265.3785159835,1031415.0979300556,851.70654,388.8841367536903,876183.6032050748,393312.3870646132,1366.05462,583.3506436947473,1394629.0793756782,580847.5990236108,0.37931,100000,0,1089420,11366.121358818127,0,0.0,0,0.0,48806,508.711710207829,0,0.0,44899,465.8730489942409,1058225,0,38041,0,0,0,0,0,92,0.9598531007428428,0,0.0,1,0.0104331858776395,0,0.0,0.04695,0.1237773852521684,0.2996805111821086,0.01407,0.3560327198364008,0.6439672801635992,23.41384397750588,4.026151693059025,0.306373861810391,0.2905731119442956,0.2024638457418318,0.2005891805034815,11.043161724167154,5.889646847675049,14.949252110510326,11195.63797979056,42.94570740285692,13.340726336158784,13.051745540511908,8.35343626019024,8.199799265995987,0.5859667916443492,0.8055299539170507,0.6888111888111889,0.5753968253968254,0.1214953271028037,0.7486910994764397,0.9104477611940298,0.8385093167701864,0.7213114754098361,0.1686046511627907,0.5139103554868625,0.7256493506493507,0.6301703163017032,0.5287958115183246,0.1074523396880415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023187994896615,0.0044492191063049,0.0066956133587631,0.0090496358816539,0.011081627880969,0.0135897227085793,0.0158079804311267,0.0179526433966115,0.0202383629413087,0.0224558099546585,0.0244784993080826,0.0264913577205731,0.0285960981025019,0.0305080208397685,0.0327777548578736,0.0345835916511675,0.0364673367354332,0.0383347158855246,0.0406414557389308,0.0425954834009782,0.0570168119811438,0.0706676841698115,0.0842990967579688,0.0973119465540604,0.109836756187467,0.1258488672968263,0.1363438946621328,0.1454553185156839,0.1559214949680366,0.1641994087150263,0.1755380362885444,0.1863985564403721,0.1970821157376728,0.2058470076692813,0.2142252607744644,0.2230904603260689,0.2308558684137162,0.2392670451351807,0.246447647452399,0.2518823664034786,0.2576542410507816,0.2628909354401383,0.2676983826728459,0.2716080432100983,0.2760516542466684,0.2795115165392522,0.2828771403574553,0.2861207433093269,0.2898284709744969,0.2925358196375895,0.2893679897911209,0.286596579835854,0.2839292984598969,0.2806106299099306,0.2775962263592944,0.2737574158520032,0.2702046861951058,0.2695547140245495,0.269379087743141,0.2693058068177787,0.2704965304262087,0.2704425959350231,0.2703314974540164,0.2711503482542922,0.2711190476190476,0.2732597141235358,0.2736162777589899,0.2776348020216427,0.2830051562445929,0.2861959462108441,0.2909566315030205,0.296450389719823,0.3004990642545228,0.3056015660292124,0.3104753114905399,0.3137163500757488,0.3154159746338517,0.3149558941459502,0.3161744784611216,0.316628701594533,0.0,1.8177241071272263,50.27297820918347,137.35764812358144,187.4055340031593,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95697,48449,463.0030199483787,4697,47.7757923445876,3723,38.329310218711136,1422,14.493662288264,77.32145341825886,79.70938634867298,63.3143933609397,65.08054051959567,77.14297788024172,79.53524035994826,63.24630530399568,65.01681733346429,0.178475538017139,174.14598872471743,0.0680880569440205,63.72318613138361,241.13562,169.59270798884648,251978.24383209503,177218.41644863106,562.40429,379.99529065375737,587158.1658777182,396547.1756207168,493.79922,242.25294525247443,512664.4199922673,250571.74895323557,2126.0476,1008.3060013812022,2188705.7692508646,1020967.8786583608,865.89022,393.8781442725889,889318.6829263195,396194.30436506576,1382.52242,588.553209900735,1408860.1314565763,583384.0144409257,0.37767,100000,0,1096071,11453.556537822502,0,0.0,0,0.0,49174,513.2762782532368,0,0.0,44646,463.201563267396,1047083,0,37575,0,0,0,0,0,90,0.9404683532399134,0,0.0,0,0.0,0,0.0,0.04697,0.1243678343527418,0.3027464338939749,0.01422,0.3569237062794027,0.6430762937205973,23.001704604768456,3.976540520595199,0.3056674724684394,0.2879398334676336,0.2027934461455815,0.2035992479183454,11.466880423829174,6.29833707280522,15.15075230632414,11160.098416104023,42.79611284574229,13.205202972289438,12.918076034640745,8.529224560556667,8.143609278255447,0.5989793177544991,0.8236940298507462,0.7012302284710018,0.5986754966887418,0.1279683377308707,0.7738607050730868,0.9042553191489362,0.8909657320872274,0.7619047619047619,0.1790123456790123,0.51953125,0.760797342192691,0.6266829865361077,0.5357798165137615,0.1140939597315436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020568209451244,0.0043200486766048,0.0066083319798603,0.008709261084745,0.0110084649194204,0.0133240974655692,0.0157255473857042,0.0178782928323463,0.0197098723151943,0.0221098532151411,0.0243389823557756,0.0260120355727166,0.0280832416084599,0.0299445623724831,0.0321638332352728,0.0345330286706851,0.036522964098527,0.0384826942037258,0.040185953636392,0.0424405394701186,0.0571037623514174,0.0711534032619391,0.0843513853904282,0.0972817107437146,0.109038343849579,0.1239468224734324,0.134139351222826,0.1440668037108438,0.1533874122286703,0.1622494181244838,0.174483991898996,0.1860203297357567,0.1964237157245565,0.2053340918041395,0.2129648981926584,0.2218912964049646,0.2302613234588831,0.2379437844884748,0.2457626157840436,0.2517572177576299,0.2569370577625676,0.2622487143525012,0.2674285173486649,0.2716732542819499,0.2755225909830294,0.2791810721360286,0.2826418395401149,0.2860281418266788,0.2887508555341762,0.2922007843963043,0.2885865477597507,0.2852421699303384,0.2818313280076375,0.2804020968949824,0.2778724602457134,0.2732481740671699,0.2688633815936972,0.269175392670157,0.2692517192074624,0.2688778232260359,0.2698845084612944,0.2714521776763583,0.272823911955978,0.2731038168618893,0.2743237739284602,0.2752658537219521,0.2768359974970135,0.2807231935827536,0.2844020676166527,0.2896179172745554,0.2914012019339388,0.2946867565424266,0.3001573811772112,0.2999618757148303,0.3044212897775274,0.3067142008318479,0.3084569506040679,0.311804008908686,0.320393657736468,0.3201520912547528,0.0,2.2735646223476604,50.48916175201142,132.8260556252817,188.5073914992263,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95714,48484,461.8864533923982,4643,47.38073844996552,3701,38.16578556950916,1413,14.511983617861546,77.3455376358958,79.73395507333358,63.32130932583449,65.0880768537654,77.16915490822059,79.55704393123315,63.25499769094454,65.02299226051545,0.1763827276752039,176.91114210042258,0.0663116348899492,65.08459324994931,240.19666,168.8402945628572,250952.25358881667,176400.6113660041,558.25244,377.7706090255394,582762.2186931901,394198.8346799209,496.72769,244.25959734074195,515247.1007376141,252397.2105273836,2136.8632,1011.9160487797492,2205562.362872725,1030266.009966932,843.9419,382.8096256415628,869051.5703031949,387290.3054658282,1374.48922,584.1133585731142,1413228.221576781,590635.5175012796,0.3782,100000,0,1091803,11406.920617673486,0,0.0,0,0.0,48805,509.39256535094137,0,0.0,44818,464.6028794115803,1053445,0,37780,0,0,0,0,0,92,0.9611968990952212,0,0.0,2,0.0208955847629395,0,0.0,0.04643,0.1227657324167107,0.3043290975662287,0.01413,0.3598923841059602,0.6401076158940397,23.183562519032325,3.977822842788553,0.3072142664144826,0.2834369089435288,0.2010267495271548,0.2083220751148338,11.40921872288595,6.31557100949059,15.067839870962294,11166.005330352364,42.50490002661564,12.937172198228414,12.939113792341004,8.276704728128816,8.351909307917396,0.5733585517427722,0.7988560533841754,0.6807387862796834,0.571236559139785,0.1102464332036316,0.7445454545454545,0.9101654846335696,0.8654434250764526,0.7441860465116279,0.1292134831460674,0.500961168781238,0.7236421725239617,0.6061728395061728,0.5192307692307693,0.1045531197301855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0046756934935848,0.0072287933397634,0.0096038537368645,0.0117909172295922,0.014167854960277,0.0164385796740837,0.0187902739907886,0.0207583442408376,0.0228566747224839,0.0249833341879903,0.0271669354258892,0.029542158264501,0.0316032437890918,0.0336835153041216,0.0355525690065129,0.0374667232931768,0.0397177105495303,0.0418759423906826,0.0437998791440061,0.058021261931118,0.0718307206094727,0.0848960574228957,0.0977654806741431,0.1101068373814822,0.1258315266247157,0.1356108429261047,0.1458222402078763,0.1558227780450002,0.1646954020521186,0.1758334141688492,0.185963658415091,0.196112362730053,0.2041702676979291,0.2122922856828436,0.2215501196490295,0.2299847130630781,0.237228658193679,0.244751675721042,0.2501573496595525,0.2557932469935245,0.2621075630644841,0.2670369932632077,0.2702214459186237,0.2728066240740965,0.277117320908275,0.2807346092862404,0.2841178634397554,0.2872418641247565,0.2905687639563903,0.2871828550749889,0.2832665015259549,0.2806124595128927,0.2779231609823431,0.2751957453094992,0.2708999543170397,0.267630276472999,0.2680734725951149,0.2686998995864322,0.2685791571753986,0.2688290577530315,0.2697251685659083,0.2703504775439403,0.2705782842897208,0.2725705666882137,0.2746237675142708,0.2754443563908072,0.2804976924036422,0.2835177068113824,0.2875580388762099,0.2910400720396218,0.2951301427371956,0.2986085227978631,0.3024357239512855,0.3093081878442722,0.3165954415954416,0.3197683279987807,0.3204531660934655,0.3271789302199294,0.3330772185939301,0.0,1.9464407938135837,47.75745610178842,143.74563559420915,182.70825234810985,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95608,48763,465.4840599113045,4729,48.3013973726048,3778,38.898418542381386,1425,14.4548573341143,77.23812690061078,79.66771961827598,63.25655152000609,65.0535011601321,77.0529609089046,79.4888895494095,63.18584834845033,64.98812178778834,0.1851659917061852,178.8300688664748,0.0707031715557633,65.3793723437559,239.72498,168.7365736509888,250736.90486151783,176487.4967209112,560.5996,378.45485858028695,585750.3765375282,395239.1797783941,494.36416,242.26567713581312,513480.2736172705,250645.8023223924,2148.26284,1012.45319032415,2211748.974981173,1023836.0512971188,838.03669,380.4505684761184,861411.6078152456,382892.50777521246,1377.285,588.858352559395,1397895.5526734164,579537.6146628495,0.38049,100000,0,1089659,11397.132039159902,0,0.0,0,0.0,48935,511.1810727135804,0,0.0,44614,463.0365659777424,1047923,0,37632,0,0,0,0,0,92,0.9622625721696928,0,0.0,1,0.0104593757844531,0,0.0,0.04729,0.1242871034718389,0.3013322055402833,0.01425,0.3633968382650993,0.6366031617349007,23.46898856267628,4.007235844134195,0.3057173107464266,0.2887771307570143,0.2138697723663314,0.1916357861302276,11.257684448809412,6.189261486491346,15.285431682333607,11240.4133840675,43.22535990232068,13.409475220645383,12.962273107876282,8.928268049456747,7.925343524342279,0.5923769190047644,0.8249312557286893,0.6831168831168831,0.5742574257425742,0.117403314917127,0.7790492957746479,0.9353448275862069,0.8397435897435898,0.8190954773869347,0.1614906832298136,0.512112036336109,0.7432216905901117,0.6251482799525504,0.4942528735632184,0.1047957371225577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023714934327874,0.0046960737577718,0.0067825521890991,0.0091682506124025,0.011205422569614,0.0132950273541367,0.0154214901320822,0.0178053364932783,0.0201603829552196,0.0223797281656816,0.0246039563325945,0.026643239522004,0.029033984479529,0.0310612152326756,0.0329219806888005,0.0350975218583475,0.037195223088406,0.0393920821083905,0.0413795257229705,0.043483704043734,0.0582749607945635,0.0724982446579965,0.0864248116745989,0.0990784138185265,0.1109198437004963,0.1267053639522074,0.1373463512063488,0.1473936680524464,0.157577119378551,0.1668976185105217,0.1779938068469946,0.1881660396994894,0.1978055504102335,0.206678571819845,0.2147122991824051,0.2227658512231652,0.2312251859307722,0.2385279725798814,0.2457815982171283,0.251369131677746,0.2565283465389033,0.2608940315830197,0.2665369880561255,0.2710548766566935,0.2750204012033665,0.2793843341197979,0.2833166081284495,0.286659696011425,0.2895655672806095,0.2926858291244678,0.2890963294708017,0.2859446941082407,0.2841711908622999,0.2811215926847618,0.2784004756949606,0.2752467962474707,0.2719898605830165,0.2715968263876341,0.2712583143819571,0.2716595866204976,0.2718157840588114,0.2728653724747474,0.2735105292875217,0.2733013499944215,0.2741312741312741,0.2750688776836305,0.2766732087493244,0.2828260665141209,0.2868179116999336,0.2902489871376312,0.2966435657018617,0.2991250263546279,0.3035825739608039,0.3103604282913588,0.3139329805996472,0.3204516354324292,0.3263691986270706,0.3285205696202531,0.3370330265295073,0.3337112622826909,0.0,2.3980410467636517,49.20568026756716,136.45371564910604,194.66442853272812,fqhc1_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95726,49064,469.2560015042935,4639,47.22854814783862,3750,38.66243235902472,1458,14.907130769070054,77.33641368994157,79.71241749358603,63.332022412709286,65.08994296992422,77.15046914704854,79.52813441234777,63.26140916860655,65.02202983356324,0.1859445428930257,184.28308123826295,0.0706132441027378,67.9131363609855,240.05718,169.00035408824937,250775.0872281303,176545.71076849484,561.53699,379.5986127780117,586096.7971084137,396037.5892125285,502.13718,246.7726374508665,521339.3957754424,255303.49465349512,2430.71246,1160.6459206498976,2506713.452980381,1180198.631478401,869.66853,400.2932555409389,894488.2685999623,404260.1048324523,1414.80626,609.7500930226586,1447852.8508451204,610314.610325519,0.38224,100000,0,1091169,11398.867601278647,0,0.0,0,0.0,48957,510.89568142406455,0,0.0,45494,472.0138729289848,1052321,0,37771,0,0,0,0,0,85,0.8879510268892464,0,0.0,1,0.0104464826692852,0,0.0,0.04639,0.1213635412306404,0.3142918732485449,0.01458,0.3696907216494845,0.6303092783505154,22.912040057860903,4.010243110474065,0.3048,0.2917333333333333,0.1965333333333333,0.2069333333333333,11.516091841845634,6.311447393549869,15.696079119927782,11242.380899647307,43.29933974530184,13.544534424613882,12.991473279055354,8.24086783358511,8.522464208047493,0.5848,0.8171846435100548,0.7016622922134733,0.5617367706919946,0.1069587628865979,0.7619453924914675,0.9282786885245902,0.8562300319488818,0.7525252525252525,0.1329479768786127,0.504266873545384,0.7277227722772277,0.6433734939759036,0.4916512059369202,0.099502487562189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0041886834552074,0.0063861109701,0.0086897308724286,0.0107524694058167,0.012955003768358,0.0149807768792257,0.0172044108637941,0.0194452680114095,0.0217021886452511,0.0236686997078571,0.0257589601962978,0.0277340737312972,0.0298286090969017,0.0321528809641736,0.0341919212800264,0.0365615001501392,0.0381459234591723,0.0402527619859276,0.0424470323534926,0.0575662016539971,0.0716460384386018,0.0858527070815113,0.0984211411512424,0.1108241989881956,0.1267715786469948,0.137550881953867,0.1481012792836862,0.158170562493329,0.1666220313018886,0.1782189938122141,0.1886698601844743,0.198530929795395,0.2070995576429468,0.216005976971082,0.2243733622281437,0.2332323187307812,0.2406391873061536,0.247724309924616,0.2539942131085671,0.2590944809096792,0.2647759381640707,0.2695542273983605,0.2730513848178501,0.2764360709003176,0.2807515893803569,0.2842318210766867,0.2869622631926456,0.2896546375762589,0.2924119205472591,0.2886014333929459,0.2853802134918015,0.2823382034175041,0.2793444516641398,0.2764987225952112,0.2721735004668105,0.2694071871441225,0.2705143756351834,0.271195401906776,0.2710575073042115,0.2719445689526371,0.2736775793846093,0.2742405933580565,0.2741022053434606,0.2756997060159181,0.2768485915492957,0.2766477967741018,0.2816963304768183,0.286079048618398,0.2911006376490158,0.2935080350620891,0.298398291510945,0.2977449356605937,0.3043878490334458,0.3096135721017907,0.3127463863337713,0.317560301121524,0.3231608730800323,0.3233857840477482,0.3353383458646616,0.0,1.9454426822301216,50.979151841443006,140.4224918553573,184.37868981437643,fqhc1_100Compliance_implementation_low_initial_treat_cost,0 -100000,95604,48454,463.4847914313208,4570,46.51479017614326,3651,37.540270281578174,1386,14.08936864566336,77.26635035352784,79.70485529784668,63.26822878755484,65.07240056869412,77.0817134629938,79.52721860419972,63.19689432675609,65.00663759636349,0.1846368905340369,177.63669364696,0.0713344607987522,65.76297233063144,239.91066,168.68209011794164,250942.0735534078,176438.31860376307,554.33612,374.7005642741247,579192.3873478097,391296.9481131803,490.52038,240.6995460508901,509324.996862056,248754.04543172973,2386.57796,1121.6085933918494,2456764.5914396886,1133630.2386844165,827.45027,376.4909632967681,847976.8419731392,376281.8222007107,1346.0096,581.4969679196071,1369399.8995857914,573937.002356974,0.37894,100000,0,1090503,11406.457888791265,0,0.0,0,0.0,48433,505.94117400945566,0,0.0,44191,458.5163800677796,1054246,0,37803,0,0,0,0,0,88,0.920463578929752,0,0.0,0,0.0,0,0.0,0.0457,0.1205995672138069,0.3032822757111597,0.01386,0.358625026199958,0.6413749738000419,23.157106346453585,4.031321228218559,0.3075869624760339,0.2774582306217474,0.2111750205423171,0.2037797863599014,11.09522921956341,5.952920892281461,14.787266537077723,11195.006011906093,41.827207283480085,12.495733290806545,12.685808191295587,8.545152393644315,8.100513407733635,0.5798411394138592,0.8124383020730503,0.6705253784505788,0.5901426718547341,0.1155913978494623,0.7447199265381084,0.920704845814978,0.8299319727891157,0.7288135593220338,0.1219512195121951,0.5097580015612803,0.7245080500894454,0.6139927623642943,0.5488215488215489,0.1137931034482758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0044838955110322,0.0070582022403444,0.0093439889376931,0.0117363245862258,0.0138610026804733,0.0160638471587197,0.018331749486527,0.0204530572153556,0.0224408238549031,0.0244470672756196,0.0268283908105052,0.0289061374070947,0.0309625933105126,0.0327125489345439,0.0346950601187889,0.0364742586469594,0.038606549714891,0.0403838547846541,0.0423450390596481,0.0572713016204913,0.0714824673555364,0.0846971575033088,0.0974415150781027,0.1093870480496023,0.1242557789690022,0.1337932354004124,0.1433082626553582,0.152762463468682,0.1614456277605235,0.1734312963921974,0.1840259331938376,0.1948459334938079,0.2028201110952855,0.2115687722508183,0.2205657237936772,0.2298197010657074,0.2380786163876096,0.2451801274695811,0.251525439280635,0.2567719371388203,0.2624467238068474,0.2677459084341915,0.2723022703843111,0.276063629403687,0.2810029476696143,0.2836338592536939,0.2870270201473826,0.2901012402578908,0.2939043525269972,0.2908210611256808,0.2878242470872719,0.2849728543700244,0.2820239142663455,0.2786571526057351,0.274657461010891,0.2709053868384896,0.2712053205779248,0.2710406160556086,0.2712371721778791,0.2713582879697701,0.2726645236357899,0.274296341183108,0.2739829791026155,0.2758323146616812,0.2775930160049886,0.2785907089075152,0.2842752690871434,0.2884077235203582,0.2938849774543153,0.2979754517867657,0.3032912462359343,0.307982638233629,0.3109503353681513,0.3160285528877352,0.3200280112044817,0.3203737191078963,0.3256880733944954,0.3317984832069339,0.3288490284005979,0.0,2.57986994723735,46.73103207198339,134.00448332791584,188.2981913981128,fqhc1_100Compliance_implementation_low_initial_treat_cost,1 -100000,95716,48561,463.8409461323081,4679,47.84988925571483,3759,38.80229010823687,1392,14.240043461908146,77.34534288058313,79.71428141106506,63.32656324425341,65.07473115076615,77.16324808555042,79.53467670199868,63.25848053453901,65.00995397800847,0.1820947950327109,179.60470906638193,0.0680827097143961,64.77717275768669,240.06972,168.83960948125022,250814.61824564336,176396.4326562437,556.5216,376.3611869618871,580961.4693468177,392737.5433176137,498.50014,244.33161401544376,518101.9265326592,253125.265080223,2417.44927,1141.920382581232,2494883.133436416,1162264.8800422417,858.14548,396.6118262459141,885053.8154540516,402871.3180408232,1341.47536,572.558832504918,1372424.8192569686,571399.5203687132,0.37882,100000,0,1091226,11400.664465711065,0,0.0,0,0.0,48549,506.72823770320537,0,0.0,44925,466.6617911320992,1054219,0,37852,0,0,0,0,0,98,1.0238622591834177,0,0.0,1,0.0104475740733001,0,0.0,0.04679,0.1235151259173222,0.2974994656977986,0.01392,0.3652423993426458,0.6347576006573542,23.0046108684833,3.92896697535772,0.3131151902101622,0.2870444267092312,0.209364192604416,0.1904761904761904,11.38214890206388,6.3170959618705504,14.96738436826932,11205.719886609788,43.45700164920588,13.453531772265404,13.443036245812932,8.721187398533221,7.839246232594312,0.5948390529396116,0.8202038924930491,0.7000849617672048,0.5667090216010165,0.1131284916201117,0.7946735395189003,0.9281314168377824,0.8801169590643275,0.7553191489361702,0.2040816326530612,0.5052023121387283,0.731418918918919,0.6263473053892216,0.5075125208681135,0.0896309314586994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0047534104960168,0.0071019844973824,0.0093032703635994,0.0113181069372978,0.0133884482635742,0.01540217934212,0.0174351540887886,0.0197902398135465,0.0221002958307315,0.0241424558669755,0.0263606490039022,0.028368064841291,0.0306895095241529,0.0327867160651812,0.0348256649334808,0.0367551109177903,0.0390618513906185,0.040944914637443,0.0426740308461859,0.0578995738992397,0.071347085727443,0.0848592325208029,0.0980945065813701,0.1100770285955471,0.1256508487491004,0.1351996942480412,0.1445582941013569,0.1545153361120017,0.1629091767128577,0.1743468189409039,0.1855220276956724,0.1965377668487367,0.2059522115563533,0.2142322344806324,0.2237097292564804,0.23266349039867,0.2400994275045271,0.2465223409807792,0.2522755635955622,0.257212900540028,0.2622653857840731,0.2675379975161157,0.2718521001963696,0.2758599762095501,0.280093590296164,0.2833616765868054,0.2865179954789058,0.2889771727315078,0.2918760634719639,0.2882067851373182,0.2846905089408528,0.2818390739774697,0.2789202156100521,0.27767959247323,0.2746891393787375,0.2709063358272564,0.271190320470896,0.2718533992289533,0.2709424316120213,0.2722517961508394,0.2734195599693823,0.2736771991174389,0.2743352986984091,0.2750898203592814,0.2761356565028002,0.27676933066087,0.2817010950721752,0.2862006670372429,0.2919982749833379,0.2972777752697395,0.3019642951182263,0.3052211340527727,0.3081979599546656,0.3119359940459578,0.3154448731439261,0.3164480627167194,0.3162086818000796,0.3213221349227851,0.3247204010798303,0.0,1.8006318564193742,51.11197687226191,142.2109945273291,184.21241328125063,fqhc1_100Compliance_implementation_low_initial_treat_cost,2 -100000,95658,48688,465.4916473269356,4556,46.43626251855569,3636,37.38317757009346,1358,13.778251688306256,77.2498286400838,79.6479917361585,63.26585613190741,65.03865252603089,77.07757333672892,79.48035281883675,63.20066724661808,64.97763052126103,0.1722553033548877,167.63891732175296,0.0651888852893307,61.02200476985331,240.49476,169.15428472955142,251411.0267829141,176832.34515623513,552.49401,373.98191827166175,576959.6270045369,390344.7158331365,492.6629,241.99359009637223,510829.6535574651,249780.85291350863,2362.06164,1120.3843442694729,2429266.271508917,1131360.395128655,842.82358,387.3719189148022,863742.0079867862,387671.9360076953,1320.67306,563.9353328697284,1341693.8259215122,557451.3898660454,0.37902,100000,0,1093158,11427.773944677914,0,0.0,0,0.0,48282,504.0874783081394,0,0.0,44454,460.5260406866127,1047789,0,37629,0,0,0,0,0,82,0.8572205147504652,0,0.0,1,0.010453908716469,0,0.0,0.04556,0.120204738536225,0.2980684811237928,0.01358,0.3622180054817626,0.6377819945182374,22.89777860586867,3.9617792510971537,0.2912541254125412,0.2986798679867987,0.2136963696369637,0.1963696369636963,11.509846898366217,6.285337817622844,14.556184380221245,11210.29271430093,42.026209618888124,13.493818454982462,11.926713853593824,8.689589618317003,7.916087691994834,0.597084708470847,0.8250460405156538,0.6978281397544853,0.5881595881595881,0.1106442577030812,0.7520361990950226,0.933481152993348,0.8741007194244604,0.7384615384615385,0.1270718232044199,0.5294350059265113,0.7480314960629921,0.6350832266325224,0.5378006872852233,0.1050656660412758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0045432880018659,0.006790430466601,0.0091140012192643,0.0114636205511082,0.0134744260892591,0.0156116164294163,0.0178996273038239,0.020065453057885,0.0222140289427597,0.0243607233339829,0.0263995891114535,0.028584658126254,0.0306834461931706,0.0325521371051001,0.0344503050987692,0.0365887777835345,0.0385593704253574,0.0405859525370121,0.0426033281895149,0.0581874033518619,0.0716926202469342,0.0853781406771478,0.097870235915567,0.1096676832807437,0.1248386072600275,0.1356425340327479,0.1449122470509254,0.1535721544171917,0.1622913489011579,0.1735696792499649,0.1836752396235416,0.1948166643043274,0.2042680586474246,0.2125562814513993,0.2217667577595592,0.2308398245142806,0.2388315569841538,0.2464983444650517,0.2521706174200661,0.2575361864633028,0.2637486497910111,0.2689629770448172,0.2726452869665596,0.2759385125094399,0.2794548307775952,0.2837663233689175,0.2874295046826753,0.2908236759801186,0.2932830887214068,0.2893185283125784,0.2857890676658585,0.2826476354353253,0.2799843729652298,0.278608814607744,0.2744119852479838,0.271296018209696,0.2719191786663167,0.2724805870808089,0.273223751137763,0.2745189788126076,0.2755444216506233,0.2757951009668595,0.2751009841772858,0.2762785114045618,0.2777374721459294,0.2786537809426924,0.2835774481450384,0.2898570833911475,0.2928476093271571,0.2959504354853192,0.3002556477278656,0.3059202378003468,0.3089504088828869,0.312580823942361,0.3207897793263647,0.3253193087903832,0.3292634107285828,0.3371028540656973,0.3322222222222222,0.0,2.465643568814342,47.69498810242736,139.2714436044308,179.9634995610142,fqhc1_100Compliance_implementation_low_initial_treat_cost,3 -100000,95743,48880,467.6373207440753,4687,47.71105981638345,3731,38.36311793029255,1379,13.96446737620505,77.32698317968122,79.6861127346049,63.31555014592704,65.06089198348886,77.14950970253555,79.51618724626995,63.24720130617325,64.998282709991,0.1774734771456678,169.9254883349539,0.0683488397537885,62.60927349785561,240.15442,168.94653488151482,250832.1234972792,176458.13780800143,559.70959,378.15731093351786,583992.4798679799,394367.8816555967,498.38716,244.7480847162332,517160.51304011786,252891.94792252485,2402.28015,1141.4054429955754,2470670.4824373582,1153733.7800106276,846.18527,387.9765375176754,870683.0368799808,392114.3955120144,1336.18154,573.7226590937668,1354949.7300063714,564595.115983437,0.38107,100000,0,1091611,11401.460158967237,0,0.0,0,0.0,48852,509.614279895136,0,0.0,45056,467.25086951526487,1051231,0,37700,0,0,0,0,0,97,1.0026842693460618,0,0.0,0,0.0,0,0.0,0.04687,0.1229957750544519,0.2942180499253253,0.01379,0.3597710547833197,0.6402289452166803,23.062334061765263,3.853796438888098,0.3122487268828732,0.2902707049048512,0.2026266416510319,0.1948539265612436,11.292753801563336,6.358216548844752,14.69400672309492,11192.421453468103,42.97136164877325,13.40596072936263,13.36004511035768,8.255761097873705,7.949594711179242,0.5944786920396676,0.8162511542012927,0.6987124463519313,0.5687830687830688,0.123796423658872,0.7632933104631218,0.9471458773784356,0.8210227272727273,0.7426900584795322,0.1529411764705882,0.5177387914230019,0.7147540983606557,0.6457564575645757,0.517948717948718,0.1149012567324955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.0043195230273164,0.0065261961309705,0.0089198634590377,0.0112687515891177,0.0133496257828012,0.0153464942692825,0.0177000183737214,0.0198785822329422,0.022005916009048,0.0240952742105748,0.0262482549067914,0.0281957978701533,0.0302219018689182,0.0323712063380717,0.0340790493412554,0.0359154346295606,0.0379233442248846,0.0398586498986644,0.0420360666326349,0.0564458038855424,0.0699160964994873,0.0832442179866222,0.0960766173966064,0.1080915837409343,0.1231985958828069,0.1335207084902158,0.1430275024223,0.1525947303725081,0.1613609530964903,0.1732846148871499,0.184881139329615,0.194509428419094,0.2040916798862206,0.2125615031535845,0.2213934208192942,0.2305759092127602,0.2376667980406508,0.2451758719774665,0.2519020991841598,0.2578486756806816,0.264093947944596,0.2688885466156416,0.2722124913021571,0.2760683241140356,0.2799585757964296,0.2841257716725729,0.2877216204864514,0.2914292374637381,0.293397855984388,0.2906127717939408,0.2871808262100431,0.2841233460354064,0.281622463998153,0.2792560291892854,0.2765238401076551,0.2726554600606673,0.2730470923192721,0.2731852608288656,0.2731016365508182,0.2736569555174726,0.274435056003144,0.2768231830803599,0.2776493084893494,0.2795285003825554,0.2800093293251788,0.2812906509812793,0.2857187412282069,0.2906738094409851,0.2938312325754899,0.3002202544163257,0.3019470323458599,0.3045310853530031,0.3102416398593551,0.3138955526849972,0.3143222209315832,0.3192608173076923,0.3153081510934393,0.3161483906164757,0.3236074270557029,0.0,2.3251751107006164,50.60139769102962,136.0658908384909,185.69825555242963,fqhc1_100Compliance_implementation_low_initial_treat_cost,4 -100000,95765,48651,463.9586487756487,4621,47.18843001096434,3643,37.52936876729494,1351,13.721088080196314,77.39144353273707,79.73062811455165,63.36142006586866,65.08738528063813,77.2127310332069,79.555438428296,63.2935755886521,65.02314900174781,0.1787124995301781,175.18968625564924,0.0678444772165534,64.23627889031991,240.12296,168.97984994457207,250741.64882785987,176452.40217884627,560.78883,379.1925398564789,585048.4728241008,395434.0172672709,494.73746,242.75746307452985,513908.9646530569,251342.72270615087,2358.02078,1114.640234325017,2427696.621939122,1130365.3748138675,834.83546,379.89691548467925,856492.9045058215,382333.44004674855,1309.24456,565.8293573924602,1330313.1624288624,560258.0862305706,0.37964,100000,0,1091468,11397.34767399363,0,0.0,0,0.0,48826,509.2779199081084,0,0.0,44685,463.885553177048,1054394,0,37749,0,0,0,0,0,94,0.9815694669242416,0,0.0,1,0.0104422283715344,0,0.0,0.04621,0.1217205773891054,0.2923609608309889,0.01351,0.3623038810900083,0.6376961189099918,23.238922058589843,3.965669709436444,0.3110074114740598,0.2841065056272303,0.2053252813615152,0.1995608015371946,11.301846767988232,6.223464318491868,14.587245925624728,11256.635570444538,41.84865683814823,12.69275226900552,12.865733722251845,8.3489440538389,7.941226793051959,0.5909964315124897,0.8019323671497585,0.7087378640776699,0.5868983957219251,0.1114167812929848,0.7607142857142857,0.9237875288683602,0.8858024691358025,0.7121951219512195,0.120253164556962,0.5156559651208878,0.7142857142857143,0.6378244746600742,0.5395948434622467,0.1089630931458699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021666936659646,0.0045096628393647,0.0068484811590673,0.0090695808492702,0.0111640959420849,0.0138221643188665,0.0159262278377827,0.017997428938723,0.0201452665774499,0.0222845215683064,0.0243545081967213,0.0266332895600787,0.0287199827371839,0.0309486316526178,0.0330697784695949,0.0352247254847273,0.0371757984723975,0.0394316531839867,0.0414119995010602,0.0432921176262252,0.0578976483972987,0.0719024002343733,0.0859978180597516,0.099228132163964,0.1111814012335916,0.1269443475134558,0.1375002651169696,0.1471110780131281,0.1559786845505708,0.1634365955622253,0.1741297281005791,0.1863435313456401,0.197159220578806,0.2055581651937383,0.2130428569858315,0.2221964064436183,0.2304048858228666,0.2378256963162623,0.2456199995467011,0.2526278465955232,0.2583820505118192,0.2627656218969404,0.268107034795764,0.2726576247650741,0.2770139192007372,0.2812184863615121,0.2847045306958389,0.2877492153449305,0.2909281309389908,0.2940874442118567,0.2909098231906238,0.2874168552424055,0.28448106454058,0.2812765283952749,0.2788344919390623,0.2757329436478217,0.2719604695810909,0.2726946596004892,0.2726825294457078,0.2738936011640699,0.2746746709422424,0.2755622011922797,0.2757764752508291,0.275643167390578,0.2780574332422456,0.2784222135720773,0.2801583934379861,0.2859955005624296,0.2910588399525372,0.29488038466086,0.3008645272258181,0.3037847552595412,0.3063012327138477,0.3080579447713897,0.3122276814684342,0.319027680856013,0.3252008330853912,0.3255445544554455,0.3295789755966747,0.3302134032197679,0.0,1.8968772340462885,48.79005103479864,133.32070622295325,183.64840981076023,fqhc1_100Compliance_implementation_low_initial_treat_cost,5 -100000,95724,49105,468.7643642137813,4699,47.80410346412603,3767,38.73636705528394,1483,15.126822949312606,77.37264048070351,79.73204403024222,63.34029949113111,65.08185629055274,77.17975577901184,79.5413333196551,63.267575779301694,65.01205622207105,0.1928847016916677,190.7107105871262,0.0727237118294183,69.8000684816833,239.2181,168.33231215938918,249903.76499101584,175851.52247224224,559.04631,378.3259952358879,583397.1104425222,394604.8343760476,500.82638,246.40594478067388,518722.3684760353,254053.35145698432,2449.8383,1171.1418407811727,2522598.951151226,1187095.332799738,873.92473,405.1694889647867,899161.6000167148,409467.0186837012,1439.23674,621.7096999281833,1470106.911537337,622130.8201656861,0.3817,100000,0,1087355,11359.262045046176,0,0.0,0,0.0,48769,508.8274622874096,0,0.0,45262,468.4300697839622,1055110,0,37889,0,0,0,0,0,95,0.981989887593498,0,0.0,0,0.0,0,0.0,0.04699,0.1231071522137804,0.3155990636305597,0.01483,0.3695961031053379,0.630403896894662,22.67744059483457,4.098301305772433,0.3055481815768516,0.287231218476241,0.2025484470400849,0.2046721529068224,11.452575987096484,6.265715465036308,15.987795029662069,11285.910165485871,43.67389421864,13.414046777523346,13.103020169599738,8.581465895890405,8.575361375626501,0.581629944252721,0.8179297597042514,0.6907037358818419,0.5543905635648755,0.1141374837872892,0.7475247524752475,0.931106471816284,0.8427299703264095,0.7183098591549296,0.1256830601092896,0.50293542074364,0.7280265339966833,0.6277641277641277,0.4909090909090909,0.1105442176870748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0043983663210807,0.0064518092455643,0.0091200844978875,0.0112660016878666,0.0134067634423926,0.0155753078365815,0.0178926847192593,0.0202393973157243,0.0226225816357866,0.0245450351155995,0.026785897620172,0.0290482457944309,0.0312670573332372,0.0333749445470395,0.0354913390384058,0.0376233318493824,0.0396622897089634,0.0415722629861356,0.0433578086757277,0.0575509522218509,0.0715885073346307,0.0849279161205766,0.0983131010562825,0.1102010267438305,0.1259964055396976,0.1369007212558337,0.1467611659164192,0.1561979411387809,0.1651922148946437,0.1774169233088536,0.1884763512051581,0.1986820499994563,0.2070643556235988,0.2153631192721111,0.2240143567701698,0.232084463343043,0.2391057175985861,0.2460872725620698,0.2529838681938568,0.2581481481481481,0.2647657602845509,0.2701050711332757,0.2741666566709448,0.2795129183579223,0.2826604203908032,0.2853763844565421,0.2886656919458394,0.2919803388953563,0.2950316288877174,0.2916565835820494,0.2876529813331868,0.2840530393576781,0.2823575230429703,0.280688223079205,0.2767349434423723,0.2734334296405059,0.2734733324597038,0.27327470359093,0.27371167876733,0.2735443532629933,0.273779399360521,0.275542504893998,0.276225560906327,0.2764774652255863,0.277968552322429,0.279510461902882,0.2849420609524993,0.2887433738696601,0.2911085946346987,0.2959572845156369,0.2973624875465366,0.3012956272580042,0.3012373453318335,0.3036934441366574,0.3054003724394786,0.3070452155625657,0.3080135215748658,0.3112493239588967,0.3149754809505847,0.0,2.4024889418024227,52.60226766337369,140.6451395672695,179.98849355010967,fqhc1_100Compliance_implementation_low_initial_treat_cost,6 -100000,95747,48681,465.1947319498261,4732,48.283497133069446,3759,38.71661775303665,1434,14.621868048085055,77.33281654085012,79.69902958615667,63.319784280511655,65.07098701000099,77.15435689197463,79.5229272198859,63.25335722989247,65.00742787580643,0.1784596488754886,176.10236627076858,0.0664270506191897,63.55913419456272,239.72806,168.65988853916113,250376.575767387,176151.6168017391,557.39436,376.4883212974893,581612.1758384075,392670.4453377019,489.32431,239.99235762353507,507227.9549228696,247642.30248519935,2441.86951,1135.0756076123384,2518843.22224195,1154002.650330912,856.77734,388.0776366685792,883514.0422154219,393995.09819480433,1397.00272,582.190273891848,1427189.7396263068,582695.811258939,0.3811,100000,0,1089673,11380.753443972137,0,0.0,0,0.0,48635,507.3997096514773,0,0.0,44362,459.617533708628,1057914,0,37913,0,0,0,0,0,84,0.8668678914221856,0,0.0,0,0.0,0,0.0,0.04732,0.1241668853319338,0.3030431107354184,0.01434,0.3640413039076736,0.6359586960923264,23.05903877048497,4.095548702888366,0.3101888800212822,0.2825219473264166,0.200585262037776,0.2067039106145251,11.383244250582244,6.215229587356652,15.13958235029386,11195.769200296312,42.964518859964905,12.961879805176205,13.25396458767179,8.302095284016813,8.446579183100097,0.5812716147911678,0.8069679849340866,0.7101200686106347,0.553050397877984,0.1068211068211068,0.766269477543538,0.9200913242009132,0.8825396825396825,0.72,0.1779141104294478,0.5056221889055472,0.7275641025641025,0.6462984723854289,0.5025906735751295,0.0879478827361563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021684280922899,0.0045642185550698,0.0066808813077469,0.0088635000660696,0.0111097546087168,0.0133331975228161,0.0154702780978798,0.0177029096477794,0.0196315003783153,0.021933013178239,0.024257212573561,0.0261120466587259,0.028224479723616,0.0301856867732932,0.0323971853655516,0.0345437067816056,0.0363918806959403,0.0385317863888254,0.0403855551974046,0.0424093423478795,0.0570942383781018,0.0712566956812855,0.0845060084306776,0.0970848270134457,0.1095136707633282,0.1247409381212198,0.1352472055486033,0.1459359933588054,0.1546069143766487,0.1629206253887232,0.174665719268781,0.1852965675403771,0.1967599891274803,0.2071509772200603,0.2146918128333425,0.223615893013318,0.231427455792938,0.2391426642664266,0.2460115738114149,0.2519888737537345,0.2580118934678483,0.2633506505663203,0.2685095300106547,0.2724734584321902,0.2773486835713591,0.2811402373645876,0.2847525495839329,0.2875449726032621,0.2909145023745745,0.2939423508003903,0.2900275704391096,0.2858222698661389,0.2833807018037538,0.2804450409108619,0.2775822903211438,0.2734861108987785,0.2692234788652303,0.2691262644449537,0.2686239468981363,0.2689463955637708,0.2694252187377572,0.2699440856827847,0.2705867644607435,0.2714165111525815,0.2724838632560363,0.2742709008425146,0.2754670976156049,0.2808240590221333,0.2843096234309623,0.2895504731861198,0.2926190261089529,0.2953288746116173,0.2975345536047815,0.3016625291506808,0.304798962386511,0.3088235294117647,0.3111378325567413,0.3056716417910448,0.3122282608695652,0.3191811978771797,0.0,2.162678106001951,47.28696701077236,142.0938044644324,192.6741559118063,fqhc1_100Compliance_implementation_low_initial_treat_cost,7 -100000,95777,49075,468.6093738580244,4631,46.973699322384284,3702,38.03627175626716,1377,13.928187351869449,77.34910350822409,79.67897000546614,63.34642956891118,65.06715328852476,77.17113482762855,79.50700238316409,63.277320069208834,65.00330428994596,0.1779686805955407,171.96762230204854,0.0691094997023427,63.84899857880555,242.2783,170.46316989958655,252960.8361088779,177979.23290517196,564.76239,382.05799001326807,589056.2452363302,398296.36711860826,505.3062,248.53873871471257,524341.8879271642,256879.44766373828,2389.80113,1147.5172528234928,2456369.3162241457,1159334.6536521665,845.44709,393.3655639156432,864348.3090929973,392363.6897170647,1333.09284,583.1527983655347,1350703.1959656286,572707.3693547159,0.38104,100000,0,1101265,11498.219823130814,0,0.0,0,0.0,49173,512.7849066059701,0,0.0,45594,472.7544191194128,1038973,0,37361,0,0,0,0,0,113,1.1798239660878918,0,0.0,2,0.0208818401077502,0,0.0,0.04631,0.1215357967667436,0.2973439861800906,0.01377,0.3695289704043351,0.6304710295956648,22.86084049146688,3.972074217481009,0.3111831442463533,0.2868719611021069,0.2093462992976769,0.1925985953538627,11.478463083362945,6.360211856429889,14.83788775384347,11154.651481110302,42.82541381408286,13.114089876816898,13.217447091424065,8.550249539688743,7.943627306153147,0.5948136142625607,0.8097928436911488,0.7083333333333334,0.5716129032258065,0.1164095371669004,0.7618636755823986,0.9290322580645162,0.8550295857988166,0.7540106951871658,0.1242603550295858,0.5186787259142744,0.7169179229480737,0.6474201474201474,0.5136054421768708,0.1139705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556545690213,0.0046929322210847,0.006837710888598,0.0090400300657179,0.0112864521901818,0.0132945152489922,0.0153182902219776,0.0177272031433382,0.0199552462986236,0.022068302265147,0.0242285784534688,0.026598255515649,0.0285702540491655,0.0309090534809996,0.0329827817300752,0.0352520734994887,0.0371891847145621,0.0390286389747205,0.0409293529650141,0.0428923993293832,0.0569266892773284,0.0705141614023344,0.0840148465022647,0.096813519421557,0.1092118159112225,0.1248150653083653,0.1344286622853508,0.1447820399655432,0.1546030865119853,0.1629718522645694,0.1747306330258441,0.1856898751973698,0.1956985038274182,0.2047002985531654,0.2131147540983606,0.2219035173208115,0.231093702922567,0.2387714031951611,0.2457008031217387,0.2517969966120318,0.2566951896392229,0.2616313068700147,0.2667116253756418,0.2709012073591414,0.2748437215512532,0.2782322647413942,0.281954746150671,0.2848767708624768,0.2878742766896658,0.2920041153348985,0.2884804284349476,0.2844513494562303,0.2812864756922471,0.2775094089316356,0.2746170029928586,0.2712606837606837,0.2664753284026934,0.2667756703727926,0.2668854019686177,0.2678825369738339,0.2691103574223845,0.2700989943122552,0.272123156403633,0.2720032037020557,0.2737200057474017,0.274752089714968,0.277162492190606,0.2830875431440225,0.2872143082146232,0.2925477152134315,0.2946165358973196,0.299498812978106,0.2998678164537043,0.3055892153892759,0.3072955738934734,0.3106807651182131,0.3177155106415557,0.3142280524722503,0.3216725881388357,0.3271173271173271,0.0,2.3213083347395957,49.960991670716496,140.42977152765783,180.3363052395471,fqhc1_100Compliance_implementation_low_initial_treat_cost,8 -100000,95663,48285,460.30335657464224,4648,47.18647753049768,3675,37.79935816355331,1386,14.080679050416569,77.31532774038504,79.7082731865422,63.31028192710126,65.07667296529958,77.13137114000669,79.52901668486669,63.23937322733921,65.00984539226009,0.1839566003783517,179.25650167551055,0.0709086997620502,66.82757303948961,241.48168,169.8439984270067,252429.54956461745,177544.08541129457,555.61146,375.7362873227718,580197.6103613728,392167.5750528121,493.11286,242.89085191741253,511700.2498353596,250837.39827144888,2417.75753,1146.6825595690068,2491050.594273648,1162349.8735864516,846.97148,392.0328253385798,869744.4884647146,394180.6292282069,1344.4845,585.3514294716454,1368457.8781765157,580226.8900826337,0.3769,100000,0,1097644,11474.07043475534,0,0.0,0,0.0,48549,506.8730857280244,0,0.0,44501,461.4636797926053,1047367,0,37525,0,0,0,0,0,97,1.0035227831031852,0,0.0,1,0.0104533623239915,0,0.0,0.04648,0.1233218360307774,0.2981927710843373,0.01386,0.3613168724279835,0.6386831275720165,23.10127944188184,4.0340990895310105,0.3115646258503401,0.2829931972789116,0.2005442176870748,0.2048979591836734,11.240664041245166,6.061859072619913,14.94078632281438,11075.378827939046,42.26436584265264,12.868707332280106,13.098031428106472,8.169797370158827,8.127829712107225,0.5858503401360544,0.825,0.6917030567685589,0.5549525101763908,0.1248339973439575,0.7657192075796727,0.910386965376782,0.8571428571428571,0.7277777777777777,0.1493506493506493,0.5027844073190135,0.7486338797814208,0.622991347342398,0.4991023339317774,0.1185308848080133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325688352209,0.0049271072000648,0.0069820779800686,0.0091540853026639,0.0113525390625,0.0134351922587216,0.0157174329892701,0.0178948981155201,0.0200542005420054,0.0222827533946382,0.0245318236826451,0.0266047600949142,0.0287016367134054,0.0309428129829984,0.0331434115728411,0.0352562776651636,0.0374134858469062,0.0395939929218602,0.0416272272438864,0.043606499286079,0.0569822596485362,0.0701392524343,0.0833245869980478,0.0956540039987372,0.107507703997636,0.1227386761794874,0.1331167107344992,0.1432558535909836,0.1526226336436809,0.1613460712752254,0.1728520151337134,0.183919870059556,0.1944876832812653,0.2029370889552761,0.2109935131444179,0.2198411642042681,0.2284338802819261,0.235859461162754,0.2427655105863654,0.2486619677955418,0.2542349331326347,0.2599302483439833,0.2657733374369658,0.2692607563962624,0.2730132510657937,0.2763042808746535,0.2802377228651861,0.2830351807351464,0.2863203093676845,0.289419894238504,0.2853375669348545,0.2822699327437523,0.2785794655414909,0.275263135097674,0.2728499807173158,0.2699229970054391,0.2659028862693114,0.2669280405129461,0.2676722158926658,0.2686336507034247,0.2685228266736149,0.2689512961508248,0.2703682861251797,0.2710602356079128,0.271936116291302,0.272680212242785,0.2748446764447218,0.2776156862745098,0.2813309982486865,0.2861952861952861,0.2921771485615754,0.2947918867525882,0.2983359497645212,0.3012259194395796,0.3042579189773475,0.3062212253571007,0.3106197352587244,0.3155196213764543,0.3219923788786064,0.3310785419015408,0.0,2.4003059290266675,49.9913276286542,132.29195164246974,183.27158092981776,fqhc1_100Compliance_implementation_low_initial_treat_cost,9 -100000,95632,48591,465.3672410908482,4605,46.99263844738163,3703,38.19851095867492,1384,14.158440689309018,77.3146043072854,79.73293472707776,63.296484254502126,65.08252885110788,77.13718135224418,79.5573951252593,63.22897155197976,65.01773556919731,0.1774229550412229,175.53960181845696,0.0675127025223645,64.79328191056766,240.1531,168.8486796671638,251122.11393675755,176560.85794207358,554.92853,374.5637964448592,579762.7676928225,391159.8590899064,493.24721,241.777516869018,511757.4138363727,249872.30895564443,2411.59084,1142.3277489439351,2490489.951062406,1163253.156834465,844.92586,390.0576547361447,871733.1855445877,396088.83505118,1345.51008,580.3959143146067,1378242.9103229044,583031.863983054,0.38018,100000,0,1091605,11414.64154257989,0,0.0,0,0.0,48426,505.8348669901288,0,0.0,44509,461.44595951146056,1055849,0,37841,0,0,0,0,0,95,0.993391333444872,0,0.0,1,0.010456750878367,0,0.0,0.04605,0.1211268346572676,0.300542888165038,0.01384,0.3593163818257607,0.6406836181742392,22.77395121431386,4.025612481620331,0.3132595193086686,0.2927356197677558,0.1909262759924385,0.2030785849311369,11.408273729228886,6.193599356018776,14.94030598922075,11263.84726626644,42.657146198882586,13.421838991136976,13.131378463114885,7.771006061273741,8.332922683356992,0.5889819065622468,0.7896678966789668,0.7224137931034482,0.5770862800565771,0.1050531914893617,0.7530755711775043,0.9037199124726476,0.8975155279503105,0.7541899441340782,0.1111111111111111,0.5161793372319688,0.7065390749601276,0.6551312649164678,0.5170454545454546,0.1031468531468531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046751036041,0.0044822585715589,0.0066187517765054,0.0089010821521109,0.0111592610677083,0.0132308005703809,0.0152079232157974,0.0171212585555215,0.0192695175461026,0.0214129911624048,0.0234461538461538,0.0257421674370826,0.0277046212090037,0.0297154161600758,0.0318025578298702,0.0337076328142771,0.035746850132626,0.0378014721913641,0.0398813859119758,0.0418743872676831,0.0569421798570174,0.070549416016341,0.0837647404731652,0.0964611271341656,0.1086541201802809,0.1247604425856318,0.1361005193784452,0.1464100760820919,0.1561253195563114,0.1649820076266179,0.175891865068663,0.1873414977782594,0.1971106704726211,0.2057773201296994,0.2138795212590094,0.223346648912561,0.231795479178073,0.2404082276342172,0.2470721871982734,0.2540961990483288,0.2606687732212924,0.2660016139029553,0.2712923302648082,0.2755864944525652,0.2795912918962212,0.2840187146023147,0.2873625,0.2895856890571599,0.292120742033482,0.2948175673004704,0.2912583511446277,0.2882775283829606,0.2854993390893495,0.2824427480916031,0.2800688815652742,0.2747743613278262,0.2713357263713847,0.2720963428440171,0.2722706304459251,0.2730561545452925,0.2725543579606907,0.2727219236653199,0.2749340698133189,0.2763966201681045,0.2781267846944603,0.2789649845520082,0.2811224633398069,0.2858293574570915,0.2898214779961251,0.2946285356597942,0.2997359351922302,0.3036731281676159,0.3087382274059752,0.3133353356359813,0.3173441985369015,0.3226528448580515,0.3308789691670502,0.3362295413214791,0.3362350380848748,0.3412759415833974,0.0,2.0767460851528896,49.44400524753996,138.0295418577397,184.7919170278536,fqhc1_100Compliance_implementation_low_initial_treat_cost,10 -100000,95644,48406,462.7890928861193,4655,47.415415499142654,3666,37.73367905984693,1347,13.717535862155492,77.29129418892526,79.69195218877772,63.29829466637945,65.07007373815028,77.11618969346138,79.52079588218972,63.231801379780535,65.00765232168511,0.1751044954638843,171.15630658800285,0.0664932865989129,62.42141646517041,240.61334,169.2439661651906,251571.80795449796,176951.99507045982,552.99584,373.7618237527527,577608.4438124712,390211.41289861634,492.87918,242.85824027365447,511636.474844214,251099.75273809445,2359.71956,1130.5052948536872,2430828.3426038222,1145630.8758036967,825.30537,380.8535668082847,848977.5521726402,384283.6840871188,1305.47188,560.7272349759575,1331085.692777383,557158.4376439629,0.37891,100000,0,1093697,11435.082179749905,0,0.0,0,0.0,48377,505.1858977039856,0,0.0,44610,462.6949939358454,1052560,0,37756,0,0,0,0,0,72,0.7527916021914599,0,0.0,1,0.0104554389193258,0,0.0,0.04655,0.1228523923886938,0.2893662728249194,0.01347,0.3651254405971387,0.6348745594028613,22.919236603543016,3.945712142374464,0.3074195308237861,0.2918712493180578,0.2059465357337697,0.1947626841243862,11.655179300454792,6.588982114002733,14.500484471536698,11217.144280265931,42.50694625273692,13.251387453000431,12.926983037688636,8.475064931195105,7.853510830852749,0.6031096563011457,0.8233644859813084,0.7036379769299024,0.5894039735099338,0.1288515406162464,0.7787234042553192,0.9417879417879418,0.8694362017804155,0.7115384615384616,0.1409395973154362,0.5202729827378563,0.7266553480475382,0.6329113924050633,0.5429616087751371,0.1256637168141593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0042279225387813,0.0064045958811648,0.0087186261558784,0.0109269602905716,0.0132504965116871,0.0153047698676509,0.0179304429513754,0.0204175527564207,0.0222390596522843,0.0243149561079662,0.026364439332005,0.0283830216241795,0.0302743029078993,0.0323646311877355,0.0344424562746294,0.036345358634484,0.0385110580417402,0.0406530289472041,0.0425159252270191,0.057175403394365,0.0717106434684236,0.0850833718341803,0.0982464265414816,0.1103969435033615,0.1254180956009992,0.1354926377697803,0.1459340846630733,0.1553412589804995,0.1638664934674553,0.1744075727192358,0.1858224065311779,0.1961057477769675,0.2043088442970212,0.2134859938730081,0.2227631637315353,0.2311378717129515,0.2391409565188028,0.245610450928984,0.2522106661779529,0.2575200148086445,0.2621455714703303,0.2677869822485207,0.2728939704454751,0.2773018361221489,0.2811140014547606,0.2847163977316826,0.2882305029525555,0.2915026416658033,0.2937345935329088,0.2910003093601624,0.2884313887284429,0.285291839752165,0.2819764923325728,0.2787644787644787,0.2751030161915412,0.2701056694507719,0.2695849130927175,0.2696799972678528,0.2704447376867934,0.2701024758770289,0.2711239124859437,0.2728848965949446,0.272417403702631,0.2723014791980309,0.273510910926458,0.2768280297901151,0.2821527626289383,0.287338285036789,0.2923422890282873,0.297076234805007,0.3027677117798435,0.305605899631273,0.3099029420685472,0.313958938783163,0.3206360507891301,0.3256563795485951,0.3346955455659992,0.3274628508530545,0.3266616314199396,0.0,2.320304668906219,50.80352602794125,137.27353806098998,176.4758463153693,fqhc1_100Compliance_implementation_low_initial_treat_cost,11 -100000,95628,48659,464.3200736186054,4706,47.86255071736311,3733,38.44062408499602,1403,14.315890743296942,77.27514686010801,79.68772729524139,63.27600815666828,65.05715849803674,77.09426352517607,79.51002225720714,63.20678721548696,64.9916049894871,0.1808833349319343,177.7050380342473,0.0692209411813209,65.55350854964104,239.12152,168.15460171237282,250053.64537583131,175842.22290993517,556.37574,376.4687810506912,581189.4319655331,393060.0335331834,498.19278,245.35976981659317,517358.190069854,253804.0807856237,2421.99768,1157.3260824111778,2495682.885765675,1173281.4161286943,867.49086,401.6552499180175,891523.3613585979,404477.6951056426,1356.11788,584.3887976547853,1384847.115907475,581553.7986487898,0.37822,100000,0,1086916,11366.074789810516,0,0.0,0,0.0,48585,507.4141464842933,0,0.0,44992,466.7775128623416,1053612,0,37804,0,0,0,0,0,93,0.97251850922324,0,0.0,2,0.0209143765424352,0,0.0,0.04706,0.1244249378668499,0.2981300467488312,0.01403,0.3599673868732164,0.6400326131267835,23.15734871312813,4.085310413974024,0.3193142244843289,0.2842218055183498,0.2011786766675596,0.1952852933297615,12.014663130344372,6.81838623041316,14.946067616463814,11226.767072082295,43.10576793016979,13.031351929336322,13.658956932695869,8.514937010226143,7.900522057911449,0.6102330565229038,0.8162111215834119,0.7340604026845637,0.5872170439414115,0.1316872427983539,0.7771084337349398,0.9290322580645162,0.8882175226586103,0.7272727272727273,0.1592356687898089,0.5348113574484636,0.7281879194630873,0.6747967479674797,0.533210332103321,0.1241258741258741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0046623354246272,0.0065851554969306,0.0087252412392077,0.0110660197927155,0.0131680788658953,0.0155096463678264,0.0178967034537677,0.0203858382832547,0.0224750163826998,0.0244427805073184,0.026535308499928,0.0285505576361167,0.0311285650968386,0.0331887649731515,0.0351837292063229,0.0372739051567763,0.0392480656384691,0.0413553395633442,0.0434769006152883,0.057924056983392,0.0715887419577928,0.0849834550133935,0.0979435747245106,0.109709722398276,0.1248596665889978,0.1360482045505265,0.1453487132470523,0.1546933533126404,0.1630839012016595,0.1735530051930945,0.184695139144958,0.195487000599553,0.2043689959205158,0.2123874271587497,0.2214816542806678,0.2303138150237264,0.2376358281710165,0.2451346368333599,0.2510020097616997,0.2561220346847631,0.2620401749592504,0.26777369232594,0.272382370244084,0.2762943508183166,0.2805297621249676,0.2837602555270245,0.287233771851701,0.2908108388300698,0.2942092894299067,0.2901705142364572,0.2869172766800594,0.2848194806108804,0.281991341991342,0.2787614556455201,0.2749388753056235,0.2720056809215717,0.2723746870243998,0.2737897061321556,0.2745446152753613,0.2752057325197335,0.2764112546451955,0.2773829126456427,0.2790071836843627,0.2796709472224215,0.2812572819304559,0.2820933521923621,0.2872353712608506,0.2918279794914722,0.2971108746206298,0.3007756132756132,0.3044234723467074,0.3055659320134479,0.3075594925305908,0.3119180633147113,0.3159386068476977,0.3211357424840571,0.3226843480008037,0.3165350040860801,0.3162295705055112,0.0,2.242011526261936,50.32893890058647,137.74537407683505,186.86690040580035,fqhc1_100Compliance_implementation_low_initial_treat_cost,12 -100000,95680,48845,465.698160535117,4554,46.33152173913043,3613,37.13419732441472,1366,13.89005016722408,77.28391542799022,79.68167663624719,63.28504443165552,65.05967055832808,77.10503905883496,79.50696692943716,63.217554397561074,64.9960814832727,0.1788763691552617,174.7097068100345,0.0674900340944475,63.58907505537559,239.38376,168.43525197315776,250192.0568561873,176040.1880990361,559.1263,378.4800094931876,583743.802257525,394941.2411091008,500.66885,246.6094756533361,519379.03428093647,254681.689803012,2272.93686,1081.086068897229,2337106.18729097,1091989.5184295254,814.06269,374.8653530643693,834548.4740802675,375719.3854022322,1317.84992,566.147276726854,1341728.1145484948,561760.102445992,0.38214,100000,0,1088108,11372.366220735785,0,0.0,0,0.0,48691,508.246237458194,0,0.0,45187,468.3319397993311,1051411,0,37760,0,0,0,0,0,92,0.951086956521739,0,0.0,1,0.0104515050167224,0,0.0,0.04554,0.1191709844559585,0.2999560825647782,0.01366,0.3693086003372681,0.6306913996627319,23.16155555296709,3.990977135807338,0.2994741212288956,0.3050096872405203,0.2026017160254636,0.1929144755051204,11.64451974871463,6.604350215580508,14.800085249788882,11256.557870156306,41.697384941257454,13.511479446577106,12.372865959700306,8.11987342409531,7.693166110884735,0.6036534735676723,0.823049001814882,0.6913123844731978,0.6092896174863388,0.1147776183644189,0.7789954337899543,0.9405286343612336,0.8415841584158416,0.7880434782608695,0.1688311688311688,0.5274027005559968,0.7407407407407407,0.6328626444159179,0.5492700729927007,0.0994475138121546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022395168318437,0.0047164070107108,0.006934221346843,0.0094816109592382,0.0116703804320177,0.0140473474044495,0.0162578407873935,0.0185173836662989,0.0205983124520582,0.0227621954967321,0.0251246486242485,0.0275268949785764,0.0295842766001234,0.0315978233984664,0.033796129032258,0.0358439248373786,0.0379135624656767,0.0398181402977018,0.0417212756662297,0.044096342848805,0.0582889376371043,0.0722399623095848,0.0853430724345654,0.098309079621621,0.1101683288480818,0.1257912229819844,0.1357352191641182,0.1456352037827878,0.1546897546897546,0.1636240703177822,0.1741299966590147,0.1854258729746122,0.1957281426565204,0.2050518432549024,0.2133042433858935,0.2234454592872918,0.2316848281642917,0.2392271728721906,0.2464555121330546,0.2520009173259947,0.2575067505707564,0.2639789041898623,0.2692088787706317,0.2737855222734255,0.2779258069618328,0.2822533890883075,0.2861954970071877,0.2888945426790484,0.2918058252427184,0.2945471800076447,0.291732256979482,0.28915364637012,0.2854933933089682,0.281563891570953,0.2787795141207723,0.2743652493117161,0.2719958268786949,0.2718003273322422,0.2713277414075286,0.2702668994761786,0.2705448693960033,0.2717807894424908,0.2724813354584346,0.2737174039450731,0.2748030927090107,0.2758997579826684,0.275334391294491,0.2792358283745694,0.2838242462224079,0.289950123708911,0.2953029210241615,0.2986992552187139,0.3007114135477884,0.3053678818026579,0.3086453744493392,0.3116219667943806,0.3133072994893361,0.3195691202872531,0.3257409440175631,0.333965844402277,0.0,2.489190062036858,46.99526223082038,137.6247594983632,180.59300365160968,fqhc1_100Compliance_implementation_low_initial_treat_cost,13 -100000,95648,48910,466.868099698896,4770,48.61575777852125,3802,39.0807962529274,1431,14.542907326865173,77.35161970545354,79.75647002325148,63.31721993396855,65.09392232500913,77.16898607404706,79.58037529051798,63.24744724411232,65.02935453439613,0.1826336314064889,176.09473273350318,0.0697726898562365,64.56779061299756,239.1818,168.26152169010942,250064.3819003011,175917.24544756944,562.82196,380.9545725067925,587715.5612244897,397575.79075852566,503.02012,247.71925392295245,521745.6925393108,255811.4215519394,2473.30657,1166.4291141434603,2544409.0205754437,1178229.9925675583,876.30548,402.55751885623954,899503.993810639,404238.186024354,1396.43484,599.0382266078507,1420860.049347608,591842.7926874554,0.38118,100000,0,1087190,11366.56281365005,0,0.0,0,0.0,49017,511.74096687855473,0,0.0,45368,470.14051522248246,1053692,0,37779,0,0,0,0,0,98,1.0245901639344264,0,0.0,0,0.0,0,0.0,0.0477,0.1251377302062018,0.3,0.01431,0.3618130766145206,0.6381869233854793,23.220369894960637,4.073242126128232,0.3011572856391373,0.2840610205155181,0.2041031036296686,0.2106785902156759,11.382831474793882,6.1208683546977545,15.268225781687052,11272.58648228646,43.51474699322754,13.246410140928116,12.939798436975035,8.537806978519662,8.790731436804714,0.5775907417148869,0.7759259259259259,0.7126637554585152,0.5760309278350515,0.1186017478152309,0.7557058326289096,0.9238476953907816,0.8892405063291139,0.6772486772486772,0.1340782122905028,0.4971363115693012,0.648881239242685,0.6453558504221955,0.5434412265758092,0.1141479099678456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0043705318663489,0.0066373028599265,0.0090628302040152,0.0113519616718713,0.0138215522509676,0.0160607760159078,0.0184926121452859,0.02060327198364,0.0227286694663525,0.0249194657036748,0.0271081242164539,0.0291744705373865,0.0311961978989474,0.0334046047534938,0.0355384042377089,0.0374055533099095,0.0394066169066428,0.0413961714523512,0.0434483405799368,0.0578357819063342,0.0721517794507208,0.0856057266410563,0.098628897330401,0.1110161263086795,0.1264209657274709,0.1375195098903199,0.1469666609822646,0.1561446865872837,0.1638442953020134,0.1751461168503461,0.1864707921650199,0.1973939169624001,0.2065391098754351,0.2144674103357522,0.2237421157065103,0.2315994101085936,0.2398455441977754,0.2473549178094632,0.2537074148296593,0.2595047248921429,0.2642404693453007,0.2700344105856894,0.2736588811339502,0.2775189848848776,0.281910901686741,0.2857642183052878,0.2886686882271591,0.2913128758355485,0.2948662328271872,0.2913545442341254,0.2874026543819238,0.2845830934898283,0.2818726246688932,0.278935836318953,0.2755070916577703,0.2712446622441422,0.2715504560164754,0.2710243802848053,0.270805929823314,0.2714925373134328,0.2724057298933013,0.2734962601829281,0.2747747747747748,0.275779090822453,0.2761796651273187,0.2769673541942947,0.2826987141567296,0.2872816916079302,0.2920083173133508,0.2949802087081684,0.2990002082899396,0.3013960958734865,0.3028669810614567,0.309548017376837,0.3093669098611438,0.3161094224924012,0.3244107071514183,0.3276139410187667,0.3316042978881067,0.0,2.567146304650148,50.98203758651772,134.0904245569809,193.39619334318184,fqhc1_100Compliance_implementation_low_initial_treat_cost,14 -100000,95788,48970,467.3654319956571,4676,47.60512799098008,3779,38.83576230843112,1434,14.552971144611016,77.3507064425629,79.67955997535894,63.34838135415546,65.0702031921731,77.16539931605118,79.49964830953347,63.277251244858576,65.0041134742635,0.1853071265117165,179.9116658254718,0.071130109296881,66.08971790959117,239.81474,168.72572960108656,250359.66926963712,176144.73901019606,556.61826,375.6719375499994,580477.6903161147,391575.3398567666,501.14662,245.81040021706048,519801.4678247797,253988.2686161896,2456.69399,1163.3521044905249,2524042.03031695,1173889.601736674,860.88558,397.6783249422433,881774.4185075375,398315.9887583946,1397.02006,604.7706249029097,1418394.6005762725,596809.9787901763,0.38223,100000,0,1090067,11379.984966801689,0,0.0,0,0.0,48491,505.5852507620996,0,0.0,45256,469.0462270848123,1058830,0,37982,0,0,0,0,0,91,0.950014615609471,0,0.0,3,0.0313191631519605,0,0.0,0.04676,0.1223347199330246,0.306672369546621,0.01434,0.3658838071693449,0.6341161928306551,22.899768040783904,4.028682286056828,0.2987562847314104,0.2934638793331569,0.2021698862132839,0.2056099497221487,11.40724172588203,6.267689564998846,15.33728981573831,11253.732369015115,43.4866219727535,13.577166172965468,12.795326468665046,8.461512193745184,8.652617137377797,0.5869277586663139,0.7871956717763751,0.7147918511957484,0.5929319371727748,0.1093951093951094,0.7517241379310344,0.918032786885246,0.869281045751634,0.7374301675977654,0.1390374331550802,0.5139366170294005,0.6843800322061192,0.6573511543134872,0.5487179487179488,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0046532846715328,0.0067581965965478,0.0090809361287177,0.0114486741499918,0.0137538558644771,0.015979780685663,0.0180324522910501,0.0200907455853499,0.0222679315179238,0.024397241605443,0.0263911263428999,0.0287446688248291,0.0307494338068766,0.0326898486160953,0.0345376215222175,0.0364345657550264,0.0384838682922783,0.0407423562645397,0.0429147015647937,0.0576622075672517,0.0720641592689022,0.0855225914666107,0.0982217925004203,0.1102328179509069,0.1265460157720036,0.1374168849486197,0.1466656733573146,0.1556701471184848,0.163779797633339,0.1751706172361084,0.1856071250999805,0.196990111920026,0.2066053402088886,0.2151016414349637,0.2234673333480829,0.2304992199687987,0.2383594882106469,0.2454050991501416,0.2517218497585978,0.2575813566759821,0.264436660828955,0.2692098543597503,0.2727968981858216,0.2776019114846754,0.2814722748640201,0.2852503247726591,0.2895198170731707,0.2928519706217027,0.2952930026851998,0.2920168631347171,0.2879848472370913,0.2849414773286122,0.2821725774117715,0.2793444274854408,0.2755586784181343,0.2714965008451683,0.2718970323003771,0.2720763723150358,0.2723514948508712,0.2716310595989289,0.2728223753034759,0.2732735876711755,0.2749233900731429,0.275897632696136,0.2767053436703262,0.2773855613755409,0.283050900745119,0.288533669856627,0.2935997157184032,0.2986830154405086,0.3015163607342378,0.3065013531373906,0.3107314468766684,0.3118974070953852,0.3132900177200236,0.3137915199755089,0.3168094655242758,0.3152204047685056,0.3176561295296838,0.0,2.3996977710003478,50.16086119541284,137.91347824499823,192.0714495674464,fqhc1_100Compliance_implementation_low_initial_treat_cost,15 -100000,95729,48458,462.4512948009485,4620,47.007698816450606,3674,37.73151291667102,1379,14.00829424730228,77.31652017658898,79.67686859655159,63.31665033110207,65.06236614513124,77.1353415053788,79.50014136197504,63.24796187431341,64.99759335428155,0.1811786712101764,176.72723457654627,0.0686884567886565,64.77279084968757,240.24616,168.98447887806807,250964.63976433477,176523.58102358537,553.98208,374.426080531716,578082.5141806558,390515.52876528125,490.38712,241.40608654863405,507438.2371068329,248506.22526915857,2356.73253,1119.531071222629,2423150.361959281,1130750.5053041703,838.56476,386.3952067281885,860298.4362105527,387965.3316426451,1332.07162,575.8298346347253,1354736.6628712302,571608.7728666213,0.37942,100000,0,1092028,11407.48362565158,0,0.0,0,0.0,48408,505.01937761806767,0,0.0,44327,458.3459557709785,1054356,0,37832,0,0,0,0,0,88,0.919261665743923,0,0.0,0,0.0,0,0.0,0.0462,0.1217647989035896,0.2984848484848484,0.01379,0.3541927409261577,0.6458072590738423,22.77916385645913,3.98394021052484,0.3176374523679913,0.2827980402830702,0.2068590092542188,0.1927054980947196,11.399429004754216,6.340162622517725,14.843248607507409,11165.862332264873,42.28085502535145,12.59960898094542,13.438112560272163,8.44258882561527,7.800544658518593,0.5827436037016875,0.8036573628488932,0.6786632390745502,0.5697368421052632,0.1144067796610169,0.7530755711775043,0.919047619047619,0.8571428571428571,0.75,0.1077844311377245,0.5063091482649842,0.7253634894991923,0.5954773869346733,0.5137931034482759,0.1164510166358595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0048255796271327,0.0070235980715554,0.0090837964985724,0.0109354654947916,0.0131688835475526,0.0153488419528214,0.0173913931496497,0.019560327198364,0.0216127116735262,0.02411639853579,0.0262144595385515,0.0283093565868355,0.0302222130691764,0.0321512563436068,0.0342201787467066,0.0363952549531085,0.0386179283447088,0.0407055913017265,0.0429849875503974,0.0570566494748491,0.0714181072370348,0.0846206281789103,0.0976225276285212,0.1096068073261,0.1248281405334517,0.1354450656115077,0.1441816401260325,0.1535437276981261,0.1628690353587367,0.1746033455767511,0.1854292453850981,0.1952720629811665,0.2034002077297327,0.2109127333568158,0.2199711847500831,0.2275731927912637,0.2358209291074582,0.2433616267986019,0.2498568385367753,0.2562809420256327,0.2616839914408989,0.2673064634463825,0.2711937560694889,0.2756517724809874,0.2792650594981195,0.283275767132202,0.2861650022263214,0.2888710637306906,0.2926452940168009,0.289252751392514,0.2860858794384806,0.2830781809467422,0.2802954739291961,0.2771993405320302,0.2737719969395562,0.2695237192250561,0.2692099522723918,0.2696042459511579,0.2704028833458231,0.2730045279347378,0.2737987307343608,0.2747273411056788,0.275289661319073,0.2761781671094516,0.2782336344575881,0.2798571954778568,0.2838288976942997,0.2888370635942776,0.2932147355163728,0.2995889235217057,0.3062711148648648,0.3088556965189675,0.3140688411243048,0.3167395552247138,0.3197069943289225,0.3225609756097561,0.3248241206030151,0.3263186663022683,0.3212927756653992,0.0,2.511812862185261,48.93987643685988,133.86804398762155,185.4447222037073,fqhc1_100Compliance_implementation_low_initial_treat_cost,16 -100000,95681,48697,465.7037447351094,4656,47.5747536083444,3658,37.67728180098453,1387,14.10938430827437,77.40264542862671,79.78387768307276,63.35728834693722,65.1122489288931,77.22648900493326,79.61235101921343,63.289868284612346,65.049077260383,0.176156423693456,171.5266638593249,0.0674200623248708,63.17166851009404,241.19766,169.68956219861315,252084.76081980747,177348.85779046314,561.94696,379.1326593946855,586739.3944461283,395674.5981325085,498.03994,243.52501414283577,517166.6161515871,251899.34344900493,2389.4172,1123.774795665177,2459825.5871071583,1137265.3313802294,866.63954,397.45173598740143,886083.339429981,395997.91541484377,1352.25946,580.4397579731105,1376401.918876266,575450.1490822285,0.379,100000,0,1096353,11458.39821908216,0,0.0,0,0.0,48947,510.9582884794264,0,0.0,44956,466.5503077936058,1050290,0,37640,0,0,0,0,0,95,0.9928825994711594,0,0.0,1,0.0104513957839069,0,0.0,0.04656,0.1228496042216358,0.2978951890034364,0.01387,0.3673259167696745,0.6326740832303255,23.08770682263748,4.077387084367752,0.3015308911973756,0.2908693275013668,0.1951886276653909,0.2124111536358666,11.02488584460228,5.923300127303839,14.91113660541427,11155.578151914682,41.98896450693601,13.11398063106742,12.59017559792274,7.853651752192987,8.431156525752863,0.5932203389830508,0.8223684210526315,0.7098821396192203,0.5742296918767507,0.1312741312741312,0.7537912578055308,0.905829596412556,0.8871951219512195,0.6842105263157895,0.1875,0.5222703981080016,0.7621359223300971,0.6348387096774194,0.5395948434622467,0.1148086522462562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683314599345,0.0047432272188269,0.0069892473118279,0.008998303931426,0.0111550624866535,0.0134716819746247,0.0154148867841813,0.0174727753339933,0.0193960451688723,0.0213885136518072,0.0236372209352385,0.0257063074901445,0.027832613612996,0.0297740427197264,0.0319748245976062,0.0339727556483452,0.0361684062292909,0.0383749286566699,0.0403852354158649,0.0423471780707697,0.0572903064049392,0.0704577818730105,0.0841396100489012,0.0974090866057246,0.1094305392947926,0.1245728191292387,0.1352888737954748,0.1454183479010742,0.1547027454500764,0.1632062116597314,0.1749534240084429,0.1853843823045623,0.1955545406104894,0.2049877547450363,0.2138127502309824,0.2228027451848572,0.2313985109892559,0.2385557053009883,0.2453654945926051,0.2520630929249057,0.2578307134778293,0.2627386492191782,0.2678114120493303,0.2720545161097495,0.2758282238324891,0.2794953146904744,0.282402318377136,0.2849059236986005,0.2875782409498613,0.2907207550642146,0.2881969587255611,0.2845485041418498,0.281204461383253,0.2774943595786569,0.2747908846392575,0.2707051008592845,0.2681804572887285,0.2687869774131337,0.2686035263970676,0.2691543700340522,0.2691512928867956,0.2688620176880332,0.2700714803687972,0.2705478693967902,0.2721684852527755,0.2731382223025857,0.2749025368664896,0.2812422283014175,0.2872536410719872,0.2912152614225153,0.2939583991336912,0.2999736495388669,0.3071944236992781,0.3095524181435866,0.3145011169024572,0.3103007780745558,0.3158291836426739,0.3154761904761904,0.3181695827725437,0.3151447661469933,0.0,2.0215217443802107,48.72020925284884,132.60112305103866,186.38423066208017,fqhc1_100Compliance_implementation_low_initial_treat_cost,17 -100000,95726,49025,468.2322462027036,4727,48.012034348035016,3766,38.73555773770971,1399,14.30123477425151,77.33907921770925,79.70561620319148,63.32552877917672,65.07536306163718,77.15662389934009,79.52599725342031,63.25618914133472,65.0090461500352,0.1824553183691648,179.618949771168,0.069339637841999,66.31691160197306,239.99272,168.76908633859216,250707.7492008441,176304.12380182202,558.60979,376.9306558859959,582900.1107327163,393110.6035177757,493.37213,242.9632019848732,511457.3679042266,250783.2031931836,2449.03089,1144.3670886133182,2523072.498589725,1160469.8042642442,878.49615,396.0222075261304,903954.8398554206,400232.3102197215,1364.98234,585.0139271946892,1397907.360591689,587829.5846931174,0.38142,100000,0,1090876,11395.806781856549,0,0.0,0,0.0,48694,508.0646846206882,0,0.0,44601,461.9434636357938,1054598,0,37856,0,0,0,0,0,91,0.9401834402356728,0,0.0,0,0.0,0,0.0,0.04727,0.1239316239316239,0.2959593822720541,0.01399,0.3549633848657445,0.6450366151342555,23.252872328805683,4.115296715947136,0.3082846521508232,0.2788104089219331,0.2047265002655337,0.20817843866171,11.25151915735995,6.028987444290815,14.9813278674311,11238.39076768446,42.746133692674974,12.730481064894898,13.020271208349769,8.525505773610673,8.469875645819636,0.575942644715879,0.7942857142857143,0.6744186046511628,0.5888456549935149,0.125,0.7631578947368421,0.9262672811059908,0.8741721854304636,0.7346938775510204,0.1823529411764705,0.4984984984984985,0.7012987012987013,0.6041909196740396,0.5391304347826087,0.1091205211726384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027953330092367,0.0051303889362047,0.0074804867898866,0.0097951552593074,0.0120647386142844,0.0144007984601126,0.0164278794676999,0.0188567519831749,0.0210638254361029,0.023269628628198,0.0251879352251633,0.0269304246009736,0.0287971038341286,0.0309599118080382,0.0328767406092261,0.0348596719819652,0.036890468149468,0.03891737063866,0.0408984557791296,0.0429433152406055,0.0577186113286348,0.0707477583988114,0.0839379324806039,0.0962124876448444,0.1083073224228108,0.1243019123371128,0.1346849570854154,0.1448252366199282,0.154265380053217,0.1620528337517972,0.1744363981206086,0.185998917162967,0.1966902764631001,0.2059177554548836,0.2144917642913767,0.223764285951824,0.2316316048059314,0.239832091651849,0.2468108770655529,0.253826764436297,0.2597794772708866,0.2644699609457215,0.2702373634687219,0.27497606510292,0.277913857496241,0.2811919894766606,0.2840723315570753,0.2872364715731791,0.2906976744186046,0.2933721144481587,0.2892896922849819,0.2857691885362907,0.2833577093997862,0.2787542933010073,0.2769819378948305,0.2733814048702985,0.2696588415452378,0.2693120566213935,0.2702310659066862,0.2719378020292801,0.2733864035579474,0.2743221690590112,0.2747255036773132,0.2749031482388565,0.2759551098376313,0.2759841807325458,0.2783724091063541,0.2835066029783647,0.2871583937534858,0.2931381446553289,0.2954555751891622,0.3021175224986765,0.3042959427207637,0.3066009104704097,0.3119189289698773,0.3170703033153068,0.3242085945863281,0.3243843358901897,0.3303204601479046,0.3305629013978088,0.0,2.352184602733028,47.35699295391934,135.47667756569138,197.6596215932343,fqhc1_100Compliance_implementation_low_initial_treat_cost,18 -100000,95696,48761,465.8397425179736,4691,48.027085771610096,3738,38.58050493228557,1404,14.368416652733655,77.30793472821749,79.68315647319591,63.31631099018998,65.06988389467149,77.1329485744425,79.51021635266115,63.24960458245484,65.00577002153419,0.174986153774995,172.94012053476138,0.0667064077351398,64.11387313730188,240.9539,169.59737758385364,251790.75405450596,177224.93813303966,559.69976,378.12757029627846,584370.2035612774,394632.9530322151,496.44722,244.2060062935593,515552.948921585,252751.54711501044,2420.06661,1139.5362280520333,2499902.075321852,1161840.284988958,863.88038,391.0920603246997,891804.6835813409,397796.6771211513,1359.06342,579.3629407266209,1392146.8608928274,581514.7721853827,0.3802,100000,0,1095245,11445.034275204816,0,0.0,0,0.0,48829,509.7287242935964,0,0.0,44928,466.25773282059856,1046909,0,37561,0,0,0,0,0,93,0.9718274536030764,0,0.0,0,0.0,0,0.0,0.04691,0.1233824302998422,0.2992965252611383,0.01404,0.3637669265490357,0.6362330734509642,23.18627240156608,3.932938787687541,0.3127340823970037,0.2899946495452113,0.1987693953986088,0.198501872659176,11.187487670008252,6.171774060603278,15.002598255485315,11235.614896655628,42.94235524357164,13.394205218667494,13.314966605595458,8.186228334241193,8.046955085067497,0.5965757089352595,0.8062730627306273,0.7194183062446535,0.576043068640646,0.1172506738544474,0.7679033649698016,0.9079754601226994,0.8797653958944281,0.7361963190184049,0.1566265060240964,0.5195812330360605,0.7226890756302521,0.6533816425120773,0.5310344827586206,0.1059027777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023996112022355,0.0045093429532649,0.0066951379096967,0.0087856504428374,0.0108819461394516,0.0133090301820699,0.0156519256457056,0.017590607452782,0.0195873970025966,0.0218750959658515,0.0239984417927584,0.0262323021796938,0.0284771072442305,0.0306067786133717,0.0328455855037767,0.0347661580449075,0.036751144911619,0.0388592429559186,0.040891265226301,0.0429588549865004,0.0568658992625399,0.0710599859743141,0.0848974453129098,0.0975578973938284,0.1102724129206376,0.1257957405409978,0.1363496525751869,0.1463012240553486,0.1560977694214169,0.1647037370746986,0.1754956546086994,0.186257328919755,0.1961187214611872,0.2053681736183239,0.2136571629707849,0.2233914112603981,0.2319270722917108,0.2394060408346926,0.2467155272174445,0.2521071919377004,0.2578191920361153,0.263343780698882,0.2688748461611284,0.2733998417228231,0.2771828315120279,0.2799570852499044,0.2833291583166332,0.286858729430944,0.2905977366121777,0.293023317225171,0.2903655827105635,0.2875313162459048,0.2853238281745305,0.2813493669422443,0.2786329866270431,0.2746913108006793,0.2713693471312383,0.2712526678706288,0.2709611277231952,0.2708207012162499,0.2709358684057862,0.2724043338398689,0.2728506976355585,0.2748876329491344,0.2765045381612663,0.2795413774276577,0.2808446626741975,0.2853029544316475,0.2897657645040439,0.2940203261640274,0.2993526775609977,0.3048607088314287,0.3093318332395774,0.3134914639673666,0.3194366722626375,0.3234017595307918,0.3287876517308556,0.3286422200198216,0.3310197544046983,0.3265306122448979,0.0,1.7380550669898152,50.66788501344529,135.61724794182877,188.4298294908256,fqhc1_100Compliance_implementation_low_initial_treat_cost,19 -100000,95714,48679,464.88496980588,4824,49.14641536243392,3803,39.23146039241908,1467,14.919447520738869,77.38171245272493,79.75457926908216,63.34258245905804,65.09469688034848,77.18834440252294,79.56775276806309,63.2681190626292,65.02552328290908,0.1933680502019825,186.82650101906967,0.0744633964288397,69.1735974394021,239.98722,168.76497665677124,250733.6648766116,176322.14373735423,558.23799,376.7927589330613,582747.9783521742,393177.7680726554,497.27966,243.679337391656,517144.00192239386,252617.01447004612,2515.45994,1188.7562042819434,2592619.627222768,1206507.1089725047,898.14754,412.4686042266151,920853.4801596422,413426.2116582887,1435.48216,625.8619039547333,1460266.0634807865,619112.3236168327,0.37959,100000,0,1090851,11396.984767118707,0,0.0,0,0.0,48621,507.4597237603695,0,0.0,44910,466.8282591888334,1056532,0,37912,0,0,0,0,0,103,1.076122615291389,0,0.0,0,0.0,0,0.0,0.04824,0.1270844858926736,0.3041044776119403,0.01467,0.3589641434262948,0.6410358565737052,22.957039001324613,4.124926723736327,0.2937154877728109,0.2747830660005259,0.2153562976597423,0.2161451485669208,11.116172602552403,5.892381681714481,15.843583060659512,11162.9871213176,43.57420051176824,12.820076413015338,12.598923352232244,9.103768279144356,9.051432467376308,0.5745464107283723,0.8181818181818182,0.6991942703670546,0.5653235653235653,0.1046228710462287,0.7450130095403296,0.9247311827956988,0.8823529411764706,0.6951871657754011,0.1487179487179487,0.5003773584905661,0.7327586206896551,0.6300863131935882,0.5268987341772152,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0045819014891179,0.0068900434306124,0.0090608049082745,0.0111682974957788,0.0132586558044806,0.0154881468264083,0.0176609906488627,0.0197806241885855,0.0217422458798239,0.0240101699780607,0.0262012320328542,0.0284550755339825,0.0306663782358334,0.0329201969019927,0.0348221670802315,0.0369952254202355,0.0388203430634968,0.0406976744186046,0.0427188310943899,0.0580488161508976,0.0719468146364445,0.0855586917515713,0.0979432959865341,0.1105508555032806,0.1257257680714927,0.1364162095054169,0.1458155877342419,0.1540795504321535,0.162962088866957,0.1749207991207086,0.1858780733378804,0.1962473486702561,0.2048366641885687,0.213070213070213,0.2228569530705104,0.230486132021814,0.2378140675259239,0.2449273554197053,0.2516430419748563,0.2569409097219008,0.2628896707304244,0.2679232780755623,0.2718755990032586,0.2757695343330702,0.2783539439326009,0.2813968603139686,0.2844593048386686,0.2880737742023099,0.2908036890645586,0.2876681042010936,0.2846147513994073,0.281620095250137,0.279276296850711,0.2761949820364593,0.272350539338168,0.2685017410622843,0.2686338191373035,0.2685260586319218,0.2689476578158534,0.2704333414030056,0.2705542679813018,0.2697028222540651,0.2700155245065425,0.2709346685741535,0.2732642112864954,0.2739625620207487,0.2782276831425114,0.281743284408751,0.2861510720865509,0.2890688259109312,0.2916622857743665,0.2958364685226988,0.3007279344858962,0.3032336222160097,0.30574523192842,0.3143117316740021,0.3148371531966224,0.3192307692307692,0.3267023718439173,0.0,1.951548530572537,50.21921380556697,141.10036010752495,190.7162319147018,fqhc1_100Compliance_implementation_low_initial_treat_cost,20 -100000,95866,48808,465.5039325725492,4737,48.2757181899735,3743,38.55381469968498,1381,14.08215634322909,77.44506122741345,79.72427670292538,63.40474875222951,65.0849382340728,77.26359319710214,79.5448800727983,63.33577947996843,65.01869070326231,0.1814680303113078,179.39663012707285,0.0689692722610786,66.24753081048596,241.04344,169.58648060697652,251437.6525566937,176899.27670600265,559.60314,377.6726239265701,583242.6616318611,393466.811931832,497.04792,243.3605596556,515781.1111342916,251723.59777502707,2413.66365,1137.397876093324,2487684.2676235577,1156415.001031986,837.43045,381.9302533920418,862763.8891786452,387705.0885045129,1339.40646,576.833526339351,1367787.0777960904,577155.1479262464,0.38272,100000,0,1095652,11428.98420712244,0,0.0,0,0.0,48781,508.3345503098074,0,0.0,44970,466.3384307262221,1053367,0,37825,0,0,0,0,0,83,0.8657918344355663,0,0.0,2,0.0208624538418208,0,0.0,0.04737,0.1237719481605351,0.2915347266202238,0.01381,0.3595959595959596,0.6404040404040404,23.275509068740018,3.9834370945716495,0.3133849853059043,0.2880042746460058,0.1995725353994122,0.1990382046486775,11.3489372005851,6.188808477153132,14.742003236668232,11232.2722472807,42.94309174409643,13.140790265389986,13.337101297065246,8.429199641009834,8.036000540631353,0.5808175260486241,0.7949907235621522,0.6845694799658995,0.5903614457831325,0.097986577181208,0.7511032656663724,0.9051724137931034,0.843558282208589,0.7541899441340782,0.1280487804878048,0.506896551724138,0.7117263843648208,0.6233766233766234,0.5387323943661971,0.0895008605851979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022470090487661,0.0045786525390249,0.0067935471441752,0.008952133490317,0.011095982278944,0.0132972500025434,0.0153589179499714,0.0173962698971111,0.0195141377937076,0.021482617586912,0.023653249505944,0.0259163538654031,0.0284293989564931,0.0305396120060071,0.0325575165620911,0.0345066061106523,0.0366819723670058,0.0385783120045593,0.0406955618998183,0.0427643900611811,0.0576090923309525,0.0709226526263006,0.084837507328922,0.0982046358380289,0.1102647996380966,0.1258970786896318,0.1364478658181471,0.1468566389358153,0.1564359603284632,0.1658764221725123,0.1772102921261366,0.1879096789520858,0.1981673886373753,0.2074657990413905,0.2156673220346429,0.2244557040446057,0.2322206742825299,0.2396440729380835,0.2472685646930818,0.2538807353092577,0.2595362493064546,0.2639409983987283,0.2688905706785233,0.2725423809922596,0.2756788880668518,0.2793573071860044,0.283216389628907,0.2858650057200966,0.2889483965278586,0.2926077217024641,0.2890818191592302,0.2861121400447243,0.2827965435978005,0.2805076098360184,0.2779066160504586,0.2744558190474742,0.2712786019612773,0.2717336417390171,0.2720766556431782,0.2720288880235069,0.2728659387265388,0.27240058910162,0.2738942287687763,0.2745641662600364,0.2738782127700157,0.2745877312962915,0.2752549439405037,0.2797502562668903,0.2843167755539424,0.2891311166875784,0.2931852052567403,0.297502371166614,0.3036326250856751,0.3074647246244879,0.3091674462114125,0.3107804935647656,0.3162953921269453,0.3174830907972945,0.3223140495867768,0.3249321442419542,0.0,1.8961861489802732,49.31579246417549,141.73274811610503,185.0971836664981,fqhc1_100Compliance_implementation_low_initial_treat_cost,21 -100000,95673,48509,463.2236890240716,4607,46.690288796212094,3664,37.58636187848191,1384,13.995589142182224,77.29747507811412,79.6996820374552,63.28577397120039,65.06543826680273,77.11656033352101,79.52674625009791,63.21577503371912,65.00161277116885,0.1809147445931103,172.93578735728943,0.069998937481273,63.8254956338784,241.54702,169.9062244247937,252471.00017768855,177590.1353952878,559.59693,378.4315496262254,584177.9080827401,394820.2405573834,495.05955,243.74740175651212,513152.3418310286,251508.67189132923,2351.80759,1120.5611044667662,2410944.299854713,1124404.918687296,833.4981,385.9583379866268,850143.2379041108,382553.1263257275,1342.9794,580.7618537347095,1358455.0918231893,566320.0368440879,0.3792,100000,0,1097941,11475.9545535313,0,0.0,0,0.0,48892,510.2798072601465,0,0.0,44767,463.6417798124863,1041758,0,37404,0,0,0,0,0,98,1.0138701619056578,0,0.0,0,0.0,0,0.0,0.04607,0.1214926160337552,0.3004124158888647,0.01384,0.3702854761408626,0.6297145238591373,22.8906983774632,4.087658798140311,0.2985807860262008,0.298853711790393,0.2014192139737991,0.2011462882096069,11.58514421206601,6.329328519475731,14.796632050562607,11213.71688000892,42.14348023800201,13.635746269665711,12.326024332586009,8.23070094632867,7.95100868942162,0.5900655021834061,0.8210045662100457,0.7074954296160878,0.5528455284552846,0.1099050203527815,0.7627264883520276,0.926441351888668,0.8451612903225807,0.7103825136612022,0.1595092024539877,0.5101796407185629,0.731418918918919,0.6530612244897959,0.5009009009009009,0.0958188153310104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025538124771981,0.0046659769135577,0.0072287933397634,0.0098465603089116,0.01202392578125,0.0139949886940047,0.0161662110888988,0.0184840995894691,0.0205672090573447,0.0227135410799684,0.0245453519739878,0.0265250354420496,0.0286413859797123,0.0305116183213972,0.0328325847916989,0.034816247582205,0.036752969465807,0.0388656989180321,0.0409180286935985,0.0429485576121394,0.0572437350492525,0.0712685551577581,0.0845060076604228,0.0970650115716389,0.1086965694755053,0.1247936857251682,0.1345633273532128,0.1440819673877155,0.1531749256795773,0.1619317571775215,0.1733892711546343,0.1841654562403798,0.1948916240060995,0.2042200287032066,0.2124575635994885,0.2217870773054051,0.2306540301309848,0.2386965239135822,0.2453477539705982,0.2521546784027873,0.2576019090203528,0.2628891335410274,0.2673725852491442,0.2712348493939757,0.2746557680144018,0.2792307122942932,0.2833575508567992,0.2869354735970444,0.2893863152980235,0.2924451021324948,0.2889479076790336,0.2858343899884227,0.2829871888932784,0.2808423244916259,0.2786641929499072,0.2748868778280543,0.2720099733308084,0.2717927765974832,0.2725343744695297,0.273251481494624,0.2740355117597843,0.2752248633183751,0.2768827821314985,0.2783870610391049,0.2794692205069563,0.28134596031275,0.2849366838706038,0.2888204553938036,0.2931680899812539,0.2970013344846534,0.3028076975077741,0.3088829424418909,0.3114152410575427,0.3160893687209476,0.3188217858466098,0.3242833838266138,0.3251097321023157,0.3310027966440271,0.3347767253044655,0.338001514004542,0.0,2.690752478541513,49.59217551578752,133.8653923834932,179.7159563507551,fqhc1_100Compliance_implementation_low_initial_treat_cost,22 -100000,95827,49277,471.3181045008192,4691,47.78402746616298,3726,38.277312239765415,1439,14.6305321047304,77.32864418348662,79.64034879492654,63.32870225298407,65.0388406933578,77.14764136581935,79.46415915648927,63.25922372936822,64.97389848405159,0.1810028176672631,176.18963843726476,0.0694785236158423,64.94220930620997,240.01868,168.94586121516167,250470.59805691507,176302.7687574083,560.07861,378.9833739871765,583832.5941540485,394852.03200160345,502.51942,246.70929873530952,520692.8318741064,254597.7018854556,2426.62739,1151.2540271673483,2493114.7171465247,1162842.195886501,864.10488,396.8899300867823,887150.2812359773,399844.495880422,1397.23788,596.6456306967387,1421756.5613031818,591383.680168259,0.38189,100000,0,1090994,11385.027184405231,0,0.0,0,0.0,48868,509.3032235173803,0,0.0,45261,468.6570590752085,1049392,0,37720,0,0,0,0,0,93,0.9704989199286214,0,0.0,2,0.020870944514594,0,0.0,0.04691,0.1228364188640708,0.3067576209763377,0.01439,0.3623128972729136,0.6376871027270863,22.86962493062325,4.010277905670781,0.3164251207729469,0.2777777777777778,0.2058507783145464,0.1999463231347289,11.458880906816685,6.396841888471678,15.23136582427211,11248.092887484556,42.87186976317464,12.79176341451806,13.358236689520783,8.583032576665211,8.138837082470584,0.5942028985507246,0.8251207729468599,0.6938083121289228,0.5827900912646675,0.1275167785234899,0.7436347673397717,0.9234234234234234,0.8558282208588958,0.6907216494845361,0.1371428571428571,0.5284112872052571,0.751269035532995,0.6318874560375146,0.5462478184991274,0.1245614035087719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598521294373,0.0047338117828325,0.0070004565515142,0.0093551925889809,0.0113382143583485,0.0132763184687436,0.0155335847518091,0.0177880739281741,0.0201013755186297,0.022245871109019,0.0245906678415541,0.026487007922499,0.0284974359501371,0.0302758904673666,0.0322457565945511,0.0342775677183412,0.0360957032866959,0.0382900630391506,0.0402401529001163,0.0419459594487697,0.0563152569598731,0.0704188536417055,0.0837691944866621,0.0970365699873896,0.1094807412560875,0.1259686029917014,0.1362821722854385,0.1464782437508646,0.1559936773752563,0.164490329774004,0.1759676064528635,0.1867284117589777,0.1965029414003458,0.2058106616240558,0.2140114635246487,0.2225828247361017,0.2309770775878432,0.239650533094651,0.2466957351137757,0.253511920461452,0.2584425972941954,0.2639872438212259,0.2687474040230226,0.2722600477923076,0.2766317172257766,0.2815478906413782,0.2855407351744004,0.2887394786772103,0.2923039037793561,0.2940531688699304,0.2905019658533958,0.2867976986814215,0.2846528022559041,0.2814285507644685,0.2787277346129276,0.2761947051708034,0.2716340448424816,0.2719334174353261,0.2719690909400371,0.2711698743580174,0.2724710186861804,0.2744364602815238,0.2759805861645176,0.2777246972558604,0.2791220351951033,0.2806274835727086,0.2816614286927716,0.2867525499859634,0.2911704454706433,0.2960637337624112,0.3013482436758804,0.3056520366277234,0.3096056496468971,0.3126229756319055,0.3174144202966141,0.3200804638504319,0.3228821223997588,0.3246805111821086,0.3224764468371467,0.3314350797266515,0.0,2.315003770451197,49.12370655542158,138.46256920162645,187.54103516325137,fqhc1_100Compliance_implementation_low_initial_treat_cost,23 -100000,95750,48631,465.51436031331593,4637,47.43603133159269,3654,37.61879895561358,1363,13.890339425587468,77.35098256499538,79.6970980956993,63.33757887846742,65.07013403299372,77.17315707364753,79.52237004118541,63.27014049389668,65.0061221698785,0.1778254913478463,174.72805451389206,0.0674383845707424,64.01186311522622,240.07126,168.88661820057817,250727.1644908616,176382.89107109993,554.70692,374.6639791213798,578807.9895561358,390773.58654974384,491.45087,241.1716935370497,509298.51697127934,248991.3786448811,2374.64001,1112.1801588749934,2446840.6684073107,1128687.7858318903,837.66422,382.3117785383456,860714.6840731071,385292.830375399,1326.06116,571.8578580089765,1353054.91383812,570313.8933173124,0.37841,100000,0,1091233,11396.689295039165,0,0.0,0,0.0,48472,505.68146214099215,0,0.0,44375,459.5822454308094,1056103,0,37898,0,0,0,0,0,91,0.9503916449086162,0,0.0,0,0.0,0,0.0,0.04637,0.1225390449512433,0.2939400474444684,0.01363,0.3647277996274063,0.6352722003725937,23.00868466441104,4.036387179756971,0.3163656267104543,0.2851669403393541,0.1945812807881773,0.2038861521620142,11.295068964928548,6.104054933824544,14.69176258534119,11095.160331877589,41.91475656570599,12.841756973280615,12.98499137816831,7.928785015647712,8.159223198609364,0.5831964969896004,0.7936660268714012,0.7240484429065744,0.5527426160337553,0.0993288590604026,0.7477313974591652,0.9121621621621622,0.8910891089108911,0.7081081081081081,0.1058823529411764,0.5121473354231975,0.705685618729097,0.6647127784290738,0.4980988593155893,0.097391304347826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022277804218606,0.0045509370470601,0.0067679319756882,0.0088872186560494,0.0112047666012546,0.0135904144312895,0.0159019785731032,0.0180235346947939,0.0201760034342133,0.0219938797858948,0.0241302253111097,0.0260829398480804,0.028149899758392,0.0299660179178251,0.0317013287117273,0.0335393583595171,0.0356717577012684,0.0378960039016696,0.0399650669550029,0.0416089343570617,0.0559012046683508,0.0688663158665564,0.0824333675844569,0.0944741158164767,0.1068277410581575,0.12285282396592,0.1333305052390446,0.1434530904137578,0.1527335654923408,0.1613193885760257,0.1726500145409894,0.1836284143543569,0.1939921911535993,0.2026846665499737,0.2101764310950174,0.2191932624113475,0.2280249229532359,0.2349474157808897,0.241890649996029,0.249111829287859,0.2558427434283599,0.2611391205680395,0.2663032553299672,0.2705941506745998,0.2750166798083338,0.2798007134948948,0.2830603550591557,0.2863039447280855,0.2899675370866152,0.2927247316931677,0.2894496030143991,0.2854981362017029,0.2824982049079927,0.2792159015398838,0.2754640276561966,0.2720517407458373,0.2683759602921184,0.2681283001541438,0.2675825861657518,0.2680137315238078,0.2687263297326542,0.2694636678200692,0.2693975401292474,0.2707184776809532,0.2730962043447123,0.2733937823834197,0.2744250437927332,0.2787882569494275,0.2838752212082306,0.2888853966133658,0.2922945050978976,0.2950931873223123,0.2984041890038648,0.3046974821495678,0.3130096367679763,0.3162022945446031,0.3141064871481028,0.3157157157157157,0.3205793932768516,0.3276320790573926,0.0,2.1515357967365856,47.853111074124506,134.3581037121042,186.09398018929664,fqhc1_100Compliance_implementation_low_initial_treat_cost,24 -100000,95841,49043,467.83735562024606,4665,47.495330808317945,3714,38.15694744420447,1390,14.117131499045296,77.51248185563044,79.79846343694032,63.42745123530996,65.11103731421936,77.3279954136111,79.618879743337,63.356682009970775,65.04447350737162,0.1844864420193346,179.58369360331972,0.070769225339184,66.56380684773922,241.37212,169.80861322164952,251846.41228701704,177177.42221142258,565.15874,381.6020947162284,589080.9465677527,397558.8993397696,505.7645,248.22621023152965,524188.0719107688,256164.3892270003,2412.12058,1140.2308661772183,2478454.0123746623,1151370.912424973,838.09415,387.58263770198687,858611.1058941372,388555.89607350936,1354.9029,589.9446682477394,1376980.8537056164,584375.0930537914,0.38167,100000,0,1097146,11447.564194864412,0,0.0,0,0.0,49214,512.870274725848,0,0.0,45558,471.81268976742734,1050547,0,37665,0,0,0,0,0,107,1.1059984766436075,0,0.0,2,0.0208678957857284,0,0.0,0.04665,0.1222260067597662,0.2979635584137192,0.0139,0.3608311047109648,0.6391688952890352,23.07924404124748,3.959233154937244,0.312331717824448,0.2827140549273021,0.2014001077005923,0.2035541195476575,11.034164842410757,6.027637660744278,14.948461065882531,11206.112456101897,42.40547688115328,12.818037951514054,13.087894132658043,8.287070651670817,8.212474145310368,0.5823909531502424,0.7952380952380952,0.7,0.5882352941176471,0.1005291005291005,0.7615248226950354,0.9138321995464852,0.8727810650887574,0.7297297297297297,0.1585365853658536,0.5042536736272235,0.7093596059113301,0.6289537712895377,0.5417406749555951,0.0844594594594594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022767287960658,0.0044763573388967,0.0065680779249739,0.0091627685157938,0.0111237530222068,0.0134750330519678,0.015780578689092,0.0181718061674008,0.0203506478919261,0.022630125779732,0.0248428123783971,0.0270131681503056,0.0289759766548159,0.0306286278868716,0.0328353900555675,0.0347883570557977,0.0366633552713274,0.0389424572317262,0.0410022542409856,0.0429962000936963,0.0572560880221098,0.0713621012348518,0.084708643760544,0.0972061758218674,0.1097984711605281,0.1256033544925485,0.1358606948301079,0.1463295338550527,0.1558588456244064,0.1641234861383276,0.1755338594868927,0.1869856355977967,0.1976202625093637,0.206475212928587,0.2142080344490459,0.2233539026386216,0.2311137353639108,0.2386728665453646,0.2469822217189446,0.2533167258973157,0.2588193235155052,0.2637046526524195,0.2681607054440855,0.2722638716454971,0.2764912280701754,0.2800967417192526,0.2843330259911784,0.2871679343905433,0.2892950526166647,0.2923573227024759,0.2887895258239846,0.2858197629107018,0.2824019690104604,0.2793218295098912,0.275974025974026,0.2719952508524111,0.2683710599688105,0.2687405134566108,0.2687504242177425,0.2690526465212839,0.2695465971511032,0.2702739833568849,0.2713887618017718,0.2726547613772322,0.2742253353911907,0.2751555349889454,0.2763668033938304,0.2795031055900621,0.2835033779125879,0.286933250591475,0.2912673056443025,0.2952021897433249,0.2991845993501318,0.3001111522786217,0.3044906900328587,0.3073662504296024,0.3091687583050347,0.3077669902912621,0.3061440677966102,0.3033296743505305,0.0,2.315096816558608,48.6624323774325,135.07638035053327,187.70347420669472,fqhc1_100Compliance_implementation_low_initial_treat_cost,25 -100000,95741,48897,466.5817152526086,4761,48.537199318996045,3793,39.04283431340805,1382,14.10054208750692,77.31288813594676,79.67106440118073,63.318020272784125,65.0617962672743,77.13362732283363,79.49439639382051,63.24972816440231,64.99652578220477,0.1792608131131317,176.66800736022026,0.0682921083818115,65.27048506953292,239.99228,168.89350283611842,250668.24035679596,176406.66259608572,558.11251,376.7997353301369,582308.4363021068,392930.217717254,503.06179,247.08923562357023,522047.9313982516,255466.38427837775,2467.74918,1167.332397453632,2543409.051503536,1185156.4115111958,869.22862,398.2451618069936,891893.5983538922,400073.5773246928,1339.8103,575.4409224869651,1368755.9352837342,574865.5039985091,0.38091,100000,0,1090874,11394.010925308909,0,0.0,0,0.0,48604,507.0659383127396,0,0.0,45436,471.0938887206108,1053537,0,37831,0,0,0,0,0,88,0.9087016011948904,0,0.0,3,0.0313345379722376,0,0.0,0.04761,0.1249901551547609,0.290275152278933,0.01382,0.3598469593233991,0.6401530406766008,23.14454774134151,3.995819483763877,0.3055628789876087,0.291326127076193,0.2119694173477458,0.1911415765884524,11.59910431353087,6.369089886083801,14.840512911688233,11266.349524878004,43.624781203257946,13.530658895728884,13.239402959643908,8.908063387389113,7.946655960496035,0.6005800158186132,0.8171945701357466,0.7092320966350302,0.5708955223880597,0.1296551724137931,0.776748104465038,0.93125,0.8892128279883382,0.725,0.1524390243902439,0.5203376822716808,0.7296,0.633578431372549,0.5198675496688742,0.1229946524064171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091413640138,0.0048855147528355,0.0074168772004586,0.0097915735586884,0.0119506514376379,0.0140020366598778,0.0162740899357601,0.0181723514818633,0.0206412170037009,0.0227112153264865,0.0249356614819903,0.0270370180212558,0.0292493289315355,0.0314875471231691,0.0333539667801506,0.0352942392360321,0.0372863104051689,0.0393450787524123,0.0413243765987979,0.0433840383413211,0.0573349480101891,0.0716998503855449,0.08508541048415,0.0976543196896258,0.1103074522373581,0.1256452022338805,0.1357540002546581,0.146489696866485,0.1559075470488966,0.1639467307156183,0.1750392971727568,0.1861624474170839,0.195970775620257,0.2049694875215993,0.2143085030309031,0.2224905025086668,0.2306756545612821,0.2391040208806786,0.2462927216986488,0.25236011181889,0.2585548249675866,0.2644448342396071,0.2690719820192819,0.2736478793907218,0.2778310882213611,0.2815584223561158,0.2848041056452622,0.2884104233699177,0.2922810060711188,0.2958363576377433,0.2921032077351935,0.2892757449500158,0.2862171409261788,0.282509785795791,0.2792197180169071,0.2756856919707806,0.271062677205265,0.2707307465038408,0.2705046780031414,0.2700044622936189,0.2710278625025729,0.271842359863368,0.2729816647872029,0.2748397435897436,0.2768644555214724,0.2789387606759949,0.2816465578424414,0.2870047990966406,0.291717651994546,0.296614531775886,0.3019184543516712,0.3071699305116867,0.3104325699745547,0.3111964460507492,0.3110800744878957,0.3111683446499649,0.3098206141684402,0.3104758096761295,0.3114215283483977,0.3164983164983165,0.0,2.2299911273095323,51.531758414416345,134.4204931295568,193.66484233589568,fqhc1_100Compliance_implementation_low_initial_treat_cost,26 -100000,95783,48595,464.2264284893979,4668,47.44056878569266,3683,37.88772537924266,1360,13.833352473821034,77.37208356525132,79.70955768899343,63.35007434272507,65.07900167648002,77.19906980669212,79.54254169174553,63.283254254009904,65.017180670345,0.1730137585591933,167.01599724790128,0.0668200887151684,61.82100613501973,240.70948,169.32375739934537,251307.1004249188,176778.507041276,556.57806,375.49864205170354,580537.8616247142,391486.1322486283,491.43015,240.4140843134093,509701.99304678285,248350.85393057557,2387.12507,1122.5970793768784,2456930.6035517785,1136729.742623303,835.39172,382.2662252838379,857470.1982606518,384395.12782418303,1318.94518,569.8554105996182,1342481.442427153,564040.903646701,0.38084,100000,0,1094134,11423.050019314493,0,0.0,0,0.0,48592,506.7391917146049,0,0.0,44419,460.40529112681793,1056419,0,37893,0,0,0,0,0,100,1.0335863357798356,0,0.0,2,0.0104402660179781,0,0.0,0.04668,0.122571158491755,0.2913453299057412,0.0136,0.3635240839851791,0.6364759160148209,23.159825267636588,4.085191958088451,0.3171327721965788,0.2872658159109422,0.199837089329351,0.1957643225631279,11.37526719485099,6.131833132470088,14.510309668434996,11222.366162334054,42.07568300696983,13.000207283079334,13.191994659599317,8.047637647340293,7.835843416950892,0.5891935921802878,0.8156899810964083,0.6883561643835616,0.5774456521739131,0.1081830790568654,0.7637209302325582,0.9212253829321664,0.86084142394822,0.7108433734939759,0.1118881118881118,0.5172546012269938,0.7354409317803661,0.6263096623981373,0.5385964912280702,0.1072664359861591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020054694621695,0.0042982847410891,0.0065657283188894,0.0088682561127985,0.0108512152954337,0.0129805342889721,0.0153808519096107,0.0174806620813519,0.019835268149117,0.0217687214074445,0.0238470998155359,0.0257394445698803,0.0279593766703671,0.0302724520686175,0.032349877798517,0.03449024085306,0.0365194708403204,0.0383510500388903,0.0401712421288888,0.0422609999375299,0.0570212055434964,0.0713523689990586,0.0847040077156125,0.0975863482089379,0.1093177125036874,0.1243951399894347,0.1352445551375125,0.1457571246278179,0.1553483011780775,0.1635827931644077,0.1746245212376813,0.1855210957008659,0.1953899321857068,0.2042373622529298,0.2124984877313771,0.2215135206962992,0.2300562173738455,0.2384560046760487,0.2451318205517647,0.2518199716130214,0.2579533894386386,0.2635250403122152,0.2687877320038278,0.2736441620903772,0.2768991947220335,0.2800182077653659,0.2837993297654179,0.287739084050903,0.2916736644919578,0.2929397980542647,0.2895588097123606,0.286828399122807,0.2839268392121578,0.2816460715470131,0.2799028176942905,0.2770280584984581,0.272890739601571,0.2728610434412962,0.2728667109770438,0.2733335704631144,0.2754044583612913,0.2764352233879524,0.277061051229764,0.2776939798589237,0.2780800992887489,0.2801854778126052,0.2809689955464783,0.2876986609936178,0.2911617216882574,0.2958523892130579,0.2985067893715884,0.3039390756302521,0.3076205867727499,0.3123588740027096,0.3174070969544565,0.3229653882132834,0.3288762019230769,0.3322920734088246,0.3360021350413664,0.3415361670395227,0.0,2.242183403257914,46.19737826872136,140.25869954252946,187.03330420313617,fqhc1_100Compliance_implementation_low_initial_treat_cost,27 -100000,95633,49044,469.16859243148286,4733,48.11100770654481,3756,38.55363734275826,1436,14.534731734861396,77.25911226955019,79.65566720975548,63.27736057920528,65.04585652788953,77.07029691689192,79.47434131473928,63.204210509170814,64.97906385941141,0.188815352658267,181.3258950162009,0.0731500700344653,66.79266847811505,238.21028,167.72257666362236,249087.95081195823,175381.4861644227,555.5327,375.9690585135063,580120.1886378133,392356.9254478122,499.34804,245.51091830920927,517977.54959062254,253460.58798879295,2462.56198,1162.799126250237,2529596.185417168,1170558.6905436814,891.24916,410.93179083491503,909868.7482354416,407656.0369160352,1402.28636,611.1679374770258,1421495.425219328,598120.672758885,0.38021,100000,0,1082774,11322.179582361738,0,0.0,0,0.0,48518,506.5824558468311,0,0.0,45148,467.9033388056424,1055177,0,37857,0,0,0,0,0,72,0.7424215490468772,0,0.0,1,0.0104566415358715,0,0.0,0.04733,0.1244838378790668,0.3034016480033805,0.01436,0.3545069570477919,0.6454930429522081,22.91651743348218,4.149085286326058,0.3168264110756124,0.277689030883919,0.1956869009584664,0.2097976570820021,11.426245777351696,6.111653451785871,15.528062861540526,11252.267406923977,43.23688939486909,12.86989972590433,13.55599353017429,8.119472427306373,8.691523711484091,0.5838658146964856,0.8053691275167785,0.7016806722689075,0.5741496598639456,0.1218274111675127,0.752991452991453,0.925925925925926,0.8583815028901735,0.7043010752688172,0.1564245810055866,0.5073472544470224,0.7106164383561644,0.6374407582938388,0.5300546448087432,0.1116584564860427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0047556758839574,0.006627692182774,0.0089213136075434,0.0113332315987588,0.0135762736031613,0.0156820360136223,0.0177220617209591,0.0200059291972071,0.0223043380350891,0.0246060469360345,0.0267481260909744,0.0286763420178352,0.0306582878335222,0.0327048309029175,0.0348361079516079,0.0367461953650274,0.0387501946333108,0.0408587833901972,0.0427448445547238,0.0573327620261895,0.0714121121980853,0.085071304055615,0.0979624072026536,0.1104035315612162,0.1258592384684637,0.1366065073986339,0.146883624777554,0.1564976524817385,0.1651434278779547,0.1764693190644688,0.1860288699120031,0.1963441469313057,0.2050973001402524,0.2137050966724387,0.2234451354953354,0.2326231929463366,0.2401646740356418,0.2473926642024452,0.2530476245188717,0.2585368683645646,0.2645040987932308,0.2692973922122298,0.2732824427480916,0.2761676092043681,0.2790818343546155,0.2823037936571658,0.2862771098162716,0.2903489427941367,0.292382740204114,0.2893750168586302,0.2858502144324779,0.2833914873779825,0.2806847029810691,0.2783880054249817,0.2756218447421319,0.2719477596563802,0.2724046140195209,0.2729527687017808,0.2734137894097904,0.274341748226884,0.2753900471409692,0.2763190902249351,0.2770776377497722,0.2783699808795411,0.2789295235137303,0.2797240365312297,0.2845536076997594,0.288666271074034,0.2932265572606414,0.3006651282747387,0.3058922736376093,0.311575663026521,0.31708048908559,0.3202247191011236,0.3250029195375452,0.3274176567904948,0.3341288782816229,0.3415570175438596,0.3460207612456747,0.0,2.7735581207593025,50.30778403347007,135.50739455762147,189.4466013837478,fqhc1_100Compliance_implementation_low_initial_treat_cost,28 -100000,95621,48852,467.75289946769016,4689,47.96017611194194,3735,38.52710178726431,1380,14.05548990284561,77.28554750318864,79.71666603318751,63.27381344368565,65.07172202846738,77.10770357355935,79.54127937828235,63.20654435220858,65.0074146061854,0.1778439296292902,175.3866549051537,0.0672690914770655,64.30742228197062,239.67768,168.70681448300644,250653.81035546583,176432.80710618634,562.63147,380.1483897510234,587836.4376026186,397000.8446274028,495.85406,242.98895621878344,514797.64905198646,251305.1726676553,2425.67717,1140.2903878662207,2503132.753265496,1159497.513878779,880.27521,399.5012399022665,908310.2561152884,405921.8132336223,1352.23568,581.8000613678697,1379986.3837441567,581765.5010192518,0.38201,100000,0,1089444,11393.35501615754,0,0.0,0,0.0,49045,512.3351565032785,0,0.0,44846,465.274364417858,1049817,0,37629,0,0,0,0,0,101,1.0562533334727728,0,0.0,0,0.0,0,0.0,0.04689,0.1227454778670715,0.2943058221369162,0.0138,0.3591477156320426,0.6408522843679574,23.17721837152278,4.04046096579512,0.309772423025435,0.2880856760374832,0.1925033467202141,0.2096385542168674,11.209658799197298,5.999747663978288,14.845114561003587,11251.082942363942,42.92247912930423,13.268890040691636,13.131077205726069,7.953021802424383,8.569490080462142,0.58714859437751,0.8262081784386617,0.6974935177182369,0.5549374130737135,0.1251596424010217,0.7465034965034965,0.9207708779443254,0.8792569659442725,0.6848484848484848,0.1428571428571428,0.5167888846005403,0.7536945812807881,0.6270983213429256,0.516245487364621,0.1195286195286195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023611674098094,0.0044731156619906,0.0069142671486009,0.0088123189510596,0.0111504496805436,0.0131813505281708,0.0155155001989166,0.0178060640732265,0.019975248284256,0.0221009186526427,0.0239841610159928,0.0260689074075976,0.0280288214101904,0.0301412225543758,0.0322880419630964,0.0341546163553238,0.0362698059047244,0.0382082917912927,0.0404479880092428,0.0423168391188251,0.0564260701405947,0.0707129982814268,0.0839489308043923,0.0969247463626881,0.1098001521041068,0.1250542770299609,0.1355647646371267,0.1459514774229309,0.1560216146808624,0.1648366996132359,0.1769427452503479,0.1890292156756463,0.1986749915552504,0.2075641208243401,0.2163732374957281,0.2257745916193181,0.2340660937203142,0.2415378374723937,0.2487162592020358,0.2544262745951892,0.2589081058553865,0.2630112612085313,0.2676810769814183,0.2721818225454196,0.275883462076516,0.2799028012482885,0.2832448805887949,0.2867145330481719,0.2905596308872702,0.2930681833177181,0.2904571013478974,0.2872860635696821,0.2840435712677325,0.2816216372243389,0.2789476806264088,0.2753334965120548,0.2711851008663757,0.2708746618575293,0.2718785669261827,0.2728277337135728,0.2728936019267031,0.2729899744446629,0.2739394445255931,0.2751606233743136,0.278089552238806,0.2796406721908154,0.2800382419930827,0.2853993977212753,0.2902502157031924,0.2952615721720076,0.2994604316546763,0.3023645991716038,0.3050974046181614,0.3090595470226489,0.3143042190969652,0.3191068728921967,0.3228962818003913,0.323682108626198,0.3313577586206896,0.3314752879970271,0.0,1.953176822018669,50.08763582318486,137.7126571675232,186.7517158285449,fqhc1_100Compliance_implementation_low_initial_treat_cost,29 -100000,95815,49052,468.4235245003392,4723,48.259667066743205,3753,38.64739341439232,1467,14.955904607838022,77.35864855579545,79.66265763279725,63.35358995694328,65.05382786412417,77.16460657400268,79.47173636492327,63.28001240774192,64.98425294977956,0.1940419817927789,190.9212678739749,0.073577549201353,69.5749143446136,239.20732,168.3649896589947,249655.39842404632,175718.82237540538,559.09358,377.5761809590401,583003.1101602046,393557.4085049733,497.94457,244.3015708745558,516319.313259928,252464.3071855298,2454.83461,1157.9636246875052,2528644.137139279,1175128.5233914366,867.55604,397.1130630113777,888976.9034076085,397985.9552380909,1423.25622,611.9138996391594,1451625.4448677138,609654.590522109,0.38358,100000,0,1087306,11347.97265563847,0,0.0,0,0.0,48735,508.0937222773052,0,0.0,44946,465.7725825810155,1057058,0,37961,0,0,0,0,0,97,1.0019308041538382,0,0.0,0,0.0,0,0.0,0.04723,0.1231294645184837,0.3106076646199449,0.01467,0.3574190922043558,0.6425809077956443,23.25658039024349,3.946996778582151,0.2885691446842526,0.2928324007460698,0.2104982680522248,0.2081001865174527,11.136958357900248,6.1676105639628656,15.81321417749576,11301.487650076877,43.10981898231367,13.510106995903929,12.300372491879871,8.73954758455534,8.559791909974527,0.5837996269650946,0.8016378525932666,0.7054478301015698,0.5810126582278481,0.1113956466069142,0.7532355478861087,0.9229122055674518,0.8717948717948718,0.7184466019417476,0.1264367816091954,0.5080956052428681,0.7120253164556962,0.6381322957198443,0.5325342465753424,0.1070840197693575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024694856587656,0.0045174163619605,0.0069041029228382,0.0091631404304545,0.0116331050738625,0.0139260464879711,0.0160330847899604,0.0182693582773147,0.0202889075046482,0.0224127172478697,0.0243675099866844,0.0263614077196869,0.0285825833230592,0.0304399279650115,0.0325201575485121,0.0344970047510844,0.0365982368279458,0.0386892111837944,0.0405928972816885,0.0426318255166311,0.0572647700124148,0.0712836919473893,0.0856157563179355,0.0985286389910667,0.1112387496574837,0.1262958774979657,0.1370883955643194,0.147034732195096,0.1566804040058935,0.1644919533821527,0.1759353970390309,0.1867562421567354,0.1975987993996998,0.2063405242200148,0.2152348867677334,0.2248994203508927,0.2332254464285714,0.2401489330588645,0.2477025708515804,0.2544352945218815,0.2602966356610671,0.2656939260264676,0.271091752674936,0.2749205968718163,0.2786534605335116,0.2826188774126753,0.2864879061507291,0.2896386032262575,0.2918499922356229,0.2949111864227974,0.290602429084453,0.2877028568287689,0.2854472104693496,0.2823085127850327,0.2792059538634881,0.2748744255637491,0.2718701138714721,0.2715577988266527,0.2723008698618455,0.2739550068684994,0.2746708065240161,0.2756390028400126,0.2759399912121021,0.2772233113527,0.2785962390705473,0.2790830796450966,0.2813726047648831,0.2869027437684435,0.2926205979136035,0.2974728669888299,0.3020003620564808,0.3054202837179758,0.3099404201944183,0.3146332193082478,0.3197316936836221,0.3266736768314055,0.3307540585647094,0.3310497682853113,0.3387631143014908,0.3430685358255452,0.0,2.075288404722696,50.42075353757756,134.87229815666714,191.36333385716705,fqhc1_100Compliance_implementation_low_initial_treat_cost,30 -100000,95863,49062,466.9371916172037,4729,48.08946100163775,3781,38.87839938245204,1408,14.322522766865214,77.41454581429173,79.70440744869923,63.37712166936033,65.0685130941854,77.23526219806487,79.52842056562052,63.30959683216788,65.00443155629124,0.1792836162268543,175.98688307870702,0.067524837192451,64.08153789416815,242.22484,170.4069864699362,252677.67543264863,177760.55702829282,560.38651,378.0191972392331,584017.5354412026,393782.6806545383,500.01432,245.49736802936812,518179.2766760898,253435.16734723715,2424.17225,1154.9614743715426,2493400.613375338,1169693.7345300189,851.2424,394.96365132403815,867672.9916651889,391703.38016131066,1358.24904,582.7876408063153,1382319.6853843506,578898.7281008926,0.3825,100000,0,1101022,11485.348883302211,0,0.0,0,0.0,48841,508.8928992416261,0,0.0,45095,467.0310755974672,1046041,0,37563,0,0,0,0,0,95,0.9909975694480664,0,0.0,0,0.0,0,0.0,0.04729,0.1236339869281045,0.297737365193487,0.01408,0.349787578393688,0.650212421606312,22.889032832796342,3.9100968755824574,0.3070616239090187,0.3004496165035705,0.1991536630521026,0.1933350965353081,11.323040409660551,6.285575915477145,15.088340670171846,11302.03170734691,43.78367349911208,14.075405675571773,13.323898186681728,8.42715665293125,7.9572129839273344,0.5897910605659878,0.8045774647887324,0.7097329888027563,0.5524568393094289,0.1039671682626539,0.7598290598290598,0.896969696969697,0.8936170212765957,0.7111111111111111,0.1385542168674698,0.5135963232477978,0.733229329173167,0.6370192307692307,0.5026178010471204,0.0938053097345132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024295186516171,0.0047211387467706,0.006875082389446,0.0092786226219722,0.0114137615611342,0.0137160532768953,0.0160248573757131,0.0182891998857562,0.0203891925021706,0.0227684187916168,0.0249830987646733,0.0272136057771212,0.0294691847680894,0.0316311720929275,0.0335903992081821,0.035705063984053,0.0376796300319687,0.0401156524622782,0.0420005813229248,0.0440295402537965,0.0580740678955709,0.0723675960372862,0.0857618738346148,0.0984492949909183,0.1102687220958638,0.1255082535089294,0.1356235633097107,0.146549891586242,0.1555752325680635,0.1637555286633753,0.1759789156626506,0.1866479269149683,0.1973076630558785,0.2060861013986014,0.2141036066726741,0.2229758137682282,0.2316971203692349,0.239685856815424,0.2471855336999036,0.2534905012588693,0.2587305073577861,0.2645886656615593,0.2699009386008464,0.2740206704111328,0.2789299851859047,0.2822846866377611,0.2853569463204762,0.2895369087419121,0.2923853923853924,0.2950201174065035,0.2921210817207482,0.2887277521423863,0.2861639639133245,0.2830528499798282,0.2804040045021029,0.2768242635055761,0.2731011012903531,0.2731504924941603,0.2738212598157528,0.2740931263858093,0.2752353313241805,0.2761037278420133,0.2769537579459055,0.2781566942734399,0.2782888465204957,0.2804572785218446,0.2808599363218844,0.2870513853592016,0.2912429280483148,0.2954277633749705,0.2977931281959272,0.2998063739599141,0.3060342165400531,0.3124023510155494,0.3172394729567861,0.317758098345374,0.3233433734939759,0.3258336681398152,0.3302603036876356,0.3290662650602409,0.0,2.1446727768474743,50.72476634724729,148.0205472453248,180.7753721415689,fqhc1_100Compliance_implementation_low_initial_treat_cost,31 -100000,95712,48907,467.4648946840521,4631,47.22500835840856,3720,38.30240722166499,1435,14.627214978268135,77.36002699221102,79.73147385700145,63.33690834044432,65.08850263022798,77.17154555513831,79.5480257277638,63.26415533089369,65.02014454457351,0.1884814370727099,183.44812923764664,0.072753009550631,68.35808565446655,240.35968,169.07047047300065,251128.05081912404,176645.00843467974,560.34647,378.7569765094044,584921.3264794383,395196.4294021694,497.88421,244.8482134383365,517088.70361083245,253333.1676768285,2406.98127,1150.8584554616452,2479677.605733868,1167279.1452081718,855.0645,399.2631474936589,875998.2342861919,399776.4935365044,1389.5843,607.8256064032778,1417419.5921096622,604380.5082558055,0.3821,100000,0,1092544,11414.911400869274,0,0.0,0,0.0,48950,510.8554831160147,0,0.0,44997,467.00518221330657,1051298,0,37745,0,0,0,0,0,87,0.9089769307923772,0,0.0,2,0.0208960213975259,0,0.0,0.04631,0.1211986390997121,0.3098682789894191,0.01435,0.3625233450923428,0.6374766549076571,22.753595838933556,4.046624778971376,0.3094086021505376,0.278494623655914,0.2099462365591398,0.2021505376344086,11.415456027970082,6.280263823635915,15.454254243087997,11221.989753645232,42.91625206941959,12.876086551814304,13.041928899475066,8.61452881072253,8.383707807407687,0.5922043010752688,0.8040540540540541,0.7019982623805386,0.6043533930857875,0.1196808510638298,0.7464671654197839,0.9232409381663113,0.8470948012232415,0.7476190476190476,0.1573604060913705,0.5184743742550656,0.7054673721340388,0.6444174757281553,0.5516637478108581,0.1063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978912398334,0.004338614684386,0.0064641831484732,0.0087466222393791,0.0107815614955856,0.013125738259134,0.0155045871559633,0.0176672314192982,0.0199131101456682,0.0219803845287577,0.0242367077446738,0.0265389511724364,0.0286187322611163,0.0307659030982201,0.0325319851423854,0.0346150267263572,0.0365600977974846,0.0387262177843745,0.0407742955512331,0.0426192609882666,0.0576372788604131,0.0713799780208278,0.0843849986886965,0.0975304486842382,0.1095576994042912,0.1248572757643675,0.1350023868880284,0.1455756827518678,0.1554055497404567,0.1635807766573696,0.1748817565747654,0.184829661053634,0.1951195652173913,0.2043225869928831,0.2122338553580855,0.2212327629174281,0.2300320201715924,0.2377899980882336,0.2465644700439929,0.2526333867643691,0.2581585216365613,0.2639741027708633,0.2681124289042084,0.2733736309773176,0.2772214737404265,0.2812842387758368,0.2855213634601678,0.2873513568452078,0.2911143585034981,0.2947006339206874,0.2919149394057594,0.2883073665103615,0.2852354664263181,0.2823716328446595,0.2791902281193879,0.2752912042557094,0.2714806457212289,0.2714260036928708,0.2708343965297269,0.2717877690176859,0.2718276523975474,0.2730219855787178,0.2742726517040731,0.2748780487804878,0.2758423349309679,0.2776412776412776,0.2801698513800424,0.2837749069410992,0.2882936369351121,0.2938360500079126,0.296329900648732,0.2985279375296786,0.3019231966141781,0.3070848375451263,0.3123670335769124,0.3181924334423167,0.3204935299428227,0.3273453093812375,0.3316993464052287,0.3373860182370821,0.0,2.1991554943602325,52.37733729735838,130.1084969384729,185.9849941245024,fqhc1_100Compliance_implementation_low_initial_treat_cost,32 -100000,95748,48685,465.0541003467435,4618,46.95659439361658,3670,37.71358148473075,1404,14.287504699837072,77.33346816806463,79.69866550741125,63.32120940122799,65.07155920407955,77.14744197936494,79.51554918621315,63.24977090140749,65.00367622043501,0.1860261886996852,183.11632119809929,0.0714384998204948,67.88298364453738,241.15806,169.62735113600803,251867.4645945607,177160.20296612778,557.43796,376.6298296674925,581556.3876007854,392718.88673130766,495.26919,242.99737390409425,513666.8859923968,250969.30758162675,2379.489,1136.7929899375642,2444854.158833605,1147056.2282322915,826.65415,382.9369955296454,848499.4464636337,385126.57346611447,1359.9952,594.3237202401726,1385534.6325771818,589907.5304191406,0.37974,100000,0,1096173,11448.521117934575,0,0.0,0,0.0,48516,506.0471236997117,0,0.0,44685,463.0697246939884,1050540,0,37677,0,0,0,0,0,113,1.1801813092701674,0,0.0,0,0.0,0,0.0,0.04618,0.1216095223047348,0.3040277176266782,0.01404,0.3673172757475083,0.6326827242524917,22.674282648696646,4.043843655774059,0.3188010899182561,0.2841961852861035,0.2005449591280654,0.1964577656675749,11.467107606874736,6.346993384068644,15.20712979634466,11149.30429139672,42.33669385563575,12.863745576953468,13.188065409524295,8.293111538495568,7.991771330662415,0.5852861035422343,0.8207094918504314,0.6615384615384615,0.6032608695652174,0.102635228848821,0.7454702329594478,0.912472647702407,0.8526645768025078,0.7370892018779343,0.1058823529411764,0.5113500597371565,0.7491467576791809,0.5898942420681551,0.5487571701720841,0.101633393829401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101474238816,0.0044923538717397,0.0067291882345776,0.009063382714544,0.0109334635178291,0.0131047052714109,0.0152204053337682,0.0173195076646731,0.0194799885532071,0.0217211059134226,0.0238561454948074,0.0259945588008829,0.028289954032681,0.0303704390274044,0.0321582221671979,0.0342322043183016,0.0361476971504307,0.0381231062964346,0.0403385108019878,0.0424738574344873,0.0573185243950813,0.0714203481009346,0.0851845244965844,0.0980247796545993,0.1102416182410698,0.1251083899075777,0.1357467983745185,0.1457690260777009,0.1546077928736221,0.1641088339071029,0.1758058260794622,0.1868832236842105,0.1971808007309035,0.2057797272021263,0.2132839055298271,0.222661484114592,0.2306764902880107,0.2380245079836613,0.2453025007942631,0.2511819045547682,0.2569776852815354,0.2618485351539666,0.2665507698857589,0.2706641757083662,0.2745126581510729,0.2782103799928651,0.2813202738493828,0.2851682539682539,0.2883991469010534,0.2902184085307182,0.2870654396728016,0.2835482674797083,0.2811669595782073,0.2784791862059014,0.2754635810710577,0.2711094108645753,0.2672085263840352,0.2682926829268293,0.2682452820539048,0.2692362496437731,0.269022550776583,0.2703340809821745,0.270605139311149,0.2716340276079756,0.2712241577335375,0.2734780801994598,0.2751476781323309,0.2798875702685821,0.2820226288587791,0.2859616671258215,0.2877496731142071,0.2941362082566395,0.2983014861995753,0.3005968119664576,0.3054518297236744,0.3100426338228327,0.3157014743882049,0.3154918198343769,0.3182950456684196,0.3258212375859434,0.0,2.3931810628734325,50.16206996919065,133.95782979573494,181.2295222532571,fqhc1_100Compliance_implementation_low_initial_treat_cost,33 -100000,95804,49400,471.6504530082251,4621,47.13790655922509,3694,38.046428124086674,1401,14.258277316187216,77.34149214859087,79.68108677212116,63.33904717832892,65.072736244962,77.16344193663343,79.50632201926561,63.27107091335374,65.00826968591699,0.1780502119574407,174.76475285555182,0.0679762649751793,64.46655904501597,240.4952,169.33887624468508,251028.34954699173,176755.53864628312,563.49306,381.2405846398215,587647.5094985595,397412.7966865501,506.88298,249.2014194797938,525994.2591123544,257735.55686462947,2402.4558,1139.5017645417145,2476080.06972569,1157812.3392429675,866.02268,395.4424640361707,893187.7583399441,402020.3319163952,1357.0575,577.8586245549187,1382752.0145296643,575542.8290306169,0.38364,100000,0,1093160,11410.37952486326,0,0.0,0,0.0,49108,512.0349881007056,0,0.0,45829,475.293307168803,1048382,0,37573,0,0,0,0,0,88,0.9081040457600936,0,0.0,2,0.0208759550749446,0,0.0,0.04621,0.1204514649150245,0.3031811296256221,0.01401,0.3637312186978297,0.6362687813021702,23.16945357970979,4.002861934070558,0.3023822414726583,0.2872225230102869,0.2100703844071467,0.2003248511099079,11.696127934790006,6.617347524538242,14.813371200720043,11296.0288265019,42.15036148955023,13.02973710704103,12.647843507324358,8.494442678992533,7.978338196192307,0.5944775311315647,0.8124410933081998,0.7063563115487914,0.5811855670103093,0.127027027027027,0.7661431064572426,0.9156118143459916,0.8779761904761905,0.7209302325581395,0.1524390243902439,0.5172684458398744,0.7291311754684838,0.6325224071702945,0.5413907284768212,0.1197916666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0045517674847683,0.0069612867218022,0.0093281307157663,0.0114463041155822,0.013934868749427,0.0162573433420365,0.0184623553799181,0.0203388790608734,0.0224763972229617,0.0246903453367238,0.0268122118277692,0.029109236782555,0.031132493380997,0.0332053822024104,0.0353617315981518,0.0371846912148448,0.0389538985020125,0.0408899141675499,0.0429957524777213,0.0572093362965745,0.0719379326209247,0.0855313485701111,0.0982398991225765,0.1105151119167053,0.1258904601855962,0.1374675359092595,0.1474100619968735,0.1565915300546448,0.1653768650317269,0.1766396486582491,0.1872060715482664,0.1980204474093067,0.2067473197600078,0.2147734394757386,0.2240993733808648,0.2324746692229665,0.2398190045248869,0.2469283991439151,0.2538006080972955,0.259664108039476,0.264602565149906,0.2705269499273539,0.2751052530858291,0.2791616664848418,0.2819305256686136,0.2856928838951311,0.289490708441682,0.2929303358025966,0.2954745600084121,0.2923361926623978,0.2893354365269872,0.2857785146261275,0.2821008027903088,0.2782372821060121,0.2749168167526481,0.2718461927010986,0.2721737564855885,0.2714000988024462,0.2719972937364242,0.2733593764602531,0.2728742385111291,0.2741254649559075,0.2749303310667707,0.2748122735887532,0.2760288039098448,0.2780837161525951,0.2827107959022852,0.2889740524576331,0.2942039909548934,0.3002057142857143,0.3075491759702286,0.3093556928508384,0.3121988527724665,0.3157993789404347,0.3187086092715231,0.3238139106402579,0.3287838663678957,0.3346196251378169,0.3386303443057132,0.0,1.9597137914163727,49.621482536526734,126.13179380697903,194.0852100787223,fqhc1_100Compliance_implementation_low_initial_treat_cost,34 -100000,95715,48378,462.2055059290602,4674,47.76680771039022,3752,38.7400094029149,1411,14.459593585122498,77.3419109081298,79.71088812461603,63.33255108723839,65.08082417773761,77.16665986649356,79.53741148693605,63.26605979527869,65.01726343450153,0.175251041636244,173.47663767998256,0.0664912919596929,63.56074323608141,240.70354,169.14599041858514,251479.43373556912,176718.37268827783,556.24511,375.7854798730133,580708.1126260251,392169.6075568232,492.45946,241.37705502715207,511714.1722822964,250038.7358707876,2436.78236,1139.0541178548224,2519041.4773024083,1163216.1185340043,863.47762,388.7491220811858,892343.6451966775,396362.34872401,1368.6501,577.7357898240451,1404142.0675965103,580748.9531811108,0.37871,100000,0,1094107,11430.883351616778,0,0.0,0,0.0,48512,506.36786292639607,0,0.0,44476,461.7980462832367,1054236,0,37900,0,0,0,0,0,93,0.971634540040746,0,0.0,0,0.0,0,0.0,0.04674,0.1234189749412479,0.3018827556696619,0.01411,0.3501331694324933,0.6498668305675066,22.95179710723775,4.064015718142927,0.3062366737739872,0.2822494669509595,0.2100213219616204,0.2014925373134328,11.437359983646086,6.330567067059095,14.942004381289385,11141.715629949762,42.89390566570437,12.929057258976057,13.052008968952912,8.83196747863906,8.080871959136335,0.5866204690831557,0.8139754485363551,0.6919060052219321,0.5799492385786802,0.115079365079365,0.7661996497373029,0.9211711711711712,0.8674698795180723,0.7333333333333333,0.1538461538461538,0.5080459770114942,0.7365853658536585,0.620563035495716,0.5242214532871973,0.105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521467919637,0.0047836221749265,0.0070298234936092,0.0094356870073941,0.0115609875137267,0.013857212674106,0.0159535969499576,0.0180452355678941,0.0199409233536728,0.0217182158721061,0.0237931706116925,0.0260404366085822,0.0279097509306678,0.0300841738700404,0.0321961488452727,0.0342474957875476,0.0363611884961526,0.0383358067227762,0.0403231676250091,0.0422268075616415,0.056784475915946,0.0699130143510619,0.0829311285516431,0.096196726829063,0.1086452048436774,0.1240438025710204,0.1340469774448853,0.1442031299904184,0.1537401448625088,0.1624776064965296,0.1744243651323583,0.1848461238800156,0.1959671104150352,0.2048108462715941,0.2122858336815712,0.2213514859704466,0.2299913029904333,0.2385870664658679,0.2454841306738935,0.2519590459303323,0.2576083437398825,0.263257620061288,0.2685318821720099,0.2720837475595587,0.2750488773391298,0.2781392483056069,0.281706538475983,0.2853637450097897,0.2881575202463194,0.2911357413647851,0.2877305231464057,0.284665724594932,0.2806436678404579,0.2774077537222182,0.2744848601393429,0.2716007986465684,0.2682435198891373,0.267800264615083,0.2681815089461868,0.2695952071963165,0.2698196602077544,0.2703138836957591,0.2723228272448148,0.2720811051693405,0.2744910179640719,0.2750194552529182,0.2769898451239576,0.2810173309140962,0.2838953407023926,0.2877390237143196,0.2915346310547759,0.2936327608982827,0.2986224170319349,0.3010084161043294,0.3029395244336266,0.3053462081959491,0.31,0.3183938349219225,0.3197015750207239,0.3258640334219521,0.0,1.8268116700468315,50.088683690963606,130.94389790138376,196.48526403804965,fqhc1_100Compliance_implementation_low_initial_treat_cost,35 -100000,95706,49081,468.71669487806406,4789,48.701230852820096,3842,39.53775102919357,1495,15.234154598457776,77.33810060160408,79.7204747920694,63.31256206328344,65.07482965744532,77.14493499286006,79.53181998626638,63.23872675134168,65.00554232297654,0.1931656087440245,188.65480580301156,0.0738353119417567,69.28733446878255,240.24968,169.06219958232407,251028.8592146783,176647.44068535313,562.36173,380.2219666072341,586990.920109502,396679.17017452826,504.50043,247.77601753012732,523332.6541700625,256017.58126275905,2517.65898,1192.3299865687766,2592972.6767391805,1208180.7165368702,869.70508,397.6990664032188,892708.6180594738,399530.5448115258,1446.7944,624.9829032792026,1475295.4046768227,620857.2126082897,0.38168,100000,0,1092044,11410.402691576286,0,0.0,0,0.0,49022,511.5771216015715,0,0.0,45546,472.175203226548,1047187,0,37617,0,0,0,0,0,95,0.9717259106012162,0,0.0,0,0.0,0,0.0,0.04789,0.1254715992454412,0.3121737314679473,0.01495,0.3608826479438315,0.6391173520561685,23.114783010558067,3.98824324477833,0.3003643935450286,0.284487246225924,0.209005726184279,0.2061426340447683,11.428311527742132,6.337550522029925,16.09450899641355,11272.584093699585,44.21936269358365,13.46832694904281,13.169959880940198,8.975813146293579,8.60526271730707,0.5843310775637689,0.8023787740164684,0.6949740034662045,0.5753424657534246,0.1313131313131313,0.7637729549248747,0.9094736842105264,0.8702064896755162,0.7280701754385965,0.141025641025641,0.5030257186081695,0.7200647249190939,0.6220858895705521,0.5147826086956522,0.1289308176100629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024629543289209,0.004798133495638,0.0070968789977054,0.0095432648332215,0.0118028917084685,0.0136485399117937,0.0157681088468677,0.0177617535007711,0.0198701232295341,0.0220037884605539,0.0241081225197141,0.0263792908704447,0.0284912295132534,0.0305748357465038,0.0327944953939156,0.0348982607707172,0.0370159453302961,0.0389068725099601,0.0409830952529474,0.0432440879258256,0.0576605744125326,0.0714898873581508,0.084397527780984,0.096999148023098,0.1097342332841172,0.1254495832099183,0.1360158745317756,0.145741486167018,0.1552313775782836,0.1651717700577216,0.1770378751144873,0.1882226841626607,0.1987437678256515,0.2070082514390772,0.2155962797864729,0.2243330414639282,0.2325028198742503,0.2404412178513141,0.2475670274014603,0.2535333967606231,0.2595011463906065,0.2654898334250296,0.270330112721417,0.2743951395463097,0.2769537276625727,0.2816701615887504,0.2854619701372883,0.2890496630959507,0.2925559469539991,0.2948934374340578,0.290492649926701,0.2864408643536592,0.2835356846414654,0.2803138476627291,0.2779928506800753,0.2744084310996222,0.2703308852562583,0.2718360800615354,0.2723462973373537,0.2727806544600438,0.273452236436642,0.2747023516678146,0.2766201770502756,0.2774271249191516,0.2776514516862539,0.2785136984532755,0.2803783173348391,0.2855985542468997,0.2887306824101406,0.2919050231173105,0.2964140215785468,0.3005837589909308,0.304366596768225,0.3065259402408206,0.3091109276080374,0.3149889701613839,0.3197258641239571,0.3186119873817035,0.3207899653055778,0.3270018621973929,0.0,2.3545087300489165,51.81470922020204,140.87805891247817,191.2051725528903,fqhc1_100Compliance_implementation_low_initial_treat_cost,36 -100000,95648,48701,465.456674473068,4720,48.06164268986283,3721,38.29667112746738,1394,14.11425225828036,77.27782633283482,79.68784621950599,63.2892740309558,65.07179319056588,77.09535477514653,79.51126323524043,63.22000384794424,65.00748893987026,0.182471557688288,176.58298426555064,0.0692701830115538,64.30425069562773,240.37772,169.09987080055848,251314.71646035463,176793.73328506458,557.27251,376.098562197742,582025.2279190364,392609.1216075316,491.13292,240.68801870028804,510118.0160588826,248934.7390579213,2427.34194,1145.937596511502,2498455.231682837,1158836.187600234,817.28457,378.28903009528665,841124.7804449649,382156.0705844785,1353.03006,583.7744517191621,1372218.3840749415,575462.6254315063,0.38106,100000,0,1092626,11423.396202743394,0,0.0,0,0.0,48652,508.0294412847106,0,0.0,44398,460.7519237203078,1053783,0,37792,0,0,0,0,0,83,0.8677651388424222,0,0.0,0,0.0,0,0.0,0.0472,0.1238650081352018,0.2953389830508474,0.01394,0.3590420133955754,0.6409579866044246,23.11082337746278,4.003029312413074,0.3198065036280569,0.2813759742004837,0.1972588013974738,0.2015587207739854,11.239733109009869,6.194831198109815,15.05032839990925,11289.21780772199,42.70637166523602,12.908058878504654,13.406094038439967,8.157048882672685,8.235169865618712,0.5775329212577264,0.7994269340974212,0.6983193277310924,0.55858310626703,0.0946666666666666,0.7690311418685121,0.9409190371991248,0.8587896253602305,0.7311827956989247,0.1506024096385542,0.4912280701754385,0.6898305084745763,0.6322657176749703,0.5,0.0787671232876712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340757554263,0.0047055005679052,0.0069640427994233,0.0089840137402563,0.0114349661732539,0.0137325414370269,0.0159714431412544,0.0184562901529002,0.020570364763405,0.0227205211993321,0.0247487179487179,0.0266242103641312,0.028574662495884,0.0308061756642549,0.0326657030766054,0.0345455297670762,0.0368075273051335,0.0388557188100306,0.0408341658341658,0.0428757624732808,0.0569738643369943,0.0705780086507545,0.0838240387945964,0.0968997958453476,0.1090698042526249,0.1246930307392666,0.1359683122896069,0.1461096728140548,0.1559054107530562,0.164843305455053,0.1764959429316494,0.1873951126557746,0.1972399682204542,0.2056828376988555,0.214203163351788,0.2235444019721899,0.2321586050613411,0.2397448302243424,0.2472796178416221,0.2538509075095557,0.2587745664739884,0.2639432571074679,0.2686641284555537,0.2724027646347161,0.2767502580605987,0.2813898167206932,0.2848276293561909,0.287675066464834,0.2918204779483194,0.2953643257500824,0.2928830273066508,0.289289895998347,0.2873299019953465,0.2847353736284388,0.2818294006571806,0.2784414629663664,0.2763730783236491,0.2759396397431897,0.2763065785654527,0.275768599757472,0.2762050783441158,0.2765785319652723,0.2770429804216552,0.277998039914469,0.2791494049187001,0.2807676370040401,0.2833810644511866,0.2882987395748416,0.2936321168908714,0.2971739303008653,0.3003682990042286,0.3046119710497121,0.3044622712459263,0.3102239829346335,0.3140015015015015,0.3171513353115727,0.3217457886676876,0.3275510204081632,0.3346281908990011,0.3404336249524534,0.0,2.278037018461461,49.973881620853,130.82718296930798,192.32034297083732,fqhc1_100Compliance_implementation_low_initial_treat_cost,37 -100000,95823,49009,467.6643394592113,4748,48.474792064535656,3765,38.75896183588492,1426,14.495476033937573,77.39792083527668,79.70178030327004,63.37134666233783,65.07166697997373,77.2148987722034,79.52350918968874,63.30162613868582,65.00634003130644,0.183022063073281,178.2711135813031,0.069720523652009,65.32694866729116,240.36012,169.05786693195975,250837.37724763367,176427.0097283112,562.23422,379.89839804385366,586171.8063512936,395894.8075039903,498.97942,245.0939322101167,518012.9092180374,253639.9419190548,2473.28695,1158.0258599237047,2547018.5446082884,1174871.2613646418,866.83233,388.7705698741746,889609.0604552142,390759.3310803789,1393.6611,594.7555030372371,1417950.7216430292,589056.7886440002,0.38208,100000,0,1092546,11401.69896580153,0,0.0,0,0.0,49029,511.0777162059214,0,0.0,45051,467.3408263151853,1052313,0,37696,0,0,0,0,0,93,0.9705394320778936,0,0.0,2,0.0208718157436106,0,0.0,0.04748,0.1242671691792294,0.3003369839932603,0.01426,0.3479838709677419,0.652016129032258,23.19913714526893,4.088413157832299,0.3078353253652058,0.2717131474103585,0.2087649402390438,0.2116865869853917,11.31320498957538,6.0481779972403205,15.240001300285204,11277.620222268852,43.05694196827008,12.60548608268944,13.10731217495776,8.726238016511802,8.617905694111078,0.5803452855245684,0.8142717497556208,0.6988783433994823,0.5750636132315522,0.1129234629861982,0.7666370896184561,0.9379157427937916,0.8710691823899371,0.7230769230769231,0.1411042944785276,0.5007581501137225,0.7167832167832168,0.633769322235434,0.5262267343485617,0.1056782334384858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002328500850409,0.0043672547092381,0.0066027689030883,0.0088949361818791,0.0111723324658425,0.0133215281594105,0.0156609810274907,0.0176383575618464,0.0199133579908862,0.0221092263305436,0.0243120299981558,0.0265196204154911,0.0285819960137259,0.030686589281304,0.0328276061099544,0.0348978875420736,0.0370573447408986,0.0390543215762689,0.0411214953271028,0.0430144456933516,0.0576551954351522,0.0719380817906076,0.0849560120377069,0.0977784319703931,0.1097091779190251,0.1256039158059435,0.136158299930012,0.1462677353088312,0.1558857777730297,0.1649594010447393,0.1760182652335925,0.1876629206191254,0.1982279719519487,0.2073866742472283,0.2156084365171875,0.2239025740381954,0.2324417139607747,0.2398435216619078,0.2461400684698574,0.2522448325955412,0.2588342693383254,0.2644984234497256,0.2690052950075643,0.2737658049930021,0.2785484945780578,0.2831700691977729,0.2860654305891748,0.2896572718739694,0.2913707157062788,0.2940055212304456,0.2901829390873149,0.2872933473955266,0.2843918312387791,0.2817758219000776,0.2786422126904304,0.2741574402631619,0.2710159754466042,0.2716633750632477,0.2725187337513381,0.2735267468509602,0.2743176525384257,0.2750049125564944,0.2761291934778534,0.2776120067693952,0.2799808314364442,0.2814380576883171,0.2829480508402286,0.2878949682769018,0.2940086041061873,0.2977614591969679,0.3014438794042862,0.3049536423841059,0.3101110901901713,0.3134848484848485,0.3133713857958267,0.3168526130358191,0.3212332928311057,0.3238817891373802,0.3250873890830869,0.3332086761406133,0.0,1.9498604521863725,48.99444046652909,138.11595669958072,193.00116423328924,fqhc1_100Compliance_implementation_low_initial_treat_cost,38 -100000,95556,48614,464.5652810917159,4672,47.69977814056679,3656,37.66377830800787,1405,14.337142617941312,77.19945181010942,79.66917522441453,63.224607941291474,65.05322513765562,77.01837135733484,79.49231700518364,63.156450676300565,64.98924433251995,0.1810804527745801,176.85821923089406,0.0681572649909085,63.98080513567095,239.40796,168.4257044789906,250541.5881786596,176258.18481203754,556.74349,376.2125838323576,582002.6581271715,393077.37990989065,492.68906,242.1949372945257,512195.278161497,250882.16060992752,2370.50679,1128.5851099639403,2443452.185106116,1143920.8782036768,836.49948,385.12023198827984,861635.2714638537,389313.871794884,1365.05468,580.9315405356243,1393319.45665369,576386.491146768,0.37907,100000,0,1088218,11388.254008120894,0,0.0,0,0.0,48612,508.0685671229437,0,0.0,44475,462.0327347314664,1050542,0,37750,0,0,0,0,0,92,0.9627862195989786,0,0.0,1,0.0104650676043367,0,0.0,0.04672,0.1232490041417152,0.3007277397260274,0.01405,0.3748463744367062,0.6251536255632937,22.80524799205472,4.0754591749090885,0.2975929978118162,0.2825492341356674,0.2188183807439825,0.2010393873085339,11.392944158539708,6.1943889582461615,15.120436754404253,11235.257307641725,42.43006813803278,12.821087593169976,12.432451263604934,8.896588908835826,8.279940372422042,0.587800875273523,0.8063891577928364,0.7150735294117647,0.5725,0.1088435374149659,0.7608318890814558,0.9145833333333332,0.898989898989899,0.7376237623762376,0.1314285714285714,0.5079936051159073,0.7124773960216998,0.6460176991150443,0.5167224080267558,0.1017857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023821350011657,0.0048598851484344,0.0071492403932082,0.0092931511306328,0.0115140285865537,0.0139962078737588,0.0160943001479818,0.0184038422235847,0.0204666393778141,0.0225560827637094,0.0246466222527895,0.0266418516652442,0.0285987930217709,0.0306778209875906,0.0329244473839222,0.0353194484700426,0.0374607191379471,0.0394832567710823,0.0414904477176607,0.0432109076482993,0.0570723236887801,0.0711267236407487,0.0846165974667577,0.0968452330776363,0.108853962986059,0.1250225280142483,0.1357495425726564,0.1460783267527478,0.1556936261381896,0.1646074604557136,0.1753703943674139,0.1865600381952733,0.1968956565370099,0.2059091258047181,0.2141942887407865,0.2235635119827643,0.2314198449369567,0.2385411143575916,0.2465334258511449,0.2525890376357666,0.2590102361383212,0.2640308514628657,0.2680182583437074,0.2724610195532402,0.2763287611211859,0.2800582888757162,0.2827328288342557,0.2855394500325085,0.2891339604281543,0.2923369773559465,0.2894722641916684,0.2868104920923569,0.283761117453874,0.280852417302799,0.2781703235403496,0.2745581901506675,0.271021377672209,0.2704918032786885,0.2714398111723052,0.2725420457185751,0.2736546034127133,0.2746121158217215,0.276436407879004,0.2773567612277289,0.2767021813896438,0.2787526399499387,0.2785689871254415,0.2833187061183551,0.2894322042803601,0.2912625187288069,0.2964263210009902,0.3038239916186485,0.3066046511627907,0.3094396389620158,0.3126909191891141,0.3154685117860912,0.3191585274229902,0.3212169103121295,0.3148247978436658,0.3103057757644394,0.0,2.237917975505226,50.1925280612077,135.63954181116702,180.8014077958515,fqhc1_100Compliance_implementation_low_initial_treat_cost,39 -100000,95679,48736,466.3719311447653,4722,48.140135243888416,3777,38.88000501677484,1446,14.726324480816062,77.33990302576841,79.7290594126315,63.32261558699434,65.08849786438134,77.14268519756781,79.53568748152989,63.248178670974674,65.0177867466383,0.1972178282005927,193.3719311016091,0.074436916019664,70.71111774304484,240.0739,168.94556482905188,250915.9794730296,176575.38731493,558.17241,376.9521740853894,582772.6146803374,393377.5650132996,501.52589,246.26319067691907,519979.9224490223,254222.72517284623,2440.58771,1164.906110481076,2513688.259701711,1180882.5938772112,883.43923,407.7390508725673,911033.121165564,413884.76992936543,1404.89498,607.4100887608712,1431858.8195946864,605141.348896687,0.38097,100000,0,1091245,11405.271794228618,0,0.0,0,0.0,48720,508.5650978793674,0,0.0,45308,469.4133508920453,1053569,0,37820,0,0,0,0,0,84,0.8779355971529803,0,0.0,0,0.0,0,0.0,0.04722,0.1239467674620048,0.3062261753494282,0.01446,0.3511218920557913,0.6488781079442086,23.12497914324149,3.992265604015673,0.316388668255229,0.2814402965316389,0.1975112523166534,0.2046597828964786,11.58389460568559,6.450381075671127,15.68246510431929,11247.047624324588,43.59131913933572,13.196562560274,13.529206332627153,8.373245233171382,8.492305013263186,0.598623245962404,0.8024459078080903,0.702928870292887,0.628686327077748,0.1280724450194049,0.7760067114093959,0.9324894514767932,0.8635014836795252,0.7874396135265701,0.1666666666666666,0.5168278529980658,0.6977928692699491,0.6398601398601399,0.5677179962894249,0.1168614357262103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021675276005266,0.0042268511479397,0.0066564519893253,0.0088571080323406,0.0111548356263282,0.0133247826706569,0.0155746728095568,0.0176267657385482,0.0200055201741921,0.0220784670972496,0.0241942097925038,0.0263817032109715,0.028505028484462,0.0305511778581214,0.0326349468469398,0.0347922288739311,0.0367273782142931,0.038592084366988,0.040362429651822,0.0422182841655373,0.0570777925184635,0.071515316484851,0.0845599420879801,0.0970439722280664,0.1094888970937285,0.125937523140557,0.1368526023211898,0.1472757655423456,0.1564085311802462,0.1653246989954005,0.1765554670169922,0.1879733414116934,0.1980231394893654,0.207484257477698,0.2156716007263522,0.2251340215320544,0.233401390144035,0.2407128231667529,0.2477737569906866,0.2541998282278843,0.2604808770976211,0.2649396801645937,0.2692539714458073,0.2739420935412027,0.2764098394475929,0.2809529672494459,0.2848355275496043,0.2882469562565132,0.2909328536859949,0.2938043062642564,0.2901732859756754,0.2862580733818881,0.283082336382829,0.2802588248887862,0.2767656971478627,0.2729745423428379,0.2693382596750509,0.2698547829930747,0.2697548610992974,0.2699690732643702,0.2711364823520633,0.2721476642134676,0.2729488728697029,0.2732295217091047,0.2741193386053199,0.275038920601972,0.2759002298459181,0.2809689448779418,0.2879725807015703,0.2928242108996335,0.2969505308335216,0.300405882663012,0.3016438527407963,0.3025977948950309,0.3085363585642551,0.3133960047003525,0.3171846435100548,0.3213779128672746,0.320733740967204,0.3221060782036392,0.0,2.2821674811399086,51.64967245762822,139.96420526637124,184.5953211646034,fqhc1_100Compliance_implementation_low_initial_treat_cost,40 -100000,95791,49196,469.6474616613252,4739,48.36571285402595,3792,39.0746521071917,1461,14.876136589032374,77.331780499572,79.6716246592378,63.32970022966426,65.06229969535582,77.12960630219514,79.47374667650578,63.25210542576905,64.98896206033626,0.2021741973768627,197.87798273202384,0.0775948038952094,73.33763501955559,240.44482,169.2566545406841,251009.8234698458,176693.69203858828,561.48192,379.2860108959231,585665.8349949368,395464.3451847491,505.20704,248.13419922168237,524460.4503554613,256739.7041778197,2483.48205,1179.56168737844,2561793.96811809,1200580.1143932524,892.57691,409.04815688966414,918255.619003873,413480.897881496,1419.71644,622.1094050835484,1447886.2941194894,619839.4659020337,0.3827,100000,0,1092931,11409.537430447535,0,0.0,0,0.0,48872,509.68253802549305,0,0.0,45570,472.74796170830246,1047965,0,37637,0,0,0,0,0,109,1.137893956634757,0,0.0,0,0.0,0,0.0,0.04739,0.1238306767703161,0.3082928887951044,0.01461,0.3702429149797571,0.629757085020243,22.82193120982613,4.038630580344321,0.2993143459915612,0.2908755274261603,0.1964662447257384,0.21334388185654,10.94839161458992,5.902765637971559,15.866092905687664,11262.978572913811,43.67907068408043,13.550088498943156,12.969393963271171,8.2520861181247,8.907502103741397,0.5751582278481012,0.7815049864007253,0.7066079295154185,0.5624161073825503,0.1211372064276885,0.75,0.9111570247933884,0.8852941176470588,0.6647398843930635,0.1657754010695187,0.495782208588957,0.6801292407108239,0.630188679245283,0.5314685314685315,0.107717041800643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094454292225,0.0042678723490531,0.0067581965965478,0.0089804543053354,0.0112789219425375,0.013289341031986,0.0152627393405517,0.0174364000163338,0.0196377093087444,0.0215181450580948,0.023834419977857,0.0259772262893637,0.0281845103442602,0.0301922165681204,0.0323249837446202,0.0343433716879115,0.0364255900904166,0.0386881301082852,0.0409859916032755,0.0430667346960025,0.0579371373711232,0.0718611730002824,0.0851215497992515,0.0974538423546966,0.110104213864975,0.1259458088515027,0.1365544436906377,0.1459458884587569,0.1551729658764636,0.1646360411911574,0.1761482310889085,0.187414130705237,0.1976354658371582,0.2070659010117582,0.2150302123116546,0.2246080549554041,0.2335639366212898,0.241738465345421,0.2489395967065121,0.2553237772485803,0.2617588567200074,0.2666588744082754,0.2717626601369814,0.2754526174528811,0.2789347775929277,0.2823543913713405,0.2850239731600756,0.2880308781941861,0.2909976804157109,0.2941215288776264,0.291447952838569,0.2880440756210156,0.2849003249813593,0.2810076119769474,0.2777002346093309,0.2736084526452798,0.2704520990312163,0.270768725900402,0.2704369213951423,0.2703319021574531,0.2714331144658323,0.2714263186943152,0.2719279882771614,0.2729342948360161,0.2739251707223237,0.2744250253952543,0.2757424052793264,0.2791389898483519,0.282168540110312,0.2885860979462875,0.2933387747698726,0.2965316388668255,0.2994895065229722,0.3060433295324971,0.3103157500234236,0.3151622418879056,0.3228322373451598,0.3279246794871794,0.324575807334428,0.3249027237354085,0.0,2.0382589782678338,51.41031105317764,137.5752591952861,191.45384510991835,fqhc1_100Compliance_implementation_low_initial_treat_cost,41 -100000,95700,48895,467.59665621734587,4693,48.0564263322884,3754,38.77742946708464,1384,14.106583072100314,77.34192318165195,79.71639066165365,63.32298576779221,65.07467850073671,77.15990517333583,79.53928718027613,63.253388181499616,65.0096161733417,0.1820180083161204,177.10348137751453,0.0695975862925877,65.06232739501172,240.35286,169.15490969199854,251152.41379310345,176755.39152768918,560.6281,378.4321674852952,585203.8349007315,394821.4602772155,500.03048,244.88234641986543,520552.64367816097,254284.85084144212,2420.7961,1136.6422798614913,2501054.127481714,1159200.6059158738,846.8772,386.7974686893516,874562.3928944619,393810.32255940576,1342.53916,581.9413802552193,1370106.7711598745,577890.5832999178,0.38023,100000,0,1092513,11416.01880877743,0,0.0,0,0.0,48864,510.09404388714734,0,0.0,45006,468.2967607105538,1049241,0,37659,0,0,0,0,0,103,1.0553814002089863,0,0.0,0,0.0,0,0.0,0.04693,0.1234252952160534,0.2949073087577242,0.01384,0.3729366211534543,0.6270633788465457,23.08085449587028,3.954220035458294,0.2940863079381992,0.2991475759190197,0.2099094299413958,0.1968566862013852,11.1627073614205,6.053847508052354,14.948549616700324,11218.523852556837,43.11553405658682,13.784823870275094,12.463530232840114,8.698438015439576,8.168741938032042,0.595631326584976,0.8343722172751559,0.6929347826086957,0.5697969543147208,0.115020297699594,0.7713280562884784,0.9423076923076924,0.8774834437086093,0.7386934673366834,0.1428571428571428,0.5192969048528849,0.7572519083969466,0.6234413965087282,0.5127334465195246,0.1068301225919439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401850895578,0.0043583584192335,0.0062996439331689,0.0086944156661994,0.0109220709222743,0.01300116063611,0.0149970434108843,0.0173077512176692,0.0194588735735612,0.0214815952490656,0.0236237426816639,0.0254975252099977,0.0275852138316911,0.0297769306063572,0.0320915781541923,0.0340826835977085,0.035995069452357,0.0381661165431483,0.0403702163061564,0.0424008753191267,0.0573666892985846,0.0710471204188481,0.0850197329750608,0.0977239485231445,0.1097932868343023,0.1247592439731623,0.13567977915804,0.1456646783127396,0.1550992485542954,0.163802449522869,0.1751716999644201,0.1861875521188689,0.1972027210884353,0.2066795793528336,0.2147645097024864,0.2235146842146077,0.2313762696729545,0.2393291310220621,0.246483666061706,0.252258958531362,0.2576476305072195,0.2629202442505206,0.2687651618247441,0.2727338103628061,0.2765502581232918,0.2808673155106566,0.284707531700234,0.2868662715270535,0.2899744795512546,0.2925895614984556,0.2902995335795745,0.286962152629476,0.284107565678205,0.2810840452551373,0.2791193813150019,0.2752782400268698,0.2712845672098563,0.2717432244329812,0.2717976685527302,0.2729196301564722,0.272941000858305,0.274335585807443,0.2758217920907725,0.2761962042234697,0.2764208211844558,0.2759173540896278,0.2785024563781128,0.2849363661822821,0.288053281531844,0.2930398618957941,0.2983487391187292,0.3012995179207713,0.3054221002059025,0.3081060889054912,0.3132585509378447,0.3161959654178674,0.3204690515066053,0.3203140333660451,0.3234190782422294,0.3211009174311927,0.0,1.7692147810776204,49.907497244650784,136.5044103161899,192.90034627992367,fqhc1_100Compliance_implementation_low_initial_treat_cost,42 -100000,95734,49267,470.7731840307519,4689,47.63198027868887,3782,38.88900495121901,1380,13.986671402009735,77.32392886815877,79.68806412823693,63.31606620966248,65.06501035663238,77.13684256669865,79.50638892448681,63.243822792150745,64.99773760401385,0.1870863014601269,181.67520375011748,0.0722434175117356,67.27275261853549,240.76712,169.44959481679066,251495.47705099548,177000.0325181094,561.63296,379.3073722398671,586030.678755719,395591.79438802006,500.86499,245.94512933385272,519596.5278793324,254149.86500581485,2452.42166,1159.464437528455,2524095.190841289,1174498.2917140387,877.24177,399.2633217584235,903526.061796227,404332.2737526113,1344.95522,588.206737042158,1365923.4754632628,580655.3623618978,0.38425,100000,0,1094396,11431.612593227068,0,0.0,0,0.0,48912,510.27847995487497,0,0.0,45335,470.0106545219045,1046750,0,37582,0,0,0,0,0,95,0.981887312762446,0,0.0,2,0.0208912194204775,0,0.0,0.04689,0.1220299284320104,0.2943058221369162,0.0138,0.3741123960235342,0.6258876039764658,22.85963922439031,4.09278233894349,0.3059227921734532,0.2884717080909572,0.2014806980433633,0.2041248016922263,11.703277965628825,6.43780744856837,14.9517482823033,11258.307868887958,43.38641500418233,13.415460975642445,13.063919439140529,8.361119073391489,8.545915516007867,0.5980962453728186,0.8267644362969753,0.7035436473638721,0.594488188976378,0.1204663212435233,0.7586821015138023,0.9147121535181236,0.867109634551495,0.7653631284916201,0.1436781609195402,0.530274539300489,0.7604501607717041,0.6460280373831776,0.5420240137221269,0.1137123745819397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023600433518692,0.0046132476249378,0.0068910223882111,0.0091243471722652,0.0111791512389632,0.0136863543788187,0.0157820687967701,0.0181081384547857,0.0200492797186353,0.0221357632845295,0.0244522591426843,0.0267459290745189,0.0288889574273406,0.0309110573209043,0.0329068207615313,0.0345857667062897,0.0366054504210559,0.0387972640559643,0.0408776581916497,0.0430184826321601,0.0576099893508174,0.0713837333389131,0.0845454450119026,0.097165991902834,0.1093359486222278,0.125,0.1352320719879454,0.1452653774067132,0.1549686985876973,0.1633016308718355,0.1749765829394601,0.1862771606874398,0.1972751391788448,0.2061541153185859,0.215239436000088,0.2250055370985603,0.2330223838960923,0.240734906955289,0.2476047768242292,0.2538288701393983,0.2592159225190574,0.2644802342606149,0.269921782412894,0.2743303383995297,0.2780386337096146,0.2825199491866158,0.2866127132870637,0.2889041741500758,0.2914911541701769,0.2945605368134626,0.2912281174615581,0.2875584916047344,0.2842628864526674,0.2800728513197074,0.2773841880913128,0.2740613917084505,0.2703287333817539,0.2713170683815227,0.2714441379780025,0.2726286588185084,0.272815443439336,0.2739890538252549,0.2748311233425068,0.2757546771072008,0.2764039031856883,0.2772420943494038,0.27829014371393,0.2840592416319629,0.2869196834955535,0.2908581795235841,0.296133845806014,0.2969292249447891,0.304827156649019,0.3066606389391199,0.3136576239476146,0.3192466156562684,0.3212466287084207,0.3269568612141323,0.3282801881860951,0.3341997772001485,0.0,2.4019068900521097,48.337696719156376,144.09143000838148,190.05625002703053,fqhc1_100Compliance_implementation_low_initial_treat_cost,43 -100000,95805,48961,466.593601586556,4711,47.90981681540629,3734,38.494859349720784,1447,14.863524868221909,77.4066300966336,79.74594398025086,63.35719594835807,65.08776015774966,77.21907483483919,79.55782830622572,63.285448013498,65.01751670544995,0.1875552617944151,188.1156740251413,0.0717479348600704,70.24345229970663,240.47012,169.1559468320568,250999.32153854184,176562.52474511432,558.79992,377.98760400436,582799.8538698398,394070.3345382391,497.80614,244.3335243734816,515925.8285058192,252306.9762870445,2470.07991,1162.0932621521376,2548080.1210792754,1182952.877881983,875.0837,395.63446391368666,903377.2558843484,403007.7195085489,1412.8881,606.0632493923034,1452069.056938573,612570.266180873,0.38156,100000,0,1093046,11409.06006993372,0,0.0,0,0.0,48768,508.5433954386514,0,0.0,44972,465.8420750482751,1051557,0,37780,0,0,0,0,0,91,0.9394081728511038,0,0.0,3,0.0313136057617034,0,0.0,0.04711,0.1234668204214278,0.3071534706007217,0.01447,0.3618795768917819,0.638120423108218,22.926671744613767,4.22725669847558,0.2905731119442956,0.2777182645956079,0.2177289769683985,0.2139796464916979,11.598664283992504,6.129564788562189,15.410034228358644,11237.888748824813,42.51543307667395,12.76438019203646,12.207129523201298,8.989213481941103,8.554709879495087,0.5747188002142475,0.8061716489874639,0.6866359447004609,0.5916359163591636,0.1051314142678347,0.7551385165326184,0.937354988399072,0.8481848184818482,0.7387387387387387,0.1226993865030674,0.4975143403441682,0.7128712871287128,0.6240409207161125,0.5363790186125211,0.10062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.004562876437306,0.0068600886940461,0.0089816404702152,0.0109030624179981,0.013054723936376,0.0152933259925368,0.017751237686929,0.0202379492211455,0.0224425887265135,0.0245557218111382,0.0268120998194056,0.0287267719125143,0.0308118347093825,0.0332443381541918,0.0352842774829103,0.0373267121870473,0.0396110425759099,0.0415774928834126,0.043673805086775,0.0579704096325201,0.0721874803923619,0.0856304370611047,0.0988177184593557,0.1106264618496744,0.1251598178340853,0.1359102905171226,0.1457035320135241,0.1553703664184041,0.1639547962080231,0.1755369517496664,0.1871917985984947,0.1983002217102117,0.2067297191035778,0.2146443284811864,0.2231959105091947,0.2311570118890946,0.2389388489208633,0.2462407294005579,0.2522774090180819,0.2577486444929999,0.2628682913152176,0.2683529634359775,0.2722234192822428,0.2763819095477386,0.2802546986230509,0.2829707107735809,0.2868566924328722,0.2898788882563014,0.2928951948942455,0.2900220774325561,0.2872476395970479,0.2846086736273323,0.2816779462907112,0.2782429568593743,0.2750805109968101,0.2713025673334383,0.2709492194509241,0.2717172230408346,0.2719845802903574,0.2729318553786639,0.2729534368939646,0.2736156351791531,0.2749274816766679,0.2762409913659824,0.2766439909297052,0.277393018018018,0.2832687238331524,0.2878173819668156,0.2905307623107913,0.2939751469202817,0.2976047591713197,0.3026746556303663,0.3069601427721594,0.3103511338697878,0.3123706599218211,0.3157973846385089,0.3172074729596853,0.3203146189313805,0.3327003418154197,0.0,1.792005260721062,48.6864342079393,133.4349081064353,193.98684955566924,fqhc1_100Compliance_implementation_low_initial_treat_cost,44 -100000,95680,49228,470.9970735785953,4677,47.50209030100334,3728,38.2943143812709,1419,14.391722408026755,77.29491858535671,79.69776002655826,63.29396199958445,65.07424384561628,77.11160117964273,79.52154400220168,63.22402059791487,65.01007638551548,0.1833174057139786,176.21602435657735,0.0699414016695882,64.16746010080487,240.2774,169.11369428675036,251125.8152173913,176749.05886531377,562.56568,380.7580414143167,587276.943979933,397261.6926671086,508.48263,249.91042874857104,527354.2537625418,258008.7111405561,2436.65305,1152.7839279918594,2504756.302257525,1163037.251139317,848.34176,389.9484041411298,870918.9381270903,391934.1014715814,1378.39372,588.4826586547539,1399180.685618729,578019.3924753092,0.3814,100000,0,1092170,11414.809782608694,0,0.0,0,0.0,48973,511.1204013377926,0,0.0,45879,475.49122073578593,1046658,0,37597,0,0,0,0,0,96,1.0033444816053512,0,0.0,2,0.0209030100334448,0,0.0,0.04677,0.122627163083377,0.3033996151379089,0.01419,0.3567323481116584,0.6432676518883416,22.97968875563813,4.074813194495924,0.3205472103004292,0.2733369098712446,0.2009120171673819,0.2052038626609442,11.609147539581608,6.409798324769139,15.121020322719648,11224.638935951803,42.93706981762302,12.548735494692195,13.8296781543592,8.305913536099878,8.252742632471751,0.6013948497854077,0.8292443572129539,0.7330543933054393,0.5914552736982643,0.1019607843137254,0.7851027397260274,0.9330357142857144,0.8825136612021858,0.7738693467336684,0.1419354838709677,0.517578125,0.7478108581436077,0.6670687575392038,0.5254545454545455,0.0918032786885245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020983912333877,0.0043735476473154,0.0067638247092875,0.0089980173859996,0.0111159746327758,0.0130461814438453,0.0152455202253153,0.0175823951288285,0.0196525760117854,0.0218502545610997,0.0239624151160166,0.0259083858109982,0.0280304589421691,0.0302483767906832,0.0324528535595949,0.0345715526691348,0.0366931597981409,0.0389431063122923,0.04084137816245,0.0426824819420268,0.0573261048959084,0.0715302789178323,0.0847238838864051,0.0980701643622282,0.1101872856766024,0.1254616450967735,0.1358811040339702,0.1454781654971196,0.1550544988245351,0.1644938033156285,0.1760700703504595,0.187184176071502,0.1977731626961258,0.207469832109129,0.2151812423016012,0.2240283468054479,0.2323329242441147,0.2401003747172741,0.2470081976519745,0.2529599871628823,0.2577758742432485,0.2626486005803613,0.2680819842847676,0.2731991512724919,0.2778526750470638,0.2817154976817599,0.2838690297386602,0.2869821732828115,0.2898751195801122,0.2933918036241045,0.2894910063002915,0.2859103134090784,0.2833092089545946,0.2802231061916292,0.2769205685742659,0.2737349029200428,0.269867130654856,0.2702742577990524,0.2706269501611281,0.2714094677721316,0.2711559708619688,0.2718095614381667,0.2728033297776662,0.2733623479522374,0.275697000312718,0.2763867538625882,0.2784943481108169,0.2824777205974645,0.2869364807766176,0.2918673509672325,0.295457639424604,0.2973115445440168,0.2997630331753554,0.3068791059427622,0.3125641264807387,0.3149151743638077,0.3174436090225564,0.3182907348242811,0.3229083132852178,0.3221850613154961,0.0,2.5686648600055038,50.30175931142348,134.17025011187195,188.0519020467488,fqhc1_100Compliance_implementation_low_initial_treat_cost,45 -100000,95721,48983,467.0866372060467,4789,48.77717533247667,3771,38.82115732179981,1433,14.5840515665319,77.3593554540744,79.73032588323544,63.33143217950936,65.08374291985629,77.17293479736384,79.54647991571768,63.25962881156818,65.01499013549633,0.1864206567105668,183.84596751775464,0.071803367941186,68.75278435995824,239.65766,168.61886660791689,250371.03665862244,176156.60785816787,561.68944,379.1689679657197,586229.5107656626,395549.8563175476,503.33216,247.4968925623732,521928.2289152851,255576.0469195061,2447.88961,1164.3456735755842,2522001.45213694,1181079.4638329975,852.73854,395.2635055735396,872309.7543903637,394385.8174904968,1390.38272,606.5171146473798,1416717.9824698863,604473.6839233493,0.38088,100000,0,1089353,11380.50166630102,0,0.0,0,0.0,48982,511.1208616708977,0,0.0,45358,469.9386759436278,1053110,0,37788,0,0,0,0,0,100,1.0447028342787894,0,0.0,1,0.0104470283427878,0,0.0,0.04789,0.1257351396765385,0.2992273961160994,0.01433,0.3684841222288795,0.6315158777711204,23.20003357131857,3.9740329974733086,0.3118536197295147,0.2871917263325378,0.1967647838769557,0.2041898700609918,11.212711032779618,6.177166289930292,15.585361319663116,11308.296818968804,43.47870999613495,13.27836608667437,13.493101113315792,8.251688820418792,8.455553975725998,0.594272076372315,0.8217913204062789,0.7142857142857143,0.5619946091644205,0.122077922077922,0.7624784853700516,0.9327548806941433,0.8696883852691218,0.675392670157068,0.1273885350318471,0.5193560751245688,0.7395498392282959,0.6476306196840826,0.5226860254083484,0.1207177814029363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0044603485154135,0.0067277542695363,0.0092523003798419,0.0118361245843628,0.014415588382013,0.0165655741882868,0.018720780679011,0.0207315327840363,0.0228298815507939,0.0250217915192534,0.0271674935034254,0.0293530597966994,0.0316299196373377,0.0333415887561141,0.0354163436191657,0.0376133681202633,0.0397879909968779,0.0418226047904191,0.0437590491963792,0.0577965269873756,0.0724243312261899,0.0862432474956731,0.0998906460296096,0.1117519902989402,0.1274567880339348,0.1378589468769234,0.1477609079874789,0.1569142967071724,0.1656470689248073,0.1766208293818432,0.1875196223841332,0.198285335045097,0.2068659852480903,0.2150992443768863,0.2240901328483665,0.2326256658811967,0.2399739012070691,0.2470980699186438,0.254418620634357,0.2598179273328783,0.2648588627198878,0.2695807335980336,0.2744445906660127,0.2791481724029203,0.2840040847964368,0.2865573114622924,0.2894656604924155,0.29236181164481,0.2950806717155087,0.2919766848424615,0.288412700591651,0.2853955915985015,0.2829106280193236,0.2814164004259851,0.2768933103795,0.2719260972884503,0.2712707813290261,0.2711585169081305,0.2708244643110543,0.2714677308072426,0.2711381154632688,0.2722089963663701,0.2738671604828094,0.2749006844397645,0.2759058299448343,0.2769979624179307,0.282470680218921,0.2877514731006589,0.28963510537905,0.2914727280943558,0.2981356646302928,0.2993602609131962,0.305622369212267,0.3089799315638583,0.3141525917297612,0.3161930536761389,0.3159563924677899,0.323901913230935,0.3380756271059528,0.0,2.206778726536108,50.49444262570493,141.59338885419078,186.205419366099,fqhc1_100Compliance_implementation_low_initial_treat_cost,46 -100000,95882,48640,463.65324044137583,4554,46.12961765503431,3578,36.65964414592937,1374,13.933793621326211,77.4394230829848,79.71937371921949,63.39129033748679,65.07733924866794,77.25531382302931,79.54155608226245,63.320829968179936,65.01222912002162,0.1841092599554912,177.81763695704456,0.0704603693068506,65.11012864632448,239.06212,168.18582656096638,249329.5091883774,175409.17644705615,557.88972,377.5228951956129,581220.83394172,393107.5021334692,494.32437,243.29809312116257,511625.1016874909,250666.5501904723,2336.65224,1112.2613124500829,2398879.7584530986,1121902.924897355,816.45479,373.9032315946399,837166.8092029787,375608.2701598196,1329.70824,573.8393302465961,1351006.1951148286,566672.3439087673,0.37865,100000,0,1086646,11333.159508562609,0,0.0,0,0.0,48709,507.34235831542935,0,0.0,44639,461.76550343130094,1061299,0,38106,0,0,0,0,0,101,1.0220896518637492,0,0.0,1,0.0104294862435076,0,0.0,0.04554,0.1202693780536115,0.3017127799736495,0.01374,0.3594178443366378,0.6405821556633622,23.103611562882925,4.069829141598825,0.3180547792062604,0.2792062604807155,0.198993851313583,0.203745108999441,11.724499367470424,6.551126930922332,14.669979093379714,11102.951616140112,41.00964741493414,12.216765679732813,12.93238090946762,7.869343515837933,7.991157309895788,0.5832867523756289,0.8168168168168168,0.6889279437609842,0.5814606741573034,0.1001371742112482,0.7527075812274369,0.9325581395348838,0.8483965014577259,0.7485029940119761,0.1011904761904761,0.5072874493927125,0.7293497363796133,0.620125786163522,0.5302752293577981,0.0998217468805704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0044083667761157,0.0063502368658639,0.0087928601163581,0.0110786994216715,0.0134510897214138,0.0155946014769544,0.0176560587515299,0.0200543500469944,0.0224022586386791,0.0242525461587327,0.0262463959942951,0.0284551592317415,0.0308211774636868,0.0327137009887311,0.0348822800495663,0.0368734157570741,0.0385571881541044,0.0406358039431472,0.0426654182272159,0.0567091985655908,0.070710553814002,0.0837530760772815,0.0957645625971189,0.1079260140434357,0.1237330010980657,0.1334053641794839,0.1432199787460149,0.1525438184997228,0.1613027517044299,0.1733642950826721,0.1842571582928147,0.1945337620578778,0.203166486380175,0.2117183978186056,0.2198649845064187,0.2275690675463329,0.2357533615663719,0.2424554805383116,0.2487340976373632,0.2542752560534854,0.2596941753239173,0.2651305683563748,0.2693527349312528,0.2735808999259969,0.2774168143335302,0.2817126650757756,0.2844107718470012,0.2866457502162657,0.2896622447772183,0.2866578067737908,0.2832679810249801,0.2805617126343256,0.27867294483563,0.2759278991298171,0.2725123903926801,0.2689343189950033,0.2697192295135488,0.2704897148001562,0.2711747180251117,0.2711264983992256,0.2719439428436838,0.2728954479318229,0.2730914805551251,0.2746006845407872,0.2747947751561774,0.2772872968565484,0.2835057934196666,0.2875898286346047,0.2913456650111454,0.2943418220946915,0.2976527297495546,0.3007822200148994,0.30318988865483,0.3058121093385577,0.3099882491186839,0.314718482252142,0.3193515704154002,0.3180570801317234,0.3305847076461769,0.0,2.613098117736749,47.36151165287403,129.9950325055042,179.28607516905151,fqhc1_100Compliance_implementation_low_initial_treat_cost,47 -100000,95727,48902,466.8693263133703,4795,48.85768905324517,3828,39.288810889299775,1403,14.217514389879552,77.34647984393533,79.70012598112882,63.33814763576003,65.07590158296665,77.16294356055083,79.52255784719274,63.26748895121296,65.01088172004486,0.1835362833844982,177.5681339360773,0.0706586845470695,65.01986292178685,239.69858,168.57790457896454,250397.4009422629,176102.10722258565,556.27936,375.8682922784043,580367.9526152496,391904.3752237135,498.61249,245.090437980375,516345.1795209293,252641.47420346385,2483.2934,1175.019809589656,2551883.9930218225,1185415.5122048089,877.16964,402.8461231158833,901586.950390172,406225.66266959935,1358.88412,587.1805344397777,1379534.739415212,578242.6290101692,0.38114,100000,0,1089539,11381.70004283013,0,0.0,0,0.0,48548,506.4401892882885,0,0.0,45022,465.8664744533935,1057686,0,37956,0,0,0,0,0,103,1.0655301012253595,0,0.0,2,0.0208927470828501,0,0.0,0.04795,0.1258067901558482,0.2925964546402502,0.01403,0.3756019261637239,0.6243980738362761,23.02045924655856,3.967324308548341,0.3079937304075235,0.2915360501567398,0.2016718913270637,0.1987983281086729,11.20744147913008,6.190222327296297,15.064156868438449,11263.26619567792,43.96801097273213,13.78982883165047,13.30088231035428,8.497074546393126,8.38022528433424,0.589864158829676,0.8064516129032258,0.6946564885496184,0.5816062176165803,0.1182654402102496,0.7579034941763727,0.8987854251012146,0.8670520231213873,0.7433155080213903,0.16,0.5129474485910129,0.7331189710610932,0.6230492196878752,0.5299145299145299,0.1058020477815699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020862872189588,0.0046528601404981,0.0071239382592017,0.0096401942260417,0.0118982244188174,0.0139578921648476,0.0160958205912334,0.0181977770746792,0.0204331960217109,0.0225855661236984,0.0246209985752211,0.0266977336179996,0.0287265324587197,0.0309622396638032,0.0328731504983594,0.0347932150129725,0.0368932239893969,0.0389607694622272,0.0411256536338403,0.0429683024135165,0.0575288688425316,0.0715840817266428,0.0846710733396285,0.0978631220291927,0.1101410767381539,0.1260242976622223,0.1370150742041223,0.1468725720793111,0.1552915051938208,0.1640373815749989,0.1755251003907974,0.1854539555507489,0.1959744381167673,0.2050354602178973,0.2142229061332161,0.2233008634049147,0.2314682663574327,0.2393225828216719,0.2464917355840679,0.2521413521436423,0.258352511246545,0.2645411712438474,0.2702296579386395,0.2746117714723926,0.2787583762260853,0.2821825431007961,0.2843676551482722,0.2884720544286895,0.290980899967627,0.2943465414446262,0.2907666841616537,0.2877250859106529,0.2845586787090965,0.2817563960116016,0.2798961809417872,0.2759369409318185,0.2718391439529047,0.2714187575648533,0.2719795657726692,0.272930967030622,0.2737786565688597,0.2746744817277054,0.2756237603090093,0.2759756884921077,0.2776009381805998,0.2796649846538001,0.2814088907825593,0.2863038109231875,0.2897049591964846,0.2928883466488252,0.2961353968684949,0.300443224989447,0.3028002489110143,0.3066747297603749,0.3119394618834081,0.3122566945853486,0.3176381529144587,0.3199919549477071,0.3220901299419408,0.3170353123787349,0.0,2.7434883295667243,51.58783262387716,135.93702693407735,193.72668312479885,fqhc1_100Compliance_implementation_low_initial_treat_cost,48 -100000,95751,48873,467.6086933817923,4712,47.97861118943927,3749,38.67322534490501,1408,14.412382116113667,77.41222784566315,79.76611931303611,63.350809200748486,65.0888688877508,77.23322515972696,79.58926597102909,63.28397516431455,65.02468571281088,0.1790026859361972,176.8533420070213,0.0668340364339385,64.18317493992731,240.93168,169.45831724620746,251623.1475389291,176978.1174569534,561.70663,379.2745923909041,586160.7502793705,395633.73418960697,499.24215,244.5245773936124,518088.42727491097,252895.7080409856,2425.93701,1139.3978059678982,2506158.755522135,1162568.357472506,854.42319,386.8272355664282,881310.8479284812,392965.0818961976,1375.97164,579.1247018629374,1410274.0650228194,582492.1176717954,0.38234,100000,0,1095144,11437.41579722405,0,0.0,0,0.0,49020,511.4411337740598,0,0.0,45119,467.880231015864,1050559,0,37548,0,0,0,0,0,76,0.7937253919019122,0,0.0,0,0.0,0,0.0,0.04712,0.1232410943139614,0.298811544991511,0.01408,0.3639698390055023,0.6360301609944976,23.154531739632585,4.056933720463383,0.3043478260869565,0.2886102960789544,0.1965857562016537,0.2104561216324353,11.240081165950086,5.959851880466976,14.886405817564976,11218.689133013302,42.74480296580296,13.267102501041462,12.747135967864926,8.209709355048203,8.52085514184837,0.5860229394505201,0.8271719038817006,0.7011393514461,0.5698778833107191,0.1039290240811153,0.7775816416593115,0.91340206185567,0.8501529051987767,0.751412429378531,0.1875,0.5030581039755352,0.7571189279731994,0.6412776412776413,0.5125,0.0852713178294573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748835325096,0.0040845284548725,0.0063101083471979,0.0086115850190917,0.0108378491037932,0.0130605181452639,0.0150437246468393,0.0172647776088487,0.019427496908565,0.0217093142272262,0.0236841026481921,0.026063480331773,0.0281581544534912,0.0299778590185881,0.0322447505546097,0.0340682398420622,0.0359823971006989,0.0380034444836387,0.0398282530045327,0.0419166666666666,0.0566545917674938,0.070803034266283,0.0836086723937191,0.0969580949175361,0.109630520562976,0.1249880958679434,0.1353120954220345,0.1457057990609928,0.1555253990981557,0.1642736033309724,0.1762923831599374,0.1867981938473866,0.1970195070974484,0.20624685248845,0.2138356466181978,0.222490850615504,0.2306385831610704,0.2393901518990192,0.246722139605635,0.2529336266960029,0.2591555164590953,0.2642807017543859,0.2694913851211523,0.2737053747741063,0.2770714545675118,0.2808670833128291,0.2841516407771839,0.2872545537571668,0.2899971619494827,0.2932019704433498,0.2898935101466747,0.2864572640799288,0.2842754079988793,0.2805016448549798,0.2781192423907436,0.2736712665664708,0.2709428396592032,0.2709830574615459,0.270326063046752,0.2713245431086288,0.2724981934742732,0.2741125676441284,0.275396298448004,0.2757949670514351,0.2769922879177378,0.278204599360627,0.2802782785038306,0.2849562465090299,0.2889620516374978,0.2928697011134987,0.296983550714894,0.3000209183139839,0.3045282785108096,0.3108967167751103,0.3152483246121362,0.32378522555955,0.3282204020848845,0.3332017370706672,0.3349384697699304,0.3287313432835821,0.0,1.8145987158805252,49.43276296498591,134.97710425710974,191.65355125683325,fqhc1_100Compliance_implementation_low_initial_treat_cost,49 -100000,95738,48648,465.1757922663937,4689,47.85978399381646,3686,38.009985585660864,1341,13.599615617623096,77.32373385663094,79.6938890327698,63.321321634088775,65.07507407346236,77.15150834759513,79.52593695559236,63.25629265716752,65.01408115761531,0.1722255090358118,167.9520771774463,0.0650289769212548,60.99291584705213,240.63798,169.271580733487,251350.5400154589,176807.09930590467,558.30756,376.6303592658046,582655.3301719275,392890.3458039698,494.60511,242.4780396807079,514209.7077440514,251310.6664181224,2364.55141,1102.253889421945,2439617.800664313,1121126.1666443252,816.87591,370.38663452965193,840976.7490442666,374610.9638071104,1302.531,550.9575305828394,1323805.824228624,544558.7437617922,0.38018,100000,0,1093809,11425.02454615722,0,0.0,0,0.0,48756,508.7321648666152,0,0.0,44635,463.73435835300506,1052704,0,37811,0,0,0,0,0,98,1.0236269819716308,0,0.0,3,0.0313355198562744,0,0.0,0.04689,0.1233363143774001,0.2859884836852207,0.01341,0.3740302164148632,0.6259697835851368,23.24461269998395,3.994257437250046,0.3014107433532284,0.2984264785675529,0.2061855670103092,0.1939772110689094,11.146737357449366,6.012733435340659,14.239896891830371,11159.395508385178,42.14635068418957,13.55937534009832,12.553971493345516,8.34776126829464,7.685242582451088,0.5827455236028215,0.8081818181818182,0.6948694869486949,0.5565789473684211,0.0895104895104895,0.777676120768527,0.9258474576271186,0.8866666666666667,0.6910994764397905,0.1153846153846153,0.5005784805244891,0.7197452229299363,0.623921085080148,0.5114235500878734,0.0837606837606837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018844984802431,0.0040058008052166,0.0061104344295574,0.0083429872162266,0.010632020185577,0.012621092198148,0.0148492636560192,0.0169334000592362,0.0191527000910085,0.0215167187259972,0.0237716770415645,0.0257368799424874,0.0280435364072176,0.0301412775779808,0.0322244356595068,0.0342079146507877,0.0362591269224794,0.0384910671674309,0.04014389835619,0.0422505860901276,0.0560990634494711,0.0700081636070583,0.0832502858581514,0.0961657813075264,0.1086071624414729,0.1241554321966693,0.1348977340235933,0.145008033538694,0.1541731190260052,0.1631497683993824,0.1742697488129717,0.1856102811523025,0.1963986690733531,0.2046376367949797,0.2134874716765294,0.2227081488042515,0.2304270760175245,0.2374566162347946,0.2449816949459916,0.2504346234788178,0.2560960114585379,0.2626477320502639,0.2675495593412565,0.2726989826451226,0.2760984012227371,0.2800561244584482,0.2839033903390339,0.2874286513354436,0.290852632940872,0.2928400200205474,0.2888862008252355,0.2848169985843675,0.2821908942540379,0.2798134673134673,0.2773104256613403,0.2734788056599737,0.2696693002791314,0.269437588872726,0.2697350543478261,0.2704852541680723,0.2703624972029537,0.2716929133858268,0.2722922282824483,0.2728448468090799,0.2734729117202676,0.2748895243046529,0.2761140972044478,0.2824899547965846,0.2868861078977811,0.293305289892456,0.2962558075977043,0.2998991132586417,0.3023899371069182,0.3077858880778589,0.3084591019191354,0.3077104456496109,0.3093839433649646,0.3111510791366906,0.3136990002701972,0.3239650588682111,0.0,1.886859247579842,47.55999450723333,134.24327776128055,192.14298593697345,fqhc1_100Compliance_implementation_low_initial_treat_cost,50 -100000,95779,49126,467.2527380741081,4717,47.91238162854071,3770,38.74544524373819,1416,14.366405997139248,77.38153749659537,79.7230725352369,63.350937847410606,65.08288998160768,77.19666857705288,79.54375847549281,63.27980749548464,65.01666562875099,0.1848689195424953,179.31405974408676,0.0711303519259658,66.22435285669326,239.98656,168.8808752441022,250562.8164837804,176323.48974629326,557.99185,377.1998160570583,581948.1723551091,393188.59672481264,501.48367,246.6191854274508,520248.8436922499,254863.70977180425,2446.25364,1150.198557388292,2513682.4460476725,1160509.952482581,884.04644,399.8395795327535,903557.564810658,398011.6095728206,1371.69804,591.5642551731675,1392413.9320727924,582089.8249986332,0.38214,100000,0,1090848,11389.218931080926,0,0.0,0,0.0,48677,507.5434072187014,0,0.0,45253,469.1529458440786,1054350,0,37827,0,0,0,0,0,89,0.9187817788868125,0,0.0,1,0.0104407020328046,0,0.0,0.04717,0.1234364369079395,0.300190799236803,0.01416,0.3603843008994276,0.6396156991005724,23.31294634117119,4.096069480029793,0.3159151193633952,0.2782493368700265,0.2005305039787798,0.2053050397877984,11.359818833468234,6.194334896851719,15.149333107552769,11279.05583322903,42.97561791664885,12.864427875937343,13.346213935536012,8.39280336033924,8.372172744836245,0.5806366047745358,0.8026692087702574,0.691855583543241,0.5753968253968254,0.1136950904392764,0.7447963800904978,0.891832229580574,0.8417721518987342,0.7112299465240641,0.1342281879194631,0.5125703564727955,0.7348993288590604,0.6377142857142857,0.5307557117750439,0.1088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002511697624015,0.0046120785776552,0.0067367395803741,0.0092217381148248,0.0117636293389186,0.0140883781060089,0.016359522159253,0.0185345839414568,0.0211428805003167,0.0234309452186547,0.0255159551575021,0.0277452731415901,0.0299715193452533,0.0322481003274232,0.034492006188757,0.0368139361877996,0.0389092978734413,0.0409453716181196,0.0429651790908335,0.0447806259500655,0.0590242629793895,0.0727620721031658,0.0860941038329279,0.0991267430985382,0.1114705727382896,0.1274902503725467,0.1377621858803828,0.1477342803070576,0.1567982924226254,0.1657251883849806,0.1768979881809668,0.1884855826429297,0.1984522075607052,0.2068302278564013,0.214734318114324,0.2234706754931698,0.231508529378972,0.2393381443762505,0.2467030287910916,0.2528601501006773,0.2580909984390356,0.2629635256582561,0.268461138180614,0.2731365083925963,0.2774110566422366,0.2818080013782749,0.2852949992506369,0.2875857687420584,0.2904239227397898,0.2932019912028867,0.2891367148135707,0.2859555189456342,0.2832255343082114,0.2792622608043607,0.2764045610237096,0.2732685056558841,0.2695993443243072,0.2696808944748225,0.2707350995624003,0.2702975916007519,0.2710804118337026,0.2715343665900563,0.2717445638590352,0.2742976715195227,0.2754370879908283,0.2764711976792374,0.2784577550385844,0.2821893086066339,0.2871761073918623,0.2902820824669465,0.2947159960392475,0.299332948159042,0.3052519827640042,0.3053815382293003,0.3062441752096924,0.3085480093676815,0.3105057194461168,0.3125248508946322,0.3157177880686461,0.311864406779661,0.0,2.3287377691382605,47.52081220749266,142.20005250106027,190.844405718823,fqhc1_100Compliance_implementation_low_initial_treat_cost,51 -100000,95867,48759,465.3634723105969,4676,47.57632970678127,3694,38.04228775282422,1379,14.061147214369909,77.37299817448195,79.67420376472869,63.35320242165369,65.05694903123621,77.18735279858575,79.49104351641016,63.28163235216861,64.98846682932657,0.1856453758962004,183.16024831852928,0.0715700694850838,68.48220190964582,240.5953,169.2850852493583,250967.79913838964,176583.2718759931,559.18545,377.0988015442967,582799.1696829983,392862.436025219,497.42374,244.09186878112592,515773.331803436,252206.85984637323,2390.49968,1138.8539376875958,2460966.234470673,1155359.7772826888,839.41979,388.4132728309245,862672.5463402423,392222.3213732829,1341.22852,591.8207212385358,1368063.3586114096,590158.9851222469,0.37954,100000,0,1093615,11407.627233563166,0,0.0,0,0.0,48773,508.2666611034037,0,0.0,44931,465.6346813814973,1052554,0,37841,0,0,0,0,0,87,0.9075072757048828,0,0.0,2,0.0208622362231007,0,0.0,0.04676,0.1232017705643673,0.2949101796407186,0.01379,0.3649815043156597,0.6350184956843403,22.950116851755705,3.990560525612003,0.2907417433676231,0.297509474824039,0.2081754195993503,0.2035733622089875,11.185548274229102,6.103749885500701,15.056556938270845,11166.292836295112,42.37866919003493,13.481553469497408,12.233312490811008,8.388684040228938,8.27511918949759,0.5760693015701137,0.8007279344858963,0.707635009310987,0.5344603381014305,0.1023936170212766,0.7497820401046208,0.9190871369294604,0.8668831168831169,0.6702127659574468,0.1420118343195266,0.4978405967805261,0.7082658022690438,0.643603133159269,0.4905335628227194,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0044189039901892,0.0068267348325776,0.00911804723514,0.0114368785962629,0.0138640065146579,0.0159611876102045,0.0179918154078519,0.0200676414390665,0.0220089427317282,0.0240973730584812,0.0263373894486282,0.0286935788867878,0.0305815748841996,0.0326388387748579,0.0346779023896565,0.0365726227795193,0.0384647268507004,0.0403850547259548,0.0423555116266971,0.0564841558658227,0.0701902880968055,0.0833019065577205,0.09608215812078,0.1082666385846672,0.1241298446132232,0.1350231537899098,0.1447178156764343,0.1539767086878088,0.1631819789311243,0.174498450146375,0.1848844877352677,0.195249483639526,0.2040677966101695,0.2123252998789479,0.2215354622891259,0.2299393046815727,0.2379334398415877,0.2447930846719303,0.2513823856025827,0.2570850436491877,0.2617513245459117,0.266841002946362,0.2709189111507646,0.2745719105350663,0.2790918157528596,0.2832641112890312,0.2867003088812904,0.2915211260317213,0.2929438142970192,0.2892739895592272,0.2868437697659709,0.2831814789258002,0.2803483233688588,0.2764053945787154,0.2727661589697367,0.2686713308801465,0.2684395712298502,0.2697086255020763,0.2696523255400164,0.2693354713603819,0.2702995024679947,0.273003770597671,0.2733931107954545,0.2739321128909229,0.2755233910571207,0.2757156204875562,0.2802734679861393,0.2852216920344119,0.2900454973329149,0.2944763271162123,0.2982924785250366,0.3053135888501742,0.3097391828735112,0.312814304339728,0.3204188481675393,0.3289016467744372,0.3335349868925186,0.3329673346143288,0.3402646502835538,0.0,1.908297946438719,49.96469010796272,132.87643900068014,186.55641145890564,fqhc1_100Compliance_implementation_low_initial_treat_cost,52 -100000,95785,49193,469.4889596492144,4638,47.1785770214543,3682,37.7929738476797,1390,14.104504880722452,77.39816222968327,79.72757738406783,63.35848721039546,65.07966398256686,77.21251102013193,79.54814193897153,63.28729330359084,65.01383588896083,0.185651209551338,179.43544509630271,0.0711939068046234,65.82809360602937,241.4313,169.86021706170206,252055.4366550086,177334.88235287575,564.61621,381.7499033272759,588828.4386908179,397915.1363233031,505.68303,248.36696295645208,524138.14271545655,256385.4858739649,2365.16564,1118.906369196272,2431166.905047763,1130066.2412656175,840.11752,383.6341329527633,863083.8127055385,386514.5395503204,1348.3987,581.8683579241737,1370707.375893929,575600.6081961861,0.3801,100000,0,1097415,11457.065302500392,0,0.0,0,0.0,49166,512.6063579892468,0,0.0,45510,471.2846479093804,1044323,0,37499,0,0,0,0,0,90,0.939604322179882,0,0.0,0,0.0,0,0.0,0.04638,0.1220205209155485,0.2996981457524795,0.0139,0.3561076604554865,0.6438923395445134,23.032053197435168,3.996434937782688,0.3006518196632265,0.3001086366105377,0.1998913633894622,0.1993481803367734,11.52794317232532,6.3372048157922105,15.042589315263111,11221.587592952092,42.24894224710879,13.57109800835372,12.589858829533965,8.04027996577918,8.047705443441941,0.5939706681151548,0.8171945701357466,0.7145438121047877,0.5652173913043478,0.1049046321525885,0.7590788308237378,0.9245689655172412,0.8601823708206687,0.6966292134831461,0.1329113924050632,0.5209557383470427,0.7394695787831513,0.6529562982005142,0.5232974910394266,0.0972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022077737943327,0.0044186800713474,0.0066144544089599,0.0089263953204971,0.011111675900981,0.0137602540354591,0.0158047587507005,0.0179569848589968,0.0200451577968716,0.0221812973194188,0.0243934923366937,0.0264551350463837,0.0284883302673093,0.030723468200953,0.0329209196824414,0.0349931315134426,0.0372339875231483,0.0392596049152278,0.0412280063603579,0.0432278757836419,0.0581520321385715,0.0722279164139142,0.0851436359823862,0.0975312404754648,0.1101623445076955,0.1258469962684595,0.136572380073605,0.1459506049352501,0.1551219616386859,0.1637412478689298,0.1752283105022831,0.1862170405139408,0.1966278097059111,0.2057130373040581,0.2148265365553467,0.2235031198831703,0.2309939238530576,0.2391639213393449,0.2465377417342482,0.2532631096862835,0.2590135130448855,0.2642208482836806,0.2695893977044137,0.2735593626452617,0.2778067694996298,0.2811249923072189,0.2837810820942146,0.2865036519530009,0.2897405385829216,0.2928419915416134,0.2899959661153691,0.2859143712410403,0.2824540187862084,0.2799971177403084,0.2775261942816551,0.2733899623320574,0.2700069369994324,0.2697780028423477,0.2688779591211559,0.2686670575067953,0.2698805953467578,0.2713731971745076,0.2724015830035409,0.2736407799294603,0.2732744878779948,0.2747882668870068,0.2758058623499986,0.2810832609504901,0.2843618271024808,0.2866179858643445,0.2923519367304754,0.2973551045959622,0.3003945259524103,0.3019405109762493,0.3088099204145845,0.3120667371636705,0.3143717080511662,0.316956261234272,0.3223612622415669,0.3269375470278405,0.0,2.477224478887628,48.67022758769855,135.63263474662145,183.86994480648045,fqhc1_100Compliance_implementation_low_initial_treat_cost,53 -100000,95873,48893,465.2717657734712,4765,48.35563714497304,3786,38.87434418449407,1448,14.675664681401436,77.3584022892406,79.64220866841406,63.35300198276878,65.04231955001775,77.17579676163137,79.46584215678976,63.283031608446656,64.97763837788149,0.1826055276092262,176.36651162429473,0.0699703743221249,64.68117213626101,241.0914,169.6828783492454,251469.5482565477,176987.13751446744,561.88021,379.6356615536531,585446.3196103178,395359.27916501055,500.17833,245.98887211752844,518703.8895205116,254105.209017959,2467.47166,1166.3887602362638,2535531.9015781293,1178626.6387016964,857.87155,390.50696795097946,876630.5216275698,389213.66536176245,1404.5006,603.9803796747718,1425201.9025168712,593876.0903836472,0.38123,100000,0,1095870,11430.43401166126,0,0.0,0,0.0,49063,511.1032303151043,0,0.0,45132,467.6394813972651,1045861,0,37530,0,0,0,0,0,101,1.053476995608774,0,0.0,0,0.0,0,0.0,0.04765,0.1249901634184088,0.3038824763903462,0.01448,0.3578441194149469,0.6421558805850531,23.34859086377478,4.062650316755639,0.3045430533544638,0.2836767036450079,0.2113048071843634,0.2004754358161648,11.471779359255612,6.3006329818128535,15.468914503177666,11268.992926100222,43.39710286547937,13.202697315963452,13.038591141046252,8.959664068625063,8.196150339844596,0.5686740623349181,0.7849162011173184,0.6834345186470078,0.5575,0.1001317523056653,0.7590467784642542,0.9142857142857144,0.8524096385542169,0.6990291262135923,0.1214285714285714,0.4873727855258198,0.6898222940226171,0.6151035322777101,0.5084175084175084,0.0953150242326332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0047319411091183,0.0070493249890963,0.0091380763333976,0.0113539337263671,0.013627250429986,0.0156893108928644,0.0178999439033097,0.020154579704522,0.02221449820587,0.0242713974223796,0.0265116565171925,0.0287774217402021,0.0307980332050939,0.033151961087409,0.0350630846428645,0.0371780283438502,0.0394457284401007,0.0417891227815106,0.0439554723262588,0.0582231766815395,0.0726210873835095,0.0858596965222581,0.0989562551189701,0.1113510438831188,0.1269160477915931,0.1370664349374225,0.147253354883988,0.1565829081360346,0.1660627760387633,0.1776272573576128,0.1885696358640386,0.1986693048639951,0.2075671775586505,0.21496899327088,0.2243642238994267,0.2328608233050422,0.2405662498875596,0.2474219786951638,0.2535199972504496,0.2592335462371563,0.2644303308888031,0.2700814625367055,0.2737789819454768,0.2763656687402799,0.2809726878327746,0.2844444444444444,0.2883401221995926,0.2916342614196091,0.2934720883242429,0.2905006867946887,0.2869072349323832,0.2841820792162824,0.2804487179487179,0.2781934794227685,0.2745371078806427,0.2711601720647773,0.2701967213114754,0.2710777626193724,0.2720058361950855,0.272954706695045,0.2727272727272727,0.2709773054679834,0.2713977249961044,0.2730667049615854,0.2730798066234068,0.2745779964373568,0.2790545590433483,0.2820619702653884,0.2873481900719254,0.2908697221219776,0.2939049316073581,0.2979134226097789,0.3047040971168437,0.3089339339339339,0.3123961054381382,0.3211757463835026,0.3273533561781899,0.3316980103570455,0.3345907204828366,0.0,2.3984608088137005,48.712772134480815,142.73252089291518,190.4671498966834,fqhc1_100Compliance_implementation_low_initial_treat_cost,54 -100000,95723,48512,463.59809032311983,4623,46.95841124912508,3694,37.91147373149609,1365,13.84202333817369,77.38965647392791,79.7568568697559,63.34469261111818,65.09410822655546,77.21377383687306,79.58612151141,63.27691540906841,65.03104877990474,0.1758826370548547,170.73535834589393,0.0677772020497755,63.05944665072616,241.527,169.85326702005975,252318.43966444844,177442.25214427023,559.96492,378.4713768779464,584301.3591299896,394698.50179992936,494.48633,243.37021278585388,512057.3738808855,250749.44954602336,2384.7194,1131.207069638849,2449801.489715116,1140280.9665794529,839.09799,383.9512535293651,857899.5957084504,382515.7534396996,1322.57342,571.0928504599583,1342765.1243692737,562693.0065711298,0.3777,100000,0,1097850,11469.019984747658,0,0.0,0,0.0,48971,510.8699058742413,0,0.0,44667,462.0728560534041,1047141,0,37545,0,0,0,0,0,93,0.9715533361887948,0,0.0,0,0.0,0,0.0,0.04623,0.1223987291501191,0.2952628163530175,0.01365,0.3639378238341968,0.6360621761658031,22.879603538220525,3.96394613702848,0.3118570655116405,0.2839740119112073,0.2111532214401732,0.1930157011369788,11.292258037508647,6.25993737789815,14.554401706426985,11111.495303128771,42.189756135285485,12.894739642723898,12.944241680305646,8.624013664907512,7.726761147348439,0.5936654033567949,0.8036224976167778,0.7022569444444444,0.5884615384615385,0.1150070126227209,0.7669642857142858,0.9096774193548388,0.8654434250764526,0.7262569832402235,0.1543624161073825,0.5182595182595182,0.7191780821917808,0.6375757575757576,0.5474209650582362,0.1046099290780141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334980957783,0.0047139685532678,0.0068196348653832,0.0089298413149927,0.011108059446428,0.0133192130666775,0.0154770037010226,0.0178846683884402,0.0197890260855343,0.0218132312448179,0.024088234691158,0.025891628852432,0.0280444928757941,0.030201618716148,0.0322217981908759,0.0344667217858619,0.0363762503365295,0.0384587452925126,0.0403882930074,0.0423443605105496,0.0570074234941583,0.0714667001601406,0.0842924741110679,0.0963913729615991,0.1082743414181269,0.123500666370502,0.1340428240986355,0.1437709541801926,0.1534969665897633,0.1624050795829937,0.1735834428100704,0.1847095859882947,0.1948437466020051,0.2039475123018042,0.2123909383973858,0.2216808769792935,0.2292115035070308,0.2371493095738346,0.2441761605169189,0.2501658621399648,0.2552510201486584,0.260460116606494,0.2653451779048339,0.2693080677576802,0.2728705859526581,0.2765195782947262,0.2802103764038627,0.2841720222521401,0.2869584318590017,0.2897231952382206,0.2870958642829319,0.2837298046698055,0.2809870925153443,0.2780114667665447,0.2753745359894701,0.2727591356557252,0.2687330772621371,0.269163053046852,0.2695556495979687,0.2710176208336282,0.2714582329168366,0.2716404476794239,0.2729175300455864,0.273034751083208,0.2741483346795267,0.2745876288659793,0.2756816071579303,0.2805462237153167,0.283781433689263,0.2882357576235127,0.2913069029429049,0.2922548242135871,0.298043369890329,0.3020274299344067,0.3052477333089111,0.305037637521714,0.3066248880931065,0.3124754033844943,0.3135048231511254,0.315592203898051,0.0,2.6153198863471667,47.830621203650985,136.88526635399003,184.3440933744196,fqhc1_100Compliance_implementation_low_initial_treat_cost,55 -100000,95769,48753,465.1714020194426,4649,47.37441134396308,3672,37.84105503868684,1421,14.472324029696455,77.34687979821054,79.70740370611564,63.33382307926016,65.08182672887938,77.16383129178178,79.52666695480842,63.26422205301925,65.01524198343083,0.1830485064287614,180.73675130722225,0.0696010262409032,66.58474544855153,241.7822,170.08236739021618,252463.94971232864,177596.47421421984,561.12344,378.9427624145332,585420.8668775909,395191.9134504695,498.00419,244.2027783442425,517101.6926145204,252652.81850677743,2387.08339,1134.5625225695253,2461668.3895623847,1153847.0141662224,830.73507,384.01677816247786,854637.3669976715,388204.9207141232,1375.66954,592.6622436068806,1403143.2718311772,590382.1551924552,0.37981,100000,0,1099010,11475.634077833118,0,0.0,0,0.0,49006,511.1988221658365,0,0.0,44904,465.9754200210924,1046176,0,37607,0,0,0,0,0,92,0.9606448850880764,0,0.0,1,0.0104417922292182,0,0.0,0.04649,0.1224033069166162,0.305657130565713,0.01421,0.3564213564213564,0.6435786435786436,22.90501178290764,4.108408434587005,0.3112745098039216,0.2794117647058823,0.2069716775599128,0.2023420479302832,11.477410638371015,6.3005910954751805,15.194100182361366,11179.877345893025,42.26367667616655,12.574706286914273,13.106292033174253,8.549390477543833,8.033287878534194,0.5901416122004357,0.827485380116959,0.6920384951881015,0.5697368421052632,0.126514131897712,0.7704778156996587,0.9285714285714286,0.8571428571428571,0.7258883248730964,0.1963190184049079,0.5056,0.7491349480968859,0.6148908857509627,0.5150976909413855,0.1068965517241379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002715739126,0.0045937614083478,0.0067512690355329,0.0088823846255475,0.011231382762269,0.0132176534082808,0.0152309103884188,0.0176806859942833,0.0197808263989695,0.0219007249047794,0.0242164511928806,0.0263776657459981,0.0283419545253545,0.0305128046644827,0.0325204091110813,0.0347543830631822,0.0367313547211233,0.0388505627885263,0.0409671618208089,0.0430481506164611,0.0569356017117211,0.0707845188284518,0.0846203042598475,0.0973230895351403,0.1100361482605625,0.1252853157494293,0.1358312576183157,0.145843301117455,0.1554692667107593,0.1639442593802551,0.1754480325294206,0.1862282114181354,0.1968431229834986,0.2058768931741993,0.2140919027584009,0.2228651722688145,0.2298772397337406,0.2377783523116871,0.2447437395754144,0.2509476529128159,0.2569210657226483,0.2622110975952091,0.2682557520553617,0.2725039838012053,0.2767126944451185,0.2805052020562265,0.2834068832743683,0.2862170609610449,0.289298826206112,0.2921059906014295,0.2887324889527621,0.2851257261353804,0.2816573033707865,0.2781569474442044,0.275585888344412,0.2721487111395998,0.2682134351193199,0.2685197303841372,0.2682947583390061,0.2684058074031951,0.269500503599806,0.2706155632984901,0.2717053536048718,0.2723849838476105,0.2733875026964837,0.2741159020531369,0.2758855973161994,0.2804927873283258,0.2850548989439821,0.2893248427797334,0.2919843863471314,0.2948163006756756,0.3016101748010776,0.3062132408384859,0.3135405105438402,0.3172156038308806,0.3181749508989273,0.3203471941865159,0.3171001660210293,0.3296960249415432,0.0,1.9332631532464395,51.13737726355304,130.35968823247765,183.1062764606952,fqhc1_100Compliance_implementation_low_initial_treat_cost,56 -100000,95753,48759,466.1890489070839,4736,48.32224577820016,3782,38.912618925777785,1467,14.89248378640878,77.36211040614715,79.72319005385457,63.32787542470121,65.0754596182162,77.1795121709397,79.54534792028586,63.25931909164693,65.01095190321182,0.1825982352074504,177.84213356870282,0.0685563330542819,64.5077150043818,240.28356,169.09623005134952,250941.02534646436,176596.27379961935,560.11013,377.7668170253839,584296.5860077491,393865.67212033446,500.27203,244.9106582907216,518949.8605787808,253032.4021763156,2466.33694,1162.9429042512988,2539753.532526396,1178890.8009388791,875.43251,401.10668824028266,901416.5926916128,406052.6649194096,1427.94832,606.3942408160149,1452389.899010997,601263.4384134584,0.37956,100000,0,1092198,11406.410243021106,0,0.0,0,0.0,48869,509.7594853424958,0,0.0,45168,468.2464256994559,1052962,0,37825,0,0,0,0,0,94,0.96080540557476,0,0.0,1,0.0104435370171169,0,0.0,0.04736,0.124776056486458,0.3097550675675675,0.01467,0.3628640776699029,0.6371359223300971,23.05723340328388,3.9925798031876414,0.2956107879428873,0.29613960867266,0.1993654151242728,0.2088841882601798,11.35464129818801,6.215978430139954,15.650213589264732,11204.855077318209,43.57625187149038,13.841289651324198,12.57263577979252,8.471769862013902,8.690556578359743,0.594923320994183,0.7991071428571429,0.6958855098389982,0.629973474801061,0.1291139240506329,0.7626392459297343,0.9213250517598344,0.8576051779935275,0.7755102040816326,0.1564245810055866,0.5200764818355641,0.706436420722135,0.6341161928306551,0.578853046594982,0.1211129296235679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020769378843601,0.0044821222138844,0.0066490711602882,0.0086672018045662,0.0107115609582422,0.0131278771336619,0.015183651826321,0.0172343379890549,0.019335180621875,0.0215962152863111,0.02394577077693,0.0258951866384534,0.0280446904384683,0.0301518929947857,0.0321904801221979,0.0343547753447883,0.0363352075631905,0.0384296148738379,0.0402274357348523,0.0420603093588875,0.0567849686847599,0.0710130978783947,0.084565531995218,0.0966198308863741,0.1090145866073217,0.1245426281170026,0.1347618542484353,0.1446485980114543,0.1544387106424351,0.1638412626928727,0.1752086586613537,0.1867201956477042,0.1972109820301962,0.2065797532592528,0.215630605350324,0.2252786209647043,0.2330735563396007,0.2406717886992811,0.2476806169899058,0.2533398967408102,0.2578148499502533,0.2633511036288814,0.2691716340240325,0.2727131114146716,0.277246468275159,0.2801768734295708,0.2835807827490025,0.2865370678804368,0.2903250844081083,0.2934043338429905,0.2897760912858604,0.2862680945245591,0.2834462974941643,0.2801379051685588,0.2771428994916033,0.2735467114811702,0.2695119447997094,0.2697711696681224,0.2691032724181895,0.2696054943299792,0.2707945491101348,0.2714114809076468,0.2728123635002184,0.2728402734617775,0.2725863384850219,0.2737187604993151,0.2746016076716965,0.2799067599067599,0.2843731596632833,0.2870783438991938,0.2934163940303859,0.2980588603631809,0.3057052592454934,0.3080416976917349,0.3124425657048337,0.3190770306491085,0.3235998802036537,0.3303220738413197,0.3325320512820512,0.3310554290053151,0.0,2.274285270839631,50.729738079479766,141.88427843688768,185.81683646068592,fqhc1_100Compliance_implementation_low_initial_treat_cost,57 -100000,95769,48646,464.67019599244014,4638,47.18645908383715,3676,37.89326399983293,1447,14.785577796573005,77.32840490063373,79.68836134402196,63.31625382636724,65.06457263926175,77.13949256896467,79.50182041944527,63.24407988670092,64.9953838401438,0.1889123316690586,186.5409245766898,0.0721739396663139,69.18879911795273,241.0232,169.50939719303344,251671.1879627019,176997.99928911476,559.44997,378.4650599919044,583663.2626423999,394684.5627052801,493.54553,242.0295933049928,512327.85139241297,250400.19316214687,2410.04459,1140.1802943797093,2484459.898296944,1158706.8941446396,836.36815,385.1183560732032,858339.7237101776,387488.3833644848,1404.1371,606.5974224905535,1434885.3595631153,605879.3953103308,0.379,100000,0,1095560,11439.599452850089,0,0.0,0,0.0,48834,509.3923921101818,0,0.0,44569,462.3834434942413,1047344,0,37606,0,0,0,0,0,100,1.0441792229218223,0,0.0,3,0.0313253766876546,0,0.0,0.04638,0.1223746701846965,0.3119879258300991,0.01447,0.3773740710156895,0.6226259289843105,22.708616981928667,4.006659540379356,0.3201849836779107,0.2714907508161044,0.2053862894450489,0.2029379760609358,11.081397722873357,5.997629144835388,15.474213711882324,11152.180668935263,42.306230781901405,12.323106667680438,13.385742504016642,8.33693145352722,8.260450156677107,0.5840587595212187,0.7985971943887775,0.7085811384876806,0.5761589403973509,0.1085790884718498,0.7540394973070018,0.928735632183908,0.8628048780487805,0.7215909090909091,0.1485714285714285,0.5101483216237315,0.6980461811722913,0.6489988221436984,0.531951640759931,0.0963222416812609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021280261037868,0.0042495790989675,0.0064878365755594,0.0086790381918331,0.010864478850888,0.0126813070404172,0.0147964594550497,0.0168967207089476,0.0191069128381279,0.0216082871005384,0.0235354415457946,0.0259256217015421,0.0278691896338955,0.0302821181002605,0.0323922151363176,0.0344510367353689,0.0363220437230871,0.038246549203024,0.0404223039674127,0.0424195715342074,0.0568747586293277,0.0707838728233017,0.0843931847968545,0.0977737602219933,0.1095926495690472,0.1246379875277454,0.1345550182404343,0.1442878733050937,0.1535848572893522,0.1615656836461126,0.1741312824489971,0.1861569756118673,0.1963704807807383,0.2054181750571456,0.2138815499779832,0.2228696124151223,0.2313118010758688,0.2387019798971218,0.2456542719273346,0.2522173584213783,0.2584710456880988,0.263251461988304,0.2677250180535331,0.2715070530659246,0.2755562035990717,0.2795311980084542,0.2823488133129495,0.2853850463481715,0.2882045699029252,0.2916683158519691,0.2885076355409518,0.2847850600951621,0.2817173111042271,0.2781849660943586,0.2757351304012231,0.2725213505157794,0.2677842796141072,0.2668242012504307,0.2682111296871268,0.2681344148319814,0.2685081428357986,0.2693995631039301,0.269990220761116,0.2704487835253302,0.2718687991584785,0.2743351373747313,0.2751698754246885,0.2799301810927905,0.2851436312480461,0.2905633692150546,0.2948354270791121,0.2974994768780079,0.3031072047536519,0.3056781626393356,0.3072723908216136,0.3113021256824254,0.314277117496615,0.3194668820678514,0.328390993959363,0.3282887077997671,0.0,1.8596974981099672,48.52469233628851,137.06246010516736,186.2793588057968,fqhc1_100Compliance_implementation_low_initial_treat_cost,58 -100000,95734,48968,467.7648484342032,4692,47.86178369231412,3743,38.54429983078113,1411,14.38360457099881,77.31464774318667,79.68073592501243,63.30648041847581,65.056142697915,77.13079319519065,79.50133121808432,63.23641176281283,64.99055942090195,0.1838545479960203,179.4047069281106,0.070068655662979,65.58327701306155,240.00746,168.8911378759881,250702.42547057476,176417.0909770699,557.29786,376.4894236444668,581597.259072012,392736.94055795815,497.76709,243.9392663581357,517002.4442726722,252482.66142994052,2426.187,1142.2414610759463,2499384.837152945,1158581.3060855048,882.18437,401.1127809253624,907642.9899513236,405672.1330855264,1370.88636,589.3375573503093,1398346.8778072577,585674.1336076132,0.38155,100000,0,1090943,11395.564794117034,0,0.0,0,0.0,48552,506.5807341174505,0,0.0,44950,466.5218208786847,1053042,0,37754,0,0,0,0,0,81,0.8460943865293418,0,0.0,1,0.0104456097102387,0,0.0,0.04692,0.1229720875376752,0.3007246376811594,0.01411,0.3650501330059341,0.6349498669940659,23.118506370783248,3.961026733687525,0.3165909698103126,0.2831952978893935,0.1969008816457387,0.2033128506545551,11.153604094900576,6.068870817106922,15.156377339811913,11253.96461817576,42.94022127168642,12.945460111490164,13.370552897816523,8.25579744739405,8.368410814985676,0.5928399679401549,0.810377358490566,0.7063291139240506,0.576662143826323,0.1287779237844941,0.7455516014234875,0.9318181818181818,0.871875,0.675531914893617,0.125,0.5273004963726613,0.7241935483870968,0.6450867052023121,0.5428051001821493,0.1299145299145299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400698981917,0.004633431679695,0.0068007876733185,0.0091454120516207,0.0115570476626481,0.0136924895064998,0.0157823323573519,0.0179902391211124,0.0200764622901887,0.0222759100773924,0.0243199737524735,0.0265735701817435,0.0286166886109282,0.0306543019062339,0.0325770556782757,0.034622144112478,0.0367302136296327,0.0387991864519342,0.0408456123202345,0.0427589081058553,0.0576172078939124,0.0717433401371225,0.0853162113391245,0.0984087586634834,0.1103518096684383,0.1257127743983073,0.1356635637027523,0.146512346007645,0.1569822131007354,0.1656705046624674,0.1769393344691496,0.1879110282884971,0.1976950644314456,0.2061121399064222,0.214418009833969,0.2234027199555925,0.2315099594018766,0.2387933464899915,0.2464743881357474,0.2528850459884942,0.2587586078972385,0.2639071140687974,0.2687626654657928,0.2732311900848261,0.2772579233910169,0.2806671515390589,0.2843277048155097,0.2868784723546537,0.2910602104392337,0.2934151447720121,0.2900048376693184,0.2860378912685338,0.2834414581402533,0.2802598225602027,0.2773281152717246,0.2744286238083598,0.2707701541571898,0.2708166106970268,0.2709362963972869,0.2715772618094476,0.2724795131694387,0.2737676229427611,0.2747821747177109,0.2756455763599255,0.27877732175241,0.280749354005168,0.2826961200792977,0.2867658525934936,0.2904044795325705,0.2955511811023622,0.2979425729143115,0.3029568333948242,0.3087875556670639,0.3118214258598435,0.3161344695196179,0.3178605089538172,0.3202863234846177,0.3285772523440685,0.3336998350742166,0.3346168656141702,0.0,2.123311522524116,48.930068900814405,137.838724996314,191.17983208683228,fqhc1_100Compliance_implementation_low_initial_treat_cost,59 -100000,95833,48901,467.4798868865631,4669,47.70799202779836,3777,39.02622269990504,1403,14.38961526822702,77.3504688262772,79.68197094210812,63.33176974345843,65.0597062521659,77.17207359079232,79.5030784784357,63.26463695950337,64.99366945882713,0.1783952354848708,178.89246367242606,0.0671327839550599,66.03679333876755,240.295,169.1024457458233,250743.25128087404,176455.13023464088,561.77063,379.495309172638,585810.774994,395611.0625881148,501.07775,246.02692302465715,520116.6821449814,254648.38764168016,2432.54395,1141.8477743709157,2515858.0447236337,1169129.198267074,875.97571,397.9573833449703,905488.6416996232,406685.1745692712,1360.18762,581.4365160688325,1396666.3884048292,588438.3919205989,0.3803,100000,0,1092250,11397.420512767,0,0.0,0,0.0,48948,510.35655776194005,0,0.0,45258,469.51467657278806,1049727,0,37744,0,0,0,0,0,86,0.8973944257197416,0,0.0,0,0.0,0,0.0,0.04669,0.1227714961872206,0.3004926108374384,0.01403,0.367477328936521,0.6325226710634789,22.906361399646432,3.98557743946351,0.3113582208101668,0.2915011914217633,0.200688377018798,0.1964522107492719,11.343146060743106,6.224135915305271,14.994994021819142,11243.997327822948,43.29113334252448,13.515347211431717,13.224922798856518,8.439208015119682,8.111655317116576,0.5851204659782896,0.8138056312443234,0.6828231292517006,0.5567282321899736,0.1199460916442048,0.7559681697612732,0.9343891402714932,0.8726708074534162,0.6954314720812182,0.1411764705882353,0.5120937263794406,0.7329286798179059,0.6112412177985949,0.5080213903743316,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0044208754550155,0.0066883182786968,0.0087885961614663,0.0110055536342738,0.0133833085494286,0.0156442812707154,0.0178294257005146,0.0199685084454623,0.0219376369182892,0.0237790059780769,0.025835600965241,0.0281671311483839,0.0300823892893923,0.0318571841095664,0.0338585524616417,0.0359915533196695,0.0379920136908157,0.0399048104001912,0.0420657061958694,0.0572349480535736,0.071162732347837,0.0848343864281747,0.0978904903979493,0.1104977613905715,0.1253487192493025,0.1352354294559835,0.1454798804420665,0.1546887009992313,0.1646003664691448,0.1764440044761986,0.1874114989244754,0.1977712852038101,0.206078422801189,0.2146416040651569,0.2239257347320845,0.2328962785248005,0.2407938704560029,0.2477606857013112,0.2534009710516672,0.2588791966496216,0.2639676397348516,0.2688505203405865,0.2728230673436153,0.2771739790404255,0.281460667233581,0.2853530928480236,0.287332476358962,0.289746245468669,0.2931389365351629,0.2901939655172413,0.2877792921158055,0.2860161135838638,0.2825886022934057,0.2792495955593155,0.2758019632427143,0.2719209486166007,0.2709132016121104,0.2717100669312124,0.2725654897494305,0.2734800447594181,0.2735836070087117,0.2747213831892511,0.2758344637416887,0.2773286131177343,0.27862397678997,0.2794450096077766,0.2830294530154277,0.2890329738913352,0.2952848722986247,0.2979402770282425,0.2995970485111727,0.3023760779204665,0.3062140133104015,0.3118289522399111,0.3122534230679972,0.3155368926214757,0.3176517098240759,0.322228144989339,0.3172645739910314,0.0,1.483709854452581,49.74820837211788,139.99180761061575,192.57298159859093,fqhc1_100Compliance_implementation_low_initial_treat_cost,60 -100000,95715,48736,465.0368280833725,4539,46.24144595935851,3623,37.21464765188319,1401,14.28198297027634,77.30949638025908,79.6707270441831,63.31695901961641,65.0598948648079,77.12830932339412,79.49234388591421,63.24834032003525,64.99452561608459,0.1811870568649567,178.38315826888618,0.0686186995811652,65.3692487233144,241.47574,169.884524493331,252286.20383429973,177489.96969475108,561.68744,379.741239216275,586192.2791620959,396100.65216139046,498.32689,244.62343918276375,516825.3878702397,252598.6457612796,2348.84073,1111.688215143185,2415595.476153163,1123057.718375578,823.33107,381.26296053299313,843935.6527190096,382086.0504687635,1359.77418,584.3555546371367,1387660.3667136813,583019.6118683757,0.37803,100000,0,1097617,11467.554719740898,0,0.0,0,0.0,49070,511.9991641853419,0,0.0,44924,465.4547354124223,1042605,0,37468,0,0,0,0,0,84,0.8776053910045447,0,0.0,0,0.0,0,0.0,0.04539,0.1200698357273232,0.3086582947785856,0.01401,0.3699006552525893,0.6300993447474107,22.83844723225594,4.1345355387769365,0.309964118134143,0.2787744962738062,0.2103229367927132,0.2009384487993375,11.770693703045731,6.464570190173959,15.01336190866408,11132.50049423092,41.65813403907638,12.382832932446217,12.753476961476366,8.557374957292248,7.964449187861551,0.5812862268837979,0.8,0.6874443455031166,0.5748031496062992,0.1208791208791208,0.7528991971454059,0.9047619047619048,0.85625,0.717948717948718,0.1878787878787878,0.504396482813749,0.718804920913884,0.6201743462017435,0.5255731922398589,0.1012433392539964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875411429902,0.0046529073067877,0.0068987906825744,0.0091106687251157,0.0115894881309408,0.0141378362698097,0.0162666258981807,0.0185878918411301,0.0206655492416499,0.0227609992733673,0.0249592554249223,0.0271988007474793,0.0294704370179948,0.0315229032789586,0.0334553704945083,0.0355423305023453,0.0373827906687917,0.0392640836306313,0.0411361817558227,0.043125,0.058059396015204,0.0713388595830193,0.0838874787606721,0.0963827549947423,0.1083272700431284,0.1240124795092803,0.1345868171979118,0.1449511400651466,0.1548239617159459,0.1630747126436781,0.1755720256819063,0.1856575257932856,0.1958343308594685,0.2037973298314729,0.2128559159674968,0.2218564334486122,0.2296592470152004,0.2378480043247139,0.2442528735632184,0.2504355001375263,0.2558163761372317,0.2610104460327301,0.2662642045454545,0.2711358376997878,0.2748761053347585,0.2788507758865073,0.2819092398304343,0.2854435612082671,0.2890920391567825,0.2912871287128712,0.2872341858241418,0.283483954387268,0.280407927542152,0.2764360266200863,0.272967555126587,0.2683901184681789,0.2647720075997467,0.2649910586845602,0.265598852498207,0.265756358768407,0.2664708193776547,0.2672343956847325,0.2680640977364963,0.2699053824868339,0.2715737870377046,0.2735702041452392,0.2740626868221026,0.2779899812147777,0.2812325321408608,0.2855174043156402,0.2882618510158014,0.2914207419898819,0.29047976011994,0.2961172382535126,0.3013903144536717,0.306727613689639,0.3073311117843078,0.3032022699635184,0.3101007350939286,0.3085670962850644,0.0,2.452928303442641,48.35320837426077,132.0823452298518,181.95747519519276,fqhc1_100Compliance_implementation_low_initial_treat_cost,61 -100000,95733,48405,461.0740288092925,4686,47.601140672495376,3734,38.41935382783366,1403,14.2792976298664,77.40440741590693,79.76256816247653,63.3594678928421,65.09953315552131,77.22490996193346,79.58725709777984,63.29042557840267,65.03455957494978,0.1794974539734681,175.311064696686,0.0690423144394287,64.97358057153235,240.56252,169.2327376238615,251284.84430656096,176775.75927199767,557.72174,376.2954522738997,581973.3738627224,392460.57500955765,491.12877,241.7757803806355,509586.3077517679,249828.2460056484,2412.7097,1153.431487659216,2484492.1813794617,1169085.5688834724,856.89121,395.3502324737648,880557.4357849435,398451.9842785605,1363.10082,590.2768083203208,1388718.916152215,585756.1469408165,0.37948,100000,0,1093466,11422.038377570952,0,0.0,0,0.0,48649,507.5365861301745,0,0.0,44434,460.6770914940511,1056526,0,37812,0,0,0,0,0,97,1.0132347257476524,0,0.0,1,0.0104457188221407,0,0.0,0.04686,0.1234847686307578,0.2994024754588135,0.01403,0.3653295128939828,0.6346704871060171,22.93214561443817,3.950919020960358,0.3176218532404927,0.2771826459560793,0.2062131762185324,0.1989823245848955,11.29599577922499,6.174254044295719,15.065345448850527,11225.14898243151,42.8992954864502,12.840048491020784,13.36900769363499,8.463743280668297,8.226496021126124,0.5990894483128013,0.8222222222222222,0.7074198988195616,0.6012987012987013,0.1130551816958277,0.7692307692307693,0.9271948608137044,0.8772455089820359,0.7676767676767676,0.1286549707602339,0.5214508580343213,0.7359154929577465,0.6408450704225352,0.5437062937062938,0.1083916083916083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793372280215,0.0046921712693184,0.007131698013675,0.0094246686639922,0.0114993950362469,0.0135688110749185,0.0157350318471337,0.0179178188422803,0.0200670263200915,0.0222154003581478,0.0244847341935616,0.0267260579064587,0.0286416300850202,0.0307247033618984,0.0328218991508197,0.0350327689222435,0.0373120417546911,0.0395435684647302,0.0416112404389757,0.0435683782939277,0.0579551267996784,0.0717686825664263,0.0852302528060421,0.0983987467538611,0.1112563375530984,0.1270500904101767,0.1378286053765038,0.1467641829814868,0.1557091577283022,0.1640393771715352,0.1749951536821246,0.1864239879670609,0.1955949532303676,0.2047194156497397,0.2134134266288203,0.2228952351423477,0.2315304460361023,0.2390043173232595,0.2465271871633498,0.2538881450200844,0.2589802544164712,0.263933794777818,0.2684743601850977,0.2729650641982681,0.276289184051531,0.2791023326086155,0.2821124105994982,0.2845002536783358,0.2876627482354155,0.2908995334778895,0.2875067024128686,0.2843285013564245,0.2822468696103313,0.2803657694962043,0.2776489356987754,0.2750452877867592,0.2708979546850152,0.2699440538909459,0.270303750212116,0.2706641608453601,0.2710750265358187,0.2717173306067875,0.2718889212706607,0.2745689750815452,0.2749535027898326,0.2775436328377504,0.2793285074500746,0.2839160839160839,0.2900641581411479,0.2932136276316305,0.2988371570960355,0.3031669463087248,0.3101524730383042,0.3146218991231357,0.3146098505810736,0.3169005915787031,0.3183599638227314,0.319634703196347,0.3181072210065646,0.3285548237117396,0.0,2.26935004610918,50.52023867102258,133.62129676490818,188.7433267900758,fqhc1_100Compliance_implementation_low_initial_treat_cost,62 -100000,95745,48783,465.34022664368894,4701,47.96072901979216,3740,38.44587184709384,1379,14.047730952007935,77.33232137485312,79.69850731582706,63.31916690730778,65.07125130420347,77.15191024451428,79.52251367924825,63.24961232297207,65.00607132844823,0.1804111303388396,175.9936365788093,0.0695545843357123,65.17997575524248,240.5942,169.2654138920548,251286.43793409577,176787.7318837065,561.99803,379.52339657311006,586318.9200480443,395734.9381932321,496.16313,243.14197683693683,514366.0034466552,251055.73715560927,2424.62404,1143.2210260609222,2492197.7753407485,1153847.9775037046,847.24927,390.6748929593972,869155.5485926158,392290.56656681467,1338.04636,580.4175429060733,1362989.3153689487,574798.4490983115,0.38013,100000,0,1093610,11422.110815186172,0,0.0,0,0.0,49048,511.6507389419813,0,0.0,44830,464.3688965481226,1049532,0,37663,0,0,0,0,0,107,1.1071074207530418,0,0.0,0,0.0,0,0.0,0.04701,0.1236682187672638,0.2933418421612423,0.01379,0.3561085049969406,0.6438914950030593,23.27078483635397,3.9386966114298754,0.3098930481283422,0.2885026737967914,0.2040106951871657,0.1975935828877005,11.470585939380449,6.390892240986712,14.840122979571744,11252.40303936988,42.76158707753675,13.161441359717696,12.967093020502343,8.485662053637991,8.147390643678717,0.5844919786096257,0.8081556997219648,0.6790336496980155,0.583224115334207,0.1109607577807848,0.7688808007279345,0.9477272727272728,0.8762541806020067,0.7433155080213903,0.1560693641618497,0.5077622112836047,0.7120500782472613,0.6104651162790697,0.53125,0.097173144876325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022396530057967,0.0048078386026838,0.0069754690926813,0.0094113342548174,0.0115772767966143,0.0139668503784598,0.0160214571265399,0.0183769104329804,0.020183017228158,0.0223587223587223,0.0245112612381723,0.0270517216598566,0.0291516709511568,0.031371337350018,0.033355687387155,0.0352237139933645,0.0372970510271703,0.0392783408895205,0.0414861002857885,0.0432957693669673,0.0580540766259526,0.071557866761533,0.0851811449789171,0.0978274585681837,0.1090864994253055,0.1242278073961242,0.1345302900073218,0.1449739730256224,0.1545404054429325,0.1631762371990777,0.1741256556909124,0.1851679508267682,0.1960270232047083,0.2056787233809841,0.214380034332497,0.2233664418828688,0.2316746625013946,0.2389245134435819,0.2464887799786717,0.2526220573417606,0.2584597230416826,0.2642350107003777,0.2688823181549379,0.2731562432633116,0.2762450386590117,0.2811049125010775,0.2853624076320034,0.2883098072598371,0.2918671426354183,0.2942927908937605,0.2914505335017604,0.2889401681226306,0.2849492592696708,0.2812837769675309,0.2786695717906532,0.2751256473319992,0.2715877657472536,0.2713364749001898,0.2726530751049973,0.2734113712374582,0.2732709162602081,0.2745940406747595,0.2752421914147319,0.2766573816155989,0.2780147622699386,0.2795779759435918,0.2797918669758498,0.2846687933946331,0.290443864229765,0.2937369272662694,0.2977512869141154,0.3013220518244315,0.3028743567214761,0.3078493647912885,0.3126504908316355,0.3189264552108748,0.3207743857036485,0.3256637168141593,0.3272872766070952,0.3273475495697718,0.0,2.3911841353278827,47.28392818238188,142.040237317922,188.7673974755791,fqhc1_100Compliance_implementation_low_initial_treat_cost,63 -100000,95728,49025,467.9717533010196,4846,49.40038442253051,3830,39.476433227477855,1440,14.64566271101454,77.41699606751023,79.77051303712457,63.36600846061516,65.10056797604346,77.22644581628401,79.5854972935364,63.29302633323622,65.03254529200139,0.1905502512262131,185.01574358816697,0.0729821273789426,68.02268404207723,238.56162,167.828616561874,249207.3165635969,175317.75777397832,560.27355,378.3064951039127,584713.6156610396,394626.3044291248,503.71614,247.82076762642976,523536.0500584991,256694.3612302405,2484.87456,1176.1427163877602,2561331.9822831354,1194226.7838957882,868.63921,397.8456263860709,894299.8286812635,402542.6365392684,1401.01364,604.5165575063432,1426386.9714190206,598564.2165730587,0.38287,100000,0,1084371,11327.605298345312,0,0.0,0,0.0,48759,508.7435233160622,0,0.0,45440,471.97267257228816,1061749,0,38100,0,0,0,0,0,114,1.190874143406318,0,0.0,2,0.0208925288316897,0,0.0,0.04846,0.1265703763679578,0.2971522905489063,0.0144,0.3668053079817785,0.6331946920182214,23.38697579202715,4.103915485483538,0.2955613577023498,0.2960835509138381,0.2031331592689295,0.2052219321148825,11.475571368603545,6.22815218684616,15.27481667754524,11307.771890264645,43.65534351078933,13.826687302550637,12.750940786318104,8.588054244396695,8.489661177523892,0.5953002610966057,0.8121693121693122,0.7058303886925795,0.6053984575835476,0.1132315521628498,0.7586790855207451,0.91869918699187,0.867741935483871,0.7905759162303665,0.1276595744680851,0.5224613061532654,0.7305295950155763,0.6447688564476886,0.545144804088586,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0043359774691264,0.0065522557611165,0.0088546796779008,0.0110928095005693,0.0135690873185529,0.0155848656582541,0.0177791385997142,0.0199685245365544,0.0220774039100944,0.0243270107698771,0.0264789194958742,0.0287529426277537,0.0308847306468389,0.0328880177438489,0.0349075126588818,0.0370646457116826,0.0393918021905078,0.041583088227652,0.0433799706216337,0.0584334896154207,0.072291803999121,0.0858284898969764,0.0982299675020771,0.1106036955788052,0.1258328574148106,0.1362744370074146,0.1461721876862811,0.1556533723650893,0.1645896786924628,0.1774384597161501,0.1888970635968234,0.1989282958164407,0.2085422469823584,0.2162375976530309,0.2250904544297775,0.2333151259099067,0.2411428828342774,0.248948400775519,0.2566021328207241,0.2618954036807546,0.2672617239526135,0.2715658350371692,0.2756256058593329,0.2788384561267315,0.2825843457282473,0.2869207800807066,0.2884468830970889,0.2912041763041259,0.2938326223205351,0.2908763634409758,0.2875883361921098,0.2853268506548255,0.2824544195707362,0.2796543597800471,0.2755352755352755,0.2726370666708667,0.273062369519833,0.2731512099167387,0.2742866246548184,0.2744934157983693,0.2742096505823627,0.2751973410884919,0.2769999778824674,0.2777632299378675,0.2781176592064844,0.2785827037997519,0.2828583845532998,0.2862042682926829,0.2896808302330135,0.2907060195568314,0.2947373938567984,0.299609447647387,0.3046167773083886,0.3080906148867314,0.3129504766333411,0.3148342582870856,0.3176866706278471,0.3230563002680965,0.3238341968911917,0.0,1.953607111201449,51.37256503386759,132.83577549191514,198.36949394835796,fqhc1_100Compliance_implementation_low_initial_treat_cost,64 -100000,95697,48844,466.6708465260144,4714,48.06838249892891,3758,38.69504791163777,1388,14.086126001860038,77.3508434030137,79.74208532803088,63.31502979323547,65.08308642844426,77.17405662344254,79.57033282498503,63.2483865983982,65.02107315423932,0.1767867795711595,171.75250304585177,0.066643194837269,62.01327420494352,239.43018,168.42468732311886,250195.8891083315,175997.65292863813,561.968,379.65752864555657,586652.8940301159,396145.309083953,498.71334,244.61063464881312,517935.4943206162,253053.1160084351,2442.33285,1132.8081287829496,2515653.4374118308,1147294.1522931494,864.8656,383.9652290723753,888052.9901668809,385666.3121874474,1347.4821,573.2544968877565,1368565.3050774843,565353.8982934138,0.38082,100000,0,1088319,11372.540414015068,0,0.0,0,0.0,48878,510.1518333908064,0,0.0,45077,467.82030784664096,1054321,0,37832,0,0,0,0,0,107,1.1181123755185638,0,0.0,0,0.0,0,0.0,0.04714,0.1237855154666246,0.2944420873992363,0.01388,0.3625050999592003,0.6374949000407997,23.353836629889557,4.018058449256233,0.3116019159127195,0.2799361362426822,0.2080894092602448,0.2003725385843534,11.254968451994303,6.211039161993852,14.87819014762894,11257.55152540696,42.85670875612583,13.045294540796904,13.176320894534008,8.579132481623889,8.055960839171023,0.5870143693453965,0.8193916349809885,0.6942783945345858,0.5754475703324808,0.1075697211155378,0.7703703703703704,0.9227467811158798,0.8556701030927835,0.7430167597765364,0.1388888888888889,0.5130694548170276,0.7372013651877133,0.6409090909090909,0.5257048092868989,0.1001642036124794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0044315542890752,0.0068927712188734,0.0091877388405561,0.0112921931270219,0.0136407163668221,0.0157504411959726,0.0180772726808493,0.0203824913070157,0.022439344127979,0.0244490252181849,0.026858803833157,0.0289546497155964,0.0309096716362549,0.0329425363276089,0.0349932287843858,0.0370063403920268,0.0389437847712364,0.0410135324894163,0.0428610144051366,0.0575400555660002,0.0716065669891527,0.0848229749446304,0.0974088140300674,0.1096154860488422,0.1259825858803863,0.1364446897488695,0.1466328747284576,0.1561170610744137,0.1648371693760394,0.1766379616955692,0.1873734804117908,0.1975888932410671,0.2053529418201315,0.2145900069350417,0.2236757499833706,0.2321336875711638,0.2397370524206711,0.2470562854125742,0.2534292884727777,0.2589176176477396,0.2643423916859771,0.2693901716992303,0.2734083743901416,0.2777291939950445,0.2813585203063813,0.28461096253343,0.2879273096962765,0.2916537427626137,0.2943192302622908,0.2904579947257951,0.2873921644046376,0.2848389454157063,0.2810577130917213,0.2773840349189909,0.2735646206633625,0.2706234728462205,0.270789086750531,0.2720518226332971,0.2726030072251513,0.2728424268390366,0.2735151669640581,0.275066401062417,0.276304136037552,0.2770146411141531,0.2770242392986075,0.2781239474570562,0.2816216551040634,0.2865438457018423,0.2916196333346308,0.2956684658964179,0.2993318020463562,0.3033471509002041,0.3051051051051051,0.3095481117194024,0.3163265306122449,0.3187028657616892,0.3230890464933018,0.3325314087142475,0.3278813236972233,0.0,2.196514977082771,46.696311761268014,143.17727658560747,192.07940346792032,fqhc1_100Compliance_implementation_low_initial_treat_cost,65 -100000,95722,49130,469.0562253191534,4690,47.65884540648963,3756,38.64315413384593,1478,15.0017759762646,77.26691653433518,79.62675583470393,63.2951211478972,65.03884499049505,77.07568871714443,79.44078959419164,63.22144637935047,64.970298532623,0.1912278171907502,185.96624051228616,0.0736747685467307,68.54645787204561,240.40918,169.13137679335458,251152.8384279476,176689.51379552716,560.40021,378.2771645364936,584857.4831282254,394595.5721030626,500.23741,245.46794344128855,519058.2415745597,253684.18146796757,2466.2248,1166.6859777341892,2537145.2644115253,1179588.020470936,881.33238,405.8444664622909,901102.1604228911,404558.8353126474,1433.19082,612.8919950281809,1455391.7176824554,603655.4607363623,0.38247,100000,0,1092769,11416.038110361254,0,0.0,0,0.0,48863,509.85144480892586,0,0.0,45226,469.0457783999499,1046560,0,37620,0,0,0,0,0,79,0.8148596978750967,0,0.0,1,0.0104469192035268,0,0.0,0.0469,0.1226239966533322,0.3151385927505331,0.01478,0.3676857663494634,0.6323142336505365,23.07488472130697,4.017556616952351,0.3120340788072417,0.2763578274760383,0.2036741214057508,0.2079339723109691,11.483589541789817,6.336695849545988,15.723040446857055,11274.875422074228,43.3105873745827,12.908142964198976,13.35328556945199,8.572529374139322,8.476629466792414,0.5849307774227902,0.8198458574181118,0.6868600682593856,0.6078431372549019,0.0973111395646607,0.7476149176062445,0.9247787610619468,0.8454545454545455,0.7447916666666666,0.1229050279329608,0.5128697656550134,0.7389078498293515,0.6247030878859857,0.5619546247818499,0.0897009966777408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024510796904752,0.0047957497287815,0.0071640215935381,0.0094574415131906,0.0115330634827004,0.0137761803427244,0.016127223609766,0.0182521615745041,0.0204450896006051,0.0226621356043236,0.0246737670804588,0.0269290788879306,0.028854657260967,0.030940683290589,0.0331063654183431,0.0351346881395877,0.0372798160862406,0.0394770970586709,0.0413193072909087,0.0432825556921666,0.0587055948875383,0.0720895178679841,0.085856412732062,0.099026674383122,0.1111029047131688,0.1261324189315045,0.1369461580115307,0.146628034555855,0.1552850832629226,0.1641919240721057,0.1764407784786242,0.1877059129530085,0.1984249738584872,0.2065520980514573,0.215070591736193,0.2239367666159704,0.2316767685804388,0.2398170161462969,0.2465463964373352,0.2531038989326944,0.258243348031897,0.263680835127797,0.2693609868125103,0.2737844058693776,0.2787450942272876,0.2824894280677096,0.2866286716352477,0.2888532437111722,0.2915203276266507,0.2952661705024654,0.2923099762470308,0.289414880410494,0.2857848673066064,0.2819070480377129,0.2790704589720335,0.2753436623603512,0.2716941657553136,0.2714112002103326,0.2713890028723841,0.2719223079120251,0.272521341920024,0.2733412322274881,0.2734741784037559,0.274811206935073,0.2754358542743778,0.2749687565090606,0.2742146969956103,0.2783320220298977,0.2842514124293785,0.2877150860344137,0.2914722298471955,0.2950120032008536,0.2980866062437059,0.2990285367334547,0.3047467465593109,0.3071841453344343,0.3118623420130957,0.3183098591549296,0.3225894564326687,0.3209498276522405,0.0,2.272749396311562,49.8990037309856,137.63765821724755,191.71945756625183,fqhc1_100Compliance_implementation_low_initial_treat_cost,66 -100000,95697,49293,471.7389259851406,4620,47.16971273916633,3661,37.61873412959654,1390,14.19062248555336,77.288290147924,79.65828187325519,63.294707477804174,65.04405164400582,77.11476913686775,79.4877671190641,63.22969882476869,64.9826544298983,0.1735210110562519,170.51475419108897,0.065008653035484,61.3972141075152,240.11152,169.05266326422915,250907.8654503276,176653.85880877083,565.12893,381.98660881280944,589933.4148405906,398556.1290456434,502.23579,246.95056154201976,520475.3963029144,254737.08840976967,2357.68573,1090.2643179149077,2428020.794800255,1103609.985595062,856.0322,380.6542178910296,881296.7073157988,384564.4141573026,1341.3686,559.9781006327748,1371687.1166285255,558885.9482538211,0.38264,100000,0,1091416,11404.902975014891,0,0.0,0,0.0,49275,514.258545199954,0,0.0,45202,467.9666029238116,1042148,0,37386,0,0,0,0,0,103,1.0763137820412343,0,0.0,0,0.0,0,0.0,0.0462,0.1207401212628057,0.3008658008658009,0.0139,0.3575129533678756,0.6424870466321243,23.45869193928996,4.038690422032236,0.3163070199399071,0.2895383774924884,0.1912045889101338,0.2029500136574706,11.541007249759003,6.397093213947596,14.699141789856084,11315.326677079152,41.81128544611704,12.94458050248242,13.059372053936595,7.815304389308858,7.992028500389157,0.5894564326686698,0.7924528301886793,0.6899827288428325,0.6128571428571429,0.1211305518169582,0.7616822429906542,0.9151376146788992,0.8412698412698413,0.7687861271676301,0.1232876712328767,0.5183326900810498,0.7067307692307693,0.6334519572953736,0.5616698292220114,0.1206030150753768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572023212712,0.0042984154661854,0.0064537078378049,0.0086755114894654,0.0108005857944837,0.0131759818346587,0.0153748903978303,0.0176797835961823,0.0198305206022754,0.0220129969810162,0.0243097546477545,0.0264211369095276,0.0285314771593958,0.0305764101296588,0.0327282104177411,0.0347037060002893,0.0368081008883642,0.0387604943908842,0.0404601431186553,0.0425008598138633,0.0574308093994778,0.0714779294748303,0.0848140723559231,0.0988002525784045,0.1111451251952877,0.1267906868402384,0.1373825325192461,0.1464443615831247,0.1552459664916763,0.1640254246387081,0.176200386021285,0.1871939858746046,0.1975063973430609,0.2062329644346655,0.2157093776152931,0.224969495285635,0.233702213279678,0.2411266780130972,0.2486268890935762,0.2537018756169792,0.2601845625912958,0.2657806530248693,0.2707666405823907,0.2754051134317609,0.279689990388242,0.2838893620172548,0.2872193653580835,0.2901396605331566,0.293327798030643,0.2968008774132167,0.2939623708771599,0.2908049458871478,0.2872473946214268,0.2843919935207682,0.2813512950902548,0.2777505663380885,0.2728092090699219,0.2735764031134781,0.2735911828433965,0.2747785481312492,0.2751655257546852,0.2752703847441933,0.2764815240323355,0.2765271882847048,0.2779685264663805,0.28002683386227,0.2813038443069796,0.285598453190295,0.2899428889817523,0.2951671983930048,0.3001312395347785,0.3038268672472948,0.3076683485952781,0.3112148828801687,0.3144567219152854,0.3157101449275362,0.3213271558810342,0.3231164722167293,0.3269537480063796,0.3339503887449093,0.0,2.487997644934038,46.210687390950696,137.44343602440406,185.98491066456717,fqhc1_100Compliance_implementation_low_initial_treat_cost,67 -100000,95827,49261,469.73191271771,4623,47.05354440815219,3696,37.9642480720465,1378,14.00440376929258,77.36488025655099,79.67866919511752,63.35773544642036,65.07068507725313,77.19134405501482,79.50908513658113,63.29169273934218,65.0083012254198,0.1735362015361659,169.5840585363868,0.066042707078175,62.38385183333151,240.97304,169.53854420786038,251466.7473676521,176921.47746236486,559.77111,377.477352588911,583541.1105429577,393308.9657287728,497.86123,244.210020602742,515611.85260938987,251847.9011881673,2387.17296,1117.8996952697194,2455886.8168678973,1131340.222765732,833.01736,379.7121688388231,855278.919302493,382233.5446573742,1328.88194,567.2855714723523,1352571.947363478,564721.620245063,0.38347,100000,0,1095332,11430.306698529645,0,0.0,0,0.0,48872,509.3658363509241,0,0.0,44862,464.11762864328426,1052362,0,37774,0,0,0,0,0,85,0.8870151418702453,0,0.0,1,0.010435472257297,0,0.0,0.04623,0.1205570188019923,0.2980748431754272,0.01378,0.3748435544430538,0.6251564455569462,23.27184032777045,4.00159977410884,0.3011363636363636,0.2878787878787879,0.2188852813852813,0.1920995670995671,11.543748010936744,6.54157496401142,14.70827169342216,11382.728905923055,42.188138745947846,13.057014604270972,12.55067554451019,8.923097888748451,7.657350708418241,0.5844155844155844,0.8035714285714286,0.7053009883198562,0.5500618046971569,0.1056338028169014,0.75625,0.9172113289760347,0.8603174603174604,0.7010309278350515,0.125,0.5097049689440993,0.7173553719008264,0.6441102756892231,0.5024390243902439,0.1003584229390681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017725108882,0.0048156859564459,0.007163730822307,0.0094157559013529,0.0120499079732766,0.0142956054249989,0.0167995270036086,0.0190905935439083,0.0211604514229636,0.0232560519985669,0.0255196162833599,0.0275853575936701,0.0293531213385681,0.0312165500205846,0.0331704702414084,0.0352025436676714,0.0373293338849813,0.0394446459099621,0.0415861940066039,0.0435316395114135,0.0585247303752842,0.0726335814031273,0.0856789683745194,0.0988449018166544,0.1111871689290942,0.1261245090171897,0.1359731358777979,0.1453294921812712,0.1550475255763342,0.1639674378748928,0.1758668545792944,0.1876452718407766,0.1982877568093173,0.2070614959537824,0.2152801432856813,0.2247384833137979,0.233497449150088,0.2417808219178082,0.2496574993489657,0.2555037377408957,0.2605377697218791,0.2665266351595776,0.2713884164777022,0.2752169651182251,0.2803963902770365,0.2841662464176332,0.2876216168958497,0.2911447029407658,0.2956118601167415,0.2981378711764551,0.2953145342048398,0.2923714281794861,0.2894226444794243,0.2865257633862922,0.2842820277044464,0.2802914579005254,0.2760326138482444,0.275637138408588,0.2758838383838384,0.2772164305444177,0.2769965359048778,0.2783285279829377,0.2797081451747784,0.2787082673565423,0.2801653089988294,0.2818692847706137,0.2841567098833432,0.2883630915220377,0.2935885367639368,0.2993044028140068,0.3042648862242812,0.3080513418903151,0.3117546848381601,0.3139375476009139,0.3190767781441356,0.3235676314235086,0.3260039700717667,0.3301600162041725,0.3366174055829228,0.3395793499043977,0.0,2.350496303216997,48.25693437522623,131.2115148273925,191.6842215020724,fqhc1_100Compliance_implementation_low_initial_treat_cost,68 -100000,95644,48458,462.5486177909749,4595,46.84036635857973,3669,37.85914432687884,1398,14.292585002718411,77.2563444549925,79.6654057402468,63.27473565930678,65.05546310230342,77.07545235136983,79.48888380449455,63.20579467620545,64.99013545626038,0.1808921036226678,176.52193575224828,0.0689409831013279,65.32764604304475,240.45098,169.1213256635313,251402.05344820372,176823.7690430464,556.28459,375.9807336553847,581106.8127639999,392591.2170709973,492.3697,242.39882968774705,511656.4760988666,250891.19187473287,2364.49875,1127.885245503573,2439640.217891347,1146706.5215837618,827.83192,386.48490229434265,849377.0544937477,388028.76649874647,1355.9965,585.6003656853275,1387522.8765003555,585987.4941199004,0.37845,100000,0,1092959,11427.366065827442,0,0.0,0,0.0,48589,507.4965497051566,0,0.0,44432,461.4717075822843,1049580,0,37737,0,0,0,0,0,91,0.9409895027393248,0,0.0,1,0.0104554389193258,0,0.0,0.04595,0.1214163033425815,0.3042437431991295,0.01398,0.3539490179690764,0.6460509820309235,22.964492460136896,4.064235760191457,0.3014445352957209,0.2861815208503679,0.2183156173344235,0.1940583265194876,11.478992654036627,6.392218056936114,14.991172465562148,11193.34858862608,42.27869434440782,12.976006698137722,12.534812536895076,8.839721989592366,7.928153119782656,0.5906241482692832,0.7866666666666666,0.7142857142857143,0.5880149812734082,0.1123595505617977,0.7523809523809524,0.9166666666666666,0.8637873754152824,0.7281553398058253,0.1666666666666666,0.5163086714399363,0.6821305841924399,0.6583850931677019,0.5394957983193277,0.093984962406015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0046319288892492,0.006677559139021,0.0086861113650909,0.0110896327195035,0.013630390269246,0.0156071486861433,0.0177673791327802,0.0199353558496818,0.0222406622000942,0.0245957149893285,0.0265445800961894,0.0286296673770036,0.0309613163972286,0.0332214245131966,0.035182119205298,0.0374228994972269,0.0395051212266012,0.0414455474391792,0.0432864310076872,0.0582210749631611,0.0722202434578558,0.0858414604700966,0.0983432276535724,0.1097768163351448,0.1257156160382649,0.1356139084656533,0.1458284521502055,0.1549857306241115,0.1631054207493104,0.1742730536597988,0.1848874249680369,0.1948020826525499,0.203351196151275,0.2116483225621457,0.2213478656573952,0.2308561203377509,0.238590006536095,0.2455141535699269,0.2514049776350499,0.2574101336548158,0.262431878113097,0.2676066359140983,0.2713768028990376,0.2745558530055975,0.2789566591366391,0.2823700436112086,0.2846986877309211,0.2886482982171799,0.2919026683038249,0.2887852608596035,0.28429711073451,0.2817465917750995,0.2797758665624185,0.2776007386008279,0.2735773730921598,0.2693576003551271,0.2689677843523997,0.2704652557621455,0.2712956335003579,0.2719589836047101,0.2730888726178933,0.2746285546637608,0.2765620821820126,0.2780839643439087,0.2798090147131328,0.2800136328779573,0.2832321081961054,0.2879315144766147,0.2915945903443938,0.2978790613718411,0.3014628499263313,0.3083213683750546,0.3102827570689267,0.3116372611756102,0.3136800648673694,0.3174415161385845,0.3252751572327044,0.3272969374167776,0.328782707622298,0.0,1.9194316456241167,50.37648047712592,132.11419959510155,184.3100433261343,fqhc1_100Compliance_implementation_low_initial_treat_cost,69 -100000,95690,48898,467.14390218413627,4592,46.78649806667364,3645,37.48563068241196,1390,14.108057268262096,77.32722884548278,79.70510871809431,63.32110870231941,65.07637636792931,77.15278252113148,79.53621874343557,63.25464710205653,65.01493020991167,0.1744463243512939,168.88997465873956,0.0664616002628832,61.4461580176453,240.08688,168.83037636047925,250900.4702685756,176434.50893098663,558.95064,378.01873402537313,583536.8481555022,394456.630948841,496.77363,243.986828760122,515981.0429511966,252475.11220355396,2372.14007,1116.3381373987863,2438075.922248929,1125828.457829476,843.76392,385.5637878376372,864142.0106594211,385487.2033823003,1348.63528,576.016582230391,1369745.9504650433,567007.3975347826,0.37928,100000,0,1091304,11404.5668303898,0,0.0,0,0.0,48808,509.44717316334,0,0.0,44783,464.77165848051,1051960,0,37829,0,0,0,0,0,97,1.0136900407566098,0,0.0,0,0.0,0,0.0,0.04592,0.1210715039021303,0.3027003484320557,0.0139,0.367223382045929,0.632776617954071,22.922137231234867,4.126565292520731,0.3012345679012346,0.2899862825788751,0.2021947873799725,0.2065843621399176,11.502500346402796,6.287096841475097,14.877846584725896,11172.167504431533,41.89881765717983,12.909791694198637,12.546890370105324,8.1731248787747,8.26901071410116,0.5720164609053497,0.7956480605487228,0.6775956284153005,0.5725915875169606,0.1035856573705179,0.765466297322253,0.9147465437788018,0.8817891373801917,0.7471264367816092,0.1604938271604938,0.4902419984387197,0.7126805778491172,0.5961783439490446,0.5186500888099467,0.0879864636209813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023589203636584,0.0048443818345815,0.007182712792939,0.0093137105538458,0.0114601234480023,0.0135318135073768,0.015581343177044,0.0175870415573008,0.0198801464422309,0.0223346407102845,0.0243257101835709,0.0263444394231954,0.0284609292231102,0.030603412744209,0.0327058434990814,0.0348097665904836,0.0366644565082259,0.0385485880398671,0.0408059248164097,0.0428206598217543,0.0573556446895629,0.0711071107110711,0.0842730219336431,0.0969068911099421,0.1092888106061405,0.124730250074049,0.1346598747744879,0.1445624048301051,0.1538617690737951,0.1628173909312279,0.1740952175786299,0.1850565008442654,0.1957540757175329,0.2051091378329906,0.213671827715603,0.2225324027916251,0.2315005970249188,0.2394529360821495,0.2471322403131559,0.2526454420522217,0.257840890678888,0.2633358289270506,0.2675163004248169,0.2711078633379654,0.2747789330482946,0.2791141892391492,0.2823182022921776,0.2851418904308228,0.2875855909496874,0.2911050146403229,0.2877110769976569,0.2846500632250261,0.2822804227591933,0.2788826235560491,0.276711922249425,0.2730057121854852,0.2697328907855224,0.270012259910094,0.2702744057941446,0.2698333836080699,0.269436323345934,0.2700388799434473,0.2705054542426513,0.270797679639055,0.270658338717783,0.2715286789514664,0.2739388096520826,0.2789026371703537,0.2848200312989045,0.2895328208160851,0.2933979790656577,0.2997992180069745,0.3036518259129565,0.3088747538997425,0.3110132983704813,0.3130638547158758,0.3193772672309553,0.3230769230769231,0.3341476655808903,0.3342125094197438,0.0,2.323652223919109,46.66058398292521,138.52551637958004,184.48994315356512,fqhc1_100Compliance_implementation_low_initial_treat_cost,70 -100000,95775,49376,471.9916470895327,4816,48.93761419994779,3868,39.77029496215087,1433,14.57582876533542,77.38146625236273,79.70389296617694,63.35451413110488,65.06755016184788,77.19544273780342,79.52237053916713,63.28444463037038,65.00155845167157,0.1860235145593094,181.52242700980992,0.0700695007344975,65.99171017630567,239.98524,168.8684334625314,250571.9028974158,176317.8631819696,560.85734,379.7900495044303,584982.740798747,395927.8825418222,515.02526,253.7257092840409,533654.909945184,261802.2927529144,2493.66869,1194.553442323357,2564969.021143304,1208933.2668563996,904.24974,416.6640217758895,926579.4727225268,417619.94278585416,1389.61202,591.434832701398,1414945.632993996,587096.496754496,0.38342,100000,0,1090842,11389.631949882536,0,0.0,0,0.0,48881,509.7154789872096,0,0.0,46505,481.4408770555991,1048998,0,37679,0,0,0,0,0,93,0.971025841816758,0,0.0,2,0.0208822761681023,0,0.0,0.04816,0.1256063846434719,0.2975498338870432,0.01433,0.3710254372019078,0.6289745627980922,22.712411343723165,3.964821925919503,0.3084281282316443,0.297052740434333,0.1980351602895553,0.1964839710444674,11.633342595488608,6.579249613206116,15.198357425084692,11309.470129198718,44.940482315529415,14.446625844696158,13.65758987061057,8.501684581701443,8.334582018521248,0.5964322647362978,0.825065274151436,0.6999161777032691,0.5483028720626631,0.1368421052631579,0.7862176977290525,0.9251824817518248,0.8688524590163934,0.7564766839378239,0.1941176470588235,0.5028946352759552,0.7337770382695508,0.6251511487303507,0.4781849912739965,0.1203389830508474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0044590376585998,0.0066544263093293,0.0088553091234056,0.0112763988733769,0.0131624488466315,0.0153498043052837,0.0174389534587087,0.0195954229668982,0.0216586184318219,0.0239724624021636,0.025936983799645,0.0280966425848089,0.0305017397212328,0.0326714503690873,0.0348235585711187,0.0367357920443726,0.0387530194801828,0.0407520905832857,0.0427290805543119,0.0575725004435075,0.0716841752814631,0.0853783874486114,0.0982360608863846,0.1106402268678115,0.126545462237311,0.1373703302997518,0.1468215106872179,0.1570363566454479,0.1655945795274239,0.177917478497691,0.189006520822294,0.1998325486315743,0.2083784522832923,0.2167622107544865,0.2259658530640282,0.2340919491478129,0.2418910252804248,0.2496225408393783,0.2554920183812154,0.2609002709148586,0.2664645424109755,0.2703995264871264,0.274175771516197,0.2785149752941033,0.2819499341238471,0.285244713293006,0.2880195164097938,0.2908698015061722,0.2950366194214658,0.2923089328190724,0.2887793762354491,0.2865476525161653,0.2827160137417362,0.2804322334535631,0.2758362379991438,0.2730886319541934,0.2730378215815109,0.2737477676673187,0.2734387478038652,0.2739055138638014,0.274415958886644,0.2748782619553003,0.2749833222148098,0.2759295966374513,0.2774385510996119,0.2795197740112994,0.2836629808441053,0.2877322385359404,0.2917093545590669,0.2973924027790309,0.3017146452729274,0.3077018402627176,0.3123970654289564,0.3164073418429143,0.316374269005848,0.3248799519807923,0.3261862219575144,0.3261397356352846,0.3285606631499623,0.0,2.2849273419666565,55.59423388344754,140.17083432119995,185.97803606712003,fqhc1_100Compliance_implementation_low_initial_treat_cost,71 -100000,95762,48773,465.0278816231908,4647,47.430087090912885,3684,37.937804139429,1390,14.128777594452917,77.31912755708531,79.66874463716275,63.32066847763053,65.05826795777207,77.14005180523648,79.49464448144758,63.25263637830941,64.99484423885215,0.1790757518488277,174.10015571516624,0.0680320993211225,63.42371891992116,240.76624,169.32682360668704,251421.48242517907,176820.47535210944,559.00575,377.8557184197872,583243.5830496439,394076.6571497956,490.72415,241.13319300679623,509869.2800902237,249756.10215828425,2386.18671,1128.5132502549768,2453525.239656649,1140192.7489557203,856.30197,392.8678262419384,877910.6534951234,393966.9767151248,1350.72262,577.1945648898087,1372943.192498068,570373.0419928476,0.38031,100000,0,1094392,11428.249201144505,0,0.0,0,0.0,48840,509.4818403959817,0,0.0,44376,460.7673189783004,1049015,0,37714,0,0,0,0,0,81,0.845846995676782,0,0.0,1,0.0104425555021824,0,0.0,0.04647,0.1221897925376666,0.2991177103507639,0.0139,0.358572312770786,0.641427687229214,23.427798418560226,4.008163466255198,0.3175895765472312,0.2801302931596091,0.2000542888165038,0.2022258414766558,11.407240684268892,6.218360061664825,14.86506875863614,11221.925985859076,42.166605322812266,12.589059163647406,13.09679790684227,8.272035408287476,8.208712844035112,0.5871335504885994,0.7829457364341085,0.7111111111111111,0.5712347354138398,0.1369127516778523,0.7557932263814616,0.918918918918919,0.8607594936708861,0.702020202020202,0.1768292682926829,0.5132708821233412,0.6802721088435374,0.6557377049180327,0.5231910946196661,0.1256454388984509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019240701171657,0.0040434134922323,0.0061787265127226,0.0086534359828556,0.0114104402477346,0.0135854898006986,0.0158246240122355,0.0183596781440182,0.0206744238359133,0.0228598923035973,0.0250171736745511,0.0272715137949091,0.029567238471348,0.0314615075563247,0.0334826034916835,0.0353359446861725,0.0373315112739921,0.0392622636225013,0.0414610069101678,0.0434112402616339,0.0579865967974279,0.07143753792079,0.084980962670051,0.0982501524807033,0.1110220863423119,0.1254824417633312,0.1368920094181532,0.147000617113187,0.1572636614063934,0.1658949128561322,0.1775390015180715,0.1884352784600569,0.1986427996606999,0.207139342918056,0.2152600545630555,0.2236923690154568,0.2314585425733735,0.2385349996063036,0.2454046203422139,0.2513567977283656,0.2575,0.2628653670637242,0.2683126110124333,0.2720184256615724,0.2753272641085167,0.278275993930946,0.2823286384976526,0.285643375334097,0.2878536635920821,0.2917001992163278,0.2885102029828245,0.2848893960432792,0.281927405383326,0.2781984221021298,0.275339944183837,0.271229229780593,0.2678856709004919,0.267706984444408,0.2678355398797049,0.2687006294466931,0.2697970255354971,0.271029510263583,0.2723871237458194,0.2738166967931981,0.275894312841661,0.2768671256007273,0.2781387430841254,0.2841569313425376,0.2887532693984307,0.2923627215911324,0.2972582972582973,0.3001580611169652,0.3053263315828957,0.3111262179922955,0.3138699748157821,0.3188220230473751,0.3283177851339151,0.3292682926829268,0.3279978296256104,0.3352102102102102,0.0,2.1138511268813445,48.69474416762693,131.94138242208413,189.52618836404147,fqhc1_100Compliance_implementation_low_initial_treat_cost,72 -100000,95672,48918,467.1481729241576,4736,48.185467012292,3761,38.631992641525216,1414,14.372021071995986,77.34181859432726,79.72454094995312,63.3271521787835,65.08545981136733,77.1601819543104,79.54839204752311,63.25768581930237,65.02107672899704,0.1816366400168618,176.1489024300147,0.0694663594811331,64.38308237028423,240.12384,168.90018332514845,250986.53733589765,176540.87227731047,560.02098,378.05511358607697,584704.5426038967,394506.9232231761,502.27732,247.3171928934896,520580.2533656661,255110.85287431232,2426.98768,1148.9575498395309,2493995.1396437827,1158484.0081524232,836.65327,382.77777110687634,854533.3117317501,380257.1956265324,1369.69054,588.5222450303297,1392740.6346684506,580924.6815943477,0.38223,100000,0,1091472,11408.47896981353,0,0.0,0,0.0,48810,509.4907600969981,0,0.0,45358,469.6671962538674,1052180,0,37836,0,0,0,0,0,109,1.1393093067982274,0,0.0,0,0.0,0,0.0,0.04736,0.1239044554325929,0.2985641891891892,0.01414,0.3683360258481422,0.6316639741518578,23.06507043024182,4.045926546185385,0.302579101302845,0.2961978197287955,0.1978197287955331,0.2034033501728263,11.571065840759177,6.445157019831664,15.064819550278386,11312.916639467338,43.0356482170154,13.735645883701466,12.937424101142826,8.181284620232002,8.181293611939111,0.5785695293804839,0.8204667863554758,0.6783831282952548,0.5591397849462365,0.0967320261437908,0.7588235294117647,0.9203187250996016,0.8653295128939829,0.6936416184971098,0.1144578313253012,0.4951380785686503,0.738562091503268,0.5956907477820025,0.5183887915936952,0.0918196994991652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607345748397,0.0046626189728047,0.0068585574708562,0.0092624565822347,0.0115406515638345,0.0137961228313105,0.0159006818946274,0.0180374222920898,0.0202577704187491,0.0225306841097769,0.02451603642031,0.0266922737216157,0.028527926092816,0.0310983337970261,0.0330491505480668,0.0350748352796367,0.0371088082901554,0.0392682116454855,0.0413957407850521,0.0431822683722724,0.0577917532881334,0.0718414274046616,0.0853862059555173,0.0980922416423768,0.1109059836273103,0.1266382474586669,0.1370572380568348,0.1473769374893544,0.1571585797172684,0.1655798888912721,0.1775564051478111,0.1875790908205976,0.1981185426862425,0.2068347289940311,0.2159230904611052,0.2250251935194516,0.2327258116720052,0.241007760656844,0.248575967321003,0.2552696962410836,0.2597988206729101,0.2646216434224523,0.2701811217251489,0.2751146610463793,0.2793334061585891,0.2830509309427642,0.2857785891120058,0.2889654558630948,0.2912411498983937,0.294754327449145,0.2913842263826124,0.2887408119804905,0.2862971873988715,0.2826952482617351,0.2801850012600246,0.2749571813065818,0.2715090676641886,0.2711063126727847,0.2717615213061169,0.272289456380729,0.2726273837902264,0.2733954329285069,0.2745057188691431,0.2764059441181705,0.2789930431040665,0.2818955673206685,0.2835270768358378,0.2884164452086916,0.2922711224525466,0.2957713112488648,0.2998597729226037,0.3052194043986109,0.3095577746077033,0.3152713061776642,0.3171610756861658,0.3228725905030559,0.323498259948555,0.3265062636707099,0.3233205898416166,0.3262759924385633,0.0,2.6880881702827133,51.01468591272635,129.5543041230066,192.21492739487655,fqhc1_100Compliance_implementation_low_initial_treat_cost,73 -100000,95678,48864,466.4081607057004,4587,46.729655720228266,3632,37.35445975041284,1419,14.444281862079055,77.38307130315455,79.75874396134915,63.34642469116329,65.09712965149187,77.19837038584116,79.57770473375345,63.276625398900286,65.03068668741669,0.1847009173133926,181.03922759570423,0.0697992922630064,66.44296407517913,241.8086,170.16301712243444,252731.2025753047,177849.26688471343,560.60438,378.7550018192615,585310.5625117582,395247.7141545959,496.73236,243.8358058695184,514974.382825728,251603.79674041097,2361.47183,1109.0463946092675,2433095.737787161,1124212.7119165398,825.1743,377.76899507139785,849686.1556470662,382118.7119686089,1377.2513,588.5608785348878,1404680.59533017,587855.2810107081,0.38103,100000,0,1099130,11487.781935241122,0,0.0,0,0.0,48913,510.5771441710738,0,0.0,44842,464.49549530717616,1043374,0,37490,0,0,0,0,0,78,0.8152344321578628,0,0.0,0,0.0,0,0.0,0.04587,0.1203842217148256,0.3093525179856115,0.01419,0.3623613146326146,0.6376386853673854,22.79485111200689,4.045172315124725,0.3174559471365639,0.266795154185022,0.2106277533039647,0.2051211453744493,11.28030381925434,6.211132008375157,15.093491685825915,11195.392438968756,41.54909523284472,11.904555248956358,13.18085835407344,8.430054994237906,8.033626635577006,0.585352422907489,0.8194014447884417,0.7025151777970512,0.5895424836601307,0.0953020134228188,0.7617702448210922,0.9420654911838792,0.8427299703264095,0.6871508379888268,0.1879194630872483,0.5124513618677042,0.7342657342657343,0.6446078431372549,0.5597269624573379,0.0721476510067114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021764878572223,0.0044475513140032,0.0065516576910984,0.0087229375685446,0.0112144781658278,0.0136201227643352,0.0158718832188219,0.0181588053363819,0.0201159118088988,0.0222449710805138,0.0243599864666741,0.0267600427174895,0.029126213592233,0.0315190968645708,0.0334560985422921,0.0353359446861725,0.0373036920399453,0.039398436932402,0.0414305175694928,0.0435620863946641,0.0580916764165134,0.0721396941050846,0.0851438822505009,0.0980674601505656,0.1099420137058513,0.1255193411635356,0.1352886929053731,0.144684788157223,0.1534152145380043,0.1621129326047359,0.1738896539851953,0.1847102076124567,0.195589082490027,0.2039852656661602,0.2122272087293206,0.2216780969897071,0.2302770426451375,0.2380995281478395,0.245688333806415,0.2521251976261943,0.2573934373119822,0.2627809826934553,0.2680394060672081,0.2724514272007676,0.2761507801487386,0.2799087883643535,0.2831708934402642,0.2865247866074722,0.2903493099251664,0.2933525058374998,0.290636553068495,0.2873072328037242,0.2833715096752434,0.2793125324413172,0.275696502667457,0.272407571633895,0.2691663771045898,0.2694549026027173,0.2693265132139812,0.2700407669164901,0.2705061406773353,0.2711123311307621,0.2721301935027955,0.2739325145213497,0.2745154001664883,0.2761072891705959,0.277912075556555,0.28236534466185,0.2863735729900413,0.2897627330649259,0.294167903233059,0.2994462438616654,0.3024278459061068,0.3020475265281722,0.3064338235294118,0.314110713047498,0.3142222222222222,0.3193342365008709,0.3243812532912059,0.332726610848198,0.0,2.312090689945185,45.62825377802763,141.51043239030082,179.94405317228546,fqhc1_100Compliance_implementation_low_initial_treat_cost,74 -100000,95688,48796,465.4920157177493,4711,47.73848340439763,3702,38.05074826519522,1422,14.442772343449544,77.3960056150407,79.77965515142165,63.35197710932333,65.11287956460463,77.20511047777497,79.5931551626688,63.27890063234503,65.04353748242761,0.1908951372657412,186.4999887528569,0.0730764769783007,69.3420821770161,241.16312,169.58464948110833,252030.6830532564,177226.6631982154,556.99028,376.7840807547289,581463.5795502048,393136.7263969661,495.35727,244.3295358568068,513258.6008694925,251961.9964299836,2386.93432,1153.427099989009,2457173.2714655963,1168264.063663476,859.83914,400.5349241646825,883232.3279826102,403313.34515221766,1368.68426,602.7214384363891,1392689.156425048,600260.9191117929,0.37994,100000,0,1096196,11455.940138784385,0,0.0,0,0.0,48634,507.59760889557725,0,0.0,44824,464.0080260847755,1051872,0,37712,0,0,0,0,0,94,0.982359334503804,0,0.0,3,0.0313518936543767,0,0.0,0.04711,0.1239932620940148,0.3018467416684355,0.01422,0.3577252344068488,0.6422747655931512,22.83259027672169,4.055324201754562,0.3055105348460292,0.2895732036736899,0.2088060507833603,0.1961102106969205,11.613408937487051,6.567956991137689,15.527658285567398,11206.111662238454,42.84866933995089,13.199196695775065,12.819364462444884,8.700966493988869,8.129141687742068,0.595894111291194,0.8264925373134329,0.6843501326259946,0.5963777490297542,0.1170798898071625,0.7538461538461538,0.930379746835443,0.8806451612903226,0.6893203883495146,0.1444444444444444,0.5229067930489731,0.7441471571906354,0.610231425091352,0.562610229276896,0.108058608058608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0046642736914684,0.0068309616126347,0.0088188976377952,0.0112505849083474,0.0132570358001058,0.0152737135108129,0.0173968085432214,0.0198531967531538,0.0220987123584924,0.0242362107853188,0.0261199010236454,0.0283645638356953,0.0305102902700809,0.0327386786904528,0.0349183378126938,0.0373201578571206,0.0394943067996637,0.0416411003067963,0.0435960770826168,0.0584696371498401,0.0727822601743425,0.0862132256542031,0.0986836571620825,0.1113863473457857,0.1266999428946088,0.136628369561758,0.1470347147556341,0.1563401346010041,0.1653832128531285,0.1770882695041571,0.1873749337486885,0.1971244756460692,0.2065403910681691,0.2145652843132943,0.2234533600469332,0.2317866024332854,0.2392312789927104,0.245794868890525,0.2518486348103363,0.2580019622554395,0.2633507609000093,0.2680317415332294,0.2717965890879518,0.2755887379252669,0.2797733892077225,0.2824560747197386,0.284445064067629,0.2873555807716113,0.2904985344952223,0.287474525367371,0.2836516068933395,0.2812872801785238,0.277639366926367,0.2747028259292703,0.2714595221384761,0.2678233438485804,0.268103265045861,0.2685470289029141,0.2684737814409549,0.2696178937558248,0.2712889168073495,0.2728292713332917,0.2728480046039089,0.2742400762903803,0.2751807851239669,0.2768797521824838,0.2822261671182534,0.287705031971087,0.2913714375688868,0.2960699085393461,0.3004162934078094,0.3041468898326255,0.308144353198222,0.3105735101812068,0.314521841794569,0.3190137649372258,0.3248,0.3232104121475054,0.3186646433990895,0.0,2.4764386559447376,50.307813347798266,138.07769060556564,181.6939586599286,fqhc1_100Compliance_implementation_low_initial_treat_cost,75 -100000,95818,48928,466.46767830679,4793,48.77997870963702,3806,39.09495084430901,1403,14.193575319877269,77.38566316619061,79.70574589604297,63.36611244363343,65.08387443377083,77.20695057785488,79.53412882409592,63.29834218037038,65.02171087751519,0.1787125883357276,171.617071947054,0.0677702632630428,62.16355625564063,241.21328,169.5996849982058,251740.86288588785,177001.695099194,561.71941,379.3281960122177,585580.8094512513,395229.91758798726,498.89667,244.98066087452185,517005.677430128,252777.68992801625,2451.3478,1155.410081646169,2517571.479262769,1165161.4955963793,872.34325,400.3808784531374,892621.6368532008,400211.50661519816,1362.15868,577.7239844047843,1378904.1307478764,566903.7952568841,0.38164,100000,0,1096424,11442.766494813084,0,0.0,0,0.0,49008,510.7912918240832,0,0.0,45066,466.6450979982884,1052154,0,37784,0,0,0,0,0,84,0.876662005051243,0,0.0,1,0.0104364524410862,0,0.0,0.04793,0.1255895608426789,0.2927185478823284,0.01403,0.3571859296482412,0.6428140703517587,23.301584010929297,4.097760334635953,0.3066211245401997,0.3005780346820809,0.1941671045717288,0.1986337362059905,11.823580136223766,6.514273836551206,14.87606958124962,11222.261065061532,43.52117262316675,13.9649857675631,13.247850375330568,8.135418430633319,8.172918049639765,0.5916973200210195,0.8146853146853147,0.7095115681233933,0.5548037889039242,0.1084656084656084,0.7736660929432013,0.9240506329113924,0.8988095238095238,0.7473118279569892,0.1204819277108433,0.5117246596066566,0.7373134328358208,0.6329723225030084,0.4900542495479204,0.1050847457627118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0045720426183307,0.0069013812911672,0.0090626460488082,0.0112290980104967,0.0134914978108135,0.0156662487641296,0.0178691703235024,0.0200623435024784,0.0220532552856177,0.0243187571096239,0.0263373978733013,0.0283356286871261,0.0304175073084366,0.03255444646098,0.0345621881810951,0.0367637928893671,0.0387972138148347,0.041006843127278,0.0432479681987991,0.0574876908954352,0.071974409098987,0.0852584797283132,0.0979238463478187,0.109896244799073,0.1248059313709958,0.1359437240444105,0.1457830685018866,0.1550850621300197,0.1644639605869123,0.1759094966179522,0.1868606673363794,0.1969649273254236,0.2060862067083619,0.2141421684365425,0.2230918899796586,0.2308009311339563,0.2388931314855577,0.2458320119603135,0.2519256702703938,0.2574730692406276,0.2629129339305711,0.2680486567481152,0.2728695132875485,0.277331364813515,0.2803734877671713,0.2835882286953595,0.2870280061306953,0.2905970784285916,0.2928191314631101,0.2888987304399173,0.2858984380356824,0.2841704910670428,0.2800541529244019,0.2771376951100316,0.2735640254605956,0.2698227280620057,0.270004419057595,0.2703624151921175,0.271244390626113,0.2726848742631147,0.2740874906485018,0.2744379788169297,0.2743285781260465,0.2747049349775246,0.2770000782044263,0.2778220300409649,0.2833495313038844,0.287556505589235,0.2916716169656647,0.2979678853306722,0.3049570668492862,0.3086196127420362,0.3115668828231036,0.3127864558974839,0.3164094710802214,0.3202007909948281,0.3228978526991772,0.3273322422258592,0.3247539742619227,0.0,2.4038627297307023,50.03491039085911,135.83697541726565,196.03498111405412,fqhc1_100Compliance_implementation_low_initial_treat_cost,76 -100000,95769,48843,465.4115632407146,4708,48.021802462174605,3771,38.812141716004135,1422,14.45144044523802,77.37657405990127,79.72194876320458,63.3458979718325,65.07927735058632,77.19141330877696,79.54251596145,63.27410498207975,65.01241110389849,0.1851607511243145,179.43280175458654,0.0717929897527511,66.86624668783736,240.96204,169.41834454854347,251607.09624199895,176902.66281212444,562.06122,380.1957896936268,586313.5148116823,396413.6968054659,493.84364,242.9693072159934,513042.8844406854,251588.683096982,2470.5775,1163.219529510918,2542700.1639361377,1177614.8114848414,875.91427,401.15980772911695,899750.3054224227,404113.1124070074,1395.6615,606.8069862811998,1419528.6366151886,600249.0270621765,0.38062,100000,0,1095282,11436.686192818135,0,0.0,0,0.0,48949,510.5201056709373,0,0.0,44691,463.9810377053117,1048091,0,37624,0,0,0,0,0,95,0.9919702617757312,0,0.0,2,0.0208835844584364,0,0.0,0.04708,0.12369292207451,0.3020390824129141,0.01422,0.3611733550621308,0.6388266449378692,23.1580393778374,4.0977979222185,0.3009811721028905,0.279236276849642,0.2025987801644126,0.2171837708830549,11.169297139965956,5.82573978899226,15.329652977284155,11187.835004727867,43.08054653391461,12.93177721603952,12.748838022622026,8.462346533717476,8.937584761535595,0.5783611774065235,0.8129154795821463,0.6854625550660793,0.5759162303664922,0.1306471306471306,0.7465397923875432,0.9208791208791208,0.8647798742138365,0.7397959183673469,0.1283422459893048,0.5040152963671128,0.7307692307692307,0.6156670746634026,0.5193661971830986,0.1313291139240506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220297781829,0.0050684750985818,0.0072850504271596,0.0096001462879434,0.0115429989423155,0.0136862150079938,0.0159680231668892,0.0183362600563564,0.0206503848945501,0.0225609319179863,0.0248749590029517,0.0270991582837199,0.029453491241056,0.0314826829795779,0.0337342934367714,0.0356079712242113,0.037504141815772,0.0395228215767634,0.041708250166334,0.0437503905355022,0.0585220749399853,0.0728291902406375,0.0860248870438511,0.0991855393831117,0.1116157996796222,0.1264336226123907,0.1365564037319762,0.1465781409601634,0.155649295173003,0.1642575276657802,0.1758573151818025,0.1863753908743683,0.1972932690738585,0.2054118522408963,0.213805251279793,0.222254242360426,0.2306799021852004,0.2382147398746356,0.2449760005446684,0.2512480534945497,0.256057924748719,0.2610245978301533,0.2659076399233879,0.2701622074579518,0.2743034055727554,0.2778277310406838,0.2810735169173872,0.2850704582963057,0.2883462532299741,0.2907287646694677,0.2875386061501275,0.2847947517944635,0.2812245471141693,0.2783181313851784,0.2756680731364275,0.2723984800622625,0.2679641662986562,0.267605863990717,0.2673018033344675,0.2673768308921438,0.2689000391710656,0.268558179746139,0.270190345287184,0.271054964539007,0.273865750679834,0.2749631468694235,0.2763897123175517,0.2809955875955503,0.286275191104934,0.2897684839432412,0.2928677764244147,0.2960917363631581,0.2978855721393035,0.3015336039693279,0.3067950379559341,0.3124926960383312,0.315140580363855,0.318217665615142,0.3204168893639765,0.3157503714710252,0.0,2.154978628830704,50.286600894612775,133.42921935449053,193.19631092733792,fqhc1_100Compliance_implementation_low_initial_treat_cost,77 -100000,95755,48727,465.625815884288,4672,47.60064748577098,3767,38.7969296642473,1419,14.422223382590987,77.3313489084019,79.6982518771154,63.31030609897547,65.06337185135017,77.14994148595018,79.52202937151947,63.24160981012241,64.99957042099628,0.181407422451727,176.22250559593056,0.0686962888530544,63.80143035389096,240.31766,169.21892104731972,250970.9362435382,176720.2559107301,558.3364,376.53483232628383,582503.4201869353,392642.2456543092,500.91682,245.41904597726747,520301.8850190591,254118.4820691381,2451.57731,1156.5509669824753,2524110.824500026,1171673.5178136656,875.19675,399.2343253670968,901141.1310114354,404123.1506740624,1377.46592,586.0040233040385,1401310.1352409795,578700.2699817817,0.37955,100000,0,1092353,11407.769829251736,0,0.0,0,0.0,48744,508.4538666388178,0,0.0,45254,469.7509268445512,1051287,0,37650,0,0,0,0,0,79,0.8250221920526344,0,0.0,0,0.0,0,0.0,0.04672,0.1230931366091424,0.3037243150684932,0.01419,0.3726695349313665,0.6273304650686334,22.96541687318632,4.047957530395317,0.3089992036103,0.2837801964427927,0.2057340058401911,0.2014865941067162,11.235878224991929,6.179102496960097,15.073059638617575,11176.81419768411,43.338161782074586,13.213197341968614,13.180004872373717,8.670490924561667,8.274468643170595,0.6044597823201486,0.8063610851262862,0.7285223367697594,0.6038709677419355,0.1304347826086956,0.794351279788173,0.9344978165938864,0.9177215189873418,0.8087431693989071,0.1931818181818181,0.5227790432801822,0.7103109656301145,0.6580188679245284,0.5405405405405406,0.111492281303602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.0044921261040185,0.0067495559502664,0.0088701483438325,0.0110582107469124,0.0134839241885712,0.0157436958937912,0.0177665233772731,0.0199858850965029,0.0222258639408402,0.0242964391204463,0.0263317408948476,0.0283106244597209,0.0302796071277659,0.0323189991535746,0.0342998366182036,0.0362327845086465,0.0384679243716663,0.0404474058981902,0.0423810019789605,0.0569132000626337,0.0708022017119775,0.0835361503923461,0.0965180721624549,0.1080895843438284,0.1239621344333386,0.1351982341455132,0.1444458647577655,0.1536702150399726,0.1626264902509953,0.173866649421199,0.1842943164096343,0.1953840291764193,0.2051405552149925,0.2145695947508064,0.2228848882582476,0.2314701087563366,0.2391301901020856,0.2464118361187696,0.2527405812208616,0.2586139072081453,0.2630716467875411,0.2687003909489397,0.2718107514492492,0.277093491239376,0.2800497953951585,0.2839453672203322,0.2863084260731319,0.2888376551045256,0.2915534927876375,0.2879479002677646,0.2853140706968057,0.2820552448927979,0.2786143493234578,0.2758294119387967,0.2719910937595315,0.2681259842519685,0.2690303931015335,0.2698750106283479,0.2702683515547352,0.2719654363290998,0.2724272073558882,0.2732796470857523,0.2741025413186422,0.2752227823303151,0.2752808988764045,0.2780177890724269,0.2823154739602847,0.2869133384626145,0.2919205507636306,0.294445198967812,0.298973954222573,0.3011477045908183,0.3041644702161307,0.3057095343680709,0.3072477170269333,0.312156746326258,0.3165565487757482,0.3180729305296779,0.3159851301115242,0.0,1.9787126819652807,49.43038684799385,140.61438829675592,191.41669378296916,fqhc1_100Compliance_implementation_low_initial_treat_cost,78 -100000,95517,48639,465.351717495315,4629,47.56221405613661,3657,37.98276746547735,1396,14.43722059947444,77.22623088476638,79.71363295852505,63.24095407219974,65.07633348254772,77.05232087417762,79.53823295392532,63.17531978299299,65.01168279201659,0.1739100105887558,175.40000459973726,0.0656342892067485,64.65069053113837,239.29972,168.25247872091114,250531.0258906792,176149.24957956295,554.70427,375.3166918283948,580456.6935728719,392649.7291878877,494.33873,242.57512765728472,515523.896269774,252448.50928537015,2379.34195,1117.150322841859,2472542.835306804,1151111.4386359071,838.65317,382.0484129102052,871266.2039218149,393231.13467781054,1355.08782,574.8314499907463,1401638.4517939216,585894.6997620929,0.37879,100000,0,1087726,11387.77390412178,0,0.0,0,0.0,48397,506.38106305683806,0,0.0,44549,464.47229289027086,1052866,0,37823,0,0,0,0,0,89,0.9213019671890867,0,0.0,0,0.0,0,0.0,0.04629,0.1222049156524723,0.3015770144739684,0.01396,0.3607305936073059,0.639269406392694,23.148708269943736,3.9724842174762713,0.2964178288214383,0.2953240360951599,0.2009844134536505,0.2072737216297511,11.489037205574087,6.281201257106721,14.928541756119024,11146.885434314649,41.92662876483286,13.191332909700614,12.28313140920188,8.166536359038597,8.285628086891766,0.5810773858353842,0.7953703703703704,0.690959409594096,0.5768707482993197,0.1226912928759894,0.7508928571428571,0.9123931623931624,0.8410596026490066,0.7210526315789474,0.14375,0.5061095782420181,0.7058823529411765,0.6329923273657289,0.5266055045871559,0.1170568561872909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002482646805,0.0046456429346668,0.0068938209434077,0.0091306558210472,0.0111581690829125,0.0134943688528767,0.0158879172236451,0.0183005333823799,0.0205530604519831,0.0225610130939939,0.024388241090491,0.02619782027555,0.0283375379704474,0.0304880564379718,0.0324947047579686,0.0348287036557714,0.0369075651172681,0.039032452547764,0.0409326262931438,0.0428626619749193,0.0569308226132283,0.0699657986948949,0.083261477633599,0.0957243879562005,0.1080467057642521,0.1233678141427844,0.1340151386290185,0.1438523497092868,0.1532283110401919,0.1621453138435081,0.1735239185118809,0.1846794572844701,0.1948759880076315,0.204338437592485,0.2123883066740209,0.2206619190987768,0.2284084554300413,0.2356494787264018,0.2430468696700247,0.2494751454105338,0.2550224314016438,0.2611085715625256,0.2666129013129025,0.271565341693995,0.2751391714275273,0.2790996625588668,0.2833218253719164,0.2862212916980506,0.28972921047849,0.2933826931975937,0.2900453343407631,0.2873272016302252,0.2835686307661961,0.2798874215198095,0.2767038616406401,0.2725072752335732,0.2686649882032524,0.2690122808169699,0.2696185658623282,0.2705659771181751,0.2706938470170189,0.2716246598035735,0.2731961992273154,0.2742822780017372,0.275767347426251,0.2775419341478567,0.2772089602896255,0.2808375198926576,0.2842361957847065,0.2882510433892432,0.2928991406603347,0.2950276243093923,0.298799825881475,0.3035086406822772,0.3056140672222731,0.3077366539836274,0.3133182844243792,0.3171566653242046,0.3223791417707767,0.3296910324039186,0.0,1.202679844593441,49.57957843318115,131.9876690381196,186.4419447864433,fqhc1_100Compliance_implementation_low_initial_treat_cost,79 -100000,95701,48901,466.7662824839866,4776,48.6410800305117,3747,38.473997136916026,1391,14.14823251585668,77.36399481233721,79.74803472818883,63.33329461681414,65.09699768224368,77.18523579636948,79.57427582288406,63.26525147469039,65.03318213774148,0.1787590159677279,173.75890530476568,0.0680431421237557,63.81554450220506,240.60696,169.2106516984015,251415.0740326642,176811.5807675381,562.27097,380.75326234997885,586849.6567433986,397178.8825483593,503.31354,248.45137318621744,521272.5154387101,256053.2621114,2393.11607,1136.9878174348853,2459839.792687642,1147383.544894825,845.16573,387.8608691792275,866331.9296559076,388533.7760011968,1335.3004,572.3083171545197,1359349.599272735,567965.059878021,0.37993,100000,0,1093668,11427.957910575647,0,0.0,0,0.0,49096,512.303946667224,0,0.0,45418,469.9532920241168,1049007,0,37641,0,0,0,0,0,92,0.9613274678425512,0,0.0,3,0.0313476348209527,0,0.0,0.04776,0.1257073671465796,0.2912479061976549,0.01391,0.356421647819063,0.643578352180937,23.115604836008213,3.956078422023002,0.2997064318121163,0.3013077128369362,0.2169735788630904,0.1820122764878569,11.414544428467238,6.455888725102213,14.95896814788254,11223.818291207755,43.14993298050972,13.874803575023432,12.938362044684386,8.83608745619395,7.500679904607946,0.5986122231118228,0.8024800708591674,0.709706144256456,0.5473554735547356,0.1392961876832844,0.759493670886076,0.9030303030303032,0.8430232558139535,0.7112299465240641,0.1886792452830188,0.524199843871975,0.7239747634069401,0.6508344030808729,0.4984025559105431,0.124282982791587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0045230054661433,0.0067814504994721,0.0090960830944976,0.0109587089684364,0.0132852456344112,0.0155555102207352,0.0177907594264471,0.0199850674521595,0.0221587360099939,0.0242119080337182,0.0264149780731033,0.0284923728900729,0.0306958340632051,0.0329535368547072,0.0349576599770464,0.0372188901664646,0.0391001162211522,0.041287264562804,0.0434556119312794,0.0572189441804605,0.0713104458865396,0.0849008109270585,0.0978074557021925,0.1108604915890214,0.1259250644902101,0.1358985505709711,0.1457398149133071,0.1548520008966408,0.1637785993677329,0.1748211115295636,0.1854896277228579,0.1947615630504273,0.2042358240941197,0.2134796858846044,0.2227363294221828,0.2313611777170579,0.2396447042950303,0.2466393656483613,0.2522580275885753,0.2584669819502099,0.2638106370543542,0.2690660419772367,0.2727871680302831,0.2772760378732702,0.2807866011986069,0.284666241735718,0.2871743436087552,0.2901384440541378,0.2927371509004565,0.2893818611267681,0.2869581910677801,0.2832124163287071,0.2791789025162665,0.2775239193765434,0.2734688907829051,0.2695857243927364,0.2699358536029436,0.2714457565951102,0.2728432919155573,0.2731520262094897,0.2751305098716489,0.2746912296752193,0.2759639959995555,0.2773273559710034,0.2781405472636816,0.2785236800362565,0.2830482599619902,0.2861519181229548,0.2908241391495543,0.296299626815341,0.3002198262325971,0.3036805988771054,0.307058645707376,0.3131955484896661,0.315522528898325,0.321510472404831,0.3209349593495935,0.3246824958586416,0.3227676845767298,0.0,2.576179193607316,51.07185040910852,133.3859588212789,188.72832406082037,fqhc1_100Compliance_implementation_low_initial_treat_cost,80 -100000,95657,48687,465.05744482892,4622,47.043081008185496,3679,37.74945900456841,1402,14.21746448247384,77.31725194233033,79.72616213750749,63.30264576078415,65.0852806261203,77.1402195879359,79.55427831001833,63.23415531264168,65.02152964158765,0.1770323543944272,171.88382748915387,0.0684904481424695,63.75098453264627,241.2905,169.81975169402543,252245.52306679072,177529.87412737744,563.51544,381.0120168887946,588421.4223736894,397632.01531387627,499.83169,246.25393306549432,517694.3663296988,253718.6705532041,2387.94074,1142.2139015690514,2451855.8077297006,1149570.728299081,847.33791,391.2539284831253,865804.9384781041,389016.086207099,1360.62692,589.2219843478015,1381182.0985395736,580888.7947163968,0.38058,100000,0,1096775,11465.705593945033,0,0.0,0,0.0,49186,513.4700021953438,0,0.0,45196,467.77548950939297,1043221,0,37446,0,0,0,0,0,84,0.857229476149158,0,0.0,1,0.0104540180018189,0,0.0,0.04622,0.1214462136738662,0.303331890956296,0.01402,0.3500103369857349,0.6499896630142651,22.908979690917352,3.9888447355847023,0.3153030714868171,0.2835009513454743,0.2005979885838543,0.2005979885838543,11.262163096640514,6.26025926352061,15.015948249451512,11201.961880288523,42.36273834048122,12.897004184019638,13.163200885752913,8.185144829084773,8.1173884416239,0.5971731448763251,0.822627037392138,0.7,0.5867208672086721,0.1273712737127371,0.7600671140939598,0.9384288747346072,0.8783382789317508,0.6896551724137931,0.154696132596685,0.5190993164455167,0.7272727272727273,0.6269744835965978,0.5476635514018692,0.118491921005386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026036653935384,0.0050398012472747,0.0071546728640003,0.0095316485280817,0.0117820623696393,0.0138840786390954,0.0158631383510497,0.0181636155606407,0.0203801845675349,0.022436915385167,0.0245511439417256,0.0270045315823545,0.0290493592053116,0.0311259575433278,0.0331009553317841,0.0352187723091885,0.0373595389144586,0.0391609117815047,0.041221882348045,0.0431673425137341,0.0580184095871947,0.0717539505513493,0.0851791975477125,0.0975948488100498,0.1094795029221258,0.1253016128349489,0.1357441569193538,0.1467718917076703,0.1561120552366905,0.1648820891358925,0.1764895989313454,0.1868579161028416,0.1972532973490619,0.2054374712693999,0.2142691939160985,0.2231099980052749,0.231484167540669,0.2394817638921691,0.2461069083237872,0.2524267399267399,0.257327935222672,0.262334564841229,0.2675707979787221,0.2714931042333177,0.2759496131093376,0.2802859431811179,0.2826581930092326,0.2861191601850439,0.2887567078295726,0.2921225526984503,0.2879726008998724,0.2838992934074226,0.2811341942728804,0.2778777884989271,0.2757362754693478,0.2708546786353279,0.2668866122590727,0.2679734284498838,0.2688881332879972,0.2688244589244181,0.2700158449063286,0.2717194748014781,0.2725053211468636,0.2712807388449983,0.2723807240469911,0.2745627238283075,0.2760172033274857,0.2811701663655056,0.2856695434298441,0.2905495715071939,0.2948138778460426,0.2984430885756364,0.3012040676274253,0.3026782346284421,0.3068709377901578,0.3091944670463791,0.313971031985516,0.3166799363057325,0.318506751389992,0.3188352377441946,0.0,2.78618926970918,51.24064847013473,129.69169841397297,180.9204479981806,fqhc1_100Compliance_implementation_low_initial_treat_cost,81 -100000,95851,48953,466.9956494976578,4635,47.22955420392067,3702,37.98604083421143,1383,14.094792959906522,77.4717338221379,79.75767530030265,63.40399372213196,65.09039363200986,77.29416793242908,79.58258423428741,63.33731781745974,65.0267837321409,0.1775658897088305,175.09106601524138,0.0666759046722162,63.6098998689647,243.0516,170.93757831514566,253572.31536447196,178336.77094150888,560.08957,378.7367129770389,583697.8435279757,394494.9588184149,509.32518,250.51257392509217,526187.3950193529,257446.65204423552,2385.84096,1131.5312153362677,2453540.995920752,1144937.2832169367,827.21128,383.8220823823534,848412.3378994481,385830.6250141922,1335.32726,570.7216987088221,1363158.6524918885,570145.7498562355,0.38092,100000,0,1104780,11526.014334748725,0,0.0,0,0.0,48876,509.2591626587099,0,0.0,45905,473.8709037986041,1041323,0,37346,0,0,0,0,0,91,0.9389573400381844,0,0.0,2,0.0208657186675152,0,0.0,0.04635,0.1216790927228814,0.2983818770226537,0.01383,0.3706788837984173,0.6293211162015827,22.55130438765132,4.037897585715867,0.3065910318746623,0.2928146947595894,0.2096164235548352,0.190977849810913,11.518559090185578,6.411474892863293,14.70722350490516,11214.8541212435,42.49671379059599,13.367679941352206,12.863367426903274,8.598079964225912,7.667586458114597,0.5975148568341437,0.8145756457564576,0.707488986784141,0.5786082474226805,0.1089108910891089,0.7899382171226832,0.9232409381663113,0.8928571428571429,0.7258064516129032,0.1901408450704225,0.5126508369015181,0.7317073170731707,0.6295369211514393,0.5322033898305085,0.0884955752212389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020548638526166,0.0043865425332536,0.0066316493946338,0.0086885911490052,0.0110966588082269,0.0136538911554936,0.0159828049873685,0.0179622395169269,0.0200561654327291,0.0222635836495096,0.0245396259653003,0.0266550433311112,0.0291029750164365,0.0310837646235685,0.0330481393670755,0.0348929666766488,0.0369485389190587,0.0388334421540279,0.0409203708895326,0.0429258241758241,0.0574619162313491,0.0712396642380021,0.0846729402888101,0.0972524297346992,0.1095149764971227,0.125412297023004,0.1353861814480213,0.1458160464670964,0.1553308921651311,0.1643125066981031,0.1755939571317896,0.1878903801681471,0.1988187907804883,0.2077284139286104,0.2155728074317276,0.2250538763330938,0.2339165005512433,0.2411490020878701,0.2491649966599866,0.2546435470412747,0.2588933262540686,0.2638219962449417,0.2682702294400906,0.273091265477841,0.2763331757403838,0.2796906126263496,0.2838903726630556,0.2867488521928823,0.289864237043155,0.2924184879029609,0.2894563890714487,0.2853741310416552,0.2815096031267949,0.2785435331954973,0.2760422817999291,0.2721921392066196,0.2678936283909093,0.2679418042001336,0.2678480669535459,0.2690402914853727,0.2698285947742762,0.2699978470631984,0.2703532388873908,0.2712531799579692,0.2718591890543718,0.2728841053634421,0.2732047069396467,0.2779256965944272,0.2812037833190026,0.2869094871196202,0.2881658123467795,0.2916884201733319,0.2952357289272626,0.2983183771962899,0.3012082045518404,0.3045990566037735,0.3100495718792249,0.3113879003558719,0.3157613058603157,0.3189910979228487,0.0,2.514705738863744,48.59657896943288,139.97239194259993,181.44463212863832,fqhc1_100Compliance_implementation_low_initial_treat_cost,82 -100000,95745,48524,462.6455689592146,4713,48.05472870645986,3805,39.19786934043553,1440,14.653506710533186,77.34438518034166,79.69690832288038,63.33412346583962,65.0721461212217,77.15989644003929,79.51662623825843,63.26437141002139,65.00625271050593,0.1844887403023705,180.2820846219504,0.0697520558182276,65.89341071577337,240.02748,168.85224731882712,250693.3834664996,176355.1282868964,560.98991,379.1970661299437,585377.0431876339,395507.3604697442,497.94073,244.7565222298283,516958.6296934566,253184.15890356965,2446.37444,1160.9035540829625,2521090.459031803,1178637.5532529238,862.78468,396.00698287625016,885228.8996814454,397790.89170554624,1385.47688,590.6044981378963,1411421.9854822706,587491.4773265183,0.37933,100000,0,1091034,11395.153793931797,0,0.0,0,0.0,48945,510.61674238863645,0,0.0,45063,467.5231082563058,1052268,0,37776,0,0,0,0,0,81,0.8459971800093999,0,0.0,1,0.0104444096297456,0,0.0,0.04713,0.1242453800121266,0.305537873965627,0.0144,0.3649501323020557,0.6350498676979442,22.92428102122046,3.986390123125796,0.3256241787122207,0.2867279894875164,0.1978975032851511,0.1897503285151117,11.812343041366274,6.833437443661669,15.375978405296054,11184.960531993824,43.73032808447376,13.32420622197971,14.075886504633283,8.358663091479352,7.971572266381426,0.6010512483574244,0.7772685609532539,0.7304277643260694,0.6082337317397079,0.1052631578947368,0.7706422018348624,0.8934426229508197,0.8735955056179775,0.8040201005025126,0.1089743589743589,0.5230237912509593,0.6832504145936982,0.6727066817667045,0.5379061371841155,0.1042402826855123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728293018921,0.0049881885373049,0.0072240992704877,0.0092928308095426,0.0113772698619273,0.0135595980983987,0.0158272354823586,0.0178682585846216,0.0200774488867999,0.0222142637879873,0.0241515698008033,0.0264700146770535,0.0288713640896986,0.0309262425078783,0.0332064494166434,0.0354245677851378,0.0377393644550253,0.0396772721616128,0.0415198661387044,0.0432373313889901,0.0574497849417463,0.0710675303745408,0.0838367946297461,0.096919727833924,0.1088462633527011,0.124397259115134,0.1345431789737171,0.1443512863617985,0.1530270016235153,0.1617544574412196,0.1743511351770316,0.1847200588438906,0.1958793150312585,0.2046080531631181,0.2136981480666872,0.2227769352535506,0.2311133921697702,0.2393379583300538,0.2466684057116285,0.2524206285622725,0.2590768234586744,0.2639936389892541,0.2683050867503223,0.2716311291695132,0.2762986973570795,0.2798195666642017,0.2831322285084864,0.2855306366621694,0.2892835874996763,0.290982471412179,0.2884499011605234,0.2859124939899718,0.2825860711071107,0.279772038666859,0.2766014274479545,0.2718771999632702,0.267814473122023,0.2673755611626306,0.2677974769860211,0.2677204599665349,0.2689852150537634,0.2701282858492051,0.2721850299276314,0.2727394179599652,0.2748353096179183,0.2767121157136191,0.276819842011382,0.2813330415481289,0.284313725490196,0.2893541378629271,0.2934345488229181,0.2978959025470653,0.3042719052073589,0.3068394636302344,0.3095745666882936,0.3128426455149889,0.3154626684840224,0.3220890062995326,0.3257534246575342,0.3235068912710566,0.0,2.025732122419874,52.2939781596545,136.45633270703655,189.88005148577489,fqhc1_100Compliance_implementation_low_initial_treat_cost,83 -100000,95680,48567,464.26630434782606,4668,47.69021739130434,3710,38.283862876254176,1392,14.255852842809364,77.28108161739658,79.6711401973681,63.29287913429015,65.05686238159282,77.10154770141948,79.49193829944002,63.22515235731612,64.9914755522398,0.1795339159771032,179.20189792808117,0.0677267769740339,65.38682935301665,239.59958,168.62099056081183,250417.39130434784,176234.09653303918,561.90687,379.5196580393461,586750.4285117056,396129.4870382275,496.15812,243.27990221245892,515549.4983277592,252014.4392036863,2402.63692,1127.3986140085651,2479196.906354516,1146484.336252679,836.81479,383.5589076089883,860302.7696488295,386688.3934684421,1353.2101,575.7400011053505,1386068.4155518394,576403.6160150522,0.37827,100000,0,1089089,11382.608695652174,0,0.0,0,0.0,49004,511.6220735785953,0,0.0,44675,463.99456521739125,1050444,0,37704,0,0,0,0,0,99,1.0346989966555182,0,0.0,0,0.0,0,0.0,0.04668,0.123403917836466,0.2982005141388175,0.01392,0.3611111111111111,0.6388888888888888,23.38129265010601,4.0574207660025365,0.3075471698113207,0.2830188679245283,0.206199460916442,0.2032345013477089,11.2775311825556,6.141411937495715,14.832717521199765,11177.499604039896,42.50294275008631,12.780438021421729,12.940936334766931,8.497510628392591,8.284057765505061,0.5827493261455525,0.8,0.7002629272567923,0.5647058823529412,0.1206896551724138,0.7481617647058824,0.9253393665158371,0.8595890410958904,0.6701570680628273,0.1595092024539877,0.5141113653699466,0.7088815789473685,0.6454652532391049,0.5296167247386759,0.1099830795262267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008509345084,0.0046736078021877,0.0067284370338045,0.008899635277504,0.0111059129833411,0.013329395951285,0.0154373228378571,0.0177543186180422,0.0199539994888832,0.0220575440894993,0.024033384257313,0.0260893671197995,0.0283628136569313,0.0307039235080778,0.0328093876750642,0.0348129077618205,0.0367934202757434,0.0388275955121485,0.0405787754592547,0.0425148265115745,0.0568864465037558,0.0709087672638555,0.0841188201952346,0.0967762299566516,0.1083176840461671,0.1238733020185349,0.134779931633368,0.1442920137187653,0.1544136515268155,0.1630481467164884,0.1740959242442218,0.1852730819245773,0.1951623267008636,0.2047828657775441,0.2130313112839609,0.221261117395258,0.2294402288702882,0.2376876555584336,0.2451835696110505,0.2520317747796284,0.2578661509420852,0.2628157830013,0.2686048854491366,0.2724872487248725,0.2756315188057669,0.2798348329840996,0.2835630327838071,0.2870184105319447,0.29045465735498,0.2932878991996196,0.2897070317764062,0.2862198110869385,0.2819988145973864,0.2781523060008101,0.2752592504426227,0.2721758443746649,0.2693317724482693,0.2692610708072087,0.2698231115967764,0.2700771547192673,0.2709787265889573,0.2719112675220941,0.2723747642003772,0.2732558139534883,0.2749753670904328,0.2762228684183196,0.2774717474018968,0.2838028389684454,0.2881095966814236,0.2922786155845178,0.2955520433506435,0.2999894703590607,0.3074569073195103,0.3106475575898552,0.3130684982364952,0.3184602936076754,0.3189603365384615,0.316600790513834,0.3177470775770457,0.3211182470721571,0.0,1.8554103840664948,47.39944637908092,139.20466618686905,191.11534133093204,fqhc1_100Compliance_implementation_low_initial_treat_cost,84 -100000,95730,48700,465.7787527420871,4675,47.67575472683589,3738,38.50412618823775,1396,14.16483860858665,77.3612597271838,79.72683321571179,63.34108899169471,65.08902861499821,77.17847448402156,79.54909653591466,63.2704113768181,65.02311010050147,0.1827852431622432,177.73667979713537,0.0706776148766081,65.9185144967438,241.40864,169.83032216748285,252176.57996448345,177405.5386686335,560.62376,379.2464034870566,585012.4725791288,395545.398626736,498.16881,244.5063868725886,517657.7875274209,253250.83956692315,2432.80838,1143.2472962665342,2504833.3437793795,1157810.952465858,871.11486,394.0865591106504,895554.3403321843,397277.7116918574,1358.74974,588.4119120511123,1380160.3259166407,579900.3300377966,0.37922,100000,0,1097312,11462.571816567428,0,0.0,0,0.0,48936,510.6131829102685,0,0.0,44925,466.5099759740938,1046755,0,37562,0,0,0,0,0,106,1.096834848010028,0,0.0,0,0.0,0,0.0,0.04675,0.1232793629028004,0.2986096256684492,0.01396,0.3680627192077573,0.6319372807922427,22.690459363840432,4.055937906840049,0.3047084002140182,0.2867843766720171,0.2017121455323702,0.2067950775815944,11.101545326118996,5.868924698863768,14.996338760462775,11172.982941124244,42.96499369515304,13.269862312309336,12.913153015234377,8.435267009938483,8.34671135767084,0.5906902086677368,0.8236940298507462,0.6988586479367866,0.5848806366047745,0.1138421733505821,0.753315649867374,0.9190371991247264,0.8463949843260188,0.700507614213198,0.1518987341772152,0.520138089758343,0.7528455284552845,0.6414634146341464,0.5439856373429084,0.1040650406504065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0043190850839484,0.0064135089606462,0.0083713464254147,0.0102817044645581,0.0125659355206614,0.0149899047580201,0.0174299280134783,0.0198247569192389,0.0217956592956592,0.0237970738109152,0.0259230729728341,0.0280466106488671,0.0300704631613647,0.0321961488452727,0.034043565011527,0.0360793248071247,0.0383441949275663,0.0402524748357041,0.0420934182147806,0.0563102335731364,0.069898888400427,0.0836996087234734,0.0969916194361783,0.1090217242360679,0.1245559878213802,0.1354246203444472,0.1453775432025198,0.1552142193358185,0.1632219887654903,0.1747472463580865,0.1865778200856735,0.1961688156378422,0.2051988369296692,0.2131839620048593,0.2219185055664992,0.2298600657858058,0.236990842182145,0.244428827276643,0.2512874505046806,0.2575916956617231,0.2619097684633537,0.2668904940358675,0.2713239517518667,0.2758386658910219,0.2797792445640817,0.2826361060135076,0.2859646004215445,0.2897904303869474,0.292042279508672,0.2891907871751458,0.285441848340582,0.2828227494276122,0.2803321942990613,0.2773783226839429,0.2732009167303285,0.2693751972230988,0.2698477588998086,0.2698696043929889,0.2700492453199168,0.2709063782170832,0.2722579119536515,0.2732906294990297,0.2743972956142692,0.2759190120620333,0.2780333151425379,0.2795032820891705,0.2849705181282148,0.2907127127826908,0.2942268937448137,0.299233198015336,0.3035854488353834,0.3077209071756103,0.3113207547169811,0.3178673554100175,0.3209459459459459,0.3278811524609843,0.3333333333333333,0.3348991434097817,0.3303185214313802,0.0,2.066704830615819,49.11581317629853,140.8269302853243,186.76357104095823,fqhc1_100Compliance_implementation_low_initial_treat_cost,85 -100000,95643,48619,465.4078186589714,4658,47.41591125330657,3692,37.93272900264525,1384,14.03134573361354,77.2430810454354,79.64935101091763,63.27207635196621,65.05091429442186,77.0647751200474,79.47571139518273,63.204501316364485,64.98783479396279,0.1783059253880026,173.63961573489917,0.0675750356017275,63.07950045906807,239.54348,168.44617771046026,250455.6109699612,176119.50999659355,557.89386,376.7240692466325,582612.5801156383,393193.1815811885,487.07467,238.60087267297163,505349.1525778154,246482.16849542176,2371.66875,1110.8236495533915,2437161.7891534143,1119196.3171363254,823.59547,377.4082231179113,841718.9653189465,375679.1726749203,1335.3272,569.2027247460278,1354510.544420397,559510.6927929731,0.38151,100000,0,1088834,11384.345953180054,0,0.0,0,0.0,48712,508.6101439728992,0,0.0,43978,455.9455475047834,1053758,0,37836,0,0,0,0,0,103,1.0560103719038507,0,0.0,1,0.0104555482366717,0,0.0,0.04658,0.1220937852218814,0.2971232288535852,0.01384,0.3718717683557394,0.6281282316442606,23.20105597254208,3.9550374613074473,0.323943661971831,0.2919826652221018,0.1958288190682557,0.1882448537378115,11.225370220517169,6.185467182529242,14.7916243275702,11223.51405628713,42.31966477695036,13.261597793004013,13.447102535214407,7.977899658220002,7.633064790511941,0.594257854821235,0.7968460111317254,0.6998327759197325,0.5795297372060858,0.1136690647482014,0.7518518518518519,0.9045454545454544,0.8135048231511254,0.7458563535911602,0.1756756756756756,0.5290964777947933,0.7225705329153606,0.6598870056497175,0.5239852398523985,0.0968921389396709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023613588454678,0.0045645426328281,0.0068830390952559,0.0091648970219165,0.0114633873445017,0.0136870512755231,0.0159469793525363,0.017930076784839,0.0199402814136125,0.0221189096196776,0.0239665268533806,0.0260944576234634,0.0280134513929596,0.0297620274029051,0.0320180010941031,0.0340402651252727,0.0360491013622002,0.0379154298050775,0.0399101319936343,0.0419820270636558,0.0561564103367921,0.0701498947280212,0.0833945782500052,0.0964495858025536,0.1088214180144419,0.1247538588579051,0.1342065844408324,0.1439339019189765,0.1529942970864852,0.1622382128665019,0.1743272695884853,0.1853212799167533,0.1960837698615815,0.2050698056392006,0.2138913683096961,0.2231539715816445,0.231809696278659,0.2404458419267223,0.2473063284233497,0.2535710191447896,0.259529602595296,0.2649200440167638,0.2695112710740671,0.2738826011893343,0.2776818712312779,0.2812349668808822,0.2849664362288348,0.2881578277039074,0.2916056264989952,0.2943375292237382,0.2909553557003608,0.2877573190687696,0.2845873188048516,0.2812504516483358,0.2789646611064032,0.2756233535502052,0.2720563781772112,0.27157472944345,0.2709610229969439,0.2724400171379605,0.2730852160869972,0.2740186767964546,0.2749476768522394,0.2764018848120771,0.2773153589675933,0.2774057378117101,0.2788840075312375,0.2832930542041995,0.2880779612297122,0.2921902338158104,0.296583850931677,0.2991289568727427,0.3025976476507956,0.3071840826245443,0.3097053563023628,0.3173088252621656,0.3196923076923077,0.3241869918699187,0.3327846364883401,0.3362595419847328,0.0,2.527643617744142,46.427776506372346,136.6879781870608,193.16097569267507,fqhc1_100Compliance_implementation_low_initial_treat_cost,86 -100000,95824,49249,470.1849223576557,4558,46.36625480046752,3615,37.21405910836534,1390,14.150943396226417,77.44904619750217,79.77700121871554,63.38601454967061,65.10759347244475,77.27256036503255,79.6014606311592,63.319145831692005,65.04301488786618,0.1764858324696234,175.54058755634117,0.0668687179786076,64.57858457856958,239.62576,168.5981803212982,250068.62581399232,175945.67156588976,559.66868,378.88617850749,583577.92411087,394916.93991848617,503.11954,247.49383953543608,521735.0037568876,255724.27058180253,2316.11734,1099.31267818512,2385478.293538153,1115645.410528802,816.44132,375.3200191103021,837882.6598764402,377537.33836022415,1342.66436,571.5563695623466,1368340.040073468,571157.1192648339,0.38201,100000,0,1089208,11366.755718817833,0,0.0,0,0.0,48744,508.1607947904492,0,0.0,45415,470.6336617131408,1058872,0,37888,0,0,0,0,0,84,0.8766071130405744,0,0.0,1,0.0104357989647687,0,0.0,0.04558,0.1193162482657522,0.3049583150504607,0.0139,0.3753430441207515,0.6246569558792485,23.077199411771332,3.986499922420359,0.3131396957123098,0.2874135546334716,0.2063623789764868,0.1930843706777316,11.49346710870195,6.4652317706877644,14.685291296449895,11279.65079192554,41.536761124091335,12.775827771739902,12.850514541714928,8.31690551690911,7.593513293727398,0.5939142461964039,0.8007699711260827,0.7111307420494699,0.5884718498659517,0.1017191977077364,0.7567811934900542,0.9190371991247264,0.8198757763975155,0.7745664739884393,0.1233766233766233,0.5221203666799522,0.7079037800687286,0.6679012345679012,0.5322862129144852,0.0955882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021874968352186,0.0046526714849016,0.0066563169056243,0.0090815818612163,0.0112165309090169,0.0134707217985399,0.015425710877522,0.0175241633411241,0.0199386816555953,0.0221321791447954,0.0243070143977045,0.0263752052545156,0.0284231085526315,0.0308050284678822,0.0327251724955909,0.0351575010589608,0.0371148531862263,0.0390190792202405,0.0409770491121985,0.0429536629293023,0.0579472789293053,0.0719640336661613,0.085688832992716,0.0991584454880701,0.1113253672209226,0.1270713561041596,0.1376053426617904,0.1477322273621523,0.1569508161741171,0.1654458223564437,0.1768204157570413,0.1871002592912705,0.1976635615486504,0.2065082171151705,0.2144707664610183,0.2243553610309802,0.2336172818885362,0.2412891497312401,0.2486986239362665,0.2544055001655988,0.2598823122187608,0.2648180323472136,0.270289393617774,0.2744950490319036,0.2778564769411451,0.2819231241557166,0.2861717903026829,0.2902069559490336,0.292928772137867,0.2945494176503801,0.2910381781647689,0.2882019549325083,0.2847696036538381,0.2815998620313016,0.2784296361892111,0.274172950620287,0.2699623352165725,0.2695512090343997,0.2701546060421529,0.2700629286572863,0.2708576943779349,0.2726045883940621,0.2740419528186402,0.2748182946286119,0.2751804129849715,0.2763076606260296,0.2758193490257912,0.2806467630811247,0.2868858155535478,0.290872067979794,0.295529242267345,0.3010204081632653,0.3026956196181206,0.3055618273500414,0.3077568525079246,0.3138148667601683,0.314946350309808,0.3162444712505026,0.3153887982599239,0.3130402104472003,0.0,2.0315259303894013,47.93311505051024,134.73694058658,180.37202510774435,fqhc1_100Compliance_implementation_low_initial_treat_cost,87 -100000,95803,49166,469.3276828491801,4669,47.55592204837009,3740,38.41215828314353,1466,14.905587507698089,77.3497797498425,79.68386497860426,63.33168066437421,65.0604029210222,77.16308015318673,79.49948492226144,63.26130957348373,64.9930802732117,0.1866995966557709,184.3800563428175,0.0703710908904824,67.32264781049935,241.0276,169.6004785111832,251586.69352734252,177030.44634425145,559.07637,377.940522397919,582943.0811143701,393871.91674365,503.91405,247.78258602084165,521668.2358590024,255382.50098141804,2424.63394,1144.6838469724937,2493459.463691116,1157648.9058955072,849.78713,394.7490625109336,869446.9797396741,394501.69707032345,1416.96432,606.2113784466254,1442564.7422314542,602151.4326036493,0.38139,100000,0,1095580,11435.75879669739,0,0.0,0,0.0,48782,508.5331357055625,0,0.0,45475,470.4132438441385,1047395,0,37606,0,0,0,0,0,80,0.8246088327087878,0,0.0,0,0.0,0,0.0,0.04669,0.1224206193135635,0.3139858642107517,0.01466,0.3650401482396541,0.6349598517603459,22.830464183890832,3.963746822309454,0.3160427807486631,0.2772727272727273,0.2085561497326203,0.1981283422459893,11.397806793850686,6.296628541570438,15.67961320464239,11220.395893540175,43.219348782603575,12.939302833029698,13.425515983992632,8.660318142187661,8.194211823393585,0.5967914438502674,0.8206364513018322,0.7106598984771574,0.558974358974359,0.1417004048582996,0.766553480475382,0.9033613445378152,0.8828828828828829,0.751269035532995,0.1802325581395348,0.5187353629976581,0.750445632798574,0.6431095406360424,0.4939965694682676,0.1300527240773286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299633284032,0.0045220882719742,0.0067387906712403,0.0089709333631348,0.0115247685891567,0.0137162058958301,0.0157218597063621,0.0182211651337749,0.020707912139579,0.0228559145948269,0.0250228085821775,0.0270855793418553,0.0289856562644594,0.0308918476414074,0.0328024426473015,0.0347182756589756,0.036715765938286,0.0388955731651661,0.0410294239880309,0.04307176545305,0.0571801157999061,0.0711021884835367,0.084017231078829,0.0972067508774879,0.1093381112984823,0.1251136627968449,0.1362850444984248,0.1456805627986675,0.1550153274302254,0.1636938917788384,0.1751104406852709,0.1866538240928128,0.1965365705086368,0.2048159847847235,0.2132092491144699,0.221859073786838,0.2304679654549106,0.2379153314218249,0.245278096037571,0.2516454710912192,0.2568173933156008,0.2617466922249754,0.267250044344587,0.2719557593095771,0.276855693868142,0.2806566334001944,0.2835819031202378,0.2869066978351458,0.2905285745679236,0.2937719090166311,0.2907990314769976,0.28833984482474,0.2847248616917944,0.2818703642120787,0.2788294508039731,0.2748432482030891,0.2706482915573537,0.2699179535889163,0.2700528379069371,0.2710946408209806,0.2731042986044947,0.2742501280990106,0.2758714199294937,0.2771191530060722,0.2758249641319942,0.276839378238342,0.2787534289188654,0.283546276098473,0.2890438039746124,0.2902367442770495,0.2944384351901929,0.3015415268456375,0.306228157763355,0.3104860110698309,0.3133911098686049,0.3132530120481928,0.3153262518968133,0.3224970083765456,0.3237992444684295,0.3220015278838808,0.0,2.3910286659409925,51.10751900970547,136.94422684969734,185.4320520513953,fqhc1_100Compliance_implementation_low_initial_treat_cost,88 -100000,95796,48674,464.40352415549705,4651,47.26710927387364,3731,38.33145434047351,1398,14.165518393252327,77.41775944651599,79.74703928530649,63.37436231324406,65.0955782538585,77.22909837195662,79.56394556058245,63.3026224605031,65.02930670911871,0.1886610745593628,183.0937247240314,0.0717398527409614,66.27154473979147,240.11042,168.93984238056336,250647.64708338556,176353.75420744432,559.6401,378.4361728192537,583583.8448369452,394427.79742291296,497.42807,243.72353142592527,515995.7618272161,251902.0452365696,2433.53503,1146.6442779780605,2502216.689632135,1159187.3349071487,865.60989,399.3371865351549,888762.3282809303,402146.1325942644,1359.97406,585.332491151316,1380204.7267109274,575486.0592556779,0.38012,100000,0,1091411,11393.074867426614,0,0.0,0,0.0,48845,509.22794271159546,0,0.0,44954,465.9275961418013,1056254,0,37889,0,0,0,0,0,91,0.949935279134828,0,0.0,1,0.0104388492212618,0,0.0,0.04651,0.1223560980742923,0.3005805203182111,0.01398,0.3592013174145739,0.640798682585426,22.96020468342976,4.084774044124543,0.2934870008040739,0.2851782363977486,0.2184400964888769,0.2028946663093004,11.440379160766271,6.179580917921541,14.873101552255235,11200.824869658389,42.790551295646125,13.129136012352795,12.349558016247055,9.082540059181996,8.229317207864273,0.5888501742160279,0.8355263157894737,0.691324200913242,0.5803680981595092,0.1030383091149273,0.7757417102966842,0.9417879417879418,0.8794788273615635,0.7227722772277227,0.1282051282051282,0.5059961315280465,0.7478559176672385,0.618020304568528,0.533442088091354,0.0965058236272878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021466397999169,0.0043080291526866,0.0064332173189516,0.0089577705104507,0.0113580899699015,0.0135286453031475,0.0156966670064213,0.0177186249693802,0.0200230996453284,0.0220461802996806,0.0242939880067654,0.0262695944073172,0.0283208947552375,0.0304743078934634,0.0324303700877527,0.0344168655035997,0.0367507037589004,0.0387542248118274,0.0406719441500966,0.0429676519276619,0.0572719399839317,0.0713942207167649,0.0849660869474059,0.0974912804134975,0.1102520618936768,0.1260209418551821,0.137290631522073,0.1462854469478676,0.1558228131769627,0.164248982215556,0.1756120122187325,0.1856997774368504,0.196423142075316,0.2049879341784868,0.2134891948011997,0.2235005199230071,0.2327154783267758,0.2401634926338483,0.2476613286824163,0.2539617205186252,0.2585149509718998,0.2635933944097566,0.2678683145059433,0.2722086681974742,0.2762140276868621,0.2796212028040831,0.2833108681543607,0.2865535662170564,0.290074364800661,0.2922666245874262,0.2887365512060315,0.2852517047871246,0.283118487937765,0.2798180326216835,0.2775705361636617,0.2735319252838481,0.2695150588643205,0.2684667908131595,0.270079060771606,0.2698728069397385,0.2698368350469378,0.2703740716791096,0.2705246753246753,0.2712115844477902,0.2722064405242176,0.2729363725642218,0.2729994633223173,0.2772289569634454,0.2803670107392347,0.2841989471202954,0.2887425581814902,0.2942754919499105,0.2972433578645378,0.3021382321939467,0.3058098262656454,0.3102918586789555,0.3151655119322555,0.3221639079531692,0.3191547006231374,0.3175210405508799,0.0,2.3964983260652017,49.36323567561341,136.97458328872085,187.01655957893195,fqhc1_100Compliance_implementation_low_initial_treat_cost,89 -100000,95721,49206,470.4610273607672,4636,47.26235622277243,3674,37.7973485442066,1395,14.166170432820383,77.3893283971574,79.74970971151117,63.35181630130408,65.09350163113054,77.20789541272939,79.57395959565143,63.28261255432033,65.02922038269537,0.1814329844280138,175.7501158597421,0.0692037469837458,64.28124843516514,241.35078,169.7432936837649,252139.84392139656,177331.30001124612,560.31353,378.7603268942384,584777.3738260152,395108.42126595415,502.49623,247.010815907674,521975.27188391256,255695.39504993628,2397.08947,1132.882597642497,2465952.3406567,1145252.594306708,869.37166,395.6972272805625,888129.5535984789,393405.5091974136,1360.38794,582.0980977621281,1381791.1639034275,572412.1570652104,0.38247,100000,0,1097049,11460.901996427116,0,0.0,0,0.0,48878,510.02392369490497,0,0.0,45356,470.7744382110509,1046394,0,37587,0,0,0,0,0,83,0.8671033524513951,0,0.0,2,0.0208940566855757,0,0.0,0.04636,0.1212121212121212,0.3009059534081104,0.01395,0.3730912092447379,0.6269087907552621,22.88865498701767,4.037124524705342,0.3062057702776266,0.2917800762112139,0.1956995100707675,0.2063146434403919,11.201502580135251,6.058548907398642,14.893396115868455,11296.238378403672,42.11019262127933,13.155717829849555,12.781774746860853,7.965632290825398,8.207067753743523,0.5958083832335329,0.8274253731343284,0.6817777777777778,0.6105702364394993,0.1266490765171504,0.7689625108979947,0.93446088794926,0.8817891373801917,0.7540106951871658,0.132183908045977,0.5172140878512069,0.7429048414023373,0.604679802955665,0.5601503759398496,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306997376869,0.0045303901000334,0.0068470223060771,0.0091284790268371,0.0115591069903623,0.0137817315717688,0.0156937877058535,0.0178261668129221,0.0198841284600529,0.0221837939608509,0.0243572533789668,0.0267167348948875,0.028534730785039,0.0306642374085168,0.0327647374283239,0.0345269467266056,0.0366087235606539,0.0386909392666355,0.0407554465325128,0.0426901681355084,0.057827853018263,0.0726176898366625,0.0863819432790736,0.0993491677969487,0.1120633314359201,0.1270489202851039,0.1372247443676015,0.1473572150955447,0.156880969168643,0.1656141103307779,0.1774073715153277,0.1883510897193229,0.1986912616715762,0.2075370621419512,0.216010472701671,0.2250058145330099,0.2333084107977815,0.2417123965455199,0.248726587936335,0.2544092720692656,0.2599405704771705,0.2652851315497271,0.2703459851771297,0.2739862115191267,0.2777804741912781,0.28083776333924,0.2853392341446949,0.2882607038495743,0.2918116326293053,0.2951519222411,0.2921610738255034,0.2890324882010756,0.2854036613593322,0.2818946640543966,0.2791227654788682,0.2754075879932957,0.2714216048702984,0.2718277256129369,0.2723586890140462,0.2720403022670025,0.2718121429767597,0.2719652952261306,0.2733781505609091,0.2741383904778824,0.2742644249140237,0.2753978283857323,0.27834179357022,0.2836994004162912,0.2875939198781205,0.2925646340986428,0.2970955849294128,0.3008556879626227,0.3052841227360428,0.3091725945338824,0.3145483242038808,0.3157649253731343,0.3176981867226135,0.3229456133386264,0.3200883002207506,0.3215248363496342,0.0,2.2841734697458844,49.59838702912278,131.30452059909567,184.76864962997053,fqhc1_100Compliance_implementation_low_initial_treat_cost,90 -100000,95663,49127,469.8890898257425,4736,48.13773350198091,3761,38.62517378714864,1383,13.976145427176652,77.35982293729873,79.73582332181162,63.33991942654043,65.0899488888305,77.18039550760746,79.56393082598571,63.2705109345462,65.02645902806128,0.1794274296912732,171.89249582591515,0.0694084919942312,63.48986076922358,239.88954,168.72304647803196,250764.9979615944,176372.11012994955,557.62687,376.9613127489066,582229.8380774177,393374.6786934128,499.67601,245.02447239211253,518525.3650836792,253071.9499232091,2411.41043,1141.305425309976,2478672.548425201,1151066.4658737914,844.28045,389.8702145647716,866339.8283557906,391416.0609839152,1339.17164,578.7501827553577,1356365.5331737453,568786.648214617,0.38212,100000,0,1090407,11398.408998254288,0,0.0,0,0.0,48717,508.5247169752151,0,0.0,45058,467.1503088968567,1055110,0,37812,0,0,0,0,0,89,0.9303492468352446,0,0.0,0,0.0,0,0.0,0.04736,0.1239401235214068,0.2920185810810811,0.01383,0.3524041387705417,0.6475958612294583,23.19303974802473,4.044061140396616,0.3257112470087742,0.2773198617388992,0.2087210848178675,0.1882478064344589,11.579053780454869,6.326302033870737,14.778403792919915,11298.837306133908,43.20921031420341,12.89735843557414,13.931114537558974,8.633577746081638,7.747159594988658,0.5950545067801116,0.7929050814956855,0.7175510204081633,0.5834394904458599,0.1045197740112994,0.7601769911504425,0.9117647058823528,0.8619718309859155,0.7027027027027027,0.1351351351351351,0.524135309768149,0.7054908485856906,0.6586206896551724,0.5466666666666666,0.0964285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0048651442819351,0.0070511844975396,0.0093233937965915,0.0116520253782332,0.0138022291210748,0.0158856316041532,0.0179467820266906,0.0200106233018039,0.022076274654227,0.0240539266908435,0.0262528853552192,0.0283373761460346,0.0304777594728171,0.0322966630563721,0.0344695716884405,0.0365562008882815,0.0385225752248187,0.0404749280018298,0.0427514330380406,0.0573473332288565,0.0718107663794096,0.0851316176161887,0.0983986027230066,0.1106118617430834,0.1253901909951854,0.135223497192353,0.1458945843453065,0.1554384201691453,0.1647683967580913,0.1770937739122937,0.1875568551007147,0.1981304546542756,0.2067965415344204,0.2144422299789687,0.2244079661505062,0.2331823051513257,0.2411653628270839,0.2482253418910031,0.2539568098328011,0.2600441654237915,0.2657749821702073,0.2704383921285729,0.2752965680700032,0.2791439311264702,0.2823650967416573,0.2861602627339818,0.2892852608861241,0.2922345524306587,0.2953279152781253,0.2919127913220921,0.2883657080101585,0.2853989455184534,0.2827114248667339,0.2803777047627505,0.27713692819433,0.2737916778438767,0.2747065660451487,0.2748593829896029,0.2753796037524254,0.2757404400649459,0.2764672319830011,0.2767683931663155,0.2776011207222432,0.2773067093414861,0.278356646068723,0.2802639370611623,0.2852474323062558,0.2892097317183216,0.2925306314797361,0.2969123281496507,0.3032363483027619,0.3063170441001192,0.3081117927743694,0.3160399365494075,0.3187943262411347,0.3198484848484848,0.3164607413312076,0.3107209364192604,0.3223981900452489,0.0,2.624640957090114,48.64369862278672,140.53298171291442,190.1064880536973,fqhc1_100Compliance_implementation_low_initial_treat_cost,91 -100000,95858,48880,466.75290533914745,4647,47.45561142523316,3652,37.55555091906778,1289,13.175739114106282,77.34109898624328,79.63187909857085,63.34986309044478,65.04409576308619,77.17772969327886,79.47128107611942,63.287559308987625,64.9846368046183,0.1633692929644183,160.59802245142407,0.0623037814571532,59.458958467885736,240.3841,169.1005031682566,250771.03632456344,176407.29325487348,556.43583,376.5308716521766,579928.5505643764,392250.0547770441,495.38789,243.6932141749392,512716.6538004131,251130.236932547,2353.17962,1120.731037720474,2421482.567965115,1135788.342385041,857.69314,397.9718353436057,878646.1849819525,399084.48324537824,1248.2866,538.1461942830845,1276228.588119927,538628.1905172132,0.38037,100000,0,1092655,11398.683469298338,0,0.0,0,0.0,48523,505.6333326378601,0,0.0,44784,463.1746959043585,1053870,0,37876,0,0,0,0,0,83,0.8658640906340629,0,0.0,0,0.0,0,0.0,0.04647,0.1221705181796671,0.2773832580159242,0.01289,0.3751547668179942,0.6248452331820058,22.80742396634974,4.016457770870562,0.3085980284775465,0.2965498357064622,0.2029025191675794,0.1919496166484118,11.63289734439862,6.376382767177699,13.82660859207986,11236.216695299294,42.20447482289328,13.293182721060958,12.929690907779,8.239879478342454,7.741721715710866,0.6048740416210295,0.7922437673130194,0.7089618456078084,0.6059379217273954,0.1469329529243937,0.7658623771224308,0.9348314606741572,0.8395061728395061,0.7473684210526316,0.16875,0.533754441373865,0.6927899686520376,0.6562889165628891,0.5571687840290381,0.1404805914972273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002592273808921,0.0047623390177422,0.0069378936798222,0.0090259305135338,0.0110584839306405,0.0130871936823251,0.0150982609492955,0.0172200969140525,0.019396155496088,0.0214920670642511,0.0235488133405717,0.0258658707937191,0.0277723570555549,0.0299504084614276,0.0321899246772249,0.0339556821583015,0.0361072048970138,0.0383758638195588,0.0403633532312483,0.042550092590666,0.0574324324324324,0.0717226820499958,0.0856891477171556,0.0985949510648128,0.1104337113434627,0.1258131970260223,0.1364199688582414,0.1467220869787071,0.156685125316091,0.1653467362532551,0.1764623595747428,0.187807488943914,0.1979740671905398,0.2062947379924594,0.2148529444114476,0.2235833591777059,0.2325910886008166,0.2401165210153974,0.247109810194797,0.2536698193143564,0.259625059271167,0.2649163003834284,0.2701398824656206,0.2742762039320865,0.2778418261471063,0.281322362910775,0.2846195196959658,0.2872353942720642,0.2903204962522616,0.2924717294461871,0.2893778309431324,0.28657146780173,0.2831626912691269,0.2797037208160672,0.2774396579877089,0.2736875898125783,0.2703889784181755,0.2704412825388499,0.2701146479402669,0.2707123067298239,0.2720231062097938,0.2732713159921787,0.2740956288728856,0.2746825254873904,0.2746097789749633,0.2758001093721517,0.277285381512414,0.2809922538965723,0.2857043284310309,0.289371086519907,0.2944948742266179,0.2948138018093835,0.2997256515775034,0.3055597295266716,0.3086247086247086,0.3122362869198312,0.3100997883277895,0.3149543831812773,0.3242807206238236,0.3248216297408937,0.0,2.105274232536098,48.442115906849175,140.79161396606193,178.76021230440466,fqhc1_100Compliance_implementation_low_initial_treat_cost,92 -100000,95637,48761,465.2278929702939,4741,48.307663352049936,3755,38.62521827326244,1422,14.45047418885996,77.31769350596971,79.73869067841198,63.289715480586615,65.08061784164559,77.13032219417717,79.5574028359406,63.218405406317046,65.01455858529133,0.1873713117925461,181.2878424713915,0.0713100742695687,66.05925635426502,240.42898,169.12478791560315,251396.53063145012,176839.478408069,559.76522,378.2031875484876,584650.0622144149,394806.18764501216,503.69265,247.06064448829017,522662.5469222163,255237.44757553516,2451.32773,1152.3898543645885,2523186.183171785,1165107.6761743126,867.2927,390.9056309418032,893706.5152608299,395586.468565308,1387.81912,595.6248973235239,1411936.6144902078,588419.3418988074,0.37904,100000,0,1092859,11427.11502870228,0,0.0,0,0.0,48902,510.6601001704361,0,0.0,45463,471.3970534416596,1046933,0,37577,0,0,0,0,0,85,0.8783211518554535,0,0.0,0,0.0,0,0.0,0.04741,0.1250791473195441,0.2999367222105041,0.01422,0.3731494625836544,0.6268505374163456,23.08056459467731,4.115201538176194,0.3022636484687084,0.2806924101198402,0.2103861517976032,0.2066577896138482,11.477485307702608,6.223324389783975,15.161007415134728,11207.10609602596,42.96456700239392,12.947947112430048,12.793690915295077,8.791455065887876,8.431473908780918,0.5856191744340878,0.801707779886148,0.7066079295154185,0.5835443037974684,0.1172680412371134,0.7547826086956522,0.9084967320261438,0.8422712933753943,0.7722772277227723,0.1627906976744186,0.5109404990403071,0.719327731092437,0.6540342298288508,0.5187074829931972,0.1043046357615894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0046850281912951,0.0070862944162436,0.0094614782670555,0.0117106026229308,0.0139262428687856,0.0160467631036663,0.0185126533781505,0.0206318504190844,0.0225506877959777,0.0246984550633885,0.0269806179630867,0.0291936978683966,0.031380235197029,0.0334555974582838,0.0354836706817335,0.0375854096032017,0.0397000166195778,0.0417217371395269,0.0436968129484398,0.0581577627288688,0.0724696907778231,0.0858070208609062,0.0984053758004718,0.1104387771265642,0.1259783310916004,0.1366708465282353,0.1464888718342287,0.1557773356438397,0.1648836759682928,0.1766495162281979,0.1873760632822235,0.1976405999803928,0.2062360362728348,0.2142833526202678,0.2228988497332313,0.2306944413401578,0.2386449382271125,0.2457536672873427,0.2520368057385784,0.2565619608887448,0.2622513456587877,0.2670116766537979,0.2711409074009666,0.2747753772082335,0.2784398299340686,0.2821282503470789,0.2859975846945909,0.2896500854081474,0.2938523022541118,0.2906250840890133,0.2863658844864538,0.2822607864094054,0.2789510862513875,0.275957579168765,0.2733816247936915,0.2696828004549476,0.2690904927792225,0.2682379349046015,0.2681586040573131,0.268559317307156,0.2693520894966791,0.2705948117016211,0.2706361143059365,0.2718536666587379,0.2722533357421219,0.2736492196743478,0.2776261090773717,0.2826441124475718,0.2854676033122719,0.2878952122854561,0.2921123346857052,0.2950031230480949,0.2984198645598194,0.3018499581667751,0.3099367236934614,0.3126513317191283,0.3146936347412254,0.3267407206719046,0.334841628959276,0.0,2.45070929032061,49.66359911681045,133.293647229077,193.09384746306296,fqhc1_100Compliance_implementation_low_initial_treat_cost,93 -100000,95711,49123,469.4444734669996,4659,47.47625664761626,3768,38.8043171631265,1383,14.042273092956922,77.34880342590687,79.70713525086761,63.338894218876014,65.07741799726779,77.16596942149326,79.53025032649286,63.268113420758645,65.01211750000134,0.1828340044136069,176.8849243747468,0.0707807981173687,65.30049726644904,240.27014,169.0866444038398,251036.20273531775,176662.8607013194,561.25126,378.8407284018965,585803.679827815,395220.06139678566,500.92837,245.2391673896701,520728.5473978958,254170.82887080705,2442.80051,1148.2327230021688,2514368.6723574093,1161905.923591535,854.73758,389.6322137720281,877345.5193237977,391579.2891098109,1341.15464,584.2521983014516,1362040.0371953067,573821.0778154588,0.38084,100000,0,1092137,11410.73648796899,0,0.0,0,0.0,48883,510.108555965354,0,0.0,45243,470.0609125387887,1051282,0,37750,0,0,0,0,0,91,0.940330787474794,0,0.0,0,0.0,0,0.0,0.04659,0.1223348387774393,0.296844816484224,0.01383,0.3734840698869476,0.6265159301130524,22.89370408573228,3.972183492872962,0.3057324840764331,0.3012208067940552,0.1934713375796178,0.1995753715498938,10.877473104099522,5.833566849286734,14.833231085680852,11232.318477000732,43.10182227388512,13.793082841672923,13.05911354094264,8.095416768209812,8.154209123059738,0.5804140127388535,0.7964757709251101,0.7022569444444444,0.522633744855967,0.1236702127659574,0.7502222222222222,0.9188034188034188,0.8615384615384616,0.6547619047619048,0.1463414634146341,0.5081346954218691,0.7106446776611695,0.6396614268440145,0.483065953654189,0.1173469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999270908225,0.0044601224506345,0.0065851554969306,0.0090512906469996,0.0113164958516349,0.0134168066371456,0.0157481117555322,0.0177197101153414,0.0198050156355386,0.0220052403176942,0.0240967560088146,0.0260484019951967,0.0284172107130005,0.0308858048840752,0.0330407154867393,0.0351013153951868,0.0369752945805463,0.0391583141380813,0.0408833804691399,0.042836749366983,0.057284595300261,0.0710458008875492,0.0843694586966329,0.0973328423378399,0.1095241611375407,0.1246455926537175,0.1355478906871849,0.1453945266744755,0.1550478714310138,0.1643241851382958,0.1754185610549677,0.1872456930135919,0.1973959013183657,0.2060113533201351,0.2140711479847273,0.2229806094182825,0.2309891877401483,0.2385766230257455,0.245144225857352,0.2526115641894987,0.257993958962608,0.2635862891625443,0.2692262186464742,0.2733467461857201,0.2772161883380862,0.2810057722366494,0.2849311305086227,0.2877329744553349,0.2909224749137964,0.2935230398673282,0.2904600002687702,0.2869461340949347,0.2837803643724696,0.2812107927260142,0.2780322910643597,0.2742292598757043,0.2703282828282828,0.2700701289784709,0.2712859159961213,0.2723846099139463,0.2725359065591177,0.2735700817096166,0.2744955121930902,0.2755528856850442,0.2763585916570991,0.2787161286979949,0.2798797436042884,0.284217767910191,0.2879896835354802,0.2913578299952689,0.296507677673597,0.3008160237388724,0.3062318657751987,0.3113142857142857,0.3142910833411632,0.3201324033573708,0.320227307633236,0.3247811036448788,0.3252480705622932,0.3380605596013798,0.0,2.021538812203738,48.93025799959853,135.5137331884401,197.2546229253904,fqhc1_100Compliance_implementation_low_initial_treat_cost,94 -100000,95631,48798,466.9824638454058,4613,47.05587100417229,3619,37.1950518137424,1389,14.106304441028536,77.26744378178137,79.68251838305709,63.28338998351626,65.06946819241924,77.08635171731207,79.50676098703097,63.21532069576222,65.00595916042744,0.181092064469297,175.7573960261141,0.0680692877540352,63.50903199179925,241.26366,169.66612830093672,252285.5768526942,177417.05922027037,560.23834,379.4927823987368,585173.6570777259,396171.1175149656,499.44375,245.12610543015643,518432.8617289373,253343.82759539213,2390.34342,1133.5188214039383,2456832.784348172,1142935.7917269866,871.26357,402.83369516865474,890760.2555656639,401184.2735441518,1359.24138,582.3013762492059,1382103.2092104023,575101.1842067719,0.3799,100000,0,1096653,11467.526220577009,0,0.0,0,0.0,48846,510.0751848250045,0,0.0,45145,468.1431753301754,1043008,0,37454,0,0,0,0,0,89,0.9306605598602964,0,0.0,1,0.0104568602231493,0,0.0,0.04613,0.1214266912345354,0.3011055712117927,0.01389,0.3590965602983837,0.6409034397016162,23.182889023568425,4.127399713515618,0.303951367781155,0.2799115777839182,0.1992263056092843,0.2169107488256424,11.509741955281823,6.124349833047855,14.885814646259687,11216.225318165678,41.83342560685357,12.466788236689052,12.590499259385837,8.16845164703552,8.607686463743155,0.5893893340701851,0.805528134254689,0.7109090909090909,0.6019417475728155,0.1286624203821656,0.7539964476021315,0.8977272727272727,0.8658536585365854,0.7789473684210526,0.1309523809523809,0.5150421179302046,0.7347294938917975,0.6450777202072538,0.5386064030131826,0.1280388978930308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365979694814,0.0044412897992293,0.0066906270305393,0.0089525241850256,0.0111293095555397,0.0134435979956817,0.0154985011317984,0.0178664406987309,0.0198877289133835,0.0219352592395367,0.0240295369468232,0.026143320869458,0.028485309851041,0.030602466744289,0.0322350901096178,0.0343430166442675,0.0363109108798094,0.0384854900983933,0.0403578115248595,0.0425354462051709,0.0576364358422339,0.07195224130708,0.0853530474230268,0.0982510450558591,0.110297067331039,0.1255347536956245,0.1361507333807738,0.146312872975277,0.1556175929491293,0.1641608316508441,0.1760741092226727,0.1859570826608317,0.1964260450335738,0.2055454038143799,0.2139381797366914,0.2231096439727939,0.2312284499592711,0.2390631854843245,0.2466092364965326,0.2527182942059373,0.2582437296727971,0.2624741279511676,0.2678138202818968,0.2722890988441801,0.2762195270155312,0.2806048198120421,0.2838999486980568,0.2876794182335965,0.2905563680130453,0.2931200591255229,0.2897551251313273,0.286610101899091,0.2833955092560005,0.2799295266152558,0.2771778685480876,0.2728663667798892,0.2700299083759277,0.2698267107806204,0.2700966274135551,0.2704916573178766,0.2707098655798388,0.2726482728655225,0.2737027043985693,0.2742852049116395,0.2755354102213588,0.277339786121302,0.2786838746277124,0.2838197116136499,0.2878771985034442,0.2926539345431492,0.2948776479181884,0.3002509209332123,0.3028575049103466,0.3077629063097514,0.3113997929021933,0.3146094215861658,0.3191260193875981,0.3233973050224581,0.3300478738383554,0.3202380952380952,0.0,2.365867718936017,48.72440308387533,135.28559730427486,178.70855423696227,fqhc1_100Compliance_implementation_low_initial_treat_cost,95 -100000,95848,48828,466.0608463400384,4695,47.89875636424338,3734,38.47758951673483,1407,14.356063767632085,77.40182060844235,79.71590839154942,63.36325590393732,65.07585789240458,77.22247136059298,79.53940890342527,63.295369227302565,65.01140848906121,0.1793492478493732,176.49948812415062,0.0678866766347567,64.44940334337446,239.6724,168.58581214696213,250054.66989399883,175888.71144620873,559.29848,377.7304045551345,583053.3657457641,393620.0176896071,497.77776,243.991754701168,516861.196895084,252621.7418515292,2429.29246,1142.621768189447,2503279.1711877137,1160871.7220906515,851.70654,388.8841367536903,876183.6032050748,393312.3870646132,1366.05462,583.3506436947473,1394629.0793756782,580847.5990236108,0.37931,100000,0,1089420,11366.121358818127,0,0.0,0,0.0,48806,508.711710207829,0,0.0,44899,465.8730489942409,1058225,0,38041,0,0,0,0,0,92,0.9598531007428428,0,0.0,1,0.0104331858776395,0,0.0,0.04695,0.1237773852521684,0.2996805111821086,0.01407,0.3560327198364008,0.6439672801635992,23.41384397750588,4.026151693059025,0.306373861810391,0.2905731119442956,0.2024638457418318,0.2005891805034815,11.043161724167154,5.889646847675049,14.949252110510326,11195.63797979056,42.94570740285692,13.340726336158784,13.051745540511908,8.35343626019024,8.199799265995987,0.5859667916443492,0.8055299539170507,0.6888111888111889,0.5753968253968254,0.1214953271028037,0.7486910994764397,0.9104477611940298,0.8385093167701864,0.7213114754098361,0.1686046511627907,0.5139103554868625,0.7256493506493507,0.6301703163017032,0.5287958115183246,0.1074523396880415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023187994896615,0.0044492191063049,0.0066956133587631,0.0090496358816539,0.011081627880969,0.0135897227085793,0.0158079804311267,0.0179526433966115,0.0202383629413087,0.0224558099546585,0.0244784993080826,0.0264913577205731,0.0285960981025019,0.0305080208397685,0.0327777548578736,0.0345835916511675,0.0364673367354332,0.0383347158855246,0.0406414557389308,0.0425954834009782,0.0570168119811438,0.0706676841698115,0.0842990967579688,0.0973119465540604,0.109836756187467,0.1258488672968263,0.1363438946621328,0.1454553185156839,0.1559214949680366,0.1641994087150263,0.1755380362885444,0.1863985564403721,0.1970821157376728,0.2058470076692813,0.2142252607744644,0.2230904603260689,0.2308558684137162,0.2392670451351807,0.246447647452399,0.2518823664034786,0.2576542410507816,0.2628909354401383,0.2676983826728459,0.2716080432100983,0.2760516542466684,0.2795115165392522,0.2828771403574553,0.2861207433093269,0.2898284709744969,0.2925358196375895,0.2893679897911209,0.286596579835854,0.2839292984598969,0.2806106299099306,0.2775962263592944,0.2737574158520032,0.2702046861951058,0.2695547140245495,0.269379087743141,0.2693058068177787,0.2704965304262087,0.2704425959350231,0.2703314974540164,0.2711503482542922,0.2711190476190476,0.2732597141235358,0.2736162777589899,0.2776348020216427,0.2830051562445929,0.2861959462108441,0.2909566315030205,0.296450389719823,0.3004990642545228,0.3056015660292124,0.3104753114905399,0.3137163500757488,0.3154159746338517,0.3149558941459502,0.3161744784611216,0.316628701594533,0.0,1.8177241071272263,50.27297820918347,137.35764812358144,187.4055340031593,fqhc1_100Compliance_implementation_low_initial_treat_cost,96 -100000,95697,48449,463.0030199483787,4697,47.7757923445876,3723,38.329310218711136,1422,14.493662288264,77.32145341825886,79.70938634867298,63.3143933609397,65.08054051959567,77.14297788024172,79.53524035994826,63.24630530399568,65.01681733346429,0.178475538017139,174.14598872471743,0.0680880569440205,63.72318613138361,241.13562,169.59270798884648,251978.24383209503,177218.41644863106,562.40429,379.99529065375737,587158.1658777182,396547.1756207168,493.79922,242.25294525247443,512664.4199922673,250571.74895323557,2409.90587,1136.0110308752105,2479979.5918367347,1149067.0557422903,865.89022,393.8781442725889,889318.6829263195,396194.30436506576,1382.52242,588.553209900735,1408860.1314565763,583384.0144409257,0.37767,100000,0,1096071,11453.556537822502,0,0.0,0,0.0,49174,513.2762782532368,0,0.0,44646,463.201563267396,1047083,0,37575,0,0,0,0,0,90,0.9404683532399134,0,0.0,0,0.0,0,0.0,0.04697,0.1243678343527418,0.3027464338939749,0.01422,0.3569237062794027,0.6430762937205973,23.001704604768456,3.976540520595199,0.3056674724684394,0.2879398334676336,0.2027934461455815,0.2035992479183454,11.466880423829174,6.29833707280522,15.15075230632414,11160.098416104023,42.79611284574229,13.205202972289438,12.918076034640745,8.529224560556667,8.143609278255447,0.5989793177544991,0.8236940298507462,0.7012302284710018,0.5986754966887418,0.1279683377308707,0.7738607050730868,0.9042553191489362,0.8909657320872274,0.7619047619047619,0.1790123456790123,0.51953125,0.760797342192691,0.6266829865361077,0.5357798165137615,0.1140939597315436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020568209451244,0.0043200486766048,0.0066083319798603,0.008709261084745,0.0110084649194204,0.0133240974655692,0.0157255473857042,0.0178782928323463,0.0197098723151943,0.0221098532151411,0.0243389823557756,0.0260120355727166,0.0280832416084599,0.0299445623724831,0.0321638332352728,0.0345330286706851,0.036522964098527,0.0384826942037258,0.040185953636392,0.0424405394701186,0.0571037623514174,0.0711534032619391,0.0843513853904282,0.0972817107437146,0.109038343849579,0.1239468224734324,0.134139351222826,0.1440668037108438,0.1533874122286703,0.1622494181244838,0.174483991898996,0.1860203297357567,0.1964237157245565,0.2053340918041395,0.2129648981926584,0.2218912964049646,0.2302613234588831,0.2379437844884748,0.2457626157840436,0.2517572177576299,0.2569370577625676,0.2622487143525012,0.2674285173486649,0.2716732542819499,0.2755225909830294,0.2791810721360286,0.2826418395401149,0.2860281418266788,0.2887508555341762,0.2922007843963043,0.2885865477597507,0.2852421699303384,0.2818313280076375,0.2804020968949824,0.2778724602457134,0.2732481740671699,0.2688633815936972,0.269175392670157,0.2692517192074624,0.2688778232260359,0.2698845084612944,0.2714521776763583,0.272823911955978,0.2731038168618893,0.2743237739284602,0.2752658537219521,0.2768359974970135,0.2807231935827536,0.2844020676166527,0.2896179172745554,0.2914012019339388,0.2946867565424266,0.3001573811772112,0.2999618757148303,0.3044212897775274,0.3067142008318479,0.3084569506040679,0.311804008908686,0.320393657736468,0.3201520912547528,0.0,2.2735646223476604,50.48916175201142,132.8260556252817,188.5073914992263,fqhc1_100Compliance_implementation_low_initial_treat_cost,97 -100000,95714,48484,461.8864533923982,4643,47.38073844996552,3701,38.16578556950916,1413,14.511983617861546,77.3455376358958,79.73395507333358,63.32130932583449,65.0880768537654,77.16915490822059,79.55704393123315,63.25499769094454,65.02299226051545,0.1763827276752039,176.91114210042258,0.0663116348899492,65.08459324994931,240.19666,168.8402945628572,250952.25358881667,176400.6113660041,558.25244,377.7706090255394,582762.2186931901,394198.8346799209,496.72769,244.25959734074195,515247.1007376141,252397.2105273836,2422.50195,1138.5814333649653,2501602.534634432,1160219.7303058747,843.9419,382.8096256415628,869051.5703031949,387290.3054658282,1374.48922,584.1133585731142,1413228.221576781,590635.5175012796,0.3782,100000,0,1091803,11406.920617673486,0,0.0,0,0.0,48805,509.39256535094137,0,0.0,44818,464.6028794115803,1053445,0,37780,0,0,0,0,0,92,0.9611968990952212,0,0.0,2,0.0208955847629395,0,0.0,0.04643,0.1227657324167107,0.3043290975662287,0.01413,0.3598923841059602,0.6401076158940397,23.183562519032325,3.977822842788553,0.3072142664144826,0.2834369089435288,0.2010267495271548,0.2083220751148338,11.40921872288595,6.31557100949059,15.067839870962294,11166.005330352364,42.50490002661564,12.937172198228414,12.939113792341004,8.276704728128816,8.351909307917396,0.5733585517427722,0.7988560533841754,0.6807387862796834,0.571236559139785,0.1102464332036316,0.7445454545454545,0.9101654846335696,0.8654434250764526,0.7441860465116279,0.1292134831460674,0.500961168781238,0.7236421725239617,0.6061728395061728,0.5192307692307693,0.1045531197301855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0046756934935848,0.0072287933397634,0.0096038537368645,0.0117909172295922,0.014167854960277,0.0164385796740837,0.0187902739907886,0.0207583442408376,0.0228566747224839,0.0249833341879903,0.0271669354258892,0.029542158264501,0.0316032437890918,0.0336835153041216,0.0355525690065129,0.0374667232931768,0.0397177105495303,0.0418759423906826,0.0437998791440061,0.058021261931118,0.0718307206094727,0.0848960574228957,0.0977654806741431,0.1101068373814822,0.1258315266247157,0.1356108429261047,0.1458222402078763,0.1558227780450002,0.1646954020521186,0.1758334141688492,0.185963658415091,0.196112362730053,0.2041702676979291,0.2122922856828436,0.2215501196490295,0.2299847130630781,0.237228658193679,0.244751675721042,0.2501573496595525,0.2557932469935245,0.2621075630644841,0.2670369932632077,0.2702214459186237,0.2728066240740965,0.277117320908275,0.2807346092862404,0.2841178634397554,0.2872418641247565,0.2905687639563903,0.2871828550749889,0.2832665015259549,0.2806124595128927,0.2779231609823431,0.2751957453094992,0.2708999543170397,0.267630276472999,0.2680734725951149,0.2686998995864322,0.2685791571753986,0.2688290577530315,0.2697251685659083,0.2703504775439403,0.2705782842897208,0.2725705666882137,0.2746237675142708,0.2754443563908072,0.2804976924036422,0.2835177068113824,0.2875580388762099,0.2910400720396218,0.2951301427371956,0.2986085227978631,0.3024357239512855,0.3093081878442722,0.3165954415954416,0.3197683279987807,0.3204531660934655,0.3271789302199294,0.3330772185939301,0.0,1.9464407938135837,47.75745610178842,143.74563559420915,182.70825234810985,fqhc1_100Compliance_implementation_low_initial_treat_cost,98 -100000,95608,48763,465.4840599113045,4729,48.3013973726048,3778,38.898418542381386,1425,14.4548573341143,77.23812690061078,79.66771961827598,63.25655152000609,65.0535011601321,77.0529609089046,79.4888895494095,63.18584834845033,64.98812178778834,0.1851659917061852,178.8300688664748,0.0707031715557633,65.3793723437559,239.72498,168.7365736509888,250736.90486151783,176487.4967209112,560.5996,378.45485858028695,585750.3765375282,395239.1797783941,494.36416,242.26567713581312,513480.2736172705,250645.8023223924,2434.80971,1140.6663340791783,2506648.889214292,1153145.1492380854,838.03669,380.4505684761184,861411.6078152456,382892.50777521246,1377.285,588.858352559395,1397895.5526734164,579537.6146628495,0.38049,100000,0,1089659,11397.132039159902,0,0.0,0,0.0,48935,511.1810727135804,0,0.0,44614,463.0365659777424,1047923,0,37632,0,0,0,0,0,92,0.9622625721696928,0,0.0,1,0.0104593757844531,0,0.0,0.04729,0.1242871034718389,0.3013322055402833,0.01425,0.3633968382650993,0.6366031617349007,23.46898856267628,4.007235844134195,0.3057173107464266,0.2887771307570143,0.2138697723663314,0.1916357861302276,11.257684448809412,6.189261486491346,15.285431682333607,11240.4133840675,43.22535990232068,13.409475220645383,12.962273107876282,8.928268049456747,7.925343524342279,0.5923769190047644,0.8249312557286893,0.6831168831168831,0.5742574257425742,0.117403314917127,0.7790492957746479,0.9353448275862069,0.8397435897435898,0.8190954773869347,0.1614906832298136,0.512112036336109,0.7432216905901117,0.6251482799525504,0.4942528735632184,0.1047957371225577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023714934327874,0.0046960737577718,0.0067825521890991,0.0091682506124025,0.011205422569614,0.0132950273541367,0.0154214901320822,0.0178053364932783,0.0201603829552196,0.0223797281656816,0.0246039563325945,0.026643239522004,0.029033984479529,0.0310612152326756,0.0329219806888005,0.0350975218583475,0.037195223088406,0.0393920821083905,0.0413795257229705,0.043483704043734,0.0582749607945635,0.0724982446579965,0.0864248116745989,0.0990784138185265,0.1109198437004963,0.1267053639522074,0.1373463512063488,0.1473936680524464,0.157577119378551,0.1668976185105217,0.1779938068469946,0.1881660396994894,0.1978055504102335,0.206678571819845,0.2147122991824051,0.2227658512231652,0.2312251859307722,0.2385279725798814,0.2457815982171283,0.251369131677746,0.2565283465389033,0.2608940315830197,0.2665369880561255,0.2710548766566935,0.2750204012033665,0.2793843341197979,0.2833166081284495,0.286659696011425,0.2895655672806095,0.2926858291244678,0.2890963294708017,0.2859446941082407,0.2841711908622999,0.2811215926847618,0.2784004756949606,0.2752467962474707,0.2719898605830165,0.2715968263876341,0.2712583143819571,0.2716595866204976,0.2718157840588114,0.2728653724747474,0.2735105292875217,0.2733013499944215,0.2741312741312741,0.2750688776836305,0.2766732087493244,0.2828260665141209,0.2868179116999336,0.2902489871376312,0.2966435657018617,0.2991250263546279,0.3035825739608039,0.3103604282913588,0.3139329805996472,0.3204516354324292,0.3263691986270706,0.3285205696202531,0.3370330265295073,0.3337112622826909,0.0,2.3980410467636517,49.20568026756716,136.45371564910604,194.66442853272812,fqhc1_100Compliance_implementation_low_initial_treat_cost,99 -100000,95722,46827,445.6760201416603,5085,52.00476379515681,4077,42.038402874992165,1590,16.27630011909488,77.33641368994157,79.71272592007107,63.332022412709286,65.08984979552923,77.14062877456415,79.51783382242613,63.25876598543669,65.01910947382675,0.1957849153774162,194.89209764493864,0.0732564272725966,70.74032170248756,223.31518,156.42774723485567,233295.33440588368,163418.5938935622,454.23587,300.8995188336852,473992.6140281231,313804.1988841909,436.20227,212.2834644943528,452143.8958651093,219067.14500558216,2871.13527,1329.730099070346,2960982.6685610414,1350970.3343241964,958.48337,435.4509135764253,983908.787948434,437580.1068220755,1548.22112,647.6959006546808,1585650.3625080965,649049.863193927,0.38025,100000,0,1015069,10604.333382085624,0,0.0,0,0.0,39146,408.37007166586574,0,0.0,39533,409.4147635862184,1229712,0,44111,0,0,8895,0,0,82,0.8566473746892042,0,0.0,0,0.0,0,0.0,0.05085,0.1337278106508875,0.3126843657817109,0.0159,0.3588046150936259,0.6411953849063742,23.574490848881613,4.152562886570513,0.3036546480255089,0.2702967868530782,0.2197694383124846,0.2062791268089281,11.190271978910667,5.954865778698908,16.745242510675013,11717.102261381344,46.7335462030711,13.587574324735929,14.223765720004891,9.81610784798382,9.106098310346448,0.5889134167279862,0.8166969147005445,0.7084006462035541,0.5848214285714286,0.1189060642092746,0.7556109725685786,0.910828025477707,0.8538681948424068,0.748792270531401,0.1534090909090909,0.5191370911621433,0.7464342313787639,0.6512935883014623,0.5355587808417998,0.1097744360902255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0046247933549021,0.0067008477587694,0.0090251239938206,0.0112712735114899,0.013606827857332,0.0157660184174833,0.0178885031652031,0.0198133172482185,0.0221628483098908,0.0242427348675106,0.0261901584140118,0.0280322895778703,0.0302605829642599,0.0324827422533612,0.0344913125717061,0.0364671774694553,0.0383418399103697,0.0405009353564747,0.0425715863045946,0.0566467228435088,0.0704413964826381,0.0836383083585877,0.0964964838699505,0.1089797639123102,0.124434580426971,0.1354780580877676,0.1468098681412165,0.1570284982388728,0.1675933365472173,0.1804181957104269,0.1923742376400363,0.2037359007237085,0.2130225343804957,0.2216215622287415,0.2315491525048925,0.2404318614834375,0.2486206470317223,0.2563846790373956,0.2636207685269899,0.2699582866320788,0.275696187751766,0.2809292657288972,0.2860970883077733,0.2909260651325202,0.2950609996064541,0.2987147621248266,0.302128578323046,0.305377456049638,0.3088836167127982,0.307069674886385,0.3046671893698675,0.3021013666624442,0.2996288755072275,0.297009848338557,0.2944021057141983,0.2912271267930854,0.2921558339345445,0.2921877399211779,0.2924020394338075,0.2933173867543728,0.2948675007388435,0.2957717098813075,0.295529359430605,0.297387889960974,0.2994681541055908,0.3012316113581936,0.3059670976062407,0.3101851851851852,0.3141926773091891,0.3166194350489076,0.3211249532160616,0.3241449719244512,0.3274961597542242,0.3350978353341525,0.3383024765568646,0.3411020219169625,0.3455986989225452,0.3478260869565217,0.3631221719457013,0.0,2.0625624002812515,52.4474787115561,150.22506857702723,212.5549531324854,fqhc1_80Compliance_baseline,0 -100000,95611,46886,446.9046448630388,5294,54.15694846827248,4172,43.07035801319932,1563,16.044179017058706,77.26635035352784,79.70442851272031,63.26822878755484,65.07196915270315,77.06440107822505,79.50260537565222,63.19198252836941,64.9978006187118,0.2019492753027947,201.8231370680894,0.0762462591854316,74.16853399134027,221.98484,155.4407805397184,232175.00078442856,162576.25225101545,451.2611,298.2996875558105,471436.7698277395,311453.700469413,436.08894,212.35102898531343,451717.6057148236,218925.4167593525,2929.14828,1360.4020738927145,3028577.381263662,1387818.2572012788,984.20748,442.16491964713583,1015948.2695505748,449023.3756023216,1526.42484,651.6724061007051,1568473.0836410036,657635.7141302441,0.3804,100000,0,1009022,10553.409126564937,0,0.0,0,0.0,38788,405.0998316093337,0,0.0,39579,409.6599763625524,1233329,0,44276,0,0,8951,0,0,78,0.805346665132673,0,0.0,0,0.0,0,0.0,0.05294,0.1391692954784437,0.2952398942198715,0.01563,0.3519492293744333,0.6480507706255666,23.62785453292376,4.196881496419795,0.3209491850431448,0.2634228187919463,0.2049376797698945,0.2106903163950143,11.157399910157215,5.922540328577011,16.763355080750372,11756.521670482522,47.79530780505793,13.4209261282294,15.279185401846624,9.492016336985426,9.60317993799648,0.5838926174496645,0.7970882620564149,0.707244212098581,0.5883040935672514,0.1251422070534698,0.7485572959604286,0.9290322580645162,0.8520710059171598,0.7630331753554502,0.135678391959799,0.5163906725245015,0.7003154574132492,0.6583416583416584,0.531055900621118,0.1220588235294117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021889821233126,0.0044331727111336,0.0068550885068093,0.0089067837969741,0.011492029885385,0.0134635180447832,0.0157066459830176,0.0178106127954385,0.0198698534828517,0.0220309457936263,0.0241799745473952,0.0262424834249884,0.0281752486051347,0.0300343337904298,0.0321641051065939,0.0340942013989487,0.0361832899741918,0.0384283829959598,0.0404333708005495,0.042457110079783,0.0567548637318753,0.0706942625098244,0.0842944475956387,0.097512165321986,0.1097157824695556,0.1248027117207775,0.1364544584971835,0.1474453333333333,0.1584056683541865,0.1682048196654383,0.1808141165304053,0.1932039887275092,0.2036544995208641,0.2133288056873076,0.222407123728496,0.2318443500349414,0.2408650677509802,0.2504419696645534,0.2585889570552147,0.2651015563175943,0.27167014130183,0.2774745865929638,0.2830899335536367,0.2875863226549012,0.2911577028258887,0.2957520573466089,0.299736908043097,0.3033540467580095,0.3064965347496599,0.3095659057923209,0.3065844729191342,0.3037553456265555,0.3031765914624706,0.3009484488458374,0.2992041810191234,0.2958743654046119,0.2924183729939125,0.2929125592533665,0.2925339520917218,0.2938867278112844,0.29496187210762,0.2954576887360954,0.2961768770152003,0.296786727106268,0.2979239752030371,0.2996225432773656,0.301479374110953,0.3049776883916787,0.3100318861908266,0.3126857686363096,0.3173609220437426,0.3217800825484178,0.3257427616224058,0.3303854875283447,0.3325894932589493,0.3414176918570591,0.3409056489474481,0.3474525474525474,0.3523344191096634,0.3621722846441947,0.0,2.158967947002288,52.87106479653479,158.46619446281628,213.7685672958832,fqhc1_80Compliance_baseline,1 -100000,95718,46679,444.31559372322863,5216,53.27106709291878,4104,42.42671179924361,1531,15.681481017154558,77.34534288058313,79.71428709884839,63.32656324425341,65.07462911927884,77.15070994255032,79.52004468626522,63.25328220670366,65.00331918804827,0.1946329380328109,194.242412583165,0.0732810375497479,71.30993123057294,223.19704,156.29192174235538,233181.4287803757,163283.33025810358,449.76062,297.48682025400893,469430.7131365052,310346.2030126984,437.72938,212.9803373972101,454662.0593827702,220434.943203209,2873.8832,1343.5086405238474,2971876.06301845,1373207.3976987803,943.98483,432.2763227191589,974933.4190016506,440391.8634587271,1483.2291,632.512931590423,1521136.7349923735,637623.8018543808,0.37916,100000,0,1014532,10599.15585365344,0,0.0,0,0.0,38606,402.8604860109906,0,0.0,39754,412.6392110156919,1230399,0,44232,0,0,8890,0,0,82,0.85668317348879,0,0.0,1,0.0104473557742535,0,0.0,0.05216,0.1375672539297394,0.2935199386503067,0.01531,0.3545824094604582,0.6454175905395417,23.499006470498987,4.169348052216913,0.3114035087719298,0.2799707602339181,0.2100389863547758,0.1985867446393762,11.657263551478993,6.400240547837005,16.41068010716393,11680.40462572321,47.1159123615622,14.072042392486956,14.490273628222376,9.56086196879447,8.992734372058395,0.5969785575048733,0.8198433420365535,0.6987480438184663,0.58584686774942,0.1349693251533742,0.7649958915365653,0.9232409381663113,0.8885542168674698,0.7555555555555555,0.1727748691099476,0.5261517145826117,0.7485294117647059,0.6321353065539113,0.5259026687598116,0.1233974358974359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0047128696815519,0.0070512560366868,0.0091509242331911,0.0112062478390856,0.0133782669340962,0.0154735329194825,0.0176495207374212,0.019861795432707,0.0221924230481825,0.0241939617612384,0.0262582281600755,0.0286460744077925,0.0307413359706597,0.032765737874097,0.0347123157394198,0.0366001429207618,0.0386583226958082,0.0407794044252204,0.0426010837849103,0.0576372788604131,0.0713022365019727,0.0852115336187358,0.0980451982156384,0.1103900900045371,0.1252023916609344,0.136173510552465,0.1472712167689161,0.1579155489531789,0.1683631332253601,0.1808749057213662,0.1930248170124301,0.2040827430113494,0.2128453824933222,0.2217535899920711,0.2307769045745258,0.2397794618243507,0.248129605670248,0.2552686829711172,0.261831134322888,0.2681719335585064,0.2743573858256671,0.2796095829636202,0.284494322809371,0.2890116561437591,0.2932916163681604,0.2970806023915545,0.3005055637416798,0.3040112870031194,0.3074324770085369,0.3049948153036077,0.3030861734476258,0.3007149807505183,0.2975598473459003,0.2960117685518143,0.291906452797845,0.2886459501729885,0.289729570455736,0.2894647350880772,0.2908735448324891,0.291760627690702,0.2924570956771314,0.293874914032053,0.2947232373651841,0.2957445787756668,0.2962251414922893,0.2977370963640987,0.3032585353708257,0.3089569358034131,0.3114805520702635,0.3118454315637414,0.3142661684997105,0.3162680617837568,0.3166314518563236,0.3213487332339791,0.3255841258659152,0.3292498487598306,0.33486881634288,0.3382233088834556,0.3385857033051498,0.0,1.6923099947266866,53.66249034332788,153.42194095600345,209.8656702305909,fqhc1_80Compliance_baseline,2 -100000,95672,46773,445.1772723471863,5235,53.50572790367088,4160,43.00108704741199,1542,15.835354126599215,77.2498286400838,79.64975330629014,63.26585613190741,65.03964896919531,77.05479587681623,79.45505849419078,63.19239427748849,64.96840027920632,0.1950327632675765,194.6948120993568,0.0734618544189231,71.24868998899103,223.04458,156.35801462233937,233134.64754578145,163431.32224928858,454.89566,301.0169273733749,474994.48114390834,314154.5983917708,439.35535,214.04806941932665,456570.15636758925,221680.34239453252,2900.98093,1342.88134809421,2999990.749644619,1371742.3498046985,944.69277,425.4541061016226,977939.4075591604,435268.4840732643,1491.27044,632.289920560418,1532616.2095492934,638147.3940060828,0.37955,100000,0,1013839,10597.029433899155,0,0.0,0,0.0,39060,407.76820804415087,0,0.0,39937,414.7294924324776,1221236,0,43833,0,0,8699,0,0,72,0.7525712852245171,0,0.0,1,0.0104523789614516,0,0.0,0.05235,0.1379264918983006,0.2945558739255014,0.01542,0.3571689164538489,0.642831083546151,23.74572922847662,4.128296110242811,0.3112980769230769,0.2769230769230769,0.2161057692307692,0.1956730769230769,11.445577817254613,6.214418816446765,16.536116987030702,11697.218664887476,47.575151209659325,14.129793979305989,14.617977012081136,9.98128612248858,8.846094095783624,0.5841346153846154,0.7977430555555556,0.6996138996138996,0.575083426028921,0.1081081081081081,0.7628781684382666,0.9278131634819532,0.8728323699421965,0.7148936170212766,0.1520467836257309,0.5097037793667007,0.7077826725403817,0.6364594309799789,0.5256024096385542,0.0964230171073094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413468941205,0.0047359720912308,0.0070847839546898,0.0093375330217435,0.0116874001891955,0.0138308923879168,0.015937920626504,0.0182263746362383,0.020464307629372,0.0224905521246197,0.0245453519739878,0.0265844889573703,0.0287698718938107,0.0308180703146741,0.0328835293267394,0.0349884681814891,0.0366613128853427,0.0387562292358804,0.0407931834496821,0.0426767597777013,0.0573410791156434,0.0714083754830197,0.0844116998835049,0.0981733237930889,0.1101941747572815,0.1262130784942481,0.1378768410657208,0.1489055606470726,0.1599131383581866,0.1701759663107234,0.1822399654725938,0.1936452854741636,0.2034870408129886,0.2128999001963171,0.2216863480852003,0.2312572215803039,0.2405117127603613,0.2486437714994643,0.2566652632537181,0.2627788370971077,0.268928927999257,0.2748611486208799,0.2802808868610537,0.2841887536678051,0.2887719426476142,0.2928155627788558,0.2955084522420089,0.2987909969487674,0.3022011557691059,0.3063274055255636,0.3036615991143034,0.3013747742033342,0.2985426610557234,0.2965393362594701,0.2954697711810156,0.2924456022065584,0.2887967199100825,0.2890772592118016,0.2909059829059829,0.2911170688114388,0.2915549723497985,0.2927229258461599,0.2936871379879974,0.2944884001609226,0.2965054797154393,0.296572125489789,0.2982396558555499,0.3026770966435005,0.3057592714886518,0.3097205824478551,0.3128406071251632,0.316533948030176,0.3198332711210651,0.3260591466626533,0.3324997684542002,0.3401725343903007,0.3426372963186481,0.3460841554258103,0.3545405111473627,0.3626497005988024,0.0,1.853292666863197,53.90951561219157,149.55433323049823,220.01172945565256,fqhc1_80Compliance_baseline,3 -100000,95739,47079,448.80351789761744,5250,53.6354045895612,4195,43.159005212087024,1631,16.63898724657663,77.32698317968122,79.68659786365474,63.31555014592704,65.06105752002132,77.11076046187891,79.47394726692784,63.23424863577144,64.9838226462102,0.2162227178023101,212.65059672690256,0.0813015101556047,77.23487381112193,221.79036,155.38110749006887,231660.7652054022,162296.00047050032,450.59501,297.80680437451383,469950.0621481319,310367.2361573725,439.19743,213.99577836452517,454450.7254097077,220200.63682895503,2985.09279,1389.9563148196628,3075014.35151819,1409289.3024554604,959.47901,432.5813622858987,988318.9504799506,438051.0606609345,1587.43534,679.3189276256705,1621282.6956621648,678209.0444349261,0.38166,100000,0,1008138,10530.034782063736,0,0.0,0,0.0,38646,402.9287959974514,0,0.0,39845,411.8593258755575,1236431,0,44362,0,0,8773,0,0,77,0.804269942238795,0,0.0,2,0.0208901283698388,0,0.0,0.0525,0.137556987894985,0.3106666666666666,0.01631,0.3530269876002918,0.6469730123997083,23.64114426696925,4.19208680290259,0.3125148986889153,0.2703218116805721,0.2042908224076281,0.2128724672228844,11.356709113080916,6.11166428732719,17.515317838965956,11698.535380991138,48.11241417734895,13.848685410041124,14.92502623180058,9.634008987761666,9.70469354774557,0.5685339690107271,0.7936507936507936,0.6895499618611747,0.5682613768961493,0.1052631578947368,0.7459546925566343,0.90561797752809,0.8937329700272479,0.6965811965811965,0.1473684210526315,0.4944237918215613,0.7213352685050798,0.6101694915254238,0.5200642054574639,0.0938833570412517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020363710045083,0.004258684674819,0.0065261961309705,0.0087268368010403,0.0110856852275616,0.0133190774400488,0.0155300403801443,0.0175572908691879,0.0197767829766358,0.0218425981842188,0.0239010341399419,0.025868971605724,0.0279496720873337,0.030150132833577,0.032442748091603,0.0345536646103929,0.0364526715739561,0.0382648562863692,0.0400357536325274,0.0420460464631732,0.0562584820962522,0.0706491604331223,0.0838636625743072,0.0961261498028909,0.1087710421739451,0.1240193694360449,0.136019429832004,0.1466824240875601,0.1574761909851748,0.1672283880385548,0.1795684321714199,0.1912709156874424,0.2025265494428969,0.2110198142211621,0.2203936505140794,0.2299899132092621,0.2396273208660098,0.2479979275311715,0.2552195742554013,0.2626433949506641,0.2690726782220061,0.2753164927566782,0.280984488499686,0.2853148363714913,0.2899847978108847,0.294571826781948,0.2988901693556469,0.3033860965018401,0.3069804816091656,0.3100790539916326,0.3078217328685071,0.3047072741278749,0.3016159000056303,0.2991360379103097,0.2970427911536233,0.29347792788653,0.2911554718295366,0.2918300063969032,0.2928577523679495,0.2942150231399074,0.2953972080506811,0.2960312296681848,0.2978549583141313,0.2987282463186078,0.2995873716533921,0.300998907444982,0.3015656522603926,0.3055198570667335,0.3104858441104509,0.313930544593528,0.3200560629351659,0.3216845878136201,0.3233293816684345,0.326827430293896,0.3280014879568492,0.3293813827914074,0.3295953932414002,0.3319959879638917,0.3345293955285675,0.3373122834039276,0.0,2.4527102836719505,53.73351100245398,155.94761810672793,216.5980367315444,fqhc1_80Compliance_baseline,4 -100000,95755,47150,448.7702992010861,5295,54.05461855777767,4174,42.94292726228396,1596,16.27069082554436,77.39144353273707,79.7290499298931,63.36142006586866,65.08652848611462,77.19273131414508,79.53462183386243,63.28775169519575,65.01718303117877,0.1987122185919929,194.4280960306628,0.0736683706729124,69.3454549358421,222.41824,155.76498877513384,232278.4606547961,162670.34491685432,454.36395,300.6473694473597,473856.5401284528,313325.413239371,442.00651,215.5991270817904,457082.5648791186,221709.9993663776,2948.51364,1347.5885889874935,3037912.4849877288,1366015.402837965,961.38315,425.1759513514418,989453.0520599446,429474.7755745833,1557.38204,646.7305869985333,1589730.9801054776,643537.7789502017,0.38217,100000,0,1010992,10558.111847945278,0,0.0,0,0.0,38958,406.1720014620647,0,0.0,40043,413.774737611613,1234804,0,44285,0,0,8796,0,0,94,0.9816719753537676,0,0.0,0,0.0,0,0.0,0.05295,0.1385509066645733,0.3014164305949008,0.01596,0.3355668236146323,0.6644331763853676,23.912576403571048,4.13442990636455,0.3078581696214662,0.2700047915668424,0.2089123143267848,0.2132247244849065,11.473627959413433,6.272204864939509,16.830463449977284,11764.834000256971,47.36805928179615,13.897109177946016,14.332034478866936,9.543017894407614,9.59589773057559,0.5778629611883086,0.8163265306122449,0.688715953307393,0.5802752293577982,0.1134831460674157,0.7715481171548118,0.9498956158663884,0.8724637681159421,0.7253886010362695,0.146067415730337,0.5001678415575697,0.7175925925925926,0.6212765957446809,0.5390279823269514,0.1053370786516853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020654462983962,0.0044083221014015,0.0066557090968121,0.0090187993215587,0.0110624192941607,0.0132827131341096,0.0155186468310576,0.0179260105699185,0.0206151865888915,0.0226323974789228,0.0248360655737704,0.0268592709626453,0.0289251952322235,0.0311544755611819,0.0331835144217883,0.0349354902021548,0.0368231495280675,0.0386944888096077,0.0406107727168783,0.0426879446660902,0.0575857209957726,0.070900168461144,0.0843046128345275,0.097259323139053,0.1093232670448554,0.1245175276265002,0.1361958896265032,0.1469133307092477,0.1579138457595626,0.167315133391213,0.1807202979355477,0.1922918874494452,0.2028232686017322,0.2127494565751674,0.221529838443785,0.2316695429001283,0.2413139889906621,0.24934869514441,0.257002674160359,0.2639530628116565,0.2692392120616949,0.2753017044989894,0.2820682562386958,0.286711444751745,0.2907810018066957,0.2953441171043729,0.2995190205509401,0.3026478028194079,0.3074903654656907,0.3112524358771791,0.3086282145974618,0.3067804516642428,0.3046176309545537,0.3021542358003194,0.3003743212652947,0.2984601794172746,0.2957795275590551,0.2957836143712966,0.2959911669780873,0.2972055923682293,0.2981031328180426,0.2990466435549953,0.3004407494830071,0.3003681802967756,0.3013257757709674,0.3018445768400239,0.3015769470758409,0.305909290508751,0.309154016057217,0.3104281357677532,0.3118969597669762,0.3151376634421176,0.3159319899244333,0.3223529411764705,0.3247504431383524,0.3286566117151877,0.3333333333333333,0.3361880103565027,0.3365695792880259,0.3343373493975903,0.0,2.561805559630065,51.61512425165361,149.95019728490576,223.34106399008527,fqhc1_80Compliance_baseline,5 -100000,95728,47032,448.04028079558753,5193,53.06702323249206,4153,42.79834531171653,1624,16.59911415677754,77.37264048070351,79.73064287038841,63.34029949113111,65.08124222796238,77.16534253606186,79.525637732993,63.26234002101948,65.00646704546831,0.2072979446416525,205.00513739540335,0.0779594701116366,74.775182494065,221.63152,155.29559285959698,231521.45662711016,162225.2903224259,452.10221,299.5171720236441,471677.952114324,312286.0453034585,438.8935,214.35699947312168,454239.35525656026,220737.10422368892,2957.6478,1371.060091158562,3050956.7733578472,1393835.3993313026,982.13211,445.21476603255087,1012286.9379909744,451548.1422283438,1586.72286,671.3923142704657,1624096.586160789,674954.8381132103,0.38105,100000,0,1007416,10523.702573959552,0,0.0,0,0.0,38775,404.4480193882668,0,0.0,39726,410.80979441751634,1236306,0,44333,0,0,8802,0,0,95,0.9923951195052648,0,0.0,0,0.0,0,0.0,0.05193,0.1362813279097231,0.3127286732139418,0.01624,0.3507545086492455,0.6492454913507545,23.76877918969357,4.233687925941334,0.3144714664098242,0.2614977124969901,0.2053936913074885,0.218637129785697,11.339879667649504,5.9874041748035385,17.39569740875477,11726.573663172428,47.3373021749396,13.189330218708369,14.856087712753618,9.515952202949736,9.775932040527868,0.5742836503732242,0.7909760589318601,0.722052067381317,0.5685814771395076,0.1079295154185022,0.7570247933884298,0.9227053140096618,0.8697916666666666,0.755656108597285,0.1727748691099476,0.4991505266734624,0.7098214285714286,0.6605206073752712,0.5031645569620253,0.0906555090655509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021367088607594,0.0043172904441944,0.0064720979538837,0.0088966525836854,0.0112660016878666,0.0132133477207484,0.015707820272364,0.0179233054004674,0.0199736274519825,0.0224383253147712,0.0244732660070743,0.0266010964867251,0.0286674961183716,0.0307209062821833,0.0327868852459016,0.0349022282855843,0.036888640410817,0.0387403926937797,0.0405250904253107,0.0424226643058014,0.0568654067035606,0.0714450141257716,0.0846439355812783,0.097669921279704,0.1094585050649857,0.1252603203129129,0.1365574292077633,0.1476547203541329,0.157963864684777,0.1672707386119928,0.1797497523366498,0.1912741513230489,0.2028077730292848,0.2127499015704974,0.2216843078141848,0.2313538666075781,0.2396079832120373,0.2482829283671493,0.2564154994376853,0.2628428584533529,0.2689903456578612,0.2751167335666054,0.2815946922575676,0.2867427378424103,0.2918550936056406,0.2964424440471052,0.3003004130679684,0.303630698798245,0.3078854066923734,0.3107871182061456,0.3086936058629732,0.3062590175197526,0.3032779966235228,0.3008385895529928,0.2982378004424056,0.2945217005522664,0.2918878776387308,0.2917055902453415,0.2915588395532552,0.2916822147591378,0.2923635686347551,0.2930628118002907,0.2937522149721695,0.2953237809619016,0.2956700341525161,0.2970709133683203,0.2970341733216694,0.3005284426484302,0.3055728841755042,0.3099890573706425,0.3132681438952184,0.315565815014952,0.3209714678154461,0.3262880782248966,0.3288827074640704,0.3310288258729786,0.3315168029064487,0.3370786516853932,0.3301552710433124,0.3305439330543933,0.0,2.185193624961421,52.59721593665255,154.83572312191302,213.43366626061885,fqhc1_80Compliance_baseline,6 -100000,95740,46932,446.2502611238772,5253,53.603509504909134,4181,43.074994777522456,1599,16.33590975558805,77.33281654085012,79.69837417192096,63.319784280511655,65.07076196778877,77.12881347534413,79.49846871826554,63.24333112548852,64.9986223328293,0.2040030655059865,199.90545365541837,0.0764531550231382,72.13963495946984,222.77838,155.9885649798027,232691.01733862545,162929.35552517517,450.76196,297.9713158363379,470215.4689784834,310626.3273828472,434.14693,211.0901560619787,449761.207436808,217645.2304115728,2959.21761,1362.0821705902454,3052516.1270106537,1384315.3338105772,946.08614,420.4519088654595,973928.452057656,424905.8584347809,1547.19876,653.2351642544348,1582530.1650302904,653073.9290724574,0.3803,100000,0,1012629,10576.864424482976,0,0.0,0,0.0,38757,404.188426989764,0,0.0,39418,408.01128055149366,1233542,0,44315,0,0,8846,0,0,71,0.7415918111552121,0,0.0,0,0.0,0,0.0,0.05253,0.1381277938469629,0.3043974871501999,0.01599,0.3661689730517116,0.6338310269482884,23.65589757318176,4.22400322110482,0.3099736905046639,0.2685960296579766,0.2217172925137527,0.1997129873236068,11.473012524525052,6.1724780363473135,17.116004737775423,11742.615159501864,47.69018266433847,13.71427841431111,14.607808175832592,10.237128981946622,9.130967092248138,0.5819182013872279,0.7996438112199465,0.7013888888888888,0.5782092772384034,0.1077844311377245,0.7441077441077442,0.9157427937915744,0.8067226890756303,0.726457399103139,0.1337579617834395,0.5175409288339459,0.7217261904761905,0.6613418530351438,0.53125,0.1017699115044247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021380295676316,0.0043917925207671,0.0065387348969438,0.0089041583232534,0.0109571480893663,0.0132211538461538,0.0153684554039446,0.0175193212794413,0.0198259731495588,0.0219127585500716,0.0244112490644575,0.0262560711388583,0.02850239062259,0.030659430066221,0.0325832378947802,0.0348028321877099,0.0368068932662234,0.0387509210348799,0.0408347891190416,0.0430058237052934,0.0573895431387288,0.0716804252069012,0.0849220830973804,0.097365322343244,0.1091727452881899,0.1240641258829998,0.1361601934539592,0.1474354198375783,0.1577036048064085,0.166965157055991,0.1784902938231462,0.1902742467679991,0.20142875782881,0.2116206613828915,0.2202010426060752,0.2303502031687684,0.2400888184688856,0.2488549274693615,0.2571642587191156,0.2636279325387284,0.2701930198111461,0.2761457796919619,0.2813584208594333,0.2864539636119567,0.2913386783284742,0.29644468551986,0.2997058639464297,0.3030595895114321,0.3064463922731333,0.3103844174353696,0.308909051747348,0.3056621947024424,0.3034768398512341,0.3013967731218673,0.2997651465604376,0.296407368872024,0.2934619337497035,0.2935420422881495,0.2944445391473331,0.2948820649755229,0.2951003475725978,0.2962312895655432,0.2972025052192066,0.2980026275356833,0.3001701699302543,0.3027885340055615,0.3053014375816807,0.3079961132181926,0.3120473074635221,0.3164767331433998,0.3184167573449401,0.3238967086464176,0.3241923365890308,0.3317227842367507,0.3317209302325581,0.3368458025992272,0.3404063205417607,0.344896331738437,0.3503253796095444,0.3544494720965309,0.0,2.3202166358055645,51.55821245839218,154.73134125883675,222.6180301352829,fqhc1_80Compliance_baseline,7 -100000,95789,46753,444.0175803067158,5365,54.94367829291463,4275,44.15955903078642,1625,16.66162085416906,77.34910350822409,79.67618129971504,63.34642956891118,65.06606228677312,77.1424476161475,79.47149768339591,63.26887966705464,64.99157542848418,0.2066558920765828,204.68361631913007,0.0775499018565355,74.48685828893531,221.62118,155.2613366634069,231363.6847654741,162086.58265918525,448.72771,296.942883644976,467982.6076063014,309526.1097938996,441.08309,215.19538894352664,457434.7158859577,222443.26331689916,2981.96662,1385.815486360198,3082740.168495339,1416540.71412478,987.65035,443.74919382326,1021012.74676633,453333.35272023454,1576.6114,662.2473611091534,1618241.8649322991,667413.5776812059,0.38043,100000,0,1007369,10516.531125703368,0,0.0,0,0.0,38483,401.2360500683794,0,0.0,40068,415.2355698462245,1240449,0,44530,0,0,8812,0,0,92,0.9604443098894444,0,0.0,1,0.0104396120640157,0,0.0,0.05365,0.1410246300239203,0.3028890959925442,0.01625,0.3443968593861527,0.6556031406138473,23.594674308888827,4.024602098540769,0.312046783625731,0.28,0.2053801169590643,0.2025730994152046,11.51525145331815,6.3398904038538815,17.240319743668824,11771.905933901342,49.17334061308168,14.796490155954398,15.226526257488114,9.699075186913298,9.45124901272586,0.5805847953216374,0.7936507936507936,0.6941529235382309,0.5785876993166287,0.1131639722863741,0.7606299212598425,0.905587668593449,0.8620689655172413,0.7668393782383419,0.1270718232044199,0.5044925124792013,0.7079646017699115,0.6280041797283177,0.5255474452554745,0.1094890510948905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0046118448392949,0.0066246664840571,0.0088368833226681,0.0113271240899662,0.0136202614112952,0.0156750035671334,0.0179621162638798,0.0203743818204111,0.0228870177305327,0.0247822968958098,0.0265059004617752,0.0285082986485792,0.0307138078328444,0.0328899886586246,0.0350252024458767,0.0369826158940397,0.0391742101388413,0.0411679135494596,0.0432043485504831,0.058105922254109,0.0717565235580191,0.0851463141008838,0.0984908991550716,0.1107903055848261,0.1261464981613762,0.1376441410886891,0.1491323210412147,0.1594229189119972,0.1695196674950724,0.1813329315669963,0.192863707628264,0.2039136815785182,0.2135679216192277,0.2224654821497332,0.2320853127803063,0.2406820515109583,0.2483305227655986,0.2554936639931024,0.2627657017272758,0.2698183247950227,0.2764028911604407,0.281941765951657,0.2861283792686286,0.2904811613905613,0.2955601286490616,0.3000125125125125,0.303953378885623,0.3067735792841691,0.3106102616916211,0.3082259129052679,0.3063190783587739,0.3045020694315398,0.3016686393949017,0.3001957701776763,0.29701230228471,0.293772997899591,0.2931960315641269,0.2935539328328992,0.2946213969056563,0.2949821658667762,0.2955868137071159,0.2966925053801634,0.2977973175031801,0.3001033181960162,0.2996222482740654,0.3007497363094729,0.3041670603798544,0.3064521794106283,0.3096222664015904,0.3149979492321013,0.3196686491079014,0.323788406715236,0.3263502704349813,0.3283271937281571,0.334609403038641,0.3321483771251932,0.3331976389171585,0.3341611479028697,0.3290246768507638,0.0,1.736849201554434,56.01010705410466,159.9508941215742,219.3917038416324,fqhc1_80Compliance_baseline,8 -100000,95669,47324,450.3862275136146,5369,54.91852115105207,4305,44.43445630245952,1610,16.494371217426753,77.31532774038504,79.70922762310425,63.31028192710126,65.07729913159267,77.11506906158598,79.51011397449426,63.2347902230078,65.00436894476982,0.2002586787990594,199.1136486099947,0.0754917040934586,72.93018682284469,221.8502,155.42849039490406,231892.8179452069,162464.15975384304,453.9244,299.713717712247,473899.319528792,312707.70188069995,448.82831,218.6226340827844,465726.1913472494,225799.06279434872,3039.83859,1413.677453208917,3139753.8701146664,1440011.037963096,1000.44017,454.366221184815,1029424.2021971592,458630.514361825,1565.8793,669.8673667966083,1605626.44116694,674212.086265282,0.38445,100000,0,1008410,10540.582633873042,0,0.0,0,0.0,38952,406.5580282014028,0,0.0,40716,422.2266355872853,1233394,0,44320,0,0,8863,0,0,84,0.8675746584578077,0,0.0,1,0.0104527067284073,0,0.0,0.05369,0.1396540512420341,0.2998696219035202,0.0161,0.3643327988597897,0.6356672011402102,23.23850939539236,4.074767909174669,0.316144018583043,0.2655052264808362,0.210917537746806,0.2074332171893147,11.447818853980078,6.278941149410805,17.245332292087703,11889.318877682328,49.26986200118205,13.969176517128393,15.39888848395618,10.13541911877765,9.766377881319825,0.5802555168408827,0.8162729658792651,0.7016899338721528,0.5616740088105727,0.1119820828667413,0.7541371158392435,0.9221556886227544,0.8535911602209945,0.7194570135746606,0.1459459459459459,0.5075757575757576,0.7336448598130841,0.6466466466466466,0.5109170305676856,0.1031073446327683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.0049372452807234,0.0069414845034402,0.009164245219759,0.011444091796875,0.013842627960275,0.0161663759778872,0.0185079261317208,0.0206577763233248,0.0230202861151219,0.0249423106507358,0.0272113735117977,0.0292989043773468,0.0314174429148462,0.0333921696136417,0.0355366174021863,0.0372899268499906,0.0393154054530924,0.0413676173833447,0.0434293218272207,0.0584338922843859,0.0718458800125641,0.085515475278387,0.0986363062418451,0.1108390759716755,0.1266684308017994,0.1387983479673415,0.1503839476851309,0.1613765095650315,0.1713690853089215,0.1837247146813807,0.1946035492707645,0.2052356590834875,0.2145975816600098,0.2240382391488705,0.2341966613055293,0.2429353289400201,0.2511844607749355,0.2594598276625455,0.2659797595443032,0.2723209115964518,0.2789957277462398,0.2850563553703353,0.2900741380551356,0.2951715760704524,0.2998373663200434,0.3036916531097485,0.3074428718574753,0.3103635587630466,0.3145935538323574,0.3119988159948334,0.3097962102252413,0.3076620162016201,0.3044476534296029,0.3030383953474571,0.2994113599877685,0.295304133562888,0.294358135731807,0.2948689565913387,0.2957967042744777,0.2959668848240756,0.2980033441526507,0.2985657320612121,0.2986275121429526,0.2996740328843296,0.3021522963886076,0.3029328933519187,0.3076511671805197,0.31259878472832,0.3145888804991456,0.3179085443614501,0.3206947680576149,0.3242256358599849,0.3282349342306516,0.3307539869774464,0.3339262421439583,0.3333333333333333,0.3358386075949367,0.3429504627109417,0.3445945945945945,0.0,2.112878616345073,55.43673764509152,158.567358443715,223.4813224313,fqhc1_80Compliance_baseline,9 -100000,95618,46893,444.3201070928069,5200,53.08623899265829,4100,42.18870923884624,1627,16.5972933966408,77.3146043072854,79.73367470664057,63.296484254502126,65.08290848836288,77.10380636126594,79.52780122817539,63.21562829420191,65.00682283675378,0.2107979460194684,205.873478465179,0.0808559603002123,76.08565160909109,221.04236,154.881778843532,231172.3315693698,161979.7306401849,450.56022,298.4418408506872,470544.40586500446,311454.7165289873,438.90235,213.7426119863133,454820.3580915727,220295.9669943947,2902.7443,1350.762104029844,2990639.910895438,1367533.1778847547,945.08822,425.13013951671377,970971.0723922274,427192.9630774676,1584.07658,680.1310968427404,1617771.486540191,677740.8714748537,0.38008,100000,0,1004738,10507.833253153172,0,0.0,0,0.0,38696,403.9825137526407,0,0.0,39714,411.0836871718714,1236809,0,44331,0,0,8621,0,0,77,0.805287707335439,0,0.0,1,0.0104582819134472,0,0.0,0.052,0.1368133024626394,0.3128846153846153,0.01627,0.3488073394495413,0.6511926605504588,23.823475840075425,4.095795571309319,0.3070731707317073,0.2680487804878049,0.2160975609756097,0.208780487804878,11.22321581816964,5.971138378674939,17.432946442897602,11742.59837021938,47.00842272152988,13.302204654950764,14.376524603265402,9.901413479131872,9.42827998418184,0.5685365853658536,0.7679708826205641,0.7084988085782367,0.5790067720090294,0.0957943925233644,0.7274261603375527,0.8995433789954338,0.8484848484848485,0.7368421052631579,0.1058201058201058,0.5039451114922813,0.680786686838124,0.658772874058127,0.5243161094224924,0.0929535232383808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020366186051695,0.0044315542890752,0.0066492061558452,0.0089417263628511,0.0111185709635416,0.0136382155225096,0.0157587131914199,0.0177954847277556,0.0199241083756942,0.0224575273166685,0.0249333333333333,0.0273240883410374,0.0295358215711287,0.0320031323091506,0.0343012273295002,0.0366027669210248,0.0389903741542414,0.0409061649951203,0.0430353668307199,0.0450577302168403,0.0600508001547,0.073948752330868,0.0872135761241677,0.100102112787258,0.1123168517502005,0.1282616062351745,0.1395351307710285,0.1497452731652207,0.1601245306030747,0.1690284596955274,0.1806558119962451,0.1921930385578476,0.2035416553152073,0.2132925746967754,0.2226411350332374,0.2316221765913757,0.2405414165800445,0.2476421206828553,0.2555589642203815,0.2620773500940496,0.2685926011694552,0.2745352659717591,0.2795795653614886,0.2842621339438764,0.289335972122728,0.2938227505080988,0.2973466376572386,0.3003888775925172,0.3041825095057034,0.3075634905983808,0.306092244766159,0.3032860107472204,0.3011982033988989,0.2984554924652883,0.2962373823717424,0.2940176177709689,0.2911901669464947,0.2914303562328418,0.2914112530392794,0.292381054436348,0.2928242904685338,0.2930023994021162,0.2936987214193494,0.2946488145545127,0.2965145406398358,0.2968600841094971,0.2968428180458765,0.299624188588999,0.3028000416363068,0.3059950531977543,0.3104766187050359,0.3153361344537815,0.3192276346310576,0.3234472869972077,0.3264716840536513,0.3306451612903225,0.3315351418002466,0.3344162436548223,0.3447145588636984,0.3453846153846154,0.0,2.693291215511583,51.16936723731735,157.2893447600188,209.21239972485225,fqhc1_80Compliance_baseline,10 -100000,95642,47154,448.4117856171975,5277,53.93028167541457,4174,43.02503084418979,1604,16.34219276050271,77.29129418892526,79.69235333295663,63.29829466637945,65.07023909069275,77.08619995572008,79.49049391285578,63.220589924627646,64.99671687381725,0.2050942332051875,201.85942010084543,0.0777047417518019,73.52221687550298,222.58434,155.98633320860765,232726.56364358755,163093.9683492688,452.84077,299.5027638537407,472873.20424081467,312548.2359776465,444.70183,216.9148090137363,461084.56535831536,223803.45081237124,2933.17678,1375.034059491799,3025203.289349867,1396062.6184017477,968.72549,441.3228310220585,996545.4402877396,445206.1729773906,1560.21012,664.3038360208888,1591271.4706927915,660464.3153831067,0.38157,100000,0,1011747,10578.480165617617,0,0.0,0,0.0,38842,405.4704000334581,0,0.0,40267,417.2016478116309,1229910,0,44093,0,0,8815,0,0,91,0.9410091800673344,0,0.0,1,0.0104556575563037,0,0.0,0.05277,0.1382970359304977,0.3039605836649611,0.01604,0.350173262812329,0.649826737187671,23.38379566647937,4.155269738841316,0.3164829899377096,0.2676090081456636,0.2093914710110206,0.2065165309056061,11.514160190496566,6.257837062264307,17.100853316202738,11814.720548038951,47.93941578227136,13.705704880245312,14.934344154123831,9.940072051058296,9.359294696843929,0.5831336847149018,0.7949865711727843,0.6949280847842544,0.6006864988558352,0.1194895591647331,0.7540453074433657,0.9372294372294372,0.8480662983425414,0.7098214285714286,0.175531914893617,0.5112321307011573,0.6946564885496184,0.6371220020855057,0.563076923076923,0.1038575667655786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021879399937198,0.0043800060833417,0.0063639962242319,0.0084645869322223,0.0107438268778805,0.0131384631053623,0.0154577156025042,0.017961075826577,0.0203359677732677,0.0227102851584498,0.0248382233799263,0.0267552688878846,0.0289288506645817,0.0310271629363999,0.0331495705318797,0.0354874744006123,0.037558296196497,0.0396747933712671,0.0416723027458978,0.0437565812108385,0.0583888970173275,0.0727798378480296,0.0860626043493326,0.0985368421052631,0.111079446502644,0.1266247512595791,0.1386895409571531,0.1495163833141591,0.1598473266119979,0.1689337899788497,0.1812349725597593,0.1921885828135828,0.2028059558535417,0.212658338716211,0.2220103814236436,0.2315738101312155,0.2413712191470105,0.2500591089744311,0.2577400347407499,0.2653627124081903,0.2716539534453023,0.2779727642847115,0.2846147470130608,0.2889416504784516,0.2933223092262049,0.298013816925734,0.3009908183332707,0.3053206662931078,0.3093590441386102,0.3123540663544621,0.3101224929331,0.3072116707954858,0.3048067302678861,0.3017354738956403,0.2995095853767276,0.2962474707216874,0.2919918319535244,0.2919233233134578,0.2929481152235234,0.2941418110376853,0.294519906323185,0.2970171690798323,0.2983441626493398,0.299392233096483,0.300992282249173,0.3015683423348567,0.3029719784885366,0.3066983699903013,0.3086048220596983,0.3130985358132172,0.316844253003854,0.32058652882536,0.3257566243877935,0.3308694658233636,0.3345584770521157,0.3373063170441001,0.3345679012345679,0.3331276989512646,0.3319444444444444,0.337657382678367,0.0,2.3581363637496717,53.58629400746295,157.71248901064675,212.74604918489908,fqhc1_80Compliance_baseline,11 -100000,95629,46863,446.1303579458114,5330,54.366353302868376,4244,43.7733323573393,1668,17.086866954584906,77.27514686010801,79.68740095262461,63.27600815666828,65.05701984556816,77.05926336274844,79.47344504563925,63.1940112814703,64.97806430196087,0.2158834973595702,213.95590698536185,0.08199687519798,78.95554360729307,221.848,155.42694020490077,231988.2044149787,162531.17799506505,451.13867,298.31704341370545,471149.9963400224,311343.21535695804,439.68935,214.14359053004043,455966.6942036412,221019.94507210125,2997.71715,1407.0154441568104,3094877.8717752984,1431468.544224881,953.06546,439.70790005879263,980073.053153332,443251.0013267857,1616.89464,695.3287917653029,1657711.9911323972,698270.9814962026,0.38101,100000,0,1008400,10544.918382499032,0,0.0,0,0.0,38697,404.0301582156041,0,0.0,39901,413.4310721643016,1231999,0,44220,0,0,8870,0,0,77,0.8051950768072447,0,0.0,1,0.0104570789195746,0,0.0,0.0533,0.139891341434608,0.3129455909943714,0.01668,0.3347624151482672,0.6652375848517328,24.00166817157262,4.026458213707635,0.3211592836946277,0.2591894439208294,0.2174835061262959,0.2021677662582469,11.23308417126412,6.1707641283749695,17.915598122533094,11759.613533326346,48.84849744399198,13.568329359680623,15.534405559350317,10.254843385896754,9.490919139064282,0.5739868049010367,0.8063636363636364,0.6852531181217901,0.5666305525460456,0.1072261072261072,0.734108527131783,0.9326315789473684,0.8469387755102041,0.6698113207547169,0.1421800947867298,0.504062288422478,0.7104,0.619979402677652,0.5358649789029536,0.0958268933539412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0047231484953832,0.0070823398102582,0.0094667343829355,0.0116762782371667,0.0138198631253055,0.0161418607496838,0.0184684178824105,0.0204471798227229,0.022618365006553,0.0243914947739837,0.0264428509790224,0.0285814231038314,0.0307574961089293,0.0328273440726972,0.0349461531299463,0.036910734275882,0.0390391326021934,0.041000666000666,0.043069735428768,0.0577248688308702,0.0724592122221872,0.0858991732585379,0.0983017635532331,0.1096663110416292,0.1259413029433259,0.1378504176319313,0.1502339910667647,0.1601258575113175,0.1700595455620284,0.1827152496626181,0.1929308923690946,0.2038547071905115,0.2139896032111601,0.2233921614074589,0.232938196442657,0.2417811209241411,0.2497827534449096,0.2565792469152665,0.2635629530077994,0.2702169625246548,0.276164563493925,0.2813819942100517,0.2851566253483232,0.2896366312664988,0.294094420177192,0.2980443775855584,0.3026972645305893,0.3062990593577684,0.3092666287663445,0.3064233300960397,0.3039380494391931,0.3022006682362229,0.3007718770778526,0.2987371861536176,0.2958177698854938,0.2929158760278305,0.2923541181487191,0.2927265297783226,0.2928834552346377,0.2934276253016781,0.2937788472918063,0.2955961691271799,0.2957906712172923,0.2970088032814411,0.2977313479379434,0.2982710160974363,0.3022730835554162,0.3074256905787207,0.311243072050673,0.3137823270981476,0.3155080213903743,0.3199524792096542,0.3220236748850185,0.3244710728328028,0.3284377590903707,0.3334348355663825,0.3360128617363344,0.3394320043691972,0.3465045592705167,0.0,2.398769438748246,56.39919586445659,155.74451983158255,215.7707653477852,fqhc1_80Compliance_baseline,12 -100000,95684,46945,447.16985075874754,5262,53.88570711926759,4200,43.30922620291794,1592,16.261861962292546,77.28391542799022,79.6802682982467,63.28504443165552,65.05920963314409,77.07962359432352,79.4783881506898,63.208386814207415,64.98589975655165,0.2042918336667014,201.8801475569063,0.0766576174481059,73.3098765924467,222.10672,155.6299549620522,232125.24560010032,162649.925757757,452.22261,299.3855542636123,472071.5898164793,312340.5420588733,443.22854,216.1840233148202,459047.0298064462,222831.83582871835,2959.31906,1374.973524392906,3055429.4343881942,1399619.1258652494,967.17963,437.8528891825176,996522.5220517536,443319.5405527752,1548.11298,659.447179664821,1582933.9701517494,659148.0135397693,0.38045,100000,0,1009576,10551.147527277288,0,0.0,0,0.0,38923,406.2016638100414,0,0.0,40212,416.1928849128381,1229202,0,44199,0,0,8712,0,0,65,0.668868358346223,0,0.0,1,0.0104510680991597,0,0.0,0.05262,0.1383098961755815,0.3025465602432535,0.01592,0.3422586520947177,0.6577413479052824,23.141404468395944,4.077518591496324,0.3145238095238095,0.2716666666666666,0.205,0.2088095238095238,11.22701074093024,6.074457479358998,17.07662276392452,11682.920153304489,48.1413308698119,13.915240053394257,15.08913453183188,9.557005786851384,9.57995049773438,0.5835714285714285,0.8019281332164768,0.7047691143073429,0.5830429732868757,0.1174458380843785,0.7586490939044481,0.9237472766884532,0.8594164456233422,0.7135678391959799,0.1731843575418994,0.5123911587407903,0.7199413489736071,0.6430084745762712,0.5438066465256798,0.1031518624641833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496503921687,0.0042904089581304,0.0063555235184827,0.0084653611243788,0.0108055309666982,0.0130796186129899,0.0151869039726656,0.0174960166687094,0.0198005625159805,0.0220553586428732,0.0243141760879824,0.026684065595331,0.0286475751432893,0.0306187649435237,0.0326912754448986,0.0346542844733086,0.0366183464754582,0.0386032655518533,0.040638651965883,0.0425112818000854,0.0573493925560697,0.071486154007224,0.0848935812938163,0.0979259399564352,0.1107980031451519,0.1256655340679347,0.1362087089478546,0.1472859135880041,0.157786162446423,0.1680511730740335,0.1803336997995214,0.1911457261392809,0.2022210125204137,0.2120541824990966,0.2206695907077208,0.2301792552305899,0.2386004136157844,0.2464699054509393,0.2537840909090909,0.2602566896440983,0.2665816622232526,0.2724331168374405,0.2782904725754412,0.2826063465763786,0.2877450920730742,0.292619420758419,0.2968303683287396,0.3004378149977091,0.3038591038591038,0.3077815726662535,0.306049103537393,0.3037435213571811,0.3017424444850718,0.2994491232118135,0.296943685398598,0.2937790840068577,0.2911814960131629,0.2917007961731267,0.2917633806663026,0.291756643406564,0.2930843784564048,0.2946463926506692,0.2961802854800395,0.297927693549834,0.2990627113730795,0.3007756391841424,0.3028563308227938,0.3086346075321167,0.3142707423580786,0.3190449925143803,0.3230518746325358,0.3252447626065902,0.3313675585076665,0.3369111508646392,0.3396052388858144,0.3419302135605088,0.3497811981288667,0.3527521092808356,0.3504698728579326,0.3426067073170731,0.0,2.31973987840251,52.687707700938255,158.16988521190632,219.1831394095884,fqhc1_80Compliance_baseline,13 -100000,95660,46915,446.916161404976,5333,54.48463307547564,4239,43.76960066903617,1624,16.579552582061467,77.35161970545354,79.75698730197688,63.31721993396855,65.0939611620878,77.14512106101442,79.55419427536714,63.23810795723074,65.01892114650087,0.2064986444391223,202.79302660974,0.0791119767378134,75.04001558692153,221.12464,154.89472037929613,231156.84716705,161922.14131224767,450.11012,297.9466628857734,469971.30462053104,310904.34129811137,439.96265,214.3797746708725,456829.5630357516,221669.0976722425,2984.29858,1402.759154271493,3081360.756847167,1428068.444774713,988.29424,449.2642301824656,1017760.0146351662,454274.74407533614,1590.92648,683.9715452712255,1625752.7493205103,682939.0157195099,0.38035,100000,0,1005112,10507.12941668409,0,0.0,0,0.0,38602,402.9479406230399,0,0.0,39864,413.6316119590216,1241327,0,44443,0,0,8831,0,0,96,1.003554254651892,0,0.0,0,0.0,0,0.0,0.05333,0.1402129617457604,0.3045190324395275,0.01624,0.3449207492795389,0.6550792507204611,23.386004470111644,4.101010214346056,0.304552960603916,0.2786034442085398,0.2040575607454588,0.2127860344420854,11.275095405062904,5.969428616494612,17.36541646965858,11705.264118992172,48.80191181031182,14.565774640577969,14.594122051326226,9.691427395157712,9.95058772324991,0.5833923095069592,0.8128704487722269,0.6963594113090628,0.5872832369942197,0.1175166297117516,0.7444620253164557,0.925925925925926,0.861671469740634,0.7136563876651982,0.1470588235294117,0.5149579831932773,0.7338129496402878,0.635593220338983,0.542319749216301,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0044212340921766,0.0065561126108754,0.0086564252621311,0.0108637052558768,0.0131493175799551,0.0155611074287462,0.0179207809580214,0.0200613496932515,0.0222062890504967,0.024262880357839,0.0265532194751012,0.028598184699611,0.030608562974876,0.0327741855516764,0.0347934944545605,0.0365763916959464,0.0386388173739722,0.0406600495245229,0.0427002846685644,0.0571270337203105,0.0713163846540459,0.0848316906508801,0.0974924499910557,0.1091164302600472,0.1245541054057773,0.1358901665976491,0.1465666105272134,0.1576345719696564,0.1668689255222037,0.1785926125640334,0.1911479495097242,0.2019575181544022,0.2106323349097915,0.2190219187135147,0.2294445738110286,0.2381734669929929,0.247660552008378,0.2564955712014535,0.263624493161982,0.270458804747692,0.2756194483403459,0.2804928519906822,0.2858648020880726,0.2908091447432288,0.2946982376686029,0.2983253618392297,0.302271255728922,0.3061237667234878,0.3101324947699433,0.308241079105761,0.3061793126166685,0.3033126730474624,0.3005952809928076,0.2980687999288583,0.2952188984073174,0.2918099504684986,0.2925871379479627,0.2929322181149175,0.2929316297113571,0.2930287294056113,0.2941674209925617,0.2951343227503287,0.2968732638503077,0.2980078730764642,0.2989973123837089,0.2983547238084469,0.3017408123791102,0.3056763999582362,0.3096474661630469,0.3126015526268279,0.3188708834291688,0.3228830394834864,0.3259577030179875,0.3273925554627309,0.3312847181184257,0.3353156450137237,0.3392749849789706,0.3361999462510078,0.3393984404010397,0.0,2.0655379368579143,55.33197494161459,161.59103453206308,213.22138527445108,fqhc1_80Compliance_baseline,14 -100000,95798,46403,441.8568237332721,5153,52.642017578655086,4038,41.65013883379611,1556,15.91891271216518,77.3507064425629,79.67947526002486,63.34838135415546,65.07005206751157,77.1483298590437,79.47860169180575,63.272762336059344,64.99721789173876,0.2023765835191966,200.87356821910876,0.0756190180961127,72.8341757728117,223.00234,156.16094135313415,232783.920332366,163010.64881639925,447.6263,296.92358172257644,466773.356437504,309460.34543787607,432.48336,210.45796406935875,448332.85663583793,217273.9016888154,2858.42901,1324.972102284553,2951197.039604167,1350477.9142409577,932.27425,417.60747497284206,960214.9836113488,422973.3136107664,1511.67114,644.4133337396817,1547747.9279316897,646768.7347905756,0.37669,100000,0,1013647,10581.087287834818,0,0.0,0,0.0,38448,400.8330027766759,0,0.0,39210,406.1775819954488,1235687,0,44322,0,0,8613,0,0,78,0.814213240359924,0,0.0,1,0.0104386312866656,0,0.0,0.05153,0.1367968355942552,0.3019600232874054,0.01556,0.3507560201605376,0.6492439798394624,23.36357870244482,4.119872916356798,0.3088162456661714,0.266468548786528,0.2206537890044576,0.204061416542843,11.204793473525308,5.977212723534989,16.717528585480103,11568.700331172084,46.19741185938625,13.055348805639444,14.242575651878024,9.837182650654327,9.062304751214455,0.5802377414561665,0.7992565055762082,0.7016840417000801,0.5768799102132436,0.1140776699029126,0.7444253859348199,0.927400468384075,0.8608695652173913,0.7110091743119266,0.1136363636363636,0.5135793871866295,0.7149460708782742,0.6407982261640798,0.5334323922734027,0.1141975308641975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575300838701,0.0042781832927818,0.0063522989030614,0.0085730537948967,0.0108081177810313,0.0130819428466714,0.0155823244058538,0.0180220632507066,0.0201927302083652,0.0223291035611952,0.0241100887349632,0.025970161505469,0.0280249933200419,0.0301202338796014,0.032058486888914,0.0339363009948449,0.0358014982823558,0.0379212755149642,0.0399189989096007,0.0417135123880907,0.0559393129930297,0.0696144958751999,0.0824554231265134,0.094495470690851,0.10638253024746,0.1224908301005253,0.1347677168276725,0.1453701831494035,0.1561102155416297,0.1666363003054498,0.1791195780863201,0.1902476980936324,0.2018796175575836,0.2109328060650419,0.2194741239062568,0.2290726484381913,0.237323825970698,0.2454144155275247,0.2529317787824195,0.2597490248115398,0.2663726214668391,0.2722347418936749,0.2770651312911578,0.2818843355036384,0.2858684973376836,0.2908323384982708,0.2955814563579807,0.299640411176478,0.3026179635761589,0.3048213556688133,0.3022581035154413,0.2997967200505453,0.2983376462646264,0.2961599538039555,0.2936996543488258,0.2907063879245745,0.2877364458784083,0.2885540289883619,0.2893137589621031,0.289215511398095,0.2894263217097862,0.2908091651345313,0.2911310110521569,0.2928502567091899,0.2934220961811146,0.2932279850843568,0.2956496933390387,0.3001260239445494,0.3040118035551183,0.3089218595450049,0.312955207574654,0.3156659912551989,0.3193006816460489,0.3225436179981634,0.3257846269498214,0.3271604938271605,0.3300447047942038,0.3329215565163681,0.3379097786494816,0.3369523070957735,0.0,1.9748496829672413,50.88827638679695,149.6359196513673,213.0978642348127,fqhc1_80Compliance_baseline,15 -100000,95734,46985,446.70649925836176,5298,54.09781268932668,4199,43.265715419809055,1607,16.420498464495374,77.31652017658898,79.67775037097478,63.31665033110207,65.06259368001781,77.10564880045528,79.47044075889394,63.23761521043351,64.98773829481074,0.2108713761336957,207.30961208083443,0.0790351206685571,74.8553852070728,221.76638,155.37922030956173,231647.586019596,162302.2927047169,451.92528,299.3539850674119,471441.72394342656,312074.906329078,442.10471,216.1016659005775,458428.2177700712,223116.0683106439,2951.91621,1388.7331061072314,3041910.763156245,1409434.919653117,970.86042,448.5131446978762,995880.1470741848,450748.2502747213,1569.31944,668.1223283320625,1604320.178828838,667005.0166813935,0.38136,100000,0,1008029,10529.435728163451,0,0.0,0,0.0,38773,404.3599974930537,0,0.0,40244,416.9887396327324,1233879,0,44301,0,0,8762,0,0,74,0.7625295088474314,0,0.0,1,0.0104456097102387,0,0.0,0.05298,0.1389238514789175,0.3033220083050207,0.01607,0.3543064369900272,0.6456935630099728,23.64427629172552,4.11567861212696,0.3165039295070255,0.2714932126696832,0.2014765420338175,0.2105263157894736,11.28230560439284,6.054756911075915,17.259420644211914,11782.318400502538,48.38010038390112,14.083795454920134,15.120329192889225,9.446055956848834,9.729919779242922,0.5860919266492022,0.8043859649122806,0.7193378480060195,0.5921985815602837,0.0984162895927601,0.7646604938271605,0.952,0.8688118811881188,0.7208121827411168,0.1128205128205128,0.5063727178780572,0.6890625,0.654054054054054,0.5531587057010786,0.0943396226415094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.004673513042244,0.0068104541994417,0.0091955658067203,0.011322021484375,0.0138308923879168,0.0161137344089421,0.0182592445084403,0.0205621619410844,0.0230048630662912,0.0250492166352227,0.0271385885469611,0.02936851522412,0.0314273063338584,0.0336885102169226,0.0357390091439789,0.0377206148750064,0.0397186809539122,0.0414345114345114,0.0430896172358468,0.0573820983722945,0.0710129761406446,0.0846748398057743,0.0974488937494742,0.1102019296673169,0.1259241239991962,0.138156010311575,0.1488775108310358,0.1583046646295861,0.1685279950221535,0.181166991608949,0.1931871057102355,0.2031229611587142,0.2126559305541889,0.2220338796490957,0.2316063611680612,0.24027199338998,0.2483039501366965,0.2565455721630179,0.2629613507755046,0.2693446871529063,0.2754385964912281,0.2814109013434338,0.2871823774177688,0.29181806029821,0.2962839629506296,0.300928939856778,0.3040827754728027,0.3086750543647095,0.3113140323559684,0.3094504192858008,0.3074242904163166,0.3047937475311777,0.3021731581688755,0.3014853472501003,0.2974919180621734,0.2935413930080554,0.2939687756778965,0.2944778979061174,0.2955289571144866,0.2961830629278814,0.2961762671672759,0.2972706691262787,0.2974786907984518,0.297875408575274,0.3002001507629123,0.3004465174483092,0.3037899414765437,0.3085470682787057,0.3123345057898273,0.3157083257754399,0.3176663840610428,0.3204315914936327,0.3223445986722993,0.324018691588785,0.3240356083086053,0.3254356465912565,0.3305169985918326,0.3313236503151548,0.331047619047619,0.0,2.234533339735566,56.56958025675548,154.9834854731849,210.17126083330112,fqhc1_80Compliance_baseline,16 -100000,95682,46774,445.12029430822935,5337,54.60797224138291,4176,43.10110574611735,1620,16.52348404088543,77.40264542862671,79.78216698600721,63.35728834693722,65.11170806924899,77.19464657215121,79.57898157936525,63.27839573302597,65.03725313434302,0.2079988564754984,203.18540664196405,0.0788926139112433,74.45493490597244,222.63934,155.82626597563947,232686.75403942223,162858.4958253794,451.07486,298.99593936389545,470900.9740599068,311960.4244087104,436.75617,212.80814696328176,453574.2459396752,220148.07788598465,2967.11139,1381.3341916569325,3062213.1017328235,1404952.8564724452,1012.31965,457.5704677305607,1042788.9780732008,463052.7143570598,1587.27302,679.6386546268507,1620238.0385025395,677466.1553162505,0.3813,100000,0,1011997,10576.670638155556,0,0.0,0,0.0,38808,405.0291590894839,0,0.0,39654,411.4776028929161,1235590,0,44344,0,0,8909,0,0,82,0.857005497376727,0,0.0,0,0.0,0,0.0,0.05337,0.1399685287175452,0.3035413153456998,0.0162,0.3476618705035971,0.6523381294964029,23.70122325419738,4.203633031344779,0.3158524904214559,0.2693965517241379,0.1901340996168582,0.2246168582375479,11.244054074543888,5.947673463355217,17.383484810649563,11730.64910787535,47.80289369610178,13.747988735434827,14.968898106940438,8.829994181727798,10.256012671998716,0.5806992337164751,0.7964444444444444,0.7012888551933283,0.6045340050377834,0.1321961620469083,0.7661612130885874,0.941299790356394,0.8743455497382199,0.7675675675675676,0.1674641148325359,0.5011973999315772,0.6898148148148148,0.6307363927427961,0.555008210180624,0.1220850480109739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020658018652975,0.0044594443937689,0.006867518766484,0.0089068990382174,0.0108296641278815,0.0129625481131499,0.0152517662891106,0.0172890662475377,0.0196617444177609,0.0219411355356338,0.0241909857826706,0.026302011149096,0.0284083898827884,0.0304125728645286,0.0323156450231636,0.0344389205279532,0.0364076915908173,0.038686646465485,0.0406452485205254,0.0428574406436954,0.0569031799757636,0.0716731411578693,0.0852966177288516,0.0983599659159048,0.1104255004957492,0.1261267933471581,0.1375343570587174,0.1481434167944132,0.1589155570753809,0.168745375186333,0.1810114586025674,0.1920800008658102,0.2031798853762248,0.2127517659151048,0.2217479317021651,0.2314684617854493,0.2401507212771175,0.2478711213966342,0.2560070691393549,0.2628245435525729,0.2689581120399021,0.2748074679113185,0.2804500802871446,0.2849641776406282,0.2902533640441265,0.2944736971605728,0.2990153200209932,0.3028406783103168,0.3068867108304601,0.3094865351979267,0.3077790304396843,0.3050036993395993,0.3032431750304968,0.3013058359939022,0.2979928707716428,0.2954469214113628,0.2924824485288317,0.2923814824515453,0.292953339681676,0.2934883059643136,0.2937498833585279,0.2946969845598478,0.2952188999937665,0.2972697003329633,0.2982447749772825,0.3002178310253617,0.3012417077734308,0.3046246021344317,0.3065759637188208,0.3113746503289862,0.3150908349567344,0.320603813559322,0.3231203007518797,0.3279891098842925,0.3339574946166089,0.3369527145359019,0.3378357869175899,0.3348651348651348,0.3388318009734992,0.3416635583737411,0.0,2.0984438858076544,54.73939675301352,151.35488204848178,215.8526076013161,fqhc1_80Compliance_baseline,17 -100000,95714,46850,445.3684936372944,5224,53.15836763691832,4107,42.18818563637503,1543,15.671688572204694,77.33907921770925,79.70386312698858,63.32552877917672,65.07467398886926,77.1366572249062,79.50781706074368,63.24803922608789,65.00229124237882,0.2024219928030532,196.04606624490373,0.0774895530888244,72.3827464904474,222.4409,155.78648051047293,232401.6340347285,162762.4804213312,454.19194,300.6456509078436,473822.8158890026,313400.8409510036,438.84307,214.29695629422525,453513.7910859435,220159.1769585373,2881.53493,1352.9246593145028,2962766.042585202,1365738.839578852,966.89156,445.2793338401042,993054.3076247989,448148.71946218255,1496.08482,648.5823661494751,1521561.5479449192,643204.0965277392,0.38052,100000,0,1011095,10563.710637942202,0,0.0,0,0.0,38924,405.9176296048645,0,0.0,39718,409.98182084125625,1232646,0,44210,0,0,8872,0,0,105,1.0970182000543285,0,0.0,1,0.0104477923814697,0,0.0,0.05224,0.1372858194050247,0.2953675344563553,0.01543,0.3589696748264523,0.6410303251735476,23.582702710739564,4.097569374512887,0.3114195276357439,0.2700267835402971,0.2115899683467251,0.206963720477234,11.552449682756247,6.409169491661374,16.658524013231816,11761.281432708223,46.92968328242716,13.471833443297909,14.4193204503497,9.786582031867654,9.251947356911884,0.5855855855855856,0.7908025247971145,0.7013291634089132,0.5983889528193326,0.1305882352941176,0.7548701298701299,0.9235955056179777,0.856353591160221,0.7510729613733905,0.1770833333333333,0.5130434782608696,0.7018072289156626,0.6401308615049073,0.5424528301886793,0.1170212765957446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026029006643979,0.0051101107190655,0.0073789876475543,0.0096020972199642,0.0116476608038411,0.01420729409608,0.0161729465150665,0.0183769104329804,0.0207161700648275,0.0226960814437001,0.0246956628754858,0.0266631061080698,0.0290950603190274,0.0311656467000473,0.0330002683787856,0.0350661303165362,0.0370247591422355,0.0390423114044646,0.0412632717365306,0.0431842807134522,0.0575748399828758,0.0721864144310049,0.0857712068784733,0.0983899632983142,0.1109072310628829,0.1261489967103523,0.1383525018036752,0.1498679671195536,0.1597896829213555,0.1701381064288703,0.1821473602534674,0.1940308205455864,0.2051164865776559,0.2145225718194254,0.2236488569792538,0.2329985143794762,0.2411363357193107,0.2490630170288917,0.2572868428221193,0.2642997123439953,0.2698611111111111,0.2762154321276496,0.281808398670782,0.286908111343909,0.291758654989204,0.2956021251475797,0.2990499019938324,0.3019200751278569,0.305531167690957,0.3090576322962066,0.3069587525015781,0.3045347766955614,0.3024110121183971,0.299519001603328,0.2972475429793046,0.2936930323606778,0.2909404086534662,0.291090050501738,0.2911714480874317,0.2914309172363324,0.2926870334686547,0.2937895421487277,0.2940550910190379,0.2959240523254518,0.296813368076307,0.2970068872663249,0.2975157393227837,0.3015987235240747,0.3050237562884293,0.3067004192706273,0.3091065916106773,0.313073455316892,0.3134798211924699,0.3156052651601613,0.3186137506987144,0.3209658421672556,0.3204911742133538,0.3298864557988645,0.3316790736145575,0.3318095238095238,0.0,2.76739619397933,53.027676710546594,146.94422343260746,214.02090744582352,fqhc1_80Compliance_baseline,18 -100000,95690,46333,440.3385933744383,5342,54.81241509039607,4249,43.86038248510816,1579,16.124986936984012,77.30793472821749,79.68409913941088,63.31631099018998,65.0703072856993,77.10632147987002,79.48476531271322,63.24156713509853,64.99857359905863,0.2016132483474706,199.33382669765365,0.0747438550914552,71.7336866406697,221.5147,155.11987366512383,231492.00543421463,162106.67119356658,448.51428,296.3678221531621,468149.5140558052,309151.1821268302,432.75109,210.49991723411048,448717.2954331696,217264.3583146249,3004.19065,1387.9972155650464,3100423.1058626813,1412004.9916023242,982.13616,442.5402967897454,1009672.3691085798,446175.2039257,1541.56216,649.4396140332198,1575539.9310272755,649604.7549969445,0.3768,100000,0,1006885,10522.363883373391,0,0.0,0,0.0,38486,401.6198139826523,0,0.0,39320,407.5347476225311,1240891,0,44595,0,0,8747,0,0,84,0.8569338488870311,0,0.0,0,0.0,0,0.0,0.05342,0.1417728237791932,0.2955821789591913,0.01579,0.357832618025751,0.6421673819742489,23.77953521130477,4.138543379868832,0.325488350200047,0.2642974817604142,0.2035773123087785,0.2066368557307601,11.227673788629962,5.872531644650564,16.911196010256035,11677.140503502396,48.6948321668028,13.5875546884274,15.687468052640249,9.756973347462983,9.662836078272177,0.5897858319604613,0.8121104185218165,0.7107736804049168,0.5988439306358382,0.1059225512528473,0.7479131886477463,0.9308755760368664,0.8725761772853186,0.7129629629629629,0.1229946524064171,0.5276958374303508,0.737300435413643,0.6536203522504892,0.5608628659476117,0.1013024602026049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.0044688095334603,0.006816867689873,0.0091005119037945,0.0115124888129525,0.0134821392203983,0.01556015539762,0.0177335375191424,0.0200781042343944,0.0223664411255898,0.0242957313322671,0.0264376430969517,0.0285490970422477,0.0307510044297929,0.0328455855037767,0.0347355036131126,0.0368962015873344,0.0390145655762382,0.0411209703425533,0.0430014490185245,0.0575964903117981,0.0711317654200814,0.0846849493275142,0.0970836006436481,0.1098741223353785,0.1251546587988959,0.1366587456505134,0.1477732362583556,0.1579762629661678,0.1674764831440186,0.1797182916585901,0.1908032797525041,0.2009827902982073,0.2101149023166318,0.2195079028124553,0.2284809285429495,0.2373350290616598,0.2453235548856619,0.253151200916713,0.2603412734768667,0.2670872156953527,0.2738627061162437,0.2794423932594906,0.2844979553658156,0.2890280226126071,0.2936265199911205,0.2977814523907951,0.3015773915702563,0.305314899356713,0.3080439119119648,0.3049927251172064,0.3022736975472711,0.2995742521216906,0.2974020713996412,0.2955928068896788,0.2935022363825746,0.2903609113089768,0.2914974431491195,0.2922718951564612,0.2935524200750134,0.2949943757030371,0.2957732550089993,0.2971943048576214,0.2976477414747366,0.2999063468049852,0.3012098456403838,0.3048006601974901,0.3089921165865762,0.3135730368702505,0.3172211427891669,0.3198705383598486,0.3219745222929936,0.3291545924152702,0.3299627461415647,0.3309588527509607,0.3298361428739833,0.3289116671691287,0.3276723276723277,0.329747175901022,0.3290949887808526,0.0,2.0669170398239274,52.38837849090443,164.28876161022777,221.0187835730531,fqhc1_80Compliance_baseline,19 -100000,95705,46736,445.5462097069119,5340,54.66799017815161,4236,43.66543022830573,1614,16.49861553732825,77.38171245272493,79.7555307304085,63.34258245905804,65.094951647522,77.17929509679058,79.55455224303317,63.26637761692899,65.02152582416794,0.2024173559343438,200.9784873753233,0.0762048421290515,73.42582335405723,223.33388,156.35023755943442,233356.5435452693,163366.8434872101,449.25455,296.58359597157744,468832.96588475,309310.52293148456,437.75243,212.822007047752,452965.8116085889,219048.54766524732,3019.52344,1395.4662356998524,3116487.121884959,1419823.8030623891,1024.26742,459.7139763476018,1054971.3599080509,465199.41999673215,1575.89644,664.8044612818246,1612462.5672639883,666694.5254693021,0.37847,100000,0,1015154,10607.11561569406,0,0.0,0,0.0,38570,402.3927694477823,0,0.0,39698,410.51146753043207,1234303,0,44244,0,0,8767,0,0,73,0.7418630165613082,0,0.0,0,0.0,0,0.0,0.0534,0.1410944064258726,0.302247191011236,0.01614,0.3440975959813419,0.6559024040186581,23.826028547982062,4.153796672913482,0.30547686496695,0.2660528800755429,0.2101038715769594,0.2183663833805476,11.48362742308475,6.194809107612833,17.07197888980392,11664.678013261711,48.2905917107064,13.77244691453166,14.67620525534458,9.858440125765576,9.983499415064578,0.5734183191690274,0.8003549245785271,0.6931993817619784,0.5831460674157304,0.12,0.7489643744821872,0.9171974522292994,0.8554216867469879,0.785,0.1519607843137254,0.5034664905909542,0.7164634146341463,0.6372141372141372,0.5246376811594203,0.1109570041608876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0044298472361605,0.0066566546251572,0.0089998577900574,0.0111276115304025,0.0131466395112016,0.0151312770838643,0.0171505573931152,0.0194637252997761,0.0215375166342512,0.0235485888274914,0.0254412172359626,0.0274367043047242,0.0297695691138145,0.0317534028874235,0.0338702673641984,0.0362173246613364,0.0381139163008851,0.0398643799856475,0.0419037495570979,0.0560504631708667,0.0703188794204476,0.0840634147876905,0.0963381407727669,0.1083088087929706,0.1235432221493686,0.1354270557029177,0.1466912234382319,0.1560426882030574,0.1656494363220955,0.1787719128120589,0.1900344237805538,0.2018076220308013,0.2107616455128836,0.2196018039819602,0.2293163575975643,0.238298631634121,0.2469384312622997,0.2549024055528461,0.2619581892702585,0.2686670753854874,0.2739460242879016,0.2794618770410336,0.2851957883640981,0.2895005220600733,0.2933743842364532,0.2977276704247181,0.3024335045516961,0.305975941016686,0.3085212900505902,0.3062804009567063,0.3039361001317523,0.3021124682005369,0.2998257413194694,0.2982915464832483,0.2935591050417606,0.2906694415539368,0.2912039456493336,0.2922664312873438,0.2922790202342918,0.2936320095417358,0.2938366263639044,0.2954110898661568,0.2966801295992188,0.2986064713181254,0.3007458641959377,0.3021418291616107,0.3072380893184573,0.3125715276573608,0.31583913197311,0.3201264964987576,0.3249604221635884,0.3271961794646223,0.3335614355231143,0.3347064881565396,0.336329233680227,0.3433176220161167,0.3433346757954088,0.3456449834619625,0.3534847901424721,0.0,2.3615116437160486,52.313314516038055,162.4349693358639,216.77616836642795,fqhc1_80Compliance_baseline,20 -100000,95859,46675,443.7976611481447,5301,54.11072512753106,4233,43.59528056833474,1594,16.31563024859429,77.44506122741345,79.72205569087696,63.40474875222951,65.08389343993056,77.25382826774845,79.53269393316461,63.334375688243966,65.01618270067152,0.1912329596650011,189.36175771234787,0.0703730639855422,67.71073925904147,224.98366,157.50598626298648,234702.69875546376,164310.0661001956,452.14836,298.95490947633215,471131.6412647743,311320.4075531062,436.66116,212.972744502378,451583.0855736029,219173.41449241043,2983.54041,1376.4038484577372,3075676.3892800887,1399419.1671325846,1002.94947,451.8730673563205,1029551.5913998686,454764.9644176941,1546.67856,637.4434020875834,1584658.1750279055,641651.7185599344,0.37964,100000,0,1022653,10668.304488884716,0,0.0,0,0.0,38910,405.3244870069582,0,0.0,39707,410.2588176384064,1226959,0,44055,0,0,8889,0,0,69,0.7093752281997517,0,0.0,0,0.0,0,0.0,0.05301,0.139632283215678,0.3006979815129221,0.01594,0.3546584970264912,0.6453415029735088,23.62734154661772,4.140782154157221,0.3139617292700212,0.2671863926293409,0.218284904323175,0.2005669737774628,11.76642101952455,6.391193826149334,16.755850689639956,11634.71720359488,48.31498775274648,13.816241408840874,14.96701157407768,10.37859128397186,9.153143485856068,0.578549492085991,0.7939876215738285,0.674191121143717,0.5898268398268398,0.1295641931684334,0.7784137367130008,0.9361702127659576,0.8735955056179775,0.7280334728033473,0.170886075949367,0.4973421926910299,0.6928895612708018,0.6012332990750257,0.5416058394160584,0.1201157742402315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024393206340209,0.0047407287350965,0.0070673169544629,0.0092261783930818,0.0115125896722011,0.0135922922749793,0.0159190906868736,0.0179469138446164,0.0204433824505509,0.022321063394683,0.0240321110781171,0.0261214694480339,0.0282850276277139,0.0305290118186774,0.0327216904833043,0.034650757114398,0.0367336808140977,0.0386408853519025,0.0405822077800732,0.0422441420069088,0.0567957874980449,0.0707249041505176,0.0840086270075591,0.0969549432330905,0.1083301771661827,0.1233945099363608,0.1355165914914342,0.1465345062043175,0.1568111058984092,0.1661762030626331,0.1779358665749656,0.1892504696711222,0.20023661959601,0.2099592852542761,0.2194098850297034,0.2287392299779899,0.2378246481933349,0.2461586845179261,0.2531162179312846,0.2610619975068333,0.2676697637868072,0.2733561587809808,0.2787373647809895,0.283262161935862,0.2878034583949749,0.2920563047544049,0.2959645743163793,0.2994762534323197,0.3031620348807121,0.3060431161711996,0.3038587153743801,0.3018430333886838,0.2994948077462812,0.2969906974737962,0.2955408740891825,0.2931561886499566,0.2898999748364368,0.2907585217547234,0.2908513924007671,0.2919817920969199,0.2938986710345084,0.2949231796927187,0.2969215078159149,0.2961919133638098,0.2984775449816255,0.3003436781312179,0.3004371738823861,0.3048621054597522,0.3067433640584933,0.3101820899044323,0.3169760072430964,0.3215644820295983,0.324760653275765,0.3289383431140919,0.330979949166902,0.3348770929818311,0.3321565617805065,0.3347056401811445,0.335180055401662,0.3333333333333333,0.0,2.2312670825354783,53.3489198197542,156.7535598702836,221.1353594361768,fqhc1_80Compliance_baseline,21 -100000,95689,47030,447.3241438409849,5358,54.68758164470316,4286,44.24751016313265,1679,17.253811827900805,77.29747507811412,79.7008846300033,63.28577397120039,65.06585143423074,77.08166524859928,79.48579954568147,63.20447175065247,64.98696846644252,0.2158098295148391,215.08508432182796,0.0813022205479256,78.88296778821768,221.63724,155.21629198192184,231622.4853431429,162209.1274670253,454.77149,301.51054044337934,474714.97246287455,314549.2798998624,440.63215,214.8689529807189,456842.4061281861,221846.900042456,3071.25006,1429.86811653181,3174199.2392019983,1458869.4275536465,1012.60932,461.9596444546796,1043541.1384798668,468093.4690709102,1643.62182,701.5089203019594,1689538.33773997,708342.9216986352,0.3815,100000,0,1007442,10528.294788324678,0,0.0,0,0.0,38972,406.7029648130924,0,0.0,40062,415.0006792839303,1231122,0,44254,0,0,8772,0,0,82,0.8569428042930745,0,0.0,1,0.010450522003574,0,0.0,0.05358,0.1404456094364351,0.3133631952220978,0.01679,0.3554603854389722,0.6445396145610278,23.551403082832262,4.143986655569266,0.3084461035930937,0.2631824545030331,0.2088194120391973,0.2195520298646757,11.322456464177035,6.083721761600705,18.020387543465528,11749.353732185904,49.12071152768696,13.711635537069796,15.177783357634237,9.899693541163227,10.331599091819696,0.5795613625758282,0.800531914893617,0.7042360060514372,0.6011173184357542,0.1190223166843783,0.7478191911181602,0.918103448275862,0.8548387096774194,0.7407407407407407,0.1866028708133971,0.5094214876033057,0.7183734939759037,0.6452631578947369,0.5567010309278351,0.0997267759562841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0047572677662142,0.0072897101375704,0.0096738136368255,0.012237548828125,0.0142699993888651,0.0163804006364489,0.0186270705255203,0.0206899373063194,0.0228773898884804,0.0251505236273373,0.0271311458568757,0.0292586572292751,0.0315733069535468,0.0333908087514067,0.0352203729946109,0.037085790690202,0.0391772059892426,0.0412921348314606,0.043176488979209,0.0575884509719944,0.0715601708399631,0.0849317943336831,0.0977120917267133,0.1101453555832155,0.125797408093097,0.1368509319407294,0.1478688734104415,0.1586055712987221,0.168882064937296,0.1814848367197273,0.1933637575744436,0.2036643682668322,0.2125780650816259,0.2222920387150825,0.2319409774227547,0.2408328397241749,0.2484624569150014,0.2555272785112136,0.2625166200541011,0.2692383434694468,0.2753835343717062,0.2801155946134805,0.2844231600172835,0.2904100923346431,0.294080627845852,0.2977446435283799,0.3015409714875664,0.30542613525755,0.3088488086107952,0.3060323886639676,0.3043916168821314,0.3017857647424486,0.3006097649291021,0.2991600386530885,0.2952544293524034,0.292689480755552,0.292888262849281,0.2928294309828478,0.293813241335159,0.294654011821962,0.2959388268595691,0.2965511489219734,0.2963490016453951,0.2984378364153968,0.2981733385153517,0.2994251083231854,0.3040667166416791,0.3075527646956218,0.313816775822615,0.3157847046031171,0.3227711288026572,0.325793551612097,0.3303181064375094,0.3314669652855543,0.3338427177618432,0.3373512358864815,0.3400564743848326,0.3478142076502732,0.3538638102524866,0.0,2.1141992475873206,55.1021445681228,161.7847104414119,218.3000561655264,fqhc1_80Compliance_baseline,22 -100000,95834,47044,445.87515912932776,5225,53.279629359100106,4145,42.71970281945865,1611,16.539015380762567,77.32864418348662,79.6398811260909,63.32870225298407,65.03866627835122,77.11708770062984,79.42777588494363,63.248634164431394,64.96041578740777,0.2115564828567784,212.1052411472704,0.0800680885526716,78.2504909434465,222.52054,155.94374899082345,232193.73082622036,162722.78000586788,452.24773,299.864729177797,471343.3541331887,312336.1115864901,438.37925,213.85953401,453688.8369472213,220377.50034149064,2961.21793,1386.3269222554798,3053931.9448212534,1410801.5815255078,976.25601,441.45456333645376,1005717.9080493352,447773.9042866461,1579.48982,682.6082547757038,1621969.405430223,689262.7290002265,0.38112,100000,0,1011457,10554.260492100924,0,0.0,0,0.0,38867,404.9815305632656,0,0.0,39791,411.4614854853184,1228503,0,44149,0,0,8846,0,0,72,0.7512991213974164,0,0.0,1,0.0104347100194085,0,0.0,0.05225,0.1370959277917716,0.3083253588516746,0.01611,0.3507545086492455,0.6492454913507545,23.72769722996682,4.203706826789128,0.3124246079613992,0.2579010856453558,0.2048250904704463,0.2248492159227985,11.06676435382244,5.739136177566815,17.43909570595258,11754.66571210892,47.697222465549096,13.052372182987025,14.804293270114323,9.513028201957958,10.327528810489795,0.5647768395657419,0.7885874649204865,0.7135135135135136,0.5477031802120141,0.1169527896995708,0.7154213036565977,0.9106753812636166,0.8436657681940701,0.6904761904761905,0.110091743119266,0.4991340491860062,0.6967213114754098,0.6612554112554112,0.5007824726134585,0.119047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0048554514860317,0.0072338051032313,0.0094872419957744,0.0115314215985356,0.0138159234371818,0.016308225461217,0.0186147141967812,0.0208269462668874,0.022951926815791,0.0250722350867845,0.0273798284142687,0.029463753519824,0.031408276714021,0.0335859757669502,0.0355877400493786,0.0376261189010193,0.0398233299810266,0.0420046741106206,0.0441407591669355,0.0582118196799966,0.0719513215122114,0.0857439315809332,0.0983734028244788,0.1107246376811594,0.1271668357855572,0.1391748751497672,0.1495424558416684,0.1603746382306139,0.1698382237850702,0.181721263810816,0.1929697389347499,0.2037840482792366,0.2129896817068905,0.2218799507129026,0.2310802428109353,0.2394399222858674,0.2480914311451413,0.2563654121334635,0.2630148298523896,0.2688285489032138,0.2744479495268139,0.2801642788467245,0.285033033033033,0.2898499580174501,0.2938258809594314,0.2980294331486449,0.3022713368002447,0.3059217355200332,0.3092099173553719,0.3074423621410274,0.3047482490486957,0.3020759779692133,0.299930440831232,0.2977181048213036,0.2940896749551318,0.2908952574182095,0.2905953436443043,0.2915884981410103,0.2918120948785526,0.292846720790153,0.2937798476536291,0.29562493473948,0.2952236677954019,0.2959775625659219,0.2986299229006043,0.2998863959102528,0.3047219701473855,0.3104553530989792,0.3146624680181066,0.3177113933203778,0.3203796467176377,0.3224190822012145,0.3233487525593387,0.3253315897627498,0.3266248372203149,0.3356050280175677,0.3370944992947813,0.3416166029492081,0.3450269853508095,0.0,1.9778956262185683,55.30366024064205,152.61166726513255,210.62842490281625,fqhc1_80Compliance_baseline,23 -100000,95756,46946,446.05037804419567,5246,53.67809850035507,4135,42.691841764484735,1538,15.706587576757592,77.35098256499538,79.70008928815673,63.33757887846742,65.07129279864756,77.15765827296259,79.50848633459003,63.26419753410829,65.00107682789218,0.1933242920327842,191.6029535667008,0.0733813443591344,70.21597075538466,222.55904,156.01087526419343,232423.07531642923,162925.43053614753,451.21838,298.20297338358546,470737.5412506788,310940.3414758191,438.45696,212.8550992536748,455272.557333222,220203.6467848548,2906.02902,1343.806313130084,3002067.964409541,1370606.0122917455,973.77799,440.38094834876455,1003872.3317598896,446834.609161581,1497.61212,637.3018676685383,1531689.2309620285,637566.24041931,0.38006,100000,0,1011632,10564.685241655876,0,0.0,0,0.0,38797,404.6639375078324,0,0.0,39700,412.0055140147876,1233726,0,44186,0,0,8751,0,0,84,0.8772296252976315,0,0.0,1,0.0104432098249718,0,0.0,0.05246,0.1380308372362258,0.2931757529546321,0.01538,0.351213282247765,0.648786717752235,23.79971901581892,4.17550148527061,0.3090689238210399,0.2706166868198307,0.218863361547763,0.2014510278113664,11.238363454501153,6.032747752212038,16.33014867900078,11705.42846074603,47.130506591724846,13.700385455014011,14.513452586734244,9.89651802676934,9.02015052320726,0.5857315598548972,0.8096514745308311,0.701095461658842,0.5657458563535912,0.1296518607442977,0.752129471890971,0.9347826086956522,0.858433734939759,0.6714285714285714,0.1569767441860465,0.5197568389057751,0.7223065250379362,0.645877378435518,0.5338129496402878,0.1225416036308623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023087906190191,0.0047840585439028,0.0070114557649183,0.0095880393272121,0.0119165031367245,0.0139161771742118,0.0162587537333972,0.018574650704714,0.020768814072098,0.0231094372063985,0.0251758000697049,0.0272736604393348,0.0293322366730067,0.0314179796107506,0.0332287948501041,0.0352665143825776,0.037514884804556,0.0396185495335636,0.0414518007152956,0.0432440879258256,0.057593535994655,0.0714621975331889,0.0844368951380369,0.0969573354080366,0.109159717903037,0.1245348837209302,0.1364576373643855,0.1475320860736862,0.1574915869878745,0.167396155166495,0.1787687833252544,0.189981925037611,0.2015358844388365,0.2109945180597651,0.2190334654337296,0.2287741077366437,0.2379792925513497,0.2461439805595869,0.2549535849656142,0.2615024873340822,0.267495284056059,0.2728666206428513,0.2780143353913846,0.2829671316529965,0.2877092938607134,0.2926160129914866,0.2969113126921058,0.3008561774345164,0.3054804620299828,0.3097291452382836,0.308251447031902,0.3059278421443707,0.3041463620743078,0.3013122525074428,0.2984159503555575,0.2958216077327786,0.2924434324747403,0.2922393151179191,0.2923402223586385,0.293312691294754,0.2940385728421799,0.2959450685659197,0.2974208088143232,0.2980636545737814,0.2999545704516653,0.3017731509125366,0.3020370003116412,0.3055712050078247,0.3105812739296902,0.3153209925167389,0.3177849160747409,0.3245553855084701,0.3270648506809946,0.327532956685499,0.3260182257764553,0.3314500941619586,0.3380368098159509,0.3466023321270607,0.3479212253829322,0.347016343595591,0.0,1.9334950147207357,51.32796313698603,153.46418875514024,219.2799497189901,fqhc1_80Compliance_baseline,24 -100000,95849,46847,444.6264436770337,5311,54.34589823576668,4186,43.161639662385625,1580,16.15040323842711,77.51248185563044,79.79949411317047,63.42745123530996,65.1113192990997,77.3140942585215,79.60228449467746,63.35357065982902,65.03999388215844,0.1983875971089475,197.2096184930052,0.0738805754809419,71.3254169412636,223.42628,156.47623089960746,233102.3589187159,163252.85699340363,451.67714,298.5752827402813,470722.0419618358,310989.69497885363,441.00274,214.5866182121605,456949.8481987292,221444.4891434132,2941.26146,1361.1117494919015,3031872.7373264194,1383290.3728697244,961.04869,433.0594759655039,989638.8903379274,438783.6763716918,1532.21906,649.9005862972241,1566037.8303373014,650795.8096888432,0.38028,100000,0,1015574,10595.56176903254,0,0.0,0,0.0,38806,404.3234671201577,0,0.0,39952,413.68193721374246,1236599,0,44312,0,0,8761,0,0,77,0.8033469311103923,0,0.0,1,0.0104330770274076,0,0.0,0.05311,0.1396602503418533,0.2974957635096968,0.0158,0.3532706902782797,0.6467293097217203,23.9467944687486,4.137604762156373,0.3184424271380793,0.2699474438604873,0.2092689918776875,0.2023411371237458,11.422608950244404,6.067056030125565,16.865616683055023,11681.75505907317,47.5866239292037,13.715516294909929,15.06100861283636,9.724110373374552,9.085988648082864,0.5719063545150501,0.784070796460177,0.6796699174793699,0.5742009132420092,0.1168831168831168,0.756578947368421,0.8980891719745223,0.865546218487395,0.7559808612440191,0.1675977653631284,0.4962962962962963,0.7025796661608498,0.6116803278688525,0.5172413793103449,0.1032934131736526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021148280816789,0.0045573773812296,0.006598485693145,0.0089090927540055,0.0111745464150023,0.0136682599410149,0.016116552299892,0.0181718061674008,0.020524235957236,0.0228857756416811,0.0251702421790998,0.0269308474089571,0.0288729282903321,0.031049955745837,0.033009968969392,0.0351893739865109,0.037271579644461,0.0392921198046798,0.0413541645025242,0.0432243355507667,0.0576616225348587,0.0713523913088939,0.0845409868703697,0.0970906417393131,0.1090520463710738,0.1245682780764477,0.1367316659601526,0.1469596929390875,0.1578936136157498,0.1676928183657954,0.1795867022191639,0.1917664719159368,0.2029460612442061,0.2124024237130847,0.2212435062438906,0.2306909782500525,0.2388824525443365,0.2468635225141239,0.2536434564993375,0.2607751725398784,0.2670387711326891,0.2737320211960636,0.2795520188623637,0.2847542999009322,0.2889770637762508,0.2928230369833924,0.2964158018662248,0.3004175629507782,0.3040303888745815,0.3076025538497843,0.3055518376743315,0.3026905829596412,0.3000251734168718,0.2969207789969552,0.2946735775779323,0.2922612973483406,0.2897707564721092,0.2896916817803049,0.2909106354060482,0.2905753580439958,0.2924318982715865,0.2926555894209026,0.2937536461371781,0.2959946743592588,0.2978687978687979,0.30075439635418,0.3031420688101807,0.3076899234417134,0.3130356649156759,0.3158201757797308,0.3183517265930936,0.3215025906735751,0.3251567687200295,0.3265867996130664,0.3296299696997521,0.3342932841838498,0.3339277753009362,0.331770222743259,0.3289649638940893,0.3248337028824833,0.0,1.9786642177846971,53.07127269223109,155.88556435096694,214.3918481710056,fqhc1_80Compliance_baseline,25 -100000,95741,46843,444.8042113619034,5235,53.52983570257257,4162,42.92831702196551,1572,16.06417313376714,77.31288813594676,79.67088042826346,63.318020272784125,65.06168693692116,77.11728220379584,79.47952983732311,63.24504016378618,64.99292960616278,0.1956059321509258,191.35059094034543,0.072980108997946,68.75733075838752,222.08054,155.6058988033463,231959.7037841677,162527.96482525385,448.67467,296.82578134273166,467952.91463427374,309349.0890451652,438.6014,213.01918560641224,454957.155241746,220052.03252996923,2936.3089,1361.6841432536462,3030272.6000355124,1385601.2922923784,950.54293,433.2533710223372,978614.9507525512,438313.9731382968,1530.95986,646.327841046121,1565915.396747475,646175.7686332207,0.37986,100000,0,1009457,10543.62289928035,0,0.0,0,0.0,38517,401.7296664960675,0,0.0,39844,412.9683207821101,1236495,0,44374,0,0,8779,0,0,72,0.7311392193522106,0,0.0,0,0.0,0,0.0,0.05235,0.1378139314484283,0.3002865329512894,0.01572,0.3494967978042086,0.6505032021957914,23.93418329071626,4.0951931741839065,0.3080249879865449,0.2784718885151369,0.2059106198942815,0.2075925036040365,11.22108083620464,6.086117952994322,16.935110313585476,11783.607215949343,47.86711642039146,14.178057053738916,14.637485802868536,9.440944528566687,9.610629035217324,0.5792888034598751,0.7842968075927523,0.7098283931357254,0.5857642940490082,0.1041666666666666,0.7424366312346689,0.8983050847457628,0.8818443804034583,0.7164179104477612,0.167487684729064,0.5113984348417829,0.7059679767103348,0.6459893048128342,0.5457317073170732,0.0847201210287443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0048246992164931,0.0072342454773283,0.0096087433470117,0.0118591145330092,0.0144399185336048,0.0166717650657693,0.0189074128901185,0.0207843457991698,0.022752173334289,0.0250997118864771,0.0271294347178723,0.0290333528740242,0.0313227447829759,0.0333749445470395,0.0354396626565794,0.037463499492617,0.0395949198970698,0.0415748097000956,0.0435937776759015,0.0580484851015848,0.0725743164767555,0.0858257477243173,0.0986267953651715,0.1109470887197115,0.1263790313197448,0.1386233168153988,0.1496024438791259,0.1592608417004913,0.1693294160536982,0.181211377387335,0.1925430913298298,0.203828718651143,0.2137686705884925,0.2229616755401064,0.2325138427464008,0.24144240639086,0.2497244528420721,0.2576565940926737,0.2640971307485253,0.2697479575068854,0.2747615039281706,0.2808874487032416,0.2865170558704065,0.2912780530457592,0.2956858107275729,0.2992678806082222,0.3029019787374739,0.3056796261053067,0.3094065614892072,0.3068952042150085,0.3047109325555158,0.3017006946499274,0.2998886623577553,0.2969953889632604,0.2950025301703648,0.2919441801458928,0.2913605811106181,0.292443152675671,0.2949210719201959,0.2957564402810304,0.2969649036085022,0.2971096331618354,0.2968687274187073,0.297896354641948,0.298795243423278,0.3017638691322902,0.3076512008047278,0.3113363021143799,0.3150875243123089,0.3183140856597253,0.3230777349728218,0.324771441010013,0.3282500377472444,0.3315268174173051,0.3363486842105263,0.3374636683493957,0.3401168647995164,0.3486187845303867,0.3496057078482914,0.0,2.1106884276766453,53.690306835631965,157.0441793871516,213.37462436629917,fqhc1_80Compliance_baseline,26 -100000,95780,46707,443.71476299853833,5258,53.5602422217582,4160,42.84819377740656,1628,16.673627062017122,77.37208356525132,79.71217478004537,63.35007434272507,65.07999423653516,77.16406443537899,79.50575363789622,63.27130762082792,65.00420250376868,0.2080191298723264,206.42114214915352,0.0787667218971535,75.79173276647566,222.08318,155.51309909707928,231868.0100229693,162364.89778354487,451.30652,298.3511645185523,470582.6372937983,310888.17552573845,434.35447,211.1074786019572,450051.60785132594,217697.0558451931,2950.89003,1379.5159709515715,3040318.605136772,1399710.9009726148,963.61282,439.9509505308326,993166.8928795157,446444.4519045796,1587.84798,679.5995488807614,1626625.3915222385,681624.5897533889,0.3803,100000,0,1009469,10539.45500104406,0,0.0,0,0.0,38690,403.30966798914176,0,0.0,39373,407.59031112967216,1240004,0,44524,0,0,8645,0,0,95,0.9918563374399666,0,0.0,0,0.0,0,0.0,0.05258,0.1382592689981593,0.309623430962343,0.01628,0.3478102852989279,0.6521897147010721,23.688957688469813,4.194305371481227,0.3108173076923077,0.2670673076923077,0.2088942307692307,0.2132211538461538,11.518806432666784,6.254979340528991,17.347159326404036,11694.307356778794,47.28186530267948,13.437284427438954,14.42278174150812,9.74657964917246,9.67521948455994,0.5742788461538462,0.7875787578757876,0.6759474091260634,0.619102416570771,0.1149943630214205,0.7344013490725126,0.9137529137529138,0.8333333333333334,0.7627118644067796,0.1472081218274111,0.5104236718224613,0.7082111436950147,0.6233230134158927,0.5655608214849921,0.1057971014492753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410007090043,0.0049470824378573,0.007265937366808,0.0096402921546916,0.0119393877758568,0.0138662648639843,0.0159006818946274,0.0183582668326632,0.0205914813603662,0.0228431071538225,0.0245847039895061,0.0266117941665469,0.0287097570001233,0.0307766760366148,0.0328754692076063,0.0348098323052602,0.0369534614110632,0.0391168631843117,0.0414488928604827,0.043155505580543,0.0572287270678104,0.0710064741504638,0.0848585864939094,0.0970989061794034,0.1088367291038958,0.1235975236123143,0.1354295827637003,0.1458528285835814,0.1562946838252555,0.1660774356666881,0.1779178724731853,0.1903150840404258,0.2007824811172091,0.210650602936514,0.2197388827172036,0.2301967038809144,0.2395269704914375,0.2475238619883304,0.2556228177572212,0.2625137387799963,0.2687859934778083,0.2748047879552999,0.2807612743069921,0.2857724307176632,0.2902932291603479,0.2941625333842045,0.2978970939614946,0.3014574147723663,0.3055411904638775,0.3094497733740908,0.3072097365699009,0.3037632564584505,0.3016188063063063,0.2999667874832132,0.2976658604264664,0.295221347197798,0.2920584749111023,0.2923013923013923,0.2928461669796824,0.2928650343918172,0.2939385448771831,0.2951465490072487,0.2960295591182365,0.2969928995926725,0.2978203592814371,0.2982323888744476,0.3002191796419117,0.3031949985862838,0.3063996639126173,0.3111551416683178,0.3132486388384755,0.3163653663177925,0.3183469004383218,0.3207332777819862,0.3216056891550481,0.3196239717978848,0.3195517189156444,0.327372764786795,0.3319881624966371,0.3290902283788843,0.0,2.1877367534613024,51.38627708410323,153.0863388432662,220.49965083746244,fqhc1_80Compliance_baseline,27 -100000,95643,47220,450.289095908744,5219,53.38602929644616,4109,42.34497035852075,1551,15.819244482084418,77.25911226955019,79.65475320957468,63.27736057920528,65.04545812680769,77.06090712830198,79.4608422069952,63.20338447207392,64.97580363241839,0.1982051412482093,193.91100257948324,0.073976107131358,69.65449438929738,221.02718,154.89407425867117,231096.03421055383,161950.2464986159,450.22494,298.2477085389892,470122.016247922,311221.4888062787,440.9849,214.773572793044,456843.5118095417,221348.21225407865,2872.68318,1326.6654877663327,2963706.983260667,1347260.7276709566,954.75516,428.383050568059,984223.7905544578,433898.67709830287,1506.56448,631.1558978948048,1538770.7830160074,629221.1981125686,0.3821,100000,0,1004669,10504.36519138881,0,0.0,0,0.0,38658,403.55279529082105,0,0.0,39920,413.2032663132691,1234364,0,44287,0,0,8615,0,0,74,0.7737105695137124,0,0.0,0,0.0,0,0.0,0.05219,0.1365872808165401,0.2971833684613911,0.01551,0.3574319352465048,0.6425680647534953,23.686910948374315,4.138825312061875,0.3173521538087125,0.2677050377220735,0.2141640301776588,0.2007787782915551,11.482615793954434,6.306055335648501,16.357971976876236,11798.289222322644,46.92916883929616,13.558936678071468,14.568489009791058,9.84766962809168,8.954073523341949,0.5840837186663421,0.8009090909090909,0.691717791411043,0.5761363636363637,0.1333333333333333,0.7628424657534246,0.9242761692650334,0.8858858858858859,0.7211538461538461,0.1741573033707865,0.5130907854471268,0.7158218125960062,0.6251287332646756,0.53125,0.1221020092735703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027855717512636,0.0051105770693274,0.0071453220469723,0.0095208096244513,0.0113637519711073,0.0133522090725765,0.0156412504843281,0.0175485161856733,0.0196685783216282,0.0216082871005384,0.02391937335958,0.0260807064380326,0.0280489184657951,0.0300707729393948,0.0319814241486068,0.033966126930951,0.036227079664353,0.0382926601409634,0.0404002579625122,0.0425449844665457,0.0571422599826524,0.0713380466090599,0.0855288719009566,0.0980540813747788,0.1101219705369871,0.1254090807994153,0.1375310687655344,0.1492791765671117,0.1598297544700145,0.1699438353075097,0.182494822229893,0.1943460217360682,0.2050516822602956,0.214694217411311,0.2236667989943099,0.2333566534519328,0.2424428881480321,0.2505497975617183,0.2583242358078602,0.2652275808193369,0.271801296998805,0.277976476658419,0.2829129991221618,0.2878297974637899,0.2925325110604638,0.2975537435137139,0.3015556391920712,0.305302344556778,0.3086520628250522,0.3122571949575835,0.3101821270170803,0.3078259191353855,0.3049416018190292,0.30225509390182,0.3000461976364693,0.2972305331799003,0.2944635526461777,0.2929714454703775,0.292945362482466,0.2934757371720455,0.293903923588351,0.294093268338892,0.2949334783700109,0.2957326569661371,0.2964337003350885,0.2977807736181686,0.297031666005778,0.302562818787746,0.303884207950215,0.3091520063253607,0.3134396148430758,0.3183068783068783,0.3219711236660389,0.3267341695632462,0.3330236878773804,0.3340025983229007,0.3384662296081719,0.3465186680121089,0.3509308141150319,0.3519095869056898,0.0,2.407120531252464,50.80450611972984,152.01106110011435,218.518293231938,fqhc1_80Compliance_baseline,28 -100000,95612,46825,445.4252604275614,5233,53.45563318411915,4189,43.18495586328076,1668,16.985315650755137,77.28554750318864,79.71735546732342,63.27381344368565,65.07187451612135,77.07000187142837,79.50728621212623,63.19184466837602,64.99540830973089,0.2155456317602642,210.0692551971832,0.0819687753096261,76.46620639046375,221.58488,155.17894951240925,231753.7965945697,162300.2907165743,451.08128,298.6618722802101,471131.9290465632,311718.5064738558,440.79545,214.9204471825507,457241.3818349161,221882.52405236283,2962.94433,1392.134876446815,3053090.6266995776,1410327.3598695088,1002.27726,461.9685087132032,1027220.1606492908,462359.2879762799,1619.72346,694.7069578606072,1649890.3275739446,686892.5367209523,0.38128,100000,0,1007204,10534.263481571352,0,0.0,0,0.0,38780,404.91779274568046,0,0.0,40035,415.0420449315986,1232768,0,44255,0,0,8698,0,0,73,0.7635024892272937,0,0.0,0,0.0,0,0.0,0.05233,0.1372482165337809,0.3187464169692337,0.01668,0.3687671232876712,0.6312328767123287,23.516492768130185,4.139094174926321,0.3036524230126521,0.272857483886369,0.2122224874671759,0.2112676056338028,11.694196935832744,6.478049153437001,17.78175572921239,11779.471928295168,48.05627445183111,13.90530227405377,14.464131828579424,10.022253867700805,9.664586481497109,0.5808068751492003,0.7935258092738408,0.7083333333333334,0.5815523059617548,0.1220338983050847,0.7539432176656151,0.9266247379454928,0.868421052631579,0.7368421052631579,0.1732673267326732,0.5056487504279357,0.6981981981981982,0.6494623655913978,0.5218068535825545,0.1068814055636896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025942440210782,0.0047469798861942,0.0069751858018925,0.0089647812166488,0.0111402759125869,0.0134360134054538,0.0157705215697075,0.0180716737495913,0.0204048235161755,0.0226949192466433,0.0249687121725036,0.0273116799046454,0.0292119565217391,0.0313463144114706,0.0334854617545019,0.0355096299054593,0.0374626927541038,0.0394130109670987,0.0412190856857357,0.0433104541756201,0.058146463854477,0.0728890472547396,0.0862487520361515,0.0990422404619161,0.1111216750121484,0.126640468599392,0.1381611809592637,0.1494232040429025,0.1598227758692651,0.1681567127291483,0.1805575040739022,0.1912099590101715,0.202103656875034,0.2122457478520077,0.2222369248073042,0.2318776226105104,0.24044674999441,0.2494702434625789,0.257677357761462,0.2647075684786223,0.2707573283300325,0.2761253454494355,0.2813926196375016,0.2860658591339632,0.2908736918958384,0.2959055234710499,0.2992123026060386,0.3024170954103204,0.3066772098570188,0.3108373929000488,0.3081552692167871,0.3059451135676181,0.3024625267665953,0.3007499241406216,0.298836069954571,0.2952595452595453,0.2923669079562194,0.292234668068193,0.2930955022616711,0.2941018814658638,0.2945557988508974,0.2947542728724348,0.2953327752197572,0.2956948472005353,0.2981905332534452,0.3001762388554841,0.3035911055858503,0.307123236359096,0.3110463097965701,0.3160650316891705,0.3213156230234029,0.3227047538737219,0.3275764970902947,0.332855634333987,0.3360937936168233,0.3407788562741199,0.341910095353413,0.3450901803607214,0.3429573664328116,0.3459821428571428,0.0,2.358662778664144,55.172251799354825,153.63261085975913,213.08735740380425,fqhc1_80Compliance_baseline,29 -100000,95809,46920,445.9184419000303,5279,53.98240248828398,4137,42.5951632936363,1581,16.031896794664384,77.35864855579545,79.66310047216764,63.35358995694328,65.05404972498518,77.14972787555416,79.45993441433706,63.273721255614056,64.97937620615154,0.2089206802412917,203.16605783058608,0.079868701329218,74.67351883363449,221.98088,155.536685877321,231690.82236533103,162340.1675342638,450.42056,297.69053829301504,469506.0484923128,310097.6276838272,436.02772,212.16172889223284,451986.6505234373,218897.5534380736,2912.76891,1338.8486288854976,2997405.1185170496,1354885.689530922,941.19105,421.4971161647643,967839.4931582628,425575.38247802993,1541.56676,665.5931385137817,1564688.995814589,657158.8621183601,0.38091,100000,0,1009004,10531.401016605956,0,0.0,0,0.0,38681,403.1040925174044,0,0.0,39555,409.7318623511361,1236922,0,44389,0,0,8831,0,0,69,0.7201828638228142,0,0.0,2,0.0208748656180525,0,0.0,0.05279,0.138589168044945,0.2994885394961167,0.01581,0.3388474822759498,0.6611525177240501,23.79514722162395,4.112634025066646,0.3130287648054145,0.2661348803480783,0.2131979695431472,0.2076383853033599,11.269854808596154,6.055759504381811,17.041381363414164,11758.725283094813,47.19500452457163,13.485705662914285,14.557958356558755,9.698701465427636,9.452639039670952,0.5617597292724196,0.782016348773842,0.6864864864864865,0.5612244897959183,0.0919674039580908,0.7235142118863049,0.9101382488479264,0.8526011560693642,0.6494845360824743,0.1283422459893048,0.4986559139784946,0.6986506746626686,0.6259220231822972,0.5363372093023255,0.0818452380952381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022468271157622,0.0047503772954248,0.0070054847572411,0.0092341725268146,0.0114705464003413,0.0136615635013478,0.0159006641404881,0.0181367498699417,0.0203808511942463,0.0225761574500296,0.0249918059652572,0.0271298746589533,0.0291159397955514,0.0310258600286075,0.033138120179816,0.03508500134267,0.0373328918505028,0.0392490229211805,0.0411949228244385,0.0429550044766485,0.0576415478190107,0.0720364678083767,0.0850392545307799,0.097921133392189,0.1103487526480538,0.1248982783948595,0.1368638676844783,0.1476185916871456,0.1591142051763902,0.1682786129398897,0.1804720983825461,0.1922356989061164,0.2032217013454573,0.2129547568247716,0.2218037661050545,0.2317251624060483,0.2406452333110069,0.2496511994239164,0.2575238311393554,0.2646664604598412,0.2702615135385327,0.2760626345847767,0.282107132287659,0.2868925172025222,0.2909712007196781,0.2960446822676497,0.3006993881917249,0.3040835272722648,0.3074284086789912,0.3097389492012821,0.3068571659200064,0.3046537837763545,0.3031679298077869,0.3005350215594941,0.2983150900299605,0.2951763968891809,0.2930186979405396,0.2931877070418839,0.2927095782823971,0.2941207996141272,0.2937792767472362,0.2952956511435004,0.2962947439014167,0.2969185800031238,0.2957523398128149,0.2961766009017696,0.2968046932847297,0.3032951829958495,0.3065432358510414,0.3089711542276713,0.3134294523032281,0.3150090032835504,0.3187061183550652,0.3236748041676173,0.3260080081944315,0.3308086693078536,0.3307645814445452,0.335679806918745,0.343015214384509,0.3483365949119373,0.0,2.2344827064834205,50.66006008833895,153.92785640406052,221.08881323949,fqhc1_80Compliance_baseline,30 -100000,95866,46637,442.6804080695972,5281,54.01289299647424,4190,43.174848225648304,1604,16.314438904303923,77.41454581429173,79.70367079347842,63.37712166936033,65.06825263760383,77.20799836503647,79.50057115201867,63.29932518532056,64.99442901887717,0.2065474492552539,203.0996414597581,0.0777964840397729,73.82361872666365,223.608,156.6044726276824,233250.5789330941,163357.67908088624,451.35643,299.20065519068265,470313.5418187888,311596.400382495,441.03394,215.15377547501865,456985.6883566645,221980.75489488104,2974.24689,1385.2189420912523,3064811.497298312,1407260.386467833,951.37358,431.2701934280349,978564.089458202,436032.4446915846,1561.38486,668.1657752903315,1590068.2619489706,663976.4777618845,0.37941,100000,0,1016400,10602.29904241337,0,0.0,0,0.0,38740,403.5737383431039,0,0.0,39972,413.9215154486471,1229730,0,44148,0,0,8788,0,0,87,0.907516742119208,0,0.0,2,0.0208624538418208,0,0.0,0.05281,0.1391897946812155,0.3037303540996023,0.01604,0.3579462989840348,0.6420537010159652,23.46728175374921,4.07085999489485,0.3114558472553699,0.269689737470167,0.2059665871121718,0.2128878281622911,11.306388510810557,6.1591526682108615,17.245771126712466,11694.18550156774,48.04373239415561,13.805603345367224,14.936376260500474,9.55211763128828,9.749635156999616,0.577326968973747,0.7876106194690266,0.7203065134099617,0.5573580533024334,0.1210762331838565,0.7565632458233891,0.9006085192697769,0.8810810810810811,0.7238095238095238,0.1576086956521739,0.5005114217524719,0.7001569858712716,0.6566844919786097,0.5038284839203675,0.1115819209039548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080427190362,0.0046198267564966,0.0066925580782218,0.0089639209794327,0.0108954162008334,0.0133497491834471,0.0156173594132029,0.0178403851646334,0.0198475933643866,0.0220010637427379,0.0244399602568961,0.0267314951583784,0.0291917552043731,0.0310853096179183,0.0331986143187066,0.0354162363148109,0.0372247972190034,0.0392666901569009,0.0411389777021135,0.0431359087977698,0.0571601359664671,0.0709082738512023,0.0849710861548776,0.0979115698400865,0.1095994271513415,0.1252785552093784,0.1367796610169491,0.1471801194702493,0.1574971995519283,0.1664435567645137,0.179331339687184,0.1912731361356166,0.2019341519069868,0.2122212144722607,0.2208313184156152,0.2303087307734867,0.2393684633053096,0.2487160757431027,0.2568687704815793,0.263890478697832,0.2700930797248078,0.275428731748945,0.2806849493265216,0.2847507577300444,0.2890044215538603,0.2941785252263907,0.297263821641707,0.3006117802678605,0.304398523029086,0.3072506994668215,0.3051107462927577,0.3022447043945621,0.3000844119302194,0.2982947167960296,0.2964094502202382,0.2939199511151848,0.2909291686385865,0.2912113081604607,0.2914942528735632,0.2916022394028259,0.2915781232524326,0.2926094998229113,0.2937290290311152,0.2951930338975521,0.296447695544081,0.2977099236641221,0.300420939627652,0.3052644671787058,0.3095395538231302,0.3118004099006779,0.3138419986495611,0.3155299055613851,0.3194349792453999,0.3228886899433005,0.3256007393715342,0.3286214953271028,0.3341393380686112,0.3415811707905854,0.3442845506380668,0.3476796407185629,0.0,2.1086175027925083,54.98238514913984,155.43263507003147,212.4149763305093,fqhc1_80Compliance_baseline,31 -100000,95714,46914,447.5625300374031,5305,54.22404245982824,4207,43.40012955262553,1597,16.35079507700023,77.36002699221102,79.7318318972106,63.33690834044432,65.08834538133705,77.16300877357455,79.53535580237175,63.26321208895434,65.01680952728987,0.1970182186364724,196.4760948388431,0.0736962514899843,71.53585404718399,222.58456,155.90128209165235,232551.72702008064,162882.4227298539,451.78809,298.6665498471108,471478.3208308084,311500.11476598075,440.30988,214.70174920104637,456180.2035229957,221391.40955626767,2925.06503,1353.5582688558554,3022056.6583780847,1380179.021727078,965.47296,436.5217708527832,994664.2392962368,442027.01888206793,1551.17172,652.2973532604768,1590505.8821071107,655997.5595313489,0.38057,100000,0,1011748,10570.533046367304,0,0.0,0,0.0,38893,405.7818083039054,0,0.0,39887,412.8967549156863,1233730,0,44278,0,0,8670,0,0,89,0.9298535219508118,0,0.0,0,0.0,0,0.0,0.05305,0.1393961689045379,0.3010367577756833,0.01597,0.3649701141097627,0.6350298858902372,23.280799569513384,4.10541447086389,0.3220822438792489,0.2766817209412883,0.1968148324221535,0.2044212027573092,11.441666691364098,6.181882990282905,16.976530406738945,11676.773106277164,48.08921355075867,14.213092150834386,15.463232292239676,9.113385026919808,9.299504080764804,0.5866413120988828,0.820446735395189,0.6863468634686347,0.5797101449275363,0.1197674418604651,0.7722852512155591,0.9320987654320988,0.8396946564885496,0.7754010695187166,0.1488095238095238,0.5095862764883956,0.7404129793510325,0.6237006237006237,0.5226209048361935,0.1127167630057803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864773981829,0.0040345061784711,0.0063018174806937,0.0083910684898108,0.0107713902111558,0.0128813490285528,0.0151580020387359,0.0172487701320704,0.0191055456171735,0.0213354081778906,0.0236320575781498,0.0258821596870732,0.0277860617216663,0.0297977092946605,0.0318403648332146,0.0338492395810717,0.0361131254532269,0.0379980694780325,0.0398660384619384,0.0416888083106707,0.0561507936507936,0.0705083255711729,0.0837607913480399,0.0958015186891314,0.1084941962826689,0.1236006131402294,0.1349470691813225,0.1465664939183365,0.1574428092359613,0.1668043205440367,0.1790211899555086,0.1907271153429993,0.2018236949929899,0.2126243305279265,0.2223370682735339,0.2316397944720056,0.2400365855018794,0.2484175969959638,0.2564294377004771,0.2632880098887515,0.2692907924397433,0.274665825387923,0.27989075819018,0.2844268377336812,0.2888435819953641,0.2938997070480786,0.2980043015055269,0.3016705837515086,0.3050349849325521,0.3086221214557821,0.3065321224352506,0.3042527439275988,0.3025883811697735,0.3005535562011302,0.2984258984258984,0.2952783003716789,0.2926432497315054,0.2930679141585972,0.2931662637474888,0.2943529035354343,0.2945346017534042,0.295069716218608,0.2957022799134631,0.2966144966144966,0.2971972880061115,0.2977290970765685,0.2993565577255591,0.3028413896807744,0.3071243613968787,0.3123809523809523,0.3131685556921116,0.3163162633056188,0.3197572572572572,0.3192083994259385,0.3258249907304412,0.3247663551401869,0.3259593679458239,0.3288,0.3348773841961853,0.3403121431290445,0.0,2.1770411957794056,53.74257168201729,156.76530293154457,216.39282758851272,fqhc1_80Compliance_baseline,32 -100000,95746,46962,446.1805192906231,5243,53.43304158920478,4190,43.13496125164498,1637,16.65865936958202,77.33346816806463,79.6949851151047,63.32120940122799,65.07005965746691,77.12457958666492,79.49251775563968,63.24179972384213,64.9964383096087,0.2088885813997052,202.46735946501812,0.0794096773858612,73.62134785820729,222.64022,155.98708843304354,232532.13711277756,162917.60327642254,453.77674,299.8558579544974,473321.5486808849,312561.9534544498,439.84739,214.074008141029,456087.9932320932,221015.8590535061,2979.2286,1370.355927319788,3067834.8547197795,1387479.8814778563,985.92895,441.932848170425,1015000.5953251312,446834.7170330081,1597.4923,678.7196886612311,1627401.2491383452,671635.590484229,0.3804,100000,0,1012001,10569.642596035344,0,0.0,0,0.0,38891,405.5417458692792,0,0.0,39836,412.7587575460072,1231961,0,44207,0,0,8770,0,0,89,0.9190984479769392,0,0.0,0,0.0,0,0.0,0.05243,0.1378286014721346,0.312225824909403,0.01637,0.3556370302474794,0.6443629697525206,23.810090546779257,4.196694992323336,0.3093078758949881,0.2632458233890214,0.2128878281622911,0.2145584725536992,11.11010225623928,5.837688699512353,17.396950076817184,11726.168071177346,47.75088546732536,13.470715545384907,14.651338361176467,9.866860798071729,9.76197076269225,0.5699284009546539,0.8077969174977334,0.6944444444444444,0.5650224215246636,0.1034482758620689,0.734468085106383,0.9013452914798208,0.8605341246290801,0.6886792452830188,0.1388888888888889,0.5058043117744611,0.7442922374429224,0.6360792492179353,0.5264705882352941,0.0945757997218358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330563858351,0.0047053096986168,0.0070032275744473,0.0096425450628949,0.0118996765728931,0.0143775010436925,0.0164845247318843,0.018431956890041,0.0206042271370753,0.0227549568546364,0.0250761202751606,0.0273086597197269,0.029513692502288,0.0318225352982976,0.0338502171737493,0.0358346253229974,0.0377848881157259,0.03978540371704,0.0416077518090326,0.0434021810455269,0.057898088507031,0.0717395855139208,0.0850954424774117,0.097419877357399,0.1092477745433067,0.1252115059221658,0.1372197404581772,0.1479786260192025,0.1578981102648193,0.1673227713001598,0.1797866609201594,0.1914898221996169,0.2015555313825737,0.211560971874282,0.2204020111559746,0.2298925683907409,0.2386598340980897,0.2477689875198343,0.2554360161605157,0.2629909901658863,0.2691573871717487,0.2744428594813273,0.2801263247539742,0.2852899609552782,0.2897344767773316,0.2942073733285769,0.2982837442853931,0.3026427745958371,0.3065834044423758,0.3095423319840192,0.3067894255101491,0.3043878448181119,0.3011827911621169,0.2989677326210929,0.2979247691713921,0.2946175637393767,0.291631726342104,0.2919557195571955,0.2920677179329647,0.2924432395798034,0.2938801450521515,0.2945466012337649,0.2947385989068302,0.2958985897921447,0.2970878909998081,0.2981117332986066,0.2986386840612592,0.3050278979374334,0.3084066299891369,0.3134434521457362,0.3151336656094246,0.3181049069373942,0.3220158152378561,0.3262373602980308,0.3277027027027027,0.3305539011316259,0.3382218148487626,0.3399877775514361,0.3426106317840245,0.3546153846153846,0.0,2.476472829610601,50.95544376824532,158.0765676189198,220.71264855339288,fqhc1_80Compliance_baseline,33 -100000,95793,47371,449.8240998820373,5315,54.17932416773668,4172,42.9363314647208,1600,16.3059931310221,77.34149214859087,79.67981323341151,63.33904717832892,65.07209415592457,77.1346332914088,79.47759417969993,63.2602843231693,64.9977205995412,0.2068588571820697,202.2190537115733,0.0787628551596171,74.37355638337806,222.25698,155.78576972876414,232017.97626131345,162627.5090338168,454.00963,301.15557958729426,473326.5687471945,313759.5331467793,447.74189,218.28066991035857,463713.9143778773,224999.961479789,2950.32959,1378.2907111121035,3038654.1292161224,1397575.0536178043,960.09343,431.9561073609792,984762.8949923272,433431.0412670846,1554.97416,665.5189424988786,1586127.316192206,662509.8410274992,0.38241,100000,0,1010259,10546.27164824152,0,0.0,0,0.0,38933,405.78121574645326,0,0.0,40541,419.4669756662804,1233349,0,44188,0,0,8753,0,0,74,0.7724990343762069,0,0.0,0,0.0,0,0.0,0.05315,0.1389869511780549,0.3010348071495766,0.016,0.3589420654911839,0.6410579345088161,23.73035907913256,4.154947092303117,0.324784276126558,0.2634228187919463,0.2042186001917545,0.2075743048897411,11.39489862922754,6.189555484690998,17.10765415329882,11839.027869081694,47.8167128212049,13.5163211577914,15.402485935558833,9.42355895416081,9.474346773693853,0.5848513902205177,0.8034576888080073,0.7143911439114391,0.57981220657277,0.1096997690531177,0.7570621468926554,0.9162995594713657,0.8564231738035264,0.7635467980295566,0.1459459459459459,0.5121036481418343,0.724031007751938,0.6555323590814196,0.522342064714946,0.0998531571218795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025628817731495,0.0048863071885486,0.0073367497082551,0.0098260374751046,0.012209391056621,0.0145562335109146,0.0167774967362924,0.0188095456912661,0.0211671592036239,0.0233158234264123,0.0254590942181299,0.0272329588630342,0.0293966386208882,0.0314508818196802,0.0334619670642618,0.0354429594716115,0.0376287859176805,0.0398033174617993,0.0418229615852201,0.0436710771505012,0.0588345766602326,0.0729208055375478,0.0860885512182342,0.0987084773904727,0.1114682573138858,0.1282227460597668,0.1403157236305037,0.1501409199680936,0.1605982002754027,0.1697771393656136,0.1828487151607798,0.1944576593720266,0.2044982886945184,0.2149625662604514,0.2244752092015702,0.2344448872946282,0.2431417137633905,0.2514596900965641,0.2597227570273392,0.2663800889457979,0.2723357579956125,0.2784179128871455,0.2836750369276218,0.2889005887139233,0.2930369615832363,0.296166432912576,0.2991868293840639,0.3028926091867948,0.3064137004701142,0.3084573187576463,0.3070690512341615,0.3050803240422902,0.303642016121091,0.3013710492134507,0.2993571948159914,0.2960759725960362,0.293019724458645,0.2926517152560169,0.2932147247643764,0.2936684923197687,0.2946617484599397,0.2950832625486439,0.2966296839020305,0.2976137277683439,0.2982489898018087,0.2991141219385096,0.3000743111924088,0.3029537197915021,0.3079335988439713,0.3133948456888323,0.3180859840498671,0.323149925357219,0.3259755866169123,0.3293918918918919,0.3280688481180253,0.3315081537912153,0.3324562761182479,0.3327190827190827,0.341029207232267,0.3449464012251148,0.0,2.3976829675232496,53.64390115924617,153.6145612622651,216.3217877178482,fqhc1_80Compliance_baseline,34 -100000,95704,47001,447.316726573602,5251,53.7386107163755,4128,42.579202541168605,1612,16.415196856975676,77.3419109081298,79.71151355738914,63.33255108723839,65.0811755969531,77.14080178881255,79.51613211396266,63.25694514851976,65.01120233710714,0.2011091193172518,195.38144342648425,0.075605938718624,69.97325984596614,224.00554,156.90839544845343,234060.79160745637,163951.7631953246,453.731,299.95193872777867,473543.8435175124,312861.8853211763,437.75123,212.34632067266736,455084.2911477054,220012.4797574911,2930.06101,1353.1589225698542,3018679.731254702,1370993.0228306598,929.73085,414.020325098637,957880.8095795368,419020.8613000877,1566.02612,660.772185634254,1594790.98052328,652728.7331576488,0.38115,100000,0,1018207,10639.126891248015,0,0.0,0,0.0,38937,406.263061105074,0,0.0,39706,412.4696982362284,1226656,0,44024,0,0,8632,0,0,76,0.7941151884978684,0,0.0,0,0.0,0,0.0,0.05251,0.1377672832218286,0.3069891449247762,0.01612,0.3593778591033851,0.6406221408966148,23.682651986358533,4.072747434961444,0.311531007751938,0.2718023255813953,0.2100290697674418,0.2066375968992248,11.19348402519786,6.010623574466013,17.237892754707904,11697.766577677136,47.21482271393473,13.678484939856649,14.717739097900584,9.583033935750144,9.235564740427357,0.5726744186046512,0.7878787878787878,0.6998444790046656,0.5547866205305652,0.1160609613130129,0.7624683009298394,0.917995444191344,0.903846153846154,0.6822429906542056,0.144578313253012,0.4964346349745331,0.7042459736456809,0.6193058568329718,0.5130168453292496,0.1091703056768559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023796986390149,0.0043985000506739,0.0066646378575776,0.0088770618347282,0.0110525887664212,0.0133481306508104,0.0154846733335372,0.0174634604392912,0.0197874080130825,0.0220150246658342,0.0243774923371843,0.0264817020577483,0.0286498771119772,0.0308562480038737,0.0327217567177116,0.0347643611027838,0.0367857993558342,0.0388235660394981,0.0407923468857231,0.0426984325496081,0.0571106283422459,0.0706927956786634,0.0835257082896117,0.0961983505848691,0.108866501397753,0.1243717396594961,0.1360472765081588,0.1471339749595434,0.1574145299145299,0.1671207895301437,0.1802350001615491,0.1916351044259279,0.2026408240066999,0.2118342936487978,0.2209991532599492,0.2305470081685962,0.2392012131213344,0.2472185385808365,0.2556839443455385,0.2623076483038727,0.2688878352279955,0.27500497116723,0.2813387279954571,0.2855448817765852,0.2897165618244966,0.2932107513895222,0.2977290367810911,0.3021833394794064,0.3060609197484537,0.3094146778357304,0.3065188732545938,0.3036827506659709,0.3024732103984383,0.3009810842349416,0.2987330517892865,0.2950391644908616,0.2915608286133506,0.291412950959209,0.2916283191873743,0.2926611882564751,0.2928703651764178,0.2943658916563135,0.2960443700293009,0.2970111245141402,0.2975178837198137,0.2988383273993606,0.300378066460104,0.304241512273112,0.3072069545709478,0.3106087646242316,0.3139070442992012,0.3179530645759389,0.3214420298957417,0.3251314085472689,0.3264346190028222,0.3301786348042115,0.3309440292816837,0.334833299243199,0.3351908609640568,0.3411268685320046,0.0,2.113309588039855,51.617158390443095,157.0598185093773,213.2653464559861,fqhc1_80Compliance_baseline,35 -100000,95710,46680,443.7362866994045,5236,53.55762198307387,4128,42.57653327760945,1595,16.29923727928116,77.33810060160408,79.72099257768186,63.31256206328344,65.07500772252186,77.14486747373527,79.5308267559075,63.24038764483668,65.00640363402331,0.1932331278688082,190.16582177435737,0.0721744184467567,68.60408849854593,221.61106,155.2783596362759,231544.0810782572,162238.16344820382,448.18719,296.2549136793171,467711.4721554696,308969.4360874696,438.13486,213.380300926637,454590.9622818933,220425.5494470399,2909.73589,1356.5865168668631,3003861.3311043778,1381130.9931740295,979.68188,445.4496426442537,1008713.2379061749,450535.1610534466,1548.90928,653.0440638912096,1584336.7882143978,652396.5844738885,0.37973,100000,0,1007323,10524.730958102602,0,0.0,0,0.0,38531,401.99561174380943,0,0.0,39807,412.63190889144295,1238840,0,44434,0,0,8811,0,0,71,0.7418242607877965,0,0.0,0,0.0,0,0.0,0.05236,0.1378874463434545,0.3046218487394957,0.01595,0.3655992680695334,0.6344007319304666,23.48544684041796,4.088612754626096,0.3095930232558139,0.2698643410852713,0.2124515503875969,0.2080910852713178,11.24722072973714,6.077839886888613,16.99804566228077,11742.620384062957,47.44589585781595,13.715362495188629,14.611293432402617,9.737249510823876,9.381990419400829,0.5855135658914729,0.8078994614003591,0.6995305164319249,0.6020524515393386,0.1105937136204889,0.7676348547717843,0.925531914893617,0.8575418994413407,0.7959183673469388,0.149171270718232,0.5104344851180295,0.7220496894409938,0.6380434782608696,0.5462555066079295,0.1002949852507374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024933611724878,0.0047068370866301,0.0069953499705565,0.0092282049718478,0.0113450209094331,0.0133022336752258,0.0153805356669318,0.0176596157578109,0.0200030679552078,0.0220959402037577,0.0244260092904972,0.0265746616556794,0.0285840607873983,0.0308219883426358,0.0329595510486192,0.0352079199735449,0.037190809976911,0.0392169068442839,0.0411901692518817,0.0431267969498729,0.0582313379840427,0.0710883606025395,0.0844350709309158,0.096887851155355,0.1091296415426637,0.1244644727238107,0.1366419422956525,0.1480992439569801,0.1588868940754039,0.1685314910370426,0.1807526151923553,0.1927365230569387,0.2034151013212023,0.2121812194348106,0.2219422283356258,0.2308595871056393,0.2394809719492585,0.2483090808827666,0.2568807339449541,0.2633201535728611,0.2693149320952634,0.2757886112249078,0.2802580950689635,0.2856372654733664,0.2899754669775802,0.2945166621444957,0.2993625787384318,0.3035893909876873,0.3077680085980291,0.3101951991558955,0.3076323044852397,0.3059286038296059,0.3037281935846933,0.3006130544536603,0.2983684366656778,0.2958618791289454,0.2923174101855507,0.2928760757878202,0.2935454746776144,0.2933513667425968,0.2942659693686963,0.2957100387848719,0.2964161897999248,0.2979492557963091,0.2970292285577384,0.2986663909852166,0.2990112994350282,0.3031871764485748,0.3076040471471785,0.3109952160614854,0.3149856682192762,0.3191112038389317,0.3236219986420591,0.3265047675804529,0.332107054170882,0.3376411689370124,0.346865671641791,0.3507698381365969,0.3546573875802998,0.3531612420501309,0.0,2.158105033759986,52.55839950403089,158.80445416068042,209.6947846604621,fqhc1_80Compliance_baseline,36 -100000,95644,46953,447.409142235791,5090,51.96353142904939,4003,41.20488478106311,1538,15.724980134666051,77.27782633283482,79.68754356964565,63.2892740309558,65.07173107234567,77.07785398876698,79.49037792099388,63.21353691841709,64.99948850949185,0.1999723440678451,197.16564865177588,0.0757371125387109,72.24256285381614,221.91312,155.41739116534612,232019.9071557024,162495.70403302467,448.96873,297.2223234831884,468760.3404290912,310102.81197272,437.97581,213.32588423320928,453130.5152440299,219426.5681067716,2810.55238,1318.1059493048297,2894765.704069257,1334347.4544193365,952.90758,433.6634608950629,979682.353310192,436789.8361581087,1498.48606,644.8106410993989,1532890.7824850488,644290.2870817919,0.37987,100000,0,1008696,10546.35941616829,0,0.0,0,0.0,38539,402.2625569821421,0,0.0,39637,409.6336414202668,1236179,0,44412,0,0,8802,0,0,84,0.87825686922337,0,0.0,0,0.0,0,0.0,0.0509,0.1339932082028062,0.3021611001964636,0.01538,0.3539823008849557,0.6460176991150443,23.415812632428263,4.142981524305925,0.3027729203097676,0.2745440919310517,0.2173369972520609,0.2053459905071196,11.433806739675171,6.239115164822054,16.648669297817904,11710.869103374782,46.02879638497827,13.488487602124325,13.688965092898863,9.704074671280193,9.147269018674889,0.577566824881339,0.8007279344858963,0.6864686468646864,0.593103448275862,0.1021897810218978,0.7392040643522438,0.9070796460176992,0.8492307692307692,0.7389380530973452,0.1123595505617977,0.5099220411055989,0.7264296754250387,0.6268320180383314,0.5419254658385093,0.0993788819875776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023508907038485,0.0045128184325815,0.0065478244980001,0.0089128733599601,0.0110483747901724,0.0133046729352797,0.0154614992350841,0.0178026085979552,0.0200998342914424,0.022157117833253,0.0243384615384615,0.026388503692747,0.0285852463908296,0.0304972945117237,0.0328002560422882,0.0351347158297564,0.0370658211058608,0.0388856585122731,0.0408740894901144,0.0426341636342783,0.0570753829756107,0.071259504409208,0.0848325810853364,0.0969449501699588,0.1094976783452933,0.1256642601570935,0.136908175619703,0.1483367784004944,0.1584486705029199,0.1679425374977184,0.1807894992079144,0.192331846333752,0.2029931972789115,0.2121440920928807,0.221517733306915,0.2317485291347656,0.2400531392337233,0.248722968563649,0.2558435074660736,0.2631837949187457,0.2693325934403865,0.2750081802458748,0.280977271114685,0.2853445796990319,0.2891744813177202,0.2939856484107218,0.2980736735383575,0.3020574874985685,0.306010858157223,0.3095018206765528,0.3062503369090615,0.3037257577637183,0.301546537224135,0.2981740313105883,0.2956994047619047,0.2933284266372264,0.2904156494721157,0.2910268635123138,0.2908388332250453,0.2914270405429541,0.2924194484488794,0.2929324852842413,0.293546700135969,0.2957768462361755,0.2975810898281111,0.2979374756777792,0.2984150428904164,0.3025616847399026,0.3069798563177912,0.3115425934030955,0.317070946562101,0.3216368069543093,0.3246214738958346,0.3289815238967781,0.3347142453629602,0.3405546958695393,0.3394199785177229,0.3430089942763696,0.3458771444382955,0.3532319391634981,0.0,2.532448249790133,51.00664911907501,152.13943816097557,203.9597818881934,fqhc1_80Compliance_baseline,37 -100000,95826,46963,446.5072109865799,5371,54.88072130736961,4308,44.43470456869744,1623,16.5821384592908,77.39792083527668,79.70033739027211,63.37134666233784,65.07108073016829,77.18984559453632,79.49431787402207,63.29230052694831,64.99477614752182,0.2080752407403565,206.01951625003775,0.0790461353895253,76.30458264647189,223.18494,156.18070427275083,232906.45545050403,162983.64146760883,450.62311,297.98293774752887,469716.7261494793,310427.8356057114,437.93411,212.6772169295901,453601.8199653539,219337.8549734048,3058.33607,1422.0055807510507,3154944.367916849,1447338.4058095408,1020.89793,460.4164340689656,1047642.2682779204,462754.5425558143,1581.94156,680.0244070742078,1617845.2612025964,682544.3432650889,0.38249,100000,0,1014477,10586.657065932002,0,0.0,0,0.0,38743,403.7421994030848,0,0.0,39777,411.7254189885835,1236015,0,44329,0,0,8711,0,0,77,0.7931041679711144,0,0.0,0,0.0,0,0.0,0.05371,0.1404219718162566,0.3021783652951033,0.01623,0.349609375,0.650390625,23.552758667001225,4.058789714013347,0.3119777158774373,0.2671773444753946,0.2086815227483751,0.2121634168987929,11.2358674343373,6.204313492569383,17.48984330522655,11796.38097279321,49.36481175959084,14.100230349287932,15.283367402353589,10.147368767437516,9.833845240511796,0.5875116063138347,0.8062554300608167,0.7180059523809523,0.5962180200222469,0.111597374179431,0.7445820433436533,0.9282700421940928,0.860655737704918,0.7250996015936255,0.1243781094527363,0.5202254641909815,0.7208271787296898,0.6646216768916156,0.5462962962962963,0.1079943899018232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689965173726,0.0044280517585546,0.0065520563923119,0.008793395814506,0.0110706733897202,0.0134232969001241,0.0159768498705956,0.0179954093343534,0.0199848785172773,0.0222524605594319,0.024178841464664,0.0262836624775583,0.0285919761647917,0.0307685975076407,0.0326420811774649,0.0348562283826338,0.0367354961516179,0.0388557806912991,0.0410155235969056,0.0428144740813204,0.0571091802355297,0.071013219544846,0.0843530139557317,0.0967429929140646,0.1086106397107651,0.1240789487594219,0.1363313433785403,0.1477227975689972,0.1585025801006399,0.1676910699919549,0.1799911684563107,0.1919112159136388,0.2033878034726073,0.2136890443909906,0.2231521296835993,0.233229631433854,0.2419964540193356,0.2509050028105677,0.2589699697316661,0.2656430557303525,0.2711972164745864,0.2776492851135408,0.2829204847768253,0.2885726936562833,0.2926223148911409,0.2967235696364441,0.3004395275079289,0.3046591341881426,0.3089950099542363,0.3124128128865843,0.3103096656469704,0.3070847787634888,0.3048777063266968,0.3032235771772463,0.3013309251336106,0.2984876665548678,0.2950328672541261,0.2952085036794767,0.295449901232886,0.2954080088314371,0.2963398473225451,0.2975196850393701,0.298641967582452,0.2988646755737961,0.300734729158663,0.3002105919975041,0.3005160664898925,0.304997796940895,0.3088559722659943,0.3133354425373724,0.3172084564673789,0.3216980129635532,0.3278347919158849,0.3278326996197718,0.3325498307634449,0.3375886524822695,0.3430267965895249,0.3402,0.3347708894878706,0.3412073490813648,0.0,1.9876245406625743,56.82852874537862,156.99142215806316,221.4483040721262,fqhc1_80Compliance_baseline,38 -100000,95548,46896,446.2992422656675,5252,53.80541717252062,4151,42.805710218947546,1574,16.033825930422406,77.19945181010942,79.67010839051845,63.224607941291474,65.05358288613799,76.99824262666066,79.47426011623334,63.148612425386936,64.98276294129901,0.2012091834487677,195.84827428511176,0.0759955159045375,70.81994483897347,221.89948,155.4811396823631,232238.7491103948,162725.6872800719,449.71315,297.63824499407315,470029.0115962658,310868.27039192145,437.18437,212.4231261607992,453968.5917025997,219533.171541299,2951.76856,1366.6771900595638,3044394.21023988,1385548.717172895,999.48974,446.7201267623563,1032391.865868464,453916.8419957168,1536.94616,656.9198761236063,1567112.17398585,651012.6851479516,0.38003,100000,0,1008634,10556.306777745216,0,0.0,0,0.0,38599,403.30514505798135,0,0.0,39695,411.89768493322725,1230052,0,44130,0,0,8773,0,0,75,0.7744798425922049,0,0.0,0,0.0,0,0.0,0.05252,0.1381996158198037,0.2996953541507997,0.01574,0.3518484793298124,0.6481515206701876,23.496786948212627,4.159473856042513,0.2977595760057817,0.2724644663936401,0.2134425439653095,0.2163334136352686,11.269854378041185,6.071428484051133,16.867395731387276,11783.673901637378,47.62382076147705,13.840589170352734,14.136889487075926,9.761931284642182,9.884410819406206,0.5764875933509997,0.7939876215738285,0.7022653721682848,0.5914221218961625,0.1146993318485523,0.7389491242702252,0.9112554112554112,0.8571428571428571,0.7552083333333334,0.1287128712871287,0.5105013550135501,0.7130044843049327,0.6427771556550952,0.5461095100864554,0.1106321839080459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021287163840204,0.0045555082080314,0.0067836542367373,0.0089169513583862,0.0111780754978213,0.0134355440477889,0.0158391590549573,0.0176885346413243,0.0200675399099467,0.0222896319904897,0.0246158268064095,0.0265595919920208,0.0286199794026776,0.0306887694577113,0.0328424533664031,0.0349878370684747,0.0372740378133394,0.039358949042269,0.0415416666666666,0.0435350002610012,0.0584130969192949,0.0720330540378988,0.0855478933647296,0.0987565858798735,0.1110582614578048,0.1268845020249782,0.1392795591395561,0.1509087610326684,0.1609063638311549,0.1695649835995053,0.1816110325165498,0.1930176782749302,0.2037483500059999,0.2136009652297905,0.2227507504856083,0.2321910580394335,0.2410482499328618,0.2485781990521327,0.2567761316310507,0.2627057323670277,0.2698458719426629,0.2757419763364955,0.2816254878005385,0.2855444545847543,0.2898799522731147,0.2940965745556063,0.2988765455344254,0.3026280555449294,0.3069326204318937,0.3109735940867679,0.3094508697823182,0.3067849859449925,0.304006428329762,0.3025518687197281,0.3001963818138538,0.2969238790406673,0.2934157356786308,0.293186227761518,0.2938074611789279,0.2943260507810403,0.2957259821227371,0.2971341487550963,0.2978459598613008,0.2975835890085772,0.2980942973474353,0.3001932518541731,0.3019616801347762,0.3054603753418629,0.3102091020910209,0.3147071617827342,0.3188713318284424,0.3220971813209928,0.3244084682440847,0.3269419491205556,0.3331167625765732,0.3311764705882353,0.3370465151287069,0.3381537242472266,0.3384823848238482,0.3382857142857143,0.0,2.4855705197190345,52.04434125392508,155.6863978657936,217.36138173610289,fqhc1_80Compliance_baseline,39 -100000,95684,46753,444.7661050959408,5275,54.011119936457504,4152,42.83892813845575,1566,15.990134191714391,77.33990302576841,79.73048305233247,63.32261558699434,65.08891097812999,77.14294889489803,79.5368678188081,63.24804309244647,65.01831022510596,0.196954130870381,193.61523352436905,0.0745724945478656,70.60075302402424,222.43166,155.73991736631763,232464.84260691443,162764.8482152895,450.66731,297.7577971605506,470440.0840265875,310633.3108571449,435.05283,211.3073888947396,451227.7810292212,218159.9519112624,2917.74423,1349.5156469921749,3013576.1360311024,1374609.7644247478,978.71596,434.788566660342,1008869.0167635132,440406.7938843914,1521.9997,643.3290137398728,1556494.293716818,642474.4566596182,0.38042,100000,0,1011053,10566.583754859746,0,0.0,0,0.0,38731,404.2055098031019,0,0.0,39453,408.8771372434263,1236422,0,44417,0,0,8880,0,0,79,0.825634379833619,0,0.0,1,0.0104510680991597,0,0.0,0.05275,0.1386625308869144,0.2968720379146919,0.01566,0.3487272727272727,0.6512727272727272,23.557582331837583,4.245944452706313,0.3234585741811175,0.2639691714836223,0.203757225433526,0.2088150289017341,11.493327444642896,6.160719764823659,16.639325379634673,11735.27116395856,47.45390075944521,13.392978438528353,15.345943990767465,9.423093885193156,9.291884444956231,0.5785163776493256,0.8166058394160584,0.6813104988830976,0.5650118203309693,0.1314878892733564,0.7726523887973641,0.945770065075922,0.8663101604278075,0.7209302325581395,0.1402439024390244,0.4982981620149762,0.7228346456692913,0.6099071207430341,0.5118858954041204,0.1294452347083926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044498504890781,0.0065854227760245,0.0088875797342867,0.0112565205454379,0.0136403428408558,0.0155542871121621,0.0176165591573446,0.0198622015047432,0.0217404655161825,0.0241119483315392,0.0261245355067851,0.0281036947155182,0.0301179378894782,0.0323769222830013,0.0345134207370031,0.0365516312512303,0.038696685662089,0.0407277947693652,0.0428033817381967,0.0576234003656307,0.0718204279911219,0.0852445600856117,0.0978329476120345,0.1100479983121472,0.1250105788761002,0.1368555060471037,0.1482092491086158,0.1595377698033812,0.1691379070041705,0.1813668475919703,0.192488720096082,0.2035276974270863,0.2133407679524184,0.222408100374202,0.2330150853952994,0.2415597456208858,0.2491618477600522,0.2571302157783677,0.2640709991411394,0.2702249465101486,0.2763679294907012,0.281277350680071,0.2862051625879986,0.2899883529069203,0.2944043721227936,0.2987451254874512,0.3023111032055599,0.306790538791988,0.3099033529791807,0.3078848223896663,0.3058983591237666,0.3033083320433981,0.3009747996245216,0.2985344993986548,0.2950200938221047,0.2907922371184487,0.2905586848310191,0.290589856576552,0.2911466666666666,0.2910539673061133,0.2924812474159825,0.2931340047121619,0.29486379241161,0.2958611097789075,0.2966858864474572,0.297452355931722,0.3017436026091319,0.3070138597228055,0.3107623141538825,0.3141836919182788,0.317340644276902,0.3215088683487384,0.3253566845323469,0.330518697225573,0.3312668148321441,0.334747046349591,0.3413306451612903,0.3427785419532325,0.3462414578587699,0.0,2.2127224536190564,52.88650701860784,153.9941621429614,214.86438708631687,fqhc1_80Compliance_baseline,40 -100000,95785,46846,444.9757268883437,5118,52.20024012110456,4085,42.07339353761027,1574,16.098554053348646,77.331780499572,79.67269398160225,63.32970022966426,65.0626363695338,77.13276609972952,79.47639184499202,63.25459512349944,64.99133101242413,0.1990143998424827,196.30213661022825,0.0751051061648269,71.30535710967933,222.89828,156.1605921815556,232706.87477162396,163032.40818662173,451.0745,298.80582065782687,470369.9953019784,311400.76281028026,439.55078,214.5315529088275,454900.6838231456,221022.50801030188,2829.26276,1328.2734744879535,2913905.089523412,1346865.0670647323,918.16672,417.6938085838981,943037.855614136,420541.7326135582,1523.77012,644.9104287133787,1559163.459831915,644573.600522751,0.37974,100000,0,1013174,10577.585216891996,0,0.0,0,0.0,38790,404.3848201701728,0,0.0,39810,411.6928537871274,1231161,0,44208,0,0,8820,0,0,82,0.8560839379861148,0,0.0,0,0.0,0,0.0,0.05118,0.1347764259756675,0.3075420085971082,0.01574,0.3487677371172517,0.6512322628827483,23.58090544975889,4.066255251830426,0.3258261933904529,0.2756425948592411,0.1975520195838433,0.2009791921664626,11.21839687620515,6.073235380281886,16.81265393451826,11688.939949444148,46.99134814784963,13.81409116918582,15.076316993576404,9.132573616928518,8.968366368158906,0.5755201958384333,0.8019538188277087,0.6972201352366642,0.5588599752168525,0.0840438489646772,0.7358642972536349,0.9123173277661796,0.8243243243243243,0.6863636363636364,0.1065088757396449,0.505795574288725,0.7202472952086554,0.6482830385015609,0.5110732538330494,0.0782208588957055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024816409217523,0.0046733709095332,0.0069205556739423,0.0091023609248648,0.0111568777015001,0.0134828256906893,0.0158234946269448,0.0181407979092653,0.0204248533049825,0.022613502584839,0.0246955345060893,0.0268602466296345,0.0291610541577123,0.0311601891243214,0.0332738175100368,0.0352217512664116,0.0373258764434778,0.039548198394424,0.0415151200249402,0.0433478763393275,0.0589812891982426,0.0727630285152409,0.0857295608692461,0.0982409314446639,0.1098256150887729,0.1243870995012258,0.1368294983624974,0.1481316063718922,0.1586036136991856,0.1675291697470348,0.1798904209857805,0.1904210788184266,0.2021423522375074,0.2117172291607428,0.2208918431130871,0.2297559300251493,0.2383720281592717,0.2463505701882633,0.253758929583853,0.2608745421245421,0.2675097388711001,0.2736812583261271,0.2790741682534801,0.2825995807127882,0.2870203982515784,0.29164612502465,0.2966129274520603,0.3004661351537227,0.3038953970557744,0.3080324147397318,0.3061913797047623,0.3043060097276799,0.3021031159879018,0.2996591664018948,0.2976335401882479,0.2944868870278794,0.2912755077809615,0.2912052758501894,0.2919135855178891,0.292256156231068,0.2932405380628987,0.2943367960418679,0.2950991270123725,0.295813330356146,0.2966221901670874,0.2988284300963291,0.2978058208276489,0.3017551543972718,0.3077325338167619,0.3119889393640134,0.3168096599936447,0.3195055965200785,0.3247474747474747,0.3269172245891661,0.326924880427647,0.3297118564005668,0.3287964520568894,0.3319951826575672,0.3350756533700137,0.3461538461538461,0.0,2.225528217807766,53.80456468726591,151.83774598580325,207.1308785486087,fqhc1_80Compliance_baseline,41 -100000,95681,46896,445.34442574805865,5256,53.82468828712074,4156,42.78801433931502,1616,16.53410813014078,77.34192318165195,79.71657902082443,63.32298576779221,65.0748817445983,77.13438290711561,79.51243297074063,63.24553167050114,65.00122406413621,0.2075402745363419,204.14605008379283,0.0774540972910742,73.65768046209098,221.892,155.44634596911894,231908.1113282679,162463.12848853893,449.55994,297.36362535943925,469210.1566664228,310143.76455036976,434.45921,211.7232136582506,449312.87298418704,217684.64602404105,2950.91622,1366.612178014934,3045241.6467219195,1389422.7882389743,981.43545,441.8621271255528,1008494.392826162,444564.957646296,1571.33414,667.1664249837605,1609995.0878439816,670301.6007610243,0.38075,100000,0,1008600,10541.277787648542,0,0.0,0,0.0,38553,402.2742237225781,0,0.0,39370,406.778775305442,1236754,0,44349,0,0,8761,0,0,90,0.9406256205516248,0,0.0,0,0.0,0,0.0,0.05256,0.138043335521996,0.3074581430745814,0.01616,0.3431533006001091,0.6568466993998909,23.8182412496737,4.071867766626132,0.3010105871029836,0.2678055822906641,0.2201636188642926,0.2110202117420596,11.195198353094966,6.081523393307279,17.339911583403836,11788.920044799044,47.52023409695073,13.526889851735362,14.272023721656078,10.140296633941194,9.581023889618091,0.5697786333012512,0.7753818508535489,0.6954436450839329,0.5890710382513661,0.1094640820980615,0.7450980392156863,0.8950892857142857,0.8524590163934426,0.7268722466960352,0.1857923497267759,0.4965893587994543,0.6947368421052632,0.6305084745762712,0.5436046511627907,0.0893371757925072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024604355882263,0.0045509370470601,0.0068880164744311,0.0088873991915005,0.0111559700202373,0.0134084013764737,0.0158228493362967,0.0179918924162437,0.0204100414131601,0.0226286041939711,0.0247008520717339,0.0267614167325604,0.0289643397138537,0.0311688579318303,0.0335070967741935,0.035770054084239,0.0379543594683903,0.0399314926302678,0.0418165935231598,0.0438601975740902,0.058580203066895,0.0715901237670415,0.084933088428234,0.0981512463566821,0.1100829341380547,0.1257936843887572,0.1376700039282719,0.1484992437637134,0.1595019238991021,0.1696665271382726,0.1814055778954063,0.1934722342545265,0.2045516385681167,0.214081733136386,0.2230819181368934,0.2321531439712855,0.2405590346382684,0.2483200324174649,0.2557422047797829,0.2631066626966858,0.2704428710259614,0.2755877880453854,0.2813102803517118,0.2860926993563543,0.2907865168539326,0.2953078022573808,0.2998247151621385,0.3035596152867538,0.3066925817946226,0.310001056356626,0.308317715425998,0.3064740665187248,0.3047034764826176,0.3023699146484121,0.2995417673839218,0.2958609727019839,0.2922367215393851,0.2926297140794934,0.2937520277308198,0.2952403015129105,0.2959679832435667,0.2975786064149154,0.2984107068172313,0.2997230782973781,0.3016200153374233,0.3031002724088728,0.3023486415276086,0.3061415846225973,0.3091339789591026,0.3148046013236684,0.3193235625704622,0.3227011947997263,0.3276768941765811,0.3314577237602221,0.3372792009618052,0.3383973095210483,0.3401370679380214,0.3430037497533057,0.3503373819163293,0.3579376854599406,0.0,2.5805197861657074,53.10053304073789,150.0284340049582,218.6874315923372,fqhc1_80Compliance_baseline,42 -100000,95744,47044,448.2682987967914,5253,53.63260360962567,4168,43.00008355614973,1624,16.585895721925134,77.32392886815877,79.68696476908718,63.31606620966248,65.06462237482322,77.1137094613016,79.48052424393087,63.236496911773415,64.98880074421575,0.2102194068571776,206.44052515631017,0.0795692978890656,75.82163060746439,222.72184,156.0273237259285,232621.7830882353,162962.59120981835,449.094,297.77379246842725,468535.7933656417,310489.98912456894,441.59161,215.3309652239321,458222.55180481286,222551.94968291488,2974.20855,1387.9741076142914,3068560.5050969254,1412062.52560758,965.91768,436.8956531495686,994016.0427807488,441731.1181650733,1584.78488,682.4469202873144,1620194.6022727273,682639.8727560252,0.38106,100000,0,1012372,10573.717413101604,0,0.0,0,0.0,38714,403.8059826203208,0,0.0,39959,414.39672459893046,1229650,0,44194,0,0,8838,0,0,72,0.7415608288770054,0,0.0,0,0.0,0,0.0,0.05253,0.1378523067233506,0.3091566723776889,0.01624,0.3471918307804522,0.6528081692195478,23.47224590311958,4.171294373023862,0.312619961612284,0.2663147792706334,0.2094529750479846,0.2116122840690978,11.461011420325132,6.145196538318762,17.442290727707704,11755.692422965849,47.86930833792491,13.564359039954232,14.971944267829311,9.752567748371046,9.580437281770324,0.5760556621880998,0.8036036036036036,0.7022256331542595,0.5624284077892325,0.1167800453514739,0.7291021671826625,0.9022869022869024,0.8430379746835444,0.6774193548387096,0.1407035175879397,0.5073018080667594,0.7281399046104928,0.6409691629955947,0.524390243902439,0.109809663250366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021878513476556,0.0044307455210942,0.0067489394523717,0.009043061228637,0.0113012165846116,0.0134928716904277,0.0156597271781905,0.0178733655210428,0.0198856955903853,0.0218490836490222,0.0240319058408603,0.0262633729645372,0.0283749190389538,0.0303239429366019,0.0323392838716334,0.0344820457693341,0.0365621245390893,0.0385477643542159,0.0402645480637244,0.0422674612435405,0.0571070626924883,0.0712970518695206,0.0843163777826711,0.0964363452822847,0.1087162831895733,0.1247223338763248,0.136427298192004,0.1473641619728057,0.1583793541771259,0.168165882214193,0.1808492312992549,0.1932385958081889,0.2047490649734713,0.2138256809508709,0.2232011262896236,0.2318802055644161,0.2415821251994955,0.2498171301245766,0.2576096458860795,0.2641615448124025,0.2708205383732922,0.2771366645187745,0.2817430681508351,0.2857948545646539,0.290418360145051,0.2947091775041334,0.2992805935729684,0.3032817179634232,0.3071795403849147,0.3099218884233621,0.3079993527158962,0.3054687177227218,0.3036318520189487,0.3017268809117468,0.3001055087453375,0.2965896926135494,0.2942877002306404,0.2949767502783417,0.2950168717406864,0.2954557590644524,0.2964976183804987,0.2979772091005875,0.2994716066915895,0.3001359998216396,0.2998680896990047,0.3001066236704548,0.2999403866352513,0.3021435755594669,0.3086011674520008,0.3119895329474269,0.3125993911581625,0.3147041717337281,0.3157696886160015,0.3198457116926335,0.3244815614150323,0.3311305168751475,0.3322314049586777,0.3342487249901922,0.3328947368421052,0.3354620586025544,0.0,2.0570645646286705,56.673437904235485,148.87594295635526,211.862733280662,fqhc1_80Compliance_baseline,43 -100000,95799,47299,449.6289105314252,5266,53.77926700696249,4167,42.96495788056242,1582,16.13795551101786,77.4066300966336,79.74597728424216,63.35719594835807,65.08768379542465,77.20398712902822,79.54648097330156,63.28020010511774,65.01439926116018,0.2026429676053851,199.4963109406029,0.0769958432403257,73.28453426447368,223.3506,156.41840713566484,233145.0223906304,163277.70345793257,453.00465,299.8944194125053,472369.6907065836,312545.2347232281,443.31218,215.65977129522264,459936.8991325588,222836.4620528883,2923.41479,1356.8005863684773,3015030.5118007497,1379716.7782215644,973.76956,440.7724225929757,1002077.1824340548,445709.659995177,1538.28948,657.3070337431421,1570968.1729454375,656839.8954657656,0.38234,100000,0,1015230,10597.501017755923,0,0.0,0,0.0,38936,405.891501998977,0,0.0,40148,416.18388500923805,1229456,0,44173,0,0,8893,0,0,72,0.751573607240159,0,0.0,0,0.0,0,0.0,0.05266,0.1377308155045247,0.300417774401823,0.01582,0.3373954165150964,0.6626045834849036,23.947311572459657,4.072186819677499,0.3170146388288937,0.2704583633309335,0.2099832013438924,0.2025437964962803,11.183093892446786,6.063733326805369,16.824432217334802,11794.616780008117,47.48329414938691,13.704129061537229,14.852253290096918,9.703844014684956,9.223067783067789,0.5903527717782577,0.8118899733806566,0.7108251324753975,0.5714285714285714,0.1255924170616113,0.7487520798668885,0.9130434782608696,0.8633720930232558,0.6995305164319249,0.1837837837837838,0.5261382799325464,0.7421289355322339,0.6571136131013307,0.5302114803625377,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0043398024781488,0.0064846104667092,0.0086971541204799,0.0108420378149123,0.0131260055803344,0.0153952814991537,0.0176083295054356,0.0199313136268858,0.0222890826476728,0.0246377108655994,0.026545312756526,0.0285206273510246,0.0306468050937316,0.0325533450159777,0.0349121774418388,0.036922090148247,0.0392270691656991,0.0412878827232963,0.043300364393545,0.0583797658548801,0.0723458545971722,0.0857598054629687,0.098956417559089,0.1110385300222308,0.1261874319769223,0.1382691186602363,0.1500249864435253,0.1606679827135464,0.1697428041948303,0.1823747780706945,0.1940374363355212,0.2039820460152369,0.213784140921054,0.2222942391352111,0.2315147760087627,0.2403876176457469,0.2478333689286557,0.2560953482570139,0.2628868339132027,0.2697506098900463,0.276124373400638,0.2815881914629387,0.2870331565145546,0.2920157354119618,0.2961119597890898,0.3012438682550806,0.3051599613447943,0.3088562700631666,0.3119673904440281,0.3096347573129343,0.3064726832689319,0.3047322698280839,0.3019058619693907,0.3001542294459604,0.2975317693059628,0.2939182798410997,0.2936143811125443,0.294439735548398,0.2957579405828405,0.2969390035004096,0.2976185805641649,0.2982251963922025,0.2995829266128316,0.3002096036585366,0.3016994610207081,0.3019548194467917,0.3055503818215682,0.30929337079821,0.3116674502429086,0.3151675801958846,0.319669559761581,0.3234875224472103,0.3263660794266945,0.3297813705677016,0.3335644136337377,0.337568058076225,0.3442752620130512,0.3482167165804519,0.3520485584218513,0.0,2.066576410469594,52.45096579374658,151.4180764220164,221.55980190515413,fqhc1_80Compliance_baseline,44 -100000,95697,46812,444.5593905765071,5320,54.36952046563633,4213,43.53323510663866,1634,16.719437390931795,77.29491858535671,79.69784604119785,63.29396199958445,65.07442245262745,77.09324436185413,79.499024107401,63.21794820364014,65.002230131044,0.2016742235025788,198.8219337968502,0.0760137959443127,72.19232158344369,222.73328,155.97305884738105,232748.21572254092,162986.1584824632,448.84015,296.3329363837762,468520.5596831667,309156.9772441654,434.94675,211.59955613672275,452140.1193349844,219292.695480238,2978.2553,1381.9009646952202,3076036.103535116,1408038.468882868,980.02953,442.638848437918,1008831.457621451,447325.2919149468,1588.89914,669.6894496389241,1625943.780891773,668282.3469704747,0.38037,100000,0,1012424,10579.464351024588,0,0.0,0,0.0,38562,402.426408351359,0,0.0,39442,409.8247593968463,1235932,0,44367,0,0,8819,0,0,78,0.8046229244385926,0,0.0,1,0.0104496483693323,0,0.0,0.0532,0.1398638168099482,0.3071428571428571,0.01634,0.3403911717207967,0.6596088282792033,23.86871608093557,4.121218147852882,0.3161642535010681,0.2653690956563019,0.2129124139568003,0.2055542368858295,11.175662902652643,5.98131814105776,17.346187132501562,11774.52883326844,48.23653010629106,13.726402556728784,15.15227820432058,9.967876431626683,9.389972913615017,0.5829575124614289,0.8023255813953488,0.7079579579579579,0.5964325529542921,0.0935334872979214,0.7559808612440191,0.9100877192982456,0.8875,0.7123287671232876,0.1229050279329608,0.5096316323082122,0.7280966767371602,0.630901287553648,0.5589970501474927,0.0858806404657933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0045460541670471,0.0069770984613822,0.0092827004219409,0.0115944094383989,0.0139940680643747,0.0161537205600228,0.0181953781083345,0.0202459385358268,0.0222190352287976,0.0246291775229263,0.0268226785695941,0.0289671636876279,0.0311037823353601,0.0330622019447139,0.0351824274013402,0.0373053128983119,0.0395057882988111,0.041831819647743,0.043747459270146,0.0589046390406451,0.0727552558840774,0.085856412732062,0.0987194461104622,0.1111626925511711,0.1266467034187944,0.1374800976541768,0.1479876490630323,0.1576888964876099,0.1681455809611691,0.1801992997576084,0.1918940557851687,0.2031985561921743,0.2132075677920715,0.2218422152330261,0.2315281299480694,0.2399535890398732,0.2487116592029165,0.2565060405123081,0.2630505055136523,0.2693781621571556,0.2758826489415234,0.2818118334931174,0.2876722184251232,0.2916378126860322,0.2959230247332388,0.2997170118454333,0.3034971440202526,0.3064666321779617,0.3094560404807084,0.3072425195580289,0.3045764736574716,0.3024600194101017,0.3006592518861528,0.2989897191686323,0.2967186017325293,0.2941912195430869,0.2940568390653715,0.2947120472467825,0.2954354772487906,0.2955555138995632,0.2962325719371106,0.2968975846827408,0.2964552322202852,0.29853766653015,0.2992489438272571,0.3007300102657693,0.305184393372528,0.3094979884554836,0.3159414556962025,0.3209033374311342,0.3240466101694915,0.3283479349186483,0.3332575757575757,0.3355466192836435,0.3366430260047281,0.342908980949501,0.3434730056406124,0.3377573131094258,0.3360840210052513,0.0,1.8513978976347385,55.21188212346966,153.44455993258265,218.181613979244,fqhc1_80Compliance_baseline,45 -100000,95706,46833,445.4475163521618,5290,53.82107704846091,4130,42.42158276388105,1590,16.143188514826655,77.3593554540744,79.73122170534378,63.33143217950936,65.08424054411783,77.15439803873105,79.53180155308071,63.25313570668642,65.01088696218751,0.2049574153433582,199.4201522630732,0.0782964728229416,73.35358193031993,223.267,156.23482522069935,233284.224604518,163244.54602710315,451.6629,299.30658151623805,471197.28125718347,312011.9218012342,439.68742,214.67971281256612,455079.4725513552,220934.5737105562,2878.63063,1341.516883292512,2957674.649447265,1352645.2717992817,928.47424,421.61675277179495,950279.8570622532,420961.4866148532,1529.6805,655.0482236450138,1554801.7679142377,647723.110220605,0.37923,100000,0,1014850,10603.828391114454,0,0.0,0,0.0,38770,404.3320168014544,0,0.0,39872,412.2521054061396,1229948,0,44163,0,0,9019,0,0,76,0.7836499279042066,0,0.0,1,0.0104486657053894,0,0.0,0.0529,0.1394931835561532,0.3005671077504726,0.0159,0.3480383294160188,0.6519616705839812,23.58241009560001,4.066939481356037,0.3164648910411622,0.272639225181598,0.2167070217917675,0.1941888619854721,11.535317037141908,6.382915767443927,16.969915231843895,11637.15317020011,47.00195091953523,13.622568164491309,14.81867007085229,9.89631844745491,8.66439423673673,0.5835351089588378,0.7895204262877442,0.6931905126243305,0.5932960893854748,0.1047381546134663,0.7658536585365854,0.9273127753303964,0.8541666666666666,0.7368421052631579,0.1524390243902439,0.5062068965517241,0.6964285714285714,0.6262188515709642,0.5442278860569715,0.0924764890282131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396669772718,0.0046326801625999,0.0071843891747085,0.0095874550588044,0.0117141026814313,0.0140389098720311,0.0161883888067689,0.0181899842802604,0.0202817362147574,0.0224408521790763,0.0245398143875301,0.0268079992604689,0.0289620972056463,0.0310635798844002,0.0330110311948569,0.0351154665178109,0.0370013769398805,0.0391855870059017,0.040898222268427,0.0429583333333333,0.0576951191495582,0.0718121016108267,0.0852365116498641,0.0977043525811574,0.1097378356147048,0.125575244644274,0.1366501814785728,0.1473077864968749,0.1573935533515731,0.1670798587634287,0.1787723344181735,0.1901091287025809,0.201024926829799,0.210913986144097,0.2203886489821098,0.2295825570047023,0.2379558782462999,0.2466442386669217,0.254207474153682,0.2608720557235817,0.266497755564811,0.2723680364762962,0.2780719587726348,0.2831538645608997,0.287542299901755,0.2913154235223175,0.2953982743528823,0.29848546452531,0.3023279875840662,0.3049934123847167,0.3034011229616097,0.3016341664377918,0.2990946733104077,0.2967453366124462,0.2943221492396,0.2920380952380952,0.2888623056097714,0.2889200789907463,0.2906081666638345,0.291063980832372,0.2910695626212867,0.2925969679070683,0.2931668966670848,0.2925968134790284,0.2930918685536099,0.295755623668762,0.2962384669978708,0.299564030988301,0.3038156192074983,0.3063777725155892,0.3094438900480812,0.3146031746031746,0.3182563714357809,0.3239425981873112,0.3283359716919639,0.3356332592679218,0.3401329706860078,0.3450606241303915,0.3445105462412114,0.3496424538953707,0.0,2.817058406560066,52.83006958034274,146.75533467185443,215.96485152871628,fqhc1_80Compliance_baseline,46 -100000,95882,46822,444.9218831480361,5353,54.58793099851901,4243,43.59525249786196,1634,16.65588953088171,77.4394230829848,79.71879259943914,63.39129033748679,65.07679183628929,77.23323981746283,79.51507191953314,63.31467420056791,65.00341721147117,0.2061832655219717,203.72067990599876,0.0766161369188793,73.37462481811485,223.21794,156.33309427404572,232804.84345341148,163047.38561361437,453.0529,299.6534038864873,471797.5323835548,311809.73893586633,439.88791,214.91067708882397,453976.0226111261,220551.33646096117,3016.04673,1391.9188154903063,3105998.2687052838,1412538.860240765,1004.14549,449.1738273129001,1031925.8672117812,453154.91792161134,1595.03486,670.725798297241,1629069.814980914,671296.1161988263,0.381,100000,0,1014627,10582.03833879143,0,0.0,0,0.0,38823,404.2364573121128,0,0.0,40014,412.5383283619449,1233140,0,44267,0,0,8935,0,0,93,0.9595127344027032,0,0.0,0,0.0,0,0.0,0.05353,0.140498687664042,0.3052493928638147,0.01634,0.3497934997306518,0.6502065002693482,23.679991975567955,4.211348986309983,0.3030874381333961,0.2632571293895828,0.2194202215413622,0.2142352109356587,11.518602984690569,6.304996661600264,17.37484648199866,11757.735879611124,48.12364930959381,13.69266353778909,14.370305810972464,10.163665711312362,9.897014249519897,0.5847277869432006,0.8039391226499553,0.7107309486780715,0.5918367346938775,0.1298129812981298,0.74185667752443,0.9224318658280922,0.8911764705882353,0.6971153846153846,0.1133004926108374,0.5207296849087893,0.715625,0.645877378435518,0.5615491009681881,0.1345609065155807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022575420125531,0.0046211844825489,0.0070704713985737,0.0092294570967316,0.0114547653653429,0.0135528377525894,0.0159001782531194,0.0180334557323541,0.020146295615218,0.0223408825876143,0.0247136211807619,0.0270872023229328,0.0289986127524019,0.030974316743013,0.03299003082506,0.0348594676083679,0.036953508100391,0.0387520593507475,0.0406341164623194,0.0425790880813923,0.0577253822821226,0.0720405391286177,0.0849170200513062,0.0974383202099737,0.1095263157894736,0.1252507337260615,0.1366717505507541,0.1484417336974423,0.1587071465120245,0.1690353374285653,0.1818240454076367,0.193545598928228,0.2047120930687261,0.2145932125609143,0.2245140293781335,0.2332234075516798,0.2419595693939866,0.2495198085973918,0.2572211775899957,0.2637763324836832,0.2694634980022633,0.2751768744016625,0.2816218963092523,0.28634693413446,0.2908627593738624,0.2957309567186961,0.2994475276236188,0.3026397653541907,0.3057224440223781,0.3095830208292214,0.3066826096302665,0.3044092630192613,0.3022047465243646,0.2999812601807672,0.298037182430931,0.2952103303009952,0.2923839126524558,0.2918314647141503,0.2914072864578018,0.2924339009535309,0.292925715350918,0.2938737003478842,0.2950707011807826,0.296190349476672,0.2971338792610931,0.2996250808015513,0.3017017919531162,0.3043046151934903,0.3084141274238227,0.3106583072100313,0.3162177959624118,0.3210415570752236,0.3253185111166625,0.3256995525896716,0.3322014714204867,0.3332936838348995,0.3361162646876932,0.3374283374283374,0.3357300884955752,0.3423149905123339,0.0,2.540978022498066,53.06272706880038,153.44307209907083,222.86071323840636,fqhc1_80Compliance_baseline,47 -100000,95752,46903,446.89405965410646,5242,53.795220987551176,4162,43.03826551925808,1557,15.957891218982372,77.34647984393533,79.69742875203153,63.33814763576003,65.07464110139803,77.14841353512735,79.50081078802457,63.26368235247026,65.00251804615557,0.1980663088079808,196.6179640069612,0.0744652832897685,72.12305524245721,221.88474,155.5078130687663,231728.5696382321,162406.85632547238,454.1288,299.95628652421385,473865.6320494611,312853.3153607381,440.58074,214.17262397216547,457248.2245801654,221411.06665906965,2890.21808,1331.2386073349055,2988412.430027571,1360269.443285681,961.00768,427.2300752518765,989516.1249895564,432057.6857422041,1506.97376,641.5462459445329,1545525.2945108197,646248.0128050168,0.37865,100000,0,1008567,10533.116801737824,0,0.0,0,0.0,38914,405.96541064416414,0,0.0,40001,414.90517169354166,1235815,0,44372,0,0,8718,0,0,87,0.908597209457766,0,0.0,0,0.0,0,0.0,0.05242,0.1384391918658391,0.2970240366272415,0.01557,0.3496068751142805,0.6503931248857195,23.495877876874,4.130549798895024,0.3157135992311389,0.2777510812109562,0.2111965401249399,0.1953387794329649,11.444048810971848,6.177761653025724,16.641141575742257,11661.299988744717,47.438907270780014,14.045484089188047,14.773928816903092,9.711987783062742,8.90750658162613,0.5862566074002883,0.7897923875432526,0.7100456621004566,0.5551763367463026,0.1303813038130381,0.7348353552859619,0.913716814159292,0.8615384615384616,0.6565656565656566,0.1396648044692737,0.5292553191489362,0.7102272727272727,0.660262891809909,0.5256975036710719,0.1277602523659306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046123123397094,0.0068194964532529,0.0089392738871619,0.0111456871478837,0.0132452353803551,0.0155453618756371,0.0179426203574235,0.0200754362114258,0.0222374658298608,0.0243852438011869,0.0268100917619526,0.0289618160508296,0.0308373673910804,0.0326547878212601,0.0346046511627907,0.0365370080859743,0.0385421421753745,0.0404777497115414,0.0421210511514545,0.056574029607667,0.0708529565672422,0.0841988208388409,0.0966280084536364,0.108677089153375,0.1244767220601293,0.1356964066013321,0.1467564806538117,0.1569092151336578,0.1659932912518352,0.1783822769548742,0.1900209788697363,0.2006107434334213,0.2109708790908594,0.2200435250928755,0.2299365806687253,0.2385916403732732,0.247022705036942,0.2556182005876281,0.2630289149728027,0.2691689318142386,0.2747956833354769,0.2800037867133694,0.2839813971328571,0.2887607019248284,0.2935911955879456,0.2976038618343713,0.3018728688482874,0.3053460830806707,0.3084518011061392,0.3068584279346611,0.3034741706552236,0.3011206848003604,0.2988087502707385,0.2964969571025679,0.2933822966873231,0.2901320361362057,0.2904355797089588,0.290399563616528,0.2907152645535603,0.2918176046607162,0.2926502726861058,0.2938312366782296,0.2933553409319028,0.2945069173040496,0.2941590245935807,0.2951808943667985,0.2985467301428213,0.3031319910514541,0.306573084657545,0.3109377126525428,0.3135481140559699,0.318712173207712,0.3236231224396905,0.3282378317546656,0.3361682022206473,0.3459319975713418,0.34431198221863,0.3456106341733592,0.3570035115099493,0.0,1.688881560705153,50.65500652513477,158.7077932944799,220.4728369956792,fqhc1_80Compliance_baseline,48 -100000,95742,46884,446.7945102462869,5227,53.35171607027219,4100,42.24896074867874,1560,15.98044745252867,77.41222784566315,79.76815535486418,63.350809200748486,65.08976094087306,77.21767972620673,79.57549670156493,63.27775236228514,65.0196288284204,0.194548119456428,192.65865329924736,0.0730568384633443,70.1321124526686,221.63724,155.1661344947063,231494.03605523176,162066.74768985456,449.35033,297.2515000619885,468755.65582502977,309894.6045857092,436.19677,212.50462047363564,451602.7657663303,218984.21146712275,2905.6905,1345.8796175051723,2996294.207348917,1367280.8212807777,944.09656,429.44869868350327,969803.7016147564,432267.5510053093,1523.42074,644.9092257694313,1561122.3705374862,646995.0841266295,0.37919,100000,0,1007442,10522.456184328716,0,0.0,0,0.0,38673,403.313070543753,0,0.0,39564,409.2665705750872,1239792,0,44428,0,0,8704,0,0,77,0.8042447410749722,0,0.0,0,0.0,0,0.0,0.05227,0.137846462195733,0.2984503539315095,0.0156,0.3400476103277788,0.6599523896722213,23.635599060441475,4.141440525152727,0.315609756097561,0.2658536585365854,0.2107317073170731,0.2078048780487804,11.0338174034182,5.79054412064414,16.507826623696015,11704.836936523188,46.54524504989708,13.328910401362045,14.442328710616604,9.535586991374236,9.238418946544204,0.5758536585365853,0.8,0.6978361669242659,0.5787037037037037,0.1009389671361502,0.7491554054054054,0.9264069264069263,0.8549848942598187,0.7238095238095238,0.1325966850828729,0.5054869684499315,0.7070063694267515,0.6438213914849429,0.5321100917431193,0.0923994038748137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0049358941874018,0.00725358113866,0.0094950848972296,0.0116308624528512,0.013752735786634,0.0160425627331471,0.0181627093048172,0.0201530899019938,0.0222415557830092,0.0242272690005739,0.0263201116859653,0.0284665679743399,0.0304515730394933,0.0324517866540092,0.0343897295956338,0.0361998446803002,0.0382835681530512,0.0401305803339363,0.0420638144942029,0.0564261032060048,0.0695384679773576,0.0830151470649939,0.0954284391896156,0.1073022504985281,0.1235145345453391,0.1355889032751045,0.1469382539902254,0.1577293808373763,0.1668580627850818,0.178936473023677,0.1907737289512155,0.2021227955584585,0.2117957476625282,0.2206041111282469,0.2304749018477031,0.23890403611496,0.2468693693693693,0.2541127851133641,0.2604300385109114,0.2670572298572437,0.2727506727506728,0.2790034661019956,0.2842979956416581,0.2892945131497506,0.2939887751083103,0.2981325338829554,0.3020989314992005,0.3061666903234964,0.3101635897772813,0.308028297336406,0.30550232685464,0.3034528180264006,0.3017433421003463,0.3002654475741041,0.297378174747843,0.2946617875708699,0.2952692476687985,0.2956050469980523,0.2959288341822297,0.2974481658692185,0.2985900619903396,0.2993997050453856,0.3022519430482053,0.3019321945059919,0.3024221631800242,0.3040709959149176,0.3074701937406855,0.309944157330651,0.3160096981073048,0.3218194868114121,0.3233043295942971,0.3243293591654247,0.3273599760065981,0.3273666728178631,0.3285864363254348,0.3276557597489914,0.3335974643423138,0.340080971659919,0.3397435897435897,0.0,2.2193349365430817,51.31735524749079,151.08068703616,212.9496817577445,fqhc1_80Compliance_baseline,49 -100000,95724,46950,446.9412059671556,5339,54.51088546237098,4295,44.24177844636664,1627,16.547574276043626,77.32373385663094,79.69183676799769,63.321321634088775,65.07430152157264,77.11204852396088,79.48660738889785,63.240574672247234,64.99920355586113,0.2116853326700578,205.2293790998334,0.080746961841541,75.09796571150673,221.47862,155.1733675898464,231370.48180184697,162103.62422359674,450.94829,297.97542479280645,470436.5676319418,310636.9988996278,438.92759,213.79317694842413,455159.5002298274,220749.69199440107,3035.22242,1409.0401003815875,3124938.709205633,1426836.0482468428,1030.74097,463.5449859454996,1059608.1442480464,467219.7508295276,1594.19126,689.7073575367099,1622692.198403744,682236.0602335118,0.38166,100000,0,1006721,10516.840081902135,0,0.0,0,0.0,38686,403.46203668881367,0,0.0,39774,412.0492248547909,1240494,0,44470,0,0,8727,0,0,94,0.981989887593498,0,0.0,1,0.0104467009318457,0,0.0,0.05339,0.1398889063564429,0.3047387151151901,0.01627,0.3598430813124108,0.6401569186875892,23.240537756807743,4.15198104601286,0.3233993015133876,0.2647264260768335,0.1948777648428405,0.2169965075669383,11.153285277540649,5.856915788645652,17.563337094626487,11738.335619508603,49.24923732585998,14.034998860781808,15.616900185985182,9.1773554485088,10.419982830584186,0.5692665890570431,0.8056288478452067,0.67170626349892,0.5579450418160096,0.1384120171673819,0.7242497972424979,0.9053497942386832,0.8347107438016529,0.7272727272727273,0.136986301369863,0.5068582625734814,0.7311827956989247,0.6140350877192983,0.5163690476190477,0.1388499298737728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0045230054661433,0.0067295980511571,0.0088917342438469,0.0109168972814585,0.0131304179527141,0.0154203891812507,0.0176074678541153,0.0198889491067867,0.0223052895693583,0.0245510762888289,0.0264763274109068,0.0287430817027755,0.0307186579007027,0.0328757225433526,0.0346324821668561,0.0364984671472367,0.0385648921490304,0.040479136555998,0.0427117089893611,0.0574802656308733,0.0716543509660672,0.0846805073277173,0.0974963181148748,0.1093604994516156,0.1248096607732002,0.1364427280057717,0.1471304977067393,0.1574259012016021,0.1669758613663903,0.1792094240273934,0.191546675032725,0.2017986472085082,0.2112802344399247,0.221412932258029,0.23195339668195,0.2414019983941475,0.2496011325588189,0.2575879545119559,0.2644568525595551,0.2718627224404899,0.278535291574655,0.2841270404122785,0.2887973364631488,0.2923116145245292,0.2961867800160168,0.2991977170607157,0.3023711641996207,0.306425702811245,0.3089350478074513,0.3065523460844752,0.3033843951718348,0.3014437636453271,0.2992133954134012,0.2973884867492085,0.2939843522729012,0.2918490196388226,0.2917198912580656,0.2917375910669299,0.2919572953736655,0.2925885782628195,0.2938901168298073,0.2950283882592026,0.2965025269466434,0.297834977146981,0.2993163552865045,0.3003796854035228,0.3055555555555556,0.3104188665962689,0.314445108587368,0.3197605337720501,0.3237820820660583,0.3266325305012959,0.3284665953218162,0.3314896409487203,0.3290689410092395,0.3335857056329497,0.335876330054206,0.3377862595419847,0.3371472158657513,0.0,2.3612957233956573,53.6015064160402,165.73976444590792,220.07748026436064,fqhc1_80Compliance_baseline,50 -100000,95783,46846,444.8806155580844,5221,53.3915204159402,4138,42.64848668344069,1559,15.942286209452616,77.38153749659537,79.72451620756337,63.350937847410606,65.0834296732511,77.17567322853044,79.5202952171862,63.27338630282447,65.00906056707811,0.2058642680649285,204.22099037716637,0.0775515445861358,74.36910617299475,221.42956,155.1536231602948,231178.35106438512,161984.50994466114,449.77551,297.2757805338692,468979.5057578067,309765.7314281962,437.79907,213.37922978100076,453617.0823632586,220143.11771894863,2899.52578,1348.795006394423,2988117.004061263,1369112.824190538,928.44639,420.409667772526,954805.487403819,424402.97973108257,1509.38672,647.3530757085565,1543993.7149598573,647764.2062182447,0.38106,100000,0,1006498,10508.10686656296,0,0.0,0,0.0,38578,402.1486067464999,0,0.0,39660,410.7409456792959,1242588,0,44530,0,0,8625,0,0,78,0.8039004833843166,0,0.0,1,0.0104402660179781,0,0.0,0.05221,0.1370125439563323,0.2986018004213752,0.01559,0.3543814432989691,0.645618556701031,23.91344985546584,4.0997214671166695,0.318994683421943,0.2687288545190913,0.2114548090865152,0.2008216529724504,11.291416548553336,6.124267981831914,16.706234409307918,11768.502158969752,47.1185689196453,13.621415956102318,14.899078272296707,9.62286521077622,8.975209480470053,0.5790236829386177,0.8057553956834532,0.6886363636363636,0.5622857142857143,0.1191335740072202,0.7653721682847896,0.9173728813559322,0.8541666666666666,0.7083333333333334,0.1951219512195122,0.4996554100620262,0.7234375,0.6207264957264957,0.5144157814871017,0.1004497751124437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045918057047864,0.0067570309646524,0.0090897088246346,0.0113366004432966,0.0138949682909697,0.0158804582704774,0.0182386021494401,0.0204377771873531,0.0226635561831092,0.0248498760068042,0.0268727802755024,0.0289430392761669,0.0310221984267534,0.0331710537173034,0.0353043280605866,0.0371182880263253,0.0392349953353374,0.0414697235698035,0.0433759526883511,0.0582231452395612,0.0720830021336234,0.0854851391728259,0.0983365383604972,0.1099940988029,0.1250224575420352,0.1366955268484469,0.1482851736088962,0.1583873136478598,0.1676099213239865,0.1799276672694394,0.1912461335467543,0.2017477121057322,0.2121477045471931,0.2215084751355691,0.2307811531308121,0.2399308652988403,0.2480299470530705,0.2552906752557443,0.2626501888087882,0.2689323419558505,0.2748959745663659,0.2802214048325862,0.2860204497018749,0.2908451131468786,0.2958984014471887,0.2999388058396713,0.3039483549580002,0.3077112079556182,0.3117943853824975,0.3093531950363668,0.3071522778479969,0.3042132222566209,0.3014766379422335,0.2998797630887526,0.2969234766395134,0.2932470810981382,0.2933248382670064,0.2946778711484594,0.2959170999166031,0.2953389119779339,0.2966161715522329,0.2980227756225754,0.299551709525615,0.3016898846282732,0.3030712116098549,0.3041827250056677,0.3089882382304308,0.3132655902004454,0.3169108380592312,0.3217725525661316,0.3252719400147851,0.3295019157088122,0.333586510709403,0.3331457512661789,0.3336080047086521,0.3349992427684385,0.3364073777064956,0.3391041494916186,0.3399089529590288,0.0,2.0999288539552525,53.90919506141586,146.19558918261805,217.03813231824807,fqhc1_80Compliance_baseline,51 -100000,95859,46725,443.23433376104487,5303,54.17331705943104,4174,42.97979323798496,1600,16.305198259944294,77.37299817448195,79.67317138809767,63.35320242165369,65.05656465827194,77.17881386854526,79.48493328505745,63.279879761565496,64.98824129061205,0.1941843059366874,188.23810304022004,0.0733226600881948,68.323367659886,223.08902,156.24120896582306,232726.21245788084,162990.65185931738,452.05156,298.4039815102157,471001.0849268196,310716.3317465814,434.85475,211.0654684847786,450494.7057657601,217668.18822352705,2935.57257,1347.258828214178,3027171.8774449974,1370263.8025040275,966.29942,429.0345305495785,992749.9243680822,432287.3279260073,1562.73074,653.90208311995,1595240.8433219625,651214.237739056,0.3794,100000,0,1014041,10578.464202630948,0,0.0,0,0.0,38894,405.1471431999082,0,0.0,39470,408.610563431707,1233090,0,44300,0,0,8940,0,0,66,0.6885112508997591,0,0.0,2,0.0208639772999927,0,0.0,0.05303,0.1397733263046916,0.3017160098057703,0.016,0.3456678700361011,0.6543321299638989,23.96219579476962,4.1027901163974265,0.3145663632007666,0.2735984666986104,0.201006229036895,0.2108289410637278,11.065657399963744,5.921265654820626,16.82029862087872,11733.617396957296,47.27952669832679,13.80570891551699,14.660120716519495,9.290776584343703,9.522920481946606,0.562050790608529,0.7810858143607706,0.6732673267326733,0.5744934445768772,0.1,0.7457191780821918,0.9172259507829976,0.875,0.7236180904522613,0.0898876404494382,0.4906852960745176,0.6935251798561151,0.6016511867905057,0.528125,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020559043953818,0.0042567423758703,0.0066035726240832,0.0089962025059399,0.0112030579671837,0.0135688110749185,0.0155229174523253,0.0177264795028013,0.0199143753384626,0.0220905723699019,0.0242815429537421,0.0264910174725804,0.0286319164679766,0.0307562454323681,0.0330711421296248,0.0351315626419926,0.0370692241637956,0.0390657382077426,0.0410596164030779,0.0433950289751032,0.0588713713713713,0.0733975631674643,0.0871464487743557,0.0999401430266626,0.1121829977251664,0.1271444266035662,0.1383216590545423,0.149631582864616,0.1595751494449188,0.1688438333851281,0.1806666164426316,0.1920137500135122,0.2021326318764334,0.2127143107067879,0.2216842545418532,0.2313434488869199,0.2400352517263305,0.2485741605264638,0.2561930039471893,0.2631940469376073,0.2695696413292325,0.2748941545227012,0.2809745246293469,0.2855996550815588,0.2892964208124476,0.2940669514792608,0.2987627137727847,0.3025869192143901,0.3057887588124959,0.3083415759973623,0.3057992465016146,0.3033619800618769,0.3007082611695462,0.2990554319882145,0.2975033748201332,0.2940169895495936,0.2911724290430085,0.2908272645446362,0.2922964324618736,0.2924506470619649,0.2917917824570565,0.2921273163630641,0.293754690235971,0.2946051637559436,0.2959375969084707,0.2966277024930175,0.2979483110405804,0.3035731032542436,0.3069248212105355,0.3106120201384518,0.3135059796780865,0.3185519886512898,0.323590031853101,0.3262153566560654,0.3323342075683776,0.3317313327863087,0.341363012654368,0.3451020408163265,0.3537906137184115,0.3597863410911865,0.0,2.115682159609788,51.04763247549387,151.33010002414352,224.79839086404985,fqhc1_80Compliance_baseline,52 -100000,95793,46970,447.4961636027684,5238,53.479899366342,4209,43.35389851032957,1625,16.619168415228668,77.39816222968327,79.72808509859925,63.35848721039546,65.07971574977657,77.17995030728697,79.51147839931086,63.27598139229568,65.00030375776007,0.2182119223962928,216.60669928839127,0.0825058180997828,79.41199201650306,222.81666,156.11365544106548,232602.23607152925,162969.79470427427,452.62728,298.73963423768026,471956.19721691567,311310.17322526727,438.14881,213.08652046395943,453594.95996575954,219582.4530586879,2969.30331,1377.85342997753,3061378.21135156,1400035.6497630612,969.48601,435.12578447437824,999782.092637249,441954.040978336,1583.98232,678.8307682773407,1621203.0106583987,680918.9880211286,0.3816,100000,0,1012803,10572.828912342236,0,0.0,0,0.0,38855,405.0295950643575,0,0.0,39676,410.4162099527105,1234041,0,44268,0,0,8810,0,0,86,0.8977691480588351,0,0.0,0,0.0,0,0.0,0.05238,0.1372641509433962,0.3102329133256968,0.01625,0.3478021978021978,0.6521978021978022,23.51167746207673,4.184304718798241,0.308624376336422,0.2668092183416488,0.2162033737229745,0.2083630315989546,11.36880529749194,6.017865486622799,17.35113321611246,11732.503535406371,47.86392501044179,13.664368038335422,14.60734003523402,9.981109087651792,9.611107849220566,0.5602280826799715,0.7720391807658059,0.6882217090069284,0.5692307692307692,0.0900798175598631,0.7221311475409836,0.9006622516556292,0.8764044943820225,0.7095238095238096,0.0597014925373134,0.4941451990632318,0.6850746268656717,0.6171792152704135,0.5271428571428571,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748435316278,0.0042565266742338,0.0063506878220995,0.0086928263871963,0.0106236974533624,0.0127628391719421,0.014958985071585,0.0171815696037219,0.019442372725508,0.0215776550030693,0.0236248706574188,0.0255307795712717,0.0276036421186771,0.0300020584602717,0.0319604103304294,0.0339068825910931,0.0359814196004593,0.0381388886008482,0.0400008314020556,0.042154810626178,0.0558668544894871,0.0701047963687326,0.0844306982595932,0.0978265439105393,0.1101681513889621,0.1250607860963697,0.1372734118944834,0.1483968458354173,0.1593771027588195,0.1691009308111354,0.1805609409331782,0.1913924762584636,0.2020405058889999,0.2111726594338282,0.221540761257845,0.2310169303972557,0.2402645195824783,0.2480628001394559,0.2556809802030745,0.2635292231219434,0.2704671600370028,0.2767223540689993,0.2827754367690924,0.2878591799074939,0.2923682006336566,0.297495629047748,0.3015763879339442,0.3063706490106622,0.3095287389042727,0.31239124703401,0.3098085641639648,0.3067337152906585,0.3036907793834161,0.3018244753731881,0.2989483039549696,0.2950929799383187,0.2921928273771941,0.2921342800117789,0.2906943047576837,0.2913566622761738,0.2925936986710467,0.2927291013429569,0.2940562215446305,0.2937748815692903,0.2947619615797637,0.2971592970815406,0.2996498955333446,0.3028564300860671,0.3082479597152283,0.3114908662345315,0.3143502824858757,0.3170040910521347,0.3187488363433253,0.3210081497132508,0.3217148182665424,0.3267092500591436,0.3345938587203146,0.3411243199677614,0.3494638438273302,0.3495072024260803,0.0,2.3160083757824435,52.961279835597104,153.1049343962442,221.1530929702957,fqhc1_80Compliance_baseline,53 -100000,95884,46507,441.7108172374953,5295,54.11747528263318,4189,43.17717241667015,1617,16.5616786950899,77.3584022892406,79.6413960953814,63.35300198276878,65.04202914340249,77.14355489140027,79.42739125901777,63.27198928945664,64.96360148693826,0.2148473978403302,214.0048363636282,0.0810126933121395,78.42765646422833,223.5882,156.59633765517216,233186.1415877519,163318.52827914164,450.00687,297.46708755052475,468853.0098869467,309765.1720313345,437.45459,212.41277525694943,453045.1378749322,219086.294296756,2931.54368,1378.8789410780043,3023030.526469484,1403714.7501960737,958.83029,436.7384173500815,987222.7274623504,442719.0848839035,1572.9867,680.3085776468046,1611710.337491135,683600.8993214617,0.3781,100000,0,1016310,10599.37007217054,0,0.0,0,0.0,38729,403.4041133035752,0,0.0,39757,411.4346502023278,1228724,0,44182,0,0,8900,0,0,67,0.6987610028784782,0,0.0,0,0.0,0,0.0,0.05295,0.1400423168473948,0.3053824362606232,0.01617,0.3624052004333694,0.6375947995666306,23.373386200449904,4.1875485592582935,0.3003103365958463,0.284793506803533,0.207209357841967,0.2076867987586536,11.035107694607722,5.797792547640902,17.556257375539914,11647.278313515935,48.39929941695826,14.635003728757052,14.381519187357648,9.645218943982451,9.73755755686111,0.5738839818572452,0.7954735959765298,0.6812400635930048,0.576036866359447,0.1126436781609195,0.7389240506329114,0.917004048582996,0.8498583569405099,0.7835051546391752,0.1300448430493273,0.5025641025641026,0.709585121602289,0.6154696132596685,0.516320474777448,0.106646058732612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024096629509258,0.004802869562574,0.0069174671116024,0.0091685365878422,0.0112522870502134,0.0135153013973274,0.0155772443864868,0.0178693457086031,0.0200320594631571,0.0222556175754973,0.0243330671744159,0.0264301824892351,0.0282131339481954,0.0303151874254207,0.0323481522702446,0.0344126210585004,0.0364328495619161,0.0385962730344298,0.0406679682631994,0.0425722281754908,0.0572959561314804,0.071315140624347,0.0847200259710339,0.0971522177419354,0.1090125771588682,0.1243873066846953,0.1353602577281349,0.1464026711469343,0.1576205877016021,0.1672079836211424,0.1798996489867993,0.1916304324312631,0.2023370835371487,0.2116734069297191,0.2203764374766375,0.2299069350537253,0.2388477494758442,0.2478805459983359,0.2547531536437063,0.2611410241722992,0.2669289516315667,0.2734578805142543,0.2788824804291957,0.2844361290013072,0.288338561042624,0.2927018825096839,0.2966972385104997,0.3000637104994903,0.3035772210040093,0.3070861977789529,0.3059353342501955,0.3029380569980303,0.3009161381254404,0.2988286334056399,0.2967474233703654,0.2936965386148327,0.2907238384990809,0.2895303182139278,0.2904433127114878,0.2905475298733725,0.2909771621115687,0.2907201833050211,0.2921936510595527,0.2937605998393287,0.2946822806680745,0.29545572443845,0.2958121863392781,0.2990315526398001,0.3007395520826065,0.303087661185378,0.3097717804745517,0.3119406128251026,0.3124647843235459,0.3175985334555454,0.3199848885530789,0.3229265967588179,0.3226403454657618,0.3212121212121212,0.3306849315068493,0.3367579908675799,0.0,2.027418547184712,55.49115148023155,156.8424582666417,213.63009829803832,fqhc1_80Compliance_baseline,54 -100000,95721,46600,443.727081831573,5280,53.86487813541438,4174,42.90594540382988,1640,16.589881008347174,77.38965647392791,79.7556733248404,63.34469261111818,65.09371710460314,77.18180675797404,79.55426576188796,63.2661745766959,65.02058156860241,0.2078497159538699,201.4075629524399,0.0785180344222808,73.13553600073419,223.27272,156.31864493773037,233253.64340113456,163306.53141706664,451.47446,297.9923156009796,470886.45124894223,310543.7256076417,435.2704,211.448829202071,450559.67864940816,217737.5335708597,2943.43338,1363.0443688106498,3024840.609688574,1373866.871839106,964.92788,431.2127428490671,989667.7949457276,432215.1887115524,1586.76552,674.1698601595572,1607781.9914125428,663640.5433885381,0.37811,100000,0,1014876,10602.438336415204,0,0.0,0,0.0,38733,403.9030097888655,0,0.0,39496,408.41612603294993,1234405,0,44324,0,0,8832,0,0,84,0.8671033524513951,0,0.0,0,0.0,0,0.0,0.0528,0.139641903149877,0.3106060606060606,0.0164,0.3462509012256669,0.6537490987743331,23.70075031460603,4.133396880736771,0.3229516051748922,0.2563488260661236,0.2158600862482031,0.204839482510781,11.32923470127672,6.225787301209089,17.42245143439986,11632.696697723668,47.59466124265178,13.154532808528591,15.292823724550544,9.957609997878556,9.189694711694091,0.5730713943459511,0.8,0.6862017804154302,0.564927857935627,0.119298245614035,0.7383333333333333,0.8956916099773242,0.8536585365853658,0.7216981132075472,0.1292134831460674,0.5063887020847344,0.7329093799682035,0.6230847803881512,0.5166908563134979,0.1166912850812407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.0048356193546424,0.007124082850445,0.009295568604344,0.011504775855229,0.0137367113355871,0.0157726776847707,0.0178846683884402,0.0198912421293646,0.022130551830735,0.0244264950080977,0.026568932417588,0.0287226933950141,0.0308506585112188,0.0327278728429825,0.0347874616314761,0.0365837242293394,0.038573666573293,0.0404406797276931,0.0422297473300338,0.057297974524953,0.0713911914929247,0.0842478544599953,0.0969058715847282,0.1087738546095175,0.123638171394724,0.1355615682529577,0.1464562068268176,0.1564505965159622,0.1661679376213305,0.1785329715294827,0.1906899759839027,0.2015179357813128,0.2110529135821368,0.2196023633742999,0.2290213274865457,0.2373847200383616,0.245754807097985,0.2534071067371142,0.2606317860942988,0.2665109610581815,0.2733200888161738,0.2789521570110243,0.2832367866717732,0.2875133456274871,0.2921364912107932,0.2954230062385137,0.2995156184446393,0.3033716584110397,0.3069188191881918,0.3046008682912405,0.3020703108900825,0.2996485802642676,0.2976214501946086,0.2959383048639687,0.2931331716173128,0.2914755803508108,0.2914898478814389,0.2919731534524253,0.2920328891409129,0.2926149558755225,0.2934714375392341,0.2945797655665475,0.2948328267477204,0.2954756850866942,0.2962934223118905,0.2975225288849967,0.3001092896174863,0.3034591194968553,0.3079084863837872,0.3112525573994089,0.3132574952158197,0.3153237951807229,0.3194392383237124,0.3243666513127591,0.3301106581246359,0.327324620700015,0.3300179033220609,0.3409889219129965,0.3492605233219568,0.0,2.572862864612004,51.73063364958537,157.48551997832593,215.39047629477565,fqhc1_80Compliance_baseline,55 -100000,95771,47020,447.3065959424043,5385,55.17327792337973,4305,44.470664397364544,1592,16.299297282058244,77.34687979821054,79.70604622717518,63.33382307926016,65.08105687328215,77.1441679676674,79.50355164057977,63.25657176135724,65.00587071902031,0.2027118305431372,202.49458659540664,0.0772513179029132,75.18615426184283,222.05898,155.47582083793296,231864.53101669607,162341.2315188658,450.18086,297.5086196382956,469585.49038853095,310171.63821855857,438.54932,213.1562386185957,454631.1827171064,220023.9776371712,3004.99235,1401.9356203426833,3106747.105073561,1432903.530654041,996.69144,453.9964315918398,1028685.4162533544,462026.3979616378,1549.53216,666.2696410137298,1588506.666945109,671719.1497440292,0.38255,100000,0,1009359,10539.296864395275,0,0.0,0,0.0,38740,404.0158294264443,0,0.0,39815,412.4317382088524,1239060,0,44569,0,0,8761,0,0,72,0.7517933403639933,0,0.0,0,0.0,0,0.0,0.05385,0.1407659129525552,0.295636025998143,0.01592,0.3488122879085551,0.6511877120914449,23.605231546859063,4.065639985142857,0.321718931475029,0.2629500580720093,0.2176538908246225,0.1976771196283391,11.198544488818808,6.025563540424903,17.171793737363217,11771.248763078733,49.217282916551405,13.822291851391658,15.450308986992631,10.490937059277009,9.45374501889009,0.5855981416957027,0.8065371024734982,0.7032490974729242,0.5635005336179295,0.1245593419506463,0.7517674783974863,0.9189765458422174,0.8675675675675676,0.7071129707112971,0.1846153846153846,0.5158311345646438,0.726998491704374,0.6433497536945813,0.5143266475644699,0.1067073170731707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0045227761327221,0.0066395939086294,0.0088112442452513,0.0108244486042158,0.0130445408443819,0.0152105209501478,0.0174254797876684,0.0195865960622354,0.0217266658475652,0.0236730676563765,0.0260182970028646,0.0281668414882458,0.0302855494663974,0.0326126219103152,0.0346093015082129,0.0366477508077209,0.0388198435587277,0.0409255813469994,0.0427461679440186,0.0572812291249165,0.0708480214228182,0.0840742293981966,0.0968806490940429,0.1090782623358556,0.1247926286758878,0.1357378300176998,0.1468924751759477,0.1578543162206269,0.1677680550944123,0.1804246805214922,0.1912656298970075,0.2023096896150879,0.2117247479987331,0.2213897280966767,0.2312475795297372,0.2401066000602134,0.2491708918393272,0.257509219858156,0.2652624103727121,0.271753216699065,0.2780624780624781,0.2842956229434462,0.2880998333712943,0.2920662280595276,0.2970788010040852,0.300361489486785,0.304413596725396,0.3080873412154296,0.3111959957850368,0.3087768817204301,0.3055231080022538,0.3040660236762927,0.301879991926415,0.2998428745071299,0.2976317799847212,0.2953124012887738,0.2954698124027197,0.2953336969118549,0.2960384581144841,0.2965973429003868,0.2968229238566667,0.2968962274009823,0.2977854176898691,0.2985475933261313,0.3007424775302852,0.3023911187019641,0.3072444612286002,0.3134218547454717,0.3176992552685787,0.3228797382056176,0.3292670046472328,0.3336049645834639,0.3325026431052711,0.3355250972402296,0.3376168224299065,0.3409331118828325,0.3492127573677836,0.3417335918028247,0.3417770849571317,0.0,1.9062844023843235,56.01581747507822,155.36637723771642,225.64624150936203,fqhc1_80Compliance_baseline,56 -100000,95743,47198,449.160774155813,5435,55.460973648204046,4329,44.52544833564856,1630,16.638292094461214,77.36211040614715,79.72334225478734,63.32787542470121,65.07528164720989,77.1559018007187,79.5197205577389,63.25160324535322,65.0021114293375,0.2062086054284577,203.62169704843325,0.0762721793479883,73.17021787238787,221.78486,155.43051597937165,231646.0315636652,162341.38890506007,451.53477,298.2070776118928,470907.4605976416,310762.3926677593,443.81474,216.15319979590453,458773.4664675224,222142.8130233198,3016.66284,1403.1587930976111,3110989.6389292167,1425744.7156425123,1016.39533,460.4311941666301,1049513.87568804,468832.4509719071,1588.39884,668.3881195246454,1624963.4751365636,668923.4798358547,0.38317,100000,0,1008113,10529.365071075692,0,0.0,0,0.0,38820,404.7293274704156,0,0.0,40443,417.5971089270234,1236850,0,44352,0,0,8835,0,0,69,0.720679318592482,0,0.0,0,0.0,0,0.0,0.05435,0.1418430461674974,0.2999080036798528,0.0163,0.3522987493394398,0.6477012506605602,23.391330199478038,4.080415368861013,0.3109263109263109,0.2755832755832756,0.2076692076692076,0.2058212058212058,11.439861608219102,6.171043432582692,17.347032653490004,11824.703748146618,49.637512820866576,14.56191311545746,15.315079611799234,10.088497620588315,9.672022473021562,0.5846615846615847,0.7971500419111484,0.700594353640416,0.5817575083426029,0.1279461279461279,0.7541501976284585,0.9118852459016392,0.8591160220994475,0.7400881057268722,0.1595744680851064,0.514686684073107,0.7177304964539007,0.6422764227642277,0.5282738095238095,0.1194879089615931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024315370353484,0.0046849331737887,0.0070246675464419,0.009256530883892,0.0115558720309241,0.0138407952091905,0.0159586400995248,0.018143020501511,0.0204292389648367,0.0223949373310395,0.0246533759947493,0.0268812786326191,0.0289500216044937,0.0311514601924939,0.0330677455311068,0.0352645617517523,0.0372257256168908,0.0391143758300132,0.0409758531438728,0.0429239534617267,0.0579737375002609,0.0717640782081995,0.0850015205058565,0.0981711869932379,0.1102696887557613,0.1258909875420377,0.1378897009684844,0.1490541734529854,0.1596918770499684,0.1697368703223177,0.1827844666049236,0.1942409453420047,0.2055973112022363,0.2149817895462152,0.2237836886066755,0.2330659635283951,0.2421085541374959,0.2501856226797165,0.2576140836443245,0.2646668193267689,0.271332183735114,0.2772034056886227,0.2821259125167122,0.2866253491410829,0.29162012529746,0.2966978807294234,0.3005844001451614,0.3049202432136769,0.3092015012294551,0.3123977842257979,0.3107682365296066,0.3075431479062092,0.3050199023868798,0.3028658835752835,0.3003900398938142,0.2970882690103171,0.2940897672875491,0.2942437683104469,0.2942717637251399,0.2953810623556582,0.2963736366178801,0.297746960262429,0.2997938058442505,0.3018058088333407,0.3031201434548715,0.3030554331769767,0.3049332428151165,0.30978752613023,0.3110167722179692,0.3147820618637739,0.3178542473651022,0.3201278624954147,0.3220381213404759,0.3255378157559403,0.330188679245283,0.3285999295857293,0.3312188491164476,0.3290412044374009,0.3343187315237839,0.3393267023718439,0.0,2.6840909015564307,54.63839826672034,163.9100453906294,222.0359011602392,fqhc1_80Compliance_baseline,57 -100000,95766,46978,447.76851909863626,5111,52.01219639538041,4050,41.76847733015893,1563,15.997326817450867,77.32840490063373,79.68950400337283,63.31625382636724,65.06496705628906,77.12842816316679,79.49202963295731,63.24000076751474,64.99254257170158,0.1999767374669403,197.47437041552016,0.0762530588524939,72.4244845874864,222.00992,155.45441324836275,231825.40776475996,162327.3533909349,447.58229,296.6036483787991,466863.6468057557,309209.94755842286,432.08609,210.57644536656807,448308.8987740952,217676.0988626337,2823.18985,1312.2541490103888,2912648.862853205,1334911.7735003952,925.82265,418.2987378859647,953751.6550759142,423792.35234901146,1507.58636,642.7210841675153,1544312.9712006347,643105.6747397572,0.38063,100000,0,1009136,10537.518534761815,0,0.0,0,0.0,38492,401.4055092621599,0,0.0,39102,405.40484096652256,1237599,0,44421,0,0,8813,0,0,74,0.7727168306079402,0,0.0,2,0.0208842386650794,0,0.0,0.05111,0.1342773822347161,0.305810995891215,0.01563,0.3579460269865067,0.6420539730134932,23.435508065190817,4.105911718471882,0.3160493827160494,0.2725925925925926,0.2167901234567901,0.1945679012345679,11.031856334457473,5.977237152281376,16.779343073436134,11679.789209284085,46.26425031646224,13.46147974547518,14.334387303628786,9.835225336187165,8.633157931171116,0.5802469135802469,0.792572463768116,0.6890625,0.570615034168565,0.116751269035533,0.7552921253175275,0.8984547461368654,0.8625730994152047,0.7174887892376681,0.1840490797546012,0.5081910073196235,0.7188940092165899,0.6257995735607675,0.5206106870229008,0.0992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002148293019061,0.0045639870991298,0.0066401332087885,0.0090448992865708,0.0115053610302944,0.0135369132985658,0.0155000815793767,0.0177849471147956,0.0199863009497326,0.0222226771621303,0.0242327326403837,0.0263365950324972,0.0281677104865331,0.0300146262076921,0.0319384964656106,0.033935271802611,0.0358987630039853,0.0377710712174481,0.0400195369331171,0.0419739199266758,0.05641844637899,0.0709130844053969,0.0832774096132874,0.0956901082728897,0.1081371577904697,0.1235968120415195,0.1353624264277003,0.1460211368788514,0.156099124118778,0.165392328232405,0.1774799909514935,0.1889134151355796,0.2004809104657868,0.2103616856058534,0.2202824529153411,0.2303329714880702,0.2395482243699917,0.2475124938093737,0.2555715761628501,0.2623033469687074,0.2684800592380049,0.2747152513038801,0.2797599318149533,0.2854812593703148,0.2899408284023668,0.2937827346108818,0.2983080586539666,0.3020809454675123,0.3057338052087789,0.3084923840447718,0.3067739283933648,0.3050980392156863,0.3027732371343216,0.3000259912784821,0.298572425984521,0.2958596190359527,0.2916646884742597,0.2931277909114788,0.2942300800382272,0.2947458503449874,0.2956672832240345,0.2965435745937961,0.2977859240590698,0.2982295958133838,0.2985896607044513,0.2988696463756092,0.2993648633321991,0.3030889839772621,0.3074352548036758,0.3117271796487359,0.3168102476207659,0.3202388434946574,0.3234219166202069,0.3287404522989366,0.3352783180513105,0.3363213038416763,0.3433308214016579,0.3474576271186441,0.3490669593852908,0.355984555984556,0.0,1.988391316217117,51.66026019376239,150.99489197772013,208.6274802329681,fqhc1_80Compliance_baseline,58 -100000,95722,47048,448.1832807505067,5295,54.01057228223397,4224,43.45918388667182,1640,16.631495372014793,77.31464774318667,79.68150991564065,63.30648041847581,65.05658254247403,77.10145578279986,79.47383788852973,63.225856870897104,64.98080811259656,0.2131919603868084,207.6720271109167,0.0806235475787033,75.77442987746963,221.9503,155.4843890065479,231869.6851298552,162433.28493611488,452.04057,298.79731955176766,471529.6483566996,311438.8351219005,438.92486,213.66808760015843,454852.5521823614,220248.81848880663,2979.95072,1396.532519909366,3066357.7965358016,1412346.3120383073,997.87949,452.8995808954159,1022190.8129792524,453144.5770022778,1592.10398,687.3007417366107,1616989.2187793818,678800.685301666,0.38189,100000,0,1008865,10539.531142266149,0,0.0,0,0.0,38873,405.36135893525,0,0.0,39847,412.6115208624977,1233400,0,44265,0,0,8863,0,0,73,0.7626251018574622,0,0.0,0,0.0,0,0.0,0.05295,0.1386524915551598,0.3097261567516525,0.0164,0.3582712910840748,0.6417287089159252,23.277196737679027,4.108128121924733,0.3222064393939394,0.2552083333333333,0.2133049242424242,0.209280303030303,11.234009949548518,6.222663930650669,17.72363316427974,11722.183322161023,48.57923188432724,13.143571699730908,15.627834224066106,10.10353280954087,9.704293150989365,0.5835700757575758,0.7959183673469388,0.7119764878765613,0.5893451720310766,0.1210407239819004,0.7468051118210862,0.9207459207459208,0.8517587939698492,0.7882882882882883,0.1280788177339901,0.5148048452220727,0.7134052388289677,0.6542056074766355,0.524300441826215,0.118942731277533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002279288861875,0.0043292676744634,0.0068515398201343,0.0090946042068895,0.0110585482476219,0.0131830962956925,0.0154966792830107,0.0178064568826448,0.0197595731196205,0.0217231071618688,0.0237868208708847,0.0260596352883193,0.0282869427472278,0.0303551740837291,0.0323189991535746,0.034436059133671,0.0364813088951019,0.0383833143094324,0.0403539418137958,0.0425365670708838,0.0566524322123265,0.0704088254380272,0.0840519502318457,0.0968671455163057,0.1087536513091986,0.1247976811348898,0.136350609788458,0.1478267350980684,0.1583144481977166,0.1679776788109674,0.180271118444466,0.191940097958476,0.2032204996350245,0.2128970037042719,0.2224856115901122,0.2321400812773423,0.2404836743140303,0.2484998872095646,0.2563297618235173,0.2630267253161213,0.2689038602024606,0.2750583023754556,0.2808421352110672,0.28631611795912,0.291175254723634,0.2951478822861935,0.2992792071278406,0.302568473545613,0.3060245016235236,0.3086533646116133,0.3071418001802601,0.303919412912624,0.3016234450769555,0.3002870040526703,0.2989771833202203,0.295729608152149,0.2925552110358793,0.2932341934213118,0.2935190876186573,0.2933566184332454,0.2945885785900002,0.2957327288853848,0.2953327913618077,0.296717227881322,0.2989685787445856,0.3007592837337065,0.3009711494775102,0.3025525525525525,0.3062990752050253,0.310818817395426,0.3152425466261288,0.3204238410596026,0.3249384586252604,0.3288319218738079,0.332425068119891,0.3340033104752897,0.3366957053339446,0.3421967682552669,0.3465455546380402,0.3594470046082949,0.0,2.392963336504845,54.51971593276695,159.99953043552466,214.33851138132812,fqhc1_80Compliance_baseline,59 -100000,95825,47083,447.3362901121836,5263,54.07774589094704,4182,43.16201408818158,1630,16.707539786068352,77.3504688262772,79.68257433555758,63.33176974345843,65.06001668444515,77.14539541548483,79.47996502333918,63.25538022847994,64.98731030362846,0.2050734107923659,202.6093122183994,0.0763895149784872,72.70638081668324,221.3992,155.2245685216582,231045.34307331077,161987.54867900672,453.89548,300.8148816454356,473207.7015392643,313457.5336764264,441.29572,214.69084046582773,457999.1442734151,222099.2678746176,2974.45068,1381.0086025187584,3069069.919123402,1406203.1542068964,965.71014,437.0365494953152,993637.735455257,441931.7916350798,1598.5706,667.2489211908581,1638742.5410905296,669165.5291177676,0.38194,100000,0,1006360,10502.06104878685,0,0.0,0,0.0,38990,406.3970780067832,0,0.0,40005,414.93347247586746,1235226,0,44360,0,0,8706,0,0,81,0.8452908948604226,0,0.0,1,0.0104356900600052,0,0.0,0.05263,0.1377965125412368,0.3097092912787383,0.0163,0.3493338200401533,0.6506661799598467,23.667895559482865,4.153716657166412,0.3134863701578192,0.2659014825442372,0.2051649928263988,0.2154471544715447,11.112644578865456,5.713606733186436,17.28884157043107,11764.36163040124,47.935100658088125,13.560258952810113,14.96178874563669,9.64167685409317,9.771376105548145,0.5667144906743186,0.7823741007194245,0.6834477498093059,0.5885780885780886,0.1098779134295227,0.7451923076923077,0.9151138716356108,0.8502824858757062,0.7096774193548387,0.1701030927835051,0.4907975460122699,0.6804451510333863,0.6217345872518286,0.5475819032761311,0.0933521923620933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008752557894,0.0047554830009227,0.006911600527758,0.0092762870467268,0.0115649856581972,0.0136888635391415,0.0159604303707103,0.018023445796912,0.019866466263816,0.0222142601218201,0.0244150037940157,0.0264519838987924,0.0288773023169715,0.0310414435198154,0.0331167491749174,0.0350895320362467,0.0370078984689599,0.0390104760916917,0.0411024391257807,0.0431098202109164,0.0575741453593298,0.0720596384471419,0.0857768648739284,0.0993002437589308,0.1118158352209872,0.1270924923909367,0.1374769387365608,0.1484262814717113,0.1593560852717316,0.1692632436139207,0.1811814073595868,0.1930431398830434,0.2037819461490838,0.2126590024915854,0.2214975473482765,0.2311083541948204,0.2399241240794465,0.2486893913826077,0.2560650266214084,0.2634037972654192,0.2694786039032403,0.2754855078394462,0.281822912970454,0.2869393376848913,0.2911599995140854,0.2951048088779285,0.2994176945714107,0.3026409616462079,0.3059585492227979,0.3089800121458559,0.3073905835096847,0.3050156351163335,0.302998688866645,0.3006316763273153,0.2987537691427892,0.2957390798616425,0.2923710034821146,0.2927925710816885,0.2938698232926247,0.2938050572416991,0.2943484353106025,0.2956653603009236,0.2967363387692885,0.297748551047704,0.2998345442773901,0.3025242819300888,0.3037698412698412,0.3084307961723685,0.3110585452395032,0.3131285246677446,0.3170720700392617,0.31983401617817,0.3222028407675056,0.3240886884629838,0.3290514753793168,0.3325151940158953,0.3352006056018168,0.3368652538984406,0.3420555705422174,0.3452200303490136,0.0,1.864200905927436,54.96280004340231,150.80400118060757,218.64399449277508,fqhc1_80Compliance_baseline,60 -100000,95710,47015,447.23644342283984,5332,54.34123915996239,4180,43.01535889666702,1646,16.790304043464634,77.30949638025908,79.67005339732742,63.31695901961641,65.05981941705134,77.0969826705355,79.46172153444249,63.23527563053606,64.98269594460925,0.2125137097235807,208.33186288493263,0.0816833890803536,77.12347244209639,221.2364,155.05944560984793,231152.8575906384,162009.66002491687,451.1402,298.3746128075911,470700.7000313447,311087.7158161018,438.247,214.01761725273585,453885.1844112423,220605.9402484864,2944.38337,1385.103610712271,3032459.5444572144,1403288.3405206054,947.17933,434.027647560796,975103.301640372,438956.8879790022,1591.74562,687.3697883922428,1624955.239786856,685209.0595364345,0.38234,100000,0,1005620,10506.948072301746,0,0.0,0,0.0,38748,404.1688433810469,0,0.0,39773,411.5139483857486,1236982,0,44397,0,0,8637,0,0,85,0.8880994671403197,0,0.0,0,0.0,0,0.0,0.05332,0.1394570277763247,0.3087021755438859,0.01646,0.3535335371336091,0.646466462866391,23.56851269098864,4.181006027039275,0.3019138755980861,0.2684210526315789,0.231578947368421,0.1980861244019138,11.389311664590137,6.141868711569412,17.703680901852888,11748.177743589062,47.94398810641502,13.626588634299662,14.431243186976555,10.759889110149231,9.12626717498957,0.573444976076555,0.7896613190730838,0.6973058637083994,0.5640495867768595,0.1026570048309178,0.740080971659919,0.9177777777777778,0.8490028490028491,0.7245762711864406,0.1616161616161616,0.5035653650254669,0.7038690476190477,0.6388583973655324,0.5122950819672131,0.0841269841269841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394537223645,0.0046224961479198,0.0070915510104699,0.0093442756155033,0.0117318151781629,0.0138121265789286,0.0159200937675177,0.0179958557473434,0.0200421078451412,0.0220343666526798,0.0240779843785235,0.0261931164777394,0.0285969891411648,0.0306587985705605,0.032858233122254,0.0349537634964095,0.0372494022914747,0.0391109543861104,0.0412015383016318,0.0431281447605554,0.0578111946532999,0.0715623986016181,0.0853079077378142,0.097671777399205,0.1092621299840762,0.125454776207801,0.1373350027587963,0.1485862113017927,0.1584761334985684,0.1685861965427015,0.1807367819931256,0.192186501792037,0.2029496598639456,0.2136179529282977,0.2229577170046149,0.2327182808099177,0.2416197371949584,0.2500929566990794,0.2576385969297897,0.2640786939374484,0.2706767787877033,0.276749356424058,0.2824918296783972,0.2870149343249565,0.2906550006076072,0.2953357012480884,0.2990001626769111,0.3020698082945085,0.3057196910796662,0.309138719310764,0.3065453319851702,0.304427459891207,0.3022268605356312,0.3002153583765736,0.2968717475987986,0.293690324755935,0.2905291860870668,0.2915181285012567,0.2924726768946585,0.2923679550698456,0.2936077599954971,0.2955374128091312,0.2954392884115129,0.2974890341061678,0.2984053572288866,0.2999270947247826,0.3011326353028444,0.304609784416481,0.3071968636236348,0.3101448131633982,0.3109087614387967,0.3133160649151557,0.3175209926055897,0.3243632504548211,0.3271518216727545,0.331489762297011,0.3329780755176614,0.3334012635011208,0.3323328785811733,0.3348519362186788,0.0,2.5197416502187053,53.44912382362119,155.51051636542306,215.75413932560065,fqhc1_80Compliance_baseline,61 -100000,95737,46494,441.8667808684208,5314,54.39903067779438,4239,43.72395207704441,1600,16.367757502324075,77.40440741590693,79.76058486734556,63.3594678928421,65.09896191836174,77.20011651027941,79.56002724632918,63.28242076054824,65.02575332396515,0.2042909056275164,200.5576210163724,0.0770471322938632,73.20859439658989,221.67684,155.23694106278285,231547.71927259053,162149.36864825807,452.21873,298.85911322006353,471741.9179627521,311553.46754135133,436.93618,212.22080243579867,453005.59867136006,219078.55877842367,2998.81002,1391.5802443166076,3097221.8786884905,1418424.9917133483,984.63821,441.3002646892276,1014461.1592174396,446929.3321173924,1555.07216,663.4199338341831,1592751.5589583963,664895.5598237626,0.37906,100000,0,1007622,10524.896330572295,0,0.0,0,0.0,38851,405.2456208153588,0,0.0,39643,410.6667223748394,1241826,0,44491,0,0,9002,0,0,79,0.8147320262803305,0,0.0,1,0.0104452823882093,0,0.0,0.05314,0.1401888883026434,0.301091456529921,0.016,0.3476147614761476,0.6523852385238524,23.662316703994502,4.088186650550552,0.3217740033026657,0.2602028780372729,0.2123142250530785,0.2057088936069827,11.298603561954788,6.141130754276131,17.14137159958163,11708.940606929466,48.464044479412166,13.458554415939496,15.5549713199217,9.999184976864294,9.451333766686668,0.5881104033970276,0.8213961922030825,0.7038123167155426,0.5833333333333334,0.1169724770642201,0.7474267616785432,0.9280898876404494,0.8350515463917526,0.7183673469387755,0.1675675675675675,0.520497311827957,0.7492401215805471,0.6516393442622951,0.5328244274809161,0.1033478893740902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020755920499762,0.0043374714973397,0.006512873577211,0.0086629766922256,0.0108486777220827,0.0129173452768729,0.0151541401273885,0.0177341509953776,0.0199137649174431,0.0221540035814786,0.0240030336882885,0.0263257828456477,0.0285902273031016,0.0304672050098879,0.0326052188986452,0.0345576149766893,0.0367321154881736,0.0387755313741558,0.0406755001299038,0.04271474549261,0.0573096118106454,0.071172924777094,0.0845475238904448,0.0971791448067036,0.1091470613036512,0.1248995474347587,0.1366192102862235,0.1475322573776774,0.1583440170940171,0.168605835737188,0.1801440894259038,0.1915298802194354,0.2026907975593574,0.2124363095628594,0.2218029396233057,0.231497475418549,0.2399285993194622,0.2483641760169091,0.2554062482281567,0.2626633706424958,0.2689974696999457,0.2752664075539526,0.2799216176974018,0.2850880336367328,0.290111273898461,0.2943597429880708,0.2978497577543579,0.3014390497703104,0.3061192873741286,0.3088654860042861,0.3070743646482934,0.3052276559865092,0.3031438596491228,0.300516792145911,0.2986911188345781,0.2957587584230265,0.2922698457753808,0.2927972816231846,0.2925498461695364,0.2932329491982882,0.2934502705728681,0.2941721358323971,0.2937887291618853,0.2941712811617408,0.2948150981282719,0.2969013354077531,0.2979186082634358,0.3022929777556234,0.3060415289902959,0.3113838407678388,0.3140074838826022,0.3175839208670946,0.320413115162073,0.325679439885568,0.3301177998330396,0.3340338587273788,0.3395596051632498,0.3456221198156682,0.3481256890848953,0.3527329925285096,0.0,2.20271065675983,55.305652515961945,151.7909285003537,221.66585210927727,fqhc1_80Compliance_baseline,62 -100000,95759,46480,441.5355214653453,5183,53.06028676155766,4078,42.11614574087031,1536,15.716538393258077,77.33232137485312,79.69756836897713,63.31916690730778,65.07079914207704,77.1414581580394,79.50758719282014,63.24818395762421,65.00181486452217,0.1908632168137245,189.98117615699076,0.0709829496835681,68.98427755486125,222.98474,156.11831360691357,232860.34733027703,163032.52290324,449.56463,297.60900831022394,469010.3384538269,310324.86587184906,432.53547,210.43091482296853,448040.1006693888,217031.18729974687,2892.45709,1335.4579778857922,2989900.9074865025,1364089.665110755,941.81456,423.0561840356408,972315.7092283756,430641.2363518171,1498.91724,629.3983249754613,1535735.4817823912,633543.6273434204,0.3765,100000,0,1013567,10584.56124228532,0,0.0,0,0.0,38658,403.22058501028624,0,0.0,39140,405.22561847972514,1233992,0,44297,0,0,8779,0,0,94,0.9816309694127968,0,0.0,1,0.0104428826533276,0,0.0,0.05183,0.1376626826029216,0.2963534632452247,0.01536,0.3502678736375392,0.6497321263624607,23.60499366453418,4.124399223837165,0.3126532614026484,0.260912211868563,0.217999019127023,0.2084355076017655,11.251119174804137,6.013921810657936,16.387741884294996,11599.710067063474,46.7187177430357,12.907172154414171,14.570174381281149,9.9932644839373,9.248106723403078,0.5831289847964689,0.8026315789473685,0.7137254901960784,0.59392575928009,0.1011764705882353,0.7564543889845095,0.9278846153846154,0.8551136363636364,0.7601809954751131,0.1387283236994219,0.5140603566529492,0.7222222222222222,0.6598049837486457,0.5389221556886228,0.0915805022156573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020268352993635,0.0039862459300733,0.0061124197871821,0.0082730303276689,0.0105395946935785,0.0129990525768889,0.0152361915640042,0.0176622528050311,0.0197433669035325,0.0220004095004095,0.0240704480916891,0.0262406833254624,0.0285552699228791,0.0306397791876081,0.0327775828982935,0.0347062167329853,0.0367057020677372,0.0388310233214374,0.0409959575595714,0.04285565507186,0.0574542266018079,0.0719203163908012,0.0852902616812627,0.0976604805215288,0.1097521114286015,0.1250105770858013,0.1360814897342034,0.1473746953199008,0.1576727148456272,0.1665523008963417,0.1783033396874629,0.1893082033194122,0.1996084402871437,0.209122024297696,0.2176553423693011,0.2274181584686749,0.2355428137967962,0.2443987042785801,0.251902855133455,0.2588289164901837,0.2650658153468896,0.2703110383536015,0.2758743036911759,0.2812264207437571,0.2859500922419652,0.290433797544728,0.2951008213218656,0.2986915650406504,0.3022167041721632,0.306031302698145,0.3039007473520081,0.3016690706779312,0.2996948775995163,0.2968094462305907,0.2943156209227849,0.2919710260093524,0.2894491277460578,0.2900553390746259,0.2904663864831294,0.2918699476514369,0.2922973301652042,0.293443302223713,0.2949846340392616,0.2963665580502611,0.2986776105791153,0.3001143094669022,0.3008107035546233,0.304576802507837,0.3086854869665352,0.3116441067046624,0.3143697669155917,0.3205896388991993,0.3260322255790533,0.3291581264708115,0.3342009854048526,0.3309235074626865,0.3298907349199221,0.3323436262866192,0.3348574502420656,0.3379804069329314,0.0,1.85735982853774,51.06871247203918,156.9502349070918,209.99869439900093,fqhc1_80Compliance_baseline,63 -100000,95729,46855,445.38227705293065,5334,54.53937678237525,4261,43.967867626320135,1621,16.567602293975703,77.41699606751023,79.76938716793482,63.36600846061516,65.10021473533243,77.21096116147828,79.56649491470773,63.28882463667755,65.02607942265539,0.2060349060319453,202.89225322709115,0.0771838239376094,74.13531267704343,221.38512,155.06744329520623,231262.10448244523,161985.6431146321,451.53491,298.29294857496086,471125.4269865976,311048.11851954163,437.99308,213.0699546759092,454240.1571101756,219926.5167146328,3005.72462,1395.9269201441984,3104669.0240157107,1423213.854850066,1004.51179,453.8549718327771,1037267.6304985952,462149.2501320841,1585.63248,673.0009783239234,1623137.335603631,675326.2944318183,0.38094,100000,0,1006296,10511.913840111149,0,0.0,0,0.0,38760,404.3079944426454,0,0.0,39746,411.85011856386257,1242728,0,44600,0,0,8760,0,0,85,0.8879231998662892,0,0.0,1,0.0104461552925445,0,0.0,0.05334,0.1400220507166482,0.3038995125609299,0.01621,0.3528352835283528,0.6471647164716472,23.477115014655336,4.131840820029846,0.316827035907064,0.2644919033090824,0.2088711570053978,0.2098099037784557,11.534126677195465,6.144633495948645,17.314604863032496,11771.334934516191,48.84550664041206,13.860450086325418,15.286812940688913,9.85891430952194,9.839329303875804,0.5766252053508566,0.7976929902395741,0.7014814814814815,0.5584269662921348,0.1275167785234899,0.7575039494470774,0.9032258064516128,0.8671875,0.7373737373737373,0.1702127659574468,0.5001669449081803,0.7147385103011094,0.6356107660455487,0.5072254335260116,0.1161473087818696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023279823478208,0.0046095087580666,0.0068869685167153,0.0096061089166218,0.0120180575890678,0.0137930332457908,0.0158498797243853,0.0182077975096958,0.020295542338586,0.0224866236303927,0.0247059064639094,0.0269812598780763,0.0292354978977991,0.0312033365944081,0.0333515582285401,0.0351540703081406,0.0371566709113685,0.0391105487507648,0.0411963999916858,0.0433038876619859,0.0585324089542265,0.0725891670764498,0.0859052094916392,0.0978851836661724,0.1103084629580806,0.125581641285956,0.1379145763287124,0.1487350865803169,0.1590022966404956,0.1687718470545345,0.1808766055490358,0.1927541405683748,0.2035624239262737,0.2130905834298071,0.2221221243215926,0.2323554139563697,0.2414934522151017,0.2486879516312104,0.2567826491162432,0.2635295194717508,0.2706052372969535,0.2769793419330716,0.2824874116451147,0.2870307208080518,0.29079992722421,0.2946838496855113,0.2986780948573142,0.3033321053367039,0.3071643681577893,0.3103661749209694,0.3081967213114754,0.304269632070291,0.3020207844074756,0.2998108767522774,0.2984895246008665,0.2951012609858616,0.2919710332423521,0.2924183006535947,0.2922211458386444,0.2928361068729376,0.2938471562878153,0.2948655064843336,0.2957251082251082,0.2973817810982774,0.2987307343608341,0.3004941401702325,0.3030756630044906,0.3057249533291848,0.3097511021626688,0.3144829208988587,0.3188978144774043,0.3218836855629556,0.3254357129566458,0.3286123248455627,0.3313593041547145,0.3339530560074367,0.3349332533373331,0.3345864661654135,0.334402566158781,0.3432062199185486,0.0,2.02898601504062,55.42604627232878,160.48943469493992,215.1528236437936,fqhc1_80Compliance_baseline,64 -100000,95684,46820,444.8497136407341,5322,54.450064796622215,4213,43.33012833911626,1607,16.282764098490865,77.3508434030137,79.74157648260838,63.31502979323547,65.08298400883126,77.14288190746622,79.53898331796285,63.23676264322908,65.00967942824096,0.2079614955474795,202.5931646455348,0.0782671500063898,73.3045805903032,222.68664,155.9301708142385,232731.3239413068,162963.68338932164,454.33312,300.3464710227887,474148.1961456461,313215.7006634221,441.68634,214.82380601892143,457570.68057355465,221349.58227803008,2980.86481,1392.603574316868,3064664.154926634,1404761.5215886342,993.9326,449.1884716825495,1017804.0320220728,448491.4117469482,1565.54926,671.2631183364211,1587584.110196062,661115.4131681258,0.38016,100000,0,1012212,10578.696542786673,0,0.0,0,0.0,38985,406.7137661469002,0,0.0,40132,415.3254462606079,1229449,0,44142,0,0,8745,0,0,83,0.867438652230258,0,0.0,0,0.0,0,0.0,0.05322,0.1399936868686868,0.3019541525742202,0.01607,0.3514440433212996,0.6485559566787004,23.6760291139537,4.066020665946442,0.3156895323997151,0.2627581295988607,0.2148112983622122,0.2067410396392119,11.12312204324351,6.015634968316214,17.232731953012202,11696.641410328211,48.0995770162609,13.450460499591635,14.899125818892704,10.15624430487814,9.593746392898424,0.5831948730121054,0.8003613369467028,0.6977443609022557,0.585635359116022,0.1297359357060849,0.7427626137303557,0.9066059225512528,0.8490028490028491,0.729957805907173,0.1593406593406593,0.5189747003994674,0.7305389221556886,0.6435137895812053,0.5344311377245509,0.1219158200290275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0043808500065915,0.0065070196631779,0.0086592405886657,0.0109768255712222,0.0131924777408773,0.0156178273776127,0.0180055967481667,0.0204027367279941,0.0227053931709715,0.024643626294739,0.0268482570201926,0.0289749233712534,0.0311662888934679,0.0334062622551549,0.035354318498992,0.0377100470339597,0.0397629377452099,0.0417832513340059,0.0437492833540074,0.0578767051745388,0.0719244421641205,0.0848658521224335,0.0975530213768725,0.1099390282495411,0.1249299127215022,0.136790600422429,0.147220122035631,0.1566030677141788,0.1662875048289479,0.1785363960720483,0.1899276837136794,0.2006833440332531,0.2100205752309241,0.2199456108866306,0.2296143525602643,0.2391559202813599,0.2482773374166816,0.2550885960926851,0.2614093613508959,0.268013662942164,0.2738056206088993,0.2794431279620853,0.2850014394012091,0.2897426859358477,0.2950520672869554,0.2991208214004327,0.3031801940414277,0.3072257213434901,0.3103561961782431,0.3074717671920638,0.3044249247391645,0.3024498635839451,0.299463544070143,0.2974845653879751,0.2941715262724025,0.2917120444465489,0.2923680981595092,0.2920797138477261,0.2922855262455753,0.292763526380643,0.2930410851189306,0.2936940686784599,0.2946311557342455,0.295325271258544,0.2962703962703962,0.2971204557633189,0.3019044062733383,0.306807919416464,0.310781744945446,0.314229425987284,0.3169401772138625,0.3192295744019882,0.3230155143846965,0.3249581239530988,0.3261585509291931,0.3295094339622642,0.3296595158433379,0.3295029396044895,0.3310580204778157,0.0,2.6687212463957897,52.16569708956057,159.08846912816824,217.95038670608477,fqhc1_80Compliance_baseline,65 -100000,95714,47147,449.2028334412939,5323,54.14046012077648,4220,43.37923396786259,1670,16.935871450362537,77.26691653433518,79.62593756479343,63.2951211478972,65.03875877663639,77.04642173204749,79.41175419546076,63.21166941742497,64.9608186038619,0.2204948022876891,214.18336933267312,0.0834517304722268,77.94017277448972,221.60776,155.29698601803446,231531.1866602587,162251.06673844418,450.14685,297.73132975814684,469566.9703491652,310327.75602870743,440.62617,214.9996088112971,456246.17088409216,221338.8236888029,3010.66201,1417.0636203946522,3095909.7519694087,1431280.018964758,983.08439,456.8383345573112,1008313.266606766,458654.2876622311,1633.3511,705.7599903995466,1658849.8443278936,697068.4689608163,0.38286,100000,0,1007308,10524.144848193577,0,0.0,0,0.0,38649,403.03403890757886,0,0.0,39928,413.1579497252231,1233595,0,44350,0,0,8701,0,0,74,0.7626888438472951,0,0.0,2,0.0208955847629395,0,0.0,0.05323,0.1390325445332497,0.3137328574112342,0.0167,0.354960460100647,0.645039539899353,23.60128987969092,4.138606778019232,0.3109004739336493,0.2597156398104265,0.2097156398104265,0.2196682464454976,11.308872425438135,6.082026721614552,18.05273644140365,11784.65894977164,48.72923591969101,13.509168115353846,15.02549285671117,9.90699878621785,10.287576161408142,0.5725118483412323,0.7874087591240876,0.7217987804878049,0.5740112994350283,0.1057173678532901,0.7317262830482115,0.9107142857142856,0.8647214854111406,0.6929460580912863,0.1818181818181818,0.5027266530334015,0.7021604938271605,0.6641711229946524,0.5295031055900621,0.082036775106082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024308228335291,0.0047146376826288,0.0069204854487153,0.0091222153371054,0.0115330634827004,0.0137863622941973,0.0159335338192568,0.0180479986933575,0.0203224190630015,0.0227440222731739,0.0246225128904287,0.0266110900074946,0.0289783536428608,0.0308895023071852,0.0330757564815483,0.0347832378904715,0.0367002878860054,0.0385225916895782,0.0404781704781704,0.0422406068310167,0.0570569316235746,0.0709268854346574,0.0847439839642343,0.0974262384780504,0.1095413444190046,0.1256098464404017,0.1376348424360825,0.1486988847583643,0.1592732017196757,0.1709215442092154,0.1832001811301226,0.1940311446808049,0.2046417408161709,0.2147637040687804,0.2238519775630076,0.2331764392442441,0.2430552449116528,0.2516253337990558,0.2586226483686267,0.2658947609767282,0.2718351097686584,0.2785730170062852,0.2839093933904065,0.2895125022486058,0.2933432204420024,0.2971322849213691,0.3008922753020202,0.3041357262039714,0.3066887984023653,0.3092715319390981,0.3066655859068925,0.3044282735670592,0.3019545216862873,0.2996278544433021,0.2970381070093666,0.2943821949347659,0.2910626677039836,0.2920515733833917,0.2929374271811391,0.2928134282953366,0.2936220516765804,0.2944635856005703,0.2940842702532311,0.2948358911168365,0.2960827825751362,0.2978139935751782,0.2984306663236429,0.3034800732647003,0.3069615766340564,0.3098710377244787,0.3121442996144666,0.315397395358808,0.3196306602580319,0.3237986270022883,0.3254259625341241,0.3290375975407897,0.3289614152813787,0.3293051359516616,0.3329676357652221,0.3379737045630317,0.0,2.689693292485249,55.80215409686179,155.11702596412454,216.2219725426829,fqhc1_80Compliance_baseline,66 -100000,95697,46741,444.4130954993364,5226,53.335005277072426,4166,42.90625620447872,1591,16.22830391757317,77.288290147924,79.65825365900444,63.294707477804174,65.0441445683827,77.08800925955994,79.46239446650026,63.21917735050843,64.97305605997363,0.2002808883640625,195.8591925041873,0.0755301272957424,71.08850840907621,222.89696,156.09149300575103,232919.4854593143,163110.12153542018,454.04416,300.76758319428524,473812.7214019248,313646.4974453811,436.78178,213.46057213047203,452484.97863046906,219885.3315672183,2951.37285,1378.1074233093348,3039920.1542368103,1396131.557215121,958.50725,438.33041369757774,982840.4965672904,439301.6803192571,1545.33878,654.7237698214541,1577663.7303154748,651691.5722113916,0.38029,100000,0,1013168,10587.24933905974,0,0.0,0,0.0,39029,407.1600990626665,0,0.0,39672,410.65028161802354,1224539,0,44032,0,0,8773,0,0,76,0.7941732760692602,0,0.0,0,0.0,0,0.0,0.05226,0.1374214415314628,0.3044393417527746,0.01591,0.3559104258443465,0.6440895741556535,23.51774610045324,4.14422986815997,0.3101296207393182,0.2698031685069611,0.2174747959673547,0.2025924147863658,11.386256741988708,6.069779716914892,16.964682746273343,11681.457610330504,47.87097444554672,13.914349122767232,14.755573032143996,9.954425683190042,9.246626607445444,0.5758521363418146,0.791814946619217,0.6904024767801857,0.5706401766004415,0.1184834123222748,0.7408610885458976,0.8928571428571429,0.8477011494252874,0.7387387387387387,0.1513513513513513,0.5066439522998296,0.7175925925925926,0.6324152542372882,0.5160818713450293,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812890549833,0.0045518597743331,0.0067175386613629,0.0092342388102155,0.0113599381661378,0.013552729383254,0.0159050590322383,0.0182514163221558,0.0203722822475952,0.0226270275802077,0.0247606944472912,0.0267188109461928,0.0290761037198494,0.0311219130398961,0.0331610813710018,0.0350137450652115,0.0371290716696693,0.0391656288916562,0.0413247209827232,0.0432417221649001,0.0574442529636012,0.0711256766519731,0.08432343927117,0.0969300230485071,0.1090373592036229,0.1236765204133491,0.1358259355222359,0.1469193807864821,0.1579915315854753,0.1676777872029721,0.1799585930255127,0.1914047688690998,0.2024482416876313,0.212570752909491,0.2217718842239746,0.2307000998557639,0.2398085824817191,0.2486047691527143,0.2564779216052051,0.262242941291293,0.2675140030847375,0.2729745255038042,0.2792954154557855,0.2845956138454517,0.2888134107592856,0.2937645881960654,0.2970585282602148,0.3004449998087393,0.3036558134704263,0.3079038891313259,0.3056820938569772,0.3034286974257207,0.3013300200491345,0.2983131832331861,0.296094459582198,0.2925505824647456,0.289414521389443,0.2897240723120837,0.2896777941025729,0.2905281193667565,0.2919148776741224,0.2924291777711973,0.2928335217045502,0.2944371480088151,0.2966510605771068,0.297286811680418,0.2980066821450818,0.3023335835835836,0.3054342128254412,0.3083794466403162,0.3116936216609122,0.3171829494307651,0.3200649878147847,0.3233207547169811,0.3273600591169407,0.3281704902759986,0.3346326836581709,0.341593973037272,0.3454157782515991,0.3390334572490706,0.0,2.4199545873554604,53.556238630737255,158.49959104679235,210.49597256569731,fqhc1_80Compliance_baseline,67 -100000,95826,47184,448.21864629641226,5288,53.95195458435081,4163,42.806753908125145,1609,16.394297998455535,77.36488025655099,79.67995852610555,63.35773544642036,65.07130784641713,77.16557288333956,79.48456004430015,63.28234930665879,64.99969250167422,0.1993073732114254,195.3984818053982,0.0753861397615693,71.61534474290931,221.84844,155.3681597180859,231510.5921148749,162134.5834325611,452.01444,299.7729801770357,471044.93561246427,312172.97264733544,441.66474,215.12279955915537,456934.4228080062,221390.56803446455,2933.13089,1369.1979175791428,3018414.730866362,1386465.6801683712,970.26837,433.4738023027627,996242.7629244672,436260.4637419485,1563.53264,664.4854626694616,1595043.7459562125,662248.8687822325,0.38175,100000,0,1008402,10523.208732494311,0,0.0,0,0.0,38773,403.9196042827625,0,0.0,40069,414.229958466387,1239020,0,44519,0,0,9049,0,0,85,0.8765888172312317,0,0.0,1,0.0104355811575146,0,0.0,0.05288,0.1385199738048461,0.3042738275340393,0.01609,0.3518451519536903,0.6481548480463097,23.53438047934151,4.182754488141335,0.3197213547922171,0.2627912563055489,0.2121066538553927,0.2053807350468412,11.5803602463854,6.284042254412752,17.26990841607271,11765.627836551806,47.88980282431545,13.295466715898256,15.264049026431586,9.906021059270632,9.424266022714985,0.581791976939707,0.7787934186471663,0.7077385424492862,0.5990939977349944,0.1157894736842105,0.7518014411529224,0.9002267573696145,0.8831168831168831,0.7436974789915967,0.1351351351351351,0.5089224433768016,0.6967840735068913,0.6363636363636364,0.5457364341085271,0.1104477611940298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0044507076523784,0.0067680006494033,0.0090297810100353,0.0114702921467139,0.0137355923919683,0.0159840159840159,0.0182330481654654,0.0204551030421982,0.0224474128665745,0.0248124461935801,0.0266209642659222,0.0286953483113733,0.0309286839098796,0.0330058858091183,0.0351302803815501,0.0370297582722204,0.039227469589904,0.0411280358014308,0.0433108958686628,0.0578443438536473,0.0721691506929492,0.0857068035405646,0.0987367824178593,0.1109870783617848,0.1269006588950836,0.1387014417831075,0.1496619610511098,0.1597345935163159,0.168664246007519,0.1810426438314901,0.192804946599213,0.204747935680139,0.213863678560117,0.2232601074760706,0.2327247796711377,0.2415256597342126,0.2498315817838857,0.2579932974050088,0.2647334491587417,0.270103330831842,0.2757276567934085,0.2804644679644679,0.2849558791878901,0.289515835456862,0.294237822137987,0.2993402144303101,0.3021324155098619,0.3061543631100082,0.3103643447585952,0.3079713552513133,0.306127774115579,0.3033134013366163,0.3007938799076212,0.2976132127315124,0.2946335639502847,0.2909983374237986,0.2912937080164895,0.2916253462367062,0.2923513861103172,0.294207116702657,0.2938438378956542,0.2942311321743871,0.2968791916301529,0.2981409611422548,0.2987532467532467,0.2993630573248407,0.3035848348348348,0.3065310829227382,0.3103694307911844,0.313960373491232,0.3185661862468755,0.3242115907223661,0.32919017843526,0.3296930898135944,0.3328611898016997,0.3380647130647131,0.3485401459854014,0.3448840381991814,0.3462857142857143,0.0,2.4002703614497576,54.41116156084287,152.4460586241608,215.57729314847515,fqhc1_80Compliance_baseline,68 -100000,95630,46879,446.6276273136045,5324,54.34487085642581,4267,43.96110007319879,1613,16.46972707309422,77.2563444549925,79.66735220247206,63.27473565930678,65.05610093977454,77.04813656829077,79.4626765163785,63.195433497597165,64.98070329111407,0.2082078867017287,204.6756860935659,0.079302161709613,75.39764866046994,221.463,155.19238763008,231583.1851929311,162284.20749773085,450.56098,298.5065326601091,470498.3164278992,311495.44354293536,441.83411,215.847300745546,457800.9411272613,222456.32462407192,2973.17945,1392.5939699522366,3069257.8688696017,1416444.4420707272,971.16725,444.3785916032825,1001781.0519711388,450919.754892065,1563.64044,671.0482579730032,1599670.5218027816,671002.5433419191,0.38038,100000,0,1006650,10526.508417860505,0,0.0,0,0.0,38671,403.7122241974276,0,0.0,40105,415.2253476942382,1233611,0,44295,0,0,8843,0,0,77,0.7947296873366099,0,0.0,0,0.0,0,0.0,0.05324,0.1399652978600347,0.3029676934635612,0.01613,0.3517154661397521,0.6482845338602479,23.689964281538256,4.118328800587616,0.3126318256386219,0.270681977970471,0.2177173658307944,0.1989688305601125,11.222164315079722,6.142068701548919,17.38019986659319,11788.885953687712,49.13942669527084,14.09713096944549,15.213838918146909,10.473623588917851,9.354833218760598,0.5819076634637919,0.8216450216450216,0.6784107946026986,0.573735199138859,0.1130742049469964,0.7538461538461538,0.9285714285714286,0.8567839195979899,0.6872427983539094,0.1639344262295081,0.506572295247725,0.7466863033873343,0.6025641025641025,0.5335276967930029,0.0990990990990991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219020610725,0.0046623354246272,0.0070733415196013,0.0091432751211483,0.0114558958184962,0.0137933844727646,0.016035580218704,0.0180432383832604,0.0203444960415686,0.0224967730038723,0.0245854539484485,0.0268220495745468,0.0287120252838774,0.0307960368273999,0.0330248125116211,0.0349644560797177,0.037049323077561,0.0390065028151164,0.0408432970166182,0.0425689489715024,0.0571052329044866,0.071006537043245,0.0848468305792932,0.0976631578947368,0.11026098335743,0.1260212504762307,0.1383354738730323,0.1500915906960893,0.1603138294460953,0.1696572299371123,0.1825964140548349,0.1940300124600465,0.2049125864604324,0.2143741712056286,0.2232969020546359,0.2332241771660098,0.2417734827640203,0.2492785968709139,0.2574793125397835,0.2649518717804573,0.2715412269511771,0.2770150653613928,0.2820458076836399,0.2871323970711799,0.2924279124116021,0.2968213588875991,0.3008249335539842,0.3040717982713342,0.3071244145161081,0.3104710312479355,0.3079320113314447,0.3055923412238592,0.303587323565565,0.3016565457470398,0.2999522914989415,0.2973862238622386,0.2939401638823604,0.2934503424657534,0.2942984188026851,0.2949511254596,0.2950177868960454,0.2946547309501597,0.296000504403018,0.2958020386266094,0.2961120722798923,0.2976010823749805,0.2981226675782696,0.30171034049898,0.3053336589109429,0.3103339634530561,0.3131436314363143,0.3171515918195235,0.3212318477716575,0.3225854941751221,0.3238985069158193,0.32372428222713,0.3252044609665427,0.3298460323726806,0.3327991452991453,0.3298969072164948,0.0,2.561294665401693,56.53791955246453,154.2204777025392,220.682281388571,fqhc1_80Compliance_baseline,69 -100000,95692,46749,444.9692764285416,5256,53.80805082974544,4097,42.22923546377963,1599,16.375454583455255,77.32722884548278,79.70298331790289,63.32110870231941,65.07551569011596,77.12464116835719,79.50155300538904,63.24652119452672,65.00326961086263,0.2025876771255923,201.43031251384969,0.0745875077926925,72.2460792533326,220.86086,154.8250244760346,230803.89165238471,161795.15996743154,446.5941,295.5920435110755,466027.8706683944,308235.50126938184,435.86157,212.79694445950904,450980.029678552,219032.50141832748,2892.51383,1338.84601995204,2984775.571625632,1362213.8259024827,939.10233,425.015104071095,966829.7036324874,429790.3778516893,1555.2357,652.7597138245198,1594320.3820591064,657059.2017896599,0.37967,100000,0,1003913,10491.085984199306,0,0.0,0,0.0,38380,400.46189859131385,0,0.0,39541,408.769803118338,1242417,0,44567,0,0,8746,0,0,76,0.7733143836475359,0,0.0,1,0.0104501943736153,0,0.0,0.05256,0.138436010219401,0.3042237442922374,0.01599,0.3436988543371522,0.6563011456628478,23.791863432345245,4.206380034167374,0.3107151574322675,0.2694654625335611,0.2064925555284354,0.2133268245057359,11.252376334434436,5.956430253065531,17.063892335454693,11739.902588333423,46.90882536001647,13.56915634381991,14.443399295321491,9.425373228037936,9.47089649283712,0.5740785940932389,0.8061594202898551,0.6967792615868028,0.5685579196217494,0.1075514874141876,0.7655055225148684,0.9319148936170212,0.8625730994152047,0.7121212121212122,0.1616766467065868,0.4969178082191781,0.7129337539432177,0.635875402792696,0.5246913580246914,0.0947666195190947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.004712630864185,0.007081262047276,0.0092223000903947,0.0114702921467139,0.0135623593617952,0.0158974568147982,0.0179138623063331,0.020013089808357,0.0220581458459206,0.0243257101835709,0.0264060638428988,0.0284917867538906,0.0304997424008243,0.0324161988110964,0.0344267720118306,0.0365804386337501,0.0387969518905338,0.0408670598391945,0.0427771813339726,0.0577814915395863,0.0716162049586084,0.084969582546675,0.0983610006522333,0.1110021303971819,0.126635568389765,0.138424643724997,0.1494309168148377,0.1597231124214844,0.1692032133166018,0.1811945377789265,0.1931102404813957,0.2036148902156536,0.213439037725533,0.2223567082228408,0.2321104169435952,0.2407016839074688,0.2493167017220241,0.2567168920758827,0.263262174171973,0.2697360045368795,0.2754328497894244,0.2812104285257814,0.2866317593069651,0.2903343376421421,0.2942126348228043,0.29825879054164,0.3016773996487387,0.3048388768003315,0.308505443747938,0.3072030186645105,0.3054626992970437,0.3024805262490668,0.3000447504799849,0.2973928544900839,0.2948788715118062,0.2920063961496446,0.2921913120364154,0.2928544668097135,0.2932759815858232,0.2950027969420101,0.2951719524671441,0.2955289895892011,0.2950450952009798,0.2961523699865668,0.296903460837887,0.2965954663101908,0.3005204088030597,0.306133854967165,0.3087250980236841,0.3117765016862638,0.3170991067630795,0.3186058237741082,0.3215431627196333,0.3237185549460942,0.3283493532692536,0.3311906948270585,0.3331987891019172,0.3378119001919386,0.3368861819566044,0.0,2.2433064650054493,51.12688252112939,154.7801752019918,213.6691178438342,fqhc1_80Compliance_baseline,70 -100000,95784,46864,444.3644032406247,5363,54.78994404075837,4261,43.95306105403825,1651,16.933934686377683,77.38146625236273,79.70480928075938,63.35451413110488,65.06785880592544,77.17427387283136,79.49913258504027,63.27669206460852,64.9928238362724,0.2071923795313637,205.67669571910585,0.0778220664963598,75.03496965304635,221.22474,154.96456058918957,230962.10223001757,161785.4345080489,449.78208,298.1885962656724,469029.4308026393,310776.7875686353,445.14242,217.61284858563732,461647.1331328824,224743.3787739471,2992.34345,1393.049841241468,3088439.791614466,1419766.2264973803,963.6673,433.1037351937466,994611.1981124196,440761.62363069097,1602.98896,678.0169016361375,1645529.9423703332,683418.0929161351,0.38013,100000,0,1005567,10498.277374091704,0,0.0,0,0.0,38556,401.9460452685208,0,0.0,40278,417.387037501044,1239124,0,44493,0,0,8866,0,0,98,1.0231353879562348,0,0.0,0,0.0,0,0.0,0.05363,0.141083313603241,0.3078500839082603,0.01651,0.3556425774296903,0.6443574225703097,23.60286708124687,4.162788359950389,0.3142454822811547,0.2741140577329265,0.2086364703121333,0.2030039896737855,11.402535127174888,6.174172708432681,17.551893716236364,11743.046995469123,48.65260445474712,14.190455375244062,15.242185186981622,9.908896877849612,9.311067014671814,0.5679417977000704,0.7799657534246576,0.6923076923076923,0.5579302587176603,0.099421965317919,0.7507861635220126,0.9042769857433808,0.8608247422680413,0.7207207207207207,0.0994152046783625,0.4901304784208765,0.689807976366322,0.6235541535226078,0.5037481259370314,0.0994236311239193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161128323512,0.0042867566581539,0.0065631308264269,0.0088553091234056,0.0114085838917303,0.013844493759798,0.0161651989562948,0.0183879427341095,0.0206170821413976,0.0229783925356032,0.0250481498176453,0.0269832150038987,0.0289287622805935,0.0311705423962611,0.0332790366811686,0.0356183906146728,0.0378215608766737,0.0398623220709746,0.04211335494058,0.044051808508423,0.0587633707278893,0.0723119742183903,0.0857376584966806,0.0986796459432752,0.1113664635560522,0.1268852459016393,0.1385173478154799,0.1491345723957335,0.1590190549431769,0.1687215884724247,0.1805791796748842,0.1925743270281085,0.2036473172535287,0.2128034305842714,0.2214568661971831,0.2310922507589691,0.2399223032183882,0.2483570399711919,0.256404142253713,0.2633165598743709,0.269330986323262,0.2747049456725365,0.2807989675463834,0.2857468123861566,0.2900828252896456,0.2949733331691034,0.2985158604133585,0.3033823548104178,0.3068400957742833,0.3096577806475417,0.3069538560826073,0.3034497912546693,0.3010690673793783,0.298731690405339,0.2967387266919248,0.2950089535791358,0.2920931261056356,0.2927228395162742,0.2928548323941504,0.2926920275048418,0.2931886408979881,0.2928056281565036,0.294210844503742,0.2952930431489608,0.2955573099834924,0.2967092809169411,0.2964567932704562,0.2996506986027944,0.3024220247429866,0.3063586097946287,0.3119880526768339,0.3151556583929322,0.3199403837794199,0.3212248574001801,0.3245441795231416,0.3271060979908354,0.3281579740729575,0.3359375,0.3463945578231293,0.3374092472296522,0.0,2.0223327750627536,55.54256039912706,154.30099528568834,220.62994486773428,fqhc1_80Compliance_baseline,71 -100000,95755,46804,444.5720850086158,5345,54.54545454545455,4216,43.444206568847584,1574,16.030494491149287,77.31912755708531,79.66930732103124,63.32066847763053,65.05839008567744,77.11563172986331,79.47064978582411,63.243055212249935,64.98539694179605,0.2034958272219995,198.6575352071327,0.0776132653805987,72.99314388139067,223.01334,156.25081958607382,232899.9425617461,163177.71352521938,454.0467,300.0461483616607,473578.8940525299,312751.2071031911,436.5697,212.42704503988008,452680.40311210905,219179.40605635155,2974.37754,1372.842083893919,3065315.701529946,1392781.153875954,990.99437,446.1569866055944,1017357.9134248864,448366.8598042854,1535.5367,660.2375691703427,1565186.423685447,655720.4327785699,0.37971,100000,0,1013697,10586.361025533915,0,0.0,0,0.0,39033,406.9970236541173,0,0.0,39538,409.6600699702366,1229080,0,44149,0,0,8694,0,0,88,0.9190120620333142,0,0.0,1,0.0104433188867422,0,0.0,0.05345,0.1407653209027942,0.2944808231992516,0.01574,0.3508425959125134,0.6491574040874866,23.69673317581776,4.092420504176281,0.3164136622390892,0.2639943074003795,0.2063567362428842,0.213235294117647,11.119089749234083,5.811035985917149,16.778770443939415,11707.381951497036,48.00043805488658,13.562408256310627,15.001985772109276,9.687390842475365,9.748653183991308,0.5768500948766604,0.821203953279425,0.6941529235382309,0.5678160919540229,0.1090100111234705,0.7502102607232969,0.9241071428571428,0.8980169971671388,0.6666666666666666,0.1358695652173913,0.5087545424512719,0.7518796992481203,0.6207951070336392,0.5375375375375375,0.1020979020979021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020152102806104,0.0041954215182561,0.0064830972768962,0.0089378212029494,0.0113189126521646,0.0135651217500229,0.0156105021667091,0.0175734182902422,0.0195294526640831,0.0218978102189781,0.0239613665258581,0.0261320464113358,0.0279326161630705,0.0302352892698203,0.0322331018685706,0.0345390657296403,0.0366164230402915,0.0387112835300707,0.0410228701461985,0.0433165996625492,0.0575457714870253,0.0716661785011925,0.0847676284572543,0.0974447949526814,0.1096364077209331,0.1248149558008712,0.1358039095064858,0.1468976451684986,0.157244457733544,0.1664111333883712,0.1792441653832484,0.1915704250506012,0.2028457362907524,0.2124188009886048,0.221716071389274,0.2314712266867496,0.2397298504130386,0.2482164960054011,0.256098529996027,0.2630276931534462,0.2692699529972909,0.2749054814884178,0.2802454220263899,0.2852806009191375,0.2903645516671125,0.2951230347755263,0.2993261185430131,0.3033151211808607,0.3071728535877229,0.310363487580181,0.3076301543268065,0.3055009147557671,0.3035898014122422,0.3005495300072306,0.2982216345511001,0.2950859837986003,0.2926118824106761,0.2927437344180553,0.2934786316040793,0.2932102622699112,0.2936659549762145,0.2938611204293861,0.2943825402144772,0.2958996601681273,0.2969376726311997,0.2975174352034974,0.2977107919806626,0.3007144200037601,0.3042823628278301,0.3074191002367798,0.3088794351918899,0.3111252115059221,0.3127352572145546,0.315561631351105,0.3199925016402662,0.3257584631603608,0.328,0.3287259615384615,0.3343307943416757,0.3401206636500754,0.0,2.281964840879999,51.69128075367372,158.93039053826223,220.7244993136943,fqhc1_80Compliance_baseline,72 -100000,95681,46757,445.7311273920632,5194,53.10354197803117,4096,42.22363896698404,1595,16.272823235543108,77.34181859432726,79.72485160158031,63.3271521787835,65.0858683952027,77.13851222126279,79.52518953795511,63.25068420777703,65.01345121512816,0.2033063730644784,199.6620636251976,0.0764679710064726,72.41718007453812,222.6961,156.01709447326357,232747.58834042284,163058.76118268367,452.37016,299.5153200436661,472176.5031719986,312422.69255746296,439.73482,213.94768704065348,456231.43570823886,221015.86781603025,2923.79648,1369.329022150695,3014909.1878220337,1390377.6695453906,994.78139,449.1874642625149,1024730.552565295,454653.09998962434,1556.3329,664.493546616271,1589124.1312277254,662867.3283665425,0.378,100000,0,1012255,10579.435833655583,0,0.0,0,0.0,38913,406.0680803921364,0,0.0,39775,412.34936925826446,1231435,0,44250,0,0,8779,0,0,73,0.7629518922252067,0,0.0,1,0.0104513957839069,0,0.0,0.05194,0.1374074074074074,0.3070850981902195,0.01595,0.3631694790902421,0.6368305209097579,23.38011792337565,4.149223616360793,0.312255859375,0.2607421875,0.208984375,0.218017578125,11.490998324292136,6.320642343492995,17.103089619316265,11637.322279196072,47.211820245417584,13.08046915135282,14.700139847529552,9.597172760049752,9.83403848648547,0.58935546875,0.8099250936329588,0.7232212666145426,0.5922897196261683,0.1310190369540873,0.754328112118714,0.9225512528473804,0.8820224719101124,0.7511737089201878,0.1756097560975609,0.5199445022545959,0.7313195548489666,0.6619718309859155,0.5396578538102644,0.1177325581395348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366872234205,0.00428758222934,0.0062599555614175,0.0083890231764538,0.0107678854679302,0.0130630447177649,0.0156662487641296,0.0177924318365097,0.0197876102576682,0.0218653072505604,0.0241366581904683,0.0262403845166326,0.0282192936432003,0.0302121652395231,0.0321198922456057,0.0340508279978071,0.0359789017730386,0.0379376219942688,0.0402280316664412,0.0421171147691377,0.0568822865738999,0.0713709804085821,0.0840960618019985,0.0968189997158881,0.1089508940344955,0.1242728099680565,0.1356556246418946,0.145685635817845,0.1559040984657464,0.1659945948264767,0.1784344979106535,0.1905050352086015,0.2013790703238857,0.2110240180162452,0.2201641111379985,0.2298270095465922,0.2388727678571428,0.2473935781364224,0.2548223119865656,0.262034534878395,0.2685298674868759,0.2745247059373757,0.2787559865192455,0.2841041120174398,0.2888343915793563,0.293365524377325,0.2972195469725207,0.3005927395761785,0.3041321885966616,0.3080687499175581,0.3053507024815632,0.3034685656937819,0.3017321504013519,0.2987093607437778,0.296640351397875,0.2928915754839697,0.2898445399393327,0.2900235818157998,0.2907785697234253,0.2904931458073704,0.2909942349670703,0.2915264245645114,0.2927465464713493,0.2935487465181058,0.29291768424077,0.2948244473342002,0.2966667613878548,0.2994545112546241,0.3049118255442976,0.3092722307966283,0.3122759246653052,0.3142389525368249,0.317417828685259,0.3194444444444444,0.3202972596377148,0.3207747726467462,0.3226593473620006,0.3222177581357975,0.327728776185226,0.3296282100421617,0.0,2.271103705471429,52.736657843284746,156.94073972025464,207.63819662903157,fqhc1_80Compliance_baseline,73 -100000,95689,47001,447.4390995830242,5247,53.54847474631358,4189,43.29651266080741,1603,16.47002267763275,77.38307130315455,79.75960919590214,63.34642469116329,65.09747455428457,77.17499420236472,79.55161686744539,63.267957461384086,65.02095432045135,0.2080771007898363,207.9923284567542,0.078467229779207,76.5202338332216,222.46554,155.88135854010127,232488.1020806989,162904.15673703485,451.85898,298.978392931787,471748.35143015394,311980.2540756874,441.00804,214.52563445309323,457893.0493578154,221924.0632958242,2960.11102,1380.1392294686389,3063742.5513904416,1412601.6125791974,985.55334,445.813169080914,1016908.9550523048,452973.47445490985,1560.00018,669.9041172216613,1604810.8142001692,677318.3493377009,0.38157,100000,0,1011207,10567.641003668134,0,0.0,0,0.0,38720,404.1425869222168,0,0.0,39981,414.812569887866,1234002,0,44325,0,0,8879,0,0,87,0.9091954143109447,0,0.0,1,0.010450522003574,0,0.0,0.05247,0.1375108105983175,0.3055079092814942,0.01603,0.3509060955518945,0.6490939044481054,23.638218402413973,4.178680147391686,0.316304607304846,0.2621150632609215,0.2134160897588923,0.2081642396753401,11.22625453269707,5.907547880185344,17.099145678662182,11772.321305440144,47.99129993238865,13.58195256764739,15.00685733674338,9.961598079448848,9.440891948549025,0.5820004774409167,0.8032786885245902,0.7139622641509434,0.5682326621923938,0.1169724770642201,0.7475961538461539,0.8989247311827957,0.8631578947368421,0.7045454545454546,0.174863387978142,0.5117307038422305,0.7330173775671406,0.653968253968254,0.5237388724035609,0.1015965166908563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020853790631991,0.0043057159645816,0.0062474011419762,0.0083878305373898,0.0104722688221239,0.0128363040402292,0.0151379233011886,0.017250354704039,0.0195332863144337,0.0217228847827199,0.0239498856844069,0.026277417234864,0.0282414406631493,0.0304578462172323,0.0326507453448186,0.0347771266755547,0.0367746079101663,0.0388160079707738,0.040774518265861,0.042800421021916,0.0579024339287579,0.0719175931160103,0.0847452292779135,0.0975227640737703,0.1094955927628526,0.1246339426360359,0.1361304274084125,0.1471051176245373,0.1579520232200785,0.1674345841458971,0.1808009296120161,0.1936160550161112,0.2042346905502054,0.2132215506028179,0.221932545706554,0.2322659279778393,0.2408859402224902,0.2492791169182248,0.2571266325951164,0.2637822349570201,0.2701848614985704,0.2770493338640568,0.2834330391518095,0.2877093631520852,0.2922831888533599,0.2975656077348066,0.3020051066386302,0.3058118374670722,0.3092385602714709,0.3122772747670459,0.3095862764883955,0.3067060601896386,0.3043753428125395,0.3017490187023782,0.2995744302258337,0.2967750818468317,0.2930407563158061,0.2930785868781543,0.2931799563080284,0.2944563279857397,0.2953939642477678,0.2963945377738481,0.2973445798188066,0.2967923941534497,0.2986313128904573,0.300214420419024,0.3020724658113633,0.3064435875108844,0.3078529657477026,0.3112008785002745,0.3154665222883956,0.3199958102021577,0.3249875745526839,0.3297856393344326,0.3341625207296849,0.3366944830783495,0.3400713436385256,0.3427129827285076,0.3444356330954269,0.3505683901723506,0.0,1.8124701302262975,54.869549077585376,155.14548719847892,213.9913273383496,fqhc1_80Compliance_baseline,74 -100000,95696,47084,448.70214011034943,5166,52.854873766928606,4121,42.520063534526,1655,16.886808226049155,77.3960056150407,79.77910688307617,63.35197710932333,65.11288766945098,77.18143157255417,79.56852759240606,63.27053941048257,65.035306899034,0.2145740424865323,210.5792906701112,0.0814376988407588,77.58077041698641,223.5431,156.5242438794929,233597.12004681493,163564.0401683382,452.77561,299.39277254073204,472608.6461294098,312327.2995117163,438.00012,213.9434498797723,454190.3841330881,220815.1277140668,2930.33828,1370.2476820057204,3024744.03318843,1394487.180243397,976.44279,448.3800442741544,1004265.0058518642,452452.23862455465,1613.9495,692.1458174447499,1648855.3544557767,692843.6857403382,0.3806,100000,0,1016105,10618.05091121886,0,0.0,0,0.0,38898,405.9103828791172,0,0.0,39692,411.2397592375857,1229897,0,44126,0,0,8762,0,0,74,0.7732820598562113,0,0.0,1,0.0104497575656244,0,0.0,0.05166,0.1357330530740935,0.3203639179248935,0.01655,0.368411318660995,0.631588681339005,23.193041645689945,4.124200282887033,0.3084202863382674,0.2657122057752972,0.2103858286823586,0.2154816792040766,11.123248741088124,5.962983219704502,17.788380981010267,11674.21964790219,47.06091407069274,13.278636535421777,14.39736180847096,9.683843812479251,9.701071914320757,0.5760737685027906,0.7890410958904109,0.6963021243115657,0.5940023068050749,0.1238738738738738,0.7581543357199682,0.9391304347826088,0.8453038674033149,0.7458333333333333,0.1846153846153846,0.496159217877095,0.6803149606299213,0.636963696369637,0.5358851674641149,0.1067821067821067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0047656709456307,0.0068106615781246,0.0090728981457962,0.0113217911419445,0.013430130737588,0.0155693995534121,0.0177337185678261,0.0197611891471917,0.0220577698622285,0.0240209144966167,0.026037762970112,0.0280663142522163,0.0302733771450938,0.0325426386982944,0.034649934359462,0.0365958504676769,0.038665946978347,0.0405815791663199,0.0425438779338808,0.0570939135339523,0.071164693939489,0.0849363344591051,0.0975155867231608,0.1092020659850321,0.1244263023201708,0.1362855142269091,0.1476352178495013,0.1581904609304064,0.1680985016677928,0.1800215401184706,0.1912596679106495,0.2021691643935359,0.2119122051461426,0.2204642162090842,0.2299397750420689,0.2384648843978987,0.246885146445865,0.2551892136868343,0.2615982622613467,0.2676488926864189,0.2735030761507839,0.2799418879334782,0.2843334290362714,0.2901251030402948,0.2946461493080308,0.2978083797976774,0.3021578173335362,0.3052323331355298,0.3089403102813568,0.3057135193133047,0.3030008221430529,0.3003875968992248,0.2985934978095457,0.2966249851843072,0.2932148256746231,0.2910580916139015,0.2909567067681479,0.2919739105260469,0.2911894429821441,0.2915655453085912,0.2923697148475909,0.2935712946958496,0.2939009232954545,0.2948405298139913,0.2966415494963619,0.2975003530574777,0.3008965668051607,0.3055497455204629,0.3096733420231465,0.3135169530042723,0.3185569191705459,0.3204017576898932,0.321285140562249,0.3224325337331334,0.3266129032258064,0.334599027946537,0.3386967015285599,0.3396174863387978,0.3393061380099123,0.0,2.157983457148942,54.86377767264591,143.68163633272889,215.2190469308785,fqhc1_80Compliance_baseline,75 -100000,95814,46695,443.4007556307012,5314,54.21963387396414,4224,43.41745465172104,1619,16.469409480869185,77.38566316619061,79.70742443228964,63.36611244363343,65.08461001926116,77.18061478424556,79.50740217551301,63.28869771838383,65.01186266189166,0.2050483819450477,200.02225677663432,0.0774147252495964,72.74735736950788,223.5706,156.52986465196892,233338.13430187656,163368.46875401185,456.51863,302.41635431565845,475794.5289832384,314960.81052858685,439.87624,214.71303033619148,454967.3012294654,220860.3128250662,2973.05053,1376.2427290964738,3057951.625023483,1391473.8623660652,975.33247,440.82746271203337,1001442.357066817,443637.3498968557,1577.1984,668.514790696128,1606059.532009936,663097.6568059797,0.37836,100000,0,1016230,10606.27883190348,0,0.0,0,0.0,39245,408.8964034483479,0,0.0,39942,412.7789258354729,1230464,0,44149,0,0,8935,0,0,75,0.7827666103074707,0,0.0,1,0.0104368881374329,0,0.0,0.05314,0.1404482503435881,0.3046669175762138,0.01619,0.3548096011550262,0.6451903988449739,23.707836578165125,4.142516688136155,0.3243371212121212,0.2677556818181818,0.2009943181818181,0.2069128787878787,11.289469685888838,6.026844040437229,17.233401141457144,11651.235396159587,48.23858248212088,13.870707175277396,15.49749359715216,9.37417543104506,9.496206278646264,0.5785984848484849,0.8107869142351901,0.6854014598540146,0.5759717314487632,0.1132723112128146,0.7433333333333333,0.903370786516854,0.8509485094850948,0.7551020408163265,0.1473684210526315,0.5132275132275133,0.750728862973761,0.6243756243756243,0.5222052067381318,0.1038011695906432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775900661379,0.0044098415498312,0.0066781013082177,0.0090524861317131,0.0112596118637861,0.0135424091233072,0.0158089471913891,0.0182161445045412,0.0203485103991006,0.0224728299801469,0.0245749597761813,0.0266142524299746,0.0287664052784657,0.0310756562017498,0.0330796675534657,0.0349942158320938,0.0369481318999679,0.0391053346185338,0.0410977395204917,0.0429760665972944,0.0577153765112082,0.0718183528821426,0.0850296639483449,0.0968552005295619,0.1093249620765211,0.125076575339572,0.1366231950079986,0.1483461587517537,0.1586009749229341,0.1675521089950943,0.1793250306510937,0.1908064603251769,0.2019760056457304,0.2120391698780581,0.2208261485573702,0.230696090571378,0.2390665032861758,0.2470711132577757,0.2540723623099753,0.2598303689817566,0.2657381422582545,0.2721024934949768,0.2778033495025316,0.2827666133001983,0.2873712120294926,0.2914318686850085,0.2958617508073264,0.3001089876818573,0.3041689239738926,0.3076791606957391,0.3049766342590105,0.3033525916370473,0.3004691538375098,0.2978346116140937,0.2962836685987044,0.2925714809664257,0.2884697475138733,0.2888732255843687,0.2891887275832622,0.2891295427378637,0.289616362548609,0.2908218664244961,0.2911323328785811,0.2927326036840574,0.2936670440584877,0.2966329702478907,0.296730571722013,0.3010245772832988,0.3039229471316085,0.3087768069896743,0.3133785197652731,0.3192873004123929,0.3245784491945088,0.325669338980487,0.3286732970538563,0.3306107954545454,0.3368951305144252,0.3407168747482884,0.3436898542755018,0.350970688998858,0.0,2.5560474477731048,51.80798770611625,161.34748111995373,218.88961341901663,fqhc1_80Compliance_baseline,76 -100000,95754,47135,449.3598178666165,5232,53.42857739624454,4164,42.76583745848737,1573,15.905340769054034,77.37657405990127,79.72039891246939,63.3458979718325,65.07867017075617,77.17039054572781,79.52095239098973,63.26738169743295,65.00540013377348,0.2061835141734604,199.4465214796577,0.0785162743995542,73.27003698269152,221.87748,155.4831026375033,231715.4583620528,162376.97562243172,450.04686,298.0840003513661,469300.33210100885,310599.3002395369,441.79525,215.4689123241662,456911.4606178332,221463.8858758962,2926.3608,1361.103402389312,3008916.295924974,1374372.1338619017,945.44015,430.8673159264835,969795.632558431,432495.4102829162,1532.05306,657.6989919290108,1552360.9039831234,647970.719259376,0.38244,100000,0,1008534,10532.52083463876,0,0.0,0,0.0,38621,402.59414750297634,0,0.0,40089,414.1759091004031,1237099,0,44319,0,0,8766,0,0,84,0.866804519915617,0,0.0,4,0.0417737118031622,0,0.0,0.05232,0.1368057734546595,0.3006498470948012,0.01573,0.3581081081081081,0.6418918918918919,23.461349911893063,4.100728595806174,0.3196445725264169,0.2723342939481268,0.2053314121037464,0.2026897214217099,11.257779487358157,6.03845600083033,16.903237065598194,11721.101677533936,47.74103748688564,13.98700563043688,15.15354018988663,9.39247178527226,9.20801988128988,0.5809317963496637,0.810405643738977,0.6934635612321562,0.5625730994152047,0.1137440758293838,0.7435483870967742,0.8983402489626556,0.8541114058355438,0.6820512820512821,0.1827956989247312,0.511969904240766,0.745398773006135,0.629979035639413,0.5272727272727272,0.094224924012158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877848678213,0.004277792983203,0.0065443698126991,0.0088687065707667,0.0108717760963306,0.012718811417399,0.0148361901071672,0.0171315391840568,0.0192498389883356,0.0213735144486186,0.0237475401771072,0.0259081717494174,0.0280550615278648,0.0301023665835925,0.0321039872079228,0.034077871605908,0.0361584260937095,0.0382165605095541,0.0402224763488928,0.042012518355742,0.0570185051820772,0.0706322812741837,0.0843038797396035,0.097313884568498,0.1104459994941404,0.1260173773333615,0.1373910646508767,0.1486088205564718,0.1589244142585592,0.1688755924424714,0.181000592385158,0.1918807210404449,0.2032461951851005,0.2120224079828438,0.2209793905231636,0.2309065111845168,0.2393421023247504,0.2480250275708402,0.2547947070973013,0.2615137982365739,0.2683101768836547,0.2742654022894426,0.2795870583226905,0.285736521353911,0.290058167069424,0.2944981027940669,0.2986066854108091,0.3027543906434531,0.3058937572702598,0.3087159891955991,0.3069886768123144,0.304785963370768,0.3020413324154596,0.3008880175296967,0.2991274461875768,0.295459058208978,0.2933402804092459,0.2939366663939121,0.293912184150892,0.2939555065530916,0.2959675611032215,0.2969669533725668,0.2977626580957549,0.2999222654081066,0.3008481662883765,0.3017621145374449,0.302993435943866,0.30951416373212,0.3129313349599164,0.3156088517218255,0.3202028434302273,0.326049089469517,0.3282147315855181,0.3333584507572903,0.3373247934651443,0.3335290663534938,0.3394509328075231,0.3445528779127664,0.3479913137893594,0.3492243662504729,0.0,2.7705977797976686,53.50650638457751,155.08464338424352,211.99527456842148,fqhc1_80Compliance_baseline,77 -100000,95762,47044,448.0900565986509,5178,53.00641172907834,4069,42.02084334078236,1547,15.820471585806478,77.3313489084019,79.69644880220332,63.31030609897547,65.06267604940815,77.12899629475035,79.49556097244042,63.23399609216404,64.98906077770522,0.2023526136515556,200.8878297629053,0.0763100068114255,73.61527170293414,222.7214,156.03468566261475,232578.0581023788,162940.08652974534,452.11492,298.65217430133,471689.7621185856,311435.43817101786,437.67159,212.7944029620408,454064.62897600303,219975.42515298777,2840.75689,1328.8776325477663,2935685.8252751613,1356897.5194208203,951.20135,432.4545124826106,980090.704037092,438386.4398013936,1501.14808,644.019341783179,1537047.325661536,647178.5544257062,0.38135,100000,0,1012370,10571.729913744492,0,0.0,0,0.0,38781,404.5028299325411,0,0.0,39685,411.4158016749859,1231262,0,44220,0,0,8795,0,0,74,0.762306551659322,0,0.0,0,0.0,0,0.0,0.05178,0.1357807788121148,0.298764001544998,0.01547,0.3485045513654096,0.6514954486345904,23.611426068626347,4.138056257908737,0.3180142541164905,0.2659130007372819,0.2174981567952814,0.1985745883509461,11.616561091885307,6.390171041328926,16.70410518334989,11768.296563232898,46.723424333366246,13.25907030492896,14.752178137568754,9.836632741739429,8.875543149129111,0.5959695256819858,0.833641404805915,0.6931993817619784,0.5943502824858757,0.1237623762376237,0.780327868852459,0.925764192139738,0.8826666666666667,0.7761904761904762,0.192090395480226,0.517023517023517,0.7660256410256411,0.6158868335146899,0.5377777777777778,0.1045958795562599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0044515651459687,0.0067495559502664,0.0091241617557407,0.0114447903314411,0.0134126345591754,0.0157334991995595,0.0179503149984173,0.0201495361515408,0.0222053792736137,0.0245015589104036,0.0262598243180767,0.0283312065203968,0.0301662389594863,0.0324108958412898,0.03441251589821,0.036273829617587,0.0383222472423132,0.0402802465670835,0.0422755251892972,0.0567542458689547,0.07096517662816,0.0843700828700304,0.0972165262836892,0.1093257420001054,0.1249735584041968,0.1371874867354302,0.1477232784789902,0.1583306615368173,0.1693796744390673,0.1821503244023883,0.1934593101954626,0.2049945025636559,0.2140863263675274,0.2233647843750344,0.2329327509367863,0.2423342340933961,0.2500253267146186,0.2576713572401271,0.2640648990535554,0.2709500439835177,0.2771696500696582,0.2828263677406358,0.2869919089577681,0.2907635797513926,0.2959939829599398,0.3000575662011313,0.3039632439036807,0.3076095550399855,0.3107821015267276,0.3085199499064112,0.3054116094624129,0.3035350054157464,0.3001298701298701,0.2982248169990812,0.2954319837500191,0.2924013500299656,0.292571204214177,0.2935443749680541,0.2941030018494807,0.2952055689304443,0.2964041803617469,0.2980773241022647,0.2983350398432978,0.2996433956393748,0.3002438897825749,0.3008491367110105,0.3049452269170579,0.3090775321444837,0.3122770864706348,0.3147014823881409,0.32268252882034,0.3234926975408813,0.324966078697422,0.323820079431052,0.3269474899019042,0.3321476211649622,0.3361867704280156,0.3453046022878425,0.3443536404160475,0.0,1.8647029024245716,53.6223653349216,149.2339969465435,209.5106199827769,fqhc1_80Compliance_baseline,78 -100000,95487,46663,445.55803407793735,5230,53.57797396504237,4180,43.16817996167018,1686,17.300784399970677,77.22623088476638,79.71485497451302,63.24095407219974,65.07691073786617,77.0142455973104,79.50276212961721,63.16173980372671,64.9999947098549,0.211985287455974,212.0928448958068,0.0792142684730308,76.91602801126862,222.52142,155.84272791829176,233038.44502393,163208.31937152884,449.12524,297.20414932073834,469717.249468514,310628.1212518421,437.50716,213.45578546419017,453893.4409919675,220296.1723310788,2939.07744,1373.292438432883,3038213.662592814,1399305.3225917453,984.64598,442.8723277329109,1016367.515996942,449267.67120141,1629.98074,687.410093440351,1673570.538397897,692573.6120318591,0.37891,100000,0,1011461,10592.656591996816,0,0.0,0,0.0,38669,404.30634536638496,0,0.0,39635,410.84126635039325,1228111,0,44064,0,0,8767,0,0,89,0.9320640506037472,0,0.0,1,0.0104726297820645,0,0.0,0.0523,0.1380274999340212,0.3223709369024856,0.01686,0.344391495601173,0.655608504398827,23.52090442996713,4.060034682618458,0.3102870813397129,0.2669856459330144,0.2217703349282296,0.200956937799043,11.307024141499197,6.154127177821127,18.000792165151015,11706.376307799532,47.93033696888924,13.503861089643731,14.815244149486151,10.390880964133592,9.22035076562575,0.5842105263157895,0.7777777777777778,0.7139552814186585,0.598705501618123,0.1107142857142857,0.747163695299838,0.9049881235154394,0.8803191489361702,0.7620967741935484,0.1111111111111111,0.5159538357094365,0.7007194244604317,0.6460369163952225,0.5390279823269514,0.1105990783410138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914475350863,0.0048383661131792,0.0069750441651268,0.0091713268937468,0.0111479882717054,0.0131987973296641,0.0154491372360942,0.0175341793881429,0.0197141600253716,0.0219462715927952,0.0239981934636229,0.0260024676125848,0.0280492199969108,0.0301683237757333,0.0322060692476984,0.0342289175337785,0.0363074305750059,0.0384099626815247,0.0406842878426388,0.0423750052211687,0.0569750766750756,0.0714810307201611,0.0848327426834782,0.0977329496948809,0.1091771817470885,0.1250940696380306,0.1359736324490989,0.1464679334663437,0.1573451289521035,0.1671109486854268,0.1800123074265603,0.1920286318529364,0.2025902951148517,0.2124716379300895,0.2214414156011782,0.2306256458118062,0.23867055967603,0.246868905497875,0.253508632258945,0.2609962934486993,0.2677946053760697,0.2745412978486429,0.2806634553781174,0.2848937116214235,0.2897340905213386,0.2939212582846968,0.2971319455785731,0.3008980697249581,0.3050543626514945,0.308790452753301,0.3065276408379367,0.3042519467989801,0.3028550471139197,0.301144574830915,0.298814323331201,0.2962019879739845,0.2932918801452976,0.2943488701029571,0.2950755111126331,0.2945005812393812,0.2954196184264777,0.2971396943999683,0.2987230479380364,0.2992739863732827,0.3002110109342029,0.3010377922854839,0.3016288126439069,0.3053689167974882,0.3103738514413972,0.3125867745646396,0.3176952858118879,0.321258341277407,0.3252861342172743,0.3274862606338929,0.3328729281767956,0.3368909512761021,0.3410876132930514,0.347112462006079,0.3585733882030178,0.3644325971058644,0.0,2.292066509796383,53.74939382427819,153.42230345477796,218.2524008065061,fqhc1_80Compliance_baseline,79 -100000,95710,46612,445.2617281370808,5274,53.93375822798036,4171,43.01535889666702,1635,16.64402883711211,77.36399481233721,79.74859789608698,63.33329461681414,65.09704504157709,77.15284000521343,79.54259046084326,63.25326905672883,65.02221861374765,0.2111548071237763,206.00743524371975,0.0800255600853105,74.82642782943572,223.08286,156.1896696424426,233082.08128722184,163190.54397914806,451.73334,298.7112907154347,471401.1702016508,311520.2285188952,434.92582,211.51325788151465,451580.1692613103,218711.19741052203,2979.90361,1385.8940660612857,3071683.1574548115,1406225.4791153346,985.14908,446.1685950505321,1014207.9615505172,451168.12891678,1601.01902,681.9418091967436,1631883.9619684464,676258.6445118524,0.37809,100000,0,1014013,10594.640058510084,0,0.0,0,0.0,38820,405.00470170306136,0,0.0,39409,408.8914429004284,1233108,0,44287,0,0,8884,0,0,89,0.9298923832410408,0,0.0,0,0.0,0,0.0,0.05274,0.1394905974767912,0.3100113765642776,0.01635,0.3434600691286156,0.6565399308713844,23.553459758236844,4.234544664497013,0.3032845840326061,0.2646847278830017,0.2100215775593382,0.2220091105250539,11.300690873517835,5.942493666082212,17.436001516378415,11568.634244263436,47.70253094079472,13.497189346054649,14.323864694331146,9.825537553423032,10.055939346985896,0.5715655718053224,0.7916666666666666,0.7011857707509881,0.58675799086758,0.1177105831533477,0.7441295546558705,0.92183908045977,0.8725212464589235,0.725,0.1739130434782608,0.4989782016348774,0.7070254110612855,0.6348684210526315,0.5345911949685535,0.1015299026425591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0044621578589755,0.0066900836514253,0.0089131451104742,0.011090986792568,0.0133158098498278,0.0154229058713125,0.0173005433228481,0.0192588956051261,0.0214214767712141,0.0233812580757634,0.0256036315459745,0.0275560584241925,0.0296139063771909,0.0314260944950151,0.0331792756185572,0.0352196567119342,0.0371181304997509,0.03890731058283,0.0408001667013961,0.0555190024125074,0.0692304471612795,0.083342950365622,0.0960719356365357,0.1078081022105562,0.1236901929685434,0.1354762081508425,0.1466323393299786,0.1566063116539266,0.1660432364068981,0.1779418411933102,0.1896087318672046,0.1996128667435133,0.2100220914718169,0.2193093433371104,0.2286204605845881,0.237712781384557,0.2457943504857862,0.2527797948624852,0.2590642136715932,0.2658825162208112,0.2719971005681951,0.2776278728490615,0.2829155483128834,0.2879293806233836,0.2920770139846366,0.2954525562960277,0.3000978013742998,0.3026897139756608,0.3051764303294331,0.3034580004028738,0.3018497680928726,0.2995169082125604,0.2963763417621209,0.2940018355685821,0.2899392055583489,0.2876009381542287,0.2879669944392805,0.2885261478942545,0.2888423221040294,0.2904014026710438,0.2910199665584735,0.2926300427394975,0.293708321252537,0.2945062836624775,0.2947360204001977,0.2959044368600682,0.300118920948864,0.3031394210599916,0.3065534938807738,0.3109734032929256,0.3140991892176477,0.3176883980673903,0.3208263709554914,0.3247670149675233,0.3305628116836855,0.33651330973996,0.3382233088834556,0.3473800942611588,0.3565891472868217,0.0,2.1935741951569234,53.97993354015199,152.94063689709316,215.11630581459104,fqhc1_80Compliance_baseline,80 -100000,95658,47178,449.277634907692,5273,53.78536034623345,4154,42.69376319805976,1610,16.38127495870706,77.31725194233033,79.72468341018555,63.30264576078415,65.08445131433663,77.10743049683312,79.52152284712501,63.2231656059429,65.0112279532193,0.2098214454972122,203.16056306053557,0.0794801548412493,73.22336111732852,222.18416,155.66730841003377,232269.29268853625,162733.18322569338,454.96599,300.79485319238256,474856.3005707834,313687.20148067345,437.7723,213.0416655697611,453672.8971962617,219747.43958339223,2951.15355,1369.1184019559955,3035263.48031529,1381418.3779255208,977.49924,441.025455967403,1004537.7281565577,443712.9314510047,1576.47424,672.7003685842683,1605606.2848899204,664382.1406381979,0.38382,100000,0,1009928,10557.695122206193,0,0.0,0,0.0,39016,407.12747496288864,0,0.0,39735,411.3299462669092,1232879,0,44230,0,0,8790,0,0,82,0.8467666060339961,0,0.0,0,0.0,0,0.0,0.05273,0.1373821061956125,0.3053290347051015,0.0161,0.3609187021509296,0.6390812978490703,23.73960127411788,4.141523643685756,0.3009147809340395,0.2645642753972075,0.2212325469427058,0.2132883967260471,10.960113354218787,5.680003864858437,17.232808640775392,11800.560819990968,47.528788343627575,13.487489921508567,14.06074276291586,10.287638248188337,9.69291741101481,0.5739046701974001,0.816196542311192,0.6944,0.5516866158868335,0.1264108352144469,0.7600671140939598,0.9297872340425531,0.8765060240963856,0.6682242990654206,0.1988636363636363,0.4989871708305199,0.7313195548489666,0.6285403050108932,0.5163120567375886,0.1084507042253521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025428794310433,0.004745728337474,0.0068502186995747,0.0088406548181568,0.0109477539807702,0.0131506570235306,0.0153122640931997,0.0176834749918273,0.0199095578154733,0.0220373538783079,0.0241715399610136,0.0263774430218459,0.0288017128681276,0.0310228573196003,0.033121611154144,0.0349929641585961,0.0369567921711726,0.0388418079096045,0.0409955466766554,0.0428785888534434,0.0569028388728097,0.071454004691689,0.0849448818897637,0.0976492623692573,0.1092858122579896,0.125537139349294,0.137504245923913,0.1489876127685409,0.1592060539985891,0.168824898883155,0.1811336608066184,0.1937062255756303,0.2042639792786714,0.2143693698624139,0.2233836325586518,0.2332568629406745,0.2419545616854133,0.2496681888736418,0.2573645345341939,0.2642593822270052,0.2706742560969966,0.2770222071497901,0.2828991750795924,0.288562698460248,0.292303393989456,0.2975657854193628,0.3018091282153938,0.3059128577965326,0.3084912371467374,0.3113680966242114,0.3092096423100696,0.3062412477003762,0.3043020119141283,0.3022605386079234,0.3000653381247958,0.2976090186407708,0.2952271038527816,0.2943596636451555,0.2951227406688131,0.295182009038181,0.2964429831116425,0.296347373812995,0.2976636198205359,0.2984988066293413,0.2998653587228313,0.3018563357546408,0.3018969727949111,0.3061645763613048,0.3106341326994337,0.3143794207136365,0.3179196002725414,0.3236850460366176,0.3250188489570244,0.3295826047289591,0.3290806754221388,0.3327450288269208,0.3299632352941176,0.3274014155712841,0.3256313809779688,0.3267363704256908,0.0,2.8960404184894317,51.12710340002461,159.47932867977633,212.7844581476023,fqhc1_80Compliance_baseline,81 -100000,95875,46450,441.91916558018255,5215,53.319426336375486,4111,42.503259452412,1607,16.54237288135593,77.4717338221379,79.75805500263344,63.40399372213196,65.09072650953269,77.26674873305507,79.5506588015223,63.32778485345441,65.01479532519213,0.2049850890828395,207.39620111113769,0.076208868677547,75.93118434056123,221.76198,155.32848191548322,231303.23859191657,162011.45440989124,445.64528,294.8153021121199,464348.4641460234,307029.06087313674,434.26024,211.72196656522416,450015.5723598435,218674.59836659572,2898.56621,1349.1612298891496,2999433.2099087355,1383365.434043442,959.27595,432.1539993207539,990704.9700130378,440903.7176748405,1561.11832,661.7136521181765,1608081.814863103,674907.0929987709,0.37779,100000,0,1008009,10513.783572359844,0,0.0,0,0.0,38263,398.6962190352021,0,0.0,39463,408.84485006518906,1245538,0,44600,0,0,8800,0,0,78,0.7822685788787483,0,0.0,0,0.0,0,0.0,0.05215,0.1380396516583287,0.3081495685522531,0.01607,0.3582062120933652,0.6417937879066348,23.66708206075423,4.173198380202067,0.3096570177572367,0.2707370469472148,0.2091948431038676,0.2104110921916808,11.240329995591994,5.95968658953966,17.09109507163576,11633.161686429605,46.9888924169333,13.642350594915422,14.37507101645131,9.606602287097813,9.364868518468752,0.5718803210897592,0.779874213836478,0.6952081696779262,0.5767441860465117,0.1179190751445086,0.7435064935064936,0.9253731343283582,0.8241758241758241,0.7607655502392344,0.1210526315789473,0.4984369572768322,0.6739130434782609,0.6435643564356436,0.5176651305683564,0.117037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021358437088774,0.0043257590339475,0.0065099677543653,0.0087494924888347,0.0110458499308999,0.0133384883046588,0.0157077662782169,0.0174420383724844,0.0195249474092682,0.0217111183833756,0.0241194604614959,0.0261112136689024,0.0280651291797216,0.0301056682203084,0.0319750961211384,0.0341690588794118,0.0362037755365916,0.0381075759146025,0.0398608659536912,0.0418327315108692,0.0562002773520181,0.0707782365546438,0.0841454469244472,0.0971286889465555,0.108940107707062,0.1239177546381944,0.1347153006043897,0.146366112080337,0.1570266461696131,0.16647911776999,0.1796309248399419,0.190639318751621,0.2016981910573519,0.2110175875282481,0.2198928155680994,0.2300269696701742,0.2390488388929108,0.2466151739003525,0.2545691314686898,0.261266204815145,0.2669098717401092,0.2726032190342897,0.2779673021306734,0.2827222627344563,0.2878639069756162,0.2924513216644731,0.2965085787068255,0.3005787683403564,0.3046403802192977,0.3070993541258336,0.3048376052310047,0.3029286066516903,0.3016353894919913,0.2988310736006671,0.2966483833291444,0.2933794300857461,0.2897159493272484,0.2898947883533154,0.2901201058560086,0.2904791426800106,0.2919588549320139,0.2930219790992687,0.2939464493597206,0.2938476887263053,0.2961057520543051,0.2973650219581503,0.2975525855749168,0.3031498508946322,0.3084170203954861,0.3109289617486339,0.3127794670005366,0.315122308941386,0.3175246167269101,0.3216205982582355,0.3256906596504416,0.3291888691533451,0.3333333333333333,0.3333333333333333,0.3353147797892462,0.337087087087087,0.0,1.482470439071031,54.33381320201822,150.36450789310314,210.36755074116184,fqhc1_80Compliance_baseline,82 -100000,95737,47193,449.7007426595778,5228,53.47984582763196,4154,42.77343137971735,1583,16.106625442618842,77.34438518034166,79.69823010327825,63.33412346583962,65.07273301122699,77.14251144969833,79.49942546270607,63.25862223085876,65.00103385477173,0.201873730643328,198.8046405721775,0.0755012349808623,71.69915645525293,222.99288,156.2223849965446,232922.36021600844,163178.69266484704,452.29932,299.12113144859995,471816.4659431568,311817.5224297815,441.85107,215.38219131179056,457415.85802772176,221779.80994210037,2905.40347,1348.357390734137,2993459.2163949152,1367080.6174562993,958.72552,432.83727342764246,987577.7181236094,438273.8206612892,1535.7504,648.3152230904075,1564617.149064625,645074.245713152,0.38336,100000,0,1013604,10587.380009818566,0,0.0,0,0.0,38862,405.2665113801352,0,0.0,40069,414.5001410113123,1230705,0,44200,0,0,8817,0,0,78,0.8042867438921212,0,0.0,1,0.0104452823882093,0,0.0,0.05228,0.1363731218697829,0.3027926549349655,0.01583,0.3439839328099324,0.6560160671900676,23.60157832630072,4.057193247707212,0.3298025999037072,0.2645642753972075,0.205825710158883,0.1998074145402022,11.500208846599364,6.396910627469098,16.88444495424449,11793.108096041968,47.705610826635,13.423564469805456,15.666474408209508,9.57735826897593,9.038213679644112,0.5876263842079923,0.7979981801637852,0.7116788321167883,0.5812865497076023,0.1108433734939759,0.7686567164179104,0.9155844155844156,0.8918918918918919,0.7184466019417476,0.1547619047619047,0.5135685210312076,0.7127158555729984,0.645,0.5377503852080123,0.0996978851963746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183055791904,0.0045218131862561,0.0068385434105459,0.0090389283284076,0.0109400736116477,0.0133661804078059,0.0156437903834002,0.018184601255166,0.0201387540742405,0.0225621610559705,0.024776621034511,0.0268600342806704,0.0289641983178761,0.0310295465546183,0.0328766840661041,0.0346709105376833,0.0365904150709036,0.0387750445928568,0.0406256495531074,0.0421961584933961,0.0569516511280707,0.071237951712662,0.084437311851642,0.097202650120938,0.1099183837020477,0.1251625728273397,0.1367801463569837,0.1475381931146006,0.1584646930667692,0.1683461258093563,0.1808258697898725,0.1931077002952915,0.2040572273438859,0.2143200647036964,0.2236542585363171,0.2327591932520091,0.2417094398571747,0.2494771168334645,0.2571772098773834,0.2642543985164665,0.2705068751373293,0.2769545640605813,0.2829934226091894,0.288007769411539,0.2934853894920936,0.298168814353536,0.3019635835399604,0.3060125292859326,0.3095990468296726,0.3126426771175593,0.309905958643329,0.3072937425269031,0.3040272422818225,0.3013222090707007,0.2992443923221947,0.2970250034450552,0.2935336774438709,0.2941735794616217,0.2933367460114324,0.2948199362069887,0.2948509485094851,0.2962321010025408,0.2975320499436255,0.2993532560214094,0.3017274472168906,0.3027880172369036,0.3034746844419231,0.3070419889156777,0.3094048159927305,0.3128982467249772,0.3137734311328443,0.3160594363069113,0.3179027812578301,0.3210201625037616,0.330692515611893,0.3311825434068512,0.3321657021017362,0.3352459016393442,0.3397062898309781,0.3394033320418442,0.0,2.374207503850911,52.28318639727889,161.22366192895902,210.19220147712517,fqhc1_80Compliance_baseline,83 -100000,95680,47028,447.34531772575247,5240,53.75209030100334,4179,43.19607023411371,1583,16.2311872909699,77.28108161739658,79.6690957839347,63.29287913429015,65.05604184561987,77.07317093304471,79.46273560483051,63.21463866463495,64.9809604436107,0.207910684351873,206.36017910418047,0.0782404696552063,75.08140200917524,221.7974,155.410896469016,231811.20401337792,162427.32344169728,450.75682,298.1999105300915,470629.73453177256,311185.2662312829,442.75777,215.57141275756345,460140.8758361204,223336.61769510372,2974.10519,1383.1910885886214,3072913.8795986623,1410204.9177347634,980.933,441.5677622886382,1014308.5806856188,450640.7019572303,1549.95226,660.9503267060746,1589921.7391304348,663584.840625421,0.37975,100000,0,1008170,10536.872909698995,0,0.0,0,0.0,38607,402.9995819397993,0,0.0,40038,415.80267558528425,1232090,0,44280,0,0,8804,0,0,94,0.9824414715719064,0,0.0,0,0.0,0,0.0,0.0524,0.1379855167873601,0.3020992366412213,0.01583,0.3406049495875343,0.6593950504124656,23.69704359389316,4.149643687340974,0.3187365398420674,0.2555635319454415,0.2172768604929409,0.2084230677195501,11.292793884198096,6.003995899183795,17.040519810861653,11732.988035580169,47.837210925931686,12.958855779743043,15.249328737164229,10.11629087739577,9.512735531628651,0.5750179468772434,0.8108614232209738,0.6794294294294294,0.5781938325991189,0.1228473019517795,0.7568,0.9200968523002422,0.8533653846153846,0.7510548523206751,0.1793478260869565,0.497439399112325,0.7419847328244275,0.6004366812227074,0.5171385991058122,0.1077147016011644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0043187785764251,0.0065051706465591,0.0087878818664851,0.0109330187336004,0.0134821392203983,0.0158757672777698,0.0178870421039735,0.0199948888320981,0.02215989928249,0.024299966164604,0.0265719331389379,0.0286301933360756,0.0306318001978239,0.0328406886017421,0.0347098722031515,0.036867075495152,0.038859942291325,0.0409233233816354,0.0431315731871293,0.0579127182305434,0.0727426937937822,0.0858630390057521,0.0982418114287518,0.110446406904483,0.127016704928959,0.1389204394671195,0.1492411736514191,0.1595231731437429,0.1689823265402538,0.1805181078924095,0.1915799739921976,0.2022041207474844,0.211687543798178,0.2209025604865365,0.2309552063347713,0.2395922974619176,0.2473725119124058,0.2551107373779843,0.2626116672973934,0.2690993339125398,0.2754302316045969,0.2809224567227887,0.2865496373853321,0.2908162024084661,0.2951458705976685,0.3000275564908061,0.3043062810549115,0.3075616523610714,0.3094300216782107,0.3070074863424833,0.3047247567329161,0.3022506675708897,0.299207579423141,0.2974925880126935,0.2937558476617022,0.291360410594348,0.2914838009763795,0.2909924395333721,0.2922036197479741,0.2930966617308017,0.2936632133589525,0.2942486241230097,0.294666069027342,0.296868224524211,0.2974823609049962,0.2977560086570224,0.3037891165011939,0.308096004478343,0.3130486358244365,0.3172933012835049,0.3207965770429454,0.3221602656475158,0.3266520985607716,0.3303579730357973,0.3341051169252141,0.3354955498566903,0.3423351866560762,0.3448460508701472,0.3335866261398176,0.0,1.858285485577643,55.162763485380026,148.7527018365318,219.27169466355983,fqhc1_80Compliance_baseline,84 -100000,95725,46809,445.891877774876,5254,53.66414207364848,4183,43.09219117262993,1658,16.913032123269783,77.3612597271838,79.7282125667845,63.34108899169471,65.08981747938302,77.15263720567853,79.52130226165897,63.26212423695685,65.01364659707728,0.2086225215052763,206.91030512553252,0.0789647547378606,76.17088230573188,222.07878,155.59354578580303,231996.6361974406,162542.22594494963,451.3458,298.4316089874276,470929.1825541917,311185.96916942025,437.83633,213.8530289381389,453232.603813006,220188.9215465189,2991.67286,1392.211285867244,3088762.8937059287,1417870.6773227935,1007.06035,455.6459650546566,1039912.6664925568,463872.567307032,1617.51332,688.0908410481164,1653477.712196396,688397.7162987271,0.37993,100000,0,1009449,10545.30164533821,0,0.0,0,0.0,38738,404.074170801776,0,0.0,39782,411.5957168973623,1237863,0,44401,0,0,8798,0,0,80,0.8252807521546096,0,0.0,0,0.0,0,0.0,0.05254,0.1382886321164425,0.3155690902169775,0.01658,0.353415125434902,0.646584874565098,23.48769300041179,4.175171844559563,0.3160411188142481,0.2534066459478843,0.2108534544585226,0.2196987807793449,11.1287737931929,5.981449286504057,17.718819322446738,11674.20865158485,47.898255181370665,13.038618241619288,15.16075913514176,9.688201613197585,10.01067619141204,0.5768587138417404,0.7971698113207547,0.7012102874432677,0.5963718820861678,0.1251360174102285,0.744313725490196,0.9131403118040088,0.8496420047732697,0.7294685990338164,0.16,0.5034387895460798,0.7119476268412439,0.6323366555924695,0.5555555555555556,0.1154381084840055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023905754601351,0.0046435234001135,0.0067991313348622,0.0089809104855177,0.0111054612020746,0.013431498340156,0.0154691738217119,0.0176443559503752,0.0197838600509166,0.0216420966420966,0.0237765679308541,0.0256560365634468,0.0277380670773724,0.0298850337893522,0.0320000825542278,0.0340125505277631,0.035995733532159,0.0381566112529315,0.040346061059812,0.0423018014732696,0.0572597991104057,0.0706697507928367,0.0845518051563909,0.0974996845691214,0.1100607057038067,0.1255430474076423,0.136711625736947,0.1476740721824991,0.1581808666303523,0.1678189750351052,0.1796130615936177,0.1907862713496089,0.2012849362423768,0.21071846273241,0.2193502281347919,0.2290197988025542,0.2380777164520265,0.2466931142603477,0.2554134639366937,0.2619102126782812,0.2690684579898486,0.2745679935505731,0.2796637224646163,0.2848574814743874,0.2895027222350216,0.2938073338088094,0.2973509685638278,0.3017520677957488,0.3048681095486358,0.3077004233320585,0.3056918877489276,0.3040421792618629,0.3028931312733713,0.3002842671822917,0.2979503391365006,0.2946827387872484,0.2919003459770296,0.2918106342214289,0.2923257675083859,0.2923632996812848,0.2923128666990545,0.292861091368554,0.2946994249869315,0.2951550690062652,0.2960341642474988,0.2978435253672257,0.2999259301464304,0.3038882597206493,0.307190688216527,0.3098306697862553,0.3134909848690767,0.3173993156093709,0.3211879211380085,0.3253184593351926,0.3260304493130337,0.3280627781681893,0.3285024154589372,0.3278721278721279,0.3293628808864265,0.3358505564387917,0.0,2.3902425198178308,55.37627427423049,147.75591418725395,218.0502351774481,fqhc1_80Compliance_baseline,85 -100000,95650,46495,442.7600627286984,5194,53.07893361212754,4075,42.01777313120753,1600,16.330371144798743,77.2430810454354,79.64539277425351,63.27207635196621,65.04931678071904,77.03889367337506,79.44589552929979,63.19464726695014,64.97602043175574,0.2041873720603462,199.49724495371868,0.077429085016071,73.29634896329651,222.0394,155.49822529037664,232137.37584945117,162570.0212131486,447.149,296.3707227153907,466899.0277051751,309263.6097390389,432.89011,211.08533875054516,448336.037637219,217381.0518996279,2899.52057,1343.250477016021,2993905.959226346,1366859.338228982,992.46503,449.78940055294527,1023171.9602718244,455816.36231358536,1567.39946,668.5523105505821,1602919.7281756403,668694.9569435084,0.37742,100000,0,1009270,10551.698902247776,0,0.0,0,0.0,38531,402.2268687924725,0,0.0,39256,406.2833246210141,1233358,0,44250,0,0,8755,0,0,80,0.8259278619968635,0,0.0,1,0.0104547830632514,0,0.0,0.05194,0.1376185681733877,0.3080477474008471,0.016,0.3463728191000918,0.6536271808999081,23.69165729686498,4.175047201223698,0.3084662576687116,0.2665030674846625,0.2053987730061349,0.2196319018404908,11.118434797257663,5.913505709270023,17.17683014167062,11586.511852771157,46.66183472472596,13.34134302593442,14.212780342983647,9.265418561919793,9.8422927938881,0.5786503067484663,0.8149171270718232,0.7016706443914081,0.5722819593787336,0.1251396648044692,0.7615894039735099,0.9271948608137044,0.8778409090909091,0.774869109947644,0.1515151515151515,0.5015695849319847,0.7302100161550888,0.6331491712707182,0.5123839009287926,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024931084806226,0.0047876980504331,0.0071875983472584,0.0094290736544772,0.0117481919990235,0.0137074189113498,0.0159469793525363,0.0180730272831236,0.020379990183246,0.0224468270304035,0.0244795405599425,0.0264541570818271,0.0287644747938048,0.0307307173247895,0.0326273198323734,0.0345369566116557,0.0366917355543124,0.0386527583164668,0.040430201474917,0.0422938993369751,0.0573888691508704,0.0709108429696665,0.0843752952662908,0.0969928531581883,0.108848492525969,0.1233736674394723,0.1353616691277235,0.1455848018677839,0.155809972180612,0.1647763887098852,0.1769586844632433,0.1888021680216802,0.1996558409026552,0.2089356110381077,0.2177698428442328,0.2273095399225623,0.2366146794119291,0.245088868101029,0.2532167863962899,0.2598325880059626,0.2660887503331904,0.2718352244118921,0.2775021021092149,0.2821758426292431,0.2868959141720694,0.2910453288564092,0.2950275135060605,0.3001568097502518,0.3035053794141694,0.3058784632678701,0.303052364773769,0.3005811391428886,0.2982607101042445,0.2967244422581672,0.2958756902376948,0.2926249616681999,0.288917076264468,0.2888994853412697,0.2875918646385233,0.288382818225694,0.2893278999455409,0.2898168701442841,0.2912883950099591,0.2924635930474464,0.2926817548411897,0.2936416788473585,0.2949909889292559,0.2992477890032417,0.3046413502109704,0.3093528050434921,0.3123396848662513,0.3157333901646332,0.3189611699445285,0.3215781856957879,0.3235933806146572,0.3295481428909392,0.3351368063070026,0.3376068376068376,0.3400275103163686,0.3353705118411,0.0,2.294050286440633,52.72552415547035,144.5295457624044,217.20924195153725,fqhc1_80Compliance_baseline,86 -100000,95807,46505,441.8466291607085,5237,53.21114323588046,4118,42.29336061039381,1628,16.491488095859385,77.44904619750217,79.77529715014786,63.38601454967061,65.10690106194004,77.23324486135532,79.56551035595766,63.30412849648672,65.03037648029385,0.2158013361468533,209.78679419020807,0.0818860531838936,76.52458164618281,223.83702,156.6907617930998,233633.2627052303,163548.3438507623,451.13364,297.9774749246543,470203.6176897304,310344.562427228,435.547,212.0930834703689,450537.77907668543,218227.40276160435,2887.76066,1357.378447698131,2968550.252069264,1371190.756101464,984.05097,447.790505408566,1008943.5427473984,449213.6017290653,1576.81078,680.7973052920481,1600350.684188003,672674.8026052667,0.37875,100000,0,1017441,10619.69375932865,0,0.0,0,0.0,38645,402.6532508063085,0,0.0,39542,408.6340246537309,1235664,0,44310,0,0,8928,0,0,93,0.9707015145031156,0,0.0,0,0.0,0,0.0,0.05237,0.1382706270627062,0.3108649990452549,0.01628,0.3365015536464997,0.6634984463535003,23.77025860385105,4.174821256234274,0.3246721709567751,0.2634774162214667,0.2085964060223409,0.2032540067994172,11.313096541799514,6.196059570692896,17.520352565792354,11683.899862828255,47.15379904497407,13.195428908619371,15.276687650869151,9.473008269920491,9.20867421556505,0.5849927149101506,0.8165898617511521,0.6918474195961107,0.5762514551804424,0.1230585424133811,0.7558232931726908,0.9274725274725276,0.875,0.7115384615384616,0.1153846153846153,0.5109641489731988,0.7365079365079366,0.6136606189967982,0.533026113671275,0.1251908396946565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020760965334251,0.0044195310836974,0.0068592533966495,0.0092745908716896,0.0114504204927951,0.0135114496044311,0.0159660695533374,0.0180140642382551,0.0199182422074604,0.0221526434805742,0.0241840446789977,0.0261699507389162,0.0283819901315789,0.0304655807919609,0.0326120588295963,0.0345169588709927,0.0364628075223299,0.0385213604313562,0.0405934730433156,0.0425073396214629,0.0573968015522799,0.0714113944564683,0.0852627055580593,0.0976842414945258,0.1097563545925894,0.1247067030249223,0.1358224936127808,0.1467406911074949,0.1577554656907203,0.1676269625377514,0.180013335914478,0.192179700499168,0.2020066018068103,0.2116734150414179,0.221320744359664,0.2299623066974698,0.2384622238061297,0.2463156476939827,0.2544540782831141,0.2611785134919003,0.2672598850495118,0.2734261084605783,0.2787583472946506,0.2841078833215826,0.2897841517478621,0.2950434953555806,0.2995572738043275,0.3042127816022008,0.3070352018168679,0.3096775041741714,0.3078047668226994,0.3044938583022593,0.3013790878098739,0.2989475502829088,0.29551806231239,0.293853233375998,0.2909651634830223,0.2915538004634313,0.2918384311330517,0.2928381492643148,0.2932420363203334,0.2939745802604738,0.2941911045434678,0.2946539761608254,0.2943904013002222,0.2962369895916733,0.2981375236695588,0.3007043131388681,0.3036437246963562,0.3077679449360865,0.3108487151646761,0.3142494982571036,0.3173648944830609,0.3218382130999094,0.3248968878890139,0.3271873165002936,0.3296403096069206,0.3293666801129488,0.3309724870607464,0.3328296184359652,0.0,2.6924994683105186,53.52991401198128,153.31258208666455,206.365220855781,fqhc1_80Compliance_baseline,87 -100000,95812,47069,446.67682544983927,5307,54.16858013609986,4212,43.41836095687388,1576,16.083580344841984,77.3497797498425,79.68114900916684,63.33168066437421,65.05914858334867,77.14800898238556,79.48187730649624,63.25579593755105,64.98635618764901,0.2017707674569351,199.27170267060035,0.0758847268231619,72.79239569966478,223.41902,156.4477825115451,233184.79939882268,163286.20894203763,450.40027,298.1507769271887,469531.35306642175,310626.9433131432,445.76261,217.26985698395623,461142.88398112974,223736.1005522056,2938.6534,1376.5675732306795,3031210.391182733,1400844.8557912144,971.75612,439.884464914005,1000981.1610236714,445861.0768108421,1532.67922,654.7258092041891,1565948.6911869077,656694.626382046,0.3813,100000,0,1015541,10599.30906358285,0,0.0,0,0.0,38666,402.9975368429842,0,0.0,40417,417.8182273619171,1228911,0,44134,0,0,8756,0,0,73,0.7619087379451426,0,0.0,1,0.0104371059992485,0,0.0,0.05307,0.1391817466561762,0.2969662709628792,0.01576,0.352367184676545,0.647632815323455,23.598667181730647,4.090775408508483,0.3169515669515669,0.2780151946818613,0.2039411206077872,0.2010921177587844,11.36400686654671,6.179689652823185,16.901653117355647,11777.755635778662,48.45032963508817,14.321604745768756,15.129999480566914,9.65061400858496,9.34811140016754,0.5902184235517569,0.8061485909479078,0.7131086142322097,0.5587892898719441,0.1298701298701298,0.7536,0.9251559251559252,0.8756906077348067,0.6977777777777778,0.1263736263736263,0.5212694125590817,0.7231884057971014,0.6526207605344296,0.5094637223974764,0.1308270676691729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350223879085,0.0047147332880448,0.007388312663649,0.0095805098091009,0.0117587224087071,0.0140420548851891,0.0162928221859706,0.0184457397180568,0.0205034904995042,0.0229992118650139,0.0251355701120439,0.0271371953097726,0.0293458366750981,0.031695035680084,0.0337204984320845,0.0357821864021492,0.0376266730154129,0.0396112517114052,0.0416952392826714,0.0436765333638739,0.0576820756783825,0.0718983635698227,0.0852644928675491,0.0976291563327588,0.1094328087613707,0.1253172052106242,0.1372883872883873,0.14835194074011,0.1595496977335355,0.169485708156808,0.1806701864023273,0.1920005194467891,0.202993289028595,0.2125501426400988,0.2214790940191624,0.2301070265239646,0.2396648107028486,0.2482399514159113,0.2563817476344989,0.2633988873371643,0.2699536217804147,0.2751300485124788,0.2816258470417105,0.2866275589608524,0.2906635278128337,0.2952312956990571,0.2995864412709122,0.3025951249269247,0.3072347578715976,0.3103721089691184,0.308567045271034,0.3065046579791113,0.304413960170136,0.302268715455624,0.2995750497756381,0.2969807391983342,0.2941651109071923,0.2943018775108633,0.2952679988396102,0.2953012950872311,0.296477806251286,0.2970519752160701,0.2979554330346887,0.298570283270978,0.3001172613492234,0.3013307738203326,0.3012037954963886,0.3054185654535239,0.3100271191154996,0.3130243864188818,0.3167704666486144,0.3202545626676484,0.3226169627220415,0.3272050444427562,0.3260322490446453,0.3331385154880187,0.3352006056018168,0.3334662943757479,0.3336927223719677,0.335755258126195,0.0,2.1212073654583605,54.7798192158582,160.1114703977942,212.47743629179837,fqhc1_80Compliance_baseline,88 -100000,95802,46762,445.7631364689672,5256,53.52706624078829,4157,42.82791590989749,1604,16.440157825515122,77.41775944651599,79.74672964270745,63.37436231324406,65.09561595539972,77.21643450795351,79.5473526115493,63.29851155886042,65.0225685698796,0.2013249385624789,199.37703115815,0.0758507543836444,73.0473855201268,222.21254,155.6384045893899,231949.79227991065,162458.40858164747,449.02534,297.05348362255853,468110.7596918645,309479.75308797,432.27455,209.93438075439087,447661.85465856665,216389.21658541748,2953.49557,1361.3609530472402,3044718.325295923,1383053.6185618702,956.61058,429.2159402584068,986281.6120749044,435898.5441877693,1552.37176,654.5025865711202,1591964.7606521784,657700.7246354837,0.38004,100000,0,1010057,10543.172376359576,0,0.0,0,0.0,38583,402.1419177052671,0,0.0,39153,405.1898707751404,1241635,0,44514,0,0,8765,0,0,82,0.8454938310264921,0,0.0,4,0.041752781779086,0,0.0,0.05256,0.1383012314493211,0.3051750380517504,0.01604,0.3446389496717724,0.6553610503282276,23.81335316458105,4.177400107886139,0.3288429155641087,0.2607649747414,0.2047149386576858,0.2056771710368053,11.506477388937055,6.324145590812625,16.91936428348331,11655.011247361255,47.24057585811266,13.115001683104278,15.556721370434976,9.366010910876325,9.20284189369708,0.5655520808275198,0.7656826568265682,0.6942209217264081,0.5511163337250293,0.1204678362573099,0.7393887945670629,0.8927738927738927,0.8350515463917526,0.732620320855615,0.1551724137931034,0.4968110104061766,0.6824427480916031,0.6384065372829418,0.5,0.1116005873715124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491529885883,0.0043992580053318,0.0066158638674391,0.0087648026649875,0.0107784918246156,0.0129484099515452,0.0151564570380185,0.0173307748836449,0.0194607412252907,0.021410734023826,0.0236264862648626,0.0256318134225707,0.027641006136735,0.0296082771400628,0.0318096986069723,0.0338673194311033,0.0357445927765704,0.0378498859630935,0.0398587233158468,0.0415478148618543,0.0556824939747722,0.0696252156186294,0.082906171053597,0.0957193129891275,0.1078097846121438,0.1233584431226294,0.1357232144748829,0.1468349316379255,0.1573460524771386,0.1668398555925739,0.1788264647681321,0.1903372874397701,0.2015136872509311,0.2108343615894473,0.2195438164718291,0.2291685104876537,0.2384322992721071,0.2469736103312745,0.2544060347952157,0.2611693672883624,0.2675714698238521,0.2736643048081525,0.2784618835669,0.2826396449208609,0.2867902102990758,0.2914569772735662,0.2960789210789211,0.3003796005941574,0.3042911026144466,0.3082013366310582,0.3066165615353644,0.3043758838955939,0.3025141588318788,0.3006441757576631,0.2994146847447581,0.2965661564781718,0.2946103250839919,0.2949302728595484,0.2966711956521739,0.29637057414145,0.2968546193120411,0.2982222309335737,0.2988249974004367,0.2986725173414888,0.2987522111201415,0.2999663395562,0.3010551925089819,0.3057271195957327,0.3093034583536288,0.3133870650678199,0.3165659117567446,0.3203540755571948,0.323375,0.3247566588696899,0.3248878085265519,0.3272899632657898,0.3329734731647131,0.3377750858065819,0.3375813449023861,0.3271960107403145,0.0,2.149777059094817,51.39090881960213,154.0799503632751,218.66956991925665,fqhc1_80Compliance_baseline,89 -100000,95725,46818,445.70383912248633,5210,53.22538521807261,4103,42.31914337947245,1602,16.380255941499087,77.3893283971574,79.74720702615508,63.35181630130408,65.09241100090601,77.17934268469448,79.53828646980298,63.273041224785466,65.01585757551558,0.2099857124629238,208.9205563520977,0.0787750765186103,76.5534253904292,223.22036,156.33862744665618,233189.19822407945,163320.5823417667,449.02623,297.1586356374921,468557.9942543745,309908.1176677901,436.54452,212.8695930307177,451673.6693653696,219154.44826039573,2893.00635,1355.9029641396428,2987796.1138678505,1382477.5500240433,979.627,446.6033076663568,1010860.8200574564,454148.5228276354,1558.54774,666.1223533786244,1596495.7952468006,671842.4263233378,0.37965,100000,0,1014638,10599.509010185428,0,0.0,0,0.0,38634,403.05040480543227,0,0.0,39642,409.7780099242622,1232210,0,44165,0,0,8766,0,0,75,0.7834943849569078,0,0.0,0,0.0,0,0.0,0.0521,0.1372316607401554,0.3074856046065259,0.01602,0.351783744023538,0.6482162559764619,23.406711600714548,4.074847405660395,0.3175725079210333,0.2595661710943212,0.2154521082135023,0.207409212771143,11.321678799265593,6.182336600142332,17.22426949135565,11680.171745707026,47.21512307220662,13.192811535690732,14.783142240342393,9.787592707989273,9.45157658818423,0.5834755057275165,0.8244131455399061,0.6945510360706063,0.5678733031674208,0.1280846063454759,0.7339300244100895,0.920704845814978,0.8539944903581267,0.7009345794392523,0.1212121212121212,0.5191370911621433,0.7528641571194763,0.6329787234042553,0.5253731343283582,0.1301684532924961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026838976270293,0.0047128219161421,0.0068774535163263,0.008925398292091,0.0109897930137042,0.013303340594019,0.0156224523071906,0.0178057590661415,0.0202008848743703,0.0224396033930563,0.024479967209755,0.0265215250133377,0.0285036117590242,0.0307356589227079,0.0325784295526266,0.0345362103174603,0.0366079655454441,0.0386901366083375,0.0405571146450472,0.0425425529698535,0.0569501294795756,0.0705772792432692,0.0839171840912904,0.096389595643123,0.1092676139478011,0.1240046107803428,0.1361172689570318,0.1466590021183959,0.157119965815618,0.1676191497346271,0.1792847990179715,0.1909922772405737,0.2016370988781633,0.2110085724282715,0.2205413136758719,0.2296879673013657,0.2383455541790828,0.2470503548572135,0.2557812322705095,0.2629860832712903,0.2687455918230485,0.274370931360518,0.279986287929832,0.2847395135031603,0.288873246274091,0.2927447746128659,0.2970295791382653,0.3004981826500267,0.303243585928504,0.3071145255445596,0.3043203740025256,0.3022192315086929,0.3006403774856758,0.2980755359358319,0.2967798343237355,0.2935602014344575,0.2906265758951084,0.2912706965807779,0.2924412874282024,0.2925923292930011,0.2932895791769992,0.294492525570417,0.296637042600242,0.2987669159544159,0.2989624020512329,0.3001087350489307,0.3031272109806141,0.3074236897078539,0.3125695603784084,0.3157956777996071,0.3197650779308787,0.3232483235651301,0.3265369941835012,0.3283223090799759,0.334544099841669,0.3413264709322728,0.3448690941919952,0.3402473075388911,0.3440354276224744,0.346109175377468,0.0,2.1602638386827,53.73894350939172,157.13821648091417,203.46413725283787,fqhc1_80Compliance_baseline,90 -100000,95680,47226,450.4389632107023,5221,53.501254180602,4123,42.58988294314381,1584,16.252090301003342,77.35982293729873,79.73742231556372,63.33991942654043,65.09082172990607,77.15759496755267,79.53431361295841,63.26402769286175,65.01607238695773,0.2022279697460618,203.10870260530575,0.0758917336786808,74.74934294833702,223.65882,156.56525570848956,233757.1279264214,163634.2555481705,453.55191,299.7896112131445,473542.1718227425,312837.44167968,439.51816,213.94379054926543,455974.25794314384,220957.0814392237,2884.11792,1342.4314093201526,2983748.881688963,1372456.146515763,948.15995,428.279651886237,980390.071070234,437047.6259095876,1547.33976,657.5954282008564,1590631.4799331103,665359.4755951222,0.38277,100000,0,1016631,10625.323996655516,0,0.0,0,0.0,38991,407.002508361204,0,0.0,39866,413.2943143812709,1227565,0,44094,0,0,8987,0,0,76,0.7943143812709029,0,0.0,0,0.0,0,0.0,0.05221,0.1364004493560101,0.3033901551426929,0.01584,0.3508190686545187,0.6491809313454813,23.50572188926532,4.126987371982312,0.3191850594227504,0.2687363570215862,0.2027649769585253,0.209313606597138,11.033438651878368,5.872226323025914,16.901326697354097,11734.87057416993,47.061331200692464,13.577981909152845,14.842696186118408,9.23613640041053,9.404516705010696,0.5821004123211254,0.8014440433212996,0.709726443768997,0.5586124401913876,0.1286210892236384,0.7560366361365529,0.9212253829321664,0.8867403314917127,0.6555023923444976,0.1676300578034682,0.5106091718001369,0.717357910906298,0.6425576519916143,0.5263157894736842,0.1188405797101449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020051039008384,0.004186051225915,0.006655506518541,0.0089374581056651,0.01119448511469,0.0133747264491831,0.0156207012502674,0.0178957678651593,0.0200412674416229,0.0221171945331041,0.024176859876657,0.0263759938445755,0.028460423668712,0.0303332955797407,0.0326254009840225,0.0346955227582785,0.036657073645417,0.0385193789605783,0.0403355753537159,0.0424239266360983,0.0575717688354017,0.0713418209230253,0.0843871671896481,0.0967881076872902,0.1085413568724227,0.1240821854038384,0.1360370209197915,0.1468830878358948,0.1569405099150141,0.1664591606740367,0.1788881585327744,0.1914322222944144,0.2022416888840524,0.2126127309342439,0.2220998733689368,0.2312046524508446,0.2400062495815012,0.2488168972920718,0.2560019959400764,0.262963937878389,0.2694077654186805,0.2759419069669543,0.2813915800182169,0.2869902540647973,0.2912235171418523,0.2952437193966684,0.2984349433556912,0.302545343697607,0.306481421647819,0.3093820002635393,0.3078132136811843,0.3055082417582417,0.3043655650754794,0.3020948975619602,0.3000474102169017,0.297147832994699,0.294240374280837,0.294705949863099,0.2941538041251195,0.2939382590551602,0.2946081364044272,0.2960575596294106,0.2969200551631911,0.2976832256627311,0.2991502094554159,0.2992846405059354,0.301255230125523,0.3066904047976012,0.310019495891937,0.3145053212455656,0.3184739319333816,0.3197523678501508,0.3257002271006813,0.330871154431922,0.3383663134202382,0.34038255910657,0.3434497483605307,0.3472501003613006,0.3478960064325918,0.3484214530239635,0.0,1.950441478954788,52.36824897966975,153.14771505803134,214.01261668565027,fqhc1_80Compliance_baseline,91 -100000,95862,46611,442.81362792347335,5331,54.45327658509107,4239,43.70866453860759,1633,16.690659489683085,77.34109898624328,79.63209843392906,63.34986309044478,65.04423033133772,77.13378827176106,79.42522151294551,63.27308282100774,64.96952838547044,0.2073107144822188,206.8769209835466,0.0767802694370374,74.7019458672753,223.1669,156.2419220713774,232800.17107925977,162986.294956685,451.3236,298.1616249606572,470298.9192797981,310525.521020485,434.5259,211.2778397592524,449801.162087167,217708.71513754997,3026.57547,1388.7348542756788,3124488.0557468026,1415948.0547825804,1009.20418,453.67198414139455,1039998.4352506727,460501.6062381072,1598.4664,675.9237582406574,1636680.5407773675,680243.0834136612,0.37861,100000,0,1014395,10581.825958148173,0,0.0,0,0.0,38670,402.8603617700445,0,0.0,39368,407.2103648995431,1234218,0,44349,0,0,8772,0,0,105,1.0953245290104523,0,0.0,0,0.0,0,0.0,0.05331,0.1408045218034389,0.3063215156631026,0.01633,0.3505561535701471,0.6494438464298529,23.889691412464124,4.240234487364268,0.3102146732719981,0.2550129747581977,0.2172682236376504,0.2175041283321538,11.345738471554384,5.941937332038313,17.530474533862005,11691.075768015888,48.33519654724549,13.133078753460724,14.9409384007312,10.158167384781768,10.103012008271795,0.5708893606982779,0.7955596669750231,0.7019011406844107,0.5711183496199783,0.1203904555314533,0.7410788381742739,0.928400954653938,0.8664772727272727,0.7330316742081447,0.1737089201877934,0.503295978905735,0.7114803625377644,0.6417445482866043,0.52,0.1043723554301833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568528175788,0.0041645134814724,0.0064915964255647,0.0090665421243933,0.0113634053625515,0.0135553203614752,0.0159336573041148,0.0179342004590665,0.0199885604559475,0.0222388166576306,0.0242043696928103,0.0262556023917212,0.0284402538978246,0.0305883079202419,0.0326123916784304,0.0346058973485669,0.0364687270584099,0.0385930377123912,0.0404987334413022,0.0425210940832527,0.0570490093847758,0.0710672630742862,0.0839766620926602,0.0970889080254563,0.1096018784681639,0.1245168240288955,0.1363833776468968,0.1478611217417187,0.1580025608194622,0.1682259015163693,0.1809240966707556,0.1927339568578688,0.2033170668086817,0.2121960548603901,0.2207825063522268,0.2308271676044481,0.2401503658754238,0.2482118758434548,0.2560126151472524,0.2623968124935597,0.2679849667533969,0.2735062718462491,0.2792521109770808,0.284564530037367,0.2889889877736362,0.2933426993986,0.2970538562582098,0.3006040567177465,0.3044591919897543,0.3075370121130552,0.3051255821466067,0.3027898854620705,0.300680291271708,0.2981895479654105,0.2962615988579586,0.2936670853886455,0.2916607292705711,0.2913661381746488,0.2917037747482359,0.292248978714255,0.2930865869254495,0.2950316098218355,0.2958744036485151,0.2963520035918734,0.2984021079604516,0.2998481516389151,0.3024763645711348,0.306014373975539,0.3087060142997336,0.3115597783056215,0.3158707100054476,0.3195238095238095,0.3250581358808371,0.3280054541322627,0.3261463139064118,0.3297682709447415,0.3349700782568666,0.3419939577039275,0.3414500683994528,0.3409785932721712,0.0,1.994405103944768,52.81373460455872,153.84086025801466,229.05297728568493,fqhc1_80Compliance_baseline,92 -100000,95645,46868,445.7943436666841,5323,54.44090124941189,4193,43.28506456166031,1592,16.320769512258874,77.31769350596971,79.74012014663313,63.289715480586615,65.08132096355509,77.11929320147455,79.54352293307939,63.2152167180136,65.0097794400254,0.1984003044951663,196.59721355374413,0.0744987625730146,71.54152352968879,221.40734,155.12416484812707,231488.67165037376,162187.42730736273,449.70904,297.35543020532424,469618.25500548905,310327.5343251861,440.54367,214.86715837589887,456797.595274191,221787.08655336316,2968.69415,1378.897919404533,3065140.1223273566,1402955.7628778638,973.90803,440.6544290628874,1000505.6615609808,442971.4455150684,1554.24564,654.8775251117178,1593292.3205604055,657245.3302123358,0.37983,100000,0,1006397,10522.212347744264,0,0.0,0,0.0,38633,403.34570547336506,0,0.0,39986,414.29243556903134,1235977,0,44341,0,0,8788,0,0,77,0.8050603795284647,0,0.0,0,0.0,0,0.0,0.05323,0.1401416423136666,0.2990794664662784,0.01592,0.3474025974025974,0.6525974025974026,23.49969093378465,4.121150919505388,0.303601240162175,0.2756975912234677,0.2065347006916289,0.2141664679227283,11.455402106614985,6.05761611934804,16.918084599573923,11716.3913151924,47.91995955354189,14.015410108633784,14.402989288015249,9.631610902195384,9.86994925469746,0.5773908895778679,0.7846020761245674,0.7132757266300078,0.5900692840646651,0.1057906458797327,0.7405318291700241,0.9114470842332614,0.8694444444444445,0.7272727272727273,0.1531100478468899,0.5088075880758808,0.6998556998556998,0.651697699890471,0.5464231354642314,0.0914368650217706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123591863197,0.0046546059303127,0.0068832487309644,0.0091972479395115,0.0111713654908584,0.0134881825590872,0.0159141452267765,0.0178587848261629,0.0201303818325094,0.0221714262284999,0.0245136785915926,0.0266310215413089,0.0285449490268767,0.0308125560908181,0.0328659840681083,0.0348720495866058,0.0371069247597225,0.039355602642403,0.0414602672438912,0.0433925666374671,0.0580717301341804,0.0721305978750602,0.086150032560973,0.0991531850353892,0.1109890806175681,0.1264231473930587,0.1381146190875955,0.1491856399761234,0.160128796225971,0.1692193675889328,0.1817417002825894,0.1937787119701829,0.2041103051689211,0.2128770873254859,0.2212464464376226,0.2313621542488299,0.2391386939614714,0.2472438994178124,0.2548049087833619,0.2622913253205312,0.2691078746903146,0.275031003580036,0.2798256936138971,0.2837390574409401,0.288591991052542,0.2928954340994516,0.2970075312132509,0.3008393742846242,0.3049912604389201,0.3087227948843163,0.3067300441667564,0.3038300213160971,0.3017245020060533,0.2987577012422988,0.2967976278724981,0.2944729919862972,0.2910039525691699,0.2912397289422856,0.2919531622302403,0.2931582216700683,0.293071370097492,0.2929114718105544,0.2937825015020615,0.2938598432865554,0.2965175787293804,0.2975548038937231,0.2975838055767008,0.3019688218123098,0.3055362600722422,0.3073957513768686,0.3074622808209868,0.3115689381933439,0.3164453907815631,0.319776654342413,0.324044734389562,0.3261098746632306,0.3379237288135593,0.3468620075232627,0.347237269772481,0.3475471698113208,0.0,2.158147412947861,54.25463093658594,151.0760861042126,219.7975199203324,fqhc1_80Compliance_baseline,93 -100000,95713,46860,446.7104782004535,5270,53.91117194111563,4172,43.03490643904172,1632,16.664402954666556,77.34880342590687,79.70626606475734,63.338894218876014,65.07702799613489,77.14388101512647,79.5046926824323,63.2619195139168,65.00377103870544,0.2049224107803979,201.5733823250372,0.0769747049592197,73.25695742945015,222.91104,156.15192943608,232895.2597870718,163145.99838692756,454.10464,300.1504864774498,473894.0269346901,313044.48554222594,437.62836,213.3075506558326,454114.8119900118,220401.2935763338,2960.42256,1368.412599300537,3054105.7327635745,1391276.6291944038,976.84883,440.4591232565596,1006020.6868450472,445935.83741432097,1587.02308,671.5526201672292,1621921.45267623,670840.3635659135,0.38051,100000,0,1013232,10586.148172139629,0,0.0,0,0.0,38913,405.98455800152544,0,0.0,39672,411.3129877864032,1231058,0,44170,0,0,8911,0,0,89,0.9298632369688548,0,0.0,2,0.0208958030779517,0,0.0,0.0527,0.138498331187091,0.3096774193548387,0.01632,0.3624136677571792,0.6375863322428208,23.445276019590104,4.177962113428213,0.3163950143815915,0.2634228187919463,0.2085330776605944,0.2116490891658677,11.238374369554508,5.910258924729901,17.45930386620595,11688.433579029072,47.57270254400746,13.578427222167427,14.881420156549831,9.558654904108058,9.554200261182157,0.5620805369127517,0.7970882620564149,0.6772727272727272,0.5459770114942529,0.1132502831257078,0.749597423510467,0.9113924050632912,0.8421052631578947,0.7183098591549296,0.1485714285714285,0.4825938566552901,0.7104,0.6106382978723405,0.4901065449010654,0.1045197740112994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872753232813,0.0045209423022341,0.0066967683019633,0.009061449222361,0.0111639824304538,0.0133557286099658,0.0154525161303474,0.0175870164336021,0.0196208676102396,0.0218412568445831,0.0239017690588934,0.0259765584908758,0.0279856884355979,0.030123955030268,0.0321742090549922,0.034160656347517,0.0359494719403603,0.0382129257841275,0.0401963026887645,0.0419801196157292,0.056633526880822,0.0702878074306645,0.083984682368987,0.0967585822348002,0.1094516343385121,0.1248691016405927,0.1372168284789644,0.1481773273145388,0.1583226495726495,0.1674568780571526,0.1792515834374596,0.1914396381970441,0.2018315695594009,0.2113695768671325,0.220286952886033,0.2303473491773309,0.2389536701961309,0.2471831699328013,0.2550119196276535,0.2616464874400064,0.2686396148237309,0.2751567178143712,0.2809153621336362,0.2862053683718813,0.2907991696308256,0.2943045378979126,0.2983618028915241,0.3023515810603077,0.3059378432512761,0.3088859032113596,0.3069422776911076,0.3041476554340058,0.3019754615038271,0.2998412240184757,0.2973642812620581,0.2936716600428004,0.2901309657340558,0.2902307314678449,0.2917922776897791,0.2928757076227436,0.2943853758627122,0.2951242058887162,0.2951113706515391,0.2944230297898888,0.2960859039812085,0.2962482149811761,0.2976793128946021,0.3018790977820999,0.3065440816611899,0.3114598569000277,0.315495389088266,0.3204193496886807,0.3267609205604514,0.3326696278143666,0.3362581375601471,0.3391854771288666,0.3347805861373856,0.3327156681078855,0.3387367244270542,0.349317738791423,0.0,2.1186225399106724,54.24330540009306,149.2009936040305,217.71481260344916,fqhc1_80Compliance_baseline,94 -100000,95629,46949,448.11720294053055,5123,52.32722291355133,4043,41.60871702098736,1547,15.790189168557657,77.26744378178137,79.6831767023,63.28338998351626,65.0697121629286,77.07339901443086,79.4921955441595,63.209526087782734,64.99944033962468,0.1940447673505048,190.98115814050232,0.073863895733524,70.27182330391213,222.51724,155.90660434433732,232688.03396459232,163032.76657116285,450.67165,299.2401735181111,470625.019607023,312271.9295591412,441.78248,215.73630733235055,457489.1821518577,222213.0951051166,2854.827,1339.911508738769,2941099.7919041296,1356940.707043646,933.29682,431.2689258753031,955291.0937058842,430316.562836904,1508.33234,649.143302366029,1540717.2719572517,646802.4456047979,0.38002,100000,0,1011442,10576.728816572378,0,0.0,0,0.0,38637,403.35044808583166,0,0.0,40038,414.16306768867184,1229647,0,44094,0,0,8846,0,0,95,0.9934224973595877,0,0.0,0,0.0,0,0.0,0.05123,0.1348086942792484,0.3019715010735897,0.01547,0.3624789365287399,0.63752106347126,23.22278942541596,4.187518116401179,0.3126391293593866,0.2658916646054909,0.2122186495176848,0.2092505565174375,11.168344278282849,5.9123990702167175,16.592567840499854,11676.251930300374,46.4731886752776,13.06585392658126,14.645836693815772,9.45522766125623,9.30627039362434,0.5891664605490972,0.8232558139534883,0.7175632911392406,0.5862470862470862,0.1028368794326241,0.7559183673469387,0.9232456140350878,0.8523316062176166,0.7525773195876289,0.1587301587301587,0.5166784953867991,0.7495961227786753,0.6583143507972665,0.5376506024096386,0.0867579908675799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019555393438304,0.0042790509024538,0.0064266569200779,0.0087797740021136,0.0108342912949267,0.0129140017110033,0.0151722168974447,0.0172538770176316,0.0193662511886624,0.0214439324116743,0.0235272399081063,0.0258148684602504,0.0278786507144547,0.0298608964451313,0.0321838131315737,0.0340745794952909,0.035897754577844,0.0378431677824484,0.0399009756807921,0.0419212243791572,0.056529827348355,0.0708218561149572,0.0839905487004463,0.0967157704092914,0.1091909125459228,0.1252369304403994,0.137033732687569,0.1482645808246038,0.1588084287089528,0.167656503388356,0.1801788198751065,0.1918489388670415,0.2025534138032369,0.2122369472198207,0.2206722670571526,0.2298743601675197,0.2380261410186291,0.2473132799927979,0.2552882268118492,0.2618458152809297,0.2684163608367968,0.2740107377212169,0.2800089958926648,0.2843059653162553,0.2893975493533016,0.2933767563499994,0.2976294775839195,0.3013200396774932,0.3045104994692006,0.3081604097365225,0.3051187733268658,0.3036731324803962,0.3020069009224702,0.3002933144533225,0.2983794231341064,0.2957388495046776,0.2918474646058341,0.2914044059795436,0.2914798206278027,0.2935663762538528,0.2947710951526032,0.2955466387302089,0.2968328065144125,0.2974509935104034,0.2983774182708463,0.2992320708056749,0.2990428583600784,0.3019328968390715,0.3051702395964691,0.3087155052610681,0.3126457809284244,0.3181818181818182,0.3206063296759053,0.3233019373612068,0.3298862461220269,0.3323789071820568,0.3344625808438559,0.3371335504885993,0.3372714486638537,0.3392715756136183,0.0,2.5677026693563287,53.06880399974098,150.1383342512106,203.76271639888,fqhc1_80Compliance_baseline,95 -100000,95836,47162,448.7770775074085,5253,53.62285571184106,4175,42.94837013230936,1538,15.630869401894904,77.40182060844235,79.71409031503697,63.36325590393732,65.07522975048212,77.20688202519167,79.52621225401192,63.2887277452782,65.00662482180728,0.1949385832506749,187.8780610250459,0.0745281586591204,68.60492867484425,223.168,156.2931277931459,232864.24725572852,163083.72719556952,449.93981,297.7788480996451,468866.8663132852,310096.8943494269,441.07884,214.3491377918544,457184.56529905257,221292.3380584787,2884.33236,1332.7407382125175,2967696.648441087,1348820.7753355638,960.25909,431.56193361111775,987111.1273425436,435543.9306451714,1495.70984,639.4198740607404,1521613.9237864686,630625.8707180123,0.382,100000,0,1014400,10584.738511624024,0,0.0,0,0.0,38644,402.58358028298346,0,0.0,39899,413.1745899244543,1233341,0,44284,0,0,8836,0,0,92,0.9599732876998204,0,0.0,0,0.0,0,0.0,0.05253,0.1375130890052356,0.2927850751951266,0.01538,0.3525442276126208,0.6474557723873792,23.703369142427068,4.127732158108289,0.307065868263473,0.285748502994012,0.2141317365269461,0.1930538922155688,10.954279924584698,5.747403416790988,16.294904942863663,11724.98219431809,47.46554859250342,14.514544034883754,14.382606815397118,9.86682479598956,8.701572946232982,0.5925748502994012,0.7963118189438391,0.6957878315132605,0.5939597315436241,0.1253101736972704,0.7643097643097643,0.9218106995884774,0.8601190476190477,0.7259615384615384,0.1265822784810126,0.5242718446601942,0.71004243281471,0.6374207188160677,0.5539358600583091,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021162842503898,0.0042262514062167,0.0067361928336647,0.0088261880821069,0.0112036274539705,0.0133963109247119,0.0154002955715232,0.0176056338028169,0.0196864075883639,0.0218928794407541,0.0242632361232125,0.0264195097918462,0.0283596817630491,0.030168242004901,0.0322314475787736,0.0343359613139214,0.0363338992174237,0.0382533493716039,0.0404154764996104,0.0425049176233048,0.0574265480449316,0.0708483612984161,0.084911295308554,0.0974600306729133,0.1091544845599696,0.1248653330235112,0.1363265565572989,0.1469181213190738,0.1569914508020876,0.1673951236234306,0.1799229792818571,0.191927378829632,0.2024469217897733,0.212796415692274,0.2215686705659879,0.2320977813205792,0.2406420094583742,0.2488390136394814,0.2568200637484545,0.2642150803461063,0.2702355757554731,0.2755275001461219,0.281619525115883,0.286792362425433,0.2911300210004977,0.2950569405971068,0.29925,0.3023870320261189,0.3067835168812367,0.3091732729331823,0.3066879793678724,0.3045931254118164,0.3023928551367747,0.3004376493622412,0.2985202722699023,0.29623750286194,0.2925736639535617,0.2920459559724787,0.2931204516085152,0.2938084838154086,0.29477389555241,0.2949747658229091,0.29551978035692,0.2959238044491807,0.2974061889095504,0.2981835094700395,0.2999040307101727,0.3032835264514926,0.3079297904814763,0.3110072281583909,0.3150474469046543,0.3173690595495543,0.3178497846038584,0.3241861514171866,0.3295759031691767,0.3348896930080541,0.3414413053331319,0.3475634313330648,0.3531659388646288,0.3603053435114504,0.0,2.3233381252742964,51.42172557135533,156.18719847823448,217.94768592863656,fqhc1_80Compliance_baseline,96 -100000,95688,47048,447.75729454059024,5318,54.23877602207173,4220,43.432823342529886,1591,16.282083437839646,77.32145341825886,79.70931779514977,63.3143933609397,65.08054944857179,77.1206879614122,79.51088091138924,63.238619838512506,65.00814932565082,0.2007654568466534,198.43688376053592,0.0757735224271911,72.40012292096765,221.97362,155.54003038451842,231976.44427723435,162549.14972046486,454.08641,300.15872063438974,473919.0598612156,313054.9082793973,443.62096,215.91089017123497,459158.63013126,222307.62041605308,3002.7606,1384.5448363423943,3096853.450798428,1405715.833064122,989.48438,446.0607079550489,1016127.8530223226,448215.8138481824,1562.50896,666.4039071867433,1600845.581473121,668697.0239704181,0.38101,100000,0,1008971,10544.38383078338,0,0.0,0,0.0,38981,406.6967644845749,0,0.0,40206,415.7679123819079,1234291,0,44250,0,0,8818,0,0,83,0.8465011286681715,0,0.0,1,0.0104506312181255,0,0.0,0.05318,0.139576389071153,0.2991726212861978,0.01591,0.341678674351585,0.658321325648415,23.66668893775779,4.166900984825339,0.3007109004739337,0.2713270142180095,0.207345971563981,0.2206161137440758,10.830848139042294,5.527590477661714,17.086536307855127,11753.60359491626,48.11608607467932,14.026226495012372,14.368860578787572,9.555390209595938,10.165608791283429,0.5597156398104265,0.7947598253275109,0.6863672182821119,0.5428571428571428,0.1138560687432867,0.7633711507293355,0.9247967479674796,0.9005681818181818,0.7180851063829787,0.1732673267326732,0.4755525787006028,0.6967840735068913,0.604143947655398,0.4949053857350801,0.0973936899862825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046688822242,0.0042592029205962,0.0065169725515673,0.0084247111309844,0.0107948070975093,0.0130388721375601,0.0153584139837033,0.0175515621809271,0.0199245545343951,0.0220791450856756,0.0244007463757714,0.0265973833925527,0.0289679151536348,0.0309853059373905,0.0329376548307184,0.0349259194160402,0.0368958587972074,0.038898229445586,0.0410275076699079,0.0430337266019093,0.0583676283189538,0.0720207687798341,0.085473494190867,0.0984403611795163,0.1104288005402211,0.1255636232773767,0.1375027863579912,0.1491015986963329,0.1593189906697874,0.1688886982077161,0.1810777617375191,0.1923659825062786,0.2036589875785855,0.2131206721144695,0.2232513117224538,0.2332237242723176,0.2414027729752038,0.2487496768827899,0.2566355627614826,0.2635405099085278,0.2703193285083358,0.2758350669689816,0.2814570319894,0.2864262012290811,0.2910013720752334,0.2952100819651955,0.299443715232202,0.3028636040247993,0.3067571059431525,0.3098897625350665,0.3074286635932313,0.3044677784640724,0.3024033731553057,0.3007050477961849,0.2982388462736836,0.2958220508819434,0.2920243459015098,0.2917492830807046,0.2920203156423628,0.2932309391871425,0.2943111925370623,0.2940341469184969,0.2950562877253075,0.2958532339418828,0.2976827950534277,0.299257328990228,0.3007102718429985,0.3039570041172957,0.3092852137351086,0.3127002333583831,0.3159492523787947,0.3199957602416662,0.3225745325922183,0.325022942795962,0.328,0.3304358180519171,0.3307763117520712,0.3365754812563323,0.3416301969365427,0.3489167616875712,0.0,2.645174198480219,53.40598688014072,151.78819729921443,223.05454016113245,fqhc1_80Compliance_baseline,97 -100000,95708,46956,446.62933088143103,5334,54.5095498808877,4191,43.23567517866845,1670,17.030969197977182,77.3455376358958,79.73349403489593,63.32130932583449,65.08765978444967,77.13569989357414,79.52756793288685,63.2413094601356,65.0121597121193,0.2098377423216533,205.92610200907305,0.0799998656988947,75.50007233037093,222.2187,155.56023729398524,232183.8090859698,162536.0787979953,452.55728,299.6092939308554,472293.361056547,312487.0260823081,436.76879,212.9718133340545,453536.987503657,220311.0880884433,2967.25008,1379.099858272738,3058797.738955991,1399497.6665187243,965.68032,438.5029763721357,993051.7093659884,442242.3329103718,1631.12306,694.446677546636,1664070.652401053,689611.2347853212,0.3808,100000,0,1010085,10553.80950390772,0,0.0,0,0.0,38858,405.410206043382,0,0.0,39607,411.0419191708112,1236010,0,44286,0,0,8603,0,0,84,0.8776695783006645,0,0.0,1,0.0104484473607221,0,0.0,0.05334,0.1400735294117647,0.3130858642669666,0.0167,0.3546073861599139,0.6453926138400861,23.753199349836382,4.17218847925721,0.3120973514674302,0.2689095681221665,0.2035313767597232,0.21546170365068,11.02716239862704,5.758373667406618,17.767144032236796,11724.661854052329,47.82216354319115,13.75018775313529,14.77196332997473,9.517181289838906,9.782831170242222,0.5678835600095442,0.7941437444543035,0.6842507645259939,0.5791324736225087,0.1063122923588039,0.7520458265139116,0.9211087420042644,0.8676056338028169,0.75,0.134020618556701,0.4920848770629841,0.7036474164133738,0.6159496327387198,0.5254237288135594,0.0987306064880112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022087356508171,0.0045235559612556,0.0067719173562109,0.0089737596292607,0.011231382762269,0.0132919128132002,0.0154902000775019,0.0177996997641003,0.0199709587696335,0.022232007536968,0.0244192605507409,0.0263763352506162,0.0285652567478604,0.0305731302681202,0.032486764842468,0.0346642130510296,0.0367527476511596,0.0390040374056814,0.0411098515968676,0.0432204890958915,0.0586846860019425,0.0730014861951311,0.086315833665694,0.0992350347759293,0.1110196934696159,0.1267030549208767,0.1385593310270178,0.1490716971485178,0.1589959053636528,0.1685220770576805,0.180638206123329,0.1919156909679725,0.2018222788282551,0.2123692388497395,0.22149453500787,0.2314903047091412,0.2399607134087814,0.2484924849248492,0.2566397785416879,0.2628017996359515,0.2694238778343359,0.2755339419940848,0.281205656986094,0.2852850336389973,0.2890864760610876,0.2934701056541579,0.2981651949090091,0.3012867693713357,0.3053763163328515,0.3087558815025103,0.3060783708731873,0.3031548377375032,0.3010976054796058,0.3000849446420087,0.2981049454857464,0.2945023783388218,0.2911813906511378,0.2912685013686505,0.2919762765014657,0.2928668187651504,0.2934481467615125,0.2941490307664947,0.2943875306391804,0.2956294759386922,0.2965487447799165,0.2980068692756036,0.2996762099522835,0.3025870709095465,0.30628583414907,0.3109871855719032,0.3151795011091493,0.3191579169524614,0.3220307231172724,0.3228608111169851,0.3225110256169654,0.3277671755725191,0.329451425068955,0.3283945605845342,0.338143207187585,0.3407864302235929,0.0,2.0625513738783026,53.41615185405156,153.54520228529216,219.1183735419309,fqhc1_80Compliance_baseline,98 -100000,95604,47141,447.85783021630897,5340,54.52700723819087,4229,43.57558261160621,1573,16.055813564286012,77.23812690061078,79.66819946870271,63.25655152000609,65.0536888237839,77.0393816350533,79.4735832783076,63.181776787965234,64.98316305985549,0.198745265557477,194.61619039510936,0.0747747320408578,70.52576392841559,221.49908,155.1800456359847,231683.67432325007,162315.2283079855,449.96763,297.4674461429504,470021.23342119576,310509.9810389976,443.17149,215.91208724887372,459399.5125726957,222716.6025169347,2982.82489,1387.7960445705403,3076961.947198862,1408683.4912910396,990.73463,448.2758971170477,1020005.533241287,452665.7612608367,1530.84212,647.4528257127305,1564792.4563825782,646355.9856326366,0.38248,100000,0,1006814,10531.076105602277,0,0.0,0,0.0,38662,403.7278774946655,0,0.0,40238,416.6457470398728,1232065,0,44283,0,0,8766,0,0,70,0.73218693778503,0,0.0,0,0.0,0,0.0,0.0534,0.1396151432754654,0.2945692883895131,0.01573,0.3495789285074359,0.650421071492564,23.354582704465265,4.112918332769812,0.3104752896665878,0.2740600614802553,0.2156538188697091,0.1998108299834476,11.459074534080306,6.215194881027081,16.911041330534275,11844.938998797072,48.766740617153104,14.244302786285235,15.03808663823366,10.218910043949515,9.265441148684705,0.5942303144951525,0.8093183779119931,0.6984006092916984,0.6162280701754386,0.1136094674556213,0.7690437601296597,0.910041841004184,0.834733893557423,0.8042553191489362,0.1646341463414634,0.52220367278798,0.7386196769456681,0.647489539748954,0.55096011816839,0.1013215859030837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0044222206444676,0.0064271789456583,0.0090056208897878,0.0113173750203549,0.0138146031357926,0.0160130552297414,0.0182752421035426,0.0207127222142667,0.0230352442309465,0.0253016498399409,0.0275682784981812,0.0298679511326561,0.0316900682460155,0.0338513967057365,0.0356352047679159,0.0377027937593946,0.0399518002202231,0.0421286031042128,0.0442752073444264,0.059568862776256,0.0736180246266701,0.0870209278870398,0.0992332645237393,0.1113692525397596,0.1271858748265599,0.139645812750316,0.1502728745629743,0.1603470780818693,0.1697136350942018,0.1824831693423096,0.1938970189701897,0.2046348452327773,0.2144617912900575,0.2232739052824117,0.2330622704933491,0.2418030953658973,0.2500704598491595,0.2585695282922337,0.2645704905235848,0.2704113593652119,0.2770222743259085,0.2826453143534994,0.2879718313244325,0.2925590234631971,0.2960894545005251,0.3001869111983642,0.3042607730860954,0.3085491723466407,0.3120007406231815,0.3094817233609045,0.3078673377921809,0.3052683546089287,0.3033680218841817,0.3010396061692223,0.2974071801166001,0.2944460303866527,0.294742554556069,0.2950109574030954,0.295226691924156,0.2960020982427217,0.2973079811835395,0.2981081477446523,0.2992442874390734,0.2995097096712171,0.3010598682325981,0.3031607147946533,0.3076898913111767,0.3097664320481843,0.3126207467570871,0.3163626463381432,0.3189263447109796,0.3258883883883884,0.3268605969021533,0.3289021102537882,0.3353133007221057,0.3411536162582188,0.3443172849250197,0.3517669274345832,0.3660547021356313,0.0,2.5339012807582946,53.55267717628256,164.11746870857834,214.85635378007552,fqhc1_80Compliance_baseline,99 -100000,95722,46827,445.6760201416603,5085,52.00476379515681,4077,42.038402874992165,1590,16.27630011909488,77.33641368994157,79.71272592007107,63.332022412709286,65.08984979552923,77.14062877456415,79.51783382242613,63.25876598543669,65.01910947382675,0.1957849153774162,194.89209764493864,0.0732564272725966,70.74032170248756,223.31518,156.42774723485567,233295.33440588368,163418.5938935622,454.23587,300.8995188336852,473992.6140281231,313804.1988841909,436.20227,212.2834644943528,452143.8958651093,219067.14500558216,2317.56712,1086.6265698399611,2390262.468398069,1104559.0981638418,958.48337,435.4509135764253,983908.787948434,437580.1068220755,1548.22112,647.6959006546808,1585650.3625080965,649049.863193927,0.38025,100000,0,1015069,10604.333382085624,0,0.0,0,0.0,39146,408.37007166586574,0,0.0,39533,409.4147635862184,1229712,0,44111,0,0,8895,0,0,82,0.8566473746892042,0,0.0,0,0.0,0,0.0,0.05085,0.1337278106508875,0.3126843657817109,0.0159,0.3588046150936259,0.6411953849063742,23.574490848881613,4.152562886570513,0.3036546480255089,0.2702967868530782,0.2197694383124846,0.2062791268089281,11.190271978910667,5.954865778698908,16.745242510675013,11717.102261381344,46.7335462030711,13.587574324735929,14.223765720004891,9.81610784798382,9.106098310346448,0.5889134167279862,0.8166969147005445,0.7084006462035541,0.5848214285714286,0.1189060642092746,0.7556109725685786,0.910828025477707,0.8538681948424068,0.748792270531401,0.1534090909090909,0.5191370911621433,0.7464342313787639,0.6512935883014623,0.5355587808417998,0.1097744360902255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0046247933549021,0.0067008477587694,0.0090251239938206,0.0112712735114899,0.013606827857332,0.0157660184174833,0.0178885031652031,0.0198133172482185,0.0221628483098908,0.0242427348675106,0.0261901584140118,0.0280322895778703,0.0302605829642599,0.0324827422533612,0.0344913125717061,0.0364671774694553,0.0383418399103697,0.0405009353564747,0.0425715863045946,0.0566467228435088,0.0704413964826381,0.0836383083585877,0.0964964838699505,0.1089797639123102,0.124434580426971,0.1354780580877676,0.1468098681412165,0.1570284982388728,0.1675933365472173,0.1804181957104269,0.1923742376400363,0.2037359007237085,0.2130225343804957,0.2216215622287415,0.2315491525048925,0.2404318614834375,0.2486206470317223,0.2563846790373956,0.2636207685269899,0.2699582866320788,0.275696187751766,0.2809292657288972,0.2860970883077733,0.2909260651325202,0.2950609996064541,0.2987147621248266,0.302128578323046,0.305377456049638,0.3088836167127982,0.307069674886385,0.3046671893698675,0.3021013666624442,0.2996288755072275,0.297009848338557,0.2944021057141983,0.2912271267930854,0.2921558339345445,0.2921877399211779,0.2924020394338075,0.2933173867543728,0.2948675007388435,0.2957717098813075,0.295529359430605,0.297387889960974,0.2994681541055908,0.3012316113581936,0.3059670976062407,0.3101851851851852,0.3141926773091891,0.3166194350489076,0.3211249532160616,0.3241449719244512,0.3274961597542242,0.3350978353341525,0.3383024765568646,0.3411020219169625,0.3455986989225452,0.3478260869565217,0.3631221719457013,0.0,2.0625624002812515,52.4474787115561,150.22506857702723,212.5549531324854,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95611,46886,446.9046448630388,5294,54.15694846827248,4172,43.07035801319932,1563,16.044179017058706,77.26635035352784,79.70442851272031,63.26822878755484,65.07196915270315,77.06440107822505,79.50260537565222,63.19198252836941,64.9978006187118,0.2019492753027947,201.8231370680894,0.0762462591854316,74.16853399134027,221.98484,155.4407805397184,232175.00078442856,162576.25225101545,451.2611,298.2996875558105,471436.7698277395,311453.700469413,436.08894,212.35102898531343,451717.6057148236,218925.4167593525,2373.2618,1113.2776548336858,2452870.6529583414,1135047.2381145328,984.20748,442.16491964713583,1015948.2695505748,449023.3756023216,1526.42484,651.6724061007051,1568473.0836410036,657635.7141302441,0.3804,100000,0,1009022,10553.409126564937,0,0.0,0,0.0,38788,405.0998316093337,0,0.0,39579,409.6599763625524,1233329,0,44276,0,0,8951,0,0,78,0.805346665132673,0,0.0,0,0.0,0,0.0,0.05294,0.1391692954784437,0.2952398942198715,0.01563,0.3519492293744333,0.6480507706255666,23.62785453292376,4.196881496419795,0.3209491850431448,0.2634228187919463,0.2049376797698945,0.2106903163950143,11.157399910157215,5.922540328577011,16.763355080750372,11756.521670482522,47.79530780505793,13.4209261282294,15.279185401846624,9.492016336985426,9.60317993799648,0.5838926174496645,0.7970882620564149,0.707244212098581,0.5883040935672514,0.1251422070534698,0.7485572959604286,0.9290322580645162,0.8520710059171598,0.7630331753554502,0.135678391959799,0.5163906725245015,0.7003154574132492,0.6583416583416584,0.531055900621118,0.1220588235294117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021889821233126,0.0044331727111336,0.0068550885068093,0.0089067837969741,0.011492029885385,0.0134635180447832,0.0157066459830176,0.0178106127954385,0.0198698534828517,0.0220309457936263,0.0241799745473952,0.0262424834249884,0.0281752486051347,0.0300343337904298,0.0321641051065939,0.0340942013989487,0.0361832899741918,0.0384283829959598,0.0404333708005495,0.042457110079783,0.0567548637318753,0.0706942625098244,0.0842944475956387,0.097512165321986,0.1097157824695556,0.1248027117207775,0.1364544584971835,0.1474453333333333,0.1584056683541865,0.1682048196654383,0.1808141165304053,0.1932039887275092,0.2036544995208641,0.2133288056873076,0.222407123728496,0.2318443500349414,0.2408650677509802,0.2504419696645534,0.2585889570552147,0.2651015563175943,0.27167014130183,0.2774745865929638,0.2830899335536367,0.2875863226549012,0.2911577028258887,0.2957520573466089,0.299736908043097,0.3033540467580095,0.3064965347496599,0.3095659057923209,0.3065844729191342,0.3037553456265555,0.3031765914624706,0.3009484488458374,0.2992041810191234,0.2958743654046119,0.2924183729939125,0.2929125592533665,0.2925339520917218,0.2938867278112844,0.29496187210762,0.2954576887360954,0.2961768770152003,0.296786727106268,0.2979239752030371,0.2996225432773656,0.301479374110953,0.3049776883916787,0.3100318861908266,0.3126857686363096,0.3173609220437426,0.3217800825484178,0.3257427616224058,0.3303854875283447,0.3325894932589493,0.3414176918570591,0.3409056489474481,0.3474525474525474,0.3523344191096634,0.3621722846441947,0.0,2.158967947002288,52.87106479653479,158.46619446281628,213.7685672958832,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95718,46679,444.31559372322863,5216,53.27106709291878,4104,42.42671179924361,1531,15.681481017154558,77.34534288058313,79.71428709884839,63.32656324425341,65.07462911927884,77.15070994255032,79.52004468626522,63.25328220670366,65.00331918804827,0.1946329380328109,194.242412583165,0.0732810375497479,71.30993123057294,223.19704,156.29192174235538,233181.4287803757,163283.33025810358,449.76062,297.48682025400893,469430.7131365052,310346.2030126984,437.72938,212.9803373972101,454662.0593827702,220434.943203209,2333.92288,1100.1760416469706,2414540.086504105,1125718.9394120346,943.98483,432.2763227191589,974933.4190016506,440391.8634587271,1483.2291,632.512931590423,1521136.7349923735,637623.8018543808,0.37916,100000,0,1014532,10599.15585365344,0,0.0,0,0.0,38606,402.8604860109906,0,0.0,39754,412.6392110156919,1230399,0,44232,0,0,8890,0,0,82,0.85668317348879,0,0.0,1,0.0104473557742535,0,0.0,0.05216,0.1375672539297394,0.2935199386503067,0.01531,0.3545824094604582,0.6454175905395417,23.499006470498987,4.169348052216913,0.3114035087719298,0.2799707602339181,0.2100389863547758,0.1985867446393762,11.657263551478993,6.400240547837005,16.41068010716393,11680.40462572321,47.1159123615622,14.072042392486956,14.490273628222376,9.56086196879447,8.992734372058395,0.5969785575048733,0.8198433420365535,0.6987480438184663,0.58584686774942,0.1349693251533742,0.7649958915365653,0.9232409381663113,0.8885542168674698,0.7555555555555555,0.1727748691099476,0.5261517145826117,0.7485294117647059,0.6321353065539113,0.5259026687598116,0.1233974358974359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0047128696815519,0.0070512560366868,0.0091509242331911,0.0112062478390856,0.0133782669340962,0.0154735329194825,0.0176495207374212,0.019861795432707,0.0221924230481825,0.0241939617612384,0.0262582281600755,0.0286460744077925,0.0307413359706597,0.032765737874097,0.0347123157394198,0.0366001429207618,0.0386583226958082,0.0407794044252204,0.0426010837849103,0.0576372788604131,0.0713022365019727,0.0852115336187358,0.0980451982156384,0.1103900900045371,0.1252023916609344,0.136173510552465,0.1472712167689161,0.1579155489531789,0.1683631332253601,0.1808749057213662,0.1930248170124301,0.2040827430113494,0.2128453824933222,0.2217535899920711,0.2307769045745258,0.2397794618243507,0.248129605670248,0.2552686829711172,0.261831134322888,0.2681719335585064,0.2743573858256671,0.2796095829636202,0.284494322809371,0.2890116561437591,0.2932916163681604,0.2970806023915545,0.3005055637416798,0.3040112870031194,0.3074324770085369,0.3049948153036077,0.3030861734476258,0.3007149807505183,0.2975598473459003,0.2960117685518143,0.291906452797845,0.2886459501729885,0.289729570455736,0.2894647350880772,0.2908735448324891,0.291760627690702,0.2924570956771314,0.293874914032053,0.2947232373651841,0.2957445787756668,0.2962251414922893,0.2977370963640987,0.3032585353708257,0.3089569358034131,0.3114805520702635,0.3118454315637414,0.3142661684997105,0.3162680617837568,0.3166314518563236,0.3213487332339791,0.3255841258659152,0.3292498487598306,0.33486881634288,0.3382233088834556,0.3385857033051498,0.0,1.6923099947266866,53.66249034332788,153.42194095600345,209.8656702305909,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95672,46773,445.1772723471863,5235,53.50572790367088,4160,43.00108704741199,1542,15.835354126599215,77.2498286400838,79.64975330629014,63.26585613190741,65.03964896919531,77.05479587681623,79.45505849419078,63.19239427748849,64.96840027920632,0.1950327632675765,194.6948120993568,0.0734618544189231,71.24868998899103,223.04458,156.35801462233937,233134.64754578145,163431.32224928858,454.89566,301.0169273733749,474994.48114390834,314154.5983917708,439.35535,214.04806941932665,456570.15636758925,221680.34239453252,2354.72336,1100.1527739069168,2434639.8110209885,1123551.3415270883,944.69277,425.4541061016226,977939.4075591604,435268.4840732643,1491.27044,632.289920560418,1532616.2095492934,638147.3940060828,0.37955,100000,0,1013839,10597.029433899155,0,0.0,0,0.0,39060,407.76820804415087,0,0.0,39937,414.7294924324776,1221236,0,43833,0,0,8699,0,0,72,0.7525712852245171,0,0.0,1,0.0104523789614516,0,0.0,0.05235,0.1379264918983006,0.2945558739255014,0.01542,0.3571689164538489,0.642831083546151,23.74572922847662,4.128296110242811,0.3112980769230769,0.2769230769230769,0.2161057692307692,0.1956730769230769,11.445577817254613,6.214418816446765,16.536116987030702,11697.218664887476,47.575151209659325,14.129793979305989,14.617977012081136,9.98128612248858,8.846094095783624,0.5841346153846154,0.7977430555555556,0.6996138996138996,0.575083426028921,0.1081081081081081,0.7628781684382666,0.9278131634819532,0.8728323699421965,0.7148936170212766,0.1520467836257309,0.5097037793667007,0.7077826725403817,0.6364594309799789,0.5256024096385542,0.0964230171073094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413468941205,0.0047359720912308,0.0070847839546898,0.0093375330217435,0.0116874001891955,0.0138308923879168,0.015937920626504,0.0182263746362383,0.020464307629372,0.0224905521246197,0.0245453519739878,0.0265844889573703,0.0287698718938107,0.0308180703146741,0.0328835293267394,0.0349884681814891,0.0366613128853427,0.0387562292358804,0.0407931834496821,0.0426767597777013,0.0573410791156434,0.0714083754830197,0.0844116998835049,0.0981733237930889,0.1101941747572815,0.1262130784942481,0.1378768410657208,0.1489055606470726,0.1599131383581866,0.1701759663107234,0.1822399654725938,0.1936452854741636,0.2034870408129886,0.2128999001963171,0.2216863480852003,0.2312572215803039,0.2405117127603613,0.2486437714994643,0.2566652632537181,0.2627788370971077,0.268928927999257,0.2748611486208799,0.2802808868610537,0.2841887536678051,0.2887719426476142,0.2928155627788558,0.2955084522420089,0.2987909969487674,0.3022011557691059,0.3063274055255636,0.3036615991143034,0.3013747742033342,0.2985426610557234,0.2965393362594701,0.2954697711810156,0.2924456022065584,0.2887967199100825,0.2890772592118016,0.2909059829059829,0.2911170688114388,0.2915549723497985,0.2927229258461599,0.2936871379879974,0.2944884001609226,0.2965054797154393,0.296572125489789,0.2982396558555499,0.3026770966435005,0.3057592714886518,0.3097205824478551,0.3128406071251632,0.316533948030176,0.3198332711210651,0.3260591466626533,0.3324997684542002,0.3401725343903007,0.3426372963186481,0.3460841554258103,0.3545405111473627,0.3626497005988024,0.0,1.853292666863197,53.90951561219157,149.55433323049823,220.01172945565256,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95739,47079,448.80351789761744,5250,53.6354045895612,4195,43.159005212087024,1631,16.63898724657663,77.32698317968122,79.68659786365474,63.31555014592704,65.06105752002132,77.11076046187891,79.47394726692784,63.23424863577144,64.9838226462102,0.2162227178023101,212.65059672690256,0.0813015101556047,77.23487381112193,221.79036,155.38110749006887,231660.7652054022,162296.00047050032,450.59501,297.80680437451383,469950.0621481319,310367.2361573725,439.19743,213.99577836452517,454450.7254097077,220200.63682895503,2418.26572,1135.8183049985523,2490546.464868027,1151304.059966052,959.47901,432.5813622858987,988318.9504799506,438051.0606609345,1587.43534,679.3189276256705,1621282.6956621648,678209.0444349261,0.38166,100000,0,1008138,10530.034782063736,0,0.0,0,0.0,38646,402.9287959974514,0,0.0,39845,411.8593258755575,1236431,0,44362,0,0,8773,0,0,77,0.804269942238795,0,0.0,2,0.0208901283698388,0,0.0,0.0525,0.137556987894985,0.3106666666666666,0.01631,0.3530269876002918,0.6469730123997083,23.64114426696925,4.19208680290259,0.3125148986889153,0.2703218116805721,0.2042908224076281,0.2128724672228844,11.356709113080916,6.11166428732719,17.515317838965956,11698.535380991138,48.11241417734895,13.848685410041124,14.92502623180058,9.634008987761666,9.70469354774557,0.5685339690107271,0.7936507936507936,0.6895499618611747,0.5682613768961493,0.1052631578947368,0.7459546925566343,0.90561797752809,0.8937329700272479,0.6965811965811965,0.1473684210526315,0.4944237918215613,0.7213352685050798,0.6101694915254238,0.5200642054574639,0.0938833570412517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020363710045083,0.004258684674819,0.0065261961309705,0.0087268368010403,0.0110856852275616,0.0133190774400488,0.0155300403801443,0.0175572908691879,0.0197767829766358,0.0218425981842188,0.0239010341399419,0.025868971605724,0.0279496720873337,0.030150132833577,0.032442748091603,0.0345536646103929,0.0364526715739561,0.0382648562863692,0.0400357536325274,0.0420460464631732,0.0562584820962522,0.0706491604331223,0.0838636625743072,0.0961261498028909,0.1087710421739451,0.1240193694360449,0.136019429832004,0.1466824240875601,0.1574761909851748,0.1672283880385548,0.1795684321714199,0.1912709156874424,0.2025265494428969,0.2110198142211621,0.2203936505140794,0.2299899132092621,0.2396273208660098,0.2479979275311715,0.2552195742554013,0.2626433949506641,0.2690726782220061,0.2753164927566782,0.280984488499686,0.2853148363714913,0.2899847978108847,0.294571826781948,0.2988901693556469,0.3033860965018401,0.3069804816091656,0.3100790539916326,0.3078217328685071,0.3047072741278749,0.3016159000056303,0.2991360379103097,0.2970427911536233,0.29347792788653,0.2911554718295366,0.2918300063969032,0.2928577523679495,0.2942150231399074,0.2953972080506811,0.2960312296681848,0.2978549583141313,0.2987282463186078,0.2995873716533921,0.300998907444982,0.3015656522603926,0.3055198570667335,0.3104858441104509,0.313930544593528,0.3200560629351659,0.3216845878136201,0.3233293816684345,0.326827430293896,0.3280014879568492,0.3293813827914074,0.3295953932414002,0.3319959879638917,0.3345293955285675,0.3373122834039276,0.0,2.4527102836719505,53.73351100245398,155.94761810672793,216.5980367315444,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95755,47150,448.7702992010861,5295,54.05461855777767,4174,42.94292726228396,1596,16.27069082554436,77.39144353273707,79.7290499298931,63.36142006586866,65.08652848611462,77.19273131414508,79.53462183386243,63.28775169519575,65.01718303117877,0.1987122185919929,194.4280960306628,0.0736683706729124,69.3454549358421,222.41824,155.76498877513382,232278.4606547961,162670.34491685432,454.36395,300.6473694473597,473856.5401284528,313325.413239371,442.00651,215.5991270817904,457082.5648791186,221709.9993663776,2383.83796,1102.873478519086,2454600.5117226257,1116848.4554530687,961.38315,425.1759513514418,989453.0520599446,429474.7755745833,1557.38204,646.7305869985333,1589730.9801054776,643537.7789502017,0.38217,100000,0,1010992,10558.111847945278,0,0.0,0,0.0,38958,406.1720014620647,0,0.0,40043,413.774737611613,1234804,0,44285,0,0,8796,0,0,94,0.9816719753537676,0,0.0,0,0.0,0,0.0,0.05295,0.1385509066645733,0.3014164305949008,0.01596,0.3355668236146323,0.6644331763853676,23.912576403571048,4.13442990636455,0.3078581696214662,0.2700047915668424,0.2089123143267848,0.2132247244849065,11.473627959413433,6.272204864939509,16.830463449977284,11764.834000256971,47.36805928179615,13.897109177946016,14.332034478866936,9.543017894407614,9.59589773057559,0.5778629611883086,0.8163265306122449,0.688715953307393,0.5802752293577982,0.1134831460674157,0.7715481171548118,0.9498956158663884,0.8724637681159421,0.7253886010362695,0.146067415730337,0.5001678415575697,0.7175925925925926,0.6212765957446809,0.5390279823269514,0.1053370786516853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020654462983962,0.0044083221014015,0.0066557090968121,0.0090187993215587,0.0110624192941607,0.0132827131341096,0.0155186468310576,0.0179260105699185,0.0206151865888915,0.0226323974789228,0.0248360655737704,0.0268592709626453,0.0289251952322235,0.0311544755611819,0.0331835144217883,0.0349354902021548,0.0368231495280675,0.0386944888096077,0.0406107727168783,0.0426879446660902,0.0575857209957726,0.070900168461144,0.0843046128345275,0.097259323139053,0.1093232670448554,0.1245175276265002,0.1361958896265032,0.1469133307092477,0.1579138457595626,0.167315133391213,0.1807202979355477,0.1922918874494452,0.2028232686017322,0.2127494565751674,0.221529838443785,0.2316695429001283,0.2413139889906621,0.24934869514441,0.257002674160359,0.2639530628116565,0.2692392120616949,0.2753017044989894,0.2820682562386958,0.286711444751745,0.2907810018066957,0.2953441171043729,0.2995190205509401,0.3026478028194079,0.3074903654656907,0.3112524358771791,0.3086282145974618,0.3067804516642428,0.3046176309545537,0.3021542358003194,0.3003743212652947,0.2984601794172746,0.2957795275590551,0.2957836143712966,0.2959911669780873,0.2972055923682293,0.2981031328180426,0.2990466435549953,0.3004407494830071,0.3003681802967756,0.3013257757709674,0.3018445768400239,0.3015769470758409,0.305909290508751,0.309154016057217,0.3104281357677532,0.3118969597669762,0.3151376634421176,0.3159319899244333,0.3223529411764705,0.3247504431383524,0.3286566117151877,0.3333333333333333,0.3361880103565027,0.3365695792880259,0.3343373493975903,0.0,2.561805559630065,51.61512425165361,149.95019728490576,223.34106399008527,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95728,47032,448.04028079558753,5193,53.06702323249206,4153,42.79834531171653,1624,16.59911415677754,77.37264048070351,79.73064287038841,63.34029949113111,65.08124222796238,77.16534253606186,79.525637732993,63.26234002101948,65.00646704546831,0.2072979446416525,205.00513739540335,0.0779594701116366,74.775182494065,221.63152,155.29559285959698,231521.45662711016,162225.2903224259,452.10221,299.5171720236441,471677.952114324,312286.0453034585,438.8935,214.35699947312168,454239.35525656026,220737.10422368892,2388.03544,1117.8764548741194,2462804.1116496744,1136152.178328363,982.13211,445.21476603255087,1012286.9379909744,451548.1422283438,1586.72286,671.3923142704657,1624096.586160789,674954.8381132103,0.38105,100000,0,1007416,10523.702573959552,0,0.0,0,0.0,38775,404.4480193882668,0,0.0,39726,410.80979441751634,1236306,0,44333,0,0,8802,0,0,95,0.9923951195052648,0,0.0,0,0.0,0,0.0,0.05193,0.1362813279097231,0.3127286732139418,0.01624,0.3507545086492455,0.6492454913507545,23.76877918969357,4.233687925941334,0.3144714664098242,0.2614977124969901,0.2053936913074885,0.218637129785697,11.339879667649504,5.9874041748035385,17.39569740875477,11726.573663172428,47.3373021749396,13.189330218708369,14.856087712753618,9.515952202949736,9.775932040527868,0.5742836503732242,0.7909760589318601,0.722052067381317,0.5685814771395076,0.1079295154185022,0.7570247933884298,0.9227053140096618,0.8697916666666666,0.755656108597285,0.1727748691099476,0.4991505266734624,0.7098214285714286,0.6605206073752712,0.5031645569620253,0.0906555090655509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021367088607594,0.0043172904441944,0.0064720979538837,0.0088966525836854,0.0112660016878666,0.0132133477207484,0.015707820272364,0.0179233054004674,0.0199736274519825,0.0224383253147712,0.0244732660070743,0.0266010964867251,0.0286674961183716,0.0307209062821833,0.0327868852459016,0.0349022282855843,0.036888640410817,0.0387403926937797,0.0405250904253107,0.0424226643058014,0.0568654067035606,0.0714450141257716,0.0846439355812783,0.097669921279704,0.1094585050649857,0.1252603203129129,0.1365574292077633,0.1476547203541329,0.157963864684777,0.1672707386119928,0.1797497523366498,0.1912741513230489,0.2028077730292848,0.2127499015704974,0.2216843078141848,0.2313538666075781,0.2396079832120373,0.2482829283671493,0.2564154994376853,0.2628428584533529,0.2689903456578612,0.2751167335666054,0.2815946922575676,0.2867427378424103,0.2918550936056406,0.2964424440471052,0.3003004130679684,0.303630698798245,0.3078854066923734,0.3107871182061456,0.3086936058629732,0.3062590175197526,0.3032779966235228,0.3008385895529928,0.2982378004424056,0.2945217005522664,0.2918878776387308,0.2917055902453415,0.2915588395532552,0.2916822147591378,0.2923635686347551,0.2930628118002907,0.2937522149721695,0.2953237809619016,0.2956700341525161,0.2970709133683203,0.2970341733216694,0.3005284426484302,0.3055728841755042,0.3099890573706425,0.3132681438952184,0.315565815014952,0.3209714678154461,0.3262880782248966,0.3288827074640704,0.3310288258729786,0.3315168029064487,0.3370786516853932,0.3301552710433124,0.3305439330543933,0.0,2.185193624961421,52.59721593665255,154.83572312191302,213.43366626061885,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95740,46932,446.2502611238772,5253,53.603509504909134,4181,43.074994777522456,1599,16.33590975558805,77.33281654085012,79.69837417192096,63.319784280511655,65.07076196778877,77.12881347534413,79.49846871826554,63.24333112548852,64.9986223328293,0.2040030655059865,199.90545365541837,0.0764531550231382,72.13963495946984,222.77838,155.9885649798027,232691.01733862545,162929.35552517517,450.76196,297.9713158363379,470215.4689784834,310626.3273828472,434.14693,211.0901560619787,449761.207436808,217645.2304115728,2391.89496,1113.191239872513,2467031.29308544,1131431.0004935374,946.08614,420.4519088654595,973928.452057656,424905.8584347809,1547.19876,653.2351642544348,1582530.1650302904,653073.9290724574,0.3803,100000,0,1012629,10576.864424482976,0,0.0,0,0.0,38757,404.188426989764,0,0.0,39418,408.01128055149366,1233542,0,44315,0,0,8846,0,0,71,0.7415918111552121,0,0.0,0,0.0,0,0.0,0.05253,0.1381277938469629,0.3043974871501999,0.01599,0.3661689730517116,0.6338310269482884,23.65589757318176,4.22400322110482,0.3099736905046639,0.2685960296579766,0.2217172925137527,0.1997129873236068,11.473012524525052,6.1724780363473135,17.116004737775423,11742.615159501864,47.69018266433847,13.71427841431111,14.607808175832592,10.237128981946622,9.130967092248138,0.5819182013872279,0.7996438112199465,0.7013888888888888,0.5782092772384034,0.1077844311377245,0.7441077441077442,0.9157427937915744,0.8067226890756303,0.726457399103139,0.1337579617834395,0.5175409288339459,0.7217261904761905,0.6613418530351438,0.53125,0.1017699115044247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021380295676316,0.0043917925207671,0.0065387348969438,0.0089041583232534,0.0109571480893663,0.0132211538461538,0.0153684554039446,0.0175193212794413,0.0198259731495588,0.0219127585500716,0.0244112490644575,0.0262560711388583,0.02850239062259,0.030659430066221,0.0325832378947802,0.0348028321877099,0.0368068932662234,0.0387509210348799,0.0408347891190416,0.0430058237052934,0.0573895431387288,0.0716804252069012,0.0849220830973804,0.097365322343244,0.1091727452881899,0.1240641258829998,0.1361601934539592,0.1474354198375783,0.1577036048064085,0.166965157055991,0.1784902938231462,0.1902742467679991,0.20142875782881,0.2116206613828915,0.2202010426060752,0.2303502031687684,0.2400888184688856,0.2488549274693615,0.2571642587191156,0.2636279325387284,0.2701930198111461,0.2761457796919619,0.2813584208594333,0.2864539636119567,0.2913386783284742,0.29644468551986,0.2997058639464297,0.3030595895114321,0.3064463922731333,0.3103844174353696,0.308909051747348,0.3056621947024424,0.3034768398512341,0.3013967731218673,0.2997651465604376,0.296407368872024,0.2934619337497035,0.2935420422881495,0.2944445391473331,0.2948820649755229,0.2951003475725978,0.2962312895655432,0.2972025052192066,0.2980026275356833,0.3001701699302543,0.3027885340055615,0.3053014375816807,0.3079961132181926,0.3120473074635221,0.3164767331433998,0.3184167573449401,0.3238967086464176,0.3241923365890308,0.3317227842367507,0.3317209302325581,0.3368458025992272,0.3404063205417607,0.344896331738437,0.3503253796095444,0.3544494720965309,0.0,2.3202166358055645,51.55821245839218,154.73134125883675,222.6180301352829,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95789,46753,444.0175803067158,5365,54.94367829291463,4275,44.15955903078642,1625,16.66162085416906,77.34910350822409,79.67618129971504,63.34642956891118,65.06606228677312,77.1424476161475,79.47149768339591,63.26887966705464,64.99157542848418,0.2066558920765828,204.68361631913007,0.0775499018565355,74.48685828893531,221.62118,155.2613366634069,231363.6847654741,162086.58265918525,448.72771,296.942883644976,467982.6076063014,309526.1097938996,441.08309,215.1953889435267,457434.7158859577,222443.26331689916,2423.51068,1139.8668479443338,2505749.9712910666,1165760.079323467,987.65035,443.74919382326,1021012.74676633,453333.35272023454,1576.6114,662.2473611091534,1618241.8649322991,667413.577681206,0.38043,100000,0,1007369,10516.531125703368,0,0.0,0,0.0,38483,401.2360500683794,0,0.0,40068,415.2355698462245,1240449,0,44530,0,0,8812,0,0,92,0.9604443098894444,0,0.0,1,0.0104396120640157,0,0.0,0.05365,0.1410246300239203,0.3028890959925442,0.01625,0.3443968593861527,0.6556031406138473,23.594674308888827,4.024602098540769,0.312046783625731,0.28,0.2053801169590643,0.2025730994152046,11.51525145331815,6.3398904038538815,17.240319743668824,11771.905933901342,49.17334061308168,14.796490155954398,15.226526257488114,9.699075186913298,9.45124901272586,0.5805847953216374,0.7936507936507936,0.6941529235382309,0.5785876993166287,0.1131639722863741,0.7606299212598425,0.905587668593449,0.8620689655172413,0.7668393782383419,0.1270718232044199,0.5044925124792013,0.7079646017699115,0.6280041797283177,0.5255474452554745,0.1094890510948905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0046118448392949,0.0066246664840571,0.0088368833226681,0.0113271240899662,0.0136202614112952,0.0156750035671334,0.0179621162638798,0.0203743818204111,0.0228870177305327,0.0247822968958098,0.0265059004617752,0.0285082986485792,0.0307138078328444,0.0328899886586246,0.0350252024458767,0.0369826158940397,0.0391742101388413,0.0411679135494596,0.0432043485504831,0.058105922254109,0.0717565235580191,0.0851463141008838,0.0984908991550716,0.1107903055848261,0.1261464981613762,0.1376441410886891,0.1491323210412147,0.1594229189119972,0.1695196674950724,0.1813329315669963,0.192863707628264,0.2039136815785182,0.2135679216192277,0.2224654821497332,0.2320853127803063,0.2406820515109583,0.2483305227655986,0.2554936639931024,0.2627657017272758,0.2698183247950227,0.2764028911604407,0.281941765951657,0.2861283792686286,0.2904811613905613,0.2955601286490616,0.3000125125125125,0.303953378885623,0.3067735792841691,0.3106102616916211,0.3082259129052679,0.3063190783587739,0.3045020694315398,0.3016686393949017,0.3001957701776763,0.29701230228471,0.293772997899591,0.2931960315641269,0.2935539328328992,0.2946213969056563,0.2949821658667762,0.2955868137071159,0.2966925053801634,0.2977973175031801,0.3001033181960162,0.2996222482740654,0.3007497363094729,0.3041670603798544,0.3064521794106283,0.3096222664015904,0.3149979492321013,0.3196686491079014,0.323788406715236,0.3263502704349813,0.3283271937281571,0.334609403038641,0.3321483771251932,0.3331976389171585,0.3341611479028697,0.3290246768507638,0.0,1.736849201554434,56.01010705410466,159.9508941215742,219.3917038416324,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95669,47324,450.3862275136146,5369,54.91852115105207,4305,44.43445630245952,1610,16.494371217426753,77.31532774038504,79.70922762310425,63.31028192710126,65.07729913159267,77.11506906158598,79.51011397449426,63.2347902230078,65.00436894476982,0.2002586787990594,199.1136486099947,0.0754917040934586,72.93018682284469,221.8502,155.42849039490406,231892.8179452069,162464.15975384304,453.9244,299.713717712247,473899.319528792,312707.70188069995,448.82831,218.62263408278443,465726.1913472494,225799.06279434872,2461.84508,1156.0431855648496,2542477.9186570365,1177586.5803602526,1000.44017,454.366221184815,1029424.2021971592,458630.5143618251,1565.8793,669.8673667966083,1605626.44116694,674212.086265282,0.38445,100000,0,1008410,10540.582633873042,0,0.0,0,0.0,38952,406.5580282014028,0,0.0,40716,422.2266355872853,1233394,0,44320,0,0,8863,0,0,84,0.8675746584578077,0,0.0,1,0.0104527067284073,0,0.0,0.05369,0.1396540512420341,0.2998696219035202,0.0161,0.3643327988597897,0.6356672011402102,23.23850939539236,4.074767909174669,0.316144018583043,0.2655052264808362,0.210917537746806,0.2074332171893147,11.447818853980078,6.278941149410805,17.245332292087703,11889.318877682328,49.26986200118205,13.969176517128393,15.39888848395618,10.13541911877765,9.766377881319825,0.5802555168408827,0.8162729658792651,0.7016899338721528,0.5616740088105727,0.1119820828667413,0.7541371158392435,0.9221556886227544,0.8535911602209945,0.7194570135746606,0.1459459459459459,0.5075757575757576,0.7336448598130841,0.6466466466466466,0.5109170305676856,0.1031073446327683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.0049372452807234,0.0069414845034402,0.009164245219759,0.011444091796875,0.013842627960275,0.0161663759778872,0.0185079261317208,0.0206577763233248,0.0230202861151219,0.0249423106507358,0.0272113735117977,0.0292989043773468,0.0314174429148462,0.0333921696136417,0.0355366174021863,0.0372899268499906,0.0393154054530924,0.0413676173833447,0.0434293218272207,0.0584338922843859,0.0718458800125641,0.085515475278387,0.0986363062418451,0.1108390759716755,0.1266684308017994,0.1387983479673415,0.1503839476851309,0.1613765095650315,0.1713690853089215,0.1837247146813807,0.1946035492707645,0.2052356590834875,0.2145975816600098,0.2240382391488705,0.2341966613055293,0.2429353289400201,0.2511844607749355,0.2594598276625455,0.2659797595443032,0.2723209115964518,0.2789957277462398,0.2850563553703353,0.2900741380551356,0.2951715760704524,0.2998373663200434,0.3036916531097485,0.3074428718574753,0.3103635587630466,0.3145935538323574,0.3119988159948334,0.3097962102252413,0.3076620162016201,0.3044476534296029,0.3030383953474571,0.2994113599877685,0.295304133562888,0.294358135731807,0.2948689565913387,0.2957967042744777,0.2959668848240756,0.2980033441526507,0.2985657320612121,0.2986275121429526,0.2996740328843296,0.3021522963886076,0.3029328933519187,0.3076511671805197,0.31259878472832,0.3145888804991456,0.3179085443614501,0.3206947680576149,0.3242256358599849,0.3282349342306516,0.3307539869774464,0.3339262421439583,0.3333333333333333,0.3358386075949367,0.3429504627109417,0.3445945945945945,0.0,2.112878616345073,55.43673764509152,158.567358443715,223.4813224313,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95618,46893,444.3201070928069,5200,53.08623899265829,4100,42.18870923884624,1627,16.5972933966408,77.3146043072854,79.73367470664057,63.296484254502126,65.08290848836288,77.10380636126594,79.52780122817539,63.21562829420191,65.00682283675378,0.2107979460194684,205.873478465179,0.0808559603002123,76.08565160909109,221.04236,154.881778843532,231172.3315693698,161979.7306401849,450.56022,298.4418408506872,470544.40586500446,311454.7165289873,438.90235,213.7426119863133,454820.3580915727,220295.9669943947,2340.9214,1098.5083138966545,2411577.5272438247,1112226.8965013423,945.08822,425.13013951671377,970971.0723922274,427192.9630774676,1584.07658,680.1310968427404,1617771.486540191,677740.8714748537,0.38008,100000,0,1004738,10507.833253153172,0,0.0,0,0.0,38696,403.9825137526407,0,0.0,39714,411.0836871718714,1236809,0,44331,0,0,8621,0,0,77,0.805287707335439,0,0.0,1,0.0104582819134472,0,0.0,0.052,0.1368133024626394,0.3128846153846153,0.01627,0.3488073394495413,0.6511926605504588,23.823475840075425,4.095795571309319,0.3070731707317073,0.2680487804878049,0.2160975609756097,0.208780487804878,11.22321581816964,5.971138378674939,17.432946442897602,11742.59837021938,47.00842272152988,13.302204654950764,14.376524603265402,9.901413479131872,9.42827998418184,0.5685365853658536,0.7679708826205641,0.7084988085782367,0.5790067720090294,0.0957943925233644,0.7274261603375527,0.8995433789954338,0.8484848484848485,0.7368421052631579,0.1058201058201058,0.5039451114922813,0.680786686838124,0.658772874058127,0.5243161094224924,0.0929535232383808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020366186051695,0.0044315542890752,0.0066492061558452,0.0089417263628511,0.0111185709635416,0.0136382155225096,0.0157587131914199,0.0177954847277556,0.0199241083756942,0.0224575273166685,0.0249333333333333,0.0273240883410374,0.0295358215711287,0.0320031323091506,0.0343012273295002,0.0366027669210248,0.0389903741542414,0.0409061649951203,0.0430353668307199,0.0450577302168403,0.0600508001547,0.073948752330868,0.0872135761241677,0.100102112787258,0.1123168517502005,0.1282616062351745,0.1395351307710285,0.1497452731652207,0.1601245306030747,0.1690284596955274,0.1806558119962451,0.1921930385578476,0.2035416553152073,0.2132925746967754,0.2226411350332374,0.2316221765913757,0.2405414165800445,0.2476421206828553,0.2555589642203815,0.2620773500940496,0.2685926011694552,0.2745352659717591,0.2795795653614886,0.2842621339438764,0.289335972122728,0.2938227505080988,0.2973466376572386,0.3003888775925172,0.3041825095057034,0.3075634905983808,0.306092244766159,0.3032860107472204,0.3011982033988989,0.2984554924652883,0.2962373823717424,0.2940176177709689,0.2911901669464947,0.2914303562328418,0.2914112530392794,0.292381054436348,0.2928242904685338,0.2930023994021162,0.2936987214193494,0.2946488145545127,0.2965145406398358,0.2968600841094971,0.2968428180458765,0.299624188588999,0.3028000416363068,0.3059950531977543,0.3104766187050359,0.3153361344537815,0.3192276346310576,0.3234472869972077,0.3264716840536513,0.3306451612903225,0.3315351418002466,0.3344162436548223,0.3447145588636984,0.3453846153846154,0.0,2.693291215511583,51.16936723731735,157.2893447600188,209.21239972485225,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95642,47154,448.4117856171975,5277,53.93028167541457,4174,43.02503084418979,1604,16.34219276050271,77.29129418892526,79.69235333295663,63.29829466637945,65.07023909069275,77.08619995572008,79.49049391285578,63.220589924627646,64.99671687381725,0.2050942332051875,201.85942010084543,0.0777047417518019,73.52221687550298,222.58434,155.98633320860765,232726.56364358755,163093.9683492688,452.84077,299.5027638537407,472873.20424081467,312548.2359776465,444.70183,216.9148090137363,461084.56535831536,223803.45081237124,2379.56308,1125.1939550594536,2453831.1620417805,1142305.7600839098,968.72549,441.3228310220585,996545.4402877396,445206.1729773906,1560.21012,664.3038360208888,1591271.4706927915,660464.3153831067,0.38157,100000,0,1011747,10578.480165617617,0,0.0,0,0.0,38842,405.4704000334581,0,0.0,40267,417.2016478116309,1229910,0,44093,0,0,8815,0,0,91,0.9410091800673344,0,0.0,1,0.0104556575563037,0,0.0,0.05277,0.1382970359304977,0.3039605836649611,0.01604,0.350173262812329,0.649826737187671,23.38379566647937,4.155269738841316,0.3164829899377096,0.2676090081456636,0.2093914710110206,0.2065165309056061,11.514160190496566,6.257837062264307,17.100853316202738,11814.720548038951,47.93941578227136,13.705704880245312,14.934344154123831,9.940072051058296,9.359294696843929,0.5831336847149018,0.7949865711727843,0.6949280847842544,0.6006864988558352,0.1194895591647331,0.7540453074433657,0.9372294372294372,0.8480662983425414,0.7098214285714286,0.175531914893617,0.5112321307011573,0.6946564885496184,0.6371220020855057,0.563076923076923,0.1038575667655786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021879399937198,0.0043800060833417,0.0063639962242319,0.0084645869322223,0.0107438268778805,0.0131384631053623,0.0154577156025042,0.017961075826577,0.0203359677732677,0.0227102851584498,0.0248382233799263,0.0267552688878846,0.0289288506645817,0.0310271629363999,0.0331495705318797,0.0354874744006123,0.037558296196497,0.0396747933712671,0.0416723027458978,0.0437565812108385,0.0583888970173275,0.0727798378480296,0.0860626043493326,0.0985368421052631,0.111079446502644,0.1266247512595791,0.1386895409571531,0.1495163833141591,0.1598473266119979,0.1689337899788497,0.1812349725597593,0.1921885828135828,0.2028059558535417,0.212658338716211,0.2220103814236436,0.2315738101312155,0.2413712191470105,0.2500591089744311,0.2577400347407499,0.2653627124081903,0.2716539534453023,0.2779727642847115,0.2846147470130608,0.2889416504784516,0.2933223092262049,0.298013816925734,0.3009908183332707,0.3053206662931078,0.3093590441386102,0.3123540663544621,0.3101224929331,0.3072116707954858,0.3048067302678861,0.3017354738956403,0.2995095853767276,0.2962474707216874,0.2919918319535244,0.2919233233134578,0.2929481152235234,0.2941418110376853,0.294519906323185,0.2970171690798323,0.2983441626493398,0.299392233096483,0.300992282249173,0.3015683423348567,0.3029719784885366,0.3066983699903013,0.3086048220596983,0.3130985358132172,0.316844253003854,0.32058652882536,0.3257566243877935,0.3308694658233636,0.3345584770521157,0.3373063170441001,0.3345679012345679,0.3331276989512646,0.3319444444444444,0.337657382678367,0.0,2.3581363637496717,53.58629400746295,157.71248901064675,212.74604918489908,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95629,46863,446.1303579458114,5330,54.366353302868376,4244,43.7733323573393,1668,17.086866954584906,77.27514686010801,79.68740095262461,63.27600815666828,65.05701984556816,77.05926336274844,79.47344504563925,63.1940112814703,64.97806430196087,0.2158834973595702,213.95590698536185,0.08199687519798,78.95554360729307,221.848,155.42694020490077,231988.2044149787,162531.17799506505,451.13867,298.31704341370545,471149.9963400224,311343.21535695804,439.68935,214.14359053004043,455966.6942036412,221019.94507210125,2425.7006,1148.861622441437,2504437.942465152,1169237.3468732685,953.06546,439.70790005879263,980073.053153332,443251.0013267857,1616.89464,695.3287917653029,1657711.9911323972,698270.9814962026,0.38101,100000,0,1008400,10544.918382499032,0,0.0,0,0.0,38697,404.0301582156041,0,0.0,39901,413.4310721643016,1231999,0,44220,0,0,8870,0,0,77,0.8051950768072447,0,0.0,1,0.0104570789195746,0,0.0,0.0533,0.139891341434608,0.3129455909943714,0.01668,0.3347624151482672,0.6652375848517328,24.00166817157262,4.026458213707635,0.3211592836946277,0.2591894439208294,0.2174835061262959,0.2021677662582469,11.23308417126412,6.1707641283749695,17.915598122533094,11759.613533326346,48.84849744399198,13.568329359680623,15.534405559350317,10.254843385896754,9.490919139064282,0.5739868049010367,0.8063636363636364,0.6852531181217901,0.5666305525460456,0.1072261072261072,0.734108527131783,0.9326315789473684,0.8469387755102041,0.6698113207547169,0.1421800947867298,0.504062288422478,0.7104,0.619979402677652,0.5358649789029536,0.0958268933539412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0047231484953832,0.0070823398102582,0.0094667343829355,0.0116762782371667,0.0138198631253055,0.0161418607496838,0.0184684178824105,0.0204471798227229,0.022618365006553,0.0243914947739837,0.0264428509790224,0.0285814231038314,0.0307574961089293,0.0328273440726972,0.0349461531299463,0.036910734275882,0.0390391326021934,0.041000666000666,0.043069735428768,0.0577248688308702,0.0724592122221872,0.0858991732585379,0.0983017635532331,0.1096663110416292,0.1259413029433259,0.1378504176319313,0.1502339910667647,0.1601258575113175,0.1700595455620284,0.1827152496626181,0.1929308923690946,0.2038547071905115,0.2139896032111601,0.2233921614074589,0.232938196442657,0.2417811209241411,0.2497827534449096,0.2565792469152665,0.2635629530077994,0.2702169625246548,0.276164563493925,0.2813819942100517,0.2851566253483232,0.2896366312664988,0.294094420177192,0.2980443775855584,0.3026972645305893,0.3062990593577684,0.3092666287663445,0.3064233300960397,0.3039380494391931,0.3022006682362229,0.3007718770778526,0.2987371861536176,0.2958177698854938,0.2929158760278305,0.2923541181487191,0.2927265297783226,0.2928834552346377,0.2934276253016781,0.2937788472918063,0.2955961691271799,0.2957906712172923,0.2970088032814411,0.2977313479379434,0.2982710160974363,0.3022730835554162,0.3074256905787207,0.311243072050673,0.3137823270981476,0.3155080213903743,0.3199524792096542,0.3220236748850185,0.3244710728328028,0.3284377590903707,0.3334348355663825,0.3360128617363344,0.3394320043691972,0.3465045592705167,0.0,2.398769438748246,56.39919586445659,155.74451983158255,215.7707653477852,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95684,46945,447.16985075874754,5262,53.88570711926759,4200,43.30922620291794,1592,16.261861962292546,77.28391542799022,79.6802682982467,63.28504443165552,65.05920963314409,77.07962359432352,79.4783881506898,63.208386814207415,64.98589975655165,0.2042918336667014,201.8801475569063,0.0766576174481059,73.3098765924467,222.10672,155.6299549620522,232125.24560010032,162649.925757757,452.22261,299.3855542636123,472071.5898164793,312340.5420588733,443.22854,216.1840233148202,459047.0298064462,222831.83582871835,2397.59728,1126.1681850742016,2474214.957568664,1145435.7521364088,967.17963,437.8528891825176,996522.5220517536,443319.5405527752,1548.11298,659.447179664821,1582933.9701517494,659148.0135397693,0.38045,100000,0,1009576,10551.147527277288,0,0.0,0,0.0,38923,406.2016638100414,0,0.0,40212,416.1928849128381,1229202,0,44199,0,0,8712,0,0,65,0.668868358346223,0,0.0,1,0.0104510680991597,0,0.0,0.05262,0.1383098961755815,0.3025465602432535,0.01592,0.3422586520947177,0.6577413479052824,23.141404468395944,4.077518591496324,0.3145238095238095,0.2716666666666666,0.205,0.2088095238095238,11.22701074093024,6.074457479358998,17.07662276392452,11682.920153304489,48.1413308698119,13.915240053394257,15.08913453183188,9.557005786851384,9.57995049773438,0.5835714285714285,0.8019281332164768,0.7047691143073429,0.5830429732868757,0.1174458380843785,0.7586490939044481,0.9237472766884532,0.8594164456233422,0.7135678391959799,0.1731843575418994,0.5123911587407903,0.7199413489736071,0.6430084745762712,0.5438066465256798,0.1031518624641833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496503921687,0.0042904089581304,0.0063555235184827,0.0084653611243788,0.0108055309666982,0.0130796186129899,0.0151869039726656,0.0174960166687094,0.0198005625159805,0.0220553586428732,0.0243141760879824,0.026684065595331,0.0286475751432893,0.0306187649435237,0.0326912754448986,0.0346542844733086,0.0366183464754582,0.0386032655518533,0.040638651965883,0.0425112818000854,0.0573493925560697,0.071486154007224,0.0848935812938163,0.0979259399564352,0.1107980031451519,0.1256655340679347,0.1362087089478546,0.1472859135880041,0.157786162446423,0.1680511730740335,0.1803336997995214,0.1911457261392809,0.2022210125204137,0.2120541824990966,0.2206695907077208,0.2301792552305899,0.2386004136157844,0.2464699054509393,0.2537840909090909,0.2602566896440983,0.2665816622232526,0.2724331168374405,0.2782904725754412,0.2826063465763786,0.2877450920730742,0.292619420758419,0.2968303683287396,0.3004378149977091,0.3038591038591038,0.3077815726662535,0.306049103537393,0.3037435213571811,0.3017424444850718,0.2994491232118135,0.296943685398598,0.2937790840068577,0.2911814960131629,0.2917007961731267,0.2917633806663026,0.291756643406564,0.2930843784564048,0.2946463926506692,0.2961802854800395,0.297927693549834,0.2990627113730795,0.3007756391841424,0.3028563308227938,0.3086346075321167,0.3142707423580786,0.3190449925143803,0.3230518746325358,0.3252447626065902,0.3313675585076665,0.3369111508646392,0.3396052388858144,0.3419302135605088,0.3497811981288667,0.3527521092808356,0.3504698728579326,0.3426067073170731,0.0,2.31973987840251,52.687707700938255,158.16988521190632,219.1831394095884,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95660,46915,446.916161404976,5333,54.48463307547564,4239,43.76960066903617,1624,16.579552582061467,77.35161970545354,79.75698730197688,63.31721993396855,65.0939611620878,77.14512106101442,79.55419427536714,63.23810795723074,65.01892114650087,0.2064986444391223,202.79302660974,0.0791119767378134,75.04001558692153,221.12464,154.89472037929613,231156.84716705,161922.14131224767,450.11012,297.9466628857734,469971.30462053104,310904.34129811137,439.96265,214.3797746708725,456829.5630357516,221669.0976722425,2415.45844,1144.4468275795568,2494457.369851558,1165781.212188539,988.29424,449.2642301824656,1017760.0146351662,454274.74407533614,1590.92648,683.9715452712255,1625752.7493205103,682939.0157195099,0.38035,100000,0,1005112,10507.12941668409,0,0.0,0,0.0,38602,402.9479406230399,0,0.0,39864,413.6316119590216,1241327,0,44443,0,0,8831,0,0,96,1.003554254651892,0,0.0,0,0.0,0,0.0,0.05333,0.1402129617457604,0.3045190324395275,0.01624,0.3449207492795389,0.6550792507204611,23.386004470111644,4.101010214346056,0.304552960603916,0.2786034442085398,0.2040575607454588,0.2127860344420854,11.275095405062904,5.969428616494612,17.36541646965858,11705.264118992172,48.80191181031182,14.565774640577969,14.594122051326226,9.691427395157712,9.95058772324991,0.5833923095069592,0.8128704487722269,0.6963594113090628,0.5872832369942197,0.1175166297117516,0.7444620253164557,0.925925925925926,0.861671469740634,0.7136563876651982,0.1470588235294117,0.5149579831932773,0.7338129496402878,0.635593220338983,0.542319749216301,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0044212340921766,0.0065561126108754,0.0086564252621311,0.0108637052558768,0.0131493175799551,0.0155611074287462,0.0179207809580214,0.0200613496932515,0.0222062890504967,0.024262880357839,0.0265532194751012,0.028598184699611,0.030608562974876,0.0327741855516764,0.0347934944545605,0.0365763916959464,0.0386388173739722,0.0406600495245229,0.0427002846685644,0.0571270337203105,0.0713163846540459,0.0848316906508801,0.0974924499910557,0.1091164302600472,0.1245541054057773,0.1358901665976491,0.1465666105272134,0.1576345719696564,0.1668689255222037,0.1785926125640334,0.1911479495097242,0.2019575181544022,0.2106323349097915,0.2190219187135147,0.2294445738110286,0.2381734669929929,0.247660552008378,0.2564955712014535,0.263624493161982,0.270458804747692,0.2756194483403459,0.2804928519906822,0.2858648020880726,0.2908091447432288,0.2946982376686029,0.2983253618392297,0.302271255728922,0.3061237667234878,0.3101324947699433,0.308241079105761,0.3061793126166685,0.3033126730474624,0.3005952809928076,0.2980687999288583,0.2952188984073174,0.2918099504684986,0.2925871379479627,0.2929322181149175,0.2929316297113571,0.2930287294056113,0.2941674209925617,0.2951343227503287,0.2968732638503077,0.2980078730764642,0.2989973123837089,0.2983547238084469,0.3017408123791102,0.3056763999582362,0.3096474661630469,0.3126015526268279,0.3188708834291688,0.3228830394834864,0.3259577030179875,0.3273925554627309,0.3312847181184257,0.3353156450137237,0.3392749849789706,0.3361999462510078,0.3393984404010397,0.0,2.0655379368579143,55.33197494161459,161.59103453206308,213.22138527445108,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95798,46403,441.8568237332721,5153,52.642017578655086,4038,41.65013883379611,1556,15.91891271216518,77.3507064425629,79.67947526002486,63.34838135415546,65.07005206751157,77.1483298590437,79.47860169180575,63.272762336059344,64.99721789173876,0.2023765835191966,200.87356821910876,0.0756190180961127,72.8341757728117,223.00234,156.16094135313415,232783.920332366,163010.64881639925,447.6263,296.92358172257644,466773.356437504,309460.34543787607,432.48336,210.45796406935875,448332.85663583793,217273.9016888154,2306.28892,1080.1113275068922,2380322.4284431827,1100360.8504424857,932.27425,417.60747497284206,960214.9836113488,422973.3136107664,1511.67114,644.4133337396817,1547747.9279316897,646768.7347905756,0.37669,100000,0,1013647,10581.087287834818,0,0.0,0,0.0,38448,400.8330027766759,0,0.0,39210,406.1775819954488,1235687,0,44322,0,0,8613,0,0,78,0.814213240359924,0,0.0,1,0.0104386312866656,0,0.0,0.05153,0.1367968355942552,0.3019600232874054,0.01556,0.3507560201605376,0.6492439798394624,23.36357870244482,4.119872916356798,0.3088162456661714,0.266468548786528,0.2206537890044576,0.204061416542843,11.204793473525308,5.977212723534989,16.717528585480103,11568.700331172084,46.19741185938625,13.055348805639444,14.242575651878024,9.837182650654327,9.062304751214455,0.5802377414561665,0.7992565055762082,0.7016840417000801,0.5768799102132436,0.1140776699029126,0.7444253859348199,0.927400468384075,0.8608695652173913,0.7110091743119266,0.1136363636363636,0.5135793871866295,0.7149460708782742,0.6407982261640798,0.5334323922734027,0.1141975308641975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575300838701,0.0042781832927818,0.0063522989030614,0.0085730537948967,0.0108081177810313,0.0130819428466714,0.0155823244058538,0.0180220632507066,0.0201927302083652,0.0223291035611952,0.0241100887349632,0.025970161505469,0.0280249933200419,0.0301202338796014,0.032058486888914,0.0339363009948449,0.0358014982823558,0.0379212755149642,0.0399189989096007,0.0417135123880907,0.0559393129930297,0.0696144958751999,0.0824554231265134,0.094495470690851,0.10638253024746,0.1224908301005253,0.1347677168276725,0.1453701831494035,0.1561102155416297,0.1666363003054498,0.1791195780863201,0.1902476980936324,0.2018796175575836,0.2109328060650419,0.2194741239062568,0.2290726484381913,0.237323825970698,0.2454144155275247,0.2529317787824195,0.2597490248115398,0.2663726214668391,0.2722347418936749,0.2770651312911578,0.2818843355036384,0.2858684973376836,0.2908323384982708,0.2955814563579807,0.299640411176478,0.3026179635761589,0.3048213556688133,0.3022581035154413,0.2997967200505453,0.2983376462646264,0.2961599538039555,0.2936996543488258,0.2907063879245745,0.2877364458784083,0.2885540289883619,0.2893137589621031,0.289215511398095,0.2894263217097862,0.2908091651345313,0.2911310110521569,0.2928502567091899,0.2934220961811146,0.2932279850843568,0.2956496933390387,0.3001260239445494,0.3040118035551183,0.3089218595450049,0.312955207574654,0.3156659912551989,0.3193006816460489,0.3225436179981634,0.3257846269498214,0.3271604938271605,0.3300447047942038,0.3329215565163681,0.3379097786494816,0.3369523070957735,0.0,1.9748496829672413,50.88827638679695,149.6359196513673,213.0978642348127,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95734,46985,446.70649925836176,5298,54.09781268932668,4199,43.265715419809055,1607,16.420498464495374,77.31652017658898,79.67775037097478,63.31665033110207,65.06259368001781,77.10564880045528,79.47044075889394,63.23761521043351,64.98773829481074,0.2108713761336957,207.30961208083443,0.0790351206685571,74.8553852070728,221.76638,155.37922030956173,231647.586019596,162302.2927047169,451.92528,299.3539850674119,471441.72394342656,312074.906329078,442.10471,216.1016659005775,458428.2177700712,223116.0683106439,2394.04528,1138.7231787591702,2466919.046524746,1155914.413761437,970.86042,448.5131446978762,995880.1470741848,450748.2502747213,1569.31944,668.1223283320625,1604320.178828838,667005.0166813935,0.38136,100000,0,1008029,10529.435728163451,0,0.0,0,0.0,38773,404.3599974930537,0,0.0,40244,416.9887396327324,1233879,0,44301,0,0,8762,0,0,74,0.7625295088474314,0,0.0,1,0.0104456097102387,0,0.0,0.05298,0.1389238514789175,0.3033220083050207,0.01607,0.3543064369900272,0.6456935630099728,23.64427629172552,4.11567861212696,0.3165039295070255,0.2714932126696832,0.2014765420338175,0.2105263157894736,11.28230560439284,6.054756911075915,17.259420644211914,11782.318400502538,48.38010038390112,14.083795454920134,15.120329192889225,9.446055956848834,9.729919779242922,0.5860919266492022,0.8043859649122806,0.7193378480060195,0.5921985815602837,0.0984162895927601,0.7646604938271605,0.952,0.8688118811881188,0.7208121827411168,0.1128205128205128,0.5063727178780572,0.6890625,0.654054054054054,0.5531587057010786,0.0943396226415094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.004673513042244,0.0068104541994417,0.0091955658067203,0.011322021484375,0.0138308923879168,0.0161137344089421,0.0182592445084403,0.0205621619410844,0.0230048630662912,0.0250492166352227,0.0271385885469611,0.02936851522412,0.0314273063338584,0.0336885102169226,0.0357390091439789,0.0377206148750064,0.0397186809539122,0.0414345114345114,0.0430896172358468,0.0573820983722945,0.0710129761406446,0.0846748398057743,0.0974488937494742,0.1102019296673169,0.1259241239991962,0.138156010311575,0.1488775108310358,0.1583046646295861,0.1685279950221535,0.181166991608949,0.1931871057102355,0.2031229611587142,0.2126559305541889,0.2220338796490957,0.2316063611680612,0.24027199338998,0.2483039501366965,0.2565455721630179,0.2629613507755046,0.2693446871529063,0.2754385964912281,0.2814109013434338,0.2871823774177688,0.29181806029821,0.2962839629506296,0.300928939856778,0.3040827754728027,0.3086750543647095,0.3113140323559684,0.3094504192858008,0.3074242904163166,0.3047937475311777,0.3021731581688755,0.3014853472501003,0.2974919180621734,0.2935413930080554,0.2939687756778965,0.2944778979061174,0.2955289571144866,0.2961830629278814,0.2961762671672759,0.2972706691262787,0.2974786907984518,0.297875408575274,0.3002001507629123,0.3004465174483092,0.3037899414765437,0.3085470682787057,0.3123345057898273,0.3157083257754399,0.3176663840610428,0.3204315914936327,0.3223445986722993,0.324018691588785,0.3240356083086053,0.3254356465912565,0.3305169985918326,0.3313236503151548,0.331047619047619,0.0,2.234533339735566,56.56958025675548,154.9834854731849,210.17126083330112,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95682,46774,445.12029430822935,5337,54.60797224138291,4176,43.10110574611735,1620,16.52348404088543,77.40264542862671,79.78216698600721,63.35728834693722,65.11170806924899,77.19464657215121,79.57898157936525,63.27839573302597,65.03725313434302,0.2079988564754984,203.18540664196405,0.0788926139112433,74.45493490597244,222.63934,155.82626597563947,232686.75403942223,162858.4958253794,451.07486,298.99593936389545,470900.9740599068,311960.4244087104,436.75617,212.80814696328176,453574.2459396752,220148.07788598465,2403.00212,1129.4542789470936,2480743.2118893834,1149774.6789988575,1012.31965,457.5704677305607,1042788.9780732008,463052.7143570598,1587.27302,679.6386546268507,1620238.0385025395,677466.1553162505,0.3813,100000,0,1011997,10576.670638155556,0,0.0,0,0.0,38808,405.0291590894839,0,0.0,39654,411.4776028929161,1235590,0,44344,0,0,8909,0,0,82,0.857005497376727,0,0.0,0,0.0,0,0.0,0.05337,0.1399685287175452,0.3035413153456998,0.0162,0.3476618705035971,0.6523381294964029,23.70122325419738,4.203633031344779,0.3158524904214559,0.2693965517241379,0.1901340996168582,0.2246168582375479,11.244054074543888,5.947673463355217,17.383484810649563,11730.64910787535,47.80289369610178,13.747988735434827,14.968898106940438,8.829994181727798,10.256012671998716,0.5806992337164751,0.7964444444444444,0.7012888551933283,0.6045340050377834,0.1321961620469083,0.7661612130885874,0.941299790356394,0.8743455497382199,0.7675675675675676,0.1674641148325359,0.5011973999315772,0.6898148148148148,0.6307363927427961,0.555008210180624,0.1220850480109739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020658018652975,0.0044594443937689,0.006867518766484,0.0089068990382174,0.0108296641278815,0.0129625481131499,0.0152517662891106,0.0172890662475377,0.0196617444177609,0.0219411355356338,0.0241909857826706,0.026302011149096,0.0284083898827884,0.0304125728645286,0.0323156450231636,0.0344389205279532,0.0364076915908173,0.038686646465485,0.0406452485205254,0.0428574406436954,0.0569031799757636,0.0716731411578693,0.0852966177288516,0.0983599659159048,0.1104255004957492,0.1261267933471581,0.1375343570587174,0.1481434167944132,0.1589155570753809,0.168745375186333,0.1810114586025674,0.1920800008658102,0.2031798853762248,0.2127517659151048,0.2217479317021651,0.2314684617854493,0.2401507212771175,0.2478711213966342,0.2560070691393549,0.2628245435525729,0.2689581120399021,0.2748074679113185,0.2804500802871446,0.2849641776406282,0.2902533640441265,0.2944736971605728,0.2990153200209932,0.3028406783103168,0.3068867108304601,0.3094865351979267,0.3077790304396843,0.3050036993395993,0.3032431750304968,0.3013058359939022,0.2979928707716428,0.2954469214113628,0.2924824485288317,0.2923814824515453,0.292953339681676,0.2934883059643136,0.2937498833585279,0.2946969845598478,0.2952188999937665,0.2972697003329633,0.2982447749772825,0.3002178310253617,0.3012417077734308,0.3046246021344317,0.3065759637188208,0.3113746503289862,0.3150908349567344,0.320603813559322,0.3231203007518797,0.3279891098842925,0.3339574946166089,0.3369527145359019,0.3378357869175899,0.3348651348651348,0.3388318009734992,0.3416635583737411,0.0,2.0984438858076544,54.73939675301352,151.35488204848178,215.8526076013161,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95714,46850,445.3684936372944,5224,53.15836763691832,4107,42.18818563637503,1543,15.671688572204694,77.33907921770925,79.70386312698858,63.32552877917672,65.07467398886926,77.1366572249062,79.50781706074368,63.24803922608789,65.00229124237882,0.2024219928030532,196.04606624490373,0.0774895530888244,72.3827464904474,222.4409,155.78648051047293,232401.6340347285,162762.4804213312,454.19194,300.6456509078436,473822.8158890026,313400.8409510036,438.84307,214.29695629422525,453513.7910859435,220159.1769585373,2332.49708,1103.5752837070745,2397844.578640533,1113925.6715914856,966.89156,445.2793338401042,993054.3076247989,448148.71946218255,1496.08482,648.5823661494751,1521561.5479449192,643204.0965277392,0.38052,100000,0,1011095,10563.710637942202,0,0.0,0,0.0,38924,405.9176296048645,0,0.0,39718,409.98182084125625,1232646,0,44210,0,0,8872,0,0,105,1.0970182000543285,0,0.0,1,0.0104477923814697,0,0.0,0.05224,0.1372858194050247,0.2953675344563553,0.01543,0.3589696748264523,0.6410303251735476,23.582702710739564,4.097569374512887,0.3114195276357439,0.2700267835402971,0.2115899683467251,0.206963720477234,11.552449682756247,6.409169491661374,16.658524013231816,11761.281432708223,46.92968328242716,13.471833443297909,14.4193204503497,9.786582031867654,9.251947356911884,0.5855855855855856,0.7908025247971145,0.7013291634089132,0.5983889528193326,0.1305882352941176,0.7548701298701299,0.9235955056179777,0.856353591160221,0.7510729613733905,0.1770833333333333,0.5130434782608696,0.7018072289156626,0.6401308615049073,0.5424528301886793,0.1170212765957446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026029006643979,0.0051101107190655,0.0073789876475543,0.0096020972199642,0.0116476608038411,0.01420729409608,0.0161729465150665,0.0183769104329804,0.0207161700648275,0.0226960814437001,0.0246956628754858,0.0266631061080698,0.0290950603190274,0.0311656467000473,0.0330002683787856,0.0350661303165362,0.0370247591422355,0.0390423114044646,0.0412632717365306,0.0431842807134522,0.0575748399828758,0.0721864144310049,0.0857712068784733,0.0983899632983142,0.1109072310628829,0.1261489967103523,0.1383525018036752,0.1498679671195536,0.1597896829213555,0.1701381064288703,0.1821473602534674,0.1940308205455864,0.2051164865776559,0.2145225718194254,0.2236488569792538,0.2329985143794762,0.2411363357193107,0.2490630170288917,0.2572868428221193,0.2642997123439953,0.2698611111111111,0.2762154321276496,0.281808398670782,0.286908111343909,0.291758654989204,0.2956021251475797,0.2990499019938324,0.3019200751278569,0.305531167690957,0.3090576322962066,0.3069587525015781,0.3045347766955614,0.3024110121183971,0.299519001603328,0.2972475429793046,0.2936930323606778,0.2909404086534662,0.291090050501738,0.2911714480874317,0.2914309172363324,0.2926870334686547,0.2937895421487277,0.2940550910190379,0.2959240523254518,0.296813368076307,0.2970068872663249,0.2975157393227837,0.3015987235240747,0.3050237562884293,0.3067004192706273,0.3091065916106773,0.313073455316892,0.3134798211924699,0.3156052651601613,0.3186137506987144,0.3209658421672556,0.3204911742133538,0.3298864557988645,0.3316790736145575,0.3318095238095238,0.0,2.76739619397933,53.027676710546594,146.94422343260746,214.02090744582352,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95690,46333,440.3385933744383,5342,54.81241509039607,4249,43.86038248510816,1579,16.124986936984012,77.30793472821749,79.68409913941088,63.31631099018998,65.0703072856993,77.10632147987002,79.48476531271322,63.24156713509853,64.99857359905863,0.2016132483474706,199.33382669765365,0.0747438550914552,71.7336866406697,221.5147,155.11987366512383,231492.00543421463,162106.67119356658,448.51428,296.3678221531621,468149.5140558052,309151.1821268302,432.75109,210.49991723411043,448717.2954331696,217264.3583146249,2437.94024,1135.3121591233414,2516815.341205978,1155916.1348411476,982.13616,442.5402967897454,1009672.3691085798,446175.2039257,1541.56216,649.4396140332198,1575539.9310272755,649604.7549969445,0.3768,100000,0,1006885,10522.363883373391,0,0.0,0,0.0,38486,401.6198139826523,0,0.0,39320,407.5347476225311,1240891,0,44595,0,0,8747,0,0,84,0.8569338488870311,0,0.0,0,0.0,0,0.0,0.05342,0.1417728237791932,0.2955821789591913,0.01579,0.357832618025751,0.6421673819742489,23.77953521130477,4.138543379868832,0.325488350200047,0.2642974817604142,0.2035773123087785,0.2066368557307601,11.227673788629962,5.872531644650564,16.911196010256035,11677.140503502396,48.6948321668028,13.5875546884274,15.687468052640249,9.756973347462983,9.662836078272177,0.5897858319604613,0.8121104185218165,0.7107736804049168,0.5988439306358382,0.1059225512528473,0.7479131886477463,0.9308755760368664,0.8725761772853186,0.7129629629629629,0.1229946524064171,0.5276958374303508,0.737300435413643,0.6536203522504892,0.5608628659476117,0.1013024602026049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.0044688095334603,0.006816867689873,0.0091005119037945,0.0115124888129525,0.0134821392203983,0.01556015539762,0.0177335375191424,0.0200781042343944,0.0223664411255898,0.0242957313322671,0.0264376430969517,0.0285490970422477,0.0307510044297929,0.0328455855037767,0.0347355036131126,0.0368962015873344,0.0390145655762382,0.0411209703425533,0.0430014490185245,0.0575964903117981,0.0711317654200814,0.0846849493275142,0.0970836006436481,0.1098741223353785,0.1251546587988959,0.1366587456505134,0.1477732362583556,0.1579762629661678,0.1674764831440186,0.1797182916585901,0.1908032797525041,0.2009827902982073,0.2101149023166318,0.2195079028124553,0.2284809285429495,0.2373350290616598,0.2453235548856619,0.253151200916713,0.2603412734768667,0.2670872156953527,0.2738627061162437,0.2794423932594906,0.2844979553658156,0.2890280226126071,0.2936265199911205,0.2977814523907951,0.3015773915702563,0.305314899356713,0.3080439119119648,0.3049927251172064,0.3022736975472711,0.2995742521216906,0.2974020713996412,0.2955928068896788,0.2935022363825746,0.2903609113089768,0.2914974431491195,0.2922718951564612,0.2935524200750134,0.2949943757030371,0.2957732550089993,0.2971943048576214,0.2976477414747366,0.2999063468049852,0.3012098456403838,0.3048006601974901,0.3089921165865762,0.3135730368702505,0.3172211427891669,0.3198705383598486,0.3219745222929936,0.3291545924152702,0.3299627461415647,0.3309588527509607,0.3298361428739833,0.3289116671691287,0.3276723276723277,0.329747175901022,0.3290949887808526,0.0,2.0669170398239274,52.38837849090443,164.28876161022777,221.0187835730531,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95705,46736,445.5462097069119,5340,54.66799017815161,4236,43.66543022830573,1614,16.49861553732825,77.38171245272493,79.7555307304085,63.34258245905804,65.094951647522,77.17929509679058,79.55455224303317,63.26637761692899,65.02152582416794,0.2024173559343438,200.9784873753233,0.0762048421290515,73.42582335405723,223.33388,156.35023755943442,233356.5435452693,163366.8434872101,449.25455,296.58359597157744,468832.96588475,309310.52293148456,437.75243,212.822007047752,452965.8116085889,219048.54766524732,2435.01852,1136.786928347806,2512227.0309806177,1156011.559865013,1024.26742,459.7139763476018,1054971.3599080509,465199.41999673215,1575.89644,664.8044612818246,1612462.5672639883,666694.5254693021,0.37847,100000,0,1015154,10607.11561569406,0,0.0,0,0.0,38570,402.3927694477823,0,0.0,39698,410.51146753043207,1234303,0,44244,0,0,8767,0,0,73,0.7418630165613082,0,0.0,0,0.0,0,0.0,0.0534,0.1410944064258726,0.302247191011236,0.01614,0.3440975959813419,0.6559024040186581,23.826028547982062,4.153796672913482,0.30547686496695,0.2660528800755429,0.2101038715769594,0.2183663833805476,11.48362742308475,6.194809107612833,17.07197888980392,11664.678013261711,48.2905917107064,13.77244691453166,14.67620525534458,9.858440125765576,9.983499415064578,0.5734183191690274,0.8003549245785271,0.6931993817619784,0.5831460674157304,0.12,0.7489643744821872,0.9171974522292994,0.8554216867469879,0.785,0.1519607843137254,0.5034664905909542,0.7164634146341463,0.6372141372141372,0.5246376811594203,0.1109570041608876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0044298472361605,0.0066566546251572,0.0089998577900574,0.0111276115304025,0.0131466395112016,0.0151312770838643,0.0171505573931152,0.0194637252997761,0.0215375166342512,0.0235485888274914,0.0254412172359626,0.0274367043047242,0.0297695691138145,0.0317534028874235,0.0338702673641984,0.0362173246613364,0.0381139163008851,0.0398643799856475,0.0419037495570979,0.0560504631708667,0.0703188794204476,0.0840634147876905,0.0963381407727669,0.1083088087929706,0.1235432221493686,0.1354270557029177,0.1466912234382319,0.1560426882030574,0.1656494363220955,0.1787719128120589,0.1900344237805538,0.2018076220308013,0.2107616455128836,0.2196018039819602,0.2293163575975643,0.238298631634121,0.2469384312622997,0.2549024055528461,0.2619581892702585,0.2686670753854874,0.2739460242879016,0.2794618770410336,0.2851957883640981,0.2895005220600733,0.2933743842364532,0.2977276704247181,0.3024335045516961,0.305975941016686,0.3085212900505902,0.3062804009567063,0.3039361001317523,0.3021124682005369,0.2998257413194694,0.2982915464832483,0.2935591050417606,0.2906694415539368,0.2912039456493336,0.2922664312873438,0.2922790202342918,0.2936320095417358,0.2938366263639044,0.2954110898661568,0.2966801295992188,0.2986064713181254,0.3007458641959377,0.3021418291616107,0.3072380893184573,0.3125715276573608,0.31583913197311,0.3201264964987576,0.3249604221635884,0.3271961794646223,0.3335614355231143,0.3347064881565396,0.336329233680227,0.3433176220161167,0.3433346757954088,0.3456449834619625,0.3534847901424721,0.0,2.3615116437160486,52.313314516038055,162.4349693358639,216.77616836642795,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95859,46675,443.7976611481447,5301,54.11072512753106,4233,43.59528056833474,1594,16.31563024859429,77.44506122741345,79.72205569087696,63.40474875222951,65.08389343993056,77.25382826774845,79.53269393316461,63.334375688243966,65.01618270067152,0.1912329596650011,189.36175771234787,0.0703730639855422,67.71073925904147,224.98366,157.50598626298648,234702.69875546376,164310.0661001956,452.14836,298.95490947633215,471131.6412647743,311320.4075531062,436.66116,212.972744502378,451583.0855736029,219173.41449241043,2414.2822,1124.8976381126636,2488545.676462304,1143766.9797061828,1002.94947,451.8730673563205,1029551.5913998686,454764.9644176941,1546.67856,637.4434020875834,1584658.1750279055,641651.7185599344,0.37964,100000,0,1022653,10668.304488884716,0,0.0,0,0.0,38910,405.3244870069582,0,0.0,39707,410.2588176384064,1226959,0,44055,0,0,8889,0,0,69,0.7093752281997517,0,0.0,0,0.0,0,0.0,0.05301,0.139632283215678,0.3006979815129221,0.01594,0.3546584970264912,0.6453415029735088,23.62734154661772,4.140782154157221,0.3139617292700212,0.2671863926293409,0.218284904323175,0.2005669737774628,11.76642101952455,6.391193826149334,16.755850689639956,11634.71720359488,48.31498775274648,13.816241408840874,14.96701157407768,10.37859128397186,9.153143485856068,0.578549492085991,0.7939876215738285,0.674191121143717,0.5898268398268398,0.1295641931684334,0.7784137367130008,0.9361702127659576,0.8735955056179775,0.7280334728033473,0.170886075949367,0.4973421926910299,0.6928895612708018,0.6012332990750257,0.5416058394160584,0.1201157742402315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024393206340209,0.0047407287350965,0.0070673169544629,0.0092261783930818,0.0115125896722011,0.0135922922749793,0.0159190906868736,0.0179469138446164,0.0204433824505509,0.022321063394683,0.0240321110781171,0.0261214694480339,0.0282850276277139,0.0305290118186774,0.0327216904833043,0.034650757114398,0.0367336808140977,0.0386408853519025,0.0405822077800732,0.0422441420069088,0.0567957874980449,0.0707249041505176,0.0840086270075591,0.0969549432330905,0.1083301771661827,0.1233945099363608,0.1355165914914342,0.1465345062043175,0.1568111058984092,0.1661762030626331,0.1779358665749656,0.1892504696711222,0.20023661959601,0.2099592852542761,0.2194098850297034,0.2287392299779899,0.2378246481933349,0.2461586845179261,0.2531162179312846,0.2610619975068333,0.2676697637868072,0.2733561587809808,0.2787373647809895,0.283262161935862,0.2878034583949749,0.2920563047544049,0.2959645743163793,0.2994762534323197,0.3031620348807121,0.3060431161711996,0.3038587153743801,0.3018430333886838,0.2994948077462812,0.2969906974737962,0.2955408740891825,0.2931561886499566,0.2898999748364368,0.2907585217547234,0.2908513924007671,0.2919817920969199,0.2938986710345084,0.2949231796927187,0.2969215078159149,0.2961919133638098,0.2984775449816255,0.3003436781312179,0.3004371738823861,0.3048621054597522,0.3067433640584933,0.3101820899044323,0.3169760072430964,0.3215644820295983,0.324760653275765,0.3289383431140919,0.330979949166902,0.3348770929818311,0.3321565617805065,0.3347056401811445,0.335180055401662,0.3333333333333333,0.0,2.2312670825354783,53.3489198197542,156.7535598702836,221.1353594361768,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95689,47030,447.3241438409849,5358,54.68758164470316,4286,44.24751016313265,1679,17.253811827900805,77.29747507811412,79.7008846300033,63.28577397120039,65.06585143423074,77.08166524859928,79.48579954568147,63.20447175065247,64.98696846644252,0.2158098295148391,215.08508432182796,0.0813022205479256,78.88296778821768,221.63724,155.21629198192184,231622.4853431429,162209.1274670253,454.77149,301.51054044337934,474714.97246287455,314549.2798998624,440.63215,214.8689529807189,456842.4061281861,221846.900042456,2475.51288,1163.2414764909715,2557745.655195477,1186353.5374922634,1012.60932,461.9596444546796,1043541.1384798668,468093.4690709102,1643.62182,701.5089203019594,1689538.33773997,708342.9216986352,0.3815,100000,0,1007442,10528.294788324678,0,0.0,0,0.0,38972,406.7029648130924,0,0.0,40062,415.0006792839303,1231122,0,44254,0,0,8772,0,0,82,0.8569428042930745,0,0.0,1,0.010450522003574,0,0.0,0.05358,0.1404456094364351,0.3133631952220978,0.01679,0.3554603854389722,0.6445396145610278,23.551403082832262,4.143986655569266,0.3084461035930937,0.2631824545030331,0.2088194120391973,0.2195520298646757,11.322456464177035,6.083721761600705,18.020387543465528,11749.353732185904,49.12071152768696,13.711635537069796,15.177783357634237,9.899693541163227,10.331599091819696,0.5795613625758282,0.800531914893617,0.7042360060514372,0.6011173184357542,0.1190223166843783,0.7478191911181602,0.918103448275862,0.8548387096774194,0.7407407407407407,0.1866028708133971,0.5094214876033057,0.7183734939759037,0.6452631578947369,0.5567010309278351,0.0997267759562841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0047572677662142,0.0072897101375704,0.0096738136368255,0.012237548828125,0.0142699993888651,0.0163804006364489,0.0186270705255203,0.0206899373063194,0.0228773898884804,0.0251505236273373,0.0271311458568757,0.0292586572292751,0.0315733069535468,0.0333908087514067,0.0352203729946109,0.037085790690202,0.0391772059892426,0.0412921348314606,0.043176488979209,0.0575884509719944,0.0715601708399631,0.0849317943336831,0.0977120917267133,0.1101453555832155,0.125797408093097,0.1368509319407294,0.1478688734104415,0.1586055712987221,0.168882064937296,0.1814848367197273,0.1933637575744436,0.2036643682668322,0.2125780650816259,0.2222920387150825,0.2319409774227547,0.2408328397241749,0.2484624569150014,0.2555272785112136,0.2625166200541011,0.2692383434694468,0.2753835343717062,0.2801155946134805,0.2844231600172835,0.2904100923346431,0.294080627845852,0.2977446435283799,0.3015409714875664,0.30542613525755,0.3088488086107952,0.3060323886639676,0.3043916168821314,0.3017857647424486,0.3006097649291021,0.2991600386530885,0.2952544293524034,0.292689480755552,0.292888262849281,0.2928294309828478,0.293813241335159,0.294654011821962,0.2959388268595691,0.2965511489219734,0.2963490016453951,0.2984378364153968,0.2981733385153517,0.2994251083231854,0.3040667166416791,0.3075527646956218,0.313816775822615,0.3157847046031171,0.3227711288026572,0.325793551612097,0.3303181064375094,0.3314669652855543,0.3338427177618432,0.3373512358864815,0.3400564743848326,0.3478142076502732,0.3538638102524866,0.0,2.1141992475873206,55.1021445681228,161.7847104414119,218.3000561655264,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95834,47044,445.87515912932776,5225,53.279629359100106,4145,42.71970281945865,1611,16.539015380762567,77.32864418348662,79.6398811260909,63.32870225298407,65.03866627835122,77.11708770062984,79.42777588494363,63.248634164431394,64.96041578740777,0.2115564828567784,212.1052411472704,0.0800680885526716,78.2504909434465,222.52054,155.94374899082345,232193.73082622036,162722.78000586788,452.24773,299.864729177797,471343.3541331887,312336.1115864901,438.37925,213.85953401,453688.8369472213,220377.50034149064,2385.55444,1127.4291389772152,2459357.388818165,1146762.8548958537,976.25601,441.45456333645376,1005717.9080493352,447773.9042866461,1579.48982,682.6082547757038,1621969.405430223,689262.7290002265,0.38112,100000,0,1011457,10554.260492100924,0,0.0,0,0.0,38867,404.9815305632656,0,0.0,39791,411.4614854853184,1228503,0,44149,0,0,8846,0,0,72,0.7512991213974164,0,0.0,1,0.0104347100194085,0,0.0,0.05225,0.1370959277917716,0.3083253588516746,0.01611,0.3507545086492455,0.6492454913507545,23.72769722996682,4.203706826789128,0.3124246079613992,0.2579010856453558,0.2048250904704463,0.2248492159227985,11.06676435382244,5.739136177566815,17.43909570595258,11754.66571210892,47.697222465549096,13.052372182987025,14.804293270114323,9.513028201957958,10.327528810489795,0.5647768395657419,0.7885874649204865,0.7135135135135136,0.5477031802120141,0.1169527896995708,0.7154213036565977,0.9106753812636166,0.8436657681940701,0.6904761904761905,0.110091743119266,0.4991340491860062,0.6967213114754098,0.6612554112554112,0.5007824726134585,0.119047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0048554514860317,0.0072338051032313,0.0094872419957744,0.0115314215985356,0.0138159234371818,0.016308225461217,0.0186147141967812,0.0208269462668874,0.022951926815791,0.0250722350867845,0.0273798284142687,0.029463753519824,0.031408276714021,0.0335859757669502,0.0355877400493786,0.0376261189010193,0.0398233299810266,0.0420046741106206,0.0441407591669355,0.0582118196799966,0.0719513215122114,0.0857439315809332,0.0983734028244788,0.1107246376811594,0.1271668357855572,0.1391748751497672,0.1495424558416684,0.1603746382306139,0.1698382237850702,0.181721263810816,0.1929697389347499,0.2037840482792366,0.2129896817068905,0.2218799507129026,0.2310802428109353,0.2394399222858674,0.2480914311451413,0.2563654121334635,0.2630148298523896,0.2688285489032138,0.2744479495268139,0.2801642788467245,0.285033033033033,0.2898499580174501,0.2938258809594314,0.2980294331486449,0.3022713368002447,0.3059217355200332,0.3092099173553719,0.3074423621410274,0.3047482490486957,0.3020759779692133,0.299930440831232,0.2977181048213036,0.2940896749551318,0.2908952574182095,0.2905953436443043,0.2915884981410103,0.2918120948785526,0.292846720790153,0.2937798476536291,0.29562493473948,0.2952236677954019,0.2959775625659219,0.2986299229006043,0.2998863959102528,0.3047219701473855,0.3104553530989792,0.3146624680181066,0.3177113933203778,0.3203796467176377,0.3224190822012145,0.3233487525593387,0.3253315897627498,0.3266248372203149,0.3356050280175677,0.3370944992947813,0.3416166029492081,0.3450269853508095,0.0,1.9778956262185683,55.30366024064205,152.61166726513255,210.62842490281625,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95756,46946,446.05037804419567,5246,53.67809850035507,4135,42.691841764484735,1538,15.706587576757592,77.35098256499538,79.70008928815673,63.33757887846742,65.07129279864756,77.15765827296259,79.50848633459003,63.26419753410829,65.00107682789218,0.1933242920327842,191.6029535667008,0.0733813443591344,70.21597075538466,222.55904,156.01087526419343,232423.07531642923,162925.43053614753,451.21838,298.20297338358546,470737.5412506788,310940.3414758191,438.45696,212.8550992536748,455272.557333222,220203.6467848548,2349.89308,1097.839677019541,2427528.885918376,1119983.245978886,973.77799,440.38094834876455,1003872.3317598896,446834.609161581,1497.61212,637.3018676685383,1531689.2309620285,637566.24041931,0.38006,100000,0,1011632,10564.685241655876,0,0.0,0,0.0,38797,404.6639375078324,0,0.0,39700,412.0055140147876,1233726,0,44186,0,0,8751,0,0,84,0.8772296252976315,0,0.0,1,0.0104432098249718,0,0.0,0.05246,0.1380308372362258,0.2931757529546321,0.01538,0.351213282247765,0.648786717752235,23.79971901581892,4.17550148527061,0.3090689238210399,0.2706166868198307,0.218863361547763,0.2014510278113664,11.238363454501153,6.032747752212038,16.33014867900078,11705.42846074603,47.130506591724846,13.700385455014011,14.513452586734244,9.89651802676934,9.02015052320726,0.5857315598548972,0.8096514745308311,0.701095461658842,0.5657458563535912,0.1296518607442977,0.752129471890971,0.9347826086956522,0.858433734939759,0.6714285714285714,0.1569767441860465,0.5197568389057751,0.7223065250379362,0.645877378435518,0.5338129496402878,0.1225416036308623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023087906190191,0.0047840585439028,0.0070114557649183,0.0095880393272121,0.0119165031367245,0.0139161771742118,0.0162587537333972,0.018574650704714,0.020768814072098,0.0231094372063985,0.0251758000697049,0.0272736604393348,0.0293322366730067,0.0314179796107506,0.0332287948501041,0.0352665143825776,0.037514884804556,0.0396185495335636,0.0414518007152956,0.0432440879258256,0.057593535994655,0.0714621975331889,0.0844368951380369,0.0969573354080366,0.109159717903037,0.1245348837209302,0.1364576373643855,0.1475320860736862,0.1574915869878745,0.167396155166495,0.1787687833252544,0.189981925037611,0.2015358844388365,0.2109945180597651,0.2190334654337296,0.2287741077366437,0.2379792925513497,0.2461439805595869,0.2549535849656142,0.2615024873340822,0.267495284056059,0.2728666206428513,0.2780143353913846,0.2829671316529965,0.2877092938607134,0.2926160129914866,0.2969113126921058,0.3008561774345164,0.3054804620299828,0.3097291452382836,0.308251447031902,0.3059278421443707,0.3041463620743078,0.3013122525074428,0.2984159503555575,0.2958216077327786,0.2924434324747403,0.2922393151179191,0.2923402223586385,0.293312691294754,0.2940385728421799,0.2959450685659197,0.2974208088143232,0.2980636545737814,0.2999545704516653,0.3017731509125366,0.3020370003116412,0.3055712050078247,0.3105812739296902,0.3153209925167389,0.3177849160747409,0.3245553855084701,0.3270648506809946,0.327532956685499,0.3260182257764553,0.3314500941619586,0.3380368098159509,0.3466023321270607,0.3479212253829322,0.347016343595591,0.0,1.9334950147207357,51.32796313698603,153.46418875514024,219.2799497189901,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95849,46847,444.6264436770337,5311,54.34589823576668,4186,43.161639662385625,1580,16.15040323842711,77.51248185563044,79.79949411317047,63.42745123530996,65.1113192990997,77.3140942585215,79.60228449467746,63.35357065982902,65.03999388215844,0.1983875971089475,197.2096184930052,0.0738805754809419,71.3254169412636,223.42628,156.47623089960746,233102.3589187159,163252.85699340363,451.67714,298.5752827402813,470722.0419618358,310989.69497885363,441.00274,214.5866182121605,456949.8481987292,221444.4891434132,2383.87108,1114.4441613269546,2458072.259491492,1133669.3771734235,961.04869,433.0594759655039,989638.8903379274,438783.6763716918,1532.21906,649.9005862972241,1566037.8303373014,650795.8096888432,0.38028,100000,0,1015574,10595.56176903254,0,0.0,0,0.0,38806,404.3234671201577,0,0.0,39952,413.68193721374246,1236599,0,44312,0,0,8761,0,0,77,0.8033469311103923,0,0.0,1,0.0104330770274076,0,0.0,0.05311,0.1396602503418533,0.2974957635096968,0.0158,0.3532706902782797,0.6467293097217203,23.9467944687486,4.137604762156373,0.3184424271380793,0.2699474438604873,0.2092689918776875,0.2023411371237458,11.422608950244404,6.067056030125565,16.865616683055023,11681.75505907317,47.5866239292037,13.715516294909929,15.06100861283636,9.724110373374552,9.085988648082864,0.5719063545150501,0.784070796460177,0.6796699174793699,0.5742009132420092,0.1168831168831168,0.756578947368421,0.8980891719745223,0.865546218487395,0.7559808612440191,0.1675977653631284,0.4962962962962963,0.7025796661608498,0.6116803278688525,0.5172413793103449,0.1032934131736526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021148280816789,0.0045573773812296,0.006598485693145,0.0089090927540055,0.0111745464150023,0.0136682599410149,0.016116552299892,0.0181718061674008,0.020524235957236,0.0228857756416811,0.0251702421790998,0.0269308474089571,0.0288729282903321,0.031049955745837,0.033009968969392,0.0351893739865109,0.037271579644461,0.0392921198046798,0.0413541645025242,0.0432243355507667,0.0576616225348587,0.0713523913088939,0.0845409868703697,0.0970906417393131,0.1090520463710738,0.1245682780764477,0.1367316659601526,0.1469596929390875,0.1578936136157498,0.1676928183657954,0.1795867022191639,0.1917664719159368,0.2029460612442061,0.2124024237130847,0.2212435062438906,0.2306909782500525,0.2388824525443365,0.2468635225141239,0.2536434564993375,0.2607751725398784,0.2670387711326891,0.2737320211960636,0.2795520188623637,0.2847542999009322,0.2889770637762508,0.2928230369833924,0.2964158018662248,0.3004175629507782,0.3040303888745815,0.3076025538497843,0.3055518376743315,0.3026905829596412,0.3000251734168718,0.2969207789969552,0.2946735775779323,0.2922612973483406,0.2897707564721092,0.2896916817803049,0.2909106354060482,0.2905753580439958,0.2924318982715865,0.2926555894209026,0.2937536461371781,0.2959946743592588,0.2978687978687979,0.30075439635418,0.3031420688101807,0.3076899234417134,0.3130356649156759,0.3158201757797308,0.3183517265930936,0.3215025906735751,0.3251567687200295,0.3265867996130664,0.3296299696997521,0.3342932841838498,0.3339277753009362,0.331770222743259,0.3289649638940893,0.3248337028824833,0.0,1.9786642177846971,53.07127269223109,155.88556435096694,214.3918481710056,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95741,46843,444.8042113619034,5235,53.52983570257257,4162,42.92831702196551,1572,16.06417313376714,77.31288813594676,79.67088042826346,63.318020272784125,65.06168693692116,77.11728220379584,79.47952983732311,63.24504016378618,64.99292960616278,0.1956059321509258,191.35059094034543,0.072980108997946,68.75733075838752,222.08054,155.6058988033463,231959.7037841677,162527.96482525385,448.67467,296.82578134273166,467952.91463427374,309349.0890451652,438.6014,213.01918560641224,454957.155241746,220052.03252996923,2378.19352,1114.128193000971,2454486.458257173,1134189.6919825072,950.54293,433.2533710223372,978614.9507525512,438313.9731382968,1530.95986,646.327841046121,1565915.396747475,646175.7686332207,0.37986,100000,0,1009457,10543.62289928035,0,0.0,0,0.0,38517,401.7296664960675,0,0.0,39844,412.9683207821101,1236495,0,44374,0,0,8779,0,0,72,0.7311392193522106,0,0.0,0,0.0,0,0.0,0.05235,0.1378139314484283,0.3002865329512894,0.01572,0.3494967978042086,0.6505032021957914,23.93418329071626,4.0951931741839065,0.3080249879865449,0.2784718885151369,0.2059106198942815,0.2075925036040365,11.22108083620464,6.086117952994322,16.935110313585476,11783.607215949343,47.86711642039146,14.178057053738916,14.637485802868536,9.440944528566687,9.610629035217324,0.5792888034598751,0.7842968075927523,0.7098283931357254,0.5857642940490082,0.1041666666666666,0.7424366312346689,0.8983050847457628,0.8818443804034583,0.7164179104477612,0.167487684729064,0.5113984348417829,0.7059679767103348,0.6459893048128342,0.5457317073170732,0.0847201210287443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0048246992164931,0.0072342454773283,0.0096087433470117,0.0118591145330092,0.0144399185336048,0.0166717650657693,0.0189074128901185,0.0207843457991698,0.022752173334289,0.0250997118864771,0.0271294347178723,0.0290333528740242,0.0313227447829759,0.0333749445470395,0.0354396626565794,0.037463499492617,0.0395949198970698,0.0415748097000956,0.0435937776759015,0.0580484851015848,0.0725743164767555,0.0858257477243173,0.0986267953651715,0.1109470887197115,0.1263790313197448,0.1386233168153988,0.1496024438791259,0.1592608417004913,0.1693294160536982,0.181211377387335,0.1925430913298298,0.203828718651143,0.2137686705884925,0.2229616755401064,0.2325138427464008,0.24144240639086,0.2497244528420721,0.2576565940926737,0.2640971307485253,0.2697479575068854,0.2747615039281706,0.2808874487032416,0.2865170558704065,0.2912780530457592,0.2956858107275729,0.2992678806082222,0.3029019787374739,0.3056796261053067,0.3094065614892072,0.3068952042150085,0.3047109325555158,0.3017006946499274,0.2998886623577553,0.2969953889632604,0.2950025301703648,0.2919441801458928,0.2913605811106181,0.292443152675671,0.2949210719201959,0.2957564402810304,0.2969649036085022,0.2971096331618354,0.2968687274187073,0.297896354641948,0.298795243423278,0.3017638691322902,0.3076512008047278,0.3113363021143799,0.3150875243123089,0.3183140856597253,0.3230777349728218,0.324771441010013,0.3282500377472444,0.3315268174173051,0.3363486842105263,0.3374636683493957,0.3401168647995164,0.3486187845303867,0.3496057078482914,0.0,2.1106884276766453,53.690306835631965,157.0441793871516,213.37462436629917,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95780,46707,443.71476299853833,5258,53.5602422217582,4160,42.84819377740656,1628,16.673627062017122,77.37208356525132,79.71217478004537,63.35007434272507,65.07999423653516,77.16406443537899,79.50575363789622,63.27130762082792,65.00420250376868,0.2080191298723264,206.42114214915352,0.0787667218971535,75.79173276647566,222.08318,155.51309909707928,231868.0100229693,162364.89778354487,451.30652,298.3511645185523,470582.6372937983,310888.17552573845,434.35447,211.1074786019572,450051.60785132594,217697.0558451931,2385.82824,1121.6234017413835,2458854.040509501,1138949.2187736311,963.61282,439.9509505308326,993166.8928795157,446444.4519045796,1587.84798,679.5995488807614,1626625.3915222385,681624.5897533889,0.3803,100000,0,1009469,10539.45500104406,0,0.0,0,0.0,38690,403.30966798914176,0,0.0,39373,407.59031112967216,1240004,0,44524,0,0,8645,0,0,95,0.9918563374399666,0,0.0,0,0.0,0,0.0,0.05258,0.1382592689981593,0.309623430962343,0.01628,0.3478102852989279,0.6521897147010721,23.688957688469813,4.194305371481227,0.3108173076923077,0.2670673076923077,0.2088942307692307,0.2132211538461538,11.518806432666784,6.254979340528991,17.347159326404036,11694.307356778794,47.28186530267948,13.437284427438954,14.42278174150812,9.74657964917246,9.67521948455994,0.5742788461538462,0.7875787578757876,0.6759474091260634,0.619102416570771,0.1149943630214205,0.7344013490725126,0.9137529137529138,0.8333333333333334,0.7627118644067796,0.1472081218274111,0.5104236718224613,0.7082111436950147,0.6233230134158927,0.5655608214849921,0.1057971014492753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410007090043,0.0049470824378573,0.007265937366808,0.0096402921546916,0.0119393877758568,0.0138662648639843,0.0159006818946274,0.0183582668326632,0.0205914813603662,0.0228431071538225,0.0245847039895061,0.0266117941665469,0.0287097570001233,0.0307766760366148,0.0328754692076063,0.0348098323052602,0.0369534614110632,0.0391168631843117,0.0414488928604827,0.043155505580543,0.0572287270678104,0.0710064741504638,0.0848585864939094,0.0970989061794034,0.1088367291038958,0.1235975236123143,0.1354295827637003,0.1458528285835814,0.1562946838252555,0.1660774356666881,0.1779178724731853,0.1903150840404258,0.2007824811172091,0.210650602936514,0.2197388827172036,0.2301967038809144,0.2395269704914375,0.2475238619883304,0.2556228177572212,0.2625137387799963,0.2687859934778083,0.2748047879552999,0.2807612743069921,0.2857724307176632,0.2902932291603479,0.2941625333842045,0.2978970939614946,0.3014574147723663,0.3055411904638775,0.3094497733740908,0.3072097365699009,0.3037632564584505,0.3016188063063063,0.2999667874832132,0.2976658604264664,0.295221347197798,0.2920584749111023,0.2923013923013923,0.2928461669796824,0.2928650343918172,0.2939385448771831,0.2951465490072487,0.2960295591182365,0.2969928995926725,0.2978203592814371,0.2982323888744476,0.3002191796419117,0.3031949985862838,0.3063996639126173,0.3111551416683178,0.3132486388384755,0.3163653663177925,0.3183469004383218,0.3207332777819862,0.3216056891550481,0.3196239717978848,0.3195517189156444,0.327372764786795,0.3319881624966371,0.3290902283788843,0.0,2.1877367534613024,51.38627708410323,153.0863388432662,220.49965083746244,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95643,47220,450.289095908744,5219,53.38602929644616,4109,42.34497035852075,1551,15.819244482084418,77.25911226955019,79.65475320957468,63.27736057920528,65.04545812680769,77.06090712830198,79.4608422069952,63.20338447207392,64.97580363241839,0.1982051412482093,193.91100257948324,0.073976107131358,69.65449438929738,221.02718,154.89407425867117,231096.03421055383,161950.2464986159,450.22494,298.2477085389892,470122.016247922,311221.4888062787,440.9849,214.773572793044,456843.5118095417,221348.21225407865,2327.92784,1084.9767815663895,2401223.71736562,1101650.2426381318,954.75516,428.383050568059,984223.7905544578,433898.67709830287,1506.56448,631.1558978948048,1538770.7830160074,629221.1981125686,0.3821,100000,0,1004669,10504.36519138881,0,0.0,0,0.0,38658,403.55279529082105,0,0.0,39920,413.2032663132691,1234364,0,44287,0,0,8615,0,0,74,0.7737105695137124,0,0.0,0,0.0,0,0.0,0.05219,0.1365872808165401,0.2971833684613911,0.01551,0.3574319352465048,0.6425680647534953,23.686910948374315,4.138825312061875,0.3173521538087125,0.2677050377220735,0.2141640301776588,0.2007787782915551,11.482615793954434,6.306055335648501,16.357971976876236,11798.289222322644,46.92916883929616,13.558936678071468,14.568489009791058,9.84766962809168,8.954073523341949,0.5840837186663421,0.8009090909090909,0.691717791411043,0.5761363636363637,0.1333333333333333,0.7628424657534246,0.9242761692650334,0.8858858858858859,0.7211538461538461,0.1741573033707865,0.5130907854471268,0.7158218125960062,0.6251287332646756,0.53125,0.1221020092735703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027855717512636,0.0051105770693274,0.0071453220469723,0.0095208096244513,0.0113637519711073,0.0133522090725765,0.0156412504843281,0.0175485161856733,0.0196685783216282,0.0216082871005384,0.02391937335958,0.0260807064380326,0.0280489184657951,0.0300707729393948,0.0319814241486068,0.033966126930951,0.036227079664353,0.0382926601409634,0.0404002579625122,0.0425449844665457,0.0571422599826524,0.0713380466090599,0.0855288719009566,0.0980540813747788,0.1101219705369871,0.1254090807994153,0.1375310687655344,0.1492791765671117,0.1598297544700145,0.1699438353075097,0.182494822229893,0.1943460217360682,0.2050516822602956,0.214694217411311,0.2236667989943099,0.2333566534519328,0.2424428881480321,0.2505497975617183,0.2583242358078602,0.2652275808193369,0.271801296998805,0.277976476658419,0.2829129991221618,0.2878297974637899,0.2925325110604638,0.2975537435137139,0.3015556391920712,0.305302344556778,0.3086520628250522,0.3122571949575835,0.3101821270170803,0.3078259191353855,0.3049416018190292,0.30225509390182,0.3000461976364693,0.2972305331799003,0.2944635526461777,0.2929714454703775,0.292945362482466,0.2934757371720455,0.293903923588351,0.294093268338892,0.2949334783700109,0.2957326569661371,0.2964337003350885,0.2977807736181686,0.297031666005778,0.302562818787746,0.303884207950215,0.3091520063253607,0.3134396148430758,0.3183068783068783,0.3219711236660389,0.3267341695632462,0.3330236878773804,0.3340025983229007,0.3384662296081719,0.3465186680121089,0.3509308141150319,0.3519095869056898,0.0,2.407120531252464,50.80450611972984,152.01106110011435,218.518293231938,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95612,46825,445.4252604275614,5233,53.45563318411915,4189,43.18495586328076,1668,16.985315650755137,77.28554750318864,79.71735546732342,63.27381344368565,65.07187451612135,77.07000187142837,79.50728621212623,63.19184466837602,64.99540830973089,0.2155456317602642,210.0692551971832,0.0819687753096261,76.46620639046375,221.58488,155.17894951240925,231753.7965945697,162300.2907165743,451.08128,298.6618722802101,471131.9290465632,311718.5064738558,440.79545,214.9204471825507,457241.3818349161,221882.52405236283,2396.08864,1134.357339955625,2470500.3556039,1150959.3625356916,1002.27726,461.9685087132032,1027220.1606492908,462359.2879762799,1619.72346,694.7069578606072,1649890.3275739446,686892.5367209523,0.38128,100000,0,1007204,10534.263481571352,0,0.0,0,0.0,38780,404.91779274568046,0,0.0,40035,415.0420449315986,1232768,0,44255,0,0,8698,0,0,73,0.7635024892272937,0,0.0,0,0.0,0,0.0,0.05233,0.1372482165337809,0.3187464169692337,0.01668,0.3687671232876712,0.6312328767123287,23.516492768130185,4.139094174926321,0.3036524230126521,0.272857483886369,0.2122224874671759,0.2112676056338028,11.694196935832744,6.478049153437001,17.78175572921239,11779.471928295168,48.05627445183111,13.90530227405377,14.464131828579424,10.022253867700805,9.664586481497109,0.5808068751492003,0.7935258092738408,0.7083333333333334,0.5815523059617548,0.1220338983050847,0.7539432176656151,0.9266247379454928,0.868421052631579,0.7368421052631579,0.1732673267326732,0.5056487504279357,0.6981981981981982,0.6494623655913978,0.5218068535825545,0.1068814055636896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025942440210782,0.0047469798861942,0.0069751858018925,0.0089647812166488,0.0111402759125869,0.0134360134054538,0.0157705215697075,0.0180716737495913,0.0204048235161755,0.0226949192466433,0.0249687121725036,0.0273116799046454,0.0292119565217391,0.0313463144114706,0.0334854617545019,0.0355096299054593,0.0374626927541038,0.0394130109670987,0.0412190856857357,0.0433104541756201,0.058146463854477,0.0728890472547396,0.0862487520361515,0.0990422404619161,0.1111216750121484,0.126640468599392,0.1381611809592637,0.1494232040429025,0.1598227758692651,0.1681567127291483,0.1805575040739022,0.1912099590101715,0.202103656875034,0.2122457478520077,0.2222369248073042,0.2318776226105104,0.24044674999441,0.2494702434625789,0.257677357761462,0.2647075684786223,0.2707573283300325,0.2761253454494355,0.2813926196375016,0.2860658591339632,0.2908736918958384,0.2959055234710499,0.2992123026060386,0.3024170954103204,0.3066772098570188,0.3108373929000488,0.3081552692167871,0.3059451135676181,0.3024625267665953,0.3007499241406216,0.298836069954571,0.2952595452595453,0.2923669079562194,0.292234668068193,0.2930955022616711,0.2941018814658638,0.2945557988508974,0.2947542728724348,0.2953327752197572,0.2956948472005353,0.2981905332534452,0.3001762388554841,0.3035911055858503,0.307123236359096,0.3110463097965701,0.3160650316891705,0.3213156230234029,0.3227047538737219,0.3275764970902947,0.332855634333987,0.3360937936168233,0.3407788562741199,0.341910095353413,0.3450901803607214,0.3429573664328116,0.3459821428571428,0.0,2.358662778664144,55.172251799354825,153.63261085975913,213.08735740380425,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95809,46920,445.9184419000303,5279,53.98240248828398,4137,42.5951632936363,1581,16.031896794664384,77.35864855579545,79.66310047216764,63.35358995694328,65.05404972498518,77.14972787555416,79.45993441433706,63.273721255614056,64.97937620615154,0.2089206802412917,203.16605783058608,0.079868701329218,74.67351883363449,221.98088,155.536685877321,231690.82236533103,162340.1675342638,450.42056,297.69053829301504,469506.0484923128,310097.6276838272,436.02772,212.16172889223284,451986.6505234373,218897.5534380736,2359.4216,1093.989753314661,2427736.350447244,1107148.6194740457,941.19105,421.4971161647643,967839.4931582628,425575.38247802993,1541.56676,665.5931385137817,1564688.995814589,657158.8621183601,0.38091,100000,0,1009004,10531.401016605956,0,0.0,0,0.0,38681,403.1040925174044,0,0.0,39555,409.7318623511361,1236922,0,44389,0,0,8831,0,0,69,0.7201828638228142,0,0.0,2,0.0208748656180525,0,0.0,0.05279,0.138589168044945,0.2994885394961167,0.01581,0.3388474822759498,0.6611525177240501,23.79514722162395,4.112634025066646,0.3130287648054145,0.2661348803480783,0.2131979695431472,0.2076383853033599,11.269854808596154,6.055759504381811,17.041381363414164,11758.725283094813,47.19500452457163,13.485705662914285,14.557958356558755,9.698701465427636,9.452639039670952,0.5617597292724196,0.782016348773842,0.6864864864864865,0.5612244897959183,0.0919674039580908,0.7235142118863049,0.9101382488479264,0.8526011560693642,0.6494845360824743,0.1283422459893048,0.4986559139784946,0.6986506746626686,0.6259220231822972,0.5363372093023255,0.0818452380952381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022468271157622,0.0047503772954248,0.0070054847572411,0.0092341725268146,0.0114705464003413,0.0136615635013478,0.0159006641404881,0.0181367498699417,0.0203808511942463,0.0225761574500296,0.0249918059652572,0.0271298746589533,0.0291159397955514,0.0310258600286075,0.033138120179816,0.03508500134267,0.0373328918505028,0.0392490229211805,0.0411949228244385,0.0429550044766485,0.0576415478190107,0.0720364678083767,0.0850392545307799,0.097921133392189,0.1103487526480538,0.1248982783948595,0.1368638676844783,0.1476185916871456,0.1591142051763902,0.1682786129398897,0.1804720983825461,0.1922356989061164,0.2032217013454573,0.2129547568247716,0.2218037661050545,0.2317251624060483,0.2406452333110069,0.2496511994239164,0.2575238311393554,0.2646664604598412,0.2702615135385327,0.2760626345847767,0.282107132287659,0.2868925172025222,0.2909712007196781,0.2960446822676497,0.3006993881917249,0.3040835272722648,0.3074284086789912,0.3097389492012821,0.3068571659200064,0.3046537837763545,0.3031679298077869,0.3005350215594941,0.2983150900299605,0.2951763968891809,0.2930186979405396,0.2931877070418839,0.2927095782823971,0.2941207996141272,0.2937792767472362,0.2952956511435004,0.2962947439014167,0.2969185800031238,0.2957523398128149,0.2961766009017696,0.2968046932847297,0.3032951829958495,0.3065432358510414,0.3089711542276713,0.3134294523032281,0.3150090032835504,0.3187061183550652,0.3236748041676173,0.3260080081944315,0.3308086693078536,0.3307645814445452,0.335679806918745,0.343015214384509,0.3483365949119373,0.0,2.2344827064834205,50.66006008833895,153.92785640406052,221.08881323949,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95866,46637,442.6804080695972,5281,54.01289299647424,4190,43.174848225648304,1604,16.314438904303923,77.41454581429173,79.70367079347842,63.37712166936033,65.06825263760383,77.20799836503647,79.50057115201867,63.29932518532056,64.99442901887717,0.2065474492552539,203.0996414597581,0.0777964840397729,73.82361872666365,223.608,156.6044726276824,233250.5789330941,163357.67908088624,451.35643,299.20065519068265,470313.5418187888,311596.400382495,441.03394,215.15377547501865,456985.6883566645,221980.75489488104,2408.04704,1133.6639662623013,2482808.044562201,1153470.1419296735,951.37358,431.2701934280349,978564.089458202,436032.4446915846,1561.38486,668.1657752903315,1590068.2619489706,663976.4777618845,0.37941,100000,0,1016400,10602.29904241337,0,0.0,0,0.0,38740,403.5737383431039,0,0.0,39972,413.9215154486471,1229730,0,44148,0,0,8788,0,0,87,0.907516742119208,0,0.0,2,0.0208624538418208,0,0.0,0.05281,0.1391897946812155,0.3037303540996023,0.01604,0.3579462989840348,0.6420537010159652,23.46728175374921,4.07085999489485,0.3114558472553699,0.269689737470167,0.2059665871121718,0.2128878281622911,11.306388510810557,6.1591526682108615,17.245771126712466,11694.18550156774,48.04373239415561,13.805603345367224,14.936376260500474,9.55211763128828,9.749635156999616,0.577326968973747,0.7876106194690266,0.7203065134099617,0.5573580533024334,0.1210762331838565,0.7565632458233891,0.9006085192697769,0.8810810810810811,0.7238095238095238,0.1576086956521739,0.5005114217524719,0.7001569858712716,0.6566844919786097,0.5038284839203675,0.1115819209039548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080427190362,0.0046198267564966,0.0066925580782218,0.0089639209794327,0.0108954162008334,0.0133497491834471,0.0156173594132029,0.0178403851646334,0.0198475933643866,0.0220010637427379,0.0244399602568961,0.0267314951583784,0.0291917552043731,0.0310853096179183,0.0331986143187066,0.0354162363148109,0.0372247972190034,0.0392666901569009,0.0411389777021135,0.0431359087977698,0.0571601359664671,0.0709082738512023,0.0849710861548776,0.0979115698400865,0.1095994271513415,0.1252785552093784,0.1367796610169491,0.1471801194702493,0.1574971995519283,0.1664435567645137,0.179331339687184,0.1912731361356166,0.2019341519069868,0.2122212144722607,0.2208313184156152,0.2303087307734867,0.2393684633053096,0.2487160757431027,0.2568687704815793,0.263890478697832,0.2700930797248078,0.275428731748945,0.2806849493265216,0.2847507577300444,0.2890044215538603,0.2941785252263907,0.297263821641707,0.3006117802678605,0.304398523029086,0.3072506994668215,0.3051107462927577,0.3022447043945621,0.3000844119302194,0.2982947167960296,0.2964094502202382,0.2939199511151848,0.2909291686385865,0.2912113081604607,0.2914942528735632,0.2916022394028259,0.2915781232524326,0.2926094998229113,0.2937290290311152,0.2951930338975521,0.296447695544081,0.2977099236641221,0.300420939627652,0.3052644671787058,0.3095395538231302,0.3118004099006779,0.3138419986495611,0.3155299055613851,0.3194349792453999,0.3228886899433005,0.3256007393715342,0.3286214953271028,0.3341393380686112,0.3415811707905854,0.3442845506380668,0.3476796407185629,0.0,2.1086175027925083,54.98238514913984,155.43263507003147,212.4149763305093,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95714,46914,447.5625300374031,5305,54.22404245982824,4207,43.40012955262553,1597,16.35079507700023,77.36002699221102,79.7318318972106,63.33690834044432,65.08834538133705,77.16300877357455,79.53535580237175,63.26321208895434,65.01680952728987,0.1970182186364724,196.4760948388431,0.0736962514899843,71.53585404718399,222.58456,155.90128209165235,232551.72702008064,162882.4227298539,451.78809,298.6665498471108,471478.3208308084,311500.11476598075,440.30988,214.70174920104637,456180.2035229957,221391.40955626767,2385.425,1117.317411088619,2463791.9217669307,1138899.4411356945,965.47296,436.5217708527832,994664.2392962368,442027.01888206793,1551.17172,652.2973532604768,1590505.8821071107,655997.5595313489,0.38057,100000,0,1011748,10570.533046367304,0,0.0,0,0.0,38893,405.7818083039054,0,0.0,39887,412.8967549156863,1233730,0,44278,0,0,8670,0,0,89,0.9298535219508118,0,0.0,0,0.0,0,0.0,0.05305,0.1393961689045379,0.3010367577756833,0.01597,0.3649701141097627,0.6350298858902372,23.280799569513384,4.10541447086389,0.3220822438792489,0.2766817209412883,0.1968148324221535,0.2044212027573092,11.441666691364098,6.181882990282905,16.976530406738945,11676.773106277164,48.08921355075867,14.213092150834386,15.463232292239676,9.113385026919808,9.299504080764804,0.5866413120988828,0.820446735395189,0.6863468634686347,0.5797101449275363,0.1197674418604651,0.7722852512155591,0.9320987654320988,0.8396946564885496,0.7754010695187166,0.1488095238095238,0.5095862764883956,0.7404129793510325,0.6237006237006237,0.5226209048361935,0.1127167630057803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864773981829,0.0040345061784711,0.0063018174806937,0.0083910684898108,0.0107713902111558,0.0128813490285528,0.0151580020387359,0.0172487701320704,0.0191055456171735,0.0213354081778906,0.0236320575781498,0.0258821596870732,0.0277860617216663,0.0297977092946605,0.0318403648332146,0.0338492395810717,0.0361131254532269,0.0379980694780325,0.0398660384619384,0.0416888083106707,0.0561507936507936,0.0705083255711729,0.0837607913480399,0.0958015186891314,0.1084941962826689,0.1236006131402294,0.1349470691813225,0.1465664939183365,0.1574428092359613,0.1668043205440367,0.1790211899555086,0.1907271153429993,0.2018236949929899,0.2126243305279265,0.2223370682735339,0.2316397944720056,0.2400365855018794,0.2484175969959638,0.2564294377004771,0.2632880098887515,0.2692907924397433,0.274665825387923,0.27989075819018,0.2844268377336812,0.2888435819953641,0.2938997070480786,0.2980043015055269,0.3016705837515086,0.3050349849325521,0.3086221214557821,0.3065321224352506,0.3042527439275988,0.3025883811697735,0.3005535562011302,0.2984258984258984,0.2952783003716789,0.2926432497315054,0.2930679141585972,0.2931662637474888,0.2943529035354343,0.2945346017534042,0.295069716218608,0.2957022799134631,0.2966144966144966,0.2971972880061115,0.2977290970765685,0.2993565577255591,0.3028413896807744,0.3071243613968787,0.3123809523809523,0.3131685556921116,0.3163162633056188,0.3197572572572572,0.3192083994259385,0.3258249907304412,0.3247663551401869,0.3259593679458239,0.3288,0.3348773841961853,0.3403121431290445,0.0,2.1770411957794056,53.74257168201729,156.76530293154457,216.39282758851272,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95746,46962,446.1805192906231,5243,53.43304158920478,4190,43.13496125164498,1637,16.65865936958202,77.33346816806463,79.6949851151047,63.32120940122799,65.07005965746691,77.12457958666492,79.49251775563968,63.24179972384213,64.9964383096087,0.2088885813997052,202.46735946501812,0.0794096773858612,73.62134785820729,222.64022,155.98708843304354,232532.13711277756,162917.60327642254,453.77674,299.8558579544974,473321.5486808849,312561.9534544498,439.84739,214.074008141029,456087.9932320932,221015.8590535061,2403.94788,1115.5579650277768,2476806.258224887,1131173.1090883974,985.92895,441.932848170425,1015000.5953251312,446834.7170330081,1597.4923,678.7196886612311,1627401.2491383452,671635.590484229,0.3804,100000,0,1012001,10569.642596035344,0,0.0,0,0.0,38891,405.5417458692792,0,0.0,39836,412.7587575460072,1231961,0,44207,0,0,8770,0,0,89,0.9190984479769392,0,0.0,0,0.0,0,0.0,0.05243,0.1378286014721346,0.312225824909403,0.01637,0.3556370302474794,0.6443629697525206,23.810090546779257,4.196694992323336,0.3093078758949881,0.2632458233890214,0.2128878281622911,0.2145584725536992,11.11010225623928,5.837688699512353,17.396950076817184,11726.168071177346,47.75088546732536,13.470715545384907,14.651338361176467,9.866860798071729,9.76197076269225,0.5699284009546539,0.8077969174977334,0.6944444444444444,0.5650224215246636,0.1034482758620689,0.734468085106383,0.9013452914798208,0.8605341246290801,0.6886792452830188,0.1388888888888889,0.5058043117744611,0.7442922374429224,0.6360792492179353,0.5264705882352941,0.0945757997218358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330563858351,0.0047053096986168,0.0070032275744473,0.0096425450628949,0.0118996765728931,0.0143775010436925,0.0164845247318843,0.018431956890041,0.0206042271370753,0.0227549568546364,0.0250761202751606,0.0273086597197269,0.029513692502288,0.0318225352982976,0.0338502171737493,0.0358346253229974,0.0377848881157259,0.03978540371704,0.0416077518090326,0.0434021810455269,0.057898088507031,0.0717395855139208,0.0850954424774117,0.097419877357399,0.1092477745433067,0.1252115059221658,0.1372197404581772,0.1479786260192025,0.1578981102648193,0.1673227713001598,0.1797866609201594,0.1914898221996169,0.2015555313825737,0.211560971874282,0.2204020111559746,0.2298925683907409,0.2386598340980897,0.2477689875198343,0.2554360161605157,0.2629909901658863,0.2691573871717487,0.2744428594813273,0.2801263247539742,0.2852899609552782,0.2897344767773316,0.2942073733285769,0.2982837442853931,0.3026427745958371,0.3065834044423758,0.3095423319840192,0.3067894255101491,0.3043878448181119,0.3011827911621169,0.2989677326210929,0.2979247691713921,0.2946175637393767,0.291631726342104,0.2919557195571955,0.2920677179329647,0.2924432395798034,0.2938801450521515,0.2945466012337649,0.2947385989068302,0.2958985897921447,0.2970878909998081,0.2981117332986066,0.2986386840612592,0.3050278979374334,0.3084066299891369,0.3134434521457362,0.3151336656094246,0.3181049069373942,0.3220158152378561,0.3262373602980308,0.3277027027027027,0.3305539011316259,0.3382218148487626,0.3399877775514361,0.3426106317840245,0.3546153846153846,0.0,2.476472829610601,50.95544376824532,158.0765676189198,220.71264855339288,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95793,47371,449.8240998820373,5315,54.17932416773668,4172,42.9363314647208,1600,16.3059931310221,77.34149214859087,79.67981323341151,63.33904717832892,65.07209415592457,77.1346332914088,79.47759417969993,63.2602843231693,64.9977205995412,0.2068588571820697,202.2190537115733,0.0787628551596171,74.37355638337806,222.25698,155.78576972876414,232017.97626131345,162627.5090338168,454.00963,301.15557958729426,473326.5687471945,313759.5331467793,447.74189,218.28066991035857,463713.9143778773,224999.961479789,2393.08588,1130.0631109497956,2464039.4600858097,1145547.7445635858,960.09343,431.9561073609792,984762.8949923272,433431.0412670846,1554.97416,665.5189424988786,1586127.316192206,662509.8410274992,0.38241,100000,0,1010259,10546.27164824152,0,0.0,0,0.0,38933,405.78121574645326,0,0.0,40541,419.4669756662804,1233349,0,44188,0,0,8753,0,0,74,0.7724990343762069,0,0.0,0,0.0,0,0.0,0.05315,0.1389869511780549,0.3010348071495766,0.016,0.3589420654911839,0.6410579345088161,23.73035907913256,4.154947092303117,0.324784276126558,0.2634228187919463,0.2042186001917545,0.2075743048897411,11.39489862922754,6.189555484690998,17.10765415329882,11839.027869081694,47.8167128212049,13.5163211577914,15.402485935558833,9.42355895416081,9.474346773693853,0.5848513902205177,0.8034576888080073,0.7143911439114391,0.57981220657277,0.1096997690531177,0.7570621468926554,0.9162995594713657,0.8564231738035264,0.7635467980295566,0.1459459459459459,0.5121036481418343,0.724031007751938,0.6555323590814196,0.522342064714946,0.0998531571218795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025628817731495,0.0048863071885486,0.0073367497082551,0.0098260374751046,0.012209391056621,0.0145562335109146,0.0167774967362924,0.0188095456912661,0.0211671592036239,0.0233158234264123,0.0254590942181299,0.0272329588630342,0.0293966386208882,0.0314508818196802,0.0334619670642618,0.0354429594716115,0.0376287859176805,0.0398033174617993,0.0418229615852201,0.0436710771505012,0.0588345766602326,0.0729208055375478,0.0860885512182342,0.0987084773904727,0.1114682573138858,0.1282227460597668,0.1403157236305037,0.1501409199680936,0.1605982002754027,0.1697771393656136,0.1828487151607798,0.1944576593720266,0.2044982886945184,0.2149625662604514,0.2244752092015702,0.2344448872946282,0.2431417137633905,0.2514596900965641,0.2597227570273392,0.2663800889457979,0.2723357579956125,0.2784179128871455,0.2836750369276218,0.2889005887139233,0.2930369615832363,0.296166432912576,0.2991868293840639,0.3028926091867948,0.3064137004701142,0.3084573187576463,0.3070690512341615,0.3050803240422902,0.303642016121091,0.3013710492134507,0.2993571948159914,0.2960759725960362,0.293019724458645,0.2926517152560169,0.2932147247643764,0.2936684923197687,0.2946617484599397,0.2950832625486439,0.2966296839020305,0.2976137277683439,0.2982489898018087,0.2991141219385096,0.3000743111924088,0.3029537197915021,0.3079335988439713,0.3133948456888323,0.3180859840498671,0.323149925357219,0.3259755866169123,0.3293918918918919,0.3280688481180253,0.3315081537912153,0.3324562761182479,0.3327190827190827,0.341029207232267,0.3449464012251148,0.0,2.3976829675232496,53.64390115924617,153.6145612622651,216.3217877178482,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95704,47001,447.316726573602,5251,53.7386107163755,4128,42.579202541168605,1612,16.415196856975676,77.3419109081298,79.71151355738914,63.33255108723839,65.0811755969531,77.14080178881255,79.51613211396266,63.25694514851976,65.01120233710714,0.2011091193172518,195.38144342648425,0.075605938718624,69.97325984596614,224.00554,156.90839544845343,234060.79160745637,163951.7631953246,453.731,299.95193872777867,473543.8435175124,312861.8853211763,437.75123,212.34632067266736,455084.2911477054,220012.4797574911,2371.79896,1106.430717252911,2445628.897433754,1123460.2913701744,929.73085,414.020325098637,957880.8095795368,419020.8613000877,1566.02612,660.772185634254,1594790.98052328,652728.7331576488,0.38115,100000,0,1018207,10639.126891248015,0,0.0,0,0.0,38937,406.263061105074,0,0.0,39706,412.4696982362284,1226656,0,44024,0,0,8632,0,0,76,0.7941151884978684,0,0.0,0,0.0,0,0.0,0.05251,0.1377672832218286,0.3069891449247762,0.01612,0.3593778591033851,0.6406221408966148,23.682651986358533,4.072747434961444,0.311531007751938,0.2718023255813953,0.2100290697674418,0.2066375968992248,11.19348402519786,6.010623574466013,17.237892754707904,11697.766577677136,47.21482271393473,13.678484939856649,14.717739097900584,9.583033935750144,9.235564740427357,0.5726744186046512,0.7878787878787878,0.6998444790046656,0.5547866205305652,0.1160609613130129,0.7624683009298394,0.917995444191344,0.903846153846154,0.6822429906542056,0.144578313253012,0.4964346349745331,0.7042459736456809,0.6193058568329718,0.5130168453292496,0.1091703056768559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023796986390149,0.0043985000506739,0.0066646378575776,0.0088770618347282,0.0110525887664212,0.0133481306508104,0.0154846733335372,0.0174634604392912,0.0197874080130825,0.0220150246658342,0.0243774923371843,0.0264817020577483,0.0286498771119772,0.0308562480038737,0.0327217567177116,0.0347643611027838,0.0367857993558342,0.0388235660394981,0.0407923468857231,0.0426984325496081,0.0571106283422459,0.0706927956786634,0.0835257082896117,0.0961983505848691,0.108866501397753,0.1243717396594961,0.1360472765081588,0.1471339749595434,0.1574145299145299,0.1671207895301437,0.1802350001615491,0.1916351044259279,0.2026408240066999,0.2118342936487978,0.2209991532599492,0.2305470081685962,0.2392012131213344,0.2472185385808365,0.2556839443455385,0.2623076483038727,0.2688878352279955,0.27500497116723,0.2813387279954571,0.2855448817765852,0.2897165618244966,0.2932107513895222,0.2977290367810911,0.3021833394794064,0.3060609197484537,0.3094146778357304,0.3065188732545938,0.3036827506659709,0.3024732103984383,0.3009810842349416,0.2987330517892865,0.2950391644908616,0.2915608286133506,0.291412950959209,0.2916283191873743,0.2926611882564751,0.2928703651764178,0.2943658916563135,0.2960443700293009,0.2970111245141402,0.2975178837198137,0.2988383273993606,0.300378066460104,0.304241512273112,0.3072069545709478,0.3106087646242316,0.3139070442992012,0.3179530645759389,0.3214420298957417,0.3251314085472689,0.3264346190028222,0.3301786348042115,0.3309440292816837,0.334833299243199,0.3351908609640568,0.3411268685320046,0.0,2.113309588039855,51.617158390443095,157.0598185093773,213.2653464559861,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95710,46680,443.7362866994045,5236,53.55762198307387,4128,42.57653327760945,1595,16.29923727928116,77.33810060160408,79.72099257768186,63.31256206328344,65.07500772252186,77.14486747373527,79.5308267559075,63.24038764483668,65.00640363402331,0.1932331278688082,190.16582177435737,0.0721744184467567,68.60408849854593,221.61106,155.2783596362759,231544.0810782572,162238.16344820382,448.18719,296.2549136793171,467711.4721554696,308969.4360874696,438.13486,213.380300926637,454590.9622818933,220425.5494470399,2355.08024,1109.308322314226,2431022.5890711527,1129436.633908918,979.68188,445.4496426442537,1008713.2379061749,450535.1610534466,1548.90928,653.0440638912096,1584336.7882143978,652396.5844738885,0.37973,100000,0,1007323,10524.730958102602,0,0.0,0,0.0,38531,401.99561174380943,0,0.0,39807,412.63190889144295,1238840,0,44434,0,0,8811,0,0,71,0.7418242607877965,0,0.0,0,0.0,0,0.0,0.05236,0.1378874463434545,0.3046218487394957,0.01595,0.3655992680695334,0.6344007319304666,23.48544684041796,4.088612754626096,0.3095930232558139,0.2698643410852713,0.2124515503875969,0.2080910852713178,11.24722072973714,6.077839886888613,16.99804566228077,11742.620384062957,47.44589585781595,13.715362495188629,14.611293432402617,9.737249510823876,9.381990419400829,0.5855135658914729,0.8078994614003591,0.6995305164319249,0.6020524515393386,0.1105937136204889,0.7676348547717843,0.925531914893617,0.8575418994413407,0.7959183673469388,0.149171270718232,0.5104344851180295,0.7220496894409938,0.6380434782608696,0.5462555066079295,0.1002949852507374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024933611724878,0.0047068370866301,0.0069953499705565,0.0092282049718478,0.0113450209094331,0.0133022336752258,0.0153805356669318,0.0176596157578109,0.0200030679552078,0.0220959402037577,0.0244260092904972,0.0265746616556794,0.0285840607873983,0.0308219883426358,0.0329595510486192,0.0352079199735449,0.037190809976911,0.0392169068442839,0.0411901692518817,0.0431267969498729,0.0582313379840427,0.0710883606025395,0.0844350709309158,0.096887851155355,0.1091296415426637,0.1244644727238107,0.1366419422956525,0.1480992439569801,0.1588868940754039,0.1685314910370426,0.1807526151923553,0.1927365230569387,0.2034151013212023,0.2121812194348106,0.2219422283356258,0.2308595871056393,0.2394809719492585,0.2483090808827666,0.2568807339449541,0.2633201535728611,0.2693149320952634,0.2757886112249078,0.2802580950689635,0.2856372654733664,0.2899754669775802,0.2945166621444957,0.2993625787384318,0.3035893909876873,0.3077680085980291,0.3101951991558955,0.3076323044852397,0.3059286038296059,0.3037281935846933,0.3006130544536603,0.2983684366656778,0.2958618791289454,0.2923174101855507,0.2928760757878202,0.2935454746776144,0.2933513667425968,0.2942659693686963,0.2957100387848719,0.2964161897999248,0.2979492557963091,0.2970292285577384,0.2986663909852166,0.2990112994350282,0.3031871764485748,0.3076040471471785,0.3109952160614854,0.3149856682192762,0.3191112038389317,0.3236219986420591,0.3265047675804529,0.332107054170882,0.3376411689370124,0.346865671641791,0.3507698381365969,0.3546573875802998,0.3531612420501309,0.0,2.158105033759986,52.55839950403089,158.80445416068042,209.6947846604621,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95644,46953,447.409142235791,5090,51.96353142904939,4003,41.20488478106311,1538,15.724980134666051,77.27782633283482,79.68754356964565,63.2892740309558,65.07173107234567,77.07785398876698,79.49037792099388,63.21353691841709,64.99948850949185,0.1999723440678451,197.16564865177588,0.0757371125387109,72.24256285381614,221.91312,155.41739116534612,232019.9071557024,162495.70403302467,448.96873,297.2223234831884,468760.3404290912,310102.81197272,437.97581,213.32588423320928,453130.5152440299,219426.5681067716,2270.97984,1073.6365388755428,2339124.4615448955,1087249.486507824,952.90758,433.6634608950629,979682.353310192,436789.8361581087,1498.48606,644.8106410993989,1532890.7824850488,644290.2870817919,0.37987,100000,0,1008696,10546.35941616829,0,0.0,0,0.0,38539,402.2625569821421,0,0.0,39637,409.6336414202668,1236179,0,44412,0,0,8802,0,0,84,0.87825686922337,0,0.0,0,0.0,0,0.0,0.0509,0.1339932082028062,0.3021611001964636,0.01538,0.3539823008849557,0.6460176991150443,23.415812632428263,4.142981524305925,0.3027729203097676,0.2745440919310517,0.2173369972520609,0.2053459905071196,11.433806739675171,6.239115164822054,16.648669297817904,11710.869103374782,46.02879638497827,13.488487602124325,13.688965092898863,9.704074671280193,9.147269018674889,0.577566824881339,0.8007279344858963,0.6864686468646864,0.593103448275862,0.1021897810218978,0.7392040643522438,0.9070796460176992,0.8492307692307692,0.7389380530973452,0.1123595505617977,0.5099220411055989,0.7264296754250387,0.6268320180383314,0.5419254658385093,0.0993788819875776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023508907038485,0.0045128184325815,0.0065478244980001,0.0089128733599601,0.0110483747901724,0.0133046729352797,0.0154614992350841,0.0178026085979552,0.0200998342914424,0.022157117833253,0.0243384615384615,0.026388503692747,0.0285852463908296,0.0304972945117237,0.0328002560422882,0.0351347158297564,0.0370658211058608,0.0388856585122731,0.0408740894901144,0.0426341636342783,0.0570753829756107,0.071259504409208,0.0848325810853364,0.0969449501699588,0.1094976783452933,0.1256642601570935,0.136908175619703,0.1483367784004944,0.1584486705029199,0.1679425374977184,0.1807894992079144,0.192331846333752,0.2029931972789115,0.2121440920928807,0.221517733306915,0.2317485291347656,0.2400531392337233,0.248722968563649,0.2558435074660736,0.2631837949187457,0.2693325934403865,0.2750081802458748,0.280977271114685,0.2853445796990319,0.2891744813177202,0.2939856484107218,0.2980736735383575,0.3020574874985685,0.306010858157223,0.3095018206765528,0.3062503369090615,0.3037257577637183,0.301546537224135,0.2981740313105883,0.2956994047619047,0.2933284266372264,0.2904156494721157,0.2910268635123138,0.2908388332250453,0.2914270405429541,0.2924194484488794,0.2929324852842413,0.293546700135969,0.2957768462361755,0.2975810898281111,0.2979374756777792,0.2984150428904164,0.3025616847399026,0.3069798563177912,0.3115425934030955,0.317070946562101,0.3216368069543093,0.3246214738958346,0.3289815238967781,0.3347142453629602,0.3405546958695393,0.3394199785177229,0.3430089942763696,0.3458771444382955,0.3532319391634981,0.0,2.532448249790133,51.00664911907501,152.13943816097557,203.9597818881934,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95826,46963,446.5072109865799,5371,54.88072130736961,4308,44.43470456869744,1623,16.5821384592908,77.39792083527668,79.70033739027211,63.37134666233783,65.07108073016829,77.18984559453632,79.49431787402207,63.29230052694831,64.99477614752182,0.2080752407403565,206.01951625003775,0.0790461353895182,76.30458264647189,223.18494,156.18070427275083,232906.45545050403,162983.6414676088,450.62311,297.98293774752887,469716.7261494793,310427.8356057114,437.93411,212.6772169295901,453601.8199653539,219337.85497340476,2472.52448,1159.047715579711,2552156.32500574,1181466.9876439702,1020.89793,460.4164340689656,1047642.2682779204,462754.5425558143,1581.94156,680.0244070742078,1617845.2612025964,682544.3432650887,0.38249,100000,0,1014477,10586.657065932002,0,0.0,0,0.0,38743,403.7421994030848,0,0.0,39777,411.7254189885835,1236015,0,44329,0,0,8711,0,0,77,0.7931041679711144,0,0.0,0,0.0,0,0.0,0.05371,0.1404219718162566,0.3021783652951033,0.01623,0.349609375,0.650390625,23.552758667001225,4.058789714013347,0.3119777158774373,0.2671773444753946,0.2086815227483751,0.2121634168987929,11.2358674343373,6.204313492569383,17.48984330522655,11796.38097279321,49.36481175959084,14.100230349287932,15.283367402353589,10.147368767437516,9.833845240511796,0.5875116063138347,0.8062554300608167,0.7180059523809523,0.5962180200222469,0.111597374179431,0.7445820433436533,0.9282700421940928,0.860655737704918,0.7250996015936255,0.1243781094527363,0.5202254641909815,0.7208271787296898,0.6646216768916156,0.5462962962962963,0.1079943899018232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689965173726,0.0044280517585546,0.0065520563923119,0.008793395814506,0.0110706733897202,0.0134232969001241,0.0159768498705956,0.0179954093343534,0.0199848785172773,0.0222524605594319,0.024178841464664,0.0262836624775583,0.0285919761647917,0.0307685975076407,0.0326420811774649,0.0348562283826338,0.0367354961516179,0.0388557806912991,0.0410155235969056,0.0428144740813204,0.0571091802355297,0.071013219544846,0.0843530139557317,0.0967429929140646,0.1086106397107651,0.1240789487594219,0.1363313433785403,0.1477227975689972,0.1585025801006399,0.1676910699919549,0.1799911684563107,0.1919112159136388,0.2033878034726073,0.2136890443909906,0.2231521296835993,0.233229631433854,0.2419964540193356,0.2509050028105677,0.2589699697316661,0.2656430557303525,0.2711972164745864,0.2776492851135408,0.2829204847768253,0.2885726936562833,0.2926223148911409,0.2967235696364441,0.3004395275079289,0.3046591341881426,0.3089950099542363,0.3124128128865843,0.3103096656469704,0.3070847787634888,0.3048777063266968,0.3032235771772463,0.3013309251336106,0.2984876665548678,0.2950328672541261,0.2952085036794767,0.295449901232886,0.2954080088314371,0.2963398473225451,0.2975196850393701,0.298641967582452,0.2988646755737961,0.300734729158663,0.3002105919975041,0.3005160664898925,0.304997796940895,0.3088559722659943,0.3133354425373724,0.3172084564673789,0.3216980129635532,0.3278347919158849,0.3278326996197718,0.3325498307634449,0.3375886524822695,0.3430267965895249,0.3402,0.3347708894878706,0.3412073490813648,0.0,1.9876245406625743,56.82852874537862,156.99142215806316,221.4483040721262,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95548,46896,446.2992422656675,5252,53.80541717252062,4151,42.805710218947546,1574,16.033825930422406,77.19945181010942,79.67010839051845,63.224607941291474,65.05358288613799,76.99824262666066,79.47426011623334,63.148612425386936,64.98276294129901,0.2012091834487677,195.84827428511176,0.0759955159045375,70.81994483897347,221.89948,155.4811396823631,232238.7491103948,162725.6872800719,449.71315,297.63824499407315,470029.0115962658,310868.27039192145,437.18437,212.4231261607992,453968.5917025997,219533.171541299,2377.38312,1112.7166283126398,2452671.997320718,1129181.3816484222,999.48974,446.7201267623563,1032391.865868464,453916.8419957168,1536.94616,656.9198761236063,1567112.17398585,651012.6851479516,0.38003,100000,0,1008634,10556.306777745216,0,0.0,0,0.0,38599,403.30514505798135,0,0.0,39695,411.89768493322725,1230052,0,44130,0,0,8773,0,0,75,0.7744798425922049,0,0.0,0,0.0,0,0.0,0.05252,0.1381996158198037,0.2996953541507997,0.01574,0.3518484793298124,0.6481515206701876,23.496786948212627,4.159473856042513,0.2977595760057817,0.2724644663936401,0.2134425439653095,0.2163334136352686,11.269854378041185,6.071428484051133,16.867395731387276,11783.673901637378,47.62382076147705,13.840589170352734,14.136889487075926,9.761931284642182,9.884410819406206,0.5764875933509997,0.7939876215738285,0.7022653721682848,0.5914221218961625,0.1146993318485523,0.7389491242702252,0.9112554112554112,0.8571428571428571,0.7552083333333334,0.1287128712871287,0.5105013550135501,0.7130044843049327,0.6427771556550952,0.5461095100864554,0.1106321839080459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021287163840204,0.0045555082080314,0.0067836542367373,0.0089169513583862,0.0111780754978213,0.0134355440477889,0.0158391590549573,0.0176885346413243,0.0200675399099467,0.0222896319904897,0.0246158268064095,0.0265595919920208,0.0286199794026776,0.0306887694577113,0.0328424533664031,0.0349878370684747,0.0372740378133394,0.039358949042269,0.0415416666666666,0.0435350002610012,0.0584130969192949,0.0720330540378988,0.0855478933647296,0.0987565858798735,0.1110582614578048,0.1268845020249782,0.1392795591395561,0.1509087610326684,0.1609063638311549,0.1695649835995053,0.1816110325165498,0.1930176782749302,0.2037483500059999,0.2136009652297905,0.2227507504856083,0.2321910580394335,0.2410482499328618,0.2485781990521327,0.2567761316310507,0.2627057323670277,0.2698458719426629,0.2757419763364955,0.2816254878005385,0.2855444545847543,0.2898799522731147,0.2940965745556063,0.2988765455344254,0.3026280555449294,0.3069326204318937,0.3109735940867679,0.3094508697823182,0.3067849859449925,0.304006428329762,0.3025518687197281,0.3001963818138538,0.2969238790406673,0.2934157356786308,0.293186227761518,0.2938074611789279,0.2943260507810403,0.2957259821227371,0.2971341487550963,0.2978459598613008,0.2975835890085772,0.2980942973474353,0.3001932518541731,0.3019616801347762,0.3054603753418629,0.3102091020910209,0.3147071617827342,0.3188713318284424,0.3220971813209928,0.3244084682440847,0.3269419491205556,0.3331167625765732,0.3311764705882353,0.3370465151287069,0.3381537242472266,0.3384823848238482,0.3382857142857143,0.0,2.4855705197190345,52.04434125392508,155.6863978657936,217.36138173610289,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95684,46753,444.7661050959408,5275,54.011119936457504,4152,42.83892813845575,1566,15.990134191714391,77.33990302576841,79.73048305233247,63.32261558699434,65.08891097812999,77.14294889489803,79.5368678188081,63.24804309244647,65.01831022510596,0.196954130870381,193.61523352436905,0.0745724945478656,70.60075302402424,222.43166,155.73991736631763,232464.84260691443,162764.8482152895,450.66731,297.7577971605506,470440.0840265875,310633.3108571449,435.05283,211.3073888947396,451227.7810292212,218159.9519112624,2368.07916,1106.4757857328314,2445924.29246269,1127414.0146031016,978.71596,434.788566660342,1008869.0167635132,440406.7938843914,1521.9997,643.3290137398728,1556494.293716818,642474.4566596182,0.38042,100000,0,1011053,10566.583754859746,0,0.0,0,0.0,38731,404.2055098031019,0,0.0,39453,408.8771372434263,1236422,0,44417,0,0,8880,0,0,79,0.825634379833619,0,0.0,1,0.0104510680991597,0,0.0,0.05275,0.1386625308869144,0.2968720379146919,0.01566,0.3487272727272727,0.6512727272727272,23.557582331837583,4.245944452706313,0.3234585741811175,0.2639691714836223,0.203757225433526,0.2088150289017341,11.493327444642896,6.160719764823659,16.639325379634673,11735.27116395856,47.45390075944521,13.392978438528353,15.345943990767465,9.423093885193156,9.291884444956231,0.5785163776493256,0.8166058394160584,0.6813104988830976,0.5650118203309693,0.1314878892733564,0.7726523887973641,0.945770065075922,0.8663101604278075,0.7209302325581395,0.1402439024390244,0.4982981620149762,0.7228346456692913,0.6099071207430341,0.5118858954041204,0.1294452347083926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044498504890781,0.0065854227760245,0.0088875797342867,0.0112565205454379,0.0136403428408558,0.0155542871121621,0.0176165591573446,0.0198622015047432,0.0217404655161825,0.0241119483315392,0.0261245355067851,0.0281036947155182,0.0301179378894782,0.0323769222830013,0.0345134207370031,0.0365516312512303,0.038696685662089,0.0407277947693652,0.0428033817381967,0.0576234003656307,0.0718204279911219,0.0852445600856117,0.0978329476120345,0.1100479983121472,0.1250105788761002,0.1368555060471037,0.1482092491086158,0.1595377698033812,0.1691379070041705,0.1813668475919703,0.192488720096082,0.2035276974270863,0.2133407679524184,0.222408100374202,0.2330150853952994,0.2415597456208858,0.2491618477600522,0.2571302157783677,0.2640709991411394,0.2702249465101486,0.2763679294907012,0.281277350680071,0.2862051625879986,0.2899883529069203,0.2944043721227936,0.2987451254874512,0.3023111032055599,0.306790538791988,0.3099033529791807,0.3078848223896663,0.3058983591237666,0.3033083320433981,0.3009747996245216,0.2985344993986548,0.2950200938221047,0.2907922371184487,0.2905586848310191,0.290589856576552,0.2911466666666666,0.2910539673061133,0.2924812474159825,0.2931340047121619,0.29486379241161,0.2958611097789075,0.2966858864474572,0.297452355931722,0.3017436026091319,0.3070138597228055,0.3107623141538825,0.3141836919182788,0.317340644276902,0.3215088683487384,0.3253566845323469,0.330518697225573,0.3312668148321441,0.334747046349591,0.3413306451612903,0.3427785419532325,0.3462414578587699,0.0,2.2127224536190564,52.88650701860784,153.9941621429614,214.86438708631687,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95785,46846,444.9757268883437,5118,52.20024012110456,4085,42.07339353761027,1574,16.098554053348646,77.331780499572,79.67269398160225,63.32970022966426,65.0626363695338,77.13276609972952,79.47639184499202,63.25459512349944,64.99133101242413,0.1990143998424827,196.30213661022825,0.0751051061648269,71.30535710967933,222.89828,156.1605921815556,232706.87477162396,163032.40818662173,451.0745,298.80582065782687,470369.9953019784,311400.76281028026,439.55078,214.5315529088275,454900.6838231456,221022.50801030188,2309.20752,1093.575046084282,2378901.706947852,1109775.5661995944,918.16672,417.6938085838981,943037.855614136,420541.7326135582,1523.77012,644.9104287133787,1559163.459831915,644573.600522751,0.37974,100000,0,1013174,10577.585216891996,0,0.0,0,0.0,38790,404.3848201701728,0,0.0,39810,411.6928537871274,1231161,0,44208,0,0,8820,0,0,82,0.8560839379861148,0,0.0,0,0.0,0,0.0,0.05118,0.1347764259756675,0.3075420085971082,0.01574,0.3487677371172517,0.6512322628827483,23.58090544975889,4.066255251830426,0.3258261933904529,0.2756425948592411,0.1975520195838433,0.2009791921664626,11.21839687620515,6.073235380281886,16.81265393451826,11688.939949444148,46.99134814784963,13.81409116918582,15.076316993576404,9.132573616928518,8.968366368158906,0.5755201958384333,0.8019538188277087,0.6972201352366642,0.5588599752168525,0.0840438489646772,0.7358642972536349,0.9123173277661796,0.8243243243243243,0.6863636363636364,0.1065088757396449,0.505795574288725,0.7202472952086554,0.6482830385015609,0.5110732538330494,0.0782208588957055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024816409217523,0.0046733709095332,0.0069205556739423,0.0091023609248648,0.0111568777015001,0.0134828256906893,0.0158234946269448,0.0181407979092653,0.0204248533049825,0.022613502584839,0.0246955345060893,0.0268602466296345,0.0291610541577123,0.0311601891243214,0.0332738175100368,0.0352217512664116,0.0373258764434778,0.039548198394424,0.0415151200249402,0.0433478763393275,0.0589812891982426,0.0727630285152409,0.0857295608692461,0.0982409314446639,0.1098256150887729,0.1243870995012258,0.1368294983624974,0.1481316063718922,0.1586036136991856,0.1675291697470348,0.1798904209857805,0.1904210788184266,0.2021423522375074,0.2117172291607428,0.2208918431130871,0.2297559300251493,0.2383720281592717,0.2463505701882633,0.253758929583853,0.2608745421245421,0.2675097388711001,0.2736812583261271,0.2790741682534801,0.2825995807127882,0.2870203982515784,0.29164612502465,0.2966129274520603,0.3004661351537227,0.3038953970557744,0.3080324147397318,0.3061913797047623,0.3043060097276799,0.3021031159879018,0.2996591664018948,0.2976335401882479,0.2944868870278794,0.2912755077809615,0.2912052758501894,0.2919135855178891,0.292256156231068,0.2932405380628987,0.2943367960418679,0.2950991270123725,0.295813330356146,0.2966221901670874,0.2988284300963291,0.2978058208276489,0.3017551543972718,0.3077325338167619,0.3119889393640134,0.3168096599936447,0.3195055965200785,0.3247474747474747,0.3269172245891661,0.326924880427647,0.3297118564005668,0.3287964520568894,0.3319951826575672,0.3350756533700137,0.3461538461538461,0.0,2.225528217807766,53.80456468726591,151.83774598580325,207.1308785486087,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95681,46896,445.34442574805865,5256,53.82468828712074,4156,42.78801433931502,1616,16.53410813014078,77.34192318165195,79.71657902082443,63.32298576779221,65.0748817445983,77.13438290711561,79.51243297074063,63.24553167050114,65.00122406413621,0.2075402745363419,204.14605008379283,0.0774540972910671,73.65768046209098,221.892,155.44634596911894,231908.1113282679,162463.12848853893,449.55994,297.36362535943925,469210.1566664228,310143.76455036976,434.45921,211.7232136582506,449312.87298418704,217684.646024041,2377.593,1112.255127711877,2452213.333890741,1129758.6435257546,981.43545,441.8621271255528,1008494.392826162,444564.957646296,1571.33414,667.1664249837605,1609995.0878439816,670301.6007610243,0.38075,100000,0,1008600,10541.277787648542,0,0.0,0,0.0,38553,402.2742237225781,0,0.0,39370,406.778775305442,1236754,0,44349,0,0,8761,0,0,90,0.9406256205516248,0,0.0,0,0.0,0,0.0,0.05256,0.138043335521996,0.3074581430745814,0.01616,0.3431533006001091,0.6568466993998909,23.8182412496737,4.071867766626132,0.3010105871029836,0.2678055822906641,0.2201636188642926,0.2110202117420596,11.195198353094966,6.081523393307279,17.339911583403836,11788.920044799044,47.52023409695073,13.526889851735362,14.272023721656078,10.140296633941194,9.581023889618091,0.5697786333012512,0.7753818508535489,0.6954436450839329,0.5890710382513661,0.1094640820980615,0.7450980392156863,0.8950892857142857,0.8524590163934426,0.7268722466960352,0.1857923497267759,0.4965893587994543,0.6947368421052632,0.6305084745762712,0.5436046511627907,0.0893371757925072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024604355882263,0.0045509370470601,0.0068880164744311,0.0088873991915005,0.0111559700202373,0.0134084013764737,0.0158228493362967,0.0179918924162437,0.0204100414131601,0.0226286041939711,0.0247008520717339,0.0267614167325604,0.0289643397138537,0.0311688579318303,0.0335070967741935,0.035770054084239,0.0379543594683903,0.0399314926302678,0.0418165935231598,0.0438601975740902,0.058580203066895,0.0715901237670415,0.084933088428234,0.0981512463566821,0.1100829341380547,0.1257936843887572,0.1376700039282719,0.1484992437637134,0.1595019238991021,0.1696665271382726,0.1814055778954063,0.1934722342545265,0.2045516385681167,0.214081733136386,0.2230819181368934,0.2321531439712855,0.2405590346382684,0.2483200324174649,0.2557422047797829,0.2631066626966858,0.2704428710259614,0.2755877880453854,0.2813102803517118,0.2860926993563543,0.2907865168539326,0.2953078022573808,0.2998247151621385,0.3035596152867538,0.3066925817946226,0.310001056356626,0.308317715425998,0.3064740665187248,0.3047034764826176,0.3023699146484121,0.2995417673839218,0.2958609727019839,0.2922367215393851,0.2926297140794934,0.2937520277308198,0.2952403015129105,0.2959679832435667,0.2975786064149154,0.2984107068172313,0.2997230782973781,0.3016200153374233,0.3031002724088728,0.3023486415276086,0.3061415846225973,0.3091339789591026,0.3148046013236684,0.3193235625704622,0.3227011947997263,0.3276768941765811,0.3314577237602221,0.3372792009618052,0.3383973095210483,0.3401370679380214,0.3430037497533057,0.3503373819163293,0.3579376854599406,0.0,2.5805197861657074,53.10053304073789,150.0284340049582,218.6874315923372,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95744,47044,448.2682987967914,5253,53.63260360962567,4168,43.00008355614973,1624,16.585895721925134,77.32392886815877,79.68696476908718,63.31606620966248,65.06462237482322,77.1137094613016,79.48052424393087,63.236496911773415,64.98880074421575,0.2102194068571776,206.44052515631017,0.0795692978890656,75.82163060746439,222.72184,156.0273237259285,232621.7830882353,162962.59120981835,449.094,297.77379246842725,468535.7933656417,310489.98912456894,441.59161,215.3309652239321,458222.55180481286,222551.94968291488,2400.91228,1132.9487956119938,2477922.8358957223,1153822.6354825622,965.91768,436.8956531495686,994016.0427807488,441731.1181650733,1584.78488,682.4469202873144,1620194.6022727273,682639.8727560252,0.38106,100000,0,1012372,10573.717413101604,0,0.0,0,0.0,38714,403.8059826203208,0,0.0,39959,414.39672459893046,1229650,0,44194,0,0,8838,0,0,72,0.7415608288770054,0,0.0,0,0.0,0,0.0,0.05253,0.1378523067233506,0.3091566723776889,0.01624,0.3471918307804522,0.6528081692195478,23.47224590311958,4.171294373023862,0.312619961612284,0.2663147792706334,0.2094529750479846,0.2116122840690978,11.461011420325132,6.145196538318762,17.442290727707704,11755.692422965849,47.86930833792491,13.564359039954232,14.971944267829311,9.752567748371046,9.580437281770324,0.5760556621880998,0.8036036036036036,0.7022256331542595,0.5624284077892325,0.1167800453514739,0.7291021671826625,0.9022869022869024,0.8430379746835444,0.6774193548387096,0.1407035175879397,0.5073018080667594,0.7281399046104928,0.6409691629955947,0.524390243902439,0.109809663250366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021878513476556,0.0044307455210942,0.0067489394523717,0.009043061228637,0.0113012165846116,0.0134928716904277,0.0156597271781905,0.0178733655210428,0.0198856955903853,0.0218490836490222,0.0240319058408603,0.0262633729645372,0.0283749190389538,0.0303239429366019,0.0323392838716334,0.0344820457693341,0.0365621245390893,0.0385477643542159,0.0402645480637244,0.0422674612435405,0.0571070626924883,0.0712970518695206,0.0843163777826711,0.0964363452822847,0.1087162831895733,0.1247223338763248,0.136427298192004,0.1473641619728057,0.1583793541771259,0.168165882214193,0.1808492312992549,0.1932385958081889,0.2047490649734713,0.2138256809508709,0.2232011262896236,0.2318802055644161,0.2415821251994955,0.2498171301245766,0.2576096458860795,0.2641615448124025,0.2708205383732922,0.2771366645187745,0.2817430681508351,0.2857948545646539,0.290418360145051,0.2947091775041334,0.2992805935729684,0.3032817179634232,0.3071795403849147,0.3099218884233621,0.3079993527158962,0.3054687177227218,0.3036318520189487,0.3017268809117468,0.3001055087453375,0.2965896926135494,0.2942877002306404,0.2949767502783417,0.2950168717406864,0.2954557590644524,0.2964976183804987,0.2979772091005875,0.2994716066915895,0.3001359998216396,0.2998680896990047,0.3001066236704548,0.2999403866352513,0.3021435755594669,0.3086011674520008,0.3119895329474269,0.3125993911581625,0.3147041717337281,0.3157696886160015,0.3198457116926335,0.3244815614150323,0.3311305168751475,0.3322314049586777,0.3342487249901922,0.3328947368421052,0.3354620586025544,0.0,2.0570645646286705,56.673437904235485,148.87594295635526,211.862733280662,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95799,47299,449.6289105314252,5266,53.77926700696249,4167,42.96495788056242,1582,16.13795551101786,77.4066300966336,79.74597728424216,63.35719594835807,65.08768379542465,77.20398712902822,79.54648097330156,63.28020010511774,65.01439926116018,0.2026429676053851,199.4963109406029,0.0769958432403257,73.28453426447368,223.3506,156.41840713566484,233145.0223906304,163277.70345793257,453.00465,299.8944194125053,472369.6907065836,312545.2347232281,443.31218,215.65977129522264,459936.8991325588,222836.4620528883,2370.06748,1109.2373736488266,2445126.2748045386,1129005.9537665586,973.76956,440.7724225929757,1002077.1824340548,445709.659995177,1538.28948,657.3070337431421,1570968.1729454375,656839.8954657656,0.38234,100000,0,1015230,10597.501017755923,0,0.0,0,0.0,38936,405.891501998977,0,0.0,40148,416.18388500923805,1229456,0,44173,0,0,8893,0,0,72,0.751573607240159,0,0.0,0,0.0,0,0.0,0.05266,0.1377308155045247,0.300417774401823,0.01582,0.3373954165150964,0.6626045834849036,23.947311572459657,4.072186819677499,0.3170146388288937,0.2704583633309335,0.2099832013438924,0.2025437964962803,11.183093892446786,6.063733326805369,16.824432217334802,11794.616780008117,47.48329414938691,13.704129061537229,14.852253290096918,9.703844014684956,9.223067783067789,0.5903527717782577,0.8118899733806566,0.7108251324753975,0.5714285714285714,0.1255924170616113,0.7487520798668885,0.9130434782608696,0.8633720930232558,0.6995305164319249,0.1837837837837838,0.5261382799325464,0.7421289355322339,0.6571136131013307,0.5302114803625377,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0043398024781488,0.0064846104667092,0.0086971541204799,0.0108420378149123,0.0131260055803344,0.0153952814991537,0.0176083295054356,0.0199313136268858,0.0222890826476728,0.0246377108655994,0.026545312756526,0.0285206273510246,0.0306468050937316,0.0325533450159777,0.0349121774418388,0.036922090148247,0.0392270691656991,0.0412878827232963,0.043300364393545,0.0583797658548801,0.0723458545971722,0.0857598054629687,0.098956417559089,0.1110385300222308,0.1261874319769223,0.1382691186602363,0.1500249864435253,0.1606679827135464,0.1697428041948303,0.1823747780706945,0.1940374363355212,0.2039820460152369,0.213784140921054,0.2222942391352111,0.2315147760087627,0.2403876176457469,0.2478333689286557,0.2560953482570139,0.2628868339132027,0.2697506098900463,0.276124373400638,0.2815881914629387,0.2870331565145546,0.2920157354119618,0.2961119597890898,0.3012438682550806,0.3051599613447943,0.3088562700631666,0.3119673904440281,0.3096347573129343,0.3064726832689319,0.3047322698280839,0.3019058619693907,0.3001542294459604,0.2975317693059628,0.2939182798410997,0.2936143811125443,0.294439735548398,0.2957579405828405,0.2969390035004096,0.2976185805641649,0.2982251963922025,0.2995829266128316,0.3002096036585366,0.3016994610207081,0.3019548194467917,0.3055503818215682,0.30929337079821,0.3116674502429086,0.3151675801958846,0.319669559761581,0.3234875224472103,0.3263660794266945,0.3297813705677016,0.3335644136337377,0.337568058076225,0.3442752620130512,0.3482167165804519,0.3520485584218513,0.0,2.066576410469594,52.45096579374658,151.4180764220164,221.55980190515413,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95697,46812,444.5593905765071,5320,54.36952046563633,4213,43.53323510663866,1634,16.719437390931795,77.29491858535671,79.69784604119785,63.29396199958445,65.07442245262745,77.09324436185413,79.499024107401,63.21794820364014,65.002230131044,0.2016742235025788,198.8219337968502,0.0760137959443127,72.19232158344369,222.73328,155.97305884738105,232748.21572254092,162986.1584824632,448.84015,296.3329363837762,468520.5596831667,309156.9772441654,434.94675,211.59955613672275,452140.1193349844,219292.695480238,2411.76044,1131.2241019433347,2492088.7384139523,1154069.1847135597,980.02953,442.638848437918,1008831.457621451,447325.2919149468,1588.89914,669.6894496389241,1625943.780891773,668282.3469704747,0.38037,100000,0,1012424,10579.464351024588,0,0.0,0,0.0,38562,402.426408351359,0,0.0,39442,409.8247593968463,1235932,0,44367,0,0,8819,0,0,78,0.8046229244385926,0,0.0,1,0.0104496483693323,0,0.0,0.0532,0.1398638168099482,0.3071428571428571,0.01634,0.3403911717207967,0.6596088282792033,23.86871608093557,4.121218147852882,0.3161642535010681,0.2653690956563019,0.2129124139568003,0.2055542368858295,11.175662902652643,5.98131814105776,17.346187132501562,11774.52883326844,48.23653010629106,13.726402556728784,15.15227820432058,9.967876431626683,9.389972913615017,0.5829575124614289,0.8023255813953488,0.7079579579579579,0.5964325529542921,0.0935334872979214,0.7559808612440191,0.9100877192982456,0.8875,0.7123287671232876,0.1229050279329608,0.5096316323082122,0.7280966767371602,0.630901287553648,0.5589970501474927,0.0858806404657933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0045460541670471,0.0069770984613822,0.0092827004219409,0.0115944094383989,0.0139940680643747,0.0161537205600228,0.0181953781083345,0.0202459385358268,0.0222190352287976,0.0246291775229263,0.0268226785695941,0.0289671636876279,0.0311037823353601,0.0330622019447139,0.0351824274013402,0.0373053128983119,0.0395057882988111,0.041831819647743,0.043747459270146,0.0589046390406451,0.0727552558840774,0.085856412732062,0.0987194461104622,0.1111626925511711,0.1266467034187944,0.1374800976541768,0.1479876490630323,0.1576888964876099,0.1681455809611691,0.1801992997576084,0.1918940557851687,0.2031985561921743,0.2132075677920715,0.2218422152330261,0.2315281299480694,0.2399535890398732,0.2487116592029165,0.2565060405123081,0.2630505055136523,0.2693781621571556,0.2758826489415234,0.2818118334931174,0.2876722184251232,0.2916378126860322,0.2959230247332388,0.2997170118454333,0.3034971440202526,0.3064666321779617,0.3094560404807084,0.3072425195580289,0.3045764736574716,0.3024600194101017,0.3006592518861528,0.2989897191686323,0.2967186017325293,0.2941912195430869,0.2940568390653715,0.2947120472467825,0.2954354772487906,0.2955555138995632,0.2962325719371106,0.2968975846827408,0.2964552322202852,0.29853766653015,0.2992489438272571,0.3007300102657693,0.305184393372528,0.3094979884554836,0.3159414556962025,0.3209033374311342,0.3240466101694915,0.3283479349186483,0.3332575757575757,0.3355466192836435,0.3366430260047281,0.342908980949501,0.3434730056406124,0.3377573131094258,0.3360840210052513,0.0,1.8513978976347385,55.21188212346966,153.44455993258265,218.181613979244,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95706,46833,445.4475163521618,5290,53.82107704846091,4130,42.42158276388105,1590,16.143188514826655,77.3593554540744,79.73122170534378,63.33143217950936,65.08424054411783,77.15439803873105,79.53180155308071,63.25313570668642,65.01088696218751,0.2049574153433582,199.4201522630732,0.0782964728229416,73.35358193031993,223.267,156.23482522069935,233284.224604518,163244.54602710315,451.6629,299.30658151623805,471197.28125718347,312011.9218012342,439.68742,214.67971281256612,455079.4725513552,220934.5737105562,2338.03808,1100.3280852737792,2402516.7074164627,1110197.1770808704,928.47424,421.61675277179495,950279.8570622532,420961.4866148532,1529.6805,655.0482236450138,1554801.7679142377,647723.110220605,0.37923,100000,0,1014850,10603.828391114454,0,0.0,0,0.0,38770,404.3320168014544,0,0.0,39872,412.2521054061396,1229948,0,44163,0,0,9019,0,0,76,0.7836499279042066,0,0.0,1,0.0104486657053894,0,0.0,0.0529,0.1394931835561532,0.3005671077504726,0.0159,0.3480383294160188,0.6519616705839812,23.58241009560001,4.066939481356037,0.3164648910411622,0.272639225181598,0.2167070217917675,0.1941888619854721,11.535317037141908,6.382915767443927,16.969915231843895,11637.15317020011,47.00195091953523,13.622568164491309,14.81867007085229,9.89631844745491,8.66439423673673,0.5835351089588378,0.7895204262877442,0.6931905126243305,0.5932960893854748,0.1047381546134663,0.7658536585365854,0.9273127753303964,0.8541666666666666,0.7368421052631579,0.1524390243902439,0.5062068965517241,0.6964285714285714,0.6262188515709642,0.5442278860569715,0.0924764890282131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396669772718,0.0046326801625999,0.0071843891747085,0.0095874550588044,0.0117141026814313,0.0140389098720311,0.0161883888067689,0.0181899842802604,0.0202817362147574,0.0224408521790763,0.0245398143875301,0.0268079992604689,0.0289620972056463,0.0310635798844002,0.0330110311948569,0.0351154665178109,0.0370013769398805,0.0391855870059017,0.040898222268427,0.0429583333333333,0.0576951191495582,0.0718121016108267,0.0852365116498641,0.0977043525811574,0.1097378356147048,0.125575244644274,0.1366501814785728,0.1473077864968749,0.1573935533515731,0.1670798587634287,0.1787723344181735,0.1901091287025809,0.201024926829799,0.210913986144097,0.2203886489821098,0.2295825570047023,0.2379558782462999,0.2466442386669217,0.254207474153682,0.2608720557235817,0.266497755564811,0.2723680364762962,0.2780719587726348,0.2831538645608997,0.287542299901755,0.2913154235223175,0.2953982743528823,0.29848546452531,0.3023279875840662,0.3049934123847167,0.3034011229616097,0.3016341664377918,0.2990946733104077,0.2967453366124462,0.2943221492396,0.2920380952380952,0.2888623056097714,0.2889200789907463,0.2906081666638345,0.291063980832372,0.2910695626212867,0.2925969679070683,0.2931668966670848,0.2925968134790284,0.2930918685536099,0.295755623668762,0.2962384669978708,0.299564030988301,0.3038156192074983,0.3063777725155892,0.3094438900480812,0.3146031746031746,0.3182563714357809,0.3239425981873112,0.3283359716919639,0.3356332592679218,0.3401329706860078,0.3450606241303915,0.3445105462412114,0.3496424538953707,0.0,2.817058406560066,52.83006958034274,146.75533467185443,215.96485152871628,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95882,46822,444.9218831480361,5353,54.58793099851901,4243,43.59525249786196,1634,16.65588953088171,77.4394230829848,79.71879259943914,63.39129033748679,65.07679183628929,77.23323981746283,79.51507191953314,63.31467420056791,65.00341721147117,0.2061832655219717,203.72067990599876,0.0766161369188793,73.37462481811485,223.21794,156.33309427404572,232804.84345341148,163047.38561361437,453.0529,299.6534038864873,471797.5323835548,311809.73893586633,439.88791,214.91067708882397,453976.0226111261,220551.33646096117,2426.57484,1132.2999471623586,2497017.458959972,1147577.805686262,1004.14549,449.1738273129001,1031925.8672117812,453154.91792161134,1595.03486,670.725798297241,1629069.814980914,671296.1161988263,0.381,100000,0,1014627,10582.03833879143,0,0.0,0,0.0,38823,404.2364573121128,0,0.0,40014,412.5383283619449,1233140,0,44267,0,0,8935,0,0,93,0.9595127344027032,0,0.0,0,0.0,0,0.0,0.05353,0.140498687664042,0.3052493928638147,0.01634,0.3497934997306518,0.6502065002693482,23.679991975567955,4.211348986309983,0.3030874381333961,0.2632571293895828,0.2194202215413622,0.2142352109356587,11.518602984690569,6.304996661600264,17.37484648199866,11757.735879611124,48.12364930959381,13.69266353778909,14.370305810972464,10.163665711312362,9.897014249519897,0.5847277869432006,0.8039391226499553,0.7107309486780715,0.5918367346938775,0.1298129812981298,0.74185667752443,0.9224318658280922,0.8911764705882353,0.6971153846153846,0.1133004926108374,0.5207296849087893,0.715625,0.645877378435518,0.5615491009681881,0.1345609065155807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022575420125531,0.0046211844825489,0.0070704713985737,0.0092294570967316,0.0114547653653429,0.0135528377525894,0.0159001782531194,0.0180334557323541,0.020146295615218,0.0223408825876143,0.0247136211807619,0.0270872023229328,0.0289986127524019,0.030974316743013,0.03299003082506,0.0348594676083679,0.036953508100391,0.0387520593507475,0.0406341164623194,0.0425790880813923,0.0577253822821226,0.0720405391286177,0.0849170200513062,0.0974383202099737,0.1095263157894736,0.1252507337260615,0.1366717505507541,0.1484417336974423,0.1587071465120245,0.1690353374285653,0.1818240454076367,0.193545598928228,0.2047120930687261,0.2145932125609143,0.2245140293781335,0.2332234075516798,0.2419595693939866,0.2495198085973918,0.2572211775899957,0.2637763324836832,0.2694634980022633,0.2751768744016625,0.2816218963092523,0.28634693413446,0.2908627593738624,0.2957309567186961,0.2994475276236188,0.3026397653541907,0.3057224440223781,0.3095830208292214,0.3066826096302665,0.3044092630192613,0.3022047465243646,0.2999812601807672,0.298037182430931,0.2952103303009952,0.2923839126524558,0.2918314647141503,0.2914072864578018,0.2924339009535309,0.292925715350918,0.2938737003478842,0.2950707011807826,0.296190349476672,0.2971338792610931,0.2996250808015513,0.3017017919531162,0.3043046151934903,0.3084141274238227,0.3106583072100313,0.3162177959624118,0.3210415570752236,0.3253185111166625,0.3256995525896716,0.3322014714204867,0.3332936838348995,0.3361162646876932,0.3374283374283374,0.3357300884955752,0.3423149905123339,0.0,2.540978022498066,53.06272706880038,153.44307209907083,222.86071323840636,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95752,46903,446.89405965410646,5242,53.795220987551176,4162,43.03826551925808,1557,15.957891218982372,77.34647984393533,79.69742875203153,63.33814763576003,65.07464110139803,77.14841353512735,79.50081078802457,63.26368235247026,65.00251804615557,0.1980663088079808,196.6179640069612,0.0744652832897685,72.12305524245721,221.88474,155.5078130687663,231728.5696382321,162406.85632547238,454.1288,299.95628652421385,473865.6320494611,312853.3153607381,440.58074,214.17262397216547,457248.2245801654,221411.06665906965,2352.02304,1092.2785891680328,2432864.399699223,1117231.8794051637,961.00768,427.2300752518765,989516.1249895564,432057.6857422041,1506.97376,641.5462459445329,1545525.2945108197,646248.0128050168,0.37865,100000,0,1008567,10533.116801737824,0,0.0,0,0.0,38914,405.96541064416414,0,0.0,40001,414.90517169354166,1235815,0,44372,0,0,8718,0,0,87,0.908597209457766,0,0.0,0,0.0,0,0.0,0.05242,0.1384391918658391,0.2970240366272415,0.01557,0.3496068751142805,0.6503931248857195,23.495877876874,4.130549798895024,0.3157135992311389,0.2777510812109562,0.2111965401249399,0.1953387794329649,11.444048810971848,6.177761653025724,16.641141575742257,11661.299988744717,47.438907270780014,14.045484089188047,14.773928816903092,9.711987783062742,8.90750658162613,0.5862566074002883,0.7897923875432526,0.7100456621004566,0.5551763367463026,0.1303813038130381,0.7348353552859619,0.913716814159292,0.8615384615384616,0.6565656565656566,0.1396648044692737,0.5292553191489362,0.7102272727272727,0.660262891809909,0.5256975036710719,0.1277602523659306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046123123397094,0.0068194964532529,0.0089392738871619,0.0111456871478837,0.0132452353803551,0.0155453618756371,0.0179426203574235,0.0200754362114258,0.0222374658298608,0.0243852438011869,0.0268100917619526,0.0289618160508296,0.0308373673910804,0.0326547878212601,0.0346046511627907,0.0365370080859743,0.0385421421753745,0.0404777497115414,0.0421210511514545,0.056574029607667,0.0708529565672422,0.0841988208388409,0.0966280084536364,0.108677089153375,0.1244767220601293,0.1356964066013321,0.1467564806538117,0.1569092151336578,0.1659932912518352,0.1783822769548742,0.1900209788697363,0.2006107434334213,0.2109708790908594,0.2200435250928755,0.2299365806687253,0.2385916403732732,0.247022705036942,0.2556182005876281,0.2630289149728027,0.2691689318142386,0.2747956833354769,0.2800037867133694,0.2839813971328571,0.2887607019248284,0.2935911955879456,0.2976038618343713,0.3018728688482874,0.3053460830806707,0.3084518011061392,0.3068584279346611,0.3034741706552236,0.3011206848003604,0.2988087502707385,0.2964969571025679,0.2933822966873231,0.2901320361362057,0.2904355797089588,0.290399563616528,0.2907152645535603,0.2918176046607162,0.2926502726861058,0.2938312366782296,0.2933553409319028,0.2945069173040496,0.2941590245935807,0.2951808943667985,0.2985467301428213,0.3031319910514541,0.306573084657545,0.3109377126525428,0.3135481140559699,0.318712173207712,0.3236231224396905,0.3282378317546656,0.3361682022206473,0.3459319975713418,0.34431198221863,0.3456106341733592,0.3570035115099493,0.0,1.688881560705153,50.65500652513477,158.7077932944799,220.4728369956792,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95742,46884,446.7945102462869,5227,53.35171607027219,4100,42.24896074867874,1560,15.98044745252867,77.41222784566315,79.76815535486418,63.350809200748486,65.08976094087306,77.21767972620673,79.57549670156493,63.27775236228514,65.0196288284204,0.194548119456428,192.65865329924736,0.0730568384633443,70.1321124526686,221.63724,155.1661344947063,231494.03605523176,162066.74768985456,449.35033,297.2515000619885,468755.65582502977,309894.6045857092,436.19677,212.50462047363564,451602.7657663303,218984.21146712275,2351.9318,1099.26493392611,2425418.478828518,1117158.9341203962,944.09656,429.44869868350327,969803.7016147564,432267.5510053093,1523.42074,644.9092257694313,1561122.3705374862,646995.0841266295,0.37919,100000,0,1007442,10522.456184328716,0,0.0,0,0.0,38673,403.313070543753,0,0.0,39564,409.2665705750872,1239792,0,44428,0,0,8704,0,0,77,0.8042447410749722,0,0.0,0,0.0,0,0.0,0.05227,0.137846462195733,0.2984503539315095,0.0156,0.3400476103277788,0.6599523896722213,23.635599060441475,4.141440525152727,0.315609756097561,0.2658536585365854,0.2107317073170731,0.2078048780487804,11.0338174034182,5.79054412064414,16.507826623696015,11704.836936523188,46.54524504989708,13.328910401362045,14.442328710616604,9.535586991374236,9.238418946544204,0.5758536585365853,0.8,0.6978361669242659,0.5787037037037037,0.1009389671361502,0.7491554054054054,0.9264069264069263,0.8549848942598187,0.7238095238095238,0.1325966850828729,0.5054869684499315,0.7070063694267515,0.6438213914849429,0.5321100917431193,0.0923994038748137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0049358941874018,0.00725358113866,0.0094950848972296,0.0116308624528512,0.013752735786634,0.0160425627331471,0.0181627093048172,0.0201530899019938,0.0222415557830092,0.0242272690005739,0.0263201116859653,0.0284665679743399,0.0304515730394933,0.0324517866540092,0.0343897295956338,0.0361998446803002,0.0382835681530512,0.0401305803339363,0.0420638144942029,0.0564261032060048,0.0695384679773576,0.0830151470649939,0.0954284391896156,0.1073022504985281,0.1235145345453391,0.1355889032751045,0.1469382539902254,0.1577293808373763,0.1668580627850818,0.178936473023677,0.1907737289512155,0.2021227955584585,0.2117957476625282,0.2206041111282469,0.2304749018477031,0.23890403611496,0.2468693693693693,0.2541127851133641,0.2604300385109114,0.2670572298572437,0.2727506727506728,0.2790034661019956,0.2842979956416581,0.2892945131497506,0.2939887751083103,0.2981325338829554,0.3020989314992005,0.3061666903234964,0.3101635897772813,0.308028297336406,0.30550232685464,0.3034528180264006,0.3017433421003463,0.3002654475741041,0.297378174747843,0.2946617875708699,0.2952692476687985,0.2956050469980523,0.2959288341822297,0.2974481658692185,0.2985900619903396,0.2993997050453856,0.3022519430482053,0.3019321945059919,0.3024221631800242,0.3040709959149176,0.3074701937406855,0.309944157330651,0.3160096981073048,0.3218194868114121,0.3233043295942971,0.3243293591654247,0.3273599760065981,0.3273666728178631,0.3285864363254348,0.3276557597489914,0.3335974643423138,0.340080971659919,0.3397435897435897,0.0,2.2193349365430817,51.31735524749079,151.08068703616,212.9496817577445,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95724,46950,446.9412059671556,5339,54.51088546237098,4295,44.24177844636664,1627,16.547574276043626,77.32373385663094,79.69183676799769,63.321321634088775,65.07430152157264,77.11204852396088,79.48660738889785,63.240574672247234,64.99920355586113,0.2116853326700578,205.2293790998334,0.080746961841541,75.09796571150673,221.47862,155.1733675898464,231370.48180184697,162103.62422359674,450.94829,297.97542479280645,470436.5676319418,310636.9988996278,438.92759,213.79317694842413,455159.5002298274,220749.69199440107,2465.12784,1154.464464455187,2539849.0660649366,1171144.95644481,1030.74097,463.5449859454996,1059608.1442480464,467219.7508295276,1594.19126,689.7073575367099,1622692.198403744,682236.0602335118,0.38166,100000,0,1006721,10516.840081902135,0,0.0,0,0.0,38686,403.46203668881367,0,0.0,39774,412.0492248547909,1240494,0,44470,0,0,8727,0,0,94,0.981989887593498,0,0.0,1,0.0104467009318457,0,0.0,0.05339,0.1398889063564429,0.3047387151151901,0.01627,0.3598430813124108,0.6401569186875892,23.240537756807743,4.15198104601286,0.3233993015133876,0.2647264260768335,0.1948777648428405,0.2169965075669383,11.153285277540649,5.856915788645652,17.563337094626487,11738.335619508603,49.24923732585998,14.034998860781808,15.616900185985182,9.1773554485088,10.419982830584186,0.5692665890570431,0.8056288478452067,0.67170626349892,0.5579450418160096,0.1384120171673819,0.7242497972424979,0.9053497942386832,0.8347107438016529,0.7272727272727273,0.136986301369863,0.5068582625734814,0.7311827956989247,0.6140350877192983,0.5163690476190477,0.1388499298737728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0045230054661433,0.0067295980511571,0.0088917342438469,0.0109168972814585,0.0131304179527141,0.0154203891812507,0.0176074678541153,0.0198889491067867,0.0223052895693583,0.0245510762888289,0.0264763274109068,0.0287430817027755,0.0307186579007027,0.0328757225433526,0.0346324821668561,0.0364984671472367,0.0385648921490304,0.040479136555998,0.0427117089893611,0.0574802656308733,0.0716543509660672,0.0846805073277173,0.0974963181148748,0.1093604994516156,0.1248096607732002,0.1364427280057717,0.1471304977067393,0.1574259012016021,0.1669758613663903,0.1792094240273934,0.191546675032725,0.2017986472085082,0.2112802344399247,0.221412932258029,0.23195339668195,0.2414019983941475,0.2496011325588189,0.2575879545119559,0.2644568525595551,0.2718627224404899,0.278535291574655,0.2841270404122785,0.2887973364631488,0.2923116145245292,0.2961867800160168,0.2991977170607157,0.3023711641996207,0.306425702811245,0.3089350478074513,0.3065523460844752,0.3033843951718348,0.3014437636453271,0.2992133954134012,0.2973884867492085,0.2939843522729012,0.2918490196388226,0.2917198912580656,0.2917375910669299,0.2919572953736655,0.2925885782628195,0.2938901168298073,0.2950283882592026,0.2965025269466434,0.297834977146981,0.2993163552865045,0.3003796854035228,0.3055555555555556,0.3104188665962689,0.314445108587368,0.3197605337720501,0.3237820820660583,0.3266325305012959,0.3284665953218162,0.3314896409487203,0.3290689410092395,0.3335857056329497,0.335876330054206,0.3377862595419847,0.3371472158657513,0.0,2.3612957233956573,53.6015064160402,165.73976444590792,220.07748026436064,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95783,46846,444.8806155580844,5221,53.3915204159402,4138,42.64848668344069,1559,15.942286209452616,77.38153749659537,79.72451620756337,63.350937847410606,65.0834296732511,77.17567322853044,79.5202952171862,63.27338630282447,65.00906056707811,0.2058642680649285,204.22099037716637,0.0775515445861358,74.36910617299475,221.42956,155.1536231602948,231178.35106438512,161984.50994466114,449.77551,297.2757805338692,468979.5057578067,309765.7314281962,437.79907,213.37922978100076,453617.0823632586,220143.11771894863,2352.3746,1105.487219024497,2425218.420805362,1123434.8256209318,928.44639,420.409667772526,954805.487403819,424402.97973108257,1509.38672,647.3530757085565,1543993.7149598573,647764.2062182447,0.38106,100000,0,1006498,10508.10686656296,0,0.0,0,0.0,38578,402.1486067464999,0,0.0,39660,410.7409456792959,1242588,0,44530,0,0,8625,0,0,78,0.8039004833843166,0,0.0,1,0.0104402660179781,0,0.0,0.05221,0.1370125439563323,0.2986018004213752,0.01559,0.3543814432989691,0.645618556701031,23.91344985546584,4.0997214671166695,0.318994683421943,0.2687288545190913,0.2114548090865152,0.2008216529724504,11.291416548553336,6.124267981831914,16.706234409307918,11768.502158969752,47.1185689196453,13.621415956102318,14.899078272296707,9.62286521077622,8.975209480470053,0.5790236829386177,0.8057553956834532,0.6886363636363636,0.5622857142857143,0.1191335740072202,0.7653721682847896,0.9173728813559322,0.8541666666666666,0.7083333333333334,0.1951219512195122,0.4996554100620262,0.7234375,0.6207264957264957,0.5144157814871017,0.1004497751124437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045918057047864,0.0067570309646524,0.0090897088246346,0.0113366004432966,0.0138949682909697,0.0158804582704774,0.0182386021494401,0.0204377771873531,0.0226635561831092,0.0248498760068042,0.0268727802755024,0.0289430392761669,0.0310221984267534,0.0331710537173034,0.0353043280605866,0.0371182880263253,0.0392349953353374,0.0414697235698035,0.0433759526883511,0.0582231452395612,0.0720830021336234,0.0854851391728259,0.0983365383604972,0.1099940988029,0.1250224575420352,0.1366955268484469,0.1482851736088962,0.1583873136478598,0.1676099213239865,0.1799276672694394,0.1912461335467543,0.2017477121057322,0.2121477045471931,0.2215084751355691,0.2307811531308121,0.2399308652988403,0.2480299470530705,0.2552906752557443,0.2626501888087882,0.2689323419558505,0.2748959745663659,0.2802214048325862,0.2860204497018749,0.2908451131468786,0.2958984014471887,0.2999388058396713,0.3039483549580002,0.3077112079556182,0.3117943853824975,0.3093531950363668,0.3071522778479969,0.3042132222566209,0.3014766379422335,0.2998797630887526,0.2969234766395134,0.2932470810981382,0.2933248382670064,0.2946778711484594,0.2959170999166031,0.2953389119779339,0.2966161715522329,0.2980227756225754,0.299551709525615,0.3016898846282732,0.3030712116098549,0.3041827250056677,0.3089882382304308,0.3132655902004454,0.3169108380592312,0.3217725525661316,0.3252719400147851,0.3295019157088122,0.333586510709403,0.3331457512661789,0.3336080047086521,0.3349992427684385,0.3364073777064956,0.3391041494916186,0.3399089529590288,0.0,2.0999288539552525,53.90919506141586,146.19558918261805,217.03813231824807,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95859,46725,443.23433376104487,5303,54.17331705943104,4174,42.97979323798496,1600,16.305198259944294,77.37299817448195,79.67317138809767,63.35320242165369,65.05656465827194,77.17881386854526,79.48493328505745,63.279879761565496,64.98824129061205,0.1941843059366874,188.23810304022004,0.0733226600881948,68.323367659886,223.08902,156.24120896582303,232726.21245788084,162990.65185931738,452.05156,298.4039815102157,471001.0849268196,310716.3317465814,434.85475,211.06546848477856,450494.7057657601,217668.18822352705,2383.29416,1102.1993239937146,2457198.67722384,1120774.405705229,966.29942,429.0345305495785,992749.9243680822,432287.3279260073,1562.73074,653.90208311995,1595240.8433219625,651214.237739056,0.3794,100000,0,1014041,10578.464202630948,0,0.0,0,0.0,38894,405.1471431999082,0,0.0,39470,408.610563431707,1233090,0,44300,0,0,8940,0,0,66,0.6885112508997591,0,0.0,2,0.0208639772999927,0,0.0,0.05303,0.1397733263046916,0.3017160098057703,0.016,0.3456678700361011,0.6543321299638989,23.96219579476962,4.1027901163974265,0.3145663632007666,0.2735984666986104,0.201006229036895,0.2108289410637278,11.065657399963744,5.921265654820626,16.82029862087872,11733.617396957296,47.27952669832679,13.80570891551699,14.660120716519495,9.290776584343703,9.522920481946606,0.562050790608529,0.7810858143607706,0.6732673267326733,0.5744934445768772,0.1,0.7457191780821918,0.9172259507829976,0.875,0.7236180904522613,0.0898876404494382,0.4906852960745176,0.6935251798561151,0.6016511867905057,0.528125,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020559043953818,0.0042567423758703,0.0066035726240832,0.0089962025059399,0.0112030579671837,0.0135688110749185,0.0155229174523253,0.0177264795028013,0.0199143753384626,0.0220905723699019,0.0242815429537421,0.0264910174725804,0.0286319164679766,0.0307562454323681,0.0330711421296248,0.0351315626419926,0.0370692241637956,0.0390657382077426,0.0410596164030779,0.0433950289751032,0.0588713713713713,0.0733975631674643,0.0871464487743557,0.0999401430266626,0.1121829977251664,0.1271444266035662,0.1383216590545423,0.149631582864616,0.1595751494449188,0.1688438333851281,0.1806666164426316,0.1920137500135122,0.2021326318764334,0.2127143107067879,0.2216842545418532,0.2313434488869199,0.2400352517263305,0.2485741605264638,0.2561930039471893,0.2631940469376073,0.2695696413292325,0.2748941545227012,0.2809745246293469,0.2855996550815588,0.2892964208124476,0.2940669514792608,0.2987627137727847,0.3025869192143901,0.3057887588124959,0.3083415759973623,0.3057992465016146,0.3033619800618769,0.3007082611695462,0.2990554319882145,0.2975033748201332,0.2940169895495936,0.2911724290430085,0.2908272645446362,0.2922964324618736,0.2924506470619649,0.2917917824570565,0.2921273163630641,0.293754690235971,0.2946051637559436,0.2959375969084707,0.2966277024930175,0.2979483110405804,0.3035731032542436,0.3069248212105355,0.3106120201384518,0.3135059796780865,0.3185519886512898,0.323590031853101,0.3262153566560654,0.3323342075683776,0.3317313327863087,0.341363012654368,0.3451020408163265,0.3537906137184115,0.3597863410911865,0.0,2.115682159609788,51.04763247549387,151.33010002414352,224.79839086404985,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95793,46970,447.4961636027684,5238,53.479899366342,4209,43.35389851032957,1625,16.619168415228668,77.39816222968327,79.72808509859925,63.35848721039546,65.07971574977657,77.17995030728697,79.51147839931086,63.27598139229568,65.00030375776007,0.2182119223962928,216.60669928839127,0.0825058180997828,79.41199201650306,222.81666,156.11365544106548,232602.23607152925,162969.79470427427,452.62728,298.73963423768026,471956.19721691567,311310.17322526727,438.14881,213.08652046395943,453594.95996575954,219582.4530586879,2395.4962,1121.5431725923374,2469321.349159125,1139419.344411739,969.48601,435.12578447437824,999782.092637249,441954.040978336,1583.98232,678.8307682773407,1621203.0106583987,680918.9880211286,0.3816,100000,0,1012803,10572.828912342236,0,0.0,0,0.0,38855,405.0295950643575,0,0.0,39676,410.4162099527105,1234041,0,44268,0,0,8810,0,0,86,0.8977691480588351,0,0.0,0,0.0,0,0.0,0.05238,0.1372641509433962,0.3102329133256968,0.01625,0.3478021978021978,0.6521978021978022,23.51167746207673,4.184304718798241,0.308624376336422,0.2668092183416488,0.2162033737229745,0.2083630315989546,11.36880529749194,6.017865486622799,17.35113321611246,11732.503535406371,47.86392501044179,13.664368038335422,14.60734003523402,9.981109087651792,9.611107849220566,0.5602280826799715,0.7720391807658059,0.6882217090069284,0.5692307692307692,0.0900798175598631,0.7221311475409836,0.9006622516556292,0.8764044943820225,0.7095238095238096,0.0597014925373134,0.4941451990632318,0.6850746268656717,0.6171792152704135,0.5271428571428571,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748435316278,0.0042565266742338,0.0063506878220995,0.0086928263871963,0.0106236974533624,0.0127628391719421,0.014958985071585,0.0171815696037219,0.019442372725508,0.0215776550030693,0.0236248706574188,0.0255307795712717,0.0276036421186771,0.0300020584602717,0.0319604103304294,0.0339068825910931,0.0359814196004593,0.0381388886008482,0.0400008314020556,0.042154810626178,0.0558668544894871,0.0701047963687326,0.0844306982595932,0.0978265439105393,0.1101681513889621,0.1250607860963697,0.1372734118944834,0.1483968458354173,0.1593771027588195,0.1691009308111354,0.1805609409331782,0.1913924762584636,0.2020405058889999,0.2111726594338282,0.221540761257845,0.2310169303972557,0.2402645195824783,0.2480628001394559,0.2556809802030745,0.2635292231219434,0.2704671600370028,0.2767223540689993,0.2827754367690924,0.2878591799074939,0.2923682006336566,0.297495629047748,0.3015763879339442,0.3063706490106622,0.3095287389042727,0.31239124703401,0.3098085641639648,0.3067337152906585,0.3036907793834161,0.3018244753731881,0.2989483039549696,0.2950929799383187,0.2921928273771941,0.2921342800117789,0.2906943047576837,0.2913566622761738,0.2925936986710467,0.2927291013429569,0.2940562215446305,0.2937748815692903,0.2947619615797637,0.2971592970815406,0.2996498955333446,0.3028564300860671,0.3082479597152283,0.3114908662345315,0.3143502824858757,0.3170040910521347,0.3187488363433253,0.3210081497132508,0.3217148182665424,0.3267092500591436,0.3345938587203146,0.3411243199677614,0.3494638438273302,0.3495072024260803,0.0,2.3160083757824435,52.961279835597104,153.1049343962442,221.1530929702957,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95884,46507,441.7108172374953,5295,54.11747528263318,4189,43.17717241667015,1617,16.5616786950899,77.3584022892406,79.6413960953814,63.35300198276878,65.04202914340249,77.14355489140027,79.42739125901777,63.27198928945664,64.96360148693826,0.2148473978403302,214.0048363636282,0.0810126933121395,78.42765646422833,223.5882,156.59633765517216,233186.1415877519,163318.52827914164,450.00687,297.46708755052475,468853.0098869467,309765.1720313345,437.45459,212.41277525694943,453045.1378749322,219086.294296756,2376.5272,1127.964006586081,2450854.991448,1148694.8881837225,958.83029,436.7384173500815,987222.7274623504,442719.0848839035,1572.9867,680.3085776468046,1611710.337491135,683600.8993214618,0.3781,100000,0,1016310,10599.37007217054,0,0.0,0,0.0,38729,403.4041133035752,0,0.0,39757,411.4346502023278,1228724,0,44182,0,0,8900,0,0,67,0.6987610028784782,0,0.0,0,0.0,0,0.0,0.05295,0.1400423168473948,0.3053824362606232,0.01617,0.3624052004333694,0.6375947995666306,23.373386200449904,4.1875485592582935,0.3003103365958463,0.284793506803533,0.207209357841967,0.2076867987586536,11.035107694607722,5.797792547640902,17.556257375539914,11647.278313515935,48.39929941695826,14.635003728757052,14.381519187357648,9.645218943982451,9.73755755686111,0.5738839818572452,0.7954735959765298,0.6812400635930048,0.576036866359447,0.1126436781609195,0.7389240506329114,0.917004048582996,0.8498583569405099,0.7835051546391752,0.1300448430493273,0.5025641025641026,0.709585121602289,0.6154696132596685,0.516320474777448,0.106646058732612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024096629509258,0.004802869562574,0.0069174671116024,0.0091685365878422,0.0112522870502134,0.0135153013973274,0.0155772443864868,0.0178693457086031,0.0200320594631571,0.0222556175754973,0.0243330671744159,0.0264301824892351,0.0282131339481954,0.0303151874254207,0.0323481522702446,0.0344126210585004,0.0364328495619161,0.0385962730344298,0.0406679682631994,0.0425722281754908,0.0572959561314804,0.071315140624347,0.0847200259710339,0.0971522177419354,0.1090125771588682,0.1243873066846953,0.1353602577281349,0.1464026711469343,0.1576205877016021,0.1672079836211424,0.1798996489867993,0.1916304324312631,0.2023370835371487,0.2116734069297191,0.2203764374766375,0.2299069350537253,0.2388477494758442,0.2478805459983359,0.2547531536437063,0.2611410241722992,0.2669289516315667,0.2734578805142543,0.2788824804291957,0.2844361290013072,0.288338561042624,0.2927018825096839,0.2966972385104997,0.3000637104994903,0.3035772210040093,0.3070861977789529,0.3059353342501955,0.3029380569980303,0.3009161381254404,0.2988286334056399,0.2967474233703654,0.2936965386148327,0.2907238384990809,0.2895303182139278,0.2904433127114878,0.2905475298733725,0.2909771621115687,0.2907201833050211,0.2921936510595527,0.2937605998393287,0.2946822806680745,0.29545572443845,0.2958121863392781,0.2990315526398001,0.3007395520826065,0.303087661185378,0.3097717804745517,0.3119406128251026,0.3124647843235459,0.3175985334555454,0.3199848885530789,0.3229265967588179,0.3226403454657618,0.3212121212121212,0.3306849315068493,0.3367579908675799,0.0,2.027418547184712,55.49115148023155,156.8424582666417,213.63009829803832,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95721,46600,443.727081831573,5280,53.86487813541438,4174,42.90594540382988,1640,16.589881008347174,77.38965647392791,79.7556733248404,63.34469261111818,65.09371710460314,77.18180675797404,79.55426576188796,63.2661745766959,65.02058156860241,0.2078497159538699,201.4075629524399,0.0785180344222808,73.13553600073419,223.27272,156.31864493773037,233253.64340113456,163306.53141706664,451.47446,297.9923156009796,470886.45124894223,310543.7256076417,435.2704,211.448829202071,450559.67864940816,217737.5335708597,2383.42632,1115.1348219915976,2450322.1654600347,1125378.795741286,964.92788,431.2127428490671,989667.7949457276,432215.1887115524,1586.76552,674.1698601595572,1607781.9914125428,663640.5433885381,0.37811,100000,0,1014876,10602.438336415204,0,0.0,0,0.0,38733,403.9030097888655,0,0.0,39496,408.41612603294993,1234405,0,44324,0,0,8832,0,0,84,0.8671033524513951,0,0.0,0,0.0,0,0.0,0.0528,0.139641903149877,0.3106060606060606,0.0164,0.3462509012256669,0.6537490987743331,23.70075031460603,4.133396880736771,0.3229516051748922,0.2563488260661236,0.2158600862482031,0.204839482510781,11.32923470127672,6.225787301209089,17.42245143439986,11632.696697723668,47.59466124265178,13.154532808528591,15.292823724550544,9.957609997878556,9.189694711694091,0.5730713943459511,0.8,0.6862017804154302,0.564927857935627,0.119298245614035,0.7383333333333333,0.8956916099773242,0.8536585365853658,0.7216981132075472,0.1292134831460674,0.5063887020847344,0.7329093799682035,0.6230847803881512,0.5166908563134979,0.1166912850812407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.0048356193546424,0.007124082850445,0.009295568604344,0.011504775855229,0.0137367113355871,0.0157726776847707,0.0178846683884402,0.0198912421293646,0.022130551830735,0.0244264950080977,0.026568932417588,0.0287226933950141,0.0308506585112188,0.0327278728429825,0.0347874616314761,0.0365837242293394,0.038573666573293,0.0404406797276931,0.0422297473300338,0.057297974524953,0.0713911914929247,0.0842478544599953,0.0969058715847282,0.1087738546095175,0.123638171394724,0.1355615682529577,0.1464562068268176,0.1564505965159622,0.1661679376213305,0.1785329715294827,0.1906899759839027,0.2015179357813128,0.2110529135821368,0.2196023633742999,0.2290213274865457,0.2373847200383616,0.245754807097985,0.2534071067371142,0.2606317860942988,0.2665109610581815,0.2733200888161738,0.2789521570110243,0.2832367866717732,0.2875133456274871,0.2921364912107932,0.2954230062385137,0.2995156184446393,0.3033716584110397,0.3069188191881918,0.3046008682912405,0.3020703108900825,0.2996485802642676,0.2976214501946086,0.2959383048639687,0.2931331716173128,0.2914755803508108,0.2914898478814389,0.2919731534524253,0.2920328891409129,0.2926149558755225,0.2934714375392341,0.2945797655665475,0.2948328267477204,0.2954756850866942,0.2962934223118905,0.2975225288849967,0.3001092896174863,0.3034591194968553,0.3079084863837872,0.3112525573994089,0.3132574952158197,0.3153237951807229,0.3194392383237124,0.3243666513127591,0.3301106581246359,0.327324620700015,0.3300179033220609,0.3409889219129965,0.3492605233219568,0.0,2.572862864612004,51.73063364958537,157.48551997832593,215.39047629477565,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95771,47020,447.3065959424043,5385,55.17327792337973,4305,44.470664397364544,1592,16.299297282058244,77.34687979821054,79.70604622717518,63.33382307926016,65.08105687328215,77.1441679676674,79.50355164057977,63.25657176135724,65.00587071902031,0.2027118305431372,202.49458659540664,0.0772513179029132,75.18615426184283,222.05898,155.47582083793293,231864.53101669607,162341.2315188658,450.18086,297.5086196382956,469585.49038853095,310171.6382185585,438.54932,213.1562386185957,454631.1827171064,220023.9776371711,2436.8722,1144.6366609801228,2519633.208382496,1170335.885581358,996.69144,453.9964315918398,1028685.4162533544,462026.3979616378,1549.53216,666.2696410137298,1588506.666945109,671719.1497440292,0.38255,100000,0,1009359,10539.296864395275,0,0.0,0,0.0,38740,404.0158294264443,0,0.0,39815,412.4317382088524,1239060,0,44569,0,0,8761,0,0,72,0.7517933403639933,0,0.0,0,0.0,0,0.0,0.05385,0.1407659129525552,0.295636025998143,0.01592,0.3488122879085551,0.6511877120914449,23.605231546859063,4.065639985142857,0.321718931475029,0.2629500580720093,0.2176538908246225,0.1976771196283391,11.198544488818808,6.025563540424903,17.171793737363217,11771.248763078733,49.217282916551405,13.822291851391658,15.450308986992631,10.490937059277009,9.45374501889009,0.5855981416957027,0.8065371024734982,0.7032490974729242,0.5635005336179295,0.1245593419506463,0.7517674783974863,0.9189765458422174,0.8675675675675676,0.7071129707112971,0.1846153846153846,0.5158311345646438,0.726998491704374,0.6433497536945813,0.5143266475644699,0.1067073170731707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0045227761327221,0.0066395939086294,0.0088112442452513,0.0108244486042158,0.0130445408443819,0.0152105209501478,0.0174254797876684,0.0195865960622354,0.0217266658475652,0.0236730676563765,0.0260182970028646,0.0281668414882458,0.0302855494663974,0.0326126219103152,0.0346093015082129,0.0366477508077209,0.0388198435587277,0.0409255813469994,0.0427461679440186,0.0572812291249165,0.0708480214228182,0.0840742293981966,0.0968806490940429,0.1090782623358556,0.1247926286758878,0.1357378300176998,0.1468924751759477,0.1578543162206269,0.1677680550944123,0.1804246805214922,0.1912656298970075,0.2023096896150879,0.2117247479987331,0.2213897280966767,0.2312475795297372,0.2401066000602134,0.2491708918393272,0.257509219858156,0.2652624103727121,0.271753216699065,0.2780624780624781,0.2842956229434462,0.2880998333712943,0.2920662280595276,0.2970788010040852,0.300361489486785,0.304413596725396,0.3080873412154296,0.3111959957850368,0.3087768817204301,0.3055231080022538,0.3040660236762927,0.301879991926415,0.2998428745071299,0.2976317799847212,0.2953124012887738,0.2954698124027197,0.2953336969118549,0.2960384581144841,0.2965973429003868,0.2968229238566667,0.2968962274009823,0.2977854176898691,0.2985475933261313,0.3007424775302852,0.3023911187019641,0.3072444612286002,0.3134218547454717,0.3176992552685787,0.3228797382056176,0.3292670046472328,0.3336049645834639,0.3325026431052711,0.3355250972402296,0.3376168224299065,0.3409331118828325,0.3492127573677836,0.3417335918028247,0.3417770849571317,0.0,1.9062844023843235,56.01581747507822,155.36637723771642,225.64624150936203,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95743,47198,449.160774155813,5435,55.460973648204046,4329,44.52544833564856,1630,16.638292094461214,77.36211040614715,79.72334225478734,63.32787542470121,65.07528164720989,77.1559018007187,79.5197205577389,63.25160324535322,65.0021114293375,0.2062086054284577,203.62169704843325,0.0762721793479883,73.17021787238787,221.78486,155.43051597937165,231646.0315636652,162341.38890506007,451.53477,298.2070776118928,470907.4605976416,310762.3926677593,443.81474,216.15319979590453,458773.4664675224,222142.8130233198,2446.1738,1150.872167627695,2520800.142046938,1167905.7974240358,1016.39533,460.4311941666301,1049513.87568804,468832.4509719071,1588.39884,668.3881195246454,1624963.4751365636,668923.4798358547,0.38317,100000,0,1008113,10529.365071075692,0,0.0,0,0.0,38820,404.7293274704156,0,0.0,40443,417.5971089270234,1236850,0,44352,0,0,8835,0,0,69,0.720679318592482,0,0.0,0,0.0,0,0.0,0.05435,0.1418430461674974,0.2999080036798528,0.0163,0.3522987493394398,0.6477012506605602,23.391330199478038,4.080415368861013,0.3109263109263109,0.2755832755832756,0.2076692076692076,0.2058212058212058,11.439861608219102,6.171043432582692,17.347032653490004,11824.703748146618,49.637512820866576,14.56191311545746,15.315079611799234,10.088497620588315,9.672022473021562,0.5846615846615847,0.7971500419111484,0.700594353640416,0.5817575083426029,0.1279461279461279,0.7541501976284585,0.9118852459016392,0.8591160220994475,0.7400881057268722,0.1595744680851064,0.514686684073107,0.7177304964539007,0.6422764227642277,0.5282738095238095,0.1194879089615931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024315370353484,0.0046849331737887,0.0070246675464419,0.009256530883892,0.0115558720309241,0.0138407952091905,0.0159586400995248,0.018143020501511,0.0204292389648367,0.0223949373310395,0.0246533759947493,0.0268812786326191,0.0289500216044937,0.0311514601924939,0.0330677455311068,0.0352645617517523,0.0372257256168908,0.0391143758300132,0.0409758531438728,0.0429239534617267,0.0579737375002609,0.0717640782081995,0.0850015205058565,0.0981711869932379,0.1102696887557613,0.1258909875420377,0.1378897009684844,0.1490541734529854,0.1596918770499684,0.1697368703223177,0.1827844666049236,0.1942409453420047,0.2055973112022363,0.2149817895462152,0.2237836886066755,0.2330659635283951,0.2421085541374959,0.2501856226797165,0.2576140836443245,0.2646668193267689,0.271332183735114,0.2772034056886227,0.2821259125167122,0.2866253491410829,0.29162012529746,0.2966978807294234,0.3005844001451614,0.3049202432136769,0.3092015012294551,0.3123977842257979,0.3107682365296066,0.3075431479062092,0.3050199023868798,0.3028658835752835,0.3003900398938142,0.2970882690103171,0.2940897672875491,0.2942437683104469,0.2942717637251399,0.2953810623556582,0.2963736366178801,0.297746960262429,0.2997938058442505,0.3018058088333407,0.3031201434548715,0.3030554331769767,0.3049332428151165,0.30978752613023,0.3110167722179692,0.3147820618637739,0.3178542473651022,0.3201278624954147,0.3220381213404759,0.3255378157559403,0.330188679245283,0.3285999295857293,0.3312188491164476,0.3290412044374009,0.3343187315237839,0.3393267023718439,0.0,2.6840909015564307,54.63839826672034,163.9100453906294,222.0359011602392,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95766,46978,447.76851909863626,5111,52.01219639538041,4050,41.76847733015893,1563,15.997326817450867,77.32840490063373,79.68950400337283,63.31625382636724,65.06496705628906,77.12842816316679,79.49202963295731,63.24000076751474,64.99254257170158,0.1999767374669403,197.47437041552016,0.0762530588524939,72.4244845874864,222.00992,155.45441324836275,231825.40776475996,162327.3533909349,447.58229,296.6036483787991,466863.6468057557,309209.94755842286,432.08609,210.57644536656807,448308.8987740952,217676.0988626337,2289.5926,1073.4931702471945,2362336.9880751,1092471.4515038675,925.82265,418.2987378859647,953751.6550759142,423792.35234901146,1507.58636,642.7210841675153,1544312.9712006347,643105.6747397572,0.38063,100000,0,1009136,10537.518534761815,0,0.0,0,0.0,38492,401.4055092621599,0,0.0,39102,405.40484096652256,1237599,0,44421,0,0,8813,0,0,74,0.7727168306079402,0,0.0,2,0.0208842386650794,0,0.0,0.05111,0.1342773822347161,0.305810995891215,0.01563,0.3579460269865067,0.6420539730134932,23.435508065190817,4.105911718471882,0.3160493827160494,0.2725925925925926,0.2167901234567901,0.1945679012345679,11.031856334457473,5.977237152281376,16.779343073436134,11679.789209284085,46.26425031646224,13.46147974547518,14.334387303628786,9.835225336187165,8.633157931171116,0.5802469135802469,0.792572463768116,0.6890625,0.570615034168565,0.116751269035533,0.7552921253175275,0.8984547461368654,0.8625730994152047,0.7174887892376681,0.1840490797546012,0.5081910073196235,0.7188940092165899,0.6257995735607675,0.5206106870229008,0.0992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002148293019061,0.0045639870991298,0.0066401332087885,0.0090448992865708,0.0115053610302944,0.0135369132985658,0.0155000815793767,0.0177849471147956,0.0199863009497326,0.0222226771621303,0.0242327326403837,0.0263365950324972,0.0281677104865331,0.0300146262076921,0.0319384964656106,0.033935271802611,0.0358987630039853,0.0377710712174481,0.0400195369331171,0.0419739199266758,0.05641844637899,0.0709130844053969,0.0832774096132874,0.0956901082728897,0.1081371577904697,0.1235968120415195,0.1353624264277003,0.1460211368788514,0.156099124118778,0.165392328232405,0.1774799909514935,0.1889134151355796,0.2004809104657868,0.2103616856058534,0.2202824529153411,0.2303329714880702,0.2395482243699917,0.2475124938093737,0.2555715761628501,0.2623033469687074,0.2684800592380049,0.2747152513038801,0.2797599318149533,0.2854812593703148,0.2899408284023668,0.2937827346108818,0.2983080586539666,0.3020809454675123,0.3057338052087789,0.3084923840447718,0.3067739283933648,0.3050980392156863,0.3027732371343216,0.3000259912784821,0.298572425984521,0.2958596190359527,0.2916646884742597,0.2931277909114788,0.2942300800382272,0.2947458503449874,0.2956672832240345,0.2965435745937961,0.2977859240590698,0.2982295958133838,0.2985896607044513,0.2988696463756092,0.2993648633321991,0.3030889839772621,0.3074352548036758,0.3117271796487359,0.3168102476207659,0.3202388434946574,0.3234219166202069,0.3287404522989366,0.3352783180513105,0.3363213038416763,0.3433308214016579,0.3474576271186441,0.3490669593852908,0.355984555984556,0.0,1.988391316217117,51.66026019376239,150.99489197772013,208.6274802329681,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95722,47048,448.1832807505067,5295,54.01057228223397,4224,43.45918388667182,1640,16.631495372014793,77.31464774318667,79.68150991564065,63.30648041847581,65.05658254247403,77.10145578279986,79.47383788852973,63.225856870897104,64.98080811259656,0.2131919603868084,207.6720271109167,0.0806235475787033,75.77442987746963,221.9503,155.4843890065479,231869.6851298552,162433.28493611488,452.04057,298.79731955176766,471529.6483566996,311438.8351219005,438.92486,213.66808760015843,454852.5521823614,220248.81848880663,2408.4214,1139.8318304653862,2477935.8141284133,1152771.8627049043,997.87949,452.8995808954159,1022190.8129792524,453144.5770022778,1592.10398,687.3007417366107,1616989.2187793818,678800.685301666,0.38189,100000,0,1008865,10539.531142266149,0,0.0,0,0.0,38873,405.36135893525,0,0.0,39847,412.6115208624977,1233400,0,44265,0,0,8863,0,0,73,0.7626251018574622,0,0.0,0,0.0,0,0.0,0.05295,0.1386524915551598,0.3097261567516525,0.0164,0.3582712910840748,0.6417287089159252,23.277196737679027,4.108128121924733,0.3222064393939394,0.2552083333333333,0.2133049242424242,0.209280303030303,11.234009949548518,6.222663930650669,17.72363316427974,11722.183322161023,48.57923188432724,13.143571699730908,15.627834224066106,10.10353280954087,9.704293150989365,0.5835700757575758,0.7959183673469388,0.7119764878765613,0.5893451720310766,0.1210407239819004,0.7468051118210862,0.9207459207459208,0.8517587939698492,0.7882882882882883,0.1280788177339901,0.5148048452220727,0.7134052388289677,0.6542056074766355,0.524300441826215,0.118942731277533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002279288861875,0.0043292676744634,0.0068515398201343,0.0090946042068895,0.0110585482476219,0.0131830962956925,0.0154966792830107,0.0178064568826448,0.0197595731196205,0.0217231071618688,0.0237868208708847,0.0260596352883193,0.0282869427472278,0.0303551740837291,0.0323189991535746,0.034436059133671,0.0364813088951019,0.0383833143094324,0.0403539418137958,0.0425365670708838,0.0566524322123265,0.0704088254380272,0.0840519502318457,0.0968671455163057,0.1087536513091986,0.1247976811348898,0.136350609788458,0.1478267350980684,0.1583144481977166,0.1679776788109674,0.180271118444466,0.191940097958476,0.2032204996350245,0.2128970037042719,0.2224856115901122,0.2321400812773423,0.2404836743140303,0.2484998872095646,0.2563297618235173,0.2630267253161213,0.2689038602024606,0.2750583023754556,0.2808421352110672,0.28631611795912,0.291175254723634,0.2951478822861935,0.2992792071278406,0.302568473545613,0.3060245016235236,0.3086533646116133,0.3071418001802601,0.303919412912624,0.3016234450769555,0.3002870040526703,0.2989771833202203,0.295729608152149,0.2925552110358793,0.2932341934213118,0.2935190876186573,0.2933566184332454,0.2945885785900002,0.2957327288853848,0.2953327913618077,0.296717227881322,0.2989685787445856,0.3007592837337065,0.3009711494775102,0.3025525525525525,0.3062990752050253,0.310818817395426,0.3152425466261288,0.3204238410596026,0.3249384586252604,0.3288319218738079,0.332425068119891,0.3340033104752897,0.3366957053339446,0.3421967682552669,0.3465455546380402,0.3594470046082949,0.0,2.392963336504845,54.51971593276695,159.99953043552466,214.33851138132812,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95825,47083,447.3362901121836,5263,54.07774589094704,4182,43.16201408818158,1630,16.707539786068352,77.3504688262772,79.68257433555758,63.33176974345843,65.06001668444515,77.14539541548483,79.47996502333918,63.25538022847994,64.98731030362846,0.2050734107923659,202.6093122183994,0.0763895149784872,72.70638081668324,221.3992,155.2245685216582,231045.34307331077,161987.54867900672,453.89548,300.8148816454356,473207.7015392643,313457.5336764264,441.29572,214.69084046582773,457999.1442734151,222099.2678746176,2404.54832,1126.4852285537968,2481714.959561701,1147967.9296152322,965.71014,437.0365494953152,993637.735455257,441931.7916350798,1598.5706,667.2489211908581,1638742.5410905296,669165.5291177676,0.38194,100000,0,1006360,10502.06104878685,0,0.0,0,0.0,38990,406.3970780067832,0,0.0,40005,414.93347247586746,1235226,0,44360,0,0,8706,0,0,81,0.8452908948604226,0,0.0,1,0.0104356900600052,0,0.0,0.05263,0.1377965125412368,0.3097092912787383,0.0163,0.3493338200401533,0.6506661799598467,23.667895559482865,4.153716657166412,0.3134863701578192,0.2659014825442372,0.2051649928263988,0.2154471544715447,11.112644578865456,5.713606733186436,17.28884157043107,11764.36163040124,47.935100658088125,13.560258952810113,14.96178874563669,9.64167685409317,9.771376105548145,0.5667144906743186,0.7823741007194245,0.6834477498093059,0.5885780885780886,0.1098779134295227,0.7451923076923077,0.9151138716356108,0.8502824858757062,0.7096774193548387,0.1701030927835051,0.4907975460122699,0.6804451510333863,0.6217345872518286,0.5475819032761311,0.0933521923620933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008752557894,0.0047554830009227,0.006911600527758,0.0092762870467268,0.0115649856581972,0.0136888635391415,0.0159604303707103,0.018023445796912,0.019866466263816,0.0222142601218201,0.0244150037940157,0.0264519838987924,0.0288773023169715,0.0310414435198154,0.0331167491749174,0.0350895320362467,0.0370078984689599,0.0390104760916917,0.0411024391257807,0.0431098202109164,0.0575741453593298,0.0720596384471419,0.0857768648739284,0.0993002437589308,0.1118158352209872,0.1270924923909367,0.1374769387365608,0.1484262814717113,0.1593560852717316,0.1692632436139207,0.1811814073595868,0.1930431398830434,0.2037819461490838,0.2126590024915854,0.2214975473482765,0.2311083541948204,0.2399241240794465,0.2486893913826077,0.2560650266214084,0.2634037972654192,0.2694786039032403,0.2754855078394462,0.281822912970454,0.2869393376848913,0.2911599995140854,0.2951048088779285,0.2994176945714107,0.3026409616462079,0.3059585492227979,0.3089800121458559,0.3073905835096847,0.3050156351163335,0.302998688866645,0.3006316763273153,0.2987537691427892,0.2957390798616425,0.2923710034821146,0.2927925710816885,0.2938698232926247,0.2938050572416991,0.2943484353106025,0.2956653603009236,0.2967363387692885,0.297748551047704,0.2998345442773901,0.3025242819300888,0.3037698412698412,0.3084307961723685,0.3110585452395032,0.3131285246677446,0.3170720700392617,0.31983401617817,0.3222028407675056,0.3240886884629838,0.3290514753793168,0.3325151940158953,0.3352006056018168,0.3368652538984406,0.3420555705422174,0.3452200303490136,0.0,1.864200905927436,54.96280004340231,150.80400118060757,218.64399449277508,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95710,47015,447.23644342283984,5332,54.34123915996239,4180,43.01535889666702,1646,16.790304043464634,77.30949638025908,79.67005339732742,63.31695901961641,65.05981941705134,77.0969826705355,79.46172153444249,63.23527563053606,64.98269594460925,0.2125137097235807,208.33186288493263,0.0816833890803536,77.12347244209639,221.2364,155.05944560984793,231152.8575906384,162009.66002491687,451.1402,298.3746128075911,470700.7000313447,311087.7158161018,438.247,214.01761725273585,453885.1844112423,220605.9402484864,2368.80096,1123.5186777760478,2439374.9451467977,1138275.4965792997,947.17933,434.027647560796,975103.301640372,438956.8879790022,1591.74562,687.3697883922428,1624955.239786856,685209.0595364345,0.38234,100000,0,1005620,10506.948072301746,0,0.0,0,0.0,38748,404.1688433810469,0,0.0,39773,411.5139483857486,1236982,0,44397,0,0,8637,0,0,85,0.8880994671403197,0,0.0,0,0.0,0,0.0,0.05332,0.1394570277763247,0.3087021755438859,0.01646,0.3535335371336091,0.646466462866391,23.56851269098864,4.181006027039275,0.3019138755980861,0.2684210526315789,0.231578947368421,0.1980861244019138,11.389311664590137,6.141868711569412,17.703680901852888,11748.177743589062,47.94398810641502,13.626588634299662,14.431243186976555,10.759889110149231,9.12626717498957,0.573444976076555,0.7896613190730838,0.6973058637083994,0.5640495867768595,0.1026570048309178,0.740080971659919,0.9177777777777778,0.8490028490028491,0.7245762711864406,0.1616161616161616,0.5035653650254669,0.7038690476190477,0.6388583973655324,0.5122950819672131,0.0841269841269841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394537223645,0.0046224961479198,0.0070915510104699,0.0093442756155033,0.0117318151781629,0.0138121265789286,0.0159200937675177,0.0179958557473434,0.0200421078451412,0.0220343666526798,0.0240779843785235,0.0261931164777394,0.0285969891411648,0.0306587985705605,0.032858233122254,0.0349537634964095,0.0372494022914747,0.0391109543861104,0.0412015383016318,0.0431281447605554,0.0578111946532999,0.0715623986016181,0.0853079077378142,0.097671777399205,0.1092621299840762,0.125454776207801,0.1373350027587963,0.1485862113017927,0.1584761334985684,0.1685861965427015,0.1807367819931256,0.192186501792037,0.2029496598639456,0.2136179529282977,0.2229577170046149,0.2327182808099177,0.2416197371949584,0.2500929566990794,0.2576385969297897,0.2640786939374484,0.2706767787877033,0.276749356424058,0.2824918296783972,0.2870149343249565,0.2906550006076072,0.2953357012480884,0.2990001626769111,0.3020698082945085,0.3057196910796662,0.309138719310764,0.3065453319851702,0.304427459891207,0.3022268605356312,0.3002153583765736,0.2968717475987986,0.293690324755935,0.2905291860870668,0.2915181285012567,0.2924726768946585,0.2923679550698456,0.2936077599954971,0.2955374128091312,0.2954392884115129,0.2974890341061678,0.2984053572288866,0.2999270947247826,0.3011326353028444,0.304609784416481,0.3071968636236348,0.3101448131633982,0.3109087614387967,0.3133160649151557,0.3175209926055897,0.3243632504548211,0.3271518216727545,0.331489762297011,0.3329780755176614,0.3334012635011208,0.3323328785811733,0.3348519362186788,0.0,2.5197416502187053,53.44912382362119,155.51051636542306,215.75413932560065,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95737,46494,441.8667808684208,5314,54.39903067779438,4239,43.72395207704441,1600,16.367757502324075,77.40440741590693,79.76058486734556,63.3594678928421,65.09896191836174,77.20011651027941,79.56002724632918,63.28242076054824,65.02575332396515,0.2042909056275164,200.5576210163724,0.0770471322938632,73.20859439658989,221.67684,155.23694106278285,231547.71927259053,162149.36864825807,452.21873,298.85911322006353,471741.9179627521,311553.46754135133,436.93618,212.22080243579867,453005.59867136006,219078.55877842367,2429.72376,1137.7632295199476,2509244.3256003424,1159755.06807185,984.63821,441.3002646892276,1014461.1592174396,446929.3321173924,1555.07216,663.4199338341831,1592751.5589583963,664895.5598237626,0.37906,100000,0,1007622,10524.896330572295,0,0.0,0,0.0,38851,405.2456208153588,0,0.0,39643,410.6667223748394,1241826,0,44491,0,0,9002,0,0,79,0.8147320262803305,0,0.0,1,0.0104452823882093,0,0.0,0.05314,0.1401888883026434,0.301091456529921,0.016,0.3476147614761476,0.6523852385238524,23.662316703994502,4.088186650550552,0.3217740033026657,0.2602028780372729,0.2123142250530785,0.2057088936069827,11.298603561954788,6.141130754276131,17.14137159958163,11708.940606929466,48.464044479412166,13.458554415939496,15.5549713199217,9.999184976864294,9.451333766686668,0.5881104033970276,0.8213961922030825,0.7038123167155426,0.5833333333333334,0.1169724770642201,0.7474267616785432,0.9280898876404494,0.8350515463917526,0.7183673469387755,0.1675675675675675,0.520497311827957,0.7492401215805471,0.6516393442622951,0.5328244274809161,0.1033478893740902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020755920499762,0.0043374714973397,0.006512873577211,0.0086629766922256,0.0108486777220827,0.0129173452768729,0.0151541401273885,0.0177341509953776,0.0199137649174431,0.0221540035814786,0.0240030336882885,0.0263257828456477,0.0285902273031016,0.0304672050098879,0.0326052188986452,0.0345576149766893,0.0367321154881736,0.0387755313741558,0.0406755001299038,0.04271474549261,0.0573096118106454,0.071172924777094,0.0845475238904448,0.0971791448067036,0.1091470613036512,0.1248995474347587,0.1366192102862235,0.1475322573776774,0.1583440170940171,0.168605835737188,0.1801440894259038,0.1915298802194354,0.2026907975593574,0.2124363095628594,0.2218029396233057,0.231497475418549,0.2399285993194622,0.2483641760169091,0.2554062482281567,0.2626633706424958,0.2689974696999457,0.2752664075539526,0.2799216176974018,0.2850880336367328,0.290111273898461,0.2943597429880708,0.2978497577543579,0.3014390497703104,0.3061192873741286,0.3088654860042861,0.3070743646482934,0.3052276559865092,0.3031438596491228,0.300516792145911,0.2986911188345781,0.2957587584230265,0.2922698457753808,0.2927972816231846,0.2925498461695364,0.2932329491982882,0.2934502705728681,0.2941721358323971,0.2937887291618853,0.2941712811617408,0.2948150981282719,0.2969013354077531,0.2979186082634358,0.3022929777556234,0.3060415289902959,0.3113838407678388,0.3140074838826022,0.3175839208670946,0.320413115162073,0.325679439885568,0.3301177998330396,0.3340338587273788,0.3395596051632498,0.3456221198156682,0.3481256890848953,0.3527329925285096,0.0,2.20271065675983,55.305652515961945,151.7909285003537,221.66585210927727,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95759,46480,441.5355214653453,5183,53.06028676155766,4078,42.11614574087031,1536,15.716538393258077,77.33232137485312,79.69756836897713,63.31916690730778,65.07079914207704,77.1414581580394,79.50758719282014,63.24818395762421,65.00181486452217,0.1908632168137245,189.98117615699076,0.0709829496835681,68.98427755486125,222.98474,156.11831360691357,232860.34733027703,163032.52290324,449.56463,297.60900831022394,469010.3384538269,310324.86587184906,432.53547,210.43091482296853,448040.1006693888,217031.18729974687,2335.81532,1087.9099847502566,2413663.133491369,1110634.8951825637,941.81456,423.0561840356408,972315.7092283756,430641.2363518171,1498.91724,629.3983249754613,1535735.4817823912,633543.6273434204,0.3765,100000,0,1013567,10584.56124228532,0,0.0,0,0.0,38658,403.22058501028624,0,0.0,39140,405.22561847972514,1233992,0,44297,0,0,8779,0,0,94,0.9816309694127968,0,0.0,1,0.0104428826533276,0,0.0,0.05183,0.1376626826029216,0.2963534632452247,0.01536,0.3502678736375392,0.6497321263624607,23.60499366453418,4.124399223837165,0.3126532614026484,0.260912211868563,0.217999019127023,0.2084355076017655,11.251119174804137,6.013921810657936,16.387741884294996,11599.710067063474,46.7187177430357,12.907172154414171,14.570174381281149,9.9932644839373,9.248106723403078,0.5831289847964689,0.8026315789473685,0.7137254901960784,0.59392575928009,0.1011764705882353,0.7564543889845095,0.9278846153846154,0.8551136363636364,0.7601809954751131,0.1387283236994219,0.5140603566529492,0.7222222222222222,0.6598049837486457,0.5389221556886228,0.0915805022156573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020268352993635,0.0039862459300733,0.0061124197871821,0.0082730303276689,0.0105395946935785,0.0129990525768889,0.0152361915640042,0.0176622528050311,0.0197433669035325,0.0220004095004095,0.0240704480916891,0.0262406833254624,0.0285552699228791,0.0306397791876081,0.0327775828982935,0.0347062167329853,0.0367057020677372,0.0388310233214374,0.0409959575595714,0.04285565507186,0.0574542266018079,0.0719203163908012,0.0852902616812627,0.0976604805215288,0.1097521114286015,0.1250105770858013,0.1360814897342034,0.1473746953199008,0.1576727148456272,0.1665523008963417,0.1783033396874629,0.1893082033194122,0.1996084402871437,0.209122024297696,0.2176553423693011,0.2274181584686749,0.2355428137967962,0.2443987042785801,0.251902855133455,0.2588289164901837,0.2650658153468896,0.2703110383536015,0.2758743036911759,0.2812264207437571,0.2859500922419652,0.290433797544728,0.2951008213218656,0.2986915650406504,0.3022167041721632,0.306031302698145,0.3039007473520081,0.3016690706779312,0.2996948775995163,0.2968094462305907,0.2943156209227849,0.2919710260093524,0.2894491277460578,0.2900553390746259,0.2904663864831294,0.2918699476514369,0.2922973301652042,0.293443302223713,0.2949846340392616,0.2963665580502611,0.2986776105791153,0.3001143094669022,0.3008107035546233,0.304576802507837,0.3086854869665352,0.3116441067046624,0.3143697669155917,0.3205896388991993,0.3260322255790533,0.3291581264708115,0.3342009854048526,0.3309235074626865,0.3298907349199221,0.3323436262866192,0.3348574502420656,0.3379804069329314,0.0,1.85735982853774,51.06871247203918,156.9502349070918,209.99869439900093,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95729,46855,445.38227705293065,5334,54.53937678237525,4261,43.967867626320135,1621,16.567602293975703,77.41699606751023,79.76938716793482,63.36600846061516,65.10021473533243,77.21096116147828,79.56649491470773,63.28882463667755,65.02607942265539,0.2060349060319453,202.89225322709115,0.0771838239376094,74.13531267704343,221.38512,155.0674432952062,231262.10448244523,161985.6431146321,451.53491,298.29294857496086,471125.4269865976,311048.1185195416,437.99308,213.06995467590917,454240.1571101756,219926.5167146328,2433.5428,1141.8332950531303,2513332.9294153284,1164108.6773295202,1004.51179,453.8549718327771,1037267.6304985952,462149.2501320841,1585.63248,673.0009783239234,1623137.335603631,675326.2944318183,0.38094,100000,0,1006296,10511.913840111149,0,0.0,0,0.0,38760,404.3079944426454,0,0.0,39746,411.85011856386257,1242728,0,44600,0,0,8760,0,0,85,0.8879231998662892,0,0.0,1,0.0104461552925445,0,0.0,0.05334,0.1400220507166482,0.3038995125609299,0.01621,0.3528352835283528,0.6471647164716472,23.477115014655336,4.131840820029846,0.316827035907064,0.2644919033090824,0.2088711570053978,0.2098099037784557,11.534126677195465,6.144633495948645,17.314604863032496,11771.334934516191,48.84550664041206,13.860450086325418,15.286812940688913,9.85891430952194,9.839329303875804,0.5766252053508566,0.7976929902395741,0.7014814814814815,0.5584269662921348,0.1275167785234899,0.7575039494470774,0.9032258064516128,0.8671875,0.7373737373737373,0.1702127659574468,0.5001669449081803,0.7147385103011094,0.6356107660455487,0.5072254335260116,0.1161473087818696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023279823478208,0.0046095087580666,0.0068869685167153,0.0096061089166218,0.0120180575890678,0.0137930332457908,0.0158498797243853,0.0182077975096958,0.020295542338586,0.0224866236303927,0.0247059064639094,0.0269812598780763,0.0292354978977991,0.0312033365944081,0.0333515582285401,0.0351540703081406,0.0371566709113685,0.0391105487507648,0.0411963999916858,0.0433038876619859,0.0585324089542265,0.0725891670764498,0.0859052094916392,0.0978851836661724,0.1103084629580806,0.125581641285956,0.1379145763287124,0.1487350865803169,0.1590022966404956,0.1687718470545345,0.1808766055490358,0.1927541405683748,0.2035624239262737,0.2130905834298071,0.2221221243215926,0.2323554139563697,0.2414934522151017,0.2486879516312104,0.2567826491162432,0.2635295194717508,0.2706052372969535,0.2769793419330716,0.2824874116451147,0.2870307208080518,0.29079992722421,0.2946838496855113,0.2986780948573142,0.3033321053367039,0.3071643681577893,0.3103661749209694,0.3081967213114754,0.304269632070291,0.3020207844074756,0.2998108767522774,0.2984895246008665,0.2951012609858616,0.2919710332423521,0.2924183006535947,0.2922211458386444,0.2928361068729376,0.2938471562878153,0.2948655064843336,0.2957251082251082,0.2973817810982774,0.2987307343608341,0.3004941401702325,0.3030756630044906,0.3057249533291848,0.3097511021626688,0.3144829208988587,0.3188978144774043,0.3218836855629556,0.3254357129566458,0.3286123248455627,0.3313593041547145,0.3339530560074367,0.3349332533373331,0.3345864661654135,0.334402566158781,0.3432062199185486,0.0,2.02898601504062,55.42604627232878,160.48943469493992,215.1528236437936,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95684,46820,444.8497136407341,5322,54.450064796622215,4213,43.33012833911626,1607,16.282764098490865,77.3508434030137,79.74157648260838,63.31502979323547,65.08298400883126,77.14288190746622,79.53898331796285,63.23676264322908,65.00967942824096,0.2079614955474795,202.5931646455348,0.0782671500063898,73.3045805903032,222.68664,155.9301708142385,232731.3239413068,162963.68338932164,454.33312,300.3464710227887,474148.1961456461,313215.7006634221,441.68634,214.82380601892143,457570.68057355465,221349.58227803008,2408.48576,1132.933834207029,2477853.392416705,1144765.3883690354,993.9326,449.1884716825495,1017804.0320220728,448491.4117469482,1565.54926,671.2631183364211,1587584.110196062,661115.4131681258,0.38016,100000,0,1012212,10578.696542786673,0,0.0,0,0.0,38985,406.7137661469002,0,0.0,40132,415.3254462606079,1229449,0,44142,0,0,8745,0,0,83,0.867438652230258,0,0.0,0,0.0,0,0.0,0.05322,0.1399936868686868,0.3019541525742202,0.01607,0.3514440433212996,0.6485559566787004,23.6760291139537,4.066020665946442,0.3156895323997151,0.2627581295988607,0.2148112983622122,0.2067410396392119,11.12312204324351,6.015634968316214,17.232731953012202,11696.641410328211,48.0995770162609,13.450460499591635,14.899125818892704,10.15624430487814,9.593746392898424,0.5831948730121054,0.8003613369467028,0.6977443609022557,0.585635359116022,0.1297359357060849,0.7427626137303557,0.9066059225512528,0.8490028490028491,0.729957805907173,0.1593406593406593,0.5189747003994674,0.7305389221556886,0.6435137895812053,0.5344311377245509,0.1219158200290275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0043808500065915,0.0065070196631779,0.0086592405886657,0.0109768255712222,0.0131924777408773,0.0156178273776127,0.0180055967481667,0.0204027367279941,0.0227053931709715,0.024643626294739,0.0268482570201926,0.0289749233712534,0.0311662888934679,0.0334062622551549,0.035354318498992,0.0377100470339597,0.0397629377452099,0.0417832513340059,0.0437492833540074,0.0578767051745388,0.0719244421641205,0.0848658521224335,0.0975530213768725,0.1099390282495411,0.1249299127215022,0.136790600422429,0.147220122035631,0.1566030677141788,0.1662875048289479,0.1785363960720483,0.1899276837136794,0.2006833440332531,0.2100205752309241,0.2199456108866306,0.2296143525602643,0.2391559202813599,0.2482773374166816,0.2550885960926851,0.2614093613508959,0.268013662942164,0.2738056206088993,0.2794431279620853,0.2850014394012091,0.2897426859358477,0.2950520672869554,0.2991208214004327,0.3031801940414277,0.3072257213434901,0.3103561961782431,0.3074717671920638,0.3044249247391645,0.3024498635839451,0.299463544070143,0.2974845653879751,0.2941715262724025,0.2917120444465489,0.2923680981595092,0.2920797138477261,0.2922855262455753,0.292763526380643,0.2930410851189306,0.2936940686784599,0.2946311557342455,0.295325271258544,0.2962703962703962,0.2971204557633189,0.3019044062733383,0.306807919416464,0.310781744945446,0.314229425987284,0.3169401772138625,0.3192295744019882,0.3230155143846965,0.3249581239530988,0.3261585509291931,0.3295094339622642,0.3296595158433379,0.3295029396044895,0.3310580204778157,0.0,2.6687212463957897,52.16569708956057,159.08846912816824,217.95038670608477,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95714,47147,449.2028334412939,5323,54.14046012077648,4220,43.37923396786259,1670,16.935871450362537,77.26691653433518,79.62593756479343,63.2951211478972,65.03875877663639,77.04642173204749,79.41175419546076,63.21166941742497,64.9608186038619,0.2204948022876891,214.18336933267312,0.0834517304722268,77.94017277448972,221.60776,155.29698601803446,231531.1866602587,162251.06673844418,450.14685,297.73132975814684,469566.9703491652,310327.75602870743,440.62617,214.9996088112971,456246.17088409216,221338.8236888029,2428.75016,1151.9112611007547,2498336.795035209,1164554.1792360402,983.08439,456.8383345573112,1008313.266606766,458654.2876622311,1633.3511,705.7599903995466,1658849.8443278936,697068.4689608163,0.38286,100000,0,1007308,10524.144848193577,0,0.0,0,0.0,38649,403.03403890757886,0,0.0,39928,413.1579497252231,1233595,0,44350,0,0,8701,0,0,74,0.7626888438472951,0,0.0,2,0.0208955847629395,0,0.0,0.05323,0.1390325445332497,0.3137328574112342,0.0167,0.354960460100647,0.645039539899353,23.60128987969092,4.138606778019232,0.3109004739336493,0.2597156398104265,0.2097156398104265,0.2196682464454976,11.308872425438135,6.082026721614552,18.05273644140365,11784.65894977164,48.72923591969101,13.509168115353846,15.02549285671117,9.90699878621785,10.287576161408142,0.5725118483412323,0.7874087591240876,0.7217987804878049,0.5740112994350283,0.1057173678532901,0.7317262830482115,0.9107142857142856,0.8647214854111406,0.6929460580912863,0.1818181818181818,0.5027266530334015,0.7021604938271605,0.6641711229946524,0.5295031055900621,0.082036775106082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024308228335291,0.0047146376826288,0.0069204854487153,0.0091222153371054,0.0115330634827004,0.0137863622941973,0.0159335338192568,0.0180479986933575,0.0203224190630015,0.0227440222731739,0.0246225128904287,0.0266110900074946,0.0289783536428608,0.0308895023071852,0.0330757564815483,0.0347832378904715,0.0367002878860054,0.0385225916895782,0.0404781704781704,0.0422406068310167,0.0570569316235746,0.0709268854346574,0.0847439839642343,0.0974262384780504,0.1095413444190046,0.1256098464404017,0.1376348424360825,0.1486988847583643,0.1592732017196757,0.1709215442092154,0.1832001811301226,0.1940311446808049,0.2046417408161709,0.2147637040687804,0.2238519775630076,0.2331764392442441,0.2430552449116528,0.2516253337990558,0.2586226483686267,0.2658947609767282,0.2718351097686584,0.2785730170062852,0.2839093933904065,0.2895125022486058,0.2933432204420024,0.2971322849213691,0.3008922753020202,0.3041357262039714,0.3066887984023653,0.3092715319390981,0.3066655859068925,0.3044282735670592,0.3019545216862873,0.2996278544433021,0.2970381070093666,0.2943821949347659,0.2910626677039836,0.2920515733833917,0.2929374271811391,0.2928134282953366,0.2936220516765804,0.2944635856005703,0.2940842702532311,0.2948358911168365,0.2960827825751362,0.2978139935751782,0.2984306663236429,0.3034800732647003,0.3069615766340564,0.3098710377244787,0.3121442996144666,0.315397395358808,0.3196306602580319,0.3237986270022883,0.3254259625341241,0.3290375975407897,0.3289614152813787,0.3293051359516616,0.3329676357652221,0.3379737045630317,0.0,2.689693292485249,55.80215409686179,155.11702596412454,216.2219725426829,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95697,46741,444.4130954993364,5226,53.335005277072426,4166,42.90625620447872,1591,16.22830391757317,77.288290147924,79.65825365900444,63.294707477804174,65.0441445683827,77.08800925955994,79.46239446650026,63.21917735050843,64.97305605997363,0.2002808883640625,195.8591925041873,0.0755301272957424,71.08850840907621,222.89696,156.09149300575103,232919.4854593143,163110.12153542018,454.04416,300.76758319428524,473812.7214019248,313646.4974453811,436.78178,213.460572130472,452484.97863046906,219885.3315672183,2385.4816,1125.6218205106477,2457843.861354065,1141486.1323097034,958.50725,438.3304136975776,982840.4965672904,439301.680319257,1545.33878,654.7237698214541,1577663.7303154748,651691.5722113916,0.38029,100000,0,1013168,10587.24933905974,0,0.0,0,0.0,39029,407.1600990626665,0,0.0,39672,410.65028161802354,1224539,0,44032,0,0,8773,0,0,76,0.7941732760692602,0,0.0,0,0.0,0,0.0,0.05226,0.1374214415314628,0.3044393417527746,0.01591,0.3559104258443465,0.6440895741556535,23.51774610045324,4.14422986815997,0.3101296207393182,0.2698031685069611,0.2174747959673547,0.2025924147863658,11.386256741988708,6.069779716914892,16.964682746273343,11681.457610330504,47.87097444554672,13.914349122767232,14.755573032143996,9.954425683190042,9.246626607445444,0.5758521363418146,0.791814946619217,0.6904024767801857,0.5706401766004415,0.1184834123222748,0.7408610885458976,0.8928571428571429,0.8477011494252874,0.7387387387387387,0.1513513513513513,0.5066439522998296,0.7175925925925926,0.6324152542372882,0.5160818713450293,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812890549833,0.0045518597743331,0.0067175386613629,0.0092342388102155,0.0113599381661378,0.013552729383254,0.0159050590322383,0.0182514163221558,0.0203722822475952,0.0226270275802077,0.0247606944472912,0.0267188109461928,0.0290761037198494,0.0311219130398961,0.0331610813710018,0.0350137450652115,0.0371290716696693,0.0391656288916562,0.0413247209827232,0.0432417221649001,0.0574442529636012,0.0711256766519731,0.08432343927117,0.0969300230485071,0.1090373592036229,0.1236765204133491,0.1358259355222359,0.1469193807864821,0.1579915315854753,0.1676777872029721,0.1799585930255127,0.1914047688690998,0.2024482416876313,0.212570752909491,0.2217718842239746,0.2307000998557639,0.2398085824817191,0.2486047691527143,0.2564779216052051,0.262242941291293,0.2675140030847375,0.2729745255038042,0.2792954154557855,0.2845956138454517,0.2888134107592856,0.2937645881960654,0.2970585282602148,0.3004449998087393,0.3036558134704263,0.3079038891313259,0.3056820938569772,0.3034286974257207,0.3013300200491345,0.2983131832331861,0.296094459582198,0.2925505824647456,0.289414521389443,0.2897240723120837,0.2896777941025729,0.2905281193667565,0.2919148776741224,0.2924291777711973,0.2928335217045502,0.2944371480088151,0.2966510605771068,0.297286811680418,0.2980066821450818,0.3023335835835836,0.3054342128254412,0.3083794466403162,0.3116936216609122,0.3171829494307651,0.3200649878147847,0.3233207547169811,0.3273600591169407,0.3281704902759986,0.3346326836581709,0.341593973037272,0.3454157782515991,0.3390334572490706,0.0,2.4199545873554604,53.556238630737255,158.49959104679235,210.49597256569731,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95826,47184,448.21864629641226,5288,53.95195458435081,4163,42.806753908125145,1609,16.394297998455535,77.36488025655099,79.67995852610555,63.35773544642036,65.07130784641713,77.16557288333956,79.48456004430015,63.28234930665879,64.99969250167422,0.1993073732114254,195.3984818053982,0.0753861397615693,71.61534474290931,221.84844,155.3681597180859,231510.5921148749,162134.58343256114,452.01444,299.7729801770357,471044.93561246427,312172.97264733555,441.66474,215.1227995591554,456934.4228080062,221390.56803446455,2373.31772,1117.6171642768063,2442555.214659904,1132233.0936038294,970.26837,433.4738023027627,996242.7629244672,436260.4637419485,1563.53264,664.4854626694616,1595043.7459562125,662248.8687822325,0.38175,100000,0,1008402,10523.208732494311,0,0.0,0,0.0,38773,403.9196042827625,0,0.0,40069,414.229958466387,1239020,0,44519,0,0,9049,0,0,85,0.8765888172312317,0,0.0,1,0.0104355811575146,0,0.0,0.05288,0.1385199738048461,0.3042738275340393,0.01609,0.3518451519536903,0.6481548480463097,23.53438047934151,4.182754488141335,0.3197213547922171,0.2627912563055489,0.2121066538553927,0.2053807350468412,11.5803602463854,6.284042254412752,17.26990841607271,11765.627836551806,47.88980282431545,13.295466715898256,15.264049026431586,9.906021059270632,9.424266022714985,0.581791976939707,0.7787934186471663,0.7077385424492862,0.5990939977349944,0.1157894736842105,0.7518014411529224,0.9002267573696145,0.8831168831168831,0.7436974789915967,0.1351351351351351,0.5089224433768016,0.6967840735068913,0.6363636363636364,0.5457364341085271,0.1104477611940298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0044507076523784,0.0067680006494033,0.0090297810100353,0.0114702921467139,0.0137355923919683,0.0159840159840159,0.0182330481654654,0.0204551030421982,0.0224474128665745,0.0248124461935801,0.0266209642659222,0.0286953483113733,0.0309286839098796,0.0330058858091183,0.0351302803815501,0.0370297582722204,0.039227469589904,0.0411280358014308,0.0433108958686628,0.0578443438536473,0.0721691506929492,0.0857068035405646,0.0987367824178593,0.1109870783617848,0.1269006588950836,0.1387014417831075,0.1496619610511098,0.1597345935163159,0.168664246007519,0.1810426438314901,0.192804946599213,0.204747935680139,0.213863678560117,0.2232601074760706,0.2327247796711377,0.2415256597342126,0.2498315817838857,0.2579932974050088,0.2647334491587417,0.270103330831842,0.2757276567934085,0.2804644679644679,0.2849558791878901,0.289515835456862,0.294237822137987,0.2993402144303101,0.3021324155098619,0.3061543631100082,0.3103643447585952,0.3079713552513133,0.306127774115579,0.3033134013366163,0.3007938799076212,0.2976132127315124,0.2946335639502847,0.2909983374237986,0.2912937080164895,0.2916253462367062,0.2923513861103172,0.294207116702657,0.2938438378956542,0.2942311321743871,0.2968791916301529,0.2981409611422548,0.2987532467532467,0.2993630573248407,0.3035848348348348,0.3065310829227382,0.3103694307911844,0.313960373491232,0.3185661862468755,0.3242115907223661,0.32919017843526,0.3296930898135944,0.3328611898016997,0.3380647130647131,0.3485401459854014,0.3448840381991814,0.3462857142857143,0.0,2.4002703614497576,54.41116156084287,152.4460586241608,215.57729314847515,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95630,46879,446.6276273136045,5324,54.34487085642581,4267,43.96110007319879,1613,16.46972707309422,77.2563444549925,79.66735220247206,63.27473565930678,65.05610093977454,77.04813656829077,79.4626765163785,63.195433497597165,64.98070329111407,0.2082078867017287,204.6756860935659,0.079302161709613,75.39764866046994,221.463,155.19238763008,231583.1851929311,162284.20749773085,450.56098,298.5065326601091,470498.3164278992,311495.44354293536,441.83411,215.847300745546,457800.9411272613,222456.32462407192,2408.1582,1138.8123789081112,2484240.259332845,1156889.1968086488,971.16725,444.3785916032825,1001781.0519711388,450919.754892065,1563.64044,671.0482579730032,1599670.5218027816,671002.5433419191,0.38038,100000,0,1006650,10526.508417860505,0,0.0,0,0.0,38671,403.7122241974276,0,0.0,40105,415.2253476942382,1233611,0,44295,0,0,8843,0,0,77,0.7947296873366099,0,0.0,0,0.0,0,0.0,0.05324,0.1399652978600347,0.3029676934635612,0.01613,0.3517154661397521,0.6482845338602479,23.689964281538256,4.118328800587616,0.3126318256386219,0.270681977970471,0.2177173658307944,0.1989688305601125,11.222164315079722,6.142068701548919,17.38019986659319,11788.885953687712,49.13942669527084,14.09713096944549,15.213838918146909,10.473623588917851,9.354833218760598,0.5819076634637919,0.8216450216450216,0.6784107946026986,0.573735199138859,0.1130742049469964,0.7538461538461538,0.9285714285714286,0.8567839195979899,0.6872427983539094,0.1639344262295081,0.506572295247725,0.7466863033873343,0.6025641025641025,0.5335276967930029,0.0990990990990991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219020610725,0.0046623354246272,0.0070733415196013,0.0091432751211483,0.0114558958184962,0.0137933844727646,0.016035580218704,0.0180432383832604,0.0203444960415686,0.0224967730038723,0.0245854539484485,0.0268220495745468,0.0287120252838774,0.0307960368273999,0.0330248125116211,0.0349644560797177,0.037049323077561,0.0390065028151164,0.0408432970166182,0.0425689489715024,0.0571052329044866,0.071006537043245,0.0848468305792932,0.0976631578947368,0.11026098335743,0.1260212504762307,0.1383354738730323,0.1500915906960893,0.1603138294460953,0.1696572299371123,0.1825964140548349,0.1940300124600465,0.2049125864604324,0.2143741712056286,0.2232969020546359,0.2332241771660098,0.2417734827640203,0.2492785968709139,0.2574793125397835,0.2649518717804573,0.2715412269511771,0.2770150653613928,0.2820458076836399,0.2871323970711799,0.2924279124116021,0.2968213588875991,0.3008249335539842,0.3040717982713342,0.3071244145161081,0.3104710312479355,0.3079320113314447,0.3055923412238592,0.303587323565565,0.3016565457470398,0.2999522914989415,0.2973862238622386,0.2939401638823604,0.2934503424657534,0.2942984188026851,0.2949511254596,0.2950177868960454,0.2946547309501597,0.296000504403018,0.2958020386266094,0.2961120722798923,0.2976010823749805,0.2981226675782696,0.30171034049898,0.3053336589109429,0.3103339634530561,0.3131436314363143,0.3171515918195235,0.3212318477716575,0.3225854941751221,0.3238985069158193,0.32372428222713,0.3252044609665427,0.3298460323726806,0.3327991452991453,0.3298969072164948,0.0,2.561294665401693,56.53791955246453,154.2204777025392,220.682281388571,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95692,46749,444.9692764285416,5256,53.80805082974544,4097,42.22923546377963,1599,16.375454583455255,77.32722884548278,79.70298331790289,63.32110870231941,65.07551569011596,77.12464116835719,79.50155300538904,63.24652119452672,65.00326961086263,0.2025876771255923,201.43031251384969,0.0745875077926925,72.2460792533326,220.86086,154.8250244760346,230803.89165238471,161795.15996743154,446.5941,295.5920435110755,466027.8706683944,308235.50126938184,435.86157,212.79694445950904,450980.029678552,219032.50141832756,2338.66236,1094.2240389067083,2412593.696442753,1112847.4852363616,939.10233,425.015104071095,966829.7036324874,429790.3778516893,1555.2357,652.75971382452,1594320.3820591064,657059.20178966,0.37967,100000,0,1003913,10491.085984199306,0,0.0,0,0.0,38380,400.46189859131385,0,0.0,39541,408.769803118338,1242417,0,44567,0,0,8746,0,0,76,0.7733143836475359,0,0.0,1,0.0104501943736153,0,0.0,0.05256,0.138436010219401,0.3042237442922374,0.01599,0.3436988543371522,0.6563011456628478,23.791863432345245,4.206380034167374,0.3107151574322675,0.2694654625335611,0.2064925555284354,0.2133268245057359,11.252376334434436,5.956430253065531,17.063892335454693,11739.902588333423,46.90882536001647,13.56915634381991,14.443399295321491,9.425373228037936,9.47089649283712,0.5740785940932389,0.8061594202898551,0.6967792615868028,0.5685579196217494,0.1075514874141876,0.7655055225148684,0.9319148936170212,0.8625730994152047,0.7121212121212122,0.1616766467065868,0.4969178082191781,0.7129337539432177,0.635875402792696,0.5246913580246914,0.0947666195190947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.004712630864185,0.007081262047276,0.0092223000903947,0.0114702921467139,0.0135623593617952,0.0158974568147982,0.0179138623063331,0.020013089808357,0.0220581458459206,0.0243257101835709,0.0264060638428988,0.0284917867538906,0.0304997424008243,0.0324161988110964,0.0344267720118306,0.0365804386337501,0.0387969518905338,0.0408670598391945,0.0427771813339726,0.0577814915395863,0.0716162049586084,0.084969582546675,0.0983610006522333,0.1110021303971819,0.126635568389765,0.138424643724997,0.1494309168148377,0.1597231124214844,0.1692032133166018,0.1811945377789265,0.1931102404813957,0.2036148902156536,0.213439037725533,0.2223567082228408,0.2321104169435952,0.2407016839074688,0.2493167017220241,0.2567168920758827,0.263262174171973,0.2697360045368795,0.2754328497894244,0.2812104285257814,0.2866317593069651,0.2903343376421421,0.2942126348228043,0.29825879054164,0.3016773996487387,0.3048388768003315,0.308505443747938,0.3072030186645105,0.3054626992970437,0.3024805262490668,0.3000447504799849,0.2973928544900839,0.2948788715118062,0.2920063961496446,0.2921913120364154,0.2928544668097135,0.2932759815858232,0.2950027969420101,0.2951719524671441,0.2955289895892011,0.2950450952009798,0.2961523699865668,0.296903460837887,0.2965954663101908,0.3005204088030597,0.306133854967165,0.3087250980236841,0.3117765016862638,0.3170991067630795,0.3186058237741082,0.3215431627196333,0.3237185549460942,0.3283493532692536,0.3311906948270585,0.3331987891019172,0.3378119001919386,0.3368861819566044,0.0,2.2433064650054493,51.12688252112939,154.7801752019918,213.6691178438342,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95784,46864,444.3644032406247,5363,54.78994404075837,4261,43.95306105403825,1651,16.933934686377683,77.38146625236273,79.70480928075938,63.35451413110488,65.06785880592544,77.17427387283136,79.49913258504027,63.27669206460852,64.9928238362724,0.2071923795313637,205.67669571910585,0.0778220664963598,75.03496965304635,221.22474,154.96456058918957,230962.10223001757,161785.4345080489,449.78208,298.1885962656724,469029.4308026393,310776.7875686353,445.14242,217.6128485856374,461647.1331328824,224743.3787739471,2427.68804,1141.949534294591,2505730.4351457446,1164111.5713560258,963.6673,433.1037351937466,994611.1981124196,440761.62363069097,1602.98896,678.0169016361375,1645529.9423703332,683418.0929161351,0.38013,100000,0,1005567,10498.277374091704,0,0.0,0,0.0,38556,401.9460452685208,0,0.0,40278,417.387037501044,1239124,0,44493,0,0,8866,0,0,98,1.0231353879562348,0,0.0,0,0.0,0,0.0,0.05363,0.141083313603241,0.3078500839082603,0.01651,0.3556425774296903,0.6443574225703097,23.60286708124687,4.162788359950389,0.3142454822811547,0.2741140577329265,0.2086364703121333,0.2030039896737855,11.402535127174888,6.174172708432681,17.551893716236364,11743.046995469123,48.65260445474712,14.190455375244062,15.242185186981622,9.908896877849612,9.311067014671814,0.5679417977000704,0.7799657534246576,0.6923076923076923,0.5579302587176603,0.099421965317919,0.7507861635220126,0.9042769857433808,0.8608247422680413,0.7207207207207207,0.0994152046783625,0.4901304784208765,0.689807976366322,0.6235541535226078,0.5037481259370314,0.0994236311239193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161128323512,0.0042867566581539,0.0065631308264269,0.0088553091234056,0.0114085838917303,0.013844493759798,0.0161651989562948,0.0183879427341095,0.0206170821413976,0.0229783925356032,0.0250481498176453,0.0269832150038987,0.0289287622805935,0.0311705423962611,0.0332790366811686,0.0356183906146728,0.0378215608766737,0.0398623220709746,0.04211335494058,0.044051808508423,0.0587633707278893,0.0723119742183903,0.0857376584966806,0.0986796459432752,0.1113664635560522,0.1268852459016393,0.1385173478154799,0.1491345723957335,0.1590190549431769,0.1687215884724247,0.1805791796748842,0.1925743270281085,0.2036473172535287,0.2128034305842714,0.2214568661971831,0.2310922507589691,0.2399223032183882,0.2483570399711919,0.256404142253713,0.2633165598743709,0.269330986323262,0.2747049456725365,0.2807989675463834,0.2857468123861566,0.2900828252896456,0.2949733331691034,0.2985158604133585,0.3033823548104178,0.3068400957742833,0.3096577806475417,0.3069538560826073,0.3034497912546693,0.3010690673793783,0.298731690405339,0.2967387266919248,0.2950089535791358,0.2920931261056356,0.2927228395162742,0.2928548323941504,0.2926920275048418,0.2931886408979881,0.2928056281565036,0.294210844503742,0.2952930431489608,0.2955573099834924,0.2967092809169411,0.2964567932704562,0.2996506986027944,0.3024220247429866,0.3063586097946287,0.3119880526768339,0.3151556583929322,0.3199403837794199,0.3212248574001801,0.3245441795231416,0.3271060979908354,0.3281579740729575,0.3359375,0.3463945578231293,0.3374092472296522,0.0,2.0223327750627536,55.54256039912706,154.30099528568834,220.62994486773428,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95755,46804,444.5720850086158,5345,54.54545454545455,4216,43.444206568847584,1574,16.030494491149287,77.31912755708531,79.66930732103124,63.32066847763053,65.05839008567744,77.11563172986331,79.47064978582411,63.243055212249935,64.98539694179605,0.2034958272219995,198.6575352071327,0.0776132653805987,72.99314388139067,223.01334,156.25081958607385,232899.9425617461,163177.7135252194,454.0467,300.0461483616607,473578.8940525299,312751.2071031911,436.5697,212.42704503988008,452680.40311210905,219179.40605635155,2406.16796,1119.3653427921663,2480487.702992011,1136638.6954124242,990.99437,446.1569866055944,1017357.9134248864,448366.8598042854,1535.5367,660.2375691703427,1565186.423685447,655720.4327785699,0.37971,100000,0,1013697,10586.361025533915,0,0.0,0,0.0,39033,406.9970236541173,0,0.0,39538,409.6600699702366,1229080,0,44149,0,0,8694,0,0,88,0.9190120620333142,0,0.0,1,0.0104433188867422,0,0.0,0.05345,0.1407653209027942,0.2944808231992516,0.01574,0.3508425959125134,0.6491574040874866,23.69673317581776,4.092420504176281,0.3164136622390892,0.2639943074003795,0.2063567362428842,0.213235294117647,11.119089749234083,5.811035985917149,16.778770443939415,11707.381951497036,48.00043805488658,13.562408256310627,15.001985772109276,9.687390842475365,9.748653183991308,0.5768500948766604,0.821203953279425,0.6941529235382309,0.5678160919540229,0.1090100111234705,0.7502102607232969,0.9241071428571428,0.8980169971671388,0.6666666666666666,0.1358695652173913,0.5087545424512719,0.7518796992481203,0.6207951070336392,0.5375375375375375,0.1020979020979021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020152102806104,0.0041954215182561,0.0064830972768962,0.0089378212029494,0.0113189126521646,0.0135651217500229,0.0156105021667091,0.0175734182902422,0.0195294526640831,0.0218978102189781,0.0239613665258581,0.0261320464113358,0.0279326161630705,0.0302352892698203,0.0322331018685706,0.0345390657296403,0.0366164230402915,0.0387112835300707,0.0410228701461985,0.0433165996625492,0.0575457714870253,0.0716661785011925,0.0847676284572543,0.0974447949526814,0.1096364077209331,0.1248149558008712,0.1358039095064858,0.1468976451684986,0.157244457733544,0.1664111333883712,0.1792441653832484,0.1915704250506012,0.2028457362907524,0.2124188009886048,0.221716071389274,0.2314712266867496,0.2397298504130386,0.2482164960054011,0.256098529996027,0.2630276931534462,0.2692699529972909,0.2749054814884178,0.2802454220263899,0.2852806009191375,0.2903645516671125,0.2951230347755263,0.2993261185430131,0.3033151211808607,0.3071728535877229,0.310363487580181,0.3076301543268065,0.3055009147557671,0.3035898014122422,0.3005495300072306,0.2982216345511001,0.2950859837986003,0.2926118824106761,0.2927437344180553,0.2934786316040793,0.2932102622699112,0.2936659549762145,0.2938611204293861,0.2943825402144772,0.2958996601681273,0.2969376726311997,0.2975174352034974,0.2977107919806626,0.3007144200037601,0.3042823628278301,0.3074191002367798,0.3088794351918899,0.3111252115059221,0.3127352572145546,0.315561631351105,0.3199925016402662,0.3257584631603608,0.328,0.3287259615384615,0.3343307943416757,0.3401206636500754,0.0,2.281964840879999,51.69128075367372,158.93039053826223,220.7244993136943,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95681,46757,445.7311273920632,5194,53.10354197803117,4096,42.22363896698404,1595,16.272823235543108,77.34181859432726,79.72485160158031,63.3271521787835,65.0858683952027,77.13851222126279,79.52518953795511,63.25068420777703,65.01345121512816,0.2033063730644784,199.6620636251976,0.0764679710064726,72.41718007453812,222.6961,156.01709447326357,232747.58834042284,163058.76118268367,452.37016,299.5153200436661,472176.5031719986,312422.69255746296,439.73482,213.94768704065348,456231.43570823886,221015.86781603025,2357.64552,1114.623597831297,2431502.011893688,1132443.61935107,994.78139,449.1874642625149,1024730.552565295,454653.09998962434,1556.3329,664.493546616271,1589124.1312277254,662867.3283665425,0.378,100000,0,1012255,10579.435833655583,0,0.0,0,0.0,38913,406.0680803921364,0,0.0,39775,412.34936925826446,1231435,0,44250,0,0,8779,0,0,73,0.7629518922252067,0,0.0,1,0.0104513957839069,0,0.0,0.05194,0.1374074074074074,0.3070850981902195,0.01595,0.3631694790902421,0.6368305209097579,23.38011792337565,4.149223616360793,0.312255859375,0.2607421875,0.208984375,0.218017578125,11.490998324292136,6.320642343492995,17.103089619316265,11637.322279196072,47.211820245417584,13.08046915135282,14.700139847529552,9.597172760049752,9.83403848648547,0.58935546875,0.8099250936329588,0.7232212666145426,0.5922897196261683,0.1310190369540873,0.754328112118714,0.9225512528473804,0.8820224719101124,0.7511737089201878,0.1756097560975609,0.5199445022545959,0.7313195548489666,0.6619718309859155,0.5396578538102644,0.1177325581395348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366872234205,0.00428758222934,0.0062599555614175,0.0083890231764538,0.0107678854679302,0.0130630447177649,0.0156662487641296,0.0177924318365097,0.0197876102576682,0.0218653072505604,0.0241366581904683,0.0262403845166326,0.0282192936432003,0.0302121652395231,0.0321198922456057,0.0340508279978071,0.0359789017730386,0.0379376219942688,0.0402280316664412,0.0421171147691377,0.0568822865738999,0.0713709804085821,0.0840960618019985,0.0968189997158881,0.1089508940344955,0.1242728099680565,0.1356556246418946,0.145685635817845,0.1559040984657464,0.1659945948264767,0.1784344979106535,0.1905050352086015,0.2013790703238857,0.2110240180162452,0.2201641111379985,0.2298270095465922,0.2388727678571428,0.2473935781364224,0.2548223119865656,0.262034534878395,0.2685298674868759,0.2745247059373757,0.2787559865192455,0.2841041120174398,0.2888343915793563,0.293365524377325,0.2972195469725207,0.3005927395761785,0.3041321885966616,0.3080687499175581,0.3053507024815632,0.3034685656937819,0.3017321504013519,0.2987093607437778,0.296640351397875,0.2928915754839697,0.2898445399393327,0.2900235818157998,0.2907785697234253,0.2904931458073704,0.2909942349670703,0.2915264245645114,0.2927465464713493,0.2935487465181058,0.29291768424077,0.2948244473342002,0.2966667613878548,0.2994545112546241,0.3049118255442976,0.3092722307966283,0.3122759246653052,0.3142389525368249,0.317417828685259,0.3194444444444444,0.3202972596377148,0.3207747726467462,0.3226593473620006,0.3222177581357975,0.327728776185226,0.3296282100421617,0.0,2.271103705471429,52.736657843284746,156.94073972025464,207.63819662903157,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95689,47001,447.4390995830242,5247,53.54847474631358,4189,43.29651266080741,1603,16.47002267763275,77.38307130315455,79.75960919590214,63.34642469116329,65.09747455428457,77.17499420236472,79.55161686744539,63.267957461384086,65.02095432045135,0.2080771007898363,207.9923284567542,0.078467229779207,76.5202338332216,222.46554,155.88135854010127,232488.1020806989,162904.15673703485,451.85898,298.978392931787,471748.35143015394,311980.2540756874,441.00804,214.52563445309323,457893.0493578154,221924.06329582425,2390.61504,1125.743981125776,2473852.5431345296,1152004.729459944,985.55334,445.813169080914,1016908.9550523048,452973.47445490985,1560.00018,669.9041172216613,1604810.8142001692,677318.3493377009,0.38157,100000,0,1011207,10567.641003668134,0,0.0,0,0.0,38720,404.1425869222168,0,0.0,39981,414.812569887866,1234002,0,44325,0,0,8879,0,0,87,0.9091954143109447,0,0.0,1,0.010450522003574,0,0.0,0.05247,0.1375108105983175,0.3055079092814942,0.01603,0.3509060955518945,0.6490939044481054,23.638218402413973,4.178680147391686,0.316304607304846,0.2621150632609215,0.2134160897588923,0.2081642396753401,11.22625453269707,5.907547880185344,17.099145678662182,11772.321305440144,47.99129993238865,13.58195256764739,15.00685733674338,9.961598079448848,9.440891948549025,0.5820004774409167,0.8032786885245902,0.7139622641509434,0.5682326621923938,0.1169724770642201,0.7475961538461539,0.8989247311827957,0.8631578947368421,0.7045454545454546,0.174863387978142,0.5117307038422305,0.7330173775671406,0.653968253968254,0.5237388724035609,0.1015965166908563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020853790631991,0.0043057159645816,0.0062474011419762,0.0083878305373898,0.0104722688221239,0.0128363040402292,0.0151379233011886,0.017250354704039,0.0195332863144337,0.0217228847827199,0.0239498856844069,0.026277417234864,0.0282414406631493,0.0304578462172323,0.0326507453448186,0.0347771266755547,0.0367746079101663,0.0388160079707738,0.040774518265861,0.042800421021916,0.0579024339287579,0.0719175931160103,0.0847452292779135,0.0975227640737703,0.1094955927628526,0.1246339426360359,0.1361304274084125,0.1471051176245373,0.1579520232200785,0.1674345841458971,0.1808009296120161,0.1936160550161112,0.2042346905502054,0.2132215506028179,0.221932545706554,0.2322659279778393,0.2408859402224902,0.2492791169182248,0.2571266325951164,0.2637822349570201,0.2701848614985704,0.2770493338640568,0.2834330391518095,0.2877093631520852,0.2922831888533599,0.2975656077348066,0.3020051066386302,0.3058118374670722,0.3092385602714709,0.3122772747670459,0.3095862764883955,0.3067060601896386,0.3043753428125395,0.3017490187023782,0.2995744302258337,0.2967750818468317,0.2930407563158061,0.2930785868781543,0.2931799563080284,0.2944563279857397,0.2953939642477678,0.2963945377738481,0.2973445798188066,0.2967923941534497,0.2986313128904573,0.300214420419024,0.3020724658113633,0.3064435875108844,0.3078529657477026,0.3112008785002745,0.3154665222883956,0.3199958102021577,0.3249875745526839,0.3297856393344326,0.3341625207296849,0.3366944830783495,0.3400713436385256,0.3427129827285076,0.3444356330954269,0.3505683901723506,0.0,1.8124701302262975,54.869549077585376,155.14548719847892,213.9913273383496,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95696,47084,448.70214011034943,5166,52.854873766928606,4121,42.520063534526,1655,16.886808226049155,77.3960056150407,79.77910688307617,63.35197710932333,65.11288766945098,77.18143157255417,79.56852759240606,63.27053941048257,65.035306899034,0.2145740424865323,210.5792906701112,0.0814376988407588,77.58077041698641,223.5431,156.5242438794929,233597.12004681493,163564.0401683382,452.77561,299.39277254073204,472608.6461294098,312327.2995117163,438.00012,213.9434498797723,454190.3841330881,220815.1277140668,2363.24148,1114.3468889211613,2439377.5288413307,1134312.9586619716,976.44279,448.3800442741544,1004265.0058518642,452452.23862455465,1613.9495,692.1458174447499,1648855.3544557767,692843.6857403382,0.3806,100000,0,1016105,10618.05091121886,0,0.0,0,0.0,38898,405.9103828791172,0,0.0,39692,411.2397592375857,1229897,0,44126,0,0,8762,0,0,74,0.7732820598562113,0,0.0,1,0.0104497575656244,0,0.0,0.05166,0.1357330530740935,0.3203639179248935,0.01655,0.368411318660995,0.631588681339005,23.193041645689945,4.124200282887033,0.3084202863382674,0.2657122057752972,0.2103858286823586,0.2154816792040766,11.123248741088124,5.962983219704502,17.788380981010267,11674.21964790219,47.06091407069274,13.278636535421777,14.39736180847096,9.683843812479251,9.701071914320757,0.5760737685027906,0.7890410958904109,0.6963021243115657,0.5940023068050749,0.1238738738738738,0.7581543357199682,0.9391304347826088,0.8453038674033149,0.7458333333333333,0.1846153846153846,0.496159217877095,0.6803149606299213,0.636963696369637,0.5358851674641149,0.1067821067821067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0047656709456307,0.0068106615781246,0.0090728981457962,0.0113217911419445,0.013430130737588,0.0155693995534121,0.0177337185678261,0.0197611891471917,0.0220577698622285,0.0240209144966167,0.026037762970112,0.0280663142522163,0.0302733771450938,0.0325426386982944,0.034649934359462,0.0365958504676769,0.038665946978347,0.0405815791663199,0.0425438779338808,0.0570939135339523,0.071164693939489,0.0849363344591051,0.0975155867231608,0.1092020659850321,0.1244263023201708,0.1362855142269091,0.1476352178495013,0.1581904609304064,0.1680985016677928,0.1800215401184706,0.1912596679106495,0.2021691643935359,0.2119122051461426,0.2204642162090842,0.2299397750420689,0.2384648843978987,0.246885146445865,0.2551892136868343,0.2615982622613467,0.2676488926864189,0.2735030761507839,0.2799418879334782,0.2843334290362714,0.2901251030402948,0.2946461493080308,0.2978083797976774,0.3021578173335362,0.3052323331355298,0.3089403102813568,0.3057135193133047,0.3030008221430529,0.3003875968992248,0.2985934978095457,0.2966249851843072,0.2932148256746231,0.2910580916139015,0.2909567067681479,0.2919739105260469,0.2911894429821441,0.2915655453085912,0.2923697148475909,0.2935712946958496,0.2939009232954545,0.2948405298139913,0.2966415494963619,0.2975003530574777,0.3008965668051607,0.3055497455204629,0.3096733420231465,0.3135169530042723,0.3185569191705459,0.3204017576898932,0.321285140562249,0.3224325337331334,0.3266129032258064,0.334599027946537,0.3386967015285599,0.3396174863387978,0.3393061380099123,0.0,2.157983457148942,54.86377767264591,143.68163633272889,215.2190469308785,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95814,46695,443.4007556307012,5314,54.21963387396414,4224,43.41745465172104,1619,16.469409480869185,77.38566316619061,79.70742443228964,63.36611244363343,65.08461001926116,77.18061478424556,79.50740217551301,63.28869771838383,65.01186266189166,0.2050483819450477,200.02225677663432,0.0774147252495964,72.74735736950788,223.5706,156.52986465196892,233338.13430187656,163368.46875401185,456.51863,302.41635431565845,475794.5289832384,314960.81052858685,439.87624,214.71303033619148,454967.3012294654,220860.31282506615,2417.26016,1129.0186359947477,2486091.8446156094,1141629.0398508103,975.33247,440.82746271203337,1001442.357066817,443637.3498968557,1577.1984,668.5147906961282,1606059.532009936,663097.6568059798,0.37836,100000,0,1016230,10606.27883190348,0,0.0,0,0.0,39245,408.8964034483479,0,0.0,39942,412.7789258354729,1230464,0,44149,0,0,8935,0,0,75,0.7827666103074707,0,0.0,1,0.0104368881374329,0,0.0,0.05314,0.1404482503435881,0.3046669175762138,0.01619,0.3548096011550262,0.6451903988449739,23.707836578165125,4.142516688136155,0.3243371212121212,0.2677556818181818,0.2009943181818181,0.2069128787878787,11.289469685888838,6.026844040437229,17.233401141457144,11651.235396159587,48.23858248212088,13.870707175277396,15.49749359715216,9.37417543104506,9.496206278646264,0.5785984848484849,0.8107869142351901,0.6854014598540146,0.5759717314487632,0.1132723112128146,0.7433333333333333,0.903370786516854,0.8509485094850948,0.7551020408163265,0.1473684210526315,0.5132275132275133,0.750728862973761,0.6243756243756243,0.5222052067381318,0.1038011695906432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775900661379,0.0044098415498312,0.0066781013082177,0.0090524861317131,0.0112596118637861,0.0135424091233072,0.0158089471913891,0.0182161445045412,0.0203485103991006,0.0224728299801469,0.0245749597761813,0.0266142524299746,0.0287664052784657,0.0310756562017498,0.0330796675534657,0.0349942158320938,0.0369481318999679,0.0391053346185338,0.0410977395204917,0.0429760665972944,0.0577153765112082,0.0718183528821426,0.0850296639483449,0.0968552005295619,0.1093249620765211,0.125076575339572,0.1366231950079986,0.1483461587517537,0.1586009749229341,0.1675521089950943,0.1793250306510937,0.1908064603251769,0.2019760056457304,0.2120391698780581,0.2208261485573702,0.230696090571378,0.2390665032861758,0.2470711132577757,0.2540723623099753,0.2598303689817566,0.2657381422582545,0.2721024934949768,0.2778033495025316,0.2827666133001983,0.2873712120294926,0.2914318686850085,0.2958617508073264,0.3001089876818573,0.3041689239738926,0.3076791606957391,0.3049766342590105,0.3033525916370473,0.3004691538375098,0.2978346116140937,0.2962836685987044,0.2925714809664257,0.2884697475138733,0.2888732255843687,0.2891887275832622,0.2891295427378637,0.289616362548609,0.2908218664244961,0.2911323328785811,0.2927326036840574,0.2936670440584877,0.2966329702478907,0.296730571722013,0.3010245772832988,0.3039229471316085,0.3087768069896743,0.3133785197652731,0.3192873004123929,0.3245784491945088,0.325669338980487,0.3286732970538563,0.3306107954545454,0.3368951305144252,0.3407168747482884,0.3436898542755018,0.350970688998858,0.0,2.5560474477731048,51.80798770611625,161.34748111995373,218.88961341901663,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95754,47135,449.3598178666165,5232,53.42857739624454,4164,42.76583745848737,1573,15.905340769054034,77.37657405990127,79.72039891246939,63.3458979718325,65.07867017075617,77.17039054572781,79.52095239098973,63.26738169743295,65.00540013377348,0.2061835141734604,199.4465214796577,0.0785162743995542,73.27003698269152,221.87748,155.48310263750332,231715.4583620528,162376.97562243175,450.04686,298.0840003513662,469300.33210100885,310599.30023953697,441.79525,215.4689123241662,456911.4606178332,221463.8858758963,2377.68712,1118.155968473218,2444332.936483071,1129061.1592643976,945.44015,430.8673159264836,969795.632558431,432495.4102829162,1532.05306,657.6989919290108,1552360.9039831234,647970.719259376,0.38244,100000,0,1008534,10532.52083463876,0,0.0,0,0.0,38621,402.59414750297634,0,0.0,40089,414.1759091004031,1237099,0,44319,0,0,8766,0,0,84,0.866804519915617,0,0.0,4,0.0417737118031622,0,0.0,0.05232,0.1368057734546595,0.3006498470948012,0.01573,0.3581081081081081,0.6418918918918919,23.461349911893063,4.100728595806174,0.3196445725264169,0.2723342939481268,0.2053314121037464,0.2026897214217099,11.257779487358157,6.03845600083033,16.903237065598194,11721.101677533936,47.74103748688564,13.98700563043688,15.15354018988663,9.39247178527226,9.20801988128988,0.5809317963496637,0.810405643738977,0.6934635612321562,0.5625730994152047,0.1137440758293838,0.7435483870967742,0.8983402489626556,0.8541114058355438,0.6820512820512821,0.1827956989247312,0.511969904240766,0.745398773006135,0.629979035639413,0.5272727272727272,0.094224924012158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877848678213,0.004277792983203,0.0065443698126991,0.0088687065707667,0.0108717760963306,0.012718811417399,0.0148361901071672,0.0171315391840568,0.0192498389883356,0.0213735144486186,0.0237475401771072,0.0259081717494174,0.0280550615278648,0.0301023665835925,0.0321039872079228,0.034077871605908,0.0361584260937095,0.0382165605095541,0.0402224763488928,0.042012518355742,0.0570185051820772,0.0706322812741837,0.0843038797396035,0.097313884568498,0.1104459994941404,0.1260173773333615,0.1373910646508767,0.1486088205564718,0.1589244142585592,0.1688755924424714,0.181000592385158,0.1918807210404449,0.2032461951851005,0.2120224079828438,0.2209793905231636,0.2309065111845168,0.2393421023247504,0.2480250275708402,0.2547947070973013,0.2615137982365739,0.2683101768836547,0.2742654022894426,0.2795870583226905,0.285736521353911,0.290058167069424,0.2944981027940669,0.2986066854108091,0.3027543906434531,0.3058937572702598,0.3087159891955991,0.3069886768123144,0.304785963370768,0.3020413324154596,0.3008880175296967,0.2991274461875768,0.295459058208978,0.2933402804092459,0.2939366663939121,0.293912184150892,0.2939555065530916,0.2959675611032215,0.2969669533725668,0.2977626580957549,0.2999222654081066,0.3008481662883765,0.3017621145374449,0.302993435943866,0.30951416373212,0.3129313349599164,0.3156088517218255,0.3202028434302273,0.326049089469517,0.3282147315855181,0.3333584507572903,0.3373247934651443,0.3335290663534938,0.3394509328075231,0.3445528779127664,0.3479913137893594,0.3492243662504729,0.0,2.7705977797976686,53.50650638457751,155.08464338424352,211.99527456842148,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95762,47044,448.0900565986509,5178,53.00641172907834,4069,42.02084334078236,1547,15.820471585806478,77.3313489084019,79.69644880220332,63.31030609897547,65.06267604940815,77.12899629475035,79.49556097244042,63.23399609216404,64.98906077770522,0.2023526136515556,200.8878297629053,0.0763100068114255,73.61527170293414,222.7214,156.03468566261475,232578.0581023788,162940.08652974534,452.11492,298.6521743013301,471689.7621185856,311435.43817101786,437.67159,212.79440296204083,454064.62897600303,219975.4251529878,2300.69712,1087.7042419270051,2377540.778179236,1110866.232876303,951.20135,432.4545124826106,980090.704037092,438386.4398013936,1501.14808,644.019341783179,1537047.325661536,647178.5544257062,0.38135,100000,0,1012370,10571.729913744492,0,0.0,0,0.0,38781,404.5028299325411,0,0.0,39685,411.4158016749859,1231262,0,44220,0,0,8795,0,0,74,0.762306551659322,0,0.0,0,0.0,0,0.0,0.05178,0.1357807788121148,0.298764001544998,0.01547,0.3485045513654096,0.6514954486345904,23.611426068626347,4.138056257908737,0.3180142541164905,0.2659130007372819,0.2174981567952814,0.1985745883509461,11.616561091885307,6.390171041328926,16.70410518334989,11768.296563232898,46.723424333366246,13.25907030492896,14.752178137568754,9.836632741739429,8.875543149129111,0.5959695256819858,0.833641404805915,0.6931993817619784,0.5943502824858757,0.1237623762376237,0.780327868852459,0.925764192139738,0.8826666666666667,0.7761904761904762,0.192090395480226,0.517023517023517,0.7660256410256411,0.6158868335146899,0.5377777777777778,0.1045958795562599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0044515651459687,0.0067495559502664,0.0091241617557407,0.0114447903314411,0.0134126345591754,0.0157334991995595,0.0179503149984173,0.0201495361515408,0.0222053792736137,0.0245015589104036,0.0262598243180767,0.0283312065203968,0.0301662389594863,0.0324108958412898,0.03441251589821,0.036273829617587,0.0383222472423132,0.0402802465670835,0.0422755251892972,0.0567542458689547,0.07096517662816,0.0843700828700304,0.0972165262836892,0.1093257420001054,0.1249735584041968,0.1371874867354302,0.1477232784789902,0.1583306615368173,0.1693796744390673,0.1821503244023883,0.1934593101954626,0.2049945025636559,0.2140863263675274,0.2233647843750344,0.2329327509367863,0.2423342340933961,0.2500253267146186,0.2576713572401271,0.2640648990535554,0.2709500439835177,0.2771696500696582,0.2828263677406358,0.2869919089577681,0.2907635797513926,0.2959939829599398,0.3000575662011313,0.3039632439036807,0.3076095550399855,0.3107821015267276,0.3085199499064112,0.3054116094624129,0.3035350054157464,0.3001298701298701,0.2982248169990812,0.2954319837500191,0.2924013500299656,0.292571204214177,0.2935443749680541,0.2941030018494807,0.2952055689304443,0.2964041803617469,0.2980773241022647,0.2983350398432978,0.2996433956393748,0.3002438897825749,0.3008491367110105,0.3049452269170579,0.3090775321444837,0.3122770864706348,0.3147014823881409,0.32268252882034,0.3234926975408813,0.324966078697422,0.323820079431052,0.3269474899019042,0.3321476211649622,0.3361867704280156,0.3453046022878425,0.3443536404160475,0.0,1.8647029024245716,53.6223653349216,149.2339969465435,209.5106199827769,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95487,46663,445.55803407793735,5230,53.57797396504237,4180,43.16817996167018,1686,17.300784399970677,77.22623088476638,79.71485497451302,63.24095407219974,65.07691073786617,77.0142455973104,79.50276212961721,63.16173980372671,64.9999947098549,0.211985287455974,212.0928448958068,0.0792142684730308,76.91602801126862,222.52142,155.84272791829176,233038.44502393,163208.31937152884,449.12524,297.20414932073834,469717.249468514,310628.1212518421,437.50716,213.45578546419017,453893.4409919675,220296.1723310788,2374.0798,1119.7058199457692,2453003.2779331217,1139959.0406842085,984.64598,442.8723277329109,1016367.515996942,449267.67120141,1629.98074,687.410093440351,1673570.538397897,692573.6120318591,0.37891,100000,0,1011461,10592.656591996816,0,0.0,0,0.0,38669,404.30634536638496,0,0.0,39635,410.84126635039325,1228111,0,44064,0,0,8767,0,0,89,0.9320640506037472,0,0.0,1,0.0104726297820645,0,0.0,0.0523,0.1380274999340212,0.3223709369024856,0.01686,0.344391495601173,0.655608504398827,23.52090442996713,4.060034682618458,0.3102870813397129,0.2669856459330144,0.2217703349282296,0.200956937799043,11.307024141499197,6.154127177821127,18.000792165151015,11706.376307799532,47.93033696888924,13.503861089643731,14.815244149486151,10.390880964133592,9.22035076562575,0.5842105263157895,0.7777777777777778,0.7139552814186585,0.598705501618123,0.1107142857142857,0.747163695299838,0.9049881235154394,0.8803191489361702,0.7620967741935484,0.1111111111111111,0.5159538357094365,0.7007194244604317,0.6460369163952225,0.5390279823269514,0.1105990783410138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914475350863,0.0048383661131792,0.0069750441651268,0.0091713268937468,0.0111479882717054,0.0131987973296641,0.0154491372360942,0.0175341793881429,0.0197141600253716,0.0219462715927952,0.0239981934636229,0.0260024676125848,0.0280492199969108,0.0301683237757333,0.0322060692476984,0.0342289175337785,0.0363074305750059,0.0384099626815247,0.0406842878426388,0.0423750052211687,0.0569750766750756,0.0714810307201611,0.0848327426834782,0.0977329496948809,0.1091771817470885,0.1250940696380306,0.1359736324490989,0.1464679334663437,0.1573451289521035,0.1671109486854268,0.1800123074265603,0.1920286318529364,0.2025902951148517,0.2124716379300895,0.2214414156011782,0.2306256458118062,0.23867055967603,0.246868905497875,0.253508632258945,0.2609962934486993,0.2677946053760697,0.2745412978486429,0.2806634553781174,0.2848937116214235,0.2897340905213386,0.2939212582846968,0.2971319455785731,0.3008980697249581,0.3050543626514945,0.308790452753301,0.3065276408379367,0.3042519467989801,0.3028550471139197,0.301144574830915,0.298814323331201,0.2962019879739845,0.2932918801452976,0.2943488701029571,0.2950755111126331,0.2945005812393812,0.2954196184264777,0.2971396943999683,0.2987230479380364,0.2992739863732827,0.3002110109342029,0.3010377922854839,0.3016288126439069,0.3053689167974882,0.3103738514413972,0.3125867745646396,0.3176952858118879,0.321258341277407,0.3252861342172743,0.3274862606338929,0.3328729281767956,0.3368909512761021,0.3410876132930514,0.347112462006079,0.3585733882030178,0.3644325971058644,0.0,2.292066509796383,53.74939382427819,153.42230345477796,218.2524008065061,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95710,46612,445.2617281370808,5274,53.93375822798036,4171,43.01535889666702,1635,16.64402883711211,77.36399481233721,79.74859789608698,63.33329461681414,65.09704504157709,77.15284000521343,79.54259046084326,63.25326905672883,65.02221861374765,0.2111548071237763,206.00743524371975,0.0800255600853105,74.82642782943572,223.08286,156.1896696424426,233082.08128722184,163190.54397914806,451.73334,298.7112907154347,471401.1702016508,311520.2285188952,434.92582,211.51325788151465,451580.1692613103,218711.19741052203,2399.3726,1124.5044696931063,2474541.469021001,1142530.048786027,985.14908,446.1685950505321,1014207.9615505172,451168.12891678,1601.01902,681.9418091967436,1631883.9619684464,676258.6445118524,0.37809,100000,0,1014013,10594.640058510084,0,0.0,0,0.0,38820,405.00470170306136,0,0.0,39409,408.8914429004284,1233108,0,44287,0,0,8884,0,0,89,0.9298923832410408,0,0.0,0,0.0,0,0.0,0.05274,0.1394905974767912,0.3100113765642776,0.01635,0.3434600691286156,0.6565399308713844,23.553459758236844,4.234544664497013,0.3032845840326061,0.2646847278830017,0.2100215775593382,0.2220091105250539,11.300690873517835,5.942493666082212,17.436001516378415,11568.634244263436,47.70253094079472,13.497189346054649,14.323864694331146,9.825537553423032,10.055939346985896,0.5715655718053224,0.7916666666666666,0.7011857707509881,0.58675799086758,0.1177105831533477,0.7441295546558705,0.92183908045977,0.8725212464589235,0.725,0.1739130434782608,0.4989782016348774,0.7070254110612855,0.6348684210526315,0.5345911949685535,0.1015299026425591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0044621578589755,0.0066900836514253,0.0089131451104742,0.011090986792568,0.0133158098498278,0.0154229058713125,0.0173005433228481,0.0192588956051261,0.0214214767712141,0.0233812580757634,0.0256036315459745,0.0275560584241925,0.0296139063771909,0.0314260944950151,0.0331792756185572,0.0352196567119342,0.0371181304997509,0.03890731058283,0.0408001667013961,0.0555190024125074,0.0692304471612795,0.083342950365622,0.0960719356365357,0.1078081022105562,0.1236901929685434,0.1354762081508425,0.1466323393299786,0.1566063116539266,0.1660432364068981,0.1779418411933102,0.1896087318672046,0.1996128667435133,0.2100220914718169,0.2193093433371104,0.2286204605845881,0.237712781384557,0.2457943504857862,0.2527797948624852,0.2590642136715932,0.2658825162208112,0.2719971005681951,0.2776278728490615,0.2829155483128834,0.2879293806233836,0.2920770139846366,0.2954525562960277,0.3000978013742998,0.3026897139756608,0.3051764303294331,0.3034580004028738,0.3018497680928726,0.2995169082125604,0.2963763417621209,0.2940018355685821,0.2899392055583489,0.2876009381542287,0.2879669944392805,0.2885261478942545,0.2888423221040294,0.2904014026710438,0.2910199665584735,0.2926300427394975,0.293708321252537,0.2945062836624775,0.2947360204001977,0.2959044368600682,0.300118920948864,0.3031394210599916,0.3065534938807738,0.3109734032929256,0.3140991892176477,0.3176883980673903,0.3208263709554914,0.3247670149675233,0.3305628116836855,0.33651330973996,0.3382233088834556,0.3473800942611588,0.3565891472868217,0.0,2.1935741951569234,53.97993354015199,152.94063689709316,215.11630581459104,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95658,47178,449.277634907692,5273,53.78536034623345,4154,42.69376319805976,1610,16.38127495870706,77.31725194233033,79.72468341018555,63.30264576078415,65.08445131433663,77.10743049683312,79.52152284712501,63.2231656059429,65.0112279532193,0.2098214454972122,203.16056306053557,0.0794801548412493,73.22336111732852,222.18416,155.66730841003377,232269.29268853625,162733.18322569338,454.96599,300.79485319238256,474856.3005707834,313687.20148067345,437.7723,213.04166556976105,453672.8971962617,219747.43958339223,2371.60892,1111.137922607595,2439106.818039265,1121421.94338957,977.49924,441.025455967403,1004537.7281565577,443712.9314510047,1576.47424,672.7003685842683,1605606.2848899204,664382.1406381979,0.38382,100000,0,1009928,10557.695122206193,0,0.0,0,0.0,39016,407.12747496288864,0,0.0,39735,411.3299462669092,1232879,0,44230,0,0,8790,0,0,82,0.8467666060339961,0,0.0,0,0.0,0,0.0,0.05273,0.1373821061956125,0.3053290347051015,0.0161,0.3609187021509296,0.6390812978490703,23.73960127411788,4.141523643685756,0.3009147809340395,0.2645642753972075,0.2212325469427058,0.2132883967260471,10.960113354218787,5.680003864858437,17.232808640775392,11800.560819990968,47.528788343627575,13.487489921508567,14.06074276291586,10.287638248188337,9.69291741101481,0.5739046701974001,0.816196542311192,0.6944,0.5516866158868335,0.1264108352144469,0.7600671140939598,0.9297872340425531,0.8765060240963856,0.6682242990654206,0.1988636363636363,0.4989871708305199,0.7313195548489666,0.6285403050108932,0.5163120567375886,0.1084507042253521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025428794310433,0.004745728337474,0.0068502186995747,0.0088406548181568,0.0109477539807702,0.0131506570235306,0.0153122640931997,0.0176834749918273,0.0199095578154733,0.0220373538783079,0.0241715399610136,0.0263774430218459,0.0288017128681276,0.0310228573196003,0.033121611154144,0.0349929641585961,0.0369567921711726,0.0388418079096045,0.0409955466766554,0.0428785888534434,0.0569028388728097,0.071454004691689,0.0849448818897637,0.0976492623692573,0.1092858122579896,0.125537139349294,0.137504245923913,0.1489876127685409,0.1592060539985891,0.168824898883155,0.1811336608066184,0.1937062255756303,0.2042639792786714,0.2143693698624139,0.2233836325586518,0.2332568629406745,0.2419545616854133,0.2496681888736418,0.2573645345341939,0.2642593822270052,0.2706742560969966,0.2770222071497901,0.2828991750795924,0.288562698460248,0.292303393989456,0.2975657854193628,0.3018091282153938,0.3059128577965326,0.3084912371467374,0.3113680966242114,0.3092096423100696,0.3062412477003762,0.3043020119141283,0.3022605386079234,0.3000653381247958,0.2976090186407708,0.2952271038527816,0.2943596636451555,0.2951227406688131,0.295182009038181,0.2964429831116425,0.296347373812995,0.2976636198205359,0.2984988066293413,0.2998653587228313,0.3018563357546408,0.3018969727949111,0.3061645763613048,0.3106341326994337,0.3143794207136365,0.3179196002725414,0.3236850460366176,0.3250188489570244,0.3295826047289591,0.3290806754221388,0.3327450288269208,0.3299632352941176,0.3274014155712841,0.3256313809779688,0.3267363704256908,0.0,2.8960404184894317,51.12710340002461,159.47932867977633,212.7844581476023,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95875,46450,441.91916558018255,5215,53.319426336375486,4111,42.503259452412,1607,16.54237288135593,77.4717338221379,79.75805500263344,63.40399372213196,65.09072650953269,77.26674873305507,79.5506588015223,63.32778485345441,65.01479532519213,0.2049850890828395,207.39620111113769,0.076208868677547,75.93118434056123,221.76198,155.32848191548322,231303.23859191657,162011.45440989124,445.64528,294.8153021121199,464348.4641460234,307029.06087313674,434.26024,211.72196656522416,450015.5723598435,218674.59836659572,2345.92196,1102.9278981433831,2427355.2020860496,1130881.6043216512,959.27595,432.1539993207539,990704.9700130378,440903.7176748405,1561.11832,661.7136521181765,1608081.814863103,674907.0929987709,0.37779,100000,0,1008009,10513.783572359844,0,0.0,0,0.0,38263,398.6962190352021,0,0.0,39463,408.84485006518906,1245538,0,44600,0,0,8800,0,0,78,0.7822685788787483,0,0.0,0,0.0,0,0.0,0.05215,0.1380396516583287,0.3081495685522531,0.01607,0.3582062120933652,0.6417937879066348,23.66708206075423,4.173198380202067,0.3096570177572367,0.2707370469472148,0.2091948431038676,0.2104110921916808,11.240329995591994,5.95968658953966,17.09109507163576,11633.161686429605,46.9888924169333,13.642350594915422,14.37507101645131,9.606602287097813,9.364868518468752,0.5718803210897592,0.779874213836478,0.6952081696779262,0.5767441860465117,0.1179190751445086,0.7435064935064936,0.9253731343283582,0.8241758241758241,0.7607655502392344,0.1210526315789473,0.4984369572768322,0.6739130434782609,0.6435643564356436,0.5176651305683564,0.117037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021358437088774,0.0043257590339475,0.0065099677543653,0.0087494924888347,0.0110458499308999,0.0133384883046588,0.0157077662782169,0.0174420383724844,0.0195249474092682,0.0217111183833756,0.0241194604614959,0.0261112136689024,0.0280651291797216,0.0301056682203084,0.0319750961211384,0.0341690588794118,0.0362037755365916,0.0381075759146025,0.0398608659536912,0.0418327315108692,0.0562002773520181,0.0707782365546438,0.0841454469244472,0.0971286889465555,0.108940107707062,0.1239177546381944,0.1347153006043897,0.146366112080337,0.1570266461696131,0.16647911776999,0.1796309248399419,0.190639318751621,0.2016981910573519,0.2110175875282481,0.2198928155680994,0.2300269696701742,0.2390488388929108,0.2466151739003525,0.2545691314686898,0.261266204815145,0.2669098717401092,0.2726032190342897,0.2779673021306734,0.2827222627344563,0.2878639069756162,0.2924513216644731,0.2965085787068255,0.3005787683403564,0.3046403802192977,0.3070993541258336,0.3048376052310047,0.3029286066516903,0.3016353894919913,0.2988310736006671,0.2966483833291444,0.2933794300857461,0.2897159493272484,0.2898947883533154,0.2901201058560086,0.2904791426800106,0.2919588549320139,0.2930219790992687,0.2939464493597206,0.2938476887263053,0.2961057520543051,0.2973650219581503,0.2975525855749168,0.3031498508946322,0.3084170203954861,0.3109289617486339,0.3127794670005366,0.315122308941386,0.3175246167269101,0.3216205982582355,0.3256906596504416,0.3291888691533451,0.3333333333333333,0.3333333333333333,0.3353147797892462,0.337087087087087,0.0,1.482470439071031,54.33381320201822,150.36450789310314,210.36755074116184,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95737,47193,449.7007426595778,5228,53.47984582763196,4154,42.77343137971735,1583,16.106625442618842,77.34438518034166,79.69823010327825,63.33412346583962,65.07273301122699,77.14251144969833,79.49942546270607,63.25862223085876,65.00103385477173,0.201873730643328,198.8046405721775,0.0755012349808623,71.69915645525293,222.99288,156.2223849965446,232922.36021600844,163178.69266484704,452.29932,299.12113144859995,471816.4659431568,311817.5224297815,441.85107,215.38219131179056,457415.85802772176,221779.80994210037,2364.28148,1108.7422954335825,2435753.073524343,1124306.9402985072,958.72552,432.83727342764246,987577.7181236094,438273.8206612892,1535.7504,648.3152230904075,1564617.149064625,645074.245713152,0.38336,100000,0,1013604,10587.380009818566,0,0.0,0,0.0,38862,405.2665113801352,0,0.0,40069,414.5001410113123,1230705,0,44200,0,0,8817,0,0,78,0.8042867438921212,0,0.0,1,0.0104452823882093,0,0.0,0.05228,0.1363731218697829,0.3027926549349655,0.01583,0.3439839328099324,0.6560160671900676,23.60157832630072,4.057193247707212,0.3298025999037072,0.2645642753972075,0.205825710158883,0.1998074145402022,11.500208846599364,6.396910627469098,16.88444495424449,11793.108096041968,47.705610826635,13.423564469805456,15.666474408209508,9.57735826897593,9.038213679644112,0.5876263842079923,0.7979981801637852,0.7116788321167883,0.5812865497076023,0.1108433734939759,0.7686567164179104,0.9155844155844156,0.8918918918918919,0.7184466019417476,0.1547619047619047,0.5135685210312076,0.7127158555729984,0.645,0.5377503852080123,0.0996978851963746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183055791904,0.0045218131862561,0.0068385434105459,0.0090389283284076,0.0109400736116477,0.0133661804078059,0.0156437903834002,0.018184601255166,0.0201387540742405,0.0225621610559705,0.024776621034511,0.0268600342806704,0.0289641983178761,0.0310295465546183,0.0328766840661041,0.0346709105376833,0.0365904150709036,0.0387750445928568,0.0406256495531074,0.0421961584933961,0.0569516511280707,0.071237951712662,0.084437311851642,0.097202650120938,0.1099183837020477,0.1251625728273397,0.1367801463569837,0.1475381931146006,0.1584646930667692,0.1683461258093563,0.1808258697898725,0.1931077002952915,0.2040572273438859,0.2143200647036964,0.2236542585363171,0.2327591932520091,0.2417094398571747,0.2494771168334645,0.2571772098773834,0.2642543985164665,0.2705068751373293,0.2769545640605813,0.2829934226091894,0.288007769411539,0.2934853894920936,0.298168814353536,0.3019635835399604,0.3060125292859326,0.3095990468296726,0.3126426771175593,0.309905958643329,0.3072937425269031,0.3040272422818225,0.3013222090707007,0.2992443923221947,0.2970250034450552,0.2935336774438709,0.2941735794616217,0.2933367460114324,0.2948199362069887,0.2948509485094851,0.2962321010025408,0.2975320499436255,0.2993532560214094,0.3017274472168906,0.3027880172369036,0.3034746844419231,0.3070419889156777,0.3094048159927305,0.3128982467249772,0.3137734311328443,0.3160594363069113,0.3179027812578301,0.3210201625037616,0.330692515611893,0.3311825434068512,0.3321657021017362,0.3352459016393442,0.3397062898309781,0.3394033320418442,0.0,2.374207503850911,52.28318639727889,161.22366192895902,210.19220147712517,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95680,47028,447.34531772575247,5240,53.75209030100334,4179,43.19607023411371,1583,16.2311872909699,77.28108161739658,79.6690957839347,63.29287913429015,65.05604184561987,77.07317093304471,79.46273560483051,63.21463866463495,64.9809604436107,0.207910684351873,206.36017910418047,0.0782404696552063,75.08140200917524,221.7974,155.410896469016,231811.20401337792,162427.32344169728,450.75682,298.1999105300915,470629.73453177256,311185.2662312829,442.75777,215.57141275756345,460140.8758361204,223336.61769510372,2398.50752,1125.1993539809291,2479678.4698996656,1148904.885013513,980.933,441.5677622886382,1014308.5806856188,450640.7019572303,1549.95226,660.9503267060746,1589921.7391304348,663584.840625421,0.37975,100000,0,1008170,10536.872909698995,0,0.0,0,0.0,38607,402.9995819397993,0,0.0,40038,415.80267558528425,1232090,0,44280,0,0,8804,0,0,94,0.9824414715719064,0,0.0,0,0.0,0,0.0,0.0524,0.1379855167873601,0.3020992366412213,0.01583,0.3406049495875343,0.6593950504124656,23.69704359389316,4.149643687340974,0.3187365398420674,0.2555635319454415,0.2172768604929409,0.2084230677195501,11.292793884198096,6.003995899183795,17.040519810861653,11732.988035580169,47.837210925931686,12.958855779743043,15.249328737164229,10.11629087739577,9.512735531628651,0.5750179468772434,0.8108614232209738,0.6794294294294294,0.5781938325991189,0.1228473019517795,0.7568,0.9200968523002422,0.8533653846153846,0.7510548523206751,0.1793478260869565,0.497439399112325,0.7419847328244275,0.6004366812227074,0.5171385991058122,0.1077147016011644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0043187785764251,0.0065051706465591,0.0087878818664851,0.0109330187336004,0.0134821392203983,0.0158757672777698,0.0178870421039735,0.0199948888320981,0.02215989928249,0.024299966164604,0.0265719331389379,0.0286301933360756,0.0306318001978239,0.0328406886017421,0.0347098722031515,0.036867075495152,0.038859942291325,0.0409233233816354,0.0431315731871293,0.0579127182305434,0.0727426937937822,0.0858630390057521,0.0982418114287518,0.110446406904483,0.127016704928959,0.1389204394671195,0.1492411736514191,0.1595231731437429,0.1689823265402538,0.1805181078924095,0.1915799739921976,0.2022041207474844,0.211687543798178,0.2209025604865365,0.2309552063347713,0.2395922974619176,0.2473725119124058,0.2551107373779843,0.2626116672973934,0.2690993339125398,0.2754302316045969,0.2809224567227887,0.2865496373853321,0.2908162024084661,0.2951458705976685,0.3000275564908061,0.3043062810549115,0.3075616523610714,0.3094300216782107,0.3070074863424833,0.3047247567329161,0.3022506675708897,0.299207579423141,0.2974925880126935,0.2937558476617022,0.291360410594348,0.2914838009763795,0.2909924395333721,0.2922036197479741,0.2930966617308017,0.2936632133589525,0.2942486241230097,0.294666069027342,0.296868224524211,0.2974823609049962,0.2977560086570224,0.3037891165011939,0.308096004478343,0.3130486358244365,0.3172933012835049,0.3207965770429454,0.3221602656475158,0.3266520985607716,0.3303579730357973,0.3341051169252141,0.3354955498566903,0.3423351866560762,0.3448460508701472,0.3335866261398176,0.0,1.858285485577643,55.162763485380026,148.7527018365318,219.27169466355983,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95725,46809,445.891877774876,5254,53.66414207364848,4183,43.09219117262993,1658,16.913032123269783,77.3612597271838,79.7282125667845,63.34108899169471,65.08981747938302,77.15263720567853,79.52130226165897,63.26212423695685,65.01364659707728,0.2086225215052763,206.91030512553252,0.0789647547378606,76.17088230573188,222.07878,155.59354578580303,231996.6361974406,162542.22594494963,451.3458,298.4316089874276,470929.1825541917,311185.96916942025,437.83633,213.8530289381389,453232.603813006,220188.9215465189,2412.88352,1136.2731474926322,2489588.8848263253,1155966.139976633,1007.06035,455.6459650546566,1039912.6664925568,463872.567307032,1617.51332,688.0908410481164,1653477.712196396,688397.7162987271,0.37993,100000,0,1009449,10545.30164533821,0,0.0,0,0.0,38738,404.074170801776,0,0.0,39782,411.5957168973623,1237863,0,44401,0,0,8798,0,0,80,0.8252807521546096,0,0.0,0,0.0,0,0.0,0.05254,0.1382886321164425,0.3155690902169775,0.01658,0.353415125434902,0.646584874565098,23.48769300041179,4.175171844559563,0.3160411188142481,0.2534066459478843,0.2108534544585226,0.2196987807793449,11.1287737931929,5.981449286504057,17.718819322446738,11674.20865158485,47.898255181370665,13.038618241619288,15.16075913514176,9.688201613197585,10.01067619141204,0.5768587138417404,0.7971698113207547,0.7012102874432677,0.5963718820861678,0.1251360174102285,0.744313725490196,0.9131403118040088,0.8496420047732697,0.7294685990338164,0.16,0.5034387895460798,0.7119476268412439,0.6323366555924695,0.5555555555555556,0.1154381084840055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023905754601351,0.0046435234001135,0.0067991313348622,0.0089809104855177,0.0111054612020746,0.013431498340156,0.0154691738217119,0.0176443559503752,0.0197838600509166,0.0216420966420966,0.0237765679308541,0.0256560365634468,0.0277380670773724,0.0298850337893522,0.0320000825542278,0.0340125505277631,0.035995733532159,0.0381566112529315,0.040346061059812,0.0423018014732696,0.0572597991104057,0.0706697507928367,0.0845518051563909,0.0974996845691214,0.1100607057038067,0.1255430474076423,0.136711625736947,0.1476740721824991,0.1581808666303523,0.1678189750351052,0.1796130615936177,0.1907862713496089,0.2012849362423768,0.21071846273241,0.2193502281347919,0.2290197988025542,0.2380777164520265,0.2466931142603477,0.2554134639366937,0.2619102126782812,0.2690684579898486,0.2745679935505731,0.2796637224646163,0.2848574814743874,0.2895027222350216,0.2938073338088094,0.2973509685638278,0.3017520677957488,0.3048681095486358,0.3077004233320585,0.3056918877489276,0.3040421792618629,0.3028931312733713,0.3002842671822917,0.2979503391365006,0.2946827387872484,0.2919003459770296,0.2918106342214289,0.2923257675083859,0.2923632996812848,0.2923128666990545,0.292861091368554,0.2946994249869315,0.2951550690062652,0.2960341642474988,0.2978435253672257,0.2999259301464304,0.3038882597206493,0.307190688216527,0.3098306697862553,0.3134909848690767,0.3173993156093709,0.3211879211380085,0.3253184593351926,0.3260304493130337,0.3280627781681893,0.3285024154589372,0.3278721278721279,0.3293628808864265,0.3358505564387917,0.0,2.3902425198178308,55.37627427423049,147.75591418725395,218.0502351774481,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95650,46495,442.7600627286984,5194,53.07893361212754,4075,42.01777313120753,1600,16.330371144798743,77.2430810454354,79.64539277425351,63.27207635196621,65.04931678071904,77.03889367337506,79.44589552929979,63.19464726695014,64.97602043175574,0.2041873720603462,199.49724495371868,0.077429085016071,73.29634896329651,222.0394,155.49822529037664,232137.37584945117,162570.0212131486,447.149,296.3707227153907,466899.0277051751,309263.6097390389,432.89011,211.08533875054516,448336.037637219,217381.0518996279,2341.35964,1094.787395487074,2417018.504966021,1113754.2660607153,992.46503,449.78940055294527,1023171.9602718244,455816.36231358536,1567.39946,668.5523105505821,1602919.7281756403,668694.9569435084,0.37742,100000,0,1009270,10551.698902247776,0,0.0,0,0.0,38531,402.2268687924725,0,0.0,39256,406.2833246210141,1233358,0,44250,0,0,8755,0,0,80,0.8259278619968635,0,0.0,1,0.0104547830632514,0,0.0,0.05194,0.1376185681733877,0.3080477474008471,0.016,0.3463728191000918,0.6536271808999081,23.69165729686498,4.175047201223698,0.3084662576687116,0.2665030674846625,0.2053987730061349,0.2196319018404908,11.118434797257663,5.913505709270023,17.17683014167062,11586.511852771157,46.66183472472596,13.34134302593442,14.212780342983647,9.265418561919793,9.8422927938881,0.5786503067484663,0.8149171270718232,0.7016706443914081,0.5722819593787336,0.1251396648044692,0.7615894039735099,0.9271948608137044,0.8778409090909091,0.774869109947644,0.1515151515151515,0.5015695849319847,0.7302100161550888,0.6331491712707182,0.5123839009287926,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024931084806226,0.0047876980504331,0.0071875983472584,0.0094290736544772,0.0117481919990235,0.0137074189113498,0.0159469793525363,0.0180730272831236,0.020379990183246,0.0224468270304035,0.0244795405599425,0.0264541570818271,0.0287644747938048,0.0307307173247895,0.0326273198323734,0.0345369566116557,0.0366917355543124,0.0386527583164668,0.040430201474917,0.0422938993369751,0.0573888691508704,0.0709108429696665,0.0843752952662908,0.0969928531581883,0.108848492525969,0.1233736674394723,0.1353616691277235,0.1455848018677839,0.155809972180612,0.1647763887098852,0.1769586844632433,0.1888021680216802,0.1996558409026552,0.2089356110381077,0.2177698428442328,0.2273095399225623,0.2366146794119291,0.245088868101029,0.2532167863962899,0.2598325880059626,0.2660887503331904,0.2718352244118921,0.2775021021092149,0.2821758426292431,0.2868959141720694,0.2910453288564092,0.2950275135060605,0.3001568097502518,0.3035053794141694,0.3058784632678701,0.303052364773769,0.3005811391428886,0.2982607101042445,0.2967244422581672,0.2958756902376948,0.2926249616681999,0.288917076264468,0.2888994853412697,0.2875918646385233,0.288382818225694,0.2893278999455409,0.2898168701442841,0.2912883950099591,0.2924635930474464,0.2926817548411897,0.2936416788473585,0.2949909889292559,0.2992477890032417,0.3046413502109704,0.3093528050434921,0.3123396848662513,0.3157333901646332,0.3189611699445285,0.3215781856957879,0.3235933806146572,0.3295481428909392,0.3351368063070026,0.3376068376068376,0.3400275103163686,0.3353705118411,0.0,2.294050286440633,52.72552415547035,144.5295457624044,217.20924195153725,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95807,46505,441.8466291607085,5237,53.21114323588046,4118,42.29336061039381,1628,16.491488095859385,77.44904619750217,79.77529715014786,63.38601454967061,65.10690106194004,77.23324486135532,79.56551035595766,63.30412849648672,65.03037648029385,0.2158013361468533,209.78679419020807,0.0818860531838936,76.52458164618281,223.83702,156.6907617930998,233633.2627052303,163548.3438507623,451.13364,297.9774749246543,470203.6176897304,310344.562427228,435.547,212.0930834703689,450537.77907668543,218227.40276160435,2346.10756,1115.0075908525268,2410772.90803386,1125793.7633497834,984.05097,447.790505408566,1008943.5427473984,449213.6017290653,1576.81078,680.7973052920481,1600350.684188003,672674.8026052667,0.37875,100000,0,1017441,10619.69375932865,0,0.0,0,0.0,38645,402.6532508063085,0,0.0,39542,408.6340246537309,1235664,0,44310,0,0,8928,0,0,93,0.9707015145031156,0,0.0,0,0.0,0,0.0,0.05237,0.1382706270627062,0.3108649990452549,0.01628,0.3365015536464997,0.6634984463535003,23.77025860385105,4.174821256234274,0.3246721709567751,0.2634774162214667,0.2085964060223409,0.2032540067994172,11.313096541799514,6.196059570692896,17.520352565792354,11683.899862828255,47.15379904497407,13.195428908619371,15.276687650869151,9.473008269920491,9.20867421556505,0.5849927149101506,0.8165898617511521,0.6918474195961107,0.5762514551804424,0.1230585424133811,0.7558232931726908,0.9274725274725276,0.875,0.7115384615384616,0.1153846153846153,0.5109641489731988,0.7365079365079366,0.6136606189967982,0.533026113671275,0.1251908396946565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020760965334251,0.0044195310836974,0.0068592533966495,0.0092745908716896,0.0114504204927951,0.0135114496044311,0.0159660695533374,0.0180140642382551,0.0199182422074604,0.0221526434805742,0.0241840446789977,0.0261699507389162,0.0283819901315789,0.0304655807919609,0.0326120588295963,0.0345169588709927,0.0364628075223299,0.0385213604313562,0.0405934730433156,0.0425073396214629,0.0573968015522799,0.0714113944564683,0.0852627055580593,0.0976842414945258,0.1097563545925894,0.1247067030249223,0.1358224936127808,0.1467406911074949,0.1577554656907203,0.1676269625377514,0.180013335914478,0.192179700499168,0.2020066018068103,0.2116734150414179,0.221320744359664,0.2299623066974698,0.2384622238061297,0.2463156476939827,0.2544540782831141,0.2611785134919003,0.2672598850495118,0.2734261084605783,0.2787583472946506,0.2841078833215826,0.2897841517478621,0.2950434953555806,0.2995572738043275,0.3042127816022008,0.3070352018168679,0.3096775041741714,0.3078047668226994,0.3044938583022593,0.3013790878098739,0.2989475502829088,0.29551806231239,0.293853233375998,0.2909651634830223,0.2915538004634313,0.2918384311330517,0.2928381492643148,0.2932420363203334,0.2939745802604738,0.2941911045434678,0.2946539761608254,0.2943904013002222,0.2962369895916733,0.2981375236695588,0.3007043131388681,0.3036437246963562,0.3077679449360865,0.3108487151646761,0.3142494982571036,0.3173648944830609,0.3218382130999094,0.3248968878890139,0.3271873165002936,0.3296403096069206,0.3293666801129488,0.3309724870607464,0.3328296184359652,0.0,2.6924994683105186,53.52991401198128,153.31258208666455,206.365220855781,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95812,47069,446.67682544983927,5307,54.16858013609986,4212,43.41836095687388,1576,16.083580344841984,77.3497797498425,79.68114900916684,63.33168066437421,65.05914858334867,77.14800898238556,79.48187730649624,63.25579593755105,64.98635618764901,0.2017707674569351,199.27170267060035,0.0758847268231619,72.79239569966478,223.41902,156.4477825115451,233184.79939882268,163286.20894203763,450.40027,298.1507769271887,469531.35306642175,310626.9433131431,445.76261,217.26985698395623,461142.88398112974,223736.1005522056,2390.44,1128.2989883246787,2465907.6942345425,1148597.741749132,971.75612,439.884464914005,1000981.1610236714,445861.0768108421,1532.67922,654.725809204189,1565948.6911869077,656694.6263820458,0.3813,100000,0,1015541,10599.30906358285,0,0.0,0,0.0,38666,402.9975368429842,0,0.0,40417,417.8182273619171,1228911,0,44134,0,0,8756,0,0,73,0.7619087379451426,0,0.0,1,0.0104371059992485,0,0.0,0.05307,0.1391817466561762,0.2969662709628792,0.01576,0.352367184676545,0.647632815323455,23.598667181730647,4.090775408508483,0.3169515669515669,0.2780151946818613,0.2039411206077872,0.2010921177587844,11.36400686654671,6.179689652823185,16.901653117355647,11777.755635778662,48.45032963508817,14.321604745768756,15.129999480566914,9.65061400858496,9.34811140016754,0.5902184235517569,0.8061485909479078,0.7131086142322097,0.5587892898719441,0.1298701298701298,0.7536,0.9251559251559252,0.8756906077348067,0.6977777777777778,0.1263736263736263,0.5212694125590817,0.7231884057971014,0.6526207605344296,0.5094637223974764,0.1308270676691729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350223879085,0.0047147332880448,0.007388312663649,0.0095805098091009,0.0117587224087071,0.0140420548851891,0.0162928221859706,0.0184457397180568,0.0205034904995042,0.0229992118650139,0.0251355701120439,0.0271371953097726,0.0293458366750981,0.031695035680084,0.0337204984320845,0.0357821864021492,0.0376266730154129,0.0396112517114052,0.0416952392826714,0.0436765333638739,0.0576820756783825,0.0718983635698227,0.0852644928675491,0.0976291563327588,0.1094328087613707,0.1253172052106242,0.1372883872883873,0.14835194074011,0.1595496977335355,0.169485708156808,0.1806701864023273,0.1920005194467891,0.202993289028595,0.2125501426400988,0.2214790940191624,0.2301070265239646,0.2396648107028486,0.2482399514159113,0.2563817476344989,0.2633988873371643,0.2699536217804147,0.2751300485124788,0.2816258470417105,0.2866275589608524,0.2906635278128337,0.2952312956990571,0.2995864412709122,0.3025951249269247,0.3072347578715976,0.3103721089691184,0.308567045271034,0.3065046579791113,0.304413960170136,0.302268715455624,0.2995750497756381,0.2969807391983342,0.2941651109071923,0.2943018775108633,0.2952679988396102,0.2953012950872311,0.296477806251286,0.2970519752160701,0.2979554330346887,0.298570283270978,0.3001172613492234,0.3013307738203326,0.3012037954963886,0.3054185654535239,0.3100271191154996,0.3130243864188818,0.3167704666486144,0.3202545626676484,0.3226169627220415,0.3272050444427562,0.3260322490446453,0.3331385154880187,0.3352006056018168,0.3334662943757479,0.3336927223719677,0.335755258126195,0.0,2.1212073654583605,54.7798192158582,160.1114703977942,212.47743629179837,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95802,46762,445.7631364689672,5256,53.52706624078829,4157,42.82791590989749,1604,16.440157825515122,77.41775944651599,79.74672964270745,63.37436231324406,65.09561595539972,77.21643450795351,79.5473526115493,63.29851155886042,65.0225685698796,0.2013249385624789,199.37703115815,0.0758507543836444,73.0473855201268,222.21254,155.63840458938986,231949.79227991065,162458.40858164744,449.02534,297.05348362255853,468110.7596918645,309479.75308797,432.27455,209.93438075439087,447661.85465856665,216389.21658541748,2400.4416,1117.5244048302757,2474228.2624579864,1135323.7844418257,956.61058,429.2159402584068,986281.6120749044,435898.5441877693,1552.37176,654.5025865711202,1591964.7606521784,657700.7246354837,0.38004,100000,0,1010057,10543.172376359576,0,0.0,0,0.0,38583,402.1419177052671,0,0.0,39153,405.1898707751404,1241635,0,44514,0,0,8765,0,0,82,0.8454938310264921,0,0.0,4,0.041752781779086,0,0.0,0.05256,0.1383012314493211,0.3051750380517504,0.01604,0.3446389496717724,0.6553610503282276,23.81335316458105,4.177400107886139,0.3288429155641087,0.2607649747414,0.2047149386576858,0.2056771710368053,11.506477388937055,6.324145590812625,16.91936428348331,11655.011247361255,47.24057585811266,13.115001683104278,15.556721370434976,9.366010910876325,9.20284189369708,0.5655520808275198,0.7656826568265682,0.6942209217264081,0.5511163337250293,0.1204678362573099,0.7393887945670629,0.8927738927738927,0.8350515463917526,0.732620320855615,0.1551724137931034,0.4968110104061766,0.6824427480916031,0.6384065372829418,0.5,0.1116005873715124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491529885883,0.0043992580053318,0.0066158638674391,0.0087648026649875,0.0107784918246156,0.0129484099515452,0.0151564570380185,0.0173307748836449,0.0194607412252907,0.021410734023826,0.0236264862648626,0.0256318134225707,0.027641006136735,0.0296082771400628,0.0318096986069723,0.0338673194311033,0.0357445927765704,0.0378498859630935,0.0398587233158468,0.0415478148618543,0.0556824939747722,0.0696252156186294,0.082906171053597,0.0957193129891275,0.1078097846121438,0.1233584431226294,0.1357232144748829,0.1468349316379255,0.1573460524771386,0.1668398555925739,0.1788264647681321,0.1903372874397701,0.2015136872509311,0.2108343615894473,0.2195438164718291,0.2291685104876537,0.2384322992721071,0.2469736103312745,0.2544060347952157,0.2611693672883624,0.2675714698238521,0.2736643048081525,0.2784618835669,0.2826396449208609,0.2867902102990758,0.2914569772735662,0.2960789210789211,0.3003796005941574,0.3042911026144466,0.3082013366310582,0.3066165615353644,0.3043758838955939,0.3025141588318788,0.3006441757576631,0.2994146847447581,0.2965661564781718,0.2946103250839919,0.2949302728595484,0.2966711956521739,0.29637057414145,0.2968546193120411,0.2982222309335737,0.2988249974004367,0.2986725173414888,0.2987522111201415,0.2999663395562,0.3010551925089819,0.3057271195957327,0.3093034583536288,0.3133870650678199,0.3165659117567446,0.3203540755571948,0.323375,0.3247566588696899,0.3248878085265519,0.3272899632657898,0.3329734731647131,0.3377750858065819,0.3375813449023861,0.3271960107403145,0.0,2.149777059094817,51.39090881960213,154.0799503632751,218.66956991925665,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95725,46818,445.70383912248633,5210,53.22538521807261,4103,42.31914337947245,1602,16.380255941499087,77.3893283971574,79.74720702615508,63.35181630130408,65.09241100090601,77.17934268469448,79.53828646980298,63.273041224785466,65.01585757551558,0.2099857124629238,208.9205563520977,0.0787750765186103,76.5534253904292,223.22036,156.33862744665618,233189.19822407945,163320.5823417667,449.02623,297.1586356374921,468557.9942543745,309908.1176677901,436.54452,212.8695930307177,451673.6693653696,219154.44826039573,2341.42432,1108.9900426881425,2416968.7333507445,1129925.5505970395,979.627,446.6033076663568,1010860.8200574564,454148.5228276354,1558.54774,666.1223533786244,1596495.7952468006,671842.4263233378,0.37965,100000,0,1014638,10599.509010185428,0,0.0,0,0.0,38634,403.05040480543227,0,0.0,39642,409.7780099242622,1232210,0,44165,0,0,8766,0,0,75,0.7834943849569078,0,0.0,0,0.0,0,0.0,0.0521,0.1372316607401554,0.3074856046065259,0.01602,0.351783744023538,0.6482162559764619,23.406711600714548,4.074847405660395,0.3175725079210333,0.2595661710943212,0.2154521082135023,0.207409212771143,11.321678799265593,6.182336600142332,17.22426949135565,11680.171745707026,47.21512307220662,13.192811535690732,14.783142240342393,9.787592707989273,9.45157658818423,0.5834755057275165,0.8244131455399061,0.6945510360706063,0.5678733031674208,0.1280846063454759,0.7339300244100895,0.920704845814978,0.8539944903581267,0.7009345794392523,0.1212121212121212,0.5191370911621433,0.7528641571194763,0.6329787234042553,0.5253731343283582,0.1301684532924961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026838976270293,0.0047128219161421,0.0068774535163263,0.008925398292091,0.0109897930137042,0.013303340594019,0.0156224523071906,0.0178057590661415,0.0202008848743703,0.0224396033930563,0.024479967209755,0.0265215250133377,0.0285036117590242,0.0307356589227079,0.0325784295526266,0.0345362103174603,0.0366079655454441,0.0386901366083375,0.0405571146450472,0.0425425529698535,0.0569501294795756,0.0705772792432692,0.0839171840912904,0.096389595643123,0.1092676139478011,0.1240046107803428,0.1361172689570318,0.1466590021183959,0.157119965815618,0.1676191497346271,0.1792847990179715,0.1909922772405737,0.2016370988781633,0.2110085724282715,0.2205413136758719,0.2296879673013657,0.2383455541790828,0.2470503548572135,0.2557812322705095,0.2629860832712903,0.2687455918230485,0.274370931360518,0.279986287929832,0.2847395135031603,0.288873246274091,0.2927447746128659,0.2970295791382653,0.3004981826500267,0.303243585928504,0.3071145255445596,0.3043203740025256,0.3022192315086929,0.3006403774856758,0.2980755359358319,0.2967798343237355,0.2935602014344575,0.2906265758951084,0.2912706965807779,0.2924412874282024,0.2925923292930011,0.2932895791769992,0.294492525570417,0.296637042600242,0.2987669159544159,0.2989624020512329,0.3001087350489307,0.3031272109806141,0.3074236897078539,0.3125695603784084,0.3157956777996071,0.3197650779308787,0.3232483235651301,0.3265369941835012,0.3283223090799759,0.334544099841669,0.3413264709322728,0.3448690941919952,0.3402473075388911,0.3440354276224744,0.346109175377468,0.0,2.1602638386827,53.73894350939172,157.13821648091417,203.46413725283787,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95680,47226,450.4389632107023,5221,53.501254180602,4123,42.58988294314381,1584,16.252090301003342,77.35982293729873,79.73742231556372,63.33991942654043,65.09082172990607,77.15759496755267,79.53431361295841,63.26402769286175,65.01607238695773,0.2022279697460618,203.10870260530575,0.0758917336786808,74.74934294833702,223.65882,156.56525570848956,233757.1279264214,163634.2555481705,453.55191,299.7896112131445,473542.1718227425,312837.44167968,439.51816,213.9437905492654,455974.25794314384,220957.0814392237,2341.9826,1100.8023013778484,2422653.135451505,1125434.114233184,948.15995,428.279651886237,980390.071070234,437047.6259095876,1547.33976,657.5954282008564,1590631.4799331103,665359.4755951222,0.38277,100000,0,1016631,10625.323996655516,0,0.0,0,0.0,38991,407.002508361204,0,0.0,39866,413.2943143812709,1227565,0,44094,0,0,8987,0,0,76,0.7943143812709029,0,0.0,0,0.0,0,0.0,0.05221,0.1364004493560101,0.3033901551426929,0.01584,0.3508190686545187,0.6491809313454813,23.50572188926532,4.126987371982312,0.3191850594227504,0.2687363570215862,0.2027649769585253,0.209313606597138,11.033438651878368,5.872226323025914,16.901326697354097,11734.87057416993,47.061331200692464,13.577981909152845,14.842696186118408,9.23613640041053,9.404516705010696,0.5821004123211254,0.8014440433212996,0.709726443768997,0.5586124401913876,0.1286210892236384,0.7560366361365529,0.9212253829321664,0.8867403314917127,0.6555023923444976,0.1676300578034682,0.5106091718001369,0.717357910906298,0.6425576519916143,0.5263157894736842,0.1188405797101449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020051039008384,0.004186051225915,0.006655506518541,0.0089374581056651,0.01119448511469,0.0133747264491831,0.0156207012502674,0.0178957678651593,0.0200412674416229,0.0221171945331041,0.024176859876657,0.0263759938445755,0.028460423668712,0.0303332955797407,0.0326254009840225,0.0346955227582785,0.036657073645417,0.0385193789605783,0.0403355753537159,0.0424239266360983,0.0575717688354017,0.0713418209230253,0.0843871671896481,0.0967881076872902,0.1085413568724227,0.1240821854038384,0.1360370209197915,0.1468830878358948,0.1569405099150141,0.1664591606740367,0.1788881585327744,0.1914322222944144,0.2022416888840524,0.2126127309342439,0.2220998733689368,0.2312046524508446,0.2400062495815012,0.2488168972920718,0.2560019959400764,0.262963937878389,0.2694077654186805,0.2759419069669543,0.2813915800182169,0.2869902540647973,0.2912235171418523,0.2952437193966684,0.2984349433556912,0.302545343697607,0.306481421647819,0.3093820002635393,0.3078132136811843,0.3055082417582417,0.3043655650754794,0.3020948975619602,0.3000474102169017,0.297147832994699,0.294240374280837,0.294705949863099,0.2941538041251195,0.2939382590551602,0.2946081364044272,0.2960575596294106,0.2969200551631911,0.2976832256627311,0.2991502094554159,0.2992846405059354,0.301255230125523,0.3066904047976012,0.310019495891937,0.3145053212455656,0.3184739319333816,0.3197523678501508,0.3257002271006813,0.330871154431922,0.3383663134202382,0.34038255910657,0.3434497483605307,0.3472501003613006,0.3478960064325918,0.3484214530239635,0.0,1.950441478954788,52.36824897966975,153.14771505803134,214.01261668565027,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95862,46611,442.81362792347335,5331,54.45327658509107,4239,43.70866453860759,1633,16.690659489683085,77.34109898624328,79.63209843392906,63.34986309044478,65.04423033133772,77.13378827176106,79.42522151294551,63.27308282100774,64.96952838547044,0.2073107144822188,206.8769209835466,0.0767802694370374,74.7019458672753,223.1669,156.2419220713774,232800.17107925977,162986.294956685,451.3236,298.1616249606572,470298.9192797981,310525.521020485,434.5259,211.2778397592524,449801.162087167,217708.71513754997,2434.5408,1126.8246291866762,2512631.1572886026,1148465.8250262626,1009.20418,453.67198414139455,1039998.4352506727,460501.6062381072,1598.4664,675.9237582406574,1636680.5407773675,680243.0834136612,0.37861,100000,0,1014395,10581.825958148173,0,0.0,0,0.0,38670,402.8603617700445,0,0.0,39368,407.2103648995431,1234218,0,44349,0,0,8772,0,0,105,1.0953245290104523,0,0.0,0,0.0,0,0.0,0.05331,0.1408045218034389,0.3063215156631026,0.01633,0.3505561535701471,0.6494438464298529,23.889691412464124,4.240234487364268,0.3102146732719981,0.2550129747581977,0.2172682236376504,0.2175041283321538,11.345738471554384,5.941937332038313,17.530474533862005,11691.075768015888,48.33519654724549,13.133078753460724,14.9409384007312,10.158167384781768,10.103012008271795,0.5708893606982779,0.7955596669750231,0.7019011406844107,0.5711183496199783,0.1203904555314533,0.7410788381742739,0.928400954653938,0.8664772727272727,0.7330316742081447,0.1737089201877934,0.503295978905735,0.7114803625377644,0.6417445482866043,0.52,0.1043723554301833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568528175788,0.0041645134814724,0.0064915964255647,0.0090665421243933,0.0113634053625515,0.0135553203614752,0.0159336573041148,0.0179342004590665,0.0199885604559475,0.0222388166576306,0.0242043696928103,0.0262556023917212,0.0284402538978246,0.0305883079202419,0.0326123916784304,0.0346058973485669,0.0364687270584099,0.0385930377123912,0.0404987334413022,0.0425210940832527,0.0570490093847758,0.0710672630742862,0.0839766620926602,0.0970889080254563,0.1096018784681639,0.1245168240288955,0.1363833776468968,0.1478611217417187,0.1580025608194622,0.1682259015163693,0.1809240966707556,0.1927339568578688,0.2033170668086817,0.2121960548603901,0.2207825063522268,0.2308271676044481,0.2401503658754238,0.2482118758434548,0.2560126151472524,0.2623968124935597,0.2679849667533969,0.2735062718462491,0.2792521109770808,0.284564530037367,0.2889889877736362,0.2933426993986,0.2970538562582098,0.3006040567177465,0.3044591919897543,0.3075370121130552,0.3051255821466067,0.3027898854620705,0.300680291271708,0.2981895479654105,0.2962615988579586,0.2936670853886455,0.2916607292705711,0.2913661381746488,0.2917037747482359,0.292248978714255,0.2930865869254495,0.2950316098218355,0.2958744036485151,0.2963520035918734,0.2984021079604516,0.2998481516389151,0.3024763645711348,0.306014373975539,0.3087060142997336,0.3115597783056215,0.3158707100054476,0.3195238095238095,0.3250581358808371,0.3280054541322627,0.3261463139064118,0.3297682709447415,0.3349700782568666,0.3419939577039275,0.3414500683994528,0.3409785932721712,0.0,1.994405103944768,52.81373460455872,153.84086025801466,229.05297728568493,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95645,46868,445.7943436666841,5323,54.44090124941189,4193,43.28506456166031,1592,16.320769512258874,77.31769350596971,79.74012014663313,63.289715480586615,65.08132096355509,77.11929320147455,79.54352293307939,63.2152167180136,65.0097794400254,0.1984003044951663,196.59721355374413,0.0744987625730146,71.54152352968879,221.40734,155.12416484812707,231488.67165037376,162187.42730736273,449.70904,297.35543020532424,469618.25500548905,310327.5343251861,440.54367,214.86715837589887,456797.595274191,221787.08655336316,2399.85568,1125.8880114588535,2478146.437346437,1146171.2493688676,973.90803,440.6544290628874,1000505.6615609808,442971.4455150684,1554.24564,654.8775251117178,1593292.3205604055,657245.3302123358,0.37983,100000,0,1006397,10522.212347744264,0,0.0,0,0.0,38633,403.34570547336506,0,0.0,39986,414.29243556903134,1235977,0,44341,0,0,8788,0,0,77,0.8050603795284647,0,0.0,0,0.0,0,0.0,0.05323,0.1401416423136666,0.2990794664662784,0.01592,0.3474025974025974,0.6525974025974026,23.49969093378465,4.121150919505388,0.303601240162175,0.2756975912234677,0.2065347006916289,0.2141664679227283,11.455402106614985,6.05761611934804,16.918084599573923,11716.3913151924,47.91995955354189,14.015410108633784,14.402989288015249,9.631610902195384,9.86994925469746,0.5773908895778679,0.7846020761245674,0.7132757266300078,0.5900692840646651,0.1057906458797327,0.7405318291700241,0.9114470842332614,0.8694444444444445,0.7272727272727273,0.1531100478468899,0.5088075880758808,0.6998556998556998,0.651697699890471,0.5464231354642314,0.0914368650217706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123591863197,0.0046546059303127,0.0068832487309644,0.0091972479395115,0.0111713654908584,0.0134881825590872,0.0159141452267765,0.0178587848261629,0.0201303818325094,0.0221714262284999,0.0245136785915926,0.0266310215413089,0.0285449490268767,0.0308125560908181,0.0328659840681083,0.0348720495866058,0.0371069247597225,0.039355602642403,0.0414602672438912,0.0433925666374671,0.0580717301341804,0.0721305978750602,0.086150032560973,0.0991531850353892,0.1109890806175681,0.1264231473930587,0.1381146190875955,0.1491856399761234,0.160128796225971,0.1692193675889328,0.1817417002825894,0.1937787119701829,0.2041103051689211,0.2128770873254859,0.2212464464376226,0.2313621542488299,0.2391386939614714,0.2472438994178124,0.2548049087833619,0.2622913253205312,0.2691078746903146,0.275031003580036,0.2798256936138971,0.2837390574409401,0.288591991052542,0.2928954340994516,0.2970075312132509,0.3008393742846242,0.3049912604389201,0.3087227948843163,0.3067300441667564,0.3038300213160971,0.3017245020060533,0.2987577012422988,0.2967976278724981,0.2944729919862972,0.2910039525691699,0.2912397289422856,0.2919531622302403,0.2931582216700683,0.293071370097492,0.2929114718105544,0.2937825015020615,0.2938598432865554,0.2965175787293804,0.2975548038937231,0.2975838055767008,0.3019688218123098,0.3055362600722422,0.3073957513768686,0.3074622808209868,0.3115689381933439,0.3164453907815631,0.319776654342413,0.324044734389562,0.3261098746632306,0.3379237288135593,0.3468620075232627,0.347237269772481,0.3475471698113208,0.0,2.158147412947861,54.25463093658594,151.0760861042126,219.7975199203324,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95713,46860,446.7104782004535,5270,53.91117194111563,4172,43.03490643904172,1632,16.664402954666556,77.34880342590687,79.70626606475734,63.338894218876014,65.07702799613489,77.14388101512647,79.5046926824323,63.2619195139168,65.00377103870544,0.2049224107803979,201.5733823250372,0.0769747049592197,73.25695742945015,222.91104,156.15192943608,232895.2597870718,163145.99838692756,454.10464,300.1504864774498,473894.0269346901,313044.48554222594,437.62836,213.3075506558326,454114.8119900118,220401.2935763338,2396.81244,1121.7390121233846,2472434.967036871,1140593.0519162454,976.84883,440.4591232565596,1006020.6868450472,445935.83741432097,1587.02308,671.5526201672291,1621921.45267623,670840.3635659135,0.38051,100000,0,1013232,10586.148172139629,0,0.0,0,0.0,38913,405.98455800152544,0,0.0,39672,411.3129877864032,1231058,0,44170,0,0,8911,0,0,89,0.9298632369688548,0,0.0,2,0.0208958030779517,0,0.0,0.0527,0.138498331187091,0.3096774193548387,0.01632,0.3624136677571792,0.6375863322428208,23.445276019590104,4.177962113428213,0.3163950143815915,0.2634228187919463,0.2085330776605944,0.2116490891658677,11.238374369554508,5.910258924729901,17.45930386620595,11688.433579029072,47.57270254400746,13.578427222167427,14.881420156549831,9.558654904108058,9.554200261182157,0.5620805369127517,0.7970882620564149,0.6772727272727272,0.5459770114942529,0.1132502831257078,0.749597423510467,0.9113924050632912,0.8421052631578947,0.7183098591549296,0.1485714285714285,0.4825938566552901,0.7104,0.6106382978723405,0.4901065449010654,0.1045197740112994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872753232813,0.0045209423022341,0.0066967683019633,0.009061449222361,0.0111639824304538,0.0133557286099658,0.0154525161303474,0.0175870164336021,0.0196208676102396,0.0218412568445831,0.0239017690588934,0.0259765584908758,0.0279856884355979,0.030123955030268,0.0321742090549922,0.034160656347517,0.0359494719403603,0.0382129257841275,0.0401963026887645,0.0419801196157292,0.056633526880822,0.0702878074306645,0.083984682368987,0.0967585822348002,0.1094516343385121,0.1248691016405927,0.1372168284789644,0.1481773273145388,0.1583226495726495,0.1674568780571526,0.1792515834374596,0.1914396381970441,0.2018315695594009,0.2113695768671325,0.220286952886033,0.2303473491773309,0.2389536701961309,0.2471831699328013,0.2550119196276535,0.2616464874400064,0.2686396148237309,0.2751567178143712,0.2809153621336362,0.2862053683718813,0.2907991696308256,0.2943045378979126,0.2983618028915241,0.3023515810603077,0.3059378432512761,0.3088859032113596,0.3069422776911076,0.3041476554340058,0.3019754615038271,0.2998412240184757,0.2973642812620581,0.2936716600428004,0.2901309657340558,0.2902307314678449,0.2917922776897791,0.2928757076227436,0.2943853758627122,0.2951242058887162,0.2951113706515391,0.2944230297898888,0.2960859039812085,0.2962482149811761,0.2976793128946021,0.3018790977820999,0.3065440816611899,0.3114598569000277,0.315495389088266,0.3204193496886807,0.3267609205604514,0.3326696278143666,0.3362581375601471,0.3391854771288666,0.3347805861373856,0.3327156681078855,0.3387367244270542,0.349317738791423,0.0,2.1186225399106724,54.24330540009306,149.2009936040305,217.71481260344916,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95629,46949,448.11720294053055,5123,52.32722291355133,4043,41.60871702098736,1547,15.790189168557657,77.26744378178137,79.6831767023,63.28338998351626,65.0697121629286,77.07339901443086,79.4921955441595,63.209526087782734,64.99944033962468,0.1940447673505048,190.98115814050232,0.073863895733524,70.27182330391213,222.51724,155.90660434433732,232688.03396459232,163032.76657116285,450.67165,299.2401735181111,470625.019607023,312271.9295591412,441.78248,215.73630733235055,457489.1821518577,222213.0951051166,2308.23388,1095.3643618118538,2377270.03314894,1108962.806064953,933.29682,431.2689258753031,955291.0937058842,430316.562836904,1508.33234,649.143302366029,1540717.2719572517,646802.4456047979,0.38002,100000,0,1011442,10576.728816572378,0,0.0,0,0.0,38637,403.35044808583166,0,0.0,40038,414.16306768867184,1229647,0,44094,0,0,8846,0,0,95,0.9934224973595877,0,0.0,0,0.0,0,0.0,0.05123,0.1348086942792484,0.3019715010735897,0.01547,0.3624789365287399,0.63752106347126,23.22278942541596,4.187518116401179,0.3126391293593866,0.2658916646054909,0.2122186495176848,0.2092505565174375,11.168344278282849,5.9123990702167175,16.592567840499854,11676.251930300374,46.4731886752776,13.06585392658126,14.645836693815772,9.45522766125623,9.30627039362434,0.5891664605490972,0.8232558139534883,0.7175632911392406,0.5862470862470862,0.1028368794326241,0.7559183673469387,0.9232456140350878,0.8523316062176166,0.7525773195876289,0.1587301587301587,0.5166784953867991,0.7495961227786753,0.6583143507972665,0.5376506024096386,0.0867579908675799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019555393438304,0.0042790509024538,0.0064266569200779,0.0087797740021136,0.0108342912949267,0.0129140017110033,0.0151722168974447,0.0172538770176316,0.0193662511886624,0.0214439324116743,0.0235272399081063,0.0258148684602504,0.0278786507144547,0.0298608964451313,0.0321838131315737,0.0340745794952909,0.035897754577844,0.0378431677824484,0.0399009756807921,0.0419212243791572,0.056529827348355,0.0708218561149572,0.0839905487004463,0.0967157704092914,0.1091909125459228,0.1252369304403994,0.137033732687569,0.1482645808246038,0.1588084287089528,0.167656503388356,0.1801788198751065,0.1918489388670415,0.2025534138032369,0.2122369472198207,0.2206722670571526,0.2298743601675197,0.2380261410186291,0.2473132799927979,0.2552882268118492,0.2618458152809297,0.2684163608367968,0.2740107377212169,0.2800089958926648,0.2843059653162553,0.2893975493533016,0.2933767563499994,0.2976294775839195,0.3013200396774932,0.3045104994692006,0.3081604097365225,0.3051187733268658,0.3036731324803962,0.3020069009224702,0.3002933144533225,0.2983794231341064,0.2957388495046776,0.2918474646058341,0.2914044059795436,0.2914798206278027,0.2935663762538528,0.2947710951526032,0.2955466387302089,0.2968328065144125,0.2974509935104034,0.2983774182708463,0.2992320708056749,0.2990428583600784,0.3019328968390715,0.3051702395964691,0.3087155052610681,0.3126457809284244,0.3181818181818182,0.3206063296759053,0.3233019373612068,0.3298862461220269,0.3323789071820568,0.3344625808438559,0.3371335504885993,0.3372714486638537,0.3392715756136183,0.0,2.5677026693563287,53.06880399974098,150.1383342512106,203.76271639888,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95836,47162,448.7770775074085,5253,53.62285571184106,4175,42.94837013230936,1538,15.630869401894904,77.40182060844235,79.71409031503697,63.36325590393732,65.07522975048212,77.20688202519167,79.52621225401192,63.2887277452782,65.00662482180728,0.1949385832506749,187.8780610250459,0.0745281586591204,68.60492867484425,223.168,156.2931277931459,232864.24725572852,163083.72719556952,449.93981,297.7788480996451,468866.8663132852,310096.8943494269,441.07884,214.3491377918544,457184.56529905257,221292.3380584787,2343.7162,1093.0183254766678,2412762.2187904334,1107832.7946864883,960.25909,431.56193361111775,987111.1273425436,435543.9306451714,1495.70984,639.4198740607404,1521613.9237864686,630625.8707180123,0.382,100000,0,1014400,10584.738511624024,0,0.0,0,0.0,38644,402.58358028298346,0,0.0,39899,413.1745899244543,1233341,0,44284,0,0,8836,0,0,92,0.9599732876998204,0,0.0,0,0.0,0,0.0,0.05253,0.1375130890052356,0.2927850751951266,0.01538,0.3525442276126208,0.6474557723873792,23.703369142427068,4.127732158108289,0.307065868263473,0.285748502994012,0.2141317365269461,0.1930538922155688,10.954279924584698,5.747403416790988,16.294904942863663,11724.98219431809,47.46554859250342,14.514544034883754,14.382606815397118,9.86682479598956,8.701572946232982,0.5925748502994012,0.7963118189438391,0.6957878315132605,0.5939597315436241,0.1253101736972704,0.7643097643097643,0.9218106995884774,0.8601190476190477,0.7259615384615384,0.1265822784810126,0.5242718446601942,0.71004243281471,0.6374207188160677,0.5539358600583091,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021162842503898,0.0042262514062167,0.0067361928336647,0.0088261880821069,0.0112036274539705,0.0133963109247119,0.0154002955715232,0.0176056338028169,0.0196864075883639,0.0218928794407541,0.0242632361232125,0.0264195097918462,0.0283596817630491,0.030168242004901,0.0322314475787736,0.0343359613139214,0.0363338992174237,0.0382533493716039,0.0404154764996104,0.0425049176233048,0.0574265480449316,0.0708483612984161,0.084911295308554,0.0974600306729133,0.1091544845599696,0.1248653330235112,0.1363265565572989,0.1469181213190738,0.1569914508020876,0.1673951236234306,0.1799229792818571,0.191927378829632,0.2024469217897733,0.212796415692274,0.2215686705659879,0.2320977813205792,0.2406420094583742,0.2488390136394814,0.2568200637484545,0.2642150803461063,0.2702355757554731,0.2755275001461219,0.281619525115883,0.286792362425433,0.2911300210004977,0.2950569405971068,0.29925,0.3023870320261189,0.3067835168812367,0.3091732729331823,0.3066879793678724,0.3045931254118164,0.3023928551367747,0.3004376493622412,0.2985202722699023,0.29623750286194,0.2925736639535617,0.2920459559724787,0.2931204516085152,0.2938084838154086,0.29477389555241,0.2949747658229091,0.29551978035692,0.2959238044491807,0.2974061889095504,0.2981835094700395,0.2999040307101727,0.3032835264514926,0.3079297904814763,0.3110072281583909,0.3150474469046543,0.3173690595495543,0.3178497846038584,0.3241861514171866,0.3295759031691767,0.3348896930080541,0.3414413053331319,0.3475634313330648,0.3531659388646288,0.3603053435114504,0.0,2.3233381252742964,51.42172557135533,156.18719847823448,217.94768592863656,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95688,47048,447.75729454059024,5318,54.23877602207173,4220,43.432823342529886,1591,16.282083437839646,77.32145341825886,79.70931779514977,63.3143933609397,65.08054944857179,77.1206879614122,79.51088091138924,63.238619838512506,65.00814932565082,0.2007654568466534,198.43688376053592,0.0757735224271911,72.40012292096765,221.97362,155.54003038451845,231976.44427723435,162549.1497204649,454.08641,300.1587206343898,473919.0598612156,313054.9082793973,443.62096,215.91089017123497,459158.63013126,222307.62041605308,2419.25208,1128.432118285236,2493173.1460580216,1144184.8071704253,989.48438,446.0607079550489,1016127.8530223226,448215.8138481824,1562.50896,666.4039071867434,1600845.581473121,668697.0239704181,0.38101,100000,0,1008971,10544.38383078338,0,0.0,0,0.0,38981,406.6967644845749,0,0.0,40206,415.7679123819079,1234291,0,44250,0,0,8818,0,0,83,0.8465011286681715,0,0.0,1,0.0104506312181255,0,0.0,0.05318,0.139576389071153,0.2991726212861978,0.01591,0.341678674351585,0.658321325648415,23.66668893775779,4.166900984825339,0.3007109004739337,0.2713270142180095,0.207345971563981,0.2206161137440758,10.830848139042294,5.527590477661714,17.086536307855127,11753.60359491626,48.11608607467932,14.026226495012372,14.368860578787572,9.555390209595938,10.165608791283429,0.5597156398104265,0.7947598253275109,0.6863672182821119,0.5428571428571428,0.1138560687432867,0.7633711507293355,0.9247967479674796,0.9005681818181818,0.7180851063829787,0.1732673267326732,0.4755525787006028,0.6967840735068913,0.604143947655398,0.4949053857350801,0.0973936899862825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046688822242,0.0042592029205962,0.0065169725515673,0.0084247111309844,0.0107948070975093,0.0130388721375601,0.0153584139837033,0.0175515621809271,0.0199245545343951,0.0220791450856756,0.0244007463757714,0.0265973833925527,0.0289679151536348,0.0309853059373905,0.0329376548307184,0.0349259194160402,0.0368958587972074,0.038898229445586,0.0410275076699079,0.0430337266019093,0.0583676283189538,0.0720207687798341,0.085473494190867,0.0984403611795163,0.1104288005402211,0.1255636232773767,0.1375027863579912,0.1491015986963329,0.1593189906697874,0.1688886982077161,0.1810777617375191,0.1923659825062786,0.2036589875785855,0.2131206721144695,0.2232513117224538,0.2332237242723176,0.2414027729752038,0.2487496768827899,0.2566355627614826,0.2635405099085278,0.2703193285083358,0.2758350669689816,0.2814570319894,0.2864262012290811,0.2910013720752334,0.2952100819651955,0.299443715232202,0.3028636040247993,0.3067571059431525,0.3098897625350665,0.3074286635932313,0.3044677784640724,0.3024033731553057,0.3007050477961849,0.2982388462736836,0.2958220508819434,0.2920243459015098,0.2917492830807046,0.2920203156423628,0.2932309391871425,0.2943111925370623,0.2940341469184969,0.2950562877253075,0.2958532339418828,0.2976827950534277,0.299257328990228,0.3007102718429985,0.3039570041172957,0.3092852137351086,0.3127002333583831,0.3159492523787947,0.3199957602416662,0.3225745325922183,0.325022942795962,0.328,0.3304358180519171,0.3307763117520712,0.3365754812563323,0.3416301969365427,0.3489167616875712,0.0,2.645174198480219,53.40598688014072,151.78819729921443,223.05454016113245,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95708,46956,446.62933088143103,5334,54.5095498808877,4191,43.23567517866845,1670,17.030969197977182,77.3455376358958,79.73349403489593,63.32130932583449,65.08765978444967,77.13569989357414,79.52756793288685,63.2413094601356,65.0121597121193,0.2098377423216533,205.92610200907305,0.0799998656988947,75.50007233037093,222.2187,155.56023729398524,232183.8090859698,162536.07879799532,452.55728,299.6092939308556,472293.361056547,312487.02608230815,436.76879,212.9718133340545,453536.987503657,220311.0880884433,2402.30968,1126.6505315182385,2477603.9202574496,1144787.574203032,965.68032,438.5029763721357,993051.7093659884,442242.3329103718,1631.12306,694.446677546636,1664070.652401053,689611.2347853212,0.3808,100000,0,1010085,10553.80950390772,0,0.0,0,0.0,38858,405.410206043382,0,0.0,39607,411.0419191708112,1236010,0,44286,0,0,8603,0,0,84,0.8776695783006645,0,0.0,1,0.0104484473607221,0,0.0,0.05334,0.1400735294117647,0.3130858642669666,0.0167,0.3546073861599139,0.6453926138400861,23.753199349836382,4.17218847925721,0.3120973514674302,0.2689095681221665,0.2035313767597232,0.21546170365068,11.02716239862704,5.758373667406618,17.767144032236796,11724.661854052329,47.82216354319115,13.75018775313529,14.77196332997473,9.517181289838906,9.782831170242222,0.5678835600095442,0.7941437444543035,0.6842507645259939,0.5791324736225087,0.1063122923588039,0.7520458265139116,0.9211087420042644,0.8676056338028169,0.75,0.134020618556701,0.4920848770629841,0.7036474164133738,0.6159496327387198,0.5254237288135594,0.0987306064880112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022087356508171,0.0045235559612556,0.0067719173562109,0.0089737596292607,0.011231382762269,0.0132919128132002,0.0154902000775019,0.0177996997641003,0.0199709587696335,0.022232007536968,0.0244192605507409,0.0263763352506162,0.0285652567478604,0.0305731302681202,0.032486764842468,0.0346642130510296,0.0367527476511596,0.0390040374056814,0.0411098515968676,0.0432204890958915,0.0586846860019425,0.0730014861951311,0.086315833665694,0.0992350347759293,0.1110196934696159,0.1267030549208767,0.1385593310270178,0.1490716971485178,0.1589959053636528,0.1685220770576805,0.180638206123329,0.1919156909679725,0.2018222788282551,0.2123692388497395,0.22149453500787,0.2314903047091412,0.2399607134087814,0.2484924849248492,0.2566397785416879,0.2628017996359515,0.2694238778343359,0.2755339419940848,0.281205656986094,0.2852850336389973,0.2890864760610876,0.2934701056541579,0.2981651949090091,0.3012867693713357,0.3053763163328515,0.3087558815025103,0.3060783708731873,0.3031548377375032,0.3010976054796058,0.3000849446420087,0.2981049454857464,0.2945023783388218,0.2911813906511378,0.2912685013686505,0.2919762765014657,0.2928668187651504,0.2934481467615125,0.2941490307664947,0.2943875306391804,0.2956294759386922,0.2965487447799165,0.2980068692756036,0.2996762099522835,0.3025870709095465,0.30628583414907,0.3109871855719032,0.3151795011091493,0.3191579169524614,0.3220307231172724,0.3228608111169851,0.3225110256169654,0.3277671755725191,0.329451425068955,0.3283945605845342,0.338143207187585,0.3407864302235929,0.0,2.0625513738783026,53.41615185405156,153.54520228529216,219.1183735419309,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95604,47141,447.85783021630897,5340,54.52700723819087,4229,43.57558261160621,1573,16.055813564286012,77.23812690061078,79.66819946870271,63.25655152000609,65.0536888237839,77.0393816350533,79.4735832783076,63.181776787965234,64.98316305985549,0.198745265557477,194.61619039510936,0.0747747320408578,70.52576392841559,221.49908,155.1800456359847,231683.67432325007,162315.2283079855,449.96763,297.4674461429504,470021.23342119576,310509.9810389976,443.17149,215.91208724887372,459399.5125726957,222716.6025169348,2414.19724,1134.9287737462923,2489912.346763734,1151881.3933949333,990.73463,448.2758971170477,1020005.533241287,452665.7612608367,1530.84212,647.4528257127305,1564792.4563825782,646355.9856326366,0.38248,100000,0,1006814,10531.076105602277,0,0.0,0,0.0,38662,403.7278774946655,0,0.0,40238,416.6457470398728,1232065,0,44283,0,0,8766,0,0,70,0.73218693778503,0,0.0,0,0.0,0,0.0,0.0534,0.1396151432754654,0.2945692883895131,0.01573,0.3495789285074359,0.650421071492564,23.354582704465265,4.112918332769812,0.3104752896665878,0.2740600614802553,0.2156538188697091,0.1998108299834476,11.459074534080306,6.215194881027081,16.911041330534275,11844.938998797072,48.766740617153104,14.244302786285235,15.03808663823366,10.218910043949515,9.265441148684705,0.5942303144951525,0.8093183779119931,0.6984006092916984,0.6162280701754386,0.1136094674556213,0.7690437601296597,0.910041841004184,0.834733893557423,0.8042553191489362,0.1646341463414634,0.52220367278798,0.7386196769456681,0.647489539748954,0.55096011816839,0.1013215859030837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0044222206444676,0.0064271789456583,0.0090056208897878,0.0113173750203549,0.0138146031357926,0.0160130552297414,0.0182752421035426,0.0207127222142667,0.0230352442309465,0.0253016498399409,0.0275682784981812,0.0298679511326561,0.0316900682460155,0.0338513967057365,0.0356352047679159,0.0377027937593946,0.0399518002202231,0.0421286031042128,0.0442752073444264,0.059568862776256,0.0736180246266701,0.0870209278870398,0.0992332645237393,0.1113692525397596,0.1271858748265599,0.139645812750316,0.1502728745629743,0.1603470780818693,0.1697136350942018,0.1824831693423096,0.1938970189701897,0.2046348452327773,0.2144617912900575,0.2232739052824117,0.2330622704933491,0.2418030953658973,0.2500704598491595,0.2585695282922337,0.2645704905235848,0.2704113593652119,0.2770222743259085,0.2826453143534994,0.2879718313244325,0.2925590234631971,0.2960894545005251,0.3001869111983642,0.3042607730860954,0.3085491723466407,0.3120007406231815,0.3094817233609045,0.3078673377921809,0.3052683546089287,0.3033680218841817,0.3010396061692223,0.2974071801166001,0.2944460303866527,0.294742554556069,0.2950109574030954,0.295226691924156,0.2960020982427217,0.2973079811835395,0.2981081477446523,0.2992442874390734,0.2995097096712171,0.3010598682325981,0.3031607147946533,0.3076898913111767,0.3097664320481843,0.3126207467570871,0.3163626463381432,0.3189263447109796,0.3258883883883884,0.3268605969021533,0.3289021102537882,0.3353133007221057,0.3411536162582188,0.3443172849250197,0.3517669274345832,0.3660547021356313,0.0,2.5339012807582946,53.55267717628256,164.11746870857834,214.85635378007552,fqhc1_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95722,46827,445.6760201416603,5085,52.00476379515681,4077,42.038402874992165,1590,16.27630011909488,77.33641368994157,79.71272592007107,63.332022412709286,65.08984979552923,77.14062877456415,79.51783382242613,63.25876598543669,65.01910947382675,0.1957849153774162,194.89209764493864,0.0732564272725966,70.74032170248756,223.31518,156.42774723485567,233295.33440588368,163418.59389356224,454.23587,300.8995188336852,473992.6140281231,313804.1988841909,436.20227,212.28346449435287,452143.8958651093,219067.14500558216,2640.65695,1228.7070224342008,2723375.1384216794,1248589.0925210535,958.48337,435.4509135764253,983908.787948434,437580.1068220755,1548.22112,647.6959006546808,1585650.3625080965,649049.863193927,0.38025,100000,0,1015069,10604.333382085624,0,0.0,0,0.0,39146,408.37007166586574,0,0.0,39533,409.4147635862184,1229712,0,44111,0,0,8895,0,0,82,0.8566473746892042,0,0.0,0,0.0,0,0.0,0.05085,0.1337278106508875,0.3126843657817109,0.0159,0.3588046150936259,0.6411953849063742,23.574490848881613,4.152562886570513,0.3036546480255089,0.2702967868530782,0.2197694383124846,0.2062791268089281,11.190271978910667,5.954865778698908,16.745242510675013,11717.102261381344,46.7335462030711,13.587574324735929,14.223765720004891,9.81610784798382,9.106098310346448,0.5889134167279862,0.8166969147005445,0.7084006462035541,0.5848214285714286,0.1189060642092746,0.7556109725685786,0.910828025477707,0.8538681948424068,0.748792270531401,0.1534090909090909,0.5191370911621433,0.7464342313787639,0.6512935883014623,0.5355587808417998,0.1097744360902255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0046247933549021,0.0067008477587694,0.0090251239938206,0.0112712735114899,0.013606827857332,0.0157660184174833,0.0178885031652031,0.0198133172482185,0.0221628483098908,0.0242427348675106,0.0261901584140118,0.0280322895778703,0.0302605829642599,0.0324827422533612,0.0344913125717061,0.0364671774694553,0.0383418399103697,0.0405009353564747,0.0425715863045946,0.0566467228435088,0.0704413964826381,0.0836383083585877,0.0964964838699505,0.1089797639123102,0.124434580426971,0.1354780580877676,0.1468098681412165,0.1570284982388728,0.1675933365472173,0.1804181957104269,0.1923742376400363,0.2037359007237085,0.2130225343804957,0.2216215622287415,0.2315491525048925,0.2404318614834375,0.2486206470317223,0.2563846790373956,0.2636207685269899,0.2699582866320788,0.275696187751766,0.2809292657288972,0.2860970883077733,0.2909260651325202,0.2950609996064541,0.2987147621248266,0.302128578323046,0.305377456049638,0.3088836167127982,0.307069674886385,0.3046671893698675,0.3021013666624442,0.2996288755072275,0.297009848338557,0.2944021057141983,0.2912271267930854,0.2921558339345445,0.2921877399211779,0.2924020394338075,0.2933173867543728,0.2948675007388435,0.2957717098813075,0.295529359430605,0.297387889960974,0.2994681541055908,0.3012316113581936,0.3059670976062407,0.3101851851851852,0.3141926773091891,0.3166194350489076,0.3211249532160616,0.3241449719244512,0.3274961597542242,0.3350978353341525,0.3383024765568646,0.3411020219169625,0.3455986989225452,0.3478260869565217,0.3631221719457013,0.0,2.0625624002812515,52.4474787115561,150.22506857702723,212.5549531324854,fqhc1_80Compliance_baseline_low_initial_treat_cost,0 -100000,95611,46886,446.9046448630388,5294,54.15694846827248,4172,43.07035801319932,1563,16.044179017058706,77.26635035352784,79.70442851272031,63.26822878755484,65.07196915270315,77.06440107822505,79.50260537565222,63.19198252836941,64.9978006187118,0.2019492753027947,201.8231370680894,0.0762462591854316,74.16853399134027,221.98484,155.4407805397184,232175.00078442856,162576.25225101545,451.2611,298.2996875558105,471436.7698277395,311453.700469413,436.08894,212.35102898531343,451717.6057148236,218925.4167593525,2696.10396,1257.035899859227,2787216.460449111,1282088.3265097393,984.20748,442.16491964713583,1015948.2695505748,449023.3756023216,1526.42484,651.6724061007051,1568473.0836410036,657635.7141302442,0.3804,100000,0,1009022,10553.409126564937,0,0.0,0,0.0,38788,405.0998316093337,0,0.0,39579,409.6599763625524,1233329,0,44276,0,0,8951,0,0,78,0.805346665132673,0,0.0,0,0.0,0,0.0,0.05294,0.1391692954784437,0.2952398942198715,0.01563,0.3519492293744333,0.6480507706255666,23.62785453292376,4.196881496419795,0.3209491850431448,0.2634228187919463,0.2049376797698945,0.2106903163950143,11.157399910157215,5.922540328577011,16.763355080750372,11756.521670482522,47.79530780505793,13.4209261282294,15.279185401846624,9.492016336985426,9.60317993799648,0.5838926174496645,0.7970882620564149,0.707244212098581,0.5883040935672514,0.1251422070534698,0.7485572959604286,0.9290322580645162,0.8520710059171598,0.7630331753554502,0.135678391959799,0.5163906725245015,0.7003154574132492,0.6583416583416584,0.531055900621118,0.1220588235294117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021889821233126,0.0044331727111336,0.0068550885068093,0.0089067837969741,0.011492029885385,0.0134635180447832,0.0157066459830176,0.0178106127954385,0.0198698534828517,0.0220309457936263,0.0241799745473952,0.0262424834249884,0.0281752486051347,0.0300343337904298,0.0321641051065939,0.0340942013989487,0.0361832899741918,0.0384283829959598,0.0404333708005495,0.042457110079783,0.0567548637318753,0.0706942625098244,0.0842944475956387,0.097512165321986,0.1097157824695556,0.1248027117207775,0.1364544584971835,0.1474453333333333,0.1584056683541865,0.1682048196654383,0.1808141165304053,0.1932039887275092,0.2036544995208641,0.2133288056873076,0.222407123728496,0.2318443500349414,0.2408650677509802,0.2504419696645534,0.2585889570552147,0.2651015563175943,0.27167014130183,0.2774745865929638,0.2830899335536367,0.2875863226549012,0.2911577028258887,0.2957520573466089,0.299736908043097,0.3033540467580095,0.3064965347496599,0.3095659057923209,0.3065844729191342,0.3037553456265555,0.3031765914624706,0.3009484488458374,0.2992041810191234,0.2958743654046119,0.2924183729939125,0.2929125592533665,0.2925339520917218,0.2938867278112844,0.29496187210762,0.2954576887360954,0.2961768770152003,0.296786727106268,0.2979239752030371,0.2996225432773656,0.301479374110953,0.3049776883916787,0.3100318861908266,0.3126857686363096,0.3173609220437426,0.3217800825484178,0.3257427616224058,0.3303854875283447,0.3325894932589493,0.3414176918570591,0.3409056489474481,0.3474525474525474,0.3523344191096634,0.3621722846441947,0.0,2.158967947002288,52.87106479653479,158.46619446281628,213.7685672958832,fqhc1_80Compliance_baseline_low_initial_treat_cost,1 -100000,95718,46679,444.31559372322863,5216,53.27106709291878,4104,42.42671179924361,1531,15.681481017154558,77.34534288058313,79.71428709884839,63.32656324425341,65.07462911927884,77.15070994255032,79.52004468626522,63.25328220670366,65.00331918804827,0.1946329380328109,194.242412583165,0.0732810375497479,71.30993123057294,223.19704,156.29192174235538,233181.4287803757,163283.33025810358,449.76062,297.48682025400893,469430.7131365052,310346.2030126984,437.72938,212.9803373972101,454662.0593827702,220434.943203209,2648.78706,1242.317672800024,2739299.933136923,1270055.857812862,943.98483,432.2763227191589,974933.4190016506,440391.8634587271,1483.2291,632.512931590423,1521136.7349923735,637623.8018543808,0.37916,100000,0,1014532,10599.15585365344,0,0.0,0,0.0,38606,402.8604860109906,0,0.0,39754,412.6392110156919,1230399,0,44232,0,0,8890,0,0,82,0.85668317348879,0,0.0,1,0.0104473557742535,0,0.0,0.05216,0.1375672539297394,0.2935199386503067,0.01531,0.3545824094604582,0.6454175905395417,23.499006470498987,4.169348052216913,0.3114035087719298,0.2799707602339181,0.2100389863547758,0.1985867446393762,11.657263551478993,6.400240547837005,16.41068010716393,11680.40462572321,47.1159123615622,14.072042392486956,14.490273628222376,9.56086196879447,8.992734372058395,0.5969785575048733,0.8198433420365535,0.6987480438184663,0.58584686774942,0.1349693251533742,0.7649958915365653,0.9232409381663113,0.8885542168674698,0.7555555555555555,0.1727748691099476,0.5261517145826117,0.7485294117647059,0.6321353065539113,0.5259026687598116,0.1233974358974359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0047128696815519,0.0070512560366868,0.0091509242331911,0.0112062478390856,0.0133782669340962,0.0154735329194825,0.0176495207374212,0.019861795432707,0.0221924230481825,0.0241939617612384,0.0262582281600755,0.0286460744077925,0.0307413359706597,0.032765737874097,0.0347123157394198,0.0366001429207618,0.0386583226958082,0.0407794044252204,0.0426010837849103,0.0576372788604131,0.0713022365019727,0.0852115336187358,0.0980451982156384,0.1103900900045371,0.1252023916609344,0.136173510552465,0.1472712167689161,0.1579155489531789,0.1683631332253601,0.1808749057213662,0.1930248170124301,0.2040827430113494,0.2128453824933222,0.2217535899920711,0.2307769045745258,0.2397794618243507,0.248129605670248,0.2552686829711172,0.261831134322888,0.2681719335585064,0.2743573858256671,0.2796095829636202,0.284494322809371,0.2890116561437591,0.2932916163681604,0.2970806023915545,0.3005055637416798,0.3040112870031194,0.3074324770085369,0.3049948153036077,0.3030861734476258,0.3007149807505183,0.2975598473459003,0.2960117685518143,0.291906452797845,0.2886459501729885,0.289729570455736,0.2894647350880772,0.2908735448324891,0.291760627690702,0.2924570956771314,0.293874914032053,0.2947232373651841,0.2957445787756668,0.2962251414922893,0.2977370963640987,0.3032585353708257,0.3089569358034131,0.3114805520702635,0.3118454315637414,0.3142661684997105,0.3162680617837568,0.3166314518563236,0.3213487332339791,0.3255841258659152,0.3292498487598306,0.33486881634288,0.3382233088834556,0.3385857033051498,0.0,1.6923099947266866,53.66249034332788,153.42194095600345,209.8656702305909,fqhc1_80Compliance_baseline_low_initial_treat_cost,2 -100000,95672,46773,445.1772723471863,5235,53.50572790367088,4160,43.00108704741199,1542,15.835354126599215,77.2498286400838,79.64975330629014,63.26585613190741,65.03964896919531,77.05479587681623,79.45505849419078,63.19239427748849,64.96840027920632,0.1950327632675765,194.6948120993568,0.0734618544189231,71.24868998899103,223.04458,156.35801462233937,233134.64754578145,163431.32224928858,454.89566,301.0169273733749,474994.48114390834,314154.5983917708,439.35535,214.04806941932665,456570.15636758925,221680.34239453252,2673.88099,1242.281774112074,2764927.8263232717,1268855.2768570292,944.69277,425.4541061016226,977939.4075591604,435268.4840732643,1491.27044,632.289920560418,1532616.2095492934,638147.3940060828,0.37955,100000,0,1013839,10597.029433899155,0,0.0,0,0.0,39060,407.76820804415087,0,0.0,39937,414.7294924324776,1221236,0,43833,0,0,8699,0,0,72,0.7525712852245171,0,0.0,1,0.0104523789614516,0,0.0,0.05235,0.1379264918983006,0.2945558739255014,0.01542,0.3571689164538489,0.642831083546151,23.74572922847662,4.128296110242811,0.3112980769230769,0.2769230769230769,0.2161057692307692,0.1956730769230769,11.445577817254613,6.214418816446765,16.536116987030702,11697.218664887476,47.575151209659325,14.129793979305989,14.617977012081136,9.98128612248858,8.846094095783624,0.5841346153846154,0.7977430555555556,0.6996138996138996,0.575083426028921,0.1081081081081081,0.7628781684382666,0.9278131634819532,0.8728323699421965,0.7148936170212766,0.1520467836257309,0.5097037793667007,0.7077826725403817,0.6364594309799789,0.5256024096385542,0.0964230171073094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413468941205,0.0047359720912308,0.0070847839546898,0.0093375330217435,0.0116874001891955,0.0138308923879168,0.015937920626504,0.0182263746362383,0.020464307629372,0.0224905521246197,0.0245453519739878,0.0265844889573703,0.0287698718938107,0.0308180703146741,0.0328835293267394,0.0349884681814891,0.0366613128853427,0.0387562292358804,0.0407931834496821,0.0426767597777013,0.0573410791156434,0.0714083754830197,0.0844116998835049,0.0981733237930889,0.1101941747572815,0.1262130784942481,0.1378768410657208,0.1489055606470726,0.1599131383581866,0.1701759663107234,0.1822399654725938,0.1936452854741636,0.2034870408129886,0.2128999001963171,0.2216863480852003,0.2312572215803039,0.2405117127603613,0.2486437714994643,0.2566652632537181,0.2627788370971077,0.268928927999257,0.2748611486208799,0.2802808868610537,0.2841887536678051,0.2887719426476142,0.2928155627788558,0.2955084522420089,0.2987909969487674,0.3022011557691059,0.3063274055255636,0.3036615991143034,0.3013747742033342,0.2985426610557234,0.2965393362594701,0.2954697711810156,0.2924456022065584,0.2887967199100825,0.2890772592118016,0.2909059829059829,0.2911170688114388,0.2915549723497985,0.2927229258461599,0.2936871379879974,0.2944884001609226,0.2965054797154393,0.296572125489789,0.2982396558555499,0.3026770966435005,0.3057592714886518,0.3097205824478551,0.3128406071251632,0.316533948030176,0.3198332711210651,0.3260591466626533,0.3324997684542002,0.3401725343903007,0.3426372963186481,0.3460841554258103,0.3545405111473627,0.3626497005988024,0.0,1.853292666863197,53.90951561219157,149.55433323049823,220.01172945565256,fqhc1_80Compliance_baseline_low_initial_treat_cost,3 -100000,95739,47079,448.80351789761744,5250,53.6354045895612,4195,43.159005212087024,1631,16.63898724657663,77.32698317968122,79.68659786365474,63.31555014592704,65.06105752002132,77.11076046187891,79.47394726692784,63.23424863577144,64.9838226462102,0.2162227178023101,212.65059672690256,0.0813015101556047,77.23487381112193,221.79036,155.38110749006887,231660.7652054022,162296.00047050032,450.59501,297.80680437451383,469950.0621481319,310367.2361573725,439.19743,213.99577836452517,454450.7254097077,220200.63682895503,2746.70435,1283.5766482809977,2829186.84130814,1301289.9356377712,959.47901,432.5813622858987,988318.9504799506,438051.0606609345,1587.43534,679.3189276256705,1621282.6956621648,678209.0444349261,0.38166,100000,0,1008138,10530.034782063736,0,0.0,0,0.0,38646,402.9287959974514,0,0.0,39845,411.8593258755575,1236431,0,44362,0,0,8773,0,0,77,0.804269942238795,0,0.0,2,0.0208901283698388,0,0.0,0.0525,0.137556987894985,0.3106666666666666,0.01631,0.3530269876002918,0.6469730123997083,23.64114426696925,4.19208680290259,0.3125148986889153,0.2703218116805721,0.2042908224076281,0.2128724672228844,11.356709113080916,6.11166428732719,17.515317838965956,11698.535380991138,48.11241417734895,13.848685410041124,14.92502623180058,9.634008987761666,9.70469354774557,0.5685339690107271,0.7936507936507936,0.6895499618611747,0.5682613768961493,0.1052631578947368,0.7459546925566343,0.90561797752809,0.8937329700272479,0.6965811965811965,0.1473684210526315,0.4944237918215613,0.7213352685050798,0.6101694915254238,0.5200642054574639,0.0938833570412517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020363710045083,0.004258684674819,0.0065261961309705,0.0087268368010403,0.0110856852275616,0.0133190774400488,0.0155300403801443,0.0175572908691879,0.0197767829766358,0.0218425981842188,0.0239010341399419,0.025868971605724,0.0279496720873337,0.030150132833577,0.032442748091603,0.0345536646103929,0.0364526715739561,0.0382648562863692,0.0400357536325274,0.0420460464631732,0.0562584820962522,0.0706491604331223,0.0838636625743072,0.0961261498028909,0.1087710421739451,0.1240193694360449,0.136019429832004,0.1466824240875601,0.1574761909851748,0.1672283880385548,0.1795684321714199,0.1912709156874424,0.2025265494428969,0.2110198142211621,0.2203936505140794,0.2299899132092621,0.2396273208660098,0.2479979275311715,0.2552195742554013,0.2626433949506641,0.2690726782220061,0.2753164927566782,0.280984488499686,0.2853148363714913,0.2899847978108847,0.294571826781948,0.2988901693556469,0.3033860965018401,0.3069804816091656,0.3100790539916326,0.3078217328685071,0.3047072741278749,0.3016159000056303,0.2991360379103097,0.2970427911536233,0.29347792788653,0.2911554718295366,0.2918300063969032,0.2928577523679495,0.2942150231399074,0.2953972080506811,0.2960312296681848,0.2978549583141313,0.2987282463186078,0.2995873716533921,0.300998907444982,0.3015656522603926,0.3055198570667335,0.3104858441104509,0.313930544593528,0.3200560629351659,0.3216845878136201,0.3233293816684345,0.326827430293896,0.3280014879568492,0.3293813827914074,0.3295953932414002,0.3319959879638917,0.3345293955285675,0.3373122834039276,0.0,2.4527102836719505,53.73351100245398,155.94761810672793,216.5980367315444,fqhc1_80Compliance_baseline_low_initial_treat_cost,4 -100000,95755,47150,448.7702992010861,5295,54.05461855777767,4174,42.94292726228396,1596,16.27069082554436,77.39144353273707,79.7290499298931,63.36142006586866,65.08652848611462,77.19273131414508,79.53462183386243,63.28775169519575,65.01718303117877,0.1987122185919929,194.4280960306628,0.0736683706729124,69.3454549358421,222.41824,155.76498877513382,232278.4606547961,162670.34491685432,454.36395,300.6473694473597,473856.5401284528,313325.413239371,442.00651,215.5991270817904,457082.5648791186,221709.9993663776,2711.93953,1245.401552901012,2793561.5685864966,1262009.1931502402,961.38315,425.1759513514418,989453.0520599446,429474.7755745833,1557.38204,646.7305869985333,1589730.9801054776,643537.7789502017,0.38217,100000,0,1010992,10558.111847945278,0,0.0,0,0.0,38958,406.1720014620647,0,0.0,40043,413.774737611613,1234804,0,44285,0,0,8796,0,0,94,0.9816719753537676,0,0.0,0,0.0,0,0.0,0.05295,0.1385509066645733,0.3014164305949008,0.01596,0.3355668236146323,0.6644331763853676,23.912576403571048,4.13442990636455,0.3078581696214662,0.2700047915668424,0.2089123143267848,0.2132247244849065,11.473627959413433,6.272204864939509,16.830463449977284,11764.834000256971,47.36805928179615,13.897109177946016,14.332034478866936,9.543017894407614,9.59589773057559,0.5778629611883086,0.8163265306122449,0.688715953307393,0.5802752293577982,0.1134831460674157,0.7715481171548118,0.9498956158663884,0.8724637681159421,0.7253886010362695,0.146067415730337,0.5001678415575697,0.7175925925925926,0.6212765957446809,0.5390279823269514,0.1053370786516853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020654462983962,0.0044083221014015,0.0066557090968121,0.0090187993215587,0.0110624192941607,0.0132827131341096,0.0155186468310576,0.0179260105699185,0.0206151865888915,0.0226323974789228,0.0248360655737704,0.0268592709626453,0.0289251952322235,0.0311544755611819,0.0331835144217883,0.0349354902021548,0.0368231495280675,0.0386944888096077,0.0406107727168783,0.0426879446660902,0.0575857209957726,0.070900168461144,0.0843046128345275,0.097259323139053,0.1093232670448554,0.1245175276265002,0.1361958896265032,0.1469133307092477,0.1579138457595626,0.167315133391213,0.1807202979355477,0.1922918874494452,0.2028232686017322,0.2127494565751674,0.221529838443785,0.2316695429001283,0.2413139889906621,0.24934869514441,0.257002674160359,0.2639530628116565,0.2692392120616949,0.2753017044989894,0.2820682562386958,0.286711444751745,0.2907810018066957,0.2953441171043729,0.2995190205509401,0.3026478028194079,0.3074903654656907,0.3112524358771791,0.3086282145974618,0.3067804516642428,0.3046176309545537,0.3021542358003194,0.3003743212652947,0.2984601794172746,0.2957795275590551,0.2957836143712966,0.2959911669780873,0.2972055923682293,0.2981031328180426,0.2990466435549953,0.3004407494830071,0.3003681802967756,0.3013257757709674,0.3018445768400239,0.3015769470758409,0.305909290508751,0.309154016057217,0.3104281357677532,0.3118969597669762,0.3151376634421176,0.3159319899244333,0.3223529411764705,0.3247504431383524,0.3286566117151877,0.3333333333333333,0.3361880103565027,0.3365695792880259,0.3343373493975903,0.0,2.561805559630065,51.61512425165361,149.95019728490576,223.34106399008527,fqhc1_80Compliance_baseline_low_initial_treat_cost,5 -100000,95728,47032,448.04028079558753,5193,53.06702323249206,4153,42.79834531171653,1624,16.59911415677754,77.37264048070351,79.73064287038841,63.34029949113111,65.08124222796238,77.16534253606186,79.525637732993,63.26234002101948,65.00646704546831,0.2072979446416525,205.00513739540335,0.0779594701116366,74.775182494065,221.63152,155.295592859597,231521.45662711016,162225.2903224259,452.10221,299.5171720236441,471677.952114324,312286.0453034586,438.8935,214.35699947312168,454239.35525656026,220737.10422368892,2718.36445,1265.1799254527205,2803832.7657529665,1286030.039527174,982.13211,445.21476603255087,1012286.9379909744,451548.1422283438,1586.72286,671.3923142704657,1624096.586160789,674954.8381132103,0.38105,100000,0,1007416,10523.702573959552,0,0.0,0,0.0,38775,404.4480193882668,0,0.0,39726,410.80979441751634,1236306,0,44333,0,0,8802,0,0,95,0.9923951195052648,0,0.0,0,0.0,0,0.0,0.05193,0.1362813279097231,0.3127286732139418,0.01624,0.3507545086492455,0.6492454913507545,23.76877918969357,4.233687925941334,0.3144714664098242,0.2614977124969901,0.2053936913074885,0.218637129785697,11.339879667649504,5.9874041748035385,17.39569740875477,11726.573663172428,47.3373021749396,13.189330218708369,14.856087712753618,9.515952202949736,9.775932040527868,0.5742836503732242,0.7909760589318601,0.722052067381317,0.5685814771395076,0.1079295154185022,0.7570247933884298,0.9227053140096618,0.8697916666666666,0.755656108597285,0.1727748691099476,0.4991505266734624,0.7098214285714286,0.6605206073752712,0.5031645569620253,0.0906555090655509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021367088607594,0.0043172904441944,0.0064720979538837,0.0088966525836854,0.0112660016878666,0.0132133477207484,0.015707820272364,0.0179233054004674,0.0199736274519825,0.0224383253147712,0.0244732660070743,0.0266010964867251,0.0286674961183716,0.0307209062821833,0.0327868852459016,0.0349022282855843,0.036888640410817,0.0387403926937797,0.0405250904253107,0.0424226643058014,0.0568654067035606,0.0714450141257716,0.0846439355812783,0.097669921279704,0.1094585050649857,0.1252603203129129,0.1365574292077633,0.1476547203541329,0.157963864684777,0.1672707386119928,0.1797497523366498,0.1912741513230489,0.2028077730292848,0.2127499015704974,0.2216843078141848,0.2313538666075781,0.2396079832120373,0.2482829283671493,0.2564154994376853,0.2628428584533529,0.2689903456578612,0.2751167335666054,0.2815946922575676,0.2867427378424103,0.2918550936056406,0.2964424440471052,0.3003004130679684,0.303630698798245,0.3078854066923734,0.3107871182061456,0.3086936058629732,0.3062590175197526,0.3032779966235228,0.3008385895529928,0.2982378004424056,0.2945217005522664,0.2918878776387308,0.2917055902453415,0.2915588395532552,0.2916822147591378,0.2923635686347551,0.2930628118002907,0.2937522149721695,0.2953237809619016,0.2956700341525161,0.2970709133683203,0.2970341733216694,0.3005284426484302,0.3055728841755042,0.3099890573706425,0.3132681438952184,0.315565815014952,0.3209714678154461,0.3262880782248966,0.3288827074640704,0.3310288258729786,0.3315168029064487,0.3370786516853932,0.3301552710433124,0.3305439330543933,0.0,2.185193624961421,52.59721593665255,154.83572312191302,213.43366626061885,fqhc1_80Compliance_baseline_low_initial_treat_cost,6 -100000,95740,46932,446.2502611238772,5253,53.603509504909134,4181,43.074994777522456,1599,16.33590975558805,77.33281654085012,79.69837417192096,63.319784280511655,65.07076196778877,77.12881347534413,79.49846871826554,63.24333112548852,64.9986223328293,0.2040030655059865,199.90545365541837,0.0764531550231382,72.13963495946984,222.77838,155.9885649798027,232691.01733862545,162929.35552517517,450.76196,297.9713158363379,470215.4689784834,310626.3273828472,434.14693,211.0901560619787,449761.207436808,217645.2304115728,2723.67265,1259.0604506642478,2809356.235638187,1279575.3714897092,946.08614,420.4519088654595,973928.452057656,424905.85843478097,1547.19876,653.2351642544348,1582530.1650302904,653073.9290724572,0.3803,100000,0,1012629,10576.864424482976,0,0.0,0,0.0,38757,404.188426989764,0,0.0,39418,408.01128055149366,1233542,0,44315,0,0,8846,0,0,71,0.7415918111552121,0,0.0,0,0.0,0,0.0,0.05253,0.1381277938469629,0.3043974871501999,0.01599,0.3661689730517116,0.6338310269482884,23.65589757318176,4.22400322110482,0.3099736905046639,0.2685960296579766,0.2217172925137527,0.1997129873236068,11.473012524525052,6.1724780363473135,17.116004737775423,11742.615159501864,47.69018266433847,13.71427841431111,14.607808175832592,10.237128981946622,9.130967092248138,0.5819182013872279,0.7996438112199465,0.7013888888888888,0.5782092772384034,0.1077844311377245,0.7441077441077442,0.9157427937915744,0.8067226890756303,0.726457399103139,0.1337579617834395,0.5175409288339459,0.7217261904761905,0.6613418530351438,0.53125,0.1017699115044247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021380295676316,0.0043917925207671,0.0065387348969438,0.0089041583232534,0.0109571480893663,0.0132211538461538,0.0153684554039446,0.0175193212794413,0.0198259731495588,0.0219127585500716,0.0244112490644575,0.0262560711388583,0.02850239062259,0.030659430066221,0.0325832378947802,0.0348028321877099,0.0368068932662234,0.0387509210348799,0.0408347891190416,0.0430058237052934,0.0573895431387288,0.0716804252069012,0.0849220830973804,0.097365322343244,0.1091727452881899,0.1240641258829998,0.1361601934539592,0.1474354198375783,0.1577036048064085,0.166965157055991,0.1784902938231462,0.1902742467679991,0.20142875782881,0.2116206613828915,0.2202010426060752,0.2303502031687684,0.2400888184688856,0.2488549274693615,0.2571642587191156,0.2636279325387284,0.2701930198111461,0.2761457796919619,0.2813584208594333,0.2864539636119567,0.2913386783284742,0.29644468551986,0.2997058639464297,0.3030595895114321,0.3064463922731333,0.3103844174353696,0.308909051747348,0.3056621947024424,0.3034768398512341,0.3013967731218673,0.2997651465604376,0.296407368872024,0.2934619337497035,0.2935420422881495,0.2944445391473331,0.2948820649755229,0.2951003475725978,0.2962312895655432,0.2972025052192066,0.2980026275356833,0.3001701699302543,0.3027885340055615,0.3053014375816807,0.3079961132181926,0.3120473074635221,0.3164767331433998,0.3184167573449401,0.3238967086464176,0.3241923365890308,0.3317227842367507,0.3317209302325581,0.3368458025992272,0.3404063205417607,0.344896331738437,0.3503253796095444,0.3544494720965309,0.0,2.3202166358055645,51.55821245839218,154.73134125883675,222.6180301352829,fqhc1_80Compliance_baseline_low_initial_treat_cost,7 -100000,95789,46753,444.0175803067158,5365,54.94367829291463,4275,44.15955903078642,1625,16.66162085416906,77.34910350822409,79.67618129971504,63.34642956891118,65.06606228677312,77.1424476161475,79.47149768339591,63.26887966705464,64.99157542848418,0.2066558920765828,204.68361631913007,0.0775499018565355,74.48685828893531,221.62118,155.2613366634069,231363.6847654741,162086.58265918525,448.72771,296.942883644976,467982.6076063014,309526.1097938996,441.08309,215.1953889435267,457434.7158859577,222443.26331689916,2748.67388,1283.1955681173713,2841556.107695038,1311757.177915555,987.65035,443.74919382326,1021012.74676633,453333.35272023454,1576.6114,662.2473611091534,1618241.8649322991,667413.577681206,0.38043,100000,0,1007369,10516.531125703368,0,0.0,0,0.0,38483,401.2360500683794,0,0.0,40068,415.2355698462245,1240449,0,44530,0,0,8812,0,0,92,0.9604443098894444,0,0.0,1,0.0104396120640157,0,0.0,0.05365,0.1410246300239203,0.3028890959925442,0.01625,0.3443968593861527,0.6556031406138473,23.594674308888827,4.024602098540769,0.312046783625731,0.28,0.2053801169590643,0.2025730994152046,11.51525145331815,6.3398904038538815,17.240319743668824,11771.905933901342,49.17334061308168,14.796490155954398,15.226526257488114,9.699075186913298,9.45124901272586,0.5805847953216374,0.7936507936507936,0.6941529235382309,0.5785876993166287,0.1131639722863741,0.7606299212598425,0.905587668593449,0.8620689655172413,0.7668393782383419,0.1270718232044199,0.5044925124792013,0.7079646017699115,0.6280041797283177,0.5255474452554745,0.1094890510948905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0046118448392949,0.0066246664840571,0.0088368833226681,0.0113271240899662,0.0136202614112952,0.0156750035671334,0.0179621162638798,0.0203743818204111,0.0228870177305327,0.0247822968958098,0.0265059004617752,0.0285082986485792,0.0307138078328444,0.0328899886586246,0.0350252024458767,0.0369826158940397,0.0391742101388413,0.0411679135494596,0.0432043485504831,0.058105922254109,0.0717565235580191,0.0851463141008838,0.0984908991550716,0.1107903055848261,0.1261464981613762,0.1376441410886891,0.1491323210412147,0.1594229189119972,0.1695196674950724,0.1813329315669963,0.192863707628264,0.2039136815785182,0.2135679216192277,0.2224654821497332,0.2320853127803063,0.2406820515109583,0.2483305227655986,0.2554936639931024,0.2627657017272758,0.2698183247950227,0.2764028911604407,0.281941765951657,0.2861283792686286,0.2904811613905613,0.2955601286490616,0.3000125125125125,0.303953378885623,0.3067735792841691,0.3106102616916211,0.3082259129052679,0.3063190783587739,0.3045020694315398,0.3016686393949017,0.3001957701776763,0.29701230228471,0.293772997899591,0.2931960315641269,0.2935539328328992,0.2946213969056563,0.2949821658667762,0.2955868137071159,0.2966925053801634,0.2977973175031801,0.3001033181960162,0.2996222482740654,0.3007497363094729,0.3041670603798544,0.3064521794106283,0.3096222664015904,0.3149979492321013,0.3196686491079014,0.323788406715236,0.3263502704349813,0.3283271937281571,0.334609403038641,0.3321483771251932,0.3331976389171585,0.3341611479028697,0.3290246768507638,0.0,1.736849201554434,56.01010705410466,159.9508941215742,219.3917038416324,fqhc1_80Compliance_baseline_low_initial_treat_cost,8 -100000,95669,47324,450.3862275136146,5369,54.91852115105207,4305,44.43445630245952,1610,16.494371217426753,77.31532774038504,79.70922762310425,63.31028192710126,65.07729913159267,77.11506906158598,79.51011397449426,63.2347902230078,65.00436894476982,0.2002586787990594,199.1136486099947,0.0754917040934586,72.93018682284469,221.8502,155.42849039490406,231892.8179452069,162464.15975384304,453.9244,299.713717712247,473899.319528792,312707.70188069995,448.82831,218.6226340827844,465726.1913472494,225799.06279434872,2798.14706,1306.298026756955,2889960.258809019,1330604.925374944,1000.44017,454.366221184815,1029424.2021971592,458630.514361825,1565.8793,669.8673667966083,1605626.44116694,674212.086265282,0.38445,100000,0,1008410,10540.582633873042,0,0.0,0,0.0,38952,406.5580282014028,0,0.0,40716,422.2266355872853,1233394,0,44320,0,0,8863,0,0,84,0.8675746584578077,0,0.0,1,0.0104527067284073,0,0.0,0.05369,0.1396540512420341,0.2998696219035202,0.0161,0.3643327988597897,0.6356672011402102,23.23850939539236,4.074767909174669,0.316144018583043,0.2655052264808362,0.210917537746806,0.2074332171893147,11.447818853980078,6.278941149410805,17.245332292087703,11889.318877682328,49.26986200118205,13.969176517128393,15.39888848395618,10.13541911877765,9.766377881319825,0.5802555168408827,0.8162729658792651,0.7016899338721528,0.5616740088105727,0.1119820828667413,0.7541371158392435,0.9221556886227544,0.8535911602209945,0.7194570135746606,0.1459459459459459,0.5075757575757576,0.7336448598130841,0.6466466466466466,0.5109170305676856,0.1031073446327683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.0049372452807234,0.0069414845034402,0.009164245219759,0.011444091796875,0.013842627960275,0.0161663759778872,0.0185079261317208,0.0206577763233248,0.0230202861151219,0.0249423106507358,0.0272113735117977,0.0292989043773468,0.0314174429148462,0.0333921696136417,0.0355366174021863,0.0372899268499906,0.0393154054530924,0.0413676173833447,0.0434293218272207,0.0584338922843859,0.0718458800125641,0.085515475278387,0.0986363062418451,0.1108390759716755,0.1266684308017994,0.1387983479673415,0.1503839476851309,0.1613765095650315,0.1713690853089215,0.1837247146813807,0.1946035492707645,0.2052356590834875,0.2145975816600098,0.2240382391488705,0.2341966613055293,0.2429353289400201,0.2511844607749355,0.2594598276625455,0.2659797595443032,0.2723209115964518,0.2789957277462398,0.2850563553703353,0.2900741380551356,0.2951715760704524,0.2998373663200434,0.3036916531097485,0.3074428718574753,0.3103635587630466,0.3145935538323574,0.3119988159948334,0.3097962102252413,0.3076620162016201,0.3044476534296029,0.3030383953474571,0.2994113599877685,0.295304133562888,0.294358135731807,0.2948689565913387,0.2957967042744777,0.2959668848240756,0.2980033441526507,0.2985657320612121,0.2986275121429526,0.2996740328843296,0.3021522963886076,0.3029328933519187,0.3076511671805197,0.31259878472832,0.3145888804991456,0.3179085443614501,0.3206947680576149,0.3242256358599849,0.3282349342306516,0.3307539869774464,0.3339262421439583,0.3333333333333333,0.3358386075949367,0.3429504627109417,0.3445945945945945,0.0,2.112878616345073,55.43673764509152,158.567358443715,223.4813224313,fqhc1_80Compliance_baseline_low_initial_treat_cost,9 -100000,95618,46893,444.3201070928069,5200,53.08623899265829,4100,42.18870923884624,1627,16.5972933966408,77.3146043072854,79.73367470664057,63.296484254502126,65.08290848836288,77.10380636126594,79.52780122817539,63.21562829420191,65.00682283675378,0.2107979460194684,205.873478465179,0.0808559603002123,76.08565160909109,221.04236,154.881778843532,231172.3315693698,161979.7306401849,450.56022,298.4418408506872,470544.40586500446,311454.7165289873,438.90235,213.7426119863133,454820.3580915727,220295.9669943947,2668.47505,1245.726530339724,2749171.515823381,1261221.0047686875,945.08822,425.13013951671377,970971.0723922274,427192.9630774676,1584.07658,680.1310968427404,1617771.486540191,677740.8714748537,0.38008,100000,0,1004738,10507.833253153172,0,0.0,0,0.0,38696,403.9825137526407,0,0.0,39714,411.0836871718714,1236809,0,44331,0,0,8621,0,0,77,0.805287707335439,0,0.0,1,0.0104582819134472,0,0.0,0.052,0.1368133024626394,0.3128846153846153,0.01627,0.3488073394495413,0.6511926605504588,23.823475840075425,4.095795571309319,0.3070731707317073,0.2680487804878049,0.2160975609756097,0.208780487804878,11.22321581816964,5.971138378674939,17.432946442897602,11742.59837021938,47.00842272152988,13.302204654950764,14.376524603265402,9.901413479131872,9.42827998418184,0.5685365853658536,0.7679708826205641,0.7084988085782367,0.5790067720090294,0.0957943925233644,0.7274261603375527,0.8995433789954338,0.8484848484848485,0.7368421052631579,0.1058201058201058,0.5039451114922813,0.680786686838124,0.658772874058127,0.5243161094224924,0.0929535232383808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020366186051695,0.0044315542890752,0.0066492061558452,0.0089417263628511,0.0111185709635416,0.0136382155225096,0.0157587131914199,0.0177954847277556,0.0199241083756942,0.0224575273166685,0.0249333333333333,0.0273240883410374,0.0295358215711287,0.0320031323091506,0.0343012273295002,0.0366027669210248,0.0389903741542414,0.0409061649951203,0.0430353668307199,0.0450577302168403,0.0600508001547,0.073948752330868,0.0872135761241677,0.100102112787258,0.1123168517502005,0.1282616062351745,0.1395351307710285,0.1497452731652207,0.1601245306030747,0.1690284596955274,0.1806558119962451,0.1921930385578476,0.2035416553152073,0.2132925746967754,0.2226411350332374,0.2316221765913757,0.2405414165800445,0.2476421206828553,0.2555589642203815,0.2620773500940496,0.2685926011694552,0.2745352659717591,0.2795795653614886,0.2842621339438764,0.289335972122728,0.2938227505080988,0.2973466376572386,0.3003888775925172,0.3041825095057034,0.3075634905983808,0.306092244766159,0.3032860107472204,0.3011982033988989,0.2984554924652883,0.2962373823717424,0.2940176177709689,0.2911901669464947,0.2914303562328418,0.2914112530392794,0.292381054436348,0.2928242904685338,0.2930023994021162,0.2936987214193494,0.2946488145545127,0.2965145406398358,0.2968600841094971,0.2968428180458765,0.299624188588999,0.3028000416363068,0.3059950531977543,0.3104766187050359,0.3153361344537815,0.3192276346310576,0.3234472869972077,0.3264716840536513,0.3306451612903225,0.3315351418002466,0.3344162436548223,0.3447145588636984,0.3453846153846154,0.0,2.693291215511583,51.16936723731735,157.2893447600188,209.21239972485225,fqhc1_80Compliance_baseline_low_initial_treat_cost,10 -100000,95642,47154,448.4117856171975,5277,53.93028167541457,4174,43.02503084418979,1604,16.34219276050271,77.29129418892526,79.69235333295663,63.29829466637945,65.07023909069275,77.08619995572008,79.49049391285578,63.220589924627646,64.99671687381725,0.2050942332051875,201.85942010084543,0.0777047417518019,73.52221687550298,222.58434,155.98633320860765,232726.56364358755,163093.9683492688,452.84077,299.5027638537407,472873.20424081467,312548.2359776465,444.70183,216.9148090137363,461084.56535831536,223803.45081237124,2701.9078,1271.0730327955098,2786611.091361536,1290579.2568071657,968.72549,441.3228310220585,996545.4402877396,445206.1729773906,1560.21012,664.3038360208888,1591271.4706927915,660464.3153831067,0.38157,100000,0,1011747,10578.480165617617,0,0.0,0,0.0,38842,405.4704000334581,0,0.0,40267,417.2016478116309,1229910,0,44093,0,0,8815,0,0,91,0.9410091800673344,0,0.0,1,0.0104556575563037,0,0.0,0.05277,0.1382970359304977,0.3039605836649611,0.01604,0.350173262812329,0.649826737187671,23.38379566647937,4.155269738841316,0.3164829899377096,0.2676090081456636,0.2093914710110206,0.2065165309056061,11.514160190496566,6.257837062264307,17.100853316202738,11814.720548038951,47.93941578227136,13.705704880245312,14.934344154123831,9.940072051058296,9.359294696843929,0.5831336847149018,0.7949865711727843,0.6949280847842544,0.6006864988558352,0.1194895591647331,0.7540453074433657,0.9372294372294372,0.8480662983425414,0.7098214285714286,0.175531914893617,0.5112321307011573,0.6946564885496184,0.6371220020855057,0.563076923076923,0.1038575667655786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021879399937198,0.0043800060833417,0.0063639962242319,0.0084645869322223,0.0107438268778805,0.0131384631053623,0.0154577156025042,0.017961075826577,0.0203359677732677,0.0227102851584498,0.0248382233799263,0.0267552688878846,0.0289288506645817,0.0310271629363999,0.0331495705318797,0.0354874744006123,0.037558296196497,0.0396747933712671,0.0416723027458978,0.0437565812108385,0.0583888970173275,0.0727798378480296,0.0860626043493326,0.0985368421052631,0.111079446502644,0.1266247512595791,0.1386895409571531,0.1495163833141591,0.1598473266119979,0.1689337899788497,0.1812349725597593,0.1921885828135828,0.2028059558535417,0.212658338716211,0.2220103814236436,0.2315738101312155,0.2413712191470105,0.2500591089744311,0.2577400347407499,0.2653627124081903,0.2716539534453023,0.2779727642847115,0.2846147470130608,0.2889416504784516,0.2933223092262049,0.298013816925734,0.3009908183332707,0.3053206662931078,0.3093590441386102,0.3123540663544621,0.3101224929331,0.3072116707954858,0.3048067302678861,0.3017354738956403,0.2995095853767276,0.2962474707216874,0.2919918319535244,0.2919233233134578,0.2929481152235234,0.2941418110376853,0.294519906323185,0.2970171690798323,0.2983441626493398,0.299392233096483,0.300992282249173,0.3015683423348567,0.3029719784885366,0.3066983699903013,0.3086048220596983,0.3130985358132172,0.316844253003854,0.32058652882536,0.3257566243877935,0.3308694658233636,0.3345584770521157,0.3373063170441001,0.3345679012345679,0.3331276989512646,0.3319444444444444,0.337657382678367,0.0,2.3581363637496717,53.58629400746295,157.71248901064675,212.74604918489908,fqhc1_80Compliance_baseline_low_initial_treat_cost,11 -100000,95629,46863,446.1303579458114,5330,54.366353302868376,4244,43.7733323573393,1668,17.086866954584906,77.27514686010801,79.68740095262461,63.27600815666828,65.05701984556816,77.05926336274844,79.47344504563925,63.1940112814703,64.97806430196087,0.2158834973595702,213.95590698536185,0.08199687519798,78.95554360729307,221.848,155.42694020490077,231988.2044149787,162531.17799506505,451.13867,298.31704341370545,471149.9963400224,311343.21535695804,439.68935,214.14359053004043,455966.6942036412,221019.94507210125,2759.38497,1299.4189302499124,2848785.6507963063,1322087.64103976,953.06546,439.70790005879263,980073.053153332,443251.0013267857,1616.89464,695.3287917653029,1657711.9911323972,698270.9814962026,0.38101,100000,0,1008400,10544.918382499032,0,0.0,0,0.0,38697,404.0301582156041,0,0.0,39901,413.4310721643016,1231999,0,44220,0,0,8870,0,0,77,0.8051950768072447,0,0.0,1,0.0104570789195746,0,0.0,0.0533,0.139891341434608,0.3129455909943714,0.01668,0.3347624151482672,0.6652375848517328,24.00166817157262,4.026458213707635,0.3211592836946277,0.2591894439208294,0.2174835061262959,0.2021677662582469,11.23308417126412,6.1707641283749695,17.915598122533094,11759.613533326346,48.84849744399198,13.568329359680623,15.534405559350317,10.254843385896754,9.490919139064282,0.5739868049010367,0.8063636363636364,0.6852531181217901,0.5666305525460456,0.1072261072261072,0.734108527131783,0.9326315789473684,0.8469387755102041,0.6698113207547169,0.1421800947867298,0.504062288422478,0.7104,0.619979402677652,0.5358649789029536,0.0958268933539412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0047231484953832,0.0070823398102582,0.0094667343829355,0.0116762782371667,0.0138198631253055,0.0161418607496838,0.0184684178824105,0.0204471798227229,0.022618365006553,0.0243914947739837,0.0264428509790224,0.0285814231038314,0.0307574961089293,0.0328273440726972,0.0349461531299463,0.036910734275882,0.0390391326021934,0.041000666000666,0.043069735428768,0.0577248688308702,0.0724592122221872,0.0858991732585379,0.0983017635532331,0.1096663110416292,0.1259413029433259,0.1378504176319313,0.1502339910667647,0.1601258575113175,0.1700595455620284,0.1827152496626181,0.1929308923690946,0.2038547071905115,0.2139896032111601,0.2233921614074589,0.232938196442657,0.2417811209241411,0.2497827534449096,0.2565792469152665,0.2635629530077994,0.2702169625246548,0.276164563493925,0.2813819942100517,0.2851566253483232,0.2896366312664988,0.294094420177192,0.2980443775855584,0.3026972645305893,0.3062990593577684,0.3092666287663445,0.3064233300960397,0.3039380494391931,0.3022006682362229,0.3007718770778526,0.2987371861536176,0.2958177698854938,0.2929158760278305,0.2923541181487191,0.2927265297783226,0.2928834552346377,0.2934276253016781,0.2937788472918063,0.2955961691271799,0.2957906712172923,0.2970088032814411,0.2977313479379434,0.2982710160974363,0.3022730835554162,0.3074256905787207,0.311243072050673,0.3137823270981476,0.3155080213903743,0.3199524792096542,0.3220236748850185,0.3244710728328028,0.3284377590903707,0.3334348355663825,0.3360128617363344,0.3394320043691972,0.3465045592705167,0.0,2.398769438748246,56.39919586445659,155.74451983158255,215.7707653477852,fqhc1_80Compliance_baseline_low_initial_treat_cost,12 -100000,95684,46945,447.16985075874754,5262,53.88570711926759,4200,43.30922620291794,1592,16.261861962292546,77.28391542799022,79.6802682982467,63.28504443165552,65.05920963314409,77.07962359432352,79.4783881506898,63.208386814207415,64.98589975655165,0.2042918336667014,201.8801475569063,0.0766576174481059,73.3098765924467,222.10672,155.6299549620522,232125.24560010032,162649.925757757,452.22261,299.3855542636123,472071.5898164793,312340.5420588733,443.22854,216.1840233148202,459047.0298064462,222831.83582871835,2723.94361,1270.927997621745,2811954.725972994,1293398.2145622512,967.17963,437.8528891825176,996522.5220517536,443319.5405527752,1548.11298,659.447179664821,1582933.9701517494,659148.0135397693,0.38045,100000,0,1009576,10551.147527277288,0,0.0,0,0.0,38923,406.2016638100414,0,0.0,40212,416.1928849128381,1229202,0,44199,0,0,8712,0,0,65,0.668868358346223,0,0.0,1,0.0104510680991597,0,0.0,0.05262,0.1383098961755815,0.3025465602432535,0.01592,0.3422586520947177,0.6577413479052824,23.141404468395944,4.077518591496324,0.3145238095238095,0.2716666666666666,0.205,0.2088095238095238,11.22701074093024,6.074457479358998,17.07662276392452,11682.920153304489,48.1413308698119,13.915240053394257,15.08913453183188,9.557005786851384,9.57995049773438,0.5835714285714285,0.8019281332164768,0.7047691143073429,0.5830429732868757,0.1174458380843785,0.7586490939044481,0.9237472766884532,0.8594164456233422,0.7135678391959799,0.1731843575418994,0.5123911587407903,0.7199413489736071,0.6430084745762712,0.5438066465256798,0.1031518624641833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496503921687,0.0042904089581304,0.0063555235184827,0.0084653611243788,0.0108055309666982,0.0130796186129899,0.0151869039726656,0.0174960166687094,0.0198005625159805,0.0220553586428732,0.0243141760879824,0.026684065595331,0.0286475751432893,0.0306187649435237,0.0326912754448986,0.0346542844733086,0.0366183464754582,0.0386032655518533,0.040638651965883,0.0425112818000854,0.0573493925560697,0.071486154007224,0.0848935812938163,0.0979259399564352,0.1107980031451519,0.1256655340679347,0.1362087089478546,0.1472859135880041,0.157786162446423,0.1680511730740335,0.1803336997995214,0.1911457261392809,0.2022210125204137,0.2120541824990966,0.2206695907077208,0.2301792552305899,0.2386004136157844,0.2464699054509393,0.2537840909090909,0.2602566896440983,0.2665816622232526,0.2724331168374405,0.2782904725754412,0.2826063465763786,0.2877450920730742,0.292619420758419,0.2968303683287396,0.3004378149977091,0.3038591038591038,0.3077815726662535,0.306049103537393,0.3037435213571811,0.3017424444850718,0.2994491232118135,0.296943685398598,0.2937790840068577,0.2911814960131629,0.2917007961731267,0.2917633806663026,0.291756643406564,0.2930843784564048,0.2946463926506692,0.2961802854800395,0.297927693549834,0.2990627113730795,0.3007756391841424,0.3028563308227938,0.3086346075321167,0.3142707423580786,0.3190449925143803,0.3230518746325358,0.3252447626065902,0.3313675585076665,0.3369111508646392,0.3396052388858144,0.3419302135605088,0.3497811981288667,0.3527521092808356,0.3504698728579326,0.3426067073170731,0.0,2.31973987840251,52.687707700938255,158.16988521190632,219.1831394095884,fqhc1_80Compliance_baseline_low_initial_treat_cost,13 -100000,95660,46915,446.916161404976,5333,54.48463307547564,4239,43.76960066903617,1624,16.579552582061467,77.35161970545354,79.75698730197688,63.31721993396855,65.0939611620878,77.14512106101442,79.55419427536714,63.23810795723074,65.01892114650087,0.2064986444391223,202.79302660974,0.0791119767378134,75.04001558692153,221.12464,154.89472037929616,231156.84716705,161922.1413122477,450.11012,297.9466628857734,469971.30462053104,310904.34129811137,439.96265,214.37977467087256,456829.5630357516,221669.0976722425,2746.01987,1294.7061135027725,2835583.3263642066,1318424.8938979437,988.29424,449.2642301824656,1017760.0146351662,454274.74407533614,1590.92648,683.9715452712255,1625752.7493205103,682939.01571951,0.38035,100000,0,1005112,10507.12941668409,0,0.0,0,0.0,38602,402.9479406230399,0,0.0,39864,413.6316119590216,1241327,0,44443,0,0,8831,0,0,96,1.003554254651892,0,0.0,0,0.0,0,0.0,0.05333,0.1402129617457604,0.3045190324395275,0.01624,0.3449207492795389,0.6550792507204611,23.386004470111644,4.101010214346056,0.304552960603916,0.2786034442085398,0.2040575607454588,0.2127860344420854,11.275095405062904,5.969428616494612,17.36541646965858,11705.264118992172,48.80191181031182,14.565774640577969,14.594122051326226,9.691427395157712,9.95058772324991,0.5833923095069592,0.8128704487722269,0.6963594113090628,0.5872832369942197,0.1175166297117516,0.7444620253164557,0.925925925925926,0.861671469740634,0.7136563876651982,0.1470588235294117,0.5149579831932773,0.7338129496402878,0.635593220338983,0.542319749216301,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0044212340921766,0.0065561126108754,0.0086564252621311,0.0108637052558768,0.0131493175799551,0.0155611074287462,0.0179207809580214,0.0200613496932515,0.0222062890504967,0.024262880357839,0.0265532194751012,0.028598184699611,0.030608562974876,0.0327741855516764,0.0347934944545605,0.0365763916959464,0.0386388173739722,0.0406600495245229,0.0427002846685644,0.0571270337203105,0.0713163846540459,0.0848316906508801,0.0974924499910557,0.1091164302600472,0.1245541054057773,0.1358901665976491,0.1465666105272134,0.1576345719696564,0.1668689255222037,0.1785926125640334,0.1911479495097242,0.2019575181544022,0.2106323349097915,0.2190219187135147,0.2294445738110286,0.2381734669929929,0.247660552008378,0.2564955712014535,0.263624493161982,0.270458804747692,0.2756194483403459,0.2804928519906822,0.2858648020880726,0.2908091447432288,0.2946982376686029,0.2983253618392297,0.302271255728922,0.3061237667234878,0.3101324947699433,0.308241079105761,0.3061793126166685,0.3033126730474624,0.3005952809928076,0.2980687999288583,0.2952188984073174,0.2918099504684986,0.2925871379479627,0.2929322181149175,0.2929316297113571,0.2930287294056113,0.2941674209925617,0.2951343227503287,0.2968732638503077,0.2980078730764642,0.2989973123837089,0.2983547238084469,0.3017408123791102,0.3056763999582362,0.3096474661630469,0.3126015526268279,0.3188708834291688,0.3228830394834864,0.3259577030179875,0.3273925554627309,0.3312847181184257,0.3353156450137237,0.3392749849789706,0.3361999462510078,0.3393984404010397,0.0,2.0655379368579143,55.33197494161459,161.59103453206308,213.22138527445108,fqhc1_80Compliance_baseline_low_initial_treat_cost,14 -100000,95798,46403,441.8568237332721,5153,52.642017578655086,4038,41.65013883379611,1556,15.91891271216518,77.3507064425629,79.67947526002486,63.34838135415546,65.07005206751157,77.1483298590437,79.47860169180575,63.272762336059344,64.99721789173876,0.2023765835191966,200.87356821910876,0.0756190180961127,72.8341757728117,223.00234,156.16094135313418,232783.920332366,163010.64881639928,447.6263,296.9235817225765,466773.356437504,309460.34543787607,432.48336,210.45796406935875,448332.85663583793,217273.9016888154,2628.6552,1223.1903302604094,2713692.8328357586,1246579.8766784363,932.27425,417.60747497284206,960214.9836113488,422973.3136107664,1511.67114,644.4133337396817,1547747.9279316897,646768.7347905757,0.37669,100000,0,1013647,10581.087287834818,0,0.0,0,0.0,38448,400.8330027766759,0,0.0,39210,406.1775819954488,1235687,0,44322,0,0,8613,0,0,78,0.814213240359924,0,0.0,1,0.0104386312866656,0,0.0,0.05153,0.1367968355942552,0.3019600232874054,0.01556,0.3507560201605376,0.6492439798394624,23.36357870244482,4.119872916356798,0.3088162456661714,0.266468548786528,0.2206537890044576,0.204061416542843,11.204793473525308,5.977212723534989,16.717528585480103,11568.700331172084,46.19741185938625,13.055348805639444,14.242575651878024,9.837182650654327,9.062304751214455,0.5802377414561665,0.7992565055762082,0.7016840417000801,0.5768799102132436,0.1140776699029126,0.7444253859348199,0.927400468384075,0.8608695652173913,0.7110091743119266,0.1136363636363636,0.5135793871866295,0.7149460708782742,0.6407982261640798,0.5334323922734027,0.1141975308641975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575300838701,0.0042781832927818,0.0063522989030614,0.0085730537948967,0.0108081177810313,0.0130819428466714,0.0155823244058538,0.0180220632507066,0.0201927302083652,0.0223291035611952,0.0241100887349632,0.025970161505469,0.0280249933200419,0.0301202338796014,0.032058486888914,0.0339363009948449,0.0358014982823558,0.0379212755149642,0.0399189989096007,0.0417135123880907,0.0559393129930297,0.0696144958751999,0.0824554231265134,0.094495470690851,0.10638253024746,0.1224908301005253,0.1347677168276725,0.1453701831494035,0.1561102155416297,0.1666363003054498,0.1791195780863201,0.1902476980936324,0.2018796175575836,0.2109328060650419,0.2194741239062568,0.2290726484381913,0.237323825970698,0.2454144155275247,0.2529317787824195,0.2597490248115398,0.2663726214668391,0.2722347418936749,0.2770651312911578,0.2818843355036384,0.2858684973376836,0.2908323384982708,0.2955814563579807,0.299640411176478,0.3026179635761589,0.3048213556688133,0.3022581035154413,0.2997967200505453,0.2983376462646264,0.2961599538039555,0.2936996543488258,0.2907063879245745,0.2877364458784083,0.2885540289883619,0.2893137589621031,0.289215511398095,0.2894263217097862,0.2908091651345313,0.2911310110521569,0.2928502567091899,0.2934220961811146,0.2932279850843568,0.2956496933390387,0.3001260239445494,0.3040118035551183,0.3089218595450049,0.312955207574654,0.3156659912551989,0.3193006816460489,0.3225436179981634,0.3257846269498214,0.3271604938271605,0.3300447047942038,0.3329215565163681,0.3379097786494816,0.3369523070957735,0.0,1.9748496829672413,50.88827638679695,149.6359196513673,213.0978642348127,fqhc1_80Compliance_baseline_low_initial_treat_cost,15 -100000,95734,46985,446.70649925836176,5298,54.09781268932668,4199,43.265715419809055,1607,16.420498464495374,77.31652017658898,79.67775037097478,63.31665033110207,65.06259368001781,77.10564880045528,79.47044075889394,63.23761521043351,64.98773829481074,0.2108713761336957,207.30961208083443,0.0790351206685571,74.8553852070728,221.76638,155.37922030956173,231647.586019596,162302.2927047169,451.92528,299.3539850674119,471441.72394342656,312074.906329078,442.10471,216.1016659005775,458428.2177700712,223116.0683106439,2717.80923,1283.9871573320688,2800680.9388514007,1303279.5460019656,970.86042,448.5131446978762,995880.1470741848,450748.2502747213,1569.31944,668.1223283320625,1604320.178828838,667005.0166813935,0.38136,100000,0,1008029,10529.435728163451,0,0.0,0,0.0,38773,404.3599974930537,0,0.0,40244,416.9887396327324,1233879,0,44301,0,0,8762,0,0,74,0.7625295088474314,0,0.0,1,0.0104456097102387,0,0.0,0.05298,0.1389238514789175,0.3033220083050207,0.01607,0.3543064369900272,0.6456935630099728,23.64427629172552,4.11567861212696,0.3165039295070255,0.2714932126696832,0.2014765420338175,0.2105263157894736,11.28230560439284,6.054756911075915,17.259420644211914,11782.318400502538,48.38010038390112,14.083795454920134,15.120329192889225,9.446055956848834,9.729919779242922,0.5860919266492022,0.8043859649122806,0.7193378480060195,0.5921985815602837,0.0984162895927601,0.7646604938271605,0.952,0.8688118811881188,0.7208121827411168,0.1128205128205128,0.5063727178780572,0.6890625,0.654054054054054,0.5531587057010786,0.0943396226415094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.004673513042244,0.0068104541994417,0.0091955658067203,0.011322021484375,0.0138308923879168,0.0161137344089421,0.0182592445084403,0.0205621619410844,0.0230048630662912,0.0250492166352227,0.0271385885469611,0.02936851522412,0.0314273063338584,0.0336885102169226,0.0357390091439789,0.0377206148750064,0.0397186809539122,0.0414345114345114,0.0430896172358468,0.0573820983722945,0.0710129761406446,0.0846748398057743,0.0974488937494742,0.1102019296673169,0.1259241239991962,0.138156010311575,0.1488775108310358,0.1583046646295861,0.1685279950221535,0.181166991608949,0.1931871057102355,0.2031229611587142,0.2126559305541889,0.2220338796490957,0.2316063611680612,0.24027199338998,0.2483039501366965,0.2565455721630179,0.2629613507755046,0.2693446871529063,0.2754385964912281,0.2814109013434338,0.2871823774177688,0.29181806029821,0.2962839629506296,0.300928939856778,0.3040827754728027,0.3086750543647095,0.3113140323559684,0.3094504192858008,0.3074242904163166,0.3047937475311777,0.3021731581688755,0.3014853472501003,0.2974919180621734,0.2935413930080554,0.2939687756778965,0.2944778979061174,0.2955289571144866,0.2961830629278814,0.2961762671672759,0.2972706691262787,0.2974786907984518,0.297875408575274,0.3002001507629123,0.3004465174483092,0.3037899414765437,0.3085470682787057,0.3123345057898273,0.3157083257754399,0.3176663840610428,0.3204315914936327,0.3223445986722993,0.324018691588785,0.3240356083086053,0.3254356465912565,0.3305169985918326,0.3313236503151548,0.331047619047619,0.0,2.234533339735566,56.56958025675548,154.9834854731849,210.17126083330112,fqhc1_80Compliance_baseline_low_initial_treat_cost,16 -100000,95682,46774,445.12029430822935,5337,54.60797224138291,4176,43.10110574611735,1620,16.52348404088543,77.40264542862671,79.78216698600721,63.35728834693722,65.11170806924899,77.19464657215121,79.57898157936525,63.27839573302597,65.03725313434302,0.2079988564754984,203.18540664196405,0.0788926139112433,74.45493490597244,222.63934,155.82626597563947,232686.75403942223,162858.4958253794,451.07486,298.99593936389545,470900.9740599068,311960.4244087104,436.75617,212.80814696328176,453574.2459396752,220148.07788598465,2728.20791,1274.7842764060442,2816005.9990384816,1297062.3931307823,1012.31965,457.5704677305607,1042788.9780732008,463052.7143570598,1587.27302,679.6386546268507,1620238.0385025395,677466.1553162505,0.3813,100000,0,1011997,10576.670638155556,0,0.0,0,0.0,38808,405.0291590894839,0,0.0,39654,411.4776028929161,1235590,0,44344,0,0,8909,0,0,82,0.857005497376727,0,0.0,0,0.0,0,0.0,0.05337,0.1399685287175452,0.3035413153456998,0.0162,0.3476618705035971,0.6523381294964029,23.70122325419738,4.203633031344779,0.3158524904214559,0.2693965517241379,0.1901340996168582,0.2246168582375479,11.244054074543888,5.947673463355217,17.383484810649563,11730.64910787535,47.80289369610178,13.747988735434827,14.968898106940438,8.829994181727798,10.256012671998716,0.5806992337164751,0.7964444444444444,0.7012888551933283,0.6045340050377834,0.1321961620469083,0.7661612130885874,0.941299790356394,0.8743455497382199,0.7675675675675676,0.1674641148325359,0.5011973999315772,0.6898148148148148,0.6307363927427961,0.555008210180624,0.1220850480109739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020658018652975,0.0044594443937689,0.006867518766484,0.0089068990382174,0.0108296641278815,0.0129625481131499,0.0152517662891106,0.0172890662475377,0.0196617444177609,0.0219411355356338,0.0241909857826706,0.026302011149096,0.0284083898827884,0.0304125728645286,0.0323156450231636,0.0344389205279532,0.0364076915908173,0.038686646465485,0.0406452485205254,0.0428574406436954,0.0569031799757636,0.0716731411578693,0.0852966177288516,0.0983599659159048,0.1104255004957492,0.1261267933471581,0.1375343570587174,0.1481434167944132,0.1589155570753809,0.168745375186333,0.1810114586025674,0.1920800008658102,0.2031798853762248,0.2127517659151048,0.2217479317021651,0.2314684617854493,0.2401507212771175,0.2478711213966342,0.2560070691393549,0.2628245435525729,0.2689581120399021,0.2748074679113185,0.2804500802871446,0.2849641776406282,0.2902533640441265,0.2944736971605728,0.2990153200209932,0.3028406783103168,0.3068867108304601,0.3094865351979267,0.3077790304396843,0.3050036993395993,0.3032431750304968,0.3013058359939022,0.2979928707716428,0.2954469214113628,0.2924824485288317,0.2923814824515453,0.292953339681676,0.2934883059643136,0.2937498833585279,0.2946969845598478,0.2952188999937665,0.2972697003329633,0.2982447749772825,0.3002178310253617,0.3012417077734308,0.3046246021344317,0.3065759637188208,0.3113746503289862,0.3150908349567344,0.320603813559322,0.3231203007518797,0.3279891098842925,0.3339574946166089,0.3369527145359019,0.3378357869175899,0.3348651348651348,0.3388318009734992,0.3416635583737411,0.0,2.0984438858076544,54.73939675301352,151.35488204848178,215.8526076013161,fqhc1_80Compliance_baseline_low_initial_treat_cost,17 -100000,95714,46850,445.3684936372944,5224,53.15836763691832,4107,42.18818563637503,1543,15.671688572204694,77.33907921770925,79.70386312698858,63.32552877917672,65.07467398886926,77.1366572249062,79.50781706074368,63.24803922608789,65.00229124237882,0.2024219928030532,196.04606624490373,0.0774895530888244,72.3827464904474,222.4409,155.78648051047293,232401.6340347285,162762.4804213312,454.19194,300.6456509078436,473822.8158890026,313400.8409510036,438.84307,214.29695629422525,453513.7910859435,220159.1769585373,2652.19632,1249.1875411604776,2726719.685730405,1260918.3136850174,966.89156,445.2793338401042,993054.3076247989,448148.71946218255,1496.08482,648.5823661494751,1521561.5479449192,643204.0965277392,0.38052,100000,0,1011095,10563.710637942202,0,0.0,0,0.0,38924,405.9176296048645,0,0.0,39718,409.98182084125625,1232646,0,44210,0,0,8872,0,0,105,1.0970182000543285,0,0.0,1,0.0104477923814697,0,0.0,0.05224,0.1372858194050247,0.2953675344563553,0.01543,0.3589696748264523,0.6410303251735476,23.582702710739564,4.097569374512887,0.3114195276357439,0.2700267835402971,0.2115899683467251,0.206963720477234,11.552449682756247,6.409169491661374,16.658524013231816,11761.281432708223,46.92968328242716,13.471833443297909,14.4193204503497,9.786582031867654,9.251947356911884,0.5855855855855856,0.7908025247971145,0.7013291634089132,0.5983889528193326,0.1305882352941176,0.7548701298701299,0.9235955056179777,0.856353591160221,0.7510729613733905,0.1770833333333333,0.5130434782608696,0.7018072289156626,0.6401308615049073,0.5424528301886793,0.1170212765957446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026029006643979,0.0051101107190655,0.0073789876475543,0.0096020972199642,0.0116476608038411,0.01420729409608,0.0161729465150665,0.0183769104329804,0.0207161700648275,0.0226960814437001,0.0246956628754858,0.0266631061080698,0.0290950603190274,0.0311656467000473,0.0330002683787856,0.0350661303165362,0.0370247591422355,0.0390423114044646,0.0412632717365306,0.0431842807134522,0.0575748399828758,0.0721864144310049,0.0857712068784733,0.0983899632983142,0.1109072310628829,0.1261489967103523,0.1383525018036752,0.1498679671195536,0.1597896829213555,0.1701381064288703,0.1821473602534674,0.1940308205455864,0.2051164865776559,0.2145225718194254,0.2236488569792538,0.2329985143794762,0.2411363357193107,0.2490630170288917,0.2572868428221193,0.2642997123439953,0.2698611111111111,0.2762154321276496,0.281808398670782,0.286908111343909,0.291758654989204,0.2956021251475797,0.2990499019938324,0.3019200751278569,0.305531167690957,0.3090576322962066,0.3069587525015781,0.3045347766955614,0.3024110121183971,0.299519001603328,0.2972475429793046,0.2936930323606778,0.2909404086534662,0.291090050501738,0.2911714480874317,0.2914309172363324,0.2926870334686547,0.2937895421487277,0.2940550910190379,0.2959240523254518,0.296813368076307,0.2970068872663249,0.2975157393227837,0.3015987235240747,0.3050237562884293,0.3067004192706273,0.3091065916106773,0.313073455316892,0.3134798211924699,0.3156052651601613,0.3186137506987144,0.3209658421672556,0.3204911742133538,0.3298864557988645,0.3316790736145575,0.3318095238095238,0.0,2.76739619397933,53.027676710546594,146.94422343260746,214.02090744582352,fqhc1_80Compliance_baseline_low_initial_treat_cost,18 -100000,95690,46333,440.3385933744383,5342,54.81241509039607,4249,43.86038248510816,1579,16.124986936984012,77.30793472821749,79.68409913941088,63.31631099018998,65.0703072856993,77.10632147987002,79.48476531271322,63.24156713509853,64.99857359905863,0.2016132483474706,199.33382669765365,0.0747438550914552,71.7336866406697,221.5147,155.11987366512383,231492.00543421463,162106.67119356658,448.51428,296.3678221531621,468149.5140558052,309151.1821268302,432.75109,210.49991723411043,448717.2954331696,217264.3583146249,2767.22757,1282.637983713725,2856154.4675514684,1305187.8356752258,982.13616,442.5402967897454,1009672.3691085798,446175.2039257,1541.56216,649.4396140332198,1575539.9310272755,649604.7549969445,0.3768,100000,0,1006885,10522.363883373391,0,0.0,0,0.0,38486,401.6198139826523,0,0.0,39320,407.5347476225311,1240891,0,44595,0,0,8747,0,0,84,0.8569338488870311,0,0.0,0,0.0,0,0.0,0.05342,0.1417728237791932,0.2955821789591913,0.01579,0.357832618025751,0.6421673819742489,23.77953521130477,4.138543379868832,0.325488350200047,0.2642974817604142,0.2035773123087785,0.2066368557307601,11.227673788629962,5.872531644650564,16.911196010256035,11677.140503502396,48.6948321668028,13.5875546884274,15.687468052640249,9.756973347462983,9.662836078272177,0.5897858319604613,0.8121104185218165,0.7107736804049168,0.5988439306358382,0.1059225512528473,0.7479131886477463,0.9308755760368664,0.8725761772853186,0.7129629629629629,0.1229946524064171,0.5276958374303508,0.737300435413643,0.6536203522504892,0.5608628659476117,0.1013024602026049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.0044688095334603,0.006816867689873,0.0091005119037945,0.0115124888129525,0.0134821392203983,0.01556015539762,0.0177335375191424,0.0200781042343944,0.0223664411255898,0.0242957313322671,0.0264376430969517,0.0285490970422477,0.0307510044297929,0.0328455855037767,0.0347355036131126,0.0368962015873344,0.0390145655762382,0.0411209703425533,0.0430014490185245,0.0575964903117981,0.0711317654200814,0.0846849493275142,0.0970836006436481,0.1098741223353785,0.1251546587988959,0.1366587456505134,0.1477732362583556,0.1579762629661678,0.1674764831440186,0.1797182916585901,0.1908032797525041,0.2009827902982073,0.2101149023166318,0.2195079028124553,0.2284809285429495,0.2373350290616598,0.2453235548856619,0.253151200916713,0.2603412734768667,0.2670872156953527,0.2738627061162437,0.2794423932594906,0.2844979553658156,0.2890280226126071,0.2936265199911205,0.2977814523907951,0.3015773915702563,0.305314899356713,0.3080439119119648,0.3049927251172064,0.3022736975472711,0.2995742521216906,0.2974020713996412,0.2955928068896788,0.2935022363825746,0.2903609113089768,0.2914974431491195,0.2922718951564612,0.2935524200750134,0.2949943757030371,0.2957732550089993,0.2971943048576214,0.2976477414747366,0.2999063468049852,0.3012098456403838,0.3048006601974901,0.3089921165865762,0.3135730368702505,0.3172211427891669,0.3198705383598486,0.3219745222929936,0.3291545924152702,0.3299627461415647,0.3309588527509607,0.3298361428739833,0.3289116671691287,0.3276723276723277,0.329747175901022,0.3290949887808526,0.0,2.0669170398239274,52.38837849090443,164.28876161022777,221.0187835730531,fqhc1_80Compliance_baseline_low_initial_treat_cost,19 -100000,95705,46736,445.5462097069119,5340,54.66799017815161,4236,43.66543022830573,1614,16.49861553732825,77.38171245272493,79.7555307304085,63.34258245905804,65.094951647522,77.17929509679058,79.55455224303317,63.26637761692899,65.02152582416794,0.2024173559343438,200.9784873753233,0.0762048421290515,73.42582335405723,223.33388,156.35023755943442,233356.5435452693,163366.8434872101,449.25455,296.58359597157744,468832.96588475,309310.52293148456,437.75243,212.822007047752,452965.8116085889,219048.54766524732,2774.7337,1287.2512585878487,2863493.380701113,1309533.957064786,1024.26742,459.7139763476018,1054971.3599080509,465199.41999673215,1575.89644,664.8044612818246,1612462.5672639883,666694.5254693021,0.37847,100000,0,1015154,10607.11561569406,0,0.0,0,0.0,38570,402.3927694477823,0,0.0,39698,410.51146753043207,1234303,0,44244,0,0,8767,0,0,73,0.7418630165613082,0,0.0,0,0.0,0,0.0,0.0534,0.1410944064258726,0.302247191011236,0.01614,0.3440975959813419,0.6559024040186581,23.826028547982062,4.153796672913482,0.30547686496695,0.2660528800755429,0.2101038715769594,0.2183663833805476,11.48362742308475,6.194809107612833,17.07197888980392,11664.678013261711,48.2905917107064,13.77244691453166,14.67620525534458,9.858440125765576,9.983499415064578,0.5734183191690274,0.8003549245785271,0.6931993817619784,0.5831460674157304,0.12,0.7489643744821872,0.9171974522292994,0.8554216867469879,0.785,0.1519607843137254,0.5034664905909542,0.7164634146341463,0.6372141372141372,0.5246376811594203,0.1109570041608876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0044298472361605,0.0066566546251572,0.0089998577900574,0.0111276115304025,0.0131466395112016,0.0151312770838643,0.0171505573931152,0.0194637252997761,0.0215375166342512,0.0235485888274914,0.0254412172359626,0.0274367043047242,0.0297695691138145,0.0317534028874235,0.0338702673641984,0.0362173246613364,0.0381139163008851,0.0398643799856475,0.0419037495570979,0.0560504631708667,0.0703188794204476,0.0840634147876905,0.0963381407727669,0.1083088087929706,0.1235432221493686,0.1354270557029177,0.1466912234382319,0.1560426882030574,0.1656494363220955,0.1787719128120589,0.1900344237805538,0.2018076220308013,0.2107616455128836,0.2196018039819602,0.2293163575975643,0.238298631634121,0.2469384312622997,0.2549024055528461,0.2619581892702585,0.2686670753854874,0.2739460242879016,0.2794618770410336,0.2851957883640981,0.2895005220600733,0.2933743842364532,0.2977276704247181,0.3024335045516961,0.305975941016686,0.3085212900505902,0.3062804009567063,0.3039361001317523,0.3021124682005369,0.2998257413194694,0.2982915464832483,0.2935591050417606,0.2906694415539368,0.2912039456493336,0.2922664312873438,0.2922790202342918,0.2936320095417358,0.2938366263639044,0.2954110898661568,0.2966801295992188,0.2986064713181254,0.3007458641959377,0.3021418291616107,0.3072380893184573,0.3125715276573608,0.31583913197311,0.3201264964987576,0.3249604221635884,0.3271961794646223,0.3335614355231143,0.3347064881565396,0.336329233680227,0.3433176220161167,0.3433346757954088,0.3456449834619625,0.3534847901424721,0.0,2.3615116437160486,52.313314516038055,162.4349693358639,216.77616836642795,fqhc1_80Compliance_baseline_low_initial_treat_cost,20 -100000,95859,46675,443.7976611481447,5301,54.11072512753106,4233,43.59528056833474,1594,16.31563024859429,77.44506122741345,79.72205569087696,63.40474875222951,65.08389343993056,77.25382826774845,79.53269393316461,63.334375688243966,65.01618270067152,0.1912329596650011,189.36175771234787,0.0703730639855422,67.71073925904147,224.98366,157.50598626298648,234702.69875546376,164310.0661001956,452.14836,298.95490947633215,471131.6412647743,311320.4075531062,436.66116,212.972744502378,451583.0855736029,219173.41449241043,2746.82761,1272.4559419037123,2831433.595176249,1293676.559183383,1002.94947,451.8730673563205,1029551.5913998686,454764.9644176941,1546.67856,637.4434020875834,1584658.1750279055,641651.7185599344,0.37964,100000,0,1022653,10668.304488884716,0,0.0,0,0.0,38910,405.3244870069582,0,0.0,39707,410.2588176384064,1226959,0,44055,0,0,8889,0,0,69,0.7093752281997517,0,0.0,0,0.0,0,0.0,0.05301,0.139632283215678,0.3006979815129221,0.01594,0.3546584970264912,0.6453415029735088,23.62734154661772,4.140782154157221,0.3139617292700212,0.2671863926293409,0.218284904323175,0.2005669737774628,11.76642101952455,6.391193826149334,16.755850689639956,11634.71720359488,48.31498775274648,13.816241408840874,14.96701157407768,10.37859128397186,9.153143485856068,0.578549492085991,0.7939876215738285,0.674191121143717,0.5898268398268398,0.1295641931684334,0.7784137367130008,0.9361702127659576,0.8735955056179775,0.7280334728033473,0.170886075949367,0.4973421926910299,0.6928895612708018,0.6012332990750257,0.5416058394160584,0.1201157742402315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024393206340209,0.0047407287350965,0.0070673169544629,0.0092261783930818,0.0115125896722011,0.0135922922749793,0.0159190906868736,0.0179469138446164,0.0204433824505509,0.022321063394683,0.0240321110781171,0.0261214694480339,0.0282850276277139,0.0305290118186774,0.0327216904833043,0.034650757114398,0.0367336808140977,0.0386408853519025,0.0405822077800732,0.0422441420069088,0.0567957874980449,0.0707249041505176,0.0840086270075591,0.0969549432330905,0.1083301771661827,0.1233945099363608,0.1355165914914342,0.1465345062043175,0.1568111058984092,0.1661762030626331,0.1779358665749656,0.1892504696711222,0.20023661959601,0.2099592852542761,0.2194098850297034,0.2287392299779899,0.2378246481933349,0.2461586845179261,0.2531162179312846,0.2610619975068333,0.2676697637868072,0.2733561587809808,0.2787373647809895,0.283262161935862,0.2878034583949749,0.2920563047544049,0.2959645743163793,0.2994762534323197,0.3031620348807121,0.3060431161711996,0.3038587153743801,0.3018430333886838,0.2994948077462812,0.2969906974737962,0.2955408740891825,0.2931561886499566,0.2898999748364368,0.2907585217547234,0.2908513924007671,0.2919817920969199,0.2938986710345084,0.2949231796927187,0.2969215078159149,0.2961919133638098,0.2984775449816255,0.3003436781312179,0.3004371738823861,0.3048621054597522,0.3067433640584933,0.3101820899044323,0.3169760072430964,0.3215644820295983,0.324760653275765,0.3289383431140919,0.330979949166902,0.3348770929818311,0.3321565617805065,0.3347056401811445,0.335180055401662,0.3333333333333333,0.0,2.2312670825354783,53.3489198197542,156.7535598702836,221.1353594361768,fqhc1_80Compliance_baseline_low_initial_treat_cost,21 -100000,95689,47030,447.3241438409849,5358,54.68758164470316,4286,44.24751016313265,1679,17.253811827900805,77.29747507811412,79.7008846300033,63.28577397120039,65.06585143423074,77.08166524859928,79.48579954568147,63.20447175065247,64.98696846644252,0.2158098295148391,215.08508432182796,0.0813022205479256,78.88296778821768,221.63724,155.21629198192184,231622.4853431429,162209.1274670253,454.77149,301.51054044337934,474714.97246287455,314549.2798998624,440.63215,214.8689529807189,456842.4061281861,221846.900042456,2821.29936,1318.201732020094,2915602.9533175183,1344787.4698451166,1012.60932,461.9596444546796,1043541.1384798668,468093.4690709102,1643.62182,701.5089203019594,1689538.33773997,708342.9216986352,0.3815,100000,0,1007442,10528.294788324678,0,0.0,0,0.0,38972,406.7029648130924,0,0.0,40062,415.0006792839303,1231122,0,44254,0,0,8772,0,0,82,0.8569428042930745,0,0.0,1,0.010450522003574,0,0.0,0.05358,0.1404456094364351,0.3133631952220978,0.01679,0.3554603854389722,0.6445396145610278,23.551403082832262,4.143986655569266,0.3084461035930937,0.2631824545030331,0.2088194120391973,0.2195520298646757,11.322456464177035,6.083721761600705,18.020387543465528,11749.353732185904,49.12071152768696,13.711635537069796,15.177783357634237,9.899693541163227,10.331599091819696,0.5795613625758282,0.800531914893617,0.7042360060514372,0.6011173184357542,0.1190223166843783,0.7478191911181602,0.918103448275862,0.8548387096774194,0.7407407407407407,0.1866028708133971,0.5094214876033057,0.7183734939759037,0.6452631578947369,0.5567010309278351,0.0997267759562841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0047572677662142,0.0072897101375704,0.0096738136368255,0.012237548828125,0.0142699993888651,0.0163804006364489,0.0186270705255203,0.0206899373063194,0.0228773898884804,0.0251505236273373,0.0271311458568757,0.0292586572292751,0.0315733069535468,0.0333908087514067,0.0352203729946109,0.037085790690202,0.0391772059892426,0.0412921348314606,0.043176488979209,0.0575884509719944,0.0715601708399631,0.0849317943336831,0.0977120917267133,0.1101453555832155,0.125797408093097,0.1368509319407294,0.1478688734104415,0.1586055712987221,0.168882064937296,0.1814848367197273,0.1933637575744436,0.2036643682668322,0.2125780650816259,0.2222920387150825,0.2319409774227547,0.2408328397241749,0.2484624569150014,0.2555272785112136,0.2625166200541011,0.2692383434694468,0.2753835343717062,0.2801155946134805,0.2844231600172835,0.2904100923346431,0.294080627845852,0.2977446435283799,0.3015409714875664,0.30542613525755,0.3088488086107952,0.3060323886639676,0.3043916168821314,0.3017857647424486,0.3006097649291021,0.2991600386530885,0.2952544293524034,0.292689480755552,0.292888262849281,0.2928294309828478,0.293813241335159,0.294654011821962,0.2959388268595691,0.2965511489219734,0.2963490016453951,0.2984378364153968,0.2981733385153517,0.2994251083231854,0.3040667166416791,0.3075527646956218,0.313816775822615,0.3157847046031171,0.3227711288026572,0.325793551612097,0.3303181064375094,0.3314669652855543,0.3338427177618432,0.3373512358864815,0.3400564743848326,0.3478142076502732,0.3538638102524866,0.0,2.1141992475873206,55.1021445681228,161.7847104414119,218.3000561655264,fqhc1_80Compliance_baseline_low_initial_treat_cost,22 -100000,95834,47044,445.87515912932776,5225,53.279629359100106,4145,42.71970281945865,1611,16.539015380762567,77.32864418348662,79.6398811260909,63.32870225298407,65.03866627835122,77.11708770062984,79.42777588494363,63.248634164431394,64.96041578740777,0.2115564828567784,212.1052411472704,0.0800680885526716,78.2504909434465,222.52054,155.94374899082345,232193.73082622036,162722.78000586788,452.24773,299.864729177797,471343.3541331887,312336.1115864901,438.37925,213.85953401,453688.8369472213,220377.50034149064,2718.95696,1277.45971878235,2803750.933906547,1299813.0978212615,976.25601,441.45456333645376,1005717.9080493352,447773.9042866461,1579.48982,682.6082547757038,1621969.405430223,689262.7290002265,0.38112,100000,0,1011457,10554.260492100924,0,0.0,0,0.0,38867,404.9815305632656,0,0.0,39791,411.4614854853184,1228503,0,44149,0,0,8846,0,0,72,0.7512991213974164,0,0.0,1,0.0104347100194085,0,0.0,0.05225,0.1370959277917716,0.3083253588516746,0.01611,0.3507545086492455,0.6492454913507545,23.72769722996682,4.203706826789128,0.3124246079613992,0.2579010856453558,0.2048250904704463,0.2248492159227985,11.06676435382244,5.739136177566815,17.43909570595258,11754.66571210892,47.697222465549096,13.052372182987025,14.804293270114323,9.513028201957958,10.327528810489795,0.5647768395657419,0.7885874649204865,0.7135135135135136,0.5477031802120141,0.1169527896995708,0.7154213036565977,0.9106753812636166,0.8436657681940701,0.6904761904761905,0.110091743119266,0.4991340491860062,0.6967213114754098,0.6612554112554112,0.5007824726134585,0.119047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0048554514860317,0.0072338051032313,0.0094872419957744,0.0115314215985356,0.0138159234371818,0.016308225461217,0.0186147141967812,0.0208269462668874,0.022951926815791,0.0250722350867845,0.0273798284142687,0.029463753519824,0.031408276714021,0.0335859757669502,0.0355877400493786,0.0376261189010193,0.0398233299810266,0.0420046741106206,0.0441407591669355,0.0582118196799966,0.0719513215122114,0.0857439315809332,0.0983734028244788,0.1107246376811594,0.1271668357855572,0.1391748751497672,0.1495424558416684,0.1603746382306139,0.1698382237850702,0.181721263810816,0.1929697389347499,0.2037840482792366,0.2129896817068905,0.2218799507129026,0.2310802428109353,0.2394399222858674,0.2480914311451413,0.2563654121334635,0.2630148298523896,0.2688285489032138,0.2744479495268139,0.2801642788467245,0.285033033033033,0.2898499580174501,0.2938258809594314,0.2980294331486449,0.3022713368002447,0.3059217355200332,0.3092099173553719,0.3074423621410274,0.3047482490486957,0.3020759779692133,0.299930440831232,0.2977181048213036,0.2940896749551318,0.2908952574182095,0.2905953436443043,0.2915884981410103,0.2918120948785526,0.292846720790153,0.2937798476536291,0.29562493473948,0.2952236677954019,0.2959775625659219,0.2986299229006043,0.2998863959102528,0.3047219701473855,0.3104553530989792,0.3146624680181066,0.3177113933203778,0.3203796467176377,0.3224190822012145,0.3233487525593387,0.3253315897627498,0.3266248372203149,0.3356050280175677,0.3370944992947813,0.3416166029492081,0.3450269853508095,0.0,1.9778956262185683,55.30366024064205,152.61166726513255,210.62842490281625,fqhc1_80Compliance_baseline_low_initial_treat_cost,23 -100000,95756,46946,446.05037804419567,5246,53.67809850035507,4135,42.691841764484735,1538,15.706587576757592,77.35098256499538,79.70008928815673,63.33757887846742,65.07129279864756,77.15765827296259,79.50848633459003,63.26419753410829,65.00107682789218,0.1933242920327842,191.6029535667008,0.0733813443591344,70.21597075538466,222.55904,156.01087526419343,232423.07531642923,162925.43053614753,451.21838,298.20297338358546,470737.5412506788,310940.3414758191,438.45696,212.8550992536748,455272.557333222,220203.6467848548,2674.85436,1241.717775426623,2763220.111533481,1266565.505479158,973.77799,440.38094834876455,1003872.3317598896,446834.609161581,1497.61212,637.3018676685383,1531689.2309620285,637566.24041931,0.38006,100000,0,1011632,10564.685241655876,0,0.0,0,0.0,38797,404.6639375078324,0,0.0,39700,412.0055140147876,1233726,0,44186,0,0,8751,0,0,84,0.8772296252976315,0,0.0,1,0.0104432098249718,0,0.0,0.05246,0.1380308372362258,0.2931757529546321,0.01538,0.351213282247765,0.648786717752235,23.79971901581892,4.17550148527061,0.3090689238210399,0.2706166868198307,0.218863361547763,0.2014510278113664,11.238363454501153,6.032747752212038,16.33014867900078,11705.42846074603,47.130506591724846,13.700385455014011,14.513452586734244,9.89651802676934,9.02015052320726,0.5857315598548972,0.8096514745308311,0.701095461658842,0.5657458563535912,0.1296518607442977,0.752129471890971,0.9347826086956522,0.858433734939759,0.6714285714285714,0.1569767441860465,0.5197568389057751,0.7223065250379362,0.645877378435518,0.5338129496402878,0.1225416036308623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023087906190191,0.0047840585439028,0.0070114557649183,0.0095880393272121,0.0119165031367245,0.0139161771742118,0.0162587537333972,0.018574650704714,0.020768814072098,0.0231094372063985,0.0251758000697049,0.0272736604393348,0.0293322366730067,0.0314179796107506,0.0332287948501041,0.0352665143825776,0.037514884804556,0.0396185495335636,0.0414518007152956,0.0432440879258256,0.057593535994655,0.0714621975331889,0.0844368951380369,0.0969573354080366,0.109159717903037,0.1245348837209302,0.1364576373643855,0.1475320860736862,0.1574915869878745,0.167396155166495,0.1787687833252544,0.189981925037611,0.2015358844388365,0.2109945180597651,0.2190334654337296,0.2287741077366437,0.2379792925513497,0.2461439805595869,0.2549535849656142,0.2615024873340822,0.267495284056059,0.2728666206428513,0.2780143353913846,0.2829671316529965,0.2877092938607134,0.2926160129914866,0.2969113126921058,0.3008561774345164,0.3054804620299828,0.3097291452382836,0.308251447031902,0.3059278421443707,0.3041463620743078,0.3013122525074428,0.2984159503555575,0.2958216077327786,0.2924434324747403,0.2922393151179191,0.2923402223586385,0.293312691294754,0.2940385728421799,0.2959450685659197,0.2974208088143232,0.2980636545737814,0.2999545704516653,0.3017731509125366,0.3020370003116412,0.3055712050078247,0.3105812739296902,0.3153209925167389,0.3177849160747409,0.3245553855084701,0.3270648506809946,0.327532956685499,0.3260182257764553,0.3314500941619586,0.3380368098159509,0.3466023321270607,0.3479212253829322,0.347016343595591,0.0,1.9334950147207357,51.32796313698603,153.46418875514024,219.2799497189901,fqhc1_80Compliance_baseline_low_initial_treat_cost,24 -100000,95849,46847,444.6264436770337,5311,54.34589823576668,4186,43.161639662385625,1580,16.15040323842711,77.51248185563044,79.79949411317047,63.42745123530996,65.1113192990997,77.3140942585215,79.60228449467746,63.35357065982902,65.03999388215844,0.1983875971089475,197.2096184930052,0.0738805754809419,71.3254169412636,223.42628,156.47623089960746,233102.3589187159,163252.85699340363,451.67714,298.5752827402813,470722.0419618358,310989.69497885363,441.00274,214.5866182121605,456949.8481987292,221444.4891434132,2708.34228,1258.4140546069204,2792171.5823847926,1279450.2964109376,961.04869,433.0594759655039,989638.8903379274,438783.6763716918,1532.21906,649.9005862972241,1566037.8303373014,650795.8096888432,0.38028,100000,0,1015574,10595.56176903254,0,0.0,0,0.0,38806,404.3234671201577,0,0.0,39952,413.68193721374246,1236599,0,44312,0,0,8761,0,0,77,0.8033469311103923,0,0.0,1,0.0104330770274076,0,0.0,0.05311,0.1396602503418533,0.2974957635096968,0.0158,0.3532706902782797,0.6467293097217203,23.9467944687486,4.137604762156373,0.3184424271380793,0.2699474438604873,0.2092689918776875,0.2023411371237458,11.422608950244404,6.067056030125565,16.865616683055023,11681.75505907317,47.5866239292037,13.715516294909929,15.06100861283636,9.724110373374552,9.085988648082864,0.5719063545150501,0.784070796460177,0.6796699174793699,0.5742009132420092,0.1168831168831168,0.756578947368421,0.8980891719745223,0.865546218487395,0.7559808612440191,0.1675977653631284,0.4962962962962963,0.7025796661608498,0.6116803278688525,0.5172413793103449,0.1032934131736526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021148280816789,0.0045573773812296,0.006598485693145,0.0089090927540055,0.0111745464150023,0.0136682599410149,0.016116552299892,0.0181718061674008,0.020524235957236,0.0228857756416811,0.0251702421790998,0.0269308474089571,0.0288729282903321,0.031049955745837,0.033009968969392,0.0351893739865109,0.037271579644461,0.0392921198046798,0.0413541645025242,0.0432243355507667,0.0576616225348587,0.0713523913088939,0.0845409868703697,0.0970906417393131,0.1090520463710738,0.1245682780764477,0.1367316659601526,0.1469596929390875,0.1578936136157498,0.1676928183657954,0.1795867022191639,0.1917664719159368,0.2029460612442061,0.2124024237130847,0.2212435062438906,0.2306909782500525,0.2388824525443365,0.2468635225141239,0.2536434564993375,0.2607751725398784,0.2670387711326891,0.2737320211960636,0.2795520188623637,0.2847542999009322,0.2889770637762508,0.2928230369833924,0.2964158018662248,0.3004175629507782,0.3040303888745815,0.3076025538497843,0.3055518376743315,0.3026905829596412,0.3000251734168718,0.2969207789969552,0.2946735775779323,0.2922612973483406,0.2897707564721092,0.2896916817803049,0.2909106354060482,0.2905753580439958,0.2924318982715865,0.2926555894209026,0.2937536461371781,0.2959946743592588,0.2978687978687979,0.30075439635418,0.3031420688101807,0.3076899234417134,0.3130356649156759,0.3158201757797308,0.3183517265930936,0.3215025906735751,0.3251567687200295,0.3265867996130664,0.3296299696997521,0.3342932841838498,0.3339277753009362,0.331770222743259,0.3289649638940893,0.3248337028824833,0.0,1.9786642177846971,53.07127269223109,155.88556435096694,214.3918481710056,fqhc1_80Compliance_baseline_low_initial_treat_cost,25 -100000,95741,46843,444.8042113619034,5235,53.52983570257257,4162,42.92831702196551,1572,16.06417313376714,77.31288813594676,79.67088042826346,63.318020272784125,65.06168693692116,77.11728220379584,79.47952983732311,63.24504016378618,64.99292960616278,0.1956059321509258,191.35059094034543,0.072980108997946,68.75733075838752,222.08054,155.6058988033463,231959.7037841677,162527.96482525385,448.67467,296.82578134273166,467952.91463427374,309349.0890451652,438.6014,213.01918560641224,454957.155241746,220052.03252996923,2702.72782,1258.1872371472573,2789235.6252807053,1280435.2337527885,950.54293,433.2533710223372,978614.9507525512,438313.9731382968,1530.95986,646.327841046121,1565915.396747475,646175.7686332207,0.37986,100000,0,1009457,10543.62289928035,0,0.0,0,0.0,38517,401.7296664960675,0,0.0,39844,412.9683207821101,1236495,0,44374,0,0,8779,0,0,72,0.7311392193522106,0,0.0,0,0.0,0,0.0,0.05235,0.1378139314484283,0.3002865329512894,0.01572,0.3494967978042086,0.6505032021957914,23.93418329071626,4.0951931741839065,0.3080249879865449,0.2784718885151369,0.2059106198942815,0.2075925036040365,11.22108083620464,6.086117952994322,16.935110313585476,11783.607215949343,47.86711642039146,14.178057053738916,14.637485802868536,9.440944528566687,9.610629035217324,0.5792888034598751,0.7842968075927523,0.7098283931357254,0.5857642940490082,0.1041666666666666,0.7424366312346689,0.8983050847457628,0.8818443804034583,0.7164179104477612,0.167487684729064,0.5113984348417829,0.7059679767103348,0.6459893048128342,0.5457317073170732,0.0847201210287443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0048246992164931,0.0072342454773283,0.0096087433470117,0.0118591145330092,0.0144399185336048,0.0166717650657693,0.0189074128901185,0.0207843457991698,0.022752173334289,0.0250997118864771,0.0271294347178723,0.0290333528740242,0.0313227447829759,0.0333749445470395,0.0354396626565794,0.037463499492617,0.0395949198970698,0.0415748097000956,0.0435937776759015,0.0580484851015848,0.0725743164767555,0.0858257477243173,0.0986267953651715,0.1109470887197115,0.1263790313197448,0.1386233168153988,0.1496024438791259,0.1592608417004913,0.1693294160536982,0.181211377387335,0.1925430913298298,0.203828718651143,0.2137686705884925,0.2229616755401064,0.2325138427464008,0.24144240639086,0.2497244528420721,0.2576565940926737,0.2640971307485253,0.2697479575068854,0.2747615039281706,0.2808874487032416,0.2865170558704065,0.2912780530457592,0.2956858107275729,0.2992678806082222,0.3029019787374739,0.3056796261053067,0.3094065614892072,0.3068952042150085,0.3047109325555158,0.3017006946499274,0.2998886623577553,0.2969953889632604,0.2950025301703648,0.2919441801458928,0.2913605811106181,0.292443152675671,0.2949210719201959,0.2957564402810304,0.2969649036085022,0.2971096331618354,0.2968687274187073,0.297896354641948,0.298795243423278,0.3017638691322902,0.3076512008047278,0.3113363021143799,0.3150875243123089,0.3183140856597253,0.3230777349728218,0.324771441010013,0.3282500377472444,0.3315268174173051,0.3363486842105263,0.3374636683493957,0.3401168647995164,0.3486187845303867,0.3496057078482914,0.0,2.1106884276766453,53.690306835631965,157.0441793871516,213.37462436629917,fqhc1_80Compliance_baseline_low_initial_treat_cost,26 -100000,95780,46707,443.71476299853833,5258,53.5602422217582,4160,42.84819377740656,1628,16.673627062017122,77.37208356525132,79.71217478004537,63.35007434272507,65.07999423653516,77.16406443537899,79.50575363789622,63.27130762082792,65.00420250376868,0.2080191298723264,206.42114214915352,0.0787667218971535,75.79173276647566,222.08318,155.51309909707928,231868.0100229693,162364.89778354487,451.30652,298.3511645185523,470582.6372937983,310888.17552573845,434.35447,211.1074786019572,450051.60785132594,217697.0558451931,2713.8136,1271.6889970071552,2796327.7615368557,1290664.1543194356,963.61282,439.9509505308326,993166.8928795157,446444.4519045796,1587.84798,679.5995488807614,1626625.3915222385,681624.5897533889,0.3803,100000,0,1009469,10539.45500104406,0,0.0,0,0.0,38690,403.30966798914176,0,0.0,39373,407.59031112967216,1240004,0,44524,0,0,8645,0,0,95,0.9918563374399666,0,0.0,0,0.0,0,0.0,0.05258,0.1382592689981593,0.309623430962343,0.01628,0.3478102852989279,0.6521897147010721,23.688957688469813,4.194305371481227,0.3108173076923077,0.2670673076923077,0.2088942307692307,0.2132211538461538,11.518806432666784,6.254979340528991,17.347159326404036,11694.307356778794,47.28186530267948,13.437284427438954,14.42278174150812,9.74657964917246,9.67521948455994,0.5742788461538462,0.7875787578757876,0.6759474091260634,0.619102416570771,0.1149943630214205,0.7344013490725126,0.9137529137529138,0.8333333333333334,0.7627118644067796,0.1472081218274111,0.5104236718224613,0.7082111436950147,0.6233230134158927,0.5655608214849921,0.1057971014492753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410007090043,0.0049470824378573,0.007265937366808,0.0096402921546916,0.0119393877758568,0.0138662648639843,0.0159006818946274,0.0183582668326632,0.0205914813603662,0.0228431071538225,0.0245847039895061,0.0266117941665469,0.0287097570001233,0.0307766760366148,0.0328754692076063,0.0348098323052602,0.0369534614110632,0.0391168631843117,0.0414488928604827,0.043155505580543,0.0572287270678104,0.0710064741504638,0.0848585864939094,0.0970989061794034,0.1088367291038958,0.1235975236123143,0.1354295827637003,0.1458528285835814,0.1562946838252555,0.1660774356666881,0.1779178724731853,0.1903150840404258,0.2007824811172091,0.210650602936514,0.2197388827172036,0.2301967038809144,0.2395269704914375,0.2475238619883304,0.2556228177572212,0.2625137387799963,0.2687859934778083,0.2748047879552999,0.2807612743069921,0.2857724307176632,0.2902932291603479,0.2941625333842045,0.2978970939614946,0.3014574147723663,0.3055411904638775,0.3094497733740908,0.3072097365699009,0.3037632564584505,0.3016188063063063,0.2999667874832132,0.2976658604264664,0.295221347197798,0.2920584749111023,0.2923013923013923,0.2928461669796824,0.2928650343918172,0.2939385448771831,0.2951465490072487,0.2960295591182365,0.2969928995926725,0.2978203592814371,0.2982323888744476,0.3002191796419117,0.3031949985862838,0.3063996639126173,0.3111551416683178,0.3132486388384755,0.3163653663177925,0.3183469004383218,0.3207332777819862,0.3216056891550481,0.3196239717978848,0.3195517189156444,0.327372764786795,0.3319881624966371,0.3290902283788843,0.0,2.1877367534613024,51.38627708410323,153.0863388432662,220.49965083746244,fqhc1_80Compliance_baseline_low_initial_treat_cost,27 -100000,95643,47220,450.289095908744,5219,53.38602929644616,4109,42.34497035852075,1551,15.819244482084418,77.25911226955019,79.65475320957468,63.27736057920528,65.04545812680769,77.06090712830198,79.4608422069952,63.20338447207392,64.97580363241839,0.1982051412482093,193.91100257948324,0.073976107131358,69.65449438929738,221.02718,154.89407425867117,231096.03421055383,161950.2464986159,450.22494,298.2477085389892,470122.016247922,311221.4888062787,440.9849,214.773572793044,456843.5118095417,221348.21225407865,2645.90602,1226.400393008955,2729467.697583723,1245296.7420605323,954.75516,428.383050568059,984223.7905544578,433898.67709830287,1506.56448,631.1558978948048,1538770.7830160074,629221.1981125686,0.3821,100000,0,1004669,10504.36519138881,0,0.0,0,0.0,38658,403.55279529082105,0,0.0,39920,413.2032663132691,1234364,0,44287,0,0,8615,0,0,74,0.7737105695137124,0,0.0,0,0.0,0,0.0,0.05219,0.1365872808165401,0.2971833684613911,0.01551,0.3574319352465048,0.6425680647534953,23.686910948374315,4.138825312061875,0.3173521538087125,0.2677050377220735,0.2141640301776588,0.2007787782915551,11.482615793954434,6.306055335648501,16.357971976876236,11798.289222322644,46.92916883929616,13.558936678071468,14.568489009791058,9.84766962809168,8.954073523341949,0.5840837186663421,0.8009090909090909,0.691717791411043,0.5761363636363637,0.1333333333333333,0.7628424657534246,0.9242761692650334,0.8858858858858859,0.7211538461538461,0.1741573033707865,0.5130907854471268,0.7158218125960062,0.6251287332646756,0.53125,0.1221020092735703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027855717512636,0.0051105770693274,0.0071453220469723,0.0095208096244513,0.0113637519711073,0.0133522090725765,0.0156412504843281,0.0175485161856733,0.0196685783216282,0.0216082871005384,0.02391937335958,0.0260807064380326,0.0280489184657951,0.0300707729393948,0.0319814241486068,0.033966126930951,0.036227079664353,0.0382926601409634,0.0404002579625122,0.0425449844665457,0.0571422599826524,0.0713380466090599,0.0855288719009566,0.0980540813747788,0.1101219705369871,0.1254090807994153,0.1375310687655344,0.1492791765671117,0.1598297544700145,0.1699438353075097,0.182494822229893,0.1943460217360682,0.2050516822602956,0.214694217411311,0.2236667989943099,0.2333566534519328,0.2424428881480321,0.2505497975617183,0.2583242358078602,0.2652275808193369,0.271801296998805,0.277976476658419,0.2829129991221618,0.2878297974637899,0.2925325110604638,0.2975537435137139,0.3015556391920712,0.305302344556778,0.3086520628250522,0.3122571949575835,0.3101821270170803,0.3078259191353855,0.3049416018190292,0.30225509390182,0.3000461976364693,0.2972305331799003,0.2944635526461777,0.2929714454703775,0.292945362482466,0.2934757371720455,0.293903923588351,0.294093268338892,0.2949334783700109,0.2957326569661371,0.2964337003350885,0.2977807736181686,0.297031666005778,0.302562818787746,0.303884207950215,0.3091520063253607,0.3134396148430758,0.3183068783068783,0.3219711236660389,0.3267341695632462,0.3330236878773804,0.3340025983229007,0.3384662296081719,0.3465186680121089,0.3509308141150319,0.3519095869056898,0.0,2.407120531252464,50.80450611972984,152.01106110011435,218.518293231938,fqhc1_80Compliance_baseline_low_initial_treat_cost,28 -100000,95612,46825,445.4252604275614,5233,53.45563318411915,4189,43.18495586328076,1668,16.985315650755137,77.28554750318864,79.71735546732342,63.27381344368565,65.07187451612135,77.07000187142837,79.50728621212623,63.19184466837602,64.99540830973089,0.2155456317602642,210.0692551971832,0.0819687753096261,76.46620639046375,221.58488,155.17894951240925,231753.7965945697,162300.2907165743,451.08128,298.6618722802101,471131.9290465632,311718.5064738558,440.79545,214.9204471825507,457241.3818349161,221882.52405236283,2725.72828,1284.5764355923889,2809359.557377735,1302185.2377218634,1002.27726,461.9685087132032,1027220.1606492908,462359.2879762799,1619.72346,694.7069578606072,1649890.3275739446,686892.5367209523,0.38128,100000,0,1007204,10534.263481571352,0,0.0,0,0.0,38780,404.91779274568046,0,0.0,40035,415.0420449315986,1232768,0,44255,0,0,8698,0,0,73,0.7635024892272937,0,0.0,0,0.0,0,0.0,0.05233,0.1372482165337809,0.3187464169692337,0.01668,0.3687671232876712,0.6312328767123287,23.516492768130185,4.139094174926321,0.3036524230126521,0.272857483886369,0.2122224874671759,0.2112676056338028,11.694196935832744,6.478049153437001,17.78175572921239,11779.471928295168,48.05627445183111,13.90530227405377,14.464131828579424,10.022253867700805,9.664586481497109,0.5808068751492003,0.7935258092738408,0.7083333333333334,0.5815523059617548,0.1220338983050847,0.7539432176656151,0.9266247379454928,0.868421052631579,0.7368421052631579,0.1732673267326732,0.5056487504279357,0.6981981981981982,0.6494623655913978,0.5218068535825545,0.1068814055636896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025942440210782,0.0047469798861942,0.0069751858018925,0.0089647812166488,0.0111402759125869,0.0134360134054538,0.0157705215697075,0.0180716737495913,0.0204048235161755,0.0226949192466433,0.0249687121725036,0.0273116799046454,0.0292119565217391,0.0313463144114706,0.0334854617545019,0.0355096299054593,0.0374626927541038,0.0394130109670987,0.0412190856857357,0.0433104541756201,0.058146463854477,0.0728890472547396,0.0862487520361515,0.0990422404619161,0.1111216750121484,0.126640468599392,0.1381611809592637,0.1494232040429025,0.1598227758692651,0.1681567127291483,0.1805575040739022,0.1912099590101715,0.202103656875034,0.2122457478520077,0.2222369248073042,0.2318776226105104,0.24044674999441,0.2494702434625789,0.257677357761462,0.2647075684786223,0.2707573283300325,0.2761253454494355,0.2813926196375016,0.2860658591339632,0.2908736918958384,0.2959055234710499,0.2992123026060386,0.3024170954103204,0.3066772098570188,0.3108373929000488,0.3081552692167871,0.3059451135676181,0.3024625267665953,0.3007499241406216,0.298836069954571,0.2952595452595453,0.2923669079562194,0.292234668068193,0.2930955022616711,0.2941018814658638,0.2945557988508974,0.2947542728724348,0.2953327752197572,0.2956948472005353,0.2981905332534452,0.3001762388554841,0.3035911055858503,0.307123236359096,0.3110463097965701,0.3160650316891705,0.3213156230234029,0.3227047538737219,0.3275764970902947,0.332855634333987,0.3360937936168233,0.3407788562741199,0.341910095353413,0.3450901803607214,0.3429573664328116,0.3459821428571428,0.0,2.358662778664144,55.172251799354825,153.63261085975913,213.08735740380425,fqhc1_80Compliance_baseline_low_initial_treat_cost,29 -100000,95809,46920,445.9184419000303,5279,53.98240248828398,4137,42.5951632936363,1581,16.031896794664384,77.35864855579545,79.66310047216764,63.35358995694328,65.05404972498518,77.14972787555416,79.45993441433706,63.273721255614056,64.97937620615154,0.2089206802412917,203.16605783058608,0.079868701329218,74.67351883363449,221.98088,155.536685877321,231690.82236533103,162340.1675342638,450.42056,297.69053829301504,469506.0484923128,310097.6276838272,436.02772,212.16172889223284,451986.6505234373,218897.5534380736,2681.59332,1236.5531914899957,2759561.920070139,1251536.25362478,941.19105,421.4971161647643,967839.4931582628,425575.38247802993,1541.56676,665.5931385137817,1564688.995814589,657158.8621183601,0.38091,100000,0,1009004,10531.401016605956,0,0.0,0,0.0,38681,403.1040925174044,0,0.0,39555,409.7318623511361,1236922,0,44389,0,0,8831,0,0,69,0.7201828638228142,0,0.0,2,0.0208748656180525,0,0.0,0.05279,0.138589168044945,0.2994885394961167,0.01581,0.3388474822759498,0.6611525177240501,23.79514722162395,4.112634025066646,0.3130287648054145,0.2661348803480783,0.2131979695431472,0.2076383853033599,11.269854808596154,6.055759504381811,17.041381363414164,11758.725283094813,47.19500452457163,13.485705662914285,14.557958356558755,9.698701465427636,9.452639039670952,0.5617597292724196,0.782016348773842,0.6864864864864865,0.5612244897959183,0.0919674039580908,0.7235142118863049,0.9101382488479264,0.8526011560693642,0.6494845360824743,0.1283422459893048,0.4986559139784946,0.6986506746626686,0.6259220231822972,0.5363372093023255,0.0818452380952381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022468271157622,0.0047503772954248,0.0070054847572411,0.0092341725268146,0.0114705464003413,0.0136615635013478,0.0159006641404881,0.0181367498699417,0.0203808511942463,0.0225761574500296,0.0249918059652572,0.0271298746589533,0.0291159397955514,0.0310258600286075,0.033138120179816,0.03508500134267,0.0373328918505028,0.0392490229211805,0.0411949228244385,0.0429550044766485,0.0576415478190107,0.0720364678083767,0.0850392545307799,0.097921133392189,0.1103487526480538,0.1248982783948595,0.1368638676844783,0.1476185916871456,0.1591142051763902,0.1682786129398897,0.1804720983825461,0.1922356989061164,0.2032217013454573,0.2129547568247716,0.2218037661050545,0.2317251624060483,0.2406452333110069,0.2496511994239164,0.2575238311393554,0.2646664604598412,0.2702615135385327,0.2760626345847767,0.282107132287659,0.2868925172025222,0.2909712007196781,0.2960446822676497,0.3006993881917249,0.3040835272722648,0.3074284086789912,0.3097389492012821,0.3068571659200064,0.3046537837763545,0.3031679298077869,0.3005350215594941,0.2983150900299605,0.2951763968891809,0.2930186979405396,0.2931877070418839,0.2927095782823971,0.2941207996141272,0.2937792767472362,0.2952956511435004,0.2962947439014167,0.2969185800031238,0.2957523398128149,0.2961766009017696,0.2968046932847297,0.3032951829958495,0.3065432358510414,0.3089711542276713,0.3134294523032281,0.3150090032835504,0.3187061183550652,0.3236748041676173,0.3260080081944315,0.3308086693078536,0.3307645814445452,0.335679806918745,0.343015214384509,0.3483365949119373,0.0,2.2344827064834205,50.66006008833895,153.92785640406052,221.08881323949,fqhc1_80Compliance_baseline_low_initial_treat_cost,30 -100000,95866,46637,442.6804080695972,5281,54.01289299647424,4190,43.174848225648304,1604,16.314438904303923,77.41454581429173,79.70367079347842,63.37712166936033,65.06825263760383,77.20799836503647,79.50057115201867,63.29932518532056,64.99442901887717,0.2065474492552539,203.0996414597581,0.0777964840397729,73.82361872666365,223.608,156.6044726276824,233250.5789330941,163357.67908088624,451.35643,299.20065519068265,470313.5418187888,311596.400382495,441.03394,215.15377547501865,456985.6883566645,221980.75489488104,2736.73071,1280.0220097123224,2820540.1497924183,1301014.248755891,951.37358,431.2701934280349,978564.089458202,436032.4446915846,1561.38486,668.1657752903315,1590068.2619489706,663976.4777618845,0.37941,100000,0,1016400,10602.29904241337,0,0.0,0,0.0,38740,403.5737383431039,0,0.0,39972,413.9215154486471,1229730,0,44148,0,0,8788,0,0,87,0.907516742119208,0,0.0,2,0.0208624538418208,0,0.0,0.05281,0.1391897946812155,0.3037303540996023,0.01604,0.3579462989840348,0.6420537010159652,23.46728175374921,4.07085999489485,0.3114558472553699,0.269689737470167,0.2059665871121718,0.2128878281622911,11.306388510810557,6.1591526682108615,17.245771126712466,11694.18550156774,48.04373239415561,13.805603345367224,14.936376260500474,9.55211763128828,9.749635156999616,0.577326968973747,0.7876106194690266,0.7203065134099617,0.5573580533024334,0.1210762331838565,0.7565632458233891,0.9006085192697769,0.8810810810810811,0.7238095238095238,0.1576086956521739,0.5005114217524719,0.7001569858712716,0.6566844919786097,0.5038284839203675,0.1115819209039548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080427190362,0.0046198267564966,0.0066925580782218,0.0089639209794327,0.0108954162008334,0.0133497491834471,0.0156173594132029,0.0178403851646334,0.0198475933643866,0.0220010637427379,0.0244399602568961,0.0267314951583784,0.0291917552043731,0.0310853096179183,0.0331986143187066,0.0354162363148109,0.0372247972190034,0.0392666901569009,0.0411389777021135,0.0431359087977698,0.0571601359664671,0.0709082738512023,0.0849710861548776,0.0979115698400865,0.1095994271513415,0.1252785552093784,0.1367796610169491,0.1471801194702493,0.1574971995519283,0.1664435567645137,0.179331339687184,0.1912731361356166,0.2019341519069868,0.2122212144722607,0.2208313184156152,0.2303087307734867,0.2393684633053096,0.2487160757431027,0.2568687704815793,0.263890478697832,0.2700930797248078,0.275428731748945,0.2806849493265216,0.2847507577300444,0.2890044215538603,0.2941785252263907,0.297263821641707,0.3006117802678605,0.304398523029086,0.3072506994668215,0.3051107462927577,0.3022447043945621,0.3000844119302194,0.2982947167960296,0.2964094502202382,0.2939199511151848,0.2909291686385865,0.2912113081604607,0.2914942528735632,0.2916022394028259,0.2915781232524326,0.2926094998229113,0.2937290290311152,0.2951930338975521,0.296447695544081,0.2977099236641221,0.300420939627652,0.3052644671787058,0.3095395538231302,0.3118004099006779,0.3138419986495611,0.3155299055613851,0.3194349792453999,0.3228886899433005,0.3256007393715342,0.3286214953271028,0.3341393380686112,0.3415811707905854,0.3442845506380668,0.3476796407185629,0.0,2.1086175027925083,54.98238514913984,155.43263507003147,212.4149763305093,fqhc1_80Compliance_baseline_low_initial_treat_cost,31 -100000,95714,46914,447.5625300374031,5305,54.22404245982824,4207,43.40012955262553,1597,16.35079507700023,77.36002699221102,79.7318318972106,63.33690834044432,65.08834538133705,77.16300877357455,79.53535580237175,63.26321208895434,65.01680952728987,0.1970182186364724,196.4760948388431,0.0736962514899843,71.53585404718399,222.58456,155.90128209165235,232551.72702008064,162882.4227298539,451.78809,298.6665498471108,471478.3208308084,311500.11476598075,440.30988,214.70174920104637,456180.2035229957,221391.40955626767,2698.61334,1254.6378383534866,2787705.0065821093,1279069.3820689626,965.47296,436.5217708527832,994664.2392962368,442027.01888206793,1551.17172,652.2973532604768,1590505.8821071107,655997.5595313489,0.38057,100000,0,1011748,10570.533046367304,0,0.0,0,0.0,38893,405.7818083039054,0,0.0,39887,412.8967549156863,1233730,0,44278,0,0,8670,0,0,89,0.9298535219508118,0,0.0,0,0.0,0,0.0,0.05305,0.1393961689045379,0.3010367577756833,0.01597,0.3649701141097627,0.6350298858902372,23.280799569513384,4.10541447086389,0.3220822438792489,0.2766817209412883,0.1968148324221535,0.2044212027573092,11.441666691364098,6.181882990282905,16.976530406738945,11676.773106277164,48.08921355075867,14.213092150834386,15.463232292239676,9.113385026919808,9.299504080764804,0.5866413120988828,0.820446735395189,0.6863468634686347,0.5797101449275363,0.1197674418604651,0.7722852512155591,0.9320987654320988,0.8396946564885496,0.7754010695187166,0.1488095238095238,0.5095862764883956,0.7404129793510325,0.6237006237006237,0.5226209048361935,0.1127167630057803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864773981829,0.0040345061784711,0.0063018174806937,0.0083910684898108,0.0107713902111558,0.0128813490285528,0.0151580020387359,0.0172487701320704,0.0191055456171735,0.0213354081778906,0.0236320575781498,0.0258821596870732,0.0277860617216663,0.0297977092946605,0.0318403648332146,0.0338492395810717,0.0361131254532269,0.0379980694780325,0.0398660384619384,0.0416888083106707,0.0561507936507936,0.0705083255711729,0.0837607913480399,0.0958015186891314,0.1084941962826689,0.1236006131402294,0.1349470691813225,0.1465664939183365,0.1574428092359613,0.1668043205440367,0.1790211899555086,0.1907271153429993,0.2018236949929899,0.2126243305279265,0.2223370682735339,0.2316397944720056,0.2400365855018794,0.2484175969959638,0.2564294377004771,0.2632880098887515,0.2692907924397433,0.274665825387923,0.27989075819018,0.2844268377336812,0.2888435819953641,0.2938997070480786,0.2980043015055269,0.3016705837515086,0.3050349849325521,0.3086221214557821,0.3065321224352506,0.3042527439275988,0.3025883811697735,0.3005535562011302,0.2984258984258984,0.2952783003716789,0.2926432497315054,0.2930679141585972,0.2931662637474888,0.2943529035354343,0.2945346017534042,0.295069716218608,0.2957022799134631,0.2966144966144966,0.2971972880061115,0.2977290970765685,0.2993565577255591,0.3028413896807744,0.3071243613968787,0.3123809523809523,0.3131685556921116,0.3163162633056188,0.3197572572572572,0.3192083994259385,0.3258249907304412,0.3247663551401869,0.3259593679458239,0.3288,0.3348773841961853,0.3403121431290445,0.0,2.1770411957794056,53.74257168201729,156.76530293154457,216.39282758851272,fqhc1_80Compliance_baseline_low_initial_treat_cost,32 -100000,95746,46962,446.1805192906231,5243,53.43304158920478,4190,43.13496125164498,1637,16.65865936958202,77.33346816806463,79.6949851151047,63.32120940122799,65.07005965746691,77.12457958666492,79.49251775563968,63.24179972384213,64.9964383096087,0.2088885813997052,202.46735946501812,0.0794096773858612,73.62134785820729,222.64022,155.98708843304354,232532.13711277756,162917.60327642254,453.77674,299.8558579544974,473321.5486808849,312561.9534544498,439.84739,214.074008141029,456087.9932320932,221015.8590535061,2738.36579,1263.9345079696675,2820221.325172853,1280280.9808970268,985.92895,441.932848170425,1015000.5953251312,446834.7170330081,1597.4923,678.7196886612311,1627401.2491383452,671635.590484229,0.3804,100000,0,1012001,10569.642596035344,0,0.0,0,0.0,38891,405.5417458692792,0,0.0,39836,412.7587575460072,1231961,0,44207,0,0,8770,0,0,89,0.9190984479769392,0,0.0,0,0.0,0,0.0,0.05243,0.1378286014721346,0.312225824909403,0.01637,0.3556370302474794,0.6443629697525206,23.810090546779257,4.196694992323336,0.3093078758949881,0.2632458233890214,0.2128878281622911,0.2145584725536992,11.11010225623928,5.837688699512353,17.396950076817184,11726.168071177346,47.75088546732536,13.470715545384907,14.651338361176467,9.866860798071729,9.76197076269225,0.5699284009546539,0.8077969174977334,0.6944444444444444,0.5650224215246636,0.1034482758620689,0.734468085106383,0.9013452914798208,0.8605341246290801,0.6886792452830188,0.1388888888888889,0.5058043117744611,0.7442922374429224,0.6360792492179353,0.5264705882352941,0.0945757997218358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330563858351,0.0047053096986168,0.0070032275744473,0.0096425450628949,0.0118996765728931,0.0143775010436925,0.0164845247318843,0.018431956890041,0.0206042271370753,0.0227549568546364,0.0250761202751606,0.0273086597197269,0.029513692502288,0.0318225352982976,0.0338502171737493,0.0358346253229974,0.0377848881157259,0.03978540371704,0.0416077518090326,0.0434021810455269,0.057898088507031,0.0717395855139208,0.0850954424774117,0.097419877357399,0.1092477745433067,0.1252115059221658,0.1372197404581772,0.1479786260192025,0.1578981102648193,0.1673227713001598,0.1797866609201594,0.1914898221996169,0.2015555313825737,0.211560971874282,0.2204020111559746,0.2298925683907409,0.2386598340980897,0.2477689875198343,0.2554360161605157,0.2629909901658863,0.2691573871717487,0.2744428594813273,0.2801263247539742,0.2852899609552782,0.2897344767773316,0.2942073733285769,0.2982837442853931,0.3026427745958371,0.3065834044423758,0.3095423319840192,0.3067894255101491,0.3043878448181119,0.3011827911621169,0.2989677326210929,0.2979247691713921,0.2946175637393767,0.291631726342104,0.2919557195571955,0.2920677179329647,0.2924432395798034,0.2938801450521515,0.2945466012337649,0.2947385989068302,0.2958985897921447,0.2970878909998081,0.2981117332986066,0.2986386840612592,0.3050278979374334,0.3084066299891369,0.3134434521457362,0.3151336656094246,0.3181049069373942,0.3220158152378561,0.3262373602980308,0.3277027027027027,0.3305539011316259,0.3382218148487626,0.3399877775514361,0.3426106317840245,0.3546153846153846,0.0,2.476472829610601,50.95544376824532,158.0765676189198,220.71264855339288,fqhc1_80Compliance_baseline_low_initial_treat_cost,33 -100000,95793,47371,449.8240998820373,5315,54.17932416773668,4172,42.9363314647208,1600,16.3059931310221,77.34149214859087,79.67981323341151,63.33904717832892,65.07209415592457,77.1346332914088,79.47759417969993,63.2602843231693,64.9977205995412,0.2068588571820697,202.2190537115733,0.0787628551596171,74.37355638337806,222.25698,155.78576972876414,232017.97626131345,162627.5090338168,454.00963,301.15557958729426,473326.5687471945,313759.5331467793,447.74189,218.28066991035857,463713.9143778773,224999.961479789,2717.09487,1274.5298978718374,2798219.36884741,1292300.3850718094,960.09343,431.9561073609792,984762.8949923272,433431.0412670846,1554.97416,665.5189424988786,1586127.316192206,662509.8410274992,0.38241,100000,0,1010259,10546.27164824152,0,0.0,0,0.0,38933,405.78121574645326,0,0.0,40541,419.4669756662804,1233349,0,44188,0,0,8753,0,0,74,0.7724990343762069,0,0.0,0,0.0,0,0.0,0.05315,0.1389869511780549,0.3010348071495766,0.016,0.3589420654911839,0.6410579345088161,23.73035907913256,4.154947092303117,0.324784276126558,0.2634228187919463,0.2042186001917545,0.2075743048897411,11.39489862922754,6.189555484690998,17.10765415329882,11839.027869081694,47.8167128212049,13.5163211577914,15.402485935558833,9.42355895416081,9.474346773693853,0.5848513902205177,0.8034576888080073,0.7143911439114391,0.57981220657277,0.1096997690531177,0.7570621468926554,0.9162995594713657,0.8564231738035264,0.7635467980295566,0.1459459459459459,0.5121036481418343,0.724031007751938,0.6555323590814196,0.522342064714946,0.0998531571218795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025628817731495,0.0048863071885486,0.0073367497082551,0.0098260374751046,0.012209391056621,0.0145562335109146,0.0167774967362924,0.0188095456912661,0.0211671592036239,0.0233158234264123,0.0254590942181299,0.0272329588630342,0.0293966386208882,0.0314508818196802,0.0334619670642618,0.0354429594716115,0.0376287859176805,0.0398033174617993,0.0418229615852201,0.0436710771505012,0.0588345766602326,0.0729208055375478,0.0860885512182342,0.0987084773904727,0.1114682573138858,0.1282227460597668,0.1403157236305037,0.1501409199680936,0.1605982002754027,0.1697771393656136,0.1828487151607798,0.1944576593720266,0.2044982886945184,0.2149625662604514,0.2244752092015702,0.2344448872946282,0.2431417137633905,0.2514596900965641,0.2597227570273392,0.2663800889457979,0.2723357579956125,0.2784179128871455,0.2836750369276218,0.2889005887139233,0.2930369615832363,0.296166432912576,0.2991868293840639,0.3028926091867948,0.3064137004701142,0.3084573187576463,0.3070690512341615,0.3050803240422902,0.303642016121091,0.3013710492134507,0.2993571948159914,0.2960759725960362,0.293019724458645,0.2926517152560169,0.2932147247643764,0.2936684923197687,0.2946617484599397,0.2950832625486439,0.2966296839020305,0.2976137277683439,0.2982489898018087,0.2991141219385096,0.3000743111924088,0.3029537197915021,0.3079335988439713,0.3133948456888323,0.3180859840498671,0.323149925357219,0.3259755866169123,0.3293918918918919,0.3280688481180253,0.3315081537912153,0.3324562761182479,0.3327190827190827,0.341029207232267,0.3449464012251148,0.0,2.3976829675232496,53.64390115924617,153.6145612622651,216.3217877178482,fqhc1_80Compliance_baseline_low_initial_treat_cost,34 -100000,95704,47001,447.316726573602,5251,53.7386107163755,4128,42.579202541168605,1612,16.415196856975676,77.3419109081298,79.71151355738914,63.33255108723839,65.0811755969531,77.14080178881255,79.51613211396266,63.25694514851976,65.01120233710714,0.2011091193172518,195.38144342648425,0.075605938718624,69.97325984596614,224.00554,156.90839544845343,234060.79160745637,163951.7631953246,453.731,299.95193872777867,473543.8435175124,312861.8853211763,437.75123,212.34632067266736,455084.2911477054,220012.4797574911,2696.79547,1250.3531972253463,2779310.8020563405,1267940.041404066,929.73085,414.020325098637,957880.8095795368,419020.8613000877,1566.02612,660.772185634254,1594790.98052328,652728.7331576488,0.38115,100000,0,1018207,10639.126891248015,0,0.0,0,0.0,38937,406.263061105074,0,0.0,39706,412.4696982362284,1226656,0,44024,0,0,8632,0,0,76,0.7941151884978684,0,0.0,0,0.0,0,0.0,0.05251,0.1377672832218286,0.3069891449247762,0.01612,0.3593778591033851,0.6406221408966148,23.682651986358533,4.072747434961444,0.311531007751938,0.2718023255813953,0.2100290697674418,0.2066375968992248,11.19348402519786,6.010623574466013,17.237892754707904,11697.766577677136,47.21482271393473,13.678484939856649,14.717739097900584,9.583033935750144,9.235564740427357,0.5726744186046512,0.7878787878787878,0.6998444790046656,0.5547866205305652,0.1160609613130129,0.7624683009298394,0.917995444191344,0.903846153846154,0.6822429906542056,0.144578313253012,0.4964346349745331,0.7042459736456809,0.6193058568329718,0.5130168453292496,0.1091703056768559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023796986390149,0.0043985000506739,0.0066646378575776,0.0088770618347282,0.0110525887664212,0.0133481306508104,0.0154846733335372,0.0174634604392912,0.0197874080130825,0.0220150246658342,0.0243774923371843,0.0264817020577483,0.0286498771119772,0.0308562480038737,0.0327217567177116,0.0347643611027838,0.0367857993558342,0.0388235660394981,0.0407923468857231,0.0426984325496081,0.0571106283422459,0.0706927956786634,0.0835257082896117,0.0961983505848691,0.108866501397753,0.1243717396594961,0.1360472765081588,0.1471339749595434,0.1574145299145299,0.1671207895301437,0.1802350001615491,0.1916351044259279,0.2026408240066999,0.2118342936487978,0.2209991532599492,0.2305470081685962,0.2392012131213344,0.2472185385808365,0.2556839443455385,0.2623076483038727,0.2688878352279955,0.27500497116723,0.2813387279954571,0.2855448817765852,0.2897165618244966,0.2932107513895222,0.2977290367810911,0.3021833394794064,0.3060609197484537,0.3094146778357304,0.3065188732545938,0.3036827506659709,0.3024732103984383,0.3009810842349416,0.2987330517892865,0.2950391644908616,0.2915608286133506,0.291412950959209,0.2916283191873743,0.2926611882564751,0.2928703651764178,0.2943658916563135,0.2960443700293009,0.2970111245141402,0.2975178837198137,0.2988383273993606,0.300378066460104,0.304241512273112,0.3072069545709478,0.3106087646242316,0.3139070442992012,0.3179530645759389,0.3214420298957417,0.3251314085472689,0.3264346190028222,0.3301786348042115,0.3309440292816837,0.334833299243199,0.3351908609640568,0.3411268685320046,0.0,2.113309588039855,51.617158390443095,157.0598185093773,213.2653464559861,fqhc1_80Compliance_baseline_low_initial_treat_cost,35 -100000,95710,46680,443.7362866994045,5236,53.55762198307387,4128,42.57653327760945,1595,16.29923727928116,77.33810060160408,79.72099257768186,63.31256206328344,65.07500772252186,77.14486747373527,79.5308267559075,63.24038764483668,65.00640363402331,0.1932331278688082,190.16582177435737,0.0721744184467567,68.60408849854593,221.61106,155.2783596362759,231544.0810782572,162238.16344820382,448.18719,296.2549136793171,467711.4721554696,308969.4360874696,438.13486,213.380300926637,454590.9622818933,220425.5494470399,2678.26472,1253.582831486749,2764824.772751019,1276315.2029952458,979.68188,445.4496426442537,1008713.2379061749,450535.1610534466,1548.90928,653.0440638912096,1584336.7882143978,652396.5844738885,0.37973,100000,0,1007323,10524.730958102602,0,0.0,0,0.0,38531,401.99561174380943,0,0.0,39807,412.63190889144295,1238840,0,44434,0,0,8811,0,0,71,0.7418242607877965,0,0.0,0,0.0,0,0.0,0.05236,0.1378874463434545,0.3046218487394957,0.01595,0.3655992680695334,0.6344007319304666,23.48544684041796,4.088612754626096,0.3095930232558139,0.2698643410852713,0.2124515503875969,0.2080910852713178,11.24722072973714,6.077839886888613,16.99804566228077,11742.620384062957,47.44589585781595,13.715362495188629,14.611293432402617,9.737249510823876,9.381990419400829,0.5855135658914729,0.8078994614003591,0.6995305164319249,0.6020524515393386,0.1105937136204889,0.7676348547717843,0.925531914893617,0.8575418994413407,0.7959183673469388,0.149171270718232,0.5104344851180295,0.7220496894409938,0.6380434782608696,0.5462555066079295,0.1002949852507374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024933611724878,0.0047068370866301,0.0069953499705565,0.0092282049718478,0.0113450209094331,0.0133022336752258,0.0153805356669318,0.0176596157578109,0.0200030679552078,0.0220959402037577,0.0244260092904972,0.0265746616556794,0.0285840607873983,0.0308219883426358,0.0329595510486192,0.0352079199735449,0.037190809976911,0.0392169068442839,0.0411901692518817,0.0431267969498729,0.0582313379840427,0.0710883606025395,0.0844350709309158,0.096887851155355,0.1091296415426637,0.1244644727238107,0.1366419422956525,0.1480992439569801,0.1588868940754039,0.1685314910370426,0.1807526151923553,0.1927365230569387,0.2034151013212023,0.2121812194348106,0.2219422283356258,0.2308595871056393,0.2394809719492585,0.2483090808827666,0.2568807339449541,0.2633201535728611,0.2693149320952634,0.2757886112249078,0.2802580950689635,0.2856372654733664,0.2899754669775802,0.2945166621444957,0.2993625787384318,0.3035893909876873,0.3077680085980291,0.3101951991558955,0.3076323044852397,0.3059286038296059,0.3037281935846933,0.3006130544536603,0.2983684366656778,0.2958618791289454,0.2923174101855507,0.2928760757878202,0.2935454746776144,0.2933513667425968,0.2942659693686963,0.2957100387848719,0.2964161897999248,0.2979492557963091,0.2970292285577384,0.2986663909852166,0.2990112994350282,0.3031871764485748,0.3076040471471785,0.3109952160614854,0.3149856682192762,0.3191112038389317,0.3236219986420591,0.3265047675804529,0.332107054170882,0.3376411689370124,0.346865671641791,0.3507698381365969,0.3546573875802998,0.3531612420501309,0.0,2.158105033759986,52.55839950403089,158.80445416068042,209.6947846604621,fqhc1_80Compliance_baseline_low_initial_treat_cost,36 -100000,95644,46953,447.409142235791,5090,51.96353142904939,4003,41.20488478106311,1538,15.724980134666051,77.27782633283482,79.68754356964565,63.2892740309558,65.07173107234567,77.07785398876698,79.49037792099388,63.21353691841709,64.99948850949185,0.1999723440678451,197.16564865177588,0.0757371125387109,72.24256285381614,221.91312,155.41739116534612,232019.9071557024,162495.70403302467,448.96873,297.2223234831884,468760.3404290912,310102.81197272,437.97581,213.32588423320928,453130.5152440299,219426.5681067716,2585.51064,1216.4249387030654,2663010.7168248924,1231571.5243016444,952.90758,433.6634608950629,979682.353310192,436789.8361581087,1498.48606,644.8106410993989,1532890.7824850488,644290.2870817919,0.37987,100000,0,1008696,10546.35941616829,0,0.0,0,0.0,38539,402.2625569821421,0,0.0,39637,409.6336414202668,1236179,0,44412,0,0,8802,0,0,84,0.87825686922337,0,0.0,0,0.0,0,0.0,0.0509,0.1339932082028062,0.3021611001964636,0.01538,0.3539823008849557,0.6460176991150443,23.415812632428263,4.142981524305925,0.3027729203097676,0.2745440919310517,0.2173369972520609,0.2053459905071196,11.433806739675171,6.239115164822054,16.648669297817904,11710.869103374782,46.02879638497827,13.488487602124325,13.688965092898863,9.704074671280193,9.147269018674889,0.577566824881339,0.8007279344858963,0.6864686468646864,0.593103448275862,0.1021897810218978,0.7392040643522438,0.9070796460176992,0.8492307692307692,0.7389380530973452,0.1123595505617977,0.5099220411055989,0.7264296754250387,0.6268320180383314,0.5419254658385093,0.0993788819875776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023508907038485,0.0045128184325815,0.0065478244980001,0.0089128733599601,0.0110483747901724,0.0133046729352797,0.0154614992350841,0.0178026085979552,0.0200998342914424,0.022157117833253,0.0243384615384615,0.026388503692747,0.0285852463908296,0.0304972945117237,0.0328002560422882,0.0351347158297564,0.0370658211058608,0.0388856585122731,0.0408740894901144,0.0426341636342783,0.0570753829756107,0.071259504409208,0.0848325810853364,0.0969449501699588,0.1094976783452933,0.1256642601570935,0.136908175619703,0.1483367784004944,0.1584486705029199,0.1679425374977184,0.1807894992079144,0.192331846333752,0.2029931972789115,0.2121440920928807,0.221517733306915,0.2317485291347656,0.2400531392337233,0.248722968563649,0.2558435074660736,0.2631837949187457,0.2693325934403865,0.2750081802458748,0.280977271114685,0.2853445796990319,0.2891744813177202,0.2939856484107218,0.2980736735383575,0.3020574874985685,0.306010858157223,0.3095018206765528,0.3062503369090615,0.3037257577637183,0.301546537224135,0.2981740313105883,0.2956994047619047,0.2933284266372264,0.2904156494721157,0.2910268635123138,0.2908388332250453,0.2914270405429541,0.2924194484488794,0.2929324852842413,0.293546700135969,0.2957768462361755,0.2975810898281111,0.2979374756777792,0.2984150428904164,0.3025616847399026,0.3069798563177912,0.3115425934030955,0.317070946562101,0.3216368069543093,0.3246214738958346,0.3289815238967781,0.3347142453629602,0.3405546958695393,0.3394199785177229,0.3430089942763696,0.3458771444382955,0.3532319391634981,0.0,2.532448249790133,51.00664911907501,152.13943816097557,203.9597818881934,fqhc1_80Compliance_baseline_low_initial_treat_cost,37 -100000,95826,46963,446.5072109865799,5371,54.88072130736961,4308,44.43470456869744,1623,16.5821384592908,77.39792083527668,79.70033739027211,63.37134666233783,65.07108073016829,77.18984559453632,79.49431787402207,63.29230052694831,64.99477614752182,0.2080752407403565,206.01951625003775,0.0790461353895182,76.30458264647189,223.18494,156.18070427275083,232906.45545050403,162983.6414676088,450.62311,297.98293774752887,469716.7261494793,310427.8356057114,437.93411,212.6772169295901,453601.8199653539,219337.85497340476,2812.80283,1312.3114160635616,2902135.714732954,1336285.7221041913,1020.89793,460.4164340689656,1047642.2682779204,462754.5425558143,1581.94156,680.0244070742078,1617845.2612025964,682544.3432650887,0.38249,100000,0,1014477,10586.657065932002,0,0.0,0,0.0,38743,403.7421994030848,0,0.0,39777,411.7254189885835,1236015,0,44329,0,0,8711,0,0,77,0.7931041679711144,0,0.0,0,0.0,0,0.0,0.05371,0.1404219718162566,0.3021783652951033,0.01623,0.349609375,0.650390625,23.552758667001225,4.058789714013347,0.3119777158774373,0.2671773444753946,0.2086815227483751,0.2121634168987929,11.2358674343373,6.204313492569383,17.48984330522655,11796.38097279321,49.36481175959084,14.100230349287932,15.283367402353589,10.147368767437516,9.833845240511796,0.5875116063138347,0.8062554300608167,0.7180059523809523,0.5962180200222469,0.111597374179431,0.7445820433436533,0.9282700421940928,0.860655737704918,0.7250996015936255,0.1243781094527363,0.5202254641909815,0.7208271787296898,0.6646216768916156,0.5462962962962963,0.1079943899018232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689965173726,0.0044280517585546,0.0065520563923119,0.008793395814506,0.0110706733897202,0.0134232969001241,0.0159768498705956,0.0179954093343534,0.0199848785172773,0.0222524605594319,0.024178841464664,0.0262836624775583,0.0285919761647917,0.0307685975076407,0.0326420811774649,0.0348562283826338,0.0367354961516179,0.0388557806912991,0.0410155235969056,0.0428144740813204,0.0571091802355297,0.071013219544846,0.0843530139557317,0.0967429929140646,0.1086106397107651,0.1240789487594219,0.1363313433785403,0.1477227975689972,0.1585025801006399,0.1676910699919549,0.1799911684563107,0.1919112159136388,0.2033878034726073,0.2136890443909906,0.2231521296835993,0.233229631433854,0.2419964540193356,0.2509050028105677,0.2589699697316661,0.2656430557303525,0.2711972164745864,0.2776492851135408,0.2829204847768253,0.2885726936562833,0.2926223148911409,0.2967235696364441,0.3004395275079289,0.3046591341881426,0.3089950099542363,0.3124128128865843,0.3103096656469704,0.3070847787634888,0.3048777063266968,0.3032235771772463,0.3013309251336106,0.2984876665548678,0.2950328672541261,0.2952085036794767,0.295449901232886,0.2954080088314371,0.2963398473225451,0.2975196850393701,0.298641967582452,0.2988646755737961,0.300734729158663,0.3002105919975041,0.3005160664898925,0.304997796940895,0.3088559722659943,0.3133354425373724,0.3172084564673789,0.3216980129635532,0.3278347919158849,0.3278326996197718,0.3325498307634449,0.3375886524822695,0.3430267965895249,0.3402,0.3347708894878706,0.3412073490813648,0.0,1.9876245406625743,56.82852874537862,156.99142215806316,221.4483040721262,fqhc1_80Compliance_baseline_low_initial_treat_cost,38 -100000,95548,46896,446.2992422656675,5252,53.80541717252062,4151,42.805710218947546,1574,16.033825930422406,77.19945181010942,79.67010839051845,63.224607941291474,65.05358288613799,76.99824262666066,79.47426011623334,63.148612425386936,64.98276294129901,0.2012091834487677,195.84827428511176,0.0759955159045375,70.81994483897347,221.89948,155.4811396823631,232238.7491103948,162725.6872800719,449.71315,297.63824499407315,470029.0115962658,310868.27039192145,437.18437,212.4231261607992,453968.5917025997,219533.171541299,2711.42348,1260.4167094109712,2796752.480428685,1278239.1757396965,999.48974,446.7201267623563,1032391.865868464,453916.8419957168,1536.94616,656.9198761236063,1567112.17398585,651012.6851479516,0.38003,100000,0,1008634,10556.306777745216,0,0.0,0,0.0,38599,403.30514505798135,0,0.0,39695,411.89768493322725,1230052,0,44130,0,0,8773,0,0,75,0.7744798425922049,0,0.0,0,0.0,0,0.0,0.05252,0.1381996158198037,0.2996953541507997,0.01574,0.3518484793298124,0.6481515206701876,23.496786948212627,4.159473856042513,0.2977595760057817,0.2724644663936401,0.2134425439653095,0.2163334136352686,11.269854378041185,6.071428484051133,16.867395731387276,11783.673901637378,47.62382076147705,13.840589170352734,14.136889487075926,9.761931284642182,9.884410819406206,0.5764875933509997,0.7939876215738285,0.7022653721682848,0.5914221218961625,0.1146993318485523,0.7389491242702252,0.9112554112554112,0.8571428571428571,0.7552083333333334,0.1287128712871287,0.5105013550135501,0.7130044843049327,0.6427771556550952,0.5461095100864554,0.1106321839080459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021287163840204,0.0045555082080314,0.0067836542367373,0.0089169513583862,0.0111780754978213,0.0134355440477889,0.0158391590549573,0.0176885346413243,0.0200675399099467,0.0222896319904897,0.0246158268064095,0.0265595919920208,0.0286199794026776,0.0306887694577113,0.0328424533664031,0.0349878370684747,0.0372740378133394,0.039358949042269,0.0415416666666666,0.0435350002610012,0.0584130969192949,0.0720330540378988,0.0855478933647296,0.0987565858798735,0.1110582614578048,0.1268845020249782,0.1392795591395561,0.1509087610326684,0.1609063638311549,0.1695649835995053,0.1816110325165498,0.1930176782749302,0.2037483500059999,0.2136009652297905,0.2227507504856083,0.2321910580394335,0.2410482499328618,0.2485781990521327,0.2567761316310507,0.2627057323670277,0.2698458719426629,0.2757419763364955,0.2816254878005385,0.2855444545847543,0.2898799522731147,0.2940965745556063,0.2988765455344254,0.3026280555449294,0.3069326204318937,0.3109735940867679,0.3094508697823182,0.3067849859449925,0.304006428329762,0.3025518687197281,0.3001963818138538,0.2969238790406673,0.2934157356786308,0.293186227761518,0.2938074611789279,0.2943260507810403,0.2957259821227371,0.2971341487550963,0.2978459598613008,0.2975835890085772,0.2980942973474353,0.3001932518541731,0.3019616801347762,0.3054603753418629,0.3102091020910209,0.3147071617827342,0.3188713318284424,0.3220971813209928,0.3244084682440847,0.3269419491205556,0.3331167625765732,0.3311764705882353,0.3370465151287069,0.3381537242472266,0.3384823848238482,0.3382857142857143,0.0,2.4855705197190345,52.04434125392508,155.6863978657936,217.36138173610289,fqhc1_80Compliance_baseline_low_initial_treat_cost,39 -100000,95684,46753,444.7661050959408,5275,54.011119936457504,4152,42.83892813845575,1566,15.990134191714391,77.33990302576841,79.73048305233247,63.32261558699434,65.08891097812999,77.14294889489803,79.5368678188081,63.24804309244647,65.01831022510596,0.196954130870381,193.61523352436905,0.0745724945478656,70.60075302402424,222.43166,155.73991736631763,232464.84260691443,162764.8482152895,450.66731,297.7577971605506,470440.0840265875,310633.3108571449,435.05283,211.3073888947396,451227.7810292212,218159.9519112624,2687.53336,1248.0742341166049,2775751.0242046737,1271362.4891482422,978.71596,434.788566660342,1008869.0167635132,440406.7938843914,1521.9997,643.3290137398728,1556494.293716818,642474.4566596182,0.38042,100000,0,1011053,10566.583754859746,0,0.0,0,0.0,38731,404.2055098031019,0,0.0,39453,408.8771372434263,1236422,0,44417,0,0,8880,0,0,79,0.825634379833619,0,0.0,1,0.0104510680991597,0,0.0,0.05275,0.1386625308869144,0.2968720379146919,0.01566,0.3487272727272727,0.6512727272727272,23.557582331837583,4.245944452706313,0.3234585741811175,0.2639691714836223,0.203757225433526,0.2088150289017341,11.493327444642896,6.160719764823659,16.639325379634673,11735.27116395856,47.45390075944521,13.392978438528353,15.345943990767465,9.423093885193156,9.291884444956231,0.5785163776493256,0.8166058394160584,0.6813104988830976,0.5650118203309693,0.1314878892733564,0.7726523887973641,0.945770065075922,0.8663101604278075,0.7209302325581395,0.1402439024390244,0.4982981620149762,0.7228346456692913,0.6099071207430341,0.5118858954041204,0.1294452347083926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044498504890781,0.0065854227760245,0.0088875797342867,0.0112565205454379,0.0136403428408558,0.0155542871121621,0.0176165591573446,0.0198622015047432,0.0217404655161825,0.0241119483315392,0.0261245355067851,0.0281036947155182,0.0301179378894782,0.0323769222830013,0.0345134207370031,0.0365516312512303,0.038696685662089,0.0407277947693652,0.0428033817381967,0.0576234003656307,0.0718204279911219,0.0852445600856117,0.0978329476120345,0.1100479983121472,0.1250105788761002,0.1368555060471037,0.1482092491086158,0.1595377698033812,0.1691379070041705,0.1813668475919703,0.192488720096082,0.2035276974270863,0.2133407679524184,0.222408100374202,0.2330150853952994,0.2415597456208858,0.2491618477600522,0.2571302157783677,0.2640709991411394,0.2702249465101486,0.2763679294907012,0.281277350680071,0.2862051625879986,0.2899883529069203,0.2944043721227936,0.2987451254874512,0.3023111032055599,0.306790538791988,0.3099033529791807,0.3078848223896663,0.3058983591237666,0.3033083320433981,0.3009747996245216,0.2985344993986548,0.2950200938221047,0.2907922371184487,0.2905586848310191,0.290589856576552,0.2911466666666666,0.2910539673061133,0.2924812474159825,0.2931340047121619,0.29486379241161,0.2958611097789075,0.2966858864474572,0.297452355931722,0.3017436026091319,0.3070138597228055,0.3107623141538825,0.3141836919182788,0.317340644276902,0.3215088683487384,0.3253566845323469,0.330518697225573,0.3312668148321441,0.334747046349591,0.3413306451612903,0.3427785419532325,0.3462414578587699,0.0,2.2127224536190564,52.88650701860784,153.9941621429614,214.86438708631687,fqhc1_80Compliance_baseline_low_initial_treat_cost,40 -100000,95785,46846,444.9757268883437,5118,52.20024012110456,4085,42.07339353761027,1574,16.098554053348646,77.331780499572,79.67269398160225,63.32970022966426,65.0626363695338,77.13276609972952,79.47639184499202,63.25459512349944,64.99133101242413,0.1990143998424827,196.30213661022825,0.0751051061648269,71.30535710967933,222.89828,156.1605921815556,232706.87477162396,163032.40818662173,451.0745,298.80582065782687,470369.9953019784,311400.76281028026,439.55078,214.5315529088275,454900.6838231456,221022.50801030188,2611.5526,1230.6148232141315,2689950.4619721253,1248244.7911615924,918.16672,417.6938085838981,943037.855614136,420541.7326135582,1523.77012,644.9104287133787,1559163.459831915,644573.600522751,0.37974,100000,0,1013174,10577.585216891996,0,0.0,0,0.0,38790,404.3848201701728,0,0.0,39810,411.6928537871274,1231161,0,44208,0,0,8820,0,0,82,0.8560839379861148,0,0.0,0,0.0,0,0.0,0.05118,0.1347764259756675,0.3075420085971082,0.01574,0.3487677371172517,0.6512322628827483,23.58090544975889,4.066255251830426,0.3258261933904529,0.2756425948592411,0.1975520195838433,0.2009791921664626,11.21839687620515,6.073235380281886,16.81265393451826,11688.939949444148,46.99134814784963,13.81409116918582,15.076316993576404,9.132573616928518,8.968366368158906,0.5755201958384333,0.8019538188277087,0.6972201352366642,0.5588599752168525,0.0840438489646772,0.7358642972536349,0.9123173277661796,0.8243243243243243,0.6863636363636364,0.1065088757396449,0.505795574288725,0.7202472952086554,0.6482830385015609,0.5110732538330494,0.0782208588957055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024816409217523,0.0046733709095332,0.0069205556739423,0.0091023609248648,0.0111568777015001,0.0134828256906893,0.0158234946269448,0.0181407979092653,0.0204248533049825,0.022613502584839,0.0246955345060893,0.0268602466296345,0.0291610541577123,0.0311601891243214,0.0332738175100368,0.0352217512664116,0.0373258764434778,0.039548198394424,0.0415151200249402,0.0433478763393275,0.0589812891982426,0.0727630285152409,0.0857295608692461,0.0982409314446639,0.1098256150887729,0.1243870995012258,0.1368294983624974,0.1481316063718922,0.1586036136991856,0.1675291697470348,0.1798904209857805,0.1904210788184266,0.2021423522375074,0.2117172291607428,0.2208918431130871,0.2297559300251493,0.2383720281592717,0.2463505701882633,0.253758929583853,0.2608745421245421,0.2675097388711001,0.2736812583261271,0.2790741682534801,0.2825995807127882,0.2870203982515784,0.29164612502465,0.2966129274520603,0.3004661351537227,0.3038953970557744,0.3080324147397318,0.3061913797047623,0.3043060097276799,0.3021031159879018,0.2996591664018948,0.2976335401882479,0.2944868870278794,0.2912755077809615,0.2912052758501894,0.2919135855178891,0.292256156231068,0.2932405380628987,0.2943367960418679,0.2950991270123725,0.295813330356146,0.2966221901670874,0.2988284300963291,0.2978058208276489,0.3017551543972718,0.3077325338167619,0.3119889393640134,0.3168096599936447,0.3195055965200785,0.3247474747474747,0.3269172245891661,0.326924880427647,0.3297118564005668,0.3287964520568894,0.3319951826575672,0.3350756533700137,0.3461538461538461,0.0,2.225528217807766,53.80456468726591,151.83774598580325,207.1308785486087,fqhc1_80Compliance_baseline_low_initial_treat_cost,41 -100000,95681,46896,445.34442574805865,5256,53.82468828712074,4156,42.78801433931502,1616,16.53410813014078,77.34192318165195,79.71657902082443,63.32298576779221,65.0748817445983,77.13438290711561,79.51243297074063,63.24553167050114,65.00122406413621,0.2075402745363419,204.14605008379283,0.0774540972910742,73.65768046209098,221.892,155.44634596911894,231908.1113282679,162463.12848853893,449.55994,297.36362535943925,469210.1566664228,310143.76455036976,434.45921,211.7232136582506,449312.87298418704,217684.64602404105,2711.84054,1260.856058329944,2797879.7253373186,1281398.4159132368,981.43545,441.8621271255528,1008494.392826162,444564.957646296,1571.33414,667.1664249837605,1609995.0878439816,670301.6007610243,0.38075,100000,0,1008600,10541.277787648542,0,0.0,0,0.0,38553,402.2742237225781,0,0.0,39370,406.778775305442,1236754,0,44349,0,0,8761,0,0,90,0.9406256205516248,0,0.0,0,0.0,0,0.0,0.05256,0.138043335521996,0.3074581430745814,0.01616,0.3431533006001091,0.6568466993998909,23.8182412496737,4.071867766626132,0.3010105871029836,0.2678055822906641,0.2201636188642926,0.2110202117420596,11.195198353094966,6.081523393307279,17.339911583403836,11788.920044799044,47.52023409695073,13.526889851735362,14.272023721656078,10.140296633941194,9.581023889618091,0.5697786333012512,0.7753818508535489,0.6954436450839329,0.5890710382513661,0.1094640820980615,0.7450980392156863,0.8950892857142857,0.8524590163934426,0.7268722466960352,0.1857923497267759,0.4965893587994543,0.6947368421052632,0.6305084745762712,0.5436046511627907,0.0893371757925072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024604355882263,0.0045509370470601,0.0068880164744311,0.0088873991915005,0.0111559700202373,0.0134084013764737,0.0158228493362967,0.0179918924162437,0.0204100414131601,0.0226286041939711,0.0247008520717339,0.0267614167325604,0.0289643397138537,0.0311688579318303,0.0335070967741935,0.035770054084239,0.0379543594683903,0.0399314926302678,0.0418165935231598,0.0438601975740902,0.058580203066895,0.0715901237670415,0.084933088428234,0.0981512463566821,0.1100829341380547,0.1257936843887572,0.1376700039282719,0.1484992437637134,0.1595019238991021,0.1696665271382726,0.1814055778954063,0.1934722342545265,0.2045516385681167,0.214081733136386,0.2230819181368934,0.2321531439712855,0.2405590346382684,0.2483200324174649,0.2557422047797829,0.2631066626966858,0.2704428710259614,0.2755877880453854,0.2813102803517118,0.2860926993563543,0.2907865168539326,0.2953078022573808,0.2998247151621385,0.3035596152867538,0.3066925817946226,0.310001056356626,0.308317715425998,0.3064740665187248,0.3047034764826176,0.3023699146484121,0.2995417673839218,0.2958609727019839,0.2922367215393851,0.2926297140794934,0.2937520277308198,0.2952403015129105,0.2959679832435667,0.2975786064149154,0.2984107068172313,0.2997230782973781,0.3016200153374233,0.3031002724088728,0.3023486415276086,0.3061415846225973,0.3091339789591026,0.3148046013236684,0.3193235625704622,0.3227011947997263,0.3276768941765811,0.3314577237602221,0.3372792009618052,0.3383973095210483,0.3401370679380214,0.3430037497533057,0.3503373819163293,0.3579376854599406,0.0,2.5805197861657074,53.10053304073789,150.0284340049582,218.6874315923372,fqhc1_80Compliance_baseline_low_initial_treat_cost,42 -100000,95744,47044,448.2682987967914,5253,53.63260360962567,4168,43.00008355614973,1624,16.585895721925134,77.32392886815877,79.68696476908718,63.31606620966248,65.06462237482322,77.1137094613016,79.48052424393087,63.236496911773415,64.98880074421575,0.2102194068571776,206.44052515631017,0.0795692978890656,75.82163060746439,222.72184,156.0273237259285,232621.7830882353,162962.59120981835,449.094,297.77379246842725,468535.7933656417,310489.98912456894,441.59161,215.3309652239321,458222.55180481286,222551.94968291488,2734.4084,1281.543260323846,2821466.4522058824,1304256.4401417088,965.91768,436.8956531495686,994016.0427807488,441731.1181650733,1584.78488,682.4469202873144,1620194.6022727273,682639.8727560252,0.38106,100000,0,1012372,10573.717413101604,0,0.0,0,0.0,38714,403.8059826203208,0,0.0,39959,414.39672459893046,1229650,0,44194,0,0,8838,0,0,72,0.7415608288770054,0,0.0,0,0.0,0,0.0,0.05253,0.1378523067233506,0.3091566723776889,0.01624,0.3471918307804522,0.6528081692195478,23.47224590311958,4.171294373023862,0.312619961612284,0.2663147792706334,0.2094529750479846,0.2116122840690978,11.461011420325132,6.145196538318762,17.442290727707704,11755.692422965849,47.86930833792491,13.564359039954232,14.971944267829311,9.752567748371046,9.580437281770324,0.5760556621880998,0.8036036036036036,0.7022256331542595,0.5624284077892325,0.1167800453514739,0.7291021671826625,0.9022869022869024,0.8430379746835444,0.6774193548387096,0.1407035175879397,0.5073018080667594,0.7281399046104928,0.6409691629955947,0.524390243902439,0.109809663250366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021878513476556,0.0044307455210942,0.0067489394523717,0.009043061228637,0.0113012165846116,0.0134928716904277,0.0156597271781905,0.0178733655210428,0.0198856955903853,0.0218490836490222,0.0240319058408603,0.0262633729645372,0.0283749190389538,0.0303239429366019,0.0323392838716334,0.0344820457693341,0.0365621245390893,0.0385477643542159,0.0402645480637244,0.0422674612435405,0.0571070626924883,0.0712970518695206,0.0843163777826711,0.0964363452822847,0.1087162831895733,0.1247223338763248,0.136427298192004,0.1473641619728057,0.1583793541771259,0.168165882214193,0.1808492312992549,0.1932385958081889,0.2047490649734713,0.2138256809508709,0.2232011262896236,0.2318802055644161,0.2415821251994955,0.2498171301245766,0.2576096458860795,0.2641615448124025,0.2708205383732922,0.2771366645187745,0.2817430681508351,0.2857948545646539,0.290418360145051,0.2947091775041334,0.2992805935729684,0.3032817179634232,0.3071795403849147,0.3099218884233621,0.3079993527158962,0.3054687177227218,0.3036318520189487,0.3017268809117468,0.3001055087453375,0.2965896926135494,0.2942877002306404,0.2949767502783417,0.2950168717406864,0.2954557590644524,0.2964976183804987,0.2979772091005875,0.2994716066915895,0.3001359998216396,0.2998680896990047,0.3001066236704548,0.2999403866352513,0.3021435755594669,0.3086011674520008,0.3119895329474269,0.3125993911581625,0.3147041717337281,0.3157696886160015,0.3198457116926335,0.3244815614150323,0.3311305168751475,0.3322314049586777,0.3342487249901922,0.3328947368421052,0.3354620586025544,0.0,2.0570645646286705,56.673437904235485,148.87594295635526,211.862733280662,fqhc1_80Compliance_baseline_low_initial_treat_cost,43 -100000,95799,47299,449.6289105314252,5266,53.77926700696249,4167,42.96495788056242,1582,16.13795551101786,77.4066300966336,79.74597728424216,63.35719594835807,65.08768379542465,77.20398712902822,79.54648097330156,63.28020010511774,65.01439926116018,0.2026429676053851,199.4963109406029,0.0769958432403257,73.28453426447368,223.3506,156.41840713566484,233145.0223906304,163277.70345793257,453.00465,299.8944194125053,472369.6907065836,312545.2347232281,443.31218,215.65977129522264,459936.8991325588,222836.4620528883,2692.2392,1253.590462151811,2776845.4159229216,1275108.7194561642,973.76956,440.7724225929757,1002077.1824340548,445709.659995177,1538.28948,657.3070337431421,1570968.1729454375,656839.8954657656,0.38234,100000,0,1015230,10597.501017755923,0,0.0,0,0.0,38936,405.891501998977,0,0.0,40148,416.18388500923805,1229456,0,44173,0,0,8893,0,0,72,0.751573607240159,0,0.0,0,0.0,0,0.0,0.05266,0.1377308155045247,0.300417774401823,0.01582,0.3373954165150964,0.6626045834849036,23.947311572459657,4.072186819677499,0.3170146388288937,0.2704583633309335,0.2099832013438924,0.2025437964962803,11.183093892446786,6.063733326805369,16.824432217334802,11794.616780008117,47.48329414938691,13.704129061537229,14.852253290096918,9.703844014684956,9.223067783067789,0.5903527717782577,0.8118899733806566,0.7108251324753975,0.5714285714285714,0.1255924170616113,0.7487520798668885,0.9130434782608696,0.8633720930232558,0.6995305164319249,0.1837837837837838,0.5261382799325464,0.7421289355322339,0.6571136131013307,0.5302114803625377,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0043398024781488,0.0064846104667092,0.0086971541204799,0.0108420378149123,0.0131260055803344,0.0153952814991537,0.0176083295054356,0.0199313136268858,0.0222890826476728,0.0246377108655994,0.026545312756526,0.0285206273510246,0.0306468050937316,0.0325533450159777,0.0349121774418388,0.036922090148247,0.0392270691656991,0.0412878827232963,0.043300364393545,0.0583797658548801,0.0723458545971722,0.0857598054629687,0.098956417559089,0.1110385300222308,0.1261874319769223,0.1382691186602363,0.1500249864435253,0.1606679827135464,0.1697428041948303,0.1823747780706945,0.1940374363355212,0.2039820460152369,0.213784140921054,0.2222942391352111,0.2315147760087627,0.2403876176457469,0.2478333689286557,0.2560953482570139,0.2628868339132027,0.2697506098900463,0.276124373400638,0.2815881914629387,0.2870331565145546,0.2920157354119618,0.2961119597890898,0.3012438682550806,0.3051599613447943,0.3088562700631666,0.3119673904440281,0.3096347573129343,0.3064726832689319,0.3047322698280839,0.3019058619693907,0.3001542294459604,0.2975317693059628,0.2939182798410997,0.2936143811125443,0.294439735548398,0.2957579405828405,0.2969390035004096,0.2976185805641649,0.2982251963922025,0.2995829266128316,0.3002096036585366,0.3016994610207081,0.3019548194467917,0.3055503818215682,0.30929337079821,0.3116674502429086,0.3151675801958846,0.319669559761581,0.3234875224472103,0.3263660794266945,0.3297813705677016,0.3335644136337377,0.337568058076225,0.3442752620130512,0.3482167165804519,0.3520485584218513,0.0,2.066576410469594,52.45096579374658,151.4180764220164,221.55980190515413,fqhc1_80Compliance_baseline_low_initial_treat_cost,44 -100000,95697,46812,444.5593905765071,5320,54.36952046563633,4213,43.53323510663866,1634,16.719437390931795,77.29491858535671,79.69784604119785,63.29396199958445,65.07442245262745,77.09324436185413,79.499024107401,63.21794820364014,65.002230131044,0.2016742235025788,198.8219337968502,0.0760137959443127,72.19232158344369,222.73328,155.97305884738105,232748.21572254092,162986.1584824632,448.84015,296.3329363837762,468520.5596831667,309156.9772441654,434.94675,211.59955613672275,452140.1193349844,219292.695480238,2741.81812,1277.406754281861,2832375.623060284,1302234.624053105,980.02953,442.638848437918,1008831.457621451,447325.2919149468,1588.89914,669.6894496389241,1625943.780891773,668282.3469704747,0.38037,100000,0,1012424,10579.464351024588,0,0.0,0,0.0,38562,402.426408351359,0,0.0,39442,409.8247593968463,1235932,0,44367,0,0,8819,0,0,78,0.8046229244385926,0,0.0,1,0.0104496483693323,0,0.0,0.0532,0.1398638168099482,0.3071428571428571,0.01634,0.3403911717207967,0.6596088282792033,23.86871608093557,4.121218147852882,0.3161642535010681,0.2653690956563019,0.2129124139568003,0.2055542368858295,11.175662902652643,5.98131814105776,17.346187132501562,11774.52883326844,48.23653010629106,13.726402556728784,15.15227820432058,9.967876431626683,9.389972913615017,0.5829575124614289,0.8023255813953488,0.7079579579579579,0.5964325529542921,0.0935334872979214,0.7559808612440191,0.9100877192982456,0.8875,0.7123287671232876,0.1229050279329608,0.5096316323082122,0.7280966767371602,0.630901287553648,0.5589970501474927,0.0858806404657933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0045460541670471,0.0069770984613822,0.0092827004219409,0.0115944094383989,0.0139940680643747,0.0161537205600228,0.0181953781083345,0.0202459385358268,0.0222190352287976,0.0246291775229263,0.0268226785695941,0.0289671636876279,0.0311037823353601,0.0330622019447139,0.0351824274013402,0.0373053128983119,0.0395057882988111,0.041831819647743,0.043747459270146,0.0589046390406451,0.0727552558840774,0.085856412732062,0.0987194461104622,0.1111626925511711,0.1266467034187944,0.1374800976541768,0.1479876490630323,0.1576888964876099,0.1681455809611691,0.1801992997576084,0.1918940557851687,0.2031985561921743,0.2132075677920715,0.2218422152330261,0.2315281299480694,0.2399535890398732,0.2487116592029165,0.2565060405123081,0.2630505055136523,0.2693781621571556,0.2758826489415234,0.2818118334931174,0.2876722184251232,0.2916378126860322,0.2959230247332388,0.2997170118454333,0.3034971440202526,0.3064666321779617,0.3094560404807084,0.3072425195580289,0.3045764736574716,0.3024600194101017,0.3006592518861528,0.2989897191686323,0.2967186017325293,0.2941912195430869,0.2940568390653715,0.2947120472467825,0.2954354772487906,0.2955555138995632,0.2962325719371106,0.2968975846827408,0.2964552322202852,0.29853766653015,0.2992489438272571,0.3007300102657693,0.305184393372528,0.3094979884554836,0.3159414556962025,0.3209033374311342,0.3240466101694915,0.3283479349186483,0.3332575757575757,0.3355466192836435,0.3366430260047281,0.342908980949501,0.3434730056406124,0.3377573131094258,0.3360840210052513,0.0,1.8513978976347385,55.21188212346966,153.44455993258265,218.181613979244,fqhc1_80Compliance_baseline_low_initial_treat_cost,45 -100000,95706,46833,445.4475163521618,5290,53.82107704846091,4130,42.42158276388105,1590,16.143188514826655,77.3593554540744,79.73122170534378,63.33143217950936,65.08424054411783,77.15439803873105,79.53180155308071,63.25313570668642,65.01088696218751,0.2049574153433582,199.4201522630732,0.0782964728229416,73.35358193031993,223.267,156.23482522069935,233284.224604518,163244.54602710315,451.6629,299.30658151623805,471197.28125718347,312011.9218012342,439.68742,214.67971281256612,455079.4725513552,220934.5737105562,2654.00599,1241.6830408791593,2726965.091007878,1252265.584508959,928.47424,421.61675277179495,950279.8570622532,420961.4866148532,1529.6805,655.0482236450138,1554801.7679142377,647723.110220605,0.37923,100000,0,1014850,10603.828391114454,0,0.0,0,0.0,38770,404.3320168014544,0,0.0,39872,412.2521054061396,1229948,0,44163,0,0,9019,0,0,76,0.7836499279042066,0,0.0,1,0.0104486657053894,0,0.0,0.0529,0.1394931835561532,0.3005671077504726,0.0159,0.3480383294160188,0.6519616705839812,23.58241009560001,4.066939481356037,0.3164648910411622,0.272639225181598,0.2167070217917675,0.1941888619854721,11.535317037141908,6.382915767443927,16.969915231843895,11637.15317020011,47.00195091953523,13.622568164491309,14.81867007085229,9.89631844745491,8.66439423673673,0.5835351089588378,0.7895204262877442,0.6931905126243305,0.5932960893854748,0.1047381546134663,0.7658536585365854,0.9273127753303964,0.8541666666666666,0.7368421052631579,0.1524390243902439,0.5062068965517241,0.6964285714285714,0.6262188515709642,0.5442278860569715,0.0924764890282131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396669772718,0.0046326801625999,0.0071843891747085,0.0095874550588044,0.0117141026814313,0.0140389098720311,0.0161883888067689,0.0181899842802604,0.0202817362147574,0.0224408521790763,0.0245398143875301,0.0268079992604689,0.0289620972056463,0.0310635798844002,0.0330110311948569,0.0351154665178109,0.0370013769398805,0.0391855870059017,0.040898222268427,0.0429583333333333,0.0576951191495582,0.0718121016108267,0.0852365116498641,0.0977043525811574,0.1097378356147048,0.125575244644274,0.1366501814785728,0.1473077864968749,0.1573935533515731,0.1670798587634287,0.1787723344181735,0.1901091287025809,0.201024926829799,0.210913986144097,0.2203886489821098,0.2295825570047023,0.2379558782462999,0.2466442386669217,0.254207474153682,0.2608720557235817,0.266497755564811,0.2723680364762962,0.2780719587726348,0.2831538645608997,0.287542299901755,0.2913154235223175,0.2953982743528823,0.29848546452531,0.3023279875840662,0.3049934123847167,0.3034011229616097,0.3016341664377918,0.2990946733104077,0.2967453366124462,0.2943221492396,0.2920380952380952,0.2888623056097714,0.2889200789907463,0.2906081666638345,0.291063980832372,0.2910695626212867,0.2925969679070683,0.2931668966670848,0.2925968134790284,0.2930918685536099,0.295755623668762,0.2962384669978708,0.299564030988301,0.3038156192074983,0.3063777725155892,0.3094438900480812,0.3146031746031746,0.3182563714357809,0.3239425981873112,0.3283359716919639,0.3356332592679218,0.3401329706860078,0.3450606241303915,0.3445105462412114,0.3496424538953707,0.0,2.817058406560066,52.83006958034274,146.75533467185443,215.96485152871628,fqhc1_80Compliance_baseline_low_initial_treat_cost,46 -100000,95882,46822,444.9218831480361,5353,54.58793099851901,4243,43.59525249786196,1634,16.65588953088171,77.4394230829848,79.71879259943914,63.39129033748679,65.0767918362893,77.23323981746283,79.51507191953314,63.31467420056791,65.00341721147117,0.2061832655219717,203.72067990599876,0.0766161369188793,73.37462481812906,223.21794,156.33309427404572,232804.84345341148,163047.38561361437,453.0529,299.6534038864874,471797.5323835548,311809.7389358664,439.88791,214.910677088824,453976.0226111261,220551.33646096117,2770.16806,1283.760083535374,2851893.295926243,1302068.7073914995,1004.14549,449.1738273129001,1031925.8672117812,453154.9179216114,1595.03486,670.725798297241,1629069.814980914,671296.1161988263,0.381,100000,0,1014627,10582.03833879143,0,0.0,0,0.0,38823,404.2364573121128,0,0.0,40014,412.5383283619449,1233140,0,44267,0,0,8935,0,0,93,0.9595127344027032,0,0.0,0,0.0,0,0.0,0.05353,0.140498687664042,0.3052493928638147,0.01634,0.3497934997306518,0.6502065002693482,23.679991975567955,4.211348986309983,0.3030874381333961,0.2632571293895828,0.2194202215413622,0.2142352109356587,11.518602984690569,6.304996661600264,17.37484648199866,11757.735879611124,48.12364930959381,13.69266353778909,14.370305810972464,10.163665711312362,9.897014249519897,0.5847277869432006,0.8039391226499553,0.7107309486780715,0.5918367346938775,0.1298129812981298,0.74185667752443,0.9224318658280922,0.8911764705882353,0.6971153846153846,0.1133004926108374,0.5207296849087893,0.715625,0.645877378435518,0.5615491009681881,0.1345609065155807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022575420125531,0.0046211844825489,0.0070704713985737,0.0092294570967316,0.0114547653653429,0.0135528377525894,0.0159001782531194,0.0180334557323541,0.020146295615218,0.0223408825876143,0.0247136211807619,0.0270872023229328,0.0289986127524019,0.030974316743013,0.03299003082506,0.0348594676083679,0.036953508100391,0.0387520593507475,0.0406341164623194,0.0425790880813923,0.0577253822821226,0.0720405391286177,0.0849170200513062,0.0974383202099737,0.1095263157894736,0.1252507337260615,0.1366717505507541,0.1484417336974423,0.1587071465120245,0.1690353374285653,0.1818240454076367,0.193545598928228,0.2047120930687261,0.2145932125609143,0.2245140293781335,0.2332234075516798,0.2419595693939866,0.2495198085973918,0.2572211775899957,0.2637763324836832,0.2694634980022633,0.2751768744016625,0.2816218963092523,0.28634693413446,0.2908627593738624,0.2957309567186961,0.2994475276236188,0.3026397653541907,0.3057224440223781,0.3095830208292214,0.3066826096302665,0.3044092630192613,0.3022047465243646,0.2999812601807672,0.298037182430931,0.2952103303009952,0.2923839126524558,0.2918314647141503,0.2914072864578018,0.2924339009535309,0.292925715350918,0.2938737003478842,0.2950707011807826,0.296190349476672,0.2971338792610931,0.2996250808015513,0.3017017919531162,0.3043046151934903,0.3084141274238227,0.3106583072100313,0.3162177959624118,0.3210415570752236,0.3253185111166625,0.3256995525896716,0.3322014714204867,0.3332936838348995,0.3361162646876932,0.3374283374283374,0.3357300884955752,0.3423149905123339,0.0,2.540978022498066,53.06272706880038,153.44307209907083,222.86071323840636,fqhc1_80Compliance_baseline_low_initial_treat_cost,47 -100000,95752,46903,446.89405965410646,5242,53.795220987551176,4162,43.03826551925808,1557,15.957891218982372,77.34647984393533,79.69742875203153,63.33814763576003,65.07464110139803,77.14841353512735,79.50081078802457,63.26368235247026,65.00251804615557,0.1980663088079808,196.6179640069612,0.0744652832897685,72.12305524245721,221.88474,155.50781306876632,231728.5696382321,162406.8563254724,454.1288,299.95628652421385,473865.6320494611,312853.3153607381,440.58074,214.17262397216547,457248.2245801654,221411.06665906965,2666.43395,1231.9516392523915,2757370.540563121,1259247.9835955296,961.00768,427.2300752518765,989516.1249895564,432057.6857422041,1506.97376,641.5462459445329,1545525.2945108197,646248.0128050168,0.37865,100000,0,1008567,10533.116801737824,0,0.0,0,0.0,38914,405.96541064416414,0,0.0,40001,414.90517169354166,1235815,0,44372,0,0,8718,0,0,87,0.908597209457766,0,0.0,0,0.0,0,0.0,0.05242,0.1384391918658391,0.2970240366272415,0.01557,0.3496068751142805,0.6503931248857195,23.495877876874,4.130549798895024,0.3157135992311389,0.2777510812109562,0.2111965401249399,0.1953387794329649,11.444048810971848,6.177761653025724,16.641141575742257,11661.299988744717,47.438907270780014,14.045484089188047,14.773928816903092,9.711987783062742,8.90750658162613,0.5862566074002883,0.7897923875432526,0.7100456621004566,0.5551763367463026,0.1303813038130381,0.7348353552859619,0.913716814159292,0.8615384615384616,0.6565656565656566,0.1396648044692737,0.5292553191489362,0.7102272727272727,0.660262891809909,0.5256975036710719,0.1277602523659306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046123123397094,0.0068194964532529,0.0089392738871619,0.0111456871478837,0.0132452353803551,0.0155453618756371,0.0179426203574235,0.0200754362114258,0.0222374658298608,0.0243852438011869,0.0268100917619526,0.0289618160508296,0.0308373673910804,0.0326547878212601,0.0346046511627907,0.0365370080859743,0.0385421421753745,0.0404777497115414,0.0421210511514545,0.056574029607667,0.0708529565672422,0.0841988208388409,0.0966280084536364,0.108677089153375,0.1244767220601293,0.1356964066013321,0.1467564806538117,0.1569092151336578,0.1659932912518352,0.1783822769548742,0.1900209788697363,0.2006107434334213,0.2109708790908594,0.2200435250928755,0.2299365806687253,0.2385916403732732,0.247022705036942,0.2556182005876281,0.2630289149728027,0.2691689318142386,0.2747956833354769,0.2800037867133694,0.2839813971328571,0.2887607019248284,0.2935911955879456,0.2976038618343713,0.3018728688482874,0.3053460830806707,0.3084518011061392,0.3068584279346611,0.3034741706552236,0.3011206848003604,0.2988087502707385,0.2964969571025679,0.2933822966873231,0.2901320361362057,0.2904355797089588,0.290399563616528,0.2907152645535603,0.2918176046607162,0.2926502726861058,0.2938312366782296,0.2933553409319028,0.2945069173040496,0.2941590245935807,0.2951808943667985,0.2985467301428213,0.3031319910514541,0.306573084657545,0.3109377126525428,0.3135481140559699,0.318712173207712,0.3236231224396905,0.3282378317546656,0.3361682022206473,0.3459319975713418,0.34431198221863,0.3456106341733592,0.3570035115099493,0.0,1.688881560705153,50.65500652513477,158.7077932944799,220.4728369956792,fqhc1_80Compliance_baseline_low_initial_treat_cost,48 -100000,95742,46884,446.7945102462869,5227,53.35171607027219,4100,42.24896074867874,1560,15.98044745252867,77.41222784566315,79.76815535486418,63.350809200748486,65.08976094087306,77.21767972620673,79.57549670156493,63.27775236228514,65.0196288284204,0.194548119456428,192.65865329924736,0.0730568384633443,70.1321124526686,221.63724,155.1661344947063,231494.03605523176,162066.74768985456,449.35033,297.2515000619885,468755.65582502977,309894.6045857092,436.19677,212.50462047363564,451602.7657663303,218984.21146712275,2674.28914,1243.071403046347,2757703.087464227,1262978.3127860697,944.09656,429.44869868350327,969803.7016147564,432267.5510053093,1523.42074,644.9092257694313,1561122.3705374862,646995.0841266295,0.37919,100000,0,1007442,10522.456184328716,0,0.0,0,0.0,38673,403.313070543753,0,0.0,39564,409.2665705750872,1239792,0,44428,0,0,8704,0,0,77,0.8042447410749722,0,0.0,0,0.0,0,0.0,0.05227,0.137846462195733,0.2984503539315095,0.0156,0.3400476103277788,0.6599523896722213,23.635599060441475,4.141440525152727,0.315609756097561,0.2658536585365854,0.2107317073170731,0.2078048780487804,11.0338174034182,5.79054412064414,16.507826623696015,11704.836936523188,46.54524504989708,13.328910401362045,14.442328710616604,9.535586991374236,9.238418946544204,0.5758536585365853,0.8,0.6978361669242659,0.5787037037037037,0.1009389671361502,0.7491554054054054,0.9264069264069263,0.8549848942598187,0.7238095238095238,0.1325966850828729,0.5054869684499315,0.7070063694267515,0.6438213914849429,0.5321100917431193,0.0923994038748137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0049358941874018,0.00725358113866,0.0094950848972296,0.0116308624528512,0.013752735786634,0.0160425627331471,0.0181627093048172,0.0201530899019938,0.0222415557830092,0.0242272690005739,0.0263201116859653,0.0284665679743399,0.0304515730394933,0.0324517866540092,0.0343897295956338,0.0361998446803002,0.0382835681530512,0.0401305803339363,0.0420638144942029,0.0564261032060048,0.0695384679773576,0.0830151470649939,0.0954284391896156,0.1073022504985281,0.1235145345453391,0.1355889032751045,0.1469382539902254,0.1577293808373763,0.1668580627850818,0.178936473023677,0.1907737289512155,0.2021227955584585,0.2117957476625282,0.2206041111282469,0.2304749018477031,0.23890403611496,0.2468693693693693,0.2541127851133641,0.2604300385109114,0.2670572298572437,0.2727506727506728,0.2790034661019956,0.2842979956416581,0.2892945131497506,0.2939887751083103,0.2981325338829554,0.3020989314992005,0.3061666903234964,0.3101635897772813,0.308028297336406,0.30550232685464,0.3034528180264006,0.3017433421003463,0.3002654475741041,0.297378174747843,0.2946617875708699,0.2952692476687985,0.2956050469980523,0.2959288341822297,0.2974481658692185,0.2985900619903396,0.2993997050453856,0.3022519430482053,0.3019321945059919,0.3024221631800242,0.3040709959149176,0.3074701937406855,0.309944157330651,0.3160096981073048,0.3218194868114121,0.3233043295942971,0.3243293591654247,0.3273599760065981,0.3273666728178631,0.3285864363254348,0.3276557597489914,0.3335974643423138,0.340080971659919,0.3397435897435897,0.0,2.2193349365430817,51.31735524749079,151.08068703616,212.9496817577445,fqhc1_80Compliance_baseline_low_initial_treat_cost,49 -100000,95724,46950,446.9412059671556,5339,54.51088546237098,4295,44.24177844636664,1627,16.547574276043626,77.32373385663094,79.69183676799769,63.321321634088775,65.07430152157264,77.11204852396088,79.48660738889785,63.240574672247234,64.99920355586113,0.2116853326700578,205.2293790998334,0.080746961841541,75.09796571150673,221.47862,155.1733675898464,231370.48180184697,162103.62422359674,450.94829,297.97542479280645,470436.5676319418,310636.9988996278,438.92759,213.79317694842413,455159.5002298274,220749.69199440107,2795.19919,1301.806306981652,2878588.650704108,1319106.064672005,1030.74097,463.5449859454996,1059608.1442480464,467219.7508295276,1594.19126,689.7073575367099,1622692.198403744,682236.0602335118,0.38166,100000,0,1006721,10516.840081902135,0,0.0,0,0.0,38686,403.46203668881367,0,0.0,39774,412.0492248547909,1240494,0,44470,0,0,8727,0,0,94,0.981989887593498,0,0.0,1,0.0104467009318457,0,0.0,0.05339,0.1398889063564429,0.3047387151151901,0.01627,0.3598430813124108,0.6401569186875892,23.240537756807743,4.15198104601286,0.3233993015133876,0.2647264260768335,0.1948777648428405,0.2169965075669383,11.153285277540649,5.856915788645652,17.563337094626487,11738.335619508603,49.24923732585998,14.034998860781808,15.616900185985182,9.1773554485088,10.419982830584186,0.5692665890570431,0.8056288478452067,0.67170626349892,0.5579450418160096,0.1384120171673819,0.7242497972424979,0.9053497942386832,0.8347107438016529,0.7272727272727273,0.136986301369863,0.5068582625734814,0.7311827956989247,0.6140350877192983,0.5163690476190477,0.1388499298737728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0045230054661433,0.0067295980511571,0.0088917342438469,0.0109168972814585,0.0131304179527141,0.0154203891812507,0.0176074678541153,0.0198889491067867,0.0223052895693583,0.0245510762888289,0.0264763274109068,0.0287430817027755,0.0307186579007027,0.0328757225433526,0.0346324821668561,0.0364984671472367,0.0385648921490304,0.040479136555998,0.0427117089893611,0.0574802656308733,0.0716543509660672,0.0846805073277173,0.0974963181148748,0.1093604994516156,0.1248096607732002,0.1364427280057717,0.1471304977067393,0.1574259012016021,0.1669758613663903,0.1792094240273934,0.191546675032725,0.2017986472085082,0.2112802344399247,0.221412932258029,0.23195339668195,0.2414019983941475,0.2496011325588189,0.2575879545119559,0.2644568525595551,0.2718627224404899,0.278535291574655,0.2841270404122785,0.2887973364631488,0.2923116145245292,0.2961867800160168,0.2991977170607157,0.3023711641996207,0.306425702811245,0.3089350478074513,0.3065523460844752,0.3033843951718348,0.3014437636453271,0.2992133954134012,0.2973884867492085,0.2939843522729012,0.2918490196388226,0.2917198912580656,0.2917375910669299,0.2919572953736655,0.2925885782628195,0.2938901168298073,0.2950283882592026,0.2965025269466434,0.297834977146981,0.2993163552865045,0.3003796854035228,0.3055555555555556,0.3104188665962689,0.314445108587368,0.3197605337720501,0.3237820820660583,0.3266325305012959,0.3284665953218162,0.3314896409487203,0.3290689410092395,0.3335857056329497,0.335876330054206,0.3377862595419847,0.3371472158657513,0.0,2.3612957233956573,53.6015064160402,165.73976444590792,220.07748026436064,fqhc1_80Compliance_baseline_low_initial_treat_cost,50 -100000,95783,46846,444.8806155580844,5221,53.3915204159402,4138,42.64848668344069,1559,15.942286209452616,77.38153749659537,79.72451620756337,63.350937847410606,65.0834296732511,77.17567322853044,79.5202952171862,63.27338630282447,65.00906056707811,0.2058642680649285,204.22099037716637,0.0775515445861358,74.36910617299475,221.42956,155.1536231602948,231178.35106438512,161984.50994466114,449.77551,297.2757805338692,468979.5057578067,309765.7314281962,437.79907,213.37922978100076,453617.0823632586,220143.11771894863,2671.46019,1247.543579302811,2753403.150872284,1266796.330562637,928.44639,420.409667772526,954805.487403819,424402.97973108257,1509.38672,647.3530757085565,1543993.7149598573,647764.2062182447,0.38106,100000,0,1006498,10508.10686656296,0,0.0,0,0.0,38578,402.1486067464999,0,0.0,39660,410.7409456792959,1242588,0,44530,0,0,8625,0,0,78,0.8039004833843166,0,0.0,1,0.0104402660179781,0,0.0,0.05221,0.1370125439563323,0.2986018004213752,0.01559,0.3543814432989691,0.645618556701031,23.91344985546584,4.0997214671166695,0.318994683421943,0.2687288545190913,0.2114548090865152,0.2008216529724504,11.291416548553336,6.124267981831914,16.706234409307918,11768.502158969752,47.1185689196453,13.621415956102318,14.899078272296707,9.62286521077622,8.975209480470053,0.5790236829386177,0.8057553956834532,0.6886363636363636,0.5622857142857143,0.1191335740072202,0.7653721682847896,0.9173728813559322,0.8541666666666666,0.7083333333333334,0.1951219512195122,0.4996554100620262,0.7234375,0.6207264957264957,0.5144157814871017,0.1004497751124437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045918057047864,0.0067570309646524,0.0090897088246346,0.0113366004432966,0.0138949682909697,0.0158804582704774,0.0182386021494401,0.0204377771873531,0.0226635561831092,0.0248498760068042,0.0268727802755024,0.0289430392761669,0.0310221984267534,0.0331710537173034,0.0353043280605866,0.0371182880263253,0.0392349953353374,0.0414697235698035,0.0433759526883511,0.0582231452395612,0.0720830021336234,0.0854851391728259,0.0983365383604972,0.1099940988029,0.1250224575420352,0.1366955268484469,0.1482851736088962,0.1583873136478598,0.1676099213239865,0.1799276672694394,0.1912461335467543,0.2017477121057322,0.2121477045471931,0.2215084751355691,0.2307811531308121,0.2399308652988403,0.2480299470530705,0.2552906752557443,0.2626501888087882,0.2689323419558505,0.2748959745663659,0.2802214048325862,0.2860204497018749,0.2908451131468786,0.2958984014471887,0.2999388058396713,0.3039483549580002,0.3077112079556182,0.3117943853824975,0.3093531950363668,0.3071522778479969,0.3042132222566209,0.3014766379422335,0.2998797630887526,0.2969234766395134,0.2932470810981382,0.2933248382670064,0.2946778711484594,0.2959170999166031,0.2953389119779339,0.2966161715522329,0.2980227756225754,0.299551709525615,0.3016898846282732,0.3030712116098549,0.3041827250056677,0.3089882382304308,0.3132655902004454,0.3169108380592312,0.3217725525661316,0.3252719400147851,0.3295019157088122,0.333586510709403,0.3331457512661789,0.3336080047086521,0.3349992427684385,0.3364073777064956,0.3391041494916186,0.3399089529590288,0.0,2.0999288539552525,53.90919506141586,146.19558918261805,217.03813231824807,fqhc1_80Compliance_baseline_low_initial_treat_cost,51 -100000,95859,46725,443.23433376104487,5303,54.17331705943104,4174,42.97979323798496,1600,16.305198259944294,77.37299817448195,79.67317138809767,63.35320242165369,65.05656465827194,77.17881386854526,79.48493328505745,63.279879761565496,64.98824129061205,0.1941843059366874,188.23810304022004,0.0733226600881948,68.323367659886,223.08902,156.24120896582303,232726.21245788084,162990.65185931738,452.05156,298.4039815102157,471001.0849268196,310716.3317465814,434.85475,211.06546848477856,450494.7057657601,217668.18822352705,2703.8747,1244.8795111988532,2787965.803941205,1265960.3792505355,966.29942,429.0345305495785,992749.9243680822,432287.3279260073,1562.73074,653.90208311995,1595240.8433219625,651214.237739056,0.3794,100000,0,1014041,10578.464202630948,0,0.0,0,0.0,38894,405.1471431999082,0,0.0,39470,408.610563431707,1233090,0,44300,0,0,8940,0,0,66,0.6885112508997591,0,0.0,2,0.0208639772999927,0,0.0,0.05303,0.1397733263046916,0.3017160098057703,0.016,0.3456678700361011,0.6543321299638989,23.96219579476962,4.1027901163974265,0.3145663632007666,0.2735984666986104,0.201006229036895,0.2108289410637278,11.065657399963744,5.921265654820626,16.82029862087872,11733.617396957296,47.27952669832679,13.80570891551699,14.660120716519495,9.290776584343703,9.522920481946606,0.562050790608529,0.7810858143607706,0.6732673267326733,0.5744934445768772,0.1,0.7457191780821918,0.9172259507829976,0.875,0.7236180904522613,0.0898876404494382,0.4906852960745176,0.6935251798561151,0.6016511867905057,0.528125,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020559043953818,0.0042567423758703,0.0066035726240832,0.0089962025059399,0.0112030579671837,0.0135688110749185,0.0155229174523253,0.0177264795028013,0.0199143753384626,0.0220905723699019,0.0242815429537421,0.0264910174725804,0.0286319164679766,0.0307562454323681,0.0330711421296248,0.0351315626419926,0.0370692241637956,0.0390657382077426,0.0410596164030779,0.0433950289751032,0.0588713713713713,0.0733975631674643,0.0871464487743557,0.0999401430266626,0.1121829977251664,0.1271444266035662,0.1383216590545423,0.149631582864616,0.1595751494449188,0.1688438333851281,0.1806666164426316,0.1920137500135122,0.2021326318764334,0.2127143107067879,0.2216842545418532,0.2313434488869199,0.2400352517263305,0.2485741605264638,0.2561930039471893,0.2631940469376073,0.2695696413292325,0.2748941545227012,0.2809745246293469,0.2855996550815588,0.2892964208124476,0.2940669514792608,0.2987627137727847,0.3025869192143901,0.3057887588124959,0.3083415759973623,0.3057992465016146,0.3033619800618769,0.3007082611695462,0.2990554319882145,0.2975033748201332,0.2940169895495936,0.2911724290430085,0.2908272645446362,0.2922964324618736,0.2924506470619649,0.2917917824570565,0.2921273163630641,0.293754690235971,0.2946051637559436,0.2959375969084707,0.2966277024930175,0.2979483110405804,0.3035731032542436,0.3069248212105355,0.3106120201384518,0.3135059796780865,0.3185519886512898,0.323590031853101,0.3262153566560654,0.3323342075683776,0.3317313327863087,0.341363012654368,0.3451020408163265,0.3537906137184115,0.3597863410911865,0.0,2.115682159609788,51.04763247549387,151.33010002414352,224.79839086404985,fqhc1_80Compliance_baseline_low_initial_treat_cost,52 -100000,95793,46970,447.4961636027684,5238,53.479899366342,4209,43.35389851032957,1625,16.619168415228668,77.39816222968327,79.72808509859925,63.35848721039546,65.07971574977657,77.17995030728697,79.51147839931086,63.27598139229568,65.00030375776007,0.2182119223962928,216.60669928839127,0.0825058180997828,79.41199201650306,222.81666,156.11365544106548,232602.23607152925,162969.79470427427,452.62728,298.73963423768026,471956.19721691567,311310.17322526727,438.14881,213.08652046395943,453594.95996575954,219582.4530586879,2729.93567,1270.9948491329064,2814402.9939557174,1291388.973236987,969.48601,435.12578447437824,999782.092637249,441954.040978336,1583.98232,678.8307682773407,1621203.0106583987,680918.9880211286,0.3816,100000,0,1012803,10572.828912342236,0,0.0,0,0.0,38855,405.0295950643575,0,0.0,39676,410.4162099527105,1234041,0,44268,0,0,8810,0,0,86,0.8977691480588351,0,0.0,0,0.0,0,0.0,0.05238,0.1372641509433962,0.3102329133256968,0.01625,0.3478021978021978,0.6521978021978022,23.51167746207673,4.184304718798241,0.308624376336422,0.2668092183416488,0.2162033737229745,0.2083630315989546,11.36880529749194,6.017865486622799,17.35113321611246,11732.503535406371,47.86392501044179,13.664368038335422,14.60734003523402,9.981109087651792,9.611107849220566,0.5602280826799715,0.7720391807658059,0.6882217090069284,0.5692307692307692,0.0900798175598631,0.7221311475409836,0.9006622516556292,0.8764044943820225,0.7095238095238096,0.0597014925373134,0.4941451990632318,0.6850746268656717,0.6171792152704135,0.5271428571428571,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748435316278,0.0042565266742338,0.0063506878220995,0.0086928263871963,0.0106236974533624,0.0127628391719421,0.014958985071585,0.0171815696037219,0.019442372725508,0.0215776550030693,0.0236248706574188,0.0255307795712717,0.0276036421186771,0.0300020584602717,0.0319604103304294,0.0339068825910931,0.0359814196004593,0.0381388886008482,0.0400008314020556,0.042154810626178,0.0558668544894871,0.0701047963687326,0.0844306982595932,0.0978265439105393,0.1101681513889621,0.1250607860963697,0.1372734118944834,0.1483968458354173,0.1593771027588195,0.1691009308111354,0.1805609409331782,0.1913924762584636,0.2020405058889999,0.2111726594338282,0.221540761257845,0.2310169303972557,0.2402645195824783,0.2480628001394559,0.2556809802030745,0.2635292231219434,0.2704671600370028,0.2767223540689993,0.2827754367690924,0.2878591799074939,0.2923682006336566,0.297495629047748,0.3015763879339442,0.3063706490106622,0.3095287389042727,0.31239124703401,0.3098085641639648,0.3067337152906585,0.3036907793834161,0.3018244753731881,0.2989483039549696,0.2950929799383187,0.2921928273771941,0.2921342800117789,0.2906943047576837,0.2913566622761738,0.2925936986710467,0.2927291013429569,0.2940562215446305,0.2937748815692903,0.2947619615797637,0.2971592970815406,0.2996498955333446,0.3028564300860671,0.3082479597152283,0.3114908662345315,0.3143502824858757,0.3170040910521347,0.3187488363433253,0.3210081497132508,0.3217148182665424,0.3267092500591436,0.3345938587203146,0.3411243199677614,0.3494638438273302,0.3495072024260803,0.0,2.3160083757824435,52.961279835597104,153.1049343962442,221.1530929702957,fqhc1_80Compliance_baseline_low_initial_treat_cost,53 -100000,95884,46507,441.7108172374953,5295,54.11747528263318,4189,43.17717241667015,1617,16.5616786950899,77.3584022892406,79.6413960953814,63.35300198276878,65.04202914340249,77.14355489140027,79.42739125901777,63.27198928945664,64.96360148693826,0.2148473978403302,214.0048363636282,0.0810126933121395,78.42765646422833,223.5882,156.59633765517216,233186.1415877519,163318.52827914164,450.00687,297.46708755052475,468853.0098869467,309765.1720313345,437.45459,212.41277525694943,453045.1378749322,219086.294296756,2699.29364,1273.770355154149,2783615.4415752366,1296898.9040446258,958.83029,436.7384173500815,987222.7274623504,442719.0848839035,1572.9867,680.3085776468046,1611710.337491135,683600.8993214618,0.3781,100000,0,1016310,10599.37007217054,0,0.0,0,0.0,38729,403.4041133035752,0,0.0,39757,411.4346502023278,1228724,0,44182,0,0,8900,0,0,67,0.6987610028784782,0,0.0,0,0.0,0,0.0,0.05295,0.1400423168473948,0.3053824362606232,0.01617,0.3624052004333694,0.6375947995666306,23.373386200449904,4.1875485592582935,0.3003103365958463,0.284793506803533,0.207209357841967,0.2076867987586536,11.035107694607722,5.797792547640902,17.556257375539914,11647.278313515935,48.39929941695826,14.635003728757052,14.381519187357648,9.645218943982451,9.73755755686111,0.5738839818572452,0.7954735959765298,0.6812400635930048,0.576036866359447,0.1126436781609195,0.7389240506329114,0.917004048582996,0.8498583569405099,0.7835051546391752,0.1300448430493273,0.5025641025641026,0.709585121602289,0.6154696132596685,0.516320474777448,0.106646058732612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024096629509258,0.004802869562574,0.0069174671116024,0.0091685365878422,0.0112522870502134,0.0135153013973274,0.0155772443864868,0.0178693457086031,0.0200320594631571,0.0222556175754973,0.0243330671744159,0.0264301824892351,0.0282131339481954,0.0303151874254207,0.0323481522702446,0.0344126210585004,0.0364328495619161,0.0385962730344298,0.0406679682631994,0.0425722281754908,0.0572959561314804,0.071315140624347,0.0847200259710339,0.0971522177419354,0.1090125771588682,0.1243873066846953,0.1353602577281349,0.1464026711469343,0.1576205877016021,0.1672079836211424,0.1798996489867993,0.1916304324312631,0.2023370835371487,0.2116734069297191,0.2203764374766375,0.2299069350537253,0.2388477494758442,0.2478805459983359,0.2547531536437063,0.2611410241722992,0.2669289516315667,0.2734578805142543,0.2788824804291957,0.2844361290013072,0.288338561042624,0.2927018825096839,0.2966972385104997,0.3000637104994903,0.3035772210040093,0.3070861977789529,0.3059353342501955,0.3029380569980303,0.3009161381254404,0.2988286334056399,0.2967474233703654,0.2936965386148327,0.2907238384990809,0.2895303182139278,0.2904433127114878,0.2905475298733725,0.2909771621115687,0.2907201833050211,0.2921936510595527,0.2937605998393287,0.2946822806680745,0.29545572443845,0.2958121863392781,0.2990315526398001,0.3007395520826065,0.303087661185378,0.3097717804745517,0.3119406128251026,0.3124647843235459,0.3175985334555454,0.3199848885530789,0.3229265967588179,0.3226403454657618,0.3212121212121212,0.3306849315068493,0.3367579908675799,0.0,2.027418547184712,55.49115148023155,156.8424582666417,213.63009829803832,fqhc1_80Compliance_baseline_low_initial_treat_cost,54 -100000,95721,46600,443.727081831573,5280,53.86487813541438,4174,42.90594540382988,1640,16.589881008347174,77.38965647392791,79.7556733248404,63.34469261111818,65.09371710460314,77.18180675797404,79.55426576188796,63.2661745766959,65.02058156860241,0.2078497159538699,201.4075629524399,0.0785180344222808,73.13553600073419,223.27272,156.31864493773037,233253.64340113456,163306.53141706664,451.47446,297.9923156009796,470886.45124894223,310543.7256076417,435.2704,211.448829202071,450559.67864940816,217737.5335708597,2709.92304,1260.0472557278115,2785176.983107155,1270541.936025748,964.92788,431.2127428490671,989667.7949457276,432215.1887115524,1586.76552,674.1698601595572,1607781.9914125428,663640.5433885381,0.37811,100000,0,1014876,10602.438336415204,0,0.0,0,0.0,38733,403.9030097888655,0,0.0,39496,408.41612603294993,1234405,0,44324,0,0,8832,0,0,84,0.8671033524513951,0,0.0,0,0.0,0,0.0,0.0528,0.139641903149877,0.3106060606060606,0.0164,0.3462509012256669,0.6537490987743331,23.70075031460603,4.133396880736771,0.3229516051748922,0.2563488260661236,0.2158600862482031,0.204839482510781,11.32923470127672,6.225787301209089,17.42245143439986,11632.696697723668,47.59466124265178,13.154532808528591,15.292823724550544,9.957609997878556,9.189694711694091,0.5730713943459511,0.8,0.6862017804154302,0.564927857935627,0.119298245614035,0.7383333333333333,0.8956916099773242,0.8536585365853658,0.7216981132075472,0.1292134831460674,0.5063887020847344,0.7329093799682035,0.6230847803881512,0.5166908563134979,0.1166912850812407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.0048356193546424,0.007124082850445,0.009295568604344,0.011504775855229,0.0137367113355871,0.0157726776847707,0.0178846683884402,0.0198912421293646,0.022130551830735,0.0244264950080977,0.026568932417588,0.0287226933950141,0.0308506585112188,0.0327278728429825,0.0347874616314761,0.0365837242293394,0.038573666573293,0.0404406797276931,0.0422297473300338,0.057297974524953,0.0713911914929247,0.0842478544599953,0.0969058715847282,0.1087738546095175,0.123638171394724,0.1355615682529577,0.1464562068268176,0.1564505965159622,0.1661679376213305,0.1785329715294827,0.1906899759839027,0.2015179357813128,0.2110529135821368,0.2196023633742999,0.2290213274865457,0.2373847200383616,0.245754807097985,0.2534071067371142,0.2606317860942988,0.2665109610581815,0.2733200888161738,0.2789521570110243,0.2832367866717732,0.2875133456274871,0.2921364912107932,0.2954230062385137,0.2995156184446393,0.3033716584110397,0.3069188191881918,0.3046008682912405,0.3020703108900825,0.2996485802642676,0.2976214501946086,0.2959383048639687,0.2931331716173128,0.2914755803508108,0.2914898478814389,0.2919731534524253,0.2920328891409129,0.2926149558755225,0.2934714375392341,0.2945797655665475,0.2948328267477204,0.2954756850866942,0.2962934223118905,0.2975225288849967,0.3001092896174863,0.3034591194968553,0.3079084863837872,0.3112525573994089,0.3132574952158197,0.3153237951807229,0.3194392383237124,0.3243666513127591,0.3301106581246359,0.327324620700015,0.3300179033220609,0.3409889219129965,0.3492605233219568,0.0,2.572862864612004,51.73063364958537,157.48551997832593,215.39047629477565,fqhc1_80Compliance_baseline_low_initial_treat_cost,55 -100000,95771,47020,447.3065959424043,5385,55.17327792337973,4305,44.470664397364544,1592,16.299297282058244,77.34687979821054,79.70604622717518,63.33382307926016,65.08105687328215,77.1441679676674,79.50355164057977,63.25657176135724,65.00587071902031,0.2027118305431372,202.49458659540664,0.0772513179029132,75.18615426184283,222.05898,155.47582083793293,231864.53101669607,162341.2315188658,450.18086,297.5086196382956,469585.49038853095,310171.6382185585,438.54932,213.1562386185957,454631.1827171064,220023.9776371711,2768.7193,1295.1034909659556,2862474.9141180525,1323788.0370529245,996.69144,453.9964315918398,1028685.4162533544,462026.3979616378,1549.53216,666.2696410137298,1588506.666945109,671719.1497440292,0.38255,100000,0,1009359,10539.296864395275,0,0.0,0,0.0,38740,404.0158294264443,0,0.0,39815,412.4317382088524,1239060,0,44569,0,0,8761,0,0,72,0.7517933403639933,0,0.0,0,0.0,0,0.0,0.05385,0.1407659129525552,0.295636025998143,0.01592,0.3488122879085551,0.6511877120914449,23.605231546859063,4.065639985142857,0.321718931475029,0.2629500580720093,0.2176538908246225,0.1976771196283391,11.198544488818808,6.025563540424903,17.171793737363217,11771.248763078733,49.217282916551405,13.822291851391658,15.450308986992631,10.490937059277009,9.45374501889009,0.5855981416957027,0.8065371024734982,0.7032490974729242,0.5635005336179295,0.1245593419506463,0.7517674783974863,0.9189765458422174,0.8675675675675676,0.7071129707112971,0.1846153846153846,0.5158311345646438,0.726998491704374,0.6433497536945813,0.5143266475644699,0.1067073170731707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0045227761327221,0.0066395939086294,0.0088112442452513,0.0108244486042158,0.0130445408443819,0.0152105209501478,0.0174254797876684,0.0195865960622354,0.0217266658475652,0.0236730676563765,0.0260182970028646,0.0281668414882458,0.0302855494663974,0.0326126219103152,0.0346093015082129,0.0366477508077209,0.0388198435587277,0.0409255813469994,0.0427461679440186,0.0572812291249165,0.0708480214228182,0.0840742293981966,0.0968806490940429,0.1090782623358556,0.1247926286758878,0.1357378300176998,0.1468924751759477,0.1578543162206269,0.1677680550944123,0.1804246805214922,0.1912656298970075,0.2023096896150879,0.2117247479987331,0.2213897280966767,0.2312475795297372,0.2401066000602134,0.2491708918393272,0.257509219858156,0.2652624103727121,0.271753216699065,0.2780624780624781,0.2842956229434462,0.2880998333712943,0.2920662280595276,0.2970788010040852,0.300361489486785,0.304413596725396,0.3080873412154296,0.3111959957850368,0.3087768817204301,0.3055231080022538,0.3040660236762927,0.301879991926415,0.2998428745071299,0.2976317799847212,0.2953124012887738,0.2954698124027197,0.2953336969118549,0.2960384581144841,0.2965973429003868,0.2968229238566667,0.2968962274009823,0.2977854176898691,0.2985475933261313,0.3007424775302852,0.3023911187019641,0.3072444612286002,0.3134218547454717,0.3176992552685787,0.3228797382056176,0.3292670046472328,0.3336049645834639,0.3325026431052711,0.3355250972402296,0.3376168224299065,0.3409331118828325,0.3492127573677836,0.3417335918028247,0.3417770849571317,0.0,1.9062844023843235,56.01581747507822,155.36637723771642,225.64624150936203,fqhc1_80Compliance_baseline_low_initial_treat_cost,56 -100000,95743,47198,449.160774155813,5435,55.460973648204046,4329,44.52544833564856,1630,16.638292094461214,77.36211040614715,79.72334225478734,63.32787542470121,65.07528164720989,77.1559018007187,79.5197205577389,63.25160324535322,65.0021114293375,0.2062086054284577,203.62169704843325,0.0762721793479883,73.17021787238787,221.78486,155.43051597937165,231646.0315636652,162341.38890506007,451.53477,298.2070776118928,470907.4605976416,310762.3926677593,443.81474,216.15319979590453,458773.4664675224,222142.8130233198,2778.37689,1298.137299757643,2864307.8031814336,1318252.6448488592,1016.39533,460.4311941666301,1049513.87568804,468832.4509719071,1588.39884,668.3881195246454,1624963.4751365636,668923.4798358547,0.38317,100000,0,1008113,10529.365071075692,0,0.0,0,0.0,38820,404.7293274704156,0,0.0,40443,417.5971089270234,1236850,0,44352,0,0,8835,0,0,69,0.720679318592482,0,0.0,0,0.0,0,0.0,0.05435,0.1418430461674974,0.2999080036798528,0.0163,0.3522987493394398,0.6477012506605602,23.391330199478038,4.080415368861013,0.3109263109263109,0.2755832755832756,0.2076692076692076,0.2058212058212058,11.439861608219102,6.171043432582692,17.347032653490004,11824.703748146618,49.637512820866576,14.56191311545746,15.315079611799234,10.088497620588315,9.672022473021562,0.5846615846615847,0.7971500419111484,0.700594353640416,0.5817575083426029,0.1279461279461279,0.7541501976284585,0.9118852459016392,0.8591160220994475,0.7400881057268722,0.1595744680851064,0.514686684073107,0.7177304964539007,0.6422764227642277,0.5282738095238095,0.1194879089615931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024315370353484,0.0046849331737887,0.0070246675464419,0.009256530883892,0.0115558720309241,0.0138407952091905,0.0159586400995248,0.018143020501511,0.0204292389648367,0.0223949373310395,0.0246533759947493,0.0268812786326191,0.0289500216044937,0.0311514601924939,0.0330677455311068,0.0352645617517523,0.0372257256168908,0.0391143758300132,0.0409758531438728,0.0429239534617267,0.0579737375002609,0.0717640782081995,0.0850015205058565,0.0981711869932379,0.1102696887557613,0.1258909875420377,0.1378897009684844,0.1490541734529854,0.1596918770499684,0.1697368703223177,0.1827844666049236,0.1942409453420047,0.2055973112022363,0.2149817895462152,0.2237836886066755,0.2330659635283951,0.2421085541374959,0.2501856226797165,0.2576140836443245,0.2646668193267689,0.271332183735114,0.2772034056886227,0.2821259125167122,0.2866253491410829,0.29162012529746,0.2966978807294234,0.3005844001451614,0.3049202432136769,0.3092015012294551,0.3123977842257979,0.3107682365296066,0.3075431479062092,0.3050199023868798,0.3028658835752835,0.3003900398938142,0.2970882690103171,0.2940897672875491,0.2942437683104469,0.2942717637251399,0.2953810623556582,0.2963736366178801,0.297746960262429,0.2997938058442505,0.3018058088333407,0.3031201434548715,0.3030554331769767,0.3049332428151165,0.30978752613023,0.3110167722179692,0.3147820618637739,0.3178542473651022,0.3201278624954147,0.3220381213404759,0.3255378157559403,0.330188679245283,0.3285999295857293,0.3312188491164476,0.3290412044374009,0.3343187315237839,0.3393267023718439,0.0,2.6840909015564307,54.63839826672034,163.9100453906294,222.0359011602392,fqhc1_80Compliance_baseline_low_initial_treat_cost,57 -100000,95766,46978,447.76851909863626,5111,52.01219639538041,4050,41.76847733015893,1563,15.997326817450867,77.32840490063373,79.68950400337283,63.31625382636724,65.06496705628906,77.12842816316679,79.49202963295731,63.24000076751474,64.99254257170158,0.1999767374669403,197.47437041552016,0.0762530588524939,72.4244845874864,222.00992,155.45441324836275,231825.40776475996,162327.3533909349,447.58229,296.6036483787991,466863.6468057557,309209.94755842286,432.08609,210.57644536656807,448308.8987740952,217676.0988626337,2601.95538,1213.4933664984314,2684469.7700645323,1234621.1666963557,925.82265,418.2987378859647,953751.6550759142,423792.35234901146,1507.58636,642.7210841675153,1544312.9712006347,643105.6747397572,0.38063,100000,0,1009136,10537.518534761815,0,0.0,0,0.0,38492,401.4055092621599,0,0.0,39102,405.40484096652256,1237599,0,44421,0,0,8813,0,0,74,0.7727168306079402,0,0.0,2,0.0208842386650794,0,0.0,0.05111,0.1342773822347161,0.305810995891215,0.01563,0.3579460269865067,0.6420539730134932,23.435508065190817,4.105911718471882,0.3160493827160494,0.2725925925925926,0.2167901234567901,0.1945679012345679,11.031856334457473,5.977237152281376,16.779343073436134,11679.789209284085,46.26425031646224,13.46147974547518,14.334387303628786,9.835225336187165,8.633157931171116,0.5802469135802469,0.792572463768116,0.6890625,0.570615034168565,0.116751269035533,0.7552921253175275,0.8984547461368654,0.8625730994152047,0.7174887892376681,0.1840490797546012,0.5081910073196235,0.7188940092165899,0.6257995735607675,0.5206106870229008,0.0992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002148293019061,0.0045639870991298,0.0066401332087885,0.0090448992865708,0.0115053610302944,0.0135369132985658,0.0155000815793767,0.0177849471147956,0.0199863009497326,0.0222226771621303,0.0242327326403837,0.0263365950324972,0.0281677104865331,0.0300146262076921,0.0319384964656106,0.033935271802611,0.0358987630039853,0.0377710712174481,0.0400195369331171,0.0419739199266758,0.05641844637899,0.0709130844053969,0.0832774096132874,0.0956901082728897,0.1081371577904697,0.1235968120415195,0.1353624264277003,0.1460211368788514,0.156099124118778,0.165392328232405,0.1774799909514935,0.1889134151355796,0.2004809104657868,0.2103616856058534,0.2202824529153411,0.2303329714880702,0.2395482243699917,0.2475124938093737,0.2555715761628501,0.2623033469687074,0.2684800592380049,0.2747152513038801,0.2797599318149533,0.2854812593703148,0.2899408284023668,0.2937827346108818,0.2983080586539666,0.3020809454675123,0.3057338052087789,0.3084923840447718,0.3067739283933648,0.3050980392156863,0.3027732371343216,0.3000259912784821,0.298572425984521,0.2958596190359527,0.2916646884742597,0.2931277909114788,0.2942300800382272,0.2947458503449874,0.2956672832240345,0.2965435745937961,0.2977859240590698,0.2982295958133838,0.2985896607044513,0.2988696463756092,0.2993648633321991,0.3030889839772621,0.3074352548036758,0.3117271796487359,0.3168102476207659,0.3202388434946574,0.3234219166202069,0.3287404522989366,0.3352783180513105,0.3363213038416763,0.3433308214016579,0.3474576271186441,0.3490669593852908,0.355984555984556,0.0,1.988391316217117,51.66026019376239,150.99489197772013,208.6274802329681,fqhc1_80Compliance_baseline_low_initial_treat_cost,58 -100000,95722,47048,448.1832807505067,5295,54.01057228223397,4224,43.45918388667182,1640,16.631495372014793,77.31464774318667,79.68150991564065,63.30648041847581,65.05658254247403,77.10145578279986,79.47383788852973,63.225856870897104,64.98080811259656,0.2131919603868084,207.6720271109167,0.0806235475787033,75.77442987746963,221.9503,155.4843890065479,231869.6851298552,162433.28493611488,452.04057,298.79731955176766,471529.6483566996,311438.8351219005,438.92486,213.66808760015843,454852.5521823614,220248.81848880663,2741.01466,1289.3831624209029,2820414.6695639454,1304055.4876616877,997.87949,452.8995808954159,1022190.8129792524,453144.5770022778,1592.10398,687.3007417366107,1616989.2187793818,678800.685301666,0.38189,100000,0,1008865,10539.531142266149,0,0.0,0,0.0,38873,405.36135893525,0,0.0,39847,412.6115208624977,1233400,0,44265,0,0,8863,0,0,73,0.7626251018574622,0,0.0,0,0.0,0,0.0,0.05295,0.1386524915551598,0.3097261567516525,0.0164,0.3582712910840748,0.6417287089159252,23.277196737679027,4.108128121924733,0.3222064393939394,0.2552083333333333,0.2133049242424242,0.209280303030303,11.234009949548518,6.222663930650669,17.72363316427974,11722.183322161023,48.57923188432724,13.143571699730908,15.627834224066106,10.10353280954087,9.704293150989365,0.5835700757575758,0.7959183673469388,0.7119764878765613,0.5893451720310766,0.1210407239819004,0.7468051118210862,0.9207459207459208,0.8517587939698492,0.7882882882882883,0.1280788177339901,0.5148048452220727,0.7134052388289677,0.6542056074766355,0.524300441826215,0.118942731277533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002279288861875,0.0043292676744634,0.0068515398201343,0.0090946042068895,0.0110585482476219,0.0131830962956925,0.0154966792830107,0.0178064568826448,0.0197595731196205,0.0217231071618688,0.0237868208708847,0.0260596352883193,0.0282869427472278,0.0303551740837291,0.0323189991535746,0.034436059133671,0.0364813088951019,0.0383833143094324,0.0403539418137958,0.0425365670708838,0.0566524322123265,0.0704088254380272,0.0840519502318457,0.0968671455163057,0.1087536513091986,0.1247976811348898,0.136350609788458,0.1478267350980684,0.1583144481977166,0.1679776788109674,0.180271118444466,0.191940097958476,0.2032204996350245,0.2128970037042719,0.2224856115901122,0.2321400812773423,0.2404836743140303,0.2484998872095646,0.2563297618235173,0.2630267253161213,0.2689038602024606,0.2750583023754556,0.2808421352110672,0.28631611795912,0.291175254723634,0.2951478822861935,0.2992792071278406,0.302568473545613,0.3060245016235236,0.3086533646116133,0.3071418001802601,0.303919412912624,0.3016234450769555,0.3002870040526703,0.2989771833202203,0.295729608152149,0.2925552110358793,0.2932341934213118,0.2935190876186573,0.2933566184332454,0.2945885785900002,0.2957327288853848,0.2953327913618077,0.296717227881322,0.2989685787445856,0.3007592837337065,0.3009711494775102,0.3025525525525525,0.3062990752050253,0.310818817395426,0.3152425466261288,0.3204238410596026,0.3249384586252604,0.3288319218738079,0.332425068119891,0.3340033104752897,0.3366957053339446,0.3421967682552669,0.3465455546380402,0.3594470046082949,0.0,2.392963336504845,54.51971593276695,159.99953043552466,214.33851138132812,fqhc1_80Compliance_baseline_low_initial_treat_cost,59 -100000,95825,47083,447.3362901121836,5263,54.07774589094704,4182,43.16201408818158,1630,16.707539786068352,77.3504688262772,79.68257433555758,63.33176974345843,65.06001668444515,77.14539541548483,79.47996502333918,63.25538022847994,64.98731030362846,0.2050734107923659,202.6093122183994,0.0763895149784872,72.70638081668324,221.3992,155.2245685216582,231045.34307331077,161987.54867900672,453.89548,300.8148816454356,473207.7015392643,313457.5336764264,441.29572,214.69084046582773,457999.1442734151,222099.2678746176,2734.90257,1274.3727096155994,2822224.4508218104,1298060.756186381,965.71014,437.0365494953152,993637.735455257,441931.7916350798,1598.5706,667.2489211908581,1638742.5410905296,669165.5291177676,0.38194,100000,0,1006360,10502.06104878685,0,0.0,0,0.0,38990,406.3970780067832,0,0.0,40005,414.93347247586746,1235226,0,44360,0,0,8706,0,0,81,0.8452908948604226,0,0.0,1,0.0104356900600052,0,0.0,0.05263,0.1377965125412368,0.3097092912787383,0.0163,0.3493338200401533,0.6506661799598467,23.667895559482865,4.153716657166412,0.3134863701578192,0.2659014825442372,0.2051649928263988,0.2154471544715447,11.112644578865456,5.713606733186436,17.28884157043107,11764.36163040124,47.935100658088125,13.560258952810113,14.96178874563669,9.64167685409317,9.771376105548145,0.5667144906743186,0.7823741007194245,0.6834477498093059,0.5885780885780886,0.1098779134295227,0.7451923076923077,0.9151138716356108,0.8502824858757062,0.7096774193548387,0.1701030927835051,0.4907975460122699,0.6804451510333863,0.6217345872518286,0.5475819032761311,0.0933521923620933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008752557894,0.0047554830009227,0.006911600527758,0.0092762870467268,0.0115649856581972,0.0136888635391415,0.0159604303707103,0.018023445796912,0.019866466263816,0.0222142601218201,0.0244150037940157,0.0264519838987924,0.0288773023169715,0.0310414435198154,0.0331167491749174,0.0350895320362467,0.0370078984689599,0.0390104760916917,0.0411024391257807,0.0431098202109164,0.0575741453593298,0.0720596384471419,0.0857768648739284,0.0993002437589308,0.1118158352209872,0.1270924923909367,0.1374769387365608,0.1484262814717113,0.1593560852717316,0.1692632436139207,0.1811814073595868,0.1930431398830434,0.2037819461490838,0.2126590024915854,0.2214975473482765,0.2311083541948204,0.2399241240794465,0.2486893913826077,0.2560650266214084,0.2634037972654192,0.2694786039032403,0.2754855078394462,0.281822912970454,0.2869393376848913,0.2911599995140854,0.2951048088779285,0.2994176945714107,0.3026409616462079,0.3059585492227979,0.3089800121458559,0.3073905835096847,0.3050156351163335,0.302998688866645,0.3006316763273153,0.2987537691427892,0.2957390798616425,0.2923710034821146,0.2927925710816885,0.2938698232926247,0.2938050572416991,0.2943484353106025,0.2956653603009236,0.2967363387692885,0.297748551047704,0.2998345442773901,0.3025242819300888,0.3037698412698412,0.3084307961723685,0.3110585452395032,0.3131285246677446,0.3170720700392617,0.31983401617817,0.3222028407675056,0.3240886884629838,0.3290514753793168,0.3325151940158953,0.3352006056018168,0.3368652538984406,0.3420555705422174,0.3452200303490136,0.0,1.864200905927436,54.96280004340231,150.80400118060757,218.64399449277508,fqhc1_80Compliance_baseline_low_initial_treat_cost,60 -100000,95710,47015,447.23644342283984,5332,54.34123915996239,4180,43.01535889666702,1646,16.790304043464634,77.30949638025908,79.67005339732742,63.31695901961641,65.05981941705134,77.0969826705355,79.46172153444249,63.23527563053606,64.98269594460925,0.2125137097235807,208.33186288493263,0.0816833890803536,77.12347244209639,221.2364,155.05944560984793,231152.8575906384,162009.66002491687,451.1402,298.3746128075911,470700.7000313447,311087.7158161018,438.247,214.01761725273585,453885.1844112423,220605.9402484864,2706.39124,1277.0551223542548,2787305.088287536,1293901.9771750646,947.17933,434.027647560796,975103.301640372,438956.8879790022,1591.74562,687.3697883922428,1624955.239786856,685209.0595364345,0.38234,100000,0,1005620,10506.948072301746,0,0.0,0,0.0,38748,404.1688433810469,0,0.0,39773,411.5139483857486,1236982,0,44397,0,0,8637,0,0,85,0.8880994671403197,0,0.0,0,0.0,0,0.0,0.05332,0.1394570277763247,0.3087021755438859,0.01646,0.3535335371336091,0.646466462866391,23.56851269098864,4.181006027039275,0.3019138755980861,0.2684210526315789,0.231578947368421,0.1980861244019138,11.389311664590137,6.141868711569412,17.703680901852888,11748.177743589062,47.94398810641502,13.626588634299662,14.431243186976555,10.759889110149231,9.12626717498957,0.573444976076555,0.7896613190730838,0.6973058637083994,0.5640495867768595,0.1026570048309178,0.740080971659919,0.9177777777777778,0.8490028490028491,0.7245762711864406,0.1616161616161616,0.5035653650254669,0.7038690476190477,0.6388583973655324,0.5122950819672131,0.0841269841269841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394537223645,0.0046224961479198,0.0070915510104699,0.0093442756155033,0.0117318151781629,0.0138121265789286,0.0159200937675177,0.0179958557473434,0.0200421078451412,0.0220343666526798,0.0240779843785235,0.0261931164777394,0.0285969891411648,0.0306587985705605,0.032858233122254,0.0349537634964095,0.0372494022914747,0.0391109543861104,0.0412015383016318,0.0431281447605554,0.0578111946532999,0.0715623986016181,0.0853079077378142,0.097671777399205,0.1092621299840762,0.125454776207801,0.1373350027587963,0.1485862113017927,0.1584761334985684,0.1685861965427015,0.1807367819931256,0.192186501792037,0.2029496598639456,0.2136179529282977,0.2229577170046149,0.2327182808099177,0.2416197371949584,0.2500929566990794,0.2576385969297897,0.2640786939374484,0.2706767787877033,0.276749356424058,0.2824918296783972,0.2870149343249565,0.2906550006076072,0.2953357012480884,0.2990001626769111,0.3020698082945085,0.3057196910796662,0.309138719310764,0.3065453319851702,0.304427459891207,0.3022268605356312,0.3002153583765736,0.2968717475987986,0.293690324755935,0.2905291860870668,0.2915181285012567,0.2924726768946585,0.2923679550698456,0.2936077599954971,0.2955374128091312,0.2954392884115129,0.2974890341061678,0.2984053572288866,0.2999270947247826,0.3011326353028444,0.304609784416481,0.3071968636236348,0.3101448131633982,0.3109087614387967,0.3133160649151557,0.3175209926055897,0.3243632504548211,0.3271518216727545,0.331489762297011,0.3329780755176614,0.3334012635011208,0.3323328785811733,0.3348519362186788,0.0,2.5197416502187053,53.44912382362119,155.51051636542306,215.75413932560065,fqhc1_80Compliance_baseline_low_initial_treat_cost,61 -100000,95737,46494,441.8667808684208,5314,54.39903067779438,4239,43.72395207704441,1600,16.367757502324075,77.40440741590693,79.76058486734556,63.3594678928421,65.09896191836174,77.20011651027941,79.56002724632918,63.28242076054824,65.02575332396515,0.2042909056275164,200.5576210163724,0.0770471322938632,73.20859439658989,221.67684,155.23694106278285,231547.71927259053,162149.3686482581,452.21873,298.85911322006353,471741.9179627521,311553.46754135133,436.93618,212.22080243579867,453005.59867136006,219078.55877842367,2761.50513,1286.2202403089125,2851951.836802908,1310975.1092147366,984.63821,441.3002646892277,1014461.1592174396,446929.3321173925,1555.07216,663.4199338341832,1592751.5589583963,664895.5598237627,0.37906,100000,0,1007622,10524.896330572295,0,0.0,0,0.0,38851,405.2456208153588,0,0.0,39643,410.6667223748394,1241826,0,44491,0,0,9002,0,0,79,0.8147320262803305,0,0.0,1,0.0104452823882093,0,0.0,0.05314,0.1401888883026434,0.301091456529921,0.016,0.3476147614761476,0.6523852385238524,23.662316703994502,4.088186650550552,0.3217740033026657,0.2602028780372729,0.2123142250530785,0.2057088936069827,11.298603561954788,6.141130754276131,17.14137159958163,11708.940606929466,48.464044479412166,13.458554415939496,15.5549713199217,9.999184976864294,9.451333766686668,0.5881104033970276,0.8213961922030825,0.7038123167155426,0.5833333333333334,0.1169724770642201,0.7474267616785432,0.9280898876404494,0.8350515463917526,0.7183673469387755,0.1675675675675675,0.520497311827957,0.7492401215805471,0.6516393442622951,0.5328244274809161,0.1033478893740902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020755920499762,0.0043374714973397,0.006512873577211,0.0086629766922256,0.0108486777220827,0.0129173452768729,0.0151541401273885,0.0177341509953776,0.0199137649174431,0.0221540035814786,0.0240030336882885,0.0263257828456477,0.0285902273031016,0.0304672050098879,0.0326052188986452,0.0345576149766893,0.0367321154881736,0.0387755313741558,0.0406755001299038,0.04271474549261,0.0573096118106454,0.071172924777094,0.0845475238904448,0.0971791448067036,0.1091470613036512,0.1248995474347587,0.1366192102862235,0.1475322573776774,0.1583440170940171,0.168605835737188,0.1801440894259038,0.1915298802194354,0.2026907975593574,0.2124363095628594,0.2218029396233057,0.231497475418549,0.2399285993194622,0.2483641760169091,0.2554062482281567,0.2626633706424958,0.2689974696999457,0.2752664075539526,0.2799216176974018,0.2850880336367328,0.290111273898461,0.2943597429880708,0.2978497577543579,0.3014390497703104,0.3061192873741286,0.3088654860042861,0.3070743646482934,0.3052276559865092,0.3031438596491228,0.300516792145911,0.2986911188345781,0.2957587584230265,0.2922698457753808,0.2927972816231846,0.2925498461695364,0.2932329491982882,0.2934502705728681,0.2941721358323971,0.2937887291618853,0.2941712811617408,0.2948150981282719,0.2969013354077531,0.2979186082634358,0.3022929777556234,0.3060415289902959,0.3113838407678388,0.3140074838826022,0.3175839208670946,0.320413115162073,0.325679439885568,0.3301177998330396,0.3340338587273788,0.3395596051632498,0.3456221198156682,0.3481256890848953,0.3527329925285096,0.0,2.20271065675983,55.305652515961945,151.7909285003537,221.66585210927727,fqhc1_80Compliance_baseline_low_initial_treat_cost,62 -100000,95759,46480,441.5355214653453,5183,53.06028676155766,4078,42.11614574087031,1536,15.716538393258077,77.33232137485312,79.69756836897713,63.31916690730778,65.07079914207704,77.1414581580394,79.50758719282014,63.24818395762421,65.00181486452217,0.1908632168137245,189.98117615699076,0.0709829496835681,68.98427755486125,222.98474,156.11831360691357,232860.34733027703,163032.52290324,449.56463,297.60900831022394,469010.3384538269,310324.8658718491,432.53547,210.43091482296853,448040.1006693888,217031.18729974687,2660.37118,1232.6524886362529,2749649.703944277,1258844.4878955174,941.81456,423.0561840356408,972315.7092283756,430641.2363518171,1498.91724,629.3983249754614,1535735.4817823912,633543.6273434204,0.3765,100000,0,1013567,10584.56124228532,0,0.0,0,0.0,38658,403.22058501028624,0,0.0,39140,405.22561847972514,1233992,0,44297,0,0,8779,0,0,94,0.9816309694127968,0,0.0,1,0.0104428826533276,0,0.0,0.05183,0.1376626826029216,0.2963534632452247,0.01536,0.3502678736375392,0.6497321263624607,23.60499366453418,4.124399223837165,0.3126532614026484,0.260912211868563,0.217999019127023,0.2084355076017655,11.251119174804137,6.013921810657936,16.387741884294996,11599.710067063474,46.7187177430357,12.907172154414171,14.570174381281149,9.9932644839373,9.248106723403078,0.5831289847964689,0.8026315789473685,0.7137254901960784,0.59392575928009,0.1011764705882353,0.7564543889845095,0.9278846153846154,0.8551136363636364,0.7601809954751131,0.1387283236994219,0.5140603566529492,0.7222222222222222,0.6598049837486457,0.5389221556886228,0.0915805022156573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020268352993635,0.0039862459300733,0.0061124197871821,0.0082730303276689,0.0105395946935785,0.0129990525768889,0.0152361915640042,0.0176622528050311,0.0197433669035325,0.0220004095004095,0.0240704480916891,0.0262406833254624,0.0285552699228791,0.0306397791876081,0.0327775828982935,0.0347062167329853,0.0367057020677372,0.0388310233214374,0.0409959575595714,0.04285565507186,0.0574542266018079,0.0719203163908012,0.0852902616812627,0.0976604805215288,0.1097521114286015,0.1250105770858013,0.1360814897342034,0.1473746953199008,0.1576727148456272,0.1665523008963417,0.1783033396874629,0.1893082033194122,0.1996084402871437,0.209122024297696,0.2176553423693011,0.2274181584686749,0.2355428137967962,0.2443987042785801,0.251902855133455,0.2588289164901837,0.2650658153468896,0.2703110383536015,0.2758743036911759,0.2812264207437571,0.2859500922419652,0.290433797544728,0.2951008213218656,0.2986915650406504,0.3022167041721632,0.306031302698145,0.3039007473520081,0.3016690706779312,0.2996948775995163,0.2968094462305907,0.2943156209227849,0.2919710260093524,0.2894491277460578,0.2900553390746259,0.2904663864831294,0.2918699476514369,0.2922973301652042,0.293443302223713,0.2949846340392616,0.2963665580502611,0.2986776105791153,0.3001143094669022,0.3008107035546233,0.304576802507837,0.3086854869665352,0.3116441067046624,0.3143697669155917,0.3205896388991993,0.3260322255790533,0.3291581264708115,0.3342009854048526,0.3309235074626865,0.3298907349199221,0.3323436262866192,0.3348574502420656,0.3379804069329314,0.0,1.85735982853774,51.06871247203918,156.9502349070918,209.99869439900093,fqhc1_80Compliance_baseline_low_initial_treat_cost,63 -100000,95729,46855,445.38227705293065,5334,54.53937678237525,4261,43.967867626320135,1621,16.567602293975703,77.41699606751023,79.76938716793482,63.36600846061516,65.10021473533243,77.21096116147828,79.56649491470773,63.28882463667755,65.02607942265539,0.2060349060319453,202.89225322709115,0.0771838239376094,74.13531267704343,221.38512,155.06744329520623,231262.10448244523,161985.6431146321,451.53491,298.29294857496086,471125.4269865976,311048.11851954163,437.99308,213.0699546759092,454240.1571101756,219926.5167146328,2766.19285,1289.673850060836,2856983.108566892,1314729.8885064889,1004.51179,453.8549718327771,1037267.6304985952,462149.2501320841,1585.63248,673.0009783239234,1623137.335603631,675326.2944318183,0.38094,100000,0,1006296,10511.913840111149,0,0.0,0,0.0,38760,404.3079944426454,0,0.0,39746,411.85011856386257,1242728,0,44600,0,0,8760,0,0,85,0.8879231998662892,0,0.0,1,0.0104461552925445,0,0.0,0.05334,0.1400220507166482,0.3038995125609299,0.01621,0.3528352835283528,0.6471647164716472,23.477115014655336,4.131840820029846,0.316827035907064,0.2644919033090824,0.2088711570053978,0.2098099037784557,11.534126677195465,6.144633495948645,17.314604863032496,11771.334934516191,48.84550664041206,13.860450086325418,15.286812940688913,9.85891430952194,9.839329303875804,0.5766252053508566,0.7976929902395741,0.7014814814814815,0.5584269662921348,0.1275167785234899,0.7575039494470774,0.9032258064516128,0.8671875,0.7373737373737373,0.1702127659574468,0.5001669449081803,0.7147385103011094,0.6356107660455487,0.5072254335260116,0.1161473087818696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023279823478208,0.0046095087580666,0.0068869685167153,0.0096061089166218,0.0120180575890678,0.0137930332457908,0.0158498797243853,0.0182077975096958,0.020295542338586,0.0224866236303927,0.0247059064639094,0.0269812598780763,0.0292354978977991,0.0312033365944081,0.0333515582285401,0.0351540703081406,0.0371566709113685,0.0391105487507648,0.0411963999916858,0.0433038876619859,0.0585324089542265,0.0725891670764498,0.0859052094916392,0.0978851836661724,0.1103084629580806,0.125581641285956,0.1379145763287124,0.1487350865803169,0.1590022966404956,0.1687718470545345,0.1808766055490358,0.1927541405683748,0.2035624239262737,0.2130905834298071,0.2221221243215926,0.2323554139563697,0.2414934522151017,0.2486879516312104,0.2567826491162432,0.2635295194717508,0.2706052372969535,0.2769793419330716,0.2824874116451147,0.2870307208080518,0.29079992722421,0.2946838496855113,0.2986780948573142,0.3033321053367039,0.3071643681577893,0.3103661749209694,0.3081967213114754,0.304269632070291,0.3020207844074756,0.2998108767522774,0.2984895246008665,0.2951012609858616,0.2919710332423521,0.2924183006535947,0.2922211458386444,0.2928361068729376,0.2938471562878153,0.2948655064843336,0.2957251082251082,0.2973817810982774,0.2987307343608341,0.3004941401702325,0.3030756630044906,0.3057249533291848,0.3097511021626688,0.3144829208988587,0.3188978144774043,0.3218836855629556,0.3254357129566458,0.3286123248455627,0.3313593041547145,0.3339530560074367,0.3349332533373331,0.3345864661654135,0.334402566158781,0.3432062199185486,0.0,2.02898601504062,55.42604627232878,160.48943469493992,215.1528236437936,fqhc1_80Compliance_baseline_low_initial_treat_cost,64 -100000,95684,46820,444.8497136407341,5322,54.450064796622215,4213,43.33012833911626,1607,16.282764098490865,77.3508434030137,79.74157648260838,63.31502979323547,65.08298400883126,77.14288190746622,79.53898331796285,63.23676264322908,65.00967942824096,0.2079614955474795,202.5931646455348,0.0782671500063898,73.3045805903032,222.68664,155.9301708142385,232731.3239413068,162963.68338932164,454.33312,300.3464710227887,474148.1961456461,313215.7006634221,441.68634,214.82380601892143,457570.68057355465,221349.58227803008,2742.20168,1284.5640727726436,2819994.5445424523,1296607.5548395172,993.9326,449.1884716825495,1017804.0320220728,448491.4117469482,1565.54926,671.2631183364211,1587584.110196062,661115.4131681258,0.38016,100000,0,1012212,10578.696542786673,0,0.0,0,0.0,38985,406.7137661469002,0,0.0,40132,415.3254462606079,1229449,0,44142,0,0,8745,0,0,83,0.867438652230258,0,0.0,0,0.0,0,0.0,0.05322,0.1399936868686868,0.3019541525742202,0.01607,0.3514440433212996,0.6485559566787004,23.6760291139537,4.066020665946442,0.3156895323997151,0.2627581295988607,0.2148112983622122,0.2067410396392119,11.12312204324351,6.015634968316214,17.232731953012202,11696.641410328211,48.0995770162609,13.450460499591635,14.899125818892704,10.15624430487814,9.593746392898424,0.5831948730121054,0.8003613369467028,0.6977443609022557,0.585635359116022,0.1297359357060849,0.7427626137303557,0.9066059225512528,0.8490028490028491,0.729957805907173,0.1593406593406593,0.5189747003994674,0.7305389221556886,0.6435137895812053,0.5344311377245509,0.1219158200290275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0043808500065915,0.0065070196631779,0.0086592405886657,0.0109768255712222,0.0131924777408773,0.0156178273776127,0.0180055967481667,0.0204027367279941,0.0227053931709715,0.024643626294739,0.0268482570201926,0.0289749233712534,0.0311662888934679,0.0334062622551549,0.035354318498992,0.0377100470339597,0.0397629377452099,0.0417832513340059,0.0437492833540074,0.0578767051745388,0.0719244421641205,0.0848658521224335,0.0975530213768725,0.1099390282495411,0.1249299127215022,0.136790600422429,0.147220122035631,0.1566030677141788,0.1662875048289479,0.1785363960720483,0.1899276837136794,0.2006833440332531,0.2100205752309241,0.2199456108866306,0.2296143525602643,0.2391559202813599,0.2482773374166816,0.2550885960926851,0.2614093613508959,0.268013662942164,0.2738056206088993,0.2794431279620853,0.2850014394012091,0.2897426859358477,0.2950520672869554,0.2991208214004327,0.3031801940414277,0.3072257213434901,0.3103561961782431,0.3074717671920638,0.3044249247391645,0.3024498635839451,0.299463544070143,0.2974845653879751,0.2941715262724025,0.2917120444465489,0.2923680981595092,0.2920797138477261,0.2922855262455753,0.292763526380643,0.2930410851189306,0.2936940686784599,0.2946311557342455,0.295325271258544,0.2962703962703962,0.2971204557633189,0.3019044062733383,0.306807919416464,0.310781744945446,0.314229425987284,0.3169401772138625,0.3192295744019882,0.3230155143846965,0.3249581239530988,0.3261585509291931,0.3295094339622642,0.3296595158433379,0.3295029396044895,0.3310580204778157,0.0,2.6687212463957897,52.16569708956057,159.08846912816824,217.95038670608477,fqhc1_80Compliance_baseline_low_initial_treat_cost,65 -100000,95714,47147,449.2028334412939,5323,54.14046012077648,4220,43.37923396786259,1670,16.935871450362537,77.26691653433518,79.62593756479343,63.2951211478972,65.03875877663639,77.04642173204749,79.41175419546076,63.21166941742497,64.9608186038619,0.2204948022876891,214.18336933267312,0.0834517304722268,77.94017277448972,221.60776,155.29698601803446,231531.1866602587,162251.06673844418,450.14685,297.73132975814684,469566.9703491652,310327.75602870743,440.62617,214.9996088112971,456246.17088409216,221338.8236888029,2766.29206,1305.905444748765,2844923.4385774285,1319436.728259183,983.08439,456.8383345573112,1008313.266606766,458654.2876622311,1633.3511,705.7599903995466,1658849.8443278936,697068.4689608163,0.38286,100000,0,1007308,10524.144848193577,0,0.0,0,0.0,38649,403.03403890757886,0,0.0,39928,413.1579497252231,1233595,0,44350,0,0,8701,0,0,74,0.7626888438472951,0,0.0,2,0.0208955847629395,0,0.0,0.05323,0.1390325445332497,0.3137328574112342,0.0167,0.354960460100647,0.645039539899353,23.60128987969092,4.138606778019232,0.3109004739336493,0.2597156398104265,0.2097156398104265,0.2196682464454976,11.308872425438135,6.082026721614552,18.05273644140365,11784.65894977164,48.72923591969101,13.509168115353846,15.02549285671117,9.90699878621785,10.287576161408142,0.5725118483412323,0.7874087591240876,0.7217987804878049,0.5740112994350283,0.1057173678532901,0.7317262830482115,0.9107142857142856,0.8647214854111406,0.6929460580912863,0.1818181818181818,0.5027266530334015,0.7021604938271605,0.6641711229946524,0.5295031055900621,0.082036775106082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024308228335291,0.0047146376826288,0.0069204854487153,0.0091222153371054,0.0115330634827004,0.0137863622941973,0.0159335338192568,0.0180479986933575,0.0203224190630015,0.0227440222731739,0.0246225128904287,0.0266110900074946,0.0289783536428608,0.0308895023071852,0.0330757564815483,0.0347832378904715,0.0367002878860054,0.0385225916895782,0.0404781704781704,0.0422406068310167,0.0570569316235746,0.0709268854346574,0.0847439839642343,0.0974262384780504,0.1095413444190046,0.1256098464404017,0.1376348424360825,0.1486988847583643,0.1592732017196757,0.1709215442092154,0.1832001811301226,0.1940311446808049,0.2046417408161709,0.2147637040687804,0.2238519775630076,0.2331764392442441,0.2430552449116528,0.2516253337990558,0.2586226483686267,0.2658947609767282,0.2718351097686584,0.2785730170062852,0.2839093933904065,0.2895125022486058,0.2933432204420024,0.2971322849213691,0.3008922753020202,0.3041357262039714,0.3066887984023653,0.3092715319390981,0.3066655859068925,0.3044282735670592,0.3019545216862873,0.2996278544433021,0.2970381070093666,0.2943821949347659,0.2910626677039836,0.2920515733833917,0.2929374271811391,0.2928134282953366,0.2936220516765804,0.2944635856005703,0.2940842702532311,0.2948358911168365,0.2960827825751362,0.2978139935751782,0.2984306663236429,0.3034800732647003,0.3069615766340564,0.3098710377244787,0.3121442996144666,0.315397395358808,0.3196306602580319,0.3237986270022883,0.3254259625341241,0.3290375975407897,0.3289614152813787,0.3293051359516616,0.3329676357652221,0.3379737045630317,0.0,2.689693292485249,55.80215409686179,155.11702596412454,216.2219725426829,fqhc1_80Compliance_baseline_low_initial_treat_cost,66 -100000,95697,46741,444.4130954993364,5226,53.335005277072426,4166,42.90625620447872,1591,16.22830391757317,77.288290147924,79.65825365900444,63.294707477804174,65.0441445683827,77.08800925955994,79.46239446650026,63.21917735050843,64.97305605997363,0.2002808883640625,195.8591925041873,0.0755301272957424,71.08850840907621,222.89696,156.09149300575103,232919.4854593143,163110.12153542018,454.04416,300.76758319428524,473812.7214019248,313646.4974453811,436.78178,213.460572130472,452484.97863046906,219885.3315672183,2715.63656,1273.047507629462,2797341.693052029,1290075.436444497,958.50725,438.3304136975776,982840.4965672904,439301.680319257,1545.33878,654.7237698214541,1577663.7303154748,651691.5722113916,0.38029,100000,0,1013168,10587.24933905974,0,0.0,0,0.0,39029,407.1600990626665,0,0.0,39672,410.65028161802354,1224539,0,44032,0,0,8773,0,0,76,0.7941732760692602,0,0.0,0,0.0,0,0.0,0.05226,0.1374214415314628,0.3044393417527746,0.01591,0.3559104258443465,0.6440895741556535,23.51774610045324,4.14422986815997,0.3101296207393182,0.2698031685069611,0.2174747959673547,0.2025924147863658,11.386256741988708,6.069779716914892,16.964682746273343,11681.457610330504,47.87097444554672,13.914349122767232,14.755573032143996,9.954425683190042,9.246626607445444,0.5758521363418146,0.791814946619217,0.6904024767801857,0.5706401766004415,0.1184834123222748,0.7408610885458976,0.8928571428571429,0.8477011494252874,0.7387387387387387,0.1513513513513513,0.5066439522998296,0.7175925925925926,0.6324152542372882,0.5160818713450293,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812890549833,0.0045518597743331,0.0067175386613629,0.0092342388102155,0.0113599381661378,0.013552729383254,0.0159050590322383,0.0182514163221558,0.0203722822475952,0.0226270275802077,0.0247606944472912,0.0267188109461928,0.0290761037198494,0.0311219130398961,0.0331610813710018,0.0350137450652115,0.0371290716696693,0.0391656288916562,0.0413247209827232,0.0432417221649001,0.0574442529636012,0.0711256766519731,0.08432343927117,0.0969300230485071,0.1090373592036229,0.1236765204133491,0.1358259355222359,0.1469193807864821,0.1579915315854753,0.1676777872029721,0.1799585930255127,0.1914047688690998,0.2024482416876313,0.212570752909491,0.2217718842239746,0.2307000998557639,0.2398085824817191,0.2486047691527143,0.2564779216052051,0.262242941291293,0.2675140030847375,0.2729745255038042,0.2792954154557855,0.2845956138454517,0.2888134107592856,0.2937645881960654,0.2970585282602148,0.3004449998087393,0.3036558134704263,0.3079038891313259,0.3056820938569772,0.3034286974257207,0.3013300200491345,0.2983131832331861,0.296094459582198,0.2925505824647456,0.289414521389443,0.2897240723120837,0.2896777941025729,0.2905281193667565,0.2919148776741224,0.2924291777711973,0.2928335217045502,0.2944371480088151,0.2966510605771068,0.297286811680418,0.2980066821450818,0.3023335835835836,0.3054342128254412,0.3083794466403162,0.3116936216609122,0.3171829494307651,0.3200649878147847,0.3233207547169811,0.3273600591169407,0.3281704902759986,0.3346326836581709,0.341593973037272,0.3454157782515991,0.3390334572490706,0.0,2.4199545873554604,53.556238630737255,158.49959104679235,210.49597256569731,fqhc1_80Compliance_baseline_low_initial_treat_cost,67 -100000,95826,47184,448.21864629641226,5288,53.95195458435081,4163,42.806753908125145,1609,16.394297998455535,77.36488025655099,79.67995852610555,63.35773544642036,65.07130784641713,77.16557288333956,79.48456004430015,63.28234930665879,64.99969250167422,0.1993073732114254,195.3984818053982,0.0753861397615693,71.61534474290931,221.84844,155.3681597180859,231510.5921148749,162134.5834325611,452.01444,299.7729801770357,471044.93561246427,312172.97264733544,441.66474,215.12279955915537,456934.4228080062,221390.56803446455,2699.64775,1264.6835312624653,2778152.6725523346,1280775.1735264594,970.26837,433.4738023027627,996242.7629244672,436260.4637419485,1563.53264,664.4854626694616,1595043.7459562125,662248.8687822325,0.38175,100000,0,1008402,10523.208732494311,0,0.0,0,0.0,38773,403.9196042827625,0,0.0,40069,414.229958466387,1239020,0,44519,0,0,9049,0,0,85,0.8765888172312317,0,0.0,1,0.0104355811575146,0,0.0,0.05288,0.1385199738048461,0.3042738275340393,0.01609,0.3518451519536903,0.6481548480463097,23.53438047934151,4.182754488141335,0.3197213547922171,0.2627912563055489,0.2121066538553927,0.2053807350468412,11.5803602463854,6.284042254412752,17.26990841607271,11765.627836551806,47.88980282431545,13.295466715898256,15.264049026431586,9.906021059270632,9.424266022714985,0.581791976939707,0.7787934186471663,0.7077385424492862,0.5990939977349944,0.1157894736842105,0.7518014411529224,0.9002267573696145,0.8831168831168831,0.7436974789915967,0.1351351351351351,0.5089224433768016,0.6967840735068913,0.6363636363636364,0.5457364341085271,0.1104477611940298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0044507076523784,0.0067680006494033,0.0090297810100353,0.0114702921467139,0.0137355923919683,0.0159840159840159,0.0182330481654654,0.0204551030421982,0.0224474128665745,0.0248124461935801,0.0266209642659222,0.0286953483113733,0.0309286839098796,0.0330058858091183,0.0351302803815501,0.0370297582722204,0.039227469589904,0.0411280358014308,0.0433108958686628,0.0578443438536473,0.0721691506929492,0.0857068035405646,0.0987367824178593,0.1109870783617848,0.1269006588950836,0.1387014417831075,0.1496619610511098,0.1597345935163159,0.168664246007519,0.1810426438314901,0.192804946599213,0.204747935680139,0.213863678560117,0.2232601074760706,0.2327247796711377,0.2415256597342126,0.2498315817838857,0.2579932974050088,0.2647334491587417,0.270103330831842,0.2757276567934085,0.2804644679644679,0.2849558791878901,0.289515835456862,0.294237822137987,0.2993402144303101,0.3021324155098619,0.3061543631100082,0.3103643447585952,0.3079713552513133,0.306127774115579,0.3033134013366163,0.3007938799076212,0.2976132127315124,0.2946335639502847,0.2909983374237986,0.2912937080164895,0.2916253462367062,0.2923513861103172,0.294207116702657,0.2938438378956542,0.2942311321743871,0.2968791916301529,0.2981409611422548,0.2987532467532467,0.2993630573248407,0.3035848348348348,0.3065310829227382,0.3103694307911844,0.313960373491232,0.3185661862468755,0.3242115907223661,0.32919017843526,0.3296930898135944,0.3328611898016997,0.3380647130647131,0.3485401459854014,0.3448840381991814,0.3462857142857143,0.0,2.4002703614497576,54.41116156084287,152.4460586241608,215.57729314847515,fqhc1_80Compliance_baseline_low_initial_treat_cost,68 -100000,95630,46879,446.6276273136045,5324,54.34487085642581,4267,43.96110007319879,1613,16.46972707309422,77.2563444549925,79.66735220247206,63.27473565930678,65.05610093977454,77.04813656829077,79.4626765163785,63.195433497597165,64.98070329111407,0.2082078867017287,204.6756860935659,0.079302161709613,75.39764866046994,221.463,155.19238763008,231583.1851929311,162284.20749773085,450.56098,298.5065326601091,470498.3164278992,311495.44354293536,441.83411,215.847300745546,457800.9411272613,222456.32462407183,2738.23744,1287.4400194716388,2825919.7218446094,1308825.2739429455,971.16725,444.3785916032825,1001781.0519711388,450919.754892065,1563.64044,671.0482579730032,1599670.5218027816,671002.5433419191,0.38038,100000,0,1006650,10526.508417860505,0,0.0,0,0.0,38671,403.7122241974276,0,0.0,40105,415.2253476942382,1233611,0,44295,0,0,8843,0,0,77,0.7947296873366099,0,0.0,0,0.0,0,0.0,0.05324,0.1399652978600347,0.3029676934635612,0.01613,0.3517154661397521,0.6482845338602479,23.689964281538256,4.118328800587616,0.3126318256386219,0.270681977970471,0.2177173658307944,0.1989688305601125,11.222164315079722,6.142068701548919,17.38019986659319,11788.885953687712,49.13942669527084,14.09713096944549,15.213838918146909,10.473623588917851,9.354833218760598,0.5819076634637919,0.8216450216450216,0.6784107946026986,0.573735199138859,0.1130742049469964,0.7538461538461538,0.9285714285714286,0.8567839195979899,0.6872427983539094,0.1639344262295081,0.506572295247725,0.7466863033873343,0.6025641025641025,0.5335276967930029,0.0990990990990991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219020610725,0.0046623354246272,0.0070733415196013,0.0091432751211483,0.0114558958184962,0.0137933844727646,0.016035580218704,0.0180432383832604,0.0203444960415686,0.0224967730038723,0.0245854539484485,0.0268220495745468,0.0287120252838774,0.0307960368273999,0.0330248125116211,0.0349644560797177,0.037049323077561,0.0390065028151164,0.0408432970166182,0.0425689489715024,0.0571052329044866,0.071006537043245,0.0848468305792932,0.0976631578947368,0.11026098335743,0.1260212504762307,0.1383354738730323,0.1500915906960893,0.1603138294460953,0.1696572299371123,0.1825964140548349,0.1940300124600465,0.2049125864604324,0.2143741712056286,0.2232969020546359,0.2332241771660098,0.2417734827640203,0.2492785968709139,0.2574793125397835,0.2649518717804573,0.2715412269511771,0.2770150653613928,0.2820458076836399,0.2871323970711799,0.2924279124116021,0.2968213588875991,0.3008249335539842,0.3040717982713342,0.3071244145161081,0.3104710312479355,0.3079320113314447,0.3055923412238592,0.303587323565565,0.3016565457470398,0.2999522914989415,0.2973862238622386,0.2939401638823604,0.2934503424657534,0.2942984188026851,0.2949511254596,0.2950177868960454,0.2946547309501597,0.296000504403018,0.2958020386266094,0.2961120722798923,0.2976010823749805,0.2981226675782696,0.30171034049898,0.3053336589109429,0.3103339634530561,0.3131436314363143,0.3171515918195235,0.3212318477716575,0.3225854941751221,0.3238985069158193,0.32372428222713,0.3252044609665427,0.3298460323726806,0.3327991452991453,0.3298969072164948,0.0,2.561294665401693,56.53791955246453,154.2204777025392,220.682281388571,fqhc1_80Compliance_baseline_low_initial_treat_cost,69 -100000,95692,46749,444.9692764285416,5256,53.80805082974544,4097,42.22923546377963,1599,16.375454583455255,77.32722884548278,79.70298331790289,63.32110870231941,65.07551569011596,77.12464116835719,79.50155300538904,63.24652119452672,65.00326961086263,0.2025876771255923,201.43031251384969,0.0745875077926925,72.2460792533326,220.86086,154.8250244760346,230803.89165238471,161795.15996743154,446.5941,295.5920435110755,466027.8706683944,308235.50126938184,435.86157,212.79694445950904,450980.029678552,219032.50141832748,2659.97907,1236.442536462417,2744513.4075993816,1257802.2650012136,939.10233,425.015104071095,966829.7036324874,429790.3778516893,1555.2357,652.7597138245198,1594320.3820591064,657059.2017896599,0.37967,100000,0,1003913,10491.085984199306,0,0.0,0,0.0,38380,400.46189859131385,0,0.0,39541,408.769803118338,1242417,0,44567,0,0,8746,0,0,76,0.7733143836475359,0,0.0,1,0.0104501943736153,0,0.0,0.05256,0.138436010219401,0.3042237442922374,0.01599,0.3436988543371522,0.6563011456628478,23.791863432345245,4.206380034167374,0.3107151574322675,0.2694654625335611,0.2064925555284354,0.2133268245057359,11.252376334434436,5.956430253065531,17.063892335454693,11739.902588333423,46.90882536001647,13.56915634381991,14.443399295321491,9.425373228037936,9.47089649283712,0.5740785940932389,0.8061594202898551,0.6967792615868028,0.5685579196217494,0.1075514874141876,0.7655055225148684,0.9319148936170212,0.8625730994152047,0.7121212121212122,0.1616766467065868,0.4969178082191781,0.7129337539432177,0.635875402792696,0.5246913580246914,0.0947666195190947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.004712630864185,0.007081262047276,0.0092223000903947,0.0114702921467139,0.0135623593617952,0.0158974568147982,0.0179138623063331,0.020013089808357,0.0220581458459206,0.0243257101835709,0.0264060638428988,0.0284917867538906,0.0304997424008243,0.0324161988110964,0.0344267720118306,0.0365804386337501,0.0387969518905338,0.0408670598391945,0.0427771813339726,0.0577814915395863,0.0716162049586084,0.084969582546675,0.0983610006522333,0.1110021303971819,0.126635568389765,0.138424643724997,0.1494309168148377,0.1597231124214844,0.1692032133166018,0.1811945377789265,0.1931102404813957,0.2036148902156536,0.213439037725533,0.2223567082228408,0.2321104169435952,0.2407016839074688,0.2493167017220241,0.2567168920758827,0.263262174171973,0.2697360045368795,0.2754328497894244,0.2812104285257814,0.2866317593069651,0.2903343376421421,0.2942126348228043,0.29825879054164,0.3016773996487387,0.3048388768003315,0.308505443747938,0.3072030186645105,0.3054626992970437,0.3024805262490668,0.3000447504799849,0.2973928544900839,0.2948788715118062,0.2920063961496446,0.2921913120364154,0.2928544668097135,0.2932759815858232,0.2950027969420101,0.2951719524671441,0.2955289895892011,0.2950450952009798,0.2961523699865668,0.296903460837887,0.2965954663101908,0.3005204088030597,0.306133854967165,0.3087250980236841,0.3117765016862638,0.3170991067630795,0.3186058237741082,0.3215431627196333,0.3237185549460942,0.3283493532692536,0.3311906948270585,0.3331987891019172,0.3378119001919386,0.3368861819566044,0.0,2.2433064650054493,51.12688252112939,154.7801752019918,213.6691178438342,fqhc1_80Compliance_baseline_low_initial_treat_cost,70 -100000,95784,46864,444.3644032406247,5363,54.78994404075837,4261,43.95306105403825,1651,16.933934686377683,77.38146625236273,79.70480928075938,63.35451413110488,65.06785880592544,77.17427387283136,79.49913258504027,63.27669206460852,64.9928238362724,0.2071923795313637,205.67669571910585,0.0778220664963598,75.03496965304635,221.22474,154.96456058918957,230962.10223001757,161785.4345080489,449.78208,298.1885962656724,469029.4308026393,310776.7875686353,445.14242,217.61284858563732,461647.1331328824,224743.3787739471,2756.83655,1288.7977804188731,2845333.83446087,1313550.2914129505,963.6673,433.1037351937466,994611.1981124196,440761.62363069097,1602.98896,678.0169016361375,1645529.9423703332,683418.0929161351,0.38013,100000,0,1005567,10498.277374091704,0,0.0,0,0.0,38556,401.9460452685208,0,0.0,40278,417.387037501044,1239124,0,44493,0,0,8866,0,0,98,1.0231353879562348,0,0.0,0,0.0,0,0.0,0.05363,0.141083313603241,0.3078500839082603,0.01651,0.3556425774296903,0.6443574225703097,23.60286708124687,4.162788359950389,0.3142454822811547,0.2741140577329265,0.2086364703121333,0.2030039896737855,11.402535127174888,6.174172708432681,17.551893716236364,11743.046995469123,48.65260445474712,14.190455375244062,15.242185186981622,9.908896877849612,9.311067014671814,0.5679417977000704,0.7799657534246576,0.6923076923076923,0.5579302587176603,0.099421965317919,0.7507861635220126,0.9042769857433808,0.8608247422680413,0.7207207207207207,0.0994152046783625,0.4901304784208765,0.689807976366322,0.6235541535226078,0.5037481259370314,0.0994236311239193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161128323512,0.0042867566581539,0.0065631308264269,0.0088553091234056,0.0114085838917303,0.013844493759798,0.0161651989562948,0.0183879427341095,0.0206170821413976,0.0229783925356032,0.0250481498176453,0.0269832150038987,0.0289287622805935,0.0311705423962611,0.0332790366811686,0.0356183906146728,0.0378215608766737,0.0398623220709746,0.04211335494058,0.044051808508423,0.0587633707278893,0.0723119742183903,0.0857376584966806,0.0986796459432752,0.1113664635560522,0.1268852459016393,0.1385173478154799,0.1491345723957335,0.1590190549431769,0.1687215884724247,0.1805791796748842,0.1925743270281085,0.2036473172535287,0.2128034305842714,0.2214568661971831,0.2310922507589691,0.2399223032183882,0.2483570399711919,0.256404142253713,0.2633165598743709,0.269330986323262,0.2747049456725365,0.2807989675463834,0.2857468123861566,0.2900828252896456,0.2949733331691034,0.2985158604133585,0.3033823548104178,0.3068400957742833,0.3096577806475417,0.3069538560826073,0.3034497912546693,0.3010690673793783,0.298731690405339,0.2967387266919248,0.2950089535791358,0.2920931261056356,0.2927228395162742,0.2928548323941504,0.2926920275048418,0.2931886408979881,0.2928056281565036,0.294210844503742,0.2952930431489608,0.2955573099834924,0.2967092809169411,0.2964567932704562,0.2996506986027944,0.3024220247429866,0.3063586097946287,0.3119880526768339,0.3151556583929322,0.3199403837794199,0.3212248574001801,0.3245441795231416,0.3271060979908354,0.3281579740729575,0.3359375,0.3463945578231293,0.3374092472296522,0.0,2.0223327750627536,55.54256039912706,154.30099528568834,220.62994486773428,fqhc1_80Compliance_baseline_low_initial_treat_cost,71 -100000,95755,46804,444.5720850086158,5345,54.54545454545455,4216,43.444206568847584,1574,16.030494491149287,77.31912755708531,79.66930732103124,63.32066847763053,65.05839008567744,77.11563172986331,79.47064978582411,63.243055212249935,64.98539694179605,0.2034958272219995,198.6575352071327,0.0776132653805987,72.99314388139067,223.01334,156.25081958607382,232899.9425617461,163177.71352521938,454.0467,300.0461483616607,473578.8940525299,312751.2071031911,436.5697,212.42704503988008,452680.40311210905,219179.40605635155,2736.07525,1266.6486579796394,2820050.075714062,1285481.027601316,990.99437,446.1569866055944,1017357.9134248864,448366.8598042854,1535.5367,660.2375691703427,1565186.423685447,655720.4327785699,0.37971,100000,0,1013697,10586.361025533915,0,0.0,0,0.0,39033,406.9970236541173,0,0.0,39538,409.6600699702366,1229080,0,44149,0,0,8694,0,0,88,0.9190120620333142,0,0.0,1,0.0104433188867422,0,0.0,0.05345,0.1407653209027942,0.2944808231992516,0.01574,0.3508425959125134,0.6491574040874866,23.69673317581776,4.092420504176281,0.3164136622390892,0.2639943074003795,0.2063567362428842,0.213235294117647,11.119089749234083,5.811035985917149,16.778770443939415,11707.381951497036,48.00043805488658,13.562408256310627,15.001985772109276,9.687390842475365,9.748653183991308,0.5768500948766604,0.821203953279425,0.6941529235382309,0.5678160919540229,0.1090100111234705,0.7502102607232969,0.9241071428571428,0.8980169971671388,0.6666666666666666,0.1358695652173913,0.5087545424512719,0.7518796992481203,0.6207951070336392,0.5375375375375375,0.1020979020979021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020152102806104,0.0041954215182561,0.0064830972768962,0.0089378212029494,0.0113189126521646,0.0135651217500229,0.0156105021667091,0.0175734182902422,0.0195294526640831,0.0218978102189781,0.0239613665258581,0.0261320464113358,0.0279326161630705,0.0302352892698203,0.0322331018685706,0.0345390657296403,0.0366164230402915,0.0387112835300707,0.0410228701461985,0.0433165996625492,0.0575457714870253,0.0716661785011925,0.0847676284572543,0.0974447949526814,0.1096364077209331,0.1248149558008712,0.1358039095064858,0.1468976451684986,0.157244457733544,0.1664111333883712,0.1792441653832484,0.1915704250506012,0.2028457362907524,0.2124188009886048,0.221716071389274,0.2314712266867496,0.2397298504130386,0.2482164960054011,0.256098529996027,0.2630276931534462,0.2692699529972909,0.2749054814884178,0.2802454220263899,0.2852806009191375,0.2903645516671125,0.2951230347755263,0.2993261185430131,0.3033151211808607,0.3071728535877229,0.310363487580181,0.3076301543268065,0.3055009147557671,0.3035898014122422,0.3005495300072306,0.2982216345511001,0.2950859837986003,0.2926118824106761,0.2927437344180553,0.2934786316040793,0.2932102622699112,0.2936659549762145,0.2938611204293861,0.2943825402144772,0.2958996601681273,0.2969376726311997,0.2975174352034974,0.2977107919806626,0.3007144200037601,0.3042823628278301,0.3074191002367798,0.3088794351918899,0.3111252115059221,0.3127352572145546,0.315561631351105,0.3199925016402662,0.3257584631603608,0.328,0.3287259615384615,0.3343307943416757,0.3401206636500754,0.0,2.281964840879999,51.69128075367372,158.93039053826223,220.7244993136943,fqhc1_80Compliance_baseline_low_initial_treat_cost,72 -100000,95681,46757,445.7311273920632,5194,53.10354197803117,4096,42.22363896698404,1595,16.272823235543108,77.34181859432726,79.72485160158031,63.3271521787835,65.0858683952027,77.13851222126279,79.52518953795511,63.25068420777703,65.01345121512816,0.2033063730644784,199.6620636251976,0.0764679710064726,72.41718007453812,222.6961,156.01709447326357,232747.58834042284,163058.76118268367,452.37016,299.5153200436661,472176.5031719986,312422.69255746296,439.73482,213.94768704065348,456231.43570823886,221015.86781603025,2686.17512,1262.6778317190478,2770067.934072596,1282403.958908684,994.78139,449.1874642625148,1024730.552565295,454653.0999896243,1556.3329,664.493546616271,1589124.1312277254,662867.3283665425,0.378,100000,0,1012255,10579.435833655583,0,0.0,0,0.0,38913,406.0680803921364,0,0.0,39775,412.34936925826446,1231435,0,44250,0,0,8779,0,0,73,0.7629518922252067,0,0.0,1,0.0104513957839069,0,0.0,0.05194,0.1374074074074074,0.3070850981902195,0.01595,0.3631694790902421,0.6368305209097579,23.38011792337565,4.149223616360793,0.312255859375,0.2607421875,0.208984375,0.218017578125,11.490998324292136,6.320642343492995,17.103089619316265,11637.322279196072,47.211820245417584,13.08046915135282,14.700139847529552,9.597172760049752,9.83403848648547,0.58935546875,0.8099250936329588,0.7232212666145426,0.5922897196261683,0.1310190369540873,0.754328112118714,0.9225512528473804,0.8820224719101124,0.7511737089201878,0.1756097560975609,0.5199445022545959,0.7313195548489666,0.6619718309859155,0.5396578538102644,0.1177325581395348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366872234205,0.00428758222934,0.0062599555614175,0.0083890231764538,0.0107678854679302,0.0130630447177649,0.0156662487641296,0.0177924318365097,0.0197876102576682,0.0218653072505604,0.0241366581904683,0.0262403845166326,0.0282192936432003,0.0302121652395231,0.0321198922456057,0.0340508279978071,0.0359789017730386,0.0379376219942688,0.0402280316664412,0.0421171147691377,0.0568822865738999,0.0713709804085821,0.0840960618019985,0.0968189997158881,0.1089508940344955,0.1242728099680565,0.1356556246418946,0.145685635817845,0.1559040984657464,0.1659945948264767,0.1784344979106535,0.1905050352086015,0.2013790703238857,0.2110240180162452,0.2201641111379985,0.2298270095465922,0.2388727678571428,0.2473935781364224,0.2548223119865656,0.262034534878395,0.2685298674868759,0.2745247059373757,0.2787559865192455,0.2841041120174398,0.2888343915793563,0.293365524377325,0.2972195469725207,0.3005927395761785,0.3041321885966616,0.3080687499175581,0.3053507024815632,0.3034685656937819,0.3017321504013519,0.2987093607437778,0.296640351397875,0.2928915754839697,0.2898445399393327,0.2900235818157998,0.2907785697234253,0.2904931458073704,0.2909942349670703,0.2915264245645114,0.2927465464713493,0.2935487465181058,0.29291768424077,0.2948244473342002,0.2966667613878548,0.2994545112546241,0.3049118255442976,0.3092722307966283,0.3122759246653052,0.3142389525368249,0.317417828685259,0.3194444444444444,0.3202972596377148,0.3207747726467462,0.3226593473620006,0.3222177581357975,0.327728776185226,0.3296282100421617,0.0,2.271103705471429,52.736657843284746,156.94073972025464,207.63819662903157,fqhc1_80Compliance_baseline_low_initial_treat_cost,73 -100000,95689,47001,447.4390995830242,5247,53.54847474631358,4189,43.29651266080741,1603,16.47002267763275,77.38307130315455,79.75960919590214,63.34642469116329,65.09747455428457,77.17499420236472,79.55161686744539,63.267957461384086,65.02095432045135,0.2080771007898363,207.9923284567542,0.078467229779207,76.5202338332216,222.46554,155.88135854010127,232488.1020806989,162904.15673703485,451.85898,298.978392931787,471748.35143015394,311980.2540756874,441.00804,214.52563445309323,457893.0493578154,221924.0632958242,2722.13244,1274.0482633068991,2817185.872984356,1303872.6857471317,985.55334,445.813169080914,1016908.9550523048,452973.47445490985,1560.00018,669.9041172216613,1604810.8142001692,677318.3493377009,0.38157,100000,0,1011207,10567.641003668134,0,0.0,0,0.0,38720,404.1425869222168,0,0.0,39981,414.812569887866,1234002,0,44325,0,0,8879,0,0,87,0.9091954143109447,0,0.0,1,0.010450522003574,0,0.0,0.05247,0.1375108105983175,0.3055079092814942,0.01603,0.3509060955518945,0.6490939044481054,23.638218402413973,4.178680147391686,0.316304607304846,0.2621150632609215,0.2134160897588923,0.2081642396753401,11.22625453269707,5.907547880185344,17.099145678662182,11772.321305440144,47.99129993238865,13.58195256764739,15.00685733674338,9.961598079448848,9.440891948549025,0.5820004774409167,0.8032786885245902,0.7139622641509434,0.5682326621923938,0.1169724770642201,0.7475961538461539,0.8989247311827957,0.8631578947368421,0.7045454545454546,0.174863387978142,0.5117307038422305,0.7330173775671406,0.653968253968254,0.5237388724035609,0.1015965166908563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020853790631991,0.0043057159645816,0.0062474011419762,0.0083878305373898,0.0104722688221239,0.0128363040402292,0.0151379233011886,0.017250354704039,0.0195332863144337,0.0217228847827199,0.0239498856844069,0.026277417234864,0.0282414406631493,0.0304578462172323,0.0326507453448186,0.0347771266755547,0.0367746079101663,0.0388160079707738,0.040774518265861,0.042800421021916,0.0579024339287579,0.0719175931160103,0.0847452292779135,0.0975227640737703,0.1094955927628526,0.1246339426360359,0.1361304274084125,0.1471051176245373,0.1579520232200785,0.1674345841458971,0.1808009296120161,0.1936160550161112,0.2042346905502054,0.2132215506028179,0.221932545706554,0.2322659279778393,0.2408859402224902,0.2492791169182248,0.2571266325951164,0.2637822349570201,0.2701848614985704,0.2770493338640568,0.2834330391518095,0.2877093631520852,0.2922831888533599,0.2975656077348066,0.3020051066386302,0.3058118374670722,0.3092385602714709,0.3122772747670459,0.3095862764883955,0.3067060601896386,0.3043753428125395,0.3017490187023782,0.2995744302258337,0.2967750818468317,0.2930407563158061,0.2930785868781543,0.2931799563080284,0.2944563279857397,0.2953939642477678,0.2963945377738481,0.2973445798188066,0.2967923941534497,0.2986313128904573,0.300214420419024,0.3020724658113633,0.3064435875108844,0.3078529657477026,0.3112008785002745,0.3154665222883956,0.3199958102021577,0.3249875745526839,0.3297856393344326,0.3341625207296849,0.3366944830783495,0.3400713436385256,0.3427129827285076,0.3444356330954269,0.3505683901723506,0.0,1.8124701302262975,54.869549077585376,155.14548719847892,213.9913273383496,fqhc1_80Compliance_baseline_low_initial_treat_cost,74 -100000,95696,47084,448.70214011034943,5166,52.854873766928606,4121,42.520063534526,1655,16.886808226049155,77.3960056150407,79.77910688307617,63.35197710932333,65.11288766945098,77.18143157255417,79.56852759240606,63.27053941048257,65.035306899034,0.2145740424865323,210.5792906701112,0.0814376988407588,77.58077041698641,223.5431,156.5242438794929,233597.12004681493,163564.0401683382,452.77561,299.39277254073204,472608.6461294098,312327.2995117163,438.00012,213.9434498797723,454190.3841330881,220815.1277140668,2692.75229,1263.3486588689525,2779477.8465139605,1285785.705639684,976.44279,448.3800442741544,1004265.0058518642,452452.23862455465,1613.9495,692.1458174447499,1648855.3544557767,692843.685740338,0.3806,100000,0,1016105,10618.05091121886,0,0.0,0,0.0,38898,405.9103828791172,0,0.0,39692,411.2397592375857,1229897,0,44126,0,0,8762,0,0,74,0.7732820598562113,0,0.0,1,0.0104497575656244,0,0.0,0.05166,0.1357330530740935,0.3203639179248935,0.01655,0.368411318660995,0.631588681339005,23.193041645689945,4.124200282887033,0.3084202863382674,0.2657122057752972,0.2103858286823586,0.2154816792040766,11.123248741088124,5.962983219704502,17.788380981010267,11674.21964790219,47.06091407069274,13.278636535421777,14.39736180847096,9.683843812479251,9.701071914320757,0.5760737685027906,0.7890410958904109,0.6963021243115657,0.5940023068050749,0.1238738738738738,0.7581543357199682,0.9391304347826088,0.8453038674033149,0.7458333333333333,0.1846153846153846,0.496159217877095,0.6803149606299213,0.636963696369637,0.5358851674641149,0.1067821067821067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0047656709456307,0.0068106615781246,0.0090728981457962,0.0113217911419445,0.013430130737588,0.0155693995534121,0.0177337185678261,0.0197611891471917,0.0220577698622285,0.0240209144966167,0.026037762970112,0.0280663142522163,0.0302733771450938,0.0325426386982944,0.034649934359462,0.0365958504676769,0.038665946978347,0.0405815791663199,0.0425438779338808,0.0570939135339523,0.071164693939489,0.0849363344591051,0.0975155867231608,0.1092020659850321,0.1244263023201708,0.1362855142269091,0.1476352178495013,0.1581904609304064,0.1680985016677928,0.1800215401184706,0.1912596679106495,0.2021691643935359,0.2119122051461426,0.2204642162090842,0.2299397750420689,0.2384648843978987,0.246885146445865,0.2551892136868343,0.2615982622613467,0.2676488926864189,0.2735030761507839,0.2799418879334782,0.2843334290362714,0.2901251030402948,0.2946461493080308,0.2978083797976774,0.3021578173335362,0.3052323331355298,0.3089403102813568,0.3057135193133047,0.3030008221430529,0.3003875968992248,0.2985934978095457,0.2966249851843072,0.2932148256746231,0.2910580916139015,0.2909567067681479,0.2919739105260469,0.2911894429821441,0.2915655453085912,0.2923697148475909,0.2935712946958496,0.2939009232954545,0.2948405298139913,0.2966415494963619,0.2975003530574777,0.3008965668051607,0.3055497455204629,0.3096733420231465,0.3135169530042723,0.3185569191705459,0.3204017576898932,0.321285140562249,0.3224325337331334,0.3266129032258064,0.334599027946537,0.3386967015285599,0.3396174863387978,0.3393061380099123,0.0,2.157983457148942,54.86377767264591,143.68163633272889,215.2190469308785,fqhc1_80Compliance_baseline_low_initial_treat_cost,75 -100000,95814,46695,443.4007556307012,5314,54.21963387396414,4224,43.41745465172104,1619,16.469409480869185,77.38566316619061,79.70742443228964,63.36611244363343,65.08461001926116,77.18061478424556,79.50740217551301,63.28869771838383,65.01186266189166,0.2050483819450477,200.02225677663432,0.0774147252495964,72.74735736950788,223.5706,156.52986465196892,233338.13430187656,163368.46875401185,456.51863,302.41635431565845,475794.5289832384,314960.81052858685,439.87624,214.71303033619148,454967.3012294654,220860.31282506615,2740.24377,1272.8746907593168,2818406.099317428,1287010.7892009527,975.33247,440.82746271203337,1001442.357066817,443637.3498968557,1577.1984,668.5147906961282,1606059.532009936,663097.6568059798,0.37836,100000,0,1016230,10606.27883190348,0,0.0,0,0.0,39245,408.8964034483479,0,0.0,39942,412.7789258354729,1230464,0,44149,0,0,8935,0,0,75,0.7827666103074707,0,0.0,1,0.0104368881374329,0,0.0,0.05314,0.1404482503435881,0.3046669175762138,0.01619,0.3548096011550262,0.6451903988449739,23.707836578165125,4.142516688136155,0.3243371212121212,0.2677556818181818,0.2009943181818181,0.2069128787878787,11.289469685888838,6.026844040437229,17.233401141457144,11651.235396159587,48.23858248212088,13.870707175277396,15.49749359715216,9.37417543104506,9.496206278646264,0.5785984848484849,0.8107869142351901,0.6854014598540146,0.5759717314487632,0.1132723112128146,0.7433333333333333,0.903370786516854,0.8509485094850948,0.7551020408163265,0.1473684210526315,0.5132275132275133,0.750728862973761,0.6243756243756243,0.5222052067381318,0.1038011695906432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775900661379,0.0044098415498312,0.0066781013082177,0.0090524861317131,0.0112596118637861,0.0135424091233072,0.0158089471913891,0.0182161445045412,0.0203485103991006,0.0224728299801469,0.0245749597761813,0.0266142524299746,0.0287664052784657,0.0310756562017498,0.0330796675534657,0.0349942158320938,0.0369481318999679,0.0391053346185338,0.0410977395204917,0.0429760665972944,0.0577153765112082,0.0718183528821426,0.0850296639483449,0.0968552005295619,0.1093249620765211,0.125076575339572,0.1366231950079986,0.1483461587517537,0.1586009749229341,0.1675521089950943,0.1793250306510937,0.1908064603251769,0.2019760056457304,0.2120391698780581,0.2208261485573702,0.230696090571378,0.2390665032861758,0.2470711132577757,0.2540723623099753,0.2598303689817566,0.2657381422582545,0.2721024934949768,0.2778033495025316,0.2827666133001983,0.2873712120294926,0.2914318686850085,0.2958617508073264,0.3001089876818573,0.3041689239738926,0.3076791606957391,0.3049766342590105,0.3033525916370473,0.3004691538375098,0.2978346116140937,0.2962836685987044,0.2925714809664257,0.2884697475138733,0.2888732255843687,0.2891887275832622,0.2891295427378637,0.289616362548609,0.2908218664244961,0.2911323328785811,0.2927326036840574,0.2936670440584877,0.2966329702478907,0.296730571722013,0.3010245772832988,0.3039229471316085,0.3087768069896743,0.3133785197652731,0.3192873004123929,0.3245784491945088,0.325669338980487,0.3286732970538563,0.3306107954545454,0.3368951305144252,0.3407168747482884,0.3436898542755018,0.350970688998858,0.0,2.5560474477731048,51.80798770611625,161.34748111995373,218.88961341901663,fqhc1_80Compliance_baseline_low_initial_treat_cost,76 -100000,95754,47135,449.3598178666165,5232,53.42857739624454,4164,42.76583745848737,1573,15.905340769054034,77.37657405990127,79.72039891246939,63.3458979718325,65.07867017075617,77.17039054572781,79.52095239098973,63.26738169743295,65.00540013377348,0.2061835141734604,199.4465214796577,0.0785162743995542,73.27003698269152,221.87748,155.4831026375033,231715.4583620528,162376.97562243172,450.04686,298.0840003513661,469300.33210100885,310599.3002395369,441.79525,215.4689123241662,456911.4606178332,221463.8858758962,2696.90522,1259.6064832356087,2772748.856444639,1271832.400217665,945.44015,430.8673159264835,969795.632558431,432495.4102829162,1532.05306,657.6989919290108,1552360.9039831234,647970.719259376,0.38244,100000,0,1008534,10532.52083463876,0,0.0,0,0.0,38621,402.59414750297634,0,0.0,40089,414.1759091004031,1237099,0,44319,0,0,8766,0,0,84,0.866804519915617,0,0.0,4,0.0417737118031622,0,0.0,0.05232,0.1368057734546595,0.3006498470948012,0.01573,0.3581081081081081,0.6418918918918919,23.461349911893063,4.100728595806174,0.3196445725264169,0.2723342939481268,0.2053314121037464,0.2026897214217099,11.257779487358157,6.03845600083033,16.903237065598194,11721.101677533936,47.74103748688564,13.98700563043688,15.15354018988663,9.39247178527226,9.20801988128988,0.5809317963496637,0.810405643738977,0.6934635612321562,0.5625730994152047,0.1137440758293838,0.7435483870967742,0.8983402489626556,0.8541114058355438,0.6820512820512821,0.1827956989247312,0.511969904240766,0.745398773006135,0.629979035639413,0.5272727272727272,0.094224924012158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877848678213,0.004277792983203,0.0065443698126991,0.0088687065707667,0.0108717760963306,0.012718811417399,0.0148361901071672,0.0171315391840568,0.0192498389883356,0.0213735144486186,0.0237475401771072,0.0259081717494174,0.0280550615278648,0.0301023665835925,0.0321039872079228,0.034077871605908,0.0361584260937095,0.0382165605095541,0.0402224763488928,0.042012518355742,0.0570185051820772,0.0706322812741837,0.0843038797396035,0.097313884568498,0.1104459994941404,0.1260173773333615,0.1373910646508767,0.1486088205564718,0.1589244142585592,0.1688755924424714,0.181000592385158,0.1918807210404449,0.2032461951851005,0.2120224079828438,0.2209793905231636,0.2309065111845168,0.2393421023247504,0.2480250275708402,0.2547947070973013,0.2615137982365739,0.2683101768836547,0.2742654022894426,0.2795870583226905,0.285736521353911,0.290058167069424,0.2944981027940669,0.2986066854108091,0.3027543906434531,0.3058937572702598,0.3087159891955991,0.3069886768123144,0.304785963370768,0.3020413324154596,0.3008880175296967,0.2991274461875768,0.295459058208978,0.2933402804092459,0.2939366663939121,0.293912184150892,0.2939555065530916,0.2959675611032215,0.2969669533725668,0.2977626580957549,0.2999222654081066,0.3008481662883765,0.3017621145374449,0.302993435943866,0.30951416373212,0.3129313349599164,0.3156088517218255,0.3202028434302273,0.326049089469517,0.3282147315855181,0.3333584507572903,0.3373247934651443,0.3335290663534938,0.3394509328075231,0.3445528779127664,0.3479913137893594,0.3492243662504729,0.0,2.7705977797976686,53.50650638457751,155.08464338424352,211.99527456842148,fqhc1_80Compliance_baseline_low_initial_treat_cost,77 -100000,95762,47044,448.0900565986509,5178,53.00641172907834,4069,42.02084334078236,1547,15.820471585806478,77.3313489084019,79.69644880220332,63.31030609897547,65.06267604940815,77.12899629475035,79.49556097244042,63.23399609216404,64.98906077770522,0.2023526136515556,200.8878297629053,0.0763100068114255,73.61527170293414,222.7214,156.03468566261475,232578.0581023788,162940.08652974534,452.11492,298.65217430133,471689.7621185856,311435.43817101786,437.67159,212.7944029620408,454064.62897600303,219975.42515298777,2616.31903,1228.6819471005151,2703652.1167060006,1254604.391199552,951.20135,432.4545124826106,980090.704037092,438386.4398013936,1501.14808,644.019341783179,1537047.325661536,647178.5544257062,0.38135,100000,0,1012370,10571.729913744492,0,0.0,0,0.0,38781,404.5028299325411,0,0.0,39685,411.4158016749859,1231262,0,44220,0,0,8795,0,0,74,0.762306551659322,0,0.0,0,0.0,0,0.0,0.05178,0.1357807788121148,0.298764001544998,0.01547,0.3485045513654096,0.6514954486345904,23.611426068626347,4.138056257908737,0.3180142541164905,0.2659130007372819,0.2174981567952814,0.1985745883509461,11.616561091885307,6.390171041328926,16.70410518334989,11768.296563232898,46.723424333366246,13.25907030492896,14.752178137568754,9.836632741739429,8.875543149129111,0.5959695256819858,0.833641404805915,0.6931993817619784,0.5943502824858757,0.1237623762376237,0.780327868852459,0.925764192139738,0.8826666666666667,0.7761904761904762,0.192090395480226,0.517023517023517,0.7660256410256411,0.6158868335146899,0.5377777777777778,0.1045958795562599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0044515651459687,0.0067495559502664,0.0091241617557407,0.0114447903314411,0.0134126345591754,0.0157334991995595,0.0179503149984173,0.0201495361515408,0.0222053792736137,0.0245015589104036,0.0262598243180767,0.0283312065203968,0.0301662389594863,0.0324108958412898,0.03441251589821,0.036273829617587,0.0383222472423132,0.0402802465670835,0.0422755251892972,0.0567542458689547,0.07096517662816,0.0843700828700304,0.0972165262836892,0.1093257420001054,0.1249735584041968,0.1371874867354302,0.1477232784789902,0.1583306615368173,0.1693796744390673,0.1821503244023883,0.1934593101954626,0.2049945025636559,0.2140863263675274,0.2233647843750344,0.2329327509367863,0.2423342340933961,0.2500253267146186,0.2576713572401271,0.2640648990535554,0.2709500439835177,0.2771696500696582,0.2828263677406358,0.2869919089577681,0.2907635797513926,0.2959939829599398,0.3000575662011313,0.3039632439036807,0.3076095550399855,0.3107821015267276,0.3085199499064112,0.3054116094624129,0.3035350054157464,0.3001298701298701,0.2982248169990812,0.2954319837500191,0.2924013500299656,0.292571204214177,0.2935443749680541,0.2941030018494807,0.2952055689304443,0.2964041803617469,0.2980773241022647,0.2983350398432978,0.2996433956393748,0.3002438897825749,0.3008491367110105,0.3049452269170579,0.3090775321444837,0.3122770864706348,0.3147014823881409,0.32268252882034,0.3234926975408813,0.324966078697422,0.323820079431052,0.3269474899019042,0.3321476211649622,0.3361867704280156,0.3453046022878425,0.3443536404160475,0.0,1.8647029024245716,53.6223653349216,149.2339969465435,209.5106199827769,fqhc1_80Compliance_baseline_low_initial_treat_cost,78 -100000,95487,46663,445.55803407793735,5230,53.57797396504237,4180,43.16817996167018,1686,17.300784399970677,77.22623088476638,79.71485497451302,63.24095407219974,65.07691073786617,77.0142455973104,79.50276212961721,63.16173980372671,64.9999947098549,0.211985287455974,212.0928448958068,0.0792142684730308,76.91602801126862,222.52142,155.84272791829173,233038.44502393,163208.31937152884,449.12524,297.20414932073834,469717.249468514,310628.1212518421,437.50716,213.45578546419017,453893.4409919675,220296.17233107876,2704.3068,1268.3084254774203,2795134.9607800017,1292025.1612687735,984.64598,442.8723277329109,1016367.515996942,449267.67120141,1629.98074,687.410093440351,1673570.538397897,692573.6120318591,0.37891,100000,0,1011461,10592.656591996816,0,0.0,0,0.0,38669,404.30634536638496,0,0.0,39635,410.84126635039325,1228111,0,44064,0,0,8767,0,0,89,0.9320640506037472,0,0.0,1,0.0104726297820645,0,0.0,0.0523,0.1380274999340212,0.3223709369024856,0.01686,0.344391495601173,0.655608504398827,23.52090442996713,4.060034682618458,0.3102870813397129,0.2669856459330144,0.2217703349282296,0.200956937799043,11.307024141499197,6.154127177821127,18.000792165151015,11706.376307799532,47.93033696888924,13.503861089643731,14.815244149486151,10.390880964133592,9.22035076562575,0.5842105263157895,0.7777777777777778,0.7139552814186585,0.598705501618123,0.1107142857142857,0.747163695299838,0.9049881235154394,0.8803191489361702,0.7620967741935484,0.1111111111111111,0.5159538357094365,0.7007194244604317,0.6460369163952225,0.5390279823269514,0.1105990783410138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914475350863,0.0048383661131792,0.0069750441651268,0.0091713268937468,0.0111479882717054,0.0131987973296641,0.0154491372360942,0.0175341793881429,0.0197141600253716,0.0219462715927952,0.0239981934636229,0.0260024676125848,0.0280492199969108,0.0301683237757333,0.0322060692476984,0.0342289175337785,0.0363074305750059,0.0384099626815247,0.0406842878426388,0.0423750052211687,0.0569750766750756,0.0714810307201611,0.0848327426834782,0.0977329496948809,0.1091771817470885,0.1250940696380306,0.1359736324490989,0.1464679334663437,0.1573451289521035,0.1671109486854268,0.1800123074265603,0.1920286318529364,0.2025902951148517,0.2124716379300895,0.2214414156011782,0.2306256458118062,0.23867055967603,0.246868905497875,0.253508632258945,0.2609962934486993,0.2677946053760697,0.2745412978486429,0.2806634553781174,0.2848937116214235,0.2897340905213386,0.2939212582846968,0.2971319455785731,0.3008980697249581,0.3050543626514945,0.308790452753301,0.3065276408379367,0.3042519467989801,0.3028550471139197,0.301144574830915,0.298814323331201,0.2962019879739845,0.2932918801452976,0.2943488701029571,0.2950755111126331,0.2945005812393812,0.2954196184264777,0.2971396943999683,0.2987230479380364,0.2992739863732827,0.3002110109342029,0.3010377922854839,0.3016288126439069,0.3053689167974882,0.3103738514413972,0.3125867745646396,0.3176952858118879,0.321258341277407,0.3252861342172743,0.3274862606338929,0.3328729281767956,0.3368909512761021,0.3410876132930514,0.347112462006079,0.3585733882030178,0.3644325971058644,0.0,2.292066509796383,53.74939382427819,153.42230345477796,218.2524008065061,fqhc1_80Compliance_baseline_low_initial_treat_cost,79 -100000,95710,46612,445.2617281370808,5274,53.93375822798036,4171,43.01535889666702,1635,16.64402883711211,77.36399481233721,79.74859789608698,63.33329461681414,65.09704504157709,77.15284000521343,79.54259046084326,63.25326905672883,65.02221861374765,0.2111548071237763,206.00743524371975,0.0800255600853105,74.82642782943572,223.08286,156.1896696424426,233082.08128722184,163190.54397914806,451.73334,298.7112907154347,471401.1702016508,311520.2285188952,434.92582,211.51325788151465,451580.1692613103,218711.19741052203,2735.89543,1276.4636334464055,2820633.298505903,1295785.5328036838,985.14908,446.1685950505321,1014207.9615505172,451168.12891678,1601.01902,681.9418091967436,1631883.9619684464,676258.6445118524,0.37809,100000,0,1014013,10594.640058510084,0,0.0,0,0.0,38820,405.00470170306136,0,0.0,39409,408.8914429004284,1233108,0,44287,0,0,8884,0,0,89,0.9298923832410408,0,0.0,0,0.0,0,0.0,0.05274,0.1394905974767912,0.3100113765642776,0.01635,0.3434600691286156,0.6565399308713844,23.553459758236844,4.234544664497013,0.3032845840326061,0.2646847278830017,0.2100215775593382,0.2220091105250539,11.300690873517835,5.942493666082212,17.436001516378415,11568.634244263436,47.70253094079472,13.497189346054649,14.323864694331146,9.825537553423032,10.055939346985896,0.5715655718053224,0.7916666666666666,0.7011857707509881,0.58675799086758,0.1177105831533477,0.7441295546558705,0.92183908045977,0.8725212464589235,0.725,0.1739130434782608,0.4989782016348774,0.7070254110612855,0.6348684210526315,0.5345911949685535,0.1015299026425591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0044621578589755,0.0066900836514253,0.0089131451104742,0.011090986792568,0.0133158098498278,0.0154229058713125,0.0173005433228481,0.0192588956051261,0.0214214767712141,0.0233812580757634,0.0256036315459745,0.0275560584241925,0.0296139063771909,0.0314260944950151,0.0331792756185572,0.0352196567119342,0.0371181304997509,0.03890731058283,0.0408001667013961,0.0555190024125074,0.0692304471612795,0.083342950365622,0.0960719356365357,0.1078081022105562,0.1236901929685434,0.1354762081508425,0.1466323393299786,0.1566063116539266,0.1660432364068981,0.1779418411933102,0.1896087318672046,0.1996128667435133,0.2100220914718169,0.2193093433371104,0.2286204605845881,0.237712781384557,0.2457943504857862,0.2527797948624852,0.2590642136715932,0.2658825162208112,0.2719971005681951,0.2776278728490615,0.2829155483128834,0.2879293806233836,0.2920770139846366,0.2954525562960277,0.3000978013742998,0.3026897139756608,0.3051764303294331,0.3034580004028738,0.3018497680928726,0.2995169082125604,0.2963763417621209,0.2940018355685821,0.2899392055583489,0.2876009381542287,0.2879669944392805,0.2885261478942545,0.2888423221040294,0.2904014026710438,0.2910199665584735,0.2926300427394975,0.293708321252537,0.2945062836624775,0.2947360204001977,0.2959044368600682,0.300118920948864,0.3031394210599916,0.3065534938807738,0.3109734032929256,0.3140991892176477,0.3176883980673903,0.3208263709554914,0.3247670149675233,0.3305628116836855,0.33651330973996,0.3382233088834556,0.3473800942611588,0.3565891472868217,0.0,2.1935741951569234,53.97993354015199,152.94063689709316,215.11630581459104,fqhc1_80Compliance_baseline_low_initial_treat_cost,80 -100000,95658,47178,449.277634907692,5273,53.78536034623345,4154,42.69376319805976,1610,16.38127495870706,77.31725194233033,79.72468341018555,63.30264576078415,65.08445131433663,77.10743049683312,79.52152284712501,63.2231656059429,65.0112279532193,0.2098214454972122,203.16056306053557,0.0794801548412493,73.22336111732852,222.18416,155.66730841003377,232269.29268853625,162733.18322569338,454.96599,300.79485319238256,474856.3005707834,313687.20148067345,437.7723,213.04166556976105,453672.8971962617,219747.43958339223,2709.24442,1261.6821127948624,2786369.106608961,1273100.6845165726,977.49924,441.025455967403,1004537.7281565577,443712.9314510047,1576.47424,672.7003685842683,1605606.2848899204,664382.1406381979,0.38382,100000,0,1009928,10557.695122206193,0,0.0,0,0.0,39016,407.12747496288864,0,0.0,39735,411.3299462669092,1232879,0,44230,0,0,8790,0,0,82,0.8467666060339961,0,0.0,0,0.0,0,0.0,0.05273,0.1373821061956125,0.3053290347051015,0.0161,0.3609187021509296,0.6390812978490703,23.73960127411788,4.141523643685756,0.3009147809340395,0.2645642753972075,0.2212325469427058,0.2132883967260471,10.960113354218787,5.680003864858437,17.232808640775392,11800.560819990968,47.528788343627575,13.487489921508567,14.06074276291586,10.287638248188337,9.69291741101481,0.5739046701974001,0.816196542311192,0.6944,0.5516866158868335,0.1264108352144469,0.7600671140939598,0.9297872340425531,0.8765060240963856,0.6682242990654206,0.1988636363636363,0.4989871708305199,0.7313195548489666,0.6285403050108932,0.5163120567375886,0.1084507042253521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025428794310433,0.004745728337474,0.0068502186995747,0.0088406548181568,0.0109477539807702,0.0131506570235306,0.0153122640931997,0.0176834749918273,0.0199095578154733,0.0220373538783079,0.0241715399610136,0.0263774430218459,0.0288017128681276,0.0310228573196003,0.033121611154144,0.0349929641585961,0.0369567921711726,0.0388418079096045,0.0409955466766554,0.0428785888534434,0.0569028388728097,0.071454004691689,0.0849448818897637,0.0976492623692573,0.1092858122579896,0.125537139349294,0.137504245923913,0.1489876127685409,0.1592060539985891,0.168824898883155,0.1811336608066184,0.1937062255756303,0.2042639792786714,0.2143693698624139,0.2233836325586518,0.2332568629406745,0.2419545616854133,0.2496681888736418,0.2573645345341939,0.2642593822270052,0.2706742560969966,0.2770222071497901,0.2828991750795924,0.288562698460248,0.292303393989456,0.2975657854193628,0.3018091282153938,0.3059128577965326,0.3084912371467374,0.3113680966242114,0.3092096423100696,0.3062412477003762,0.3043020119141283,0.3022605386079234,0.3000653381247958,0.2976090186407708,0.2952271038527816,0.2943596636451555,0.2951227406688131,0.295182009038181,0.2964429831116425,0.296347373812995,0.2976636198205359,0.2984988066293413,0.2998653587228313,0.3018563357546408,0.3018969727949111,0.3061645763613048,0.3106341326994337,0.3143794207136365,0.3179196002725414,0.3236850460366176,0.3250188489570244,0.3295826047289591,0.3290806754221388,0.3327450288269208,0.3299632352941176,0.3274014155712841,0.3256313809779688,0.3267363704256908,0.0,2.8960404184894317,51.12710340002461,159.47932867977633,212.7844581476023,fqhc1_80Compliance_baseline_low_initial_treat_cost,81 -100000,95875,46450,441.91916558018255,5215,53.319426336375486,4111,42.503259452412,1607,16.54237288135593,77.4717338221379,79.75805500263344,63.40399372213196,65.09072650953269,77.26674873305507,79.5506588015223,63.32778485345441,65.01479532519213,0.2049850890828395,207.39620111113769,0.076208868677547,75.93118434056123,221.76198,155.32848191548322,231303.23859191657,162011.45440989124,445.64528,294.8153021121199,464348.4641460234,307029.06087313674,434.26024,211.72196656522416,450015.5723598435,218674.59836659572,2667.43323,1246.49537509353,2760133.726205997,1278060.3442957285,959.27595,432.1539993207539,990704.9700130378,440903.7176748405,1561.11832,661.7136521181765,1608081.814863103,674907.0929987709,0.37779,100000,0,1008009,10513.783572359844,0,0.0,0,0.0,38263,398.6962190352021,0,0.0,39463,408.84485006518906,1245538,0,44600,0,0,8800,0,0,78,0.7822685788787483,0,0.0,0,0.0,0,0.0,0.05215,0.1380396516583287,0.3081495685522531,0.01607,0.3582062120933652,0.6417937879066348,23.66708206075423,4.173198380202067,0.3096570177572367,0.2707370469472148,0.2091948431038676,0.2104110921916808,11.240329995591994,5.95968658953966,17.09109507163576,11633.161686429605,46.9888924169333,13.642350594915422,14.37507101645131,9.606602287097813,9.364868518468752,0.5718803210897592,0.779874213836478,0.6952081696779262,0.5767441860465117,0.1179190751445086,0.7435064935064936,0.9253731343283582,0.8241758241758241,0.7607655502392344,0.1210526315789473,0.4984369572768322,0.6739130434782609,0.6435643564356436,0.5176651305683564,0.117037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021358437088774,0.0043257590339475,0.0065099677543653,0.0087494924888347,0.0110458499308999,0.0133384883046588,0.0157077662782169,0.0174420383724844,0.0195249474092682,0.0217111183833756,0.0241194604614959,0.0261112136689024,0.0280651291797216,0.0301056682203084,0.0319750961211384,0.0341690588794118,0.0362037755365916,0.0381075759146025,0.0398608659536912,0.0418327315108692,0.0562002773520181,0.0707782365546438,0.0841454469244472,0.0971286889465555,0.108940107707062,0.1239177546381944,0.1347153006043897,0.146366112080337,0.1570266461696131,0.16647911776999,0.1796309248399419,0.190639318751621,0.2016981910573519,0.2110175875282481,0.2198928155680994,0.2300269696701742,0.2390488388929108,0.2466151739003525,0.2545691314686898,0.261266204815145,0.2669098717401092,0.2726032190342897,0.2779673021306734,0.2827222627344563,0.2878639069756162,0.2924513216644731,0.2965085787068255,0.3005787683403564,0.3046403802192977,0.3070993541258336,0.3048376052310047,0.3029286066516903,0.3016353894919913,0.2988310736006671,0.2966483833291444,0.2933794300857461,0.2897159493272484,0.2898947883533154,0.2901201058560086,0.2904791426800106,0.2919588549320139,0.2930219790992687,0.2939464493597206,0.2938476887263053,0.2961057520543051,0.2973650219581503,0.2975525855749168,0.3031498508946322,0.3084170203954861,0.3109289617486339,0.3127794670005366,0.315122308941386,0.3175246167269101,0.3216205982582355,0.3256906596504416,0.3291888691533451,0.3333333333333333,0.3333333333333333,0.3353147797892462,0.337087087087087,0.0,1.482470439071031,54.33381320201822,150.36450789310314,210.36755074116184,fqhc1_80Compliance_baseline_low_initial_treat_cost,82 -100000,95737,47193,449.7007426595778,5228,53.47984582763196,4154,42.77343137971735,1583,16.106625442618842,77.34438518034166,79.69823010327825,63.33412346583962,65.07273301122699,77.14251144969833,79.49942546270607,63.25862223085876,65.00103385477173,0.201873730643328,198.8046405721775,0.0755012349808623,71.69915645525293,222.99288,156.2223849965446,232922.36021600844,163178.69266484704,452.29932,299.12113144859995,471816.4659431568,311817.5224297815,441.85107,215.38219131179056,457415.85802772176,221779.80994210037,2679.69621,1248.7330178546654,2760803.2839967827,1266121.8210876302,958.72552,432.83727342764246,987577.7181236094,438273.8206612892,1535.7504,648.3152230904075,1564617.149064625,645074.245713152,0.38336,100000,0,1013604,10587.380009818566,0,0.0,0,0.0,38862,405.2665113801352,0,0.0,40069,414.5001410113123,1230705,0,44200,0,0,8817,0,0,78,0.8042867438921212,0,0.0,1,0.0104452823882093,0,0.0,0.05228,0.1363731218697829,0.3027926549349655,0.01583,0.3439839328099324,0.6560160671900676,23.60157832630072,4.057193247707212,0.3298025999037072,0.2645642753972075,0.205825710158883,0.1998074145402022,11.500208846599364,6.396910627469098,16.88444495424449,11793.108096041968,47.705610826635,13.423564469805456,15.666474408209508,9.57735826897593,9.038213679644112,0.5876263842079923,0.7979981801637852,0.7116788321167883,0.5812865497076023,0.1108433734939759,0.7686567164179104,0.9155844155844156,0.8918918918918919,0.7184466019417476,0.1547619047619047,0.5135685210312076,0.7127158555729984,0.645,0.5377503852080123,0.0996978851963746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183055791904,0.0045218131862561,0.0068385434105459,0.0090389283284076,0.0109400736116477,0.0133661804078059,0.0156437903834002,0.018184601255166,0.0201387540742405,0.0225621610559705,0.024776621034511,0.0268600342806704,0.0289641983178761,0.0310295465546183,0.0328766840661041,0.0346709105376833,0.0365904150709036,0.0387750445928568,0.0406256495531074,0.0421961584933961,0.0569516511280707,0.071237951712662,0.084437311851642,0.097202650120938,0.1099183837020477,0.1251625728273397,0.1367801463569837,0.1475381931146006,0.1584646930667692,0.1683461258093563,0.1808258697898725,0.1931077002952915,0.2040572273438859,0.2143200647036964,0.2236542585363171,0.2327591932520091,0.2417094398571747,0.2494771168334645,0.2571772098773834,0.2642543985164665,0.2705068751373293,0.2769545640605813,0.2829934226091894,0.288007769411539,0.2934853894920936,0.298168814353536,0.3019635835399604,0.3060125292859326,0.3095990468296726,0.3126426771175593,0.309905958643329,0.3072937425269031,0.3040272422818225,0.3013222090707007,0.2992443923221947,0.2970250034450552,0.2935336774438709,0.2941735794616217,0.2933367460114324,0.2948199362069887,0.2948509485094851,0.2962321010025408,0.2975320499436255,0.2993532560214094,0.3017274472168906,0.3027880172369036,0.3034746844419231,0.3070419889156777,0.3094048159927305,0.3128982467249772,0.3137734311328443,0.3160594363069113,0.3179027812578301,0.3210201625037616,0.330692515611893,0.3311825434068512,0.3321657021017362,0.3352459016393442,0.3397062898309781,0.3394033320418442,0.0,2.374207503850911,52.28318639727889,161.22366192895902,210.19220147712517,fqhc1_80Compliance_baseline_low_initial_treat_cost,83 -100000,95680,47028,447.34531772575247,5240,53.75209030100334,4179,43.19607023411371,1583,16.2311872909699,77.28108161739658,79.6690957839347,63.29287913429015,65.05604184561987,77.07317093304471,79.46273560483051,63.21463866463495,64.9809604436107,0.207910684351873,206.36017910418047,0.0782404696552063,75.08140200917524,221.7974,155.410896469016,231811.20401337792,162427.32344169728,450.75682,298.1999105300915,470629.73453177256,311185.2662312829,442.75777,215.57141275756345,460140.8758361204,223336.61769510372,2733.70209,1275.815256010644,2825052.8010033444,1301372.350868147,980.933,441.5677622886382,1014308.5806856188,450640.7019572303,1549.95226,660.9503267060746,1589921.7391304348,663584.840625421,0.37975,100000,0,1008170,10536.872909698995,0,0.0,0,0.0,38607,402.9995819397993,0,0.0,40038,415.80267558528425,1232090,0,44280,0,0,8804,0,0,94,0.9824414715719064,0,0.0,0,0.0,0,0.0,0.0524,0.1379855167873601,0.3020992366412213,0.01583,0.3406049495875343,0.6593950504124656,23.69704359389316,4.149643687340974,0.3187365398420674,0.2555635319454415,0.2172768604929409,0.2084230677195501,11.292793884198096,6.003995899183795,17.040519810861653,11732.988035580169,47.837210925931686,12.958855779743043,15.249328737164229,10.11629087739577,9.512735531628651,0.5750179468772434,0.8108614232209738,0.6794294294294294,0.5781938325991189,0.1228473019517795,0.7568,0.9200968523002422,0.8533653846153846,0.7510548523206751,0.1793478260869565,0.497439399112325,0.7419847328244275,0.6004366812227074,0.5171385991058122,0.1077147016011644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0043187785764251,0.0065051706465591,0.0087878818664851,0.0109330187336004,0.0134821392203983,0.0158757672777698,0.0178870421039735,0.0199948888320981,0.02215989928249,0.024299966164604,0.0265719331389379,0.0286301933360756,0.0306318001978239,0.0328406886017421,0.0347098722031515,0.036867075495152,0.038859942291325,0.0409233233816354,0.0431315731871293,0.0579127182305434,0.0727426937937822,0.0858630390057521,0.0982418114287518,0.110446406904483,0.127016704928959,0.1389204394671195,0.1492411736514191,0.1595231731437429,0.1689823265402538,0.1805181078924095,0.1915799739921976,0.2022041207474844,0.211687543798178,0.2209025604865365,0.2309552063347713,0.2395922974619176,0.2473725119124058,0.2551107373779843,0.2626116672973934,0.2690993339125398,0.2754302316045969,0.2809224567227887,0.2865496373853321,0.2908162024084661,0.2951458705976685,0.3000275564908061,0.3043062810549115,0.3075616523610714,0.3094300216782107,0.3070074863424833,0.3047247567329161,0.3022506675708897,0.299207579423141,0.2974925880126935,0.2937558476617022,0.291360410594348,0.2914838009763795,0.2909924395333721,0.2922036197479741,0.2930966617308017,0.2936632133589525,0.2942486241230097,0.294666069027342,0.296868224524211,0.2974823609049962,0.2977560086570224,0.3037891165011939,0.308096004478343,0.3130486358244365,0.3172933012835049,0.3207965770429454,0.3221602656475158,0.3266520985607716,0.3303579730357973,0.3341051169252141,0.3354955498566903,0.3423351866560762,0.3448460508701472,0.3335866261398176,0.0,1.858285485577643,55.162763485380026,148.7527018365318,219.27169466355983,fqhc1_80Compliance_baseline_low_initial_treat_cost,84 -100000,95725,46809,445.891877774876,5254,53.66414207364848,4183,43.09219117262993,1658,16.913032123269783,77.3612597271838,79.7282125667845,63.34108899169471,65.08981747938302,77.15263720567853,79.52130226165897,63.26212423695685,65.01364659707728,0.2086225215052763,206.91030512553252,0.0789647547378606,76.17088230573188,222.07878,155.59354578580303,231996.6361974406,162542.22594494963,451.3458,298.43160898742764,470929.1825541917,311185.9691694203,437.83633,213.8530289381389,453232.603813006,220188.9215465189,2748.80532,1285.0497917433795,2837220.057456255,1308094.4076713284,1007.06035,455.6459650546566,1039912.6664925568,463872.567307032,1617.51332,688.0908410481164,1653477.712196396,688397.7162987272,0.37993,100000,0,1009449,10545.30164533821,0,0.0,0,0.0,38738,404.074170801776,0,0.0,39782,411.5957168973623,1237863,0,44401,0,0,8798,0,0,80,0.8252807521546096,0,0.0,0,0.0,0,0.0,0.05254,0.1382886321164425,0.3155690902169775,0.01658,0.353415125434902,0.646584874565098,23.48769300041179,4.175171844559563,0.3160411188142481,0.2534066459478843,0.2108534544585226,0.2196987807793449,11.1287737931929,5.981449286504057,17.718819322446738,11674.20865158485,47.898255181370665,13.038618241619288,15.16075913514176,9.688201613197585,10.01067619141204,0.5768587138417404,0.7971698113207547,0.7012102874432677,0.5963718820861678,0.1251360174102285,0.744313725490196,0.9131403118040088,0.8496420047732697,0.7294685990338164,0.16,0.5034387895460798,0.7119476268412439,0.6323366555924695,0.5555555555555556,0.1154381084840055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023905754601351,0.0046435234001135,0.0067991313348622,0.0089809104855177,0.0111054612020746,0.013431498340156,0.0154691738217119,0.0176443559503752,0.0197838600509166,0.0216420966420966,0.0237765679308541,0.0256560365634468,0.0277380670773724,0.0298850337893522,0.0320000825542278,0.0340125505277631,0.035995733532159,0.0381566112529315,0.040346061059812,0.0423018014732696,0.0572597991104057,0.0706697507928367,0.0845518051563909,0.0974996845691214,0.1100607057038067,0.1255430474076423,0.136711625736947,0.1476740721824991,0.1581808666303523,0.1678189750351052,0.1796130615936177,0.1907862713496089,0.2012849362423768,0.21071846273241,0.2193502281347919,0.2290197988025542,0.2380777164520265,0.2466931142603477,0.2554134639366937,0.2619102126782812,0.2690684579898486,0.2745679935505731,0.2796637224646163,0.2848574814743874,0.2895027222350216,0.2938073338088094,0.2973509685638278,0.3017520677957488,0.3048681095486358,0.3077004233320585,0.3056918877489276,0.3040421792618629,0.3028931312733713,0.3002842671822917,0.2979503391365006,0.2946827387872484,0.2919003459770296,0.2918106342214289,0.2923257675083859,0.2923632996812848,0.2923128666990545,0.292861091368554,0.2946994249869315,0.2951550690062652,0.2960341642474988,0.2978435253672257,0.2999259301464304,0.3038882597206493,0.307190688216527,0.3098306697862553,0.3134909848690767,0.3173993156093709,0.3211879211380085,0.3253184593351926,0.3260304493130337,0.3280627781681893,0.3285024154589372,0.3278721278721279,0.3293628808864265,0.3358505564387917,0.0,2.3902425198178308,55.37627427423049,147.75591418725395,218.0502351774481,fqhc1_80Compliance_baseline_low_initial_treat_cost,85 -100000,95650,46495,442.7600627286984,5194,53.07893361212754,4075,42.01777313120753,1600,16.330371144798743,77.2430810454354,79.64539277425351,63.27207635196621,65.04931678071904,77.03889367337506,79.44589552929979,63.19464726695014,64.97602043175574,0.2041873720603462,199.49724495371868,0.077429085016071,73.29634896329651,222.0394,155.49822529037664,232137.37584945117,162570.0212131486,447.149,296.3707227153907,466899.0277051751,309263.6097390389,432.89011,211.08533875054516,448336.037637219,217381.0518996279,2665.14883,1238.9957863405143,2751507.8097229484,1260495.7410773805,992.46503,449.78940055294527,1023171.9602718244,455816.36231358536,1567.39946,668.5523105505821,1602919.7281756403,668694.9569435084,0.37742,100000,0,1009270,10551.698902247776,0,0.0,0,0.0,38531,402.2268687924725,0,0.0,39256,406.2833246210141,1233358,0,44250,0,0,8755,0,0,80,0.8259278619968635,0,0.0,1,0.0104547830632514,0,0.0,0.05194,0.1376185681733877,0.3080477474008471,0.016,0.3463728191000918,0.6536271808999081,23.69165729686498,4.175047201223698,0.3084662576687116,0.2665030674846625,0.2053987730061349,0.2196319018404908,11.118434797257663,5.913505709270023,17.17683014167062,11586.511852771157,46.66183472472596,13.34134302593442,14.212780342983647,9.265418561919793,9.8422927938881,0.5786503067484663,0.8149171270718232,0.7016706443914081,0.5722819593787336,0.1251396648044692,0.7615894039735099,0.9271948608137044,0.8778409090909091,0.774869109947644,0.1515151515151515,0.5015695849319847,0.7302100161550888,0.6331491712707182,0.5123839009287926,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024931084806226,0.0047876980504331,0.0071875983472584,0.0094290736544772,0.0117481919990235,0.0137074189113498,0.0159469793525363,0.0180730272831236,0.020379990183246,0.0224468270304035,0.0244795405599425,0.0264541570818271,0.0287644747938048,0.0307307173247895,0.0326273198323734,0.0345369566116557,0.0366917355543124,0.0386527583164668,0.040430201474917,0.0422938993369751,0.0573888691508704,0.0709108429696665,0.0843752952662908,0.0969928531581883,0.108848492525969,0.1233736674394723,0.1353616691277235,0.1455848018677839,0.155809972180612,0.1647763887098852,0.1769586844632433,0.1888021680216802,0.1996558409026552,0.2089356110381077,0.2177698428442328,0.2273095399225623,0.2366146794119291,0.245088868101029,0.2532167863962899,0.2598325880059626,0.2660887503331904,0.2718352244118921,0.2775021021092149,0.2821758426292431,0.2868959141720694,0.2910453288564092,0.2950275135060605,0.3001568097502518,0.3035053794141694,0.3058784632678701,0.303052364773769,0.3005811391428886,0.2982607101042445,0.2967244422581672,0.2958756902376948,0.2926249616681999,0.288917076264468,0.2888994853412697,0.2875918646385233,0.288382818225694,0.2893278999455409,0.2898168701442841,0.2912883950099591,0.2924635930474464,0.2926817548411897,0.2936416788473585,0.2949909889292559,0.2992477890032417,0.3046413502109704,0.3093528050434921,0.3123396848662513,0.3157333901646332,0.3189611699445285,0.3215781856957879,0.3235933806146572,0.3295481428909392,0.3351368063070026,0.3376068376068376,0.3400275103163686,0.3353705118411,0.0,2.294050286440633,52.72552415547035,144.5295457624044,217.20924195153725,fqhc1_80Compliance_baseline_low_initial_treat_cost,86 -100000,95807,46505,441.8466291607085,5237,53.21114323588046,4118,42.29336061039381,1628,16.491488095859385,77.44904619750217,79.77529715014786,63.38601454967061,65.10690106194004,77.23324486135532,79.56551035595766,63.30412849648672,65.03037648029385,0.2158013361468533,209.78679419020807,0.0818860531838936,76.52458164618281,223.83702,156.6907617930998,233633.2627052303,163548.3438507623,451.13364,297.9774749246543,470203.6176897304,310344.562427228,435.547,212.0930834703689,450537.77907668543,218227.40276160435,2661.4187,1256.2034207652882,2735470.9154863423,1268756.2920927368,984.05097,447.790505408566,1008943.5427473984,449213.6017290653,1576.81078,680.7973052920481,1600350.684188003,672674.8026052667,0.37875,100000,0,1017441,10619.69375932865,0,0.0,0,0.0,38645,402.6532508063085,0,0.0,39542,408.6340246537309,1235664,0,44310,0,0,8928,0,0,93,0.9707015145031156,0,0.0,0,0.0,0,0.0,0.05237,0.1382706270627062,0.3108649990452549,0.01628,0.3365015536464997,0.6634984463535003,23.77025860385105,4.174821256234274,0.3246721709567751,0.2634774162214667,0.2085964060223409,0.2032540067994172,11.313096541799514,6.196059570692896,17.520352565792354,11683.899862828255,47.15379904497407,13.195428908619371,15.276687650869151,9.473008269920491,9.20867421556505,0.5849927149101506,0.8165898617511521,0.6918474195961107,0.5762514551804424,0.1230585424133811,0.7558232931726908,0.9274725274725276,0.875,0.7115384615384616,0.1153846153846153,0.5109641489731988,0.7365079365079366,0.6136606189967982,0.533026113671275,0.1251908396946565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020760965334251,0.0044195310836974,0.0068592533966495,0.0092745908716896,0.0114504204927951,0.0135114496044311,0.0159660695533374,0.0180140642382551,0.0199182422074604,0.0221526434805742,0.0241840446789977,0.0261699507389162,0.0283819901315789,0.0304655807919609,0.0326120588295963,0.0345169588709927,0.0364628075223299,0.0385213604313562,0.0405934730433156,0.0425073396214629,0.0573968015522799,0.0714113944564683,0.0852627055580593,0.0976842414945258,0.1097563545925894,0.1247067030249223,0.1358224936127808,0.1467406911074949,0.1577554656907203,0.1676269625377514,0.180013335914478,0.192179700499168,0.2020066018068103,0.2116734150414179,0.221320744359664,0.2299623066974698,0.2384622238061297,0.2463156476939827,0.2544540782831141,0.2611785134919003,0.2672598850495118,0.2734261084605783,0.2787583472946506,0.2841078833215826,0.2897841517478621,0.2950434953555806,0.2995572738043275,0.3042127816022008,0.3070352018168679,0.3096775041741714,0.3078047668226994,0.3044938583022593,0.3013790878098739,0.2989475502829088,0.29551806231239,0.293853233375998,0.2909651634830223,0.2915538004634313,0.2918384311330517,0.2928381492643148,0.2932420363203334,0.2939745802604738,0.2941911045434678,0.2946539761608254,0.2943904013002222,0.2962369895916733,0.2981375236695588,0.3007043131388681,0.3036437246963562,0.3077679449360865,0.3108487151646761,0.3142494982571036,0.3173648944830609,0.3218382130999094,0.3248968878890139,0.3271873165002936,0.3296403096069206,0.3293666801129488,0.3309724870607464,0.3328296184359652,0.0,2.6924994683105186,53.52991401198128,153.31258208666455,206.365220855781,fqhc1_80Compliance_baseline_low_initial_treat_cost,87 -100000,95812,47069,446.67682544983927,5307,54.16858013609986,4212,43.41836095687388,1576,16.083580344841984,77.3497797498425,79.68114900916684,63.33168066437421,65.05914858334867,77.14800898238556,79.48187730649624,63.25579593755105,64.98635618764901,0.2017707674569351,199.27170267060035,0.0758847268231619,72.79239569966478,223.41902,156.4477825115451,233184.79939882268,163286.20894203763,450.40027,298.1507769271887,469531.35306642175,310626.9433131431,445.76261,217.26985698395623,461142.88398112974,223736.1005522056,2709.31841,1272.875406078549,2794686.2501565567,1295455.4607758422,971.75612,439.884464914005,1000981.1610236714,445861.0768108421,1532.67922,654.725809204189,1565948.6911869077,656694.6263820458,0.3813,100000,0,1015541,10599.30906358285,0,0.0,0,0.0,38666,402.9975368429842,0,0.0,40417,417.8182273619171,1228911,0,44134,0,0,8756,0,0,73,0.7619087379451426,0,0.0,1,0.0104371059992485,0,0.0,0.05307,0.1391817466561762,0.2969662709628792,0.01576,0.352367184676545,0.647632815323455,23.598667181730647,4.090775408508483,0.3169515669515669,0.2780151946818613,0.2039411206077872,0.2010921177587844,11.36400686654671,6.179689652823185,16.901653117355647,11777.755635778662,48.45032963508817,14.321604745768756,15.129999480566914,9.65061400858496,9.34811140016754,0.5902184235517569,0.8061485909479078,0.7131086142322097,0.5587892898719441,0.1298701298701298,0.7536,0.9251559251559252,0.8756906077348067,0.6977777777777778,0.1263736263736263,0.5212694125590817,0.7231884057971014,0.6526207605344296,0.5094637223974764,0.1308270676691729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350223879085,0.0047147332880448,0.007388312663649,0.0095805098091009,0.0117587224087071,0.0140420548851891,0.0162928221859706,0.0184457397180568,0.0205034904995042,0.0229992118650139,0.0251355701120439,0.0271371953097726,0.0293458366750981,0.031695035680084,0.0337204984320845,0.0357821864021492,0.0376266730154129,0.0396112517114052,0.0416952392826714,0.0436765333638739,0.0576820756783825,0.0718983635698227,0.0852644928675491,0.0976291563327588,0.1094328087613707,0.1253172052106242,0.1372883872883873,0.14835194074011,0.1595496977335355,0.169485708156808,0.1806701864023273,0.1920005194467891,0.202993289028595,0.2125501426400988,0.2214790940191624,0.2301070265239646,0.2396648107028486,0.2482399514159113,0.2563817476344989,0.2633988873371643,0.2699536217804147,0.2751300485124788,0.2816258470417105,0.2866275589608524,0.2906635278128337,0.2952312956990571,0.2995864412709122,0.3025951249269247,0.3072347578715976,0.3103721089691184,0.308567045271034,0.3065046579791113,0.304413960170136,0.302268715455624,0.2995750497756381,0.2969807391983342,0.2941651109071923,0.2943018775108633,0.2952679988396102,0.2953012950872311,0.296477806251286,0.2970519752160701,0.2979554330346887,0.298570283270978,0.3001172613492234,0.3013307738203326,0.3012037954963886,0.3054185654535239,0.3100271191154996,0.3130243864188818,0.3167704666486144,0.3202545626676484,0.3226169627220415,0.3272050444427562,0.3260322490446453,0.3331385154880187,0.3352006056018168,0.3334662943757479,0.3336927223719677,0.335755258126195,0.0,2.1212073654583605,54.7798192158582,160.1114703977942,212.47743629179837,fqhc1_80Compliance_baseline_low_initial_treat_cost,88 -100000,95802,46762,445.7631364689672,5256,53.52706624078829,4157,42.82791590989749,1604,16.440157825515122,77.41775944651599,79.74672964270745,63.37436231324406,65.09561595539972,77.21643450795351,79.5473526115493,63.29851155886042,65.0225685698796,0.2013249385624789,199.37703115815,0.0758507543836444,73.0473855201268,222.21254,155.6384045893899,231949.79227991065,162458.40858164747,449.02534,297.05348362255853,468110.7596918645,309479.75308797,432.27455,209.93438075439087,447661.85465856665,216389.21658541748,2721.6889,1259.3226051585898,2805520.41711029,1279307.1440271167,956.61058,429.2159402584068,986281.6120749044,435898.5441877693,1552.37176,654.5025865711202,1591964.7606521784,657700.7246354837,0.38004,100000,0,1010057,10543.172376359576,0,0.0,0,0.0,38583,402.1419177052671,0,0.0,39153,405.1898707751404,1241635,0,44514,0,0,8765,0,0,82,0.8454938310264921,0,0.0,4,0.041752781779086,0,0.0,0.05256,0.1383012314493211,0.3051750380517504,0.01604,0.3446389496717724,0.6553610503282276,23.81335316458105,4.177400107886139,0.3288429155641087,0.2607649747414,0.2047149386576858,0.2056771710368053,11.506477388937055,6.324145590812625,16.91936428348331,11655.011247361255,47.24057585811266,13.115001683104278,15.556721370434976,9.366010910876325,9.20284189369708,0.5655520808275198,0.7656826568265682,0.6942209217264081,0.5511163337250293,0.1204678362573099,0.7393887945670629,0.8927738927738927,0.8350515463917526,0.732620320855615,0.1551724137931034,0.4968110104061766,0.6824427480916031,0.6384065372829418,0.5,0.1116005873715124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491529885883,0.0043992580053318,0.0066158638674391,0.0087648026649875,0.0107784918246156,0.0129484099515452,0.0151564570380185,0.0173307748836449,0.0194607412252907,0.021410734023826,0.0236264862648626,0.0256318134225707,0.027641006136735,0.0296082771400628,0.0318096986069723,0.0338673194311033,0.0357445927765704,0.0378498859630935,0.0398587233158468,0.0415478148618543,0.0556824939747722,0.0696252156186294,0.082906171053597,0.0957193129891275,0.1078097846121438,0.1233584431226294,0.1357232144748829,0.1468349316379255,0.1573460524771386,0.1668398555925739,0.1788264647681321,0.1903372874397701,0.2015136872509311,0.2108343615894473,0.2195438164718291,0.2291685104876537,0.2384322992721071,0.2469736103312745,0.2544060347952157,0.2611693672883624,0.2675714698238521,0.2736643048081525,0.2784618835669,0.2826396449208609,0.2867902102990758,0.2914569772735662,0.2960789210789211,0.3003796005941574,0.3042911026144466,0.3082013366310582,0.3066165615353644,0.3043758838955939,0.3025141588318788,0.3006441757576631,0.2994146847447581,0.2965661564781718,0.2946103250839919,0.2949302728595484,0.2966711956521739,0.29637057414145,0.2968546193120411,0.2982222309335737,0.2988249974004367,0.2986725173414888,0.2987522111201415,0.2999663395562,0.3010551925089819,0.3057271195957327,0.3093034583536288,0.3133870650678199,0.3165659117567446,0.3203540755571948,0.323375,0.3247566588696899,0.3248878085265519,0.3272899632657898,0.3329734731647131,0.3377750858065819,0.3375813449023861,0.3271960107403145,0.0,2.149777059094817,51.39090881960213,154.0799503632751,218.66956991925665,fqhc1_80Compliance_baseline_low_initial_treat_cost,89 -100000,95725,46818,445.70383912248633,5210,53.22538521807261,4103,42.31914337947245,1602,16.380255941499087,77.3893283971574,79.74720702615508,63.35181630130408,65.09241100090601,77.17934268469448,79.53828646980298,63.273041224785466,65.01585757551558,0.2099857124629238,208.9205563520977,0.0787750765186103,76.5534253904292,223.22036,156.33862744665618,233189.19822407945,163320.5823417667,449.02623,297.1586356374922,468557.9942543745,309908.1176677901,436.54452,212.8695930307177,451673.6693653696,219154.44826039573,2663.14277,1253.0478191671652,2749768.837816662,1277130.8015544938,979.627,446.6033076663568,1010860.8200574564,454148.5228276353,1558.54774,666.1223533786244,1596495.7952468006,671842.4263233378,0.37965,100000,0,1014638,10599.509010185428,0,0.0,0,0.0,38634,403.05040480543227,0,0.0,39642,409.7780099242622,1232210,0,44165,0,0,8766,0,0,75,0.7834943849569078,0,0.0,0,0.0,0,0.0,0.0521,0.1372316607401554,0.3074856046065259,0.01602,0.351783744023538,0.6482162559764619,23.406711600714548,4.074847405660395,0.3175725079210333,0.2595661710943212,0.2154521082135023,0.207409212771143,11.321678799265593,6.182336600142332,17.22426949135565,11680.171745707026,47.21512307220662,13.192811535690732,14.783142240342393,9.787592707989273,9.45157658818423,0.5834755057275165,0.8244131455399061,0.6945510360706063,0.5678733031674208,0.1280846063454759,0.7339300244100895,0.920704845814978,0.8539944903581267,0.7009345794392523,0.1212121212121212,0.5191370911621433,0.7528641571194763,0.6329787234042553,0.5253731343283582,0.1301684532924961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026838976270293,0.0047128219161421,0.0068774535163263,0.008925398292091,0.0109897930137042,0.013303340594019,0.0156224523071906,0.0178057590661415,0.0202008848743703,0.0224396033930563,0.024479967209755,0.0265215250133377,0.0285036117590242,0.0307356589227079,0.0325784295526266,0.0345362103174603,0.0366079655454441,0.0386901366083375,0.0405571146450472,0.0425425529698535,0.0569501294795756,0.0705772792432692,0.0839171840912904,0.096389595643123,0.1092676139478011,0.1240046107803428,0.1361172689570318,0.1466590021183959,0.157119965815618,0.1676191497346271,0.1792847990179715,0.1909922772405737,0.2016370988781633,0.2110085724282715,0.2205413136758719,0.2296879673013657,0.2383455541790828,0.2470503548572135,0.2557812322705095,0.2629860832712903,0.2687455918230485,0.274370931360518,0.279986287929832,0.2847395135031603,0.288873246274091,0.2927447746128659,0.2970295791382653,0.3004981826500267,0.303243585928504,0.3071145255445596,0.3043203740025256,0.3022192315086929,0.3006403774856758,0.2980755359358319,0.2967798343237355,0.2935602014344575,0.2906265758951084,0.2912706965807779,0.2924412874282024,0.2925923292930011,0.2932895791769992,0.294492525570417,0.296637042600242,0.2987669159544159,0.2989624020512329,0.3001087350489307,0.3031272109806141,0.3074236897078539,0.3125695603784084,0.3157956777996071,0.3197650779308787,0.3232483235651301,0.3265369941835012,0.3283223090799759,0.334544099841669,0.3413264709322728,0.3448690941919952,0.3402473075388911,0.3440354276224744,0.346109175377468,0.0,2.1602638386827,53.73894350939172,157.13821648091417,203.46413725283787,fqhc1_80Compliance_baseline_low_initial_treat_cost,90 -100000,95680,47226,450.4389632107023,5221,53.501254180602,4123,42.58988294314381,1584,16.252090301003342,77.35982293729873,79.73742231556372,63.33991942654043,65.09082172990607,77.15759496755267,79.53431361295841,63.26402769286175,65.01607238695773,0.2022279697460618,203.10870260530575,0.0758917336786808,74.74934294833702,223.65882,156.56525570848956,233757.1279264214,163634.2555481705,453.55191,299.7896112131445,473542.1718227425,312837.44167968,439.51816,213.94379054926543,455974.25794314384,220957.0814392237,2657.03608,1241.5104660725167,2748476.243729097,1269040.3956026246,948.15995,428.279651886237,980390.071070234,437047.6259095876,1547.33976,657.5954282008564,1590631.4799331103,665359.4755951222,0.38277,100000,0,1016631,10625.323996655516,0,0.0,0,0.0,38991,407.002508361204,0,0.0,39866,413.2943143812709,1227565,0,44094,0,0,8987,0,0,76,0.7943143812709029,0,0.0,0,0.0,0,0.0,0.05221,0.1364004493560101,0.3033901551426929,0.01584,0.3508190686545187,0.6491809313454813,23.50572188926532,4.126987371982312,0.3191850594227504,0.2687363570215862,0.2027649769585253,0.209313606597138,11.033438651878368,5.872226323025914,16.901326697354097,11734.87057416993,47.061331200692464,13.577981909152845,14.842696186118408,9.23613640041053,9.404516705010696,0.5821004123211254,0.8014440433212996,0.709726443768997,0.5586124401913876,0.1286210892236384,0.7560366361365529,0.9212253829321664,0.8867403314917127,0.6555023923444976,0.1676300578034682,0.5106091718001369,0.717357910906298,0.6425576519916143,0.5263157894736842,0.1188405797101449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020051039008384,0.004186051225915,0.006655506518541,0.0089374581056651,0.01119448511469,0.0133747264491831,0.0156207012502674,0.0178957678651593,0.0200412674416229,0.0221171945331041,0.024176859876657,0.0263759938445755,0.028460423668712,0.0303332955797407,0.0326254009840225,0.0346955227582785,0.036657073645417,0.0385193789605783,0.0403355753537159,0.0424239266360983,0.0575717688354017,0.0713418209230253,0.0843871671896481,0.0967881076872902,0.1085413568724227,0.1240821854038384,0.1360370209197915,0.1468830878358948,0.1569405099150141,0.1664591606740367,0.1788881585327744,0.1914322222944144,0.2022416888840524,0.2126127309342439,0.2220998733689368,0.2312046524508446,0.2400062495815012,0.2488168972920718,0.2560019959400764,0.262963937878389,0.2694077654186805,0.2759419069669543,0.2813915800182169,0.2869902540647973,0.2912235171418523,0.2952437193966684,0.2984349433556912,0.302545343697607,0.306481421647819,0.3093820002635393,0.3078132136811843,0.3055082417582417,0.3043655650754794,0.3020948975619602,0.3000474102169017,0.297147832994699,0.294240374280837,0.294705949863099,0.2941538041251195,0.2939382590551602,0.2946081364044272,0.2960575596294106,0.2969200551631911,0.2976832256627311,0.2991502094554159,0.2992846405059354,0.301255230125523,0.3066904047976012,0.310019495891937,0.3145053212455656,0.3184739319333816,0.3197523678501508,0.3257002271006813,0.330871154431922,0.3383663134202382,0.34038255910657,0.3434497483605307,0.3472501003613006,0.3478960064325918,0.3484214530239635,0.0,1.950441478954788,52.36824897966975,153.14771505803134,214.01261668565027,fqhc1_80Compliance_baseline_low_initial_treat_cost,91 -100000,95862,46611,442.81362792347335,5331,54.45327658509107,4239,43.70866453860759,1633,16.690659489683085,77.34109898624328,79.63209843392906,63.34986309044478,65.04423033133772,77.13378827176106,79.42522151294551,63.27308282100774,64.96952838547044,0.2073107144822188,206.8769209835466,0.0767802694370374,74.7019458672753,223.1669,156.2419220713774,232800.17107925977,162986.294956685,451.3236,298.1616249606572,470298.9192797981,310525.521020485,434.5259,211.2778397592524,449801.162087167,217708.71513754997,2778.6567,1279.3308480300475,2868132.857649538,1304086.7789426968,1009.20418,453.67198414139455,1039998.4352506727,460501.6062381072,1598.4664,675.9237582406574,1636680.5407773675,680243.0834136612,0.37861,100000,0,1014395,10581.825958148173,0,0.0,0,0.0,38670,402.8603617700445,0,0.0,39368,407.2103648995431,1234218,0,44349,0,0,8772,0,0,105,1.0953245290104523,0,0.0,0,0.0,0,0.0,0.05331,0.1408045218034389,0.3063215156631026,0.01633,0.3505561535701471,0.6494438464298529,23.889691412464124,4.240234487364268,0.3102146732719981,0.2550129747581977,0.2172682236376504,0.2175041283321538,11.345738471554384,5.941937332038313,17.530474533862005,11691.075768015888,48.33519654724549,13.133078753460724,14.9409384007312,10.158167384781768,10.103012008271795,0.5708893606982779,0.7955596669750231,0.7019011406844107,0.5711183496199783,0.1203904555314533,0.7410788381742739,0.928400954653938,0.8664772727272727,0.7330316742081447,0.1737089201877934,0.503295978905735,0.7114803625377644,0.6417445482866043,0.52,0.1043723554301833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568528175788,0.0041645134814724,0.0064915964255647,0.0090665421243933,0.0113634053625515,0.0135553203614752,0.0159336573041148,0.0179342004590665,0.0199885604559475,0.0222388166576306,0.0242043696928103,0.0262556023917212,0.0284402538978246,0.0305883079202419,0.0326123916784304,0.0346058973485669,0.0364687270584099,0.0385930377123912,0.0404987334413022,0.0425210940832527,0.0570490093847758,0.0710672630742862,0.0839766620926602,0.0970889080254563,0.1096018784681639,0.1245168240288955,0.1363833776468968,0.1478611217417187,0.1580025608194622,0.1682259015163693,0.1809240966707556,0.1927339568578688,0.2033170668086817,0.2121960548603901,0.2207825063522268,0.2308271676044481,0.2401503658754238,0.2482118758434548,0.2560126151472524,0.2623968124935597,0.2679849667533969,0.2735062718462491,0.2792521109770808,0.284564530037367,0.2889889877736362,0.2933426993986,0.2970538562582098,0.3006040567177465,0.3044591919897543,0.3075370121130552,0.3051255821466067,0.3027898854620705,0.300680291271708,0.2981895479654105,0.2962615988579586,0.2936670853886455,0.2916607292705711,0.2913661381746488,0.2917037747482359,0.292248978714255,0.2930865869254495,0.2950316098218355,0.2958744036485151,0.2963520035918734,0.2984021079604516,0.2998481516389151,0.3024763645711348,0.306014373975539,0.3087060142997336,0.3115597783056215,0.3158707100054476,0.3195238095238095,0.3250581358808371,0.3280054541322627,0.3261463139064118,0.3297682709447415,0.3349700782568666,0.3419939577039275,0.3414500683994528,0.3409785932721712,0.0,1.994405103944768,52.81373460455872,153.84086025801466,229.05297728568493,fqhc1_80Compliance_baseline_low_initial_treat_cost,92 -100000,95645,46868,445.7943436666841,5323,54.44090124941189,4193,43.28506456166031,1592,16.320769512258874,77.31769350596971,79.74012014663313,63.289715480586615,65.08132096355509,77.11929320147455,79.54352293307939,63.2152167180136,65.0097794400254,0.1984003044951663,196.59721355374413,0.0744987625730146,71.54152352968879,221.40734,155.12416484812707,231488.67165037376,162187.42730736273,449.70904,297.35543020532424,469618.25500548905,310327.5343251861,440.54367,214.86715837589887,456797.595274191,221787.08655336316,2729.96752,1272.9263484485673,2818855.8314600866,1295471.2619045083,973.90803,440.6544290628874,1000505.6615609808,442971.4455150684,1554.24564,654.8775251117178,1593292.3205604055,657245.3302123358,0.37983,100000,0,1006397,10522.212347744264,0,0.0,0,0.0,38633,403.34570547336506,0,0.0,39986,414.29243556903134,1235977,0,44341,0,0,8788,0,0,77,0.8050603795284647,0,0.0,0,0.0,0,0.0,0.05323,0.1401416423136666,0.2990794664662784,0.01592,0.3474025974025974,0.6525974025974026,23.49969093378465,4.121150919505388,0.303601240162175,0.2756975912234677,0.2065347006916289,0.2141664679227283,11.455402106614985,6.05761611934804,16.918084599573923,11716.3913151924,47.91995955354189,14.015410108633784,14.402989288015249,9.631610902195384,9.86994925469746,0.5773908895778679,0.7846020761245674,0.7132757266300078,0.5900692840646651,0.1057906458797327,0.7405318291700241,0.9114470842332614,0.8694444444444445,0.7272727272727273,0.1531100478468899,0.5088075880758808,0.6998556998556998,0.651697699890471,0.5464231354642314,0.0914368650217706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123591863197,0.0046546059303127,0.0068832487309644,0.0091972479395115,0.0111713654908584,0.0134881825590872,0.0159141452267765,0.0178587848261629,0.0201303818325094,0.0221714262284999,0.0245136785915926,0.0266310215413089,0.0285449490268767,0.0308125560908181,0.0328659840681083,0.0348720495866058,0.0371069247597225,0.039355602642403,0.0414602672438912,0.0433925666374671,0.0580717301341804,0.0721305978750602,0.086150032560973,0.0991531850353892,0.1109890806175681,0.1264231473930587,0.1381146190875955,0.1491856399761234,0.160128796225971,0.1692193675889328,0.1817417002825894,0.1937787119701829,0.2041103051689211,0.2128770873254859,0.2212464464376226,0.2313621542488299,0.2391386939614714,0.2472438994178124,0.2548049087833619,0.2622913253205312,0.2691078746903146,0.275031003580036,0.2798256936138971,0.2837390574409401,0.288591991052542,0.2928954340994516,0.2970075312132509,0.3008393742846242,0.3049912604389201,0.3087227948843163,0.3067300441667564,0.3038300213160971,0.3017245020060533,0.2987577012422988,0.2967976278724981,0.2944729919862972,0.2910039525691699,0.2912397289422856,0.2919531622302403,0.2931582216700683,0.293071370097492,0.2929114718105544,0.2937825015020615,0.2938598432865554,0.2965175787293804,0.2975548038937231,0.2975838055767008,0.3019688218123098,0.3055362600722422,0.3073957513768686,0.3074622808209868,0.3115689381933439,0.3164453907815631,0.319776654342413,0.324044734389562,0.3261098746632306,0.3379237288135593,0.3468620075232627,0.347237269772481,0.3475471698113208,0.0,2.158147412947861,54.25463093658594,151.0760861042126,219.7975199203324,fqhc1_80Compliance_baseline_low_initial_treat_cost,93 -100000,95713,46860,446.7104782004535,5270,53.91117194111563,4172,43.03490643904172,1632,16.664402954666556,77.34880342590687,79.70626606475734,63.338894218876014,65.07702799613489,77.14388101512647,79.5046926824323,63.2619195139168,65.00377103870544,0.2049224107803979,201.5733823250372,0.0769747049592197,73.25695742945015,222.91104,156.15192943608,232895.2597870718,163145.99838692756,454.10464,300.1504864774498,473894.0269346901,313044.48554222594,437.62836,213.3075506558326,454114.8119900118,220401.2935763338,2724.22201,1265.216572116689,2810440.493976785,1286504.9363856206,976.84883,440.4591232565596,1006020.6868450472,445935.83741432097,1587.02308,671.5526201672292,1621921.45267623,670840.3635659135,0.38051,100000,0,1013232,10586.148172139629,0,0.0,0,0.0,38913,405.98455800152544,0,0.0,39672,411.3129877864032,1231058,0,44170,0,0,8911,0,0,89,0.9298632369688548,0,0.0,2,0.0208958030779517,0,0.0,0.0527,0.138498331187091,0.3096774193548387,0.01632,0.3624136677571792,0.6375863322428208,23.445276019590104,4.177962113428213,0.3163950143815915,0.2634228187919463,0.2085330776605944,0.2116490891658677,11.238374369554508,5.910258924729901,17.45930386620595,11688.433579029072,47.57270254400746,13.578427222167427,14.881420156549831,9.558654904108058,9.554200261182157,0.5620805369127517,0.7970882620564149,0.6772727272727272,0.5459770114942529,0.1132502831257078,0.749597423510467,0.9113924050632912,0.8421052631578947,0.7183098591549296,0.1485714285714285,0.4825938566552901,0.7104,0.6106382978723405,0.4901065449010654,0.1045197740112994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872753232813,0.0045209423022341,0.0066967683019633,0.009061449222361,0.0111639824304538,0.0133557286099658,0.0154525161303474,0.0175870164336021,0.0196208676102396,0.0218412568445831,0.0239017690588934,0.0259765584908758,0.0279856884355979,0.030123955030268,0.0321742090549922,0.034160656347517,0.0359494719403603,0.0382129257841275,0.0401963026887645,0.0419801196157292,0.056633526880822,0.0702878074306645,0.083984682368987,0.0967585822348002,0.1094516343385121,0.1248691016405927,0.1372168284789644,0.1481773273145388,0.1583226495726495,0.1674568780571526,0.1792515834374596,0.1914396381970441,0.2018315695594009,0.2113695768671325,0.220286952886033,0.2303473491773309,0.2389536701961309,0.2471831699328013,0.2550119196276535,0.2616464874400064,0.2686396148237309,0.2751567178143712,0.2809153621336362,0.2862053683718813,0.2907991696308256,0.2943045378979126,0.2983618028915241,0.3023515810603077,0.3059378432512761,0.3088859032113596,0.3069422776911076,0.3041476554340058,0.3019754615038271,0.2998412240184757,0.2973642812620581,0.2936716600428004,0.2901309657340558,0.2902307314678449,0.2917922776897791,0.2928757076227436,0.2943853758627122,0.2951242058887162,0.2951113706515391,0.2944230297898888,0.2960859039812085,0.2962482149811761,0.2976793128946021,0.3018790977820999,0.3065440816611899,0.3114598569000277,0.315495389088266,0.3204193496886807,0.3267609205604514,0.3326696278143666,0.3362581375601471,0.3391854771288666,0.3347805861373856,0.3327156681078855,0.3387367244270542,0.349317738791423,0.0,2.1186225399106724,54.24330540009306,149.2009936040305,217.71481260344916,fqhc1_80Compliance_baseline_low_initial_treat_cost,94 -100000,95629,46949,448.11720294053055,5123,52.32722291355133,4043,41.60871702098736,1547,15.790189168557657,77.26744378178137,79.6831767023,63.28338998351626,65.0697121629286,77.07339901443086,79.4921955441595,63.209526087782734,64.99944033962468,0.1940447673505048,190.98115814050232,0.073863895733524,70.27182330391213,222.51724,155.90660434433732,232688.03396459232,163032.76657116285,450.67165,299.24017351811113,470625.019607023,312271.9295591412,441.78248,215.73630733235063,457489.1821518577,222213.0951051166,2626.67164,1237.932460594611,2705828.754875613,1253613.235100869,933.29682,431.2689258753032,955291.0937058842,430316.562836904,1508.33234,649.143302366029,1540717.2719572517,646802.4456047979,0.38002,100000,0,1011442,10576.728816572378,0,0.0,0,0.0,38637,403.35044808583166,0,0.0,40038,414.16306768867184,1229647,0,44094,0,0,8846,0,0,95,0.9934224973595877,0,0.0,0,0.0,0,0.0,0.05123,0.1348086942792484,0.3019715010735897,0.01547,0.3624789365287399,0.63752106347126,23.22278942541596,4.187518116401179,0.3126391293593866,0.2658916646054909,0.2122186495176848,0.2092505565174375,11.168344278282849,5.9123990702167175,16.592567840499854,11676.251930300374,46.4731886752776,13.06585392658126,14.645836693815772,9.45522766125623,9.30627039362434,0.5891664605490972,0.8232558139534883,0.7175632911392406,0.5862470862470862,0.1028368794326241,0.7559183673469387,0.9232456140350878,0.8523316062176166,0.7525773195876289,0.1587301587301587,0.5166784953867991,0.7495961227786753,0.6583143507972665,0.5376506024096386,0.0867579908675799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019555393438304,0.0042790509024538,0.0064266569200779,0.0087797740021136,0.0108342912949267,0.0129140017110033,0.0151722168974447,0.0172538770176316,0.0193662511886624,0.0214439324116743,0.0235272399081063,0.0258148684602504,0.0278786507144547,0.0298608964451313,0.0321838131315737,0.0340745794952909,0.035897754577844,0.0378431677824484,0.0399009756807921,0.0419212243791572,0.056529827348355,0.0708218561149572,0.0839905487004463,0.0967157704092914,0.1091909125459228,0.1252369304403994,0.137033732687569,0.1482645808246038,0.1588084287089528,0.167656503388356,0.1801788198751065,0.1918489388670415,0.2025534138032369,0.2122369472198207,0.2206722670571526,0.2298743601675197,0.2380261410186291,0.2473132799927979,0.2552882268118492,0.2618458152809297,0.2684163608367968,0.2740107377212169,0.2800089958926648,0.2843059653162553,0.2893975493533016,0.2933767563499994,0.2976294775839195,0.3013200396774932,0.3045104994692006,0.3081604097365225,0.3051187733268658,0.3036731324803962,0.3020069009224702,0.3002933144533225,0.2983794231341064,0.2957388495046776,0.2918474646058341,0.2914044059795436,0.2914798206278027,0.2935663762538528,0.2947710951526032,0.2955466387302089,0.2968328065144125,0.2974509935104034,0.2983774182708463,0.2992320708056749,0.2990428583600784,0.3019328968390715,0.3051702395964691,0.3087155052610681,0.3126457809284244,0.3181818181818182,0.3206063296759053,0.3233019373612068,0.3298862461220269,0.3323789071820568,0.3344625808438559,0.3371335504885993,0.3372714486638537,0.3392715756136183,0.0,2.5677026693563287,53.06880399974098,150.1383342512106,203.76271639888,fqhc1_80Compliance_baseline_low_initial_treat_cost,95 -100000,95836,47162,448.7770775074085,5253,53.62285571184106,4175,42.94837013230936,1538,15.630869401894904,77.40182060844235,79.71409031503697,63.36325590393732,65.07522975048212,77.20688202519167,79.52621225401192,63.2887277452782,65.00662482180728,0.1949385832506749,187.8780610250459,0.0745281586591204,68.60492867484425,223.168,156.2931277931459,232864.24725572852,163083.72719556952,449.93981,297.7788480996451,468866.8663132852,310096.8943494269,441.07884,214.3491377918544,457184.56529905257,221292.3380584787,2659.53635,1233.299023165532,2736816.582495096,1248731.7104486898,960.25909,431.56193361111775,987111.1273425436,435543.9306451714,1495.70984,639.4198740607404,1521613.9237864686,630625.8707180123,0.382,100000,0,1014400,10584.738511624024,0,0.0,0,0.0,38644,402.58358028298346,0,0.0,39899,413.1745899244543,1233341,0,44284,0,0,8836,0,0,92,0.9599732876998204,0,0.0,0,0.0,0,0.0,0.05253,0.1375130890052356,0.2927850751951266,0.01538,0.3525442276126208,0.6474557723873792,23.703369142427068,4.127732158108289,0.307065868263473,0.285748502994012,0.2141317365269461,0.1930538922155688,10.954279924584698,5.747403416790988,16.294904942863663,11724.98219431809,47.46554859250342,14.514544034883754,14.382606815397118,9.86682479598956,8.701572946232982,0.5925748502994012,0.7963118189438391,0.6957878315132605,0.5939597315436241,0.1253101736972704,0.7643097643097643,0.9218106995884774,0.8601190476190477,0.7259615384615384,0.1265822784810126,0.5242718446601942,0.71004243281471,0.6374207188160677,0.5539358600583091,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021162842503898,0.0042262514062167,0.0067361928336647,0.0088261880821069,0.0112036274539705,0.0133963109247119,0.0154002955715232,0.0176056338028169,0.0196864075883639,0.0218928794407541,0.0242632361232125,0.0264195097918462,0.0283596817630491,0.030168242004901,0.0322314475787736,0.0343359613139214,0.0363338992174237,0.0382533493716039,0.0404154764996104,0.0425049176233048,0.0574265480449316,0.0708483612984161,0.084911295308554,0.0974600306729133,0.1091544845599696,0.1248653330235112,0.1363265565572989,0.1469181213190738,0.1569914508020876,0.1673951236234306,0.1799229792818571,0.191927378829632,0.2024469217897733,0.212796415692274,0.2215686705659879,0.2320977813205792,0.2406420094583742,0.2488390136394814,0.2568200637484545,0.2642150803461063,0.2702355757554731,0.2755275001461219,0.281619525115883,0.286792362425433,0.2911300210004977,0.2950569405971068,0.29925,0.3023870320261189,0.3067835168812367,0.3091732729331823,0.3066879793678724,0.3045931254118164,0.3023928551367747,0.3004376493622412,0.2985202722699023,0.29623750286194,0.2925736639535617,0.2920459559724787,0.2931204516085152,0.2938084838154086,0.29477389555241,0.2949747658229091,0.29551978035692,0.2959238044491807,0.2974061889095504,0.2981835094700395,0.2999040307101727,0.3032835264514926,0.3079297904814763,0.3110072281583909,0.3150474469046543,0.3173690595495543,0.3178497846038584,0.3241861514171866,0.3295759031691767,0.3348896930080541,0.3414413053331319,0.3475634313330648,0.3531659388646288,0.3603053435114504,0.0,2.3233381252742964,51.42172557135533,156.18719847823448,217.94768592863656,fqhc1_80Compliance_baseline_low_initial_treat_cost,96 -100000,95688,47048,447.75729454059024,5318,54.23877602207173,4220,43.432823342529886,1591,16.282083437839646,77.32145341825886,79.70931779514977,63.3143933609397,65.08054944857179,77.1206879614122,79.51088091138924,63.238619838512506,65.00814932565082,0.2007654568466534,198.43688376053592,0.0757735224271911,72.40012292096765,221.97362,155.54003038451842,231976.44427723435,162549.14972046486,454.08641,300.15872063438974,473919.0598612156,313054.9082793973,443.62096,215.91089017123497,459158.63013126,222307.62041605308,2757.38239,1276.8224662008122,2843033.003093387,1295754.4270972458,989.48438,446.0607079550489,1016127.8530223226,448215.8138481824,1562.50896,666.4039071867433,1600845.581473121,668697.0239704181,0.38101,100000,0,1008971,10544.38383078338,0,0.0,0,0.0,38981,406.6967644845749,0,0.0,40206,415.7679123819079,1234291,0,44250,0,0,8818,0,0,83,0.8465011286681715,0,0.0,1,0.0104506312181255,0,0.0,0.05318,0.139576389071153,0.2991726212861978,0.01591,0.341678674351585,0.658321325648415,23.66668893775779,4.166900984825339,0.3007109004739337,0.2713270142180095,0.207345971563981,0.2206161137440758,10.830848139042294,5.527590477661714,17.086536307855127,11753.60359491626,48.11608607467932,14.026226495012372,14.368860578787572,9.555390209595938,10.165608791283429,0.5597156398104265,0.7947598253275109,0.6863672182821119,0.5428571428571428,0.1138560687432867,0.7633711507293355,0.9247967479674796,0.9005681818181818,0.7180851063829787,0.1732673267326732,0.4755525787006028,0.6967840735068913,0.604143947655398,0.4949053857350801,0.0973936899862825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046688822242,0.0042592029205962,0.0065169725515673,0.0084247111309844,0.0107948070975093,0.0130388721375601,0.0153584139837033,0.0175515621809271,0.0199245545343951,0.0220791450856756,0.0244007463757714,0.0265973833925527,0.0289679151536348,0.0309853059373905,0.0329376548307184,0.0349259194160402,0.0368958587972074,0.038898229445586,0.0410275076699079,0.0430337266019093,0.0583676283189538,0.0720207687798341,0.085473494190867,0.0984403611795163,0.1104288005402211,0.1255636232773767,0.1375027863579912,0.1491015986963329,0.1593189906697874,0.1688886982077161,0.1810777617375191,0.1923659825062786,0.2036589875785855,0.2131206721144695,0.2232513117224538,0.2332237242723176,0.2414027729752038,0.2487496768827899,0.2566355627614826,0.2635405099085278,0.2703193285083358,0.2758350669689816,0.2814570319894,0.2864262012290811,0.2910013720752334,0.2952100819651955,0.299443715232202,0.3028636040247993,0.3067571059431525,0.3098897625350665,0.3074286635932313,0.3044677784640724,0.3024033731553057,0.3007050477961849,0.2982388462736836,0.2958220508819434,0.2920243459015098,0.2917492830807046,0.2920203156423628,0.2932309391871425,0.2943111925370623,0.2940341469184969,0.2950562877253075,0.2958532339418828,0.2976827950534277,0.299257328990228,0.3007102718429985,0.3039570041172957,0.3092852137351086,0.3127002333583831,0.3159492523787947,0.3199957602416662,0.3225745325922183,0.325022942795962,0.328,0.3304358180519171,0.3307763117520712,0.3365754812563323,0.3416301969365427,0.3489167616875712,0.0,2.645174198480219,53.40598688014072,151.78819729921443,223.05454016113245,fqhc1_80Compliance_baseline_low_initial_treat_cost,97 -100000,95708,46956,446.62933088143103,5334,54.5095498808877,4191,43.23567517866845,1670,17.030969197977182,77.3455376358958,79.73349403489593,63.32130932583449,65.08765978444967,77.13569989357414,79.52756793288685,63.2413094601356,65.0121597121193,0.2098377423216533,205.92610200907305,0.0799998656988947,75.50007233037093,222.2187,155.56023729398524,232183.8090859698,162536.0787979953,452.55728,299.6092939308554,472293.361056547,312487.0260823081,436.76879,212.9718133340545,453536.987503657,220311.0880884433,2730.13466,1273.3159051323323,2814956.816567058,1292867.8818419916,965.68032,438.5029763721357,993051.7093659884,442242.3329103718,1631.12306,694.446677546636,1664070.652401053,689611.2347853212,0.3808,100000,0,1010085,10553.80950390772,0,0.0,0,0.0,38858,405.410206043382,0,0.0,39607,411.0419191708112,1236010,0,44286,0,0,8603,0,0,84,0.8776695783006645,0,0.0,1,0.0104484473607221,0,0.0,0.05334,0.1400735294117647,0.3130858642669666,0.0167,0.3546073861599139,0.6453926138400861,23.753199349836382,4.17218847925721,0.3120973514674302,0.2689095681221665,0.2035313767597232,0.21546170365068,11.02716239862704,5.758373667406618,17.767144032236796,11724.661854052329,47.82216354319115,13.75018775313529,14.77196332997473,9.517181289838906,9.782831170242222,0.5678835600095442,0.7941437444543035,0.6842507645259939,0.5791324736225087,0.1063122923588039,0.7520458265139116,0.9211087420042644,0.8676056338028169,0.75,0.134020618556701,0.4920848770629841,0.7036474164133738,0.6159496327387198,0.5254237288135594,0.0987306064880112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022087356508171,0.0045235559612556,0.0067719173562109,0.0089737596292607,0.011231382762269,0.0132919128132002,0.0154902000775019,0.0177996997641003,0.0199709587696335,0.022232007536968,0.0244192605507409,0.0263763352506162,0.0285652567478604,0.0305731302681202,0.032486764842468,0.0346642130510296,0.0367527476511596,0.0390040374056814,0.0411098515968676,0.0432204890958915,0.0586846860019425,0.0730014861951311,0.086315833665694,0.0992350347759293,0.1110196934696159,0.1267030549208767,0.1385593310270178,0.1490716971485178,0.1589959053636528,0.1685220770576805,0.180638206123329,0.1919156909679725,0.2018222788282551,0.2123692388497395,0.22149453500787,0.2314903047091412,0.2399607134087814,0.2484924849248492,0.2566397785416879,0.2628017996359515,0.2694238778343359,0.2755339419940848,0.281205656986094,0.2852850336389973,0.2890864760610876,0.2934701056541579,0.2981651949090091,0.3012867693713357,0.3053763163328515,0.3087558815025103,0.3060783708731873,0.3031548377375032,0.3010976054796058,0.3000849446420087,0.2981049454857464,0.2945023783388218,0.2911813906511378,0.2912685013686505,0.2919762765014657,0.2928668187651504,0.2934481467615125,0.2941490307664947,0.2943875306391804,0.2956294759386922,0.2965487447799165,0.2980068692756036,0.2996762099522835,0.3025870709095465,0.30628583414907,0.3109871855719032,0.3151795011091493,0.3191579169524614,0.3220307231172724,0.3228608111169851,0.3225110256169654,0.3277671755725191,0.329451425068955,0.3283945605845342,0.338143207187585,0.3407864302235929,0.0,2.0625513738783026,53.41615185405156,153.54520228529216,219.1183735419309,fqhc1_80Compliance_baseline_low_initial_treat_cost,98 -100000,95604,47141,447.85783021630897,5340,54.52700723819087,4229,43.57558261160621,1573,16.055813564286012,77.23812690061078,79.66819946870271,63.25655152000609,65.0536888237839,77.0393816350533,79.4735832783076,63.181776787965234,64.98316305985549,0.198745265557477,194.61619039510936,0.0747747320408578,70.52576392841559,221.49908,155.1800456359847,231683.67432325007,162315.2283079855,449.96763,297.4674461429504,470021.23342119576,310509.9810389976,443.17149,215.91208724887372,459399.5125726957,222716.6025169347,2746.08851,1282.8815340885676,2832474.551274005,1302068.105965689,990.73463,448.2758971170477,1020005.533241287,452665.7612608367,1530.84212,647.4528257127305,1564792.4563825782,646355.9856326366,0.38248,100000,0,1006814,10531.076105602277,0,0.0,0,0.0,38662,403.7278774946655,0,0.0,40238,416.6457470398728,1232065,0,44283,0,0,8766,0,0,70,0.73218693778503,0,0.0,0,0.0,0,0.0,0.0534,0.1396151432754654,0.2945692883895131,0.01573,0.3495789285074359,0.650421071492564,23.354582704465265,4.112918332769812,0.3104752896665878,0.2740600614802553,0.2156538188697091,0.1998108299834476,11.459074534080306,6.215194881027081,16.911041330534275,11844.938998797072,48.766740617153104,14.244302786285235,15.03808663823366,10.218910043949515,9.265441148684705,0.5942303144951525,0.8093183779119931,0.6984006092916984,0.6162280701754386,0.1136094674556213,0.7690437601296597,0.910041841004184,0.834733893557423,0.8042553191489362,0.1646341463414634,0.52220367278798,0.7386196769456681,0.647489539748954,0.55096011816839,0.1013215859030837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0044222206444676,0.0064271789456583,0.0090056208897878,0.0113173750203549,0.0138146031357926,0.0160130552297414,0.0182752421035426,0.0207127222142667,0.0230352442309465,0.0253016498399409,0.0275682784981812,0.0298679511326561,0.0316900682460155,0.0338513967057365,0.0356352047679159,0.0377027937593946,0.0399518002202231,0.0421286031042128,0.0442752073444264,0.059568862776256,0.0736180246266701,0.0870209278870398,0.0992332645237393,0.1113692525397596,0.1271858748265599,0.139645812750316,0.1502728745629743,0.1603470780818693,0.1697136350942018,0.1824831693423096,0.1938970189701897,0.2046348452327773,0.2144617912900575,0.2232739052824117,0.2330622704933491,0.2418030953658973,0.2500704598491595,0.2585695282922337,0.2645704905235848,0.2704113593652119,0.2770222743259085,0.2826453143534994,0.2879718313244325,0.2925590234631971,0.2960894545005251,0.3001869111983642,0.3042607730860954,0.3085491723466407,0.3120007406231815,0.3094817233609045,0.3078673377921809,0.3052683546089287,0.3033680218841817,0.3010396061692223,0.2974071801166001,0.2944460303866527,0.294742554556069,0.2950109574030954,0.295226691924156,0.2960020982427217,0.2973079811835395,0.2981081477446523,0.2992442874390734,0.2995097096712171,0.3010598682325981,0.3031607147946533,0.3076898913111767,0.3097664320481843,0.3126207467570871,0.3163626463381432,0.3189263447109796,0.3258883883883884,0.3268605969021533,0.3289021102537882,0.3353133007221057,0.3411536162582188,0.3443172849250197,0.3517669274345832,0.3660547021356313,0.0,2.5339012807582946,53.55267717628256,164.11746870857834,214.85635378007552,fqhc1_80Compliance_baseline_low_initial_treat_cost,99 -100000,95722,48285,459.77936106642153,4771,48.60951505401057,3855,39.70873989260567,1472,15.043563653078708,77.33641368994157,79.71143872516363,63.332022412709286,65.08945005143086,77.1419546637021,79.51797044477884,63.257784484587575,65.01743608932374,0.1944590262394712,193.468280384792,0.0742379281217111,72.01396210712119,252.51072,176.95931514219956,263795.21948977245,184867.3561649732,504.30027,336.96061195660025,526274.5763774264,351459.373165896,481.79379,235.6720756022792,499649.9759720858,243376.08448000372,2706.20799,1277.6674070003592,2791738.0852886485,1299751.0802479056,892.81832,410.0343971988611,918389.6596393724,414381.3464963896,1435.00314,623.0606175528967,1468616.159294624,626017.8250196549,0.38087,100000,0,1147776,11990.691794989658,0,0.0,0,0.0,43435,453.166461210589,0,0.0,43566,451.4113787843965,1048051,0,37652,0,0,10101,0,0,91,0.9402227283174192,0,0.0,1,0.0104469192035268,0,0.0,0.04771,0.125265838737627,0.3085307063508698,0.01472,0.3695826645264847,0.6304173354735152,22.883564949322192,4.087661990542972,0.3125810635538262,0.2843060959792477,0.1940337224383917,0.2090791180285343,11.238787968885951,5.947470381012472,15.830362170427655,11448.905079895178,44.493236766489694,13.587746851356252,13.745794335483014,8.28414918656781,8.875546393082614,0.5870298313878081,0.8166058394160584,0.6979253112033195,0.5935828877005348,0.1029776674937965,0.7482817869415808,0.9317180616740088,0.8411764705882353,0.7578947368421053,0.1,0.5172798216276477,0.735202492211838,0.6416184971098265,0.5376344086021505,0.1038338658146964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026144055773985,0.005010192801144,0.0072287933397634,0.0094824782502642,0.0117900776171632,0.0138716313934776,0.0158374040118704,0.0180722891566265,0.0207129931604183,0.0228794300104416,0.0251242888626928,0.0273810868248411,0.029472255357657,0.0316101721101257,0.0337931959592624,0.0357630131889031,0.0377932862556689,0.0400336120505425,0.0419044055747825,0.0439252531144535,0.0585888961981434,0.0724927287564604,0.0853475666663171,0.097959655632759,0.1105290893760539,0.1255376940718898,0.1369404132170078,0.1477278769767417,0.1569688624160715,0.1662684680244704,0.1786802139728121,0.1899374878328394,0.2003521050229303,0.2101750092857611,0.2187238999516462,0.2277401804670913,0.2362031888934695,0.2441759847165252,0.2514198265601088,0.2577195791399817,0.263542244407469,0.2689307235950857,0.2739279385705848,0.2788374096587374,0.2824001649264501,0.2865489163858207,0.29010379585566,0.2930784861569723,0.2961258547809563,0.2995662663309296,0.2962414915655519,0.292504369125762,0.2890831784648308,0.2858587317636862,0.2829507466012926,0.2797434052390649,0.2767775211214125,0.2765130391996063,0.2771900488004641,0.2781551407534186,0.2793526806570366,0.2798928564394461,0.2802801342309857,0.2817840396453254,0.2825473502965372,0.2834119293154376,0.2832949079213275,0.2887255363930512,0.2915105898827236,0.2961715282181357,0.3001917282936182,0.3049001814882032,0.3052196053469128,0.31146408839779,0.3146014355874575,0.3209402734468697,0.3249730727804277,0.3232610018251876,0.3294245977638396,0.3360933383515243,0.0,2.117383524115194,50.572853613501,148.0449098271679,191.69646794671095,fqhc1_80Compliance_implementation,0 -100000,95619,48350,460.11775902278833,4831,49.44623976406363,3806,39.312270573839925,1394,14.223114652945544,77.26635035352784,79.70330533885681,63.26822878755484,65.07155308954887,77.08698360125322,79.52895043057833,63.20014624790043,65.0081518602154,0.1793667522746176,174.35490827847389,0.0680825396544122,63.401229333464926,251.97194,176.49513374516692,263516.3722691097,184581.4461112404,499.75016,333.5941378423948,522158.5145211726,348390.51262263214,483.22519,236.6096699801845,502591.0436210377,245272.57740693836,2660.99705,1251.2932758545394,2749523.943986028,1275335.426747372,855.44277,388.921603630891,882258.8188539934,394362.933758866,1352.1952,577.6757329997213,1381438.1451385184,574404.7409219005,0.38102,100000,0,1145327,11978.016921323167,0,0.0,0,0.0,43062,449.8373754170197,0,0.0,43543,452.640165657453,1049739,0,37705,0,0,9990,0,0,90,0.9412355285037493,0,0.0,0,0.0,0,0.0,0.04831,0.1267912445540916,0.2885530945973918,0.01394,0.3573275004971167,0.6426724995028833,22.912496823438183,3.9493727475918514,0.3097740409879138,0.2926957435627956,0.2028376248029427,0.1946925906463478,11.195133835564931,6.085504390609334,15.03260605583286,11440.638413325976,43.92216600050222,13.856433329131558,13.334993851030903,8.650027902255065,8.080710918084694,0.5880189174986863,0.8132854578096947,0.6997455470737913,0.5595854922279793,0.1012145748987854,0.7721843003412969,0.917864476386037,0.8699690402476781,0.7259615384615384,0.1688311688311688,0.5060744115413819,0.7320574162679426,0.6355140186915887,0.4982269503546099,0.0834752981260647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.0047983768704032,0.0071902261671422,0.0094253294289897,0.0116548930192789,0.0138711945942089,0.0163291966035271,0.0186689555807608,0.0207804698371122,0.0231273696075417,0.0253191838745432,0.0274454175403971,0.0297305922441038,0.0318705792588621,0.0343239027816512,0.0363717262859448,0.0386206038744985,0.0405795596177814,0.0424646128226477,0.0445960180636817,0.059423744406808,0.073418145997946,0.0859969958298757,0.0991678955129555,0.1115852177311181,0.1271833656402597,0.1383433235556689,0.1488363163171704,0.1584078941735519,0.1674007864033862,0.1792208632627968,0.1889009321482766,0.1986692946826235,0.2083666516962241,0.2162993167291161,0.2254866078855431,0.2339524857311992,0.2423133647816444,0.25,0.2566216433141468,0.2627002871167917,0.2674275680421422,0.2730522901350759,0.2775614373524724,0.2817298347910593,0.2855416635841286,0.2889178258855347,0.2917234094004149,0.2955722423614707,0.2989742372702582,0.2964342878663564,0.2934984264845328,0.2910986367281475,0.2875402126401131,0.2846224623055918,0.2805433321109888,0.2761823523836603,0.2762897069183008,0.2756206021160956,0.2757140057369893,0.2754704979982789,0.2774621212121212,0.2797508309120174,0.2805554936358975,0.2819270171061155,0.2820612769938411,0.2832798432219034,0.289279779261907,0.2939510489510489,0.2958537743313815,0.3011638965626557,0.3057873059457176,0.3124646426551009,0.3167556993454217,0.3170438799076212,0.31885236380532,0.3232732732732732,0.3287752675386444,0.327692720923986,0.3303736588975213,0.0,1.912536446150788,51.18635726765373,142.00275443694144,190.29013029673308,fqhc1_80Compliance_implementation,1 -100000,95711,47431,453.1767508436857,4789,48.95988966785427,3785,39.02372768020395,1403,14.272131729895206,77.34534288058313,79.71235759889004,63.32656324425341,65.0737246523815,77.16551971078297,79.53689952280723,63.25892396931029,65.01013050738167,0.1798231698001586,175.45807608280484,0.0676392749431187,63.59414499982563,252.92454,177.04834898212002,264258.5909665556,184982.23713274332,497.09965,331.5286676565051,518884.5169311783,345893.97003114066,469.36107,228.9843133025076,487048.60465359257,236698.3863416959,2651.09499,1238.5946765302776,2736571.1464721924,1260773.8886128846,873.00698,392.9903022107229,898270.7525780736,396743.5741040453,1361.64654,577.3926184574628,1387950.5594968186,575360.3462312919,0.37767,100000,0,1149657,12011.754134843435,0,0.0,0,0.0,42870,447.37804432092446,0,0.0,42373,439.36433638766704,1052516,0,37795,0,0,10051,0,0,97,1.0134676265006113,0,0.0,0,0.0,0,0.0,0.04789,0.1268038234437472,0.2929630403006891,0.01403,0.3726981585268215,0.6273018414731786,22.935282756974328,3.96920901071244,0.3099075297225891,0.2879788639365918,0.2047556142668428,0.1973579920739762,11.38406321518764,6.323844867776222,15.032469260409115,11320.833079479244,43.77081784139357,13.676474844753413,13.452938433234705,8.565436923176671,8.07596764022878,0.5973579920739762,0.8027522935779816,0.7237851662404092,0.584516129032258,0.1124497991967871,0.7832764505119454,0.904950495049505,0.9136904761904762,0.723404255319149,0.1258741258741259,0.5139686184462304,0.7145299145299145,0.6475507765830346,0.5400340715502555,0.1092715231788079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0044594895911458,0.0065845541982874,0.0086532602071907,0.010982529642661,0.0130219204023661,0.0151983119782269,0.0172718271184018,0.0192793253258369,0.0213841885985116,0.0234253260067251,0.0255396496128488,0.0275869162723719,0.0296908321056589,0.0316205533596837,0.0334408402075709,0.0355019780857101,0.0373806558738065,0.0394792933861526,0.0414760470617659,0.0563243480349664,0.0702496205976241,0.0834951048804289,0.0957987437265237,0.1080533513422252,0.1236770806874947,0.1346547898374545,0.1454895987558983,0.1554911935704514,0.1650435454116435,0.176968743602728,0.1882870104700137,0.1994994831619607,0.2094069484883644,0.2184516796776076,0.2267281412437518,0.2348635318797563,0.2423795919285537,0.2496028323725659,0.2560514805230494,0.2620245405867999,0.2674216129673129,0.2721660457690261,0.2771159349145723,0.2814313111450974,0.2843069648310511,0.2880417114706544,0.2916910028187612,0.2947288065417658,0.2974623440343981,0.2941960319810482,0.291231158543294,0.2884525940437767,0.2857246031402117,0.2834489005033482,0.2791803654713663,0.2750386667087529,0.2745409055974359,0.2743072662713851,0.2740864377286125,0.2748975791433892,0.2762101129111438,0.2766001749052597,0.2784060552092609,0.2786032689450223,0.2801088505896074,0.2800180602195445,0.2836229136232244,0.2888950544496081,0.2924871784833418,0.2948203579317495,0.2982087513788937,0.3011575802837938,0.3056330593469572,0.3078854379765668,0.3125584658559401,0.3136486893642663,0.3196966673318699,0.3201086956521739,0.334106728538283,0.0,2.0719867583445604,51.2448034115291,143.73047551358155,184.6661020644534,fqhc1_80Compliance_implementation,2 -100000,95659,48039,459.162232513407,4874,49.67645490753614,3870,39.83942964070291,1428,14.56214261073187,77.2498286400838,79.64898376167152,63.26585613190741,65.03910565532223,77.06522005422929,79.46779748673805,63.195988840277806,64.97261324493729,0.1846085858545194,181.1862749334665,0.0698672916296061,66.4924103849387,251.3236,176.0894956183553,262728.65072810714,184080.42695235717,500.28997,334.03484559136456,522308.2093686951,348508.43683434336,475.21057,232.9122619600261,492687.3477665458,240302.8874710645,2661.91276,1250.9997378207936,2744619.2203556383,1269679.0451716972,847.81971,389.14534791326287,873513.3129135785,394033.5859707941,1380.3121,592.6545498478741,1409942.5250107152,592359.8299504861,0.38053,100000,0,1142380,11942.211396732142,0,0.0,0,0.0,43105,449.9628890120114,0,0.0,43039,445.8440920352502,1049161,0,37690,0,0,9931,0,0,61,0.6272279660042442,0,0.0,1,0.010453799433404,0,0.0,0.04874,0.1280845137045699,0.2929831760361099,0.01428,0.3546294476115589,0.6453705523884411,23.125141974684045,3.9683583905824578,0.3080103359173126,0.2987080103359173,0.2015503875968992,0.1917312661498708,11.387066102289202,6.225911546240966,15.431683504977151,11462.117842543328,44.64527232388024,14.405084382762452,13.578240548054762,8.73716277642632,7.92478461663669,0.5919896640826874,0.8070934256055363,0.7030201342281879,0.5705128205128205,0.1010781671159029,0.7720291026677445,0.900763358778626,0.861271676300578,0.7557603686635944,0.14,0.5074060007595899,0.7294303797468354,0.6382978723404256,0.4991119005328597,0.0912162162162162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488755622188,0.0046244181447564,0.0066990793840907,0.0087888640520219,0.0108126252403088,0.0129957427739188,0.0151527511522616,0.0170214938479603,0.0191859275925547,0.0212001106092727,0.0233555229606228,0.0255675398048279,0.0280290168235838,0.0298282863680402,0.0318610749757376,0.0341817580076327,0.0363400860059064,0.0382790519004557,0.0403042062443429,0.0423530883763606,0.0571727092257862,0.0708937640714173,0.0845760701879584,0.097860968193344,0.1103888566453859,0.1266204561087888,0.137305286853478,0.1478103356419819,0.1579617289364751,0.1678768609422329,0.1793250765977646,0.1913276370575989,0.2018382633535767,0.2112784181261858,0.2199205385719015,0.229227538856362,0.2374711820399758,0.2451644918628125,0.2534052504011197,0.2597272800376799,0.2662076812334556,0.2709028136596364,0.2761431695028044,0.2801043971904166,0.2835837262857769,0.2870122003980271,0.2902930288009036,0.2937864647831582,0.2980988988157074,0.3011007329399624,0.297506715803399,0.2941460254448717,0.2904468847923665,0.2881262670141906,0.2850298332018986,0.2813294142861516,0.2774930397367755,0.2782464548319328,0.278595580450152,0.2785945231417802,0.279356930053027,0.2809283950617284,0.2814119712422672,0.2812269609704877,0.2820839238104388,0.2834404811281626,0.2845751449172911,0.2883191237787043,0.2934944948074051,0.2976298101489721,0.3012892502582993,0.3044523411371237,0.3086419753086419,0.3096614368290669,0.3171565908670734,0.322599395489421,0.3251763999399489,0.3291266025641026,0.3328837334772053,0.339531424321309,0.0,2.3520784397642065,54.01915591722664,135.91807234875276,194.4602389185692,fqhc1_80Compliance_implementation,3 -100000,95736,47979,458.05130776301496,4787,48.76953288209242,3799,39.00309183588201,1421,14.404194869223698,77.32698317968122,79.68530976938841,63.31555014592704,65.06054525799566,77.1389285174521,79.50311604537517,63.24375710501867,64.99371409987603,0.1880546622291206,182.19372401324563,0.0717930409083678,66.83115811962637,252.46738,176.8715385136211,263711.6027408708,184748.80684962936,500.71904,334.1071560433248,522330.6488677196,348298.9776421255,473.8959,231.23894201204683,490082.8946268906,237898.16416606607,2636.92075,1249.86417540506,2707896.872649787,1259182.399578448,873.98847,406.8360638510789,894044.1944514081,406169.0082463466,1375.14398,593.9759006357765,1394998.286955795,586443.1442696282,0.38003,100000,0,1147579,11986.891033675942,0,0.0,0,0.0,43125,449.7472215258628,0,0.0,42897,443.2292972340603,1050048,0,37656,0,0,9900,0,0,73,0.7625135790089412,0,0.0,0,0.0,0,0.0,0.04787,0.1259637397047601,0.2968456235638186,0.01421,0.3575879396984924,0.6424120603015075,22.971963520950464,3.955191816494008,0.3063964201105554,0.2953408791787312,0.202684917083443,0.1955777836272703,11.587037514765871,6.604489583336147,15.338293662250669,11360.35255009509,43.9369587247984,13.888616081354636,13.298167355128582,8.57026271123199,8.17991257708319,0.6046327981047644,0.8119429590017825,0.7190721649484536,0.5857142857142857,0.1318977119784656,0.7520729684908789,0.8831967213114754,0.8847262247838616,0.7384615384615385,0.1420454545454545,0.5360586193598149,0.7570977917981072,0.6487148102815178,0.5339130434782609,0.128747795414462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020161086064535,0.004258684674819,0.0064449992895276,0.0086150845253576,0.0109941520467836,0.0134820019347283,0.0155300403801443,0.0176796031276157,0.01982748047913,0.0219035629113315,0.0238288015906365,0.0261761294229959,0.0281238435919575,0.0302942933047758,0.0320920156798019,0.0339856989336199,0.0361738914369131,0.0381419665363111,0.0402336482595907,0.0422144896130685,0.0567619485102207,0.0709107077470314,0.0838558158065801,0.0973791827423441,0.1093964117808277,0.1248136517905287,0.1359818436346667,0.146282258751384,0.1561671654553227,0.1658545485768256,0.1776733457645752,0.1893018822968787,0.1998346046288941,0.2084482079558881,0.2165178817132101,0.2254142421723469,0.2340995911802158,0.2421590819509668,0.2498637045113806,0.2562421936770216,0.2626150373328703,0.2687038988408851,0.2729049915287371,0.2777051265131792,0.2816416839904203,0.2852088367276493,0.2878913097921362,0.2917149294197014,0.2945458313365368,0.2981586028597056,0.2954083760476786,0.2924703391578108,0.2890461252795791,0.2858359680656012,0.2828332294541893,0.2784715208275946,0.2751288456066019,0.2755628325828899,0.2762920314788948,0.2758185726721978,0.2763128449947785,0.2776640957028176,0.278548737669286,0.2776887464387464,0.2794906166219839,0.2800871866728943,0.2828505903338146,0.2870919418263529,0.2927584646970804,0.2961638235987737,0.3024177209490792,0.3072241750170505,0.3107151725850509,0.3147135904155747,0.3147480351363846,0.3154831199068684,0.3203313253012048,0.3181183974486745,0.3217415115005476,0.3213603362628964,0.0,2.5315037979379755,52.30508301708603,138.79889414784049,187.0617718000242,fqhc1_80Compliance_implementation,4 -100000,95762,48388,461.6653787514881,4807,49.06956830475554,3832,39.47285979824983,1412,14.40028403750966,77.39144353273707,79.72977091225538,63.36142006586866,65.08699221531354,77.20986989330358,79.5523279972018,63.29212301577706,65.02205924892151,0.1815736394334948,177.44291505357523,0.069297050091599,64.9329663920355,252.81454,177.07129892691904,264002.98657087365,184907.68668878992,501.57646,334.8707307033852,523229.4438294939,349146.68839146907,480.5388,234.46344479189656,498509.65936383954,242317.88683979743,2699.78391,1261.115620071138,2783515.246131033,1281694.0727779458,887.53857,405.5026708910365,911541.3316346776,408522.37092858815,1382.4035,589.9248725078291,1411804.1603141122,587756.0544612549,0.38171,100000,0,1149157,12000.135753221528,0,0.0,0,0.0,43143,449.9488314780393,0,0.0,43472,450.6484826966855,1051487,0,37701,0,0,9965,0,0,89,0.929387439694242,0,0.0,0,0.0,0,0.0,0.04807,0.125933300149328,0.2937382983149573,0.01412,0.3621103117505995,0.6378896882494005,22.95926378108064,3.909217548730425,0.301670146137787,0.2912317327766179,0.2027661795407098,0.2043319415448851,11.1747367432664,6.026903380481068,15.002328454453425,11504.38666669431,43.860662844193214,13.757981389008464,13.05696399334271,8.657023174422468,8.388694287419566,0.5965553235908142,0.8378136200716846,0.7050173010380623,0.5714285714285714,0.1174968071519795,0.7617391304347826,0.9438444924406048,0.8421052631578947,0.7070707070707071,0.1626506024096385,0.5257270693512305,0.7626339969372129,0.6518607442977191,0.5250431778929189,0.1053484602917342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021565689292078,0.0041853724778823,0.0066658549948255,0.008683641238663,0.010950574981444,0.0132114648644247,0.0151314448746688,0.017344460995368,0.0197468561329669,0.0219468773021199,0.0240061475409836,0.0262434340118187,0.0286063645050913,0.0305678204217741,0.0325340700575222,0.0345333402200299,0.0366276482338208,0.0389346387603974,0.0409450946965759,0.0427205300220842,0.0573474457735746,0.0710167522941539,0.084219802354126,0.0971962223671202,0.1091967354857757,0.1251321856097458,0.1361409239384041,0.147051939485499,0.1571106673358892,0.1664022638597093,0.1788962681506517,0.1901028430534978,0.2010802234345454,0.2107879012966017,0.2198931586352444,0.229414237978269,0.2380623300191716,0.2464982533388747,0.254032303768773,0.2605626551649181,0.2664732937342547,0.2719932696914107,0.2777245806291449,0.280940579241646,0.2835800987061491,0.2875610386096112,0.2908866102986174,0.2947567732425151,0.2986041101202016,0.3017124504758269,0.2994550481866259,0.2958824094006664,0.2934126694546577,0.2910678578107692,0.2874231133191389,0.2839686525146466,0.2799798586961652,0.280449423544184,0.2805043614024369,0.2807736669328365,0.2825045216386045,0.2840285562570063,0.2850531582238899,0.2856824760632376,0.2867414437733678,0.2867078424248715,0.2879087925766663,0.2924953095684803,0.2969072164948453,0.3013390212110439,0.3063704375425073,0.3094960829980944,0.3126058856748447,0.3169237749546279,0.3231826199981432,0.3228887594641817,0.3282181168057211,0.330429617897446,0.3332442544094067,0.3406716417910447,0.0,2.1121603904960957,49.902861223726056,142.06399779239354,194.09731106454024,fqhc1_80Compliance_implementation,5 -100000,95718,48205,459.6732067113813,4728,48.05783656156627,3776,38.75968992248062,1443,14.636745439729204,77.37264048070351,79.73197530652146,63.34029949113111,65.08165945799655,77.18527931369219,79.54808020914429,63.26884980386966,65.01415966533416,0.1873611670113177,183.8950973771745,0.071449687261456,67.49979266238881,253.36938,177.53256529246576,264704.0055162038,185474.5871126285,501.82612,334.772454762638,523601.73635052965,349074.8289377526,480.24637,234.97966505180213,496785.5157859546,241836.6722039539,2628.88614,1243.148099610102,2699566.72726133,1251908.2858084172,844.61037,386.7365023099389,866576.0463026807,388218.9267535251,1393.58154,601.5846392833353,1415151.9045529575,595091.3420243458,0.37917,100000,0,1151679,12032.00025073654,0,0.0,0,0.0,43134,449.9258237740028,0,0.0,43387,448.40050983096177,1045849,0,37534,0,0,9908,0,0,94,0.9716040870055788,0,0.0,0,0.0,0,0.0,0.04728,0.1246934092887095,0.3052030456852792,0.01443,0.3567951318458418,0.6432048681541582,23.206373718871696,3.982615795961291,0.3064088983050847,0.2915783898305085,0.2063029661016949,0.1957097457627118,11.325866112993491,6.23076644540656,15.45354264675575,11416.315731155964,43.479027072052624,13.752123267700888,13.119328142366426,8.482698336383326,8.12487732560199,0.5892478813559322,0.8228882833787466,0.7026793431287813,0.5442875481386393,0.1109607577807848,0.7449832775919732,0.9087301587301588,0.879154078549849,0.6721311475409836,0.1067415730337078,0.5170542635658915,0.7504187604690117,0.6319612590799032,0.5050335570469798,0.1122994652406417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0046111904979072,0.006989460016028,0.0091099285017874,0.0114998627337339,0.0138546735346214,0.0162786430726575,0.0183928225123248,0.0205051671794662,0.022387143003378,0.0244425078177064,0.0267348384513506,0.028996832970016,0.0309165808444902,0.0331483162759986,0.0351096595489592,0.0369511424932962,0.0389374656418873,0.0411062839087866,0.0430471508472987,0.0580655939689467,0.0720317257688162,0.0854434693257001,0.0982005843896491,0.1107081866289979,0.125824663790916,0.1371186728329585,0.1475565110042143,0.1580785373303288,0.1668096606752177,0.1785333491292501,0.1902185674096516,0.2006699876008788,0.2099788916474358,0.2185106944811196,0.227735495806884,0.235621728406085,0.2433664681579214,0.2506928039251317,0.2568103645952763,0.2627741450147561,0.2682119205298013,0.2726605069888652,0.2764908408210271,0.2808827639845905,0.2849887828809506,0.2884331439725718,0.2915676431340154,0.2952335385092846,0.2987747035573122,0.2955052555176214,0.2923962152734863,0.2900418904101886,0.2870369035086454,0.284405030252699,0.2811669060790366,0.2776681869111683,0.2769520379767556,0.2769599510437207,0.2765644128240158,0.276691897119265,0.2784758021835858,0.279417273673257,0.2794854734974495,0.2808410212400772,0.280910475109035,0.2806053432532973,0.2851688601936926,0.2893525727533825,0.2958268330733229,0.302221426012182,0.3064853556485356,0.3078790141896938,0.3094809480948094,0.3161248614702623,0.3199112978524743,0.3209932279909706,0.3209654897267106,0.3197297297297297,0.3339580209895052,0.0,2.6485442035079294,51.62629734454001,137.1395390868476,185.3218681350638,fqhc1_80Compliance_implementation,6 -100000,95732,48149,459.0941378013621,4903,49.84749091212969,3879,39.82994192119668,1448,14.64505076672377,77.33281654085012,79.69961310778393,63.319784280511655,65.07138612984339,77.13988098871717,79.51344731557275,63.24619829186754,65.00396564239985,0.1929355521329512,186.16579221118457,0.0735859886441119,67.42048744354179,252.09074,176.56760573028043,263329.6494380145,184439.48285868927,496.00286,331.6252835636748,517397.2757280742,345691.2877237234,476.79073,233.32388448821533,494126.6661095559,240714.37771384988,2738.98611,1290.0253308589035,2811144.518029499,1297585.0194907703,894.02321,408.59558675185497,916958.968787866,409894.1694779245,1397.2192,605.6721097663346,1413848.6399532028,591828.8022909075,0.38063,100000,0,1145867,11969.529519909747,0,0.0,0,0.0,42830,446.6636025571387,0,0.0,43122,446.5382526219028,1053757,0,37812,0,0,9915,0,0,72,0.7520996114152008,0,0.0,1,0.0104458279363222,0,0.0,0.04903,0.1288127577962851,0.2953293901692841,0.01448,0.3681631052734758,0.6318368947265242,23.03851808334229,4.057613237666086,0.31425625161124,0.2812580562000515,0.2062387213199278,0.1982469708687806,11.556890360138604,6.427045573782764,15.64479125172309,11457.546888422909,44.60134057732245,13.411260448157662,13.906954936971976,8.92518971704043,8.357935475152383,0.5962877030162413,0.8047662694775435,0.7169811320754716,0.5775,0.1287386215864759,0.78125,0.9373695198329852,0.875,0.7281553398058253,0.1963190184049079,0.5150278293135436,0.7009803921568627,0.6568516421291053,0.5252525252525253,0.1105610561056105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0047366445893724,0.0072190070057873,0.0094632093595308,0.0117812232938591,0.0138628585397653,0.0160107690268103,0.0181827462991322,0.0204801537800862,0.0223835512640665,0.0247493284668539,0.0267073283430366,0.0288513937300142,0.0309580943161103,0.0330891456871646,0.0350409327710245,0.0370776974542742,0.0392303381281524,0.0412095625318456,0.0430162417827414,0.0573072184752876,0.0715466549479984,0.0851231175804354,0.0979256253088431,0.1103111692035248,0.1261222202248141,0.1373692806991494,0.148127647797671,0.1580234781401211,0.1667542551936421,0.1780445784429848,0.1894245958754409,0.1999477971484192,0.2097350841323814,0.2179202323074553,0.2272123305872973,0.2351175531974246,0.2429500596403574,0.2508142213547281,0.2576194728767374,0.2636037495660224,0.2691447899720274,0.2749579593093484,0.2793225783253829,0.2830207017202838,0.2865174773441835,0.2894160355511047,0.2926863393538539,0.2969595732007355,0.2997782646569701,0.2979622600877547,0.2946596801034231,0.2913921270484879,0.2873868541483203,0.2854108490285782,0.2828875942321513,0.2795765189223355,0.2798748833172297,0.2798780695480399,0.280494529929734,0.2806935682556273,0.2817542407943731,0.2824581890978854,0.2817627962822964,0.2841863469959084,0.2847692427426259,0.2854954034729315,0.2877123814887825,0.2919560286162973,0.2972001737550843,0.3019636232015202,0.3078100263852242,0.3099207092464257,0.3110793316272768,0.3174191156021136,0.325312463497255,0.3313307299489336,0.3379749353491147,0.3408290436196153,0.3458049886621315,0.0,2.6919265707688744,50.850881617164845,143.04943746538166,196.2930588236713,fqhc1_80Compliance_implementation,7 -100000,95779,48176,458.20064941166646,4913,50.03184414120005,3897,40.09229580597,1528,15.525323922780569,77.34910350822409,79.67575192820502,63.34642956891118,65.0658632125515,77.1462320926913,79.47811973461074,63.26849837328581,64.99253158624526,0.2028714155327833,197.63219359427356,0.0779311956253678,73.33162630624201,251.75832,176.2686613472494,262852.9009490598,184036.4441002425,500.9477,334.0679704595992,522362.5533780892,348129.49246616894,474.59123,232.07502801392968,491645.50684388017,239415.5812513632,2780.60244,1307.2746740729076,2863242.7254408584,1325121.5015238482,907.47504,411.2043151597473,932199.9603253324,414302.7687347169,1486.88048,646.9848295102648,1513134.5702085008,643900.4881955677,0.38088,100000,0,1144356,11947.859134048174,0,0.0,0,0.0,43055,448.9084246024703,0,0.0,42806,443.0720721661325,1057136,0,37999,0,0,9995,0,0,99,1.0231887992148592,0,0.0,1,0.0104407020328046,0,0.0,0.04913,0.1289907582440663,0.3110116018725829,0.01528,0.3707383596337424,0.6292616403662575,23.30308815187534,4.010150627242539,0.3169104439312291,0.2640492686682063,0.2073389787015653,0.2117013086989992,11.19405807164957,6.158609029389198,16.47112538847986,11518.765334877318,44.7923971089009,12.575206363510809,14.204331635298283,8.973196379098683,9.039662730993124,0.5789068514241724,0.8163265306122449,0.691497975708502,0.573019801980198,0.12,0.7416309012875536,0.9135514018691588,0.8373983739837398,0.71875,0.1477272727272727,0.5095168374816984,0.7470881863560732,0.6293302540415704,0.5275974025974026,0.1124807395993836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759073233959,0.0041760001621747,0.0065840865974779,0.0087759392997531,0.011306788140074,0.0133046948165641,0.015583277278379,0.0177374087870592,0.0204354800805157,0.0226514701970493,0.0250586511766091,0.0271110609434485,0.0291763013205898,0.0314645367806745,0.0336625701088749,0.0357677728545017,0.0379027751909107,0.0400045624695403,0.0418861768342737,0.0439468888310335,0.0588284405297377,0.0732791532000795,0.0867882982069833,0.0991349862838043,0.110964736631326,0.1261955338554051,0.1383550462702863,0.1485381236505961,0.1584975343167602,0.1676096181046676,0.1798815931108719,0.190655418559377,0.2015267839665934,0.2106178429635462,0.2185151358429525,0.2281749108388897,0.2366071428571428,0.2442657971666292,0.2525071470708354,0.2588938235428781,0.265224933502949,0.2703091553496859,0.2749958586743025,0.2791839863917871,0.2836455007829475,0.2879515993888314,0.2915400107579339,0.2957097976367637,0.298198583213541,0.3007166519288891,0.2977932761568806,0.2944364957076821,0.2928792569659442,0.2897007474100366,0.2876840279322154,0.2842631064401809,0.2804546889801073,0.280459657221431,0.2809696474473554,0.2813573806683639,0.2816648927230967,0.2831956140177885,0.2838052284306356,0.2839552987887845,0.2851447099795844,0.2866071196062602,0.2882254066835703,0.2936455481068832,0.2973399775407074,0.3018388339489257,0.3060899622504207,0.3087191439771162,0.3128120852032109,0.3165231964653005,0.3172205438066465,0.3205020920502092,0.3294735216921414,0.3336035670855289,0.3370879120879121,0.3498439937597504,0.0,2.27686841808218,50.42824683661971,145.33694603335664,199.67380703511344,fqhc1_80Compliance_implementation,8 -100000,95687,48191,460.18790431302057,4846,49.69327076823393,3904,40.433914742859535,1493,15.352137698955971,77.31532774038504,79.7073221738395,63.31028192710126,65.07622614882514,77.12808546201845,79.518392258964,63.23947927802382,65.00623842318316,0.1872422783665968,188.92991487550148,0.0708026490774358,69.98772564197964,251.5898,176.23168123333957,262929.9695883453,184175.1556986211,502.3958,334.73718782890194,524676.9153594532,349461.25161087915,479.32877,233.66257571445104,498311.2230501531,242159.813634784,2741.28866,1287.072440594918,2840611.0861454536,1320847.4616143445,917.2684,420.4555204441477,947132.5362901962,427926.2913918791,1446.8985,618.1036500729576,1489178.3627870034,628077.4670050448,0.3814,100000,0,1143590,11951.362254015698,0,0.0,0,0.0,43205,451.1480138367804,0,0.0,43332,450.3015038615486,1054691,0,37848,0,0,9952,0,0,88,0.909214417841504,0,0.0,0,0.0,0,0.0,0.04846,0.1270582066072365,0.3080891456871646,0.01493,0.3486855109705475,0.6513144890294524,22.84532219230833,4.092876975501715,0.2922643442622951,0.2866290983606557,0.2190061475409836,0.2021004098360656,11.48812359593332,6.228945849084882,16.036910346220367,11417.935371333724,45.00278174546437,13.888842538533124,12.959915786037309,9.456397191574352,8.697626229319585,0.59375,0.8212689901697945,0.7090271691498685,0.5754385964912281,0.1242078580481622,0.7672131147540984,0.9221311475409836,0.8914956011730205,0.748792270531401,0.1467391304347826,0.5149031296572281,0.7432646592709984,0.63125,0.5200617283950617,0.1173553719008264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0044202031671363,0.0066065883212567,0.0089305671265722,0.0109761555989583,0.0133435192258721,0.0155338419485129,0.0181196057402584,0.0202178248197576,0.0220165072603272,0.0241523598547781,0.0260811504879301,0.0283315844700944,0.0302733670619996,0.0322151114781172,0.03402626952115,0.0361083769362275,0.0384842918080767,0.0406702794911534,0.0426893453814005,0.057734500700002,0.0716162874702907,0.0848428874288952,0.0973525821793846,0.1092772190504332,0.1245924890977602,0.1359592313409066,0.1461754744712122,0.1570268248370204,0.1664520283322601,0.1781061071417025,0.1899353637278997,0.2004070836916177,0.2098173740822199,0.2191326755351951,0.2278398190145609,0.2361605896476631,0.2442784166347863,0.2513251835960999,0.2575717641666189,0.2631457083979717,0.2690746135935507,0.2742638007764416,0.2784000959462701,0.2823296537821657,0.28658897156655,0.28997184860807,0.293315195280716,0.2968673202783454,0.2997230282247428,0.2964826825264404,0.2937826685006877,0.2901887429326882,0.2875357380079129,0.2841713276857113,0.2796533753113967,0.2757515473032714,0.2758637596835877,0.2767683984893335,0.2779160297202175,0.2793772579984357,0.2796988342605516,0.2800400534045394,0.2795538536889443,0.2813839339159583,0.2819961114711601,0.2828592516890932,0.2879972371354117,0.294437239300361,0.2975822433610781,0.3007856850901494,0.3033601014370245,0.3083443209644,0.3129660630041089,0.3175961628891188,0.3216353538934184,0.3265983112183353,0.3304382155546782,0.3323369565217391,0.3354572713643178,0.0,1.450762480977753,53.91731258938359,143.0219831265106,194.3276317417076,fqhc1_80Compliance_implementation,9 -100000,95629,48031,459.32719154231455,4722,48.26987629275638,3756,38.722563239184765,1415,14.44122598793253,77.3146043072854,79.7347566284658,63.296484254502126,65.0835083716404,77.13729874323533,79.55966657296095,63.22937130460236,65.01948618328139,0.1773055640500729,175.09005550485313,0.0671129498997658,64.02218835901863,251.84874,176.32798202182872,263359.7548860701,184387.13594805828,497.47149,331.4735087224652,519634.5773771554,346050.5836984546,473.90751,230.9506022585553,492122.9752480942,238856.8680076154,2646.30471,1236.343542609617,2728638.268726014,1254406.2071721412,882.01256,398.7969846776648,907470.4953518284,402266.0261344172,1382.29968,588.1814907172135,1411661.8598960568,586403.0805044862,0.38012,100000,0,1144767,11970.897949366825,0,0.0,0,0.0,42850,447.4793211264365,0,0.0,42765,443.829800583505,1055752,0,37917,0,0,10049,0,0,92,0.9411371027617144,0,0.0,2,0.0209141578391492,0,0.0,0.04722,0.1242239292854888,0.2996611605252012,0.01415,0.3603255340793489,0.639674465920651,22.846654238874805,4.0542200397755845,0.2984558040468583,0.2880724174653887,0.2058040468583599,0.2076677316293929,11.637584968108738,6.401418756148918,15.106275437627817,11391.319295989926,43.040824985176044,13.41664480929172,12.62702718259231,8.532599212227474,8.464553781064545,0.6003727369542066,0.8207024029574861,0.7181088314005353,0.610608020698577,0.1153846153846153,0.7759515570934256,0.9205020920502092,0.8717948717948718,0.7931034482758621,0.147239263803681,0.5223076923076924,0.7417218543046358,0.6588380716934487,0.5456140350877193,0.1069692058346839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024824455635151,0.0047864842664611,0.0069842043285824,0.0091551084692374,0.0114339192708333,0.0137808107557547,0.0159729092930508,0.0177954847277556,0.0196990927780221,0.0216690049257048,0.0237333333333333,0.0258654340010272,0.0276528985134509,0.0299314821492967,0.0319470679920313,0.0340178257542858,0.0362023768818708,0.038216758894922,0.0401735547509052,0.0421151439299123,0.0562750201206191,0.0702485831910413,0.0835442240446913,0.0965568783486489,0.1086658222503694,0.124106603983355,0.1356659549833763,0.1459780894326271,0.1560621296078389,0.1658896074597683,0.178010810111014,0.188854086509803,0.198999825677678,0.208818052360609,0.2178091249724487,0.2266962552011095,0.2350923453369236,0.2426474729384201,0.2502498864152658,0.257042616861005,0.2634801226780857,0.2694520451834701,0.2747728563316297,0.2788814071074261,0.2834641847371039,0.2872531639336189,0.2904641075959651,0.2936088602128686,0.2961594127985113,0.2984244915164928,0.2948907463649313,0.2914133582181723,0.2884934356638835,0.2861161197259286,0.2838232893584816,0.2800966272207443,0.2773220805082736,0.2765622437264228,0.276712796856313,0.2766867448408597,0.2782337798007686,0.2798234428641491,0.2807516611295681,0.2805919811844061,0.2816056378267701,0.2841652500901457,0.2858711875862457,0.29066054988996,0.2940850725089122,0.2988096170412718,0.3019755409219191,0.305674798450424,0.3087701739021644,0.3134732566012186,0.3159019134311722,0.3183052047680869,0.3189139438564197,0.3214069132807762,0.3256445047489824,0.333716915995397,0.0,2.033120073687505,50.47752311924411,133.6803709136125,192.0054611392148,fqhc1_80Compliance_implementation,10 -100000,95641,47930,457.4607124559551,5030,51.43191727397246,3985,41.02842923014188,1453,14.73217553141435,77.29129418892526,79.6916964025104,63.29829466637945,65.07024718474901,77.1062420355235,79.5130771838474,63.229048688632304,65.0062553062656,0.1850521534017701,178.6192186630018,0.0692459777471441,63.9918784834066,254.20714,177.97953430244775,265793.05946194625,186091.25197608533,498.89719,331.94596510971905,521013.05925283086,346452.75050419697,472.56203,230.99387829840012,490398.85613910353,238591.63474735737,2766.40326,1295.2164295495895,2849839.7130937567,1311601.059743822,909.08872,415.02212208525503,934112.3158478058,417527.79883654,1411.05304,595.3627541292672,1433227.6743237732,587039.8077251614,0.38165,100000,0,1155487,12081.502702815736,0,0.0,0,0.0,43010,449.0438201189866,0,0.0,42930,445.22746520843566,1044787,0,37510,0,0,10074,0,0,86,0.888740184648843,0,0.0,0,0.0,0,0.0,0.0503,0.1317961483034193,0.2888667992047714,0.01453,0.3641762452107279,0.635823754789272,22.878195533304016,3.980800309426072,0.3074027603513174,0.2941028858218318,0.2040150564617315,0.1944792973651192,11.58001850903148,6.329130018347471,15.393053853651509,11466.721872256025,45.95471477269705,14.571217028993525,13.917532591307795,9.012456119102191,8.453509033293535,0.5972396486825596,0.8225255972696246,0.7004081632653061,0.5904059040590406,0.1006451612903225,0.7755430410297667,0.930635838150289,0.8715083798882681,0.72,0.1506024096385542,0.5164113785557987,0.7366003062787136,0.629757785467128,0.5481239804241436,0.0870279146141215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993628637703,0.0042583392476933,0.0064857951950306,0.0088710496900721,0.0113237493514024,0.0136171512960228,0.0157330179252401,0.0179202319929748,0.0200597088172746,0.0221161919193987,0.0241406185905324,0.026364439332005,0.0283007221776433,0.0303976423794656,0.0328175164397278,0.0348137269097904,0.0367380355255249,0.0386244704709693,0.0405576943086047,0.0428065054211843,0.0571748058815537,0.070359391203243,0.0838268649193548,0.0959864425333936,0.1087410816059441,0.125128335397284,0.1369759763904075,0.1475682239406915,0.1571086449847114,0.166459107208039,0.1782337275873594,0.1896073802975507,0.2006051239633443,0.2098545140067214,0.2198860568393445,0.2286896062276139,0.2368106520112149,0.2444824597931414,0.2520655529326312,0.2588448190949594,0.2646813827571845,0.2698550046772685,0.274836984177702,0.2796874250922863,0.2837785285467759,0.2874142948749568,0.2907474646300237,0.2939072206945717,0.297580498924954,0.3013079134034754,0.298560667204735,0.2943999779959843,0.291485377152593,0.2874552385352893,0.2864736451373422,0.2835443813256978,0.2793713038803327,0.2790033484341146,0.2790181240498112,0.2798165137614679,0.2821732130153143,0.2832052472489479,0.2831878780268307,0.2836553478202668,0.2849724814548935,0.2863883847549909,0.2884218851509759,0.2933703726824396,0.2961500838457239,0.3012853470437018,0.3081555948014309,0.3119570368030327,0.3108717434869739,0.312884834663626,0.3196050775740479,0.3275431290898274,0.330715935334873,0.3310075928586086,0.3344380005523336,0.3371212121212121,0.0,2.520994922907662,53.92156610265532,144.9799491912491,200.03773343516585,fqhc1_80Compliance_implementation,11 -100000,95625,47839,455.97908496732026,4875,49.694117647058825,3907,40.209150326797385,1473,14.96470588235294,77.27514686010801,79.68658624032808,63.27600815666828,65.05645228268422,77.08388992709568,79.5024418537387,63.202624401890354,64.9891473256334,0.1912569330123261,184.1443865893808,0.0733837547779288,67.30495705082262,251.46132,176.06344077681783,262966.0862745098,184118.630877718,499.15392,333.3121735490743,521354.65620915033,347925.378874849,476.19839,232.435464353598,494431.5294117647,240328.92001086543,2749.37436,1297.7526143407383,2829055.895424837,1311020.0829707067,901.86723,412.77090387023503,924515.0954248364,413041.81319763087,1430.07442,611.64003854623,1453076.559477124,600460.4624811766,0.37972,100000,0,1143006,11953.003921568628,0,0.0,0,0.0,43007,449.07712418300656,0,0.0,43094,447.0797385620915,1052867,0,37727,0,0,10001,0,0,78,0.8156862745098039,0,0.0,2,0.0209150326797385,0,0.0,0.04875,0.1283840724744548,0.3021538461538461,0.01473,0.3560620947140892,0.6439379052859108,23.13229621397376,3.9784301351097726,0.3056053237778346,0.2823137957512158,0.2121832608139237,0.1998976196570258,11.662875220092827,6.498284439188347,15.656172959028194,11458.082143000276,44.96768432002504,13.722517122177049,13.443031141280583,9.346913808005697,8.455222248561713,0.604811876119785,0.8368087035358114,0.7010050251256281,0.6043425814234017,0.1306017925736235,0.7635467980295566,0.9219712525667352,0.851063829787234,0.7866666666666666,0.135593220338983,0.532911863146151,0.7694805194805194,0.6439306358381502,0.5364238410596026,0.1291390728476821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088139987038,0.0048245036133099,0.0071736593780122,0.0096495683087861,0.0118593557705021,0.0138300472543588,0.015999102663458,0.018274443344121,0.0205391921319252,0.0226900393184796,0.0247710092006605,0.0271825111462678,0.0292710530377077,0.0314278057227673,0.0332817017761255,0.035431645373196,0.0371280201498802,0.0392779993353273,0.0412616812704227,0.0433218267335509,0.0578428605771743,0.0718567266782637,0.0851385707982266,0.0974365998335317,0.1093621247015571,0.1247285631057677,0.136215802563612,0.1466558625027987,0.1567156191128618,0.1658712243362356,0.177893907166071,0.1901069344728108,0.2007696332795535,0.2097032439190226,0.2190255476466368,0.2280290576265162,0.2371077487801602,0.244527935734272,0.2516557044994196,0.2584448986152892,0.2643347559844127,0.2695919252546804,0.2748348690217842,0.2800388992940498,0.284142174447025,0.2876369288463436,0.290538423947774,0.2938623288019958,0.2972289578443703,0.299813731059355,0.2967909753763629,0.2937037903925321,0.289843232812654,0.2873646209386281,0.2843764377625076,0.2805120518781353,0.27750047387376,0.2792243948773378,0.2794220144496387,0.2796142027389474,0.2798902391219129,0.2812155782848151,0.281805859660098,0.2825351611180345,0.2836499354036078,0.2830604207689916,0.2850592930121982,0.2885276648952797,0.2928890751606594,0.2973719517007339,0.298784620250305,0.3016065954973047,0.3075291622481442,0.3079002703514569,0.3088961341406613,0.315739756759948,0.3219282238442822,0.3234702093397745,0.3210583742498636,0.3208475217555808,0.0,2.513750351100304,52.82621781394497,140.61567761705678,196.99904921220104,fqhc1_80Compliance_implementation,12 -100000,95686,48230,460.7988629475576,4711,47.91714566394248,3744,38.56363522354367,1384,14.087745333695628,77.28391542799022,79.68156876853298,63.28504443165552,65.05943119347121,77.10042452572648,79.50190473781961,63.21503413136854,64.9935997289676,0.1834909022637418,179.66403071336856,0.0700103002869809,65.8314645036171,252.15366,176.6365659531683,263521.99903852184,184600.2194188996,501.11172,334.1691745492875,523154.13958154793,348684.99524411873,476.79739,232.6961312896505,495017.2439019293,240629.2203736037,2604.13664,1229.1627821509858,2684145.8416069224,1247181.3349403103,872.95349,403.5931704628045,896396.6619986205,405875.2486913487,1337.8073,577.4710459543822,1362933.553497899,573025.7885104263,0.38122,100000,0,1146153,11978.272683569174,0,0.0,0,0.0,43203,450.933260874109,0,0.0,43025,446.2930836276989,1049174,0,37688,0,0,9841,0,0,79,0.8256171226720732,0,0.0,1,0.0104508496540768,0,0.0,0.04711,0.1235769372016158,0.2937805136913606,0.01384,0.351900792844074,0.648099207155926,23.464486185194296,4.073342518525768,0.3210470085470085,0.2796474358974359,0.204059829059829,0.1952457264957265,11.63839951635348,6.451760300580724,14.93265074481577,11446.64853887954,43.04223145155549,12.89894869947494,13.594997004372688,8.512777352341978,8.035508395365888,0.5857371794871795,0.7994269340974212,0.6938435940099834,0.5549738219895288,0.13406292749658,0.7724498692240628,0.9370932754880694,0.8545454545454545,0.7354497354497355,0.1976047904191616,0.503273007316134,0.6911262798634812,0.6330275229357798,0.4956521739130435,0.1152482269503546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023915202367199,0.0046961213891593,0.006873305785963,0.0091157610186888,0.0113244406458899,0.0135074566050036,0.0157886684685603,0.017730931078155,0.0199437484019432,0.0222602388903685,0.0243346943800398,0.0264374666063869,0.0283291657662663,0.0302583710360606,0.0325677419354838,0.0347794611924091,0.036712362833784,0.0386563693738581,0.0405883331946409,0.0424296747162495,0.0576848746957493,0.0722414749824631,0.0855967423701775,0.0980396283396294,0.1101143044106937,0.1255028157683025,0.1365600875003982,0.1472953255301247,0.1570744430666609,0.1664824018118781,0.1786461140454888,0.190050592046107,0.2007404181184669,0.2105741537720249,0.2190434207626184,0.2282726929651253,0.2369906656978369,0.244368316072978,0.2514857110391455,0.2594699358922899,0.2652588145297758,0.2704866157235948,0.2754956835214875,0.2796793240842974,0.2844941906441998,0.2885583185316756,0.2920006010819475,0.2956719759808661,0.2977825529766605,0.299512259425257,0.2966142749488642,0.2928913990463234,0.2896038908099294,0.2856545800426586,0.2829875025974411,0.2788851325511312,0.2753252090347258,0.2756262373402706,0.2751550889631195,0.2755083870508209,0.2753086419753086,0.277721804065667,0.2788132927979872,0.280468715058813,0.2816623326591544,0.2828690445196563,0.2837496810049054,0.2886278195488722,0.2942733732757419,0.2987620357634112,0.3034006855493415,0.3089324161109069,0.3119351244273864,0.3147845468053492,0.3202205882352941,0.3201070514312311,0.3246831623415812,0.3302642113690953,0.3331494760066188,0.3387957317073171,0.0,2.2473827437661265,49.7134617789828,136.9112867164125,189.8554954306428,fqhc1_80Compliance_implementation,13 -100000,95661,47928,457.0305558168951,4841,49.40362321113097,3857,39.786328806932815,1444,14.72909545164696,77.35161970545354,79.75735633248341,63.31721993396855,65.09418357133796,77.16053154256905,79.56794332237571,63.24563807381643,65.02519116630445,0.1910881628844976,189.4130101076996,0.071581860152122,68.99240503351223,251.80496,176.28590975107238,263225.89142910903,184281.44839701903,499.55053,333.7038799525162,521648.6446932397,348280.71749838616,477.19494,233.20836117446916,495429.9766885147,241129.73605646432,2721.65638,1273.9175377212014,2809102.330103177,1295782.7812320334,902.22204,405.3118964113365,931604.0601708116,412192.782558902,1405.84554,596.9923631209582,1435157.2741242512,596600.0702423096,0.37895,100000,0,1144568,11964.813246777683,0,0.0,0,0.0,43118,450.1520996017186,0,0.0,43096,447.0892004055989,1054365,0,37753,0,0,9900,0,0,86,0.8990079551750452,0,0.0,0,0.0,0,0.0,0.04841,0.127747723974139,0.298285478206982,0.01444,0.3564239194789816,0.6435760805210183,23.129168192325285,4.006075319401607,0.3181228934404978,0.2800103707544724,0.1895255379828882,0.2123411978221415,11.583884124904683,6.349203563643752,15.23875355274258,11390.792422766614,44.17893326413617,13.25557329607288,13.990106664477466,8.15421145464902,8.77904184893681,0.5812807881773399,0.8064814814814815,0.7123064384678076,0.5526675786593708,0.1135531135531135,0.7586206896551724,0.9136363636363636,0.8767123287671232,0.6858638743455497,0.1646341463414634,0.5050055617352615,0.7328125,0.642691415313225,0.5055555555555555,0.1007633587786259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086908947224,0.004522638543832,0.0066271540787951,0.0087072258798667,0.0110773174378744,0.0134039519250356,0.0159078162443277,0.0181760627380502,0.0201022494887525,0.0224213868687903,0.0244988407164987,0.0265945968164582,0.0289075042193224,0.0308466328508392,0.0329917778787753,0.0350628524132222,0.0368665982608335,0.0388152977327464,0.0410636814781676,0.0431772446223946,0.0584086515856015,0.0724209776884338,0.0850353701798946,0.0979472017339884,0.1101965005593195,0.1256668077900084,0.136694695714953,0.1469650945909938,0.1579904572394462,0.1675114366100384,0.178544854582511,0.1895955886335814,0.1997822773786196,0.2090393624939795,0.2171231594365701,0.2260310421286031,0.2338856549088837,0.2416378640667394,0.2488108887400529,0.2561404312328955,0.2622399056200049,0.2667422321418138,0.2734000922171122,0.2777890818561562,0.2816460685740621,0.2861114186255335,0.2892963231072614,0.2914668493567786,0.2952492774566474,0.2980860237669576,0.2942905459816395,0.2907293937026223,0.2884855630886708,0.2863414563931311,0.284064836059507,0.2796864754410845,0.2759071643531284,0.2752133119748929,0.2758380125914582,0.2766108808935209,0.277390930983628,0.2785143801392769,0.2800901295612443,0.2799048910024221,0.2796478755636138,0.2811014672452986,0.281516641238628,0.2869087732434793,0.2913635256030911,0.2954840741761487,0.3001037484776038,0.3045817877853821,0.3065906131812264,0.3087914567195608,0.3155893536121673,0.3205476218576655,0.3252589884216941,0.3244595676541233,0.3319838056680162,0.3416542473919523,0.0,1.9102643635680585,50.61673322470314,139.17189236228592,200.5058507075076,fqhc1_80Compliance_implementation,14 -100000,95792,48122,458.0549523968599,4806,48.96024720227159,3779,38.87589777852013,1417,14.416652747619844,77.3507064425629,79.6792615883377,63.34838135415546,65.07022833923912,77.16252980242477,79.4949807205964,63.27660682052694,65.00220998012489,0.1881766401381241,184.2808677412933,0.0717745336285133,68.01835911423382,253.99616,177.85985365100544,265153.83330549527,185672.97232650477,500.48736,334.0994629392001,521894.0308167697,348197.2293381695,474.97083,232.5261119994824,492467.4294304326,240130.25363906007,2653.11582,1262.2910015608736,2730109.8734758645,1278519.4899960405,867.29889,402.9902777431596,888975.0501085685,404408.7043561401,1374.11006,598.24020298296,1399796.1625187907,595094.6277029254,0.38072,100000,0,1154528,12052.4469684316,0,0.0,0,0.0,43077,449.09804576582593,0,0.0,43040,445.9453816602639,1046059,0,37578,0,0,10115,0,0,71,0.7411892433606146,0,0.0,2,0.0208785702355102,0,0.0,0.04806,0.1262345030468585,0.2948397836038285,0.01417,0.3577430972388956,0.6422569027611045,22.9668834448977,3.98972886084961,0.3088118549880921,0.2836729293463879,0.2085207726911881,0.1989944429743318,11.323689513833504,6.255476903214055,15.481882750637212,11393.072161886936,43.87710103687197,13.374060853559664,13.463662616601349,8.794119426407049,8.245258140303909,0.5866631383964012,0.7985074626865671,0.7172236503856041,0.5571065989847716,0.113031914893617,0.744299674267101,0.90020366598778,0.8375350140056023,0.6792452830188679,0.1726190476190476,0.5107800862406899,0.7125645438898451,0.6641975308641975,0.5121527777777778,0.0958904109589041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021170130869899,0.0043592862935928,0.0063725937877358,0.0086339996749553,0.0109707987636245,0.0132041088499088,0.0154192654192654,0.0175934524599197,0.0196919995503643,0.0219197707736389,0.0240383630141197,0.0262266822631287,0.0285593899656752,0.03095404759944,0.0330896379628579,0.035299222115474,0.0372497283873971,0.0396313650688339,0.0414771429164849,0.0434637767159082,0.0580863939899833,0.0717646320807979,0.085438460409635,0.098095878607007,0.1105830031194671,0.1261719286748618,0.1373993998451897,0.1478923451850117,0.1573289206789793,0.1671614597288462,0.1783327054518056,0.1887510267606242,0.1989416724617524,0.2074201935892674,0.2166494425998812,0.2252519330538379,0.2330012703082168,0.2408141716185705,0.2484956995705236,0.2560089691228793,0.2618505987367059,0.267376557264119,0.2729282421089963,0.2773941040586961,0.280793256110134,0.2847298278429298,0.2881004435005309,0.2923565664908825,0.2959814728561817,0.2979704189550489,0.2951156605142258,0.292320158211333,0.2895510215560274,0.2858008832953266,0.2838050314465409,0.2796458553144639,0.2757023382290168,0.2764228976564039,0.277749334425558,0.2786958304365652,0.2788668576457151,0.2793615720007102,0.280443653866276,0.2809682543233629,0.2838029013307757,0.2854096783420443,0.2872909318466264,0.2926300578034682,0.2971080456550661,0.3017893741131957,0.305256951059101,0.3089344523531286,0.3112116641528406,0.3149150217209054,0.31527738796894,0.3154783019983446,0.3189139438564197,0.3158326497128794,0.3152022315202231,0.3273993808049535,0.0,2.1737441234925754,53.38052890114893,141.7496474560815,178.95875575294207,fqhc1_80Compliance_implementation,15 -100000,95738,48132,458.887797948568,4670,47.70310639453509,3733,38.42779251707786,1391,14.205435668177737,77.31652017658898,79.67798899432255,63.31665033110207,65.06280994162344,77.14137401504273,79.50420525561657,63.25039209081014,64.99886013596583,0.1751461615462517,173.7837387059784,0.0662582402919298,63.949805657614434,251.63468,176.30863576760535,262836.55392842967,184157.1954371361,499.11605,333.4873992461459,520790.6682821869,347788.6724666757,477.67334,233.9670985198957,494703.0750590153,241140.7010048544,2612.44261,1234.806826134302,2692217.353610896,1253252.9049429707,880.13723,399.26680706288846,905754.3295243268,403476.8399829618,1350.6131,575.0542098324239,1380365.476613257,574916.1901670253,0.37948,100000,0,1143794,11947.116087655895,0,0.0,0,0.0,43004,448.60974743571,0,0.0,43086,445.8626668616432,1053439,0,37838,0,0,9938,0,0,98,1.0236269819716308,0,0.0,0,0.0,0,0.0,0.0467,0.12306313903236,0.2978586723768736,0.01391,0.3638232271325796,0.6361767728674204,22.98753745502678,3.9019636178385375,0.317974819180284,0.2780605411197428,0.2001071524243236,0.2038574872756496,11.307075196629746,6.400722886362857,14.723948853079328,11412.915576729816,43.070778387656254,12.932719031554862,13.65310343464301,8.260323675647367,8.224632245811012,0.5858558799892848,0.8140655105973025,0.6798652064026959,0.5863453815261044,0.1274638633377135,0.7763605442176871,0.9272349272349272,0.8763736263736264,0.7305389221556886,0.1585365853658536,0.4982401251466562,0.7163375224416517,0.5929526123936817,0.5448275862068965,0.1189279731993299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0051398505692359,0.0072773407764526,0.0096121605007265,0.011871337890625,0.0142586519463059,0.0162361172019214,0.0180856387161341,0.0203883395875297,0.0224929613514205,0.0247518661307521,0.0268610740322415,0.0287309634230361,0.0308400436600284,0.0330280150183603,0.0351183526713298,0.0370155680688969,0.039042403120073,0.0410269736500181,0.0431919991665798,0.0579938613158499,0.0723448780998221,0.0857277684563758,0.0980305563441742,0.1105300338454076,0.1259320366786178,0.1372908865244465,0.1478556145747953,0.1574539005576803,0.1664199279093718,0.1791576906505816,0.1903520067522967,0.2005502272677845,0.2096885283538685,0.2185652800862989,0.2284188010506599,0.2356744082179544,0.2427634465456918,0.2503574427524226,0.2565136227767788,0.2619603942071901,0.2678842870840252,0.2740492699434413,0.2779316048761192,0.2824312506073267,0.2849940834237254,0.2893834759545614,0.292571254149338,0.2961065838830681,0.2988528481012658,0.2955893628182882,0.292008365897958,0.288460454366086,0.2850433526011561,0.2825990143103141,0.2793514836341388,0.2756844716179282,0.2749606402519023,0.2755455460579072,0.2753736934108665,0.2762818355211489,0.2764955159160343,0.2765748442921038,0.2775226289740045,0.2796407185628742,0.2814231705422342,0.2828371526499164,0.288047883284494,0.2907914869940186,0.296195865754932,0.2982052669552669,0.3019494204425711,0.3078553615960099,0.3137739808153477,0.3159702878365831,0.3183798422230072,0.3195625759416768,0.316043425814234,0.3227222832052689,0.3250382848392036,0.0,2.196507106693562,51.05106190419629,137.04026525684725,184.35531121107812,fqhc1_80Compliance_implementation,16 -100000,95678,48344,461.0046196617822,4891,50.07420723677335,3892,40.09281130458413,1446,14.757833566755158,77.40264542862671,79.78357981195839,63.35728834693722,65.11211840434669,77.22336318638037,79.60598204707838,63.29031174011514,65.0479511025159,0.1792822422463444,177.59776488000512,0.0669766068220738,64.16730183079267,252.81652,176.9879377125025,264236.8360542653,184982.8985895425,500.56534,333.7163233805787,522612.0947344217,348226.11611925275,481.12211,234.35739827144343,498457.1688371413,241641.2293795623,2692.37283,1253.50597151073,2776866.364263467,1273002.509992611,907.43114,410.2161162548129,933974.6754739856,414299.2811877472,1398.16116,583.5004251512084,1428936.181776375,584412.9409381896,0.38202,100000,0,1149166,12010.76527519388,0,0.0,0,0.0,43154,450.4483789376868,0,0.0,43393,449.23597901293925,1053940,0,37768,0,0,10092,0,0,80,0.8152344321578628,0,0.0,1,0.0104517234892033,0,0.0,0.04891,0.1280299460761216,0.2956450623594357,0.01446,0.3649706457925636,0.6350293542074364,23.058481302395663,3.997347295699402,0.3108941418293936,0.2913669064748201,0.2037512846865364,0.1939876670092497,11.517294870979711,6.452459629636077,15.230641125060458,11542.815744913394,44.57280048452932,14.014668816347166,13.633900452572428,8.836969753987796,8.087261461621933,0.6027749229188079,0.7954144620811288,0.7223140495867768,0.6103404791929382,0.1139072847682119,0.77009507346586,0.896,0.8562691131498471,0.7433155080213903,0.1678321678321678,0.5319926873857403,0.7160883280757098,0.6727066817667045,0.5693069306930693,0.1013071895424836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024911140140353,0.0046418762098776,0.0071109758571718,0.009150645420107,0.0111245563905187,0.0132476630755758,0.0156289824339616,0.0175750153092467,0.0195393136713879,0.0220334646676559,0.0240372295171028,0.0259940250700668,0.0285217820458775,0.0305364738354429,0.0326042096574494,0.0348519927236646,0.0369146975376395,0.0389352980854044,0.0411024440977639,0.0432639192879327,0.0580535300139988,0.0723223354240181,0.085221369880264,0.0981223373481302,0.1112306459098004,0.1265525486130213,0.1382442513184562,0.1493991037118252,0.1595661697921675,0.1686736652476489,0.1800650357481264,0.1917962367860118,0.202507148526262,0.2116309575863576,0.2209367542422276,0.2307172977100926,0.2400320934275334,0.2480740291534712,0.2545551315297768,0.2611269859412504,0.2670421754888155,0.2721991507629135,0.2768787696375246,0.2814584578601315,0.2853681290056821,0.2892090576057827,0.2924298610330749,0.2958857548701298,0.299072293975717,0.301483827723527,0.2984178063824081,0.2951717340415337,0.2925544582195139,0.2902702159141515,0.2875797683762703,0.2838411987756407,0.2797416509136736,0.2800719012991257,0.2804954611012132,0.28077673346338,0.2814402472399605,0.2829963397208792,0.2843637268316955,0.2854958448753462,0.2865255673005798,0.2882123179595954,0.2890366388456641,0.2914396038987326,0.2940233490155079,0.2985356636750118,0.3022877294511257,0.3079729301046843,0.3102025506376594,0.3118077010021852,0.3158237869050945,0.3134449872063271,0.31666414866294,0.3253179650238473,0.3254564983888292,0.3274074074074074,0.0,2.3284373312510467,50.06658267191673,144.70034282754744,198.79834033530847,fqhc1_80Compliance_implementation,17 -100000,95740,48023,458.9304365991226,4681,47.837894297054525,3707,38.25987048255693,1363,13.975349905995404,77.33907921770925,79.70679814194018,63.32552877917672,65.07588583943934,77.1664772324357,79.53468357816779,63.26023219889487,65.01257367919558,0.1726019852735589,172.11456377239642,0.0652965802818457,63.31216024375408,252.36508,176.73622213496094,263594.1926049718,184600.19023914868,499.78744,333.36479506788106,521560.9149780656,347733.2098055996,472.20161,230.54492481125797,490104.5331105077,238446.86591695136,2620.38477,1226.8645048738083,2707168.560685189,1251642.9025212124,843.00542,384.41264773404527,868824.817213286,389826.7262732876,1321.82276,562.3504706898458,1356311.0507624818,565931.3074209325,0.37927,100000,0,1147114,11981.5542093169,0,0.0,0,0.0,43052,449.1957384583246,0,0.0,42778,443.7121370378108,1053237,0,37754,0,0,9997,0,0,75,0.7833716315019846,0,0.0,0,0.0,0,0.0,0.04681,0.1234213093574498,0.2911770989104892,0.01363,0.3542268041237113,0.6457731958762887,23.25864125125156,3.9403088942000335,0.3069867817642298,0.2867547882384678,0.2036687348260048,0.2025896951712975,11.217658084668694,6.108402718717783,14.47261353264199,11364.410670316973,42.64757539957595,13.238688587311463,12.91960560788614,8.357035822854769,8.132245381523576,0.5851092527650391,0.8109125117591721,0.7012302284710018,0.5801324503311258,0.0945406125166444,0.7572304995617879,0.9273504273504274,0.8615384615384616,0.7043010752688172,0.1172839506172839,0.5085736554949337,0.719327731092437,0.6371463714637147,0.539543057996485,0.0882852292020373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268838113757,0.0043902340106257,0.0067598428793276,0.0090229231019346,0.0110983388095988,0.0132397722759168,0.0153979503390608,0.0174580649113314,0.0196425284770649,0.0217435834408734,0.0241726235039535,0.0262936258499209,0.0284165706763205,0.0302281016257649,0.0319267532360288,0.0340527181162942,0.0360509686107945,0.0379418418813175,0.0397550018718023,0.0418494171085667,0.0569668493865831,0.0705706334093619,0.0837736956886428,0.0966581841889419,0.1092094023853965,0.1241921323474968,0.1354531372673838,0.1454611273184131,0.1556315452019662,0.1653755364806867,0.1776635524089699,0.1889509702009702,0.1991144184427255,0.2085827142122482,0.2172678028801691,0.2261028596763467,0.2338867242014536,0.2414514767932489,0.2497248476734027,0.2559796554252199,0.261626023784184,0.2683961933266303,0.273338691756696,0.277271204288723,0.2816144911370304,0.2852752817966147,0.2882669295366916,0.290848678537006,0.2951498651665097,0.2984935201631472,0.2954710096321536,0.293049991768644,0.289505123051624,0.2860089129901784,0.2835104254657004,0.2806350660254942,0.2764027574022368,0.2759518119618948,0.2759755203627623,0.2763614985837208,0.2774552446377569,0.2782957630119202,0.279430439036576,0.2797117245367796,0.2818470198201636,0.2846187611350667,0.2865144699991513,0.2899138684309075,0.2947383083191141,0.299443721150432,0.3042198677895499,0.3055467344130412,0.3101432880844645,0.3143203883495146,0.3156819026384244,0.3192389006342495,0.3246097337006428,0.3265182186234818,0.3274531422271224,0.3248189096454441,0.0,1.7474341293766709,49.96516008462956,137.4910095955448,184.6646272635654,fqhc1_80Compliance_implementation,18 -100000,95688,47768,455.647521110275,4778,48.84625031351894,3813,39.27347211771591,1398,14.28601287517766,77.30793472821749,79.68420792612592,63.31631099018998,65.07045351306722,77.12656729748095,79.50449167064329,63.24838223788882,65.00469490333525,0.1813674307365431,179.71625548263148,0.0679287523011638,65.75860973197223,250.09996,175.2445498311818,261369.78513502213,183141.2029499036,494.84492,329.9458548867592,516572.9036033776,344245.7269587899,467.3602,228.3802136335677,484386.3075829781,235541.52757717375,2681.10559,1253.082262010233,2768024.329069476,1275747.0033644657,866.68535,393.55937856248113,892938.8011035867,398550.1751093514,1364.65286,582.7899149951514,1397058.7743499707,585849.9202905511,0.38032,100000,0,1136818,11880.444778864645,0,0.0,0,0.0,42664,445.2700443106763,0,0.0,42383,438.9056098988379,1066020,0,38211,0,0,9825,0,0,74,0.7733467101412925,0,0.0,1,0.0104506312181255,0,0.0,0.04778,0.1256310475389146,0.2925910422771033,0.01398,0.3675730110775428,0.6324269889224572,23.10429677488119,4.018467973475217,0.3034356150013113,0.2882244951481773,0.2040388145816942,0.2043010752688172,11.171221317038238,6.04404569573415,15.027783607526109,11455.34934707182,43.92556478346794,13.680304986434647,13.122917684155428,8.666388614786058,8.45595349809181,0.5819564647259375,0.8225659690627843,0.6966292134831461,0.5565552699228792,0.0975609756097561,0.7690972222222222,0.9297520661157024,0.88125,0.7074468085106383,0.13125,0.5009394964299135,0.7382113821138211,0.6260454002389486,0.5084745762711864,0.0888529886914378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0047829435369462,0.0070400389535296,0.0091005119037945,0.0109124562688145,0.0130951896053113,0.0151726810168143,0.0172230729964267,0.0192500357807356,0.0214963507385531,0.0236088899823676,0.0255749486652977,0.0275203883295453,0.0294732721410101,0.0316379283657864,0.0338457403368033,0.0360047660985339,0.0382666832772725,0.0402875153431668,0.0426769519441259,0.0568745626037999,0.0708372146572747,0.0845459027916199,0.0977641293145152,0.1101400997248605,0.125736219348426,0.1374485509398735,0.147315536254098,0.1578424459970514,0.1661964881418473,0.1781429709879601,0.18904417809701,0.199630314232902,0.2099497047889787,0.2187988120118798,0.2280641516957224,0.2362214387718672,0.2443872041752902,0.2508933737194976,0.257377105495185,0.2626212356195458,0.2685516499450408,0.2749603615968952,0.2794503794827524,0.2832990993837889,0.2878051787916152,0.2915722104630337,0.2955882727527446,0.2989940628969951,0.3013561157253964,0.2986937786156746,0.2959669649002064,0.2937099387194478,0.2901020437660798,0.2873915111163952,0.2836261785233255,0.2797024610271425,0.2793982393903561,0.2796472578743185,0.2802233082438554,0.2809457840347461,0.2816634414122665,0.2826927498066754,0.2833823267414929,0.285529406125677,0.2854801363269766,0.2868829176844856,0.291628796188924,0.2969713965227145,0.3010773905836852,0.3059138808139535,0.3103812999100957,0.3105656350053362,0.3133479875691655,0.3161338567956627,0.3245531514581373,0.3256198347107438,0.3273703041144901,0.319422150882825,0.3167655786350148,0.0,2.204987550534909,49.99857000255906,143.5289800862388,192.0886683122439,fqhc1_80Compliance_implementation,19 -100000,95711,48149,458.5157400925704,4961,50.683829444891394,4008,41.332762169447605,1502,15.31694371597831,77.38171245272493,79.75526092320294,63.34258245905804,65.09477856508867,77.18549955866456,79.56065583666712,63.26729005323355,65.0220636362848,0.1962128940603662,194.605086535816,0.0752924058244914,72.71492880387598,251.2103,175.8842512280012,262467.0727502586,183765.57296663636,501.74729,334.54688019064577,523687.5907680413,348995.94460023555,482.03184,235.28495517966525,499978.79031668254,243040.53058408585,2797.28434,1315.1269743185674,2888028.209923624,1339620.5250431374,918.60115,419.1802155793072,949629.4887734952,427851.8392525237,1460.57374,636.0935292225622,1491704.568962815,637284.0294283913,0.37937,100000,0,1141865,11930.321488648118,0,0.0,0,0.0,43203,450.805027635277,0,0.0,43525,451.1602637105453,1057753,0,37987,0,0,10112,0,0,96,0.9925713867789492,0,0.0,1,0.010448119860831,0,0.0,0.04961,0.1307694335345441,0.3027615400120943,0.01502,0.3618624420401855,0.6381375579598145,23.264585565676708,3.9235817731760463,0.3071357285429141,0.2884231536926148,0.2020958083832335,0.2023453093812375,11.34291051829363,6.223685437201487,16.22502569468225,11433.960355930576,45.93748391616764,14.161715970845812,13.921380031887711,8.95044545489862,8.903942458535502,0.5885728542914171,0.8079584775086506,0.7059301380991064,0.5777777777777777,0.1085080147965474,0.764,0.9135802469135802,0.8605898123324397,0.7603686635944701,0.1436781609195402,0.5090645395213923,0.7313432835820896,0.6386946386946387,0.5109612141652614,0.0989010989010989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585480473181,0.0046325862401038,0.0067276860007306,0.0090709627613107,0.0113106983745956,0.0132281059063136,0.0153352026510323,0.0176405733186328,0.0197601790989849,0.0222950148428703,0.0243484857804843,0.0266840521976611,0.0290106951871657,0.0309647911988298,0.0331365709686074,0.0352770885028949,0.0376162561882469,0.0396920107505681,0.0415596301650528,0.0437170428729235,0.0582534411095097,0.0719834174326333,0.0854483836783514,0.0976520586564557,0.1099368203440601,0.1259239676413049,0.1371506779553122,0.1473528441089736,0.1577766620017733,0.1669741697416974,0.1800344790432065,0.1916323879627625,0.2012093660616211,0.2104532435446137,0.2189748102518975,0.2277277055605996,0.2366621677393448,0.2453486017683187,0.2529579254251131,0.2589517800501552,0.2642825739870884,0.2699025040331065,0.2755943716642406,0.2797215365812744,0.2834780496690752,0.2867542897968737,0.2898471001537749,0.2936082002238274,0.2963178595456192,0.2990249044669917,0.296546627250739,0.2925604182963481,0.2894418839928057,0.2868577516087701,0.2835300032531866,0.279804982097966,0.2764190488196917,0.2761345086516487,0.2758579720968125,0.2760168950095833,0.2755254136234908,0.2754013322067868,0.2763332779531484,0.2781683113427209,0.2789577820687025,0.2791494845360824,0.2796729630673809,0.2836604148552974,0.2890768537456235,0.2905429278059121,0.2945917953798352,0.2974550425912293,0.3000250438266967,0.3018181818181818,0.3027676824154319,0.3078007518796992,0.3169035379498034,0.3133400200601805,0.319813647574678,0.31837360951285,0.0,1.9902513144513088,54.68068370207735,142.45613720509917,202.50173717800257,fqhc1_80Compliance_implementation,20 -100000,95856,48143,458.8445167751628,4879,49.61609080287098,3910,40.19571023201469,1471,14.98080454014355,77.44506122741345,79.72144817689474,63.40474875222951,65.08373840281325,77.25123607925568,79.5320622113261,63.330990116000365,65.01408236942999,0.1938251481577708,189.38596556863277,0.0737586362291438,69.65603338326787,252.68188,177.03313812715805,263605.7002169922,184686.54870551455,499.7107,333.4614212917183,520711.1291937907,347274.64247592044,478.7238,233.9479378911889,495323.5895509932,241022.2660448362,2710.55345,1284.0944804559138,2789389.4800534137,1301262.5296861064,886.71679,409.43034825377447,910157.4340677684,412237.17686297686,1422.38334,613.265770769265,1449590.1769320646,610745.9508390549,0.38085,100000,0,1148554,11982.077282590551,0,0.0,0,0.0,43097,448.9859789684527,0,0.0,43341,448.0575029210482,1054178,0,37848,0,0,9978,0,0,70,0.7302620597563012,0,0.0,1,0.0104323151393757,0,0.0,0.04879,0.1281081790731259,0.3014962082393933,0.01471,0.3519027069438996,0.6480972930561004,23.00829647640413,3.983189926933612,0.3056265984654731,0.2974424552429667,0.1994884910485933,0.1974424552429667,11.54625340759079,6.408449180409016,15.861536644702229,11408.599588714384,45.210805742739495,14.410238247956151,13.6400012489976,8.682194659712929,8.478371586072814,0.5933503836317136,0.82201203783319,0.694560669456067,0.5705128205128205,0.1152849740932642,0.7635914332784185,0.9212121212121211,0.8457300275482094,0.7164948453608248,0.1543209876543209,0.5166913946587537,0.7485029940119761,0.6286057692307693,0.5221843003412969,0.1049180327868852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.004517873965498,0.0069861999736369,0.0091957289594413,0.0113601723332046,0.0133582932313233,0.0155116923327629,0.0176817889810027,0.0198817510645467,0.0221065655068047,0.0239606799098914,0.0263678785703297,0.0284701894931443,0.030673016591407,0.0325053316986225,0.0344343517753922,0.0365582501680541,0.0384029512035895,0.0405830504251409,0.0425892782818613,0.0572790122941845,0.0714905086764383,0.0840051933909911,0.0965633034262028,0.1088116155505286,0.1243746437844341,0.1354934349851757,0.1467107220262632,0.1573430301996246,0.166650612725424,0.1778943295645071,0.1890239951620915,0.1983368795866082,0.2088955849600419,0.2176348479356815,0.2267803998362596,0.2362854149483961,0.2443682939160721,0.2509067005168193,0.2570121253717685,0.2625512976128547,0.2687668030391584,0.2744033681023676,0.2792562102139472,0.2828133339802998,0.2869731093471171,0.2901591352649752,0.2929694950599544,0.2962349378098184,0.2984958540411563,0.2954291784893025,0.2931306723785201,0.2903773796821475,0.2874962234019595,0.2851058795693836,0.2818814429065217,0.2788110523665659,0.2788994715897971,0.2792537389444378,0.2790549396053983,0.278974988834301,0.2787838315590996,0.2795895856313347,0.2805005213764338,0.2818379074369918,0.2809748793018873,0.2814841945117484,0.2858740911068299,0.2916839485690585,0.2971796179343349,0.2997606250846845,0.3036185251608819,0.3085518102372035,0.3112124667426834,0.3121772603511407,0.3124407582938389,0.3193122505373043,0.3146853146853147,0.313969571230982,0.3017912772585669,0.0,2.314233171864135,52.61570965030752,150.72807417901456,188.1149872039653,fqhc1_80Compliance_implementation,21 -100000,95663,48446,463.0734975905,4805,48.72312179212444,3801,38.93877465686838,1457,14.707880789856056,77.29747507811412,79.70225868338181,63.28577397120039,65.06649599548021,77.10330772919988,79.5159670938921,63.21021852491914,64.99701135005806,0.1941673489142346,186.2915894897128,0.0755554462812497,69.48464542215049,253.2288,177.4028037114219,264709.23972695816,185445.57844874397,501.71575,335.1413399116501,523706.7936401744,349580.5273843075,483.31124,236.57085248235663,500782.9150246177,243741.95737614247,2660.74083,1273.7671664142824,2732293.969455275,1282440.145525733,884.50655,412.1111893850722,906371.6483907048,412559.6619226569,1411.95738,618.719770360484,1428704.723874434,606333.6823655537,0.38324,100000,0,1151040,12032.23816940719,0,0.0,0,0.0,43088,449.60956691719895,0,0.0,43734,452.6201352665085,1042245,0,37434,0,0,9940,0,0,93,0.9721626961312106,0,0.0,2,0.020906724647983,0,0.0,0.04805,0.1253783529902933,0.3032258064516129,0.01457,0.3715256948610278,0.6284743051389722,22.803880017379715,4.034153798852253,0.3051828466193107,0.2925545908971323,0.1988950276243093,0.2033675348592475,11.89381967794891,6.7821400628579305,15.707584246386054,11489.780114734962,43.98795021812475,13.79517966855567,13.256926771686516,8.387266951072654,8.548576826809914,0.5864246250986582,0.8138489208633094,0.6870689655172414,0.5687830687830688,0.1254851228978007,0.7616279069767442,0.9300411522633744,0.8510028653295129,0.746031746031746,0.15,0.5051983057373893,0.7236421725239617,0.6165228113440198,0.5097001763668431,0.118043844856661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0044833952082445,0.0068023757551144,0.0092775124479219,0.0115966796875,0.0137301635804355,0.0160030190526702,0.0181879455076489,0.0203626619757202,0.0226725788778404,0.0247402377606597,0.0267715888311314,0.0287239843211489,0.0307798524380693,0.0327606500505916,0.0349407310867001,0.0371053668041707,0.0390526031607584,0.0408139909903349,0.0425004168751042,0.0583841718201571,0.072494870399062,0.0864902302348521,0.0992446716741358,0.1115753048909144,0.1272854240731335,0.1382348570094053,0.1484108725289707,0.158159282192777,0.1668062534896705,0.17853714310369,0.1900796877541063,0.2010327809916005,0.2104276932180545,0.2193605292171995,0.2290295733229762,0.2376134686759379,0.2456142327583293,0.2523978362652848,0.2595216803100135,0.2654678592946192,0.2702443137897917,0.2756872638548366,0.2798804780876494,0.2849080470954558,0.2878522430044909,0.2915330259597073,0.2952225606259477,0.2990427518937428,0.3015856236786469,0.2979555507605999,0.2942222589850697,0.2913855880775636,0.287998263763293,0.2855084733175898,0.2818598959926583,0.2776891864155233,0.2775960752248569,0.2770359800224238,0.276764951271901,0.2775834480705541,0.2789046255247361,0.2806009905522953,0.2806842385516507,0.2827243872753741,0.2840818014943509,0.2852743402836639,0.2896040375089567,0.2926863181312569,0.2976649107634248,0.3017463110870448,0.304478082623778,0.3108469724313896,0.3151815181518151,0.3194289951798294,0.3200792910447761,0.3229135053110774,0.3246597277822258,0.3321602598808879,0.3359848484848485,0.0,3.1532046318650537,51.29448220940667,140.5764047559103,186.8196215569519,fqhc1_80Compliance_implementation,22 -100000,95825,48087,457.91807983302897,4769,48.58857291938429,3806,39.09209496477955,1432,14.5995303939473,77.32864418348662,79.64062082690806,63.32870225298407,65.03892407559306,77.13798465265054,79.45287427031899,63.25612251311848,64.97000194208245,0.1906595308360721,187.7465565890759,0.0725797398655885,68.92213351061116,253.0583,177.28148713203572,264083.10983563785,185004.87366792676,497.7082,332.3195331728967,518756.2744586486,346163.3774779146,475.24749,231.945143001494,491676.01356639713,238737.98636714704,2673.10063,1266.3370998996077,2750106.767545004,1282250.4632537572,838.43571,390.90731626400606,861448.9642577615,394422.2032496791,1391.61344,603.6891617469884,1420298.5442212366,601705.0735333236,0.37963,100000,0,1150265,12003.77771980172,0,0.0,0,0.0,42781,445.7918079833029,0,0.0,42905,443.5376989303418,1049298,0,37674,0,0,10137,0,0,106,1.0957474563005478,0,0.0,1,0.0104356900600052,0,0.0,0.04769,0.1256223164660327,0.3002725938351855,0.01432,0.3557073954983923,0.6442926045016077,22.728468498930404,3.955163506269205,0.3018917498686285,0.2916447714135575,0.2025748817656332,0.2038885969521807,11.156990738877916,6.023085846889326,15.50584250985772,11384.485015872053,44.02919128883941,13.75591769484203,13.118640852779375,8.598293346336641,8.556339394881366,0.5851287440882816,0.8126126126126126,0.7067014795474326,0.5732814526588845,0.0914948453608247,0.7514743049705139,0.9291666666666668,0.8388059701492537,0.7360406091370558,0.1142857142857142,0.5097365406643757,0.7238095238095238,0.6523341523341524,0.5174216027874564,0.0848585690515806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0045108056603008,0.0070106021407193,0.0091215667154233,0.0113280455562334,0.0134697617593158,0.0158903271837733,0.0181656750385255,0.0201115948249432,0.0223993614800564,0.024477960613947,0.0266206910706772,0.0288574188642015,0.0309662541950626,0.0331432460581811,0.0352062478693401,0.0374298901007926,0.0393272989310191,0.041102293501745,0.0430596611016278,0.0575344466116633,0.0712224499184475,0.0843543974760761,0.0971501229482356,0.1096495388669301,0.1245983426348723,0.1350256606014336,0.1464914614034154,0.1569027380291316,0.1659448101374386,0.1779768698985635,0.1883675390291136,0.1987669490143203,0.2076579186113874,0.2159759733330399,0.2248277542701433,0.2333724110980851,0.2420264565156206,0.2498807766549335,0.2560483408627055,0.2620030137939028,0.266506447831184,0.271967718965108,0.2765962556891189,0.2807630077492974,0.2844986001997953,0.2890127787521924,0.2927329469460544,0.2957521848499779,0.2993393234672304,0.2954040179473705,0.2921201267392203,0.2897704020433795,0.2873112176192062,0.2853870751840559,0.2810607802559975,0.2773580422903302,0.2774196722924765,0.2776727148820172,0.2782519024251476,0.2785112700517283,0.2792145122215438,0.280384350834775,0.2804010493086123,0.2815466653913293,0.2828017868273426,0.2837879946743718,0.2874851683007556,0.2920996837092906,0.2973471470057295,0.2998421645997745,0.3034980507849542,0.3064082525789309,0.3116342441904473,0.3135735623599701,0.3175635718509758,0.3218442932728647,0.3274584418185459,0.3312550826782325,0.3400840657241116,0.0,2.4053941055942936,51.36880297322713,140.36688879877616,190.95293611214925,fqhc1_80Compliance_implementation,23 -100000,95753,48485,463.03510072791454,4792,49.00107568431276,3802,39.19459442523994,1384,14.130105584159242,77.35098256499538,79.69740692986217,63.33757887846742,65.07021837620466,77.16765283519074,79.51610123657326,63.26816306200009,65.00358713226618,0.1833297298046403,181.30569328890545,0.0694158164673268,66.63124393848818,252.34462,176.76172859211235,263537.03800403123,184601.76557613065,501.27487,334.944638803935,523006.088582081,349298.49592590827,482.03301,236.17999438986743,499980.501916389,244059.22410699332,2627.95967,1247.6585822740838,2712358.0357795577,1270976.4564352715,853.27639,392.29552218222807,880884.4735935166,399613.4319105732,1333.11602,575.6474829372312,1363155.8906770544,577435.328512272,0.38316,100000,0,1147021,11978.95627291051,0,0.0,0,0.0,43206,450.7012835106994,0,0.0,43479,450.61773521456246,1048790,0,37705,0,0,9878,0,0,105,1.0965713867972806,0,0.0,0,0.0,0,0.0,0.04792,0.1250652468942478,0.2888146911519199,0.01384,0.3768581759742868,0.6231418240257132,22.767356468548765,3.877089804280533,0.318779589689637,0.2903734876380852,0.2014729089952656,0.1893740136770121,11.221311456412746,6.373375359207247,15.01712015694638,11445.96542072572,43.93799751099602,13.750185740651244,13.832566995886353,8.478984665426026,7.876260109032408,0.6075749605470805,0.8043478260869565,0.7244224422442245,0.6057441253263708,0.1111111111111111,0.7719298245614035,0.9031620553359684,0.8601036269430051,0.7772277227722773,0.1375,0.5266875981161695,0.7207357859531772,0.6610169491525424,0.5443262411347518,0.1035714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986643443743,0.0045509370470601,0.0067679319756882,0.0090700414398309,0.0114487905562729,0.01367185511702,0.0160141079091956,0.0180847698070073,0.0202168869264812,0.0221473968621109,0.0242839863050208,0.0263087661671114,0.0283866589899654,0.0304191123468231,0.0324447562258856,0.0345636647407208,0.0365726119596168,0.0385708949028723,0.0405897153313509,0.0425157311330583,0.0576654070192287,0.0712925767846681,0.0839405726747538,0.0963014361109358,0.1080177938944172,0.1237355319486285,0.135701786945225,0.146420628079473,0.1567911125353842,0.1668704680997125,0.1778536501303233,0.1898361578252494,0.2000935321435174,0.2094789011301598,0.2188604070132185,0.2280005762347491,0.236957881102327,0.2443672032306325,0.2525245648671341,0.2590028653295129,0.2645544279482046,0.2695151628603519,0.2747342406792087,0.2789403117293557,0.2832189039035396,0.2877969563131282,0.2912053582585659,0.2937679428876298,0.296723622770369,0.3004100576190288,0.2973540416139538,0.2938595284602052,0.290819990705927,0.2881708621138117,0.2854682837759601,0.2816903563396012,0.277830502040429,0.2773640002624844,0.2775892354656616,0.278935288151878,0.2800970420826724,0.281731128458226,0.2831797523245632,0.282839736748488,0.2832680550248376,0.2852811609225187,0.2851569126378286,0.2889117812324405,0.2939501284989928,0.2990764393790528,0.303607712105477,0.3072505005796185,0.3137279361317283,0.3170786685701405,0.3193067012698118,0.3265234237407537,0.3303708243947287,0.3313228789706474,0.3372506149221099,0.3393939393939394,0.0,1.9800080450914308,54.85880649193322,132.6143676324485,187.03696802905463,fqhc1_80Compliance_implementation,24 -100000,95847,48285,459.8057320521248,4908,50.0798147046856,3911,40.26208436362119,1457,14.84657840099325,77.51248185563044,79.79901797621125,63.42745123530996,65.11106949260272,77.3210532732505,79.61058965990404,63.35440727454947,65.04157425248593,0.1914285823799417,188.4283163072098,0.0730439607604864,69.49524011679387,253.85162,177.79406401974902,264850.87691842206,185497.78711879248,504.33689,336.00394059238226,525674.8672363246,350048.1398399348,482.45598,235.44205815178228,499916.8988074744,242988.427064944,2737.14439,1290.8455608622412,2818193.0681189816,1309274.9393245082,888.08122,405.8598914334858,910014.6274792115,406928.8633435062,1412.50616,613.7413450091036,1439927.8433336462,610877.7763615038,0.38154,100000,0,1153871,12038.67622356464,0,0.0,0,0.0,43381,452.05379406762864,0,0.0,43612,451.7094953415339,1050662,0,37686,0,0,10076,0,0,96,0.9807297046334262,0,0.0,0,0.0,0,0.0,0.04908,0.1286365780783142,0.2968622656886716,0.01457,0.3613053613053613,0.6386946386946387,22.890616453984148,3.970193047039578,0.3093837893121963,0.2909741754027103,0.2012273075939657,0.1984147276911275,11.33034692979953,6.125279208205106,15.708506243663248,11401.560022496842,45.051117318282245,14.037459098646872,13.751888274522434,8.804687961217637,8.457081983895298,0.5942214267450779,0.820738137082601,0.6900826446280992,0.6060991105463787,0.1005154639175257,0.756,0.926923076923077,0.8296089385474861,0.7295918367346939,0.1306818181818181,0.5182262307403231,0.7313915857605178,0.6314553990610329,0.5651438240270727,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020035213405379,0.0041320221589815,0.0066086216158688,0.008767034327404,0.0110932769865295,0.013525882233296,0.0157907597076011,0.0181310164790341,0.0204425474559137,0.0227630637079455,0.0253955250627208,0.0276282189336368,0.0297979901769384,0.0317710263060392,0.0337941628264208,0.0356353419959923,0.0375939071586746,0.0394907364208474,0.0412606735503708,0.0432139250653257,0.0573377273485733,0.0711843494808603,0.0840912901332886,0.0967860518853061,0.1089291355164788,0.1245563630218015,0.1364768475830127,0.14624913605189,0.1559468544901552,0.1647390177557883,0.1770613789840423,0.1891167924997029,0.2003604425191892,0.2099119952831218,0.218348381994332,0.2272842878152886,0.235565408223512,0.2439210665229062,0.2509907828883302,0.2577888471249528,0.2638139384714727,0.2695989379541643,0.2741986820544861,0.2785251321961875,0.2823767119972898,0.2857177932185912,0.2884289488112446,0.2916582278481012,0.295058308098705,0.2984440187872267,0.2949779027721976,0.2912323895499931,0.2887800783435926,0.2858394621925994,0.2832548318986519,0.279632759329466,0.2756381972896312,0.2763563929661861,0.275874363327674,0.2757255702494009,0.2763714259104032,0.2775519820934205,0.2782469423412929,0.2789769957005452,0.2790647943545513,0.2805329766436876,0.2823519487092964,0.286527631660375,0.2910589290024482,0.2947204968944099,0.2999644697104281,0.302953499198262,0.3074610381641919,0.311650701715304,0.3141552511415525,0.3171907275648382,0.3205260824589921,0.3182260260649679,0.3206593990959851,0.3215208564045773,0.0,2.1060084655962057,54.561248554524006,140.36654335999089,192.7512958814337,fqhc1_80Compliance_implementation,25 -100000,95751,47895,455.3581685830957,4739,48.438136416329854,3797,39.216300613048425,1433,14.69436350534198,77.31288813594676,79.6719509598078,63.318020272784125,65.06211481872867,77.12754798752351,79.48827308468921,63.24801844607296,64.99498438670216,0.1853401484232506,183.67787511859035,0.070001826711163,67.13043202651647,253.24948,177.46241085580743,264487.55626573093,185337.3968478736,501.53821,334.3094934625053,523334.6492464831,348685.3580400495,473.19596,230.8082296219868,491779.3443410513,239153.234871953,2674.6137,1252.0289819319046,2763230.984532798,1277542.3580404154,873.43347,399.1375768663236,899077.4822195068,403763.45272113045,1388.13686,592.1474883613552,1423885.828868628,595341.3076350042,0.37965,100000,0,1151134,12022.161648442314,0,0.0,0,0.0,43167,450.34516610792576,0,0.0,42851,445.03973848837086,1046981,0,37597,0,0,10203,0,0,84,0.8772754331547451,0,0.0,1,0.0104437551566041,0,0.0,0.04739,0.1248254971684446,0.3023844692973201,0.01433,0.3620028265697557,0.6379971734302443,23.331545479511306,4.025227467495856,0.3107716618382934,0.2818014221754016,0.2075322623123518,0.1998946536739531,11.362229067176589,6.338994406249579,15.304772251951796,11416.278337079008,43.6309058670331,13.211184499367642,13.314553982228864,8.804495622912539,8.300671762524049,0.5859889386357651,0.8037383177570093,0.6915254237288135,0.5812182741116751,0.1198945981554677,0.7751277683134583,0.9294354838709676,0.8622950819672132,0.7345971563981043,0.191358024691358,0.5013343499809378,0.6951219512195121,0.632,0.5251299826689775,0.100502512562814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509307460147,0.0047030681438084,0.0069501516857922,0.0095884288790476,0.0117777483955614,0.0140427698574338,0.0163148771285816,0.0184275811375075,0.0205492056351851,0.0226292993108815,0.0245462934481697,0.0267703113447794,0.0289208174347687,0.0308804746405174,0.0329419775503466,0.0354703018903025,0.037981237185992,0.0401768111731379,0.0420852311723965,0.0440005834792031,0.0583610870404977,0.072165487799774,0.086557115741566,0.0989149634115569,0.1111790567967358,0.1260523755129669,0.1374502626134012,0.1474827035657264,0.1574275826711099,0.1667578087303374,0.1781400055985013,0.189447274221631,0.1996999119306753,0.2088213742795586,0.2166943549008174,0.2260462128093223,0.2344334200158483,0.2423693536592226,0.2494947201090042,0.2554766269477543,0.2613959949068179,0.2674695977549111,0.2721961373339798,0.2770229794167685,0.2820058280718795,0.2857670660968731,0.2894305484302856,0.2923669556815581,0.2950501455839534,0.298324096067564,0.294948624372113,0.2916666666666667,0.2882449025571702,0.2856441079581575,0.2832748781357745,0.2800196096454944,0.2764285601127956,0.2766090226798706,0.2776952117391824,0.2784258382607764,0.2788276055810469,0.2803176986604497,0.2803662130808302,0.2816433839092752,0.2828704369933323,0.283888398191926,0.2843830790647461,0.2881723131024521,0.293297849989495,0.298028481891388,0.3027839593078705,0.3070841239721695,0.3104412678682411,0.3127640313820157,0.3157109557109557,0.3175905308801125,0.3206828227404359,0.3244595676541233,0.3270285087719298,0.3369524522650692,0.0,1.6515681476240642,51.64088940719595,137.77185609541797,191.30997315304845,fqhc1_80Compliance_implementation,26 -100000,95775,48260,459.7128687026886,4757,48.39467501957713,3788,38.914121639258674,1425,14.377447141738449,77.37208356525132,79.70989603253976,63.35007434272507,65.07891708898332,77.19402004783745,79.53978987448362,63.2819203183324,65.01715031921063,0.1780635174138609,170.10615805614293,0.0681540243926761,61.76676977268869,252.27026,176.73985232997234,263397.94309579744,184535.6683680441,499.47662,333.6746268572274,520829.7468024015,347714.68857927463,480.26009,234.833231532592,497994.41399112507,242487.0493740834,2690.90519,1265.8777318078069,2761755.1553119286,1274000.710706788,910.07854,420.3286833276417,932126.5257113024,421016.2328732122,1392.6042,589.1397494155317,1406268.3790133125,574358.0972786137,0.38082,100000,0,1146683,11972.6337770817,0,0.0,0,0.0,42917,447.3923257635082,0,0.0,43297,448.7392325763508,1054744,0,37872,0,0,10008,0,0,108,1.096319498825372,0,0.0,1,0.0104411380840511,0,0.0,0.04757,0.1249146578436006,0.2995585453016607,0.01425,0.3614141414141414,0.6385858585858586,23.08356986947699,4.101321002376414,0.2925026399155227,0.2864308342133052,0.2127771911298838,0.2082893347412882,11.8871443478584,6.585166570598233,14.957338093089518,11440.753704894589,43.46275526168559,13.504220002777918,12.64783416935772,8.782630282367442,8.528070807182495,0.5974128827877508,0.8110599078341014,0.7111913357400722,0.6116625310173698,0.1292775665399239,0.7719734660033167,0.9194214876033058,0.8659217877094972,0.7595628415300546,0.2044198895027624,0.5158791634391944,0.7237936772046589,0.6373333333333333,0.5682182985553772,0.1069078947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864985313481,0.0041867726369571,0.0064845446611597,0.0086854054712975,0.0108410454591681,0.012949991855351,0.0154216228888277,0.0177765985672592,0.0197330771746239,0.0219017695401651,0.0241545398647263,0.026642582975841,0.0286278178098948,0.0307876067011954,0.0328551835084716,0.0350578097393137,0.0372950480291487,0.0394499408873125,0.0414081901971175,0.0432197742701261,0.0579825092358748,0.0720158152378561,0.0854405166268293,0.0980192297588399,0.1104567244376547,0.1258320126782884,0.1370795090828157,0.148084346189428,0.1587152536947127,0.1674023441685058,0.179422903128631,0.1903964024344103,0.201764967993653,0.2117932572478027,0.2196793067042055,0.2283755799918053,0.2362468210413599,0.2439583661173931,0.2510172853499575,0.2572687728937728,0.2641193132551014,0.2696272057964239,0.2744479495268139,0.2784364867613453,0.2826500794199313,0.2864593583940169,0.2890972743185796,0.2928312908756111,0.2957000361775802,0.2990757563788609,0.2958791946308725,0.2930412971669019,0.2901910613111389,0.287533164148114,0.2849968147676261,0.2813248874303594,0.2778356207603723,0.2776369790218937,0.2775590886628155,0.2779002774023757,0.2780780556901629,0.2781369755330647,0.2797751639429582,0.2804953835227273,0.2818626865671642,0.2828463371671329,0.2842027628854282,0.2873239436619718,0.2916666666666667,0.2965857509374383,0.30223206217242,0.3053274373552326,0.3067756426254055,0.3090867890324043,0.3113621510596583,0.3145104484620803,0.316538054168558,0.3176100628930817,0.3240268456375839,0.3317236255572065,0.0,2.3858371218181427,52.30953050751288,132.3657493438105,190.02691743310092,fqhc1_80Compliance_implementation,27 -100000,95649,47601,454.3068929105375,4804,49.15890390908426,3843,39.62404207048689,1482,15.149139039613589,77.25911226955019,79.65636153923012,63.27736057920528,65.04631298908784,77.07426052108262,79.47423145169314,63.20702681850285,64.97949562406005,0.1848517484675653,182.1300875369758,0.0703337607024323,66.8173650277879,251.27366,176.03078559116844,262703.9069932775,184038.291661354,496.46211,330.1099140578315,518407.8244414474,344491.14955589094,465.53854,226.8114883215867,483417.1711152234,234591.41009702493,2683.84521,1246.010045580718,2769308.377505253,1266280.0912032088,872.75088,392.5362605511371,897050.068479545,395223.4283787976,1437.76888,613.1836205002526,1470523.8946565045,612113.6721963008,0.37979,100000,0,1142153,11941.086681512614,0,0.0,0,0.0,42782,446.6852763750797,0,0.0,42078,436.6172150257713,1057553,0,37976,0,0,9799,0,0,97,1.003669667220776,0,0.0,0,0.0,0,0.0,0.04804,0.1264909555280549,0.3084929225645295,0.01482,0.359168997203356,0.6408310027966441,23.30832821287624,4.025036826034055,0.2961228207129846,0.2927400468384075,0.2066094197241738,0.204527712724434,11.447040720116766,6.238761617729523,15.934372012885412,11407.822025217089,44.19185194561626,13.8597241246326,12.931694294498152,8.859606054246214,8.5408274722393,0.585480093676815,0.7911111111111111,0.726713532513181,0.5591939546599496,0.1132315521628498,0.7403846153846154,0.8984881209503239,0.8626198083067093,0.7114427860696517,0.1077844311377245,0.5198221563542053,0.716012084592145,0.6751515151515152,0.5075885328836425,0.1147011308562197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.004451474867926,0.0067291882345776,0.0087892212648349,0.011160282822117,0.0133929480781374,0.0157330179252401,0.0179772757434384,0.020149047750483,0.0220279648698998,0.0241754411146539,0.0264295468780482,0.0285934687580354,0.0305543250955466,0.0324558054096449,0.0343996856776541,0.0364542327932706,0.038395665306885,0.0403682130226752,0.0424298656213838,0.0565042009781381,0.0706976549326015,0.0839686640203305,0.0967850636563714,0.1085730579140793,0.1244770649975111,0.1353777192386132,0.1459578684908736,0.1566570420275906,0.1659078218289592,0.1774769429912086,0.1890779065987647,0.1994205802910168,0.208534180543383,0.2173237029277168,0.2273398549839549,0.2357284290364801,0.2432429384901618,0.2502728637045796,0.2560388692985378,0.2625711932628843,0.2687942597195517,0.2737948377301196,0.2785657619539871,0.2832088142451462,0.2870257113557458,0.2900659925225202,0.2931381798709743,0.2951140741125047,0.2987694463169303,0.2955728815388351,0.2933307590467784,0.2903717934229856,0.2871834295494764,0.2842238616886504,0.2812581511315689,0.2772908113934283,0.2776928765097362,0.2790900538783887,0.2789888061699963,0.2789866596815537,0.2799085047226549,0.2813009489569834,0.2813194629679025,0.2839798283979828,0.2861837849028285,0.2870265686828717,0.2921755427143526,0.2947863993025283,0.2986286254728877,0.3028274146120787,0.3080486392588303,0.3122155016524288,0.3171409264959832,0.3181608346413073,0.3192510239906378,0.3267461155528737,0.333266892565278,0.3390203632361034,0.3338485316846986,0.0,2.1207730093734902,49.85014791484785,144.6220054059415,195.42135428526063,fqhc1_80Compliance_implementation,28 -100000,95611,47929,457.0917572245871,4879,49.73277133384234,3861,39.73392182907824,1407,14.328895210802104,77.28554750318864,79.7180468286947,63.27381344368566,65.07229531850956,77.10667692199493,79.54367817760084,63.205114501719216,65.00783724829674,0.1788705811937063,174.36865109385735,0.0686989419664456,64.45807021282235,251.87646,176.43349601799397,263438.7884239261,184532.633293234,498.88451,332.3352244296736,521144.1988892492,346949.83236327244,471.44927,230.20379509704048,489034.36843041074,237556.55101941124,2700.76841,1264.3057277600092,2779744.548221439,1277367.5812169465,864.89993,396.93555096793966,884933.574588698,395622.7231004333,1368.53052,589.6245200220345,1394818.671491774,584686.7273756964,0.38009,100000,0,1144893,11974.490382905731,0,0.0,0,0.0,43015,449.21609438244553,0,0.0,42631,441.84246582506194,1052840,0,37804,0,0,9891,0,0,88,0.9203961887230548,0,0.0,0,0.0,0,0.0,0.04879,0.1283643347628193,0.2883787661406026,0.01407,0.361252446183953,0.638747553816047,23.255603802120223,4.1042166893196805,0.3014763014763015,0.2877492877492877,0.2103082103082103,0.2004662004662004,11.302575458521613,6.017081085678395,15.09608638422458,11460.377237555638,44.283750531672176,13.585823965763456,13.262617333971932,9.05980200700614,8.375507224930642,0.5793835793835794,0.8001800180018002,0.6941580756013745,0.5677339901477833,0.1020671834625323,0.7582417582417582,0.9219088937093276,0.8275862068965517,0.7534246575342466,0.1225806451612903,0.5003734129947722,0.7138461538461538,0.6372549019607843,0.4991568296795953,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219700040535,0.0047368367667792,0.0069244202574828,0.008934288763531,0.0112928824319374,0.0134665729507278,0.0155971070375697,0.0179594838946949,0.0201186458013705,0.0225210462710718,0.0248356089904699,0.0271989313604603,0.0292949047864127,0.0313160363257774,0.0331653725425408,0.0355609801508083,0.0372953367875647,0.0391222166832834,0.0413435616666493,0.0432043392093459,0.0576705970898143,0.0720476195466501,0.0849708917425022,0.0977570349455851,0.1101698495859388,0.1254368685264027,0.1358950925591379,0.1464589929744885,0.1564456239098565,0.1650979886539453,0.176523268485849,0.1884689607320193,0.1993526732198513,0.2082004755486889,0.2173980154355016,0.2271612337539817,0.2350666189752302,0.2433507640986341,0.2514544793418481,0.2580744985673352,0.2638501348832363,0.2693046125029267,0.2740803943875616,0.2779157816418859,0.2832974544216198,0.2875519542186209,0.2912108543820562,0.294854494997072,0.2983335924946872,0.3004104364351418,0.2973143887408843,0.2936497032314794,0.2901400520796678,0.2872053240172655,0.2850341145060813,0.2816860465116279,0.2789745049661542,0.2804270112492211,0.28114564165474,0.2829206552935094,0.282513722415145,0.2827065599874186,0.2834578308225181,0.2849329687187354,0.2869764554181193,0.2885528488852188,0.2897466895330203,0.2930638350720318,0.2973840419657648,0.3010369790647623,0.3058178221382969,0.3119886721208307,0.3163588882671143,0.3220567322805179,0.3257575757575757,0.3258244310264747,0.326325274065175,0.3290937996820349,0.3300400534045394,0.3383596910628907,0.0,2.475102589347685,51.17726002564248,142.38905954162365,192.2637001146784,fqhc1_80Compliance_implementation,29 -100000,95817,47849,454.6583591638228,4784,48.79092436623981,3811,39.2414707202271,1396,14.266779381529377,77.35864855579545,79.66341547555812,63.35358995694328,65.05421495219997,77.17984192364793,79.48481185763683,63.28709119919809,64.98927226269991,0.178806632147527,178.6036179212971,0.0664987577451867,64.94268950005733,253.76098,177.6475118914451,264838.28548169945,185402.044239568,497.10862,331.9743138267525,518235.53231681226,345896.3291679177,479.47213,235.1083703682462,496805.0137240782,242642.6957915928,2661.87698,1259.0486815149663,2745632.152958243,1282159.9408892435,887.09864,403.401304720324,914530.6991452456,409900.8961343129,1355.2418,574.7458029517061,1387521.3166765813,579386.8523613579,0.37716,100000,0,1153459,12038.103885531797,0,0.0,0,0.0,42894,447.0918521765449,0,0.0,43299,448.2503104877005,1046484,0,37627,0,0,10105,0,0,76,0.793178663493952,0,0.0,0,0.0,0,0.0,0.04784,0.1268427192703362,0.2918060200668896,0.01396,0.3569131832797427,0.6430868167202572,23.11309586763701,4.046507078568091,0.3203883495145631,0.2886381527158226,0.1920755707163474,0.1988979270532668,11.917235948166612,6.6743259470306056,14.895413132407452,11391.909651817045,44.00174641494061,13.69395687961836,13.881709349509894,8.159814696556289,8.266265489256067,0.5972185778011021,0.8281818181818181,0.6895986895986896,0.5997267759562842,0.1108179419525065,0.7797319932998324,0.9444444444444444,0.8495821727019499,0.7684210526315789,0.1320754716981132,0.5139472678639664,0.7361563517915309,0.622969837587007,0.540590405904059,0.1051752921535893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0046592186692866,0.0070156229406814,0.0095994804509523,0.0121411009286164,0.0144550124612176,0.0167563052601556,0.0187997919068068,0.0212083444006293,0.0234251928230937,0.0257702392658144,0.0277965823537858,0.0299070221400318,0.0320442898598448,0.0339931951747602,0.0360650658404337,0.0381380045318627,0.0402939895921879,0.0420860208352808,0.0438154525202473,0.0587725978239325,0.0715779129816638,0.0842625974679299,0.0967687700309987,0.1090493351035805,0.1255256651380993,0.1367924528301886,0.1478105489315989,0.1576424621559878,0.1661967603263258,0.1780785048338824,0.189176618206992,0.1989495775474919,0.2086122413265083,0.2169361674023358,0.2257485428071186,0.2338913067737975,0.2414964456042472,0.2492285001134558,0.2555752820571559,0.2612719973157779,0.2660714703610962,0.2711025895942811,0.2748963401481197,0.2790508359253499,0.284151254913074,0.2882627229882615,0.2915046631597672,0.2948595229471723,0.2977842803854113,0.295478373074545,0.2925854730193601,0.2890031323304257,0.2858727277965027,0.2834036880693179,0.2794490038746682,0.2761417795032036,0.2758349705304518,0.2760906612133606,0.277027027027027,0.2777487008860144,0.2783151756338777,0.278634015767791,0.2787684498764443,0.2799837246595342,0.2812524360140314,0.2817025384746436,0.2875599736586283,0.2916681234921855,0.2949113643558088,0.2978300180831826,0.3035761449474407,0.3071580528094106,0.310355299119344,0.3134481154025128,0.316907986921999,0.3191811978771797,0.3235412474849095,0.3262372131600774,0.3274922118380062,0.0,1.9895914441953797,52.04749656067645,141.8961308335136,187.36601863408004,fqhc1_80Compliance_implementation,30 -100000,95869,48313,460.638996964608,4803,49.08781775130647,3788,39.011567868654105,1415,14.467658993000866,77.41454581429173,79.70267503767516,63.37712166936033,65.0677832444178,77.23154135666218,79.52030795178989,63.30741854288021,64.9998260212057,0.1830044576295506,182.36708588527503,0.069703126480114,67.95722321209041,252.56088,176.9344270792997,263443.2819785332,184558.08830727308,501.25509,334.8173256957774,522353.48235613183,348744.1918615792,479.49232,234.04536269487892,496408.8600068844,241348.96859141736,2671.19588,1250.1843964293894,2752905.9028465925,1270698.602394298,848.25527,385.95370264521017,871410.9566178848,389325.8450039712,1378.29814,592.2961658143223,1410439.8084886668,596572.06852407,0.37932,100000,0,1148004,11974.694635387874,0,0.0,0,0.0,43112,449.1650064150038,0,0.0,43152,446.4008177825992,1052291,0,37750,0,0,9955,0,0,93,0.9700737464665324,0,0.0,2,0.0208618009992802,0,0.0,0.04803,0.1266213223663397,0.2946075369560691,0.01415,0.3557288542291542,0.6442711457708459,22.83440071508438,4.071714324112605,0.3133579725448785,0.2777191129883843,0.2030095036958817,0.2059134107708553,11.02474353989829,5.858957738610028,15.143542790808006,11346.044039558015,43.42375193094547,13.012460808228049,13.378700830505764,8.561304715589847,8.471285576621819,0.5842133051742344,0.8060836501901141,0.7135636057287279,0.5708712613784135,0.1012820512820512,0.7394807520143241,0.914351851851852,0.853125,0.6868686868686869,0.1317365269461078,0.5192811681018346,0.7306451612903225,0.6620530565167243,0.5306479859894921,0.0929853181076672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027332084830692,0.0047819259409351,0.0066824178387093,0.0087608876616652,0.0112613070433987,0.0133395740697402,0.0155460472697636,0.0176465788077848,0.0198271635204707,0.0221033466983061,0.0241534017577284,0.0262391268668964,0.028338916175171,0.0305500658761528,0.0327549410782221,0.0345896034951095,0.0364795100199675,0.0384778801413515,0.0405979135309077,0.0424788333922739,0.0576159147543034,0.0713024213353397,0.0843800085898953,0.0972459918314206,0.1097422289613343,0.1254646840148698,0.1366664901223452,0.1468703166353114,0.1565903877953806,0.1660669536721711,0.1778165036950979,0.1884101843342883,0.1990568702870678,0.2081644248735235,0.2168485367971076,0.2262176097010466,0.2342579379236532,0.2417357693431313,0.2482054771219595,0.2551167582417582,0.2606850455617743,0.2661148909307708,0.2715566171601551,0.2757893728139524,0.2797473735349486,0.2839455983442974,0.2871848108865319,0.2905378777284804,0.2932979343391828,0.2971264974404982,0.2938802958977807,0.2903925932031099,0.2873589069594186,0.283774629210568,0.2805114756041546,0.276995161856504,0.2739292130227867,0.2735768903993203,0.2747445205828842,0.2760480422942502,0.2765917846972771,0.2781793894629317,0.2801388946646151,0.2812707843745843,0.2832128629022639,0.2842385268975491,0.2861816130851664,0.2920881166614955,0.2964274554733881,0.2997093251630136,0.3015325327119555,0.3054758051887039,0.3093405578474232,0.3128246994211073,0.3162055335968379,0.3217108321710832,0.3237723381889172,0.3185805422647528,0.32015065913371,0.3270159791898922,0.0,1.891820958109218,48.71282432552308,144.61132889720002,190.62484624096967,fqhc1_80Compliance_implementation,31 -100000,95717,48349,462.19584817743976,4769,48.67473907456356,3788,39.0735188106606,1433,14.60555596184586,77.36002699221102,79.73182817485483,63.33690834044432,65.0885159316193,77.17554993658666,79.55088236558119,63.26623515650662,65.02165404042059,0.184477055624356,180.9458092736378,0.070673183937707,66.86189119871244,252.85348,177.1559417447666,264167.7862866576,185083.0487215088,502.20699,334.6900442846448,524187.8663142388,349175.1248834008,475.67679,231.48475326495443,494284.0874661764,239770.8158100596,2660.83975,1254.5169246655273,2744780.091310844,1275529.252552345,846.56713,389.6975320134332,874314.4791416363,397001.5692232653,1394.32054,603.2865495273891,1422587.4191627402,600276.6482303371,0.38251,100000,0,1149334,12007.626649393524,0,0.0,0,0.0,43194,450.73497915730746,0,0.0,43075,447.3082106626827,1050378,0,37681,0,0,9947,0,0,77,0.8044547990430122,0,0.0,0,0.0,0,0.0,0.04769,0.1246764790462994,0.3004822814007129,0.01433,0.3674698795180723,0.6325301204819277,23.017875858518945,3.983044511194181,0.2967265047518479,0.2917106652587117,0.2059134107708553,0.205649419218585,11.0256962092967,5.933445045455478,15.434040639963664,11438.971055258258,43.6466825202561,13.624514048743343,12.784479662253018,8.710862416622028,8.526826392637705,0.5857972544878564,0.8180995475113122,0.7090747330960854,0.5717948717948718,0.0924261874197689,0.7370653095843935,0.9240780911062908,0.8535825545171339,0.7107843137254902,0.1243523316062176,0.5174396320429283,0.7422360248447205,0.651307596513076,0.5225694444444444,0.0819112627986348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019851920875915,0.0041662865310342,0.0063424088976385,0.0086653528109063,0.0109036169087432,0.0130035436438434,0.0152803261977573,0.0173610402335218,0.0194019933554817,0.0214480230962959,0.0234475122261295,0.0255228278389782,0.0275806750169679,0.0298604315805737,0.0318413504199426,0.0339333533225116,0.0360628224519818,0.0382076352992464,0.0401289785729144,0.0420878227705645,0.0566353012438252,0.0713283932010382,0.0848606288226099,0.0977133601194858,0.11013527048826,0.1260162171876817,0.1372942124915139,0.1478647667897543,0.1577991840919285,0.1676892054230307,0.1797979145122371,0.1913592936823085,0.2017975720822057,0.2112702229995627,0.2197686183081863,0.2283243075628204,0.2365421081985499,0.2446568103884423,0.2515814533499603,0.2584799606195551,0.2631512012393923,0.2687934560327198,0.2746136656537829,0.2788145027111787,0.2831097894034108,0.2869646572205876,0.2911773901081723,0.2941751889728768,0.2971344333522991,0.2989166249308063,0.2955823401221448,0.2933071136841815,0.2901808348825418,0.2869874192942672,0.2839376085246582,0.2800158943636141,0.2763006327615862,0.2767963655973722,0.2783361393126201,0.2795475530932594,0.2799053316188666,0.2805666345757117,0.2818531214293134,0.2826111049540064,0.2846722288438617,0.285127277426024,0.2859808855963354,0.2913373527849802,0.2960186863756798,0.299126723831351,0.3053767340647384,0.3097223688377494,0.3133594673635741,0.3143868102085372,0.3181439288691303,0.3209025017535656,0.3256970610399397,0.3314651721377101,0.3388722418959412,0.3339687380861609,0.0,1.9043391262742304,51.71603510709777,136.03556801976816,192.43774829024989,fqhc1_80Compliance_implementation,32 -100000,95757,47785,455.716031203985,4745,48.45598755182389,3814,39.28694507973307,1440,14.63078417243648,77.33346816806463,79.69487535663522,63.32120940122799,65.06992685515657,77.14843595472198,79.51405653449442,63.250395671842426,65.00310508184141,0.1850322133426516,180.81882214080736,0.0708137293855628,66.82177331515504,253.59422,177.61154944518867,264830.76955209544,185481.3211119068,502.2029,335.0479836336364,523905.7719017931,349346.27198549546,475.37733,231.84949404649996,493498.3552116294,239855.8405892324,2657.47228,1252.1323354237727,2735643.6918449826,1268234.123651251,855.8343,394.55056844990514,880629.3325814301,399140.54365983285,1399.71182,602.6316280462694,1423756.1327109244,597638.0051657478,0.37727,100000,0,1152701,12037.762252367973,0,0.0,0,0.0,43250,451.08973756487774,0,0.0,42912,445.1580563300855,1045589,0,37532,0,0,9920,0,0,104,1.0860824796098456,0,0.0,0,0.0,0,0.0,0.04745,0.1257719935324833,0.303477344573235,0.0144,0.3665176757415684,0.6334823242584315,22.929883623906385,3.990278735834717,0.313581541688516,0.2920818038804404,0.1906135291033036,0.2037231253277399,11.335683688778916,6.178036488549416,15.437902027226624,11346.501800840691,43.8854360196671,13.84767635727666,13.5851501082336,8.049537652542217,8.403071901614624,0.5862611431567908,0.8123877917414721,0.7031772575250836,0.562585969738652,0.1042471042471042,0.7674223341729639,0.9065606361829026,0.8831908831908832,0.75,0.1301775147928994,0.5040030499428135,0.734860883797054,0.6284023668639053,0.5062611806797853,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025026597092051,0.0048878432645114,0.0070945740210705,0.0091548294011258,0.0110758528101543,0.0132778054964412,0.0153835175141703,0.0174521850952215,0.0196946159192183,0.0216394382344511,0.0238153820918168,0.0259845591556814,0.0280023035313959,0.0304634397528321,0.0324374516378643,0.0344913125717061,0.0366961077689304,0.0387448897005416,0.0407838652666597,0.0424417272481096,0.0572448564181254,0.0711258097939277,0.0843520141023892,0.0966398485565546,0.108673872923807,0.1227120364593797,0.1341616093027203,0.1448687655661281,0.1557119665057461,0.1650454199332911,0.1768888505833809,0.1885820637119113,0.1988209958452067,0.2079108281648235,0.2167929862386834,0.2262604786108988,0.2344292492324867,0.2414922349763673,0.2487686965205746,0.2548774902679185,0.2614014801110083,0.2663727886065736,0.2723918108597178,0.2768976542012429,0.2806689871805756,0.2852416676915508,0.2887531539633765,0.2921682157549901,0.2951919348584723,0.2973314884364499,0.2939514990114191,0.2912450747539093,0.2877642230717337,0.2852773569934357,0.2817010041679645,0.278626830051861,0.274885411727517,0.2748824483510002,0.274882809170715,0.2755169281732533,0.2761556269135987,0.2771698484550285,0.2782753593001458,0.2796719416785206,0.281824924041245,0.283525501194557,0.2853104949263687,0.2904505968376976,0.296018162766329,0.3007595733795112,0.3041988003427592,0.3083285044513512,0.3108082765518534,0.3139183055975794,0.3172690763052209,0.3214454976303317,0.3262389784128914,0.3358224016145307,0.3351724137931035,0.3375382262996942,0.0,2.0176841489401065,51.91146215318671,139.03228052871765,190.21261426215924,fqhc1_80Compliance_implementation,33 -100000,95798,48011,458.0784567527506,4875,49.6565690306687,3894,40.063466878222926,1435,14.666276957765298,77.34149214859087,79.67983619809539,63.33904717832892,65.07199043085961,77.16023356031754,79.49904677425747,63.27163247611937,65.00614173695173,0.1812585882733373,180.789423837922,0.0674147022095468,65.84869390788128,253.28006,177.43729402629572,264389.48621056805,185220.01923453063,500.27865,333.50182604652343,521648.6669867847,347556.63453160005,475.67622,232.5468690837194,491740.0885195933,239138.848430158,2717.40107,1270.8762904061775,2802235.892189816,1292274.1770118016,875.82626,395.054447251395,900853.4833712603,399018.53601652686,1387.28742,587.2117794114797,1420840.539468465,592093.842584152,0.38004,100000,0,1151273,12017.703918662184,0,0.0,0,0.0,43072,449.0177247959248,0,0.0,42990,443.9654272531786,1052078,0,37702,0,0,9930,0,0,92,0.9603540783732436,0,0.0,0,0.0,0,0.0,0.04875,0.1282759709504262,0.2943589743589743,0.01435,0.3546420141620771,0.6453579858379229,22.90823128256921,4.0282583465553845,0.3068823831535696,0.288135593220339,0.2067282999486389,0.1982537236774525,11.88989443299792,6.800645184841014,15.265618866495508,11443.199873916685,44.82199592455468,13.907541493577092,13.641698857425752,8.979763705280165,8.29299186827166,0.5955315870570108,0.803921568627451,0.7238493723849372,0.577639751552795,0.1126943005181347,0.7696817420435511,0.9177215189873418,0.8845070422535212,0.7602040816326531,0.1242603550295858,0.5185185185185185,0.720679012345679,0.655952380952381,0.5188834154351396,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.0045720426183307,0.0069004008321071,0.009063935292444,0.0112326397720913,0.0135274164468121,0.0155128100522193,0.0176556484800212,0.0199912059145337,0.02230209197309,0.0245465451301664,0.0265141401901788,0.0285429223838225,0.0305852296725145,0.0326464913276308,0.0347910572719097,0.0366750191555012,0.0385054251986473,0.0404509559434746,0.0421802131912058,0.056452790818988,0.0709364447093017,0.0836904699533714,0.0970484086204541,0.1089064047714388,0.1248797810164977,0.1359006158510085,0.1464618002020309,0.1574319132587723,0.1664130318293859,0.1780198254243308,0.1887918360287122,0.1995111352525801,0.2092075356237433,0.2177550571679859,0.226854106707992,0.2355314335387667,0.2436625726923681,0.2503283514492753,0.257611776538356,0.263488949160367,0.2694960150296976,0.2751742057399315,0.2787671478633194,0.2836416086882742,0.2870966948652371,0.2918221878237856,0.29544445431134,0.299072054515184,0.3008753022815687,0.2972922176428734,0.2944379672176119,0.2913060582218725,0.2887453874538745,0.285688873076581,0.2819604549965646,0.2782005936967094,0.2777195453503226,0.2788005864102826,0.2792276038976076,0.2806364758236416,0.2811415272956769,0.2823642519750867,0.2832095295456066,0.2852822580645161,0.2868364241683356,0.2877153942713683,0.2923392181588903,0.2985442014206343,0.3020118249275822,0.3060319202451182,0.3046396420390987,0.30818365798128,0.3145377828922133,0.3183322303110523,0.3179115128449096,0.3255562422744129,0.3261091801267634,0.3302879291251384,0.3318095238095238,0.0,2.226699048476596,51.85899996205727,144.42044538484976,195.2433191748942,fqhc1_80Compliance_implementation,34 -100000,95713,48460,461.0136554073115,4913,50.149927387084304,3902,40.29755623583004,1466,15.003186609969388,77.3419109081298,79.71109189399954,63.33255108723839,65.08110688352758,77.15226421089729,79.52270851499496,63.26007754315364,65.01109927111776,0.1896466972325186,188.38337900457705,0.072473544084751,70.00761240982456,252.48806,176.85114302482154,263797.03906470386,184772.33293786796,499.45134,333.2442880515414,521367.95419639966,347716.46281230496,477.20864,233.0934301323385,495810.01535841526,241373.7984039534,2733.55515,1285.853249580289,2824384.1797874896,1311839.488450146,882.72739,402.06877930481846,910423.3489703592,408235.965129939,1423.79866,616.0451939156953,1458350.652471451,618664.562437381,0.38315,100000,0,1147673,11990.774502941083,0,0.0,0,0.0,42989,448.664235788242,0,0.0,43186,448.3507987420727,1052500,0,37773,0,0,10016,0,0,81,0.8462800246570477,0,0.0,1,0.0104479015389758,0,0.0,0.04913,0.1282265431293227,0.2983920211683289,0.01466,0.3603056426332288,0.6396943573667712,23.195727916308964,4.05310654286904,0.3077908764736032,0.2906201947719118,0.199128651973347,0.2024602767811378,11.170974733987697,5.981944299747295,15.780578941725937,11544.14587055281,44.97338284059701,13.961060103243604,13.72892330260256,8.663943712412479,8.619455722338362,0.579446437724244,0.7901234567901234,0.7035803497085762,0.5405405405405406,0.1265822784810126,0.7338308457711443,0.9129511677282378,0.8739255014326648,0.628140703517588,0.1336898395721925,0.5103857566765578,0.702865761689291,0.6338028169014085,0.5103806228373703,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0044998479781088,0.0067052140393588,0.0092630210449337,0.0114694757392117,0.0136637615052537,0.0163715506080716,0.0185453580468686,0.0210139002452984,0.0230692076228686,0.0254333719464064,0.027775495954327,0.0300484353629567,0.0321234662023634,0.0344037643950963,0.0364286674178442,0.0384631317315658,0.0404840232879129,0.042309172012935,0.044456949915588,0.0591970589464009,0.0740155337366801,0.0871586104145463,0.0996045269047919,0.1120545980042615,0.1276940168227265,0.1385770969042415,0.1494666467945578,0.1588607324473313,0.1682329213868863,0.1803289282367766,0.1918943780098479,0.2023909236275032,0.210871633369419,0.2195411653432461,0.2296043746817507,0.237282276589576,0.2453521570037992,0.2521435376309939,0.2584162947705687,0.2643504007587235,0.2709766484159296,0.2761868698821413,0.2809014340997041,0.2846696709463481,0.2884774220589504,0.29184721352536,0.2945688120071228,0.297710713962186,0.3006230324424715,0.2985205110961668,0.2951755951563744,0.29212299915754,0.2890367362221166,0.2870489643021069,0.2833668985719517,0.2790327411447578,0.2794786249304942,0.2794783615376758,0.2796148643838542,0.2794024276377218,0.2805853158972743,0.2817145844223732,0.2822033898305084,0.2835441824803527,0.2850136239782016,0.2874858115777525,0.2925768291919634,0.298260352129931,0.301672214297036,0.3064296726217466,0.3105783986876224,0.3161488348784765,0.3174675472557504,0.3215759849906191,0.3279404818138876,0.326999087868653,0.3338062423996757,0.3331497797356828,0.3359848484848485,0.0,1.8629002755662876,52.95868535607896,144.38679829848357,194.28892128902896,fqhc1_80Compliance_implementation,35 -100000,95715,47801,456.3548033223632,4821,49.229483362064464,3849,39.7011962597294,1443,14.793919448362326,77.33810060160408,79.7229677615021,63.31256206328344,65.07585148809056,77.15044633169718,79.53521280905298,63.24300826090006,65.00798188685542,0.1876542699069006,187.75495244912577,0.0695538023833748,67.86960123514518,253.24508,177.31310326355432,264582.43744449667,185251.11347600096,497.58366,331.7023573731866,519361.6047641435,346054.0744639676,471.54581,230.17507509372064,489331.5676748681,237882.6266523509,2680.91191,1261.4175294771549,2767706.952933187,1284738.818219607,879.50232,400.36974840153687,905135.3392885128,404592.827036012,1399.5614,596.1922339781995,1435791.6523011022,600748.7567942622,0.37899,100000,0,1151114,12026.474429295304,0,0.0,0,0.0,42935,448.059342840725,0,0.0,42659,442.334012432743,1050187,0,37667,0,0,9945,0,0,73,0.7626808755158543,0,0.0,1,0.0104476832262445,0,0.0,0.04821,0.1272065225995408,0.2993154947106409,0.01443,0.3683373110580747,0.6316626889419252,22.791849537938845,3.961826175519479,0.3177448687970901,0.2834502468173551,0.2039490776825149,0.1948558067030397,11.32818671378501,6.211618183349219,15.4927157290457,11329.14457073541,44.39985402403681,13.593143884193733,13.95570175350549,8.673987103806324,8.17702128253127,0.5944401143154066,0.8010999083409716,0.7146361406377759,0.5707006369426751,0.1226666666666666,0.7660626029654036,0.9154929577464788,0.8784530386740331,0.7297297297297297,0.1294117647058823,0.5153700189753321,0.7053872053872053,0.645760743321719,0.5216666666666666,0.1206896551724138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022906488820417,0.004514100223169,0.006954738359697,0.0087302071264508,0.0109481995502691,0.0131290805569419,0.0152275462537992,0.0176391882092189,0.0196758193997034,0.0216454205703169,0.023667182805402,0.0256605091028576,0.0276789570009665,0.0296892056103639,0.0316391058109906,0.0337918134939908,0.0358751358906662,0.0380433654943458,0.0400968895542248,0.042228726784096,0.0568701572648858,0.0703735881841876,0.0837818838070655,0.0969553557343429,0.1088228781120496,0.1246205430333287,0.1352148541114058,0.145341099055549,0.1549747283160403,0.1641403576524099,0.1763032869008758,0.1879715525919832,0.1983087923210029,0.2069029646646975,0.2161058908962876,0.2254429411960243,0.2338807819844362,0.2414002633089153,0.2487824260657319,0.2555376029885294,0.2621908863573214,0.2682569967108728,0.2743148049487953,0.278755706805028,0.2822350440327968,0.2855010608378152,0.2885089861606863,0.2925363250856393,0.2951679312220007,0.2982039718332147,0.2945685354275648,0.2911896876331304,0.2879623119111236,0.2845669132384537,0.2819950183845333,0.2778465630302196,0.2736930167950498,0.2745489342908085,0.2751685852462366,0.2754131018658508,0.2755446856972163,0.2760459715826347,0.276499812132092,0.2782942107492365,0.2801494002442119,0.2809157149501318,0.2821562702962189,0.2855227464064108,0.2897598943674206,0.2945630001569119,0.2986104885701479,0.3006839659583355,0.3043129016312407,0.3082140727489564,0.3146769598382501,0.3152148664343786,0.316746126340882,0.3153437069135316,0.3189102564102564,0.3221476510067114,0.0,2.0122451431740624,53.10854310886369,141.4794570111616,188.80210739536085,fqhc1_80Compliance_implementation,36 -100000,95654,47844,457.0012754301964,4713,48.10044535513413,3783,39.00516444686056,1417,14.458360340393504,77.27782633283482,79.68824220765856,63.2892740309558,65.07213706434351,77.09215373875209,79.50688405113559,63.21724164320468,65.00442258794061,0.1856725940827317,181.35815652297535,0.0720323877511148,67.71447640289807,253.19536,177.27329196791302,264699.1866518912,185327.63080259372,499.70567,333.55193921409887,521888.8598490392,348186.00290013885,471.30075,230.148040538867,489466.9224496623,238060.9163025982,2648.00995,1251.1133124792273,2730364.292136241,1270000.2325874795,853.98976,385.9483489004601,880611.2342400736,391310.3952874529,1372.40682,599.7470008616496,1401189.0145733582,597338.609638221,0.37934,100000,0,1150888,12031.7812114496,0,0.0,0,0.0,42959,448.5437096200891,0,0.0,42607,442.166558638426,1048198,0,37662,0,0,9956,0,0,100,1.0454345871578816,0,0.0,0,0.0,0,0.0,0.04713,0.1242421047081773,0.3006577551453426,0.01417,0.3552281563331287,0.6447718436668712,23.194861289591344,3.979728674776613,0.3143008194554586,0.2831086439333862,0.2061855670103092,0.1964049696008458,11.25437046986008,6.255647003490386,15.408659437952878,11386.351816228484,43.63534128796942,13.282183677035588,13.518901431788027,8.613709991502523,8.220546187643292,0.5952947396246365,0.800186741363212,0.7064760302775441,0.6012820512820513,0.1157469717362045,0.7461273666092944,0.9088937093275488,0.8783382789317508,0.7258064516129032,0.095505617977528,0.528424265547501,0.7180327868852459,0.6384976525821596,0.5622895622895623,0.1221238938053097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022292929088219,0.0045533830926496,0.0069640427994233,0.0091974348811447,0.0113535785136578,0.013763103472866,0.0159000509943906,0.0180885942782436,0.0202328102943884,0.0222493111113387,0.0241948717948717,0.0262446971331135,0.0282253915334115,0.0301268771322263,0.032202444866606,0.0342473546478552,0.0362701817654251,0.0382027372224875,0.0402418465252773,0.0422714381047714,0.05717241595519,0.0713432898347332,0.0847503883780493,0.0980404537896487,0.1103794689966654,0.1256893649903145,0.1368371865807164,0.1469804807364473,0.1569996898296202,0.1659508675485311,0.1780903114559758,0.1888663901852714,0.2003983803552769,0.2096474141515834,0.2178211281870624,0.2264209488137058,0.2345749313324847,0.2424607282711437,0.2495233339386235,0.2562473528166031,0.2615567837569086,0.2673266169561253,0.2724961269646045,0.2767374713965664,0.280165660638595,0.2834545678707927,0.2879671581266114,0.2913295680048847,0.2948201494760566,0.2981560620449509,0.294909272156588,0.2919961427193828,0.2893307947253367,0.2859869848156182,0.2839208686598244,0.2803567870771966,0.2767973131396343,0.2762122282653346,0.2768436880595994,0.2774129069103369,0.2784575662325999,0.2780365531125409,0.2787645755840682,0.2794834687743515,0.2819696461914109,0.2827788142620232,0.285142954390742,0.2919398864242462,0.2968036529680365,0.3009358394797367,0.3069311424810494,0.3129682388941648,0.3145660188714616,0.3138846737481032,0.3164237668161435,0.3214032600992204,0.3243243243243243,0.3288508557457212,0.3301965125934126,0.3358691517687333,0.0,2.132920132182458,50.59440691603493,141.51529572592275,188.4627409698901,fqhc1_80Compliance_implementation,37 -100000,95830,47966,456.4958781174997,4827,49.41041427527914,3848,39.695293749347805,1492,15.318793697172076,77.39792083527668,79.70137346653962,63.37134666233784,65.07152063469461,77.21306121870163,79.5165318055455,63.30291982481761,65.0045710564087,0.1848596165750535,184.8416609941239,0.0684268375202279,66.94957828591441,251.80738,176.36530037700825,262764.66659709904,184039.75829803635,501.11328,334.1408235860647,522402.306167171,348165.49127679045,478.95299,233.2615026160908,496495.919858082,240890.47106004783,2711.20844,1256.060512748017,2800266.221433789,1281969.7595238169,880.90783,396.4278232433245,905907.2628613168,400469.6846916569,1452.2104,606.1226973688769,1492878.4096838152,613674.7847273169,0.37995,100000,0,1144579,11943.84848168632,0,0.0,0,0.0,43129,449.5878117499739,0,0.0,43302,448.55473233851615,1057694,0,37893,0,0,9716,0,0,86,0.88698737347386,0,0.0,1,0.0104351455702807,0,0.0,0.04827,0.1270430319778918,0.3090946757820592,0.01492,0.3580907110318875,0.6419092889681125,23.371702716133388,4.007595771557624,0.304054054054054,0.284043659043659,0.2032224532224532,0.2086798336798336,11.222525546993827,6.089696196443034,15.793767402973064,11413.926233854629,44.20316413875025,13.444900314406292,13.383512244974694,8.68099359244009,8.693757986929171,0.5922557172557172,0.8124428179322964,0.711965811965812,0.59846547314578,0.112079701120797,0.7742759795570698,0.919661733615222,0.8760806916426513,0.7688172043010753,0.1607142857142857,0.512341062079282,0.7306451612903225,0.6427703523693803,0.5453020134228188,0.0992125984251968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022778812667044,0.0045496458571877,0.0071098940108524,0.0093112516881086,0.0114366460637605,0.013504711892695,0.0159666605530761,0.0179750063759245,0.0201074851339477,0.0221092263305436,0.0242915394545417,0.0264272890484739,0.0287460831150151,0.0309023740185434,0.0331261659606485,0.035010737589824,0.0372316764082139,0.0391559397218249,0.0412543481646851,0.0432515688580378,0.0584437258787942,0.0726738409730283,0.0860908404630095,0.0983894367233657,0.1102807875542813,0.1259553685634851,0.1371555206820134,0.1479415896802758,0.1577041404948083,0.1667238679508355,0.1788187153394712,0.1906863063179979,0.2010326086956521,0.2097548178350076,0.218512247680197,0.2278241427401323,0.2354298582003032,0.244152720488238,0.2513345346979021,0.2579711802378774,0.2628550299276652,0.2679978980557015,0.2734760925571391,0.2770728440388916,0.281263249706235,0.2860443679714865,0.2897067997504678,0.2932425234000456,0.2955525710891293,0.2988325927484027,0.2960391394678641,0.2924640738660493,0.2900370349587565,0.2863492520138089,0.2837072420473535,0.2791363401041508,0.275429596525461,0.2748278450442218,0.2755861365953109,0.2755134674152512,0.2761620866325104,0.2774043941359116,0.2766156923205133,0.276571097596293,0.2781441074211725,0.2793873312564901,0.2791551621075403,0.2844884488448845,0.2907062156773584,0.293327539209102,0.2977862630119551,0.3006213159152461,0.3047283258830195,0.3102897558749715,0.3150517403574788,0.3201702530148971,0.3228610645112094,0.3200962695547533,0.31591770438549,0.318660647103085,0.0,1.7771684299042263,51.43753081008413,140.7625881908246,195.5836322490528,fqhc1_80Compliance_implementation,38 -100000,95554,48294,462.1470582079243,4865,49.793833853109234,3893,40.16577014044415,1383,14.023484103229586,77.19945181010942,79.66757553464961,63.224607941291474,65.05249366412164,77.02444655079906,79.49775646575982,63.15884425682128,64.99110287608512,0.1750052593103674,169.8190688897938,0.0657636844701912,61.39078803651898,251.97106,176.64115286864794,263694.9368943215,184860.0297932561,503.74694,335.3658286900834,526603.3133097516,350399.330329082,477.34983,232.84653293996067,495936.7059463759,240937.63636041983,2703.29348,1264.9903281014992,2788694.256650689,1284344.224954803,866.41731,398.6376055387973,886341.2520668941,397010.1640582551,1348.00892,574.5882980334133,1368846.5370366494,568635.7871663225,0.3824,100000,0,1145323,11986.133495196433,0,0.0,0,0.0,43404,453.6283148795445,0,0.0,43301,449.4631307951525,1044645,0,37486,0,0,9874,0,0,72,0.7535006383824853,0,0.0,0,0.0,0,0.0,0.04865,0.1272228033472803,0.2842754367934224,0.01383,0.3588526211671612,0.6411473788328388,22.849932295750627,3.928034182878271,0.3113280246596455,0.2928332905214487,0.2003596198304649,0.1954790649884407,11.32972484998507,6.224576810710289,14.907823196472442,11509.445097905638,44.94668377138966,14.117087335116596,13.914651479181702,8.579925574284115,8.335019382807248,0.5918314924222964,0.8157894736842105,0.693069306930693,0.5794871794871795,0.1077529566360052,0.761344537815126,0.9153225806451613,0.8425655976676385,0.7258064516129032,0.1696969696969697,0.5172031076581576,0.7391304347826086,0.6340621403912543,0.5336700336700336,0.0906040268456375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023922717458515,0.0047482802702867,0.0069562921439597,0.0091609728322759,0.0114936677932972,0.0137413606801361,0.0157371026177476,0.0177396280400572,0.0198117069177241,0.0220436774305946,0.0238564506857189,0.0259737588944186,0.0279193829105776,0.0300695261083947,0.0320457175925925,0.0342932262338522,0.0361728164602907,0.0382245040064019,0.0402787325792138,0.0424674551889008,0.057132098365114,0.0712188574783994,0.0849205348133198,0.0979390133395149,0.1105521264902342,0.126465661641541,0.1380201684962982,0.1488725976672962,0.1587342395903632,0.1680896363362653,0.1803142378921224,0.1916248887731406,0.2027248134735372,0.2131701324910064,0.2209507625080002,0.2299781205921878,0.2381160149913296,0.2471318179254329,0.2546240473211238,0.2606224814300311,0.2662717778112647,0.2715914817809969,0.2766620827010622,0.280982213581047,0.2842922507788162,0.2879193884985367,0.2922538304199972,0.2947737412364563,0.297723292469352,0.3010202733063727,0.2974237928243863,0.2942375495813134,0.2908230122162573,0.2880515688910087,0.2862666369246784,0.2829078427166018,0.2786062563323201,0.2789857452538921,0.279127416955875,0.2792903848215243,0.2798132453311333,0.2810289643181728,0.2819270538392164,0.2833139690767718,0.2849762099293507,0.2854798374492028,0.2860153202152803,0.29035593432761,0.2965063362038787,0.3013002364066194,0.3047760388559093,0.3097846024841465,0.313833746898263,0.3200210589651023,0.3240920432492375,0.3289627721845001,0.3306850547144356,0.3350393700787402,0.3426498253157753,0.3344620015048909,0.0,2.1498983419969653,51.97967204838941,148.80165647795582,190.6792473630651,fqhc1_80Compliance_implementation,39 -100000,95680,48173,460.200668896321,4820,49.24749163879599,3854,39.68436454849498,1458,14.820234113712374,77.33990302576841,79.72926776530255,63.32261558699434,65.08847101324349,77.15031080007701,79.54493832896658,63.25049293092558,65.02105265913309,0.1895922256913991,184.32943633597176,0.0721226560687569,67.41835411040142,252.10306,176.60842426536945,263485.639632107,184582.3832204948,500.67005,334.8468060751927,522666.4297658863,349356.18318895565,476.54077,232.6086584196956,494052.4456521739,240091.91234317032,2697.60575,1263.4415472565274,2778341.5238294317,1279424.0878517218,882.24419,400.1209106803286,909308.162625418,405417.7946078111,1410.0005,605.5484997244358,1435103.1145484948,599974.4965267325,0.38159,100000,0,1145923,11976.619983277593,0,0.0,0,0.0,43158,450.4494147157191,0,0.0,43202,447.5752508361204,1050869,0,37690,0,0,9879,0,0,72,0.7525083612040133,0,0.0,0,0.0,0,0.0,0.0482,0.1263135826410545,0.3024896265560166,0.01458,0.358392999204455,0.641607000795545,23.03521349141545,4.06741205298924,0.3124026984950701,0.2828230409963674,0.2036844836533471,0.2010897768552153,11.462428899683644,6.311871467271527,15.645903832376364,11400.835683100831,44.32443696909165,13.447714942121149,13.71544871190702,8.735233446311797,8.42603986875168,0.5913336792942397,0.8045871559633028,0.7151162790697675,0.5910828025477707,0.0993548387096774,0.7646048109965635,0.9279835390946504,0.8787878787878788,0.7081081081081081,0.1104294478527607,0.5163568773234201,0.7052980132450332,0.6533180778032036,0.555,0.0964052287581699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0048147585018498,0.0070623332081866,0.0092938690935684,0.0115412383189449,0.0135792666788819,0.0156460227504382,0.0177798644566016,0.0196781975793261,0.021709980859187,0.0237226277372262,0.0257552583224693,0.0277952019085421,0.0298198448750038,0.0321501924883113,0.0343893461268042,0.036344422457289,0.0383230052211461,0.0403216578068596,0.0423859561337669,0.0569333305476046,0.0709417368999633,0.0846387090682082,0.0977108230937552,0.1098592737937,0.1254998624717009,0.1362126950783496,0.1470052901042054,0.1564736291201162,0.1665344284090665,0.1782683609735085,0.1892792607580692,0.1997585670628922,0.2086877610373707,0.2165898110341943,0.2257503599512681,0.234551924943384,0.2424828734377988,0.2505302798289493,0.2577553334020406,0.2634573354764851,0.2689646305257498,0.2734282605610483,0.2773041833289433,0.2816932166992223,0.2856492195578315,0.2892891516568128,0.2920526014865637,0.2952866439818349,0.298389010467477,0.2957935942103068,0.2935526424272405,0.2905821773263176,0.2882613654409748,0.2857927308885294,0.2822169278230856,0.2785677087442991,0.2784105786855197,0.2785098532637342,0.2784072745355734,0.279694343490821,0.2807062385717937,0.2812786339025406,0.2823380036976811,0.2830166071556951,0.2837637897469175,0.2849724760229272,0.2884127431632365,0.2910406038157803,0.2949761989063299,0.2980057751308428,0.3009586010744759,0.3037864138232175,0.3058300022626141,0.3108346485934453,0.3145606007274434,0.3222424794895168,0.3266626238124115,0.3277148383531362,0.3375382262996942,0.0,2.3288945147351656,50.3418410965965,147.7299449897633,189.7451670561016,fqhc1_80Compliance_implementation,40 -100000,95784,48248,461.1730560427629,4885,49.75778835713689,3939,40.53912970851081,1460,14.87722375344525,77.331780499572,79.67206001972984,63.32970022966426,65.06266863937466,77.13755929079312,79.48179590036757,63.25595714087375,64.9927800727625,0.1942212087788846,190.2641193622685,0.0737430887905148,69.88856661216403,252.15476,176.57103490960975,263253.5287730728,184342.93296334436,500.34938,334.2443346699243,521800.46771903447,348384.1922136519,484.13752,236.90134390437748,501343.77349035325,244238.2271462117,2744.34656,1296.1788380964422,2826992.744090871,1315082.9032995517,886.73591,409.2921465722013,909641.808652802,411191.624407952,1412.60518,610.2175357137864,1440571.0348283637,606978.6889505468,0.38125,100000,0,1146158,11966.069489685124,0,0.0,0,0.0,43206,450.4614549402823,0,0.0,43710,452.3928839889752,1051579,0,37827,0,0,9926,0,0,94,0.9709346028564269,0,0.0,0,0.0,0,0.0,0.04885,0.1281311475409836,0.2988741044012282,0.0146,0.3651607812191754,0.6348392187808246,22.43101576501743,3.9932486847167135,0.310992637725311,0.2998222899212998,0.1967504442751967,0.1924346280781924,11.395335996708631,6.233726349571315,15.818510594856392,11413.184320680051,45.71842749754333,14.602147415505216,13.984768719036122,8.802912340734942,8.32859902226705,0.5960903782685961,0.825571549534293,0.6873469387755102,0.5909677419354838,0.0963060686015831,0.7732463295269169,0.9206349206349206,0.8586956521739131,0.7373737373737373,0.141025641025641,0.5160339107998526,0.7548005908419497,0.6137689614935823,0.5407279029462738,0.0847176079734219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473790833122,0.0042678723490531,0.0065451003074675,0.0087569588361981,0.0107704042715484,0.0129227385207588,0.0149772639220244,0.0173343133651843,0.0195865960622354,0.0218354916312637,0.0235373717285001,0.0257513373651083,0.0275775554481609,0.0296044499381953,0.0316221850682188,0.0338147271355173,0.0357305605037491,0.0378360438101559,0.039695735306343,0.0417946502014764,0.0568918199747472,0.0707635983263598,0.0841658367838985,0.0966426732517207,0.1089487603654103,0.1246843000708013,0.1356144200294675,0.1456964205959293,0.1563607257203842,0.1653613328333422,0.1780162762659318,0.1894037729318103,0.1996128456929083,0.2085962705747252,0.2170999053551383,0.226780708848979,0.2356498164738433,0.2432657376477601,0.2512672223167205,0.2581132593839074,0.2636543329749974,0.2697782036599901,0.2751206358217428,0.2798495393940846,0.2838408859099519,0.2881456194619375,0.2917109923530369,0.2943116555667333,0.297305350433994,0.2995104055320216,0.2963969539595834,0.2929992306846906,0.2908425938950626,0.2869192218258496,0.283958132284166,0.2796067742627017,0.2758620689655172,0.2760504684244204,0.2773582971744849,0.2774145272497283,0.2792002543625039,0.2806028962663777,0.2811310494834149,0.2828749247139128,0.2846881906409148,0.2875052018310445,0.2893488940000568,0.2936962302518379,0.299299578353138,0.3028891695610988,0.3067264980509473,0.3109759322930441,0.3139600780807254,0.3169008735282947,0.3191828319745103,0.3237690400283387,0.3287922853206796,0.3312612793262482,0.3356164383561644,0.3313817330210772,0.0,2.2737599483371853,53.3166079664579,153.60294749901618,188.3867100914433,fqhc1_80Compliance_implementation,41 -100000,95694,48094,459.67354275085165,4796,49.031287228039375,3814,39.34415950843313,1456,14.88076577423872,77.34192318165195,79.71737461388007,63.32298576779221,65.07503603234694,77.15484478114553,79.53222659120678,63.25219637042933,65.00676465519585,0.1870784005064223,185.1480226732889,0.0707893973628728,68.27137715109188,252.615,176.91703741937545,263982.067841244,184877.87888412588,498.96418,332.9211775662975,520912.34560160514,347397.80714182445,473.67447,231.0853748028001,491580.5275147867,238799.84239625203,2658.62341,1254.7858869608676,2742531.684327126,1275524.846866959,869.24595,397.9137740562152,892899.816080423,400358.8250634475,1408.47032,602.4277272420268,1440975.9232553763,604743.6735451377,0.38008,100000,0,1148250,11999.184901874723,0,0.0,0,0.0,43018,449.0250172424603,0,0.0,42786,443.7686793320376,1051013,0,37700,0,0,10026,0,0,96,0.9927477166802516,0,0.0,1,0.0104499759650552,0,0.0,0.04796,0.1261839612713113,0.3035863219349458,0.01456,0.3736483780536644,0.6263516219463356,22.97210236317667,3.964325821391917,0.3138437336130047,0.2871001573151547,0.2066072364971158,0.1924488725747247,11.463430246263634,6.426210842344256,15.616624525871456,11427.343629960937,43.94882212689852,13.319264869028164,13.778465802524542,8.799780444925263,8.051311010420555,0.5933403251179864,0.806392694063927,0.6950710108604845,0.583756345177665,0.1198910081743869,0.7622673434856176,0.9025974025974026,0.8664772727272727,0.7405660377358491,0.141025641025641,0.5174772036474165,0.7361769352290679,0.6236686390532544,0.5260416666666666,0.1141868512110726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002257930601541,0.004530665612552,0.0067967172869939,0.0087655148597314,0.0107796975582968,0.0129197124880373,0.0151397752992272,0.0174302839696527,0.0196838316495562,0.0217273332309425,0.0237877964502865,0.0261033866628329,0.0280789089338242,0.0301478543094121,0.0322567326252335,0.0341133527045612,0.0360361293530277,0.0382483600431786,0.0401301969592978,0.0420448269753774,0.0562687362252838,0.0703306598538311,0.0842385885365828,0.0972347902944085,0.109447539461467,0.1259100914324415,0.1367777282283238,0.1473874833555259,0.1571262119317149,0.1673733134398849,0.1792599301332643,0.1901920223538713,0.2003461375189124,0.2098306123342233,0.2179224724295053,0.2273965925958747,0.2361844381690125,0.2438881635225789,0.2508989439535385,0.2571742665414653,0.2628065710319296,0.2683754284577859,0.2737806393580381,0.2783251822017645,0.2835606953268303,0.2869252377901533,0.2915759168857179,0.2940435761437784,0.2969310688793025,0.3000554338357574,0.2963556969190544,0.2930649694164324,0.2899388267132748,0.2877202603437577,0.2860233216280689,0.283076782114715,0.2777479723545933,0.2779807046567624,0.2783802216538789,0.2786771507863089,0.280055256869773,0.2814569536423841,0.2819999165310295,0.2831933334818743,0.2831122266045177,0.2850935050826414,0.2869127990734725,0.2917159763313609,0.2947872561949052,0.2997252747252747,0.3033965315841495,0.3085072904647015,0.3107305793387913,0.3122612538386637,0.3149722735674676,0.3189545507112293,0.3201069995541685,0.3247981091195588,0.3275908479138627,0.3222713864306785,0.0,1.9854022961082751,51.59156869099601,141.34555665872637,189.4403489915548,fqhc1_80Compliance_implementation,42 -100000,95730,47775,455.2386921550193,4821,49.00240259061945,3855,39.59051499007625,1443,14.634910686305233,77.32392886815877,79.68804679673167,63.31606620966248,65.06499961469434,77.13756425852847,79.50673411886349,63.24467719246783,64.99829891064017,0.1863646096303028,181.31267786817773,0.0713890171946474,66.7007040541705,250.88712,175.78038423512697,262077.84393607025,183621.0009768379,496.83412,331.7434970047613,518335.47477279854,345882.376168036,476.37901,233.0484498436103,493204.1679724224,240077.8286563762,2708.86869,1277.2452287837696,2786812.169643789,1291434.333114223,868.52464,401.79750058245247,892305.7139872558,404847.0122855617,1389.41472,598.1909103854954,1411619.2625091402,591909.3156496114,0.37852,100000,0,1140396,11912.629269821373,0,0.0,0,0.0,42795,446.3386608168808,0,0.0,42995,444.7717538911522,1059356,0,38012,0,0,10008,0,0,100,1.0341585709808836,0,0.0,0,0.0,0,0.0,0.04821,0.1273644721547078,0.2993154947106409,0.01443,0.3597609561752988,0.6402390438247012,23.017085032325827,4.013691438342699,0.3167315175097276,0.2804150453955901,0.2147859922178988,0.1880674448767834,11.438879406268295,6.350121373722345,15.486094630380112,11449.794066899984,44.51273560119898,13.41586874036248,13.96513453778499,9.235681167653643,7.896051155397871,0.5971465629053178,0.820536540240518,0.6986076986076986,0.6026570048309179,0.0868965517241379,0.756357670221493,0.9071729957805909,0.8601583113456465,0.7537688442211056,0.0958083832335329,0.5235204855842185,0.7528830313014827,0.6258907363420427,0.5548489666136724,0.0842293906810035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022891407618989,0.0046943596710906,0.0068504272636856,0.0092665975736145,0.0113622492574358,0.0135641547861507,0.0158840201455865,0.0180673083793522,0.0201312776051038,0.0221974219045961,0.0245140255905511,0.0265822005010472,0.0286325269618678,0.0308704922592008,0.0331551574689396,0.0349792749863039,0.0369468843221743,0.0390986652274095,0.040930077783786,0.0429451048623193,0.0579121556017247,0.0722610478741211,0.0854742979383821,0.0984352983238343,0.1113677106400927,0.1267903611399073,0.1378728551873428,0.1487870849572977,0.1581826145480573,0.1670901819507435,0.1799860041987404,0.1911446617061775,0.2017199578164581,0.2107939076526093,0.2194201878450608,0.229041617754546,0.2374267700719745,0.2446159731755069,0.2516345804576825,0.2578633654287024,0.263227390659748,0.2683303861062641,0.2732788245052731,0.2770668169878983,0.2811226909559655,0.2854447705245505,0.2897597755567245,0.2928882549224381,0.2963466946593575,0.2990899845469074,0.2965048909967932,0.2929219251042512,0.2897002663359779,0.2865879223351501,0.2845303867403315,0.2807025589287352,0.2772408565472806,0.2777414182401256,0.2776368434493913,0.2785095905996124,0.2797261500578293,0.2794942990488568,0.2811763478986338,0.2821351489664686,0.2829145728643216,0.2836312689723166,0.2860013016780328,0.2907348242811501,0.2947932350572499,0.2972023833011087,0.3015098092396709,0.3021457873146103,0.3057614450327001,0.3100932611311672,0.3122492769847934,0.3153184975862474,0.3219907060410733,0.3198594024604569,0.3213347346295323,0.3298429319371728,0.0,2.646831132559484,52.56437904796876,141.94188929873712,189.155305411562,fqhc1_80Compliance_implementation,43 -100000,95788,48650,464.2543951225624,4797,48.95185200651439,3871,39.764897481939286,1472,14.939240823485196,77.4066300966336,79.74513809743837,63.35719594835807,65.08781665737074,77.21184617824805,79.55514377501576,63.282946617842384,65.01790230774024,0.1947839183855535,189.9943224226064,0.0742493305156841,69.91434963049414,252.68804,177.07205206918337,263799.26504363806,184858.28294690707,503.4476,335.7531147631836,524930.9203658078,349862.5556052778,484.18055,236.2833668084105,501152.52432455,243386.22929699745,2718.6505,1291.9957734451934,2794489.320165365,1305101.5820825084,878.42824,407.5438756627294,902066.8768530504,410476.7357735081,1431.88378,623.9172631165222,1455546.8743475173,618247.2043478712,0.38546,100000,0,1148582,11990.875683801729,0,0.0,0,0.0,43281,451.1525452039922,0,0.0,43843,453.5014824403892,1050186,0,37673,0,0,9902,0,0,83,0.8560571261535892,0,0.0,0,0.0,0,0.0,0.04797,0.1244487106314533,0.3068584531999166,0.01472,0.3656925540432346,0.6343074459567654,22.993195243071007,4.0521223472013626,0.3097390855076207,0.2818393180056833,0.2045982950142082,0.2038233014724877,11.50555497392926,6.363581348367161,15.79572271547665,11532.398994906423,44.57133457265654,13.458726842189702,13.547194896387817,8.896947755743437,8.668465078335583,0.5846034616378197,0.8075160403299725,0.6939115929941618,0.5757575757575758,0.1191381495564005,0.7662551440329218,0.9244060475161988,0.8852459016393442,0.7368421052631579,0.1412429378531073,0.5015060240963856,0.7213375796178344,0.60984393757503,0.5180102915951973,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024216264413236,0.0046439942406359,0.0072660111019778,0.0094591711286995,0.0117370653268376,0.0140017514918229,0.0162517077547358,0.0182820395039044,0.0203708246453248,0.0224528224651029,0.0245147272839076,0.0265863569200459,0.0285000719439248,0.0306156063413629,0.0326148581088742,0.0346120088801693,0.0368592561940723,0.0389874257518115,0.040900921491424,0.0427988423178628,0.0577310336912177,0.0719275495691458,0.0853055235300283,0.0984709158741001,0.1106065554771211,0.1260592996470762,0.1373286836331259,0.1485151673028463,0.1573016923109755,0.1670844313044968,0.1800544478280051,0.1920910064124052,0.2029103634150582,0.2120944049452289,0.2201043669321614,0.2296567596875207,0.2384447220487195,0.245567684853118,0.2533767308935437,0.2600489859451541,0.2649129906920275,0.2706621951647016,0.2768526622040353,0.2814640103443321,0.28555645934757,0.2897051215726849,0.292882789336069,0.2958546785818704,0.2991718426501035,0.3015192677973254,0.2983318298708817,0.2947750422697843,0.2914819661980551,0.2895963517238393,0.2873488261797486,0.283599175761276,0.2801758089416806,0.2801508152839212,0.2802901891653671,0.2807970693896331,0.282439196858892,0.2833646985023131,0.2844892026578073,0.2859011305697184,0.2866903135191754,0.2865729395072875,0.2869141230517741,0.2912422360248447,0.2980885974954036,0.3022345712832153,0.3065015479876161,0.3107515657620042,0.3136551894665265,0.3209977661950856,0.3257006777798131,0.3253831086530706,0.3301702063563789,0.3334647998422402,0.3353228431904503,0.3329545454545454,0.0,2.5192852662202854,52.52445892694072,139.88286134248435,193.6846396777509,fqhc1_80Compliance_implementation,44 -100000,95690,47991,457.957989340579,4812,49.16919218309123,3815,39.30400250809907,1407,14.39021841362734,77.29491858535671,79.6959790581638,63.29396199958445,65.0734625237403,77.1100583793574,79.51375323552665,63.224476489449366,65.00727765409071,0.184860205999314,182.22582263715023,0.0694855101350881,66.18486964958947,251.1905,175.97139429253917,262504.4414254363,183897.3709818572,499.84292,333.3821022091356,521826.24098651897,347867.8150372407,477.50581,232.5909370674756,494928.5296269202,240005.6564942005,2643.13177,1252.0923504699008,2723386.059149336,1269692.4448426182,893.15213,409.015043320221,913976.016302644,408032.7759642801,1370.3496,585.4786570828896,1401586.686174104,584594.3283574145,0.38018,100000,0,1141775,11932.02006479256,0,0.0,0,0.0,43105,449.9007210784826,0,0.0,43163,447.03730797366495,1058668,0,37980,0,0,10256,0,0,100,1.0345908663392205,0,0.0,1,0.0104504127913052,0,0.0,0.04812,0.1265716239675943,0.2923940149625935,0.01407,0.3720697255059106,0.6279302744940893,22.808624077411626,3.98544995160681,0.2967234600262123,0.3051114023591088,0.1997378768020969,0.1984272608125819,11.110249424056889,5.849178294296235,15.09655020266428,11439.894884638785,44.378321169016495,14.446129873468148,13.052549527191442,8.584252967994878,8.295388800362028,0.5952817824377458,0.8281786941580757,0.6890459363957597,0.5656167979002624,0.1268163804491413,0.759656652360515,0.9307535641547862,0.8504672897196262,0.7210526315789474,0.1104294478527607,0.5230188679245283,0.7533432392273403,0.625154130702836,0.513986013986014,0.1313131313131313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021490770119719,0.0042517783392695,0.0063677448839689,0.0084489858166844,0.0109531032095849,0.0130971430901103,0.0154802236825992,0.0178378047036227,0.0198674141670417,0.0220756205246929,0.0243111831442463,0.0264425793328744,0.0284523564519448,0.0306709265175718,0.0326493115051921,0.0348511329203594,0.0370147768958156,0.0390780730897009,0.0409133465099344,0.0428266194173745,0.0573022206438404,0.0706860271563321,0.0839183587806285,0.0965698653198653,0.1091417418367885,0.1246204145549195,0.1358319534666497,0.1468070608777122,0.1569865589674551,0.1670064377682403,0.1791015835398039,0.1907090464547677,0.2006566430753509,0.2096876434457583,0.2178407266489256,0.2270593445527015,0.2358427417555446,0.2434655414908579,0.2515639014089304,0.2578485873115937,0.2647041800270874,0.2701497776737655,0.2749781049541979,0.2786796796316723,0.2835104767689037,0.287301606876395,0.2902793771591648,0.2934526912757652,0.2965883676134087,0.2999367805494824,0.2970885004500934,0.2940232156087923,0.2913539646400764,0.288102856813399,0.28552368245497,0.2824621217912456,0.278124011388801,0.2784417884019478,0.2792838874680307,0.2796498359720439,0.2801820190633134,0.2820735706665613,0.2824285295718053,0.2831107339080716,0.2829498411475883,0.2840609930926626,0.2846438746438746,0.2880381873567189,0.2932317691044411,0.2962509382530715,0.3012404016538689,0.3051876088447939,0.3072070946789907,0.3126698882512836,0.3179190751445087,0.3208568738229755,0.3226000601865784,0.3318663732746549,0.3326186009112838,0.3374164810690423,0.0,2.231829216453828,50.65639143847019,152.1330032434647,183.36947442740137,fqhc1_80Compliance_implementation,45 -100000,95716,47894,456.3918258180451,4952,50.43044005181997,3925,40.3694262192319,1504,15.337038739604663,77.3593554540744,79.73127494877379,63.33143217950936,65.084199837205,77.16583876714677,79.53939577232772,63.25878955017647,65.01447522516628,0.1935166869276372,191.879176446065,0.072642629332897,69.72461203872626,251.92706,176.34178234953615,263202.20234861464,184233.9637818297,499.57857,332.8362924708813,521287.9246938861,347084.3592663309,475.53534,232.44497815117728,492290.902252497,239435.72076399665,2747.338,1278.733132229999,2827787.015754942,1293828.0094808862,911.25644,412.1829568918079,935263.1848384804,414189.37790946825,1457.98964,619.5247677350226,1488215.094655021,619085.6238664592,0.38002,100000,0,1145123,11963.736470391575,0,0.0,0,0.0,43064,449.2352375778345,0,0.0,42931,444.03234568933095,1056912,0,37934,0,0,10027,0,0,88,0.9089389443771156,0,0.0,0,0.0,0,0.0,0.04952,0.130308931108889,0.3037156704361874,0.01504,0.3541828040278854,0.6458171959721146,23.225429406933745,4.100805943389653,0.3126114649681528,0.2812738853503185,0.2015286624203821,0.2045859872611465,11.52439907152032,6.351540023439045,16.03117975924212,11486.629862638429,44.9290339703034,13.578559032325282,13.903256812113591,8.772722218609502,8.674495907255022,0.5729936305732484,0.7952898550724637,0.6878565607171964,0.5474083438685209,0.1170610211706102,0.757753562447611,0.8972746331236897,0.865546218487395,0.7185929648241206,0.15,0.4923133235724743,0.7177033492822966,0.6149425287356322,0.4898648648648648,0.1088646967340591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0046022686954494,0.0071843891747085,0.0093132375941987,0.0116835972056984,0.0140694513728404,0.0159233396197563,0.0180470775575199,0.0199341661384964,0.0221237126067282,0.024437767272056,0.02696262210216,0.0291684671893326,0.031146324877908,0.0333825213864839,0.0352409700829077,0.0372824500191537,0.0394253708121564,0.0412304685469534,0.043072467995125,0.057735683555407,0.0719339375798044,0.0855965006136513,0.098735055676477,0.1112353034217324,0.1264505209710689,0.1371421295018994,0.147868580189081,0.1576973220201329,0.1669528265441902,0.1795896817016141,0.1909720718770296,0.2015382439650577,0.2109404066268356,0.2189558321401035,0.2288432537922469,0.2373869346733668,0.2444436946056598,0.252200844035032,0.2589020856478565,0.2652485222842998,0.2702203518615933,0.2755111688925659,0.2794103570402986,0.2835520411380891,0.2879326680530091,0.2910670750765768,0.2939555205568186,0.2980673518195333,0.3009874917709019,0.2981488193521538,0.2945599231666324,0.292605628865112,0.2897153285720444,0.2860521841969103,0.2825749269005848,0.2779560757661569,0.2777986200596995,0.2776032201633859,0.2783720971490411,0.2790771411518949,0.2791960036187704,0.2808340820292095,0.2804752758297226,0.2832522351925981,0.2829223981313262,0.2838735312482261,0.2890122643580816,0.2928049249711427,0.29642194958381,0.3012736255269002,0.3074970921010891,0.3122006554071087,0.314841335644833,0.319156839075123,0.3238084084787446,0.3259584785573571,0.3281499202551834,0.3277401894451962,0.3316999623068224,0.0,2.424060872796422,51.72992849090251,141.37194776901717,200.7026915525115,fqhc1_80Compliance_implementation,46 -100000,95897,48201,459.6702712285056,4730,48.35396310624941,3742,38.53092380366434,1402,14.31744475843874,77.4394230829848,79.71899518994188,63.39129033748679,65.07714056845482,77.26143075398699,79.54506080963324,63.32332433169956,65.01314541685774,0.1779923289978171,173.93438030863706,0.0679660057872268,63.99515159708358,253.15774,177.27944187455105,263989.2175980479,184864.42941338208,498.01992,332.41618723557366,518830.8706216044,346157.85858236346,472.22074,230.3056856425721,489663.2949935869,238031.04654512764,2615.81703,1229.791200181693,2695066.2690178007,1250579.279053952,879.93418,401.5369464707801,905873.0095831986,407251.3105249495,1372.15108,588.5126656293121,1403011.8356152957,588939.0304082558,0.38099,100000,0,1150717,11999.509890820358,0,0.0,0,0.0,42946,447.33411889840136,0,0.0,42610,441.54665943668726,1053615,0,37858,0,0,9903,0,0,96,1.001074069053255,0,0.0,1,0.0104278548859714,0,0.0,0.0473,0.1241502401637838,0.2964059196617336,0.01402,0.3610152284263959,0.6389847715736041,23.02073756655498,3.973905707133376,0.3073222875467664,0.2910208444681988,0.1916087653661143,0.2100481026189203,11.144392713309532,5.968883113850515,15.111435711422615,11396.14824572529,42.96733965696733,13.412150469268887,12.861223303020338,8.008309833243125,8.685656051434975,0.5863174772848744,0.8181818181818182,0.6921739130434783,0.5815899581589958,0.1145038167938931,0.7568042142230026,0.9186295503211992,0.8738461538461538,0.6923076923076923,0.1393939393939394,0.5117172493276988,0.7427652733118971,0.6206060606060606,0.5439252336448598,0.107890499194847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866774650739,0.0044590376585998,0.0069994623601375,0.0089654682248779,0.0111091912549422,0.0132068944465924,0.0155334861217214,0.0174622603019175,0.019543541334641,0.0216864265474595,0.0239149145456781,0.0259077990170427,0.0280435296414661,0.0299558383002377,0.0320216089157396,0.0340860981175717,0.0360239193858759,0.0380386914938812,0.0401686064016445,0.0420715340920913,0.0563217312443318,0.0697045055588063,0.0827984125155764,0.0954075847297467,0.1072090281286845,0.1230044767294535,0.1337767844848587,0.1446149268956137,0.1544791711081738,0.1643587877750192,0.1773456730407489,0.1890090420992362,0.1999196281171257,0.2092642158737095,0.2174046875687085,0.2259278110961117,0.2341274262919795,0.2422452325868691,0.2493034318722392,0.2559061867806567,0.2620361604359572,0.2679194630872483,0.2737970062497785,0.2780376906969787,0.2818565605590062,0.2856351823596003,0.2891823679344295,0.293191192334539,0.2976253502576088,0.300636574074074,0.2981765938020302,0.2956000712983149,0.293729743381084,0.2908360221249135,0.2873488358323835,0.2821901507292366,0.2780099345580699,0.2774592908357424,0.2780204279329039,0.2794769896746265,0.279886042008044,0.2807568501216927,0.2827207716614003,0.2831374632051878,0.2846519363269185,0.2858911529533144,0.2869701991405218,0.291288875135386,0.2952305465573092,0.3012785530521556,0.3074137005902343,0.311597992051872,0.3156526582905242,0.3190179442901119,0.3259128166915052,0.3278246601031411,0.3281059683313033,0.3328634716069271,0.338683351468988,0.3446222553033122,0.0,1.9070936107160472,49.56418266521094,140.91507590278752,185.43573649285688,fqhc1_80Compliance_implementation,47 -100000,95743,48501,462.56123163051086,4795,48.9853044086774,3799,39.156909643524855,1427,14.580700416740653,77.34647984393533,79.6992714647913,63.33814763576003,65.07532791379803,77.16740222500104,79.52241637475981,63.27048882698976,65.0108396007026,0.1790776189342864,176.8550900314807,0.0676588087702683,64.48831309543834,252.1145,176.68715124604682,263321.45430997567,184540.88368779543,497.98226,332.8273259864933,519555.0275215943,347067.7373539655,483.81521,236.3864632185272,502239.787765163,244451.86810380805,2657.24204,1256.570419493,2739360.350103924,1277089.508361673,859.54744,395.3811407764912,884780.5061466635,400810.7608749803,1382.5405,587.5194670091812,1413260.8336901914,586820.3586942793,0.38203,100000,0,1145975,11969.157014089804,0,0.0,0,0.0,42866,447.1240717337038,0,0.0,43758,453.9653029464295,1053107,0,37783,0,0,10067,0,0,81,0.8355702244550516,0,0.0,0,0.0,0,0.0,0.04795,0.125513703112321,0.2976016684045881,0.01427,0.357056936647955,0.6429430633520449,23.06892391880156,3.959452800682048,0.3171887338773361,0.2913924717030797,0.1976836009476178,0.1937351934719663,11.680794873444132,6.598407599734956,15.20048028211537,11503.20762421448,44.02790661184421,13.755470983691856,13.817604265573106,8.405538449550267,8.049292913028983,0.6009476177941564,0.8319783197831978,0.6921161825726141,0.5858854860186418,0.1195652173913043,0.7709543568464731,0.9288617886178862,0.8472622478386167,0.7246376811594203,0.1761006289308176,0.5219737856592136,0.7544715447154472,0.6293706293706294,0.5330882352941176,0.1039861351819757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046427231903009,0.0069920134766239,0.0092643383921496,0.011328736754327,0.0135404789053591,0.0157798165137614,0.0178711764765919,0.0201980967178092,0.0223398482692248,0.0245287467071208,0.0265534867489171,0.0285200226186192,0.0307240704500978,0.0328301847858609,0.0348320413436692,0.0368272834572298,0.0390397244498853,0.0411737801708904,0.0432146986220041,0.0584010189380494,0.072259901197354,0.0858494722927463,0.0981934425539969,0.1101657388663967,0.1257783839216805,0.1368611977343601,0.148041333659689,0.157980699432085,0.1671953702711392,0.1792649844987943,0.190423150541239,0.2007455144158144,0.2104486745197456,0.2186782146115208,0.2280958073227963,0.2370201901958817,0.2442035666899048,0.2517580872011252,0.2586388513590877,0.264327674730561,0.2698646468896837,0.2749222197248412,0.277950180323744,0.2823382329736487,0.286753125307609,0.2901334866513348,0.2937227428193619,0.2973819820286402,0.3011500013188088,0.2988510386395436,0.2966566351980871,0.2937139642806919,0.2908261910945661,0.2880918476326095,0.2845980948303542,0.2811464284586976,0.2813777763239671,0.2814181595259178,0.2818479265950636,0.2834865978996848,0.2844074598677998,0.2859081986384329,0.2870885850443148,0.2873178086781705,0.2896358106527333,0.2912808861119,0.2952848170484017,0.2996340825927862,0.3045188185786762,0.3091394202505313,0.3118801434901878,0.3145452283190245,0.3168152288865387,0.3219389184645559,0.3265017667844523,0.3256519102486355,0.325933400605449,0.3344444444444444,0.3442113442113442,0.0,1.948051713098784,52.680612917128514,142.6682589548707,184.02470282260575,fqhc1_80Compliance_implementation,48 -100000,95746,47586,452.3113237106511,4816,49.2239884694922,3843,39.59434336682472,1378,14.089361435464667,77.41222784566315,79.76791146908192,63.350809200748486,65.08978976503084,77.2331502809434,79.59123812844952,63.28364214144306,65.02557436190727,0.1790775647197477,176.67334063240503,0.0671670593054258,64.2154031235691,252.83236,176.99451944583072,264065.2559898064,184857.98208420727,499.00436,332.5892956581528,520609.9158189376,346804.0655877154,474.15136,232.14732574743925,491337.96712134185,239611.7123363334,2653.95696,1251.3306121406522,2736011.551396403,1271304.7719436036,865.62438,393.14589116041054,895253.3160654231,401782.58220751793,1339.43854,569.5227082598534,1370094.7089173438,569486.1007051363,0.37732,100000,0,1149238,12002.966181354835,0,0.0,0,0.0,42895,447.423391055501,0,0.0,42863,443.9454389739519,1054531,0,37786,0,0,10076,0,0,103,1.065318655609634,0,0.0,1,0.0104443005451924,0,0.0,0.04816,0.1276370189759355,0.2861295681063123,0.01378,0.3666533386645342,0.6333466613354658,23.184299874724385,4.043897642857616,0.3091334894613583,0.2971636742128545,0.1980223783502472,0.1956804579755399,11.54554070158246,6.35238643166901,14.700770571329244,11416.263658900918,44.049340889843535,14.039774546230488,13.459120106640908,8.379706908066158,8.170739328905979,0.5990111891751236,0.830122591943958,0.6944444444444444,0.5834428383705651,0.113031914893617,0.7576257213520198,0.9284294234592444,0.8396501457725948,0.71,0.1317365269461078,0.5258555133079847,0.7527386541471048,0.6355029585798817,0.5383244206773619,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045203466274768,0.0068477863896441,0.0089162401494841,0.0112445226161307,0.0132233928844098,0.0154717981123998,0.0177239472261053,0.0201939683804968,0.0223541453428863,0.0245142248093793,0.0264740904984807,0.0288472412126944,0.0309565002471576,0.0332979063696304,0.0358468137888262,0.037866550695825,0.0397775610565849,0.0416268141556119,0.0437712892842633,0.0584096294981678,0.0727932867367011,0.0859207821088406,0.0983716918416291,0.1105296476049799,0.1255714043849995,0.1379786059937176,0.1487751125874349,0.1592652747205778,0.1683978967700397,0.1799435150051742,0.1907020051102161,0.2007052600646488,0.2096742414291343,0.2176771848670081,0.2269339957416607,0.2346644617756821,0.2420840464822989,0.2498041842144097,0.2563855753033793,0.2620144451131997,0.2673365776051659,0.2726197516262567,0.2765493876671495,0.2804343869441242,0.2849742207784217,0.2883049408003197,0.291836890050496,0.2952454680343204,0.2988490645364726,0.2952526430035776,0.2917351073149365,0.2889548976475038,0.2854576548869695,0.2825128636088873,0.2787134200974958,0.27536140890612,0.2750768530114995,0.2758644033374515,0.2772053235299316,0.2777654252362423,0.2795476297439303,0.2804065968260554,0.2820892553215004,0.2830170732867266,0.285221421215242,0.2854128569419046,0.2884770346494762,0.2939608928880429,0.2979478776529338,0.3022464870670366,0.3037571197157339,0.3101997896950578,0.3134049858187789,0.3173641703377386,0.3231735691019078,0.3237753882915173,0.3243029464109155,0.3266020463112547,0.3240286684270086,0.0,2.028577043872363,52.81908948799653,137.79065951964034,190.20358539148796,fqhc1_80Compliance_implementation,49 -100000,95735,48207,458.5365853658537,4870,49.67880085653105,3869,39.89136679375359,1462,14.884838355878204,77.32373385663094,79.69417535991478,63.321321634088775,65.07531142710879,77.14027047373489,79.5151185192069,63.25119379541626,65.00930175653009,0.1834633828960505,179.05684070788652,0.0701278386725121,66.00967057869411,252.21878,176.69745930471257,263455.1417976706,184569.34172947463,501.60798,335.12196486283136,523452.3737400115,349549.3966290608,487.18007,238.4036366945357,506044.6022875647,246659.91400147544,2703.44864,1278.0814889304586,2786437.6142476625,1297570.270988101,905.0854,416.7063739098952,929832.0990233456,419695.7579880873,1413.70018,603.3614787688784,1439800.553611532,598841.3498659884,0.38129,100000,0,1146449,11975.23371807594,0,0.0,0,0.0,43150,450.20107588656185,0,0.0,44035,457.09510628296863,1049870,0,37706,0,0,10001,0,0,83,0.8669765498511516,0,0.0,1,0.0104455006006162,0,0.0,0.0487,0.1277243043352828,0.3002053388090349,0.01462,0.3629411764705882,0.6370588235294118,23.15697433645363,3.9292504621246658,0.3171362109072111,0.2858619798397518,0.2039286637373998,0.1930731455156371,11.333439172981862,6.402896736622812,15.603942870127536,11504.199841397962,44.576829961855736,13.640342955250546,14.050316889649714,8.86483674442024,8.021333372535235,0.607650555699147,0.8345388788426763,0.7098614506927465,0.5956907477820025,0.1164658634538152,0.7694886839899413,0.933609958506224,0.8591549295774648,0.7164948453608248,0.1481481481481481,0.5355007473841554,0.7580128205128205,0.6490825688073395,0.5563025210084034,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0047562546269534,0.0071457572066585,0.0093388614515375,0.0116697867491453,0.0140879503712984,0.0163586668298453,0.0186287826948413,0.0210035483112288,0.0231962722105586,0.0254025228181724,0.0276371329683985,0.0297104058433208,0.0318216011788831,0.0339695089852499,0.0362452186498501,0.0381966381158534,0.0400904733248946,0.0420167193478622,0.044055893048797,0.0583561300561739,0.0724804538270726,0.0862235370638467,0.0994803500799461,0.111787160452168,0.127330013427644,0.1381951664580195,0.1484681770295723,0.1582056074766355,0.1667256447375475,0.1781611051889179,0.1892754375716665,0.2001783228949199,0.2099532076791883,0.2182770151355156,0.2279713001306552,0.236942731965084,0.2456165968392321,0.2522330537293131,0.2583726037425081,0.2642937187351979,0.2702393328116057,0.2752292493855171,0.2802925999976056,0.28506419435478,0.2877778461917369,0.2913002689348927,0.2937936473611234,0.2974715500835049,0.3006774567692956,0.2977753268413407,0.2946822701082248,0.2920543317615596,0.2888057437556881,0.2860982019569122,0.2821951741643475,0.278252911288541,0.2775596990513575,0.2771487828097375,0.2774017021125384,0.2778389474666418,0.279073432083202,0.2799682234393946,0.2826892181363798,0.2843675789776679,0.2854467420991026,0.2860596751713741,0.291143216080402,0.2970425397715327,0.3017019082001031,0.3070901975061436,0.3118359541011474,0.3136638147961751,0.317119585902413,0.3170367605896622,0.3213230950974601,0.3264967576534459,0.329,0.3323393873678503,0.3309243058197033,0.0,2.0786657490764715,51.80633636215226,144.35626485836795,192.77163926704608,fqhc1_80Compliance_implementation,50 -100000,95795,48168,458.4999217078136,4731,48.32193747064043,3771,38.94775301424918,1444,14.83375959079284,77.38153749659537,79.72377231309454,63.350937847410606,65.08298650283508,77.19556700789997,79.53685104182122,63.2807053147976,65.01407876340686,0.1859704886954034,186.92127127332012,0.0702325326130051,68.90773942822648,253.9669,177.92770533149582,265114.9851244846,185737.98771490768,501.83497,335.3896349404165,523447.1527741531,349695.5633805694,481.18282,235.34045197958463,499517.4591575761,243556.5704777248,2631.26308,1243.5044419116027,2717635.9204551387,1268960.4800998007,866.8696,399.6393544942648,891323.7747272821,403584.0748413423,1391.78472,593.8477460265698,1429670.3377002976,599839.8627858716,0.3801,100000,0,1154395,12050.681142022026,0,0.0,0,0.0,43315,451.7354767994154,0,0.0,43471,450.9734328514014,1041978,0,37396,0,0,10060,0,0,77,0.803799780781878,0,0.0,1,0.0104389581919724,0,0.0,0.04731,0.1244672454617206,0.3052208835341365,0.01444,0.3650213284582571,0.6349786715417428,22.876945356301714,3.912199056039586,0.3070803500397772,0.2938212675682842,0.2065765049058605,0.1925218774860779,11.293315401171013,6.378448362001175,15.434458627225384,11418.267820805846,43.42587294718615,13.66233045449833,13.206528478835754,8.755528314063588,7.8014856997884765,0.5990453460620525,0.8014440433212996,0.7089810017271158,0.5905006418485238,0.1239669421487603,0.7740016992353441,0.920997920997921,0.8528528528528528,0.7358490566037735,0.1854304635761589,0.5196607555898227,0.7097288676236044,0.6509090909090909,0.5361552028218695,0.1078260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020964572910125,0.0046222150140896,0.0068686335781827,0.0092318942140702,0.0114586086991886,0.0137626352596272,0.0161148937905165,0.0184325212545545,0.0208874082854748,0.0231239896044365,0.0252597708687721,0.0272115127999835,0.0292723552576111,0.0314034780638983,0.0335220884776846,0.0354493418469613,0.0374904281959477,0.0395965710613332,0.0416034737082666,0.0436448442445443,0.0584386446408632,0.0723302341633809,0.0860135021804763,0.0989492487128296,0.1110923785338714,0.1265495048981791,0.1390996566487219,0.1492786442552015,0.1591680361983224,0.1685121070176755,0.1796917048806217,0.1905338755732456,0.20090867589835,0.2100276481580644,0.2194663205596374,0.2286293090087896,0.2366824982719022,0.244793130191415,0.2513265907750918,0.2572781660737368,0.262598120252945,0.2684109659476009,0.2729874184088544,0.2771433359668653,0.2813155883387725,0.2852608267716535,0.2886749815848284,0.2909589806781082,0.2944825714396495,0.2974076073361157,0.2939667101038462,0.2901419276909984,0.2873309528495515,0.2842720126920026,0.2813987631801397,0.2774562943736163,0.2741587201513121,0.274887782583857,0.2754232974788775,0.2752793048412839,0.2756810099242184,0.276461109145934,0.2764498718402901,0.2764517278232989,0.278524852509136,0.2797771732089649,0.2807364878241932,0.2858388613784297,0.2882604315047076,0.2914914521516997,0.2971220105391163,0.3023023549201009,0.304600575071884,0.3093025013224514,0.3138352458251702,0.3158018039123814,0.3172757475083056,0.3226773226773227,0.3232959211606898,0.3268866135760334,0.0,1.658150917110287,51.51439287675296,138.9797279705351,187.20834944426784,fqhc1_80Compliance_implementation,51 -100000,95863,48289,459.3012945557723,4812,48.923985270646654,3811,39.22264064341821,1425,14.562448494205272,77.37299817448195,79.67447049515732,63.35320242165369,65.05710405896393,77.18641653392828,79.48938323514679,63.2824593598875,64.98902173400106,0.1865816405536691,185.08726001053333,0.0707430617661941,68.08232496287303,251.55328,176.28516879822843,262408.6873976404,183892.362432042,502.50602,336.14273234526934,523646.1408468335,350103.67497915705,482.16373,235.6548719973454,499503.69798566704,243162.48526086143,2661.09651,1256.644700104102,2741065.739649291,1276039.9808102218,861.1367,400.39366354432815,885761.6598687711,405272.1646995968,1389.29142,600.0329231389121,1421195.9150037032,601864.8905168552,0.37995,100000,0,1143424,11927.667608983656,0,0.0,0,0.0,43332,451.46719798045126,0,0.0,43555,450.90389409887024,1052999,0,37784,0,0,9923,0,0,76,0.782366502195842,0,0.0,1,0.0104315533626112,0,0.0,0.04812,0.1266482431898934,0.2961346633416459,0.01425,0.3518926497095934,0.6481073502904066,23.00946554815006,3.922476537028016,0.3067436368407242,0.2894253476777748,0.1970611388087116,0.2067698766727893,11.202528258782314,6.1265724697834125,15.291581875227497,11401.381579342846,43.63385231844252,13.55872232697263,13.12842439385247,8.307154634577374,8.639550963040056,0.5851482550511676,0.786038077969175,0.7177074422583405,0.5912117177097204,0.1015228426395939,0.7659758203799655,0.9202586206896552,0.8955223880597015,0.7540983606557377,0.125,0.5062193742932529,0.6885758998435054,0.6462829736211031,0.5387323943661971,0.0947712418300653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0045405252009283,0.006613716360833,0.0091891233271734,0.0113962141390317,0.0139556188925081,0.0162363805000356,0.018553102899305,0.0206807058414819,0.023031902920171,0.0255214950206958,0.0274249481870601,0.0296188195636311,0.0317653113741636,0.0336797179439599,0.0356486358097362,0.0377834795563648,0.0397396972114856,0.0415065733452408,0.043520782396088,0.0576618284951618,0.0712957157784744,0.0852066790974419,0.0979702414079153,0.1104207910366033,0.1255664114074465,0.1376076798372484,0.1473449210652208,0.1571965250058699,0.1663880852887603,0.1772523782876329,0.1889490580109601,0.2002217198504478,0.2086923245134485,0.2169698170094301,0.2263523990961853,0.2342027756704895,0.2414468132980818,0.249271219700321,0.2561909668555727,0.2623703412468055,0.2687040220810965,0.2729908178720182,0.2774484088486459,0.2815257096394461,0.2861117608676918,0.2897548161120841,0.2931641643041482,0.2967256167768477,0.2984911234799124,0.2959410189831694,0.2924904446338713,0.2893206617388243,0.286496007854348,0.2840936054098944,0.2800800403256602,0.2762013043409604,0.2760245398773006,0.2751169715014887,0.2753246753246753,0.2753090793816548,0.2757501868092972,0.2768461618581397,0.2785450992583381,0.2789117268348514,0.2799182871328092,0.2802946593001841,0.2839201474585273,0.288775830226156,0.2915504576344424,0.2962231104324785,0.2991560517901137,0.3043749220989655,0.3080701224119692,0.3114600859973827,0.3168143656716418,0.3184848484848485,0.3195230396119644,0.3295859610638881,0.3330815709969788,0.0,2.073803113004804,50.134986934925806,138.3306468352759,195.26437813744263,fqhc1_80Compliance_implementation,52 -100000,95779,47877,455.6322367115965,4820,48.89380761962435,3850,39.48673508806732,1408,14.230676870712788,77.39816222968327,79.72706961649301,63.35848721039546,65.07936802773062,77.21247704005958,79.54867780363718,63.28709901118448,65.01385433951891,0.1856851896236833,178.3918128558355,0.071388199210979,65.51368821170911,252.11296,176.57812951790436,263223.62939684064,184359.9635806433,500.97345,335.0182400098052,522368.49413754576,349099.6043076303,477.08002,233.50755867092315,493683.636287704,240363.7805892072,2682.18228,1267.997387284758,2754142.0666325605,1277633.75821919,861.174,394.8885342841908,881914.8560749225,395080.0950982876,1359.62118,586.5517763670794,1376466.9708391193,575791.5450536023,0.37861,100000,0,1145968,11964.71042712912,0,0.0,0,0.0,43191,450.2239530586037,0,0.0,43058,445.05580555236537,1053775,0,37756,0,0,9905,0,0,87,0.9083410768540076,0,0.0,0,0.0,0,0.0,0.0482,0.127307783735242,0.2921161825726141,0.01408,0.3712634515743324,0.6287365484256676,22.924515030523825,3.938333390228496,0.3015584415584416,0.2932467532467532,0.2179220779220779,0.1872727272727272,11.475865757249936,6.451852594619439,14.977707381314444,11358.20440629863,44.2900101829612,13.958277538088964,13.245668747320044,9.158909973092117,7.927153924460066,0.5914285714285714,0.8007085916740478,0.7062876830318691,0.5697258641239571,0.1040221914008321,0.7543859649122807,0.8969072164948454,0.8753623188405797,0.7211538461538461,0.10062893081761,0.5179042593290615,0.7282608695652174,0.6348039215686274,0.5198098256735341,0.1049822064056939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584108079641,0.004428814658667,0.0065231505904313,0.0086928263871963,0.0108778528948304,0.0129969263337879,0.0153462067559993,0.0174978574052156,0.019759090305377,0.0220073664825046,0.0242807966560118,0.0263417136993329,0.0282311107457041,0.0305790567940879,0.0325587149720601,0.0350119805007023,0.0372017959487699,0.039206943393096,0.0410625759985034,0.0432396405027962,0.058372376947398,0.0723437189503519,0.0856076412552292,0.0980629158214477,0.1106999399057469,0.1262607040913415,0.1374657926557627,0.1476901465408068,0.1572690471358533,0.1660733051665344,0.1775051697397897,0.1877149717697449,0.1978638097204263,0.2060896070269738,0.2149537846065921,0.2237319642382933,0.2331623550401427,0.2415045541437085,0.2490926413211142,0.2563574119236538,0.261984856366684,0.2681002746450067,0.2735157007974632,0.2791054251865694,0.2825765114190714,0.2854540755418261,0.2883096761295481,0.2913956914947668,0.2946189558627646,0.2971887021130842,0.2946134509134415,0.2917118576586718,0.287827028242869,0.2843066639776427,0.2813225486861756,0.2778768344534357,0.2739721710080524,0.2742219900075107,0.2740835247086842,0.2747438151561973,0.2753817504655493,0.2771800066880421,0.2779963774904753,0.2788939152031222,0.2795107906821805,0.2809560723514211,0.2817800782019184,0.2850090045333168,0.2890625,0.2936786997968432,0.299527983816588,0.3042479908151549,0.3088180807706558,0.310458743148885,0.3156380510440835,0.316590024761231,0.3192834562697576,0.3191361727654469,0.317983651226158,0.3250657647500939,0.0,2.7830955346160016,51.33540721757398,142.46195334508016,190.0701648695924,fqhc1_80Compliance_implementation,53 -100000,95870,48173,458.7983727964952,4821,48.98299780953374,3835,39.34494628142276,1462,14.790862626473348,77.3584022892406,79.63958721442218,63.35300198276878,65.04145786512723,77.17411303452636,79.46089760876724,63.28365759480001,64.97645222575122,0.184289254714244,178.68960565493808,0.0693443879687691,65.005639376011,251.99944,176.61493796673062,262855.3666423281,184223.36285254057,500.50741,334.0605707557533,521400.3859392928,347783.1550597197,478.0647,234.7098403858935,494055.304057578,241298.9614673196,2672.76427,1264.2022586061703,2743180.202357359,1273938.5090290725,853.42041,399.64701079065,873020.5695212267,399760.2725833968,1410.92414,599.3929439692478,1429177.1565661833,592498.1739179917,0.37994,100000,0,1145452,11947.971211014916,0,0.0,0,0.0,43072,448.5761969333472,0,0.0,43237,446.40659226035257,1052671,0,37754,0,0,9881,0,0,88,0.9179096693439032,0,0.0,0,0.0,0,0.0,0.04821,0.1268884560720113,0.303256585770587,0.01462,0.354042214257268,0.645957785742732,23.453420590490747,3.930534386357782,0.3079530638852673,0.2930899608865711,0.2099087353324641,0.1890482398956975,11.667632397891364,6.701925331959653,15.537838077732191,11450.82918065276,43.94227995533427,13.679037861433448,13.299548631990374,8.949281167065278,8.01441229484518,0.5976531942633637,0.7927046263345195,0.7104149026248942,0.5987577639751552,0.1103448275862069,0.7896494156928213,0.9281183932346724,0.8917378917378918,0.8018433179723502,0.1273885350318471,0.5104285172544558,0.6943164362519201,0.6337349397590362,0.5238095238095238,0.1056338028169014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919063673824,0.0048940632884457,0.0070594679027497,0.0090771558245083,0.0114759097377515,0.0134542382886046,0.0156587473002159,0.0181447294609618,0.0202056298050907,0.0224700722763471,0.0248958407976496,0.0269729962477701,0.0292398862037445,0.0314361247981237,0.0335638248539247,0.0355889155034277,0.037528963919232,0.039414636168603,0.0411244846458205,0.0428739375149554,0.0573162086651932,0.072359898031677,0.0857148841252055,0.0977927587365591,0.1109062947670009,0.1261078540115142,0.1377234721236077,0.1495225740595027,0.1594278699898596,0.1690571134551067,0.1805035103587888,0.1914269953381718,0.2020415040601798,0.2117568616306142,0.2203117785448868,0.2289273938347828,0.2371023671212104,0.2445148817552378,0.2514401705524812,0.2568856720759514,0.2626294175487304,0.2677464624020582,0.2730479662862825,0.277589327452085,0.2817952082422121,0.2859942320491015,0.2890922291207691,0.2920856350075096,0.2952094566569888,0.2980637151310228,0.2944329952452149,0.2922543448048106,0.2895018444988876,0.2865231835909287,0.2837432424404443,0.2795763113988765,0.276232956882098,0.2760491803278688,0.2762837019730896,0.2768516376963723,0.2768929138269069,0.278690138626339,0.2796534084977555,0.2817378137038769,0.2832610830359495,0.28411708377546,0.2853506067377592,0.290988969900916,0.295214245965498,0.2983271009643771,0.3013147788370307,0.3076236480100808,0.3129794798228653,0.3196072461561881,0.3199435559736595,0.3229673590504451,0.3221042916474388,0.3225741375832157,0.3274263904034896,0.3323274236137307,0.0,2.544774858248457,51.72260738249035,132.81991821127656,198.10264439507932,fqhc1_80Compliance_implementation,54 -100000,95736,48272,460.0568229297234,4851,49.37536558870226,3874,39.92228628729005,1413,14.47731260967661,77.38965647392791,79.75554985691339,63.34469261111818,65.09349373101594,77.20796863522536,79.57619025734634,63.27573204959765,65.02762467791598,0.1816878387025582,179.35959956705003,0.0689605615205337,65.86905309995927,252.09096,176.5715358321163,263318.6471128938,184435.71237445503,501.01523,334.12164132446804,522752.4024400434,348428.74111393705,482.13034,235.52239510864197,499993.1060416144,243299.4778462161,2688.28254,1259.8460458824406,2772314.239157684,1280632.3048612818,883.72399,404.9207350433987,906682.6794518258,406820.6544547715,1365.63912,584.8606169370933,1399473.0717807305,586475.6266938226,0.38072,100000,0,1145868,11969.029414222445,0,0.0,0,0.0,43069,449.2562881256789,0,0.0,43580,451.554274254199,1055092,0,37866,0,0,10060,0,0,77,0.8042951449820339,0,0.0,1,0.0104453914932731,0,0.0,0.04851,0.12741647404917,0.2912801484230056,0.01413,0.3579072532699168,0.6420927467300832,23.186403559305752,4.006389522291433,0.3048528652555498,0.2991739803820341,0.2065049044914816,0.1894682498709344,11.212313937331688,6.209598534866694,15.089363514810051,11470.488021080762,44.21358337623232,14.18212639695106,13.405362802114055,8.672797367982712,7.953296809184491,0.592410944759938,0.811044003451251,0.7138018628281118,0.5325,0.1171662125340599,0.7781569965870307,0.9168356997971604,0.8728323699421965,0.7430167597765364,0.1623376623376623,0.5118430792005921,0.7327327327327328,0.6479041916167665,0.4718196457326892,0.1051724137931034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026942711287577,0.0050282331234857,0.0073574929723256,0.0094885913403905,0.0117692534610963,0.0142967699890024,0.0167208735636871,0.0187217362011412,0.0208009649194537,0.0229906235925152,0.0249802679459187,0.0270825205839476,0.0292472808766988,0.0313240109561958,0.0332638831586764,0.0354692021496486,0.0374638874219502,0.0395281521366989,0.0415536362030079,0.0432925240948163,0.0582689496763416,0.0718831114460353,0.0854936684956513,0.0980159064130617,0.110500443056669,0.1263894911633121,0.1382617552198268,0.1484882990837208,0.1581285575454671,0.1670080538784089,0.1793436127142734,0.1900321299912372,0.200956885771761,0.2104077593465353,0.2193750687644405,0.2295996899396489,0.2375775012266381,0.2454715030564545,0.2525735794295043,0.2589313291465047,0.2642767964487191,0.2682550625737622,0.2734940755354463,0.2778183210307823,0.2815838942453459,0.285840838623948,0.2894371915797364,0.2923186344238976,0.2965766696809198,0.2996458802311652,0.2963450331659371,0.2927646025472112,0.2899415763159373,0.2870683818551117,0.2849979291166203,0.2805140165546257,0.2775590551181102,0.2785297283193633,0.2782932610904165,0.2784756378047486,0.2788584568027147,0.2793256710982319,0.281357548617158,0.2823474739427737,0.2839949575434674,0.2858948889290229,0.2864147434271705,0.290508358497027,0.2950557103064067,0.2996133512191273,0.3024425612906149,0.303248714823255,0.3060956548921538,0.3093654234247701,0.315852314474651,0.3185984452952778,0.3241708993128174,0.326417704011065,0.3325288281040493,0.3415730337078652,0.0,2.0293907789008485,50.86753857872267,138.37575886280896,200.43394502063572,fqhc1_80Compliance_implementation,55 -100000,95765,48478,461.5778207069389,4885,49.955620529420976,3890,40.05638803320629,1490,15.193442280582676,77.34687979821054,79.70553230322969,63.33382307926016,65.08101502364133,77.1562089981396,79.51810853800858,63.26291845365723,65.01343120564574,0.1906708000709329,187.42376522111212,0.0709046256029282,67.58381799558322,252.09162,176.72564334572095,263239.82665900904,184540.9526922372,503.4644,335.78286188014255,525144.8545919699,350047.9631181981,482.0123,235.4100484235367,499735.1433195844,243047.88902652744,2720.53481,1267.6534182349135,2802770.281418055,1285638.3524616645,883.79143,401.9686548157643,905285.8455594424,402187.8973812223,1437.929,606.1944932364146,1467353.0412990132,604146.474154704,0.38254,100000,0,1145871,11965.446666318592,0,0.0,0,0.0,43266,451.1878034772621,0,0.0,43532,451.0207278233175,1052688,0,37784,0,0,10149,0,0,85,0.8875894115804313,0,0.0,0,0.0,0,0.0,0.04885,0.1276990641501542,0.3050153531218014,0.0149,0.364191451644672,0.635808548355328,23.11760172855016,3.904141629084977,0.3030848329048843,0.2982005141388175,0.2025706940874036,0.1961439588688946,11.359235574942897,6.411497414265965,15.88107298873877,11506.478937189124,44.56047834373881,14.250395675814833,13.410021654871343,8.67806116867889,8.221999844373745,0.5969151670951157,0.8155172413793104,0.6912637828668363,0.6078680203045685,0.1074705111402359,0.7620660457239627,0.9079229122055674,0.8571428571428571,0.7711442786069652,0.1288343558282208,0.5249169435215947,0.7532467532467533,0.6212303980699638,0.5519591141396933,0.1016666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293380892545,0.0046241836693303,0.0068629441624365,0.0090958057664359,0.011383983071539,0.0136453432720311,0.0158935671322255,0.0182625561453654,0.020547525096604,0.0225560060613507,0.0248213498467248,0.0268191759161336,0.0290203821394047,0.0312229593308335,0.0333243890356671,0.0353425195629477,0.0373710806444932,0.0397406639004149,0.0417862043158288,0.0438793785663709,0.0587498564912903,0.0724872650439839,0.0863370447254198,0.0990761857717895,0.1110057225963514,0.1261940992476118,0.1377391488685145,0.1485615870383364,0.1589922455814747,0.1684105683655875,0.1802107980210798,0.1908610573858172,0.2013273375043448,0.2115405611966372,0.219520231975748,0.2293012655987255,0.2371099541811128,0.2449672350422066,0.2518862251670656,0.2583592891168926,0.2643554506755506,0.2701125225162,0.275411697898921,0.2798312984507734,0.2836324366301433,0.2871919122349584,0.2909597809644067,0.2940870051328962,0.2980943269379945,0.301066491112574,0.2976273645743766,0.2938922385968767,0.2916660813866921,0.2888517649091983,0.2858031364302744,0.2826677657690664,0.2793479461566381,0.279647698251588,0.2802690964830112,0.2806717904924566,0.2818263271858433,0.2830634676752157,0.2845392676714959,0.2848640213999108,0.2855053350917156,0.2861455188924742,0.2875298532923916,0.2922612686238763,0.2955023118957545,0.2990017429884329,0.3025148938105416,0.3042074622916115,0.305773701074323,0.3102717432442661,0.3140626452272516,0.318475073313783,0.3211246200607903,0.3195771498272006,0.3240379252649191,0.3279463933780055,0.0,2.0661331104646328,51.56111308689406,140.36713996400195,199.3157684543956,fqhc1_80Compliance_implementation,56 -100000,95756,48143,458.2689335394127,4965,50.67045407076319,3906,40.22724424579139,1486,15.163540665859058,77.36211040614715,79.72363227756553,63.32787542470121,65.07564910181027,77.16521143838774,79.5294485896569,63.25327379695311,65.00414383303278,0.1968989677594095,194.18368790863383,0.0746016277481018,71.50526877748575,252.23176,176.6028214412727,263410.919420193,184430.03199932404,498.49159,333.1708440928685,520019.3721542253,347373.7454224505,482.20721,235.59402116774424,499905.0921091107,243229.8222865885,2728.73615,1295.088909903304,2812108.766030327,1315106.5423828706,910.02004,424.2449102193788,933518.724675216,426510.2679004868,1436.8416,621.9146447827469,1467424.82977568,622070.8979453353,0.38073,100000,0,1146508,11973.223610008772,0,0.0,0,0.0,42871,447.12602865616776,0,0.0,43537,451.0735619700071,1052982,0,37806,0,0,10101,0,0,89,0.9190024645975188,0,0.0,0,0.0,0,0.0,0.04965,0.1304073753053345,0.2992950654582074,0.01486,0.3700270374662032,0.6299729625337969,23.065336106992756,3.9417548095045833,0.3120839733742959,0.2964669738863287,0.1922683051715309,0.1991807475678443,11.422575602754517,6.441425340532359,15.977526667748744,11520.460364504585,45.06252407362842,14.33931942729065,13.68675604808093,8.444956505899661,8.59149209235718,0.5960061443932412,0.8221070811744386,0.6956521739130435,0.5725699067909454,0.1259640102827763,0.75,0.912280701754386,0.8517350157728707,0.7461139896373057,0.155440414507772,0.5263940520446097,0.7503875968992249,0.6407982261640798,0.5125448028673835,0.1162393162393162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022491717576973,0.0041373435820471,0.0065272561161303,0.0087891319589095,0.0110269060576776,0.0132908298366399,0.0156935125323761,0.0179592420158457,0.0201838427009948,0.0222106168591791,0.0244585281811469,0.0266863887091306,0.0288371518811534,0.0308529384486969,0.0331509959748168,0.0354824035399694,0.0374546960753857,0.0393741634935621,0.0415787449455838,0.0437363942212547,0.0589887054009478,0.0727198543719791,0.0860259032038173,0.099486737205242,0.1120721480934549,0.1280459429731787,0.1397852884390978,0.1504992867332382,0.1604017523239662,0.1688595785748753,0.1807773912481556,0.1925719912993604,0.2032830755172638,0.2120917106040385,0.2206251375742901,0.2300405504221232,0.2379064677505806,0.2452743147756424,0.252464632942698,0.2591006423982869,0.2649475706580866,0.2699010503169665,0.2750778042055687,0.2789780356800307,0.2840489605595492,0.2868286791708772,0.2910997909808879,0.2956078072117464,0.2983069276172724,0.3012632855974892,0.2986039122766865,0.2953085672631246,0.293293574884663,0.2899372430209911,0.2866799086893362,0.2821919063841488,0.2790356195528609,0.2789971215491299,0.2787044121397602,0.2784533721528875,0.2789043442638214,0.2798423313003745,0.2806379174117353,0.2815863645442641,0.2836412239247697,0.2844800827728919,0.285391417351753,0.2898121904880555,0.2951918069779552,0.2992981217895933,0.3037809647979139,0.3053027925949168,0.3076923076923077,0.3119252336448598,0.3151431209602954,0.320323488045007,0.3263459508369778,0.3266916551588084,0.3327077747989276,0.3360061092019855,0.0,2.1917158177246177,52.86577246083491,144.72168790800006,193.9321389229559,fqhc1_80Compliance_implementation,57 -100000,95769,48108,458.7079326295565,4795,48.91979659388737,3842,39.62660150988315,1469,15.067506186761896,77.32840490063373,79.68864121566006,63.31625382636724,65.06478249983023,77.13743705345235,79.49902796759542,63.24467887150112,64.99552978204082,0.1909678471813833,189.61324806463156,0.071574954866115,69.25271778941067,252.26168,176.7173683951885,263406.1752759243,184524.38826466643,499.89147,333.1988653055216,521494.0951664944,347437.7035340472,476.02712,232.39667623699347,493960.7597448026,240319.5074013501,2688.19762,1255.8945687775076,2774258.058453153,1278709.527690075,870.35791,396.0779633700558,897849.6068665226,402640.0643002538,1420.17868,601.8681042826323,1457369.1486806795,606850.13628188,0.37841,100000,0,1146644,11973.007967087471,0,0.0,0,0.0,43094,449.4669465066984,0,0.0,42934,445.19625348494816,1052189,0,37767,0,0,9911,0,0,92,0.9606448850880764,0,0.0,1,0.0104417922292182,0,0.0,0.04795,0.126714410295711,0.3063607924921793,0.01469,0.3761283851554663,0.6238716148445336,22.58717047402428,4.014966895552481,0.2943779281624154,0.3008849557522124,0.2053617907339927,0.1993753253513795,11.298796036968866,6.181098887861966,15.696992036587874,11366.597808640316,44.24605365525849,14.23018621681751,12.93040068728367,8.892036350385938,8.193430400771378,0.5819885476314419,0.8079584775086506,0.6755083996463307,0.5538656527249683,0.1318537859007832,0.7721943048576214,0.9218436873747496,0.841642228739003,0.7184466019417476,0.1824324324324324,0.4962235649546828,0.7214611872146118,0.6037974683544304,0.4957118353344768,0.1197411003236245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024421632905363,0.0046349824540051,0.0069548795841286,0.0092684810666883,0.0115257064963072,0.0138323011734028,0.0160609397944199,0.0180197655899048,0.020211004109673,0.0224783507687268,0.0244784993080826,0.0266340842351684,0.0285993418346359,0.0307762030323005,0.0325569876273127,0.0347814402513773,0.0367771118632839,0.0389210378943438,0.040953113309502,0.0428678553574404,0.0578356261612007,0.0712358281387273,0.0841957367389093,0.0963537560832045,0.1080520082606313,0.1234819739359284,0.1350356836088694,0.1464390617683368,0.1556849132176235,0.1643773924791713,0.1760689283791061,0.1875121718996819,0.1978698636843307,0.2069617899870956,0.216332236298995,0.226124808932013,0.234295662266067,0.2418997242698778,0.2493813145646498,0.2557971678658173,0.2616532654595939,0.2670073197539814,0.2724324836090795,0.2775426015421698,0.2823540846576274,0.2863198885972371,0.2895000626487908,0.2934331474549945,0.2960222855662088,0.2979037768953735,0.2951228051276527,0.291215667936569,0.2884146770899359,0.2857843773900746,0.2834961256420152,0.2795935855061819,0.2757562819235574,0.2764889253486464,0.276002046733754,0.276560105491999,0.2773172006871312,0.2780827578065049,0.2785827296194521,0.2789610736462576,0.2804936381899933,0.2831083357085482,0.2848033102822809,0.2899079706754016,0.2940440179409617,0.2977769034035019,0.3004057709648332,0.3013985647687392,0.3095134800123954,0.3131752701080432,0.3141555906682777,0.3186658864833235,0.3203207747011651,0.3227899432278994,0.3224388904147212,0.3271173271173271,0.0,1.8430301768764048,52.31387031458787,140.41885253177148,192.45483709101072,fqhc1_80Compliance_implementation,58 -100000,95731,47836,455.7353417388307,4833,49.29437695208449,3874,39.8930336045795,1489,15.13616278948303,77.31464774318667,79.68101312172624,63.30648041847581,65.0559500255889,77.12442163565944,79.4960560291054,63.23407434265032,64.98857208451501,0.1902261075272235,184.9570926208344,0.0724060758254836,67.37794107388595,251.98492,176.44652408406938,263221.6314464489,184314.6985658453,497.94158,331.1907793248479,519510.7540921958,345323.92178035434,469.48631,228.79379140379436,487467.19453468575,236608.71926898675,2693.45131,1259.9004521471734,2771609.102589548,1274131.2720082204,867.19901,388.12178221783154,891272.6807408258,390854.5146372902,1437.89994,612.0460540868393,1462097.2307820872,603957.8594459259,0.3796,100000,0,1145386,11964.619611202224,0,0.0,0,0.0,42861,447.1174436702845,0,0.0,42519,441.1319217390396,1056790,0,37923,0,0,10082,0,0,85,0.8774587124337989,0,0.0,2,0.0208918741055666,0,0.0,0.04833,0.1273182297154899,0.3080902131181461,0.01489,0.3509710661910424,0.6490289338089575,23.035188056000525,4.012791715767022,0.3180175529168818,0.2767165720185854,0.2121837893649974,0.1930820856995353,11.087184017567116,5.976107910612044,15.85144115564387,11410.148832736868,44.49720549943072,13.238142170278405,13.950202257296889,9.18313022588608,8.125730845969358,0.5758905524006195,0.8013059701492538,0.6793831168831169,0.5547445255474452,0.105614973262032,0.7537117903930131,0.913978494623656,0.8611111111111112,0.6956521739130435,0.1006711409395973,0.501282521069989,0.71499176276771,0.6145374449339207,0.5073170731707317,0.1068447412353923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185078255584,0.0046131540793462,0.0070139466899449,0.0093384818615994,0.011475660003052,0.0133766657157993,0.0155374868650595,0.0178983480018786,0.0201377956780406,0.022449940624872,0.0245455384331457,0.0268297190734351,0.0288012507971774,0.0309009603099369,0.0329995871180842,0.03511837072263,0.0372272675496277,0.0391515943923875,0.0409782371351626,0.0430891683248773,0.057863578938576,0.0713007253582306,0.0844322747825722,0.0978587804724144,0.1098327462932107,0.1250357048399894,0.1366159659494974,0.1468029601235159,0.1567076429716729,0.1668401566775768,0.1785367642300973,0.1893549470673009,0.1992156008279769,0.2085127834215515,0.2166262403528114,0.2267226256300935,0.2361139073440261,0.2436050708291978,0.2513819695625469,0.257433247200689,0.2632689498458042,0.2688130469930758,0.2735988812382228,0.2785783707898873,0.2828581151705194,0.2866918183163189,0.2897416014208169,0.2917413466549721,0.2941594705000258,0.2970815993257125,0.2940085476977663,0.2906002855887521,0.2885006950978052,0.2862102745843778,0.2833928862662535,0.2806819223366227,0.276763433047983,0.2765054714632068,0.2771129521666496,0.2767286642342262,0.2771115842952669,0.2782435836876082,0.2787110472740898,0.2796410643685309,0.2819263293679231,0.2839327296248383,0.2862247936697013,0.2918162800137384,0.2966520498364307,0.3019581576770024,0.3052865031230198,0.3080008444162972,0.3110246107483677,0.3134305682163476,0.3140395242109207,0.3184015089001532,0.320109439124487,0.3254534338699816,0.3240208162147356,0.3291139240506329,0.0,2.1499469381778264,49.8357946077094,144.33007756654942,200.12384532344095,fqhc1_80Compliance_implementation,59 -100000,95818,48197,459.4752551712622,4752,48.53994030349204,3815,39.27237053580747,1478,15.059800872487424,77.3504688262772,79.68210729652859,63.33176974345843,65.05972208293032,77.16048040220733,79.49599135629067,63.2599608779756,64.99196031050938,0.1899884240698668,186.1159402379116,0.0718088654828292,67.76177242093695,252.74612,177.03040247430584,263777.2861049072,184756.93760494463,498.70102,331.96138372090246,519946.0748502369,345929.04644315515,473.42336,230.9925391487637,490617.2431067231,238341.43415017208,2632.29901,1240.987159895473,2708419.054874867,1256383.059441308,883.16356,405.0777405411517,905631.4993007577,406679.5075467554,1422.3194,603.8488014898167,1450073.6396084244,599941.1823165875,0.38041,100000,0,1148846,11989.876641132149,0,0.0,0,0.0,43012,448.3499968690643,0,0.0,42719,442.4847105971738,1052672,0,37860,0,0,9959,0,0,83,0.8453526477279844,0,0.0,1,0.0104364524410862,0,0.0,0.04752,0.1249178517914881,0.311026936026936,0.01478,0.3666531768514771,0.6333468231485229,23.158825861700056,3.988311680026294,0.3111402359108781,0.2862385321100917,0.2102228047182175,0.1923984272608125,11.267269035920082,6.322508322470955,15.69131349485574,11460.90525640727,43.73124808380912,13.415042962883287,13.493962131702377,8.814307770581994,8.00793521864146,0.5897771952817824,0.8003663003663004,0.6840775063184499,0.5960099750623441,0.1171662125340599,0.7625,0.9244897959183672,0.841642228739003,0.7680412371134021,0.1485714285714285,0.5105162523900574,0.6993355481727574,0.6205673758865248,0.5411184210526315,0.1073345259391771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00217800919829,0.004319479228983,0.0065259311884705,0.0086666734401511,0.0107614378420163,0.0129351612311829,0.0149201978481464,0.017073768482967,0.0193039139503496,0.0217533730524333,0.0238405299262738,0.0260717769677055,0.0280951450519842,0.0302783756784312,0.0322597279374606,0.0342721937510332,0.0362924930644693,0.0383143352037588,0.0404780462457781,0.0426725798223971,0.057834341748383,0.071953578336557,0.0855532035294364,0.0985606219794074,0.1105503813898605,0.1254729144209836,0.136714980967629,0.1479751938644172,0.1578947368421052,0.1665737982469299,0.1784815030021305,0.1903382373606892,0.2006300238974581,0.2093356211543295,0.2182880147835269,0.228084946105529,0.236617455056744,0.2443039256500557,0.2521486392897285,0.258432113611636,0.2641943881978594,0.2690670533479898,0.2745554990358795,0.2783933683920507,0.2829008115857511,0.2866355128663551,0.2903173291256543,0.2946995836569435,0.2980338315674947,0.3013132712994126,0.2995163224337469,0.2964242933263572,0.2933353994393339,0.2896204067483244,0.2856358428683793,0.2830321377243678,0.2783959788828122,0.2782939258385358,0.2785955228457528,0.2797906243879858,0.2803051498703672,0.2819942963909922,0.2836088470117363,0.2840544871794871,0.2851738339239536,0.2862254025044722,0.286776555740903,0.2907440903137279,0.2963001527141469,0.3005980484734026,0.3047254725472547,0.3099455040871934,0.3117658027223569,0.3125515792632605,0.3162678538304582,0.3232417326502096,0.3267490952955368,0.3256231306081755,0.3264920334863624,0.3330804248861912,0.0,2.108363736831524,52.26395220158134,131.32241623614442,196.8689060762668,fqhc1_80Compliance_implementation,60 -100000,95721,48122,459.48120057249713,4837,49.16371538115983,3773,38.87339246351375,1397,14.281087744591051,77.30949638025908,79.6686820437783,63.31695901961641,65.05929223675868,77.11772778537139,79.47999905899707,63.242285613003794,64.9879806674557,0.1917685948876908,188.6829847812379,0.074673406612618,71.31156930297777,251.12318,175.90267329007867,262348.6382298555,183765.5880377979,500.61594,334.35398467819,522459.6274589693,348766.97997565527,474.11972,231.7460172188429,491814.6801642273,239494.73276963172,2627.90458,1261.0144636866469,2706769.1206736243,1278911.620812848,861.58619,407.4094908917624,882493.1833140064,408013.4984922447,1352.62004,600.3281264131795,1382399.995821189,599436.2686881649,0.38111,100000,0,1141469,11924.93810135707,0,0.0,0,0.0,43177,450.5072032260424,0,0.0,42835,443.9882575401427,1055064,0,37920,0,0,9972,0,0,83,0.8671033524513951,0,0.0,2,0.0208940566855757,0,0.0,0.04837,0.1269187373724121,0.2888153814347736,0.01397,0.3729320310942794,0.6270679689057206,22.95893868892731,4.053027986799435,0.3087728597932679,0.2865094089583885,0.208322289954943,0.1963954412934004,11.495476242598116,6.318266068502815,15.211516146135915,11414.378296903922,43.61168396779858,13.51817524872027,13.243690338181707,8.565537940945338,8.284280439951251,0.589451364961569,0.81313598519889,0.6952789699570815,0.5610687022900763,0.126855600539811,0.7401960784313726,0.9014084507042254,0.8259587020648967,0.7305699481865285,0.1897435897435897,0.5170655158885837,0.738013698630137,0.6416464891041163,0.5059021922428331,0.1043956043956044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116213123221,0.0046833184656556,0.0066654492330168,0.0090192573332249,0.0110506785950287,0.0131607071971663,0.0153901034500331,0.0176692151438749,0.01982748047913,0.0219627268168374,0.0240059861212189,0.0261515083064665,0.0283084832904884,0.0304003954522985,0.0326103771541722,0.0345500945374895,0.0366475890833445,0.038403302082469,0.0402627367020723,0.0423741172058915,0.0572842703199398,0.0716715333814771,0.085348073715898,0.097994679117112,0.1102206099464293,0.1260510423166823,0.1371483749111321,0.1469147894221351,0.1561201269217209,0.1654298215511324,0.177672905151329,0.189178361053361,0.2000348284156336,0.2089622486619017,0.2177671570786714,0.2276502090008981,0.2359841798315196,0.2435306708725285,0.2504061899946598,0.2568529664660361,0.2636735261079522,0.2694292635545517,0.2746017646710487,0.279190009477081,0.2821151649206387,0.285538097234898,0.2899907391184642,0.2936077592790591,0.2964887276496502,0.2998758223466934,0.2965079450651643,0.293040797225128,0.2902507434918039,0.287232966937732,0.2836998514115899,0.2804881783657968,0.2766759599543784,0.2761184232119998,0.2766429840142096,0.2769288443000464,0.2775905959868224,0.278089554598269,0.2782927084423057,0.2801116071428571,0.2813476233959725,0.2830698133291793,0.2833437695679399,0.2888110356908255,0.292822499040441,0.297377010499823,0.3016281062553556,0.3062816188870151,0.3135550831561836,0.3178933051231676,0.3209957113555846,0.322274325908558,0.3264594389689158,0.3345521023765996,0.3331515812431843,0.3413150893196503,0.0,2.065186978041498,53.33383163209936,134.2914964537557,186.40512045956703,fqhc1_80Compliance_implementation,61 -100000,95732,48025,458.44649646931015,4907,49.993732503238206,3899,40.1224251034137,1467,14.927088121004472,77.40440741590693,79.760757704281,63.3594678928421,65.09873645133041,77.21258232746462,79.57266336839783,63.286538436783104,65.02963549414075,0.1918250884423145,188.0943358831786,0.0729294560589934,69.10095718966147,251.84742,176.39204276997577,263075.48155266786,184256.09281115583,499.65964,332.9262731297592,521335.9169347762,347169.1107777537,478.54845,233.1997737447396,495376.5303137927,240171.01909621144,2732.07887,1284.1006277770466,2814282.5178623656,1301749.3604824373,897.28226,411.2287473684794,923388.6788116826,415671.96193068,1423.86638,610.9345111072822,1451534.4294488782,608547.1070867779,0.38015,100000,0,1144761,11957.976434212176,0,0.0,0,0.0,43026,448.8363347678937,0,0.0,43388,448.81544311202106,1059303,0,37989,0,0,9925,0,0,71,0.7312079555425564,0,0.0,0,0.0,0,0.0,0.04907,0.1290806260686571,0.298960668432851,0.01467,0.3574793875147232,0.6425206124852768,22.77628263855788,4.025933751575016,0.2995639907668633,0.2931520902795588,0.2064631956912028,0.2008207232623749,11.500621500749036,6.249048512548189,15.662379682337743,11394.402074180109,44.74084427107687,14.078626127088034,13.26562644334062,8.941238475227282,8.455353225420922,0.5886124647345473,0.7979002624671916,0.7011986301369864,0.5751552795031056,0.1289910600255427,0.7572977481234362,0.9111570247933884,0.8496932515337423,0.7272727272727273,0.1775147928994082,0.5137037037037037,0.7147192716236722,0.6437054631828979,0.517948717948718,0.1156351791530944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021160914070489,0.004448948568533,0.006715766835068,0.0088254709795358,0.0110926967148943,0.0131718241042345,0.0155414012738853,0.0176219095333816,0.0197298512342651,0.0217651573292402,0.0238902952721607,0.0257612923752732,0.027757502236021,0.0299415999752804,0.0322231164489568,0.0342777990262458,0.0364210635323357,0.0385165975103734,0.0404477100069629,0.042318949265173,0.0563589095730796,0.0707947006006823,0.0838779385076944,0.0967911514845655,0.1088986802715351,0.1242095467715669,0.1362353590222373,0.147178127694912,0.1570439539306395,0.1660428753740066,0.1782679404193906,0.1898650622747881,0.2007853032989264,0.2097188658407234,0.218734528171106,0.227801707433203,0.2361386911800798,0.2444044741723343,0.2519531471465342,0.2583258943898922,0.2637805737524984,0.2694466813720341,0.274638245638883,0.2787644972110412,0.282882708350991,0.2863934547062726,0.2901993583581959,0.2924372732577314,0.294893638992152,0.298083747338538,0.2952107690657514,0.292081243318806,0.2889771180852705,0.28615411175692,0.2825849173736955,0.2791452158284339,0.2759049809394789,0.2762745610026764,0.2761641231093079,0.2765776311588805,0.2764867030693825,0.2777941784259314,0.2784986773864323,0.2789112625713207,0.2795339509120428,0.2803036190772259,0.2812147211560171,0.2862971037060106,0.2898460041019223,0.2948506289308176,0.2961160674056051,0.3021567596002104,0.3056869089099054,0.3088599984970316,0.3134121559209311,0.320855614973262,0.3278465720326185,0.3389796731765643,0.3402739726027397,0.3464998044583496,0.0,2.362794178392828,51.94269068050909,144.2430011304316,193.30793646986768,fqhc1_80Compliance_implementation,62 -100000,95740,47811,455.8700647587216,4823,49.080843952371005,3843,39.46104031752664,1408,14.2886985585962,77.33232137485312,79.70017341012776,63.31916690730778,65.07205794291028,77.14856740440449,79.52115217732458,63.24763147841867,65.00523891337043,0.1837539704486346,179.02123280317994,0.0715354288891134,66.8190295398432,253.98472,177.8865368284776,265285.89931063296,185801.6887700832,499.85944,333.54600683677194,521412.6906204304,347699.0566500647,476.01139,233.1659938177815,493217.2132859829,240416.04268410444,2664.66556,1263.5046572406843,2736785.335283058,1273279.0654279129,867.04923,401.7709042316218,888666.983496971,402689.7999396405,1360.17632,596.0247620153125,1380417.798203468,587003.4232452065,0.3786,100000,0,1154476,12058.449968665136,0,0.0,0,0.0,43134,449.8015458533529,0,0.0,42937,444.4746187591393,1045310,0,37496,0,0,9921,0,0,96,1.0027156883225403,0,0.0,0,0.0,0,0.0,0.04823,0.1273903856312731,0.2919344806137259,0.01408,0.3669579030976966,0.6330420969023034,23.0764289062402,3.849525301513373,0.3205828779599271,0.2927400468384075,0.1956804579755399,0.1909966172261254,11.036693408139458,6.126321555757545,15.217114038291935,11384.988275130338,44.35359184095035,14.091303228217694,14.045664648865705,8.27186812237657,7.944755841490379,0.5930262815508717,0.8035555555555556,0.6948051948051948,0.5837765957446809,0.108991825613079,0.7647058823529411,0.9148936170212766,0.8413978494623656,0.7650273224043715,0.136094674556213,0.5111452728670254,0.7088815789473685,0.6313953488372093,0.5254833040421792,0.1008849557522123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.004777409244439,0.0073003817723986,0.0095942759573949,0.0117807438756409,0.0139159136520614,0.0161336379211878,0.0183668885531098,0.0204695104494703,0.0225227530994379,0.0244397515018555,0.026610816804238,0.0285764231655149,0.0305786145384884,0.0323452637660823,0.034417893170167,0.036500129433083,0.0386881912310916,0.0408218409320017,0.0426391709628703,0.0580534705765677,0.0725003138994684,0.0852527795259072,0.0982985972365349,0.1098832734059491,0.1258197588322403,0.136315884419071,0.1467288326839965,0.1565073431241655,0.1651850342616323,0.1770376673596225,0.1878490108653305,0.1979719731917486,0.2074404664238287,0.2162099702872235,0.2261879713402952,0.233970138594416,0.2417351187127264,0.2493134518054515,0.2567227083237894,0.2624367890577085,0.2678441923031933,0.272712215320911,0.2764846117906389,0.2800597370114496,0.2839825559908345,0.2886334929905081,0.2918096109374603,0.2962598934354146,0.2997141313941693,0.2965919475353437,0.2929421943883647,0.2899966271291247,0.2870419734585957,0.2842343944513605,0.2805369742508934,0.2760517083346502,0.2759433190430997,0.2766764145810664,0.2780268260575657,0.2780934579439252,0.2791128634795465,0.2806849029024849,0.2802869939169767,0.2816334355828221,0.2830129950976577,0.2827422231028333,0.2879010799812177,0.2903822011438136,0.2943616895175629,0.3007814264420254,0.3038557148146189,0.3050783699059561,0.3097772744431861,0.3148267898383372,0.3152589502954466,0.3173376912791561,0.3179850452577725,0.3165198825727248,0.3055659320134479,0.0,2.5291692432248194,53.70950869998505,134.92944640535444,192.21714816697843,fqhc1_80Compliance_implementation,63 -100000,95733,48255,460.62486289994047,4730,48.28011239593452,3774,38.91030261247428,1410,14.43598341219851,77.41699606751023,79.77053623375386,63.36600846061516,65.10063081929351,77.24097398014622,79.59646769599428,63.3003077813691,65.0379094665781,0.1760220873640037,174.06853775958098,0.0657006792460634,62.721352715414014,253.2706,177.50155329546106,264559.347351488,185413.1316217616,505.07611,336.2667506147134,527072.1590256233,350739.96457585174,478.27222,233.32757152932425,495903.06372933055,240966.32170425943,2641.05858,1221.5623639845733,2726119.436349012,1243459.959374153,860.77781,389.8287065635092,885012.8377884324,393116.5537619637,1373.56134,577.0041109973398,1407620.1100978763,578727.9367087948,0.38092,100000,0,1151230,12025.42487961309,0,0.0,0,0.0,43545,454.31564873136745,0,0.0,43095,446.6171539594497,1046985,0,37549,0,0,9932,0,0,95,0.98189756928123,0,0.0,1,0.0104457188221407,0,0.0,0.0473,0.1241730547096503,0.2980972515856236,0.0141,0.3704825358368665,0.6295174641631335,23.0597198516427,4.0485047038918935,0.3089560148383677,0.2859035506094329,0.2053524112347641,0.1997880233174351,11.324144445670726,6.050954804448241,14.87605663706411,11397.38718030155,42.96045199850807,13.23317173614932,12.94012566508306,8.550109552914426,8.237045044361263,0.5842607313195548,0.8109360518999074,0.692967409948542,0.5509677419354839,0.1259946949602122,0.7547857793983591,0.937219730941704,0.8711864406779661,0.6789473684210526,0.144578313253012,0.5143817706387748,0.721958925750395,0.6326061997703789,0.5094017094017094,0.1207482993197278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.004396762200002,0.006531970139565,0.0091085409071984,0.0112148202375142,0.0135080111565789,0.0155848656582541,0.0178709940804245,0.0202137878880781,0.0223843187003181,0.0245829405254744,0.026622330326262,0.0287221028609023,0.030802343902866,0.0327539072574405,0.0344318029161629,0.0365883960740464,0.0385309492200464,0.0406161009374545,0.0426289964684189,0.0571890988827398,0.0708568319504462,0.0847338494786093,0.09775258447527,0.1097142977673251,0.1245452622673434,0.1358964840642732,0.1468253123603158,0.1558617742883085,0.1652620518099159,0.1773913979652258,0.1888608854611732,0.1990720114748932,0.2083474386554989,0.2168889084158959,0.2259484570290897,0.2354003008524151,0.243115710000337,0.2513601124359613,0.2581073197515471,0.2638561457033236,0.2693390331359426,0.2745767517691953,0.2784696550981588,0.2818687781159438,0.2856053055750372,0.2893021280847238,0.2925943791413846,0.2957931978410764,0.2981604294962893,0.2960173962066605,0.2931294569391113,0.2895882485114032,0.2878501708502141,0.2846412539445029,0.2811184330953688,0.2768952216011965,0.2769707344909106,0.2758527158066047,0.2755148984358412,0.2764401210388549,0.2768788276037489,0.2768585604849592,0.2785478985651434,0.280174157169708,0.2819348011253645,0.2835400225479143,0.2890654089611518,0.2933781256493731,0.2962890472089564,0.299852090896867,0.3053055671829217,0.3074067198811954,0.3123590437528191,0.3179761794848121,0.3160519601020645,0.3210061386435095,0.3223645320197044,0.3252401280683031,0.3309937199852235,0.0,1.95965847769682,47.84051130872582,140.09798847410303,193.93074555230828,fqhc1_80Compliance_implementation,64 -100000,95705,47603,453.257405569197,4829,49.47494906222246,3841,39.65310067394598,1405,14.34616791181234,77.3508434030137,79.7399402147394,63.31502979323547,65.08212786137355,77.16736578928236,79.55987603111494,63.24597923649016,65.01655042454182,0.1834776137313412,180.06418362446652,0.0690505567453101,65.577436831731,252.46034,176.71643151646876,263789.89603469,184646.7911984418,498.54877,332.53072614339163,520422.5798025181,346954.06315593934,473.69121,231.18263541766976,492127.4959510997,239387.26262482643,2684.44399,1263.7152556881383,2771046.403009247,1286716.0319730665,888.05616,408.7345585326688,909431.1060028212,408681.7850572331,1363.05886,585.4113218702868,1392601.5150723578,584549.776857409,0.37811,100000,0,1147547,11990.449819758633,0,0.0,0,0.0,42855,447.2911551120631,0,0.0,42911,445.483517057625,1053750,0,37837,0,0,10003,0,0,90,0.9403897393030668,0,0.0,0,0.0,0,0.0,0.04829,0.127714157255825,0.2909505073514185,0.01405,0.3619558735837805,0.6380441264162194,23.031045360100286,3.940324847949329,0.3043478260869565,0.2902889872429054,0.2035928143712574,0.2017703722988805,11.333055663668402,6.273538848207697,15.092832049846916,11344.8283079409,44.21944683419353,13.710906666135273,13.31861475654708,8.73239134291487,8.45753406859631,0.5902108825826607,0.8143497757847533,0.7023096663815227,0.5677749360613811,0.1212903225806451,0.7691652470187393,0.9432773109243696,0.850609756097561,0.736318407960199,0.1597633136094674,0.5114360704911886,0.7183098591549296,0.6444708680142688,0.5094664371772806,0.1105610561056105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.00463437141901,0.0067912576515851,0.0091572485567932,0.011404097743596,0.0137527760233084,0.0160666741474461,0.0184651837326633,0.0205356868921365,0.0227975666209213,0.0250435852733053,0.0269612374437665,0.0292012096027648,0.0314753760560478,0.0336126648640838,0.0356747816198893,0.0375032375032375,0.0395138355510348,0.0414707717911379,0.0432679779438589,0.0579664734450885,0.0719618046466825,0.0851019165774503,0.0976931087804929,0.1100293242758591,0.125949434042103,0.1374322072574054,0.147473779481446,0.1572860776811098,0.166766814026353,0.1784828953891918,0.189430841505921,0.1996605411757026,0.2084888008666061,0.2169543393069437,0.2266851441241685,0.2355679598102149,0.2430570408978847,0.2506984033250812,0.2566653675981752,0.2618380531178363,0.2672895226721927,0.272142603340045,0.2762362703247158,0.2800641563080961,0.2838275696386551,0.2864037006938801,0.2898018329498799,0.2930461649839049,0.2954740214367641,0.2918253380878692,0.2882089470213234,0.2847305178834938,0.2819674021126659,0.2782240764576213,0.2747095239547437,0.2713384833674917,0.2713130157692622,0.2721520063959719,0.272672384706906,0.2744447756744671,0.2754351195965701,0.2767959128574692,0.2775192767880883,0.2778095510437517,0.2776888108275648,0.2780589293747188,0.2824529296814417,0.2865254119927988,0.2914377021707783,0.297777381058645,0.3017705123518044,0.303686293913904,0.3043967587034814,0.3076851679970299,0.3109362152002819,0.3150746944318696,0.3149823043649233,0.3145977623867874,0.3194864048338368,0.0,1.8632924147379972,51.30986236120048,143.16719663564854,192.58424064051997,fqhc1_80Compliance_implementation,65 -100000,95724,48301,459.978688730099,4842,49.3293218001755,3841,39.54076302703606,1433,14.594041201788476,77.26691653433518,79.62692441127638,63.2951211478972,65.0393323035822,77.08687167048294,79.45160704539072,63.22688439654313,64.97535449362987,0.1800448638522453,175.31736588566105,0.0682367513540711,63.97780995233404,251.97524,176.5981843874512,263230.997451005,184486.8417402649,498.41867,332.27568386172584,520064.02783001127,346499.53318273794,477.54919,233.48027284537795,495436.83924616606,241240.49892819976,2685.27111,1259.2218935093258,2763771.2903764998,1274264.5283568169,889.247,407.9322787920549,912524.058752246,409865.78280264727,1390.1511,592.1881666177162,1416373.5949187246,587482.7721680348,0.38312,100000,0,1145342,11965.045338682045,0,0.0,0,0.0,42852,447.0352262755422,0,0.0,43224,448.1634699761815,1051766,0,37714,0,0,9872,0,0,80,0.8252893736158121,0,0.0,0,0.0,0,0.0,0.04842,0.1263833785759031,0.2959520859149112,0.01433,0.3667457493080269,0.6332542506919732,23.366782600670057,3.99860304559454,0.2944545691226243,0.2980994532673783,0.2035928143712574,0.2038531632387399,11.228152222577956,6.207611758262374,15.335157200246002,11474.788703983731,44.245512546518704,14.166017863939844,12.839726610892775,8.684773836631793,8.554994235054298,0.5925540223900027,0.8104803493449781,0.7082228116710876,0.5805626598465473,0.1187739463601532,0.7813798836242727,0.9266409266409268,0.8850931677018633,0.7712765957446809,0.1714285714285714,0.5064442759666414,0.7145135566188198,0.6378244746600742,0.5202020202020202,0.1036184210526315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0051404759249308,0.0074379997564638,0.0094269664062738,0.0118585114822122,0.0141630944986916,0.0165044089912839,0.01849715703188,0.0208233237582163,0.0229385031116934,0.024981292220639,0.02736027267874,0.029512782016741,0.0316928971654581,0.0337257167617534,0.0355688325649666,0.0376215477336978,0.0395181872886103,0.0416614693775726,0.0436558377961616,0.0589648007183953,0.0726412526952626,0.0860654017294937,0.0987646526506303,0.1109516775691074,0.1260714966029589,0.138026583998641,0.1483804999627211,0.1582116046795132,0.1673089515549019,0.1788790547751749,0.189446310542854,0.1999433742418137,0.2091373004226987,0.2182297003955792,0.2282584568942555,0.2373887572112159,0.2459982201795591,0.2538700042022055,0.2600967268726506,0.2652768458316944,0.2702045018484721,0.2744917039456555,0.2788297897840313,0.2824103878435993,0.2858410460544964,0.2891128779815939,0.2928884137650173,0.2959704586680487,0.2994119590353485,0.2972192614379967,0.2936171973029245,0.290982970498187,0.2866911467067599,0.2833001397104723,0.2808205536745668,0.2776158184929336,0.2770419063270337,0.277516623647459,0.2780653221488488,0.2790392931354012,0.2799992101573761,0.2803587519121561,0.2816065010157837,0.2838877139011728,0.2848481694465405,0.2851855015517781,0.2883956361807149,0.2929307182164526,0.2958388295958748,0.2987072312822621,0.3014721570300832,0.3062790990310809,0.3099658961727927,0.316331305568554,0.3184593705965242,0.322785768357305,0.3193193193193193,0.3205233033524121,0.3291284403669725,0.0,2.231710320949661,52.40188196834546,136.6358238994636,195.5264973888929,fqhc1_80Compliance_implementation,66 -100000,95703,47939,457.36288308621465,4934,50.36414741439662,3956,40.75107363405536,1479,15.151040197276991,77.288290147924,79.65587510877201,63.294707477804174,65.04338067028844,77.1033699641955,79.4720825226468,63.224956520983206,64.97594320674378,0.1849201837285079,183.79258612520744,0.0697509568209682,67.43746354466396,252.2267,176.71016523911584,263551.5083121741,184644.3321934692,499.62766,332.4964261233863,521511.37372914114,346876.0604405152,478.04026,233.65456313827332,494901.4137487853,240774.07870794303,2765.5585,1301.7330466652415,2853009.299603983,1323752.9016746993,892.47608,407.4430990226535,919466.6206910964,412761.4941680532,1432.41398,605.6035417981675,1469645.1730875731,611461.5221434557,0.38,100000,0,1146485,11979.614014189732,0,0.0,0,0.0,43203,450.84271130476577,0,0.0,43282,447.6662173599573,1048724,0,37704,0,0,10076,0,0,55,0.5746946281725756,0,0.0,4,0.0417959729580054,0,0.0,0.04934,0.1298421052631579,0.2997567896230239,0.01479,0.3629962839820067,0.6370037160179933,22.904607736443705,3.933872315594045,0.3053589484327603,0.2967644084934277,0.1999494438827098,0.1979271991911021,11.64294272594879,6.63125254150597,15.816428138367773,11447.728465514154,45.63064429484651,14.51731416764176,13.864899484055334,8.800225458049562,8.448205185099862,0.5993427704752275,0.8023850085178875,0.722682119205298,0.5903919089759798,0.1136653895274585,0.7807153965785381,0.9195402298850576,0.8943089430894309,0.7377777777777778,0.1647058823529411,0.5119850187265917,0.7085889570552147,0.6471990464839095,0.5318021201413428,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800119506983,0.0047039263592218,0.0067987173763039,0.0093358255958064,0.0115836791147994,0.0136138235803235,0.0158031035256214,0.0179860154136681,0.0202293821809706,0.0222690709621957,0.0243612474762485,0.026472731751881,0.0283981081636849,0.0306388325317459,0.0327904362087283,0.0347147581645308,0.0370266828192464,0.0389069926731563,0.0409294681769484,0.0427940134239379,0.0577969482710002,0.07153925079046,0.0850387255210629,0.0977280619600332,0.1103135984124806,0.1253917167781824,0.1363650842526624,0.1472599821025269,0.1569048840988794,0.1658399364384032,0.1776757024864678,0.1892155375983015,0.2002439210305663,0.2097974822112753,0.2178921055819229,0.2272631473860523,0.2356189496747076,0.2431548927440172,0.2510292746172918,0.2582752563234095,0.2637089947703475,0.2703339467607515,0.275726704538716,0.2799951969260326,0.2841007290563649,0.2877766251728907,0.2914658634538152,0.2938994071524192,0.297291334086101,0.3006094417196568,0.2976556184316896,0.294090902828486,0.2910556253440415,0.2883610520068899,0.28609275465857,0.2816627340422272,0.2787362689543828,0.2794660281745576,0.279273894704486,0.278674490360092,0.2791398412936068,0.2795190222747881,0.2796220419767539,0.2811054784774102,0.2822603719599428,0.2826608843800821,0.2830172681796343,0.2876849135509643,0.2912932807977963,0.2954967044243596,0.2981549480937486,0.3047930743243243,0.3075152420057235,0.3138581848259267,0.3172324960897966,0.3186138154844691,0.3209802749551703,0.3215064420218038,0.3311134789557805,0.3313653136531365,0.0,2.3144994335110383,56.28353655187656,135.00204097715545,199.91563980252147,fqhc1_80Compliance_implementation,67 -100000,95839,48293,460.6997151472783,4860,49.61445757989962,3853,39.71243439518359,1449,14.795646866098352,77.36488025655099,79.6798920556385,63.35773544642036,65.0712074077762,77.1820836474018,79.49834140769586,63.28753047831532,65.00323402244773,0.182796609149193,181.5506479426432,0.0702049681050382,67.97338532847164,253.47432,177.559150058081,264478.15607424953,185267.037698725,501.44568,334.8606780820622,522689.4270599652,348872.72475094907,477.33673,233.6775581937789,494963.0213170004,241417.6838507584,2673.44829,1255.331434578471,2754562.62064504,1274981.885951931,860.04487,393.1166281911406,880761.2454220097,393734.45104992506,1401.44414,607.5221810461017,1431168.6265507778,607887.0870192396,0.38146,100000,0,1152156,12021.734367011342,0,0.0,0,0.0,43174,449.9420903807427,0,0.0,43133,446.9892215069022,1048905,0,37658,0,0,10090,0,0,87,0.907772409979236,0,0.0,0,0.0,0,0.0,0.0486,0.1274052325276569,0.2981481481481481,0.01449,0.3581441263573544,0.6418558736426456,23.0394282062258,3.95801284547664,0.3124837788736049,0.2940565792888658,0.1995847391642875,0.1938749026732416,11.113751719075712,6.044899193343371,15.651239216994393,11445.3363066662,44.38635317542768,13.93888322820694,13.794020161836531,8.518507383391233,8.134942401992976,0.5875940825330911,0.8172992056487202,0.6901993355481728,0.5604681404421327,0.1017402945113788,0.7538200339558574,0.934020618556701,0.8608695652173913,0.6842105263157895,0.1186440677966101,0.5143925233644859,0.7299382716049383,0.6216530849825378,0.5250836120401338,0.0964912280701754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.0044507076523784,0.0068085883594447,0.0089891520741071,0.011033038102114,0.0132875819655439,0.015423352158046,0.0174775915225514,0.0197088649002289,0.0219151440708326,0.0239720411593489,0.0259125847931611,0.0280681199190125,0.0302590545589279,0.0324588981085399,0.0343859359354192,0.0364287044124035,0.0383766590341597,0.0403073408784134,0.0423745565392898,0.0570099501449759,0.0711239783440289,0.0838535992625492,0.0974736444201772,0.1097292572740388,0.1260321415749794,0.1371273597898171,0.1482576063614908,0.1583933429348696,0.1680983697864227,0.1803649038254658,0.1910450019998486,0.2016209638868367,0.2106177100170372,0.2199388997560385,0.2291410941180373,0.2378719185483062,0.2458368424007635,0.2527372985948345,0.2589531680440771,0.2645191086479621,0.2691737572510709,0.2737700076782234,0.2779903390884308,0.281764134918709,0.2860095722036984,0.2890035480485733,0.2918714363721792,0.2960680182450155,0.2989065357843072,0.2965644138820242,0.2935176541650651,0.2907009450945094,0.2875196560728248,0.2837380514160185,0.2812155879114156,0.2772943037974683,0.2777704853476848,0.278661359482037,0.2785539674892493,0.2799062353492733,0.27982912406305,0.2818790541954383,0.2824485422154753,0.2834800076525732,0.2840178386226923,0.2859363957597173,0.2908153701968134,0.2941381595006451,0.2980917387697048,0.3011616299119702,0.3054453087791713,0.3092018365934964,0.3126993771836548,0.3210131332082551,0.3228836444757543,0.3250910194174757,0.3303751512706737,0.3306144643828168,0.3297791317593297,0.0,1.808822171571403,51.54985983222346,142.8684289855324,194.581750276324,fqhc1_80Compliance_implementation,68 -100000,95625,47788,456.42875816993467,4817,48.98300653594771,3824,39.27843137254902,1395,14.128104575163398,77.2563444549925,79.66650369211386,63.27473565930678,65.055833303226,77.07327211661028,79.4919318970978,63.20418814449946,64.99205228359155,0.1830723383822174,174.5717950160639,0.0705475148073162,63.78101963444749,250.95488,175.7953095859192,262436.47581699345,183838.2322467129,498.36593,332.1164327526583,520472.5333333333,346616.8499374205,474.136,231.9825387058204,491740.9673202615,239403.00154327173,2646.02718,1253.7290061602462,2717926.9124183008,1261928.822128362,885.02575,413.1620092390292,904854.8496732026,411402.5717532326,1359.00338,586.7307754515589,1377657.9346405228,573260.8516760697,0.3794,100000,0,1140704,11928.930718954249,0,0.0,0,0.0,42905,447.9581699346405,0,0.0,42855,444.1202614379085,1056543,0,37945,0,0,9945,0,0,90,0.930718954248366,0,0.0,2,0.0209150326797385,0,0.0,0.04817,0.1269636267791249,0.2895993356861117,0.01395,0.3572850318471338,0.6427149681528662,23.190540031720808,4.006771065026979,0.2986401673640167,0.2960251046025104,0.209205020920502,0.1961297071129707,11.421389068640876,6.198617428514954,14.9536097538026,11388.262901935595,44.06006179701097,13.911650391304132,13.00777461937359,8.918968367089974,8.221668419243269,0.5993723849372385,0.8206713780918727,0.7075306479859895,0.5825,0.1186666666666666,0.7798319327731092,0.9367088607594936,0.8680351906158358,0.7766990291262136,0.165680473372781,0.5178435839028094,0.7370820668693009,0.6392009987515606,0.5151515151515151,0.1049913941480206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0044596251887739,0.0067993383330457,0.0088588176729348,0.0109573710448672,0.0128867292156922,0.0154643381752897,0.0176756066411238,0.0198946453229683,0.0222306455082827,0.0242163049612641,0.0263293116560129,0.0283522932001853,0.0307245002113598,0.032529311502505,0.034509162777703,0.0364488306518493,0.0383732405339427,0.0403862763665879,0.0423725277476425,0.0567011925541143,0.0705417666348863,0.0838880372929046,0.0961765201280107,0.1081397680382452,0.1237485448195576,0.1356437745462265,0.1463825073755738,0.1563672513869736,0.1654180530213588,0.1773522244506264,0.1882280277828946,0.198555524085492,0.2084036560506762,0.218034829985993,0.2264563537874078,0.2338992908753327,0.2420769092056622,0.2491134751773049,0.2556698902157828,0.2617487796110989,0.2664947245017585,0.2726981642237086,0.2775751175962369,0.2824041960254584,0.2869170184924574,0.2904236258159903,0.2932560657199261,0.29638510492139,0.2992317237373604,0.2956974033499077,0.2932100891270508,0.2903890386216433,0.2868187872820988,0.2846483781610222,0.2808641975308642,0.2778006785680312,0.2770621097601051,0.2782376227443319,0.2788795417934491,0.2784974093264248,0.2790890924559286,0.2805371095795714,0.2818833801060181,0.2837543397581707,0.2851736651114567,0.285442624811966,0.2907151348307576,0.2955082742316784,0.3002593524049041,0.3038928233118318,0.3098762180668949,0.3122378716744914,0.3153024375564249,0.3212744467909283,0.3251134116552285,0.3318959107806691,0.3343867272368161,0.3322658126501201,0.3306605574646811,0.0,2.8013780043134773,51.08514438131247,140.34405279963815,190.79697545006957,fqhc1_80Compliance_implementation,69 -100000,95686,48406,461.1019375875258,4864,49.47432226239993,3899,40.099910122692975,1458,14.808853959826934,77.32722884548278,79.70342462442906,63.32110870231941,65.07579197241918,77.14113178198252,79.52137689814904,63.25027007228154,65.00857721839554,0.1860970635002559,182.0477262800182,0.0708386300378762,67.21475402363808,252.2168,176.67983814302417,263587.9857032377,184645.44253393827,503.18629,336.6126236763803,525206.3311247205,351122.6968170686,482.24253,236.3436326657112,499022.0826453191,243254.5227754354,2712.52167,1281.9732312462024,2792676.943335493,1297632.2777064582,863.66388,398.619615163376,888495.7569550404,402497.1144115703,1405.12872,606.8218277020825,1429699.851597935,604014.6616459385,0.38179,100000,0,1146440,11981.272077419892,0,0.0,0,0.0,43284,451.6648203498944,0,0.0,43675,451.6961728988566,1047540,0,37595,0,0,10090,0,0,87,0.8883222205965344,0,0.0,1,0.0104508496540768,0,0.0,0.04864,0.1273998795149165,0.2997532894736842,0.01458,0.3585759244689221,0.6414240755310779,23.13335987301722,3.93561875271917,0.3149525519363939,0.2931520902795588,0.2015901513208515,0.1903052064631956,11.258639552742176,6.271494643887485,15.743764135967648,11504.195713101968,44.788260471626025,14.032249759550426,13.948668094695751,8.694073146660354,8.113269470719503,0.5827135162862273,0.800524934383202,0.7068403908794788,0.544529262086514,0.082210242587601,0.7471074380165289,0.9051546391752576,0.8436657681940701,0.7297297297297297,0.1005917159763313,0.5087393082930457,0.723404255319149,0.6476079346557759,0.4875207986688852,0.0767888307155322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0044187248533003,0.0067261844374556,0.0090394791634926,0.0114296173518674,0.0138474540030342,0.0165398813044276,0.0185164380623614,0.0208516556562289,0.0228057060347564,0.0246233680993549,0.026816893307588,0.0289340780284095,0.0312931478619268,0.0334172721268163,0.0357087456954053,0.0377921432123321,0.0399701002886152,0.0423345364524282,0.0439767764261963,0.0589955711540068,0.0727906392598484,0.0863061834583311,0.0988069939192459,0.1110583768391077,0.126685919202818,0.1379149333559725,0.1486008773797862,0.1586774210779338,0.1676213154846183,0.1796062127054565,0.1910978329111731,0.2022101610850672,0.2103553499360173,0.2193216085932513,0.228458734502587,0.2372262773722627,0.2447944203835986,0.2522582841579664,0.2585618399651799,0.264558471172433,0.2704818290314277,0.2758171791048309,0.2797560566485346,0.2835813642713964,0.2869346547834769,0.2896499067502785,0.2933623476114123,0.2959663321463257,0.2988666499544813,0.2968381629821229,0.2936032121445465,0.2911239103800819,0.2882128838605403,0.2854745782846282,0.282483451826428,0.2788498038719473,0.2791702113736012,0.2797420540393384,0.2806173190310435,0.2806118646594127,0.2824250520608227,0.2833222259246917,0.2830855390359357,0.2849143294725758,0.2860702328116484,0.2859250432660936,0.2904860198911616,0.2958138886954099,0.3011206692447321,0.3056362316209838,0.3118979570233937,0.3183867735470942,0.3202673959282893,0.3254199117950643,0.329879915234283,0.3326753720012147,0.333199759567221,0.333968426782798,0.3463285389856169,0.0,2.5178553046346077,52.23174313720112,139.27228857839458,198.9607346668405,fqhc1_80Compliance_implementation,70 -100000,95787,48000,457.5255514840218,5030,51.301324814432014,3979,41.05985154561684,1487,15.18995270756992,77.38146625236273,79.70354367401322,63.35451413110488,65.0675574384323,77.1862914226544,79.51027549408212,63.2807872903372,64.99660221124222,0.1951748297083213,193.2681799310956,0.0737268407676836,70.95522719008329,251.18852,175.9074191703915,262236.5456690365,183644.35588377496,498.85587,332.6911583779629,520307.5469531356,346841.4359933625,477.62117,232.7888892375093,495605.2282668838,240806.86835931064,2764.81137,1286.1308170750092,2853085.992880036,1309888.4045306747,888.33975,404.8105402456482,913347.1347886455,408550.8578884884,1435.40504,609.7745596573209,1466566.0893440654,610558.3579419346,0.37999,100000,0,1141766,11919.842984956204,0,0.0,0,0.0,42936,447.7434307369476,0,0.0,43231,448.2758620689655,1058595,0,38017,0,0,10033,0,0,91,0.9500245336005928,0,0.0,1,0.0104398300395669,0,0.0,0.0503,0.1323719045238032,0.2956262425447316,0.01487,0.3536048957735704,0.6463951042264295,23.39738183420145,3.99042375887606,0.3005780346820809,0.3045991455139482,0.1995476250314149,0.1952751947725559,11.295766152360862,6.219332853450478,15.834657451209932,11450.89916890302,45.412823434484935,14.827686951799032,13.461136951562754,8.798676788195799,8.325322742927353,0.5840663483287258,0.8011551155115512,0.6956521739130435,0.5654911838790933,0.0926640926640926,0.7529610829103215,0.9153543307086616,0.8580645161290322,0.6919191919191919,0.1325301204819277,0.5126921701823383,0.71875,0.6388261851015802,0.5234899328859061,0.0818330605564648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023591114351092,0.0045097085410839,0.0067457217922317,0.0090990332277195,0.0111645500116932,0.0135696398395667,0.0156351924331376,0.0177144664741476,0.019850837760523,0.0220576199050581,0.0242285784534688,0.0263368490171133,0.0285385429619657,0.030841766092587,0.0326508309621015,0.034721003005298,0.0366434174307179,0.0385883426296472,0.0404841055474755,0.0425855354948876,0.0567928033228277,0.0708082203247949,0.0839652224984006,0.0972163821377512,0.1101658285629948,0.1255883317291929,0.1362122369314324,0.1468352813438078,0.1574973031283711,0.1669632710821415,0.1794029947145763,0.1908016393974457,0.2021594702447617,0.2112666812513673,0.2200448914024162,0.2293067727318051,0.2375440867895888,0.245707985509529,0.2528834801562074,0.2579765288346933,0.2634309003334568,0.2687746572856792,0.2740262815200663,0.2781751308869161,0.2829526550338178,0.2868666715928963,0.2904117124889039,0.2937139371139524,0.2970887861960053,0.299685041445383,0.2975531056735682,0.2945094484728631,0.2911152055584466,0.2878516550170412,0.284920847070005,0.2820218704595855,0.2781346169020753,0.2780185454723862,0.2784907073320171,0.278626225316096,0.2794654838228716,0.2791766508229563,0.2802916666666666,0.281211743495003,0.2813381123058542,0.2827927204949649,0.2839335180055402,0.2881165919282511,0.2925106146029094,0.2970843183609141,0.3045873216543254,0.3063517060367454,0.3074202754684204,0.3105748332458967,0.3164427025009332,0.3227203558468922,0.326325274065175,0.3341943175044705,0.3362138806373211,0.3429220287660863,0.0,1.85242017867543,51.63744389090655,145.89006883112535,204.4010690500168,fqhc1_80Compliance_implementation,71 -100000,95761,48328,460.4692933448899,4880,49.82195256941761,3855,39.72389594929042,1430,14.640615699501886,77.31912755708531,79.66903649883265,63.32066847763053,65.05834026165938,77.13577596160987,79.48619148056801,63.2511160640046,64.99075454988991,0.1833515954754432,182.8450182646435,0.0695524136259351,67.5857117694676,251.81618,176.40820595189507,262962.73013022006,184216.7460300488,499.67246,333.3105783163749,521270.8618331053,347545.5610724773,479.57883,234.6391556501516,496998.35005900107,242175.19097544556,2671.58068,1265.0259729861168,2755681.864224476,1286967.8249320143,887.05653,412.38951673506006,913680.297824793,418001.4585635689,1383.1025,594.4873029154273,1417188.834703063,599062.4332379414,0.38174,100000,0,1144619,11952.851369555456,0,0.0,0,0.0,42953,447.9903092072973,0,0.0,43278,448.1156211819008,1054293,0,37915,0,0,9957,0,0,85,0.8876264867743654,0,0.0,0,0.0,0,0.0,0.0488,0.1278356996908891,0.2930327868852459,0.0143,0.3623501670269208,0.6376498329730792,23.29600538398574,3.952722255526194,0.3162127107652399,0.2861219195849546,0.2088197146562905,0.1888456549935149,11.699521424348452,6.711148765138154,15.412401119172369,11527.6205221679,44.434037945264464,13.622927168434709,13.992838451953824,8.869741044925595,7.948531279950339,0.5945525291828794,0.8014505893019039,0.682526661197703,0.591304347826087,0.1373626373626373,0.7699186991869919,0.9014373716632444,0.8507853403141361,0.7524752475247525,0.1949685534591195,0.5123809523809524,0.7224025974025974,0.6057347670250897,0.5373134328358209,0.1212653778558875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021367304985366,0.0044994375703037,0.0067773223489306,0.0091409535030165,0.0111460271938656,0.0134938335726579,0.0158043926015049,0.0179105696868203,0.0202860911442623,0.0224608675177363,0.0248226223188286,0.0270253619468117,0.0292384429474983,0.0314199769243448,0.0333470903838217,0.0355928524922231,0.0373203859373058,0.0391983984565436,0.0412406483790523,0.0433985648374767,0.0581186589286459,0.0727092050209205,0.085947414236122,0.0989443135935397,0.1109893005850419,0.1262356610456203,0.1370924979319999,0.1484121495824246,0.1583549533967521,0.1677707033678478,0.179676564956179,0.1912418710843243,0.2019053004763251,0.2119608593451047,0.2207505033058669,0.2298876031227506,0.2382158922213168,0.2463546354635463,0.2538871864714561,0.2595048325775274,0.2657892299856461,0.2715133357519866,0.2768494724251862,0.2812837432513497,0.2851897780047171,0.289683420929257,0.2931313004821238,0.2966631443594281,0.3004716125521495,0.3039583058450983,0.2997953523440235,0.296207162110127,0.2929790950583197,0.2890019659997687,0.2860261036126331,0.2820171411080502,0.2777971142893304,0.2777122061571752,0.2779339842884651,0.2778421756576014,0.2780293391213232,0.2788795142721968,0.2800928831429647,0.2814090543798553,0.2829636734204532,0.2828757694605335,0.2845426941740685,0.2895444034747828,0.2943886097152429,0.3004126547455296,0.3030672079386558,0.3102105263157895,0.3139592957922337,0.3160919540229885,0.3173758865248227,0.3196969696969697,0.322230595327807,0.3286,0.3375,0.335966892400301,0.0,2.057455767260344,53.625691680040894,137.32259761511503,192.62621075341505,fqhc1_80Compliance_implementation,72 -100000,95693,48145,459.0199910129268,4835,49.53340369724013,3834,39.60582278745572,1365,13.982213955043736,77.34181859432726,79.72491987678053,63.3271521787835,65.08591804681515,77.16239316106285,79.54698577831736,63.25986134395223,65.02092230825777,0.1794254332644129,177.93409846316877,0.0672908348312688,64.99573855738561,252.5666,176.90034648005147,263934.018162248,184862.16516948288,501.95776,335.45815026727564,524060.6522943162,350068.23529082426,482.74154,235.58263456498813,501647.5186272768,244026.0927445626,2658.12691,1250.015146331055,2746649.89079661,1275252.972290971,837.79431,391.031972901724,860009.9484810801,393191.1472944567,1322.6124,566.2698252176294,1355390.8854357162,568659.8254912506,0.37926,100000,0,1148030,11997.000825556728,0,0.0,0,0.0,43192,450.86892458173537,0,0.0,43571,452.5304881234782,1048772,0,37661,0,0,9984,0,0,84,0.8778071541283061,0,0.0,1,0.0104500851681941,0,0.0,0.04835,0.127485102568159,0.2823164426059979,0.01365,0.3655721393034826,0.6344278606965175,23.180629781822766,3.9142604957710567,0.3015127803860198,0.2976004173187271,0.2136150234741784,0.1872717788210746,11.507776467136456,6.554840954983341,14.609308676062518,11412.349957308525,44.09434618783586,14.00824782317105,13.12539897851192,9.067665671273708,7.893033714879179,0.5941575378195096,0.813321647677476,0.6980968858131488,0.5726495726495726,0.1030640668523676,0.7774914089347079,0.9357601713062098,0.878419452887538,0.7609756097560976,0.1411042944785276,0.5142322097378277,0.728486646884273,0.626360338573156,0.509771986970684,0.0918918918918919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189638585938,0.00469302735741,0.0067976827004048,0.0089882391176291,0.011215276365559,0.0135008552577991,0.0159006818946274,0.018047630227739,0.0201657825611463,0.022520447542712,0.0246595849397096,0.026774435395249,0.028878006625378,0.0309853059373905,0.0328633651920814,0.0348258706467661,0.0370140097819779,0.0392450009344047,0.0412470872170439,0.0433459124741988,0.0577666353285281,0.0722138459605478,0.0863692181743757,0.0989909405612432,0.1108544303797468,0.1258699837109433,0.1374155145521873,0.1471712172015541,0.1572148977542255,0.166439670981372,0.1781037305074524,0.1894677640900291,0.2001239696383131,0.2085173363648288,0.2169834147199859,0.2269440722819527,0.2352954304524912,0.2426624384319546,0.2506608279351537,0.2571549592453521,0.2634128296128458,0.2685857204632844,0.27293466825849,0.2772476383185067,0.2813781887909901,0.2852077562326869,0.2880057008551283,0.2911353783959014,0.2949945649360733,0.2973820885291714,0.2941018262015545,0.2907679626322297,0.2880597644874013,0.2855679769203029,0.2841701017170309,0.2811157157493921,0.2770464374782965,0.2771413609138219,0.2770425629758316,0.2779219394284089,0.2784275019553801,0.2788686439845116,0.280169989375664,0.2804981098510118,0.2823863907870215,0.2837907954132724,0.2851272459332313,0.2913252861342172,0.2961290774184516,0.2996760685786521,0.3044167610419026,0.3075545253397956,0.3125232716892143,0.3149706899143243,0.3173591874422899,0.3205909943714822,0.3271875472268399,0.3254378980891719,0.327940773238278,0.3337147215865751,0.0,1.769156742032768,51.00982398892106,142.15763728415766,194.0082859775667,fqhc1_80Compliance_implementation,73 -100000,95677,48241,459.78657357567647,4867,49.698464625772125,3858,39.71696436970223,1430,14.548951158585655,77.38307130315455,79.75942829631056,63.34642469116329,65.0974894880011,77.20497735265707,79.58635321530629,63.27840402606698,65.0341314362718,0.1780939504974839,173.07508100427071,0.0680206650963128,63.35805172929554,252.3785,176.8278473737441,263781.78663628665,184817.5082556352,499.10491,332.9926634790035,521073.7899390658,347456.04845365504,479.30002,233.8344716738268,497161.250875341,241515.5711650683,2708.90477,1272.5592447737754,2787693.78220471,1286449.465152309,895.86784,406.0450781796888,917692.1935261348,405876.7238238079,1393.42346,593.1231737332614,1418191.4566719274,587460.1601903923,0.38095,100000,0,1147175,11990.081210740302,0,0.0,0,0.0,42894,447.6938031083751,0,0.0,43262,448.3731722357515,1053193,0,37830,0,0,9963,0,0,106,1.1078942692601146,0,0.0,0,0.0,0,0.0,0.04867,0.1277595484971781,0.2938154920895829,0.0143,0.3595971563981042,0.6404028436018957,23.11598582025529,3.999351186243507,0.2996371176775531,0.2913426645930534,0.2050285121824779,0.2039917055469155,11.4446587551691,6.25853991980956,15.17300647299846,11518.759861706603,44.37873355219708,13.960053074654706,12.995140947966744,8.8863959177999,8.53714361177573,0.5914981855883877,0.8140569395017794,0.7015570934256056,0.5916561314791403,0.1118170266836086,0.7508223684210527,0.932806324110672,0.8178913738019169,0.7669902912621359,0.1413612565445026,0.5181680545041635,0.7168284789644013,0.6583629893238434,0.5299145299145299,0.1023489932885906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023688286446048,0.0048629262658804,0.0069877587448403,0.0091392826678581,0.0115703319607544,0.0138440709712226,0.016085954861465,0.018301894496162,0.0206478519078819,0.022818709499094,0.0250064079561183,0.0272945718921361,0.0293116392919953,0.0314579427700294,0.0334877387007252,0.0356371378665261,0.0375642300679595,0.0396088933175562,0.0415379655340967,0.043408929836995,0.0582833622364764,0.0719348388245024,0.0855793946388291,0.0984216780054889,0.1103542808941375,0.1260268758656418,0.1372598905991604,0.1484163954650841,0.1590247025556207,0.1687863625162057,0.1808948993534088,0.1916207157530544,0.2020997945853123,0.2113684302560683,0.2196449782235713,0.2294526238824819,0.2385774899508709,0.2464138536717184,0.2537714966797207,0.2597738805713697,0.2652860531034882,0.2707082762897696,0.2762707650046769,0.2804667450171492,0.2844556248253065,0.2878926088457176,0.2910009883524539,0.2940248572046458,0.2976850173494225,0.3005078820658268,0.2978797778942981,0.2941483444799978,0.2914113877803383,0.2891269246294908,0.2874222222222222,0.2827495568188765,0.2789618262764042,0.2788494576154715,0.2802249297094658,0.2802625960717335,0.2799642883714009,0.2811470911086718,0.2821077565607663,0.2820853836946402,0.2838184931506849,0.2841538501172166,0.28691888245545,0.290981194039099,0.2948167140184325,0.2992618052571964,0.3014639841925633,0.30782853273608,0.3100827875942172,0.3142410248771041,0.3170240058640278,0.317171484509962,0.3216184288245717,0.3217592592592592,0.3311432325886991,0.3356413994169096,0.0,2.3179789466870404,52.99049408892104,132.96843834951022,199.56130520071363,fqhc1_80Compliance_implementation,74 -100000,95701,48064,458.6890419117878,4912,50.3651999456641,3870,39.93688676189382,1461,14.98416944441542,77.3960056150407,79.78243444812539,63.35197710932333,65.11409896029511,77.21438251357469,79.60139098683877,63.284168207446506,65.04845574702668,0.1816231014660161,181.0434612866203,0.0678089018768233,65.64321326843015,252.12858,176.57446263171585,263454.48845884576,184506.3924428332,498.92139,332.8229611257004,520815.6654580412,347255.90236852324,475.88746,232.5517666840762,494084.7326569211,240537.3038918829,2687.36008,1257.452646825937,2776224.616252704,1282084.0814891558,904.34094,410.7270906241977,932723.7750911694,416959.6535221703,1410.26066,591.994086255802,1447547.381950032,595990.9108933279,0.38037,100000,0,1146039,11975.204020856629,0,0.0,0,0.0,43024,449.0339703869344,0,0.0,43112,447.268053625354,1058115,0,37896,0,0,9945,0,0,67,0.700097177667945,0,0.0,1,0.0104492116069842,0,0.0,0.04912,0.1291374188290349,0.2974348534201954,0.01461,0.3568918391253416,0.6431081608746584,23.2819753068763,3.914235577451577,0.3069767441860465,0.2987080103359173,0.1971576227390181,0.1971576227390181,11.494973182915292,6.522820119216114,15.421019413410043,11502.306207618329,44.50129599421695,14.284341626826128,13.44307266831032,8.554365058045729,8.219516641034758,0.603875968992248,0.8140138408304498,0.7146464646464646,0.5845347313237221,0.1323722149410222,0.7664172901080631,0.9101796407185628,0.8769230769230769,0.7235023041474654,0.15,0.5305586801649794,0.7404580152671756,0.6535341830822712,0.5293040293040293,0.1276948590381426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969032689405,0.0046237147898034,0.0070441119749903,0.0093370586741173,0.0115964437572477,0.0138068667779904,0.0161403794977415,0.0184687949851453,0.0203234578502934,0.0223341317120104,0.024431002665573,0.0265511258046962,0.0286730978875701,0.030829290400997,0.0327792738415823,0.0348146080772371,0.0367915147497514,0.0387681385065703,0.0405911350541839,0.0425429911412193,0.057905016554735,0.0710981812093179,0.0846190151554879,0.0975514881359139,0.1103944012310546,0.1263825737548905,0.1387778048858103,0.1487371076412172,0.1592185931258411,0.1683217158176943,0.1801569953375184,0.1909108606779001,0.2014168830745493,0.2104820290900348,0.2189647022612098,0.2280866793572092,0.2368060124218061,0.2444881226483967,0.2519339895117172,0.2586599010297025,0.2647123319291361,0.2699448068238836,0.274576471282687,0.2790252768013009,0.2832961760286919,0.2874078624078624,0.2916713414862186,0.2950902755780804,0.2976353180845303,0.3002128330443008,0.2977662838842809,0.2955743247867928,0.2928710677269603,0.2905420958738562,0.2881563964923177,0.2847608453837597,0.2808316270278784,0.2799399242523181,0.279747953395156,0.280887517292753,0.281119714115545,0.2819240724762726,0.2826894733564444,0.2837700274409135,0.2848492072952676,0.2860242831309739,0.2875330967269449,0.2919689845234017,0.2961701536108987,0.3011274046042258,0.3044562310168185,0.3098242094705168,0.3146953853860121,0.320166163141994,0.3266548076022844,0.3322668562625903,0.3386557177615572,0.3425291985501409,0.3518316019682886,0.359602142310635,0.0,1.869703659803692,52.67647417122545,142.58464850802238,191.30558461004887,fqhc1_80Compliance_implementation,75 -100000,95822,47973,457.7445680532654,4741,48.27701362943792,3764,38.69675022437436,1410,14.370395107595332,77.38566316619061,79.705707055334,63.36611244363343,65.08395049609085,77.21444693485212,79.53803153435182,63.30259561211498,65.02368053084606,0.1712162313384908,167.6755209821863,0.0635168315184486,60.26996524478534,252.6975,177.02486667942176,263715.5350545804,184743.44793410884,503.88242,336.1502402491658,525273.9036964371,350228.8709120785,476.07878,232.3770585893028,493130.21018137794,239610.23196309592,2653.61894,1228.9245746510874,2729251.873265012,1242501.2991802015,890.4436,401.66758303250737,911914.988207301,401895.8038329226,1371.62712,569.6730188317589,1399256.0998518085,568054.0386209505,0.38,100000,0,1148625,11987.069775208198,0,0.0,0,0.0,43383,452.1404270418067,0,0.0,43102,446.0144851912922,1053629,0,37777,0,0,9983,0,0,95,0.9914215942059236,0,0.0,0,0.0,0,0.0,0.04741,0.1247631578947368,0.2974056106306686,0.0141,0.3699433656957929,0.6300566343042071,23.036391328477077,3.9713801615626014,0.3116365568544102,0.2922422954303932,0.1886291179596174,0.2074920297555791,11.708755482537743,6.643052106445364,14.88072307938503,11334.557260495714,43.156868314190206,13.62545872142396,13.295239351090844,7.84993715424616,8.386233087429236,0.5884697130712009,0.8263636363636364,0.6734867860187553,0.6056338028169014,0.1101152368758002,0.7780748663101604,0.9094650205761317,0.8553846153846154,0.7771084337349398,0.1655172413793103,0.5079485238455715,0.760586319218241,0.6037735849056604,0.5533088235294118,0.0974842767295597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775900661379,0.0043287410155814,0.0066273558575473,0.0089305671265722,0.0109036169087432,0.0130129314733733,0.0151260332895045,0.01750178589652,0.0196126526649292,0.0216950817658977,0.0238268479898338,0.0257110305966396,0.0278828365878725,0.0298404529078744,0.0322031801027037,0.0340542885473475,0.0360997009798342,0.0381207052019526,0.0400261649638674,0.0419636446876918,0.0568674899866488,0.0702339389124662,0.0839421031118005,0.0965918641788535,0.1087119097525779,0.1243161607840652,0.1356736544389479,0.145788830437324,0.1563179898468495,0.1650209904043865,0.1768962773392976,0.1884943994988172,0.1992705642272539,0.2081086980246644,0.2156292205154107,0.2245274676688405,0.2331395607822174,0.2414300311022782,0.2486723358961874,0.2552561817267699,0.2610788535017142,0.2663960717076641,0.2719144067096835,0.2765357791153148,0.2810114330651503,0.2856932587577274,0.2892769943694255,0.292079207920792,0.2955465065333367,0.2979838444867669,0.2943472661909105,0.2906073107550609,0.2883320237961612,0.2847660187185025,0.283072777876473,0.2792021487653756,0.275389083562206,0.2752475247524752,0.2759978857269519,0.2773423583897399,0.27754660297438,0.2782733699612059,0.2786150883362639,0.2785691957308087,0.280016338691463,0.2817018837445611,0.2834874128857915,0.2884133350043865,0.2918475977027595,0.297004234437453,0.3004852387646818,0.302787584971281,0.3067358160459885,0.3121278359840205,0.3151197604790419,0.3197311003656091,0.3208977858659387,0.3220644128825765,0.3182065217391304,0.3205273069679849,0.0,2.1874670774735745,48.56468147187383,141.70523449036713,190.15100191052085,fqhc1_80Compliance_implementation,76 -100000,95757,48230,459.28757166577896,4909,49.9075785582255,3934,40.40435686163936,1473,14.923190993869898,77.37657405990127,79.72087898165407,63.3458979718325,65.07876728288757,77.17907359985637,79.52944550132338,63.26932040748926,65.00731330317156,0.1975004600449068,191.4334803306872,0.0765775643432391,71.45397971601142,251.72664,176.34165327471558,262880.2071911192,184154.9128259193,502.95162,334.6693956125604,524559.5204528129,348820.983544347,477.73125,233.3677298675951,494669.23566945497,240475.07338621083,2749.10782,1307.48890166271,2825321.522186368,1319860.039853703,902.44147,413.92178692406736,926858.704846643,416734.3113004552,1424.37862,625.1728557483904,1445307.705964055,616100.5217515643,0.38177,100000,0,1144212,11949.100326869053,0,0.0,0,0.0,43254,450.9853065572229,0,0.0,43207,446.9855989640444,1056396,0,37916,0,0,9855,0,0,93,0.9712083711895736,0,0.0,1,0.0104431007654792,0,0.0,0.04909,0.1285852738559866,0.3000611122428193,0.01473,0.3492467227548425,0.6507532772451575,22.757725660164567,3.989688942273732,0.309862735129639,0.2948652770716827,0.2005592272496187,0.1947127605490594,11.376294507209533,6.242935636523852,15.742369361302286,11478.600080457649,45.13316026074219,14.231833468322783,13.72002065957538,8.830730479212075,8.350575653631951,0.5973563802745298,0.8155172413793104,0.6964725184577523,0.5792141951837769,0.1279373368146214,0.747457627118644,0.9256900212314224,0.8536585365853658,0.7461928934010152,0.1032608695652173,0.533042846768337,0.7402031930333817,0.6386083052749719,0.5236486486486487,0.1357388316151202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0047643665926669,0.0069502222041843,0.0092141086594335,0.0114616385973476,0.0134825510941843,0.0156111388687787,0.0180810225834116,0.0202619123074249,0.0225506955604917,0.0247827156444735,0.0269965099568877,0.0290833950160375,0.0310913378852946,0.0332910360764651,0.0353698746240271,0.03726598740888,0.0395435684647302,0.0415726716081211,0.0434578855286178,0.0575698749660801,0.0713942106584121,0.0852569343983898,0.0983237875045977,0.1106017010781926,0.1260492652500264,0.1368812826059295,0.14711234556077,0.1566028263493521,0.1663198764425758,0.1779420002585426,0.1891043677762867,0.1997062183776726,0.2093743502194206,0.2183095489781536,0.2281460294231771,0.2371486325005863,0.2448561523569402,0.2526701701417659,0.2595815822922511,0.2654366685945633,0.2705132701975914,0.2763305703035391,0.2805824312673627,0.2850794113361504,0.2888308552704517,0.292156029786596,0.2949518803483913,0.2976587332351345,0.3000961424488667,0.2971750046993743,0.2940692153580152,0.2916315641673687,0.2887915507975159,0.2863444600695729,0.28255561998352,0.2789013693443554,0.2783417520801661,0.2786996851331801,0.2791197470782565,0.2791578790197652,0.2803492075976247,0.28088201579792,0.2804658901830283,0.2825422595740617,0.2835426647675774,0.2837948688937289,0.2889663978076048,0.2929718805533294,0.2950502859396569,0.2992713943069195,0.3052143196077397,0.3102760640618184,0.3131495707184817,0.3167425016250348,0.3217177050334389,0.3307134220072551,0.3352520841603811,0.3369156367544331,0.3360809291869614,0.0,2.550049267354754,50.72012718471972,146.5851406635003,200.17661953392331,fqhc1_80Compliance_implementation,77 -100000,95759,48082,457.97261876168295,4896,50.10495097066594,3895,40.17376956735137,1440,14.672250127925311,77.3313489084019,79.69807273819036,63.31030609897547,65.06336523819857,77.1480273780694,79.5188089089543,63.24054966960789,64.99777536054685,0.1833215303325062,179.26382923606354,0.0697564293675796,65.58987765171764,253.3113,177.44982808317087,264530.018066187,185308.77315257143,503.72374,335.7755628113542,525551.405089861,350165.09446773067,476.35841,232.4817660184625,494681.116135298,240627.11621229592,2712.1665,1260.9465676356424,2797780.824778872,1282501.3961906678,873.07192,395.8407913984633,898733.4871918045,400446.6699006175,1393.70892,595.8495194789472,1422277.4882778642,593201.1341599243,0.38052,100000,0,1151415,12024.091730281229,0,0.0,0,0.0,43450,453.2211071544189,0,0.0,43155,447.8847941185685,1044786,0,37469,0,0,9945,0,0,79,0.8249877296128824,0,0.0,0,0.0,0,0.0,0.04896,0.1286660359508041,0.2941176470588235,0.0144,0.3712832550860719,0.628716744913928,23.15568193106646,3.9443917846853926,0.303209242618742,0.2985879332477535,0.203594351732991,0.1946084724005135,11.26520858807084,6.212512935733869,15.412211338439995,11383.338699554926,44.48884657065448,14.34843209607914,13.154843369962943,8.836448406337935,8.149122698274457,0.5876765083440308,0.7987962166809974,0.6833192209991532,0.5863808322824716,0.1160949868073878,0.759493670886076,0.9247967479674796,0.8548387096774194,0.705607476635514,0.1715976331360946,0.5125461254612547,0.706408345752608,0.6222732491389208,0.542314335060449,0.100169779286927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.004390723708894,0.0065770109109363,0.0088803088803088,0.0109463061303383,0.0132293183693006,0.0154785818437662,0.0176235743386054,0.0196483547954873,0.0218264129299219,0.0239067115195274,0.0261776339446242,0.0283620796114106,0.030629702153973,0.032616997997564,0.034702761951048,0.0368222673238619,0.038934490022518,0.0410598642425754,0.0432038329340693,0.0573104787356201,0.0716273910677661,0.0849313918845201,0.097324752350306,0.1092964161825332,0.124063967508567,0.1353743301321165,0.1460175105979592,0.1558619215560543,0.1649605116318997,0.1766468356613209,0.1884299668623161,0.2000696689635653,0.2093153084122379,0.2185965607591871,0.2280678417026937,0.2363575456423426,0.2434999887445692,0.2509418974126191,0.2575873881511863,0.2626029997222479,0.268082515746833,0.2731592293290992,0.2780731973736331,0.2818383032543659,0.2851031302782607,0.2886497309473157,0.2925302492461544,0.2951274178294272,0.2978358632149498,0.2944643289647192,0.2915459103083579,0.289113447267821,0.2859984146429343,0.2828602717021339,0.2791637439385159,0.2756133665081415,0.2762596978358513,0.2770549517832542,0.2775124713735376,0.2769394142633579,0.2776183362163862,0.2785748495512566,0.2791374902745359,0.2805688336520076,0.2817193164163645,0.2823599220140714,0.2858035295955021,0.2911259575361153,0.2961687643473442,0.3003258508327299,0.3048069345941686,0.3085252022401991,0.3122042808862185,0.3151492812384814,0.3173176633252679,0.3219512195121951,0.3306169965075669,0.3329801324503311,0.3337024732373569,0.0,1.9795839023781951,51.68268675398152,138.8072578110335,200.3620992848696,fqhc1_80Compliance_implementation,78 -100000,95490,48155,460.5508430202116,4816,49.14650748769505,3826,39.470101581317415,1449,14.86019478479422,77.22623088476638,79.7140300847922,63.24095407219974,65.07647569560764,77.03939421267984,79.52939880646267,63.169580186780834,65.00852893575403,0.1868366720865424,184.6312783295332,0.0713738854189074,67.9467598536121,250.83058,175.6646645550009,262677.3274688449,183961.32009111,498.2852,333.3399625825628,521230.589590533,348494.9760001704,475.75996,232.91264001065352,494450.3717666772,241100.57872179063,2690.577,1259.7481591688884,2774331.2493454814,1275924.252978206,843.37962,385.2899107880604,867403.2149963346,387688.15204530256,1403.5697,601.6598184932966,1438653.2411770865,601778.8518830345,0.37966,100000,0,1140139,11939.878521311131,0,0.0,0,0.0,42956,449.2198135930464,0,0.0,43014,446.63315530422034,1051350,0,37739,0,0,10067,0,0,78,0.8168394596292806,0,0.0,1,0.0104723007644779,0,0.0,0.04816,0.1268503397776958,0.3008720930232558,0.01449,0.3569862467610125,0.6430137532389875,23.098913975381898,3.9719373382597847,0.3178254051228437,0.2807109252483011,0.202038682697334,0.1994249869315211,11.195057902271978,6.1596104891314605,15.456503466755152,11423.300979999336,43.65037015074103,13.137612684262743,13.667529677378166,8.598688251863125,8.246539537236998,0.5776267642446419,0.7877094972067039,0.6998355263157895,0.5692108667529108,0.0956749672346002,0.7462817147856518,0.8972602739726028,0.8517441860465116,0.7009803921568627,0.1528662420382165,0.5057771151695862,0.7122641509433962,0.6399082568807339,0.5219683655536028,0.0808580858085808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509145260171,0.0047470761865154,0.0071476435112798,0.0093645144890696,0.0115450399087799,0.0134943688528767,0.0157348544372901,0.0178305029325812,0.0200008184478137,0.0221719039763936,0.0243063752912556,0.0263937156840568,0.0284099100026772,0.0303852302614615,0.032381719930153,0.0346741212403582,0.0367016255355346,0.0386074699321198,0.0406217767729702,0.042844910404745,0.0576868725989972,0.0719104424370232,0.0850869167429094,0.0981871838111298,0.1103995603884644,0.1261844699298327,0.137922235335396,0.1483046326526257,0.1592065379218748,0.1681124834725402,0.178932365897901,0.1901264834139674,0.2003838227436783,0.2088586777765596,0.2173414103964602,0.2264069167852062,0.2343510510947271,0.2424888107236671,0.249582001615123,0.2564464488587462,0.2617206071639783,0.2665588145647229,0.2721461187214611,0.2770323030164698,0.2817239405050493,0.2852375125152965,0.2893395278754395,0.2926131647832471,0.295967385941679,0.2990887810297171,0.2959284200866408,0.2933472878251649,0.2901748601541474,0.2872527789807997,0.284837496842074,0.2812993181644067,0.2776862384739694,0.276595045666601,0.2773741345414138,0.2786902806541455,0.2799333981890294,0.2821069244426908,0.2833061787191377,0.2847596560787633,0.2846321122183191,0.2857920522591181,0.2860541520335334,0.2890014381291815,0.2936679698408266,0.2982670824616113,0.3004760825209703,0.3062084958364077,0.3110378297660527,0.3176020408163265,0.3263448275862069,0.3260441976165683,0.3310688405797101,0.3308422540900828,0.3317846406121891,0.3361184960121534,0.0,2.289049333829765,49.45709000318325,137.10534726868715,199.2231236910354,fqhc1_80Compliance_implementation,79 -100000,95708,48151,459.5645087140051,4861,49.4733982530196,3870,39.839929786433736,1490,15.192042462490074,77.36399481233721,79.74840381439182,63.33329461681414,65.09712162290901,77.1704402828768,79.55949628895847,63.25840961882832,65.027005668953,0.1935545294604139,188.90752543335051,0.0748849979858192,70.11595395601944,251.18016,175.98453058444213,262444.2679817779,183876.5104112949,502.78048,335.8214022009261,524740.2202532704,350293.9066754358,479.62379,234.3553340763097,497560.7472729552,242130.45104174785,2684.80133,1275.114730335907,2767359.1549295774,1294455.531759004,873.51066,401.32458130969934,899805.1155598278,406443.9767936836,1444.30842,632.5116547914693,1474576.6080160488,630488.0391841407,0.37873,100000,0,1141728,11929.284908262633,0,0.0,0,0.0,43322,452.0207297195637,0,0.0,43255,448.37422159067165,1056606,0,37893,0,0,9993,0,0,94,0.9821540519078864,0,0.0,1,0.0104484473607221,0,0.0,0.04861,0.1283500118818155,0.3065212919152438,0.0149,0.3726499109439937,0.6273500890560063,22.796135955027324,4.001467425678057,0.3064599483204134,0.2930232558139535,0.1971576227390181,0.203359173126615,11.040145004546272,5.929593273326266,16.212691376527985,11356.971941293095,44.64018327586572,13.95444048320993,13.505280242077705,8.49372211689894,8.686740433679136,0.586046511627907,0.8042328042328042,0.6905564924114671,0.5871559633027523,0.1130876747141041,0.7512155591572123,0.9230769230769232,0.8857938718662952,0.7192118226600985,0.1519607843137254,0.5087253414264037,0.7207207207207207,0.6058041112454655,0.5392857142857143,0.0994854202401372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0047968196983986,0.0070555510436124,0.0094009797345366,0.0115590467856488,0.0137640850092711,0.0160757272838549,0.0180971444911965,0.0202714450819755,0.0223330397919269,0.0244992975295601,0.0264563306219702,0.0285746613316327,0.0307164422096054,0.0326136316723774,0.0344421122289661,0.0364542327932706,0.0385529415427403,0.0405214354027194,0.0425848936680108,0.0567740318335631,0.0702263068645717,0.0837302503199815,0.0956282141617676,0.1079300494376337,0.1236968428175685,0.1345705196182396,0.1455698222397157,0.1556978916466506,0.1645713428292766,0.1762262445386651,0.1875087886294064,0.1980579145960875,0.2072351873318606,0.2162878704538954,0.2257332344246504,0.2337620327715251,0.2419318565163611,0.2499064042203188,0.2564134852040524,0.2623020967051775,0.2670477793754895,0.2725949591764288,0.2774502755811167,0.2806717179076206,0.2841630964691978,0.2881078310014129,0.29174076520502,0.2950084635164295,0.2977790650219197,0.2948871190856713,0.2918284734133791,0.2893716821616156,0.2858069070842998,0.282724837578251,0.2802766057910529,0.2764213573293899,0.2767368352450469,0.2773013828633405,0.2763150896228924,0.2765588914549653,0.2787303832027183,0.2795222340137753,0.2816594372149927,0.2831296543822799,0.2843172857439303,0.28413535113076,0.2892430527399183,0.2938120969147638,0.2971579278853724,0.3015143320713899,0.305083857442348,0.3086720359617906,0.3136291480837553,0.3141787552643893,0.3178056278079924,0.3233358837031369,0.3225675401178143,0.3223847640077284,0.3288513253937764,0.0,2.363724308124069,53.6292261566713,140.719118290623,189.30408322787295,fqhc1_80Compliance_implementation,80 -100000,95667,47775,456.7196629976899,4847,49.47369521360552,3886,39.99289201082923,1494,15.209006240396375,77.31725194233033,79.72441951083114,63.30264576078415,65.08428939030064,77.11798637479586,79.52999156556268,63.227353299987456,65.01364946085212,0.1992655675344679,194.4279452684583,0.075292460796696,70.63992944851805,252.60994,176.89231152879097,264051.05208692653,184904.00740524195,497.28133,331.88373299056315,519163.1701631702,346275.98776471533,472.77349,231.2916099212503,490259.9119863694,238752.7609004921,2742.45534,1292.7851933965007,2821650.0987801435,1306457.2864918096,887.32288,407.7643285831208,910045.2507134122,408792.6370535151,1445.62308,619.5813564882762,1472018.982512256,614169.2128385694,0.37885,100000,0,1148227,12002.320549405753,0,0.0,0,0.0,42919,447.96011163724165,0,0.0,42840,443.9775471165606,1053047,0,37779,0,0,9986,0,0,74,0.7630635433326016,0,0.0,0,0.0,0,0.0,0.04847,0.1279398178698693,0.3082318960181555,0.01494,0.3698466440948018,0.6301533559051982,22.641750428331765,4.0278738153764575,0.305712815234174,0.2879567678847143,0.2076685537828101,0.1986618630983015,11.508743837252212,6.332322416131247,16.1368283881151,11369.72945660538,44.866024020478456,13.930464794301928,13.524663652003747,8.97891471125494,8.431980862917833,0.5918682449819866,0.8150134048257373,0.6893939393939394,0.587360594795539,0.1230569948186528,0.7550362610797744,0.9096153846153846,0.8166189111747851,0.736318407960199,0.1812865497076023,0.5153119092627599,0.7328881469115192,0.636471990464839,0.5379537953795379,0.1064891846921797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022592116060664,0.0043806723115144,0.0064950221744116,0.0086374213740613,0.0105611232639772,0.0128348782723846,0.014934813212821,0.0171829029094475,0.0190706144748419,0.020982101693526,0.023012208884785,0.0254115374339793,0.0274326536074196,0.0295997690578798,0.0319029176349083,0.0335947523072466,0.0355147356090683,0.0377705313006272,0.0400049941215028,0.041813481225111,0.0563153660498793,0.0699744481213086,0.0831828679403737,0.0963523309520553,0.1087621579424858,0.1232776684233919,0.1345468053491827,0.1444743820487971,0.1539949555403556,0.1641099358492995,0.1762494614390349,0.1885628308238528,0.2002024115265746,0.2103039523658373,0.2187771915718518,0.2281946137648232,0.2365786977626513,0.244154003621762,0.2513582487381614,0.2572661606969104,0.2625393300018508,0.267895142997451,0.2730037752819627,0.2787189686571455,0.2831792841266564,0.2866878635512176,0.2900735662095886,0.2919971527354078,0.2957567917205692,0.2979530546115546,0.2954991266962246,0.2916369227390039,0.2891107740703292,0.2858975097994005,0.2827239121720928,0.2803399173174092,0.2769191871306216,0.2767829349411013,0.2772906060038482,0.2768916155419222,0.2775661138502913,0.2794722851235601,0.2804097846539828,0.2819981275912799,0.2839129599385147,0.2853984027470669,0.2855683559389365,0.290226832468912,0.2946185523836113,0.2990580538367556,0.3029107725788901,0.30685539241576,0.3108269074039245,0.3139755560616412,0.31817756572177,0.319376026272578,0.3193174893357708,0.3237597911227154,0.3223912463303977,0.3213090368166604,0.0,2.394410738048252,53.89921269575177,139.4384365130478,192.98704132200388,fqhc1_80Compliance_implementation,81 -100000,95856,48469,461.8072942747455,4895,49.89776331163412,3908,40.185277916875314,1439,14.646970455683526,77.4717338221379,79.75865804934593,63.40399372213196,65.09097041084969,77.2925319743093,79.58275705216683,63.33614177149008,65.02668352127677,0.1792018478286081,175.9009971790988,0.0678519506418808,64.2868895729265,252.66604,177.0157172412335,263588.9459188783,184668.1652198854,501.76587,334.1228148264204,522866.3724753798,347976.68507830537,481.70987,235.1085606747158,499086.21265231183,242628.69916422604,2703.38872,1253.75881077622,2782710.0546653317,1270514.2052904884,873.69825,393.71165025564,898550.3359205475,398022.6861497656,1390.25156,587.4582094988665,1416921.3612084794,584970.69070733,0.38319,100000,0,1148482,11981.31572358538,0,0.0,0,0.0,43234,450.4047738274078,0,0.0,43547,450.769904857286,1054753,0,37780,0,0,10038,0,0,81,0.8450175262894342,0,0.0,3,0.0312969454181271,0,0.0,0.04895,0.1277434171037866,0.293973442288049,0.01439,0.372156862745098,0.6278431372549019,23.142367306044584,3.948042527772973,0.3011770726714431,0.3039918116683726,0.2003582395087001,0.1944728761514841,11.419040109572126,6.334118356362096,15.20653233854074,11477.142344047828,44.77617603711575,14.693976632428129,13.368244075570177,8.586921406157307,8.127033922960125,0.5980040941658137,0.8173400673400674,0.6949872557349193,0.5874840357598978,0.1157894736842105,0.7674216027874564,0.9221311475409836,0.8389057750759878,0.717391304347826,0.1564625850340136,0.527536231884058,0.7442857142857143,0.6391509433962265,0.5475792988313857,0.1060358890701468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020346188885514,0.0042548449514238,0.0066620698047009,0.0088408444985789,0.0111169823591577,0.0132977911626156,0.0155244071387824,0.0176664388661655,0.0202295610971549,0.0221713163707764,0.0243245457711137,0.0266960668683657,0.028753698224852,0.0308159275645642,0.0329753020244918,0.0349025722576181,0.0367523843018805,0.038812714402678,0.0409727125472442,0.0429783027212654,0.0580696961481512,0.0723708969266151,0.0852205443132158,0.0977367768508206,0.1098685666705313,0.1259118300031715,0.1377054395080055,0.14845112973916,0.1583397386625672,0.1672918631569922,0.1790752477591383,0.1897134952285229,0.200241044962486,0.2101965065502183,0.2188371735453687,0.2282148502702762,0.2361858299640235,0.2438364469193461,0.251449406649153,0.2579789666209419,0.2642204164550533,0.2702765729210391,0.2761066333093381,0.2801438780143878,0.2843222803955788,0.2881187144999877,0.2907774865843005,0.2949904882688649,0.297297646087136,0.3001603659498396,0.2976011591714071,0.294141801259239,0.2919808279844157,0.2889750772103713,0.2851086458779562,0.2810693201874505,0.2775515978433437,0.2774193548387096,0.2783641384451183,0.2797283195075791,0.2805102211329582,0.281660926737633,0.2836851490897026,0.2844223327805417,0.2865692910580691,0.2872518474650462,0.2871637763849461,0.2928438661710037,0.2971503303964757,0.3019888685634219,0.30630068621335,0.3102134544126089,0.3126124449407531,0.3160270880361174,0.3206121115983951,0.3220916568742655,0.3292847503373819,0.3343248066627007,0.337990327780763,0.3390912504693954,0.0,2.27519572288848,49.64736263021863,149.5780327422101,196.95654902178535,fqhc1_80Compliance_implementation,82 -100000,95737,48057,457.3362440853589,4779,48.64368008189102,3801,39.09669197906766,1391,14.17424820080011,77.34438518034166,79.69751768380209,63.33412346583962,65.07241554781282,77.16012818216561,79.5173736037893,63.26342748802308,65.00563456001213,0.1842569981760533,180.1440800127949,0.0706959778165341,66.78098780069774,254.19372,177.99909291464834,265512.0590785172,185924.6263353231,503.1502,335.76916755559984,524916.5735295655,350082.6442813121,476.42926,232.67358519401628,493604.8654125364,239828.5033828456,2682.28617,1256.6232283376814,2763727.284122126,1274617.7705982858,883.297,403.3596502696436,909714.3946436592,408406.2799854215,1350.70944,584.238085254224,1378839.9469379657,582271.1122223565,0.3807,100000,0,1155426,12068.729958114418,0,0.0,0,0.0,43468,453.3879273426157,0,0.0,42945,444.59299957174346,1041827,0,37446,0,0,10060,0,0,88,0.9087395677742148,0,0.0,0,0.0,0,0.0,0.04779,0.125531914893617,0.2910650763758108,0.01391,0.3703703703703703,0.6296296296296297,23.21742819218593,3.962392865013016,0.310444619836885,0.2851881083925283,0.2067876874506709,0.1975795843199158,11.433984097085208,6.252144134995935,14.965870061943614,11458.198566531222,43.579708333688245,13.41620097911174,13.293816590121494,8.716773314352222,8.15291745010279,0.588529334385688,0.8099630996309963,0.6949152542372882,0.573791348600509,0.1171770972037283,0.7418244406196214,0.908119658119658,0.835820895522388,0.6919191919191919,0.124223602484472,0.5210306934444866,0.7353896103896104,0.6390532544378699,0.5340136054421769,0.1152542372881356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0045319517808441,0.0070110289268357,0.0093334552065242,0.0114382739898733,0.0136817566398257,0.0157049387497197,0.0182152150619929,0.0206291955737654,0.0227054128721989,0.0249815558652348,0.0271576808202728,0.0290775985276124,0.0312667353244078,0.0333825061637971,0.0355076058201058,0.0375009056939686,0.0395105257699885,0.0418610935015536,0.0437268892245195,0.0579822107153296,0.0715571368773545,0.0845674609833864,0.0972396025027604,0.109454415083198,0.1251004525652413,0.1365540648035212,0.1464836684753697,0.1556955941255006,0.1652210273509955,0.1783780292182975,0.1902124529444853,0.2011547369222238,0.2103640874859272,0.2189341954781384,0.2283756558701764,0.2360378053271142,0.2446103844985998,0.2515314456847264,0.258337435744788,0.2638233388858041,0.2691326829040031,0.2743590046972798,0.2792805755395683,0.2833147104547221,0.2872590966819151,0.2907524296162709,0.2943139127666348,0.2977232697886448,0.3000448596157906,0.2969737726967048,0.293412104142337,0.2908901672316066,0.2878429449268672,0.2848368863767858,0.2812672092027167,0.2780870445344129,0.2776786152914012,0.2783874045801526,0.2783897777224111,0.2787604015075189,0.2802571563384712,0.2818776564713726,0.2833077419498409,0.2841412327947337,0.2855810821311093,0.2864296019689383,0.2904193487907006,0.2939659079025342,0.2986695092581626,0.301359346068735,0.3038161501159603,0.3067190226876091,0.3112290669856459,0.3167408231368186,0.3183249737548116,0.3250530142381096,0.3254065040650406,0.3336081341027755,0.3407606607760277,0.0,2.36292326724593,50.28307379295054,136.3992770890523,195.16772177631665,fqhc1_80Compliance_implementation,83 -100000,95675,47896,458.67781552129605,4866,49.490462503266265,3946,40.70028743140841,1421,14.549255291350928,77.28108161739658,79.6687087414915,63.29287913429015,65.05589998914374,77.10214100553122,79.49157367489207,63.22506126552054,64.99093564089395,0.1789406118653573,177.13506659943334,0.067817868769616,64.96434824978792,252.78946,177.09113564878666,264216.8382545074,185096.56195326537,501.72561,334.17031837277347,523880.1881369219,348750.53919286485,480.41924,234.67173176360131,498337.62215834856,242371.91924460643,2712.20318,1281.4822603860775,2798996.738960021,1303599.90633507,896.77269,411.2732937855909,922680.585314868,415234.12990393554,1371.8239,584.1907311726137,1404719.4983015417,585085.3547068806,0.38001,100000,0,1149043,12009.856284295793,0,0.0,0,0.0,43260,451.60177684870655,0,0.0,43539,451.27776326104,1045592,0,37573,0,0,10072,0,0,82,0.8570681996341782,0,0.0,1,0.0104520512150509,0,0.0,0.04866,0.1280492618615299,0.292026304973284,0.01421,0.3693497224425059,0.630650277557494,22.72585761539376,3.9110728533744665,0.3086670045615813,0.3051191079574252,0.1991890522047643,0.1870248352762291,11.676276615824028,6.651572133787262,15.190749232722547,11340.178991421948,45.60401554343194,14.897849821038864,13.940118060842366,8.74216697967957,8.023880681871134,0.6115053218449062,0.8280730897009967,0.7077175697865353,0.5814249363867684,0.1314363143631436,0.8033573141486811,0.9274809160305344,0.8955613577023499,0.7208121827411168,0.2312925170068027,0.5224489795918368,0.7514705882352941,0.6215568862275449,0.534804753820034,0.1065989847715736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020260345438889,0.0043187785764251,0.0063630920364939,0.0086964472574697,0.0107194434839208,0.0126573255671866,0.0148153435161204,0.0168354637154408,0.0191157679529772,0.0214229418929569,0.0233156637376834,0.0252679781510534,0.0272418757712875,0.0291993364723822,0.0310651956281671,0.0330241839593866,0.0349499678882926,0.0370216608371648,0.0390284495761169,0.0410243582126887,0.0551840862551715,0.0689821262159303,0.0824743350198391,0.0954976378118456,0.1073139336132857,0.1230744815911976,0.134837901530753,0.1456826678311623,0.1555930971066869,0.1650988982668642,0.1768487358702217,0.1878427292628476,0.1980571104963952,0.2065525661662451,0.2151112188350391,0.2247382895670688,0.2332629320459955,0.2416352272087392,0.2488356242190162,0.255926724137931,0.2621460420406509,0.2670968950937562,0.2725397935358468,0.277330388968232,0.28211424611906,0.2863376392860665,0.2910517817581015,0.2933328240970604,0.2962699039944029,0.2992589852985853,0.2959603175672943,0.2929868770741246,0.2894346813466017,0.2856563960808718,0.2838561819155902,0.2810264266564534,0.2767936226749335,0.2783403633737629,0.2785659411011523,0.2791974054670516,0.2792560158676696,0.2809157588817935,0.2817051956489845,0.2823132293110386,0.283830523130134,0.2856030926497678,0.2866672343807658,0.2920866462154886,0.2951521905690604,0.2983442797026782,0.3023465703971119,0.3052925084175084,0.3058625210713617,0.3113143885431506,0.3201555411535969,0.3246242774566474,0.3246831623415812,0.331018059138718,0.3336901257693337,0.3377609108159393,0.0,2.1740446258118906,54.57731501956419,144.49907294967622,194.43472685204387,fqhc1_80Compliance_implementation,84 -100000,95729,48228,460.46652529536505,4822,49.17005296200733,3800,39.14174388116454,1344,13.694909588525944,77.3612597271838,79.72651420753101,63.34108899169471,65.08898484291646,77.18456872319183,79.55448303047946,63.27393602354498,65.02604173691563,0.1766910039919764,172.0311770515508,0.0671529681497276,62.943106000830085,251.04684,175.9030817797455,262247.4276342592,183751.09087083905,502.67205,335.79311204372686,524539.7423978106,350215.4123031963,483.89904,237.00091456932705,502027.3062499347,244847.4518474192,2612.1816,1236.261620792361,2690734.709440191,1253427.33214842,872.04074,405.0970461317913,893292.126732756,405515.4928305845,1296.44338,558.3575798924576,1321802.6094495922,554364.1056565016,0.38116,100000,0,1141122,11920.337619739055,0,0.0,0,0.0,43197,450.6471393203731,0,0.0,43701,453.0915396588286,1057916,0,37947,0,0,9879,0,0,95,0.992384752791735,0,0.0,1,0.0104461552925445,0,0.0,0.04822,0.1265085528387029,0.278722521775197,0.01344,0.3506364359586316,0.6493635640413683,23.224723594105512,3.942355188051224,0.3202631578947368,0.2876315789473684,0.2123684210526315,0.1797368421052631,11.665499624386824,6.591881010280371,14.395464504176148,11436.040949645683,43.83725867934093,13.615874747394065,13.82066152361018,8.999379617095808,7.401342791240883,0.6036842105263158,0.817932296431839,0.7058340180772391,0.5749690210656754,0.1127379209370424,0.7863453815261044,0.9442307692307692,0.8675675675675676,0.7437185929648241,0.1217948717948717,0.5146771037181996,0.7033158813263525,0.6351829988193625,0.5197368421052632,0.1100569259962049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.0046232460053532,0.0066976517627001,0.0087980412674868,0.0110139326756839,0.0134722307081322,0.0152958211816531,0.0175626691172716,0.0197531873996748,0.0216216216216216,0.0234997385500292,0.0254711652031017,0.0278923388631197,0.0302864854284919,0.0323612573008895,0.0346328402030414,0.0366588654391814,0.0386758677943236,0.0406679907246617,0.042426831428363,0.0571037766385098,0.0718121016108267,0.0849242646750304,0.0976489390785018,0.109654300168634,0.125280115005708,0.1370885646420088,0.1473229485869935,0.1571301923672601,0.1659234166630933,0.1782768793471005,0.1897972870648811,0.1999739093567569,0.2102473305135687,0.2195510706591039,0.2289264611503308,0.2373493572949531,0.2455172568757864,0.2527340518364895,0.2589211143527258,0.2650488241751892,0.2695541490529463,0.2745355268756205,0.2782855228844175,0.2835263897639703,0.2879893828798938,0.2914342057637822,0.2942625344387593,0.2970537664990368,0.2996863716627573,0.2956493698438717,0.2927451545203901,0.2892090776317267,0.2864987964657893,0.2838893252515672,0.2813292202437311,0.2775544309385297,0.2773875257294083,0.2765708073584617,0.2766297684831471,0.2763140720851746,0.2773389019128859,0.2786909181928163,0.2803505494016637,0.2816702560421153,0.2839855618167182,0.2842371388802091,0.2890296681929373,0.2924297497553474,0.2994823566602126,0.3035182679296346,0.3084788422211735,0.3100857036392995,0.3103422395676974,0.3175688158137816,0.3238583410997204,0.3330824804334738,0.3382558371582518,0.3430939226519337,0.341991341991342,0.0,2.111511763066521,54.35584393679545,130.36106424155142,190.38821913248125,fqhc1_80Compliance_implementation,85 -100000,95649,48198,460.19299731309263,4940,50.32985185417516,3910,40.28270028960052,1445,14.762308022038914,77.2430810454354,79.64783137060016,63.27207635196621,65.05007123764099,77.06009373025044,79.46795945867811,63.20360176583726,64.98516294235792,0.1829873151849597,179.87191192204932,0.0684745861289499,64.90829528307529,251.8527,176.41549395700486,263309.28708088945,184440.50011709987,500.98329,333.8641877772528,523125.3541594789,348404.1315405836,480.05781,234.24320753726025,497731.2569917092,241724.95247940192,2708.86437,1266.5470098402473,2791256.050768957,1283645.2616313903,881.25648,395.2900010297326,905115.578835116,397160.7904804738,1401.60988,593.8622753886208,1432703.237880166,592304.5213256384,0.3815,100000,0,1144785,11968.60395822225,0,0.0,0,0.0,43128,450.22948488745305,0,0.0,43381,449.3930934981024,1049772,0,37768,0,0,9932,0,0,103,1.0768539137889577,0,0.0,0,0.0,0,0.0,0.0494,0.1294888597640891,0.2925101214574899,0.01445,0.3709083865969397,0.6290916134030602,23.09390605788727,4.067323847056146,0.3176470588235294,0.2805626598465473,0.207928388746803,0.1938618925831202,11.580800395427058,6.351170480632744,15.41217121912894,11470.040124979898,44.96625051753334,13.532301172778253,14.18715373714818,8.920757960831352,8.326037646775553,0.589769820971867,0.8113035551504102,0.6884057971014492,0.5879458794587946,0.1094986807387862,0.7521150592216582,0.9136069114470844,0.8619718309859155,0.7409326424870466,0.0994152046783625,0.5194281524926686,0.7365930599369085,0.6189402480270575,0.5403225806451613,0.1124361158432708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.0043413872152232,0.0069033430453894,0.0094087523750495,0.0116871624301974,0.0140536687204032,0.0161305123629875,0.0182568207809181,0.0206867637434555,0.0228562066070002,0.0250228179384889,0.0273062427472606,0.0292992451510726,0.031070681680042,0.03297792182323,0.0350946127597973,0.0370539182679857,0.0391090444855001,0.0408042270807763,0.0428686106274955,0.0580994378147923,0.0719276010516282,0.0852466588978824,0.0977381090212506,0.1098384883352686,0.1253414071266752,0.1367262606626512,0.1472049292171243,0.157068118841541,0.1667901672089951,0.178784511312266,0.1901427533954063,0.2011086788425305,0.2099361606605126,0.2181497603173728,0.2273619754401144,0.2361870270391111,0.2442451352660815,0.2517130487153555,0.2582068680940809,0.2640858122509498,0.27063876600426,0.2765657737425869,0.2806003788332893,0.2842745121877089,0.2881761549373959,0.2917298130033441,0.2952049733751178,0.2980638300631557,0.3003567181926278,0.2963731128200293,0.2929952953476215,0.28987386371644,0.2870810631133207,0.2850261655566127,0.2807057850480173,0.2772647352330867,0.278170170827858,0.2782862607151395,0.2786823781467595,0.2794575533630941,0.2808114794656111,0.2835364576789378,0.2850340896389851,0.2854055092581474,0.2862733842982753,0.2870164009371964,0.2912697664183092,0.2945779961396736,0.2992953541144154,0.3008635262941472,0.3049136786188579,0.3083160475202715,0.3104967340118487,0.3123114630467571,0.3140798488069927,0.3159679408138101,0.3209926769731489,0.3188286808976464,0.3233054074638233,0.0,2.217929704245748,51.50888909839877,143.25812080833774,200.5493232627603,fqhc1_80Compliance_implementation,86 -100000,95824,47991,457.3593254299549,4821,49.14217732509601,3836,39.52037067957923,1492,15.27800968442144,77.44904619750217,79.77450086945699,63.38601454967061,65.10651865454962,77.25675499540885,79.5845085928369,63.31289449558594,65.03661881069046,0.1922912020933154,189.9922766200888,0.0731200540846757,69.89984385916159,253.51964,177.3694227498756,264567.99966605444,185099.16383147813,497.82817,332.114584461853,519016.6555351477,346081.28909443674,473.29621,230.86124414288173,490745.856987811,238503.77677124957,2674.7402,1265.725806204726,2756523.772750041,1286104.677538744,860.92838,399.0222844141728,887798.7977959592,405767.9981368141,1446.23158,623.5100428913075,1481954.6668892968,626031.6242409042,0.37981,100000,0,1152362,12025.818166638835,0,0.0,0,0.0,42926,447.4348806144599,0,0.0,42792,443.2918684254466,1055223,0,37910,0,0,10127,0,0,81,0.8452997161462682,0,0.0,0,0.0,0,0.0,0.04821,0.1269318869961296,0.3094793611283966,0.01492,0.3631652381901535,0.6368347618098466,22.9579201942713,4.039942542151233,0.3104796663190823,0.2844108446298227,0.2062043795620438,0.1989051094890511,11.004912417970628,5.8546096126937694,16.01529941731667,11380.19752603824,44.094876737357566,13.393144541925157,13.465386080059789,8.845365369554697,8.390980745817929,0.5873305526590198,0.8258478460128322,0.6985726280436608,0.5600505689001264,0.1009174311926605,0.7605985037406484,0.946236559139785,0.8676056338028169,0.7164179104477612,0.1263736263736263,0.5081655905810862,0.7364217252396166,0.6267942583732058,0.5067796610169492,0.0929432013769363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021773695350556,0.0047844464942779,0.0070418962385721,0.0092745908716896,0.0114300822681188,0.0135929052162137,0.0159354832131969,0.0180957143877769,0.0199693408277976,0.0222754294952471,0.0244504790695291,0.0263649425287356,0.0282997532894736,0.0304243971748038,0.0325701320132013,0.0347232266462797,0.0368250551133835,0.0386876678522174,0.040541944600295,0.0426526469210348,0.0574483621948675,0.0712239392735409,0.0850093802731284,0.0974584729824856,0.1100105374077976,0.1247899559303763,0.1355050033921302,0.1463801097452039,0.1564123627751165,0.1651905715540229,0.176650248424494,0.1881455551233847,0.1976395735163188,0.2067309790911868,0.21582812791604,0.225616765408082,0.2339918483707877,0.2421355060996824,0.2495020145773914,0.2559024089367097,0.2618017331902471,0.268290122808859,0.2737116502907559,0.2776961399233002,0.2822211456945622,0.2855423166687139,0.2895219098672318,0.2931261722512293,0.2962958186086104,0.2991787661783063,0.296704475370713,0.2937267046700285,0.2913401281386252,0.2874320398124442,0.2848365800705962,0.2808416120247676,0.2771608525609813,0.2772104688848716,0.2767928202523071,0.2767964601769911,0.2773327881952833,0.2772023261733665,0.2784194781452551,0.278143931828773,0.2790231803872937,0.2794989432444971,0.2807175899808191,0.2842301710730949,0.2886752360051555,0.2941891468005019,0.2981506540369869,0.3030398819872504,0.3069671619428143,0.3129046830296642,0.3149687179008311,0.3196539226002572,0.3227025392986699,0.3278491171749598,0.3263757115749525,0.3310810810810811,0.0,1.9939204348987705,52.36797430649598,139.3753263089585,190.80023144981905,fqhc1_80Compliance_implementation,87 -100000,95813,48223,459.7810318015301,4751,48.49028837422897,3808,39.22223497855197,1465,15.018838779706302,77.3497797498425,79.68216149316864,63.33168066437421,65.05950390931706,77.16303889903546,79.49719189104574,63.26146652984084,64.9919313891862,0.1867408508070411,184.9696021228908,0.0702141345333728,67.57252013085235,253.76868,177.75523225738476,264858.2968908186,185523.08377504596,501.22782,334.6452089576583,522631.1773976392,348768.95510803163,476.77892,233.21776036542465,493673.40548777307,240509.31578853648,2692.57371,1262.5395034131743,2777116.549946249,1284613.5633089186,878.67315,401.14882215661714,907353.6054606368,408977.6395634094,1423.96246,605.2939432399266,1460438.562616764,609539.5234206647,0.38022,100000,0,1153494,12039.013495037208,0,0.0,0,0.0,43192,450.25205347917296,0,0.0,43088,445.81632972561135,1044476,0,37437,0,0,9920,0,0,86,0.8975817477795288,0,0.0,0,0.0,0,0.0,0.04751,0.1249539740150439,0.3083561355504104,0.01465,0.3589274832419256,0.6410725167580743,22.80338261889543,4.015718744747219,0.3064600840336134,0.2833508403361344,0.1995798319327731,0.210609243697479,11.45291856988075,6.3639770428568285,15.625681871210466,11341.594398426936,43.82689698937177,13.354012295557167,13.307668216437904,8.556915428503556,8.60830104887314,0.5790441176470589,0.788693234476367,0.7163667523564696,0.5842105263157895,0.0922693266832917,0.754950495049505,0.9100642398286938,0.8495821727019499,0.7336448598130841,0.1627906976744186,0.4969183359013867,0.696078431372549,0.6571782178217822,0.5256410256410257,0.073015873015873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070972709038,0.0041063806057164,0.0066170052976637,0.0089404545408365,0.0110873766656494,0.0132477979736265,0.0156402936378466,0.0179251349999489,0.0203501742694481,0.0224669648614622,0.0245615114145421,0.0268083577185687,0.0289548095213613,0.0307586164286229,0.0328443811763735,0.034987290499907,0.037037037037037,0.0388963800435639,0.0409064461161215,0.0427290805543119,0.0564400025038078,0.0708198709704403,0.0842678964469133,0.0967758885222472,0.1085183077214949,0.1240761691284534,0.135800504889794,0.146551724137931,0.156544401956805,0.1659533846038335,0.177892230279391,0.1882643232830458,0.198927538123518,0.2074283778023107,0.2160488395116049,0.2251506691482761,0.2339283721968091,0.241766643804041,0.249194573010255,0.2554828075637562,0.2619223830889495,0.2673164346901331,0.2734753718461065,0.2778974579922447,0.2812666828439699,0.2847297430343605,0.2872329793878825,0.2908640406607369,0.2945396726906073,0.2979309435951502,0.2948210922787194,0.2914563186926558,0.2883164414414414,0.2859352861232397,0.2828894629019328,0.278942459134211,0.2752492140476152,0.2749103766635564,0.2750954068420335,0.2749991094011613,0.2757615943517809,0.2761073455233291,0.2766445584616026,0.2768891953818432,0.2776661884265901,0.2781551384423934,0.2789887894915638,0.2828134747348721,0.2864485656734041,0.2903352130325815,0.2937702848900108,0.2967240655186896,0.2989568367793116,0.3026096191776665,0.3061129258049463,0.3084559682317215,0.3145063597819503,0.3170974155069582,0.3195821055451379,0.332319391634981,0.0,2.019530029341313,52.95803900286931,133.24410763041848,192.8550215596589,fqhc1_80Compliance_implementation,88 -100000,95814,47762,454.8291481411903,4844,49.56478176466905,3856,39.81672824430668,1483,15.154361575552636,77.41775944651599,79.74502690908311,63.37436231324406,65.09469138080289,77.22933945388367,79.55903152895218,63.303056770835184,65.02639585890573,0.1884199926323191,185.99538013093309,0.0713055424088793,68.29552189715571,253.71786,177.66062473334037,264802.4923288872,185422.40667683256,500.07708,333.4142809210276,521500.8558248272,347556.75675895746,472.62123,230.7694811326492,490720.5523201203,238887.26667209849,2682.30152,1264.076996698709,2767436.314108585,1287251.243762612,879.39635,400.7347101028508,903206.7860646668,403632.98693599104,1437.51338,611.6741000437898,1469112.0713048198,612029.6773213063,0.3794,100000,0,1153263,12036.47692404033,0,0.0,0,0.0,43111,449.4854614148246,0,0.0,42792,444.0687164714969,1050711,0,37713,0,0,10175,0,0,85,0.8871354916818002,0,0.0,0,0.0,0,0.0,0.04844,0.1276752767527675,0.3061519405450041,0.01483,0.3774219058916568,0.6225780941083432,22.90495584691494,3.89811167435193,0.3065352697095436,0.2927904564315353,0.2009854771784232,0.1996887966804979,11.437164915770795,6.426399003203756,15.849370562501276,11363.76618610488,44.38329594531356,13.9561250994668,13.366623058922771,8.734150092412435,8.32639769451156,0.5863589211618258,0.8051372896368467,0.7055837563451777,0.5561290322580645,0.1129870129870129,0.773978315262719,0.8917835671342685,0.9054878048780488,0.7592592592592593,0.141025641025641,0.5016936394429808,0.7365079365079366,0.6288056206088993,0.4776386404293381,0.1058631921824104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021263884810498,0.0046425349457188,0.006879686659699,0.0089577705104507,0.0111547221996258,0.0132130787084164,0.0156864743655081,0.0180860618927084,0.0201455467200883,0.0224139519174675,0.0245799977449543,0.0263916975476559,0.028525318147242,0.0306072024213972,0.0328411457796292,0.0349724744110143,0.0371520231812066,0.0390325322938481,0.0408468554569819,0.0428201097310859,0.057258518874027,0.0704586081811434,0.083961384052578,0.096682703418139,0.1091650166406875,0.1245576039300618,0.1358007690433566,0.1459841598894381,0.1560416110962923,0.1650527037449652,0.1765370097538418,0.1878152849041318,0.1980718287228036,0.2077951853267099,0.2167236057253962,0.225817156130745,0.234557856490047,0.2428808839381961,0.2499348773996262,0.2566691441312675,0.2620411651920811,0.2668114064269122,0.2720564796996564,0.2766015980096646,0.2807672721099983,0.2841043307086614,0.287904514582501,0.2914027493938894,0.2933236893429601,0.2952883300010523,0.2933125805066552,0.2901202371801911,0.2877589718379099,0.2846814149095518,0.2827246067715276,0.2790910756826095,0.2766514267696673,0.27734375,0.2780145697838306,0.278186948728415,0.2790580695642454,0.2808819206271435,0.2819457436856875,0.2836511839103373,0.2833981996609441,0.2848016139878951,0.2850526672502894,0.2890556870561854,0.2934661852520483,0.2975868157739847,0.3017016296029531,0.3067423406379736,0.3098661686896981,0.3152165753321823,0.3154468520412908,0.3200282585658778,0.323317491951556,0.3353389490573606,0.3351264120494889,0.331306990881459,0.0,1.5650502424747583,52.67746580328085,143.20297254281076,190.2005493472041,fqhc1_80Compliance_implementation,89 -100000,95727,47962,457.61383935566766,4714,48.10555015826256,3750,38.63068935619,1376,14.0294796661339,77.3893283971574,79.75047740648439,63.35181630130408,65.09358931604046,77.20939568297423,79.57313382694319,63.28386062251206,65.02886894466253,0.1799327141831668,177.34357954120128,0.0679556787920176,64.72037137793052,253.98186,177.81159914747946,265318.70841037534,185748.4086490534,499.54599,334.01346724939833,521274.54114304215,348353.08455231885,480.06309,234.92554385604768,498317.7055585153,242940.1392858989,2636.55504,1253.2077791606189,2717453.456182686,1272357.2337591464,877.56735,409.4686594160609,901854.9521033772,412919.0946043984,1333.9078,576.7425408770839,1361224.9208687204,575141.5883306942,0.37923,100000,0,1154463,12059.941291380695,0,0.0,0,0.0,43045,449.07915217232335,0,0.0,43353,449.7163809583503,1045117,0,37518,0,0,9900,0,0,84,0.8670490039382828,0,0.0,2,0.0208927470828501,0,0.0,0.04714,0.1243045117738575,0.291896478574459,0.01376,0.3790503362543305,0.6209496637456694,22.64328682373001,3.986692033204132,0.3157333333333333,0.2869333333333333,0.2008,0.1965333333333333,11.79639281170556,6.652461204372677,14.84609128150303,11378.038623528557,43.52375222041752,13.459288882889316,13.57390685749644,8.413403157523799,8.077153322507945,0.6026666666666667,0.8197026022304833,0.7170608108108109,0.5856573705179283,0.1194029850746268,0.7748953974895397,0.9287169042769856,0.8774928774928775,0.7,0.1779141104294478,0.5221135029354207,0.7282051282051282,0.6494597839135654,0.5470692717584369,0.102787456445993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020863506081813,0.0045202549991385,0.0066238600975827,0.008661393336921,0.0109389614086454,0.0132015552796042,0.0153676830262514,0.0173159731434052,0.0195469361480376,0.0218768226422044,0.0239266318270314,0.0258854188041203,0.0278771064529387,0.0298507462686567,0.032052472000495,0.034081162355713,0.0361823715758742,0.0381806866507623,0.0404618870434656,0.0425828897615649,0.0574826664439061,0.0711213887348407,0.0844922702577979,0.0972401829364453,0.1094293483989291,0.1249814944060233,0.1363414582405227,0.1467382047351388,0.1561905779297083,0.1654211118854875,0.1778691878620808,0.1892678283631329,0.1989477002685103,0.2087620130544591,0.2172975589364487,0.2264370362166352,0.2348956589666332,0.2430870264374149,0.2508309982188844,0.2570201557489693,0.2625177751829543,0.2672384580329286,0.2724791132434444,0.2777538468901812,0.2817166215839206,0.2858478381204256,0.2893171365726855,0.2923539944378833,0.295913750533242,0.2989203423304806,0.2958409941889334,0.2920776459290761,0.2893913677743334,0.2858624863120281,0.2832361386578254,0.2795897217057335,0.2761675478348439,0.277363812753746,0.2774846011572464,0.2784904455208389,0.2802605863192182,0.2807420494699646,0.2815590580690832,0.281231261243254,0.281595604920578,0.2814193548387096,0.2812799819402901,0.2860339362297222,0.2879670063076177,0.2917791603083304,0.2953635832171606,0.3017390847475437,0.307170422009212,0.3117466496967882,0.315799239261527,0.3191563738056397,0.3219628964691801,0.3204594969300852,0.3224118942731278,0.3190348525469169,0.0,2.028075651072853,52.08702440072826,142.06148422449533,179.93693928073492,fqhc1_80Compliance_implementation,90 -100000,95677,48300,460.8526605140211,4757,48.642829520156354,3815,39.340698391462944,1407,14.41307733311036,77.35982293729873,79.73481774988213,63.33991942654043,65.08960811876206,77.18312500985625,79.5597150798681,63.2739476285755,65.02610677111996,0.1766979274424756,175.10267001402724,0.0659717979649343,63.501347642102246,252.73248,176.988657197184,264151.07079026307,184984.91465993295,500.13404,333.46713633444364,522206.6118293843,348009.71531971486,479.8797,234.5045350238128,497625.6048998192,242163.08864939143,2670.39619,1248.808786788268,2755747.90179458,1269951.5055742424,883.76955,397.7483595088215,911528.7895732516,403625.4348545773,1360.73458,575.4271673194677,1394477.8368886984,577900.7600464091,0.38193,100000,0,1148784,12006.866854102866,0,0.0,0,0.0,43076,449.6587476614024,0,0.0,43264,448.3209130721072,1051069,0,37713,0,0,10132,0,0,91,0.9406649455982106,0,0.0,1,0.010451832728869,0,0.0,0.04757,0.1245516194066975,0.2957746478873239,0.01407,0.3593309149536477,0.6406690850463522,23.18399715415017,3.966652382811757,0.30956749672346,0.291218872870249,0.2028833551769331,0.1963302752293578,11.55604083657783,6.468339568366199,14.998563630269176,11473.804021244652,43.99222492110552,13.762384426068838,13.447382453637712,8.687990969998193,8.094467071400775,0.5984272608125819,0.7974797479747975,0.7146486028789162,0.6098191214470284,0.1081441922563418,0.7832047986289632,0.9175050301810864,0.8826979472140762,0.7582417582417582,0.1292517006802721,0.5169939577039275,0.7003257328990228,0.6464285714285715,0.5641891891891891,0.1029900332225913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020051039008384,0.0040846940533746,0.0064830315020544,0.0087749588673803,0.0111334797462176,0.0131202605730571,0.0152436849774299,0.0174468432436844,0.0195918200576109,0.0220867305705312,0.0241975966315962,0.0262223772493177,0.0285323712908431,0.0307042833607907,0.0327189082694668,0.0346548979887136,0.0366164230402915,0.0388524726186525,0.0408366948060049,0.043093565666882,0.0577616197072742,0.0720156637733359,0.0855880439117566,0.0982651053667055,0.1106447156100699,0.1267920056709375,0.137961410286345,0.1489717456361758,0.1592274311122512,0.1680993314231136,0.1807182183530324,0.1913016175483423,0.2019105231090608,0.2107998686946055,0.2193255755066991,0.2285594046247895,0.2369789342140498,0.2456000359639461,0.2526159462186398,0.2583092113543013,0.263673139158576,0.2694429509806213,0.2750928049559029,0.2798411027089116,0.2839464274892431,0.2881647709806332,0.2922642899050044,0.2938996217410068,0.297086475875607,0.3002369980250164,0.2973332080688239,0.2939134491369611,0.2913416810714336,0.2896317313093198,0.2864076951535331,0.2826992629217598,0.2779663157230123,0.2771654574933263,0.2779663329524329,0.2792027359196323,0.279359031824294,0.2797881556150575,0.2797103566286179,0.2809989093903715,0.2811513818494788,0.280816601117781,0.2817581300813008,0.2864576841580456,0.2918924551896623,0.2974268316637203,0.3033186040220038,0.3072012661566869,0.3124607461374199,0.3165593027661993,0.3196078431372549,0.3209686946249261,0.3208491281273692,0.3254189944134078,0.3301486199575371,0.3308298911002628,0.0,2.0243979940813213,50.93275040669274,144.13610015144735,188.8810295261017,fqhc1_80Compliance_implementation,91 -100000,95847,48220,459.94136488361664,4849,49.22428453681388,3883,39.86561916387576,1451,14.65877909585068,77.34109898624328,79.6309709029993,63.34986309044478,65.04357334628094,77.15137106035252,79.44895200662926,63.27594748203133,64.97559889006565,0.1897279258907644,182.01889637003887,0.0739156084134435,67.97445621528198,252.7569,177.00409460261287,263708.7232777239,184673.5887431144,498.56143,333.1697820161567,519542.781725041,346984.800793094,477.01677,233.3688973292076,493924.9741775955,240500.84169412483,2687.97908,1266.4294562811158,2761678.049391217,1278533.429612941,881.77636,404.8793703134326,901580.3833192484,404019.69838746457,1408.04202,607.7552349917972,1425239.9553454986,597110.9587765806,0.38044,100000,0,1148895,11986.760148987449,0,0.0,0,0.0,42853,446.451114797542,0,0.0,43086,445.7312174611621,1052308,0,37731,0,0,10023,0,0,92,0.9598631151731406,0,0.0,2,0.0208665894602856,0,0.0,0.04849,0.1274576805803806,0.2992369560734172,0.01451,0.3720332278481013,0.6279667721518988,22.92089673420948,3.951720200813376,0.3221735771310842,0.291784702549575,0.1846510430079835,0.2013906773113572,11.30573157062477,6.264118889677229,15.479340328772876,11461.2079586255,44.69166453401839,14.00776037472167,14.275320431160903,7.931267760765761,8.477315967370057,0.5853721349472057,0.8049426301853486,0.7018385291766587,0.5453277545327755,0.1176470588235294,0.7558333333333334,0.9153225806451613,0.844632768361582,0.6961325966850829,0.165680473372781,0.5091315691390235,0.7189952904238619,0.6454849498327759,0.4944029850746269,0.1044045676998368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0047623390177422,0.0067451744109383,0.0090563892216784,0.0112007805988656,0.0132703736872099,0.0155872734496775,0.0177709767916347,0.0198455661552918,0.0219012449236371,0.023989265264732,0.0258556146990349,0.0279264196871501,0.0300118318843561,0.0320659453889747,0.0341517788029848,0.0363454002130057,0.0384388242485779,0.0402300640566439,0.0422306611871195,0.0569888212229915,0.0710806856187291,0.0842228763578843,0.0975696851303379,0.1103494029190623,0.1258991665874449,0.1375295326686937,0.1476358068666333,0.157470651013874,0.1673437449755072,0.1791703442188879,0.1910293433704316,0.2013916825224245,0.2098893650516005,0.2183927019026553,0.2281430755933781,0.2369070071086609,0.2453112518704364,0.2528029959146618,0.2584978698062211,0.2645966613065559,0.2704491504613118,0.2746791269888212,0.2790934464129562,0.2826158236687109,0.2865401207937877,0.2909009020279992,0.2944714289347201,0.2967786154900617,0.2995871311551094,0.2965922697125022,0.2935929855423011,0.2900178780072356,0.2882205875977282,0.2859944435365256,0.2827480682426746,0.2793959519291588,0.2787748539930441,0.2789254078456855,0.2800443577957037,0.281583638239985,0.2830904885233585,0.2843096146588955,0.2835446440571659,0.2849913244650087,0.2856770017747155,0.2868733452899479,0.2910056234488392,0.2947008308315297,0.2984609313338595,0.3041372442513126,0.309209832260787,0.3137708815616593,0.318109880171829,0.3231547396028475,0.328023598820059,0.3255212296454116,0.329395274329195,0.3371366476500951,0.3354863221884498,0.0,2.553877092104957,51.62623244870978,144.8744643514023,192.2121940832529,fqhc1_80Compliance_implementation,92 -100000,95649,48092,459.4820646321446,4816,49.24254304801932,3816,39.362669761314805,1401,14.281382973162293,77.31769350596971,79.73870060809047,63.289715480586615,65.08077530802096,77.13709260950729,79.56259404575047,63.22059487393268,65.015632134398,0.1806008964624226,176.10656233999578,0.0691206066539393,65.14317362295685,251.11944,175.89116955991787,262541.9816202992,183891.655074196,500.8564,333.7586324339126,523106.02306349255,348407.6691088382,471.79226,229.75876430857755,490358.257796736,237942.7302002778,2664.56379,1231.4299484064131,2749254.273437255,1250998.6375240865,833.68718,375.8269901971834,858940.0202824912,380281.93102826347,1352.47208,583.6074404607599,1379998.9545107633,580565.5700471638,0.38125,100000,0,1141452,11933.726437286328,0,0.0,0,0.0,43126,450.2922142416544,0,0.0,42588,442.3255862580895,1056466,0,37870,0,0,10044,0,0,94,0.9827598824870096,0,0.0,1,0.010454892366883,0,0.0,0.04816,0.1263213114754098,0.2909053156146179,0.01401,0.3673874231303313,0.6326125768696688,23.268649018836545,3.987370659187008,0.3168238993710692,0.2861635220125786,0.205188679245283,0.1918238993710692,11.106298229491028,6.048800448863064,14.994806781156402,11489.374145742371,43.29069306108512,13.255862602594949,13.4829289268098,8.581613353016559,7.9702881786638065,0.5765199161425576,0.8003663003663004,0.6691480562448304,0.5683269476372924,0.0983606557377049,0.7341659232827832,0.899343544857768,0.8161290322580645,0.7,0.1233766233766233,0.5109461966604824,0.7291338582677165,0.6184649610678532,0.5231560891938251,0.0916955017301038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022489666909798,0.0043301018131667,0.0065279187817258,0.0086281364648014,0.0108559626400236,0.0130195599022004,0.0152000489666006,0.0175522839424187,0.0193832959790406,0.0214231534061788,0.0235590001539803,0.0253866085382906,0.0274325256665053,0.0296878545934682,0.0316984719022182,0.0338065771228709,0.0358427770116849,0.038006107567983,0.0400349668543359,0.0423719091866637,0.0563811554217874,0.0710109392682006,0.0845946201434768,0.0978250566117225,0.1099002059242832,0.1257413369482335,0.1382710801763987,0.1486665103289487,0.1591976464295266,0.1683513980943378,0.1801568551301552,0.1916491471423307,0.2019085175219773,0.2108929216817987,0.2196874517842579,0.2292990804521202,0.2374423100562092,0.2451744408657852,0.2527416388529391,0.2593089067619898,0.2652404436109374,0.2708947540830174,0.2756763156336944,0.2790148326678418,0.2835225753118238,0.2876047313947757,0.2915118998486724,0.2952340998944866,0.299210560372719,0.3012730031000594,0.2981615568894512,0.2950326348333906,0.2924952884588337,0.2891265802712949,0.2863765625925706,0.2835928070523887,0.2797365178656051,0.2803492307440773,0.2811559711007225,0.281155823435561,0.2821303798409276,0.2833897906835582,0.2850611332933364,0.2844166464074966,0.2871265952137646,0.2873746875241605,0.2882920924471469,0.2920540473534151,0.2989194430975964,0.3037855631319069,0.3073798239675017,0.3086471702082895,0.3129132875857767,0.3166879747311423,0.3181396212402525,0.3223208031753444,0.3226731030321315,0.3254203758654797,0.3382909680908599,0.3369687852576156,0.0,2.066398707946894,48.73027710338039,135.41798712123483,200.76827549989005,fqhc1_80Compliance_implementation,93 -100000,95716,48079,458.4186551882653,4887,49.85582347778846,3922,40.4530068118183,1490,15.263905721091565,77.34880342590687,79.70769148034917,63.338894218876014,65.07769102946918,77.15631350126031,79.51468385344626,63.26582750188423,65.0062103422985,0.1924899246465514,193.0076269029115,0.0730667169917822,71.48068717067702,251.33394,176.06417482276905,262582.9955284383,183944.35081153523,500.18519,333.73257009149773,522066.3316477913,348164.17726364353,477.98465,234.13022928251897,495778.1666597016,241909.66278395933,2747.35663,1295.8187490216128,2839500.2925320743,1323021.5573996557,899.19138,407.35122683378,931015.817627147,417183.9216625365,1444.80754,620.8142006252928,1482377.0320531572,625875.7836146865,0.38138,100000,0,1142427,11935.590705838104,0,0.0,0,0.0,42983,448.52480254085,0,0.0,43181,447.5009402816666,1056698,0,37898,0,0,9995,0,0,86,0.8984913703038155,0,0.0,1,0.0104475740733001,0,0.0,0.04887,0.1281399129477161,0.304890525885001,0.0149,0.3572826938136257,0.6427173061863743,23.07079839368667,4.0334068182160125,0.3092809790922998,0.2840387557368689,0.2049974502804691,0.201682814890362,11.385821882428791,6.215305446529508,16.091735211246128,11482.192389177131,45.045252561398975,13.71736562603181,13.736009026009777,8.969055112843018,8.622822796514372,0.5731769505354412,0.7989228007181328,0.6900247320692497,0.5398009950248757,0.1099873577749683,0.7538586515028433,0.905857740585774,0.8415300546448088,0.7488584474885844,0.1369047619047619,0.4905239687848383,0.7185534591194969,0.6245572609208973,0.4615384615384615,0.102728731942215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004439849166768,0.0071432195220942,0.0095389022643464,0.0116621929396453,0.0138443528274036,0.0160233214755318,0.0181994488108604,0.0203362117418629,0.0224860549613632,0.0244142426665026,0.0265923599564833,0.0286022721431141,0.0306589933390299,0.0325552128570397,0.0346455879313907,0.0366635259523094,0.0389080835434369,0.041100448122771,0.0430324879654906,0.0586478414336139,0.0722000125583439,0.0858266890474192,0.0994666358079889,0.1116302616729773,0.1267625001322205,0.1384762308998302,0.1494730118173107,0.1588179992308021,0.1683132207026012,0.1801171984402266,0.1908558816847161,0.201642196846112,0.2109925200122479,0.2190425894753055,0.2288728102735703,0.2369649718523813,0.24431261749046,0.2513934137786203,0.2582156397832835,0.2643079522701758,0.269827717283243,0.274724884629038,0.2788430444936822,0.2831464219827168,0.2878599480468317,0.2909177211236993,0.2939764544519374,0.2967896130740908,0.2988873526894463,0.2960911132326641,0.2933893950011679,0.2905481456469131,0.2874052688560086,0.2848386809533703,0.2816546157726585,0.2785054111699186,0.2789712210205984,0.2790511545535045,0.2795415717539863,0.2802588151932723,0.2808734791752658,0.2838268697772313,0.2842320879903816,0.2855843347536745,0.2855476647141154,0.2871177489423323,0.291461849149942,0.294376221043818,0.2973602178116245,0.3001995283874478,0.3041193332625544,0.310558221773175,0.3143728555089592,0.3152704733283246,0.3204884989328906,0.3225311012133313,0.327150428047289,0.3268965517241379,0.3271818531334102,0.0,1.9843538163218823,53.779782796858576,140.61756632299551,196.38388302062768,fqhc1_80Compliance_implementation,94 -100000,95635,48458,462.11115177497777,4772,48.62236628849271,3812,39.25341140795734,1398,14.231191509384638,77.26744378178137,79.6817674044303,63.28338998351626,65.06896002993015,77.08560908665287,79.50415778953622,63.21346334009226,65.00321814817141,0.1818346951285008,177.6096148940809,0.0699266434239973,65.74188175873985,250.98128,175.8642679444811,262436.6393056935,183891.1151194449,500.27087,334.66520304369857,522490.625816908,349326.3376835871,487.80854,238.5814648007197,506106.4463846918,246545.57665463584,2681.53606,1277.4200282499894,2761299.0955194226,1293095.998588373,867.50129,406.6566517374175,890176.7658284102,408301.0424119917,1365.17504,595.7655594406992,1390227.7199769958,590364.841864248,0.38154,100000,0,1140824,11928.938150258797,0,0.0,0,0.0,42933,448.29821717990274,0,0.0,44096,457.1757201861243,1052689,0,37783,0,0,10191,0,0,82,0.8469702514769697,0,0.0,1,0.0104564228577403,0,0.0,0.04772,0.1250720763222729,0.2929589270746018,0.01398,0.3669558200524511,0.6330441799475489,22.75850465616804,3.947994649759424,0.305613850996852,0.2901364113326338,0.2012067156348373,0.2030430220356768,11.238476396524812,6.159399261141783,15.150382798695276,11506.901956748205,44.05244178479953,13.684203279769958,13.21155846992998,8.618478564117467,8.538201470982129,0.5941762854144806,0.8028933092224232,0.721030042918455,0.590612777053455,0.1085271317829457,0.7636655948553055,0.9203187250996016,0.895774647887324,0.7616580310880829,0.1185567010309278,0.5120716510903427,0.7052980132450332,0.6444444444444445,0.5331010452961672,0.1051724137931034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0046846481443926,0.0070865821962313,0.0090846272660759,0.0111089634686009,0.0131686153094064,0.015620857719681,0.017774556146566,0.0204705569586601,0.0224472867661365,0.0245525870468181,0.0266363972552081,0.0288145008641264,0.0307776323788523,0.0327411979645131,0.0350260524356959,0.037275250642141,0.039421240554679,0.0415968877747381,0.0436328377504848,0.0583814968489041,0.0734320666973899,0.0869747855035023,0.0997820295471058,0.1125175511755328,0.1282852241682373,0.1391139953055133,0.1498310936817314,0.1593342532276524,0.1690957715316786,0.180724970610757,0.1918514586560648,0.2023878192919256,0.21136316382697,0.2195285750459644,0.2279399545781864,0.2369425472077139,0.2446387182429847,0.2516944245768195,0.2586175284195086,0.2652435141987243,0.2703688975180706,0.2761857415101263,0.2806691449814126,0.284337320108907,0.2888650408910928,0.2920541156151834,0.2950646642165901,0.2984981874676333,0.2997557594560697,0.296902159998922,0.2936782004540139,0.2912600853292781,0.2882687696796371,0.285975392296719,0.2820814908885046,0.2788423501115559,0.2786393933934917,0.2789703226685747,0.2785632879834746,0.2781184564762189,0.2783747481531229,0.2799723959095757,0.2803047177796587,0.2799348097018502,0.2817853336452728,0.2838722475699266,0.288585359754954,0.293930716580528,0.2972919471058674,0.302486881131645,0.3083444414822714,0.3112235219728106,0.3159340659340659,0.3252322417190579,0.3296049500237982,0.3289857296301979,0.3312983312983313,0.3305227655986509,0.325296442687747,0.0,2.3447346805524063,53.92852143148608,132.56934227701237,191.14313005759595,fqhc1_80Compliance_implementation,95 -100000,95843,48362,460.2840061350333,4979,50.94790438529679,3979,40.98369207975543,1479,15.0454388948593,77.40182060844235,79.7151513580216,63.36325590393732,65.07553843192962,77.22088397167629,79.53815997105968,63.295280250648375,65.01148878793624,0.1809366367660629,176.99138696191596,0.067975653288947,64.04964399337132,251.70178,176.4120085211256,262618.6158613566,184063.30678414236,502.62041,334.6159553888129,523855.9101864508,348565.82290893985,486.30199,237.7636742205244,504268.8980937575,245618.8965985971,2822.237,1312.8990049891318,2907749.7052471237,1333382.3745338446,927.97336,417.8458395520333,954285.6129294784,422383.75373275473,1441.69364,604.6817456794317,1468606.095385161,600747.7666032385,0.38218,100000,0,1144099,11937.209811879844,0,0.0,0,0.0,43237,450.5389021629122,0,0.0,43973,455.6722974030445,1055341,0,37916,0,0,9941,0,0,81,0.8451321431925127,0,0.0,0,0.0,0,0.0,0.04979,0.1302789261604479,0.2970475999196625,0.01479,0.3537033455811255,0.6462966544188745,23.11153692566471,3.956186194575043,0.2912792158833878,0.2892686604674541,0.2113596381000251,0.2080924855491329,11.499397684409288,6.482465835218795,15.635173083685784,11486.678705495518,45.52257301545336,14.26703450074372,13.149987167221992,9.25891467773824,8.846636669749389,0.5865795425986429,0.8166811468288445,0.7152717860224331,0.5671819262782402,0.1062801932367149,0.7846655791190864,0.9267822736030829,0.8895348837209303,0.7475728155339806,0.1337579617834395,0.4983654195423174,0.7262658227848101,0.6417177914110429,0.5086614173228347,0.0998509687034277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025111889669697,0.0045302982699733,0.0066144544089599,0.0089277552637191,0.0111832941918036,0.0134573883301437,0.0157162513377159,0.0177076954480506,0.0198910388110351,0.0222206300792204,0.0245095024294237,0.0267687601999445,0.0287194457578685,0.0310225178382051,0.0330558907556958,0.0350895320362467,0.0374809800329161,0.0396196677795981,0.041617764668003,0.0436262215237956,0.0578094364023194,0.0715024931790384,0.0848945890439666,0.0974444082644454,0.1094880517319459,0.1257419259447014,0.1369992161183025,0.1475474305149599,0.1570180025397774,0.1666506003448903,0.1785956270635936,0.1896853524657475,0.1998500879918308,0.2094941549218835,0.2175504550850811,0.2267348542711343,0.2357185071198385,0.2436321125873968,0.2515647677793904,0.2583198910892221,0.2636872283362619,0.2693853704136481,0.2750591016548463,0.2798831375648071,0.2840223761967746,0.2884695861950127,0.2908716026241799,0.2944344247720171,0.297868490105089,0.3002265065318162,0.2982107355864811,0.295933776289056,0.2931569560882447,0.2900467794170565,0.2871301775147929,0.2841163993713091,0.2808948023899232,0.2815440407736539,0.2819697768107566,0.2828675361547333,0.2830631200789233,0.2838081783219527,0.2853431433678347,0.2857871736285188,0.2875505831944775,0.2892054398596165,0.2894981543576883,0.2928296737377496,0.2979666770584364,0.3024751892676421,0.3056006493506493,0.3101522575206786,0.3118453865336658,0.3151045584474199,0.3192215458402508,0.3226483273108754,0.3228144345462781,0.327720986169573,0.3270065075921909,0.3313115996967399,0.0,1.9394095263838036,53.56474260352766,141.58307575548773,203.02344943395968,fqhc1_80Compliance_implementation,96 -100000,95701,48100,459.11745958767415,4879,49.78004409567298,3881,39.99958203153573,1416,14.41991201763827,77.32145341825886,79.70825083111312,63.3143933609397,65.07994396283938,77.14343643278082,79.53350356043158,63.24663658025214,65.01566993137018,0.1780169854780382,174.74727068153584,0.06775678068756,64.2740314691963,252.31888,176.60491672220093,263653.33695572667,184538.21456641093,502.37812,335.2671079536597,524395.4295148432,349777.59684189275,473.61225,231.16394664907415,491587.5487194491,239015.96702874947,2698.45483,1268.686155419499,2782739.9713691603,1288744.4283962543,855.57916,389.7853633653821,883960.33479274,397242.5401671676,1376.92454,587.8736898569828,1404547.6640787453,586517.5553809355,0.38125,100000,0,1146904,11984.242588896668,0,0.0,0,0.0,43249,451.3432461520779,0,0.0,42831,444.2691298941495,1053597,0,37792,0,0,9938,0,0,91,0.9404290446285828,0,0.0,1,0.0104492116069842,0,0.0,0.04879,0.1279737704918032,0.290223406435745,0.01416,0.3524315810198858,0.6475684189801142,23.30467286471053,3.9461089646107377,0.3084256634887915,0.290389074980675,0.2043287812419479,0.1968564802885854,11.598352924901985,6.5202694394180005,15.091797323396992,11478.052261388984,44.69182967964649,13.836662725088312,13.627378480426142,8.811709071829135,8.41607940230289,0.5926307652666838,0.8047914818101154,0.7126148705096074,0.5851197982345523,0.0994764397905759,0.7610544217687075,0.9244060475161988,0.8717948717948718,0.7333333333333333,0.1077844311377245,0.5194085027726433,0.7213855421686747,0.6465721040189125,0.5367892976588629,0.0971524288107202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0044113173106175,0.0068113529316225,0.0090954360219916,0.0112933420153019,0.0135278298427186,0.015633764035204,0.0179089238309168,0.0200676760138623,0.0222019776035375,0.0244007463757714,0.0265357678325699,0.0286390289064911,0.03056345575203,0.0326083590532324,0.0345333857193076,0.0365540386567504,0.0384308027606247,0.040527470698961,0.0425325690463783,0.0571118213532201,0.0700617607034439,0.0837295215305983,0.0966692975532754,0.1085789046096709,0.1242657409269392,0.1357166360616064,0.1470124613909894,0.1574065168371218,0.1674960852871146,0.1786529926315335,0.1902230978231454,0.2008265811082712,0.2100415663968497,0.2189431770684383,0.2285916724788823,0.2373331251463814,0.2456225134302861,0.2524574551308942,0.258096273825196,0.2636933250098263,0.2700978157977772,0.2761072205924103,0.2806477500029944,0.2858183495817499,0.2883301952966368,0.2915765658787795,0.2942536327608983,0.297815725228309,0.3008374150734713,0.2981713625431631,0.2961362794716701,0.2935527350331349,0.2910366081972407,0.2887114219252367,0.2844244137193492,0.278876663456833,0.2789917890673558,0.2792683964270523,0.2816095019647588,0.2821637154105946,0.2821945843828715,0.2827179284031441,0.2837762580472701,0.2849884969325153,0.2857254310456921,0.2863402281844823,0.2910543631521228,0.2955069526937321,0.30004337026377,0.3046444384205295,0.3066194727666543,0.3088013094938303,0.3130428157854639,0.315957247327958,0.3185483870967742,0.322427763338939,0.3303751512706737,0.327431217651866,0.3192702394526795,0.0,2.18631368758803,51.12574486855309,147.63961863791877,192.30997215435167,fqhc1_80Compliance_implementation,97 -100000,95711,48306,461.34718057485554,4768,48.667342311751,3792,39.09686451922977,1416,14.470646007250997,77.3455376358958,79.73195492240067,63.32130932583449,65.08714225176945,77.15693046004158,79.54631583216336,63.24838828452201,65.01790341645724,0.1886071758542158,185.6390902373164,0.0729210413124832,69.23883531220554,251.77152,176.28515317411797,263053.2122744512,184184.2486593736,500.95961,334.887071705976,522849.8918619595,349337.1564697234,480.19618,234.25102986857425,498664.3019088715,242522.44494929136,2628.96806,1246.648519121118,2709427.9967819788,1265383.8673986213,856.35184,395.4134946027749,880409.3991286268,399054.6584417266,1370.18914,596.916447350583,1399692.407351297,594434.6081102131,0.38128,100000,0,1144416,11956.964194293238,0,0.0,0,0.0,43121,449.93783368682807,0,0.0,43363,450.000522405993,1054430,0,37799,0,0,10046,0,0,81,0.8462977087273146,0,0.0,1,0.010448119860831,0,0.0,0.04768,0.1250524548887956,0.296979865771812,0.01416,0.3739951768488746,0.6260048231511254,23.07062007636975,3.9783867176187817,0.3024789029535865,0.2940400843881856,0.2151898734177215,0.1882911392405063,11.16199622569361,6.070257693158305,15.20745763322656,11444.141056773617,43.69922101075964,13.67410478993655,13.017447021249438,9.112684218358812,7.894984981214842,0.5938818565400844,0.7865470852017937,0.7035745422842197,0.5882352941176471,0.1232492997198879,0.7366638441998307,0.907563025210084,0.8354037267080745,0.7073170731707317,0.1348314606741573,0.5292991191114516,0.6964006259780907,0.6521212121212121,0.5482815057283142,0.1194029850746268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188674657291,0.0042902784116841,0.006365805370831,0.0087196894245818,0.0109160087897778,0.0129965369729069,0.0151842711753788,0.0172788823871817,0.0192858311518324,0.0215151763404743,0.0234757191938874,0.0255543800905906,0.0277317753067879,0.0297072552474574,0.0318466079131493,0.0340852700355636,0.0362447947958316,0.0386495490539993,0.040661397670549,0.0425427720007502,0.0572114882506527,0.071859170259974,0.0848350633402953,0.0973590067340067,0.1101031623805404,0.1255064154775379,0.1375951099933144,0.148331984150654,0.1583848275567149,0.1674020160381308,0.1792798620094868,0.1905747026839676,0.2007576582264701,0.2095840492005997,0.2185442856828339,0.2278464180841043,0.2367102311409725,0.2441579190153126,0.251318819698912,0.2573175059238315,0.2635012434214331,0.270067788686302,0.2752884706327437,0.279588295134941,0.283354757342776,0.2866365793971888,0.2900244767470902,0.294042272462003,0.2969862730931984,0.2999382545750732,0.2970965925846492,0.2935926742132855,0.2908568223250596,0.2883298814865953,0.2862590342748193,0.2818782746435969,0.2790723339849909,0.2797838368951117,0.280752532561505,0.2806673908011182,0.2814468641929152,0.2823877651702022,0.2819944366594859,0.2824373079150149,0.2840378397796671,0.2850318057899519,0.2852486892447216,0.2899900024993752,0.2941279029221005,0.2983797847597272,0.3011684034826544,0.3010402437742986,0.306472673008767,0.3101189579882548,0.3157010915197313,0.3151916706105064,0.3169989347131334,0.3194752774974773,0.3211580086580086,0.3246454580298965,0.0,1.900033997824406,51.67182821865906,139.39720827433663,188.6680797085084,fqhc1_80Compliance_implementation,98 -100000,95614,48102,458.959984939444,4885,49.888091702052,3933,40.59029012487711,1530,15.60440939611354,77.23812690061078,79.66959478422652,63.25655152000609,65.05436904698007,77.04165567601181,79.47748009155487,63.181597716256086,64.98426460756926,0.1964712245989659,192.1146926716517,0.0749538037500059,70.10443941081235,251.8362,176.43467393069335,263388.41592235444,184528.0753139638,499.62428,333.444433618413,521982.8790762859,348180.0401807401,477.92934,233.43530643681396,497127.4604137469,242058.5717428397,2788.97483,1305.6556543730153,2877885.895370971,1326523.9864172768,912.44175,410.2155041366226,942470.7365030224,417206.39669569576,1490.55938,632.4882819499813,1521544.0416675382,628561.6543448927,0.38003,100000,0,1144710,11972.200723743385,0,0.0,0,0.0,42955,448.6686050160018,0,0.0,43117,448.17704520258536,1049629,0,37638,0,0,10003,0,0,100,1.0458719434392452,0,0.0,0,0.0,0,0.0,0.04885,0.1285424834881456,0.3132036847492323,0.0153,0.3608592826172644,0.6391407173827355,23.095628436865294,4.03978199033935,0.3010424612255276,0.2862954487668446,0.2011187388761759,0.2115433511314518,11.109469954576127,5.977384066738102,16.213428377548425,11450.520280272514,45.07008737169346,13.807767591629094,13.469702470661836,8.783917204303934,9.008700105098594,0.5809814391050089,0.8063943161634103,0.7027027027027027,0.5638432364096081,0.1189903846153846,0.7697536108751062,0.940552016985138,0.8481375358166189,0.7554347826086957,0.1618497109826589,0.5003628447024674,0.7099236641221374,0.6419161676646706,0.5057660626029654,0.1077389984825493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097859575158,0.0044425060602679,0.0067419381041345,0.0090157852474512,0.0112766650382673,0.0134376560000815,0.0158702636544443,0.0182037347280676,0.0204058670703516,0.0228713652146303,0.025075925469917,0.0271158924406358,0.0289413556740289,0.0308247422680412,0.0326954653888653,0.0347157550547381,0.036813568459138,0.0390189173185402,0.0410368519675203,0.0430663940241205,0.0572202241552358,0.0712227124576866,0.0846650906225374,0.0972835188910774,0.1095913560557251,0.1248755270238776,0.1364167622933401,0.1470635267528757,0.1570679507758159,0.1664804469273743,0.1794254758924332,0.1897796764540052,0.1995466582391595,0.2086104688749849,0.2180515759312321,0.2270452603663881,0.236463890659777,0.2446556622919767,0.252166101926182,0.2592039858108806,0.2636560836126996,0.2695057907816383,0.2745311999620453,0.2786382917362621,0.2830032400302078,0.2861237398695394,0.2896532691053239,0.2929653624445238,0.2972453721733261,0.2998254522373849,0.2970158113431547,0.2941573839197088,0.2909516490644256,0.2880397036694062,0.2857503864906647,0.2829746136865342,0.2788191858530479,0.2796838542180157,0.2807785721615982,0.2798835901372993,0.2809236872637449,0.2823301814161912,0.2838873074346952,0.284309782365822,0.2838168892304736,0.2850636337610285,0.2856288278023073,0.289458814665997,0.2929434424794256,0.2967856438572274,0.3009126821958861,0.3037667071688943,0.3078558919189392,0.3102978980795403,0.3135261194029851,0.3150861563708826,0.3137490608564989,0.3184523809523809,0.3237449118046133,0.3255287009063444,0.0,2.062350531250871,51.29630809931344,141.60094587505554,206.0639118550824,fqhc1_80Compliance_implementation,99 -100000,95722,48285,459.77936106642153,4771,48.60951505401057,3855,39.70873989260567,1472,15.043563653078708,77.33641368994157,79.71143872516363,63.332022412709286,65.08945005143086,77.1419546637021,79.51797044477884,63.257784484587575,65.01743608932374,0.1944590262394712,193.468280384792,0.0742379281217111,72.01396210712119,252.51072,176.95931514219956,263795.21948977245,184867.3561649732,504.30027,336.96061195660025,526274.5763774264,351459.373165896,481.79379,235.6720756022792,499649.9759720858,243376.08448000372,2203.85588,1049.952073577103,2272550.1347652576,1067355.5812425548,892.81832,410.0343971988611,918389.6596393724,414381.3464963896,1435.00314,623.0606175528967,1468616.159294624,626017.8250196549,0.38087,100000,0,1147776,11990.691794989658,0,0.0,0,0.0,43435,453.166461210589,0,0.0,43566,451.4113787843965,1048051,0,37652,0,0,10101,0,0,91,0.9402227283174192,0,0.0,1,0.0104469192035268,0,0.0,0.04771,0.125265838737627,0.3085307063508698,0.01472,0.3695826645264847,0.6304173354735152,22.883564949322192,4.087661990542972,0.3125810635538262,0.2843060959792477,0.1940337224383917,0.2090791180285343,11.238787968885951,5.947470381012472,15.830362170427655,11448.905079895178,44.493236766489694,13.587746851356252,13.745794335483014,8.28414918656781,8.875546393082614,0.5870298313878081,0.8166058394160584,0.6979253112033195,0.5935828877005348,0.1029776674937965,0.7482817869415808,0.9317180616740088,0.8411764705882353,0.7578947368421053,0.1,0.5172798216276477,0.735202492211838,0.6416184971098265,0.5376344086021505,0.1038338658146964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026144055773985,0.005010192801144,0.0072287933397634,0.0094824782502642,0.0117900776171632,0.0138716313934776,0.0158374040118704,0.0180722891566265,0.0207129931604183,0.0228794300104416,0.0251242888626928,0.0273810868248411,0.029472255357657,0.0316101721101257,0.0337931959592624,0.0357630131889031,0.0377932862556689,0.0400336120505425,0.0419044055747825,0.0439252531144535,0.0585888961981434,0.0724927287564604,0.0853475666663171,0.097959655632759,0.1105290893760539,0.1255376940718898,0.1369404132170078,0.1477278769767417,0.1569688624160715,0.1662684680244704,0.1786802139728121,0.1899374878328394,0.2003521050229303,0.2101750092857611,0.2187238999516462,0.2277401804670913,0.2362031888934695,0.2441759847165252,0.2514198265601088,0.2577195791399817,0.263542244407469,0.2689307235950857,0.2739279385705848,0.2788374096587374,0.2824001649264501,0.2865489163858207,0.29010379585566,0.2930784861569723,0.2961258547809563,0.2995662663309296,0.2962414915655519,0.292504369125762,0.2890831784648308,0.2858587317636862,0.2829507466012926,0.2797434052390649,0.2767775211214125,0.2765130391996063,0.2771900488004641,0.2781551407534186,0.2793526806570366,0.2798928564394461,0.2802801342309857,0.2817840396453254,0.2825473502965372,0.2834119293154376,0.2832949079213275,0.2887255363930512,0.2915105898827236,0.2961715282181357,0.3001917282936182,0.3049001814882032,0.3052196053469128,0.31146408839779,0.3146014355874575,0.3209402734468697,0.3249730727804277,0.3232610018251876,0.3294245977638396,0.3360933383515243,0.0,2.117383524115194,50.572853613501,148.0449098271679,191.69646794671095,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95619,48350,460.11775902278833,4831,49.44623976406363,3806,39.312270573839925,1394,14.223114652945544,77.26635035352784,79.70330533885681,63.26822878755484,65.07155308954887,77.08698360125322,79.52895043057833,63.20014624790043,65.0081518602154,0.1793667522746176,174.35490827847389,0.0680825396544122,63.401229333464926,251.97194,176.49513374516692,263516.3722691097,184581.4461112404,499.75016,333.5941378423948,522158.5145211726,348390.51262263214,483.22519,236.6096699801845,502591.0436210377,245272.57740693836,2173.38248,1032.6257305655824,2246658.3001286355,1053708.2715418302,855.44277,388.921603630891,882258.8188539934,394362.933758866,1352.1952,577.6757329997213,1381438.1451385184,574404.7409219005,0.38102,100000,0,1145327,11978.016921323167,0,0.0,0,0.0,43062,449.8373754170197,0,0.0,43543,452.640165657453,1049739,0,37705,0,0,9990,0,0,90,0.9412355285037493,0,0.0,0,0.0,0,0.0,0.04831,0.1267912445540916,0.2885530945973918,0.01394,0.3573275004971167,0.6426724995028833,22.912496823438183,3.9493727475918514,0.3097740409879138,0.2926957435627956,0.2028376248029427,0.1946925906463478,11.195133835564931,6.085504390609334,15.03260605583286,11440.638413325976,43.92216600050222,13.856433329131558,13.334993851030903,8.650027902255065,8.080710918084694,0.5880189174986863,0.8132854578096947,0.6997455470737913,0.5595854922279793,0.1012145748987854,0.7721843003412969,0.917864476386037,0.8699690402476781,0.7259615384615384,0.1688311688311688,0.5060744115413819,0.7320574162679426,0.6355140186915887,0.4982269503546099,0.0834752981260647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.0047983768704032,0.0071902261671422,0.0094253294289897,0.0116548930192789,0.0138711945942089,0.0163291966035271,0.0186689555807608,0.0207804698371122,0.0231273696075417,0.0253191838745432,0.0274454175403971,0.0297305922441038,0.0318705792588621,0.0343239027816512,0.0363717262859448,0.0386206038744985,0.0405795596177814,0.0424646128226477,0.0445960180636817,0.059423744406808,0.073418145997946,0.0859969958298757,0.0991678955129555,0.1115852177311181,0.1271833656402597,0.1383433235556689,0.1488363163171704,0.1584078941735519,0.1674007864033862,0.1792208632627968,0.1889009321482766,0.1986692946826235,0.2083666516962241,0.2162993167291161,0.2254866078855431,0.2339524857311992,0.2423133647816444,0.25,0.2566216433141468,0.2627002871167917,0.2674275680421422,0.2730522901350759,0.2775614373524724,0.2817298347910593,0.2855416635841286,0.2889178258855347,0.2917234094004149,0.2955722423614707,0.2989742372702582,0.2964342878663564,0.2934984264845328,0.2910986367281475,0.2875402126401131,0.2846224623055918,0.2805433321109888,0.2761823523836603,0.2762897069183008,0.2756206021160956,0.2757140057369893,0.2754704979982789,0.2774621212121212,0.2797508309120174,0.2805554936358975,0.2819270171061155,0.2820612769938411,0.2832798432219034,0.289279779261907,0.2939510489510489,0.2958537743313815,0.3011638965626557,0.3057873059457176,0.3124646426551009,0.3167556993454217,0.3170438799076212,0.31885236380532,0.3232732732732732,0.3287752675386444,0.327692720923986,0.3303736588975213,0.0,1.912536446150788,51.18635726765373,142.00275443694144,190.29013029673308,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95711,47431,453.1767508436857,4789,48.95988966785427,3785,39.02372768020395,1403,14.272131729895206,77.34534288058313,79.71235759889004,63.32656324425341,65.0737246523815,77.16551971078297,79.53689952280723,63.25892396931029,65.01013050738167,0.1798231698001586,175.45807608280484,0.0676392749431187,63.59414499982563,252.92454,177.04834898212002,264258.5909665556,184982.23713274332,497.09965,331.5286676565051,518884.5169311783,345893.97003114066,469.36107,228.9843133025076,487048.60465359257,236698.3863416959,2157.47484,1021.3840905797828,2226927.688562443,1039926.4562900644,873.00698,392.9903022107229,898270.7525780736,396743.5741040453,1361.64654,577.3926184574628,1387950.5594968186,575360.3462312919,0.37767,100000,0,1149657,12011.754134843435,0,0.0,0,0.0,42870,447.37804432092446,0,0.0,42373,439.36433638766704,1052516,0,37795,0,0,10051,0,0,97,1.0134676265006113,0,0.0,0,0.0,0,0.0,0.04789,0.1268038234437472,0.2929630403006891,0.01403,0.3726981585268215,0.6273018414731786,22.935282756974328,3.96920901071244,0.3099075297225891,0.2879788639365918,0.2047556142668428,0.1973579920739762,11.38406321518764,6.323844867776222,15.032469260409115,11320.833079479244,43.77081784139357,13.676474844753413,13.452938433234705,8.565436923176671,8.07596764022878,0.5973579920739762,0.8027522935779816,0.7237851662404092,0.584516129032258,0.1124497991967871,0.7832764505119454,0.904950495049505,0.9136904761904762,0.723404255319149,0.1258741258741259,0.5139686184462304,0.7145299145299145,0.6475507765830346,0.5400340715502555,0.1092715231788079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0044594895911458,0.0065845541982874,0.0086532602071907,0.010982529642661,0.0130219204023661,0.0151983119782269,0.0172718271184018,0.0192793253258369,0.0213841885985116,0.0234253260067251,0.0255396496128488,0.0275869162723719,0.0296908321056589,0.0316205533596837,0.0334408402075709,0.0355019780857101,0.0373806558738065,0.0394792933861526,0.0414760470617659,0.0563243480349664,0.0702496205976241,0.0834951048804289,0.0957987437265237,0.1080533513422252,0.1236770806874947,0.1346547898374545,0.1454895987558983,0.1554911935704514,0.1650435454116435,0.176968743602728,0.1882870104700137,0.1994994831619607,0.2094069484883644,0.2184516796776076,0.2267281412437518,0.2348635318797563,0.2423795919285537,0.2496028323725659,0.2560514805230494,0.2620245405867999,0.2674216129673129,0.2721660457690261,0.2771159349145723,0.2814313111450974,0.2843069648310511,0.2880417114706544,0.2916910028187612,0.2947288065417658,0.2974623440343981,0.2941960319810482,0.291231158543294,0.2884525940437767,0.2857246031402117,0.2834489005033482,0.2791803654713663,0.2750386667087529,0.2745409055974359,0.2743072662713851,0.2740864377286125,0.2748975791433892,0.2762101129111438,0.2766001749052597,0.2784060552092609,0.2786032689450223,0.2801088505896074,0.2800180602195445,0.2836229136232244,0.2888950544496081,0.2924871784833418,0.2948203579317495,0.2982087513788937,0.3011575802837938,0.3056330593469572,0.3078854379765668,0.3125584658559401,0.3136486893642663,0.3196966673318699,0.3201086956521739,0.334106728538283,0.0,2.0719867583445604,51.2448034115291,143.73047551358155,184.6661020644534,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95659,48039,459.162232513407,4874,49.67645490753614,3870,39.83942964070291,1428,14.56214261073187,77.2498286400838,79.64898376167152,63.26585613190741,65.03910565532223,77.06522005422929,79.46779748673805,63.195988840277806,64.97261324493729,0.1846085858545194,181.1862749334665,0.0698672916296061,66.4924103849387,251.3236,176.0894956183553,262728.65072810714,184080.42695235717,500.28997,334.03484559136456,522308.2093686951,348508.43683434336,475.21057,232.9122619600261,492687.3477665458,240302.8874710645,2177.4932,1034.5141275532364,2244798.0012335484,1049950.60323988,847.81971,389.14534791326287,873513.3129135785,394033.5859707941,1380.3121,592.6545498478741,1409942.5250107152,592359.8299504861,0.38053,100000,0,1142380,11942.211396732142,0,0.0,0,0.0,43105,449.9628890120114,0,0.0,43039,445.8440920352502,1049161,0,37690,0,0,9931,0,0,61,0.6272279660042442,0,0.0,1,0.010453799433404,0,0.0,0.04874,0.1280845137045699,0.2929831760361099,0.01428,0.3546294476115589,0.6453705523884411,23.125141974684045,3.9683583905824578,0.3080103359173126,0.2987080103359173,0.2015503875968992,0.1917312661498708,11.387066102289202,6.225911546240966,15.431683504977151,11462.117842543328,44.64527232388024,14.405084382762452,13.578240548054762,8.73716277642632,7.92478461663669,0.5919896640826874,0.8070934256055363,0.7030201342281879,0.5705128205128205,0.1010781671159029,0.7720291026677445,0.900763358778626,0.861271676300578,0.7557603686635944,0.14,0.5074060007595899,0.7294303797468354,0.6382978723404256,0.4991119005328597,0.0912162162162162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488755622188,0.0046244181447564,0.0066990793840907,0.0087888640520219,0.0108126252403088,0.0129957427739188,0.0151527511522616,0.0170214938479603,0.0191859275925547,0.0212001106092727,0.0233555229606228,0.0255675398048279,0.0280290168235838,0.0298282863680402,0.0318610749757376,0.0341817580076327,0.0363400860059064,0.0382790519004557,0.0403042062443429,0.0423530883763606,0.0571727092257862,0.0708937640714173,0.0845760701879584,0.097860968193344,0.1103888566453859,0.1266204561087888,0.137305286853478,0.1478103356419819,0.1579617289364751,0.1678768609422329,0.1793250765977646,0.1913276370575989,0.2018382633535767,0.2112784181261858,0.2199205385719015,0.229227538856362,0.2374711820399758,0.2451644918628125,0.2534052504011197,0.2597272800376799,0.2662076812334556,0.2709028136596364,0.2761431695028044,0.2801043971904166,0.2835837262857769,0.2870122003980271,0.2902930288009036,0.2937864647831582,0.2980988988157074,0.3011007329399624,0.297506715803399,0.2941460254448717,0.2904468847923665,0.2881262670141906,0.2850298332018986,0.2813294142861516,0.2774930397367755,0.2782464548319328,0.278595580450152,0.2785945231417802,0.279356930053027,0.2809283950617284,0.2814119712422672,0.2812269609704877,0.2820839238104388,0.2834404811281626,0.2845751449172911,0.2883191237787043,0.2934944948074051,0.2976298101489721,0.3012892502582993,0.3044523411371237,0.3086419753086419,0.3096614368290669,0.3171565908670734,0.322599395489421,0.3251763999399489,0.3291266025641026,0.3328837334772053,0.339531424321309,0.0,2.3520784397642065,54.01915591722664,135.91807234875276,194.4602389185692,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95736,47979,458.05130776301496,4787,48.76953288209242,3799,39.00309183588201,1421,14.404194869223698,77.32698317968122,79.68530976938841,63.31555014592704,65.06054525799566,77.1389285174521,79.50311604537517,63.24375710501867,64.99371409987603,0.1880546622291206,182.19372401324563,0.0717930409083678,66.83115811962637,252.46738,176.8715385136211,263711.6027408708,184748.80684962936,500.71904,334.1071560433248,522330.6488677196,348298.9776421255,473.8959,231.23894201204683,490082.8946268906,237898.16416606607,2148.16812,1028.8387949007465,2205265.396507061,1036166.684076478,873.98847,406.8360638510789,894044.1944514081,406169.0082463466,1375.14398,593.9759006357765,1394998.286955795,586443.1442696282,0.38003,100000,0,1147579,11986.891033675942,0,0.0,0,0.0,43125,449.7472215258628,0,0.0,42897,443.2292972340603,1050048,0,37656,0,0,9900,0,0,73,0.7625135790089412,0,0.0,0,0.0,0,0.0,0.04787,0.1259637397047601,0.2968456235638186,0.01421,0.3575879396984924,0.6424120603015075,22.971963520950464,3.955191816494008,0.3063964201105554,0.2953408791787312,0.202684917083443,0.1955777836272703,11.587037514765871,6.604489583336147,15.338293662250669,11360.35255009509,43.9369587247984,13.888616081354636,13.298167355128582,8.57026271123199,8.17991257708319,0.6046327981047644,0.8119429590017825,0.7190721649484536,0.5857142857142857,0.1318977119784656,0.7520729684908789,0.8831967213114754,0.8847262247838616,0.7384615384615385,0.1420454545454545,0.5360586193598149,0.7570977917981072,0.6487148102815178,0.5339130434782609,0.128747795414462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020161086064535,0.004258684674819,0.0064449992895276,0.0086150845253576,0.0109941520467836,0.0134820019347283,0.0155300403801443,0.0176796031276157,0.01982748047913,0.0219035629113315,0.0238288015906365,0.0261761294229959,0.0281238435919575,0.0302942933047758,0.0320920156798019,0.0339856989336199,0.0361738914369131,0.0381419665363111,0.0402336482595907,0.0422144896130685,0.0567619485102207,0.0709107077470314,0.0838558158065801,0.0973791827423441,0.1093964117808277,0.1248136517905287,0.1359818436346667,0.146282258751384,0.1561671654553227,0.1658545485768256,0.1776733457645752,0.1893018822968787,0.1998346046288941,0.2084482079558881,0.2165178817132101,0.2254142421723469,0.2340995911802158,0.2421590819509668,0.2498637045113806,0.2562421936770216,0.2626150373328703,0.2687038988408851,0.2729049915287371,0.2777051265131792,0.2816416839904203,0.2852088367276493,0.2878913097921362,0.2917149294197014,0.2945458313365368,0.2981586028597056,0.2954083760476786,0.2924703391578108,0.2890461252795791,0.2858359680656012,0.2828332294541893,0.2784715208275946,0.2751288456066019,0.2755628325828899,0.2762920314788948,0.2758185726721978,0.2763128449947785,0.2776640957028176,0.278548737669286,0.2776887464387464,0.2794906166219839,0.2800871866728943,0.2828505903338146,0.2870919418263529,0.2927584646970804,0.2961638235987737,0.3024177209490792,0.3072241750170505,0.3107151725850509,0.3147135904155747,0.3147480351363846,0.3154831199068684,0.3203313253012048,0.3181183974486745,0.3217415115005476,0.3213603362628964,0.0,2.5315037979379755,52.30508301708603,138.79889414784049,187.0617718000242,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95762,48388,461.6653787514881,4807,49.06956830475554,3832,39.47285979824983,1412,14.40028403750966,77.39144353273707,79.72977091225538,63.36142006586866,65.08699221531354,77.20986989330358,79.5523279972018,63.29212301577706,65.02205924892151,0.1815736394334948,177.44291505357523,0.069297050091599,64.9329663920355,252.81454,177.07129892691904,264002.98657087365,184907.68668878992,501.57646,334.8707307033852,523229.4438294939,349146.68839146907,480.5388,234.46344479189656,498509.65936383954,242317.88683979743,2192.43788,1035.2495900020965,2260517.6583613544,1052458.041347755,887.53857,405.5026708910365,911541.3316346776,408522.37092858815,1382.4035,589.9248725078291,1411804.1603141122,587756.0544612549,0.38171,100000,0,1149157,12000.135753221528,0,0.0,0,0.0,43143,449.9488314780393,0,0.0,43472,450.6484826966855,1051487,0,37701,0,0,9965,0,0,89,0.929387439694242,0,0.0,0,0.0,0,0.0,0.04807,0.125933300149328,0.2937382983149573,0.01412,0.3621103117505995,0.6378896882494005,22.95926378108064,3.909217548730425,0.301670146137787,0.2912317327766179,0.2027661795407098,0.2043319415448851,11.1747367432664,6.026903380481068,15.002328454453425,11504.38666669431,43.860662844193214,13.757981389008464,13.05696399334271,8.657023174422468,8.388694287419566,0.5965553235908142,0.8378136200716846,0.7050173010380623,0.5714285714285714,0.1174968071519795,0.7617391304347826,0.9438444924406048,0.8421052631578947,0.7070707070707071,0.1626506024096385,0.5257270693512305,0.7626339969372129,0.6518607442977191,0.5250431778929189,0.1053484602917342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021565689292078,0.0041853724778823,0.0066658549948255,0.008683641238663,0.010950574981444,0.0132114648644247,0.0151314448746688,0.017344460995368,0.0197468561329669,0.0219468773021199,0.0240061475409836,0.0262434340118187,0.0286063645050913,0.0305678204217741,0.0325340700575222,0.0345333402200299,0.0366276482338208,0.0389346387603974,0.0409450946965759,0.0427205300220842,0.0573474457735746,0.0710167522941539,0.084219802354126,0.0971962223671202,0.1091967354857757,0.1251321856097458,0.1361409239384041,0.147051939485499,0.1571106673358892,0.1664022638597093,0.1788962681506517,0.1901028430534978,0.2010802234345454,0.2107879012966017,0.2198931586352444,0.229414237978269,0.2380623300191716,0.2464982533388747,0.254032303768773,0.2605626551649181,0.2664732937342547,0.2719932696914107,0.2777245806291449,0.280940579241646,0.2835800987061491,0.2875610386096112,0.2908866102986174,0.2947567732425151,0.2986041101202016,0.3017124504758269,0.2994550481866259,0.2958824094006664,0.2934126694546577,0.2910678578107692,0.2874231133191389,0.2839686525146466,0.2799798586961652,0.280449423544184,0.2805043614024369,0.2807736669328365,0.2825045216386045,0.2840285562570063,0.2850531582238899,0.2856824760632376,0.2867414437733678,0.2867078424248715,0.2879087925766663,0.2924953095684803,0.2969072164948453,0.3013390212110439,0.3063704375425073,0.3094960829980944,0.3126058856748447,0.3169237749546279,0.3231826199981432,0.3228887594641817,0.3282181168057211,0.330429617897446,0.3332442544094067,0.3406716417910447,0.0,2.1121603904960957,49.902861223726056,142.06399779239354,194.09731106454024,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95718,48205,459.6732067113813,4728,48.05783656156627,3776,38.75968992248062,1443,14.636745439729204,77.37264048070351,79.73197530652146,63.34029949113111,65.08165945799655,77.18527931369219,79.54808020914429,63.26884980386966,65.01415966533416,0.1873611670113177,183.8950973771745,0.071449687261456,67.49979266238881,253.36938,177.53256529246576,264704.0055162038,185474.5871126285,501.82612,334.772454762638,523601.73635052965,349074.8289377526,480.24637,234.97966505180213,496785.5157859546,241836.6722039539,2142.72324,1025.2163627814457,2200432.3115819385,1032983.2662419257,844.61037,386.7365023099389,866576.0463026807,388218.9267535251,1393.58154,601.5846392833353,1415151.9045529575,595091.3420243458,0.37917,100000,0,1151679,12032.00025073654,0,0.0,0,0.0,43134,449.9258237740028,0,0.0,43387,448.40050983096177,1045849,0,37534,0,0,9908,0,0,94,0.9716040870055788,0,0.0,0,0.0,0,0.0,0.04728,0.1246934092887095,0.3052030456852792,0.01443,0.3567951318458418,0.6432048681541582,23.206373718871696,3.982615795961291,0.3064088983050847,0.2915783898305085,0.2063029661016949,0.1957097457627118,11.325866112993491,6.23076644540656,15.45354264675575,11416.315731155964,43.479027072052624,13.752123267700888,13.119328142366426,8.482698336383326,8.12487732560199,0.5892478813559322,0.8228882833787466,0.7026793431287813,0.5442875481386393,0.1109607577807848,0.7449832775919732,0.9087301587301588,0.879154078549849,0.6721311475409836,0.1067415730337078,0.5170542635658915,0.7504187604690117,0.6319612590799032,0.5050335570469798,0.1122994652406417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0046111904979072,0.006989460016028,0.0091099285017874,0.0114998627337339,0.0138546735346214,0.0162786430726575,0.0183928225123248,0.0205051671794662,0.022387143003378,0.0244425078177064,0.0267348384513506,0.028996832970016,0.0309165808444902,0.0331483162759986,0.0351096595489592,0.0369511424932962,0.0389374656418873,0.0411062839087866,0.0430471508472987,0.0580655939689467,0.0720317257688162,0.0854434693257001,0.0982005843896491,0.1107081866289979,0.125824663790916,0.1371186728329585,0.1475565110042143,0.1580785373303288,0.1668096606752177,0.1785333491292501,0.1902185674096516,0.2006699876008788,0.2099788916474358,0.2185106944811196,0.227735495806884,0.235621728406085,0.2433664681579214,0.2506928039251317,0.2568103645952763,0.2627741450147561,0.2682119205298013,0.2726605069888652,0.2764908408210271,0.2808827639845905,0.2849887828809506,0.2884331439725718,0.2915676431340154,0.2952335385092846,0.2987747035573122,0.2955052555176214,0.2923962152734863,0.2900418904101886,0.2870369035086454,0.284405030252699,0.2811669060790366,0.2776681869111683,0.2769520379767556,0.2769599510437207,0.2765644128240158,0.276691897119265,0.2784758021835858,0.279417273673257,0.2794854734974495,0.2808410212400772,0.280910475109035,0.2806053432532973,0.2851688601936926,0.2893525727533825,0.2958268330733229,0.302221426012182,0.3064853556485356,0.3078790141896938,0.3094809480948094,0.3161248614702623,0.3199112978524743,0.3209932279909706,0.3209654897267106,0.3197297297297297,0.3339580209895052,0.0,2.6485442035079294,51.62629734454001,137.1395390868476,185.3218681350638,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95732,48149,459.0941378013621,4903,49.84749091212969,3879,39.82994192119668,1448,14.64505076672377,77.33281654085012,79.69961310778393,63.319784280511655,65.07138612984339,77.13988098871717,79.51344731557275,63.24619829186754,65.00396564239985,0.1929355521329512,186.16579221118457,0.0735859886441119,67.42048744354179,252.09074,176.56760573028043,263329.6494380145,184439.48285868927,496.00286,331.6252835636748,517397.2757280742,345691.2877237234,476.79073,233.32388448821533,494126.6661095559,240714.37771384988,2226.45728,1059.6533730990736,2286995.0277859024,1068171.7430943411,894.02321,408.59558675185497,916958.968787866,409894.1694779245,1397.2192,605.6721097663346,1413848.6399532028,591828.8022909075,0.38063,100000,0,1145867,11969.529519909747,0,0.0,0,0.0,42830,446.6636025571387,0,0.0,43122,446.5382526219028,1053757,0,37812,0,0,9915,0,0,72,0.7520996114152008,0,0.0,1,0.0104458279363222,0,0.0,0.04903,0.1288127577962851,0.2953293901692841,0.01448,0.3681631052734758,0.6318368947265242,23.03851808334229,4.057613237666086,0.31425625161124,0.2812580562000515,0.2062387213199278,0.1982469708687806,11.556890360138604,6.427045573782764,15.64479125172309,11457.546888422909,44.60134057732245,13.411260448157662,13.906954936971976,8.92518971704043,8.357935475152383,0.5962877030162413,0.8047662694775435,0.7169811320754716,0.5775,0.1287386215864759,0.78125,0.9373695198329852,0.875,0.7281553398058253,0.1963190184049079,0.5150278293135436,0.7009803921568627,0.6568516421291053,0.5252525252525253,0.1105610561056105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0047366445893724,0.0072190070057873,0.0094632093595308,0.0117812232938591,0.0138628585397653,0.0160107690268103,0.0181827462991322,0.0204801537800862,0.0223835512640665,0.0247493284668539,0.0267073283430366,0.0288513937300142,0.0309580943161103,0.0330891456871646,0.0350409327710245,0.0370776974542742,0.0392303381281524,0.0412095625318456,0.0430162417827414,0.0573072184752876,0.0715466549479984,0.0851231175804354,0.0979256253088431,0.1103111692035248,0.1261222202248141,0.1373692806991494,0.148127647797671,0.1580234781401211,0.1667542551936421,0.1780445784429848,0.1894245958754409,0.1999477971484192,0.2097350841323814,0.2179202323074553,0.2272123305872973,0.2351175531974246,0.2429500596403574,0.2508142213547281,0.2576194728767374,0.2636037495660224,0.2691447899720274,0.2749579593093484,0.2793225783253829,0.2830207017202838,0.2865174773441835,0.2894160355511047,0.2926863393538539,0.2969595732007355,0.2997782646569701,0.2979622600877547,0.2946596801034231,0.2913921270484879,0.2873868541483203,0.2854108490285782,0.2828875942321513,0.2795765189223355,0.2798748833172297,0.2798780695480399,0.280494529929734,0.2806935682556273,0.2817542407943731,0.2824581890978854,0.2817627962822964,0.2841863469959084,0.2847692427426259,0.2854954034729315,0.2877123814887825,0.2919560286162973,0.2972001737550843,0.3019636232015202,0.3078100263852242,0.3099207092464257,0.3110793316272768,0.3174191156021136,0.325312463497255,0.3313307299489336,0.3379749353491147,0.3408290436196153,0.3458049886621315,0.0,2.6919265707688744,50.850881617164845,143.04943746538166,196.2930588236713,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95779,48176,458.20064941166646,4913,50.03184414120005,3897,40.09229580597,1528,15.525323922780569,77.34910350822409,79.67575192820502,63.34642956891118,65.0658632125515,77.1462320926913,79.47811973461074,63.26849837328581,64.99253158624526,0.2028714155327833,197.63219359427356,0.0779311956253678,73.33162630624201,251.75832,176.2686613472494,262852.9009490598,184036.4441002425,500.9477,334.0679704595992,522362.5533780892,348129.49246616894,474.59123,232.07502801392968,491645.50684388017,239415.5812513632,2249.53244,1067.984500072164,2315517.430752044,1081994.2428133143,907.47504,411.2043151597473,932199.9603253324,414302.7687347169,1486.88048,646.9848295102648,1513134.5702085008,643900.4881955677,0.38088,100000,0,1144356,11947.859134048174,0,0.0,0,0.0,43055,448.9084246024703,0,0.0,42806,443.0720721661325,1057136,0,37999,0,0,9995,0,0,99,1.0231887992148592,0,0.0,1,0.0104407020328046,0,0.0,0.04913,0.1289907582440663,0.3110116018725829,0.01528,0.3707383596337424,0.6292616403662575,23.30308815187534,4.010150627242539,0.3169104439312291,0.2640492686682063,0.2073389787015653,0.2117013086989992,11.19405807164957,6.158609029389198,16.47112538847986,11518.765334877318,44.7923971089009,12.575206363510809,14.204331635298283,8.973196379098683,9.039662730993124,0.5789068514241724,0.8163265306122449,0.691497975708502,0.573019801980198,0.12,0.7416309012875536,0.9135514018691588,0.8373983739837398,0.71875,0.1477272727272727,0.5095168374816984,0.7470881863560732,0.6293302540415704,0.5275974025974026,0.1124807395993836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759073233959,0.0041760001621747,0.0065840865974779,0.0087759392997531,0.011306788140074,0.0133046948165641,0.015583277278379,0.0177374087870592,0.0204354800805157,0.0226514701970493,0.0250586511766091,0.0271110609434485,0.0291763013205898,0.0314645367806745,0.0336625701088749,0.0357677728545017,0.0379027751909107,0.0400045624695403,0.0418861768342737,0.0439468888310335,0.0588284405297377,0.0732791532000795,0.0867882982069833,0.0991349862838043,0.110964736631326,0.1261955338554051,0.1383550462702863,0.1485381236505961,0.1584975343167602,0.1676096181046676,0.1798815931108719,0.190655418559377,0.2015267839665934,0.2106178429635462,0.2185151358429525,0.2281749108388897,0.2366071428571428,0.2442657971666292,0.2525071470708354,0.2588938235428781,0.265224933502949,0.2703091553496859,0.2749958586743025,0.2791839863917871,0.2836455007829475,0.2879515993888314,0.2915400107579339,0.2957097976367637,0.298198583213541,0.3007166519288891,0.2977932761568806,0.2944364957076821,0.2928792569659442,0.2897007474100366,0.2876840279322154,0.2842631064401809,0.2804546889801073,0.280459657221431,0.2809696474473554,0.2813573806683639,0.2816648927230967,0.2831956140177885,0.2838052284306356,0.2839552987887845,0.2851447099795844,0.2866071196062602,0.2882254066835703,0.2936455481068832,0.2973399775407074,0.3018388339489257,0.3060899622504207,0.3087191439771162,0.3128120852032109,0.3165231964653005,0.3172205438066465,0.3205020920502092,0.3294735216921414,0.3336035670855289,0.3370879120879121,0.3498439937597504,0.0,2.27686841808218,50.42824683661971,145.33694603335664,199.67380703511344,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95687,48191,460.18790431302057,4846,49.69327076823393,3904,40.433914742859535,1493,15.352137698955971,77.31532774038504,79.7073221738395,63.31028192710126,65.07622614882514,77.12808546201845,79.518392258964,63.23947927802382,65.00623842318316,0.1872422783665968,188.92991487550148,0.0708026490774358,69.98772564197964,251.5898,176.23168123333957,262929.9695883453,184175.1556986211,502.3958,334.73718782890194,524676.9153594532,349461.25161087915,479.32877,233.66257571445104,498311.2230501531,242159.813634784,2214.54672,1051.7185745656102,2294757.32335636,1079515.8115163087,917.2684,420.4555204441477,947132.5362901962,427926.2913918791,1446.8985,618.1036500729576,1489178.3627870034,628077.4670050448,0.3814,100000,0,1143590,11951.362254015698,0,0.0,0,0.0,43205,451.1480138367804,0,0.0,43332,450.3015038615486,1054691,0,37848,0,0,9952,0,0,88,0.909214417841504,0,0.0,0,0.0,0,0.0,0.04846,0.1270582066072365,0.3080891456871646,0.01493,0.3486855109705475,0.6513144890294524,22.84532219230833,4.092876975501715,0.2922643442622951,0.2866290983606557,0.2190061475409836,0.2021004098360656,11.48812359593332,6.228945849084882,16.036910346220367,11417.935371333724,45.00278174546437,13.888842538533124,12.959915786037309,9.456397191574352,8.697626229319585,0.59375,0.8212689901697945,0.7090271691498685,0.5754385964912281,0.1242078580481622,0.7672131147540984,0.9221311475409836,0.8914956011730205,0.748792270531401,0.1467391304347826,0.5149031296572281,0.7432646592709984,0.63125,0.5200617283950617,0.1173553719008264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0044202031671363,0.0066065883212567,0.0089305671265722,0.0109761555989583,0.0133435192258721,0.0155338419485129,0.0181196057402584,0.0202178248197576,0.0220165072603272,0.0241523598547781,0.0260811504879301,0.0283315844700944,0.0302733670619996,0.0322151114781172,0.03402626952115,0.0361083769362275,0.0384842918080767,0.0406702794911534,0.0426893453814005,0.057734500700002,0.0716162874702907,0.0848428874288952,0.0973525821793846,0.1092772190504332,0.1245924890977602,0.1359592313409066,0.1461754744712122,0.1570268248370204,0.1664520283322601,0.1781061071417025,0.1899353637278997,0.2004070836916177,0.2098173740822199,0.2191326755351951,0.2278398190145609,0.2361605896476631,0.2442784166347863,0.2513251835960999,0.2575717641666189,0.2631457083979717,0.2690746135935507,0.2742638007764416,0.2784000959462701,0.2823296537821657,0.28658897156655,0.28997184860807,0.293315195280716,0.2968673202783454,0.2997230282247428,0.2964826825264404,0.2937826685006877,0.2901887429326882,0.2875357380079129,0.2841713276857113,0.2796533753113967,0.2757515473032714,0.2758637596835877,0.2767683984893335,0.2779160297202175,0.2793772579984357,0.2796988342605516,0.2800400534045394,0.2795538536889443,0.2813839339159583,0.2819961114711601,0.2828592516890932,0.2879972371354117,0.294437239300361,0.2975822433610781,0.3007856850901494,0.3033601014370245,0.3083443209644,0.3129660630041089,0.3175961628891188,0.3216353538934184,0.3265983112183353,0.3304382155546782,0.3323369565217391,0.3354572713643178,0.0,1.450762480977753,53.91731258938359,143.0219831265106,194.3276317417076,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95629,48031,459.32719154231455,4722,48.26987629275638,3756,38.722563239184765,1415,14.44122598793253,77.3146043072854,79.7347566284658,63.296484254502126,65.0835083716404,77.13729874323533,79.55966657296095,63.22937130460236,65.01948618328139,0.1773055640500729,175.09005550485313,0.0671129498997658,64.02218835901863,251.84874,176.32798202182866,263359.7548860701,184387.13594805825,497.47149,331.4735087224652,519634.5773771554,346050.5836984546,473.90751,230.9506022585553,492122.9752480942,238856.8680076154,2145.78704,1012.5389058808014,2212432.8394106394,1027509.5708214048,882.01256,398.7969846776648,907470.4953518284,402266.0261344172,1382.29968,588.1814907172135,1411661.8598960568,586403.0805044862,0.38012,100000,0,1144767,11970.897949366825,0,0.0,0,0.0,42850,447.4793211264365,0,0.0,42765,443.829800583505,1055752,0,37917,0,0,10049,0,0,92,0.9411371027617144,0,0.0,2,0.0209141578391492,0,0.0,0.04722,0.1242239292854888,0.2996611605252012,0.01415,0.3603255340793489,0.639674465920651,22.846654238874805,4.0542200397755845,0.2984558040468583,0.2880724174653887,0.2058040468583599,0.2076677316293929,11.637584968108738,6.401418756148918,15.106275437627817,11391.319295989926,43.040824985176044,13.41664480929172,12.62702718259231,8.532599212227474,8.464553781064545,0.6003727369542066,0.8207024029574861,0.7181088314005353,0.610608020698577,0.1153846153846153,0.7759515570934256,0.9205020920502092,0.8717948717948718,0.7931034482758621,0.147239263803681,0.5223076923076924,0.7417218543046358,0.6588380716934487,0.5456140350877193,0.1069692058346839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024824455635151,0.0047864842664611,0.0069842043285824,0.0091551084692374,0.0114339192708333,0.0137808107557547,0.0159729092930508,0.0177954847277556,0.0196990927780221,0.0216690049257048,0.0237333333333333,0.0258654340010272,0.0276528985134509,0.0299314821492967,0.0319470679920313,0.0340178257542858,0.0362023768818708,0.038216758894922,0.0401735547509052,0.0421151439299123,0.0562750201206191,0.0702485831910413,0.0835442240446913,0.0965568783486489,0.1086658222503694,0.124106603983355,0.1356659549833763,0.1459780894326271,0.1560621296078389,0.1658896074597683,0.178010810111014,0.188854086509803,0.198999825677678,0.208818052360609,0.2178091249724487,0.2266962552011095,0.2350923453369236,0.2426474729384201,0.2502498864152658,0.257042616861005,0.2634801226780857,0.2694520451834701,0.2747728563316297,0.2788814071074261,0.2834641847371039,0.2872531639336189,0.2904641075959651,0.2936088602128686,0.2961594127985113,0.2984244915164928,0.2948907463649313,0.2914133582181723,0.2884934356638835,0.2861161197259286,0.2838232893584816,0.2800966272207443,0.2773220805082736,0.2765622437264228,0.276712796856313,0.2766867448408597,0.2782337798007686,0.2798234428641491,0.2807516611295681,0.2805919811844061,0.2816056378267701,0.2841652500901457,0.2858711875862457,0.29066054988996,0.2940850725089122,0.2988096170412718,0.3019755409219191,0.305674798450424,0.3087701739021644,0.3134732566012186,0.3159019134311722,0.3183052047680869,0.3189139438564197,0.3214069132807762,0.3256445047489824,0.333716915995397,0.0,2.033120073687505,50.47752311924411,133.6803709136125,192.0054611392148,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95641,47930,457.4607124559551,5030,51.43191727397246,3985,41.02842923014188,1453,14.73217553141435,77.29129418892526,79.6916964025104,63.29829466637945,65.07024718474901,77.1062420355235,79.5130771838474,63.229048688632304,65.0062553062656,0.1850521534017701,178.6192186630018,0.0692459777471441,63.9918784834066,254.20714,177.97953430244775,265793.05946194625,186091.25197608533,498.89719,331.94596510971905,521013.05925283086,346452.75050419697,472.56203,230.9938782984001,490398.85613910353,238591.6347473573,2254.21332,1068.7349124980276,2322938.5723695904,1083429.9855689805,909.08872,415.0221220852549,934112.3158478058,417527.79883654,1411.05304,595.3627541292672,1433227.6743237732,587039.8077251614,0.38165,100000,0,1155487,12081.502702815736,0,0.0,0,0.0,43010,449.0438201189866,0,0.0,42930,445.22746520843566,1044787,0,37510,0,0,10074,0,0,86,0.888740184648843,0,0.0,0,0.0,0,0.0,0.0503,0.1317961483034193,0.2888667992047714,0.01453,0.3641762452107279,0.635823754789272,22.878195533304016,3.980800309426072,0.3074027603513174,0.2941028858218318,0.2040150564617315,0.1944792973651192,11.58001850903148,6.329130018347471,15.393053853651509,11466.721872256025,45.95471477269705,14.571217028993525,13.917532591307795,9.012456119102191,8.453509033293535,0.5972396486825596,0.8225255972696246,0.7004081632653061,0.5904059040590406,0.1006451612903225,0.7755430410297667,0.930635838150289,0.8715083798882681,0.72,0.1506024096385542,0.5164113785557987,0.7366003062787136,0.629757785467128,0.5481239804241436,0.0870279146141215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993628637703,0.0042583392476933,0.0064857951950306,0.0088710496900721,0.0113237493514024,0.0136171512960228,0.0157330179252401,0.0179202319929748,0.0200597088172746,0.0221161919193987,0.0241406185905324,0.026364439332005,0.0283007221776433,0.0303976423794656,0.0328175164397278,0.0348137269097904,0.0367380355255249,0.0386244704709693,0.0405576943086047,0.0428065054211843,0.0571748058815537,0.070359391203243,0.0838268649193548,0.0959864425333936,0.1087410816059441,0.125128335397284,0.1369759763904075,0.1475682239406915,0.1571086449847114,0.166459107208039,0.1782337275873594,0.1896073802975507,0.2006051239633443,0.2098545140067214,0.2198860568393445,0.2286896062276139,0.2368106520112149,0.2444824597931414,0.2520655529326312,0.2588448190949594,0.2646813827571845,0.2698550046772685,0.274836984177702,0.2796874250922863,0.2837785285467759,0.2874142948749568,0.2907474646300237,0.2939072206945717,0.297580498924954,0.3013079134034754,0.298560667204735,0.2943999779959843,0.291485377152593,0.2874552385352893,0.2864736451373422,0.2835443813256978,0.2793713038803327,0.2790033484341146,0.2790181240498112,0.2798165137614679,0.2821732130153143,0.2832052472489479,0.2831878780268307,0.2836553478202668,0.2849724814548935,0.2863883847549909,0.2884218851509759,0.2933703726824396,0.2961500838457239,0.3012853470437018,0.3081555948014309,0.3119570368030327,0.3108717434869739,0.312884834663626,0.3196050775740479,0.3275431290898274,0.330715935334873,0.3310075928586086,0.3344380005523336,0.3371212121212121,0.0,2.520994922907662,53.92156610265532,144.9799491912491,200.03773343516585,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95625,47839,455.97908496732026,4875,49.694117647058825,3907,40.209150326797385,1473,14.96470588235294,77.27514686010801,79.68658624032808,63.27600815666828,65.05645228268422,77.08388992709568,79.5024418537387,63.202624401890354,64.9891473256334,0.1912569330123261,184.1443865893808,0.0733837547779288,67.30495705082262,251.46132,176.06344077681783,262966.0862745098,184118.630877718,499.15392,333.3121735490743,521354.65620915033,347925.37887484895,476.19839,232.43546435359795,494431.5294117647,240328.92001086543,2229.99356,1061.966115542754,2295634.614379085,1074168.0057963445,901.86723,412.77090387023503,924515.0954248364,413041.81319763087,1430.07442,611.6400385462299,1453076.559477124,600460.4624811766,0.37972,100000,0,1143006,11953.003921568628,0,0.0,0,0.0,43007,449.07712418300656,0,0.0,43094,447.0797385620915,1052867,0,37727,0,0,10001,0,0,78,0.8156862745098039,0,0.0,2,0.0209150326797385,0,0.0,0.04875,0.1283840724744548,0.3021538461538461,0.01473,0.3560620947140892,0.6439379052859108,23.13229621397376,3.9784301351097726,0.3056053237778346,0.2823137957512158,0.2121832608139237,0.1998976196570258,11.662875220092827,6.498284439188347,15.656172959028194,11458.082143000276,44.96768432002504,13.722517122177049,13.443031141280583,9.346913808005697,8.455222248561713,0.604811876119785,0.8368087035358114,0.7010050251256281,0.6043425814234017,0.1306017925736235,0.7635467980295566,0.9219712525667352,0.851063829787234,0.7866666666666666,0.135593220338983,0.532911863146151,0.7694805194805194,0.6439306358381502,0.5364238410596026,0.1291390728476821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088139987038,0.0048245036133099,0.0071736593780122,0.0096495683087861,0.0118593557705021,0.0138300472543588,0.015999102663458,0.018274443344121,0.0205391921319252,0.0226900393184796,0.0247710092006605,0.0271825111462678,0.0292710530377077,0.0314278057227673,0.0332817017761255,0.035431645373196,0.0371280201498802,0.0392779993353273,0.0412616812704227,0.0433218267335509,0.0578428605771743,0.0718567266782637,0.0851385707982266,0.0974365998335317,0.1093621247015571,0.1247285631057677,0.136215802563612,0.1466558625027987,0.1567156191128618,0.1658712243362356,0.177893907166071,0.1901069344728108,0.2007696332795535,0.2097032439190226,0.2190255476466368,0.2280290576265162,0.2371077487801602,0.244527935734272,0.2516557044994196,0.2584448986152892,0.2643347559844127,0.2695919252546804,0.2748348690217842,0.2800388992940498,0.284142174447025,0.2876369288463436,0.290538423947774,0.2938623288019958,0.2972289578443703,0.299813731059355,0.2967909753763629,0.2937037903925321,0.289843232812654,0.2873646209386281,0.2843764377625076,0.2805120518781353,0.27750047387376,0.2792243948773378,0.2794220144496387,0.2796142027389474,0.2798902391219129,0.2812155782848151,0.281805859660098,0.2825351611180345,0.2836499354036078,0.2830604207689916,0.2850592930121982,0.2885276648952797,0.2928890751606594,0.2973719517007339,0.298784620250305,0.3016065954973047,0.3075291622481442,0.3079002703514569,0.3088961341406613,0.315739756759948,0.3219282238442822,0.3234702093397745,0.3210583742498636,0.3208475217555808,0.0,2.513750351100304,52.82621781394497,140.61567761705678,196.99904921220104,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95686,48230,460.7988629475576,4711,47.91714566394248,3744,38.56363522354367,1384,14.087745333695628,77.28391542799022,79.68156876853298,63.28504443165552,65.05943119347121,77.10042452572648,79.50190473781961,63.21503413136854,64.9935997289676,0.1834909022637418,179.66403071336856,0.0700103002869809,65.8314645036171,252.15366,176.6365659531683,263521.99903852184,184600.2194188996,501.11172,334.1691745492875,523154.13958154793,348684.99524411873,476.79739,232.6961312896505,495017.2439019293,240629.2203736037,2123.34876,1012.4245049463888,2187880.484083356,1026870.2474200912,872.95349,403.5931704628045,896396.6619986205,405875.2486913487,1337.8073,577.4710459543822,1362933.553497899,573025.7885104263,0.38122,100000,0,1146153,11978.272683569174,0,0.0,0,0.0,43203,450.933260874109,0,0.0,43025,446.2930836276989,1049174,0,37688,0,0,9841,0,0,79,0.8256171226720732,0,0.0,1,0.0104508496540768,0,0.0,0.04711,0.1235769372016158,0.2937805136913606,0.01384,0.351900792844074,0.648099207155926,23.464486185194296,4.073342518525768,0.3210470085470085,0.2796474358974359,0.204059829059829,0.1952457264957265,11.63839951635348,6.451760300580724,14.93265074481577,11446.64853887954,43.04223145155549,12.89894869947494,13.594997004372688,8.512777352341978,8.035508395365888,0.5857371794871795,0.7994269340974212,0.6938435940099834,0.5549738219895288,0.13406292749658,0.7724498692240628,0.9370932754880694,0.8545454545454545,0.7354497354497355,0.1976047904191616,0.503273007316134,0.6911262798634812,0.6330275229357798,0.4956521739130435,0.1152482269503546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023915202367199,0.0046961213891593,0.006873305785963,0.0091157610186888,0.0113244406458899,0.0135074566050036,0.0157886684685603,0.017730931078155,0.0199437484019432,0.0222602388903685,0.0243346943800398,0.0264374666063869,0.0283291657662663,0.0302583710360606,0.0325677419354838,0.0347794611924091,0.036712362833784,0.0386563693738581,0.0405883331946409,0.0424296747162495,0.0576848746957493,0.0722414749824631,0.0855967423701775,0.0980396283396294,0.1101143044106937,0.1255028157683025,0.1365600875003982,0.1472953255301247,0.1570744430666609,0.1664824018118781,0.1786461140454888,0.190050592046107,0.2007404181184669,0.2105741537720249,0.2190434207626184,0.2282726929651253,0.2369906656978369,0.244368316072978,0.2514857110391455,0.2594699358922899,0.2652588145297758,0.2704866157235948,0.2754956835214875,0.2796793240842974,0.2844941906441998,0.2885583185316756,0.2920006010819475,0.2956719759808661,0.2977825529766605,0.299512259425257,0.2966142749488642,0.2928913990463234,0.2896038908099294,0.2856545800426586,0.2829875025974411,0.2788851325511312,0.2753252090347258,0.2756262373402706,0.2751550889631195,0.2755083870508209,0.2753086419753086,0.277721804065667,0.2788132927979872,0.280468715058813,0.2816623326591544,0.2828690445196563,0.2837496810049054,0.2886278195488722,0.2942733732757419,0.2987620357634112,0.3034006855493415,0.3089324161109069,0.3119351244273864,0.3147845468053492,0.3202205882352941,0.3201070514312311,0.3246831623415812,0.3302642113690953,0.3331494760066188,0.3387957317073171,0.0,2.2473827437661265,49.7134617789828,136.9112867164125,189.8554954306428,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95661,47928,457.0305558168951,4841,49.40362321113097,3857,39.786328806932815,1444,14.72909545164696,77.35161970545354,79.75735633248341,63.31721993396855,65.09418357133796,77.16053154256905,79.56794332237571,63.24563807381643,65.02519116630445,0.1910881628844976,189.4130101076996,0.071581860152122,68.99240503351223,251.80496,176.28590975107238,263225.89142910903,184281.44839701903,499.55053,333.7038799525162,521648.6446932397,348280.71749838616,477.19494,233.20836117446916,495429.9766885147,241129.73605646432,2218.31288,1049.6273358734195,2289407.051985658,1067770.0336896866,902.22204,405.3118964113365,931604.0601708116,412192.782558902,1405.84554,596.9923631209582,1435157.2741242512,596600.0702423096,0.37895,100000,0,1144568,11964.813246777683,0,0.0,0,0.0,43118,450.1520996017186,0,0.0,43096,447.0892004055989,1054365,0,37753,0,0,9900,0,0,86,0.8990079551750452,0,0.0,0,0.0,0,0.0,0.04841,0.127747723974139,0.298285478206982,0.01444,0.3564239194789816,0.6435760805210183,23.129168192325285,4.006075319401607,0.3181228934404978,0.2800103707544724,0.1895255379828882,0.2123411978221415,11.583884124904683,6.349203563643752,15.23875355274258,11390.792422766614,44.17893326413617,13.25557329607288,13.990106664477466,8.15421145464902,8.77904184893681,0.5812807881773399,0.8064814814814815,0.7123064384678076,0.5526675786593708,0.1135531135531135,0.7586206896551724,0.9136363636363636,0.8767123287671232,0.6858638743455497,0.1646341463414634,0.5050055617352615,0.7328125,0.642691415313225,0.5055555555555555,0.1007633587786259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086908947224,0.004522638543832,0.0066271540787951,0.0087072258798667,0.0110773174378744,0.0134039519250356,0.0159078162443277,0.0181760627380502,0.0201022494887525,0.0224213868687903,0.0244988407164987,0.0265945968164582,0.0289075042193224,0.0308466328508392,0.0329917778787753,0.0350628524132222,0.0368665982608335,0.0388152977327464,0.0410636814781676,0.0431772446223946,0.0584086515856015,0.0724209776884338,0.0850353701798946,0.0979472017339884,0.1101965005593195,0.1256668077900084,0.136694695714953,0.1469650945909938,0.1579904572394462,0.1675114366100384,0.178544854582511,0.1895955886335814,0.1997822773786196,0.2090393624939795,0.2171231594365701,0.2260310421286031,0.2338856549088837,0.2416378640667394,0.2488108887400529,0.2561404312328955,0.2622399056200049,0.2667422321418138,0.2734000922171122,0.2777890818561562,0.2816460685740621,0.2861114186255335,0.2892963231072614,0.2914668493567786,0.2952492774566474,0.2980860237669576,0.2942905459816395,0.2907293937026223,0.2884855630886708,0.2863414563931311,0.284064836059507,0.2796864754410845,0.2759071643531284,0.2752133119748929,0.2758380125914582,0.2766108808935209,0.277390930983628,0.2785143801392769,0.2800901295612443,0.2799048910024221,0.2796478755636138,0.2811014672452986,0.281516641238628,0.2869087732434793,0.2913635256030911,0.2954840741761487,0.3001037484776038,0.3045817877853821,0.3065906131812264,0.3087914567195608,0.3155893536121673,0.3205476218576655,0.3252589884216941,0.3244595676541233,0.3319838056680162,0.3416542473919523,0.0,1.9102643635680585,50.61673322470314,139.17189236228592,200.5058507075076,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95792,48122,458.0549523968599,4806,48.96024720227159,3779,38.87589777852013,1417,14.416652747619844,77.3507064425629,79.6792615883377,63.34838135415546,65.07022833923912,77.16252980242477,79.4949807205964,63.27660682052694,65.00220998012489,0.1881766401381241,184.2808677412933,0.0717745336285133,68.01835911423382,253.99616,177.85985365100544,265153.83330549527,185672.97232650477,500.48736,334.0994629392001,521894.0308167697,348197.2293381695,474.97083,232.5261119994824,492467.4294304326,240130.25363906007,2156.20288,1038.4111188017157,2218521.2543844995,1051950.0277817077,867.29889,402.9902777431596,888975.0501085685,404408.7043561401,1374.11006,598.24020298296,1399796.1625187907,595094.6277029254,0.38072,100000,0,1154528,12052.4469684316,0,0.0,0,0.0,43077,449.09804576582593,0,0.0,43040,445.9453816602639,1046059,0,37578,0,0,10115,0,0,71,0.7411892433606146,0,0.0,2,0.0208785702355102,0,0.0,0.04806,0.1262345030468585,0.2948397836038285,0.01417,0.3577430972388956,0.6422569027611045,22.9668834448977,3.98972886084961,0.3088118549880921,0.2836729293463879,0.2085207726911881,0.1989944429743318,11.323689513833504,6.255476903214055,15.481882750637212,11393.072161886936,43.87710103687197,13.374060853559664,13.463662616601349,8.794119426407049,8.245258140303909,0.5866631383964012,0.7985074626865671,0.7172236503856041,0.5571065989847716,0.113031914893617,0.744299674267101,0.90020366598778,0.8375350140056023,0.6792452830188679,0.1726190476190476,0.5107800862406899,0.7125645438898451,0.6641975308641975,0.5121527777777778,0.0958904109589041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021170130869899,0.0043592862935928,0.0063725937877358,0.0086339996749553,0.0109707987636245,0.0132041088499088,0.0154192654192654,0.0175934524599197,0.0196919995503643,0.0219197707736389,0.0240383630141197,0.0262266822631287,0.0285593899656752,0.03095404759944,0.0330896379628579,0.035299222115474,0.0372497283873971,0.0396313650688339,0.0414771429164849,0.0434637767159082,0.0580863939899833,0.0717646320807979,0.085438460409635,0.098095878607007,0.1105830031194671,0.1261719286748618,0.1373993998451897,0.1478923451850117,0.1573289206789793,0.1671614597288462,0.1783327054518056,0.1887510267606242,0.1989416724617524,0.2074201935892674,0.2166494425998812,0.2252519330538379,0.2330012703082168,0.2408141716185705,0.2484956995705236,0.2560089691228793,0.2618505987367059,0.267376557264119,0.2729282421089963,0.2773941040586961,0.280793256110134,0.2847298278429298,0.2881004435005309,0.2923565664908825,0.2959814728561817,0.2979704189550489,0.2951156605142258,0.292320158211333,0.2895510215560274,0.2858008832953266,0.2838050314465409,0.2796458553144639,0.2757023382290168,0.2764228976564039,0.277749334425558,0.2786958304365652,0.2788668576457151,0.2793615720007102,0.280443653866276,0.2809682543233629,0.2838029013307757,0.2854096783420443,0.2872909318466264,0.2926300578034682,0.2971080456550661,0.3017893741131957,0.305256951059101,0.3089344523531286,0.3112116641528406,0.3149150217209054,0.31527738796894,0.3154783019983446,0.3189139438564197,0.3158326497128794,0.3152022315202231,0.3273993808049535,0.0,2.1737441234925754,53.38052890114893,141.7496474560815,178.95875575294207,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95738,48132,458.887797948568,4670,47.70310639453509,3733,38.42779251707786,1391,14.205435668177737,77.31652017658898,79.67798899432255,63.31665033110207,65.06280994162344,77.14137401504273,79.50420525561657,63.25039209081014,64.99886013596583,0.1751461615462517,173.7837387059784,0.0662582402919298,63.949805657614434,251.63468,176.30863576760535,262836.55392842967,184157.1954371361,499.11605,333.4873992461459,520790.6682821869,347788.6724666757,477.67334,233.9670985198957,494703.0750590153,241140.7010048544,2125.33888,1018.2673943350233,2189751.321314421,1033395.9706020836,880.13723,399.26680706288846,905754.3295243268,403476.8399829618,1350.6131,575.0542098324239,1380365.476613257,574916.1901670253,0.37948,100000,0,1143794,11947.116087655895,0,0.0,0,0.0,43004,448.60974743571,0,0.0,43086,445.8626668616432,1053439,0,37838,0,0,9938,0,0,98,1.0236269819716308,0,0.0,0,0.0,0,0.0,0.0467,0.12306313903236,0.2978586723768736,0.01391,0.3638232271325796,0.6361767728674204,22.98753745502678,3.9019636178385375,0.317974819180284,0.2780605411197428,0.2001071524243236,0.2038574872756496,11.307075196629746,6.400722886362857,14.723948853079328,11412.915576729816,43.070778387656254,12.932719031554862,13.65310343464301,8.260323675647367,8.224632245811012,0.5858558799892848,0.8140655105973025,0.6798652064026959,0.5863453815261044,0.1274638633377135,0.7763605442176871,0.9272349272349272,0.8763736263736264,0.7305389221556886,0.1585365853658536,0.4982401251466562,0.7163375224416517,0.5929526123936817,0.5448275862068965,0.1189279731993299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0051398505692359,0.0072773407764526,0.0096121605007265,0.011871337890625,0.0142586519463059,0.0162361172019214,0.0180856387161341,0.0203883395875297,0.0224929613514205,0.0247518661307521,0.0268610740322415,0.0287309634230361,0.0308400436600284,0.0330280150183603,0.0351183526713298,0.0370155680688969,0.039042403120073,0.0410269736500181,0.0431919991665798,0.0579938613158499,0.0723448780998221,0.0857277684563758,0.0980305563441742,0.1105300338454076,0.1259320366786178,0.1372908865244465,0.1478556145747953,0.1574539005576803,0.1664199279093718,0.1791576906505816,0.1903520067522967,0.2005502272677845,0.2096885283538685,0.2185652800862989,0.2284188010506599,0.2356744082179544,0.2427634465456918,0.2503574427524226,0.2565136227767788,0.2619603942071901,0.2678842870840252,0.2740492699434413,0.2779316048761192,0.2824312506073267,0.2849940834237254,0.2893834759545614,0.292571254149338,0.2961065838830681,0.2988528481012658,0.2955893628182882,0.292008365897958,0.288460454366086,0.2850433526011561,0.2825990143103141,0.2793514836341388,0.2756844716179282,0.2749606402519023,0.2755455460579072,0.2753736934108665,0.2762818355211489,0.2764955159160343,0.2765748442921038,0.2775226289740045,0.2796407185628742,0.2814231705422342,0.2828371526499164,0.288047883284494,0.2907914869940186,0.296195865754932,0.2982052669552669,0.3019494204425711,0.3078553615960099,0.3137739808153477,0.3159702878365831,0.3183798422230072,0.3195625759416768,0.316043425814234,0.3227222832052689,0.3250382848392036,0.0,2.196507106693562,51.05106190419629,137.04026525684725,184.35531121107812,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95678,48344,461.0046196617822,4891,50.07420723677335,3892,40.09281130458413,1446,14.757833566755158,77.40264542862671,79.78357981195839,63.35728834693722,65.11211840434669,77.22336318638037,79.60598204707838,63.29031174011514,65.0479511025159,0.1792822422463444,177.59776488000512,0.0669766068220738,64.16730183079267,252.81652,176.9879377125025,264236.8360542653,184982.8985895425,500.56534,333.7163233805787,522612.0947344217,348226.11611925275,481.12211,234.35739827144343,498457.1688371413,241641.2293795623,2196.18656,1034.680347416572,2263757.143753005,1049782.96726162,907.43114,410.2161162548129,933974.6754739856,414299.2811877472,1398.16116,583.5004251512084,1428936.181776375,584412.9409381896,0.38202,100000,0,1149166,12010.76527519388,0,0.0,0,0.0,43154,450.4483789376868,0,0.0,43393,449.23597901293925,1053940,0,37768,0,0,10092,0,0,80,0.8152344321578628,0,0.0,1,0.0104517234892033,0,0.0,0.04891,0.1280299460761216,0.2956450623594357,0.01446,0.3649706457925636,0.6350293542074364,23.058481302395663,3.997347295699402,0.3108941418293936,0.2913669064748201,0.2037512846865364,0.1939876670092497,11.517294870979711,6.452459629636077,15.230641125060458,11542.815744913394,44.57280048452932,14.014668816347166,13.633900452572428,8.836969753987796,8.087261461621933,0.6027749229188079,0.7954144620811288,0.7223140495867768,0.6103404791929382,0.1139072847682119,0.77009507346586,0.896,0.8562691131498471,0.7433155080213903,0.1678321678321678,0.5319926873857403,0.7160883280757098,0.6727066817667045,0.5693069306930693,0.1013071895424836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024911140140353,0.0046418762098776,0.0071109758571718,0.009150645420107,0.0111245563905187,0.0132476630755758,0.0156289824339616,0.0175750153092467,0.0195393136713879,0.0220334646676559,0.0240372295171028,0.0259940250700668,0.0285217820458775,0.0305364738354429,0.0326042096574494,0.0348519927236646,0.0369146975376395,0.0389352980854044,0.0411024440977639,0.0432639192879327,0.0580535300139988,0.0723223354240181,0.085221369880264,0.0981223373481302,0.1112306459098004,0.1265525486130213,0.1382442513184562,0.1493991037118252,0.1595661697921675,0.1686736652476489,0.1800650357481264,0.1917962367860118,0.202507148526262,0.2116309575863576,0.2209367542422276,0.2307172977100926,0.2400320934275334,0.2480740291534712,0.2545551315297768,0.2611269859412504,0.2670421754888155,0.2721991507629135,0.2768787696375246,0.2814584578601315,0.2853681290056821,0.2892090576057827,0.2924298610330749,0.2958857548701298,0.299072293975717,0.301483827723527,0.2984178063824081,0.2951717340415337,0.2925544582195139,0.2902702159141515,0.2875797683762703,0.2838411987756407,0.2797416509136736,0.2800719012991257,0.2804954611012132,0.28077673346338,0.2814402472399605,0.2829963397208792,0.2843637268316955,0.2854958448753462,0.2865255673005798,0.2882123179595954,0.2890366388456641,0.2914396038987326,0.2940233490155079,0.2985356636750118,0.3022877294511257,0.3079729301046843,0.3102025506376594,0.3118077010021852,0.3158237869050945,0.3134449872063271,0.31666414866294,0.3253179650238473,0.3254564983888292,0.3274074074074074,0.0,2.3284373312510467,50.06658267191673,144.70034282754744,198.79834033530847,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95740,48023,458.9304365991226,4681,47.837894297054525,3707,38.25987048255693,1363,13.975349905995404,77.33907921770925,79.70679814194018,63.32552877917672,65.07588583943934,77.1664772324357,79.53468357816779,63.26023219889487,65.01257367919558,0.1726019852735589,172.11456377239642,0.0652965802818457,63.31216024375408,252.36508,176.73622213496094,263594.1926049718,184600.19023914868,499.78744,333.36479506788106,521560.9149780656,347733.2098055996,472.20161,230.54492481125797,490104.5331105077,238446.86591695136,2130.42492,1009.6760579360576,2200743.639022352,1030126.486250322,843.00542,384.41264773404527,868824.817213286,389826.7262732876,1321.82276,562.3504706898458,1356311.0507624818,565931.3074209325,0.37927,100000,0,1147114,11981.5542093169,0,0.0,0,0.0,43052,449.1957384583246,0,0.0,42778,443.7121370378108,1053237,0,37754,0,0,9997,0,0,75,0.7833716315019846,0,0.0,0,0.0,0,0.0,0.04681,0.1234213093574498,0.2911770989104892,0.01363,0.3542268041237113,0.6457731958762887,23.25864125125156,3.9403088942000335,0.3069867817642298,0.2867547882384678,0.2036687348260048,0.2025896951712975,11.217658084668694,6.108402718717783,14.47261353264199,11364.410670316973,42.64757539957595,13.238688587311463,12.91960560788614,8.357035822854769,8.132245381523576,0.5851092527650391,0.8109125117591721,0.7012302284710018,0.5801324503311258,0.0945406125166444,0.7572304995617879,0.9273504273504274,0.8615384615384616,0.7043010752688172,0.1172839506172839,0.5085736554949337,0.719327731092437,0.6371463714637147,0.539543057996485,0.0882852292020373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268838113757,0.0043902340106257,0.0067598428793276,0.0090229231019346,0.0110983388095988,0.0132397722759168,0.0153979503390608,0.0174580649113314,0.0196425284770649,0.0217435834408734,0.0241726235039535,0.0262936258499209,0.0284165706763205,0.0302281016257649,0.0319267532360288,0.0340527181162942,0.0360509686107945,0.0379418418813175,0.0397550018718023,0.0418494171085667,0.0569668493865831,0.0705706334093619,0.0837736956886428,0.0966581841889419,0.1092094023853965,0.1241921323474968,0.1354531372673838,0.1454611273184131,0.1556315452019662,0.1653755364806867,0.1776635524089699,0.1889509702009702,0.1991144184427255,0.2085827142122482,0.2172678028801691,0.2261028596763467,0.2338867242014536,0.2414514767932489,0.2497248476734027,0.2559796554252199,0.261626023784184,0.2683961933266303,0.273338691756696,0.277271204288723,0.2816144911370304,0.2852752817966147,0.2882669295366916,0.290848678537006,0.2951498651665097,0.2984935201631472,0.2954710096321536,0.293049991768644,0.289505123051624,0.2860089129901784,0.2835104254657004,0.2806350660254942,0.2764027574022368,0.2759518119618948,0.2759755203627623,0.2763614985837208,0.2774552446377569,0.2782957630119202,0.279430439036576,0.2797117245367796,0.2818470198201636,0.2846187611350667,0.2865144699991513,0.2899138684309075,0.2947383083191141,0.299443721150432,0.3042198677895499,0.3055467344130412,0.3101432880844645,0.3143203883495146,0.3156819026384244,0.3192389006342495,0.3246097337006428,0.3265182186234818,0.3274531422271224,0.3248189096454441,0.0,1.7474341293766709,49.96516008462956,137.4910095955448,184.6646272635654,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95688,47768,455.647521110275,4778,48.84625031351894,3813,39.27347211771591,1398,14.28601287517766,77.30793472821749,79.68420792612592,63.31631099018998,65.07045351306722,77.12656729748095,79.50449167064329,63.24838223788882,65.00469490333525,0.1813674307365431,179.71625548263148,0.0679287523011638,65.75860973197223,250.09996,175.2445498311818,261369.78513502213,183141.2029499036,494.84492,329.9458548867592,516572.9036033776,344245.7269587899,467.3602,228.3802136335677,484386.3075829781,235541.52757717375,2176.81124,1030.120037286592,2245559.652202993,1047292.1556054548,866.68535,393.55937856248113,892938.8011035867,398550.1751093514,1364.65286,582.7899149951514,1397058.7743499707,585849.9202905511,0.38032,100000,0,1136818,11880.444778864645,0,0.0,0,0.0,42664,445.2700443106763,0,0.0,42383,438.9056098988379,1066020,0,38211,0,0,9825,0,0,74,0.7733467101412925,0,0.0,1,0.0104506312181255,0,0.0,0.04778,0.1256310475389146,0.2925910422771033,0.01398,0.3675730110775428,0.6324269889224572,23.10429677488119,4.018467973475217,0.3034356150013113,0.2882244951481773,0.2040388145816942,0.2043010752688172,11.171221317038238,6.04404569573415,15.027783607526109,11455.34934707182,43.92556478346794,13.680304986434647,13.122917684155428,8.666388614786058,8.45595349809181,0.5819564647259375,0.8225659690627843,0.6966292134831461,0.5565552699228792,0.0975609756097561,0.7690972222222222,0.9297520661157024,0.88125,0.7074468085106383,0.13125,0.5009394964299135,0.7382113821138211,0.6260454002389486,0.5084745762711864,0.0888529886914378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0047829435369462,0.0070400389535296,0.0091005119037945,0.0109124562688145,0.0130951896053113,0.0151726810168143,0.0172230729964267,0.0192500357807356,0.0214963507385531,0.0236088899823676,0.0255749486652977,0.0275203883295453,0.0294732721410101,0.0316379283657864,0.0338457403368033,0.0360047660985339,0.0382666832772725,0.0402875153431668,0.0426769519441259,0.0568745626037999,0.0708372146572747,0.0845459027916199,0.0977641293145152,0.1101400997248605,0.125736219348426,0.1374485509398735,0.147315536254098,0.1578424459970514,0.1661964881418473,0.1781429709879601,0.18904417809701,0.199630314232902,0.2099497047889787,0.2187988120118798,0.2280641516957224,0.2362214387718672,0.2443872041752902,0.2508933737194976,0.257377105495185,0.2626212356195458,0.2685516499450408,0.2749603615968952,0.2794503794827524,0.2832990993837889,0.2878051787916152,0.2915722104630337,0.2955882727527446,0.2989940628969951,0.3013561157253964,0.2986937786156746,0.2959669649002064,0.2937099387194478,0.2901020437660798,0.2873915111163952,0.2836261785233255,0.2797024610271425,0.2793982393903561,0.2796472578743185,0.2802233082438554,0.2809457840347461,0.2816634414122665,0.2826927498066754,0.2833823267414929,0.285529406125677,0.2854801363269766,0.2868829176844856,0.291628796188924,0.2969713965227145,0.3010773905836852,0.3059138808139535,0.3103812999100957,0.3105656350053362,0.3133479875691655,0.3161338567956627,0.3245531514581373,0.3256198347107438,0.3273703041144901,0.319422150882825,0.3167655786350148,0.0,2.204987550534909,49.99857000255906,143.5289800862388,192.0886683122439,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95711,48149,458.5157400925704,4961,50.683829444891394,4008,41.332762169447605,1502,15.31694371597831,77.38171245272493,79.75526092320294,63.34258245905804,65.09477856508867,77.18549955866456,79.56065583666712,63.26729005323355,65.0220636362848,0.1962128940603662,194.605086535816,0.0752924058244914,72.71492880387598,251.2103,175.8842512280012,262467.0727502586,183765.57296663636,501.74729,334.54688019064577,523687.5907680413,348995.94460023555,482.03184,235.28495517966525,499978.79031668254,243040.53058408585,2274.7102,1080.2357038267453,2347803.8678939724,1099920.674328118,918.60115,419.1802155793072,949629.4887734952,427851.8392525237,1460.57374,636.0935292225622,1491704.568962815,637284.0294283913,0.37937,100000,0,1141865,11930.321488648118,0,0.0,0,0.0,43203,450.805027635277,0,0.0,43525,451.1602637105453,1057753,0,37987,0,0,10112,0,0,96,0.9925713867789492,0,0.0,1,0.010448119860831,0,0.0,0.04961,0.1307694335345441,0.3027615400120943,0.01502,0.3618624420401855,0.6381375579598145,23.264585565676708,3.9235817731760463,0.3071357285429141,0.2884231536926148,0.2020958083832335,0.2023453093812375,11.34291051829363,6.223685437201487,16.22502569468225,11433.960355930576,45.93748391616764,14.161715970845812,13.921380031887711,8.95044545489862,8.903942458535502,0.5885728542914171,0.8079584775086506,0.7059301380991064,0.5777777777777777,0.1085080147965474,0.764,0.9135802469135802,0.8605898123324397,0.7603686635944701,0.1436781609195402,0.5090645395213923,0.7313432835820896,0.6386946386946387,0.5109612141652614,0.0989010989010989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585480473181,0.0046325862401038,0.0067276860007306,0.0090709627613107,0.0113106983745956,0.0132281059063136,0.0153352026510323,0.0176405733186328,0.0197601790989849,0.0222950148428703,0.0243484857804843,0.0266840521976611,0.0290106951871657,0.0309647911988298,0.0331365709686074,0.0352770885028949,0.0376162561882469,0.0396920107505681,0.0415596301650528,0.0437170428729235,0.0582534411095097,0.0719834174326333,0.0854483836783514,0.0976520586564557,0.1099368203440601,0.1259239676413049,0.1371506779553122,0.1473528441089736,0.1577766620017733,0.1669741697416974,0.1800344790432065,0.1916323879627625,0.2012093660616211,0.2104532435446137,0.2189748102518975,0.2277277055605996,0.2366621677393448,0.2453486017683187,0.2529579254251131,0.2589517800501552,0.2642825739870884,0.2699025040331065,0.2755943716642406,0.2797215365812744,0.2834780496690752,0.2867542897968737,0.2898471001537749,0.2936082002238274,0.2963178595456192,0.2990249044669917,0.296546627250739,0.2925604182963481,0.2894418839928057,0.2868577516087701,0.2835300032531866,0.279804982097966,0.2764190488196917,0.2761345086516487,0.2758579720968125,0.2760168950095833,0.2755254136234908,0.2754013322067868,0.2763332779531484,0.2781683113427209,0.2789577820687025,0.2791494845360824,0.2796729630673809,0.2836604148552974,0.2890768537456235,0.2905429278059121,0.2945917953798352,0.2974550425912293,0.3000250438266967,0.3018181818181818,0.3027676824154319,0.3078007518796992,0.3169035379498034,0.3133400200601805,0.319813647574678,0.31837360951285,0.0,1.9902513144513088,54.68068370207735,142.45613720509917,202.50173717800257,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95856,48143,458.8445167751628,4879,49.61609080287098,3910,40.19571023201469,1471,14.98080454014355,77.44506122741345,79.72144817689474,63.40474875222951,65.08373840281325,77.25123607925568,79.5320622113261,63.330990116000365,65.01408236942999,0.1938251481577708,189.38596556863277,0.0737586362291438,69.65603338326787,252.68188,177.03313812715805,263605.7002169922,184686.54870551455,499.7107,333.4614212917183,520711.1291937907,347274.64247592044,478.7238,233.9479378911889,495323.5895509932,241022.2660448362,2209.938,1058.6141427284747,2273875.312969454,1072777.9823156344,886.71679,409.43034825377447,910157.4340677684,412237.17686297686,1422.38334,613.265770769265,1449590.1769320646,610745.9508390549,0.38085,100000,0,1148554,11982.077282590551,0,0.0,0,0.0,43097,448.9859789684527,0,0.0,43341,448.0575029210482,1054178,0,37848,0,0,9978,0,0,70,0.7302620597563012,0,0.0,1,0.0104323151393757,0,0.0,0.04879,0.1281081790731259,0.3014962082393933,0.01471,0.3519027069438996,0.6480972930561004,23.00829647640413,3.983189926933612,0.3056265984654731,0.2974424552429667,0.1994884910485933,0.1974424552429667,11.54625340759079,6.408449180409016,15.861536644702229,11408.599588714384,45.210805742739495,14.410238247956151,13.6400012489976,8.682194659712929,8.478371586072814,0.5933503836317136,0.82201203783319,0.694560669456067,0.5705128205128205,0.1152849740932642,0.7635914332784185,0.9212121212121211,0.8457300275482094,0.7164948453608248,0.1543209876543209,0.5166913946587537,0.7485029940119761,0.6286057692307693,0.5221843003412969,0.1049180327868852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.004517873965498,0.0069861999736369,0.0091957289594413,0.0113601723332046,0.0133582932313233,0.0155116923327629,0.0176817889810027,0.0198817510645467,0.0221065655068047,0.0239606799098914,0.0263678785703297,0.0284701894931443,0.030673016591407,0.0325053316986225,0.0344343517753922,0.0365582501680541,0.0384029512035895,0.0405830504251409,0.0425892782818613,0.0572790122941845,0.0714905086764383,0.0840051933909911,0.0965633034262028,0.1088116155505286,0.1243746437844341,0.1354934349851757,0.1467107220262632,0.1573430301996246,0.166650612725424,0.1778943295645071,0.1890239951620915,0.1983368795866082,0.2088955849600419,0.2176348479356815,0.2267803998362596,0.2362854149483961,0.2443682939160721,0.2509067005168193,0.2570121253717685,0.2625512976128547,0.2687668030391584,0.2744033681023676,0.2792562102139472,0.2828133339802998,0.2869731093471171,0.2901591352649752,0.2929694950599544,0.2962349378098184,0.2984958540411563,0.2954291784893025,0.2931306723785201,0.2903773796821475,0.2874962234019595,0.2851058795693836,0.2818814429065217,0.2788110523665659,0.2788994715897971,0.2792537389444378,0.2790549396053983,0.278974988834301,0.2787838315590996,0.2795895856313347,0.2805005213764338,0.2818379074369918,0.2809748793018873,0.2814841945117484,0.2858740911068299,0.2916839485690585,0.2971796179343349,0.2997606250846845,0.3036185251608819,0.3085518102372035,0.3112124667426834,0.3121772603511407,0.3124407582938389,0.3193122505373043,0.3146853146853147,0.313969571230982,0.3017912772585669,0.0,2.314233171864135,52.61570965030752,150.72807417901456,188.1149872039653,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95663,48446,463.0734975905,4805,48.72312179212444,3801,38.93877465686838,1457,14.707880789856056,77.29747507811412,79.70225868338181,63.28577397120039,65.06649599548021,77.10330772919988,79.5159670938921,63.21021852491914,64.99701135005806,0.1941673489142346,186.2915894897128,0.0755554462812497,69.48464542215049,253.2288,177.4028037114219,264709.23972695816,185445.57844874397,501.71575,335.1413399116501,523706.7936401744,349580.5273843075,483.31124,236.57085248235663,500782.9150246177,243741.95737614247,2166.76152,1048.3477318884404,2223233.684914753,1054115.2293869525,884.50655,412.1111893850722,906371.6483907048,412559.6619226569,1411.95738,618.719770360484,1428704.723874434,606333.6823655537,0.38324,100000,0,1151040,12032.23816940719,0,0.0,0,0.0,43088,449.60956691719895,0,0.0,43734,452.6201352665085,1042245,0,37434,0,0,9940,0,0,93,0.9721626961312106,0,0.0,2,0.020906724647983,0,0.0,0.04805,0.1253783529902933,0.3032258064516129,0.01457,0.3715256948610278,0.6284743051389722,22.803880017379715,4.034153798852253,0.3051828466193107,0.2925545908971323,0.1988950276243093,0.2033675348592475,11.89381967794891,6.7821400628579305,15.707584246386054,11489.780114734962,43.98795021812475,13.79517966855567,13.256926771686516,8.387266951072654,8.548576826809914,0.5864246250986582,0.8138489208633094,0.6870689655172414,0.5687830687830688,0.1254851228978007,0.7616279069767442,0.9300411522633744,0.8510028653295129,0.746031746031746,0.15,0.5051983057373893,0.7236421725239617,0.6165228113440198,0.5097001763668431,0.118043844856661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0044833952082445,0.0068023757551144,0.0092775124479219,0.0115966796875,0.0137301635804355,0.0160030190526702,0.0181879455076489,0.0203626619757202,0.0226725788778404,0.0247402377606597,0.0267715888311314,0.0287239843211489,0.0307798524380693,0.0327606500505916,0.0349407310867001,0.0371053668041707,0.0390526031607584,0.0408139909903349,0.0425004168751042,0.0583841718201571,0.072494870399062,0.0864902302348521,0.0992446716741358,0.1115753048909144,0.1272854240731335,0.1382348570094053,0.1484108725289707,0.158159282192777,0.1668062534896705,0.17853714310369,0.1900796877541063,0.2010327809916005,0.2104276932180545,0.2193605292171995,0.2290295733229762,0.2376134686759379,0.2456142327583293,0.2523978362652848,0.2595216803100135,0.2654678592946192,0.2702443137897917,0.2756872638548366,0.2798804780876494,0.2849080470954558,0.2878522430044909,0.2915330259597073,0.2952225606259477,0.2990427518937428,0.3015856236786469,0.2979555507605999,0.2942222589850697,0.2913855880775636,0.287998263763293,0.2855084733175898,0.2818598959926583,0.2776891864155233,0.2775960752248569,0.2770359800224238,0.276764951271901,0.2775834480705541,0.2789046255247361,0.2806009905522953,0.2806842385516507,0.2827243872753741,0.2840818014943509,0.2852743402836639,0.2896040375089567,0.2926863181312569,0.2976649107634248,0.3017463110870448,0.304478082623778,0.3108469724313896,0.3151815181518151,0.3194289951798294,0.3200792910447761,0.3229135053110774,0.3246597277822258,0.3321602598808879,0.3359848484848485,0.0,3.1532046318650537,51.29448220940667,140.5764047559103,186.8196215569519,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95825,48087,457.91807983302897,4769,48.58857291938429,3806,39.09209496477955,1432,14.5995303939473,77.32864418348662,79.64062082690806,63.32870225298407,65.03892407559306,77.13798465265054,79.45287427031899,63.25612251311848,64.97000194208245,0.1906595308360721,187.7465565890759,0.0725797398655885,68.92213351061116,253.0583,177.28148713203572,264083.10983563785,185004.87366792676,497.7082,332.3195331728967,518756.2744586486,346163.3774779146,475.24749,231.945143001494,491676.01356639713,238737.98636714704,2170.16184,1038.8492273956997,2231015.9561701017,1050552.6217498125,838.43571,390.90731626400606,861448.9642577615,394422.2032496791,1391.61344,603.6891617469884,1420298.5442212366,601705.0735333236,0.37963,100000,0,1150265,12003.77771980172,0,0.0,0,0.0,42781,445.7918079833029,0,0.0,42905,443.5376989303418,1049298,0,37674,0,0,10137,0,0,106,1.0957474563005478,0,0.0,1,0.0104356900600052,0,0.0,0.04769,0.1256223164660327,0.3002725938351855,0.01432,0.3557073954983923,0.6442926045016077,22.728468498930404,3.955163506269205,0.3018917498686285,0.2916447714135575,0.2025748817656332,0.2038885969521807,11.156990738877916,6.023085846889326,15.50584250985772,11384.485015872053,44.02919128883941,13.75591769484203,13.118640852779375,8.598293346336641,8.556339394881366,0.5851287440882816,0.8126126126126126,0.7067014795474326,0.5732814526588845,0.0914948453608247,0.7514743049705139,0.9291666666666668,0.8388059701492537,0.7360406091370558,0.1142857142857142,0.5097365406643757,0.7238095238095238,0.6523341523341524,0.5174216027874564,0.0848585690515806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0045108056603008,0.0070106021407193,0.0091215667154233,0.0113280455562334,0.0134697617593158,0.0158903271837733,0.0181656750385255,0.0201115948249432,0.0223993614800564,0.024477960613947,0.0266206910706772,0.0288574188642015,0.0309662541950626,0.0331432460581811,0.0352062478693401,0.0374298901007926,0.0393272989310191,0.041102293501745,0.0430596611016278,0.0575344466116633,0.0712224499184475,0.0843543974760761,0.0971501229482356,0.1096495388669301,0.1245983426348723,0.1350256606014336,0.1464914614034154,0.1569027380291316,0.1659448101374386,0.1779768698985635,0.1883675390291136,0.1987669490143203,0.2076579186113874,0.2159759733330399,0.2248277542701433,0.2333724110980851,0.2420264565156206,0.2498807766549335,0.2560483408627055,0.2620030137939028,0.266506447831184,0.271967718965108,0.2765962556891189,0.2807630077492974,0.2844986001997953,0.2890127787521924,0.2927329469460544,0.2957521848499779,0.2993393234672304,0.2954040179473705,0.2921201267392203,0.2897704020433795,0.2873112176192062,0.2853870751840559,0.2810607802559975,0.2773580422903302,0.2774196722924765,0.2776727148820172,0.2782519024251476,0.2785112700517283,0.2792145122215438,0.280384350834775,0.2804010493086123,0.2815466653913293,0.2828017868273426,0.2837879946743718,0.2874851683007556,0.2920996837092906,0.2973471470057295,0.2998421645997745,0.3034980507849542,0.3064082525789309,0.3116342441904473,0.3135735623599701,0.3175635718509758,0.3218442932728647,0.3274584418185459,0.3312550826782325,0.3400840657241116,0.0,2.4053941055942936,51.36880297322713,140.36688879877616,190.95293611214925,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95753,48485,463.03510072791454,4792,49.00107568431276,3802,39.19459442523994,1384,14.130105584159242,77.35098256499538,79.69740692986217,63.33757887846742,65.07021837620466,77.16765283519074,79.51610123657326,63.26816306200009,65.00358713226618,0.1833297298046403,181.30569328890545,0.0694158164673268,66.63124393848818,252.34462,176.76172859211232,263537.03800403123,184601.7655761306,501.27487,334.94463880393494,523006.088582081,349298.49592590827,482.03301,236.1799943898674,499980.501916389,244059.22410699332,2148.72124,1033.2664388304802,2217401.313796957,1052612.9342024403,853.27639,392.29552218222807,880884.4735935166,399613.4319105732,1333.11602,575.6474829372312,1363155.8906770544,577435.328512272,0.38316,100000,0,1147021,11978.95627291051,0,0.0,0,0.0,43206,450.7012835106994,0,0.0,43479,450.61773521456246,1048790,0,37705,0,0,9878,0,0,105,1.0965713867972806,0,0.0,0,0.0,0,0.0,0.04792,0.1250652468942478,0.2888146911519199,0.01384,0.3768581759742868,0.6231418240257132,22.767356468548765,3.877089804280533,0.318779589689637,0.2903734876380852,0.2014729089952656,0.1893740136770121,11.221311456412746,6.373375359207247,15.01712015694638,11445.96542072572,43.93799751099602,13.750185740651244,13.832566995886353,8.478984665426026,7.876260109032408,0.6075749605470805,0.8043478260869565,0.7244224422442245,0.6057441253263708,0.1111111111111111,0.7719298245614035,0.9031620553359684,0.8601036269430051,0.7772277227722773,0.1375,0.5266875981161695,0.7207357859531772,0.6610169491525424,0.5443262411347518,0.1035714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986643443743,0.0045509370470601,0.0067679319756882,0.0090700414398309,0.0114487905562729,0.01367185511702,0.0160141079091956,0.0180847698070073,0.0202168869264812,0.0221473968621109,0.0242839863050208,0.0263087661671114,0.0283866589899654,0.0304191123468231,0.0324447562258856,0.0345636647407208,0.0365726119596168,0.0385708949028723,0.0405897153313509,0.0425157311330583,0.0576654070192287,0.0712925767846681,0.0839405726747538,0.0963014361109358,0.1080177938944172,0.1237355319486285,0.135701786945225,0.146420628079473,0.1567911125353842,0.1668704680997125,0.1778536501303233,0.1898361578252494,0.2000935321435174,0.2094789011301598,0.2188604070132185,0.2280005762347491,0.236957881102327,0.2443672032306325,0.2525245648671341,0.2590028653295129,0.2645544279482046,0.2695151628603519,0.2747342406792087,0.2789403117293557,0.2832189039035396,0.2877969563131282,0.2912053582585659,0.2937679428876298,0.296723622770369,0.3004100576190288,0.2973540416139538,0.2938595284602052,0.290819990705927,0.2881708621138117,0.2854682837759601,0.2816903563396012,0.277830502040429,0.2773640002624844,0.2775892354656616,0.278935288151878,0.2800970420826724,0.281731128458226,0.2831797523245632,0.282839736748488,0.2832680550248376,0.2852811609225187,0.2851569126378286,0.2889117812324405,0.2939501284989928,0.2990764393790528,0.303607712105477,0.3072505005796185,0.3137279361317283,0.3170786685701405,0.3193067012698118,0.3265234237407537,0.3303708243947287,0.3313228789706474,0.3372506149221099,0.3393939393939394,0.0,1.9800080450914308,54.85880649193322,132.6143676324485,187.03696802905463,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95847,48285,459.8057320521248,4908,50.0798147046856,3911,40.26208436362119,1457,14.84657840099325,77.51248185563044,79.79901797621125,63.42745123530996,65.11106949260272,77.3210532732505,79.61058965990404,63.35440727454947,65.04157425248593,0.1914285823799417,188.4283163072098,0.0730439607604864,69.49524011679387,253.85162,177.794064019749,264850.87691842206,185497.7871187924,504.33689,336.00394059238226,525674.8672363246,350048.1398399348,482.45598,235.44205815178225,499916.8988074744,242988.42706494388,2230.86392,1063.6675847845408,2296593.362337893,1078871.0914443445,888.08122,405.8598914334858,910014.6274792115,406928.8633435062,1412.50616,613.7413450091036,1439927.8433336462,610877.7763615038,0.38154,100000,0,1153871,12038.67622356464,0,0.0,0,0.0,43381,452.05379406762864,0,0.0,43612,451.7094953415339,1050662,0,37686,0,0,10076,0,0,96,0.9807297046334262,0,0.0,0,0.0,0,0.0,0.04908,0.1286365780783142,0.2968622656886716,0.01457,0.3613053613053613,0.6386946386946387,22.890616453984148,3.970193047039578,0.3093837893121963,0.2909741754027103,0.2012273075939657,0.1984147276911275,11.33034692979953,6.125279208205106,15.708506243663248,11401.560022496842,45.051117318282245,14.037459098646872,13.751888274522434,8.804687961217637,8.457081983895298,0.5942214267450779,0.820738137082601,0.6900826446280992,0.6060991105463787,0.1005154639175257,0.756,0.926923076923077,0.8296089385474861,0.7295918367346939,0.1306818181818181,0.5182262307403231,0.7313915857605178,0.6314553990610329,0.5651438240270727,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020035213405379,0.0041320221589815,0.0066086216158688,0.008767034327404,0.0110932769865295,0.013525882233296,0.0157907597076011,0.0181310164790341,0.0204425474559137,0.0227630637079455,0.0253955250627208,0.0276282189336368,0.0297979901769384,0.0317710263060392,0.0337941628264208,0.0356353419959923,0.0375939071586746,0.0394907364208474,0.0412606735503708,0.0432139250653257,0.0573377273485733,0.0711843494808603,0.0840912901332886,0.0967860518853061,0.1089291355164788,0.1245563630218015,0.1364768475830127,0.14624913605189,0.1559468544901552,0.1647390177557883,0.1770613789840423,0.1891167924997029,0.2003604425191892,0.2099119952831218,0.218348381994332,0.2272842878152886,0.235565408223512,0.2439210665229062,0.2509907828883302,0.2577888471249528,0.2638139384714727,0.2695989379541643,0.2741986820544861,0.2785251321961875,0.2823767119972898,0.2857177932185912,0.2884289488112446,0.2916582278481012,0.295058308098705,0.2984440187872267,0.2949779027721976,0.2912323895499931,0.2887800783435926,0.2858394621925994,0.2832548318986519,0.279632759329466,0.2756381972896312,0.2763563929661861,0.275874363327674,0.2757255702494009,0.2763714259104032,0.2775519820934205,0.2782469423412929,0.2789769957005452,0.2790647943545513,0.2805329766436876,0.2823519487092964,0.286527631660375,0.2910589290024482,0.2947204968944099,0.2999644697104281,0.302953499198262,0.3074610381641919,0.311650701715304,0.3141552511415525,0.3171907275648382,0.3205260824589921,0.3182260260649679,0.3206593990959851,0.3215208564045773,0.0,2.1060084655962057,54.561248554524006,140.36654335999089,192.7512958814337,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95751,47895,455.3581685830957,4739,48.438136416329854,3797,39.216300613048425,1433,14.69436350534198,77.31288813594676,79.6719509598078,63.318020272784125,65.06211481872867,77.12754798752351,79.48827308468921,63.24801844607296,64.99498438670216,0.1853401484232506,183.67787511859035,0.070001826711163,67.13043202651647,253.24948,177.46241085580743,264487.55626573093,185337.3968478736,501.53821,334.3094934625053,523334.6492464831,348685.3580400495,473.19596,230.8082296219868,491779.3443410513,239153.234871953,2172.8838,1026.1899916065647,2245557.957619242,1047994.6923580166,873.43347,399.1375768663236,899077.4822195068,403763.45272113045,1388.13686,592.1474883613552,1423885.828868628,595341.3076350042,0.37965,100000,0,1151134,12022.161648442314,0,0.0,0,0.0,43167,450.34516610792576,0,0.0,42851,445.03973848837086,1046981,0,37597,0,0,10203,0,0,84,0.8772754331547451,0,0.0,1,0.0104437551566041,0,0.0,0.04739,0.1248254971684446,0.3023844692973201,0.01433,0.3620028265697557,0.6379971734302443,23.331545479511306,4.025227467495856,0.3107716618382934,0.2818014221754016,0.2075322623123518,0.1998946536739531,11.362229067176589,6.338994406249579,15.304772251951796,11416.278337079008,43.6309058670331,13.211184499367642,13.314553982228864,8.804495622912539,8.300671762524049,0.5859889386357651,0.8037383177570093,0.6915254237288135,0.5812182741116751,0.1198945981554677,0.7751277683134583,0.9294354838709676,0.8622950819672132,0.7345971563981043,0.191358024691358,0.5013343499809378,0.6951219512195121,0.632,0.5251299826689775,0.100502512562814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509307460147,0.0047030681438084,0.0069501516857922,0.0095884288790476,0.0117777483955614,0.0140427698574338,0.0163148771285816,0.0184275811375075,0.0205492056351851,0.0226292993108815,0.0245462934481697,0.0267703113447794,0.0289208174347687,0.0308804746405174,0.0329419775503466,0.0354703018903025,0.037981237185992,0.0401768111731379,0.0420852311723965,0.0440005834792031,0.0583610870404977,0.072165487799774,0.086557115741566,0.0989149634115569,0.1111790567967358,0.1260523755129669,0.1374502626134012,0.1474827035657264,0.1574275826711099,0.1667578087303374,0.1781400055985013,0.189447274221631,0.1996999119306753,0.2088213742795586,0.2166943549008174,0.2260462128093223,0.2344334200158483,0.2423693536592226,0.2494947201090042,0.2554766269477543,0.2613959949068179,0.2674695977549111,0.2721961373339798,0.2770229794167685,0.2820058280718795,0.2857670660968731,0.2894305484302856,0.2923669556815581,0.2950501455839534,0.298324096067564,0.294948624372113,0.2916666666666667,0.2882449025571702,0.2856441079581575,0.2832748781357745,0.2800196096454944,0.2764285601127956,0.2766090226798706,0.2776952117391824,0.2784258382607764,0.2788276055810469,0.2803176986604497,0.2803662130808302,0.2816433839092752,0.2828704369933323,0.283888398191926,0.2843830790647461,0.2881723131024521,0.293297849989495,0.298028481891388,0.3027839593078705,0.3070841239721695,0.3104412678682411,0.3127640313820157,0.3157109557109557,0.3175905308801125,0.3206828227404359,0.3244595676541233,0.3270285087719298,0.3369524522650692,0.0,1.6515681476240642,51.64088940719595,137.77185609541797,191.30997315304845,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95775,48260,459.7128687026886,4757,48.39467501957713,3788,38.914121639258674,1425,14.377447141738449,77.37208356525132,79.70989603253976,63.35007434272507,65.07891708898332,77.19402004783745,79.53978987448362,63.2819203183324,65.01715031921063,0.1780635174138609,170.10615805614293,0.0681540243926761,61.76676977268869,252.27026,176.73985232997234,263397.94309579744,184535.6683680441,499.47662,333.6746268572274,520829.7468024015,347714.68857927463,480.26009,234.833231532592,497994.41399112507,242487.04937408335,2173.72968,1035.5815808092214,2232306.3012268334,1044045.9687405076,910.07854,420.3286833276417,932126.5257113024,421016.2328732122,1392.6042,589.1397494155318,1406268.3790133125,574358.0972786137,0.38082,100000,0,1146683,11972.6337770817,0,0.0,0,0.0,42917,447.3923257635082,0,0.0,43297,448.7392325763508,1054744,0,37872,0,0,10008,0,0,108,1.096319498825372,0,0.0,1,0.0104411380840511,0,0.0,0.04757,0.1249146578436006,0.2995585453016607,0.01425,0.3614141414141414,0.6385858585858586,23.08356986947699,4.101321002376414,0.2925026399155227,0.2864308342133052,0.2127771911298838,0.2082893347412882,11.8871443478584,6.585166570598233,14.957338093089518,11440.753704894589,43.46275526168559,13.504220002777918,12.64783416935772,8.782630282367442,8.528070807182495,0.5974128827877508,0.8110599078341014,0.7111913357400722,0.6116625310173698,0.1292775665399239,0.7719734660033167,0.9194214876033058,0.8659217877094972,0.7595628415300546,0.2044198895027624,0.5158791634391944,0.7237936772046589,0.6373333333333333,0.5682182985553772,0.1069078947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864985313481,0.0041867726369571,0.0064845446611597,0.0086854054712975,0.0108410454591681,0.012949991855351,0.0154216228888277,0.0177765985672592,0.0197330771746239,0.0219017695401651,0.0241545398647263,0.026642582975841,0.0286278178098948,0.0307876067011954,0.0328551835084716,0.0350578097393137,0.0372950480291487,0.0394499408873125,0.0414081901971175,0.0432197742701261,0.0579825092358748,0.0720158152378561,0.0854405166268293,0.0980192297588399,0.1104567244376547,0.1258320126782884,0.1370795090828157,0.148084346189428,0.1587152536947127,0.1674023441685058,0.179422903128631,0.1903964024344103,0.201764967993653,0.2117932572478027,0.2196793067042055,0.2283755799918053,0.2362468210413599,0.2439583661173931,0.2510172853499575,0.2572687728937728,0.2641193132551014,0.2696272057964239,0.2744479495268139,0.2784364867613453,0.2826500794199313,0.2864593583940169,0.2890972743185796,0.2928312908756111,0.2957000361775802,0.2990757563788609,0.2958791946308725,0.2930412971669019,0.2901910613111389,0.287533164148114,0.2849968147676261,0.2813248874303594,0.2778356207603723,0.2776369790218937,0.2775590886628155,0.2779002774023757,0.2780780556901629,0.2781369755330647,0.2797751639429582,0.2804953835227273,0.2818626865671642,0.2828463371671329,0.2842027628854282,0.2873239436619718,0.2916666666666667,0.2965857509374383,0.30223206217242,0.3053274373552326,0.3067756426254055,0.3090867890324043,0.3113621510596583,0.3145104484620803,0.316538054168558,0.3176100628930817,0.3240268456375839,0.3317236255572065,0.0,2.3858371218181427,52.30953050751288,132.3657493438105,190.02691743310092,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95649,47601,454.3068929105375,4804,49.15890390908426,3843,39.62404207048689,1482,15.149139039613589,77.25911226955019,79.65636153923012,63.27736057920528,65.04631298908784,77.07426052108262,79.47423145169314,63.20702681850285,64.97949562406005,0.1848517484675653,182.1300875369758,0.0703337607024323,66.8173650277879,251.27366,176.0307855911684,262703.9069932775,184038.29166135396,496.46211,330.1099140578315,518407.8244414474,344491.14955589094,465.53854,226.8114883215867,483417.1711152234,234591.41009702493,2174.32084,1020.5533966838652,2243085.866031009,1036983.9730916262,872.75088,392.5362605511371,897050.068479545,395223.4283787976,1437.76888,613.1836205002526,1470523.8946565045,612113.6721963008,0.37979,100000,0,1142153,11941.086681512614,0,0.0,0,0.0,42782,446.6852763750797,0,0.0,42078,436.6172150257713,1057553,0,37976,0,0,9799,0,0,97,1.003669667220776,0,0.0,0,0.0,0,0.0,0.04804,0.1264909555280549,0.3084929225645295,0.01482,0.359168997203356,0.6408310027966441,23.30832821287624,4.025036826034055,0.2961228207129846,0.2927400468384075,0.2066094197241738,0.204527712724434,11.447040720116766,6.238761617729523,15.934372012885412,11407.822025217089,44.19185194561626,13.8597241246326,12.931694294498152,8.859606054246214,8.5408274722393,0.585480093676815,0.7911111111111111,0.726713532513181,0.5591939546599496,0.1132315521628498,0.7403846153846154,0.8984881209503239,0.8626198083067093,0.7114427860696517,0.1077844311377245,0.5198221563542053,0.716012084592145,0.6751515151515152,0.5075885328836425,0.1147011308562197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.004451474867926,0.0067291882345776,0.0087892212648349,0.011160282822117,0.0133929480781374,0.0157330179252401,0.0179772757434384,0.020149047750483,0.0220279648698998,0.0241754411146539,0.0264295468780482,0.0285934687580354,0.0305543250955466,0.0324558054096449,0.0343996856776541,0.0364542327932706,0.038395665306885,0.0403682130226752,0.0424298656213838,0.0565042009781381,0.0706976549326015,0.0839686640203305,0.0967850636563714,0.1085730579140793,0.1244770649975111,0.1353777192386132,0.1459578684908736,0.1566570420275906,0.1659078218289592,0.1774769429912086,0.1890779065987647,0.1994205802910168,0.208534180543383,0.2173237029277168,0.2273398549839549,0.2357284290364801,0.2432429384901618,0.2502728637045796,0.2560388692985378,0.2625711932628843,0.2687942597195517,0.2737948377301196,0.2785657619539871,0.2832088142451462,0.2870257113557458,0.2900659925225202,0.2931381798709743,0.2951140741125047,0.2987694463169303,0.2955728815388351,0.2933307590467784,0.2903717934229856,0.2871834295494764,0.2842238616886504,0.2812581511315689,0.2772908113934283,0.2776928765097362,0.2790900538783887,0.2789888061699963,0.2789866596815537,0.2799085047226549,0.2813009489569834,0.2813194629679025,0.2839798283979828,0.2861837849028285,0.2870265686828717,0.2921755427143526,0.2947863993025283,0.2986286254728877,0.3028274146120787,0.3080486392588303,0.3122155016524288,0.3171409264959832,0.3181608346413073,0.3192510239906378,0.3267461155528737,0.333266892565278,0.3390203632361034,0.3338485316846986,0.0,2.1207730093734902,49.85014791484785,144.6220054059415,195.42135428526063,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95611,47929,457.0917572245871,4879,49.73277133384234,3861,39.73392182907824,1407,14.328895210802104,77.28554750318864,79.7180468286947,63.27381344368565,65.07229531850956,77.10667692199493,79.54367817760084,63.205114501719216,65.00783724829674,0.1788705811937063,174.36865109385735,0.0686989419664314,64.45807021282235,251.87646,176.43349601799392,263438.7884239261,184532.63329323396,498.88451,332.3352244296736,521144.1988892492,346949.8323632724,471.44927,230.20379509704048,489034.36843041074,237556.55101941124,2191.21876,1036.2022689145642,2256351.256654569,1048332.407561344,864.89993,396.93555096793966,884933.574588698,395622.7231004333,1368.53052,589.6245200220345,1394818.671491774,584686.7273756964,0.38009,100000,0,1144893,11974.490382905731,0,0.0,0,0.0,43015,449.21609438244553,0,0.0,42631,441.84246582506194,1052840,0,37804,0,0,9891,0,0,88,0.9203961887230548,0,0.0,0,0.0,0,0.0,0.04879,0.1283643347628193,0.2883787661406026,0.01407,0.361252446183953,0.638747553816047,23.255603802120223,4.1042166893196805,0.3014763014763015,0.2877492877492877,0.2103082103082103,0.2004662004662004,11.302575458521613,6.017081085678395,15.09608638422458,11460.377237555638,44.283750531672176,13.585823965763456,13.262617333971932,9.05980200700614,8.375507224930642,0.5793835793835794,0.8001800180018002,0.6941580756013745,0.5677339901477833,0.1020671834625323,0.7582417582417582,0.9219088937093276,0.8275862068965517,0.7534246575342466,0.1225806451612903,0.5003734129947722,0.7138461538461538,0.6372549019607843,0.4991568296795953,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219700040535,0.0047368367667792,0.0069244202574828,0.008934288763531,0.0112928824319374,0.0134665729507278,0.0155971070375697,0.0179594838946949,0.0201186458013705,0.0225210462710718,0.0248356089904699,0.0271989313604603,0.0292949047864127,0.0313160363257774,0.0331653725425408,0.0355609801508083,0.0372953367875647,0.0391222166832834,0.0413435616666493,0.0432043392093459,0.0576705970898143,0.0720476195466501,0.0849708917425022,0.0977570349455851,0.1101698495859388,0.1254368685264027,0.1358950925591379,0.1464589929744885,0.1564456239098565,0.1650979886539453,0.176523268485849,0.1884689607320193,0.1993526732198513,0.2082004755486889,0.2173980154355016,0.2271612337539817,0.2350666189752302,0.2433507640986341,0.2514544793418481,0.2580744985673352,0.2638501348832363,0.2693046125029267,0.2740803943875616,0.2779157816418859,0.2832974544216198,0.2875519542186209,0.2912108543820562,0.294854494997072,0.2983335924946872,0.3004104364351418,0.2973143887408843,0.2936497032314794,0.2901400520796678,0.2872053240172655,0.2850341145060813,0.2816860465116279,0.2789745049661542,0.2804270112492211,0.28114564165474,0.2829206552935094,0.282513722415145,0.2827065599874186,0.2834578308225181,0.2849329687187354,0.2869764554181193,0.2885528488852188,0.2897466895330203,0.2930638350720318,0.2973840419657648,0.3010369790647623,0.3058178221382969,0.3119886721208307,0.3163588882671143,0.3220567322805179,0.3257575757575757,0.3258244310264747,0.326325274065175,0.3290937996820349,0.3300400534045394,0.3383596910628907,0.0,2.475102589347685,51.17726002564248,142.38905954162365,192.2637001146784,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95817,47849,454.6583591638228,4784,48.79092436623981,3811,39.2414707202271,1396,14.266779381529377,77.35864855579545,79.66341547555812,63.35358995694328,65.05421495219997,77.17984192364793,79.48481185763683,63.28709119919809,64.98927226269991,0.178806632147527,178.6036179212971,0.0664987577451867,64.94268950005733,253.76098,177.64751189144508,264838.28548169945,185402.04423956797,497.10862,331.9743138267525,518235.53231681226,345896.3291679177,479.47213,235.1083703682462,496805.0137240782,242642.6957915928,2179.15688,1042.6391264891165,2246664.996816849,1061014.6314276904,887.09864,403.4013047203239,914530.6991452456,409900.8961343129,1355.2418,574.7458029517061,1387521.3166765813,579386.8523613579,0.37716,100000,0,1153459,12038.103885531797,0,0.0,0,0.0,42894,447.0918521765449,0,0.0,43299,448.2503104877005,1046484,0,37627,0,0,10105,0,0,76,0.793178663493952,0,0.0,0,0.0,0,0.0,0.04784,0.1268427192703362,0.2918060200668896,0.01396,0.3569131832797427,0.6430868167202572,23.11309586763701,4.046507078568091,0.3203883495145631,0.2886381527158226,0.1920755707163474,0.1988979270532668,11.917235948166612,6.6743259470306056,14.895413132407452,11391.909651817045,44.00174641494061,13.69395687961836,13.881709349509894,8.159814696556289,8.266265489256067,0.5972185778011021,0.8281818181818181,0.6895986895986896,0.5997267759562842,0.1108179419525065,0.7797319932998324,0.9444444444444444,0.8495821727019499,0.7684210526315789,0.1320754716981132,0.5139472678639664,0.7361563517915309,0.622969837587007,0.540590405904059,0.1051752921535893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0046592186692866,0.0070156229406814,0.0095994804509523,0.0121411009286164,0.0144550124612176,0.0167563052601556,0.0187997919068068,0.0212083444006293,0.0234251928230937,0.0257702392658144,0.0277965823537858,0.0299070221400318,0.0320442898598448,0.0339931951747602,0.0360650658404337,0.0381380045318627,0.0402939895921879,0.0420860208352808,0.0438154525202473,0.0587725978239325,0.0715779129816638,0.0842625974679299,0.0967687700309987,0.1090493351035805,0.1255256651380993,0.1367924528301886,0.1478105489315989,0.1576424621559878,0.1661967603263258,0.1780785048338824,0.189176618206992,0.1989495775474919,0.2086122413265083,0.2169361674023358,0.2257485428071186,0.2338913067737975,0.2414964456042472,0.2492285001134558,0.2555752820571559,0.2612719973157779,0.2660714703610962,0.2711025895942811,0.2748963401481197,0.2790508359253499,0.284151254913074,0.2882627229882615,0.2915046631597672,0.2948595229471723,0.2977842803854113,0.295478373074545,0.2925854730193601,0.2890031323304257,0.2858727277965027,0.2834036880693179,0.2794490038746682,0.2761417795032036,0.2758349705304518,0.2760906612133606,0.277027027027027,0.2777487008860144,0.2783151756338777,0.278634015767791,0.2787684498764443,0.2799837246595342,0.2812524360140314,0.2817025384746436,0.2875599736586283,0.2916681234921855,0.2949113643558088,0.2978300180831826,0.3035761449474407,0.3071580528094106,0.310355299119344,0.3134481154025128,0.316907986921999,0.3191811978771797,0.3235412474849095,0.3262372131600774,0.3274922118380062,0.0,1.9895914441953797,52.04749656067645,141.8961308335136,187.36601863408004,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95869,48313,460.638996964608,4803,49.08781775130647,3788,39.011567868654105,1415,14.467658993000866,77.41454581429173,79.70267503767516,63.37712166936033,65.0677832444178,77.23154135666218,79.52030795178989,63.30741854288021,64.9998260212057,0.1830044576295506,182.36708588527503,0.069703126480114,67.95722321209041,252.56088,176.9344270792997,263443.2819785332,184558.08830727308,501.25509,334.8173256957774,522353.48235613183,348744.1918615792,479.49232,234.04536269487892,496408.8600068844,241348.96859141736,2171.28516,1024.9761056178422,2238727.847375064,1043049.3127265776,848.25527,385.9537026452101,871410.9566178848,389325.8450039711,1378.29814,592.2961658143223,1410439.8084886668,596572.0685240697,0.37932,100000,0,1148004,11974.694635387874,0,0.0,0,0.0,43112,449.1650064150038,0,0.0,43152,446.4008177825992,1052291,0,37750,0,0,9955,0,0,93,0.9700737464665324,0,0.0,2,0.0208618009992802,0,0.0,0.04803,0.1266213223663397,0.2946075369560691,0.01415,0.3557288542291542,0.6442711457708459,22.83440071508438,4.071714324112605,0.3133579725448785,0.2777191129883843,0.2030095036958817,0.2059134107708553,11.02474353989829,5.858957738610028,15.143542790808006,11346.044039558015,43.42375193094547,13.012460808228049,13.378700830505764,8.561304715589847,8.471285576621819,0.5842133051742344,0.8060836501901141,0.7135636057287279,0.5708712613784135,0.1012820512820512,0.7394807520143241,0.914351851851852,0.853125,0.6868686868686869,0.1317365269461078,0.5192811681018346,0.7306451612903225,0.6620530565167243,0.5306479859894921,0.0929853181076672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027332084830692,0.0047819259409351,0.0066824178387093,0.0087608876616652,0.0112613070433987,0.0133395740697402,0.0155460472697636,0.0176465788077848,0.0198271635204707,0.0221033466983061,0.0241534017577284,0.0262391268668964,0.028338916175171,0.0305500658761528,0.0327549410782221,0.0345896034951095,0.0364795100199675,0.0384778801413515,0.0405979135309077,0.0424788333922739,0.0576159147543034,0.0713024213353397,0.0843800085898953,0.0972459918314206,0.1097422289613343,0.1254646840148698,0.1366664901223452,0.1468703166353114,0.1565903877953806,0.1660669536721711,0.1778165036950979,0.1884101843342883,0.1990568702870678,0.2081644248735235,0.2168485367971076,0.2262176097010466,0.2342579379236532,0.2417357693431313,0.2482054771219595,0.2551167582417582,0.2606850455617743,0.2661148909307708,0.2715566171601551,0.2757893728139524,0.2797473735349486,0.2839455983442974,0.2871848108865319,0.2905378777284804,0.2932979343391828,0.2971264974404982,0.2938802958977807,0.2903925932031099,0.2873589069594186,0.283774629210568,0.2805114756041546,0.276995161856504,0.2739292130227867,0.2735768903993203,0.2747445205828842,0.2760480422942502,0.2765917846972771,0.2781793894629317,0.2801388946646151,0.2812707843745843,0.2832128629022639,0.2842385268975491,0.2861816130851664,0.2920881166614955,0.2964274554733881,0.2997093251630136,0.3015325327119555,0.3054758051887039,0.3093405578474232,0.3128246994211073,0.3162055335968379,0.3217108321710832,0.3237723381889172,0.3185805422647528,0.32015065913371,0.3270159791898922,0.0,1.891820958109218,48.71282432552308,144.61132889720002,190.62484624096967,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95717,48349,462.19584817743976,4769,48.67473907456356,3788,39.0735188106606,1433,14.60555596184586,77.36002699221102,79.73182817485483,63.33690834044432,65.0885159316193,77.17554993658666,79.55088236558119,63.26623515650662,65.02165404042057,0.184477055624356,180.9458092736378,0.070673183937707,66.86189119872665,252.85348,177.15594174476658,264167.7862866576,185083.0487215088,502.20699,334.6900442846448,524187.8663142388,349175.1248834008,475.67679,231.48475326495443,494284.0874661764,239770.81581005952,2161.21736,1028.610599779973,2230516.543560705,1047229.6037067332,846.56713,389.6975320134332,874314.4791416363,397001.5692232653,1394.32054,603.2865495273891,1422587.4191627402,600276.6482303371,0.38251,100000,0,1149334,12007.626649393524,0,0.0,0,0.0,43194,450.73497915730746,0,0.0,43075,447.3082106626827,1050378,0,37681,0,0,9947,0,0,77,0.8044547990430122,0,0.0,0,0.0,0,0.0,0.04769,0.1246764790462994,0.3004822814007129,0.01433,0.3674698795180723,0.6325301204819277,23.017875858518945,3.983044511194181,0.2967265047518479,0.2917106652587117,0.2059134107708553,0.205649419218585,11.0256962092967,5.933445045455478,15.434040639963664,11438.971055258258,43.6466825202561,13.624514048743343,12.784479662253018,8.710862416622028,8.526826392637705,0.5857972544878564,0.8180995475113122,0.7090747330960854,0.5717948717948718,0.0924261874197689,0.7370653095843935,0.9240780911062908,0.8535825545171339,0.7107843137254902,0.1243523316062176,0.5174396320429283,0.7422360248447205,0.651307596513076,0.5225694444444444,0.0819112627986348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019851920875915,0.0041662865310342,0.0063424088976385,0.0086653528109063,0.0109036169087432,0.0130035436438434,0.0152803261977573,0.0173610402335218,0.0194019933554817,0.0214480230962959,0.0234475122261295,0.0255228278389782,0.0275806750169679,0.0298604315805737,0.0318413504199426,0.0339333533225116,0.0360628224519818,0.0382076352992464,0.0401289785729144,0.0420878227705645,0.0566353012438252,0.0713283932010382,0.0848606288226099,0.0977133601194858,0.11013527048826,0.1260162171876817,0.1372942124915139,0.1478647667897543,0.1577991840919285,0.1676892054230307,0.1797979145122371,0.1913592936823085,0.2017975720822057,0.2112702229995627,0.2197686183081863,0.2283243075628204,0.2365421081985499,0.2446568103884423,0.2515814533499603,0.2584799606195551,0.2631512012393923,0.2687934560327198,0.2746136656537829,0.2788145027111787,0.2831097894034108,0.2869646572205876,0.2911773901081723,0.2941751889728768,0.2971344333522991,0.2989166249308063,0.2955823401221448,0.2933071136841815,0.2901808348825418,0.2869874192942672,0.2839376085246582,0.2800158943636141,0.2763006327615862,0.2767963655973722,0.2783361393126201,0.2795475530932594,0.2799053316188666,0.2805666345757117,0.2818531214293134,0.2826111049540064,0.2846722288438617,0.285127277426024,0.2859808855963354,0.2913373527849802,0.2960186863756798,0.299126723831351,0.3053767340647384,0.3097223688377494,0.3133594673635741,0.3143868102085372,0.3181439288691303,0.3209025017535656,0.3256970610399397,0.3314651721377101,0.3388722418959412,0.3339687380861609,0.0,1.9043391262742304,51.71603510709777,136.03556801976816,192.43774829024989,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95757,47785,455.716031203985,4745,48.45598755182389,3814,39.28694507973307,1440,14.63078417243648,77.33346816806463,79.69487535663522,63.32120940122799,65.06992685515657,77.14843595472198,79.51405653449442,63.250395671842426,65.00310508184141,0.1850322133426516,180.81882214080736,0.0708137293855628,66.82177331515504,253.59422,177.61154944518867,264830.76955209544,185481.3211119068,502.2029,335.0479836336364,523905.7719017931,349346.27198549546,475.37733,231.84949404649996,493498.3552116294,239855.8405892324,2172.28384,1036.0022069803408,2236971.333688399,1050482.2327038413,855.8343,394.55056844990514,880629.3325814301,399140.54365983285,1399.71182,602.6316280462694,1423756.1327109244,597638.0051657478,0.37727,100000,0,1152701,12037.762252367973,0,0.0,0,0.0,43250,451.08973756487774,0,0.0,42912,445.1580563300855,1045589,0,37532,0,0,9920,0,0,104,1.0860824796098456,0,0.0,0,0.0,0,0.0,0.04745,0.1257719935324833,0.303477344573235,0.0144,0.3665176757415684,0.6334823242584315,22.929883623906385,3.990278735834717,0.313581541688516,0.2920818038804404,0.1906135291033036,0.2037231253277399,11.335683688778916,6.178036488549416,15.437902027226624,11346.501800840691,43.8854360196671,13.84767635727666,13.5851501082336,8.049537652542217,8.403071901614624,0.5862611431567908,0.8123877917414721,0.7031772575250836,0.562585969738652,0.1042471042471042,0.7674223341729639,0.9065606361829026,0.8831908831908832,0.75,0.1301775147928994,0.5040030499428135,0.734860883797054,0.6284023668639053,0.5062611806797853,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025026597092051,0.0048878432645114,0.0070945740210705,0.0091548294011258,0.0110758528101543,0.0132778054964412,0.0153835175141703,0.0174521850952215,0.0196946159192183,0.0216394382344511,0.0238153820918168,0.0259845591556814,0.0280023035313959,0.0304634397528321,0.0324374516378643,0.0344913125717061,0.0366961077689304,0.0387448897005416,0.0407838652666597,0.0424417272481096,0.0572448564181254,0.0711258097939277,0.0843520141023892,0.0966398485565546,0.108673872923807,0.1227120364593797,0.1341616093027203,0.1448687655661281,0.1557119665057461,0.1650454199332911,0.1768888505833809,0.1885820637119113,0.1988209958452067,0.2079108281648235,0.2167929862386834,0.2262604786108988,0.2344292492324867,0.2414922349763673,0.2487686965205746,0.2548774902679185,0.2614014801110083,0.2663727886065736,0.2723918108597178,0.2768976542012429,0.2806689871805756,0.2852416676915508,0.2887531539633765,0.2921682157549901,0.2951919348584723,0.2973314884364499,0.2939514990114191,0.2912450747539093,0.2877642230717337,0.2852773569934357,0.2817010041679645,0.278626830051861,0.274885411727517,0.2748824483510002,0.274882809170715,0.2755169281732533,0.2761556269135987,0.2771698484550285,0.2782753593001458,0.2796719416785206,0.281824924041245,0.283525501194557,0.2853104949263687,0.2904505968376976,0.296018162766329,0.3007595733795112,0.3041988003427592,0.3083285044513512,0.3108082765518534,0.3139183055975794,0.3172690763052209,0.3214454976303317,0.3262389784128914,0.3358224016145307,0.3351724137931035,0.3375382262996942,0.0,2.0176841489401065,51.91146215318671,139.03228052871765,190.21261426215924,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95798,48011,458.0784567527506,4875,49.6565690306687,3894,40.063466878222926,1435,14.666276957765298,77.34149214859087,79.67983619809539,63.33904717832892,65.07199043085961,77.16023356031754,79.49904677425747,63.27163247611937,65.00614173695173,0.1812585882733373,180.789423837922,0.0674147022095468,65.84869390788128,253.28006,177.43729402629572,264389.48621056805,185220.01923453063,500.27865,333.50182604652343,521648.6669867847,347556.63453160005,475.67622,232.5468690837194,491740.0885195933,239138.848430158,2211.24032,1046.4094849483192,2278827.658197457,1062911.6361801452,875.82626,395.054447251395,900853.4833712603,399018.53601652686,1387.28742,587.2117794114797,1420840.539468465,592093.842584152,0.38004,100000,0,1151273,12017.703918662184,0,0.0,0,0.0,43072,449.0177247959248,0,0.0,42990,443.9654272531786,1052078,0,37702,0,0,9930,0,0,92,0.9603540783732436,0,0.0,0,0.0,0,0.0,0.04875,0.1282759709504262,0.2943589743589743,0.01435,0.3546420141620771,0.6453579858379229,22.90823128256921,4.0282583465553845,0.3068823831535696,0.288135593220339,0.2067282999486389,0.1982537236774525,11.88989443299792,6.800645184841014,15.265618866495508,11443.199873916685,44.82199592455468,13.907541493577092,13.641698857425752,8.979763705280165,8.29299186827166,0.5955315870570108,0.803921568627451,0.7238493723849372,0.577639751552795,0.1126943005181347,0.7696817420435511,0.9177215189873418,0.8845070422535212,0.7602040816326531,0.1242603550295858,0.5185185185185185,0.720679012345679,0.655952380952381,0.5188834154351396,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.0045720426183307,0.0069004008321071,0.009063935292444,0.0112326397720913,0.0135274164468121,0.0155128100522193,0.0176556484800212,0.0199912059145337,0.02230209197309,0.0245465451301664,0.0265141401901788,0.0285429223838225,0.0305852296725145,0.0326464913276308,0.0347910572719097,0.0366750191555012,0.0385054251986473,0.0404509559434746,0.0421802131912058,0.056452790818988,0.0709364447093017,0.0836904699533714,0.0970484086204541,0.1089064047714388,0.1248797810164977,0.1359006158510085,0.1464618002020309,0.1574319132587723,0.1664130318293859,0.1780198254243308,0.1887918360287122,0.1995111352525801,0.2092075356237433,0.2177550571679859,0.226854106707992,0.2355314335387667,0.2436625726923681,0.2503283514492753,0.257611776538356,0.263488949160367,0.2694960150296976,0.2751742057399315,0.2787671478633194,0.2836416086882742,0.2870966948652371,0.2918221878237856,0.29544445431134,0.299072054515184,0.3008753022815687,0.2972922176428734,0.2944379672176119,0.2913060582218725,0.2887453874538745,0.285688873076581,0.2819604549965646,0.2782005936967094,0.2777195453503226,0.2788005864102826,0.2792276038976076,0.2806364758236416,0.2811415272956769,0.2823642519750867,0.2832095295456066,0.2852822580645161,0.2868364241683356,0.2877153942713683,0.2923392181588903,0.2985442014206343,0.3020118249275822,0.3060319202451182,0.3046396420390987,0.30818365798128,0.3145377828922133,0.3183322303110523,0.3179115128449096,0.3255562422744129,0.3261091801267634,0.3302879291251384,0.3318095238095238,0.0,2.226699048476596,51.85899996205727,144.42044538484976,195.2433191748942,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95713,48460,461.0136554073115,4913,50.149927387084304,3902,40.29755623583004,1466,15.003186609969388,77.3419109081298,79.71109189399954,63.33255108723839,65.08110688352758,77.15226421089729,79.52270851499496,63.26007754315364,65.01109927111776,0.1896466972325186,188.38337900457705,0.072473544084751,70.00761240982456,252.48806,176.8511430248215,263797.03906470386,184772.3329378679,499.45134,333.2442880515414,521367.95419639966,347716.46281230496,477.20864,233.0934301323385,495810.01535841526,241373.79840395332,2225.96968,1057.122085260375,2300236.289741205,1079035.8313503652,882.72739,402.0687793048185,910423.3489703592,408235.965129939,1423.79866,616.0451939156953,1458350.652471451,618664.562437381,0.38315,100000,0,1147673,11990.774502941083,0,0.0,0,0.0,42989,448.664235788242,0,0.0,43186,448.3507987420727,1052500,0,37773,0,0,10016,0,0,81,0.8462800246570477,0,0.0,1,0.0104479015389758,0,0.0,0.04913,0.1282265431293227,0.2983920211683289,0.01466,0.3603056426332288,0.6396943573667712,23.195727916308964,4.05310654286904,0.3077908764736032,0.2906201947719118,0.199128651973347,0.2024602767811378,11.170974733987697,5.981944299747295,15.780578941725937,11544.14587055281,44.97338284059701,13.961060103243604,13.72892330260256,8.663943712412479,8.619455722338362,0.579446437724244,0.7901234567901234,0.7035803497085762,0.5405405405405406,0.1265822784810126,0.7338308457711443,0.9129511677282378,0.8739255014326648,0.628140703517588,0.1336898395721925,0.5103857566765578,0.702865761689291,0.6338028169014085,0.5103806228373703,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0044998479781088,0.0067052140393588,0.0092630210449337,0.0114694757392117,0.0136637615052537,0.0163715506080716,0.0185453580468686,0.0210139002452984,0.0230692076228686,0.0254333719464064,0.027775495954327,0.0300484353629567,0.0321234662023634,0.0344037643950963,0.0364286674178442,0.0384631317315658,0.0404840232879129,0.042309172012935,0.044456949915588,0.0591970589464009,0.0740155337366801,0.0871586104145463,0.0996045269047919,0.1120545980042615,0.1276940168227265,0.1385770969042415,0.1494666467945578,0.1588607324473313,0.1682329213868863,0.1803289282367766,0.1918943780098479,0.2023909236275032,0.210871633369419,0.2195411653432461,0.2296043746817507,0.237282276589576,0.2453521570037992,0.2521435376309939,0.2584162947705687,0.2643504007587235,0.2709766484159296,0.2761868698821413,0.2809014340997041,0.2846696709463481,0.2884774220589504,0.29184721352536,0.2945688120071228,0.297710713962186,0.3006230324424715,0.2985205110961668,0.2951755951563744,0.29212299915754,0.2890367362221166,0.2870489643021069,0.2833668985719517,0.2790327411447578,0.2794786249304942,0.2794783615376758,0.2796148643838542,0.2794024276377218,0.2805853158972743,0.2817145844223732,0.2822033898305084,0.2835441824803527,0.2850136239782016,0.2874858115777525,0.2925768291919634,0.298260352129931,0.301672214297036,0.3064296726217466,0.3105783986876224,0.3161488348784765,0.3174675472557504,0.3215759849906191,0.3279404818138876,0.326999087868653,0.3338062423996757,0.3331497797356828,0.3359848484848485,0.0,1.8629002755662876,52.95868535607896,144.38679829848357,194.28892128902896,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95715,47801,456.3548033223632,4821,49.229483362064464,3849,39.7011962597294,1443,14.793919448362326,77.33810060160408,79.7229677615021,63.31256206328344,65.07585148809056,77.15044633169718,79.53521280905298,63.24300826090006,65.00798188685542,0.1876542699069006,187.75495244912577,0.0695538023833748,67.86960123514518,253.24508,177.31310326355432,264582.43744449667,185251.11347600096,497.58366,331.7023573731866,519361.6047641435,346054.0744639675,471.54581,230.17507509372055,489331.5676748681,237882.6266523509,2187.75204,1041.1211464786857,2258641.425063992,1060752.417970462,879.50232,400.36974840153687,905135.3392885128,404592.827036012,1399.5614,596.1922339781994,1435791.6523011022,600748.7567942622,0.37899,100000,0,1151114,12026.474429295304,0,0.0,0,0.0,42935,448.059342840725,0,0.0,42659,442.334012432743,1050187,0,37667,0,0,9945,0,0,73,0.7626808755158543,0,0.0,1,0.0104476832262445,0,0.0,0.04821,0.1272065225995408,0.2993154947106409,0.01443,0.3683373110580747,0.6316626889419252,22.791849537938845,3.961826175519479,0.3177448687970901,0.2834502468173551,0.2039490776825149,0.1948558067030397,11.32818671378501,6.211618183349219,15.4927157290457,11329.14457073541,44.39985402403681,13.593143884193733,13.95570175350549,8.673987103806324,8.17702128253127,0.5944401143154066,0.8010999083409716,0.7146361406377759,0.5707006369426751,0.1226666666666666,0.7660626029654036,0.9154929577464788,0.8784530386740331,0.7297297297297297,0.1294117647058823,0.5153700189753321,0.7053872053872053,0.645760743321719,0.5216666666666666,0.1206896551724138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022906488820417,0.004514100223169,0.006954738359697,0.0087302071264508,0.0109481995502691,0.0131290805569419,0.0152275462537992,0.0176391882092189,0.0196758193997034,0.0216454205703169,0.023667182805402,0.0256605091028576,0.0276789570009665,0.0296892056103639,0.0316391058109906,0.0337918134939908,0.0358751358906662,0.0380433654943458,0.0400968895542248,0.042228726784096,0.0568701572648858,0.0703735881841876,0.0837818838070655,0.0969553557343429,0.1088228781120496,0.1246205430333287,0.1352148541114058,0.145341099055549,0.1549747283160403,0.1641403576524099,0.1763032869008758,0.1879715525919832,0.1983087923210029,0.2069029646646975,0.2161058908962876,0.2254429411960243,0.2338807819844362,0.2414002633089153,0.2487824260657319,0.2555376029885294,0.2621908863573214,0.2682569967108728,0.2743148049487953,0.278755706805028,0.2822350440327968,0.2855010608378152,0.2885089861606863,0.2925363250856393,0.2951679312220007,0.2982039718332147,0.2945685354275648,0.2911896876331304,0.2879623119111236,0.2845669132384537,0.2819950183845333,0.2778465630302196,0.2736930167950498,0.2745489342908085,0.2751685852462366,0.2754131018658508,0.2755446856972163,0.2760459715826347,0.276499812132092,0.2782942107492365,0.2801494002442119,0.2809157149501318,0.2821562702962189,0.2855227464064108,0.2897598943674206,0.2945630001569119,0.2986104885701479,0.3006839659583355,0.3043129016312407,0.3082140727489564,0.3146769598382501,0.3152148664343786,0.316746126340882,0.3153437069135316,0.3189102564102564,0.3221476510067114,0.0,2.0122451431740624,53.10854310886369,141.4794570111616,188.80210739536085,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95654,47844,457.0012754301964,4713,48.10044535513413,3783,39.00516444686056,1417,14.458360340393504,77.27782633283482,79.68824220765856,63.2892740309558,65.07213706434351,77.09215373875209,79.50688405113559,63.21724164320468,65.00442258794061,0.1856725940827317,181.35815652297535,0.0720323877511148,67.71447640289807,253.19536,177.27329196791302,264699.1866518912,185327.63080259372,499.70567,333.55193921409887,521888.8598490392,348186.00290013885,471.30075,230.148040538867,489466.9224496623,238060.9163025982,2159.69232,1030.1499141725017,2227175.026658582,1046312.3279449908,853.98976,385.9483489004601,880611.2342400736,391310.3952874529,1372.40682,599.7470008616496,1401189.0145733582,597338.609638221,0.37934,100000,0,1150888,12031.7812114496,0,0.0,0,0.0,42959,448.5437096200891,0,0.0,42607,442.166558638426,1048198,0,37662,0,0,9956,0,0,100,1.0454345871578816,0,0.0,0,0.0,0,0.0,0.04713,0.1242421047081773,0.3006577551453426,0.01417,0.3552281563331287,0.6447718436668712,23.194861289591344,3.979728674776613,0.3143008194554586,0.2831086439333862,0.2061855670103092,0.1964049696008458,11.25437046986008,6.255647003490386,15.408659437952878,11386.351816228484,43.63534128796942,13.282183677035588,13.518901431788027,8.613709991502523,8.220546187643292,0.5952947396246365,0.800186741363212,0.7064760302775441,0.6012820512820513,0.1157469717362045,0.7461273666092944,0.9088937093275488,0.8783382789317508,0.7258064516129032,0.095505617977528,0.528424265547501,0.7180327868852459,0.6384976525821596,0.5622895622895623,0.1221238938053097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022292929088219,0.0045533830926496,0.0069640427994233,0.0091974348811447,0.0113535785136578,0.013763103472866,0.0159000509943906,0.0180885942782436,0.0202328102943884,0.0222493111113387,0.0241948717948717,0.0262446971331135,0.0282253915334115,0.0301268771322263,0.032202444866606,0.0342473546478552,0.0362701817654251,0.0382027372224875,0.0402418465252773,0.0422714381047714,0.05717241595519,0.0713432898347332,0.0847503883780493,0.0980404537896487,0.1103794689966654,0.1256893649903145,0.1368371865807164,0.1469804807364473,0.1569996898296202,0.1659508675485311,0.1780903114559758,0.1888663901852714,0.2003983803552769,0.2096474141515834,0.2178211281870624,0.2264209488137058,0.2345749313324847,0.2424607282711437,0.2495233339386235,0.2562473528166031,0.2615567837569086,0.2673266169561253,0.2724961269646045,0.2767374713965664,0.280165660638595,0.2834545678707927,0.2879671581266114,0.2913295680048847,0.2948201494760566,0.2981560620449509,0.294909272156588,0.2919961427193828,0.2893307947253367,0.2859869848156182,0.2839208686598244,0.2803567870771966,0.2767973131396343,0.2762122282653346,0.2768436880595994,0.2774129069103369,0.2784575662325999,0.2780365531125409,0.2787645755840682,0.2794834687743515,0.2819696461914109,0.2827788142620232,0.285142954390742,0.2919398864242462,0.2968036529680365,0.3009358394797367,0.3069311424810494,0.3129682388941648,0.3145660188714616,0.3138846737481032,0.3164237668161435,0.3214032600992204,0.3243243243243243,0.3288508557457212,0.3301965125934126,0.3358691517687333,0.0,2.132920132182458,50.59440691603493,141.51529572592275,188.4627409698901,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95830,47966,456.4958781174997,4827,49.41041427527914,3848,39.695293749347805,1492,15.318793697172076,77.39792083527668,79.70137346653962,63.37134666233783,65.07152063469461,77.21306121870163,79.5165318055455,63.30291982481761,65.0045710564087,0.1848596165750535,184.8416609941239,0.0684268375202208,66.94957828591441,251.80738,176.36530037700825,262764.66659709904,184039.75829803635,501.11328,334.14082358606464,522402.306167171,348165.49127679045,478.95299,233.26150261609072,496495.919858082,240890.47106004783,2195.73072,1031.0021742630906,2267259.355108004,1051968.6889871554,880.90783,396.4278232433245,905907.2628613168,400469.6846916569,1452.2104,606.1226973688769,1492878.4096838152,613674.7847273168,0.37995,100000,0,1144579,11943.84848168632,0,0.0,0,0.0,43129,449.5878117499739,0,0.0,43302,448.55473233851615,1057694,0,37893,0,0,9716,0,0,86,0.88698737347386,0,0.0,1,0.0104351455702807,0,0.0,0.04827,0.1270430319778918,0.3090946757820592,0.01492,0.3580907110318875,0.6419092889681125,23.371702716133388,4.007595771557624,0.304054054054054,0.284043659043659,0.2032224532224532,0.2086798336798336,11.222525546993827,6.089696196443034,15.793767402973064,11413.926233854629,44.20316413875025,13.444900314406292,13.383512244974694,8.68099359244009,8.693757986929171,0.5922557172557172,0.8124428179322964,0.711965811965812,0.59846547314578,0.112079701120797,0.7742759795570698,0.919661733615222,0.8760806916426513,0.7688172043010753,0.1607142857142857,0.512341062079282,0.7306451612903225,0.6427703523693803,0.5453020134228188,0.0992125984251968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022778812667044,0.0045496458571877,0.0071098940108524,0.0093112516881086,0.0114366460637605,0.013504711892695,0.0159666605530761,0.0179750063759245,0.0201074851339477,0.0221092263305436,0.0242915394545417,0.0264272890484739,0.0287460831150151,0.0309023740185434,0.0331261659606485,0.035010737589824,0.0372316764082139,0.0391559397218249,0.0412543481646851,0.0432515688580378,0.0584437258787942,0.0726738409730283,0.0860908404630095,0.0983894367233657,0.1102807875542813,0.1259553685634851,0.1371555206820134,0.1479415896802758,0.1577041404948083,0.1667238679508355,0.1788187153394712,0.1906863063179979,0.2010326086956521,0.2097548178350076,0.218512247680197,0.2278241427401323,0.2354298582003032,0.244152720488238,0.2513345346979021,0.2579711802378774,0.2628550299276652,0.2679978980557015,0.2734760925571391,0.2770728440388916,0.281263249706235,0.2860443679714865,0.2897067997504678,0.2932425234000456,0.2955525710891293,0.2988325927484027,0.2960391394678641,0.2924640738660493,0.2900370349587565,0.2863492520138089,0.2837072420473535,0.2791363401041508,0.275429596525461,0.2748278450442218,0.2755861365953109,0.2755134674152512,0.2761620866325104,0.2774043941359116,0.2766156923205133,0.276571097596293,0.2781441074211725,0.2793873312564901,0.2791551621075403,0.2844884488448845,0.2907062156773584,0.293327539209102,0.2977862630119551,0.3006213159152461,0.3047283258830195,0.3102897558749715,0.3150517403574788,0.3201702530148971,0.3228610645112094,0.3200962695547533,0.31591770438549,0.318660647103085,0.0,1.7771684299042263,51.43753081008413,140.7625881908246,195.5836322490528,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95554,48294,462.1470582079243,4865,49.793833853109234,3893,40.16577014044415,1383,14.023484103229586,77.19945181010942,79.66757553464961,63.224607941291474,65.05249366412164,77.02444655079906,79.49775646575982,63.15884425682128,64.99110287608512,0.1750052593103674,169.8190688897938,0.0657636844701912,61.39078803651898,251.97106,176.64115286864794,263694.9368943215,184860.0297932561,503.74694,335.3658286900834,526603.3133097516,350399.330329082,477.34983,232.84653293996067,495936.7059463759,240937.63636041983,2204.80748,1044.9016937711888,2274970.34137765,1061710.634118128,866.41731,398.6376055387973,886341.2520668941,397010.1640582551,1348.00892,574.5882980334133,1368846.5370366494,568635.7871663225,0.3824,100000,0,1145323,11986.133495196433,0,0.0,0,0.0,43404,453.6283148795445,0,0.0,43301,449.4631307951525,1044645,0,37486,0,0,9874,0,0,72,0.7535006383824853,0,0.0,0,0.0,0,0.0,0.04865,0.1272228033472803,0.2842754367934224,0.01383,0.3588526211671612,0.6411473788328388,22.849932295750627,3.928034182878271,0.3113280246596455,0.2928332905214487,0.2003596198304649,0.1954790649884407,11.32972484998507,6.224576810710289,14.907823196472442,11509.445097905638,44.94668377138966,14.117087335116596,13.914651479181702,8.579925574284115,8.335019382807248,0.5918314924222964,0.8157894736842105,0.693069306930693,0.5794871794871795,0.1077529566360052,0.761344537815126,0.9153225806451613,0.8425655976676385,0.7258064516129032,0.1696969696969697,0.5172031076581576,0.7391304347826086,0.6340621403912543,0.5336700336700336,0.0906040268456375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023922717458515,0.0047482802702867,0.0069562921439597,0.0091609728322759,0.0114936677932972,0.0137413606801361,0.0157371026177476,0.0177396280400572,0.0198117069177241,0.0220436774305946,0.0238564506857189,0.0259737588944186,0.0279193829105776,0.0300695261083947,0.0320457175925925,0.0342932262338522,0.0361728164602907,0.0382245040064019,0.0402787325792138,0.0424674551889008,0.057132098365114,0.0712188574783994,0.0849205348133198,0.0979390133395149,0.1105521264902342,0.126465661641541,0.1380201684962982,0.1488725976672962,0.1587342395903632,0.1680896363362653,0.1803142378921224,0.1916248887731406,0.2027248134735372,0.2131701324910064,0.2209507625080002,0.2299781205921878,0.2381160149913296,0.2471318179254329,0.2546240473211238,0.2606224814300311,0.2662717778112647,0.2715914817809969,0.2766620827010622,0.280982213581047,0.2842922507788162,0.2879193884985367,0.2922538304199972,0.2947737412364563,0.297723292469352,0.3010202733063727,0.2974237928243863,0.2942375495813134,0.2908230122162573,0.2880515688910087,0.2862666369246784,0.2829078427166018,0.2786062563323201,0.2789857452538921,0.279127416955875,0.2792903848215243,0.2798132453311333,0.2810289643181728,0.2819270538392164,0.2833139690767718,0.2849762099293507,0.2854798374492028,0.2860153202152803,0.29035593432761,0.2965063362038787,0.3013002364066194,0.3047760388559093,0.3097846024841465,0.313833746898263,0.3200210589651023,0.3240920432492375,0.3289627721845001,0.3306850547144356,0.3350393700787402,0.3426498253157753,0.3344620015048909,0.0,2.1498983419969653,51.97967204838941,148.80165647795582,190.6792473630651,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95680,48173,460.200668896321,4820,49.24749163879599,3854,39.68436454849498,1458,14.820234113712374,77.33990302576841,79.72926776530255,63.32261558699434,65.08847101324349,77.15031080007701,79.54493832896658,63.25049293092558,65.02105265913309,0.1895922256913991,184.32943633597176,0.0721226560687569,67.41835411040142,252.10306,176.60842426536945,263485.639632107,184582.3832204948,500.67005,334.8468060751927,522666.4297658863,349356.18318895565,476.54077,232.6086584196956,494052.4456521739,240091.91234317032,2194.64168,1038.9834972856577,2260664.966555184,1052828.2371296594,882.24419,400.1209106803286,909308.162625418,405417.7946078111,1410.0005,605.5484997244358,1435103.1145484948,599974.4965267325,0.38159,100000,0,1145923,11976.619983277593,0,0.0,0,0.0,43158,450.4494147157191,0,0.0,43202,447.5752508361204,1050869,0,37690,0,0,9879,0,0,72,0.7525083612040133,0,0.0,0,0.0,0,0.0,0.0482,0.1263135826410545,0.3024896265560166,0.01458,0.358392999204455,0.641607000795545,23.03521349141545,4.06741205298924,0.3124026984950701,0.2828230409963674,0.2036844836533471,0.2010897768552153,11.462428899683644,6.311871467271527,15.645903832376364,11400.835683100831,44.32443696909165,13.447714942121149,13.71544871190702,8.735233446311797,8.42603986875168,0.5913336792942397,0.8045871559633028,0.7151162790697675,0.5910828025477707,0.0993548387096774,0.7646048109965635,0.9279835390946504,0.8787878787878788,0.7081081081081081,0.1104294478527607,0.5163568773234201,0.7052980132450332,0.6533180778032036,0.555,0.0964052287581699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0048147585018498,0.0070623332081866,0.0092938690935684,0.0115412383189449,0.0135792666788819,0.0156460227504382,0.0177798644566016,0.0196781975793261,0.021709980859187,0.0237226277372262,0.0257552583224693,0.0277952019085421,0.0298198448750038,0.0321501924883113,0.0343893461268042,0.036344422457289,0.0383230052211461,0.0403216578068596,0.0423859561337669,0.0569333305476046,0.0709417368999633,0.0846387090682082,0.0977108230937552,0.1098592737937,0.1254998624717009,0.1362126950783496,0.1470052901042054,0.1564736291201162,0.1665344284090665,0.1782683609735085,0.1892792607580692,0.1997585670628922,0.2086877610373707,0.2165898110341943,0.2257503599512681,0.234551924943384,0.2424828734377988,0.2505302798289493,0.2577553334020406,0.2634573354764851,0.2689646305257498,0.2734282605610483,0.2773041833289433,0.2816932166992223,0.2856492195578315,0.2892891516568128,0.2920526014865637,0.2952866439818349,0.298389010467477,0.2957935942103068,0.2935526424272405,0.2905821773263176,0.2882613654409748,0.2857927308885294,0.2822169278230856,0.2785677087442991,0.2784105786855197,0.2785098532637342,0.2784072745355734,0.279694343490821,0.2807062385717937,0.2812786339025406,0.2823380036976811,0.2830166071556951,0.2837637897469175,0.2849724760229272,0.2884127431632365,0.2910406038157803,0.2949761989063299,0.2980057751308428,0.3009586010744759,0.3037864138232175,0.3058300022626141,0.3108346485934453,0.3145606007274434,0.3222424794895168,0.3266626238124115,0.3277148383531362,0.3375382262996942,0.0,2.3288945147351656,50.3418410965965,147.7299449897633,189.7451670561016,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95784,48248,461.1730560427629,4885,49.75778835713689,3939,40.53912970851081,1460,14.87722375344525,77.331780499572,79.67206001972984,63.32970022966426,65.06266863937466,77.13755929079312,79.48179590036757,63.25595714087375,64.9927800727625,0.1942212087788846,190.2641193622685,0.0737430887905148,69.88856661216403,252.15476,176.57103490960975,263253.5287730728,184342.93296334436,500.34938,334.2443346699243,521800.46771903447,348384.1922136519,484.13752,236.90134390437748,501343.77349035325,244238.2271462117,2244.36,1071.3287624295103,2311747.6405245136,1087084.6095689368,886.73591,409.2921465722013,909641.808652802,411191.624407952,1412.60518,610.2175357137864,1440571.0348283637,606978.6889505468,0.38125,100000,0,1146158,11966.069489685124,0,0.0,0,0.0,43206,450.4614549402823,0,0.0,43710,452.3928839889752,1051579,0,37827,0,0,9926,0,0,94,0.9709346028564269,0,0.0,0,0.0,0,0.0,0.04885,0.1281311475409836,0.2988741044012282,0.0146,0.3651607812191754,0.6348392187808246,22.43101576501743,3.9932486847167135,0.310992637725311,0.2998222899212998,0.1967504442751967,0.1924346280781924,11.395335996708631,6.233726349571315,15.818510594856392,11413.184320680051,45.71842749754333,14.602147415505216,13.984768719036122,8.802912340734942,8.32859902226705,0.5960903782685961,0.825571549534293,0.6873469387755102,0.5909677419354838,0.0963060686015831,0.7732463295269169,0.9206349206349206,0.8586956521739131,0.7373737373737373,0.141025641025641,0.5160339107998526,0.7548005908419497,0.6137689614935823,0.5407279029462738,0.0847176079734219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473790833122,0.0042678723490531,0.0065451003074675,0.0087569588361981,0.0107704042715484,0.0129227385207588,0.0149772639220244,0.0173343133651843,0.0195865960622354,0.0218354916312637,0.0235373717285001,0.0257513373651083,0.0275775554481609,0.0296044499381953,0.0316221850682188,0.0338147271355173,0.0357305605037491,0.0378360438101559,0.039695735306343,0.0417946502014764,0.0568918199747472,0.0707635983263598,0.0841658367838985,0.0966426732517207,0.1089487603654103,0.1246843000708013,0.1356144200294675,0.1456964205959293,0.1563607257203842,0.1653613328333422,0.1780162762659318,0.1894037729318103,0.1996128456929083,0.2085962705747252,0.2170999053551383,0.226780708848979,0.2356498164738433,0.2432657376477601,0.2512672223167205,0.2581132593839074,0.2636543329749974,0.2697782036599901,0.2751206358217428,0.2798495393940846,0.2838408859099519,0.2881456194619375,0.2917109923530369,0.2943116555667333,0.297305350433994,0.2995104055320216,0.2963969539595834,0.2929992306846906,0.2908425938950626,0.2869192218258496,0.283958132284166,0.2796067742627017,0.2758620689655172,0.2760504684244204,0.2773582971744849,0.2774145272497283,0.2792002543625039,0.2806028962663777,0.2811310494834149,0.2828749247139128,0.2846881906409148,0.2875052018310445,0.2893488940000568,0.2936962302518379,0.299299578353138,0.3028891695610988,0.3067264980509473,0.3109759322930441,0.3139600780807254,0.3169008735282947,0.3191828319745103,0.3237690400283387,0.3287922853206796,0.3312612793262482,0.3356164383561644,0.3313817330210772,0.0,2.2737599483371853,53.3166079664579,153.60294749901618,188.3867100914433,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95694,48094,459.67354275085165,4796,49.031287228039375,3814,39.34415950843313,1456,14.88076577423872,77.34192318165195,79.71737461388007,63.32298576779221,65.07503603234694,77.15484478114553,79.53222659120678,63.25219637042933,65.00676465519585,0.1870784005064223,185.1480226732889,0.0707893973628728,68.27137715109188,252.615,176.91703741937545,263982.067841244,184877.87888412588,498.96418,332.9211775662975,520912.34560160514,347397.80714182445,473.67447,231.0853748028001,491580.5275147867,238799.84239625203,2165.82604,1031.6356637870613,2235074.0485296883,1049847.831407467,869.24595,397.9137740562152,892899.816080423,400358.8250634475,1408.47032,602.4277272420268,1440975.9232553763,604743.6735451377,0.38008,100000,0,1148250,11999.184901874723,0,0.0,0,0.0,43018,449.0250172424603,0,0.0,42786,443.7686793320376,1051013,0,37700,0,0,10026,0,0,96,0.9927477166802516,0,0.0,1,0.0104499759650552,0,0.0,0.04796,0.1261839612713113,0.3035863219349458,0.01456,0.3736483780536644,0.6263516219463356,22.97210236317667,3.964325821391917,0.3138437336130047,0.2871001573151547,0.2066072364971158,0.1924488725747247,11.463430246263634,6.426210842344256,15.616624525871456,11427.343629960937,43.94882212689852,13.319264869028164,13.778465802524542,8.799780444925263,8.051311010420555,0.5933403251179864,0.806392694063927,0.6950710108604845,0.583756345177665,0.1198910081743869,0.7622673434856176,0.9025974025974026,0.8664772727272727,0.7405660377358491,0.141025641025641,0.5174772036474165,0.7361769352290679,0.6236686390532544,0.5260416666666666,0.1141868512110726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002257930601541,0.004530665612552,0.0067967172869939,0.0087655148597314,0.0107796975582968,0.0129197124880373,0.0151397752992272,0.0174302839696527,0.0196838316495562,0.0217273332309425,0.0237877964502865,0.0261033866628329,0.0280789089338242,0.0301478543094121,0.0322567326252335,0.0341133527045612,0.0360361293530277,0.0382483600431786,0.0401301969592978,0.0420448269753774,0.0562687362252838,0.0703306598538311,0.0842385885365828,0.0972347902944085,0.109447539461467,0.1259100914324415,0.1367777282283238,0.1473874833555259,0.1571262119317149,0.1673733134398849,0.1792599301332643,0.1901920223538713,0.2003461375189124,0.2098306123342233,0.2179224724295053,0.2273965925958747,0.2361844381690125,0.2438881635225789,0.2508989439535385,0.2571742665414653,0.2628065710319296,0.2683754284577859,0.2737806393580381,0.2783251822017645,0.2835606953268303,0.2869252377901533,0.2915759168857179,0.2940435761437784,0.2969310688793025,0.3000554338357574,0.2963556969190544,0.2930649694164324,0.2899388267132748,0.2877202603437577,0.2860233216280689,0.283076782114715,0.2777479723545933,0.2779807046567624,0.2783802216538789,0.2786771507863089,0.280055256869773,0.2814569536423841,0.2819999165310295,0.2831933334818743,0.2831122266045177,0.2850935050826414,0.2869127990734725,0.2917159763313609,0.2947872561949052,0.2997252747252747,0.3033965315841495,0.3085072904647015,0.3107305793387913,0.3122612538386637,0.3149722735674676,0.3189545507112293,0.3201069995541685,0.3247981091195588,0.3275908479138627,0.3222713864306785,0.0,1.9854022961082751,51.59156869099601,141.34555665872637,189.4403489915548,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95730,47775,455.2386921550193,4821,49.00240259061945,3855,39.59051499007625,1443,14.634910686305233,77.32392886815877,79.68804679673167,63.31606620966248,65.06499961469434,77.13756425852847,79.50673411886349,63.24467719246783,64.99829891064017,0.1863646096303028,181.31267786817773,0.0713890171946474,66.7007040541705,250.88712,175.78038423512697,262077.84393607025,183621.0009768379,496.83412,331.7434970047613,518335.47477279854,345882.376168036,476.37901,233.0484498436103,493204.1679724224,240077.8286563762,2204.32488,1051.21846323853,2267680.0584978587,1063211.8705109514,868.52464,401.79750058245247,892305.7139872558,404847.0122855617,1389.41472,598.1909103854954,1411619.2625091402,591909.3156496114,0.37852,100000,0,1140396,11912.629269821373,0,0.0,0,0.0,42795,446.3386608168808,0,0.0,42995,444.7717538911522,1059356,0,38012,0,0,10008,0,0,100,1.0341585709808836,0,0.0,0,0.0,0,0.0,0.04821,0.1273644721547078,0.2993154947106409,0.01443,0.3597609561752988,0.6402390438247012,23.017085032325827,4.013691438342699,0.3167315175097276,0.2804150453955901,0.2147859922178988,0.1880674448767834,11.438879406268295,6.350121373722345,15.486094630380112,11449.794066899984,44.51273560119898,13.41586874036248,13.96513453778499,9.235681167653643,7.896051155397871,0.5971465629053178,0.820536540240518,0.6986076986076986,0.6026570048309179,0.0868965517241379,0.756357670221493,0.9071729957805909,0.8601583113456465,0.7537688442211056,0.0958083832335329,0.5235204855842185,0.7528830313014827,0.6258907363420427,0.5548489666136724,0.0842293906810035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022891407618989,0.0046943596710906,0.0068504272636856,0.0092665975736145,0.0113622492574358,0.0135641547861507,0.0158840201455865,0.0180673083793522,0.0201312776051038,0.0221974219045961,0.0245140255905511,0.0265822005010472,0.0286325269618678,0.0308704922592008,0.0331551574689396,0.0349792749863039,0.0369468843221743,0.0390986652274095,0.040930077783786,0.0429451048623193,0.0579121556017247,0.0722610478741211,0.0854742979383821,0.0984352983238343,0.1113677106400927,0.1267903611399073,0.1378728551873428,0.1487870849572977,0.1581826145480573,0.1670901819507435,0.1799860041987404,0.1911446617061775,0.2017199578164581,0.2107939076526093,0.2194201878450608,0.229041617754546,0.2374267700719745,0.2446159731755069,0.2516345804576825,0.2578633654287024,0.263227390659748,0.2683303861062641,0.2732788245052731,0.2770668169878983,0.2811226909559655,0.2854447705245505,0.2897597755567245,0.2928882549224381,0.2963466946593575,0.2990899845469074,0.2965048909967932,0.2929219251042512,0.2897002663359779,0.2865879223351501,0.2845303867403315,0.2807025589287352,0.2772408565472806,0.2777414182401256,0.2776368434493913,0.2785095905996124,0.2797261500578293,0.2794942990488568,0.2811763478986338,0.2821351489664686,0.2829145728643216,0.2836312689723166,0.2860013016780328,0.2907348242811501,0.2947932350572499,0.2972023833011087,0.3015098092396709,0.3021457873146103,0.3057614450327001,0.3100932611311672,0.3122492769847934,0.3153184975862474,0.3219907060410733,0.3198594024604569,0.3213347346295323,0.3298429319371728,0.0,2.646831132559484,52.56437904796876,141.94188929873712,189.155305411562,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95788,48650,464.2543951225624,4797,48.95185200651439,3871,39.764897481939286,1472,14.939240823485196,77.4066300966336,79.74513809743837,63.35719594835807,65.08781665737074,77.21184617824805,79.55514377501576,63.282946617842384,65.01790230774024,0.1947839183855535,189.9943224226064,0.0742493305156841,69.91434963049414,252.68804,177.07205206918337,263799.26504363806,184858.28294690707,503.4476,335.7531147631836,524930.9203658078,349862.5556052778,484.18055,236.2833668084105,501152.52432455,243386.22929699745,2209.10252,1058.9136895153997,2271357.330772122,1070592.2761884567,878.42824,407.5438756627294,902066.8768530504,410476.7357735081,1431.88378,623.9172631165222,1455546.8743475173,618247.2043478712,0.38546,100000,0,1148582,11990.875683801729,0,0.0,0,0.0,43281,451.1525452039922,0,0.0,43843,453.5014824403892,1050186,0,37673,0,0,9902,0,0,83,0.8560571261535892,0,0.0,0,0.0,0,0.0,0.04797,0.1244487106314533,0.3068584531999166,0.01472,0.3656925540432346,0.6343074459567654,22.993195243071007,4.0521223472013626,0.3097390855076207,0.2818393180056833,0.2045982950142082,0.2038233014724877,11.50555497392926,6.363581348367161,15.79572271547665,11532.398994906423,44.57133457265654,13.458726842189702,13.547194896387817,8.896947755743437,8.668465078335583,0.5846034616378197,0.8075160403299725,0.6939115929941618,0.5757575757575758,0.1191381495564005,0.7662551440329218,0.9244060475161988,0.8852459016393442,0.7368421052631579,0.1412429378531073,0.5015060240963856,0.7213375796178344,0.60984393757503,0.5180102915951973,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024216264413236,0.0046439942406359,0.0072660111019778,0.0094591711286995,0.0117370653268376,0.0140017514918229,0.0162517077547358,0.0182820395039044,0.0203708246453248,0.0224528224651029,0.0245147272839076,0.0265863569200459,0.0285000719439248,0.0306156063413629,0.0326148581088742,0.0346120088801693,0.0368592561940723,0.0389874257518115,0.040900921491424,0.0427988423178628,0.0577310336912177,0.0719275495691458,0.0853055235300283,0.0984709158741001,0.1106065554771211,0.1260592996470762,0.1373286836331259,0.1485151673028463,0.1573016923109755,0.1670844313044968,0.1800544478280051,0.1920910064124052,0.2029103634150582,0.2120944049452289,0.2201043669321614,0.2296567596875207,0.2384447220487195,0.245567684853118,0.2533767308935437,0.2600489859451541,0.2649129906920275,0.2706621951647016,0.2768526622040353,0.2814640103443321,0.28555645934757,0.2897051215726849,0.292882789336069,0.2958546785818704,0.2991718426501035,0.3015192677973254,0.2983318298708817,0.2947750422697843,0.2914819661980551,0.2895963517238393,0.2873488261797486,0.283599175761276,0.2801758089416806,0.2801508152839212,0.2802901891653671,0.2807970693896331,0.282439196858892,0.2833646985023131,0.2844892026578073,0.2859011305697184,0.2866903135191754,0.2865729395072875,0.2869141230517741,0.2912422360248447,0.2980885974954036,0.3022345712832153,0.3065015479876161,0.3107515657620042,0.3136551894665265,0.3209977661950856,0.3257006777798131,0.3253831086530706,0.3301702063563789,0.3334647998422402,0.3353228431904503,0.3329545454545454,0.0,2.5192852662202854,52.52445892694072,139.88286134248435,193.6846396777509,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95690,47991,457.957989340579,4812,49.16919218309123,3815,39.30400250809907,1407,14.39021841362734,77.29491858535671,79.6959790581638,63.29396199958445,65.0734625237403,77.1100583793574,79.51375323552665,63.224476489449366,65.00727765409071,0.184860205999314,182.22582263715023,0.0694855101350881,66.18486964958947,251.1905,175.97139429253917,262504.4414254363,183897.3709818572,499.84292,333.3821022091356,521826.24098651897,347867.8150372407,477.50581,232.5909370674756,494928.5296269202,240005.6564942005,2155.83248,1030.637499333883,2222082.8508726093,1046207.6490060436,893.15213,409.015043320221,913976.016302644,408032.7759642801,1370.3496,585.4786570828896,1401586.686174104,584594.3283574145,0.38018,100000,0,1141775,11932.02006479256,0,0.0,0,0.0,43105,449.9007210784826,0,0.0,43163,447.03730797366495,1058668,0,37980,0,0,10256,0,0,100,1.0345908663392205,0,0.0,1,0.0104504127913052,0,0.0,0.04812,0.1265716239675943,0.2923940149625935,0.01407,0.3720697255059106,0.6279302744940893,22.808624077411626,3.98544995160681,0.2967234600262123,0.3051114023591088,0.1997378768020969,0.1984272608125819,11.110249424056889,5.849178294296235,15.09655020266428,11439.894884638785,44.378321169016495,14.446129873468148,13.052549527191442,8.584252967994878,8.295388800362028,0.5952817824377458,0.8281786941580757,0.6890459363957597,0.5656167979002624,0.1268163804491413,0.759656652360515,0.9307535641547862,0.8504672897196262,0.7210526315789474,0.1104294478527607,0.5230188679245283,0.7533432392273403,0.625154130702836,0.513986013986014,0.1313131313131313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021490770119719,0.0042517783392695,0.0063677448839689,0.0084489858166844,0.0109531032095849,0.0130971430901103,0.0154802236825992,0.0178378047036227,0.0198674141670417,0.0220756205246929,0.0243111831442463,0.0264425793328744,0.0284523564519448,0.0306709265175718,0.0326493115051921,0.0348511329203594,0.0370147768958156,0.0390780730897009,0.0409133465099344,0.0428266194173745,0.0573022206438404,0.0706860271563321,0.0839183587806285,0.0965698653198653,0.1091417418367885,0.1246204145549195,0.1358319534666497,0.1468070608777122,0.1569865589674551,0.1670064377682403,0.1791015835398039,0.1907090464547677,0.2006566430753509,0.2096876434457583,0.2178407266489256,0.2270593445527015,0.2358427417555446,0.2434655414908579,0.2515639014089304,0.2578485873115937,0.2647041800270874,0.2701497776737655,0.2749781049541979,0.2786796796316723,0.2835104767689037,0.287301606876395,0.2902793771591648,0.2934526912757652,0.2965883676134087,0.2999367805494824,0.2970885004500934,0.2940232156087923,0.2913539646400764,0.288102856813399,0.28552368245497,0.2824621217912456,0.278124011388801,0.2784417884019478,0.2792838874680307,0.2796498359720439,0.2801820190633134,0.2820735706665613,0.2824285295718053,0.2831107339080716,0.2829498411475883,0.2840609930926626,0.2846438746438746,0.2880381873567189,0.2932317691044411,0.2962509382530715,0.3012404016538689,0.3051876088447939,0.3072070946789907,0.3126698882512836,0.3179190751445087,0.3208568738229755,0.3226000601865784,0.3318663732746549,0.3326186009112838,0.3374164810690423,0.0,2.231829216453828,50.65639143847019,152.1330032434647,183.36947442740137,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95716,47894,456.3918258180451,4952,50.43044005181997,3925,40.3694262192319,1504,15.337038739604663,77.3593554540744,79.73127494877379,63.33143217950936,65.084199837205,77.16583876714677,79.53939577232772,63.25878955017647,65.01447522516628,0.1935166869276372,191.879176446065,0.072642629332897,69.72461203872626,251.92706,176.3417823495362,263202.20234861464,184233.9637818297,499.57857,332.8362924708813,521287.9246938861,347084.3592663309,475.53534,232.44497815117728,492290.902252497,239435.72076399665,2234.7164,1050.945031118666,2300847.757950604,1064439.7406874106,911.25644,412.1829568918079,935263.1848384804,414189.37790946825,1457.98964,619.5247677350226,1488215.094655021,619085.6238664591,0.38002,100000,0,1145123,11963.736470391575,0,0.0,0,0.0,43064,449.2352375778345,0,0.0,42931,444.03234568933095,1056912,0,37934,0,0,10027,0,0,88,0.9089389443771156,0,0.0,0,0.0,0,0.0,0.04952,0.130308931108889,0.3037156704361874,0.01504,0.3541828040278854,0.6458171959721146,23.225429406933745,4.100805943389653,0.3126114649681528,0.2812738853503185,0.2015286624203821,0.2045859872611465,11.52439907152032,6.351540023439045,16.03117975924212,11486.629862638429,44.9290339703034,13.578559032325282,13.903256812113591,8.772722218609502,8.674495907255022,0.5729936305732484,0.7952898550724637,0.6878565607171964,0.5474083438685209,0.1170610211706102,0.757753562447611,0.8972746331236897,0.865546218487395,0.7185929648241206,0.15,0.4923133235724743,0.7177033492822966,0.6149425287356322,0.4898648648648648,0.1088646967340591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0046022686954494,0.0071843891747085,0.0093132375941987,0.0116835972056984,0.0140694513728404,0.0159233396197563,0.0180470775575199,0.0199341661384964,0.0221237126067282,0.024437767272056,0.02696262210216,0.0291684671893326,0.031146324877908,0.0333825213864839,0.0352409700829077,0.0372824500191537,0.0394253708121564,0.0412304685469534,0.043072467995125,0.057735683555407,0.0719339375798044,0.0855965006136513,0.098735055676477,0.1112353034217324,0.1264505209710689,0.1371421295018994,0.147868580189081,0.1576973220201329,0.1669528265441902,0.1795896817016141,0.1909720718770296,0.2015382439650577,0.2109404066268356,0.2189558321401035,0.2288432537922469,0.2373869346733668,0.2444436946056598,0.252200844035032,0.2589020856478565,0.2652485222842998,0.2702203518615933,0.2755111688925659,0.2794103570402986,0.2835520411380891,0.2879326680530091,0.2910670750765768,0.2939555205568186,0.2980673518195333,0.3009874917709019,0.2981488193521538,0.2945599231666324,0.292605628865112,0.2897153285720444,0.2860521841969103,0.2825749269005848,0.2779560757661569,0.2777986200596995,0.2776032201633859,0.2783720971490411,0.2790771411518949,0.2791960036187704,0.2808340820292095,0.2804752758297226,0.2832522351925981,0.2829223981313262,0.2838735312482261,0.2890122643580816,0.2928049249711427,0.29642194958381,0.3012736255269002,0.3074970921010891,0.3122006554071087,0.314841335644833,0.319156839075123,0.3238084084787446,0.3259584785573571,0.3281499202551834,0.3277401894451962,0.3316999623068224,0.0,2.424060872796422,51.72992849090251,141.37194776901717,200.7026915525115,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95897,48201,459.6702712285056,4730,48.35396310624941,3742,38.53092380366434,1402,14.31744475843874,77.4394230829848,79.71899518994188,63.39129033748679,65.07714056845482,77.26143075398699,79.54506080963324,63.32332433169956,65.01314541685774,0.1779923289978171,173.93438030863706,0.0679660057872268,63.99515159708358,253.15774,177.27944187455105,263989.2175980479,184864.42941338208,498.01992,332.41618723557366,518830.8706216044,346157.85858236346,472.22074,230.30568564257212,489663.2949935869,238031.04654512767,2132.05832,1012.3751740109408,2196972.460035246,1029973.615851434,879.93418,401.5369464707801,905873.0095831986,407251.3105249495,1372.15108,588.5126656293122,1403011.8356152957,588939.0304082558,0.38099,100000,0,1150717,11999.509890820358,0,0.0,0,0.0,42946,447.33411889840136,0,0.0,42610,441.54665943668726,1053615,0,37858,0,0,9903,0,0,96,1.001074069053255,0,0.0,1,0.0104278548859714,0,0.0,0.0473,0.1241502401637838,0.2964059196617336,0.01402,0.3610152284263959,0.6389847715736041,23.02073756655498,3.973905707133376,0.3073222875467664,0.2910208444681988,0.1916087653661143,0.2100481026189203,11.144392713309532,5.968883113850515,15.111435711422615,11396.14824572529,42.96733965696733,13.412150469268887,12.861223303020338,8.008309833243125,8.685656051434975,0.5863174772848744,0.8181818181818182,0.6921739130434783,0.5815899581589958,0.1145038167938931,0.7568042142230026,0.9186295503211992,0.8738461538461538,0.6923076923076923,0.1393939393939394,0.5117172493276988,0.7427652733118971,0.6206060606060606,0.5439252336448598,0.107890499194847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866774650739,0.0044590376585998,0.0069994623601375,0.0089654682248779,0.0111091912549422,0.0132068944465924,0.0155334861217214,0.0174622603019175,0.019543541334641,0.0216864265474595,0.0239149145456781,0.0259077990170427,0.0280435296414661,0.0299558383002377,0.0320216089157396,0.0340860981175717,0.0360239193858759,0.0380386914938812,0.0401686064016445,0.0420715340920913,0.0563217312443318,0.0697045055588063,0.0827984125155764,0.0954075847297467,0.1072090281286845,0.1230044767294535,0.1337767844848587,0.1446149268956137,0.1544791711081738,0.1643587877750192,0.1773456730407489,0.1890090420992362,0.1999196281171257,0.2092642158737095,0.2174046875687085,0.2259278110961117,0.2341274262919795,0.2422452325868691,0.2493034318722392,0.2559061867806567,0.2620361604359572,0.2679194630872483,0.2737970062497785,0.2780376906969787,0.2818565605590062,0.2856351823596003,0.2891823679344295,0.293191192334539,0.2976253502576088,0.300636574074074,0.2981765938020302,0.2956000712983149,0.293729743381084,0.2908360221249135,0.2873488358323835,0.2821901507292366,0.2780099345580699,0.2774592908357424,0.2780204279329039,0.2794769896746265,0.279886042008044,0.2807568501216927,0.2827207716614003,0.2831374632051878,0.2846519363269185,0.2858911529533144,0.2869701991405218,0.291288875135386,0.2952305465573092,0.3012785530521556,0.3074137005902343,0.311597992051872,0.3156526582905242,0.3190179442901119,0.3259128166915052,0.3278246601031411,0.3281059683313033,0.3328634716069271,0.338683351468988,0.3446222553033122,0.0,1.9070936107160472,49.56418266521094,140.91507590278752,185.43573649285688,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95743,48501,462.56123163051086,4795,48.9853044086774,3799,39.156909643524855,1427,14.580700416740653,77.34647984393533,79.6992714647913,63.33814763576003,65.07532791379803,77.16740222500104,79.52241637475981,63.27048882698976,65.0108396007026,0.1790776189342864,176.8550900314807,0.0676588087702683,64.48831309543834,252.1145,176.68715124604682,263321.45430997567,184540.88368779543,497.98226,332.8273259864933,519555.0275215943,347067.7373539655,483.81521,236.38646321852724,502239.787765163,244451.86810380805,2172.38748,1038.7385376587692,2240458.393825136,1056884.3638267333,859.54744,395.3811407764912,884780.5061466635,400810.7608749803,1382.5405,587.5194670091812,1413260.8336901914,586820.3586942793,0.38203,100000,0,1145975,11969.157014089804,0,0.0,0,0.0,42866,447.1240717337038,0,0.0,43758,453.9653029464295,1053107,0,37783,0,0,10067,0,0,81,0.8355702244550516,0,0.0,0,0.0,0,0.0,0.04795,0.125513703112321,0.2976016684045881,0.01427,0.357056936647955,0.6429430633520449,23.06892391880156,3.959452800682048,0.3171887338773361,0.2913924717030797,0.1976836009476178,0.1937351934719663,11.680794873444132,6.598407599734956,15.20048028211537,11503.20762421448,44.02790661184421,13.755470983691856,13.817604265573106,8.405538449550267,8.049292913028983,0.6009476177941564,0.8319783197831978,0.6921161825726141,0.5858854860186418,0.1195652173913043,0.7709543568464731,0.9288617886178862,0.8472622478386167,0.7246376811594203,0.1761006289308176,0.5219737856592136,0.7544715447154472,0.6293706293706294,0.5330882352941176,0.1039861351819757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046427231903009,0.0069920134766239,0.0092643383921496,0.011328736754327,0.0135404789053591,0.0157798165137614,0.0178711764765919,0.0201980967178092,0.0223398482692248,0.0245287467071208,0.0265534867489171,0.0285200226186192,0.0307240704500978,0.0328301847858609,0.0348320413436692,0.0368272834572298,0.0390397244498853,0.0411737801708904,0.0432146986220041,0.0584010189380494,0.072259901197354,0.0858494722927463,0.0981934425539969,0.1101657388663967,0.1257783839216805,0.1368611977343601,0.148041333659689,0.157980699432085,0.1671953702711392,0.1792649844987943,0.190423150541239,0.2007455144158144,0.2104486745197456,0.2186782146115208,0.2280958073227963,0.2370201901958817,0.2442035666899048,0.2517580872011252,0.2586388513590877,0.264327674730561,0.2698646468896837,0.2749222197248412,0.277950180323744,0.2823382329736487,0.286753125307609,0.2901334866513348,0.2937227428193619,0.2973819820286402,0.3011500013188088,0.2988510386395436,0.2966566351980871,0.2937139642806919,0.2908261910945661,0.2880918476326095,0.2845980948303542,0.2811464284586976,0.2813777763239671,0.2814181595259178,0.2818479265950636,0.2834865978996848,0.2844074598677998,0.2859081986384329,0.2870885850443148,0.2873178086781705,0.2896358106527333,0.2912808861119,0.2952848170484017,0.2996340825927862,0.3045188185786762,0.3091394202505313,0.3118801434901878,0.3145452283190245,0.3168152288865387,0.3219389184645559,0.3265017667844523,0.3256519102486355,0.325933400605449,0.3344444444444444,0.3442113442113442,0.0,1.948051713098784,52.680612917128514,142.6682589548707,184.02470282260575,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95746,47586,452.3113237106511,4816,49.2239884694922,3843,39.59434336682472,1378,14.089361435464667,77.41222784566315,79.76791146908192,63.350809200748486,65.08978976503084,77.2331502809434,79.59123812844952,63.28364214144306,65.02557436190727,0.1790775647197477,176.67334063240503,0.0671670593054258,64.2154031235691,252.83236,176.99451944583072,264065.2559898064,184857.98208420727,499.00436,332.5892956581528,520609.9158189376,346804.0655877155,474.15136,232.14732574743925,491337.96712134185,239611.71233633344,2167.91712,1034.4080037106066,2234293.6519541284,1050590.0784263017,865.62438,393.14589116041054,895253.3160654231,401782.58220751793,1339.43854,569.5227082598534,1370094.7089173438,569486.1007051363,0.37732,100000,0,1149238,12002.966181354835,0,0.0,0,0.0,42895,447.423391055501,0,0.0,42863,443.9454389739519,1054531,0,37786,0,0,10076,0,0,103,1.065318655609634,0,0.0,1,0.0104443005451924,0,0.0,0.04816,0.1276370189759355,0.2861295681063123,0.01378,0.3666533386645342,0.6333466613354658,23.184299874724385,4.043897642857616,0.3091334894613583,0.2971636742128545,0.1980223783502472,0.1956804579755399,11.54554070158246,6.35238643166901,14.700770571329244,11416.263658900918,44.049340889843535,14.039774546230488,13.459120106640908,8.379706908066158,8.170739328905979,0.5990111891751236,0.830122591943958,0.6944444444444444,0.5834428383705651,0.113031914893617,0.7576257213520198,0.9284294234592444,0.8396501457725948,0.71,0.1317365269461078,0.5258555133079847,0.7527386541471048,0.6355029585798817,0.5383244206773619,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045203466274768,0.0068477863896441,0.0089162401494841,0.0112445226161307,0.0132233928844098,0.0154717981123998,0.0177239472261053,0.0201939683804968,0.0223541453428863,0.0245142248093793,0.0264740904984807,0.0288472412126944,0.0309565002471576,0.0332979063696304,0.0358468137888262,0.037866550695825,0.0397775610565849,0.0416268141556119,0.0437712892842633,0.0584096294981678,0.0727932867367011,0.0859207821088406,0.0983716918416291,0.1105296476049799,0.1255714043849995,0.1379786059937176,0.1487751125874349,0.1592652747205778,0.1683978967700397,0.1799435150051742,0.1907020051102161,0.2007052600646488,0.2096742414291343,0.2176771848670081,0.2269339957416607,0.2346644617756821,0.2420840464822989,0.2498041842144097,0.2563855753033793,0.2620144451131997,0.2673365776051659,0.2726197516262567,0.2765493876671495,0.2804343869441242,0.2849742207784217,0.2883049408003197,0.291836890050496,0.2952454680343204,0.2988490645364726,0.2952526430035776,0.2917351073149365,0.2889548976475038,0.2854576548869695,0.2825128636088873,0.2787134200974958,0.27536140890612,0.2750768530114995,0.2758644033374515,0.2772053235299316,0.2777654252362423,0.2795476297439303,0.2804065968260554,0.2820892553215004,0.2830170732867266,0.285221421215242,0.2854128569419046,0.2884770346494762,0.2939608928880429,0.2979478776529338,0.3022464870670366,0.3037571197157339,0.3101997896950578,0.3134049858187789,0.3173641703377386,0.3231735691019078,0.3237753882915173,0.3243029464109155,0.3266020463112547,0.3240286684270086,0.0,2.028577043872363,52.81908948799653,137.79065951964034,190.20358539148796,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95735,48207,458.5365853658537,4870,49.67880085653105,3869,39.89136679375359,1462,14.884838355878204,77.32373385663094,79.69417535991478,63.321321634088775,65.07531142710879,77.14027047373489,79.5151185192069,63.25119379541626,65.00930175653009,0.1834633828960505,179.05684070788652,0.0701278386725121,66.00967057869411,252.21878,176.6974593047126,263455.1417976706,184569.3417294747,501.60798,335.12196486283136,523452.3737400115,349549.3966290608,487.18007,238.4036366945357,506044.6022875647,246659.91400147544,2204.18708,1054.355580935105,2272950.5823366586,1071894.0209276704,905.0854,416.7063739098952,929832.0990233456,419695.7579880873,1413.70018,603.3614787688784,1439800.553611532,598841.3498659884,0.38129,100000,0,1146449,11975.23371807594,0,0.0,0,0.0,43150,450.20107588656185,0,0.0,44035,457.09510628296863,1049870,0,37706,0,0,10001,0,0,83,0.8669765498511516,0,0.0,1,0.0104455006006162,0,0.0,0.0487,0.1277243043352828,0.3002053388090349,0.01462,0.3629411764705882,0.6370588235294118,23.15697433645363,3.9292504621246658,0.3171362109072111,0.2858619798397518,0.2039286637373998,0.1930731455156371,11.333439172981862,6.402896736622812,15.603942870127536,11504.199841397962,44.576829961855736,13.640342955250546,14.050316889649714,8.86483674442024,8.021333372535235,0.607650555699147,0.8345388788426763,0.7098614506927465,0.5956907477820025,0.1164658634538152,0.7694886839899413,0.933609958506224,0.8591549295774648,0.7164948453608248,0.1481481481481481,0.5355007473841554,0.7580128205128205,0.6490825688073395,0.5563025210084034,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0047562546269534,0.0071457572066585,0.0093388614515375,0.0116697867491453,0.0140879503712984,0.0163586668298453,0.0186287826948413,0.0210035483112288,0.0231962722105586,0.0254025228181724,0.0276371329683985,0.0297104058433208,0.0318216011788831,0.0339695089852499,0.0362452186498501,0.0381966381158534,0.0400904733248946,0.0420167193478622,0.044055893048797,0.0583561300561739,0.0724804538270726,0.0862235370638467,0.0994803500799461,0.111787160452168,0.127330013427644,0.1381951664580195,0.1484681770295723,0.1582056074766355,0.1667256447375475,0.1781611051889179,0.1892754375716665,0.2001783228949199,0.2099532076791883,0.2182770151355156,0.2279713001306552,0.236942731965084,0.2456165968392321,0.2522330537293131,0.2583726037425081,0.2642937187351979,0.2702393328116057,0.2752292493855171,0.2802925999976056,0.28506419435478,0.2877778461917369,0.2913002689348927,0.2937936473611234,0.2974715500835049,0.3006774567692956,0.2977753268413407,0.2946822701082248,0.2920543317615596,0.2888057437556881,0.2860982019569122,0.2821951741643475,0.278252911288541,0.2775596990513575,0.2771487828097375,0.2774017021125384,0.2778389474666418,0.279073432083202,0.2799682234393946,0.2826892181363798,0.2843675789776679,0.2854467420991026,0.2860596751713741,0.291143216080402,0.2970425397715327,0.3017019082001031,0.3070901975061436,0.3118359541011474,0.3136638147961751,0.317119585902413,0.3170367605896622,0.3213230950974601,0.3264967576534459,0.329,0.3323393873678503,0.3309243058197033,0.0,2.0786657490764715,51.80633636215226,144.35626485836795,192.77163926704608,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95795,48168,458.4999217078136,4731,48.32193747064043,3771,38.94775301424918,1444,14.83375959079284,77.38153749659537,79.72377231309454,63.350937847410606,65.08298650283508,77.19556700789997,79.53685104182122,63.2807053147976,65.01407876340686,0.1859704886954034,186.92127127332012,0.0702325326130051,68.90773942822648,253.9669,177.92770533149582,265114.9851244846,185737.98771490768,501.83497,335.3896349404165,523447.1527741531,349695.5633805694,481.18282,235.34045197958463,499517.4591575761,243556.5704777248,2144.83212,1025.1532116080343,2215817.4017433063,1046989.2704295994,866.8696,399.6393544942648,891323.7747272821,403584.0748413423,1391.78472,593.8477460265698,1429670.3377002976,599839.8627858716,0.3801,100000,0,1154395,12050.681142022026,0,0.0,0,0.0,43315,451.7354767994154,0,0.0,43471,450.9734328514014,1041978,0,37396,0,0,10060,0,0,77,0.803799780781878,0,0.0,1,0.0104389581919724,0,0.0,0.04731,0.1244672454617206,0.3052208835341365,0.01444,0.3650213284582571,0.6349786715417428,22.876945356301714,3.912199056039586,0.3070803500397772,0.2938212675682842,0.2065765049058605,0.1925218774860779,11.293315401171013,6.378448362001175,15.434458627225384,11418.267820805846,43.42587294718615,13.66233045449833,13.206528478835754,8.755528314063588,7.8014856997884765,0.5990453460620525,0.8014440433212996,0.7089810017271158,0.5905006418485238,0.1239669421487603,0.7740016992353441,0.920997920997921,0.8528528528528528,0.7358490566037735,0.1854304635761589,0.5196607555898227,0.7097288676236044,0.6509090909090909,0.5361552028218695,0.1078260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020964572910125,0.0046222150140896,0.0068686335781827,0.0092318942140702,0.0114586086991886,0.0137626352596272,0.0161148937905165,0.0184325212545545,0.0208874082854748,0.0231239896044365,0.0252597708687721,0.0272115127999835,0.0292723552576111,0.0314034780638983,0.0335220884776846,0.0354493418469613,0.0374904281959477,0.0395965710613332,0.0416034737082666,0.0436448442445443,0.0584386446408632,0.0723302341633809,0.0860135021804763,0.0989492487128296,0.1110923785338714,0.1265495048981791,0.1390996566487219,0.1492786442552015,0.1591680361983224,0.1685121070176755,0.1796917048806217,0.1905338755732456,0.20090867589835,0.2100276481580644,0.2194663205596374,0.2286293090087896,0.2366824982719022,0.244793130191415,0.2513265907750918,0.2572781660737368,0.262598120252945,0.2684109659476009,0.2729874184088544,0.2771433359668653,0.2813155883387725,0.2852608267716535,0.2886749815848284,0.2909589806781082,0.2944825714396495,0.2974076073361157,0.2939667101038462,0.2901419276909984,0.2873309528495515,0.2842720126920026,0.2813987631801397,0.2774562943736163,0.2741587201513121,0.274887782583857,0.2754232974788775,0.2752793048412839,0.2756810099242184,0.276461109145934,0.2764498718402901,0.2764517278232989,0.278524852509136,0.2797771732089649,0.2807364878241932,0.2858388613784297,0.2882604315047076,0.2914914521516997,0.2971220105391163,0.3023023549201009,0.304600575071884,0.3093025013224514,0.3138352458251702,0.3158018039123814,0.3172757475083056,0.3226773226773227,0.3232959211606898,0.3268866135760334,0.0,1.658150917110287,51.51439287675296,138.9797279705351,187.20834944426784,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95863,48289,459.3012945557723,4812,48.923985270646654,3811,39.22264064341821,1425,14.562448494205272,77.37299817448195,79.67447049515732,63.35320242165369,65.05710405896393,77.18641653392828,79.48938323514679,63.2824593598875,64.98902173400106,0.1865816405536691,185.08726001053333,0.0707430617661941,68.08232496287303,251.55328,176.2851687982285,262408.6873976404,183892.36243204208,502.50602,336.1427323452694,523646.1408468335,350103.67497915705,482.16373,235.65487199734545,499503.69798566704,243162.48526086143,2165.64192,1032.1142607782017,2230948.165611341,1048527.7748226128,861.1367,400.3936635443282,885761.6598687711,405272.1646995969,1389.29142,600.0329231389121,1421195.9150037032,601864.8905168552,0.37995,100000,0,1143424,11927.667608983656,0,0.0,0,0.0,43332,451.46719798045126,0,0.0,43555,450.90389409887024,1052999,0,37784,0,0,9923,0,0,76,0.782366502195842,0,0.0,1,0.0104315533626112,0,0.0,0.04812,0.1266482431898934,0.2961346633416459,0.01425,0.3518926497095934,0.6481073502904066,23.00946554815006,3.922476537028016,0.3067436368407242,0.2894253476777748,0.1970611388087116,0.2067698766727893,11.202528258782314,6.1265724697834125,15.291581875227497,11401.381579342846,43.63385231844252,13.55872232697263,13.12842439385247,8.307154634577374,8.639550963040056,0.5851482550511676,0.786038077969175,0.7177074422583405,0.5912117177097204,0.1015228426395939,0.7659758203799655,0.9202586206896552,0.8955223880597015,0.7540983606557377,0.125,0.5062193742932529,0.6885758998435054,0.6462829736211031,0.5387323943661971,0.0947712418300653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0045405252009283,0.006613716360833,0.0091891233271734,0.0113962141390317,0.0139556188925081,0.0162363805000356,0.018553102899305,0.0206807058414819,0.023031902920171,0.0255214950206958,0.0274249481870601,0.0296188195636311,0.0317653113741636,0.0336797179439599,0.0356486358097362,0.0377834795563648,0.0397396972114856,0.0415065733452408,0.043520782396088,0.0576618284951618,0.0712957157784744,0.0852066790974419,0.0979702414079153,0.1104207910366033,0.1255664114074465,0.1376076798372484,0.1473449210652208,0.1571965250058699,0.1663880852887603,0.1772523782876329,0.1889490580109601,0.2002217198504478,0.2086923245134485,0.2169698170094301,0.2263523990961853,0.2342027756704895,0.2414468132980818,0.249271219700321,0.2561909668555727,0.2623703412468055,0.2687040220810965,0.2729908178720182,0.2774484088486459,0.2815257096394461,0.2861117608676918,0.2897548161120841,0.2931641643041482,0.2967256167768477,0.2984911234799124,0.2959410189831694,0.2924904446338713,0.2893206617388243,0.286496007854348,0.2840936054098944,0.2800800403256602,0.2762013043409604,0.2760245398773006,0.2751169715014887,0.2753246753246753,0.2753090793816548,0.2757501868092972,0.2768461618581397,0.2785450992583381,0.2789117268348514,0.2799182871328092,0.2802946593001841,0.2839201474585273,0.288775830226156,0.2915504576344424,0.2962231104324785,0.2991560517901137,0.3043749220989655,0.3080701224119692,0.3114600859973827,0.3168143656716418,0.3184848484848485,0.3195230396119644,0.3295859610638881,0.3330815709969788,0.0,2.073803113004804,50.134986934925806,138.3306468352759,195.26437813744263,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95779,47877,455.6322367115965,4820,48.89380761962435,3850,39.48673508806732,1408,14.230676870712788,77.39816222968327,79.72706961649301,63.35848721039546,65.07936802773062,77.21247704005958,79.54867780363718,63.28709901118448,65.01385433951891,0.1856851896236833,178.3918128558355,0.071388199210979,65.51368821170911,252.11296,176.57812951790442,263223.62939684064,184359.96358064332,500.97345,335.0182400098052,522368.49413754576,349099.60430763033,477.08002,233.50755867092315,493683.636287704,240363.78058920725,2180.83348,1042.582313091288,2238560.3107152926,1050146.183496683,861.174,394.8885342841908,881914.8560749225,395080.0950982876,1359.62118,586.5517763670794,1376466.9708391193,575791.5450536023,0.37861,100000,0,1145968,11964.71042712912,0,0.0,0,0.0,43191,450.2239530586037,0,0.0,43058,445.05580555236537,1053775,0,37756,0,0,9905,0,0,87,0.9083410768540076,0,0.0,0,0.0,0,0.0,0.0482,0.127307783735242,0.2921161825726141,0.01408,0.3712634515743324,0.6287365484256676,22.924515030523825,3.938333390228496,0.3015584415584416,0.2932467532467532,0.2179220779220779,0.1872727272727272,11.475865757249936,6.451852594619439,14.977707381314444,11358.20440629863,44.2900101829612,13.958277538088964,13.245668747320044,9.158909973092117,7.927153924460066,0.5914285714285714,0.8007085916740478,0.7062876830318691,0.5697258641239571,0.1040221914008321,0.7543859649122807,0.8969072164948454,0.8753623188405797,0.7211538461538461,0.10062893081761,0.5179042593290615,0.7282608695652174,0.6348039215686274,0.5198098256735341,0.1049822064056939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584108079641,0.004428814658667,0.0065231505904313,0.0086928263871963,0.0108778528948304,0.0129969263337879,0.0153462067559993,0.0174978574052156,0.019759090305377,0.0220073664825046,0.0242807966560118,0.0263417136993329,0.0282311107457041,0.0305790567940879,0.0325587149720601,0.0350119805007023,0.0372017959487699,0.039206943393096,0.0410625759985034,0.0432396405027962,0.058372376947398,0.0723437189503519,0.0856076412552292,0.0980629158214477,0.1106999399057469,0.1262607040913415,0.1374657926557627,0.1476901465408068,0.1572690471358533,0.1660733051665344,0.1775051697397897,0.1877149717697449,0.1978638097204263,0.2060896070269738,0.2149537846065921,0.2237319642382933,0.2331623550401427,0.2415045541437085,0.2490926413211142,0.2563574119236538,0.261984856366684,0.2681002746450067,0.2735157007974632,0.2791054251865694,0.2825765114190714,0.2854540755418261,0.2883096761295481,0.2913956914947668,0.2946189558627646,0.2971887021130842,0.2946134509134415,0.2917118576586718,0.287827028242869,0.2843066639776427,0.2813225486861756,0.2778768344534357,0.2739721710080524,0.2742219900075107,0.2740835247086842,0.2747438151561973,0.2753817504655493,0.2771800066880421,0.2779963774904753,0.2788939152031222,0.2795107906821805,0.2809560723514211,0.2817800782019184,0.2850090045333168,0.2890625,0.2936786997968432,0.299527983816588,0.3042479908151549,0.3088180807706558,0.310458743148885,0.3156380510440835,0.316590024761231,0.3192834562697576,0.3191361727654469,0.317983651226158,0.3250657647500939,0.0,2.7830955346160016,51.33540721757398,142.46195334508016,190.0701648695924,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95870,48173,458.7983727964952,4821,48.98299780953374,3835,39.34494628142276,1462,14.790862626473348,77.3584022892406,79.63958721442218,63.35300198276878,65.04145786512723,77.17411303452636,79.46089760876724,63.28365759480001,64.97645222575123,0.184289254714244,178.68960565493808,0.0693443879687691,65.0056393759968,251.99944,176.61493796673062,262855.3666423281,184223.36285254057,500.50741,334.0605707557533,521400.3859392928,347783.1550597197,478.0647,234.7098403858935,494055.304057578,241298.9614673197,2178.51356,1039.7344382205624,2236198.685720246,1048361.9048926271,853.42041,399.64701079065,873020.5695212267,399760.2725833968,1410.92414,599.3929439692478,1429177.1565661833,592498.1739179917,0.37994,100000,0,1145452,11947.971211014916,0,0.0,0,0.0,43072,448.5761969333472,0,0.0,43237,446.40659226035257,1052671,0,37754,0,0,9881,0,0,88,0.9179096693439032,0,0.0,0,0.0,0,0.0,0.04821,0.1268884560720113,0.303256585770587,0.01462,0.354042214257268,0.645957785742732,23.453420590490747,3.930534386357782,0.3079530638852673,0.2930899608865711,0.2099087353324641,0.1890482398956975,11.667632397891364,6.701925331959653,15.537838077732191,11450.82918065276,43.94227995533427,13.679037861433448,13.299548631990374,8.949281167065278,8.01441229484518,0.5976531942633637,0.7927046263345195,0.7104149026248942,0.5987577639751552,0.1103448275862069,0.7896494156928213,0.9281183932346724,0.8917378917378918,0.8018433179723502,0.1273885350318471,0.5104285172544558,0.6943164362519201,0.6337349397590362,0.5238095238095238,0.1056338028169014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919063673824,0.0048940632884457,0.0070594679027497,0.0090771558245083,0.0114759097377515,0.0134542382886046,0.0156587473002159,0.0181447294609618,0.0202056298050907,0.0224700722763471,0.0248958407976496,0.0269729962477701,0.0292398862037445,0.0314361247981237,0.0335638248539247,0.0355889155034277,0.037528963919232,0.039414636168603,0.0411244846458205,0.0428739375149554,0.0573162086651932,0.072359898031677,0.0857148841252055,0.0977927587365591,0.1109062947670009,0.1261078540115142,0.1377234721236077,0.1495225740595027,0.1594278699898596,0.1690571134551067,0.1805035103587888,0.1914269953381718,0.2020415040601798,0.2117568616306142,0.2203117785448868,0.2289273938347828,0.2371023671212104,0.2445148817552378,0.2514401705524812,0.2568856720759514,0.2626294175487304,0.2677464624020582,0.2730479662862825,0.277589327452085,0.2817952082422121,0.2859942320491015,0.2890922291207691,0.2920856350075096,0.2952094566569888,0.2980637151310228,0.2944329952452149,0.2922543448048106,0.2895018444988876,0.2865231835909287,0.2837432424404443,0.2795763113988765,0.276232956882098,0.2760491803278688,0.2762837019730896,0.2768516376963723,0.2768929138269069,0.278690138626339,0.2796534084977555,0.2817378137038769,0.2832610830359495,0.28411708377546,0.2853506067377592,0.290988969900916,0.295214245965498,0.2983271009643771,0.3013147788370307,0.3076236480100808,0.3129794798228653,0.3196072461561881,0.3199435559736595,0.3229673590504451,0.3221042916474388,0.3225741375832157,0.3274263904034896,0.3323274236137307,0.0,2.544774858248457,51.72260738249035,132.81991821127656,198.10264439507932,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95736,48272,460.0568229297234,4851,49.37536558870226,3874,39.92228628729005,1413,14.47731260967661,77.38965647392791,79.75554985691339,63.34469261111818,65.09349373101594,77.20796863522536,79.57619025734634,63.27573204959765,65.02762467791598,0.1816878387025582,179.35959956705003,0.0689605615205337,65.86905309995927,252.09096,176.5715358321163,263318.6471128938,184435.71237445503,501.01523,334.12164132446804,522752.4024400434,348428.74111393705,482.13034,235.52239510864197,499993.1060416144,243299.4778462161,2195.43628,1041.8528105074674,2263434.361159856,1058735.3161407723,883.72399,404.9207350433987,906682.6794518258,406820.6544547715,1365.63912,584.8606169370933,1399473.0717807305,586475.6266938226,0.38072,100000,0,1145868,11969.029414222445,0,0.0,0,0.0,43069,449.2562881256789,0,0.0,43580,451.554274254199,1055092,0,37866,0,0,10060,0,0,77,0.8042951449820339,0,0.0,1,0.0104453914932731,0,0.0,0.04851,0.12741647404917,0.2912801484230056,0.01413,0.3579072532699168,0.6420927467300832,23.186403559305752,4.006389522291433,0.3048528652555498,0.2991739803820341,0.2065049044914816,0.1894682498709344,11.212313937331688,6.209598534866694,15.089363514810051,11470.488021080762,44.21358337623232,14.18212639695106,13.405362802114055,8.672797367982712,7.953296809184491,0.592410944759938,0.811044003451251,0.7138018628281118,0.5325,0.1171662125340599,0.7781569965870307,0.9168356997971604,0.8728323699421965,0.7430167597765364,0.1623376623376623,0.5118430792005921,0.7327327327327328,0.6479041916167665,0.4718196457326892,0.1051724137931034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026942711287577,0.0050282331234857,0.0073574929723256,0.0094885913403905,0.0117692534610963,0.0142967699890024,0.0167208735636871,0.0187217362011412,0.0208009649194537,0.0229906235925152,0.0249802679459187,0.0270825205839476,0.0292472808766988,0.0313240109561958,0.0332638831586764,0.0354692021496486,0.0374638874219502,0.0395281521366989,0.0415536362030079,0.0432925240948163,0.0582689496763416,0.0718831114460353,0.0854936684956513,0.0980159064130617,0.110500443056669,0.1263894911633121,0.1382617552198268,0.1484882990837208,0.1581285575454671,0.1670080538784089,0.1793436127142734,0.1900321299912372,0.200956885771761,0.2104077593465353,0.2193750687644405,0.2295996899396489,0.2375775012266381,0.2454715030564545,0.2525735794295043,0.2589313291465047,0.2642767964487191,0.2682550625737622,0.2734940755354463,0.2778183210307823,0.2815838942453459,0.285840838623948,0.2894371915797364,0.2923186344238976,0.2965766696809198,0.2996458802311652,0.2963450331659371,0.2927646025472112,0.2899415763159373,0.2870683818551117,0.2849979291166203,0.2805140165546257,0.2775590551181102,0.2785297283193633,0.2782932610904165,0.2784756378047486,0.2788584568027147,0.2793256710982319,0.281357548617158,0.2823474739427737,0.2839949575434674,0.2858948889290229,0.2864147434271705,0.290508358497027,0.2950557103064067,0.2996133512191273,0.3024425612906149,0.303248714823255,0.3060956548921538,0.3093654234247701,0.315852314474651,0.3185984452952778,0.3241708993128174,0.326417704011065,0.3325288281040493,0.3415730337078652,0.0,2.0293907789008485,50.86753857872267,138.37575886280896,200.43394502063572,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95765,48478,461.5778207069389,4885,49.955620529420976,3890,40.05638803320629,1490,15.193442280582676,77.34687979821054,79.70553230322969,63.33382307926016,65.08101502364133,77.1562089981396,79.51810853800858,63.26291845365723,65.01343120564574,0.1906708000709329,187.42376522111212,0.0709046256029282,67.58381799558322,252.09162,176.72564334572095,263239.82665900904,184540.9526922372,503.4644,335.78286188014255,525144.8545919699,350047.9631181981,482.0123,235.4100484235367,499735.1433195844,243047.88902652744,2217.61796,1045.3903989882242,2284768.0050122696,1060701.2154630867,883.79143,401.9686548157643,905285.8455594424,402187.8973812223,1437.929,606.1944932364146,1467353.0412990132,604146.474154704,0.38254,100000,0,1145871,11965.446666318592,0,0.0,0,0.0,43266,451.1878034772621,0,0.0,43532,451.0207278233175,1052688,0,37784,0,0,10149,0,0,85,0.8875894115804313,0,0.0,0,0.0,0,0.0,0.04885,0.1276990641501542,0.3050153531218014,0.0149,0.364191451644672,0.635808548355328,23.11760172855016,3.904141629084977,0.3030848329048843,0.2982005141388175,0.2025706940874036,0.1961439588688946,11.359235574942897,6.411497414265965,15.88107298873877,11506.478937189124,44.56047834373881,14.250395675814833,13.410021654871343,8.67806116867889,8.221999844373745,0.5969151670951157,0.8155172413793104,0.6912637828668363,0.6078680203045685,0.1074705111402359,0.7620660457239627,0.9079229122055674,0.8571428571428571,0.7711442786069652,0.1288343558282208,0.5249169435215947,0.7532467532467533,0.6212303980699638,0.5519591141396933,0.1016666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293380892545,0.0046241836693303,0.0068629441624365,0.0090958057664359,0.011383983071539,0.0136453432720311,0.0158935671322255,0.0182625561453654,0.020547525096604,0.0225560060613507,0.0248213498467248,0.0268191759161336,0.0290203821394047,0.0312229593308335,0.0333243890356671,0.0353425195629477,0.0373710806444932,0.0397406639004149,0.0417862043158288,0.0438793785663709,0.0587498564912903,0.0724872650439839,0.0863370447254198,0.0990761857717895,0.1110057225963514,0.1261940992476118,0.1377391488685145,0.1485615870383364,0.1589922455814747,0.1684105683655875,0.1802107980210798,0.1908610573858172,0.2013273375043448,0.2115405611966372,0.219520231975748,0.2293012655987255,0.2371099541811128,0.2449672350422066,0.2518862251670656,0.2583592891168926,0.2643554506755506,0.2701125225162,0.275411697898921,0.2798312984507734,0.2836324366301433,0.2871919122349584,0.2909597809644067,0.2940870051328962,0.2980943269379945,0.301066491112574,0.2976273645743766,0.2938922385968767,0.2916660813866921,0.2888517649091983,0.2858031364302744,0.2826677657690664,0.2793479461566381,0.279647698251588,0.2802690964830112,0.2806717904924566,0.2818263271858433,0.2830634676752157,0.2845392676714959,0.2848640213999108,0.2855053350917156,0.2861455188924742,0.2875298532923916,0.2922612686238763,0.2955023118957545,0.2990017429884329,0.3025148938105416,0.3042074622916115,0.305773701074323,0.3102717432442661,0.3140626452272516,0.318475073313783,0.3211246200607903,0.3195771498272006,0.3240379252649191,0.3279463933780055,0.0,2.0661331104646328,51.56111308689406,140.36713996400195,199.3157684543956,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95756,48143,458.2689335394127,4965,50.67045407076319,3906,40.22724424579139,1486,15.163540665859058,77.36211040614715,79.72363227756553,63.32787542470121,65.07564910181027,77.16521143838774,79.5294485896569,63.25327379695311,65.00414383303278,0.1968989677594095,194.18368790863383,0.0746016277481018,71.50526877748575,252.23176,176.6028214412727,263410.919420193,184430.03199932404,498.49159,333.1708440928685,520019.3721542253,347373.7454224505,482.20721,235.59402116774424,499905.0921091107,243229.8222865885,2228.55904,1067.1640764462825,2296716.487739672,1083977.7805413494,910.02004,424.2449102193788,933518.724675216,426510.2679004868,1436.8416,621.9146447827469,1467424.82977568,622070.8979453353,0.38073,100000,0,1146508,11973.223610008772,0,0.0,0,0.0,42871,447.12602865616776,0,0.0,43537,451.0735619700071,1052982,0,37806,0,0,10101,0,0,89,0.9190024645975188,0,0.0,0,0.0,0,0.0,0.04965,0.1304073753053345,0.2992950654582074,0.01486,0.3700270374662032,0.6299729625337969,23.065336106992756,3.9417548095045833,0.3120839733742959,0.2964669738863287,0.1922683051715309,0.1991807475678443,11.422575602754517,6.441425340532359,15.977526667748744,11520.460364504585,45.06252407362842,14.33931942729065,13.68675604808093,8.444956505899661,8.59149209235718,0.5960061443932412,0.8221070811744386,0.6956521739130435,0.5725699067909454,0.1259640102827763,0.75,0.912280701754386,0.8517350157728707,0.7461139896373057,0.155440414507772,0.5263940520446097,0.7503875968992249,0.6407982261640798,0.5125448028673835,0.1162393162393162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022491717576973,0.0041373435820471,0.0065272561161303,0.0087891319589095,0.0110269060576776,0.0132908298366399,0.0156935125323761,0.0179592420158457,0.0201838427009948,0.0222106168591791,0.0244585281811469,0.0266863887091306,0.0288371518811534,0.0308529384486969,0.0331509959748168,0.0354824035399694,0.0374546960753857,0.0393741634935621,0.0415787449455838,0.0437363942212547,0.0589887054009478,0.0727198543719791,0.0860259032038173,0.099486737205242,0.1120721480934549,0.1280459429731787,0.1397852884390978,0.1504992867332382,0.1604017523239662,0.1688595785748753,0.1807773912481556,0.1925719912993604,0.2032830755172638,0.2120917106040385,0.2206251375742901,0.2300405504221232,0.2379064677505806,0.2452743147756424,0.252464632942698,0.2591006423982869,0.2649475706580866,0.2699010503169665,0.2750778042055687,0.2789780356800307,0.2840489605595492,0.2868286791708772,0.2910997909808879,0.2956078072117464,0.2983069276172724,0.3012632855974892,0.2986039122766865,0.2953085672631246,0.293293574884663,0.2899372430209911,0.2866799086893362,0.2821919063841488,0.2790356195528609,0.2789971215491299,0.2787044121397602,0.2784533721528875,0.2789043442638214,0.2798423313003745,0.2806379174117353,0.2815863645442641,0.2836412239247697,0.2844800827728919,0.285391417351753,0.2898121904880555,0.2951918069779552,0.2992981217895933,0.3037809647979139,0.3053027925949168,0.3076923076923077,0.3119252336448598,0.3151431209602954,0.320323488045007,0.3263459508369778,0.3266916551588084,0.3327077747989276,0.3360061092019855,0.0,2.1917158177246177,52.86577246083491,144.72168790800006,193.9321389229559,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95769,48108,458.7079326295565,4795,48.91979659388737,3842,39.62660150988315,1469,15.067506186761896,77.32840490063373,79.68864121566006,63.31625382636724,65.06478249983023,77.13743705345235,79.49902796759542,63.24467887150112,64.99552978204082,0.1909678471813833,189.61324806463156,0.071574954866115,69.25271778941067,252.26168,176.7173683951885,263406.1752759243,184524.38826466643,499.89147,333.1988653055216,521494.0951664944,347437.7035340472,476.02712,232.39667623699347,493960.7597448026,240319.5074013501,2185.37688,1033.4879113244112,2255948.208710543,1053202.2367576256,870.35791,396.0779633700558,897849.6068665226,402640.0643002538,1420.17868,601.8681042826323,1457369.1486806795,606850.13628188,0.37841,100000,0,1146644,11973.007967087471,0,0.0,0,0.0,43094,449.4669465066984,0,0.0,42934,445.19625348494816,1052189,0,37767,0,0,9911,0,0,92,0.9606448850880764,0,0.0,1,0.0104417922292182,0,0.0,0.04795,0.126714410295711,0.3063607924921793,0.01469,0.3761283851554663,0.6238716148445336,22.58717047402428,4.014966895552481,0.2943779281624154,0.3008849557522124,0.2053617907339927,0.1993753253513795,11.298796036968866,6.181098887861966,15.696992036587874,11366.597808640316,44.24605365525849,14.23018621681751,12.93040068728367,8.892036350385938,8.193430400771378,0.5819885476314419,0.8079584775086506,0.6755083996463307,0.5538656527249683,0.1318537859007832,0.7721943048576214,0.9218436873747496,0.841642228739003,0.7184466019417476,0.1824324324324324,0.4962235649546828,0.7214611872146118,0.6037974683544304,0.4957118353344768,0.1197411003236245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024421632905363,0.0046349824540051,0.0069548795841286,0.0092684810666883,0.0115257064963072,0.0138323011734028,0.0160609397944199,0.0180197655899048,0.020211004109673,0.0224783507687268,0.0244784993080826,0.0266340842351684,0.0285993418346359,0.0307762030323005,0.0325569876273127,0.0347814402513773,0.0367771118632839,0.0389210378943438,0.040953113309502,0.0428678553574404,0.0578356261612007,0.0712358281387273,0.0841957367389093,0.0963537560832045,0.1080520082606313,0.1234819739359284,0.1350356836088694,0.1464390617683368,0.1556849132176235,0.1643773924791713,0.1760689283791061,0.1875121718996819,0.1978698636843307,0.2069617899870956,0.216332236298995,0.226124808932013,0.234295662266067,0.2418997242698778,0.2493813145646498,0.2557971678658173,0.2616532654595939,0.2670073197539814,0.2724324836090795,0.2775426015421698,0.2823540846576274,0.2863198885972371,0.2895000626487908,0.2934331474549945,0.2960222855662088,0.2979037768953735,0.2951228051276527,0.291215667936569,0.2884146770899359,0.2857843773900746,0.2834961256420152,0.2795935855061819,0.2757562819235574,0.2764889253486464,0.276002046733754,0.276560105491999,0.2773172006871312,0.2780827578065049,0.2785827296194521,0.2789610736462576,0.2804936381899933,0.2831083357085482,0.2848033102822809,0.2899079706754016,0.2940440179409617,0.2977769034035019,0.3004057709648332,0.3013985647687392,0.3095134800123954,0.3131752701080432,0.3141555906682777,0.3186658864833235,0.3203207747011651,0.3227899432278994,0.3224388904147212,0.3271173271173271,0.0,1.8430301768764048,52.31387031458787,140.41885253177148,192.45483709101072,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95731,47836,455.7353417388307,4833,49.29437695208449,3874,39.8930336045795,1489,15.13616278948303,77.31464774318667,79.68101312172624,63.30648041847581,65.0559500255889,77.12442163565944,79.4960560291054,63.23407434265032,64.98857208451501,0.1902261075272235,184.9570926208344,0.0724060758254836,67.37794107388595,251.98492,176.44652408406938,263221.6314464489,184314.6985658453,497.94158,331.1907793248479,519510.7540921958,345323.92178035434,469.48631,228.79379140379436,487467.19453468575,236608.71926898675,2192.66224,1035.54553748255,2258452.873154986,1049736.2919517169,867.19901,388.12178221783154,891272.6807408258,390854.5146372902,1437.89994,612.0460540868393,1462097.2307820872,603957.8594459259,0.3796,100000,0,1145386,11964.619611202224,0,0.0,0,0.0,42861,447.1174436702845,0,0.0,42519,441.1319217390396,1056790,0,37923,0,0,10082,0,0,85,0.8774587124337989,0,0.0,2,0.0208918741055666,0,0.0,0.04833,0.1273182297154899,0.3080902131181461,0.01489,0.3509710661910424,0.6490289338089575,23.035188056000525,4.012791715767022,0.3180175529168818,0.2767165720185854,0.2121837893649974,0.1930820856995353,11.087184017567116,5.976107910612044,15.85144115564387,11410.148832736868,44.49720549943072,13.238142170278405,13.950202257296889,9.18313022588608,8.125730845969358,0.5758905524006195,0.8013059701492538,0.6793831168831169,0.5547445255474452,0.105614973262032,0.7537117903930131,0.913978494623656,0.8611111111111112,0.6956521739130435,0.1006711409395973,0.501282521069989,0.71499176276771,0.6145374449339207,0.5073170731707317,0.1068447412353923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185078255584,0.0046131540793462,0.0070139466899449,0.0093384818615994,0.011475660003052,0.0133766657157993,0.0155374868650595,0.0178983480018786,0.0201377956780406,0.022449940624872,0.0245455384331457,0.0268297190734351,0.0288012507971774,0.0309009603099369,0.0329995871180842,0.03511837072263,0.0372272675496277,0.0391515943923875,0.0409782371351626,0.0430891683248773,0.057863578938576,0.0713007253582306,0.0844322747825722,0.0978587804724144,0.1098327462932107,0.1250357048399894,0.1366159659494974,0.1468029601235159,0.1567076429716729,0.1668401566775768,0.1785367642300973,0.1893549470673009,0.1992156008279769,0.2085127834215515,0.2166262403528114,0.2267226256300935,0.2361139073440261,0.2436050708291978,0.2513819695625469,0.257433247200689,0.2632689498458042,0.2688130469930758,0.2735988812382228,0.2785783707898873,0.2828581151705194,0.2866918183163189,0.2897416014208169,0.2917413466549721,0.2941594705000258,0.2970815993257125,0.2940085476977663,0.2906002855887521,0.2885006950978052,0.2862102745843778,0.2833928862662535,0.2806819223366227,0.276763433047983,0.2765054714632068,0.2771129521666496,0.2767286642342262,0.2771115842952669,0.2782435836876082,0.2787110472740898,0.2796410643685309,0.2819263293679231,0.2839327296248383,0.2862247936697013,0.2918162800137384,0.2966520498364307,0.3019581576770024,0.3052865031230198,0.3080008444162972,0.3110246107483677,0.3134305682163476,0.3140395242109207,0.3184015089001532,0.320109439124487,0.3254534338699816,0.3240208162147356,0.3291139240506329,0.0,2.1499469381778264,49.8357946077094,144.33007756654942,200.12384532344095,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95818,48197,459.4752551712622,4752,48.53994030349204,3815,39.27237053580747,1478,15.059800872487424,77.3504688262772,79.68210729652859,63.33176974345843,65.05972208293032,77.16048040220733,79.49599135629067,63.2599608779756,64.99196031050938,0.1899884240698668,186.1159402379116,0.0718088654828292,67.76177242093695,252.74612,177.03040247430584,263777.2861049072,184756.93760494463,498.70102,331.96138372090246,519946.0748502369,345929.04644315527,473.42336,230.9925391487637,490617.2431067231,238341.43415017208,2144.00332,1021.8949459978364,2207023.649001232,1035940.5810994144,883.16356,405.0777405411517,905631.4993007577,406679.5075467554,1422.3194,603.8488014898167,1450073.6396084244,599941.1823165875,0.38041,100000,0,1148846,11989.876641132149,0,0.0,0,0.0,43012,448.3499968690643,0,0.0,42719,442.4847105971738,1052672,0,37860,0,0,9959,0,0,83,0.8453526477279844,0,0.0,1,0.0104364524410862,0,0.0,0.04752,0.1249178517914881,0.311026936026936,0.01478,0.3666531768514771,0.6333468231485229,23.158825861700056,3.988311680026294,0.3111402359108781,0.2862385321100917,0.2102228047182175,0.1923984272608125,11.267269035920082,6.322508322470955,15.69131349485574,11460.90525640727,43.73124808380912,13.415042962883287,13.493962131702377,8.814307770581994,8.00793521864146,0.5897771952817824,0.8003663003663004,0.6840775063184499,0.5960099750623441,0.1171662125340599,0.7625,0.9244897959183672,0.841642228739003,0.7680412371134021,0.1485714285714285,0.5105162523900574,0.6993355481727574,0.6205673758865248,0.5411184210526315,0.1073345259391771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00217800919829,0.004319479228983,0.0065259311884705,0.0086666734401511,0.0107614378420163,0.0129351612311829,0.0149201978481464,0.017073768482967,0.0193039139503496,0.0217533730524333,0.0238405299262738,0.0260717769677055,0.0280951450519842,0.0302783756784312,0.0322597279374606,0.0342721937510332,0.0362924930644693,0.0383143352037588,0.0404780462457781,0.0426725798223971,0.057834341748383,0.071953578336557,0.0855532035294364,0.0985606219794074,0.1105503813898605,0.1254729144209836,0.136714980967629,0.1479751938644172,0.1578947368421052,0.1665737982469299,0.1784815030021305,0.1903382373606892,0.2006300238974581,0.2093356211543295,0.2182880147835269,0.228084946105529,0.236617455056744,0.2443039256500557,0.2521486392897285,0.258432113611636,0.2641943881978594,0.2690670533479898,0.2745554990358795,0.2783933683920507,0.2829008115857511,0.2866355128663551,0.2903173291256543,0.2946995836569435,0.2980338315674947,0.3013132712994126,0.2995163224337469,0.2964242933263572,0.2933353994393339,0.2896204067483244,0.2856358428683793,0.2830321377243678,0.2783959788828122,0.2782939258385358,0.2785955228457528,0.2797906243879858,0.2803051498703672,0.2819942963909922,0.2836088470117363,0.2840544871794871,0.2851738339239536,0.2862254025044722,0.286776555740903,0.2907440903137279,0.2963001527141469,0.3005980484734026,0.3047254725472547,0.3099455040871934,0.3117658027223569,0.3125515792632605,0.3162678538304582,0.3232417326502096,0.3267490952955368,0.3256231306081755,0.3264920334863624,0.3330804248861912,0.0,2.108363736831524,52.26395220158134,131.32241623614442,196.8689060762668,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95721,48122,459.48120057249713,4837,49.16371538115983,3773,38.87339246351375,1397,14.281087744591051,77.30949638025908,79.6686820437783,63.31695901961641,65.05929223675868,77.11772778537139,79.47999905899707,63.242285613003794,64.9879806674557,0.1917685948876908,188.6829847812379,0.074673406612618,71.31156930297777,251.12318,175.90267329007867,262348.6382298555,183765.5880377979,500.61594,334.35398467819,522459.6274589693,348766.9799756553,474.11972,231.7460172188429,491814.6801642273,239494.73276963172,2139.29528,1036.4722850058708,2203854.5773654683,1051828.1367284823,861.58619,407.4094908917624,882493.1833140064,408013.4984922448,1352.62004,600.3281264131795,1382399.995821189,599436.268688165,0.38111,100000,0,1141469,11924.93810135707,0,0.0,0,0.0,43177,450.5072032260424,0,0.0,42835,443.9882575401427,1055064,0,37920,0,0,9972,0,0,83,0.8671033524513951,0,0.0,2,0.0208940566855757,0,0.0,0.04837,0.1269187373724121,0.2888153814347736,0.01397,0.3729320310942794,0.6270679689057206,22.95893868892731,4.053027986799435,0.3087728597932679,0.2865094089583885,0.208322289954943,0.1963954412934004,11.495476242598116,6.318266068502815,15.211516146135915,11414.378296903922,43.61168396779858,13.51817524872027,13.243690338181707,8.565537940945338,8.284280439951251,0.589451364961569,0.81313598519889,0.6952789699570815,0.5610687022900763,0.126855600539811,0.7401960784313726,0.9014084507042254,0.8259587020648967,0.7305699481865285,0.1897435897435897,0.5170655158885837,0.738013698630137,0.6416464891041163,0.5059021922428331,0.1043956043956044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116213123221,0.0046833184656556,0.0066654492330168,0.0090192573332249,0.0110506785950287,0.0131607071971663,0.0153901034500331,0.0176692151438749,0.01982748047913,0.0219627268168374,0.0240059861212189,0.0261515083064665,0.0283084832904884,0.0304003954522985,0.0326103771541722,0.0345500945374895,0.0366475890833445,0.038403302082469,0.0402627367020723,0.0423741172058915,0.0572842703199398,0.0716715333814771,0.085348073715898,0.097994679117112,0.1102206099464293,0.1260510423166823,0.1371483749111321,0.1469147894221351,0.1561201269217209,0.1654298215511324,0.177672905151329,0.189178361053361,0.2000348284156336,0.2089622486619017,0.2177671570786714,0.2276502090008981,0.2359841798315196,0.2435306708725285,0.2504061899946598,0.2568529664660361,0.2636735261079522,0.2694292635545517,0.2746017646710487,0.279190009477081,0.2821151649206387,0.285538097234898,0.2899907391184642,0.2936077592790591,0.2964887276496502,0.2998758223466934,0.2965079450651643,0.293040797225128,0.2902507434918039,0.287232966937732,0.2836998514115899,0.2804881783657968,0.2766759599543784,0.2761184232119998,0.2766429840142096,0.2769288443000464,0.2775905959868224,0.278089554598269,0.2782927084423057,0.2801116071428571,0.2813476233959725,0.2830698133291793,0.2833437695679399,0.2888110356908255,0.292822499040441,0.297377010499823,0.3016281062553556,0.3062816188870151,0.3135550831561836,0.3178933051231676,0.3209957113555846,0.322274325908558,0.3264594389689158,0.3345521023765996,0.3331515812431843,0.3413150893196503,0.0,2.065186978041498,53.33383163209936,134.2914964537557,186.40512045956703,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95732,48025,458.44649646931015,4907,49.993732503238206,3899,40.1224251034137,1467,14.927088121004472,77.40440741590693,79.760757704281,63.3594678928421,65.09873645133041,77.21258232746462,79.57266336839783,63.286538436783104,65.02963549414075,0.1918250884423145,188.0943358831786,0.0729294560589934,69.10095718966147,251.84742,176.39204276997577,263075.48155266786,184256.09281115583,499.65964,332.9262731297592,521335.9169347762,347169.1107777537,478.54845,233.1997737447396,495376.5303137927,240171.01909621144,2218.82504,1053.1099583516946,2286265.449379518,1068579.5328121155,897.28226,411.2287473684794,923388.6788116826,415671.96193068,1423.86638,610.9345111072822,1451534.4294488782,608547.1070867779,0.38015,100000,0,1144761,11957.976434212176,0,0.0,0,0.0,43026,448.8363347678937,0,0.0,43388,448.81544311202106,1059303,0,37989,0,0,9925,0,0,71,0.7312079555425564,0,0.0,0,0.0,0,0.0,0.04907,0.1290806260686571,0.298960668432851,0.01467,0.3574793875147232,0.6425206124852768,22.77628263855788,4.025933751575016,0.2995639907668633,0.2931520902795588,0.2064631956912028,0.2008207232623749,11.500621500749036,6.249048512548189,15.662379682337743,11394.402074180109,44.74084427107687,14.078626127088034,13.26562644334062,8.941238475227282,8.455353225420922,0.5886124647345473,0.7979002624671916,0.7011986301369864,0.5751552795031056,0.1289910600255427,0.7572977481234362,0.9111570247933884,0.8496932515337423,0.7272727272727273,0.1775147928994082,0.5137037037037037,0.7147192716236722,0.6437054631828979,0.517948717948718,0.1156351791530944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021160914070489,0.004448948568533,0.006715766835068,0.0088254709795358,0.0110926967148943,0.0131718241042345,0.0155414012738853,0.0176219095333816,0.0197298512342651,0.0217651573292402,0.0238902952721607,0.0257612923752732,0.027757502236021,0.0299415999752804,0.0322231164489568,0.0342777990262458,0.0364210635323357,0.0385165975103734,0.0404477100069629,0.042318949265173,0.0563589095730796,0.0707947006006823,0.0838779385076944,0.0967911514845655,0.1088986802715351,0.1242095467715669,0.1362353590222373,0.147178127694912,0.1570439539306395,0.1660428753740066,0.1782679404193906,0.1898650622747881,0.2007853032989264,0.2097188658407234,0.218734528171106,0.227801707433203,0.2361386911800798,0.2444044741723343,0.2519531471465342,0.2583258943898922,0.2637805737524984,0.2694466813720341,0.274638245638883,0.2787644972110412,0.282882708350991,0.2863934547062726,0.2901993583581959,0.2924372732577314,0.294893638992152,0.298083747338538,0.2952107690657514,0.292081243318806,0.2889771180852705,0.28615411175692,0.2825849173736955,0.2791452158284339,0.2759049809394789,0.2762745610026764,0.2761641231093079,0.2765776311588805,0.2764867030693825,0.2777941784259314,0.2784986773864323,0.2789112625713207,0.2795339509120428,0.2803036190772259,0.2812147211560171,0.2862971037060106,0.2898460041019223,0.2948506289308176,0.2961160674056051,0.3021567596002104,0.3056869089099054,0.3088599984970316,0.3134121559209311,0.320855614973262,0.3278465720326185,0.3389796731765643,0.3402739726027397,0.3464998044583496,0.0,2.362794178392828,51.94269068050909,144.2430011304316,193.30793646986768,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95740,47811,455.8700647587216,4823,49.080843952371005,3843,39.46104031752664,1408,14.2886985585962,77.33232137485312,79.70017341012776,63.31916690730778,65.07205794291028,77.14856740440449,79.52115217732458,63.24763147841867,65.00523891337043,0.1837539704486346,179.02123280317994,0.0715354288891134,66.8190295398432,253.98472,177.8865368284776,265285.89931063296,185801.6887700832,499.85944,333.54600683677194,521412.6906204304,347699.0566500647,476.01139,233.1659938177815,493217.2132859829,240416.04268410453,2183.61296,1047.3212947221227,2243001.16983497,1056149.6289138529,867.04923,401.7709042316219,888666.983496971,402689.79993964056,1360.17632,596.0247620153126,1380417.798203468,587003.4232452065,0.3786,100000,0,1154476,12058.449968665136,0,0.0,0,0.0,43134,449.8015458533529,0,0.0,42937,444.4746187591393,1045310,0,37496,0,0,9921,0,0,96,1.0027156883225403,0,0.0,0,0.0,0,0.0,0.04823,0.1273903856312731,0.2919344806137259,0.01408,0.3669579030976966,0.6330420969023034,23.0764289062402,3.849525301513373,0.3205828779599271,0.2927400468384075,0.1956804579755399,0.1909966172261254,11.036693408139458,6.126321555757545,15.217114038291935,11384.988275130338,44.35359184095035,14.091303228217694,14.045664648865705,8.27186812237657,7.944755841490379,0.5930262815508717,0.8035555555555556,0.6948051948051948,0.5837765957446809,0.108991825613079,0.7647058823529411,0.9148936170212766,0.8413978494623656,0.7650273224043715,0.136094674556213,0.5111452728670254,0.7088815789473685,0.6313953488372093,0.5254833040421792,0.1008849557522123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.004777409244439,0.0073003817723986,0.0095942759573949,0.0117807438756409,0.0139159136520614,0.0161336379211878,0.0183668885531098,0.0204695104494703,0.0225227530994379,0.0244397515018555,0.026610816804238,0.0285764231655149,0.0305786145384884,0.0323452637660823,0.034417893170167,0.036500129433083,0.0386881912310916,0.0408218409320017,0.0426391709628703,0.0580534705765677,0.0725003138994684,0.0852527795259072,0.0982985972365349,0.1098832734059491,0.1258197588322403,0.136315884419071,0.1467288326839965,0.1565073431241655,0.1651850342616323,0.1770376673596225,0.1878490108653305,0.1979719731917486,0.2074404664238287,0.2162099702872235,0.2261879713402952,0.233970138594416,0.2417351187127264,0.2493134518054515,0.2567227083237894,0.2624367890577085,0.2678441923031933,0.272712215320911,0.2764846117906389,0.2800597370114496,0.2839825559908345,0.2886334929905081,0.2918096109374603,0.2962598934354146,0.2997141313941693,0.2965919475353437,0.2929421943883647,0.2899966271291247,0.2870419734585957,0.2842343944513605,0.2805369742508934,0.2760517083346502,0.2759433190430997,0.2766764145810664,0.2780268260575657,0.2780934579439252,0.2791128634795465,0.2806849029024849,0.2802869939169767,0.2816334355828221,0.2830129950976577,0.2827422231028333,0.2879010799812177,0.2903822011438136,0.2943616895175629,0.3007814264420254,0.3038557148146189,0.3050783699059561,0.3097772744431861,0.3148267898383372,0.3152589502954466,0.3173376912791561,0.3179850452577725,0.3165198825727248,0.3055659320134479,0.0,2.5291692432248194,53.70950869998505,134.92944640535444,192.21714816697843,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95733,48255,460.62486289994047,4730,48.28011239593452,3774,38.91030261247428,1410,14.43598341219851,77.41699606751023,79.77053623375386,63.36600846061516,65.10063081929351,77.24097398014622,79.59646769599428,63.3003077813691,65.0379094665781,0.1760220873640037,174.06853775958098,0.0657006792460634,62.721352715414014,253.2706,177.50155329546106,264559.347351488,185413.1316217616,505.07611,336.2667506147134,527072.1590256233,350739.96457585174,478.27222,233.32757152932425,495903.06372933055,240966.32170425943,2148.11788,1003.3475479310551,2216822.036288427,1021101.8451801088,860.77781,389.8287065635092,885012.8377884324,393116.5537619637,1373.56134,577.0041109973398,1407620.1100978763,578727.9367087948,0.38092,100000,0,1151230,12025.42487961309,0,0.0,0,0.0,43545,454.31564873136745,0,0.0,43095,446.6171539594497,1046985,0,37549,0,0,9932,0,0,95,0.98189756928123,0,0.0,1,0.0104457188221407,0,0.0,0.0473,0.1241730547096503,0.2980972515856236,0.0141,0.3704825358368665,0.6295174641631335,23.0597198516427,4.0485047038918935,0.3089560148383677,0.2859035506094329,0.2053524112347641,0.1997880233174351,11.324144445670726,6.050954804448241,14.87605663706411,11397.38718030155,42.96045199850807,13.23317173614932,12.94012566508306,8.550109552914426,8.237045044361263,0.5842607313195548,0.8109360518999074,0.692967409948542,0.5509677419354839,0.1259946949602122,0.7547857793983591,0.937219730941704,0.8711864406779661,0.6789473684210526,0.144578313253012,0.5143817706387748,0.721958925750395,0.6326061997703789,0.5094017094017094,0.1207482993197278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.004396762200002,0.006531970139565,0.0091085409071984,0.0112148202375142,0.0135080111565789,0.0155848656582541,0.0178709940804245,0.0202137878880781,0.0223843187003181,0.0245829405254744,0.026622330326262,0.0287221028609023,0.030802343902866,0.0327539072574405,0.0344318029161629,0.0365883960740464,0.0385309492200464,0.0406161009374545,0.0426289964684189,0.0571890988827398,0.0708568319504462,0.0847338494786093,0.09775258447527,0.1097142977673251,0.1245452622673434,0.1358964840642732,0.1468253123603158,0.1558617742883085,0.1652620518099159,0.1773913979652258,0.1888608854611732,0.1990720114748932,0.2083474386554989,0.2168889084158959,0.2259484570290897,0.2354003008524151,0.243115710000337,0.2513601124359613,0.2581073197515471,0.2638561457033236,0.2693390331359426,0.2745767517691953,0.2784696550981588,0.2818687781159438,0.2856053055750372,0.2893021280847238,0.2925943791413846,0.2957931978410764,0.2981604294962893,0.2960173962066605,0.2931294569391113,0.2895882485114032,0.2878501708502141,0.2846412539445029,0.2811184330953688,0.2768952216011965,0.2769707344909106,0.2758527158066047,0.2755148984358412,0.2764401210388549,0.2768788276037489,0.2768585604849592,0.2785478985651434,0.280174157169708,0.2819348011253645,0.2835400225479143,0.2890654089611518,0.2933781256493731,0.2962890472089564,0.299852090896867,0.3053055671829217,0.3074067198811954,0.3123590437528191,0.3179761794848121,0.3160519601020645,0.3210061386435095,0.3223645320197044,0.3252401280683031,0.3309937199852235,0.0,1.95965847769682,47.84051130872582,140.09798847410303,193.93074555230828,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95705,47603,453.257405569197,4829,49.47494906222246,3841,39.65310067394598,1405,14.34616791181234,77.3508434030137,79.7399402147394,63.31502979323547,65.08212786137355,77.16736578928236,79.55987603111494,63.24597923649016,65.01655042454182,0.1834776137313412,180.06418362446652,0.0690505567453101,65.577436831731,252.46034,176.71643151646876,263789.89603469,184646.7911984418,498.54877,332.5307261433917,520422.5798025181,346954.06315593934,473.69121,231.1826354176698,492127.4959510997,239387.2626248265,2184.84688,1038.6359609671863,2255782.9162530694,1058290.0304883446,888.05616,408.7345585326688,909431.1060028212,408681.7850572331,1363.05886,585.4113218702868,1392601.5150723578,584549.776857409,0.37811,100000,0,1147547,11990.449819758633,0,0.0,0,0.0,42855,447.2911551120631,0,0.0,42911,445.483517057625,1053750,0,37837,0,0,10003,0,0,90,0.9403897393030668,0,0.0,0,0.0,0,0.0,0.04829,0.127714157255825,0.2909505073514185,0.01405,0.3619558735837805,0.6380441264162194,23.031045360100286,3.940324847949329,0.3043478260869565,0.2902889872429054,0.2035928143712574,0.2017703722988805,11.333055663668402,6.273538848207697,15.092832049846916,11344.8283079409,44.21944683419353,13.710906666135273,13.31861475654708,8.73239134291487,8.45753406859631,0.5902108825826607,0.8143497757847533,0.7023096663815227,0.5677749360613811,0.1212903225806451,0.7691652470187393,0.9432773109243696,0.850609756097561,0.736318407960199,0.1597633136094674,0.5114360704911886,0.7183098591549296,0.6444708680142688,0.5094664371772806,0.1105610561056105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.00463437141901,0.0067912576515851,0.0091572485567932,0.011404097743596,0.0137527760233084,0.0160666741474461,0.0184651837326633,0.0205356868921365,0.0227975666209213,0.0250435852733053,0.0269612374437665,0.0292012096027648,0.0314753760560478,0.0336126648640838,0.0356747816198893,0.0375032375032375,0.0395138355510348,0.0414707717911379,0.0432679779438589,0.0579664734450885,0.0719618046466825,0.0851019165774503,0.0976931087804929,0.1100293242758591,0.125949434042103,0.1374322072574054,0.147473779481446,0.1572860776811098,0.166766814026353,0.1784828953891918,0.189430841505921,0.1996605411757026,0.2084888008666061,0.2169543393069437,0.2266851441241685,0.2355679598102149,0.2430570408978847,0.2506984033250812,0.2566653675981752,0.2618380531178363,0.2672895226721927,0.272142603340045,0.2762362703247158,0.2800641563080961,0.2838275696386551,0.2864037006938801,0.2898018329498799,0.2930461649839049,0.2954740214367641,0.2918253380878692,0.2882089470213234,0.2847305178834938,0.2819674021126659,0.2782240764576213,0.2747095239547437,0.2713384833674917,0.2713130157692622,0.2721520063959719,0.272672384706906,0.2744447756744671,0.2754351195965701,0.2767959128574692,0.2775192767880883,0.2778095510437517,0.2776888108275648,0.2780589293747188,0.2824529296814417,0.2865254119927988,0.2914377021707783,0.297777381058645,0.3017705123518044,0.303686293913904,0.3043967587034814,0.3076851679970299,0.3109362152002819,0.3150746944318696,0.3149823043649233,0.3145977623867874,0.3194864048338368,0.0,1.8632924147379972,51.30986236120048,143.16719663564854,192.58424064051997,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95724,48301,459.978688730099,4842,49.3293218001755,3841,39.54076302703606,1433,14.594041201788476,77.26691653433518,79.62692441127638,63.2951211478972,65.0393323035822,77.08687167048294,79.45160704539072,63.22688439654313,64.97535449362987,0.1800448638522453,175.31736588566105,0.0682367513540711,63.97780995233404,251.97524,176.5981843874512,263230.997451005,184486.8417402649,498.41867,332.27568386172584,520064.02783001127,346499.53318273794,477.54919,233.48027284537795,495436.83924616606,241240.49892819976,2181.12176,1034.3084774015,2244840.8340646024,1047039.258914357,889.247,407.9322787920549,912524.058752246,409865.78280264727,1390.1511,592.1881666177162,1416373.5949187246,587482.7721680348,0.38312,100000,0,1145342,11965.045338682045,0,0.0,0,0.0,42852,447.0352262755422,0,0.0,43224,448.1634699761815,1051766,0,37714,0,0,9872,0,0,80,0.8252893736158121,0,0.0,0,0.0,0,0.0,0.04842,0.1263833785759031,0.2959520859149112,0.01433,0.3667457493080269,0.6332542506919732,23.366782600670057,3.99860304559454,0.2944545691226243,0.2980994532673783,0.2035928143712574,0.2038531632387399,11.228152222577956,6.207611758262374,15.335157200246002,11474.788703983731,44.245512546518704,14.166017863939844,12.839726610892775,8.684773836631793,8.554994235054298,0.5925540223900027,0.8104803493449781,0.7082228116710876,0.5805626598465473,0.1187739463601532,0.7813798836242727,0.9266409266409268,0.8850931677018633,0.7712765957446809,0.1714285714285714,0.5064442759666414,0.7145135566188198,0.6378244746600742,0.5202020202020202,0.1036184210526315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0051404759249308,0.0074379997564638,0.0094269664062738,0.0118585114822122,0.0141630944986916,0.0165044089912839,0.01849715703188,0.0208233237582163,0.0229385031116934,0.024981292220639,0.02736027267874,0.029512782016741,0.0316928971654581,0.0337257167617534,0.0355688325649666,0.0376215477336978,0.0395181872886103,0.0416614693775726,0.0436558377961616,0.0589648007183953,0.0726412526952626,0.0860654017294937,0.0987646526506303,0.1109516775691074,0.1260714966029589,0.138026583998641,0.1483804999627211,0.1582116046795132,0.1673089515549019,0.1788790547751749,0.189446310542854,0.1999433742418137,0.2091373004226987,0.2182297003955792,0.2282584568942555,0.2373887572112159,0.2459982201795591,0.2538700042022055,0.2600967268726506,0.2652768458316944,0.2702045018484721,0.2744917039456555,0.2788297897840313,0.2824103878435993,0.2858410460544964,0.2891128779815939,0.2928884137650173,0.2959704586680487,0.2994119590353485,0.2972192614379967,0.2936171973029245,0.290982970498187,0.2866911467067599,0.2833001397104723,0.2808205536745668,0.2776158184929336,0.2770419063270337,0.277516623647459,0.2780653221488488,0.2790392931354012,0.2799992101573761,0.2803587519121561,0.2816065010157837,0.2838877139011728,0.2848481694465405,0.2851855015517781,0.2883956361807149,0.2929307182164526,0.2958388295958748,0.2987072312822621,0.3014721570300832,0.3062790990310809,0.3099658961727927,0.316331305568554,0.3184593705965242,0.322785768357305,0.3193193193193193,0.3205233033524121,0.3291284403669725,0.0,2.231710320949661,52.40188196834546,136.6358238994636,195.5264973888929,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95703,47939,457.36288308621465,4934,50.36414741439662,3956,40.75107363405536,1479,15.151040197276991,77.288290147924,79.65587510877201,63.294707477804174,65.04338067028844,77.1033699641955,79.4720825226468,63.224956520983206,64.97594320674378,0.1849201837285079,183.79258612520744,0.0697509568209682,67.43746354466396,252.2267,176.71016523911584,263551.5083121741,184644.3321934692,499.62766,332.4964261233863,521511.37372914114,346876.0604405152,478.04026,233.65456313827332,494901.4137487853,240774.07870794303,2254.0244,1073.538784123145,2324731.805690522,1091537.0123691428,892.47608,407.4430990226535,919466.6206910964,412761.4941680532,1432.41398,605.6035417981675,1469645.1730875731,611461.5221434557,0.38,100000,0,1146485,11979.614014189732,0,0.0,0,0.0,43203,450.84271130476577,0,0.0,43282,447.6662173599573,1048724,0,37704,0,0,10076,0,0,55,0.5746946281725756,0,0.0,4,0.0417959729580054,0,0.0,0.04934,0.1298421052631579,0.2997567896230239,0.01479,0.3629962839820067,0.6370037160179933,22.904607736443705,3.933872315594045,0.3053589484327603,0.2967644084934277,0.1999494438827098,0.1979271991911021,11.64294272594879,6.63125254150597,15.816428138367773,11447.728465514154,45.63064429484651,14.51731416764176,13.864899484055334,8.800225458049562,8.448205185099862,0.5993427704752275,0.8023850085178875,0.722682119205298,0.5903919089759798,0.1136653895274585,0.7807153965785381,0.9195402298850576,0.8943089430894309,0.7377777777777778,0.1647058823529411,0.5119850187265917,0.7085889570552147,0.6471990464839095,0.5318021201413428,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800119506983,0.0047039263592218,0.0067987173763039,0.0093358255958064,0.0115836791147994,0.0136138235803235,0.0158031035256214,0.0179860154136681,0.0202293821809706,0.0222690709621957,0.0243612474762485,0.026472731751881,0.0283981081636849,0.0306388325317459,0.0327904362087283,0.0347147581645308,0.0370266828192464,0.0389069926731563,0.0409294681769484,0.0427940134239379,0.0577969482710002,0.07153925079046,0.0850387255210629,0.0977280619600332,0.1103135984124806,0.1253917167781824,0.1363650842526624,0.1472599821025269,0.1569048840988794,0.1658399364384032,0.1776757024864678,0.1892155375983015,0.2002439210305663,0.2097974822112753,0.2178921055819229,0.2272631473860523,0.2356189496747076,0.2431548927440172,0.2510292746172918,0.2582752563234095,0.2637089947703475,0.2703339467607515,0.275726704538716,0.2799951969260326,0.2841007290563649,0.2877766251728907,0.2914658634538152,0.2938994071524192,0.297291334086101,0.3006094417196568,0.2976556184316896,0.294090902828486,0.2910556253440415,0.2883610520068899,0.28609275465857,0.2816627340422272,0.2787362689543828,0.2794660281745576,0.279273894704486,0.278674490360092,0.2791398412936068,0.2795190222747881,0.2796220419767539,0.2811054784774102,0.2822603719599428,0.2826608843800821,0.2830172681796343,0.2876849135509643,0.2912932807977963,0.2954967044243596,0.2981549480937486,0.3047930743243243,0.3075152420057235,0.3138581848259267,0.3172324960897966,0.3186138154844691,0.3209802749551703,0.3215064420218038,0.3311134789557805,0.3313653136531365,0.0,2.3144994335110383,56.28353655187656,135.00204097715545,199.91563980252147,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95839,48293,460.6997151472783,4860,49.61445757989962,3853,39.71243439518359,1449,14.795646866098352,77.36488025655099,79.6798920556385,63.35773544642036,65.0712074077762,77.1820836474018,79.49834140769586,63.28753047831532,65.00323402244773,0.182796609149193,181.5506479426432,0.0702049681050382,67.97338532847164,253.47432,177.559150058081,264478.15607424953,185267.037698725,501.44568,334.8606780820622,522689.4270599652,348872.72475094907,477.33673,233.6775581937789,494963.0213170004,241417.6838507584,2188.54484,1038.844337181988,2256260.6871941485,1056718.514573387,860.04487,393.1166281911406,880761.2454220097,393734.45104992506,1401.44414,607.5221810461017,1431168.6265507778,607887.0870192396,0.38146,100000,0,1152156,12021.734367011342,0,0.0,0,0.0,43174,449.9420903807427,0,0.0,43133,446.9892215069022,1048905,0,37658,0,0,10090,0,0,87,0.907772409979236,0,0.0,0,0.0,0,0.0,0.0486,0.1274052325276569,0.2981481481481481,0.01449,0.3581441263573544,0.6418558736426456,23.0394282062258,3.95801284547664,0.3124837788736049,0.2940565792888658,0.1995847391642875,0.1938749026732416,11.113751719075712,6.044899193343371,15.651239216994393,11445.3363066662,44.38635317542768,13.93888322820694,13.794020161836531,8.518507383391233,8.134942401992976,0.5875940825330911,0.8172992056487202,0.6901993355481728,0.5604681404421327,0.1017402945113788,0.7538200339558574,0.934020618556701,0.8608695652173913,0.6842105263157895,0.1186440677966101,0.5143925233644859,0.7299382716049383,0.6216530849825378,0.5250836120401338,0.0964912280701754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.0044507076523784,0.0068085883594447,0.0089891520741071,0.011033038102114,0.0132875819655439,0.015423352158046,0.0174775915225514,0.0197088649002289,0.0219151440708326,0.0239720411593489,0.0259125847931611,0.0280681199190125,0.0302590545589279,0.0324588981085399,0.0343859359354192,0.0364287044124035,0.0383766590341597,0.0403073408784134,0.0423745565392898,0.0570099501449759,0.0711239783440289,0.0838535992625492,0.0974736444201772,0.1097292572740388,0.1260321415749794,0.1371273597898171,0.1482576063614908,0.1583933429348696,0.1680983697864227,0.1803649038254658,0.1910450019998486,0.2016209638868367,0.2106177100170372,0.2199388997560385,0.2291410941180373,0.2378719185483062,0.2458368424007635,0.2527372985948345,0.2589531680440771,0.2645191086479621,0.2691737572510709,0.2737700076782234,0.2779903390884308,0.281764134918709,0.2860095722036984,0.2890035480485733,0.2918714363721792,0.2960680182450155,0.2989065357843072,0.2965644138820242,0.2935176541650651,0.2907009450945094,0.2875196560728248,0.2837380514160185,0.2812155879114156,0.2772943037974683,0.2777704853476848,0.278661359482037,0.2785539674892493,0.2799062353492733,0.27982912406305,0.2818790541954383,0.2824485422154753,0.2834800076525732,0.2840178386226923,0.2859363957597173,0.2908153701968134,0.2941381595006451,0.2980917387697048,0.3011616299119702,0.3054453087791713,0.3092018365934964,0.3126993771836548,0.3210131332082551,0.3228836444757543,0.3250910194174757,0.3303751512706737,0.3306144643828168,0.3297791317593297,0.0,1.808822171571403,51.54985983222346,142.8684289855324,194.581750276324,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95625,47788,456.42875816993467,4817,48.98300653594771,3824,39.27843137254902,1395,14.128104575163398,77.2563444549925,79.66650369211386,63.27473565930678,65.055833303226,77.07327211661028,79.4919318970978,63.20418814449946,64.99205228359155,0.1830723383822174,174.5717950160639,0.0705475148073162,63.78101963444749,250.95488,175.7953095859192,262436.47581699345,183838.2322467129,498.36593,332.1164327526583,520472.5333333333,346616.8499374205,474.136,231.9825387058204,491740.9673202615,239403.00154327173,2151.82536,1029.4106612475002,2211444.8732026145,1037677.8679712416,885.02575,413.1620092390292,904854.8496732026,411402.5717532326,1359.00338,586.7307754515589,1377657.9346405228,573260.8516760697,0.3794,100000,0,1140704,11928.930718954249,0,0.0,0,0.0,42905,447.9581699346405,0,0.0,42855,444.1202614379085,1056543,0,37945,0,0,9945,0,0,90,0.930718954248366,0,0.0,2,0.0209150326797385,0,0.0,0.04817,0.1269636267791249,0.2895993356861117,0.01395,0.3572850318471338,0.6427149681528662,23.190540031720808,4.006771065026979,0.2986401673640167,0.2960251046025104,0.209205020920502,0.1961297071129707,11.421389068640876,6.198617428514954,14.9536097538026,11388.262901935595,44.06006179701097,13.911650391304132,13.00777461937359,8.918968367089974,8.221668419243269,0.5993723849372385,0.8206713780918727,0.7075306479859895,0.5825,0.1186666666666666,0.7798319327731092,0.9367088607594936,0.8680351906158358,0.7766990291262136,0.165680473372781,0.5178435839028094,0.7370820668693009,0.6392009987515606,0.5151515151515151,0.1049913941480206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0044596251887739,0.0067993383330457,0.0088588176729348,0.0109573710448672,0.0128867292156922,0.0154643381752897,0.0176756066411238,0.0198946453229683,0.0222306455082827,0.0242163049612641,0.0263293116560129,0.0283522932001853,0.0307245002113598,0.032529311502505,0.034509162777703,0.0364488306518493,0.0383732405339427,0.0403862763665879,0.0423725277476425,0.0567011925541143,0.0705417666348863,0.0838880372929046,0.0961765201280107,0.1081397680382452,0.1237485448195576,0.1356437745462265,0.1463825073755738,0.1563672513869736,0.1654180530213588,0.1773522244506264,0.1882280277828946,0.198555524085492,0.2084036560506762,0.218034829985993,0.2264563537874078,0.2338992908753327,0.2420769092056622,0.2491134751773049,0.2556698902157828,0.2617487796110989,0.2664947245017585,0.2726981642237086,0.2775751175962369,0.2824041960254584,0.2869170184924574,0.2904236258159903,0.2932560657199261,0.29638510492139,0.2992317237373604,0.2956974033499077,0.2932100891270508,0.2903890386216433,0.2868187872820988,0.2846483781610222,0.2808641975308642,0.2778006785680312,0.2770621097601051,0.2782376227443319,0.2788795417934491,0.2784974093264248,0.2790890924559286,0.2805371095795714,0.2818833801060181,0.2837543397581707,0.2851736651114567,0.285442624811966,0.2907151348307576,0.2955082742316784,0.3002593524049041,0.3038928233118318,0.3098762180668949,0.3122378716744914,0.3153024375564249,0.3212744467909283,0.3251134116552285,0.3318959107806691,0.3343867272368161,0.3322658126501201,0.3306605574646811,0.0,2.8013780043134773,51.08514438131247,140.34405279963815,190.79697545006957,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95686,48406,461.1019375875258,4864,49.47432226239993,3899,40.099910122692975,1458,14.808853959826934,77.32722884548278,79.70342462442906,63.32110870231941,65.07579197241918,77.14113178198252,79.52137689814904,63.25027007228154,65.00857721839554,0.1860970635002559,182.0477262800182,0.0708386300378762,67.21475402363808,252.2168,176.67983814302417,263587.9857032377,184645.44253393827,503.18629,336.6126236763803,525206.3311247205,351122.6968170686,482.24253,236.3436326657112,499022.0826453191,243254.5227754354,2217.23068,1058.7771193024112,2282697.6987229064,1072015.299314854,863.66388,398.619615163376,888495.7569550404,402497.1144115703,1405.12872,606.8218277020825,1429699.851597935,604014.6616459385,0.38179,100000,0,1146440,11981.272077419892,0,0.0,0,0.0,43284,451.6648203498944,0,0.0,43675,451.6961728988566,1047540,0,37595,0,0,10090,0,0,87,0.8883222205965344,0,0.0,1,0.0104508496540768,0,0.0,0.04864,0.1273998795149165,0.2997532894736842,0.01458,0.3585759244689221,0.6414240755310779,23.13335987301722,3.93561875271917,0.3149525519363939,0.2931520902795588,0.2015901513208515,0.1903052064631956,11.258639552742176,6.271494643887485,15.743764135967648,11504.195713101968,44.788260471626025,14.032249759550426,13.948668094695751,8.694073146660354,8.113269470719503,0.5827135162862273,0.800524934383202,0.7068403908794788,0.544529262086514,0.082210242587601,0.7471074380165289,0.9051546391752576,0.8436657681940701,0.7297297297297297,0.1005917159763313,0.5087393082930457,0.723404255319149,0.6476079346557759,0.4875207986688852,0.0767888307155322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0044187248533003,0.0067261844374556,0.0090394791634926,0.0114296173518674,0.0138474540030342,0.0165398813044276,0.0185164380623614,0.0208516556562289,0.0228057060347564,0.0246233680993549,0.026816893307588,0.0289340780284095,0.0312931478619268,0.0334172721268163,0.0357087456954053,0.0377921432123321,0.0399701002886152,0.0423345364524282,0.0439767764261963,0.0589955711540068,0.0727906392598484,0.0863061834583311,0.0988069939192459,0.1110583768391077,0.126685919202818,0.1379149333559725,0.1486008773797862,0.1586774210779338,0.1676213154846183,0.1796062127054565,0.1910978329111731,0.2022101610850672,0.2103553499360173,0.2193216085932513,0.228458734502587,0.2372262773722627,0.2447944203835986,0.2522582841579664,0.2585618399651799,0.264558471172433,0.2704818290314277,0.2758171791048309,0.2797560566485346,0.2835813642713964,0.2869346547834769,0.2896499067502785,0.2933623476114123,0.2959663321463257,0.2988666499544813,0.2968381629821229,0.2936032121445465,0.2911239103800819,0.2882128838605403,0.2854745782846282,0.282483451826428,0.2788498038719473,0.2791702113736012,0.2797420540393384,0.2806173190310435,0.2806118646594127,0.2824250520608227,0.2833222259246917,0.2830855390359357,0.2849143294725758,0.2860702328116484,0.2859250432660936,0.2904860198911616,0.2958138886954099,0.3011206692447321,0.3056362316209838,0.3118979570233937,0.3183867735470942,0.3202673959282893,0.3254199117950643,0.329879915234283,0.3326753720012147,0.333199759567221,0.333968426782798,0.3463285389856169,0.0,2.5178553046346077,52.23174313720112,139.27228857839458,198.9607346668405,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95787,48000,457.5255514840218,5030,51.301324814432014,3979,41.05985154561684,1487,15.18995270756992,77.38146625236273,79.70354367401322,63.35451413110488,65.0675574384323,77.1862914226544,79.51027549408212,63.2807872903372,64.99660221124222,0.1951748297083213,193.2681799310956,0.0737268407676836,70.95522719008329,251.18852,175.9074191703915,262236.5456690365,183644.35588377496,498.85587,332.6911583779629,520307.5469531356,346841.4359933625,477.62117,232.7888892375093,495605.2282668838,240806.86835931064,2254.53672,1060.1463566521563,2326079.697662522,1079521.5696606718,888.33975,404.8105402456482,913347.1347886455,408550.8578884884,1435.40504,609.7745596573209,1466566.0893440654,610558.3579419346,0.37999,100000,0,1141766,11919.842984956204,0,0.0,0,0.0,42936,447.7434307369476,0,0.0,43231,448.2758620689655,1058595,0,38017,0,0,10033,0,0,91,0.9500245336005928,0,0.0,1,0.0104398300395669,0,0.0,0.0503,0.1323719045238032,0.2956262425447316,0.01487,0.3536048957735704,0.6463951042264295,23.39738183420145,3.99042375887606,0.3005780346820809,0.3045991455139482,0.1995476250314149,0.1952751947725559,11.295766152360862,6.219332853450478,15.834657451209932,11450.89916890302,45.412823434484935,14.827686951799032,13.461136951562754,8.798676788195799,8.325322742927353,0.5840663483287258,0.8011551155115512,0.6956521739130435,0.5654911838790933,0.0926640926640926,0.7529610829103215,0.9153543307086616,0.8580645161290322,0.6919191919191919,0.1325301204819277,0.5126921701823383,0.71875,0.6388261851015802,0.5234899328859061,0.0818330605564648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023591114351092,0.0045097085410839,0.0067457217922317,0.0090990332277195,0.0111645500116932,0.0135696398395667,0.0156351924331376,0.0177144664741476,0.019850837760523,0.0220576199050581,0.0242285784534688,0.0263368490171133,0.0285385429619657,0.030841766092587,0.0326508309621015,0.034721003005298,0.0366434174307179,0.0385883426296472,0.0404841055474755,0.0425855354948876,0.0567928033228277,0.0708082203247949,0.0839652224984006,0.0972163821377512,0.1101658285629948,0.1255883317291929,0.1362122369314324,0.1468352813438078,0.1574973031283711,0.1669632710821415,0.1794029947145763,0.1908016393974457,0.2021594702447617,0.2112666812513673,0.2200448914024162,0.2293067727318051,0.2375440867895888,0.245707985509529,0.2528834801562074,0.2579765288346933,0.2634309003334568,0.2687746572856792,0.2740262815200663,0.2781751308869161,0.2829526550338178,0.2868666715928963,0.2904117124889039,0.2937139371139524,0.2970887861960053,0.299685041445383,0.2975531056735682,0.2945094484728631,0.2911152055584466,0.2878516550170412,0.284920847070005,0.2820218704595855,0.2781346169020753,0.2780185454723862,0.2784907073320171,0.278626225316096,0.2794654838228716,0.2791766508229563,0.2802916666666666,0.281211743495003,0.2813381123058542,0.2827927204949649,0.2839335180055402,0.2881165919282511,0.2925106146029094,0.2970843183609141,0.3045873216543254,0.3063517060367454,0.3074202754684204,0.3105748332458967,0.3164427025009332,0.3227203558468922,0.326325274065175,0.3341943175044705,0.3362138806373211,0.3429220287660863,0.0,1.85242017867543,51.63744389090655,145.89006883112535,204.4010690500168,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95761,48328,460.4692933448899,4880,49.82195256941761,3855,39.72389594929042,1430,14.640615699501886,77.31912755708531,79.66903649883265,63.32066847763053,65.05834026165938,77.13577596160987,79.48619148056801,63.2511160640046,64.99075454988991,0.1833515954754432,182.8450182646435,0.0695524136259351,67.5857117694676,251.81618,176.40820595189507,262962.73013022006,184216.7460300488,499.67246,333.3105783163749,521270.8618331053,347545.5610724773,479.57883,234.6391556501516,496998.35005900107,242175.19097544556,2180.88748,1044.5934250233863,2249158.550975867,1062637.740440667,887.05653,412.38951673506006,913680.297824793,418001.4585635689,1383.1025,594.4873029154273,1417188.834703063,599062.4332379414,0.38174,100000,0,1144619,11952.851369555456,0,0.0,0,0.0,42953,447.9903092072973,0,0.0,43278,448.1156211819008,1054293,0,37915,0,0,9957,0,0,85,0.8876264867743654,0,0.0,0,0.0,0,0.0,0.0488,0.1278356996908891,0.2930327868852459,0.0143,0.3623501670269208,0.6376498329730792,23.29600538398574,3.952722255526194,0.3162127107652399,0.2861219195849546,0.2088197146562905,0.1888456549935149,11.699521424348452,6.711148765138154,15.412401119172369,11527.6205221679,44.434037945264464,13.622927168434709,13.992838451953824,8.869741044925595,7.948531279950339,0.5945525291828794,0.8014505893019039,0.682526661197703,0.591304347826087,0.1373626373626373,0.7699186991869919,0.9014373716632444,0.8507853403141361,0.7524752475247525,0.1949685534591195,0.5123809523809524,0.7224025974025974,0.6057347670250897,0.5373134328358209,0.1212653778558875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021367304985366,0.0044994375703037,0.0067773223489306,0.0091409535030165,0.0111460271938656,0.0134938335726579,0.0158043926015049,0.0179105696868203,0.0202860911442623,0.0224608675177363,0.0248226223188286,0.0270253619468117,0.0292384429474983,0.0314199769243448,0.0333470903838217,0.0355928524922231,0.0373203859373058,0.0391983984565436,0.0412406483790523,0.0433985648374767,0.0581186589286459,0.0727092050209205,0.085947414236122,0.0989443135935397,0.1109893005850419,0.1262356610456203,0.1370924979319999,0.1484121495824246,0.1583549533967521,0.1677707033678478,0.179676564956179,0.1912418710843243,0.2019053004763251,0.2119608593451047,0.2207505033058669,0.2298876031227506,0.2382158922213168,0.2463546354635463,0.2538871864714561,0.2595048325775274,0.2657892299856461,0.2715133357519866,0.2768494724251862,0.2812837432513497,0.2851897780047171,0.289683420929257,0.2931313004821238,0.2966631443594281,0.3004716125521495,0.3039583058450983,0.2997953523440235,0.296207162110127,0.2929790950583197,0.2890019659997687,0.2860261036126331,0.2820171411080502,0.2777971142893304,0.2777122061571752,0.2779339842884651,0.2778421756576014,0.2780293391213232,0.2788795142721968,0.2800928831429647,0.2814090543798553,0.2829636734204532,0.2828757694605335,0.2845426941740685,0.2895444034747828,0.2943886097152429,0.3004126547455296,0.3030672079386558,0.3102105263157895,0.3139592957922337,0.3160919540229885,0.3173758865248227,0.3196969696969697,0.322230595327807,0.3286,0.3375,0.335966892400301,0.0,2.057455767260344,53.625691680040894,137.32259761511503,192.62621075341505,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95693,48145,459.0199910129268,4835,49.53340369724013,3834,39.60582278745572,1365,13.982213955043736,77.34181859432726,79.72491987678053,63.3271521787835,65.08591804681515,77.16239316106285,79.54698577831736,63.25986134395223,65.02092230825777,0.1794254332644129,177.93409846316877,0.0672908348312688,64.99573855738561,252.5666,176.90034648005147,263934.018162248,184862.16516948288,501.95776,335.45815026727564,524060.6522943162,350068.23529082426,482.74154,235.58263456498813,501647.5186272768,244026.0927445626,2163.34008,1027.0472156130877,2236197.046805932,1048821.2609157274,837.79431,391.031972901724,860009.9484810801,393191.1472944567,1322.6124,566.2698252176294,1355390.8854357162,568659.8254912506,0.37926,100000,0,1148030,11997.000825556728,0,0.0,0,0.0,43192,450.86892458173537,0,0.0,43571,452.5304881234782,1048772,0,37661,0,0,9984,0,0,84,0.8778071541283061,0,0.0,1,0.0104500851681941,0,0.0,0.04835,0.127485102568159,0.2823164426059979,0.01365,0.3655721393034826,0.6344278606965175,23.180629781822766,3.9142604957710567,0.3015127803860198,0.2976004173187271,0.2136150234741784,0.1872717788210746,11.507776467136456,6.554840954983341,14.609308676062518,11412.349957308525,44.09434618783586,14.00824782317105,13.12539897851192,9.067665671273708,7.893033714879179,0.5941575378195096,0.813321647677476,0.6980968858131488,0.5726495726495726,0.1030640668523676,0.7774914089347079,0.9357601713062098,0.878419452887538,0.7609756097560976,0.1411042944785276,0.5142322097378277,0.728486646884273,0.626360338573156,0.509771986970684,0.0918918918918919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189638585938,0.00469302735741,0.0067976827004048,0.0089882391176291,0.011215276365559,0.0135008552577991,0.0159006818946274,0.018047630227739,0.0201657825611463,0.022520447542712,0.0246595849397096,0.026774435395249,0.028878006625378,0.0309853059373905,0.0328633651920814,0.0348258706467661,0.0370140097819779,0.0392450009344047,0.0412470872170439,0.0433459124741988,0.0577666353285281,0.0722138459605478,0.0863692181743757,0.0989909405612432,0.1108544303797468,0.1258699837109433,0.1374155145521873,0.1471712172015541,0.1572148977542255,0.166439670981372,0.1781037305074524,0.1894677640900291,0.2001239696383131,0.2085173363648288,0.2169834147199859,0.2269440722819527,0.2352954304524912,0.2426624384319546,0.2506608279351537,0.2571549592453521,0.2634128296128458,0.2685857204632844,0.27293466825849,0.2772476383185067,0.2813781887909901,0.2852077562326869,0.2880057008551283,0.2911353783959014,0.2949945649360733,0.2973820885291714,0.2941018262015545,0.2907679626322297,0.2880597644874013,0.2855679769203029,0.2841701017170309,0.2811157157493921,0.2770464374782965,0.2771413609138219,0.2770425629758316,0.2779219394284089,0.2784275019553801,0.2788686439845116,0.280169989375664,0.2804981098510118,0.2823863907870215,0.2837907954132724,0.2851272459332313,0.2913252861342172,0.2961290774184516,0.2996760685786521,0.3044167610419026,0.3075545253397956,0.3125232716892143,0.3149706899143243,0.3173591874422899,0.3205909943714822,0.3271875472268399,0.3254378980891719,0.327940773238278,0.3337147215865751,0.0,1.769156742032768,51.00982398892106,142.15763728415766,194.0082859775667,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95677,48241,459.78657357567647,4867,49.698464625772125,3858,39.71696436970223,1430,14.548951158585655,77.38307130315455,79.75942829631056,63.34642469116329,65.0974894880011,77.20497735265707,79.58635321530629,63.27840402606698,65.0341314362718,0.1780939504974839,173.07508100427071,0.0680206650963128,63.35805172929554,252.3785,176.8278473737441,263781.78663628665,184817.5082556352,499.10491,332.9926634790035,521073.7899390658,347456.04845365504,479.30002,233.8344716738268,497161.250875341,241515.5711650683,2201.05124,1043.5858669606198,2266661.621915403,1056898.175068847,895.86784,406.0450781796888,917692.1935261348,405876.7238238079,1393.42346,593.1231737332614,1418191.4566719274,587460.1601903923,0.38095,100000,0,1147175,11990.081210740302,0,0.0,0,0.0,42894,447.6938031083751,0,0.0,43262,448.3731722357515,1053193,0,37830,0,0,9963,0,0,106,1.1078942692601146,0,0.0,0,0.0,0,0.0,0.04867,0.1277595484971781,0.2938154920895829,0.0143,0.3595971563981042,0.6404028436018957,23.11598582025529,3.999351186243507,0.2996371176775531,0.2913426645930534,0.2050285121824779,0.2039917055469155,11.4446587551691,6.25853991980956,15.17300647299846,11518.759861706603,44.37873355219708,13.960053074654706,12.995140947966744,8.8863959177999,8.53714361177573,0.5914981855883877,0.8140569395017794,0.7015570934256056,0.5916561314791403,0.1118170266836086,0.7508223684210527,0.932806324110672,0.8178913738019169,0.7669902912621359,0.1413612565445026,0.5181680545041635,0.7168284789644013,0.6583629893238434,0.5299145299145299,0.1023489932885906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023688286446048,0.0048629262658804,0.0069877587448403,0.0091392826678581,0.0115703319607544,0.0138440709712226,0.016085954861465,0.018301894496162,0.0206478519078819,0.022818709499094,0.0250064079561183,0.0272945718921361,0.0293116392919953,0.0314579427700294,0.0334877387007252,0.0356371378665261,0.0375642300679595,0.0396088933175562,0.0415379655340967,0.043408929836995,0.0582833622364764,0.0719348388245024,0.0855793946388291,0.0984216780054889,0.1103542808941375,0.1260268758656418,0.1372598905991604,0.1484163954650841,0.1590247025556207,0.1687863625162057,0.1808948993534088,0.1916207157530544,0.2020997945853123,0.2113684302560683,0.2196449782235713,0.2294526238824819,0.2385774899508709,0.2464138536717184,0.2537714966797207,0.2597738805713697,0.2652860531034882,0.2707082762897696,0.2762707650046769,0.2804667450171492,0.2844556248253065,0.2878926088457176,0.2910009883524539,0.2940248572046458,0.2976850173494225,0.3005078820658268,0.2978797778942981,0.2941483444799978,0.2914113877803383,0.2891269246294908,0.2874222222222222,0.2827495568188765,0.2789618262764042,0.2788494576154715,0.2802249297094658,0.2802625960717335,0.2799642883714009,0.2811470911086718,0.2821077565607663,0.2820853836946402,0.2838184931506849,0.2841538501172166,0.28691888245545,0.290981194039099,0.2948167140184325,0.2992618052571964,0.3014639841925633,0.30782853273608,0.3100827875942172,0.3142410248771041,0.3170240058640278,0.317171484509962,0.3216184288245717,0.3217592592592592,0.3311432325886991,0.3356413994169096,0.0,2.3179789466870404,52.99049408892104,132.96843834951022,199.56130520071363,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95701,48064,458.6890419117878,4912,50.3651999456641,3870,39.93688676189382,1461,14.98416944441542,77.3960056150407,79.78243444812539,63.35197710932333,65.11409896029511,77.21438251357469,79.60139098683877,63.284168207446506,65.04845574702668,0.1816231014660161,181.0434612866203,0.0678089018768233,65.64321326843015,252.12858,176.57446263171585,263454.48845884576,184506.3924428332,498.92139,332.8229611257004,520815.6654580412,347255.90236852324,475.88746,232.5517666840762,494084.7326569211,240537.3038918829,2193.76688,1037.8393477323837,2266150.865717181,1058297.7270168369,904.34094,410.7270906241977,932723.7750911694,416959.6535221703,1410.26066,591.994086255802,1447547.381950032,595990.9108933279,0.38037,100000,0,1146039,11975.204020856629,0,0.0,0,0.0,43024,449.0339703869344,0,0.0,43112,447.268053625354,1058115,0,37896,0,0,9945,0,0,67,0.700097177667945,0,0.0,1,0.0104492116069842,0,0.0,0.04912,0.1291374188290349,0.2974348534201954,0.01461,0.3568918391253416,0.6431081608746584,23.2819753068763,3.914235577451577,0.3069767441860465,0.2987080103359173,0.1971576227390181,0.1971576227390181,11.494973182915292,6.522820119216114,15.421019413410043,11502.306207618329,44.50129599421695,14.284341626826128,13.44307266831032,8.554365058045729,8.219516641034758,0.603875968992248,0.8140138408304498,0.7146464646464646,0.5845347313237221,0.1323722149410222,0.7664172901080631,0.9101796407185628,0.8769230769230769,0.7235023041474654,0.15,0.5305586801649794,0.7404580152671756,0.6535341830822712,0.5293040293040293,0.1276948590381426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969032689405,0.0046237147898034,0.0070441119749903,0.0093370586741173,0.0115964437572477,0.0138068667779904,0.0161403794977415,0.0184687949851453,0.0203234578502934,0.0223341317120104,0.024431002665573,0.0265511258046962,0.0286730978875701,0.030829290400997,0.0327792738415823,0.0348146080772371,0.0367915147497514,0.0387681385065703,0.0405911350541839,0.0425429911412193,0.057905016554735,0.0710981812093179,0.0846190151554879,0.0975514881359139,0.1103944012310546,0.1263825737548905,0.1387778048858103,0.1487371076412172,0.1592185931258411,0.1683217158176943,0.1801569953375184,0.1909108606779001,0.2014168830745493,0.2104820290900348,0.2189647022612098,0.2280866793572092,0.2368060124218061,0.2444881226483967,0.2519339895117172,0.2586599010297025,0.2647123319291361,0.2699448068238836,0.274576471282687,0.2790252768013009,0.2832961760286919,0.2874078624078624,0.2916713414862186,0.2950902755780804,0.2976353180845303,0.3002128330443008,0.2977662838842809,0.2955743247867928,0.2928710677269603,0.2905420958738562,0.2881563964923177,0.2847608453837597,0.2808316270278784,0.2799399242523181,0.279747953395156,0.280887517292753,0.281119714115545,0.2819240724762726,0.2826894733564444,0.2837700274409135,0.2848492072952676,0.2860242831309739,0.2875330967269449,0.2919689845234017,0.2961701536108987,0.3011274046042258,0.3044562310168185,0.3098242094705168,0.3146953853860121,0.320166163141994,0.3266548076022844,0.3322668562625903,0.3386557177615572,0.3425291985501409,0.3518316019682886,0.359602142310635,0.0,1.869703659803692,52.67647417122545,142.58464850802238,191.30558461004887,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95822,47973,457.7445680532654,4741,48.27701362943792,3764,38.69675022437436,1410,14.370395107595332,77.38566316619061,79.705707055334,63.36611244363343,65.08395049609085,77.21444693485212,79.53803153435182,63.30259561211498,65.02368053084606,0.1712162313384908,167.6755209821863,0.0635168315184486,60.26996524478534,252.6975,177.02486667942176,263715.5350545804,184743.44793410884,503.88242,336.1502402491658,525273.9036964371,350228.8709120785,476.07878,232.3770585893028,493130.21018137794,239610.23196309592,2163.71132,1014.6448724077278,2225917.179770825,1026793.65953962,890.4436,401.66758303250737,911914.988207301,401895.8038329226,1371.62712,569.6730188317589,1399256.0998518085,568054.0386209505,0.38,100000,0,1148625,11987.069775208198,0,0.0,0,0.0,43383,452.1404270418067,0,0.0,43102,446.0144851912922,1053629,0,37777,0,0,9983,0,0,95,0.9914215942059236,0,0.0,0,0.0,0,0.0,0.04741,0.1247631578947368,0.2974056106306686,0.0141,0.3699433656957929,0.6300566343042071,23.036391328477077,3.9713801615626014,0.3116365568544102,0.2922422954303932,0.1886291179596174,0.2074920297555791,11.708755482537743,6.643052106445364,14.88072307938503,11334.557260495714,43.156868314190206,13.62545872142396,13.295239351090844,7.84993715424616,8.386233087429236,0.5884697130712009,0.8263636363636364,0.6734867860187553,0.6056338028169014,0.1101152368758002,0.7780748663101604,0.9094650205761317,0.8553846153846154,0.7771084337349398,0.1655172413793103,0.5079485238455715,0.760586319218241,0.6037735849056604,0.5533088235294118,0.0974842767295597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775900661379,0.0043287410155814,0.0066273558575473,0.0089305671265722,0.0109036169087432,0.0130129314733733,0.0151260332895045,0.01750178589652,0.0196126526649292,0.0216950817658977,0.0238268479898338,0.0257110305966396,0.0278828365878725,0.0298404529078744,0.0322031801027037,0.0340542885473475,0.0360997009798342,0.0381207052019526,0.0400261649638674,0.0419636446876918,0.0568674899866488,0.0702339389124662,0.0839421031118005,0.0965918641788535,0.1087119097525779,0.1243161607840652,0.1356736544389479,0.145788830437324,0.1563179898468495,0.1650209904043865,0.1768962773392976,0.1884943994988172,0.1992705642272539,0.2081086980246644,0.2156292205154107,0.2245274676688405,0.2331395607822174,0.2414300311022782,0.2486723358961874,0.2552561817267699,0.2610788535017142,0.2663960717076641,0.2719144067096835,0.2765357791153148,0.2810114330651503,0.2856932587577274,0.2892769943694255,0.292079207920792,0.2955465065333367,0.2979838444867669,0.2943472661909105,0.2906073107550609,0.2883320237961612,0.2847660187185025,0.283072777876473,0.2792021487653756,0.275389083562206,0.2752475247524752,0.2759978857269519,0.2773423583897399,0.27754660297438,0.2782733699612059,0.2786150883362639,0.2785691957308087,0.280016338691463,0.2817018837445611,0.2834874128857915,0.2884133350043865,0.2918475977027595,0.297004234437453,0.3004852387646818,0.302787584971281,0.3067358160459885,0.3121278359840205,0.3151197604790419,0.3197311003656091,0.3208977858659387,0.3220644128825765,0.3182065217391304,0.3205273069679849,0.0,2.1874670774735745,48.56468147187383,141.70523449036713,190.15100191052085,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95757,48230,459.28757166577896,4909,49.9075785582255,3934,40.40435686163936,1473,14.923190993869898,77.37657405990127,79.72087898165407,63.3458979718325,65.07876728288757,77.17907359985637,79.52944550132338,63.26932040748926,65.00731330317156,0.1975004600449068,191.4334803306872,0.0765775643432391,71.45397971601142,251.72664,176.34165327471558,262880.2071911192,184154.9128259193,502.95162,334.6693956125604,524559.5204528129,348820.983544347,477.73125,233.3677298675951,494669.23566945497,240475.07338621083,2245.70708,1076.1867956107026,2308515.513226187,1087198.7589530812,902.44147,413.92178692406736,926858.704846643,416734.3113004552,1424.37862,625.1728557483904,1445307.705964055,616100.5217515643,0.38177,100000,0,1144212,11949.100326869053,0,0.0,0,0.0,43254,450.9853065572229,0,0.0,43207,446.9855989640444,1056396,0,37916,0,0,9855,0,0,93,0.9712083711895736,0,0.0,1,0.0104431007654792,0,0.0,0.04909,0.1285852738559866,0.3000611122428193,0.01473,0.3492467227548425,0.6507532772451575,22.757725660164567,3.989688942273732,0.309862735129639,0.2948652770716827,0.2005592272496187,0.1947127605490594,11.376294507209533,6.242935636523852,15.742369361302286,11478.600080457649,45.13316026074219,14.231833468322783,13.72002065957538,8.830730479212075,8.350575653631951,0.5973563802745298,0.8155172413793104,0.6964725184577523,0.5792141951837769,0.1279373368146214,0.747457627118644,0.9256900212314224,0.8536585365853658,0.7461928934010152,0.1032608695652173,0.533042846768337,0.7402031930333817,0.6386083052749719,0.5236486486486487,0.1357388316151202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0047643665926669,0.0069502222041843,0.0092141086594335,0.0114616385973476,0.0134825510941843,0.0156111388687787,0.0180810225834116,0.0202619123074249,0.0225506955604917,0.0247827156444735,0.0269965099568877,0.0290833950160375,0.0310913378852946,0.0332910360764651,0.0353698746240271,0.03726598740888,0.0395435684647302,0.0415726716081211,0.0434578855286178,0.0575698749660801,0.0713942106584121,0.0852569343983898,0.0983237875045977,0.1106017010781926,0.1260492652500264,0.1368812826059295,0.14711234556077,0.1566028263493521,0.1663198764425758,0.1779420002585426,0.1891043677762867,0.1997062183776726,0.2093743502194206,0.2183095489781536,0.2281460294231771,0.2371486325005863,0.2448561523569402,0.2526701701417659,0.2595815822922511,0.2654366685945633,0.2705132701975914,0.2763305703035391,0.2805824312673627,0.2850794113361504,0.2888308552704517,0.292156029786596,0.2949518803483913,0.2976587332351345,0.3000961424488667,0.2971750046993743,0.2940692153580152,0.2916315641673687,0.2887915507975159,0.2863444600695729,0.28255561998352,0.2789013693443554,0.2783417520801661,0.2786996851331801,0.2791197470782565,0.2791578790197652,0.2803492075976247,0.28088201579792,0.2804658901830283,0.2825422595740617,0.2835426647675774,0.2837948688937289,0.2889663978076048,0.2929718805533294,0.2950502859396569,0.2992713943069195,0.3052143196077397,0.3102760640618184,0.3131495707184817,0.3167425016250348,0.3217177050334389,0.3307134220072551,0.3352520841603811,0.3369156367544331,0.3360809291869614,0.0,2.550049267354754,50.72012718471972,146.5851406635003,200.17661953392331,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95759,48082,457.97261876168295,4896,50.10495097066594,3895,40.17376956735137,1440,14.672250127925311,77.3313489084019,79.69807273819036,63.31030609897547,65.06336523819857,77.1480273780694,79.5188089089543,63.24054966960789,64.99777536054685,0.1833215303325062,179.26382923606354,0.0697564293675796,65.58987765171764,253.3113,177.44982808317087,264530.018066187,185308.77315257143,503.72374,335.7755628113542,525551.405089861,350165.09446773067,476.35841,232.4817660184625,494681.116135298,240627.11621229592,2211.18688,1039.045133215656,2281744.462661473,1057903.108384836,873.07192,395.8407913984633,898733.4871918045,400446.6699006175,1393.70892,595.8495194789472,1422277.4882778642,593201.1341599243,0.38052,100000,0,1151415,12024.091730281229,0,0.0,0,0.0,43450,453.2211071544189,0,0.0,43155,447.8847941185685,1044786,0,37469,0,0,9945,0,0,79,0.8249877296128824,0,0.0,0,0.0,0,0.0,0.04896,0.1286660359508041,0.2941176470588235,0.0144,0.3712832550860719,0.628716744913928,23.15568193106646,3.9443917846853926,0.303209242618742,0.2985879332477535,0.203594351732991,0.1946084724005135,11.26520858807084,6.212512935733869,15.412211338439995,11383.338699554926,44.48884657065448,14.34843209607914,13.154843369962943,8.836448406337935,8.149122698274457,0.5876765083440308,0.7987962166809974,0.6833192209991532,0.5863808322824716,0.1160949868073878,0.759493670886076,0.9247967479674796,0.8548387096774194,0.705607476635514,0.1715976331360946,0.5125461254612547,0.706408345752608,0.6222732491389208,0.542314335060449,0.100169779286927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.004390723708894,0.0065770109109363,0.0088803088803088,0.0109463061303383,0.0132293183693006,0.0154785818437662,0.0176235743386054,0.0196483547954873,0.0218264129299219,0.0239067115195274,0.0261776339446242,0.0283620796114106,0.030629702153973,0.032616997997564,0.034702761951048,0.0368222673238619,0.038934490022518,0.0410598642425754,0.0432038329340693,0.0573104787356201,0.0716273910677661,0.0849313918845201,0.097324752350306,0.1092964161825332,0.124063967508567,0.1353743301321165,0.1460175105979592,0.1558619215560543,0.1649605116318997,0.1766468356613209,0.1884299668623161,0.2000696689635653,0.2093153084122379,0.2185965607591871,0.2280678417026937,0.2363575456423426,0.2434999887445692,0.2509418974126191,0.2575873881511863,0.2626029997222479,0.268082515746833,0.2731592293290992,0.2780731973736331,0.2818383032543659,0.2851031302782607,0.2886497309473157,0.2925302492461544,0.2951274178294272,0.2978358632149498,0.2944643289647192,0.2915459103083579,0.289113447267821,0.2859984146429343,0.2828602717021339,0.2791637439385159,0.2756133665081415,0.2762596978358513,0.2770549517832542,0.2775124713735376,0.2769394142633579,0.2776183362163862,0.2785748495512566,0.2791374902745359,0.2805688336520076,0.2817193164163645,0.2823599220140714,0.2858035295955021,0.2911259575361153,0.2961687643473442,0.3003258508327299,0.3048069345941686,0.3085252022401991,0.3122042808862185,0.3151492812384814,0.3173176633252679,0.3219512195121951,0.3306169965075669,0.3329801324503311,0.3337024732373569,0.0,1.9795839023781951,51.68268675398152,138.8072578110335,200.3620992848696,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95490,48155,460.5508430202116,4816,49.14650748769505,3826,39.470101581317415,1449,14.86019478479422,77.22623088476638,79.7140300847922,63.24095407219974,65.07647569560764,77.03939421267984,79.52939880646267,63.169580186780834,65.00852893575403,0.1868366720865424,184.6312783295332,0.0713738854189074,67.9467598536121,250.83058,175.6646645550009,262677.3274688449,183961.32009111,498.2852,333.3399625825628,521230.589590533,348494.9760001704,475.75996,232.91264001065352,494450.3717666772,241100.57872179063,2190.32572,1035.4229304861517,2259833.9511990785,1050385.0146467192,843.37962,385.2899107880604,867403.2149963346,387688.15204530256,1403.5697,601.6598184932966,1438653.2411770865,601778.8518830345,0.37966,100000,0,1140139,11939.878521311131,0,0.0,0,0.0,42956,449.2198135930464,0,0.0,43014,446.63315530422034,1051350,0,37739,0,0,10067,0,0,78,0.8168394596292806,0,0.0,1,0.0104723007644779,0,0.0,0.04816,0.1268503397776958,0.3008720930232558,0.01449,0.3569862467610125,0.6430137532389875,23.098913975381898,3.9719373382597847,0.3178254051228437,0.2807109252483011,0.202038682697334,0.1994249869315211,11.195057902271978,6.1596104891314605,15.456503466755152,11423.300979999336,43.65037015074103,13.137612684262743,13.667529677378166,8.598688251863125,8.246539537236998,0.5776267642446419,0.7877094972067039,0.6998355263157895,0.5692108667529108,0.0956749672346002,0.7462817147856518,0.8972602739726028,0.8517441860465116,0.7009803921568627,0.1528662420382165,0.5057771151695862,0.7122641509433962,0.6399082568807339,0.5219683655536028,0.0808580858085808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509145260171,0.0047470761865154,0.0071476435112798,0.0093645144890696,0.0115450399087799,0.0134943688528767,0.0157348544372901,0.0178305029325812,0.0200008184478137,0.0221719039763936,0.0243063752912556,0.0263937156840568,0.0284099100026772,0.0303852302614615,0.032381719930153,0.0346741212403582,0.0367016255355346,0.0386074699321198,0.0406217767729702,0.042844910404745,0.0576868725989972,0.0719104424370232,0.0850869167429094,0.0981871838111298,0.1103995603884644,0.1261844699298327,0.137922235335396,0.1483046326526257,0.1592065379218748,0.1681124834725402,0.178932365897901,0.1901264834139674,0.2003838227436783,0.2088586777765596,0.2173414103964602,0.2264069167852062,0.2343510510947271,0.2424888107236671,0.249582001615123,0.2564464488587462,0.2617206071639783,0.2665588145647229,0.2721461187214611,0.2770323030164698,0.2817239405050493,0.2852375125152965,0.2893395278754395,0.2926131647832471,0.295967385941679,0.2990887810297171,0.2959284200866408,0.2933472878251649,0.2901748601541474,0.2872527789807997,0.284837496842074,0.2812993181644067,0.2776862384739694,0.276595045666601,0.2773741345414138,0.2786902806541455,0.2799333981890294,0.2821069244426908,0.2833061787191377,0.2847596560787633,0.2846321122183191,0.2857920522591181,0.2860541520335334,0.2890014381291815,0.2936679698408266,0.2982670824616113,0.3004760825209703,0.3062084958364077,0.3110378297660527,0.3176020408163265,0.3263448275862069,0.3260441976165683,0.3310688405797101,0.3308422540900828,0.3317846406121891,0.3361184960121534,0.0,2.289049333829765,49.45709000318325,137.10534726868715,199.2231236910354,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95708,48151,459.5645087140051,4861,49.4733982530196,3870,39.839929786433736,1490,15.192042462490074,77.36399481233721,79.74840381439182,63.33329461681414,65.09712162290901,77.1704402828768,79.55949628895847,63.25840961882832,65.027005668953,0.1935545294604139,188.90752543335051,0.0748849979858192,70.11595395601944,251.18016,175.98453058444213,262444.2679817779,183876.5104112949,502.78048,335.8214022009261,524740.2202532704,350293.9066754358,479.62379,234.3553340763097,497560.7472729552,242130.45104174785,2193.05092,1050.8597458764198,2259677.978852343,1066265.5429811715,873.51066,401.32458130969934,899805.1155598278,406443.9767936836,1444.30842,632.5116547914693,1474576.6080160488,630488.0391841407,0.37873,100000,0,1141728,11929.284908262633,0,0.0,0,0.0,43322,452.0207297195637,0,0.0,43255,448.37422159067165,1056606,0,37893,0,0,9993,0,0,94,0.9821540519078864,0,0.0,1,0.0104484473607221,0,0.0,0.04861,0.1283500118818155,0.3065212919152438,0.0149,0.3726499109439937,0.6273500890560063,22.796135955027324,4.001467425678057,0.3064599483204134,0.2930232558139535,0.1971576227390181,0.203359173126615,11.040145004546272,5.929593273326266,16.212691376527985,11356.971941293095,44.64018327586572,13.95444048320993,13.505280242077705,8.49372211689894,8.686740433679136,0.586046511627907,0.8042328042328042,0.6905564924114671,0.5871559633027523,0.1130876747141041,0.7512155591572123,0.9230769230769232,0.8857938718662952,0.7192118226600985,0.1519607843137254,0.5087253414264037,0.7207207207207207,0.6058041112454655,0.5392857142857143,0.0994854202401372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0047968196983986,0.0070555510436124,0.0094009797345366,0.0115590467856488,0.0137640850092711,0.0160757272838549,0.0180971444911965,0.0202714450819755,0.0223330397919269,0.0244992975295601,0.0264563306219702,0.0285746613316327,0.0307164422096054,0.0326136316723774,0.0344421122289661,0.0364542327932706,0.0385529415427403,0.0405214354027194,0.0425848936680108,0.0567740318335631,0.0702263068645717,0.0837302503199815,0.0956282141617676,0.1079300494376337,0.1236968428175685,0.1345705196182396,0.1455698222397157,0.1556978916466506,0.1645713428292766,0.1762262445386651,0.1875087886294064,0.1980579145960875,0.2072351873318606,0.2162878704538954,0.2257332344246504,0.2337620327715251,0.2419318565163611,0.2499064042203188,0.2564134852040524,0.2623020967051775,0.2670477793754895,0.2725949591764288,0.2774502755811167,0.2806717179076206,0.2841630964691978,0.2881078310014129,0.29174076520502,0.2950084635164295,0.2977790650219197,0.2948871190856713,0.2918284734133791,0.2893716821616156,0.2858069070842998,0.282724837578251,0.2802766057910529,0.2764213573293899,0.2767368352450469,0.2773013828633405,0.2763150896228924,0.2765588914549653,0.2787303832027183,0.2795222340137753,0.2816594372149927,0.2831296543822799,0.2843172857439303,0.28413535113076,0.2892430527399183,0.2938120969147638,0.2971579278853724,0.3015143320713899,0.305083857442348,0.3086720359617906,0.3136291480837553,0.3141787552643893,0.3178056278079924,0.3233358837031369,0.3225675401178143,0.3223847640077284,0.3288513253937764,0.0,2.363724308124069,53.6292261566713,140.719118290623,189.30408322787295,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95667,47775,456.7196629976899,4847,49.47369521360552,3886,39.99289201082923,1494,15.209006240396375,77.31725194233033,79.72441951083114,63.30264576078415,65.08428939030064,77.11798637479586,79.52999156556268,63.227353299987456,65.01364946085212,0.1992655675344679,194.4279452684583,0.075292460796696,70.63992944851805,252.60994,176.89231152879097,264051.05208692653,184904.00740524195,497.28133,331.88373299056315,519163.1701631702,346275.9877647153,472.77349,231.29160992125023,490259.9119863694,238752.7609004921,2229.9754,1063.3695667721904,2295524.8518297845,1076176.4166579817,887.32288,407.7643285831208,910045.2507134122,408792.6370535151,1445.62308,619.5813564882762,1472018.982512256,614169.2128385694,0.37885,100000,0,1148227,12002.320549405753,0,0.0,0,0.0,42919,447.96011163724165,0,0.0,42840,443.9775471165606,1053047,0,37779,0,0,9986,0,0,74,0.7630635433326016,0,0.0,0,0.0,0,0.0,0.04847,0.1279398178698693,0.3082318960181555,0.01494,0.3698466440948018,0.6301533559051982,22.641750428331765,4.0278738153764575,0.305712815234174,0.2879567678847143,0.2076685537828101,0.1986618630983015,11.508743837252212,6.332322416131247,16.1368283881151,11369.72945660538,44.866024020478456,13.930464794301928,13.524663652003747,8.97891471125494,8.431980862917833,0.5918682449819866,0.8150134048257373,0.6893939393939394,0.587360594795539,0.1230569948186528,0.7550362610797744,0.9096153846153846,0.8166189111747851,0.736318407960199,0.1812865497076023,0.5153119092627599,0.7328881469115192,0.636471990464839,0.5379537953795379,0.1064891846921797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022592116060664,0.0043806723115144,0.0064950221744116,0.0086374213740613,0.0105611232639772,0.0128348782723846,0.014934813212821,0.0171829029094475,0.0190706144748419,0.020982101693526,0.023012208884785,0.0254115374339793,0.0274326536074196,0.0295997690578798,0.0319029176349083,0.0335947523072466,0.0355147356090683,0.0377705313006272,0.0400049941215028,0.041813481225111,0.0563153660498793,0.0699744481213086,0.0831828679403737,0.0963523309520553,0.1087621579424858,0.1232776684233919,0.1345468053491827,0.1444743820487971,0.1539949555403556,0.1641099358492995,0.1762494614390349,0.1885628308238528,0.2002024115265746,0.2103039523658373,0.2187771915718518,0.2281946137648232,0.2365786977626513,0.244154003621762,0.2513582487381614,0.2572661606969104,0.2625393300018508,0.267895142997451,0.2730037752819627,0.2787189686571455,0.2831792841266564,0.2866878635512176,0.2900735662095886,0.2919971527354078,0.2957567917205692,0.2979530546115546,0.2954991266962246,0.2916369227390039,0.2891107740703292,0.2858975097994005,0.2827239121720928,0.2803399173174092,0.2769191871306216,0.2767829349411013,0.2772906060038482,0.2768916155419222,0.2775661138502913,0.2794722851235601,0.2804097846539828,0.2819981275912799,0.2839129599385147,0.2853984027470669,0.2855683559389365,0.290226832468912,0.2946185523836113,0.2990580538367556,0.3029107725788901,0.30685539241576,0.3108269074039245,0.3139755560616412,0.31817756572177,0.319376026272578,0.3193174893357708,0.3237597911227154,0.3223912463303977,0.3213090368166604,0.0,2.394410738048252,53.89921269575177,139.4384365130478,192.98704132200388,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95856,48469,461.8072942747455,4895,49.89776331163412,3908,40.185277916875314,1439,14.646970455683526,77.4717338221379,79.75865804934593,63.40399372213196,65.09097041084969,77.2925319743093,79.58275705216683,63.33614177149008,65.02668352127677,0.1792018478286081,175.9009971790988,0.0678519506418808,64.2868895729265,252.66604,177.0157172412335,263588.9459188783,184668.1652198854,501.76587,334.1228148264204,522866.3724753798,347976.68507830537,481.70987,235.10856067471576,499086.21265231183,242628.69916422604,2206.57356,1036.7993441691367,2271413.745618428,1051141.3012947934,873.69825,393.71165025564,898550.3359205475,398022.6861497656,1390.25156,587.4582094988665,1416921.3612084794,584970.69070733,0.38319,100000,0,1148482,11981.31572358538,0,0.0,0,0.0,43234,450.4047738274078,0,0.0,43547,450.769904857286,1054753,0,37780,0,0,10038,0,0,81,0.8450175262894342,0,0.0,3,0.0312969454181271,0,0.0,0.04895,0.1277434171037866,0.293973442288049,0.01439,0.372156862745098,0.6278431372549019,23.142367306044584,3.948042527772973,0.3011770726714431,0.3039918116683726,0.2003582395087001,0.1944728761514841,11.419040109572126,6.334118356362096,15.20653233854074,11477.142344047828,44.77617603711575,14.693976632428129,13.368244075570177,8.586921406157307,8.127033922960125,0.5980040941658137,0.8173400673400674,0.6949872557349193,0.5874840357598978,0.1157894736842105,0.7674216027874564,0.9221311475409836,0.8389057750759878,0.717391304347826,0.1564625850340136,0.527536231884058,0.7442857142857143,0.6391509433962265,0.5475792988313857,0.1060358890701468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020346188885514,0.0042548449514238,0.0066620698047009,0.0088408444985789,0.0111169823591577,0.0132977911626156,0.0155244071387824,0.0176664388661655,0.0202295610971549,0.0221713163707764,0.0243245457711137,0.0266960668683657,0.028753698224852,0.0308159275645642,0.0329753020244918,0.0349025722576181,0.0367523843018805,0.038812714402678,0.0409727125472442,0.0429783027212654,0.0580696961481512,0.0723708969266151,0.0852205443132158,0.0977367768508206,0.1098685666705313,0.1259118300031715,0.1377054395080055,0.14845112973916,0.1583397386625672,0.1672918631569922,0.1790752477591383,0.1897134952285229,0.200241044962486,0.2101965065502183,0.2188371735453687,0.2282148502702762,0.2361858299640235,0.2438364469193461,0.251449406649153,0.2579789666209419,0.2642204164550533,0.2702765729210391,0.2761066333093381,0.2801438780143878,0.2843222803955788,0.2881187144999877,0.2907774865843005,0.2949904882688649,0.297297646087136,0.3001603659498396,0.2976011591714071,0.294141801259239,0.2919808279844157,0.2889750772103713,0.2851086458779562,0.2810693201874505,0.2775515978433437,0.2774193548387096,0.2783641384451183,0.2797283195075791,0.2805102211329582,0.281660926737633,0.2836851490897026,0.2844223327805417,0.2865692910580691,0.2872518474650462,0.2871637763849461,0.2928438661710037,0.2971503303964757,0.3019888685634219,0.30630068621335,0.3102134544126089,0.3126124449407531,0.3160270880361174,0.3206121115983951,0.3220916568742655,0.3292847503373819,0.3343248066627007,0.337990327780763,0.3390912504693954,0.0,2.27519572288848,49.64736263021863,149.5780327422101,196.95654902178535,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95737,48057,457.3362440853589,4779,48.64368008189102,3801,39.09669197906766,1391,14.17424820080011,77.34438518034166,79.69751768380209,63.33412346583962,65.07241554781282,77.16012818216561,79.5173736037893,63.26342748802308,65.00563456001213,0.1842569981760533,180.1440800127949,0.0706959778165341,66.78098780069774,254.19372,177.99909291464834,265512.0590785172,185924.6263353231,503.1502,335.76916755559984,524916.5735295655,350082.6442813121,476.42926,232.6735851940162,493604.8654125364,239828.5033828456,2181.96072,1033.331510368267,2247699.13408609,1047948.5573689028,883.297,403.3596502696436,909714.3946436592,408406.2799854215,1350.70944,584.2380852542238,1378839.9469379657,582271.1122223565,0.3807,100000,0,1155426,12068.729958114418,0,0.0,0,0.0,43468,453.3879273426157,0,0.0,42945,444.59299957174346,1041827,0,37446,0,0,10060,0,0,88,0.9087395677742148,0,0.0,0,0.0,0,0.0,0.04779,0.125531914893617,0.2910650763758108,0.01391,0.3703703703703703,0.6296296296296297,23.21742819218593,3.962392865013016,0.310444619836885,0.2851881083925283,0.2067876874506709,0.1975795843199158,11.433984097085208,6.252144134995935,14.965870061943614,11458.198566531222,43.579708333688245,13.41620097911174,13.293816590121494,8.716773314352222,8.15291745010279,0.588529334385688,0.8099630996309963,0.6949152542372882,0.573791348600509,0.1171770972037283,0.7418244406196214,0.908119658119658,0.835820895522388,0.6919191919191919,0.124223602484472,0.5210306934444866,0.7353896103896104,0.6390532544378699,0.5340136054421769,0.1152542372881356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0045319517808441,0.0070110289268357,0.0093334552065242,0.0114382739898733,0.0136817566398257,0.0157049387497197,0.0182152150619929,0.0206291955737654,0.0227054128721989,0.0249815558652348,0.0271576808202728,0.0290775985276124,0.0312667353244078,0.0333825061637971,0.0355076058201058,0.0375009056939686,0.0395105257699885,0.0418610935015536,0.0437268892245195,0.0579822107153296,0.0715571368773545,0.0845674609833864,0.0972396025027604,0.109454415083198,0.1251004525652413,0.1365540648035212,0.1464836684753697,0.1556955941255006,0.1652210273509955,0.1783780292182975,0.1902124529444853,0.2011547369222238,0.2103640874859272,0.2189341954781384,0.2283756558701764,0.2360378053271142,0.2446103844985998,0.2515314456847264,0.258337435744788,0.2638233388858041,0.2691326829040031,0.2743590046972798,0.2792805755395683,0.2833147104547221,0.2872590966819151,0.2907524296162709,0.2943139127666348,0.2977232697886448,0.3000448596157906,0.2969737726967048,0.293412104142337,0.2908901672316066,0.2878429449268672,0.2848368863767858,0.2812672092027167,0.2780870445344129,0.2776786152914012,0.2783874045801526,0.2783897777224111,0.2787604015075189,0.2802571563384712,0.2818776564713726,0.2833077419498409,0.2841412327947337,0.2855810821311093,0.2864296019689383,0.2904193487907006,0.2939659079025342,0.2986695092581626,0.301359346068735,0.3038161501159603,0.3067190226876091,0.3112290669856459,0.3167408231368186,0.3183249737548116,0.3250530142381096,0.3254065040650406,0.3336081341027755,0.3407606607760277,0.0,2.36292326724593,50.28307379295054,136.3992770890523,195.16772177631665,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95675,47896,458.67781552129605,4866,49.490462503266265,3946,40.70028743140841,1421,14.549255291350928,77.28108161739658,79.6687087414915,63.29287913429015,65.05589998914374,77.10214100553122,79.49157367489207,63.22506126552054,64.99093564089395,0.1789406118653573,177.13506659943334,0.067817868769616,64.96434824978792,252.78946,177.09113564878666,264216.8382545074,185096.56195326537,501.72561,334.17031837277347,523880.1881369219,348750.53919286485,480.41924,234.67173176360131,498337.62215834856,242371.91924460643,2221.34304,1062.593503642017,2292146.746799059,1081015.7968560394,896.77269,411.2732937855909,922680.585314868,415234.12990393554,1371.8239,584.1907311726137,1404719.4983015417,585085.3547068806,0.38001,100000,0,1149043,12009.856284295793,0,0.0,0,0.0,43260,451.60177684870655,0,0.0,43539,451.27776326104,1045592,0,37573,0,0,10072,0,0,82,0.8570681996341782,0,0.0,1,0.0104520512150509,0,0.0,0.04866,0.1280492618615299,0.292026304973284,0.01421,0.3693497224425059,0.630650277557494,22.72585761539376,3.9110728533744665,0.3086670045615813,0.3051191079574252,0.1991890522047643,0.1870248352762291,11.676276615824028,6.651572133787262,15.190749232722547,11340.178991421948,45.60401554343194,14.897849821038864,13.940118060842366,8.74216697967957,8.023880681871134,0.6115053218449062,0.8280730897009967,0.7077175697865353,0.5814249363867684,0.1314363143631436,0.8033573141486811,0.9274809160305344,0.8955613577023499,0.7208121827411168,0.2312925170068027,0.5224489795918368,0.7514705882352941,0.6215568862275449,0.534804753820034,0.1065989847715736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020260345438889,0.0043187785764251,0.0063630920364939,0.0086964472574697,0.0107194434839208,0.0126573255671866,0.0148153435161204,0.0168354637154408,0.0191157679529772,0.0214229418929569,0.0233156637376834,0.0252679781510534,0.0272418757712875,0.0291993364723822,0.0310651956281671,0.0330241839593866,0.0349499678882926,0.0370216608371648,0.0390284495761169,0.0410243582126887,0.0551840862551715,0.0689821262159303,0.0824743350198391,0.0954976378118456,0.1073139336132857,0.1230744815911976,0.134837901530753,0.1456826678311623,0.1555930971066869,0.1650988982668642,0.1768487358702217,0.1878427292628476,0.1980571104963952,0.2065525661662451,0.2151112188350391,0.2247382895670688,0.2332629320459955,0.2416352272087392,0.2488356242190162,0.255926724137931,0.2621460420406509,0.2670968950937562,0.2725397935358468,0.277330388968232,0.28211424611906,0.2863376392860665,0.2910517817581015,0.2933328240970604,0.2962699039944029,0.2992589852985853,0.2959603175672943,0.2929868770741246,0.2894346813466017,0.2856563960808718,0.2838561819155902,0.2810264266564534,0.2767936226749335,0.2783403633737629,0.2785659411011523,0.2791974054670516,0.2792560158676696,0.2809157588817935,0.2817051956489845,0.2823132293110386,0.283830523130134,0.2856030926497678,0.2866672343807658,0.2920866462154886,0.2951521905690604,0.2983442797026782,0.3023465703971119,0.3052925084175084,0.3058625210713617,0.3113143885431506,0.3201555411535969,0.3246242774566474,0.3246831623415812,0.331018059138718,0.3336901257693337,0.3377609108159393,0.0,2.1740446258118906,54.57731501956419,144.49907294967622,194.43472685204387,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95729,48228,460.46652529536505,4822,49.17005296200733,3800,39.14174388116454,1344,13.694909588525944,77.3612597271838,79.72651420753101,63.34108899169471,65.08898484291646,77.18456872319183,79.55448303047946,63.27393602354498,65.02604173691563,0.1766910039919764,172.0311770515508,0.0671529681497276,62.943106000830085,251.04684,175.9030817797455,262247.4276342592,183751.09087083905,502.67205,335.79311204372686,524539.7423978106,350215.4123031963,483.89904,237.00091456932705,502027.3062499347,244847.4518474192,2134.87372,1023.2390687523256,2199440.629276395,1038209.8097257108,872.04074,405.0970461317913,893292.126732756,405515.4928305845,1296.44338,558.3575798924576,1321802.6094495922,554364.1056565016,0.38116,100000,0,1141122,11920.337619739055,0,0.0,0,0.0,43197,450.6471393203731,0,0.0,43701,453.0915396588286,1057916,0,37947,0,0,9879,0,0,95,0.992384752791735,0,0.0,1,0.0104461552925445,0,0.0,0.04822,0.1265085528387029,0.278722521775197,0.01344,0.3506364359586316,0.6493635640413683,23.224723594105512,3.942355188051224,0.3202631578947368,0.2876315789473684,0.2123684210526315,0.1797368421052631,11.665499624386824,6.591881010280371,14.395464504176148,11436.040949645683,43.83725867934093,13.615874747394065,13.82066152361018,8.999379617095808,7.401342791240883,0.6036842105263158,0.817932296431839,0.7058340180772391,0.5749690210656754,0.1127379209370424,0.7863453815261044,0.9442307692307692,0.8675675675675676,0.7437185929648241,0.1217948717948717,0.5146771037181996,0.7033158813263525,0.6351829988193625,0.5197368421052632,0.1100569259962049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.0046232460053532,0.0066976517627001,0.0087980412674868,0.0110139326756839,0.0134722307081322,0.0152958211816531,0.0175626691172716,0.0197531873996748,0.0216216216216216,0.0234997385500292,0.0254711652031017,0.0278923388631197,0.0302864854284919,0.0323612573008895,0.0346328402030414,0.0366588654391814,0.0386758677943236,0.0406679907246617,0.042426831428363,0.0571037766385098,0.0718121016108267,0.0849242646750304,0.0976489390785018,0.109654300168634,0.125280115005708,0.1370885646420088,0.1473229485869935,0.1571301923672601,0.1659234166630933,0.1782768793471005,0.1897972870648811,0.1999739093567569,0.2102473305135687,0.2195510706591039,0.2289264611503308,0.2373493572949531,0.2455172568757864,0.2527340518364895,0.2589211143527258,0.2650488241751892,0.2695541490529463,0.2745355268756205,0.2782855228844175,0.2835263897639703,0.2879893828798938,0.2914342057637822,0.2942625344387593,0.2970537664990368,0.2996863716627573,0.2956493698438717,0.2927451545203901,0.2892090776317267,0.2864987964657893,0.2838893252515672,0.2813292202437311,0.2775544309385297,0.2773875257294083,0.2765708073584617,0.2766297684831471,0.2763140720851746,0.2773389019128859,0.2786909181928163,0.2803505494016637,0.2816702560421153,0.2839855618167182,0.2842371388802091,0.2890296681929373,0.2924297497553474,0.2994823566602126,0.3035182679296346,0.3084788422211735,0.3100857036392995,0.3103422395676974,0.3175688158137816,0.3238583410997204,0.3330824804334738,0.3382558371582518,0.3430939226519337,0.341991341991342,0.0,2.111511763066521,54.35584393679545,130.36106424155142,190.38821913248125,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95649,48198,460.19299731309263,4940,50.32985185417516,3910,40.28270028960052,1445,14.762308022038914,77.2430810454354,79.64783137060016,63.27207635196621,65.05007123764099,77.06009373025044,79.46795945867811,63.20360176583726,64.98516294235792,0.1829873151849597,179.87191192204932,0.0684745861289499,64.90829528307529,251.8527,176.41549395700486,263309.28708088945,184440.50011709987,500.98329,333.8641877772528,523125.3541594789,348404.1315405836,480.05781,234.24320753726025,497731.2569917092,241724.95247940204,2207.2778,1043.4843789311649,2273610.9316354585,1057193.9229774764,881.25648,395.2900010297327,905115.578835116,397160.7904804738,1401.60988,593.8622753886208,1432703.237880166,592304.5213256385,0.3815,100000,0,1144785,11968.60395822225,0,0.0,0,0.0,43128,450.22948488745305,0,0.0,43381,449.3930934981024,1049772,0,37768,0,0,9932,0,0,103,1.0768539137889577,0,0.0,0,0.0,0,0.0,0.0494,0.1294888597640891,0.2925101214574899,0.01445,0.3709083865969397,0.6290916134030602,23.09390605788727,4.067323847056146,0.3176470588235294,0.2805626598465473,0.207928388746803,0.1938618925831202,11.580800395427058,6.351170480632744,15.41217121912894,11470.040124979898,44.96625051753334,13.532301172778253,14.18715373714818,8.920757960831352,8.326037646775553,0.589769820971867,0.8113035551504102,0.6884057971014492,0.5879458794587946,0.1094986807387862,0.7521150592216582,0.9136069114470844,0.8619718309859155,0.7409326424870466,0.0994152046783625,0.5194281524926686,0.7365930599369085,0.6189402480270575,0.5403225806451613,0.1124361158432708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.0043413872152232,0.0069033430453894,0.0094087523750495,0.0116871624301974,0.0140536687204032,0.0161305123629875,0.0182568207809181,0.0206867637434555,0.0228562066070002,0.0250228179384889,0.0273062427472606,0.0292992451510726,0.031070681680042,0.03297792182323,0.0350946127597973,0.0370539182679857,0.0391090444855001,0.0408042270807763,0.0428686106274955,0.0580994378147923,0.0719276010516282,0.0852466588978824,0.0977381090212506,0.1098384883352686,0.1253414071266752,0.1367262606626512,0.1472049292171243,0.157068118841541,0.1667901672089951,0.178784511312266,0.1901427533954063,0.2011086788425305,0.2099361606605126,0.2181497603173728,0.2273619754401144,0.2361870270391111,0.2442451352660815,0.2517130487153555,0.2582068680940809,0.2640858122509498,0.27063876600426,0.2765657737425869,0.2806003788332893,0.2842745121877089,0.2881761549373959,0.2917298130033441,0.2952049733751178,0.2980638300631557,0.3003567181926278,0.2963731128200293,0.2929952953476215,0.28987386371644,0.2870810631133207,0.2850261655566127,0.2807057850480173,0.2772647352330867,0.278170170827858,0.2782862607151395,0.2786823781467595,0.2794575533630941,0.2808114794656111,0.2835364576789378,0.2850340896389851,0.2854055092581474,0.2862733842982753,0.2870164009371964,0.2912697664183092,0.2945779961396736,0.2992953541144154,0.3008635262941472,0.3049136786188579,0.3083160475202715,0.3104967340118487,0.3123114630467571,0.3140798488069927,0.3159679408138101,0.3209926769731489,0.3188286808976464,0.3233054074638233,0.0,2.217929704245748,51.50888909839877,143.25812080833774,200.5493232627603,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95824,47991,457.3593254299549,4821,49.14217732509601,3836,39.52037067957923,1492,15.27800968442144,77.44904619750217,79.77450086945699,63.38601454967061,65.10651865454962,77.25675499540885,79.5845085928369,63.31289449558594,65.03661881069046,0.1922912020933154,189.9922766200888,0.0731200540846757,69.89984385916159,253.51964,177.3694227498756,264567.99966605444,185099.16383147813,497.82817,332.114584461853,519016.6555351477,346081.2890944367,473.29621,230.86124414288173,490745.856987811,238503.77677124948,2175.93892,1039.6181984350335,2243818.0414092503,1057976.5804339556,860.92838,399.0222844141728,887798.7977959592,405767.9981368141,1446.23158,623.5100428913075,1481954.6668892968,626031.6242409042,0.37981,100000,0,1152362,12025.818166638835,0,0.0,0,0.0,42926,447.4348806144599,0,0.0,42792,443.2918684254466,1055223,0,37910,0,0,10127,0,0,81,0.8452997161462682,0,0.0,0,0.0,0,0.0,0.04821,0.1269318869961296,0.3094793611283966,0.01492,0.3631652381901535,0.6368347618098466,22.9579201942713,4.039942542151233,0.3104796663190823,0.2844108446298227,0.2062043795620438,0.1989051094890511,11.004912417970628,5.8546096126937694,16.01529941731667,11380.19752603824,44.094876737357566,13.393144541925157,13.465386080059789,8.845365369554697,8.390980745817929,0.5873305526590198,0.8258478460128322,0.6985726280436608,0.5600505689001264,0.1009174311926605,0.7605985037406484,0.946236559139785,0.8676056338028169,0.7164179104477612,0.1263736263736263,0.5081655905810862,0.7364217252396166,0.6267942583732058,0.5067796610169492,0.0929432013769363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021773695350556,0.0047844464942779,0.0070418962385721,0.0092745908716896,0.0114300822681188,0.0135929052162137,0.0159354832131969,0.0180957143877769,0.0199693408277976,0.0222754294952471,0.0244504790695291,0.0263649425287356,0.0282997532894736,0.0304243971748038,0.0325701320132013,0.0347232266462797,0.0368250551133835,0.0386876678522174,0.040541944600295,0.0426526469210348,0.0574483621948675,0.0712239392735409,0.0850093802731284,0.0974584729824856,0.1100105374077976,0.1247899559303763,0.1355050033921302,0.1463801097452039,0.1564123627751165,0.1651905715540229,0.176650248424494,0.1881455551233847,0.1976395735163188,0.2067309790911868,0.21582812791604,0.225616765408082,0.2339918483707877,0.2421355060996824,0.2495020145773914,0.2559024089367097,0.2618017331902471,0.268290122808859,0.2737116502907559,0.2776961399233002,0.2822211456945622,0.2855423166687139,0.2895219098672318,0.2931261722512293,0.2962958186086104,0.2991787661783063,0.296704475370713,0.2937267046700285,0.2913401281386252,0.2874320398124442,0.2848365800705962,0.2808416120247676,0.2771608525609813,0.2772104688848716,0.2767928202523071,0.2767964601769911,0.2773327881952833,0.2772023261733665,0.2784194781452551,0.278143931828773,0.2790231803872937,0.2794989432444971,0.2807175899808191,0.2842301710730949,0.2886752360051555,0.2941891468005019,0.2981506540369869,0.3030398819872504,0.3069671619428143,0.3129046830296642,0.3149687179008311,0.3196539226002572,0.3227025392986699,0.3278491171749598,0.3263757115749525,0.3310810810810811,0.0,1.9939204348987705,52.36797430649598,139.3753263089585,190.80023144981905,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95813,48223,459.7810318015301,4751,48.49028837422897,3808,39.22223497855197,1465,15.018838779706302,77.3497797498425,79.68216149316864,63.33168066437421,65.05950390931706,77.16303889903546,79.49719189104574,63.26146652984084,64.9919313891862,0.1867408508070411,184.9696021228908,0.0702141345333728,67.57252013085235,253.76868,177.75523225738476,264858.2968908186,185523.08377504596,501.22782,334.64520895765827,522631.1773976392,348768.95510803163,476.77892,233.21776036542465,493673.40548777307,240509.31578853645,2185.01352,1036.421420746358,2252859.3405905254,1054097.3988356057,878.67315,401.14882215661714,907353.6054606368,408977.6395634094,1423.96246,605.2939432399266,1460438.562616764,609539.5234206646,0.38022,100000,0,1153494,12039.013495037208,0,0.0,0,0.0,43192,450.25205347917296,0,0.0,43088,445.81632972561135,1044476,0,37437,0,0,9920,0,0,86,0.8975817477795288,0,0.0,0,0.0,0,0.0,0.04751,0.1249539740150439,0.3083561355504104,0.01465,0.3589274832419256,0.6410725167580743,22.80338261889543,4.015718744747219,0.3064600840336134,0.2833508403361344,0.1995798319327731,0.210609243697479,11.45291856988075,6.3639770428568285,15.625681871210466,11341.594398426936,43.82689698937177,13.354012295557167,13.307668216437904,8.556915428503556,8.60830104887314,0.5790441176470589,0.788693234476367,0.7163667523564696,0.5842105263157895,0.0922693266832917,0.754950495049505,0.9100642398286938,0.8495821727019499,0.7336448598130841,0.1627906976744186,0.4969183359013867,0.696078431372549,0.6571782178217822,0.5256410256410257,0.073015873015873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070972709038,0.0041063806057164,0.0066170052976637,0.0089404545408365,0.0110873766656494,0.0132477979736265,0.0156402936378466,0.0179251349999489,0.0203501742694481,0.0224669648614622,0.0245615114145421,0.0268083577185687,0.0289548095213613,0.0307586164286229,0.0328443811763735,0.034987290499907,0.037037037037037,0.0388963800435639,0.0409064461161215,0.0427290805543119,0.0564400025038078,0.0708198709704403,0.0842678964469133,0.0967758885222472,0.1085183077214949,0.1240761691284534,0.135800504889794,0.146551724137931,0.156544401956805,0.1659533846038335,0.177892230279391,0.1882643232830458,0.198927538123518,0.2074283778023107,0.2160488395116049,0.2251506691482761,0.2339283721968091,0.241766643804041,0.249194573010255,0.2554828075637562,0.2619223830889495,0.2673164346901331,0.2734753718461065,0.2778974579922447,0.2812666828439699,0.2847297430343605,0.2872329793878825,0.2908640406607369,0.2945396726906073,0.2979309435951502,0.2948210922787194,0.2914563186926558,0.2883164414414414,0.2859352861232397,0.2828894629019328,0.278942459134211,0.2752492140476152,0.2749103766635564,0.2750954068420335,0.2749991094011613,0.2757615943517809,0.2761073455233291,0.2766445584616026,0.2768891953818432,0.2776661884265901,0.2781551384423934,0.2789887894915638,0.2828134747348721,0.2864485656734041,0.2903352130325815,0.2937702848900108,0.2967240655186896,0.2989568367793116,0.3026096191776665,0.3061129258049463,0.3084559682317215,0.3145063597819503,0.3170974155069582,0.3195821055451379,0.332319391634981,0.0,2.019530029341313,52.95803900286931,133.24410763041848,192.8550215596589,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95814,47762,454.8291481411903,4844,49.56478176466905,3856,39.81672824430668,1483,15.154361575552636,77.41775944651599,79.74502690908311,63.37436231324406,65.09469138080289,77.22933945388367,79.55903152895218,63.303056770835184,65.02639585890573,0.1884199926323191,185.99538013093309,0.0713055424088793,68.29552189715571,253.71786,177.66062473334037,264802.4923288872,185422.40667683256,500.07708,333.4142809210276,521500.8558248272,347556.75675895746,472.62123,230.7694811326492,490720.5523201203,238887.26667209849,2181.61524,1038.9878264683791,2251697.91470975,1059150.4649303642,879.39635,400.7347101028508,903206.7860646668,403632.98693599104,1437.51338,611.6741000437898,1469112.0713048198,612029.6773213063,0.3794,100000,0,1153263,12036.47692404033,0,0.0,0,0.0,43111,449.4854614148246,0,0.0,42792,444.0687164714969,1050711,0,37713,0,0,10175,0,0,85,0.8871354916818002,0,0.0,0,0.0,0,0.0,0.04844,0.1276752767527675,0.3061519405450041,0.01483,0.3774219058916568,0.6225780941083432,22.90495584691494,3.89811167435193,0.3065352697095436,0.2927904564315353,0.2009854771784232,0.1996887966804979,11.437164915770795,6.426399003203756,15.849370562501276,11363.76618610488,44.38329594531356,13.9561250994668,13.366623058922771,8.734150092412435,8.32639769451156,0.5863589211618258,0.8051372896368467,0.7055837563451777,0.5561290322580645,0.1129870129870129,0.773978315262719,0.8917835671342685,0.9054878048780488,0.7592592592592593,0.141025641025641,0.5016936394429808,0.7365079365079366,0.6288056206088993,0.4776386404293381,0.1058631921824104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021263884810498,0.0046425349457188,0.006879686659699,0.0089577705104507,0.0111547221996258,0.0132130787084164,0.0156864743655081,0.0180860618927084,0.0201455467200883,0.0224139519174675,0.0245799977449543,0.0263916975476559,0.028525318147242,0.0306072024213972,0.0328411457796292,0.0349724744110143,0.0371520231812066,0.0390325322938481,0.0408468554569819,0.0428201097310859,0.057258518874027,0.0704586081811434,0.083961384052578,0.096682703418139,0.1091650166406875,0.1245576039300618,0.1358007690433566,0.1459841598894381,0.1560416110962923,0.1650527037449652,0.1765370097538418,0.1878152849041318,0.1980718287228036,0.2077951853267099,0.2167236057253962,0.225817156130745,0.234557856490047,0.2428808839381961,0.2499348773996262,0.2566691441312675,0.2620411651920811,0.2668114064269122,0.2720564796996564,0.2766015980096646,0.2807672721099983,0.2841043307086614,0.287904514582501,0.2914027493938894,0.2933236893429601,0.2952883300010523,0.2933125805066552,0.2901202371801911,0.2877589718379099,0.2846814149095518,0.2827246067715276,0.2790910756826095,0.2766514267696673,0.27734375,0.2780145697838306,0.278186948728415,0.2790580695642454,0.2808819206271435,0.2819457436856875,0.2836511839103373,0.2833981996609441,0.2848016139878951,0.2850526672502894,0.2890556870561854,0.2934661852520483,0.2975868157739847,0.3017016296029531,0.3067423406379736,0.3098661686896981,0.3152165753321823,0.3154468520412908,0.3200282585658778,0.323317491951556,0.3353389490573606,0.3351264120494889,0.331306990881459,0.0,1.5650502424747583,52.67746580328085,143.20297254281076,190.2005493472041,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95727,47962,457.61383935566766,4714,48.10555015826256,3750,38.63068935619,1376,14.0294796661339,77.3893283971574,79.75047740648439,63.35181630130408,65.09358931604046,77.20939568297423,79.57313382694319,63.28386062251206,65.02886894466253,0.1799327141831668,177.34357954120128,0.0679556787920176,64.72037137793052,253.98186,177.81159914747946,265318.70841037534,185748.4086490534,499.54599,334.01346724939833,521274.54114304215,348353.08455231885,480.06309,234.92554385604768,498317.7055585153,242940.1392858989,2149.47492,1032.9528110893575,2215940.6645982848,1049579.9629042563,877.56735,409.4686594160609,901854.9521033772,412919.0946043984,1333.9078,576.7425408770839,1361224.9208687204,575141.5883306942,0.37923,100000,0,1154463,12059.941291380695,0,0.0,0,0.0,43045,449.07915217232335,0,0.0,43353,449.7163809583503,1045117,0,37518,0,0,9900,0,0,84,0.8670490039382828,0,0.0,2,0.0208927470828501,0,0.0,0.04714,0.1243045117738575,0.291896478574459,0.01376,0.3790503362543305,0.6209496637456694,22.64328682373001,3.986692033204132,0.3157333333333333,0.2869333333333333,0.2008,0.1965333333333333,11.79639281170556,6.652461204372677,14.84609128150303,11378.038623528557,43.52375222041752,13.459288882889316,13.57390685749644,8.413403157523799,8.077153322507945,0.6026666666666667,0.8197026022304833,0.7170608108108109,0.5856573705179283,0.1194029850746268,0.7748953974895397,0.9287169042769856,0.8774928774928775,0.7,0.1779141104294478,0.5221135029354207,0.7282051282051282,0.6494597839135654,0.5470692717584369,0.102787456445993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020863506081813,0.0045202549991385,0.0066238600975827,0.008661393336921,0.0109389614086454,0.0132015552796042,0.0153676830262514,0.0173159731434052,0.0195469361480376,0.0218768226422044,0.0239266318270314,0.0258854188041203,0.0278771064529387,0.0298507462686567,0.032052472000495,0.034081162355713,0.0361823715758742,0.0381806866507623,0.0404618870434656,0.0425828897615649,0.0574826664439061,0.0711213887348407,0.0844922702577979,0.0972401829364453,0.1094293483989291,0.1249814944060233,0.1363414582405227,0.1467382047351388,0.1561905779297083,0.1654211118854875,0.1778691878620808,0.1892678283631329,0.1989477002685103,0.2087620130544591,0.2172975589364487,0.2264370362166352,0.2348956589666332,0.2430870264374149,0.2508309982188844,0.2570201557489693,0.2625177751829543,0.2672384580329286,0.2724791132434444,0.2777538468901812,0.2817166215839206,0.2858478381204256,0.2893171365726855,0.2923539944378833,0.295913750533242,0.2989203423304806,0.2958409941889334,0.2920776459290761,0.2893913677743334,0.2858624863120281,0.2832361386578254,0.2795897217057335,0.2761675478348439,0.277363812753746,0.2774846011572464,0.2784904455208389,0.2802605863192182,0.2807420494699646,0.2815590580690832,0.281231261243254,0.281595604920578,0.2814193548387096,0.2812799819402901,0.2860339362297222,0.2879670063076177,0.2917791603083304,0.2953635832171606,0.3017390847475437,0.307170422009212,0.3117466496967882,0.315799239261527,0.3191563738056397,0.3219628964691801,0.3204594969300852,0.3224118942731278,0.3190348525469169,0.0,2.028075651072853,52.08702440072826,142.06148422449533,179.93693928073492,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95677,48300,460.8526605140211,4757,48.642829520156354,3815,39.340698391462944,1407,14.41307733311036,77.35982293729873,79.73481774988213,63.33991942654043,65.08960811876206,77.18312500985625,79.5597150798681,63.2739476285755,65.02610677111996,0.1766979274424756,175.10267001402724,0.0659717979649343,63.501347642102246,252.73248,176.988657197184,264151.07079026307,184984.91465993295,500.13404,333.46713633444364,522206.6118293843,348009.71531971486,479.8797,234.5045350238128,497625.6048998192,242163.08864939143,2174.3802,1027.9284294287409,2243924.9976483374,1045695.762438978,883.76955,397.7483595088215,911528.7895732516,403625.4348545773,1360.73458,575.4271673194677,1394477.8368886984,577900.7600464091,0.38193,100000,0,1148784,12006.866854102866,0,0.0,0,0.0,43076,449.6587476614024,0,0.0,43264,448.3209130721072,1051069,0,37713,0,0,10132,0,0,91,0.9406649455982106,0,0.0,1,0.010451832728869,0,0.0,0.04757,0.1245516194066975,0.2957746478873239,0.01407,0.3593309149536477,0.6406690850463522,23.18399715415017,3.966652382811757,0.30956749672346,0.291218872870249,0.2028833551769331,0.1963302752293578,11.55604083657783,6.468339568366199,14.998563630269176,11473.804021244652,43.99222492110552,13.762384426068838,13.447382453637712,8.687990969998193,8.094467071400775,0.5984272608125819,0.7974797479747975,0.7146486028789162,0.6098191214470284,0.1081441922563418,0.7832047986289632,0.9175050301810864,0.8826979472140762,0.7582417582417582,0.1292517006802721,0.5169939577039275,0.7003257328990228,0.6464285714285715,0.5641891891891891,0.1029900332225913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020051039008384,0.0040846940533746,0.0064830315020544,0.0087749588673803,0.0111334797462176,0.0131202605730571,0.0152436849774299,0.0174468432436844,0.0195918200576109,0.0220867305705312,0.0241975966315962,0.0262223772493177,0.0285323712908431,0.0307042833607907,0.0327189082694668,0.0346548979887136,0.0366164230402915,0.0388524726186525,0.0408366948060049,0.043093565666882,0.0577616197072742,0.0720156637733359,0.0855880439117566,0.0982651053667055,0.1106447156100699,0.1267920056709375,0.137961410286345,0.1489717456361758,0.1592274311122512,0.1680993314231136,0.1807182183530324,0.1913016175483423,0.2019105231090608,0.2107998686946055,0.2193255755066991,0.2285594046247895,0.2369789342140498,0.2456000359639461,0.2526159462186398,0.2583092113543013,0.263673139158576,0.2694429509806213,0.2750928049559029,0.2798411027089116,0.2839464274892431,0.2881647709806332,0.2922642899050044,0.2938996217410068,0.297086475875607,0.3002369980250164,0.2973332080688239,0.2939134491369611,0.2913416810714336,0.2896317313093198,0.2864076951535331,0.2826992629217598,0.2779663157230123,0.2771654574933263,0.2779663329524329,0.2792027359196323,0.279359031824294,0.2797881556150575,0.2797103566286179,0.2809989093903715,0.2811513818494788,0.280816601117781,0.2817581300813008,0.2864576841580456,0.2918924551896623,0.2974268316637203,0.3033186040220038,0.3072012661566869,0.3124607461374199,0.3165593027661993,0.3196078431372549,0.3209686946249261,0.3208491281273692,0.3254189944134078,0.3301486199575371,0.3308298911002628,0.0,2.0243979940813213,50.93275040669274,144.13610015144735,188.8810295261017,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95847,48220,459.94136488361664,4849,49.22428453681388,3883,39.86561916387576,1451,14.65877909585068,77.34109898624328,79.6309709029993,63.34986309044478,65.04357334628094,77.15137106035252,79.44895200662926,63.27594748203133,64.97559889006565,0.1897279258907644,182.01889637003887,0.0739156084134435,67.97445621528198,252.7569,177.00409460261287,263708.7232777239,184673.5887431144,498.56143,333.1697820161567,519542.781725041,346984.800793094,477.01677,233.3688973292075,493924.9741775955,240500.84169412483,2202.35564,1049.6911019442614,2263071.102903586,1060462.2178516411,881.77636,404.8793703134327,901580.3833192484,404019.69838746457,1408.04202,607.7552349917972,1425239.9553454986,597110.9587765806,0.38044,100000,0,1148895,11986.760148987449,0,0.0,0,0.0,42853,446.451114797542,0,0.0,43086,445.7312174611621,1052308,0,37731,0,0,10023,0,0,92,0.9598631151731406,0,0.0,2,0.0208665894602856,0,0.0,0.04849,0.1274576805803806,0.2992369560734172,0.01451,0.3720332278481013,0.6279667721518988,22.92089673420948,3.951720200813376,0.3221735771310842,0.291784702549575,0.1846510430079835,0.2013906773113572,11.30573157062477,6.264118889677229,15.479340328772876,11461.2079586255,44.69166453401839,14.00776037472167,14.275320431160903,7.931267760765761,8.477315967370057,0.5853721349472057,0.8049426301853486,0.7018385291766587,0.5453277545327755,0.1176470588235294,0.7558333333333334,0.9153225806451613,0.844632768361582,0.6961325966850829,0.165680473372781,0.5091315691390235,0.7189952904238619,0.6454849498327759,0.4944029850746269,0.1044045676998368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0047623390177422,0.0067451744109383,0.0090563892216784,0.0112007805988656,0.0132703736872099,0.0155872734496775,0.0177709767916347,0.0198455661552918,0.0219012449236371,0.023989265264732,0.0258556146990349,0.0279264196871501,0.0300118318843561,0.0320659453889747,0.0341517788029848,0.0363454002130057,0.0384388242485779,0.0402300640566439,0.0422306611871195,0.0569888212229915,0.0710806856187291,0.0842228763578843,0.0975696851303379,0.1103494029190623,0.1258991665874449,0.1375295326686937,0.1476358068666333,0.157470651013874,0.1673437449755072,0.1791703442188879,0.1910293433704316,0.2013916825224245,0.2098893650516005,0.2183927019026553,0.2281430755933781,0.2369070071086609,0.2453112518704364,0.2528029959146618,0.2584978698062211,0.2645966613065559,0.2704491504613118,0.2746791269888212,0.2790934464129562,0.2826158236687109,0.2865401207937877,0.2909009020279992,0.2944714289347201,0.2967786154900617,0.2995871311551094,0.2965922697125022,0.2935929855423011,0.2900178780072356,0.2882205875977282,0.2859944435365256,0.2827480682426746,0.2793959519291588,0.2787748539930441,0.2789254078456855,0.2800443577957037,0.281583638239985,0.2830904885233585,0.2843096146588955,0.2835446440571659,0.2849913244650087,0.2856770017747155,0.2868733452899479,0.2910056234488392,0.2947008308315297,0.2984609313338595,0.3041372442513126,0.309209832260787,0.3137708815616593,0.318109880171829,0.3231547396028475,0.328023598820059,0.3255212296454116,0.329395274329195,0.3371366476500951,0.3354863221884498,0.0,2.553877092104957,51.62623244870978,144.8744643514023,192.2121940832529,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95649,48092,459.4820646321446,4816,49.24254304801932,3816,39.362669761314805,1401,14.281382973162293,77.31769350596971,79.73870060809047,63.289715480586615,65.08077530802096,77.13709260950729,79.56259404575047,63.22059487393268,65.015632134398,0.1806008964624226,176.10656233999578,0.0691206066539393,65.14317362295685,251.11944,175.89116955991787,262541.9816202992,183891.655074196,500.8564,333.7586324339126,523106.02306349255,348407.6691088382,471.79226,229.75876430857755,490358.257796736,237942.7302002778,2174.11504,1014.3619230351512,2243177.8272642684,1030717.856992912,833.68718,375.8269901971834,858940.0202824912,380281.93102826347,1352.47208,583.6074404607599,1379998.9545107633,580565.5700471638,0.38125,100000,0,1141452,11933.726437286328,0,0.0,0,0.0,43126,450.2922142416544,0,0.0,42588,442.3255862580895,1056466,0,37870,0,0,10044,0,0,94,0.9827598824870096,0,0.0,1,0.010454892366883,0,0.0,0.04816,0.1263213114754098,0.2909053156146179,0.01401,0.3673874231303313,0.6326125768696688,23.268649018836545,3.987370659187008,0.3168238993710692,0.2861635220125786,0.205188679245283,0.1918238993710692,11.106298229491028,6.048800448863064,14.994806781156402,11489.374145742371,43.29069306108512,13.255862602594949,13.4829289268098,8.581613353016559,7.9702881786638065,0.5765199161425576,0.8003663003663004,0.6691480562448304,0.5683269476372924,0.0983606557377049,0.7341659232827832,0.899343544857768,0.8161290322580645,0.7,0.1233766233766233,0.5109461966604824,0.7291338582677165,0.6184649610678532,0.5231560891938251,0.0916955017301038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022489666909798,0.0043301018131667,0.0065279187817258,0.0086281364648014,0.0108559626400236,0.0130195599022004,0.0152000489666006,0.0175522839424187,0.0193832959790406,0.0214231534061788,0.0235590001539803,0.0253866085382906,0.0274325256665053,0.0296878545934682,0.0316984719022182,0.0338065771228709,0.0358427770116849,0.038006107567983,0.0400349668543359,0.0423719091866637,0.0563811554217874,0.0710109392682006,0.0845946201434768,0.0978250566117225,0.1099002059242832,0.1257413369482335,0.1382710801763987,0.1486665103289487,0.1591976464295266,0.1683513980943378,0.1801568551301552,0.1916491471423307,0.2019085175219773,0.2108929216817987,0.2196874517842579,0.2292990804521202,0.2374423100562092,0.2451744408657852,0.2527416388529391,0.2593089067619898,0.2652404436109374,0.2708947540830174,0.2756763156336944,0.2790148326678418,0.2835225753118238,0.2876047313947757,0.2915118998486724,0.2952340998944866,0.299210560372719,0.3012730031000594,0.2981615568894512,0.2950326348333906,0.2924952884588337,0.2891265802712949,0.2863765625925706,0.2835928070523887,0.2797365178656051,0.2803492307440773,0.2811559711007225,0.281155823435561,0.2821303798409276,0.2833897906835582,0.2850611332933364,0.2844166464074966,0.2871265952137646,0.2873746875241605,0.2882920924471469,0.2920540473534151,0.2989194430975964,0.3037855631319069,0.3073798239675017,0.3086471702082895,0.3129132875857767,0.3166879747311423,0.3181396212402525,0.3223208031753444,0.3226731030321315,0.3254203758654797,0.3382909680908599,0.3369687852576156,0.0,2.066398707946894,48.73027710338039,135.41798712123483,200.76827549989005,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95716,48079,458.4186551882653,4887,49.85582347778846,3922,40.4530068118183,1490,15.263905721091565,77.34880342590687,79.70769148034917,63.338894218876014,65.07769102946918,77.15631350126031,79.51468385344626,63.26582750188423,65.0062103422985,0.1924899246465514,193.0076269029115,0.0730667169917822,71.48068717067702,251.33394,176.06417482276905,262582.9955284383,183944.35081153523,500.18519,333.73257009149773,522066.3316477913,348164.17726364353,477.98465,234.13022928251897,495778.1666597016,241909.66278395933,2232.45724,1063.207902699878,2306665.3850975805,1085109.6969774317,899.19138,407.35122683378,931015.817627147,417183.9216625365,1444.80754,620.8142006252928,1482377.0320531572,625875.7836146865,0.38138,100000,0,1142427,11935.590705838104,0,0.0,0,0.0,42983,448.52480254085,0,0.0,43181,447.5009402816666,1056698,0,37898,0,0,9995,0,0,86,0.8984913703038155,0,0.0,1,0.0104475740733001,0,0.0,0.04887,0.1281399129477161,0.304890525885001,0.0149,0.3572826938136257,0.6427173061863743,23.07079839368667,4.0334068182160125,0.3092809790922998,0.2840387557368689,0.2049974502804691,0.201682814890362,11.385821882428791,6.215305446529508,16.091735211246128,11482.192389177131,45.045252561398975,13.71736562603181,13.736009026009777,8.969055112843018,8.622822796514372,0.5731769505354412,0.7989228007181328,0.6900247320692497,0.5398009950248757,0.1099873577749683,0.7538586515028433,0.905857740585774,0.8415300546448088,0.7488584474885844,0.1369047619047619,0.4905239687848383,0.7185534591194969,0.6245572609208973,0.4615384615384615,0.102728731942215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004439849166768,0.0071432195220942,0.0095389022643464,0.0116621929396453,0.0138443528274036,0.0160233214755318,0.0181994488108604,0.0203362117418629,0.0224860549613632,0.0244142426665026,0.0265923599564833,0.0286022721431141,0.0306589933390299,0.0325552128570397,0.0346455879313907,0.0366635259523094,0.0389080835434369,0.041100448122771,0.0430324879654906,0.0586478414336139,0.0722000125583439,0.0858266890474192,0.0994666358079889,0.1116302616729773,0.1267625001322205,0.1384762308998302,0.1494730118173107,0.1588179992308021,0.1683132207026012,0.1801171984402266,0.1908558816847161,0.201642196846112,0.2109925200122479,0.2190425894753055,0.2288728102735703,0.2369649718523813,0.24431261749046,0.2513934137786203,0.2582156397832835,0.2643079522701758,0.269827717283243,0.274724884629038,0.2788430444936822,0.2831464219827168,0.2878599480468317,0.2909177211236993,0.2939764544519374,0.2967896130740908,0.2988873526894463,0.2960911132326641,0.2933893950011679,0.2905481456469131,0.2874052688560086,0.2848386809533703,0.2816546157726585,0.2785054111699186,0.2789712210205984,0.2790511545535045,0.2795415717539863,0.2802588151932723,0.2808734791752658,0.2838268697772313,0.2842320879903816,0.2855843347536745,0.2855476647141154,0.2871177489423323,0.291461849149942,0.294376221043818,0.2973602178116245,0.3001995283874478,0.3041193332625544,0.310558221773175,0.3143728555089592,0.3152704733283246,0.3204884989328906,0.3225311012133313,0.327150428047289,0.3268965517241379,0.3271818531334102,0.0,1.9843538163218823,53.779782796858576,140.61756632299551,196.38388302062768,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95635,48458,462.11115177497777,4772,48.62236628849271,3812,39.25341140795734,1398,14.231191509384638,77.26744378178137,79.6817674044303,63.28338998351626,65.06896002993015,77.08560908665287,79.50415778953622,63.21346334009226,65.00321814817141,0.1818346951285008,177.6096148940809,0.0699266434239973,65.74188175873985,250.98128,175.8642679444811,262436.6393056935,183891.1151194449,500.27087,334.66520304369857,522490.625816908,349326.3376835871,487.80854,238.5814648007197,506106.4463846918,246545.57665463584,2181.84284,1049.5198410972134,2247456.684268312,1063451.8754610906,867.50129,406.6566517374175,890176.7658284102,408301.0424119917,1365.17504,595.7655594406992,1390227.7199769958,590364.841864248,0.38154,100000,0,1140824,11928.938150258797,0,0.0,0,0.0,42933,448.29821717990274,0,0.0,44096,457.1757201861243,1052689,0,37783,0,0,10191,0,0,82,0.8469702514769697,0,0.0,1,0.0104564228577403,0,0.0,0.04772,0.1250720763222729,0.2929589270746018,0.01398,0.3669558200524511,0.6330441799475489,22.75850465616804,3.947994649759424,0.305613850996852,0.2901364113326338,0.2012067156348373,0.2030430220356768,11.238476396524812,6.159399261141783,15.150382798695276,11506.901956748205,44.05244178479953,13.684203279769958,13.21155846992998,8.618478564117467,8.538201470982129,0.5941762854144806,0.8028933092224232,0.721030042918455,0.590612777053455,0.1085271317829457,0.7636655948553055,0.9203187250996016,0.895774647887324,0.7616580310880829,0.1185567010309278,0.5120716510903427,0.7052980132450332,0.6444444444444445,0.5331010452961672,0.1051724137931034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0046846481443926,0.0070865821962313,0.0090846272660759,0.0111089634686009,0.0131686153094064,0.015620857719681,0.017774556146566,0.0204705569586601,0.0224472867661365,0.0245525870468181,0.0266363972552081,0.0288145008641264,0.0307776323788523,0.0327411979645131,0.0350260524356959,0.037275250642141,0.039421240554679,0.0415968877747381,0.0436328377504848,0.0583814968489041,0.0734320666973899,0.0869747855035023,0.0997820295471058,0.1125175511755328,0.1282852241682373,0.1391139953055133,0.1498310936817314,0.1593342532276524,0.1690957715316786,0.180724970610757,0.1918514586560648,0.2023878192919256,0.21136316382697,0.2195285750459644,0.2279399545781864,0.2369425472077139,0.2446387182429847,0.2516944245768195,0.2586175284195086,0.2652435141987243,0.2703688975180706,0.2761857415101263,0.2806691449814126,0.284337320108907,0.2888650408910928,0.2920541156151834,0.2950646642165901,0.2984981874676333,0.2997557594560697,0.296902159998922,0.2936782004540139,0.2912600853292781,0.2882687696796371,0.285975392296719,0.2820814908885046,0.2788423501115559,0.2786393933934917,0.2789703226685747,0.2785632879834746,0.2781184564762189,0.2783747481531229,0.2799723959095757,0.2803047177796587,0.2799348097018502,0.2817853336452728,0.2838722475699266,0.288585359754954,0.293930716580528,0.2972919471058674,0.302486881131645,0.3083444414822714,0.3112235219728106,0.3159340659340659,0.3252322417190579,0.3296049500237982,0.3289857296301979,0.3312983312983313,0.3305227655986509,0.325296442687747,0.0,2.3447346805524063,53.92852143148608,132.56934227701237,191.14313005759595,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95843,48362,460.2840061350333,4979,50.94790438529679,3979,40.98369207975543,1479,15.0454388948593,77.40182060844235,79.7151513580216,63.36325590393732,65.07553843192962,77.22088397167629,79.53815997105968,63.295280250648375,65.01148878793624,0.1809366367660629,176.99138696191596,0.067975653288947,64.04964399337132,251.70178,176.4120085211256,262618.6158613566,184063.30678414236,502.62041,334.6159553888129,523855.9101864508,348565.82290893985,486.30199,237.7636742205244,504268.8980937575,245618.8965985971,2278.67028,1074.8229025560486,2347275.7739219344,1091609.2865363008,927.97336,417.8458395520333,954285.6129294784,422383.75373275473,1441.69364,604.6817456794317,1468606.095385161,600747.7666032385,0.38218,100000,0,1144099,11937.209811879844,0,0.0,0,0.0,43237,450.5389021629122,0,0.0,43973,455.6722974030445,1055341,0,37916,0,0,9941,0,0,81,0.8451321431925127,0,0.0,0,0.0,0,0.0,0.04979,0.1302789261604479,0.2970475999196625,0.01479,0.3537033455811255,0.6462966544188745,23.11153692566471,3.956186194575043,0.2912792158833878,0.2892686604674541,0.2113596381000251,0.2080924855491329,11.499397684409288,6.482465835218795,15.635173083685784,11486.678705495518,45.52257301545336,14.26703450074372,13.149987167221992,9.25891467773824,8.846636669749389,0.5865795425986429,0.8166811468288445,0.7152717860224331,0.5671819262782402,0.1062801932367149,0.7846655791190864,0.9267822736030829,0.8895348837209303,0.7475728155339806,0.1337579617834395,0.4983654195423174,0.7262658227848101,0.6417177914110429,0.5086614173228347,0.0998509687034277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025111889669697,0.0045302982699733,0.0066144544089599,0.0089277552637191,0.0111832941918036,0.0134573883301437,0.0157162513377159,0.0177076954480506,0.0198910388110351,0.0222206300792204,0.0245095024294237,0.0267687601999445,0.0287194457578685,0.0310225178382051,0.0330558907556958,0.0350895320362467,0.0374809800329161,0.0396196677795981,0.041617764668003,0.0436262215237956,0.0578094364023194,0.0715024931790384,0.0848945890439666,0.0974444082644454,0.1094880517319459,0.1257419259447014,0.1369992161183025,0.1475474305149599,0.1570180025397774,0.1666506003448903,0.1785956270635936,0.1896853524657475,0.1998500879918308,0.2094941549218835,0.2175504550850811,0.2267348542711343,0.2357185071198385,0.2436321125873968,0.2515647677793904,0.2583198910892221,0.2636872283362619,0.2693853704136481,0.2750591016548463,0.2798831375648071,0.2840223761967746,0.2884695861950127,0.2908716026241799,0.2944344247720171,0.297868490105089,0.3002265065318162,0.2982107355864811,0.295933776289056,0.2931569560882447,0.2900467794170565,0.2871301775147929,0.2841163993713091,0.2808948023899232,0.2815440407736539,0.2819697768107566,0.2828675361547333,0.2830631200789233,0.2838081783219527,0.2853431433678347,0.2857871736285188,0.2875505831944775,0.2892054398596165,0.2894981543576883,0.2928296737377496,0.2979666770584364,0.3024751892676421,0.3056006493506493,0.3101522575206786,0.3118453865336658,0.3151045584474199,0.3192215458402508,0.3226483273108754,0.3228144345462781,0.327720986169573,0.3270065075921909,0.3313115996967399,0.0,1.9394095263838036,53.56474260352766,141.58307575548773,203.02344943395968,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95701,48100,459.11745958767415,4879,49.78004409567298,3881,39.99958203153573,1416,14.41991201763827,77.32145341825886,79.70825083111312,63.3143933609397,65.07994396283938,77.14343643278082,79.53350356043158,63.24663658025214,65.01566993137018,0.1780169854780382,174.74727068153584,0.06775678068756,64.2740314691963,252.31888,176.60491672220093,263653.33695572667,184538.21456641093,502.37812,335.2671079536597,524395.4295148432,349777.59684189275,473.61225,231.16394664907415,491587.5487194491,239015.96702874947,2198.51716,1043.68625110276,2267352.7758330638,1060645.5220977422,855.57916,389.7853633653821,883960.33479274,397242.5401671676,1376.92454,587.8736898569828,1404547.6640787453,586517.5553809355,0.38125,100000,0,1146904,11984.242588896668,0,0.0,0,0.0,43249,451.3432461520779,0,0.0,42831,444.2691298941495,1053597,0,37792,0,0,9938,0,0,91,0.9404290446285828,0,0.0,1,0.0104492116069842,0,0.0,0.04879,0.1279737704918032,0.290223406435745,0.01416,0.3524315810198858,0.6475684189801142,23.30467286471053,3.9461089646107377,0.3084256634887915,0.290389074980675,0.2043287812419479,0.1968564802885854,11.598352924901985,6.5202694394180005,15.091797323396992,11478.052261388984,44.69182967964649,13.836662725088312,13.627378480426142,8.811709071829135,8.41607940230289,0.5926307652666838,0.8047914818101154,0.7126148705096074,0.5851197982345523,0.0994764397905759,0.7610544217687075,0.9244060475161988,0.8717948717948718,0.7333333333333333,0.1077844311377245,0.5194085027726433,0.7213855421686747,0.6465721040189125,0.5367892976588629,0.0971524288107202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0044113173106175,0.0068113529316225,0.0090954360219916,0.0112933420153019,0.0135278298427186,0.015633764035204,0.0179089238309168,0.0200676760138623,0.0222019776035375,0.0244007463757714,0.0265357678325699,0.0286390289064911,0.03056345575203,0.0326083590532324,0.0345333857193076,0.0365540386567504,0.0384308027606247,0.040527470698961,0.0425325690463783,0.0571118213532201,0.0700617607034439,0.0837295215305983,0.0966692975532754,0.1085789046096709,0.1242657409269392,0.1357166360616064,0.1470124613909894,0.1574065168371218,0.1674960852871146,0.1786529926315335,0.1902230978231454,0.2008265811082712,0.2100415663968497,0.2189431770684383,0.2285916724788823,0.2373331251463814,0.2456225134302861,0.2524574551308942,0.258096273825196,0.2636933250098263,0.2700978157977772,0.2761072205924103,0.2806477500029944,0.2858183495817499,0.2883301952966368,0.2915765658787795,0.2942536327608983,0.297815725228309,0.3008374150734713,0.2981713625431631,0.2961362794716701,0.2935527350331349,0.2910366081972407,0.2887114219252367,0.2844244137193492,0.278876663456833,0.2789917890673558,0.2792683964270523,0.2816095019647588,0.2821637154105946,0.2821945843828715,0.2827179284031441,0.2837762580472701,0.2849884969325153,0.2857254310456921,0.2863402281844823,0.2910543631521228,0.2955069526937321,0.30004337026377,0.3046444384205295,0.3066194727666543,0.3088013094938303,0.3130428157854639,0.315957247327958,0.3185483870967742,0.322427763338939,0.3303751512706737,0.327431217651866,0.3192702394526795,0.0,2.18631368758803,51.12574486855309,147.63961863791877,192.30997215435167,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95711,48306,461.34718057485554,4768,48.667342311751,3792,39.09686451922977,1416,14.470646007250997,77.3455376358958,79.73195492240067,63.32130932583449,65.08714225176945,77.15693046004158,79.54631583216336,63.24838828452201,65.01790341645724,0.1886071758542158,185.6390902373164,0.0729210413124832,69.23883531220554,251.77152,176.28515317411797,263053.2122744512,184184.2486593736,500.95961,334.887071705976,522849.8918619595,349337.1564697234,480.19618,234.25102986857425,498664.3019088715,242522.44494929136,2142.09876,1024.829868020338,2208278.8812153256,1041096.356401549,856.35184,395.4134946027749,880409.3991286268,399054.6584417266,1370.18914,596.916447350583,1399692.407351297,594434.6081102131,0.38128,100000,0,1144416,11956.964194293238,0,0.0,0,0.0,43121,449.93783368682807,0,0.0,43363,450.000522405993,1054430,0,37799,0,0,10046,0,0,81,0.8462977087273146,0,0.0,1,0.010448119860831,0,0.0,0.04768,0.1250524548887956,0.296979865771812,0.01416,0.3739951768488746,0.6260048231511254,23.07062007636975,3.9783867176187817,0.3024789029535865,0.2940400843881856,0.2151898734177215,0.1882911392405063,11.16199622569361,6.070257693158305,15.20745763322656,11444.141056773617,43.69922101075964,13.67410478993655,13.017447021249438,9.112684218358812,7.894984981214842,0.5938818565400844,0.7865470852017937,0.7035745422842197,0.5882352941176471,0.1232492997198879,0.7366638441998307,0.907563025210084,0.8354037267080745,0.7073170731707317,0.1348314606741573,0.5292991191114516,0.6964006259780907,0.6521212121212121,0.5482815057283142,0.1194029850746268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188674657291,0.0042902784116841,0.006365805370831,0.0087196894245818,0.0109160087897778,0.0129965369729069,0.0151842711753788,0.0172788823871817,0.0192858311518324,0.0215151763404743,0.0234757191938874,0.0255543800905906,0.0277317753067879,0.0297072552474574,0.0318466079131493,0.0340852700355636,0.0362447947958316,0.0386495490539993,0.040661397670549,0.0425427720007502,0.0572114882506527,0.071859170259974,0.0848350633402953,0.0973590067340067,0.1101031623805404,0.1255064154775379,0.1375951099933144,0.148331984150654,0.1583848275567149,0.1674020160381308,0.1792798620094868,0.1905747026839676,0.2007576582264701,0.2095840492005997,0.2185442856828339,0.2278464180841043,0.2367102311409725,0.2441579190153126,0.251318819698912,0.2573175059238315,0.2635012434214331,0.270067788686302,0.2752884706327437,0.279588295134941,0.283354757342776,0.2866365793971888,0.2900244767470902,0.294042272462003,0.2969862730931984,0.2999382545750732,0.2970965925846492,0.2935926742132855,0.2908568223250596,0.2883298814865953,0.2862590342748193,0.2818782746435969,0.2790723339849909,0.2797838368951117,0.280752532561505,0.2806673908011182,0.2814468641929152,0.2823877651702022,0.2819944366594859,0.2824373079150149,0.2840378397796671,0.2850318057899519,0.2852486892447216,0.2899900024993752,0.2941279029221005,0.2983797847597272,0.3011684034826544,0.3010402437742986,0.306472673008767,0.3101189579882548,0.3157010915197313,0.3151916706105064,0.3169989347131334,0.3194752774974773,0.3211580086580086,0.3246454580298965,0.0,1.900033997824406,51.67182821865906,139.39720827433663,188.6680797085084,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95614,48102,458.959984939444,4885,49.888091702052,3933,40.59029012487711,1530,15.60440939611354,77.23812690061078,79.66959478422652,63.25655152000609,65.05436904698007,77.04165567601181,79.47748009155487,63.181597716256086,64.98426460756926,0.1964712245989659,192.1146926716517,0.0749538037500059,70.10443941081235,251.8362,176.43467393069335,263388.41592235444,184528.0753139638,499.62428,333.444433618413,521982.8790762859,348180.0401807401,477.92934,233.43530643681396,497127.4604137469,242058.5717428397,2259.76956,1069.8061677775495,2332355.9311397914,1087806.6054945409,912.44175,410.2155041366226,942470.7365030224,417206.39669569576,1490.55938,632.4882819499813,1521544.0416675382,628561.6543448927,0.38003,100000,0,1144710,11972.200723743385,0,0.0,0,0.0,42955,448.6686050160018,0,0.0,43117,448.17704520258536,1049629,0,37638,0,0,10003,0,0,100,1.0458719434392452,0,0.0,0,0.0,0,0.0,0.04885,0.1285424834881456,0.3132036847492323,0.0153,0.3608592826172644,0.6391407173827355,23.095628436865294,4.03978199033935,0.3010424612255276,0.2862954487668446,0.2011187388761759,0.2115433511314518,11.109469954576127,5.977384066738102,16.213428377548425,11450.520280272514,45.07008737169346,13.807767591629094,13.469702470661836,8.783917204303934,9.008700105098594,0.5809814391050089,0.8063943161634103,0.7027027027027027,0.5638432364096081,0.1189903846153846,0.7697536108751062,0.940552016985138,0.8481375358166189,0.7554347826086957,0.1618497109826589,0.5003628447024674,0.7099236641221374,0.6419161676646706,0.5057660626029654,0.1077389984825493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097859575158,0.0044425060602679,0.0067419381041345,0.0090157852474512,0.0112766650382673,0.0134376560000815,0.0158702636544443,0.0182037347280676,0.0204058670703516,0.0228713652146303,0.025075925469917,0.0271158924406358,0.0289413556740289,0.0308247422680412,0.0326954653888653,0.0347157550547381,0.036813568459138,0.0390189173185402,0.0410368519675203,0.0430663940241205,0.0572202241552358,0.0712227124576866,0.0846650906225374,0.0972835188910774,0.1095913560557251,0.1248755270238776,0.1364167622933401,0.1470635267528757,0.1570679507758159,0.1664804469273743,0.1794254758924332,0.1897796764540052,0.1995466582391595,0.2086104688749849,0.2180515759312321,0.2270452603663881,0.236463890659777,0.2446556622919767,0.252166101926182,0.2592039858108806,0.2636560836126996,0.2695057907816383,0.2745311999620453,0.2786382917362621,0.2830032400302078,0.2861237398695394,0.2896532691053239,0.2929653624445238,0.2972453721733261,0.2998254522373849,0.2970158113431547,0.2941573839197088,0.2909516490644256,0.2880397036694062,0.2857503864906647,0.2829746136865342,0.2788191858530479,0.2796838542180157,0.2807785721615982,0.2798835901372993,0.2809236872637449,0.2823301814161912,0.2838873074346952,0.284309782365822,0.2838168892304736,0.2850636337610285,0.2856288278023073,0.289458814665997,0.2929434424794256,0.2967856438572274,0.3009126821958861,0.3037667071688943,0.3078558919189392,0.3102978980795403,0.3135261194029851,0.3150861563708826,0.3137490608564989,0.3184523809523809,0.3237449118046133,0.3255287009063444,0.0,2.062350531250871,51.29630809931344,141.60094587505554,206.0639118550824,fqhc1_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95722,48285,459.77936106642153,4771,48.60951505401057,3855,39.70873989260567,1472,15.043563653078708,77.33641368994157,79.71143872516363,63.332022412709286,65.08945005143086,77.1419546637021,79.51797044477884,63.257784484587575,65.01743608932374,0.1944590262394712,193.468280384792,0.0742379281217111,72.01396210712119,252.51072,176.95931514219956,263795.21948977245,184867.3561649732,504.30027,336.96061195660025,526274.5763774264,351459.373165896,481.79379,235.6720756022792,499649.9759720858,243376.08448000372,2494.62258,1181.9316637354116,2573005.8502747538,1201990.3167660723,892.81832,410.0343971988611,918389.6596393724,414381.3464963896,1435.00314,623.0606175528967,1468616.159294624,626017.8250196549,0.38087,100000,0,1147776,11990.691794989658,0,0.0,0,0.0,43435,453.166461210589,0,0.0,43566,451.4113787843965,1048051,0,37652,0,0,10101,0,0,91,0.9402227283174192,0,0.0,1,0.0104469192035268,0,0.0,0.04771,0.125265838737627,0.3085307063508698,0.01472,0.3695826645264847,0.6304173354735152,22.883564949322192,4.087661990542972,0.3125810635538262,0.2843060959792477,0.1940337224383917,0.2090791180285343,11.238787968885951,5.947470381012472,15.830362170427655,11448.905079895178,44.493236766489694,13.587746851356252,13.745794335483014,8.28414918656781,8.875546393082614,0.5870298313878081,0.8166058394160584,0.6979253112033195,0.5935828877005348,0.1029776674937965,0.7482817869415808,0.9317180616740088,0.8411764705882353,0.7578947368421053,0.1,0.5172798216276477,0.735202492211838,0.6416184971098265,0.5376344086021505,0.1038338658146964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026144055773985,0.005010192801144,0.0072287933397634,0.0094824782502642,0.0117900776171632,0.0138716313934776,0.0158374040118704,0.0180722891566265,0.0207129931604183,0.0228794300104416,0.0251242888626928,0.0273810868248411,0.029472255357657,0.0316101721101257,0.0337931959592624,0.0357630131889031,0.0377932862556689,0.0400336120505425,0.0419044055747825,0.0439252531144535,0.0585888961981434,0.0724927287564604,0.0853475666663171,0.097959655632759,0.1105290893760539,0.1255376940718898,0.1369404132170078,0.1477278769767417,0.1569688624160715,0.1662684680244704,0.1786802139728121,0.1899374878328394,0.2003521050229303,0.2101750092857611,0.2187238999516462,0.2277401804670913,0.2362031888934695,0.2441759847165252,0.2514198265601088,0.2577195791399817,0.263542244407469,0.2689307235950857,0.2739279385705848,0.2788374096587374,0.2824001649264501,0.2865489163858207,0.29010379585566,0.2930784861569723,0.2961258547809563,0.2995662663309296,0.2962414915655519,0.292504369125762,0.2890831784648308,0.2858587317636862,0.2829507466012926,0.2797434052390649,0.2767775211214125,0.2765130391996063,0.2771900488004641,0.2781551407534186,0.2793526806570366,0.2798928564394461,0.2802801342309857,0.2817840396453254,0.2825473502965372,0.2834119293154376,0.2832949079213275,0.2887255363930512,0.2915105898827236,0.2961715282181357,0.3001917282936182,0.3049001814882032,0.3052196053469128,0.31146408839779,0.3146014355874575,0.3209402734468697,0.3249730727804277,0.3232610018251876,0.3294245977638396,0.3360933383515243,0.0,2.117383524115194,50.572853613501,148.0449098271679,191.69646794671095,fqhc1_80Compliance_implementation_low_initial_treat_cost,0 -100000,95619,48350,460.11775902278833,4831,49.44623976406363,3806,39.312270573839925,1394,14.223114652945544,77.26635035352784,79.70330533885681,63.26822878755484,65.07155308954887,77.08698360125322,79.52895043057833,63.20014624790043,65.0081518602154,0.1793667522746176,174.35490827847389,0.0680825396544122,63.401229333464926,251.97194,176.49513374516692,263516.3722691097,184581.4461112404,499.75016,333.5941378423948,522158.5145211726,348390.51262263214,483.22519,236.6096699801845,502591.0436210377,245272.57740693836,2457.47317,1160.41918722532,2539544.5465859296,1183152.5506747514,855.44277,388.921603630891,882258.8188539934,394362.933758866,1352.1952,577.6757329997213,1381438.1451385184,574404.7409219005,0.38102,100000,0,1145327,11978.016921323167,0,0.0,0,0.0,43062,449.8373754170197,0,0.0,43543,452.640165657453,1049739,0,37705,0,0,9990,0,0,90,0.9412355285037493,0,0.0,0,0.0,0,0.0,0.04831,0.1267912445540916,0.2885530945973918,0.01394,0.3573275004971167,0.6426724995028833,22.912496823438183,3.9493727475918514,0.3097740409879138,0.2926957435627956,0.2028376248029427,0.1946925906463478,11.195133835564931,6.085504390609334,15.03260605583286,11440.638413325976,43.92216600050222,13.856433329131558,13.334993851030903,8.650027902255065,8.080710918084694,0.5880189174986863,0.8132854578096947,0.6997455470737913,0.5595854922279793,0.1012145748987854,0.7721843003412969,0.917864476386037,0.8699690402476781,0.7259615384615384,0.1688311688311688,0.5060744115413819,0.7320574162679426,0.6355140186915887,0.4982269503546099,0.0834752981260647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.0047983768704032,0.0071902261671422,0.0094253294289897,0.0116548930192789,0.0138711945942089,0.0163291966035271,0.0186689555807608,0.0207804698371122,0.0231273696075417,0.0253191838745432,0.0274454175403971,0.0297305922441038,0.0318705792588621,0.0343239027816512,0.0363717262859448,0.0386206038744985,0.0405795596177814,0.0424646128226477,0.0445960180636817,0.059423744406808,0.073418145997946,0.0859969958298757,0.0991678955129555,0.1115852177311181,0.1271833656402597,0.1383433235556689,0.1488363163171704,0.1584078941735519,0.1674007864033862,0.1792208632627968,0.1889009321482766,0.1986692946826235,0.2083666516962241,0.2162993167291161,0.2254866078855431,0.2339524857311992,0.2423133647816444,0.25,0.2566216433141468,0.2627002871167917,0.2674275680421422,0.2730522901350759,0.2775614373524724,0.2817298347910593,0.2855416635841286,0.2889178258855347,0.2917234094004149,0.2955722423614707,0.2989742372702582,0.2964342878663564,0.2934984264845328,0.2910986367281475,0.2875402126401131,0.2846224623055918,0.2805433321109888,0.2761823523836603,0.2762897069183008,0.2756206021160956,0.2757140057369893,0.2754704979982789,0.2774621212121212,0.2797508309120174,0.2805554936358975,0.2819270171061155,0.2820612769938411,0.2832798432219034,0.289279779261907,0.2939510489510489,0.2958537743313815,0.3011638965626557,0.3057873059457176,0.3124646426551009,0.3167556993454217,0.3170438799076212,0.31885236380532,0.3232732732732732,0.3287752675386444,0.327692720923986,0.3303736588975213,0.0,1.912536446150788,51.18635726765373,142.00275443694144,190.29013029673308,fqhc1_80Compliance_implementation_low_initial_treat_cost,1 -100000,95711,47431,453.1767508436857,4789,48.95988966785427,3785,39.02372768020395,1403,14.272131729895206,77.34534288058313,79.71235759889004,63.32656324425341,65.0737246523815,77.16551971078297,79.53689952280723,63.25892396931029,65.01013050738167,0.1798231698001586,175.45807608280484,0.0676392749431187,63.59414499982563,252.92454,177.04834898212002,264258.5909665556,184982.23713274332,497.09965,331.5286676565051,518884.5169311783,345893.97003114066,469.36107,228.9843133025076,487048.60465359257,236698.3863416959,2445.38415,1148.3162014077484,2524077.5877380865,1168885.448284678,873.00698,392.9903022107229,898270.7525780736,396743.5741040453,1361.64654,577.3926184574628,1387950.5594968186,575360.3462312919,0.37767,100000,0,1149657,12011.754134843435,0,0.0,0,0.0,42870,447.37804432092446,0,0.0,42373,439.36433638766704,1052516,0,37795,0,0,10051,0,0,97,1.0134676265006113,0,0.0,0,0.0,0,0.0,0.04789,0.1268038234437472,0.2929630403006891,0.01403,0.3726981585268215,0.6273018414731786,22.935282756974328,3.96920901071244,0.3099075297225891,0.2879788639365918,0.2047556142668428,0.1973579920739762,11.38406321518764,6.323844867776222,15.032469260409115,11320.833079479244,43.77081784139357,13.676474844753413,13.452938433234705,8.565436923176671,8.07596764022878,0.5973579920739762,0.8027522935779816,0.7237851662404092,0.584516129032258,0.1124497991967871,0.7832764505119454,0.904950495049505,0.9136904761904762,0.723404255319149,0.1258741258741259,0.5139686184462304,0.7145299145299145,0.6475507765830346,0.5400340715502555,0.1092715231788079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0044594895911458,0.0065845541982874,0.0086532602071907,0.010982529642661,0.0130219204023661,0.0151983119782269,0.0172718271184018,0.0192793253258369,0.0213841885985116,0.0234253260067251,0.0255396496128488,0.0275869162723719,0.0296908321056589,0.0316205533596837,0.0334408402075709,0.0355019780857101,0.0373806558738065,0.0394792933861526,0.0414760470617659,0.0563243480349664,0.0702496205976241,0.0834951048804289,0.0957987437265237,0.1080533513422252,0.1236770806874947,0.1346547898374545,0.1454895987558983,0.1554911935704514,0.1650435454116435,0.176968743602728,0.1882870104700137,0.1994994831619607,0.2094069484883644,0.2184516796776076,0.2267281412437518,0.2348635318797563,0.2423795919285537,0.2496028323725659,0.2560514805230494,0.2620245405867999,0.2674216129673129,0.2721660457690261,0.2771159349145723,0.2814313111450974,0.2843069648310511,0.2880417114706544,0.2916910028187612,0.2947288065417658,0.2974623440343981,0.2941960319810482,0.291231158543294,0.2884525940437767,0.2857246031402117,0.2834489005033482,0.2791803654713663,0.2750386667087529,0.2745409055974359,0.2743072662713851,0.2740864377286125,0.2748975791433892,0.2762101129111438,0.2766001749052597,0.2784060552092609,0.2786032689450223,0.2801088505896074,0.2800180602195445,0.2836229136232244,0.2888950544496081,0.2924871784833418,0.2948203579317495,0.2982087513788937,0.3011575802837938,0.3056330593469572,0.3078854379765668,0.3125584658559401,0.3136486893642663,0.3196966673318699,0.3201086956521739,0.334106728538283,0.0,2.0719867583445604,51.2448034115291,143.73047551358155,184.6661020644534,fqhc1_80Compliance_implementation_low_initial_treat_cost,2 -100000,95659,48039,459.162232513407,4874,49.67645490753614,3870,39.83942964070291,1428,14.56214261073187,77.2498286400838,79.64898376167152,63.26585613190741,65.03910565532223,77.06522005422929,79.46779748673805,63.195988840277806,64.97261324493729,0.1846085858545194,181.1862749334665,0.0698672916296061,66.4924103849387,251.3236,176.0894956183553,262728.65072810714,184080.42695235717,500.28997,334.03484559136456,522308.2093686951,348508.43683434336,475.21057,232.9122619600261,492687.3477665458,240302.8874710645,2459.95748,1161.3680689380233,2536062.2001066287,1178542.875148206,847.81971,389.14534791326287,873513.3129135785,394033.5859707941,1380.3121,592.6545498478741,1409942.5250107152,592359.8299504861,0.38053,100000,0,1142380,11942.211396732142,0,0.0,0,0.0,43105,449.9628890120114,0,0.0,43039,445.8440920352502,1049161,0,37690,0,0,9931,0,0,61,0.6272279660042442,0,0.0,1,0.010453799433404,0,0.0,0.04874,0.1280845137045699,0.2929831760361099,0.01428,0.3546294476115589,0.6453705523884411,23.125141974684045,3.9683583905824578,0.3080103359173126,0.2987080103359173,0.2015503875968992,0.1917312661498708,11.387066102289202,6.225911546240966,15.431683504977151,11462.117842543328,44.64527232388024,14.405084382762452,13.578240548054762,8.73716277642632,7.92478461663669,0.5919896640826874,0.8070934256055363,0.7030201342281879,0.5705128205128205,0.1010781671159029,0.7720291026677445,0.900763358778626,0.861271676300578,0.7557603686635944,0.14,0.5074060007595899,0.7294303797468354,0.6382978723404256,0.4991119005328597,0.0912162162162162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488755622188,0.0046244181447564,0.0066990793840907,0.0087888640520219,0.0108126252403088,0.0129957427739188,0.0151527511522616,0.0170214938479603,0.0191859275925547,0.0212001106092727,0.0233555229606228,0.0255675398048279,0.0280290168235838,0.0298282863680402,0.0318610749757376,0.0341817580076327,0.0363400860059064,0.0382790519004557,0.0403042062443429,0.0423530883763606,0.0571727092257862,0.0708937640714173,0.0845760701879584,0.097860968193344,0.1103888566453859,0.1266204561087888,0.137305286853478,0.1478103356419819,0.1579617289364751,0.1678768609422329,0.1793250765977646,0.1913276370575989,0.2018382633535767,0.2112784181261858,0.2199205385719015,0.229227538856362,0.2374711820399758,0.2451644918628125,0.2534052504011197,0.2597272800376799,0.2662076812334556,0.2709028136596364,0.2761431695028044,0.2801043971904166,0.2835837262857769,0.2870122003980271,0.2902930288009036,0.2937864647831582,0.2980988988157074,0.3011007329399624,0.297506715803399,0.2941460254448717,0.2904468847923665,0.2881262670141906,0.2850298332018986,0.2813294142861516,0.2774930397367755,0.2782464548319328,0.278595580450152,0.2785945231417802,0.279356930053027,0.2809283950617284,0.2814119712422672,0.2812269609704877,0.2820839238104388,0.2834404811281626,0.2845751449172911,0.2883191237787043,0.2934944948074051,0.2976298101489721,0.3012892502582993,0.3044523411371237,0.3086419753086419,0.3096614368290669,0.3171565908670734,0.322599395489421,0.3251763999399489,0.3291266025641026,0.3328837334772053,0.339531424321309,0.0,2.3520784397642065,54.01915591722664,135.91807234875276,194.4602389185692,fqhc1_80Compliance_implementation_low_initial_treat_cost,3 -100000,95736,47979,458.05130776301496,4787,48.76953288209242,3799,39.00309183588201,1421,14.404194869223698,77.32698317968122,79.68530976938841,63.31555014592704,65.06054525799566,77.1389285174521,79.50311604537517,63.24375710501867,64.99371409987603,0.1880546622291206,182.19372401324563,0.0717930409083678,66.83115811962637,252.46738,176.8715385136211,263711.6027408708,184748.80684962936,500.71904,334.1071560433248,522330.6488677196,348298.9776421255,473.8959,231.23894201204683,490082.8946268906,237898.16416606607,2432.95712,1157.73217979289,2498296.273084315,1166377.44694821,873.98847,406.8360638510789,894044.1944514081,406169.0082463466,1375.14398,593.9759006357765,1394998.286955795,586443.1442696282,0.38003,100000,0,1147579,11986.891033675942,0,0.0,0,0.0,43125,449.7472215258628,0,0.0,42897,443.2292972340603,1050048,0,37656,0,0,9900,0,0,73,0.7625135790089412,0,0.0,0,0.0,0,0.0,0.04787,0.1259637397047601,0.2968456235638186,0.01421,0.3575879396984924,0.6424120603015075,22.971963520950464,3.955191816494008,0.3063964201105554,0.2953408791787312,0.202684917083443,0.1955777836272703,11.587037514765871,6.604489583336147,15.338293662250669,11360.35255009509,43.9369587247984,13.888616081354636,13.298167355128582,8.57026271123199,8.17991257708319,0.6046327981047644,0.8119429590017825,0.7190721649484536,0.5857142857142857,0.1318977119784656,0.7520729684908789,0.8831967213114754,0.8847262247838616,0.7384615384615385,0.1420454545454545,0.5360586193598149,0.7570977917981072,0.6487148102815178,0.5339130434782609,0.128747795414462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020161086064535,0.004258684674819,0.0064449992895276,0.0086150845253576,0.0109941520467836,0.0134820019347283,0.0155300403801443,0.0176796031276157,0.01982748047913,0.0219035629113315,0.0238288015906365,0.0261761294229959,0.0281238435919575,0.0302942933047758,0.0320920156798019,0.0339856989336199,0.0361738914369131,0.0381419665363111,0.0402336482595907,0.0422144896130685,0.0567619485102207,0.0709107077470314,0.0838558158065801,0.0973791827423441,0.1093964117808277,0.1248136517905287,0.1359818436346667,0.146282258751384,0.1561671654553227,0.1658545485768256,0.1776733457645752,0.1893018822968787,0.1998346046288941,0.2084482079558881,0.2165178817132101,0.2254142421723469,0.2340995911802158,0.2421590819509668,0.2498637045113806,0.2562421936770216,0.2626150373328703,0.2687038988408851,0.2729049915287371,0.2777051265131792,0.2816416839904203,0.2852088367276493,0.2878913097921362,0.2917149294197014,0.2945458313365368,0.2981586028597056,0.2954083760476786,0.2924703391578108,0.2890461252795791,0.2858359680656012,0.2828332294541893,0.2784715208275946,0.2751288456066019,0.2755628325828899,0.2762920314788948,0.2758185726721978,0.2763128449947785,0.2776640957028176,0.278548737669286,0.2776887464387464,0.2794906166219839,0.2800871866728943,0.2828505903338146,0.2870919418263529,0.2927584646970804,0.2961638235987737,0.3024177209490792,0.3072241750170505,0.3107151725850509,0.3147135904155747,0.3147480351363846,0.3154831199068684,0.3203313253012048,0.3181183974486745,0.3217415115005476,0.3213603362628964,0.0,2.5315037979379755,52.30508301708603,138.79889414784049,187.0617718000242,fqhc1_80Compliance_implementation_low_initial_treat_cost,4 -100000,95762,48388,461.6653787514881,4807,49.06956830475554,3832,39.47285979824983,1412,14.40028403750966,77.39144353273707,79.72977091225538,63.36142006586866,65.08699221531354,77.20986989330358,79.5523279972018,63.29212301577706,65.02205924892151,0.1815736394334948,177.44291505357523,0.069297050091599,64.9329663920355,252.81454,177.07129892691904,264002.98657087365,184907.68668878992,501.57646,334.8707307033852,523229.4438294939,349146.68839146907,480.5388,234.46344479189656,498509.65936383954,242317.88683979743,2487.83404,1167.0658225850582,2564952.9980576844,1186185.2991315457,887.53857,405.5026708910365,911541.3316346776,408522.37092858815,1382.4035,589.9248725078291,1411804.1603141122,587756.0544612549,0.38171,100000,0,1149157,12000.135753221528,0,0.0,0,0.0,43143,449.9488314780393,0,0.0,43472,450.6484826966855,1051487,0,37701,0,0,9965,0,0,89,0.929387439694242,0,0.0,0,0.0,0,0.0,0.04807,0.125933300149328,0.2937382983149573,0.01412,0.3621103117505995,0.6378896882494005,22.95926378108064,3.909217548730425,0.301670146137787,0.2912317327766179,0.2027661795407098,0.2043319415448851,11.1747367432664,6.026903380481068,15.002328454453425,11504.38666669431,43.860662844193214,13.757981389008464,13.05696399334271,8.657023174422468,8.388694287419566,0.5965553235908142,0.8378136200716846,0.7050173010380623,0.5714285714285714,0.1174968071519795,0.7617391304347826,0.9438444924406048,0.8421052631578947,0.7070707070707071,0.1626506024096385,0.5257270693512305,0.7626339969372129,0.6518607442977191,0.5250431778929189,0.1053484602917342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021565689292078,0.0041853724778823,0.0066658549948255,0.008683641238663,0.010950574981444,0.0132114648644247,0.0151314448746688,0.017344460995368,0.0197468561329669,0.0219468773021199,0.0240061475409836,0.0262434340118187,0.0286063645050913,0.0305678204217741,0.0325340700575222,0.0345333402200299,0.0366276482338208,0.0389346387603974,0.0409450946965759,0.0427205300220842,0.0573474457735746,0.0710167522941539,0.084219802354126,0.0971962223671202,0.1091967354857757,0.1251321856097458,0.1361409239384041,0.147051939485499,0.1571106673358892,0.1664022638597093,0.1788962681506517,0.1901028430534978,0.2010802234345454,0.2107879012966017,0.2198931586352444,0.229414237978269,0.2380623300191716,0.2464982533388747,0.254032303768773,0.2605626551649181,0.2664732937342547,0.2719932696914107,0.2777245806291449,0.280940579241646,0.2835800987061491,0.2875610386096112,0.2908866102986174,0.2947567732425151,0.2986041101202016,0.3017124504758269,0.2994550481866259,0.2958824094006664,0.2934126694546577,0.2910678578107692,0.2874231133191389,0.2839686525146466,0.2799798586961652,0.280449423544184,0.2805043614024369,0.2807736669328365,0.2825045216386045,0.2840285562570063,0.2850531582238899,0.2856824760632376,0.2867414437733678,0.2867078424248715,0.2879087925766663,0.2924953095684803,0.2969072164948453,0.3013390212110439,0.3063704375425073,0.3094960829980944,0.3126058856748447,0.3169237749546279,0.3231826199981432,0.3228887594641817,0.3282181168057211,0.330429617897446,0.3332442544094067,0.3406716417910447,0.0,2.1121603904960957,49.902861223726056,142.06399779239354,194.09731106454024,fqhc1_80Compliance_implementation_low_initial_treat_cost,5 -100000,95718,48205,459.6732067113813,4728,48.05783656156627,3776,38.75968992248062,1443,14.636745439729204,77.37264048070351,79.73197530652146,63.34029949113111,65.08165945799655,77.18527931369219,79.54808020914429,63.26884980386966,65.01415966533416,0.1873611670113177,183.8950973771745,0.071449687261456,67.49979266238881,253.36938,177.53256529246576,264704.0055162038,185474.5871126285,501.82612,334.772454762638,523601.73635052965,349074.8289377526,480.24637,234.97966505180213,496785.5157859546,241836.6722039539,2426.23814,1152.264604135653,2491484.0155456653,1160579.925129707,844.61037,386.7365023099389,866576.0463026807,388218.9267535251,1393.58154,601.5846392833353,1415151.9045529575,595091.3420243458,0.37917,100000,0,1151679,12032.00025073654,0,0.0,0,0.0,43134,449.9258237740028,0,0.0,43387,448.40050983096177,1045849,0,37534,0,0,9908,0,0,94,0.9716040870055788,0,0.0,0,0.0,0,0.0,0.04728,0.1246934092887095,0.3052030456852792,0.01443,0.3567951318458418,0.6432048681541582,23.206373718871696,3.982615795961291,0.3064088983050847,0.2915783898305085,0.2063029661016949,0.1957097457627118,11.325866112993491,6.23076644540656,15.45354264675575,11416.315731155964,43.479027072052624,13.752123267700888,13.119328142366426,8.482698336383326,8.12487732560199,0.5892478813559322,0.8228882833787466,0.7026793431287813,0.5442875481386393,0.1109607577807848,0.7449832775919732,0.9087301587301588,0.879154078549849,0.6721311475409836,0.1067415730337078,0.5170542635658915,0.7504187604690117,0.6319612590799032,0.5050335570469798,0.1122994652406417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0046111904979072,0.006989460016028,0.0091099285017874,0.0114998627337339,0.0138546735346214,0.0162786430726575,0.0183928225123248,0.0205051671794662,0.022387143003378,0.0244425078177064,0.0267348384513506,0.028996832970016,0.0309165808444902,0.0331483162759986,0.0351096595489592,0.0369511424932962,0.0389374656418873,0.0411062839087866,0.0430471508472987,0.0580655939689467,0.0720317257688162,0.0854434693257001,0.0982005843896491,0.1107081866289979,0.125824663790916,0.1371186728329585,0.1475565110042143,0.1580785373303288,0.1668096606752177,0.1785333491292501,0.1902185674096516,0.2006699876008788,0.2099788916474358,0.2185106944811196,0.227735495806884,0.235621728406085,0.2433664681579214,0.2506928039251317,0.2568103645952763,0.2627741450147561,0.2682119205298013,0.2726605069888652,0.2764908408210271,0.2808827639845905,0.2849887828809506,0.2884331439725718,0.2915676431340154,0.2952335385092846,0.2987747035573122,0.2955052555176214,0.2923962152734863,0.2900418904101886,0.2870369035086454,0.284405030252699,0.2811669060790366,0.2776681869111683,0.2769520379767556,0.2769599510437207,0.2765644128240158,0.276691897119265,0.2784758021835858,0.279417273673257,0.2794854734974495,0.2808410212400772,0.280910475109035,0.2806053432532973,0.2851688601936926,0.2893525727533825,0.2958268330733229,0.302221426012182,0.3064853556485356,0.3078790141896938,0.3094809480948094,0.3161248614702623,0.3199112978524743,0.3209932279909706,0.3209654897267106,0.3197297297297297,0.3339580209895052,0.0,2.6485442035079294,51.62629734454001,137.1395390868476,185.3218681350638,fqhc1_80Compliance_implementation_low_initial_treat_cost,6 -100000,95732,48149,459.0941378013621,4903,49.84749091212969,3879,39.82994192119668,1448,14.64505076672377,77.33281654085012,79.69961310778393,63.319784280511655,65.07138612984339,77.13988098871717,79.51344731557275,63.24619829186754,65.00396564239985,0.1929355521329512,186.16579221118457,0.0735859886441119,67.42048744354179,252.09074,176.56760573028043,263329.6494380145,184439.48285868927,496.00286,331.6252835636748,517397.2757280742,345691.2877237234,476.79073,233.32388448821533,494126.6661095559,240714.37771384988,2525.30082,1194.3164325144214,2592550.724940459,1202227.3351799,894.02321,408.59558675185497,916958.968787866,409894.1694779245,1397.2192,605.6721097663346,1413848.6399532028,591828.8022909075,0.38063,100000,0,1145867,11969.529519909747,0,0.0,0,0.0,42830,446.6636025571387,0,0.0,43122,446.5382526219028,1053757,0,37812,0,0,9915,0,0,72,0.7520996114152008,0,0.0,1,0.0104458279363222,0,0.0,0.04903,0.1288127577962851,0.2953293901692841,0.01448,0.3681631052734758,0.6318368947265242,23.03851808334229,4.057613237666086,0.31425625161124,0.2812580562000515,0.2062387213199278,0.1982469708687806,11.556890360138604,6.427045573782764,15.64479125172309,11457.546888422909,44.60134057732245,13.411260448157662,13.906954936971976,8.92518971704043,8.357935475152383,0.5962877030162413,0.8047662694775435,0.7169811320754716,0.5775,0.1287386215864759,0.78125,0.9373695198329852,0.875,0.7281553398058253,0.1963190184049079,0.5150278293135436,0.7009803921568627,0.6568516421291053,0.5252525252525253,0.1105610561056105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0047366445893724,0.0072190070057873,0.0094632093595308,0.0117812232938591,0.0138628585397653,0.0160107690268103,0.0181827462991322,0.0204801537800862,0.0223835512640665,0.0247493284668539,0.0267073283430366,0.0288513937300142,0.0309580943161103,0.0330891456871646,0.0350409327710245,0.0370776974542742,0.0392303381281524,0.0412095625318456,0.0430162417827414,0.0573072184752876,0.0715466549479984,0.0851231175804354,0.0979256253088431,0.1103111692035248,0.1261222202248141,0.1373692806991494,0.148127647797671,0.1580234781401211,0.1667542551936421,0.1780445784429848,0.1894245958754409,0.1999477971484192,0.2097350841323814,0.2179202323074553,0.2272123305872973,0.2351175531974246,0.2429500596403574,0.2508142213547281,0.2576194728767374,0.2636037495660224,0.2691447899720274,0.2749579593093484,0.2793225783253829,0.2830207017202838,0.2865174773441835,0.2894160355511047,0.2926863393538539,0.2969595732007355,0.2997782646569701,0.2979622600877547,0.2946596801034231,0.2913921270484879,0.2873868541483203,0.2854108490285782,0.2828875942321513,0.2795765189223355,0.2798748833172297,0.2798780695480399,0.280494529929734,0.2806935682556273,0.2817542407943731,0.2824581890978854,0.2817627962822964,0.2841863469959084,0.2847692427426259,0.2854954034729315,0.2877123814887825,0.2919560286162973,0.2972001737550843,0.3019636232015202,0.3078100263852242,0.3099207092464257,0.3110793316272768,0.3174191156021136,0.325312463497255,0.3313307299489336,0.3379749353491147,0.3408290436196153,0.3458049886621315,0.0,2.6919265707688744,50.850881617164845,143.04943746538166,196.2930588236713,fqhc1_80Compliance_implementation_low_initial_treat_cost,7 -100000,95779,48176,458.20064941166646,4913,50.03184414120005,3897,40.09229580597,1528,15.525323922780569,77.34910350822409,79.67575192820502,63.34642956891118,65.0658632125515,77.1462320926913,79.47811973461074,63.26849837328581,64.99253158624526,0.2028714155327833,197.63219359427356,0.0779311956253678,73.33162630624201,251.75832,176.2686613472494,262852.9009490598,184036.4441002425,500.9477,334.0679704595992,522362.5533780892,348129.49246616894,474.59123,232.07502801392968,491645.50684388017,239415.5812513632,2557.92989,1207.159340224133,2633633.855020412,1223451.8570066218,907.47504,411.2043151597473,932199.9603253324,414302.7687347169,1486.88048,646.9848295102648,1513134.5702085008,643900.4881955677,0.38088,100000,0,1144356,11947.859134048174,0,0.0,0,0.0,43055,448.9084246024703,0,0.0,42806,443.0720721661325,1057136,0,37999,0,0,9995,0,0,99,1.0231887992148592,0,0.0,1,0.0104407020328046,0,0.0,0.04913,0.1289907582440663,0.3110116018725829,0.01528,0.3707383596337424,0.6292616403662575,23.30308815187534,4.010150627242539,0.3169104439312291,0.2640492686682063,0.2073389787015653,0.2117013086989992,11.19405807164957,6.158609029389198,16.47112538847986,11518.765334877318,44.7923971089009,12.575206363510809,14.204331635298283,8.973196379098683,9.039662730993124,0.5789068514241724,0.8163265306122449,0.691497975708502,0.573019801980198,0.12,0.7416309012875536,0.9135514018691588,0.8373983739837398,0.71875,0.1477272727272727,0.5095168374816984,0.7470881863560732,0.6293302540415704,0.5275974025974026,0.1124807395993836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759073233959,0.0041760001621747,0.0065840865974779,0.0087759392997531,0.011306788140074,0.0133046948165641,0.015583277278379,0.0177374087870592,0.0204354800805157,0.0226514701970493,0.0250586511766091,0.0271110609434485,0.0291763013205898,0.0314645367806745,0.0336625701088749,0.0357677728545017,0.0379027751909107,0.0400045624695403,0.0418861768342737,0.0439468888310335,0.0588284405297377,0.0732791532000795,0.0867882982069833,0.0991349862838043,0.110964736631326,0.1261955338554051,0.1383550462702863,0.1485381236505961,0.1584975343167602,0.1676096181046676,0.1798815931108719,0.190655418559377,0.2015267839665934,0.2106178429635462,0.2185151358429525,0.2281749108388897,0.2366071428571428,0.2442657971666292,0.2525071470708354,0.2588938235428781,0.265224933502949,0.2703091553496859,0.2749958586743025,0.2791839863917871,0.2836455007829475,0.2879515993888314,0.2915400107579339,0.2957097976367637,0.298198583213541,0.3007166519288891,0.2977932761568806,0.2944364957076821,0.2928792569659442,0.2897007474100366,0.2876840279322154,0.2842631064401809,0.2804546889801073,0.280459657221431,0.2809696474473554,0.2813573806683639,0.2816648927230967,0.2831956140177885,0.2838052284306356,0.2839552987887845,0.2851447099795844,0.2866071196062602,0.2882254066835703,0.2936455481068832,0.2973399775407074,0.3018388339489257,0.3060899622504207,0.3087191439771162,0.3128120852032109,0.3165231964653005,0.3172205438066465,0.3205020920502092,0.3294735216921414,0.3336035670855289,0.3370879120879121,0.3498439937597504,0.0,2.27686841808218,50.42824683661971,145.33694603335664,199.67380703511344,fqhc1_80Compliance_implementation_low_initial_treat_cost,8 -100000,95687,48191,460.18790431302057,4846,49.69327076823393,3904,40.433914742859535,1493,15.352137698955971,77.31532774038504,79.7073221738395,63.31028192710126,65.07622614882514,77.12808546201845,79.518392258964,63.23947927802382,65.00623842318316,0.1872422783665968,188.92991487550148,0.0708026490774358,69.98772564197964,251.5898,176.23168123333957,262929.9695883453,184175.1556986211,502.3958,334.73718782890194,524676.9153594532,349461.25161087915,479.32877,233.66257571445104,498311.2230501531,242159.813634784,2521.96822,1189.0562746064077,2613284.019772801,1220292.3433762246,917.2684,420.4555204441477,947132.5362901962,427926.2913918791,1446.8985,618.1036500729576,1489178.3627870034,628077.4670050448,0.3814,100000,0,1143590,11951.362254015698,0,0.0,0,0.0,43205,451.1480138367804,0,0.0,43332,450.3015038615486,1054691,0,37848,0,0,9952,0,0,88,0.909214417841504,0,0.0,0,0.0,0,0.0,0.04846,0.1270582066072365,0.3080891456871646,0.01493,0.3486855109705475,0.6513144890294524,22.84532219230833,4.092876975501715,0.2922643442622951,0.2866290983606557,0.2190061475409836,0.2021004098360656,11.48812359593332,6.228945849084882,16.036910346220367,11417.935371333724,45.00278174546437,13.888842538533124,12.959915786037309,9.456397191574352,8.697626229319585,0.59375,0.8212689901697945,0.7090271691498685,0.5754385964912281,0.1242078580481622,0.7672131147540984,0.9221311475409836,0.8914956011730205,0.748792270531401,0.1467391304347826,0.5149031296572281,0.7432646592709984,0.63125,0.5200617283950617,0.1173553719008264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0044202031671363,0.0066065883212567,0.0089305671265722,0.0109761555989583,0.0133435192258721,0.0155338419485129,0.0181196057402584,0.0202178248197576,0.0220165072603272,0.0241523598547781,0.0260811504879301,0.0283315844700944,0.0302733670619996,0.0322151114781172,0.03402626952115,0.0361083769362275,0.0384842918080767,0.0406702794911534,0.0426893453814005,0.057734500700002,0.0716162874702907,0.0848428874288952,0.0973525821793846,0.1092772190504332,0.1245924890977602,0.1359592313409066,0.1461754744712122,0.1570268248370204,0.1664520283322601,0.1781061071417025,0.1899353637278997,0.2004070836916177,0.2098173740822199,0.2191326755351951,0.2278398190145609,0.2361605896476631,0.2442784166347863,0.2513251835960999,0.2575717641666189,0.2631457083979717,0.2690746135935507,0.2742638007764416,0.2784000959462701,0.2823296537821657,0.28658897156655,0.28997184860807,0.293315195280716,0.2968673202783454,0.2997230282247428,0.2964826825264404,0.2937826685006877,0.2901887429326882,0.2875357380079129,0.2841713276857113,0.2796533753113967,0.2757515473032714,0.2758637596835877,0.2767683984893335,0.2779160297202175,0.2793772579984357,0.2796988342605516,0.2800400534045394,0.2795538536889443,0.2813839339159583,0.2819961114711601,0.2828592516890932,0.2879972371354117,0.294437239300361,0.2975822433610781,0.3007856850901494,0.3033601014370245,0.3083443209644,0.3129660630041089,0.3175961628891188,0.3216353538934184,0.3265983112183353,0.3304382155546782,0.3323369565217391,0.3354572713643178,0.0,1.450762480977753,53.91731258938359,143.0219831265106,194.3276317417076,fqhc1_80Compliance_implementation_low_initial_treat_cost,9 -100000,95629,48031,459.32719154231455,4722,48.26987629275638,3756,38.722563239184765,1415,14.44122598793253,77.3146043072854,79.7347566284658,63.296484254502126,65.0835083716404,77.13729874323533,79.55966657296095,63.22937130460236,65.01948618328139,0.1773055640500729,175.09005550485313,0.0671129498997658,64.02218835901863,251.84874,176.32798202182866,263359.7548860701,184387.13594805825,497.47149,331.4735087224652,519634.5773771554,346050.5836984546,473.90751,230.9506022585553,492122.9752480942,238856.8680076154,2436.99334,1143.1439660329424,2512877.223436405,1160039.5955592047,882.01256,398.7969846776648,907470.4953518284,402266.0261344172,1382.29968,588.1814907172135,1411661.8598960568,586403.0805044862,0.38012,100000,0,1144767,11970.897949366825,0,0.0,0,0.0,42850,447.4793211264365,0,0.0,42765,443.829800583505,1055752,0,37917,0,0,10049,0,0,92,0.9411371027617144,0,0.0,2,0.0209141578391492,0,0.0,0.04722,0.1242239292854888,0.2996611605252012,0.01415,0.3603255340793489,0.639674465920651,22.846654238874805,4.0542200397755845,0.2984558040468583,0.2880724174653887,0.2058040468583599,0.2076677316293929,11.637584968108738,6.401418756148918,15.106275437627817,11391.319295989926,43.040824985176044,13.41664480929172,12.62702718259231,8.532599212227474,8.464553781064545,0.6003727369542066,0.8207024029574861,0.7181088314005353,0.610608020698577,0.1153846153846153,0.7759515570934256,0.9205020920502092,0.8717948717948718,0.7931034482758621,0.147239263803681,0.5223076923076924,0.7417218543046358,0.6588380716934487,0.5456140350877193,0.1069692058346839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024824455635151,0.0047864842664611,0.0069842043285824,0.0091551084692374,0.0114339192708333,0.0137808107557547,0.0159729092930508,0.0177954847277556,0.0196990927780221,0.0216690049257048,0.0237333333333333,0.0258654340010272,0.0276528985134509,0.0299314821492967,0.0319470679920313,0.0340178257542858,0.0362023768818708,0.038216758894922,0.0401735547509052,0.0421151439299123,0.0562750201206191,0.0702485831910413,0.0835442240446913,0.0965568783486489,0.1086658222503694,0.124106603983355,0.1356659549833763,0.1459780894326271,0.1560621296078389,0.1658896074597683,0.178010810111014,0.188854086509803,0.198999825677678,0.208818052360609,0.2178091249724487,0.2266962552011095,0.2350923453369236,0.2426474729384201,0.2502498864152658,0.257042616861005,0.2634801226780857,0.2694520451834701,0.2747728563316297,0.2788814071074261,0.2834641847371039,0.2872531639336189,0.2904641075959651,0.2936088602128686,0.2961594127985113,0.2984244915164928,0.2948907463649313,0.2914133582181723,0.2884934356638835,0.2861161197259286,0.2838232893584816,0.2800966272207443,0.2773220805082736,0.2765622437264228,0.276712796856313,0.2766867448408597,0.2782337798007686,0.2798234428641491,0.2807516611295681,0.2805919811844061,0.2816056378267701,0.2841652500901457,0.2858711875862457,0.29066054988996,0.2940850725089122,0.2988096170412718,0.3019755409219191,0.305674798450424,0.3087701739021644,0.3134732566012186,0.3159019134311722,0.3183052047680869,0.3189139438564197,0.3214069132807762,0.3256445047489824,0.333716915995397,0.0,2.033120073687505,50.47752311924411,133.6803709136125,192.0054611392148,fqhc1_80Compliance_implementation_low_initial_treat_cost,10 -100000,95641,47930,457.4607124559551,5030,51.43191727397246,3985,41.02842923014188,1453,14.73217553141435,77.29129418892526,79.6916964025104,63.29829466637945,65.07024718474901,77.1062420355235,79.5130771838474,63.229048688632304,65.0062553062656,0.1850521534017701,178.6192186630018,0.0692459777471441,63.9918784834066,254.20714,177.97953430244775,265793.05946194625,186091.25197608533,498.89719,331.94596510971905,521013.05925283086,346452.75050419697,472.56203,230.9938782984001,490398.85613910353,238591.6347473573,2552.87755,1200.9327984669185,2630077.5817902363,1216515.6663637129,909.08872,415.0221220852549,934112.3158478058,417527.79883654,1411.05304,595.3627541292672,1433227.6743237732,587039.8077251614,0.38165,100000,0,1155487,12081.502702815736,0,0.0,0,0.0,43010,449.0438201189866,0,0.0,42930,445.22746520843566,1044787,0,37510,0,0,10074,0,0,86,0.888740184648843,0,0.0,0,0.0,0,0.0,0.0503,0.1317961483034193,0.2888667992047714,0.01453,0.3641762452107279,0.635823754789272,22.878195533304016,3.980800309426072,0.3074027603513174,0.2941028858218318,0.2040150564617315,0.1944792973651192,11.58001850903148,6.329130018347471,15.393053853651509,11466.721872256025,45.95471477269705,14.571217028993525,13.917532591307795,9.012456119102191,8.453509033293535,0.5972396486825596,0.8225255972696246,0.7004081632653061,0.5904059040590406,0.1006451612903225,0.7755430410297667,0.930635838150289,0.8715083798882681,0.72,0.1506024096385542,0.5164113785557987,0.7366003062787136,0.629757785467128,0.5481239804241436,0.0870279146141215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993628637703,0.0042583392476933,0.0064857951950306,0.0088710496900721,0.0113237493514024,0.0136171512960228,0.0157330179252401,0.0179202319929748,0.0200597088172746,0.0221161919193987,0.0241406185905324,0.026364439332005,0.0283007221776433,0.0303976423794656,0.0328175164397278,0.0348137269097904,0.0367380355255249,0.0386244704709693,0.0405576943086047,0.0428065054211843,0.0571748058815537,0.070359391203243,0.0838268649193548,0.0959864425333936,0.1087410816059441,0.125128335397284,0.1369759763904075,0.1475682239406915,0.1571086449847114,0.166459107208039,0.1782337275873594,0.1896073802975507,0.2006051239633443,0.2098545140067214,0.2198860568393445,0.2286896062276139,0.2368106520112149,0.2444824597931414,0.2520655529326312,0.2588448190949594,0.2646813827571845,0.2698550046772685,0.274836984177702,0.2796874250922863,0.2837785285467759,0.2874142948749568,0.2907474646300237,0.2939072206945717,0.297580498924954,0.3013079134034754,0.298560667204735,0.2943999779959843,0.291485377152593,0.2874552385352893,0.2864736451373422,0.2835443813256978,0.2793713038803327,0.2790033484341146,0.2790181240498112,0.2798165137614679,0.2821732130153143,0.2832052472489479,0.2831878780268307,0.2836553478202668,0.2849724814548935,0.2863883847549909,0.2884218851509759,0.2933703726824396,0.2961500838457239,0.3012853470437018,0.3081555948014309,0.3119570368030327,0.3108717434869739,0.312884834663626,0.3196050775740479,0.3275431290898274,0.330715935334873,0.3310075928586086,0.3344380005523336,0.3371212121212121,0.0,2.520994922907662,53.92156610265532,144.9799491912491,200.03773343516585,fqhc1_80Compliance_implementation_low_initial_treat_cost,11 -100000,95625,47839,455.97908496732026,4875,49.694117647058825,3907,40.209150326797385,1473,14.96470588235294,77.27514686010801,79.68658624032808,63.27600815666828,65.05645228268422,77.08388992709568,79.5024418537387,63.202624401890354,64.9891473256334,0.1912569330123261,184.1443865893808,0.0733837547779288,67.30495705082262,251.46132,176.06344077681783,262966.0862745098,184118.630877718,499.15392,333.3121735490743,521354.65620915033,347925.37887484895,476.19839,232.43546435359795,494431.5294117647,240328.92001086543,2532.8792,1199.7743427121748,2606831.539869281,1212734.9570846278,901.86723,412.77090387023503,924515.0954248364,413041.81319763087,1430.07442,611.6400385462299,1453076.559477124,600460.4624811766,0.37972,100000,0,1143006,11953.003921568628,0,0.0,0,0.0,43007,449.07712418300656,0,0.0,43094,447.0797385620915,1052867,0,37727,0,0,10001,0,0,78,0.8156862745098039,0,0.0,2,0.0209150326797385,0,0.0,0.04875,0.1283840724744548,0.3021538461538461,0.01473,0.3560620947140892,0.6439379052859108,23.13229621397376,3.9784301351097726,0.3056053237778346,0.2823137957512158,0.2121832608139237,0.1998976196570258,11.662875220092827,6.498284439188347,15.656172959028194,11458.082143000276,44.96768432002504,13.722517122177049,13.443031141280583,9.346913808005697,8.455222248561713,0.604811876119785,0.8368087035358114,0.7010050251256281,0.6043425814234017,0.1306017925736235,0.7635467980295566,0.9219712525667352,0.851063829787234,0.7866666666666666,0.135593220338983,0.532911863146151,0.7694805194805194,0.6439306358381502,0.5364238410596026,0.1291390728476821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088139987038,0.0048245036133099,0.0071736593780122,0.0096495683087861,0.0118593557705021,0.0138300472543588,0.015999102663458,0.018274443344121,0.0205391921319252,0.0226900393184796,0.0247710092006605,0.0271825111462678,0.0292710530377077,0.0314278057227673,0.0332817017761255,0.035431645373196,0.0371280201498802,0.0392779993353273,0.0412616812704227,0.0433218267335509,0.0578428605771743,0.0718567266782637,0.0851385707982266,0.0974365998335317,0.1093621247015571,0.1247285631057677,0.136215802563612,0.1466558625027987,0.1567156191128618,0.1658712243362356,0.177893907166071,0.1901069344728108,0.2007696332795535,0.2097032439190226,0.2190255476466368,0.2280290576265162,0.2371077487801602,0.244527935734272,0.2516557044994196,0.2584448986152892,0.2643347559844127,0.2695919252546804,0.2748348690217842,0.2800388992940498,0.284142174447025,0.2876369288463436,0.290538423947774,0.2938623288019958,0.2972289578443703,0.299813731059355,0.2967909753763629,0.2937037903925321,0.289843232812654,0.2873646209386281,0.2843764377625076,0.2805120518781353,0.27750047387376,0.2792243948773378,0.2794220144496387,0.2796142027389474,0.2798902391219129,0.2812155782848151,0.281805859660098,0.2825351611180345,0.2836499354036078,0.2830604207689916,0.2850592930121982,0.2885276648952797,0.2928890751606594,0.2973719517007339,0.298784620250305,0.3016065954973047,0.3075291622481442,0.3079002703514569,0.3088961341406613,0.315739756759948,0.3219282238442822,0.3234702093397745,0.3210583742498636,0.3208475217555808,0.0,2.513750351100304,52.82621781394497,140.61567761705678,196.99904921220104,fqhc1_80Compliance_implementation_low_initial_treat_cost,12 -100000,95686,48230,460.7988629475576,4711,47.91714566394248,3744,38.56363522354367,1384,14.087745333695628,77.28391542799022,79.68156876853298,63.28504443165552,65.05943119347121,77.10042452572648,79.50190473781961,63.21503413136854,64.9935997289676,0.1834909022637418,179.66403071336856,0.0700103002869809,65.8314645036171,252.15366,176.6365659531683,263521.99903852184,184600.2194188996,501.11172,334.1691745492875,523154.13958154793,348684.99524411873,476.79739,232.6961312896505,495017.2439019293,240629.2203736037,2403.69918,1138.970277338339,2477356.164956211,1155607.0034679456,872.95349,403.5931704628045,896396.6619986205,405875.2486913487,1337.8073,577.4710459543822,1362933.553497899,573025.7885104263,0.38122,100000,0,1146153,11978.272683569174,0,0.0,0,0.0,43203,450.933260874109,0,0.0,43025,446.2930836276989,1049174,0,37688,0,0,9841,0,0,79,0.8256171226720732,0,0.0,1,0.0104508496540768,0,0.0,0.04711,0.1235769372016158,0.2937805136913606,0.01384,0.351900792844074,0.648099207155926,23.464486185194296,4.073342518525768,0.3210470085470085,0.2796474358974359,0.204059829059829,0.1952457264957265,11.63839951635348,6.451760300580724,14.93265074481577,11446.64853887954,43.04223145155549,12.89894869947494,13.594997004372688,8.512777352341978,8.035508395365888,0.5857371794871795,0.7994269340974212,0.6938435940099834,0.5549738219895288,0.13406292749658,0.7724498692240628,0.9370932754880694,0.8545454545454545,0.7354497354497355,0.1976047904191616,0.503273007316134,0.6911262798634812,0.6330275229357798,0.4956521739130435,0.1152482269503546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023915202367199,0.0046961213891593,0.006873305785963,0.0091157610186888,0.0113244406458899,0.0135074566050036,0.0157886684685603,0.017730931078155,0.0199437484019432,0.0222602388903685,0.0243346943800398,0.0264374666063869,0.0283291657662663,0.0302583710360606,0.0325677419354838,0.0347794611924091,0.036712362833784,0.0386563693738581,0.0405883331946409,0.0424296747162495,0.0576848746957493,0.0722414749824631,0.0855967423701775,0.0980396283396294,0.1101143044106937,0.1255028157683025,0.1365600875003982,0.1472953255301247,0.1570744430666609,0.1664824018118781,0.1786461140454888,0.190050592046107,0.2007404181184669,0.2105741537720249,0.2190434207626184,0.2282726929651253,0.2369906656978369,0.244368316072978,0.2514857110391455,0.2594699358922899,0.2652588145297758,0.2704866157235948,0.2754956835214875,0.2796793240842974,0.2844941906441998,0.2885583185316756,0.2920006010819475,0.2956719759808661,0.2977825529766605,0.299512259425257,0.2966142749488642,0.2928913990463234,0.2896038908099294,0.2856545800426586,0.2829875025974411,0.2788851325511312,0.2753252090347258,0.2756262373402706,0.2751550889631195,0.2755083870508209,0.2753086419753086,0.277721804065667,0.2788132927979872,0.280468715058813,0.2816623326591544,0.2828690445196563,0.2837496810049054,0.2886278195488722,0.2942733732757419,0.2987620357634112,0.3034006855493415,0.3089324161109069,0.3119351244273864,0.3147845468053492,0.3202205882352941,0.3201070514312311,0.3246831623415812,0.3302642113690953,0.3331494760066188,0.3387957317073171,0.0,2.2473827437661265,49.7134617789828,136.9112867164125,189.8554954306428,fqhc1_80Compliance_implementation_low_initial_treat_cost,13 -100000,95661,47928,457.0305558168951,4841,49.40362321113097,3857,39.786328806932815,1444,14.72909545164696,77.35161970545354,79.75735633248341,63.31721993396855,65.09418357133796,77.16053154256905,79.56794332237571,63.24563807381643,65.02519116630445,0.1910881628844976,189.4130101076996,0.071581860152122,68.99240503351223,251.80496,176.28590975107238,263225.89142910903,184281.44839701903,499.55053,333.7038799525162,521648.6446932397,348280.71749838616,477.19494,233.20836117446916,495429.9766885147,241129.73605646432,2509.31568,1179.7849606611114,2589913.0889286124,1200152.230491455,902.22204,405.3118964113365,931604.0601708116,412192.782558902,1405.84554,596.9923631209582,1435157.2741242512,596600.0702423096,0.37895,100000,0,1144568,11964.813246777683,0,0.0,0,0.0,43118,450.1520996017186,0,0.0,43096,447.0892004055989,1054365,0,37753,0,0,9900,0,0,86,0.8990079551750452,0,0.0,0,0.0,0,0.0,0.04841,0.127747723974139,0.298285478206982,0.01444,0.3564239194789816,0.6435760805210183,23.129168192325285,4.006075319401607,0.3181228934404978,0.2800103707544724,0.1895255379828882,0.2123411978221415,11.583884124904683,6.349203563643752,15.23875355274258,11390.792422766614,44.17893326413617,13.25557329607288,13.990106664477466,8.15421145464902,8.77904184893681,0.5812807881773399,0.8064814814814815,0.7123064384678076,0.5526675786593708,0.1135531135531135,0.7586206896551724,0.9136363636363636,0.8767123287671232,0.6858638743455497,0.1646341463414634,0.5050055617352615,0.7328125,0.642691415313225,0.5055555555555555,0.1007633587786259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086908947224,0.004522638543832,0.0066271540787951,0.0087072258798667,0.0110773174378744,0.0134039519250356,0.0159078162443277,0.0181760627380502,0.0201022494887525,0.0224213868687903,0.0244988407164987,0.0265945968164582,0.0289075042193224,0.0308466328508392,0.0329917778787753,0.0350628524132222,0.0368665982608335,0.0388152977327464,0.0410636814781676,0.0431772446223946,0.0584086515856015,0.0724209776884338,0.0850353701798946,0.0979472017339884,0.1101965005593195,0.1256668077900084,0.136694695714953,0.1469650945909938,0.1579904572394462,0.1675114366100384,0.178544854582511,0.1895955886335814,0.1997822773786196,0.2090393624939795,0.2171231594365701,0.2260310421286031,0.2338856549088837,0.2416378640667394,0.2488108887400529,0.2561404312328955,0.2622399056200049,0.2667422321418138,0.2734000922171122,0.2777890818561562,0.2816460685740621,0.2861114186255335,0.2892963231072614,0.2914668493567786,0.2952492774566474,0.2980860237669576,0.2942905459816395,0.2907293937026223,0.2884855630886708,0.2863414563931311,0.284064836059507,0.2796864754410845,0.2759071643531284,0.2752133119748929,0.2758380125914582,0.2766108808935209,0.277390930983628,0.2785143801392769,0.2800901295612443,0.2799048910024221,0.2796478755636138,0.2811014672452986,0.281516641238628,0.2869087732434793,0.2913635256030911,0.2954840741761487,0.3001037484776038,0.3045817877853821,0.3065906131812264,0.3087914567195608,0.3155893536121673,0.3205476218576655,0.3252589884216941,0.3244595676541233,0.3319838056680162,0.3416542473919523,0.0,1.9102643635680585,50.61673322470314,139.17189236228592,200.5058507075076,fqhc1_80Compliance_implementation_low_initial_treat_cost,14 -100000,95792,48122,458.0549523968599,4806,48.96024720227159,3779,38.87589777852013,1417,14.416652747619844,77.3507064425629,79.6792615883377,63.34838135415546,65.07022833923912,77.16252980242477,79.4949807205964,63.27660682052694,65.00220998012489,0.1881766401381241,184.2808677412933,0.0717745336285133,68.01835911423382,253.99616,177.85985365100544,265153.83330549527,185672.97232650477,500.48736,334.0994629392001,521894.0308167697,348197.2293381695,474.97083,232.5261119994824,492467.4294304326,240130.25363906007,2446.04674,1169.264603211242,2516877.8603641223,1184337.136621168,867.29889,402.9902777431596,888975.0501085685,404408.7043561401,1374.11006,598.24020298296,1399796.1625187907,595094.6277029254,0.38072,100000,0,1154528,12052.4469684316,0,0.0,0,0.0,43077,449.09804576582593,0,0.0,43040,445.9453816602639,1046059,0,37578,0,0,10115,0,0,71,0.7411892433606146,0,0.0,2,0.0208785702355102,0,0.0,0.04806,0.1262345030468585,0.2948397836038285,0.01417,0.3577430972388956,0.6422569027611045,22.9668834448977,3.98972886084961,0.3088118549880921,0.2836729293463879,0.2085207726911881,0.1989944429743318,11.323689513833504,6.255476903214055,15.481882750637212,11393.072161886936,43.87710103687197,13.374060853559664,13.463662616601349,8.794119426407049,8.245258140303909,0.5866631383964012,0.7985074626865671,0.7172236503856041,0.5571065989847716,0.113031914893617,0.744299674267101,0.90020366598778,0.8375350140056023,0.6792452830188679,0.1726190476190476,0.5107800862406899,0.7125645438898451,0.6641975308641975,0.5121527777777778,0.0958904109589041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021170130869899,0.0043592862935928,0.0063725937877358,0.0086339996749553,0.0109707987636245,0.0132041088499088,0.0154192654192654,0.0175934524599197,0.0196919995503643,0.0219197707736389,0.0240383630141197,0.0262266822631287,0.0285593899656752,0.03095404759944,0.0330896379628579,0.035299222115474,0.0372497283873971,0.0396313650688339,0.0414771429164849,0.0434637767159082,0.0580863939899833,0.0717646320807979,0.085438460409635,0.098095878607007,0.1105830031194671,0.1261719286748618,0.1373993998451897,0.1478923451850117,0.1573289206789793,0.1671614597288462,0.1783327054518056,0.1887510267606242,0.1989416724617524,0.2074201935892674,0.2166494425998812,0.2252519330538379,0.2330012703082168,0.2408141716185705,0.2484956995705236,0.2560089691228793,0.2618505987367059,0.267376557264119,0.2729282421089963,0.2773941040586961,0.280793256110134,0.2847298278429298,0.2881004435005309,0.2923565664908825,0.2959814728561817,0.2979704189550489,0.2951156605142258,0.292320158211333,0.2895510215560274,0.2858008832953266,0.2838050314465409,0.2796458553144639,0.2757023382290168,0.2764228976564039,0.277749334425558,0.2786958304365652,0.2788668576457151,0.2793615720007102,0.280443653866276,0.2809682543233629,0.2838029013307757,0.2854096783420443,0.2872909318466264,0.2926300578034682,0.2971080456550661,0.3017893741131957,0.305256951059101,0.3089344523531286,0.3112116641528406,0.3149150217209054,0.31527738796894,0.3154783019983446,0.3189139438564197,0.3158326497128794,0.3152022315202231,0.3273993808049535,0.0,2.1737441234925754,53.38052890114893,141.7496474560815,178.95875575294207,fqhc1_80Compliance_implementation_low_initial_treat_cost,15 -100000,95738,48132,458.887797948568,4670,47.70310639453509,3733,38.42779251707786,1391,14.205435668177737,77.31652017658898,79.67798899432255,63.31665033110207,65.06280994162344,77.14137401504273,79.50420525561657,63.25039209081014,64.99886013596583,0.1751461615462517,173.7837387059784,0.0662582402919298,63.949805657614434,251.63468,176.30863576760535,262836.55392842967,184157.1954371361,499.11605,333.4873992461459,520790.6682821869,347788.6724666757,477.67334,233.9670985198957,494703.0750590153,241140.7010048544,2408.48622,1144.202076085037,2481823.685474942,1161256.9889542689,880.13723,399.26680706288846,905754.3295243268,403476.8399829618,1350.6131,575.0542098324239,1380365.476613257,574916.1901670253,0.37948,100000,0,1143794,11947.116087655895,0,0.0,0,0.0,43004,448.60974743571,0,0.0,43086,445.8626668616432,1053439,0,37838,0,0,9938,0,0,98,1.0236269819716308,0,0.0,0,0.0,0,0.0,0.0467,0.12306313903236,0.2978586723768736,0.01391,0.3638232271325796,0.6361767728674204,22.98753745502678,3.9019636178385375,0.317974819180284,0.2780605411197428,0.2001071524243236,0.2038574872756496,11.307075196629746,6.400722886362857,14.723948853079328,11412.915576729816,43.070778387656254,12.932719031554862,13.65310343464301,8.260323675647367,8.224632245811012,0.5858558799892848,0.8140655105973025,0.6798652064026959,0.5863453815261044,0.1274638633377135,0.7763605442176871,0.9272349272349272,0.8763736263736264,0.7305389221556886,0.1585365853658536,0.4982401251466562,0.7163375224416517,0.5929526123936817,0.5448275862068965,0.1189279731993299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0051398505692359,0.0072773407764526,0.0096121605007265,0.011871337890625,0.0142586519463059,0.0162361172019214,0.0180856387161341,0.0203883395875297,0.0224929613514205,0.0247518661307521,0.0268610740322415,0.0287309634230361,0.0308400436600284,0.0330280150183603,0.0351183526713298,0.0370155680688969,0.039042403120073,0.0410269736500181,0.0431919991665798,0.0579938613158499,0.0723448780998221,0.0857277684563758,0.0980305563441742,0.1105300338454076,0.1259320366786178,0.1372908865244465,0.1478556145747953,0.1574539005576803,0.1664199279093718,0.1791576906505816,0.1903520067522967,0.2005502272677845,0.2096885283538685,0.2185652800862989,0.2284188010506599,0.2356744082179544,0.2427634465456918,0.2503574427524226,0.2565136227767788,0.2619603942071901,0.2678842870840252,0.2740492699434413,0.2779316048761192,0.2824312506073267,0.2849940834237254,0.2893834759545614,0.292571254149338,0.2961065838830681,0.2988528481012658,0.2955893628182882,0.292008365897958,0.288460454366086,0.2850433526011561,0.2825990143103141,0.2793514836341388,0.2756844716179282,0.2749606402519023,0.2755455460579072,0.2753736934108665,0.2762818355211489,0.2764955159160343,0.2765748442921038,0.2775226289740045,0.2796407185628742,0.2814231705422342,0.2828371526499164,0.288047883284494,0.2907914869940186,0.296195865754932,0.2982052669552669,0.3019494204425711,0.3078553615960099,0.3137739808153477,0.3159702878365831,0.3183798422230072,0.3195625759416768,0.316043425814234,0.3227222832052689,0.3250382848392036,0.0,2.196507106693562,51.05106190419629,137.04026525684725,184.35531121107812,fqhc1_80Compliance_implementation_low_initial_treat_cost,16 -100000,95678,48344,461.0046196617822,4891,50.07420723677335,3892,40.09281130458413,1446,14.757833566755158,77.40264542862671,79.78357981195839,63.35728834693722,65.11211840434669,77.22336318638037,79.60598204707838,63.29031174011514,65.0479511025159,0.1792822422463444,177.59776488000512,0.0669766068220738,64.16730183079267,252.81652,176.9879377125025,264236.8360542653,184982.8985895425,500.56534,333.7163233805787,522612.0947344217,348226.11611925275,481.12211,234.35739827144343,498457.1688371413,241641.2293795623,2485.51773,1162.6384774828675,2563018.2800643826,1180381.4643730707,907.43114,410.2161162548129,933974.6754739856,414299.2811877472,1398.16116,583.5004251512084,1428936.181776375,584412.9409381896,0.38202,100000,0,1149166,12010.76527519388,0,0.0,0,0.0,43154,450.4483789376868,0,0.0,43393,449.23597901293925,1053940,0,37768,0,0,10092,0,0,80,0.8152344321578628,0,0.0,1,0.0104517234892033,0,0.0,0.04891,0.1280299460761216,0.2956450623594357,0.01446,0.3649706457925636,0.6350293542074364,23.058481302395663,3.997347295699402,0.3108941418293936,0.2913669064748201,0.2037512846865364,0.1939876670092497,11.517294870979711,6.452459629636077,15.230641125060458,11542.815744913394,44.57280048452932,14.014668816347166,13.633900452572428,8.836969753987796,8.087261461621933,0.6027749229188079,0.7954144620811288,0.7223140495867768,0.6103404791929382,0.1139072847682119,0.77009507346586,0.896,0.8562691131498471,0.7433155080213903,0.1678321678321678,0.5319926873857403,0.7160883280757098,0.6727066817667045,0.5693069306930693,0.1013071895424836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024911140140353,0.0046418762098776,0.0071109758571718,0.009150645420107,0.0111245563905187,0.0132476630755758,0.0156289824339616,0.0175750153092467,0.0195393136713879,0.0220334646676559,0.0240372295171028,0.0259940250700668,0.0285217820458775,0.0305364738354429,0.0326042096574494,0.0348519927236646,0.0369146975376395,0.0389352980854044,0.0411024440977639,0.0432639192879327,0.0580535300139988,0.0723223354240181,0.085221369880264,0.0981223373481302,0.1112306459098004,0.1265525486130213,0.1382442513184562,0.1493991037118252,0.1595661697921675,0.1686736652476489,0.1800650357481264,0.1917962367860118,0.202507148526262,0.2116309575863576,0.2209367542422276,0.2307172977100926,0.2400320934275334,0.2480740291534712,0.2545551315297768,0.2611269859412504,0.2670421754888155,0.2721991507629135,0.2768787696375246,0.2814584578601315,0.2853681290056821,0.2892090576057827,0.2924298610330749,0.2958857548701298,0.299072293975717,0.301483827723527,0.2984178063824081,0.2951717340415337,0.2925544582195139,0.2902702159141515,0.2875797683762703,0.2838411987756407,0.2797416509136736,0.2800719012991257,0.2804954611012132,0.28077673346338,0.2814402472399605,0.2829963397208792,0.2843637268316955,0.2854958448753462,0.2865255673005798,0.2882123179595954,0.2890366388456641,0.2914396038987326,0.2940233490155079,0.2985356636750118,0.3022877294511257,0.3079729301046843,0.3102025506376594,0.3118077010021852,0.3158237869050945,0.3134449872063271,0.31666414866294,0.3253179650238473,0.3254564983888292,0.3274074074074074,0.0,2.3284373312510467,50.06658267191673,144.70034282754744,198.79834033530847,fqhc1_80Compliance_implementation_low_initial_treat_cost,17 -100000,95740,48023,458.9304365991226,4681,47.837894297054525,3707,38.25987048255693,1363,13.975349905995404,77.33907921770925,79.70679814194018,63.32552877917672,65.07588583943934,77.1664772324357,79.53468357816779,63.26023219889487,65.01257367919558,0.1726019852735589,172.11456377239642,0.0652965802818457,63.31216024375408,252.36508,176.73622213496094,263594.1926049718,184600.19023914868,499.78744,333.36479506788106,521560.9149780656,347733.2098055996,472.20161,230.54492481125797,490104.5331105077,238446.86591695136,2415.01936,1135.9849230849825,2494876.6659703366,1158930.9411792157,843.00542,384.41264773404527,868824.817213286,389826.7262732876,1321.82276,562.3504706898458,1356311.0507624818,565931.3074209325,0.37927,100000,0,1147114,11981.5542093169,0,0.0,0,0.0,43052,449.1957384583246,0,0.0,42778,443.7121370378108,1053237,0,37754,0,0,9997,0,0,75,0.7833716315019846,0,0.0,0,0.0,0,0.0,0.04681,0.1234213093574498,0.2911770989104892,0.01363,0.3542268041237113,0.6457731958762887,23.25864125125156,3.9403088942000335,0.3069867817642298,0.2867547882384678,0.2036687348260048,0.2025896951712975,11.217658084668694,6.108402718717783,14.47261353264199,11364.410670316973,42.64757539957595,13.238688587311463,12.91960560788614,8.357035822854769,8.132245381523576,0.5851092527650391,0.8109125117591721,0.7012302284710018,0.5801324503311258,0.0945406125166444,0.7572304995617879,0.9273504273504274,0.8615384615384616,0.7043010752688172,0.1172839506172839,0.5085736554949337,0.719327731092437,0.6371463714637147,0.539543057996485,0.0882852292020373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268838113757,0.0043902340106257,0.0067598428793276,0.0090229231019346,0.0110983388095988,0.0132397722759168,0.0153979503390608,0.0174580649113314,0.0196425284770649,0.0217435834408734,0.0241726235039535,0.0262936258499209,0.0284165706763205,0.0302281016257649,0.0319267532360288,0.0340527181162942,0.0360509686107945,0.0379418418813175,0.0397550018718023,0.0418494171085667,0.0569668493865831,0.0705706334093619,0.0837736956886428,0.0966581841889419,0.1092094023853965,0.1241921323474968,0.1354531372673838,0.1454611273184131,0.1556315452019662,0.1653755364806867,0.1776635524089699,0.1889509702009702,0.1991144184427255,0.2085827142122482,0.2172678028801691,0.2261028596763467,0.2338867242014536,0.2414514767932489,0.2497248476734027,0.2559796554252199,0.261626023784184,0.2683961933266303,0.273338691756696,0.277271204288723,0.2816144911370304,0.2852752817966147,0.2882669295366916,0.290848678537006,0.2951498651665097,0.2984935201631472,0.2954710096321536,0.293049991768644,0.289505123051624,0.2860089129901784,0.2835104254657004,0.2806350660254942,0.2764027574022368,0.2759518119618948,0.2759755203627623,0.2763614985837208,0.2774552446377569,0.2782957630119202,0.279430439036576,0.2797117245367796,0.2818470198201636,0.2846187611350667,0.2865144699991513,0.2899138684309075,0.2947383083191141,0.299443721150432,0.3042198677895499,0.3055467344130412,0.3101432880844645,0.3143203883495146,0.3156819026384244,0.3192389006342495,0.3246097337006428,0.3265182186234818,0.3274531422271224,0.3248189096454441,0.0,1.7474341293766709,49.96516008462956,137.4910095955448,184.6646272635654,fqhc1_80Compliance_implementation_low_initial_treat_cost,18 -100000,95688,47768,455.647521110275,4778,48.84625031351894,3813,39.27347211771591,1398,14.28601287517766,77.30793472821749,79.68420792612592,63.31631099018998,65.07045351306722,77.12656729748095,79.50449167064329,63.24838223788882,65.00469490333525,0.1813674307365431,179.71625548263148,0.0679287523011638,65.75860973197223,250.09996,175.2445498311818,261369.78513502213,183141.2029499036,494.84492,329.9458548867592,516572.9036033776,344245.7269587899,467.3602,228.3802136335677,484386.3075829781,235541.52757717375,2470.14402,1160.1300383713622,2549366.0124571524,1180415.9026633634,866.68535,393.55937856248113,892938.8011035867,398550.1751093514,1364.65286,582.7899149951514,1397058.7743499707,585849.9202905511,0.38032,100000,0,1136818,11880.444778864645,0,0.0,0,0.0,42664,445.2700443106763,0,0.0,42383,438.9056098988379,1066020,0,38211,0,0,9825,0,0,74,0.7733467101412925,0,0.0,1,0.0104506312181255,0,0.0,0.04778,0.1256310475389146,0.2925910422771033,0.01398,0.3675730110775428,0.6324269889224572,23.10429677488119,4.018467973475217,0.3034356150013113,0.2882244951481773,0.2040388145816942,0.2043010752688172,11.171221317038238,6.04404569573415,15.027783607526109,11455.34934707182,43.92556478346794,13.680304986434647,13.122917684155428,8.666388614786058,8.45595349809181,0.5819564647259375,0.8225659690627843,0.6966292134831461,0.5565552699228792,0.0975609756097561,0.7690972222222222,0.9297520661157024,0.88125,0.7074468085106383,0.13125,0.5009394964299135,0.7382113821138211,0.6260454002389486,0.5084745762711864,0.0888529886914378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0047829435369462,0.0070400389535296,0.0091005119037945,0.0109124562688145,0.0130951896053113,0.0151726810168143,0.0172230729964267,0.0192500357807356,0.0214963507385531,0.0236088899823676,0.0255749486652977,0.0275203883295453,0.0294732721410101,0.0316379283657864,0.0338457403368033,0.0360047660985339,0.0382666832772725,0.0402875153431668,0.0426769519441259,0.0568745626037999,0.0708372146572747,0.0845459027916199,0.0977641293145152,0.1101400997248605,0.125736219348426,0.1374485509398735,0.147315536254098,0.1578424459970514,0.1661964881418473,0.1781429709879601,0.18904417809701,0.199630314232902,0.2099497047889787,0.2187988120118798,0.2280641516957224,0.2362214387718672,0.2443872041752902,0.2508933737194976,0.257377105495185,0.2626212356195458,0.2685516499450408,0.2749603615968952,0.2794503794827524,0.2832990993837889,0.2878051787916152,0.2915722104630337,0.2955882727527446,0.2989940628969951,0.3013561157253964,0.2986937786156746,0.2959669649002064,0.2937099387194478,0.2901020437660798,0.2873915111163952,0.2836261785233255,0.2797024610271425,0.2793982393903561,0.2796472578743185,0.2802233082438554,0.2809457840347461,0.2816634414122665,0.2826927498066754,0.2833823267414929,0.285529406125677,0.2854801363269766,0.2868829176844856,0.291628796188924,0.2969713965227145,0.3010773905836852,0.3059138808139535,0.3103812999100957,0.3105656350053362,0.3133479875691655,0.3161338567956627,0.3245531514581373,0.3256198347107438,0.3273703041144901,0.319422150882825,0.3167655786350148,0.0,2.204987550534909,49.99857000255906,143.5289800862388,192.0886683122439,fqhc1_80Compliance_implementation_low_initial_treat_cost,19 -100000,95711,48149,458.5157400925704,4961,50.683829444891394,4008,41.332762169447605,1502,15.31694371597831,77.38171245272493,79.75526092320294,63.34258245905804,65.09477856508867,77.18549955866456,79.56065583666712,63.26729005323355,65.0220636362848,0.1962128940603662,194.605086535816,0.0752924058244914,72.71492880387598,251.2103,175.8842512280012,262467.0727502586,183765.57296663636,501.74729,334.54688019064577,523687.5907680413,348995.94460023555,482.03184,235.28495517966525,499978.79031668254,243040.53058408585,2578.77266,1217.2539277906965,2662172.4984589024,1239785.950383955,918.60115,419.1802155793072,949629.4887734952,427851.8392525237,1460.57374,636.0935292225622,1491704.568962815,637284.0294283913,0.37937,100000,0,1141865,11930.321488648118,0,0.0,0,0.0,43203,450.805027635277,0,0.0,43525,451.1602637105453,1057753,0,37987,0,0,10112,0,0,96,0.9925713867789492,0,0.0,1,0.010448119860831,0,0.0,0.04961,0.1307694335345441,0.3027615400120943,0.01502,0.3618624420401855,0.6381375579598145,23.264585565676708,3.9235817731760463,0.3071357285429141,0.2884231536926148,0.2020958083832335,0.2023453093812375,11.34291051829363,6.223685437201487,16.22502569468225,11433.960355930576,45.93748391616764,14.161715970845812,13.921380031887711,8.95044545489862,8.903942458535502,0.5885728542914171,0.8079584775086506,0.7059301380991064,0.5777777777777777,0.1085080147965474,0.764,0.9135802469135802,0.8605898123324397,0.7603686635944701,0.1436781609195402,0.5090645395213923,0.7313432835820896,0.6386946386946387,0.5109612141652614,0.0989010989010989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585480473181,0.0046325862401038,0.0067276860007306,0.0090709627613107,0.0113106983745956,0.0132281059063136,0.0153352026510323,0.0176405733186328,0.0197601790989849,0.0222950148428703,0.0243484857804843,0.0266840521976611,0.0290106951871657,0.0309647911988298,0.0331365709686074,0.0352770885028949,0.0376162561882469,0.0396920107505681,0.0415596301650528,0.0437170428729235,0.0582534411095097,0.0719834174326333,0.0854483836783514,0.0976520586564557,0.1099368203440601,0.1259239676413049,0.1371506779553122,0.1473528441089736,0.1577766620017733,0.1669741697416974,0.1800344790432065,0.1916323879627625,0.2012093660616211,0.2104532435446137,0.2189748102518975,0.2277277055605996,0.2366621677393448,0.2453486017683187,0.2529579254251131,0.2589517800501552,0.2642825739870884,0.2699025040331065,0.2755943716642406,0.2797215365812744,0.2834780496690752,0.2867542897968737,0.2898471001537749,0.2936082002238274,0.2963178595456192,0.2990249044669917,0.296546627250739,0.2925604182963481,0.2894418839928057,0.2868577516087701,0.2835300032531866,0.279804982097966,0.2764190488196917,0.2761345086516487,0.2758579720968125,0.2760168950095833,0.2755254136234908,0.2754013322067868,0.2763332779531484,0.2781683113427209,0.2789577820687025,0.2791494845360824,0.2796729630673809,0.2836604148552974,0.2890768537456235,0.2905429278059121,0.2945917953798352,0.2974550425912293,0.3000250438266967,0.3018181818181818,0.3027676824154319,0.3078007518796992,0.3169035379498034,0.3133400200601805,0.319813647574678,0.31837360951285,0.0,1.9902513144513088,54.68068370207735,142.45613720509917,202.50173717800257,fqhc1_80Compliance_implementation_low_initial_treat_cost,20 -100000,95856,48143,458.8445167751628,4879,49.61609080287098,3910,40.19571023201469,1471,14.98080454014355,77.44506122741345,79.72144817689474,63.40474875222951,65.08373840281325,77.25123607925568,79.5320622113261,63.330990116000365,65.01408236942999,0.1938251481577708,189.38596556863277,0.0737586362291438,69.65603338326787,252.68188,177.03313812715805,263605.7002169922,184686.54870551455,499.7107,333.4614212917183,520711.1291937907,347274.64247592044,478.7238,233.9479378911889,495323.5895509932,241022.2660448362,2501.45244,1190.114356286825,2574123.3099649474,1206094.095608856,886.71679,409.43034825377447,910157.4340677684,412237.17686297686,1422.38334,613.265770769265,1449590.1769320646,610745.9508390549,0.38085,100000,0,1148554,11982.077282590551,0,0.0,0,0.0,43097,448.9859789684527,0,0.0,43341,448.0575029210482,1054178,0,37848,0,0,9978,0,0,70,0.7302620597563012,0,0.0,1,0.0104323151393757,0,0.0,0.04879,0.1281081790731259,0.3014962082393933,0.01471,0.3519027069438996,0.6480972930561004,23.00829647640413,3.983189926933612,0.3056265984654731,0.2974424552429667,0.1994884910485933,0.1974424552429667,11.54625340759079,6.408449180409016,15.861536644702229,11408.599588714384,45.210805742739495,14.410238247956151,13.6400012489976,8.682194659712929,8.478371586072814,0.5933503836317136,0.82201203783319,0.694560669456067,0.5705128205128205,0.1152849740932642,0.7635914332784185,0.9212121212121211,0.8457300275482094,0.7164948453608248,0.1543209876543209,0.5166913946587537,0.7485029940119761,0.6286057692307693,0.5221843003412969,0.1049180327868852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.004517873965498,0.0069861999736369,0.0091957289594413,0.0113601723332046,0.0133582932313233,0.0155116923327629,0.0176817889810027,0.0198817510645467,0.0221065655068047,0.0239606799098914,0.0263678785703297,0.0284701894931443,0.030673016591407,0.0325053316986225,0.0344343517753922,0.0365582501680541,0.0384029512035895,0.0405830504251409,0.0425892782818613,0.0572790122941845,0.0714905086764383,0.0840051933909911,0.0965633034262028,0.1088116155505286,0.1243746437844341,0.1354934349851757,0.1467107220262632,0.1573430301996246,0.166650612725424,0.1778943295645071,0.1890239951620915,0.1983368795866082,0.2088955849600419,0.2176348479356815,0.2267803998362596,0.2362854149483961,0.2443682939160721,0.2509067005168193,0.2570121253717685,0.2625512976128547,0.2687668030391584,0.2744033681023676,0.2792562102139472,0.2828133339802998,0.2869731093471171,0.2901591352649752,0.2929694950599544,0.2962349378098184,0.2984958540411563,0.2954291784893025,0.2931306723785201,0.2903773796821475,0.2874962234019595,0.2851058795693836,0.2818814429065217,0.2788110523665659,0.2788994715897971,0.2792537389444378,0.2790549396053983,0.278974988834301,0.2787838315590996,0.2795895856313347,0.2805005213764338,0.2818379074369918,0.2809748793018873,0.2814841945117484,0.2858740911068299,0.2916839485690585,0.2971796179343349,0.2997606250846845,0.3036185251608819,0.3085518102372035,0.3112124667426834,0.3121772603511407,0.3124407582938389,0.3193122505373043,0.3146853146853147,0.313969571230982,0.3017912772585669,0.0,2.314233171864135,52.61570965030752,150.72807417901456,188.1149872039653,fqhc1_80Compliance_implementation_low_initial_treat_cost,21 -100000,95663,48446,463.0734975905,4805,48.72312179212444,3801,38.93877465686838,1457,14.707880789856056,77.29747507811412,79.70225868338181,63.28577397120039,65.06649599548021,77.10330772919988,79.5159670938921,63.21021852491914,64.99701135005806,0.1941673489142346,186.2915894897128,0.0755554462812497,69.48464542215049,253.2288,177.4028037114219,264709.23972695816,185445.57844874397,501.71575,335.1413399116501,523706.7936401744,349580.5273843075,483.31124,236.57085248235663,500782.9150246177,243741.95737614247,2453.8032,1179.3632620195883,2519050.2074992424,1186831.9643117914,884.50655,412.1111893850722,906371.6483907048,412559.6619226569,1411.95738,618.719770360484,1428704.723874434,606333.6823655537,0.38324,100000,0,1151040,12032.23816940719,0,0.0,0,0.0,43088,449.60956691719895,0,0.0,43734,452.6201352665085,1042245,0,37434,0,0,9940,0,0,93,0.9721626961312106,0,0.0,2,0.020906724647983,0,0.0,0.04805,0.1253783529902933,0.3032258064516129,0.01457,0.3715256948610278,0.6284743051389722,22.803880017379715,4.034153798852253,0.3051828466193107,0.2925545908971323,0.1988950276243093,0.2033675348592475,11.89381967794891,6.7821400628579305,15.707584246386054,11489.780114734962,43.98795021812475,13.79517966855567,13.256926771686516,8.387266951072654,8.548576826809914,0.5864246250986582,0.8138489208633094,0.6870689655172414,0.5687830687830688,0.1254851228978007,0.7616279069767442,0.9300411522633744,0.8510028653295129,0.746031746031746,0.15,0.5051983057373893,0.7236421725239617,0.6165228113440198,0.5097001763668431,0.118043844856661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0044833952082445,0.0068023757551144,0.0092775124479219,0.0115966796875,0.0137301635804355,0.0160030190526702,0.0181879455076489,0.0203626619757202,0.0226725788778404,0.0247402377606597,0.0267715888311314,0.0287239843211489,0.0307798524380693,0.0327606500505916,0.0349407310867001,0.0371053668041707,0.0390526031607584,0.0408139909903349,0.0425004168751042,0.0583841718201571,0.072494870399062,0.0864902302348521,0.0992446716741358,0.1115753048909144,0.1272854240731335,0.1382348570094053,0.1484108725289707,0.158159282192777,0.1668062534896705,0.17853714310369,0.1900796877541063,0.2010327809916005,0.2104276932180545,0.2193605292171995,0.2290295733229762,0.2376134686759379,0.2456142327583293,0.2523978362652848,0.2595216803100135,0.2654678592946192,0.2702443137897917,0.2756872638548366,0.2798804780876494,0.2849080470954558,0.2878522430044909,0.2915330259597073,0.2952225606259477,0.2990427518937428,0.3015856236786469,0.2979555507605999,0.2942222589850697,0.2913855880775636,0.287998263763293,0.2855084733175898,0.2818598959926583,0.2776891864155233,0.2775960752248569,0.2770359800224238,0.276764951271901,0.2775834480705541,0.2789046255247361,0.2806009905522953,0.2806842385516507,0.2827243872753741,0.2840818014943509,0.2852743402836639,0.2896040375089567,0.2926863181312569,0.2976649107634248,0.3017463110870448,0.304478082623778,0.3108469724313896,0.3151815181518151,0.3194289951798294,0.3200792910447761,0.3229135053110774,0.3246597277822258,0.3321602598808879,0.3359848484848485,0.0,3.1532046318650537,51.29448220940667,140.5764047559103,186.8196215569519,fqhc1_80Compliance_implementation_low_initial_treat_cost,22 -100000,95825,48087,457.91807983302897,4769,48.58857291938429,3806,39.09209496477955,1432,14.5995303939473,77.32864418348662,79.64062082690806,63.32870225298407,65.03892407559306,77.13798465265054,79.45287427031899,63.25612251311848,64.97000194208245,0.1906595308360721,187.7465565890759,0.0725797398655885,68.92213351061116,253.0583,177.28148713203572,264083.10983563785,185004.87366792676,497.7082,332.3195331728967,518756.2744586486,346163.3774779146,475.24749,231.945143001494,491676.01356639713,238737.98636714704,2462.77738,1171.3830409407085,2533064.941299244,1185576.5333958378,838.43571,390.90731626400606,861448.9642577615,394422.2032496791,1391.61344,603.6891617469884,1420298.5442212366,601705.0735333236,0.37963,100000,0,1150265,12003.77771980172,0,0.0,0,0.0,42781,445.7918079833029,0,0.0,42905,443.5376989303418,1049298,0,37674,0,0,10137,0,0,106,1.0957474563005478,0,0.0,1,0.0104356900600052,0,0.0,0.04769,0.1256223164660327,0.3002725938351855,0.01432,0.3557073954983923,0.6442926045016077,22.728468498930404,3.955163506269205,0.3018917498686285,0.2916447714135575,0.2025748817656332,0.2038885969521807,11.156990738877916,6.023085846889326,15.50584250985772,11384.485015872053,44.02919128883941,13.75591769484203,13.118640852779375,8.598293346336641,8.556339394881366,0.5851287440882816,0.8126126126126126,0.7067014795474326,0.5732814526588845,0.0914948453608247,0.7514743049705139,0.9291666666666668,0.8388059701492537,0.7360406091370558,0.1142857142857142,0.5097365406643757,0.7238095238095238,0.6523341523341524,0.5174216027874564,0.0848585690515806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0045108056603008,0.0070106021407193,0.0091215667154233,0.0113280455562334,0.0134697617593158,0.0158903271837733,0.0181656750385255,0.0201115948249432,0.0223993614800564,0.024477960613947,0.0266206910706772,0.0288574188642015,0.0309662541950626,0.0331432460581811,0.0352062478693401,0.0374298901007926,0.0393272989310191,0.041102293501745,0.0430596611016278,0.0575344466116633,0.0712224499184475,0.0843543974760761,0.0971501229482356,0.1096495388669301,0.1245983426348723,0.1350256606014336,0.1464914614034154,0.1569027380291316,0.1659448101374386,0.1779768698985635,0.1883675390291136,0.1987669490143203,0.2076579186113874,0.2159759733330399,0.2248277542701433,0.2333724110980851,0.2420264565156206,0.2498807766549335,0.2560483408627055,0.2620030137939028,0.266506447831184,0.271967718965108,0.2765962556891189,0.2807630077492974,0.2844986001997953,0.2890127787521924,0.2927329469460544,0.2957521848499779,0.2993393234672304,0.2954040179473705,0.2921201267392203,0.2897704020433795,0.2873112176192062,0.2853870751840559,0.2810607802559975,0.2773580422903302,0.2774196722924765,0.2776727148820172,0.2782519024251476,0.2785112700517283,0.2792145122215438,0.280384350834775,0.2804010493086123,0.2815466653913293,0.2828017868273426,0.2837879946743718,0.2874851683007556,0.2920996837092906,0.2973471470057295,0.2998421645997745,0.3034980507849542,0.3064082525789309,0.3116342441904473,0.3135735623599701,0.3175635718509758,0.3218442932728647,0.3274584418185459,0.3312550826782325,0.3400840657241116,0.0,2.4053941055942936,51.36880297322713,140.36688879877616,190.95293611214925,fqhc1_80Compliance_implementation_low_initial_treat_cost,23 -100000,95753,48485,463.03510072791454,4792,49.00107568431276,3802,39.19459442523994,1384,14.130105584159242,77.35098256499538,79.69740692986217,63.33757887846742,65.07021837620466,77.16765283519074,79.51610123657326,63.26816306200009,65.00358713226618,0.1833297298046403,181.30569328890545,0.0694158164673268,66.63124393848818,252.34462,176.76172859211232,263537.03800403123,184601.7655761306,501.27487,334.94463880393494,523006.088582081,349298.49592590827,482.03301,236.1799943898674,499980.501916389,244059.22410699332,2428.18773,1158.581495555563,2505964.9306026963,1180187.931043357,853.27639,392.29552218222807,880884.4735935166,399613.4319105732,1333.11602,575.6474829372312,1363155.8906770544,577435.328512272,0.38316,100000,0,1147021,11978.95627291051,0,0.0,0,0.0,43206,450.7012835106994,0,0.0,43479,450.61773521456246,1048790,0,37705,0,0,9878,0,0,105,1.0965713867972806,0,0.0,0,0.0,0,0.0,0.04792,0.1250652468942478,0.2888146911519199,0.01384,0.3768581759742868,0.6231418240257132,22.767356468548765,3.877089804280533,0.318779589689637,0.2903734876380852,0.2014729089952656,0.1893740136770121,11.221311456412746,6.373375359207247,15.01712015694638,11445.96542072572,43.93799751099602,13.750185740651244,13.832566995886353,8.478984665426026,7.876260109032408,0.6075749605470805,0.8043478260869565,0.7244224422442245,0.6057441253263708,0.1111111111111111,0.7719298245614035,0.9031620553359684,0.8601036269430051,0.7772277227722773,0.1375,0.5266875981161695,0.7207357859531772,0.6610169491525424,0.5443262411347518,0.1035714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986643443743,0.0045509370470601,0.0067679319756882,0.0090700414398309,0.0114487905562729,0.01367185511702,0.0160141079091956,0.0180847698070073,0.0202168869264812,0.0221473968621109,0.0242839863050208,0.0263087661671114,0.0283866589899654,0.0304191123468231,0.0324447562258856,0.0345636647407208,0.0365726119596168,0.0385708949028723,0.0405897153313509,0.0425157311330583,0.0576654070192287,0.0712925767846681,0.0839405726747538,0.0963014361109358,0.1080177938944172,0.1237355319486285,0.135701786945225,0.146420628079473,0.1567911125353842,0.1668704680997125,0.1778536501303233,0.1898361578252494,0.2000935321435174,0.2094789011301598,0.2188604070132185,0.2280005762347491,0.236957881102327,0.2443672032306325,0.2525245648671341,0.2590028653295129,0.2645544279482046,0.2695151628603519,0.2747342406792087,0.2789403117293557,0.2832189039035396,0.2877969563131282,0.2912053582585659,0.2937679428876298,0.296723622770369,0.3004100576190288,0.2973540416139538,0.2938595284602052,0.290819990705927,0.2881708621138117,0.2854682837759601,0.2816903563396012,0.277830502040429,0.2773640002624844,0.2775892354656616,0.278935288151878,0.2800970420826724,0.281731128458226,0.2831797523245632,0.282839736748488,0.2832680550248376,0.2852811609225187,0.2851569126378286,0.2889117812324405,0.2939501284989928,0.2990764393790528,0.303607712105477,0.3072505005796185,0.3137279361317283,0.3170786685701405,0.3193067012698118,0.3265234237407537,0.3303708243947287,0.3313228789706474,0.3372506149221099,0.3393939393939394,0.0,1.9800080450914308,54.85880649193322,132.6143676324485,187.03696802905463,fqhc1_80Compliance_implementation_low_initial_treat_cost,24 -100000,95847,48285,459.8057320521248,4908,50.0798147046856,3911,40.26208436362119,1457,14.84657840099325,77.51248185563044,79.79901797621125,63.42745123530996,65.11106949260272,77.3210532732505,79.61058965990404,63.35440727454947,65.04157425248593,0.1914285823799417,188.4283163072098,0.0730439607604864,69.49524011679387,253.85162,177.794064019749,264850.87691842206,185497.7871187924,504.33689,336.00394059238226,525674.8672363246,350048.1398399348,482.45598,235.44205815178225,499916.8988074744,242988.42706494388,2525.56808,1196.153448378927,2600364.810583534,1213395.409987842,888.08122,405.8598914334858,910014.6274792115,406928.8633435062,1412.50616,613.7413450091036,1439927.8433336462,610877.7763615038,0.38154,100000,0,1153871,12038.67622356464,0,0.0,0,0.0,43381,452.05379406762864,0,0.0,43612,451.7094953415339,1050662,0,37686,0,0,10076,0,0,96,0.9807297046334262,0,0.0,0,0.0,0,0.0,0.04908,0.1286365780783142,0.2968622656886716,0.01457,0.3613053613053613,0.6386946386946387,22.890616453984148,3.970193047039578,0.3093837893121963,0.2909741754027103,0.2012273075939657,0.1984147276911275,11.33034692979953,6.125279208205106,15.708506243663248,11401.560022496842,45.051117318282245,14.037459098646872,13.751888274522434,8.804687961217637,8.457081983895298,0.5942214267450779,0.820738137082601,0.6900826446280992,0.6060991105463787,0.1005154639175257,0.756,0.926923076923077,0.8296089385474861,0.7295918367346939,0.1306818181818181,0.5182262307403231,0.7313915857605178,0.6314553990610329,0.5651438240270727,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020035213405379,0.0041320221589815,0.0066086216158688,0.008767034327404,0.0110932769865295,0.013525882233296,0.0157907597076011,0.0181310164790341,0.0204425474559137,0.0227630637079455,0.0253955250627208,0.0276282189336368,0.0297979901769384,0.0317710263060392,0.0337941628264208,0.0356353419959923,0.0375939071586746,0.0394907364208474,0.0412606735503708,0.0432139250653257,0.0573377273485733,0.0711843494808603,0.0840912901332886,0.0967860518853061,0.1089291355164788,0.1245563630218015,0.1364768475830127,0.14624913605189,0.1559468544901552,0.1647390177557883,0.1770613789840423,0.1891167924997029,0.2003604425191892,0.2099119952831218,0.218348381994332,0.2272842878152886,0.235565408223512,0.2439210665229062,0.2509907828883302,0.2577888471249528,0.2638139384714727,0.2695989379541643,0.2741986820544861,0.2785251321961875,0.2823767119972898,0.2857177932185912,0.2884289488112446,0.2916582278481012,0.295058308098705,0.2984440187872267,0.2949779027721976,0.2912323895499931,0.2887800783435926,0.2858394621925994,0.2832548318986519,0.279632759329466,0.2756381972896312,0.2763563929661861,0.275874363327674,0.2757255702494009,0.2763714259104032,0.2775519820934205,0.2782469423412929,0.2789769957005452,0.2790647943545513,0.2805329766436876,0.2823519487092964,0.286527631660375,0.2910589290024482,0.2947204968944099,0.2999644697104281,0.302953499198262,0.3074610381641919,0.311650701715304,0.3141552511415525,0.3171907275648382,0.3205260824589921,0.3182260260649679,0.3206593990959851,0.3215208564045773,0.0,2.1060084655962057,54.561248554524006,140.36654335999089,192.7512958814337,fqhc1_80Compliance_implementation_low_initial_treat_cost,25 -100000,95751,47895,455.3581685830957,4739,48.438136416329854,3797,39.216300613048425,1433,14.69436350534198,77.31288813594676,79.6719509598078,63.318020272784125,65.06211481872867,77.12754798752351,79.48827308468921,63.24801844607296,64.99498438670216,0.1853401484232506,183.67787511859035,0.070001826711163,67.13043202651647,253.24948,177.46241085580743,264487.55626573093,185337.3968478736,501.53821,334.3094934625053,523334.6492464831,348685.3580400495,473.19596,230.8082296219868,491779.3443410513,239153.234871953,2465.24431,1158.0954716566014,2547212.676630009,1182079.5293002415,873.43347,399.1375768663236,899077.4822195068,403763.45272113045,1388.13686,592.1474883613552,1423885.828868628,595341.3076350042,0.37965,100000,0,1151134,12022.161648442314,0,0.0,0,0.0,43167,450.34516610792576,0,0.0,42851,445.03973848837086,1046981,0,37597,0,0,10203,0,0,84,0.8772754331547451,0,0.0,1,0.0104437551566041,0,0.0,0.04739,0.1248254971684446,0.3023844692973201,0.01433,0.3620028265697557,0.6379971734302443,23.331545479511306,4.025227467495856,0.3107716618382934,0.2818014221754016,0.2075322623123518,0.1998946536739531,11.362229067176589,6.338994406249579,15.304772251951796,11416.278337079008,43.6309058670331,13.211184499367642,13.314553982228864,8.804495622912539,8.300671762524049,0.5859889386357651,0.8037383177570093,0.6915254237288135,0.5812182741116751,0.1198945981554677,0.7751277683134583,0.9294354838709676,0.8622950819672132,0.7345971563981043,0.191358024691358,0.5013343499809378,0.6951219512195121,0.632,0.5251299826689775,0.100502512562814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509307460147,0.0047030681438084,0.0069501516857922,0.0095884288790476,0.0117777483955614,0.0140427698574338,0.0163148771285816,0.0184275811375075,0.0205492056351851,0.0226292993108815,0.0245462934481697,0.0267703113447794,0.0289208174347687,0.0308804746405174,0.0329419775503466,0.0354703018903025,0.037981237185992,0.0401768111731379,0.0420852311723965,0.0440005834792031,0.0583610870404977,0.072165487799774,0.086557115741566,0.0989149634115569,0.1111790567967358,0.1260523755129669,0.1374502626134012,0.1474827035657264,0.1574275826711099,0.1667578087303374,0.1781400055985013,0.189447274221631,0.1996999119306753,0.2088213742795586,0.2166943549008174,0.2260462128093223,0.2344334200158483,0.2423693536592226,0.2494947201090042,0.2554766269477543,0.2613959949068179,0.2674695977549111,0.2721961373339798,0.2770229794167685,0.2820058280718795,0.2857670660968731,0.2894305484302856,0.2923669556815581,0.2950501455839534,0.298324096067564,0.294948624372113,0.2916666666666667,0.2882449025571702,0.2856441079581575,0.2832748781357745,0.2800196096454944,0.2764285601127956,0.2766090226798706,0.2776952117391824,0.2784258382607764,0.2788276055810469,0.2803176986604497,0.2803662130808302,0.2816433839092752,0.2828704369933323,0.283888398191926,0.2843830790647461,0.2881723131024521,0.293297849989495,0.298028481891388,0.3027839593078705,0.3070841239721695,0.3104412678682411,0.3127640313820157,0.3157109557109557,0.3175905308801125,0.3206828227404359,0.3244595676541233,0.3270285087719298,0.3369524522650692,0.0,1.6515681476240642,51.64088940719595,137.77185609541797,191.30997315304845,fqhc1_80Compliance_implementation_low_initial_treat_cost,26 -100000,95775,48260,459.7128687026886,4757,48.39467501957713,3788,38.914121639258674,1425,14.377447141738449,77.37208356525132,79.70989603253976,63.35007434272507,65.07891708898332,77.19402004783745,79.53978987448362,63.2819203183324,65.01715031921063,0.1780635174138609,170.10615805614293,0.0681540243926761,61.76676977268869,252.27026,176.73985232997234,263397.94309579744,184535.6683680441,499.47662,333.6746268572274,520829.7468024015,347714.68857927463,480.26009,234.833231532592,497994.41399112507,242487.04937408335,2474.77542,1169.6449693546383,2540552.8791438267,1177965.443229317,910.07854,420.3286833276417,932126.5257113024,421016.2328732122,1392.6042,589.1397494155318,1406268.3790133125,574358.0972786137,0.38082,100000,0,1146683,11972.6337770817,0,0.0,0,0.0,42917,447.3923257635082,0,0.0,43297,448.7392325763508,1054744,0,37872,0,0,10008,0,0,108,1.096319498825372,0,0.0,1,0.0104411380840511,0,0.0,0.04757,0.1249146578436006,0.2995585453016607,0.01425,0.3614141414141414,0.6385858585858586,23.08356986947699,4.101321002376414,0.2925026399155227,0.2864308342133052,0.2127771911298838,0.2082893347412882,11.8871443478584,6.585166570598233,14.957338093089518,11440.753704894589,43.46275526168559,13.504220002777918,12.64783416935772,8.782630282367442,8.528070807182495,0.5974128827877508,0.8110599078341014,0.7111913357400722,0.6116625310173698,0.1292775665399239,0.7719734660033167,0.9194214876033058,0.8659217877094972,0.7595628415300546,0.2044198895027624,0.5158791634391944,0.7237936772046589,0.6373333333333333,0.5682182985553772,0.1069078947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864985313481,0.0041867726369571,0.0064845446611597,0.0086854054712975,0.0108410454591681,0.012949991855351,0.0154216228888277,0.0177765985672592,0.0197330771746239,0.0219017695401651,0.0241545398647263,0.026642582975841,0.0286278178098948,0.0307876067011954,0.0328551835084716,0.0350578097393137,0.0372950480291487,0.0394499408873125,0.0414081901971175,0.0432197742701261,0.0579825092358748,0.0720158152378561,0.0854405166268293,0.0980192297588399,0.1104567244376547,0.1258320126782884,0.1370795090828157,0.148084346189428,0.1587152536947127,0.1674023441685058,0.179422903128631,0.1903964024344103,0.201764967993653,0.2117932572478027,0.2196793067042055,0.2283755799918053,0.2362468210413599,0.2439583661173931,0.2510172853499575,0.2572687728937728,0.2641193132551014,0.2696272057964239,0.2744479495268139,0.2784364867613453,0.2826500794199313,0.2864593583940169,0.2890972743185796,0.2928312908756111,0.2957000361775802,0.2990757563788609,0.2958791946308725,0.2930412971669019,0.2901910613111389,0.287533164148114,0.2849968147676261,0.2813248874303594,0.2778356207603723,0.2776369790218937,0.2775590886628155,0.2779002774023757,0.2780780556901629,0.2781369755330647,0.2797751639429582,0.2804953835227273,0.2818626865671642,0.2828463371671329,0.2842027628854282,0.2873239436619718,0.2916666666666667,0.2965857509374383,0.30223206217242,0.3053274373552326,0.3067756426254055,0.3090867890324043,0.3113621510596583,0.3145104484620803,0.316538054168558,0.3176100628930817,0.3240268456375839,0.3317236255572065,0.0,2.3858371218181427,52.30953050751288,132.3657493438105,190.02691743310092,fqhc1_80Compliance_implementation_low_initial_treat_cost,27 -100000,95649,47601,454.3068929105375,4804,49.15890390908426,3843,39.62404207048689,1482,15.149139039613589,77.25911226955019,79.65636153923012,63.27736057920528,65.04631298908784,77.07426052108262,79.47423145169314,63.20702681850285,64.97949562406005,0.1848517484675653,182.1300875369758,0.0703337607024323,66.8173650277879,251.27366,176.0307855911684,262703.9069932775,184038.29166135396,496.46211,330.1099140578315,518407.8244414474,344491.14955589094,465.53854,226.8114883215867,483417.1711152234,234591.41009702493,2470.80548,1152.1224251940307,2549360.8087904737,1170874.9389941592,872.75088,392.5362605511371,897050.068479545,395223.4283787976,1437.76888,613.1836205002526,1470523.8946565045,612113.6721963008,0.37979,100000,0,1142153,11941.086681512614,0,0.0,0,0.0,42782,446.6852763750797,0,0.0,42078,436.6172150257713,1057553,0,37976,0,0,9799,0,0,97,1.003669667220776,0,0.0,0,0.0,0,0.0,0.04804,0.1264909555280549,0.3084929225645295,0.01482,0.359168997203356,0.6408310027966441,23.30832821287624,4.025036826034055,0.2961228207129846,0.2927400468384075,0.2066094197241738,0.204527712724434,11.447040720116766,6.238761617729523,15.934372012885412,11407.822025217089,44.19185194561626,13.8597241246326,12.931694294498152,8.859606054246214,8.5408274722393,0.585480093676815,0.7911111111111111,0.726713532513181,0.5591939546599496,0.1132315521628498,0.7403846153846154,0.8984881209503239,0.8626198083067093,0.7114427860696517,0.1077844311377245,0.5198221563542053,0.716012084592145,0.6751515151515152,0.5075885328836425,0.1147011308562197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.004451474867926,0.0067291882345776,0.0087892212648349,0.011160282822117,0.0133929480781374,0.0157330179252401,0.0179772757434384,0.020149047750483,0.0220279648698998,0.0241754411146539,0.0264295468780482,0.0285934687580354,0.0305543250955466,0.0324558054096449,0.0343996856776541,0.0364542327932706,0.038395665306885,0.0403682130226752,0.0424298656213838,0.0565042009781381,0.0706976549326015,0.0839686640203305,0.0967850636563714,0.1085730579140793,0.1244770649975111,0.1353777192386132,0.1459578684908736,0.1566570420275906,0.1659078218289592,0.1774769429912086,0.1890779065987647,0.1994205802910168,0.208534180543383,0.2173237029277168,0.2273398549839549,0.2357284290364801,0.2432429384901618,0.2502728637045796,0.2560388692985378,0.2625711932628843,0.2687942597195517,0.2737948377301196,0.2785657619539871,0.2832088142451462,0.2870257113557458,0.2900659925225202,0.2931381798709743,0.2951140741125047,0.2987694463169303,0.2955728815388351,0.2933307590467784,0.2903717934229856,0.2871834295494764,0.2842238616886504,0.2812581511315689,0.2772908113934283,0.2776928765097362,0.2790900538783887,0.2789888061699963,0.2789866596815537,0.2799085047226549,0.2813009489569834,0.2813194629679025,0.2839798283979828,0.2861837849028285,0.2870265686828717,0.2921755427143526,0.2947863993025283,0.2986286254728877,0.3028274146120787,0.3080486392588303,0.3122155016524288,0.3171409264959832,0.3181608346413073,0.3192510239906378,0.3267461155528737,0.333266892565278,0.3390203632361034,0.3338485316846986,0.0,2.1207730093734902,49.85014791484785,144.6220054059415,195.42135428526063,fqhc1_80Compliance_implementation_low_initial_treat_cost,28 -100000,95611,47929,457.0917572245871,4879,49.73277133384234,3861,39.73392182907824,1407,14.328895210802104,77.28554750318864,79.7180468286947,63.27381344368565,65.07229531850956,77.10667692199493,79.54367817760084,63.205114501719216,65.00783724829674,0.1788705811937063,174.36865109385735,0.0686989419664314,64.45807021282235,251.87646,176.43349601799392,263438.7884239261,184532.63329323396,498.88451,332.3352244296736,521144.1988892492,346949.8323632724,471.44927,230.20379509704048,489034.36843041074,237556.55101941124,2488.00523,1169.433784838051,2561073.255169384,1181995.6244929612,864.89993,396.93555096793966,884933.574588698,395622.7231004333,1368.53052,589.6245200220345,1394818.671491774,584686.7273756964,0.38009,100000,0,1144893,11974.490382905731,0,0.0,0,0.0,43015,449.21609438244553,0,0.0,42631,441.84246582506194,1052840,0,37804,0,0,9891,0,0,88,0.9203961887230548,0,0.0,0,0.0,0,0.0,0.04879,0.1283643347628193,0.2883787661406026,0.01407,0.361252446183953,0.638747553816047,23.255603802120223,4.1042166893196805,0.3014763014763015,0.2877492877492877,0.2103082103082103,0.2004662004662004,11.302575458521613,6.017081085678395,15.09608638422458,11460.377237555638,44.283750531672176,13.585823965763456,13.262617333971932,9.05980200700614,8.375507224930642,0.5793835793835794,0.8001800180018002,0.6941580756013745,0.5677339901477833,0.1020671834625323,0.7582417582417582,0.9219088937093276,0.8275862068965517,0.7534246575342466,0.1225806451612903,0.5003734129947722,0.7138461538461538,0.6372549019607843,0.4991568296795953,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219700040535,0.0047368367667792,0.0069244202574828,0.008934288763531,0.0112928824319374,0.0134665729507278,0.0155971070375697,0.0179594838946949,0.0201186458013705,0.0225210462710718,0.0248356089904699,0.0271989313604603,0.0292949047864127,0.0313160363257774,0.0331653725425408,0.0355609801508083,0.0372953367875647,0.0391222166832834,0.0413435616666493,0.0432043392093459,0.0576705970898143,0.0720476195466501,0.0849708917425022,0.0977570349455851,0.1101698495859388,0.1254368685264027,0.1358950925591379,0.1464589929744885,0.1564456239098565,0.1650979886539453,0.176523268485849,0.1884689607320193,0.1993526732198513,0.2082004755486889,0.2173980154355016,0.2271612337539817,0.2350666189752302,0.2433507640986341,0.2514544793418481,0.2580744985673352,0.2638501348832363,0.2693046125029267,0.2740803943875616,0.2779157816418859,0.2832974544216198,0.2875519542186209,0.2912108543820562,0.294854494997072,0.2983335924946872,0.3004104364351418,0.2973143887408843,0.2936497032314794,0.2901400520796678,0.2872053240172655,0.2850341145060813,0.2816860465116279,0.2789745049661542,0.2804270112492211,0.28114564165474,0.2829206552935094,0.282513722415145,0.2827065599874186,0.2834578308225181,0.2849329687187354,0.2869764554181193,0.2885528488852188,0.2897466895330203,0.2930638350720318,0.2973840419657648,0.3010369790647623,0.3058178221382969,0.3119886721208307,0.3163588882671143,0.3220567322805179,0.3257575757575757,0.3258244310264747,0.326325274065175,0.3290937996820349,0.3300400534045394,0.3383596910628907,0.0,2.475102589347685,51.17726002564248,142.38905954162365,192.2637001146784,fqhc1_80Compliance_implementation_low_initial_treat_cost,29 -100000,95817,47849,454.6583591638228,4784,48.79092436623981,3811,39.2414707202271,1396,14.266779381529377,77.35864855579545,79.66341547555812,63.35358995694328,65.05421495219997,77.17984192364793,79.48481185763683,63.28709119919809,64.98927226269991,0.178806632147527,178.6036179212971,0.0664987577451867,64.94268950005733,253.76098,177.6475118914451,264838.28548169945,185402.044239568,497.10862,331.9743138267525,518235.53231681226,345896.3291679177,479.47213,235.1083703682462,496805.0137240782,242642.6957915928,2459.37584,1168.542784411598,2536195.4663577443,1189553.7243454184,887.09864,403.401304720324,914530.6991452456,409900.8961343129,1355.2418,574.7458029517061,1387521.3166765813,579386.8523613579,0.37716,100000,0,1153459,12038.103885531797,0,0.0,0,0.0,42894,447.0918521765449,0,0.0,43299,448.2503104877005,1046484,0,37627,0,0,10105,0,0,76,0.793178663493952,0,0.0,0,0.0,0,0.0,0.04784,0.1268427192703362,0.2918060200668896,0.01396,0.3569131832797427,0.6430868167202572,23.11309586763701,4.046507078568091,0.3203883495145631,0.2886381527158226,0.1920755707163474,0.1988979270532668,11.917235948166612,6.6743259470306056,14.895413132407452,11391.909651817045,44.00174641494061,13.69395687961836,13.881709349509894,8.159814696556289,8.266265489256067,0.5972185778011021,0.8281818181818181,0.6895986895986896,0.5997267759562842,0.1108179419525065,0.7797319932998324,0.9444444444444444,0.8495821727019499,0.7684210526315789,0.1320754716981132,0.5139472678639664,0.7361563517915309,0.622969837587007,0.540590405904059,0.1051752921535893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0046592186692866,0.0070156229406814,0.0095994804509523,0.0121411009286164,0.0144550124612176,0.0167563052601556,0.0187997919068068,0.0212083444006293,0.0234251928230937,0.0257702392658144,0.0277965823537858,0.0299070221400318,0.0320442898598448,0.0339931951747602,0.0360650658404337,0.0381380045318627,0.0402939895921879,0.0420860208352808,0.0438154525202473,0.0587725978239325,0.0715779129816638,0.0842625974679299,0.0967687700309987,0.1090493351035805,0.1255256651380993,0.1367924528301886,0.1478105489315989,0.1576424621559878,0.1661967603263258,0.1780785048338824,0.189176618206992,0.1989495775474919,0.2086122413265083,0.2169361674023358,0.2257485428071186,0.2338913067737975,0.2414964456042472,0.2492285001134558,0.2555752820571559,0.2612719973157779,0.2660714703610962,0.2711025895942811,0.2748963401481197,0.2790508359253499,0.284151254913074,0.2882627229882615,0.2915046631597672,0.2948595229471723,0.2977842803854113,0.295478373074545,0.2925854730193601,0.2890031323304257,0.2858727277965027,0.2834036880693179,0.2794490038746682,0.2761417795032036,0.2758349705304518,0.2760906612133606,0.277027027027027,0.2777487008860144,0.2783151756338777,0.278634015767791,0.2787684498764443,0.2799837246595342,0.2812524360140314,0.2817025384746436,0.2875599736586283,0.2916681234921855,0.2949113643558088,0.2978300180831826,0.3035761449474407,0.3071580528094106,0.310355299119344,0.3134481154025128,0.316907986921999,0.3191811978771797,0.3235412474849095,0.3262372131600774,0.3274922118380062,0.0,1.9895914441953797,52.04749656067645,141.8961308335136,187.36601863408004,fqhc1_80Compliance_implementation_low_initial_treat_cost,30 -100000,95869,48313,460.638996964608,4803,49.08781775130647,3788,39.011567868654105,1415,14.467658993000866,77.41454581429173,79.70267503767516,63.37712166936033,65.0677832444178,77.23154135666218,79.52030795178989,63.30741854288021,64.9998260212057,0.1830044576295506,182.36708588527503,0.069703126480114,67.95722321209041,252.56088,176.9344270792997,263443.2819785332,184558.08830727308,501.25509,334.8173256957774,522353.48235613183,348744.1918615792,479.49232,234.04536269487892,496408.8600068844,241348.96859141736,2461.68956,1156.0905507444406,2537262.2224076604,1175435.5318658175,848.25527,385.9537026452101,871410.9566178848,389325.8450039711,1378.29814,592.2961658143223,1410439.8084886668,596572.0685240697,0.37932,100000,0,1148004,11974.694635387874,0,0.0,0,0.0,43112,449.1650064150038,0,0.0,43152,446.4008177825992,1052291,0,37750,0,0,9955,0,0,93,0.9700737464665324,0,0.0,2,0.0208618009992802,0,0.0,0.04803,0.1266213223663397,0.2946075369560691,0.01415,0.3557288542291542,0.6442711457708459,22.83440071508438,4.071714324112605,0.3133579725448785,0.2777191129883843,0.2030095036958817,0.2059134107708553,11.02474353989829,5.858957738610028,15.143542790808006,11346.044039558015,43.42375193094547,13.012460808228049,13.378700830505764,8.561304715589847,8.471285576621819,0.5842133051742344,0.8060836501901141,0.7135636057287279,0.5708712613784135,0.1012820512820512,0.7394807520143241,0.914351851851852,0.853125,0.6868686868686869,0.1317365269461078,0.5192811681018346,0.7306451612903225,0.6620530565167243,0.5306479859894921,0.0929853181076672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027332084830692,0.0047819259409351,0.0066824178387093,0.0087608876616652,0.0112613070433987,0.0133395740697402,0.0155460472697636,0.0176465788077848,0.0198271635204707,0.0221033466983061,0.0241534017577284,0.0262391268668964,0.028338916175171,0.0305500658761528,0.0327549410782221,0.0345896034951095,0.0364795100199675,0.0384778801413515,0.0405979135309077,0.0424788333922739,0.0576159147543034,0.0713024213353397,0.0843800085898953,0.0972459918314206,0.1097422289613343,0.1254646840148698,0.1366664901223452,0.1468703166353114,0.1565903877953806,0.1660669536721711,0.1778165036950979,0.1884101843342883,0.1990568702870678,0.2081644248735235,0.2168485367971076,0.2262176097010466,0.2342579379236532,0.2417357693431313,0.2482054771219595,0.2551167582417582,0.2606850455617743,0.2661148909307708,0.2715566171601551,0.2757893728139524,0.2797473735349486,0.2839455983442974,0.2871848108865319,0.2905378777284804,0.2932979343391828,0.2971264974404982,0.2938802958977807,0.2903925932031099,0.2873589069594186,0.283774629210568,0.2805114756041546,0.276995161856504,0.2739292130227867,0.2735768903993203,0.2747445205828842,0.2760480422942502,0.2765917846972771,0.2781793894629317,0.2801388946646151,0.2812707843745843,0.2832128629022639,0.2842385268975491,0.2861816130851664,0.2920881166614955,0.2964274554733881,0.2997093251630136,0.3015325327119555,0.3054758051887039,0.3093405578474232,0.3128246994211073,0.3162055335968379,0.3217108321710832,0.3237723381889172,0.3185805422647528,0.32015065913371,0.3270159791898922,0.0,1.891820958109218,48.71282432552308,144.61132889720002,190.62484624096967,fqhc1_80Compliance_implementation_low_initial_treat_cost,31 -100000,95717,48349,462.19584817743976,4769,48.67473907456356,3788,39.0735188106606,1433,14.60555596184586,77.36002699221102,79.73182817485483,63.33690834044432,65.0885159316193,77.17554993658666,79.55088236558119,63.26623515650662,65.02165404042057,0.184477055624356,180.9458092736378,0.070673183937707,66.86189119872665,252.85348,177.15594174476658,264167.7862866576,185083.0487215088,502.20699,334.6900442846448,524187.8663142388,349175.1248834008,475.67679,231.48475326495443,494284.0874661764,239770.81581005952,2452.04611,1160.251531951699,2529774.4078899254,1180176.553748757,846.56713,389.6975320134332,874314.4791416363,397001.5692232653,1394.32054,603.2865495273891,1422587.4191627402,600276.6482303371,0.38251,100000,0,1149334,12007.626649393524,0,0.0,0,0.0,43194,450.73497915730746,0,0.0,43075,447.3082106626827,1050378,0,37681,0,0,9947,0,0,77,0.8044547990430122,0,0.0,0,0.0,0,0.0,0.04769,0.1246764790462994,0.3004822814007129,0.01433,0.3674698795180723,0.6325301204819277,23.017875858518945,3.983044511194181,0.2967265047518479,0.2917106652587117,0.2059134107708553,0.205649419218585,11.0256962092967,5.933445045455478,15.434040639963664,11438.971055258258,43.6466825202561,13.624514048743343,12.784479662253018,8.710862416622028,8.526826392637705,0.5857972544878564,0.8180995475113122,0.7090747330960854,0.5717948717948718,0.0924261874197689,0.7370653095843935,0.9240780911062908,0.8535825545171339,0.7107843137254902,0.1243523316062176,0.5174396320429283,0.7422360248447205,0.651307596513076,0.5225694444444444,0.0819112627986348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019851920875915,0.0041662865310342,0.0063424088976385,0.0086653528109063,0.0109036169087432,0.0130035436438434,0.0152803261977573,0.0173610402335218,0.0194019933554817,0.0214480230962959,0.0234475122261295,0.0255228278389782,0.0275806750169679,0.0298604315805737,0.0318413504199426,0.0339333533225116,0.0360628224519818,0.0382076352992464,0.0401289785729144,0.0420878227705645,0.0566353012438252,0.0713283932010382,0.0848606288226099,0.0977133601194858,0.11013527048826,0.1260162171876817,0.1372942124915139,0.1478647667897543,0.1577991840919285,0.1676892054230307,0.1797979145122371,0.1913592936823085,0.2017975720822057,0.2112702229995627,0.2197686183081863,0.2283243075628204,0.2365421081985499,0.2446568103884423,0.2515814533499603,0.2584799606195551,0.2631512012393923,0.2687934560327198,0.2746136656537829,0.2788145027111787,0.2831097894034108,0.2869646572205876,0.2911773901081723,0.2941751889728768,0.2971344333522991,0.2989166249308063,0.2955823401221448,0.2933071136841815,0.2901808348825418,0.2869874192942672,0.2839376085246582,0.2800158943636141,0.2763006327615862,0.2767963655973722,0.2783361393126201,0.2795475530932594,0.2799053316188666,0.2805666345757117,0.2818531214293134,0.2826111049540064,0.2846722288438617,0.285127277426024,0.2859808855963354,0.2913373527849802,0.2960186863756798,0.299126723831351,0.3053767340647384,0.3097223688377494,0.3133594673635741,0.3143868102085372,0.3181439288691303,0.3209025017535656,0.3256970610399397,0.3314651721377101,0.3388722418959412,0.3339687380861609,0.0,1.9043391262742304,51.71603510709777,136.03556801976816,192.43774829024989,fqhc1_80Compliance_implementation_low_initial_treat_cost,32 -100000,95757,47785,455.716031203985,4745,48.45598755182389,3814,39.28694507973307,1440,14.63078417243648,77.33346816806463,79.69487535663522,63.32120940122799,65.06992685515657,77.14843595472198,79.51405653449442,63.250395671842426,65.00310508184141,0.1850322133426516,180.81882214080736,0.0708137293855628,66.82177331515504,253.59422,177.61154944518864,264830.76955209544,185481.3211119068,502.2029,335.0479836336364,523905.7719017931,349346.27198549546,475.37733,231.84949404649996,493498.3552116294,239855.8405892324,2453.61652,1161.4127377829116,2526160.990841401,1176872.4795469802,855.8343,394.55056844990514,880629.3325814301,399140.54365983285,1399.71182,602.6316280462693,1423756.1327109244,597638.0051657477,0.37727,100000,0,1152701,12037.762252367973,0,0.0,0,0.0,43250,451.08973756487774,0,0.0,42912,445.1580563300855,1045589,0,37532,0,0,9920,0,0,104,1.0860824796098456,0,0.0,0,0.0,0,0.0,0.04745,0.1257719935324833,0.303477344573235,0.0144,0.3665176757415684,0.6334823242584315,22.929883623906385,3.990278735834717,0.313581541688516,0.2920818038804404,0.1906135291033036,0.2037231253277399,11.335683688778916,6.178036488549416,15.437902027226624,11346.501800840691,43.8854360196671,13.84767635727666,13.5851501082336,8.049537652542217,8.403071901614624,0.5862611431567908,0.8123877917414721,0.7031772575250836,0.562585969738652,0.1042471042471042,0.7674223341729639,0.9065606361829026,0.8831908831908832,0.75,0.1301775147928994,0.5040030499428135,0.734860883797054,0.6284023668639053,0.5062611806797853,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025026597092051,0.0048878432645114,0.0070945740210705,0.0091548294011258,0.0110758528101543,0.0132778054964412,0.0153835175141703,0.0174521850952215,0.0196946159192183,0.0216394382344511,0.0238153820918168,0.0259845591556814,0.0280023035313959,0.0304634397528321,0.0324374516378643,0.0344913125717061,0.0366961077689304,0.0387448897005416,0.0407838652666597,0.0424417272481096,0.0572448564181254,0.0711258097939277,0.0843520141023892,0.0966398485565546,0.108673872923807,0.1227120364593797,0.1341616093027203,0.1448687655661281,0.1557119665057461,0.1650454199332911,0.1768888505833809,0.1885820637119113,0.1988209958452067,0.2079108281648235,0.2167929862386834,0.2262604786108988,0.2344292492324867,0.2414922349763673,0.2487686965205746,0.2548774902679185,0.2614014801110083,0.2663727886065736,0.2723918108597178,0.2768976542012429,0.2806689871805756,0.2852416676915508,0.2887531539633765,0.2921682157549901,0.2951919348584723,0.2973314884364499,0.2939514990114191,0.2912450747539093,0.2877642230717337,0.2852773569934357,0.2817010041679645,0.278626830051861,0.274885411727517,0.2748824483510002,0.274882809170715,0.2755169281732533,0.2761556269135987,0.2771698484550285,0.2782753593001458,0.2796719416785206,0.281824924041245,0.283525501194557,0.2853104949263687,0.2904505968376976,0.296018162766329,0.3007595733795112,0.3041988003427592,0.3083285044513512,0.3108082765518534,0.3139183055975794,0.3172690763052209,0.3214454976303317,0.3262389784128914,0.3358224016145307,0.3351724137931035,0.3375382262996942,0.0,2.0176841489401065,51.91146215318671,139.03228052871765,190.21261426215924,fqhc1_80Compliance_implementation_low_initial_treat_cost,33 -100000,95798,48011,458.0784567527506,4875,49.6565690306687,3894,40.063466878222926,1435,14.666276957765298,77.34149214859087,79.67983619809539,63.33904717832892,65.07199043085961,77.16023356031754,79.49904677425747,63.27163247611937,65.00614173695173,0.1812585882733373,180.789423837922,0.0674147022095468,65.84869390788128,253.28006,177.43729402629572,264389.48621056805,185220.01923453063,500.27865,333.5018260465234,521648.6669867847,347556.6345316,475.67622,232.5468690837193,491740.0885195933,239138.848430158,2506.23369,1177.6200003531071,2583670.598551118,1196790.4400022577,875.82626,395.054447251395,900853.4833712603,399018.53601652686,1387.28742,587.2117794114797,1420840.539468465,592093.8425841519,0.38004,100000,0,1151273,12017.703918662184,0,0.0,0,0.0,43072,449.0177247959248,0,0.0,42990,443.9654272531786,1052078,0,37702,0,0,9930,0,0,92,0.9603540783732436,0,0.0,0,0.0,0,0.0,0.04875,0.1282759709504262,0.2943589743589743,0.01435,0.3546420141620771,0.6453579858379229,22.90823128256921,4.0282583465553845,0.3068823831535696,0.288135593220339,0.2067282999486389,0.1982537236774525,11.88989443299792,6.800645184841014,15.265618866495508,11443.199873916685,44.82199592455468,13.907541493577092,13.641698857425752,8.979763705280165,8.29299186827166,0.5955315870570108,0.803921568627451,0.7238493723849372,0.577639751552795,0.1126943005181347,0.7696817420435511,0.9177215189873418,0.8845070422535212,0.7602040816326531,0.1242603550295858,0.5185185185185185,0.720679012345679,0.655952380952381,0.5188834154351396,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.0045720426183307,0.0069004008321071,0.009063935292444,0.0112326397720913,0.0135274164468121,0.0155128100522193,0.0176556484800212,0.0199912059145337,0.02230209197309,0.0245465451301664,0.0265141401901788,0.0285429223838225,0.0305852296725145,0.0326464913276308,0.0347910572719097,0.0366750191555012,0.0385054251986473,0.0404509559434746,0.0421802131912058,0.056452790818988,0.0709364447093017,0.0836904699533714,0.0970484086204541,0.1089064047714388,0.1248797810164977,0.1359006158510085,0.1464618002020309,0.1574319132587723,0.1664130318293859,0.1780198254243308,0.1887918360287122,0.1995111352525801,0.2092075356237433,0.2177550571679859,0.226854106707992,0.2355314335387667,0.2436625726923681,0.2503283514492753,0.257611776538356,0.263488949160367,0.2694960150296976,0.2751742057399315,0.2787671478633194,0.2836416086882742,0.2870966948652371,0.2918221878237856,0.29544445431134,0.299072054515184,0.3008753022815687,0.2972922176428734,0.2944379672176119,0.2913060582218725,0.2887453874538745,0.285688873076581,0.2819604549965646,0.2782005936967094,0.2777195453503226,0.2788005864102826,0.2792276038976076,0.2806364758236416,0.2811415272956769,0.2823642519750867,0.2832095295456066,0.2852822580645161,0.2868364241683356,0.2877153942713683,0.2923392181588903,0.2985442014206343,0.3020118249275822,0.3060319202451182,0.3046396420390987,0.30818365798128,0.3145377828922133,0.3183322303110523,0.3179115128449096,0.3255562422744129,0.3261091801267634,0.3302879291251384,0.3318095238095238,0.0,2.226699048476596,51.85899996205727,144.42044538484976,195.2433191748942,fqhc1_80Compliance_implementation_low_initial_treat_cost,34 -100000,95713,48460,461.0136554073115,4913,50.149927387084304,3902,40.29755623583004,1466,15.003186609969388,77.3419109081298,79.71109189399954,63.33255108723839,65.08110688352758,77.15226421089729,79.52270851499496,63.26007754315364,65.01109927111776,0.1896466972325186,188.38337900457705,0.072473544084751,70.00761240982456,252.48806,176.8511430248215,263797.03906470386,184772.3329378679,499.45134,333.2442880515414,521367.95419639966,347716.46281230496,477.20864,233.0934301323385,495810.01535841526,241373.79840395332,2520.78742,1190.1037880687156,2604591.2467480907,1214306.090153601,882.72739,402.0687793048185,910423.3489703592,408235.965129939,1423.79866,616.0451939156953,1458350.652471451,618664.562437381,0.38315,100000,0,1147673,11990.774502941083,0,0.0,0,0.0,42989,448.664235788242,0,0.0,43186,448.3507987420727,1052500,0,37773,0,0,10016,0,0,81,0.8462800246570477,0,0.0,1,0.0104479015389758,0,0.0,0.04913,0.1282265431293227,0.2983920211683289,0.01466,0.3603056426332288,0.6396943573667712,23.195727916308964,4.05310654286904,0.3077908764736032,0.2906201947719118,0.199128651973347,0.2024602767811378,11.170974733987697,5.981944299747295,15.780578941725937,11544.14587055281,44.97338284059701,13.961060103243604,13.72892330260256,8.663943712412479,8.619455722338362,0.579446437724244,0.7901234567901234,0.7035803497085762,0.5405405405405406,0.1265822784810126,0.7338308457711443,0.9129511677282378,0.8739255014326648,0.628140703517588,0.1336898395721925,0.5103857566765578,0.702865761689291,0.6338028169014085,0.5103806228373703,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0044998479781088,0.0067052140393588,0.0092630210449337,0.0114694757392117,0.0136637615052537,0.0163715506080716,0.0185453580468686,0.0210139002452984,0.0230692076228686,0.0254333719464064,0.027775495954327,0.0300484353629567,0.0321234662023634,0.0344037643950963,0.0364286674178442,0.0384631317315658,0.0404840232879129,0.042309172012935,0.044456949915588,0.0591970589464009,0.0740155337366801,0.0871586104145463,0.0996045269047919,0.1120545980042615,0.1276940168227265,0.1385770969042415,0.1494666467945578,0.1588607324473313,0.1682329213868863,0.1803289282367766,0.1918943780098479,0.2023909236275032,0.210871633369419,0.2195411653432461,0.2296043746817507,0.237282276589576,0.2453521570037992,0.2521435376309939,0.2584162947705687,0.2643504007587235,0.2709766484159296,0.2761868698821413,0.2809014340997041,0.2846696709463481,0.2884774220589504,0.29184721352536,0.2945688120071228,0.297710713962186,0.3006230324424715,0.2985205110961668,0.2951755951563744,0.29212299915754,0.2890367362221166,0.2870489643021069,0.2833668985719517,0.2790327411447578,0.2794786249304942,0.2794783615376758,0.2796148643838542,0.2794024276377218,0.2805853158972743,0.2817145844223732,0.2822033898305084,0.2835441824803527,0.2850136239782016,0.2874858115777525,0.2925768291919634,0.298260352129931,0.301672214297036,0.3064296726217466,0.3105783986876224,0.3161488348784765,0.3174675472557504,0.3215759849906191,0.3279404818138876,0.326999087868653,0.3338062423996757,0.3331497797356828,0.3359848484848485,0.0,1.8629002755662876,52.95868535607896,144.38679829848357,194.28892128902896,fqhc1_80Compliance_implementation_low_initial_treat_cost,35 -100000,95715,47801,456.3548033223632,4821,49.229483362064464,3849,39.7011962597294,1443,14.793919448362326,77.33810060160408,79.7229677615021,63.31256206328344,65.07585148809056,77.15044633169718,79.53521280905298,63.24300826090006,65.00798188685542,0.1876542699069006,187.75495244912577,0.0695538023833748,67.86960123514518,253.24508,177.31310326355432,264582.43744449667,185251.11347600096,497.58366,331.7023573731866,519361.6047641435,346054.0744639675,471.54581,230.17507509372055,489331.5676748681,237882.6266523509,2475.32166,1169.804126022614,2555417.416287938,1191528.6803576823,879.50232,400.36974840153687,905135.3392885128,404592.827036012,1399.5614,596.1922339781994,1435791.6523011022,600748.7567942622,0.37899,100000,0,1151114,12026.474429295304,0,0.0,0,0.0,42935,448.059342840725,0,0.0,42659,442.334012432743,1050187,0,37667,0,0,9945,0,0,73,0.7626808755158543,0,0.0,1,0.0104476832262445,0,0.0,0.04821,0.1272065225995408,0.2993154947106409,0.01443,0.3683373110580747,0.6316626889419252,22.791849537938845,3.961826175519479,0.3177448687970901,0.2834502468173551,0.2039490776825149,0.1948558067030397,11.32818671378501,6.211618183349219,15.4927157290457,11329.14457073541,44.39985402403681,13.593143884193733,13.95570175350549,8.673987103806324,8.17702128253127,0.5944401143154066,0.8010999083409716,0.7146361406377759,0.5707006369426751,0.1226666666666666,0.7660626029654036,0.9154929577464788,0.8784530386740331,0.7297297297297297,0.1294117647058823,0.5153700189753321,0.7053872053872053,0.645760743321719,0.5216666666666666,0.1206896551724138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022906488820417,0.004514100223169,0.006954738359697,0.0087302071264508,0.0109481995502691,0.0131290805569419,0.0152275462537992,0.0176391882092189,0.0196758193997034,0.0216454205703169,0.023667182805402,0.0256605091028576,0.0276789570009665,0.0296892056103639,0.0316391058109906,0.0337918134939908,0.0358751358906662,0.0380433654943458,0.0400968895542248,0.042228726784096,0.0568701572648858,0.0703735881841876,0.0837818838070655,0.0969553557343429,0.1088228781120496,0.1246205430333287,0.1352148541114058,0.145341099055549,0.1549747283160403,0.1641403576524099,0.1763032869008758,0.1879715525919832,0.1983087923210029,0.2069029646646975,0.2161058908962876,0.2254429411960243,0.2338807819844362,0.2414002633089153,0.2487824260657319,0.2555376029885294,0.2621908863573214,0.2682569967108728,0.2743148049487953,0.278755706805028,0.2822350440327968,0.2855010608378152,0.2885089861606863,0.2925363250856393,0.2951679312220007,0.2982039718332147,0.2945685354275648,0.2911896876331304,0.2879623119111236,0.2845669132384537,0.2819950183845333,0.2778465630302196,0.2736930167950498,0.2745489342908085,0.2751685852462366,0.2754131018658508,0.2755446856972163,0.2760459715826347,0.276499812132092,0.2782942107492365,0.2801494002442119,0.2809157149501318,0.2821562702962189,0.2855227464064108,0.2897598943674206,0.2945630001569119,0.2986104885701479,0.3006839659583355,0.3043129016312407,0.3082140727489564,0.3146769598382501,0.3152148664343786,0.316746126340882,0.3153437069135316,0.3189102564102564,0.3221476510067114,0.0,2.0122451431740624,53.10854310886369,141.4794570111616,188.80210739536085,fqhc1_80Compliance_implementation_low_initial_treat_cost,36 -100000,95654,47844,457.0012754301964,4713,48.10044535513413,3783,39.00516444686056,1417,14.458360340393504,77.27782633283482,79.68824220765856,63.2892740309558,65.07213706434351,77.09215373875209,79.50688405113559,63.21724164320467,65.00442258794061,0.1856725940827317,181.35815652297535,0.0720323877511219,67.71447640289807,253.19536,177.27329196791302,264699.1866518912,185327.63080259372,499.70567,333.55193921409887,521888.8598490392,348186.00290013885,471.30075,230.148040538867,489466.9224496623,238060.9163025982,2444.44346,1159.0546833404387,2520624.772617977,1176834.8875535135,853.98976,385.9483489004601,880611.2342400736,391310.3952874529,1372.40682,599.7470008616496,1401189.0145733582,597338.609638221,0.37934,100000,0,1150888,12031.7812114496,0,0.0,0,0.0,42959,448.5437096200891,0,0.0,42607,442.166558638426,1048198,0,37662,0,0,9956,0,0,100,1.0454345871578816,0,0.0,0,0.0,0,0.0,0.04713,0.1242421047081773,0.3006577551453426,0.01417,0.3552281563331287,0.6447718436668712,23.194861289591344,3.979728674776613,0.3143008194554586,0.2831086439333862,0.2061855670103092,0.1964049696008458,11.25437046986008,6.255647003490386,15.408659437952878,11386.351816228484,43.63534128796942,13.282183677035588,13.518901431788027,8.613709991502523,8.220546187643292,0.5952947396246365,0.800186741363212,0.7064760302775441,0.6012820512820513,0.1157469717362045,0.7461273666092944,0.9088937093275488,0.8783382789317508,0.7258064516129032,0.095505617977528,0.528424265547501,0.7180327868852459,0.6384976525821596,0.5622895622895623,0.1221238938053097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022292929088219,0.0045533830926496,0.0069640427994233,0.0091974348811447,0.0113535785136578,0.013763103472866,0.0159000509943906,0.0180885942782436,0.0202328102943884,0.0222493111113387,0.0241948717948717,0.0262446971331135,0.0282253915334115,0.0301268771322263,0.032202444866606,0.0342473546478552,0.0362701817654251,0.0382027372224875,0.0402418465252773,0.0422714381047714,0.05717241595519,0.0713432898347332,0.0847503883780493,0.0980404537896487,0.1103794689966654,0.1256893649903145,0.1368371865807164,0.1469804807364473,0.1569996898296202,0.1659508675485311,0.1780903114559758,0.1888663901852714,0.2003983803552769,0.2096474141515834,0.2178211281870624,0.2264209488137058,0.2345749313324847,0.2424607282711437,0.2495233339386235,0.2562473528166031,0.2615567837569086,0.2673266169561253,0.2724961269646045,0.2767374713965664,0.280165660638595,0.2834545678707927,0.2879671581266114,0.2913295680048847,0.2948201494760566,0.2981560620449509,0.294909272156588,0.2919961427193828,0.2893307947253367,0.2859869848156182,0.2839208686598244,0.2803567870771966,0.2767973131396343,0.2762122282653346,0.2768436880595994,0.2774129069103369,0.2784575662325999,0.2780365531125409,0.2787645755840682,0.2794834687743515,0.2819696461914109,0.2827788142620232,0.285142954390742,0.2919398864242462,0.2968036529680365,0.3009358394797367,0.3069311424810494,0.3129682388941648,0.3145660188714616,0.3138846737481032,0.3164237668161435,0.3214032600992204,0.3243243243243243,0.3288508557457212,0.3301965125934126,0.3358691517687333,0.0,2.132920132182458,50.59440691603493,141.51529572592275,188.4627409698901,fqhc1_80Compliance_implementation_low_initial_treat_cost,37 -100000,95830,47966,456.4958781174997,4827,49.41041427527914,3848,39.695293749347805,1492,15.318793697172076,77.39792083527668,79.70137346653962,63.37134666233783,65.07152063469461,77.21306121870163,79.5165318055455,63.30291982481761,65.0045710564087,0.1848596165750535,184.8416609941239,0.0684268375202208,66.94957828591441,251.80738,176.36530037700825,262764.66659709904,184039.75829803635,501.11328,334.14082358606464,522402.306167171,348165.49127679045,478.95299,233.26150261609072,496495.919858082,240890.47106004783,2494.98073,1161.8936999895825,2576603.1409788164,1185654.9601923053,880.90783,396.4278232433245,905907.2628613168,400469.6846916569,1452.2104,606.1226973688769,1492878.4096838152,613674.7847273168,0.37995,100000,0,1144579,11943.84848168632,0,0.0,0,0.0,43129,449.5878117499739,0,0.0,43302,448.55473233851615,1057694,0,37893,0,0,9716,0,0,86,0.88698737347386,0,0.0,1,0.0104351455702807,0,0.0,0.04827,0.1270430319778918,0.3090946757820592,0.01492,0.3580907110318875,0.6419092889681125,23.371702716133388,4.007595771557624,0.304054054054054,0.284043659043659,0.2032224532224532,0.2086798336798336,11.222525546993827,6.089696196443034,15.793767402973064,11413.926233854629,44.20316413875025,13.444900314406292,13.383512244974694,8.68099359244009,8.693757986929171,0.5922557172557172,0.8124428179322964,0.711965811965812,0.59846547314578,0.112079701120797,0.7742759795570698,0.919661733615222,0.8760806916426513,0.7688172043010753,0.1607142857142857,0.512341062079282,0.7306451612903225,0.6427703523693803,0.5453020134228188,0.0992125984251968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022778812667044,0.0045496458571877,0.0071098940108524,0.0093112516881086,0.0114366460637605,0.013504711892695,0.0159666605530761,0.0179750063759245,0.0201074851339477,0.0221092263305436,0.0242915394545417,0.0264272890484739,0.0287460831150151,0.0309023740185434,0.0331261659606485,0.035010737589824,0.0372316764082139,0.0391559397218249,0.0412543481646851,0.0432515688580378,0.0584437258787942,0.0726738409730283,0.0860908404630095,0.0983894367233657,0.1102807875542813,0.1259553685634851,0.1371555206820134,0.1479415896802758,0.1577041404948083,0.1667238679508355,0.1788187153394712,0.1906863063179979,0.2010326086956521,0.2097548178350076,0.218512247680197,0.2278241427401323,0.2354298582003032,0.244152720488238,0.2513345346979021,0.2579711802378774,0.2628550299276652,0.2679978980557015,0.2734760925571391,0.2770728440388916,0.281263249706235,0.2860443679714865,0.2897067997504678,0.2932425234000456,0.2955525710891293,0.2988325927484027,0.2960391394678641,0.2924640738660493,0.2900370349587565,0.2863492520138089,0.2837072420473535,0.2791363401041508,0.275429596525461,0.2748278450442218,0.2755861365953109,0.2755134674152512,0.2761620866325104,0.2774043941359116,0.2766156923205133,0.276571097596293,0.2781441074211725,0.2793873312564901,0.2791551621075403,0.2844884488448845,0.2907062156773584,0.293327539209102,0.2977862630119551,0.3006213159152461,0.3047283258830195,0.3102897558749715,0.3150517403574788,0.3201702530148971,0.3228610645112094,0.3200962695547533,0.31591770438549,0.318660647103085,0.0,1.7771684299042263,51.43753081008413,140.7625881908246,195.5836322490528,fqhc1_80Compliance_implementation_low_initial_treat_cost,38 -100000,95554,48294,462.1470582079243,4865,49.793833853109234,3893,40.16577014044415,1383,14.023484103229586,77.19945181010942,79.66757553464961,63.224607941291474,65.05249366412164,77.02444655079906,79.49775646575982,63.15884425682128,64.99110287608512,0.1750052593103674,169.8190688897938,0.0657636844701912,61.39078803651898,251.97106,176.641152868648,263694.9368943215,184860.02979325617,503.74694,335.3658286900834,526603.3133097516,350399.330329082,477.34983,232.84653293996067,495936.7059463759,240937.63636041983,2495.38751,1173.3061994773375,2574458.588860749,1191615.3792319074,866.41731,398.6376055387974,886341.2520668941,397010.1640582551,1348.00892,574.5882980334133,1368846.5370366494,568635.7871663225,0.3824,100000,0,1145323,11986.133495196433,0,0.0,0,0.0,43404,453.6283148795445,0,0.0,43301,449.4631307951525,1044645,0,37486,0,0,9874,0,0,72,0.7535006383824853,0,0.0,0,0.0,0,0.0,0.04865,0.1272228033472803,0.2842754367934224,0.01383,0.3588526211671612,0.6411473788328388,22.849932295750627,3.928034182878271,0.3113280246596455,0.2928332905214487,0.2003596198304649,0.1954790649884407,11.32972484998507,6.224576810710289,14.907823196472442,11509.445097905638,44.94668377138966,14.117087335116596,13.914651479181702,8.579925574284115,8.335019382807248,0.5918314924222964,0.8157894736842105,0.693069306930693,0.5794871794871795,0.1077529566360052,0.761344537815126,0.9153225806451613,0.8425655976676385,0.7258064516129032,0.1696969696969697,0.5172031076581576,0.7391304347826086,0.6340621403912543,0.5336700336700336,0.0906040268456375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023922717458515,0.0047482802702867,0.0069562921439597,0.0091609728322759,0.0114936677932972,0.0137413606801361,0.0157371026177476,0.0177396280400572,0.0198117069177241,0.0220436774305946,0.0238564506857189,0.0259737588944186,0.0279193829105776,0.0300695261083947,0.0320457175925925,0.0342932262338522,0.0361728164602907,0.0382245040064019,0.0402787325792138,0.0424674551889008,0.057132098365114,0.0712188574783994,0.0849205348133198,0.0979390133395149,0.1105521264902342,0.126465661641541,0.1380201684962982,0.1488725976672962,0.1587342395903632,0.1680896363362653,0.1803142378921224,0.1916248887731406,0.2027248134735372,0.2131701324910064,0.2209507625080002,0.2299781205921878,0.2381160149913296,0.2471318179254329,0.2546240473211238,0.2606224814300311,0.2662717778112647,0.2715914817809969,0.2766620827010622,0.280982213581047,0.2842922507788162,0.2879193884985367,0.2922538304199972,0.2947737412364563,0.297723292469352,0.3010202733063727,0.2974237928243863,0.2942375495813134,0.2908230122162573,0.2880515688910087,0.2862666369246784,0.2829078427166018,0.2786062563323201,0.2789857452538921,0.279127416955875,0.2792903848215243,0.2798132453311333,0.2810289643181728,0.2819270538392164,0.2833139690767718,0.2849762099293507,0.2854798374492028,0.2860153202152803,0.29035593432761,0.2965063362038787,0.3013002364066194,0.3047760388559093,0.3097846024841465,0.313833746898263,0.3200210589651023,0.3240920432492375,0.3289627721845001,0.3306850547144356,0.3350393700787402,0.3426498253157753,0.3344620015048909,0.0,2.1498983419969653,51.97967204838941,148.80165647795582,190.6792473630651,fqhc1_80Compliance_implementation_low_initial_treat_cost,39 -100000,95680,48173,460.200668896321,4820,49.24749163879599,3854,39.68436454849498,1458,14.820234113712374,77.33990302576841,79.72926776530255,63.32261558699434,65.0884710132435,77.15031080007701,79.54493832896658,63.25049293092558,65.02105265913309,0.1895922256913991,184.32943633597176,0.0721226560687569,67.41835411041563,252.10306,176.60842426536945,263485.639632107,184582.3832204948,500.67005,334.8468060751927,522666.4297658863,349356.18318895565,476.54077,232.60865841969564,494052.4456521739,240091.9123431704,2487.55905,1170.095948648098,2562040.66680602,1185093.4454934131,882.24419,400.1209106803286,909308.162625418,405417.7946078111,1410.0005,605.5484997244358,1435103.1145484948,599974.4965267325,0.38159,100000,0,1145923,11976.619983277593,0,0.0,0,0.0,43158,450.4494147157191,0,0.0,43202,447.5752508361204,1050869,0,37690,0,0,9879,0,0,72,0.7525083612040133,0,0.0,0,0.0,0,0.0,0.0482,0.1263135826410545,0.3024896265560166,0.01458,0.358392999204455,0.641607000795545,23.03521349141545,4.06741205298924,0.3124026984950701,0.2828230409963674,0.2036844836533471,0.2010897768552153,11.462428899683644,6.311871467271527,15.645903832376364,11400.835683100831,44.32443696909165,13.447714942121149,13.71544871190702,8.735233446311797,8.42603986875168,0.5913336792942397,0.8045871559633028,0.7151162790697675,0.5910828025477707,0.0993548387096774,0.7646048109965635,0.9279835390946504,0.8787878787878788,0.7081081081081081,0.1104294478527607,0.5163568773234201,0.7052980132450332,0.6533180778032036,0.555,0.0964052287581699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0048147585018498,0.0070623332081866,0.0092938690935684,0.0115412383189449,0.0135792666788819,0.0156460227504382,0.0177798644566016,0.0196781975793261,0.021709980859187,0.0237226277372262,0.0257552583224693,0.0277952019085421,0.0298198448750038,0.0321501924883113,0.0343893461268042,0.036344422457289,0.0383230052211461,0.0403216578068596,0.0423859561337669,0.0569333305476046,0.0709417368999633,0.0846387090682082,0.0977108230937552,0.1098592737937,0.1254998624717009,0.1362126950783496,0.1470052901042054,0.1564736291201162,0.1665344284090665,0.1782683609735085,0.1892792607580692,0.1997585670628922,0.2086877610373707,0.2165898110341943,0.2257503599512681,0.234551924943384,0.2424828734377988,0.2505302798289493,0.2577553334020406,0.2634573354764851,0.2689646305257498,0.2734282605610483,0.2773041833289433,0.2816932166992223,0.2856492195578315,0.2892891516568128,0.2920526014865637,0.2952866439818349,0.298389010467477,0.2957935942103068,0.2935526424272405,0.2905821773263176,0.2882613654409748,0.2857927308885294,0.2822169278230856,0.2785677087442991,0.2784105786855197,0.2785098532637342,0.2784072745355734,0.279694343490821,0.2807062385717937,0.2812786339025406,0.2823380036976811,0.2830166071556951,0.2837637897469175,0.2849724760229272,0.2884127431632365,0.2910406038157803,0.2949761989063299,0.2980057751308428,0.3009586010744759,0.3037864138232175,0.3058300022626141,0.3108346485934453,0.3145606007274434,0.3222424794895168,0.3266626238124115,0.3277148383531362,0.3375382262996942,0.0,2.3288945147351656,50.3418410965965,147.7299449897633,189.7451670561016,fqhc1_80Compliance_implementation_low_initial_treat_cost,40 -100000,95784,48248,461.1730560427629,4885,49.75778835713689,3939,40.53912970851081,1460,14.87722375344525,77.331780499572,79.67206001972984,63.32970022966426,65.06266863937466,77.13755929079312,79.48179590036757,63.25595714087375,64.9927800727625,0.1942212087788846,190.2641193622685,0.0737430887905148,69.88856661216403,252.15476,176.57103490960975,263253.5287730728,184342.93296334436,500.34938,334.2443346699243,521800.46771903447,348384.1922136519,484.13752,236.90134390437748,501343.77349035325,244238.2271462117,2535.66989,1202.6191003058525,2612007.7779169795,1220281.8219179122,886.73591,409.2921465722013,909641.808652802,411191.624407952,1412.60518,610.2175357137864,1440571.0348283637,606978.6889505469,0.38125,100000,0,1146158,11966.069489685124,0,0.0,0,0.0,43206,450.4614549402823,0,0.0,43710,452.3928839889752,1051579,0,37827,0,0,9926,0,0,94,0.9709346028564269,0,0.0,0,0.0,0,0.0,0.04885,0.1281311475409836,0.2988741044012282,0.0146,0.3651607812191754,0.6348392187808246,22.43101576501743,3.9932486847167135,0.310992637725311,0.2998222899212998,0.1967504442751967,0.1924346280781924,11.395335996708631,6.233726349571315,15.818510594856392,11413.184320680051,45.71842749754333,14.602147415505216,13.984768719036122,8.802912340734942,8.32859902226705,0.5960903782685961,0.825571549534293,0.6873469387755102,0.5909677419354838,0.0963060686015831,0.7732463295269169,0.9206349206349206,0.8586956521739131,0.7373737373737373,0.141025641025641,0.5160339107998526,0.7548005908419497,0.6137689614935823,0.5407279029462738,0.0847176079734219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473790833122,0.0042678723490531,0.0065451003074675,0.0087569588361981,0.0107704042715484,0.0129227385207588,0.0149772639220244,0.0173343133651843,0.0195865960622354,0.0218354916312637,0.0235373717285001,0.0257513373651083,0.0275775554481609,0.0296044499381953,0.0316221850682188,0.0338147271355173,0.0357305605037491,0.0378360438101559,0.039695735306343,0.0417946502014764,0.0568918199747472,0.0707635983263598,0.0841658367838985,0.0966426732517207,0.1089487603654103,0.1246843000708013,0.1356144200294675,0.1456964205959293,0.1563607257203842,0.1653613328333422,0.1780162762659318,0.1894037729318103,0.1996128456929083,0.2085962705747252,0.2170999053551383,0.226780708848979,0.2356498164738433,0.2432657376477601,0.2512672223167205,0.2581132593839074,0.2636543329749974,0.2697782036599901,0.2751206358217428,0.2798495393940846,0.2838408859099519,0.2881456194619375,0.2917109923530369,0.2943116555667333,0.297305350433994,0.2995104055320216,0.2963969539595834,0.2929992306846906,0.2908425938950626,0.2869192218258496,0.283958132284166,0.2796067742627017,0.2758620689655172,0.2760504684244204,0.2773582971744849,0.2774145272497283,0.2792002543625039,0.2806028962663777,0.2811310494834149,0.2828749247139128,0.2846881906409148,0.2875052018310445,0.2893488940000568,0.2936962302518379,0.299299578353138,0.3028891695610988,0.3067264980509473,0.3109759322930441,0.3139600780807254,0.3169008735282947,0.3191828319745103,0.3237690400283387,0.3287922853206796,0.3312612793262482,0.3356164383561644,0.3313817330210772,0.0,2.2737599483371853,53.3166079664579,153.60294749901618,188.3867100914433,fqhc1_80Compliance_implementation_low_initial_treat_cost,41 -100000,95694,48094,459.67354275085165,4796,49.031287228039375,3814,39.34415950843313,1456,14.88076577423872,77.34192318165195,79.71737461388007,63.32298576779221,65.07503603234694,77.15484478114553,79.53222659120678,63.25219637042933,65.00676465519585,0.1870784005064223,185.1480226732889,0.0707893973628728,68.27137715109188,252.615,176.91703741937545,263982.067841244,184877.87888412588,498.96418,332.9211775662975,520912.34560160514,347397.80714182445,473.67447,231.0853748028001,491580.5275147867,238799.84239625203,2453.36411,1162.2361533910382,2531139.277279662,1181913.6658422032,869.24595,397.9137740562152,892899.816080423,400358.8250634475,1408.47032,602.4277272420268,1440975.9232553763,604743.6735451377,0.38008,100000,0,1148250,11999.184901874723,0,0.0,0,0.0,43018,449.0250172424603,0,0.0,42786,443.7686793320376,1051013,0,37700,0,0,10026,0,0,96,0.9927477166802516,0,0.0,1,0.0104499759650552,0,0.0,0.04796,0.1261839612713113,0.3035863219349458,0.01456,0.3736483780536644,0.6263516219463356,22.97210236317667,3.964325821391917,0.3138437336130047,0.2871001573151547,0.2066072364971158,0.1924488725747247,11.463430246263634,6.426210842344256,15.616624525871456,11427.343629960937,43.94882212689852,13.319264869028164,13.778465802524542,8.799780444925263,8.051311010420555,0.5933403251179864,0.806392694063927,0.6950710108604845,0.583756345177665,0.1198910081743869,0.7622673434856176,0.9025974025974026,0.8664772727272727,0.7405660377358491,0.141025641025641,0.5174772036474165,0.7361769352290679,0.6236686390532544,0.5260416666666666,0.1141868512110726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002257930601541,0.004530665612552,0.0067967172869939,0.0087655148597314,0.0107796975582968,0.0129197124880373,0.0151397752992272,0.0174302839696527,0.0196838316495562,0.0217273332309425,0.0237877964502865,0.0261033866628329,0.0280789089338242,0.0301478543094121,0.0322567326252335,0.0341133527045612,0.0360361293530277,0.0382483600431786,0.0401301969592978,0.0420448269753774,0.0562687362252838,0.0703306598538311,0.0842385885365828,0.0972347902944085,0.109447539461467,0.1259100914324415,0.1367777282283238,0.1473874833555259,0.1571262119317149,0.1673733134398849,0.1792599301332643,0.1901920223538713,0.2003461375189124,0.2098306123342233,0.2179224724295053,0.2273965925958747,0.2361844381690125,0.2438881635225789,0.2508989439535385,0.2571742665414653,0.2628065710319296,0.2683754284577859,0.2737806393580381,0.2783251822017645,0.2835606953268303,0.2869252377901533,0.2915759168857179,0.2940435761437784,0.2969310688793025,0.3000554338357574,0.2963556969190544,0.2930649694164324,0.2899388267132748,0.2877202603437577,0.2860233216280689,0.283076782114715,0.2777479723545933,0.2779807046567624,0.2783802216538789,0.2786771507863089,0.280055256869773,0.2814569536423841,0.2819999165310295,0.2831933334818743,0.2831122266045177,0.2850935050826414,0.2869127990734725,0.2917159763313609,0.2947872561949052,0.2997252747252747,0.3033965315841495,0.3085072904647015,0.3107305793387913,0.3122612538386637,0.3149722735674676,0.3189545507112293,0.3201069995541685,0.3247981091195588,0.3275908479138627,0.3222713864306785,0.0,1.9854022961082751,51.59156869099601,141.34555665872637,189.4403489915548,fqhc1_80Compliance_implementation_low_initial_treat_cost,42 -100000,95730,47775,455.2386921550193,4821,49.00240259061945,3855,39.59051499007625,1443,14.634910686305233,77.32392886815877,79.68804679673167,63.31606620966248,65.06499961469434,77.13756425852847,79.50673411886349,63.24467719246783,64.99829891064017,0.1863646096303028,181.31267786817773,0.0713890171946474,66.7007040541705,250.88712,175.78038423512697,262077.84393607025,183621.0009768379,496.83412,331.7434970047613,518335.47477279854,345882.376168036,476.37901,233.0484498436103,493204.1679724224,240077.8286563762,2499.77678,1183.8548336070144,2571552.52272015,1197022.6408324265,868.52464,401.79750058245247,892305.7139872558,404847.0122855617,1389.41472,598.1909103854954,1411619.2625091402,591909.3156496114,0.37852,100000,0,1140396,11912.629269821373,0,0.0,0,0.0,42795,446.3386608168808,0,0.0,42995,444.7717538911522,1059356,0,38012,0,0,10008,0,0,100,1.0341585709808836,0,0.0,0,0.0,0,0.0,0.04821,0.1273644721547078,0.2993154947106409,0.01443,0.3597609561752988,0.6402390438247012,23.017085032325827,4.013691438342699,0.3167315175097276,0.2804150453955901,0.2147859922178988,0.1880674448767834,11.438879406268295,6.350121373722345,15.486094630380112,11449.794066899984,44.51273560119898,13.41586874036248,13.96513453778499,9.235681167653643,7.896051155397871,0.5971465629053178,0.820536540240518,0.6986076986076986,0.6026570048309179,0.0868965517241379,0.756357670221493,0.9071729957805909,0.8601583113456465,0.7537688442211056,0.0958083832335329,0.5235204855842185,0.7528830313014827,0.6258907363420427,0.5548489666136724,0.0842293906810035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022891407618989,0.0046943596710906,0.0068504272636856,0.0092665975736145,0.0113622492574358,0.0135641547861507,0.0158840201455865,0.0180673083793522,0.0201312776051038,0.0221974219045961,0.0245140255905511,0.0265822005010472,0.0286325269618678,0.0308704922592008,0.0331551574689396,0.0349792749863039,0.0369468843221743,0.0390986652274095,0.040930077783786,0.0429451048623193,0.0579121556017247,0.0722610478741211,0.0854742979383821,0.0984352983238343,0.1113677106400927,0.1267903611399073,0.1378728551873428,0.1487870849572977,0.1581826145480573,0.1670901819507435,0.1799860041987404,0.1911446617061775,0.2017199578164581,0.2107939076526093,0.2194201878450608,0.229041617754546,0.2374267700719745,0.2446159731755069,0.2516345804576825,0.2578633654287024,0.263227390659748,0.2683303861062641,0.2732788245052731,0.2770668169878983,0.2811226909559655,0.2854447705245505,0.2897597755567245,0.2928882549224381,0.2963466946593575,0.2990899845469074,0.2965048909967932,0.2929219251042512,0.2897002663359779,0.2865879223351501,0.2845303867403315,0.2807025589287352,0.2772408565472806,0.2777414182401256,0.2776368434493913,0.2785095905996124,0.2797261500578293,0.2794942990488568,0.2811763478986338,0.2821351489664686,0.2829145728643216,0.2836312689723166,0.2860013016780328,0.2907348242811501,0.2947932350572499,0.2972023833011087,0.3015098092396709,0.3021457873146103,0.3057614450327001,0.3100932611311672,0.3122492769847934,0.3153184975862474,0.3219907060410733,0.3198594024604569,0.3213347346295323,0.3298429319371728,0.0,2.646831132559484,52.56437904796876,141.94188929873712,189.155305411562,fqhc1_80Compliance_implementation_low_initial_treat_cost,43 -100000,95788,48650,464.2543951225624,4797,48.95185200651439,3871,39.764897481939286,1472,14.939240823485196,77.4066300966336,79.74513809743837,63.35719594835807,65.08781665737074,77.21184617824805,79.55514377501576,63.282946617842384,65.01790230774024,0.1947839183855535,189.9943224226064,0.0742493305156841,69.91434963049414,252.68804,177.07205206918337,263799.26504363806,184858.28294690707,503.4476,335.7531147631836,524930.9203658078,349862.5556052778,484.18055,236.2833668084105,501152.52432455,243386.22929699745,2505.4394,1194.6922685284296,2575421.284503278,1207037.8424525294,878.42824,407.5438756627294,902066.8768530504,410476.7357735081,1431.88378,623.9172631165222,1455546.8743475173,618247.2043478712,0.38546,100000,0,1148582,11990.875683801729,0,0.0,0,0.0,43281,451.1525452039922,0,0.0,43843,453.5014824403892,1050186,0,37673,0,0,9902,0,0,83,0.8560571261535892,0,0.0,0,0.0,0,0.0,0.04797,0.1244487106314533,0.3068584531999166,0.01472,0.3656925540432346,0.6343074459567654,22.993195243071007,4.0521223472013626,0.3097390855076207,0.2818393180056833,0.2045982950142082,0.2038233014724877,11.50555497392926,6.363581348367161,15.79572271547665,11532.398994906423,44.57133457265654,13.458726842189702,13.547194896387817,8.896947755743437,8.668465078335583,0.5846034616378197,0.8075160403299725,0.6939115929941618,0.5757575757575758,0.1191381495564005,0.7662551440329218,0.9244060475161988,0.8852459016393442,0.7368421052631579,0.1412429378531073,0.5015060240963856,0.7213375796178344,0.60984393757503,0.5180102915951973,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024216264413236,0.0046439942406359,0.0072660111019778,0.0094591711286995,0.0117370653268376,0.0140017514918229,0.0162517077547358,0.0182820395039044,0.0203708246453248,0.0224528224651029,0.0245147272839076,0.0265863569200459,0.0285000719439248,0.0306156063413629,0.0326148581088742,0.0346120088801693,0.0368592561940723,0.0389874257518115,0.040900921491424,0.0427988423178628,0.0577310336912177,0.0719275495691458,0.0853055235300283,0.0984709158741001,0.1106065554771211,0.1260592996470762,0.1373286836331259,0.1485151673028463,0.1573016923109755,0.1670844313044968,0.1800544478280051,0.1920910064124052,0.2029103634150582,0.2120944049452289,0.2201043669321614,0.2296567596875207,0.2384447220487195,0.245567684853118,0.2533767308935437,0.2600489859451541,0.2649129906920275,0.2706621951647016,0.2768526622040353,0.2814640103443321,0.28555645934757,0.2897051215726849,0.292882789336069,0.2958546785818704,0.2991718426501035,0.3015192677973254,0.2983318298708817,0.2947750422697843,0.2914819661980551,0.2895963517238393,0.2873488261797486,0.283599175761276,0.2801758089416806,0.2801508152839212,0.2802901891653671,0.2807970693896331,0.282439196858892,0.2833646985023131,0.2844892026578073,0.2859011305697184,0.2866903135191754,0.2865729395072875,0.2869141230517741,0.2912422360248447,0.2980885974954036,0.3022345712832153,0.3065015479876161,0.3107515657620042,0.3136551894665265,0.3209977661950856,0.3257006777798131,0.3253831086530706,0.3301702063563789,0.3334647998422402,0.3353228431904503,0.3329545454545454,0.0,2.5192852662202854,52.52445892694072,139.88286134248435,193.6846396777509,fqhc1_80Compliance_implementation_low_initial_treat_cost,44 -100000,95690,47991,457.957989340579,4812,49.16919218309123,3815,39.30400250809907,1407,14.39021841362734,77.29491858535671,79.6959790581638,63.29396199958445,65.0734625237403,77.1100583793574,79.51375323552665,63.224476489449366,65.00727765409071,0.184860205999314,182.22582263715023,0.0694855101350881,66.18486964958947,251.1905,175.97139429253917,262504.4414254363,183897.3709818572,499.84292,333.3821022091356,521826.24098651897,347867.8150372407,477.50581,232.5909370674756,494928.5296269202,240005.6564942005,2439.5961,1159.9627185495867,2514022.019019752,1176752.3132506916,893.15213,409.015043320221,913976.016302644,408032.7759642801,1370.3496,585.4786570828896,1401586.686174104,584594.3283574145,0.38018,100000,0,1141775,11932.02006479256,0,0.0,0,0.0,43105,449.9007210784826,0,0.0,43163,447.03730797366495,1058668,0,37980,0,0,10256,0,0,100,1.0345908663392205,0,0.0,1,0.0104504127913052,0,0.0,0.04812,0.1265716239675943,0.2923940149625935,0.01407,0.3720697255059106,0.6279302744940893,22.808624077411626,3.98544995160681,0.2967234600262123,0.3051114023591088,0.1997378768020969,0.1984272608125819,11.110249424056889,5.849178294296235,15.09655020266428,11439.894884638785,44.378321169016495,14.446129873468148,13.052549527191442,8.584252967994878,8.295388800362028,0.5952817824377458,0.8281786941580757,0.6890459363957597,0.5656167979002624,0.1268163804491413,0.759656652360515,0.9307535641547862,0.8504672897196262,0.7210526315789474,0.1104294478527607,0.5230188679245283,0.7533432392273403,0.625154130702836,0.513986013986014,0.1313131313131313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021490770119719,0.0042517783392695,0.0063677448839689,0.0084489858166844,0.0109531032095849,0.0130971430901103,0.0154802236825992,0.0178378047036227,0.0198674141670417,0.0220756205246929,0.0243111831442463,0.0264425793328744,0.0284523564519448,0.0306709265175718,0.0326493115051921,0.0348511329203594,0.0370147768958156,0.0390780730897009,0.0409133465099344,0.0428266194173745,0.0573022206438404,0.0706860271563321,0.0839183587806285,0.0965698653198653,0.1091417418367885,0.1246204145549195,0.1358319534666497,0.1468070608777122,0.1569865589674551,0.1670064377682403,0.1791015835398039,0.1907090464547677,0.2006566430753509,0.2096876434457583,0.2178407266489256,0.2270593445527015,0.2358427417555446,0.2434655414908579,0.2515639014089304,0.2578485873115937,0.2647041800270874,0.2701497776737655,0.2749781049541979,0.2786796796316723,0.2835104767689037,0.287301606876395,0.2902793771591648,0.2934526912757652,0.2965883676134087,0.2999367805494824,0.2970885004500934,0.2940232156087923,0.2913539646400764,0.288102856813399,0.28552368245497,0.2824621217912456,0.278124011388801,0.2784417884019478,0.2792838874680307,0.2796498359720439,0.2801820190633134,0.2820735706665613,0.2824285295718053,0.2831107339080716,0.2829498411475883,0.2840609930926626,0.2846438746438746,0.2880381873567189,0.2932317691044411,0.2962509382530715,0.3012404016538689,0.3051876088447939,0.3072070946789907,0.3126698882512836,0.3179190751445087,0.3208568738229755,0.3226000601865784,0.3318663732746549,0.3326186009112838,0.3374164810690423,0.0,2.231829216453828,50.65639143847019,152.1330032434647,183.36947442740137,fqhc1_80Compliance_implementation_low_initial_treat_cost,45 -100000,95716,47894,456.3918258180451,4952,50.43044005181997,3925,40.3694262192319,1504,15.337038739604663,77.3593554540744,79.73127494877379,63.33143217950936,65.084199837205,77.16583876714677,79.53939577232772,63.25878955017647,65.01447522516628,0.1935166869276372,191.879176446065,0.072642629332897,69.72461203872626,251.92706,176.3417823495362,263202.20234861464,184233.9637818297,499.57857,332.8362924708813,521287.9246938861,347084.3592663309,475.53534,232.44497815117728,492290.902252497,239435.72076399665,2532.51931,1183.6481604941623,2606846.232604789,1197965.3560284884,911.25644,412.1829568918079,935263.1848384804,414189.37790946825,1457.98964,619.5247677350226,1488215.094655021,619085.6238664591,0.38002,100000,0,1145123,11963.736470391575,0,0.0,0,0.0,43064,449.2352375778345,0,0.0,42931,444.03234568933095,1056912,0,37934,0,0,10027,0,0,88,0.9089389443771156,0,0.0,0,0.0,0,0.0,0.04952,0.130308931108889,0.3037156704361874,0.01504,0.3541828040278854,0.6458171959721146,23.225429406933745,4.100805943389653,0.3126114649681528,0.2812738853503185,0.2015286624203821,0.2045859872611465,11.52439907152032,6.351540023439045,16.03117975924212,11486.629862638429,44.9290339703034,13.578559032325282,13.903256812113591,8.772722218609502,8.674495907255022,0.5729936305732484,0.7952898550724637,0.6878565607171964,0.5474083438685209,0.1170610211706102,0.757753562447611,0.8972746331236897,0.865546218487395,0.7185929648241206,0.15,0.4923133235724743,0.7177033492822966,0.6149425287356322,0.4898648648648648,0.1088646967340591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0046022686954494,0.0071843891747085,0.0093132375941987,0.0116835972056984,0.0140694513728404,0.0159233396197563,0.0180470775575199,0.0199341661384964,0.0221237126067282,0.024437767272056,0.02696262210216,0.0291684671893326,0.031146324877908,0.0333825213864839,0.0352409700829077,0.0372824500191537,0.0394253708121564,0.0412304685469534,0.043072467995125,0.057735683555407,0.0719339375798044,0.0855965006136513,0.098735055676477,0.1112353034217324,0.1264505209710689,0.1371421295018994,0.147868580189081,0.1576973220201329,0.1669528265441902,0.1795896817016141,0.1909720718770296,0.2015382439650577,0.2109404066268356,0.2189558321401035,0.2288432537922469,0.2373869346733668,0.2444436946056598,0.252200844035032,0.2589020856478565,0.2652485222842998,0.2702203518615933,0.2755111688925659,0.2794103570402986,0.2835520411380891,0.2879326680530091,0.2910670750765768,0.2939555205568186,0.2980673518195333,0.3009874917709019,0.2981488193521538,0.2945599231666324,0.292605628865112,0.2897153285720444,0.2860521841969103,0.2825749269005848,0.2779560757661569,0.2777986200596995,0.2776032201633859,0.2783720971490411,0.2790771411518949,0.2791960036187704,0.2808340820292095,0.2804752758297226,0.2832522351925981,0.2829223981313262,0.2838735312482261,0.2890122643580816,0.2928049249711427,0.29642194958381,0.3012736255269002,0.3074970921010891,0.3122006554071087,0.314841335644833,0.319156839075123,0.3238084084787446,0.3259584785573571,0.3281499202551834,0.3277401894451962,0.3316999623068224,0.0,2.424060872796422,51.72992849090251,141.37194776901717,200.7026915525115,fqhc1_80Compliance_implementation_low_initial_treat_cost,46 -100000,95897,48201,459.6702712285056,4730,48.35396310624941,3742,38.53092380366434,1402,14.31744475843874,77.4394230829848,79.71899518994188,63.39129033748679,65.07714056845482,77.26143075398699,79.54506080963324,63.32332433169956,65.01314541685774,0.1779923289978171,173.93438030863706,0.0679660057872268,63.99515159708358,253.15774,177.27944187455105,263989.2175980479,184864.42941338208,498.01992,332.41618723557366,518830.8706216044,346157.85858236346,472.22074,230.30568564257212,489663.2949935869,238031.04654512767,2412.21786,1138.5628757819936,2485284.263324192,1157858.1720460998,879.93418,401.5369464707801,905873.0095831986,407251.3105249495,1372.15108,588.5126656293122,1403011.8356152957,588939.0304082558,0.38099,100000,0,1150717,11999.509890820358,0,0.0,0,0.0,42946,447.33411889840136,0,0.0,42610,441.54665943668726,1053615,0,37858,0,0,9903,0,0,96,1.001074069053255,0,0.0,1,0.0104278548859714,0,0.0,0.0473,0.1241502401637838,0.2964059196617336,0.01402,0.3610152284263959,0.6389847715736041,23.02073756655498,3.973905707133376,0.3073222875467664,0.2910208444681988,0.1916087653661143,0.2100481026189203,11.144392713309532,5.968883113850515,15.111435711422615,11396.14824572529,42.96733965696733,13.412150469268887,12.861223303020338,8.008309833243125,8.685656051434975,0.5863174772848744,0.8181818181818182,0.6921739130434783,0.5815899581589958,0.1145038167938931,0.7568042142230026,0.9186295503211992,0.8738461538461538,0.6923076923076923,0.1393939393939394,0.5117172493276988,0.7427652733118971,0.6206060606060606,0.5439252336448598,0.107890499194847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866774650739,0.0044590376585998,0.0069994623601375,0.0089654682248779,0.0111091912549422,0.0132068944465924,0.0155334861217214,0.0174622603019175,0.019543541334641,0.0216864265474595,0.0239149145456781,0.0259077990170427,0.0280435296414661,0.0299558383002377,0.0320216089157396,0.0340860981175717,0.0360239193858759,0.0380386914938812,0.0401686064016445,0.0420715340920913,0.0563217312443318,0.0697045055588063,0.0827984125155764,0.0954075847297467,0.1072090281286845,0.1230044767294535,0.1337767844848587,0.1446149268956137,0.1544791711081738,0.1643587877750192,0.1773456730407489,0.1890090420992362,0.1999196281171257,0.2092642158737095,0.2174046875687085,0.2259278110961117,0.2341274262919795,0.2422452325868691,0.2493034318722392,0.2559061867806567,0.2620361604359572,0.2679194630872483,0.2737970062497785,0.2780376906969787,0.2818565605590062,0.2856351823596003,0.2891823679344295,0.293191192334539,0.2976253502576088,0.300636574074074,0.2981765938020302,0.2956000712983149,0.293729743381084,0.2908360221249135,0.2873488358323835,0.2821901507292366,0.2780099345580699,0.2774592908357424,0.2780204279329039,0.2794769896746265,0.279886042008044,0.2807568501216927,0.2827207716614003,0.2831374632051878,0.2846519363269185,0.2858911529533144,0.2869701991405218,0.291288875135386,0.2952305465573092,0.3012785530521556,0.3074137005902343,0.311597992051872,0.3156526582905242,0.3190179442901119,0.3259128166915052,0.3278246601031411,0.3281059683313033,0.3328634716069271,0.338683351468988,0.3446222553033122,0.0,1.9070936107160472,49.56418266521094,140.91507590278752,185.43573649285688,fqhc1_80Compliance_implementation_low_initial_treat_cost,47 -100000,95743,48501,462.56123163051086,4795,48.9853044086774,3799,39.156909643524855,1427,14.580700416740653,77.34647984393533,79.6992714647913,63.33814763576003,65.07532791379803,77.16740222500104,79.52241637475981,63.27048882698976,65.0108396007026,0.1790776189342864,176.8550900314807,0.0676588087702683,64.48831309543834,252.1145,176.68715124604682,263321.45430997567,184540.88368779543,497.98226,332.8273259864933,519555.0275215943,347067.7373539655,483.81521,236.3864632185272,502239.787765163,244451.86810380805,2454.88962,1165.908631540031,2531112.258859656,1185404.6830991774,859.54744,395.3811407764912,884780.5061466635,400810.7608749803,1382.5405,587.5194670091812,1413260.8336901914,586820.3586942793,0.38203,100000,0,1145975,11969.157014089804,0,0.0,0,0.0,42866,447.1240717337038,0,0.0,43758,453.9653029464295,1053107,0,37783,0,0,10067,0,0,81,0.8355702244550516,0,0.0,0,0.0,0,0.0,0.04795,0.125513703112321,0.2976016684045881,0.01427,0.357056936647955,0.6429430633520449,23.06892391880156,3.959452800682048,0.3171887338773361,0.2913924717030797,0.1976836009476178,0.1937351934719663,11.680794873444132,6.598407599734956,15.20048028211537,11503.20762421448,44.02790661184421,13.755470983691856,13.817604265573106,8.405538449550267,8.049292913028983,0.6009476177941564,0.8319783197831978,0.6921161825726141,0.5858854860186418,0.1195652173913043,0.7709543568464731,0.9288617886178862,0.8472622478386167,0.7246376811594203,0.1761006289308176,0.5219737856592136,0.7544715447154472,0.6293706293706294,0.5330882352941176,0.1039861351819757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046427231903009,0.0069920134766239,0.0092643383921496,0.011328736754327,0.0135404789053591,0.0157798165137614,0.0178711764765919,0.0201980967178092,0.0223398482692248,0.0245287467071208,0.0265534867489171,0.0285200226186192,0.0307240704500978,0.0328301847858609,0.0348320413436692,0.0368272834572298,0.0390397244498853,0.0411737801708904,0.0432146986220041,0.0584010189380494,0.072259901197354,0.0858494722927463,0.0981934425539969,0.1101657388663967,0.1257783839216805,0.1368611977343601,0.148041333659689,0.157980699432085,0.1671953702711392,0.1792649844987943,0.190423150541239,0.2007455144158144,0.2104486745197456,0.2186782146115208,0.2280958073227963,0.2370201901958817,0.2442035666899048,0.2517580872011252,0.2586388513590877,0.264327674730561,0.2698646468896837,0.2749222197248412,0.277950180323744,0.2823382329736487,0.286753125307609,0.2901334866513348,0.2937227428193619,0.2973819820286402,0.3011500013188088,0.2988510386395436,0.2966566351980871,0.2937139642806919,0.2908261910945661,0.2880918476326095,0.2845980948303542,0.2811464284586976,0.2813777763239671,0.2814181595259178,0.2818479265950636,0.2834865978996848,0.2844074598677998,0.2859081986384329,0.2870885850443148,0.2873178086781705,0.2896358106527333,0.2912808861119,0.2952848170484017,0.2996340825927862,0.3045188185786762,0.3091394202505313,0.3118801434901878,0.3145452283190245,0.3168152288865387,0.3219389184645559,0.3265017667844523,0.3256519102486355,0.325933400605449,0.3344444444444444,0.3442113442113442,0.0,1.948051713098784,52.680612917128514,142.6682589548707,184.02470282260575,fqhc1_80Compliance_implementation_low_initial_treat_cost,48 -100000,95746,47586,452.3113237106511,4816,49.2239884694922,3843,39.59434336682472,1378,14.089361435464667,77.41222784566315,79.76791146908192,63.350809200748486,65.08978976503084,77.2331502809434,79.59123812844952,63.28364214144306,65.02557436190727,0.1790775647197477,176.67334063240503,0.0671670593054258,64.2154031235691,252.83236,176.99451944583072,264065.2559898064,184857.98208420727,499.00436,332.5892956581528,520609.9158189376,346804.0655877154,474.15136,232.14732574743925,491337.96712134185,239611.7123363334,2450.82205,1160.8622012462972,2526436.623984292,1179368.7273082826,865.62438,393.14589116041054,895253.3160654231,401782.58220751793,1339.43854,569.5227082598534,1370094.7089173438,569486.1007051363,0.37732,100000,0,1149238,12002.966181354835,0,0.0,0,0.0,42895,447.423391055501,0,0.0,42863,443.9454389739519,1054531,0,37786,0,0,10076,0,0,103,1.065318655609634,0,0.0,1,0.0104443005451924,0,0.0,0.04816,0.1276370189759355,0.2861295681063123,0.01378,0.3666533386645342,0.6333466613354658,23.184299874724385,4.043897642857616,0.3091334894613583,0.2971636742128545,0.1980223783502472,0.1956804579755399,11.54554070158246,6.35238643166901,14.700770571329244,11416.263658900918,44.049340889843535,14.039774546230488,13.459120106640908,8.379706908066158,8.170739328905979,0.5990111891751236,0.830122591943958,0.6944444444444444,0.5834428383705651,0.113031914893617,0.7576257213520198,0.9284294234592444,0.8396501457725948,0.71,0.1317365269461078,0.5258555133079847,0.7527386541471048,0.6355029585798817,0.5383244206773619,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045203466274768,0.0068477863896441,0.0089162401494841,0.0112445226161307,0.0132233928844098,0.0154717981123998,0.0177239472261053,0.0201939683804968,0.0223541453428863,0.0245142248093793,0.0264740904984807,0.0288472412126944,0.0309565002471576,0.0332979063696304,0.0358468137888262,0.037866550695825,0.0397775610565849,0.0416268141556119,0.0437712892842633,0.0584096294981678,0.0727932867367011,0.0859207821088406,0.0983716918416291,0.1105296476049799,0.1255714043849995,0.1379786059937176,0.1487751125874349,0.1592652747205778,0.1683978967700397,0.1799435150051742,0.1907020051102161,0.2007052600646488,0.2096742414291343,0.2176771848670081,0.2269339957416607,0.2346644617756821,0.2420840464822989,0.2498041842144097,0.2563855753033793,0.2620144451131997,0.2673365776051659,0.2726197516262567,0.2765493876671495,0.2804343869441242,0.2849742207784217,0.2883049408003197,0.291836890050496,0.2952454680343204,0.2988490645364726,0.2952526430035776,0.2917351073149365,0.2889548976475038,0.2854576548869695,0.2825128636088873,0.2787134200974958,0.27536140890612,0.2750768530114995,0.2758644033374515,0.2772053235299316,0.2777654252362423,0.2795476297439303,0.2804065968260554,0.2820892553215004,0.2830170732867266,0.285221421215242,0.2854128569419046,0.2884770346494762,0.2939608928880429,0.2979478776529338,0.3022464870670366,0.3037571197157339,0.3101997896950578,0.3134049858187789,0.3173641703377386,0.3231735691019078,0.3237753882915173,0.3243029464109155,0.3266020463112547,0.3240286684270086,0.0,2.028577043872363,52.81908948799653,137.79065951964034,190.20358539148796,fqhc1_80Compliance_implementation_low_initial_treat_cost,49 -100000,95735,48207,458.5365853658537,4870,49.67880085653105,3869,39.89136679375359,1462,14.884838355878204,77.32373385663094,79.69417535991478,63.321321634088775,65.07531142710879,77.14027047373489,79.5151185192069,63.25119379541626,65.00930175653009,0.1834633828960505,179.05684070788652,0.0701278386725121,66.00967057869411,252.21878,176.69745930471257,263455.1417976706,184569.34172947463,501.60798,335.12196486283136,523452.3737400115,349549.3966290608,487.18007,238.4036366945357,506044.6022875647,246659.91400147544,2495.43387,1185.1736285412676,2572562.479761842,1203930.0658497598,905.0854,416.7063739098952,929832.0990233456,419695.7579880873,1413.70018,603.3614787688784,1439800.553611532,598841.3498659884,0.38129,100000,0,1146449,11975.23371807594,0,0.0,0,0.0,43150,450.20107588656185,0,0.0,44035,457.09510628296863,1049870,0,37706,0,0,10001,0,0,83,0.8669765498511516,0,0.0,1,0.0104455006006162,0,0.0,0.0487,0.1277243043352828,0.3002053388090349,0.01462,0.3629411764705882,0.6370588235294118,23.15697433645363,3.9292504621246658,0.3171362109072111,0.2858619798397518,0.2039286637373998,0.1930731455156371,11.333439172981862,6.402896736622812,15.603942870127536,11504.199841397962,44.576829961855736,13.640342955250546,14.050316889649714,8.86483674442024,8.021333372535235,0.607650555699147,0.8345388788426763,0.7098614506927465,0.5956907477820025,0.1164658634538152,0.7694886839899413,0.933609958506224,0.8591549295774648,0.7164948453608248,0.1481481481481481,0.5355007473841554,0.7580128205128205,0.6490825688073395,0.5563025210084034,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0047562546269534,0.0071457572066585,0.0093388614515375,0.0116697867491453,0.0140879503712984,0.0163586668298453,0.0186287826948413,0.0210035483112288,0.0231962722105586,0.0254025228181724,0.0276371329683985,0.0297104058433208,0.0318216011788831,0.0339695089852499,0.0362452186498501,0.0381966381158534,0.0400904733248946,0.0420167193478622,0.044055893048797,0.0583561300561739,0.0724804538270726,0.0862235370638467,0.0994803500799461,0.111787160452168,0.127330013427644,0.1381951664580195,0.1484681770295723,0.1582056074766355,0.1667256447375475,0.1781611051889179,0.1892754375716665,0.2001783228949199,0.2099532076791883,0.2182770151355156,0.2279713001306552,0.236942731965084,0.2456165968392321,0.2522330537293131,0.2583726037425081,0.2642937187351979,0.2702393328116057,0.2752292493855171,0.2802925999976056,0.28506419435478,0.2877778461917369,0.2913002689348927,0.2937936473611234,0.2974715500835049,0.3006774567692956,0.2977753268413407,0.2946822701082248,0.2920543317615596,0.2888057437556881,0.2860982019569122,0.2821951741643475,0.278252911288541,0.2775596990513575,0.2771487828097375,0.2774017021125384,0.2778389474666418,0.279073432083202,0.2799682234393946,0.2826892181363798,0.2843675789776679,0.2854467420991026,0.2860596751713741,0.291143216080402,0.2970425397715327,0.3017019082001031,0.3070901975061436,0.3118359541011474,0.3136638147961751,0.317119585902413,0.3170367605896622,0.3213230950974601,0.3264967576534459,0.329,0.3323393873678503,0.3309243058197033,0.0,2.0786657490764715,51.80633636215226,144.35626485836795,192.77163926704608,fqhc1_80Compliance_implementation_low_initial_treat_cost,50 -100000,95795,48168,458.4999217078136,4731,48.32193747064043,3771,38.94775301424918,1444,14.83375959079284,77.38153749659537,79.72377231309454,63.350937847410606,65.08298650283508,77.19556700789997,79.53685104182122,63.2807053147976,65.01407876340686,0.1859704886954034,186.92127127332012,0.0702325326130051,68.90773942822648,253.9669,177.92770533149582,265114.9851244846,185737.98771490768,501.83497,335.3896349404165,523447.1527741531,349695.5633805694,481.18282,235.34045197958463,499517.4591575761,243556.5704777248,2428.96961,1153.1159337931488,2508936.7712302315,1177078.4527304645,866.8696,399.6393544942648,891323.7747272821,403584.0748413423,1391.78472,593.8477460265698,1429670.3377002976,599839.8627858716,0.3801,100000,0,1154395,12050.681142022026,0,0.0,0,0.0,43315,451.7354767994154,0,0.0,43471,450.9734328514014,1041978,0,37396,0,0,10060,0,0,77,0.803799780781878,0,0.0,1,0.0104389581919724,0,0.0,0.04731,0.1244672454617206,0.3052208835341365,0.01444,0.3650213284582571,0.6349786715417428,22.876945356301714,3.912199056039586,0.3070803500397772,0.2938212675682842,0.2065765049058605,0.1925218774860779,11.293315401171013,6.378448362001175,15.434458627225384,11418.267820805846,43.42587294718615,13.66233045449833,13.206528478835754,8.755528314063588,7.8014856997884765,0.5990453460620525,0.8014440433212996,0.7089810017271158,0.5905006418485238,0.1239669421487603,0.7740016992353441,0.920997920997921,0.8528528528528528,0.7358490566037735,0.1854304635761589,0.5196607555898227,0.7097288676236044,0.6509090909090909,0.5361552028218695,0.1078260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020964572910125,0.0046222150140896,0.0068686335781827,0.0092318942140702,0.0114586086991886,0.0137626352596272,0.0161148937905165,0.0184325212545545,0.0208874082854748,0.0231239896044365,0.0252597708687721,0.0272115127999835,0.0292723552576111,0.0314034780638983,0.0335220884776846,0.0354493418469613,0.0374904281959477,0.0395965710613332,0.0416034737082666,0.0436448442445443,0.0584386446408632,0.0723302341633809,0.0860135021804763,0.0989492487128296,0.1110923785338714,0.1265495048981791,0.1390996566487219,0.1492786442552015,0.1591680361983224,0.1685121070176755,0.1796917048806217,0.1905338755732456,0.20090867589835,0.2100276481580644,0.2194663205596374,0.2286293090087896,0.2366824982719022,0.244793130191415,0.2513265907750918,0.2572781660737368,0.262598120252945,0.2684109659476009,0.2729874184088544,0.2771433359668653,0.2813155883387725,0.2852608267716535,0.2886749815848284,0.2909589806781082,0.2944825714396495,0.2974076073361157,0.2939667101038462,0.2901419276909984,0.2873309528495515,0.2842720126920026,0.2813987631801397,0.2774562943736163,0.2741587201513121,0.274887782583857,0.2754232974788775,0.2752793048412839,0.2756810099242184,0.276461109145934,0.2764498718402901,0.2764517278232989,0.278524852509136,0.2797771732089649,0.2807364878241932,0.2858388613784297,0.2882604315047076,0.2914914521516997,0.2971220105391163,0.3023023549201009,0.304600575071884,0.3093025013224514,0.3138352458251702,0.3158018039123814,0.3172757475083056,0.3226773226773227,0.3232959211606898,0.3268866135760334,0.0,1.658150917110287,51.51439287675296,138.9797279705351,187.20834944426784,fqhc1_80Compliance_implementation_low_initial_treat_cost,51 -100000,95863,48289,459.3012945557723,4812,48.923985270646654,3811,39.22264064341821,1425,14.562448494205272,77.37299817448195,79.67447049515732,63.35320242165369,65.05710405896393,77.18641653392828,79.48938323514679,63.2824593598875,64.98902173400106,0.1865816405536691,185.08726001053333,0.0707430617661941,68.08232496287303,251.55328,176.28516879822843,262408.6873976404,183892.362432042,502.50602,336.14273234526934,523646.1408468335,350103.67497915705,482.16373,235.6548719973454,499503.69798566704,243162.48526086143,2453.11163,1162.6227803367392,2526800.8199200947,1180651.1371819568,861.1367,400.39366354432815,885761.6598687711,405272.1646995968,1389.29142,600.0329231389121,1421195.9150037032,601864.8905168552,0.37995,100000,0,1143424,11927.667608983656,0,0.0,0,0.0,43332,451.46719798045126,0,0.0,43555,450.90389409887024,1052999,0,37784,0,0,9923,0,0,76,0.782366502195842,0,0.0,1,0.0104315533626112,0,0.0,0.04812,0.1266482431898934,0.2961346633416459,0.01425,0.3518926497095934,0.6481073502904066,23.00946554815006,3.922476537028016,0.3067436368407242,0.2894253476777748,0.1970611388087116,0.2067698766727893,11.202528258782314,6.1265724697834125,15.291581875227497,11401.381579342846,43.63385231844252,13.55872232697263,13.12842439385247,8.307154634577374,8.639550963040056,0.5851482550511676,0.786038077969175,0.7177074422583405,0.5912117177097204,0.1015228426395939,0.7659758203799655,0.9202586206896552,0.8955223880597015,0.7540983606557377,0.125,0.5062193742932529,0.6885758998435054,0.6462829736211031,0.5387323943661971,0.0947712418300653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0045405252009283,0.006613716360833,0.0091891233271734,0.0113962141390317,0.0139556188925081,0.0162363805000356,0.018553102899305,0.0206807058414819,0.023031902920171,0.0255214950206958,0.0274249481870601,0.0296188195636311,0.0317653113741636,0.0336797179439599,0.0356486358097362,0.0377834795563648,0.0397396972114856,0.0415065733452408,0.043520782396088,0.0576618284951618,0.0712957157784744,0.0852066790974419,0.0979702414079153,0.1104207910366033,0.1255664114074465,0.1376076798372484,0.1473449210652208,0.1571965250058699,0.1663880852887603,0.1772523782876329,0.1889490580109601,0.2002217198504478,0.2086923245134485,0.2169698170094301,0.2263523990961853,0.2342027756704895,0.2414468132980818,0.249271219700321,0.2561909668555727,0.2623703412468055,0.2687040220810965,0.2729908178720182,0.2774484088486459,0.2815257096394461,0.2861117608676918,0.2897548161120841,0.2931641643041482,0.2967256167768477,0.2984911234799124,0.2959410189831694,0.2924904446338713,0.2893206617388243,0.286496007854348,0.2840936054098944,0.2800800403256602,0.2762013043409604,0.2760245398773006,0.2751169715014887,0.2753246753246753,0.2753090793816548,0.2757501868092972,0.2768461618581397,0.2785450992583381,0.2789117268348514,0.2799182871328092,0.2802946593001841,0.2839201474585273,0.288775830226156,0.2915504576344424,0.2962231104324785,0.2991560517901137,0.3043749220989655,0.3080701224119692,0.3114600859973827,0.3168143656716418,0.3184848484848485,0.3195230396119644,0.3295859610638881,0.3330815709969788,0.0,2.073803113004804,50.134986934925806,138.3306468352759,195.26437813744263,fqhc1_80Compliance_implementation_low_initial_treat_cost,52 -100000,95779,47877,455.6322367115965,4820,48.89380761962435,3850,39.48673508806732,1408,14.230676870712788,77.39816222968327,79.72706961649301,63.35848721039546,65.07936802773062,77.21247704005958,79.54867780363718,63.28709901118448,65.01385433951891,0.1856851896236833,178.3918128558355,0.071388199210979,65.51368821170911,252.11296,176.57812951790436,263223.62939684064,184359.9635806433,500.97345,335.0182400098052,522368.49413754576,349099.6043076303,477.08002,233.50755867092315,493683.636287704,240363.7805892072,2474.65897,1174.797176714979,2540740.089163596,1183593.1224119894,861.174,394.8885342841908,881914.8560749225,395080.0950982876,1359.62118,586.5517763670794,1376466.9708391193,575791.5450536023,0.37861,100000,0,1145968,11964.71042712912,0,0.0,0,0.0,43191,450.2239530586037,0,0.0,43058,445.05580555236537,1053775,0,37756,0,0,9905,0,0,87,0.9083410768540076,0,0.0,0,0.0,0,0.0,0.0482,0.127307783735242,0.2921161825726141,0.01408,0.3712634515743324,0.6287365484256676,22.924515030523825,3.938333390228496,0.3015584415584416,0.2932467532467532,0.2179220779220779,0.1872727272727272,11.475865757249936,6.451852594619439,14.977707381314444,11358.20440629863,44.2900101829612,13.958277538088964,13.245668747320044,9.158909973092117,7.927153924460066,0.5914285714285714,0.8007085916740478,0.7062876830318691,0.5697258641239571,0.1040221914008321,0.7543859649122807,0.8969072164948454,0.8753623188405797,0.7211538461538461,0.10062893081761,0.5179042593290615,0.7282608695652174,0.6348039215686274,0.5198098256735341,0.1049822064056939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584108079641,0.004428814658667,0.0065231505904313,0.0086928263871963,0.0108778528948304,0.0129969263337879,0.0153462067559993,0.0174978574052156,0.019759090305377,0.0220073664825046,0.0242807966560118,0.0263417136993329,0.0282311107457041,0.0305790567940879,0.0325587149720601,0.0350119805007023,0.0372017959487699,0.039206943393096,0.0410625759985034,0.0432396405027962,0.058372376947398,0.0723437189503519,0.0856076412552292,0.0980629158214477,0.1106999399057469,0.1262607040913415,0.1374657926557627,0.1476901465408068,0.1572690471358533,0.1660733051665344,0.1775051697397897,0.1877149717697449,0.1978638097204263,0.2060896070269738,0.2149537846065921,0.2237319642382933,0.2331623550401427,0.2415045541437085,0.2490926413211142,0.2563574119236538,0.261984856366684,0.2681002746450067,0.2735157007974632,0.2791054251865694,0.2825765114190714,0.2854540755418261,0.2883096761295481,0.2913956914947668,0.2946189558627646,0.2971887021130842,0.2946134509134415,0.2917118576586718,0.287827028242869,0.2843066639776427,0.2813225486861756,0.2778768344534357,0.2739721710080524,0.2742219900075107,0.2740835247086842,0.2747438151561973,0.2753817504655493,0.2771800066880421,0.2779963774904753,0.2788939152031222,0.2795107906821805,0.2809560723514211,0.2817800782019184,0.2850090045333168,0.2890625,0.2936786997968432,0.299527983816588,0.3042479908151549,0.3088180807706558,0.310458743148885,0.3156380510440835,0.316590024761231,0.3192834562697576,0.3191361727654469,0.317983651226158,0.3250657647500939,0.0,2.7830955346160016,51.33540721757398,142.46195334508016,190.0701648695924,fqhc1_80Compliance_implementation_low_initial_treat_cost,53 -100000,95870,48173,458.7983727964952,4821,48.98299780953374,3835,39.34494628142276,1462,14.790862626473348,77.3584022892406,79.63958721442218,63.35300198276878,65.04145786512723,77.17411303452636,79.46089760876724,63.28365759480001,64.97645222575122,0.184289254714244,178.68960565493808,0.0693443879687691,65.005639376011,251.99944,176.61493796673062,262855.3666423281,184223.36285254057,500.50741,334.0605707557533,521400.3859392928,347783.1550597197,478.0647,234.7098403858935,494055.304057578,241298.9614673196,2467.07701,1170.902552736778,2532228.8411390423,1180216.2644589315,853.42041,399.64701079065,873020.5695212267,399760.2725833968,1410.92414,599.3929439692478,1429177.1565661833,592498.1739179917,0.37994,100000,0,1145452,11947.971211014916,0,0.0,0,0.0,43072,448.5761969333472,0,0.0,43237,446.40659226035257,1052671,0,37754,0,0,9881,0,0,88,0.9179096693439032,0,0.0,0,0.0,0,0.0,0.04821,0.1268884560720113,0.303256585770587,0.01462,0.354042214257268,0.645957785742732,23.453420590490747,3.930534386357782,0.3079530638852673,0.2930899608865711,0.2099087353324641,0.1890482398956975,11.667632397891364,6.701925331959653,15.537838077732191,11450.82918065276,43.94227995533427,13.679037861433448,13.299548631990374,8.949281167065278,8.01441229484518,0.5976531942633637,0.7927046263345195,0.7104149026248942,0.5987577639751552,0.1103448275862069,0.7896494156928213,0.9281183932346724,0.8917378917378918,0.8018433179723502,0.1273885350318471,0.5104285172544558,0.6943164362519201,0.6337349397590362,0.5238095238095238,0.1056338028169014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919063673824,0.0048940632884457,0.0070594679027497,0.0090771558245083,0.0114759097377515,0.0134542382886046,0.0156587473002159,0.0181447294609618,0.0202056298050907,0.0224700722763471,0.0248958407976496,0.0269729962477701,0.0292398862037445,0.0314361247981237,0.0335638248539247,0.0355889155034277,0.037528963919232,0.039414636168603,0.0411244846458205,0.0428739375149554,0.0573162086651932,0.072359898031677,0.0857148841252055,0.0977927587365591,0.1109062947670009,0.1261078540115142,0.1377234721236077,0.1495225740595027,0.1594278699898596,0.1690571134551067,0.1805035103587888,0.1914269953381718,0.2020415040601798,0.2117568616306142,0.2203117785448868,0.2289273938347828,0.2371023671212104,0.2445148817552378,0.2514401705524812,0.2568856720759514,0.2626294175487304,0.2677464624020582,0.2730479662862825,0.277589327452085,0.2817952082422121,0.2859942320491015,0.2890922291207691,0.2920856350075096,0.2952094566569888,0.2980637151310228,0.2944329952452149,0.2922543448048106,0.2895018444988876,0.2865231835909287,0.2837432424404443,0.2795763113988765,0.276232956882098,0.2760491803278688,0.2762837019730896,0.2768516376963723,0.2768929138269069,0.278690138626339,0.2796534084977555,0.2817378137038769,0.2832610830359495,0.28411708377546,0.2853506067377592,0.290988969900916,0.295214245965498,0.2983271009643771,0.3013147788370307,0.3076236480100808,0.3129794798228653,0.3196072461561881,0.3199435559736595,0.3229673590504451,0.3221042916474388,0.3225741375832157,0.3274263904034896,0.3323274236137307,0.0,2.544774858248457,51.72260738249035,132.81991821127656,198.10264439507932,fqhc1_80Compliance_implementation_low_initial_treat_cost,54 -100000,95736,48272,460.0568229297234,4851,49.37536558870226,3874,39.92228628729005,1413,14.47731260967661,77.38965647392791,79.75554985691339,63.34469261111818,65.09349373101594,77.20796863522536,79.57619025734634,63.27573204959765,65.02762467791598,0.1816878387025582,179.35959956705003,0.0689605615205337,65.86905309995927,252.09096,176.5715358321163,263318.6471128938,184435.71237445503,501.01523,334.12164132446804,522752.4024400434,348428.74111393705,482.13034,235.52239510864197,499993.1060416144,243299.4778462161,2483.12842,1169.0844236249714,2560608.2769282195,1188361.1133634,883.72399,404.9207350433987,906682.6794518258,406820.6544547715,1365.63912,584.8606169370933,1399473.0717807305,586475.6266938226,0.38072,100000,0,1145868,11969.029414222445,0,0.0,0,0.0,43069,449.2562881256789,0,0.0,43580,451.554274254199,1055092,0,37866,0,0,10060,0,0,77,0.8042951449820339,0,0.0,1,0.0104453914932731,0,0.0,0.04851,0.12741647404917,0.2912801484230056,0.01413,0.3579072532699168,0.6420927467300832,23.186403559305752,4.006389522291433,0.3048528652555498,0.2991739803820341,0.2065049044914816,0.1894682498709344,11.212313937331688,6.209598534866694,15.089363514810051,11470.488021080762,44.21358337623232,14.18212639695106,13.405362802114055,8.672797367982712,7.953296809184491,0.592410944759938,0.811044003451251,0.7138018628281118,0.5325,0.1171662125340599,0.7781569965870307,0.9168356997971604,0.8728323699421965,0.7430167597765364,0.1623376623376623,0.5118430792005921,0.7327327327327328,0.6479041916167665,0.4718196457326892,0.1051724137931034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026942711287577,0.0050282331234857,0.0073574929723256,0.0094885913403905,0.0117692534610963,0.0142967699890024,0.0167208735636871,0.0187217362011412,0.0208009649194537,0.0229906235925152,0.0249802679459187,0.0270825205839476,0.0292472808766988,0.0313240109561958,0.0332638831586764,0.0354692021496486,0.0374638874219502,0.0395281521366989,0.0415536362030079,0.0432925240948163,0.0582689496763416,0.0718831114460353,0.0854936684956513,0.0980159064130617,0.110500443056669,0.1263894911633121,0.1382617552198268,0.1484882990837208,0.1581285575454671,0.1670080538784089,0.1793436127142734,0.1900321299912372,0.200956885771761,0.2104077593465353,0.2193750687644405,0.2295996899396489,0.2375775012266381,0.2454715030564545,0.2525735794295043,0.2589313291465047,0.2642767964487191,0.2682550625737622,0.2734940755354463,0.2778183210307823,0.2815838942453459,0.285840838623948,0.2894371915797364,0.2923186344238976,0.2965766696809198,0.2996458802311652,0.2963450331659371,0.2927646025472112,0.2899415763159373,0.2870683818551117,0.2849979291166203,0.2805140165546257,0.2775590551181102,0.2785297283193633,0.2782932610904165,0.2784756378047486,0.2788584568027147,0.2793256710982319,0.281357548617158,0.2823474739427737,0.2839949575434674,0.2858948889290229,0.2864147434271705,0.290508358497027,0.2950557103064067,0.2996133512191273,0.3024425612906149,0.303248714823255,0.3060956548921538,0.3093654234247701,0.315852314474651,0.3185984452952778,0.3241708993128174,0.326417704011065,0.3325288281040493,0.3415730337078652,0.0,2.0293907789008485,50.86753857872267,138.37575886280896,200.43394502063572,fqhc1_80Compliance_implementation_low_initial_treat_cost,55 -100000,95765,48478,461.5778207069389,4885,49.955620529420976,3890,40.05638803320629,1490,15.193442280582676,77.34687979821054,79.70553230322969,63.33382307926016,65.08101502364133,77.1562089981396,79.51810853800858,63.26291845365723,65.01343120564574,0.1906708000709329,187.42376522111212,0.0709046256029282,67.58381799558322,252.09162,176.72564334572095,263239.82665900904,184540.9526922372,503.4644,335.78286188014255,525144.8545919699,350047.9631181981,482.0123,235.4100484235367,499735.1433195844,243047.88902652744,2510.83085,1175.3173521164215,2586726.7477679737,1192153.0539512562,883.79143,401.9686548157643,905285.8455594424,402187.8973812223,1437.929,606.1944932364146,1467353.0412990132,604146.474154704,0.38254,100000,0,1145871,11965.446666318592,0,0.0,0,0.0,43266,451.1878034772621,0,0.0,43532,451.0207278233175,1052688,0,37784,0,0,10149,0,0,85,0.8875894115804313,0,0.0,0,0.0,0,0.0,0.04885,0.1276990641501542,0.3050153531218014,0.0149,0.364191451644672,0.635808548355328,23.11760172855016,3.904141629084977,0.3030848329048843,0.2982005141388175,0.2025706940874036,0.1961439588688946,11.359235574942897,6.411497414265965,15.88107298873877,11506.478937189124,44.56047834373881,14.250395675814833,13.410021654871343,8.67806116867889,8.221999844373745,0.5969151670951157,0.8155172413793104,0.6912637828668363,0.6078680203045685,0.1074705111402359,0.7620660457239627,0.9079229122055674,0.8571428571428571,0.7711442786069652,0.1288343558282208,0.5249169435215947,0.7532467532467533,0.6212303980699638,0.5519591141396933,0.1016666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293380892545,0.0046241836693303,0.0068629441624365,0.0090958057664359,0.011383983071539,0.0136453432720311,0.0158935671322255,0.0182625561453654,0.020547525096604,0.0225560060613507,0.0248213498467248,0.0268191759161336,0.0290203821394047,0.0312229593308335,0.0333243890356671,0.0353425195629477,0.0373710806444932,0.0397406639004149,0.0417862043158288,0.0438793785663709,0.0587498564912903,0.0724872650439839,0.0863370447254198,0.0990761857717895,0.1110057225963514,0.1261940992476118,0.1377391488685145,0.1485615870383364,0.1589922455814747,0.1684105683655875,0.1802107980210798,0.1908610573858172,0.2013273375043448,0.2115405611966372,0.219520231975748,0.2293012655987255,0.2371099541811128,0.2449672350422066,0.2518862251670656,0.2583592891168926,0.2643554506755506,0.2701125225162,0.275411697898921,0.2798312984507734,0.2836324366301433,0.2871919122349584,0.2909597809644067,0.2940870051328962,0.2980943269379945,0.301066491112574,0.2976273645743766,0.2938922385968767,0.2916660813866921,0.2888517649091983,0.2858031364302744,0.2826677657690664,0.2793479461566381,0.279647698251588,0.2802690964830112,0.2806717904924566,0.2818263271858433,0.2830634676752157,0.2845392676714959,0.2848640213999108,0.2855053350917156,0.2861455188924742,0.2875298532923916,0.2922612686238763,0.2955023118957545,0.2990017429884329,0.3025148938105416,0.3042074622916115,0.305773701074323,0.3102717432442661,0.3140626452272516,0.318475073313783,0.3211246200607903,0.3195771498272006,0.3240379252649191,0.3279463933780055,0.0,2.0661331104646328,51.56111308689406,140.36713996400195,199.3157684543956,fqhc1_80Compliance_implementation_low_initial_treat_cost,56 -100000,95756,48143,458.2689335394127,4965,50.67045407076319,3906,40.22724424579139,1486,15.163540665859058,77.36211040614715,79.72363227756553,63.32787542470121,65.07564910181027,77.16521143838774,79.5294485896569,63.25327379695311,65.00414383303278,0.1968989677594095,194.18368790863383,0.0746016277481018,71.50526877748575,252.23176,176.6028214412727,263410.919420193,184430.03199932404,498.49159,333.1708440928685,520019.3721542253,347373.74542245053,482.20721,235.59402116774424,499905.0921091107,243229.8222865885,2519.13644,1199.7453665193957,2596125.3916203687,1218417.2641799734,910.02004,424.2449102193788,933518.724675216,426510.2679004868,1436.8416,621.914644782747,1467424.82977568,622070.8979453354,0.38073,100000,0,1146508,11973.223610008772,0,0.0,0,0.0,42871,447.12602865616776,0,0.0,43537,451.0735619700071,1052982,0,37806,0,0,10101,0,0,89,0.9190024645975188,0,0.0,0,0.0,0,0.0,0.04965,0.1304073753053345,0.2992950654582074,0.01486,0.3700270374662032,0.6299729625337969,23.065336106992756,3.9417548095045833,0.3120839733742959,0.2964669738863287,0.1922683051715309,0.1991807475678443,11.422575602754517,6.441425340532359,15.977526667748744,11520.460364504585,45.06252407362842,14.33931942729065,13.68675604808093,8.444956505899661,8.59149209235718,0.5960061443932412,0.8221070811744386,0.6956521739130435,0.5725699067909454,0.1259640102827763,0.75,0.912280701754386,0.8517350157728707,0.7461139896373057,0.155440414507772,0.5263940520446097,0.7503875968992249,0.6407982261640798,0.5125448028673835,0.1162393162393162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022491717576973,0.0041373435820471,0.0065272561161303,0.0087891319589095,0.0110269060576776,0.0132908298366399,0.0156935125323761,0.0179592420158457,0.0201838427009948,0.0222106168591791,0.0244585281811469,0.0266863887091306,0.0288371518811534,0.0308529384486969,0.0331509959748168,0.0354824035399694,0.0374546960753857,0.0393741634935621,0.0415787449455838,0.0437363942212547,0.0589887054009478,0.0727198543719791,0.0860259032038173,0.099486737205242,0.1120721480934549,0.1280459429731787,0.1397852884390978,0.1504992867332382,0.1604017523239662,0.1688595785748753,0.1807773912481556,0.1925719912993604,0.2032830755172638,0.2120917106040385,0.2206251375742901,0.2300405504221232,0.2379064677505806,0.2452743147756424,0.252464632942698,0.2591006423982869,0.2649475706580866,0.2699010503169665,0.2750778042055687,0.2789780356800307,0.2840489605595492,0.2868286791708772,0.2910997909808879,0.2956078072117464,0.2983069276172724,0.3012632855974892,0.2986039122766865,0.2953085672631246,0.293293574884663,0.2899372430209911,0.2866799086893362,0.2821919063841488,0.2790356195528609,0.2789971215491299,0.2787044121397602,0.2784533721528875,0.2789043442638214,0.2798423313003745,0.2806379174117353,0.2815863645442641,0.2836412239247697,0.2844800827728919,0.285391417351753,0.2898121904880555,0.2951918069779552,0.2992981217895933,0.3037809647979139,0.3053027925949168,0.3076923076923077,0.3119252336448598,0.3151431209602954,0.320323488045007,0.3263459508369778,0.3266916551588084,0.3327077747989276,0.3360061092019855,0.0,2.1917158177246177,52.86577246083491,144.72168790800006,193.9321389229559,fqhc1_80Compliance_implementation_low_initial_treat_cost,57 -100000,95769,48108,458.7079326295565,4795,48.91979659388737,3842,39.62660150988315,1469,15.067506186761896,77.32840490063373,79.68864121566006,63.31625382636724,65.06478249983023,77.13743705345235,79.49902796759542,63.24467887150112,64.99552978204082,0.1909678471813833,189.61324806463156,0.071574954866115,69.25271778941067,252.26168,176.7173683951885,263406.1752759243,184524.38826466643,499.89147,333.1988653055216,521494.0951664944,347437.7035340472,476.02712,232.39667623699347,493960.7597448026,240319.5074013501,2478.73122,1163.801092438542,2558235.8592028734,1185245.696660237,870.35791,396.0779633700558,897849.6068665226,402640.0643002538,1420.17868,601.8681042826323,1457369.1486806795,606850.13628188,0.37841,100000,0,1146644,11973.007967087471,0,0.0,0,0.0,43094,449.4669465066984,0,0.0,42934,445.19625348494816,1052189,0,37767,0,0,9911,0,0,92,0.9606448850880764,0,0.0,1,0.0104417922292182,0,0.0,0.04795,0.126714410295711,0.3063607924921793,0.01469,0.3761283851554663,0.6238716148445336,22.58717047402428,4.014966895552481,0.2943779281624154,0.3008849557522124,0.2053617907339927,0.1993753253513795,11.298796036968866,6.181098887861966,15.696992036587874,11366.597808640316,44.24605365525849,14.23018621681751,12.93040068728367,8.892036350385938,8.193430400771378,0.5819885476314419,0.8079584775086506,0.6755083996463307,0.5538656527249683,0.1318537859007832,0.7721943048576214,0.9218436873747496,0.841642228739003,0.7184466019417476,0.1824324324324324,0.4962235649546828,0.7214611872146118,0.6037974683544304,0.4957118353344768,0.1197411003236245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024421632905363,0.0046349824540051,0.0069548795841286,0.0092684810666883,0.0115257064963072,0.0138323011734028,0.0160609397944199,0.0180197655899048,0.020211004109673,0.0224783507687268,0.0244784993080826,0.0266340842351684,0.0285993418346359,0.0307762030323005,0.0325569876273127,0.0347814402513773,0.0367771118632839,0.0389210378943438,0.040953113309502,0.0428678553574404,0.0578356261612007,0.0712358281387273,0.0841957367389093,0.0963537560832045,0.1080520082606313,0.1234819739359284,0.1350356836088694,0.1464390617683368,0.1556849132176235,0.1643773924791713,0.1760689283791061,0.1875121718996819,0.1978698636843307,0.2069617899870956,0.216332236298995,0.226124808932013,0.234295662266067,0.2418997242698778,0.2493813145646498,0.2557971678658173,0.2616532654595939,0.2670073197539814,0.2724324836090795,0.2775426015421698,0.2823540846576274,0.2863198885972371,0.2895000626487908,0.2934331474549945,0.2960222855662088,0.2979037768953735,0.2951228051276527,0.291215667936569,0.2884146770899359,0.2857843773900746,0.2834961256420152,0.2795935855061819,0.2757562819235574,0.2764889253486464,0.276002046733754,0.276560105491999,0.2773172006871312,0.2780827578065049,0.2785827296194521,0.2789610736462576,0.2804936381899933,0.2831083357085482,0.2848033102822809,0.2899079706754016,0.2940440179409617,0.2977769034035019,0.3004057709648332,0.3013985647687392,0.3095134800123954,0.3131752701080432,0.3141555906682777,0.3186658864833235,0.3203207747011651,0.3227899432278994,0.3224388904147212,0.3271173271173271,0.0,1.8430301768764048,52.31387031458787,140.41885253177148,192.45483709101072,fqhc1_80Compliance_implementation_low_initial_treat_cost,58 -100000,95731,47836,455.7353417388307,4833,49.29437695208449,3874,39.8930336045795,1489,15.13616278948303,77.31464774318667,79.68101312172624,63.30648041847581,65.0559500255889,77.12442163565944,79.4960560291054,63.23407434265032,64.98857208451501,0.1902261075272235,184.9570926208344,0.0724060758254836,67.37794107388595,251.98492,176.44652408406938,263221.6314464489,184314.6985658453,497.94158,331.1907793248479,519510.7540921958,345323.92178035434,469.48631,228.79379140379436,487467.19453468575,236608.71926898675,2485.39031,1167.0347563118517,2558359.622274916,1181214.0360039575,867.19901,388.12178221783154,891272.6807408258,390854.5146372902,1437.89994,612.0460540868393,1462097.2307820872,603957.8594459259,0.3796,100000,0,1145386,11964.619611202224,0,0.0,0,0.0,42861,447.1174436702845,0,0.0,42519,441.1319217390396,1056790,0,37923,0,0,10082,0,0,85,0.8774587124337989,0,0.0,2,0.0208918741055666,0,0.0,0.04833,0.1273182297154899,0.3080902131181461,0.01489,0.3509710661910424,0.6490289338089575,23.035188056000525,4.012791715767022,0.3180175529168818,0.2767165720185854,0.2121837893649974,0.1930820856995353,11.087184017567116,5.976107910612044,15.85144115564387,11410.148832736868,44.49720549943072,13.238142170278405,13.950202257296889,9.18313022588608,8.125730845969358,0.5758905524006195,0.8013059701492538,0.6793831168831169,0.5547445255474452,0.105614973262032,0.7537117903930131,0.913978494623656,0.8611111111111112,0.6956521739130435,0.1006711409395973,0.501282521069989,0.71499176276771,0.6145374449339207,0.5073170731707317,0.1068447412353923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185078255584,0.0046131540793462,0.0070139466899449,0.0093384818615994,0.011475660003052,0.0133766657157993,0.0155374868650595,0.0178983480018786,0.0201377956780406,0.022449940624872,0.0245455384331457,0.0268297190734351,0.0288012507971774,0.0309009603099369,0.0329995871180842,0.03511837072263,0.0372272675496277,0.0391515943923875,0.0409782371351626,0.0430891683248773,0.057863578938576,0.0713007253582306,0.0844322747825722,0.0978587804724144,0.1098327462932107,0.1250357048399894,0.1366159659494974,0.1468029601235159,0.1567076429716729,0.1668401566775768,0.1785367642300973,0.1893549470673009,0.1992156008279769,0.2085127834215515,0.2166262403528114,0.2267226256300935,0.2361139073440261,0.2436050708291978,0.2513819695625469,0.257433247200689,0.2632689498458042,0.2688130469930758,0.2735988812382228,0.2785783707898873,0.2828581151705194,0.2866918183163189,0.2897416014208169,0.2917413466549721,0.2941594705000258,0.2970815993257125,0.2940085476977663,0.2906002855887521,0.2885006950978052,0.2862102745843778,0.2833928862662535,0.2806819223366227,0.276763433047983,0.2765054714632068,0.2771129521666496,0.2767286642342262,0.2771115842952669,0.2782435836876082,0.2787110472740898,0.2796410643685309,0.2819263293679231,0.2839327296248383,0.2862247936697013,0.2918162800137384,0.2966520498364307,0.3019581576770024,0.3052865031230198,0.3080008444162972,0.3110246107483677,0.3134305682163476,0.3140395242109207,0.3184015089001532,0.320109439124487,0.3254534338699816,0.3240208162147356,0.3291139240506329,0.0,2.1499469381778264,49.8357946077094,144.33007756654942,200.12384532344095,fqhc1_80Compliance_implementation_low_initial_treat_cost,59 -100000,95818,48197,459.4752551712622,4752,48.53994030349204,3815,39.27237053580747,1478,15.059800872487424,77.3504688262772,79.68210729652859,63.33176974345843,65.05972208293032,77.16048040220733,79.49599135629067,63.2599608779756,64.99196031050938,0.1899884240698668,186.1159402379116,0.0718088654828292,67.76177242093695,252.74612,177.03040247430584,263777.2861049072,184756.93760494463,498.70102,331.96138372090246,519946.0748502369,345929.04644315515,473.42336,230.9925391487637,490617.2431067231,238341.43415017208,2429.35181,1150.0941603674437,2500046.316975933,1164955.1549473412,883.16356,405.0777405411517,905631.4993007577,406679.5075467554,1422.3194,603.8488014898167,1450073.6396084244,599941.1823165875,0.38041,100000,0,1148846,11989.876641132149,0,0.0,0,0.0,43012,448.3499968690643,0,0.0,42719,442.4847105971738,1052672,0,37860,0,0,9959,0,0,83,0.8453526477279844,0,0.0,1,0.0104364524410862,0,0.0,0.04752,0.1249178517914881,0.311026936026936,0.01478,0.3666531768514771,0.6333468231485229,23.158825861700056,3.988311680026294,0.3111402359108781,0.2862385321100917,0.2102228047182175,0.1923984272608125,11.267269035920082,6.322508322470955,15.69131349485574,11460.90525640727,43.73124808380912,13.415042962883287,13.493962131702377,8.814307770581994,8.00793521864146,0.5897771952817824,0.8003663003663004,0.6840775063184499,0.5960099750623441,0.1171662125340599,0.7625,0.9244897959183672,0.841642228739003,0.7680412371134021,0.1485714285714285,0.5105162523900574,0.6993355481727574,0.6205673758865248,0.5411184210526315,0.1073345259391771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00217800919829,0.004319479228983,0.0065259311884705,0.0086666734401511,0.0107614378420163,0.0129351612311829,0.0149201978481464,0.017073768482967,0.0193039139503496,0.0217533730524333,0.0238405299262738,0.0260717769677055,0.0280951450519842,0.0302783756784312,0.0322597279374606,0.0342721937510332,0.0362924930644693,0.0383143352037588,0.0404780462457781,0.0426725798223971,0.057834341748383,0.071953578336557,0.0855532035294364,0.0985606219794074,0.1105503813898605,0.1254729144209836,0.136714980967629,0.1479751938644172,0.1578947368421052,0.1665737982469299,0.1784815030021305,0.1903382373606892,0.2006300238974581,0.2093356211543295,0.2182880147835269,0.228084946105529,0.236617455056744,0.2443039256500557,0.2521486392897285,0.258432113611636,0.2641943881978594,0.2690670533479898,0.2745554990358795,0.2783933683920507,0.2829008115857511,0.2866355128663551,0.2903173291256543,0.2946995836569435,0.2980338315674947,0.3013132712994126,0.2995163224337469,0.2964242933263572,0.2933353994393339,0.2896204067483244,0.2856358428683793,0.2830321377243678,0.2783959788828122,0.2782939258385358,0.2785955228457528,0.2797906243879858,0.2803051498703672,0.2819942963909922,0.2836088470117363,0.2840544871794871,0.2851738339239536,0.2862254025044722,0.286776555740903,0.2907440903137279,0.2963001527141469,0.3005980484734026,0.3047254725472547,0.3099455040871934,0.3117658027223569,0.3125515792632605,0.3162678538304582,0.3232417326502096,0.3267490952955368,0.3256231306081755,0.3264920334863624,0.3330804248861912,0.0,2.108363736831524,52.26395220158134,131.32241623614442,196.8689060762668,fqhc1_80Compliance_implementation_low_initial_treat_cost,60 -100000,95721,48122,459.48120057249713,4837,49.16371538115983,3773,38.87339246351375,1397,14.281087744591051,77.30949638025908,79.6686820437783,63.31695901961641,65.05929223675868,77.11772778537139,79.47999905899707,63.242285613003794,64.9879806674557,0.1917685948876908,188.6829847812379,0.074673406612618,71.31156930297777,251.12318,175.90267329007867,262348.6382298555,183765.5880377979,500.61594,334.35398467819,522459.6274589693,348766.9799756553,474.11972,231.7460172188429,491814.6801642273,239494.73276963172,2424.52125,1167.455342355795,2497575.202933525,1184432.2418842611,861.58619,407.4094908917624,882493.1833140064,408013.4984922448,1352.62004,600.3281264131795,1382399.995821189,599436.268688165,0.38111,100000,0,1141469,11924.93810135707,0,0.0,0,0.0,43177,450.5072032260424,0,0.0,42835,443.9882575401427,1055064,0,37920,0,0,9972,0,0,83,0.8671033524513951,0,0.0,2,0.0208940566855757,0,0.0,0.04837,0.1269187373724121,0.2888153814347736,0.01397,0.3729320310942794,0.6270679689057206,22.95893868892731,4.053027986799435,0.3087728597932679,0.2865094089583885,0.208322289954943,0.1963954412934004,11.495476242598116,6.318266068502815,15.211516146135915,11414.378296903922,43.61168396779858,13.51817524872027,13.243690338181707,8.565537940945338,8.284280439951251,0.589451364961569,0.81313598519889,0.6952789699570815,0.5610687022900763,0.126855600539811,0.7401960784313726,0.9014084507042254,0.8259587020648967,0.7305699481865285,0.1897435897435897,0.5170655158885837,0.738013698630137,0.6416464891041163,0.5059021922428331,0.1043956043956044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116213123221,0.0046833184656556,0.0066654492330168,0.0090192573332249,0.0110506785950287,0.0131607071971663,0.0153901034500331,0.0176692151438749,0.01982748047913,0.0219627268168374,0.0240059861212189,0.0261515083064665,0.0283084832904884,0.0304003954522985,0.0326103771541722,0.0345500945374895,0.0366475890833445,0.038403302082469,0.0402627367020723,0.0423741172058915,0.0572842703199398,0.0716715333814771,0.085348073715898,0.097994679117112,0.1102206099464293,0.1260510423166823,0.1371483749111321,0.1469147894221351,0.1561201269217209,0.1654298215511324,0.177672905151329,0.189178361053361,0.2000348284156336,0.2089622486619017,0.2177671570786714,0.2276502090008981,0.2359841798315196,0.2435306708725285,0.2504061899946598,0.2568529664660361,0.2636735261079522,0.2694292635545517,0.2746017646710487,0.279190009477081,0.2821151649206387,0.285538097234898,0.2899907391184642,0.2936077592790591,0.2964887276496502,0.2998758223466934,0.2965079450651643,0.293040797225128,0.2902507434918039,0.287232966937732,0.2836998514115899,0.2804881783657968,0.2766759599543784,0.2761184232119998,0.2766429840142096,0.2769288443000464,0.2775905959868224,0.278089554598269,0.2782927084423057,0.2801116071428571,0.2813476233959725,0.2830698133291793,0.2833437695679399,0.2888110356908255,0.292822499040441,0.297377010499823,0.3016281062553556,0.3062816188870151,0.3135550831561836,0.3178933051231676,0.3209957113555846,0.322274325908558,0.3264594389689158,0.3345521023765996,0.3331515812431843,0.3413150893196503,0.0,2.065186978041498,53.33383163209936,134.2914964537557,186.40512045956703,fqhc1_80Compliance_implementation_low_initial_treat_cost,61 -100000,95732,48025,458.44649646931015,4907,49.993732503238206,3899,40.1224251034137,1467,14.927088121004472,77.40440741590693,79.760757704281,63.3594678928421,65.09873645133041,77.21258232746462,79.57266336839783,63.286538436783104,65.02963549414075,0.1918250884423145,188.0943358831786,0.0729294560589934,69.10095718966147,251.84742,176.39204276997577,263075.48155266786,184256.09281115583,499.65964,332.9262731297592,521335.9169347762,347169.1107777537,478.54845,233.1997737447396,495376.5303137927,240171.01909621144,2517.73168,1188.0722176247284,2593566.2056574607,1204626.8098699788,897.28226,411.2287473684794,923388.6788116826,415671.96193068,1423.86638,610.9345111072822,1451534.4294488782,608547.1070867779,0.38015,100000,0,1144761,11957.976434212176,0,0.0,0,0.0,43026,448.8363347678937,0,0.0,43388,448.81544311202106,1059303,0,37989,0,0,9925,0,0,71,0.7312079555425564,0,0.0,0,0.0,0,0.0,0.04907,0.1290806260686571,0.298960668432851,0.01467,0.3574793875147232,0.6425206124852768,22.77628263855788,4.025933751575016,0.2995639907668633,0.2931520902795588,0.2064631956912028,0.2008207232623749,11.500621500749036,6.249048512548189,15.662379682337743,11394.402074180109,44.74084427107687,14.078626127088034,13.26562644334062,8.941238475227282,8.455353225420922,0.5886124647345473,0.7979002624671916,0.7011986301369864,0.5751552795031056,0.1289910600255427,0.7572977481234362,0.9111570247933884,0.8496932515337423,0.7272727272727273,0.1775147928994082,0.5137037037037037,0.7147192716236722,0.6437054631828979,0.517948717948718,0.1156351791530944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021160914070489,0.004448948568533,0.006715766835068,0.0088254709795358,0.0110926967148943,0.0131718241042345,0.0155414012738853,0.0176219095333816,0.0197298512342651,0.0217651573292402,0.0238902952721607,0.0257612923752732,0.027757502236021,0.0299415999752804,0.0322231164489568,0.0342777990262458,0.0364210635323357,0.0385165975103734,0.0404477100069629,0.042318949265173,0.0563589095730796,0.0707947006006823,0.0838779385076944,0.0967911514845655,0.1088986802715351,0.1242095467715669,0.1362353590222373,0.147178127694912,0.1570439539306395,0.1660428753740066,0.1782679404193906,0.1898650622747881,0.2007853032989264,0.2097188658407234,0.218734528171106,0.227801707433203,0.2361386911800798,0.2444044741723343,0.2519531471465342,0.2583258943898922,0.2637805737524984,0.2694466813720341,0.274638245638883,0.2787644972110412,0.282882708350991,0.2863934547062726,0.2901993583581959,0.2924372732577314,0.294893638992152,0.298083747338538,0.2952107690657514,0.292081243318806,0.2889771180852705,0.28615411175692,0.2825849173736955,0.2791452158284339,0.2759049809394789,0.2762745610026764,0.2761641231093079,0.2765776311588805,0.2764867030693825,0.2777941784259314,0.2784986773864323,0.2789112625713207,0.2795339509120428,0.2803036190772259,0.2812147211560171,0.2862971037060106,0.2898460041019223,0.2948506289308176,0.2961160674056051,0.3021567596002104,0.3056869089099054,0.3088599984970316,0.3134121559209311,0.320855614973262,0.3278465720326185,0.3389796731765643,0.3402739726027397,0.3464998044583496,0.0,2.362794178392828,51.94269068050909,144.2430011304316,193.30793646986768,fqhc1_80Compliance_implementation_low_initial_treat_cost,62 -100000,95740,47811,455.8700647587216,4823,49.080843952371005,3843,39.46104031752664,1408,14.2886985585962,77.33232137485312,79.70017341012776,63.31916690730778,65.07205794291028,77.14856740440449,79.52115217732458,63.24763147841867,65.00523891337043,0.1837539704486346,179.02123280317994,0.0715354288891134,66.8190295398432,253.98472,177.8865368284776,265285.89931063296,185801.6887700832,499.85944,333.54600683677194,521412.6906204304,347699.0566500647,476.01139,233.1659938177815,493217.2132859829,240416.04268410444,2463.68679,1173.2838611373284,2530713.6620012536,1182893.5984304666,867.04923,401.7709042316218,888666.983496971,402689.7999396405,1360.17632,596.0247620153125,1380417.798203468,587003.4232452065,0.3786,100000,0,1154476,12058.449968665136,0,0.0,0,0.0,43134,449.8015458533529,0,0.0,42937,444.4746187591393,1045310,0,37496,0,0,9921,0,0,96,1.0027156883225403,0,0.0,0,0.0,0,0.0,0.04823,0.1273903856312731,0.2919344806137259,0.01408,0.3669579030976966,0.6330420969023034,23.0764289062402,3.849525301513373,0.3205828779599271,0.2927400468384075,0.1956804579755399,0.1909966172261254,11.036693408139458,6.126321555757545,15.217114038291935,11384.988275130338,44.35359184095035,14.091303228217694,14.045664648865705,8.27186812237657,7.944755841490379,0.5930262815508717,0.8035555555555556,0.6948051948051948,0.5837765957446809,0.108991825613079,0.7647058823529411,0.9148936170212766,0.8413978494623656,0.7650273224043715,0.136094674556213,0.5111452728670254,0.7088815789473685,0.6313953488372093,0.5254833040421792,0.1008849557522123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.004777409244439,0.0073003817723986,0.0095942759573949,0.0117807438756409,0.0139159136520614,0.0161336379211878,0.0183668885531098,0.0204695104494703,0.0225227530994379,0.0244397515018555,0.026610816804238,0.0285764231655149,0.0305786145384884,0.0323452637660823,0.034417893170167,0.036500129433083,0.0386881912310916,0.0408218409320017,0.0426391709628703,0.0580534705765677,0.0725003138994684,0.0852527795259072,0.0982985972365349,0.1098832734059491,0.1258197588322403,0.136315884419071,0.1467288326839965,0.1565073431241655,0.1651850342616323,0.1770376673596225,0.1878490108653305,0.1979719731917486,0.2074404664238287,0.2162099702872235,0.2261879713402952,0.233970138594416,0.2417351187127264,0.2493134518054515,0.2567227083237894,0.2624367890577085,0.2678441923031933,0.272712215320911,0.2764846117906389,0.2800597370114496,0.2839825559908345,0.2886334929905081,0.2918096109374603,0.2962598934354146,0.2997141313941693,0.2965919475353437,0.2929421943883647,0.2899966271291247,0.2870419734585957,0.2842343944513605,0.2805369742508934,0.2760517083346502,0.2759433190430997,0.2766764145810664,0.2780268260575657,0.2780934579439252,0.2791128634795465,0.2806849029024849,0.2802869939169767,0.2816334355828221,0.2830129950976577,0.2827422231028333,0.2879010799812177,0.2903822011438136,0.2943616895175629,0.3007814264420254,0.3038557148146189,0.3050783699059561,0.3097772744431861,0.3148267898383372,0.3152589502954466,0.3173376912791561,0.3179850452577725,0.3165198825727248,0.3055659320134479,0.0,2.5291692432248194,53.70950869998505,134.92944640535444,192.21714816697843,fqhc1_80Compliance_implementation_low_initial_treat_cost,63 -100000,95733,48255,460.62486289994047,4730,48.28011239593452,3774,38.91030261247428,1410,14.43598341219851,77.41699606751023,79.77053623375386,63.36600846061516,65.10063081929351,77.24097398014622,79.59646769599428,63.3003077813691,65.0379094665781,0.1760220873640037,174.06853775958098,0.0657006792460634,62.721352715414014,253.2706,177.50155329546106,264559.347351488,185413.1316217616,505.07611,336.2667506147134,527072.1590256233,350739.96457585174,478.27222,233.32757152932425,495903.06372933055,240966.32170425943,2435.21898,1130.5962201100156,2513414.2458713297,1150733.4485275208,860.77781,389.8287065635092,885012.8377884324,393116.5537619637,1373.56134,577.0041109973398,1407620.1100978763,578727.9367087948,0.38092,100000,0,1151230,12025.42487961309,0,0.0,0,0.0,43545,454.31564873136745,0,0.0,43095,446.6171539594497,1046985,0,37549,0,0,9932,0,0,95,0.98189756928123,0,0.0,1,0.0104457188221407,0,0.0,0.0473,0.1241730547096503,0.2980972515856236,0.0141,0.3704825358368665,0.6295174641631335,23.0597198516427,4.0485047038918935,0.3089560148383677,0.2859035506094329,0.2053524112347641,0.1997880233174351,11.324144445670726,6.050954804448241,14.87605663706411,11397.38718030155,42.96045199850807,13.23317173614932,12.94012566508306,8.550109552914426,8.237045044361263,0.5842607313195548,0.8109360518999074,0.692967409948542,0.5509677419354839,0.1259946949602122,0.7547857793983591,0.937219730941704,0.8711864406779661,0.6789473684210526,0.144578313253012,0.5143817706387748,0.721958925750395,0.6326061997703789,0.5094017094017094,0.1207482993197278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.004396762200002,0.006531970139565,0.0091085409071984,0.0112148202375142,0.0135080111565789,0.0155848656582541,0.0178709940804245,0.0202137878880781,0.0223843187003181,0.0245829405254744,0.026622330326262,0.0287221028609023,0.030802343902866,0.0327539072574405,0.0344318029161629,0.0365883960740464,0.0385309492200464,0.0406161009374545,0.0426289964684189,0.0571890988827398,0.0708568319504462,0.0847338494786093,0.09775258447527,0.1097142977673251,0.1245452622673434,0.1358964840642732,0.1468253123603158,0.1558617742883085,0.1652620518099159,0.1773913979652258,0.1888608854611732,0.1990720114748932,0.2083474386554989,0.2168889084158959,0.2259484570290897,0.2354003008524151,0.243115710000337,0.2513601124359613,0.2581073197515471,0.2638561457033236,0.2693390331359426,0.2745767517691953,0.2784696550981588,0.2818687781159438,0.2856053055750372,0.2893021280847238,0.2925943791413846,0.2957931978410764,0.2981604294962893,0.2960173962066605,0.2931294569391113,0.2895882485114032,0.2878501708502141,0.2846412539445029,0.2811184330953688,0.2768952216011965,0.2769707344909106,0.2758527158066047,0.2755148984358412,0.2764401210388549,0.2768788276037489,0.2768585604849592,0.2785478985651434,0.280174157169708,0.2819348011253645,0.2835400225479143,0.2890654089611518,0.2933781256493731,0.2962890472089564,0.299852090896867,0.3053055671829217,0.3074067198811954,0.3123590437528191,0.3179761794848121,0.3160519601020645,0.3210061386435095,0.3223645320197044,0.3252401280683031,0.3309937199852235,0.0,1.95965847769682,47.84051130872582,140.09798847410303,193.93074555230828,fqhc1_80Compliance_implementation_low_initial_treat_cost,64 -100000,95705,47603,453.257405569197,4829,49.47494906222246,3841,39.65310067394598,1405,14.34616791181234,77.3508434030137,79.7399402147394,63.31502979323547,65.08212786137355,77.16736578928236,79.55987603111494,63.24597923649016,65.01655042454182,0.1834776137313412,180.06418362446652,0.0690505567453101,65.577436831731,252.46034,176.71643151646876,263789.89603469,184646.7911984418,498.54877,332.53072614339163,520422.5798025181,346954.06315593934,473.69121,231.18263541766976,492127.4959510997,239387.26262482643,2475.3738,1169.8219829646805,2555472.796614597,1191488.193591103,888.05616,408.7345585326688,909431.1060028212,408681.7850572331,1363.05886,585.4113218702868,1392601.5150723578,584549.776857409,0.37811,100000,0,1147547,11990.449819758633,0,0.0,0,0.0,42855,447.2911551120631,0,0.0,42911,445.483517057625,1053750,0,37837,0,0,10003,0,0,90,0.9403897393030668,0,0.0,0,0.0,0,0.0,0.04829,0.127714157255825,0.2909505073514185,0.01405,0.3619558735837805,0.6380441264162194,23.031045360100286,3.940324847949329,0.3043478260869565,0.2902889872429054,0.2035928143712574,0.2017703722988805,11.333055663668402,6.273538848207697,15.092832049846916,11344.8283079409,44.21944683419353,13.710906666135273,13.31861475654708,8.73239134291487,8.45753406859631,0.5902108825826607,0.8143497757847533,0.7023096663815227,0.5677749360613811,0.1212903225806451,0.7691652470187393,0.9432773109243696,0.850609756097561,0.736318407960199,0.1597633136094674,0.5114360704911886,0.7183098591549296,0.6444708680142688,0.5094664371772806,0.1105610561056105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.00463437141901,0.0067912576515851,0.0091572485567932,0.011404097743596,0.0137527760233084,0.0160666741474461,0.0184651837326633,0.0205356868921365,0.0227975666209213,0.0250435852733053,0.0269612374437665,0.0292012096027648,0.0314753760560478,0.0336126648640838,0.0356747816198893,0.0375032375032375,0.0395138355510348,0.0414707717911379,0.0432679779438589,0.0579664734450885,0.0719618046466825,0.0851019165774503,0.0976931087804929,0.1100293242758591,0.125949434042103,0.1374322072574054,0.147473779481446,0.1572860776811098,0.166766814026353,0.1784828953891918,0.189430841505921,0.1996605411757026,0.2084888008666061,0.2169543393069437,0.2266851441241685,0.2355679598102149,0.2430570408978847,0.2506984033250812,0.2566653675981752,0.2618380531178363,0.2672895226721927,0.272142603340045,0.2762362703247158,0.2800641563080961,0.2838275696386551,0.2864037006938801,0.2898018329498799,0.2930461649839049,0.2954740214367641,0.2918253380878692,0.2882089470213234,0.2847305178834938,0.2819674021126659,0.2782240764576213,0.2747095239547437,0.2713384833674917,0.2713130157692622,0.2721520063959719,0.272672384706906,0.2744447756744671,0.2754351195965701,0.2767959128574692,0.2775192767880883,0.2778095510437517,0.2776888108275648,0.2780589293747188,0.2824529296814417,0.2865254119927988,0.2914377021707783,0.297777381058645,0.3017705123518044,0.303686293913904,0.3043967587034814,0.3076851679970299,0.3109362152002819,0.3150746944318696,0.3149823043649233,0.3145977623867874,0.3194864048338368,0.0,1.8632924147379972,51.30986236120048,143.16719663564854,192.58424064051997,fqhc1_80Compliance_implementation_low_initial_treat_cost,65 -100000,95724,48301,459.978688730099,4842,49.3293218001755,3841,39.54076302703606,1433,14.594041201788476,77.26691653433518,79.62692441127638,63.2951211478972,65.0393323035822,77.08687167048294,79.45160704539072,63.22688439654313,64.97535449362987,0.1800448638522453,175.31736588566105,0.0682367513540711,63.97780995233404,251.97524,176.5981843874512,263230.997451005,184486.8417402649,498.41867,332.27568386172584,520064.02783001127,346499.53318273794,477.54919,233.48027284537795,495436.83924616606,241240.49892819976,2474.44192,1165.445927691566,2546833.876561782,1179607.1195406625,889.247,407.9322787920549,912524.058752246,409865.78280264727,1390.1511,592.1881666177162,1416373.5949187246,587482.7721680348,0.38312,100000,0,1145342,11965.045338682045,0,0.0,0,0.0,42852,447.0352262755422,0,0.0,43224,448.1634699761815,1051766,0,37714,0,0,9872,0,0,80,0.8252893736158121,0,0.0,0,0.0,0,0.0,0.04842,0.1263833785759031,0.2959520859149112,0.01433,0.3667457493080269,0.6332542506919732,23.366782600670057,3.99860304559454,0.2944545691226243,0.2980994532673783,0.2035928143712574,0.2038531632387399,11.228152222577956,6.207611758262374,15.335157200246002,11474.788703983731,44.245512546518704,14.166017863939844,12.839726610892775,8.684773836631793,8.554994235054298,0.5925540223900027,0.8104803493449781,0.7082228116710876,0.5805626598465473,0.1187739463601532,0.7813798836242727,0.9266409266409268,0.8850931677018633,0.7712765957446809,0.1714285714285714,0.5064442759666414,0.7145135566188198,0.6378244746600742,0.5202020202020202,0.1036184210526315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0051404759249308,0.0074379997564638,0.0094269664062738,0.0118585114822122,0.0141630944986916,0.0165044089912839,0.01849715703188,0.0208233237582163,0.0229385031116934,0.024981292220639,0.02736027267874,0.029512782016741,0.0316928971654581,0.0337257167617534,0.0355688325649666,0.0376215477336978,0.0395181872886103,0.0416614693775726,0.0436558377961616,0.0589648007183953,0.0726412526952626,0.0860654017294937,0.0987646526506303,0.1109516775691074,0.1260714966029589,0.138026583998641,0.1483804999627211,0.1582116046795132,0.1673089515549019,0.1788790547751749,0.189446310542854,0.1999433742418137,0.2091373004226987,0.2182297003955792,0.2282584568942555,0.2373887572112159,0.2459982201795591,0.2538700042022055,0.2600967268726506,0.2652768458316944,0.2702045018484721,0.2744917039456555,0.2788297897840313,0.2824103878435993,0.2858410460544964,0.2891128779815939,0.2928884137650173,0.2959704586680487,0.2994119590353485,0.2972192614379967,0.2936171973029245,0.290982970498187,0.2866911467067599,0.2833001397104723,0.2808205536745668,0.2776158184929336,0.2770419063270337,0.277516623647459,0.2780653221488488,0.2790392931354012,0.2799992101573761,0.2803587519121561,0.2816065010157837,0.2838877139011728,0.2848481694465405,0.2851855015517781,0.2883956361807149,0.2929307182164526,0.2958388295958748,0.2987072312822621,0.3014721570300832,0.3062790990310809,0.3099658961727927,0.316331305568554,0.3184593705965242,0.322785768357305,0.3193193193193193,0.3205233033524121,0.3291284403669725,0.0,2.231710320949661,52.40188196834546,136.6358238994636,195.5264973888929,fqhc1_80Compliance_implementation_low_initial_treat_cost,66 -100000,95703,47939,457.36288308621465,4934,50.36414741439662,3956,40.75107363405536,1479,15.151040197276991,77.288290147924,79.65587510877201,63.294707477804174,65.04338067028844,77.1033699641955,79.4720825226468,63.224956520983206,64.97594320674378,0.1849201837285079,183.79258612520744,0.0697509568209682,67.43746354466396,252.2267,176.71016523911584,263551.5083121741,184644.3321934692,499.62766,332.4964261233863,521511.37372914114,346876.0604405152,478.04026,233.65456313827332,494901.4137487853,240774.07870794303,2551.73266,1206.816214797352,2631977.879481312,1226969.423760852,892.47608,407.4430990226535,919466.6206910964,412761.4941680532,1432.41398,605.6035417981675,1469645.1730875731,611461.5221434558,0.38,100000,0,1146485,11979.614014189732,0,0.0,0,0.0,43203,450.84271130476577,0,0.0,43282,447.6662173599573,1048724,0,37704,0,0,10076,0,0,55,0.5746946281725756,0,0.0,4,0.0417959729580054,0,0.0,0.04934,0.1298421052631579,0.2997567896230239,0.01479,0.3629962839820067,0.6370037160179933,22.904607736443705,3.933872315594045,0.3053589484327603,0.2967644084934277,0.1999494438827098,0.1979271991911021,11.64294272594879,6.63125254150597,15.816428138367773,11447.728465514154,45.63064429484651,14.51731416764176,13.864899484055334,8.800225458049562,8.448205185099862,0.5993427704752275,0.8023850085178875,0.722682119205298,0.5903919089759798,0.1136653895274585,0.7807153965785381,0.9195402298850576,0.8943089430894309,0.7377777777777778,0.1647058823529411,0.5119850187265917,0.7085889570552147,0.6471990464839095,0.5318021201413428,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800119506983,0.0047039263592218,0.0067987173763039,0.0093358255958064,0.0115836791147994,0.0136138235803235,0.0158031035256214,0.0179860154136681,0.0202293821809706,0.0222690709621957,0.0243612474762485,0.026472731751881,0.0283981081636849,0.0306388325317459,0.0327904362087283,0.0347147581645308,0.0370266828192464,0.0389069926731563,0.0409294681769484,0.0427940134239379,0.0577969482710002,0.07153925079046,0.0850387255210629,0.0977280619600332,0.1103135984124806,0.1253917167781824,0.1363650842526624,0.1472599821025269,0.1569048840988794,0.1658399364384032,0.1776757024864678,0.1892155375983015,0.2002439210305663,0.2097974822112753,0.2178921055819229,0.2272631473860523,0.2356189496747076,0.2431548927440172,0.2510292746172918,0.2582752563234095,0.2637089947703475,0.2703339467607515,0.275726704538716,0.2799951969260326,0.2841007290563649,0.2877766251728907,0.2914658634538152,0.2938994071524192,0.297291334086101,0.3006094417196568,0.2976556184316896,0.294090902828486,0.2910556253440415,0.2883610520068899,0.28609275465857,0.2816627340422272,0.2787362689543828,0.2794660281745576,0.279273894704486,0.278674490360092,0.2791398412936068,0.2795190222747881,0.2796220419767539,0.2811054784774102,0.2822603719599428,0.2826608843800821,0.2830172681796343,0.2876849135509643,0.2912932807977963,0.2954967044243596,0.2981549480937486,0.3047930743243243,0.3075152420057235,0.3138581848259267,0.3172324960897966,0.3186138154844691,0.3209802749551703,0.3215064420218038,0.3311134789557805,0.3313653136531365,0.0,2.3144994335110383,56.28353655187656,135.00204097715545,199.91563980252147,fqhc1_80Compliance_implementation_low_initial_treat_cost,67 -100000,95839,48293,460.6997151472783,4860,49.61445757989962,3853,39.71243439518359,1449,14.795646866098352,77.36488025655099,79.6798920556385,63.35773544642036,65.0712074077762,77.1820836474018,79.49834140769586,63.28753047831532,65.00323402244773,0.182796609149193,181.5506479426432,0.0702049681050382,67.97338532847164,253.47432,177.559150058081,264478.15607424953,185267.037698725,501.44568,334.8606780820622,522689.4270599652,348872.72475094907,477.33673,233.6775581937789,494963.0213170004,241417.6838507584,2471.20105,1165.056964706638,2546771.001366876,1184009.6737524793,860.04487,393.1166281911406,880761.2454220097,393734.45104992506,1401.44414,607.5221810461017,1431168.6265507778,607887.0870192396,0.38146,100000,0,1152156,12021.734367011342,0,0.0,0,0.0,43174,449.9420903807427,0,0.0,43133,446.9892215069022,1048905,0,37658,0,0,10090,0,0,87,0.907772409979236,0,0.0,0,0.0,0,0.0,0.0486,0.1274052325276569,0.2981481481481481,0.01449,0.3581441263573544,0.6418558736426456,23.0394282062258,3.95801284547664,0.3124837788736049,0.2940565792888658,0.1995847391642875,0.1938749026732416,11.113751719075712,6.044899193343371,15.651239216994393,11445.3363066662,44.38635317542768,13.93888322820694,13.794020161836531,8.518507383391233,8.134942401992976,0.5875940825330911,0.8172992056487202,0.6901993355481728,0.5604681404421327,0.1017402945113788,0.7538200339558574,0.934020618556701,0.8608695652173913,0.6842105263157895,0.1186440677966101,0.5143925233644859,0.7299382716049383,0.6216530849825378,0.5250836120401338,0.0964912280701754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.0044507076523784,0.0068085883594447,0.0089891520741071,0.011033038102114,0.0132875819655439,0.015423352158046,0.0174775915225514,0.0197088649002289,0.0219151440708326,0.0239720411593489,0.0259125847931611,0.0280681199190125,0.0302590545589279,0.0324588981085399,0.0343859359354192,0.0364287044124035,0.0383766590341597,0.0403073408784134,0.0423745565392898,0.0570099501449759,0.0711239783440289,0.0838535992625492,0.0974736444201772,0.1097292572740388,0.1260321415749794,0.1371273597898171,0.1482576063614908,0.1583933429348696,0.1680983697864227,0.1803649038254658,0.1910450019998486,0.2016209638868367,0.2106177100170372,0.2199388997560385,0.2291410941180373,0.2378719185483062,0.2458368424007635,0.2527372985948345,0.2589531680440771,0.2645191086479621,0.2691737572510709,0.2737700076782234,0.2779903390884308,0.281764134918709,0.2860095722036984,0.2890035480485733,0.2918714363721792,0.2960680182450155,0.2989065357843072,0.2965644138820242,0.2935176541650651,0.2907009450945094,0.2875196560728248,0.2837380514160185,0.2812155879114156,0.2772943037974683,0.2777704853476848,0.278661359482037,0.2785539674892493,0.2799062353492733,0.27982912406305,0.2818790541954383,0.2824485422154753,0.2834800076525732,0.2840178386226923,0.2859363957597173,0.2908153701968134,0.2941381595006451,0.2980917387697048,0.3011616299119702,0.3054453087791713,0.3092018365934964,0.3126993771836548,0.3210131332082551,0.3228836444757543,0.3250910194174757,0.3303751512706737,0.3306144643828168,0.3297791317593297,0.0,1.808822171571403,51.54985983222346,142.8684289855324,194.581750276324,fqhc1_80Compliance_implementation_low_initial_treat_cost,68 -100000,95625,47788,456.42875816993467,4817,48.98300653594771,3824,39.27843137254902,1395,14.128104575163398,77.2563444549925,79.66650369211386,63.27473565930678,65.055833303226,77.07327211661028,79.4919318970978,63.20418814449946,64.99205228359155,0.1830723383822174,174.5717950160639,0.0705475148073162,63.78101963444749,250.95488,175.79530958591923,262436.47581699345,183838.23224671293,498.36593,332.1164327526583,520472.5333333333,346616.8499374205,474.136,231.9825387058204,491740.9673202615,239403.00154327173,2440.23474,1160.5173455911436,2506980.277124183,1168713.7208796272,885.02575,413.1620092390292,904854.8496732026,411402.5717532326,1359.00338,586.730775451559,1377657.9346405228,573260.8516760695,0.3794,100000,0,1140704,11928.930718954249,0,0.0,0,0.0,42905,447.9581699346405,0,0.0,42855,444.1202614379085,1056543,0,37945,0,0,9945,0,0,90,0.930718954248366,0,0.0,2,0.0209150326797385,0,0.0,0.04817,0.1269636267791249,0.2895993356861117,0.01395,0.3572850318471338,0.6427149681528662,23.190540031720808,4.006771065026979,0.2986401673640167,0.2960251046025104,0.209205020920502,0.1961297071129707,11.421389068640876,6.198617428514954,14.9536097538026,11388.262901935595,44.06006179701097,13.911650391304132,13.00777461937359,8.918968367089974,8.221668419243269,0.5993723849372385,0.8206713780918727,0.7075306479859895,0.5825,0.1186666666666666,0.7798319327731092,0.9367088607594936,0.8680351906158358,0.7766990291262136,0.165680473372781,0.5178435839028094,0.7370820668693009,0.6392009987515606,0.5151515151515151,0.1049913941480206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0044596251887739,0.0067993383330457,0.0088588176729348,0.0109573710448672,0.0128867292156922,0.0154643381752897,0.0176756066411238,0.0198946453229683,0.0222306455082827,0.0242163049612641,0.0263293116560129,0.0283522932001853,0.0307245002113598,0.032529311502505,0.034509162777703,0.0364488306518493,0.0383732405339427,0.0403862763665879,0.0423725277476425,0.0567011925541143,0.0705417666348863,0.0838880372929046,0.0961765201280107,0.1081397680382452,0.1237485448195576,0.1356437745462265,0.1463825073755738,0.1563672513869736,0.1654180530213588,0.1773522244506264,0.1882280277828946,0.198555524085492,0.2084036560506762,0.218034829985993,0.2264563537874078,0.2338992908753327,0.2420769092056622,0.2491134751773049,0.2556698902157828,0.2617487796110989,0.2664947245017585,0.2726981642237086,0.2775751175962369,0.2824041960254584,0.2869170184924574,0.2904236258159903,0.2932560657199261,0.29638510492139,0.2992317237373604,0.2956974033499077,0.2932100891270508,0.2903890386216433,0.2868187872820988,0.2846483781610222,0.2808641975308642,0.2778006785680312,0.2770621097601051,0.2782376227443319,0.2788795417934491,0.2784974093264248,0.2790890924559286,0.2805371095795714,0.2818833801060181,0.2837543397581707,0.2851736651114567,0.285442624811966,0.2907151348307576,0.2955082742316784,0.3002593524049041,0.3038928233118318,0.3098762180668949,0.3122378716744914,0.3153024375564249,0.3212744467909283,0.3251134116552285,0.3318959107806691,0.3343867272368161,0.3322658126501201,0.3306605574646811,0.0,2.8013780043134773,51.08514438131247,140.34405279963815,190.79697545006957,fqhc1_80Compliance_implementation_low_initial_treat_cost,69 -100000,95686,48406,461.1019375875258,4864,49.47432226239993,3899,40.099910122692975,1458,14.808853959826934,77.32722884548278,79.70342462442906,63.32110870231941,65.07579197241918,77.14113178198252,79.52137689814904,63.25027007228154,65.00857721839554,0.1860970635002559,182.0477262800182,0.0708386300378762,67.21475402363808,252.2168,176.67983814302417,263587.9857032377,184645.44253393827,503.18629,336.6126236763803,525206.3311247205,351122.6968170686,482.24253,236.3436326657112,499022.0826453191,243254.5227754354,2506.1843,1189.0864585952038,2580099.4398344588,1203620.287811387,863.66388,398.619615163376,888495.7569550404,402497.1144115703,1405.12872,606.8218277020825,1429699.851597935,604014.6616459385,0.38179,100000,0,1146440,11981.272077419892,0,0.0,0,0.0,43284,451.6648203498944,0,0.0,43675,451.6961728988566,1047540,0,37595,0,0,10090,0,0,87,0.8883222205965344,0,0.0,1,0.0104508496540768,0,0.0,0.04864,0.1273998795149165,0.2997532894736842,0.01458,0.3585759244689221,0.6414240755310779,23.13335987301722,3.93561875271917,0.3149525519363939,0.2931520902795588,0.2015901513208515,0.1903052064631956,11.258639552742176,6.271494643887485,15.743764135967648,11504.195713101968,44.788260471626025,14.032249759550426,13.948668094695751,8.694073146660354,8.113269470719503,0.5827135162862273,0.800524934383202,0.7068403908794788,0.544529262086514,0.082210242587601,0.7471074380165289,0.9051546391752576,0.8436657681940701,0.7297297297297297,0.1005917159763313,0.5087393082930457,0.723404255319149,0.6476079346557759,0.4875207986688852,0.0767888307155322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0044187248533003,0.0067261844374556,0.0090394791634926,0.0114296173518674,0.0138474540030342,0.0165398813044276,0.0185164380623614,0.0208516556562289,0.0228057060347564,0.0246233680993549,0.026816893307588,0.0289340780284095,0.0312931478619268,0.0334172721268163,0.0357087456954053,0.0377921432123321,0.0399701002886152,0.0423345364524282,0.0439767764261963,0.0589955711540068,0.0727906392598484,0.0863061834583311,0.0988069939192459,0.1110583768391077,0.126685919202818,0.1379149333559725,0.1486008773797862,0.1586774210779338,0.1676213154846183,0.1796062127054565,0.1910978329111731,0.2022101610850672,0.2103553499360173,0.2193216085932513,0.228458734502587,0.2372262773722627,0.2447944203835986,0.2522582841579664,0.2585618399651799,0.264558471172433,0.2704818290314277,0.2758171791048309,0.2797560566485346,0.2835813642713964,0.2869346547834769,0.2896499067502785,0.2933623476114123,0.2959663321463257,0.2988666499544813,0.2968381629821229,0.2936032121445465,0.2911239103800819,0.2882128838605403,0.2854745782846282,0.282483451826428,0.2788498038719473,0.2791702113736012,0.2797420540393384,0.2806173190310435,0.2806118646594127,0.2824250520608227,0.2833222259246917,0.2830855390359357,0.2849143294725758,0.2860702328116484,0.2859250432660936,0.2904860198911616,0.2958138886954099,0.3011206692447321,0.3056362316209838,0.3118979570233937,0.3183867735470942,0.3202673959282893,0.3254199117950643,0.329879915234283,0.3326753720012147,0.333199759567221,0.333968426782798,0.3463285389856169,0.0,2.5178553046346077,52.23174313720112,139.27228857839458,198.9607346668405,fqhc1_80Compliance_implementation_low_initial_treat_cost,70 -100000,95787,48000,457.5255514840218,5030,51.301324814432014,3979,41.05985154561684,1487,15.18995270756992,77.38146625236273,79.70354367401322,63.35451413110488,65.0675574384323,77.1862914226544,79.51027549408212,63.2807872903372,64.99660221124222,0.1951748297083213,193.2681799310956,0.0737268407676836,70.95522719008329,251.18852,175.9074191703915,262236.5456690365,183644.35588377496,498.85587,332.6911583779629,520307.5469531356,346841.4359933625,477.62117,232.7888892375093,495605.2282668838,240806.86835931064,2551.38629,1191.887067333995,2632829.6115339245,1213982.4757627998,888.33975,404.8105402456482,913347.1347886455,408550.8578884884,1435.40504,609.7745596573209,1466566.0893440654,610558.3579419346,0.37999,100000,0,1141766,11919.842984956204,0,0.0,0,0.0,42936,447.7434307369476,0,0.0,43231,448.2758620689655,1058595,0,38017,0,0,10033,0,0,91,0.9500245336005928,0,0.0,1,0.0104398300395669,0,0.0,0.0503,0.1323719045238032,0.2956262425447316,0.01487,0.3536048957735704,0.6463951042264295,23.39738183420145,3.99042375887606,0.3005780346820809,0.3045991455139482,0.1995476250314149,0.1952751947725559,11.295766152360862,6.219332853450478,15.834657451209932,11450.89916890302,45.412823434484935,14.827686951799032,13.461136951562754,8.798676788195799,8.325322742927353,0.5840663483287258,0.8011551155115512,0.6956521739130435,0.5654911838790933,0.0926640926640926,0.7529610829103215,0.9153543307086616,0.8580645161290322,0.6919191919191919,0.1325301204819277,0.5126921701823383,0.71875,0.6388261851015802,0.5234899328859061,0.0818330605564648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023591114351092,0.0045097085410839,0.0067457217922317,0.0090990332277195,0.0111645500116932,0.0135696398395667,0.0156351924331376,0.0177144664741476,0.019850837760523,0.0220576199050581,0.0242285784534688,0.0263368490171133,0.0285385429619657,0.030841766092587,0.0326508309621015,0.034721003005298,0.0366434174307179,0.0385883426296472,0.0404841055474755,0.0425855354948876,0.0567928033228277,0.0708082203247949,0.0839652224984006,0.0972163821377512,0.1101658285629948,0.1255883317291929,0.1362122369314324,0.1468352813438078,0.1574973031283711,0.1669632710821415,0.1794029947145763,0.1908016393974457,0.2021594702447617,0.2112666812513673,0.2200448914024162,0.2293067727318051,0.2375440867895888,0.245707985509529,0.2528834801562074,0.2579765288346933,0.2634309003334568,0.2687746572856792,0.2740262815200663,0.2781751308869161,0.2829526550338178,0.2868666715928963,0.2904117124889039,0.2937139371139524,0.2970887861960053,0.299685041445383,0.2975531056735682,0.2945094484728631,0.2911152055584466,0.2878516550170412,0.284920847070005,0.2820218704595855,0.2781346169020753,0.2780185454723862,0.2784907073320171,0.278626225316096,0.2794654838228716,0.2791766508229563,0.2802916666666666,0.281211743495003,0.2813381123058542,0.2827927204949649,0.2839335180055402,0.2881165919282511,0.2925106146029094,0.2970843183609141,0.3045873216543254,0.3063517060367454,0.3074202754684204,0.3105748332458967,0.3164427025009332,0.3227203558468922,0.326325274065175,0.3341943175044705,0.3362138806373211,0.3429220287660863,0.0,1.85242017867543,51.63744389090655,145.89006883112535,204.4010690500168,fqhc1_80Compliance_implementation_low_initial_treat_cost,71 -100000,95761,48328,460.4692933448899,4880,49.82195256941761,3855,39.72389594929042,1430,14.640615699501886,77.31912755708531,79.66903649883265,63.32066847763053,65.05834026165938,77.13577596160987,79.48619148056801,63.2511160640046,64.99075454988991,0.1833515954754432,182.8450182646435,0.0695524136259351,67.5857117694676,251.81618,176.40820595189507,262962.73013022006,184216.7460300488,499.67246,333.3105783163749,521270.8618331053,347545.5610724773,479.57883,234.6391556501516,496998.35005900107,242175.19097544556,2467.79297,1173.625578246988,2545279.1115381,1193912.823019139,887.05653,412.38951673506006,913680.297824793,418001.4585635689,1383.1025,594.4873029154273,1417188.834703063,599062.4332379414,0.38174,100000,0,1144619,11952.851369555456,0,0.0,0,0.0,42953,447.9903092072973,0,0.0,43278,448.1156211819008,1054293,0,37915,0,0,9957,0,0,85,0.8876264867743654,0,0.0,0,0.0,0,0.0,0.0488,0.1278356996908891,0.2930327868852459,0.0143,0.3623501670269208,0.6376498329730792,23.29600538398574,3.952722255526194,0.3162127107652399,0.2861219195849546,0.2088197146562905,0.1888456549935149,11.699521424348452,6.711148765138154,15.412401119172369,11527.6205221679,44.434037945264464,13.622927168434709,13.992838451953824,8.869741044925595,7.948531279950339,0.5945525291828794,0.8014505893019039,0.682526661197703,0.591304347826087,0.1373626373626373,0.7699186991869919,0.9014373716632444,0.8507853403141361,0.7524752475247525,0.1949685534591195,0.5123809523809524,0.7224025974025974,0.6057347670250897,0.5373134328358209,0.1212653778558875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021367304985366,0.0044994375703037,0.0067773223489306,0.0091409535030165,0.0111460271938656,0.0134938335726579,0.0158043926015049,0.0179105696868203,0.0202860911442623,0.0224608675177363,0.0248226223188286,0.0270253619468117,0.0292384429474983,0.0314199769243448,0.0333470903838217,0.0355928524922231,0.0373203859373058,0.0391983984565436,0.0412406483790523,0.0433985648374767,0.0581186589286459,0.0727092050209205,0.085947414236122,0.0989443135935397,0.1109893005850419,0.1262356610456203,0.1370924979319999,0.1484121495824246,0.1583549533967521,0.1677707033678478,0.179676564956179,0.1912418710843243,0.2019053004763251,0.2119608593451047,0.2207505033058669,0.2298876031227506,0.2382158922213168,0.2463546354635463,0.2538871864714561,0.2595048325775274,0.2657892299856461,0.2715133357519866,0.2768494724251862,0.2812837432513497,0.2851897780047171,0.289683420929257,0.2931313004821238,0.2966631443594281,0.3004716125521495,0.3039583058450983,0.2997953523440235,0.296207162110127,0.2929790950583197,0.2890019659997687,0.2860261036126331,0.2820171411080502,0.2777971142893304,0.2777122061571752,0.2779339842884651,0.2778421756576014,0.2780293391213232,0.2788795142721968,0.2800928831429647,0.2814090543798553,0.2829636734204532,0.2828757694605335,0.2845426941740685,0.2895444034747828,0.2943886097152429,0.3004126547455296,0.3030672079386558,0.3102105263157895,0.3139592957922337,0.3160919540229885,0.3173758865248227,0.3196969696969697,0.322230595327807,0.3286,0.3375,0.335966892400301,0.0,2.057455767260344,53.625691680040894,137.32259761511503,192.62621075341505,fqhc1_80Compliance_implementation_low_initial_treat_cost,72 -100000,95693,48145,459.0199910129268,4835,49.53340369724013,3834,39.60582278745572,1365,13.982213955043736,77.34181859432726,79.72491987678053,63.3271521787835,65.08591804681515,77.16239316106285,79.54698577831736,63.25986134395223,65.02092230825777,0.1794254332644129,177.93409846316877,0.0672908348312688,64.99573855738561,252.5666,176.90034648005147,263934.018162248,184862.16516948288,501.95776,335.45815026727564,524060.6522943162,350068.23529082426,482.74154,235.58263456498813,501647.5186272768,244026.0927445626,2453.14871,1157.6744857769536,2535187.077424681,1181486.1522951769,837.79431,391.031972901724,860009.9484810801,393191.1472944567,1322.6124,566.2698252176294,1355390.8854357162,568659.8254912506,0.37926,100000,0,1148030,11997.000825556728,0,0.0,0,0.0,43192,450.86892458173537,0,0.0,43571,452.5304881234782,1048772,0,37661,0,0,9984,0,0,84,0.8778071541283061,0,0.0,1,0.0104500851681941,0,0.0,0.04835,0.127485102568159,0.2823164426059979,0.01365,0.3655721393034826,0.6344278606965175,23.180629781822766,3.9142604957710567,0.3015127803860198,0.2976004173187271,0.2136150234741784,0.1872717788210746,11.507776467136456,6.554840954983341,14.609308676062518,11412.349957308525,44.09434618783586,14.00824782317105,13.12539897851192,9.067665671273708,7.893033714879179,0.5941575378195096,0.813321647677476,0.6980968858131488,0.5726495726495726,0.1030640668523676,0.7774914089347079,0.9357601713062098,0.878419452887538,0.7609756097560976,0.1411042944785276,0.5142322097378277,0.728486646884273,0.626360338573156,0.509771986970684,0.0918918918918919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189638585938,0.00469302735741,0.0067976827004048,0.0089882391176291,0.011215276365559,0.0135008552577991,0.0159006818946274,0.018047630227739,0.0201657825611463,0.022520447542712,0.0246595849397096,0.026774435395249,0.028878006625378,0.0309853059373905,0.0328633651920814,0.0348258706467661,0.0370140097819779,0.0392450009344047,0.0412470872170439,0.0433459124741988,0.0577666353285281,0.0722138459605478,0.0863692181743757,0.0989909405612432,0.1108544303797468,0.1258699837109433,0.1374155145521873,0.1471712172015541,0.1572148977542255,0.166439670981372,0.1781037305074524,0.1894677640900291,0.2001239696383131,0.2085173363648288,0.2169834147199859,0.2269440722819527,0.2352954304524912,0.2426624384319546,0.2506608279351537,0.2571549592453521,0.2634128296128458,0.2685857204632844,0.27293466825849,0.2772476383185067,0.2813781887909901,0.2852077562326869,0.2880057008551283,0.2911353783959014,0.2949945649360733,0.2973820885291714,0.2941018262015545,0.2907679626322297,0.2880597644874013,0.2855679769203029,0.2841701017170309,0.2811157157493921,0.2770464374782965,0.2771413609138219,0.2770425629758316,0.2779219394284089,0.2784275019553801,0.2788686439845116,0.280169989375664,0.2804981098510118,0.2823863907870215,0.2837907954132724,0.2851272459332313,0.2913252861342172,0.2961290774184516,0.2996760685786521,0.3044167610419026,0.3075545253397956,0.3125232716892143,0.3149706899143243,0.3173591874422899,0.3205909943714822,0.3271875472268399,0.3254378980891719,0.327940773238278,0.3337147215865751,0.0,1.769156742032768,51.00982398892106,142.15763728415766,194.0082859775667,fqhc1_80Compliance_implementation_low_initial_treat_cost,73 -100000,95677,48241,459.78657357567647,4867,49.698464625772125,3858,39.71696436970223,1430,14.548951158585655,77.38307130315455,79.75942829631056,63.34642469116329,65.0974894880011,77.20497735265707,79.58635321530629,63.27840402606698,65.0341314362718,0.1780939504974839,173.07508100427071,0.0680206650963128,63.35805172929554,252.3785,176.8278473737441,263781.78663628665,184817.5082556352,499.10491,332.9926634790035,521073.7899390658,347456.04845365504,479.30002,233.8344716738268,497161.250875341,241515.5711650683,2496.49157,1177.1266019287966,2569746.6684783176,1190768.473017336,895.86784,406.0450781796888,917692.1935261348,405876.7238238079,1393.42346,593.1231737332614,1418191.4566719274,587460.1601903923,0.38095,100000,0,1147175,11990.081210740302,0,0.0,0,0.0,42894,447.6938031083751,0,0.0,43262,448.3731722357515,1053193,0,37830,0,0,9963,0,0,106,1.1078942692601146,0,0.0,0,0.0,0,0.0,0.04867,0.1277595484971781,0.2938154920895829,0.0143,0.3595971563981042,0.6404028436018957,23.11598582025529,3.999351186243507,0.2996371176775531,0.2913426645930534,0.2050285121824779,0.2039917055469155,11.4446587551691,6.25853991980956,15.17300647299846,11518.759861706603,44.37873355219708,13.960053074654706,12.995140947966744,8.8863959177999,8.53714361177573,0.5914981855883877,0.8140569395017794,0.7015570934256056,0.5916561314791403,0.1118170266836086,0.7508223684210527,0.932806324110672,0.8178913738019169,0.7669902912621359,0.1413612565445026,0.5181680545041635,0.7168284789644013,0.6583629893238434,0.5299145299145299,0.1023489932885906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023688286446048,0.0048629262658804,0.0069877587448403,0.0091392826678581,0.0115703319607544,0.0138440709712226,0.016085954861465,0.018301894496162,0.0206478519078819,0.022818709499094,0.0250064079561183,0.0272945718921361,0.0293116392919953,0.0314579427700294,0.0334877387007252,0.0356371378665261,0.0375642300679595,0.0396088933175562,0.0415379655340967,0.043408929836995,0.0582833622364764,0.0719348388245024,0.0855793946388291,0.0984216780054889,0.1103542808941375,0.1260268758656418,0.1372598905991604,0.1484163954650841,0.1590247025556207,0.1687863625162057,0.1808948993534088,0.1916207157530544,0.2020997945853123,0.2113684302560683,0.2196449782235713,0.2294526238824819,0.2385774899508709,0.2464138536717184,0.2537714966797207,0.2597738805713697,0.2652860531034882,0.2707082762897696,0.2762707650046769,0.2804667450171492,0.2844556248253065,0.2878926088457176,0.2910009883524539,0.2940248572046458,0.2976850173494225,0.3005078820658268,0.2978797778942981,0.2941483444799978,0.2914113877803383,0.2891269246294908,0.2874222222222222,0.2827495568188765,0.2789618262764042,0.2788494576154715,0.2802249297094658,0.2802625960717335,0.2799642883714009,0.2811470911086718,0.2821077565607663,0.2820853836946402,0.2838184931506849,0.2841538501172166,0.28691888245545,0.290981194039099,0.2948167140184325,0.2992618052571964,0.3014639841925633,0.30782853273608,0.3100827875942172,0.3142410248771041,0.3170240058640278,0.317171484509962,0.3216184288245717,0.3217592592592592,0.3311432325886991,0.3356413994169096,0.0,2.3179789466870404,52.99049408892104,132.96843834951022,199.56130520071363,fqhc1_80Compliance_implementation_low_initial_treat_cost,74 -100000,95701,48064,458.6890419117878,4912,50.3651999456641,3870,39.93688676189382,1461,14.98416944441542,77.3960056150407,79.78243444812539,63.35197710932333,65.11409896029511,77.21438251357469,79.60139098683877,63.284168207446506,65.04845574702668,0.1816231014660161,181.0434612866203,0.0678089018768233,65.64321326843015,252.12858,176.57446263171585,263454.48845884576,184506.3924428332,498.92139,332.8229611257004,520815.6654580412,347255.90236852324,475.88746,232.5517666840762,494084.7326569211,240537.3038918829,2480.92477,1166.0798588353678,2562894.995872562,1188985.725159997,904.34094,410.7270906241977,932723.7750911694,416959.6535221703,1410.26066,591.994086255802,1447547.381950032,595990.9108933279,0.38037,100000,0,1146039,11975.204020856629,0,0.0,0,0.0,43024,449.0339703869344,0,0.0,43112,447.268053625354,1058115,0,37896,0,0,9945,0,0,67,0.700097177667945,0,0.0,1,0.0104492116069842,0,0.0,0.04912,0.1291374188290349,0.2974348534201954,0.01461,0.3568918391253416,0.6431081608746584,23.2819753068763,3.914235577451577,0.3069767441860465,0.2987080103359173,0.1971576227390181,0.1971576227390181,11.494973182915292,6.522820119216114,15.421019413410043,11502.306207618329,44.50129599421695,14.284341626826128,13.44307266831032,8.554365058045729,8.219516641034758,0.603875968992248,0.8140138408304498,0.7146464646464646,0.5845347313237221,0.1323722149410222,0.7664172901080631,0.9101796407185628,0.8769230769230769,0.7235023041474654,0.15,0.5305586801649794,0.7404580152671756,0.6535341830822712,0.5293040293040293,0.1276948590381426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969032689405,0.0046237147898034,0.0070441119749903,0.0093370586741173,0.0115964437572477,0.0138068667779904,0.0161403794977415,0.0184687949851453,0.0203234578502934,0.0223341317120104,0.024431002665573,0.0265511258046962,0.0286730978875701,0.030829290400997,0.0327792738415823,0.0348146080772371,0.0367915147497514,0.0387681385065703,0.0405911350541839,0.0425429911412193,0.057905016554735,0.0710981812093179,0.0846190151554879,0.0975514881359139,0.1103944012310546,0.1263825737548905,0.1387778048858103,0.1487371076412172,0.1592185931258411,0.1683217158176943,0.1801569953375184,0.1909108606779001,0.2014168830745493,0.2104820290900348,0.2189647022612098,0.2280866793572092,0.2368060124218061,0.2444881226483967,0.2519339895117172,0.2586599010297025,0.2647123319291361,0.2699448068238836,0.274576471282687,0.2790252768013009,0.2832961760286919,0.2874078624078624,0.2916713414862186,0.2950902755780804,0.2976353180845303,0.3002128330443008,0.2977662838842809,0.2955743247867928,0.2928710677269603,0.2905420958738562,0.2881563964923177,0.2847608453837597,0.2808316270278784,0.2799399242523181,0.279747953395156,0.280887517292753,0.281119714115545,0.2819240724762726,0.2826894733564444,0.2837700274409135,0.2848492072952676,0.2860242831309739,0.2875330967269449,0.2919689845234017,0.2961701536108987,0.3011274046042258,0.3044562310168185,0.3098242094705168,0.3146953853860121,0.320166163141994,0.3266548076022844,0.3322668562625903,0.3386557177615572,0.3425291985501409,0.3518316019682886,0.359602142310635,0.0,1.869703659803692,52.67647417122545,142.58464850802238,191.30558461004887,fqhc1_80Compliance_implementation_low_initial_treat_cost,75 -100000,95822,47973,457.7445680532654,4741,48.27701362943792,3764,38.69675022437436,1410,14.370395107595332,77.38566316619061,79.705707055334,63.36611244363343,65.08395049609085,77.21444693485212,79.53803153435182,63.30259561211498,65.02368053084606,0.1712162313384908,167.6755209821863,0.0635168315184486,60.26996524478534,252.6975,177.02486667942176,263715.5350545804,184743.44793410884,503.88242,336.1502402491658,525273.9036964371,350228.8709120785,476.07878,232.3770585893028,493130.21018137794,239610.23196309592,2447.25251,1139.0897702866455,2517222.0575650684,1152075.2761792329,890.4436,401.66758303250737,911914.988207301,401895.8038329226,1371.62712,569.6730188317589,1399256.0998518085,568054.0386209505,0.38,100000,0,1148625,11987.069775208198,0,0.0,0,0.0,43383,452.1404270418067,0,0.0,43102,446.0144851912922,1053629,0,37777,0,0,9983,0,0,95,0.9914215942059236,0,0.0,0,0.0,0,0.0,0.04741,0.1247631578947368,0.2974056106306686,0.0141,0.3699433656957929,0.6300566343042071,23.036391328477077,3.9713801615626014,0.3116365568544102,0.2922422954303932,0.1886291179596174,0.2074920297555791,11.708755482537743,6.643052106445364,14.88072307938503,11334.557260495714,43.156868314190206,13.62545872142396,13.295239351090844,7.84993715424616,8.386233087429236,0.5884697130712009,0.8263636363636364,0.6734867860187553,0.6056338028169014,0.1101152368758002,0.7780748663101604,0.9094650205761317,0.8553846153846154,0.7771084337349398,0.1655172413793103,0.5079485238455715,0.760586319218241,0.6037735849056604,0.5533088235294118,0.0974842767295597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775900661379,0.0043287410155814,0.0066273558575473,0.0089305671265722,0.0109036169087432,0.0130129314733733,0.0151260332895045,0.01750178589652,0.0196126526649292,0.0216950817658977,0.0238268479898338,0.0257110305966396,0.0278828365878725,0.0298404529078744,0.0322031801027037,0.0340542885473475,0.0360997009798342,0.0381207052019526,0.0400261649638674,0.0419636446876918,0.0568674899866488,0.0702339389124662,0.0839421031118005,0.0965918641788535,0.1087119097525779,0.1243161607840652,0.1356736544389479,0.145788830437324,0.1563179898468495,0.1650209904043865,0.1768962773392976,0.1884943994988172,0.1992705642272539,0.2081086980246644,0.2156292205154107,0.2245274676688405,0.2331395607822174,0.2414300311022782,0.2486723358961874,0.2552561817267699,0.2610788535017142,0.2663960717076641,0.2719144067096835,0.2765357791153148,0.2810114330651503,0.2856932587577274,0.2892769943694255,0.292079207920792,0.2955465065333367,0.2979838444867669,0.2943472661909105,0.2906073107550609,0.2883320237961612,0.2847660187185025,0.283072777876473,0.2792021487653756,0.275389083562206,0.2752475247524752,0.2759978857269519,0.2773423583897399,0.27754660297438,0.2782733699612059,0.2786150883362639,0.2785691957308087,0.280016338691463,0.2817018837445611,0.2834874128857915,0.2884133350043865,0.2918475977027595,0.297004234437453,0.3004852387646818,0.302787584971281,0.3067358160459885,0.3121278359840205,0.3151197604790419,0.3197311003656091,0.3208977858659387,0.3220644128825765,0.3182065217391304,0.3205273069679849,0.0,2.1874670774735745,48.56468147187383,141.70523449036713,190.15100191052085,fqhc1_80Compliance_implementation_low_initial_treat_cost,76 -100000,95757,48230,459.28757166577896,4909,49.9075785582255,3934,40.40435686163936,1473,14.923190993869898,77.37657405990127,79.72087898165407,63.3458979718325,65.07876728288757,77.17907359985637,79.52944550132338,63.26932040748926,65.00731330317156,0.1975004600449068,191.4334803306872,0.0765775643432391,71.45397971601142,251.72664,176.34165327471558,262880.2071911192,184154.9128259193,502.95162,334.6693956125604,524559.5204528129,348820.983544347,477.73125,233.3677298675951,494669.23566945497,240475.07338621083,2539.1119,1211.0918438687077,2609609.334043464,1222775.288666842,902.44147,413.92178692406736,926858.704846643,416734.3113004552,1424.37862,625.1728557483904,1445307.705964055,616100.5217515643,0.38177,100000,0,1144212,11949.100326869053,0,0.0,0,0.0,43254,450.9853065572229,0,0.0,43207,446.9855989640444,1056396,0,37916,0,0,9855,0,0,93,0.9712083711895736,0,0.0,1,0.0104431007654792,0,0.0,0.04909,0.1285852738559866,0.3000611122428193,0.01473,0.3492467227548425,0.6507532772451575,22.757725660164567,3.989688942273732,0.309862735129639,0.2948652770716827,0.2005592272496187,0.1947127605490594,11.376294507209533,6.242935636523852,15.742369361302286,11478.600080457649,45.13316026074219,14.231833468322783,13.72002065957538,8.830730479212075,8.350575653631951,0.5973563802745298,0.8155172413793104,0.6964725184577523,0.5792141951837769,0.1279373368146214,0.747457627118644,0.9256900212314224,0.8536585365853658,0.7461928934010152,0.1032608695652173,0.533042846768337,0.7402031930333817,0.6386083052749719,0.5236486486486487,0.1357388316151202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0047643665926669,0.0069502222041843,0.0092141086594335,0.0114616385973476,0.0134825510941843,0.0156111388687787,0.0180810225834116,0.0202619123074249,0.0225506955604917,0.0247827156444735,0.0269965099568877,0.0290833950160375,0.0310913378852946,0.0332910360764651,0.0353698746240271,0.03726598740888,0.0395435684647302,0.0415726716081211,0.0434578855286178,0.0575698749660801,0.0713942106584121,0.0852569343983898,0.0983237875045977,0.1106017010781926,0.1260492652500264,0.1368812826059295,0.14711234556077,0.1566028263493521,0.1663198764425758,0.1779420002585426,0.1891043677762867,0.1997062183776726,0.2093743502194206,0.2183095489781536,0.2281460294231771,0.2371486325005863,0.2448561523569402,0.2526701701417659,0.2595815822922511,0.2654366685945633,0.2705132701975914,0.2763305703035391,0.2805824312673627,0.2850794113361504,0.2888308552704517,0.292156029786596,0.2949518803483913,0.2976587332351345,0.3000961424488667,0.2971750046993743,0.2940692153580152,0.2916315641673687,0.2887915507975159,0.2863444600695729,0.28255561998352,0.2789013693443554,0.2783417520801661,0.2786996851331801,0.2791197470782565,0.2791578790197652,0.2803492075976247,0.28088201579792,0.2804658901830283,0.2825422595740617,0.2835426647675774,0.2837948688937289,0.2889663978076048,0.2929718805533294,0.2950502859396569,0.2992713943069195,0.3052143196077397,0.3102760640618184,0.3131495707184817,0.3167425016250348,0.3217177050334389,0.3307134220072551,0.3352520841603811,0.3369156367544331,0.3360809291869614,0.0,2.550049267354754,50.72012718471972,146.5851406635003,200.17661953392331,fqhc1_80Compliance_implementation_low_initial_treat_cost,77 -100000,95759,48082,457.97261876168295,4896,50.10495097066594,3895,40.17376956735137,1440,14.672250127925311,77.3313489084019,79.69807273819036,63.31030609897547,65.06336523819857,77.1480273780694,79.5188089089543,63.24054966960789,64.99777536054685,0.1833215303325062,179.26382923606354,0.0697564293675796,65.58987765171764,253.3113,177.44982808317087,264530.018066187,185308.77315257143,503.72374,335.77556281135423,525551.405089861,350165.09446773067,476.35841,232.4817660184625,494681.116135298,240627.11621229595,2503.18246,1168.809290125993,2582296.59875312,1189038.8730757134,873.07192,395.8407913984633,898733.4871918045,400446.6699006175,1393.70892,595.8495194789472,1422277.4882778642,593201.1341599243,0.38052,100000,0,1151415,12024.091730281229,0,0.0,0,0.0,43450,453.2211071544189,0,0.0,43155,447.8847941185685,1044786,0,37469,0,0,9945,0,0,79,0.8249877296128824,0,0.0,0,0.0,0,0.0,0.04896,0.1286660359508041,0.2941176470588235,0.0144,0.3712832550860719,0.628716744913928,23.15568193106646,3.9443917846853926,0.303209242618742,0.2985879332477535,0.203594351732991,0.1946084724005135,11.26520858807084,6.212512935733869,15.412211338439995,11383.338699554926,44.48884657065448,14.34843209607914,13.154843369962943,8.836448406337935,8.149122698274457,0.5876765083440308,0.7987962166809974,0.6833192209991532,0.5863808322824716,0.1160949868073878,0.759493670886076,0.9247967479674796,0.8548387096774194,0.705607476635514,0.1715976331360946,0.5125461254612547,0.706408345752608,0.6222732491389208,0.542314335060449,0.100169779286927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.004390723708894,0.0065770109109363,0.0088803088803088,0.0109463061303383,0.0132293183693006,0.0154785818437662,0.0176235743386054,0.0196483547954873,0.0218264129299219,0.0239067115195274,0.0261776339446242,0.0283620796114106,0.030629702153973,0.032616997997564,0.034702761951048,0.0368222673238619,0.038934490022518,0.0410598642425754,0.0432038329340693,0.0573104787356201,0.0716273910677661,0.0849313918845201,0.097324752350306,0.1092964161825332,0.124063967508567,0.1353743301321165,0.1460175105979592,0.1558619215560543,0.1649605116318997,0.1766468356613209,0.1884299668623161,0.2000696689635653,0.2093153084122379,0.2185965607591871,0.2280678417026937,0.2363575456423426,0.2434999887445692,0.2509418974126191,0.2575873881511863,0.2626029997222479,0.268082515746833,0.2731592293290992,0.2780731973736331,0.2818383032543659,0.2851031302782607,0.2886497309473157,0.2925302492461544,0.2951274178294272,0.2978358632149498,0.2944643289647192,0.2915459103083579,0.289113447267821,0.2859984146429343,0.2828602717021339,0.2791637439385159,0.2756133665081415,0.2762596978358513,0.2770549517832542,0.2775124713735376,0.2769394142633579,0.2776183362163862,0.2785748495512566,0.2791374902745359,0.2805688336520076,0.2817193164163645,0.2823599220140714,0.2858035295955021,0.2911259575361153,0.2961687643473442,0.3003258508327299,0.3048069345941686,0.3085252022401991,0.3122042808862185,0.3151492812384814,0.3173176633252679,0.3219512195121951,0.3306169965075669,0.3329801324503311,0.3337024732373569,0.0,1.9795839023781951,51.68268675398152,138.8072578110335,200.3620992848696,fqhc1_80Compliance_implementation_low_initial_treat_cost,78 -100000,95490,48155,460.5508430202116,4816,49.14650748769505,3826,39.470101581317415,1449,14.86019478479422,77.22623088476638,79.7140300847922,63.24095407219974,65.07647569560764,77.03939421267984,79.52939880646267,63.169580186780834,65.00852893575403,0.1868366720865424,184.6312783295332,0.0713738854189074,67.9467598536121,250.83058,175.6646645550009,262677.3274688449,183961.32009111,498.2852,333.3399625825628,521230.589590533,348494.9760001704,475.75996,232.91264001065352,494450.3717666772,241100.57872179063,2481.35902,1166.2220436905657,2559246.4865430933,1181995.4903032414,843.37962,385.2899107880604,867403.2149963346,387688.15204530256,1403.5697,601.6598184932966,1438653.2411770865,601778.8518830345,0.37966,100000,0,1140139,11939.878521311131,0,0.0,0,0.0,42956,449.2198135930464,0,0.0,43014,446.63315530422034,1051350,0,37739,0,0,10067,0,0,78,0.8168394596292806,0,0.0,1,0.0104723007644779,0,0.0,0.04816,0.1268503397776958,0.3008720930232558,0.01449,0.3569862467610125,0.6430137532389875,23.098913975381898,3.9719373382597847,0.3178254051228437,0.2807109252483011,0.202038682697334,0.1994249869315211,11.195057902271978,6.1596104891314605,15.456503466755152,11423.300979999336,43.65037015074103,13.137612684262743,13.667529677378166,8.598688251863125,8.246539537236998,0.5776267642446419,0.7877094972067039,0.6998355263157895,0.5692108667529108,0.0956749672346002,0.7462817147856518,0.8972602739726028,0.8517441860465116,0.7009803921568627,0.1528662420382165,0.5057771151695862,0.7122641509433962,0.6399082568807339,0.5219683655536028,0.0808580858085808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509145260171,0.0047470761865154,0.0071476435112798,0.0093645144890696,0.0115450399087799,0.0134943688528767,0.0157348544372901,0.0178305029325812,0.0200008184478137,0.0221719039763936,0.0243063752912556,0.0263937156840568,0.0284099100026772,0.0303852302614615,0.032381719930153,0.0346741212403582,0.0367016255355346,0.0386074699321198,0.0406217767729702,0.042844910404745,0.0576868725989972,0.0719104424370232,0.0850869167429094,0.0981871838111298,0.1103995603884644,0.1261844699298327,0.137922235335396,0.1483046326526257,0.1592065379218748,0.1681124834725402,0.178932365897901,0.1901264834139674,0.2003838227436783,0.2088586777765596,0.2173414103964602,0.2264069167852062,0.2343510510947271,0.2424888107236671,0.249582001615123,0.2564464488587462,0.2617206071639783,0.2665588145647229,0.2721461187214611,0.2770323030164698,0.2817239405050493,0.2852375125152965,0.2893395278754395,0.2926131647832471,0.295967385941679,0.2990887810297171,0.2959284200866408,0.2933472878251649,0.2901748601541474,0.2872527789807997,0.284837496842074,0.2812993181644067,0.2776862384739694,0.276595045666601,0.2773741345414138,0.2786902806541455,0.2799333981890294,0.2821069244426908,0.2833061787191377,0.2847596560787633,0.2846321122183191,0.2857920522591181,0.2860541520335334,0.2890014381291815,0.2936679698408266,0.2982670824616113,0.3004760825209703,0.3062084958364077,0.3110378297660527,0.3176020408163265,0.3263448275862069,0.3260441976165683,0.3310688405797101,0.3308422540900828,0.3317846406121891,0.3361184960121534,0.0,2.289049333829765,49.45709000318325,137.10534726868715,199.2231236910354,fqhc1_80Compliance_implementation_low_initial_treat_cost,79 -100000,95708,48151,459.5645087140051,4861,49.4733982530196,3870,39.839929786433736,1490,15.192042462490074,77.36399481233721,79.74840381439182,63.33329461681414,65.09712162290901,77.1704402828768,79.55949628895847,63.25840961882832,65.027005668953,0.1935545294604139,188.90752543335051,0.0748849979858192,70.11595395601944,251.18016,175.98453058444213,262444.2679817779,183876.5104112949,502.78048,335.8214022009261,524740.2202532704,350293.9066754358,479.62379,234.3553340763097,497560.7472729552,242130.45104174785,2478.40046,1181.141673897745,2554317.0163413715,1198883.0023589933,873.51066,401.32458130969934,899805.1155598278,406443.9767936836,1444.30842,632.5116547914693,1474576.6080160488,630488.0391841407,0.37873,100000,0,1141728,11929.284908262633,0,0.0,0,0.0,43322,452.0207297195637,0,0.0,43255,448.37422159067165,1056606,0,37893,0,0,9993,0,0,94,0.9821540519078864,0,0.0,1,0.0104484473607221,0,0.0,0.04861,0.1283500118818155,0.3065212919152438,0.0149,0.3726499109439937,0.6273500890560063,22.796135955027324,4.001467425678057,0.3064599483204134,0.2930232558139535,0.1971576227390181,0.203359173126615,11.040145004546272,5.929593273326266,16.212691376527985,11356.971941293095,44.64018327586572,13.95444048320993,13.505280242077705,8.49372211689894,8.686740433679136,0.586046511627907,0.8042328042328042,0.6905564924114671,0.5871559633027523,0.1130876747141041,0.7512155591572123,0.9230769230769232,0.8857938718662952,0.7192118226600985,0.1519607843137254,0.5087253414264037,0.7207207207207207,0.6058041112454655,0.5392857142857143,0.0994854202401372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0047968196983986,0.0070555510436124,0.0094009797345366,0.0115590467856488,0.0137640850092711,0.0160757272838549,0.0180971444911965,0.0202714450819755,0.0223330397919269,0.0244992975295601,0.0264563306219702,0.0285746613316327,0.0307164422096054,0.0326136316723774,0.0344421122289661,0.0364542327932706,0.0385529415427403,0.0405214354027194,0.0425848936680108,0.0567740318335631,0.0702263068645717,0.0837302503199815,0.0956282141617676,0.1079300494376337,0.1236968428175685,0.1345705196182396,0.1455698222397157,0.1556978916466506,0.1645713428292766,0.1762262445386651,0.1875087886294064,0.1980579145960875,0.2072351873318606,0.2162878704538954,0.2257332344246504,0.2337620327715251,0.2419318565163611,0.2499064042203188,0.2564134852040524,0.2623020967051775,0.2670477793754895,0.2725949591764288,0.2774502755811167,0.2806717179076206,0.2841630964691978,0.2881078310014129,0.29174076520502,0.2950084635164295,0.2977790650219197,0.2948871190856713,0.2918284734133791,0.2893716821616156,0.2858069070842998,0.282724837578251,0.2802766057910529,0.2764213573293899,0.2767368352450469,0.2773013828633405,0.2763150896228924,0.2765588914549653,0.2787303832027183,0.2795222340137753,0.2816594372149927,0.2831296543822799,0.2843172857439303,0.28413535113076,0.2892430527399183,0.2938120969147638,0.2971579278853724,0.3015143320713899,0.305083857442348,0.3086720359617906,0.3136291480837553,0.3141787552643893,0.3178056278079924,0.3233358837031369,0.3225675401178143,0.3223847640077284,0.3288513253937764,0.0,2.363724308124069,53.6292261566713,140.719118290623,189.30408322787295,fqhc1_80Compliance_implementation_low_initial_treat_cost,80 -100000,95667,47775,456.7196629976899,4847,49.47369521360552,3886,39.99289201082923,1494,15.209006240396375,77.31725194233033,79.72441951083114,63.30264576078415,65.08428939030064,77.11798637479586,79.52999156556268,63.227353299987456,65.01364946085212,0.1992655675344679,194.4279452684583,0.075292460796696,70.63992944851805,252.60994,176.89231152879097,264051.05208692653,184904.00740524195,497.28133,331.88373299056315,519163.1701631702,346275.98776471533,472.77349,231.2916099212503,490259.9119863694,238752.7609004921,2528.66487,1197.2804007288405,2602212.121212121,1210643.309215381,887.32288,407.7643285831208,910045.2507134122,408792.6370535151,1445.62308,619.5813564882762,1472018.982512256,614169.2128385694,0.37885,100000,0,1148227,12002.320549405753,0,0.0,0,0.0,42919,447.96011163724165,0,0.0,42840,443.9775471165606,1053047,0,37779,0,0,9986,0,0,74,0.7630635433326016,0,0.0,0,0.0,0,0.0,0.04847,0.1279398178698693,0.3082318960181555,0.01494,0.3698466440948018,0.6301533559051982,22.641750428331765,4.0278738153764575,0.305712815234174,0.2879567678847143,0.2076685537828101,0.1986618630983015,11.508743837252212,6.332322416131247,16.1368283881151,11369.72945660538,44.866024020478456,13.930464794301928,13.524663652003747,8.97891471125494,8.431980862917833,0.5918682449819866,0.8150134048257373,0.6893939393939394,0.587360594795539,0.1230569948186528,0.7550362610797744,0.9096153846153846,0.8166189111747851,0.736318407960199,0.1812865497076023,0.5153119092627599,0.7328881469115192,0.636471990464839,0.5379537953795379,0.1064891846921797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022592116060664,0.0043806723115144,0.0064950221744116,0.0086374213740613,0.0105611232639772,0.0128348782723846,0.014934813212821,0.0171829029094475,0.0190706144748419,0.020982101693526,0.023012208884785,0.0254115374339793,0.0274326536074196,0.0295997690578798,0.0319029176349083,0.0335947523072466,0.0355147356090683,0.0377705313006272,0.0400049941215028,0.041813481225111,0.0563153660498793,0.0699744481213086,0.0831828679403737,0.0963523309520553,0.1087621579424858,0.1232776684233919,0.1345468053491827,0.1444743820487971,0.1539949555403556,0.1641099358492995,0.1762494614390349,0.1885628308238528,0.2002024115265746,0.2103039523658373,0.2187771915718518,0.2281946137648232,0.2365786977626513,0.244154003621762,0.2513582487381614,0.2572661606969104,0.2625393300018508,0.267895142997451,0.2730037752819627,0.2787189686571455,0.2831792841266564,0.2866878635512176,0.2900735662095886,0.2919971527354078,0.2957567917205692,0.2979530546115546,0.2954991266962246,0.2916369227390039,0.2891107740703292,0.2858975097994005,0.2827239121720928,0.2803399173174092,0.2769191871306216,0.2767829349411013,0.2772906060038482,0.2768916155419222,0.2775661138502913,0.2794722851235601,0.2804097846539828,0.2819981275912799,0.2839129599385147,0.2853984027470669,0.2855683559389365,0.290226832468912,0.2946185523836113,0.2990580538367556,0.3029107725788901,0.30685539241576,0.3108269074039245,0.3139755560616412,0.31817756572177,0.319376026272578,0.3193174893357708,0.3237597911227154,0.3223912463303977,0.3213090368166604,0.0,2.394410738048252,53.89921269575177,139.4384365130478,192.98704132200388,fqhc1_80Compliance_implementation_low_initial_treat_cost,81 -100000,95856,48469,461.8072942747455,4895,49.89776331163412,3908,40.185277916875314,1439,14.646970455683526,77.4717338221379,79.75865804934593,63.40399372213196,65.09097041084969,77.2925319743093,79.58275705216683,63.33614177149008,65.02668352127677,0.1792018478286081,175.9009971790988,0.0678519506418808,64.2868895729265,252.66604,177.0157172412335,263588.9459188783,184668.1652198854,501.76587,334.1228148264204,522866.3724753798,347976.68507830537,481.70987,235.1085606747158,499086.21265231183,242628.69916422604,2496.10928,1163.5777360902653,2569262.852612252,1179213.170062004,873.69825,393.71165025564,898550.3359205475,398022.6861497656,1390.25156,587.4582094988665,1416921.3612084794,584970.69070733,0.38319,100000,0,1148482,11981.31572358538,0,0.0,0,0.0,43234,450.4047738274078,0,0.0,43547,450.769904857286,1054753,0,37780,0,0,10038,0,0,81,0.8450175262894342,0,0.0,3,0.0312969454181271,0,0.0,0.04895,0.1277434171037866,0.293973442288049,0.01439,0.372156862745098,0.6278431372549019,23.142367306044584,3.948042527772973,0.3011770726714431,0.3039918116683726,0.2003582395087001,0.1944728761514841,11.419040109572126,6.334118356362096,15.20653233854074,11477.142344047828,44.77617603711575,14.693976632428129,13.368244075570177,8.586921406157307,8.127033922960125,0.5980040941658137,0.8173400673400674,0.6949872557349193,0.5874840357598978,0.1157894736842105,0.7674216027874564,0.9221311475409836,0.8389057750759878,0.717391304347826,0.1564625850340136,0.527536231884058,0.7442857142857143,0.6391509433962265,0.5475792988313857,0.1060358890701468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020346188885514,0.0042548449514238,0.0066620698047009,0.0088408444985789,0.0111169823591577,0.0132977911626156,0.0155244071387824,0.0176664388661655,0.0202295610971549,0.0221713163707764,0.0243245457711137,0.0266960668683657,0.028753698224852,0.0308159275645642,0.0329753020244918,0.0349025722576181,0.0367523843018805,0.038812714402678,0.0409727125472442,0.0429783027212654,0.0580696961481512,0.0723708969266151,0.0852205443132158,0.0977367768508206,0.1098685666705313,0.1259118300031715,0.1377054395080055,0.14845112973916,0.1583397386625672,0.1672918631569922,0.1790752477591383,0.1897134952285229,0.200241044962486,0.2101965065502183,0.2188371735453687,0.2282148502702762,0.2361858299640235,0.2438364469193461,0.251449406649153,0.2579789666209419,0.2642204164550533,0.2702765729210391,0.2761066333093381,0.2801438780143878,0.2843222803955788,0.2881187144999877,0.2907774865843005,0.2949904882688649,0.297297646087136,0.3001603659498396,0.2976011591714071,0.294141801259239,0.2919808279844157,0.2889750772103713,0.2851086458779562,0.2810693201874505,0.2775515978433437,0.2774193548387096,0.2783641384451183,0.2797283195075791,0.2805102211329582,0.281660926737633,0.2836851490897026,0.2844223327805417,0.2865692910580691,0.2872518474650462,0.2871637763849461,0.2928438661710037,0.2971503303964757,0.3019888685634219,0.30630068621335,0.3102134544126089,0.3126124449407531,0.3160270880361174,0.3206121115983951,0.3220916568742655,0.3292847503373819,0.3343248066627007,0.337990327780763,0.3390912504693954,0.0,2.27519572288848,49.64736263021863,149.5780327422101,196.95654902178535,fqhc1_80Compliance_implementation_low_initial_treat_cost,82 -100000,95737,48057,457.3362440853589,4779,48.64368008189102,3801,39.09669197906766,1391,14.17424820080011,77.34438518034166,79.69751768380209,63.33412346583962,65.07241554781282,77.16012818216561,79.5173736037893,63.26342748802308,65.00563456001213,0.1842569981760533,180.1440800127949,0.0706959778165341,66.78098780069774,254.19372,177.99909291464834,265512.0590785172,185924.6263353231,503.1502,335.76916755559984,524916.5735295655,350082.6442813121,476.42926,232.6735851940162,493604.8654125364,239828.5033828456,2473.44992,1163.6337899108105,2548152.8144813394,1180043.5664485109,883.297,403.3596502696436,909714.3946436592,408406.2799854215,1350.70944,584.2380852542238,1378839.9469379657,582271.1122223565,0.3807,100000,0,1155426,12068.729958114418,0,0.0,0,0.0,43468,453.3879273426157,0,0.0,42945,444.59299957174346,1041827,0,37446,0,0,10060,0,0,88,0.9087395677742148,0,0.0,0,0.0,0,0.0,0.04779,0.125531914893617,0.2910650763758108,0.01391,0.3703703703703703,0.6296296296296297,23.21742819218593,3.962392865013016,0.310444619836885,0.2851881083925283,0.2067876874506709,0.1975795843199158,11.433984097085208,6.252144134995935,14.965870061943614,11458.198566531222,43.579708333688245,13.41620097911174,13.293816590121494,8.716773314352222,8.15291745010279,0.588529334385688,0.8099630996309963,0.6949152542372882,0.573791348600509,0.1171770972037283,0.7418244406196214,0.908119658119658,0.835820895522388,0.6919191919191919,0.124223602484472,0.5210306934444866,0.7353896103896104,0.6390532544378699,0.5340136054421769,0.1152542372881356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0045319517808441,0.0070110289268357,0.0093334552065242,0.0114382739898733,0.0136817566398257,0.0157049387497197,0.0182152150619929,0.0206291955737654,0.0227054128721989,0.0249815558652348,0.0271576808202728,0.0290775985276124,0.0312667353244078,0.0333825061637971,0.0355076058201058,0.0375009056939686,0.0395105257699885,0.0418610935015536,0.0437268892245195,0.0579822107153296,0.0715571368773545,0.0845674609833864,0.0972396025027604,0.109454415083198,0.1251004525652413,0.1365540648035212,0.1464836684753697,0.1556955941255006,0.1652210273509955,0.1783780292182975,0.1902124529444853,0.2011547369222238,0.2103640874859272,0.2189341954781384,0.2283756558701764,0.2360378053271142,0.2446103844985998,0.2515314456847264,0.258337435744788,0.2638233388858041,0.2691326829040031,0.2743590046972798,0.2792805755395683,0.2833147104547221,0.2872590966819151,0.2907524296162709,0.2943139127666348,0.2977232697886448,0.3000448596157906,0.2969737726967048,0.293412104142337,0.2908901672316066,0.2878429449268672,0.2848368863767858,0.2812672092027167,0.2780870445344129,0.2776786152914012,0.2783874045801526,0.2783897777224111,0.2787604015075189,0.2802571563384712,0.2818776564713726,0.2833077419498409,0.2841412327947337,0.2855810821311093,0.2864296019689383,0.2904193487907006,0.2939659079025342,0.2986695092581626,0.301359346068735,0.3038161501159603,0.3067190226876091,0.3112290669856459,0.3167408231368186,0.3183249737548116,0.3250530142381096,0.3254065040650406,0.3336081341027755,0.3407606607760277,0.0,2.36292326724593,50.28307379295054,136.3992770890523,195.16772177631665,fqhc1_80Compliance_implementation_low_initial_treat_cost,83 -100000,95675,47896,458.67781552129605,4866,49.490462503266265,3946,40.70028743140841,1421,14.549255291350928,77.28108161739658,79.6687087414915,63.29287913429015,65.05589998914374,77.10214100553122,79.49157367489207,63.22506126552054,64.99093564089395,0.1789406118653573,177.13506659943334,0.067817868769616,64.96434824978792,252.78946,177.09113564878666,264216.8382545074,185096.56195326537,501.72561,334.17031837277347,523880.1881369219,348750.53919286485,480.41924,234.67173176360131,498337.62215834856,242371.91924460643,2507.6638,1190.5570586563088,2587895.939378103,1211249.2277567894,896.77269,411.2732937855909,922680.585314868,415234.12990393554,1371.8239,584.1907311726137,1404719.4983015417,585085.3547068806,0.38001,100000,0,1149043,12009.856284295793,0,0.0,0,0.0,43260,451.60177684870655,0,0.0,43539,451.27776326104,1045592,0,37573,0,0,10072,0,0,82,0.8570681996341782,0,0.0,1,0.0104520512150509,0,0.0,0.04866,0.1280492618615299,0.292026304973284,0.01421,0.3693497224425059,0.630650277557494,22.72585761539376,3.9110728533744665,0.3086670045615813,0.3051191079574252,0.1991890522047643,0.1870248352762291,11.676276615824028,6.651572133787262,15.190749232722547,11340.178991421948,45.60401554343194,14.897849821038864,13.940118060842366,8.74216697967957,8.023880681871134,0.6115053218449062,0.8280730897009967,0.7077175697865353,0.5814249363867684,0.1314363143631436,0.8033573141486811,0.9274809160305344,0.8955613577023499,0.7208121827411168,0.2312925170068027,0.5224489795918368,0.7514705882352941,0.6215568862275449,0.534804753820034,0.1065989847715736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020260345438889,0.0043187785764251,0.0063630920364939,0.0086964472574697,0.0107194434839208,0.0126573255671866,0.0148153435161204,0.0168354637154408,0.0191157679529772,0.0214229418929569,0.0233156637376834,0.0252679781510534,0.0272418757712875,0.0291993364723822,0.0310651956281671,0.0330241839593866,0.0349499678882926,0.0370216608371648,0.0390284495761169,0.0410243582126887,0.0551840862551715,0.0689821262159303,0.0824743350198391,0.0954976378118456,0.1073139336132857,0.1230744815911976,0.134837901530753,0.1456826678311623,0.1555930971066869,0.1650988982668642,0.1768487358702217,0.1878427292628476,0.1980571104963952,0.2065525661662451,0.2151112188350391,0.2247382895670688,0.2332629320459955,0.2416352272087392,0.2488356242190162,0.255926724137931,0.2621460420406509,0.2670968950937562,0.2725397935358468,0.277330388968232,0.28211424611906,0.2863376392860665,0.2910517817581015,0.2933328240970604,0.2962699039944029,0.2992589852985853,0.2959603175672943,0.2929868770741246,0.2894346813466017,0.2856563960808718,0.2838561819155902,0.2810264266564534,0.2767936226749335,0.2783403633737629,0.2785659411011523,0.2791974054670516,0.2792560158676696,0.2809157588817935,0.2817051956489845,0.2823132293110386,0.283830523130134,0.2856030926497678,0.2866672343807658,0.2920866462154886,0.2951521905690604,0.2983442797026782,0.3023465703971119,0.3052925084175084,0.3058625210713617,0.3113143885431506,0.3201555411535969,0.3246242774566474,0.3246831623415812,0.331018059138718,0.3336901257693337,0.3377609108159393,0.0,2.1740446258118906,54.57731501956419,144.49907294967622,194.43472685204387,fqhc1_80Compliance_implementation_low_initial_treat_cost,84 -100000,95729,48228,460.46652529536505,4822,49.17005296200733,3800,39.14174388116454,1344,13.694909588525944,77.3612597271838,79.72651420753101,63.34108899169471,65.08898484291646,77.18456872319183,79.55448303047946,63.27393602354498,65.02604173691563,0.1766910039919764,172.0311770515508,0.0671529681497276,62.943106000830085,251.04684,175.9030817797455,262247.4276342592,183751.09087083905,502.67205,335.79311204372686,524539.7423978106,350215.4123031963,483.89904,237.00091456932705,502027.3062499347,244847.4518474192,2414.92126,1148.347747209681,2487747.015011125,1164664.654607989,872.04074,405.0970461317913,893292.126732756,405515.4928305845,1296.44338,558.3575798924576,1321802.6094495922,554364.1056565016,0.38116,100000,0,1141122,11920.337619739055,0,0.0,0,0.0,43197,450.6471393203731,0,0.0,43701,453.0915396588286,1057916,0,37947,0,0,9879,0,0,95,0.992384752791735,0,0.0,1,0.0104461552925445,0,0.0,0.04822,0.1265085528387029,0.278722521775197,0.01344,0.3506364359586316,0.6493635640413683,23.224723594105512,3.942355188051224,0.3202631578947368,0.2876315789473684,0.2123684210526315,0.1797368421052631,11.665499624386824,6.591881010280371,14.395464504176148,11436.040949645683,43.83725867934093,13.615874747394065,13.82066152361018,8.999379617095808,7.401342791240883,0.6036842105263158,0.817932296431839,0.7058340180772391,0.5749690210656754,0.1127379209370424,0.7863453815261044,0.9442307692307692,0.8675675675675676,0.7437185929648241,0.1217948717948717,0.5146771037181996,0.7033158813263525,0.6351829988193625,0.5197368421052632,0.1100569259962049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.0046232460053532,0.0066976517627001,0.0087980412674868,0.0110139326756839,0.0134722307081322,0.0152958211816531,0.0175626691172716,0.0197531873996748,0.0216216216216216,0.0234997385500292,0.0254711652031017,0.0278923388631197,0.0302864854284919,0.0323612573008895,0.0346328402030414,0.0366588654391814,0.0386758677943236,0.0406679907246617,0.042426831428363,0.0571037766385098,0.0718121016108267,0.0849242646750304,0.0976489390785018,0.109654300168634,0.125280115005708,0.1370885646420088,0.1473229485869935,0.1571301923672601,0.1659234166630933,0.1782768793471005,0.1897972870648811,0.1999739093567569,0.2102473305135687,0.2195510706591039,0.2289264611503308,0.2373493572949531,0.2455172568757864,0.2527340518364895,0.2589211143527258,0.2650488241751892,0.2695541490529463,0.2745355268756205,0.2782855228844175,0.2835263897639703,0.2879893828798938,0.2914342057637822,0.2942625344387593,0.2970537664990368,0.2996863716627573,0.2956493698438717,0.2927451545203901,0.2892090776317267,0.2864987964657893,0.2838893252515672,0.2813292202437311,0.2775544309385297,0.2773875257294083,0.2765708073584617,0.2766297684831471,0.2763140720851746,0.2773389019128859,0.2786909181928163,0.2803505494016637,0.2816702560421153,0.2839855618167182,0.2842371388802091,0.2890296681929373,0.2924297497553474,0.2994823566602126,0.3035182679296346,0.3084788422211735,0.3100857036392995,0.3103422395676974,0.3175688158137816,0.3238583410997204,0.3330824804334738,0.3382558371582518,0.3430939226519337,0.341991341991342,0.0,2.111511763066521,54.35584393679545,130.36106424155142,190.38821913248125,fqhc1_80Compliance_implementation_low_initial_treat_cost,85 -100000,95649,48198,460.19299731309263,4940,50.32985185417516,3910,40.28270028960052,1445,14.762308022038914,77.2430810454354,79.64783137060016,63.27207635196621,65.05007123764099,77.06009373025044,79.46795945867811,63.20360176583726,64.98516294235792,0.1829873151849597,179.87191192204932,0.0684745861289499,64.90829528307529,251.8527,176.41549395700486,263309.28708088945,184440.50011709987,500.98329,333.8641877772528,523125.3541594789,348404.1315405836,480.05781,234.24320753726025,497731.2569917092,241724.95247940204,2500.07528,1173.801841465863,2575850.1186630283,1189562.000568144,881.25648,395.2900010297327,905115.578835116,397160.7904804738,1401.60988,593.8622753886208,1432703.237880166,592304.5213256385,0.3815,100000,0,1144785,11968.60395822225,0,0.0,0,0.0,43128,450.22948488745305,0,0.0,43381,449.3930934981024,1049772,0,37768,0,0,9932,0,0,103,1.0768539137889577,0,0.0,0,0.0,0,0.0,0.0494,0.1294888597640891,0.2925101214574899,0.01445,0.3709083865969397,0.6290916134030602,23.09390605788727,4.067323847056146,0.3176470588235294,0.2805626598465473,0.207928388746803,0.1938618925831202,11.580800395427058,6.351170480632744,15.41217121912894,11470.040124979898,44.96625051753334,13.532301172778253,14.18715373714818,8.920757960831352,8.326037646775553,0.589769820971867,0.8113035551504102,0.6884057971014492,0.5879458794587946,0.1094986807387862,0.7521150592216582,0.9136069114470844,0.8619718309859155,0.7409326424870466,0.0994152046783625,0.5194281524926686,0.7365930599369085,0.6189402480270575,0.5403225806451613,0.1124361158432708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.0043413872152232,0.0069033430453894,0.0094087523750495,0.0116871624301974,0.0140536687204032,0.0161305123629875,0.0182568207809181,0.0206867637434555,0.0228562066070002,0.0250228179384889,0.0273062427472606,0.0292992451510726,0.031070681680042,0.03297792182323,0.0350946127597973,0.0370539182679857,0.0391090444855001,0.0408042270807763,0.0428686106274955,0.0580994378147923,0.0719276010516282,0.0852466588978824,0.0977381090212506,0.1098384883352686,0.1253414071266752,0.1367262606626512,0.1472049292171243,0.157068118841541,0.1667901672089951,0.178784511312266,0.1901427533954063,0.2011086788425305,0.2099361606605126,0.2181497603173728,0.2273619754401144,0.2361870270391111,0.2442451352660815,0.2517130487153555,0.2582068680940809,0.2640858122509498,0.27063876600426,0.2765657737425869,0.2806003788332893,0.2842745121877089,0.2881761549373959,0.2917298130033441,0.2952049733751178,0.2980638300631557,0.3003567181926278,0.2963731128200293,0.2929952953476215,0.28987386371644,0.2870810631133207,0.2850261655566127,0.2807057850480173,0.2772647352330867,0.278170170827858,0.2782862607151395,0.2786823781467595,0.2794575533630941,0.2808114794656111,0.2835364576789378,0.2850340896389851,0.2854055092581474,0.2862733842982753,0.2870164009371964,0.2912697664183092,0.2945779961396736,0.2992953541144154,0.3008635262941472,0.3049136786188579,0.3083160475202715,0.3104967340118487,0.3123114630467571,0.3140798488069927,0.3159679408138101,0.3209926769731489,0.3188286808976464,0.3233054074638233,0.0,2.217929704245748,51.50888909839877,143.25812080833774,200.5493232627603,fqhc1_80Compliance_implementation_low_initial_treat_cost,86 -100000,95824,47991,457.3593254299549,4821,49.14217732509601,3836,39.52037067957923,1492,15.27800968442144,77.44904619750217,79.77450086945699,63.38601454967061,65.10651865454962,77.25675499540885,79.5845085928369,63.31289449558594,65.03661881069046,0.1922912020933154,189.9922766200888,0.0731200540846757,69.89984385916159,253.51964,177.3694227498756,264567.99966605444,185099.16383147813,497.82817,332.114584461853,519016.6555351477,346081.2890944367,473.29621,230.86124414288173,490745.856987811,238503.77677124948,2466.84602,1171.6908194550006,2542656.140424111,1191058.2103178753,860.92838,399.0222844141728,887798.7977959592,405767.9981368141,1446.23158,623.5100428913075,1481954.6668892968,626031.6242409042,0.37981,100000,0,1152362,12025.818166638835,0,0.0,0,0.0,42926,447.4348806144599,0,0.0,42792,443.2918684254466,1055223,0,37910,0,0,10127,0,0,81,0.8452997161462682,0,0.0,0,0.0,0,0.0,0.04821,0.1269318869961296,0.3094793611283966,0.01492,0.3631652381901535,0.6368347618098466,22.9579201942713,4.039942542151233,0.3104796663190823,0.2844108446298227,0.2062043795620438,0.1989051094890511,11.004912417970628,5.8546096126937694,16.01529941731667,11380.19752603824,44.094876737357566,13.393144541925157,13.465386080059789,8.845365369554697,8.390980745817929,0.5873305526590198,0.8258478460128322,0.6985726280436608,0.5600505689001264,0.1009174311926605,0.7605985037406484,0.946236559139785,0.8676056338028169,0.7164179104477612,0.1263736263736263,0.5081655905810862,0.7364217252396166,0.6267942583732058,0.5067796610169492,0.0929432013769363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021773695350556,0.0047844464942779,0.0070418962385721,0.0092745908716896,0.0114300822681188,0.0135929052162137,0.0159354832131969,0.0180957143877769,0.0199693408277976,0.0222754294952471,0.0244504790695291,0.0263649425287356,0.0282997532894736,0.0304243971748038,0.0325701320132013,0.0347232266462797,0.0368250551133835,0.0386876678522174,0.040541944600295,0.0426526469210348,0.0574483621948675,0.0712239392735409,0.0850093802731284,0.0974584729824856,0.1100105374077976,0.1247899559303763,0.1355050033921302,0.1463801097452039,0.1564123627751165,0.1651905715540229,0.176650248424494,0.1881455551233847,0.1976395735163188,0.2067309790911868,0.21582812791604,0.225616765408082,0.2339918483707877,0.2421355060996824,0.2495020145773914,0.2559024089367097,0.2618017331902471,0.268290122808859,0.2737116502907559,0.2776961399233002,0.2822211456945622,0.2855423166687139,0.2895219098672318,0.2931261722512293,0.2962958186086104,0.2991787661783063,0.296704475370713,0.2937267046700285,0.2913401281386252,0.2874320398124442,0.2848365800705962,0.2808416120247676,0.2771608525609813,0.2772104688848716,0.2767928202523071,0.2767964601769911,0.2773327881952833,0.2772023261733665,0.2784194781452551,0.278143931828773,0.2790231803872937,0.2794989432444971,0.2807175899808191,0.2842301710730949,0.2886752360051555,0.2941891468005019,0.2981506540369869,0.3030398819872504,0.3069671619428143,0.3129046830296642,0.3149687179008311,0.3196539226002572,0.3227025392986699,0.3278491171749598,0.3263757115749525,0.3310810810810811,0.0,1.9939204348987705,52.36797430649598,139.3753263089585,190.80023144981905,fqhc1_80Compliance_implementation_low_initial_treat_cost,87 -100000,95813,48223,459.7810318015301,4751,48.49028837422897,3808,39.22223497855197,1465,15.018838779706302,77.3497797498425,79.68216149316864,63.33168066437421,65.05950390931706,77.16303889903546,79.49719189104574,63.26146652984084,64.9919313891862,0.1867408508070411,184.9696021228908,0.0702141345333728,67.57252013085235,253.76868,177.75523225738476,264858.2968908186,185523.08377504596,501.22782,334.6452089576583,522631.1773976392,348768.95510803163,476.77892,233.21776036542465,493673.40548777307,240509.31578853648,2479.52943,1168.0684041378713,2557110.131193053,1188361.9385029925,878.67315,401.14882215661714,907353.6054606368,408977.6395634094,1423.96246,605.2939432399266,1460438.562616764,609539.5234206647,0.38022,100000,0,1153494,12039.013495037208,0,0.0,0,0.0,43192,450.25205347917296,0,0.0,43088,445.81632972561135,1044476,0,37437,0,0,9920,0,0,86,0.8975817477795288,0,0.0,0,0.0,0,0.0,0.04751,0.1249539740150439,0.3083561355504104,0.01465,0.3589274832419256,0.6410725167580743,22.80338261889543,4.015718744747219,0.3064600840336134,0.2833508403361344,0.1995798319327731,0.210609243697479,11.45291856988075,6.3639770428568285,15.625681871210466,11341.594398426936,43.82689698937177,13.354012295557167,13.307668216437904,8.556915428503556,8.60830104887314,0.5790441176470589,0.788693234476367,0.7163667523564696,0.5842105263157895,0.0922693266832917,0.754950495049505,0.9100642398286938,0.8495821727019499,0.7336448598130841,0.1627906976744186,0.4969183359013867,0.696078431372549,0.6571782178217822,0.5256410256410257,0.073015873015873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070972709038,0.0041063806057164,0.0066170052976637,0.0089404545408365,0.0110873766656494,0.0132477979736265,0.0156402936378466,0.0179251349999489,0.0203501742694481,0.0224669648614622,0.0245615114145421,0.0268083577185687,0.0289548095213613,0.0307586164286229,0.0328443811763735,0.034987290499907,0.037037037037037,0.0388963800435639,0.0409064461161215,0.0427290805543119,0.0564400025038078,0.0708198709704403,0.0842678964469133,0.0967758885222472,0.1085183077214949,0.1240761691284534,0.135800504889794,0.146551724137931,0.156544401956805,0.1659533846038335,0.177892230279391,0.1882643232830458,0.198927538123518,0.2074283778023107,0.2160488395116049,0.2251506691482761,0.2339283721968091,0.241766643804041,0.249194573010255,0.2554828075637562,0.2619223830889495,0.2673164346901331,0.2734753718461065,0.2778974579922447,0.2812666828439699,0.2847297430343605,0.2872329793878825,0.2908640406607369,0.2945396726906073,0.2979309435951502,0.2948210922787194,0.2914563186926558,0.2883164414414414,0.2859352861232397,0.2828894629019328,0.278942459134211,0.2752492140476152,0.2749103766635564,0.2750954068420335,0.2749991094011613,0.2757615943517809,0.2761073455233291,0.2766445584616026,0.2768891953818432,0.2776661884265901,0.2781551384423934,0.2789887894915638,0.2828134747348721,0.2864485656734041,0.2903352130325815,0.2937702848900108,0.2967240655186896,0.2989568367793116,0.3026096191776665,0.3061129258049463,0.3084559682317215,0.3145063597819503,0.3170974155069582,0.3195821055451379,0.332319391634981,0.0,2.019530029341313,52.95803900286931,133.24410763041848,192.8550215596589,fqhc1_80Compliance_implementation_low_initial_treat_cost,88 -100000,95814,47762,454.8291481411903,4844,49.56478176466905,3856,39.81672824430668,1483,15.154361575552636,77.41775944651599,79.74502690908311,63.37436231324406,65.09469138080289,77.22933945388367,79.55903152895218,63.303056770835184,65.02639585890573,0.1884199926323191,185.99538013093309,0.0713055424088793,68.29552189715571,253.71786,177.66062473334037,264802.4923288872,185422.40667683256,500.07708,333.4142809210276,521500.8558248272,347556.7567589575,472.62123,230.7694811326492,490720.5523201203,238887.26667209849,2472.6864,1170.2896309845112,2551608.2931513144,1192311.354274438,879.39635,400.7347101028508,903206.7860646668,403632.98693599104,1437.51338,611.6741000437898,1469112.0713048198,612029.6773213063,0.3794,100000,0,1153263,12036.47692404033,0,0.0,0,0.0,43111,449.4854614148246,0,0.0,42792,444.0687164714969,1050711,0,37713,0,0,10175,0,0,85,0.8871354916818002,0,0.0,0,0.0,0,0.0,0.04844,0.1276752767527675,0.3061519405450041,0.01483,0.3774219058916568,0.6225780941083432,22.90495584691494,3.89811167435193,0.3065352697095436,0.2927904564315353,0.2009854771784232,0.1996887966804979,11.437164915770795,6.426399003203756,15.849370562501276,11363.76618610488,44.38329594531356,13.9561250994668,13.366623058922771,8.734150092412435,8.32639769451156,0.5863589211618258,0.8051372896368467,0.7055837563451777,0.5561290322580645,0.1129870129870129,0.773978315262719,0.8917835671342685,0.9054878048780488,0.7592592592592593,0.141025641025641,0.5016936394429808,0.7365079365079366,0.6288056206088993,0.4776386404293381,0.1058631921824104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021263884810498,0.0046425349457188,0.006879686659699,0.0089577705104507,0.0111547221996258,0.0132130787084164,0.0156864743655081,0.0180860618927084,0.0201455467200883,0.0224139519174675,0.0245799977449543,0.0263916975476559,0.028525318147242,0.0306072024213972,0.0328411457796292,0.0349724744110143,0.0371520231812066,0.0390325322938481,0.0408468554569819,0.0428201097310859,0.057258518874027,0.0704586081811434,0.083961384052578,0.096682703418139,0.1091650166406875,0.1245576039300618,0.1358007690433566,0.1459841598894381,0.1560416110962923,0.1650527037449652,0.1765370097538418,0.1878152849041318,0.1980718287228036,0.2077951853267099,0.2167236057253962,0.225817156130745,0.234557856490047,0.2428808839381961,0.2499348773996262,0.2566691441312675,0.2620411651920811,0.2668114064269122,0.2720564796996564,0.2766015980096646,0.2807672721099983,0.2841043307086614,0.287904514582501,0.2914027493938894,0.2933236893429601,0.2952883300010523,0.2933125805066552,0.2901202371801911,0.2877589718379099,0.2846814149095518,0.2827246067715276,0.2790910756826095,0.2766514267696673,0.27734375,0.2780145697838306,0.278186948728415,0.2790580695642454,0.2808819206271435,0.2819457436856875,0.2836511839103373,0.2833981996609441,0.2848016139878951,0.2850526672502894,0.2890556870561854,0.2934661852520483,0.2975868157739847,0.3017016296029531,0.3067423406379736,0.3098661686896981,0.3152165753321823,0.3154468520412908,0.3200282585658778,0.323317491951556,0.3353389490573606,0.3351264120494889,0.331306990881459,0.0,1.5650502424747583,52.67746580328085,143.20297254281076,190.2005493472041,fqhc1_80Compliance_implementation_low_initial_treat_cost,89 -100000,95727,47962,457.61383935566766,4714,48.10555015826256,3750,38.63068935619,1376,14.0294796661339,77.3893283971574,79.75047740648439,63.35181630130408,65.09358931604046,77.20939568297423,79.57313382694319,63.28386062251206,65.02886894466253,0.1799327141831668,177.34357954120128,0.0679556787920176,64.72037137793052,253.98186,177.81159914747948,265318.70841037534,185748.40864905345,499.54599,334.01346724939833,521274.54114304215,348353.08455231885,480.06309,234.9255438560477,498317.7055585153,242940.1392858989,2432.77002,1161.1920314168765,2507645.5963312336,1179307.7307519051,877.56735,409.4686594160609,901854.9521033772,412919.0946043984,1333.9078,576.7425408770839,1361224.9208687204,575141.5883306942,0.37923,100000,0,1154463,12059.941291380695,0,0.0,0,0.0,43045,449.07915217232335,0,0.0,43353,449.7163809583503,1045117,0,37518,0,0,9900,0,0,84,0.8670490039382828,0,0.0,2,0.0208927470828501,0,0.0,0.04714,0.1243045117738575,0.291896478574459,0.01376,0.3790503362543305,0.6209496637456694,22.64328682373001,3.986692033204132,0.3157333333333333,0.2869333333333333,0.2008,0.1965333333333333,11.79639281170556,6.652461204372677,14.84609128150303,11378.038623528557,43.52375222041752,13.459288882889316,13.57390685749644,8.413403157523799,8.077153322507945,0.6026666666666667,0.8197026022304833,0.7170608108108109,0.5856573705179283,0.1194029850746268,0.7748953974895397,0.9287169042769856,0.8774928774928775,0.7,0.1779141104294478,0.5221135029354207,0.7282051282051282,0.6494597839135654,0.5470692717584369,0.102787456445993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020863506081813,0.0045202549991385,0.0066238600975827,0.008661393336921,0.0109389614086454,0.0132015552796042,0.0153676830262514,0.0173159731434052,0.0195469361480376,0.0218768226422044,0.0239266318270314,0.0258854188041203,0.0278771064529387,0.0298507462686567,0.032052472000495,0.034081162355713,0.0361823715758742,0.0381806866507623,0.0404618870434656,0.0425828897615649,0.0574826664439061,0.0711213887348407,0.0844922702577979,0.0972401829364453,0.1094293483989291,0.1249814944060233,0.1363414582405227,0.1467382047351388,0.1561905779297083,0.1654211118854875,0.1778691878620808,0.1892678283631329,0.1989477002685103,0.2087620130544591,0.2172975589364487,0.2264370362166352,0.2348956589666332,0.2430870264374149,0.2508309982188844,0.2570201557489693,0.2625177751829543,0.2672384580329286,0.2724791132434444,0.2777538468901812,0.2817166215839206,0.2858478381204256,0.2893171365726855,0.2923539944378833,0.295913750533242,0.2989203423304806,0.2958409941889334,0.2920776459290761,0.2893913677743334,0.2858624863120281,0.2832361386578254,0.2795897217057335,0.2761675478348439,0.277363812753746,0.2774846011572464,0.2784904455208389,0.2802605863192182,0.2807420494699646,0.2815590580690832,0.281231261243254,0.281595604920578,0.2814193548387096,0.2812799819402901,0.2860339362297222,0.2879670063076177,0.2917791603083304,0.2953635832171606,0.3017390847475437,0.307170422009212,0.3117466496967882,0.315799239261527,0.3191563738056397,0.3219628964691801,0.3204594969300852,0.3224118942731278,0.3190348525469169,0.0,2.028075651072853,52.08702440072826,142.06148422449533,179.93693928073492,fqhc1_80Compliance_implementation_low_initial_treat_cost,90 -100000,95677,48300,460.8526605140211,4757,48.642829520156354,3815,39.340698391462944,1407,14.41307733311036,77.35982293729873,79.73481774988213,63.33991942654043,65.08960811876206,77.18312500985625,79.5597150798681,63.2739476285755,65.02610677111996,0.1766979274424756,175.10267001402724,0.0659717979649343,63.501347642102246,252.73248,176.988657197184,264151.07079026307,184984.91465993295,500.13404,333.46713633444364,522206.6118293843,348009.71531971486,479.8797,234.50453502381268,497625.6048998192,242163.08864939143,2463.39692,1157.0423204053038,2542137.3370820573,1176780.3396901062,883.76955,397.7483595088215,911528.7895732516,403625.4348545772,1360.73458,575.4271673194677,1394477.8368886984,577900.7600464091,0.38193,100000,0,1148784,12006.866854102866,0,0.0,0,0.0,43076,449.6587476614024,0,0.0,43264,448.3209130721072,1051069,0,37713,0,0,10132,0,0,91,0.9406649455982106,0,0.0,1,0.010451832728869,0,0.0,0.04757,0.1245516194066975,0.2957746478873239,0.01407,0.3593309149536477,0.6406690850463522,23.18399715415017,3.966652382811757,0.30956749672346,0.291218872870249,0.2028833551769331,0.1963302752293578,11.55604083657783,6.468339568366199,14.998563630269176,11473.804021244652,43.99222492110552,13.762384426068838,13.447382453637712,8.687990969998193,8.094467071400775,0.5984272608125819,0.7974797479747975,0.7146486028789162,0.6098191214470284,0.1081441922563418,0.7832047986289632,0.9175050301810864,0.8826979472140762,0.7582417582417582,0.1292517006802721,0.5169939577039275,0.7003257328990228,0.6464285714285715,0.5641891891891891,0.1029900332225913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020051039008384,0.0040846940533746,0.0064830315020544,0.0087749588673803,0.0111334797462176,0.0131202605730571,0.0152436849774299,0.0174468432436844,0.0195918200576109,0.0220867305705312,0.0241975966315962,0.0262223772493177,0.0285323712908431,0.0307042833607907,0.0327189082694668,0.0346548979887136,0.0366164230402915,0.0388524726186525,0.0408366948060049,0.043093565666882,0.0577616197072742,0.0720156637733359,0.0855880439117566,0.0982651053667055,0.1106447156100699,0.1267920056709375,0.137961410286345,0.1489717456361758,0.1592274311122512,0.1680993314231136,0.1807182183530324,0.1913016175483423,0.2019105231090608,0.2107998686946055,0.2193255755066991,0.2285594046247895,0.2369789342140498,0.2456000359639461,0.2526159462186398,0.2583092113543013,0.263673139158576,0.2694429509806213,0.2750928049559029,0.2798411027089116,0.2839464274892431,0.2881647709806332,0.2922642899050044,0.2938996217410068,0.297086475875607,0.3002369980250164,0.2973332080688239,0.2939134491369611,0.2913416810714336,0.2896317313093198,0.2864076951535331,0.2826992629217598,0.2779663157230123,0.2771654574933263,0.2779663329524329,0.2792027359196323,0.279359031824294,0.2797881556150575,0.2797103566286179,0.2809989093903715,0.2811513818494788,0.280816601117781,0.2817581300813008,0.2864576841580456,0.2918924551896623,0.2974268316637203,0.3033186040220038,0.3072012661566869,0.3124607461374199,0.3165593027661993,0.3196078431372549,0.3209686946249261,0.3208491281273692,0.3254189944134078,0.3301486199575371,0.3308298911002628,0.0,2.0243979940813213,50.93275040669274,144.13610015144735,188.8810295261017,fqhc1_80Compliance_implementation_low_initial_treat_cost,91 -100000,95847,48220,459.94136488361664,4849,49.22428453681388,3883,39.86561916387576,1451,14.65877909585068,77.34109898624328,79.6309709029993,63.34986309044478,65.04357334628094,77.15137106035252,79.44895200662926,63.27594748203133,64.97559889006565,0.1897279258907644,182.01889637003887,0.0739156084134435,67.97445621528198,252.7569,177.00409460261287,263708.7232777239,184673.5887431144,498.56143,333.1697820161567,519542.781725041,346984.800793094,477.01677,233.3688973292076,493924.9741775955,240500.84169412483,2483.72618,1175.5271506840547,2551867.96665519,1186985.362801188,881.77636,404.8793703134326,901580.3833192484,404019.69838746457,1408.04202,607.7552349917972,1425239.9553454986,597110.9587765806,0.38044,100000,0,1148895,11986.760148987449,0,0.0,0,0.0,42853,446.451114797542,0,0.0,43086,445.7312174611621,1052308,0,37731,0,0,10023,0,0,92,0.9598631151731406,0,0.0,2,0.0208665894602856,0,0.0,0.04849,0.1274576805803806,0.2992369560734172,0.01451,0.3720332278481013,0.6279667721518988,22.92089673420948,3.951720200813376,0.3221735771310842,0.291784702549575,0.1846510430079835,0.2013906773113572,11.30573157062477,6.264118889677229,15.479340328772876,11461.2079586255,44.69166453401839,14.00776037472167,14.275320431160903,7.931267760765761,8.477315967370057,0.5853721349472057,0.8049426301853486,0.7018385291766587,0.5453277545327755,0.1176470588235294,0.7558333333333334,0.9153225806451613,0.844632768361582,0.6961325966850829,0.165680473372781,0.5091315691390235,0.7189952904238619,0.6454849498327759,0.4944029850746269,0.1044045676998368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0047623390177422,0.0067451744109383,0.0090563892216784,0.0112007805988656,0.0132703736872099,0.0155872734496775,0.0177709767916347,0.0198455661552918,0.0219012449236371,0.023989265264732,0.0258556146990349,0.0279264196871501,0.0300118318843561,0.0320659453889747,0.0341517788029848,0.0363454002130057,0.0384388242485779,0.0402300640566439,0.0422306611871195,0.0569888212229915,0.0710806856187291,0.0842228763578843,0.0975696851303379,0.1103494029190623,0.1258991665874449,0.1375295326686937,0.1476358068666333,0.157470651013874,0.1673437449755072,0.1791703442188879,0.1910293433704316,0.2013916825224245,0.2098893650516005,0.2183927019026553,0.2281430755933781,0.2369070071086609,0.2453112518704364,0.2528029959146618,0.2584978698062211,0.2645966613065559,0.2704491504613118,0.2746791269888212,0.2790934464129562,0.2826158236687109,0.2865401207937877,0.2909009020279992,0.2944714289347201,0.2967786154900617,0.2995871311551094,0.2965922697125022,0.2935929855423011,0.2900178780072356,0.2882205875977282,0.2859944435365256,0.2827480682426746,0.2793959519291588,0.2787748539930441,0.2789254078456855,0.2800443577957037,0.281583638239985,0.2830904885233585,0.2843096146588955,0.2835446440571659,0.2849913244650087,0.2856770017747155,0.2868733452899479,0.2910056234488392,0.2947008308315297,0.2984609313338595,0.3041372442513126,0.309209832260787,0.3137708815616593,0.318109880171829,0.3231547396028475,0.328023598820059,0.3255212296454116,0.329395274329195,0.3371366476500951,0.3354863221884498,0.0,2.553877092104957,51.62623244870978,144.8744643514023,192.2121940832529,fqhc1_80Compliance_implementation_low_initial_treat_cost,92 -100000,95649,48092,459.4820646321446,4816,49.24254304801932,3816,39.362669761314805,1401,14.281382973162293,77.31769350596971,79.73870060809047,63.289715480586615,65.08077530802096,77.13709260950729,79.56259404575047,63.22059487393268,65.015632134398,0.1806008964624226,176.10656233999578,0.0691206066539393,65.14317362295685,251.11944,175.8911695599179,262541.9816202992,183891.6550741961,500.8564,333.7586324339126,523106.02306349255,348407.6691088382,471.79226,229.75876430857755,490358.257796736,237942.73020027785,2460.25018,1141.2268131488202,2538458.206567764,1159493.9835960856,833.68718,375.8269901971834,858940.0202824912,380281.93102826347,1352.47208,583.6074404607599,1379998.9545107633,580565.5700471638,0.38125,100000,0,1141452,11933.726437286328,0,0.0,0,0.0,43126,450.2922142416544,0,0.0,42588,442.3255862580895,1056466,0,37870,0,0,10044,0,0,94,0.9827598824870096,0,0.0,1,0.010454892366883,0,0.0,0.04816,0.1263213114754098,0.2909053156146179,0.01401,0.3673874231303313,0.6326125768696688,23.268649018836545,3.987370659187008,0.3168238993710692,0.2861635220125786,0.205188679245283,0.1918238993710692,11.106298229491028,6.048800448863064,14.994806781156402,11489.374145742371,43.29069306108512,13.255862602594949,13.4829289268098,8.581613353016559,7.9702881786638065,0.5765199161425576,0.8003663003663004,0.6691480562448304,0.5683269476372924,0.0983606557377049,0.7341659232827832,0.899343544857768,0.8161290322580645,0.7,0.1233766233766233,0.5109461966604824,0.7291338582677165,0.6184649610678532,0.5231560891938251,0.0916955017301038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022489666909798,0.0043301018131667,0.0065279187817258,0.0086281364648014,0.0108559626400236,0.0130195599022004,0.0152000489666006,0.0175522839424187,0.0193832959790406,0.0214231534061788,0.0235590001539803,0.0253866085382906,0.0274325256665053,0.0296878545934682,0.0316984719022182,0.0338065771228709,0.0358427770116849,0.038006107567983,0.0400349668543359,0.0423719091866637,0.0563811554217874,0.0710109392682006,0.0845946201434768,0.0978250566117225,0.1099002059242832,0.1257413369482335,0.1382710801763987,0.1486665103289487,0.1591976464295266,0.1683513980943378,0.1801568551301552,0.1916491471423307,0.2019085175219773,0.2108929216817987,0.2196874517842579,0.2292990804521202,0.2374423100562092,0.2451744408657852,0.2527416388529391,0.2593089067619898,0.2652404436109374,0.2708947540830174,0.2756763156336944,0.2790148326678418,0.2835225753118238,0.2876047313947757,0.2915118998486724,0.2952340998944866,0.299210560372719,0.3012730031000594,0.2981615568894512,0.2950326348333906,0.2924952884588337,0.2891265802712949,0.2863765625925706,0.2835928070523887,0.2797365178656051,0.2803492307440773,0.2811559711007225,0.281155823435561,0.2821303798409276,0.2833897906835582,0.2850611332933364,0.2844166464074966,0.2871265952137646,0.2873746875241605,0.2882920924471469,0.2920540473534151,0.2989194430975964,0.3037855631319069,0.3073798239675017,0.3086471702082895,0.3129132875857767,0.3166879747311423,0.3181396212402525,0.3223208031753444,0.3226731030321315,0.3254203758654797,0.3382909680908599,0.3369687852576156,0.0,2.066398707946894,48.73027710338039,135.41798712123483,200.76827549989005,fqhc1_80Compliance_implementation_low_initial_treat_cost,93 -100000,95716,48079,458.4186551882653,4887,49.85582347778846,3922,40.4530068118183,1490,15.263905721091565,77.34880342590687,79.70769148034917,63.338894218876014,65.07769102946918,77.15631350126031,79.51468385344626,63.26582750188423,65.0062103422985,0.1924899246465514,193.0076269029115,0.0730667169917822,71.48068717067702,251.33394,176.06417482276905,262582.9955284383,183944.35081153523,500.18519,333.73257009149773,522066.3316477913,348164.17726364353,477.98465,234.13022928251897,495778.1666597016,241909.66278395933,2532.10636,1199.0630179181176,2616620.4291863427,1223939.7412942022,899.19138,407.35122683378,931015.817627147,417183.9216625365,1444.80754,620.8142006252928,1482377.0320531572,625875.7836146865,0.38138,100000,0,1142427,11935.590705838104,0,0.0,0,0.0,42983,448.52480254085,0,0.0,43181,447.5009402816666,1056698,0,37898,0,0,9995,0,0,86,0.8984913703038155,0,0.0,1,0.0104475740733001,0,0.0,0.04887,0.1281399129477161,0.304890525885001,0.0149,0.3572826938136257,0.6427173061863743,23.07079839368667,4.0334068182160125,0.3092809790922998,0.2840387557368689,0.2049974502804691,0.201682814890362,11.385821882428791,6.215305446529508,16.091735211246128,11482.192389177131,45.045252561398975,13.71736562603181,13.736009026009777,8.969055112843018,8.622822796514372,0.5731769505354412,0.7989228007181328,0.6900247320692497,0.5398009950248757,0.1099873577749683,0.7538586515028433,0.905857740585774,0.8415300546448088,0.7488584474885844,0.1369047619047619,0.4905239687848383,0.7185534591194969,0.6245572609208973,0.4615384615384615,0.102728731942215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004439849166768,0.0071432195220942,0.0095389022643464,0.0116621929396453,0.0138443528274036,0.0160233214755318,0.0181994488108604,0.0203362117418629,0.0224860549613632,0.0244142426665026,0.0265923599564833,0.0286022721431141,0.0306589933390299,0.0325552128570397,0.0346455879313907,0.0366635259523094,0.0389080835434369,0.041100448122771,0.0430324879654906,0.0586478414336139,0.0722000125583439,0.0858266890474192,0.0994666358079889,0.1116302616729773,0.1267625001322205,0.1384762308998302,0.1494730118173107,0.1588179992308021,0.1683132207026012,0.1801171984402266,0.1908558816847161,0.201642196846112,0.2109925200122479,0.2190425894753055,0.2288728102735703,0.2369649718523813,0.24431261749046,0.2513934137786203,0.2582156397832835,0.2643079522701758,0.269827717283243,0.274724884629038,0.2788430444936822,0.2831464219827168,0.2878599480468317,0.2909177211236993,0.2939764544519374,0.2967896130740908,0.2988873526894463,0.2960911132326641,0.2933893950011679,0.2905481456469131,0.2874052688560086,0.2848386809533703,0.2816546157726585,0.2785054111699186,0.2789712210205984,0.2790511545535045,0.2795415717539863,0.2802588151932723,0.2808734791752658,0.2838268697772313,0.2842320879903816,0.2855843347536745,0.2855476647141154,0.2871177489423323,0.291461849149942,0.294376221043818,0.2973602178116245,0.3001995283874478,0.3041193332625544,0.310558221773175,0.3143728555089592,0.3152704733283246,0.3204884989328906,0.3225311012133313,0.327150428047289,0.3268965517241379,0.3271818531334102,0.0,1.9843538163218823,53.779782796858576,140.61756632299551,196.38388302062768,fqhc1_80Compliance_implementation_low_initial_treat_cost,94 -100000,95635,48458,462.11115177497777,4772,48.62236628849271,3812,39.25341140795734,1398,14.231191509384638,77.26744378178137,79.6817674044303,63.28338998351626,65.06896002993015,77.08560908665287,79.50415778953622,63.21346334009226,65.00321814817141,0.1818346951285008,177.6096148940809,0.0699266434239973,65.74188175873985,250.98128,175.86426794448116,262436.6393056935,183891.1151194449,500.27087,334.66520304369857,522490.625816908,349326.3376835872,487.80854,238.5814648007197,506106.4463846918,246545.57665463584,2472.22831,1182.1287828809493,2546112.845715481,1197130.2273027126,867.50129,406.6566517374175,890176.7658284102,408301.0424119917,1365.17504,595.7655594406993,1390227.7199769958,590364.841864248,0.38154,100000,0,1140824,11928.938150258797,0,0.0,0,0.0,42933,448.29821717990274,0,0.0,44096,457.1757201861243,1052689,0,37783,0,0,10191,0,0,82,0.8469702514769697,0,0.0,1,0.0104564228577403,0,0.0,0.04772,0.1250720763222729,0.2929589270746018,0.01398,0.3669558200524511,0.6330441799475489,22.75850465616804,3.947994649759424,0.305613850996852,0.2901364113326338,0.2012067156348373,0.2030430220356768,11.238476396524812,6.159399261141783,15.150382798695276,11506.901956748205,44.05244178479953,13.684203279769958,13.21155846992998,8.618478564117467,8.538201470982129,0.5941762854144806,0.8028933092224232,0.721030042918455,0.590612777053455,0.1085271317829457,0.7636655948553055,0.9203187250996016,0.895774647887324,0.7616580310880829,0.1185567010309278,0.5120716510903427,0.7052980132450332,0.6444444444444445,0.5331010452961672,0.1051724137931034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0046846481443926,0.0070865821962313,0.0090846272660759,0.0111089634686009,0.0131686153094064,0.015620857719681,0.017774556146566,0.0204705569586601,0.0224472867661365,0.0245525870468181,0.0266363972552081,0.0288145008641264,0.0307776323788523,0.0327411979645131,0.0350260524356959,0.037275250642141,0.039421240554679,0.0415968877747381,0.0436328377504848,0.0583814968489041,0.0734320666973899,0.0869747855035023,0.0997820295471058,0.1125175511755328,0.1282852241682373,0.1391139953055133,0.1498310936817314,0.1593342532276524,0.1690957715316786,0.180724970610757,0.1918514586560648,0.2023878192919256,0.21136316382697,0.2195285750459644,0.2279399545781864,0.2369425472077139,0.2446387182429847,0.2516944245768195,0.2586175284195086,0.2652435141987243,0.2703688975180706,0.2761857415101263,0.2806691449814126,0.284337320108907,0.2888650408910928,0.2920541156151834,0.2950646642165901,0.2984981874676333,0.2997557594560697,0.296902159998922,0.2936782004540139,0.2912600853292781,0.2882687696796371,0.285975392296719,0.2820814908885046,0.2788423501115559,0.2786393933934917,0.2789703226685747,0.2785632879834746,0.2781184564762189,0.2783747481531229,0.2799723959095757,0.2803047177796587,0.2799348097018502,0.2817853336452728,0.2838722475699266,0.288585359754954,0.293930716580528,0.2972919471058674,0.302486881131645,0.3083444414822714,0.3112235219728106,0.3159340659340659,0.3252322417190579,0.3296049500237982,0.3289857296301979,0.3312983312983313,0.3305227655986509,0.325296442687747,0.0,2.3447346805524063,53.92852143148608,132.56934227701237,191.14313005759595,fqhc1_80Compliance_implementation_low_initial_treat_cost,95 -100000,95843,48362,460.2840061350333,4979,50.94790438529679,3979,40.98369207975543,1479,15.0454388948593,77.40182060844235,79.7151513580216,63.36325590393732,65.07553843192962,77.22088397167629,79.53815997105968,63.295280250648375,65.01148878793624,0.1809366367660629,176.99138696191596,0.067975653288947,64.04964399337132,251.70178,176.4120085211256,262618.6158613566,184063.30678414236,502.62041,334.6159553888129,523855.9101864508,348565.82290893985,486.30199,237.7636742205244,504268.8980937575,245618.8965985971,2595.34649,1214.0287498567016,2673824.191646756,1233010.98777485,927.97336,417.8458395520333,954285.6129294784,422383.75373275473,1441.69364,604.6817456794317,1468606.095385161,600747.7666032385,0.38218,100000,0,1144099,11937.209811879844,0,0.0,0,0.0,43237,450.5389021629122,0,0.0,43973,455.6722974030445,1055341,0,37916,0,0,9941,0,0,81,0.8451321431925127,0,0.0,0,0.0,0,0.0,0.04979,0.1302789261604479,0.2970475999196625,0.01479,0.3537033455811255,0.6462966544188745,23.11153692566471,3.956186194575043,0.2912792158833878,0.2892686604674541,0.2113596381000251,0.2080924855491329,11.499397684409288,6.482465835218795,15.635173083685784,11486.678705495518,45.52257301545336,14.26703450074372,13.149987167221992,9.25891467773824,8.846636669749389,0.5865795425986429,0.8166811468288445,0.7152717860224331,0.5671819262782402,0.1062801932367149,0.7846655791190864,0.9267822736030829,0.8895348837209303,0.7475728155339806,0.1337579617834395,0.4983654195423174,0.7262658227848101,0.6417177914110429,0.5086614173228347,0.0998509687034277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025111889669697,0.0045302982699733,0.0066144544089599,0.0089277552637191,0.0111832941918036,0.0134573883301437,0.0157162513377159,0.0177076954480506,0.0198910388110351,0.0222206300792204,0.0245095024294237,0.0267687601999445,0.0287194457578685,0.0310225178382051,0.0330558907556958,0.0350895320362467,0.0374809800329161,0.0396196677795981,0.041617764668003,0.0436262215237956,0.0578094364023194,0.0715024931790384,0.0848945890439666,0.0974444082644454,0.1094880517319459,0.1257419259447014,0.1369992161183025,0.1475474305149599,0.1570180025397774,0.1666506003448903,0.1785956270635936,0.1896853524657475,0.1998500879918308,0.2094941549218835,0.2175504550850811,0.2267348542711343,0.2357185071198385,0.2436321125873968,0.2515647677793904,0.2583198910892221,0.2636872283362619,0.2693853704136481,0.2750591016548463,0.2798831375648071,0.2840223761967746,0.2884695861950127,0.2908716026241799,0.2944344247720171,0.297868490105089,0.3002265065318162,0.2982107355864811,0.295933776289056,0.2931569560882447,0.2900467794170565,0.2871301775147929,0.2841163993713091,0.2808948023899232,0.2815440407736539,0.2819697768107566,0.2828675361547333,0.2830631200789233,0.2838081783219527,0.2853431433678347,0.2857871736285188,0.2875505831944775,0.2892054398596165,0.2894981543576883,0.2928296737377496,0.2979666770584364,0.3024751892676421,0.3056006493506493,0.3101522575206786,0.3118453865336658,0.3151045584474199,0.3192215458402508,0.3226483273108754,0.3228144345462781,0.327720986169573,0.3270065075921909,0.3313115996967399,0.0,1.9394095263838036,53.56474260352766,141.58307575548773,203.02344943395968,fqhc1_80Compliance_implementation_low_initial_treat_cost,96 -100000,95701,48100,459.11745958767415,4879,49.78004409567298,3881,39.99958203153573,1416,14.41991201763827,77.32145341825886,79.70825083111312,63.3143933609397,65.07994396283938,77.14343643278082,79.53350356043158,63.24663658025214,65.01566993137018,0.1780169854780382,174.74727068153584,0.06775678068756,64.2740314691963,252.31888,176.60491672220093,263653.33695572667,184538.21456641093,502.37812,335.2671079536597,524395.4295148432,349777.59684189275,473.61225,231.16394664907415,491587.5487194491,239015.96702874947,2489.67298,1175.0120463370092,2567377.1642929544,1193660.1355649463,855.57916,389.7853633653821,883960.33479274,397242.5401671676,1376.92454,587.8736898569828,1404547.6640787453,586517.5553809355,0.38125,100000,0,1146904,11984.242588896668,0,0.0,0,0.0,43249,451.3432461520779,0,0.0,42831,444.2691298941495,1053597,0,37792,0,0,9938,0,0,91,0.9404290446285828,0,0.0,1,0.0104492116069842,0,0.0,0.04879,0.1279737704918032,0.290223406435745,0.01416,0.3524315810198858,0.6475684189801142,23.30467286471053,3.9461089646107377,0.3084256634887915,0.290389074980675,0.2043287812419479,0.1968564802885854,11.598352924901985,6.5202694394180005,15.091797323396992,11478.052261388984,44.69182967964649,13.836662725088312,13.627378480426142,8.811709071829135,8.41607940230289,0.5926307652666838,0.8047914818101154,0.7126148705096074,0.5851197982345523,0.0994764397905759,0.7610544217687075,0.9244060475161988,0.8717948717948718,0.7333333333333333,0.1077844311377245,0.5194085027726433,0.7213855421686747,0.6465721040189125,0.5367892976588629,0.0971524288107202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0044113173106175,0.0068113529316225,0.0090954360219916,0.0112933420153019,0.0135278298427186,0.015633764035204,0.0179089238309168,0.0200676760138623,0.0222019776035375,0.0244007463757714,0.0265357678325699,0.0286390289064911,0.03056345575203,0.0326083590532324,0.0345333857193076,0.0365540386567504,0.0384308027606247,0.040527470698961,0.0425325690463783,0.0571118213532201,0.0700617607034439,0.0837295215305983,0.0966692975532754,0.1085789046096709,0.1242657409269392,0.1357166360616064,0.1470124613909894,0.1574065168371218,0.1674960852871146,0.1786529926315335,0.1902230978231454,0.2008265811082712,0.2100415663968497,0.2189431770684383,0.2285916724788823,0.2373331251463814,0.2456225134302861,0.2524574551308942,0.258096273825196,0.2636933250098263,0.2700978157977772,0.2761072205924103,0.2806477500029944,0.2858183495817499,0.2883301952966368,0.2915765658787795,0.2942536327608983,0.297815725228309,0.3008374150734713,0.2981713625431631,0.2961362794716701,0.2935527350331349,0.2910366081972407,0.2887114219252367,0.2844244137193492,0.278876663456833,0.2789917890673558,0.2792683964270523,0.2816095019647588,0.2821637154105946,0.2821945843828715,0.2827179284031441,0.2837762580472701,0.2849884969325153,0.2857254310456921,0.2863402281844823,0.2910543631521228,0.2955069526937321,0.30004337026377,0.3046444384205295,0.3066194727666543,0.3088013094938303,0.3130428157854639,0.315957247327958,0.3185483870967742,0.322427763338939,0.3303751512706737,0.327431217651866,0.3192702394526795,0.0,2.18631368758803,51.12574486855309,147.63961863791877,192.30997215435167,fqhc1_80Compliance_implementation_low_initial_treat_cost,97 -100000,95711,48306,461.34718057485554,4768,48.667342311751,3792,39.09686451922977,1416,14.470646007250997,77.3455376358958,79.73195492240067,63.32130932583449,65.08714225176945,77.15693046004158,79.54631583216336,63.24838828452201,65.01790341645724,0.1886071758542158,185.6390902373164,0.0729210413124832,69.23883531220554,251.77152,176.28515317411797,263053.2122744512,184184.2486593736,500.95961,334.887071705976,522849.8918619595,349337.1564697234,480.19618,234.25102986857425,498664.3019088715,242522.44494929136,2427.17329,1154.7976861462018,2501871.968739225,1172668.1571802525,856.35184,395.4134946027749,880409.3991286268,399054.6584417266,1370.18914,596.916447350583,1399692.407351297,594434.6081102131,0.38128,100000,0,1144416,11956.964194293238,0,0.0,0,0.0,43121,449.93783368682807,0,0.0,43363,450.000522405993,1054430,0,37799,0,0,10046,0,0,81,0.8462977087273146,0,0.0,1,0.010448119860831,0,0.0,0.04768,0.1250524548887956,0.296979865771812,0.01416,0.3739951768488746,0.6260048231511254,23.07062007636975,3.9783867176187817,0.3024789029535865,0.2940400843881856,0.2151898734177215,0.1882911392405063,11.16199622569361,6.070257693158305,15.20745763322656,11444.141056773617,43.69922101075964,13.67410478993655,13.017447021249438,9.112684218358812,7.894984981214842,0.5938818565400844,0.7865470852017937,0.7035745422842197,0.5882352941176471,0.1232492997198879,0.7366638441998307,0.907563025210084,0.8354037267080745,0.7073170731707317,0.1348314606741573,0.5292991191114516,0.6964006259780907,0.6521212121212121,0.5482815057283142,0.1194029850746268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188674657291,0.0042902784116841,0.006365805370831,0.0087196894245818,0.0109160087897778,0.0129965369729069,0.0151842711753788,0.0172788823871817,0.0192858311518324,0.0215151763404743,0.0234757191938874,0.0255543800905906,0.0277317753067879,0.0297072552474574,0.0318466079131493,0.0340852700355636,0.0362447947958316,0.0386495490539993,0.040661397670549,0.0425427720007502,0.0572114882506527,0.071859170259974,0.0848350633402953,0.0973590067340067,0.1101031623805404,0.1255064154775379,0.1375951099933144,0.148331984150654,0.1583848275567149,0.1674020160381308,0.1792798620094868,0.1905747026839676,0.2007576582264701,0.2095840492005997,0.2185442856828339,0.2278464180841043,0.2367102311409725,0.2441579190153126,0.251318819698912,0.2573175059238315,0.2635012434214331,0.270067788686302,0.2752884706327437,0.279588295134941,0.283354757342776,0.2866365793971888,0.2900244767470902,0.294042272462003,0.2969862730931984,0.2999382545750732,0.2970965925846492,0.2935926742132855,0.2908568223250596,0.2883298814865953,0.2862590342748193,0.2818782746435969,0.2790723339849909,0.2797838368951117,0.280752532561505,0.2806673908011182,0.2814468641929152,0.2823877651702022,0.2819944366594859,0.2824373079150149,0.2840378397796671,0.2850318057899519,0.2852486892447216,0.2899900024993752,0.2941279029221005,0.2983797847597272,0.3011684034826544,0.3010402437742986,0.306472673008767,0.3101189579882548,0.3157010915197313,0.3151916706105064,0.3169989347131334,0.3194752774974773,0.3211580086580086,0.3246454580298965,0.0,1.900033997824406,51.67182821865906,139.39720827433663,188.6680797085084,fqhc1_80Compliance_implementation_low_initial_treat_cost,98 -100000,95614,48102,458.959984939444,4885,49.888091702052,3933,40.59029012487711,1530,15.60440939611354,77.23812690061078,79.66959478422652,63.25655152000609,65.05436904698007,77.04165567601181,79.47748009155487,63.181597716256086,64.98426460756926,0.1964712245989659,192.1146926716517,0.0749538037500059,70.10443941081235,251.8362,176.43467393069335,263388.41592235444,184528.0753139638,499.62428,333.444433618413,521982.8790762859,348180.0401807401,477.92934,233.43530643681396,497127.4604137469,242058.5717428397,2566.95601,1206.9203599801322,2649024.431568599,1226601.303135663,912.44175,410.2155041366226,942470.7365030224,417206.39669569576,1490.55938,632.4882819499813,1521544.0416675382,628561.6543448927,0.38003,100000,0,1144710,11972.200723743385,0,0.0,0,0.0,42955,448.6686050160018,0,0.0,43117,448.17704520258536,1049629,0,37638,0,0,10003,0,0,100,1.0458719434392452,0,0.0,0,0.0,0,0.0,0.04885,0.1285424834881456,0.3132036847492323,0.0153,0.3608592826172644,0.6391407173827355,23.095628436865294,4.03978199033935,0.3010424612255276,0.2862954487668446,0.2011187388761759,0.2115433511314518,11.109469954576127,5.977384066738102,16.213428377548425,11450.520280272514,45.07008737169346,13.807767591629094,13.469702470661836,8.783917204303934,9.008700105098594,0.5809814391050089,0.8063943161634103,0.7027027027027027,0.5638432364096081,0.1189903846153846,0.7697536108751062,0.940552016985138,0.8481375358166189,0.7554347826086957,0.1618497109826589,0.5003628447024674,0.7099236641221374,0.6419161676646706,0.5057660626029654,0.1077389984825493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097859575158,0.0044425060602679,0.0067419381041345,0.0090157852474512,0.0112766650382673,0.0134376560000815,0.0158702636544443,0.0182037347280676,0.0204058670703516,0.0228713652146303,0.025075925469917,0.0271158924406358,0.0289413556740289,0.0308247422680412,0.0326954653888653,0.0347157550547381,0.036813568459138,0.0390189173185402,0.0410368519675203,0.0430663940241205,0.0572202241552358,0.0712227124576866,0.0846650906225374,0.0972835188910774,0.1095913560557251,0.1248755270238776,0.1364167622933401,0.1470635267528757,0.1570679507758159,0.1664804469273743,0.1794254758924332,0.1897796764540052,0.1995466582391595,0.2086104688749849,0.2180515759312321,0.2270452603663881,0.236463890659777,0.2446556622919767,0.252166101926182,0.2592039858108806,0.2636560836126996,0.2695057907816383,0.2745311999620453,0.2786382917362621,0.2830032400302078,0.2861237398695394,0.2896532691053239,0.2929653624445238,0.2972453721733261,0.2998254522373849,0.2970158113431547,0.2941573839197088,0.2909516490644256,0.2880397036694062,0.2857503864906647,0.2829746136865342,0.2788191858530479,0.2796838542180157,0.2807785721615982,0.2798835901372993,0.2809236872637449,0.2823301814161912,0.2838873074346952,0.284309782365822,0.2838168892304736,0.2850636337610285,0.2856288278023073,0.289458814665997,0.2929434424794256,0.2967856438572274,0.3009126821958861,0.3037667071688943,0.3078558919189392,0.3102978980795403,0.3135261194029851,0.3150861563708826,0.3137490608564989,0.3184523809523809,0.3237449118046133,0.3255287009063444,0.0,2.062350531250871,51.29630809931344,141.60094587505554,206.0639118550824,fqhc1_80Compliance_implementation_low_initial_treat_cost,99 -100000,95725,40752,381.9065030033952,7492,77.0854008879603,5825,60.3290676416819,2328,23.95403499608253,77.33641368994157,79.70959960963722,63.332022412709286,65.08878219566279,77.05239430352071,79.42552530354922,63.22782527335174,64.98713011407725,0.2840193864208515,284.07430608800155,0.1041971393575451,101.65208158554152,62.31258,43.83491903307348,65095.40872290416,45792.55056993835,209.91209,125.96900231393012,218756.6257508488,131074.00698453074,241.88453,114.9528843146252,249417.2891094281,117571.77561210912,4210.03694,1866.6382216480672,4363944.716636198,1916748.835360884,1416.13059,608.7625907735182,1468529.161661008,625210.1699462932,2294.0318,949.0245020312144,2363160.887960303,964595.5127165882,0.3802,100000,0,283239,2958.882214677461,0,0.0,0,0.0,17573,183.0347349177331,0,0.0,22759,234.4424131627057,2188723,0,78547,0,0,0,0,0,37,0.3865238965787412,0,0.0,0,0.0,0,0.0,0.07492,0.1970541820094687,0.3107314468766684,0.02328,0.3061507436349887,0.6938492563650114,25.81644128533512,4.634936316109896,0.336480686695279,0.1914163090128755,0.2412017167381974,0.230901287553648,11.201433109945684,5.590259972342928,24.921681873667435,13186.746285113994,65.38351250425147,12.84862316050332,22.251999526066303,15.512469871760224,14.770419945921622,0.5407725321888412,0.7515695067264574,0.6903061224489796,0.5693950177935944,0.1182156133828996,0.7078066914498141,0.9069767441860463,0.8528784648187633,0.7272727272727273,0.18359375,0.490625,0.6941031941031941,0.6391683433936955,0.5230202578268877,0.1028466483011937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0044422357224718,0.0069343621503629,0.0091572485567932,0.011423862954335,0.0135559041003809,0.0159393834324233,0.018307126812334,0.0202324844345843,0.0223880597014925,0.0243349905181692,0.0263544244017124,0.0283307967586689,0.0305084047462096,0.0328445687280081,0.0349265085895024,0.0369864148442677,0.0388733271086212,0.0408888704111753,0.0429071438988312,0.0575802510390342,0.0714823805139365,0.084767447957632,0.0971909757994995,0.109364953886693,0.1246763129802458,0.1384683882457702,0.1516227827640478,0.1645533141210374,0.1759973432746282,0.1900846901331152,0.2039512100175176,0.2159016820967531,0.228099877665152,0.2396303743503532,0.2508790163861922,0.2616766200196096,0.2712908228630509,0.2810739107266357,0.2900952838497878,0.2989482200647249,0.3066635519476727,0.313755613330182,0.3198596760096263,0.3271718814476782,0.3336699383027721,0.3400718047511227,0.3456224715670559,0.3510146466543208,0.3570268235667023,0.3584206198352678,0.3597842728865226,0.3602129281861568,0.3608824211502783,0.3632226781051846,0.3635021453947065,0.3632894485785155,0.3638522427440633,0.3658310598651361,0.3671846960017227,0.36832,0.3702681779383449,0.371637679025847,0.3731349980929304,0.3750120784616871,0.3745712565129735,0.375532404742719,0.3777234326367274,0.380355498902344,0.3814321265152123,0.3833580292646786,0.3862393763871596,0.3857936918304033,0.3900327562002808,0.386084452975048,0.3914421553090332,0.3920250195465207,0.3960945529290853,0.398783185840708,0.4040597472232861,0.0,1.9856789651783595,59.54921997447513,226.57162155863975,340.29506314020915,fqhc2_100Compliance_baseline,0 -100000,95601,40690,381.2512421418186,7494,77.20630537337476,5827,60.27133607389044,2397,24.623173397767808,77.26635035352784,79.70380876291036,63.26822878755484,65.07169394389422,76.96568022652085,79.40410604672522,63.15870178500798,64.96558193289852,0.3006701270069953,299.7027161851378,0.1095270025468622,106.11201099570168,61.91394,43.519871917550304,64762.628005983206,45522.17227597023,209.43883,126.05729254335392,218361.77445842617,131157.22624070843,245.2792,116.21862849696436,252328.19740379284,118276.96352383104,4199.08627,1875.4802119048,4348923.400382841,1919491.4268571544,1428.37608,613.5491026373879,1476124.862710641,623943.3028896172,2348.68496,967.5500387149116,2414925.4505706006,977605.50864421,0.38057,100000,0,281427,2943.755818453782,0,0.0,0,0.0,17544,182.7595945649104,0,0.0,23089,237.30923316701708,2185007,0,78363,0,0,0,0,0,30,0.3138042489095302,0,0.0,0,0.0,0,0.0,0.07494,0.1969151535854113,0.3198558847077662,0.02397,0.3145426906511274,0.6854573093488726,25.61570148777548,4.623976471812363,0.3401407242148618,0.1978719752874549,0.2354556375493393,0.2265316629483439,11.356280773917224,5.726369425809177,25.397887247262343,13242.485681889682,65.64309493926318,13.3512329695666,22.49823524045602,15.27240385551327,14.521222873727302,0.549854127338253,0.753686036426713,0.7048435923309788,0.5721574344023324,0.1159090909090909,0.6909350463954318,0.9,0.8431771894093686,0.6979166666666666,0.1397058823529411,0.5051965657478535,0.6899128268991283,0.6592890677397719,0.5387453874538746,0.1097328244274809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025943491831853,0.0049708343900583,0.0071496034204352,0.0095371726045225,0.0117566824779625,0.0140546490414505,0.0162679621162638,0.0184339331514464,0.0207497749038225,0.0230044061891587,0.0250112894618005,0.0270748103529798,0.029214963661444,0.0312303457093072,0.0331666907678641,0.0351813911135945,0.0374608702862947,0.0393136470808188,0.041528757884219,0.0435326755804009,0.058075105591101,0.0725506429267577,0.0859357766363092,0.0982715581255727,0.1106980281154614,0.1260327952205415,0.1398554575406525,0.152448,0.1645455810418829,0.1753663987621954,0.1891241734177624,0.2023566906599601,0.2156837118117954,0.2281860811639933,0.2395308590262238,0.2513312034078807,0.262160652441068,0.2720423447266175,0.2814250809705096,0.2905624010463275,0.2990836104127808,0.3074471948547931,0.3156878081152825,0.3221874287633924,0.3295256864104716,0.3367916604910824,0.3425112895132965,0.3477351560905937,0.3537441447052564,0.3588462351945855,0.3593261033775763,0.3604577416241555,0.3617958492164337,0.362863515235778,0.3644344417450404,0.3655027332473435,0.3663786256631826,0.367132232904045,0.3681393154327871,0.3688028586306585,0.3703717682581619,0.3712908750547656,0.3719962836268423,0.3725459258424434,0.3735492643131161,0.3741937182423716,0.3756880601746448,0.3769958887082895,0.3792134831460674,0.3787701848346957,0.3806689734717416,0.3817418451932393,0.3835378783010987,0.3858838033595315,0.3864908452708471,0.3892874222859875,0.3892409955170814,0.3903535663192315,0.3918956425201221,0.3945552147239264,0.0,2.483893111130425,61.87734107219083,216.56290046025475,345.3401347007857,fqhc2_100Compliance_baseline,1 -100000,95703,40969,383.655684774772,7718,79.44369559992894,6050,62.58946950461323,2468,25.34925759903033,77.34534288058313,79.71348313823366,63.32656324425341,65.07416882758734,77.0478950274986,79.41638295975827,63.21882763540498,64.9695887854599,0.2974478530845346,297.1001784753895,0.1077356088484293,104.58004212743788,62.59814,44.04958756229362,65408.754166536055,46027.384264122986,212.47135,126.8292349177914,221402.54746455175,131915.15931349216,252.24976,120.05043162218088,259968.48583638968,122612.95674962876,4387.38857,1942.0474239705636,4538194.685642039,1983059.3753284267,1521.42341,648.6300850218075,1572083.3098230986,660149.6202205921,2432.85464,993.2553315536542,2500486.735003082,1001376.0527314696,0.38117,100000,0,284537,2973.1251893880026,0,0.0,0,0.0,17694,184.24709779212773,0,0.0,23733,244.3497069057396,2182399,0,78377,0,0,0,0,0,39,0.4075107363405535,0,0.0,0,0.0,0,0.0,0.07718,0.2024818322533252,0.3197719616480953,0.02468,0.3137544637359931,0.6862455362640069,25.714422192418628,4.64408824740129,0.3335537190082644,0.1930578512396694,0.2360330578512396,0.2373553719008264,11.346273383453743,5.663216590867305,25.91656480924008,13273.835059575997,67.64473716783208,13.552965561387635,22.759811459253037,15.799314180405847,15.532645966785555,0.5540495867768596,0.7816780821917808,0.7036669970267592,0.584733893557423,0.128133704735376,0.7246474143720618,0.9298701298701298,0.8497109826589595,0.7677419354838709,0.1527272727272727,0.4983556237667178,0.7088122605363985,0.6531020680453635,0.5339892665474061,0.1223083548664944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0049155737538767,0.0071324215737997,0.00925248832013,0.0113689519819398,0.0134189922520082,0.0157283671243489,0.0179965905494931,0.0204444626173001,0.0227761285699662,0.0250038443795171,0.026935992359749,0.0290883656823114,0.0313700845807535,0.0335503978369229,0.0354776352378097,0.0374700953840736,0.0394669932232588,0.0416948271380296,0.0435398820317222,0.0581514360313315,0.0714943587381994,0.0848592325208029,0.0974632000925916,0.1100465342042229,0.1255331082725704,0.1392038216560509,0.1517397833658178,0.1643244167530538,0.1759317852737705,0.1909235874671378,0.2037919310479242,0.2170085423581261,0.2290959647932038,0.2399198211394649,0.2513469767854371,0.2623459546347562,0.2725871245794277,0.2822739968662715,0.2915496992265826,0.3006388445246858,0.3092742501520752,0.316709882901763,0.3234303252646597,0.3300351295173034,0.336404563675609,0.342573686913605,0.348620000763485,0.354592729960706,0.359757710416336,0.3614898614898615,0.3625413907284768,0.3632326318171532,0.3641874157107846,0.3651437432899916,0.3653855019901338,0.3664546017039234,0.3675399213906293,0.3690632850819476,0.3701446114795417,0.3712109843937575,0.3721639279350623,0.3734235749117202,0.3740186705657406,0.3759664558035822,0.3772925534710179,0.3789163182312847,0.3792558903417345,0.382060152499294,0.3842256442990505,0.3846260069044879,0.3847061980144888,0.3872630105611401,0.3868230211387131,0.3925714285714285,0.3951283897288217,0.405225726654298,0.4065641025641026,0.4083798882681564,0.4060150375939849,0.0,2.4529444572443766,65.79769490376354,214.0017056547545,360.22451415804346,fqhc2_100Compliance_baseline,2 -100000,95666,41016,383.7936152865177,7541,77.48834486651475,5872,60.82620784813832,2408,24.78414483724625,77.2498286400838,79.64802306438592,63.26585613190741,65.03881268886732,76.95209425984004,79.35106493453988,63.15729295257849,64.93354157444016,0.2977343802437673,296.95812984604686,0.1085631793289252,105.2711144271683,62.55524,44.06317184443316,65389.20828716576,46059.385617077285,214.10029,129.13224791212943,223251.1864194176,134433.80862769298,249.1788,118.3997487360321,257695.6703531035,121565.00183112729,4218.41036,1878.7835714750292,4372490.257771831,1926871.533804928,1418.63174,613.4142806224892,1469863.054794807,628177.0476394808,2365.08622,978.3429212569072,2436310.3296887083,990520.3683899222,0.38128,100000,0,284342,2972.2367403257167,0,0.0,0,0.0,17891,186.4194175569168,0,0.0,23432,242.12363849225432,2173313,0,78080,0,0,0,0,0,34,0.355403173541279,0,0.0,1,0.0104530345159199,0,0.0,0.07541,0.1977811582039446,0.3193210449542501,0.02408,0.3097188957519223,0.6902811042480776,25.389198680873964,4.645523234156829,0.3342983651226158,0.1978882833787466,0.2356948228882834,0.2321185286103542,11.14572002617023,5.55062961500403,25.470301984006948,13264.83224482195,65.87882244081516,13.6560783497232,21.837474058327857,15.378293827869928,15.006976204894173,0.5449591280653951,0.7805507745266781,0.6826286296484972,0.5765895953757225,0.1137197358767424,0.7007930785868781,0.9380053908355797,0.8532731376975169,0.7137809187279152,0.1517241379310344,0.4967670011148272,0.706700379266751,0.6328947368421053,0.5413260672116258,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070545808176,0.0042390499660267,0.006374275535165,0.0089311115626905,0.0112703563182146,0.0136883058684537,0.015988905657299,0.0182161637821003,0.0203620372264266,0.0227363505084954,0.0250482090838222,0.0270778333624382,0.0294393052282806,0.0314571072242091,0.0335339727639716,0.0358162336587787,0.0376883380655323,0.0400245026786826,0.0421686746987951,0.0441587420754087,0.0585438739472969,0.073095893853871,0.0861757729686614,0.0991824236876164,0.1111885012347242,0.1267964864006773,0.1397472655835191,0.1523770954781367,0.1649781220245418,0.1762784701332187,0.1900121934112416,0.2039216111575043,0.2170129232782594,0.2288707288981517,0.2406693969466491,0.2519365629758054,0.2628543915438706,0.2731981448254849,0.2825408753472697,0.2915579564392851,0.3002776583756404,0.3084868854000188,0.3164022548343362,0.3238282096343196,0.3303413539519738,0.3371612424204925,0.3424306393244873,0.3477716126722749,0.3534315701855922,0.3582829568352954,0.3596990894207742,0.3608850071170935,0.3626390736913625,0.3631437495460158,0.3646276794383449,0.3641816755617761,0.3638820873215251,0.3653576321827696,0.3665033943456217,0.3678158851261381,0.369462592998225,0.3701784112428984,0.372324255858138,0.3733459784130425,0.3745564143697438,0.3753744285038625,0.3763730748272005,0.3775558575356318,0.3790510485066723,0.3820975551198431,0.3818215086226613,0.3823936907172546,0.3823305889803673,0.3873120589137772,0.3898513679825807,0.3889485618808927,0.3890004634636181,0.3914656771799629,0.3999444135630906,0.3954022988505747,0.0,2.117489862469804,61.47911930124496,221.16327031264228,345.75736387575114,fqhc2_100Compliance_baseline,3 -100000,95746,40895,383.4416059156519,7403,76.14939527499844,5683,58.780523468343326,2381,24.52321768011197,77.32698317968122,79.68718181186904,63.31555014592704,65.0614608852365,77.02839185103493,79.38618453831478,63.2068280389998,64.95427391970428,0.298591328646296,300.997273554259,0.1087221069272388,107.18696553222172,62.55282,43.98637871662063,65332.045202932764,45940.69592110441,209.0212,126.04454034045152,217738.45382574727,131075.13665369994,243.34486,116.09968574066866,250099.59684999892,118199.76445184436,4155.1981,1857.067549267265,4301343.920372653,1901485.5278311195,1386.45779,601.2279287172853,1433018.6221878722,613012.8660982777,2345.79092,971.283994323844,2418197.271948697,987945.3906221977,0.38097,100000,0,284331,2969.6384183151254,0,0.0,0,0.0,17491,182.08593570488583,0,0.0,22808,234.2238840264868,2182006,0,78340,0,0,0,0,0,41,0.428216322352892,0,0.0,0,0.0,0,0.0,0.07403,0.1943197627109746,0.3216263676887748,0.02381,0.3169642857142857,0.6830357142857143,25.572377563254072,4.685970053497787,0.332746788667957,0.1896885447826852,0.2331515044870667,0.244413162062291,11.153718924540472,5.508233279889843,25.471091719755343,13216.592659741533,63.97135406325323,12.60500281277209,21.16618592075005,14.938257229652208,15.2619081000789,0.5409114904099948,0.7829313543599258,0.6895822316234796,0.5886792452830188,0.1051115910727141,0.6934306569343066,0.9113924050632912,0.8444924406047516,0.7320872274143302,0.1333333333333333,0.4924646417806631,0.7296587926509186,0.6393557422969187,0.5428286852589641,0.098302055406613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0046439942406359,0.0068915819174634,0.0091128901170351,0.0113806254767353,0.0136041953057379,0.0157237834971652,0.0179143784578323,0.0202976166142022,0.022384622470599,0.0245772266065388,0.0267512523610084,0.0288025657103502,0.0308500231684085,0.032659376934186,0.0346053297787697,0.0367425536540671,0.0387739225143924,0.0406809961335384,0.0428386881693545,0.0571562793611024,0.0714330550499027,0.0851837872973936,0.0974602106679561,0.1094211147651572,0.124641848958058,0.1382726000084843,0.1512141632865979,0.1646164862294135,0.1761353880494505,0.1905074955005442,0.2037165381616564,0.216035077411844,0.2283860804498364,0.2394443710650288,0.250321407988651,0.2615058087578195,0.2717043611461525,0.2816341369203153,0.2906383612833709,0.2992321145226486,0.3068694419383941,0.31391033166139,0.3210078180355234,0.3278147710811107,0.3350003704526932,0.3410579408295902,0.346994744629828,0.3526226954037912,0.3580374264365536,0.3596077055903302,0.3608126560280264,0.362126902549911,0.3635533392285056,0.3647258742509615,0.365392007626428,0.3662513508359291,0.3678607916158586,0.3694596496044752,0.3694001790510295,0.3702213279678068,0.3718256725900923,0.3725746859495408,0.3734175792053605,0.3740321331784746,0.3750492449113591,0.3756131141898287,0.3779298112251362,0.3796456734679444,0.3834478351174309,0.3835302738847669,0.3868297372356334,0.3867452322118735,0.3909785932721712,0.3912550760222872,0.393353115727003,0.3937346437346437,0.3871559633027523,0.3886696730552424,0.3965381589299764,0.0,2.2311165872119405,60.54279154850265,215.89382730180523,329.5440235924736,fqhc2_100Compliance_baseline,4 -100000,95762,41266,386.91756646686576,7506,77.1287149391199,5886,60.91142624423049,2410,24.74885654017251,77.39144353273707,79.72993145970955,63.36142006586866,65.08715381821247,77.09276098927567,79.43090506798832,63.25184173684866,64.97992201177928,0.2986825434613962,299.02639172122747,0.109578329019996,107.23180643319095,62.69934,44.16465134077481,65474.1337900211,46119.18228605795,213.60684,128.63390536634728,222505.18995008455,133771.7313405602,251.3837,119.59563970911476,258993.34809214508,122055.2512687868,4253.07133,1912.7909606814997,4400705.551262504,1956854.7865348451,1425.0278,623.7171720998703,1472126.783066352,635360.7932972393,2366.9026,989.7350801378868,2432886.4058812475,1001554.8191952518,0.3844,100000,0,284997,2976.096990455504,0,0.0,0,0.0,17826,185.5746538292851,0,0.0,23609,243.07136442430192,2183156,0,78347,0,0,0,0,0,45,0.4699149975982122,0,0.0,0,0.0,0,0.0,0.07506,0.1952653485952133,0.3210764721556088,0.0241,0.3150771565899317,0.6849228434100683,25.350144158923545,4.543463177722264,0.3314644920149507,0.1991165477404009,0.2405708460754332,0.228848114169215,11.203835412281114,5.668023674611214,25.596734577474187,13273.878275738813,66.2480754882214,13.399133230946047,22.111552200863837,15.795514007640486,14.94187604877104,0.5407747196738022,0.7431740614334471,0.6852895950794464,0.5713276836158192,0.1232368225686711,0.6937901498929336,0.9245283018867924,0.8568376068376068,0.7289719626168224,0.1462585034013605,0.4929765886287625,0.6756440281030445,0.6311530681051922,0.5251141552511416,0.1168091168091168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024299368216426,0.0045603332083464,0.0069195024451614,0.0091609875991509,0.0115402995394047,0.0137305594007002,0.0159058487874465,0.0183035076621707,0.020400657888016,0.0223152165015961,0.024405737704918,0.0265512147078135,0.0284522353859906,0.0306392350997807,0.0326777173016658,0.0348314722804697,0.0368637840746796,0.0388496520539705,0.0409537866661123,0.0431462827737788,0.05851346978822,0.0722155375359665,0.086019700609481,0.0987485540014722,0.1113126179605866,0.1275140107856614,0.1403892040935362,0.1530923831512198,0.1662964307836897,0.1779676461444452,0.1925544742054948,0.2059682443540711,0.2183634426835366,0.2298648368098427,0.2411522181298444,0.2529744446780959,0.2639794837486759,0.2739918426049731,0.2838237795543459,0.2920820980093636,0.3006047711004984,0.3086286937100225,0.3154083697156852,0.3229093001234582,0.3293911945409067,0.3355137538958079,0.3421167874078801,0.3484107579462103,0.3543923296190723,0.3602333623716375,0.3614319950453725,0.3619653004223937,0.3632214349106174,0.3635733271697677,0.3652800475412271,0.3651189474489406,0.3651331412468733,0.3654799829222634,0.3668347722027523,0.3684125820353713,0.3703097669694747,0.370935080405003,0.3718353763848519,0.3726726253461512,0.3731723285080381,0.3746713639709749,0.3754480543687093,0.3766056646262171,0.3785509096712416,0.3791678369377683,0.3772026939754589,0.3789405615131756,0.3797840393585074,0.3796403488461835,0.3831464943948318,0.3844961240310077,0.3907083015993907,0.3955798864557989,0.3857182244279018,0.3837031369548584,0.0,2.1205482287239894,61.958819254025656,227.43169333997977,340.0454248916027,fqhc2_100Compliance_baseline,5 -100000,95726,40835,383.542611202808,7424,76.33244886446734,5770,59.69120197229593,2382,24.497001859473915,77.37264048070351,79.73120607033927,63.34029949113111,65.08132813415341,77.08442110048489,79.44302306062863,63.23418436368795,64.97809398449941,0.2882193802186208,288.183009710636,0.1061151274431608,103.2341496539999,62.56008,44.033671080290674,65353.27915090988,45999.69818052637,210.48356,126.28941233875618,219327.85241209285,131374.58197225016,243.95337,115.77872527002482,251246.8190460272,118156.42012640506,4191.32649,1871.484809085832,4338271.942836846,1914853.3513213063,1405.77189,609.4997627533777,1452028.6651484445,620204.3674167707,2344.56932,972.2602092240176,2413361.322942565,984404.4665649988,0.38095,100000,0,284364,2970.6035977686315,0,0.0,0,0.0,17620,183.4715751206569,0,0.0,22904,235.6726490190753,2184004,0,78388,0,0,0,0,0,47,0.4805382027871215,0,0.0,0,0.0,0,0.0,0.07424,0.1948812180076125,0.3208512931034483,0.02382,0.3118128355919202,0.6881871644080798,25.69514975395504,4.625493488243301,0.3223570190641248,0.2010398613518197,0.2386481802426343,0.2379549393414211,11.046840761418231,5.428980551950582,25.35882674477377,13215.721220659749,64.79300187842699,13.41261331757023,20.91702051197956,15.392729328962435,15.070638719914763,0.5405545927209705,0.7637931034482759,0.6833333333333333,0.5867828612926652,0.112163146394756,0.7085168869309838,0.9244186046511628,0.8654292343387471,0.75,0.1541218637992831,0.4886569872958258,0.696078431372549,0.6284114765570329,0.539756782039289,0.1014625228519195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0046618629209611,0.0069083051827505,0.0090591485212869,0.0113473446603422,0.0131929881711016,0.0153714425507624,0.0174946158635542,0.0196669699168958,0.0218141244152361,0.0237763241536284,0.0260674941735711,0.0280816846954304,0.0299382080329557,0.0321881770349736,0.0343024277313269,0.0364020375201888,0.0383873376758079,0.0401920738361759,0.0421310280179148,0.0574593827005805,0.0712028627631524,0.0849638251022334,0.097563539279783,0.1105008486279636,0.1256634174190683,0.1387309601595316,0.1518273344543539,0.1644826076276526,0.1765639579155092,0.1916254725210817,0.2046718455845757,0.2173619872101622,0.2284589303292136,0.2398719274695772,0.251781025294437,0.2624746042731798,0.2717066963933836,0.2810625340847119,0.2907491512982842,0.2987701785672927,0.3066646371449312,0.3143713994452478,0.3217115689381933,0.3294850427610369,0.3363941548183254,0.3419832598235766,0.3481161745419356,0.3543742791607812,0.3597891983991758,0.360936299809991,0.3621988677841903,0.363479928911958,0.364368248819901,0.3655499113646859,0.3648526181589174,0.3653012965990065,0.366443770999407,0.3687273225166016,0.3698441632711416,0.3704043945330809,0.3699112244696206,0.3713043843440282,0.3714989365274824,0.3713157387786553,0.3734735413839891,0.3734568781183179,0.3744583307165735,0.3755522827687776,0.3758208719044228,0.3782296215429403,0.3779632188795577,0.3782484982611445,0.377991159884164,0.3809255608748709,0.381076594735594,0.3788411557865769,0.3739886731391585,0.3862258953168044,0.3974702951322346,0.0,2.304083326099994,60.04514050816621,220.19097533334053,337.1077977917767,fqhc2_100Compliance_baseline,6 -100000,95745,40895,383.66494333907775,7461,76.8290772364092,5779,59.80468953992375,2352,24.178808292861245,77.33281654085012,79.69679741846794,63.319784280511655,65.07021711008849,77.04361412133338,79.4076235816768,63.21404772606492,64.96694549776657,0.2892024195167408,289.17383679113584,0.1057365544467359,103.27161232191884,61.8255,43.462843084085335,64573.08475638415,45394.37368435462,207.31808,124.23757806955425,215942.19019269937,129182.06164362354,240.12,113.52071612262,247302.03143767297,115922.5534251135,4195.25513,1864.9588221086465,4342109.958744583,1909272.721235938,1363.521,585.0819656461882,1409268.7659930023,596543.7288990114,2325.03892,963.6340653934308,2391531.192229359,976536.8184664912,0.38179,100000,0,281025,2935.140216199279,0,0.0,0,0.0,17362,180.71961982348947,0,0.0,22577,232.30455898480335,2189913,0,78642,0,0,0,0,0,42,0.4386652044493185,0,0.0,0,0.0,0,0.0,0.07461,0.1954215668299327,0.3152392440691596,0.02352,0.3130313412003553,0.6869686587996447,25.686551332650225,4.595572264298983,0.327738363038588,0.2033223741131683,0.2320470669666032,0.2368921958816404,10.85295660210392,5.289442167063152,24.94083934604027,13219.235157579957,64.57224021487102,13.530115835899093,21.185434303895384,14.83088288038261,15.025807194693924,0.5308876968333621,0.7463829787234042,0.6937697993664202,0.5592841163310962,0.0927684441197954,0.6790393013100436,0.8909090909090909,0.8663793103448276,0.6885813148788927,0.1305841924398625,0.4846765039727582,0.6899408284023668,0.6377622377622377,0.5237642585551331,0.0825602968460111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021481624091844,0.0042700800259653,0.0063965884861407,0.0086703733444465,0.010763846498189,0.0131498533246414,0.015337704851161,0.0175191424196018,0.019897343612605,0.0223016352484615,0.0244930181057639,0.0264403577406072,0.0284709583885992,0.0305770399283205,0.0324590908152947,0.0342856552208876,0.0363094066839963,0.038335408883354,0.040375157268672,0.0425551863156688,0.0573963879319344,0.0713441237091829,0.0847201686223928,0.0978679114363212,0.1103217101657039,0.1254613326565358,0.1395282238391209,0.1526973516137273,0.1645604777114289,0.1763892017117667,0.1896516448608194,0.2026076606795066,0.2152054288013572,0.2271688624063849,0.2386619880982499,0.2503958806267649,0.2616435451288519,0.2718543866363493,0.2812092041184684,0.2899080257024064,0.2983802808748104,0.3064049562579783,0.3143629188048876,0.3216389705441238,0.3286221660017515,0.3350868743748379,0.3412988966900702,0.3474842967625212,0.3534646016551223,0.3594677882262693,0.3611096119596308,0.3622410987616867,0.3641280555830144,0.3648621248986212,0.3661543507103352,0.3659281777286475,0.3655198691793545,0.3669036334913112,0.3683138141223204,0.370567185543031,0.3715386060492203,0.3732912723449001,0.3726207752329274,0.3726995241942724,0.374749305303854,0.3773332634228188,0.3782915495381791,0.3788037110921123,0.3804051903970583,0.3812785388127854,0.3830324743925405,0.3844418179864618,0.3886168521462639,0.3929916237608545,0.3907523213947318,0.3923748057846301,0.395582329317269,0.3952917093142272,0.3999443362092958,0.4040989945862335,0.0,1.993626845778028,60.98546390454309,206.96553616407363,349.8840012408054,fqhc2_100Compliance_baseline,7 -100000,95776,40913,382.14166388239227,7446,76.4909789508854,5756,59.4825425993986,2340,23.98304376879385,77.34910350822409,79.67852818263107,63.34642956891118,65.06702657545219,77.06399836978402,79.39461447039895,63.24240078010022,64.96650582124566,0.2851051384400733,283.9137122321205,0.1040287888109574,100.52075420652784,63.04166,44.38960523568605,65821.98045439358,46347.31585750716,211.15962,126.9868675765664,219867.28407951887,131983.2156277869,248.83983,118.80787418911709,256225.65152021384,121218.0623981238,4153.65331,1852.7997279086244,4295761.610424323,1893551.960201112,1399.75803,606.8307016952222,1443149.8392081524,615360.8107798427,2296.86006,943.205510830982,2356513.176578684,950112.9389226674,0.38101,100000,0,286553,2991.908202472436,0,0.0,0,0.0,17587,182.968593384564,0,0.0,23403,240.72836618777148,2181386,0,78331,0,0,0,0,0,34,0.3549949883060475,0,0.0,0,0.0,0,0.0,0.07446,0.1954279415238445,0.314262691377921,0.0234,0.3095420823740087,0.6904579176259913,25.757708059288746,4.576231863664612,0.3398193189715079,0.1940583738707435,0.2359277275886032,0.2301945795691452,11.279914583793676,5.805953267657977,24.694560555328486,13271.448662178596,64.77862220352726,13.12631197853241,22.05758874382267,15.05936907578085,14.535352405391317,0.5387421820708825,0.7726051924798567,0.6774028629856851,0.5655375552282769,0.1094339622641509,0.7126680820948337,0.9322033898305084,0.8475609756097561,0.7422680412371134,0.1594202898550724,0.4821551922634124,0.6985583224115334,0.6202185792349727,0.5173383317713215,0.09628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0051693205890998,0.0073246695275486,0.009639312957715,0.0122524098100622,0.0143735494116209,0.0168266780814937,0.0191355819768331,0.021436818604461,0.0234085654068875,0.0253862230053681,0.0274699339161843,0.0296176020224649,0.0316600965447677,0.033724778587704,0.0358201555511945,0.0381415562913907,0.0401493156366652,0.0420515591392263,0.0441325016401295,0.058086869403686,0.0729212425478506,0.0864805921949378,0.0991697320021019,0.1110197801734585,0.1272337232772194,0.1405918765369286,0.1534608717845103,0.1652775257996008,0.1768373687593743,0.1911896074822683,0.2045049039220563,0.2166458276705626,0.2286317308954114,0.2395946793411889,0.2512930127473891,0.2621904262324356,0.2732752319370256,0.2833119631449353,0.2917239168269671,0.3002463880438177,0.3085041654965834,0.3168087121212121,0.3235812308983041,0.3298753674594883,0.3361619201499808,0.3426546278787271,0.3487095212616882,0.3542771904792788,0.3592723330556988,0.3600507189683546,0.361573352818717,0.3626771986740955,0.363236549339583,0.3644380334889807,0.3646662067908331,0.3647217377517044,0.3656591237995,0.3666592545712673,0.3678360479684983,0.3681107167671305,0.3696101008496784,0.3703415332168935,0.3706512444304424,0.3710068350380532,0.3720942463447986,0.3731506533878302,0.3746936957006014,0.3769711606762324,0.3778215909548143,0.3776382025585369,0.3783231083844581,0.3786339078981219,0.3819945673263484,0.3768506056527591,0.3766756032171581,0.3772577351971101,0.3775425487754255,0.3793878124122437,0.3751993620414673,0.0,2.3552198967901856,62.25219016816644,214.8969013595984,334.26962830489737,fqhc2_100Compliance_baseline,8 -100000,95673,40547,379.898194893021,7368,75.65352816364073,5710,59.15984656068065,2371,24.44785885254983,77.31532774038504,79.70675884655613,63.31028192710126,65.0757892695712,77.0260229638088,79.41432605210332,63.204591377897536,64.97129332333668,0.2893047765762446,292.43279445280734,0.1056905492037216,104.49594623452184,62.80802,44.19704271149104,65648.63650141627,46195.94108211413,210.36547,127.23010760333328,219352.1265142726,132462.0488952638,244.8657,116.79721603550377,252628.55769130267,119575.52499150424,4154.53552,1873.4776114909823,4305865.489741097,1922078.9102192973,1406.98883,614.4874701400912,1457928.1510980108,629604.5945468467,2337.90168,969.875875486525,2412376.218995955,988042.134578384,0.37768,100000,0,285491,2984.028931882558,0,0.0,0,0.0,17633,183.7613537779729,0,0.0,23068,237.78913591086305,2180151,0,78223,0,0,0,0,0,40,0.4076385187043366,0,0.0,1,0.0104522697103676,0,0.0,0.07368,0.195085786909553,0.3217969598262757,0.02371,0.3143631436314363,0.6856368563685636,25.27963231878353,4.682566286783078,0.333800350262697,0.1893169877408056,0.2367775831873905,0.2401050788091068,11.504619159881203,5.812128222844962,25.17235098960964,13097.225335690771,64.5235128000987,12.592753806435349,21.67632520237297,15.22312848687335,15.03130530441705,0.5499124343257443,0.759481961147086,0.7046169989506821,0.613905325443787,0.1064916119620714,0.7178043631245602,0.9209726443768996,0.8491735537190083,0.7794117647058824,0.1529850746268656,0.4942877127535556,0.6888297872340425,0.6554149085794655,0.558300395256917,0.0951949229374433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.004734483667552,0.0071444518865818,0.0093674435616605,0.0114339192708333,0.0136694677871148,0.015890824527763,0.0178642561666922,0.0200337475072863,0.0222112991920371,0.0243372134762319,0.0266563944530046,0.0288356685801287,0.0308503951612072,0.0328444173780204,0.0350191333126486,0.0371444853131637,0.0391074208614426,0.0410555659572697,0.0431683168316831,0.0573903231535946,0.0715235532474059,0.0845717884130982,0.0974038957348964,0.1093685688052093,0.1249603048586853,0.138603979528997,0.1521190367143481,0.1645557443806714,0.1759383485923429,0.1898408113555285,0.2027872828864729,0.2148875487143759,0.2265354813290723,0.2377606203121386,0.2492262980998547,0.2593333184387497,0.2694355337948111,0.2787581476686879,0.287651759202999,0.2962598311190391,0.3039141074125677,0.311491720560017,0.3184213369182941,0.3247860130337516,0.3312981053878034,0.3373385288110959,0.3432951752766353,0.3488790980951147,0.3549764097955515,0.3560099266292619,0.3570926240019856,0.3585262296700661,0.3593740944653723,0.3604211341434358,0.3612079156239925,0.3617675982615868,0.3624919886279601,0.3632692867041935,0.3638916714367487,0.3642263613002457,0.3648699510706998,0.3661210233967346,0.3671506270508383,0.3672521410944985,0.3685204121765122,0.3689705755457761,0.3703055378739656,0.3709087032232844,0.3725166894554814,0.3738877875616615,0.3751343219428326,0.3779326216198939,0.3789964994165694,0.3795753674704583,0.3778288757110008,0.3774547703726612,0.3771591140012192,0.3803767219567051,0.388221619527315,0.0,1.992455883169775,63.04067631711296,219.19655622563303,322.7777197092772,fqhc2_100Compliance_baseline,9 -100000,95630,40937,383.5616438356165,7404,76.16856634947193,5723,59.291017463139184,2339,24.09285788978354,77.3146043072854,79.73394229744646,63.296484254502126,65.0829517349373,77.02648049906024,79.44319006429541,63.19137374968045,64.97952727184463,0.2881238082251656,290.7522331510535,0.105110504821674,103.42446309266506,61.67238,43.367121834614615,64490.62009829551,45348.86733725255,207.06999,124.9573225603606,215981.27156749973,130116.6417390403,248.01731,117.92340880314354,255619.07351249608,120474.79580565543,4174.83189,1873.412676078915,4327590.923350413,1921323.7658889291,1404.42137,611.1022095731814,1454440.4789292065,625109.6681391556,2305.89316,954.2667690492073,2377318.1219282653,968546.2330525884,0.38088,100000,0,280329,2931.3918226497963,0,0.0,0,0.0,17308,180.41409599498067,0,0.0,23246,239.3914043710133,2186914,0,78453,0,0,0,0,0,38,0.3973648436683049,0,0.0,0,0.0,0,0.0,0.07404,0.1943919344675488,0.3159103187466234,0.02339,0.3084232152028762,0.6915767847971238,25.42865568273592,4.645684221772705,0.3265769701205661,0.1977983575048051,0.240083872095055,0.2355408002795736,11.117394386849242,5.4766298560738695,24.873403971110044,13176.482246216376,64.87770541099847,13.27814108559732,21.13464358527237,15.600562199392495,14.864358540736264,0.5439454831382142,0.758833922261484,0.6821829855537721,0.5778748180494906,0.137240356083086,0.7147887323943662,0.925207756232687,0.840958605664488,0.7522388059701492,0.1622641509433962,0.4875668138508017,0.6809338521400778,0.6304964539007092,0.5216554379210779,0.1311172668513388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021278104830129,0.0042185963026437,0.0065273886384862,0.0091347863638672,0.0114339192708333,0.0134854349154613,0.0156873144908762,0.0180406578812953,0.0204355074613126,0.0226008950241164,0.0245333333333333,0.0263995891114535,0.0286713646417365,0.0307454536087785,0.0328764012469291,0.0351249069401935,0.0372703629638072,0.0395049679703479,0.0414741748865859,0.043503201985857,0.0579381421747446,0.0717563009364982,0.0848069895408913,0.0980105263157894,0.1099148168086386,0.125403699742691,0.1382533511779576,0.1513033099597178,0.1639353030529941,0.175457631488484,0.1889868269158152,0.2024213389982983,0.2143892260588164,0.2257718179627073,0.2372963559004431,0.248640429735189,0.2597344539317806,0.2692056338028169,0.2795909090909091,0.2891751453905183,0.297307625499392,0.3055903383225474,0.3130284442128697,0.3208117443868739,0.3278499313562308,0.3345208890642143,0.3413409779424651,0.3474044567748832,0.3532573500841859,0.3582426579336573,0.359353734621552,0.360149775611905,0.3617612618332134,0.3632519477510354,0.364864059146196,0.3652167230249001,0.366081648225868,0.3670127597761674,0.3677601362393133,0.3682320838718943,0.3687456518060282,0.3704685768561025,0.371285363756475,0.3715905780048858,0.3719274616383664,0.372196608580136,0.3729079348786816,0.3750667630148606,0.3761413119820199,0.3769610575774468,0.3800921490807901,0.3795437586611235,0.379398266190719,0.3802611367127496,0.3852941176470588,0.385729808040565,0.3834302782581355,0.3830711920529801,0.3865850264403005,0.381139489194499,0.0,2.1072339443269086,63.07483118114197,224.4354411682924,319.7555356045737,fqhc2_100Compliance_baseline,10 -100000,95641,41165,385.99554584330986,7547,77.49814410137911,5867,60.70618249495509,2354,24.215556089961417,77.29129418892526,79.69073056443075,63.29829466637945,65.06955907970661,77.00476592558364,79.40411667701453,63.19395971337266,64.96785962567432,0.2865282633416228,286.6138874162232,0.1043349530067914,101.69945403228552,62.33128,43.84446964889987,65172.133290116166,45842.75535481631,210.21893,126.51031454383192,219202.7477755356,131678.97088469582,248.64504,118.38702074768374,255334.88775734257,120254.18928653968,4268.16698,1905.779607882539,4420961.167281815,1951006.133465076,1467.49648,634.7888827593049,1516164.155539988,645555.0027572028,2326.23428,963.3572513737408,2395858.240712665,976379.3311146044,0.38363,100000,0,283324,2962.36969500528,0,0.0,0,0.0,17584,183.21640300707853,0,0.0,23380,239.86574795328363,2182828,0,78316,0,0,0,0,0,43,0.4495979757635323,0,0.0,0,0.0,0,0.0,0.07547,0.1967260120428537,0.3119120180204054,0.02354,0.3166018320993851,0.6833981679006149,25.44241079680669,4.679710316500304,0.3277654678711437,0.1948184762229418,0.2386228055224135,0.2387932503835009,11.42057412178941,5.7679269525238,25.126480737819367,13378.234745645264,66.12215852959693,13.161345584992368,21.81848823833971,15.604730349077665,15.537594357187166,0.5524117947843873,0.7629046369203849,0.7061882475299012,0.5964285714285714,0.1256245538900785,0.7008733624454149,0.9090909090909092,0.851380042462845,0.7269736842105263,0.1524163568773234,0.50701090585355,0.7035670356703567,0.6590909090909091,0.5602189781021898,0.1192579505300353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107857338208,0.0046943120754334,0.0072064391055895,0.0095518748094705,0.0116900161767847,0.0140551000662015,0.016212247894447,0.0182674045785937,0.0206015867822672,0.0227407695615669,0.0250020510296168,0.0270731056015446,0.0290928543505544,0.0311910723669974,0.0332923845605921,0.0356928614277144,0.0375360126018198,0.0395792883619033,0.0416285167304811,0.0436282890621742,0.0578092670386858,0.07181163063516,0.086382679364546,0.0992221789514677,0.1120222904727226,0.1278973772782117,0.1413846545794233,0.154190277363555,0.166358417344637,0.178238230715551,0.1933191723364566,0.20676585883525,0.2198092874404023,0.2305940323022173,0.2412314543330173,0.2535633076368476,0.2633131466624953,0.2740373789687007,0.2831902620702184,0.2929196846062162,0.3019276410998552,0.3100785171836787,0.3182211270775828,0.324910007199424,0.3324044779751764,0.3391659772045294,0.345957062600321,0.3519458329082934,0.3580253322259136,0.3635066205037397,0.3654642303283663,0.3667977101869094,0.3682024329250201,0.3684798051552669,0.3697665746886419,0.3708696923526786,0.3710423789456945,0.3712955472271294,0.3718415896043178,0.3725173002606273,0.3735101086300543,0.37469886714317,0.3749366767983789,0.3768494538903276,0.3771870468825519,0.3774702521360801,0.3789563974267333,0.3810336113217084,0.3843597539418794,0.3839964774637739,0.3841029175281415,0.3841257955821789,0.3851200713421237,0.3856634153893791,0.3872577240452888,0.3869908814589665,0.3876200976531737,0.3827419693470502,0.3753557199772339,0.3742690058479532,0.0,2.5227812089936146,60.4654018932506,231.19346038684012,337.68188903769527,fqhc2_100Compliance_baseline,11 -100000,95632,41062,385.0384808432324,7693,79.40856617031956,5964,61.77848418939267,2492,25.692236908147898,77.27514686010801,79.68672357976959,63.27600815666828,65.05645328687716,76.97082973643923,79.38064667256519,63.16540767991788,64.94786284736747,0.3043171236687811,306.0769072043996,0.110600476750406,108.59043950968328,61.47328,43.26493342100984,64281.0774636105,45241.06305526376,212.54949,127.84245152418876,221703.0491885561,133127.00928997487,253.39428,120.63056855260402,261090.12673582067,123155.81546053768,4325.56083,1942.415667396624,4484464.227455245,1992468.700222336,1445.2848,626.9963482567043,1496697.1515810608,641033.3029286265,2449.75344,1010.7353365559884,2527816.253973565,1027652.9603878824,0.38183,100000,0,279424,2921.867157436841,0,0.0,0,0.0,17769,185.2099715576376,0,0.0,23805,245.14806759243768,2182194,0,78345,0,0,0,0,0,37,0.3764430316212146,0,0.0,1,0.010456750878367,0,0.0,0.07693,0.2014770971374695,0.3239308462238398,0.02492,0.3131288343558282,0.6868711656441718,25.48205854756909,4.574003983629696,0.3296445338698859,0.1973507712944332,0.2365861837692823,0.2364185110663983,11.179193760488404,5.647042904517567,26.48030642590981,13298.673045366517,67.59017308273178,13.819674797356996,22.416883454794025,15.826098693438464,15.5275161371423,0.5451039570757881,0.7612574341546304,0.7029501525940997,0.5804394046775336,0.1092198581560283,0.6974393530997305,0.8756613756613757,0.8686274509803922,0.7373737373737373,0.1404682274247491,0.4946428571428571,0.7071339173967459,0.6449175824175825,0.5385996409335727,0.1008100810081008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0045204382595299,0.006656181827406,0.0088979177247333,0.0110355068704929,0.0134736027374938,0.0155810254109393,0.0177027289154781,0.0200382362262684,0.0223111893840104,0.0245453519739878,0.0265147623841712,0.0286740195069755,0.0309739530185431,0.0328886227050246,0.0350898971717046,0.0370447148572731,0.0390806746427384,0.0411775724275724,0.0435494467676841,0.0586870407725994,0.0733491208583942,0.0865934112110261,0.0993257479983143,0.111820006337805,0.1274227371899426,0.1418050817738387,0.154647307770209,0.1669930758446506,0.1786282348895194,0.1922686644501058,0.205667067894206,0.2181320717696047,0.2296354783524148,0.2398843292642546,0.2512692893090844,0.2625334392943889,0.2728288471305231,0.2825708333807643,0.2919931074095347,0.3008598981119376,0.308912563946121,0.3163643270965903,0.3237330512549283,0.3305045536453513,0.3373063906524048,0.3435695999196827,0.3493700907885341,0.3552364864864865,0.3600757385167432,0.3615848220318369,0.3629559044896494,0.3644035452270896,0.364794919751207,0.3659347375639133,0.3667609444171175,0.3672694939743732,0.3685008487005817,0.3695410268262202,0.3705248460547042,0.370907583920431,0.3716612054413663,0.3732478974769723,0.3743924392439244,0.3755325329202169,0.3757545535667419,0.3755236728837877,0.3779779843289027,0.3806295915108066,0.3813886210221793,0.3828125,0.3838242420978945,0.384282532612154,0.3847867844794468,0.3830945558739255,0.3862645348837209,0.386940938133084,0.3939768976897689,0.3832820799552698,0.3895800933125972,0.0,2.273362772749963,65.92942012635154,226.6020162318468,341.95341137317257,fqhc2_100Compliance_baseline,12 -100000,95693,40956,384.3854827416844,7439,76.65137470870388,5851,60.65229431619868,2392,24.65175091176993,77.28391542799022,79.68069830855154,63.28504443165552,65.05931784574784,76.9967494361183,79.39142557436715,63.18086157540286,64.95682704624163,0.2871659918719302,289.2727341843937,0.1041828562526632,102.49079950621363,62.8991,44.240969182128126,65730.09520027589,46232.18958766903,210.84655,126.8418171881519,219853.00910202417,132067.34786050385,248.25414,117.93195720482154,256528.95196095845,121004.5996543135,4234.35194,1884.054027564216,4390120.85523497,1934039.51967669,1423.55902,619.0833418153811,1473229.3480191864,632555.4131166551,2353.7553,965.1924716737782,2427460.796505492,981699.1317608522,0.38092,100000,0,285905,2987.73160001254,0,0.0,0,0.0,17633,183.7647476826936,0,0.0,23311,240.6550113383424,2178562,0,78272,0,0,0,0,0,37,0.3866531512231825,0,0.0,0,0.0,0,0.0,0.07439,0.1952903496797227,0.3215485952412958,0.02392,0.3130656469088591,0.6869343530911408,25.48516461771292,4.529189470408997,0.3286617672192787,0.1994530849427448,0.2401298923260981,0.2317552555118783,11.204732873932723,5.5444273948075375,25.35120307554701,13225.846497546128,65.88355077672179,13.560434114383224,21.81689028797769,15.693692590321351,14.812533784039529,0.5494787215860537,0.7549271636675235,0.7020280811232449,0.5779359430604982,0.1268436578171091,0.7205987170349252,0.9178082191780822,0.854389721627409,0.7375415282392026,0.2037037037037037,0.4955035971223021,0.6807980049875312,0.6531593406593407,0.5344202898550725,0.1077348066298342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813866763948,0.0046454073352807,0.007005289501203,0.0090751110252944,0.0112837418475219,0.013711188982153,0.0158090672650313,0.0179862728275523,0.0200664791613398,0.0223524350017414,0.0242833986498963,0.0265507639509673,0.0288330932290594,0.0307736702703259,0.0330635671077895,0.0349766787668186,0.0370654370239883,0.0389374467996761,0.0408384043272481,0.0427011027036041,0.057444008022731,0.071538501805999,0.0842393585761061,0.0973410355966623,0.1095374288940719,0.1251548028578989,0.1393607984710129,0.1524551931248202,0.1646198736653092,0.1760981315933505,0.1896001724323741,0.2031021522264224,0.2163892306184882,0.2282667017071274,0.2391285182164819,0.2509324216321819,0.2616103570869575,0.271487500845299,0.280408246766531,0.2898459279314419,0.2978745608237381,0.3058005347844443,0.3145502017564681,0.3216726931994282,0.3296147897358454,0.3362684318423197,0.3424636917751524,0.3486333227142402,0.3542677075498612,0.3597801820367508,0.3607915076142817,0.3619211686879823,0.3630567858049592,0.3639125151883353,0.3653161274940768,0.366075544764422,0.3662641029715557,0.3674783095438007,0.3689628549369477,0.3698644889168087,0.3704381628108842,0.3724950649039899,0.3728447362846854,0.3732507403974408,0.3741899332456269,0.3749374094083542,0.3760693575242579,0.377242277042258,0.3790470804467694,0.3814272607603016,0.3816405174786678,0.3830196749358426,0.3853529300447865,0.3869795609386828,0.3897320592092936,0.385180794309425,0.3845446182152714,0.3853529171766626,0.3823033707865168,0.3773291925465838,0.0,1.9051109607503116,62.562436741276805,223.08071109143572,339.3034824154203,fqhc2_100Compliance_baseline,13 -100000,95662,40814,380.903598084924,7615,78.30695574000124,5810,60.21199640400577,2345,24.084798561602305,77.35161970545354,79.75924469063494,63.31721993396855,65.09506450926905,77.06432308027907,79.47250835477585,63.211433708363344,64.99290026618874,0.287296625174477,286.7363358590893,0.1057862256052075,102.1642430803098,61.34062,43.14976164804747,64122.24289686605,45106.48078447814,207.96574,125.09004021987433,216864.4602872614,130230.58290635188,247.00652,118.06008957283515,255936.2965440823,121540.53290917203,4180.1639,1882.344522197611,4328962.346595304,1926990.733882432,1440.00682,624.7952635216067,1491833.141686354,639690.849924482,2298.80408,957.7918507067149,2361703.330476051,963608.5793429908,0.3801,100000,0,278821,2914.647404403002,0,0.0,0,0.0,17379,181.11684890552152,0,0.0,23129,239.5517551378813,2191729,0,78542,0,0,0,0,0,46,0.470406221906295,0,0.0,0,0.0,0,0.0,0.07615,0.2003420152591423,0.3079448456992777,0.02345,0.3138457686529795,0.6861542313470206,25.646429257115106,4.567740902086693,0.3314974182444062,0.2010327022375215,0.240275387263339,0.2271944922547332,11.284600099498126,5.814135064047193,24.89148003739083,13254.582241896873,65.14283002456443,13.441863579458497,21.72437354478957,15.621410371915513,14.355182528400862,0.551118760757315,0.7414383561643836,0.7045690550363447,0.5830945558739254,0.125,0.7239010989010989,0.9239766081871345,0.8862275449101796,0.7463976945244957,0.131578947368421,0.493339457969683,0.6658595641646489,0.6407017543859649,0.5290753098188751,0.1233396584440227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0046037621051564,0.0072868248523352,0.0094692351458993,0.0116876379578675,0.0136382155225096,0.0159384081986437,0.0182169078228548,0.0203374233128834,0.0227389122196046,0.024961014445174,0.0274375205524498,0.0295870167025141,0.0319497711245824,0.0339018066502081,0.0362234868080703,0.0387138903572872,0.0404891925001557,0.0426065423672382,0.0448070907194994,0.0592286069573758,0.0732856559479806,0.0861569467187303,0.0990013574803481,0.1111369105416473,0.1259751669824602,0.1385278627251104,0.1519102033854943,0.163717098223839,0.1754483943722478,0.1895754020038178,0.2024962621075212,0.2152546432381823,0.2269403393541324,0.2389343494972411,0.2505016907810854,0.2617693399336246,0.2724928495822354,0.2820221656976744,0.2914012738853503,0.3001863145591519,0.3081735266604303,0.3154980239960243,0.3221252935819393,0.328600750573861,0.3354483404381145,0.3415067208502657,0.3476547603915088,0.3540904330286142,0.3597680701060816,0.3612101799388988,0.3617925306638799,0.3627861116980069,0.3644901674637691,0.3659983055634002,0.3667049544375526,0.3664651324744389,0.3678115606366727,0.3692460385365687,0.3700536672629695,0.3712927113483442,0.3717765894236483,0.3732974609046578,0.3738968776598128,0.3738169207427209,0.3747390941348361,0.3751356910243958,0.3756188313940655,0.3771178977773081,0.3796443948333599,0.3801354195260316,0.3806417395916203,0.3800542484072415,0.3788724852749943,0.3782686679882941,0.3754821600771456,0.3745143745143745,0.3786921980036667,0.3765840220385675,0.379072441548486,0.0,2.0047943752465818,64.53688079467472,208.87775930988636,339.443218435016,fqhc2_100Compliance_baseline,14 -100000,95788,40923,383.4300747484027,7497,77.04514135382303,5750,59.41245249926922,2331,23.959159811249844,77.3507064425629,79.67913212860368,63.34838135415546,65.07008297399656,77.06667112960663,79.39371890536742,63.24578051943841,64.96951276126863,0.2840353129562629,285.4132232362616,0.1026008347170446,100.57021272793064,61.76324,43.47676549132518,64479.099678456594,45388.53039141144,207.71218,124.48341262653098,216223.4309099261,129335.06900903568,239.64867,113.7192141000127,246005.0110661043,115622.54179210323,4159.57634,1851.493337713311,4297566.793335282,1888011.2015655888,1426.53534,617.4274662237617,1470376.7277738338,625809.7805062941,2299.67572,949.246759012859,2364483.254687435,961059.756195112,0.38228,100000,0,280742,2930.8681672025723,0,0.0,0,0.0,17345,180.4401386394956,0,0.0,22520,230.8848707562534,2193675,0,78670,0,0,0,0,0,39,0.4071491209754875,0,0.0,1,0.0104397210506535,0,0.0,0.07497,0.1961127969027937,0.3109243697478991,0.02331,0.300453514739229,0.699546485260771,25.655558672699147,4.640633455490701,0.3273043478260869,0.1944347826086956,0.2415652173913043,0.236695652173913,11.10177730483781,5.576465352081155,24.90244929407134,13226.883327426542,64.66689180895365,13.111062698440373,21.235427371796423,15.205203635424304,15.115198103292544,0.5363478260869565,0.7647584973166368,0.6880977683315622,0.5579553635709144,0.1168258633357825,0.7028985507246377,0.9331395348837208,0.854389721627409,0.7436823104693141,0.1506849315068493,0.4837528604118993,0.689922480620155,0.6332155477031802,0.5116906474820144,0.1075771749298409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0045417680454176,0.0067581965965478,0.0089387290752478,0.0109199609565641,0.0128783328412758,0.0152969711793241,0.0177873478176567,0.0197839704875481,0.0219300040933278,0.0241920609873557,0.0261138131297584,0.0282305304914393,0.0302234849654632,0.0323994349175577,0.0347527841484328,0.036774520658506,0.0389591540534936,0.0409392557820727,0.0427888769741705,0.0573276986487191,0.0712060059808862,0.0846899732690392,0.0978813737441674,0.1090817111600602,0.1250779557105861,0.1382579372653814,0.1513403641704002,0.1634888438133874,0.1758281800936693,0.1901369037368692,0.2038562133886691,0.2161530771905424,0.2279699346690847,0.2385575284481337,0.2497981217021935,0.2611190338250367,0.2716071568968809,0.2814072059823249,0.29027866752082,0.2993163498625771,0.3079806614349776,0.3157956977803006,0.3233269071881025,0.3292631118987218,0.3360101489081302,0.3423991196808843,0.3483266126467632,0.3541199787556511,0.3597383241667656,0.3616425822771185,0.3626355479715968,0.3646090302936325,0.3648196678587458,0.3653960690887433,0.3656270634664701,0.3660291641516027,0.3672274451591621,0.3680534102220849,0.370050060108015,0.3703123821021655,0.3707970235963551,0.3721436114044351,0.3741840767927724,0.3743517665875054,0.3758126069219634,0.3772714162099798,0.378612624669407,0.3792968611140734,0.3820076137046684,0.3840827255101098,0.3846486720398117,0.3851780558229066,0.3871696936627952,0.3911421465467763,0.3941958887545345,0.3962707615167659,0.400963149078727,0.3907980687304743,0.3837623762376237,0.0,2.354966469918649,60.862237357859286,216.9991615097492,335.9133536115094,fqhc2_100Compliance_baseline,15 -100000,95736,40982,384.2337260800535,7653,78.71647029330659,5954,61.60691902732514,2385,24.515333834712123,77.31652017658898,79.67664092248359,63.31665033110207,65.0621381171144,77.0267310436454,79.38706871978223,63.21053011440524,64.95880644461567,0.2897891329435822,289.57220270135053,0.10612021669683,103.33167249872588,62.22084,43.75562844966439,64992.10328403109,45704.466919094586,213.81302,128.64581346955907,222767.9765187599,133807.87360409572,251.90184,119.84805347310252,259707.5917105373,122533.86390401189,4322.87386,1938.6026411511689,4475078.6329071615,1984661.2742855663,1451.89403,632.9859596336079,1499589.360324225,644231.1993419516,2352.37508,981.4566507032376,2419650.100275758,992610.93627245,0.38226,100000,0,282822,2954.186512910504,0,0.0,0,0.0,17879,186.1473218016211,0,0.0,23675,243.81632823598227,2181690,0,78413,0,0,0,0,0,38,0.3969248767443804,0,0.0,0,0.0,0,0.0,0.07653,0.2002040495997488,0.3116424931399451,0.02385,0.3136499254102436,0.6863500745897564,25.602557166382606,4.610198746788591,0.3421229425596238,0.1896204232448774,0.2368155861605643,0.2314410480349345,11.172372141369795,5.569160664422896,25.46710777638624,13237.389913448706,67.17919384676551,13.134139083271368,22.98460572748318,15.81632461292381,15.244124423087152,0.5498824319785018,0.7661647475642162,0.6980854197349042,0.5900709219858156,0.1124818577648766,0.7042449547668754,0.9041916167664672,0.8792079207920792,0.7129337539432177,0.1423487544483986,0.500774850564534,0.7081761006289308,0.6383812010443864,0.5544373284537969,0.1048313582497721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023804459031006,0.0049472328950436,0.0071961431108855,0.0093479784996494,0.0118204752604166,0.01398366365877,0.0159811530498811,0.0179734891035722,0.0202556237218813,0.0224727153592563,0.024403498518359,0.0265841111419154,0.0286178493938116,0.0306341001297444,0.0327701448199034,0.0349843985700411,0.0369546089746907,0.0390436180696022,0.0409143356098169,0.0429328971631575,0.0575670258080681,0.0711639879457559,0.0849631392946654,0.0975153254892064,0.1092693933930134,0.1245346476013199,0.1386183777820211,0.1509719176478102,0.162921888522068,0.1747041594695791,0.1891050499827645,0.2032421786228316,0.2160607279964329,0.2275764036958066,0.2387432018847568,0.2505736169458084,0.2619140690440823,0.2721051683774536,0.2812649029181333,0.2907736389684813,0.2990206292977703,0.3070333528379169,0.3149398332385825,0.3222759622193152,0.3291776639867667,0.3360327885042714,0.3428070175438596,0.3488505454174737,0.3543527581512932,0.3604336043360434,0.3612621241349539,0.3621044205528796,0.3639166654880273,0.3651097665375296,0.365826731713139,0.3661854909376009,0.3661280327946994,0.3673769166020235,0.368359542837501,0.3699388709097447,0.3719723836112578,0.3732975444875236,0.3733336145798177,0.3736097978297086,0.3753601084561939,0.376323791548705,0.3754304407713498,0.3772928526249209,0.3792104054006291,0.3805922368947579,0.3840183696900114,0.386569970453935,0.3911080015265233,0.3961903304773562,0.3967968157695223,0.3973246565437455,0.3956231569144808,0.3999181334424887,0.3923766816143498,0.3978996499416569,0.0,2.236453324129966,63.55169889092821,229.63295010608493,342.59293419351,fqhc2_100Compliance_baseline,16 -100000,95678,40778,383.20199000815234,7574,78.00121239992475,5891,60.98580655950166,2426,24.979619139196053,77.40264542862671,79.7815575425596,63.35728834693722,65.11121829322995,77.09777513098796,79.47655493442645,63.24513429026041,65.0020537497616,0.3048702976387574,305.00260813315094,0.1121540566768075,109.1645434683528,61.91306,43.54885972590782,64709.81834904576,45516.064012529336,209.89802,125.45769215594372,218796.6199126236,130544.12463876553,240.91307,114.29153487849516,247897.2177512072,116494.85720664376,4325.24892,1923.9237509095165,4479990.844290223,1970579.317519528,1459.90175,628.6067506638993,1510711.1352662055,642051.6619191731,2413.44444,1009.441625560317,2487345.9520474924,1024429.6631996194,0.38019,100000,0,281423,2941.35537950208,0,0.0,0,0.0,17523,182.51844729195844,0,0.0,22600,232.3836200589477,2192330,0,78612,0,0,0,0,0,41,0.4180689395681348,0,0.0,0,0.0,0,0.0,0.07574,0.1992161813829927,0.3203063110641669,0.02426,0.317,0.683,25.511186092958408,4.662887746937771,0.3262603972160923,0.1974197929044304,0.2278051264640977,0.2485146834153793,10.926065243366978,5.235369923230957,26.00978834639144,13156.324307455176,65.84721621562832,13.299213502392185,21.523017213605783,14.810747421950294,16.21423807768006,0.5267356985231709,0.7601031814273431,0.668054110301769,0.563338301043219,0.1222677595628415,0.6863309352517986,0.9289940828402368,0.8496732026143791,0.7109634551495017,0.1232876712328767,0.4774494556765163,0.6909090909090909,0.6110731373889269,0.5206532180595581,0.1220136518771331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022480785004708,0.0045709305036131,0.0068573747210387,0.0089678356336898,0.0109821946085559,0.0133902205567887,0.0153639116294717,0.0172482420061032,0.0192938531500689,0.0215113185148798,0.0237397240615838,0.0258397667542706,0.0281921839175003,0.0301756987785536,0.0321498952755336,0.0341181577641805,0.036241263266891,0.0382603822925098,0.0401672421683238,0.0420766280330192,0.0566867602043481,0.0703874345549738,0.0836612830442128,0.095923412761033,0.10865804518892,0.1241045826323418,0.13798410120886,0.1501410700026617,0.1629475259164262,0.1746176451661339,0.1886847320351542,0.2016863114372612,0.2142258959160367,0.2262851144328657,0.2374419679200862,0.2495681636991762,0.2601103863522328,0.2703878094553137,0.2801441343440867,0.2889905633400057,0.297608871433522,0.3063261874737285,0.3143920595533498,0.3218194008764158,0.3278115556850038,0.334302253972164,0.3400653177671834,0.3463640986524282,0.3517866846068259,0.3581107801007092,0.3598810932960292,0.3607413208039676,0.3622079365302649,0.3639000736026324,0.3648259268060836,0.364783920829695,0.365497446956963,0.3665931461302959,0.3673814898419864,0.3682488017740897,0.3696085061617072,0.3702371541501976,0.3712059322566455,0.372094064949608,0.3730939972978189,0.373241466034424,0.3735122888525624,0.3756163863952459,0.3781804027035634,0.3794758951790358,0.3829023649581301,0.3848638174184519,0.3873925501432664,0.3881331181308124,0.392663172939495,0.3901799547133834,0.3922694815274759,0.3912688698490412,0.3949185307925987,0.3923664122137404,0.0,2.2288961895816337,61.36082224142098,218.4911462295216,349.0669470176392,fqhc2_100Compliance_baseline,17 -100000,95715,40901,383.1792300057462,7408,76.00689547092932,5772,59.57268975604659,2326,23.872956171968863,77.33907921770925,79.70491737905625,63.32552877917672,65.0748992172157,77.05254664544715,79.41991758322989,63.2201096385612,64.97324826500036,0.2865325722621037,284.9997958263657,0.1054191406155169,101.65095221533704,62.6659,44.11142398666341,65471.34722875202,46086.21844712261,211.5327,127.50179565564687,220318.7483675495,132525.92138708336,243.80842,116.21335489589272,250076.1218199864,117883.54012365208,4196.70544,1871.962814775953,4338658.412996918,1909840.959908012,1374.37874,599.5788954849165,1418107.088753069,608620.7548293546,2300.61524,955.139176361324,2364266.2069686046,963184.1127453567,0.3801,100000,0,284845,2975.970328579637,0,0.0,0,0.0,17634,183.5031081857598,0,0.0,22918,234.72809904403695,2183354,0,78272,0,0,0,0,0,55,0.5746225774434519,0,0.0,0,0.0,0,0.0,0.07408,0.1948960799789529,0.3139848812095032,0.02326,0.3096707818930041,0.6903292181069959,25.21479616694777,4.644515750830059,0.3336798336798336,0.194040194040194,0.2351004851004851,0.2371794871794871,11.080206959696966,5.373307866144224,24.714212322884094,13183.183013011603,64.81191835454523,13.021974987103428,21.86743682380457,14.824292218531255,15.098214325105973,0.5343035343035343,0.7642857142857142,0.6879543094496365,0.5607958732498157,0.1037253469685902,0.6976090014064698,0.9164345403899722,0.8568548387096774,0.6955017301038062,0.1330935251798561,0.480919540229885,0.6925098554533509,0.6293706293706294,0.5243445692883895,0.0962419798350137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.004623433507726,0.0070541903920911,0.0091956592423996,0.0111390293276909,0.0133925388791005,0.0155611074287462,0.0175907870422362,0.0199492832164256,0.0220098732051045,0.0243879926569374,0.0264782309501556,0.0284677012948278,0.0306398936773023,0.032607685876196,0.0344043101041332,0.0367768937510359,0.0391249299487328,0.0410652635081735,0.0432680787222737,0.0581386849881488,0.071725278059703,0.0852547366655133,0.0980924138221128,0.1101268626024233,0.1252274169663634,0.1385101800473194,0.1510514827237395,0.1625983242134062,0.1745377673330543,0.1890121022059853,0.2028285541020532,0.2152634213217853,0.2267175906673378,0.2382583224129766,0.2493402523673297,0.260412129334897,0.270505459867162,0.2799146269470051,0.2887503152296017,0.2970707421558411,0.3052194265652428,0.3130612776127879,0.3209493458570949,0.3278013839990287,0.3348269240238318,0.3402454877256137,0.3455194673172715,0.3522221647350993,0.3580626434810143,0.360083439876186,0.3610820484581498,0.3629128980824314,0.364491126403477,0.3657468765356723,0.3663050316878175,0.3665016972811776,0.3669405971574908,0.3677146976041738,0.3690557369988874,0.3711161714059883,0.3712358658996231,0.3720031098316909,0.3734663610624241,0.3730972426603623,0.3725146504813729,0.3742901393908105,0.3752888663775365,0.3775719437177402,0.3790270876743067,0.3793436737699636,0.3837553082836101,0.3847284345047923,0.3896113949527791,0.3856153335231047,0.3818334735071488,0.3856762262968187,0.3856168629882207,0.3827090960292875,0.3785992217898832,0.0,2.896522179195029,62.30326412788732,209.6725428265749,339.29122770164673,fqhc2_100Compliance_baseline,18 -100000,95674,40813,383.7615235069089,7474,76.83383155298199,5745,59.33691494031816,2315,23.715952087296444,77.30793472821749,79.68414948197837,63.31631099018998,65.07019440187848,77.02423686687244,79.40078138355948,63.21232814542012,64.96908715440205,0.2836978613450469,283.3680984188902,0.1039828447698667,101.10724747643474,62.7055,44.12573234604975,65540.79478228149,46120.92349650871,211.19167,127.5302189666054,220031.4191943475,132587.12812948698,247.63366,118.14387572976356,253544.80841189876,119557.6735745463,4153.34745,1867.4434391598672,4291696.531973159,1902432.979868999,1430.63167,621.7589492575779,1476857.4011748228,631410.6541563835,2290.41958,952.01522254948,2349155.528147668,958056.105551211,0.38076,100000,0,285025,2979.1270355582496,0,0.0,0,0.0,17683,184.0939022095867,0,0.0,23236,237.8911721052741,2180377,0,78301,0,0,0,0,0,46,0.4494428998473984,0,0.0,0,0.0,0,0.0,0.07474,0.1962916272717722,0.3097404335028097,0.02315,0.3115738375063873,0.6884261624936127,25.640635510952333,4.570682323806758,0.3380330722367275,0.1984334203655352,0.2231505657093124,0.2403829416884247,11.193129906762676,5.579309169451443,24.615846767781186,13199.61136678515,65.04689317074687,13.408545129145624,22.13143894799816,14.294093031964666,15.212816061638415,0.5495213228894691,0.756140350877193,0.6946446961894953,0.6138845553822153,0.1151339608979,0.714183891660727,0.9228650137741048,0.865424430641822,0.706081081081081,0.1532567049808429,0.4963150621833256,0.6782496782496783,0.6381082933516107,0.5862068965517241,0.10625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020553631816617,0.0042762757893883,0.0067560027997849,0.0090294141545461,0.0114107883817427,0.0135737851818663,0.0159068430014989,0.0180398162327718,0.0202621194463186,0.0221105321882261,0.0240804527002091,0.0259856262833675,0.027777492106914,0.0297105181827547,0.031948156479924,0.034053199077855,0.0362227241643699,0.0383297689001474,0.040153958181629,0.0419707268254034,0.0560848218949127,0.0705493217216546,0.0832948631861675,0.0965047910552943,0.1092613288910444,0.1250462683883794,0.1390088379149735,0.1528397296002555,0.1649357864820394,0.1768511167850323,0.1900694706230815,0.2033626901521217,0.2154888379021998,0.2272265048384451,0.2376918422355465,0.2494155966453585,0.2603397093944602,0.2700929531183182,0.280189782181814,0.2893214338904991,0.2980973005523966,0.3066554338668913,0.3150740082889283,0.322513679562254,0.3301051197196807,0.336612763856314,0.34237951316169,0.348564867967853,0.3537908012833002,0.3590741255409537,0.3608440892153156,0.3619903878024527,0.3634949809133324,0.3634939059779454,0.3647136077366206,0.365240921250884,0.3657745336577453,0.3661085793540717,0.3673634269604978,0.3681404491356562,0.3691475119265363,0.3700437898089172,0.3714117101547022,0.3725768002518778,0.3740615161055945,0.3757958431991581,0.3763477960838437,0.3777911888955944,0.3785284590467376,0.3806029989575816,0.3803044280442804,0.3851732473811442,0.3860779684808269,0.3880919327471849,0.3878269139324774,0.3887691570881226,0.3935078854693002,0.4010955569080949,0.406027397260274,0.4080854309687262,0.0,2.75927477712377,61.47958194092194,221.98713324985317,329.624939831804,fqhc2_100Compliance_baseline,19 -100000,95696,40830,382.19988296271526,7460,76.51312489550243,5802,59.93980939642201,2326,23.909045310148805,77.38171245272493,79.75535366659577,63.34258245905804,65.09492522520262,77.0921585071989,79.4675037620964,63.235048318141295,64.9913272568659,0.2895539455260234,287.8499044993674,0.1075341409167478,103.59796833671452,62.85356,44.1856588089612,65680.4464136432,46172.942243104415,211.26205,127.39554401208022,220063.91071727136,132425.44517229588,251.86095,119.95264024164908,258815.01839157328,121992.02848625024,4197.1957,1879.2652180755852,4341261.881374352,1919080.722366228,1435.00719,627.0356334422161,1481694.501337569,637390.6801390349,2284.89986,953.7327545836788,2350844.716602575,963096.2931191536,0.38064,100000,0,285698,2985.474836983782,0,0.0,0,0.0,17668,183.9052833974252,0,0.0,23607,242.39257649222537,2182515,0,78267,0,0,0,0,0,40,0.4075405450593546,0,0.0,0,0.0,0,0.0,0.0746,0.1959857082807902,0.3117962466487936,0.02326,0.3127781309599491,0.6872218690400509,25.645630658555344,4.640121691489431,0.3360910031023785,0.1909686315063771,0.2447431920027576,0.2281971733884867,11.32723908948516,5.719166537445801,24.67626695883996,13181.92975646066,65.01061070169328,12.757352313021867,21.915281667568,15.765406862403657,14.57256985869978,0.5515339538090314,0.7707581227436823,0.6912820512820513,0.5887323943661972,0.1223564954682779,0.7088150289017341,0.9319526627218936,0.862144420131291,0.756578947368421,0.1473684210526315,0.5022634676324128,0.7,0.6389819156061621,0.543010752688172,0.1154956689124157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0047542296424697,0.0068190120550391,0.0091217520264916,0.0112496694265313,0.0133299389002036,0.0158654091256691,0.0182326758952999,0.0203939768766036,0.0228273108813594,0.0249530976082343,0.0270633771727189,0.0291446847458324,0.0310578200809666,0.0331682146542827,0.0353402194030005,0.0374409644543872,0.0395674867952722,0.0416545325955818,0.0434682924287426,0.0578381201044386,0.0716028184645022,0.0850550349936518,0.0973959703298437,0.109304778985125,0.124615270711921,0.1377846637094891,0.1507336499350469,0.1631281454017032,0.174688324785958,0.18917316894426,0.2024446224801334,0.2149896660502556,0.2263835277908388,0.2379307309774237,0.2491418447569482,0.2598302229857106,0.2703599550056243,0.2803221963809632,0.2895840014660741,0.2983473369904867,0.306806221494562,0.3140614269814582,0.3220225177156149,0.3288442137760869,0.33553653784497,0.3416517527502096,0.3472812937730803,0.3524503070982455,0.3573908566449722,0.3587923999838412,0.3597441012588567,0.3608680335376594,0.3620570141235595,0.3625810856947764,0.3629840424718104,0.3636550730603005,0.3643939891068968,0.3658449202422588,0.367099227103154,0.3688919735139089,0.3707794007045877,0.3711085522872396,0.3722220978895777,0.3733201676219835,0.3746548580359468,0.3752567320858055,0.3767140520820229,0.3763557864438906,0.3774710632035321,0.3792378689573243,0.3796108200577355,0.3816745252962916,0.384858774502238,0.3836424155967665,0.3837028160575195,0.3851737451737452,0.38436348751535,0.3833473037161218,0.3927738927738928,0.0,2.655134017409668,60.474128307473705,221.2392030653675,335.1466598194256,fqhc2_100Compliance_baseline,20 -100000,95857,40598,380.7546658042709,7430,76.23856369383562,5763,59.5366013958292,2264,23.2533878589983,77.44506122741345,79.72168810052192,63.40474875222951,65.08363457041146,77.1641374272891,79.44157746365785,63.30130569972948,64.98322884336706,0.2809238001243415,280.110636864066,0.103443052500026,100.40572704440363,63.51532,44.662092846512905,66260.49219149358,46592.41666911431,212.08445,127.4896038677601,220682.6418519253,132431.55311324168,245.63297,116.39952748126696,252381.8709118792,118520.24269462631,4167.03232,1860.8442145332328,4306905.745016013,1901222.6883394476,1411.64277,612.7805695727782,1454172.6947432111,620858.417211104,2241.40196,934.0657879068336,2303967.4932451462,944597.4465854544,0.37912,100000,0,288706,3011.840554158799,0,0.0,0,0.0,17801,185.10906871694291,0,0.0,23100,237.1031849525856,2182560,0,78394,0,0,0,0,0,34,0.3546950144486057,0,0.0,0,0.0,0,0.0,0.0743,0.195980164591686,0.3047106325706595,0.02264,0.3095994914176732,0.6904005085823267,25.37660136942779,4.640082316101165,0.3326392503904216,0.198160680201284,0.2333853895540517,0.2358146798542426,11.289505214064173,5.568094021028099,24.029836836599525,13050.32692385828,64.5994928159292,13.20388754780698,21.50150081623294,15.057565462825652,14.83653898906364,0.56047197640118,0.7635726795096323,0.7146583202921231,0.6118959107806692,0.1214128035320088,0.7092857142857143,0.9090909090909092,0.8791946308724832,0.7531645569620253,0.1473684210526315,0.512720605088242,0.6987341772151898,0.6646258503401361,0.5685131195335277,0.1145251396648044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022571307111479,0.0043963168184442,0.0067732678989688,0.00893183386789,0.0111163045908102,0.0130327293444974,0.0151042939786523,0.0171107508132195,0.0192486393203239,0.0213399047015276,0.0236025353526044,0.0255374138496882,0.0274947619243252,0.0296347346657477,0.0318256748403049,0.0341456868877672,0.0359070883405381,0.0379573692009574,0.0401146131805157,0.0421201589911139,0.0558596886372404,0.0696824070204763,0.0827565988545582,0.0953954962328695,0.1078718121370255,0.1231714267620796,0.1366230740721131,0.1489560643893109,0.161165793991874,0.1730670434112509,0.1871043325917088,0.1999870397770841,0.212579531389112,0.2244387665967854,0.235074421925633,0.2468656287001073,0.2575304898441506,0.2680791277958863,0.2775238980802159,0.2870303612913562,0.2952402984211439,0.3028892268101532,0.3107697042148496,0.3178159955927088,0.3249150072850899,0.3312144282652081,0.3366780663184135,0.3439696444942446,0.3497128932325759,0.3553618594823032,0.35703125,0.3579406343704437,0.3592276731683976,0.3607834088090225,0.3608103698869872,0.3620392013077287,0.3623154070915265,0.3631806565755848,0.3645111755673093,0.3661821291150064,0.3679467965530161,0.3699099277442343,0.3701263272757796,0.371094799033211,0.3727132678605815,0.3732074881368306,0.3741744477340014,0.3768147822261328,0.3775263581911801,0.3799380017486686,0.3826493220960059,0.3850562399571505,0.3879660157240679,0.3879603837821108,0.3892290032523436,0.3875332205846823,0.38859375,0.3848890749267476,0.3809121621621621,0.3825396825396825,0.0,2.281143938456605,61.75479529876892,216.70861567946665,331.72876043641514,fqhc2_100Compliance_baseline,21 -100000,95682,41017,383.750339666813,7525,77.41267950084655,5821,60.23076440709851,2420,24.84270813737171,77.29747507811412,79.70083302656552,63.28577397120039,65.06600241289216,77.00101403566961,79.4068163683174,63.17468225829767,64.95932700099189,0.2964610424445055,294.0166582481254,0.11109171290272,106.67541190026952,61.71792,43.46981628028714,64503.16673982568,45431.550636783446,210.81247,127.17735334124626,219734.33874709977,132324.88173454386,244.02289,116.04133889533396,252117.2738864154,118975.51034868875,4270.88917,1919.1593099505656,4420760.184778746,1962899.918428299,1425.92492,620.0358016184558,1474520.8294141009,632264.153087766,2397.24634,1011.8253466951024,2463082.251625175,1019133.1911441772,0.38161,100000,0,280536,2931.9621245375306,0,0.0,0,0.0,17694,184.28753579565645,0,0.0,22917,236.5126147028699,2182696,0,78334,0,0,0,0,0,36,0.3762463159214899,0,0.0,0,0.0,0,0.0,0.07525,0.1971908492964021,0.3215946843853821,0.0242,0.31939736346516,0.6806026365348399,25.55223899387648,4.644297343740251,0.3255454389280192,0.1877684246693008,0.2399931283284659,0.246693008074214,10.963949273762111,5.35980007730854,25.95541992269013,13336.677033514748,65.75131582807444,12.826292248596218,21.646979929374425,15.40855117502898,15.86949247507482,0.538223672908435,0.757548032936871,0.6970976253298153,0.5848246241947029,0.1162952646239554,0.6846416382252559,0.9152542372881356,0.8586065573770492,0.7124183006535948,0.1324921135646687,0.4889807162534435,0.6820027063599459,0.6410803127221038,0.5490375802016498,0.1117068811438784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025842150066885,0.0047369809100683,0.0070257373470734,0.0094400975510618,0.011688232421875,0.0137810914868911,0.0159928195504059,0.0182696431853924,0.0201990243104206,0.0222322352049646,0.0244017519206507,0.0268129565136992,0.0289197530864197,0.0309144494136559,0.0329884772642795,0.0352728213085078,0.0375107536355061,0.0399148538497481,0.0418868866785967,0.0440342685621378,0.0585629818440131,0.0733967044241117,0.0868383494941862,0.0997422544842459,0.1122047451762298,0.1276280565872033,0.1419319906999458,0.1551784744191991,0.1676773510443738,0.1791501562449663,0.1926868730449789,0.2061559477861138,0.2190918202815182,0.2307574296484614,0.2418241559529847,0.2531517734274426,0.2644224319127051,0.2741431968534109,0.2833498164125999,0.2923156325266659,0.3004649113654017,0.3090538259564891,0.3174230568596766,0.3255562496996492,0.3317502070242096,0.3381313630522882,0.3441111152934091,0.3498129922516244,0.355921625732971,0.3618238902062606,0.3628557906835237,0.3641543354999308,0.3649188408260389,0.3659592394067489,0.3666592078764824,0.3663095439383925,0.3669973807445035,0.3678546746964162,0.3687037132057399,0.3692274685784778,0.3704099420795141,0.3714957890158554,0.373211363350258,0.3744232922732363,0.3749186374484703,0.3754703177257525,0.3756002744111594,0.3758914484064373,0.3800310143088743,0.3802463230898003,0.3835861247307886,0.3842708611037057,0.3848779871033,0.386231662591687,0.3851963746223565,0.3867823606323547,0.3918898003405046,0.3938279174330676,0.3962891165882027,0.3933410762679055,0.0,2.363314167091105,64.87314648407286,220.42829582067225,328.6446626876398,fqhc2_100Compliance_baseline,22 -100000,95824,40959,382.3050592753381,7369,75.71172148939723,5749,59.35882451160461,2357,24.200617799298715,77.32864418348662,79.63937043753268,63.32870225298407,65.03832590135593,77.03797201548672,79.3492851898024,63.22244097532742,64.93574668885005,0.2906721679999009,290.0852477302749,0.1062612776566425,102.57921250588709,62.96686,44.33871312043192,65710.94924027384,46270.989648138166,212.78864,128.1564206159462,221450.44039071637,133129.95764729736,243.39892,115.7342983839296,249934.72407747537,117699.55790607024,4182.54857,1856.954056239146,4320824.271581233,1893880.589663496,1386.43918,597.8759806869763,1430381.4597595592,607452.7578550009,2320.73182,959.1877671178814,2383705.564368008,966487.541805802,0.38034,100000,0,286213,2986.861329103356,0,0.0,0,0.0,17818,185.2980464184338,0,0.0,22825,234.18976456837532,2178405,0,78235,0,0,0,0,0,32,0.323509767907831,0,0.0,1,0.0104357989647687,0,0.0,0.07369,0.1937476994268286,0.3198534400868503,0.02357,0.3078611075254937,0.6921388924745062,25.826521290991558,4.572415732506613,0.3318838058792833,0.1951643764132892,0.2363889372064707,0.2365628805009567,10.889524430983874,5.373035757404708,25.027876655629093,13235.149001142228,64.49223952102497,13.007259058417686,21.438394865545806,15.083743982597712,14.962841614463766,0.5366150634893024,0.7593582887700535,0.6954926624737946,0.5584988962472406,0.1080882352941176,0.7010385756676558,0.9096385542168676,0.8602150537634409,0.7509025270758123,0.1277372262773722,0.4862531242899341,0.6962025316455697,0.6424116424116424,0.5092421441774492,0.1031307550644567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813895781637,0.0050277743988971,0.0073352609952823,0.0093653502356574,0.0119483424852552,0.0142537161474241,0.0162470696157374,0.0185330707134619,0.0208067202845083,0.0230544896392939,0.0250110146828283,0.027154336381269,0.0292071322131442,0.031305977063559,0.0337107618694056,0.0360135128154798,0.0381968519419234,0.0403135498320268,0.0423695363137776,0.0442674993494665,0.0591315413420116,0.0729715600167294,0.0861826796083939,0.0990678562796221,0.1111532745153843,0.1258469962684595,0.1395743417355065,0.1523138640305606,0.1643973130853597,0.1764333805051674,0.1910212784286699,0.2038842304571274,0.2161118783779375,0.2275569548296821,0.2382482394366197,0.2495845243634913,0.2603743243846875,0.2703892623495366,0.2803407155025553,0.2889340031656459,0.297461528649125,0.3059501049742549,0.3144108951449163,0.3220677139045467,0.3284788855876479,0.3350699374081801,0.3413893870793774,0.3478050149223273,0.3531573888874458,0.3589404148850262,0.3601614819615468,0.3618311123386039,0.3626393841625629,0.3641369090856263,0.3647722692462716,0.3647281629636473,0.3649315504616364,0.3660020778706773,0.3667700851917242,0.367266933982529,0.3679655308660558,0.3688119303401577,0.3705206931359354,0.3728021916331709,0.3752990358359713,0.3755942531452735,0.3770327243525396,0.3782809436468282,0.3766425929187951,0.3809751434034417,0.3803236602026315,0.382583065380493,0.3860163015792154,0.3866027227722772,0.3856870229007633,0.3869328493647913,0.3886914877182141,0.3932168550873587,0.3961527739057708,0.401980198019802,0.0,2.524520939772005,59.2343213382857,218.96152661219165,337.1037033673947,fqhc2_100Compliance_baseline,23 -100000,95750,41009,382.61096605744126,7610,78.24543080939948,5885,60.91906005221932,2397,24.66840731070496,77.35098256499538,79.69734689438388,63.33757887846742,65.07019755856373,77.05939206148769,79.40524106328624,63.23187099044736,64.96689331847116,0.2915905035076918,292.10583109764343,0.1057078880200563,103.30424009256944,62.71474,44.11980474488302,65498.4229765013,46078.12505993005,212.35367,127.36313198090316,221234.6631853786,132471.97156117685,250.07087,119.24004566791731,257892.33420365537,122021.1197553784,4213.9673,1877.9723226193728,4366672.678851175,1927025.2527353235,1405.68444,605.796150066178,1456843.2793733682,621450.8094685937,2354.63004,969.0113469575692,2426552.27154047,983291.701310196,0.38128,100000,0,285067,2977.201044386423,0,0.0,0,0.0,17760,184.9086161879896,0,0.0,23448,241.6187989556136,2181550,0,78345,0,0,0,0,0,45,0.4699738903394256,0,0.0,0,0.0,0,0.0,0.0761,0.199590851867394,0.3149802890932983,0.02397,0.322211155378486,0.6777888446215139,25.677801947780697,4.628264436134076,0.335089209855565,0.1986406117247239,0.2363636363636363,0.2299065420560747,11.206359621283308,5.666266519628701,25.369990833041427,13283.308688806825,66.06445693392583,13.526393506166988,22.256608120548883,15.478341933488986,14.803113373720969,0.5437553101104503,0.7510692899914457,0.7028397565922921,0.5772825305535586,0.09830007390983,0.7093772369362921,0.9188405797101448,0.8683127572016461,0.7166666666666667,0.1390977443609022,0.4922014260249554,0.6808252427184466,0.648721399730821,0.538955087076077,0.0883164673413063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025619474851396,0.0049056871509512,0.0074173287469686,0.0097099211830665,0.0120283474494412,0.0142928403457157,0.0168397875658759,0.0188604145617096,0.0211163237563752,0.0233960024153353,0.0252988088648338,0.0274892219256826,0.0295789852464915,0.0317063124292039,0.0340637121399686,0.0361852984951215,0.0385391967031487,0.0407388191345854,0.0427409964235215,0.0447560607165553,0.059514364456322,0.0735312578458448,0.0867636882169144,0.0996551651632708,0.1120762354528588,0.1274061076287221,0.1410891351609311,0.1544093390514094,0.1665598427552023,0.1778278358809332,0.1917231276323018,0.2046819701938374,0.2171851207309114,0.2291279133384396,0.2399427501926676,0.2515575460612376,0.2617409178247464,0.2714546150210438,0.2808409676577098,0.2893753153235793,0.297913724037326,0.3059984547306315,0.3140909575034615,0.3219151001042378,0.3290716592603385,0.3352953490376682,0.3410847864701909,0.3473377598005546,0.3536354684908789,0.3593023255813953,0.3604009551691108,0.3616173042170752,0.3630596645897794,0.3636455945922423,0.3643899748028208,0.365192801266387,0.3657695181469882,0.3670257518517907,0.368004803568365,0.3694110060189166,0.3708558211256746,0.3725731284085275,0.3734924543789859,0.3735226711005258,0.3760021249879262,0.3783507317840843,0.3791493627380782,0.3802165790640238,0.3827634825519915,0.3840402990444969,0.3844880695140453,0.3858999140893471,0.3854716621080084,0.3843610641242503,0.3858582018627637,0.3856971153846154,0.3889413988657845,0.3855546357615894,0.3802657619451512,0.3884297520661157,0.0,2.0210384351740744,61.78106589862532,227.7523058872047,338.2374559465611,fqhc2_100Compliance_baseline,24 -100000,95843,41103,383.9612699936354,7479,76.91745876068153,5775,59.680936531619416,2445,25.207892073495195,77.51248185563044,79.79945466075564,63.42745123530996,65.11136630075752,77.22224535587216,79.50634439650676,63.3215840589819,65.00649622223797,0.2902364997582793,293.110264248881,0.1058671763280614,104.87007851955354,62.17222,43.72529167401201,64868.81671066223,45621.78946194507,210.45664,126.7578194295068,219015.9636071492,131686.8727288449,243.2602,116.07331863847068,249981.3444904688,118212.11306105142,4236.67706,1881.425126521228,4381139.405068706,1923733.0911190456,1467.8363,631.611772228919,1518478.6369374916,645984.5291037628,2423.45278,992.84060995685,2499891.426603925,1011595.1571430932,0.38285,100000,0,282601,2948.582577757374,0,0.0,0,0.0,17580,182.81981991381735,0,0.0,22847,234.55025406132947,2192707,0,78602,0,0,0,0,0,33,0.3338793652118569,0,0.0,0,0.0,0,0.0,0.07479,0.19535065952723,0.326915363016446,0.02445,0.3142280015149602,0.6857719984850398,25.6471564219317,4.742774288013313,0.3139393939393939,0.2,0.2304761904761904,0.2555844155844156,10.971306652466629,5.259409747211212,25.701377210825672,13271.392012548657,64.45718264232265,13.36021593940758,20.341962851625677,14.68109116256819,16.073912688721183,0.5345454545454545,0.7714285714285715,0.6911196911196911,0.5792637114951165,0.1165311653116531,0.7016129032258065,0.925595238095238,0.8486238532110092,0.7694915254237288,0.1649831649831649,0.4828836998413058,0.7081807081807082,0.6412490922294843,0.525096525096525,0.104325699745547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002236253617469,0.0044966123494799,0.006821475993067,0.0090410041501354,0.0114793067717751,0.0136987694498118,0.0159332939667284,0.0181106216348507,0.0201566377012855,0.022364249923305,0.024658235625416,0.0268488037001712,0.0290684531760547,0.0311017341635362,0.0332474226804123,0.0353756532876118,0.0374992239399019,0.0395927719087261,0.0417064860597498,0.0440159906721079,0.0589640104704397,0.0725727190983041,0.0858576862223246,0.0988089986766651,0.1110058224622803,0.1268337505148759,0.1404605716344676,0.1537627320475471,0.1657828188521004,0.1770608014049215,0.1910189685577874,0.2044069993519118,0.2168899698160734,0.2282669229173264,0.2393747322399569,0.2508681899621757,0.261439729034127,0.2714364349183882,0.281157614543807,0.2899534766754684,0.2990204561974317,0.3072468158989477,0.3158689522551113,0.3226488578801491,0.3298167415607853,0.3367017026246235,0.3432882388178914,0.3498801780212256,0.3557921910293643,0.3602482022427596,0.3612360229270977,0.3632299295098604,0.3641760462570522,0.3649244695571956,0.3660554130779608,0.3664164156511368,0.3666328921537585,0.3678526882426311,0.3686835049609782,0.369467722050494,0.369460808224832,0.3698117688973339,0.37173324377086,0.37336972327241,0.3744360180474225,0.3746652453134343,0.3741786841880706,0.3764919645374518,0.3800852789039564,0.3809111312359727,0.3831341600901916,0.3860147213459516,0.3896387951506062,0.3898613321209366,0.3931208524161136,0.3961023714486968,0.3953347470463496,0.3931913199283297,0.3989707475622968,0.3970037453183521,0.0,2.20128795317875,60.01140899193973,218.4197407261437,335.44513740725733,fqhc2_100Compliance_baseline,25 -100000,95749,40961,383.11627275480686,7361,75.68747454281507,5732,59.39487618669647,2277,23.509383910014726,77.31288813594676,79.67171263300085,63.318020272784125,65.06219015732906,77.03794888266339,79.39316868726705,63.21921870376631,64.9640574177032,0.2749392532833781,278.5439457338015,0.0988015690178159,98.13273962585356,62.89316,44.2590217317181,65685.44841199386,46224.00414805178,210.78589,127.2644711145964,219686.16904615192,132457.33850024865,246.08464,116.7941362455132,253731.6421059228,119512.50889624892,4129.61245,1830.4997897067549,4282392.766504089,1881295.1017485007,1405.80668,595.9380197711093,1457147.145139897,611516.8858897705,2244.20858,912.9515310895836,2318481.8222644622,931884.9010077688,0.38099,100000,0,285878,2985.7022005451754,0,0.0,0,0.0,17642,183.76171030506848,0,0.0,23171,238.7387857836636,2180843,0,78301,0,0,0,0,0,32,0.3342071457665354,0,0.0,0,0.0,0,0.0,0.07361,0.1932071707918843,0.3093329710637141,0.02277,0.323134521043119,0.676865478956881,25.445134043200124,4.59013573794456,0.3469993021632938,0.2006280530355896,0.2213886950453593,0.2309839497557571,11.228982732131742,5.587650377011306,24.13678469222076,13261.233217581224,64.5861896803341,13.303086250871353,22.666143144436308,14.189848046233916,14.42711223879254,0.5512909979064898,0.7278260869565217,0.7104072398190046,0.5855003940110323,0.1261329305135951,0.7247774480712166,0.881159420289855,0.8548387096774194,0.7395833333333334,0.1643835616438356,0.4979470802919708,0.662111801242236,0.6624246483590087,0.5402650356778798,0.118552036199095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914419980149,0.0048449710619406,0.0073559999594151,0.0098322024946166,0.0121438960140763,0.0143890020366598,0.0165392066890996,0.0188257394003124,0.0208252397407324,0.0231719929142646,0.0254175595451702,0.0274374903732607,0.0295372970082173,0.031796879023536,0.0337573637892434,0.0357810965841558,0.037794851616377,0.0397816883871503,0.0418456162973285,0.0438130365924814,0.0580908530919493,0.072060100656043,0.0853817114093959,0.0985459400923112,0.1103777662972998,0.1262427550027499,0.1403681892938617,0.1529455590442233,0.1658923173870785,0.177946474523932,0.1928625255678759,0.205549367964619,0.2178639763437119,0.229290377612283,0.2405804116566374,0.2519355374646951,0.2621640924917418,0.2719684100394874,0.2808103289690335,0.2903255376929335,0.2988688070951383,0.3071011661773478,0.3153205386089878,0.3222218226713174,0.3285210839713209,0.3359468422155651,0.3413161652346,0.3475222444277549,0.3529640427599611,0.3585429360684122,0.3599821891191709,0.3610548226569069,0.3625783854019547,0.3646813260084941,0.3648364433704747,0.3647004537414443,0.3648820702167616,0.3661946259985476,0.3664977235632677,0.3679869172986378,0.3686324045096338,0.3701698154526089,0.3717927111860122,0.3729917986743062,0.3737200125880558,0.3749343418426305,0.3764905324253656,0.3779034666836134,0.377345107635564,0.377643747486932,0.3787222273439661,0.3809166845148854,0.3794608959757024,0.3820587782735805,0.3868968148006866,0.3883227430763697,0.390145017932325,0.3888660640920295,0.3851809954751131,0.3896604938271605,0.0,1.836699003207896,59.89372231591226,222.443072133594,333.8889074053764,fqhc2_100Compliance_baseline,26 -100000,95787,41312,387.90232495014976,7559,77.82893294497165,5932,61.40708029273283,2420,24.867675154248488,77.37208356525132,79.70912162745775,63.35007434272507,65.07885775567351,77.07100236288605,79.40812068284215,63.24061126684966,64.9720142444362,0.3010812023652676,301.0009446155948,0.1094630758754107,106.84351123731516,62.8122,44.20879919976933,65574.86924112875,46153.23498989354,214.14554,129.04774477815891,223009.51068516605,134168.85879937664,250.01522,118.3679318638268,258120.33992086613,121258.82152140836,4302.25244,1917.259554292907,4454705.523714074,1964813.4864782365,1457.85385,631.9363905360243,1509013.8327748026,646770.0424233185,2398.24032,989.9343247513742,2466831.3027863908,1002502.1839859904,0.38377,100000,0,285510,2980.6758745967613,0,0.0,0,0.0,17875,186.03777130508317,0,0.0,23509,242.5068119891008,2182707,0,78386,0,0,0,0,0,40,0.4175932015826782,0,0.0,1,0.0104398300395669,0,0.0,0.07559,0.1969669333194361,0.3201481677470565,0.0242,0.3201754385964912,0.6798245614035088,25.44343155161921,4.580335508347355,0.3285569790964261,0.2053270397842211,0.2245448415374241,0.2415711395819285,11.029983562607228,5.4504308562117245,25.735997663431974,13288.101723914806,66.68518404344158,14.167133107916255,21.906441064107128,14.889015123535154,15.722594747883049,0.5424814565070802,0.7627257799671593,0.6957414058491534,0.5825825825825826,0.1095603628750872,0.6981132075471698,0.9103260869565216,0.8479657387580299,0.7227722772277227,0.167235494880546,0.4930015552099533,0.6988235294117647,0.6477732793522267,0.5413022351797862,0.0947368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021979135014686,0.0045821337334252,0.0064946926183759,0.0089393646956044,0.0111156310383402,0.0131128848346636,0.0151158405447002,0.0172969773659611,0.0194367233485938,0.0216763893153208,0.023641897500538,0.0255544494504253,0.0275273680423497,0.0297055189456342,0.0317720579136245,0.033797257782875,0.0358769460086121,0.0380391384155889,0.0404401450525243,0.0424679070057991,0.0571434534431122,0.0715839678687975,0.0854710710878612,0.0988872426945749,0.111369813944668,0.1271565157677882,0.1405105814779097,0.1541201488569909,0.1661260722973838,0.1777623051791548,0.1914889039489678,0.2051728237608352,0.2172188596824845,0.2290489359143922,0.2400250747844448,0.2516916398108464,0.2630991823120601,0.2734488302285579,0.2832152372314495,0.29137988295789,0.3002996402003771,0.3083013660179641,0.3167076690164167,0.3238726218431015,0.3308679758564992,0.337908939683322,0.344136401788958,0.3501482546671587,0.3564203846402901,0.3619836020121202,0.3629385226584068,0.363939118707511,0.365130464249407,0.3656607217883894,0.366844425907168,0.3677518427518427,0.3678285033743549,0.3690554604136477,0.369639514314665,0.3702514617785271,0.3723572342186442,0.3732104918293191,0.3750578922992716,0.3762151725376619,0.3773908838109056,0.3797062610020756,0.38135031553468,0.3816099268215081,0.3821943084238166,0.383832287139868,0.3859099082484208,0.3868314969094329,0.3878070510372916,0.3893041535023503,0.387659736791913,0.3877917414721723,0.3864406779661017,0.3869035735675784,0.3824254037777169,0.3851711026615969,0.0,2.0731601377471343,63.47788984588088,219.54797449309797,350.8564839110831,fqhc2_100Compliance_baseline,27 -100000,95643,40966,383.20629842225776,7569,77.96702320086153,5883,60.8931129303765,2404,24.76919377267547,77.25911226955019,79.6575985317893,63.27736057920528,65.04683059072956,76.9629516746068,79.35865972315553,63.169531815083495,64.9404263663278,0.2961605949433874,298.9388086337783,0.1078287641217841,106.40422440175712,61.54148,43.32854706073712,64344.991269617225,45302.37138184407,209.5556,125.58490879475497,218493.54369896383,130697.58246265272,245.4688,116.7739179667398,252791.0981462313,119039.65315823426,4256.53295,1897.872969642999,4408918.478090399,1942810.1582374012,1420.76273,618.2217214997879,1469347.186934747,630246.5643066281,2370.44046,978.4365259651004,2443798.0406302605,993371.9359001986,0.38253,100000,0,279734,2924.7723304371466,0,0.0,0,0.0,17497,182.3029390546093,0,0.0,23123,237.9055445772299,2183592,0,78447,0,0,0,0,0,37,0.3868552847568562,0,0.0,1,0.0104555482366717,0,0.0,0.07569,0.1978668339738059,0.3176113092878848,0.02404,0.3128051070221554,0.6871948929778445,25.84732201476516,4.631429495949443,0.3270440251572327,0.2019377868434472,0.2325344212136665,0.2384837667856535,11.213100436134336,5.650176912368857,25.56661980066568,13380.52412554934,66.28664546997258,13.82872892819274,21.775132353497053,15.26652217277192,15.416262015510858,0.543940166581676,0.7592592592592593,0.7110187110187111,0.5767543859649122,0.1004989308624376,0.7020669992872416,0.9141274238227148,0.8739130434782608,0.7291666666666666,0.1462585034013605,0.4944196428571428,0.6916565900846433,0.6598360655737705,0.5361111111111111,0.0883678990081154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027045369366814,0.0047252557823543,0.0070539756003491,0.0093887172817428,0.0116587822371432,0.0137188601226244,0.0160796949242408,0.0184060353012035,0.0210282045777491,0.0231744017032775,0.0257440766068261,0.0278465155917897,0.0298791463101054,0.0318832219051641,0.0339521779960991,0.0361263906695893,0.038277858926148,0.0404517475113404,0.0424385525125079,0.0443063707348602,0.058573339464114,0.0734425405337467,0.086736461866409,0.0994219166254251,0.1116015798255433,0.1274200381275153,0.1408193395575099,0.1545592089841669,0.1673920249794155,0.179685150981487,0.1937394155781117,0.2072055477299816,0.2197895562381543,0.2315361607485236,0.2427961756045919,0.2542978988050287,0.2649649167962936,0.2750778394476783,0.2842078920726644,0.2928278382385051,0.3020497226026602,0.3096014832895231,0.3171348514710422,0.3244261032773473,0.3309783537106182,0.3381665223308178,0.3447201065781866,0.3508265413015151,0.3563862280507935,0.3613661354212206,0.3623347124198913,0.3640726347379922,0.3652123376991552,0.3661569826707441,0.3681595018560651,0.3682578854014036,0.3689519984700707,0.3698872466355851,0.3714659595716106,0.3715302747015677,0.373229742216523,0.374440576827449,0.3755667559417111,0.3755303625547199,0.3769842228611467,0.37769510885227,0.3783450805111455,0.3822216594384121,0.3829960373620152,0.3848280836739601,0.3883673845021167,0.3915051280674435,0.3883686859035607,0.3917652481179904,0.3907741752528594,0.3923731862333613,0.394577846630519,0.3940016433853738,0.3925021300766828,0.3939272872552936,0.0,2.3980738180077146,61.96731719180009,223.048102939945,345.40999954516946,fqhc2_100Compliance_baseline,28 -100000,95625,40508,380.559477124183,7454,76.9359477124183,5809,60.24575163398693,2381,24.554248366013077,77.28554750318864,79.71707395472461,63.27381344368565,65.07188264748146,76.99544588623061,79.42497989269985,63.168590211965714,64.96843278802127,0.2901016169580259,292.0940620247592,0.1052232317199326,103.44985946018426,61.45898,43.218945888746,64270.82875816994,45196.28328234876,210.05089,126.16236068506626,219138.45751633987,131411.89091248764,243.81933,115.75802873132268,251944.1464052288,118762.58279179416,4237.5078,1886.147524478404,4393603.670588235,1934926.873983552,1438.60509,620.8780438065821,1490653.1555555556,635626.4137274714,2354.77386,970.4392638613316,2429761.3803921565,985721.8255387936,0.3771,100000,0,279359,2921.4013071895424,0,0.0,0,0.0,17586,183.362091503268,0,0.0,22942,236.86274509803923,2186329,0,78446,0,0,0,0,0,33,0.3450980392156862,0,0.0,0,0.0,0,0.0,0.07454,0.1976664014850172,0.3194258116447545,0.02381,0.3194762267988812,0.6805237732011188,25.51016429381936,4.648918091669464,0.3346531244620416,0.1940092959201239,0.2267171630228955,0.2446204165949388,11.066186434024488,5.469477738748075,25.239133664415046,13126.982203529817,65.35433959045054,13.125092259848394,22.054072249957525,14.588924270796303,15.586250809848313,0.5427784472370459,0.7559893522626442,0.6862139917695473,0.6150341685649203,0.1104855735397607,0.7057971014492753,0.9129129129129128,0.8431771894093686,0.7753623188405797,0.15,0.4919846466470987,0.690176322418136,0.6331727460426704,0.5725264169068204,0.1007887817703768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104985812728,0.004402113826086,0.0066807456443162,0.0089749453676881,0.0110792333048467,0.0132628426489013,0.0154848976344217,0.0175813174239947,0.0197911446134334,0.0218756080825046,0.0239123521506755,0.0260891903000411,0.0283167440376321,0.0303467612254154,0.032411279414346,0.0344856120316928,0.0364977875418398,0.0383640744433366,0.040572891729292,0.042161260039637,0.056855243351731,0.0703589206182866,0.0835093471202042,0.0962198950673212,0.1086382457326347,0.1232181814330798,0.1376914003974115,0.1508448376952188,0.1638702221461284,0.1755307718755372,0.1891731497566818,0.2025369978858351,0.2155381916064559,0.2272797002038088,0.2378852196923755,0.249073149073149,0.2601817795615379,0.2701255664014067,0.2789862484373224,0.2886723228617289,0.2968831439591369,0.3046162135569794,0.3126979044366172,0.3202099422298555,0.3266814396337603,0.3333292166331155,0.3397884234539119,0.3445668528294188,0.3508646655587868,0.3562880981659989,0.3578192020286492,0.3586200245243245,0.3602423078552366,0.3614897654676884,0.3619493014804444,0.3621463714637146,0.3629901726934453,0.3640577319587629,0.3653031472429465,0.3659399468428992,0.3673523157122156,0.3679617619642609,0.3697200910547171,0.3710163168067604,0.3717985889629844,0.372489539748954,0.3733565296751561,0.3763786475074053,0.378230529158046,0.3784020372433551,0.3798818735405888,0.3827398139236445,0.3819175297032848,0.3860711002145265,0.3892992424242424,0.3911645629911884,0.3907815631262525,0.3925729442970822,0.3891639163916391,0.3847611827141774,0.0,1.9212514650138768,61.4357541849079,225.6087422608538,333.1234781816016,fqhc2_100Compliance_baseline,29 -100000,95805,41081,385.2304159490632,7422,76.4260737957309,5715,59.04702259798549,2414,24.82125150044361,77.35864855579545,79.66291403794303,63.35358995694328,65.05402257215066,77.07350059636188,79.37698431447413,63.250195270330615,64.95280482566628,0.2851479594335728,285.92972346889667,0.1033946866126598,101.2177464843802,62.11634,43.71335275279779,64836.2194039977,45627.423154112825,209.8082,125.79172557231324,218379.7609728093,130685.63758925842,241.43384,114.29169104516018,247417.9844475758,115891.4662854096,4161.11265,1842.1753920061824,4302816.283074996,1882779.4881089388,1390.48738,598.8984740708324,1434547.9776629612,608476.1388276211,2384.55448,974.962901590592,2454015.2810396114,989228.8644673168,0.38219,100000,0,282347,2947.100881999896,0,0.0,0,0.0,17445,181.43103178330983,0,0.0,22682,232.28432754031624,2188067,0,78574,0,0,0,0,0,43,0.4383904806638484,0,0.0,0,0.0,0,0.0,0.07422,0.1941966037834585,0.3252492589598491,0.02414,0.3062523876225646,0.6937476123774354,26.029632980572995,4.639220635635986,0.3268591426071741,0.1956255468066491,0.2325459317585302,0.2449693788276465,10.918410267593496,5.410425436230158,25.514784470002777,13243.700488074885,64.11903277276755,13.048289002410916,21.01725664960794,14.634493496891592,15.418993623857096,0.5308836395450569,0.7450805008944544,0.6948608137044968,0.5605718585402558,0.1128571428571428,0.6810408921933085,0.9020771513353116,0.8660714285714286,0.6666666666666666,0.1463414634146341,0.4846681922196796,0.677336747759283,0.6408450704225352,0.5331439393939394,0.1042228212039532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023986397587191,0.0047807635041375,0.00696493202348,0.0094168264888834,0.0115416658200069,0.0137531153044097,0.0158802917328769,0.0179939408158477,0.0200539402978975,0.0222897358783935,0.0242953130121271,0.026411881756826,0.028489238197976,0.0307065385169482,0.0326122819317853,0.0347024983733203,0.0367530653422318,0.0385544416914608,0.0407478576992988,0.0426513148306231,0.0580454014354865,0.0719072461343843,0.0852549052490357,0.0980505491040933,0.1102223627357993,0.1257450226148708,0.1389330619341433,0.1521949559094148,0.1645760160561966,0.1760203261184189,0.1901927010442458,0.2039502861036896,0.2163478790383088,0.2280404296746811,0.2396706042957956,0.2507592046638441,0.2618896143758022,0.2720727207272073,0.2823277084917329,0.2919177799674603,0.2999618015765531,0.3090404608035965,0.3167207523035744,0.3239347093462539,0.330901130974097,0.3370304114490161,0.3426693376737198,0.3481056169475989,0.3532843308832108,0.3585304612131624,0.3595620752885341,0.3614203825166731,0.3629083423801937,0.3636350487430935,0.3653559947612811,0.3659680807027765,0.3660219898776753,0.3675257307533964,0.3686413062120536,0.3696393937217154,0.3702231099721113,0.3713831478537361,0.3718997806647545,0.3723392299220032,0.3727890827264148,0.3729232386961094,0.3738462865522298,0.3759966962101718,0.3777178732309438,0.3783903242656808,0.3783311891196471,0.3809446955024747,0.3834935999490543,0.3861194837313548,0.3896940418679549,0.394094535063698,0.3952697480290617,0.4011113397818481,0.4071670428893905,0.4041450777202072,0.0,2.3201885502401884,59.44035631978929,215.885336224552,336.16191609115776,fqhc2_100Compliance_baseline,30 -100000,95854,40872,382.1332443090533,7523,77.31550065724957,5800,59.85144073278111,2373,24.35996411208713,77.41454581429173,79.70239431240039,63.37712166936033,65.0677613599726,77.12272320427824,79.40948491812654,63.27125281901868,64.96394744533474,0.2918226100134831,292.909394273849,0.1058688503416505,103.81391463785404,62.36472,43.92858454625152,65062.1987606151,45828.63995894957,212.55192,127.78431091863844,221104.773927014,132670.6876276821,248.27771,117.91670277991254,254254.4181776452,119484.19976534418,4229.32157,1884.2248262379253,4373208.901036994,1926679.028770761,1428.17677,613.2682197668076,1477194.6606297076,627038.6418582497,2339.4444,965.1912709588086,2405029.670123312,978395.8432039544,0.38032,100000,0,283476,2957.3726709370503,0,0.0,0,0.0,17701,183.9985811755378,0,0.0,23330,238.6024579047301,2185638,0,78492,0,0,0,0,0,45,0.4694639764642059,0,0.0,0,0.0,0,0.0,0.07523,0.1978071098022717,0.3154326731357171,0.02373,0.3093852770048065,0.6906147229951936,25.585595389556914,4.604829616879004,0.333448275862069,0.1953448275862069,0.2325862068965517,0.2386206896551724,11.30886672778464,5.762167796290133,25.09415316604274,13203.1817052624,65.26843003086172,13.32242226807963,21.7161023445347,15.014494853736544,15.215410564510844,0.5510344827586207,0.7846425419240953,0.688728024819028,0.5989621942179392,0.120664739884393,0.7056367432150313,0.9105691056910568,0.864406779661017,0.749185667752443,0.1384083044982699,0.50011460004584,0.7238219895287958,0.6320109439124487,0.5547024952015355,0.1159817351598173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023991496684719,0.004680613950661,0.0070474664611578,0.0090755893042048,0.0111393434292102,0.0137771039591367,0.0161267318663406,0.0181157941980496,0.0202153305548745,0.0226763631900334,0.0248294511707946,0.0268238142130313,0.0289451511477363,0.0310132575757575,0.033208582062623,0.0351266770638601,0.0374213706340009,0.0394010052334317,0.0415031661995224,0.0433547957602171,0.0584518496892855,0.0724206038185409,0.0857846218311334,0.0984985300293994,0.1104711159783501,0.1259769338008533,0.1397065833377469,0.1529860660877698,0.1653296351610838,0.1768309006992707,0.1908629332415395,0.2041601798996713,0.2164643753599409,0.2283257206547632,0.2392518023562511,0.2502379213420977,0.2613320844344829,0.2715533227688054,0.2804496268233479,0.2898844493306307,0.2984000647840724,0.3059961632041924,0.3144192651322407,0.3216092450070728,0.3285354794004304,0.3347187449897019,0.3404804248177742,0.3467043602281988,0.3518900611204111,0.3570106309832337,0.3582274725571109,0.3593784439056645,0.360054156206809,0.3615559316639905,0.3629169022046354,0.3628043171644079,0.3634622082897945,0.3648055979894545,0.3653503969340268,0.366062014118488,0.3669836625213362,0.3674876652069669,0.368379048179107,0.3699867733763759,0.3705125419473214,0.3721064057963433,0.3745461822132014,0.3752241905541046,0.376025925534538,0.3778656442207844,0.3799306062819576,0.3821679812406736,0.3826935179358087,0.3864136622390892,0.3883878241262683,0.396883920076118,0.3965144972239358,0.403123073762071,0.4058171745152354,0.4049268668206313,0.0,2.5645133027686384,63.34616665482507,214.38124009824995,336.11611221656466,fqhc2_100Compliance_baseline,31 -100000,95715,40787,382.5941597450765,7556,77.65762942067596,5862,60.701039544481006,2404,24.72966619652092,77.36002699221102,79.7314424692749,63.33690834044432,65.08825549784916,77.06591731486039,79.4365488848324,63.22833353608179,64.98197153764241,0.2941096773506331,294.8935844424909,0.1085748043625329,106.28396020675268,62.51036,43.96986505995159,65308.84396385102,45938.32216470939,212.24727,127.23376472945466,221145.47354124225,132326.05623930905,242.84225,115.38615588836642,250462.4666980097,117989.87933631006,4271.2785,1902.735626310981,4426004.732800501,1951769.2002681503,1428.31065,615.7453649327921,1480758.3868777098,631866.0732408486,2380.03232,991.8003881175472,2451431.7923000576,1005972.9893450337,0.38037,100000,0,284138,2968.583816538682,0,0.0,0,0.0,17699,184.34937052708565,0,0.0,22812,235.198244789218,2185268,0,78387,0,0,0,0,0,48,0.4701457451810061,0,0.0,0,0.0,0,0.0,0.07556,0.1986486841759339,0.3181577554261514,0.02404,0.3071014857718459,0.6928985142281541,25.565216338715317,4.621113926362837,0.3288979870351416,0.1948140566359604,0.2328556806550665,0.2434322756738314,10.97018894414686,5.408004470426345,25.55717878493037,13185.077622921315,65.59898473879895,13.101944030062247,21.63687961516894,15.116236070258624,15.743925023309146,0.5341180484476288,0.7478108581436077,0.6945020746887967,0.5772893772893772,0.1051156271899089,0.6768901569186876,0.909375,0.8670886075949367,0.7278911564625851,0.1050955414012738,0.489237668161435,0.6849148418491484,0.6382393397524071,0.5359477124183006,0.105121293800539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024105903920754,0.0047542296424697,0.0069715758602843,0.0090412239175928,0.0111985841572073,0.0134719563357908,0.0154841997961264,0.0176570250464389,0.0195246613851265,0.0216732529331067,0.0239906497980274,0.026159089975771,0.0281562683175138,0.0302718180600904,0.0321605447791993,0.0340253510059758,0.0362278302668655,0.0384351905671344,0.0405238139815479,0.0426179287061446,0.0573018923096202,0.0715571557155715,0.0848570679255179,0.0970666498385553,0.1099127024291498,0.1260611699034771,0.140024822582185,0.1530438484461473,0.1654829166177146,0.1776631233440956,0.191505866382236,0.2040409943400106,0.2166095983477363,0.2284018105088229,0.2393712393712393,0.2504098905481455,0.2612242620389487,0.2707536557930258,0.2803103342672096,0.2895285439384221,0.2978585559424783,0.3060119513992024,0.314594773717099,0.3212060205157703,0.3279933878672225,0.3339744538146668,0.3404897601302686,0.3458836108141133,0.3519219304839169,0.3576288428256245,0.3587952034746482,0.3594995724019973,0.3611009070615162,0.3616897896461242,0.3628356829900748,0.3629537497696701,0.3631360233472909,0.3640964964175376,0.364638614030883,0.3647749230659128,0.3665081840903538,0.3681988464054231,0.3715436579532581,0.3721424893088239,0.3738432620011567,0.3754935543759642,0.3763212925033659,0.3771977064656128,0.3790371077859139,0.3811301067501405,0.3839520405810468,0.3850704528342476,0.3876721894242366,0.3910103726469458,0.3859101654846336,0.3865184653997848,0.391606233605925,0.3874334834220221,0.3908812899638588,0.3799922450562233,0.0,2.1157423629036,62.03351325341398,213.8271808074359,349.631260221895,fqhc2_100Compliance_baseline,32 -100000,95746,40993,384.2144841559961,7554,77.63248595241578,5825,60.2113926430347,2357,24.199444363211,77.33346816806463,79.69597388109769,63.32120940122799,65.0705702265657,77.04947850040485,79.41475270989108,63.21802011965122,64.97167367069909,0.2839896676597817,281.22117120661017,0.1031892815767676,98.8965558666166,62.72596,44.12663706058606,65512.87782257222,46087.18595093901,211.33225,126.51883740906617,220033.1502099305,131451.47307361785,242.79686,115.18571750781312,250187.2454201742,117612.7644375338,4242.6276,1874.5789316058945,4386831.690096714,1913570.490261625,1396.26993,597.8395554815964,1444263.4783698537,610358.7987817737,2324.71314,950.5057007984874,2388334.468280659,958077.4172068418,0.38216,100000,0,285118,2977.8580828441923,0,0.0,0,0.0,17637,183.5481377812128,0,0.0,22793,234.6938775510204,2185253,0,78386,0,0,0,0,0,43,0.4386606228980845,0,0.0,0,0.0,0,0.0,0.07554,0.1976658990998534,0.3120201217897802,0.02357,0.3096465853351779,0.690353414664822,25.754421434008748,4.601928003584285,0.3290987124463519,0.2015450643776824,0.2305579399141631,0.2387982832618025,10.983462684725552,5.476223449424924,24.834672193631047,13286.693341862136,65.10464381149562,13.561960834106763,21.55900371127359,14.776245919895109,15.207433346220157,0.5369957081545065,0.7495741056218058,0.6906624934793949,0.5740878629932986,0.1099928109273903,0.7048327137546468,0.8879310344827587,0.8631346578366446,0.7340425531914894,0.1564885496183206,0.4866071428571428,0.6912832929782082,0.6372950819672131,0.5315739868049011,0.0992028343666961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022290896195349,0.0046647466839735,0.0070336763899884,0.0091853116299863,0.0113606313948048,0.0135018175523628,0.015434490070546,0.0179318650364352,0.0200318874943788,0.0220588987952053,0.024214961606676,0.0263744160977362,0.028547041946464,0.0308132768972513,0.0324374516378643,0.0344193161615744,0.0363662721464591,0.0387892120746728,0.0409847996506622,0.0430276643613032,0.0576260569996868,0.0717582659116837,0.0848391361833406,0.0983497933297573,0.1110747845895864,0.1259979907999788,0.1392997347480106,0.1526311307901907,0.1646088776861622,0.1760447833220731,0.1908475890894988,0.2039968406132672,0.2167832167832167,0.2292548479181022,0.2407568340575326,0.2523117130485819,0.2633764610009042,0.2731447092983996,0.2828914514005539,0.2915555046659415,0.3006534435898919,0.3087566227295587,0.3171034727563154,0.3245098979053827,0.3312132834878866,0.337203003816324,0.3438082256874539,0.3498525223759153,0.3551848208738869,0.3612409240924092,0.3626461032395486,0.3634624120699861,0.3644181292732784,0.3659447565000868,0.3670995413117293,0.3675197909461225,0.3680297397769517,0.369224687453674,0.3698890812775368,0.3714357402727745,0.3728657389996239,0.3738419726636116,0.3757403906742281,0.3762596225060035,0.3765963622291021,0.3768988173455979,0.377011625909169,0.3793496501282335,0.3798957927196682,0.3811065803150236,0.3829709147628223,0.3840296026170429,0.3825854156042835,0.3846272692159135,0.3862378316472609,0.3855275895450145,0.391425908667288,0.3880597014925373,0.3953753925206965,0.3939274447949527,0.0,2.4748716656220875,59.1672505046615,219.63565797552832,345.44781400332863,fqhc2_100Compliance_baseline,33 -100000,95788,40801,383.0333653484779,7435,76.28304171712531,5910,60.99929009896856,2452,25.201486616277613,77.34149214859087,79.68136366816954,63.33904717832892,65.07257215441882,77.0476290698845,79.38693918173733,63.2319398206708,64.96763348498914,0.29386307870638,294.42448643220587,0.1071073576581227,104.93866942968566,62.77238,44.11393249081394,65532.61368856223,46053.7149651459,211.87589,127.11932502225058,220478.84912515135,132003.7287112224,246.25919,117.4765800384926,252409.53981709608,119006.53880390173,4299.93041,1921.6026826317325,4444843.654737545,1962555.1836317533,1460.49297,629.6217473964982,1507158.0156178228,639751.6363182212,2419.05842,998.4047465164324,2488583.4551300798,1011559.9240556118,0.38163,100000,0,285329,2978.75516766192,0,0.0,0,0.0,17714,184.18799849668017,0,0.0,23222,237.77508664968477,2186511,0,78470,0,0,0,0,0,33,0.3445107946715663,0,0.0,0,0.0,0,0.0,0.07435,0.1948222099939732,0.3297915265635507,0.02452,0.3218054672600127,0.6781945327399873,25.079195303092323,4.606827580306801,0.3245346869712352,0.2015228426395939,0.2304568527918781,0.2434856175972927,11.0674200483816,5.615538261897649,26.07342519551599,13188.046990957837,66.54172436603682,13.942240075848062,21.57206990882902,15.25246432787355,15.77495005348618,0.5346869712351946,0.7598656591099916,0.6913451511991658,0.552863436123348,0.1223071577484364,0.7067615658362989,0.9023746701846964,0.867579908675799,0.7290322580645161,0.1618705035971223,0.4810210876803552,0.6933497536945813,0.6391891891891892,0.5009505703422054,0.1128337639965546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0043490161491438,0.0066162666801968,0.0090944193797504,0.0111105458615251,0.0131810819895895,0.0152986292428198,0.0174514188851106,0.0196230814066446,0.0219437020653498,0.0242697043956156,0.0264630677442211,0.0285637876590448,0.0306473545409592,0.0325746006851293,0.0345536858643072,0.0364583333333333,0.0383087312372278,0.0401508775211197,0.0420570476785342,0.0561943117083655,0.070126095230129,0.0829822906842712,0.0959901645545678,0.1082997871309039,0.1248520209707424,0.1387016070898528,0.1525225455164199,0.1646938274503944,0.1765632703809299,0.1903398387461382,0.204201671586277,0.2164843164310781,0.2279915627493196,0.2391194387631677,0.249786861831106,0.2600561897966464,0.2700074122324296,0.2790149747400376,0.2881059384541494,0.2964199099203141,0.305112455333162,0.3126337317208686,0.3206498964332324,0.3278600987852089,0.3344456484263409,0.3408317911268944,0.3470458906807986,0.3529959639863396,0.358952057141351,0.3606566207463068,0.3617390346650513,0.3632669761142228,0.3648380604902344,0.3660091770454681,0.3662036681758883,0.3661430454740386,0.3676836605185515,0.3689857012891154,0.3691796804882427,0.3702195834511356,0.3722244329486669,0.3736310114161514,0.3747379809317736,0.3742597806038248,0.3750920955688875,0.3765783466728307,0.3781251998209604,0.3789951076670357,0.381638418079096,0.385191386447142,0.3866247561239974,0.3866151866151866,0.3867740170405691,0.385453843927848,0.3878714372346877,0.3875137947343528,0.3973204940339125,0.39920724801812,0.395954881369117,0.0,2.73985826285474,61.31591158991277,225.313218147736,347.1357449582945,fqhc2_100Compliance_baseline,34 -100000,95703,40929,384.157236450268,7452,76.65381440498207,5847,60.52056884319196,2435,25.1089307545218,77.3419109081298,79.71234090160978,63.33255108723839,65.08167397389873,77.0474575422636,79.41516544091473,63.2251775413834,64.97582246497296,0.2944533658662038,297.1754606950441,0.1073735458549833,105.85150892576678,62.46328,43.91053339700823,65267.83904370814,45882.08666082383,210.43748,126.14970180315456,219311.6412233681,131239.3987682252,245.96039,116.39425065205414,253393.4045954672,118823.216111229,4239.08173,1894.285862803349,4390031.242489786,1939955.626054928,1431.55523,623.477073761049,1475794.8758137154,631434.556660762,2406.52662,996.225875699404,2482891.048347492,1014146.4745791808,0.38185,100000,0,283924,2966.719956532188,0,0.0,0,0.0,17591,183.21264746141708,0,0.0,23117,237.8713310972488,2186390,0,78492,0,0,0,0,0,38,0.3970617431010522,0,0.0,0,0.0,0,0.0,0.07452,0.1951551656409585,0.3267579173376275,0.02435,0.3133870349060222,0.6866129650939777,25.20811770033685,4.661700865291021,0.3341884727210535,0.198392337951086,0.2211390456644433,0.2462801436634171,11.233731281613288,5.518007051062825,26.014101709308708,13196.200964646438,66.02308979931281,13.50448597563833,22.13835723668956,14.398563088434956,15.981683498549964,0.538737814263725,0.7508620689655172,0.6908904810644831,0.5839133797370456,0.1208333333333333,0.6919263456090652,0.9002849002849003,0.859504132231405,0.7210144927536232,0.1528239202657807,0.4899661781285231,0.6860321384425216,0.6353741496598639,0.5467059980334317,0.112379280070237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050226830848,0.0042262085740346,0.0062690200852099,0.0085723571950922,0.0110424207914751,0.0130834079986967,0.0153011814836335,0.0173103617212378,0.0194705641864268,0.0216872895493669,0.0238441824705279,0.0261528509379909,0.0281456953642384,0.0303411186548942,0.03246445008565,0.0346203545769369,0.0364655074204873,0.0385333859150252,0.0406775431263062,0.0426857863417989,0.0569841037745702,0.0708363864754527,0.0844953676015402,0.0971128056797265,0.1086919831223628,0.1243757406466903,0.1379935920558467,0.1507718513786862,0.1634296946776916,0.1748482052822416,0.1890899299946149,0.2023634317375119,0.2149507298079223,0.2271668653028199,0.2385157650474546,0.2496678917770004,0.2607585337838591,0.2711628168380824,0.2801610707803992,0.2894911529745691,0.2981362148154147,0.306437265917603,0.3148117452048307,0.3222224886693364,0.3290212765957447,0.3352258000814583,0.3424906587757353,0.3484097769739272,0.3538722808473126,0.3589598046333575,0.3597481223790839,0.360778319424936,0.3619122764995139,0.3632617057581629,0.364956120779414,0.3656281622765324,0.3659305993690852,0.3674120880025012,0.3679311586128871,0.3695819808833814,0.3706555710358851,0.37186848117612,0.3738154034487853,0.3734304199824162,0.3752242424242424,0.3760416392839305,0.3787242608995744,0.381266658205356,0.3835066917533459,0.3863416988416988,0.3885077581840784,0.3884053298946916,0.3927068723702664,0.392029657089898,0.3900458540313335,0.3903556359252562,0.3900962434026699,0.3928051569972967,0.3856858846918489,0.3946135831381733,0.0,2.2462671713923763,62.600622004769946,227.1478727016372,333.761811916053,fqhc2_100Compliance_baseline,35 -100000,95706,40671,381.7942448749295,7450,76.5469249576829,5796,59.97534114893528,2357,24.240904436503456,77.33810060160408,79.72131634240824,63.31256206328344,65.07524636650851,77.05142888280304,79.43411046951807,63.206307157449416,64.97154211038361,0.2866717188010454,287.2058728901692,0.1062549058340209,103.70425612489952,62.5009,43.88896650408454,65305.10103859737,45858.113915621325,209.26951,126.7260209042205,218056.66311412037,131809.73074229463,246.47189,117.79965396383848,253671.33722023695,120157.06006612856,4213.09324,1897.4874965177687,4363082.5967024015,1943583.564789845,1393.48701,610.5414015299596,1443554.6047269762,625501.3779014528,2331.9555,973.231656437844,2400710.613754624,987067.3635683858,0.37894,100000,0,284095,2968.413683572608,0,0.0,0,0.0,17555,182.7889578500825,0,0.0,23149,238.0519507658872,2182227,0,78371,0,0,0,0,0,34,0.3552546339832403,0,0.0,1,0.0104486657053894,0,0.0,0.0745,0.1966010450203198,0.3163758389261745,0.02357,0.3179799517827686,0.6820200482172313,25.232311047928174,4.5647567667775215,0.3393719806763285,0.1908212560386473,0.2306763285024154,0.2391304347826087,11.177409431822674,5.528344515267287,25.107542869959428,13157.986335177042,65.4186219755745,12.78905465358502,22.34277156369984,14.9995773101879,15.287218448101724,0.5467563837129055,0.7613019891500904,0.7092018301982714,0.5878833208676141,0.1053391053391053,0.7014613778705637,0.9072463768115944,0.8850102669404517,0.7467105263157895,0.1229235880398671,0.4957559073181922,0.695137976346912,0.6513513513513514,0.5411423039690223,0.1004608294930875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023109201110863,0.0043720835869344,0.0065181635429569,0.008862329003801,0.0109990740834952,0.0135364996587865,0.0155233257858556,0.017710684629291,0.0200746535767244,0.0223007218553217,0.024395246054615,0.0264203641143068,0.0283370005552242,0.0306678337881674,0.0325888481972455,0.0345885951677242,0.0363647659380597,0.0382336767620174,0.04007984779015,0.042161080957193,0.0568041775456919,0.0706120056112728,0.0840110391722719,0.0973893470212049,0.1092571693755075,0.1248109005892496,0.1383061135695563,0.1513870400937117,0.1633571306429548,0.17427176653613,0.1888502192675279,0.2018839324382849,0.2145547572392771,0.2262763337893296,0.2372340308430658,0.2485755459483427,0.2591458987276728,0.2694100427831569,0.2793297358704913,0.2886024563375113,0.2968141797961075,0.3046564751361799,0.312742960083436,0.3198939564789712,0.3268741865245897,0.333765720356781,0.3400622286904373,0.3464031438997627,0.3517922495911957,0.3582590761257569,0.3602335396356674,0.360700941666322,0.3620071684587813,0.3632048164872062,0.3642020334340622,0.3639880860994258,0.3641194853816012,0.3655294930420765,0.3666398342096699,0.367604701504553,0.3686623820799037,0.3697435694185724,0.3717050594298937,0.3736337876130077,0.3766669887901043,0.3785645333820345,0.3795357866788477,0.3808502586098146,0.3828201883874595,0.3844718771087206,0.3863997457896409,0.3858813568291263,0.3869815812554817,0.3887545344619105,0.3885932978624101,0.3896902340978955,0.3884586180713743,0.3853451756156641,0.3818380743982494,0.3789152024446142,0.0,2.2428942347221046,63.58614770154063,220.67298808170952,329.86295848586826,fqhc2_100Compliance_baseline,36 -100000,95642,41169,386.15880052696514,7487,76.98500658706426,5843,60.423245017879175,2289,23.51477384412706,77.27782633283482,79.68647051065301,63.2892740309558,65.07118469717885,77.00715547340646,79.41732968063769,63.19106088364759,64.97616799306996,0.270670859428364,269.1408300153171,0.0982131473082077,95.01670410888607,61.59494,43.40902217470964,64401.55998410739,45386.98707127585,210.42311,125.94165410431172,219355.8687605864,131024.95149025708,250.40859,118.92131464788378,257111.5304991531,120775.29314258804,4224.75397,1869.245119181081,4373264.172643818,1910502.156049364,1432.04164,615.6931582012224,1481369.335647519,627862.8692766541,2267.2956,924.6591554082678,2331896.049852575,935456.5202141776,0.38377,100000,0,279977,2927.343635641246,0,0.0,0,0.0,17563,182.9426402626461,0,0.0,23500,241.02381798791328,2187535,0,78479,0,0,0,0,0,44,0.4600489324773635,0,0.0,1,0.0104556575563037,0,0.0,0.07487,0.1950908095994997,0.3057299318819286,0.02289,0.3108262469856581,0.6891737530143419,25.56559545063372,4.5638501309506045,0.334074961492384,0.2033202122197501,0.2281362313879856,0.2344685948998802,11.174932599489583,5.565227489924309,24.070977518832244,13395.445129169222,65.57254294158567,13.716650533732258,22.1135141318888,14.74365731089128,14.998720965073332,0.5546808146500085,0.7794612794612794,0.6972336065573771,0.5858964741185296,0.1262773722627737,0.7461482024944974,0.9367469879518072,0.903688524590164,0.7568493150684932,0.1752988047808765,0.4964285714285714,0.7184579439252337,0.6284153005464481,0.5379442843419788,0.1152815013404825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021684940113085,0.0048271945481096,0.0070046494629768,0.0091567832352612,0.0111908031944656,0.0135695439125518,0.0159510453850076,0.0181192356011316,0.0204067019905484,0.02243369766751,0.0246564102564102,0.0268707308304658,0.0287187191307211,0.0307649496011378,0.0331719303317193,0.0353419386868561,0.0373974135787117,0.0394770997518404,0.0413739997294456,0.0433640221459925,0.0578793926791293,0.072071883378016,0.0858060520819119,0.0989613478274595,0.111333875001319,0.1266220707466288,0.1406135516549329,0.1541493554916373,0.1666203268029771,0.1780580752509258,0.1923495501319972,0.205885537342197,0.2175966739587074,0.2294452347083926,0.2406979304271246,0.2525127159495129,0.262875201000536,0.2735722725482473,0.2840507995596463,0.2933849289034415,0.3022922304720931,0.3112986952251789,0.3192848775985896,0.3267246029367695,0.3334953816237239,0.3404189696012633,0.3461933512037478,0.352362881556662,0.3586251621271076,0.3642656169504511,0.3653477638930123,0.3665539374698047,0.3680765642229071,0.3690062039775033,0.3706266591105676,0.3717540703842074,0.3718784794019405,0.373698024132979,0.3754229282954057,0.3758659057463838,0.376667858554303,0.3765699523052464,0.3780824225577526,0.3789237164363555,0.3805874531608848,0.3820348304307974,0.3827050615830725,0.3851359938993391,0.3857824631384001,0.3858737257746081,0.3909694677612766,0.3928035178035178,0.3944843362775624,0.3982854494902688,0.3948722836446817,0.4023711589644326,0.3999062353492733,0.4008764607679466,0.405788876276958,0.4119484576337368,0.0,2.603913548863096,59.76842628562791,221.1386127587559,346.71907828978146,fqhc2_100Compliance_baseline,37 -100000,95831,40782,382.3919191075957,7504,77.33405682920976,5798,60.043201051851696,2376,24.543206269370035,77.39792083527668,79.70407029730892,63.37134666233783,65.07257046679872,77.10717719074876,79.40704930582268,63.26613100548271,64.96660656104781,0.2907436445279217,297.0209914862352,0.1052156568551154,105.96390575091164,63.74852,44.84577655500995,66521.81444417778,46796.732325667006,211.40346,127.12698220080593,220152.14283478208,132209.32913233287,244.83833,116.20396240288336,252540.9105613006,118935.84627024288,4216.78403,1878.079387943328,4371774.79103839,1931327.918881497,1398.35772,609.0476531228152,1448008.222808903,624360.2729000166,2342.58964,972.1947383048464,2421611.5244545084,995476.1576077098,0.37988,100000,0,289766,3023.7188383717166,0,0.0,0,0.0,17710,184.32448790057492,0,0.0,23041,237.47012970750592,2180875,0,78158,0,0,0,0,0,31,0.3234861370537717,0,0.0,2,0.0208700733583078,0,0.0,0.07504,0.1975360640202169,0.3166311300639658,0.02376,0.3124130077185879,0.6875869922814121,25.596485286701512,4.478766717175478,0.3344256640220766,0.2009313556398758,0.22697481890307,0.2376681614349775,10.814942703622831,5.423965373510808,25.41606689515114,13161.625022617509,65.09202719492555,13.464374901521694,21.658328341286275,14.597267258155476,15.3720566939621,0.5355294929285961,0.7467811158798283,0.6879834966477566,0.5699088145896657,0.1095791001451378,0.6919191919191919,0.904225352112676,0.8633257403189066,0.7331081081081081,0.1418918918918918,0.4864007252946509,0.6777777777777778,0.6366666666666667,0.5225490196078432,0.1007393715341959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021665181825544,0.004701638480479,0.0066839089203306,0.008793395814506,0.0109181847755367,0.0131586981742687,0.0154775733121395,0.0178525886253506,0.0198929235547745,0.0219250680362587,0.0239744272775705,0.0261816092661557,0.0281405073305045,0.0302135322871108,0.032209521649952,0.0343820015900385,0.0362500258633175,0.0381928609924961,0.0404033061970427,0.0423674132045624,0.0573398562591924,0.0713381791559901,0.0847933901628343,0.0976745652950947,0.1097854041064125,0.1259896620614568,0.1399020314686797,0.1529767352759626,0.1652032728748745,0.1764850980770674,0.1904587551152272,0.2035088098817777,0.215799886941775,0.2274297583907292,0.2380323974794629,0.2496263575675047,0.2600559811760508,0.2695218070812579,0.2790766230526769,0.2886140256530544,0.2975560128557886,0.3054838219656691,0.31251995978473,0.3192979515605732,0.3262952362472106,0.3325580822996652,0.3390933853112427,0.3452315903170468,0.3513226691515245,0.3564095467784235,0.3578926147436328,0.3598087176386522,0.3611803297151947,0.3624337478156637,0.3634918512575953,0.3640384438798935,0.3639874028707528,0.3645995893223819,0.3653691504833604,0.3671185287323388,0.3680363752513011,0.3696100190234622,0.3710477632021527,0.3722442184828579,0.3731314354936402,0.3748457073824093,0.3758217045323492,0.3775285909974196,0.3793494839144468,0.3803680981595092,0.3822470457902511,0.3885322832946761,0.3884413757831479,0.3879650398329337,0.3884954058192955,0.3927496085752138,0.3924070328302474,0.3964847741671776,0.4014900662251656,0.4071373752877973,0.0,1.8243838842890905,61.655112980239856,220.0511646423887,336.6915562440003,fqhc2_100Compliance_baseline,38 -100000,95561,40541,379.8306840656753,7397,76.39099632695346,5707,59.21871893345611,2336,24.057931582967942,77.19945181010942,79.67026635066972,63.224607941291474,65.05357074075653,76.91080231687978,79.3810890491561,63.11935128302135,64.95120955634212,0.2886494932296415,289.1773015136181,0.1052566582701217,102.36118441440568,62.39684,43.94216129960938,65295.29829114388,45983.36277310763,209.55582,126.2804303547975,218811.38749071275,131667.68907273625,242.25172,115.3143477942167,250998.0431347516,118674.7369733152,4170.11964,1862.591500577178,4326602.243593098,1911884.796702816,1401.51976,604.0099389304291,1451686.5457665783,617139.2766527332,2311.10736,962.7594971724948,2381657.3078975733,974351.3524373136,0.37749,100000,0,283622,2967.9681041429035,0,0.0,0,0.0,17543,183.0663136635238,0,0.0,22774,235.78656564916648,2177605,0,78117,0,0,0,0,0,32,0.3348646414332206,0,0.0,0,0.0,0,0.0,0.07397,0.1959522106545868,0.3158037042044072,0.02336,0.3156205878577846,0.6843794121422154,25.455854880956988,4.598568616727613,0.3301209041527948,0.1913439635535307,0.2333975819169441,0.2451375503767303,11.056671149314193,5.48567928033989,25.0985887879026,13150.550563444254,64.45907519451126,12.665375444220563,21.25902501546653,14.929529423846365,15.605145310977797,0.5452952514455931,0.7701465201465202,0.6916135881104034,0.6088588588588588,0.1122230164403145,0.6898280802292264,0.9331210191082804,0.8479657387580299,0.7436708860759493,0.1304347826086956,0.4984922291811645,0.7043701799485861,0.6400846859562456,0.5669291338582677,0.1072727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021388531287062,0.0046062376980986,0.0068344300918027,0.0089677891654465,0.0113206010506169,0.0136292279149422,0.015992243710772,0.0183527488248518,0.0205280392959476,0.0224331054837618,0.0246671525503762,0.0268374943445893,0.0287844615400459,0.0310804398506323,0.0330281297149825,0.0353194484700426,0.0373151355499782,0.0395668125175384,0.0414370683638712,0.0434936941451599,0.0575774376784911,0.0707634228187919,0.0838440433516593,0.096571272022254,0.1086297098768694,0.1240471975150275,0.1380293376166111,0.1512154000469513,0.164077898705973,0.17534785694316,0.1891562101807658,0.2026826118568839,0.2153399731643194,0.227215391196569,0.2379422996269562,0.2492223950233281,0.2601445869424114,0.270473396151893,0.2799603942366785,0.288719126938541,0.2974944901983528,0.3057037966666275,0.3132289948621806,0.3203003905076599,0.3270252485864691,0.3334569962282817,0.3394926716444176,0.3450931803957133,0.3516897910354603,0.3573795260563007,0.3588380148292471,0.3600508554213537,0.3607779349363508,0.3620624600917165,0.3625894337480769,0.3630651718615252,0.3633497348683896,0.3637219908784453,0.3648664933634031,0.3655923658624415,0.367316455217531,0.368615249606095,0.3697747833640543,0.3714879392899087,0.3709034328503355,0.3698966135668319,0.370901225666907,0.3743925293015278,0.3733693527174492,0.3743048053454967,0.3740803363341407,0.3752463119774192,0.3789746507364561,0.3785380072102478,0.3796751038911976,0.3872202943640062,0.3855366190695532,0.3865154889653776,0.3851463279955825,0.3920432599459251,0.0,1.951075509152753,62.26516850280992,214.79593945490652,331.7192269662586,fqhc2_100Compliance_baseline,39 -100000,95676,40719,381.5690455286592,7620,78.33730507128224,5971,61.77097704753543,2439,25.0114971361679,77.33990302576841,79.73010471009312,63.32261558699434,65.0887138637416,77.03841579200882,79.43015239339792,63.211774382085856,64.98163346627456,0.3014872337595875,299.9523166951974,0.1108412049084819,107.080397467044,61.15208,43.01123398994427,63915.79915548309,44955.09217561799,211.13664,126.0179453841628,220052.4687486935,131089.58503018596,247.24495,117.18429037466773,254951.4507295456,119736.27372137578,4355.76615,1941.6640328924077,4511163.144362222,1988242.736959515,1461.98021,630.6736939873053,1516057.715623563,647332.6767765644,2413.34414,1005.958914542061,2479210.564822944,1015110.7806986,0.38014,100000,0,277964,2905.263597976504,0,0.0,0,0.0,17509,182.3341276809231,0,0.0,23250,239.4957983193277,2193208,0,78723,0,0,0,0,0,50,0.5225970985409089,0,0.0,0,0.0,0,0.0,0.0762,0.2004524648813595,0.3200787401574803,0.02439,0.3139867978577656,0.6860132021422344,25.51597787467159,4.701937286244823,0.3264109864344331,0.1939373639256406,0.2376486350695026,0.2420030145704237,10.903656776827564,5.244955955031454,26.03886626944545,13267.35686722194,67.08634982073913,13.52417929960084,22.00701958103823,15.60453382648501,15.950617113615056,0.5375983922291073,0.7746113989637305,0.6834273986659826,0.5778717406624383,0.1114186851211072,0.6875,0.9390581717451524,0.8161925601750547,0.7566666666666667,0.130718954248366,0.4906531779195073,0.7001254705144291,0.6427613941018767,0.5299374441465594,0.1062335381913959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410007090043,0.0047438041660331,0.0068999807206421,0.0090399382440173,0.0112971945130817,0.0133756794723019,0.0157479512374118,0.0179942026618763,0.0203631010794896,0.0226414321831786,0.0247788154967552,0.0269257616818592,0.0289677724533656,0.0310868020147708,0.0331922799050469,0.0351954671877746,0.0372557551646256,0.0391637862132677,0.0410494340878828,0.0431777668900958,0.0576117500809593,0.0719041835922777,0.0851423235513214,0.0976477024070021,0.1097244493206177,0.1256717870593711,0.1392316424941381,0.1521709048718958,0.1643418635450933,0.1764056267959,0.1904602925022077,0.203893265235457,0.2171009701135424,0.2286251653891154,0.2399225062193162,0.2514872544783808,0.2625493828538267,0.2720755396493123,0.282030913093806,0.2909859542194624,0.2997141832235966,0.3079613513007673,0.315415029120697,0.3228512535353051,0.329352738228291,0.3362551470769534,0.3421619455506299,0.3477092724170423,0.3534935602277591,0.3592987744417562,0.3615005735105593,0.3633844754145817,0.3644706746110185,0.3659077404675294,0.3672291958615343,0.3675312111300502,0.3674985711564107,0.3689029410796035,0.3704179073826881,0.3718749440755919,0.3731749938931584,0.3740180909307308,0.3754075258187325,0.3765614098264725,0.3771445187554522,0.3768325363879985,0.3793212539545585,0.381725726998252,0.3828255240662576,0.381672669067627,0.3813567101156599,0.3824002574002574,0.3823921742996887,0.383745963401507,0.3860513598028997,0.3881775756850544,0.3860818350898946,0.3890032948929159,0.3950999718389186,0.3930250783699059,0.0,2.397971672007069,62.86363095277391,225.81560478113252,348.9444019991058,fqhc2_100Compliance_baseline,40 -100000,95789,40631,380.8683669314848,7489,77.0652162565639,5826,60.28875966969068,2373,24.43913184186076,77.331780499572,79.6711624036698,63.32970022966426,65.06203018086856,77.03954799634833,79.3780035451867,63.22237643964954,64.95700401413367,0.2922325032236728,293.1588584830962,0.1073237900147177,105.02616673488774,62.5768,44.04660509116657,65327.75162074978,45982.94698886779,209.94291,126.00770911914624,218635.1564375868,131010.06286645251,248.17257,117.37853782540496,255771.51865036692,120021.53883698182,4243.06696,1898.4008956630173,4395254.904007767,1947514.490873709,1410.62982,607.4982547695911,1461070.6970528974,622632.4993157784,2341.98124,972.2783594584376,2413921.1809289167,988086.649743065,0.37896,100000,0,284440,2969.443255488626,0,0.0,0,0.0,17544,182.59925461169863,0,0.0,23295,239.8187683345687,2184648,0,78462,0,0,0,0,0,50,0.5219806032007851,0,0.0,1,0.0104396120640157,0,0.0,0.07489,0.1976198015621701,0.3168647349445854,0.02373,0.3148499810102544,0.6851500189897456,25.5003232994166,4.649117831179725,0.3414006179196704,0.1862341228973566,0.2349811191211809,0.2373841400617919,11.25679757930256,5.624097619189098,25.233475867099727,13140.905763543691,65.76951717237455,12.60314988274235,22.44125282713676,15.396805247366547,15.32830921512888,0.5477171301064195,0.7695852534562212,0.6928104575163399,0.5945945945945946,0.118582791033984,0.7015250544662309,0.9415384615384615,0.8656716417910447,0.7657342657342657,0.1178451178451178,0.5001123848055743,0.6960526315789474,0.6394736842105263,0.5493998153277931,0.1187845303867403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024309951886553,0.0046733709095332,0.0071336519630227,0.0093055386240806,0.0113399440630561,0.0134522754814203,0.0156603658163577,0.0177834946302421,0.0199648340864018,0.0222042504401949,0.0243884936337727,0.0264292755051749,0.0284418669216768,0.0304394404499474,0.0325310655162448,0.0343533546986457,0.0364455491688674,0.038489861536068,0.0402988641913728,0.0423577921469403,0.0570912771707938,0.0705648535564853,0.0841990502447768,0.0966708001429201,0.108904109589041,0.1240000422703399,0.1380238695864159,0.1501611033720052,0.1617450882042197,0.1736736093254478,0.1875652576398531,0.2018236490286851,0.2140456952706156,0.2260830571687939,0.2364180681518006,0.2483932449802757,0.2591931253836281,0.2696466140881833,0.2793175037153845,0.2878478982934371,0.2962684495442558,0.3043620629166179,0.3119791666666666,0.3190696001438762,0.3265712931338349,0.3329589910034431,0.3394977369325092,0.3462284372767173,0.3524090130315144,0.3579628111196339,0.3593478172917425,0.3607568788387914,0.3615847896303192,0.3629594216755762,0.36433796689462,0.3645700404360326,0.3655898585993542,0.3663196449489366,0.3673707911517506,0.3689327354260089,0.369473069459882,0.3700290016288586,0.370500105507491,0.3714523643402129,0.372707423580786,0.3730730783395591,0.37495329251818,0.3762235104057778,0.3791020523508425,0.3816674675636713,0.3847357040990017,0.3853354134165366,0.38711951297661,0.3929924974862712,0.3921512460613005,0.3891092679408582,0.3953488372093023,0.3897645854657113,0.3950478334271243,0.391426282051282,0.0,2.1099881050478984,60.81972665487292,233.11241302098264,330.32863857171805,fqhc2_100Compliance_baseline,41 -100000,95694,41070,385.6772629422952,7471,76.93272305473697,5790,59.993312015382365,2352,24.28574414278847,77.34192318165195,79.71723225136722,63.32298576779221,65.07512220071888,77.05204381458766,79.42319014103231,63.2170981332505,64.96935751304994,0.2898793670642874,294.0421103349138,0.1058876345417019,105.76468766893754,62.70572,44.10132306893884,65527.32668714861,46085.77660975489,210.77321,126.70469025912122,219722.66808786345,131877.39780745748,244.3161,115.68795879245174,251634.2403912471,118125.09821632462,4231.96004,1886.1507815222344,4387773.402721174,1937063.6496114973,1456.84273,630.7936810093132,1509676.9389930402,646546.0218675544,2322.4094,965.4089723096184,2399502.2885447363,986878.581763366,0.38229,100000,0,285026,2978.514849415846,0,0.0,0,0.0,17610,183.49112797040567,0,0.0,22958,236.25305661796975,2182207,0,78273,0,0,0,0,0,43,0.449348966497377,0,0.0,0,0.0,0,0.0,0.07471,0.1954275549975149,0.314817293535002,0.02352,0.309244126659857,0.690755873340143,25.413488002393656,4.564693484890657,0.3288428324697754,0.1915371329879102,0.2395509499136442,0.2400690846286701,11.01796908490323,5.566656802565577,25.07691099084501,13260.383383679691,64.97565736644151,12.816064073528938,21.44446181633244,15.444453171143126,15.270678305437006,0.5381692573402418,0.7601442741208295,0.6832983193277311,0.5839942321557318,0.116546762589928,0.6917024320457796,0.9131736526946108,0.8473118279569892,0.7326732673267327,0.1554054054054054,0.4892987249544626,0.6941935483870968,0.6302988186240445,0.5424354243542435,0.1060329067641681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.0044090370055036,0.0066546963287582,0.0087248867491417,0.0107593585063,0.0132047810062918,0.0152111412433986,0.0177366158496114,0.0198678882571884,0.0222495264424307,0.0243209711983102,0.0266887104393009,0.0288091662723962,0.0308484879707382,0.0328244511194376,0.0346407188724704,0.0368022539179433,0.0387146326780561,0.0407961647653414,0.0425671592022174,0.0580456468376246,0.0713672439427889,0.0850992369617011,0.0976998190159518,0.1098941681702594,0.124882271394859,0.1393610583201503,0.1525663829923205,0.1652273358842265,0.1772029623269292,0.190348872310147,0.2036040328781364,0.2162829931972789,0.2275159486579054,0.2392656268917922,0.2504598134154719,0.2610700489024853,0.271358764186633,0.2804616484526606,0.2900996906153317,0.2991236295858947,0.3078994193669226,0.3158069292271246,0.3231090470533175,0.3301508148868888,0.3372279524256033,0.3437159223373986,0.349660505229366,0.3549613862028684,0.3612628460327747,0.3620715279748152,0.3631741118925566,0.364365426231595,0.3655716086773805,0.3671087691093943,0.3666901970413111,0.3675651663467182,0.3684097763567744,0.3690705018191803,0.3708833542375918,0.3731214144644033,0.3740759876003497,0.375139505990861,0.3750140661220264,0.3752962228563137,0.3764527274630929,0.3781108759082327,0.3809553858774531,0.3820766334752472,0.3856568311233226,0.3894564027727107,0.3886842807579397,0.3894502700985065,0.3912215194696334,0.3944945509207065,0.3951954780970325,0.3988491823137492,0.399480415667466,0.3978641840087623,0.395880149812734,0.0,1.938813925301488,62.16497533192442,216.9860186575232,336.5249078908828,fqhc2_100Compliance_baseline,42 -100000,95736,41023,384.1083813821342,7319,75.22770953455336,5694,58.87022645608757,2257,23.199214506559706,77.32392886815877,79.68740906934536,63.31606620966248,65.0647713345558,77.0384761796804,79.4002664725747,63.21186389511765,64.96225961790272,0.2854526884783723,287.1425967706642,0.1042023145448283,102.51171665308334,61.86906,43.54502496965739,64624.42550346788,45484.27990018299,209.20512,125.99874589202793,217935.79217849087,131025.16515870205,245.16033,116.10806642850828,251588.6813737779,117932.16087185324,4102.7393,1826.8061724784643,4249255.588284449,1872090.7927530727,1384.42805,600.0110296095908,1433403.6830450404,614300.8955298783,2230.988,931.6927615053256,2296444.2633909923,946051.2701377328,0.38157,100000,0,281223,2937.473886521266,0,0.0,0,0.0,17488,182.0422829447648,0,0.0,23038,236.19119244589285,2185379,0,78554,0,0,0,0,0,31,0.3238071362914682,0,0.0,0,0.0,0,0.0,0.07319,0.1918127735408968,0.3083754611285694,0.02257,0.3128011459825498,0.6871988540174502,25.60014775353196,4.582874052542755,0.3431682472778363,0.1940639269406392,0.2290129961362838,0.2337548296452406,11.067230325984902,5.526423804909548,24.09146709296185,13248.952956980776,63.96458990715963,12.812617296893947,21.818924890829425,14.52904705883198,14.804000660604263,0.5470670881629786,0.7647058823529411,0.691914022517912,0.5897239263803681,0.111945905334335,0.6940467219291635,0.9238410596026492,0.8524229074889867,0.7716262975778547,0.1134751773049645,0.5024043966109457,0.7048567870485679,0.6433333333333333,0.5379310344827586,0.111534795042898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002076432991988,0.0043192164576341,0.0064850711429557,0.0088195248836594,0.0109655368840786,0.0132179226069246,0.0158738250107048,0.0182102136433697,0.0200799517426821,0.0223714791796783,0.0246062992125984,0.0268796780188301,0.0287761648229633,0.0307468866845894,0.0327836711107442,0.034896220954271,0.0372464938992811,0.0392319667877529,0.041511121278609,0.0434755430536021,0.0577758289484673,0.0724567937397999,0.0859626495538288,0.0987634849536306,0.110539357832024,0.1261609088408893,0.1397969252315625,0.1522736709858075,0.1644734031189916,0.1761476938911165,0.190124014985144,0.2030149992970769,0.2157790026417925,0.2270928096571028,0.2386656107701445,0.2506811385535497,0.2617158290644077,0.2718269598685543,0.2815665167824863,0.2904576212868448,0.2997565781847687,0.3085127580023207,0.3163387530982792,0.3234877410369089,0.3298713000280047,0.3355850571163939,0.3421947333425335,0.3484633931646829,0.3541012125775712,0.3594684737148605,0.3605975067867803,0.3619240799768183,0.3629606601853945,0.3641860734897479,0.3649967953972962,0.3654153109460372,0.3662230963219083,0.3679172354808467,0.3683678712108237,0.3698076062639821,0.370013341601368,0.3711915206129295,0.3723361733459556,0.3733348309558575,0.375202534400619,0.376471822306139,0.376701143168209,0.3787455561198578,0.3808796362086116,0.381773695399302,0.3853126581696038,0.3882497725935042,0.3905437951578147,0.3907517991119277,0.392455705848733,0.3964169772754599,0.3929227941176471,0.4013591844893064,0.4050496911093204,0.3996948893974065,0.0,2.3234758687041355,58.51605959748932,218.92088402501548,333.783878476178,fqhc2_100Compliance_baseline,43 -100000,95787,41194,385.991836052909,7582,77.78717362481338,5904,60.97904726111059,2492,25.57758359693904,77.4066300966336,79.7463098908813,63.35719594835807,65.08823383130589,77.10493928759267,79.44634029453903,63.24783549308987,64.9824224425128,0.3016908090409345,299.9695963422795,0.1093604552681952,105.81138879308584,62.94398,44.2717867148832,65712.44532139016,46218.992885133885,211.27793,126.90855144043994,219939.6055832211,131859.40831265197,245.65419,116.6880389344727,252869.03233215364,118903.24599369362,4324.88052,1925.547341925448,4470768.580287513,1965905.521548276,1457.06862,630.6532169989391,1501724.9939970977,638961.3590559671,2462.02054,1011.4217460236626,2530026.997400482,1021067.0821360992,0.38358,100000,0,286109,2986.929332790462,0,0.0,0,0.0,17629,183.38605447503315,0,0.0,23103,237.5478927203065,2184186,0,78430,0,0,0,0,0,45,0.469792351780513,0,0.0,1,0.0104398300395669,0,0.0,0.07582,0.1976641117889358,0.3286731733051965,0.02492,0.3099824868651488,0.6900175131348512,25.392501469504342,4.670366381024787,0.3246951219512195,0.1881775067750677,0.2410230352303523,0.2461043360433604,11.212993989929783,5.570341333415774,26.300525875699527,13266.721680333983,66.16777187331867,12.91091793833566,21.51167422250135,15.862011187857178,15.883168524624482,0.5367547425474255,0.7587758775877588,0.6917057902973396,0.5699226985242446,0.1300757054370268,0.7038352272727273,0.925595238095238,0.8635394456289979,0.7138461538461538,0.1546762589928057,0.4844306049822064,0.6864516129032258,0.636049723756906,0.5273224043715847,0.1242553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0045527367118898,0.0067687561522614,0.0091035631915304,0.0113607469411417,0.0135536954440846,0.0159050590322383,0.01794518450467,0.020002861932213,0.0222379139547259,0.0244634841248693,0.0265863569200459,0.0287056260149232,0.0308829433503875,0.0328931770623949,0.0349014910577836,0.036953508100391,0.0392888612450111,0.0413060868300487,0.0431831431664862,0.0577838063439065,0.0715749843129052,0.0848200247374268,0.0975973766632333,0.1102845883951996,0.1258585346266827,0.1401878073596744,0.1534765043589198,0.1657277596398011,0.1771277393372035,0.1908609670547223,0.2047489295445698,0.2171989958377256,0.2297661821398538,0.2409694146598699,0.2525645991257677,0.2636856429017578,0.2739282461801378,0.2837488374203207,0.2928166676206284,0.3013890334593988,0.3097010999801279,0.3174174920420793,0.3240911596252007,0.3300520149725341,0.3366220632669421,0.3428070175438596,0.349069699323765,0.3548056596677345,0.3606652740685898,0.3614875809935205,0.3624507127691841,0.3644617013766325,0.3648648648648648,0.366219192761043,0.3653887440576598,0.3654872160215309,0.3671064723644479,0.3677039815841078,0.3680497407849495,0.3692339412569586,0.3700812301124572,0.3703672647995975,0.3717460459698015,0.3725018059234288,0.3726964239102062,0.3743040685224839,0.3757909648984732,0.3774741142494893,0.3771112173358827,0.3773490009601756,0.3764436638458672,0.3751893939393939,0.3755046081194302,0.3737932327303402,0.3746754779324994,0.3772418058132344,0.3703327922077922,0.3701949860724234,0.3662246489859594,0.0,2.612279813623652,61.84174577172443,223.9965100117008,341.90815548245087,fqhc2_100Compliance_baseline,44 -100000,95686,40994,383.5566331542754,7448,76.48976861818865,5797,59.97742616474719,2335,24.07875760299312,77.29491858535671,79.69866107885576,63.29396199958445,65.07459724418332,77.00889834662057,79.41141442769951,63.188676885482174,64.97144894124891,0.2860202387361426,287.24665115625214,0.1052851141022799,103.14830293441446,62.95784,44.30989048384061,65796.29203854273,46307.60036352299,213.21286,128.87310261556814,222212.9883159501,134070.77588734834,248.58469,118.5047918358542,255887.3816441277,120796.52562950832,4171.01215,1873.9512311993717,4318970.70626842,1918346.8754043132,1432.12547,620.8815756491815,1483421.639529294,635602.8422644705,2291.61902,950.8517577011652,2363931.5469347658,965865.8605595782,0.3816,100000,0,286172,2990.7405472064875,0,0.0,0,0.0,17874,186.1609848880714,0,0.0,23371,240.4008945927304,2178450,0,78209,0,0,0,0,0,35,0.3657797378926906,0,0.0,1,0.0104508496540768,0,0.0,0.07448,0.1951781970649895,0.3135069817400644,0.02335,0.3149093694153689,0.685090630584631,25.434478115638164,4.646352192831239,0.3474210798688977,0.1909608418147317,0.2339140934966362,0.2277039848197343,11.254056151891568,5.662834234243405,24.84778484555348,13230.446494971817,65.44576283802509,12.892989514170724,22.731654033709667,15.294401360541643,14.52671792960304,0.5497671209246162,0.7515808491418248,0.676266137040715,0.6076696165191741,0.128030303030303,0.714975845410628,0.9206798866855525,0.8551587301587301,0.740506329113924,0.1666666666666666,0.4947102115915363,0.6724137931034483,0.6165562913907284,0.5673076923076923,0.1178160919540229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024227802163269,0.004789592783139,0.0072005281064337,0.0095368817040313,0.0116554862220955,0.0139634910766157,0.0163476060247357,0.018563167896038,0.0206756148463395,0.0228644013972689,0.0250394928502554,0.0273465991391265,0.0295636962337929,0.0316912295166443,0.0336502234746436,0.035512626941612,0.0379167055263676,0.0400755829647625,0.0422249500665778,0.0440062121512179,0.0581728157773785,0.0718742802102309,0.0851925700493231,0.0981407241390195,0.1104557923612576,0.1256639790066239,0.1393406080163043,0.1522621037724799,0.1648234225570337,0.1762610384454435,0.1906511247091269,0.2037219367054368,0.2159787761492628,0.2277035077555392,0.2381701388125041,0.2497729638735685,0.2602611315701372,0.2703892127951737,0.280273947709152,0.2895446048693219,0.2980899540152664,0.3062349979509396,0.3141347611827141,0.3213797076402391,0.3284725685027304,0.3361904997159301,0.3420432318571643,0.3483229085720837,0.3542608447858243,0.3599086432465972,0.3614326330966272,0.3623759104489942,0.3631593053929383,0.3629192177978491,0.3635402552152355,0.3641225010372328,0.3646686493105806,0.3660443330254651,0.3670505844590535,0.3677471491424979,0.3686256013583624,0.36997591224892,0.3712423264350357,0.3729561731453538,0.3740678665986543,0.3744768222380162,0.3744636737984853,0.3763427191254052,0.3782339408954167,0.3808322319676399,0.380443297543892,0.3817860584645037,0.3855223123732251,0.383505945531262,0.3818026403267167,0.385197645079899,0.3879747808703675,0.3915897435897436,0.39366391184573,0.4007604562737643,0.0,2.3955590967516693,63.93069933637812,216.11496053299155,334.4078197196178,fqhc2_100Compliance_baseline,45 -100000,95718,40832,382.7388787897783,7417,76.25524979627656,5798,59.95737478844104,2386,24.519944002173048,77.3593554540744,79.73076558573464,63.33143217950936,65.083991470752,77.07452156292368,79.44783392858996,63.22720515216941,64.98377952018427,0.2848338911507255,282.9316571446867,0.1042270273399523,100.2119505677257,63.10964,44.37491464159121,65932.88618650619,46360.05207128357,210.66971,126.62017466985502,219481.7798115297,131672.23998605803,242.42524,115.05687977855344,249914.1331828914,117540.7742902021,4237.04844,1881.6295224878504,4382153.471656323,1921506.2299823617,1404.84065,612.5800842602482,1448996.4165569695,621293.6169375126,2365.01888,973.5618031863452,2432139.806514971,982882.229248867,0.38049,100000,0,286862,2996.949372113918,0,0.0,0,0.0,17631,183.56004095363463,0,0.0,22768,234.5431371319919,2183152,0,78258,0,0,0,0,0,48,0.5014730771641698,0,0.0,0,0.0,0,0.0,0.07417,0.1949328497463796,0.3216934070378859,0.02386,0.3115280812234931,0.6884719187765069,25.439846696717105,4.6246380911942415,0.3285615729561918,0.1900655398413246,0.2349085891686788,0.2464642980338047,10.993651171193642,5.318540904179668,25.261322307404956,13170.915391108218,64.93424743723934,12.89007186981362,21.195063379614297,15.171779616632,15.67733257117942,0.5294929285960676,0.7441016333938294,0.6860892388451444,0.5844346549192364,0.1028691392582225,0.7142857142857143,0.912280701754386,0.8755760368663594,0.7436708860759493,0.1892857142857142,0.4722096701310438,0.6684210526315789,0.6301835486063903,0.5363288718929254,0.0818102697998259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079974071223,0.0046529544740336,0.0072249789440571,0.0092726127846275,0.0116937656976093,0.0138352998666354,0.0157602324277486,0.0180266623114141,0.0200159473329108,0.0220825356524943,0.0242321694098343,0.026417691225259,0.0286020000823079,0.0308681406993756,0.0330320104018327,0.0353650216056402,0.0372414221522788,0.0391668741183304,0.040940232251089,0.042824254924633,0.0576447122463684,0.0716865010833045,0.0849296099699977,0.098143961301856,0.1099968364441632,0.125519692786188,0.1391005369611817,0.1519510247537929,0.1637991835687875,0.1752572894197439,0.1894760662945322,0.2030463447111168,0.2151949691008791,0.2265340293509307,0.2377044665969047,0.2488910082952579,0.2592257516865478,0.2693173124521849,0.2791896033142273,0.2880913091309131,0.2965916324286789,0.3046157804259101,0.3125110850980809,0.3198845882169837,0.3271721057805503,0.3342652691734509,0.3404087558353462,0.3457223536594673,0.3524772733158944,0.3585251632478068,0.3597389490681558,0.3610931458215794,0.361647959040144,0.362615178301057,0.3637402597402597,0.3641732584647868,0.3635903679225892,0.3645266058657568,0.3656382397157305,0.3670106405770192,0.3677081180603829,0.3688696824327003,0.3691266679314488,0.371007371007371,0.3722410454985479,0.3731949576748696,0.3753080758869719,0.377337559429477,0.3809793376733654,0.3834112056227786,0.3858238779916395,0.3883172561629153,0.3904481810625919,0.3901897765534129,0.390697235588263,0.3876457986193763,0.3846628606696497,0.3799714460534367,0.3771760154738878,0.388162951575711,0.0,2.432203022669384,60.3728947820815,218.13224940977287,339.953578795104,fqhc2_100Compliance_baseline,46 -100000,95878,40963,383.9775548092367,7469,76.5660526919627,5831,60.1284966311354,2368,24.30171676505559,77.4394230829848,79.7203592811684,63.39129033748679,65.07782466550229,77.15631473517898,79.43725599405,63.28926493184585,64.97870662329707,0.2831083478058218,283.1032871183936,0.1020254056409371,99.11804220521958,62.48748,43.94838805918901,65173.95022841528,45837.82312854775,212.45411,127.6059767405576,220908.6860385073,132412.75030826428,248.90617,117.75889484638918,255154.99906130708,119432.492580452,4245.82262,1870.1060196594733,4382788.46033501,1904934.7291969724,1438.09498,607.4329878937123,1484159.765535368,617785.8402279073,2339.33986,944.2019102170764,2402722.605811552,953205.802237912,0.38077,100000,0,284034,2962.452283109785,0,0.0,0,0.0,17776,184.6930474144225,0,0.0,23356,239.11637706251696,2187633,0,78554,0,0,0,0,0,47,0.490206303844469,0,0.0,0,0.0,0,0.0,0.07469,0.1961551592825065,0.3170437809613067,0.02368,0.3132176575657055,0.6867823424342945,25.34904169103641,4.596555394786983,0.3258446235637112,0.1996227062253472,0.234608128965872,0.2399245412450694,11.213761805625651,5.534628816856812,24.601520535663088,13187.07143933692,65.16536307082643,13.561421253499098,21.46911806313452,15.089260714658511,15.045563039534304,0.5409020751157606,0.7542955326460481,0.6973684210526315,0.5716374269005848,0.1208005718370264,0.7053637031594416,0.9021739130434784,0.8442982456140351,0.7288732394366197,0.1422924901185771,0.49082774049217,0.6859296482412061,0.6509695290858726,0.5304428044280443,0.1160558464223385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020550718768981,0.0045198427175807,0.0066038405745645,0.0090568489882118,0.0113734538099545,0.0135426629494719,0.015737203972498,0.0179212566299469,0.020146295615218,0.0222590478528611,0.0244267300559437,0.0264615952884201,0.0283929176985603,0.0304917594012826,0.0322903242435177,0.0346551011978521,0.0367082583235044,0.0385571881541044,0.040636225835254,0.0423311798424934,0.0563211441437685,0.0703321734950837,0.0843586709530142,0.0973594414404955,0.1091963702970714,0.1253959204358292,0.1382783785787673,0.1504973009733497,0.1623935268594821,0.1745970590123932,0.1878433438329803,0.201320381635674,0.2134267557438487,0.2248699794589397,0.2364711832354816,0.2484478923429355,0.2590111678295178,0.2694766168259995,0.2796180075673471,0.2893106207842689,0.2978054978054978,0.3059363396464352,0.3139220159088491,0.3218060593002238,0.3285958758632408,0.3354474808803064,0.3423346799914948,0.3482913314778807,0.3540467474679533,0.3603246334040395,0.3621012123413932,0.3629167468323118,0.363559620119592,0.3650167591308368,0.3658380850558327,0.3658771835816097,0.3653069946341232,0.3667825744652933,0.3684471243359581,0.3697002141327623,0.3713428919501452,0.3727123439447599,0.3731299439770033,0.3747148033820963,0.3753816564490924,0.3765656460005753,0.3770982359143891,0.3808206256877849,0.381830936513504,0.3840222575516693,0.3831993422254705,0.3858747993579454,0.3854199683042789,0.3846331333640978,0.3845418935702684,0.3829045443616254,0.3873184444791504,0.3894867549668874,0.3908785674314493,0.3872567722243418,0.0,2.650957606198403,59.68463852033083,218.35553685128264,344.9684512403015,fqhc2_100Compliance_baseline,47 -100000,95732,40937,383.60213930556137,7575,77.91543057702754,5869,60.66936865415953,2400,24.673045585593115,77.34647984393533,79.69879918258327,63.33814763576003,65.07521486934469,77.059649650986,79.4123703519668,63.23168139919574,64.97158405411548,0.2868301929493242,286.4288306164724,0.1064662365642874,103.63081522920936,61.89568,43.54055987799733,64655.16232816613,45481.71967366955,210.0419,126.40912989142664,218770.672293486,131409.31965427092,246.22675,116.99537798457034,253064.69101240963,118964.78944856048,4279.06229,1913.561494876105,4428714.254376803,1957836.8595102911,1447.22144,624.0063426544767,1494726.9251660886,634854.1982519744,2370.59132,986.1690235284344,2439990.515188234,998589.145929926,0.38239,100000,0,281344,2938.8710149166423,0,0.0,0,0.0,17474,181.85141854343377,0,0.0,23152,237.77838131450295,2188691,0,78508,0,0,0,0,0,44,0.449170601261856,0,0.0,1,0.0104458279363222,0,0.0,0.07575,0.1980961845236538,0.3168316831683168,0.024,0.3122251539138083,0.6877748460861918,25.56418271911876,4.565406935908356,0.3244164252853979,0.1952632475719884,0.2429715454080763,0.2373487817345374,10.90215931539204,5.369606943987449,25.421168612127147,13297.696575727125,65.96292045721236,13.308616905640996,21.439740021087488,15.908067003227496,15.30649652725638,0.5389333787698075,0.7513089005235603,0.6859243697478992,0.5799438990182328,0.1213208901651112,0.6938341601700921,0.9358600583090378,0.8646788990825688,0.7333333333333333,0.1291390728476821,0.4899057873485868,0.6724782067247821,0.6328337874659401,0.5337591240875912,0.1191567369385884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.004521079787935,0.0068600886940461,0.0092948131894922,0.0116643276994732,0.0140189770320899,0.0159633027522935,0.0179426203574235,0.020402530895115,0.0227391397827444,0.0250207566703225,0.0270051115718596,0.029146875578311,0.0311975363318948,0.0331194156125544,0.0353181945033023,0.037344956826041,0.0393617462754699,0.0412989469963929,0.0432038329340693,0.0576284634497734,0.0718509602804961,0.0850320509457914,0.0986350922206565,0.111156798245614,0.1266864030450412,0.1401824546515328,0.1534286231228514,0.1659673958299971,0.1773847802786709,0.1917892288808975,0.2049537612892758,0.2178729047546579,0.229708164826757,0.2405501682169008,0.252034590811954,0.2618458037745951,0.2721166503527188,0.2813670518262922,0.2908115912137775,0.2994039696776807,0.3080045860826431,0.3163224217158558,0.3238960135321568,0.3306183975395388,0.3366528217705855,0.3433759078387177,0.34993502025839,0.3552920110550286,0.3601972814301581,0.3615950340732744,0.3631110804661104,0.3641215338566668,0.3654592871631411,0.3666229625435799,0.3666707646914187,0.3667830503094746,0.3687259322647533,0.3692790291062429,0.3702383724053942,0.3714924727949329,0.3738499365482233,0.3749815762322868,0.376452345101917,0.3782849406474385,0.3784934928355462,0.3798919602321706,0.3825437513845375,0.3862544169611307,0.3885497705964492,0.388272001468294,0.3879037874323672,0.3874683544303797,0.3905407487290094,0.3931493815413892,0.3906043493932476,0.3878591288229842,0.3905544147843942,0.3878069432684166,0.3958746529155097,0.0,2.524070552649072,61.883372572030176,221.69010084641596,342.4665947330229,fqhc2_100Compliance_baseline,48 -100000,95748,41143,384.53022517441616,7511,77.36976229268497,5864,60.7427831390734,2355,24.240715210761586,77.41222784566315,79.76750131558875,63.350809200748486,65.08948630217033,77.1196445326521,79.47463654016697,63.24379610416176,64.98485048205636,0.2925833130110504,292.8647754217764,0.1070130965867264,104.63582011396966,62.77678,44.18649085380815,65564.586205456,46148.73506893946,213.25501,128.37579647339234,222214.41701132135,133568.43462049996,247.82164,117.59373214806396,256285.0085641476,120767.10750695018,4256.78311,1897.6559363316176,4409639.052512846,1945984.150771533,1436.11825,621.8578507598711,1485584.659731796,635416.3742643632,2332.3864,974.036145628064,2401981.1588753816,987938.0346174864,0.38277,100000,0,285349,2980.208463884363,0,0.0,0,0.0,17860,185.98821907507207,0,0.0,23306,240.74654300873124,2181980,0,78214,0,0,0,0,0,37,0.3864310481681079,0,0.0,0,0.0,0,0.0,0.07511,0.1962274995428063,0.313540141126348,0.02355,0.3132132893735734,0.6867867106264266,25.525550919355737,4.730172073769671,0.334924965893588,0.1952592087312414,0.2245907230559345,0.245225102319236,11.313268985648811,5.589611098047441,25.147536459625385,13316.101883542718,65.81973631925108,13.25131619413814,22.036529511056337,14.598794501445347,15.93309611261126,0.5402455661664393,0.759825327510917,0.6904276985743381,0.5846621108580107,0.1196105702364394,0.7011577424023154,0.925925925925926,0.8538135593220338,0.7653061224489796,0.1404109589041096,0.4906291834002677,0.6942752740560292,0.6387399463806971,0.5327468230694037,0.1143106457242583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394774154344,0.004540617240156,0.0066956133587631,0.0090888780567064,0.0115698614260006,0.0139461495393698,0.0160119860570356,0.0182443394589961,0.0203472626748832,0.0223541453428863,0.0244834795441502,0.0268847006651884,0.0289703100583929,0.031121272038227,0.0332356522277483,0.0354953744379554,0.0375981112928945,0.0397991367861885,0.0420643336868151,0.0443550907310568,0.0588597617630785,0.0731819608663806,0.0866655477698988,0.0996686477673171,0.1124428922628907,0.1272790764118898,0.1416382795835853,0.1544341530927286,0.1665972155442296,0.178461439409385,0.1930233059526119,0.2061214988685945,0.2189214490986676,0.2295151966365945,0.240018508725542,0.2505934816852661,0.261292377854532,0.2716857426099495,0.2816855017320688,0.2904357798165137,0.2988911932706902,0.3071770671100858,0.3156492391497424,0.3230009469356443,0.3302266237316969,0.3366447684665919,0.3423999399452,0.3483920172874031,0.3546130471326049,0.3606902911342379,0.3623377321471766,0.3641182690855157,0.3653199836879333,0.3668195983379501,0.3681349606019314,0.3686339148085405,0.368859704508145,0.3705643577320937,0.3716058431486185,0.3724264443969509,0.3741102621107104,0.37546805407749,0.3755682651415163,0.3763239040085802,0.3768070622759964,0.3777638715060492,0.3787451181618632,0.3812053950388279,0.3835664581429676,0.3864870219932633,0.3850038673279039,0.3850981226400042,0.3853274559193955,0.3880823896024929,0.3913572163502011,0.3947867298578199,0.3944283757040645,0.3876234630114896,0.3871322518559252,0.3802762854950115,0.0,1.9136120912942451,61.4450855831268,227.60750991002087,336.9559267884041,fqhc2_100Compliance_baseline,49 -100000,95736,40775,381.6954959471881,7328,75.30082727500627,5768,59.75808473301579,2255,23.209659898052976,77.32373385663094,79.69543864114787,63.321321634088775,65.07598139053462,77.05014751747527,79.41970202339809,63.2210693506869,64.97740362986823,0.2735863391556705,275.7366177497857,0.1002522834018719,98.57776066638736,62.9662,44.22690290587408,65770.6609843737,46196.731538683554,210.17263,126.67814211099746,219046.84758084733,131833.58622774866,244.25505,116.07730876964816,252589.79903066767,119218.94055437608,4171.62595,1855.7341378710007,4322193.40686889,1903153.7434935672,1390.43404,598.4227320071152,1437069.7334336091,609782.9155251062,2222.6484,919.271560623288,2288520.8490014207,930885.1375201982,0.37975,100000,0,286210,2989.575499289713,0,0.0,0,0.0,17597,183.28528453246423,0,0.0,22960,237.19395002924708,2183374,0,78369,0,0,0,0,0,43,0.4491518342107462,0,0.0,0,0.0,0,0.0,0.07328,0.1929690585911784,0.3077237991266375,0.02255,0.3169370538611291,0.6830629461388709,25.542646845681094,4.626818533663465,0.3370319001386962,0.1955617198335645,0.2366504854368932,0.230755894590846,11.226919868253374,5.643464516840661,23.963371091892025,13162.903868549229,64.69342990368466,13.206858522246236,21.88298385401876,15.183565178366592,14.42002234905305,0.5494105409153953,0.7641843971631206,0.7001028806584362,0.5912087912087912,0.1044327573253193,0.7242620590352772,0.9162011173184358,0.8763326226012793,0.745928338762215,0.1490196078431372,0.4939483900433889,0.6935064935064935,0.6440677966101694,0.5463137996219282,0.0938661710037174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113475177304,0.0048982323770117,0.0072878603329273,0.0096233969473406,0.0120157089370014,0.0143018671882162,0.0164504548606861,0.0185675038043977,0.0208194860572842,0.0228480720979056,0.0251766467372911,0.0274214585751111,0.0293709171338922,0.0312338987242637,0.0333708363869076,0.0354591599383858,0.0375851854920562,0.0395700620422053,0.04156832572599,0.0433133628549101,0.0580509093946417,0.0716177040052747,0.084710201940729,0.0973008225864136,0.109288004049266,0.1249788529859583,0.1384527244949923,0.1515935089119446,0.1635549954072586,0.1748179761304781,0.1881339506837515,0.2009152674398476,0.2129232910676613,0.2246131977475261,0.2365566556655665,0.2482308774183546,0.2588727211908346,0.2690237846461514,0.2790362811791383,0.2880140042561955,0.2967058361352791,0.305412100109831,0.3129935221523476,0.3196449321369958,0.3267880995749848,0.3330662952783563,0.3389928129617108,0.3456472446561871,0.3509019933339385,0.3568297063173463,0.3582743511964947,0.3595542806707855,0.3610762129275419,0.3625295319815054,0.3647432267294566,0.3644518170368322,0.3641092327698309,0.366025641025641,0.3672091353550549,0.3681980693600286,0.3686069006968314,0.3701271648778939,0.3715170931163849,0.3728275551553354,0.3743762414611695,0.3738371787459925,0.3748201438848921,0.3757907117200165,0.3775118937726336,0.3787525150905432,0.3821750173170168,0.3850968542599687,0.3851174099430546,0.3856998992950655,0.3889152961308109,0.3901647228567993,0.3895884520884521,0.3908092720618137,0.3993944398568676,0.4071207430340557,0.0,1.908116928782919,61.63718437561904,215.4470452187746,337.1611882518371,fqhc2_100Compliance_baseline,50 -100000,95770,40529,379.0331001357419,7351,75.47248616476976,5787,59.72642790017751,2364,24.203821656050955,77.38153749659537,79.72467914890194,63.350937847410606,65.08358763047944,77.0988670881476,79.44314924174316,63.24795418053264,64.98424136709686,0.2826704084477711,281.52990715878445,0.102983666877968,99.34626338258568,62.80318,44.11887724194295,65576.40179596952,46066.86524375373,209.63847,126.23629989414066,218170.6901952595,131085.3491554147,241.07128,114.76842615509965,247295.42654275868,116400.22323198758,4212.45772,1872.84300408722,4348378.333507361,1905497.047599689,1411.84595,610.1056273044555,1455312.9998955831,618161.1541238964,2330.04746,959.0330662463766,2387375.649994779,961857.8465782142,0.37726,100000,0,285469,2980.7455361804323,0,0.0,0,0.0,17515,182.13428004594343,0,0.0,22717,232.94351049389164,2186748,0,78482,0,0,0,0,0,37,0.3654589119766106,0,0.0,0,0.0,0,0.0,0.07351,0.1948523564650373,0.3215888994694599,0.02364,0.308257117093907,0.691742882906093,25.44506181118817,4.616786587421194,0.3300501123207188,0.1902540176257128,0.2414031449801278,0.2382927250734404,11.142697590858235,5.679829321566463,24.97201908920013,13106.16480022572,64.94424037998509,12.708320326245929,21.52513186289386,15.651684923069489,15.059103267775802,0.5391394504924831,0.7683923705722071,0.693717277486911,0.5748031496062992,0.1058738216098622,0.6996363636363636,0.9029126213592232,0.8501026694045175,0.7388535031847133,0.1396226415094339,0.4891205802357207,0.7159090909090909,0.640196767392832,0.5272391505078485,0.0978456014362657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218254370151,0.0044803049040079,0.0066555740432612,0.0088358063434995,0.0115094454724769,0.0139051477549192,0.0160945080931218,0.0182794272242011,0.0206012794048519,0.0229807436511347,0.0248703707499026,0.027037014226766,0.0290355747480978,0.031228120752852,0.0332951697249125,0.0352840286818341,0.0371799913077671,0.0392872321678466,0.0414909310008102,0.0431260672191912,0.0576896987153397,0.0713336889558295,0.0842306119667439,0.0974074424372353,0.1093359749607444,0.1244874233777214,0.1377534258189641,0.1503859320844585,0.1624903952872876,0.1739945978391356,0.1883685133956922,0.2014796227394652,0.2138012738299676,0.2255381925472626,0.2361436506627069,0.2467782649129799,0.2582134493141519,0.268462411889692,0.2786472509526402,0.2869713474917613,0.2962346192987325,0.3045440198267497,0.3119505933296262,0.3192371277283944,0.3255009107468123,0.3319333423655331,0.3382295950895703,0.3440401984480346,0.3503204505729267,0.3552485750474984,0.3566619084812411,0.357304113209625,0.3587729196050775,0.3594905564802084,0.3602644470584731,0.360601180891036,0.3607715208716032,0.3624626792217592,0.3631121952883779,0.365070583406207,0.3660896798754758,0.3670883569915464,0.3689638513726396,0.3706850053937432,0.3701290867414646,0.370915374947633,0.371699894167787,0.3748936036064437,0.3763724662162162,0.3782005264417324,0.380854278258481,0.3847800492347212,0.386427298192004,0.3864633864633864,0.3927383328580933,0.3958782650371435,0.4017581739666872,0.4059889997962925,0.4024150519516989,0.3896053145760063,0.0,2.727783207022497,60.13470538514711,221.8122663653271,334.5568844939808,fqhc2_100Compliance_baseline,51 -100000,95853,40893,382.3667490845357,7386,75.89746799787174,5717,59.027886451128296,2356,24.151565417879464,77.37299817448195,79.67425556171598,63.35320242165369,65.05719872925961,77.08615928960465,79.38869378361034,63.24938553630974,64.95673731139416,0.286838884877298,285.5617781056452,0.1038168853439529,100.46141786544638,63.25022,44.45046534974237,65986.68794925562,46373.577613368776,209.76127,126.607298364898,218175.132755365,131423.89466374557,245.7248,116.59431377906438,252690.359195852,118736.54722000824,4128.02874,1843.358352149734,4265097.086163187,1881607.1197548269,1381.71745,595.0179043065467,1425559.14786183,604903.860712189,2315.42834,952.5230079197494,2376109.041970517,959141.7782726114,0.38075,100000,0,287501,2999.394906784347,0,0.0,0,0.0,17582,182.7485837688961,0,0.0,23073,237.08178147788803,2181370,0,78322,0,0,0,0,0,38,0.3860077410201037,0,0.0,0,0.0,0,0.0,0.07386,0.1939855548260013,0.3189818575683726,0.02356,0.317650083558298,0.6823499164417021,25.55374270637792,4.558055844758493,0.3346160573727479,0.1990554486618856,0.237012419100927,0.2293160748644394,11.07103134896874,5.538046772952027,25.08263082212728,13227.209093301535,64.52038842581187,13.311872644788512,21.613000988397744,15.194725448132496,14.400789344493122,0.5476648591918839,0.7688927943760984,0.6952430737062206,0.5874538745387454,0.099160945842868,0.702416918429003,0.9158878504672896,0.8440366972477065,0.7320872274143302,0.1341463414634146,0.501024356931482,0.7111383108935129,0.6513202437373053,0.5425531914893617,0.0910798122065727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0048547133286711,0.0072223405658176,0.0091078935077066,0.0112945529959538,0.0134364820846905,0.0158796489761805,0.0178591474553266,0.0198939398583821,0.022131499785131,0.0245479227498591,0.026685955246391,0.0288166075741226,0.0310441370223978,0.0332666694156942,0.0353996922663857,0.0375964741666494,0.0392622143930366,0.0412153812604492,0.0433543151433179,0.0583401979083031,0.0720197291422839,0.0854206606115842,0.0975133364136598,0.1101129985151173,0.125117512226553,0.1385233221014262,0.150833475080796,0.1637493062374589,0.1754904797111232,0.1888814755827217,0.2019779507133592,0.2152630606544727,0.2267434868644021,0.2375948949279348,0.2490171541213081,0.2599033924208788,0.27033990796269,0.2804810255828464,0.289839804880283,0.2984280476096839,0.3076293098405344,0.3151738996614343,0.3220410070821699,0.3289086978698599,0.3358677034170866,0.3423307197074075,0.3484377785134068,0.3544544959693097,0.3597589183044978,0.361701266642386,0.362412404127352,0.364168303817506,0.3649599048737692,0.3650140819884662,0.3656724437007813,0.3662143933983972,0.3682470768168138,0.3704736806078444,0.3714817732578959,0.372110491427713,0.3737389753245466,0.3745850317266882,0.3756247338577736,0.3765845664433412,0.3755460799958144,0.3754873853211009,0.378002848551986,0.3803329680817221,0.3828489415141729,0.3838328543405866,0.3844921499519385,0.3832834680756254,0.3829770815649355,0.3823108482015075,0.3836807623585467,0.3857120719045405,0.3870500620604055,0.3916103603603603,0.3902627511591963,0.0,2.360089204797702,58.12143392485388,230.14036005512236,327.5018262814584,fqhc2_100Compliance_baseline,52 -100000,95783,41034,384.7551235605483,7345,75.27431798962238,5713,58.9770627355585,2335,24.00217157533174,77.39816222968327,79.72765373428545,63.35848721039546,65.07968145364356,77.11604266347051,79.44538825389733,63.2549355309496,64.97891120145637,0.2821195662127564,282.2654803881193,0.1035516794458644,100.77025218718916,62.97786,44.340559691065664,65750.56116429846,46292.72385607641,211.75552,127.69732753170229,220413.6537798983,132654.66474395487,247.17174,118.07228971213355,253061.46184604784,119604.32915068768,4142.33319,1854.3890241862823,4278480.179154965,1889805.606617335,1410.8443,612.0045121084779,1456685.768873391,622696.621393294,2304.27334,956.8705557310104,2369700.21820156,967764.9348137298,0.38075,100000,0,286263,2988.661871104476,0,0.0,0,0.0,17656,183.64427925623545,0,0.0,23195,237.338567386697,2182092,0,78235,0,0,0,0,0,42,0.4176106407191255,0,0.0,1,0.0104402660179781,0,0.0,0.07345,0.192908732764281,0.3179033356024506,0.02335,0.3126531665161873,0.6873468334838128,25.63544367423293,4.601110431047103,0.3311745142657097,0.1900927708734465,0.2391037983546298,0.2396289165062139,10.920224463407376,5.411364677083276,24.788496367242026,13168.078354567086,64.0776475425487,12.611946934861155,21.09751825071973,15.263541624383633,15.104640732584189,0.5455977594958866,0.7790055248618785,0.6955602536997886,0.5944363103953147,0.1044558071585098,0.7093451066961001,0.9203539823008848,0.8677130044843049,0.7425742574257426,0.1476014760147601,0.4944878272852549,0.714859437751004,0.6424619640387276,0.5522107243650047,0.0938069216757741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.0049862169612453,0.0072130016637584,0.0092716711349419,0.0113963299954252,0.0137398986300812,0.0160085596372344,0.0181916500020405,0.0204129588573647,0.022549621444649,0.0244137323402555,0.0266700872242175,0.0286521761471661,0.030784273363524,0.0327745474040166,0.0348367639920266,0.0367772570683715,0.0388224680886363,0.0408521693946479,0.042727566205338,0.0573903062555433,0.0716526868450227,0.0844936045292514,0.0970518682011666,0.1095672341995677,0.1259011818431679,0.1383223562102941,0.1509566475833741,0.16322585468488,0.1747960069909825,0.1889787522750035,0.2029352281453121,0.2151719941763184,0.2264622981624314,0.2373682417207988,0.2485559367046586,0.2596177434822364,0.2698982173986392,0.2799700469717942,0.2893211446376612,0.2978058964364612,0.3053444041632557,0.313069836834253,0.3206377749805191,0.3275120837482694,0.3342613580368582,0.340797077881464,0.3467194138448622,0.3524221655027661,0.3582010721736604,0.3595685877991237,0.3610437895896447,0.3623452088798623,0.3635548744343401,0.3645531643125547,0.3646149134895116,0.3644902743458151,0.3654610558128839,0.3668463842533162,0.3678008832942943,0.3687271362911546,0.3698540493376695,0.3697049924357035,0.3706911988539708,0.371764084337928,0.3720189949381621,0.3717569412835685,0.3744539082880221,0.3746672271262435,0.3756792131043509,0.3775188485263879,0.3788747346072187,0.3807103413654618,0.3781204672112375,0.3815416587946344,0.3836108781598179,0.3830113462128181,0.3803418803418803,0.3828603227601558,0.3892284186401833,0.0,2.533134743980028,59.49247325510355,216.4721162945789,333.4908915716288,fqhc2_100Compliance_baseline,53 -100000,95877,40770,381.4783524724386,7414,76.06620983134641,5715,59.02354057803228,2321,23.81175881598298,77.3584022892406,79.64061354714913,63.35300198276878,65.04142798742329,77.07227756432178,79.35489865300362,63.246877789469885,64.93827491055696,0.286124724918821,285.71489414551365,0.1061241932988963,103.15307686633446,62.53676,44.04701112316966,65226.02918322434,45941.16537143388,209.47868,126.27438737220076,217886.5004119862,131113.58356250456,242.16478,115.19309734317892,249261.9293469758,117541.56105014644,4157.33344,1863.4258500251256,4295890.839304525,1904034.7528350917,1412.3197,617.0188992106553,1458744.1930807182,629243.0605991582,2293.43826,960.0439203102331,2354733.940361088,969497.8487883982,0.38043,100000,0,284258,2964.819508328379,0,0.0,0,0.0,17601,182.97401879491431,0,0.0,22762,234.0603064342856,2183394,0,78387,0,0,0,0,0,41,0.4276312358542716,0,0.0,0,0.0,0,0.0,0.07414,0.1948847356938201,0.3130563798219584,0.02321,0.3063546861015215,0.6936453138984785,25.600371311952447,4.585434357977783,0.3291338582677165,0.1980752405949256,0.2325459317585302,0.2402449693788276,10.922240957145508,5.408196105311663,24.834693313624054,13116.0338646218,64.27699025867284,13.189691666584652,21.1976710855049,14.741237151045498,15.148390355537789,0.542082239720035,0.7508833922261484,0.7028176501860712,0.5756207674943566,0.1172614712308812,0.6787234042553192,0.8908554572271387,0.8658008658008658,0.6952054794520548,0.1640378548895899,0.49732868757259,0.691046658259773,0.649753347427766,0.5419479267116682,0.1032196969696969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136297826241,0.0044380946590874,0.0067146088385349,0.009249763933028,0.0113844277292132,0.0134338839190303,0.0156485594359998,0.0177877505227191,0.020113739624067,0.0221122685776791,0.0242611606457358,0.0263066166369358,0.028428231040999,0.0305720428337773,0.0327606995269845,0.0346198323214802,0.0367335960856117,0.0386484945846504,0.0408657091524649,0.0429064879936743,0.0579840080064218,0.0712345369441658,0.0849234442745533,0.0976583009555812,0.1104779160039185,0.1253433340376082,0.1386619188418698,0.1515222407724454,0.1638663535439795,0.1746411226776161,0.1886475484864475,0.2019255733448723,0.2144014264435674,0.2261058754072551,0.2367139134163908,0.2477642006463895,0.2580087449248204,0.2677561211521375,0.2779738332179695,0.2865082912182991,0.2953732535392237,0.3033728904805374,0.3112667543641341,0.318380376344086,0.3258912276432656,0.3328600180271395,0.3389994229369997,0.3453506321201219,0.3513903326403326,0.3563321900120512,0.3571949637955258,0.3587184583954503,0.359930480981179,0.3607244359375906,0.3607310704960835,0.3609555746984986,0.3616429207479964,0.3630429407401302,0.3646364276030136,0.36525851875739,0.3663839310902559,0.3671865698297416,0.3692252646644076,0.3697550681364075,0.3698709583877048,0.3705920794667364,0.3738991192954363,0.3774108155804865,0.3804481654764836,0.3824455157575999,0.3861345307917888,0.3874986689383452,0.3897907419150285,0.3910956252419667,0.39055178349431,0.3930516886575475,0.3946872052813581,0.392350400987045,0.3937029813318473,0.3985311171240819,0.0,2.278996295318032,62.33543157374852,208.88658411836923,335.5623667053052,fqhc2_100Compliance_baseline,54 -100000,95732,40921,384.3751305728492,7514,77.3409100405298,5929,61.33790164208416,2477,25.477374336689927,77.38965647392791,79.75551096210079,63.34469261111818,65.09347552671328,77.08850640155548,79.45423714585849,63.234095778853856,64.98565902341115,0.3011500723724367,301.27381624230054,0.1105968322643278,107.8165033021321,62.58164,43.99509377701816,65371.70434128609,45956.51796370927,212.91447,127.69562910915045,221782.9565871391,132776.36947705114,243.61622,115.6885098769229,250775.3102410897,118041.10905082706,4325.06993,1920.6322580249555,4475912.223707851,1965083.7575049,1463.86684,630.6922111589597,1511551.9471023274,642227.1337662613,2442.32178,1011.4124505436856,2513622.049053608,1024693.2271915654,0.38171,100000,0,284462,2971.441106422095,0,0.0,0,0.0,17786,185.1418543433753,0,0.0,22959,236.12794050056408,2185251,0,78402,0,0,0,0,0,41,0.4282789453892116,0,0.0,0,0.0,0,0.0,0.07514,0.1968510125487935,0.3296513175405909,0.02477,0.3067391579213554,0.6932608420786446,25.66508939209914,4.617536098644275,0.324337999662675,0.196660482374768,0.2322482712093101,0.2467532467532467,11.050556360784997,5.507970456594061,26.14377396879296,13203.62246857874,66.35352516917686,13.449118687333042,21.774803007603637,15.23440364768246,15.89519982655773,0.5403946702648001,0.7547169811320755,0.6994279771190848,0.5867828612926652,0.1168831168831168,0.7008426966292135,0.9204545454545454,0.8545454545454545,0.7395833333333334,0.1314878892733564,0.4896781354051054,0.683046683046683,0.6456582633053222,0.5463728191000918,0.1132879045996592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473138319423,0.0040955769796133,0.0063325180892844,0.0087165003962045,0.0107316874688475,0.0129322634515905,0.0149672209704224,0.0173334286093445,0.0195232643715757,0.0217313420613554,0.0237399674036717,0.0259121614684927,0.0283734605341612,0.0303669989290715,0.0323978092025868,0.0343017187031697,0.036428024105867,0.0382723990538241,0.0403363265984867,0.0422714248502214,0.0572260853223078,0.0711414875133449,0.084672850128006,0.097255100001052,0.1100749024158666,0.1261436594988523,0.1402743737466976,0.1534589186888037,0.1652212918660287,0.1771728287801267,0.1911326017424642,0.2044057820479529,0.21638228225289,0.2278926817530542,0.2386785081492731,0.2503018286942171,0.2613618616273622,0.2717054089294546,0.2809940790816905,0.2901460689592014,0.2985340568559164,0.3066180082812829,0.3142860522331567,0.3217687156325998,0.3293820443062573,0.3355474767391706,0.3414856999812253,0.3469954049616232,0.3533510328304086,0.3588636753659921,0.3604024676059373,0.361261447359361,0.362692036645525,0.3636350487430935,0.3649696861626248,0.3648524409304036,0.3660270415756309,0.367442699873669,0.3676809000255689,0.3683628713047819,0.3692477421043774,0.3707317073170731,0.3717809136970814,0.3713071676171307,0.3728145066256222,0.3738864651636667,0.3737506425267005,0.3757589172780167,0.3775080505325737,0.379084704937776,0.3799759859610234,0.3802618764203008,0.3792508309895167,0.3797632684230622,0.3786371315937676,0.3813086331789573,0.3871661037764814,0.3889227023737066,0.3972451790633609,0.4037867078825348,0.0,2.2300145520691173,62.98445518574252,221.5062246945824,344.8046820336736,fqhc2_100Compliance_baseline,55 -100000,95750,40878,383.1749347258486,7527,77.26370757180156,5861,60.51174934725849,2453,25.211488250652742,77.34687979821054,79.7059381092731,63.33382307926016,65.08118575972387,77.04915874784143,79.40792166991278,63.22600773200932,64.97589044722265,0.2977210503691054,298.0164393603246,0.1078153472508347,105.29531250121238,62.75346,44.14957675912971,65538.86161879897,46109.21854739395,211.25199,127.19799409782756,219915.6135770235,132139.29905852786,246.15483,117.51621097565952,252458.32898172323,119171.44276781034,4331.73632,1926.030090113576,4477464.302872063,1965741.2847041383,1465.75288,636.5918506459132,1513087.1540469972,647363.9881697238,2435.23272,1002.0707596628704,2505596.2819843343,1014599.7541112122,0.38056,100000,0,285243,2979.039164490862,0,0.0,0,0.0,17704,184.1462140992167,0,0.0,23164,237.34725848563968,2184548,0,78392,0,0,0,0,0,44,0.4386422976501306,0,0.0,0,0.0,0,0.0,0.07527,0.1977874710952281,0.3258934502457818,0.02453,0.318313404657017,0.681686595342983,25.383477487419597,4.682040828074807,0.3245180003412387,0.1914349087186486,0.230165500767787,0.2538815901723255,10.955060463036665,5.241543695940832,25.99160314104609,13176.491042235572,65.89048835019285,13.225071061313429,21.366592326387394,14.966050600975173,16.332774361516854,0.536256611499744,0.7638146167557932,0.6971608832807571,0.5767234988880652,0.1223118279569892,0.705110497237569,0.9095744680851064,0.871578947368421,0.702054794520548,0.1967213114754098,0.480852028098799,0.6903485254691689,0.6391030133146461,0.5421002838221382,0.10312764158918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022192047343034,0.0043605240741491,0.0065482233502538,0.0087604296878969,0.011261902824123,0.0134824138001262,0.0153124681415027,0.0176092282564311,0.0200363926315143,0.0222488430192079,0.0242472087515506,0.0263879334243734,0.0286193208695831,0.0305533808562363,0.0326742073976221,0.0348160476343074,0.0368030817662165,0.0389746462508817,0.041029106029106,0.0428602667832932,0.0578031062124248,0.0715727810031905,0.0848650065530799,0.0971685024804506,0.1096414493792289,0.1248454490695241,0.1382855810305169,0.1512412949869757,0.1642558457074586,0.1758052249916987,0.1905786421970976,0.2040505344154931,0.2167380109080637,0.2276911987943254,0.2388125295274509,0.2506279530390714,0.2607187858919033,0.2714404569167116,0.2805942369457401,0.288975953992966,0.2980856038334221,0.3068316147985159,0.3147961781177111,0.3210255549293072,0.3271996307632512,0.332824427480916,0.3392334076058383,0.3454515377861478,0.3509414903260898,0.3568676606412455,0.3585858585858585,0.3592816020714541,0.3603399193889343,0.3615732643355834,0.3626590936124658,0.3622590587766243,0.3624714539456991,0.3639491620295677,0.3652975863960505,0.3668207553931054,0.3681884017079548,0.3697078115682767,0.3713526733007252,0.3736508866406796,0.3745481014193861,0.376031641397495,0.3775792507204611,0.3790695449762444,0.380774697938877,0.3821755909310178,0.3836091337709161,0.3833153928955866,0.384295405094074,0.3879376831713713,0.3861161094800644,0.3880292671224661,0.3883615995021005,0.3890045814244064,0.3915404401257502,0.3882400322190898,0.0,2.644174781910377,63.63772257450436,215.30138778209343,342.03176291919965,fqhc2_100Compliance_baseline,56 -100000,95762,40823,382.354169712412,7428,76.42906372047368,5714,59.188404586370375,2268,23.35999665838224,77.36211040614715,79.72322077454942,63.32787542470121,65.07555166826693,77.09466092356902,79.4541943356926,63.231254855190144,64.98027521694675,0.2674494825781295,269.02643885681243,0.0966205695110673,95.27645132017426,61.61738,43.34393861844544,64344.06131868591,45261.96284770535,206.96798,124.3366607272469,215616.6642300704,129330.36814712486,245.97286,116.6226483024897,254060.94275391076,119608.91409923036,4129.66724,1837.525318989904,4279153.171404106,1885810.726283789,1403.38196,610.8819830711346,1452007.6439506277,624504.2972741727,2245.20004,916.2462744842468,2313540.673753681,931652.5076942752,0.3802,100000,0,280079,2924.7300599402683,0,0.0,0,0.0,17287,179.97744408011528,0,0.0,23125,238.64372089137652,2190200,0,78638,0,0,0,0,0,38,0.3968171090829347,0,0.0,0,0.0,0,0.0,0.07428,0.1953708574434508,0.3053311793214863,0.02268,0.3165899795501022,0.6834100204498977,25.699976810530647,4.586641445183452,0.3318165908295414,0.2068603430171508,0.2213860693034651,0.2399369968498425,11.069490971176185,5.473393860132698,23.81390064683905,13196.428011687707,64.00672824790952,13.639763889169355,21.195511741133597,14.244412268492892,14.927040349113676,0.5488274413720686,0.7597292724196277,0.6951476793248945,0.6007905138339921,0.1167031363967906,0.7367636092468307,0.9345238095238096,0.8755458515283843,0.7755102040816326,0.1778656126482213,0.4911959753029956,0.6903073286052009,0.6376912378303199,0.5478887744593203,0.1028622540250447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024821940569182,0.0047153548177743,0.0070855750685209,0.0093073351148683,0.0115456996083617,0.0139426406485517,0.0159994289560092,0.0181634403332516,0.020163599182004,0.0224566074445752,0.0244690342628011,0.0264295912812137,0.0288885916811555,0.0309869024432971,0.0330371241911013,0.0351825813655349,0.0370297501320272,0.0392081591151966,0.0410490426394461,0.042955201183247,0.0571497166000354,0.0709600477042337,0.0838419429937708,0.0963748987769095,0.1089969412509229,0.1246985913109691,0.1385700647077543,0.151256120928252,0.1631517094017094,0.1748514936415689,0.1893079458073965,0.2028568336760091,0.2152965875838962,0.2263971384504315,0.2380313002135106,0.2498670507423,0.2603613058818275,0.2701796622754221,0.2799577987271551,0.2893627742910806,0.2977844145020141,0.3061310435993121,0.3143310330133402,0.3213326297611052,0.3285964145168343,0.3358482192388772,0.3427941857699097,0.3481525792615408,0.3531674589091663,0.3581195227536691,0.359476507534302,0.3610628977601454,0.3622322435174746,0.3637428592089088,0.3654032030216063,0.3652044586866193,0.3652889156550128,0.3665812471253039,0.3667606114954309,0.3678969160479726,0.3686695520206846,0.3694476250641608,0.3711109250031406,0.3725955086338015,0.3741278929894625,0.3766081260927428,0.3788068894718832,0.3805045294413689,0.3803577692037881,0.3823260981707075,0.3836669699727024,0.3854221845534484,0.3850802644003777,0.3838621527250645,0.3841183631426163,0.3879976232917409,0.384227418615314,0.3883534136546184,0.3904371584699453,0.3923705722070845,0.0,1.7723416113645252,59.569493980079805,219.0489914798143,332.1424482415329,fqhc2_100Compliance_baseline,57 -100000,95777,41085,384.26762166282094,7585,78.2233730436326,5878,60.96453219457698,2425,25.068649049354228,77.32840490063373,79.68824922384051,63.31625382636724,65.06438552916586,77.03882730390765,79.39480860542129,63.211319472638905,64.96026294904182,0.2895775967260761,293.4406184192256,0.104934353728332,104.12258012404152,62.06596,43.657712083154806,64802.57264270128,45582.66815953184,214.50076,129.24696303950955,223551.0195558433,134538.2117204648,247.35828,116.89687227071536,255491.26617037493,119969.49795019206,4280.45021,1895.403480034344,4441024.348225566,1950816.1249927909,1467.3414,635.6095504665823,1522329.5885233406,653925.0137993273,2387.12822,973.150842649088,2469127.4314292576,995014.7083703493,0.3819,100000,0,282118,2945.571483759149,0,0.0,0,0.0,17857,186.0258725998935,0,0.0,23234,239.82793363751213,2183936,0,78431,0,0,0,0,0,43,0.4489595623166313,0,0.0,1,0.0104409200538751,0,0.0,0.07585,0.1986122021471589,0.3197099538562953,0.02425,0.3178981527708437,0.6821018472291562,25.873608095089,4.604272156393278,0.329363729159578,0.1913916298060564,0.242939775433821,0.2363048656005444,10.978029263868352,5.509130916903629,25.554970417903345,13288.087175808174,65.82804755740396,12.963041257843877,21.73130119708268,15.929500782312571,15.204204320164829,0.5486560054440286,0.7662222222222222,0.7009297520661157,0.5658263305322129,0.142548596112311,0.7084527220630372,0.934375,0.8640167364016736,0.6967741935483871,0.2118055555555555,0.49888442659527,0.6993788819875777,0.6474622770919067,0.5295169946332737,0.1244323342415985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021280261037868,0.0045335605184689,0.0070970231084758,0.009248155450314,0.0115257064963072,0.013710071707953,0.015622450644477,0.018060603585576,0.0202521034176063,0.0224376362687193,0.0246430145664408,0.0268605224248398,0.028877896274052,0.0310140598444661,0.0333323013735384,0.0353923757545687,0.0375549919776409,0.0393785715026497,0.0417026052437414,0.0437956964609327,0.058315154425042,0.0728329986613119,0.0860489011910753,0.0993083731001282,0.1121027564696957,0.1277837083698857,0.1413361611876988,0.153363982717153,0.165557679778701,0.1771334827316299,0.1912095723255538,0.2043750608548895,0.2169471611492477,0.2283364682209877,0.2399176682956897,0.2511685089604147,0.2616643046054613,0.2722453573438379,0.2815796346129827,0.2902937434815995,0.299065853291507,0.3080046335841241,0.315909171671227,0.3231099800734641,0.330118459779621,0.3363193287679684,0.3432476186890554,0.3488653902572802,0.3544436941616455,0.3603125909078888,0.3619844751940601,0.3634407415581549,0.3642400011302149,0.3652080739046074,0.3670139044127509,0.3669956039226536,0.3669580419580419,0.3674762407602956,0.3695689477658041,0.371694592946073,0.3716730932004138,0.3721234724646881,0.3738349147703417,0.3759177350187476,0.3769838394086528,0.3782736224596689,0.3803313460215547,0.3826704545454545,0.3834559988731204,0.3845171588188348,0.3850311469402712,0.3845661905777019,0.3846688135379175,0.3832033042680128,0.3878713106197209,0.3875209180014344,0.3841387856257744,0.389532478278858,0.3974719101123595,0.4009489916963226,0.0,1.535982485793647,62.53548264348621,216.53062359192387,349.6308163057062,fqhc2_100Compliance_baseline,58 -100000,95728,40591,380.3589336453285,7367,75.64140063513288,5727,59.21987297342471,2367,24.32934982450276,77.31464774318667,79.6825396896775,63.30648041847581,65.05689941396537,77.03128710411387,79.39863508115677,63.20189293633803,64.95498273691568,0.2833606390727965,283.90460852072863,0.1045874821377808,101.91667704968664,62.87996,44.23543555955584,65686.06886177503,46209.50564051881,209.02829,125.57546240669907,217762.3788233328,130585.34849437894,242.30215,115.16808817776354,249233.79784389105,117310.2377641188,4195.14381,1862.0720345986492,4339620.581230152,1902660.0417394456,1409.60361,606.7589017913485,1453720.4788567608,615144.7197818097,2337.62178,964.361311933328,2404235.960220625,975073.219950098,0.37783,100000,0,285818,2985.730402807956,0,0.0,0,0.0,17454,181.7232157780378,0,0.0,22753,233.8709677419355,2181811,0,78291,0,0,0,0,0,44,0.4596356342971753,0,0.0,0,0.0,0,0.0,0.07367,0.1949818701532435,0.3212976788380616,0.02367,0.3173498324310389,0.682650167568961,25.54605283794393,4.7144305295921125,0.3244281473720971,0.1936441417845294,0.2379954601012746,0.2439322507420988,11.35208298072284,5.687898412297693,24.91802514875368,13144.358669019088,64.1738770116215,12.835049686996838,21.07233428846025,14.964912175344534,15.301580860819874,0.5491531342762354,0.7601442741208295,0.7104413347685683,0.5979457079970653,0.1195418754473872,0.7067557535263549,0.9085365853658536,0.859538784067086,0.7472924187725631,0.1396226415094339,0.5006849315068493,0.6978233034571063,0.6589427950760318,0.5598526703499079,0.1148409893992932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025831940434584,0.0049578732852754,0.007145902271666,0.0093384818615994,0.0115672211200976,0.0135091079506092,0.0153538527458401,0.0174184721569908,0.0195346840308302,0.0214673996498879,0.0236230160357626,0.0257213266249101,0.0278554970375246,0.0298918083462132,0.0319886868019571,0.0342406980470809,0.0362753321528058,0.0383118702460385,0.0406372182014807,0.0427267612677377,0.0567284801403332,0.0703003150743722,0.0836909195824371,0.0965272080940661,0.1083421219152077,0.123666948793906,0.1374694830697378,0.1497843794920939,0.1626579436854595,0.1745256696428571,0.188870315448908,0.2022842034544784,0.2142615895843547,0.2258608973937441,0.2369677654142635,0.2486700798507379,0.2596524988532238,0.2699757459529584,0.2797233030696066,0.2888033549721376,0.2970649651972157,0.3056144999237957,0.3131182540623888,0.320406888766123,0.3266999148522078,0.3335061088485746,0.3399829689182758,0.3458189040537788,0.3515585542418317,0.3568987583950177,0.3590296205498458,0.360835811034027,0.3618040198881643,0.3629308476045957,0.3648242402595469,0.3655041198042134,0.3652332592827674,0.3660432033719705,0.3679628455382084,0.3693990440557813,0.3711642599277978,0.372395884953121,0.373155630181551,0.3739155775740321,0.3739470444835992,0.3741268803139306,0.3759791122715404,0.3773185452017569,0.3791280442674373,0.3797842588893328,0.3798934019481713,0.3805290778622684,0.3796733443919867,0.3815292029935961,0.3825631252977608,0.3832033593281344,0.3827313594791505,0.382493258660029,0.3844649343392008,0.3903011341415721,0.0,2.41003925757363,59.3202701029081,218.2071594707409,333.7789744632957,fqhc2_100Compliance_baseline,59 -100000,95809,40905,383.2312204490184,7477,76.8508177728606,5834,60.25529960650879,2375,24.29834357941321,77.3504688262772,79.6822587913945,63.33176974345843,65.05989480128711,77.0561379324912,79.38987845633152,63.223931284878205,64.95585677952458,0.2943308937859967,292.3803350629868,0.1078384585802254,104.03802176253409,62.32006,43.82565480430499,65046.1438904487,45742.732733151366,212.14882,128.12719483323707,220791.54359193813,133105.53600613057,246.53643,117.2487994138668,253588.67121042908,119481.2309275572,4236.50391,1891.3540216686947,4378200.513521695,1931367.5641804724,1398.47784,607.0827397184023,1441195.1069314992,615736.4053916296,2343.1431,972.7007593041368,2400664.6765961447,978872.6247087998,0.38063,100000,0,283273,2956.6429041113047,0,0.0,0,0.0,17723,184.32506340740431,0,0.0,23134,237.796031688046,2183064,0,78474,0,0,0,0,0,43,0.4383721779791042,0,0.0,0,0.0,0,0.0,0.07477,0.196437485221869,0.3176407650127056,0.02375,0.3159633960345704,0.6840366039654295,25.710074078596733,4.602643964232247,0.3213918409324648,0.2050051422694549,0.2332876242715118,0.2403153925265684,11.034371063034596,5.413478120662658,25.23890045038928,13219.448219793408,65.75769407228093,14.046183297009744,21.08805958687816,15.194296778572555,15.429154409820454,0.5356530682207747,0.7566889632107023,0.6917333333333333,0.5686994856722998,0.1062767475035663,0.6925207756232687,0.9090909090909092,0.8466386554621849,0.7611464968152867,0.1258278145695364,0.4840546697038724,0.693127962085308,0.6390278770550393,0.5109837631327603,0.1009090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0046338075296837,0.0071653303562366,0.0095201324893571,0.0121142461907764,0.0141268256910635,0.0161541991739329,0.0182174658933093,0.0202241217128133,0.0224392441086747,0.0245380529521543,0.0266573564445904,0.0286404771698889,0.0306388325317459,0.0326722564277095,0.0347175581984067,0.0367801575553048,0.0386262978290858,0.0406131462717588,0.0429007172675126,0.0582516169413728,0.0723292139765384,0.0857103933938339,0.0986772292207314,0.1112035905432171,0.1275046499830909,0.1408803164134157,0.1530966108546263,0.1657004366718981,0.1768727896259779,0.1906068726525253,0.2039505692322662,0.2157143943591582,0.2272762054679216,0.2385384691553619,0.2498282472353345,0.2603303940171894,0.2709376793814085,0.2802557899160618,0.2889996562392575,0.2977134587554269,0.3057102738123098,0.3134529785017521,0.3211806596252293,0.3279499933113621,0.3342180305405706,0.3407734363244219,0.3466988050146025,0.3529373596854358,0.3582407407407407,0.3598994988450472,0.3613427971718957,0.3631082780942151,0.3642110452219048,0.3651974302025728,0.3658124385447394,0.3653063818967709,0.3659782769930612,0.3679300291545189,0.3689818468823994,0.3692325047944947,0.3688752231700059,0.3689357138350893,0.3696423757750022,0.3711542182662539,0.3734336496618256,0.3755329803977679,0.3804787166856132,0.3822556814184197,0.3835403106656551,0.3855730501647748,0.3868885688376807,0.3888572333016777,0.3893351694591079,0.3897615442846328,0.3915992384578772,0.394429055093875,0.3975535168195718,0.4052936311000827,0.407436096049574,0.0,2.444481910539564,63.868306045816375,218.69674985666856,335.27318145572696,fqhc2_100Compliance_baseline,60 -100000,95718,40793,382.5821684531645,7446,76.44330220021313,5833,60.36482166363693,2435,25.031864435111476,77.30949638025908,79.66865041736393,63.31695901961641,65.05900518050879,77.0093253835099,79.36834718183337,63.20740514581479,64.95226362780095,0.3001709967491734,300.3032355305635,0.109553873801623,106.74155270784524,62.458,43.991365956530295,65251.864853005696,45959.11527249868,211.88326,127.54051812730512,220803.3076328381,132687.44450083072,248.25456,118.27781496515934,255760.6092897888,120737.3058244302,4223.21562,1890.461213691352,4372959.171733635,1935847.6500672305,1414.36362,618.2647977625612,1460911.9183434672,629199.1556055928,2402.0289,991.2931496437084,2471589.4816022064,1003763.357512977,0.3792,100000,0,283900,2965.9938569548044,0,0.0,0,0.0,17695,184.27046114628388,0,0.0,23316,239.9548674230552,2181739,0,78305,0,0,0,0,0,39,0.4074468751958879,0,0.0,0,0.0,0,0.0,0.07446,0.1963607594936708,0.3270212194466828,0.02435,0.3223583460949464,0.6776416539050536,25.45889904730712,4.615613262965051,0.3344762557860449,0.199211383507629,0.2262986456368935,0.2400137150694325,11.298183439528962,5.801690505520393,25.87506396300704,13163.654227301477,65.89920716473131,13.55648292832915,22.205579661042695,14.75688765412858,15.380256921230869,0.5414023658494771,0.7426850258175559,0.7006663249615582,0.5840909090909091,0.1121428571428571,0.7123674911660778,0.9011299435028248,0.846,0.7543859649122807,0.1847826086956521,0.4866455409687641,0.6732673267326733,0.6505858028945555,0.5371980676328503,0.094306049822064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002187541142,0.0047340037304354,0.0066958850742634,0.0089684732266189,0.0115081583896711,0.0137103423005282,0.0157875961881465,0.0178733655210428,0.0201034299497158,0.022044600914943,0.0242829906312142,0.026500877886501,0.0284938662608355,0.0304425289131934,0.0325285424036468,0.0347367877253706,0.0367115858328675,0.0388823779545525,0.0408784766972934,0.0427730610969321,0.0572780150583222,0.0711639104040192,0.0849057593270471,0.0974142735465146,0.1100484018938954,0.1261025912215758,0.1389720082341206,0.1518177463139405,0.1639265455244688,0.1760069489126238,0.1899395597884054,0.2026591022281891,0.2153732301631351,0.2274209788985202,0.2385619115784837,0.2488967734782126,0.2595522187960852,0.2704042543602686,0.2800390900206813,0.2889706809764599,0.2970215624059105,0.3042852293610197,0.3123985738145722,0.3198396601178546,0.3272851096949944,0.3343908159486483,0.3402730802956282,0.3459847316569593,0.3516862826518562,0.3574482731232046,0.3589393775664578,0.3606270094244594,0.3611122891838783,0.3619827523733603,0.3633936030552572,0.3633985721319547,0.3639722275304159,0.364921319000677,0.3659396608070453,0.3669539867916719,0.3675245954264781,0.3692507233363264,0.3712153247631935,0.3710529882097845,0.372218705876625,0.3733249085117026,0.3730864768066547,0.3754291163382072,0.3749955615523914,0.3762610088070456,0.3798410437818716,0.3824333744436699,0.3840966921119593,0.3876369810155888,0.3890321964268654,0.3906719557639139,0.3954898911353032,0.3788068418856904,0.3808724832214765,0.3845854418061502,0.0,2.245800348396381,62.55596687336285,220.69523076614067,341.2880931311093,fqhc2_100Compliance_baseline,61 -100000,95735,41186,386.0970387005797,7549,77.58917846137776,5907,61.11662401420588,2427,24.985637436674157,77.40440741590693,79.76174656236205,63.3594678928421,65.0993890058363,77.1060654967296,79.46209017248526,63.25000858037865,64.99189893657683,0.2983419191773322,299.65638987678744,0.1094593124634499,107.49006925946958,62.0862,43.680836679481935,64852.14393899829,45626.82057709504,212.50798,128.23469873729655,221375.9753486186,133348.31434407114,250.09477,119.02727407189832,257846.43025016977,121621.15055075876,4267.4077,1913.154615440268,4418605.92259884,1960034.5270803017,1469.19468,642.6870234286135,1516402.7785031598,653295.6221854796,2390.3841,993.3036585874776,2463082.362772236,1008274.0411263476,0.3834,100000,0,282210,2947.8247244999216,0,0.0,0,0.0,17792,185.2405076513292,0,0.0,23485,241.8969029090719,2186901,0,78401,0,0,0,0,0,41,0.4178200240246514,0,0.0,0,0.0,0,0.0,0.07549,0.1968961919666145,0.3214995363624321,0.02427,0.3074120603015075,0.6925879396984924,25.446896976754115,4.679671217041177,0.3233451836803792,0.2043338412053496,0.2332825461317081,0.239038428982563,11.192444468411566,5.560090067356826,25.68132112741293,13260.240254797762,66.21318164500914,13.877396335860384,21.598327217201977,15.263606133889375,15.47385195805741,0.5418994413407822,0.748135874067937,0.694240837696335,0.5805515239477503,0.121813031161473,0.7077028885832187,0.9269662921348316,0.8559322033898306,0.7845659163987139,0.1619047619047619,0.4877610599595778,0.6733254994124559,0.6411682892906815,0.521087160262418,0.1103008204193254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025008352992396,0.0047935140613123,0.0069288047558179,0.0091809272330269,0.0112655435014691,0.0134364820846905,0.0159388535031847,0.0182545432282685,0.0203428968448585,0.0226451777948324,0.0248024515481034,0.0269313271684131,0.0292481829116591,0.0313732760662896,0.0335541385501145,0.0357146548961639,0.0376844612437218,0.0395954356846473,0.0416428504619477,0.0434221078834716,0.0581111273516944,0.0724369237853054,0.0855614412335448,0.0985638588670675,0.110990482012796,0.1271650629163582,0.1406110757479312,0.1539911001341367,0.165694506762387,0.1769222520107238,0.1911059892944458,0.2046162835995325,0.2166119172449801,0.2283036612571628,0.2394167812929848,0.250357210106,0.2612441686569496,0.271988033111391,0.2812960903995825,0.2901833255086968,0.2983744161309716,0.306468568224823,0.3149718848934461,0.32200370613904,0.3286666666666666,0.3352482409093145,0.3414143182215998,0.3480377205022622,0.3540551028327512,0.3596885334457634,0.3603560001075529,0.3618451808057198,0.3628517929296485,0.363939682814802,0.3653449325277237,0.3649950233519639,0.3661315626832321,0.3668254228937428,0.3677445819375128,0.3692016296190408,0.3708280900775689,0.3722277325927395,0.3734081452528054,0.3756053811659193,0.3768518071707764,0.3770921187039995,0.3796994629185236,0.3810695693327023,0.3833750837949405,0.3861441455822492,0.3889600878798975,0.3886093565999358,0.3892192838162723,0.3887741836812725,0.3888156655996987,0.3893437759582295,0.3895662910943047,0.3878008975928192,0.3853467561521252,0.382,0.0,2.236438082198429,64.20242272825078,219.1314461319608,340.6785517889495,fqhc2_100Compliance_baseline,62 -100000,95763,40787,382.42327412466193,7560,77.99463258252143,5830,60.451322535843694,2372,24.50842183306705,77.33232137485312,79.6986178329531,63.31916690730778,65.07143311888139,77.04317212110709,79.40455834447918,63.21421101723799,64.96683085885356,0.2891492537460323,294.0594884739198,0.104955890069796,104.60226002783202,61.4009,43.17413304750286,64117.33132838361,45084.12753099095,210.50612,126.316539134846,219389.79564132285,131475.27660458212,241.13408,113.72917113017574,249262.82593486,116907.6940660638,4222.97608,1872.3940545085452,4382405.1878074,1927822.4935607133,1436.29892,615.157002789057,1488329.6053799484,630915.7187915407,2344.15568,965.469341875896,2423550.9748023767,986362.4494430316,0.38021,100000,0,279095,2914.424151290164,0,0.0,0,0.0,17513,182.41909714607937,0,0.0,22712,234.56867474912025,2191962,0,78657,0,0,0,0,0,51,0.5325647692741455,0,0.0,1,0.0104424464563557,0,0.0,0.0756,0.1988374845480129,0.3137566137566137,0.02372,0.3111305872042068,0.6888694127957932,25.40906561353834,4.634354518594963,0.3332761578044597,0.1943396226415094,0.2325900514579759,0.2397941680960549,10.90000519232079,5.307514300853912,25.13690952736101,13182.725305204667,65.46906571696654,13.199286325876653,21.772127536146627,15.169783947528671,15.327867907414584,0.5524871355060035,0.7899382171226832,0.6984045290787442,0.5899705014749262,0.1208869814020028,0.7054845980465815,0.9197530864197532,0.8622222222222222,0.7278911564625851,0.1482889733840304,0.5072238275172261,0.7379480840543882,0.6490288010716678,0.551789077212806,0.1145374449339207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0048788404385884,0.0070668507838518,0.0091775754126351,0.0111906893464637,0.0131722374466437,0.0151240107693562,0.0172334582282616,0.0195695516589131,0.0216113841113841,0.0238759149529452,0.0263541538335181,0.0283399144455412,0.0305683152409005,0.0324993551715243,0.0345928850486801,0.0365921845554888,0.0385724660234464,0.0406547155105222,0.0426074820863189,0.0567670546479461,0.070905438490029,0.0843463212543919,0.0971462819650067,0.1095377672810088,0.1250502400947686,0.1375505310401171,0.150345928685471,0.1625408488007005,0.1746384037226457,0.1883858182914746,0.2017269549974572,0.2146089415859893,0.2266552923420172,0.2379967206259422,0.2491140249844954,0.2597783754226602,0.2694943674810655,0.2794443120296911,0.2891426869501466,0.2978538685928601,0.3060539034979929,0.3137923279953603,0.3209730014865966,0.3279053093366063,0.335207585790207,0.3413000475749305,0.3474521279979642,0.3534044978754275,0.3597016895459345,0.3610280449365554,0.3631054856969714,0.3651050991780976,0.3654794441311295,0.3660808618919361,0.3661840046630058,0.3658478454302784,0.3663851990848188,0.3672327022493067,0.3677917794468245,0.3679200829328056,0.3694640085949624,0.3703484937979917,0.3718211510305214,0.3738668864220272,0.3751575630252101,0.3758137134008201,0.3778497491585699,0.3803190548618725,0.3823139632946468,0.3837423030971418,0.3862339898826821,0.3891304347826086,0.3930087198086272,0.3956439393939394,0.3948559180757323,0.3962321948230969,0.3949817887494941,0.3885525591634562,0.3934108527131782,0.0,1.5785459884764343,59.378534983466935,229.11857819348504,340.6388974553241,fqhc2_100Compliance_baseline,63 -100000,95724,40979,383.7386653294889,7537,77.48318081149972,5801,60.00585015252183,2354,24.12143245163177,77.41699606751023,79.77009588966982,63.36600846061516,65.10046730825248,77.12897860634875,79.48413441235527,63.261778325831095,64.99995909512002,0.2880174611614734,285.9614773145438,0.1042301347840677,100.50821313245706,61.74564,43.47050754654075,64503.82349254106,45412.33916942538,213.42553,129.03968428271344,222380.0405331996,134224.6712242629,252.84665,120.66723415162254,260658.85253436965,123233.7523490525,4196.45694,1871.7092845238387,4343617.358238268,1915023.0083613712,1435.53403,622.756211656396,1482645.6687977936,633560.989570426,2305.40218,951.3523422542252,2365461.9113284023,957478.3052165709,0.38081,100000,0,280662,2931.9919769336843,0,0.0,0,0.0,17763,184.95883999832853,0,0.0,23664,243.8155530483473,2187104,0,78451,0,0,0,0,0,55,0.564121850319669,0,0.0,0,0.0,0,0.0,0.07537,0.1979202226832278,0.3123258590951306,0.02354,0.3084932881696148,0.6915067118303851,25.846148158986203,4.623115216565553,0.3413204619893122,0.1901396310980865,0.2409929322530598,0.2275469746595414,11.410118688745811,5.8915254556404015,24.918210086334668,13255.751152455568,65.10605815434224,12.832046216010642,22.230258119562684,15.689243628584284,14.354510190184604,0.5552490949836235,0.7533998186763372,0.7,0.5951359084406295,0.1303030303030303,0.7229254571026723,0.9261363636363636,0.8521560574948666,0.7431192660550459,0.171875,0.5007992692395524,0.6724367509986684,0.6503683858004019,0.5499533146591971,0.1203007518796992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0045588548156703,0.0068058260305095,0.0092405487464332,0.0117537009923539,0.0139355442903967,0.0160027724548456,0.018075117370892,0.0202546651133321,0.0224150101793405,0.0250338156330696,0.0271762556702723,0.0293691341399479,0.0314916842593069,0.0335888257321765,0.0355057712378452,0.037612978703579,0.0395370063060073,0.0416653675469501,0.0434714669666854,0.0587977320427278,0.0727843465522653,0.0864465636441842,0.0995120104328804,0.1115423557205534,0.1267952704274806,0.1403706021489409,0.1538682588843832,0.16610227430537,0.1773953139241863,0.1919266963843487,0.2051362490669724,0.2178364161975351,0.2296861858417712,0.2403291548104283,0.2514105542648523,0.2621372208104855,0.2721418697953541,0.2818916743199882,0.2910915791160246,0.2997514019772215,0.3073255107288112,0.314069133524911,0.3207908697891093,0.3277128324653726,0.3344338228047699,0.3412041321693889,0.347356105501437,0.3527477932230592,0.3582794563926639,0.3594856604281675,0.3606676941707492,0.3617720020296555,0.3629047432946864,0.3646278138995105,0.365981910164035,0.3656239115980116,0.3662849831031202,0.3672692511223775,0.3686161963671366,0.3682752424094942,0.3692222639050684,0.3707353897125123,0.3729995529727313,0.3746870184899846,0.3755192684519922,0.3767127197990408,0.3791639143153723,0.381707017112337,0.380833134589395,0.3821319612039525,0.3825235485072641,0.3852412488174077,0.3886328725038402,0.3901657874905802,0.3918710747718924,0.3918504901960784,0.3923154701718908,0.3851851851851852,0.3868391023202738,0.0,2.3290043338894293,62.69319661538285,217.0420216662218,334.0851472906708,fqhc2_100Compliance_baseline,64 -100000,95695,41081,386.3420241391922,7526,77.52756152359058,5878,60.83912430116517,2450,25.23642823554,77.3508434030137,79.74235839189178,63.31502979323547,65.0834351416209,77.0511716939329,79.44152482352605,63.20682748160411,64.97763315452312,0.2996717090807976,300.83356836573216,0.1082023116313593,105.80198709777731,62.66304,44.11621392527828,65482.04190396572,46100.85576600478,213.58688,128.27199874761055,222620.37724019017,133467.46303109938,252.23223,119.92824776168769,260185.38063639688,122683.12060693272,4284.86406,1909.1934780374015,4437491.446784054,1954947.3410704848,1430.60151,618.0861139160378,1477945.890589895,628878.1272961355,2419.3043,998.174087331422,2493418.402215372,1012148.5451704796,0.3817,100000,0,284832,2976.4564501802606,0,0.0,0,0.0,17869,186.13302680390825,0,0.0,23607,243.27289827054707,2180502,0,78244,0,0,0,0,0,40,0.4179946705679503,0,0.0,0,0.0,0,0.0,0.07526,0.1971705527901493,0.3255381344671804,0.0245,0.3309361594751451,0.6690638405248549,25.44468080105992,4.576032942791597,0.3331064988091187,0.1907111262334127,0.2320517182715209,0.2441306566859476,11.006015301278676,5.479806460744109,26.00712032859293,13223.3285817718,66.05477081490112,12.955975904101813,22.047544096639943,15.236404889284524,15.81484592487483,0.5292616536236815,0.7627118644067796,0.6726251276813074,0.5659824046920822,0.116376306620209,0.7001385041551247,0.9476744186046512,0.8418891170431212,0.7328990228013029,0.1633986928104575,0.4736129905277402,0.6808236808236808,0.6165873555404486,0.5175023651844843,0.1036315323294951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.0049487379704089,0.0071668578505517,0.0092792096918448,0.0115668680949765,0.0138037122308021,0.0158728539513817,0.0180668750127663,0.0201879710782258,0.0225210462710718,0.0245103066352169,0.0265298576446662,0.0285017794326387,0.0305078459049836,0.0325094174105991,0.0343006006223315,0.0362400671342581,0.0381549447812007,0.0400162270117333,0.0420801367578385,0.0571536003008084,0.0719640650849161,0.0853984948200396,0.0978275735100731,0.1102355559775098,0.1257617435463394,0.1393211200033965,0.1523831835413383,0.1643276291458683,0.1763740154945597,0.1908621563069229,0.2039576950972644,0.2168061192292208,0.2289797347572985,0.2399075246325755,0.2514165326828186,0.2626725023446921,0.2734273843971311,0.2824526330137671,0.2913049959294125,0.2996514065341008,0.3078535871156662,0.3151107107296951,0.3222422278237906,0.3289460879719735,0.3354800503368125,0.3421092184368737,0.3480907863565733,0.3540981057759581,0.3592535814346884,0.3604484861568352,0.3616528606673742,0.3626889666064982,0.3638401897818665,0.3638943786498655,0.3645389636257776,0.3644862774925524,0.3655935183815675,0.3672487587741825,0.3669005512994917,0.3680411983610871,0.3687795797936593,0.3693553802249454,0.3697153104685048,0.3720357995802475,0.3729602510460251,0.3726886805891906,0.3736626809314034,0.3755185263305913,0.3788551494489812,0.3816950077293807,0.3824909362337385,0.3826598368431038,0.3815264127764127,0.3829442591710338,0.3839285714285714,0.3802204626610774,0.3797852947133887,0.381957773512476,0.3888018794048551,0.0,2.3115626035635186,63.93827480595744,216.89201997768933,342.38952295538536,fqhc2_100Compliance_baseline,65 -100000,95722,41005,384.4466266897892,7498,76.96245377238253,5814,60.142913854704254,2268,23.32797058147553,77.26691653433518,79.62758697932486,63.2951211478972,65.03965813921482,76.98522051596382,79.34290294477793,63.19205241711721,64.93746622174203,0.2816960183713632,284.6840345469275,0.103068730779988,102.1919174727941,62.2457,43.79341051645105,65027.579866697306,45750.622131224845,210.8271,126.7021823354993,219656.9440671946,131772.3222827556,246.8016,117.85236033037202,253757.004659326,119987.35926252411,4179.86796,1874.4268541271103,4328474.593092497,1919998.8969381212,1404.42253,607.6915454198221,1452007.8351894026,619669.4129038487,2234.013,934.3328882846868,2300910.511690103,950923.4320795132,0.38179,100000,0,282935,2955.799084849878,0,0.0,0,0.0,17554,182.75840454649924,0,0.0,23172,237.9181379411212,2182326,0,78388,0,0,0,0,0,43,0.4492175257516558,0,0.0,0,0.0,0,0.0,0.07498,0.1963906859792032,0.3024806615097359,0.02268,0.3095928400352956,0.6904071599647044,25.89156831525124,4.514624524517655,0.3410732714138287,0.197282421740626,0.2373581011351909,0.2242862057103543,11.195748499449529,5.739369168376438,24.462137022501903,13273.639787864318,65.66226529403527,13.270384224187262,22.43864230639245,15.370783264531116,14.58245549892444,0.5540075679394565,0.7523975588491717,0.7095310136157338,0.5760869565217391,0.1196319018404908,0.7034434293745608,0.913946587537092,0.885480572597137,0.7075471698113207,0.1254480286738351,0.50557959462537,0.6851851851851852,0.6519410977242303,0.536723163841808,0.1180487804878048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0044713015441705,0.006636359946422,0.008959681433549,0.0113601692329597,0.0135827232647409,0.015811203425251,0.0180377905493002,0.0204859797798063,0.0226621356043236,0.025032546410669,0.0269701449632458,0.0289680703378065,0.0310237209925118,0.0332002434822082,0.0351557250803692,0.0373005270951774,0.0393729379785446,0.0411421681236551,0.0431357839459864,0.0580876901711409,0.0722322821046902,0.08534461047683,0.0974380556578462,0.1098368957440972,0.1256732875480163,0.1388762088769519,0.1522125778795463,0.1646885224866876,0.1759781033649975,0.1909515237099399,0.2040674807406845,0.2166479729067526,0.2279969775616807,0.2392921290123524,0.2514735428298682,0.261788945173158,0.2724670993329727,0.2822621874325445,0.2906103447880476,0.2988457842762708,0.3071095707561529,0.3147246603413761,0.322947535122554,0.3295548528338604,0.3353700686318076,0.3420808349431747,0.3487049341308201,0.3546242061379014,0.3601155380069694,0.3616661480810076,0.3631623352374102,0.3647511965787759,0.3660405840856968,0.367117150750392,0.3671338364392422,0.3685502119386812,0.3690726079698527,0.3700511020492438,0.3718718538760247,0.3730920891270305,0.3739097534748496,0.3758535399446124,0.3779179810725552,0.3792367227115025,0.3805681848046043,0.3808989087558665,0.3820739703354764,0.3844999464036874,0.3858532630725577,0.3859811784340086,0.3886302111532214,0.3875735858715127,0.3896945387226165,0.3921027592768791,0.391054771585745,0.3892576014817101,0.390403936846422,0.388205701509223,0.3858206032119076,0.0,2.277986042725108,63.02805630652976,219.60950802509447,337.1691930645544,fqhc2_100Compliance_baseline,66 -100000,95713,40687,382.0797592803486,7584,78.1085119053838,5825,60.367975092202734,2371,24.521224911976432,77.288290147924,79.65737429191775,63.294707477804174,65.0439024280059,76.99789418122799,79.36292119845126,63.189233932680224,64.93898550446808,0.2903959666960105,294.45309346648685,0.1054735451239494,104.91692353781444,62.36802,43.83682489553243,65161.493214087954,45800.28302898502,212.06888,127.78332343914288,221037.14228997103,132976.42267940915,245.53984,116.60222242062808,253141.6944406716,119203.5186235754,4238.47882,1889.0800311452224,4396209.208780416,1941580.486606024,1460.20345,635.015705384806,1514603.1678037466,652455.137112833,2349.56206,969.684838275874,2431108.522353285,992093.6125294112,0.37928,100000,0,283491,2961.886055185816,0,0.0,0,0.0,17734,184.7815866183277,0,0.0,23018,237.1569170332139,2179458,0,78295,0,0,0,0,0,40,0.3970202584810841,0,0.0,0,0.0,0,0.0,0.07584,0.1999578148070027,0.3126318565400844,0.02371,0.313147708827569,0.686852291172431,25.90016124802791,4.5843542944172935,0.3301287553648068,0.1943347639484978,0.231587982832618,0.2439484978540772,11.117205358248995,5.533989421816453,25.260183824201707,13219.466806609227,65.46238075162763,13.082256863840064,21.6115882285759,15.04498707327028,15.72354858594138,0.5469527896995708,0.7579505300353356,0.6931877275091004,0.6189770200148258,0.1125967628430682,0.6937269372693727,0.896551724137931,0.8434579439252337,0.7913907284768212,0.1764705882352941,0.5024608501118568,0.7035670356703567,0.6501672240802676,0.5692454632282713,0.095067264573991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268191899857,0.0042781399215336,0.0060681089418354,0.008411385846929,0.0107599056219998,0.0128501461169546,0.0150588283273179,0.0172408513244526,0.0194727534780075,0.0214910709717034,0.0237768257937565,0.0259181704337829,0.0279659884229033,0.0297322348094747,0.0316142341413099,0.0338459312540046,0.0360016152579753,0.0381809313282895,0.0401801501945039,0.0422207862592237,0.0576414926838438,0.0719184177738689,0.0853877396807405,0.0986993033485572,0.1109093787934765,0.126688688434337,0.1406561902739435,0.1538027208710196,0.1653283149599563,0.1770605162564961,0.1913080987814084,0.2042795232936078,0.2163978348236165,0.2277355639739856,0.2389249917391783,0.2500998668442077,0.2613616031490428,0.2712745562397095,0.2804286982046556,0.2895008843053035,0.2983074834982541,0.3061983228757403,0.3144559296488375,0.3214290005888078,0.3283620280001462,0.3344790069729489,0.3408474065138721,0.3463537343736033,0.3521289735422219,0.3590229298856817,0.3606218596358528,0.3621782916822081,0.3635720050405652,0.3644748500297761,0.3655492953536682,0.3655477058995552,0.3655871218146534,0.3669107460914308,0.3683125450984434,0.3692255190746462,0.3713310193918358,0.3728351858111466,0.3748444125651357,0.3763899809053128,0.3781912069880797,0.3799801317578166,0.3797152922979979,0.3815447926559037,0.3822852896422378,0.3846215490643908,0.3867785358657569,0.3856159965598796,0.3869739097314797,0.3893030046876201,0.3904779826872412,0.3956434237007221,0.3919475369833765,0.3890012131014961,0.3924291938997821,0.3932370820668693,0.0,1.9521451386878537,60.152467218529495,223.76510332800564,342.847263967208,fqhc2_100Compliance_baseline,67 -100000,95838,41052,385.5568772303262,7568,77.92316200254596,5847,60.51879212838332,2359,24.311859596402265,77.36488025655099,79.67944646180123,63.35773544642036,65.07114122095683,77.08665155825757,79.39851337581796,63.25734367426403,64.97175880857979,0.2782286982934181,280.9330859832784,0.1003917721563283,99.38241237703949,62.1291,43.7861480865398,64827.20841419896,45687.66886468812,212.62354,127.500069682395,221370.2080594336,132550.0424491277,248.8537,117.81422264147233,256192.3036791252,120335.81836902036,4291.81815,1895.5286998450877,4446387.132452681,1946032.9408429724,1436.69241,613.0146304533209,1489502.994636783,630054.989099648,2337.74698,955.8311386922566,2412021.9745821077,974579.3149762418,0.38193,100000,0,282405,2946.6912915544985,0,0.0,0,0.0,17670,183.86235105073143,0,0.0,23408,240.89609549448028,2189142,0,78563,0,0,0,0,0,46,0.4695423527202154,0,0.0,0,0.0,0,0.0,0.07568,0.1981514937292174,0.3117071881606765,0.02359,0.314504969178513,0.685495030821487,25.44411620425525,4.6868961571078165,0.33658286300667,0.1920643064819565,0.2250726868479562,0.2462801436634171,11.04416408851229,5.382092335099418,24.97547721393362,13221.04316134823,65.68490031846123,13.103481027032968,22.15733618582324,14.650504913656654,15.773578191948358,0.5435265948349581,0.7791629563668745,0.7017276422764228,0.574468085106383,0.1152777777777777,0.7082111436950147,0.9248554913294798,0.8791208791208791,0.7233333333333334,0.1102661596958174,0.4934195850992638,0.7142857142857143,0.6483807005948447,0.530511811023622,0.1163976210705182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017725108882,0.00482582424267,0.0070724084747138,0.009192296753748,0.0111448937879419,0.013358856351566,0.0154029643825562,0.0176919778671621,0.0198008668629375,0.0216490096729617,0.0238080596892551,0.025902322383342,0.0277497995847807,0.029672704816797,0.0317170717628383,0.0338288427789821,0.0357774536879014,0.0377864809979692,0.0400996781227286,0.042032981324455,0.0571056062581486,0.0709291022545545,0.0844306170977237,0.0976657251162937,0.1094882055602358,0.1245578655066465,0.1383507229489963,0.1514684467309389,0.1645102452240509,0.1769065187358771,0.1906078239451011,0.2041286138881383,0.2164528498647577,0.2279452712958211,0.2389051872850534,0.2505777630342234,0.2618042483041313,0.2718881590028634,0.2806141512959,0.2899703901864618,0.2980932472542068,0.3069719650175729,0.3152626105044201,0.3222117213575624,0.329585877839426,0.3370771295920001,0.3433666387384796,0.3488032134640074,0.3543378404606327,0.358980780891619,0.3603493285249078,0.3618997811755962,0.3632990505212962,0.3649051686694657,0.3654880574553365,0.3656273997849792,0.3661098838225711,0.3681190012863221,0.3692926100250799,0.3697752082734846,0.3712747875354107,0.3719859710653222,0.3720944961682184,0.3732476898805499,0.374495638937882,0.3766584508888772,0.3770308924485125,0.3791139240506329,0.3826317651220375,0.3848994500863003,0.3851872373828323,0.3845281796588209,0.3860438218852406,0.3874223602484472,0.390089311437626,0.3901469525415562,0.3887937743190661,0.3879114055061064,0.3900669642857143,0.4028048305414881,0.0,1.9055439643841725,60.51429244006627,224.18947908451932,344.039204360917,fqhc2_100Compliance_baseline,68 -100000,95634,40601,380.115858376728,7464,76.79277244494635,5824,60.27145157579941,2411,24.792437835916097,77.2563444549925,79.66691655461398,63.27473565930678,65.0558458139134,76.96361513480089,79.37425659480745,63.16834622604469,64.95249560218205,0.2927293201916114,292.65995980652804,0.1063894332620876,103.35021173133896,62.304,43.84055954343369,65148.37819185645,45842.02223417789,208.97418,125.28750428350924,217892.0885877408,130384.84668999442,239.18425,113.85215003679102,246256.82288725767,116036.7330178678,4249.3867,1882.3364335444055,4398438.452851497,1923324.7208570223,1463.27302,626.5915850893177,1512545.8832632746,637712.1697711251,2390.43454,981.6997801773304,2459531.714662149,991844.343477887,0.37994,100000,0,283200,2961.289917811657,0,0.0,0,0.0,17529,182.6442478616392,0,0.0,22538,231.8840579710145,2182543,0,78347,0,0,0,0,0,34,0.3450655624568668,0,0.0,0,0.0,0,0.0,0.07464,0.1964520713796915,0.3230171489817792,0.02411,0.3116438356164384,0.6883561643835616,25.73019354578236,4.60179855889833,0.3282967032967033,0.1914491758241758,0.2307692307692307,0.2494848901098901,10.956121179454843,5.296458401630113,25.57595355857197,13226.84677530014,65.19262590417101,12.8070977805876,21.68080137824365,14.88546340892518,15.819263336414576,0.5410370879120879,0.7614349775784753,0.7065899581589958,0.5803571428571429,0.1176875430144528,0.7223858615611193,0.9347826086956522,0.8725701943844493,0.7751677852348994,0.1636363636363636,0.4858934169278996,0.691046658259773,0.6535541752933057,0.5248565965583174,0.1069609507640067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978021978021,0.0044190831416032,0.0068500796638894,0.0091432751211483,0.0110692847695594,0.013396086101688,0.015556144932267,0.0176958600678409,0.0199762698688705,0.0223123732251521,0.0245033656214086,0.0265859599001099,0.0289391053688165,0.0310647379653782,0.0330458137492898,0.0352235099337748,0.0371019240338364,0.0394232467303117,0.0416341481180865,0.0435490095859975,0.058433143119918,0.0722127935969157,0.0850192652941238,0.0976356899237862,0.1099362627157992,0.1252209064838037,0.1388028019528762,0.1522831828250127,0.1649493351575527,0.1766378709019692,0.1905865611625575,0.2045242789972048,0.2166998878105632,0.227865025699475,0.2389235096233386,0.250183166448347,0.2610154703177959,0.2709350166262751,0.2808652851507883,0.2900835168869309,0.2989818637228071,0.3078023498510823,0.3155640453704143,0.3225895548377025,0.3293945669387257,0.3360115699823236,0.342570281124498,0.3489057615006699,0.353986439092822,0.358982162705764,0.3598680920652511,0.3607874037517798,0.3624077405828103,0.3631155764281664,0.3644211061741693,0.3646396048772958,0.3652119839915812,0.3668700699508855,0.3685200200113858,0.3693084482914074,0.3709103302029688,0.3709754733562355,0.3716317761361472,0.3720741625177409,0.3725818181818182,0.3730661133145964,0.373516534162922,0.3740746624305004,0.3749336916928953,0.3767739356386168,0.380537066789075,0.3823229886905719,0.3834988540870894,0.3866840330983757,0.3904993454273424,0.3924080664294187,0.3921300516560316,0.3876767676767677,0.3840915281939526,0.3877630553390491,0.0,2.407876165044235,59.7519168822181,217.09833927637945,347.9939742207315,fqhc2_100Compliance_baseline,69 -100000,95697,40673,381.3076689969382,7446,76.60637219557562,5762,59.67794183725717,2399,24.72386804184039,77.32722884548278,79.70399365097371,63.32110870231941,65.07602496436019,77.03396817120557,79.40845755507549,63.21473607794916,64.97112251464476,0.2932606742772066,295.53609589822827,0.1063726243702518,104.90244971542496,62.69142,44.08234549201681,65510.32947741308,46064.50096869998,211.68207,127.76119579823512,220688.31833808796,132993.95571254595,243.232,116.08584812575592,250658.5890884772,118648.37002759696,4200.39757,1879.8217997465483,4352918.670386742,1927998.5890326216,1395.24359,608.3121066374512,1444585.3266037598,622269.5974141833,2362.35344,973.5355972076484,2436299.654116639,990393.5573476984,0.3794,100000,0,284961,2977.742248973322,0,0.0,0,0.0,17697,184.39449512523905,0,0.0,22809,234.8453974523757,2181059,0,78319,0,0,0,0,0,55,0.5747306603132805,0,0.0,0,0.0,0,0.0,0.07446,0.1962572482867685,0.3221864088100993,0.02399,0.3091140854047163,0.6908859145952836,25.59426458325439,4.531783539761852,0.328531759805623,0.1992363762582436,0.236029156542867,0.2362027073932662,11.121780119285974,5.606807447515666,25.51869607165604,13143.7556008254,64.68954115246645,13.30427778055155,21.32088814759079,15.0883281879155,14.976047036408612,0.5390489413398125,0.7439024390243902,0.7073428420496566,0.5698529411764706,0.1013960323291697,0.690947666195191,0.9127906976744186,0.8532494758909853,0.6962025316455697,0.1299638989169675,0.4896504139834406,0.6716417910447762,0.6581920903954802,0.5316091954022989,0.0940959409594096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348796241926,0.0045504758236969,0.00687836055595,0.0094254344536193,0.0117753531080627,0.0139289096148167,0.0162135704525523,0.0182917487974017,0.0203096557789458,0.0224165651145405,0.0246333709363142,0.0267960766189082,0.0288514945177017,0.0309840288511076,0.0330560601056803,0.0352230656270036,0.0372649572649572,0.0392122256597662,0.0410035573862572,0.0428931787858572,0.0578668644306798,0.0720572690452019,0.0853088025509776,0.098122139813792,0.1103810498117426,0.125612194167363,0.1391476898915511,0.1521204442125661,0.1643484392026152,0.1764043377060785,0.1898601925852523,0.2034657805582915,0.2159443145358638,0.2270649225654038,0.2378415856839417,0.2489141996099982,0.2595482042009866,0.2699075219944648,0.2788253056498394,0.2878392005867253,0.2959646968889712,0.30385601704938,0.3121216787689975,0.3197241379310345,0.3267483304341479,0.3328848290334527,0.3393007133275665,0.3452913654848867,0.3507162505838999,0.3558279774656828,0.3573570328750101,0.3578707853547542,0.3593231351610944,0.3608814629273025,0.3612291452341548,0.3612564639251416,0.3611172935677721,0.3618417805853032,0.3621997363329738,0.363512837016377,0.3648377226737747,0.3659580369702613,0.3677404432482442,0.3677778776170365,0.3693414391939351,0.3704687048184853,0.373348270711249,0.3759386584708976,0.3771973173314507,0.3797052699022906,0.382142692431859,0.3851413189771198,0.3895241137016927,0.3915204224258425,0.3901077752117013,0.3937341236240474,0.3943860749568763,0.3952765692977004,0.3897349125775521,0.3941778127458694,0.0,2.108626333275783,62.6638062616157,210.35802336635408,338.7375255404695,fqhc2_100Compliance_baseline,70 -100000,95783,40959,383.4292097762651,7512,77.28928933109215,5866,60.71014689454287,2367,24.28405875781715,77.38146625236273,79.70337835645026,63.35451413110488,65.06738278699227,77.08934603515196,79.41266004174402,63.24718135783094,64.96364764129021,0.2921202172107655,290.71831470623977,0.1073327732739386,103.73514570206056,62.5889,43.99957397147587,65344.4765772632,45936.72569399148,210.77319,127.07680198287144,219475.2617896704,132094.00622539638,250.50507,119.07414531507068,258903.1352118852,122260.77149321556,4240.0683,1898.8370143730515,4389400.499044715,1945092.7558888863,1435.93153,622.2239727961628,1486592.412014658,637060.0762099355,2332.81928,970.4969837784482,2395849.9107357254,978810.6393708328,0.38179,100000,0,284495,2970.2034807846903,0,0.0,0,0.0,17607,183.26842967958825,0,0.0,23591,243.58184646544797,2182626,0,78434,0,0,0,0,0,35,0.3549690446112566,0,0.0,1,0.0104402660179781,0,0.0,0.07512,0.1967573797113596,0.3150958466453674,0.02367,0.3225643614336194,0.6774356385663807,25.184605174880137,4.552215371037504,0.3285032390044323,0.2009887487214456,0.237981588816911,0.232526423457211,11.290900818300932,5.776852226536645,25.22224223826997,13204.456893357656,66.14835996502735,13.743054606703662,22.028283463155248,15.3904414908885,14.986580404279945,0.5552335492669621,0.7616624257845632,0.7223663725998962,0.5773638968481375,0.1180351906158357,0.7034722222222223,0.927170868347339,0.838,0.75,0.1428571428571428,0.5070040668775418,0.6897810218978102,0.6818500350385424,0.5309090909090909,0.1114206128133704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781119008565,0.0045806477765616,0.0069587445856706,0.009159964253798,0.0117441304767811,0.0139768308325019,0.0159409654272667,0.0180818171613996,0.0200858193706579,0.0222110820101489,0.0242695570216776,0.026223991463865,0.0284254986794372,0.0305120339297111,0.0327329711228182,0.0349781064111037,0.0370048429156835,0.0391374215955626,0.0412931240455834,0.0433655407938028,0.0576786608782768,0.0717948181323511,0.0848943802311678,0.0977891782218811,0.1094863576940918,0.1247950754651125,0.1383505701405462,0.1507722768061484,0.1633769119029308,0.1751669865231422,0.1899794378236389,0.203339605909199,0.2167690718286118,0.2279534837926243,0.2391024441778824,0.250864438336732,0.2609195658970122,0.2715904870170068,0.2819388763330342,0.2907371317207383,0.298576277469504,0.3059398170381736,0.3142132821569882,0.3210117898221332,0.3280414275989497,0.3351540633515406,0.341621283255086,0.3478515500668406,0.3531914341673476,0.3580589346330123,0.3593832135973366,0.3606451257471834,0.3619392981614482,0.3627060170756809,0.3639373108065791,0.364253880436453,0.3643995175828361,0.3659046052631579,0.3671785390238474,0.3681783243658724,0.3690076364523331,0.3693656258656852,0.3710192420804974,0.3732539860768021,0.3758925125434195,0.3768335730160805,0.3766675236381295,0.3771266540642722,0.3784164553395323,0.3802484918700811,0.3817623326609206,0.3834959219574604,0.3833123425692695,0.3853301850864498,0.3860531309297912,0.3854601886116748,0.387601657204235,0.3811750355763366,0.3870431893687707,0.3920432599459251,0.0,2.0207107448837105,63.896263892395375,228.4207090578409,329.05578784421886,fqhc2_100Compliance_baseline,71 -100000,95765,40606,380.2850728345429,7458,76.75037853077846,5731,59.35362606380202,2330,24.04845193964392,77.31912755708531,79.67156888897102,63.32066847763053,65.05972434312854,77.03874390686089,79.38677093642605,63.218764348245394,64.95821607541497,0.2803836502244223,284.7979525449773,0.1019041293851401,101.50826771356948,62.56888,44.01817236274545,65335.85339111366,45964.780830935575,210.61811,126.66626880507178,219459.5520284029,131796.01167696746,243.15236,115.25804071307644,250864.11528220124,117953.2449843276,4175.29095,1860.730893827546,4327091.171095911,1910246.5960515076,1427.42685,620.1512230494894,1476204.2395447188,633228.5940056274,2306.74004,949.683390682298,2382200.281940166,967671.722446362,0.37847,100000,0,284404,2969.8115177778936,0,0.0,0,0.0,17614,183.4281835743748,0,0.0,22772,234.7621782488383,2184030,0,78411,0,0,0,0,0,56,0.5847647888059312,0,0.0,0,0.0,0,0.0,0.07458,0.1970565698734377,0.3124161973719496,0.0233,0.311556514017506,0.6884434859824939,25.48978610004893,4.670333989931546,0.3205374280230326,0.2018844878729715,0.2339905775606351,0.2435875065433606,11.172993017118694,5.423753650576933,24.68931540374972,13130.127507963747,64.62626168028531,13.516996302858354,20.70562469612469,15.077881173082398,15.325759508219878,0.5442331181294713,0.7528089887640449,0.6902558519324986,0.6092468307233407,0.1167621776504298,0.7016369047619048,0.9240121580547112,0.8292134831460675,0.7755102040816326,0.1521739130434782,0.4960109414178253,0.6847826086956522,0.6458333333333334,0.562559694364852,0.1080357142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021063504440551,0.0044386343598942,0.0066758654275394,0.0087956285929025,0.0110036509340899,0.0131577607365087,0.0152026510323731,0.0174713066209206,0.0197950962148013,0.0219999590507974,0.0239508679113735,0.0259369545127836,0.0282408597727155,0.0305234205185788,0.0325423029302517,0.0345180392926902,0.0367920328788678,0.0389701992593898,0.0408250207813798,0.0428153347844652,0.0573149346582606,0.0711812637943117,0.0847308309473618,0.0971914070304202,0.1089910500627233,0.1238501067946793,0.1372101902721507,0.15027929988828,0.1632498344971918,0.1746098104793757,0.188575428017659,0.2018981040602545,0.2142779457507667,0.2260223048327137,0.2375598217723747,0.2489977185638026,0.2598702936810028,0.2699123507769164,0.2788491005050791,0.2879100238226131,0.2960668758466579,0.3045946736903717,0.3126473550145133,0.3199961585095017,0.3269305629896355,0.3330822797313315,0.339178720950638,0.344979223494022,0.3506267680568892,0.3566801512387298,0.357587123409652,0.3584804191947049,0.3589975546666289,0.3601120090535815,0.3614378792622743,0.3623925842800264,0.3635756641177686,0.3653700346134828,0.3671016306863972,0.3682518587694408,0.3688110411403145,0.3711196788425613,0.3731768579690567,0.3739544112010461,0.3747334754797441,0.3759985284843388,0.3758007526356611,0.3782799987338967,0.3791968866088802,0.3790229312063808,0.3800484837396514,0.3810771781569235,0.3803988821138211,0.3805745975506431,0.3836190476190476,0.3899655213411009,0.3941212680824869,0.4017146356399265,0.405210643015521,0.3949289281598156,0.0,1.908911315201953,59.60232370504976,227.85400321274747,327.7890823360843,fqhc2_100Compliance_baseline,72 -100000,95677,40922,384.1362082841226,7551,77.60485801185237,5835,60.36978584194738,2363,24.321414760078177,77.34181859432726,79.72328682123442,63.3271521787835,65.08503135838758,77.05678225568917,79.43663450690089,63.22297106530086,64.9824735078133,0.2850363386380934,286.6523143335371,0.1041811134826389,102.55785057428568,62.23184,43.7971321674338,65043.67820897394,45776.02994181861,209.71237,125.66544063071407,218549.4423947239,130704.9976804395,243.7555,115.86200775591514,250277.59022544604,117660.3803656778,4221.6609,1884.3968774448613,4372628.500057485,1929759.2393625008,1455.26795,627.6476219861296,1507898.805355519,642883.882214251,2328.8225,963.0827111626102,2399192.5332106985,978248.1873226012,0.38188,100000,0,282872,2956.5308276806336,0,0.0,0,0.0,17490,182.15454079872904,0,0.0,22914,234.99900707589077,2187910,0,78493,0,0,0,0,0,42,0.4389769746124983,0,0.0,1,0.010451832728869,0,0.0,0.07551,0.1977322719178799,0.3129386836180638,0.02363,0.3144978605587717,0.6855021394412283,25.641557600108158,4.63163434543479,0.3367609254498714,0.1914310197086546,0.2377035132819194,0.2341045415595544,11.157676258510516,5.587374642986291,25.08626784642204,13242.85062525663,65.35679959332279,12.928615714179216,22.04463326072554,15.55144007402891,14.832110544389126,0.541216795201371,0.7502238137869293,0.6814249363867685,0.5897620764239365,0.1193265007320644,0.693863319386332,0.915915915915916,0.8503118503118503,0.7172619047619048,0.1408450704225352,0.4914792092706203,0.6798469387755102,0.6266846361185984,0.5490009514747859,0.1136783733826247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0042369015883312,0.0064222882826212,0.0085007414027746,0.0110017488916907,0.0131546794819581,0.0155337430816744,0.0174759858313853,0.0196751806539314,0.0218141244152361,0.0240241163985357,0.0262611946430038,0.0283533260632497,0.0303364418568705,0.0326885760290656,0.0347128125032323,0.036579931814178,0.0388101541815916,0.0406657997399219,0.0426479020067761,0.0566083068694634,0.0711570879621389,0.0845201985747121,0.0974157161496696,0.1096131734126607,0.1251295720420553,0.1393769629063746,0.1528299677457127,0.1650230252262455,0.1773001726671171,0.1920111142223275,0.2048220138235389,0.2188930820346061,0.230299121004067,0.2407951332739293,0.2516779266806955,0.2625686475867304,0.2731097636431134,0.2828314928100421,0.2914963064765504,0.2997940911089004,0.3077543954051493,0.3150433681619709,0.321961160393191,0.3290474685851785,0.3352611848271099,0.3415297123960317,0.3472484076433121,0.353023581601681,0.3587873020907673,0.3601105791922325,0.3609491917813882,0.3621166770203874,0.363570538998465,0.3645340005361451,0.3649705706074903,0.3655234800272968,0.3667988612614984,0.3676001782470092,0.3692379298616208,0.3705183767659143,0.3722030810660964,0.3734719596723377,0.3744224644507244,0.3757331466776085,0.3770943129080469,0.3783287946108642,0.3808604260976922,0.3838437544307387,0.3851051051051051,0.3853299609105541,0.3877496385929218,0.3890294824750095,0.3938905518458823,0.3955794842731652,0.3955026455026455,0.3940052803230315,0.3918392454377691,0.3918804623625599,0.3899297423887587,0.0,2.4063628619658344,63.34118941906176,207.18634951363637,348.3017177390341,fqhc2_100Compliance_baseline,73 -100000,95677,41227,387.3135654336988,7596,78.19016064466904,5854,60.56837066379589,2354,24.18554093460288,77.38307130315455,79.75808791405815,63.34642469116329,65.09691145514681,77.09316230409944,79.47063438703829,63.239346376506,64.99400272331937,0.2899089990551147,287.4535270198635,0.1070783146572935,102.90873182744065,62.18344,43.8122728631272,64993.09133856621,45791.85474369723,213.05198,127.81319803769536,222080.4686601796,132990.31955192506,244.352,116.08608789273802,251672.14691096084,118425.83980679711,4236.44861,1883.4257679949133,4387172.915120667,1927832.799936151,1424.54855,608.0757450102732,1473676.766621027,620313.0480787162,2317.20326,968.1074323684828,2383102.87738955,977761.6205848136,0.38313,100000,0,282652,2954.2314244802824,0,0.0,0,0.0,17813,185.55138643561148,0,0.0,22971,236.36819716337257,2184014,0,78468,0,0,0,0,0,30,0.3135549818660701,0,0.0,2,0.020903665457738,0,0.0,0.07596,0.1982616866337796,0.3098999473407056,0.02354,0.3131943577580826,0.6868056422419173,25.853892100976296,4.60534624192125,0.3349846258968227,0.1901264092927912,0.2400068329347454,0.2348821318756405,11.012421635360512,5.554632341730675,25.11319465133631,13279.163955272365,65.4224702846952,12.830589144445016,22.001301182107568,15.551330229300095,15.03924972884252,0.5268192688759822,0.7313566936208445,0.6858745537990821,0.5480427046263345,0.1127272727272727,0.6757337151037939,0.9090909090909092,0.854122621564482,0.6878787878787879,0.1153846153846153,0.4801435943459726,0.6633540372670808,0.6323924731182796,0.5051162790697674,0.1120293847566574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866110565583,0.0045488622778757,0.0067849210454255,0.0091392826678581,0.0112144781658278,0.0134674308050938,0.0156068421374543,0.0178119385921933,0.0197481396680022,0.0220404569837435,0.0244217519685039,0.0265138679235595,0.028437140036202,0.0307159852909366,0.032713317446071,0.0346335111000868,0.0365996415659218,0.0385270062689417,0.0405162283301615,0.0426150575287643,0.0573129962390305,0.0720201015547296,0.0859274180856756,0.0986350922206565,0.1111122826625615,0.1266639177001723,0.1405264441169923,0.1530836887277058,0.165297281147296,0.1768279615978056,0.1921607867187416,0.2051620297784457,0.2179768685595025,0.2302126031589878,0.2411528518783345,0.2528422312346253,0.2636040745208417,0.2744179235612827,0.2846045518557216,0.2932666957059996,0.30155752417347,0.3094538085811673,0.3167291004789226,0.3244388937590816,0.3312439143135345,0.3376475818801561,0.343233247665016,0.3486065427471378,0.3538403643771979,0.3592615612478345,0.3606747481830072,0.3618349432953465,0.3631772721502024,0.3644877399183626,0.3654100873602905,0.365997511788287,0.3661426075909163,0.3668362391136135,0.3682098077219944,0.3693220521277739,0.3703662056298962,0.3713952523076315,0.3715843556674006,0.3720675143266476,0.3725659887494591,0.3730907574414846,0.3731644849174729,0.3760401946930444,0.3767229254571027,0.3800253746729046,0.3825301204819277,0.3834570519618239,0.3872592219564396,0.3847322445879225,0.3870003735524841,0.3881841672539347,0.3868778280542986,0.3948200869909055,0.3960129310344827,0.4055265123226288,0.0,2.454271167639682,61.54235827306382,215.24300137672464,345.68279688257184,fqhc2_100Compliance_baseline,74 -100000,95700,40851,383.2079414838036,7576,78.04597701149424,5932,61.47335423197492,2472,25.5067920585162,77.3960056150407,79.78004903835497,63.35197710932333,65.11293443617693,77.09623863372583,79.4780242585645,63.24369249935045,65.00618729184782,0.2997669813148746,302.0247797904716,0.1082846099728769,106.74714432910548,62.55128,43.97693969669447,65361.83908045977,45952.91504356788,211.5123,127.10931972296994,220494.47230929992,132299.09061961333,254.15906,120.69709200895522,262354.78578892373,123627.35859239366,4313.23381,1930.03983285578,4474478.902821316,1984203.064635089,1416.96186,611.7373247146652,1468961.1807732496,627572.0265302191,2421.35946,992.2532028613196,2500416.4681295715,1012001.9585014104,0.38071,100000,0,284324,2970.992685475444,0,0.0,0,0.0,17637,183.7513061650993,0,0.0,23841,245.86206896551724,2187053,0,78413,0,0,0,0,0,49,0.5120167189132706,0,0.0,1,0.0104493207941483,0,0.0,0.07576,0.1989966115941267,0.3262935586061246,0.02472,0.3039055632299384,0.6960944367700616,25.45599853646252,4.553448518708493,0.3270397842211733,0.2002697235333783,0.2407282535401213,0.231962238705327,11.170492633553009,5.692451659633076,26.252086857161185,13222.224703423311,67.00752813672005,13.77019781156439,22.10351569586976,15.979285899724749,15.154528729561145,0.5456844234659474,0.7685185185185185,0.6912371134020618,0.5777310924369747,0.1148255813953488,0.7087988826815642,0.9103260869565216,0.8448637316561844,0.7564102564102564,0.149090909090909,0.4937777777777777,0.7048780487804878,0.6411483253588517,0.5277777777777778,0.106267029972752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002329892521045,0.0044614791831437,0.0067193114228294,0.0091033782067564,0.0114540312900535,0.0136235897853622,0.0159466541594869,0.0181625131445956,0.0201701118403565,0.022416246148807,0.0242262069531161,0.0263773949113908,0.0284888564346761,0.0303979233407843,0.0324607653971955,0.0345675949471769,0.0365858711414957,0.0388004857845732,0.041090761598702,0.042813965607087,0.0582189634643103,0.0721977458480278,0.0853837601996937,0.0982074331072911,0.1104646260224302,0.1259860837933295,0.1394139986845734,0.1523747684840227,0.1648045289468062,0.1772017502466646,0.1915120448842894,0.2049387790420975,0.2171073365283256,0.2298140719446478,0.2403768979582861,0.2516382554793004,0.2628421029152633,0.2722278395685878,0.2816192882473572,0.2907529783001394,0.2993545258247405,0.3072747014115092,0.3147430596574129,0.3217217528659981,0.3283238116031682,0.3347232472324723,0.3408157405211051,0.3467538236974043,0.3523620012404382,0.3574109930058877,0.3584109449125778,0.3595885237120764,0.3606645079543855,0.3619859796198598,0.3630241857561208,0.3635095571667254,0.3641667062982514,0.3658259897408917,0.3668641079193344,0.3679041059128723,0.369322664262369,0.3708968521084934,0.3722145285156741,0.3733694314545902,0.3741924597435155,0.3743595106138241,0.3757349163765055,0.3776955669385948,0.3795674605979221,0.3820629959124789,0.3827399916885995,0.3825792220369075,0.3847724806943646,0.3860095634737004,0.3876436781609195,0.3877452167595059,0.3884310371637381,0.3897149938042131,0.3958391903289289,0.3981810992487149,0.0,1.9028766960294123,63.66267126801298,234.2364468173594,334.75018192138947,fqhc2_100Compliance_baseline,75 -100000,95811,41009,383.7137698176618,7524,77.17276721879533,5860,60.47322332508793,2380,24.381334084812806,77.38566316619061,79.70543702929484,63.36611244363343,65.08383276455454,77.09260234100744,79.41630925130765,63.25853767174321,64.98104312197344,0.2930608251831756,289.1277779871899,0.1075747718902135,102.7896425811008,62.47252,43.9709670748397,65203.91186815711,45893.443419690535,211.95131,127.16570910593911,220531.93265908925,132039.75944274914,250.22745,119.17220262380144,257261.8592854683,121257.94457279096,4234.96949,1898.6217560967027,4375111.125027398,1936663.2950834944,1405.60111,612.0617651372102,1445524.584859776,617340.850134496,2342.78634,976.0290725832984,2402966.068614251,981115.6320120862,0.38117,100000,0,283966,2963.8141758253228,0,0.0,0,0.0,17785,184.88482533320808,0,0.0,23496,241.2979720491384,2188412,0,78551,0,0,0,0,0,38,0.3966141674755508,0,0.0,0,0.0,0,0.0,0.07524,0.197392239683081,0.31632110579479,0.0238,0.3092979127134725,0.6907020872865275,25.290358592855224,4.607641308604469,0.3387372013651877,0.1953924914675767,0.2344709897610921,0.2313993174061433,10.990183804964255,5.369051373780866,25.33509411765621,13190.271845723815,65.92362324953174,13.46478742640862,22.428219809155355,15.068281954301762,14.962334059666029,0.5358361774744027,0.7720524017467248,0.6770780856423174,0.5669577874818049,0.0980825958702064,0.7068847989093388,0.9205479452054794,0.8801571709233792,0.7241379310344828,0.1419141914191419,0.4787161393125427,0.7025641025641025,0.6070460704607046,0.5249077490774908,0.0854700854700854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598999321402,0.004724106120049,0.0067592940292902,0.0088492877898116,0.0112799544326457,0.0136951430607881,0.0161758860043421,0.0181753240126543,0.0202156471970974,0.0225753962974712,0.0249953883047408,0.0273637968551135,0.029424762844428,0.031600942881553,0.0335749713849675,0.0356250129113557,0.0375494071146245,0.0395634237857335,0.041700846269664,0.0434864046452096,0.0576939124629699,0.0715323583830739,0.0845613667330468,0.0974028702906011,0.109719486374601,0.1263031148008492,0.1390916506870358,0.1518340188982069,0.1644836486976555,0.1758348863612021,0.1892112791172864,0.2025298679974939,0.2146331400777365,0.2265973821818062,0.2370496485061511,0.2490766747019926,0.2608099827307671,0.2708602500870698,0.2806504617825373,0.2890860854450645,0.2976589401677798,0.3058169675174556,0.3134058612991247,0.321082154261999,0.3280450854441886,0.3349598092475603,0.3414146962622656,0.3473565318916723,0.3532984428506817,0.3587331699733881,0.3600866803058038,0.3610148038082659,0.362478335000775,0.3628511906484187,0.3633522811821076,0.3636154412667239,0.363815392434012,0.3636857976172821,0.3650695517774343,0.3665152684774608,0.3677814980625258,0.3691500566363943,0.3692753133123401,0.3700753644117514,0.3706829458118494,0.372151965572775,0.3735610628660454,0.3756559905855411,0.37655550024888,0.3786423375266267,0.3807942438079424,0.3800868586134792,0.3824876001526135,0.3834101382488479,0.3852021357742181,0.3882211538461538,0.3901985111662531,0.3959016393442623,0.3979306487695749,0.3971273291925465,0.0,2.6762561564247243,64.47209863391882,214.50186201848516,339.75501204982777,fqhc2_100Compliance_baseline,76 -100000,95770,40862,382.15516341234206,7481,76.82990498068288,5846,60.51999582332672,2396,24.611047300824893,77.37657405990127,79.71950523749831,63.3458979718325,65.07831044457541,77.08348275672422,79.427514909483,63.23881791866935,64.97426726603537,0.2930913031770501,291.99032801531644,0.1070800531631519,104.04317854003864,63.15232,44.4239557654319,65941.65187428214,46386.087256376624,210.84618,126.73203077421246,219653.33611778216,131824.00623808336,247.38475,117.50091963028734,255573.26929100967,120488.785521338,4276.52656,1910.8733213327384,4429370.794612091,1959230.6268484285,1453.34422,630.315952101944,1500832.7033517803,641452.6596031577,2374.53068,986.0417749874674,2441869.7504437715,997777.8209630648,0.38034,100000,0,287056,2997.3478124673697,0,0.0,0,0.0,17687,184.1390832202151,0,0.0,23279,240.22136368382584,2181741,0,78271,0,0,0,0,0,34,0.3550172287772789,0,0.0,0,0.0,0,0.0,0.07481,0.196692433086186,0.3202780376954952,0.02396,0.3174001011633788,0.6825998988366211,25.46889432553936,4.655793057285851,0.3267191241874786,0.1985973315087239,0.2293876154635648,0.2452959288402326,11.129562267175816,5.525266313504224,25.50390358440001,13210.990268655134,65.6293886050004,13.43648681914868,21.372448842395364,14.93029039047948,15.890162552976877,0.5463564830653438,0.7708871662360034,0.6905759162303665,0.6032811334824758,0.1192468619246862,0.697228144989339,0.9287925696594428,0.8422174840085288,0.7669902912621359,0.1601307189542483,0.4985357062401441,0.7100238663484487,0.6412213740458015,0.5542635658914729,0.1081560283687943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0046832709910896,0.0068183201769516,0.0092445853143159,0.0115226588560735,0.0137473141821366,0.0162127438284508,0.0185098215379589,0.0207423915599218,0.0227451863528881,0.0249159560511643,0.0271707332094722,0.0292167405138116,0.0312043006323247,0.0334038273069582,0.0355758596810368,0.0375555256427513,0.0396887966804979,0.041780586944996,0.043614096475881,0.0582384436349973,0.0719790849673202,0.0856534865193509,0.0983227542141325,0.1106673130427451,0.1262063060872874,0.1396404036977355,0.1521274218774937,0.1636979133294889,0.1750753294658846,0.1886006009887234,0.2021877434432615,0.2150977469783836,0.2267450130759719,0.2383295899942749,0.2491159614681136,0.2599140097157854,0.2703861694823685,0.2803817868167786,0.2898223754280282,0.2984924390554315,0.3061923922706218,0.3137577342151029,0.321363957681847,0.3279616936463954,0.3337772352310139,0.3396386928889556,0.3467158390029884,0.3526023531848247,0.3584091239093417,0.3597722653673769,0.3611034672537149,0.3620764950341621,0.3631814895155459,0.3645999018893728,0.3652616568791303,0.3655078348030197,0.367208694365433,0.3682434746865794,0.3690037560364872,0.3691436739453441,0.3702154651231937,0.370800218661957,0.3716090589368517,0.3739292005501797,0.3755434497930962,0.3763459335624284,0.3778205573263483,0.3805256659022755,0.382949824224992,0.3855261346427424,0.3858082455483664,0.3879982257144667,0.3900437217151185,0.3924242424242424,0.3963144669139643,0.3933157976172056,0.3890583689241407,0.3821497651284885,0.3901778808971384,0.0,2.070960111371809,62.39293501252073,219.6290341752753,340.4973576921184,fqhc2_100Compliance_baseline,77 -100000,95747,40638,379.7612457831577,7399,76.07549061589397,5763,59.56322391302077,2352,24.11563808787743,77.3313489084019,79.698357505872,63.31030609897547,65.0634373567401,77.04112012167508,79.41051906798606,63.20319864527855,64.96057810344121,0.2902287867268285,287.838437885938,0.1071074536969192,102.85925329888812,62.93936,44.28273599696748,65734.38332271508,46249.08854680299,210.00033,126.4413043724522,218717.04596488664,131448.8386332437,241.15653,114.4884224548858,248577.52201113352,116955.51173307103,4170.34856,1861.86799090852,4312266.14933105,1901441.6816950813,1389.35914,602.9022976243629,1434148.975947027,613010.761296544,2325.50728,971.7756532757614,2387102.217301848,978281.2751891068,0.37905,100000,0,286088,2987.9265146688667,0,0.0,0,0.0,17541,182.55402258034195,0,0.0,22718,233.96033296082385,2181097,0,78270,0,0,0,0,0,38,0.3968792755908801,0,0.0,0,0.0,0,0.0,0.07399,0.1951985226223453,0.3178807947019867,0.02352,0.3159117305458769,0.6840882694541232,25.675627796543136,4.588153224601327,0.33610966510498,0.1979871594655561,0.2259239979177511,0.2399791775117126,10.834721024564011,5.276233360609734,25.117188716469084,13113.348781860306,64.76958533810893,13.180836005610317,21.88749217571656,14.534432827689876,15.16682432909219,0.5354849904563596,0.7449605609114811,0.7031491997934951,0.5514592933947773,0.1127982646420824,0.6939655172413793,0.8957055214723927,0.8739495798319328,0.7245901639344262,0.1298245614035087,0.4850148707389613,0.6846625766871166,0.6475017111567419,0.4984954864593781,0.1083788706739526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100537999371,0.0046442296967054,0.0069626998223801,0.0092562487299329,0.0115058292132088,0.0136366876801336,0.0159680231668892,0.0184404259881352,0.0209780196176702,0.0231784009668762,0.0250761515030306,0.0270409106786939,0.0293709028413827,0.0316812499355862,0.0337321043341831,0.0360152622816904,0.037992378743321,0.0401382215903784,0.042058212058212,0.0436843146853875,0.0578858359779522,0.0717335342500156,0.0850170999349573,0.0974991586740703,0.1094555692638638,0.1243706367675058,0.1370143583321836,0.1496639219404114,0.1622667322203458,0.1738248551191242,0.1872635357269895,0.2001234728359761,0.2123148954703832,0.2240969659808827,0.2349164748763916,0.246166128871295,0.2571655161629024,0.2679614929910488,0.2780338290384834,0.287405726337024,0.296218244135152,0.3046564751361799,0.3118634019090532,0.3190523103539419,0.3254522876135284,0.3316422258430849,0.337689512592407,0.3441605606881172,0.3508430357073323,0.3565499008592201,0.3576122303031938,0.3591859792223539,0.3602330272382322,0.3607810215808594,0.3618833814040617,0.3623415052972111,0.3625605930995152,0.3643612211682312,0.365452147249773,0.3665587377685551,0.3670136800962116,0.3682196669310071,0.3696264234987603,0.3708581043185642,0.3731267646420039,0.3741163533539299,0.3738852046649897,0.3752213508727549,0.3771653264373517,0.3788784971701521,0.3803269654665687,0.3804382683057188,0.3804423600988655,0.3828256543701209,0.3794076163610719,0.3800494641384996,0.3820733363512901,0.385193982581156,0.3863266413456321,0.3890577507598784,0.0,2.3945065783130786,61.45816977621922,216.00807182100044,335.9298827430188,fqhc2_100Compliance_baseline,78 -100000,95489,41139,386.1282451381834,7542,77.61103373163401,5875,60.93895631957607,2454,25.35370566243232,77.22623088476638,79.71640600079927,63.24095407219974,65.0775237031476,76.9350506249797,79.42084150080174,63.13572302498317,64.97292180769641,0.2911802597866852,295.5644999975249,0.10523104721657,104.60189545119648,61.09092,43.01173131083545,63976.918807401904,45043.65037945256,211.78925,127.936280932963,221175.5385437066,133373.0815438569,253.11268,120.8696602903598,261643.11072479552,123831.8999419974,4215.63404,1886.810892689857,4376996.282294296,1939069.897687132,1429.05887,619.5648029504529,1479819.822178471,632348.5175346573,2405.22976,983.4323083784506,2486533.171360052,1002546.488810547,0.38232,100000,0,277686,2908.041763972813,0,0.0,0,0.0,17698,184.69143042654127,0,0.0,23729,245.0753489930777,2182209,0,78351,0,0,0,0,0,40,0.4084240069536805,0,0.0,0,0.0,0,0.0,0.07542,0.1972693032015066,0.3253778838504375,0.02454,0.318375,0.681625,25.408827464789294,4.595950114973615,0.3371914893617021,0.2042553191489361,0.225531914893617,0.2330212765957446,11.413544763568714,5.81129448110674,25.960350143986343,13274.999356886174,66.2941671507778,14.017747069231133,22.36385974266097,14.879594979039917,15.03296535984578,0.550468085106383,0.7625,0.6991418475517416,0.5939622641509434,0.1073776479181884,0.7291371994342292,0.9206798866855525,0.8817427385892116,0.7709677419354839,0.1561338289962825,0.4938354629006949,0.6965761511216056,0.6404269513008672,0.5399014778325123,0.0954545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394487510766,0.004483349731709,0.0069953499705565,0.0093238434163701,0.0117181136992995,0.0140141670488712,0.01634710558271,0.0186888194061267,0.0209111277072442,0.0233089485871191,0.0253017736902611,0.0277503598601686,0.029789118167964,0.0318182286993203,0.0337548819044076,0.0357601358346792,0.037934897616232,0.0398324376578693,0.0417764905664308,0.0437193275556019,0.058270007745609,0.0721060030634297,0.0856722225143277,0.0992791197672948,0.1116383273272955,0.1278697560044941,0.1415403261817176,0.1543016259121751,0.1664328474892104,0.1771761443633588,0.1909419703103913,0.2039525777445142,0.2166446787400373,0.2276484258528457,0.2391323535901849,0.250822331866471,0.2614060996621243,0.2717504059173732,0.2809023274861784,0.2902285327303405,0.299315624637513,0.3077753146369213,0.3159337724764109,0.32277765755368,0.3290041706299846,0.3363239243153609,0.342437503143705,0.3493023672195721,0.3547434429641965,0.360111868091085,0.3616019483155189,0.3628239129233659,0.3639937774006505,0.3650674010726192,0.3657582903023609,0.3658138604107016,0.36572784155137,0.3671902095823217,0.367583561266794,0.3682364999730269,0.3685977219582108,0.3697793342220984,0.3707445686564016,0.3714562363484879,0.3726499444202793,0.3742917103882476,0.375530937894616,0.3771801864654024,0.3798496347258671,0.3828404029054135,0.3835730088495575,0.3858660656793303,0.3867918543424475,0.3891267777947698,0.3890557537075277,0.3897102306327616,0.3874264478166615,0.3913853799958584,0.3785374054356962,0.3837480559875583,0.0,2.2721549009195647,62.446853786597146,226.0203410058918,339.79008486148206,fqhc2_100Compliance_baseline,79 -100000,95713,40866,382.8946956003887,7622,78.31746993616332,5922,61.32918203378852,2453,25.27347382278269,77.36399481233721,79.74841200655653,63.33329461681414,65.0972014424333,77.05828767694462,79.43980891905596,63.22063067222261,64.98589212204493,0.3057071353925948,308.60308750057186,0.1126639445915316,111.30932038837216,61.87522,43.52035781447823,64646.62062624721,45469.64133866688,210.71167,126.71016373623696,219622.8412023445,131858.8945453982,246.89468,117.78478387610784,253934.04239758445,120065.73775930762,4339.72761,1946.791767229776,4497645.398221768,1997529.5907868068,1491.75356,640.1320111481542,1544693.239162914,654927.4300754911,2426.76284,1015.3707590706744,2502164.0738457683,1033087.237047155,0.38108,100000,0,281251,2938.48275573851,0,0.0,0,0.0,17662,183.98754610136555,0,0.0,23158,238.09722817172167,2188866,0,78602,0,0,0,0,0,42,0.4283639630980118,0,0.0,0,0.0,0,0.0,0.07622,0.2000104964836779,0.3218315402781422,0.02453,0.3220212102308172,0.6779787897691828,25.445884571057515,4.644834162865663,0.3294495103005741,0.1940222897669706,0.2271192164809186,0.2494089834515366,11.183607704809145,5.522999563548176,26.210729276307557,13244.333497895252,66.5497314060271,13.30392856817682,22.09472318016785,14.995739142627102,16.15534051505532,0.5383316447146235,0.7432550043516101,0.7145053818554588,0.5650557620817844,0.1218686526743398,0.6784260515603799,0.9023668639053254,0.8586065573770492,0.7155688622754491,0.1178343949044586,0.4919064748201439,0.6769420468557337,0.6664388243335612,0.5153313550939663,0.1229578675838349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0046142768768951,0.00693372857955,0.0092180417505132,0.0115793972201306,0.0136825804348269,0.0160961279529968,0.0183116140365211,0.0205169116218178,0.0224761670711352,0.0247246549213446,0.0265587610019616,0.028821526656312,0.0309734057351289,0.0331799042272126,0.0350293117174495,0.0372188901664646,0.0392462071685034,0.0412573673870334,0.0432191381178628,0.0578995738992397,0.0709874604869266,0.0844322747825722,0.0965285884047912,0.1086715925500405,0.1242467172731694,0.1382703482207236,0.1510648256494266,0.1636971165650721,0.1760980001286091,0.190286581363064,0.2038875908618899,0.2159743366681165,0.2274765414816597,0.2387925059681624,0.2504484354585114,0.2612964409237978,0.2721034870641169,0.2822620007037537,0.2912962793255132,0.3003645200486026,0.3085896820846448,0.3162514659369558,0.3234800134363453,0.3303341277175234,0.3371229870033786,0.3435237832828194,0.3499185377526602,0.3557662418402238,0.3601161409528837,0.3612547815311675,0.362129493233476,0.3631930546551287,0.3636718637007897,0.3645794628658056,0.3650407250903301,0.3656298452678543,0.3676403094676108,0.3684875168518234,0.3692412166267558,0.3705713373763166,0.3709549649463302,0.3728923884514435,0.3742500842601954,0.3745262293894696,0.3754627320223687,0.3749425419443806,0.3772737338268324,0.3789052825248558,0.3792111257642968,0.3799899170447774,0.37999359111301,0.3825854156042835,0.3851325245344255,0.3878822739909884,0.3899987891996609,0.394815396700707,0.3979144942648592,0.4009111617312073,0.4046288906624102,0.0,2.153359262643161,65.3692584950776,216.38681902897417,344.5500606937244,fqhc2_100Compliance_baseline,80 -100000,95680,40962,385.6500836120401,7505,77.34113712374581,5821,60.34698996655518,2370,24.414715719063544,77.31725194233033,79.72636012023524,63.30264576078415,65.08516474142421,77.02515512028404,79.43207454892577,63.19560429762894,64.98006280738721,0.2920968220462896,294.28557130947297,0.1070414631552125,105.10193403699476,62.2457,43.78274741320108,65056.1245819398,45759.560423496114,210.03934,126.61833043060642,219029.01337792643,131841.50337646998,244.37928,116.22279125127366,252660.84866220737,119331.75091772678,4244.67059,1895.8342869541143,4403511.580267558,1948624.1397931792,1472.79354,632.7137368521356,1528103.5953177256,650093.7676130177,2338.5586,973.945616621238,2411793.87541806,989320.0743553276,0.38095,100000,0,282935,2957.0965719063543,0,0.0,0,0.0,17577,183.19397993311037,0,0.0,22933,237.00877926421404,2185747,0,78425,0,0,0,0,0,44,0.4598662207357859,0,0.0,0,0.0,0,0.0,0.07505,0.1970074812967581,0.3157894736842105,0.0237,0.3070856125174914,0.6929143874825086,25.34614511244879,4.6334645024845935,0.3317299433087098,0.190173509706236,0.2355265418313004,0.2425700051537536,10.7860982692534,5.2521895008066,25.348620837621443,13163.992860832854,65.54660814754885,12.844284623444402,21.68053141557507,15.467339713092914,15.55445239543646,0.5416595086754853,0.7795844625112918,0.6846193682030036,0.5798687089715536,0.1225212464589235,0.6920315865039484,0.928358208955224,0.8430493273542601,0.7198795180722891,0.1357142857142857,0.4943541102077687,0.7150259067357513,0.6370370370370371,0.5351299326275265,0.1192579505300353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0043603914211833,0.0066371007844768,0.008647583046266,0.0106221702192603,0.0127839462157481,0.0149042090873849,0.0172035101698897,0.0192345075249895,0.0212794295432657,0.0233202351516892,0.0251960089193049,0.0274535235624729,0.0294863599810297,0.0316447198554092,0.0338430658444729,0.0356594933034788,0.0376862765460304,0.0396387773361909,0.0415919609723554,0.0563344965208851,0.0705803505979433,0.083844215830359,0.0963122731337787,0.1086367136813899,0.1248108365521985,0.1383570367225642,0.1519095188395919,0.1636847505450814,0.1754463136211484,0.1895743786963125,0.2038277926323652,0.2162050389073298,0.2280813145190423,0.2389455594967943,0.2503131408302388,0.2607336971685584,0.2710480133195338,0.2806880197873764,0.2898678514989808,0.2982547508274888,0.3069004643980956,0.3139839189077172,0.3210413968436705,0.3274606359049182,0.3339132580665062,0.3402157435132866,0.3468868152712182,0.3523725607069738,0.3574812918211933,0.3586621226612067,0.3599295173591035,0.3612242309805966,0.3622806890666358,0.3643381969387603,0.3643562225160675,0.3644188927357621,0.3652613716865187,0.3669459149235065,0.3674090518476081,0.3695001975132145,0.3704144594567783,0.3726035478026376,0.3730269370868372,0.3741668080568146,0.3749967170059093,0.3759491132059253,0.3767333143813765,0.3792884146556902,0.380653667891961,0.3818457718305973,0.3860240963855422,0.3920895332570265,0.3920314426633785,0.3917055074669457,0.3955768081291094,0.3965436711816908,0.3983522142121524,0.3988455195162177,0.3981588032220943,0.0,1.9412565349234343,61.89324005878493,223.96733763699635,336.04912721220467,fqhc2_100Compliance_baseline,81 -100000,95862,41048,383.87473660053,7398,75.85904738060962,5773,59.68997099997914,2355,24.243182908764684,77.4717338221379,79.75788747635646,63.40399372213196,65.09054302179794,77.18033680976806,79.46446388404654,63.29756361799134,64.98591396042968,0.2913970123698419,293.4235923099209,0.106430104140621,104.62906136825724,62.4921,43.93785529471012,65189.647618451534,45834.48633943598,210.81026,127.40554713057436,219364.6178882143,132360.19007240632,247.44871,117.73839318835464,254511.78777826455,120093.36012887947,4179.27093,1864.989992621165,4323195.708414178,1909084.8333060208,1377.08104,594.0051769499282,1423747.407731948,607041.7083926034,2321.2355,964.381625957306,2390386.659990403,978415.1054685416,0.38139,100000,0,284055,2963.1658008387058,0,0.0,0,0.0,17647,183.5242327512466,0,0.0,23206,238.5303874319334,2187713,0,78447,0,0,0,0,0,41,0.4276981494231291,0,0.0,0,0.0,0,0.0,0.07398,0.1939746715960041,0.3183292781832927,0.02355,0.3126203620490435,0.6873796379509565,25.53528437803593,4.566904034624561,0.3346613545816733,0.1974709856227265,0.2350597609561753,0.2328078988394249,10.725454364380925,5.205667597191986,24.95059828563516,13198.203873006903,64.79519094958904,13.17102026463045,21.92313275741355,14.958023478317564,14.743014449227474,0.5399272475316127,0.7526315789473684,0.7060041407867494,0.5504789977892409,0.1101190476190476,0.7064676616915423,0.9090909090909092,0.8675889328063241,0.717687074829932,0.1278195488721804,0.4862574438845625,0.685857321652065,0.6486676016830295,0.504233301975541,0.1057513914656771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026116003644093,0.0049639857766611,0.0074428603297572,0.0096630125862768,0.0119908950491829,0.0141727797165444,0.0163698965039524,0.0185640408408898,0.0207197271409023,0.0231837519430581,0.0252770437739404,0.0272909081585559,0.029462827321944,0.0315779725892085,0.0335642421243608,0.0354100188977353,0.0373944885799404,0.0392488107206152,0.0414101033175847,0.0433452320244773,0.0582475678042981,0.0723499895463098,0.0855645795127063,0.0984596957216105,0.1105899959950254,0.1259964055396976,0.1400744377405706,0.1528265356056254,0.1646969648442921,0.1762518220012003,0.1906703970730657,0.2047097729409603,0.216693994114645,0.2281119323951043,0.2387605584297184,0.2506467661691542,0.2620509107113017,0.2717492616424665,0.2807073190072159,0.2894309500937743,0.2979580994618067,0.3054187766913258,0.3134781427542137,0.3206872210856274,0.3276613304528297,0.3340434964656043,0.3405143850260693,0.3467468256288369,0.3519153395345227,0.3572520492343375,0.3582742332691868,0.3588644884841993,0.3597659601400864,0.3603750450775334,0.3616617210682492,0.3620199363992172,0.3624338206242591,0.3633830519586953,0.3648208469055374,0.3657063445400609,0.3681560376616813,0.3691964373876809,0.3692674959165724,0.3708018424936273,0.3701184782869914,0.3714665693126108,0.3748824752841961,0.3772583026989662,0.3777661431064572,0.3766787802180439,0.3787049187746051,0.3791494326015484,0.3798787419477075,0.3821206777581845,0.38184589008477,0.3801901552533397,0.3810036945812808,0.3809233272320521,0.3793388429752066,0.381846036001532,0.0,2.0254539643567635,62.36784431912605,218.1070195012912,331.0437319407752,fqhc2_100Compliance_baseline,82 -100000,95747,40704,381.7978631184267,7418,76.30526282807817,5738,59.42744942400284,2316,23.89631006715615,77.34438518034166,79.69711271882628,63.33412346583962,65.07218054842753,77.06838456161917,79.41809638036706,63.2330973508122,64.97234014915432,0.2760006187224917,279.0163384592148,0.1010261150274161,99.8403992732051,62.5075,43.98406292614114,65284.02978683406,45937.79745176469,208.85401,125.70016343115384,217634.9650641796,130787.49561986676,244.47047,115.9854558865684,251871.12912153907,118538.4891629041,4174.48296,1868.1686043768036,4325644.709494814,1916885.8391143356,1441.21497,623.5266485202005,1492272.9171671176,638329.8867458379,2291.07766,948.7075244001976,2364746.947685045,966860.9151115868,0.37937,100000,0,284125,2967.455899401548,0,0.0,0,0.0,17482,182.05270139012188,0,0.0,23024,236.98914848507,2185388,0,78462,0,0,0,0,0,28,0.2924373609617011,0,0.0,1,0.0104441914629178,0,0.0,0.07418,0.1955347022695521,0.312213534645457,0.02316,0.3189699133095359,0.681030086690464,25.497303949606096,4.624729349803141,0.3452422446845591,0.1878703380968978,0.2218543046357615,0.2450331125827814,11.129841803510102,5.502279197244607,24.558342846146672,13125.012306857525,64.62048652807658,12.67241188596574,22.167210806006203,14.266700511259035,15.514163324845628,0.548448936911816,0.7820037105751392,0.6920747097425543,0.589159465828751,0.1301564722617354,0.7010014306151645,0.915625,0.8556485355648535,0.7557755775577558,0.1649831649831649,0.4993087557603686,0.7255936675461742,0.6400532268795742,0.5371134020618556,0.12082957619477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339856569831,0.0046231991321363,0.0067979585831836,0.0091608015193524,0.0115196128271346,0.0137428359105392,0.0156949073083233,0.0180215115211135,0.0201696127516092,0.0221633292062744,0.0242337920504964,0.0263573847890793,0.0285940488186061,0.0306282183316168,0.0325479192027565,0.0345682839869787,0.0364983903857898,0.0385476946051894,0.0404801496570359,0.0424556798533425,0.0567607633524032,0.0706175371767636,0.084044807115437,0.0974309360310432,0.1094076214175752,0.1249735673503912,0.1380531724233008,0.1509877554494101,0.1621777483500288,0.1734022254143172,0.1872571287096739,0.2004239946351699,0.21298963916461,0.2250060121116722,0.2360788799313705,0.2480430474208084,0.259140625,0.2696975491243659,0.2796614015976761,0.2886919077395268,0.2964450204827921,0.3043371407171613,0.3116935388403532,0.3191979552899672,0.3267652886333523,0.3330206494772831,0.3390848558566466,0.3446314715633767,0.350732042586853,0.3565425377276211,0.3584857346936025,0.3609649968329156,0.3621017895672039,0.3629905081606667,0.3634861319954146,0.363186754112461,0.3629588431590656,0.3641137927628329,0.3654063689027525,0.366421239318536,0.3680569914099359,0.369734572918112,0.3713018062535483,0.372573251842531,0.373853710469646,0.3738736378876781,0.3748103621010448,0.3764270579678062,0.3784632760385416,0.3787121787441544,0.3808935839392692,0.3813926147597926,0.3834282099936749,0.3858088067533652,0.3866062151695476,0.3832242712671029,0.3829065103363159,0.3858153078202995,0.3901888920214265,0.3793375394321766,0.0,1.9097013615631824,62.196795826827056,217.52245167395645,330.6870957211241,fqhc2_100Compliance_baseline,83 -100000,95671,40572,381.3590325176908,7432,76.5540236853383,5768,59.7046126830492,2373,24.38565500517398,77.28108161739658,79.66640622328069,63.29287913429015,65.0549382163871,76.98292345009835,79.36819017656931,63.18354149887445,64.94821745797188,0.2981581672982258,298.2160467113744,0.1093376354157058,106.72075841522144,63.42908,44.60778825978323,66298.94116294384,46626.02174303939,211.57169,127.44420830210444,220541.07305244013,132616.9113661914,242.63578,115.24683019644937,249945.15579433684,117696.61712805153,4229.29483,1893.04648079998,4379969.5309968535,1938840.954350876,1411.03019,612.3224386929386,1462837.7460254414,628280.4869114707,2349.11884,984.0468313723466,2416176.7933856654,995670.7892092728,0.37909,100000,0,288314,3013.588234679265,0,0.0,0,0.0,17710,184.4968694797797,0,0.0,22787,234.58519300519487,2175881,0,78130,0,0,0,0,0,44,0.4494569932372401,0,0.0,1,0.0104524882148195,0,0.0,0.07432,0.1960484317708196,0.3192949407965554,0.02373,0.3208631256384065,0.6791368743615934,25.55323330570656,4.6101003583252,0.3242024965325936,0.1952149791955617,0.2321428571428571,0.2484396671289875,10.892848715372894,5.323429964996348,25.52696005305096,13176.366994357955,64.95979736232673,13.166216328364545,21.066527728855394,14.850860697283029,15.87619260782376,0.5371012482662968,0.7770870337477798,0.6978609625668449,0.5675877520537714,0.1102581995812979,0.6914366595895258,0.9105691056910568,0.854978354978355,0.7127659574468085,0.15,0.4870264064293915,0.7120211360634082,0.6463068181818182,0.5288552507095553,0.0997352162400706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.004774987580977,0.0070430396703776,0.0094177647285916,0.0115330634827004,0.0136654311433342,0.0158961600424169,0.0178462041083023,0.0200868898543317,0.0220984861666956,0.0243102193148844,0.0265616657768286,0.0285067873303167,0.0302917903066271,0.0324481644700855,0.0345333857193076,0.0362237023379152,0.0381733264141152,0.0399122077057501,0.0418056366213624,0.0565219662539831,0.0703021926242382,0.0840366125036738,0.0969350714939553,0.1090385406665752,0.1246125363660407,0.1385489092935619,0.1515939034391675,0.1645052654086705,0.1757486605177541,0.1892445748306657,0.2029627863629467,0.2158267896622703,0.2267599772199588,0.2379472599645167,0.2495091241888069,0.2604559124397688,0.2701633802816901,0.2794771241830065,0.2886739856144819,0.2973969078139125,0.3059026231275932,0.3131615169205942,0.321307535152025,0.3282473423363086,0.3351241200444609,0.3411314601103863,0.3468444898219641,0.3533277913441056,0.3594706303155552,0.3605674948268167,0.3615212342402123,0.3623465714204723,0.3636403285600058,0.364155712085184,0.3653588428300753,0.3654320594648797,0.3664584985461274,0.3677059865513268,0.3683596135196293,0.3685263098315189,0.3690889500778163,0.3704692299544539,0.3702539517423848,0.3716168567468326,0.3732916316232127,0.3740501957172461,0.3749205744058965,0.3766890696851786,0.3788127123725764,0.3840121078701156,0.3850722311396469,0.3843954507910286,0.3826745164003364,0.3842592592592592,0.3857580759254893,0.3822940723633564,0.3862251117431938,0.392210641799232,0.3956386292834891,0.0,2.2247285323093906,62.51166241297771,217.23208518029892,333.0351202939088,fqhc2_100Compliance_baseline,84 -100000,95737,40934,383.853682484306,7537,77.54577645006633,5924,61.41826044267107,2437,25.120904143643525,77.3612597271838,79.72483597569192,63.34108899169471,65.08827442156404,77.05640510050966,79.417146281726,63.22988584975318,64.97780039378739,0.3048546266741425,307.68969396591217,0.1112031419415302,110.47402777664672,62.40344,43.878147360233925,65181.69568714291,45831.5380408556,214.173,129.07004240988346,223217.77369251175,134337.651327785,248.93653,118.12917889127118,257140.12346323783,121160.82386377048,4269.48062,1903.498884492138,4429490.980498658,1959013.122156768,1447.46845,623.3221866046459,1498890.8885801728,638635.539788592,2398.1303,999.6863658202604,2474579.5042668977,1020407.2943153186,0.38141,100000,0,283652,2962.804349415587,0,0.0,0,0.0,17927,186.76164910118345,0,0.0,23378,241.31735901480096,2184280,0,78421,0,0,0,0,0,41,0.4178112955283746,0,0.0,1,0.0104452823882093,0,0.0,0.07537,0.197608872342099,0.3233381982221043,0.02437,0.3251673191059477,0.6748326808940522,25.492737153206477,4.619821505005787,0.3367656988521269,0.1975016880486158,0.2270425388251181,0.2386900742741391,11.14411579477902,5.54556433502496,26.092739476748587,13197.617938067238,66.73001718109458,13.563793116064284,22.50806882990032,15.040041950066488,15.61811328506348,0.5281904118838623,0.7581196581196581,0.6521303258145363,0.5754646840148699,0.1181046676096181,0.6831615120274914,0.9309309309309308,0.8052738336713996,0.7259036144578314,0.1548821548821548,0.4777355113000671,0.6893667861409797,0.6018641810918774,0.5261599210266535,0.108325872873769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297981179283,0.0046029686105929,0.0068397231637271,0.0095701557436173,0.0117258212142784,0.0140730331357813,0.0162951481655211,0.0183795374483075,0.0205302278977987,0.0224099099099099,0.0243507325725651,0.0266317465208237,0.028632843434707,0.0308015617112894,0.0328252860990434,0.0347875529825286,0.0369898619611254,0.038966025361642,0.0409587189352188,0.0428114483376571,0.0572469669443922,0.0715564067945618,0.0848769640646961,0.0972096641924427,0.1098042935280913,0.1251968587162169,0.1384750776669176,0.1520506409915421,0.1638649179767601,0.1755619633611679,0.1896620406757033,0.2028190649271976,0.2151927634869208,0.2266188623147217,0.2373518612167718,0.2496901283753873,0.2603057435634401,0.2709269915482827,0.281382876191988,0.2902808467765018,0.2977409168199327,0.3051408261332148,0.3126997277784353,0.319418650627239,0.3270710454137236,0.3338586943137883,0.340833479250569,0.3476008654702813,0.3532827791820597,0.3577319587628866,0.359468313134445,0.3614419674207895,0.3629428023465704,0.3642564407049657,0.3657871605011844,0.3660188954604808,0.3654761904761904,0.3665524963772888,0.3675105340687198,0.3694417062460794,0.3713817894380246,0.3718073776202894,0.3729904215367737,0.3743810209777617,0.3747576580069794,0.3752107037505268,0.3750576834333179,0.3777876895628902,0.3796348913197897,0.3808815249738599,0.3807639208467556,0.3818026301721373,0.3826675951129961,0.3831761367993252,0.3845427059712774,0.3855134619966643,0.3935334872979215,0.3919526143790849,0.395079185520362,0.3911812297734627,0.0,1.6875244481023777,64.9853247578126,221.1907906876205,344.2996841442761,fqhc2_100Compliance_baseline,85 -100000,95648,40983,385.6431917029107,7481,76.98017731682837,5765,59.66669454667113,2283,23.4610237537638,77.2430810454354,79.64920073748468,63.27207635196621,65.05082403037089,76.95900657346044,79.36417602188877,63.16707226679315,64.94825767390944,0.2840744719749608,285.0247155959096,0.1050040851730642,102.56635646145185,61.77512,43.45693045591423,64585.898293743725,45434.22806113482,209.77992,126.29384857220872,218741.59417865507,131456.89253534703,240.00454,114.08841904308645,247397.4887085982,116564.32540100948,4171.98153,1854.7073008935347,4322607.320592172,1899896.7264276668,1378.44096,591.050561990918,1428886.5527768484,605669.7599436666,2249.95956,940.0121211026508,2314866.9914687183,950887.2162332472,0.38187,100000,0,280796,2935.722649715624,0,0.0,0,0.0,17500,182.3456841753095,0,0.0,22634,233.0733522917364,2184160,0,78393,0,0,0,0,0,38,0.3972900635664101,0,0.0,0,0.0,0,0.0,0.07481,0.1959043653599392,0.3051731051998396,0.02283,0.3066396350734921,0.6933603649265079,25.74630563615093,4.628431750210137,0.3283607979184735,0.202601908065915,0.2371205550737207,0.2319167389418907,11.060351185438758,5.448775432182803,24.51210187997583,13275.339508104717,64.9060520387042,13.661881999678483,21.30605726676741,15.227451968772897,14.710660803485403,0.5415437987857762,0.7491438356164384,0.687797147385103,0.5932699341623994,0.100224382946896,0.6855895196506551,0.9096209912536444,0.8688888888888889,0.6774193548387096,0.1070110701107011,0.4964700523798679,0.6824242424242424,0.6313236313236313,0.5685903500473037,0.098499061913696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020167828766012,0.0045341123486093,0.0069236469955229,0.0091648970219165,0.0114227009652843,0.0135139263709964,0.0156920723935763,0.0178381800359418,0.0201652486910994,0.0224261166977287,0.0242946949574919,0.0261663431816548,0.0279626068266194,0.0298141509045205,0.0318947987737533,0.0337304049303056,0.0360909109743717,0.0382168249519954,0.040139797584747,0.0420037531276063,0.0567642694421802,0.0709684177447231,0.0850123366055961,0.0986621193461121,0.111257746761405,0.1269533731419133,0.1410526092129865,0.1538855187266117,0.1656145006312996,0.1780727757013361,0.191728349770172,0.2053792116560426,0.2180552681168102,0.2300615512671675,0.2405735762545602,0.2517724594747528,0.2624563914482511,0.2725387199314651,0.2818760659465605,0.2907003417979951,0.2988301856167322,0.3072534064414842,0.3152361990092204,0.3226015557476231,0.3300743915356799,0.3370318658643569,0.3437088170693442,0.3502247076247383,0.3560983218728471,0.3613881714020796,0.362448009506833,0.3637128706041416,0.3643536914744686,0.3657506819105101,0.3666771192641371,0.3666923195320917,0.366759531958927,0.3672431164626794,0.3682809091065263,0.3698664605762145,0.3717566189522982,0.3731554598388769,0.3739791073124406,0.3756365766821398,0.3772318724713521,0.3776940506929441,0.3794637697908239,0.3806283388450776,0.3822484366117112,0.3846246973365617,0.3852645245050308,0.3866594652984067,0.3864174614350636,0.3879950495049505,0.3881799865681665,0.3887218949140315,0.3886270813697769,0.3925311203319502,0.3961947397873531,0.390728476821192,0.0,2.391007631706248,60.693361128442135,220.2155190031944,335.3804758343148,fqhc2_100Compliance_baseline,86 -100000,95814,41050,385.1942304882377,7331,75.28127413530382,5683,58.69705888492288,2329,23.869163170309143,77.44904619750217,79.77350128111864,63.38601454967061,65.1060228690234,77.16144990852091,79.48656046674694,63.28122609643626,65.00405937314163,0.2875962889812626,286.9408143717038,0.1047884532343488,101.96349588177613,62.56712,43.99972517741362,65300.60325213434,45922.02097544579,209.988,126.81690651399698,218411.71436324547,131607.98552839222,244.76733,116.52668256182076,251315.06877909284,118539.97886086046,4156.96882,1849.1501879859595,4295871.260984824,1887308.494511557,1395.66872,604.1084353630484,1437471.3194313983,611516.0892471453,2296.45222,950.4350817434132,2355656.89773937,959275.445085794,0.38135,100000,0,284396,2968.20923873338,0,0.0,0,0.0,17580,182.76034817458827,0,0.0,22971,235.644060366961,2189378,0,78517,0,0,0,0,0,44,0.4383493017721836,0,0.0,0,0.0,0,0.0,0.07331,0.1922381014815786,0.317691992906834,0.02329,0.3147956544231764,0.6852043455768236,25.43152758038489,4.575359904816842,0.3243005454865388,0.1967270807672004,0.2352630652824212,0.2437093084638395,11.073900275715411,5.613838035013184,24.669348941488145,13202.654747013728,63.46807698941145,12.833678255784232,20.658635186675003,14.91540308410436,15.060360462847848,0.5403836002111561,0.7629695885509838,0.6885512750949538,0.5841436050860135,0.1212996389891696,0.7194767441860465,0.9246987951807228,0.8807947019867549,0.7596153846153846,0.1684587813620071,0.4831669375435338,0.6946564885496184,0.6258992805755396,0.5307317073170732,0.1094032549728752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166057340773,0.0043485753094178,0.0065954359583168,0.0089292063266321,0.0109521339882241,0.0128699866616435,0.0150586747958361,0.0173098316986292,0.0196934082779764,0.0218047497723342,0.0236716708510529,0.0258620689655172,0.0280736019736842,0.0303211259485004,0.0325594826786027,0.0345985371296334,0.0366172985168855,0.0383749987038976,0.040383996010431,0.0424313717325449,0.0569139614453809,0.0704248912679826,0.084253883077955,0.0975540566097207,0.1093443763039767,0.1248309097057829,0.1385473202170963,0.1517642554820596,0.164381807901166,0.1759099621986871,0.1900854884671219,0.2035908737360643,0.2162173898882869,0.2278302813366217,0.2386562002525113,0.2499861818905384,0.2605373373730172,0.2713260964739956,0.280826880405742,0.2899502942352739,0.2989737136788151,0.3071241029231577,0.3154987429623597,0.3219230493316435,0.3290952063511302,0.335546783733599,0.3417475000936295,0.3482498667411224,0.3542223772429562,0.3599694584134172,0.3612409975276792,0.3624586132520023,0.3642027395719067,0.3653699025622519,0.3663705527295377,0.3661999816586678,0.3664693345962586,0.3676875204716672,0.3688012129265259,0.3694815606627472,0.3703530468296881,0.3704741421834612,0.3713830745699499,0.3710811537083482,0.3711471778077442,0.3714687426771161,0.3719536556132641,0.374480674808007,0.3773019120863614,0.3795120786405062,0.3821454745327959,0.381864896692003,0.3807254939330411,0.3820714996555155,0.3810338274420372,0.3831285049516764,0.3830246913580247,0.377025641025641,0.3822222222222222,0.3695568400770713,0.0,2.232660553039488,60.62187140672293,206.8100664428947,334.7921401782282,fqhc2_100Compliance_baseline,87 -100000,95796,40964,384.0661405486659,7428,76.3079878074241,5752,59.3448578228736,2317,23.779698526034487,77.3497797498425,79.68395657691043,63.33168066437421,65.06042825398207,77.06158767039145,79.39611875422317,63.22640224290389,64.95817862535074,0.2881920794510506,287.83782268726554,0.1052784214703237,102.24962863132704,62.53566,44.042825772074366,65280.032569209565,45975.64175129898,211.64149,127.24204188170457,220186.8345233621,132095.65972858958,245.78968,116.70493941812404,252027.2975907136,118363.47818014414,4167.18392,1858.635431921795,4301521.263935863,1892694.3001583468,1441.17687,616.7851461024619,1488535.8783247734,628142.7757055853,2286.21946,950.2031981363884,2347929.558645455,958225.2231438012,0.38151,100000,0,284253,2967.274207691344,0,0.0,0,0.0,17671,183.7133074449873,0,0.0,23040,235.99106434506655,2183455,0,78328,0,0,0,0,0,46,0.4801870641780449,0,0.0,0,0.0,0,0.0,0.07428,0.1947000078634898,0.3119278406031233,0.02317,0.3211950250032055,0.6788049749967945,25.61797579772193,4.629982890069754,0.3244089012517385,0.2009735744089012,0.2352225312934631,0.2393949930458971,11.084219573996988,5.484430105656524,24.79828719619453,13224.014763794285,64.65545405240734,13.643163722451378,20.932506523754437,14.95994967207783,15.119834134123714,0.5394645340751043,0.773356401384083,0.6795284030010718,0.5713229859571323,0.1220043572984749,0.7057991513437057,0.9242819843342036,0.8549450549450549,0.7288135593220338,0.1423487544483986,0.4852466574458275,0.6985769728331177,0.622962437987243,0.5274102079395085,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0046944548653005,0.0068504272636856,0.0091538062969246,0.0114535652527718,0.0136347436484904,0.01548735725938,0.0176291048661229,0.0200742050553471,0.0223031965526771,0.0245205072218634,0.0266135490892662,0.0286157895819195,0.0305005509046162,0.0326373989107113,0.0344702879756972,0.0367368486429414,0.03880262625634,0.040842407114953,0.0428418236145381,0.0576820756783825,0.0711469890100697,0.0843753602985105,0.0975850690430652,0.1093638011720561,0.1246775216747726,0.1383143469314156,0.1510717098401481,0.1643044058744993,0.175972800205929,0.1906824401491154,0.2031794472220418,0.216030717020536,0.2275579361609095,0.2392299229922992,0.2509474104115418,0.2615197473411675,0.2715943854597804,0.2819360767895436,0.2917783121493186,0.2998923997176939,0.3073729269490772,0.3147080754163165,0.3229176651011214,0.330673468148418,0.3369724601072023,0.3427391603578802,0.3484869702486283,0.3538306059781552,0.3596454144317911,0.360417116339305,0.3620470789524519,0.3634347543577139,0.3641813141355937,0.3652116855809237,0.3657674275612942,0.3658648957803762,0.3667347543900108,0.3677837615339759,0.3679810555774819,0.3684478084048802,0.3707827193383566,0.3712017519846701,0.3724472602278088,0.3724717879322427,0.3740790267180576,0.3758016491067338,0.376187620340267,0.3777879245548101,0.3777205153617443,0.379711599890481,0.3814312317105613,0.3822354656691815,0.3836671802773497,0.383782757311052,0.3853484216795712,0.3820761992904519,0.3867369701886027,0.3895460797799174,0.3953216374269006,0.0,2.5603843078757977,62.14827637135434,211.61695622158655,336.6136798556935,fqhc2_100Compliance_baseline,88 -100000,95804,40657,381.0070560728153,7485,76.89658051855872,5833,60.34194814412759,2371,24.383115527535384,77.41775944651599,79.74606583309618,63.37436231324406,65.0953731973191,77.12931662864817,79.45688414966523,63.26884071175848,64.99231819451053,0.2884428178678178,289.18168343095374,0.1055216014855844,103.05500280857416,63.31996,44.50666177584865,66093.2320153647,46455.9535884187,211.60525,127.78779404083927,220338.284414012,132849.81215903227,244.67412,116.5654757266141,251908.09360778256,119028.1757157421,4240.30071,1893.9079601698568,4385154.805644859,1935995.323963361,1428.57012,621.2638946515511,1471758.8096530417,629094.3850481731,2341.97622,971.2995132736428,2408662.602814079,982161.7768711612,0.37948,100000,0,287818,3004.2378188802136,0,0.0,0,0.0,17762,184.8357062335602,0,0.0,23054,237.26566740428373,2182669,0,78336,0,0,0,0,0,36,0.3653292138115319,0,0.0,0,0.0,0,0.0,0.07485,0.1972435965004743,0.3167668670674682,0.02371,0.3208841463414634,0.6791158536585366,25.274944962500737,4.636446417041069,0.3322475570032573,0.1969826847248414,0.2292130978913081,0.2415566603805931,11.023778031206774,5.542248136349591,25.276634360010583,13146.997201088318,65.40331772363292,13.355363890854996,21.635594980790863,15.067359966683943,15.344998885303117,0.549974284244814,0.7467362924281984,0.7063983488132095,0.6155572176514585,0.1121362668559261,0.7121745249824067,0.8945783132530121,0.8763102725366876,0.7678018575851393,0.1695501730103806,0.4977334542157751,0.6866585067319462,0.6509240246406571,0.5670611439842209,0.0973214285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020251318867141,0.0041762541433103,0.0064636584103662,0.0085718348195242,0.0109310176523224,0.0132334378435604,0.0154520436245031,0.017677798644566,0.0199922320570739,0.0222090309902976,0.0241597392347195,0.0260734779350626,0.0282480648842014,0.0303704161261762,0.0326555443278134,0.0345596893139705,0.0363145258103241,0.0384942357136932,0.040504882609599,0.0425290467663349,0.0571240766245148,0.0705981976707717,0.0841894498490439,0.0968789066193232,0.1094386922128946,0.1251928237854743,0.138769413310168,0.1509845198605086,0.1632060775484944,0.1744333033380468,0.1887267291167012,0.2025041591945206,0.2151861624157138,0.2272861276409892,0.2379236473496292,0.2500442497455639,0.2605700527248609,0.2708579001156744,0.2803511753044463,0.2894068668938857,0.2973600600774074,0.3054134846680212,0.3127953127953128,0.3196265038606572,0.3266539633221269,0.3338096352594819,0.3400850212553138,0.3459733719909968,0.3517693960496,0.3567774261603375,0.3580278469092621,0.3595275135261643,0.3607858058879071,0.3615415751127558,0.3630712490519459,0.3632000245353616,0.3637631324575721,0.3648315529991783,0.3658732327026842,0.3674329707232552,0.3684091975598311,0.3684127297884957,0.3700727936394722,0.3710431533970157,0.3720268249143629,0.373552552474057,0.3744962990483267,0.3762060919467743,0.3783574471081071,0.3790165239896476,0.3804561451620275,0.3817270254413569,0.3815997470755611,0.3807342950919777,0.3824561403508772,0.3842364532019704,0.389280677009873,0.3947693574958814,0.3981737686773658,0.4032068830660931,0.0,2.11752794554306,62.82071226431045,217.0445618780884,338.7756223569989,fqhc2_100Compliance_baseline,89 -100000,95720,40752,381.89511073965735,7471,76.69243627246135,5757,59.54868366067698,2349,24.10154617634768,77.3893283971574,79.75042113195214,63.35181630130408,65.09350789048015,77.10251784064174,79.46457189186357,63.24649319482471,64.99170860054332,0.2868105565156611,285.8492400885666,0.1053231064793678,101.79928993683518,62.45228,43.90457992089668,65244.75553698286,45867.718262533104,209.79783,126.13142625192128,218614.14542415377,131206.70314659557,244.31966,115.96234667751506,251869.78687839533,118488.71769960575,4185.77622,1857.3684407486887,4332402.538654409,1899882.91971238,1418.40634,604.8702937740414,1465336.58587547,615424.2935374437,2326.68718,959.175355666446,2390091.9765984123,967657.2064139968,0.38039,100000,0,283874,2965.670706226494,0,0.0,0,0.0,17574,183.00250731299624,0,0.0,22968,236.53363978269957,2186073,0,78428,0,0,0,0,0,32,0.3343083994985374,0,0.0,0,0.0,0,0.0,0.07471,0.1964036909487631,0.3144157408646768,0.02349,0.3093607305936073,0.6906392694063926,25.775390300533815,4.580376465507158,0.3357651554629147,0.1884662150425569,0.2365815528921313,0.239187076602397,11.049436321830823,5.499840903823047,24.75975836311385,13189.856098287062,64.29633092306656,12.595117028431783,21.68355305446096,15.226361022848062,14.79129981732576,0.5419489317352788,0.7622119815668202,0.6875323331608898,0.5748898678414097,0.1314451706608569,0.697742170429716,0.9364161849710982,0.8133047210300429,0.7040498442367601,0.1208333333333333,0.4931569343065693,0.6806495263870095,0.6475800954328562,0.5350624399615754,0.1336851363236587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002228141426213,0.0046317411089827,0.0068571660428268,0.008925398292091,0.0113049489650685,0.0134051259084339,0.0155714984510027,0.0176016815983347,0.0198943464089018,0.0219484492832219,0.024100830003074,0.0261419132433208,0.0283905837383504,0.0305715962078868,0.0329709995462233,0.0348986214166132,0.0367433144560974,0.039013308714459,0.0409433923040143,0.042919349125987,0.057349915938306,0.0715556392708398,0.0850447880173697,0.0976373978781793,0.1103181463599755,0.125748249677433,0.1400036066999756,0.1532253771545987,0.1653916834052737,0.1769348732962283,0.1902731110536745,0.2036738535434945,0.2163437493204601,0.2281948925466178,0.239606030593155,0.250963924836022,0.2613840606405662,0.2718692345767898,0.2815131773091503,0.2900912049131491,0.2985043550681889,0.3066794517984939,0.3143228858663512,0.3214829011199617,0.3284392305450306,0.3344378202601498,0.3404050265344948,0.3462301839741469,0.3511843060018658,0.3565131318463772,0.3582384758214257,0.3594392703360801,0.3602499331541395,0.3614295834718868,0.363034048368887,0.3639591112199302,0.3645360694354418,0.3659559823667262,0.3668447190129187,0.367066007248835,0.3672126846090411,0.3683012744399588,0.3689815981850264,0.3695827725437416,0.3694685990338164,0.3721901678719682,0.3737789203084833,0.3752951175748418,0.3763535367740121,0.3780594405594406,0.3783091765351378,0.3801754573659998,0.3832202422474475,0.3870770640800428,0.390068233510235,0.3880472384587856,0.3876421764525053,0.3918533604887984,0.3835655388114871,0.3822593476531424,0.0,2.3697040461569667,60.39557907289978,214.4654402446884,336.1983963961066,fqhc2_100Compliance_baseline,90 -100000,95672,40778,382.3689271678234,7422,76.22919976586671,5748,59.48448866962121,2340,24.01956685341584,77.35982293729873,79.7354537761061,63.33991942654043,65.08989940603432,77.07338784258206,79.44911641993076,63.23552828539754,64.98832446136616,0.2864350947166656,286.33735617533773,0.1043911411428908,101.5749446681582,63.20006,44.45442926681986,66058.8677983109,46465.224168847606,210.85904,127.1913648801319,219799.93101429887,132348.4417855802,244.30345,116.82488912343776,252110.366669454,119578.20985911768,4178.75812,1879.2590304688329,4324283.886612593,1920902.0939985209,1402.37948,614.5096069344123,1445628.4179279204,622319.1598301947,2314.8071,957.8903246979236,2377778.5977088385,966223.0099365708,0.37964,100000,0,287273,3002.675809014132,0,0.0,0,0.0,17683,184.20227443766203,0,0.0,23034,237.47805000418097,2180138,0,78205,0,0,0,0,0,32,0.334476126766452,0,0.0,1,0.0104523789614516,0,0.0,0.07422,0.1955010009482667,0.3152789005658852,0.0234,0.3166112106475556,0.6833887893524443,25.522056664639955,4.546085199884204,0.3296798886569241,0.1995476687543493,0.2282533054975643,0.2425191370911621,11.030801125615229,5.513975785599827,24.859577513535783,13185.368023307909,64.83985272142485,13.339151887668995,21.47723111482059,14.635117363834226,15.388352355101038,0.5426235212247739,0.7576285963382737,0.6997361477572559,0.5746951219512195,0.1219512195121951,0.7108868060562364,0.8985074626865671,0.8806941431670282,0.7483870967741936,0.1672597864768683,0.4891080027516624,0.6995073891625616,0.6415620641562064,0.5209580838323353,0.1105121293800539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278932231538,0.0046624299368544,0.0069192918378734,0.0090593325343787,0.0114181714657556,0.0135172273398137,0.0154780464443289,0.0174978574052156,0.0197348260434329,0.0218716752598412,0.0240951512605902,0.0261915998112317,0.0284301733973337,0.0305501498162048,0.0326054442117858,0.0347379409423997,0.0368445571716962,0.0389254784006638,0.0409406578783216,0.042937240761198,0.0571574834409411,0.0711481074289304,0.0842464315701091,0.0967321086631736,0.1090134368342228,0.1247791262392737,0.1385524905271872,0.151708491329726,0.1637893251520626,0.1759042610282279,0.1899933188215263,0.2032920028155287,0.2158200574562549,0.2269782204224581,0.238227909435292,0.2496011875747773,0.2604357337381133,0.271108312908956,0.2809962346323095,0.2902882391996154,0.2990365598362267,0.3070336534524909,0.3148310299129118,0.3221884134361972,0.3289848916934652,0.3353979140756794,0.3417018829236578,0.3478614656969943,0.3524730180914667,0.3579801980198019,0.3590188872285718,0.3603216567525886,0.3616198673627769,0.3628774397036908,0.3634890187506505,0.3642164682783164,0.3642741500269832,0.365567669049109,0.3666489334317241,0.3679896694585433,0.3697083725305738,0.3704593274842193,0.3708016593316346,0.3713168363562807,0.3736502645119211,0.3747350794107643,0.3754465178750035,0.3770528044466902,0.3782945736434108,0.3785412177799058,0.3798808432630614,0.3790993505447909,0.3784664536741214,0.3791132396106905,0.3768102134146341,0.3729285109471392,0.3717789506364483,0.3788158164310592,0.3786593707250342,0.3875096974398759,0.0,2.225803013483539,61.06360981268944,224.2811871952385,327.84080249045803,fqhc2_100Compliance_baseline,91 -100000,95863,40892,382.62937734057977,7520,77.39169439721269,5839,60.44042018296945,2362,24.33681399497199,77.34109898624328,79.63193552731008,63.34986309044478,65.04411687268627,77.05653081235717,79.34572390873,63.246888597522926,64.94280964968638,0.2845681738861145,286.2116185800829,0.1029744929218523,101.3072229998926,62.37506,43.887990656725904,65066.87668860771,45781.99165134192,212.10748,127.51044738373022,220802.6871681462,132554.84116262817,246.39459,116.63126205509184,254266.4218728811,119525.68012026991,4216.11349,1857.5608597054736,4367187.319403732,1906850.557259293,1428.52293,610.9610265704152,1479356.8738720885,626512.8115857163,2332.29494,954.8903768904946,2405060.888976977,971315.5362768412,0.38081,100000,0,283523,2957.585304027623,0,0.0,0,0.0,17749,184.66978917830653,0,0.0,23110,238.25667880204043,2185086,0,78474,0,0,0,0,0,39,0.4068305811418378,0,0.0,0,0.0,0,0.0,0.0752,0.1974738058349308,0.314095744680851,0.02362,0.3089369232713942,0.6910630767286058,25.62714465047568,4.50028050140768,0.3307073128960438,0.1978078438088713,0.2334303819147114,0.2380544613803733,11.0587567560222,5.52481898262655,24.98054649909365,13245.341876351791,65.33636459512105,13.460302176149138,21.60289887039629,15.007922838704328,15.265240709871284,0.538105840041103,0.7740259740259741,0.6866908337648887,0.5612619222303742,0.1129496402877697,0.7044952100221076,0.9201183431952664,0.8489361702127659,0.7006578947368421,0.1346938775510204,0.4877286925479696,0.7135862913096696,0.6344969199178645,0.5212464589235127,0.108296943231441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023998784871652,0.0045799515659989,0.0069074643215774,0.0090868479298231,0.0113125851238997,0.01373850036636,0.0158419674602932,0.0179546034174955,0.0199579188200927,0.0222081283181767,0.0246243354809632,0.0267581510312503,0.0289021496872528,0.0310924542667242,0.0332100279240383,0.0351322620264008,0.0372656678144161,0.0392154831223191,0.0410593413894771,0.0430200378701179,0.058007737145598,0.0718809439207407,0.0855128782562244,0.0983396519675281,0.1108677568469711,0.125951900632664,0.1390283692451111,0.1513608335105252,0.1639508702286818,0.1756478683042891,0.1903316760293579,0.2039322136546011,0.2167759188598637,0.2279971143756558,0.2392373450100667,0.2513792568630492,0.2620415722940631,0.2726413714748529,0.2827752119197031,0.2913898941774703,0.2997003459326877,0.3078884573995227,0.3157240889730241,0.3220345075485262,0.3283168749772255,0.3353269045798703,0.3415247871807711,0.3473102675730034,0.3525892544967173,0.3583375168441356,0.3600744005499171,0.3614527524894294,0.3624714217166728,0.3644034622243486,0.3656997986727313,0.3663255270760341,0.3665665379297191,0.3678028178308641,0.3691563860355477,0.3703890580793974,0.3712215790867476,0.3722289841770257,0.3735556778262158,0.3752857304515107,0.3760906653668048,0.376822696534235,0.3761322333121791,0.3777926506676865,0.3802402636521492,0.3816417371776878,0.3819578618088141,0.3856430065990665,0.3860912799592045,0.3864143395645819,0.3900993883792049,0.3913410516160154,0.3896772181506315,0.3898894801473598,0.3941585535465925,0.3956301209520094,0.0,1.8591385926264856,60.270037663291134,221.9824934922,343.47865586357733,fqhc2_100Compliance_baseline,92 -100000,95668,41080,385.4684952126103,7490,77.4344608437513,5846,60.78312497386796,2314,23.999665509888363,77.31769350596971,79.73965298035009,63.289715480586615,65.08112875217569,77.03952063398366,79.4543480512522,63.190232527949725,64.9802847103441,0.2781728719860581,285.3049290978902,0.0994829526368903,100.8440418315928,63.00162,44.27736284893422,65854.43408454237,46282.31263215936,212.00879,127.30802470418703,221302.9748714304,132766.82349812586,243.12224,115.04956039152287,251815.57051469665,118469.73950182046,4246.24261,1868.257719171712,4420686.750010452,1935022.9012540372,1420.28274,601.2527444894814,1478685.579295062,622568.5960712896,2281.12368,929.0691036967288,2368067.77605887,957735.4650401572,0.38264,100000,0,286371,2993.3833674791986,0,0.0,0,0.0,17706,184.75352259898816,0,0.0,22897,237.05941380607933,2180453,0,78197,0,0,0,0,0,40,0.407659823556466,0,0.0,2,0.0209056319772546,0,0.0,0.0749,0.195745348107882,0.3089452603471295,0.02314,0.3150632911392405,0.6849367088607595,25.473282148174803,4.646894312397516,0.3262059527882313,0.1931235032500855,0.2454669859733151,0.2352035579883681,11.251302332400568,5.624755577979701,24.355264560299627,13265.418195783925,65.34067140130603,13.060584007133864,21.17915608953693,16.02619808011826,15.07473322451694,0.5437906260691071,0.7599645704162976,0.6932354483481908,0.5832752613240418,0.1178181818181818,0.6958119030124909,0.9019073569482288,0.8551724137931035,0.7119205298013245,0.11284046692607,0.4976588628762541,0.6916010498687664,0.6453804347826086,0.5489849955869374,0.1189624329159212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021780533268498,0.0048067172352249,0.0070152284263959,0.0093395258081891,0.0114765940561824,0.0137734311328443,0.0159753534776487,0.0183185361517792,0.0201713180436584,0.0220996740400582,0.0242775753220756,0.0267335691371226,0.0286685202347852,0.0308331871963359,0.0327420004752704,0.03492378853258,0.0371276606774424,0.0391063193319207,0.0410639582075884,0.0431205289173462,0.0574847170698573,0.0712983529608985,0.0845691719531151,0.0973007698545596,0.1096891366784929,0.125232971873941,0.1387253756083048,0.1514531444831665,0.163750320869342,0.1758774002319687,0.1902327487650726,0.2032959889050209,0.2162789177885243,0.2278461605852205,0.2388781751060664,0.2503687601894263,0.2614234469811257,0.2725900900900901,0.2820876712950874,0.2910134763476347,0.2995738570568345,0.3078831570077708,0.3156411015694403,0.3227284723721778,0.3305480551704006,0.3375339087546239,0.343836851198077,0.3494043376438244,0.3551243161961059,0.3606741573033707,0.3615172934765013,0.3634522661523626,0.3639146319100616,0.3649852490310638,0.3660947906755471,0.3672768000981941,0.3671846478627323,0.3680653753822881,0.3697533609277186,0.3714362224404177,0.3722942101715227,0.3743534057255676,0.3753130217028381,0.3761910074751757,0.3781102891728312,0.3785891250488981,0.3788699469753122,0.3809778168792811,0.3846775610613249,0.385672188595094,0.388463126979028,0.3881955974505918,0.3877473121699853,0.388427846934071,0.3902531886541024,0.3932974266906044,0.3948551061521773,0.4000405926527298,0.3988919667590028,0.4028363357608279,0.0,1.2784439911083985,61.26041434432219,219.2236909093021,345.7888564480737,fqhc2_100Compliance_baseline,93 -100000,95722,40966,384.739140427488,7519,77.52658740937298,5768,59.798165520987865,2349,24.205511794571784,77.34880342590687,79.70810004431426,63.338894218876014,65.07775739324188,77.06170948626833,79.41810111688984,63.23399127958283,64.9741513600934,0.2870939396385381,289.9989274244206,0.1049029392931828,103.60603314848048,62.53148,43.989227708699374,65326.1319236957,45955.19076983283,211.51009,127.33511318103906,220514.2287039552,132577.3105253119,246.59294,117.01109229300744,254963.3731012724,120060.32001199982,4183.75766,1858.5993535901357,4343202.889617852,1914128.793370525,1383.86324,593.7576781350283,1436645.0032385448,611228.1065324879,2320.33592,963.9638413737372,2394707.528049978,981817.7706694908,0.38139,100000,0,284234,2969.369632895259,0,0.0,0,0.0,17709,184.5239338918953,0,0.0,23035,238.05394789076703,2183095,0,78383,0,0,0,0,0,45,0.4596644449551827,0,0.0,1,0.0104469192035268,0,0.0,0.07519,0.197147277065471,0.3124085649687458,0.02349,0.3124841732084072,0.6875158267915928,25.601947154488023,4.605516423323716,0.3333911234396671,0.1967753120665742,0.2283287101248266,0.241504854368932,10.851439223320533,5.303603714002951,25.220568139839774,13166.80557869727,64.9436660404438,13.148200188660825,21.733827352217588,14.667217507172722,15.394420992392668,0.5360610263522885,0.7568281938325991,0.6905876235049402,0.5755504935459378,0.1055276381909547,0.6831395348837209,0.9117647058823528,0.8286334056399133,0.7027027027027027,0.1433691756272401,0.4899817850637523,0.690566037735849,0.6470588235294118,0.5386875612144956,0.0960502692998204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019037396332263,0.0041762964765032,0.0065141291664552,0.0086855819339895,0.0107979502196193,0.0128671043925281,0.0152486570784959,0.0173726651015617,0.0195493331970773,0.0215853845760196,0.0237172785601541,0.0255044440339101,0.027841464041536,0.0299180496643742,0.0317203247336008,0.0337786870847412,0.0359809068223941,0.0379331811579165,0.0401235209715319,0.0423135432512972,0.0570291777188328,0.071311209485835,0.0841184246417255,0.0965892353659049,0.1085585300508406,0.1244287890327494,0.1373697502175251,0.1504540663692789,0.1625499455139847,0.1750319127254004,0.1894267433594002,0.2031116448656778,0.2158673191952148,0.2275988014784681,0.2389223796532605,0.2505567065131892,0.2619951751250893,0.2714470647830247,0.2812684499750216,0.2908111824014665,0.2988757279979622,0.3069433229177638,0.3138418179449832,0.3209743349995804,0.3273924505837616,0.334294516327788,0.340784009606244,0.3471446563283168,0.3529122443696609,0.3588319125913805,0.3603795455158099,0.3614459491107468,0.3620599647266314,0.3631439454284763,0.3632652453105678,0.3627667741440196,0.3639452002603464,0.3647772879794723,0.3654350172156843,0.3672069490462971,0.3691435224306612,0.3701788791822666,0.3702629421779431,0.3704786098059933,0.3709638379241903,0.3713866009128587,0.3729125348509672,0.3764347770942989,0.3795713376246728,0.3812992835127887,0.3818741953283061,0.3842839446329509,0.3845660812716318,0.3847405112316034,0.3881038762650372,0.3905439633337353,0.3979016598809897,0.3994187253477268,0.3967851099830795,0.4007843137254901,0.0,1.8302135671676416,61.37181460338804,223.61227802996956,330.7864479101847,fqhc2_100Compliance_baseline,94 -100000,95640,40714,381.87996654119615,7458,76.75658720200752,5859,60.70681723128398,2403,24.78042659974906,77.26744378178137,79.68411640262335,63.28338998351626,65.06994162562653,76.97440916870818,79.38795791654539,63.177564425456886,64.9652590352158,0.2930346130731891,296.1584860779567,0.1058255580593723,104.68259041073225,62.71056,44.06045736544538,65569.3851944793,46069.068763535535,210.52061,127.00771942426807,219563.8122124634,132245.52244107443,244.03823,116.18863867309196,251703.78502718528,118752.09507706312,4278.70156,1903.0733669253616,4436184.859891259,1952476.5605008616,1470.72024,636.1543891531429,1520688.801756587,648413.0998378147,2381.19084,982.5272156352456,2457123.316603932,999049.1501467464,0.37891,100000,0,285048,2980.426599749059,0,0.0,0,0.0,17660,184.05478879130072,0,0.0,22960,236.55374320368043,2180834,0,78258,0,0,0,0,0,27,0.2823086574654956,0,0.0,0,0.0,0,0.0,0.07458,0.196827742735742,0.3222043443282381,0.02403,0.3051321138211382,0.6948678861788617,25.466754233233157,4.650507400952655,0.3329919781532685,0.1906468680662229,0.2258064516129032,0.2505547021676054,11.070421595945117,5.54640462627942,25.608591135183072,13172.903917663069,65.96470822297793,12.890271165164288,22.08327976861262,14.813180139445947,16.177977149755062,0.5381464413722479,0.7600716204118174,0.6955407483341876,0.5857898715041572,0.1171662125340599,0.6894812680115274,0.913846153846154,0.8659574468085106,0.7263513513513513,0.1279461279461279,0.4911652874077387,0.696969696969697,0.6414584740040513,0.5452775073028238,0.1144321093082835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304354874663,0.0048773068343135,0.0073403996101364,0.0093996423055036,0.0115667504247245,0.0136574734183403,0.0158451781307991,0.0182952352755005,0.0203171811572715,0.0225087300693285,0.0246756576585816,0.0267699387763487,0.0288353719382349,0.0310355486862442,0.0329063490261248,0.0348089488048962,0.0368705594796694,0.038902266877024,0.0408275775984022,0.0429125484799199,0.0575319273456932,0.0716889047150248,0.0847649850884193,0.0975224537500131,0.1093751649442092,0.1249814708934205,0.1390369788237293,0.1512707123448239,0.1630302252454598,0.1746577181208053,0.1892920687981883,0.2026946529334676,0.2150233413495544,0.2269524497253769,0.2380868512301172,0.249282683594226,0.2602145017465933,0.2700093393795501,0.2797583904809482,0.2886028358226063,0.2964923048417542,0.3043890338509062,0.3124807541985456,0.3195161174183328,0.3263744418896067,0.3328764416783977,0.3393078726044395,0.345632626028479,0.3515693904020752,0.3576938853823455,0.3594963727490104,0.3605675011730934,0.3619454141990926,0.3632816466253753,0.3645523891982266,0.3655126805186017,0.3656738988554782,0.3667117280490619,0.3670058513650325,0.3676900715964758,0.3689261808239841,0.3697897969765865,0.3711198511376131,0.3724142593176799,0.3724785785372721,0.3737256658149153,0.3757511284896926,0.3794831140003171,0.3810672722111836,0.3810425394779246,0.3822300622040664,0.3842849374660141,0.3893617021276596,0.3887286616260036,0.3898370086289549,0.3928528017503342,0.3934297390757623,0.3883211678832117,0.3790112749349523,0.3808745402533715,0.0,2.078838093857087,61.60607952721359,224.4488038976711,341.97230035794433,fqhc2_100Compliance_baseline,95 -100000,95839,40746,381.6817788165569,7497,77.02501069501977,5831,60.26774069011572,2394,24.635065057022715,77.40182060844235,79.71644760852597,63.36325590393732,65.07607234778786,77.1054045085901,79.41816053892889,63.25446042718493,64.96922560219157,0.2964160998522516,298.2870695970803,0.1087954767523911,106.84674559628604,62.21358,43.78280227262821,64914.67982762758,45683.701074331126,210.23131,126.77322892133712,218759.7324679932,131679.89179604212,248.54445,118.09942248575868,255664.1033399764,120452.87370125596,4224.29957,1905.432289572102,4368713.717797557,1949230.158089272,1408.76016,610.3641828863974,1457207.118187794,624183.7011573834,2361.92122,984.1783734872716,2431967.3827982345,996768.8263699332,0.37988,100000,0,282789,2950.667264892163,0,0.0,0,0.0,17580,182.81701603731256,0,0.0,23397,240.476215319442,2188012,0,78560,0,0,0,0,0,38,0.3964982940139192,0,0.0,0,0.0,0,0.0,0.07497,0.1973517953037801,0.3193277310924369,0.02394,0.3091689820661783,0.6908310179338216,25.560625022580503,4.547902177907493,0.3349339735894358,0.1982507288629737,0.2330646544332018,0.2337506431143886,10.982923060024548,5.4231481630778,25.363670299832997,13146.61369475714,65.77410613983054,13.532363262564973,21.99329088039147,15.224630148045012,15.023821848829076,0.5362716515177499,0.7647058823529411,0.6856118791602662,0.5710080941869021,0.0939104915627292,0.6880546075085324,0.9264305177111716,0.8448637316561844,0.6892307692307692,0.1385135135135135,0.4853412734768667,0.6894803548795945,0.6341463414634146,0.5338491295938105,0.0815370196813495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289252516251,0.0046316472245588,0.0071216978452298,0.0091613597814274,0.0112544606093878,0.0134573883301437,0.0156245222443051,0.0180036742192284,0.020207698755034,0.0222818132503607,0.0242529854953615,0.0264400377714825,0.0283491113920667,0.0305897615419463,0.0326636275500732,0.0349238494761422,0.0370255359231541,0.0389365298271446,0.0407881343609131,0.0425968133046093,0.0574444119978307,0.0715682072404528,0.0854544120883151,0.0982404538053469,0.1106359672220934,0.1261314547048448,0.1401404794948671,0.1531543024813421,0.165120771915593,0.176517221061653,0.1898968384591387,0.203093084330318,0.2150424304325622,0.2269732169200004,0.2372957758867119,0.248964768927567,0.2595930751383187,0.268812488050654,0.2788739745611746,0.2879190327898883,0.2965015386751197,0.3048883171558882,0.312536974372323,0.3195952911841569,0.3268408262454434,0.3336333374429787,0.3397440713194601,0.3453455364757698,0.3514336429950376,0.3564798309896349,0.3569147861232738,0.3584295039524058,0.360001127205095,0.3611773375525597,0.362263926655671,0.3624277368009446,0.3628526148969889,0.3638036709006359,0.3638992505389959,0.3644179894179894,0.3663977485928705,0.3673994850465438,0.367938194109126,0.3701518652280222,0.3710828271140681,0.3711380626274243,0.3734970726831358,0.3762192435970046,0.3775438349412013,0.378478738271112,0.3800954829232464,0.3810877494099978,0.3818862655496319,0.3828939301042305,0.3869238005644402,0.3861962461392255,0.3833230579531442,0.3847256347256347,0.3874374652584769,0.3926905132192846,0.0,2.106318661009528,64.91032543565305,218.48180181778392,332.77887950108953,fqhc2_100Compliance_baseline,96 -100000,95702,40778,382.7506217215941,7489,77.23976510417755,5804,60.12413533677457,2424,24.99425299366785,77.32145341825886,79.70885935526074,63.3143933609397,65.08029750438612,77.02817626175357,79.41285220139943,63.20825036324117,64.9756245624056,0.2932771565052832,296.0071538613107,0.1061429976985266,104.67294198052456,62.39244,43.92247111914116,65194.499592485,45895.03993557205,212.43681,127.59360410277849,221480.146705398,132826.61188144286,243.3943,115.2444276513614,250970.38724373572,117896.69553114298,4219.77811,1869.980458854641,4375572.328686967,1920244.6958837244,1394.18772,596.4140449941502,1445201.9184552047,611600.0344759249,2387.76382,980.3877191121755,2464248.040793296,998797.9912628155,0.3798,100000,0,283602,2963.386345112955,0,0.0,0,0.0,17751,184.95956197362648,0,0.0,22875,235.6690560280872,2185180,0,78366,0,0,0,0,0,36,0.3761676871956699,0,0.0,0,0.0,0,0.0,0.07489,0.1971827277514481,0.3236747229269595,0.02424,0.3111026422764227,0.6888973577235772,25.94227447642665,4.661255332749472,0.328394210889042,0.1953824948311509,0.2344934527911785,0.2417298414886285,11.096127885393203,5.501067387330298,25.660098739085743,13184.95983044002,65.13560169826799,13.211039937440988,21.422685491372054,15.157898435152378,15.34397783430258,0.5389386629910407,0.7654320987654321,0.6857292759706191,0.5782512858192506,0.1183178902352102,0.6905829596412556,0.9014925373134328,0.8666666666666667,0.7315436241610739,0.1403508771929824,0.4935064935064935,0.7083854818523154,0.6345895020188426,0.535277516462841,0.1127012522361359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682742968306,0.0046242774566473,0.0070245249309728,0.009359660979055,0.011506999837213,0.0137621220764403,0.0159193122367602,0.0183581784766183,0.0202516893446058,0.0223250386414584,0.0243187270602226,0.0263098441126332,0.02835070105235,0.0304600958318305,0.032463175714035,0.0344610103600157,0.0363261585631124,0.0385042499974053,0.0405079351873037,0.0425556308301631,0.057144349279298,0.0713283785198367,0.0847562575431599,0.0972850678733031,0.1089529878460499,0.1248557972164893,0.1380840179158971,0.1510975259071496,0.1633521057524819,0.1748908741862485,0.1889696773846071,0.2019549262843411,0.2146461899893411,0.2258516201019537,0.2372942884801548,0.2485743707853971,0.259891795415249,0.2697638344030664,0.2793880837359098,0.2890550739243464,0.2980785915069349,0.3069258297663322,0.3141219928016669,0.3220922147361354,0.3294405016527318,0.3361424259225035,0.342321365980672,0.348731584438055,0.3546358130144432,0.3592921054715338,0.3604721671989327,0.3611076702864143,0.3615743547091081,0.3627972918233898,0.3643540170991093,0.3640999646713669,0.3634068899825369,0.3646059648429784,0.3658269253823363,0.3680694842406877,0.369650683771938,0.3704659612062975,0.3708522822974566,0.3735330555242707,0.3746968079945668,0.375974915682968,0.3765181018318188,0.3769120686913659,0.3782383419689119,0.3808721466682713,0.3808887865530739,0.3835793556728801,0.3866435719784449,0.3876548982931961,0.3887662025924148,0.3931832014607425,0.3906004401131719,0.3899187669235576,0.3957158962795941,0.3982751862014896,0.0,2.060443207138466,59.28228532642147,226.56875331911036,337.5874807312124,fqhc2_100Compliance_baseline,97 -100000,95715,40460,380.34790785143394,7361,75.7665987567257,5758,59.67716658830904,2356,24.2804158177924,77.3455376358958,79.73160199981236,63.32130932583449,65.08697188154106,77.06069617185484,79.44356950251813,63.21882859957641,64.98545875541247,0.2848414640409515,288.03249729422475,0.1024807262580793,101.51312612859442,61.9201,43.521082228638406,64692.1590137387,45469.44807881566,208.89593,125.58262575745285,217761.6361071932,130730.28591996712,240.36941,114.00358408562754,247724.8811576033,116551.4982343874,4200.95831,1855.2824033895945,4355907.099200752,1906143.6915471323,1406.91948,603.2909423785364,1458088.2411325288,618764.0500906152,2333.22602,956.1198269634372,2406892.4619965525,973184.677838617,0.37749,100000,0,281455,2940.5526824426684,0,0.0,0,0.0,17520,182.55236901217157,0,0.0,22578,232.5758762994306,2190601,0,78484,0,0,0,0,0,34,0.3447735464660711,0,0.0,0,0.0,0,0.0,0.07361,0.1949985430077618,0.3200652085314495,0.02356,0.3174705806284754,0.6825294193715247,25.606608862997543,4.643748314033717,0.328238971865231,0.1969433831191386,0.2250781521361584,0.249739492879472,11.02842527876109,5.434602839186355,24.94772207798123,13058.71188216672,64.41240119778475,13.083056399091213,21.188761423366643,14.44112525971746,15.699458115609431,0.5298714831538729,0.7627865961199295,0.683068783068783,0.5725308641975309,0.1063977746870653,0.6842105263157895,0.9318885448916407,0.8458049886621315,0.7090909090909091,0.140893470790378,0.4835140018066847,0.6954377311960542,0.6335403726708074,0.5357492654260528,0.0976460331299041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046626612225,0.0040975708707338,0.0062135133763135,0.0082623630561596,0.0103768210303572,0.0122530046852719,0.014592808631274,0.0164619139527996,0.0184473167539267,0.0208085855896448,0.0228193425978154,0.0247943221618512,0.0268265838279313,0.0290477809721063,0.0313825450717742,0.0333719295343644,0.0355614945564913,0.0376843481780536,0.0395482576096338,0.0414161726246913,0.0558520359675414,0.0701188881446751,0.0842498530769876,0.0968237435428042,0.1086899199459978,0.1237030534431881,0.1374989389695272,0.1494536857574918,0.1619102588768464,0.1732261492063151,0.1881110212880625,0.2015009421498343,0.2143471304650681,0.2257743350729204,0.236583755227823,0.2473270771242119,0.2581966298404196,0.2684896682826965,0.2781987295825771,0.2869374112906918,0.2952281797674822,0.3037780843055198,0.3116159704811013,0.3184740831208018,0.3251064759200611,0.3312163842016517,0.3374628097107283,0.3434157371884448,0.3493771966094687,0.3552764943595414,0.357074717508431,0.3579643710027174,0.3593725821199972,0.3608152189601917,0.3617589460566138,0.362019120458891,0.3624338624338624,0.3640614452475427,0.3655025874772953,0.3666373791891553,0.3677885973668845,0.3677529744140703,0.3684032761969095,0.369201349831271,0.3701784546841328,0.3707313228958706,0.3733298927690808,0.3755972534253077,0.3785426531910382,0.3815957787016309,0.3833814565287135,0.3872071879345384,0.3893187872637321,0.392467332820907,0.3915783443139501,0.3956843253727725,0.3968999530295913,0.3944571785788706,0.3861856823266219,0.3941199841080651,0.0,1.863362880323272,58.97793803364558,217.95122745856463,341.6956554327492,fqhc2_100Compliance_baseline,98 -100000,95616,40540,381.03455488621154,7536,77.63345046854083,5925,61.4541499330656,2357,24.347389558232933,77.23812690061078,79.6702290051045,63.25655152000609,65.0545825566503,76.95662846426059,79.38506748200349,63.154432044349065,64.95327077349499,0.2814984363501907,285.16152310101006,0.1021194756570267,101.31178315531032,62.60782,44.10309606682285,65478.39273761714,46125.22597350114,211.17182,126.34614349581872,220322.55061914324,131612.16305854716,247.16891,116.96001187128805,255216.0830823293,119762.86222159416,4315.34878,1912.291683453056,4480186.370481928,1967390.1601141696,1467.492,629.3443622814771,1525264.3804384205,648831.8722137284,2337.8211,959.013260275198,2416928.610274431,978819.301755012,0.37831,100000,0,284581,2976.2905789825973,0,0.0,0,0.0,17688,184.4356593038822,0,0.0,23232,239.70883534136547,2178514,0,78194,0,0,0,0,0,39,0.4078815261044177,0,0.0,1,0.010458500669344,0,0.0,0.07536,0.1992017128809706,0.3127653927813164,0.02357,0.3166436029689269,0.6833563970310731,25.73149165440121,4.624547436508896,0.3326582278481013,0.1913924050632911,0.2337552742616033,0.2421940928270042,11.124300182663829,5.5143640853637175,24.97625547382928,13126.767017649576,66.42518693172853,13.131516037039164,22.19439467443159,15.42230219231584,15.676974027941949,0.5443037974683544,0.7645502645502645,0.7006595636732623,0.5985559566787003,0.1031358885017421,0.7205673758865249,0.9429429429429428,0.8848484848484849,0.7211538461538461,0.1444444444444444,0.4892580287929125,0.6903870162297129,0.6388888888888888,0.5629077353215284,0.0935622317596566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021181287497973,0.0045439331392695,0.006650556412964,0.0090361139627781,0.0111138251099169,0.0132135252707397,0.0151563057779591,0.0173660769010746,0.0194137021050262,0.0216525150307785,0.0237523598456866,0.0259445352075049,0.0278918496104404,0.0298859817323354,0.0316934134704752,0.0338558642454343,0.0357442750069975,0.0376664658342509,0.0397335137667204,0.0419157303956853,0.0564516972098225,0.0705543330189667,0.0831932596545783,0.0961147563428788,0.1084956967104915,0.1240493994534708,0.1369097572635045,0.1498598394815659,0.1616844627993067,0.1739097744360902,0.1883280825169392,0.2013376983782846,0.2143518669848222,0.2265904060657857,0.2373211963589076,0.2493980048159614,0.2597062672677039,0.269435485689799,0.2793294818723559,0.2875057418465778,0.2961265317489788,0.3046476445132463,0.3126787642863077,0.320013948678483,0.3264216492960322,0.3330077279752705,0.3398224086610316,0.3463331162446206,0.3521672430380405,0.3580039211530309,0.3594246393857052,0.3605759929244631,0.3610435520361991,0.3631468176210174,0.3643063885656312,0.3641289289782348,0.3646523178807947,0.3661943921529773,0.3675592934661094,0.3695054698306059,0.3699737968216864,0.3705141219322864,0.371331447151725,0.3729111697449428,0.37352962576702,0.375108469851955,0.3763239696062629,0.3784710101234489,0.3797732908253631,0.3800375444342373,0.3811956371669198,0.3832502278698193,0.3828110101074312,0.3809780101491619,0.3822861468584406,0.3855020796197266,0.3899208282582216,0.3873565532514596,0.3897790055248619,0.38473400154202,0.0,1.9104204739776705,62.78518612017736,217.6345068731144,353.7067566176699,fqhc2_100Compliance_baseline,99 -100000,95725,40752,381.9065030033952,7492,77.0854008879603,5825,60.3290676416819,2328,23.95403499608253,77.33641368994157,79.70959960963722,63.332022412709286,65.08878219566279,77.05239430352071,79.42552530354922,63.22782527335174,64.98713011407725,0.2840193864208515,284.07430608800155,0.1041971393575451,101.65208158554152,62.31258,43.83491903307348,65095.40872290416,45792.55056993835,209.91209,125.96900231393012,218756.6257508488,131074.00698453074,241.88453,114.9528843146252,249417.2891094281,117571.77561210912,3341.62708,1488.7464978380615,3463480.5954557327,1528527.2621739474,1416.13059,608.7625907735182,1468529.161661008,625210.1699462932,2294.0318,949.0245020312144,2363160.887960303,964595.5127165882,0.3802,100000,0,283239,2958.882214677461,0,0.0,0,0.0,17573,183.0347349177331,0,0.0,22759,234.4424131627057,2188723,0,78547,0,0,0,0,0,37,0.3865238965787412,0,0.0,0,0.0,0,0.0,0.07492,0.1970541820094687,0.3107314468766684,0.02328,0.3061507436349887,0.6938492563650114,25.81644128533512,4.634936316109896,0.336480686695279,0.1914163090128755,0.2412017167381974,0.230901287553648,11.201433109945684,5.590259972342928,24.921681873667435,13186.746285113994,65.38351250425147,12.84862316050332,22.251999526066303,15.512469871760224,14.770419945921622,0.5407725321888412,0.7515695067264574,0.6903061224489796,0.5693950177935944,0.1182156133828996,0.7078066914498141,0.9069767441860463,0.8528784648187633,0.7272727272727273,0.18359375,0.490625,0.6941031941031941,0.6391683433936955,0.5230202578268877,0.1028466483011937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0044422357224718,0.0069343621503629,0.0091572485567932,0.011423862954335,0.0135559041003809,0.0159393834324233,0.018307126812334,0.0202324844345843,0.0223880597014925,0.0243349905181692,0.0263544244017124,0.0283307967586689,0.0305084047462096,0.0328445687280081,0.0349265085895024,0.0369864148442677,0.0388733271086212,0.0408888704111753,0.0429071438988312,0.0575802510390342,0.0714823805139365,0.084767447957632,0.0971909757994995,0.109364953886693,0.1246763129802458,0.1384683882457702,0.1516227827640478,0.1645533141210374,0.1759973432746282,0.1900846901331152,0.2039512100175176,0.2159016820967531,0.228099877665152,0.2396303743503532,0.2508790163861922,0.2616766200196096,0.2712908228630509,0.2810739107266357,0.2900952838497878,0.2989482200647249,0.3066635519476727,0.313755613330182,0.3198596760096263,0.3271718814476782,0.3336699383027721,0.3400718047511227,0.3456224715670559,0.3510146466543208,0.3570268235667023,0.3584206198352678,0.3597842728865226,0.3602129281861568,0.3608824211502783,0.3632226781051846,0.3635021453947065,0.3632894485785155,0.3638522427440633,0.3658310598651361,0.3671846960017227,0.36832,0.3702681779383449,0.371637679025847,0.3731349980929304,0.3750120784616871,0.3745712565129735,0.375532404742719,0.3777234326367274,0.380355498902344,0.3814321265152123,0.3833580292646786,0.3862393763871596,0.3857936918304033,0.3900327562002808,0.386084452975048,0.3914421553090332,0.3920250195465207,0.3960945529290853,0.398783185840708,0.4040597472232861,0.0,1.9856789651783595,59.54921997447513,226.57162155863975,340.29506314020915,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95601,40690,381.2512421418186,7494,77.20630537337476,5827,60.27133607389044,2397,24.623173397767808,77.26635035352784,79.70380876291036,63.26822878755484,65.07169394389422,76.96568022652085,79.40410604672522,63.15870178500798,64.96558193289852,0.3006701270069953,299.7027161851378,0.1095270025468622,106.11201099570168,61.91394,43.519871917550304,64762.628005983206,45522.17227597023,209.43883,126.05729254335392,218361.77445842617,131157.22624070843,245.2792,116.21862849696436,252328.19740379284,118276.96352383104,3346.27036,1502.431365870351,3463855.022437004,1535940.9958048072,1428.37608,613.5491026373879,1476124.862710641,623943.3028896172,2348.68496,967.5500387149116,2414925.4505706006,977605.50864421,0.38057,100000,0,281427,2943.755818453782,0,0.0,0,0.0,17544,182.7595945649104,0,0.0,23089,237.30923316701708,2185007,0,78363,0,0,0,0,0,30,0.3138042489095302,0,0.0,0,0.0,0,0.0,0.07494,0.1969151535854113,0.3198558847077662,0.02397,0.3145426906511274,0.6854573093488726,25.61570148777548,4.623976471812363,0.3401407242148618,0.1978719752874549,0.2354556375493393,0.2265316629483439,11.356280773917224,5.726369425809177,25.397887247262343,13242.485681889682,65.64309493926318,13.3512329695666,22.49823524045602,15.27240385551327,14.521222873727302,0.549854127338253,0.753686036426713,0.7048435923309788,0.5721574344023324,0.1159090909090909,0.6909350463954318,0.9,0.8431771894093686,0.6979166666666666,0.1397058823529411,0.5051965657478535,0.6899128268991283,0.6592890677397719,0.5387453874538746,0.1097328244274809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025943491831853,0.0049708343900583,0.0071496034204352,0.0095371726045225,0.0117566824779625,0.0140546490414505,0.0162679621162638,0.0184339331514464,0.0207497749038225,0.0230044061891587,0.0250112894618005,0.0270748103529798,0.029214963661444,0.0312303457093072,0.0331666907678641,0.0351813911135945,0.0374608702862947,0.0393136470808188,0.041528757884219,0.0435326755804009,0.058075105591101,0.0725506429267577,0.0859357766363092,0.0982715581255727,0.1106980281154614,0.1260327952205415,0.1398554575406525,0.152448,0.1645455810418829,0.1753663987621954,0.1891241734177624,0.2023566906599601,0.2156837118117954,0.2281860811639933,0.2395308590262238,0.2513312034078807,0.262160652441068,0.2720423447266175,0.2814250809705096,0.2905624010463275,0.2990836104127808,0.3074471948547931,0.3156878081152825,0.3221874287633924,0.3295256864104716,0.3367916604910824,0.3425112895132965,0.3477351560905937,0.3537441447052564,0.3588462351945855,0.3593261033775763,0.3604577416241555,0.3617958492164337,0.362863515235778,0.3644344417450404,0.3655027332473435,0.3663786256631826,0.367132232904045,0.3681393154327871,0.3688028586306585,0.3703717682581619,0.3712908750547656,0.3719962836268423,0.3725459258424434,0.3735492643131161,0.3741937182423716,0.3756880601746448,0.3769958887082895,0.3792134831460674,0.3787701848346957,0.3806689734717416,0.3817418451932393,0.3835378783010987,0.3858838033595315,0.3864908452708471,0.3892874222859875,0.3892409955170814,0.3903535663192315,0.3918956425201221,0.3945552147239264,0.0,2.483893111130425,61.87734107219083,216.56290046025475,345.3401347007857,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95703,40969,383.655684774772,7718,79.44369559992894,6050,62.58946950461323,2468,25.34925759903033,77.34534288058313,79.71348313823366,63.32656324425341,65.07416882758734,77.0478950274986,79.41638295975827,63.21882763540498,64.9695887854599,0.2974478530845346,297.1001784753895,0.1077356088484293,104.58004212743788,62.59814,44.04958756229362,65408.754166536055,46027.384264122986,212.47135,126.8292349177914,221402.54746455175,131915.15931349216,252.24976,120.05043162218088,259968.48583638968,122612.95674962876,3483.44248,1552.304436498022,3604540.630910212,1586695.794800605,1521.42341,648.6300850218075,1572083.3098230986,660149.6202205921,2432.85464,993.2553315536542,2500486.735003082,1001376.0527314696,0.38117,100000,0,284537,2973.1251893880026,0,0.0,0,0.0,17694,184.24709779212773,0,0.0,23733,244.3497069057396,2182399,0,78377,0,0,0,0,0,39,0.4075107363405535,0,0.0,0,0.0,0,0.0,0.07718,0.2024818322533252,0.3197719616480953,0.02468,0.3137544637359931,0.6862455362640069,25.714422192418628,4.64408824740129,0.3335537190082644,0.1930578512396694,0.2360330578512396,0.2373553719008264,11.346273383453743,5.663216590867305,25.91656480924008,13273.835059575997,67.64473716783208,13.552965561387635,22.759811459253037,15.799314180405847,15.532645966785555,0.5540495867768596,0.7816780821917808,0.7036669970267592,0.584733893557423,0.128133704735376,0.7246474143720618,0.9298701298701298,0.8497109826589595,0.7677419354838709,0.1527272727272727,0.4983556237667178,0.7088122605363985,0.6531020680453635,0.5339892665474061,0.1223083548664944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0049155737538767,0.0071324215737997,0.00925248832013,0.0113689519819398,0.0134189922520082,0.0157283671243489,0.0179965905494931,0.0204444626173001,0.0227761285699662,0.0250038443795171,0.026935992359749,0.0290883656823114,0.0313700845807535,0.0335503978369229,0.0354776352378097,0.0374700953840736,0.0394669932232588,0.0416948271380296,0.0435398820317222,0.0581514360313315,0.0714943587381994,0.0848592325208029,0.0974632000925916,0.1100465342042229,0.1255331082725704,0.1392038216560509,0.1517397833658178,0.1643244167530538,0.1759317852737705,0.1909235874671378,0.2037919310479242,0.2170085423581261,0.2290959647932038,0.2399198211394649,0.2513469767854371,0.2623459546347562,0.2725871245794277,0.2822739968662715,0.2915496992265826,0.3006388445246858,0.3092742501520752,0.316709882901763,0.3234303252646597,0.3300351295173034,0.336404563675609,0.342573686913605,0.348620000763485,0.354592729960706,0.359757710416336,0.3614898614898615,0.3625413907284768,0.3632326318171532,0.3641874157107846,0.3651437432899916,0.3653855019901338,0.3664546017039234,0.3675399213906293,0.3690632850819476,0.3701446114795417,0.3712109843937575,0.3721639279350623,0.3734235749117202,0.3740186705657406,0.3759664558035822,0.3772925534710179,0.3789163182312847,0.3792558903417345,0.382060152499294,0.3842256442990505,0.3846260069044879,0.3847061980144888,0.3872630105611401,0.3868230211387131,0.3925714285714285,0.3951283897288217,0.405225726654298,0.4065641025641026,0.4083798882681564,0.4060150375939849,0.0,2.4529444572443766,65.79769490376354,214.0017056547545,360.22451415804346,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95666,41016,383.7936152865177,7541,77.48834486651475,5872,60.82620784813832,2408,24.78414483724625,77.2498286400838,79.64802306438592,63.26585613190741,65.03881268886732,76.95209425984004,79.35106493453988,63.15729295257849,64.93354157444016,0.2977343802437673,296.95812984604686,0.1085631793289252,105.2711144271683,62.55524,44.06317184443316,65389.20828716576,46059.385617077285,214.10029,129.13224791212943,223251.1864194176,134433.80862769298,249.1788,118.3997487360321,257695.6703531035,121565.0018311273,3354.21552,1501.0537314475953,3475901.448790584,1538785.9013268268,1418.63174,613.4142806224893,1469863.054794807,628177.0476394808,2365.08622,978.3429212569072,2436310.3296887083,990520.3683899222,0.38128,100000,0,284342,2972.2367403257167,0,0.0,0,0.0,17891,186.4194175569168,0,0.0,23432,242.12363849225432,2173313,0,78080,0,0,0,0,0,34,0.355403173541279,0,0.0,1,0.0104530345159199,0,0.0,0.07541,0.1977811582039446,0.3193210449542501,0.02408,0.3097188957519223,0.6902811042480776,25.389198680873964,4.645523234156829,0.3342983651226158,0.1978882833787466,0.2356948228882834,0.2321185286103542,11.14572002617023,5.55062961500403,25.470301984006948,13264.83224482195,65.87882244081516,13.6560783497232,21.837474058327857,15.378293827869928,15.006976204894173,0.5449591280653951,0.7805507745266781,0.6826286296484972,0.5765895953757225,0.1137197358767424,0.7007930785868781,0.9380053908355797,0.8532731376975169,0.7137809187279152,0.1517241379310344,0.4967670011148272,0.706700379266751,0.6328947368421053,0.5413260672116258,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070545808176,0.0042390499660267,0.006374275535165,0.0089311115626905,0.0112703563182146,0.0136883058684537,0.015988905657299,0.0182161637821003,0.0203620372264266,0.0227363505084954,0.0250482090838222,0.0270778333624382,0.0294393052282806,0.0314571072242091,0.0335339727639716,0.0358162336587787,0.0376883380655323,0.0400245026786826,0.0421686746987951,0.0441587420754087,0.0585438739472969,0.073095893853871,0.0861757729686614,0.0991824236876164,0.1111885012347242,0.1267964864006773,0.1397472655835191,0.1523770954781367,0.1649781220245418,0.1762784701332187,0.1900121934112416,0.2039216111575043,0.2170129232782594,0.2288707288981517,0.2406693969466491,0.2519365629758054,0.2628543915438706,0.2731981448254849,0.2825408753472697,0.2915579564392851,0.3002776583756404,0.3084868854000188,0.3164022548343362,0.3238282096343196,0.3303413539519738,0.3371612424204925,0.3424306393244873,0.3477716126722749,0.3534315701855922,0.3582829568352954,0.3596990894207742,0.3608850071170935,0.3626390736913625,0.3631437495460158,0.3646276794383449,0.3641816755617761,0.3638820873215251,0.3653576321827696,0.3665033943456217,0.3678158851261381,0.369462592998225,0.3701784112428984,0.372324255858138,0.3733459784130425,0.3745564143697438,0.3753744285038625,0.3763730748272005,0.3775558575356318,0.3790510485066723,0.3820975551198431,0.3818215086226613,0.3823936907172546,0.3823305889803673,0.3873120589137772,0.3898513679825807,0.3889485618808927,0.3890004634636181,0.3914656771799629,0.3999444135630906,0.3954022988505747,0.0,2.117489862469804,61.47911930124496,221.16327031264228,345.75736387575114,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95746,40895,383.4416059156519,7403,76.14939527499844,5683,58.780523468343326,2381,24.52321768011197,77.32698317968122,79.68718181186904,63.31555014592704,65.0614608852365,77.02839185103493,79.38618453831478,63.2068280389998,64.95427391970428,0.298591328646296,300.997273554259,0.1087221069272388,107.18696553222172,62.55282,43.98637871662063,65332.045202932764,45940.69592110441,209.0212,126.04454034045152,217738.45382574727,131075.13665369994,243.34486,116.09968574066866,250099.59684999892,118199.76445184436,3292.293,1476.4383738822144,3407180.5819564266,1510894.1925781716,1386.45779,601.2279287172853,1433018.6221878722,613012.8660982777,2345.79092,971.283994323844,2418197.271948697,987945.3906221977,0.38097,100000,0,284331,2969.6384183151254,0,0.0,0,0.0,17491,182.08593570488583,0,0.0,22808,234.2238840264868,2182006,0,78340,0,0,0,0,0,41,0.428216322352892,0,0.0,0,0.0,0,0.0,0.07403,0.1943197627109746,0.3216263676887748,0.02381,0.3169642857142857,0.6830357142857143,25.572377563254072,4.685970053497787,0.332746788667957,0.1896885447826852,0.2331515044870667,0.244413162062291,11.153718924540472,5.508233279889843,25.471091719755343,13216.592659741533,63.97135406325323,12.60500281277209,21.16618592075005,14.938257229652208,15.2619081000789,0.5409114904099948,0.7829313543599258,0.6895822316234796,0.5886792452830188,0.1051115910727141,0.6934306569343066,0.9113924050632912,0.8444924406047516,0.7320872274143302,0.1333333333333333,0.4924646417806631,0.7296587926509186,0.6393557422969187,0.5428286852589641,0.098302055406613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0046439942406359,0.0068915819174634,0.0091128901170351,0.0113806254767353,0.0136041953057379,0.0157237834971652,0.0179143784578323,0.0202976166142022,0.022384622470599,0.0245772266065388,0.0267512523610084,0.0288025657103502,0.0308500231684085,0.032659376934186,0.0346053297787697,0.0367425536540671,0.0387739225143924,0.0406809961335384,0.0428386881693545,0.0571562793611024,0.0714330550499027,0.0851837872973936,0.0974602106679561,0.1094211147651572,0.124641848958058,0.1382726000084843,0.1512141632865979,0.1646164862294135,0.1761353880494505,0.1905074955005442,0.2037165381616564,0.216035077411844,0.2283860804498364,0.2394443710650288,0.250321407988651,0.2615058087578195,0.2717043611461525,0.2816341369203153,0.2906383612833709,0.2992321145226486,0.3068694419383941,0.31391033166139,0.3210078180355234,0.3278147710811107,0.3350003704526932,0.3410579408295902,0.346994744629828,0.3526226954037912,0.3580374264365536,0.3596077055903302,0.3608126560280264,0.362126902549911,0.3635533392285056,0.3647258742509615,0.365392007626428,0.3662513508359291,0.3678607916158586,0.3694596496044752,0.3694001790510295,0.3702213279678068,0.3718256725900923,0.3725746859495408,0.3734175792053605,0.3740321331784746,0.3750492449113591,0.3756131141898287,0.3779298112251362,0.3796456734679444,0.3834478351174309,0.3835302738847669,0.3868297372356334,0.3867452322118735,0.3909785932721712,0.3912550760222872,0.393353115727003,0.3937346437346437,0.3871559633027523,0.3886696730552424,0.3965381589299764,0.0,2.2311165872119405,60.54279154850265,215.89382730180523,329.5440235924736,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95762,41266,386.91756646686576,7506,77.1287149391199,5886,60.91142624423049,2410,24.74885654017251,77.39144353273707,79.72993145970955,63.36142006586866,65.08715381821247,77.09276098927567,79.43090506798832,63.25184173684866,64.97992201177928,0.2986825434613962,299.02639172122747,0.109578329019996,107.23180643319095,62.69934,44.16465134077481,65474.1337900211,46119.18228605795,213.60684,128.63390536634725,222505.18995008455,133771.7313405602,251.3837,119.59563970911476,258993.34809214508,122055.2512687868,3379.72312,1524.5521480991024,3497404.356634156,1560131.77262286,1425.0278,623.7171720998703,1472126.783066352,635360.7932972393,2366.9026,989.7350801378868,2432886.4058812475,1001554.8191952518,0.3844,100000,0,284997,2976.096990455504,0,0.0,0,0.0,17826,185.5746538292851,0,0.0,23609,243.07136442430192,2183156,0,78347,0,0,0,0,0,45,0.4699149975982122,0,0.0,0,0.0,0,0.0,0.07506,0.1952653485952133,0.3210764721556088,0.0241,0.3150771565899317,0.6849228434100683,25.350144158923545,4.543463177722264,0.3314644920149507,0.1991165477404009,0.2405708460754332,0.228848114169215,11.203835412281114,5.668023674611214,25.596734577474187,13273.878275738813,66.2480754882214,13.399133230946047,22.111552200863837,15.795514007640486,14.94187604877104,0.5407747196738022,0.7431740614334471,0.6852895950794464,0.5713276836158192,0.1232368225686711,0.6937901498929336,0.9245283018867924,0.8568376068376068,0.7289719626168224,0.1462585034013605,0.4929765886287625,0.6756440281030445,0.6311530681051922,0.5251141552511416,0.1168091168091168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024299368216426,0.0045603332083464,0.0069195024451614,0.0091609875991509,0.0115402995394047,0.0137305594007002,0.0159058487874465,0.0183035076621707,0.020400657888016,0.0223152165015961,0.024405737704918,0.0265512147078135,0.0284522353859906,0.0306392350997807,0.0326777173016658,0.0348314722804697,0.0368637840746796,0.0388496520539705,0.0409537866661123,0.0431462827737788,0.05851346978822,0.0722155375359665,0.086019700609481,0.0987485540014722,0.1113126179605866,0.1275140107856614,0.1403892040935362,0.1530923831512198,0.1662964307836897,0.1779676461444452,0.1925544742054948,0.2059682443540711,0.2183634426835366,0.2298648368098427,0.2411522181298444,0.2529744446780959,0.2639794837486759,0.2739918426049731,0.2838237795543459,0.2920820980093636,0.3006047711004984,0.3086286937100225,0.3154083697156852,0.3229093001234582,0.3293911945409067,0.3355137538958079,0.3421167874078801,0.3484107579462103,0.3543923296190723,0.3602333623716375,0.3614319950453725,0.3619653004223937,0.3632214349106174,0.3635733271697677,0.3652800475412271,0.3651189474489406,0.3651331412468733,0.3654799829222634,0.3668347722027523,0.3684125820353713,0.3703097669694747,0.370935080405003,0.3718353763848519,0.3726726253461512,0.3731723285080381,0.3746713639709749,0.3754480543687093,0.3766056646262171,0.3785509096712416,0.3791678369377683,0.3772026939754589,0.3789405615131756,0.3797840393585074,0.3796403488461835,0.3831464943948318,0.3844961240310077,0.3907083015993907,0.3955798864557989,0.3857182244279018,0.3837031369548584,0.0,2.1205482287239894,61.958819254025656,227.43169333997977,340.0454248916027,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95726,40835,383.542611202808,7424,76.33244886446734,5770,59.69120197229593,2382,24.497001859473915,77.37264048070351,79.73120607033927,63.34029949113111,65.08132813415341,77.08442110048489,79.44302306062863,63.23418436368795,64.97809398449941,0.2882193802186208,288.183009710636,0.1061151274431608,103.2341496539999,62.56008,44.033671080290674,65353.27915090988,45999.69818052637,210.48356,126.28941233875618,219327.85241209285,131374.58197225016,243.95337,115.77872527002482,251246.8190460272,118156.42012640506,3319.55468,1487.8215740386042,3435848.066356058,1522331.2517378828,1405.77189,609.4997627533777,1452028.6651484445,620204.3674167707,2344.56932,972.2602092240176,2413361.322942565,984404.4665649988,0.38095,100000,0,284364,2970.6035977686315,0,0.0,0,0.0,17620,183.4715751206569,0,0.0,22904,235.6726490190753,2184004,0,78388,0,0,0,0,0,47,0.4805382027871215,0,0.0,0,0.0,0,0.0,0.07424,0.1948812180076125,0.3208512931034483,0.02382,0.3118128355919202,0.6881871644080798,25.69514975395504,4.625493488243301,0.3223570190641248,0.2010398613518197,0.2386481802426343,0.2379549393414211,11.046840761418231,5.428980551950582,25.35882674477377,13215.721220659749,64.79300187842699,13.41261331757023,20.91702051197956,15.392729328962435,15.070638719914763,0.5405545927209705,0.7637931034482759,0.6833333333333333,0.5867828612926652,0.112163146394756,0.7085168869309838,0.9244186046511628,0.8654292343387471,0.75,0.1541218637992831,0.4886569872958258,0.696078431372549,0.6284114765570329,0.539756782039289,0.1014625228519195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0046618629209611,0.0069083051827505,0.0090591485212869,0.0113473446603422,0.0131929881711016,0.0153714425507624,0.0174946158635542,0.0196669699168958,0.0218141244152361,0.0237763241536284,0.0260674941735711,0.0280816846954304,0.0299382080329557,0.0321881770349736,0.0343024277313269,0.0364020375201888,0.0383873376758079,0.0401920738361759,0.0421310280179148,0.0574593827005805,0.0712028627631524,0.0849638251022334,0.097563539279783,0.1105008486279636,0.1256634174190683,0.1387309601595316,0.1518273344543539,0.1644826076276526,0.1765639579155092,0.1916254725210817,0.2046718455845757,0.2173619872101622,0.2284589303292136,0.2398719274695772,0.251781025294437,0.2624746042731798,0.2717066963933836,0.2810625340847119,0.2907491512982842,0.2987701785672927,0.3066646371449312,0.3143713994452478,0.3217115689381933,0.3294850427610369,0.3363941548183254,0.3419832598235766,0.3481161745419356,0.3543742791607812,0.3597891983991758,0.360936299809991,0.3621988677841903,0.363479928911958,0.364368248819901,0.3655499113646859,0.3648526181589174,0.3653012965990065,0.366443770999407,0.3687273225166016,0.3698441632711416,0.3704043945330809,0.3699112244696206,0.3713043843440282,0.3714989365274824,0.3713157387786553,0.3734735413839891,0.3734568781183179,0.3744583307165735,0.3755522827687776,0.3758208719044228,0.3782296215429403,0.3779632188795577,0.3782484982611445,0.377991159884164,0.3809255608748709,0.381076594735594,0.3788411557865769,0.3739886731391585,0.3862258953168044,0.3974702951322346,0.0,2.304083326099994,60.04514050816621,220.19097533334053,337.1077977917767,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95745,40895,383.66494333907775,7461,76.8290772364092,5779,59.80468953992375,2352,24.178808292861245,77.33281654085012,79.69679741846794,63.319784280511655,65.07021711008849,77.04361412133338,79.4076235816768,63.21404772606492,64.96694549776657,0.2892024195167408,289.17383679113584,0.1057365544467359,103.27161232191884,61.8255,43.462843084085335,64573.08475638415,45394.37368435462,207.31808,124.23757806955425,215942.19019269937,129182.06164362354,240.12,113.52071612261996,247302.03143767297,115922.55342511344,3332.05836,1487.5327348821936,3448567.7163298344,1522785.860156822,1363.521,585.0819656461882,1409268.7659930023,596543.7288990113,2325.03892,963.6340653934308,2391531.192229359,976536.8184664912,0.38179,100000,0,281025,2935.140216199279,0,0.0,0,0.0,17362,180.71961982348947,0,0.0,22577,232.30455898480335,2189913,0,78642,0,0,0,0,0,42,0.4386652044493185,0,0.0,0,0.0,0,0.0,0.07461,0.1954215668299327,0.3152392440691596,0.02352,0.3130313412003553,0.6869686587996447,25.686551332650225,4.595572264298983,0.327738363038588,0.2033223741131683,0.2320470669666032,0.2368921958816404,10.85295660210392,5.289442167063152,24.94083934604027,13219.235157579957,64.57224021487102,13.530115835899093,21.185434303895384,14.83088288038261,15.025807194693924,0.5308876968333621,0.7463829787234042,0.6937697993664202,0.5592841163310962,0.0927684441197954,0.6790393013100436,0.8909090909090909,0.8663793103448276,0.6885813148788927,0.1305841924398625,0.4846765039727582,0.6899408284023668,0.6377622377622377,0.5237642585551331,0.0825602968460111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021481624091844,0.0042700800259653,0.0063965884861407,0.0086703733444465,0.010763846498189,0.0131498533246414,0.015337704851161,0.0175191424196018,0.019897343612605,0.0223016352484615,0.0244930181057639,0.0264403577406072,0.0284709583885992,0.0305770399283205,0.0324590908152947,0.0342856552208876,0.0363094066839963,0.038335408883354,0.040375157268672,0.0425551863156688,0.0573963879319344,0.0713441237091829,0.0847201686223928,0.0978679114363212,0.1103217101657039,0.1254613326565358,0.1395282238391209,0.1526973516137273,0.1645604777114289,0.1763892017117667,0.1896516448608194,0.2026076606795066,0.2152054288013572,0.2271688624063849,0.2386619880982499,0.2503958806267649,0.2616435451288519,0.2718543866363493,0.2812092041184684,0.2899080257024064,0.2983802808748104,0.3064049562579783,0.3143629188048876,0.3216389705441238,0.3286221660017515,0.3350868743748379,0.3412988966900702,0.3474842967625212,0.3534646016551223,0.3594677882262693,0.3611096119596308,0.3622410987616867,0.3641280555830144,0.3648621248986212,0.3661543507103352,0.3659281777286475,0.3655198691793545,0.3669036334913112,0.3683138141223204,0.370567185543031,0.3715386060492203,0.3732912723449001,0.3726207752329274,0.3726995241942724,0.374749305303854,0.3773332634228188,0.3782915495381791,0.3788037110921123,0.3804051903970583,0.3812785388127854,0.3830324743925405,0.3844418179864618,0.3886168521462639,0.3929916237608545,0.3907523213947318,0.3923748057846301,0.395582329317269,0.3952917093142272,0.3999443362092958,0.4040989945862335,0.0,1.993626845778028,60.98546390454309,206.96553616407363,349.8840012408054,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95776,40913,382.14166388239227,7446,76.4909789508854,5756,59.4825425993986,2340,23.98304376879385,77.34910350822409,79.67852818263107,63.34642956891118,65.06702657545219,77.06399836978402,79.39461447039895,63.24240078010022,64.96650582124566,0.2851051384400733,283.9137122321205,0.1040287888109574,100.52075420652784,63.04166,44.38960523568604,65821.98045439358,46347.31585750714,211.15962,126.9868675765664,219867.28407951887,131983.2156277869,248.83983,118.80787418911709,256225.65152021384,121218.0623981238,3306.28492,1484.009594902525,3418403.0654861345,1515843.174002461,1399.75803,606.8307016952222,1443149.8392081524,615360.8107798427,2296.86006,943.205510830982,2356513.176578684,950112.9389226672,0.38101,100000,0,286553,2991.908202472436,0,0.0,0,0.0,17587,182.968593384564,0,0.0,23403,240.72836618777148,2181386,0,78331,0,0,0,0,0,34,0.3549949883060475,0,0.0,0,0.0,0,0.0,0.07446,0.1954279415238445,0.314262691377921,0.0234,0.3095420823740087,0.6904579176259913,25.757708059288746,4.576231863664612,0.3398193189715079,0.1940583738707435,0.2359277275886032,0.2301945795691452,11.279914583793676,5.805953267657977,24.694560555328486,13271.448662178596,64.77862220352726,13.12631197853241,22.05758874382267,15.05936907578085,14.535352405391317,0.5387421820708825,0.7726051924798567,0.6774028629856851,0.5655375552282769,0.1094339622641509,0.7126680820948337,0.9322033898305084,0.8475609756097561,0.7422680412371134,0.1594202898550724,0.4821551922634124,0.6985583224115334,0.6202185792349727,0.5173383317713215,0.09628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0051693205890998,0.0073246695275486,0.009639312957715,0.0122524098100622,0.0143735494116209,0.0168266780814937,0.0191355819768331,0.021436818604461,0.0234085654068875,0.0253862230053681,0.0274699339161843,0.0296176020224649,0.0316600965447677,0.033724778587704,0.0358201555511945,0.0381415562913907,0.0401493156366652,0.0420515591392263,0.0441325016401295,0.058086869403686,0.0729212425478506,0.0864805921949378,0.0991697320021019,0.1110197801734585,0.1272337232772194,0.1405918765369286,0.1534608717845103,0.1652775257996008,0.1768373687593743,0.1911896074822683,0.2045049039220563,0.2166458276705626,0.2286317308954114,0.2395946793411889,0.2512930127473891,0.2621904262324356,0.2732752319370256,0.2833119631449353,0.2917239168269671,0.3002463880438177,0.3085041654965834,0.3168087121212121,0.3235812308983041,0.3298753674594883,0.3361619201499808,0.3426546278787271,0.3487095212616882,0.3542771904792788,0.3592723330556988,0.3600507189683546,0.361573352818717,0.3626771986740955,0.363236549339583,0.3644380334889807,0.3646662067908331,0.3647217377517044,0.3656591237995,0.3666592545712673,0.3678360479684983,0.3681107167671305,0.3696101008496784,0.3703415332168935,0.3706512444304424,0.3710068350380532,0.3720942463447986,0.3731506533878302,0.3746936957006014,0.3769711606762324,0.3778215909548143,0.3776382025585369,0.3783231083844581,0.3786339078981219,0.3819945673263484,0.3768506056527591,0.3766756032171581,0.3772577351971101,0.3775425487754255,0.3793878124122437,0.3751993620414673,0.0,2.3552198967901856,62.25219016816644,214.8969013595984,334.26962830489737,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95673,40547,379.898194893021,7368,75.65352816364073,5710,59.15984656068065,2371,24.44785885254983,77.31532774038504,79.70675884655613,63.31028192710126,65.0757892695712,77.0260229638088,79.41432605210332,63.204591377897536,64.97129332333668,0.2893047765762446,292.43279445280734,0.1056905492037216,104.49594623452184,62.80802,44.19704271149104,65648.63650141627,46195.94108211413,210.36547,127.23010760333328,219352.1265142726,132462.0488952638,244.8657,116.79721603550377,252628.55769130267,119575.52499150424,3293.4682,1491.4423562085033,3413573.44287312,1530354.1614479057,1406.98883,614.4874701400912,1457928.1510980108,629604.5945468467,2337.90168,969.875875486525,2412376.218995955,988042.134578384,0.37768,100000,0,285491,2984.028931882558,0,0.0,0,0.0,17633,183.7613537779729,0,0.0,23068,237.78913591086305,2180151,0,78223,0,0,0,0,0,40,0.4076385187043366,0,0.0,1,0.0104522697103676,0,0.0,0.07368,0.195085786909553,0.3217969598262757,0.02371,0.3143631436314363,0.6856368563685636,25.27963231878353,4.682566286783078,0.333800350262697,0.1893169877408056,0.2367775831873905,0.2401050788091068,11.504619159881203,5.812128222844962,25.17235098960964,13097.225335690771,64.5235128000987,12.592753806435349,21.67632520237297,15.22312848687335,15.03130530441705,0.5499124343257443,0.759481961147086,0.7046169989506821,0.613905325443787,0.1064916119620714,0.7178043631245602,0.9209726443768996,0.8491735537190083,0.7794117647058824,0.1529850746268656,0.4942877127535556,0.6888297872340425,0.6554149085794655,0.558300395256917,0.0951949229374433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.004734483667552,0.0071444518865818,0.0093674435616605,0.0114339192708333,0.0136694677871148,0.015890824527763,0.0178642561666922,0.0200337475072863,0.0222112991920371,0.0243372134762319,0.0266563944530046,0.0288356685801287,0.0308503951612072,0.0328444173780204,0.0350191333126486,0.0371444853131637,0.0391074208614426,0.0410555659572697,0.0431683168316831,0.0573903231535946,0.0715235532474059,0.0845717884130982,0.0974038957348964,0.1093685688052093,0.1249603048586853,0.138603979528997,0.1521190367143481,0.1645557443806714,0.1759383485923429,0.1898408113555285,0.2027872828864729,0.2148875487143759,0.2265354813290723,0.2377606203121386,0.2492262980998547,0.2593333184387497,0.2694355337948111,0.2787581476686879,0.287651759202999,0.2962598311190391,0.3039141074125677,0.311491720560017,0.3184213369182941,0.3247860130337516,0.3312981053878034,0.3373385288110959,0.3432951752766353,0.3488790980951147,0.3549764097955515,0.3560099266292619,0.3570926240019856,0.3585262296700661,0.3593740944653723,0.3604211341434358,0.3612079156239925,0.3617675982615868,0.3624919886279601,0.3632692867041935,0.3638916714367487,0.3642263613002457,0.3648699510706998,0.3661210233967346,0.3671506270508383,0.3672521410944985,0.3685204121765122,0.3689705755457761,0.3703055378739656,0.3709087032232844,0.3725166894554814,0.3738877875616615,0.3751343219428326,0.3779326216198939,0.3789964994165694,0.3795753674704583,0.3778288757110008,0.3774547703726612,0.3771591140012192,0.3803767219567051,0.388221619527315,0.0,1.992455883169775,63.04067631711296,219.19655622563303,322.7777197092772,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95630,40937,383.5616438356165,7404,76.16856634947193,5723,59.291017463139184,2339,24.09285788978354,77.3146043072854,79.73394229744646,63.296484254502126,65.0829517349373,77.02648049906024,79.44319006429541,63.19137374968045,64.97952727184463,0.2881238082251656,290.7522331510535,0.105110504821674,103.42446309266506,61.67238,43.367121834614615,64490.62009829551,45348.86733725255,207.06999,124.95732256036058,215981.27156749973,130116.6417390403,248.01731,117.92340880314352,255619.07351249608,120474.79580565543,3307.15204,1490.597241679726,3426944.5153194605,1527686.0923897424,1404.42137,611.1022095731814,1454440.4789292065,625109.6681391556,2305.89316,954.2667690492073,2377318.1219282653,968546.2330525884,0.38088,100000,0,280329,2931.3918226497963,0,0.0,0,0.0,17308,180.41409599498067,0,0.0,23246,239.3914043710133,2186914,0,78453,0,0,0,0,0,38,0.3973648436683049,0,0.0,0,0.0,0,0.0,0.07404,0.1943919344675488,0.3159103187466234,0.02339,0.3084232152028762,0.6915767847971238,25.42865568273592,4.645684221772705,0.3265769701205661,0.1977983575048051,0.240083872095055,0.2355408002795736,11.117394386849242,5.4766298560738695,24.873403971110044,13176.482246216376,64.87770541099847,13.27814108559732,21.13464358527237,15.600562199392495,14.864358540736264,0.5439454831382142,0.758833922261484,0.6821829855537721,0.5778748180494906,0.137240356083086,0.7147887323943662,0.925207756232687,0.840958605664488,0.7522388059701492,0.1622641509433962,0.4875668138508017,0.6809338521400778,0.6304964539007092,0.5216554379210779,0.1311172668513388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021278104830129,0.0042185963026437,0.0065273886384862,0.0091347863638672,0.0114339192708333,0.0134854349154613,0.0156873144908762,0.0180406578812953,0.0204355074613126,0.0226008950241164,0.0245333333333333,0.0263995891114535,0.0286713646417365,0.0307454536087785,0.0328764012469291,0.0351249069401935,0.0372703629638072,0.0395049679703479,0.0414741748865859,0.043503201985857,0.0579381421747446,0.0717563009364982,0.0848069895408913,0.0980105263157894,0.1099148168086386,0.125403699742691,0.1382533511779576,0.1513033099597178,0.1639353030529941,0.175457631488484,0.1889868269158152,0.2024213389982983,0.2143892260588164,0.2257718179627073,0.2372963559004431,0.248640429735189,0.2597344539317806,0.2692056338028169,0.2795909090909091,0.2891751453905183,0.297307625499392,0.3055903383225474,0.3130284442128697,0.3208117443868739,0.3278499313562308,0.3345208890642143,0.3413409779424651,0.3474044567748832,0.3532573500841859,0.3582426579336573,0.359353734621552,0.360149775611905,0.3617612618332134,0.3632519477510354,0.364864059146196,0.3652167230249001,0.366081648225868,0.3670127597761674,0.3677601362393133,0.3682320838718943,0.3687456518060282,0.3704685768561025,0.371285363756475,0.3715905780048858,0.3719274616383664,0.372196608580136,0.3729079348786816,0.3750667630148606,0.3761413119820199,0.3769610575774468,0.3800921490807901,0.3795437586611235,0.379398266190719,0.3802611367127496,0.3852941176470588,0.385729808040565,0.3834302782581355,0.3830711920529801,0.3865850264403005,0.381139489194499,0.0,2.1072339443269086,63.07483118114197,224.4354411682924,319.7555356045737,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95641,41165,385.99554584330986,7547,77.49814410137911,5867,60.70618249495509,2354,24.215556089961417,77.29129418892526,79.69073056443075,63.29829466637945,65.06955907970661,77.00476592558364,79.40411667701453,63.19395971337266,64.96785962567432,0.2865282633416228,286.6138874162232,0.1043349530067914,101.69945403228552,62.33128,43.84446964889987,65172.133290116166,45842.75535481631,210.21893,126.51031454383192,219202.7477755356,131678.97088469582,248.64504,118.38702074768374,255334.88775734257,120254.18928653968,3382.4754,1517.8481129356855,3502624.021078826,1553115.32832204,1467.49648,634.7888827593049,1516164.155539988,645555.0027572028,2326.23428,963.3572513737408,2395858.240712665,976379.3311146044,0.38363,100000,0,283324,2962.36969500528,0,0.0,0,0.0,17584,183.21640300707853,0,0.0,23380,239.86574795328363,2182828,0,78316,0,0,0,0,0,43,0.4495979757635323,0,0.0,0,0.0,0,0.0,0.07547,0.1967260120428537,0.3119120180204054,0.02354,0.3166018320993851,0.6833981679006149,25.44241079680669,4.679710316500304,0.3277654678711437,0.1948184762229418,0.2386228055224135,0.2387932503835009,11.42057412178941,5.7679269525238,25.126480737819367,13378.234745645264,66.12215852959693,13.161345584992368,21.81848823833971,15.604730349077665,15.537594357187166,0.5524117947843873,0.7629046369203849,0.7061882475299012,0.5964285714285714,0.1256245538900785,0.7008733624454149,0.9090909090909092,0.851380042462845,0.7269736842105263,0.1524163568773234,0.50701090585355,0.7035670356703567,0.6590909090909091,0.5602189781021898,0.1192579505300353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107857338208,0.0046943120754334,0.0072064391055895,0.0095518748094705,0.0116900161767847,0.0140551000662015,0.016212247894447,0.0182674045785937,0.0206015867822672,0.0227407695615669,0.0250020510296168,0.0270731056015446,0.0290928543505544,0.0311910723669974,0.0332923845605921,0.0356928614277144,0.0375360126018198,0.0395792883619033,0.0416285167304811,0.0436282890621742,0.0578092670386858,0.07181163063516,0.086382679364546,0.0992221789514677,0.1120222904727226,0.1278973772782117,0.1413846545794233,0.154190277363555,0.166358417344637,0.178238230715551,0.1933191723364566,0.20676585883525,0.2198092874404023,0.2305940323022173,0.2412314543330173,0.2535633076368476,0.2633131466624953,0.2740373789687007,0.2831902620702184,0.2929196846062162,0.3019276410998552,0.3100785171836787,0.3182211270775828,0.324910007199424,0.3324044779751764,0.3391659772045294,0.345957062600321,0.3519458329082934,0.3580253322259136,0.3635066205037397,0.3654642303283663,0.3667977101869094,0.3682024329250201,0.3684798051552669,0.3697665746886419,0.3708696923526786,0.3710423789456945,0.3712955472271294,0.3718415896043178,0.3725173002606273,0.3735101086300543,0.37469886714317,0.3749366767983789,0.3768494538903276,0.3771870468825519,0.3774702521360801,0.3789563974267333,0.3810336113217084,0.3843597539418794,0.3839964774637739,0.3841029175281415,0.3841257955821789,0.3851200713421237,0.3856634153893791,0.3872577240452888,0.3869908814589665,0.3876200976531737,0.3827419693470502,0.3753557199772339,0.3742690058479532,0.0,2.5227812089936146,60.4654018932506,231.19346038684012,337.68188903769527,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95632,41062,385.0384808432324,7693,79.40856617031956,5964,61.77848418939267,2492,25.692236908147898,77.27514686010801,79.68672357976959,63.27600815666828,65.05645328687716,76.97082973643923,79.38064667256519,63.16540767991788,64.94786284736747,0.3043171236687811,306.0769072043996,0.110600476750406,108.59043950968328,61.47328,43.26493342100984,64281.0774636105,45241.06305526376,212.54949,127.84245152418876,221703.0491885561,133127.00928997487,253.39428,120.63056855260402,261090.12673582067,123155.81546053768,3432.38672,1549.3449040172038,3557937.8032457754,1588887.8869177727,1445.2848,626.9963482567043,1496697.1515810608,641033.3029286265,2449.75344,1010.7353365559884,2527816.253973565,1027652.9603878824,0.38183,100000,0,279424,2921.867157436841,0,0.0,0,0.0,17769,185.2099715576376,0,0.0,23805,245.14806759243768,2182194,0,78345,0,0,0,0,0,37,0.3764430316212146,0,0.0,1,0.010456750878367,0,0.0,0.07693,0.2014770971374695,0.3239308462238398,0.02492,0.3131288343558282,0.6868711656441718,25.48205854756909,4.574003983629696,0.3296445338698859,0.1973507712944332,0.2365861837692823,0.2364185110663983,11.179193760488404,5.647042904517567,26.48030642590981,13298.673045366517,67.59017308273178,13.819674797356996,22.416883454794025,15.826098693438464,15.5275161371423,0.5451039570757881,0.7612574341546304,0.7029501525940997,0.5804394046775336,0.1092198581560283,0.6974393530997305,0.8756613756613757,0.8686274509803922,0.7373737373737373,0.1404682274247491,0.4946428571428571,0.7071339173967459,0.6449175824175825,0.5385996409335727,0.1008100810081008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0045204382595299,0.006656181827406,0.0088979177247333,0.0110355068704929,0.0134736027374938,0.0155810254109393,0.0177027289154781,0.0200382362262684,0.0223111893840104,0.0245453519739878,0.0265147623841712,0.0286740195069755,0.0309739530185431,0.0328886227050246,0.0350898971717046,0.0370447148572731,0.0390806746427384,0.0411775724275724,0.0435494467676841,0.0586870407725994,0.0733491208583942,0.0865934112110261,0.0993257479983143,0.111820006337805,0.1274227371899426,0.1418050817738387,0.154647307770209,0.1669930758446506,0.1786282348895194,0.1922686644501058,0.205667067894206,0.2181320717696047,0.2296354783524148,0.2398843292642546,0.2512692893090844,0.2625334392943889,0.2728288471305231,0.2825708333807643,0.2919931074095347,0.3008598981119376,0.308912563946121,0.3163643270965903,0.3237330512549283,0.3305045536453513,0.3373063906524048,0.3435695999196827,0.3493700907885341,0.3552364864864865,0.3600757385167432,0.3615848220318369,0.3629559044896494,0.3644035452270896,0.364794919751207,0.3659347375639133,0.3667609444171175,0.3672694939743732,0.3685008487005817,0.3695410268262202,0.3705248460547042,0.370907583920431,0.3716612054413663,0.3732478974769723,0.3743924392439244,0.3755325329202169,0.3757545535667419,0.3755236728837877,0.3779779843289027,0.3806295915108066,0.3813886210221793,0.3828125,0.3838242420978945,0.384282532612154,0.3847867844794468,0.3830945558739255,0.3862645348837209,0.386940938133084,0.3939768976897689,0.3832820799552698,0.3895800933125972,0.0,2.273362772749963,65.92942012635154,226.6020162318468,341.95341137317257,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95693,40956,384.3854827416844,7439,76.65137470870388,5851,60.65229431619868,2392,24.65175091176993,77.28391542799022,79.68069830855154,63.28504443165552,65.05931784574784,76.9967494361183,79.39142557436715,63.18086157540286,64.95682704624163,0.2871659918719302,289.2727341843937,0.1041828562526632,102.49079950621363,62.8991,44.240969182128126,65730.09520027589,46232.18958766903,210.84655,126.8418171881519,219853.00910202417,132067.34786050385,248.25414,117.93195720482154,256528.95196095845,121004.5996543135,3361.46568,1504.301518844824,3484702.412924665,1543950.047385725,1423.55902,619.0833418153811,1473229.3480191864,632555.4131166551,2353.7553,965.1924716737782,2427460.796505492,981699.1317608522,0.38092,100000,0,285905,2987.73160001254,0,0.0,0,0.0,17633,183.7647476826936,0,0.0,23311,240.6550113383424,2178562,0,78272,0,0,0,0,0,37,0.3866531512231825,0,0.0,0,0.0,0,0.0,0.07439,0.1952903496797227,0.3215485952412958,0.02392,0.3130656469088591,0.6869343530911408,25.48516461771292,4.529189470408997,0.3286617672192787,0.1994530849427448,0.2401298923260981,0.2317552555118783,11.204732873932723,5.5444273948075375,25.35120307554701,13225.846497546128,65.88355077672179,13.560434114383224,21.81689028797769,15.693692590321351,14.812533784039529,0.5494787215860537,0.7549271636675235,0.7020280811232449,0.5779359430604982,0.1268436578171091,0.7205987170349252,0.9178082191780822,0.854389721627409,0.7375415282392026,0.2037037037037037,0.4955035971223021,0.6807980049875312,0.6531593406593407,0.5344202898550725,0.1077348066298342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813866763948,0.0046454073352807,0.007005289501203,0.0090751110252944,0.0112837418475219,0.013711188982153,0.0158090672650313,0.0179862728275523,0.0200664791613398,0.0223524350017414,0.0242833986498963,0.0265507639509673,0.0288330932290594,0.0307736702703259,0.0330635671077895,0.0349766787668186,0.0370654370239883,0.0389374467996761,0.0408384043272481,0.0427011027036041,0.057444008022731,0.071538501805999,0.0842393585761061,0.0973410355966623,0.1095374288940719,0.1251548028578989,0.1393607984710129,0.1524551931248202,0.1646198736653092,0.1760981315933505,0.1896001724323741,0.2031021522264224,0.2163892306184882,0.2282667017071274,0.2391285182164819,0.2509324216321819,0.2616103570869575,0.271487500845299,0.280408246766531,0.2898459279314419,0.2978745608237381,0.3058005347844443,0.3145502017564681,0.3216726931994282,0.3296147897358454,0.3362684318423197,0.3424636917751524,0.3486333227142402,0.3542677075498612,0.3597801820367508,0.3607915076142817,0.3619211686879823,0.3630567858049592,0.3639125151883353,0.3653161274940768,0.366075544764422,0.3662641029715557,0.3674783095438007,0.3689628549369477,0.3698644889168087,0.3704381628108842,0.3724950649039899,0.3728447362846854,0.3732507403974408,0.3741899332456269,0.3749374094083542,0.3760693575242579,0.377242277042258,0.3790470804467694,0.3814272607603016,0.3816405174786678,0.3830196749358426,0.3853529300447865,0.3869795609386828,0.3897320592092936,0.385180794309425,0.3845446182152714,0.3853529171766626,0.3823033707865168,0.3773291925465838,0.0,1.9051109607503116,62.562436741276805,223.08071109143572,339.3034824154203,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95662,40814,380.903598084924,7615,78.30695574000124,5810,60.21199640400577,2345,24.084798561602305,77.35161970545354,79.75924469063494,63.31721993396855,65.09506450926905,77.06432308027907,79.47250835477585,63.211433708363344,64.99290026618874,0.287296625174477,286.7363358590893,0.1057862256052075,102.1642430803098,61.34062,43.14976164804747,64122.24289686605,45106.48078447814,207.96574,125.09004021987433,216864.4602872614,130230.58290635188,247.00652,118.0600895728352,255936.2965440823,121540.53290917206,3325.5052,1504.2291301240384,3444632.853170538,1540797.976337559,1440.00682,624.7952635216067,1491833.141686354,639690.849924482,2298.80408,957.7918507067149,2361703.330476051,963608.5793429908,0.3801,100000,0,278821,2914.647404403002,0,0.0,0,0.0,17379,181.11684890552152,0,0.0,23129,239.5517551378813,2191729,0,78542,0,0,0,0,0,46,0.470406221906295,0,0.0,0,0.0,0,0.0,0.07615,0.2003420152591423,0.3079448456992777,0.02345,0.3138457686529795,0.6861542313470206,25.646429257115106,4.567740902086693,0.3314974182444062,0.2010327022375215,0.240275387263339,0.2271944922547332,11.284600099498126,5.814135064047193,24.89148003739083,13254.582241896873,65.14283002456443,13.441863579458497,21.72437354478957,15.621410371915513,14.355182528400862,0.551118760757315,0.7414383561643836,0.7045690550363447,0.5830945558739254,0.125,0.7239010989010989,0.9239766081871345,0.8862275449101796,0.7463976945244957,0.131578947368421,0.493339457969683,0.6658595641646489,0.6407017543859649,0.5290753098188751,0.1233396584440227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0046037621051564,0.0072868248523352,0.0094692351458993,0.0116876379578675,0.0136382155225096,0.0159384081986437,0.0182169078228548,0.0203374233128834,0.0227389122196046,0.024961014445174,0.0274375205524498,0.0295870167025141,0.0319497711245824,0.0339018066502081,0.0362234868080703,0.0387138903572872,0.0404891925001557,0.0426065423672382,0.0448070907194994,0.0592286069573758,0.0732856559479806,0.0861569467187303,0.0990013574803481,0.1111369105416473,0.1259751669824602,0.1385278627251104,0.1519102033854943,0.163717098223839,0.1754483943722478,0.1895754020038178,0.2024962621075212,0.2152546432381823,0.2269403393541324,0.2389343494972411,0.2505016907810854,0.2617693399336246,0.2724928495822354,0.2820221656976744,0.2914012738853503,0.3001863145591519,0.3081735266604303,0.3154980239960243,0.3221252935819393,0.328600750573861,0.3354483404381145,0.3415067208502657,0.3476547603915088,0.3540904330286142,0.3597680701060816,0.3612101799388988,0.3617925306638799,0.3627861116980069,0.3644901674637691,0.3659983055634002,0.3667049544375526,0.3664651324744389,0.3678115606366727,0.3692460385365687,0.3700536672629695,0.3712927113483442,0.3717765894236483,0.3732974609046578,0.3738968776598128,0.3738169207427209,0.3747390941348361,0.3751356910243958,0.3756188313940655,0.3771178977773081,0.3796443948333599,0.3801354195260316,0.3806417395916203,0.3800542484072415,0.3788724852749943,0.3782686679882941,0.3754821600771456,0.3745143745143745,0.3786921980036667,0.3765840220385675,0.379072441548486,0.0,2.0047943752465818,64.53688079467472,208.87775930988636,339.443218435016,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95788,40923,383.4300747484027,7497,77.04514135382303,5750,59.41245249926922,2331,23.959159811249844,77.3507064425629,79.67913212860368,63.34838135415546,65.07008297399656,77.06667112960663,79.39371890536742,63.24578051943841,64.96951276126863,0.2840353129562629,285.4132232362616,0.1026008347170446,100.57021272793064,61.76324,43.47676549132518,64479.099678456594,45388.53039141144,207.71218,124.48341262653098,216223.4309099261,129335.06900903568,239.64867,113.71921410001272,246005.0110661043,115622.54179210326,3295.91428,1475.010317998906,3405001.29452541,1504041.4728936907,1426.53534,617.4274662237617,1470376.7277738338,625809.7805062941,2299.67572,949.2467590128592,2364483.254687435,961059.756195112,0.38228,100000,0,280742,2930.8681672025723,0,0.0,0,0.0,17345,180.4401386394956,0,0.0,22520,230.8848707562534,2193675,0,78670,0,0,0,0,0,39,0.4071491209754875,0,0.0,1,0.0104397210506535,0,0.0,0.07497,0.1961127969027937,0.3109243697478991,0.02331,0.300453514739229,0.699546485260771,25.655558672699147,4.640633455490701,0.3273043478260869,0.1944347826086956,0.2415652173913043,0.236695652173913,11.10177730483781,5.576465352081155,24.90244929407134,13226.883327426542,64.66689180895365,13.111062698440373,21.235427371796423,15.205203635424304,15.115198103292544,0.5363478260869565,0.7647584973166368,0.6880977683315622,0.5579553635709144,0.1168258633357825,0.7028985507246377,0.9331395348837208,0.854389721627409,0.7436823104693141,0.1506849315068493,0.4837528604118993,0.689922480620155,0.6332155477031802,0.5116906474820144,0.1075771749298409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0045417680454176,0.0067581965965478,0.0089387290752478,0.0109199609565641,0.0128783328412758,0.0152969711793241,0.0177873478176567,0.0197839704875481,0.0219300040933278,0.0241920609873557,0.0261138131297584,0.0282305304914393,0.0302234849654632,0.0323994349175577,0.0347527841484328,0.036774520658506,0.0389591540534936,0.0409392557820727,0.0427888769741705,0.0573276986487191,0.0712060059808862,0.0846899732690392,0.0978813737441674,0.1090817111600602,0.1250779557105861,0.1382579372653814,0.1513403641704002,0.1634888438133874,0.1758281800936693,0.1901369037368692,0.2038562133886691,0.2161530771905424,0.2279699346690847,0.2385575284481337,0.2497981217021935,0.2611190338250367,0.2716071568968809,0.2814072059823249,0.29027866752082,0.2993163498625771,0.3079806614349776,0.3157956977803006,0.3233269071881025,0.3292631118987218,0.3360101489081302,0.3423991196808843,0.3483266126467632,0.3541199787556511,0.3597383241667656,0.3616425822771185,0.3626355479715968,0.3646090302936325,0.3648196678587458,0.3653960690887433,0.3656270634664701,0.3660291641516027,0.3672274451591621,0.3680534102220849,0.370050060108015,0.3703123821021655,0.3707970235963551,0.3721436114044351,0.3741840767927724,0.3743517665875054,0.3758126069219634,0.3772714162099798,0.378612624669407,0.3792968611140734,0.3820076137046684,0.3840827255101098,0.3846486720398117,0.3851780558229066,0.3871696936627952,0.3911421465467763,0.3941958887545345,0.3962707615167659,0.400963149078727,0.3907980687304743,0.3837623762376237,0.0,2.354966469918649,60.862237357859286,216.9991615097492,335.9133536115094,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95736,40982,384.2337260800535,7653,78.71647029330659,5954,61.60691902732514,2385,24.515333834712123,77.31652017658898,79.67664092248359,63.31665033110207,65.0621381171144,77.0267310436454,79.38706871978223,63.21053011440524,64.95880644461567,0.2897891329435822,289.57220270135053,0.10612021669683,103.33167249872588,62.22084,43.75562844966439,64992.10328403109,45704.466919094586,213.81302,128.64581346955907,222767.9765187599,133807.87360409574,251.90184,119.84805347310257,259707.5917105373,122533.86390401189,3436.06616,1547.8816987543717,3555955.0848165792,1583705.6996156313,1451.89403,632.9859596336078,1499589.360324225,644231.1993419518,2352.37508,981.4566507032376,2419650.100275758,992610.93627245,0.38226,100000,0,282822,2954.186512910504,0,0.0,0,0.0,17879,186.1473218016211,0,0.0,23675,243.81632823598227,2181690,0,78413,0,0,0,0,0,38,0.3969248767443804,0,0.0,0,0.0,0,0.0,0.07653,0.2002040495997488,0.3116424931399451,0.02385,0.3136499254102436,0.6863500745897564,25.602557166382606,4.610198746788591,0.3421229425596238,0.1896204232448774,0.2368155861605643,0.2314410480349345,11.172372141369795,5.569160664422896,25.46710777638624,13237.389913448706,67.17919384676551,13.134139083271368,22.98460572748318,15.81632461292381,15.244124423087152,0.5498824319785018,0.7661647475642162,0.6980854197349042,0.5900709219858156,0.1124818577648766,0.7042449547668754,0.9041916167664672,0.8792079207920792,0.7129337539432177,0.1423487544483986,0.500774850564534,0.7081761006289308,0.6383812010443864,0.5544373284537969,0.1048313582497721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023804459031006,0.0049472328950436,0.0071961431108855,0.0093479784996494,0.0118204752604166,0.01398366365877,0.0159811530498811,0.0179734891035722,0.0202556237218813,0.0224727153592563,0.024403498518359,0.0265841111419154,0.0286178493938116,0.0306341001297444,0.0327701448199034,0.0349843985700411,0.0369546089746907,0.0390436180696022,0.0409143356098169,0.0429328971631575,0.0575670258080681,0.0711639879457559,0.0849631392946654,0.0975153254892064,0.1092693933930134,0.1245346476013199,0.1386183777820211,0.1509719176478102,0.162921888522068,0.1747041594695791,0.1891050499827645,0.2032421786228316,0.2160607279964329,0.2275764036958066,0.2387432018847568,0.2505736169458084,0.2619140690440823,0.2721051683774536,0.2812649029181333,0.2907736389684813,0.2990206292977703,0.3070333528379169,0.3149398332385825,0.3222759622193152,0.3291776639867667,0.3360327885042714,0.3428070175438596,0.3488505454174737,0.3543527581512932,0.3604336043360434,0.3612621241349539,0.3621044205528796,0.3639166654880273,0.3651097665375296,0.365826731713139,0.3661854909376009,0.3661280327946994,0.3673769166020235,0.368359542837501,0.3699388709097447,0.3719723836112578,0.3732975444875236,0.3733336145798177,0.3736097978297086,0.3753601084561939,0.376323791548705,0.3754304407713498,0.3772928526249209,0.3792104054006291,0.3805922368947579,0.3840183696900114,0.386569970453935,0.3911080015265233,0.3961903304773562,0.3967968157695223,0.3973246565437455,0.3956231569144808,0.3999181334424887,0.3923766816143498,0.3978996499416569,0.0,2.236453324129966,63.55169889092821,229.63295010608493,342.59293419351,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95678,40778,383.20199000815234,7574,78.00121239992475,5891,60.98580655950166,2426,24.979619139196053,77.40264542862671,79.7815575425596,63.35728834693722,65.11121829322995,77.09777513098796,79.47655493442645,63.24513429026041,65.0020537497616,0.3048702976387574,305.00260813315094,0.1121540566768075,109.1645434683528,61.91306,43.54885972590782,64709.81834904576,45516.064012529336,209.89802,125.45769215594372,218796.6199126236,130544.12463876553,240.91307,114.29153487849516,247897.2177512072,116494.85720664376,3426.37092,1529.9816261692215,3548580.9485984235,1566850.1606190044,1459.90175,628.6067506638993,1510711.1352662055,642051.6619191731,2413.44444,1009.441625560317,2487345.9520474924,1024429.6631996194,0.38019,100000,0,281423,2941.35537950208,0,0.0,0,0.0,17523,182.51844729195844,0,0.0,22600,232.3836200589477,2192330,0,78612,0,0,0,0,0,41,0.4180689395681348,0,0.0,0,0.0,0,0.0,0.07574,0.1992161813829927,0.3203063110641669,0.02426,0.317,0.683,25.511186092958408,4.662887746937771,0.3262603972160923,0.1974197929044304,0.2278051264640977,0.2485146834153793,10.926065243366978,5.235369923230957,26.00978834639144,13156.324307455176,65.84721621562832,13.299213502392185,21.523017213605783,14.810747421950294,16.21423807768006,0.5267356985231709,0.7601031814273431,0.668054110301769,0.563338301043219,0.1222677595628415,0.6863309352517986,0.9289940828402368,0.8496732026143791,0.7109634551495017,0.1232876712328767,0.4774494556765163,0.6909090909090909,0.6110731373889269,0.5206532180595581,0.1220136518771331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022480785004708,0.0045709305036131,0.0068573747210387,0.0089678356336898,0.0109821946085559,0.0133902205567887,0.0153639116294717,0.0172482420061032,0.0192938531500689,0.0215113185148798,0.0237397240615838,0.0258397667542706,0.0281921839175003,0.0301756987785536,0.0321498952755336,0.0341181577641805,0.036241263266891,0.0382603822925098,0.0401672421683238,0.0420766280330192,0.0566867602043481,0.0703874345549738,0.0836612830442128,0.095923412761033,0.10865804518892,0.1241045826323418,0.13798410120886,0.1501410700026617,0.1629475259164262,0.1746176451661339,0.1886847320351542,0.2016863114372612,0.2142258959160367,0.2262851144328657,0.2374419679200862,0.2495681636991762,0.2601103863522328,0.2703878094553137,0.2801441343440867,0.2889905633400057,0.297608871433522,0.3063261874737285,0.3143920595533498,0.3218194008764158,0.3278115556850038,0.334302253972164,0.3400653177671834,0.3463640986524282,0.3517866846068259,0.3581107801007092,0.3598810932960292,0.3607413208039676,0.3622079365302649,0.3639000736026324,0.3648259268060836,0.364783920829695,0.365497446956963,0.3665931461302959,0.3673814898419864,0.3682488017740897,0.3696085061617072,0.3702371541501976,0.3712059322566455,0.372094064949608,0.3730939972978189,0.373241466034424,0.3735122888525624,0.3756163863952459,0.3781804027035634,0.3794758951790358,0.3829023649581301,0.3848638174184519,0.3873925501432664,0.3881331181308124,0.392663172939495,0.3901799547133834,0.3922694815274759,0.3912688698490412,0.3949185307925987,0.3923664122137404,0.0,2.2288961895816337,61.36082224142098,218.4911462295216,349.0669470176392,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95715,40901,383.1792300057462,7408,76.00689547092932,5772,59.57268975604659,2326,23.872956171968863,77.33907921770925,79.70491737905625,63.32552877917672,65.0748992172157,77.05254664544715,79.41991758322989,63.2201096385612,64.97324826500036,0.2865325722621037,284.9997958263657,0.1054191406155169,101.65095221533704,62.6659,44.11142398666341,65471.34722875202,46086.21844712261,211.5327,127.50179565564687,220318.7483675495,132525.92138708336,243.80842,116.21335489589272,250076.1218199864,117883.54012365208,3330.6256,1495.1348322854465,3441318.414041686,1523655.8034638742,1374.37874,599.5788954849165,1418107.088753069,608620.7548293546,2300.61524,955.139176361324,2364266.2069686046,963184.1127453567,0.3801,100000,0,284845,2975.970328579637,0,0.0,0,0.0,17634,183.5031081857598,0,0.0,22918,234.72809904403695,2183354,0,78272,0,0,0,0,0,55,0.5746225774434519,0,0.0,0,0.0,0,0.0,0.07408,0.1948960799789529,0.3139848812095032,0.02326,0.3096707818930041,0.6903292181069959,25.21479616694777,4.644515750830059,0.3336798336798336,0.194040194040194,0.2351004851004851,0.2371794871794871,11.080206959696966,5.373307866144224,24.714212322884094,13183.183013011603,64.81191835454523,13.021974987103428,21.86743682380457,14.824292218531255,15.098214325105973,0.5343035343035343,0.7642857142857142,0.6879543094496365,0.5607958732498157,0.1037253469685902,0.6976090014064698,0.9164345403899722,0.8568548387096774,0.6955017301038062,0.1330935251798561,0.480919540229885,0.6925098554533509,0.6293706293706294,0.5243445692883895,0.0962419798350137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.004623433507726,0.0070541903920911,0.0091956592423996,0.0111390293276909,0.0133925388791005,0.0155611074287462,0.0175907870422362,0.0199492832164256,0.0220098732051045,0.0243879926569374,0.0264782309501556,0.0284677012948278,0.0306398936773023,0.032607685876196,0.0344043101041332,0.0367768937510359,0.0391249299487328,0.0410652635081735,0.0432680787222737,0.0581386849881488,0.071725278059703,0.0852547366655133,0.0980924138221128,0.1101268626024233,0.1252274169663634,0.1385101800473194,0.1510514827237395,0.1625983242134062,0.1745377673330543,0.1890121022059853,0.2028285541020532,0.2152634213217853,0.2267175906673378,0.2382583224129766,0.2493402523673297,0.260412129334897,0.270505459867162,0.2799146269470051,0.2887503152296017,0.2970707421558411,0.3052194265652428,0.3130612776127879,0.3209493458570949,0.3278013839990287,0.3348269240238318,0.3402454877256137,0.3455194673172715,0.3522221647350993,0.3580626434810143,0.360083439876186,0.3610820484581498,0.3629128980824314,0.364491126403477,0.3657468765356723,0.3663050316878175,0.3665016972811776,0.3669405971574908,0.3677146976041738,0.3690557369988874,0.3711161714059883,0.3712358658996231,0.3720031098316909,0.3734663610624241,0.3730972426603623,0.3725146504813729,0.3742901393908105,0.3752888663775365,0.3775719437177402,0.3790270876743067,0.3793436737699636,0.3837553082836101,0.3847284345047923,0.3896113949527791,0.3856153335231047,0.3818334735071488,0.3856762262968187,0.3856168629882207,0.3827090960292875,0.3785992217898832,0.0,2.896522179195029,62.30326412788732,209.6725428265749,339.29122770164673,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95674,40813,383.7615235069089,7474,76.83383155298199,5745,59.33691494031816,2315,23.715952087296444,77.30793472821749,79.68414948197837,63.31631099018998,65.07019440187848,77.02423686687244,79.40078138355948,63.21232814542012,64.96908715440205,0.2836978613450469,283.3680984188902,0.1039828447698667,101.10724747643474,62.7055,44.12573234604975,65540.79478228149,46120.92349650871,211.19167,127.5302189666054,220031.4191943475,132587.12812948698,247.63366,118.14387572976356,253544.80841189876,119557.6735745463,3308.23992,1495.383835021407,3418144.741518072,1523318.4721255612,1430.63167,621.7589492575779,1476857.4011748228,631410.6541563835,2290.41958,952.01522254948,2349155.528147668,958056.105551211,0.38076,100000,0,285025,2979.1270355582496,0,0.0,0,0.0,17683,184.0939022095867,0,0.0,23236,237.8911721052741,2180377,0,78301,0,0,0,0,0,46,0.4494428998473984,0,0.0,0,0.0,0,0.0,0.07474,0.1962916272717722,0.3097404335028097,0.02315,0.3115738375063873,0.6884261624936127,25.640635510952333,4.570682323806758,0.3380330722367275,0.1984334203655352,0.2231505657093124,0.2403829416884247,11.193129906762676,5.579309169451443,24.615846767781186,13199.61136678515,65.04689317074687,13.408545129145624,22.13143894799816,14.294093031964666,15.212816061638415,0.5495213228894691,0.756140350877193,0.6946446961894953,0.6138845553822153,0.1151339608979,0.714183891660727,0.9228650137741048,0.865424430641822,0.706081081081081,0.1532567049808429,0.4963150621833256,0.6782496782496783,0.6381082933516107,0.5862068965517241,0.10625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020553631816617,0.0042762757893883,0.0067560027997849,0.0090294141545461,0.0114107883817427,0.0135737851818663,0.0159068430014989,0.0180398162327718,0.0202621194463186,0.0221105321882261,0.0240804527002091,0.0259856262833675,0.027777492106914,0.0297105181827547,0.031948156479924,0.034053199077855,0.0362227241643699,0.0383297689001474,0.040153958181629,0.0419707268254034,0.0560848218949127,0.0705493217216546,0.0832948631861675,0.0965047910552943,0.1092613288910444,0.1250462683883794,0.1390088379149735,0.1528397296002555,0.1649357864820394,0.1768511167850323,0.1900694706230815,0.2033626901521217,0.2154888379021998,0.2272265048384451,0.2376918422355465,0.2494155966453585,0.2603397093944602,0.2700929531183182,0.280189782181814,0.2893214338904991,0.2980973005523966,0.3066554338668913,0.3150740082889283,0.322513679562254,0.3301051197196807,0.336612763856314,0.34237951316169,0.348564867967853,0.3537908012833002,0.3590741255409537,0.3608440892153156,0.3619903878024527,0.3634949809133324,0.3634939059779454,0.3647136077366206,0.365240921250884,0.3657745336577453,0.3661085793540717,0.3673634269604978,0.3681404491356562,0.3691475119265363,0.3700437898089172,0.3714117101547022,0.3725768002518778,0.3740615161055945,0.3757958431991581,0.3763477960838437,0.3777911888955944,0.3785284590467376,0.3806029989575816,0.3803044280442804,0.3851732473811442,0.3860779684808269,0.3880919327471849,0.3878269139324774,0.3887691570881226,0.3935078854693002,0.4010955569080949,0.406027397260274,0.4080854309687262,0.0,2.75927477712377,61.47958194092194,221.98713324985317,329.624939831804,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95696,40830,382.19988296271526,7460,76.51312489550243,5802,59.93980939642201,2326,23.909045310148805,77.38171245272493,79.75535366659577,63.34258245905804,65.09492522520262,77.0921585071989,79.4675037620964,63.235048318141295,64.9913272568659,0.2895539455260234,287.8499044993674,0.1075341409167478,103.59796833671452,62.85356,44.1856588089612,65680.4464136432,46172.942243104415,211.26205,127.39554401208022,220063.91071727136,132425.44517229588,251.86095,119.95264024164908,258815.01839157328,121992.02848625024,3331.1564,1498.1851587619874,3444696.9570305967,1529286.4474606952,1435.00719,627.0356334422161,1481694.501337569,637390.6801390349,2284.89986,953.7327545836788,2350844.716602575,963096.2931191536,0.38064,100000,0,285698,2985.474836983782,0,0.0,0,0.0,17668,183.9052833974252,0,0.0,23607,242.39257649222537,2182515,0,78267,0,0,0,0,0,40,0.4075405450593546,0,0.0,0,0.0,0,0.0,0.0746,0.1959857082807902,0.3117962466487936,0.02326,0.3127781309599491,0.6872218690400509,25.645630658555344,4.640121691489431,0.3360910031023785,0.1909686315063771,0.2447431920027576,0.2281971733884867,11.32723908948516,5.719166537445801,24.67626695883996,13181.92975646066,65.01061070169328,12.757352313021867,21.915281667568,15.765406862403657,14.57256985869978,0.5515339538090314,0.7707581227436823,0.6912820512820513,0.5887323943661972,0.1223564954682779,0.7088150289017341,0.9319526627218936,0.862144420131291,0.756578947368421,0.1473684210526315,0.5022634676324128,0.7,0.6389819156061621,0.543010752688172,0.1154956689124157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0047542296424697,0.0068190120550391,0.0091217520264916,0.0112496694265313,0.0133299389002036,0.0158654091256691,0.0182326758952999,0.0203939768766036,0.0228273108813594,0.0249530976082343,0.0270633771727189,0.0291446847458324,0.0310578200809666,0.0331682146542827,0.0353402194030005,0.0374409644543872,0.0395674867952722,0.0416545325955818,0.0434682924287426,0.0578381201044386,0.0716028184645022,0.0850550349936518,0.0973959703298437,0.109304778985125,0.124615270711921,0.1377846637094891,0.1507336499350469,0.1631281454017032,0.174688324785958,0.18917316894426,0.2024446224801334,0.2149896660502556,0.2263835277908388,0.2379307309774237,0.2491418447569482,0.2598302229857106,0.2703599550056243,0.2803221963809632,0.2895840014660741,0.2983473369904867,0.306806221494562,0.3140614269814582,0.3220225177156149,0.3288442137760869,0.33553653784497,0.3416517527502096,0.3472812937730803,0.3524503070982455,0.3573908566449722,0.3587923999838412,0.3597441012588567,0.3608680335376594,0.3620570141235595,0.3625810856947764,0.3629840424718104,0.3636550730603005,0.3643939891068968,0.3658449202422588,0.367099227103154,0.3688919735139089,0.3707794007045877,0.3711085522872396,0.3722220978895777,0.3733201676219835,0.3746548580359468,0.3752567320858055,0.3767140520820229,0.3763557864438906,0.3774710632035321,0.3792378689573243,0.3796108200577355,0.3816745252962916,0.384858774502238,0.3836424155967665,0.3837028160575195,0.3851737451737452,0.38436348751535,0.3833473037161218,0.3927738927738928,0.0,2.655134017409668,60.474128307473705,221.2392030653675,335.1466598194256,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95857,40598,380.7546658042709,7430,76.23856369383562,5763,59.5366013958292,2264,23.2533878589983,77.44506122741345,79.72168810052192,63.40474875222951,65.08363457041146,77.1641374272891,79.44157746365785,63.30130569972948,64.98322884336706,0.2809238001243415,280.110636864066,0.103443052500026,100.40572704440363,63.51532,44.662092846512905,66260.49219149358,46592.41666911431,212.08445,127.4896038677601,220682.6418519253,132431.55311324168,245.63297,116.39952748126696,252381.8709118792,118520.24269462631,3310.75668,1484.5610876353544,3421198.6187758846,1516253.6543639658,1411.64277,612.7805695727782,1454172.6947432111,620858.417211104,2241.40196,934.0657879068336,2303967.4932451462,944597.4465854544,0.37912,100000,0,288706,3011.840554158799,0,0.0,0,0.0,17801,185.10906871694291,0,0.0,23100,237.1031849525856,2182560,0,78394,0,0,0,0,0,34,0.3546950144486057,0,0.0,0,0.0,0,0.0,0.0743,0.195980164591686,0.3047106325706595,0.02264,0.3095994914176732,0.6904005085823267,25.37660136942779,4.640082316101165,0.3326392503904216,0.198160680201284,0.2333853895540517,0.2358146798542426,11.289505214064173,5.568094021028099,24.029836836599525,13050.32692385828,64.5994928159292,13.20388754780698,21.50150081623294,15.057565462825652,14.83653898906364,0.56047197640118,0.7635726795096323,0.7146583202921231,0.6118959107806692,0.1214128035320088,0.7092857142857143,0.9090909090909092,0.8791946308724832,0.7531645569620253,0.1473684210526315,0.512720605088242,0.6987341772151898,0.6646258503401361,0.5685131195335277,0.1145251396648044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022571307111479,0.0043963168184442,0.0067732678989688,0.00893183386789,0.0111163045908102,0.0130327293444974,0.0151042939786523,0.0171107508132195,0.0192486393203239,0.0213399047015276,0.0236025353526044,0.0255374138496882,0.0274947619243252,0.0296347346657477,0.0318256748403049,0.0341456868877672,0.0359070883405381,0.0379573692009574,0.0401146131805157,0.0421201589911139,0.0558596886372404,0.0696824070204763,0.0827565988545582,0.0953954962328695,0.1078718121370255,0.1231714267620796,0.1366230740721131,0.1489560643893109,0.161165793991874,0.1730670434112509,0.1871043325917088,0.1999870397770841,0.212579531389112,0.2244387665967854,0.235074421925633,0.2468656287001073,0.2575304898441506,0.2680791277958863,0.2775238980802159,0.2870303612913562,0.2952402984211439,0.3028892268101532,0.3107697042148496,0.3178159955927088,0.3249150072850899,0.3312144282652081,0.3366780663184135,0.3439696444942446,0.3497128932325759,0.3553618594823032,0.35703125,0.3579406343704437,0.3592276731683976,0.3607834088090225,0.3608103698869872,0.3620392013077287,0.3623154070915265,0.3631806565755848,0.3645111755673093,0.3661821291150064,0.3679467965530161,0.3699099277442343,0.3701263272757796,0.371094799033211,0.3727132678605815,0.3732074881368306,0.3741744477340014,0.3768147822261328,0.3775263581911801,0.3799380017486686,0.3826493220960059,0.3850562399571505,0.3879660157240679,0.3879603837821108,0.3892290032523436,0.3875332205846823,0.38859375,0.3848890749267476,0.3809121621621621,0.3825396825396825,0.0,2.281143938456605,61.75479529876892,216.70861567946665,331.72876043641514,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95682,41017,383.750339666813,7525,77.41267950084655,5821,60.23076440709851,2420,24.84270813737171,77.29747507811412,79.70083302656552,63.28577397120039,65.06600241289216,77.00101403566961,79.4068163683174,63.17468225829767,64.95932700099189,0.2964610424445055,294.0166582481254,0.11109171290272,106.67541190026952,61.71792,43.46981628028714,64503.16673982568,45431.550636783446,210.81247,127.17735334124626,219734.33874709977,132324.88173454386,244.02289,116.04133889533396,252117.2738864154,118975.51034868875,3374.23172,1525.407428807417,3492215.7145544617,1559956.469145104,1425.92492,620.0358016184558,1474520.8294141009,632264.153087766,2397.24634,1011.8253466951024,2463082.251625175,1019133.1911441772,0.38161,100000,0,280536,2931.9621245375306,0,0.0,0,0.0,17694,184.28753579565645,0,0.0,22917,236.5126147028699,2182696,0,78334,0,0,0,0,0,36,0.3762463159214899,0,0.0,0,0.0,0,0.0,0.07525,0.1971908492964021,0.3215946843853821,0.0242,0.31939736346516,0.6806026365348399,25.55223899387648,4.644297343740251,0.3255454389280192,0.1877684246693008,0.2399931283284659,0.246693008074214,10.963949273762111,5.35980007730854,25.95541992269013,13336.677033514748,65.75131582807444,12.826292248596218,21.646979929374425,15.40855117502898,15.86949247507482,0.538223672908435,0.757548032936871,0.6970976253298153,0.5848246241947029,0.1162952646239554,0.6846416382252559,0.9152542372881356,0.8586065573770492,0.7124183006535948,0.1324921135646687,0.4889807162534435,0.6820027063599459,0.6410803127221038,0.5490375802016498,0.1117068811438784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025842150066885,0.0047369809100683,0.0070257373470734,0.0094400975510618,0.011688232421875,0.0137810914868911,0.0159928195504059,0.0182696431853924,0.0201990243104206,0.0222322352049646,0.0244017519206507,0.0268129565136992,0.0289197530864197,0.0309144494136559,0.0329884772642795,0.0352728213085078,0.0375107536355061,0.0399148538497481,0.0418868866785967,0.0440342685621378,0.0585629818440131,0.0733967044241117,0.0868383494941862,0.0997422544842459,0.1122047451762298,0.1276280565872033,0.1419319906999458,0.1551784744191991,0.1676773510443738,0.1791501562449663,0.1926868730449789,0.2061559477861138,0.2190918202815182,0.2307574296484614,0.2418241559529847,0.2531517734274426,0.2644224319127051,0.2741431968534109,0.2833498164125999,0.2923156325266659,0.3004649113654017,0.3090538259564891,0.3174230568596766,0.3255562496996492,0.3317502070242096,0.3381313630522882,0.3441111152934091,0.3498129922516244,0.355921625732971,0.3618238902062606,0.3628557906835237,0.3641543354999308,0.3649188408260389,0.3659592394067489,0.3666592078764824,0.3663095439383925,0.3669973807445035,0.3678546746964162,0.3687037132057399,0.3692274685784778,0.3704099420795141,0.3714957890158554,0.373211363350258,0.3744232922732363,0.3749186374484703,0.3754703177257525,0.3756002744111594,0.3758914484064373,0.3800310143088743,0.3802463230898003,0.3835861247307886,0.3842708611037057,0.3848779871033,0.386231662591687,0.3851963746223565,0.3867823606323547,0.3918898003405046,0.3938279174330676,0.3962891165882027,0.3933410762679055,0.0,2.363314167091105,64.87314648407286,220.42829582067225,328.6446626876398,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95824,40959,382.3050592753381,7369,75.71172148939723,5749,59.35882451160461,2357,24.200617799298715,77.32864418348662,79.63937043753268,63.32870225298407,65.03832590135593,77.03797201548672,79.3492851898024,63.22244097532742,64.93574668885005,0.2906721679999009,290.0852477302749,0.1062612776566425,102.57921250588709,62.96686,44.33871312043192,65710.94924027384,46270.989648138166,212.78864,128.1564206159462,221450.44039071637,133129.95764729736,243.39892,115.7342983839296,249934.72407747537,117699.55790607024,3319.15624,1481.3481777896848,3427687.9278677576,1509788.3805619497,1386.43918,597.8759806869763,1430381.4597595592,607452.7578550009,2320.73182,959.1877671178814,2383705.564368008,966487.541805802,0.38034,100000,0,286213,2986.861329103356,0,0.0,0,0.0,17818,185.2980464184338,0,0.0,22825,234.18976456837532,2178405,0,78235,0,0,0,0,0,32,0.323509767907831,0,0.0,1,0.0104357989647687,0,0.0,0.07369,0.1937476994268286,0.3198534400868503,0.02357,0.3078611075254937,0.6921388924745062,25.826521290991558,4.572415732506613,0.3318838058792833,0.1951643764132892,0.2363889372064707,0.2365628805009567,10.889524430983874,5.373035757404708,25.027876655629093,13235.149001142228,64.49223952102497,13.007259058417686,21.438394865545806,15.083743982597712,14.962841614463766,0.5366150634893024,0.7593582887700535,0.6954926624737946,0.5584988962472406,0.1080882352941176,0.7010385756676558,0.9096385542168676,0.8602150537634409,0.7509025270758123,0.1277372262773722,0.4862531242899341,0.6962025316455697,0.6424116424116424,0.5092421441774492,0.1031307550644567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813895781637,0.0050277743988971,0.0073352609952823,0.0093653502356574,0.0119483424852552,0.0142537161474241,0.0162470696157374,0.0185330707134619,0.0208067202845083,0.0230544896392939,0.0250110146828283,0.027154336381269,0.0292071322131442,0.031305977063559,0.0337107618694056,0.0360135128154798,0.0381968519419234,0.0403135498320268,0.0423695363137776,0.0442674993494665,0.0591315413420116,0.0729715600167294,0.0861826796083939,0.0990678562796221,0.1111532745153843,0.1258469962684595,0.1395743417355065,0.1523138640305606,0.1643973130853597,0.1764333805051674,0.1910212784286699,0.2038842304571274,0.2161118783779375,0.2275569548296821,0.2382482394366197,0.2495845243634913,0.2603743243846875,0.2703892623495366,0.2803407155025553,0.2889340031656459,0.297461528649125,0.3059501049742549,0.3144108951449163,0.3220677139045467,0.3284788855876479,0.3350699374081801,0.3413893870793774,0.3478050149223273,0.3531573888874458,0.3589404148850262,0.3601614819615468,0.3618311123386039,0.3626393841625629,0.3641369090856263,0.3647722692462716,0.3647281629636473,0.3649315504616364,0.3660020778706773,0.3667700851917242,0.367266933982529,0.3679655308660558,0.3688119303401577,0.3705206931359354,0.3728021916331709,0.3752990358359713,0.3755942531452735,0.3770327243525396,0.3782809436468282,0.3766425929187951,0.3809751434034417,0.3803236602026315,0.382583065380493,0.3860163015792154,0.3866027227722772,0.3856870229007633,0.3869328493647913,0.3886914877182141,0.3932168550873587,0.3961527739057708,0.401980198019802,0.0,2.524520939772005,59.2343213382857,218.96152661219165,337.1037033673947,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95750,41009,382.61096605744126,7610,78.24543080939948,5885,60.91906005221932,2397,24.66840731070496,77.35098256499538,79.69734689438388,63.33757887846742,65.07019755856373,77.05939206148769,79.40524106328624,63.23187099044736,64.96689331847116,0.2915905035076918,292.10583109764343,0.1057078880200563,103.30424009256944,62.71474,44.11980474488301,65498.4229765013,46078.12505993004,212.35367,127.36313198090316,221234.6631853786,132471.97156117685,250.07087,119.24004566791731,257892.33420365537,122021.1197553784,3352.3858,1501.9317510651042,3473221.180156658,1540655.9867221718,1405.68444,605.7961500661778,1456843.2793733682,621450.8094685937,2354.63004,969.0113469575692,2426552.27154047,983291.701310196,0.38128,100000,0,285067,2977.201044386423,0,0.0,0,0.0,17760,184.9086161879896,0,0.0,23448,241.6187989556136,2181550,0,78345,0,0,0,0,0,45,0.4699738903394256,0,0.0,0,0.0,0,0.0,0.0761,0.199590851867394,0.3149802890932983,0.02397,0.322211155378486,0.6777888446215139,25.677801947780697,4.628264436134076,0.335089209855565,0.1986406117247239,0.2363636363636363,0.2299065420560747,11.206359621283308,5.666266519628701,25.369990833041427,13283.308688806825,66.06445693392583,13.526393506166988,22.256608120548883,15.478341933488986,14.803113373720969,0.5437553101104503,0.7510692899914457,0.7028397565922921,0.5772825305535586,0.09830007390983,0.7093772369362921,0.9188405797101448,0.8683127572016461,0.7166666666666667,0.1390977443609022,0.4922014260249554,0.6808252427184466,0.648721399730821,0.538955087076077,0.0883164673413063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025619474851396,0.0049056871509512,0.0074173287469686,0.0097099211830665,0.0120283474494412,0.0142928403457157,0.0168397875658759,0.0188604145617096,0.0211163237563752,0.0233960024153353,0.0252988088648338,0.0274892219256826,0.0295789852464915,0.0317063124292039,0.0340637121399686,0.0361852984951215,0.0385391967031487,0.0407388191345854,0.0427409964235215,0.0447560607165553,0.059514364456322,0.0735312578458448,0.0867636882169144,0.0996551651632708,0.1120762354528588,0.1274061076287221,0.1410891351609311,0.1544093390514094,0.1665598427552023,0.1778278358809332,0.1917231276323018,0.2046819701938374,0.2171851207309114,0.2291279133384396,0.2399427501926676,0.2515575460612376,0.2617409178247464,0.2714546150210438,0.2808409676577098,0.2893753153235793,0.297913724037326,0.3059984547306315,0.3140909575034615,0.3219151001042378,0.3290716592603385,0.3352953490376682,0.3410847864701909,0.3473377598005546,0.3536354684908789,0.3593023255813953,0.3604009551691108,0.3616173042170752,0.3630596645897794,0.3636455945922423,0.3643899748028208,0.365192801266387,0.3657695181469882,0.3670257518517907,0.368004803568365,0.3694110060189166,0.3708558211256746,0.3725731284085275,0.3734924543789859,0.3735226711005258,0.3760021249879262,0.3783507317840843,0.3791493627380782,0.3802165790640238,0.3827634825519915,0.3840402990444969,0.3844880695140453,0.3858999140893471,0.3854716621080084,0.3843610641242503,0.3858582018627637,0.3856971153846154,0.3889413988657845,0.3855546357615894,0.3802657619451512,0.3884297520661157,0.0,2.0210384351740744,61.78106589862532,227.7523058872047,338.2374559465611,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95843,41103,383.9612699936354,7479,76.91745876068153,5775,59.680936531619416,2445,25.207892073495195,77.51248185563044,79.79945466075564,63.42745123530996,65.11136630075752,77.22224535587216,79.50634439650676,63.3215840589819,65.00649622223797,0.2902364997582793,293.110264248881,0.1058671763280614,104.87007851955354,62.17222,43.72529167401201,64868.81671066223,45621.78946194507,210.45664,126.7578194295068,219015.9636071492,131686.8727288449,243.2602,116.07331863847068,249981.3444904688,118212.11306105142,3345.91048,1494.1048516475355,3459240.340974302,1527116.316942848,1467.8363,631.611772228919,1518478.6369374916,645984.5291037628,2423.45278,992.84060995685,2499891.426603925,1011595.1571430932,0.38285,100000,0,282601,2948.582577757374,0,0.0,0,0.0,17580,182.81981991381735,0,0.0,22847,234.55025406132947,2192707,0,78602,0,0,0,0,0,33,0.3338793652118569,0,0.0,0,0.0,0,0.0,0.07479,0.19535065952723,0.326915363016446,0.02445,0.3142280015149602,0.6857719984850398,25.6471564219317,4.742774288013313,0.3139393939393939,0.2,0.2304761904761904,0.2555844155844156,10.971306652466629,5.259409747211212,25.701377210825672,13271.392012548657,64.45718264232265,13.36021593940758,20.341962851625677,14.68109116256819,16.073912688721183,0.5345454545454545,0.7714285714285715,0.6911196911196911,0.5792637114951165,0.1165311653116531,0.7016129032258065,0.925595238095238,0.8486238532110092,0.7694915254237288,0.1649831649831649,0.4828836998413058,0.7081807081807082,0.6412490922294843,0.525096525096525,0.104325699745547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002236253617469,0.0044966123494799,0.006821475993067,0.0090410041501354,0.0114793067717751,0.0136987694498118,0.0159332939667284,0.0181106216348507,0.0201566377012855,0.022364249923305,0.024658235625416,0.0268488037001712,0.0290684531760547,0.0311017341635362,0.0332474226804123,0.0353756532876118,0.0374992239399019,0.0395927719087261,0.0417064860597498,0.0440159906721079,0.0589640104704397,0.0725727190983041,0.0858576862223246,0.0988089986766651,0.1110058224622803,0.1268337505148759,0.1404605716344676,0.1537627320475471,0.1657828188521004,0.1770608014049215,0.1910189685577874,0.2044069993519118,0.2168899698160734,0.2282669229173264,0.2393747322399569,0.2508681899621757,0.261439729034127,0.2714364349183882,0.281157614543807,0.2899534766754684,0.2990204561974317,0.3072468158989477,0.3158689522551113,0.3226488578801491,0.3298167415607853,0.3367017026246235,0.3432882388178914,0.3498801780212256,0.3557921910293643,0.3602482022427596,0.3612360229270977,0.3632299295098604,0.3641760462570522,0.3649244695571956,0.3660554130779608,0.3664164156511368,0.3666328921537585,0.3678526882426311,0.3686835049609782,0.369467722050494,0.369460808224832,0.3698117688973339,0.37173324377086,0.37336972327241,0.3744360180474225,0.3746652453134343,0.3741786841880706,0.3764919645374518,0.3800852789039564,0.3809111312359727,0.3831341600901916,0.3860147213459516,0.3896387951506062,0.3898613321209366,0.3931208524161136,0.3961023714486968,0.3953347470463496,0.3931913199283297,0.3989707475622968,0.3970037453183521,0.0,2.20128795317875,60.01140899193973,218.4197407261437,335.44513740725733,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95749,40961,383.11627275480686,7361,75.68747454281507,5732,59.39487618669647,2277,23.509383910014726,77.31288813594676,79.67171263300085,63.318020272784125,65.06219015732906,77.03794888266339,79.39316868726705,63.21921870376631,64.9640574177032,0.2749392532833781,278.5439457338015,0.0988015690178159,98.13273962585356,62.89316,44.2590217317181,65685.44841199386,46224.00414805178,210.78589,127.2644711145964,219686.16904615192,132457.33850024865,246.08464,116.7941362455132,253731.6421059228,119512.50889624892,3303.07304,1473.64436175564,3424365.8732728283,1513778.2856255337,1405.80668,595.9380197711093,1457147.145139897,611516.8858897705,2244.20858,912.9515310895836,2318481.8222644622,931884.9010077688,0.38099,100000,0,285878,2985.7022005451754,0,0.0,0,0.0,17642,183.76171030506848,0,0.0,23171,238.7387857836636,2180843,0,78301,0,0,0,0,0,32,0.3342071457665354,0,0.0,0,0.0,0,0.0,0.07361,0.1932071707918843,0.3093329710637141,0.02277,0.323134521043119,0.676865478956881,25.445134043200124,4.59013573794456,0.3469993021632938,0.2006280530355896,0.2213886950453593,0.2309839497557571,11.228982732131742,5.587650377011306,24.13678469222076,13261.233217581224,64.5861896803341,13.303086250871353,22.666143144436308,14.189848046233916,14.42711223879254,0.5512909979064898,0.7278260869565217,0.7104072398190046,0.5855003940110323,0.1261329305135951,0.7247774480712166,0.881159420289855,0.8548387096774194,0.7395833333333334,0.1643835616438356,0.4979470802919708,0.662111801242236,0.6624246483590087,0.5402650356778798,0.118552036199095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914419980149,0.0048449710619406,0.0073559999594151,0.0098322024946166,0.0121438960140763,0.0143890020366598,0.0165392066890996,0.0188257394003124,0.0208252397407324,0.0231719929142646,0.0254175595451702,0.0274374903732607,0.0295372970082173,0.031796879023536,0.0337573637892434,0.0357810965841558,0.037794851616377,0.0397816883871503,0.0418456162973285,0.0438130365924814,0.0580908530919493,0.072060100656043,0.0853817114093959,0.0985459400923112,0.1103777662972998,0.1262427550027499,0.1403681892938617,0.1529455590442233,0.1658923173870785,0.177946474523932,0.1928625255678759,0.205549367964619,0.2178639763437119,0.229290377612283,0.2405804116566374,0.2519355374646951,0.2621640924917418,0.2719684100394874,0.2808103289690335,0.2903255376929335,0.2988688070951383,0.3071011661773478,0.3153205386089878,0.3222218226713174,0.3285210839713209,0.3359468422155651,0.3413161652346,0.3475222444277549,0.3529640427599611,0.3585429360684122,0.3599821891191709,0.3610548226569069,0.3625783854019547,0.3646813260084941,0.3648364433704747,0.3647004537414443,0.3648820702167616,0.3661946259985476,0.3664977235632677,0.3679869172986378,0.3686324045096338,0.3701698154526089,0.3717927111860122,0.3729917986743062,0.3737200125880558,0.3749343418426305,0.3764905324253656,0.3779034666836134,0.377345107635564,0.377643747486932,0.3787222273439661,0.3809166845148854,0.3794608959757024,0.3820587782735805,0.3868968148006866,0.3883227430763697,0.390145017932325,0.3888660640920295,0.3851809954751131,0.3896604938271605,0.0,1.836699003207896,59.89372231591226,222.443072133594,333.8889074053764,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95787,41312,387.90232495014976,7559,77.82893294497165,5932,61.40708029273283,2420,24.867675154248488,77.37208356525132,79.70912162745775,63.35007434272507,65.07885775567351,77.07100236288605,79.40812068284215,63.24061126684966,64.9720142444362,0.3010812023652676,301.0009446155948,0.1094630758754107,106.84351123731516,62.8122,44.20879919976933,65574.86924112875,46153.23498989354,214.14554,129.04774477815891,223009.51068516605,134168.85879937664,250.01522,118.3679318638268,258120.33992086613,121258.82152140836,3419.20616,1529.6581102366458,3540807.8758077817,1568151.8266953195,1457.85385,631.9363905360243,1509013.8327748026,646770.0424233185,2398.24032,989.9343247513742,2466831.3027863908,1002502.1839859904,0.38377,100000,0,285510,2980.6758745967613,0,0.0,0,0.0,17875,186.03777130508317,0,0.0,23509,242.5068119891008,2182707,0,78386,0,0,0,0,0,40,0.4175932015826782,0,0.0,1,0.0104398300395669,0,0.0,0.07559,0.1969669333194361,0.3201481677470565,0.0242,0.3201754385964912,0.6798245614035088,25.44343155161921,4.580335508347355,0.3285569790964261,0.2053270397842211,0.2245448415374241,0.2415711395819285,11.029983562607228,5.4504308562117245,25.735997663431974,13288.101723914806,66.68518404344158,14.167133107916255,21.906441064107128,14.889015123535154,15.722594747883049,0.5424814565070802,0.7627257799671593,0.6957414058491534,0.5825825825825826,0.1095603628750872,0.6981132075471698,0.9103260869565216,0.8479657387580299,0.7227722772277227,0.167235494880546,0.4930015552099533,0.6988235294117647,0.6477732793522267,0.5413022351797862,0.0947368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021979135014686,0.0045821337334252,0.0064946926183759,0.0089393646956044,0.0111156310383402,0.0131128848346636,0.0151158405447002,0.0172969773659611,0.0194367233485938,0.0216763893153208,0.023641897500538,0.0255544494504253,0.0275273680423497,0.0297055189456342,0.0317720579136245,0.033797257782875,0.0358769460086121,0.0380391384155889,0.0404401450525243,0.0424679070057991,0.0571434534431122,0.0715839678687975,0.0854710710878612,0.0988872426945749,0.111369813944668,0.1271565157677882,0.1405105814779097,0.1541201488569909,0.1661260722973838,0.1777623051791548,0.1914889039489678,0.2051728237608352,0.2172188596824845,0.2290489359143922,0.2400250747844448,0.2516916398108464,0.2630991823120601,0.2734488302285579,0.2832152372314495,0.29137988295789,0.3002996402003771,0.3083013660179641,0.3167076690164167,0.3238726218431015,0.3308679758564992,0.337908939683322,0.344136401788958,0.3501482546671587,0.3564203846402901,0.3619836020121202,0.3629385226584068,0.363939118707511,0.365130464249407,0.3656607217883894,0.366844425907168,0.3677518427518427,0.3678285033743549,0.3690554604136477,0.369639514314665,0.3702514617785271,0.3723572342186442,0.3732104918293191,0.3750578922992716,0.3762151725376619,0.3773908838109056,0.3797062610020756,0.38135031553468,0.3816099268215081,0.3821943084238166,0.383832287139868,0.3859099082484208,0.3868314969094329,0.3878070510372916,0.3893041535023503,0.387659736791913,0.3877917414721723,0.3864406779661017,0.3869035735675784,0.3824254037777169,0.3851711026615969,0.0,2.0731601377471343,63.47788984588088,219.54797449309797,350.8564839110831,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95643,40966,383.20629842225776,7569,77.96702320086153,5883,60.8931129303765,2404,24.76919377267547,77.25911226955019,79.6575985317893,63.27736057920528,65.04683059072956,76.9629516746068,79.35865972315553,63.169531815083495,64.9404263663278,0.2961605949433874,298.9388086337783,0.1078287641217841,106.40422440175712,61.54148,43.32854706073712,64344.991269617225,45302.37138184407,209.5556,125.58490879475497,218493.54369896383,130697.58246265272,245.4688,116.7739179667398,252791.0981462313,119039.65315823426,3380.38252,1515.2300387745845,3501284.986878287,1551165.8132582444,1420.76273,618.2217214997879,1469347.186934747,630246.5643066281,2370.44046,978.4365259651004,2443798.0406302605,993371.9359001986,0.38253,100000,0,279734,2924.7723304371466,0,0.0,0,0.0,17497,182.3029390546093,0,0.0,23123,237.9055445772299,2183592,0,78447,0,0,0,0,0,37,0.3868552847568562,0,0.0,1,0.0104555482366717,0,0.0,0.07569,0.1978668339738059,0.3176113092878848,0.02404,0.3128051070221554,0.6871948929778445,25.84732201476516,4.631429495949443,0.3270440251572327,0.2019377868434472,0.2325344212136665,0.2384837667856535,11.213100436134336,5.650176912368857,25.56661980066568,13380.52412554934,66.28664546997258,13.82872892819274,21.775132353497053,15.26652217277192,15.416262015510858,0.543940166581676,0.7592592592592593,0.7110187110187111,0.5767543859649122,0.1004989308624376,0.7020669992872416,0.9141274238227148,0.8739130434782608,0.7291666666666666,0.1462585034013605,0.4944196428571428,0.6916565900846433,0.6598360655737705,0.5361111111111111,0.0883678990081154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027045369366814,0.0047252557823543,0.0070539756003491,0.0093887172817428,0.0116587822371432,0.0137188601226244,0.0160796949242408,0.0184060353012035,0.0210282045777491,0.0231744017032775,0.0257440766068261,0.0278465155917897,0.0298791463101054,0.0318832219051641,0.0339521779960991,0.0361263906695893,0.038277858926148,0.0404517475113404,0.0424385525125079,0.0443063707348602,0.058573339464114,0.0734425405337467,0.086736461866409,0.0994219166254251,0.1116015798255433,0.1274200381275153,0.1408193395575099,0.1545592089841669,0.1673920249794155,0.179685150981487,0.1937394155781117,0.2072055477299816,0.2197895562381543,0.2315361607485236,0.2427961756045919,0.2542978988050287,0.2649649167962936,0.2750778394476783,0.2842078920726644,0.2928278382385051,0.3020497226026602,0.3096014832895231,0.3171348514710422,0.3244261032773473,0.3309783537106182,0.3381665223308178,0.3447201065781866,0.3508265413015151,0.3563862280507935,0.3613661354212206,0.3623347124198913,0.3640726347379922,0.3652123376991552,0.3661569826707441,0.3681595018560651,0.3682578854014036,0.3689519984700707,0.3698872466355851,0.3714659595716106,0.3715302747015677,0.373229742216523,0.374440576827449,0.3755667559417111,0.3755303625547199,0.3769842228611467,0.37769510885227,0.3783450805111455,0.3822216594384121,0.3829960373620152,0.3848280836739601,0.3883673845021167,0.3915051280674435,0.3883686859035607,0.3917652481179904,0.3907741752528594,0.3923731862333613,0.394577846630519,0.3940016433853738,0.3925021300766828,0.3939272872552936,0.0,2.3980738180077146,61.96731719180009,223.048102939945,345.40999954516946,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95625,40508,380.559477124183,7454,76.9359477124183,5809,60.24575163398693,2381,24.554248366013077,77.28554750318864,79.71707395472461,63.27381344368565,65.07188264748146,76.99544588623061,79.42497989269985,63.168590211965714,64.96843278802127,0.2901016169580259,292.0940620247592,0.1052232317199326,103.44985946018426,61.45898,43.218945888746,64270.82875816994,45196.28328234876,210.05089,126.16236068506626,219138.45751633987,131411.89091248764,243.81933,115.75802873132268,251944.1464052288,118762.58279179416,3365.23684,1505.6207472821382,3490489.265359477,1545963.66403875,1438.60509,620.8780438065821,1490653.1555555556,635626.4137274714,2354.77386,970.4392638613316,2429761.3803921565,985721.8255387936,0.3771,100000,0,279359,2921.4013071895424,0,0.0,0,0.0,17586,183.362091503268,0,0.0,22942,236.86274509803923,2186329,0,78446,0,0,0,0,0,33,0.3450980392156862,0,0.0,0,0.0,0,0.0,0.07454,0.1976664014850172,0.3194258116447545,0.02381,0.3194762267988812,0.6805237732011188,25.51016429381936,4.648918091669464,0.3346531244620416,0.1940092959201239,0.2267171630228955,0.2446204165949388,11.066186434024488,5.469477738748075,25.239133664415046,13126.982203529817,65.35433959045054,13.125092259848394,22.054072249957525,14.588924270796303,15.586250809848313,0.5427784472370459,0.7559893522626442,0.6862139917695473,0.6150341685649203,0.1104855735397607,0.7057971014492753,0.9129129129129128,0.8431771894093686,0.7753623188405797,0.15,0.4919846466470987,0.690176322418136,0.6331727460426704,0.5725264169068204,0.1007887817703768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104985812728,0.004402113826086,0.0066807456443162,0.0089749453676881,0.0110792333048467,0.0132628426489013,0.0154848976344217,0.0175813174239947,0.0197911446134334,0.0218756080825046,0.0239123521506755,0.0260891903000411,0.0283167440376321,0.0303467612254154,0.032411279414346,0.0344856120316928,0.0364977875418398,0.0383640744433366,0.040572891729292,0.042161260039637,0.056855243351731,0.0703589206182866,0.0835093471202042,0.0962198950673212,0.1086382457326347,0.1232181814330798,0.1376914003974115,0.1508448376952188,0.1638702221461284,0.1755307718755372,0.1891731497566818,0.2025369978858351,0.2155381916064559,0.2272797002038088,0.2378852196923755,0.249073149073149,0.2601817795615379,0.2701255664014067,0.2789862484373224,0.2886723228617289,0.2968831439591369,0.3046162135569794,0.3126979044366172,0.3202099422298555,0.3266814396337603,0.3333292166331155,0.3397884234539119,0.3445668528294188,0.3508646655587868,0.3562880981659989,0.3578192020286492,0.3586200245243245,0.3602423078552366,0.3614897654676884,0.3619493014804444,0.3621463714637146,0.3629901726934453,0.3640577319587629,0.3653031472429465,0.3659399468428992,0.3673523157122156,0.3679617619642609,0.3697200910547171,0.3710163168067604,0.3717985889629844,0.372489539748954,0.3733565296751561,0.3763786475074053,0.378230529158046,0.3784020372433551,0.3798818735405888,0.3827398139236445,0.3819175297032848,0.3860711002145265,0.3892992424242424,0.3911645629911884,0.3907815631262525,0.3925729442970822,0.3891639163916391,0.3847611827141774,0.0,1.9212514650138768,61.4357541849079,225.6087422608538,333.1234781816016,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95805,41081,385.2304159490632,7422,76.4260737957309,5715,59.04702259798549,2414,24.82125150044361,77.35864855579545,79.66291403794303,63.35358995694328,65.05402257215066,77.07350059636188,79.37698431447413,63.250195270330615,64.95280482566628,0.2851479594335728,285.92972346889667,0.1033946866126598,101.2177464843802,62.11634,43.71335275279778,64836.2194039977,45627.42315411281,209.8082,125.79172557231324,218379.7609728093,130685.63758925842,241.43384,114.29169104516018,247417.9844475758,115891.4662854096,3296.90088,1468.163515882925,3408471.4993998227,1500055.49002958,1390.48738,598.8984740708324,1434547.9776629612,608476.1388276211,2384.55448,974.9629015905916,2454015.2810396114,989228.8644673168,0.38219,100000,0,282347,2947.100881999896,0,0.0,0,0.0,17445,181.43103178330983,0,0.0,22682,232.28432754031624,2188067,0,78574,0,0,0,0,0,43,0.4383904806638484,0,0.0,0,0.0,0,0.0,0.07422,0.1941966037834585,0.3252492589598491,0.02414,0.3062523876225646,0.6937476123774354,26.029632980572995,4.639220635635986,0.3268591426071741,0.1956255468066491,0.2325459317585302,0.2449693788276465,10.918410267593496,5.410425436230158,25.514784470002777,13243.700488074885,64.11903277276755,13.048289002410916,21.01725664960794,14.634493496891592,15.418993623857096,0.5308836395450569,0.7450805008944544,0.6948608137044968,0.5605718585402558,0.1128571428571428,0.6810408921933085,0.9020771513353116,0.8660714285714286,0.6666666666666666,0.1463414634146341,0.4846681922196796,0.677336747759283,0.6408450704225352,0.5331439393939394,0.1042228212039532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023986397587191,0.0047807635041375,0.00696493202348,0.0094168264888834,0.0115416658200069,0.0137531153044097,0.0158802917328769,0.0179939408158477,0.0200539402978975,0.0222897358783935,0.0242953130121271,0.026411881756826,0.028489238197976,0.0307065385169482,0.0326122819317853,0.0347024983733203,0.0367530653422318,0.0385544416914608,0.0407478576992988,0.0426513148306231,0.0580454014354865,0.0719072461343843,0.0852549052490357,0.0980505491040933,0.1102223627357993,0.1257450226148708,0.1389330619341433,0.1521949559094148,0.1645760160561966,0.1760203261184189,0.1901927010442458,0.2039502861036896,0.2163478790383088,0.2280404296746811,0.2396706042957956,0.2507592046638441,0.2618896143758022,0.2720727207272073,0.2823277084917329,0.2919177799674603,0.2999618015765531,0.3090404608035965,0.3167207523035744,0.3239347093462539,0.330901130974097,0.3370304114490161,0.3426693376737198,0.3481056169475989,0.3532843308832108,0.3585304612131624,0.3595620752885341,0.3614203825166731,0.3629083423801937,0.3636350487430935,0.3653559947612811,0.3659680807027765,0.3660219898776753,0.3675257307533964,0.3686413062120536,0.3696393937217154,0.3702231099721113,0.3713831478537361,0.3718997806647545,0.3723392299220032,0.3727890827264148,0.3729232386961094,0.3738462865522298,0.3759966962101718,0.3777178732309438,0.3783903242656808,0.3783311891196471,0.3809446955024747,0.3834935999490543,0.3861194837313548,0.3896940418679549,0.394094535063698,0.3952697480290617,0.4011113397818481,0.4071670428893905,0.4041450777202072,0.0,2.3201885502401884,59.44035631978929,215.885336224552,336.16191609115776,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95854,40872,382.1332443090533,7523,77.31550065724957,5800,59.85144073278111,2373,24.35996411208713,77.41454581429173,79.70239431240039,63.37712166936033,65.0677613599726,77.12272320427824,79.40948491812654,63.27125281901868,64.96394744533474,0.2918226100134831,292.909394273849,0.1058688503416505,103.81391463785404,62.36472,43.92858454625152,65062.1987606151,45828.63995894957,212.55192,127.78431091863844,221104.773927014,132670.6876276821,248.27771,117.91670277991254,254254.4181776452,119484.19976534418,3358.54616,1504.5611204186728,3470579.3811421534,1536403.40561549,1428.17677,613.2682197668076,1477194.6606297076,627038.6418582497,2339.4444,965.1912709588086,2405029.670123312,978395.8432039544,0.38032,100000,0,283476,2957.3726709370503,0,0.0,0,0.0,17701,183.9985811755378,0,0.0,23330,238.6024579047301,2185638,0,78492,0,0,0,0,0,45,0.4694639764642059,0,0.0,0,0.0,0,0.0,0.07523,0.1978071098022717,0.3154326731357171,0.02373,0.3093852770048065,0.6906147229951936,25.585595389556914,4.604829616879004,0.333448275862069,0.1953448275862069,0.2325862068965517,0.2386206896551724,11.30886672778464,5.762167796290133,25.09415316604274,13203.1817052624,65.26843003086172,13.32242226807963,21.7161023445347,15.014494853736544,15.215410564510844,0.5510344827586207,0.7846425419240953,0.688728024819028,0.5989621942179392,0.120664739884393,0.7056367432150313,0.9105691056910568,0.864406779661017,0.749185667752443,0.1384083044982699,0.50011460004584,0.7238219895287958,0.6320109439124487,0.5547024952015355,0.1159817351598173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023991496684719,0.004680613950661,0.0070474664611578,0.0090755893042048,0.0111393434292102,0.0137771039591367,0.0161267318663406,0.0181157941980496,0.0202153305548745,0.0226763631900334,0.0248294511707946,0.0268238142130313,0.0289451511477363,0.0310132575757575,0.033208582062623,0.0351266770638601,0.0374213706340009,0.0394010052334317,0.0415031661995224,0.0433547957602171,0.0584518496892855,0.0724206038185409,0.0857846218311334,0.0984985300293994,0.1104711159783501,0.1259769338008533,0.1397065833377469,0.1529860660877698,0.1653296351610838,0.1768309006992707,0.1908629332415395,0.2041601798996713,0.2164643753599409,0.2283257206547632,0.2392518023562511,0.2502379213420977,0.2613320844344829,0.2715533227688054,0.2804496268233479,0.2898844493306307,0.2984000647840724,0.3059961632041924,0.3144192651322407,0.3216092450070728,0.3285354794004304,0.3347187449897019,0.3404804248177742,0.3467043602281988,0.3518900611204111,0.3570106309832337,0.3582274725571109,0.3593784439056645,0.360054156206809,0.3615559316639905,0.3629169022046354,0.3628043171644079,0.3634622082897945,0.3648055979894545,0.3653503969340268,0.366062014118488,0.3669836625213362,0.3674876652069669,0.368379048179107,0.3699867733763759,0.3705125419473214,0.3721064057963433,0.3745461822132014,0.3752241905541046,0.376025925534538,0.3778656442207844,0.3799306062819576,0.3821679812406736,0.3826935179358087,0.3864136622390892,0.3883878241262683,0.396883920076118,0.3965144972239358,0.403123073762071,0.4058171745152354,0.4049268668206313,0.0,2.5645133027686384,63.34616665482507,214.38124009824995,336.11611221656466,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95715,40787,382.5941597450765,7556,77.65762942067596,5862,60.701039544481006,2404,24.72966619652092,77.36002699221102,79.7314424692749,63.33690834044432,65.08825549784916,77.06591731486039,79.4365488848324,63.22833353608179,64.98197153764241,0.2941096773506331,294.8935844424909,0.1085748043625329,106.28396020675268,62.51036,43.96986505995159,65308.84396385102,45938.32216470939,212.24727,127.23376472945466,221145.47354124225,132326.05623930905,242.84225,115.38615588836642,250462.4666980097,117989.87933631006,3386.14832,1514.8862886832871,3507699.3574674814,1553007.0964937226,1428.31065,615.7453649327921,1480758.3868777098,631866.0732408486,2380.03232,991.8003881175472,2451431.7923000576,1005972.9893450337,0.38037,100000,0,284138,2968.583816538682,0,0.0,0,0.0,17699,184.34937052708565,0,0.0,22812,235.198244789218,2185268,0,78387,0,0,0,0,0,48,0.4701457451810061,0,0.0,0,0.0,0,0.0,0.07556,0.1986486841759339,0.3181577554261514,0.02404,0.3071014857718459,0.6928985142281541,25.565216338715317,4.621113926362837,0.3288979870351416,0.1948140566359604,0.2328556806550665,0.2434322756738314,10.97018894414686,5.408004470426345,25.55717878493037,13185.077622921315,65.59898473879895,13.101944030062247,21.63687961516894,15.116236070258624,15.743925023309146,0.5341180484476288,0.7478108581436077,0.6945020746887967,0.5772893772893772,0.1051156271899089,0.6768901569186876,0.909375,0.8670886075949367,0.7278911564625851,0.1050955414012738,0.489237668161435,0.6849148418491484,0.6382393397524071,0.5359477124183006,0.105121293800539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024105903920754,0.0047542296424697,0.0069715758602843,0.0090412239175928,0.0111985841572073,0.0134719563357908,0.0154841997961264,0.0176570250464389,0.0195246613851265,0.0216732529331067,0.0239906497980274,0.026159089975771,0.0281562683175138,0.0302718180600904,0.0321605447791993,0.0340253510059758,0.0362278302668655,0.0384351905671344,0.0405238139815479,0.0426179287061446,0.0573018923096202,0.0715571557155715,0.0848570679255179,0.0970666498385553,0.1099127024291498,0.1260611699034771,0.140024822582185,0.1530438484461473,0.1654829166177146,0.1776631233440956,0.191505866382236,0.2040409943400106,0.2166095983477363,0.2284018105088229,0.2393712393712393,0.2504098905481455,0.2612242620389487,0.2707536557930258,0.2803103342672096,0.2895285439384221,0.2978585559424783,0.3060119513992024,0.314594773717099,0.3212060205157703,0.3279933878672225,0.3339744538146668,0.3404897601302686,0.3458836108141133,0.3519219304839169,0.3576288428256245,0.3587952034746482,0.3594995724019973,0.3611009070615162,0.3616897896461242,0.3628356829900748,0.3629537497696701,0.3631360233472909,0.3640964964175376,0.364638614030883,0.3647749230659128,0.3665081840903538,0.3681988464054231,0.3715436579532581,0.3721424893088239,0.3738432620011567,0.3754935543759642,0.3763212925033659,0.3771977064656128,0.3790371077859139,0.3811301067501405,0.3839520405810468,0.3850704528342476,0.3876721894242366,0.3910103726469458,0.3859101654846336,0.3865184653997848,0.391606233605925,0.3874334834220221,0.3908812899638588,0.3799922450562233,0.0,2.1157423629036,62.03351325341398,213.8271808074359,349.631260221895,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95746,40993,384.2144841559961,7554,77.63248595241578,5825,60.2113926430347,2357,24.199444363211,77.33346816806463,79.69597388109769,63.32120940122799,65.0705702265657,77.04947850040485,79.41475270989108,63.21802011965122,64.97167367069909,0.2839896676597817,281.22117120661017,0.1031892815767676,98.8965558666166,62.72596,44.12663706058606,65512.87782257222,46087.18595093901,211.33225,126.51883740906617,220033.1502099305,131451.47307361788,242.79686,115.18571750781312,250187.2454201742,117612.7644375338,3368.00468,1496.537303476016,3482072.8594406038,1527456.0853466634,1396.26993,597.8395554815964,1444263.4783698537,610358.7987817737,2324.71314,950.5057007984874,2388334.468280659,958077.4172068418,0.38216,100000,0,285118,2977.8580828441923,0,0.0,0,0.0,17637,183.5481377812128,0,0.0,22793,234.6938775510204,2185253,0,78386,0,0,0,0,0,43,0.4386606228980845,0,0.0,0,0.0,0,0.0,0.07554,0.1976658990998534,0.3120201217897802,0.02357,0.3096465853351779,0.690353414664822,25.754421434008748,4.601928003584285,0.3290987124463519,0.2015450643776824,0.2305579399141631,0.2387982832618025,10.983462684725552,5.476223449424924,24.834672193631047,13286.693341862136,65.10464381149562,13.561960834106763,21.55900371127359,14.776245919895109,15.207433346220157,0.5369957081545065,0.7495741056218058,0.6906624934793949,0.5740878629932986,0.1099928109273903,0.7048327137546468,0.8879310344827587,0.8631346578366446,0.7340425531914894,0.1564885496183206,0.4866071428571428,0.6912832929782082,0.6372950819672131,0.5315739868049011,0.0992028343666961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022290896195349,0.0046647466839735,0.0070336763899884,0.0091853116299863,0.0113606313948048,0.0135018175523628,0.015434490070546,0.0179318650364352,0.0200318874943788,0.0220588987952053,0.024214961606676,0.0263744160977362,0.028547041946464,0.0308132768972513,0.0324374516378643,0.0344193161615744,0.0363662721464591,0.0387892120746728,0.0409847996506622,0.0430276643613032,0.0576260569996868,0.0717582659116837,0.0848391361833406,0.0983497933297573,0.1110747845895864,0.1259979907999788,0.1392997347480106,0.1526311307901907,0.1646088776861622,0.1760447833220731,0.1908475890894988,0.2039968406132672,0.2167832167832167,0.2292548479181022,0.2407568340575326,0.2523117130485819,0.2633764610009042,0.2731447092983996,0.2828914514005539,0.2915555046659415,0.3006534435898919,0.3087566227295587,0.3171034727563154,0.3245098979053827,0.3312132834878866,0.337203003816324,0.3438082256874539,0.3498525223759153,0.3551848208738869,0.3612409240924092,0.3626461032395486,0.3634624120699861,0.3644181292732784,0.3659447565000868,0.3670995413117293,0.3675197909461225,0.3680297397769517,0.369224687453674,0.3698890812775368,0.3714357402727745,0.3728657389996239,0.3738419726636116,0.3757403906742281,0.3762596225060035,0.3765963622291021,0.3768988173455979,0.377011625909169,0.3793496501282335,0.3798957927196682,0.3811065803150236,0.3829709147628223,0.3840296026170429,0.3825854156042835,0.3846272692159135,0.3862378316472609,0.3855275895450145,0.391425908667288,0.3880597014925373,0.3953753925206965,0.3939274447949527,0.0,2.4748716656220875,59.1672505046615,219.63565797552832,345.44781400332863,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95788,40801,383.0333653484779,7435,76.28304171712531,5910,60.99929009896856,2452,25.201486616277613,77.34149214859087,79.68136366816954,63.33904717832892,65.07257215441882,77.0476290698845,79.38693918173733,63.2319398206708,64.96763348498914,0.29386307870638,294.42448643220587,0.1071073576581227,104.93866942968566,62.77238,44.11393249081394,65532.61368856223,46053.7149651459,211.87589,127.11932502225058,220478.84912515135,132003.7287112224,246.25919,117.4765800384926,252409.53981709608,119006.53880390173,3409.4016,1531.316289831788,3522941.5793210007,1562707.9477952723,1460.49297,629.6217473964982,1507158.0156178228,639751.6363182212,2419.05842,998.4047465164324,2488583.4551300798,1011559.9240556118,0.38163,100000,0,285329,2978.75516766192,0,0.0,0,0.0,17714,184.18799849668017,0,0.0,23222,237.77508664968477,2186511,0,78470,0,0,0,0,0,33,0.3445107946715663,0,0.0,0,0.0,0,0.0,0.07435,0.1948222099939732,0.3297915265635507,0.02452,0.3218054672600127,0.6781945327399873,25.079195303092323,4.606827580306801,0.3245346869712352,0.2015228426395939,0.2304568527918781,0.2434856175972927,11.0674200483816,5.615538261897649,26.07342519551599,13188.046990957837,66.54172436603682,13.942240075848062,21.57206990882902,15.25246432787355,15.77495005348618,0.5346869712351946,0.7598656591099916,0.6913451511991658,0.552863436123348,0.1223071577484364,0.7067615658362989,0.9023746701846964,0.867579908675799,0.7290322580645161,0.1618705035971223,0.4810210876803552,0.6933497536945813,0.6391891891891892,0.5009505703422054,0.1128337639965546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0043490161491438,0.0066162666801968,0.0090944193797504,0.0111105458615251,0.0131810819895895,0.0152986292428198,0.0174514188851106,0.0196230814066446,0.0219437020653498,0.0242697043956156,0.0264630677442211,0.0285637876590448,0.0306473545409592,0.0325746006851293,0.0345536858643072,0.0364583333333333,0.0383087312372278,0.0401508775211197,0.0420570476785342,0.0561943117083655,0.070126095230129,0.0829822906842712,0.0959901645545678,0.1082997871309039,0.1248520209707424,0.1387016070898528,0.1525225455164199,0.1646938274503944,0.1765632703809299,0.1903398387461382,0.204201671586277,0.2164843164310781,0.2279915627493196,0.2391194387631677,0.249786861831106,0.2600561897966464,0.2700074122324296,0.2790149747400376,0.2881059384541494,0.2964199099203141,0.305112455333162,0.3126337317208686,0.3206498964332324,0.3278600987852089,0.3344456484263409,0.3408317911268944,0.3470458906807986,0.3529959639863396,0.358952057141351,0.3606566207463068,0.3617390346650513,0.3632669761142228,0.3648380604902344,0.3660091770454681,0.3662036681758883,0.3661430454740386,0.3676836605185515,0.3689857012891154,0.3691796804882427,0.3702195834511356,0.3722244329486669,0.3736310114161514,0.3747379809317736,0.3742597806038248,0.3750920955688875,0.3765783466728307,0.3781251998209604,0.3789951076670357,0.381638418079096,0.385191386447142,0.3866247561239974,0.3866151866151866,0.3867740170405691,0.385453843927848,0.3878714372346877,0.3875137947343528,0.3973204940339125,0.39920724801812,0.395954881369117,0.0,2.73985826285474,61.31591158991277,225.313218147736,347.1357449582945,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95703,40929,384.157236450268,7452,76.65381440498207,5847,60.52056884319196,2435,25.1089307545218,77.3419109081298,79.71234090160978,63.33255108723839,65.08167397389873,77.0474575422636,79.41516544091473,63.2251775413834,64.97582246497296,0.2944533658662038,297.1754606950441,0.1073735458549833,105.85150892576678,62.46328,43.91053339700823,65267.83904370814,45882.08666082383,210.43748,126.14970180315456,219311.6412233681,131239.3987682252,245.96039,116.39425065205414,253393.4045954672,118823.216111229,3369.54884,1512.581028879602,3488287.0965382485,1547942.6861013768,1431.55523,623.477073761049,1475794.8758137154,631434.556660762,2406.52662,996.225875699404,2482891.048347492,1014146.4745791808,0.38185,100000,0,283924,2966.719956532188,0,0.0,0,0.0,17591,183.21264746141708,0,0.0,23117,237.8713310972488,2186390,0,78492,0,0,0,0,0,38,0.3970617431010522,0,0.0,0,0.0,0,0.0,0.07452,0.1951551656409585,0.3267579173376275,0.02435,0.3133870349060222,0.6866129650939777,25.20811770033685,4.661700865291021,0.3341884727210535,0.198392337951086,0.2211390456644433,0.2462801436634171,11.233731281613288,5.518007051062825,26.014101709308708,13196.200964646438,66.02308979931281,13.50448597563833,22.13835723668956,14.398563088434956,15.981683498549964,0.538737814263725,0.7508620689655172,0.6908904810644831,0.5839133797370456,0.1208333333333333,0.6919263456090652,0.9002849002849003,0.859504132231405,0.7210144927536232,0.1528239202657807,0.4899661781285231,0.6860321384425216,0.6353741496598639,0.5467059980334317,0.112379280070237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050226830848,0.0042262085740346,0.0062690200852099,0.0085723571950922,0.0110424207914751,0.0130834079986967,0.0153011814836335,0.0173103617212378,0.0194705641864268,0.0216872895493669,0.0238441824705279,0.0261528509379909,0.0281456953642384,0.0303411186548942,0.03246445008565,0.0346203545769369,0.0364655074204873,0.0385333859150252,0.0406775431263062,0.0426857863417989,0.0569841037745702,0.0708363864754527,0.0844953676015402,0.0971128056797265,0.1086919831223628,0.1243757406466903,0.1379935920558467,0.1507718513786862,0.1634296946776916,0.1748482052822416,0.1890899299946149,0.2023634317375119,0.2149507298079223,0.2271668653028199,0.2385157650474546,0.2496678917770004,0.2607585337838591,0.2711628168380824,0.2801610707803992,0.2894911529745691,0.2981362148154147,0.306437265917603,0.3148117452048307,0.3222224886693364,0.3290212765957447,0.3352258000814583,0.3424906587757353,0.3484097769739272,0.3538722808473126,0.3589598046333575,0.3597481223790839,0.360778319424936,0.3619122764995139,0.3632617057581629,0.364956120779414,0.3656281622765324,0.3659305993690852,0.3674120880025012,0.3679311586128871,0.3695819808833814,0.3706555710358851,0.37186848117612,0.3738154034487853,0.3734304199824162,0.3752242424242424,0.3760416392839305,0.3787242608995744,0.381266658205356,0.3835066917533459,0.3863416988416988,0.3885077581840784,0.3884053298946916,0.3927068723702664,0.392029657089898,0.3900458540313335,0.3903556359252562,0.3900962434026699,0.3928051569972967,0.3856858846918489,0.3946135831381733,0.0,2.2462671713923763,62.600622004769946,227.1478727016372,333.761811916053,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95706,40671,381.7942448749295,7450,76.5469249576829,5796,59.97534114893528,2357,24.240904436503456,77.33810060160408,79.72131634240824,63.31256206328344,65.07524636650851,77.05142888280304,79.43411046951807,63.206307157449416,64.97154211038361,0.2866717188010454,287.2058728901692,0.1062549058340209,103.70425612489952,62.5009,43.88896650408454,65305.10103859737,45858.113915621325,209.26951,126.7260209042205,218056.66311412037,131809.73074229463,246.47189,117.79965396383848,253671.33722023695,120157.06006612856,3347.81424,1514.9275568279838,3466140.889808371,1551018.8669759303,1393.48701,610.5414015299596,1443554.6047269762,625501.3779014528,2331.9555,973.231656437844,2400710.613754624,987067.3635683858,0.37894,100000,0,284095,2968.413683572608,0,0.0,0,0.0,17555,182.7889578500825,0,0.0,23149,238.0519507658872,2182227,0,78371,0,0,0,0,0,34,0.3552546339832403,0,0.0,1,0.0104486657053894,0,0.0,0.0745,0.1966010450203198,0.3163758389261745,0.02357,0.3179799517827686,0.6820200482172313,25.232311047928174,4.5647567667775215,0.3393719806763285,0.1908212560386473,0.2306763285024154,0.2391304347826087,11.177409431822674,5.528344515267287,25.107542869959428,13157.986335177042,65.4186219755745,12.78905465358502,22.34277156369984,14.9995773101879,15.287218448101724,0.5467563837129055,0.7613019891500904,0.7092018301982714,0.5878833208676141,0.1053391053391053,0.7014613778705637,0.9072463768115944,0.8850102669404517,0.7467105263157895,0.1229235880398671,0.4957559073181922,0.695137976346912,0.6513513513513514,0.5411423039690223,0.1004608294930875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023109201110863,0.0043720835869344,0.0065181635429569,0.008862329003801,0.0109990740834952,0.0135364996587865,0.0155233257858556,0.017710684629291,0.0200746535767244,0.0223007218553217,0.024395246054615,0.0264203641143068,0.0283370005552242,0.0306678337881674,0.0325888481972455,0.0345885951677242,0.0363647659380597,0.0382336767620174,0.04007984779015,0.042161080957193,0.0568041775456919,0.0706120056112728,0.0840110391722719,0.0973893470212049,0.1092571693755075,0.1248109005892496,0.1383061135695563,0.1513870400937117,0.1633571306429548,0.17427176653613,0.1888502192675279,0.2018839324382849,0.2145547572392771,0.2262763337893296,0.2372340308430658,0.2485755459483427,0.2591458987276728,0.2694100427831569,0.2793297358704913,0.2886024563375113,0.2968141797961075,0.3046564751361799,0.312742960083436,0.3198939564789712,0.3268741865245897,0.333765720356781,0.3400622286904373,0.3464031438997627,0.3517922495911957,0.3582590761257569,0.3602335396356674,0.360700941666322,0.3620071684587813,0.3632048164872062,0.3642020334340622,0.3639880860994258,0.3641194853816012,0.3655294930420765,0.3666398342096699,0.367604701504553,0.3686623820799037,0.3697435694185724,0.3717050594298937,0.3736337876130077,0.3766669887901043,0.3785645333820345,0.3795357866788477,0.3808502586098146,0.3828201883874595,0.3844718771087206,0.3863997457896409,0.3858813568291263,0.3869815812554817,0.3887545344619105,0.3885932978624101,0.3896902340978955,0.3884586180713743,0.3853451756156641,0.3818380743982494,0.3789152024446142,0.0,2.2428942347221046,63.58614770154063,220.67298808170952,329.86295848586826,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95642,41169,386.15880052696514,7487,76.98500658706426,5843,60.423245017879175,2289,23.51477384412706,77.27782633283482,79.68647051065301,63.2892740309558,65.07118469717885,77.00715547340646,79.41732968063769,63.19106088364759,64.97616799306996,0.270670859428364,269.1408300153171,0.0982131473082077,95.01670410888607,61.59494,43.40902217470964,64401.55998410739,45386.98707127585,210.42311,125.94165410431172,219355.8687605864,131024.95149025708,250.40859,118.92131464788378,257111.5304991531,120775.29314258804,3364.60888,1497.938141096527,3481241.7138913865,1529592.087162732,1432.04164,615.6931582012224,1481369.335647519,627862.8692766541,2267.2956,924.6591554082678,2331896.049852575,935456.5202141776,0.38377,100000,0,279977,2927.343635641246,0,0.0,0,0.0,17563,182.9426402626461,0,0.0,23500,241.02381798791328,2187535,0,78479,0,0,0,0,0,44,0.4600489324773635,0,0.0,1,0.0104556575563037,0,0.0,0.07487,0.1950908095994997,0.3057299318819286,0.02289,0.3108262469856581,0.6891737530143419,25.56559545063372,4.5638501309506045,0.334074961492384,0.2033202122197501,0.2281362313879856,0.2344685948998802,11.174932599489583,5.565227489924309,24.070977518832244,13395.445129169222,65.57254294158567,13.716650533732258,22.1135141318888,14.74365731089128,14.998720965073332,0.5546808146500085,0.7794612794612794,0.6972336065573771,0.5858964741185296,0.1262773722627737,0.7461482024944974,0.9367469879518072,0.903688524590164,0.7568493150684932,0.1752988047808765,0.4964285714285714,0.7184579439252337,0.6284153005464481,0.5379442843419788,0.1152815013404825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021684940113085,0.0048271945481096,0.0070046494629768,0.0091567832352612,0.0111908031944656,0.0135695439125518,0.0159510453850076,0.0181192356011316,0.0204067019905484,0.02243369766751,0.0246564102564102,0.0268707308304658,0.0287187191307211,0.0307649496011378,0.0331719303317193,0.0353419386868561,0.0373974135787117,0.0394770997518404,0.0413739997294456,0.0433640221459925,0.0578793926791293,0.072071883378016,0.0858060520819119,0.0989613478274595,0.111333875001319,0.1266220707466288,0.1406135516549329,0.1541493554916373,0.1666203268029771,0.1780580752509258,0.1923495501319972,0.205885537342197,0.2175966739587074,0.2294452347083926,0.2406979304271246,0.2525127159495129,0.262875201000536,0.2735722725482473,0.2840507995596463,0.2933849289034415,0.3022922304720931,0.3112986952251789,0.3192848775985896,0.3267246029367695,0.3334953816237239,0.3404189696012633,0.3461933512037478,0.352362881556662,0.3586251621271076,0.3642656169504511,0.3653477638930123,0.3665539374698047,0.3680765642229071,0.3690062039775033,0.3706266591105676,0.3717540703842074,0.3718784794019405,0.373698024132979,0.3754229282954057,0.3758659057463838,0.376667858554303,0.3765699523052464,0.3780824225577526,0.3789237164363555,0.3805874531608848,0.3820348304307974,0.3827050615830725,0.3851359938993391,0.3857824631384001,0.3858737257746081,0.3909694677612766,0.3928035178035178,0.3944843362775624,0.3982854494902688,0.3948722836446817,0.4023711589644326,0.3999062353492733,0.4008764607679466,0.405788876276958,0.4119484576337368,0.0,2.603913548863096,59.76842628562791,221.1386127587559,346.71907828978146,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95831,40782,382.3919191075957,7504,77.33405682920976,5798,60.043201051851696,2376,24.543206269370035,77.39792083527668,79.70407029730892,63.37134666233783,65.07257046679872,77.10717719074876,79.40704930582268,63.26613100548271,64.96660656104781,0.2907436445279217,297.0209914862352,0.1052156568551154,105.96390575091164,63.74852,44.84577655500995,66521.81444417778,46796.732325667006,211.40346,127.12698220080593,220152.14283478208,132209.32913233287,244.83833,116.20396240288336,252540.9105613006,118935.84627024288,3352.61948,1498.848682265569,3475119.8255261867,1540703.1986158642,1398.35772,609.0476531228152,1448008.222808903,624360.2729000166,2342.58964,972.1947383048464,2421611.5244545084,995476.1576077098,0.37988,100000,0,289766,3023.7188383717166,0,0.0,0,0.0,17710,184.32448790057492,0,0.0,23041,237.47012970750592,2180875,0,78158,0,0,0,0,0,31,0.3234861370537717,0,0.0,2,0.0208700733583078,0,0.0,0.07504,0.1975360640202169,0.3166311300639658,0.02376,0.3124130077185879,0.6875869922814121,25.596485286701512,4.478766717175478,0.3344256640220766,0.2009313556398758,0.22697481890307,0.2376681614349775,10.814942703622831,5.423965373510808,25.41606689515114,13161.625022617509,65.09202719492555,13.464374901521694,21.658328341286275,14.597267258155476,15.3720566939621,0.5355294929285961,0.7467811158798283,0.6879834966477566,0.5699088145896657,0.1095791001451378,0.6919191919191919,0.904225352112676,0.8633257403189066,0.7331081081081081,0.1418918918918918,0.4864007252946509,0.6777777777777778,0.6366666666666667,0.5225490196078432,0.1007393715341959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021665181825544,0.004701638480479,0.0066839089203306,0.008793395814506,0.0109181847755367,0.0131586981742687,0.0154775733121395,0.0178525886253506,0.0198929235547745,0.0219250680362587,0.0239744272775705,0.0261816092661557,0.0281405073305045,0.0302135322871108,0.032209521649952,0.0343820015900385,0.0362500258633175,0.0381928609924961,0.0404033061970427,0.0423674132045624,0.0573398562591924,0.0713381791559901,0.0847933901628343,0.0976745652950947,0.1097854041064125,0.1259896620614568,0.1399020314686797,0.1529767352759626,0.1652032728748745,0.1764850980770674,0.1904587551152272,0.2035088098817777,0.215799886941775,0.2274297583907292,0.2380323974794629,0.2496263575675047,0.2600559811760508,0.2695218070812579,0.2790766230526769,0.2886140256530544,0.2975560128557886,0.3054838219656691,0.31251995978473,0.3192979515605732,0.3262952362472106,0.3325580822996652,0.3390933853112427,0.3452315903170468,0.3513226691515245,0.3564095467784235,0.3578926147436328,0.3598087176386522,0.3611803297151947,0.3624337478156637,0.3634918512575953,0.3640384438798935,0.3639874028707528,0.3645995893223819,0.3653691504833604,0.3671185287323388,0.3680363752513011,0.3696100190234622,0.3710477632021527,0.3722442184828579,0.3731314354936402,0.3748457073824093,0.3758217045323492,0.3775285909974196,0.3793494839144468,0.3803680981595092,0.3822470457902511,0.3885322832946761,0.3884413757831479,0.3879650398329337,0.3884954058192955,0.3927496085752138,0.3924070328302474,0.3964847741671776,0.4014900662251656,0.4071373752877973,0.0,1.8243838842890905,61.655112980239856,220.0511646423887,336.6915562440003,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95561,40541,379.8306840656753,7397,76.39099632695346,5707,59.21871893345611,2336,24.057931582967942,77.19945181010942,79.67026635066972,63.224607941291474,65.05357074075653,76.91080231687978,79.3810890491561,63.11935128302135,64.95120955634212,0.2886494932296415,289.1773015136181,0.1052566582701217,102.36118441440568,62.39684,43.94216129960938,65295.29829114388,45983.36277310763,209.55582,126.2804303547975,218811.38749071275,131667.68907273625,242.25172,115.3143477942167,250998.0431347516,118674.7369733152,3303.53564,1480.7021662416423,3427794.9372652024,1520287.194819691,1401.51976,604.0099389304291,1451686.5457665783,617139.2766527332,2311.10736,962.7594971724948,2381657.3078975733,974351.3524373136,0.37749,100000,0,283622,2967.9681041429035,0,0.0,0,0.0,17543,183.0663136635238,0,0.0,22774,235.78656564916648,2177605,0,78117,0,0,0,0,0,32,0.3348646414332206,0,0.0,0,0.0,0,0.0,0.07397,0.1959522106545868,0.3158037042044072,0.02336,0.3156205878577846,0.6843794121422154,25.455854880956988,4.598568616727613,0.3301209041527948,0.1913439635535307,0.2333975819169441,0.2451375503767303,11.056671149314193,5.48567928033989,25.0985887879026,13150.550563444254,64.45907519451126,12.665375444220563,21.25902501546653,14.929529423846365,15.605145310977797,0.5452952514455931,0.7701465201465202,0.6916135881104034,0.6088588588588588,0.1122230164403145,0.6898280802292264,0.9331210191082804,0.8479657387580299,0.7436708860759493,0.1304347826086956,0.4984922291811645,0.7043701799485861,0.6400846859562456,0.5669291338582677,0.1072727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021388531287062,0.0046062376980986,0.0068344300918027,0.0089677891654465,0.0113206010506169,0.0136292279149422,0.015992243710772,0.0183527488248518,0.0205280392959476,0.0224331054837618,0.0246671525503762,0.0268374943445893,0.0287844615400459,0.0310804398506323,0.0330281297149825,0.0353194484700426,0.0373151355499782,0.0395668125175384,0.0414370683638712,0.0434936941451599,0.0575774376784911,0.0707634228187919,0.0838440433516593,0.096571272022254,0.1086297098768694,0.1240471975150275,0.1380293376166111,0.1512154000469513,0.164077898705973,0.17534785694316,0.1891562101807658,0.2026826118568839,0.2153399731643194,0.227215391196569,0.2379422996269562,0.2492223950233281,0.2601445869424114,0.270473396151893,0.2799603942366785,0.288719126938541,0.2974944901983528,0.3057037966666275,0.3132289948621806,0.3203003905076599,0.3270252485864691,0.3334569962282817,0.3394926716444176,0.3450931803957133,0.3516897910354603,0.3573795260563007,0.3588380148292471,0.3600508554213537,0.3607779349363508,0.3620624600917165,0.3625894337480769,0.3630651718615252,0.3633497348683896,0.3637219908784453,0.3648664933634031,0.3655923658624415,0.367316455217531,0.368615249606095,0.3697747833640543,0.3714879392899087,0.3709034328503355,0.3698966135668319,0.370901225666907,0.3743925293015278,0.3733693527174492,0.3743048053454967,0.3740803363341407,0.3752463119774192,0.3789746507364561,0.3785380072102478,0.3796751038911976,0.3872202943640062,0.3855366190695532,0.3865154889653776,0.3851463279955825,0.3920432599459251,0.0,1.951075509152753,62.26516850280992,214.79593945490652,331.7192269662586,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95676,40719,381.5690455286592,7620,78.33730507128224,5971,61.77097704753543,2439,25.0114971361679,77.33990302576841,79.73010471009312,63.32261558699434,65.0887138637416,77.03841579200882,79.43015239339792,63.211774382085856,64.98163346627456,0.3014872337595875,299.9523166951974,0.1108412049084819,107.080397467044,61.15208,43.01123398994427,63915.79915548309,44955.09217561799,211.13664,126.0179453841628,220052.4687486935,131089.585030186,247.24495,117.18429037466774,254951.4507295456,119736.27372137578,3450.392,1546.1004179597285,3571754.5465947576,1581623.4906948805,1461.98021,630.6736939873053,1516057.715623563,647332.6767765644,2413.34414,1005.958914542061,2479210.564822944,1015110.7806986,0.38014,100000,0,277964,2905.263597976504,0,0.0,0,0.0,17509,182.3341276809231,0,0.0,23250,239.4957983193277,2193208,0,78723,0,0,0,0,0,50,0.5225970985409089,0,0.0,0,0.0,0,0.0,0.0762,0.2004524648813595,0.3200787401574803,0.02439,0.3139867978577656,0.6860132021422344,25.51597787467159,4.701937286244823,0.3264109864344331,0.1939373639256406,0.2376486350695026,0.2420030145704237,10.903656776827564,5.244955955031454,26.03886626944545,13267.35686722194,67.08634982073913,13.52417929960084,22.00701958103823,15.60453382648501,15.950617113615056,0.5375983922291073,0.7746113989637305,0.6834273986659826,0.5778717406624383,0.1114186851211072,0.6875,0.9390581717451524,0.8161925601750547,0.7566666666666667,0.130718954248366,0.4906531779195073,0.7001254705144291,0.6427613941018767,0.5299374441465594,0.1062335381913959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410007090043,0.0047438041660331,0.0068999807206421,0.0090399382440173,0.0112971945130817,0.0133756794723019,0.0157479512374118,0.0179942026618763,0.0203631010794896,0.0226414321831786,0.0247788154967552,0.0269257616818592,0.0289677724533656,0.0310868020147708,0.0331922799050469,0.0351954671877746,0.0372557551646256,0.0391637862132677,0.0410494340878828,0.0431777668900958,0.0576117500809593,0.0719041835922777,0.0851423235513214,0.0976477024070021,0.1097244493206177,0.1256717870593711,0.1392316424941381,0.1521709048718958,0.1643418635450933,0.1764056267959,0.1904602925022077,0.203893265235457,0.2171009701135424,0.2286251653891154,0.2399225062193162,0.2514872544783808,0.2625493828538267,0.2720755396493123,0.282030913093806,0.2909859542194624,0.2997141832235966,0.3079613513007673,0.315415029120697,0.3228512535353051,0.329352738228291,0.3362551470769534,0.3421619455506299,0.3477092724170423,0.3534935602277591,0.3592987744417562,0.3615005735105593,0.3633844754145817,0.3644706746110185,0.3659077404675294,0.3672291958615343,0.3675312111300502,0.3674985711564107,0.3689029410796035,0.3704179073826881,0.3718749440755919,0.3731749938931584,0.3740180909307308,0.3754075258187325,0.3765614098264725,0.3771445187554522,0.3768325363879985,0.3793212539545585,0.381725726998252,0.3828255240662576,0.381672669067627,0.3813567101156599,0.3824002574002574,0.3823921742996887,0.383745963401507,0.3860513598028997,0.3881775756850544,0.3860818350898946,0.3890032948929159,0.3950999718389186,0.3930250783699059,0.0,2.397971672007069,62.86363095277391,225.81560478113252,348.9444019991058,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95789,40631,380.8683669314848,7489,77.0652162565639,5826,60.28875966969068,2373,24.43913184186076,77.331780499572,79.6711624036698,63.32970022966426,65.06203018086856,77.03954799634833,79.3780035451867,63.22237643964954,64.95700401413367,0.2922325032236728,293.1588584830962,0.1073237900147177,105.02616673488774,62.5768,44.04660509116657,65327.75162074978,45982.94698886779,209.94291,126.00770911914624,218635.1564375868,131010.06286645251,248.17257,117.37853782540496,255771.51865036692,120021.53883698182,3366.86764,1512.610084076993,3485743.289939346,1549970.3348787357,1410.62982,607.4982547695911,1461070.6970528974,622632.4993157784,2341.98124,972.2783594584376,2413921.1809289167,988086.649743065,0.37896,100000,0,284440,2969.443255488626,0,0.0,0,0.0,17544,182.59925461169863,0,0.0,23295,239.8187683345687,2184648,0,78462,0,0,0,0,0,50,0.5219806032007851,0,0.0,1,0.0104396120640157,0,0.0,0.07489,0.1976198015621701,0.3168647349445854,0.02373,0.3148499810102544,0.6851500189897456,25.5003232994166,4.649117831179725,0.3414006179196704,0.1862341228973566,0.2349811191211809,0.2373841400617919,11.25679757930256,5.624097619189098,25.233475867099727,13140.905763543691,65.76951717237455,12.60314988274235,22.44125282713676,15.396805247366547,15.32830921512888,0.5477171301064195,0.7695852534562212,0.6928104575163399,0.5945945945945946,0.118582791033984,0.7015250544662309,0.9415384615384615,0.8656716417910447,0.7657342657342657,0.1178451178451178,0.5001123848055743,0.6960526315789474,0.6394736842105263,0.5493998153277931,0.1187845303867403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024309951886553,0.0046733709095332,0.0071336519630227,0.0093055386240806,0.0113399440630561,0.0134522754814203,0.0156603658163577,0.0177834946302421,0.0199648340864018,0.0222042504401949,0.0243884936337727,0.0264292755051749,0.0284418669216768,0.0304394404499474,0.0325310655162448,0.0343533546986457,0.0364455491688674,0.038489861536068,0.0402988641913728,0.0423577921469403,0.0570912771707938,0.0705648535564853,0.0841990502447768,0.0966708001429201,0.108904109589041,0.1240000422703399,0.1380238695864159,0.1501611033720052,0.1617450882042197,0.1736736093254478,0.1875652576398531,0.2018236490286851,0.2140456952706156,0.2260830571687939,0.2364180681518006,0.2483932449802757,0.2591931253836281,0.2696466140881833,0.2793175037153845,0.2878478982934371,0.2962684495442558,0.3043620629166179,0.3119791666666666,0.3190696001438762,0.3265712931338349,0.3329589910034431,0.3394977369325092,0.3462284372767173,0.3524090130315144,0.3579628111196339,0.3593478172917425,0.3607568788387914,0.3615847896303192,0.3629594216755762,0.36433796689462,0.3645700404360326,0.3655898585993542,0.3663196449489366,0.3673707911517506,0.3689327354260089,0.369473069459882,0.3700290016288586,0.370500105507491,0.3714523643402129,0.372707423580786,0.3730730783395591,0.37495329251818,0.3762235104057778,0.3791020523508425,0.3816674675636713,0.3847357040990017,0.3853354134165366,0.38711951297661,0.3929924974862712,0.3921512460613005,0.3891092679408582,0.3953488372093023,0.3897645854657113,0.3950478334271243,0.391426282051282,0.0,2.1099881050478984,60.81972665487292,233.11241302098264,330.32863857171805,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95694,41070,385.6772629422952,7471,76.93272305473697,5790,59.993312015382365,2352,24.28574414278847,77.34192318165195,79.71723225136722,63.32298576779221,65.07512220071888,77.05204381458766,79.42319014103231,63.2170981332505,64.96935751304994,0.2898793670642874,294.0421103349138,0.1058876345417019,105.76468766893754,62.70572,44.10132306893884,65527.32668714861,46085.77660975489,210.77321,126.70469025912122,219722.66808786345,131877.39780745748,244.3161,115.68795879245174,251634.2403912471,118125.09821632462,3350.7482,1500.3837420820537,3472753.317867369,1539647.189658678,1456.84273,630.7936810093132,1509676.9389930402,646546.0218675544,2322.4094,965.4089723096184,2399502.2885447363,986878.581763366,0.38229,100000,0,285026,2978.514849415846,0,0.0,0,0.0,17610,183.49112797040567,0,0.0,22958,236.25305661796975,2182207,0,78273,0,0,0,0,0,43,0.449348966497377,0,0.0,0,0.0,0,0.0,0.07471,0.1954275549975149,0.314817293535002,0.02352,0.309244126659857,0.690755873340143,25.413488002393656,4.564693484890657,0.3288428324697754,0.1915371329879102,0.2395509499136442,0.2400690846286701,11.01796908490323,5.566656802565577,25.07691099084501,13260.383383679691,64.97565736644151,12.816064073528938,21.44446181633244,15.444453171143126,15.270678305437006,0.5381692573402418,0.7601442741208295,0.6832983193277311,0.5839942321557318,0.116546762589928,0.6917024320457796,0.9131736526946108,0.8473118279569892,0.7326732673267327,0.1554054054054054,0.4892987249544626,0.6941935483870968,0.6302988186240445,0.5424354243542435,0.1060329067641681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.0044090370055036,0.0066546963287582,0.0087248867491417,0.0107593585063,0.0132047810062918,0.0152111412433986,0.0177366158496114,0.0198678882571884,0.0222495264424307,0.0243209711983102,0.0266887104393009,0.0288091662723962,0.0308484879707382,0.0328244511194376,0.0346407188724704,0.0368022539179433,0.0387146326780561,0.0407961647653414,0.0425671592022174,0.0580456468376246,0.0713672439427889,0.0850992369617011,0.0976998190159518,0.1098941681702594,0.124882271394859,0.1393610583201503,0.1525663829923205,0.1652273358842265,0.1772029623269292,0.190348872310147,0.2036040328781364,0.2162829931972789,0.2275159486579054,0.2392656268917922,0.2504598134154719,0.2610700489024853,0.271358764186633,0.2804616484526606,0.2900996906153317,0.2991236295858947,0.3078994193669226,0.3158069292271246,0.3231090470533175,0.3301508148868888,0.3372279524256033,0.3437159223373986,0.349660505229366,0.3549613862028684,0.3612628460327747,0.3620715279748152,0.3631741118925566,0.364365426231595,0.3655716086773805,0.3671087691093943,0.3666901970413111,0.3675651663467182,0.3684097763567744,0.3690705018191803,0.3708833542375918,0.3731214144644033,0.3740759876003497,0.375139505990861,0.3750140661220264,0.3752962228563137,0.3764527274630929,0.3781108759082327,0.3809553858774531,0.3820766334752472,0.3856568311233226,0.3894564027727107,0.3886842807579397,0.3894502700985065,0.3912215194696334,0.3944945509207065,0.3951954780970325,0.3988491823137492,0.399480415667466,0.3978641840087623,0.395880149812734,0.0,1.938813925301488,62.16497533192442,216.9860186575232,336.5249078908828,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95736,41023,384.1083813821342,7319,75.22770953455336,5694,58.87022645608757,2257,23.199214506559706,77.32392886815877,79.68740906934536,63.31606620966248,65.0647713345558,77.0384761796804,79.4002664725747,63.21186389511765,64.96225961790272,0.2854526884783723,287.1425967706642,0.1042023145448283,102.51171665308334,61.86906,43.5450249696574,64624.42550346788,45484.279900183,209.20512,125.99874589202793,217935.79217849087,131025.16515870205,245.16033,116.10806642850828,251588.6813737779,117932.16087185328,3270.48264,1461.549555657091,3384710.5790925045,1495305.0069034542,1384.42805,600.0110296095908,1433403.6830450404,614300.8955298783,2230.988,931.6927615053256,2296444.2633909923,946051.2701377328,0.38157,100000,0,281223,2937.473886521266,0,0.0,0,0.0,17488,182.0422829447648,0,0.0,23038,236.19119244589285,2185379,0,78554,0,0,0,0,0,31,0.3238071362914682,0,0.0,0,0.0,0,0.0,0.07319,0.1918127735408968,0.3083754611285694,0.02257,0.3128011459825498,0.6871988540174502,25.60014775353196,4.582874052542755,0.3431682472778363,0.1940639269406392,0.2290129961362838,0.2337548296452406,11.067230325984902,5.526423804909548,24.09146709296185,13248.952956980776,63.96458990715963,12.812617296893947,21.818924890829425,14.52904705883198,14.804000660604263,0.5470670881629786,0.7647058823529411,0.691914022517912,0.5897239263803681,0.111945905334335,0.6940467219291635,0.9238410596026492,0.8524229074889867,0.7716262975778547,0.1134751773049645,0.5024043966109457,0.7048567870485679,0.6433333333333333,0.5379310344827586,0.111534795042898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002076432991988,0.0043192164576341,0.0064850711429557,0.0088195248836594,0.0109655368840786,0.0132179226069246,0.0158738250107048,0.0182102136433697,0.0200799517426821,0.0223714791796783,0.0246062992125984,0.0268796780188301,0.0287761648229633,0.0307468866845894,0.0327836711107442,0.034896220954271,0.0372464938992811,0.0392319667877529,0.041511121278609,0.0434755430536021,0.0577758289484673,0.0724567937397999,0.0859626495538288,0.0987634849536306,0.110539357832024,0.1261609088408893,0.1397969252315625,0.1522736709858075,0.1644734031189916,0.1761476938911165,0.190124014985144,0.2030149992970769,0.2157790026417925,0.2270928096571028,0.2386656107701445,0.2506811385535497,0.2617158290644077,0.2718269598685543,0.2815665167824863,0.2904576212868448,0.2997565781847687,0.3085127580023207,0.3163387530982792,0.3234877410369089,0.3298713000280047,0.3355850571163939,0.3421947333425335,0.3484633931646829,0.3541012125775712,0.3594684737148605,0.3605975067867803,0.3619240799768183,0.3629606601853945,0.3641860734897479,0.3649967953972962,0.3654153109460372,0.3662230963219083,0.3679172354808467,0.3683678712108237,0.3698076062639821,0.370013341601368,0.3711915206129295,0.3723361733459556,0.3733348309558575,0.375202534400619,0.376471822306139,0.376701143168209,0.3787455561198578,0.3808796362086116,0.381773695399302,0.3853126581696038,0.3882497725935042,0.3905437951578147,0.3907517991119277,0.392455705848733,0.3964169772754599,0.3929227941176471,0.4013591844893064,0.4050496911093204,0.3996948893974065,0.0,2.3234758687041355,58.51605959748932,218.92088402501548,333.783878476178,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95787,41194,385.991836052909,7582,77.78717362481338,5904,60.97904726111059,2492,25.57758359693904,77.4066300966336,79.7463098908813,63.35719594835807,65.08823383130589,77.10493928759267,79.44634029453903,63.24783549308987,64.9824224425128,0.3016908090409345,299.9695963422795,0.1093604552681952,105.81138879308584,62.94398,44.271786714883206,65712.44532139016,46218.99288513389,211.27793,126.90855144043994,219939.6055832211,131859.40831265197,245.65419,116.68803893447271,252869.03233215364,118903.24599369362,3415.5358,1527.079354027704,3530047.7100232807,1558531.276715737,1457.06862,630.6532169989391,1501724.9939970977,638961.3590559671,2462.02054,1011.4217460236628,2530026.997400482,1021067.0821360992,0.38358,100000,0,286109,2986.929332790462,0,0.0,0,0.0,17629,183.38605447503315,0,0.0,23103,237.5478927203065,2184186,0,78430,0,0,0,0,0,45,0.469792351780513,0,0.0,1,0.0104398300395669,0,0.0,0.07582,0.1976641117889358,0.3286731733051965,0.02492,0.3099824868651488,0.6900175131348512,25.392501469504342,4.670366381024787,0.3246951219512195,0.1881775067750677,0.2410230352303523,0.2461043360433604,11.212993989929783,5.570341333415774,26.300525875699527,13266.721680333983,66.16777187331867,12.91091793833566,21.51167422250135,15.862011187857178,15.883168524624482,0.5367547425474255,0.7587758775877588,0.6917057902973396,0.5699226985242446,0.1300757054370268,0.7038352272727273,0.925595238095238,0.8635394456289979,0.7138461538461538,0.1546762589928057,0.4844306049822064,0.6864516129032258,0.636049723756906,0.5273224043715847,0.1242553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0045527367118898,0.0067687561522614,0.0091035631915304,0.0113607469411417,0.0135536954440846,0.0159050590322383,0.01794518450467,0.020002861932213,0.0222379139547259,0.0244634841248693,0.0265863569200459,0.0287056260149232,0.0308829433503875,0.0328931770623949,0.0349014910577836,0.036953508100391,0.0392888612450111,0.0413060868300487,0.0431831431664862,0.0577838063439065,0.0715749843129052,0.0848200247374268,0.0975973766632333,0.1102845883951996,0.1258585346266827,0.1401878073596744,0.1534765043589198,0.1657277596398011,0.1771277393372035,0.1908609670547223,0.2047489295445698,0.2171989958377256,0.2297661821398538,0.2409694146598699,0.2525645991257677,0.2636856429017578,0.2739282461801378,0.2837488374203207,0.2928166676206284,0.3013890334593988,0.3097010999801279,0.3174174920420793,0.3240911596252007,0.3300520149725341,0.3366220632669421,0.3428070175438596,0.349069699323765,0.3548056596677345,0.3606652740685898,0.3614875809935205,0.3624507127691841,0.3644617013766325,0.3648648648648648,0.366219192761043,0.3653887440576598,0.3654872160215309,0.3671064723644479,0.3677039815841078,0.3680497407849495,0.3692339412569586,0.3700812301124572,0.3703672647995975,0.3717460459698015,0.3725018059234288,0.3726964239102062,0.3743040685224839,0.3757909648984732,0.3774741142494893,0.3771112173358827,0.3773490009601756,0.3764436638458672,0.3751893939393939,0.3755046081194302,0.3737932327303402,0.3746754779324994,0.3772418058132344,0.3703327922077922,0.3701949860724234,0.3662246489859594,0.0,2.612279813623652,61.84174577172443,223.9965100117008,341.90815548245087,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95686,40994,383.5566331542754,7448,76.48976861818865,5797,59.97742616474719,2335,24.07875760299312,77.29491858535671,79.69866107885576,63.29396199958445,65.07459724418332,77.00889834662057,79.41141442769951,63.188676885482174,64.97144894124891,0.2860202387361426,287.24665115625214,0.1052851141022799,103.14830293441446,62.95784,44.30989048384061,65796.29203854273,46307.60036352299,213.21286,128.87310261556814,222212.9883159501,134070.7758873483,248.58469,118.5047918358542,255887.3816441277,120796.52562950832,3325.77488,1500.916483239561,3442735.739815647,1535603.665363337,1432.12547,620.8815756491815,1483421.639529294,635602.8422644705,2291.61902,950.8517577011652,2363931.5469347658,965865.8605595782,0.3816,100000,0,286172,2990.7405472064875,0,0.0,0,0.0,17874,186.1609848880714,0,0.0,23371,240.4008945927304,2178450,0,78209,0,0,0,0,0,35,0.3657797378926906,0,0.0,1,0.0104508496540768,0,0.0,0.07448,0.1951781970649895,0.3135069817400644,0.02335,0.3149093694153689,0.685090630584631,25.434478115638164,4.646352192831239,0.3474210798688977,0.1909608418147317,0.2339140934966362,0.2277039848197343,11.254056151891568,5.662834234243405,24.84778484555348,13230.446494971817,65.44576283802509,12.892989514170724,22.731654033709667,15.294401360541643,14.52671792960304,0.5497671209246162,0.7515808491418248,0.676266137040715,0.6076696165191741,0.128030303030303,0.714975845410628,0.9206798866855525,0.8551587301587301,0.740506329113924,0.1666666666666666,0.4947102115915363,0.6724137931034483,0.6165562913907284,0.5673076923076923,0.1178160919540229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024227802163269,0.004789592783139,0.0072005281064337,0.0095368817040313,0.0116554862220955,0.0139634910766157,0.0163476060247357,0.018563167896038,0.0206756148463395,0.0228644013972689,0.0250394928502554,0.0273465991391265,0.0295636962337929,0.0316912295166443,0.0336502234746436,0.035512626941612,0.0379167055263676,0.0400755829647625,0.0422249500665778,0.0440062121512179,0.0581728157773785,0.0718742802102309,0.0851925700493231,0.0981407241390195,0.1104557923612576,0.1256639790066239,0.1393406080163043,0.1522621037724799,0.1648234225570337,0.1762610384454435,0.1906511247091269,0.2037219367054368,0.2159787761492628,0.2277035077555392,0.2381701388125041,0.2497729638735685,0.2602611315701372,0.2703892127951737,0.280273947709152,0.2895446048693219,0.2980899540152664,0.3062349979509396,0.3141347611827141,0.3213797076402391,0.3284725685027304,0.3361904997159301,0.3420432318571643,0.3483229085720837,0.3542608447858243,0.3599086432465972,0.3614326330966272,0.3623759104489942,0.3631593053929383,0.3629192177978491,0.3635402552152355,0.3641225010372328,0.3646686493105806,0.3660443330254651,0.3670505844590535,0.3677471491424979,0.3686256013583624,0.36997591224892,0.3712423264350357,0.3729561731453538,0.3740678665986543,0.3744768222380162,0.3744636737984853,0.3763427191254052,0.3782339408954167,0.3808322319676399,0.380443297543892,0.3817860584645037,0.3855223123732251,0.383505945531262,0.3818026403267167,0.385197645079899,0.3879747808703675,0.3915897435897436,0.39366391184573,0.4007604562737643,0.0,2.3955590967516693,63.93069933637812,216.11496053299155,334.4078197196178,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95718,40832,382.7388787897783,7417,76.25524979627656,5798,59.95737478844104,2386,24.519944002173048,77.3593554540744,79.73076558573464,63.33143217950936,65.083991470752,77.07452156292368,79.44783392858996,63.22720515216941,64.98377952018427,0.2848338911507255,282.9316571446867,0.1042270273399523,100.2119505677257,63.10964,44.37491464159121,65932.88618650619,46360.05207128357,210.66971,126.62017466985502,219481.7798115297,131672.23998605803,242.42524,115.05687977855344,249914.1331828914,117540.7742902021,3352.74104,1494.9432557735922,3467695.6894210074,1526930.9497693826,1404.84065,612.5800842602482,1448996.4165569695,621293.6169375126,2365.01888,973.5618031863452,2432139.806514971,982882.229248867,0.38049,100000,0,286862,2996.949372113918,0,0.0,0,0.0,17631,183.56004095363463,0,0.0,22768,234.5431371319919,2183152,0,78258,0,0,0,0,0,48,0.5014730771641698,0,0.0,0,0.0,0,0.0,0.07417,0.1949328497463796,0.3216934070378859,0.02386,0.3115280812234931,0.6884719187765069,25.439846696717105,4.6246380911942415,0.3285615729561918,0.1900655398413246,0.2349085891686788,0.2464642980338047,10.993651171193642,5.318540904179668,25.261322307404956,13170.915391108218,64.93424743723934,12.89007186981362,21.195063379614297,15.171779616632,15.67733257117942,0.5294929285960676,0.7441016333938294,0.6860892388451444,0.5844346549192364,0.1028691392582225,0.7142857142857143,0.912280701754386,0.8755760368663594,0.7436708860759493,0.1892857142857142,0.4722096701310438,0.6684210526315789,0.6301835486063903,0.5363288718929254,0.0818102697998259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079974071223,0.0046529544740336,0.0072249789440571,0.0092726127846275,0.0116937656976093,0.0138352998666354,0.0157602324277486,0.0180266623114141,0.0200159473329108,0.0220825356524943,0.0242321694098343,0.026417691225259,0.0286020000823079,0.0308681406993756,0.0330320104018327,0.0353650216056402,0.0372414221522788,0.0391668741183304,0.040940232251089,0.042824254924633,0.0576447122463684,0.0716865010833045,0.0849296099699977,0.098143961301856,0.1099968364441632,0.125519692786188,0.1391005369611817,0.1519510247537929,0.1637991835687875,0.1752572894197439,0.1894760662945322,0.2030463447111168,0.2151949691008791,0.2265340293509307,0.2377044665969047,0.2488910082952579,0.2592257516865478,0.2693173124521849,0.2791896033142273,0.2880913091309131,0.2965916324286789,0.3046157804259101,0.3125110850980809,0.3198845882169837,0.3271721057805503,0.3342652691734509,0.3404087558353462,0.3457223536594673,0.3524772733158944,0.3585251632478068,0.3597389490681558,0.3610931458215794,0.361647959040144,0.362615178301057,0.3637402597402597,0.3641732584647868,0.3635903679225892,0.3645266058657568,0.3656382397157305,0.3670106405770192,0.3677081180603829,0.3688696824327003,0.3691266679314488,0.371007371007371,0.3722410454985479,0.3731949576748696,0.3753080758869719,0.377337559429477,0.3809793376733654,0.3834112056227786,0.3858238779916395,0.3883172561629153,0.3904481810625919,0.3901897765534129,0.390697235588263,0.3876457986193763,0.3846628606696497,0.3799714460534367,0.3771760154738878,0.388162951575711,0.0,2.432203022669384,60.3728947820815,218.13224940977287,339.953578795104,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95878,40963,383.9775548092367,7469,76.5660526919627,5831,60.1284966311354,2368,24.30171676505559,77.4394230829848,79.7203592811684,63.39129033748679,65.07782466550229,77.15631473517898,79.43725599405,63.28926493184585,64.97870662329707,0.2831083478058218,283.1032871183936,0.1020254056409371,99.11804220521958,62.48748,43.94838805918901,65173.95022841528,45837.82312854775,212.45411,127.6059767405576,220908.6860385073,132412.75030826428,248.90617,117.7588948463892,255154.99906130708,119432.492580452,3364.87884,1492.2452145804102,3472102.3383883685,1518960.1937675057,1438.09498,607.4329878937123,1484159.765535368,617785.8402279074,2339.33986,944.2019102170764,2402722.605811552,953205.802237912,0.38077,100000,0,284034,2962.452283109785,0,0.0,0,0.0,17776,184.6930474144225,0,0.0,23356,239.11637706251696,2187633,0,78554,0,0,0,0,0,47,0.490206303844469,0,0.0,0,0.0,0,0.0,0.07469,0.1961551592825065,0.3170437809613067,0.02368,0.3132176575657055,0.6867823424342945,25.34904169103641,4.596555394786983,0.3258446235637112,0.1996227062253472,0.234608128965872,0.2399245412450694,11.213761805625651,5.534628816856812,24.601520535663088,13187.07143933692,65.16536307082643,13.561421253499098,21.46911806313452,15.089260714658511,15.045563039534304,0.5409020751157606,0.7542955326460481,0.6973684210526315,0.5716374269005848,0.1208005718370264,0.7053637031594416,0.9021739130434784,0.8442982456140351,0.7288732394366197,0.1422924901185771,0.49082774049217,0.6859296482412061,0.6509695290858726,0.5304428044280443,0.1160558464223385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020550718768981,0.0045198427175807,0.0066038405745645,0.0090568489882118,0.0113734538099545,0.0135426629494719,0.015737203972498,0.0179212566299469,0.020146295615218,0.0222590478528611,0.0244267300559437,0.0264615952884201,0.0283929176985603,0.0304917594012826,0.0322903242435177,0.0346551011978521,0.0367082583235044,0.0385571881541044,0.040636225835254,0.0423311798424934,0.0563211441437685,0.0703321734950837,0.0843586709530142,0.0973594414404955,0.1091963702970714,0.1253959204358292,0.1382783785787673,0.1504973009733497,0.1623935268594821,0.1745970590123932,0.1878433438329803,0.201320381635674,0.2134267557438487,0.2248699794589397,0.2364711832354816,0.2484478923429355,0.2590111678295178,0.2694766168259995,0.2796180075673471,0.2893106207842689,0.2978054978054978,0.3059363396464352,0.3139220159088491,0.3218060593002238,0.3285958758632408,0.3354474808803064,0.3423346799914948,0.3482913314778807,0.3540467474679533,0.3603246334040395,0.3621012123413932,0.3629167468323118,0.363559620119592,0.3650167591308368,0.3658380850558327,0.3658771835816097,0.3653069946341232,0.3667825744652933,0.3684471243359581,0.3697002141327623,0.3713428919501452,0.3727123439447599,0.3731299439770033,0.3747148033820963,0.3753816564490924,0.3765656460005753,0.3770982359143891,0.3808206256877849,0.381830936513504,0.3840222575516693,0.3831993422254705,0.3858747993579454,0.3854199683042789,0.3846331333640978,0.3845418935702684,0.3829045443616254,0.3873184444791504,0.3894867549668874,0.3908785674314493,0.3872567722243418,0.0,2.650957606198403,59.68463852033083,218.35553685128264,344.9684512403015,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95732,40937,383.60213930556137,7575,77.91543057702754,5869,60.66936865415953,2400,24.673045585593115,77.34647984393533,79.69879918258327,63.33814763576003,65.07521486934469,77.059649650986,79.4123703519668,63.23168139919574,64.97158405411548,0.2868301929493242,286.4288306164724,0.1064662365642874,103.63081522920936,61.89568,43.54055987799733,64655.16232816613,45481.71967366955,210.0419,126.40912989142664,218770.672293486,131409.31965427092,246.22675,116.99537798457034,253064.69101240963,118964.78944856048,3385.7904,1520.4955276929038,3503053.5244223457,1554682.6298031923,1447.22144,624.0063426544767,1494726.9251660886,634854.1982519744,2370.59132,986.1690235284344,2439990.515188234,998589.145929926,0.38239,100000,0,281344,2938.8710149166423,0,0.0,0,0.0,17474,181.85141854343377,0,0.0,23152,237.77838131450295,2188691,0,78508,0,0,0,0,0,44,0.449170601261856,0,0.0,1,0.0104458279363222,0,0.0,0.07575,0.1980961845236538,0.3168316831683168,0.024,0.3122251539138083,0.6877748460861918,25.56418271911876,4.565406935908356,0.3244164252853979,0.1952632475719884,0.2429715454080763,0.2373487817345374,10.90215931539204,5.369606943987449,25.421168612127147,13297.696575727125,65.96292045721236,13.308616905640996,21.439740021087488,15.908067003227496,15.30649652725638,0.5389333787698075,0.7513089005235603,0.6859243697478992,0.5799438990182328,0.1213208901651112,0.6938341601700921,0.9358600583090378,0.8646788990825688,0.7333333333333333,0.1291390728476821,0.4899057873485868,0.6724782067247821,0.6328337874659401,0.5337591240875912,0.1191567369385884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.004521079787935,0.0068600886940461,0.0092948131894922,0.0116643276994732,0.0140189770320899,0.0159633027522935,0.0179426203574235,0.020402530895115,0.0227391397827444,0.0250207566703225,0.0270051115718596,0.029146875578311,0.0311975363318948,0.0331194156125544,0.0353181945033023,0.037344956826041,0.0393617462754699,0.0412989469963929,0.0432038329340693,0.0576284634497734,0.0718509602804961,0.0850320509457914,0.0986350922206565,0.111156798245614,0.1266864030450412,0.1401824546515328,0.1534286231228514,0.1659673958299971,0.1773847802786709,0.1917892288808975,0.2049537612892758,0.2178729047546579,0.229708164826757,0.2405501682169008,0.252034590811954,0.2618458037745951,0.2721166503527188,0.2813670518262922,0.2908115912137775,0.2994039696776807,0.3080045860826431,0.3163224217158558,0.3238960135321568,0.3306183975395388,0.3366528217705855,0.3433759078387177,0.34993502025839,0.3552920110550286,0.3601972814301581,0.3615950340732744,0.3631110804661104,0.3641215338566668,0.3654592871631411,0.3666229625435799,0.3666707646914187,0.3667830503094746,0.3687259322647533,0.3692790291062429,0.3702383724053942,0.3714924727949329,0.3738499365482233,0.3749815762322868,0.376452345101917,0.3782849406474385,0.3784934928355462,0.3798919602321706,0.3825437513845375,0.3862544169611307,0.3885497705964492,0.388272001468294,0.3879037874323672,0.3874683544303797,0.3905407487290094,0.3931493815413892,0.3906043493932476,0.3878591288229842,0.3905544147843942,0.3878069432684166,0.3958746529155097,0.0,2.524070552649072,61.883372572030176,221.69010084641596,342.4665947330229,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95748,41143,384.53022517441616,7511,77.36976229268497,5864,60.7427831390734,2355,24.240715210761586,77.41222784566315,79.76750131558875,63.350809200748486,65.08948630217033,77.1196445326521,79.47463654016697,63.24379610416176,64.98485048205636,0.2925833130110504,292.8647754217764,0.1070130965867264,104.63582011396966,62.77678,44.18649085380815,65564.586205456,46148.73506893946,213.25501,128.37579647339234,222214.41701132135,133568.43462049996,247.82164,117.59373214806396,256285.0085641476,120767.10750695018,3382.8902,1514.4463028612508,3504953.6700505493,1553701.916397181,1436.11825,621.8578507598711,1485584.659731796,635416.3742643632,2332.3864,974.036145628064,2401981.1588753816,987938.0346174864,0.38277,100000,0,285349,2980.208463884363,0,0.0,0,0.0,17860,185.98821907507207,0,0.0,23306,240.74654300873124,2181980,0,78214,0,0,0,0,0,37,0.3864310481681079,0,0.0,0,0.0,0,0.0,0.07511,0.1962274995428063,0.313540141126348,0.02355,0.3132132893735734,0.6867867106264266,25.525550919355737,4.730172073769671,0.334924965893588,0.1952592087312414,0.2245907230559345,0.245225102319236,11.313268985648811,5.589611098047441,25.147536459625385,13316.101883542718,65.81973631925108,13.25131619413814,22.036529511056337,14.598794501445347,15.93309611261126,0.5402455661664393,0.759825327510917,0.6904276985743381,0.5846621108580107,0.1196105702364394,0.7011577424023154,0.925925925925926,0.8538135593220338,0.7653061224489796,0.1404109589041096,0.4906291834002677,0.6942752740560292,0.6387399463806971,0.5327468230694037,0.1143106457242583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394774154344,0.004540617240156,0.0066956133587631,0.0090888780567064,0.0115698614260006,0.0139461495393698,0.0160119860570356,0.0182443394589961,0.0203472626748832,0.0223541453428863,0.0244834795441502,0.0268847006651884,0.0289703100583929,0.031121272038227,0.0332356522277483,0.0354953744379554,0.0375981112928945,0.0397991367861885,0.0420643336868151,0.0443550907310568,0.0588597617630785,0.0731819608663806,0.0866655477698988,0.0996686477673171,0.1124428922628907,0.1272790764118898,0.1416382795835853,0.1544341530927286,0.1665972155442296,0.178461439409385,0.1930233059526119,0.2061214988685945,0.2189214490986676,0.2295151966365945,0.240018508725542,0.2505934816852661,0.261292377854532,0.2716857426099495,0.2816855017320688,0.2904357798165137,0.2988911932706902,0.3071770671100858,0.3156492391497424,0.3230009469356443,0.3302266237316969,0.3366447684665919,0.3423999399452,0.3483920172874031,0.3546130471326049,0.3606902911342379,0.3623377321471766,0.3641182690855157,0.3653199836879333,0.3668195983379501,0.3681349606019314,0.3686339148085405,0.368859704508145,0.3705643577320937,0.3716058431486185,0.3724264443969509,0.3741102621107104,0.37546805407749,0.3755682651415163,0.3763239040085802,0.3768070622759964,0.3777638715060492,0.3787451181618632,0.3812053950388279,0.3835664581429676,0.3864870219932633,0.3850038673279039,0.3850981226400042,0.3853274559193955,0.3880823896024929,0.3913572163502011,0.3947867298578199,0.3944283757040645,0.3876234630114896,0.3871322518559252,0.3802762854950115,0.0,1.9136120912942451,61.4450855831268,227.60750991002087,336.9559267884041,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95736,40775,381.6954959471881,7328,75.30082727500627,5768,59.75808473301579,2255,23.209659898052976,77.32373385663094,79.69543864114787,63.321321634088775,65.07598139053462,77.05014751747527,79.41970202339809,63.2210693506869,64.97740362986823,0.2735863391556705,275.7366177497857,0.1002522834018719,98.57776066638736,62.9662,44.22690290587408,65770.6609843737,46196.731538683554,210.17263,126.67814211099746,219046.84758084733,131833.58622774866,244.25505,116.07730876964816,252589.79903066767,119218.94055437608,3317.01948,1483.8139312363824,3436907.8298654635,1522052.8654177985,1390.43404,598.4227320071152,1437069.7334336091,609782.9155251062,2222.6484,919.271560623288,2288520.8490014207,930885.1375201982,0.37975,100000,0,286210,2989.575499289713,0,0.0,0,0.0,17597,183.28528453246423,0,0.0,22960,237.19395002924708,2183374,0,78369,0,0,0,0,0,43,0.4491518342107462,0,0.0,0,0.0,0,0.0,0.07328,0.1929690585911784,0.3077237991266375,0.02255,0.3169370538611291,0.6830629461388709,25.542646845681094,4.626818533663465,0.3370319001386962,0.1955617198335645,0.2366504854368932,0.230755894590846,11.226919868253374,5.643464516840661,23.963371091892025,13162.903868549229,64.69342990368466,13.206858522246236,21.88298385401876,15.183565178366592,14.42002234905305,0.5494105409153953,0.7641843971631206,0.7001028806584362,0.5912087912087912,0.1044327573253193,0.7242620590352772,0.9162011173184358,0.8763326226012793,0.745928338762215,0.1490196078431372,0.4939483900433889,0.6935064935064935,0.6440677966101694,0.5463137996219282,0.0938661710037174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113475177304,0.0048982323770117,0.0072878603329273,0.0096233969473406,0.0120157089370014,0.0143018671882162,0.0164504548606861,0.0185675038043977,0.0208194860572842,0.0228480720979056,0.0251766467372911,0.0274214585751111,0.0293709171338922,0.0312338987242637,0.0333708363869076,0.0354591599383858,0.0375851854920562,0.0395700620422053,0.04156832572599,0.0433133628549101,0.0580509093946417,0.0716177040052747,0.084710201940729,0.0973008225864136,0.109288004049266,0.1249788529859583,0.1384527244949923,0.1515935089119446,0.1635549954072586,0.1748179761304781,0.1881339506837515,0.2009152674398476,0.2129232910676613,0.2246131977475261,0.2365566556655665,0.2482308774183546,0.2588727211908346,0.2690237846461514,0.2790362811791383,0.2880140042561955,0.2967058361352791,0.305412100109831,0.3129935221523476,0.3196449321369958,0.3267880995749848,0.3330662952783563,0.3389928129617108,0.3456472446561871,0.3509019933339385,0.3568297063173463,0.3582743511964947,0.3595542806707855,0.3610762129275419,0.3625295319815054,0.3647432267294566,0.3644518170368322,0.3641092327698309,0.366025641025641,0.3672091353550549,0.3681980693600286,0.3686069006968314,0.3701271648778939,0.3715170931163849,0.3728275551553354,0.3743762414611695,0.3738371787459925,0.3748201438848921,0.3757907117200165,0.3775118937726336,0.3787525150905432,0.3821750173170168,0.3850968542599687,0.3851174099430546,0.3856998992950655,0.3889152961308109,0.3901647228567993,0.3895884520884521,0.3908092720618137,0.3993944398568676,0.4071207430340557,0.0,1.908116928782919,61.63718437561904,215.4470452187746,337.1611882518371,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95770,40529,379.0331001357419,7351,75.47248616476976,5787,59.72642790017751,2364,24.203821656050955,77.38153749659537,79.72467914890194,63.350937847410606,65.08358763047944,77.0988670881476,79.44314924174316,63.24795418053264,64.98424136709686,0.2826704084477711,281.52990715878445,0.102983666877968,99.34626338258568,62.80318,44.11887724194295,65576.40179596952,46066.86524375373,209.63847,126.23629989414066,218170.6901952595,131085.3491554147,241.07128,114.76842615509965,247295.42654275868,116400.22323198758,3335.262,1489.6650725207978,3443460.7497128537,1516396.274951236,1411.84595,610.1056273044555,1455312.9998955831,618161.1541238964,2330.04746,959.0330662463766,2387375.649994779,961857.8465782142,0.37726,100000,0,285469,2980.7455361804323,0,0.0,0,0.0,17515,182.13428004594343,0,0.0,22717,232.94351049389164,2186748,0,78482,0,0,0,0,0,37,0.3654589119766106,0,0.0,0,0.0,0,0.0,0.07351,0.1948523564650373,0.3215888994694599,0.02364,0.308257117093907,0.691742882906093,25.44506181118817,4.616786587421194,0.3300501123207188,0.1902540176257128,0.2414031449801278,0.2382927250734404,11.142697590858235,5.679829321566463,24.97201908920013,13106.16480022572,64.94424037998509,12.708320326245929,21.52513186289386,15.651684923069489,15.059103267775802,0.5391394504924831,0.7683923705722071,0.693717277486911,0.5748031496062992,0.1058738216098622,0.6996363636363636,0.9029126213592232,0.8501026694045175,0.7388535031847133,0.1396226415094339,0.4891205802357207,0.7159090909090909,0.640196767392832,0.5272391505078485,0.0978456014362657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218254370151,0.0044803049040079,0.0066555740432612,0.0088358063434995,0.0115094454724769,0.0139051477549192,0.0160945080931218,0.0182794272242011,0.0206012794048519,0.0229807436511347,0.0248703707499026,0.027037014226766,0.0290355747480978,0.031228120752852,0.0332951697249125,0.0352840286818341,0.0371799913077671,0.0392872321678466,0.0414909310008102,0.0431260672191912,0.0576896987153397,0.0713336889558295,0.0842306119667439,0.0974074424372353,0.1093359749607444,0.1244874233777214,0.1377534258189641,0.1503859320844585,0.1624903952872876,0.1739945978391356,0.1883685133956922,0.2014796227394652,0.2138012738299676,0.2255381925472626,0.2361436506627069,0.2467782649129799,0.2582134493141519,0.268462411889692,0.2786472509526402,0.2869713474917613,0.2962346192987325,0.3045440198267497,0.3119505933296262,0.3192371277283944,0.3255009107468123,0.3319333423655331,0.3382295950895703,0.3440401984480346,0.3503204505729267,0.3552485750474984,0.3566619084812411,0.357304113209625,0.3587729196050775,0.3594905564802084,0.3602644470584731,0.360601180891036,0.3607715208716032,0.3624626792217592,0.3631121952883779,0.365070583406207,0.3660896798754758,0.3670883569915464,0.3689638513726396,0.3706850053937432,0.3701290867414646,0.370915374947633,0.371699894167787,0.3748936036064437,0.3763724662162162,0.3782005264417324,0.380854278258481,0.3847800492347212,0.386427298192004,0.3864633864633864,0.3927383328580933,0.3958782650371435,0.4017581739666872,0.4059889997962925,0.4024150519516989,0.3896053145760063,0.0,2.727783207022497,60.13470538514711,221.8122663653271,334.5568844939808,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95853,40893,382.3667490845357,7386,75.89746799787174,5717,59.027886451128296,2356,24.151565417879464,77.37299817448195,79.67425556171598,63.35320242165369,65.05719872925961,77.08615928960465,79.38869378361034,63.24938553630974,64.95673731139416,0.286838884877298,285.5617781056452,0.1038168853439529,100.46141786544638,63.25022,44.45046534974237,65986.68794925562,46373.577613368776,209.76127,126.607298364898,218175.132755365,131423.89466374557,245.7248,116.59431377906438,252690.359195852,118736.54722000824,3283.85536,1473.1410940643552,3392736.961806099,1503701.0601858716,1381.71745,595.0179043065467,1425559.14786183,604903.860712189,2315.42834,952.5230079197494,2376109.041970517,959141.7782726114,0.38075,100000,0,287501,2999.394906784347,0,0.0,0,0.0,17582,182.7485837688961,0,0.0,23073,237.08178147788803,2181370,0,78322,0,0,0,0,0,38,0.3860077410201037,0,0.0,0,0.0,0,0.0,0.07386,0.1939855548260013,0.3189818575683726,0.02356,0.317650083558298,0.6823499164417021,25.55374270637792,4.558055844758493,0.3346160573727479,0.1990554486618856,0.237012419100927,0.2293160748644394,11.07103134896874,5.538046772952027,25.08263082212728,13227.209093301535,64.52038842581187,13.311872644788512,21.613000988397744,15.194725448132496,14.400789344493122,0.5476648591918839,0.7688927943760984,0.6952430737062206,0.5874538745387454,0.099160945842868,0.702416918429003,0.9158878504672896,0.8440366972477065,0.7320872274143302,0.1341463414634146,0.501024356931482,0.7111383108935129,0.6513202437373053,0.5425531914893617,0.0910798122065727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0048547133286711,0.0072223405658176,0.0091078935077066,0.0112945529959538,0.0134364820846905,0.0158796489761805,0.0178591474553266,0.0198939398583821,0.022131499785131,0.0245479227498591,0.026685955246391,0.0288166075741226,0.0310441370223978,0.0332666694156942,0.0353996922663857,0.0375964741666494,0.0392622143930366,0.0412153812604492,0.0433543151433179,0.0583401979083031,0.0720197291422839,0.0854206606115842,0.0975133364136598,0.1101129985151173,0.125117512226553,0.1385233221014262,0.150833475080796,0.1637493062374589,0.1754904797111232,0.1888814755827217,0.2019779507133592,0.2152630606544727,0.2267434868644021,0.2375948949279348,0.2490171541213081,0.2599033924208788,0.27033990796269,0.2804810255828464,0.289839804880283,0.2984280476096839,0.3076293098405344,0.3151738996614343,0.3220410070821699,0.3289086978698599,0.3358677034170866,0.3423307197074075,0.3484377785134068,0.3544544959693097,0.3597589183044978,0.361701266642386,0.362412404127352,0.364168303817506,0.3649599048737692,0.3650140819884662,0.3656724437007813,0.3662143933983972,0.3682470768168138,0.3704736806078444,0.3714817732578959,0.372110491427713,0.3737389753245466,0.3745850317266882,0.3756247338577736,0.3765845664433412,0.3755460799958144,0.3754873853211009,0.378002848551986,0.3803329680817221,0.3828489415141729,0.3838328543405866,0.3844921499519385,0.3832834680756254,0.3829770815649355,0.3823108482015075,0.3836807623585467,0.3857120719045405,0.3870500620604055,0.3916103603603603,0.3902627511591963,0.0,2.360089204797702,58.12143392485388,230.14036005512236,327.5018262814584,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95783,41034,384.7551235605483,7345,75.27431798962238,5713,58.9770627355585,2335,24.00217157533174,77.39816222968327,79.72765373428545,63.35848721039546,65.07968145364356,77.11604266347051,79.44538825389733,63.2549355309496,64.97891120145637,0.2821195662127564,282.2654803881193,0.1035516794458644,100.77025218718916,62.97786,44.340559691065664,65750.56116429846,46292.72385607641,211.75552,127.69732753170229,220413.6537798983,132654.66474395487,247.17174,118.07228971213355,253061.46184604784,119604.32915068768,3283.22504,1476.245092475899,3390875.95919944,1504340.825069062,1410.8443,612.0045121084779,1456685.768873391,622696.621393294,2304.27334,956.8705557310104,2369700.21820156,967764.9348137298,0.38075,100000,0,286263,2988.661871104476,0,0.0,0,0.0,17656,183.64427925623545,0,0.0,23195,237.338567386697,2182092,0,78235,0,0,0,0,0,42,0.4176106407191255,0,0.0,1,0.0104402660179781,0,0.0,0.07345,0.192908732764281,0.3179033356024506,0.02335,0.3126531665161873,0.6873468334838128,25.63544367423293,4.601110431047103,0.3311745142657097,0.1900927708734465,0.2391037983546298,0.2396289165062139,10.920224463407376,5.411364677083276,24.788496367242026,13168.078354567086,64.0776475425487,12.611946934861155,21.09751825071973,15.263541624383633,15.104640732584189,0.5455977594958866,0.7790055248618785,0.6955602536997886,0.5944363103953147,0.1044558071585098,0.7093451066961001,0.9203539823008848,0.8677130044843049,0.7425742574257426,0.1476014760147601,0.4944878272852549,0.714859437751004,0.6424619640387276,0.5522107243650047,0.0938069216757741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.0049862169612453,0.0072130016637584,0.0092716711349419,0.0113963299954252,0.0137398986300812,0.0160085596372344,0.0181916500020405,0.0204129588573647,0.022549621444649,0.0244137323402555,0.0266700872242175,0.0286521761471661,0.030784273363524,0.0327745474040166,0.0348367639920266,0.0367772570683715,0.0388224680886363,0.0408521693946479,0.042727566205338,0.0573903062555433,0.0716526868450227,0.0844936045292514,0.0970518682011666,0.1095672341995677,0.1259011818431679,0.1383223562102941,0.1509566475833741,0.16322585468488,0.1747960069909825,0.1889787522750035,0.2029352281453121,0.2151719941763184,0.2264622981624314,0.2373682417207988,0.2485559367046586,0.2596177434822364,0.2698982173986392,0.2799700469717942,0.2893211446376612,0.2978058964364612,0.3053444041632557,0.313069836834253,0.3206377749805191,0.3275120837482694,0.3342613580368582,0.340797077881464,0.3467194138448622,0.3524221655027661,0.3582010721736604,0.3595685877991237,0.3610437895896447,0.3623452088798623,0.3635548744343401,0.3645531643125547,0.3646149134895116,0.3644902743458151,0.3654610558128839,0.3668463842533162,0.3678008832942943,0.3687271362911546,0.3698540493376695,0.3697049924357035,0.3706911988539708,0.371764084337928,0.3720189949381621,0.3717569412835685,0.3744539082880221,0.3746672271262435,0.3756792131043509,0.3775188485263879,0.3788747346072187,0.3807103413654618,0.3781204672112375,0.3815416587946344,0.3836108781598179,0.3830113462128181,0.3803418803418803,0.3828603227601558,0.3892284186401833,0.0,2.533134743980028,59.49247325510355,216.4721162945789,333.4908915716288,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95877,40770,381.4783524724386,7414,76.06620983134641,5715,59.02354057803228,2321,23.81175881598298,77.3584022892406,79.64061354714913,63.35300198276878,65.04142798742329,77.07227756432178,79.35489865300362,63.246877789469885,64.93827491055696,0.286124724918821,285.71489414551365,0.1061241932988963,103.15307686633446,62.53676,44.04701112316966,65226.02918322434,45941.16537143388,209.47868,126.27438737220076,217886.5004119862,131113.58356250456,242.16478,115.19309734317892,249261.9293469758,117541.56105014644,3297.35696,1485.1793598005509,3406584.1025480563,1516966.612344974,1412.3197,617.0188992106553,1458744.1930807182,629243.0605991582,2293.43826,960.0439203102331,2354733.940361088,969497.8487883982,0.38043,100000,0,284258,2964.819508328379,0,0.0,0,0.0,17601,182.97401879491431,0,0.0,22762,234.0603064342856,2183394,0,78387,0,0,0,0,0,41,0.4276312358542716,0,0.0,0,0.0,0,0.0,0.07414,0.1948847356938201,0.3130563798219584,0.02321,0.3063546861015215,0.6936453138984785,25.600371311952447,4.585434357977783,0.3291338582677165,0.1980752405949256,0.2325459317585302,0.2402449693788276,10.922240957145508,5.408196105311663,24.834693313624054,13116.0338646218,64.27699025867284,13.189691666584652,21.1976710855049,14.741237151045498,15.148390355537789,0.542082239720035,0.7508833922261484,0.7028176501860712,0.5756207674943566,0.1172614712308812,0.6787234042553192,0.8908554572271387,0.8658008658008658,0.6952054794520548,0.1640378548895899,0.49732868757259,0.691046658259773,0.649753347427766,0.5419479267116682,0.1032196969696969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136297826241,0.0044380946590874,0.0067146088385349,0.009249763933028,0.0113844277292132,0.0134338839190303,0.0156485594359998,0.0177877505227191,0.020113739624067,0.0221122685776791,0.0242611606457358,0.0263066166369358,0.028428231040999,0.0305720428337773,0.0327606995269845,0.0346198323214802,0.0367335960856117,0.0386484945846504,0.0408657091524649,0.0429064879936743,0.0579840080064218,0.0712345369441658,0.0849234442745533,0.0976583009555812,0.1104779160039185,0.1253433340376082,0.1386619188418698,0.1515222407724454,0.1638663535439795,0.1746411226776161,0.1886475484864475,0.2019255733448723,0.2144014264435674,0.2261058754072551,0.2367139134163908,0.2477642006463895,0.2580087449248204,0.2677561211521375,0.2779738332179695,0.2865082912182991,0.2953732535392237,0.3033728904805374,0.3112667543641341,0.318380376344086,0.3258912276432656,0.3328600180271395,0.3389994229369997,0.3453506321201219,0.3513903326403326,0.3563321900120512,0.3571949637955258,0.3587184583954503,0.359930480981179,0.3607244359375906,0.3607310704960835,0.3609555746984986,0.3616429207479964,0.3630429407401302,0.3646364276030136,0.36525851875739,0.3663839310902559,0.3671865698297416,0.3692252646644076,0.3697550681364075,0.3698709583877048,0.3705920794667364,0.3738991192954363,0.3774108155804865,0.3804481654764836,0.3824455157575999,0.3861345307917888,0.3874986689383452,0.3897907419150285,0.3910956252419667,0.39055178349431,0.3930516886575475,0.3946872052813581,0.392350400987045,0.3937029813318473,0.3985311171240819,0.0,2.278996295318032,62.33543157374852,208.88658411836923,335.5623667053052,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95732,40921,384.3751305728492,7514,77.3409100405298,5929,61.33790164208416,2477,25.477374336689927,77.38965647392791,79.75551096210079,63.34469261111818,65.09347552671328,77.08850640155548,79.45423714585849,63.234095778853856,64.98565902341115,0.3011500723724367,301.27381624230054,0.1105968322643278,107.8165033021321,62.58164,43.99509377701816,65371.70434128609,45956.51796370927,212.91447,127.69562910915045,221782.9565871391,132776.36947705114,243.61622,115.6885098769229,250775.3102410897,118041.10905082706,3425.02692,1529.544320518212,3543962.2278861823,1564539.3445191153,1463.86684,630.6922111589597,1511551.9471023274,642227.1337662613,2442.32178,1011.4124505436856,2513622.049053608,1024693.2271915654,0.38171,100000,0,284462,2971.441106422095,0,0.0,0,0.0,17786,185.1418543433753,0,0.0,22959,236.12794050056408,2185251,0,78402,0,0,0,0,0,41,0.4282789453892116,0,0.0,0,0.0,0,0.0,0.07514,0.1968510125487935,0.3296513175405909,0.02477,0.3067391579213554,0.6932608420786446,25.66508939209914,4.617536098644275,0.324337999662675,0.196660482374768,0.2322482712093101,0.2467532467532467,11.050556360784997,5.507970456594061,26.14377396879296,13203.62246857874,66.35352516917686,13.449118687333042,21.774803007603637,15.23440364768246,15.89519982655773,0.5403946702648001,0.7547169811320755,0.6994279771190848,0.5867828612926652,0.1168831168831168,0.7008426966292135,0.9204545454545454,0.8545454545454545,0.7395833333333334,0.1314878892733564,0.4896781354051054,0.683046683046683,0.6456582633053222,0.5463728191000918,0.1132879045996592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473138319423,0.0040955769796133,0.0063325180892844,0.0087165003962045,0.0107316874688475,0.0129322634515905,0.0149672209704224,0.0173334286093445,0.0195232643715757,0.0217313420613554,0.0237399674036717,0.0259121614684927,0.0283734605341612,0.0303669989290715,0.0323978092025868,0.0343017187031697,0.036428024105867,0.0382723990538241,0.0403363265984867,0.0422714248502214,0.0572260853223078,0.0711414875133449,0.084672850128006,0.097255100001052,0.1100749024158666,0.1261436594988523,0.1402743737466976,0.1534589186888037,0.1652212918660287,0.1771728287801267,0.1911326017424642,0.2044057820479529,0.21638228225289,0.2278926817530542,0.2386785081492731,0.2503018286942171,0.2613618616273622,0.2717054089294546,0.2809940790816905,0.2901460689592014,0.2985340568559164,0.3066180082812829,0.3142860522331567,0.3217687156325998,0.3293820443062573,0.3355474767391706,0.3414856999812253,0.3469954049616232,0.3533510328304086,0.3588636753659921,0.3604024676059373,0.361261447359361,0.362692036645525,0.3636350487430935,0.3649696861626248,0.3648524409304036,0.3660270415756309,0.367442699873669,0.3676809000255689,0.3683628713047819,0.3692477421043774,0.3707317073170731,0.3717809136970814,0.3713071676171307,0.3728145066256222,0.3738864651636667,0.3737506425267005,0.3757589172780167,0.3775080505325737,0.379084704937776,0.3799759859610234,0.3802618764203008,0.3792508309895167,0.3797632684230622,0.3786371315937676,0.3813086331789573,0.3871661037764814,0.3889227023737066,0.3972451790633609,0.4037867078825348,0.0,2.2300145520691173,62.98445518574252,221.5062246945824,344.8046820336736,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95750,40878,383.1749347258486,7527,77.26370757180156,5861,60.51174934725849,2453,25.211488250652742,77.34687979821054,79.7059381092731,63.33382307926016,65.08118575972387,77.04915874784143,79.40792166991278,63.22600773200932,64.97589044722265,0.2977210503691054,298.0164393603246,0.1078153472508347,105.29531250121238,62.75346,44.14957675912971,65538.86161879897,46109.21854739395,211.25199,127.19799409782756,219915.6135770235,132139.29905852786,246.15483,117.51621097565952,252458.32898172323,119171.44276781034,3422.15884,1530.6519121707595,3536415.0391644905,1561526.791626233,1465.75288,636.5918506459132,1513087.1540469972,647363.9881697238,2435.23272,1002.0707596628704,2505596.2819843343,1014599.7541112122,0.38056,100000,0,285243,2979.039164490862,0,0.0,0,0.0,17704,184.1462140992167,0,0.0,23164,237.34725848563968,2184548,0,78392,0,0,0,0,0,44,0.4386422976501306,0,0.0,0,0.0,0,0.0,0.07527,0.1977874710952281,0.3258934502457818,0.02453,0.318313404657017,0.681686595342983,25.383477487419597,4.682040828074807,0.3245180003412387,0.1914349087186486,0.230165500767787,0.2538815901723255,10.955060463036665,5.241543695940832,25.99160314104609,13176.491042235572,65.89048835019285,13.225071061313429,21.366592326387394,14.966050600975173,16.332774361516854,0.536256611499744,0.7638146167557932,0.6971608832807571,0.5767234988880652,0.1223118279569892,0.705110497237569,0.9095744680851064,0.871578947368421,0.702054794520548,0.1967213114754098,0.480852028098799,0.6903485254691689,0.6391030133146461,0.5421002838221382,0.10312764158918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022192047343034,0.0043605240741491,0.0065482233502538,0.0087604296878969,0.011261902824123,0.0134824138001262,0.0153124681415027,0.0176092282564311,0.0200363926315143,0.0222488430192079,0.0242472087515506,0.0263879334243734,0.0286193208695831,0.0305533808562363,0.0326742073976221,0.0348160476343074,0.0368030817662165,0.0389746462508817,0.041029106029106,0.0428602667832932,0.0578031062124248,0.0715727810031905,0.0848650065530799,0.0971685024804506,0.1096414493792289,0.1248454490695241,0.1382855810305169,0.1512412949869757,0.1642558457074586,0.1758052249916987,0.1905786421970976,0.2040505344154931,0.2167380109080637,0.2276911987943254,0.2388125295274509,0.2506279530390714,0.2607187858919033,0.2714404569167116,0.2805942369457401,0.288975953992966,0.2980856038334221,0.3068316147985159,0.3147961781177111,0.3210255549293072,0.3271996307632512,0.332824427480916,0.3392334076058383,0.3454515377861478,0.3509414903260898,0.3568676606412455,0.3585858585858585,0.3592816020714541,0.3603399193889343,0.3615732643355834,0.3626590936124658,0.3622590587766243,0.3624714539456991,0.3639491620295677,0.3652975863960505,0.3668207553931054,0.3681884017079548,0.3697078115682767,0.3713526733007252,0.3736508866406796,0.3745481014193861,0.376031641397495,0.3775792507204611,0.3790695449762444,0.380774697938877,0.3821755909310178,0.3836091337709161,0.3833153928955866,0.384295405094074,0.3879376831713713,0.3861161094800644,0.3880292671224661,0.3883615995021005,0.3890045814244064,0.3915404401257502,0.3882400322190898,0.0,2.644174781910377,63.63772257450436,215.30138778209343,342.03176291919965,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95762,40823,382.354169712412,7428,76.42906372047368,5714,59.188404586370375,2268,23.35999665838224,77.36211040614715,79.72322077454942,63.32787542470121,65.07555166826693,77.09466092356902,79.4541943356926,63.231254855190144,64.98027521694675,0.2674494825781295,269.02643885681243,0.0966205695110673,95.27645132017426,61.61738,43.34393861844544,64344.06131868591,45261.96284770535,206.96798,124.33666072724692,215616.6642300704,129330.36814712486,245.97286,116.62264830248972,254060.94275391076,119608.91409923036,3291.58196,1470.3044178298069,3410525.761784424,1508814.7982610604,1403.38196,610.8819830711346,1452007.6439506277,624504.2972741727,2245.20004,916.2462744842468,2313540.673753681,931652.5076942752,0.3802,100000,0,280079,2924.7300599402683,0,0.0,0,0.0,17287,179.97744408011528,0,0.0,23125,238.64372089137652,2190200,0,78638,0,0,0,0,0,38,0.3968171090829347,0,0.0,0,0.0,0,0.0,0.07428,0.1953708574434508,0.3053311793214863,0.02268,0.3165899795501022,0.6834100204498977,25.699976810530647,4.586641445183452,0.3318165908295414,0.2068603430171508,0.2213860693034651,0.2399369968498425,11.069490971176185,5.473393860132698,23.81390064683905,13196.428011687707,64.00672824790952,13.639763889169355,21.195511741133597,14.244412268492892,14.927040349113676,0.5488274413720686,0.7597292724196277,0.6951476793248945,0.6007905138339921,0.1167031363967906,0.7367636092468307,0.9345238095238096,0.8755458515283843,0.7755102040816326,0.1778656126482213,0.4911959753029956,0.6903073286052009,0.6376912378303199,0.5478887744593203,0.1028622540250447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024821940569182,0.0047153548177743,0.0070855750685209,0.0093073351148683,0.0115456996083617,0.0139426406485517,0.0159994289560092,0.0181634403332516,0.020163599182004,0.0224566074445752,0.0244690342628011,0.0264295912812137,0.0288885916811555,0.0309869024432971,0.0330371241911013,0.0351825813655349,0.0370297501320272,0.0392081591151966,0.0410490426394461,0.042955201183247,0.0571497166000354,0.0709600477042337,0.0838419429937708,0.0963748987769095,0.1089969412509229,0.1246985913109691,0.1385700647077543,0.151256120928252,0.1631517094017094,0.1748514936415689,0.1893079458073965,0.2028568336760091,0.2152965875838962,0.2263971384504315,0.2380313002135106,0.2498670507423,0.2603613058818275,0.2701796622754221,0.2799577987271551,0.2893627742910806,0.2977844145020141,0.3061310435993121,0.3143310330133402,0.3213326297611052,0.3285964145168343,0.3358482192388772,0.3427941857699097,0.3481525792615408,0.3531674589091663,0.3581195227536691,0.359476507534302,0.3610628977601454,0.3622322435174746,0.3637428592089088,0.3654032030216063,0.3652044586866193,0.3652889156550128,0.3665812471253039,0.3667606114954309,0.3678969160479726,0.3686695520206846,0.3694476250641608,0.3711109250031406,0.3725955086338015,0.3741278929894625,0.3766081260927428,0.3788068894718832,0.3805045294413689,0.3803577692037881,0.3823260981707075,0.3836669699727024,0.3854221845534484,0.3850802644003777,0.3838621527250645,0.3841183631426163,0.3879976232917409,0.384227418615314,0.3883534136546184,0.3904371584699453,0.3923705722070845,0.0,1.7723416113645252,59.569493980079805,219.0489914798143,332.1424482415329,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95777,41085,384.26762166282094,7585,78.2233730436326,5878,60.96453219457698,2425,25.068649049354228,77.32840490063373,79.68824922384051,63.31625382636724,65.06438552916586,77.03882730390765,79.39480860542129,63.211319472638905,64.96026294904182,0.2895775967260761,293.4406184192256,0.104934353728332,104.12258012404152,62.06596,43.657712083154806,64802.57264270128,45582.66815953184,214.50076,129.24696303950955,223551.0195558433,134538.2117204648,247.35828,116.89687227071536,255491.26617037493,119969.49795019206,3389.59944,1506.918574166182,3515949.9253474213,1550257.884634288,1467.3414,635.6095504665824,1522329.5885233406,653925.0137993274,2387.12822,973.1508426490884,2469127.4314292576,995014.7083703494,0.3819,100000,0,282118,2945.571483759149,0,0.0,0,0.0,17857,186.0258725998935,0,0.0,23234,239.82793363751213,2183936,0,78431,0,0,0,0,0,43,0.4489595623166313,0,0.0,1,0.0104409200538751,0,0.0,0.07585,0.1986122021471589,0.3197099538562953,0.02425,0.3178981527708437,0.6821018472291562,25.873608095089,4.604272156393278,0.329363729159578,0.1913916298060564,0.242939775433821,0.2363048656005444,10.978029263868352,5.509130916903629,25.554970417903345,13288.087175808174,65.82804755740396,12.963041257843877,21.73130119708268,15.929500782312571,15.204204320164829,0.5486560054440286,0.7662222222222222,0.7009297520661157,0.5658263305322129,0.142548596112311,0.7084527220630372,0.934375,0.8640167364016736,0.6967741935483871,0.2118055555555555,0.49888442659527,0.6993788819875777,0.6474622770919067,0.5295169946332737,0.1244323342415985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021280261037868,0.0045335605184689,0.0070970231084758,0.009248155450314,0.0115257064963072,0.013710071707953,0.015622450644477,0.018060603585576,0.0202521034176063,0.0224376362687193,0.0246430145664408,0.0268605224248398,0.028877896274052,0.0310140598444661,0.0333323013735384,0.0353923757545687,0.0375549919776409,0.0393785715026497,0.0417026052437414,0.0437956964609327,0.058315154425042,0.0728329986613119,0.0860489011910753,0.0993083731001282,0.1121027564696957,0.1277837083698857,0.1413361611876988,0.153363982717153,0.165557679778701,0.1771334827316299,0.1912095723255538,0.2043750608548895,0.2169471611492477,0.2283364682209877,0.2399176682956897,0.2511685089604147,0.2616643046054613,0.2722453573438379,0.2815796346129827,0.2902937434815995,0.299065853291507,0.3080046335841241,0.315909171671227,0.3231099800734641,0.330118459779621,0.3363193287679684,0.3432476186890554,0.3488653902572802,0.3544436941616455,0.3603125909078888,0.3619844751940601,0.3634407415581549,0.3642400011302149,0.3652080739046074,0.3670139044127509,0.3669956039226536,0.3669580419580419,0.3674762407602956,0.3695689477658041,0.371694592946073,0.3716730932004138,0.3721234724646881,0.3738349147703417,0.3759177350187476,0.3769838394086528,0.3782736224596689,0.3803313460215547,0.3826704545454545,0.3834559988731204,0.3845171588188348,0.3850311469402712,0.3845661905777019,0.3846688135379175,0.3832033042680128,0.3878713106197209,0.3875209180014344,0.3841387856257744,0.389532478278858,0.3974719101123595,0.4009489916963226,0.0,1.535982485793647,62.53548264348621,216.53062359192387,349.6308163057062,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95728,40591,380.3589336453285,7367,75.64140063513288,5727,59.21987297342471,2367,24.32934982450276,77.31464774318667,79.6825396896775,63.30648041847581,65.05689941396537,77.03128710411387,79.39863508115677,63.201892936338034,64.95498273691568,0.2833606390727965,283.90460852072863,0.1045874821377736,101.91667704968664,62.87996,44.23543555955584,65686.06886177503,46209.50564051881,209.02829,125.57546240669907,217762.3788233328,130585.34849437894,242.30215,115.16808817776358,249233.79784389105,117310.2377641188,3317.56532,1481.8399473272275,3431806.702323249,1514308.1403828375,1409.60361,606.7589017913486,1453720.4788567608,615144.7197818098,2337.62178,964.361311933328,2404235.960220625,975073.219950098,0.37783,100000,0,285818,2985.730402807956,0,0.0,0,0.0,17454,181.7232157780378,0,0.0,22753,233.8709677419355,2181811,0,78291,0,0,0,0,0,44,0.4596356342971753,0,0.0,0,0.0,0,0.0,0.07367,0.1949818701532435,0.3212976788380616,0.02367,0.3173498324310389,0.682650167568961,25.54605283794393,4.7144305295921125,0.3244281473720971,0.1936441417845294,0.2379954601012746,0.2439322507420988,11.35208298072284,5.687898412297693,24.91802514875368,13144.358669019088,64.1738770116215,12.835049686996838,21.07233428846025,14.964912175344534,15.301580860819874,0.5491531342762354,0.7601442741208295,0.7104413347685683,0.5979457079970653,0.1195418754473872,0.7067557535263549,0.9085365853658536,0.859538784067086,0.7472924187725631,0.1396226415094339,0.5006849315068493,0.6978233034571063,0.6589427950760318,0.5598526703499079,0.1148409893992932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025831940434584,0.0049578732852754,0.007145902271666,0.0093384818615994,0.0115672211200976,0.0135091079506092,0.0153538527458401,0.0174184721569908,0.0195346840308302,0.0214673996498879,0.0236230160357626,0.0257213266249101,0.0278554970375246,0.0298918083462132,0.0319886868019571,0.0342406980470809,0.0362753321528058,0.0383118702460385,0.0406372182014807,0.0427267612677377,0.0567284801403332,0.0703003150743722,0.0836909195824371,0.0965272080940661,0.1083421219152077,0.123666948793906,0.1374694830697378,0.1497843794920939,0.1626579436854595,0.1745256696428571,0.188870315448908,0.2022842034544784,0.2142615895843547,0.2258608973937441,0.2369677654142635,0.2486700798507379,0.2596524988532238,0.2699757459529584,0.2797233030696066,0.2888033549721376,0.2970649651972157,0.3056144999237957,0.3131182540623888,0.320406888766123,0.3266999148522078,0.3335061088485746,0.3399829689182758,0.3458189040537788,0.3515585542418317,0.3568987583950177,0.3590296205498458,0.360835811034027,0.3618040198881643,0.3629308476045957,0.3648242402595469,0.3655041198042134,0.3652332592827674,0.3660432033719705,0.3679628455382084,0.3693990440557813,0.3711642599277978,0.372395884953121,0.373155630181551,0.3739155775740321,0.3739470444835992,0.3741268803139306,0.3759791122715404,0.3773185452017569,0.3791280442674373,0.3797842588893328,0.3798934019481713,0.3805290778622684,0.3796733443919867,0.3815292029935961,0.3825631252977608,0.3832033593281344,0.3827313594791505,0.382493258660029,0.3844649343392008,0.3903011341415721,0.0,2.41003925757363,59.3202701029081,218.2071594707409,333.7789744632957,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95809,40905,383.2312204490184,7477,76.8508177728606,5834,60.25529960650879,2375,24.29834357941321,77.3504688262772,79.6822587913945,63.33176974345843,65.05989480128711,77.0561379324912,79.38987845633152,63.223931284878205,64.95585677952458,0.2943308937859967,292.3803350629868,0.1078384585802254,104.03802176253409,62.32006,43.825654804305,65046.1438904487,45742.73273315137,212.14882,128.12719483323707,220791.54359193813,133105.53600613057,246.53643,117.2487994138668,253588.67121042908,119481.23092755723,3358.85292,1505.8242457654587,3471407.529564028,1537954.5421683402,1398.47784,607.0827397184023,1441195.1069314992,615736.4053916296,2343.1431,972.7007593041368,2400664.6765961447,978872.6247088,0.38063,100000,0,283273,2956.6429041113047,0,0.0,0,0.0,17723,184.32506340740431,0,0.0,23134,237.796031688046,2183064,0,78474,0,0,0,0,0,43,0.4383721779791042,0,0.0,0,0.0,0,0.0,0.07477,0.196437485221869,0.3176407650127056,0.02375,0.3159633960345704,0.6840366039654295,25.710074078596733,4.602643964232247,0.3213918409324648,0.2050051422694549,0.2332876242715118,0.2403153925265684,11.034371063034596,5.413478120662658,25.23890045038928,13219.448219793408,65.75769407228093,14.046183297009744,21.08805958687816,15.194296778572555,15.429154409820454,0.5356530682207747,0.7566889632107023,0.6917333333333333,0.5686994856722998,0.1062767475035663,0.6925207756232687,0.9090909090909092,0.8466386554621849,0.7611464968152867,0.1258278145695364,0.4840546697038724,0.693127962085308,0.6390278770550393,0.5109837631327603,0.1009090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0046338075296837,0.0071653303562366,0.0095201324893571,0.0121142461907764,0.0141268256910635,0.0161541991739329,0.0182174658933093,0.0202241217128133,0.0224392441086747,0.0245380529521543,0.0266573564445904,0.0286404771698889,0.0306388325317459,0.0326722564277095,0.0347175581984067,0.0367801575553048,0.0386262978290858,0.0406131462717588,0.0429007172675126,0.0582516169413728,0.0723292139765384,0.0857103933938339,0.0986772292207314,0.1112035905432171,0.1275046499830909,0.1408803164134157,0.1530966108546263,0.1657004366718981,0.1768727896259779,0.1906068726525253,0.2039505692322662,0.2157143943591582,0.2272762054679216,0.2385384691553619,0.2498282472353345,0.2603303940171894,0.2709376793814085,0.2802557899160618,0.2889996562392575,0.2977134587554269,0.3057102738123098,0.3134529785017521,0.3211806596252293,0.3279499933113621,0.3342180305405706,0.3407734363244219,0.3466988050146025,0.3529373596854358,0.3582407407407407,0.3598994988450472,0.3613427971718957,0.3631082780942151,0.3642110452219048,0.3651974302025728,0.3658124385447394,0.3653063818967709,0.3659782769930612,0.3679300291545189,0.3689818468823994,0.3692325047944947,0.3688752231700059,0.3689357138350893,0.3696423757750022,0.3711542182662539,0.3734336496618256,0.3755329803977679,0.3804787166856132,0.3822556814184197,0.3835403106656551,0.3855730501647748,0.3868885688376807,0.3888572333016777,0.3893351694591079,0.3897615442846328,0.3915992384578772,0.394429055093875,0.3975535168195718,0.4052936311000827,0.407436096049574,0.0,2.444481910539564,63.868306045816375,218.69674985666856,335.27318145572696,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95718,40793,382.5821684531645,7446,76.44330220021313,5833,60.36482166363693,2435,25.031864435111476,77.30949638025908,79.66865041736393,63.31695901961641,65.05900518050879,77.0093253835099,79.36834718183337,63.20740514581479,64.95226362780095,0.3001709967491734,300.3032355305635,0.109553873801623,106.74155270784524,62.458,43.991365956530295,65251.864853005696,45959.11527249868,211.88326,127.54051812730512,220803.3076328381,132687.44450083072,248.25456,118.27781496515934,255760.6092897888,120737.3058244302,3359.09996,1514.0561450046775,3477775.089324892,1550192.1738906773,1414.36362,618.2647977625612,1460911.9183434672,629199.1556055928,2402.0289,991.2931496437084,2471589.4816022064,1003763.357512977,0.3792,100000,0,283900,2965.9938569548044,0,0.0,0,0.0,17695,184.27046114628388,0,0.0,23316,239.9548674230552,2181739,0,78305,0,0,0,0,0,39,0.4074468751958879,0,0.0,0,0.0,0,0.0,0.07446,0.1963607594936708,0.3270212194466828,0.02435,0.3223583460949464,0.6776416539050536,25.45889904730712,4.615613262965051,0.3344762557860449,0.199211383507629,0.2262986456368935,0.2400137150694325,11.298183439528962,5.801690505520393,25.87506396300704,13163.654227301477,65.89920716473131,13.55648292832915,22.205579661042695,14.75688765412858,15.380256921230869,0.5414023658494771,0.7426850258175559,0.7006663249615582,0.5840909090909091,0.1121428571428571,0.7123674911660778,0.9011299435028248,0.846,0.7543859649122807,0.1847826086956521,0.4866455409687641,0.6732673267326733,0.6505858028945555,0.5371980676328503,0.094306049822064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002187541142,0.0047340037304354,0.0066958850742634,0.0089684732266189,0.0115081583896711,0.0137103423005282,0.0157875961881465,0.0178733655210428,0.0201034299497158,0.022044600914943,0.0242829906312142,0.026500877886501,0.0284938662608355,0.0304425289131934,0.0325285424036468,0.0347367877253706,0.0367115858328675,0.0388823779545525,0.0408784766972934,0.0427730610969321,0.0572780150583222,0.0711639104040192,0.0849057593270471,0.0974142735465146,0.1100484018938954,0.1261025912215758,0.1389720082341206,0.1518177463139405,0.1639265455244688,0.1760069489126238,0.1899395597884054,0.2026591022281891,0.2153732301631351,0.2274209788985202,0.2385619115784837,0.2488967734782126,0.2595522187960852,0.2704042543602686,0.2800390900206813,0.2889706809764599,0.2970215624059105,0.3042852293610197,0.3123985738145722,0.3198396601178546,0.3272851096949944,0.3343908159486483,0.3402730802956282,0.3459847316569593,0.3516862826518562,0.3574482731232046,0.3589393775664578,0.3606270094244594,0.3611122891838783,0.3619827523733603,0.3633936030552572,0.3633985721319547,0.3639722275304159,0.364921319000677,0.3659396608070453,0.3669539867916719,0.3675245954264781,0.3692507233363264,0.3712153247631935,0.3710529882097845,0.372218705876625,0.3733249085117026,0.3730864768066547,0.3754291163382072,0.3749955615523914,0.3762610088070456,0.3798410437818716,0.3824333744436699,0.3840966921119593,0.3876369810155888,0.3890321964268654,0.3906719557639139,0.3954898911353032,0.3788068418856904,0.3808724832214765,0.3845854418061502,0.0,2.245800348396381,62.55596687336285,220.69523076614067,341.2880931311093,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95735,41186,386.0970387005797,7549,77.58917846137776,5907,61.11662401420588,2427,24.985637436674157,77.40440741590693,79.76174656236205,63.3594678928421,65.0993890058363,77.1060654967296,79.46209017248526,63.25000858037865,64.99189893657683,0.2983419191773322,299.65638987678744,0.1094593124634499,107.49006925946958,62.0862,43.680836679481935,64852.14393899829,45626.82057709504,212.50798,128.23469873729655,221375.9753486186,133348.31434407114,250.09477,119.02727407189832,257846.43025016977,121621.15055075876,3385.37308,1524.337911962722,3504712.090666945,1561135.5260030522,1469.19468,642.6870234286135,1516402.7785031598,653295.6221854796,2390.3841,993.3036585874776,2463082.362772236,1008274.0411263476,0.3834,100000,0,282210,2947.8247244999216,0,0.0,0,0.0,17792,185.2405076513292,0,0.0,23485,241.8969029090719,2186901,0,78401,0,0,0,0,0,41,0.4178200240246514,0,0.0,0,0.0,0,0.0,0.07549,0.1968961919666145,0.3214995363624321,0.02427,0.3074120603015075,0.6925879396984924,25.446896976754115,4.679671217041177,0.3233451836803792,0.2043338412053496,0.2332825461317081,0.239038428982563,11.192444468411566,5.560090067356826,25.68132112741293,13260.240254797762,66.21318164500914,13.877396335860384,21.598327217201977,15.263606133889375,15.47385195805741,0.5418994413407822,0.748135874067937,0.694240837696335,0.5805515239477503,0.121813031161473,0.7077028885832187,0.9269662921348316,0.8559322033898306,0.7845659163987139,0.1619047619047619,0.4877610599595778,0.6733254994124559,0.6411682892906815,0.521087160262418,0.1103008204193254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025008352992396,0.0047935140613123,0.0069288047558179,0.0091809272330269,0.0112655435014691,0.0134364820846905,0.0159388535031847,0.0182545432282685,0.0203428968448585,0.0226451777948324,0.0248024515481034,0.0269313271684131,0.0292481829116591,0.0313732760662896,0.0335541385501145,0.0357146548961639,0.0376844612437218,0.0395954356846473,0.0416428504619477,0.0434221078834716,0.0581111273516944,0.0724369237853054,0.0855614412335448,0.0985638588670675,0.110990482012796,0.1271650629163582,0.1406110757479312,0.1539911001341367,0.165694506762387,0.1769222520107238,0.1911059892944458,0.2046162835995325,0.2166119172449801,0.2283036612571628,0.2394167812929848,0.250357210106,0.2612441686569496,0.271988033111391,0.2812960903995825,0.2901833255086968,0.2983744161309716,0.306468568224823,0.3149718848934461,0.32200370613904,0.3286666666666666,0.3352482409093145,0.3414143182215998,0.3480377205022622,0.3540551028327512,0.3596885334457634,0.3603560001075529,0.3618451808057198,0.3628517929296485,0.363939682814802,0.3653449325277237,0.3649950233519639,0.3661315626832321,0.3668254228937428,0.3677445819375128,0.3692016296190408,0.3708280900775689,0.3722277325927395,0.3734081452528054,0.3756053811659193,0.3768518071707764,0.3770921187039995,0.3796994629185236,0.3810695693327023,0.3833750837949405,0.3861441455822492,0.3889600878798975,0.3886093565999358,0.3892192838162723,0.3887741836812725,0.3888156655996987,0.3893437759582295,0.3895662910943047,0.3878008975928192,0.3853467561521252,0.382,0.0,2.236438082198429,64.20242272825078,219.1314461319608,340.6785517889495,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95763,40787,382.42327412466193,7560,77.99463258252143,5830,60.451322535843694,2372,24.50842183306705,77.33232137485312,79.6986178329531,63.31916690730778,65.07143311888142,77.04317212110709,79.40455834447918,63.21421101723799,64.96683085885356,0.2891492537460323,294.0594884739198,0.104955890069796,104.60226002786044,61.4009,43.17413304750287,64117.33132838361,45084.12753099097,210.50612,126.316539134846,219389.79564132285,131475.27660458212,241.13408,113.72917113017576,249262.82593486,116907.69406606384,3353.17012,1492.7103625182942,3479171.454528367,1536396.3143576267,1436.29892,615.157002789057,1488329.6053799484,630915.7187915407,2344.15568,965.469341875896,2423550.9748023767,986362.4494430316,0.38021,100000,0,279095,2914.424151290164,0,0.0,0,0.0,17513,182.41909714607937,0,0.0,22712,234.56867474912025,2191962,0,78657,0,0,0,0,0,51,0.5325647692741455,0,0.0,1,0.0104424464563557,0,0.0,0.0756,0.1988374845480129,0.3137566137566137,0.02372,0.3111305872042068,0.6888694127957932,25.40906561353834,4.634354518594963,0.3332761578044597,0.1943396226415094,0.2325900514579759,0.2397941680960549,10.90000519232079,5.307514300853912,25.13690952736101,13182.725305204667,65.46906571696654,13.199286325876653,21.772127536146627,15.169783947528671,15.327867907414584,0.5524871355060035,0.7899382171226832,0.6984045290787442,0.5899705014749262,0.1208869814020028,0.7054845980465815,0.9197530864197532,0.8622222222222222,0.7278911564625851,0.1482889733840304,0.5072238275172261,0.7379480840543882,0.6490288010716678,0.551789077212806,0.1145374449339207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0048788404385884,0.0070668507838518,0.0091775754126351,0.0111906893464637,0.0131722374466437,0.0151240107693562,0.0172334582282616,0.0195695516589131,0.0216113841113841,0.0238759149529452,0.0263541538335181,0.0283399144455412,0.0305683152409005,0.0324993551715243,0.0345928850486801,0.0365921845554888,0.0385724660234464,0.0406547155105222,0.0426074820863189,0.0567670546479461,0.070905438490029,0.0843463212543919,0.0971462819650067,0.1095377672810088,0.1250502400947686,0.1375505310401171,0.150345928685471,0.1625408488007005,0.1746384037226457,0.1883858182914746,0.2017269549974572,0.2146089415859893,0.2266552923420172,0.2379967206259422,0.2491140249844954,0.2597783754226602,0.2694943674810655,0.2794443120296911,0.2891426869501466,0.2978538685928601,0.3060539034979929,0.3137923279953603,0.3209730014865966,0.3279053093366063,0.335207585790207,0.3413000475749305,0.3474521279979642,0.3534044978754275,0.3597016895459345,0.3610280449365554,0.3631054856969714,0.3651050991780976,0.3654794441311295,0.3660808618919361,0.3661840046630058,0.3658478454302784,0.3663851990848188,0.3672327022493067,0.3677917794468245,0.3679200829328056,0.3694640085949624,0.3703484937979917,0.3718211510305214,0.3738668864220272,0.3751575630252101,0.3758137134008201,0.3778497491585699,0.3803190548618725,0.3823139632946468,0.3837423030971418,0.3862339898826821,0.3891304347826086,0.3930087198086272,0.3956439393939394,0.3948559180757323,0.3962321948230969,0.3949817887494941,0.3885525591634562,0.3934108527131782,0.0,1.5785459884764343,59.378534983466935,229.11857819348504,340.6388974553241,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95724,40979,383.7386653294889,7537,77.48318081149972,5801,60.00585015252183,2354,24.12143245163177,77.41699606751023,79.77009588966982,63.36600846061516,65.10046730825248,77.12897860634875,79.48413441235527,63.261778325831095,64.99995909512002,0.2880174611614734,285.9614773145438,0.1042301347840677,100.50821313245706,61.74564,43.47050754654075,64503.82349254106,45412.33916942538,213.42553,129.03968428271344,222380.0405331996,134224.6712242629,252.84665,120.66723415162257,260658.85253436965,123233.7523490525,3335.74544,1494.3417577874654,3452602.189628515,1528942.8333411303,1435.53403,622.756211656396,1482645.6687977936,633560.989570426,2305.40218,951.3523422542252,2365461.9113284023,957478.3052165709,0.38081,100000,0,280662,2931.9919769336843,0,0.0,0,0.0,17763,184.95883999832853,0,0.0,23664,243.8155530483473,2187104,0,78451,0,0,0,0,0,55,0.564121850319669,0,0.0,0,0.0,0,0.0,0.07537,0.1979202226832278,0.3123258590951306,0.02354,0.3084932881696148,0.6915067118303851,25.846148158986203,4.623115216565553,0.3413204619893122,0.1901396310980865,0.2409929322530598,0.2275469746595414,11.410118688745811,5.8915254556404015,24.918210086334668,13255.751152455568,65.10605815434224,12.832046216010642,22.230258119562684,15.689243628584284,14.354510190184604,0.5552490949836235,0.7533998186763372,0.7,0.5951359084406295,0.1303030303030303,0.7229254571026723,0.9261363636363636,0.8521560574948666,0.7431192660550459,0.171875,0.5007992692395524,0.6724367509986684,0.6503683858004019,0.5499533146591971,0.1203007518796992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0045588548156703,0.0068058260305095,0.0092405487464332,0.0117537009923539,0.0139355442903967,0.0160027724548456,0.018075117370892,0.0202546651133321,0.0224150101793405,0.0250338156330696,0.0271762556702723,0.0293691341399479,0.0314916842593069,0.0335888257321765,0.0355057712378452,0.037612978703579,0.0395370063060073,0.0416653675469501,0.0434714669666854,0.0587977320427278,0.0727843465522653,0.0864465636441842,0.0995120104328804,0.1115423557205534,0.1267952704274806,0.1403706021489409,0.1538682588843832,0.16610227430537,0.1773953139241863,0.1919266963843487,0.2051362490669724,0.2178364161975351,0.2296861858417712,0.2403291548104283,0.2514105542648523,0.2621372208104855,0.2721418697953541,0.2818916743199882,0.2910915791160246,0.2997514019772215,0.3073255107288112,0.314069133524911,0.3207908697891093,0.3277128324653726,0.3344338228047699,0.3412041321693889,0.347356105501437,0.3527477932230592,0.3582794563926639,0.3594856604281675,0.3606676941707492,0.3617720020296555,0.3629047432946864,0.3646278138995105,0.365981910164035,0.3656239115980116,0.3662849831031202,0.3672692511223775,0.3686161963671366,0.3682752424094942,0.3692222639050684,0.3707353897125123,0.3729995529727313,0.3746870184899846,0.3755192684519922,0.3767127197990408,0.3791639143153723,0.381707017112337,0.380833134589395,0.3821319612039525,0.3825235485072641,0.3852412488174077,0.3886328725038402,0.3901657874905802,0.3918710747718924,0.3918504901960784,0.3923154701718908,0.3851851851851852,0.3868391023202738,0.0,2.3290043338894293,62.69319661538285,217.0420216662218,334.0851472906708,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95695,41081,386.3420241391922,7526,77.52756152359058,5878,60.83912430116517,2450,25.23642823554,77.3508434030137,79.74235839189178,63.31502979323547,65.0834351416209,77.0511716939329,79.44152482352605,63.20682748160411,64.97763315452312,0.2996717090807976,300.83356836573216,0.1082023116313593,105.80198709777731,62.66304,44.11621392527828,65482.04190396572,46100.85576600478,213.58688,128.27199874761055,222620.37724019017,133467.46303109938,252.23223,119.92824776168769,260185.38063639688,122683.12060693272,3397.45776,1521.6741716836375,3517829.562673076,1557660.7050354122,1430.60151,618.0861139160378,1477945.890589895,628878.1272961355,2419.3043,998.174087331422,2493418.402215372,1012148.5451704796,0.3817,100000,0,284832,2976.4564501802606,0,0.0,0,0.0,17869,186.13302680390825,0,0.0,23607,243.27289827054707,2180502,0,78244,0,0,0,0,0,40,0.4179946705679503,0,0.0,0,0.0,0,0.0,0.07526,0.1971705527901493,0.3255381344671804,0.0245,0.3309361594751451,0.6690638405248549,25.44468080105992,4.576032942791597,0.3331064988091187,0.1907111262334127,0.2320517182715209,0.2441306566859476,11.006015301278676,5.479806460744109,26.00712032859293,13223.3285817718,66.05477081490112,12.955975904101813,22.047544096639943,15.236404889284524,15.81484592487483,0.5292616536236815,0.7627118644067796,0.6726251276813074,0.5659824046920822,0.116376306620209,0.7001385041551247,0.9476744186046512,0.8418891170431212,0.7328990228013029,0.1633986928104575,0.4736129905277402,0.6808236808236808,0.6165873555404486,0.5175023651844843,0.1036315323294951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.0049487379704089,0.0071668578505517,0.0092792096918448,0.0115668680949765,0.0138037122308021,0.0158728539513817,0.0180668750127663,0.0201879710782258,0.0225210462710718,0.0245103066352169,0.0265298576446662,0.0285017794326387,0.0305078459049836,0.0325094174105991,0.0343006006223315,0.0362400671342581,0.0381549447812007,0.0400162270117333,0.0420801367578385,0.0571536003008084,0.0719640650849161,0.0853984948200396,0.0978275735100731,0.1102355559775098,0.1257617435463394,0.1393211200033965,0.1523831835413383,0.1643276291458683,0.1763740154945597,0.1908621563069229,0.2039576950972644,0.2168061192292208,0.2289797347572985,0.2399075246325755,0.2514165326828186,0.2626725023446921,0.2734273843971311,0.2824526330137671,0.2913049959294125,0.2996514065341008,0.3078535871156662,0.3151107107296951,0.3222422278237906,0.3289460879719735,0.3354800503368125,0.3421092184368737,0.3480907863565733,0.3540981057759581,0.3592535814346884,0.3604484861568352,0.3616528606673742,0.3626889666064982,0.3638401897818665,0.3638943786498655,0.3645389636257776,0.3644862774925524,0.3655935183815675,0.3672487587741825,0.3669005512994917,0.3680411983610871,0.3687795797936593,0.3693553802249454,0.3697153104685048,0.3720357995802475,0.3729602510460251,0.3726886805891906,0.3736626809314034,0.3755185263305913,0.3788551494489812,0.3816950077293807,0.3824909362337385,0.3826598368431038,0.3815264127764127,0.3829442591710338,0.3839285714285714,0.3802204626610774,0.3797852947133887,0.381957773512476,0.3888018794048551,0.0,2.3115626035635186,63.93827480595744,216.89201997768933,342.38952295538536,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95722,41005,384.4466266897892,7498,76.96245377238253,5814,60.142913854704254,2268,23.32797058147553,77.26691653433518,79.62758697932486,63.2951211478972,65.03965813921482,76.98522051596382,79.34290294477793,63.19205241711721,64.93746622174203,0.2816960183713632,284.6840345469275,0.103068730779988,102.1919174727941,62.2457,43.79341051645105,65027.579866697306,45750.622131224845,210.8271,126.7021823354993,219656.9440671946,131772.3222827556,246.8016,117.85236033037202,253757.004659326,119987.35926252411,3331.04456,1498.4096910843657,3449127.4733081213,1534588.6327953504,1404.42253,607.6915454198221,1452007.8351894026,619669.4129038487,2234.013,934.3328882846868,2300910.511690103,950923.4320795132,0.38179,100000,0,282935,2955.799084849878,0,0.0,0,0.0,17554,182.75840454649924,0,0.0,23172,237.9181379411212,2182326,0,78388,0,0,0,0,0,43,0.4492175257516558,0,0.0,0,0.0,0,0.0,0.07498,0.1963906859792032,0.3024806615097359,0.02268,0.3095928400352956,0.6904071599647044,25.89156831525124,4.514624524517655,0.3410732714138287,0.197282421740626,0.2373581011351909,0.2242862057103543,11.195748499449529,5.739369168376438,24.462137022501903,13273.639787864318,65.66226529403527,13.270384224187262,22.43864230639245,15.370783264531116,14.58245549892444,0.5540075679394565,0.7523975588491717,0.7095310136157338,0.5760869565217391,0.1196319018404908,0.7034434293745608,0.913946587537092,0.885480572597137,0.7075471698113207,0.1254480286738351,0.50557959462537,0.6851851851851852,0.6519410977242303,0.536723163841808,0.1180487804878048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0044713015441705,0.006636359946422,0.008959681433549,0.0113601692329597,0.0135827232647409,0.015811203425251,0.0180377905493002,0.0204859797798063,0.0226621356043236,0.025032546410669,0.0269701449632458,0.0289680703378065,0.0310237209925118,0.0332002434822082,0.0351557250803692,0.0373005270951774,0.0393729379785446,0.0411421681236551,0.0431357839459864,0.0580876901711409,0.0722322821046902,0.08534461047683,0.0974380556578462,0.1098368957440972,0.1256732875480163,0.1388762088769519,0.1522125778795463,0.1646885224866876,0.1759781033649975,0.1909515237099399,0.2040674807406845,0.2166479729067526,0.2279969775616807,0.2392921290123524,0.2514735428298682,0.261788945173158,0.2724670993329727,0.2822621874325445,0.2906103447880476,0.2988457842762708,0.3071095707561529,0.3147246603413761,0.322947535122554,0.3295548528338604,0.3353700686318076,0.3420808349431747,0.3487049341308201,0.3546242061379014,0.3601155380069694,0.3616661480810076,0.3631623352374102,0.3647511965787759,0.3660405840856968,0.367117150750392,0.3671338364392422,0.3685502119386812,0.3690726079698527,0.3700511020492438,0.3718718538760247,0.3730920891270305,0.3739097534748496,0.3758535399446124,0.3779179810725552,0.3792367227115025,0.3805681848046043,0.3808989087558665,0.3820739703354764,0.3844999464036874,0.3858532630725577,0.3859811784340086,0.3886302111532214,0.3875735858715127,0.3896945387226165,0.3921027592768791,0.391054771585745,0.3892576014817101,0.390403936846422,0.388205701509223,0.3858206032119076,0.0,2.277986042725108,63.02805630652976,219.60950802509447,337.1691930645544,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95713,40687,382.0797592803486,7584,78.1085119053838,5825,60.367975092202734,2371,24.521224911976432,77.288290147924,79.65737429191775,63.294707477804174,65.0439024280059,76.99789418122799,79.36292119845126,63.189233932680224,64.93898550446808,0.2903959666960105,294.45309346648685,0.1054735451239494,104.91692353781444,62.36802,43.83682489553243,65161.493214087954,45800.28302898502,212.06888,127.78332343914288,221037.14228997103,132976.42267940915,245.53984,116.60222242062808,253141.6944406716,119203.5186235754,3362.42784,1504.2635896758222,3486535.538537085,1545143.825473887,1460.20345,635.015705384806,1514603.1678037466,652455.137112833,2349.56206,969.684838275874,2431108.522353285,992093.6125294112,0.37928,100000,0,283491,2961.886055185816,0,0.0,0,0.0,17734,184.7815866183277,0,0.0,23018,237.1569170332139,2179458,0,78295,0,0,0,0,0,40,0.3970202584810841,0,0.0,0,0.0,0,0.0,0.07584,0.1999578148070027,0.3126318565400844,0.02371,0.313147708827569,0.686852291172431,25.90016124802791,4.5843542944172935,0.3301287553648068,0.1943347639484978,0.231587982832618,0.2439484978540772,11.117205358248995,5.533989421816453,25.260183824201707,13219.466806609227,65.46238075162763,13.082256863840064,21.6115882285759,15.04498707327028,15.72354858594138,0.5469527896995708,0.7579505300353356,0.6931877275091004,0.6189770200148258,0.1125967628430682,0.6937269372693727,0.896551724137931,0.8434579439252337,0.7913907284768212,0.1764705882352941,0.5024608501118568,0.7035670356703567,0.6501672240802676,0.5692454632282713,0.095067264573991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268191899857,0.0042781399215336,0.0060681089418354,0.008411385846929,0.0107599056219998,0.0128501461169546,0.0150588283273179,0.0172408513244526,0.0194727534780075,0.0214910709717034,0.0237768257937565,0.0259181704337829,0.0279659884229033,0.0297322348094747,0.0316142341413099,0.0338459312540046,0.0360016152579753,0.0381809313282895,0.0401801501945039,0.0422207862592237,0.0576414926838438,0.0719184177738689,0.0853877396807405,0.0986993033485572,0.1109093787934765,0.126688688434337,0.1406561902739435,0.1538027208710196,0.1653283149599563,0.1770605162564961,0.1913080987814084,0.2042795232936078,0.2163978348236165,0.2277355639739856,0.2389249917391783,0.2500998668442077,0.2613616031490428,0.2712745562397095,0.2804286982046556,0.2895008843053035,0.2983074834982541,0.3061983228757403,0.3144559296488375,0.3214290005888078,0.3283620280001462,0.3344790069729489,0.3408474065138721,0.3463537343736033,0.3521289735422219,0.3590229298856817,0.3606218596358528,0.3621782916822081,0.3635720050405652,0.3644748500297761,0.3655492953536682,0.3655477058995552,0.3655871218146534,0.3669107460914308,0.3683125450984434,0.3692255190746462,0.3713310193918358,0.3728351858111466,0.3748444125651357,0.3763899809053128,0.3781912069880797,0.3799801317578166,0.3797152922979979,0.3815447926559037,0.3822852896422378,0.3846215490643908,0.3867785358657569,0.3856159965598796,0.3869739097314797,0.3893030046876201,0.3904779826872412,0.3956434237007221,0.3919475369833765,0.3890012131014961,0.3924291938997821,0.3932370820668693,0.0,1.9521451386878537,60.152467218529495,223.76510332800564,342.847263967208,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95838,41052,385.5568772303262,7568,77.92316200254596,5847,60.51879212838332,2359,24.311859596402265,77.36488025655099,79.67944646180123,63.35773544642036,65.07114122095683,77.08665155825757,79.39851337581796,63.25734367426403,64.97175880857979,0.2782286982934181,280.9330859832784,0.1003917721563283,99.38241237703949,62.1291,43.7861480865398,64827.20841419896,45687.66886468812,212.62354,127.500069682395,221370.2080594336,132550.0424491277,248.8537,117.81422264147233,256192.3036791252,120335.81836902036,3410.08188,1513.7020577550231,3532574.678102632,1553839.9150180777,1436.69241,613.0146304533209,1489502.994636783,630054.989099648,2337.74698,955.8311386922566,2412021.9745821077,974579.3149762418,0.38193,100000,0,282405,2946.6912915544985,0,0.0,0,0.0,17670,183.86235105073143,0,0.0,23408,240.89609549448028,2189142,0,78563,0,0,0,0,0,46,0.4695423527202154,0,0.0,0,0.0,0,0.0,0.07568,0.1981514937292174,0.3117071881606765,0.02359,0.314504969178513,0.685495030821487,25.44411620425525,4.6868961571078165,0.33658286300667,0.1920643064819565,0.2250726868479562,0.2462801436634171,11.04416408851229,5.382092335099418,24.97547721393362,13221.04316134823,65.68490031846123,13.103481027032968,22.15733618582324,14.650504913656654,15.773578191948358,0.5435265948349581,0.7791629563668745,0.7017276422764228,0.574468085106383,0.1152777777777777,0.7082111436950147,0.9248554913294798,0.8791208791208791,0.7233333333333334,0.1102661596958174,0.4934195850992638,0.7142857142857143,0.6483807005948447,0.530511811023622,0.1163976210705182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017725108882,0.00482582424267,0.0070724084747138,0.009192296753748,0.0111448937879419,0.013358856351566,0.0154029643825562,0.0176919778671621,0.0198008668629375,0.0216490096729617,0.0238080596892551,0.025902322383342,0.0277497995847807,0.029672704816797,0.0317170717628383,0.0338288427789821,0.0357774536879014,0.0377864809979692,0.0400996781227286,0.042032981324455,0.0571056062581486,0.0709291022545545,0.0844306170977237,0.0976657251162937,0.1094882055602358,0.1245578655066465,0.1383507229489963,0.1514684467309389,0.1645102452240509,0.1769065187358771,0.1906078239451011,0.2041286138881383,0.2164528498647577,0.2279452712958211,0.2389051872850534,0.2505777630342234,0.2618042483041313,0.2718881590028634,0.2806141512959,0.2899703901864618,0.2980932472542068,0.3069719650175729,0.3152626105044201,0.3222117213575624,0.329585877839426,0.3370771295920001,0.3433666387384796,0.3488032134640074,0.3543378404606327,0.358980780891619,0.3603493285249078,0.3618997811755962,0.3632990505212962,0.3649051686694657,0.3654880574553365,0.3656273997849792,0.3661098838225711,0.3681190012863221,0.3692926100250799,0.3697752082734846,0.3712747875354107,0.3719859710653222,0.3720944961682184,0.3732476898805499,0.374495638937882,0.3766584508888772,0.3770308924485125,0.3791139240506329,0.3826317651220375,0.3848994500863003,0.3851872373828323,0.3845281796588209,0.3860438218852406,0.3874223602484472,0.390089311437626,0.3901469525415562,0.3887937743190661,0.3879114055061064,0.3900669642857143,0.4028048305414881,0.0,1.9055439643841725,60.51429244006627,224.18947908451932,344.039204360917,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95634,40601,380.115858376728,7464,76.79277244494635,5824,60.27145157579941,2411,24.792437835916097,77.2563444549925,79.66691655461398,63.27473565930678,65.0558458139134,76.96361513480089,79.37425659480745,63.16834622604469,64.95249560218205,0.2927293201916114,292.65995980652804,0.1063894332620876,103.35021173133896,62.304,43.84055954343369,65148.37819185645,45842.02223417789,208.97418,125.28750428350924,217892.0885877408,130384.84668999442,239.18425,113.85215003679102,246256.82288725767,116036.7330178678,3365.54292,1499.4611645954449,3483535.311709225,1532260.9161965908,1463.27302,626.5915850893177,1512545.8832632746,637712.1697711251,2390.43454,981.6997801773304,2459531.714662149,991844.343477887,0.37994,100000,0,283200,2961.289917811657,0,0.0,0,0.0,17529,182.6442478616392,0,0.0,22538,231.8840579710145,2182543,0,78347,0,0,0,0,0,34,0.3450655624568668,0,0.0,0,0.0,0,0.0,0.07464,0.1964520713796915,0.3230171489817792,0.02411,0.3116438356164384,0.6883561643835616,25.73019354578236,4.60179855889833,0.3282967032967033,0.1914491758241758,0.2307692307692307,0.2494848901098901,10.956121179454843,5.296458401630113,25.57595355857197,13226.84677530014,65.19262590417101,12.8070977805876,21.68080137824365,14.88546340892518,15.819263336414576,0.5410370879120879,0.7614349775784753,0.7065899581589958,0.5803571428571429,0.1176875430144528,0.7223858615611193,0.9347826086956522,0.8725701943844493,0.7751677852348994,0.1636363636363636,0.4858934169278996,0.691046658259773,0.6535541752933057,0.5248565965583174,0.1069609507640067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978021978021,0.0044190831416032,0.0068500796638894,0.0091432751211483,0.0110692847695594,0.013396086101688,0.015556144932267,0.0176958600678409,0.0199762698688705,0.0223123732251521,0.0245033656214086,0.0265859599001099,0.0289391053688165,0.0310647379653782,0.0330458137492898,0.0352235099337748,0.0371019240338364,0.0394232467303117,0.0416341481180865,0.0435490095859975,0.058433143119918,0.0722127935969157,0.0850192652941238,0.0976356899237862,0.1099362627157992,0.1252209064838037,0.1388028019528762,0.1522831828250127,0.1649493351575527,0.1766378709019692,0.1905865611625575,0.2045242789972048,0.2166998878105632,0.227865025699475,0.2389235096233386,0.250183166448347,0.2610154703177959,0.2709350166262751,0.2808652851507883,0.2900835168869309,0.2989818637228071,0.3078023498510823,0.3155640453704143,0.3225895548377025,0.3293945669387257,0.3360115699823236,0.342570281124498,0.3489057615006699,0.353986439092822,0.358982162705764,0.3598680920652511,0.3607874037517798,0.3624077405828103,0.3631155764281664,0.3644211061741693,0.3646396048772958,0.3652119839915812,0.3668700699508855,0.3685200200113858,0.3693084482914074,0.3709103302029688,0.3709754733562355,0.3716317761361472,0.3720741625177409,0.3725818181818182,0.3730661133145964,0.373516534162922,0.3740746624305004,0.3749336916928953,0.3767739356386168,0.380537066789075,0.3823229886905719,0.3834988540870894,0.3866840330983757,0.3904993454273424,0.3924080664294187,0.3921300516560316,0.3876767676767677,0.3840915281939526,0.3877630553390491,0.0,2.407876165044235,59.7519168822181,217.09833927637945,347.9939742207315,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95697,40673,381.3076689969382,7446,76.60637219557562,5762,59.67794183725717,2399,24.72386804184039,77.32722884548278,79.70399365097371,63.32110870231941,65.07602496436019,77.03396817120557,79.40845755507549,63.21473607794916,64.97112251464476,0.2932606742772066,295.53609589822827,0.1063726243702518,104.90244971542496,62.69142,44.08234549201681,65510.32947741308,46064.50096869998,211.68207,127.76119579823512,220688.31833808796,132993.95571254595,243.232,116.08584812575592,250658.5890884772,118648.37002759696,3331.84772,1497.277237304848,3452550.445677503,1535488.8003854349,1395.24359,608.3121066374509,1444585.3266037598,622269.5974141833,2362.35344,973.5355972076484,2436299.654116639,990393.5573476984,0.3794,100000,0,284961,2977.742248973322,0,0.0,0,0.0,17697,184.39449512523905,0,0.0,22809,234.8453974523757,2181059,0,78319,0,0,0,0,0,55,0.5747306603132805,0,0.0,0,0.0,0,0.0,0.07446,0.1962572482867685,0.3221864088100993,0.02399,0.3091140854047163,0.6908859145952836,25.59426458325439,4.531783539761852,0.328531759805623,0.1992363762582436,0.236029156542867,0.2362027073932662,11.121780119285974,5.606807447515666,25.51869607165604,13143.7556008254,64.68954115246645,13.30427778055155,21.32088814759079,15.0883281879155,14.976047036408612,0.5390489413398125,0.7439024390243902,0.7073428420496566,0.5698529411764706,0.1013960323291697,0.690947666195191,0.9127906976744186,0.8532494758909853,0.6962025316455697,0.1299638989169675,0.4896504139834406,0.6716417910447762,0.6581920903954802,0.5316091954022989,0.0940959409594096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348796241926,0.0045504758236969,0.00687836055595,0.0094254344536193,0.0117753531080627,0.0139289096148167,0.0162135704525523,0.0182917487974017,0.0203096557789458,0.0224165651145405,0.0246333709363142,0.0267960766189082,0.0288514945177017,0.0309840288511076,0.0330560601056803,0.0352230656270036,0.0372649572649572,0.0392122256597662,0.0410035573862572,0.0428931787858572,0.0578668644306798,0.0720572690452019,0.0853088025509776,0.098122139813792,0.1103810498117426,0.125612194167363,0.1391476898915511,0.1521204442125661,0.1643484392026152,0.1764043377060785,0.1898601925852523,0.2034657805582915,0.2159443145358638,0.2270649225654038,0.2378415856839417,0.2489141996099982,0.2595482042009866,0.2699075219944648,0.2788253056498394,0.2878392005867253,0.2959646968889712,0.30385601704938,0.3121216787689975,0.3197241379310345,0.3267483304341479,0.3328848290334527,0.3393007133275665,0.3452913654848867,0.3507162505838999,0.3558279774656828,0.3573570328750101,0.3578707853547542,0.3593231351610944,0.3608814629273025,0.3612291452341548,0.3612564639251416,0.3611172935677721,0.3618417805853032,0.3621997363329738,0.363512837016377,0.3648377226737747,0.3659580369702613,0.3677404432482442,0.3677778776170365,0.3693414391939351,0.3704687048184853,0.373348270711249,0.3759386584708976,0.3771973173314507,0.3797052699022906,0.382142692431859,0.3851413189771198,0.3895241137016927,0.3915204224258425,0.3901077752117013,0.3937341236240474,0.3943860749568763,0.3952765692977004,0.3897349125775521,0.3941778127458694,0.0,2.108626333275783,62.6638062616157,210.35802336635408,338.7375255404695,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95783,40959,383.4292097762651,7512,77.28928933109215,5866,60.71014689454287,2367,24.28405875781715,77.38146625236273,79.70337835645026,63.35451413110488,65.06738278699227,77.08934603515196,79.41266004174402,63.24718135783094,64.96364764129021,0.2921202172107655,290.71831470623977,0.1073327732739386,103.73514570206056,62.5889,43.99957397147587,65344.4765772632,45936.72569399148,210.77319,127.07680198287144,219475.2617896704,132094.00622539638,250.50507,119.07414531507068,258903.1352118852,122260.77149321556,3367.93232,1518.148195232429,3486526.1685267743,1555302.334686144,1435.93153,622.2239727961628,1486592.412014658,637060.0762099355,2332.81928,970.4969837784482,2395849.9107357254,978810.6393708328,0.38179,100000,0,284495,2970.2034807846903,0,0.0,0,0.0,17607,183.26842967958825,0,0.0,23591,243.58184646544797,2182626,0,78434,0,0,0,0,0,35,0.3549690446112566,0,0.0,1,0.0104402660179781,0,0.0,0.07512,0.1967573797113596,0.3150958466453674,0.02367,0.3225643614336194,0.6774356385663807,25.184605174880137,4.552215371037504,0.3285032390044323,0.2009887487214456,0.237981588816911,0.232526423457211,11.290900818300932,5.776852226536645,25.22224223826997,13204.456893357656,66.14835996502735,13.743054606703662,22.028283463155248,15.3904414908885,14.986580404279945,0.5552335492669621,0.7616624257845632,0.7223663725998962,0.5773638968481375,0.1180351906158357,0.7034722222222223,0.927170868347339,0.838,0.75,0.1428571428571428,0.5070040668775418,0.6897810218978102,0.6818500350385424,0.5309090909090909,0.1114206128133704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781119008565,0.0045806477765616,0.0069587445856706,0.009159964253798,0.0117441304767811,0.0139768308325019,0.0159409654272667,0.0180818171613996,0.0200858193706579,0.0222110820101489,0.0242695570216776,0.026223991463865,0.0284254986794372,0.0305120339297111,0.0327329711228182,0.0349781064111037,0.0370048429156835,0.0391374215955626,0.0412931240455834,0.0433655407938028,0.0576786608782768,0.0717948181323511,0.0848943802311678,0.0977891782218811,0.1094863576940918,0.1247950754651125,0.1383505701405462,0.1507722768061484,0.1633769119029308,0.1751669865231422,0.1899794378236389,0.203339605909199,0.2167690718286118,0.2279534837926243,0.2391024441778824,0.250864438336732,0.2609195658970122,0.2715904870170068,0.2819388763330342,0.2907371317207383,0.298576277469504,0.3059398170381736,0.3142132821569882,0.3210117898221332,0.3280414275989497,0.3351540633515406,0.341621283255086,0.3478515500668406,0.3531914341673476,0.3580589346330123,0.3593832135973366,0.3606451257471834,0.3619392981614482,0.3627060170756809,0.3639373108065791,0.364253880436453,0.3643995175828361,0.3659046052631579,0.3671785390238474,0.3681783243658724,0.3690076364523331,0.3693656258656852,0.3710192420804974,0.3732539860768021,0.3758925125434195,0.3768335730160805,0.3766675236381295,0.3771266540642722,0.3784164553395323,0.3802484918700811,0.3817623326609206,0.3834959219574604,0.3833123425692695,0.3853301850864498,0.3860531309297912,0.3854601886116748,0.387601657204235,0.3811750355763366,0.3870431893687707,0.3920432599459251,0.0,2.0207107448837105,63.896263892395375,228.4207090578409,329.05578784421886,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95765,40606,380.2850728345429,7458,76.75037853077846,5731,59.35362606380202,2330,24.04845193964392,77.31912755708531,79.67156888897102,63.32066847763053,65.05972434312854,77.03874390686089,79.38677093642605,63.218764348245394,64.95821607541497,0.2803836502244223,284.7979525449773,0.1019041293851401,101.50826771356948,62.56888,44.01817236274545,65335.85339111366,45964.780830935575,210.61811,126.66626880507178,219459.5520284029,131796.01167696746,243.15236,115.25804071307644,250864.11528220124,117953.2449843276,3307.375,1481.841467062308,3427316.451730799,1521103.1474505828,1427.42685,620.1512230494894,1476204.2395447188,633228.5940056274,2306.74004,949.683390682298,2382200.281940166,967671.722446362,0.37847,100000,0,284404,2969.8115177778936,0,0.0,0,0.0,17614,183.4281835743748,0,0.0,22772,234.7621782488383,2184030,0,78411,0,0,0,0,0,56,0.5847647888059312,0,0.0,0,0.0,0,0.0,0.07458,0.1970565698734377,0.3124161973719496,0.0233,0.311556514017506,0.6884434859824939,25.48978610004893,4.670333989931546,0.3205374280230326,0.2018844878729715,0.2339905775606351,0.2435875065433606,11.172993017118694,5.423753650576933,24.68931540374972,13130.127507963747,64.62626168028531,13.516996302858354,20.70562469612469,15.077881173082398,15.325759508219878,0.5442331181294713,0.7528089887640449,0.6902558519324986,0.6092468307233407,0.1167621776504298,0.7016369047619048,0.9240121580547112,0.8292134831460675,0.7755102040816326,0.1521739130434782,0.4960109414178253,0.6847826086956522,0.6458333333333334,0.562559694364852,0.1080357142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021063504440551,0.0044386343598942,0.0066758654275394,0.0087956285929025,0.0110036509340899,0.0131577607365087,0.0152026510323731,0.0174713066209206,0.0197950962148013,0.0219999590507974,0.0239508679113735,0.0259369545127836,0.0282408597727155,0.0305234205185788,0.0325423029302517,0.0345180392926902,0.0367920328788678,0.0389701992593898,0.0408250207813798,0.0428153347844652,0.0573149346582606,0.0711812637943117,0.0847308309473618,0.0971914070304202,0.1089910500627233,0.1238501067946793,0.1372101902721507,0.15027929988828,0.1632498344971918,0.1746098104793757,0.188575428017659,0.2018981040602545,0.2142779457507667,0.2260223048327137,0.2375598217723747,0.2489977185638026,0.2598702936810028,0.2699123507769164,0.2788491005050791,0.2879100238226131,0.2960668758466579,0.3045946736903717,0.3126473550145133,0.3199961585095017,0.3269305629896355,0.3330822797313315,0.339178720950638,0.344979223494022,0.3506267680568892,0.3566801512387298,0.357587123409652,0.3584804191947049,0.3589975546666289,0.3601120090535815,0.3614378792622743,0.3623925842800264,0.3635756641177686,0.3653700346134828,0.3671016306863972,0.3682518587694408,0.3688110411403145,0.3711196788425613,0.3731768579690567,0.3739544112010461,0.3747334754797441,0.3759985284843388,0.3758007526356611,0.3782799987338967,0.3791968866088802,0.3790229312063808,0.3800484837396514,0.3810771781569235,0.3803988821138211,0.3805745975506431,0.3836190476190476,0.3899655213411009,0.3941212680824869,0.4017146356399265,0.405210643015521,0.3949289281598156,0.0,1.908911315201953,59.60232370504976,227.85400321274747,327.7890823360843,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95677,40922,384.1362082841226,7551,77.60485801185237,5835,60.36978584194738,2363,24.321414760078177,77.34181859432726,79.72328682123442,63.3271521787835,65.08503135838758,77.05678225568917,79.43663450690089,63.22297106530086,64.9824735078133,0.2850363386380934,286.6523143335371,0.1041811134826389,102.55785057428568,62.23184,43.7971321674338,65043.67820897394,45776.02994181861,209.71237,125.66544063071407,218549.4423947239,130704.9976804395,243.7555,115.86200775591514,250277.59022544604,117660.3803656778,3355.14272,1502.5891231218045,3473638.680142563,1537380.648559011,1455.26795,627.6476219861296,1507898.805355519,642883.882214251,2328.8225,963.0827111626102,2399192.5332106985,978248.1873226012,0.38188,100000,0,282872,2956.5308276806336,0,0.0,0,0.0,17490,182.15454079872904,0,0.0,22914,234.99900707589077,2187910,0,78493,0,0,0,0,0,42,0.4389769746124983,0,0.0,1,0.010451832728869,0,0.0,0.07551,0.1977322719178799,0.3129386836180638,0.02363,0.3144978605587717,0.6855021394412283,25.641557600108158,4.63163434543479,0.3367609254498714,0.1914310197086546,0.2377035132819194,0.2341045415595544,11.157676258510516,5.587374642986291,25.08626784642204,13242.85062525663,65.35679959332279,12.928615714179216,22.04463326072554,15.55144007402891,14.832110544389126,0.541216795201371,0.7502238137869293,0.6814249363867685,0.5897620764239365,0.1193265007320644,0.693863319386332,0.915915915915916,0.8503118503118503,0.7172619047619048,0.1408450704225352,0.4914792092706203,0.6798469387755102,0.6266846361185984,0.5490009514747859,0.1136783733826247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0042369015883312,0.0064222882826212,0.0085007414027746,0.0110017488916907,0.0131546794819581,0.0155337430816744,0.0174759858313853,0.0196751806539314,0.0218141244152361,0.0240241163985357,0.0262611946430038,0.0283533260632497,0.0303364418568705,0.0326885760290656,0.0347128125032323,0.036579931814178,0.0388101541815916,0.0406657997399219,0.0426479020067761,0.0566083068694634,0.0711570879621389,0.0845201985747121,0.0974157161496696,0.1096131734126607,0.1251295720420553,0.1393769629063746,0.1528299677457127,0.1650230252262455,0.1773001726671171,0.1920111142223275,0.2048220138235389,0.2188930820346061,0.230299121004067,0.2407951332739293,0.2516779266806955,0.2625686475867304,0.2731097636431134,0.2828314928100421,0.2914963064765504,0.2997940911089004,0.3077543954051493,0.3150433681619709,0.321961160393191,0.3290474685851785,0.3352611848271099,0.3415297123960317,0.3472484076433121,0.353023581601681,0.3587873020907673,0.3601105791922325,0.3609491917813882,0.3621166770203874,0.363570538998465,0.3645340005361451,0.3649705706074903,0.3655234800272968,0.3667988612614984,0.3676001782470092,0.3692379298616208,0.3705183767659143,0.3722030810660964,0.3734719596723377,0.3744224644507244,0.3757331466776085,0.3770943129080469,0.3783287946108642,0.3808604260976922,0.3838437544307387,0.3851051051051051,0.3853299609105541,0.3877496385929218,0.3890294824750095,0.3938905518458823,0.3955794842731652,0.3955026455026455,0.3940052803230315,0.3918392454377691,0.3918804623625599,0.3899297423887587,0.0,2.4063628619658344,63.34118941906176,207.18634951363637,348.3017177390341,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95677,41227,387.3135654336988,7596,78.19016064466904,5854,60.56837066379589,2354,24.18554093460288,77.38307130315455,79.75808791405815,63.34642469116329,65.09691145514681,77.09316230409944,79.47063438703829,63.239346376506,64.99400272331937,0.2899089990551147,287.4535270198635,0.1070783146572935,102.90873182744065,62.18344,43.8122728631272,64993.09133856621,45791.85474369723,213.05198,127.81319803769536,222080.4686601796,132990.31955192506,244.352,116.08608789273802,251672.14691096084,118425.83980679711,3362.69068,1501.0041093078664,3481451.5087220543,1535647.8456764608,1424.54855,608.0757450102732,1473676.766621027,620313.0480787162,2317.20326,968.1074323684828,2383102.87738955,977761.6205848136,0.38313,100000,0,282652,2954.2314244802824,0,0.0,0,0.0,17813,185.55138643561148,0,0.0,22971,236.36819716337257,2184014,0,78468,0,0,0,0,0,30,0.3135549818660701,0,0.0,2,0.020903665457738,0,0.0,0.07596,0.1982616866337796,0.3098999473407056,0.02354,0.3131943577580826,0.6868056422419173,25.853892100976296,4.60534624192125,0.3349846258968227,0.1901264092927912,0.2400068329347454,0.2348821318756405,11.012421635360512,5.554632341730675,25.11319465133631,13279.163955272365,65.4224702846952,12.830589144445016,22.001301182107568,15.551330229300095,15.03924972884252,0.5268192688759822,0.7313566936208445,0.6858745537990821,0.5480427046263345,0.1127272727272727,0.6757337151037939,0.9090909090909092,0.854122621564482,0.6878787878787879,0.1153846153846153,0.4801435943459726,0.6633540372670808,0.6323924731182796,0.5051162790697674,0.1120293847566574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866110565583,0.0045488622778757,0.0067849210454255,0.0091392826678581,0.0112144781658278,0.0134674308050938,0.0156068421374543,0.0178119385921933,0.0197481396680022,0.0220404569837435,0.0244217519685039,0.0265138679235595,0.028437140036202,0.0307159852909366,0.032713317446071,0.0346335111000868,0.0365996415659218,0.0385270062689417,0.0405162283301615,0.0426150575287643,0.0573129962390305,0.0720201015547296,0.0859274180856756,0.0986350922206565,0.1111122826625615,0.1266639177001723,0.1405264441169923,0.1530836887277058,0.165297281147296,0.1768279615978056,0.1921607867187416,0.2051620297784457,0.2179768685595025,0.2302126031589878,0.2411528518783345,0.2528422312346253,0.2636040745208417,0.2744179235612827,0.2846045518557216,0.2932666957059996,0.30155752417347,0.3094538085811673,0.3167291004789226,0.3244388937590816,0.3312439143135345,0.3376475818801561,0.343233247665016,0.3486065427471378,0.3538403643771979,0.3592615612478345,0.3606747481830072,0.3618349432953465,0.3631772721502024,0.3644877399183626,0.3654100873602905,0.365997511788287,0.3661426075909163,0.3668362391136135,0.3682098077219944,0.3693220521277739,0.3703662056298962,0.3713952523076315,0.3715843556674006,0.3720675143266476,0.3725659887494591,0.3730907574414846,0.3731644849174729,0.3760401946930444,0.3767229254571027,0.3800253746729046,0.3825301204819277,0.3834570519618239,0.3872592219564396,0.3847322445879225,0.3870003735524841,0.3881841672539347,0.3868778280542986,0.3948200869909055,0.3960129310344827,0.4055265123226288,0.0,2.454271167639682,61.54235827306382,215.24300137672464,345.68279688257184,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95700,40851,383.2079414838036,7576,78.04597701149424,5932,61.47335423197492,2472,25.5067920585162,77.3960056150407,79.78004903835497,63.35197710932333,65.11293443617693,77.09623863372583,79.4780242585645,63.24369249935045,65.00618729184782,0.2997669813148746,302.0247797904716,0.1082846099728769,106.74714432910548,62.55128,43.97693969669447,65361.83908045977,45952.91504356788,211.5123,127.10931972296994,220494.47230929992,132299.09061961327,254.15906,120.69709200895522,262354.78578892373,123627.35859239366,3421.5822,1539.8579426982394,3547899.101358412,1581625.06029074,1416.96186,611.7373247146651,1468961.1807732496,627572.0265302191,2421.35946,992.2532028613198,2500416.4681295715,1012001.9585014104,0.38071,100000,0,284324,2970.992685475444,0,0.0,0,0.0,17637,183.7513061650993,0,0.0,23841,245.86206896551724,2187053,0,78413,0,0,0,0,0,49,0.5120167189132706,0,0.0,1,0.0104493207941483,0,0.0,0.07576,0.1989966115941267,0.3262935586061246,0.02472,0.3039055632299384,0.6960944367700616,25.45599853646252,4.553448518708493,0.3270397842211733,0.2002697235333783,0.2407282535401213,0.231962238705327,11.170492633553009,5.692451659633076,26.252086857161185,13222.224703423311,67.00752813672005,13.77019781156439,22.10351569586976,15.979285899724749,15.154528729561145,0.5456844234659474,0.7685185185185185,0.6912371134020618,0.5777310924369747,0.1148255813953488,0.7087988826815642,0.9103260869565216,0.8448637316561844,0.7564102564102564,0.149090909090909,0.4937777777777777,0.7048780487804878,0.6411483253588517,0.5277777777777778,0.106267029972752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002329892521045,0.0044614791831437,0.0067193114228294,0.0091033782067564,0.0114540312900535,0.0136235897853622,0.0159466541594869,0.0181625131445956,0.0201701118403565,0.022416246148807,0.0242262069531161,0.0263773949113908,0.0284888564346761,0.0303979233407843,0.0324607653971955,0.0345675949471769,0.0365858711414957,0.0388004857845732,0.041090761598702,0.042813965607087,0.0582189634643103,0.0721977458480278,0.0853837601996937,0.0982074331072911,0.1104646260224302,0.1259860837933295,0.1394139986845734,0.1523747684840227,0.1648045289468062,0.1772017502466646,0.1915120448842894,0.2049387790420975,0.2171073365283256,0.2298140719446478,0.2403768979582861,0.2516382554793004,0.2628421029152633,0.2722278395685878,0.2816192882473572,0.2907529783001394,0.2993545258247405,0.3072747014115092,0.3147430596574129,0.3217217528659981,0.3283238116031682,0.3347232472324723,0.3408157405211051,0.3467538236974043,0.3523620012404382,0.3574109930058877,0.3584109449125778,0.3595885237120764,0.3606645079543855,0.3619859796198598,0.3630241857561208,0.3635095571667254,0.3641667062982514,0.3658259897408917,0.3668641079193344,0.3679041059128723,0.369322664262369,0.3708968521084934,0.3722145285156741,0.3733694314545902,0.3741924597435155,0.3743595106138241,0.3757349163765055,0.3776955669385948,0.3795674605979221,0.3820629959124789,0.3827399916885995,0.3825792220369075,0.3847724806943646,0.3860095634737004,0.3876436781609195,0.3877452167595059,0.3884310371637381,0.3897149938042131,0.3958391903289289,0.3981810992487149,0.0,1.9028766960294123,63.66267126801298,234.2364468173594,334.75018192138947,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95811,41009,383.7137698176618,7524,77.17276721879533,5860,60.47322332508793,2380,24.381334084812806,77.38566316619061,79.70543702929484,63.36611244363343,65.08383276455454,77.09260234100744,79.41630925130765,63.25853767174321,64.98104312197344,0.2930608251831756,289.1277779871899,0.1075747718902135,102.7896425811008,62.47252,43.9709670748397,65203.91186815711,45893.443419690535,211.95131,127.16570910593911,220531.93265908925,132039.75944274914,250.22745,119.17220262380144,257261.8592854683,121257.94457279096,3370.46104,1520.305367287674,3480107.962551273,1549098.114873753,1405.60111,612.0617651372102,1445524.584859776,617340.850134496,2342.78634,976.0290725832984,2402966.068614251,981115.6320120862,0.38117,100000,0,283966,2963.8141758253228,0,0.0,0,0.0,17785,184.88482533320808,0,0.0,23496,241.2979720491384,2188412,0,78551,0,0,0,0,0,38,0.3966141674755508,0,0.0,0,0.0,0,0.0,0.07524,0.197392239683081,0.31632110579479,0.0238,0.3092979127134725,0.6907020872865275,25.290358592855224,4.607641308604469,0.3387372013651877,0.1953924914675767,0.2344709897610921,0.2313993174061433,10.990183804964255,5.369051373780866,25.33509411765621,13190.271845723815,65.92362324953174,13.46478742640862,22.428219809155355,15.068281954301762,14.962334059666029,0.5358361774744027,0.7720524017467248,0.6770780856423174,0.5669577874818049,0.0980825958702064,0.7068847989093388,0.9205479452054794,0.8801571709233792,0.7241379310344828,0.1419141914191419,0.4787161393125427,0.7025641025641025,0.6070460704607046,0.5249077490774908,0.0854700854700854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598999321402,0.004724106120049,0.0067592940292902,0.0088492877898116,0.0112799544326457,0.0136951430607881,0.0161758860043421,0.0181753240126543,0.0202156471970974,0.0225753962974712,0.0249953883047408,0.0273637968551135,0.029424762844428,0.031600942881553,0.0335749713849675,0.0356250129113557,0.0375494071146245,0.0395634237857335,0.041700846269664,0.0434864046452096,0.0576939124629699,0.0715323583830739,0.0845613667330468,0.0974028702906011,0.109719486374601,0.1263031148008492,0.1390916506870358,0.1518340188982069,0.1644836486976555,0.1758348863612021,0.1892112791172864,0.2025298679974939,0.2146331400777365,0.2265973821818062,0.2370496485061511,0.2490766747019926,0.2608099827307671,0.2708602500870698,0.2806504617825373,0.2890860854450645,0.2976589401677798,0.3058169675174556,0.3134058612991247,0.321082154261999,0.3280450854441886,0.3349598092475603,0.3414146962622656,0.3473565318916723,0.3532984428506817,0.3587331699733881,0.3600866803058038,0.3610148038082659,0.362478335000775,0.3628511906484187,0.3633522811821076,0.3636154412667239,0.363815392434012,0.3636857976172821,0.3650695517774343,0.3665152684774608,0.3677814980625258,0.3691500566363943,0.3692753133123401,0.3700753644117514,0.3706829458118494,0.372151965572775,0.3735610628660454,0.3756559905855411,0.37655550024888,0.3786423375266267,0.3807942438079424,0.3800868586134792,0.3824876001526135,0.3834101382488479,0.3852021357742181,0.3882211538461538,0.3901985111662531,0.3959016393442623,0.3979306487695749,0.3971273291925465,0.0,2.6762561564247243,64.47209863391882,214.50186201848516,339.75501204982777,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95770,40862,382.15516341234206,7481,76.82990498068288,5846,60.51999582332672,2396,24.611047300824893,77.37657405990127,79.71950523749831,63.3458979718325,65.07831044457541,77.08348275672422,79.427514909483,63.23881791866935,64.97426726603537,0.2930913031770501,291.99032801531644,0.1070800531631519,104.04317854003864,63.15232,44.4239557654319,65941.65187428214,46386.087256376624,210.84618,126.73203077421246,219653.33611778216,131824.00623808336,247.38475,117.50091963028734,255573.26929100967,120488.785521338,3390.5736,1520.3241078005487,3511997.702829696,1559142.4327039248,1453.34422,630.315952101944,1500832.7033517803,641452.6596031577,2374.53068,986.0417749874674,2441869.7504437715,997777.8209630648,0.38034,100000,0,287056,2997.3478124673697,0,0.0,0,0.0,17687,184.1390832202151,0,0.0,23279,240.22136368382584,2181741,0,78271,0,0,0,0,0,34,0.3550172287772789,0,0.0,0,0.0,0,0.0,0.07481,0.196692433086186,0.3202780376954952,0.02396,0.3174001011633788,0.6825998988366211,25.46889432553936,4.655793057285851,0.3267191241874786,0.1985973315087239,0.2293876154635648,0.2452959288402326,11.129562267175816,5.525266313504224,25.50390358440001,13210.990268655134,65.6293886050004,13.43648681914868,21.372448842395364,14.93029039047948,15.890162552976877,0.5463564830653438,0.7708871662360034,0.6905759162303665,0.6032811334824758,0.1192468619246862,0.697228144989339,0.9287925696594428,0.8422174840085288,0.7669902912621359,0.1601307189542483,0.4985357062401441,0.7100238663484487,0.6412213740458015,0.5542635658914729,0.1081560283687943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0046832709910896,0.0068183201769516,0.0092445853143159,0.0115226588560735,0.0137473141821366,0.0162127438284508,0.0185098215379589,0.0207423915599218,0.0227451863528881,0.0249159560511643,0.0271707332094722,0.0292167405138116,0.0312043006323247,0.0334038273069582,0.0355758596810368,0.0375555256427513,0.0396887966804979,0.041780586944996,0.043614096475881,0.0582384436349973,0.0719790849673202,0.0856534865193509,0.0983227542141325,0.1106673130427451,0.1262063060872874,0.1396404036977355,0.1521274218774937,0.1636979133294889,0.1750753294658846,0.1886006009887234,0.2021877434432615,0.2150977469783836,0.2267450130759719,0.2383295899942749,0.2491159614681136,0.2599140097157854,0.2703861694823685,0.2803817868167786,0.2898223754280282,0.2984924390554315,0.3061923922706218,0.3137577342151029,0.321363957681847,0.3279616936463954,0.3337772352310139,0.3396386928889556,0.3467158390029884,0.3526023531848247,0.3584091239093417,0.3597722653673769,0.3611034672537149,0.3620764950341621,0.3631814895155459,0.3645999018893728,0.3652616568791303,0.3655078348030197,0.367208694365433,0.3682434746865794,0.3690037560364872,0.3691436739453441,0.3702154651231937,0.370800218661957,0.3716090589368517,0.3739292005501797,0.3755434497930962,0.3763459335624284,0.3778205573263483,0.3805256659022755,0.382949824224992,0.3855261346427424,0.3858082455483664,0.3879982257144667,0.3900437217151185,0.3924242424242424,0.3963144669139643,0.3933157976172056,0.3890583689241407,0.3821497651284885,0.3901778808971384,0.0,2.070960111371809,62.39293501252073,219.6290341752753,340.4973576921184,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95747,40638,379.7612457831577,7399,76.07549061589397,5763,59.56322391302077,2352,24.11563808787743,77.3313489084019,79.698357505872,63.31030609897547,65.0634373567401,77.04112012167508,79.41051906798606,63.20319864527855,64.96057810344121,0.2902287867268285,287.838437885938,0.1071074536969192,102.85925329888812,62.93936,44.28273599696748,65734.38332271508,46249.08854680299,210.00033,126.4413043724522,218717.04596488664,131448.8386332437,241.15653,114.4884224548858,248577.52201113352,116955.51173307103,3317.831,1487.8588539715886,3430301.1478166417,1519209.1300914132,1389.35914,602.9022976243629,1434148.975947027,613010.761296544,2325.50728,971.7756532757614,2387102.217301848,978281.2751891068,0.37905,100000,0,286088,2987.9265146688667,0,0.0,0,0.0,17541,182.55402258034195,0,0.0,22718,233.96033296082385,2181097,0,78270,0,0,0,0,0,38,0.3968792755908801,0,0.0,0,0.0,0,0.0,0.07399,0.1951985226223453,0.3178807947019867,0.02352,0.3159117305458769,0.6840882694541232,25.675627796543136,4.588153224601327,0.33610966510498,0.1979871594655561,0.2259239979177511,0.2399791775117126,10.834721024564011,5.276233360609734,25.117188716469084,13113.348781860306,64.76958533810893,13.180836005610317,21.88749217571656,14.534432827689876,15.16682432909219,0.5354849904563596,0.7449605609114811,0.7031491997934951,0.5514592933947773,0.1127982646420824,0.6939655172413793,0.8957055214723927,0.8739495798319328,0.7245901639344262,0.1298245614035087,0.4850148707389613,0.6846625766871166,0.6475017111567419,0.4984954864593781,0.1083788706739526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100537999371,0.0046442296967054,0.0069626998223801,0.0092562487299329,0.0115058292132088,0.0136366876801336,0.0159680231668892,0.0184404259881352,0.0209780196176702,0.0231784009668762,0.0250761515030306,0.0270409106786939,0.0293709028413827,0.0316812499355862,0.0337321043341831,0.0360152622816904,0.037992378743321,0.0401382215903784,0.042058212058212,0.0436843146853875,0.0578858359779522,0.0717335342500156,0.0850170999349573,0.0974991586740703,0.1094555692638638,0.1243706367675058,0.1370143583321836,0.1496639219404114,0.1622667322203458,0.1738248551191242,0.1872635357269895,0.2001234728359761,0.2123148954703832,0.2240969659808827,0.2349164748763916,0.246166128871295,0.2571655161629024,0.2679614929910488,0.2780338290384834,0.287405726337024,0.296218244135152,0.3046564751361799,0.3118634019090532,0.3190523103539419,0.3254522876135284,0.3316422258430849,0.337689512592407,0.3441605606881172,0.3508430357073323,0.3565499008592201,0.3576122303031938,0.3591859792223539,0.3602330272382322,0.3607810215808594,0.3618833814040617,0.3623415052972111,0.3625605930995152,0.3643612211682312,0.365452147249773,0.3665587377685551,0.3670136800962116,0.3682196669310071,0.3696264234987603,0.3708581043185642,0.3731267646420039,0.3741163533539299,0.3738852046649897,0.3752213508727549,0.3771653264373517,0.3788784971701521,0.3803269654665687,0.3804382683057188,0.3804423600988655,0.3828256543701209,0.3794076163610719,0.3800494641384996,0.3820733363512901,0.385193982581156,0.3863266413456321,0.3890577507598784,0.0,2.3945065783130786,61.45816977621922,216.00807182100044,335.9298827430188,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95489,41139,386.1282451381834,7542,77.61103373163401,5875,60.93895631957607,2454,25.35370566243232,77.22623088476638,79.71640600079927,63.24095407219974,65.0775237031476,76.9350506249797,79.42084150080174,63.13572302498317,64.97292180769641,0.2911802597866852,295.5644999975249,0.10523104721657,104.60189545119648,61.09092,43.01173131083545,63976.918807401904,45043.65037945256,211.78925,127.936280932963,221175.5385437066,133373.0815438569,253.11268,120.8696602903598,261643.11072479552,123831.8999419974,3362.89564,1512.5182281149373,3490388.296034098,1553238.30887698,1429.05887,619.5648029504529,1479819.822178471,632348.5175346573,2405.22976,983.4323083784506,2486533.171360052,1002546.488810547,0.38232,100000,0,277686,2908.041763972813,0,0.0,0,0.0,17698,184.69143042654127,0,0.0,23729,245.0753489930777,2182209,0,78351,0,0,0,0,0,40,0.4084240069536805,0,0.0,0,0.0,0,0.0,0.07542,0.1972693032015066,0.3253778838504375,0.02454,0.318375,0.681625,25.408827464789294,4.595950114973615,0.3371914893617021,0.2042553191489361,0.225531914893617,0.2330212765957446,11.413544763568714,5.81129448110674,25.960350143986343,13274.999356886174,66.2941671507778,14.017747069231133,22.36385974266097,14.879594979039917,15.03296535984578,0.550468085106383,0.7625,0.6991418475517416,0.5939622641509434,0.1073776479181884,0.7291371994342292,0.9206798866855525,0.8817427385892116,0.7709677419354839,0.1561338289962825,0.4938354629006949,0.6965761511216056,0.6404269513008672,0.5399014778325123,0.0954545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394487510766,0.004483349731709,0.0069953499705565,0.0093238434163701,0.0117181136992995,0.0140141670488712,0.01634710558271,0.0186888194061267,0.0209111277072442,0.0233089485871191,0.0253017736902611,0.0277503598601686,0.029789118167964,0.0318182286993203,0.0337548819044076,0.0357601358346792,0.037934897616232,0.0398324376578693,0.0417764905664308,0.0437193275556019,0.058270007745609,0.0721060030634297,0.0856722225143277,0.0992791197672948,0.1116383273272955,0.1278697560044941,0.1415403261817176,0.1543016259121751,0.1664328474892104,0.1771761443633588,0.1909419703103913,0.2039525777445142,0.2166446787400373,0.2276484258528457,0.2391323535901849,0.250822331866471,0.2614060996621243,0.2717504059173732,0.2809023274861784,0.2902285327303405,0.299315624637513,0.3077753146369213,0.3159337724764109,0.32277765755368,0.3290041706299846,0.3363239243153609,0.342437503143705,0.3493023672195721,0.3547434429641965,0.360111868091085,0.3616019483155189,0.3628239129233659,0.3639937774006505,0.3650674010726192,0.3657582903023609,0.3658138604107016,0.36572784155137,0.3671902095823217,0.367583561266794,0.3682364999730269,0.3685977219582108,0.3697793342220984,0.3707445686564016,0.3714562363484879,0.3726499444202793,0.3742917103882476,0.375530937894616,0.3771801864654024,0.3798496347258671,0.3828404029054135,0.3835730088495575,0.3858660656793303,0.3867918543424475,0.3891267777947698,0.3890557537075277,0.3897102306327616,0.3874264478166615,0.3913853799958584,0.3785374054356962,0.3837480559875583,0.0,2.2721549009195647,62.446853786597146,226.0203410058918,339.79008486148206,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95713,40866,382.8946956003887,7622,78.31746993616332,5922,61.32918203378852,2453,25.27347382278269,77.36399481233721,79.74841200655653,63.33329461681414,65.0972014424333,77.05828767694462,79.43980891905596,63.22063067222261,64.98589212204493,0.3057071353925948,308.60308750057186,0.1126639445915316,111.30932038837216,61.87522,43.52035781447823,64646.62062624721,45469.64133866688,210.71167,126.71016373623696,219622.8412023445,131858.8945453982,246.89468,117.78478387610784,253934.04239758445,120065.73775930762,3441.116,1550.6056473832411,3565538.5579806296,1590351.9557251786,1491.75356,640.1320111481542,1544693.239162914,654927.4300754911,2426.76284,1015.3707590706744,2502164.0738457683,1033087.237047155,0.38108,100000,0,281251,2938.48275573851,0,0.0,0,0.0,17662,183.98754610136555,0,0.0,23158,238.09722817172167,2188866,0,78602,0,0,0,0,0,42,0.4283639630980118,0,0.0,0,0.0,0,0.0,0.07622,0.2000104964836779,0.3218315402781422,0.02453,0.3220212102308172,0.6779787897691828,25.445884571057515,4.644834162865663,0.3294495103005741,0.1940222897669706,0.2271192164809186,0.2494089834515366,11.183607704809145,5.522999563548176,26.210729276307557,13244.333497895252,66.5497314060271,13.30392856817682,22.09472318016785,14.995739142627102,16.15534051505532,0.5383316447146235,0.7432550043516101,0.7145053818554588,0.5650557620817844,0.1218686526743398,0.6784260515603799,0.9023668639053254,0.8586065573770492,0.7155688622754491,0.1178343949044586,0.4919064748201439,0.6769420468557337,0.6664388243335612,0.5153313550939663,0.1229578675838349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0046142768768951,0.00693372857955,0.0092180417505132,0.0115793972201306,0.0136825804348269,0.0160961279529968,0.0183116140365211,0.0205169116218178,0.0224761670711352,0.0247246549213446,0.0265587610019616,0.028821526656312,0.0309734057351289,0.0331799042272126,0.0350293117174495,0.0372188901664646,0.0392462071685034,0.0412573673870334,0.0432191381178628,0.0578995738992397,0.0709874604869266,0.0844322747825722,0.0965285884047912,0.1086715925500405,0.1242467172731694,0.1382703482207236,0.1510648256494266,0.1636971165650721,0.1760980001286091,0.190286581363064,0.2038875908618899,0.2159743366681165,0.2274765414816597,0.2387925059681624,0.2504484354585114,0.2612964409237978,0.2721034870641169,0.2822620007037537,0.2912962793255132,0.3003645200486026,0.3085896820846448,0.3162514659369558,0.3234800134363453,0.3303341277175234,0.3371229870033786,0.3435237832828194,0.3499185377526602,0.3557662418402238,0.3601161409528837,0.3612547815311675,0.362129493233476,0.3631930546551287,0.3636718637007897,0.3645794628658056,0.3650407250903301,0.3656298452678543,0.3676403094676108,0.3684875168518234,0.3692412166267558,0.3705713373763166,0.3709549649463302,0.3728923884514435,0.3742500842601954,0.3745262293894696,0.3754627320223687,0.3749425419443806,0.3772737338268324,0.3789052825248558,0.3792111257642968,0.3799899170447774,0.37999359111301,0.3825854156042835,0.3851325245344255,0.3878822739909884,0.3899987891996609,0.394815396700707,0.3979144942648592,0.4009111617312073,0.4046288906624102,0.0,2.153359262643161,65.3692584950776,216.38681902897417,344.5500606937244,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95680,40962,385.6500836120401,7505,77.34113712374581,5821,60.34698996655518,2370,24.414715719063544,77.31725194233033,79.72636012023524,63.30264576078415,65.08516474142421,77.02515512028404,79.43207454892577,63.19560429762894,64.98006280738721,0.2920968220462896,294.28557130947297,0.1070414631552125,105.10193403699476,62.2457,43.78274741320108,65056.1245819398,45759.560423496114,210.03934,126.61833043060642,219029.01337792643,131841.50337646998,244.37928,116.22279125127366,252660.84866220737,119331.75091772678,3363.9932,1507.0931666257168,3489524.122073578,1548784.1206372457,1472.79354,632.7137368521356,1528103.5953177256,650093.7676130177,2338.5586,973.945616621238,2411793.87541806,989320.0743553276,0.38095,100000,0,282935,2957.0965719063543,0,0.0,0,0.0,17577,183.19397993311037,0,0.0,22933,237.00877926421404,2185747,0,78425,0,0,0,0,0,44,0.4598662207357859,0,0.0,0,0.0,0,0.0,0.07505,0.1970074812967581,0.3157894736842105,0.0237,0.3070856125174914,0.6929143874825086,25.34614511244879,4.6334645024845935,0.3317299433087098,0.190173509706236,0.2355265418313004,0.2425700051537536,10.7860982692534,5.2521895008066,25.348620837621443,13163.992860832854,65.54660814754885,12.844284623444402,21.68053141557507,15.467339713092914,15.55445239543646,0.5416595086754853,0.7795844625112918,0.6846193682030036,0.5798687089715536,0.1225212464589235,0.6920315865039484,0.928358208955224,0.8430493273542601,0.7198795180722891,0.1357142857142857,0.4943541102077687,0.7150259067357513,0.6370370370370371,0.5351299326275265,0.1192579505300353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0043603914211833,0.0066371007844768,0.008647583046266,0.0106221702192603,0.0127839462157481,0.0149042090873849,0.0172035101698897,0.0192345075249895,0.0212794295432657,0.0233202351516892,0.0251960089193049,0.0274535235624729,0.0294863599810297,0.0316447198554092,0.0338430658444729,0.0356594933034788,0.0376862765460304,0.0396387773361909,0.0415919609723554,0.0563344965208851,0.0705803505979433,0.083844215830359,0.0963122731337787,0.1086367136813899,0.1248108365521985,0.1383570367225642,0.1519095188395919,0.1636847505450814,0.1754463136211484,0.1895743786963125,0.2038277926323652,0.2162050389073298,0.2280813145190423,0.2389455594967943,0.2503131408302388,0.2607336971685584,0.2710480133195338,0.2806880197873764,0.2898678514989808,0.2982547508274888,0.3069004643980956,0.3139839189077172,0.3210413968436705,0.3274606359049182,0.3339132580665062,0.3402157435132866,0.3468868152712182,0.3523725607069738,0.3574812918211933,0.3586621226612067,0.3599295173591035,0.3612242309805966,0.3622806890666358,0.3643381969387603,0.3643562225160675,0.3644188927357621,0.3652613716865187,0.3669459149235065,0.3674090518476081,0.3695001975132145,0.3704144594567783,0.3726035478026376,0.3730269370868372,0.3741668080568146,0.3749967170059093,0.3759491132059253,0.3767333143813765,0.3792884146556902,0.380653667891961,0.3818457718305973,0.3860240963855422,0.3920895332570265,0.3920314426633785,0.3917055074669457,0.3955768081291094,0.3965436711816908,0.3983522142121524,0.3988455195162177,0.3981588032220943,0.0,1.9412565349234343,61.89324005878493,223.96733763699635,336.04912721220467,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95862,41048,383.87473660053,7398,75.85904738060962,5773,59.68997099997914,2355,24.243182908764684,77.4717338221379,79.75788747635646,63.40399372213196,65.09054302179794,77.18033680976806,79.46446388404654,63.29756361799134,64.98591396042968,0.2913970123698419,293.4235923099209,0.106430104140621,104.62906136825724,62.4921,43.93785529471011,65189.647618451534,45834.48633943597,210.81026,127.4055471305743,219364.6178882143,132360.19007240632,247.44871,117.73839318835464,254511.78777826455,120093.36012887947,3321.73584,1491.1976405826151,3435185.0368237672,1525677.766621174,1377.08104,594.0051769499282,1423747.407731948,607041.7083926033,2321.2355,964.381625957306,2390386.659990403,978415.1054685416,0.38139,100000,0,284055,2963.1658008387058,0,0.0,0,0.0,17647,183.5242327512466,0,0.0,23206,238.5303874319334,2187713,0,78447,0,0,0,0,0,41,0.4276981494231291,0,0.0,0,0.0,0,0.0,0.07398,0.1939746715960041,0.3183292781832927,0.02355,0.3126203620490435,0.6873796379509565,25.53528437803593,4.566904034624561,0.3346613545816733,0.1974709856227265,0.2350597609561753,0.2328078988394249,10.725454364380925,5.205667597191986,24.95059828563516,13198.203873006903,64.79519094958904,13.17102026463045,21.92313275741355,14.958023478317564,14.743014449227474,0.5399272475316127,0.7526315789473684,0.7060041407867494,0.5504789977892409,0.1101190476190476,0.7064676616915423,0.9090909090909092,0.8675889328063241,0.717687074829932,0.1278195488721804,0.4862574438845625,0.685857321652065,0.6486676016830295,0.504233301975541,0.1057513914656771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026116003644093,0.0049639857766611,0.0074428603297572,0.0096630125862768,0.0119908950491829,0.0141727797165444,0.0163698965039524,0.0185640408408898,0.0207197271409023,0.0231837519430581,0.0252770437739404,0.0272909081585559,0.029462827321944,0.0315779725892085,0.0335642421243608,0.0354100188977353,0.0373944885799404,0.0392488107206152,0.0414101033175847,0.0433452320244773,0.0582475678042981,0.0723499895463098,0.0855645795127063,0.0984596957216105,0.1105899959950254,0.1259964055396976,0.1400744377405706,0.1528265356056254,0.1646969648442921,0.1762518220012003,0.1906703970730657,0.2047097729409603,0.216693994114645,0.2281119323951043,0.2387605584297184,0.2506467661691542,0.2620509107113017,0.2717492616424665,0.2807073190072159,0.2894309500937743,0.2979580994618067,0.3054187766913258,0.3134781427542137,0.3206872210856274,0.3276613304528297,0.3340434964656043,0.3405143850260693,0.3467468256288369,0.3519153395345227,0.3572520492343375,0.3582742332691868,0.3588644884841993,0.3597659601400864,0.3603750450775334,0.3616617210682492,0.3620199363992172,0.3624338206242591,0.3633830519586953,0.3648208469055374,0.3657063445400609,0.3681560376616813,0.3691964373876809,0.3692674959165724,0.3708018424936273,0.3701184782869914,0.3714665693126108,0.3748824752841961,0.3772583026989662,0.3777661431064572,0.3766787802180439,0.3787049187746051,0.3791494326015484,0.3798787419477075,0.3821206777581845,0.38184589008477,0.3801901552533397,0.3810036945812808,0.3809233272320521,0.3793388429752066,0.381846036001532,0.0,2.0254539643567635,62.36784431912605,218.1070195012912,331.0437319407752,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95747,40704,381.7978631184267,7418,76.30526282807817,5738,59.42744942400284,2316,23.89631006715615,77.34438518034166,79.69711271882628,63.33412346583962,65.07218054842753,77.06838456161917,79.41809638036706,63.2330973508122,64.97234014915432,0.2760006187224917,279.0163384592148,0.1010261150274161,99.8403992732051,62.5075,43.98406292614116,65284.02978683406,45937.79745176471,208.85401,125.70016343115384,217634.9650641796,130787.49561986676,244.47047,115.9854558865684,251871.12912153907,118538.48916290412,3322.35652,1493.0634362248618,3442621.366726895,1532072.645852991,1441.21497,623.5266485202006,1492272.9171671176,638329.8867458379,2291.07766,948.7075244001976,2364746.947685045,966860.9151115868,0.37937,100000,0,284125,2967.455899401548,0,0.0,0,0.0,17482,182.05270139012188,0,0.0,23024,236.98914848507,2185388,0,78462,0,0,0,0,0,28,0.2924373609617011,0,0.0,1,0.0104441914629178,0,0.0,0.07418,0.1955347022695521,0.312213534645457,0.02316,0.3189699133095359,0.681030086690464,25.497303949606096,4.624729349803141,0.3452422446845591,0.1878703380968978,0.2218543046357615,0.2450331125827814,11.129841803510102,5.502279197244607,24.558342846146672,13125.012306857525,64.62048652807658,12.67241188596574,22.167210806006203,14.266700511259035,15.514163324845628,0.548448936911816,0.7820037105751392,0.6920747097425543,0.589159465828751,0.1301564722617354,0.7010014306151645,0.915625,0.8556485355648535,0.7557755775577558,0.1649831649831649,0.4993087557603686,0.7255936675461742,0.6400532268795742,0.5371134020618556,0.12082957619477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339856569831,0.0046231991321363,0.0067979585831836,0.0091608015193524,0.0115196128271346,0.0137428359105392,0.0156949073083233,0.0180215115211135,0.0201696127516092,0.0221633292062744,0.0242337920504964,0.0263573847890793,0.0285940488186061,0.0306282183316168,0.0325479192027565,0.0345682839869787,0.0364983903857898,0.0385476946051894,0.0404801496570359,0.0424556798533425,0.0567607633524032,0.0706175371767636,0.084044807115437,0.0974309360310432,0.1094076214175752,0.1249735673503912,0.1380531724233008,0.1509877554494101,0.1621777483500288,0.1734022254143172,0.1872571287096739,0.2004239946351699,0.21298963916461,0.2250060121116722,0.2360788799313705,0.2480430474208084,0.259140625,0.2696975491243659,0.2796614015976761,0.2886919077395268,0.2964450204827921,0.3043371407171613,0.3116935388403532,0.3191979552899672,0.3267652886333523,0.3330206494772831,0.3390848558566466,0.3446314715633767,0.350732042586853,0.3565425377276211,0.3584857346936025,0.3609649968329156,0.3621017895672039,0.3629905081606667,0.3634861319954146,0.363186754112461,0.3629588431590656,0.3641137927628329,0.3654063689027525,0.366421239318536,0.3680569914099359,0.369734572918112,0.3713018062535483,0.372573251842531,0.373853710469646,0.3738736378876781,0.3748103621010448,0.3764270579678062,0.3784632760385416,0.3787121787441544,0.3808935839392692,0.3813926147597926,0.3834282099936749,0.3858088067533652,0.3866062151695476,0.3832242712671029,0.3829065103363159,0.3858153078202995,0.3901888920214265,0.3793375394321766,0.0,1.9097013615631824,62.196795826827056,217.52245167395645,330.6870957211241,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95671,40572,381.3590325176908,7432,76.5540236853383,5768,59.7046126830492,2373,24.38565500517398,77.28108161739658,79.66640622328069,63.29287913429015,65.0549382163871,76.98292345009835,79.36819017656931,63.18354149887445,64.94821745797188,0.2981581672982258,298.2160467113744,0.1093376354157058,106.72075841522144,63.42908,44.60778825978323,66298.94116294384,46626.02174303939,211.57169,127.44420830210444,220541.07305244013,132616.9113661914,242.63578,115.24683019644937,249945.15579433684,117696.61712805153,3346.90272,1505.663793676723,3465318.016953936,1541349.8084038626,1411.03019,612.3224386929386,1462837.7460254414,628280.4869114707,2349.11884,984.0468313723466,2416176.7933856654,995670.7892092728,0.37909,100000,0,288314,3013.588234679265,0,0.0,0,0.0,17710,184.4968694797797,0,0.0,22787,234.58519300519487,2175881,0,78130,0,0,0,0,0,44,0.4494569932372401,0,0.0,1,0.0104524882148195,0,0.0,0.07432,0.1960484317708196,0.3192949407965554,0.02373,0.3208631256384065,0.6791368743615934,25.55323330570656,4.6101003583252,0.3242024965325936,0.1952149791955617,0.2321428571428571,0.2484396671289875,10.892848715372894,5.323429964996348,25.52696005305096,13176.366994357955,64.95979736232673,13.166216328364545,21.066527728855394,14.850860697283029,15.87619260782376,0.5371012482662968,0.7770870337477798,0.6978609625668449,0.5675877520537714,0.1102581995812979,0.6914366595895258,0.9105691056910568,0.854978354978355,0.7127659574468085,0.15,0.4870264064293915,0.7120211360634082,0.6463068181818182,0.5288552507095553,0.0997352162400706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.004774987580977,0.0070430396703776,0.0094177647285916,0.0115330634827004,0.0136654311433342,0.0158961600424169,0.0178462041083023,0.0200868898543317,0.0220984861666956,0.0243102193148844,0.0265616657768286,0.0285067873303167,0.0302917903066271,0.0324481644700855,0.0345333857193076,0.0362237023379152,0.0381733264141152,0.0399122077057501,0.0418056366213624,0.0565219662539831,0.0703021926242382,0.0840366125036738,0.0969350714939553,0.1090385406665752,0.1246125363660407,0.1385489092935619,0.1515939034391675,0.1645052654086705,0.1757486605177541,0.1892445748306657,0.2029627863629467,0.2158267896622703,0.2267599772199588,0.2379472599645167,0.2495091241888069,0.2604559124397688,0.2701633802816901,0.2794771241830065,0.2886739856144819,0.2973969078139125,0.3059026231275932,0.3131615169205942,0.321307535152025,0.3282473423363086,0.3351241200444609,0.3411314601103863,0.3468444898219641,0.3533277913441056,0.3594706303155552,0.3605674948268167,0.3615212342402123,0.3623465714204723,0.3636403285600058,0.364155712085184,0.3653588428300753,0.3654320594648797,0.3664584985461274,0.3677059865513268,0.3683596135196293,0.3685263098315189,0.3690889500778163,0.3704692299544539,0.3702539517423848,0.3716168567468326,0.3732916316232127,0.3740501957172461,0.3749205744058965,0.3766890696851786,0.3788127123725764,0.3840121078701156,0.3850722311396469,0.3843954507910286,0.3826745164003364,0.3842592592592592,0.3857580759254893,0.3822940723633564,0.3862251117431938,0.392210641799232,0.3956386292834891,0.0,2.2247285323093906,62.51166241297771,217.23208518029892,333.0351202939088,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95737,40934,383.853682484306,7537,77.54577645006633,5924,61.41826044267107,2437,25.120904143643525,77.3612597271838,79.72483597569192,63.34108899169471,65.08827442156404,77.05640510050966,79.417146281726,63.22988584975318,64.97780039378739,0.3048546266741425,307.68969396591217,0.1112031419415302,110.47402777664672,62.40344,43.878147360233925,65181.69568714291,45831.5380408556,214.173,129.07004240988346,223217.77369251175,134337.651327785,248.93653,118.12917889127118,257140.12346323783,121160.82386377048,3396.43076,1522.0773195291863,3521991.3721967475,1564778.1773017652,1447.46845,623.3221866046459,1498890.8885801728,638635.539788592,2398.1303,999.6863658202604,2474579.5042668977,1020407.2943153186,0.38141,100000,0,283652,2962.804349415587,0,0.0,0,0.0,17927,186.76164910118345,0,0.0,23378,241.31735901480096,2184280,0,78421,0,0,0,0,0,41,0.4178112955283746,0,0.0,1,0.0104452823882093,0,0.0,0.07537,0.197608872342099,0.3233381982221043,0.02437,0.3251673191059477,0.6748326808940522,25.492737153206477,4.619821505005787,0.3367656988521269,0.1975016880486158,0.2270425388251181,0.2386900742741391,11.14411579477902,5.54556433502496,26.092739476748587,13197.617938067238,66.73001718109458,13.563793116064284,22.50806882990032,15.040041950066488,15.61811328506348,0.5281904118838623,0.7581196581196581,0.6521303258145363,0.5754646840148699,0.1181046676096181,0.6831615120274914,0.9309309309309308,0.8052738336713996,0.7259036144578314,0.1548821548821548,0.4777355113000671,0.6893667861409797,0.6018641810918774,0.5261599210266535,0.108325872873769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297981179283,0.0046029686105929,0.0068397231637271,0.0095701557436173,0.0117258212142784,0.0140730331357813,0.0162951481655211,0.0183795374483075,0.0205302278977987,0.0224099099099099,0.0243507325725651,0.0266317465208237,0.028632843434707,0.0308015617112894,0.0328252860990434,0.0347875529825286,0.0369898619611254,0.038966025361642,0.0409587189352188,0.0428114483376571,0.0572469669443922,0.0715564067945618,0.0848769640646961,0.0972096641924427,0.1098042935280913,0.1251968587162169,0.1384750776669176,0.1520506409915421,0.1638649179767601,0.1755619633611679,0.1896620406757033,0.2028190649271976,0.2151927634869208,0.2266188623147217,0.2373518612167718,0.2496901283753873,0.2603057435634401,0.2709269915482827,0.281382876191988,0.2902808467765018,0.2977409168199327,0.3051408261332148,0.3126997277784353,0.319418650627239,0.3270710454137236,0.3338586943137883,0.340833479250569,0.3476008654702813,0.3532827791820597,0.3577319587628866,0.359468313134445,0.3614419674207895,0.3629428023465704,0.3642564407049657,0.3657871605011844,0.3660188954604808,0.3654761904761904,0.3665524963772888,0.3675105340687198,0.3694417062460794,0.3713817894380246,0.3718073776202894,0.3729904215367737,0.3743810209777617,0.3747576580069794,0.3752107037505268,0.3750576834333179,0.3777876895628902,0.3796348913197897,0.3808815249738599,0.3807639208467556,0.3818026301721373,0.3826675951129961,0.3831761367993252,0.3845427059712774,0.3855134619966643,0.3935334872979215,0.3919526143790849,0.395079185520362,0.3911812297734627,0.0,1.6875244481023777,64.9853247578126,221.1907906876205,344.2996841442761,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95648,40983,385.6431917029107,7481,76.98017731682837,5765,59.66669454667113,2283,23.4610237537638,77.2430810454354,79.64920073748468,63.27207635196621,65.05082403037089,76.95900657346044,79.36417602188877,63.16707226679315,64.94825767390944,0.2840744719749608,285.0247155959096,0.1050040851730642,102.56635646145185,61.77512,43.45693045591423,64585.898293743725,45434.22806113482,209.77992,126.29384857220872,218741.59417865507,131456.89253534703,240.00454,114.08841904308645,247397.4887085982,116564.32540100948,3314.27616,1480.1590354905954,3432685.6390097025,1515115.8785239584,1378.44096,591.050561990918,1428886.5527768484,605669.7599436666,2249.95956,940.0121211026508,2314866.9914687183,950887.2162332472,0.38187,100000,0,280796,2935.722649715624,0,0.0,0,0.0,17500,182.3456841753095,0,0.0,22634,233.0733522917364,2184160,0,78393,0,0,0,0,0,38,0.3972900635664101,0,0.0,0,0.0,0,0.0,0.07481,0.1959043653599392,0.3051731051998396,0.02283,0.3066396350734921,0.6933603649265079,25.74630563615093,4.628431750210137,0.3283607979184735,0.202601908065915,0.2371205550737207,0.2319167389418907,11.060351185438758,5.448775432182803,24.51210187997583,13275.339508104717,64.9060520387042,13.661881999678483,21.30605726676741,15.227451968772897,14.710660803485403,0.5415437987857762,0.7491438356164384,0.687797147385103,0.5932699341623994,0.100224382946896,0.6855895196506551,0.9096209912536444,0.8688888888888889,0.6774193548387096,0.1070110701107011,0.4964700523798679,0.6824242424242424,0.6313236313236313,0.5685903500473037,0.098499061913696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020167828766012,0.0045341123486093,0.0069236469955229,0.0091648970219165,0.0114227009652843,0.0135139263709964,0.0156920723935763,0.0178381800359418,0.0201652486910994,0.0224261166977287,0.0242946949574919,0.0261663431816548,0.0279626068266194,0.0298141509045205,0.0318947987737533,0.0337304049303056,0.0360909109743717,0.0382168249519954,0.040139797584747,0.0420037531276063,0.0567642694421802,0.0709684177447231,0.0850123366055961,0.0986621193461121,0.111257746761405,0.1269533731419133,0.1410526092129865,0.1538855187266117,0.1656145006312996,0.1780727757013361,0.191728349770172,0.2053792116560426,0.2180552681168102,0.2300615512671675,0.2405735762545602,0.2517724594747528,0.2624563914482511,0.2725387199314651,0.2818760659465605,0.2907003417979951,0.2988301856167322,0.3072534064414842,0.3152361990092204,0.3226015557476231,0.3300743915356799,0.3370318658643569,0.3437088170693442,0.3502247076247383,0.3560983218728471,0.3613881714020796,0.362448009506833,0.3637128706041416,0.3643536914744686,0.3657506819105101,0.3666771192641371,0.3666923195320917,0.366759531958927,0.3672431164626794,0.3682809091065263,0.3698664605762145,0.3717566189522982,0.3731554598388769,0.3739791073124406,0.3756365766821398,0.3772318724713521,0.3776940506929441,0.3794637697908239,0.3806283388450776,0.3822484366117112,0.3846246973365617,0.3852645245050308,0.3866594652984067,0.3864174614350636,0.3879950495049505,0.3881799865681665,0.3887218949140315,0.3886270813697769,0.3925311203319502,0.3961947397873531,0.390728476821192,0.0,2.391007631706248,60.693361128442135,220.2155190031944,335.3804758343148,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95814,41050,385.1942304882377,7331,75.28127413530382,5683,58.69705888492288,2329,23.869163170309143,77.44904619750217,79.77350128111864,63.38601454967061,65.1060228690234,77.16144990852091,79.48656046674694,63.28122609643626,65.00405937314163,0.2875962889812626,286.9408143717038,0.1047884532343488,101.96349588177613,62.56712,43.99972517741362,65300.60325213434,45922.02097544579,209.988,126.81690651399698,218411.71436324547,131607.98552839222,244.76733,116.52668256182076,251315.06877909284,118539.97886086046,3291.6426,1470.6449463492495,3401306.072181518,1500808.597219739,1395.66872,604.1084353630484,1437471.3194313983,611516.0892471453,2296.45222,950.4350817434132,2355656.89773937,959275.445085794,0.38135,100000,0,284396,2968.20923873338,0,0.0,0,0.0,17580,182.76034817458827,0,0.0,22971,235.644060366961,2189378,0,78517,0,0,0,0,0,44,0.4383493017721836,0,0.0,0,0.0,0,0.0,0.07331,0.1922381014815786,0.317691992906834,0.02329,0.3147956544231764,0.6852043455768236,25.43152758038489,4.575359904816842,0.3243005454865388,0.1967270807672004,0.2352630652824212,0.2437093084638395,11.073900275715411,5.613838035013184,24.669348941488145,13202.654747013728,63.46807698941145,12.833678255784232,20.658635186675003,14.91540308410436,15.060360462847848,0.5403836002111561,0.7629695885509838,0.6885512750949538,0.5841436050860135,0.1212996389891696,0.7194767441860465,0.9246987951807228,0.8807947019867549,0.7596153846153846,0.1684587813620071,0.4831669375435338,0.6946564885496184,0.6258992805755396,0.5307317073170732,0.1094032549728752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166057340773,0.0043485753094178,0.0065954359583168,0.0089292063266321,0.0109521339882241,0.0128699866616435,0.0150586747958361,0.0173098316986292,0.0196934082779764,0.0218047497723342,0.0236716708510529,0.0258620689655172,0.0280736019736842,0.0303211259485004,0.0325594826786027,0.0345985371296334,0.0366172985168855,0.0383749987038976,0.040383996010431,0.0424313717325449,0.0569139614453809,0.0704248912679826,0.084253883077955,0.0975540566097207,0.1093443763039767,0.1248309097057829,0.1385473202170963,0.1517642554820596,0.164381807901166,0.1759099621986871,0.1900854884671219,0.2035908737360643,0.2162173898882869,0.2278302813366217,0.2386562002525113,0.2499861818905384,0.2605373373730172,0.2713260964739956,0.280826880405742,0.2899502942352739,0.2989737136788151,0.3071241029231577,0.3154987429623597,0.3219230493316435,0.3290952063511302,0.335546783733599,0.3417475000936295,0.3482498667411224,0.3542223772429562,0.3599694584134172,0.3612409975276792,0.3624586132520023,0.3642027395719067,0.3653699025622519,0.3663705527295377,0.3661999816586678,0.3664693345962586,0.3676875204716672,0.3688012129265259,0.3694815606627472,0.3703530468296881,0.3704741421834612,0.3713830745699499,0.3710811537083482,0.3711471778077442,0.3714687426771161,0.3719536556132641,0.374480674808007,0.3773019120863614,0.3795120786405062,0.3821454745327959,0.381864896692003,0.3807254939330411,0.3820714996555155,0.3810338274420372,0.3831285049516764,0.3830246913580247,0.377025641025641,0.3822222222222222,0.3695568400770713,0.0,2.232660553039488,60.62187140672293,206.8100664428947,334.7921401782282,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95796,40964,384.0661405486659,7428,76.3079878074241,5752,59.3448578228736,2317,23.779698526034487,77.3497797498425,79.68395657691043,63.33168066437421,65.06042825398207,77.06158767039145,79.39611875422317,63.22640224290389,64.95817862535074,0.2881920794510506,287.83782268726554,0.1052784214703237,102.24962863132704,62.53566,44.042825772074366,65280.032569209565,45975.64175129898,211.64149,127.24204188170457,220186.8345233621,132095.65972858958,245.78968,116.70493941812404,252027.2975907136,118363.47818014414,3304.42048,1481.6926524081823,3410726.919704372,1508740.107369922,1441.17687,616.7851461024619,1488535.8783247734,628142.7757055853,2286.21946,950.2031981363884,2347929.558645455,958225.2231438012,0.38151,100000,0,284253,2967.274207691344,0,0.0,0,0.0,17671,183.7133074449873,0,0.0,23040,235.99106434506655,2183455,0,78328,0,0,0,0,0,46,0.4801870641780449,0,0.0,0,0.0,0,0.0,0.07428,0.1947000078634898,0.3119278406031233,0.02317,0.3211950250032055,0.6788049749967945,25.61797579772193,4.629982890069754,0.3244089012517385,0.2009735744089012,0.2352225312934631,0.2393949930458971,11.084219573996988,5.484430105656524,24.79828719619453,13224.014763794285,64.65545405240734,13.643163722451378,20.932506523754437,14.95994967207783,15.119834134123714,0.5394645340751043,0.773356401384083,0.6795284030010718,0.5713229859571323,0.1220043572984749,0.7057991513437057,0.9242819843342036,0.8549450549450549,0.7288135593220338,0.1423487544483986,0.4852466574458275,0.6985769728331177,0.622962437987243,0.5274102079395085,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0046944548653005,0.0068504272636856,0.0091538062969246,0.0114535652527718,0.0136347436484904,0.01548735725938,0.0176291048661229,0.0200742050553471,0.0223031965526771,0.0245205072218634,0.0266135490892662,0.0286157895819195,0.0305005509046162,0.0326373989107113,0.0344702879756972,0.0367368486429414,0.03880262625634,0.040842407114953,0.0428418236145381,0.0576820756783825,0.0711469890100697,0.0843753602985105,0.0975850690430652,0.1093638011720561,0.1246775216747726,0.1383143469314156,0.1510717098401481,0.1643044058744993,0.175972800205929,0.1906824401491154,0.2031794472220418,0.216030717020536,0.2275579361609095,0.2392299229922992,0.2509474104115418,0.2615197473411675,0.2715943854597804,0.2819360767895436,0.2917783121493186,0.2998923997176939,0.3073729269490772,0.3147080754163165,0.3229176651011214,0.330673468148418,0.3369724601072023,0.3427391603578802,0.3484869702486283,0.3538306059781552,0.3596454144317911,0.360417116339305,0.3620470789524519,0.3634347543577139,0.3641813141355937,0.3652116855809237,0.3657674275612942,0.3658648957803762,0.3667347543900108,0.3677837615339759,0.3679810555774819,0.3684478084048802,0.3707827193383566,0.3712017519846701,0.3724472602278088,0.3724717879322427,0.3740790267180576,0.3758016491067338,0.376187620340267,0.3777879245548101,0.3777205153617443,0.379711599890481,0.3814312317105613,0.3822354656691815,0.3836671802773497,0.383782757311052,0.3853484216795712,0.3820761992904519,0.3867369701886027,0.3895460797799174,0.3953216374269006,0.0,2.5603843078757977,62.14827637135434,211.61695622158655,336.6136798556935,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95804,40657,381.0070560728153,7485,76.89658051855872,5833,60.34194814412759,2371,24.383115527535384,77.41775944651599,79.74606583309618,63.37436231324406,65.0953731973191,77.12931662864817,79.45688414966523,63.26884071175848,64.99231819451053,0.2884428178678178,289.18168343095374,0.1055216014855844,103.05500280857416,63.31996,44.50666177584865,66093.2320153647,46455.9535884187,211.60525,127.78779404083927,220338.284414012,132849.81215903227,244.67412,116.5654757266141,251908.09360778256,119028.1757157421,3368.2928,1510.4727178023331,3483951.317272765,1544762.8886083402,1428.57012,621.2638946515511,1471758.8096530417,629094.3850481731,2341.97622,971.2995132736428,2408662.602814079,982161.7768711612,0.37948,100000,0,287818,3004.2378188802136,0,0.0,0,0.0,17762,184.8357062335602,0,0.0,23054,237.26566740428373,2182669,0,78336,0,0,0,0,0,36,0.3653292138115319,0,0.0,0,0.0,0,0.0,0.07485,0.1972435965004743,0.3167668670674682,0.02371,0.3208841463414634,0.6791158536585366,25.274944962500737,4.636446417041069,0.3322475570032573,0.1969826847248414,0.2292130978913081,0.2415566603805931,11.023778031206774,5.542248136349591,25.276634360010583,13146.997201088318,65.40331772363292,13.355363890854996,21.635594980790863,15.067359966683943,15.344998885303117,0.549974284244814,0.7467362924281984,0.7063983488132095,0.6155572176514585,0.1121362668559261,0.7121745249824067,0.8945783132530121,0.8763102725366876,0.7678018575851393,0.1695501730103806,0.4977334542157751,0.6866585067319462,0.6509240246406571,0.5670611439842209,0.0973214285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020251318867141,0.0041762541433103,0.0064636584103662,0.0085718348195242,0.0109310176523224,0.0132334378435604,0.0154520436245031,0.017677798644566,0.0199922320570739,0.0222090309902976,0.0241597392347195,0.0260734779350626,0.0282480648842014,0.0303704161261762,0.0326555443278134,0.0345596893139705,0.0363145258103241,0.0384942357136932,0.040504882609599,0.0425290467663349,0.0571240766245148,0.0705981976707717,0.0841894498490439,0.0968789066193232,0.1094386922128946,0.1251928237854743,0.138769413310168,0.1509845198605086,0.1632060775484944,0.1744333033380468,0.1887267291167012,0.2025041591945206,0.2151861624157138,0.2272861276409892,0.2379236473496292,0.2500442497455639,0.2605700527248609,0.2708579001156744,0.2803511753044463,0.2894068668938857,0.2973600600774074,0.3054134846680212,0.3127953127953128,0.3196265038606572,0.3266539633221269,0.3338096352594819,0.3400850212553138,0.3459733719909968,0.3517693960496,0.3567774261603375,0.3580278469092621,0.3595275135261643,0.3607858058879071,0.3615415751127558,0.3630712490519459,0.3632000245353616,0.3637631324575721,0.3648315529991783,0.3658732327026842,0.3674329707232552,0.3684091975598311,0.3684127297884957,0.3700727936394722,0.3710431533970157,0.3720268249143629,0.373552552474057,0.3744962990483267,0.3762060919467743,0.3783574471081071,0.3790165239896476,0.3804561451620275,0.3817270254413569,0.3815997470755611,0.3807342950919777,0.3824561403508772,0.3842364532019704,0.389280677009873,0.3947693574958814,0.3981737686773658,0.4032068830660931,0.0,2.11752794554306,62.82071226431045,217.0445618780884,338.7756223569989,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95720,40752,381.89511073965735,7471,76.69243627246135,5757,59.54868366067698,2349,24.10154617634768,77.3893283971574,79.75042113195214,63.35181630130408,65.09350789048015,77.10251784064174,79.46457189186357,63.24649319482471,64.99170860054332,0.2868105565156611,285.8492400885666,0.1053231064793678,101.79928993683518,62.45228,43.90457992089668,65244.75553698286,45867.718262533104,209.79783,126.13142625192128,218614.14542415377,131206.70314659557,244.31966,115.96234667751506,251869.78687839533,118488.71769960575,3320.39944,1481.0839607069515,3436197.952361053,1514639.783438103,1418.40634,604.8702937740414,1465336.58587547,615424.2935374437,2326.68718,959.175355666446,2390091.9765984123,967657.2064139968,0.38039,100000,0,283874,2965.670706226494,0,0.0,0,0.0,17574,183.00250731299624,0,0.0,22968,236.53363978269957,2186073,0,78428,0,0,0,0,0,32,0.3343083994985374,0,0.0,0,0.0,0,0.0,0.07471,0.1964036909487631,0.3144157408646768,0.02349,0.3093607305936073,0.6906392694063926,25.775390300533815,4.580376465507158,0.3357651554629147,0.1884662150425569,0.2365815528921313,0.239187076602397,11.049436321830823,5.499840903823047,24.75975836311385,13189.856098287062,64.29633092306656,12.595117028431783,21.68355305446096,15.226361022848062,14.79129981732576,0.5419489317352788,0.7622119815668202,0.6875323331608898,0.5748898678414097,0.1314451706608569,0.697742170429716,0.9364161849710982,0.8133047210300429,0.7040498442367601,0.1208333333333333,0.4931569343065693,0.6806495263870095,0.6475800954328562,0.5350624399615754,0.1336851363236587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002228141426213,0.0046317411089827,0.0068571660428268,0.008925398292091,0.0113049489650685,0.0134051259084339,0.0155714984510027,0.0176016815983347,0.0198943464089018,0.0219484492832219,0.024100830003074,0.0261419132433208,0.0283905837383504,0.0305715962078868,0.0329709995462233,0.0348986214166132,0.0367433144560974,0.039013308714459,0.0409433923040143,0.042919349125987,0.057349915938306,0.0715556392708398,0.0850447880173697,0.0976373978781793,0.1103181463599755,0.125748249677433,0.1400036066999756,0.1532253771545987,0.1653916834052737,0.1769348732962283,0.1902731110536745,0.2036738535434945,0.2163437493204601,0.2281948925466178,0.239606030593155,0.250963924836022,0.2613840606405662,0.2718692345767898,0.2815131773091503,0.2900912049131491,0.2985043550681889,0.3066794517984939,0.3143228858663512,0.3214829011199617,0.3284392305450306,0.3344378202601498,0.3404050265344948,0.3462301839741469,0.3511843060018658,0.3565131318463772,0.3582384758214257,0.3594392703360801,0.3602499331541395,0.3614295834718868,0.363034048368887,0.3639591112199302,0.3645360694354418,0.3659559823667262,0.3668447190129187,0.367066007248835,0.3672126846090411,0.3683012744399588,0.3689815981850264,0.3695827725437416,0.3694685990338164,0.3721901678719682,0.3737789203084833,0.3752951175748418,0.3763535367740121,0.3780594405594406,0.3783091765351378,0.3801754573659998,0.3832202422474475,0.3870770640800428,0.390068233510235,0.3880472384587856,0.3876421764525053,0.3918533604887984,0.3835655388114871,0.3822593476531424,0.0,2.3697040461569667,60.39557907289978,214.4654402446884,336.1983963961066,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95672,40778,382.3689271678234,7422,76.22919976586671,5748,59.48448866962121,2340,24.01956685341584,77.35982293729873,79.7354537761061,63.33991942654043,65.08989940603432,77.07338784258206,79.44911641993076,63.23552828539754,64.98832446136616,0.2864350947166656,286.33735617533773,0.1043911411428908,101.5749446681582,63.20006,44.45442926681986,66058.8677983109,46465.224168847606,210.85904,127.1913648801319,219799.93101429887,132348.4417855802,244.30345,116.82488912343776,252110.366669454,119578.20985911768,3318.08192,1499.683241262518,3433681.327870223,1533121.7228455525,1402.37948,614.5096069344123,1445628.4179279204,622319.1598301947,2314.8071,957.8903246979236,2377778.5977088385,966223.0099365708,0.37964,100000,0,287273,3002.675809014132,0,0.0,0,0.0,17683,184.20227443766203,0,0.0,23034,237.47805000418097,2180138,0,78205,0,0,0,0,0,32,0.334476126766452,0,0.0,1,0.0104523789614516,0,0.0,0.07422,0.1955010009482667,0.3152789005658852,0.0234,0.3166112106475556,0.6833887893524443,25.522056664639955,4.546085199884204,0.3296798886569241,0.1995476687543493,0.2282533054975643,0.2425191370911621,11.030801125615229,5.513975785599827,24.859577513535783,13185.368023307909,64.83985272142485,13.339151887668995,21.47723111482059,14.635117363834226,15.388352355101038,0.5426235212247739,0.7576285963382737,0.6997361477572559,0.5746951219512195,0.1219512195121951,0.7108868060562364,0.8985074626865671,0.8806941431670282,0.7483870967741936,0.1672597864768683,0.4891080027516624,0.6995073891625616,0.6415620641562064,0.5209580838323353,0.1105121293800539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278932231538,0.0046624299368544,0.0069192918378734,0.0090593325343787,0.0114181714657556,0.0135172273398137,0.0154780464443289,0.0174978574052156,0.0197348260434329,0.0218716752598412,0.0240951512605902,0.0261915998112317,0.0284301733973337,0.0305501498162048,0.0326054442117858,0.0347379409423997,0.0368445571716962,0.0389254784006638,0.0409406578783216,0.042937240761198,0.0571574834409411,0.0711481074289304,0.0842464315701091,0.0967321086631736,0.1090134368342228,0.1247791262392737,0.1385524905271872,0.151708491329726,0.1637893251520626,0.1759042610282279,0.1899933188215263,0.2032920028155287,0.2158200574562549,0.2269782204224581,0.238227909435292,0.2496011875747773,0.2604357337381133,0.271108312908956,0.2809962346323095,0.2902882391996154,0.2990365598362267,0.3070336534524909,0.3148310299129118,0.3221884134361972,0.3289848916934652,0.3353979140756794,0.3417018829236578,0.3478614656969943,0.3524730180914667,0.3579801980198019,0.3590188872285718,0.3603216567525886,0.3616198673627769,0.3628774397036908,0.3634890187506505,0.3642164682783164,0.3642741500269832,0.365567669049109,0.3666489334317241,0.3679896694585433,0.3697083725305738,0.3704593274842193,0.3708016593316346,0.3713168363562807,0.3736502645119211,0.3747350794107643,0.3754465178750035,0.3770528044466902,0.3782945736434108,0.3785412177799058,0.3798808432630614,0.3790993505447909,0.3784664536741214,0.3791132396106905,0.3768102134146341,0.3729285109471392,0.3717789506364483,0.3788158164310592,0.3786593707250342,0.3875096974398759,0.0,2.225803013483539,61.06360981268944,224.2811871952385,327.84080249045803,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95863,40892,382.62937734057977,7520,77.39169439721269,5839,60.44042018296945,2362,24.33681399497199,77.34109898624328,79.63193552731008,63.34986309044478,65.04411687268627,77.05653081235717,79.34572390873,63.246888597522926,64.94280964968638,0.2845681738861145,286.2116185800829,0.1029744929218523,101.3072229998926,62.37506,43.887990656725904,65066.87668860771,45781.99165134192,212.10748,127.51044738373018,220802.6871681462,132554.84116262817,246.39459,116.63126205509184,254266.4218728811,119525.6801202699,3347.87892,1483.6785046071168,3466812.889227335,1522162.2780500464,1428.52293,610.9610265704152,1479356.8738720885,626512.8115857163,2332.29494,954.8903768904946,2405060.888976977,971315.5362768412,0.38081,100000,0,283523,2957.585304027623,0,0.0,0,0.0,17749,184.66978917830653,0,0.0,23110,238.25667880204043,2185086,0,78474,0,0,0,0,0,39,0.4068305811418378,0,0.0,0,0.0,0,0.0,0.0752,0.1974738058349308,0.314095744680851,0.02362,0.3089369232713942,0.6910630767286058,25.62714465047568,4.50028050140768,0.3307073128960438,0.1978078438088713,0.2334303819147114,0.2380544613803733,11.0587567560222,5.52481898262655,24.98054649909365,13245.341876351791,65.33636459512105,13.460302176149138,21.60289887039629,15.007922838704328,15.265240709871284,0.538105840041103,0.7740259740259741,0.6866908337648887,0.5612619222303742,0.1129496402877697,0.7044952100221076,0.9201183431952664,0.8489361702127659,0.7006578947368421,0.1346938775510204,0.4877286925479696,0.7135862913096696,0.6344969199178645,0.5212464589235127,0.108296943231441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023998784871652,0.0045799515659989,0.0069074643215774,0.0090868479298231,0.0113125851238997,0.01373850036636,0.0158419674602932,0.0179546034174955,0.0199579188200927,0.0222081283181767,0.0246243354809632,0.0267581510312503,0.0289021496872528,0.0310924542667242,0.0332100279240383,0.0351322620264008,0.0372656678144161,0.0392154831223191,0.0410593413894771,0.0430200378701179,0.058007737145598,0.0718809439207407,0.0855128782562244,0.0983396519675281,0.1108677568469711,0.125951900632664,0.1390283692451111,0.1513608335105252,0.1639508702286818,0.1756478683042891,0.1903316760293579,0.2039322136546011,0.2167759188598637,0.2279971143756558,0.2392373450100667,0.2513792568630492,0.2620415722940631,0.2726413714748529,0.2827752119197031,0.2913898941774703,0.2997003459326877,0.3078884573995227,0.3157240889730241,0.3220345075485262,0.3283168749772255,0.3353269045798703,0.3415247871807711,0.3473102675730034,0.3525892544967173,0.3583375168441356,0.3600744005499171,0.3614527524894294,0.3624714217166728,0.3644034622243486,0.3656997986727313,0.3663255270760341,0.3665665379297191,0.3678028178308641,0.3691563860355477,0.3703890580793974,0.3712215790867476,0.3722289841770257,0.3735556778262158,0.3752857304515107,0.3760906653668048,0.376822696534235,0.3761322333121791,0.3777926506676865,0.3802402636521492,0.3816417371776878,0.3819578618088141,0.3856430065990665,0.3860912799592045,0.3864143395645819,0.3900993883792049,0.3913410516160154,0.3896772181506315,0.3898894801473598,0.3941585535465925,0.3956301209520094,0.0,1.8591385926264856,60.270037663291134,221.9824934922,343.47865586357733,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95668,41080,385.4684952126103,7490,77.4344608437513,5846,60.78312497386796,2314,23.999665509888363,77.31769350596971,79.73965298035009,63.289715480586615,65.08112875217569,77.03952063398366,79.4543480512522,63.190232527949725,64.9802847103441,0.2781728719860581,285.3049290978902,0.0994829526368903,100.8440418315928,63.00162,44.27736284893422,65854.43408454237,46282.31263215936,212.00879,127.30802470418703,221302.9748714304,132766.82349812586,243.12224,115.04956039152287,251815.57051469665,118469.73950182046,3361.24908,1485.6497862704298,3497720.0317765605,1537190.6032011006,1420.28274,601.2527444894814,1478685.579295062,622568.5960712896,2281.12368,929.0691036967288,2368067.77605887,957735.4650401572,0.38264,100000,0,286371,2993.3833674791986,0,0.0,0,0.0,17706,184.75352259898816,0,0.0,22897,237.05941380607933,2180453,0,78197,0,0,0,0,0,40,0.407659823556466,0,0.0,2,0.0209056319772546,0,0.0,0.0749,0.195745348107882,0.3089452603471295,0.02314,0.3150632911392405,0.6849367088607595,25.473282148174803,4.646894312397516,0.3262059527882313,0.1931235032500855,0.2454669859733151,0.2352035579883681,11.251302332400568,5.624755577979701,24.355264560299627,13265.418195783925,65.34067140130603,13.060584007133864,21.17915608953693,16.02619808011826,15.07473322451694,0.5437906260691071,0.7599645704162976,0.6932354483481908,0.5832752613240418,0.1178181818181818,0.6958119030124909,0.9019073569482288,0.8551724137931035,0.7119205298013245,0.11284046692607,0.4976588628762541,0.6916010498687664,0.6453804347826086,0.5489849955869374,0.1189624329159212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021780533268498,0.0048067172352249,0.0070152284263959,0.0093395258081891,0.0114765940561824,0.0137734311328443,0.0159753534776487,0.0183185361517792,0.0201713180436584,0.0220996740400582,0.0242775753220756,0.0267335691371226,0.0286685202347852,0.0308331871963359,0.0327420004752704,0.03492378853258,0.0371276606774424,0.0391063193319207,0.0410639582075884,0.0431205289173462,0.0574847170698573,0.0712983529608985,0.0845691719531151,0.0973007698545596,0.1096891366784929,0.125232971873941,0.1387253756083048,0.1514531444831665,0.163750320869342,0.1758774002319687,0.1902327487650726,0.2032959889050209,0.2162789177885243,0.2278461605852205,0.2388781751060664,0.2503687601894263,0.2614234469811257,0.2725900900900901,0.2820876712950874,0.2910134763476347,0.2995738570568345,0.3078831570077708,0.3156411015694403,0.3227284723721778,0.3305480551704006,0.3375339087546239,0.343836851198077,0.3494043376438244,0.3551243161961059,0.3606741573033707,0.3615172934765013,0.3634522661523626,0.3639146319100616,0.3649852490310638,0.3660947906755471,0.3672768000981941,0.3671846478627323,0.3680653753822881,0.3697533609277186,0.3714362224404177,0.3722942101715227,0.3743534057255676,0.3753130217028381,0.3761910074751757,0.3781102891728312,0.3785891250488981,0.3788699469753122,0.3809778168792811,0.3846775610613249,0.385672188595094,0.388463126979028,0.3881955974505918,0.3877473121699853,0.388427846934071,0.3902531886541024,0.3932974266906044,0.3948551061521773,0.4000405926527298,0.3988919667590028,0.4028363357608279,0.0,1.2784439911083985,61.26041434432219,219.2236909093021,345.7888564480737,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95722,40966,384.739140427488,7519,77.52658740937298,5768,59.798165520987865,2349,24.205511794571784,77.34880342590687,79.70810004431426,63.338894218876014,65.07775739324188,77.06170948626833,79.41810111688984,63.23399127958283,64.9741513600934,0.2870939396385381,289.9989274244206,0.1049029392931828,103.60603314848048,62.53148,43.989227708699374,65326.1319236957,45955.19076983283,211.51009,127.33511318103906,220514.2287039552,132577.3105253119,246.59294,117.01109229300744,254963.3731012724,120060.32001199982,3325.45536,1484.8010239168132,3450943.064290341,1528026.351222094,1383.86324,593.7576781350283,1436645.0032385448,611228.1065324879,2320.33592,963.9638413737372,2394707.528049978,981817.7706694908,0.38139,100000,0,284234,2969.369632895259,0,0.0,0,0.0,17709,184.5239338918953,0,0.0,23035,238.05394789076703,2183095,0,78383,0,0,0,0,0,45,0.4596644449551827,0,0.0,1,0.0104469192035268,0,0.0,0.07519,0.197147277065471,0.3124085649687458,0.02349,0.3124841732084072,0.6875158267915928,25.601947154488023,4.605516423323716,0.3333911234396671,0.1967753120665742,0.2283287101248266,0.241504854368932,10.851439223320533,5.303603714002951,25.220568139839774,13166.80557869727,64.9436660404438,13.148200188660825,21.733827352217588,14.667217507172722,15.394420992392668,0.5360610263522885,0.7568281938325991,0.6905876235049402,0.5755504935459378,0.1055276381909547,0.6831395348837209,0.9117647058823528,0.8286334056399133,0.7027027027027027,0.1433691756272401,0.4899817850637523,0.690566037735849,0.6470588235294118,0.5386875612144956,0.0960502692998204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019037396332263,0.0041762964765032,0.0065141291664552,0.0086855819339895,0.0107979502196193,0.0128671043925281,0.0152486570784959,0.0173726651015617,0.0195493331970773,0.0215853845760196,0.0237172785601541,0.0255044440339101,0.027841464041536,0.0299180496643742,0.0317203247336008,0.0337786870847412,0.0359809068223941,0.0379331811579165,0.0401235209715319,0.0423135432512972,0.0570291777188328,0.071311209485835,0.0841184246417255,0.0965892353659049,0.1085585300508406,0.1244287890327494,0.1373697502175251,0.1504540663692789,0.1625499455139847,0.1750319127254004,0.1894267433594002,0.2031116448656778,0.2158673191952148,0.2275988014784681,0.2389223796532605,0.2505567065131892,0.2619951751250893,0.2714470647830247,0.2812684499750216,0.2908111824014665,0.2988757279979622,0.3069433229177638,0.3138418179449832,0.3209743349995804,0.3273924505837616,0.334294516327788,0.340784009606244,0.3471446563283168,0.3529122443696609,0.3588319125913805,0.3603795455158099,0.3614459491107468,0.3620599647266314,0.3631439454284763,0.3632652453105678,0.3627667741440196,0.3639452002603464,0.3647772879794723,0.3654350172156843,0.3672069490462971,0.3691435224306612,0.3701788791822666,0.3702629421779431,0.3704786098059933,0.3709638379241903,0.3713866009128587,0.3729125348509672,0.3764347770942989,0.3795713376246728,0.3812992835127887,0.3818741953283061,0.3842839446329509,0.3845660812716318,0.3847405112316034,0.3881038762650372,0.3905439633337353,0.3979016598809897,0.3994187253477268,0.3967851099830795,0.4007843137254901,0.0,1.8302135671676416,61.37181460338804,223.61227802996956,330.7864479101847,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95640,40714,381.87996654119615,7458,76.75658720200752,5859,60.70681723128398,2403,24.78042659974906,77.26744378178137,79.68411640262335,63.28338998351626,65.06994162562653,76.97440916870818,79.38795791654539,63.177564425456886,64.9652590352158,0.2930346130731891,296.1584860779567,0.1058255580593723,104.68259041073225,62.71056,44.06045736544537,65569.3851944793,46069.06876353552,210.52061,127.00771942426806,219563.8122124634,132245.52244107443,244.03823,116.18863867309196,251703.78502718528,118752.09507706312,3392.84972,1515.5328677362054,3518024.884985362,1555279.5500091957,1470.72024,636.1543891531428,1520688.801756587,648413.0998378146,2381.19084,982.5272156352456,2457123.316603932,999049.1501467464,0.37891,100000,0,285048,2980.426599749059,0,0.0,0,0.0,17660,184.05478879130072,0,0.0,22960,236.55374320368043,2180834,0,78258,0,0,0,0,0,27,0.2823086574654956,0,0.0,0,0.0,0,0.0,0.07458,0.196827742735742,0.3222043443282381,0.02403,0.3051321138211382,0.6948678861788617,25.466754233233157,4.650507400952655,0.3329919781532685,0.1906468680662229,0.2258064516129032,0.2505547021676054,11.070421595945117,5.54640462627942,25.608591135183072,13172.903917663069,65.96470822297793,12.890271165164288,22.08327976861262,14.813180139445947,16.177977149755062,0.5381464413722479,0.7600716204118174,0.6955407483341876,0.5857898715041572,0.1171662125340599,0.6894812680115274,0.913846153846154,0.8659574468085106,0.7263513513513513,0.1279461279461279,0.4911652874077387,0.696969696969697,0.6414584740040513,0.5452775073028238,0.1144321093082835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304354874663,0.0048773068343135,0.0073403996101364,0.0093996423055036,0.0115667504247245,0.0136574734183403,0.0158451781307991,0.0182952352755005,0.0203171811572715,0.0225087300693285,0.0246756576585816,0.0267699387763487,0.0288353719382349,0.0310355486862442,0.0329063490261248,0.0348089488048962,0.0368705594796694,0.038902266877024,0.0408275775984022,0.0429125484799199,0.0575319273456932,0.0716889047150248,0.0847649850884193,0.0975224537500131,0.1093751649442092,0.1249814708934205,0.1390369788237293,0.1512707123448239,0.1630302252454598,0.1746577181208053,0.1892920687981883,0.2026946529334676,0.2150233413495544,0.2269524497253769,0.2380868512301172,0.249282683594226,0.2602145017465933,0.2700093393795501,0.2797583904809482,0.2886028358226063,0.2964923048417542,0.3043890338509062,0.3124807541985456,0.3195161174183328,0.3263744418896067,0.3328764416783977,0.3393078726044395,0.345632626028479,0.3515693904020752,0.3576938853823455,0.3594963727490104,0.3605675011730934,0.3619454141990926,0.3632816466253753,0.3645523891982266,0.3655126805186017,0.3656738988554782,0.3667117280490619,0.3670058513650325,0.3676900715964758,0.3689261808239841,0.3697897969765865,0.3711198511376131,0.3724142593176799,0.3724785785372721,0.3737256658149153,0.3757511284896926,0.3794831140003171,0.3810672722111836,0.3810425394779246,0.3822300622040664,0.3842849374660141,0.3893617021276596,0.3887286616260036,0.3898370086289549,0.3928528017503342,0.3934297390757623,0.3883211678832117,0.3790112749349523,0.3808745402533715,0.0,2.078838093857087,61.60607952721359,224.4488038976711,341.97230035794433,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95839,40746,381.6817788165569,7497,77.02501069501977,5831,60.26774069011572,2394,24.635065057022715,77.40182060844235,79.71644760852597,63.36325590393732,65.07607234778786,77.1054045085901,79.41816053892889,63.25446042718493,64.96922560219157,0.2964160998522516,298.2870695970803,0.1087954767523911,106.84674559628604,62.21358,43.78280227262821,64914.67982762758,45683.701074331126,210.23131,126.77322892133712,218759.7324679932,131679.89179604212,248.54445,118.09942248575868,255664.1033399764,120452.87370125596,3358.46084,1521.704961008908,3471547.824998174,1555107.2868539777,1408.76016,610.3641828863974,1457207.118187794,624183.7011573834,2361.92122,984.1783734872716,2431967.3827982345,996768.8263699332,0.37988,100000,0,282789,2950.667264892163,0,0.0,0,0.0,17580,182.81701603731256,0,0.0,23397,240.476215319442,2188012,0,78560,0,0,0,0,0,38,0.3964982940139192,0,0.0,0,0.0,0,0.0,0.07497,0.1973517953037801,0.3193277310924369,0.02394,0.3091689820661783,0.6908310179338216,25.560625022580503,4.547902177907493,0.3349339735894358,0.1982507288629737,0.2330646544332018,0.2337506431143886,10.982923060024548,5.4231481630778,25.363670299832997,13146.61369475714,65.77410613983054,13.532363262564973,21.99329088039147,15.224630148045012,15.023821848829076,0.5362716515177499,0.7647058823529411,0.6856118791602662,0.5710080941869021,0.0939104915627292,0.6880546075085324,0.9264305177111716,0.8448637316561844,0.6892307692307692,0.1385135135135135,0.4853412734768667,0.6894803548795945,0.6341463414634146,0.5338491295938105,0.0815370196813495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289252516251,0.0046316472245588,0.0071216978452298,0.0091613597814274,0.0112544606093878,0.0134573883301437,0.0156245222443051,0.0180036742192284,0.020207698755034,0.0222818132503607,0.0242529854953615,0.0264400377714825,0.0283491113920667,0.0305897615419463,0.0326636275500732,0.0349238494761422,0.0370255359231541,0.0389365298271446,0.0407881343609131,0.0425968133046093,0.0574444119978307,0.0715682072404528,0.0854544120883151,0.0982404538053469,0.1106359672220934,0.1261314547048448,0.1401404794948671,0.1531543024813421,0.165120771915593,0.176517221061653,0.1898968384591387,0.203093084330318,0.2150424304325622,0.2269732169200004,0.2372957758867119,0.248964768927567,0.2595930751383187,0.268812488050654,0.2788739745611746,0.2879190327898883,0.2965015386751197,0.3048883171558882,0.312536974372323,0.3195952911841569,0.3268408262454434,0.3336333374429787,0.3397440713194601,0.3453455364757698,0.3514336429950376,0.3564798309896349,0.3569147861232738,0.3584295039524058,0.360001127205095,0.3611773375525597,0.362263926655671,0.3624277368009446,0.3628526148969889,0.3638036709006359,0.3638992505389959,0.3644179894179894,0.3663977485928705,0.3673994850465438,0.367938194109126,0.3701518652280222,0.3710828271140681,0.3711380626274243,0.3734970726831358,0.3762192435970046,0.3775438349412013,0.378478738271112,0.3800954829232464,0.3810877494099978,0.3818862655496319,0.3828939301042305,0.3869238005644402,0.3861962461392255,0.3833230579531442,0.3847256347256347,0.3874374652584769,0.3926905132192846,0.0,2.106318661009528,64.91032543565305,218.48180181778392,332.77887950108953,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95702,40778,382.7506217215941,7489,77.23976510417755,5804,60.12413533677457,2424,24.99425299366785,77.32145341825886,79.70885935526074,63.3143933609397,65.08029750438612,77.02817626175357,79.41285220139943,63.20825036324117,64.9756245624056,0.2932771565052832,296.0071538613107,0.1061429976985266,104.67294198052456,62.39244,43.92247111914116,65194.499592485,45895.03993557205,212.43681,127.59360410277849,221480.146705398,132826.61188144286,243.3943,115.24442765136138,250970.38724373572,117896.69553114296,3344.57352,1488.3340624618188,3467235.209295521,1527631.58811918,1394.18772,596.4140449941502,1445201.9184552047,611600.0344759249,2387.76382,980.3877191121755,2464248.040793296,998797.9912628155,0.3798,100000,0,283602,2963.386345112955,0,0.0,0,0.0,17751,184.95956197362648,0,0.0,22875,235.6690560280872,2185180,0,78366,0,0,0,0,0,36,0.3761676871956699,0,0.0,0,0.0,0,0.0,0.07489,0.1971827277514481,0.3236747229269595,0.02424,0.3111026422764227,0.6888973577235772,25.94227447642665,4.661255332749472,0.328394210889042,0.1953824948311509,0.2344934527911785,0.2417298414886285,11.096127885393203,5.501067387330298,25.660098739085743,13184.95983044002,65.13560169826799,13.211039937440988,21.422685491372054,15.157898435152378,15.34397783430258,0.5389386629910407,0.7654320987654321,0.6857292759706191,0.5782512858192506,0.1183178902352102,0.6905829596412556,0.9014925373134328,0.8666666666666667,0.7315436241610739,0.1403508771929824,0.4935064935064935,0.7083854818523154,0.6345895020188426,0.535277516462841,0.1127012522361359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682742968306,0.0046242774566473,0.0070245249309728,0.009359660979055,0.011506999837213,0.0137621220764403,0.0159193122367602,0.0183581784766183,0.0202516893446058,0.0223250386414584,0.0243187270602226,0.0263098441126332,0.02835070105235,0.0304600958318305,0.032463175714035,0.0344610103600157,0.0363261585631124,0.0385042499974053,0.0405079351873037,0.0425556308301631,0.057144349279298,0.0713283785198367,0.0847562575431599,0.0972850678733031,0.1089529878460499,0.1248557972164893,0.1380840179158971,0.1510975259071496,0.1633521057524819,0.1748908741862485,0.1889696773846071,0.2019549262843411,0.2146461899893411,0.2258516201019537,0.2372942884801548,0.2485743707853971,0.259891795415249,0.2697638344030664,0.2793880837359098,0.2890550739243464,0.2980785915069349,0.3069258297663322,0.3141219928016669,0.3220922147361354,0.3294405016527318,0.3361424259225035,0.342321365980672,0.348731584438055,0.3546358130144432,0.3592921054715338,0.3604721671989327,0.3611076702864143,0.3615743547091081,0.3627972918233898,0.3643540170991093,0.3640999646713669,0.3634068899825369,0.3646059648429784,0.3658269253823363,0.3680694842406877,0.369650683771938,0.3704659612062975,0.3708522822974566,0.3735330555242707,0.3746968079945668,0.375974915682968,0.3765181018318188,0.3769120686913659,0.3782383419689119,0.3808721466682713,0.3808887865530739,0.3835793556728801,0.3866435719784449,0.3876548982931961,0.3887662025924148,0.3931832014607425,0.3906004401131719,0.3899187669235576,0.3957158962795941,0.3982751862014896,0.0,2.060443207138466,59.28228532642147,226.56875331911036,337.5874807312124,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95715,40460,380.34790785143394,7361,75.7665987567257,5758,59.67716658830904,2356,24.2804158177924,77.3455376358958,79.73160199981236,63.32130932583449,65.08697188154106,77.06069617185484,79.44356950251813,63.21882859957641,64.98545875541247,0.2848414640409515,288.03249729422475,0.1024807262580793,101.51312612859442,61.9201,43.521082228638406,64692.1590137387,45469.44807881566,208.89593,125.58262575745285,217761.6361071932,130730.28591996712,240.36941,114.00358408562754,247724.8811576033,116551.4982343874,3333.62904,1478.8288785839898,3456199.5507496214,1519017.4040707366,1406.91948,603.2909423785364,1458088.2411325288,618764.0500906152,2333.22602,956.1198269634372,2406892.4619965525,973184.677838617,0.37749,100000,0,281455,2940.5526824426684,0,0.0,0,0.0,17520,182.55236901217157,0,0.0,22578,232.5758762994306,2190601,0,78484,0,0,0,0,0,34,0.3447735464660711,0,0.0,0,0.0,0,0.0,0.07361,0.1949985430077618,0.3200652085314495,0.02356,0.3174705806284754,0.6825294193715247,25.606608862997543,4.643748314033717,0.328238971865231,0.1969433831191386,0.2250781521361584,0.249739492879472,11.02842527876109,5.434602839186355,24.94772207798123,13058.71188216672,64.41240119778475,13.083056399091213,21.188761423366643,14.44112525971746,15.699458115609431,0.5298714831538729,0.7627865961199295,0.683068783068783,0.5725308641975309,0.1063977746870653,0.6842105263157895,0.9318885448916407,0.8458049886621315,0.7090909090909091,0.140893470790378,0.4835140018066847,0.6954377311960542,0.6335403726708074,0.5357492654260528,0.0976460331299041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046626612225,0.0040975708707338,0.0062135133763135,0.0082623630561596,0.0103768210303572,0.0122530046852719,0.014592808631274,0.0164619139527996,0.0184473167539267,0.0208085855896448,0.0228193425978154,0.0247943221618512,0.0268265838279313,0.0290477809721063,0.0313825450717742,0.0333719295343644,0.0355614945564913,0.0376843481780536,0.0395482576096338,0.0414161726246913,0.0558520359675414,0.0701188881446751,0.0842498530769876,0.0968237435428042,0.1086899199459978,0.1237030534431881,0.1374989389695272,0.1494536857574918,0.1619102588768464,0.1732261492063151,0.1881110212880625,0.2015009421498343,0.2143471304650681,0.2257743350729204,0.236583755227823,0.2473270771242119,0.2581966298404196,0.2684896682826965,0.2781987295825771,0.2869374112906918,0.2952281797674822,0.3037780843055198,0.3116159704811013,0.3184740831208018,0.3251064759200611,0.3312163842016517,0.3374628097107283,0.3434157371884448,0.3493771966094687,0.3552764943595414,0.357074717508431,0.3579643710027174,0.3593725821199972,0.3608152189601917,0.3617589460566138,0.362019120458891,0.3624338624338624,0.3640614452475427,0.3655025874772953,0.3666373791891553,0.3677885973668845,0.3677529744140703,0.3684032761969095,0.369201349831271,0.3701784546841328,0.3707313228958706,0.3733298927690808,0.3755972534253077,0.3785426531910382,0.3815957787016309,0.3833814565287135,0.3872071879345384,0.3893187872637321,0.392467332820907,0.3915783443139501,0.3956843253727725,0.3968999530295913,0.3944571785788706,0.3861856823266219,0.3941199841080651,0.0,1.863362880323272,58.97793803364558,217.95122745856463,341.6956554327492,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95616,40540,381.03455488621154,7536,77.63345046854083,5925,61.4541499330656,2357,24.347389558232933,77.23812690061078,79.6702290051045,63.25655152000609,65.0545825566503,76.95662846426059,79.38506748200349,63.154432044349065,64.95327077349499,0.2814984363501907,285.16152310101006,0.1021194756570267,101.31178315531032,62.60782,44.10309606682285,65478.39273761714,46125.22597350114,211.17182,126.34614349581872,220322.55061914324,131612.16305854716,247.16891,116.96001187128805,255216.0830823293,119762.8622215942,3421.83912,1524.8653477203425,3551330.6977911647,1567690.477343359,1467.492,629.3443622814771,1525264.3804384205,648831.8722137284,2337.8211,959.013260275198,2416928.610274431,978819.301755012,0.37831,100000,0,284581,2976.2905789825973,0,0.0,0,0.0,17688,184.4356593038822,0,0.0,23232,239.70883534136547,2178514,0,78194,0,0,0,0,0,39,0.4078815261044177,0,0.0,1,0.010458500669344,0,0.0,0.07536,0.1992017128809706,0.3127653927813164,0.02357,0.3166436029689269,0.6833563970310731,25.73149165440121,4.624547436508896,0.3326582278481013,0.1913924050632911,0.2337552742616033,0.2421940928270042,11.124300182663829,5.5143640853637175,24.97625547382928,13126.767017649576,66.42518693172853,13.131516037039164,22.19439467443159,15.42230219231584,15.676974027941949,0.5443037974683544,0.7645502645502645,0.7006595636732623,0.5985559566787003,0.1031358885017421,0.7205673758865249,0.9429429429429428,0.8848484848484849,0.7211538461538461,0.1444444444444444,0.4892580287929125,0.6903870162297129,0.6388888888888888,0.5629077353215284,0.0935622317596566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021181287497973,0.0045439331392695,0.006650556412964,0.0090361139627781,0.0111138251099169,0.0132135252707397,0.0151563057779591,0.0173660769010746,0.0194137021050262,0.0216525150307785,0.0237523598456866,0.0259445352075049,0.0278918496104404,0.0298859817323354,0.0316934134704752,0.0338558642454343,0.0357442750069975,0.0376664658342509,0.0397335137667204,0.0419157303956853,0.0564516972098225,0.0705543330189667,0.0831932596545783,0.0961147563428788,0.1084956967104915,0.1240493994534708,0.1369097572635045,0.1498598394815659,0.1616844627993067,0.1739097744360902,0.1883280825169392,0.2013376983782846,0.2143518669848222,0.2265904060657857,0.2373211963589076,0.2493980048159614,0.2597062672677039,0.269435485689799,0.2793294818723559,0.2875057418465778,0.2961265317489788,0.3046476445132463,0.3126787642863077,0.320013948678483,0.3264216492960322,0.3330077279752705,0.3398224086610316,0.3463331162446206,0.3521672430380405,0.3580039211530309,0.3594246393857052,0.3605759929244631,0.3610435520361991,0.3631468176210174,0.3643063885656312,0.3641289289782348,0.3646523178807947,0.3661943921529773,0.3675592934661094,0.3695054698306059,0.3699737968216864,0.3705141219322864,0.371331447151725,0.3729111697449428,0.37352962576702,0.375108469851955,0.3763239696062629,0.3784710101234489,0.3797732908253631,0.3800375444342373,0.3811956371669198,0.3832502278698193,0.3828110101074312,0.3809780101491619,0.3822861468584406,0.3855020796197266,0.3899208282582216,0.3873565532514596,0.3897790055248619,0.38473400154202,0.0,1.9104204739776705,62.78518612017736,217.6345068731144,353.7067566176699,fqhc2_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95725,40752,381.9065030033952,7492,77.0854008879603,5825,60.3290676416819,2328,23.95403499608253,77.33641368994157,79.70959960963722,63.332022412709286,65.08878219566279,77.05239430352071,79.42552530354922,63.22782527335174,64.98713011407725,0.2840193864208515,284.07430608800155,0.1041971393575451,101.65208158554152,62.31258,43.83491903307348,65095.40872290416,45792.55056993835,209.91209,125.96900231393012,218756.6257508488,131074.00698453074,241.88453,114.9528843146252,249417.2891094281,117571.77561210912,3847.77666,1709.308405603379,3988205.6933925305,1755006.7295791705,1416.13059,608.7625907735182,1468529.161661008,625210.1699462932,2294.0318,949.0245020312144,2363160.887960303,964595.5127165882,0.3802,100000,0,283239,2958.882214677461,0,0.0,0,0.0,17573,183.0347349177331,0,0.0,22759,234.4424131627057,2188723,0,78547,0,0,0,0,0,37,0.3865238965787412,0,0.0,0,0.0,0,0.0,0.07492,0.1970541820094687,0.3107314468766684,0.02328,0.3061507436349887,0.6938492563650114,25.81644128533512,4.634936316109896,0.336480686695279,0.1914163090128755,0.2412017167381974,0.230901287553648,11.201433109945684,5.590259972342928,24.921681873667435,13186.746285113994,65.38351250425147,12.84862316050332,22.251999526066303,15.512469871760224,14.770419945921622,0.5407725321888412,0.7515695067264574,0.6903061224489796,0.5693950177935944,0.1182156133828996,0.7078066914498141,0.9069767441860463,0.8528784648187633,0.7272727272727273,0.18359375,0.490625,0.6941031941031941,0.6391683433936955,0.5230202578268877,0.1028466483011937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0044422357224718,0.0069343621503629,0.0091572485567932,0.011423862954335,0.0135559041003809,0.0159393834324233,0.018307126812334,0.0202324844345843,0.0223880597014925,0.0243349905181692,0.0263544244017124,0.0283307967586689,0.0305084047462096,0.0328445687280081,0.0349265085895024,0.0369864148442677,0.0388733271086212,0.0408888704111753,0.0429071438988312,0.0575802510390342,0.0714823805139365,0.084767447957632,0.0971909757994995,0.109364953886693,0.1246763129802458,0.1384683882457702,0.1516227827640478,0.1645533141210374,0.1759973432746282,0.1900846901331152,0.2039512100175176,0.2159016820967531,0.228099877665152,0.2396303743503532,0.2508790163861922,0.2616766200196096,0.2712908228630509,0.2810739107266357,0.2900952838497878,0.2989482200647249,0.3066635519476727,0.313755613330182,0.3198596760096263,0.3271718814476782,0.3336699383027721,0.3400718047511227,0.3456224715670559,0.3510146466543208,0.3570268235667023,0.3584206198352678,0.3597842728865226,0.3602129281861568,0.3608824211502783,0.3632226781051846,0.3635021453947065,0.3632894485785155,0.3638522427440633,0.3658310598651361,0.3671846960017227,0.36832,0.3702681779383449,0.371637679025847,0.3731349980929304,0.3750120784616871,0.3745712565129735,0.375532404742719,0.3777234326367274,0.380355498902344,0.3814321265152123,0.3833580292646786,0.3862393763871596,0.3857936918304033,0.3900327562002808,0.386084452975048,0.3914421553090332,0.3920250195465207,0.3960945529290853,0.398783185840708,0.4040597472232861,0.0,1.9856789651783595,59.54921997447513,226.57162155863975,340.29506314020915,fqhc2_100Compliance_baseline_low_initial_treat_cost,0 -100000,95601,40690,381.2512421418186,7494,77.20630537337476,5827,60.27133607389044,2397,24.623173397767808,77.26635035352784,79.70380876291036,63.26822878755484,65.07169394389422,76.96568022652085,79.40410604672522,63.15870178500798,64.96558193289852,0.3006701270069953,299.7027161851378,0.1095270025468622,106.11201099570168,61.91394,43.519871917550304,64762.628005983206,45522.17227597023,209.43883,126.05729254335392,218361.77445842617,131157.22624070843,245.2792,116.21862849696436,252328.19740379284,118276.96352383104,3842.82291,1719.7504771640936,3979356.847731718,1759532.754305503,1428.37608,613.5491026373879,1476124.862710641,623943.3028896172,2348.68496,967.5500387149116,2414925.4505706006,977605.50864421,0.38057,100000,0,281427,2943.755818453782,0,0.0,0,0.0,17544,182.7595945649104,0,0.0,23089,237.30923316701708,2185007,0,78363,0,0,0,0,0,30,0.3138042489095302,0,0.0,0,0.0,0,0.0,0.07494,0.1969151535854113,0.3198558847077662,0.02397,0.3145426906511274,0.6854573093488726,25.61570148777548,4.623976471812363,0.3401407242148618,0.1978719752874549,0.2354556375493393,0.2265316629483439,11.356280773917224,5.726369425809177,25.397887247262343,13242.485681889682,65.64309493926318,13.3512329695666,22.49823524045602,15.27240385551327,14.521222873727302,0.549854127338253,0.753686036426713,0.7048435923309788,0.5721574344023324,0.1159090909090909,0.6909350463954318,0.9,0.8431771894093686,0.6979166666666666,0.1397058823529411,0.5051965657478535,0.6899128268991283,0.6592890677397719,0.5387453874538746,0.1097328244274809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025943491831853,0.0049708343900583,0.0071496034204352,0.0095371726045225,0.0117566824779625,0.0140546490414505,0.0162679621162638,0.0184339331514464,0.0207497749038225,0.0230044061891587,0.0250112894618005,0.0270748103529798,0.029214963661444,0.0312303457093072,0.0331666907678641,0.0351813911135945,0.0374608702862947,0.0393136470808188,0.041528757884219,0.0435326755804009,0.058075105591101,0.0725506429267577,0.0859357766363092,0.0982715581255727,0.1106980281154614,0.1260327952205415,0.1398554575406525,0.152448,0.1645455810418829,0.1753663987621954,0.1891241734177624,0.2023566906599601,0.2156837118117954,0.2281860811639933,0.2395308590262238,0.2513312034078807,0.262160652441068,0.2720423447266175,0.2814250809705096,0.2905624010463275,0.2990836104127808,0.3074471948547931,0.3156878081152825,0.3221874287633924,0.3295256864104716,0.3367916604910824,0.3425112895132965,0.3477351560905937,0.3537441447052564,0.3588462351945855,0.3593261033775763,0.3604577416241555,0.3617958492164337,0.362863515235778,0.3644344417450404,0.3655027332473435,0.3663786256631826,0.367132232904045,0.3681393154327871,0.3688028586306585,0.3703717682581619,0.3712908750547656,0.3719962836268423,0.3725459258424434,0.3735492643131161,0.3741937182423716,0.3756880601746448,0.3769958887082895,0.3792134831460674,0.3787701848346957,0.3806689734717416,0.3817418451932393,0.3835378783010987,0.3858838033595315,0.3864908452708471,0.3892874222859875,0.3892409955170814,0.3903535663192315,0.3918956425201221,0.3945552147239264,0.0,2.483893111130425,61.87734107219083,216.56290046025475,345.3401347007857,fqhc2_100Compliance_baseline_low_initial_treat_cost,1 -100000,95703,40969,383.655684774772,7718,79.44369559992894,6050,62.58946950461323,2468,25.34925759903033,77.34534288058313,79.71348313823366,63.32656324425341,65.07416882758734,77.0478950274986,79.41638295975827,63.21882763540498,64.9695887854599,0.2974478530845346,297.1001784753895,0.1077356088484293,104.58004212743788,62.59814,44.04958756229362,65408.754166536055,46027.384264122986,212.47135,126.8292349177914,221402.54746455175,131915.15931349216,252.24976,120.05043162218088,259968.48583638968,122612.95674962876,4008.71513,1779.1209697147533,4146971.902657179,1817270.4718919485,1521.42341,648.6300850218075,1572083.3098230986,660149.6202205921,2432.85464,993.2553315536542,2500486.735003082,1001376.0527314696,0.38117,100000,0,284537,2973.1251893880026,0,0.0,0,0.0,17694,184.24709779212773,0,0.0,23733,244.3497069057396,2182399,0,78377,0,0,0,0,0,39,0.4075107363405535,0,0.0,0,0.0,0,0.0,0.07718,0.2024818322533252,0.3197719616480953,0.02468,0.3137544637359931,0.6862455362640069,25.714422192418628,4.64408824740129,0.3335537190082644,0.1930578512396694,0.2360330578512396,0.2373553719008264,11.346273383453743,5.663216590867305,25.91656480924008,13273.835059575997,67.64473716783208,13.552965561387635,22.759811459253037,15.799314180405847,15.532645966785555,0.5540495867768596,0.7816780821917808,0.7036669970267592,0.584733893557423,0.128133704735376,0.7246474143720618,0.9298701298701298,0.8497109826589595,0.7677419354838709,0.1527272727272727,0.4983556237667178,0.7088122605363985,0.6531020680453635,0.5339892665474061,0.1223083548664944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0049155737538767,0.0071324215737997,0.00925248832013,0.0113689519819398,0.0134189922520082,0.0157283671243489,0.0179965905494931,0.0204444626173001,0.0227761285699662,0.0250038443795171,0.026935992359749,0.0290883656823114,0.0313700845807535,0.0335503978369229,0.0354776352378097,0.0374700953840736,0.0394669932232588,0.0416948271380296,0.0435398820317222,0.0581514360313315,0.0714943587381994,0.0848592325208029,0.0974632000925916,0.1100465342042229,0.1255331082725704,0.1392038216560509,0.1517397833658178,0.1643244167530538,0.1759317852737705,0.1909235874671378,0.2037919310479242,0.2170085423581261,0.2290959647932038,0.2399198211394649,0.2513469767854371,0.2623459546347562,0.2725871245794277,0.2822739968662715,0.2915496992265826,0.3006388445246858,0.3092742501520752,0.316709882901763,0.3234303252646597,0.3300351295173034,0.336404563675609,0.342573686913605,0.348620000763485,0.354592729960706,0.359757710416336,0.3614898614898615,0.3625413907284768,0.3632326318171532,0.3641874157107846,0.3651437432899916,0.3653855019901338,0.3664546017039234,0.3675399213906293,0.3690632850819476,0.3701446114795417,0.3712109843937575,0.3721639279350623,0.3734235749117202,0.3740186705657406,0.3759664558035822,0.3772925534710179,0.3789163182312847,0.3792558903417345,0.382060152499294,0.3842256442990505,0.3846260069044879,0.3847061980144888,0.3872630105611401,0.3868230211387131,0.3925714285714285,0.3951283897288217,0.405225726654298,0.4065641025641026,0.4083798882681564,0.4060150375939849,0.0,2.4529444572443766,65.79769490376354,214.0017056547545,360.22451415804346,fqhc2_100Compliance_baseline_low_initial_treat_cost,2 -100000,95666,41016,383.7936152865177,7541,77.48834486651475,5872,60.82620784813832,2408,24.78414483724625,77.2498286400838,79.64802306438592,63.26585613190741,65.03881268886732,76.95209425984004,79.35106493453988,63.15729295257849,64.93354157444016,0.2977343802437673,296.95812984604686,0.1085631793289252,105.2711144271683,62.55524,44.06317184443316,65389.20828716576,46059.385617077285,214.10029,129.13224791212943,223251.1864194176,134433.80862769298,249.1788,118.3997487360321,257695.6703531035,121565.0018311273,3857.30158,1720.977676357492,3997902.305939415,1764796.6164199605,1418.63174,613.4142806224893,1469863.054794807,628177.0476394808,2365.08622,978.3429212569072,2436310.3296887083,990520.3683899222,0.38128,100000,0,284342,2972.2367403257167,0,0.0,0,0.0,17891,186.4194175569168,0,0.0,23432,242.12363849225432,2173313,0,78080,0,0,0,0,0,34,0.355403173541279,0,0.0,1,0.0104530345159199,0,0.0,0.07541,0.1977811582039446,0.3193210449542501,0.02408,0.3097188957519223,0.6902811042480776,25.389198680873964,4.645523234156829,0.3342983651226158,0.1978882833787466,0.2356948228882834,0.2321185286103542,11.14572002617023,5.55062961500403,25.470301984006948,13264.83224482195,65.87882244081516,13.6560783497232,21.837474058327857,15.378293827869928,15.006976204894173,0.5449591280653951,0.7805507745266781,0.6826286296484972,0.5765895953757225,0.1137197358767424,0.7007930785868781,0.9380053908355797,0.8532731376975169,0.7137809187279152,0.1517241379310344,0.4967670011148272,0.706700379266751,0.6328947368421053,0.5413260672116258,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070545808176,0.0042390499660267,0.006374275535165,0.0089311115626905,0.0112703563182146,0.0136883058684537,0.015988905657299,0.0182161637821003,0.0203620372264266,0.0227363505084954,0.0250482090838222,0.0270778333624382,0.0294393052282806,0.0314571072242091,0.0335339727639716,0.0358162336587787,0.0376883380655323,0.0400245026786826,0.0421686746987951,0.0441587420754087,0.0585438739472969,0.073095893853871,0.0861757729686614,0.0991824236876164,0.1111885012347242,0.1267964864006773,0.1397472655835191,0.1523770954781367,0.1649781220245418,0.1762784701332187,0.1900121934112416,0.2039216111575043,0.2170129232782594,0.2288707288981517,0.2406693969466491,0.2519365629758054,0.2628543915438706,0.2731981448254849,0.2825408753472697,0.2915579564392851,0.3002776583756404,0.3084868854000188,0.3164022548343362,0.3238282096343196,0.3303413539519738,0.3371612424204925,0.3424306393244873,0.3477716126722749,0.3534315701855922,0.3582829568352954,0.3596990894207742,0.3608850071170935,0.3626390736913625,0.3631437495460158,0.3646276794383449,0.3641816755617761,0.3638820873215251,0.3653576321827696,0.3665033943456217,0.3678158851261381,0.369462592998225,0.3701784112428984,0.372324255858138,0.3733459784130425,0.3745564143697438,0.3753744285038625,0.3763730748272005,0.3775558575356318,0.3790510485066723,0.3820975551198431,0.3818215086226613,0.3823936907172546,0.3823305889803673,0.3873120589137772,0.3898513679825807,0.3889485618808927,0.3890004634636181,0.3914656771799629,0.3999444135630906,0.3954022988505747,0.0,2.117489862469804,61.47911930124496,221.16327031264228,345.75736387575114,fqhc2_100Compliance_baseline_low_initial_treat_cost,3 -100000,95746,40895,383.4416059156519,7403,76.14939527499844,5683,58.780523468343326,2381,24.52321768011197,77.32698317968122,79.68718181186904,63.31555014592704,65.0614608852365,77.02839185103493,79.38618453831478,63.2068280389998,64.95427391970428,0.298591328646296,300.997273554259,0.1087221069272388,107.18696553222172,62.55282,43.98637871662063,65332.045202932764,45940.69592110441,209.0212,126.04454034045152,217738.45382574727,131075.13665369994,243.34486,116.09968574066866,250099.59684999892,118199.76445184436,3792.86977,1697.9602766204368,3925782.9047688674,1738128.6030073655,1386.45779,601.2279287172853,1433018.6221878722,613012.8660982777,2345.79092,971.283994323844,2418197.271948697,987945.3906221977,0.38097,100000,0,284331,2969.6384183151254,0,0.0,0,0.0,17491,182.08593570488583,0,0.0,22808,234.2238840264868,2182006,0,78340,0,0,0,0,0,41,0.428216322352892,0,0.0,0,0.0,0,0.0,0.07403,0.1943197627109746,0.3216263676887748,0.02381,0.3169642857142857,0.6830357142857143,25.572377563254072,4.685970053497787,0.332746788667957,0.1896885447826852,0.2331515044870667,0.244413162062291,11.153718924540472,5.508233279889843,25.471091719755343,13216.592659741533,63.97135406325323,12.60500281277209,21.16618592075005,14.938257229652208,15.2619081000789,0.5409114904099948,0.7829313543599258,0.6895822316234796,0.5886792452830188,0.1051115910727141,0.6934306569343066,0.9113924050632912,0.8444924406047516,0.7320872274143302,0.1333333333333333,0.4924646417806631,0.7296587926509186,0.6393557422969187,0.5428286852589641,0.098302055406613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0046439942406359,0.0068915819174634,0.0091128901170351,0.0113806254767353,0.0136041953057379,0.0157237834971652,0.0179143784578323,0.0202976166142022,0.022384622470599,0.0245772266065388,0.0267512523610084,0.0288025657103502,0.0308500231684085,0.032659376934186,0.0346053297787697,0.0367425536540671,0.0387739225143924,0.0406809961335384,0.0428386881693545,0.0571562793611024,0.0714330550499027,0.0851837872973936,0.0974602106679561,0.1094211147651572,0.124641848958058,0.1382726000084843,0.1512141632865979,0.1646164862294135,0.1761353880494505,0.1905074955005442,0.2037165381616564,0.216035077411844,0.2283860804498364,0.2394443710650288,0.250321407988651,0.2615058087578195,0.2717043611461525,0.2816341369203153,0.2906383612833709,0.2992321145226486,0.3068694419383941,0.31391033166139,0.3210078180355234,0.3278147710811107,0.3350003704526932,0.3410579408295902,0.346994744629828,0.3526226954037912,0.3580374264365536,0.3596077055903302,0.3608126560280264,0.362126902549911,0.3635533392285056,0.3647258742509615,0.365392007626428,0.3662513508359291,0.3678607916158586,0.3694596496044752,0.3694001790510295,0.3702213279678068,0.3718256725900923,0.3725746859495408,0.3734175792053605,0.3740321331784746,0.3750492449113591,0.3756131141898287,0.3779298112251362,0.3796456734679444,0.3834478351174309,0.3835302738847669,0.3868297372356334,0.3867452322118735,0.3909785932721712,0.3912550760222872,0.393353115727003,0.3937346437346437,0.3871559633027523,0.3886696730552424,0.3965381589299764,0.0,2.2311165872119405,60.54279154850265,215.89382730180523,329.5440235924736,fqhc2_100Compliance_baseline_low_initial_treat_cost,4 -100000,95762,41266,386.91756646686576,7506,77.1287149391199,5886,60.91142624423049,2410,24.74885654017251,77.39144353273707,79.72993145970955,63.36142006586866,65.08715381821247,77.09276098927567,79.43090506798832,63.25184173684866,64.97992201177928,0.2986825434613962,299.02639172122747,0.109578329019996,107.23180643319095,62.69934,44.16465134077481,65474.1337900211,46119.18228605795,213.60684,128.63390536634725,222505.18995008455,133771.7313405602,251.3837,119.59563970911476,258993.34809214508,122055.2512687868,3888.54973,1750.7968044686415,4023611.923309872,1791251.5658284533,1425.0278,623.7171720998703,1472126.783066352,635360.7932972393,2366.9026,989.7350801378868,2432886.4058812475,1001554.8191952518,0.3844,100000,0,284997,2976.096990455504,0,0.0,0,0.0,17826,185.5746538292851,0,0.0,23609,243.07136442430192,2183156,0,78347,0,0,0,0,0,45,0.4699149975982122,0,0.0,0,0.0,0,0.0,0.07506,0.1952653485952133,0.3210764721556088,0.0241,0.3150771565899317,0.6849228434100683,25.350144158923545,4.543463177722264,0.3314644920149507,0.1991165477404009,0.2405708460754332,0.228848114169215,11.203835412281114,5.668023674611214,25.596734577474187,13273.878275738813,66.2480754882214,13.399133230946047,22.111552200863837,15.795514007640486,14.94187604877104,0.5407747196738022,0.7431740614334471,0.6852895950794464,0.5713276836158192,0.1232368225686711,0.6937901498929336,0.9245283018867924,0.8568376068376068,0.7289719626168224,0.1462585034013605,0.4929765886287625,0.6756440281030445,0.6311530681051922,0.5251141552511416,0.1168091168091168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024299368216426,0.0045603332083464,0.0069195024451614,0.0091609875991509,0.0115402995394047,0.0137305594007002,0.0159058487874465,0.0183035076621707,0.020400657888016,0.0223152165015961,0.024405737704918,0.0265512147078135,0.0284522353859906,0.0306392350997807,0.0326777173016658,0.0348314722804697,0.0368637840746796,0.0388496520539705,0.0409537866661123,0.0431462827737788,0.05851346978822,0.0722155375359665,0.086019700609481,0.0987485540014722,0.1113126179605866,0.1275140107856614,0.1403892040935362,0.1530923831512198,0.1662964307836897,0.1779676461444452,0.1925544742054948,0.2059682443540711,0.2183634426835366,0.2298648368098427,0.2411522181298444,0.2529744446780959,0.2639794837486759,0.2739918426049731,0.2838237795543459,0.2920820980093636,0.3006047711004984,0.3086286937100225,0.3154083697156852,0.3229093001234582,0.3293911945409067,0.3355137538958079,0.3421167874078801,0.3484107579462103,0.3543923296190723,0.3602333623716375,0.3614319950453725,0.3619653004223937,0.3632214349106174,0.3635733271697677,0.3652800475412271,0.3651189474489406,0.3651331412468733,0.3654799829222634,0.3668347722027523,0.3684125820353713,0.3703097669694747,0.370935080405003,0.3718353763848519,0.3726726253461512,0.3731723285080381,0.3746713639709749,0.3754480543687093,0.3766056646262171,0.3785509096712416,0.3791678369377683,0.3772026939754589,0.3789405615131756,0.3797840393585074,0.3796403488461835,0.3831464943948318,0.3844961240310077,0.3907083015993907,0.3955798864557989,0.3857182244279018,0.3837031369548584,0.0,2.1205482287239894,61.958819254025656,227.43169333997977,340.0454248916027,fqhc2_100Compliance_baseline_low_initial_treat_cost,5 -100000,95726,40835,383.542611202808,7424,76.33244886446734,5770,59.69120197229593,2382,24.497001859473915,77.37264048070351,79.73120607033927,63.34029949113111,65.08132813415341,77.08442110048489,79.44302306062863,63.23418436368795,64.97809398449941,0.2882193802186208,288.183009710636,0.1061151274431608,103.2341496539999,62.56008,44.033671080290674,65353.27915090988,45999.69818052637,210.48356,126.28941233875618,219327.85241209285,131374.58197225016,243.95337,115.77872527002482,251246.8190460272,118156.42012640506,3826.74594,1711.2949743016993,3960739.0677558864,1750836.8826668807,1405.77189,609.4997627533777,1452028.6651484445,620204.3674167707,2344.56932,972.2602092240176,2413361.322942565,984404.4665649992,0.38095,100000,0,284364,2970.6035977686315,0,0.0,0,0.0,17620,183.4715751206569,0,0.0,22904,235.6726490190753,2184004,0,78388,0,0,0,0,0,47,0.4805382027871215,0,0.0,0,0.0,0,0.0,0.07424,0.1948812180076125,0.3208512931034483,0.02382,0.3118128355919202,0.6881871644080798,25.69514975395504,4.625493488243301,0.3223570190641248,0.2010398613518197,0.2386481802426343,0.2379549393414211,11.046840761418231,5.428980551950582,25.35882674477377,13215.721220659749,64.79300187842699,13.41261331757023,20.91702051197956,15.392729328962435,15.070638719914763,0.5405545927209705,0.7637931034482759,0.6833333333333333,0.5867828612926652,0.112163146394756,0.7085168869309838,0.9244186046511628,0.8654292343387471,0.75,0.1541218637992831,0.4886569872958258,0.696078431372549,0.6284114765570329,0.539756782039289,0.1014625228519195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0046618629209611,0.0069083051827505,0.0090591485212869,0.0113473446603422,0.0131929881711016,0.0153714425507624,0.0174946158635542,0.0196669699168958,0.0218141244152361,0.0237763241536284,0.0260674941735711,0.0280816846954304,0.0299382080329557,0.0321881770349736,0.0343024277313269,0.0364020375201888,0.0383873376758079,0.0401920738361759,0.0421310280179148,0.0574593827005805,0.0712028627631524,0.0849638251022334,0.097563539279783,0.1105008486279636,0.1256634174190683,0.1387309601595316,0.1518273344543539,0.1644826076276526,0.1765639579155092,0.1916254725210817,0.2046718455845757,0.2173619872101622,0.2284589303292136,0.2398719274695772,0.251781025294437,0.2624746042731798,0.2717066963933836,0.2810625340847119,0.2907491512982842,0.2987701785672927,0.3066646371449312,0.3143713994452478,0.3217115689381933,0.3294850427610369,0.3363941548183254,0.3419832598235766,0.3481161745419356,0.3543742791607812,0.3597891983991758,0.360936299809991,0.3621988677841903,0.363479928911958,0.364368248819901,0.3655499113646859,0.3648526181589174,0.3653012965990065,0.366443770999407,0.3687273225166016,0.3698441632711416,0.3704043945330809,0.3699112244696206,0.3713043843440282,0.3714989365274824,0.3713157387786553,0.3734735413839891,0.3734568781183179,0.3744583307165735,0.3755522827687776,0.3758208719044228,0.3782296215429403,0.3779632188795577,0.3782484982611445,0.377991159884164,0.3809255608748709,0.381076594735594,0.3788411557865769,0.3739886731391585,0.3862258953168044,0.3974702951322346,0.0,2.304083326099994,60.04514050816621,220.19097533334053,337.1077977917767,fqhc2_100Compliance_baseline_low_initial_treat_cost,6 -100000,95745,40895,383.66494333907775,7461,76.8290772364092,5779,59.80468953992375,2352,24.178808292861245,77.33281654085012,79.69679741846794,63.319784280511655,65.07021711008849,77.04361412133338,79.4076235816768,63.21404772606492,64.96694549776657,0.2892024195167408,289.17383679113584,0.1057365544467359,103.27161232191884,61.8255,43.462843084085335,64573.08475638415,45394.37368435462,207.31808,124.23757806955425,215942.19019269937,129182.06164362354,240.12,113.52071612262,247302.03143767297,115922.5534251135,3833.10996,1706.7187715460043,3967277.058854248,1747263.803893521,1363.521,585.0819656461882,1409268.7659930023,596543.7288990114,2325.03892,963.6340653934308,2391531.192229359,976536.8184664912,0.38179,100000,0,281025,2935.140216199279,0,0.0,0,0.0,17362,180.71961982348947,0,0.0,22577,232.30455898480335,2189913,0,78642,0,0,0,0,0,42,0.4386652044493185,0,0.0,0,0.0,0,0.0,0.07461,0.1954215668299327,0.3152392440691596,0.02352,0.3130313412003553,0.6869686587996447,25.686551332650225,4.595572264298983,0.327738363038588,0.2033223741131683,0.2320470669666032,0.2368921958816404,10.85295660210392,5.289442167063152,24.94083934604027,13219.235157579957,64.57224021487102,13.530115835899093,21.185434303895384,14.83088288038261,15.025807194693924,0.5308876968333621,0.7463829787234042,0.6937697993664202,0.5592841163310962,0.0927684441197954,0.6790393013100436,0.8909090909090909,0.8663793103448276,0.6885813148788927,0.1305841924398625,0.4846765039727582,0.6899408284023668,0.6377622377622377,0.5237642585551331,0.0825602968460111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021481624091844,0.0042700800259653,0.0063965884861407,0.0086703733444465,0.010763846498189,0.0131498533246414,0.015337704851161,0.0175191424196018,0.019897343612605,0.0223016352484615,0.0244930181057639,0.0264403577406072,0.0284709583885992,0.0305770399283205,0.0324590908152947,0.0342856552208876,0.0363094066839963,0.038335408883354,0.040375157268672,0.0425551863156688,0.0573963879319344,0.0713441237091829,0.0847201686223928,0.0978679114363212,0.1103217101657039,0.1254613326565358,0.1395282238391209,0.1526973516137273,0.1645604777114289,0.1763892017117667,0.1896516448608194,0.2026076606795066,0.2152054288013572,0.2271688624063849,0.2386619880982499,0.2503958806267649,0.2616435451288519,0.2718543866363493,0.2812092041184684,0.2899080257024064,0.2983802808748104,0.3064049562579783,0.3143629188048876,0.3216389705441238,0.3286221660017515,0.3350868743748379,0.3412988966900702,0.3474842967625212,0.3534646016551223,0.3594677882262693,0.3611096119596308,0.3622410987616867,0.3641280555830144,0.3648621248986212,0.3661543507103352,0.3659281777286475,0.3655198691793545,0.3669036334913112,0.3683138141223204,0.370567185543031,0.3715386060492203,0.3732912723449001,0.3726207752329274,0.3726995241942724,0.374749305303854,0.3773332634228188,0.3782915495381791,0.3788037110921123,0.3804051903970583,0.3812785388127854,0.3830324743925405,0.3844418179864618,0.3886168521462639,0.3929916237608545,0.3907523213947318,0.3923748057846301,0.395582329317269,0.3952917093142272,0.3999443362092958,0.4040989945862335,0.0,1.993626845778028,60.98546390454309,206.96553616407363,349.8840012408054,fqhc2_100Compliance_baseline_low_initial_treat_cost,7 -100000,95776,40913,382.14166388239227,7446,76.4909789508854,5756,59.4825425993986,2340,23.98304376879385,77.34910350822409,79.67852818263107,63.34642956891118,65.06702657545219,77.06399836978402,79.39461447039895,63.24240078010022,64.96650582124566,0.2851051384400733,283.9137122321205,0.1040287888109574,100.52075420652784,63.04166,44.38960523568605,65821.98045439358,46347.31585750716,211.15962,126.9868675765664,219867.28407951887,131983.2156277869,248.83983,118.80787418911709,256225.65152021384,121218.0623981238,3799.66668,1698.8841651929736,3929304.2620280655,1735972.8238508157,1399.75803,606.8307016952222,1443149.8392081524,615360.8107798427,2296.86006,943.205510830982,2356513.176578684,950112.9389226674,0.38101,100000,0,286553,2991.908202472436,0,0.0,0,0.0,17587,182.968593384564,0,0.0,23403,240.72836618777148,2181386,0,78331,0,0,0,0,0,34,0.3549949883060475,0,0.0,0,0.0,0,0.0,0.07446,0.1954279415238445,0.314262691377921,0.0234,0.3095420823740087,0.6904579176259913,25.757708059288746,4.576231863664612,0.3398193189715079,0.1940583738707435,0.2359277275886032,0.2301945795691452,11.279914583793676,5.805953267657977,24.694560555328486,13271.448662178596,64.77862220352726,13.12631197853241,22.05758874382267,15.05936907578085,14.535352405391317,0.5387421820708825,0.7726051924798567,0.6774028629856851,0.5655375552282769,0.1094339622641509,0.7126680820948337,0.9322033898305084,0.8475609756097561,0.7422680412371134,0.1594202898550724,0.4821551922634124,0.6985583224115334,0.6202185792349727,0.5173383317713215,0.09628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0051693205890998,0.0073246695275486,0.009639312957715,0.0122524098100622,0.0143735494116209,0.0168266780814937,0.0191355819768331,0.021436818604461,0.0234085654068875,0.0253862230053681,0.0274699339161843,0.0296176020224649,0.0316600965447677,0.033724778587704,0.0358201555511945,0.0381415562913907,0.0401493156366652,0.0420515591392263,0.0441325016401295,0.058086869403686,0.0729212425478506,0.0864805921949378,0.0991697320021019,0.1110197801734585,0.1272337232772194,0.1405918765369286,0.1534608717845103,0.1652775257996008,0.1768373687593743,0.1911896074822683,0.2045049039220563,0.2166458276705626,0.2286317308954114,0.2395946793411889,0.2512930127473891,0.2621904262324356,0.2732752319370256,0.2833119631449353,0.2917239168269671,0.3002463880438177,0.3085041654965834,0.3168087121212121,0.3235812308983041,0.3298753674594883,0.3361619201499808,0.3426546278787271,0.3487095212616882,0.3542771904792788,0.3592723330556988,0.3600507189683546,0.361573352818717,0.3626771986740955,0.363236549339583,0.3644380334889807,0.3646662067908331,0.3647217377517044,0.3656591237995,0.3666592545712673,0.3678360479684983,0.3681107167671305,0.3696101008496784,0.3703415332168935,0.3706512444304424,0.3710068350380532,0.3720942463447986,0.3731506533878302,0.3746936957006014,0.3769711606762324,0.3778215909548143,0.3776382025585369,0.3783231083844581,0.3786339078981219,0.3819945673263484,0.3768506056527591,0.3766756032171581,0.3772577351971101,0.3775425487754255,0.3793878124122437,0.3751993620414673,0.0,2.3552198967901856,62.25219016816644,214.8969013595984,334.26962830489737,fqhc2_100Compliance_baseline_low_initial_treat_cost,8 -100000,95673,40547,379.898194893021,7368,75.65352816364073,5710,59.15984656068065,2371,24.44785885254983,77.31532774038504,79.70675884655613,63.31028192710126,65.0757892695712,77.0260229638088,79.41432605210332,63.204591377897536,64.97129332333668,0.2893047765762446,292.43279445280734,0.1056905492037216,104.49594623452184,62.80802,44.19704271149104,65648.63650141627,46195.94108211413,210.36547,127.23010760333328,219352.1265142726,132462.0488952638,244.8657,116.79721603550377,252628.55769130267,119575.52499150424,3793.58539,1713.9744574387846,3931722.8580686296,1758432.9054739105,1406.98883,614.4874701400912,1457928.1510980108,629604.5945468465,2337.90168,969.875875486525,2412376.218995955,988042.134578384,0.37768,100000,0,285491,2984.028931882558,0,0.0,0,0.0,17633,183.7613537779729,0,0.0,23068,237.78913591086305,2180151,0,78223,0,0,0,0,0,40,0.4076385187043366,0,0.0,1,0.0104522697103676,0,0.0,0.07368,0.195085786909553,0.3217969598262757,0.02371,0.3143631436314363,0.6856368563685636,25.27963231878353,4.682566286783078,0.333800350262697,0.1893169877408056,0.2367775831873905,0.2401050788091068,11.504619159881203,5.812128222844962,25.17235098960964,13097.225335690771,64.5235128000987,12.592753806435349,21.67632520237297,15.22312848687335,15.03130530441705,0.5499124343257443,0.759481961147086,0.7046169989506821,0.613905325443787,0.1064916119620714,0.7178043631245602,0.9209726443768996,0.8491735537190083,0.7794117647058824,0.1529850746268656,0.4942877127535556,0.6888297872340425,0.6554149085794655,0.558300395256917,0.0951949229374433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.004734483667552,0.0071444518865818,0.0093674435616605,0.0114339192708333,0.0136694677871148,0.015890824527763,0.0178642561666922,0.0200337475072863,0.0222112991920371,0.0243372134762319,0.0266563944530046,0.0288356685801287,0.0308503951612072,0.0328444173780204,0.0350191333126486,0.0371444853131637,0.0391074208614426,0.0410555659572697,0.0431683168316831,0.0573903231535946,0.0715235532474059,0.0845717884130982,0.0974038957348964,0.1093685688052093,0.1249603048586853,0.138603979528997,0.1521190367143481,0.1645557443806714,0.1759383485923429,0.1898408113555285,0.2027872828864729,0.2148875487143759,0.2265354813290723,0.2377606203121386,0.2492262980998547,0.2593333184387497,0.2694355337948111,0.2787581476686879,0.287651759202999,0.2962598311190391,0.3039141074125677,0.311491720560017,0.3184213369182941,0.3247860130337516,0.3312981053878034,0.3373385288110959,0.3432951752766353,0.3488790980951147,0.3549764097955515,0.3560099266292619,0.3570926240019856,0.3585262296700661,0.3593740944653723,0.3604211341434358,0.3612079156239925,0.3617675982615868,0.3624919886279601,0.3632692867041935,0.3638916714367487,0.3642263613002457,0.3648699510706998,0.3661210233967346,0.3671506270508383,0.3672521410944985,0.3685204121765122,0.3689705755457761,0.3703055378739656,0.3709087032232844,0.3725166894554814,0.3738877875616615,0.3751343219428326,0.3779326216198939,0.3789964994165694,0.3795753674704583,0.3778288757110008,0.3774547703726612,0.3771591140012192,0.3803767219567051,0.388221619527315,0.0,1.992455883169775,63.04067631711296,219.19655622563303,322.7777197092772,fqhc2_100Compliance_baseline_low_initial_treat_cost,9 -100000,95630,40937,383.5616438356165,7404,76.16856634947193,5723,59.291017463139184,2339,24.09285788978354,77.3146043072854,79.73394229744646,63.296484254502126,65.0829517349373,77.02648049906024,79.44319006429541,63.19137374968045,64.97952727184463,0.2881238082251656,290.7522331510535,0.105110504821674,103.42446309266506,61.67238,43.367121834614615,64490.62009829551,45348.86733725255,207.06999,124.95732256036058,215981.27156749973,130116.6417390403,248.01731,117.92340880314352,255619.07351249608,120474.79580565543,3811.88975,1713.756886785755,3950875.603889993,1757178.474197907,1404.42137,611.1022095731814,1454440.4789292065,625109.6681391556,2305.89316,954.2667690492073,2377318.1219282653,968546.2330525884,0.38088,100000,0,280329,2931.3918226497963,0,0.0,0,0.0,17308,180.41409599498067,0,0.0,23246,239.3914043710133,2186914,0,78453,0,0,0,0,0,38,0.3973648436683049,0,0.0,0,0.0,0,0.0,0.07404,0.1943919344675488,0.3159103187466234,0.02339,0.3084232152028762,0.6915767847971238,25.42865568273592,4.645684221772705,0.3265769701205661,0.1977983575048051,0.240083872095055,0.2355408002795736,11.117394386849242,5.4766298560738695,24.873403971110044,13176.482246216376,64.87770541099847,13.27814108559732,21.13464358527237,15.600562199392495,14.864358540736264,0.5439454831382142,0.758833922261484,0.6821829855537721,0.5778748180494906,0.137240356083086,0.7147887323943662,0.925207756232687,0.840958605664488,0.7522388059701492,0.1622641509433962,0.4875668138508017,0.6809338521400778,0.6304964539007092,0.5216554379210779,0.1311172668513388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021278104830129,0.0042185963026437,0.0065273886384862,0.0091347863638672,0.0114339192708333,0.0134854349154613,0.0156873144908762,0.0180406578812953,0.0204355074613126,0.0226008950241164,0.0245333333333333,0.0263995891114535,0.0286713646417365,0.0307454536087785,0.0328764012469291,0.0351249069401935,0.0372703629638072,0.0395049679703479,0.0414741748865859,0.043503201985857,0.0579381421747446,0.0717563009364982,0.0848069895408913,0.0980105263157894,0.1099148168086386,0.125403699742691,0.1382533511779576,0.1513033099597178,0.1639353030529941,0.175457631488484,0.1889868269158152,0.2024213389982983,0.2143892260588164,0.2257718179627073,0.2372963559004431,0.248640429735189,0.2597344539317806,0.2692056338028169,0.2795909090909091,0.2891751453905183,0.297307625499392,0.3055903383225474,0.3130284442128697,0.3208117443868739,0.3278499313562308,0.3345208890642143,0.3413409779424651,0.3474044567748832,0.3532573500841859,0.3582426579336573,0.359353734621552,0.360149775611905,0.3617612618332134,0.3632519477510354,0.364864059146196,0.3652167230249001,0.366081648225868,0.3670127597761674,0.3677601362393133,0.3682320838718943,0.3687456518060282,0.3704685768561025,0.371285363756475,0.3715905780048858,0.3719274616383664,0.372196608580136,0.3729079348786816,0.3750667630148606,0.3761413119820199,0.3769610575774468,0.3800921490807901,0.3795437586611235,0.379398266190719,0.3802611367127496,0.3852941176470588,0.385729808040565,0.3834302782581355,0.3830711920529801,0.3865850264403005,0.381139489194499,0.0,2.1072339443269086,63.07483118114197,224.4354411682924,319.7555356045737,fqhc2_100Compliance_baseline_low_initial_treat_cost,10 -100000,95641,41165,385.99554584330986,7547,77.49814410137911,5867,60.70618249495509,2354,24.215556089961417,77.29129418892526,79.69073056443075,63.29829466637945,65.06955907970661,77.00476592558364,79.40411667701453,63.19395971337266,64.96785962567432,0.2865282633416228,286.6138874162232,0.1043349530067914,101.69945403228552,62.33128,43.84446964889988,65172.133290116166,45842.75535481633,210.21893,126.51031454383192,219202.7477755356,131678.97088469582,248.64504,118.38702074768374,255334.88775734257,120254.18928653968,3897.3202,1743.5838054629248,4036345.646741461,1784551.21097408,1467.49648,634.7888827593049,1516164.155539988,645555.0027572028,2326.23428,963.3572513737408,2395858.240712665,976379.3311146044,0.38363,100000,0,283324,2962.36969500528,0,0.0,0,0.0,17584,183.21640300707853,0,0.0,23380,239.86574795328363,2182828,0,78316,0,0,0,0,0,43,0.4495979757635323,0,0.0,0,0.0,0,0.0,0.07547,0.1967260120428537,0.3119120180204054,0.02354,0.3166018320993851,0.6833981679006149,25.44241079680669,4.679710316500304,0.3277654678711437,0.1948184762229418,0.2386228055224135,0.2387932503835009,11.42057412178941,5.7679269525238,25.126480737819367,13378.234745645264,66.12215852959693,13.161345584992368,21.81848823833971,15.604730349077665,15.537594357187166,0.5524117947843873,0.7629046369203849,0.7061882475299012,0.5964285714285714,0.1256245538900785,0.7008733624454149,0.9090909090909092,0.851380042462845,0.7269736842105263,0.1524163568773234,0.50701090585355,0.7035670356703567,0.6590909090909091,0.5602189781021898,0.1192579505300353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107857338208,0.0046943120754334,0.0072064391055895,0.0095518748094705,0.0116900161767847,0.0140551000662015,0.016212247894447,0.0182674045785937,0.0206015867822672,0.0227407695615669,0.0250020510296168,0.0270731056015446,0.0290928543505544,0.0311910723669974,0.0332923845605921,0.0356928614277144,0.0375360126018198,0.0395792883619033,0.0416285167304811,0.0436282890621742,0.0578092670386858,0.07181163063516,0.086382679364546,0.0992221789514677,0.1120222904727226,0.1278973772782117,0.1413846545794233,0.154190277363555,0.166358417344637,0.178238230715551,0.1933191723364566,0.20676585883525,0.2198092874404023,0.2305940323022173,0.2412314543330173,0.2535633076368476,0.2633131466624953,0.2740373789687007,0.2831902620702184,0.2929196846062162,0.3019276410998552,0.3100785171836787,0.3182211270775828,0.324910007199424,0.3324044779751764,0.3391659772045294,0.345957062600321,0.3519458329082934,0.3580253322259136,0.3635066205037397,0.3654642303283663,0.3667977101869094,0.3682024329250201,0.3684798051552669,0.3697665746886419,0.3708696923526786,0.3710423789456945,0.3712955472271294,0.3718415896043178,0.3725173002606273,0.3735101086300543,0.37469886714317,0.3749366767983789,0.3768494538903276,0.3771870468825519,0.3774702521360801,0.3789563974267333,0.3810336113217084,0.3843597539418794,0.3839964774637739,0.3841029175281415,0.3841257955821789,0.3851200713421237,0.3856634153893791,0.3872577240452888,0.3869908814589665,0.3876200976531737,0.3827419693470502,0.3753557199772339,0.3742690058479532,0.0,2.5227812089936146,60.4654018932506,231.19346038684012,337.68188903769527,fqhc2_100Compliance_baseline_low_initial_treat_cost,11 -100000,95632,41062,385.0384808432324,7693,79.40856617031956,5964,61.77848418939267,2492,25.692236908147898,77.27514686010801,79.68672357976959,63.27600815666828,65.05645328687716,76.97082973643923,79.38064667256519,63.16540767991788,64.94786284736747,0.3043171236687811,306.0769072043996,0.110600476750406,108.59043950968328,61.47328,43.26493342100984,64281.0774636105,45241.06305526376,212.54949,127.84245152418876,221703.0491885561,133127.00928997487,253.39428,120.63056855260402,261090.12673582067,123155.81546053768,3951.92776,1778.165145286688,4096801.3008198095,1823751.8877433168,1445.2848,626.9963482567044,1496697.1515810608,641033.3029286265,2449.75344,1010.7353365559884,2527816.253973565,1027652.9603878824,0.38183,100000,0,279424,2921.867157436841,0,0.0,0,0.0,17769,185.2099715576376,0,0.0,23805,245.14806759243768,2182194,0,78345,0,0,0,0,0,37,0.3764430316212146,0,0.0,1,0.010456750878367,0,0.0,0.07693,0.2014770971374695,0.3239308462238398,0.02492,0.3131288343558282,0.6868711656441718,25.48205854756909,4.574003983629696,0.3296445338698859,0.1973507712944332,0.2365861837692823,0.2364185110663983,11.179193760488404,5.647042904517567,26.48030642590981,13298.673045366517,67.59017308273178,13.819674797356996,22.416883454794025,15.826098693438464,15.5275161371423,0.5451039570757881,0.7612574341546304,0.7029501525940997,0.5804394046775336,0.1092198581560283,0.6974393530997305,0.8756613756613757,0.8686274509803922,0.7373737373737373,0.1404682274247491,0.4946428571428571,0.7071339173967459,0.6449175824175825,0.5385996409335727,0.1008100810081008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0045204382595299,0.006656181827406,0.0088979177247333,0.0110355068704929,0.0134736027374938,0.0155810254109393,0.0177027289154781,0.0200382362262684,0.0223111893840104,0.0245453519739878,0.0265147623841712,0.0286740195069755,0.0309739530185431,0.0328886227050246,0.0350898971717046,0.0370447148572731,0.0390806746427384,0.0411775724275724,0.0435494467676841,0.0586870407725994,0.0733491208583942,0.0865934112110261,0.0993257479983143,0.111820006337805,0.1274227371899426,0.1418050817738387,0.154647307770209,0.1669930758446506,0.1786282348895194,0.1922686644501058,0.205667067894206,0.2181320717696047,0.2296354783524148,0.2398843292642546,0.2512692893090844,0.2625334392943889,0.2728288471305231,0.2825708333807643,0.2919931074095347,0.3008598981119376,0.308912563946121,0.3163643270965903,0.3237330512549283,0.3305045536453513,0.3373063906524048,0.3435695999196827,0.3493700907885341,0.3552364864864865,0.3600757385167432,0.3615848220318369,0.3629559044896494,0.3644035452270896,0.364794919751207,0.3659347375639133,0.3667609444171175,0.3672694939743732,0.3685008487005817,0.3695410268262202,0.3705248460547042,0.370907583920431,0.3716612054413663,0.3732478974769723,0.3743924392439244,0.3755325329202169,0.3757545535667419,0.3755236728837877,0.3779779843289027,0.3806295915108066,0.3813886210221793,0.3828125,0.3838242420978945,0.384282532612154,0.3847867844794468,0.3830945558739255,0.3862645348837209,0.386940938133084,0.3939768976897689,0.3832820799552698,0.3895800933125972,0.0,2.273362772749963,65.92942012635154,226.6020162318468,341.95341137317257,fqhc2_100Compliance_baseline_low_initial_treat_cost,12 -100000,95693,40956,384.3854827416844,7439,76.65137470870388,5851,60.65229431619868,2392,24.65175091176993,77.28391542799022,79.68069830855154,63.28504443165552,65.05931784574784,76.9967494361183,79.39142557436715,63.18086157540286,64.95682704624163,0.2871659918719302,289.2727341843937,0.1041828562526632,102.49079950621363,62.8991,44.240969182128126,65730.09520027589,46232.18958766903,210.84655,126.8418171881519,219853.00910202417,132067.34786050385,248.25414,117.93195720482154,256528.95196095845,121004.5996543135,3869.50301,1725.605919534396,4011730.105650361,1771339.3869294468,1423.55902,619.0833418153811,1473229.3480191864,632555.4131166551,2353.7553,965.1924716737782,2427460.796505492,981699.1317608522,0.38092,100000,0,285905,2987.73160001254,0,0.0,0,0.0,17633,183.7647476826936,0,0.0,23311,240.6550113383424,2178562,0,78272,0,0,0,0,0,37,0.3866531512231825,0,0.0,0,0.0,0,0.0,0.07439,0.1952903496797227,0.3215485952412958,0.02392,0.3130656469088591,0.6869343530911408,25.48516461771292,4.529189470408997,0.3286617672192787,0.1994530849427448,0.2401298923260981,0.2317552555118783,11.204732873932723,5.5444273948075375,25.35120307554701,13225.846497546128,65.88355077672179,13.560434114383224,21.81689028797769,15.693692590321351,14.812533784039529,0.5494787215860537,0.7549271636675235,0.7020280811232449,0.5779359430604982,0.1268436578171091,0.7205987170349252,0.9178082191780822,0.854389721627409,0.7375415282392026,0.2037037037037037,0.4955035971223021,0.6807980049875312,0.6531593406593407,0.5344202898550725,0.1077348066298342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813866763948,0.0046454073352807,0.007005289501203,0.0090751110252944,0.0112837418475219,0.013711188982153,0.0158090672650313,0.0179862728275523,0.0200664791613398,0.0223524350017414,0.0242833986498963,0.0265507639509673,0.0288330932290594,0.0307736702703259,0.0330635671077895,0.0349766787668186,0.0370654370239883,0.0389374467996761,0.0408384043272481,0.0427011027036041,0.057444008022731,0.071538501805999,0.0842393585761061,0.0973410355966623,0.1095374288940719,0.1251548028578989,0.1393607984710129,0.1524551931248202,0.1646198736653092,0.1760981315933505,0.1896001724323741,0.2031021522264224,0.2163892306184882,0.2282667017071274,0.2391285182164819,0.2509324216321819,0.2616103570869575,0.271487500845299,0.280408246766531,0.2898459279314419,0.2978745608237381,0.3058005347844443,0.3145502017564681,0.3216726931994282,0.3296147897358454,0.3362684318423197,0.3424636917751524,0.3486333227142402,0.3542677075498612,0.3597801820367508,0.3607915076142817,0.3619211686879823,0.3630567858049592,0.3639125151883353,0.3653161274940768,0.366075544764422,0.3662641029715557,0.3674783095438007,0.3689628549369477,0.3698644889168087,0.3704381628108842,0.3724950649039899,0.3728447362846854,0.3732507403974408,0.3741899332456269,0.3749374094083542,0.3760693575242579,0.377242277042258,0.3790470804467694,0.3814272607603016,0.3816405174786678,0.3830196749358426,0.3853529300447865,0.3869795609386828,0.3897320592092936,0.385180794309425,0.3845446182152714,0.3853529171766626,0.3823033707865168,0.3773291925465838,0.0,1.9051109607503116,62.562436741276805,223.08071109143572,339.3034824154203,fqhc2_100Compliance_baseline_low_initial_treat_cost,13 -100000,95662,40814,380.903598084924,7615,78.30695574000124,5810,60.21199640400577,2345,24.084798561602305,77.35161970545354,79.75924469063494,63.31721993396855,65.09506450926905,77.06432308027907,79.47250835477585,63.211433708363344,64.99290026618874,0.287296625174477,286.7363358590893,0.1057862256052075,102.1642430803098,61.34062,43.14976164804747,64122.24289686605,45106.48078447814,207.96574,125.09004021987433,216864.4602872614,130230.58290635188,247.00652,118.06008957283515,255936.2965440823,121540.53290917203,3823.8661,1725.2218837884143,3960417.2085049446,1766647.0156262813,1440.00682,624.7952635216067,1491833.141686354,639690.849924482,2298.80408,957.7918507067149,2361703.330476051,963608.5793429908,0.3801,100000,0,278821,2914.647404403002,0,0.0,0,0.0,17379,181.11684890552152,0,0.0,23129,239.5517551378813,2191729,0,78542,0,0,0,0,0,46,0.470406221906295,0,0.0,0,0.0,0,0.0,0.07615,0.2003420152591423,0.3079448456992777,0.02345,0.3138457686529795,0.6861542313470206,25.646429257115106,4.567740902086693,0.3314974182444062,0.2010327022375215,0.240275387263339,0.2271944922547332,11.284600099498126,5.814135064047193,24.89148003739083,13254.582241896873,65.14283002456443,13.441863579458497,21.72437354478957,15.621410371915513,14.355182528400862,0.551118760757315,0.7414383561643836,0.7045690550363447,0.5830945558739254,0.125,0.7239010989010989,0.9239766081871345,0.8862275449101796,0.7463976945244957,0.131578947368421,0.493339457969683,0.6658595641646489,0.6407017543859649,0.5290753098188751,0.1233396584440227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0046037621051564,0.0072868248523352,0.0094692351458993,0.0116876379578675,0.0136382155225096,0.0159384081986437,0.0182169078228548,0.0203374233128834,0.0227389122196046,0.024961014445174,0.0274375205524498,0.0295870167025141,0.0319497711245824,0.0339018066502081,0.0362234868080703,0.0387138903572872,0.0404891925001557,0.0426065423672382,0.0448070907194994,0.0592286069573758,0.0732856559479806,0.0861569467187303,0.0990013574803481,0.1111369105416473,0.1259751669824602,0.1385278627251104,0.1519102033854943,0.163717098223839,0.1754483943722478,0.1895754020038178,0.2024962621075212,0.2152546432381823,0.2269403393541324,0.2389343494972411,0.2505016907810854,0.2617693399336246,0.2724928495822354,0.2820221656976744,0.2914012738853503,0.3001863145591519,0.3081735266604303,0.3154980239960243,0.3221252935819393,0.328600750573861,0.3354483404381145,0.3415067208502657,0.3476547603915088,0.3540904330286142,0.3597680701060816,0.3612101799388988,0.3617925306638799,0.3627861116980069,0.3644901674637691,0.3659983055634002,0.3667049544375526,0.3664651324744389,0.3678115606366727,0.3692460385365687,0.3700536672629695,0.3712927113483442,0.3717765894236483,0.3732974609046578,0.3738968776598128,0.3738169207427209,0.3747390941348361,0.3751356910243958,0.3756188313940655,0.3771178977773081,0.3796443948333599,0.3801354195260316,0.3806417395916203,0.3800542484072415,0.3788724852749943,0.3782686679882941,0.3754821600771456,0.3745143745143745,0.3786921980036667,0.3765840220385675,0.379072441548486,0.0,2.0047943752465818,64.53688079467472,208.87775930988636,339.443218435016,fqhc2_100Compliance_baseline_low_initial_treat_cost,14 -100000,95788,40923,383.4300747484027,7497,77.04514135382303,5750,59.41245249926922,2331,23.959159811249844,77.3507064425629,79.67913212860368,63.34838135415546,65.07008297399656,77.06667112960663,79.39371890536742,63.24578051943841,64.96951276126863,0.2840353129562629,285.4132232362616,0.1026008347170446,100.57021272793064,61.76324,43.47676549132518,64479.099678456594,45388.53039141144,207.71218,124.48341262653098,216223.4309099261,129335.06900903568,239.64867,113.7192141000127,246005.0110661043,115622.54179210323,3798.65434,1693.9424325219688,3924678.905499645,1727434.4464350794,1426.53534,617.4274662237617,1470376.7277738338,625809.7805062941,2299.67572,949.246759012859,2364483.254687435,961059.756195112,0.38228,100000,0,280742,2930.8681672025723,0,0.0,0,0.0,17345,180.4401386394956,0,0.0,22520,230.8848707562534,2193675,0,78670,0,0,0,0,0,39,0.4071491209754875,0,0.0,1,0.0104397210506535,0,0.0,0.07497,0.1961127969027937,0.3109243697478991,0.02331,0.300453514739229,0.699546485260771,25.655558672699147,4.640633455490701,0.3273043478260869,0.1944347826086956,0.2415652173913043,0.236695652173913,11.10177730483781,5.576465352081155,24.90244929407134,13226.883327426542,64.66689180895365,13.111062698440373,21.235427371796423,15.205203635424304,15.115198103292544,0.5363478260869565,0.7647584973166368,0.6880977683315622,0.5579553635709144,0.1168258633357825,0.7028985507246377,0.9331395348837208,0.854389721627409,0.7436823104693141,0.1506849315068493,0.4837528604118993,0.689922480620155,0.6332155477031802,0.5116906474820144,0.1075771749298409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0045417680454176,0.0067581965965478,0.0089387290752478,0.0109199609565641,0.0128783328412758,0.0152969711793241,0.0177873478176567,0.0197839704875481,0.0219300040933278,0.0241920609873557,0.0261138131297584,0.0282305304914393,0.0302234849654632,0.0323994349175577,0.0347527841484328,0.036774520658506,0.0389591540534936,0.0409392557820727,0.0427888769741705,0.0573276986487191,0.0712060059808862,0.0846899732690392,0.0978813737441674,0.1090817111600602,0.1250779557105861,0.1382579372653814,0.1513403641704002,0.1634888438133874,0.1758281800936693,0.1901369037368692,0.2038562133886691,0.2161530771905424,0.2279699346690847,0.2385575284481337,0.2497981217021935,0.2611190338250367,0.2716071568968809,0.2814072059823249,0.29027866752082,0.2993163498625771,0.3079806614349776,0.3157956977803006,0.3233269071881025,0.3292631118987218,0.3360101489081302,0.3423991196808843,0.3483266126467632,0.3541199787556511,0.3597383241667656,0.3616425822771185,0.3626355479715968,0.3646090302936325,0.3648196678587458,0.3653960690887433,0.3656270634664701,0.3660291641516027,0.3672274451591621,0.3680534102220849,0.370050060108015,0.3703123821021655,0.3707970235963551,0.3721436114044351,0.3741840767927724,0.3743517665875054,0.3758126069219634,0.3772714162099798,0.378612624669407,0.3792968611140734,0.3820076137046684,0.3840827255101098,0.3846486720398117,0.3851780558229066,0.3871696936627952,0.3911421465467763,0.3941958887545345,0.3962707615167659,0.400963149078727,0.3907980687304743,0.3837623762376237,0.0,2.354966469918649,60.862237357859286,216.9991615097492,335.9133536115094,fqhc2_100Compliance_baseline_low_initial_treat_cost,15 -100000,95736,40982,384.2337260800535,7653,78.71647029330659,5954,61.60691902732514,2385,24.515333834712123,77.31652017658898,79.67664092248359,63.31665033110207,65.0621381171144,77.0267310436454,79.38706871978223,63.21053011440524,64.95880644461567,0.2897891329435822,289.57220270135053,0.10612021669683,103.33167249872588,62.22084,43.75562844966439,64992.10328403109,45704.466919094586,213.81302,128.64581346955907,222767.9765187599,133807.87360409574,251.90184,119.84805347310257,259707.5917105373,122533.86390401189,3952.20662,1775.412619872072,4091016.211247598,1817310.3064622125,1451.89403,632.9859596336078,1499589.360324225,644231.1993419518,2352.37508,981.4566507032376,2419650.100275758,992610.93627245,0.38226,100000,0,282822,2954.186512910504,0,0.0,0,0.0,17879,186.1473218016211,0,0.0,23675,243.81632823598227,2181690,0,78413,0,0,0,0,0,38,0.3969248767443804,0,0.0,0,0.0,0,0.0,0.07653,0.2002040495997488,0.3116424931399451,0.02385,0.3136499254102436,0.6863500745897564,25.602557166382606,4.610198746788591,0.3421229425596238,0.1896204232448774,0.2368155861605643,0.2314410480349345,11.172372141369795,5.569160664422896,25.46710777638624,13237.389913448706,67.17919384676551,13.134139083271368,22.98460572748318,15.81632461292381,15.244124423087152,0.5498824319785018,0.7661647475642162,0.6980854197349042,0.5900709219858156,0.1124818577648766,0.7042449547668754,0.9041916167664672,0.8792079207920792,0.7129337539432177,0.1423487544483986,0.500774850564534,0.7081761006289308,0.6383812010443864,0.5544373284537969,0.1048313582497721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023804459031006,0.0049472328950436,0.0071961431108855,0.0093479784996494,0.0118204752604166,0.01398366365877,0.0159811530498811,0.0179734891035722,0.0202556237218813,0.0224727153592563,0.024403498518359,0.0265841111419154,0.0286178493938116,0.0306341001297444,0.0327701448199034,0.0349843985700411,0.0369546089746907,0.0390436180696022,0.0409143356098169,0.0429328971631575,0.0575670258080681,0.0711639879457559,0.0849631392946654,0.0975153254892064,0.1092693933930134,0.1245346476013199,0.1386183777820211,0.1509719176478102,0.162921888522068,0.1747041594695791,0.1891050499827645,0.2032421786228316,0.2160607279964329,0.2275764036958066,0.2387432018847568,0.2505736169458084,0.2619140690440823,0.2721051683774536,0.2812649029181333,0.2907736389684813,0.2990206292977703,0.3070333528379169,0.3149398332385825,0.3222759622193152,0.3291776639867667,0.3360327885042714,0.3428070175438596,0.3488505454174737,0.3543527581512932,0.3604336043360434,0.3612621241349539,0.3621044205528796,0.3639166654880273,0.3651097665375296,0.365826731713139,0.3661854909376009,0.3661280327946994,0.3673769166020235,0.368359542837501,0.3699388709097447,0.3719723836112578,0.3732975444875236,0.3733336145798177,0.3736097978297086,0.3753601084561939,0.376323791548705,0.3754304407713498,0.3772928526249209,0.3792104054006291,0.3805922368947579,0.3840183696900114,0.386569970453935,0.3911080015265233,0.3961903304773562,0.3967968157695223,0.3973246565437455,0.3956231569144808,0.3999181334424887,0.3923766816143498,0.3978996499416569,0.0,2.236453324129966,63.55169889092821,229.63295010608493,342.59293419351,fqhc2_100Compliance_baseline_low_initial_treat_cost,16 -100000,95678,40778,383.20199000815234,7574,78.00121239992475,5891,60.98580655950166,2426,24.979619139196053,77.40264542862671,79.7815575425596,63.35728834693722,65.11121829322995,77.09777513098796,79.47655493442645,63.24513429026041,65.0020537497616,0.3048702976387574,305.00260813315094,0.1121540566768075,109.1645434683528,61.91306,43.54885972590782,64709.81834904576,45516.064012529336,209.89802,125.45769215594372,218796.6199126236,130544.12463876553,240.91307,114.29153487849516,247897.2177512072,116494.85720664376,3946.55821,1758.2067880159043,4087492.589728046,1800652.8008387804,1459.90175,628.6067506638993,1510711.1352662055,642051.6619191731,2413.44444,1009.441625560317,2487345.9520474924,1024429.6631996194,0.38019,100000,0,281423,2941.35537950208,0,0.0,0,0.0,17523,182.51844729195844,0,0.0,22600,232.3836200589477,2192330,0,78612,0,0,0,0,0,41,0.4180689395681348,0,0.0,0,0.0,0,0.0,0.07574,0.1992161813829927,0.3203063110641669,0.02426,0.317,0.683,25.511186092958408,4.662887746937771,0.3262603972160923,0.1974197929044304,0.2278051264640977,0.2485146834153793,10.926065243366978,5.235369923230957,26.00978834639144,13156.324307455176,65.84721621562832,13.299213502392185,21.523017213605783,14.810747421950294,16.21423807768006,0.5267356985231709,0.7601031814273431,0.668054110301769,0.563338301043219,0.1222677595628415,0.6863309352517986,0.9289940828402368,0.8496732026143791,0.7109634551495017,0.1232876712328767,0.4774494556765163,0.6909090909090909,0.6110731373889269,0.5206532180595581,0.1220136518771331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022480785004708,0.0045709305036131,0.0068573747210387,0.0089678356336898,0.0109821946085559,0.0133902205567887,0.0153639116294717,0.0172482420061032,0.0192938531500689,0.0215113185148798,0.0237397240615838,0.0258397667542706,0.0281921839175003,0.0301756987785536,0.0321498952755336,0.0341181577641805,0.036241263266891,0.0382603822925098,0.0401672421683238,0.0420766280330192,0.0566867602043481,0.0703874345549738,0.0836612830442128,0.095923412761033,0.10865804518892,0.1241045826323418,0.13798410120886,0.1501410700026617,0.1629475259164262,0.1746176451661339,0.1886847320351542,0.2016863114372612,0.2142258959160367,0.2262851144328657,0.2374419679200862,0.2495681636991762,0.2601103863522328,0.2703878094553137,0.2801441343440867,0.2889905633400057,0.297608871433522,0.3063261874737285,0.3143920595533498,0.3218194008764158,0.3278115556850038,0.334302253972164,0.3400653177671834,0.3463640986524282,0.3517866846068259,0.3581107801007092,0.3598810932960292,0.3607413208039676,0.3622079365302649,0.3639000736026324,0.3648259268060836,0.364783920829695,0.365497446956963,0.3665931461302959,0.3673814898419864,0.3682488017740897,0.3696085061617072,0.3702371541501976,0.3712059322566455,0.372094064949608,0.3730939972978189,0.373241466034424,0.3735122888525624,0.3756163863952459,0.3781804027035634,0.3794758951790358,0.3829023649581301,0.3848638174184519,0.3873925501432664,0.3881331181308124,0.392663172939495,0.3901799547133834,0.3922694815274759,0.3912688698490412,0.3949185307925987,0.3923664122137404,0.0,2.2288961895816337,61.36082224142098,218.4911462295216,349.0669470176392,fqhc2_100Compliance_baseline_low_initial_treat_cost,17 -100000,95715,40901,383.1792300057462,7408,76.00689547092932,5772,59.57268975604659,2326,23.872956171968863,77.33907921770925,79.70491737905625,63.32552877917672,65.0748992172157,77.05254664544715,79.41991758322989,63.2201096385612,64.97324826500036,0.2865325722621037,284.9997958263657,0.1054191406155169,101.65095221533704,62.6659,44.11142398666341,65471.34722875202,46086.21844712261,211.5327,127.50179565564687,220318.7483675495,132525.92138708336,243.80842,116.21335489589272,250076.1218199864,117883.54012365208,3833.87572,1714.0780274159035,3962687.802329833,1747990.3227455495,1374.37874,599.5788954849165,1418107.088753069,608620.7548293546,2300.61524,955.139176361324,2364266.2069686046,963184.1127453567,0.3801,100000,0,284845,2975.970328579637,0,0.0,0,0.0,17634,183.5031081857598,0,0.0,22918,234.72809904403695,2183354,0,78272,0,0,0,0,0,55,0.5746225774434519,0,0.0,0,0.0,0,0.0,0.07408,0.1948960799789529,0.3139848812095032,0.02326,0.3096707818930041,0.6903292181069959,25.21479616694777,4.644515750830059,0.3336798336798336,0.194040194040194,0.2351004851004851,0.2371794871794871,11.080206959696966,5.373307866144224,24.714212322884094,13183.183013011603,64.81191835454523,13.021974987103428,21.86743682380457,14.824292218531255,15.098214325105973,0.5343035343035343,0.7642857142857142,0.6879543094496365,0.5607958732498157,0.1037253469685902,0.6976090014064698,0.9164345403899722,0.8568548387096774,0.6955017301038062,0.1330935251798561,0.480919540229885,0.6925098554533509,0.6293706293706294,0.5243445692883895,0.0962419798350137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.004623433507726,0.0070541903920911,0.0091956592423996,0.0111390293276909,0.0133925388791005,0.0155611074287462,0.0175907870422362,0.0199492832164256,0.0220098732051045,0.0243879926569374,0.0264782309501556,0.0284677012948278,0.0306398936773023,0.032607685876196,0.0344043101041332,0.0367768937510359,0.0391249299487328,0.0410652635081735,0.0432680787222737,0.0581386849881488,0.071725278059703,0.0852547366655133,0.0980924138221128,0.1101268626024233,0.1252274169663634,0.1385101800473194,0.1510514827237395,0.1625983242134062,0.1745377673330543,0.1890121022059853,0.2028285541020532,0.2152634213217853,0.2267175906673378,0.2382583224129766,0.2493402523673297,0.260412129334897,0.270505459867162,0.2799146269470051,0.2887503152296017,0.2970707421558411,0.3052194265652428,0.3130612776127879,0.3209493458570949,0.3278013839990287,0.3348269240238318,0.3402454877256137,0.3455194673172715,0.3522221647350993,0.3580626434810143,0.360083439876186,0.3610820484581498,0.3629128980824314,0.364491126403477,0.3657468765356723,0.3663050316878175,0.3665016972811776,0.3669405971574908,0.3677146976041738,0.3690557369988874,0.3711161714059883,0.3712358658996231,0.3720031098316909,0.3734663610624241,0.3730972426603623,0.3725146504813729,0.3742901393908105,0.3752888663775365,0.3775719437177402,0.3790270876743067,0.3793436737699636,0.3837553082836101,0.3847284345047923,0.3896113949527791,0.3856153335231047,0.3818334735071488,0.3856762262968187,0.3856168629882207,0.3827090960292875,0.3785992217898832,0.0,2.896522179195029,62.30326412788732,209.6725428265749,339.29122770164673,fqhc2_100Compliance_baseline_low_initial_treat_cost,18 -100000,95674,40813,383.7615235069089,7474,76.83383155298199,5745,59.33691494031816,2315,23.715952087296444,77.30793472821749,79.68414948197837,63.31631099018998,65.07019440187848,77.02423686687244,79.40078138355948,63.21232814542012,64.96908715440205,0.2836978613450469,283.3680984188902,0.1039828447698667,101.10724747643474,62.7055,44.12573234604975,65540.79478228149,46120.92349650871,211.19167,127.5302189666054,220031.4191943475,132587.12812948698,247.63366,118.14387572976356,253544.80841189876,119557.6735745463,3797.82935,1711.362371767608,3924167.046428497,1743358.281003832,1430.63167,621.7589492575779,1476857.4011748228,631410.6541563835,2290.41958,952.01522254948,2349155.528147668,958056.105551211,0.38076,100000,0,285025,2979.1270355582496,0,0.0,0,0.0,17683,184.0939022095867,0,0.0,23236,237.8911721052741,2180377,0,78301,0,0,0,0,0,46,0.4494428998473984,0,0.0,0,0.0,0,0.0,0.07474,0.1962916272717722,0.3097404335028097,0.02315,0.3115738375063873,0.6884261624936127,25.640635510952333,4.570682323806758,0.3380330722367275,0.1984334203655352,0.2231505657093124,0.2403829416884247,11.193129906762676,5.579309169451443,24.615846767781186,13199.61136678515,65.04689317074687,13.408545129145624,22.13143894799816,14.294093031964666,15.212816061638415,0.5495213228894691,0.756140350877193,0.6946446961894953,0.6138845553822153,0.1151339608979,0.714183891660727,0.9228650137741048,0.865424430641822,0.706081081081081,0.1532567049808429,0.4963150621833256,0.6782496782496783,0.6381082933516107,0.5862068965517241,0.10625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020553631816617,0.0042762757893883,0.0067560027997849,0.0090294141545461,0.0114107883817427,0.0135737851818663,0.0159068430014989,0.0180398162327718,0.0202621194463186,0.0221105321882261,0.0240804527002091,0.0259856262833675,0.027777492106914,0.0297105181827547,0.031948156479924,0.034053199077855,0.0362227241643699,0.0383297689001474,0.040153958181629,0.0419707268254034,0.0560848218949127,0.0705493217216546,0.0832948631861675,0.0965047910552943,0.1092613288910444,0.1250462683883794,0.1390088379149735,0.1528397296002555,0.1649357864820394,0.1768511167850323,0.1900694706230815,0.2033626901521217,0.2154888379021998,0.2272265048384451,0.2376918422355465,0.2494155966453585,0.2603397093944602,0.2700929531183182,0.280189782181814,0.2893214338904991,0.2980973005523966,0.3066554338668913,0.3150740082889283,0.322513679562254,0.3301051197196807,0.336612763856314,0.34237951316169,0.348564867967853,0.3537908012833002,0.3590741255409537,0.3608440892153156,0.3619903878024527,0.3634949809133324,0.3634939059779454,0.3647136077366206,0.365240921250884,0.3657745336577453,0.3661085793540717,0.3673634269604978,0.3681404491356562,0.3691475119265363,0.3700437898089172,0.3714117101547022,0.3725768002518778,0.3740615161055945,0.3757958431991581,0.3763477960838437,0.3777911888955944,0.3785284590467376,0.3806029989575816,0.3803044280442804,0.3851732473811442,0.3860779684808269,0.3880919327471849,0.3878269139324774,0.3887691570881226,0.3935078854693002,0.4010955569080949,0.406027397260274,0.4080854309687262,0.0,2.75927477712377,61.47958194092194,221.98713324985317,329.624939831804,fqhc2_100Compliance_baseline_low_initial_treat_cost,19 -100000,95696,40830,382.19988296271526,7460,76.51312489550243,5802,59.93980939642201,2326,23.909045310148805,77.38171245272493,79.75535366659577,63.34258245905804,65.09492522520262,77.0921585071989,79.4675037620964,63.235048318141295,64.9913272568659,0.2895539455260234,287.8499044993674,0.1075341409167478,103.59796833671452,62.85356,44.1856588089612,65680.4464136432,46172.942243104415,211.26205,127.39554401208022,220063.91071727136,132425.44517229588,251.86095,119.95264024164908,258815.01839157328,121992.02848625024,3836.5004,1720.7331704897815,3967808.9784317,1756883.5170642252,1435.00719,627.0356334422161,1481694.501337569,637390.6801390349,2284.89986,953.7327545836788,2350844.716602575,963096.2931191536,0.38064,100000,0,285698,2985.474836983782,0,0.0,0,0.0,17668,183.9052833974252,0,0.0,23607,242.39257649222537,2182515,0,78267,0,0,0,0,0,40,0.4075405450593546,0,0.0,0,0.0,0,0.0,0.0746,0.1959857082807902,0.3117962466487936,0.02326,0.3127781309599491,0.6872218690400509,25.645630658555344,4.640121691489431,0.3360910031023785,0.1909686315063771,0.2447431920027576,0.2281971733884867,11.32723908948516,5.719166537445801,24.67626695883996,13181.92975646066,65.01061070169328,12.757352313021867,21.915281667568,15.765406862403657,14.57256985869978,0.5515339538090314,0.7707581227436823,0.6912820512820513,0.5887323943661972,0.1223564954682779,0.7088150289017341,0.9319526627218936,0.862144420131291,0.756578947368421,0.1473684210526315,0.5022634676324128,0.7,0.6389819156061621,0.543010752688172,0.1154956689124157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0047542296424697,0.0068190120550391,0.0091217520264916,0.0112496694265313,0.0133299389002036,0.0158654091256691,0.0182326758952999,0.0203939768766036,0.0228273108813594,0.0249530976082343,0.0270633771727189,0.0291446847458324,0.0310578200809666,0.0331682146542827,0.0353402194030005,0.0374409644543872,0.0395674867952722,0.0416545325955818,0.0434682924287426,0.0578381201044386,0.0716028184645022,0.0850550349936518,0.0973959703298437,0.109304778985125,0.124615270711921,0.1377846637094891,0.1507336499350469,0.1631281454017032,0.174688324785958,0.18917316894426,0.2024446224801334,0.2149896660502556,0.2263835277908388,0.2379307309774237,0.2491418447569482,0.2598302229857106,0.2703599550056243,0.2803221963809632,0.2895840014660741,0.2983473369904867,0.306806221494562,0.3140614269814582,0.3220225177156149,0.3288442137760869,0.33553653784497,0.3416517527502096,0.3472812937730803,0.3524503070982455,0.3573908566449722,0.3587923999838412,0.3597441012588567,0.3608680335376594,0.3620570141235595,0.3625810856947764,0.3629840424718104,0.3636550730603005,0.3643939891068968,0.3658449202422588,0.367099227103154,0.3688919735139089,0.3707794007045877,0.3711085522872396,0.3722220978895777,0.3733201676219835,0.3746548580359468,0.3752567320858055,0.3767140520820229,0.3763557864438906,0.3774710632035321,0.3792378689573243,0.3796108200577355,0.3816745252962916,0.384858774502238,0.3836424155967665,0.3837028160575195,0.3851737451737452,0.38436348751535,0.3833473037161218,0.3927738927738928,0.0,2.655134017409668,60.474128307473705,221.2392030653675,335.1466598194256,fqhc2_100Compliance_baseline_low_initial_treat_cost,20 -100000,95857,40598,380.7546658042709,7430,76.23856369383562,5763,59.5366013958292,2264,23.2533878589983,77.44506122741345,79.72168810052192,63.40474875222951,65.08363457041146,77.1641374272891,79.44157746365785,63.30130569972948,64.98322884336706,0.2809238001243415,280.110636864066,0.103443052500026,100.40572704440363,63.51532,44.662092846512905,66260.49219149358,46592.41666911431,212.08445,127.4896038677601,220682.6418519253,132431.55311324168,245.63297,116.39952748126696,252381.8709118792,118520.24269462631,3808.65905,1703.6499137489743,3936210.198524886,1740401.1930034172,1411.64277,612.7805695727782,1454172.6947432111,620858.417211104,2241.40196,934.0657879068336,2303967.4932451462,944597.4465854544,0.37912,100000,0,288706,3011.840554158799,0,0.0,0,0.0,17801,185.10906871694291,0,0.0,23100,237.1031849525856,2182560,0,78394,0,0,0,0,0,34,0.3546950144486057,0,0.0,0,0.0,0,0.0,0.0743,0.195980164591686,0.3047106325706595,0.02264,0.3095994914176732,0.6904005085823267,25.37660136942779,4.640082316101165,0.3326392503904216,0.198160680201284,0.2333853895540517,0.2358146798542426,11.289505214064173,5.568094021028099,24.029836836599525,13050.32692385828,64.5994928159292,13.20388754780698,21.50150081623294,15.057565462825652,14.83653898906364,0.56047197640118,0.7635726795096323,0.7146583202921231,0.6118959107806692,0.1214128035320088,0.7092857142857143,0.9090909090909092,0.8791946308724832,0.7531645569620253,0.1473684210526315,0.512720605088242,0.6987341772151898,0.6646258503401361,0.5685131195335277,0.1145251396648044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022571307111479,0.0043963168184442,0.0067732678989688,0.00893183386789,0.0111163045908102,0.0130327293444974,0.0151042939786523,0.0171107508132195,0.0192486393203239,0.0213399047015276,0.0236025353526044,0.0255374138496882,0.0274947619243252,0.0296347346657477,0.0318256748403049,0.0341456868877672,0.0359070883405381,0.0379573692009574,0.0401146131805157,0.0421201589911139,0.0558596886372404,0.0696824070204763,0.0827565988545582,0.0953954962328695,0.1078718121370255,0.1231714267620796,0.1366230740721131,0.1489560643893109,0.161165793991874,0.1730670434112509,0.1871043325917088,0.1999870397770841,0.212579531389112,0.2244387665967854,0.235074421925633,0.2468656287001073,0.2575304898441506,0.2680791277958863,0.2775238980802159,0.2870303612913562,0.2952402984211439,0.3028892268101532,0.3107697042148496,0.3178159955927088,0.3249150072850899,0.3312144282652081,0.3366780663184135,0.3439696444942446,0.3497128932325759,0.3553618594823032,0.35703125,0.3579406343704437,0.3592276731683976,0.3607834088090225,0.3608103698869872,0.3620392013077287,0.3623154070915265,0.3631806565755848,0.3645111755673093,0.3661821291150064,0.3679467965530161,0.3699099277442343,0.3701263272757796,0.371094799033211,0.3727132678605815,0.3732074881368306,0.3741744477340014,0.3768147822261328,0.3775263581911801,0.3799380017486686,0.3826493220960059,0.3850562399571505,0.3879660157240679,0.3879603837821108,0.3892290032523436,0.3875332205846823,0.38859375,0.3848890749267476,0.3809121621621621,0.3825396825396825,0.0,2.281143938456605,61.75479529876892,216.70861567946665,331.72876043641514,fqhc2_100Compliance_baseline_low_initial_treat_cost,21 -100000,95682,41017,383.750339666813,7525,77.41267950084655,5821,60.23076440709851,2420,24.84270813737171,77.29747507811412,79.70083302656552,63.28577397120039,65.06600241289216,77.00101403566961,79.4068163683174,63.17468225829767,64.95932700099189,0.2964610424445055,294.0166582481254,0.11109171290272,106.67541190026952,61.71792,43.46981628028714,64503.16673982568,45431.550636783446,210.81247,127.17735334124626,219734.33874709977,132324.88173454386,244.02289,116.04133889533396,252117.2738864154,118975.51034868875,3894.97482,1753.9494706875864,4031485.1278192345,1793838.1834489084,1425.92492,620.0358016184558,1474520.8294141009,632264.153087766,2397.24634,1011.8253466951024,2463082.251625175,1019133.1911441772,0.38161,100000,0,280536,2931.9621245375306,0,0.0,0,0.0,17694,184.28753579565645,0,0.0,22917,236.5126147028699,2182696,0,78334,0,0,0,0,0,36,0.3762463159214899,0,0.0,0,0.0,0,0.0,0.07525,0.1971908492964021,0.3215946843853821,0.0242,0.31939736346516,0.6806026365348399,25.55223899387648,4.644297343740251,0.3255454389280192,0.1877684246693008,0.2399931283284659,0.246693008074214,10.963949273762111,5.35980007730854,25.95541992269013,13336.677033514748,65.75131582807444,12.826292248596218,21.646979929374425,15.40855117502898,15.86949247507482,0.538223672908435,0.757548032936871,0.6970976253298153,0.5848246241947029,0.1162952646239554,0.6846416382252559,0.9152542372881356,0.8586065573770492,0.7124183006535948,0.1324921135646687,0.4889807162534435,0.6820027063599459,0.6410803127221038,0.5490375802016498,0.1117068811438784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025842150066885,0.0047369809100683,0.0070257373470734,0.0094400975510618,0.011688232421875,0.0137810914868911,0.0159928195504059,0.0182696431853924,0.0201990243104206,0.0222322352049646,0.0244017519206507,0.0268129565136992,0.0289197530864197,0.0309144494136559,0.0329884772642795,0.0352728213085078,0.0375107536355061,0.0399148538497481,0.0418868866785967,0.0440342685621378,0.0585629818440131,0.0733967044241117,0.0868383494941862,0.0997422544842459,0.1122047451762298,0.1276280565872033,0.1419319906999458,0.1551784744191991,0.1676773510443738,0.1791501562449663,0.1926868730449789,0.2061559477861138,0.2190918202815182,0.2307574296484614,0.2418241559529847,0.2531517734274426,0.2644224319127051,0.2741431968534109,0.2833498164125999,0.2923156325266659,0.3004649113654017,0.3090538259564891,0.3174230568596766,0.3255562496996492,0.3317502070242096,0.3381313630522882,0.3441111152934091,0.3498129922516244,0.355921625732971,0.3618238902062606,0.3628557906835237,0.3641543354999308,0.3649188408260389,0.3659592394067489,0.3666592078764824,0.3663095439383925,0.3669973807445035,0.3678546746964162,0.3687037132057399,0.3692274685784778,0.3704099420795141,0.3714957890158554,0.373211363350258,0.3744232922732363,0.3749186374484703,0.3754703177257525,0.3756002744111594,0.3758914484064373,0.3800310143088743,0.3802463230898003,0.3835861247307886,0.3842708611037057,0.3848779871033,0.386231662591687,0.3851963746223565,0.3867823606323547,0.3918898003405046,0.3938279174330676,0.3962891165882027,0.3933410762679055,0.0,2.363314167091105,64.87314648407286,220.42829582067225,328.6446626876398,fqhc2_100Compliance_baseline_low_initial_treat_cost,22 -100000,95824,40959,382.3050592753381,7369,75.71172148939723,5749,59.35882451160461,2357,24.200617799298715,77.32864418348662,79.63937043753268,63.32870225298407,65.03832590135593,77.03797201548672,79.3492851898024,63.22244097532742,64.93574668885005,0.2906721679999009,290.0852477302749,0.1062612776566425,102.57921250588709,62.96686,44.33871312043192,65710.94924027384,46270.989648138166,212.78864,128.1564206159462,221450.44039071637,133129.95764729736,243.39892,115.7342983839296,249934.72407747537,117699.55790607024,3820.82412,1699.681687669567,3946780.1385874106,1733198.5386433112,1386.43918,597.8759806869763,1430381.4597595592,607452.7578550009,2320.73182,959.1877671178814,2383705.564368008,966487.541805802,0.38034,100000,0,286213,2986.861329103356,0,0.0,0,0.0,17818,185.2980464184338,0,0.0,22825,234.18976456837532,2178405,0,78235,0,0,0,0,0,32,0.323509767907831,0,0.0,1,0.0104357989647687,0,0.0,0.07369,0.1937476994268286,0.3198534400868503,0.02357,0.3078611075254937,0.6921388924745062,25.826521290991558,4.572415732506613,0.3318838058792833,0.1951643764132892,0.2363889372064707,0.2365628805009567,10.889524430983874,5.373035757404708,25.027876655629093,13235.149001142228,64.49223952102497,13.007259058417686,21.438394865545806,15.083743982597712,14.962841614463766,0.5366150634893024,0.7593582887700535,0.6954926624737946,0.5584988962472406,0.1080882352941176,0.7010385756676558,0.9096385542168676,0.8602150537634409,0.7509025270758123,0.1277372262773722,0.4862531242899341,0.6962025316455697,0.6424116424116424,0.5092421441774492,0.1031307550644567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813895781637,0.0050277743988971,0.0073352609952823,0.0093653502356574,0.0119483424852552,0.0142537161474241,0.0162470696157374,0.0185330707134619,0.0208067202845083,0.0230544896392939,0.0250110146828283,0.027154336381269,0.0292071322131442,0.031305977063559,0.0337107618694056,0.0360135128154798,0.0381968519419234,0.0403135498320268,0.0423695363137776,0.0442674993494665,0.0591315413420116,0.0729715600167294,0.0861826796083939,0.0990678562796221,0.1111532745153843,0.1258469962684595,0.1395743417355065,0.1523138640305606,0.1643973130853597,0.1764333805051674,0.1910212784286699,0.2038842304571274,0.2161118783779375,0.2275569548296821,0.2382482394366197,0.2495845243634913,0.2603743243846875,0.2703892623495366,0.2803407155025553,0.2889340031656459,0.297461528649125,0.3059501049742549,0.3144108951449163,0.3220677139045467,0.3284788855876479,0.3350699374081801,0.3413893870793774,0.3478050149223273,0.3531573888874458,0.3589404148850262,0.3601614819615468,0.3618311123386039,0.3626393841625629,0.3641369090856263,0.3647722692462716,0.3647281629636473,0.3649315504616364,0.3660020778706773,0.3667700851917242,0.367266933982529,0.3679655308660558,0.3688119303401577,0.3705206931359354,0.3728021916331709,0.3752990358359713,0.3755942531452735,0.3770327243525396,0.3782809436468282,0.3766425929187951,0.3809751434034417,0.3803236602026315,0.382583065380493,0.3860163015792154,0.3866027227722772,0.3856870229007633,0.3869328493647913,0.3886914877182141,0.3932168550873587,0.3961527739057708,0.401980198019802,0.0,2.524520939772005,59.2343213382857,218.96152661219165,337.1037033673947,fqhc2_100Compliance_baseline_low_initial_treat_cost,23 -100000,95750,41009,382.61096605744126,7610,78.24543080939948,5885,60.91906005221932,2397,24.66840731070496,77.35098256499538,79.69734689438388,63.33757887846742,65.07019755856373,77.05939206148769,79.40524106328624,63.23187099044736,64.96689331847116,0.2915905035076918,292.10583109764343,0.1057078880200563,103.30424009256944,62.71474,44.11980474488301,65498.4229765013,46078.12505993004,212.35367,127.36313198090316,221234.6631853786,132471.97156117685,250.07087,119.24004566791731,257892.33420365537,122021.1197553784,3854.34552,1721.335391282933,3993620.710182768,1765963.1383011742,1405.68444,605.7961500661778,1456843.2793733682,621450.8094685937,2354.63004,969.0113469575692,2426552.27154047,983291.701310196,0.38128,100000,0,285067,2977.201044386423,0,0.0,0,0.0,17760,184.9086161879896,0,0.0,23448,241.6187989556136,2181550,0,78345,0,0,0,0,0,45,0.4699738903394256,0,0.0,0,0.0,0,0.0,0.0761,0.199590851867394,0.3149802890932983,0.02397,0.322211155378486,0.6777888446215139,25.677801947780697,4.628264436134076,0.335089209855565,0.1986406117247239,0.2363636363636363,0.2299065420560747,11.206359621283308,5.666266519628701,25.369990833041427,13283.308688806825,66.06445693392583,13.526393506166988,22.256608120548883,15.478341933488986,14.803113373720969,0.5437553101104503,0.7510692899914457,0.7028397565922921,0.5772825305535586,0.09830007390983,0.7093772369362921,0.9188405797101448,0.8683127572016461,0.7166666666666667,0.1390977443609022,0.4922014260249554,0.6808252427184466,0.648721399730821,0.538955087076077,0.0883164673413063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025619474851396,0.0049056871509512,0.0074173287469686,0.0097099211830665,0.0120283474494412,0.0142928403457157,0.0168397875658759,0.0188604145617096,0.0211163237563752,0.0233960024153353,0.0252988088648338,0.0274892219256826,0.0295789852464915,0.0317063124292039,0.0340637121399686,0.0361852984951215,0.0385391967031487,0.0407388191345854,0.0427409964235215,0.0447560607165553,0.059514364456322,0.0735312578458448,0.0867636882169144,0.0996551651632708,0.1120762354528588,0.1274061076287221,0.1410891351609311,0.1544093390514094,0.1665598427552023,0.1778278358809332,0.1917231276323018,0.2046819701938374,0.2171851207309114,0.2291279133384396,0.2399427501926676,0.2515575460612376,0.2617409178247464,0.2714546150210438,0.2808409676577098,0.2893753153235793,0.297913724037326,0.3059984547306315,0.3140909575034615,0.3219151001042378,0.3290716592603385,0.3352953490376682,0.3410847864701909,0.3473377598005546,0.3536354684908789,0.3593023255813953,0.3604009551691108,0.3616173042170752,0.3630596645897794,0.3636455945922423,0.3643899748028208,0.365192801266387,0.3657695181469882,0.3670257518517907,0.368004803568365,0.3694110060189166,0.3708558211256746,0.3725731284085275,0.3734924543789859,0.3735226711005258,0.3760021249879262,0.3783507317840843,0.3791493627380782,0.3802165790640238,0.3827634825519915,0.3840402990444969,0.3844880695140453,0.3858999140893471,0.3854716621080084,0.3843610641242503,0.3858582018627637,0.3856971153846154,0.3889413988657845,0.3855546357615894,0.3802657619451512,0.3884297520661157,0.0,2.0210384351740744,61.78106589862532,227.7523058872047,338.2374559465611,fqhc2_100Compliance_baseline_low_initial_treat_cost,24 -100000,95843,41103,383.9612699936354,7479,76.91745876068153,5775,59.680936531619416,2445,25.207892073495195,77.51248185563044,79.79945466075564,63.42745123530996,65.11136630075752,77.22224535587216,79.50634439650676,63.3215840589819,65.00649622223797,0.2902364997582793,293.110264248881,0.1058671763280614,104.87007851955354,62.17222,43.72529167401201,64868.81671066223,45621.78946194507,210.45664,126.7578194295068,219015.9636071492,131686.8727288449,243.2602,116.07331863847068,249981.3444904688,118212.11306105142,3861.19698,1718.5907635859623,3992471.865446616,1756934.3547113114,1467.8363,631.611772228919,1518478.6369374916,645984.5291037628,2423.45278,992.84060995685,2499891.426603925,1011595.1571430932,0.38285,100000,0,282601,2948.582577757374,0,0.0,0,0.0,17580,182.81981991381735,0,0.0,22847,234.55025406132947,2192707,0,78602,0,0,0,0,0,33,0.3338793652118569,0,0.0,0,0.0,0,0.0,0.07479,0.19535065952723,0.326915363016446,0.02445,0.3142280015149602,0.6857719984850398,25.6471564219317,4.742774288013313,0.3139393939393939,0.2,0.2304761904761904,0.2555844155844156,10.971306652466629,5.259409747211212,25.701377210825672,13271.392012548657,64.45718264232265,13.36021593940758,20.341962851625677,14.68109116256819,16.073912688721183,0.5345454545454545,0.7714285714285715,0.6911196911196911,0.5792637114951165,0.1165311653116531,0.7016129032258065,0.925595238095238,0.8486238532110092,0.7694915254237288,0.1649831649831649,0.4828836998413058,0.7081807081807082,0.6412490922294843,0.525096525096525,0.104325699745547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002236253617469,0.0044966123494799,0.006821475993067,0.0090410041501354,0.0114793067717751,0.0136987694498118,0.0159332939667284,0.0181106216348507,0.0201566377012855,0.022364249923305,0.024658235625416,0.0268488037001712,0.0290684531760547,0.0311017341635362,0.0332474226804123,0.0353756532876118,0.0374992239399019,0.0395927719087261,0.0417064860597498,0.0440159906721079,0.0589640104704397,0.0725727190983041,0.0858576862223246,0.0988089986766651,0.1110058224622803,0.1268337505148759,0.1404605716344676,0.1537627320475471,0.1657828188521004,0.1770608014049215,0.1910189685577874,0.2044069993519118,0.2168899698160734,0.2282669229173264,0.2393747322399569,0.2508681899621757,0.261439729034127,0.2714364349183882,0.281157614543807,0.2899534766754684,0.2990204561974317,0.3072468158989477,0.3158689522551113,0.3226488578801491,0.3298167415607853,0.3367017026246235,0.3432882388178914,0.3498801780212256,0.3557921910293643,0.3602482022427596,0.3612360229270977,0.3632299295098604,0.3641760462570522,0.3649244695571956,0.3660554130779608,0.3664164156511368,0.3666328921537585,0.3678526882426311,0.3686835049609782,0.369467722050494,0.369460808224832,0.3698117688973339,0.37173324377086,0.37336972327241,0.3744360180474225,0.3746652453134343,0.3741786841880706,0.3764919645374518,0.3800852789039564,0.3809111312359727,0.3831341600901916,0.3860147213459516,0.3896387951506062,0.3898613321209366,0.3931208524161136,0.3961023714486968,0.3953347470463496,0.3931913199283297,0.3989707475622968,0.3970037453183521,0.0,2.20128795317875,60.01140899193973,218.4197407261437,335.44513740725733,fqhc2_100Compliance_baseline_low_initial_treat_cost,25 -100000,95749,40961,383.11627275480686,7361,75.68747454281507,5732,59.39487618669647,2277,23.509383910014726,77.31288813594676,79.67171263300085,63.318020272784125,65.06219015732906,77.03794888266339,79.39316868726705,63.21921870376631,64.9640574177032,0.2749392532833781,278.5439457338015,0.0988015690178159,98.13273962585356,62.89316,44.2590217317181,65685.44841199386,46224.00414805178,210.78589,127.2644711145964,219686.16904615192,132457.33850024865,246.08464,116.7941362455132,253731.6421059228,119512.50889624892,3782.35714,1681.1740999447657,3921972.114591275,1727579.0817766134,1405.80668,595.9380197711093,1457147.145139897,611516.8858897705,2244.20858,912.9515310895836,2318481.8222644622,931884.9010077688,0.38099,100000,0,285878,2985.7022005451754,0,0.0,0,0.0,17642,183.76171030506848,0,0.0,23171,238.7387857836636,2180843,0,78301,0,0,0,0,0,32,0.3342071457665354,0,0.0,0,0.0,0,0.0,0.07361,0.1932071707918843,0.3093329710637141,0.02277,0.323134521043119,0.676865478956881,25.445134043200124,4.59013573794456,0.3469993021632938,0.2006280530355896,0.2213886950453593,0.2309839497557571,11.228982732131742,5.587650377011306,24.13678469222076,13261.233217581224,64.5861896803341,13.303086250871353,22.666143144436308,14.189848046233916,14.42711223879254,0.5512909979064898,0.7278260869565217,0.7104072398190046,0.5855003940110323,0.1261329305135951,0.7247774480712166,0.881159420289855,0.8548387096774194,0.7395833333333334,0.1643835616438356,0.4979470802919708,0.662111801242236,0.6624246483590087,0.5402650356778798,0.118552036199095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914419980149,0.0048449710619406,0.0073559999594151,0.0098322024946166,0.0121438960140763,0.0143890020366598,0.0165392066890996,0.0188257394003124,0.0208252397407324,0.0231719929142646,0.0254175595451702,0.0274374903732607,0.0295372970082173,0.031796879023536,0.0337573637892434,0.0357810965841558,0.037794851616377,0.0397816883871503,0.0418456162973285,0.0438130365924814,0.0580908530919493,0.072060100656043,0.0853817114093959,0.0985459400923112,0.1103777662972998,0.1262427550027499,0.1403681892938617,0.1529455590442233,0.1658923173870785,0.177946474523932,0.1928625255678759,0.205549367964619,0.2178639763437119,0.229290377612283,0.2405804116566374,0.2519355374646951,0.2621640924917418,0.2719684100394874,0.2808103289690335,0.2903255376929335,0.2988688070951383,0.3071011661773478,0.3153205386089878,0.3222218226713174,0.3285210839713209,0.3359468422155651,0.3413161652346,0.3475222444277549,0.3529640427599611,0.3585429360684122,0.3599821891191709,0.3610548226569069,0.3625783854019547,0.3646813260084941,0.3648364433704747,0.3647004537414443,0.3648820702167616,0.3661946259985476,0.3664977235632677,0.3679869172986378,0.3686324045096338,0.3701698154526089,0.3717927111860122,0.3729917986743062,0.3737200125880558,0.3749343418426305,0.3764905324253656,0.3779034666836134,0.377345107635564,0.377643747486932,0.3787222273439661,0.3809166845148854,0.3794608959757024,0.3820587782735805,0.3868968148006866,0.3883227430763697,0.390145017932325,0.3888660640920295,0.3851809954751131,0.3896604938271605,0.0,1.836699003207896,59.89372231591226,222.443072133594,333.8889074053764,fqhc2_100Compliance_baseline_low_initial_treat_cost,26 -100000,95787,41312,387.90232495014976,7559,77.82893294497165,5932,61.40708029273283,2420,24.867675154248488,77.37208356525132,79.70912162745775,63.35007434272507,65.07885775567351,77.07100236288605,79.40812068284215,63.24061126684966,64.9720142444362,0.3010812023652676,301.0009446155948,0.1094630758754107,106.84351123731516,62.8122,44.20879919976933,65574.86924112875,46153.23498989354,214.14554,129.04774477815891,223009.51068516605,134168.85879937664,250.01522,118.3679318638268,258120.33992086613,121258.82152140836,3930.82443,1754.5921116348743,4070166.9433221626,1798217.3902876936,1457.85385,631.9363905360243,1509013.8327748026,646770.0424233185,2398.24032,989.9343247513742,2466831.3027863908,1002502.1839859904,0.38377,100000,0,285510,2980.6758745967613,0,0.0,0,0.0,17875,186.03777130508317,0,0.0,23509,242.5068119891008,2182707,0,78386,0,0,0,0,0,40,0.4175932015826782,0,0.0,1,0.0104398300395669,0,0.0,0.07559,0.1969669333194361,0.3201481677470565,0.0242,0.3201754385964912,0.6798245614035088,25.44343155161921,4.580335508347355,0.3285569790964261,0.2053270397842211,0.2245448415374241,0.2415711395819285,11.029983562607228,5.4504308562117245,25.735997663431974,13288.101723914806,66.68518404344158,14.167133107916255,21.906441064107128,14.889015123535154,15.722594747883049,0.5424814565070802,0.7627257799671593,0.6957414058491534,0.5825825825825826,0.1095603628750872,0.6981132075471698,0.9103260869565216,0.8479657387580299,0.7227722772277227,0.167235494880546,0.4930015552099533,0.6988235294117647,0.6477732793522267,0.5413022351797862,0.0947368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021979135014686,0.0045821337334252,0.0064946926183759,0.0089393646956044,0.0111156310383402,0.0131128848346636,0.0151158405447002,0.0172969773659611,0.0194367233485938,0.0216763893153208,0.023641897500538,0.0255544494504253,0.0275273680423497,0.0297055189456342,0.0317720579136245,0.033797257782875,0.0358769460086121,0.0380391384155889,0.0404401450525243,0.0424679070057991,0.0571434534431122,0.0715839678687975,0.0854710710878612,0.0988872426945749,0.111369813944668,0.1271565157677882,0.1405105814779097,0.1541201488569909,0.1661260722973838,0.1777623051791548,0.1914889039489678,0.2051728237608352,0.2172188596824845,0.2290489359143922,0.2400250747844448,0.2516916398108464,0.2630991823120601,0.2734488302285579,0.2832152372314495,0.29137988295789,0.3002996402003771,0.3083013660179641,0.3167076690164167,0.3238726218431015,0.3308679758564992,0.337908939683322,0.344136401788958,0.3501482546671587,0.3564203846402901,0.3619836020121202,0.3629385226584068,0.363939118707511,0.365130464249407,0.3656607217883894,0.366844425907168,0.3677518427518427,0.3678285033743549,0.3690554604136477,0.369639514314665,0.3702514617785271,0.3723572342186442,0.3732104918293191,0.3750578922992716,0.3762151725376619,0.3773908838109056,0.3797062610020756,0.38135031553468,0.3816099268215081,0.3821943084238166,0.383832287139868,0.3859099082484208,0.3868314969094329,0.3878070510372916,0.3893041535023503,0.387659736791913,0.3877917414721723,0.3864406779661017,0.3869035735675784,0.3824254037777169,0.3851711026615969,0.0,2.0731601377471343,63.47788984588088,219.54797449309797,350.8564839110831,fqhc2_100Compliance_baseline_low_initial_treat_cost,27 -100000,95643,40966,383.20629842225776,7569,77.96702320086153,5883,60.8931129303765,2404,24.76919377267547,77.25911226955019,79.6575985317893,63.27736057920528,65.04683059072956,76.9629516746068,79.35865972315553,63.169531815083495,64.9404263663278,0.2961605949433874,298.9388086337783,0.1078287641217841,106.40422440175712,61.54148,43.32854706073712,64344.991269617225,45302.37138184407,209.5556,125.58490879475497,218493.54369896383,130697.58246265272,245.4688,116.7739179667398,252791.0981462313,119039.65315823426,3889.15339,1737.504306213735,4028269.8681555367,1778602.7897637412,1420.76273,618.2217214997879,1469347.186934747,630246.5643066281,2370.44046,978.4365259651004,2443798.0406302605,993371.9359001986,0.38253,100000,0,279734,2924.7723304371466,0,0.0,0,0.0,17497,182.3029390546093,0,0.0,23123,237.9055445772299,2183592,0,78447,0,0,0,0,0,37,0.3868552847568562,0,0.0,1,0.0104555482366717,0,0.0,0.07569,0.1978668339738059,0.3176113092878848,0.02404,0.3128051070221554,0.6871948929778445,25.84732201476516,4.631429495949443,0.3270440251572327,0.2019377868434472,0.2325344212136665,0.2384837667856535,11.213100436134336,5.650176912368857,25.56661980066568,13380.52412554934,66.28664546997258,13.82872892819274,21.775132353497053,15.26652217277192,15.416262015510858,0.543940166581676,0.7592592592592593,0.7110187110187111,0.5767543859649122,0.1004989308624376,0.7020669992872416,0.9141274238227148,0.8739130434782608,0.7291666666666666,0.1462585034013605,0.4944196428571428,0.6916565900846433,0.6598360655737705,0.5361111111111111,0.0883678990081154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027045369366814,0.0047252557823543,0.0070539756003491,0.0093887172817428,0.0116587822371432,0.0137188601226244,0.0160796949242408,0.0184060353012035,0.0210282045777491,0.0231744017032775,0.0257440766068261,0.0278465155917897,0.0298791463101054,0.0318832219051641,0.0339521779960991,0.0361263906695893,0.038277858926148,0.0404517475113404,0.0424385525125079,0.0443063707348602,0.058573339464114,0.0734425405337467,0.086736461866409,0.0994219166254251,0.1116015798255433,0.1274200381275153,0.1408193395575099,0.1545592089841669,0.1673920249794155,0.179685150981487,0.1937394155781117,0.2072055477299816,0.2197895562381543,0.2315361607485236,0.2427961756045919,0.2542978988050287,0.2649649167962936,0.2750778394476783,0.2842078920726644,0.2928278382385051,0.3020497226026602,0.3096014832895231,0.3171348514710422,0.3244261032773473,0.3309783537106182,0.3381665223308178,0.3447201065781866,0.3508265413015151,0.3563862280507935,0.3613661354212206,0.3623347124198913,0.3640726347379922,0.3652123376991552,0.3661569826707441,0.3681595018560651,0.3682578854014036,0.3689519984700707,0.3698872466355851,0.3714659595716106,0.3715302747015677,0.373229742216523,0.374440576827449,0.3755667559417111,0.3755303625547199,0.3769842228611467,0.37769510885227,0.3783450805111455,0.3822216594384121,0.3829960373620152,0.3848280836739601,0.3883673845021167,0.3915051280674435,0.3883686859035607,0.3917652481179904,0.3907741752528594,0.3923731862333613,0.394577846630519,0.3940016433853738,0.3925021300766828,0.3939272872552936,0.0,2.3980738180077146,61.96731719180009,223.048102939945,345.40999954516946,fqhc2_100Compliance_baseline_low_initial_treat_cost,28 -100000,95625,40508,380.559477124183,7454,76.9359477124183,5809,60.24575163398693,2381,24.554248366013077,77.28554750318864,79.71707395472461,63.27381344368565,65.07188264748146,76.99544588623061,79.42497989269985,63.168590211965714,64.96843278802127,0.2901016169580259,292.0940620247592,0.1052232317199326,103.44985946018426,61.45898,43.218945888746,64270.82875816994,45196.28328234876,210.05089,126.16236068506626,219138.45751633987,131411.89091248764,243.81933,115.75802873132268,251944.1464052288,118762.58279179416,3870.22432,1726.2843930544238,4013248.42875817,1771449.8675270504,1438.60509,620.8780438065821,1490653.1555555556,635626.4137274714,2354.77386,970.4392638613316,2429761.3803921565,985721.8255387936,0.3771,100000,0,279359,2921.4013071895424,0,0.0,0,0.0,17586,183.362091503268,0,0.0,22942,236.86274509803923,2186329,0,78446,0,0,0,0,0,33,0.3450980392156862,0,0.0,0,0.0,0,0.0,0.07454,0.1976664014850172,0.3194258116447545,0.02381,0.3194762267988812,0.6805237732011188,25.51016429381936,4.648918091669464,0.3346531244620416,0.1940092959201239,0.2267171630228955,0.2446204165949388,11.066186434024488,5.469477738748075,25.239133664415046,13126.982203529817,65.35433959045054,13.125092259848394,22.054072249957525,14.588924270796303,15.586250809848313,0.5427784472370459,0.7559893522626442,0.6862139917695473,0.6150341685649203,0.1104855735397607,0.7057971014492753,0.9129129129129128,0.8431771894093686,0.7753623188405797,0.15,0.4919846466470987,0.690176322418136,0.6331727460426704,0.5725264169068204,0.1007887817703768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104985812728,0.004402113826086,0.0066807456443162,0.0089749453676881,0.0110792333048467,0.0132628426489013,0.0154848976344217,0.0175813174239947,0.0197911446134334,0.0218756080825046,0.0239123521506755,0.0260891903000411,0.0283167440376321,0.0303467612254154,0.032411279414346,0.0344856120316928,0.0364977875418398,0.0383640744433366,0.040572891729292,0.042161260039637,0.056855243351731,0.0703589206182866,0.0835093471202042,0.0962198950673212,0.1086382457326347,0.1232181814330798,0.1376914003974115,0.1508448376952188,0.1638702221461284,0.1755307718755372,0.1891731497566818,0.2025369978858351,0.2155381916064559,0.2272797002038088,0.2378852196923755,0.249073149073149,0.2601817795615379,0.2701255664014067,0.2789862484373224,0.2886723228617289,0.2968831439591369,0.3046162135569794,0.3126979044366172,0.3202099422298555,0.3266814396337603,0.3333292166331155,0.3397884234539119,0.3445668528294188,0.3508646655587868,0.3562880981659989,0.3578192020286492,0.3586200245243245,0.3602423078552366,0.3614897654676884,0.3619493014804444,0.3621463714637146,0.3629901726934453,0.3640577319587629,0.3653031472429465,0.3659399468428992,0.3673523157122156,0.3679617619642609,0.3697200910547171,0.3710163168067604,0.3717985889629844,0.372489539748954,0.3733565296751561,0.3763786475074053,0.378230529158046,0.3784020372433551,0.3798818735405888,0.3827398139236445,0.3819175297032848,0.3860711002145265,0.3892992424242424,0.3911645629911884,0.3907815631262525,0.3925729442970822,0.3891639163916391,0.3847611827141774,0.0,1.9212514650138768,61.4357541849079,225.6087422608538,333.1234781816016,fqhc2_100Compliance_baseline_low_initial_treat_cost,29 -100000,95805,41081,385.2304159490632,7422,76.4260737957309,5715,59.04702259798549,2414,24.82125150044361,77.35864855579545,79.66291403794303,63.35358995694328,65.05402257215066,77.07350059636188,79.37698431447413,63.250195270330615,64.95280482566628,0.2851479594335728,285.92972346889667,0.1033946866126598,101.2177464843802,62.11634,43.71335275279779,64836.2194039977,45627.423154112825,209.8082,125.79172557231324,218379.7609728093,130685.63758925842,241.43384,114.29169104516018,247417.9844475758,115891.4662854096,3798.04082,1685.0072013116885,3926974.542038516,1721836.8130494645,1390.48738,598.8984740708324,1434547.9776629612,608476.1388276211,2384.55448,974.962901590592,2454015.2810396114,989228.8644673168,0.38219,100000,0,282347,2947.100881999896,0,0.0,0,0.0,17445,181.43103178330983,0,0.0,22682,232.28432754031624,2188067,0,78574,0,0,0,0,0,43,0.4383904806638484,0,0.0,0,0.0,0,0.0,0.07422,0.1941966037834585,0.3252492589598491,0.02414,0.3062523876225646,0.6937476123774354,26.029632980572995,4.639220635635986,0.3268591426071741,0.1956255468066491,0.2325459317585302,0.2449693788276465,10.918410267593496,5.410425436230158,25.514784470002777,13243.700488074885,64.11903277276755,13.048289002410916,21.01725664960794,14.634493496891592,15.418993623857096,0.5308836395450569,0.7450805008944544,0.6948608137044968,0.5605718585402558,0.1128571428571428,0.6810408921933085,0.9020771513353116,0.8660714285714286,0.6666666666666666,0.1463414634146341,0.4846681922196796,0.677336747759283,0.6408450704225352,0.5331439393939394,0.1042228212039532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023986397587191,0.0047807635041375,0.00696493202348,0.0094168264888834,0.0115416658200069,0.0137531153044097,0.0158802917328769,0.0179939408158477,0.0200539402978975,0.0222897358783935,0.0242953130121271,0.026411881756826,0.028489238197976,0.0307065385169482,0.0326122819317853,0.0347024983733203,0.0367530653422318,0.0385544416914608,0.0407478576992988,0.0426513148306231,0.0580454014354865,0.0719072461343843,0.0852549052490357,0.0980505491040933,0.1102223627357993,0.1257450226148708,0.1389330619341433,0.1521949559094148,0.1645760160561966,0.1760203261184189,0.1901927010442458,0.2039502861036896,0.2163478790383088,0.2280404296746811,0.2396706042957956,0.2507592046638441,0.2618896143758022,0.2720727207272073,0.2823277084917329,0.2919177799674603,0.2999618015765531,0.3090404608035965,0.3167207523035744,0.3239347093462539,0.330901130974097,0.3370304114490161,0.3426693376737198,0.3481056169475989,0.3532843308832108,0.3585304612131624,0.3595620752885341,0.3614203825166731,0.3629083423801937,0.3636350487430935,0.3653559947612811,0.3659680807027765,0.3660219898776753,0.3675257307533964,0.3686413062120536,0.3696393937217154,0.3702231099721113,0.3713831478537361,0.3718997806647545,0.3723392299220032,0.3727890827264148,0.3729232386961094,0.3738462865522298,0.3759966962101718,0.3777178732309438,0.3783903242656808,0.3783311891196471,0.3809446955024747,0.3834935999490543,0.3861194837313548,0.3896940418679549,0.394094535063698,0.3952697480290617,0.4011113397818481,0.4071670428893905,0.4041450777202072,0.0,2.3201885502401884,59.44035631978929,215.885336224552,336.16191609115776,fqhc2_100Compliance_baseline_low_initial_treat_cost,30 -100000,95854,40872,382.1332443090533,7523,77.31550065724957,5800,59.85144073278111,2373,24.35996411208713,77.41454581429173,79.70239431240039,63.37712166936033,65.0677613599726,77.12272320427824,79.40948491812654,63.27125281901868,64.96394744533474,0.2918226100134831,292.909394273849,0.1058688503416505,103.81391463785404,62.36472,43.92858454625152,65062.1987606151,45828.63995894957,212.55192,127.78431091863844,221104.773927014,132670.6876276821,248.27771,117.91670277991254,254254.4181776452,119484.19976534418,3864.15255,1725.2219789404746,3994579.652388007,1763133.316231432,1428.17677,613.2682197668076,1477194.6606297076,627038.6418582497,2339.4444,965.1912709588086,2405029.670123312,978395.8432039544,0.38032,100000,0,283476,2957.3726709370503,0,0.0,0,0.0,17701,183.9985811755378,0,0.0,23330,238.6024579047301,2185638,0,78492,0,0,0,0,0,45,0.4694639764642059,0,0.0,0,0.0,0,0.0,0.07523,0.1978071098022717,0.3154326731357171,0.02373,0.3093852770048065,0.6906147229951936,25.585595389556914,4.604829616879004,0.333448275862069,0.1953448275862069,0.2325862068965517,0.2386206896551724,11.30886672778464,5.762167796290133,25.09415316604274,13203.1817052624,65.26843003086172,13.32242226807963,21.7161023445347,15.014494853736544,15.215410564510844,0.5510344827586207,0.7846425419240953,0.688728024819028,0.5989621942179392,0.120664739884393,0.7056367432150313,0.9105691056910568,0.864406779661017,0.749185667752443,0.1384083044982699,0.50011460004584,0.7238219895287958,0.6320109439124487,0.5547024952015355,0.1159817351598173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023991496684719,0.004680613950661,0.0070474664611578,0.0090755893042048,0.0111393434292102,0.0137771039591367,0.0161267318663406,0.0181157941980496,0.0202153305548745,0.0226763631900334,0.0248294511707946,0.0268238142130313,0.0289451511477363,0.0310132575757575,0.033208582062623,0.0351266770638601,0.0374213706340009,0.0394010052334317,0.0415031661995224,0.0433547957602171,0.0584518496892855,0.0724206038185409,0.0857846218311334,0.0984985300293994,0.1104711159783501,0.1259769338008533,0.1397065833377469,0.1529860660877698,0.1653296351610838,0.1768309006992707,0.1908629332415395,0.2041601798996713,0.2164643753599409,0.2283257206547632,0.2392518023562511,0.2502379213420977,0.2613320844344829,0.2715533227688054,0.2804496268233479,0.2898844493306307,0.2984000647840724,0.3059961632041924,0.3144192651322407,0.3216092450070728,0.3285354794004304,0.3347187449897019,0.3404804248177742,0.3467043602281988,0.3518900611204111,0.3570106309832337,0.3582274725571109,0.3593784439056645,0.360054156206809,0.3615559316639905,0.3629169022046354,0.3628043171644079,0.3634622082897945,0.3648055979894545,0.3653503969340268,0.366062014118488,0.3669836625213362,0.3674876652069669,0.368379048179107,0.3699867733763759,0.3705125419473214,0.3721064057963433,0.3745461822132014,0.3752241905541046,0.376025925534538,0.3778656442207844,0.3799306062819576,0.3821679812406736,0.3826935179358087,0.3864136622390892,0.3883878241262683,0.396883920076118,0.3965144972239358,0.403123073762071,0.4058171745152354,0.4049268668206313,0.0,2.5645133027686384,63.34616665482507,214.38124009824995,336.11611221656466,fqhc2_100Compliance_baseline_low_initial_treat_cost,31 -100000,95715,40787,382.5941597450765,7556,77.65762942067596,5862,60.701039544481006,2404,24.72966619652092,77.36002699221102,79.7314424692749,63.33690834044432,65.08825549784916,77.06591731486039,79.4365488848324,63.22833353608179,64.98197153764241,0.2941096773506331,294.8935844424909,0.1085748043625329,106.28396020675268,62.51036,43.96986505995158,65308.84396385102,45938.322164709374,212.24727,127.23376472945466,221145.47354124225,132326.05623930905,242.84225,115.38615588836642,250462.4666980097,117989.87933631006,3899.44611,1739.9058849042383,4040128.2453116025,1784252.0593740968,1428.31065,615.7453649327921,1480758.3868777098,631866.0732408486,2380.03232,991.8003881175472,2451431.7923000576,1005972.9893450337,0.38037,100000,0,284138,2968.583816538682,0,0.0,0,0.0,17699,184.34937052708565,0,0.0,22812,235.198244789218,2185268,0,78387,0,0,0,0,0,48,0.4701457451810061,0,0.0,0,0.0,0,0.0,0.07556,0.1986486841759339,0.3181577554261514,0.02404,0.3071014857718459,0.6928985142281541,25.565216338715317,4.621113926362837,0.3288979870351416,0.1948140566359604,0.2328556806550665,0.2434322756738314,10.97018894414686,5.408004470426345,25.55717878493037,13185.077622921315,65.59898473879895,13.101944030062247,21.63687961516894,15.116236070258624,15.743925023309146,0.5341180484476288,0.7478108581436077,0.6945020746887967,0.5772893772893772,0.1051156271899089,0.6768901569186876,0.909375,0.8670886075949367,0.7278911564625851,0.1050955414012738,0.489237668161435,0.6849148418491484,0.6382393397524071,0.5359477124183006,0.105121293800539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024105903920754,0.0047542296424697,0.0069715758602843,0.0090412239175928,0.0111985841572073,0.0134719563357908,0.0154841997961264,0.0176570250464389,0.0195246613851265,0.0216732529331067,0.0239906497980274,0.026159089975771,0.0281562683175138,0.0302718180600904,0.0321605447791993,0.0340253510059758,0.0362278302668655,0.0384351905671344,0.0405238139815479,0.0426179287061446,0.0573018923096202,0.0715571557155715,0.0848570679255179,0.0970666498385553,0.1099127024291498,0.1260611699034771,0.140024822582185,0.1530438484461473,0.1654829166177146,0.1776631233440956,0.191505866382236,0.2040409943400106,0.2166095983477363,0.2284018105088229,0.2393712393712393,0.2504098905481455,0.2612242620389487,0.2707536557930258,0.2803103342672096,0.2895285439384221,0.2978585559424783,0.3060119513992024,0.314594773717099,0.3212060205157703,0.3279933878672225,0.3339744538146668,0.3404897601302686,0.3458836108141133,0.3519219304839169,0.3576288428256245,0.3587952034746482,0.3594995724019973,0.3611009070615162,0.3616897896461242,0.3628356829900748,0.3629537497696701,0.3631360233472909,0.3640964964175376,0.364638614030883,0.3647749230659128,0.3665081840903538,0.3681988464054231,0.3715436579532581,0.3721424893088239,0.3738432620011567,0.3754935543759642,0.3763212925033659,0.3771977064656128,0.3790371077859139,0.3811301067501405,0.3839520405810468,0.3850704528342476,0.3876721894242366,0.3910103726469458,0.3859101654846336,0.3865184653997848,0.391606233605925,0.3874334834220221,0.3908812899638588,0.3799922450562233,0.0,2.1157423629036,62.03351325341398,213.8271808074359,349.631260221895,fqhc2_100Compliance_baseline_low_initial_treat_cost,32 -100000,95746,40993,384.2144841559961,7554,77.63248595241578,5825,60.2113926430347,2357,24.199444363211,77.33346816806463,79.69597388109769,63.32120940122799,65.0705702265657,77.04947850040485,79.41475270989108,63.21802011965122,64.97167367069909,0.2839896676597817,281.22117120661017,0.1031892815767676,98.8965558666166,62.72596,44.12663706058606,65512.87782257222,46087.18595093901,211.33225,126.51883740906617,220033.1502099305,131451.47307361785,242.79686,115.18571750781312,250187.2454201742,117612.7644375338,3875.29427,1715.9186950014584,4006917.375138387,1751600.6256151255,1396.26993,597.8395554815964,1444263.4783698537,610358.7987817737,2324.71314,950.5057007984874,2388334.468280659,958077.4172068418,0.38216,100000,0,285118,2977.8580828441923,0,0.0,0,0.0,17637,183.5481377812128,0,0.0,22793,234.6938775510204,2185253,0,78386,0,0,0,0,0,43,0.4386606228980845,0,0.0,0,0.0,0,0.0,0.07554,0.1976658990998534,0.3120201217897802,0.02357,0.3096465853351779,0.690353414664822,25.754421434008748,4.601928003584285,0.3290987124463519,0.2015450643776824,0.2305579399141631,0.2387982832618025,10.983462684725552,5.476223449424924,24.834672193631047,13286.693341862136,65.10464381149562,13.561960834106763,21.55900371127359,14.776245919895109,15.207433346220157,0.5369957081545065,0.7495741056218058,0.6906624934793949,0.5740878629932986,0.1099928109273903,0.7048327137546468,0.8879310344827587,0.8631346578366446,0.7340425531914894,0.1564885496183206,0.4866071428571428,0.6912832929782082,0.6372950819672131,0.5315739868049011,0.0992028343666961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022290896195349,0.0046647466839735,0.0070336763899884,0.0091853116299863,0.0113606313948048,0.0135018175523628,0.015434490070546,0.0179318650364352,0.0200318874943788,0.0220588987952053,0.024214961606676,0.0263744160977362,0.028547041946464,0.0308132768972513,0.0324374516378643,0.0344193161615744,0.0363662721464591,0.0387892120746728,0.0409847996506622,0.0430276643613032,0.0576260569996868,0.0717582659116837,0.0848391361833406,0.0983497933297573,0.1110747845895864,0.1259979907999788,0.1392997347480106,0.1526311307901907,0.1646088776861622,0.1760447833220731,0.1908475890894988,0.2039968406132672,0.2167832167832167,0.2292548479181022,0.2407568340575326,0.2523117130485819,0.2633764610009042,0.2731447092983996,0.2828914514005539,0.2915555046659415,0.3006534435898919,0.3087566227295587,0.3171034727563154,0.3245098979053827,0.3312132834878866,0.337203003816324,0.3438082256874539,0.3498525223759153,0.3551848208738869,0.3612409240924092,0.3626461032395486,0.3634624120699861,0.3644181292732784,0.3659447565000868,0.3670995413117293,0.3675197909461225,0.3680297397769517,0.369224687453674,0.3698890812775368,0.3714357402727745,0.3728657389996239,0.3738419726636116,0.3757403906742281,0.3762596225060035,0.3765963622291021,0.3768988173455979,0.377011625909169,0.3793496501282335,0.3798957927196682,0.3811065803150236,0.3829709147628223,0.3840296026170429,0.3825854156042835,0.3846272692159135,0.3862378316472609,0.3855275895450145,0.391425908667288,0.3880597014925373,0.3953753925206965,0.3939274447949527,0.0,2.4748716656220875,59.1672505046615,219.63565797552832,345.44781400332863,fqhc2_100Compliance_baseline_low_initial_treat_cost,33 -100000,95788,40801,383.0333653484779,7435,76.28304171712531,5910,60.99929009896856,2452,25.201486616277613,77.34149214859087,79.68136366816954,63.33904717832892,65.07257215441882,77.0476290698845,79.38693918173733,63.2319398206708,64.96763348498914,0.29386307870638,294.42448643220587,0.1071073576581227,104.93866942968566,62.77238,44.11393249081394,65532.61368856223,46053.7149651459,211.87589,127.11932502225058,220478.84912515135,132003.7287112224,246.25919,117.4765800384926,252409.53981709608,119006.53880390173,3925.71611,1757.9900716365078,4057371.883743266,1794858.9209912224,1460.49297,629.6217473964982,1507158.0156178228,639751.6363182212,2419.05842,998.4047465164324,2488583.4551300798,1011559.9240556118,0.38163,100000,0,285329,2978.75516766192,0,0.0,0,0.0,17714,184.18799849668017,0,0.0,23222,237.77508664968477,2186511,0,78470,0,0,0,0,0,33,0.3445107946715663,0,0.0,0,0.0,0,0.0,0.07435,0.1948222099939732,0.3297915265635507,0.02452,0.3218054672600127,0.6781945327399873,25.079195303092323,4.606827580306801,0.3245346869712352,0.2015228426395939,0.2304568527918781,0.2434856175972927,11.0674200483816,5.615538261897649,26.07342519551599,13188.046990957837,66.54172436603682,13.942240075848062,21.57206990882902,15.25246432787355,15.77495005348618,0.5346869712351946,0.7598656591099916,0.6913451511991658,0.552863436123348,0.1223071577484364,0.7067615658362989,0.9023746701846964,0.867579908675799,0.7290322580645161,0.1618705035971223,0.4810210876803552,0.6933497536945813,0.6391891891891892,0.5009505703422054,0.1128337639965546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0043490161491438,0.0066162666801968,0.0090944193797504,0.0111105458615251,0.0131810819895895,0.0152986292428198,0.0174514188851106,0.0196230814066446,0.0219437020653498,0.0242697043956156,0.0264630677442211,0.0285637876590448,0.0306473545409592,0.0325746006851293,0.0345536858643072,0.0364583333333333,0.0383087312372278,0.0401508775211197,0.0420570476785342,0.0561943117083655,0.070126095230129,0.0829822906842712,0.0959901645545678,0.1082997871309039,0.1248520209707424,0.1387016070898528,0.1525225455164199,0.1646938274503944,0.1765632703809299,0.1903398387461382,0.204201671586277,0.2164843164310781,0.2279915627493196,0.2391194387631677,0.249786861831106,0.2600561897966464,0.2700074122324296,0.2790149747400376,0.2881059384541494,0.2964199099203141,0.305112455333162,0.3126337317208686,0.3206498964332324,0.3278600987852089,0.3344456484263409,0.3408317911268944,0.3470458906807986,0.3529959639863396,0.358952057141351,0.3606566207463068,0.3617390346650513,0.3632669761142228,0.3648380604902344,0.3660091770454681,0.3662036681758883,0.3661430454740386,0.3676836605185515,0.3689857012891154,0.3691796804882427,0.3702195834511356,0.3722244329486669,0.3736310114161514,0.3747379809317736,0.3742597806038248,0.3750920955688875,0.3765783466728307,0.3781251998209604,0.3789951076670357,0.381638418079096,0.385191386447142,0.3866247561239974,0.3866151866151866,0.3867740170405691,0.385453843927848,0.3878714372346877,0.3875137947343528,0.3973204940339125,0.39920724801812,0.395954881369117,0.0,2.73985826285474,61.31591158991277,225.313218147736,347.1357449582945,fqhc2_100Compliance_baseline_low_initial_treat_cost,34 -100000,95703,40929,384.157236450268,7452,76.65381440498207,5847,60.52056884319196,2435,25.1089307545218,77.3419109081298,79.71234090160978,63.33255108723839,65.08167397389873,77.0474575422636,79.41516544091473,63.2251775413834,64.97582246497296,0.2944533658662038,297.1754606950441,0.1073735458549833,105.85150892576678,62.46328,43.91053339700823,65267.83904370814,45882.08666082383,210.43748,126.14970180315456,219311.6412233681,131239.3987682252,245.96039,116.39425065205415,253393.4045954672,118823.216111229,3872.35042,1733.3487070679118,4009782.295225855,1774740.8514549322,1431.55523,623.477073761049,1475794.8758137154,631434.556660762,2406.52662,996.225875699404,2482891.048347492,1014146.4745791808,0.38185,100000,0,283924,2966.719956532188,0,0.0,0,0.0,17591,183.21264746141708,0,0.0,23117,237.8713310972488,2186390,0,78492,0,0,0,0,0,38,0.3970617431010522,0,0.0,0,0.0,0,0.0,0.07452,0.1951551656409585,0.3267579173376275,0.02435,0.3133870349060222,0.6866129650939777,25.20811770033685,4.661700865291021,0.3341884727210535,0.198392337951086,0.2211390456644433,0.2462801436634171,11.233731281613288,5.518007051062825,26.014101709308708,13196.200964646438,66.02308979931281,13.50448597563833,22.13835723668956,14.398563088434956,15.981683498549964,0.538737814263725,0.7508620689655172,0.6908904810644831,0.5839133797370456,0.1208333333333333,0.6919263456090652,0.9002849002849003,0.859504132231405,0.7210144927536232,0.1528239202657807,0.4899661781285231,0.6860321384425216,0.6353741496598639,0.5467059980334317,0.112379280070237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050226830848,0.0042262085740346,0.0062690200852099,0.0085723571950922,0.0110424207914751,0.0130834079986967,0.0153011814836335,0.0173103617212378,0.0194705641864268,0.0216872895493669,0.0238441824705279,0.0261528509379909,0.0281456953642384,0.0303411186548942,0.03246445008565,0.0346203545769369,0.0364655074204873,0.0385333859150252,0.0406775431263062,0.0426857863417989,0.0569841037745702,0.0708363864754527,0.0844953676015402,0.0971128056797265,0.1086919831223628,0.1243757406466903,0.1379935920558467,0.1507718513786862,0.1634296946776916,0.1748482052822416,0.1890899299946149,0.2023634317375119,0.2149507298079223,0.2271668653028199,0.2385157650474546,0.2496678917770004,0.2607585337838591,0.2711628168380824,0.2801610707803992,0.2894911529745691,0.2981362148154147,0.306437265917603,0.3148117452048307,0.3222224886693364,0.3290212765957447,0.3352258000814583,0.3424906587757353,0.3484097769739272,0.3538722808473126,0.3589598046333575,0.3597481223790839,0.360778319424936,0.3619122764995139,0.3632617057581629,0.364956120779414,0.3656281622765324,0.3659305993690852,0.3674120880025012,0.3679311586128871,0.3695819808833814,0.3706555710358851,0.37186848117612,0.3738154034487853,0.3734304199824162,0.3752242424242424,0.3760416392839305,0.3787242608995744,0.381266658205356,0.3835066917533459,0.3863416988416988,0.3885077581840784,0.3884053298946916,0.3927068723702664,0.392029657089898,0.3900458540313335,0.3903556359252562,0.3900962434026699,0.3928051569972967,0.3856858846918489,0.3946135831381733,0.0,2.2462671713923763,62.600622004769946,227.1478727016372,333.761811916053,fqhc2_100Compliance_baseline_low_initial_treat_cost,35 -100000,95706,40671,381.7942448749295,7450,76.5469249576829,5796,59.97534114893528,2357,24.240904436503456,77.33810060160408,79.72131634240824,63.31256206328344,65.07524636650851,77.05142888280304,79.43411046951807,63.206307157449416,64.97154211038361,0.2866717188010454,287.2058728901692,0.1062549058340209,103.70425612489952,62.5009,43.88896650408454,65305.10103859737,45858.113915621325,209.26951,126.7260209042205,218056.66311412037,131809.73074229466,246.47189,117.79965396383848,253671.33722023695,120157.06006612856,3850.09577,1737.318091365321,3986734.614339749,1779163.846953504,1393.48701,610.5414015299596,1443554.6047269762,625501.3779014528,2331.9555,973.231656437844,2400710.613754624,987067.3635683858,0.37894,100000,0,284095,2968.413683572608,0,0.0,0,0.0,17555,182.7889578500825,0,0.0,23149,238.0519507658872,2182227,0,78371,0,0,0,0,0,34,0.3552546339832403,0,0.0,1,0.0104486657053894,0,0.0,0.0745,0.1966010450203198,0.3163758389261745,0.02357,0.3179799517827686,0.6820200482172313,25.232311047928174,4.5647567667775215,0.3393719806763285,0.1908212560386473,0.2306763285024154,0.2391304347826087,11.177409431822674,5.528344515267287,25.107542869959428,13157.986335177042,65.4186219755745,12.78905465358502,22.34277156369984,14.9995773101879,15.287218448101724,0.5467563837129055,0.7613019891500904,0.7092018301982714,0.5878833208676141,0.1053391053391053,0.7014613778705637,0.9072463768115944,0.8850102669404517,0.7467105263157895,0.1229235880398671,0.4957559073181922,0.695137976346912,0.6513513513513514,0.5411423039690223,0.1004608294930875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023109201110863,0.0043720835869344,0.0065181635429569,0.008862329003801,0.0109990740834952,0.0135364996587865,0.0155233257858556,0.017710684629291,0.0200746535767244,0.0223007218553217,0.024395246054615,0.0264203641143068,0.0283370005552242,0.0306678337881674,0.0325888481972455,0.0345885951677242,0.0363647659380597,0.0382336767620174,0.04007984779015,0.042161080957193,0.0568041775456919,0.0706120056112728,0.0840110391722719,0.0973893470212049,0.1092571693755075,0.1248109005892496,0.1383061135695563,0.1513870400937117,0.1633571306429548,0.17427176653613,0.1888502192675279,0.2018839324382849,0.2145547572392771,0.2262763337893296,0.2372340308430658,0.2485755459483427,0.2591458987276728,0.2694100427831569,0.2793297358704913,0.2886024563375113,0.2968141797961075,0.3046564751361799,0.312742960083436,0.3198939564789712,0.3268741865245897,0.333765720356781,0.3400622286904373,0.3464031438997627,0.3517922495911957,0.3582590761257569,0.3602335396356674,0.360700941666322,0.3620071684587813,0.3632048164872062,0.3642020334340622,0.3639880860994258,0.3641194853816012,0.3655294930420765,0.3666398342096699,0.367604701504553,0.3686623820799037,0.3697435694185724,0.3717050594298937,0.3736337876130077,0.3766669887901043,0.3785645333820345,0.3795357866788477,0.3808502586098146,0.3828201883874595,0.3844718771087206,0.3863997457896409,0.3858813568291263,0.3869815812554817,0.3887545344619105,0.3885932978624101,0.3896902340978955,0.3884586180713743,0.3853451756156641,0.3818380743982494,0.3789152024446142,0.0,2.2428942347221046,63.58614770154063,220.67298808170952,329.86295848586826,fqhc2_100Compliance_baseline_low_initial_treat_cost,36 -100000,95642,41169,386.15880052696514,7487,76.98500658706426,5843,60.423245017879175,2289,23.51477384412706,77.27782633283482,79.68647051065301,63.2892740309558,65.07118469717885,77.00715547340646,79.41732968063769,63.19106088364759,64.97616799306996,0.270670859428364,269.1408300153171,0.0982131473082077,95.01670410888607,61.59494,43.40902217470964,64401.55998410739,45386.98707127585,210.42311,125.94165410431172,219355.8687605864,131024.95149025708,250.40859,118.92131464788378,257111.5304991531,120775.29314258804,3863.5971,1713.66633398913,3998727.232805671,1750910.6217945924,1432.04164,615.6931582012224,1481369.335647519,627862.8692766541,2267.2956,924.6591554082678,2331896.049852575,935456.5202141776,0.38377,100000,0,279977,2927.343635641246,0,0.0,0,0.0,17563,182.9426402626461,0,0.0,23500,241.02381798791328,2187535,0,78479,0,0,0,0,0,44,0.4600489324773635,0,0.0,1,0.0104556575563037,0,0.0,0.07487,0.1950908095994997,0.3057299318819286,0.02289,0.3108262469856581,0.6891737530143419,25.56559545063372,4.5638501309506045,0.334074961492384,0.2033202122197501,0.2281362313879856,0.2344685948998802,11.174932599489583,5.565227489924309,24.070977518832244,13395.445129169222,65.57254294158567,13.716650533732258,22.1135141318888,14.74365731089128,14.998720965073332,0.5546808146500085,0.7794612794612794,0.6972336065573771,0.5858964741185296,0.1262773722627737,0.7461482024944974,0.9367469879518072,0.903688524590164,0.7568493150684932,0.1752988047808765,0.4964285714285714,0.7184579439252337,0.6284153005464481,0.5379442843419788,0.1152815013404825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021684940113085,0.0048271945481096,0.0070046494629768,0.0091567832352612,0.0111908031944656,0.0135695439125518,0.0159510453850076,0.0181192356011316,0.0204067019905484,0.02243369766751,0.0246564102564102,0.0268707308304658,0.0287187191307211,0.0307649496011378,0.0331719303317193,0.0353419386868561,0.0373974135787117,0.0394770997518404,0.0413739997294456,0.0433640221459925,0.0578793926791293,0.072071883378016,0.0858060520819119,0.0989613478274595,0.111333875001319,0.1266220707466288,0.1406135516549329,0.1541493554916373,0.1666203268029771,0.1780580752509258,0.1923495501319972,0.205885537342197,0.2175966739587074,0.2294452347083926,0.2406979304271246,0.2525127159495129,0.262875201000536,0.2735722725482473,0.2840507995596463,0.2933849289034415,0.3022922304720931,0.3112986952251789,0.3192848775985896,0.3267246029367695,0.3334953816237239,0.3404189696012633,0.3461933512037478,0.352362881556662,0.3586251621271076,0.3642656169504511,0.3653477638930123,0.3665539374698047,0.3680765642229071,0.3690062039775033,0.3706266591105676,0.3717540703842074,0.3718784794019405,0.373698024132979,0.3754229282954057,0.3758659057463838,0.376667858554303,0.3765699523052464,0.3780824225577526,0.3789237164363555,0.3805874531608848,0.3820348304307974,0.3827050615830725,0.3851359938993391,0.3857824631384001,0.3858737257746081,0.3909694677612766,0.3928035178035178,0.3944843362775624,0.3982854494902688,0.3948722836446817,0.4023711589644326,0.3999062353492733,0.4008764607679466,0.405788876276958,0.4119484576337368,0.0,2.603913548863096,59.76842628562791,221.1386127587559,346.71907828978146,fqhc2_100Compliance_baseline_low_initial_treat_cost,37 -100000,95831,40782,382.3919191075957,7504,77.33405682920976,5798,60.043201051851696,2376,24.543206269370035,77.39792083527668,79.70407029730892,63.37134666233783,65.07257046679872,77.10717719074876,79.40704930582268,63.26613100548271,64.96660656104781,0.2907436445279217,297.0209914862352,0.1052156568551154,105.96390575091164,63.74852,44.84577655500995,66521.81444417778,46796.732325667006,211.40346,127.12698220080593,220152.14283478208,132209.32913233287,244.83833,116.20396240288336,252540.9105613006,118935.84627024288,3854.05494,1719.0268274205291,3995267.700430967,1767358.0338518105,1398.35772,609.0476531228152,1448008.222808903,624360.2729000166,2342.58964,972.1947383048464,2421611.5244545084,995476.1576077098,0.37988,100000,0,289766,3023.7188383717166,0,0.0,0,0.0,17710,184.32448790057492,0,0.0,23041,237.47012970750592,2180875,0,78158,0,0,0,0,0,31,0.3234861370537717,0,0.0,2,0.0208700733583078,0,0.0,0.07504,0.1975360640202169,0.3166311300639658,0.02376,0.3124130077185879,0.6875869922814121,25.596485286701512,4.478766717175478,0.3344256640220766,0.2009313556398758,0.22697481890307,0.2376681614349775,10.814942703622831,5.423965373510808,25.41606689515114,13161.625022617509,65.09202719492555,13.464374901521694,21.658328341286275,14.597267258155476,15.3720566939621,0.5355294929285961,0.7467811158798283,0.6879834966477566,0.5699088145896657,0.1095791001451378,0.6919191919191919,0.904225352112676,0.8633257403189066,0.7331081081081081,0.1418918918918918,0.4864007252946509,0.6777777777777778,0.6366666666666667,0.5225490196078432,0.1007393715341959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021665181825544,0.004701638480479,0.0066839089203306,0.008793395814506,0.0109181847755367,0.0131586981742687,0.0154775733121395,0.0178525886253506,0.0198929235547745,0.0219250680362587,0.0239744272775705,0.0261816092661557,0.0281405073305045,0.0302135322871108,0.032209521649952,0.0343820015900385,0.0362500258633175,0.0381928609924961,0.0404033061970427,0.0423674132045624,0.0573398562591924,0.0713381791559901,0.0847933901628343,0.0976745652950947,0.1097854041064125,0.1259896620614568,0.1399020314686797,0.1529767352759626,0.1652032728748745,0.1764850980770674,0.1904587551152272,0.2035088098817777,0.215799886941775,0.2274297583907292,0.2380323974794629,0.2496263575675047,0.2600559811760508,0.2695218070812579,0.2790766230526769,0.2886140256530544,0.2975560128557886,0.3054838219656691,0.31251995978473,0.3192979515605732,0.3262952362472106,0.3325580822996652,0.3390933853112427,0.3452315903170468,0.3513226691515245,0.3564095467784235,0.3578926147436328,0.3598087176386522,0.3611803297151947,0.3624337478156637,0.3634918512575953,0.3640384438798935,0.3639874028707528,0.3645995893223819,0.3653691504833604,0.3671185287323388,0.3680363752513011,0.3696100190234622,0.3710477632021527,0.3722442184828579,0.3731314354936402,0.3748457073824093,0.3758217045323492,0.3775285909974196,0.3793494839144468,0.3803680981595092,0.3822470457902511,0.3885322832946761,0.3884413757831479,0.3879650398329337,0.3884954058192955,0.3927496085752138,0.3924070328302474,0.3964847741671776,0.4014900662251656,0.4071373752877973,0.0,1.8243838842890905,61.655112980239856,220.0511646423887,336.6915562440003,fqhc2_100Compliance_baseline_low_initial_treat_cost,38 -100000,95561,40541,379.8306840656753,7397,76.39099632695346,5707,59.21871893345611,2336,24.057931582967942,77.19945181010942,79.67026635066972,63.224607941291474,65.05357074075653,76.91080231687978,79.3810890491561,63.11935128302135,64.95120955634212,0.2886494932296415,289.1773015136181,0.1052566582701217,102.36118441440568,62.39684,43.94216129960938,65295.29829114388,45983.36277310763,209.55582,126.2804303547975,218811.38749071275,131667.6890727363,242.25172,115.3143477942167,250998.0431347516,118674.73697331524,3805.93075,1702.5412688338415,3948908.9586756094,1747812.8199096285,1401.51976,604.0099389304291,1451686.5457665783,617139.2766527332,2311.10736,962.7594971724948,2381657.3078975733,974351.3524373136,0.37749,100000,0,283622,2967.9681041429035,0,0.0,0,0.0,17543,183.0663136635238,0,0.0,22774,235.78656564916648,2177605,0,78117,0,0,0,0,0,32,0.3348646414332206,0,0.0,0,0.0,0,0.0,0.07397,0.1959522106545868,0.3158037042044072,0.02336,0.3156205878577846,0.6843794121422154,25.455854880956988,4.598568616727613,0.3301209041527948,0.1913439635535307,0.2333975819169441,0.2451375503767303,11.056671149314193,5.48567928033989,25.0985887879026,13150.550563444254,64.45907519451126,12.665375444220563,21.25902501546653,14.929529423846365,15.605145310977797,0.5452952514455931,0.7701465201465202,0.6916135881104034,0.6088588588588588,0.1122230164403145,0.6898280802292264,0.9331210191082804,0.8479657387580299,0.7436708860759493,0.1304347826086956,0.4984922291811645,0.7043701799485861,0.6400846859562456,0.5669291338582677,0.1072727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021388531287062,0.0046062376980986,0.0068344300918027,0.0089677891654465,0.0113206010506169,0.0136292279149422,0.015992243710772,0.0183527488248518,0.0205280392959476,0.0224331054837618,0.0246671525503762,0.0268374943445893,0.0287844615400459,0.0310804398506323,0.0330281297149825,0.0353194484700426,0.0373151355499782,0.0395668125175384,0.0414370683638712,0.0434936941451599,0.0575774376784911,0.0707634228187919,0.0838440433516593,0.096571272022254,0.1086297098768694,0.1240471975150275,0.1380293376166111,0.1512154000469513,0.164077898705973,0.17534785694316,0.1891562101807658,0.2026826118568839,0.2153399731643194,0.227215391196569,0.2379422996269562,0.2492223950233281,0.2601445869424114,0.270473396151893,0.2799603942366785,0.288719126938541,0.2974944901983528,0.3057037966666275,0.3132289948621806,0.3203003905076599,0.3270252485864691,0.3334569962282817,0.3394926716444176,0.3450931803957133,0.3516897910354603,0.3573795260563007,0.3588380148292471,0.3600508554213537,0.3607779349363508,0.3620624600917165,0.3625894337480769,0.3630651718615252,0.3633497348683896,0.3637219908784453,0.3648664933634031,0.3655923658624415,0.367316455217531,0.368615249606095,0.3697747833640543,0.3714879392899087,0.3709034328503355,0.3698966135668319,0.370901225666907,0.3743925293015278,0.3733693527174492,0.3743048053454967,0.3740803363341407,0.3752463119774192,0.3789746507364561,0.3785380072102478,0.3796751038911976,0.3872202943640062,0.3855366190695532,0.3865154889653776,0.3851463279955825,0.3920432599459251,0.0,1.951075509152753,62.26516850280992,214.79593945490652,331.7192269662586,fqhc2_100Compliance_baseline_low_initial_treat_cost,39 -100000,95676,40719,381.5690455286592,7620,78.33730507128224,5971,61.77097704753543,2439,25.0114971361679,77.33990302576841,79.73010471009312,63.32261558699434,65.0887138637416,77.03841579200882,79.43015239339792,63.211774382085856,64.98163346627456,0.3014872337595875,299.9523166951974,0.1108412049084819,107.080397467044,61.15208,43.01123398994427,63915.79915548309,44955.09217561799,211.13664,126.0179453841628,220052.4687486935,131089.585030186,247.24495,117.18429037466774,254951.4507295456,119736.27372137578,3976.3882,1776.018517015107,4117478.761653915,1817921.2183902855,1461.98021,630.6736939873053,1516057.715623563,647332.6767765644,2413.34414,1005.958914542061,2479210.564822944,1015110.7806986,0.38014,100000,0,277964,2905.263597976504,0,0.0,0,0.0,17509,182.3341276809231,0,0.0,23250,239.4957983193277,2193208,0,78723,0,0,0,0,0,50,0.5225970985409089,0,0.0,0,0.0,0,0.0,0.0762,0.2004524648813595,0.3200787401574803,0.02439,0.3139867978577656,0.6860132021422344,25.51597787467159,4.701937286244823,0.3264109864344331,0.1939373639256406,0.2376486350695026,0.2420030145704237,10.903656776827564,5.244955955031454,26.03886626944545,13267.35686722194,67.08634982073913,13.52417929960084,22.00701958103823,15.60453382648501,15.950617113615056,0.5375983922291073,0.7746113989637305,0.6834273986659826,0.5778717406624383,0.1114186851211072,0.6875,0.9390581717451524,0.8161925601750547,0.7566666666666667,0.130718954248366,0.4906531779195073,0.7001254705144291,0.6427613941018767,0.5299374441465594,0.1062335381913959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410007090043,0.0047438041660331,0.0068999807206421,0.0090399382440173,0.0112971945130817,0.0133756794723019,0.0157479512374118,0.0179942026618763,0.0203631010794896,0.0226414321831786,0.0247788154967552,0.0269257616818592,0.0289677724533656,0.0310868020147708,0.0331922799050469,0.0351954671877746,0.0372557551646256,0.0391637862132677,0.0410494340878828,0.0431777668900958,0.0576117500809593,0.0719041835922777,0.0851423235513214,0.0976477024070021,0.1097244493206177,0.1256717870593711,0.1392316424941381,0.1521709048718958,0.1643418635450933,0.1764056267959,0.1904602925022077,0.203893265235457,0.2171009701135424,0.2286251653891154,0.2399225062193162,0.2514872544783808,0.2625493828538267,0.2720755396493123,0.282030913093806,0.2909859542194624,0.2997141832235966,0.3079613513007673,0.315415029120697,0.3228512535353051,0.329352738228291,0.3362551470769534,0.3421619455506299,0.3477092724170423,0.3534935602277591,0.3592987744417562,0.3615005735105593,0.3633844754145817,0.3644706746110185,0.3659077404675294,0.3672291958615343,0.3675312111300502,0.3674985711564107,0.3689029410796035,0.3704179073826881,0.3718749440755919,0.3731749938931584,0.3740180909307308,0.3754075258187325,0.3765614098264725,0.3771445187554522,0.3768325363879985,0.3793212539545585,0.381725726998252,0.3828255240662576,0.381672669067627,0.3813567101156599,0.3824002574002574,0.3823921742996887,0.383745963401507,0.3860513598028997,0.3881775756850544,0.3860818350898946,0.3890032948929159,0.3950999718389186,0.3930250783699059,0.0,2.397971672007069,62.86363095277391,225.81560478113252,348.9444019991058,fqhc2_100Compliance_baseline_low_initial_treat_cost,40 -100000,95789,40631,380.8683669314848,7489,77.0652162565639,5826,60.28875966969068,2373,24.43913184186076,77.331780499572,79.6711624036698,63.32970022966426,65.06203018086856,77.03954799634833,79.3780035451867,63.22237643964954,64.95700401413367,0.2922325032236728,293.1588584830962,0.1073237900147177,105.02616673488774,62.5768,44.04660509116657,65327.75162074978,45982.94698886779,209.94291,126.00770911914624,218635.1564375868,131010.06286645251,248.17257,117.37853782540496,255771.51865036692,120021.53883698182,3875.79258,1736.8302978376316,4014085.625698149,1781091.981164468,1410.62982,607.4982547695911,1461070.6970528974,622632.4993157784,2341.98124,972.2783594584376,2413921.1809289167,988086.649743065,0.37896,100000,0,284440,2969.443255488626,0,0.0,0,0.0,17544,182.59925461169863,0,0.0,23295,239.8187683345687,2184648,0,78462,0,0,0,0,0,50,0.5219806032007851,0,0.0,1,0.0104396120640157,0,0.0,0.07489,0.1976198015621701,0.3168647349445854,0.02373,0.3148499810102544,0.6851500189897456,25.5003232994166,4.649117831179725,0.3414006179196704,0.1862341228973566,0.2349811191211809,0.2373841400617919,11.25679757930256,5.624097619189098,25.233475867099727,13140.905763543691,65.76951717237455,12.60314988274235,22.44125282713676,15.396805247366547,15.32830921512888,0.5477171301064195,0.7695852534562212,0.6928104575163399,0.5945945945945946,0.118582791033984,0.7015250544662309,0.9415384615384615,0.8656716417910447,0.7657342657342657,0.1178451178451178,0.5001123848055743,0.6960526315789474,0.6394736842105263,0.5493998153277931,0.1187845303867403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024309951886553,0.0046733709095332,0.0071336519630227,0.0093055386240806,0.0113399440630561,0.0134522754814203,0.0156603658163577,0.0177834946302421,0.0199648340864018,0.0222042504401949,0.0243884936337727,0.0264292755051749,0.0284418669216768,0.0304394404499474,0.0325310655162448,0.0343533546986457,0.0364455491688674,0.038489861536068,0.0402988641913728,0.0423577921469403,0.0570912771707938,0.0705648535564853,0.0841990502447768,0.0966708001429201,0.108904109589041,0.1240000422703399,0.1380238695864159,0.1501611033720052,0.1617450882042197,0.1736736093254478,0.1875652576398531,0.2018236490286851,0.2140456952706156,0.2260830571687939,0.2364180681518006,0.2483932449802757,0.2591931253836281,0.2696466140881833,0.2793175037153845,0.2878478982934371,0.2962684495442558,0.3043620629166179,0.3119791666666666,0.3190696001438762,0.3265712931338349,0.3329589910034431,0.3394977369325092,0.3462284372767173,0.3524090130315144,0.3579628111196339,0.3593478172917425,0.3607568788387914,0.3615847896303192,0.3629594216755762,0.36433796689462,0.3645700404360326,0.3655898585993542,0.3663196449489366,0.3673707911517506,0.3689327354260089,0.369473069459882,0.3700290016288586,0.370500105507491,0.3714523643402129,0.372707423580786,0.3730730783395591,0.37495329251818,0.3762235104057778,0.3791020523508425,0.3816674675636713,0.3847357040990017,0.3853354134165366,0.38711951297661,0.3929924974862712,0.3921512460613005,0.3891092679408582,0.3953488372093023,0.3897645854657113,0.3950478334271243,0.391426282051282,0.0,2.1099881050478984,60.81972665487292,233.11241302098264,330.32863857171805,fqhc2_100Compliance_baseline_low_initial_treat_cost,41 -100000,95694,41070,385.6772629422952,7471,76.93272305473697,5790,59.993312015382365,2352,24.28574414278847,77.34192318165195,79.71723225136722,63.32298576779221,65.07512220071888,77.05204381458766,79.42319014103231,63.2170981332505,64.96935751304994,0.2898793670642874,294.0421103349138,0.1058876345417019,105.76468766893754,62.70572,44.10132306893884,65527.32668714861,46085.77660975489,210.77321,126.70469025912122,219722.66808786345,131877.39780745748,244.3161,115.68795879245174,251634.2403912471,118125.09821632462,3862.80607,1724.7295592210894,4004525.905490417,1770832.8038396933,1456.84273,630.7936810093132,1509676.9389930402,646546.0218675544,2322.4094,965.4089723096184,2399502.2885447363,986878.581763366,0.38229,100000,0,285026,2978.514849415846,0,0.0,0,0.0,17610,183.49112797040567,0,0.0,22958,236.25305661796975,2182207,0,78273,0,0,0,0,0,43,0.449348966497377,0,0.0,0,0.0,0,0.0,0.07471,0.1954275549975149,0.314817293535002,0.02352,0.309244126659857,0.690755873340143,25.413488002393656,4.564693484890657,0.3288428324697754,0.1915371329879102,0.2395509499136442,0.2400690846286701,11.01796908490323,5.566656802565577,25.07691099084501,13260.383383679691,64.97565736644151,12.816064073528938,21.44446181633244,15.444453171143126,15.270678305437006,0.5381692573402418,0.7601442741208295,0.6832983193277311,0.5839942321557318,0.116546762589928,0.6917024320457796,0.9131736526946108,0.8473118279569892,0.7326732673267327,0.1554054054054054,0.4892987249544626,0.6941935483870968,0.6302988186240445,0.5424354243542435,0.1060329067641681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.0044090370055036,0.0066546963287582,0.0087248867491417,0.0107593585063,0.0132047810062918,0.0152111412433986,0.0177366158496114,0.0198678882571884,0.0222495264424307,0.0243209711983102,0.0266887104393009,0.0288091662723962,0.0308484879707382,0.0328244511194376,0.0346407188724704,0.0368022539179433,0.0387146326780561,0.0407961647653414,0.0425671592022174,0.0580456468376246,0.0713672439427889,0.0850992369617011,0.0976998190159518,0.1098941681702594,0.124882271394859,0.1393610583201503,0.1525663829923205,0.1652273358842265,0.1772029623269292,0.190348872310147,0.2036040328781364,0.2162829931972789,0.2275159486579054,0.2392656268917922,0.2504598134154719,0.2610700489024853,0.271358764186633,0.2804616484526606,0.2900996906153317,0.2991236295858947,0.3078994193669226,0.3158069292271246,0.3231090470533175,0.3301508148868888,0.3372279524256033,0.3437159223373986,0.349660505229366,0.3549613862028684,0.3612628460327747,0.3620715279748152,0.3631741118925566,0.364365426231595,0.3655716086773805,0.3671087691093943,0.3666901970413111,0.3675651663467182,0.3684097763567744,0.3690705018191803,0.3708833542375918,0.3731214144644033,0.3740759876003497,0.375139505990861,0.3750140661220264,0.3752962228563137,0.3764527274630929,0.3781108759082327,0.3809553858774531,0.3820766334752472,0.3856568311233226,0.3894564027727107,0.3886842807579397,0.3894502700985065,0.3912215194696334,0.3944945509207065,0.3951954780970325,0.3988491823137492,0.399480415667466,0.3978641840087623,0.395880149812734,0.0,1.938813925301488,62.16497533192442,216.9860186575232,336.5249078908828,fqhc2_100Compliance_baseline_low_initial_treat_cost,42 -100000,95736,41023,384.1083813821342,7319,75.22770953455336,5694,58.87022645608757,2257,23.199214506559706,77.32392886815877,79.68740906934536,63.31606620966248,65.0647713345558,77.0384761796804,79.4002664725747,63.21186389511765,64.96225961790272,0.2854526884783723,287.1425967706642,0.1042023145448283,102.51171665308334,61.86906,43.5450249696574,64624.42550346788,45484.279900183,209.20512,125.99874589202793,217935.79217849087,131025.16515870205,245.16033,116.10806642850828,251588.6813737779,117932.16087185328,3754.00971,1673.780479057525,3887010.226038272,1714246.6918983085,1384.42805,600.0110296095908,1433403.6830450404,614300.8955298783,2230.988,931.6927615053256,2296444.2633909923,946051.2701377328,0.38157,100000,0,281223,2937.473886521266,0,0.0,0,0.0,17488,182.0422829447648,0,0.0,23038,236.19119244589285,2185379,0,78554,0,0,0,0,0,31,0.3238071362914682,0,0.0,0,0.0,0,0.0,0.07319,0.1918127735408968,0.3083754611285694,0.02257,0.3128011459825498,0.6871988540174502,25.60014775353196,4.582874052542755,0.3431682472778363,0.1940639269406392,0.2290129961362838,0.2337548296452406,11.067230325984902,5.526423804909548,24.09146709296185,13248.952956980776,63.96458990715963,12.812617296893947,21.818924890829425,14.52904705883198,14.804000660604263,0.5470670881629786,0.7647058823529411,0.691914022517912,0.5897239263803681,0.111945905334335,0.6940467219291635,0.9238410596026492,0.8524229074889867,0.7716262975778547,0.1134751773049645,0.5024043966109457,0.7048567870485679,0.6433333333333333,0.5379310344827586,0.111534795042898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002076432991988,0.0043192164576341,0.0064850711429557,0.0088195248836594,0.0109655368840786,0.0132179226069246,0.0158738250107048,0.0182102136433697,0.0200799517426821,0.0223714791796783,0.0246062992125984,0.0268796780188301,0.0287761648229633,0.0307468866845894,0.0327836711107442,0.034896220954271,0.0372464938992811,0.0392319667877529,0.041511121278609,0.0434755430536021,0.0577758289484673,0.0724567937397999,0.0859626495538288,0.0987634849536306,0.110539357832024,0.1261609088408893,0.1397969252315625,0.1522736709858075,0.1644734031189916,0.1761476938911165,0.190124014985144,0.2030149992970769,0.2157790026417925,0.2270928096571028,0.2386656107701445,0.2506811385535497,0.2617158290644077,0.2718269598685543,0.2815665167824863,0.2904576212868448,0.2997565781847687,0.3085127580023207,0.3163387530982792,0.3234877410369089,0.3298713000280047,0.3355850571163939,0.3421947333425335,0.3484633931646829,0.3541012125775712,0.3594684737148605,0.3605975067867803,0.3619240799768183,0.3629606601853945,0.3641860734897479,0.3649967953972962,0.3654153109460372,0.3662230963219083,0.3679172354808467,0.3683678712108237,0.3698076062639821,0.370013341601368,0.3711915206129295,0.3723361733459556,0.3733348309558575,0.375202534400619,0.376471822306139,0.376701143168209,0.3787455561198578,0.3808796362086116,0.381773695399302,0.3853126581696038,0.3882497725935042,0.3905437951578147,0.3907517991119277,0.392455705848733,0.3964169772754599,0.3929227941176471,0.4013591844893064,0.4050496911093204,0.3996948893974065,0.0,2.3234758687041355,58.51605959748932,218.92088402501548,333.783878476178,fqhc2_100Compliance_baseline_low_initial_treat_cost,43 -100000,95787,41194,385.991836052909,7582,77.78717362481338,5904,60.97904726111059,2492,25.57758359693904,77.4066300966336,79.7463098908813,63.35719594835807,65.08823383130589,77.10493928759267,79.44634029453903,63.24783549308987,64.9824224425128,0.3016908090409345,299.9695963422795,0.1093604552681952,105.81138879308584,62.94398,44.2717867148832,65712.44532139016,46218.992885133885,211.27793,126.90855144043994,219939.6055832211,131859.40831265197,245.65419,116.6880389344727,252869.03233215364,118903.24599369362,3943.82517,1759.1687086464997,4076443.3169428,1795699.1018055675,1457.06862,630.6532169989391,1501724.9939970977,638961.3590559671,2462.02054,1011.4217460236626,2530026.997400482,1021067.0821360992,0.38358,100000,0,286109,2986.929332790462,0,0.0,0,0.0,17629,183.38605447503315,0,0.0,23103,237.5478927203065,2184186,0,78430,0,0,0,0,0,45,0.469792351780513,0,0.0,1,0.0104398300395669,0,0.0,0.07582,0.1976641117889358,0.3286731733051965,0.02492,0.3099824868651488,0.6900175131348512,25.392501469504342,4.670366381024787,0.3246951219512195,0.1881775067750677,0.2410230352303523,0.2461043360433604,11.212993989929783,5.570341333415774,26.300525875699527,13266.721680333983,66.16777187331867,12.91091793833566,21.51167422250135,15.862011187857178,15.883168524624482,0.5367547425474255,0.7587758775877588,0.6917057902973396,0.5699226985242446,0.1300757054370268,0.7038352272727273,0.925595238095238,0.8635394456289979,0.7138461538461538,0.1546762589928057,0.4844306049822064,0.6864516129032258,0.636049723756906,0.5273224043715847,0.1242553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0045527367118898,0.0067687561522614,0.0091035631915304,0.0113607469411417,0.0135536954440846,0.0159050590322383,0.01794518450467,0.020002861932213,0.0222379139547259,0.0244634841248693,0.0265863569200459,0.0287056260149232,0.0308829433503875,0.0328931770623949,0.0349014910577836,0.036953508100391,0.0392888612450111,0.0413060868300487,0.0431831431664862,0.0577838063439065,0.0715749843129052,0.0848200247374268,0.0975973766632333,0.1102845883951996,0.1258585346266827,0.1401878073596744,0.1534765043589198,0.1657277596398011,0.1771277393372035,0.1908609670547223,0.2047489295445698,0.2171989958377256,0.2297661821398538,0.2409694146598699,0.2525645991257677,0.2636856429017578,0.2739282461801378,0.2837488374203207,0.2928166676206284,0.3013890334593988,0.3097010999801279,0.3174174920420793,0.3240911596252007,0.3300520149725341,0.3366220632669421,0.3428070175438596,0.349069699323765,0.3548056596677345,0.3606652740685898,0.3614875809935205,0.3624507127691841,0.3644617013766325,0.3648648648648648,0.366219192761043,0.3653887440576598,0.3654872160215309,0.3671064723644479,0.3677039815841078,0.3680497407849495,0.3692339412569586,0.3700812301124572,0.3703672647995975,0.3717460459698015,0.3725018059234288,0.3726964239102062,0.3743040685224839,0.3757909648984732,0.3774741142494893,0.3771112173358827,0.3773490009601756,0.3764436638458672,0.3751893939393939,0.3755046081194302,0.3737932327303402,0.3746754779324994,0.3772418058132344,0.3703327922077922,0.3701949860724234,0.3662246489859594,0.0,2.612279813623652,61.84174577172443,223.9965100117008,341.90815548245087,fqhc2_100Compliance_baseline_low_initial_treat_cost,44 -100000,95686,40994,383.5566331542754,7448,76.48976861818865,5797,59.97742616474719,2335,24.07875760299312,77.29491858535671,79.69866107885576,63.29396199958445,65.07459724418332,77.00889834662057,79.41141442769951,63.188676885482174,64.97144894124891,0.2860202387361426,287.24665115625214,0.1052851141022799,103.14830293441446,62.95784,44.30989048384061,65796.29203854273,46307.60036352299,213.21286,128.87310261556814,222212.9883159501,134070.7758873483,248.58469,118.5047918358542,255887.3816441277,120796.52562950832,3817.77264,1718.3829329073349,3952851.8801078526,1758811.260693658,1432.12547,620.8815756491815,1483421.639529294,635602.8422644705,2291.61902,950.8517577011652,2363931.5469347658,965865.8605595782,0.3816,100000,0,286172,2990.7405472064875,0,0.0,0,0.0,17874,186.1609848880714,0,0.0,23371,240.4008945927304,2178450,0,78209,0,0,0,0,0,35,0.3657797378926906,0,0.0,1,0.0104508496540768,0,0.0,0.07448,0.1951781970649895,0.3135069817400644,0.02335,0.3149093694153689,0.685090630584631,25.434478115638164,4.646352192831239,0.3474210798688977,0.1909608418147317,0.2339140934966362,0.2277039848197343,11.254056151891568,5.662834234243405,24.84778484555348,13230.446494971817,65.44576283802509,12.892989514170724,22.731654033709667,15.294401360541643,14.52671792960304,0.5497671209246162,0.7515808491418248,0.676266137040715,0.6076696165191741,0.128030303030303,0.714975845410628,0.9206798866855525,0.8551587301587301,0.740506329113924,0.1666666666666666,0.4947102115915363,0.6724137931034483,0.6165562913907284,0.5673076923076923,0.1178160919540229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024227802163269,0.004789592783139,0.0072005281064337,0.0095368817040313,0.0116554862220955,0.0139634910766157,0.0163476060247357,0.018563167896038,0.0206756148463395,0.0228644013972689,0.0250394928502554,0.0273465991391265,0.0295636962337929,0.0316912295166443,0.0336502234746436,0.035512626941612,0.0379167055263676,0.0400755829647625,0.0422249500665778,0.0440062121512179,0.0581728157773785,0.0718742802102309,0.0851925700493231,0.0981407241390195,0.1104557923612576,0.1256639790066239,0.1393406080163043,0.1522621037724799,0.1648234225570337,0.1762610384454435,0.1906511247091269,0.2037219367054368,0.2159787761492628,0.2277035077555392,0.2381701388125041,0.2497729638735685,0.2602611315701372,0.2703892127951737,0.280273947709152,0.2895446048693219,0.2980899540152664,0.3062349979509396,0.3141347611827141,0.3213797076402391,0.3284725685027304,0.3361904997159301,0.3420432318571643,0.3483229085720837,0.3542608447858243,0.3599086432465972,0.3614326330966272,0.3623759104489942,0.3631593053929383,0.3629192177978491,0.3635402552152355,0.3641225010372328,0.3646686493105806,0.3660443330254651,0.3670505844590535,0.3677471491424979,0.3686256013583624,0.36997591224892,0.3712423264350357,0.3729561731453538,0.3740678665986543,0.3744768222380162,0.3744636737984853,0.3763427191254052,0.3782339408954167,0.3808322319676399,0.380443297543892,0.3817860584645037,0.3855223123732251,0.383505945531262,0.3818026403267167,0.385197645079899,0.3879747808703675,0.3915897435897436,0.39366391184573,0.4007604562737643,0.0,2.3955590967516693,63.93069933637812,216.11496053299155,334.4078197196178,fqhc2_100Compliance_baseline_low_initial_treat_cost,45 -100000,95718,40832,382.7388787897783,7417,76.25524979627656,5798,59.95737478844104,2386,24.519944002173048,77.3593554540744,79.73076558573464,63.33143217950936,65.083991470752,77.07452156292368,79.44783392858996,63.22720515216941,64.98377952018427,0.2848338911507255,282.9316571446867,0.1042270273399523,100.2119505677257,63.10964,44.37491464159121,65932.88618650619,46360.05207128357,210.66971,126.62017466985502,219481.7798115297,131672.23998605803,242.42524,115.05687977855344,249914.1331828914,117540.7742902021,3865.66759,1719.7157567631048,3998053.835224305,1756244.3087922556,1404.84065,612.5800842602482,1448996.4165569695,621293.6169375128,2365.01888,973.5618031863452,2432139.806514971,982882.229248867,0.38049,100000,0,286862,2996.949372113918,0,0.0,0,0.0,17631,183.56004095363463,0,0.0,22768,234.5431371319919,2183152,0,78258,0,0,0,0,0,48,0.5014730771641698,0,0.0,0,0.0,0,0.0,0.07417,0.1949328497463796,0.3216934070378859,0.02386,0.3115280812234931,0.6884719187765069,25.439846696717105,4.6246380911942415,0.3285615729561918,0.1900655398413246,0.2349085891686788,0.2464642980338047,10.993651171193642,5.318540904179668,25.261322307404956,13170.915391108218,64.93424743723934,12.89007186981362,21.195063379614297,15.171779616632,15.67733257117942,0.5294929285960676,0.7441016333938294,0.6860892388451444,0.5844346549192364,0.1028691392582225,0.7142857142857143,0.912280701754386,0.8755760368663594,0.7436708860759493,0.1892857142857142,0.4722096701310438,0.6684210526315789,0.6301835486063903,0.5363288718929254,0.0818102697998259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079974071223,0.0046529544740336,0.0072249789440571,0.0092726127846275,0.0116937656976093,0.0138352998666354,0.0157602324277486,0.0180266623114141,0.0200159473329108,0.0220825356524943,0.0242321694098343,0.026417691225259,0.0286020000823079,0.0308681406993756,0.0330320104018327,0.0353650216056402,0.0372414221522788,0.0391668741183304,0.040940232251089,0.042824254924633,0.0576447122463684,0.0716865010833045,0.0849296099699977,0.098143961301856,0.1099968364441632,0.125519692786188,0.1391005369611817,0.1519510247537929,0.1637991835687875,0.1752572894197439,0.1894760662945322,0.2030463447111168,0.2151949691008791,0.2265340293509307,0.2377044665969047,0.2488910082952579,0.2592257516865478,0.2693173124521849,0.2791896033142273,0.2880913091309131,0.2965916324286789,0.3046157804259101,0.3125110850980809,0.3198845882169837,0.3271721057805503,0.3342652691734509,0.3404087558353462,0.3457223536594673,0.3524772733158944,0.3585251632478068,0.3597389490681558,0.3610931458215794,0.361647959040144,0.362615178301057,0.3637402597402597,0.3641732584647868,0.3635903679225892,0.3645266058657568,0.3656382397157305,0.3670106405770192,0.3677081180603829,0.3688696824327003,0.3691266679314488,0.371007371007371,0.3722410454985479,0.3731949576748696,0.3753080758869719,0.377337559429477,0.3809793376733654,0.3834112056227786,0.3858238779916395,0.3883172561629153,0.3904481810625919,0.3901897765534129,0.390697235588263,0.3876457986193763,0.3846628606696497,0.3799714460534367,0.3771760154738878,0.388162951575711,0.0,2.432203022669384,60.3728947820815,218.13224940977287,339.953578795104,fqhc2_100Compliance_baseline_low_initial_treat_cost,46 -100000,95878,40963,383.9775548092367,7469,76.5660526919627,5831,60.1284966311354,2368,24.30171676505559,77.4394230829848,79.7203592811684,63.39129033748679,65.07782466550229,77.15631473517898,79.43725599405,63.28926493184585,64.97870662329707,0.2831083478058218,283.1032871183936,0.1020254056409371,99.11804220521958,62.48748,43.94838805918901,65173.95022841528,45837.82312854775,212.45411,127.6059767405576,220908.6860385073,132412.75030826428,248.90617,117.7588948463892,255154.99906130708,119432.492580452,3876.31412,1712.0046451564783,4000754.9594276063,1743397.197643336,1438.09498,607.4329878937123,1484159.765535368,617785.8402279074,2339.33986,944.2019102170764,2402722.605811552,953205.802237912,0.38077,100000,0,284034,2962.452283109785,0,0.0,0,0.0,17776,184.6930474144225,0,0.0,23356,239.11637706251696,2187633,0,78554,0,0,0,0,0,47,0.490206303844469,0,0.0,0,0.0,0,0.0,0.07469,0.1961551592825065,0.3170437809613067,0.02368,0.3132176575657055,0.6867823424342945,25.34904169103641,4.596555394786983,0.3258446235637112,0.1996227062253472,0.234608128965872,0.2399245412450694,11.213761805625651,5.534628816856812,24.601520535663088,13187.07143933692,65.16536307082643,13.561421253499098,21.46911806313452,15.089260714658511,15.045563039534304,0.5409020751157606,0.7542955326460481,0.6973684210526315,0.5716374269005848,0.1208005718370264,0.7053637031594416,0.9021739130434784,0.8442982456140351,0.7288732394366197,0.1422924901185771,0.49082774049217,0.6859296482412061,0.6509695290858726,0.5304428044280443,0.1160558464223385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020550718768981,0.0045198427175807,0.0066038405745645,0.0090568489882118,0.0113734538099545,0.0135426629494719,0.015737203972498,0.0179212566299469,0.020146295615218,0.0222590478528611,0.0244267300559437,0.0264615952884201,0.0283929176985603,0.0304917594012826,0.0322903242435177,0.0346551011978521,0.0367082583235044,0.0385571881541044,0.040636225835254,0.0423311798424934,0.0563211441437685,0.0703321734950837,0.0843586709530142,0.0973594414404955,0.1091963702970714,0.1253959204358292,0.1382783785787673,0.1504973009733497,0.1623935268594821,0.1745970590123932,0.1878433438329803,0.201320381635674,0.2134267557438487,0.2248699794589397,0.2364711832354816,0.2484478923429355,0.2590111678295178,0.2694766168259995,0.2796180075673471,0.2893106207842689,0.2978054978054978,0.3059363396464352,0.3139220159088491,0.3218060593002238,0.3285958758632408,0.3354474808803064,0.3423346799914948,0.3482913314778807,0.3540467474679533,0.3603246334040395,0.3621012123413932,0.3629167468323118,0.363559620119592,0.3650167591308368,0.3658380850558327,0.3658771835816097,0.3653069946341232,0.3667825744652933,0.3684471243359581,0.3697002141327623,0.3713428919501452,0.3727123439447599,0.3731299439770033,0.3747148033820963,0.3753816564490924,0.3765656460005753,0.3770982359143891,0.3808206256877849,0.381830936513504,0.3840222575516693,0.3831993422254705,0.3858747993579454,0.3854199683042789,0.3846331333640978,0.3845418935702684,0.3829045443616254,0.3873184444791504,0.3894867549668874,0.3908785674314493,0.3872567722243418,0.0,2.650957606198403,59.68463852033083,218.35553685128264,344.9684512403015,fqhc2_100Compliance_baseline_low_initial_treat_cost,47 -100000,95732,40937,383.60213930556137,7575,77.91543057702754,5869,60.66936865415953,2400,24.673045585593115,77.34647984393533,79.69879918258327,63.33814763576003,65.07521486934469,77.059649650986,79.4123703519668,63.23168139919574,64.97158405411548,0.2868301929493242,286.4288306164724,0.1064662365642874,103.63081522920936,61.89568,43.54055987799734,64655.16232816613,45481.71967366956,210.0419,126.40912989142664,218770.672293486,131409.31965427092,246.22675,116.99537798457034,253064.69101240963,118964.78944856048,3905.63958,1749.6191966525364,4041676.012200727,1789618.251078873,1447.22144,624.0063426544767,1494726.9251660886,634854.1982519744,2370.59132,986.1690235284344,2439990.515188234,998589.145929926,0.38239,100000,0,281344,2938.8710149166423,0,0.0,0,0.0,17474,181.85141854343377,0,0.0,23152,237.77838131450295,2188691,0,78508,0,0,0,0,0,44,0.449170601261856,0,0.0,1,0.0104458279363222,0,0.0,0.07575,0.1980961845236538,0.3168316831683168,0.024,0.3122251539138083,0.6877748460861918,25.56418271911876,4.565406935908356,0.3244164252853979,0.1952632475719884,0.2429715454080763,0.2373487817345374,10.90215931539204,5.369606943987449,25.421168612127147,13297.696575727125,65.96292045721236,13.308616905640996,21.439740021087488,15.908067003227496,15.30649652725638,0.5389333787698075,0.7513089005235603,0.6859243697478992,0.5799438990182328,0.1213208901651112,0.6938341601700921,0.9358600583090378,0.8646788990825688,0.7333333333333333,0.1291390728476821,0.4899057873485868,0.6724782067247821,0.6328337874659401,0.5337591240875912,0.1191567369385884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.004521079787935,0.0068600886940461,0.0092948131894922,0.0116643276994732,0.0140189770320899,0.0159633027522935,0.0179426203574235,0.020402530895115,0.0227391397827444,0.0250207566703225,0.0270051115718596,0.029146875578311,0.0311975363318948,0.0331194156125544,0.0353181945033023,0.037344956826041,0.0393617462754699,0.0412989469963929,0.0432038329340693,0.0576284634497734,0.0718509602804961,0.0850320509457914,0.0986350922206565,0.111156798245614,0.1266864030450412,0.1401824546515328,0.1534286231228514,0.1659673958299971,0.1773847802786709,0.1917892288808975,0.2049537612892758,0.2178729047546579,0.229708164826757,0.2405501682169008,0.252034590811954,0.2618458037745951,0.2721166503527188,0.2813670518262922,0.2908115912137775,0.2994039696776807,0.3080045860826431,0.3163224217158558,0.3238960135321568,0.3306183975395388,0.3366528217705855,0.3433759078387177,0.34993502025839,0.3552920110550286,0.3601972814301581,0.3615950340732744,0.3631110804661104,0.3641215338566668,0.3654592871631411,0.3666229625435799,0.3666707646914187,0.3667830503094746,0.3687259322647533,0.3692790291062429,0.3702383724053942,0.3714924727949329,0.3738499365482233,0.3749815762322868,0.376452345101917,0.3782849406474385,0.3784934928355462,0.3798919602321706,0.3825437513845375,0.3862544169611307,0.3885497705964492,0.388272001468294,0.3879037874323672,0.3874683544303797,0.3905407487290094,0.3931493815413892,0.3906043493932476,0.3878591288229842,0.3905544147843942,0.3878069432684166,0.3958746529155097,0.0,2.524070552649072,61.883372572030176,221.69010084641596,342.4665947330229,fqhc2_100Compliance_baseline_low_initial_treat_cost,48 -100000,95748,41143,384.53022517441616,7511,77.36976229268497,5864,60.7427831390734,2355,24.240715210761586,77.41222784566315,79.76750131558875,63.350809200748486,65.08948630217033,77.1196445326521,79.47463654016697,63.24379610416176,64.98485048205636,0.2925833130110504,292.8647754217764,0.1070130965867264,104.63582011396966,62.77678,44.18649085380815,65564.586205456,46148.73506893946,213.25501,128.37579647339234,222214.41701132135,133568.43462049996,247.82164,117.59373214806396,256285.0085641476,120767.10750695018,3888.76792,1736.466565609907,4028687.199732632,1781009.6858598602,1436.11825,621.8578507598711,1485584.659731796,635416.3742643632,2332.3864,974.036145628064,2401981.1588753816,987938.0346174864,0.38277,100000,0,285349,2980.208463884363,0,0.0,0,0.0,17860,185.98821907507207,0,0.0,23306,240.74654300873124,2181980,0,78214,0,0,0,0,0,37,0.3864310481681079,0,0.0,0,0.0,0,0.0,0.07511,0.1962274995428063,0.313540141126348,0.02355,0.3132132893735734,0.6867867106264266,25.525550919355737,4.730172073769671,0.334924965893588,0.1952592087312414,0.2245907230559345,0.245225102319236,11.313268985648811,5.589611098047441,25.147536459625385,13316.101883542718,65.81973631925108,13.25131619413814,22.036529511056337,14.598794501445347,15.93309611261126,0.5402455661664393,0.759825327510917,0.6904276985743381,0.5846621108580107,0.1196105702364394,0.7011577424023154,0.925925925925926,0.8538135593220338,0.7653061224489796,0.1404109589041096,0.4906291834002677,0.6942752740560292,0.6387399463806971,0.5327468230694037,0.1143106457242583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394774154344,0.004540617240156,0.0066956133587631,0.0090888780567064,0.0115698614260006,0.0139461495393698,0.0160119860570356,0.0182443394589961,0.0203472626748832,0.0223541453428863,0.0244834795441502,0.0268847006651884,0.0289703100583929,0.031121272038227,0.0332356522277483,0.0354953744379554,0.0375981112928945,0.0397991367861885,0.0420643336868151,0.0443550907310568,0.0588597617630785,0.0731819608663806,0.0866655477698988,0.0996686477673171,0.1124428922628907,0.1272790764118898,0.1416382795835853,0.1544341530927286,0.1665972155442296,0.178461439409385,0.1930233059526119,0.2061214988685945,0.2189214490986676,0.2295151966365945,0.240018508725542,0.2505934816852661,0.261292377854532,0.2716857426099495,0.2816855017320688,0.2904357798165137,0.2988911932706902,0.3071770671100858,0.3156492391497424,0.3230009469356443,0.3302266237316969,0.3366447684665919,0.3423999399452,0.3483920172874031,0.3546130471326049,0.3606902911342379,0.3623377321471766,0.3641182690855157,0.3653199836879333,0.3668195983379501,0.3681349606019314,0.3686339148085405,0.368859704508145,0.3705643577320937,0.3716058431486185,0.3724264443969509,0.3741102621107104,0.37546805407749,0.3755682651415163,0.3763239040085802,0.3768070622759964,0.3777638715060492,0.3787451181618632,0.3812053950388279,0.3835664581429676,0.3864870219932633,0.3850038673279039,0.3850981226400042,0.3853274559193955,0.3880823896024929,0.3913572163502011,0.3947867298578199,0.3944283757040645,0.3876234630114896,0.3871322518559252,0.3802762854950115,0.0,1.9136120912942451,61.4450855831268,227.60750991002087,336.9559267884041,fqhc2_100Compliance_baseline_low_initial_treat_cost,49 -100000,95736,40775,381.6954959471881,7328,75.30082727500627,5768,59.75808473301579,2255,23.209659898052976,77.32373385663094,79.69543864114787,63.321321634088775,65.07598139053462,77.05014751747527,79.41970202339809,63.2210693506869,64.97740362986823,0.2735863391556705,275.7366177497857,0.1002522834018719,98.57776066638736,62.9662,44.22690290587408,65770.6609843737,46196.731538683554,210.17263,126.67814211099746,219046.84758084733,131833.58622774866,244.25505,116.07730876964816,252589.79903066767,119218.94055437608,3814.32713,1700.686730702852,3952123.234728838,1744343.0900631445,1390.43404,598.4227320071152,1437069.7334336091,609782.9155251062,2222.6484,919.271560623288,2288520.8490014207,930885.1375201982,0.37975,100000,0,286210,2989.575499289713,0,0.0,0,0.0,17597,183.28528453246423,0,0.0,22960,237.19395002924708,2183374,0,78369,0,0,0,0,0,43,0.4491518342107462,0,0.0,0,0.0,0,0.0,0.07328,0.1929690585911784,0.3077237991266375,0.02255,0.3169370538611291,0.6830629461388709,25.542646845681094,4.626818533663465,0.3370319001386962,0.1955617198335645,0.2366504854368932,0.230755894590846,11.226919868253374,5.643464516840661,23.963371091892025,13162.903868549229,64.69342990368466,13.206858522246236,21.88298385401876,15.183565178366592,14.42002234905305,0.5494105409153953,0.7641843971631206,0.7001028806584362,0.5912087912087912,0.1044327573253193,0.7242620590352772,0.9162011173184358,0.8763326226012793,0.745928338762215,0.1490196078431372,0.4939483900433889,0.6935064935064935,0.6440677966101694,0.5463137996219282,0.0938661710037174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113475177304,0.0048982323770117,0.0072878603329273,0.0096233969473406,0.0120157089370014,0.0143018671882162,0.0164504548606861,0.0185675038043977,0.0208194860572842,0.0228480720979056,0.0251766467372911,0.0274214585751111,0.0293709171338922,0.0312338987242637,0.0333708363869076,0.0354591599383858,0.0375851854920562,0.0395700620422053,0.04156832572599,0.0433133628549101,0.0580509093946417,0.0716177040052747,0.084710201940729,0.0973008225864136,0.109288004049266,0.1249788529859583,0.1384527244949923,0.1515935089119446,0.1635549954072586,0.1748179761304781,0.1881339506837515,0.2009152674398476,0.2129232910676613,0.2246131977475261,0.2365566556655665,0.2482308774183546,0.2588727211908346,0.2690237846461514,0.2790362811791383,0.2880140042561955,0.2967058361352791,0.305412100109831,0.3129935221523476,0.3196449321369958,0.3267880995749848,0.3330662952783563,0.3389928129617108,0.3456472446561871,0.3509019933339385,0.3568297063173463,0.3582743511964947,0.3595542806707855,0.3610762129275419,0.3625295319815054,0.3647432267294566,0.3644518170368322,0.3641092327698309,0.366025641025641,0.3672091353550549,0.3681980693600286,0.3686069006968314,0.3701271648778939,0.3715170931163849,0.3728275551553354,0.3743762414611695,0.3738371787459925,0.3748201438848921,0.3757907117200165,0.3775118937726336,0.3787525150905432,0.3821750173170168,0.3850968542599687,0.3851174099430546,0.3856998992950655,0.3889152961308109,0.3901647228567993,0.3895884520884521,0.3908092720618137,0.3993944398568676,0.4071207430340557,0.0,1.908116928782919,61.63718437561904,215.4470452187746,337.1611882518371,fqhc2_100Compliance_baseline_low_initial_treat_cost,50 -100000,95770,40529,379.0331001357419,7351,75.47248616476976,5787,59.72642790017751,2364,24.203821656050955,77.38153749659537,79.72467914890194,63.350937847410606,65.08358763047944,77.0988670881476,79.44314924174316,63.24795418053264,64.98424136709686,0.2826704084477711,281.52990715878445,0.102983666877968,99.34626338258568,62.80318,44.11887724194296,65576.40179596952,46066.86524375374,209.63847,126.23629989414066,218170.6901952595,131085.3491554147,241.07128,114.76842615509965,247295.42654275868,116400.22323198758,3845.77181,1713.186967564039,3970084.473217082,1743367.3747363884,1411.84595,610.1056273044555,1455312.9998955831,618161.1541238964,2330.04746,959.0330662463768,2387375.649994779,961857.8465782144,0.37726,100000,0,285469,2980.7455361804323,0,0.0,0,0.0,17515,182.13428004594343,0,0.0,22717,232.94351049389164,2186748,0,78482,0,0,0,0,0,37,0.3654589119766106,0,0.0,0,0.0,0,0.0,0.07351,0.1948523564650373,0.3215888994694599,0.02364,0.308257117093907,0.691742882906093,25.44506181118817,4.616786587421194,0.3300501123207188,0.1902540176257128,0.2414031449801278,0.2382927250734404,11.142697590858235,5.679829321566463,24.97201908920013,13106.16480022572,64.94424037998509,12.708320326245929,21.52513186289386,15.651684923069489,15.059103267775802,0.5391394504924831,0.7683923705722071,0.693717277486911,0.5748031496062992,0.1058738216098622,0.6996363636363636,0.9029126213592232,0.8501026694045175,0.7388535031847133,0.1396226415094339,0.4891205802357207,0.7159090909090909,0.640196767392832,0.5272391505078485,0.0978456014362657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218254370151,0.0044803049040079,0.0066555740432612,0.0088358063434995,0.0115094454724769,0.0139051477549192,0.0160945080931218,0.0182794272242011,0.0206012794048519,0.0229807436511347,0.0248703707499026,0.027037014226766,0.0290355747480978,0.031228120752852,0.0332951697249125,0.0352840286818341,0.0371799913077671,0.0392872321678466,0.0414909310008102,0.0431260672191912,0.0576896987153397,0.0713336889558295,0.0842306119667439,0.0974074424372353,0.1093359749607444,0.1244874233777214,0.1377534258189641,0.1503859320844585,0.1624903952872876,0.1739945978391356,0.1883685133956922,0.2014796227394652,0.2138012738299676,0.2255381925472626,0.2361436506627069,0.2467782649129799,0.2582134493141519,0.268462411889692,0.2786472509526402,0.2869713474917613,0.2962346192987325,0.3045440198267497,0.3119505933296262,0.3192371277283944,0.3255009107468123,0.3319333423655331,0.3382295950895703,0.3440401984480346,0.3503204505729267,0.3552485750474984,0.3566619084812411,0.357304113209625,0.3587729196050775,0.3594905564802084,0.3602644470584731,0.360601180891036,0.3607715208716032,0.3624626792217592,0.3631121952883779,0.365070583406207,0.3660896798754758,0.3670883569915464,0.3689638513726396,0.3706850053937432,0.3701290867414646,0.370915374947633,0.371699894167787,0.3748936036064437,0.3763724662162162,0.3782005264417324,0.380854278258481,0.3847800492347212,0.386427298192004,0.3864633864633864,0.3927383328580933,0.3958782650371435,0.4017581739666872,0.4059889997962925,0.4024150519516989,0.3896053145760063,0.0,2.727783207022497,60.13470538514711,221.8122663653271,334.5568844939808,fqhc2_100Compliance_baseline_low_initial_treat_cost,51 -100000,95853,40893,382.3667490845357,7386,75.89746799787174,5717,59.027886451128296,2356,24.151565417879464,77.37299817448195,79.67425556171598,63.35320242165369,65.05719872925961,77.08615928960465,79.38869378361034,63.24938553630974,64.95673731139416,0.286838884877298,285.5617781056452,0.1038168853439529,100.46141786544638,63.25022,44.45046534974238,65986.68794925562,46373.57761336878,209.76127,126.607298364898,218175.132755365,131423.8946637456,245.7248,116.5943137790644,252690.359195852,118736.54722000824,3775.61071,1689.2679036363083,3900822.196488373,1724236.8169099572,1381.71745,595.0179043065467,1425559.14786183,604903.8607121891,2315.42834,952.5230079197494,2376109.041970517,959141.7782726114,0.38075,100000,0,287501,2999.394906784347,0,0.0,0,0.0,17582,182.7485837688961,0,0.0,23073,237.08178147788803,2181370,0,78322,0,0,0,0,0,38,0.3860077410201037,0,0.0,0,0.0,0,0.0,0.07386,0.1939855548260013,0.3189818575683726,0.02356,0.317650083558298,0.6823499164417021,25.55374270637792,4.558055844758493,0.3346160573727479,0.1990554486618856,0.237012419100927,0.2293160748644394,11.07103134896874,5.538046772952027,25.08263082212728,13227.209093301535,64.52038842581187,13.311872644788512,21.613000988397744,15.194725448132496,14.400789344493122,0.5476648591918839,0.7688927943760984,0.6952430737062206,0.5874538745387454,0.099160945842868,0.702416918429003,0.9158878504672896,0.8440366972477065,0.7320872274143302,0.1341463414634146,0.501024356931482,0.7111383108935129,0.6513202437373053,0.5425531914893617,0.0910798122065727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0048547133286711,0.0072223405658176,0.0091078935077066,0.0112945529959538,0.0134364820846905,0.0158796489761805,0.0178591474553266,0.0198939398583821,0.022131499785131,0.0245479227498591,0.026685955246391,0.0288166075741226,0.0310441370223978,0.0332666694156942,0.0353996922663857,0.0375964741666494,0.0392622143930366,0.0412153812604492,0.0433543151433179,0.0583401979083031,0.0720197291422839,0.0854206606115842,0.0975133364136598,0.1101129985151173,0.125117512226553,0.1385233221014262,0.150833475080796,0.1637493062374589,0.1754904797111232,0.1888814755827217,0.2019779507133592,0.2152630606544727,0.2267434868644021,0.2375948949279348,0.2490171541213081,0.2599033924208788,0.27033990796269,0.2804810255828464,0.289839804880283,0.2984280476096839,0.3076293098405344,0.3151738996614343,0.3220410070821699,0.3289086978698599,0.3358677034170866,0.3423307197074075,0.3484377785134068,0.3544544959693097,0.3597589183044978,0.361701266642386,0.362412404127352,0.364168303817506,0.3649599048737692,0.3650140819884662,0.3656724437007813,0.3662143933983972,0.3682470768168138,0.3704736806078444,0.3714817732578959,0.372110491427713,0.3737389753245466,0.3745850317266882,0.3756247338577736,0.3765845664433412,0.3755460799958144,0.3754873853211009,0.378002848551986,0.3803329680817221,0.3828489415141729,0.3838328543405866,0.3844921499519385,0.3832834680756254,0.3829770815649355,0.3823108482015075,0.3836807623585467,0.3857120719045405,0.3870500620604055,0.3916103603603603,0.3902627511591963,0.0,2.360089204797702,58.12143392485388,230.14036005512236,327.5018262814584,fqhc2_100Compliance_baseline_low_initial_treat_cost,52 -100000,95783,41034,384.7551235605483,7345,75.27431798962238,5713,58.9770627355585,2335,24.00217157533174,77.39816222968327,79.72765373428545,63.35848721039546,65.07968145364356,77.11604266347051,79.44538825389733,63.2549355309496,64.97891120145637,0.2821195662127564,282.2654803881193,0.1035516794458644,100.77025218718916,62.97786,44.340559691065664,65750.56116429846,46292.72385607641,211.75552,127.69732753170229,220413.6537798983,132654.66474395487,247.17174,118.07228971213355,253061.46184604784,119604.32915068768,3782.72227,1696.387097146789,3906860.215278285,1728670.7945530936,1410.8443,612.0045121084779,1456685.768873391,622696.621393294,2304.27334,956.8705557310104,2369700.21820156,967764.9348137298,0.38075,100000,0,286263,2988.661871104476,0,0.0,0,0.0,17656,183.64427925623545,0,0.0,23195,237.338567386697,2182092,0,78235,0,0,0,0,0,42,0.4176106407191255,0,0.0,1,0.0104402660179781,0,0.0,0.07345,0.192908732764281,0.3179033356024506,0.02335,0.3126531665161873,0.6873468334838128,25.63544367423293,4.601110431047103,0.3311745142657097,0.1900927708734465,0.2391037983546298,0.2396289165062139,10.920224463407376,5.411364677083276,24.788496367242026,13168.078354567086,64.0776475425487,12.611946934861155,21.09751825071973,15.263541624383633,15.104640732584189,0.5455977594958866,0.7790055248618785,0.6955602536997886,0.5944363103953147,0.1044558071585098,0.7093451066961001,0.9203539823008848,0.8677130044843049,0.7425742574257426,0.1476014760147601,0.4944878272852549,0.714859437751004,0.6424619640387276,0.5522107243650047,0.0938069216757741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.0049862169612453,0.0072130016637584,0.0092716711349419,0.0113963299954252,0.0137398986300812,0.0160085596372344,0.0181916500020405,0.0204129588573647,0.022549621444649,0.0244137323402555,0.0266700872242175,0.0286521761471661,0.030784273363524,0.0327745474040166,0.0348367639920266,0.0367772570683715,0.0388224680886363,0.0408521693946479,0.042727566205338,0.0573903062555433,0.0716526868450227,0.0844936045292514,0.0970518682011666,0.1095672341995677,0.1259011818431679,0.1383223562102941,0.1509566475833741,0.16322585468488,0.1747960069909825,0.1889787522750035,0.2029352281453121,0.2151719941763184,0.2264622981624314,0.2373682417207988,0.2485559367046586,0.2596177434822364,0.2698982173986392,0.2799700469717942,0.2893211446376612,0.2978058964364612,0.3053444041632557,0.313069836834253,0.3206377749805191,0.3275120837482694,0.3342613580368582,0.340797077881464,0.3467194138448622,0.3524221655027661,0.3582010721736604,0.3595685877991237,0.3610437895896447,0.3623452088798623,0.3635548744343401,0.3645531643125547,0.3646149134895116,0.3644902743458151,0.3654610558128839,0.3668463842533162,0.3678008832942943,0.3687271362911546,0.3698540493376695,0.3697049924357035,0.3706911988539708,0.371764084337928,0.3720189949381621,0.3717569412835685,0.3744539082880221,0.3746672271262435,0.3756792131043509,0.3775188485263879,0.3788747346072187,0.3807103413654618,0.3781204672112375,0.3815416587946344,0.3836108781598179,0.3830113462128181,0.3803418803418803,0.3828603227601558,0.3892284186401833,0.0,2.533134743980028,59.49247325510355,216.4721162945789,333.4908915716288,fqhc2_100Compliance_baseline_low_initial_treat_cost,53 -100000,95877,40770,381.4783524724386,7414,76.06620983134641,5715,59.02354057803228,2321,23.81175881598298,77.3584022892406,79.64061354714913,63.35300198276878,65.04142798742329,77.07227756432178,79.35489865300362,63.2468777894699,64.93827491055696,0.286124724918821,285.71489414551365,0.1061241932988821,103.15307686633446,62.53676,44.04701112316966,65226.02918322434,45941.16537143388,209.47868,126.2743873722008,217886.5004119862,131113.58356250456,242.16478,115.19309734317892,249261.9293469758,117541.56105014644,3796.48032,1704.7817537474934,3922755.165472428,1741706.1152519572,1412.3197,617.0188992106553,1458744.1930807182,629243.0605991582,2293.43826,960.0439203102334,2354733.940361088,969497.8487883982,0.38043,100000,0,284258,2964.819508328379,0,0.0,0,0.0,17601,182.97401879491431,0,0.0,22762,234.0603064342856,2183394,0,78387,0,0,0,0,0,41,0.4276312358542716,0,0.0,0,0.0,0,0.0,0.07414,0.1948847356938201,0.3130563798219584,0.02321,0.3063546861015215,0.6936453138984785,25.600371311952447,4.585434357977783,0.3291338582677165,0.1980752405949256,0.2325459317585302,0.2402449693788276,10.922240957145508,5.408196105311663,24.834693313624054,13116.0338646218,64.27699025867284,13.189691666584652,21.1976710855049,14.741237151045498,15.148390355537789,0.542082239720035,0.7508833922261484,0.7028176501860712,0.5756207674943566,0.1172614712308812,0.6787234042553192,0.8908554572271387,0.8658008658008658,0.6952054794520548,0.1640378548895899,0.49732868757259,0.691046658259773,0.649753347427766,0.5419479267116682,0.1032196969696969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136297826241,0.0044380946590874,0.0067146088385349,0.009249763933028,0.0113844277292132,0.0134338839190303,0.0156485594359998,0.0177877505227191,0.020113739624067,0.0221122685776791,0.0242611606457358,0.0263066166369358,0.028428231040999,0.0305720428337773,0.0327606995269845,0.0346198323214802,0.0367335960856117,0.0386484945846504,0.0408657091524649,0.0429064879936743,0.0579840080064218,0.0712345369441658,0.0849234442745533,0.0976583009555812,0.1104779160039185,0.1253433340376082,0.1386619188418698,0.1515222407724454,0.1638663535439795,0.1746411226776161,0.1886475484864475,0.2019255733448723,0.2144014264435674,0.2261058754072551,0.2367139134163908,0.2477642006463895,0.2580087449248204,0.2677561211521375,0.2779738332179695,0.2865082912182991,0.2953732535392237,0.3033728904805374,0.3112667543641341,0.318380376344086,0.3258912276432656,0.3328600180271395,0.3389994229369997,0.3453506321201219,0.3513903326403326,0.3563321900120512,0.3571949637955258,0.3587184583954503,0.359930480981179,0.3607244359375906,0.3607310704960835,0.3609555746984986,0.3616429207479964,0.3630429407401302,0.3646364276030136,0.36525851875739,0.3663839310902559,0.3671865698297416,0.3692252646644076,0.3697550681364075,0.3698709583877048,0.3705920794667364,0.3738991192954363,0.3774108155804865,0.3804481654764836,0.3824455157575999,0.3861345307917888,0.3874986689383452,0.3897907419150285,0.3910956252419667,0.39055178349431,0.3930516886575475,0.3946872052813581,0.392350400987045,0.3937029813318473,0.3985311171240819,0.0,2.278996295318032,62.33543157374852,208.88658411836923,335.5623667053052,fqhc2_100Compliance_baseline_low_initial_treat_cost,54 -100000,95732,40921,384.3751305728492,7514,77.3409100405298,5929,61.33790164208416,2477,25.477374336689927,77.38965647392791,79.75551096210079,63.34469261111818,65.09347552671328,77.08850640155548,79.45423714585849,63.234095778853856,64.98565902341115,0.3011500723724367,301.27381624230054,0.1105968322643278,107.8165033021321,62.58164,43.99509377701816,65371.70434128609,45956.51796370927,212.91447,127.69562910915045,221782.9565871391,132776.36947705114,243.61622,115.6885098769229,250775.3102410897,118041.10905082706,3946.66394,1756.3303156806978,4084071.062967451,1796779.2335726982,1463.86684,630.6922111589597,1511551.9471023274,642227.1337662613,2442.32178,1011.4124505436856,2513622.049053608,1024693.2271915654,0.38171,100000,0,284462,2971.441106422095,0,0.0,0,0.0,17786,185.1418543433753,0,0.0,22959,236.12794050056408,2185251,0,78402,0,0,0,0,0,41,0.4282789453892116,0,0.0,0,0.0,0,0.0,0.07514,0.1968510125487935,0.3296513175405909,0.02477,0.3067391579213554,0.6932608420786446,25.66508939209914,4.617536098644275,0.324337999662675,0.196660482374768,0.2322482712093101,0.2467532467532467,11.050556360784997,5.507970456594061,26.14377396879296,13203.62246857874,66.35352516917686,13.449118687333042,21.774803007603637,15.23440364768246,15.89519982655773,0.5403946702648001,0.7547169811320755,0.6994279771190848,0.5867828612926652,0.1168831168831168,0.7008426966292135,0.9204545454545454,0.8545454545454545,0.7395833333333334,0.1314878892733564,0.4896781354051054,0.683046683046683,0.6456582633053222,0.5463728191000918,0.1132879045996592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473138319423,0.0040955769796133,0.0063325180892844,0.0087165003962045,0.0107316874688475,0.0129322634515905,0.0149672209704224,0.0173334286093445,0.0195232643715757,0.0217313420613554,0.0237399674036717,0.0259121614684927,0.0283734605341612,0.0303669989290715,0.0323978092025868,0.0343017187031697,0.036428024105867,0.0382723990538241,0.0403363265984867,0.0422714248502214,0.0572260853223078,0.0711414875133449,0.084672850128006,0.097255100001052,0.1100749024158666,0.1261436594988523,0.1402743737466976,0.1534589186888037,0.1652212918660287,0.1771728287801267,0.1911326017424642,0.2044057820479529,0.21638228225289,0.2278926817530542,0.2386785081492731,0.2503018286942171,0.2613618616273622,0.2717054089294546,0.2809940790816905,0.2901460689592014,0.2985340568559164,0.3066180082812829,0.3142860522331567,0.3217687156325998,0.3293820443062573,0.3355474767391706,0.3414856999812253,0.3469954049616232,0.3533510328304086,0.3588636753659921,0.3604024676059373,0.361261447359361,0.362692036645525,0.3636350487430935,0.3649696861626248,0.3648524409304036,0.3660270415756309,0.367442699873669,0.3676809000255689,0.3683628713047819,0.3692477421043774,0.3707317073170731,0.3717809136970814,0.3713071676171307,0.3728145066256222,0.3738864651636667,0.3737506425267005,0.3757589172780167,0.3775080505325737,0.379084704937776,0.3799759859610234,0.3802618764203008,0.3792508309895167,0.3797632684230622,0.3786371315937676,0.3813086331789573,0.3871661037764814,0.3889227023737066,0.3972451790633609,0.4037867078825348,0.0,2.2300145520691173,62.98445518574252,221.5062246945824,344.8046820336736,fqhc2_100Compliance_baseline_low_initial_treat_cost,55 -100000,95750,40878,383.1749347258486,7527,77.26370757180156,5861,60.51174934725849,2453,25.211488250652742,77.34687979821054,79.7059381092731,63.33382307926016,65.08118575972387,77.04915874784143,79.40792166991278,63.22600773200932,64.97589044722265,0.2977210503691054,298.0164393603246,0.1078153472508347,105.29531250121238,62.75346,44.14957675912971,65538.86161879897,46109.21854739395,211.25199,127.19799409782756,219915.6135770235,132139.29905852786,246.15483,117.51621097565952,252458.32898172323,119171.44276781034,3948.07143,1759.5695963320186,4080358.8302872074,1795392.6075754946,1465.75288,636.5918506459132,1513087.1540469972,647363.9881697238,2435.23272,1002.0707596628704,2505596.2819843343,1014599.7541112122,0.38056,100000,0,285243,2979.039164490862,0,0.0,0,0.0,17704,184.1462140992167,0,0.0,23164,237.34725848563968,2184548,0,78392,0,0,0,0,0,44,0.4386422976501306,0,0.0,0,0.0,0,0.0,0.07527,0.1977874710952281,0.3258934502457818,0.02453,0.318313404657017,0.681686595342983,25.383477487419597,4.682040828074807,0.3245180003412387,0.1914349087186486,0.230165500767787,0.2538815901723255,10.955060463036665,5.241543695940832,25.99160314104609,13176.491042235572,65.89048835019285,13.225071061313429,21.366592326387394,14.966050600975173,16.332774361516854,0.536256611499744,0.7638146167557932,0.6971608832807571,0.5767234988880652,0.1223118279569892,0.705110497237569,0.9095744680851064,0.871578947368421,0.702054794520548,0.1967213114754098,0.480852028098799,0.6903485254691689,0.6391030133146461,0.5421002838221382,0.10312764158918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022192047343034,0.0043605240741491,0.0065482233502538,0.0087604296878969,0.011261902824123,0.0134824138001262,0.0153124681415027,0.0176092282564311,0.0200363926315143,0.0222488430192079,0.0242472087515506,0.0263879334243734,0.0286193208695831,0.0305533808562363,0.0326742073976221,0.0348160476343074,0.0368030817662165,0.0389746462508817,0.041029106029106,0.0428602667832932,0.0578031062124248,0.0715727810031905,0.0848650065530799,0.0971685024804506,0.1096414493792289,0.1248454490695241,0.1382855810305169,0.1512412949869757,0.1642558457074586,0.1758052249916987,0.1905786421970976,0.2040505344154931,0.2167380109080637,0.2276911987943254,0.2388125295274509,0.2506279530390714,0.2607187858919033,0.2714404569167116,0.2805942369457401,0.288975953992966,0.2980856038334221,0.3068316147985159,0.3147961781177111,0.3210255549293072,0.3271996307632512,0.332824427480916,0.3392334076058383,0.3454515377861478,0.3509414903260898,0.3568676606412455,0.3585858585858585,0.3592816020714541,0.3603399193889343,0.3615732643355834,0.3626590936124658,0.3622590587766243,0.3624714539456991,0.3639491620295677,0.3652975863960505,0.3668207553931054,0.3681884017079548,0.3697078115682767,0.3713526733007252,0.3736508866406796,0.3745481014193861,0.376031641397495,0.3775792507204611,0.3790695449762444,0.380774697938877,0.3821755909310178,0.3836091337709161,0.3833153928955866,0.384295405094074,0.3879376831713713,0.3861161094800644,0.3880292671224661,0.3883615995021005,0.3890045814244064,0.3915404401257502,0.3882400322190898,0.0,2.644174781910377,63.63772257450436,215.30138778209343,342.03176291919965,fqhc2_100Compliance_baseline_low_initial_treat_cost,56 -100000,95762,40823,382.354169712412,7428,76.42906372047368,5714,59.188404586370375,2268,23.35999665838224,77.36211040614715,79.72322077454942,63.32787542470121,65.07555166826693,77.09466092356902,79.4541943356926,63.231254855190144,64.98027521694675,0.2674494825781295,269.02643885681243,0.0966205695110673,95.27645132017426,61.61738,43.34393861844544,64344.06131868591,45261.96284770535,206.96798,124.3366607272469,215616.6642300704,129330.36814712486,245.97286,116.6226483024897,254060.94275391076,119608.91409923036,3776.81484,1683.3319560963762,3913534.10538627,1727608.9070049045,1403.38196,610.8819830711346,1452007.6439506277,624504.2972741727,2245.20004,916.2462744842468,2313540.673753681,931652.5076942752,0.3802,100000,0,280079,2924.7300599402683,0,0.0,0,0.0,17287,179.97744408011528,0,0.0,23125,238.64372089137652,2190200,0,78638,0,0,0,0,0,38,0.3968171090829347,0,0.0,0,0.0,0,0.0,0.07428,0.1953708574434508,0.3053311793214863,0.02268,0.3165899795501022,0.6834100204498977,25.699976810530647,4.586641445183452,0.3318165908295414,0.2068603430171508,0.2213860693034651,0.2399369968498425,11.069490971176185,5.473393860132698,23.81390064683905,13196.428011687707,64.00672824790952,13.639763889169355,21.195511741133597,14.244412268492892,14.927040349113676,0.5488274413720686,0.7597292724196277,0.6951476793248945,0.6007905138339921,0.1167031363967906,0.7367636092468307,0.9345238095238096,0.8755458515283843,0.7755102040816326,0.1778656126482213,0.4911959753029956,0.6903073286052009,0.6376912378303199,0.5478887744593203,0.1028622540250447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024821940569182,0.0047153548177743,0.0070855750685209,0.0093073351148683,0.0115456996083617,0.0139426406485517,0.0159994289560092,0.0181634403332516,0.020163599182004,0.0224566074445752,0.0244690342628011,0.0264295912812137,0.0288885916811555,0.0309869024432971,0.0330371241911013,0.0351825813655349,0.0370297501320272,0.0392081591151966,0.0410490426394461,0.042955201183247,0.0571497166000354,0.0709600477042337,0.0838419429937708,0.0963748987769095,0.1089969412509229,0.1246985913109691,0.1385700647077543,0.151256120928252,0.1631517094017094,0.1748514936415689,0.1893079458073965,0.2028568336760091,0.2152965875838962,0.2263971384504315,0.2380313002135106,0.2498670507423,0.2603613058818275,0.2701796622754221,0.2799577987271551,0.2893627742910806,0.2977844145020141,0.3061310435993121,0.3143310330133402,0.3213326297611052,0.3285964145168343,0.3358482192388772,0.3427941857699097,0.3481525792615408,0.3531674589091663,0.3581195227536691,0.359476507534302,0.3610628977601454,0.3622322435174746,0.3637428592089088,0.3654032030216063,0.3652044586866193,0.3652889156550128,0.3665812471253039,0.3667606114954309,0.3678969160479726,0.3686695520206846,0.3694476250641608,0.3711109250031406,0.3725955086338015,0.3741278929894625,0.3766081260927428,0.3788068894718832,0.3805045294413689,0.3803577692037881,0.3823260981707075,0.3836669699727024,0.3854221845534484,0.3850802644003777,0.3838621527250645,0.3841183631426163,0.3879976232917409,0.384227418615314,0.3883534136546184,0.3904371584699453,0.3923705722070845,0.0,1.7723416113645252,59.569493980079805,219.0489914798143,332.1424482415329,fqhc2_100Compliance_baseline_low_initial_treat_cost,57 -100000,95777,41085,384.26762166282094,7585,78.2233730436326,5878,60.96453219457698,2425,25.068649049354228,77.32840490063373,79.68824922384051,63.31625382636724,65.06438552916586,77.03882730390765,79.39480860542129,63.211319472638905,64.96026294904182,0.2895775967260761,293.4406184192256,0.104934353728332,104.12258012404152,62.06596,43.657712083154806,64802.57264270128,45582.66815953184,214.50076,129.24696303950955,223551.0195558433,134538.2117204648,247.35828,116.89687227071536,255491.26617037493,119969.49795019206,3908.03938,1733.3114908304246,4054306.16953966,1783690.1665644392,1467.3414,635.6095504665823,1522329.5885233406,653925.0137993273,2387.12822,973.150842649088,2469127.4314292576,995014.7083703493,0.3819,100000,0,282118,2945.571483759149,0,0.0,0,0.0,17857,186.0258725998935,0,0.0,23234,239.82793363751213,2183936,0,78431,0,0,0,0,0,43,0.4489595623166313,0,0.0,1,0.0104409200538751,0,0.0,0.07585,0.1986122021471589,0.3197099538562953,0.02425,0.3178981527708437,0.6821018472291562,25.873608095089,4.604272156393278,0.329363729159578,0.1913916298060564,0.242939775433821,0.2363048656005444,10.978029263868352,5.509130916903629,25.554970417903345,13288.087175808174,65.82804755740396,12.963041257843877,21.73130119708268,15.929500782312571,15.204204320164829,0.5486560054440286,0.7662222222222222,0.7009297520661157,0.5658263305322129,0.142548596112311,0.7084527220630372,0.934375,0.8640167364016736,0.6967741935483871,0.2118055555555555,0.49888442659527,0.6993788819875777,0.6474622770919067,0.5295169946332737,0.1244323342415985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021280261037868,0.0045335605184689,0.0070970231084758,0.009248155450314,0.0115257064963072,0.013710071707953,0.015622450644477,0.018060603585576,0.0202521034176063,0.0224376362687193,0.0246430145664408,0.0268605224248398,0.028877896274052,0.0310140598444661,0.0333323013735384,0.0353923757545687,0.0375549919776409,0.0393785715026497,0.0417026052437414,0.0437956964609327,0.058315154425042,0.0728329986613119,0.0860489011910753,0.0993083731001282,0.1121027564696957,0.1277837083698857,0.1413361611876988,0.153363982717153,0.165557679778701,0.1771334827316299,0.1912095723255538,0.2043750608548895,0.2169471611492477,0.2283364682209877,0.2399176682956897,0.2511685089604147,0.2616643046054613,0.2722453573438379,0.2815796346129827,0.2902937434815995,0.299065853291507,0.3080046335841241,0.315909171671227,0.3231099800734641,0.330118459779621,0.3363193287679684,0.3432476186890554,0.3488653902572802,0.3544436941616455,0.3603125909078888,0.3619844751940601,0.3634407415581549,0.3642400011302149,0.3652080739046074,0.3670139044127509,0.3669956039226536,0.3669580419580419,0.3674762407602956,0.3695689477658041,0.371694592946073,0.3716730932004138,0.3721234724646881,0.3738349147703417,0.3759177350187476,0.3769838394086528,0.3782736224596689,0.3803313460215547,0.3826704545454545,0.3834559988731204,0.3845171588188348,0.3850311469402712,0.3845661905777019,0.3846688135379175,0.3832033042680128,0.3878713106197209,0.3875209180014344,0.3841387856257744,0.389532478278858,0.3974719101123595,0.4009489916963226,0.0,1.535982485793647,62.53548264348621,216.53062359192387,349.6308163057062,fqhc2_100Compliance_baseline_low_initial_treat_cost,58 -100000,95728,40591,380.3589336453285,7367,75.64140063513288,5727,59.21987297342471,2367,24.32934982450276,77.31464774318667,79.6825396896775,63.30648041847581,65.05689941396537,77.03128710411387,79.39863508115677,63.20189293633803,64.95498273691568,0.2833606390727965,283.90460852072863,0.1045874821377808,101.91667704968664,62.87996,44.23543555955584,65686.06886177503,46209.50564051881,209.02829,125.57546240669907,217762.3788233328,130585.34849437894,242.30215,115.16808817776354,249233.79784389105,117310.2377641188,3827.05974,1702.640542494846,3958879.0009192713,1739854.686873817,1409.60361,606.7589017913485,1453720.4788567608,615144.7197818097,2337.62178,964.361311933328,2404235.960220625,975073.219950098,0.37783,100000,0,285818,2985.730402807956,0,0.0,0,0.0,17454,181.7232157780378,0,0.0,22753,233.8709677419355,2181811,0,78291,0,0,0,0,0,44,0.4596356342971753,0,0.0,0,0.0,0,0.0,0.07367,0.1949818701532435,0.3212976788380616,0.02367,0.3173498324310389,0.682650167568961,25.54605283794393,4.7144305295921125,0.3244281473720971,0.1936441417845294,0.2379954601012746,0.2439322507420988,11.35208298072284,5.687898412297693,24.91802514875368,13144.358669019088,64.1738770116215,12.835049686996838,21.07233428846025,14.964912175344534,15.301580860819874,0.5491531342762354,0.7601442741208295,0.7104413347685683,0.5979457079970653,0.1195418754473872,0.7067557535263549,0.9085365853658536,0.859538784067086,0.7472924187725631,0.1396226415094339,0.5006849315068493,0.6978233034571063,0.6589427950760318,0.5598526703499079,0.1148409893992932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025831940434584,0.0049578732852754,0.007145902271666,0.0093384818615994,0.0115672211200976,0.0135091079506092,0.0153538527458401,0.0174184721569908,0.0195346840308302,0.0214673996498879,0.0236230160357626,0.0257213266249101,0.0278554970375246,0.0298918083462132,0.0319886868019571,0.0342406980470809,0.0362753321528058,0.0383118702460385,0.0406372182014807,0.0427267612677377,0.0567284801403332,0.0703003150743722,0.0836909195824371,0.0965272080940661,0.1083421219152077,0.123666948793906,0.1374694830697378,0.1497843794920939,0.1626579436854595,0.1745256696428571,0.188870315448908,0.2022842034544784,0.2142615895843547,0.2258608973937441,0.2369677654142635,0.2486700798507379,0.2596524988532238,0.2699757459529584,0.2797233030696066,0.2888033549721376,0.2970649651972157,0.3056144999237957,0.3131182540623888,0.320406888766123,0.3266999148522078,0.3335061088485746,0.3399829689182758,0.3458189040537788,0.3515585542418317,0.3568987583950177,0.3590296205498458,0.360835811034027,0.3618040198881643,0.3629308476045957,0.3648242402595469,0.3655041198042134,0.3652332592827674,0.3660432033719705,0.3679628455382084,0.3693990440557813,0.3711642599277978,0.372395884953121,0.373155630181551,0.3739155775740321,0.3739470444835992,0.3741268803139306,0.3759791122715404,0.3773185452017569,0.3791280442674373,0.3797842588893328,0.3798934019481713,0.3805290778622684,0.3796733443919867,0.3815292029935961,0.3825631252977608,0.3832033593281344,0.3827313594791505,0.382493258660029,0.3844649343392008,0.3903011341415721,0.0,2.41003925757363,59.3202701029081,218.2071594707409,333.7789744632957,fqhc2_100Compliance_baseline_low_initial_treat_cost,59 -100000,95809,40905,383.2312204490184,7477,76.8508177728606,5834,60.25529960650879,2375,24.29834357941321,77.3504688262772,79.6822587913945,63.33176974345843,65.05989480128711,77.0561379324912,79.38987845633152,63.223931284878205,64.95585677952458,0.2943308937859967,292.3803350629868,0.1078384585802254,104.03802176253409,62.32006,43.825654804305,65046.1438904487,45742.73273315137,212.14882,128.12719483323707,220791.54359193813,133105.53600613057,246.53643,117.2487994138668,253588.67121042908,119481.23092755723,3868.35365,1729.8381211545486,3997699.433247398,1766413.392543195,1398.47784,607.0827397184023,1441195.1069314992,615736.4053916296,2343.1431,972.7007593041368,2400664.6765961447,978872.6247088,0.38063,100000,0,283273,2956.6429041113047,0,0.0,0,0.0,17723,184.32506340740431,0,0.0,23134,237.796031688046,2183064,0,78474,0,0,0,0,0,43,0.4383721779791042,0,0.0,0,0.0,0,0.0,0.07477,0.196437485221869,0.3176407650127056,0.02375,0.3159633960345704,0.6840366039654295,25.710074078596733,4.602643964232247,0.3213918409324648,0.2050051422694549,0.2332876242715118,0.2403153925265684,11.034371063034596,5.413478120662658,25.23890045038928,13219.448219793408,65.75769407228093,14.046183297009744,21.08805958687816,15.194296778572555,15.429154409820454,0.5356530682207747,0.7566889632107023,0.6917333333333333,0.5686994856722998,0.1062767475035663,0.6925207756232687,0.9090909090909092,0.8466386554621849,0.7611464968152867,0.1258278145695364,0.4840546697038724,0.693127962085308,0.6390278770550393,0.5109837631327603,0.1009090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0046338075296837,0.0071653303562366,0.0095201324893571,0.0121142461907764,0.0141268256910635,0.0161541991739329,0.0182174658933093,0.0202241217128133,0.0224392441086747,0.0245380529521543,0.0266573564445904,0.0286404771698889,0.0306388325317459,0.0326722564277095,0.0347175581984067,0.0367801575553048,0.0386262978290858,0.0406131462717588,0.0429007172675126,0.0582516169413728,0.0723292139765384,0.0857103933938339,0.0986772292207314,0.1112035905432171,0.1275046499830909,0.1408803164134157,0.1530966108546263,0.1657004366718981,0.1768727896259779,0.1906068726525253,0.2039505692322662,0.2157143943591582,0.2272762054679216,0.2385384691553619,0.2498282472353345,0.2603303940171894,0.2709376793814085,0.2802557899160618,0.2889996562392575,0.2977134587554269,0.3057102738123098,0.3134529785017521,0.3211806596252293,0.3279499933113621,0.3342180305405706,0.3407734363244219,0.3466988050146025,0.3529373596854358,0.3582407407407407,0.3598994988450472,0.3613427971718957,0.3631082780942151,0.3642110452219048,0.3651974302025728,0.3658124385447394,0.3653063818967709,0.3659782769930612,0.3679300291545189,0.3689818468823994,0.3692325047944947,0.3688752231700059,0.3689357138350893,0.3696423757750022,0.3711542182662539,0.3734336496618256,0.3755329803977679,0.3804787166856132,0.3822556814184197,0.3835403106656551,0.3855730501647748,0.3868885688376807,0.3888572333016777,0.3893351694591079,0.3897615442846328,0.3915992384578772,0.394429055093875,0.3975535168195718,0.4052936311000827,0.407436096049574,0.0,2.444481910539564,63.868306045816375,218.69674985666856,335.27318145572696,fqhc2_100Compliance_baseline_low_initial_treat_cost,60 -100000,95718,40793,382.5821684531645,7446,76.44330220021313,5833,60.36482166363693,2435,25.031864435111476,77.30949638025908,79.66865041736393,63.31695901961641,65.05900518050879,77.0093253835099,79.36834718183337,63.20740514581479,64.95226362780095,0.3001709967491734,300.3032355305635,0.109553873801623,106.74155270784524,62.458,43.991365956530295,65251.864853005696,45959.11527249868,211.88326,127.54051812730512,220803.3076328381,132687.44450083072,248.25456,118.27781496515934,255760.6092897888,120737.3058244302,3860.38135,1732.6623862418812,3997064.742263733,1774161.0420630183,1414.36362,618.2647977625612,1460911.9183434672,629199.1556055928,2402.0289,991.2931496437084,2471589.4816022064,1003763.357512977,0.3792,100000,0,283900,2965.9938569548044,0,0.0,0,0.0,17695,184.27046114628388,0,0.0,23316,239.9548674230552,2181739,0,78305,0,0,0,0,0,39,0.4074468751958879,0,0.0,0,0.0,0,0.0,0.07446,0.1963607594936708,0.3270212194466828,0.02435,0.3223583460949464,0.6776416539050536,25.45889904730712,4.615613262965051,0.3344762557860449,0.199211383507629,0.2262986456368935,0.2400137150694325,11.298183439528962,5.801690505520393,25.87506396300704,13163.654227301477,65.89920716473131,13.55648292832915,22.205579661042695,14.75688765412858,15.380256921230869,0.5414023658494771,0.7426850258175559,0.7006663249615582,0.5840909090909091,0.1121428571428571,0.7123674911660778,0.9011299435028248,0.846,0.7543859649122807,0.1847826086956521,0.4866455409687641,0.6732673267326733,0.6505858028945555,0.5371980676328503,0.094306049822064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002187541142,0.0047340037304354,0.0066958850742634,0.0089684732266189,0.0115081583896711,0.0137103423005282,0.0157875961881465,0.0178733655210428,0.0201034299497158,0.022044600914943,0.0242829906312142,0.026500877886501,0.0284938662608355,0.0304425289131934,0.0325285424036468,0.0347367877253706,0.0367115858328675,0.0388823779545525,0.0408784766972934,0.0427730610969321,0.0572780150583222,0.0711639104040192,0.0849057593270471,0.0974142735465146,0.1100484018938954,0.1261025912215758,0.1389720082341206,0.1518177463139405,0.1639265455244688,0.1760069489126238,0.1899395597884054,0.2026591022281891,0.2153732301631351,0.2274209788985202,0.2385619115784837,0.2488967734782126,0.2595522187960852,0.2704042543602686,0.2800390900206813,0.2889706809764599,0.2970215624059105,0.3042852293610197,0.3123985738145722,0.3198396601178546,0.3272851096949944,0.3343908159486483,0.3402730802956282,0.3459847316569593,0.3516862826518562,0.3574482731232046,0.3589393775664578,0.3606270094244594,0.3611122891838783,0.3619827523733603,0.3633936030552572,0.3633985721319547,0.3639722275304159,0.364921319000677,0.3659396608070453,0.3669539867916719,0.3675245954264781,0.3692507233363264,0.3712153247631935,0.3710529882097845,0.372218705876625,0.3733249085117026,0.3730864768066547,0.3754291163382072,0.3749955615523914,0.3762610088070456,0.3798410437818716,0.3824333744436699,0.3840966921119593,0.3876369810155888,0.3890321964268654,0.3906719557639139,0.3954898911353032,0.3788068418856904,0.3808724832214765,0.3845854418061502,0.0,2.245800348396381,62.55596687336285,220.69523076614067,341.2880931311093,fqhc2_100Compliance_baseline_low_initial_treat_cost,61 -100000,95735,41186,386.0970387005797,7549,77.58917846137776,5907,61.11662401420588,2427,24.985637436674157,77.40440741590693,79.76174656236205,63.3594678928421,65.0993890058363,77.1060654967296,79.46209017248526,63.25000858037865,64.99189893657683,0.2983419191773322,299.65638987678744,0.1094593124634499,107.49006925946958,62.0862,43.680836679481935,64852.14393899829,45626.82057709504,212.50798,128.23469873729655,221375.9753486186,133348.31434407114,250.09477,119.02727407189832,257846.43025016977,121621.15055075876,3897.80219,1750.39281990208,4035567.0653366074,1792985.5805428105,1469.19468,642.6870234286135,1516402.7785031598,653295.6221854796,2390.3841,993.3036585874776,2463082.362772236,1008274.0411263476,0.3834,100000,0,282210,2947.8247244999216,0,0.0,0,0.0,17792,185.2405076513292,0,0.0,23485,241.8969029090719,2186901,0,78401,0,0,0,0,0,41,0.4178200240246514,0,0.0,0,0.0,0,0.0,0.07549,0.1968961919666145,0.3214995363624321,0.02427,0.3074120603015075,0.6925879396984924,25.446896976754115,4.679671217041177,0.3233451836803792,0.2043338412053496,0.2332825461317081,0.239038428982563,11.192444468411566,5.560090067356826,25.68132112741293,13260.240254797762,66.21318164500914,13.877396335860384,21.598327217201977,15.263606133889375,15.47385195805741,0.5418994413407822,0.748135874067937,0.694240837696335,0.5805515239477503,0.121813031161473,0.7077028885832187,0.9269662921348316,0.8559322033898306,0.7845659163987139,0.1619047619047619,0.4877610599595778,0.6733254994124559,0.6411682892906815,0.521087160262418,0.1103008204193254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025008352992396,0.0047935140613123,0.0069288047558179,0.0091809272330269,0.0112655435014691,0.0134364820846905,0.0159388535031847,0.0182545432282685,0.0203428968448585,0.0226451777948324,0.0248024515481034,0.0269313271684131,0.0292481829116591,0.0313732760662896,0.0335541385501145,0.0357146548961639,0.0376844612437218,0.0395954356846473,0.0416428504619477,0.0434221078834716,0.0581111273516944,0.0724369237853054,0.0855614412335448,0.0985638588670675,0.110990482012796,0.1271650629163582,0.1406110757479312,0.1539911001341367,0.165694506762387,0.1769222520107238,0.1911059892944458,0.2046162835995325,0.2166119172449801,0.2283036612571628,0.2394167812929848,0.250357210106,0.2612441686569496,0.271988033111391,0.2812960903995825,0.2901833255086968,0.2983744161309716,0.306468568224823,0.3149718848934461,0.32200370613904,0.3286666666666666,0.3352482409093145,0.3414143182215998,0.3480377205022622,0.3540551028327512,0.3596885334457634,0.3603560001075529,0.3618451808057198,0.3628517929296485,0.363939682814802,0.3653449325277237,0.3649950233519639,0.3661315626832321,0.3668254228937428,0.3677445819375128,0.3692016296190408,0.3708280900775689,0.3722277325927395,0.3734081452528054,0.3756053811659193,0.3768518071707764,0.3770921187039995,0.3796994629185236,0.3810695693327023,0.3833750837949405,0.3861441455822492,0.3889600878798975,0.3886093565999358,0.3892192838162723,0.3887741836812725,0.3888156655996987,0.3893437759582295,0.3895662910943047,0.3878008975928192,0.3853467561521252,0.382,0.0,2.236438082198429,64.20242272825078,219.1314461319608,340.6785517889495,fqhc2_100Compliance_baseline_low_initial_treat_cost,62 -100000,95763,40787,382.42327412466193,7560,77.99463258252143,5830,60.451322535843694,2372,24.50842183306705,77.33232137485312,79.6986178329531,63.31916690730778,65.07143311888142,77.04317212110709,79.40455834447918,63.21421101723799,64.96683085885356,0.2891492537460323,294.0594884739198,0.104955890069796,104.60226002786044,61.4009,43.17413304750287,64117.33132838361,45084.12753099097,210.50612,126.316539134846,219389.79564132285,131475.27660458212,241.13408,113.72917113017576,249262.82593486,116907.69406606384,3857.94306,1713.4449482146435,4003334.7117362656,1763954.040928797,1436.29892,615.157002789057,1488329.6053799484,630915.7187915407,2344.15568,965.469341875896,2423550.9748023767,986362.4494430316,0.38021,100000,0,279095,2914.424151290164,0,0.0,0,0.0,17513,182.41909714607937,0,0.0,22712,234.56867474912025,2191962,0,78657,0,0,0,0,0,51,0.5325647692741455,0,0.0,1,0.0104424464563557,0,0.0,0.0756,0.1988374845480129,0.3137566137566137,0.02372,0.3111305872042068,0.6888694127957932,25.40906561353834,4.634354518594963,0.3332761578044597,0.1943396226415094,0.2325900514579759,0.2397941680960549,10.90000519232079,5.307514300853912,25.13690952736101,13182.725305204667,65.46906571696654,13.199286325876653,21.772127536146627,15.169783947528671,15.327867907414584,0.5524871355060035,0.7899382171226832,0.6984045290787442,0.5899705014749262,0.1208869814020028,0.7054845980465815,0.9197530864197532,0.8622222222222222,0.7278911564625851,0.1482889733840304,0.5072238275172261,0.7379480840543882,0.6490288010716678,0.551789077212806,0.1145374449339207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0048788404385884,0.0070668507838518,0.0091775754126351,0.0111906893464637,0.0131722374466437,0.0151240107693562,0.0172334582282616,0.0195695516589131,0.0216113841113841,0.0238759149529452,0.0263541538335181,0.0283399144455412,0.0305683152409005,0.0324993551715243,0.0345928850486801,0.0365921845554888,0.0385724660234464,0.0406547155105222,0.0426074820863189,0.0567670546479461,0.070905438490029,0.0843463212543919,0.0971462819650067,0.1095377672810088,0.1250502400947686,0.1375505310401171,0.150345928685471,0.1625408488007005,0.1746384037226457,0.1883858182914746,0.2017269549974572,0.2146089415859893,0.2266552923420172,0.2379967206259422,0.2491140249844954,0.2597783754226602,0.2694943674810655,0.2794443120296911,0.2891426869501466,0.2978538685928601,0.3060539034979929,0.3137923279953603,0.3209730014865966,0.3279053093366063,0.335207585790207,0.3413000475749305,0.3474521279979642,0.3534044978754275,0.3597016895459345,0.3610280449365554,0.3631054856969714,0.3651050991780976,0.3654794441311295,0.3660808618919361,0.3661840046630058,0.3658478454302784,0.3663851990848188,0.3672327022493067,0.3677917794468245,0.3679200829328056,0.3694640085949624,0.3703484937979917,0.3718211510305214,0.3738668864220272,0.3751575630252101,0.3758137134008201,0.3778497491585699,0.3803190548618725,0.3823139632946468,0.3837423030971418,0.3862339898826821,0.3891304347826086,0.3930087198086272,0.3956439393939394,0.3948559180757323,0.3962321948230969,0.3949817887494941,0.3885525591634562,0.3934108527131782,0.0,1.5785459884764343,59.378534983466935,229.11857819348504,340.6388974553241,fqhc2_100Compliance_baseline_low_initial_treat_cost,63 -100000,95724,40979,383.7386653294889,7537,77.48318081149972,5801,60.00585015252183,2354,24.12143245163177,77.41699606751023,79.77009588966982,63.36600846061516,65.10046730825248,77.12897860634875,79.48413441235527,63.261778325831095,64.99995909512002,0.2880174611614734,285.9614773145438,0.1042301347840677,100.50821313245706,61.74564,43.47050754654075,64503.82349254106,45412.33916942538,213.42553,129.03968428271344,222380.0405331996,134224.6712242629,252.84665,120.66723415162254,260658.85253436965,123233.7523490525,3837.62944,1714.9271742326905,3972127.366177761,1754603.7923955233,1435.53403,622.756211656396,1482645.6687977936,633560.989570426,2305.40218,951.3523422542252,2365461.9113284023,957478.3052165709,0.38081,100000,0,280662,2931.9919769336843,0,0.0,0,0.0,17763,184.95883999832853,0,0.0,23664,243.8155530483473,2187104,0,78451,0,0,0,0,0,55,0.564121850319669,0,0.0,0,0.0,0,0.0,0.07537,0.1979202226832278,0.3123258590951306,0.02354,0.3084932881696148,0.6915067118303851,25.846148158986203,4.623115216565553,0.3413204619893122,0.1901396310980865,0.2409929322530598,0.2275469746595414,11.410118688745811,5.8915254556404015,24.918210086334668,13255.751152455568,65.10605815434224,12.832046216010642,22.230258119562684,15.689243628584284,14.354510190184604,0.5552490949836235,0.7533998186763372,0.7,0.5951359084406295,0.1303030303030303,0.7229254571026723,0.9261363636363636,0.8521560574948666,0.7431192660550459,0.171875,0.5007992692395524,0.6724367509986684,0.6503683858004019,0.5499533146591971,0.1203007518796992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0045588548156703,0.0068058260305095,0.0092405487464332,0.0117537009923539,0.0139355442903967,0.0160027724548456,0.018075117370892,0.0202546651133321,0.0224150101793405,0.0250338156330696,0.0271762556702723,0.0293691341399479,0.0314916842593069,0.0335888257321765,0.0355057712378452,0.037612978703579,0.0395370063060073,0.0416653675469501,0.0434714669666854,0.0587977320427278,0.0727843465522653,0.0864465636441842,0.0995120104328804,0.1115423557205534,0.1267952704274806,0.1403706021489409,0.1538682588843832,0.16610227430537,0.1773953139241863,0.1919266963843487,0.2051362490669724,0.2178364161975351,0.2296861858417712,0.2403291548104283,0.2514105542648523,0.2621372208104855,0.2721418697953541,0.2818916743199882,0.2910915791160246,0.2997514019772215,0.3073255107288112,0.314069133524911,0.3207908697891093,0.3277128324653726,0.3344338228047699,0.3412041321693889,0.347356105501437,0.3527477932230592,0.3582794563926639,0.3594856604281675,0.3606676941707492,0.3617720020296555,0.3629047432946864,0.3646278138995105,0.365981910164035,0.3656239115980116,0.3662849831031202,0.3672692511223775,0.3686161963671366,0.3682752424094942,0.3692222639050684,0.3707353897125123,0.3729995529727313,0.3746870184899846,0.3755192684519922,0.3767127197990408,0.3791639143153723,0.381707017112337,0.380833134589395,0.3821319612039525,0.3825235485072641,0.3852412488174077,0.3886328725038402,0.3901657874905802,0.3918710747718924,0.3918504901960784,0.3923154701718908,0.3851851851851852,0.3868391023202738,0.0,2.3290043338894293,62.69319661538285,217.0420216662218,334.0851472906708,fqhc2_100Compliance_baseline_low_initial_treat_cost,64 -100000,95695,41081,386.3420241391922,7526,77.52756152359058,5878,60.83912430116517,2450,25.23642823554,77.3508434030137,79.74235839189178,63.31502979323547,65.0834351416209,77.0511716939329,79.44152482352605,63.20682748160411,64.97763315452312,0.2996717090807976,300.83356836573216,0.1082023116313593,105.80198709777731,62.66304,44.11621392527828,65482.04190396572,46100.85576600478,213.58688,128.27199874761055,222620.37724019017,133467.46303109938,252.23223,119.92824776168769,260185.38063639688,122683.12060693272,3912.15217,1746.6767010052968,4051253.858613303,1788360.8453997553,1430.60151,618.0861139160378,1477945.890589895,628878.1272961355,2419.3043,998.174087331422,2493418.402215372,1012148.5451704796,0.3817,100000,0,284832,2976.4564501802606,0,0.0,0,0.0,17869,186.13302680390825,0,0.0,23607,243.27289827054707,2180502,0,78244,0,0,0,0,0,40,0.4179946705679503,0,0.0,0,0.0,0,0.0,0.07526,0.1971705527901493,0.3255381344671804,0.0245,0.3309361594751451,0.6690638405248549,25.44468080105992,4.576032942791597,0.3331064988091187,0.1907111262334127,0.2320517182715209,0.2441306566859476,11.006015301278676,5.479806460744109,26.00712032859293,13223.3285817718,66.05477081490112,12.955975904101813,22.047544096639943,15.236404889284524,15.81484592487483,0.5292616536236815,0.7627118644067796,0.6726251276813074,0.5659824046920822,0.116376306620209,0.7001385041551247,0.9476744186046512,0.8418891170431212,0.7328990228013029,0.1633986928104575,0.4736129905277402,0.6808236808236808,0.6165873555404486,0.5175023651844843,0.1036315323294951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.0049487379704089,0.0071668578505517,0.0092792096918448,0.0115668680949765,0.0138037122308021,0.0158728539513817,0.0180668750127663,0.0201879710782258,0.0225210462710718,0.0245103066352169,0.0265298576446662,0.0285017794326387,0.0305078459049836,0.0325094174105991,0.0343006006223315,0.0362400671342581,0.0381549447812007,0.0400162270117333,0.0420801367578385,0.0571536003008084,0.0719640650849161,0.0853984948200396,0.0978275735100731,0.1102355559775098,0.1257617435463394,0.1393211200033965,0.1523831835413383,0.1643276291458683,0.1763740154945597,0.1908621563069229,0.2039576950972644,0.2168061192292208,0.2289797347572985,0.2399075246325755,0.2514165326828186,0.2626725023446921,0.2734273843971311,0.2824526330137671,0.2913049959294125,0.2996514065341008,0.3078535871156662,0.3151107107296951,0.3222422278237906,0.3289460879719735,0.3354800503368125,0.3421092184368737,0.3480907863565733,0.3540981057759581,0.3592535814346884,0.3604484861568352,0.3616528606673742,0.3626889666064982,0.3638401897818665,0.3638943786498655,0.3645389636257776,0.3644862774925524,0.3655935183815675,0.3672487587741825,0.3669005512994917,0.3680411983610871,0.3687795797936593,0.3693553802249454,0.3697153104685048,0.3720357995802475,0.3729602510460251,0.3726886805891906,0.3736626809314034,0.3755185263305913,0.3788551494489812,0.3816950077293807,0.3824909362337385,0.3826598368431038,0.3815264127764127,0.3829442591710338,0.3839285714285714,0.3802204626610774,0.3797852947133887,0.381957773512476,0.3888018794048551,0.0,2.3115626035635186,63.93827480595744,216.89201997768933,342.38952295538536,fqhc2_100Compliance_baseline_low_initial_treat_cost,65 -100000,95722,41005,384.4466266897892,7498,76.96245377238253,5814,60.142913854704254,2268,23.32797058147553,77.26691653433518,79.62758697932486,63.2951211478972,65.03965813921482,76.98522051596382,79.34290294477793,63.19205241711721,64.93746622174203,0.2816960183713632,284.6840345469275,0.103068730779988,102.1919174727941,62.2457,43.79341051645105,65027.579866697306,45750.622131224845,210.8271,126.7021823354993,219656.9440671946,131772.3222827556,246.8016,117.85236033037202,253757.004659326,119987.35926252411,3825.90129,1717.7638127118498,3961542.456279643,1759188.2667640157,1404.42253,607.6915454198221,1452007.8351894026,619669.4129038487,2234.013,934.3328882846868,2300910.511690103,950923.4320795132,0.38179,100000,0,282935,2955.799084849878,0,0.0,0,0.0,17554,182.75840454649924,0,0.0,23172,237.9181379411212,2182326,0,78388,0,0,0,0,0,43,0.4492175257516558,0,0.0,0,0.0,0,0.0,0.07498,0.1963906859792032,0.3024806615097359,0.02268,0.3095928400352956,0.6904071599647044,25.89156831525124,4.514624524517655,0.3410732714138287,0.197282421740626,0.2373581011351909,0.2242862057103543,11.195748499449529,5.739369168376438,24.462137022501903,13273.639787864318,65.66226529403527,13.270384224187262,22.43864230639245,15.370783264531116,14.58245549892444,0.5540075679394565,0.7523975588491717,0.7095310136157338,0.5760869565217391,0.1196319018404908,0.7034434293745608,0.913946587537092,0.885480572597137,0.7075471698113207,0.1254480286738351,0.50557959462537,0.6851851851851852,0.6519410977242303,0.536723163841808,0.1180487804878048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0044713015441705,0.006636359946422,0.008959681433549,0.0113601692329597,0.0135827232647409,0.015811203425251,0.0180377905493002,0.0204859797798063,0.0226621356043236,0.025032546410669,0.0269701449632458,0.0289680703378065,0.0310237209925118,0.0332002434822082,0.0351557250803692,0.0373005270951774,0.0393729379785446,0.0411421681236551,0.0431357839459864,0.0580876901711409,0.0722322821046902,0.08534461047683,0.0974380556578462,0.1098368957440972,0.1256732875480163,0.1388762088769519,0.1522125778795463,0.1646885224866876,0.1759781033649975,0.1909515237099399,0.2040674807406845,0.2166479729067526,0.2279969775616807,0.2392921290123524,0.2514735428298682,0.261788945173158,0.2724670993329727,0.2822621874325445,0.2906103447880476,0.2988457842762708,0.3071095707561529,0.3147246603413761,0.322947535122554,0.3295548528338604,0.3353700686318076,0.3420808349431747,0.3487049341308201,0.3546242061379014,0.3601155380069694,0.3616661480810076,0.3631623352374102,0.3647511965787759,0.3660405840856968,0.367117150750392,0.3671338364392422,0.3685502119386812,0.3690726079698527,0.3700511020492438,0.3718718538760247,0.3730920891270305,0.3739097534748496,0.3758535399446124,0.3779179810725552,0.3792367227115025,0.3805681848046043,0.3808989087558665,0.3820739703354764,0.3844999464036874,0.3858532630725577,0.3859811784340086,0.3886302111532214,0.3875735858715127,0.3896945387226165,0.3921027592768791,0.391054771585745,0.3892576014817101,0.390403936846422,0.388205701509223,0.3858206032119076,0.0,2.277986042725108,63.02805630652976,219.60950802509447,337.1691930645544,fqhc2_100Compliance_baseline_low_initial_treat_cost,66 -100000,95713,40687,382.0797592803486,7584,78.1085119053838,5825,60.367975092202734,2371,24.521224911976432,77.288290147924,79.65737429191775,63.294707477804174,65.0439024280059,76.99789418122799,79.36292119845126,63.189233932680224,64.93898550446808,0.2903959666960105,294.45309346648685,0.1054735451239494,104.91692353781444,62.36802,43.83682489553243,65161.493214087954,45800.28302898502,212.06888,127.78332343914288,221037.14228997103,132976.42267940915,245.53984,116.60222242062808,253141.6944406716,119203.5186235754,3870.44098,1727.597880429675,4013996.4477134766,1775175.0759350082,1460.20345,635.015705384806,1514603.1678037466,652455.137112833,2349.56206,969.684838275874,2431108.522353285,992093.6125294112,0.37928,100000,0,283491,2961.886055185816,0,0.0,0,0.0,17734,184.7815866183277,0,0.0,23018,237.1569170332139,2179458,0,78295,0,0,0,0,0,40,0.3970202584810841,0,0.0,0,0.0,0,0.0,0.07584,0.1999578148070027,0.3126318565400844,0.02371,0.313147708827569,0.686852291172431,25.90016124802791,4.5843542944172935,0.3301287553648068,0.1943347639484978,0.231587982832618,0.2439484978540772,11.117205358248995,5.533989421816453,25.260183824201707,13219.466806609227,65.46238075162763,13.082256863840064,21.6115882285759,15.04498707327028,15.72354858594138,0.5469527896995708,0.7579505300353356,0.6931877275091004,0.6189770200148258,0.1125967628430682,0.6937269372693727,0.896551724137931,0.8434579439252337,0.7913907284768212,0.1764705882352941,0.5024608501118568,0.7035670356703567,0.6501672240802676,0.5692454632282713,0.095067264573991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268191899857,0.0042781399215336,0.0060681089418354,0.008411385846929,0.0107599056219998,0.0128501461169546,0.0150588283273179,0.0172408513244526,0.0194727534780075,0.0214910709717034,0.0237768257937565,0.0259181704337829,0.0279659884229033,0.0297322348094747,0.0316142341413099,0.0338459312540046,0.0360016152579753,0.0381809313282895,0.0401801501945039,0.0422207862592237,0.0576414926838438,0.0719184177738689,0.0853877396807405,0.0986993033485572,0.1109093787934765,0.126688688434337,0.1406561902739435,0.1538027208710196,0.1653283149599563,0.1770605162564961,0.1913080987814084,0.2042795232936078,0.2163978348236165,0.2277355639739856,0.2389249917391783,0.2500998668442077,0.2613616031490428,0.2712745562397095,0.2804286982046556,0.2895008843053035,0.2983074834982541,0.3061983228757403,0.3144559296488375,0.3214290005888078,0.3283620280001462,0.3344790069729489,0.3408474065138721,0.3463537343736033,0.3521289735422219,0.3590229298856817,0.3606218596358528,0.3621782916822081,0.3635720050405652,0.3644748500297761,0.3655492953536682,0.3655477058995552,0.3655871218146534,0.3669107460914308,0.3683125450984434,0.3692255190746462,0.3713310193918358,0.3728351858111466,0.3748444125651357,0.3763899809053128,0.3781912069880797,0.3799801317578166,0.3797152922979979,0.3815447926559037,0.3822852896422378,0.3846215490643908,0.3867785358657569,0.3856159965598796,0.3869739097314797,0.3893030046876201,0.3904779826872412,0.3956434237007221,0.3919475369833765,0.3890012131014961,0.3924291938997821,0.3932370820668693,0.0,1.9521451386878537,60.152467218529495,223.76510332800564,342.847263967208,fqhc2_100Compliance_baseline_low_initial_treat_cost,67 -100000,95838,41052,385.5568772303262,7568,77.92316200254596,5847,60.51879212838332,2359,24.311859596402265,77.36488025655099,79.67944646180123,63.35773544642036,65.07114122095683,77.08665155825757,79.39851337581796,63.25734367426403,64.97175880857979,0.2782286982934181,280.9330859832784,0.1003917721563283,99.38241237703949,62.1291,43.7861480865398,64827.20841419896,45687.66886468812,212.62354,127.500069682395,221370.2080594336,132550.0424491277,248.8537,117.81422264147233,256192.3036791252,120335.81836902036,3920.2378,1735.0127059819376,4061061.6769965994,1780937.828399944,1436.69241,613.0146304533209,1489502.994636783,630054.989099648,2337.74698,955.8311386922566,2412021.9745821077,974579.3149762418,0.38193,100000,0,282405,2946.6912915544985,0,0.0,0,0.0,17670,183.86235105073143,0,0.0,23408,240.89609549448028,2189142,0,78563,0,0,0,0,0,46,0.4695423527202154,0,0.0,0,0.0,0,0.0,0.07568,0.1981514937292174,0.3117071881606765,0.02359,0.314504969178513,0.685495030821487,25.44411620425525,4.6868961571078165,0.33658286300667,0.1920643064819565,0.2250726868479562,0.2462801436634171,11.04416408851229,5.382092335099418,24.97547721393362,13221.04316134823,65.68490031846123,13.103481027032968,22.15733618582324,14.650504913656654,15.773578191948358,0.5435265948349581,0.7791629563668745,0.7017276422764228,0.574468085106383,0.1152777777777777,0.7082111436950147,0.9248554913294798,0.8791208791208791,0.7233333333333334,0.1102661596958174,0.4934195850992638,0.7142857142857143,0.6483807005948447,0.530511811023622,0.1163976210705182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017725108882,0.00482582424267,0.0070724084747138,0.009192296753748,0.0111448937879419,0.013358856351566,0.0154029643825562,0.0176919778671621,0.0198008668629375,0.0216490096729617,0.0238080596892551,0.025902322383342,0.0277497995847807,0.029672704816797,0.0317170717628383,0.0338288427789821,0.0357774536879014,0.0377864809979692,0.0400996781227286,0.042032981324455,0.0571056062581486,0.0709291022545545,0.0844306170977237,0.0976657251162937,0.1094882055602358,0.1245578655066465,0.1383507229489963,0.1514684467309389,0.1645102452240509,0.1769065187358771,0.1906078239451011,0.2041286138881383,0.2164528498647577,0.2279452712958211,0.2389051872850534,0.2505777630342234,0.2618042483041313,0.2718881590028634,0.2806141512959,0.2899703901864618,0.2980932472542068,0.3069719650175729,0.3152626105044201,0.3222117213575624,0.329585877839426,0.3370771295920001,0.3433666387384796,0.3488032134640074,0.3543378404606327,0.358980780891619,0.3603493285249078,0.3618997811755962,0.3632990505212962,0.3649051686694657,0.3654880574553365,0.3656273997849792,0.3661098838225711,0.3681190012863221,0.3692926100250799,0.3697752082734846,0.3712747875354107,0.3719859710653222,0.3720944961682184,0.3732476898805499,0.374495638937882,0.3766584508888772,0.3770308924485125,0.3791139240506329,0.3826317651220375,0.3848994500863003,0.3851872373828323,0.3845281796588209,0.3860438218852406,0.3874223602484472,0.390089311437626,0.3901469525415562,0.3887937743190661,0.3879114055061064,0.3900669642857143,0.4028048305414881,0.0,1.9055439643841725,60.51429244006627,224.18947908451932,344.039204360917,fqhc2_100Compliance_baseline_low_initial_treat_cost,68 -100000,95634,40601,380.115858376728,7464,76.79277244494635,5824,60.27145157579941,2411,24.792437835916097,77.2563444549925,79.66691655461398,63.27473565930678,65.0558458139134,76.96361513480089,79.37425659480745,63.16834622604469,64.95249560218205,0.2927293201916114,292.65995980652804,0.1063894332620876,103.35021173133896,62.304,43.84055954343369,65148.37819185645,45842.02223417789,208.97418,125.28750428350924,217892.0885877408,130384.84668999442,239.18425,113.85215003679102,246256.82288725767,116036.7330178678,3877.2306,1721.5515321654657,4013231.570362005,1759138.8127292246,1463.27302,626.5915850893177,1512545.8832632746,637712.1697711251,2390.43454,981.6997801773304,2459531.714662149,991844.343477887,0.37994,100000,0,283200,2961.289917811657,0,0.0,0,0.0,17529,182.6442478616392,0,0.0,22538,231.8840579710145,2182543,0,78347,0,0,0,0,0,34,0.3450655624568668,0,0.0,0,0.0,0,0.0,0.07464,0.1964520713796915,0.3230171489817792,0.02411,0.3116438356164384,0.6883561643835616,25.73019354578236,4.60179855889833,0.3282967032967033,0.1914491758241758,0.2307692307692307,0.2494848901098901,10.956121179454843,5.296458401630113,25.57595355857197,13226.84677530014,65.19262590417101,12.8070977805876,21.68080137824365,14.88546340892518,15.819263336414576,0.5410370879120879,0.7614349775784753,0.7065899581589958,0.5803571428571429,0.1176875430144528,0.7223858615611193,0.9347826086956522,0.8725701943844493,0.7751677852348994,0.1636363636363636,0.4858934169278996,0.691046658259773,0.6535541752933057,0.5248565965583174,0.1069609507640067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978021978021,0.0044190831416032,0.0068500796638894,0.0091432751211483,0.0110692847695594,0.013396086101688,0.015556144932267,0.0176958600678409,0.0199762698688705,0.0223123732251521,0.0245033656214086,0.0265859599001099,0.0289391053688165,0.0310647379653782,0.0330458137492898,0.0352235099337748,0.0371019240338364,0.0394232467303117,0.0416341481180865,0.0435490095859975,0.058433143119918,0.0722127935969157,0.0850192652941238,0.0976356899237862,0.1099362627157992,0.1252209064838037,0.1388028019528762,0.1522831828250127,0.1649493351575527,0.1766378709019692,0.1905865611625575,0.2045242789972048,0.2166998878105632,0.227865025699475,0.2389235096233386,0.250183166448347,0.2610154703177959,0.2709350166262751,0.2808652851507883,0.2900835168869309,0.2989818637228071,0.3078023498510823,0.3155640453704143,0.3225895548377025,0.3293945669387257,0.3360115699823236,0.342570281124498,0.3489057615006699,0.353986439092822,0.358982162705764,0.3598680920652511,0.3607874037517798,0.3624077405828103,0.3631155764281664,0.3644211061741693,0.3646396048772958,0.3652119839915812,0.3668700699508855,0.3685200200113858,0.3693084482914074,0.3709103302029688,0.3709754733562355,0.3716317761361472,0.3720741625177409,0.3725818181818182,0.3730661133145964,0.373516534162922,0.3740746624305004,0.3749336916928953,0.3767739356386168,0.380537066789075,0.3823229886905719,0.3834988540870894,0.3866840330983757,0.3904993454273424,0.3924080664294187,0.3921300516560316,0.3876767676767677,0.3840915281939526,0.3877630553390491,0.0,2.407876165044235,59.7519168822181,217.09833927637945,347.9939742207315,fqhc2_100Compliance_baseline_low_initial_treat_cost,69 -100000,95697,40673,381.3076689969382,7446,76.60637219557562,5762,59.67794183725717,2399,24.72386804184039,77.32722884548278,79.70399365097371,63.32110870231941,65.07602496436019,77.03396817120557,79.40845755507549,63.21473607794916,64.97112251464476,0.2932606742772066,295.53609589822827,0.1063726243702518,104.90244971542496,62.69142,44.08234549201681,65510.32947741308,46064.50096869998,211.68207,127.76119579823512,220688.31833808796,132993.95571254595,243.232,116.08584812575592,250658.5890884772,118648.37002759696,3836.66115,1720.007321886372,3975832.283143672,1764003.4608048045,1395.24359,608.3121066374509,1444585.3266037598,622269.5974141833,2362.35344,973.5355972076484,2436299.654116639,990393.5573476984,0.3794,100000,0,284961,2977.742248973322,0,0.0,0,0.0,17697,184.39449512523905,0,0.0,22809,234.8453974523757,2181059,0,78319,0,0,0,0,0,55,0.5747306603132805,0,0.0,0,0.0,0,0.0,0.07446,0.1962572482867685,0.3221864088100993,0.02399,0.3091140854047163,0.6908859145952836,25.59426458325439,4.531783539761852,0.328531759805623,0.1992363762582436,0.236029156542867,0.2362027073932662,11.121780119285974,5.606807447515666,25.51869607165604,13143.7556008254,64.68954115246645,13.30427778055155,21.32088814759079,15.0883281879155,14.976047036408612,0.5390489413398125,0.7439024390243902,0.7073428420496566,0.5698529411764706,0.1013960323291697,0.690947666195191,0.9127906976744186,0.8532494758909853,0.6962025316455697,0.1299638989169675,0.4896504139834406,0.6716417910447762,0.6581920903954802,0.5316091954022989,0.0940959409594096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348796241926,0.0045504758236969,0.00687836055595,0.0094254344536193,0.0117753531080627,0.0139289096148167,0.0162135704525523,0.0182917487974017,0.0203096557789458,0.0224165651145405,0.0246333709363142,0.0267960766189082,0.0288514945177017,0.0309840288511076,0.0330560601056803,0.0352230656270036,0.0372649572649572,0.0392122256597662,0.0410035573862572,0.0428931787858572,0.0578668644306798,0.0720572690452019,0.0853088025509776,0.098122139813792,0.1103810498117426,0.125612194167363,0.1391476898915511,0.1521204442125661,0.1643484392026152,0.1764043377060785,0.1898601925852523,0.2034657805582915,0.2159443145358638,0.2270649225654038,0.2378415856839417,0.2489141996099982,0.2595482042009866,0.2699075219944648,0.2788253056498394,0.2878392005867253,0.2959646968889712,0.30385601704938,0.3121216787689975,0.3197241379310345,0.3267483304341479,0.3328848290334527,0.3393007133275665,0.3452913654848867,0.3507162505838999,0.3558279774656828,0.3573570328750101,0.3578707853547542,0.3593231351610944,0.3608814629273025,0.3612291452341548,0.3612564639251416,0.3611172935677721,0.3618417805853032,0.3621997363329738,0.363512837016377,0.3648377226737747,0.3659580369702613,0.3677404432482442,0.3677778776170365,0.3693414391939351,0.3704687048184853,0.373348270711249,0.3759386584708976,0.3771973173314507,0.3797052699022906,0.382142692431859,0.3851413189771198,0.3895241137016927,0.3915204224258425,0.3901077752117013,0.3937341236240474,0.3943860749568763,0.3952765692977004,0.3897349125775521,0.3941778127458694,0.0,2.108626333275783,62.6638062616157,210.35802336635408,338.7375255404695,fqhc2_100Compliance_baseline_low_initial_treat_cost,70 -100000,95783,40959,383.4292097762651,7512,77.28928933109215,5866,60.71014689454287,2367,24.28405875781715,77.38146625236273,79.70337835645026,63.35451413110488,65.06738278699227,77.08934603515196,79.41266004174402,63.24718135783094,64.96364764129021,0.2921202172107655,290.71831470623977,0.1073327732739386,103.73514570206056,62.5889,43.99957397147587,65344.4765772632,45936.72569399148,210.77319,127.07680198287144,219475.2617896704,132094.00622539638,250.50507,119.07414531507068,258903.1352118852,122260.77149321556,3875.60472,1739.9510024843887,4012129.2191725047,1782449.925857814,1435.93153,622.2239727961628,1486592.412014658,637060.0762099355,2332.81928,970.4969837784482,2395849.9107357254,978810.6393708328,0.38179,100000,0,284495,2970.2034807846903,0,0.0,0,0.0,17607,183.26842967958825,0,0.0,23591,243.58184646544797,2182626,0,78434,0,0,0,0,0,35,0.3549690446112566,0,0.0,1,0.0104402660179781,0,0.0,0.07512,0.1967573797113596,0.3150958466453674,0.02367,0.3225643614336194,0.6774356385663807,25.184605174880137,4.552215371037504,0.3285032390044323,0.2009887487214456,0.237981588816911,0.232526423457211,11.290900818300932,5.776852226536645,25.22224223826997,13204.456893357656,66.14835996502735,13.743054606703662,22.028283463155248,15.3904414908885,14.986580404279945,0.5552335492669621,0.7616624257845632,0.7223663725998962,0.5773638968481375,0.1180351906158357,0.7034722222222223,0.927170868347339,0.838,0.75,0.1428571428571428,0.5070040668775418,0.6897810218978102,0.6818500350385424,0.5309090909090909,0.1114206128133704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781119008565,0.0045806477765616,0.0069587445856706,0.009159964253798,0.0117441304767811,0.0139768308325019,0.0159409654272667,0.0180818171613996,0.0200858193706579,0.0222110820101489,0.0242695570216776,0.026223991463865,0.0284254986794372,0.0305120339297111,0.0327329711228182,0.0349781064111037,0.0370048429156835,0.0391374215955626,0.0412931240455834,0.0433655407938028,0.0576786608782768,0.0717948181323511,0.0848943802311678,0.0977891782218811,0.1094863576940918,0.1247950754651125,0.1383505701405462,0.1507722768061484,0.1633769119029308,0.1751669865231422,0.1899794378236389,0.203339605909199,0.2167690718286118,0.2279534837926243,0.2391024441778824,0.250864438336732,0.2609195658970122,0.2715904870170068,0.2819388763330342,0.2907371317207383,0.298576277469504,0.3059398170381736,0.3142132821569882,0.3210117898221332,0.3280414275989497,0.3351540633515406,0.341621283255086,0.3478515500668406,0.3531914341673476,0.3580589346330123,0.3593832135973366,0.3606451257471834,0.3619392981614482,0.3627060170756809,0.3639373108065791,0.364253880436453,0.3643995175828361,0.3659046052631579,0.3671785390238474,0.3681783243658724,0.3690076364523331,0.3693656258656852,0.3710192420804974,0.3732539860768021,0.3758925125434195,0.3768335730160805,0.3766675236381295,0.3771266540642722,0.3784164553395323,0.3802484918700811,0.3817623326609206,0.3834959219574604,0.3833123425692695,0.3853301850864498,0.3860531309297912,0.3854601886116748,0.387601657204235,0.3811750355763366,0.3870431893687707,0.3920432599459251,0.0,2.0207107448837105,63.896263892395375,228.4207090578409,329.05578784421886,fqhc2_100Compliance_baseline_low_initial_treat_cost,71 -100000,95765,40606,380.2850728345429,7458,76.75037853077846,5731,59.35362606380202,2330,24.04845193964392,77.31912755708531,79.67156888897102,63.32066847763053,65.05972434312854,77.03874390686089,79.38677093642605,63.218764348245394,64.95821607541497,0.2803836502244223,284.7979525449773,0.1019041293851401,101.50826771356948,62.56888,44.01817236274545,65335.85339111366,45964.780830935575,210.61811,126.66626880507178,219459.5520284029,131796.01167696746,243.15236,115.25804071307644,250864.11528220124,117953.2449843276,3810.63511,1701.744774557943,3948979.188638856,1746889.5592444786,1427.42685,620.1512230494894,1476204.2395447188,633228.5940056274,2306.74004,949.683390682298,2382200.281940166,967671.722446362,0.37847,100000,0,284404,2969.8115177778936,0,0.0,0,0.0,17614,183.4281835743748,0,0.0,22772,234.7621782488383,2184030,0,78411,0,0,0,0,0,56,0.5847647888059312,0,0.0,0,0.0,0,0.0,0.07458,0.1970565698734377,0.3124161973719496,0.0233,0.311556514017506,0.6884434859824939,25.48978610004893,4.670333989931546,0.3205374280230326,0.2018844878729715,0.2339905775606351,0.2435875065433606,11.172993017118694,5.423753650576933,24.68931540374972,13130.127507963747,64.62626168028531,13.516996302858354,20.70562469612469,15.077881173082398,15.325759508219878,0.5442331181294713,0.7528089887640449,0.6902558519324986,0.6092468307233407,0.1167621776504298,0.7016369047619048,0.9240121580547112,0.8292134831460675,0.7755102040816326,0.1521739130434782,0.4960109414178253,0.6847826086956522,0.6458333333333334,0.562559694364852,0.1080357142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021063504440551,0.0044386343598942,0.0066758654275394,0.0087956285929025,0.0110036509340899,0.0131577607365087,0.0152026510323731,0.0174713066209206,0.0197950962148013,0.0219999590507974,0.0239508679113735,0.0259369545127836,0.0282408597727155,0.0305234205185788,0.0325423029302517,0.0345180392926902,0.0367920328788678,0.0389701992593898,0.0408250207813798,0.0428153347844652,0.0573149346582606,0.0711812637943117,0.0847308309473618,0.0971914070304202,0.1089910500627233,0.1238501067946793,0.1372101902721507,0.15027929988828,0.1632498344971918,0.1746098104793757,0.188575428017659,0.2018981040602545,0.2142779457507667,0.2260223048327137,0.2375598217723747,0.2489977185638026,0.2598702936810028,0.2699123507769164,0.2788491005050791,0.2879100238226131,0.2960668758466579,0.3045946736903717,0.3126473550145133,0.3199961585095017,0.3269305629896355,0.3330822797313315,0.339178720950638,0.344979223494022,0.3506267680568892,0.3566801512387298,0.357587123409652,0.3584804191947049,0.3589975546666289,0.3601120090535815,0.3614378792622743,0.3623925842800264,0.3635756641177686,0.3653700346134828,0.3671016306863972,0.3682518587694408,0.3688110411403145,0.3711196788425613,0.3731768579690567,0.3739544112010461,0.3747334754797441,0.3759985284843388,0.3758007526356611,0.3782799987338967,0.3791968866088802,0.3790229312063808,0.3800484837396514,0.3810771781569235,0.3803988821138211,0.3805745975506431,0.3836190476190476,0.3899655213411009,0.3941212680824869,0.4017146356399265,0.405210643015521,0.3949289281598156,0.0,1.908911315201953,59.60232370504976,227.85400321274747,327.7890823360843,fqhc2_100Compliance_baseline_low_initial_treat_cost,72 -100000,95677,40922,384.1362082841226,7551,77.60485801185237,5835,60.36978584194738,2363,24.321414760078177,77.34181859432726,79.72328682123442,63.3271521787835,65.08503135838758,77.05678225568917,79.43663450690089,63.22297106530086,64.9824735078133,0.2850363386380934,286.6523143335371,0.1041811134826389,102.55785057428568,62.23184,43.7971321674338,65043.67820897394,45776.02994181861,209.71237,125.66544063071407,218549.4423947239,130704.9976804395,243.7555,115.86200775591514,250277.59022544604,117660.3803656778,3859.32988,1725.1968004731052,3996736.969177545,1766176.7723414255,1455.26795,627.6476219861296,1507898.805355519,642883.882214251,2328.8225,963.0827111626102,2399192.5332106985,978248.1873226012,0.38188,100000,0,282872,2956.5308276806336,0,0.0,0,0.0,17490,182.15454079872904,0,0.0,22914,234.99900707589077,2187910,0,78493,0,0,0,0,0,42,0.4389769746124983,0,0.0,1,0.010451832728869,0,0.0,0.07551,0.1977322719178799,0.3129386836180638,0.02363,0.3144978605587717,0.6855021394412283,25.641557600108158,4.63163434543479,0.3367609254498714,0.1914310197086546,0.2377035132819194,0.2341045415595544,11.157676258510516,5.587374642986291,25.08626784642204,13242.85062525663,65.35679959332279,12.928615714179216,22.04463326072554,15.55144007402891,14.832110544389126,0.541216795201371,0.7502238137869293,0.6814249363867685,0.5897620764239365,0.1193265007320644,0.693863319386332,0.915915915915916,0.8503118503118503,0.7172619047619048,0.1408450704225352,0.4914792092706203,0.6798469387755102,0.6266846361185984,0.5490009514747859,0.1136783733826247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0042369015883312,0.0064222882826212,0.0085007414027746,0.0110017488916907,0.0131546794819581,0.0155337430816744,0.0174759858313853,0.0196751806539314,0.0218141244152361,0.0240241163985357,0.0262611946430038,0.0283533260632497,0.0303364418568705,0.0326885760290656,0.0347128125032323,0.036579931814178,0.0388101541815916,0.0406657997399219,0.0426479020067761,0.0566083068694634,0.0711570879621389,0.0845201985747121,0.0974157161496696,0.1096131734126607,0.1251295720420553,0.1393769629063746,0.1528299677457127,0.1650230252262455,0.1773001726671171,0.1920111142223275,0.2048220138235389,0.2188930820346061,0.230299121004067,0.2407951332739293,0.2516779266806955,0.2625686475867304,0.2731097636431134,0.2828314928100421,0.2914963064765504,0.2997940911089004,0.3077543954051493,0.3150433681619709,0.321961160393191,0.3290474685851785,0.3352611848271099,0.3415297123960317,0.3472484076433121,0.353023581601681,0.3587873020907673,0.3601105791922325,0.3609491917813882,0.3621166770203874,0.363570538998465,0.3645340005361451,0.3649705706074903,0.3655234800272968,0.3667988612614984,0.3676001782470092,0.3692379298616208,0.3705183767659143,0.3722030810660964,0.3734719596723377,0.3744224644507244,0.3757331466776085,0.3770943129080469,0.3783287946108642,0.3808604260976922,0.3838437544307387,0.3851051051051051,0.3853299609105541,0.3877496385929218,0.3890294824750095,0.3938905518458823,0.3955794842731652,0.3955026455026455,0.3940052803230315,0.3918392454377691,0.3918804623625599,0.3899297423887587,0.0,2.4063628619658344,63.34118941906176,207.18634951363637,348.3017177390341,fqhc2_100Compliance_baseline_low_initial_treat_cost,73 -100000,95677,41227,387.3135654336988,7596,78.19016064466904,5854,60.56837066379589,2354,24.18554093460288,77.38307130315455,79.75808791405815,63.34642469116329,65.09691145514681,77.09316230409944,79.47063438703829,63.239346376506,64.99400272331937,0.2899089990551147,287.4535270198635,0.1070783146572935,102.90873182744065,62.18344,43.8122728631272,64993.09133856621,45791.85474369723,213.05198,127.81319803769536,222080.4686601796,132990.31955192506,244.352,116.08608789273802,251672.14691096084,118425.83980679711,3871.25332,1723.9835149476771,4008580.52614526,1764290.0435294528,1424.54855,608.0757450102732,1473676.766621027,620313.0480787162,2317.20326,968.1074323684828,2383102.87738955,977761.6205848136,0.38313,100000,0,282652,2954.2314244802824,0,0.0,0,0.0,17813,185.55138643561148,0,0.0,22971,236.36819716337257,2184014,0,78468,0,0,0,0,0,30,0.3135549818660701,0,0.0,2,0.020903665457738,0,0.0,0.07596,0.1982616866337796,0.3098999473407056,0.02354,0.3131943577580826,0.6868056422419173,25.853892100976296,4.60534624192125,0.3349846258968227,0.1901264092927912,0.2400068329347454,0.2348821318756405,11.012421635360512,5.554632341730675,25.11319465133631,13279.163955272365,65.4224702846952,12.830589144445016,22.001301182107568,15.551330229300095,15.03924972884252,0.5268192688759822,0.7313566936208445,0.6858745537990821,0.5480427046263345,0.1127272727272727,0.6757337151037939,0.9090909090909092,0.854122621564482,0.6878787878787879,0.1153846153846153,0.4801435943459726,0.6633540372670808,0.6323924731182796,0.5051162790697674,0.1120293847566574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866110565583,0.0045488622778757,0.0067849210454255,0.0091392826678581,0.0112144781658278,0.0134674308050938,0.0156068421374543,0.0178119385921933,0.0197481396680022,0.0220404569837435,0.0244217519685039,0.0265138679235595,0.028437140036202,0.0307159852909366,0.032713317446071,0.0346335111000868,0.0365996415659218,0.0385270062689417,0.0405162283301615,0.0426150575287643,0.0573129962390305,0.0720201015547296,0.0859274180856756,0.0986350922206565,0.1111122826625615,0.1266639177001723,0.1405264441169923,0.1530836887277058,0.165297281147296,0.1768279615978056,0.1921607867187416,0.2051620297784457,0.2179768685595025,0.2302126031589878,0.2411528518783345,0.2528422312346253,0.2636040745208417,0.2744179235612827,0.2846045518557216,0.2932666957059996,0.30155752417347,0.3094538085811673,0.3167291004789226,0.3244388937590816,0.3312439143135345,0.3376475818801561,0.343233247665016,0.3486065427471378,0.3538403643771979,0.3592615612478345,0.3606747481830072,0.3618349432953465,0.3631772721502024,0.3644877399183626,0.3654100873602905,0.365997511788287,0.3661426075909163,0.3668362391136135,0.3682098077219944,0.3693220521277739,0.3703662056298962,0.3713952523076315,0.3715843556674006,0.3720675143266476,0.3725659887494591,0.3730907574414846,0.3731644849174729,0.3760401946930444,0.3767229254571027,0.3800253746729046,0.3825301204819277,0.3834570519618239,0.3872592219564396,0.3847322445879225,0.3870003735524841,0.3881841672539347,0.3868778280542986,0.3948200869909055,0.3960129310344827,0.4055265123226288,0.0,2.454271167639682,61.54235827306382,215.24300137672464,345.68279688257184,fqhc2_100Compliance_baseline_low_initial_treat_cost,74 -100000,95700,40851,383.2079414838036,7576,78.04597701149424,5932,61.47335423197492,2472,25.5067920585162,77.3960056150407,79.78004903835497,63.35197710932333,65.11293443617693,77.09623863372583,79.4780242585645,63.24369249935045,65.00618729184782,0.2997669813148746,302.0247797904716,0.1082846099728769,106.74714432910548,62.55128,43.97693969669447,65361.83908045977,45952.91504356788,211.5123,127.10931972296994,220494.47230929992,132299.09061961327,254.15906,120.69709200895522,262354.78578892373,123627.35859239366,3940.99073,1767.5665486902008,4087694.0229885057,1816613.373761966,1416.96186,611.7373247146651,1468961.1807732496,627572.0265302191,2421.35946,992.2532028613198,2500416.4681295715,1012001.9585014104,0.38071,100000,0,284324,2970.992685475444,0,0.0,0,0.0,17637,183.7513061650993,0,0.0,23841,245.86206896551724,2187053,0,78413,0,0,0,0,0,49,0.5120167189132706,0,0.0,1,0.0104493207941483,0,0.0,0.07576,0.1989966115941267,0.3262935586061246,0.02472,0.3039055632299384,0.6960944367700616,25.45599853646252,4.553448518708493,0.3270397842211733,0.2002697235333783,0.2407282535401213,0.231962238705327,11.170492633553009,5.692451659633076,26.252086857161185,13222.224703423311,67.00752813672005,13.77019781156439,22.10351569586976,15.979285899724749,15.154528729561145,0.5456844234659474,0.7685185185185185,0.6912371134020618,0.5777310924369747,0.1148255813953488,0.7087988826815642,0.9103260869565216,0.8448637316561844,0.7564102564102564,0.149090909090909,0.4937777777777777,0.7048780487804878,0.6411483253588517,0.5277777777777778,0.106267029972752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002329892521045,0.0044614791831437,0.0067193114228294,0.0091033782067564,0.0114540312900535,0.0136235897853622,0.0159466541594869,0.0181625131445956,0.0201701118403565,0.022416246148807,0.0242262069531161,0.0263773949113908,0.0284888564346761,0.0303979233407843,0.0324607653971955,0.0345675949471769,0.0365858711414957,0.0388004857845732,0.041090761598702,0.042813965607087,0.0582189634643103,0.0721977458480278,0.0853837601996937,0.0982074331072911,0.1104646260224302,0.1259860837933295,0.1394139986845734,0.1523747684840227,0.1648045289468062,0.1772017502466646,0.1915120448842894,0.2049387790420975,0.2171073365283256,0.2298140719446478,0.2403768979582861,0.2516382554793004,0.2628421029152633,0.2722278395685878,0.2816192882473572,0.2907529783001394,0.2993545258247405,0.3072747014115092,0.3147430596574129,0.3217217528659981,0.3283238116031682,0.3347232472324723,0.3408157405211051,0.3467538236974043,0.3523620012404382,0.3574109930058877,0.3584109449125778,0.3595885237120764,0.3606645079543855,0.3619859796198598,0.3630241857561208,0.3635095571667254,0.3641667062982514,0.3658259897408917,0.3668641079193344,0.3679041059128723,0.369322664262369,0.3708968521084934,0.3722145285156741,0.3733694314545902,0.3741924597435155,0.3743595106138241,0.3757349163765055,0.3776955669385948,0.3795674605979221,0.3820629959124789,0.3827399916885995,0.3825792220369075,0.3847724806943646,0.3860095634737004,0.3876436781609195,0.3877452167595059,0.3884310371637381,0.3897149938042131,0.3958391903289289,0.3981810992487149,0.0,1.9028766960294123,63.66267126801298,234.2364468173594,334.75018192138947,fqhc2_100Compliance_baseline_low_initial_treat_cost,75 -100000,95811,41009,383.7137698176618,7524,77.17276721879533,5860,60.47322332508793,2380,24.381334084812806,77.38566316619061,79.70543702929484,63.36611244363343,65.08383276455454,77.09260234100744,79.41630925130765,63.25853767174321,64.98104312197344,0.2930608251831756,289.1277779871899,0.1075747718902135,102.7896425811008,62.47252,43.9709670748397,65203.91186815711,45893.443419690535,211.95131,127.16570910593911,220531.93265908925,132039.75944274914,250.22745,119.17220262380144,257261.8592854683,121257.94457279096,3873.42458,1740.328226769018,4000829.821210508,1774515.9267557203,1405.60111,612.0617651372102,1445524.584859776,617340.850134496,2342.78634,976.0290725832984,2402966.068614251,981115.6320120862,0.38117,100000,0,283966,2963.8141758253228,0,0.0,0,0.0,17785,184.88482533320808,0,0.0,23496,241.2979720491384,2188412,0,78551,0,0,0,0,0,38,0.3966141674755508,0,0.0,0,0.0,0,0.0,0.07524,0.197392239683081,0.31632110579479,0.0238,0.3092979127134725,0.6907020872865275,25.290358592855224,4.607641308604469,0.3387372013651877,0.1953924914675767,0.2344709897610921,0.2313993174061433,10.990183804964255,5.369051373780866,25.33509411765621,13190.271845723815,65.92362324953174,13.46478742640862,22.428219809155355,15.068281954301762,14.962334059666029,0.5358361774744027,0.7720524017467248,0.6770780856423174,0.5669577874818049,0.0980825958702064,0.7068847989093388,0.9205479452054794,0.8801571709233792,0.7241379310344828,0.1419141914191419,0.4787161393125427,0.7025641025641025,0.6070460704607046,0.5249077490774908,0.0854700854700854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598999321402,0.004724106120049,0.0067592940292902,0.0088492877898116,0.0112799544326457,0.0136951430607881,0.0161758860043421,0.0181753240126543,0.0202156471970974,0.0225753962974712,0.0249953883047408,0.0273637968551135,0.029424762844428,0.031600942881553,0.0335749713849675,0.0356250129113557,0.0375494071146245,0.0395634237857335,0.041700846269664,0.0434864046452096,0.0576939124629699,0.0715323583830739,0.0845613667330468,0.0974028702906011,0.109719486374601,0.1263031148008492,0.1390916506870358,0.1518340188982069,0.1644836486976555,0.1758348863612021,0.1892112791172864,0.2025298679974939,0.2146331400777365,0.2265973821818062,0.2370496485061511,0.2490766747019926,0.2608099827307671,0.2708602500870698,0.2806504617825373,0.2890860854450645,0.2976589401677798,0.3058169675174556,0.3134058612991247,0.321082154261999,0.3280450854441886,0.3349598092475603,0.3414146962622656,0.3473565318916723,0.3532984428506817,0.3587331699733881,0.3600866803058038,0.3610148038082659,0.362478335000775,0.3628511906484187,0.3633522811821076,0.3636154412667239,0.363815392434012,0.3636857976172821,0.3650695517774343,0.3665152684774608,0.3677814980625258,0.3691500566363943,0.3692753133123401,0.3700753644117514,0.3706829458118494,0.372151965572775,0.3735610628660454,0.3756559905855411,0.37655550024888,0.3786423375266267,0.3807942438079424,0.3800868586134792,0.3824876001526135,0.3834101382488479,0.3852021357742181,0.3882211538461538,0.3901985111662531,0.3959016393442623,0.3979306487695749,0.3971273291925465,0.0,2.6762561564247243,64.47209863391882,214.50186201848516,339.75501204982777,fqhc2_100Compliance_baseline_low_initial_treat_cost,76 -100000,95770,40862,382.15516341234206,7481,76.82990498068288,5846,60.51999582332672,2396,24.611047300824893,77.37657405990127,79.71950523749831,63.3458979718325,65.07831044457541,77.08348275672422,79.427514909483,63.23881791866936,64.97426726603537,0.2930913031770501,291.99032801531644,0.1070800531631448,104.04317854003864,63.15232,44.4239557654319,65941.65187428214,46386.087256376624,210.84618,126.73203077421246,219653.33611778216,131824.00623808338,247.38475,117.50091963028736,255573.26929100967,120488.785521338,3904.24263,1746.98444559327,4043772.7158818,1791232.061807737,1453.34422,630.315952101944,1500832.7033517803,641452.6596031577,2374.53068,986.0417749874674,2441869.7504437715,997777.8209630648,0.38034,100000,0,287056,2997.3478124673697,0,0.0,0,0.0,17687,184.1390832202151,0,0.0,23279,240.22136368382584,2181741,0,78271,0,0,0,0,0,34,0.3550172287772789,0,0.0,0,0.0,0,0.0,0.07481,0.196692433086186,0.3202780376954952,0.02396,0.3174001011633788,0.6825998988366211,25.46889432553936,4.655793057285851,0.3267191241874786,0.1985973315087239,0.2293876154635648,0.2452959288402326,11.129562267175816,5.525266313504224,25.50390358440001,13210.990268655134,65.6293886050004,13.43648681914868,21.372448842395364,14.93029039047948,15.890162552976877,0.5463564830653438,0.7708871662360034,0.6905759162303665,0.6032811334824758,0.1192468619246862,0.697228144989339,0.9287925696594428,0.8422174840085288,0.7669902912621359,0.1601307189542483,0.4985357062401441,0.7100238663484487,0.6412213740458015,0.5542635658914729,0.1081560283687943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0046832709910896,0.0068183201769516,0.0092445853143159,0.0115226588560735,0.0137473141821366,0.0162127438284508,0.0185098215379589,0.0207423915599218,0.0227451863528881,0.0249159560511643,0.0271707332094722,0.0292167405138116,0.0312043006323247,0.0334038273069582,0.0355758596810368,0.0375555256427513,0.0396887966804979,0.041780586944996,0.043614096475881,0.0582384436349973,0.0719790849673202,0.0856534865193509,0.0983227542141325,0.1106673130427451,0.1262063060872874,0.1396404036977355,0.1521274218774937,0.1636979133294889,0.1750753294658846,0.1886006009887234,0.2021877434432615,0.2150977469783836,0.2267450130759719,0.2383295899942749,0.2491159614681136,0.2599140097157854,0.2703861694823685,0.2803817868167786,0.2898223754280282,0.2984924390554315,0.3061923922706218,0.3137577342151029,0.321363957681847,0.3279616936463954,0.3337772352310139,0.3396386928889556,0.3467158390029884,0.3526023531848247,0.3584091239093417,0.3597722653673769,0.3611034672537149,0.3620764950341621,0.3631814895155459,0.3645999018893728,0.3652616568791303,0.3655078348030197,0.367208694365433,0.3682434746865794,0.3690037560364872,0.3691436739453441,0.3702154651231937,0.370800218661957,0.3716090589368517,0.3739292005501797,0.3755434497930962,0.3763459335624284,0.3778205573263483,0.3805256659022755,0.382949824224992,0.3855261346427424,0.3858082455483664,0.3879982257144667,0.3900437217151185,0.3924242424242424,0.3963144669139643,0.3933157976172056,0.3890583689241407,0.3821497651284885,0.3901778808971384,0.0,2.070960111371809,62.39293501252073,219.6290341752753,340.4973576921184,fqhc2_100Compliance_baseline_low_initial_treat_cost,77 -100000,95747,40638,379.7612457831577,7399,76.07549061589397,5763,59.56322391302077,2352,24.11563808787743,77.3313489084019,79.698357505872,63.31030609897547,65.0634373567401,77.04112012167508,79.41051906798606,63.20319864527855,64.96057810344121,0.2902287867268285,287.838437885938,0.1071074536969192,102.85925329888812,62.93936,44.28273599696748,65734.38332271508,46249.08854680299,210.00033,126.4413043724522,218717.04596488664,131448.8386332437,241.15653,114.4884224548858,248577.52201113352,116955.51173307103,3812.11036,1704.94210885832,3941578.409767408,1740993.8267305817,1389.35914,602.9022976243629,1434148.975947027,613010.761296544,2325.50728,971.7756532757614,2387102.217301848,978281.2751891068,0.37905,100000,0,286088,2987.9265146688667,0,0.0,0,0.0,17541,182.55402258034195,0,0.0,22718,233.96033296082385,2181097,0,78270,0,0,0,0,0,38,0.3968792755908801,0,0.0,0,0.0,0,0.0,0.07399,0.1951985226223453,0.3178807947019867,0.02352,0.3159117305458769,0.6840882694541232,25.675627796543136,4.588153224601327,0.33610966510498,0.1979871594655561,0.2259239979177511,0.2399791775117126,10.834721024564011,5.276233360609734,25.117188716469084,13113.348781860306,64.76958533810893,13.180836005610317,21.88749217571656,14.534432827689876,15.16682432909219,0.5354849904563596,0.7449605609114811,0.7031491997934951,0.5514592933947773,0.1127982646420824,0.6939655172413793,0.8957055214723927,0.8739495798319328,0.7245901639344262,0.1298245614035087,0.4850148707389613,0.6846625766871166,0.6475017111567419,0.4984954864593781,0.1083788706739526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100537999371,0.0046442296967054,0.0069626998223801,0.0092562487299329,0.0115058292132088,0.0136366876801336,0.0159680231668892,0.0184404259881352,0.0209780196176702,0.0231784009668762,0.0250761515030306,0.0270409106786939,0.0293709028413827,0.0316812499355862,0.0337321043341831,0.0360152622816904,0.037992378743321,0.0401382215903784,0.042058212058212,0.0436843146853875,0.0578858359779522,0.0717335342500156,0.0850170999349573,0.0974991586740703,0.1094555692638638,0.1243706367675058,0.1370143583321836,0.1496639219404114,0.1622667322203458,0.1738248551191242,0.1872635357269895,0.2001234728359761,0.2123148954703832,0.2240969659808827,0.2349164748763916,0.246166128871295,0.2571655161629024,0.2679614929910488,0.2780338290384834,0.287405726337024,0.296218244135152,0.3046564751361799,0.3118634019090532,0.3190523103539419,0.3254522876135284,0.3316422258430849,0.337689512592407,0.3441605606881172,0.3508430357073323,0.3565499008592201,0.3576122303031938,0.3591859792223539,0.3602330272382322,0.3607810215808594,0.3618833814040617,0.3623415052972111,0.3625605930995152,0.3643612211682312,0.365452147249773,0.3665587377685551,0.3670136800962116,0.3682196669310071,0.3696264234987603,0.3708581043185642,0.3731267646420039,0.3741163533539299,0.3738852046649897,0.3752213508727549,0.3771653264373517,0.3788784971701521,0.3803269654665687,0.3804382683057188,0.3804423600988655,0.3828256543701209,0.3794076163610719,0.3800494641384996,0.3820733363512901,0.385193982581156,0.3863266413456321,0.3890577507598784,0.0,2.3945065783130786,61.45816977621922,216.00807182100044,335.9298827430188,fqhc2_100Compliance_baseline_low_initial_treat_cost,78 -100000,95489,41139,386.1282451381834,7542,77.61103373163401,5875,60.93895631957607,2454,25.35370566243232,77.22623088476638,79.71640600079927,63.24095407219974,65.0775237031476,76.9350506249797,79.42084150080174,63.13572302498317,64.97292180769641,0.2911802597866852,295.5644999975249,0.10523104721657,104.60189545119648,61.09092,43.011731310835465,63976.918807401904,45043.65037945256,211.78925,127.936280932963,221175.5385437066,133373.0815438569,253.11268,120.86966029035982,261643.11072479552,123831.89994199744,3858.09311,1730.4315700662548,4005283.2682298487,1777893.6749635937,1429.05887,619.5648029504529,1479819.822178471,632348.5175346573,2405.22976,983.4323083784508,2486533.171360052,1002546.4888105472,0.38232,100000,0,277686,2908.041763972813,0,0.0,0,0.0,17698,184.69143042654127,0,0.0,23729,245.0753489930777,2182209,0,78351,0,0,0,0,0,40,0.4084240069536805,0,0.0,0,0.0,0,0.0,0.07542,0.1972693032015066,0.3253778838504375,0.02454,0.318375,0.681625,25.408827464789294,4.595950114973615,0.3371914893617021,0.2042553191489361,0.225531914893617,0.2330212765957446,11.413544763568714,5.81129448110674,25.960350143986343,13274.999356886174,66.2941671507778,14.017747069231133,22.36385974266097,14.879594979039917,15.03296535984578,0.550468085106383,0.7625,0.6991418475517416,0.5939622641509434,0.1073776479181884,0.7291371994342292,0.9206798866855525,0.8817427385892116,0.7709677419354839,0.1561338289962825,0.4938354629006949,0.6965761511216056,0.6404269513008672,0.5399014778325123,0.0954545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394487510766,0.004483349731709,0.0069953499705565,0.0093238434163701,0.0117181136992995,0.0140141670488712,0.01634710558271,0.0186888194061267,0.0209111277072442,0.0233089485871191,0.0253017736902611,0.0277503598601686,0.029789118167964,0.0318182286993203,0.0337548819044076,0.0357601358346792,0.037934897616232,0.0398324376578693,0.0417764905664308,0.0437193275556019,0.058270007745609,0.0721060030634297,0.0856722225143277,0.0992791197672948,0.1116383273272955,0.1278697560044941,0.1415403261817176,0.1543016259121751,0.1664328474892104,0.1771761443633588,0.1909419703103913,0.2039525777445142,0.2166446787400373,0.2276484258528457,0.2391323535901849,0.250822331866471,0.2614060996621243,0.2717504059173732,0.2809023274861784,0.2902285327303405,0.299315624637513,0.3077753146369213,0.3159337724764109,0.32277765755368,0.3290041706299846,0.3363239243153609,0.342437503143705,0.3493023672195721,0.3547434429641965,0.360111868091085,0.3616019483155189,0.3628239129233659,0.3639937774006505,0.3650674010726192,0.3657582903023609,0.3658138604107016,0.36572784155137,0.3671902095823217,0.367583561266794,0.3682364999730269,0.3685977219582108,0.3697793342220984,0.3707445686564016,0.3714562363484879,0.3726499444202793,0.3742917103882476,0.375530937894616,0.3771801864654024,0.3798496347258671,0.3828404029054135,0.3835730088495575,0.3858660656793303,0.3867918543424475,0.3891267777947698,0.3890557537075277,0.3897102306327616,0.3874264478166615,0.3913853799958584,0.3785374054356962,0.3837480559875583,0.0,2.2721549009195647,62.446853786597146,226.0203410058918,339.79008486148206,fqhc2_100Compliance_baseline_low_initial_treat_cost,79 -100000,95713,40866,382.8946956003887,7622,78.31746993616332,5922,61.32918203378852,2453,25.27347382278269,77.36399481233721,79.74841200655653,63.33329461681414,65.0972014424333,77.05828767694462,79.43980891905596,63.22063067222261,64.98589212204493,0.3057071353925948,308.60308750057186,0.1126639445915316,111.30932038837216,61.87522,43.52035781447823,64646.62062624721,45469.64133866688,210.71167,126.71016373623696,219622.8412023445,131858.8945453982,246.89468,117.78478387610784,253934.04239758445,120065.73775930762,3961.13029,1780.1624374566152,4104969.533919112,1826315.7956146137,1491.75356,640.1320111481542,1544693.239162914,654927.4300754911,2426.76284,1015.3707590706744,2502164.0738457683,1033087.237047155,0.38108,100000,0,281251,2938.48275573851,0,0.0,0,0.0,17662,183.98754610136555,0,0.0,23158,238.09722817172167,2188866,0,78602,0,0,0,0,0,42,0.4283639630980118,0,0.0,0,0.0,0,0.0,0.07622,0.2000104964836779,0.3218315402781422,0.02453,0.3220212102308172,0.6779787897691828,25.445884571057515,4.644834162865663,0.3294495103005741,0.1940222897669706,0.2271192164809186,0.2494089834515366,11.183607704809145,5.522999563548176,26.210729276307557,13244.333497895252,66.5497314060271,13.30392856817682,22.09472318016785,14.995739142627102,16.15534051505532,0.5383316447146235,0.7432550043516101,0.7145053818554588,0.5650557620817844,0.1218686526743398,0.6784260515603799,0.9023668639053254,0.8586065573770492,0.7155688622754491,0.1178343949044586,0.4919064748201439,0.6769420468557337,0.6664388243335612,0.5153313550939663,0.1229578675838349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0046142768768951,0.00693372857955,0.0092180417505132,0.0115793972201306,0.0136825804348269,0.0160961279529968,0.0183116140365211,0.0205169116218178,0.0224761670711352,0.0247246549213446,0.0265587610019616,0.028821526656312,0.0309734057351289,0.0331799042272126,0.0350293117174495,0.0372188901664646,0.0392462071685034,0.0412573673870334,0.0432191381178628,0.0578995738992397,0.0709874604869266,0.0844322747825722,0.0965285884047912,0.1086715925500405,0.1242467172731694,0.1382703482207236,0.1510648256494266,0.1636971165650721,0.1760980001286091,0.190286581363064,0.2038875908618899,0.2159743366681165,0.2274765414816597,0.2387925059681624,0.2504484354585114,0.2612964409237978,0.2721034870641169,0.2822620007037537,0.2912962793255132,0.3003645200486026,0.3085896820846448,0.3162514659369558,0.3234800134363453,0.3303341277175234,0.3371229870033786,0.3435237832828194,0.3499185377526602,0.3557662418402238,0.3601161409528837,0.3612547815311675,0.362129493233476,0.3631930546551287,0.3636718637007897,0.3645794628658056,0.3650407250903301,0.3656298452678543,0.3676403094676108,0.3684875168518234,0.3692412166267558,0.3705713373763166,0.3709549649463302,0.3728923884514435,0.3742500842601954,0.3745262293894696,0.3754627320223687,0.3749425419443806,0.3772737338268324,0.3789052825248558,0.3792111257642968,0.3799899170447774,0.37999359111301,0.3825854156042835,0.3851325245344255,0.3878822739909884,0.3899987891996609,0.394815396700707,0.3979144942648592,0.4009111617312073,0.4046288906624102,0.0,2.153359262643161,65.3692584950776,216.38681902897417,344.5500606937244,fqhc2_100Compliance_baseline_low_initial_treat_cost,80 -100000,95680,40962,385.6500836120401,7505,77.34113712374581,5821,60.34698996655518,2370,24.414715719063544,77.31725194233033,79.72636012023524,63.30264576078415,65.08516474142421,77.02515512028404,79.43207454892577,63.19560429762894,64.98006280738721,0.2920968220462896,294.28557130947297,0.1070414631552125,105.10193403699476,62.2457,43.78274741320109,65056.1245819398,45759.56042349613,210.03934,126.61833043060642,219029.01337792643,131841.50337646998,244.37928,116.22279125127366,252660.84866220737,119331.7509177268,3875.25548,1733.3523662894854,4020020.359531772,1781409.2457038932,1472.79354,632.7137368521356,1528103.5953177256,650093.7676130177,2338.5586,973.945616621238,2411793.87541806,989320.0743553276,0.38095,100000,0,282935,2957.0965719063543,0,0.0,0,0.0,17577,183.19397993311037,0,0.0,22933,237.00877926421404,2185747,0,78425,0,0,0,0,0,44,0.4598662207357859,0,0.0,0,0.0,0,0.0,0.07505,0.1970074812967581,0.3157894736842105,0.0237,0.3070856125174914,0.6929143874825086,25.34614511244879,4.6334645024845935,0.3317299433087098,0.190173509706236,0.2355265418313004,0.2425700051537536,10.7860982692534,5.2521895008066,25.348620837621443,13163.992860832854,65.54660814754885,12.844284623444402,21.68053141557507,15.467339713092914,15.55445239543646,0.5416595086754853,0.7795844625112918,0.6846193682030036,0.5798687089715536,0.1225212464589235,0.6920315865039484,0.928358208955224,0.8430493273542601,0.7198795180722891,0.1357142857142857,0.4943541102077687,0.7150259067357513,0.6370370370370371,0.5351299326275265,0.1192579505300353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0043603914211833,0.0066371007844768,0.008647583046266,0.0106221702192603,0.0127839462157481,0.0149042090873849,0.0172035101698897,0.0192345075249895,0.0212794295432657,0.0233202351516892,0.0251960089193049,0.0274535235624729,0.0294863599810297,0.0316447198554092,0.0338430658444729,0.0356594933034788,0.0376862765460304,0.0396387773361909,0.0415919609723554,0.0563344965208851,0.0705803505979433,0.083844215830359,0.0963122731337787,0.1086367136813899,0.1248108365521985,0.1383570367225642,0.1519095188395919,0.1636847505450814,0.1754463136211484,0.1895743786963125,0.2038277926323652,0.2162050389073298,0.2280813145190423,0.2389455594967943,0.2503131408302388,0.2607336971685584,0.2710480133195338,0.2806880197873764,0.2898678514989808,0.2982547508274888,0.3069004643980956,0.3139839189077172,0.3210413968436705,0.3274606359049182,0.3339132580665062,0.3402157435132866,0.3468868152712182,0.3523725607069738,0.3574812918211933,0.3586621226612067,0.3599295173591035,0.3612242309805966,0.3622806890666358,0.3643381969387603,0.3643562225160675,0.3644188927357621,0.3652613716865187,0.3669459149235065,0.3674090518476081,0.3695001975132145,0.3704144594567783,0.3726035478026376,0.3730269370868372,0.3741668080568146,0.3749967170059093,0.3759491132059253,0.3767333143813765,0.3792884146556902,0.380653667891961,0.3818457718305973,0.3860240963855422,0.3920895332570265,0.3920314426633785,0.3917055074669457,0.3955768081291094,0.3965436711816908,0.3983522142121524,0.3988455195162177,0.3981588032220943,0.0,1.9412565349234343,61.89324005878493,223.96733763699635,336.04912721220467,fqhc2_100Compliance_baseline_low_initial_treat_cost,81 -100000,95862,41048,383.87473660053,7398,75.85904738060962,5773,59.68997099997914,2355,24.243182908764684,77.4717338221379,79.75788747635646,63.40399372213196,65.09054302179794,77.18033680976806,79.46446388404654,63.29756361799134,64.98591396042968,0.2913970123698419,293.4235923099209,0.106430104140621,104.62906136825724,62.4921,43.93785529471012,65189.647618451534,45834.48633943598,210.81026,127.40554713057436,219364.6178882143,132360.19007240632,247.44871,117.73839318835464,254511.78777826455,120093.36012887947,3820.4969,1708.7177943373313,3951780.7994825896,1748903.351627715,1377.08104,594.0051769499282,1423747.407731948,607041.7083926034,2321.2355,964.381625957306,2390386.659990403,978415.1054685416,0.38139,100000,0,284055,2963.1658008387058,0,0.0,0,0.0,17647,183.5242327512466,0,0.0,23206,238.5303874319334,2187713,0,78447,0,0,0,0,0,41,0.4276981494231291,0,0.0,0,0.0,0,0.0,0.07398,0.1939746715960041,0.3183292781832927,0.02355,0.3126203620490435,0.6873796379509565,25.53528437803593,4.566904034624561,0.3346613545816733,0.1974709856227265,0.2350597609561753,0.2328078988394249,10.725454364380925,5.205667597191986,24.95059828563516,13198.203873006903,64.79519094958904,13.17102026463045,21.92313275741355,14.958023478317564,14.743014449227474,0.5399272475316127,0.7526315789473684,0.7060041407867494,0.5504789977892409,0.1101190476190476,0.7064676616915423,0.9090909090909092,0.8675889328063241,0.717687074829932,0.1278195488721804,0.4862574438845625,0.685857321652065,0.6486676016830295,0.504233301975541,0.1057513914656771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026116003644093,0.0049639857766611,0.0074428603297572,0.0096630125862768,0.0119908950491829,0.0141727797165444,0.0163698965039524,0.0185640408408898,0.0207197271409023,0.0231837519430581,0.0252770437739404,0.0272909081585559,0.029462827321944,0.0315779725892085,0.0335642421243608,0.0354100188977353,0.0373944885799404,0.0392488107206152,0.0414101033175847,0.0433452320244773,0.0582475678042981,0.0723499895463098,0.0855645795127063,0.0984596957216105,0.1105899959950254,0.1259964055396976,0.1400744377405706,0.1528265356056254,0.1646969648442921,0.1762518220012003,0.1906703970730657,0.2047097729409603,0.216693994114645,0.2281119323951043,0.2387605584297184,0.2506467661691542,0.2620509107113017,0.2717492616424665,0.2807073190072159,0.2894309500937743,0.2979580994618067,0.3054187766913258,0.3134781427542137,0.3206872210856274,0.3276613304528297,0.3340434964656043,0.3405143850260693,0.3467468256288369,0.3519153395345227,0.3572520492343375,0.3582742332691868,0.3588644884841993,0.3597659601400864,0.3603750450775334,0.3616617210682492,0.3620199363992172,0.3624338206242591,0.3633830519586953,0.3648208469055374,0.3657063445400609,0.3681560376616813,0.3691964373876809,0.3692674959165724,0.3708018424936273,0.3701184782869914,0.3714665693126108,0.3748824752841961,0.3772583026989662,0.3777661431064572,0.3766787802180439,0.3787049187746051,0.3791494326015484,0.3798787419477075,0.3821206777581845,0.38184589008477,0.3801901552533397,0.3810036945812808,0.3809233272320521,0.3793388429752066,0.381846036001532,0.0,2.0254539643567635,62.36784431912605,218.1070195012912,331.0437319407752,fqhc2_100Compliance_baseline_low_initial_treat_cost,82 -100000,95747,40704,381.7978631184267,7418,76.30526282807817,5738,59.42744942400284,2316,23.89631006715615,77.34438518034166,79.69711271882628,63.33412346583962,65.07218054842753,77.06838456161917,79.41809638036706,63.2330973508122,64.97234014915432,0.2760006187224917,279.0163384592148,0.1010261150274161,99.8403992732051,62.5075,43.98406292614114,65284.02978683406,45937.79745176469,208.85401,125.70016343115384,217634.9650641796,130787.49561986676,244.47047,115.9854558865684,251871.12912153907,118538.4891629041,3815.40332,1710.2557333256495,3953521.332261063,1754864.8869684152,1441.21497,623.5266485202005,1492272.9171671176,638329.8867458379,2291.07766,948.7075244001976,2364746.947685045,966860.9151115868,0.37937,100000,0,284125,2967.455899401548,0,0.0,0,0.0,17482,182.05270139012188,0,0.0,23024,236.98914848507,2185388,0,78462,0,0,0,0,0,28,0.2924373609617011,0,0.0,1,0.0104441914629178,0,0.0,0.07418,0.1955347022695521,0.312213534645457,0.02316,0.3189699133095359,0.681030086690464,25.497303949606096,4.624729349803141,0.3452422446845591,0.1878703380968978,0.2218543046357615,0.2450331125827814,11.129841803510102,5.502279197244607,24.558342846146672,13125.012306857525,64.62048652807658,12.67241188596574,22.167210806006203,14.266700511259035,15.514163324845628,0.548448936911816,0.7820037105751392,0.6920747097425543,0.589159465828751,0.1301564722617354,0.7010014306151645,0.915625,0.8556485355648535,0.7557755775577558,0.1649831649831649,0.4993087557603686,0.7255936675461742,0.6400532268795742,0.5371134020618556,0.12082957619477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339856569831,0.0046231991321363,0.0067979585831836,0.0091608015193524,0.0115196128271346,0.0137428359105392,0.0156949073083233,0.0180215115211135,0.0201696127516092,0.0221633292062744,0.0242337920504964,0.0263573847890793,0.0285940488186061,0.0306282183316168,0.0325479192027565,0.0345682839869787,0.0364983903857898,0.0385476946051894,0.0404801496570359,0.0424556798533425,0.0567607633524032,0.0706175371767636,0.084044807115437,0.0974309360310432,0.1094076214175752,0.1249735673503912,0.1380531724233008,0.1509877554494101,0.1621777483500288,0.1734022254143172,0.1872571287096739,0.2004239946351699,0.21298963916461,0.2250060121116722,0.2360788799313705,0.2480430474208084,0.259140625,0.2696975491243659,0.2796614015976761,0.2886919077395268,0.2964450204827921,0.3043371407171613,0.3116935388403532,0.3191979552899672,0.3267652886333523,0.3330206494772831,0.3390848558566466,0.3446314715633767,0.350732042586853,0.3565425377276211,0.3584857346936025,0.3609649968329156,0.3621017895672039,0.3629905081606667,0.3634861319954146,0.363186754112461,0.3629588431590656,0.3641137927628329,0.3654063689027525,0.366421239318536,0.3680569914099359,0.369734572918112,0.3713018062535483,0.372573251842531,0.373853710469646,0.3738736378876781,0.3748103621010448,0.3764270579678062,0.3784632760385416,0.3787121787441544,0.3808935839392692,0.3813926147597926,0.3834282099936749,0.3858088067533652,0.3866062151695476,0.3832242712671029,0.3829065103363159,0.3858153078202995,0.3901888920214265,0.3793375394321766,0.0,1.9097013615631824,62.196795826827056,217.52245167395645,330.6870957211241,fqhc2_100Compliance_baseline_low_initial_treat_cost,83 -100000,95671,40572,381.3590325176908,7432,76.5540236853383,5768,59.7046126830492,2373,24.38565500517398,77.28108161739658,79.66640622328069,63.29287913429015,65.0549382163871,76.98292345009835,79.36819017656931,63.18354149887445,64.94821745797188,0.2981581672982258,298.2160467113744,0.1093376354157058,106.72075841522144,63.42908,44.60778825978323,66298.94116294384,46626.02174303939,211.57169,127.44420830210444,220541.07305244013,132616.9113661914,242.63578,115.24683019644937,249945.15579433684,117696.61712805153,3858.01461,1730.134146476559,3995131.502754231,1771682.598115035,1411.03019,612.3224386929386,1462837.7460254414,628280.4869114707,2349.11884,984.0468313723466,2416176.7933856654,995670.7892092728,0.37909,100000,0,288314,3013.588234679265,0,0.0,0,0.0,17710,184.4968694797797,0,0.0,22787,234.58519300519487,2175881,0,78130,0,0,0,0,0,44,0.4494569932372401,0,0.0,1,0.0104524882148195,0,0.0,0.07432,0.1960484317708196,0.3192949407965554,0.02373,0.3208631256384065,0.6791368743615934,25.55323330570656,4.6101003583252,0.3242024965325936,0.1952149791955617,0.2321428571428571,0.2484396671289875,10.892848715372894,5.323429964996348,25.52696005305096,13176.366994357955,64.95979736232673,13.166216328364545,21.066527728855394,14.850860697283029,15.87619260782376,0.5371012482662968,0.7770870337477798,0.6978609625668449,0.5675877520537714,0.1102581995812979,0.6914366595895258,0.9105691056910568,0.854978354978355,0.7127659574468085,0.15,0.4870264064293915,0.7120211360634082,0.6463068181818182,0.5288552507095553,0.0997352162400706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.004774987580977,0.0070430396703776,0.0094177647285916,0.0115330634827004,0.0136654311433342,0.0158961600424169,0.0178462041083023,0.0200868898543317,0.0220984861666956,0.0243102193148844,0.0265616657768286,0.0285067873303167,0.0302917903066271,0.0324481644700855,0.0345333857193076,0.0362237023379152,0.0381733264141152,0.0399122077057501,0.0418056366213624,0.0565219662539831,0.0703021926242382,0.0840366125036738,0.0969350714939553,0.1090385406665752,0.1246125363660407,0.1385489092935619,0.1515939034391675,0.1645052654086705,0.1757486605177541,0.1892445748306657,0.2029627863629467,0.2158267896622703,0.2267599772199588,0.2379472599645167,0.2495091241888069,0.2604559124397688,0.2701633802816901,0.2794771241830065,0.2886739856144819,0.2973969078139125,0.3059026231275932,0.3131615169205942,0.321307535152025,0.3282473423363086,0.3351241200444609,0.3411314601103863,0.3468444898219641,0.3533277913441056,0.3594706303155552,0.3605674948268167,0.3615212342402123,0.3623465714204723,0.3636403285600058,0.364155712085184,0.3653588428300753,0.3654320594648797,0.3664584985461274,0.3677059865513268,0.3683596135196293,0.3685263098315189,0.3690889500778163,0.3704692299544539,0.3702539517423848,0.3716168567468326,0.3732916316232127,0.3740501957172461,0.3749205744058965,0.3766890696851786,0.3788127123725764,0.3840121078701156,0.3850722311396469,0.3843954507910286,0.3826745164003364,0.3842592592592592,0.3857580759254893,0.3822940723633564,0.3862251117431938,0.392210641799232,0.3956386292834891,0.0,2.2247285323093906,62.51166241297771,217.23208518029892,333.0351202939088,fqhc2_100Compliance_baseline_low_initial_treat_cost,84 -100000,95737,40934,383.853682484306,7537,77.54577645006633,5924,61.41826044267107,2437,25.120904143643525,77.3612597271838,79.72483597569192,63.34108899169471,65.08827442156404,77.05640510050966,79.417146281726,63.22988584975318,64.97780039378739,0.3048546266741425,307.68969396591217,0.1112031419415302,110.47402777664672,62.40344,43.878147360233925,65181.69568714291,45831.5380408556,214.173,129.07004240988346,223217.77369251175,134337.651327785,248.93653,118.12917889127118,257140.12346323783,121160.82386377048,3902.98418,1743.726694279704,4048524.739651336,1793856.1332192223,1447.46845,623.3221866046459,1498890.8885801728,638635.539788592,2398.1303,999.6863658202604,2474579.5042668977,1020407.2943153186,0.38141,100000,0,283652,2962.804349415587,0,0.0,0,0.0,17927,186.76164910118345,0,0.0,23378,241.31735901480096,2184280,0,78421,0,0,0,0,0,41,0.4178112955283746,0,0.0,1,0.0104452823882093,0,0.0,0.07537,0.197608872342099,0.3233381982221043,0.02437,0.3251673191059477,0.6748326808940522,25.492737153206477,4.619821505005787,0.3367656988521269,0.1975016880486158,0.2270425388251181,0.2386900742741391,11.14411579477902,5.54556433502496,26.092739476748587,13197.617938067238,66.73001718109458,13.563793116064284,22.50806882990032,15.040041950066488,15.61811328506348,0.5281904118838623,0.7581196581196581,0.6521303258145363,0.5754646840148699,0.1181046676096181,0.6831615120274914,0.9309309309309308,0.8052738336713996,0.7259036144578314,0.1548821548821548,0.4777355113000671,0.6893667861409797,0.6018641810918774,0.5261599210266535,0.108325872873769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297981179283,0.0046029686105929,0.0068397231637271,0.0095701557436173,0.0117258212142784,0.0140730331357813,0.0162951481655211,0.0183795374483075,0.0205302278977987,0.0224099099099099,0.0243507325725651,0.0266317465208237,0.028632843434707,0.0308015617112894,0.0328252860990434,0.0347875529825286,0.0369898619611254,0.038966025361642,0.0409587189352188,0.0428114483376571,0.0572469669443922,0.0715564067945618,0.0848769640646961,0.0972096641924427,0.1098042935280913,0.1251968587162169,0.1384750776669176,0.1520506409915421,0.1638649179767601,0.1755619633611679,0.1896620406757033,0.2028190649271976,0.2151927634869208,0.2266188623147217,0.2373518612167718,0.2496901283753873,0.2603057435634401,0.2709269915482827,0.281382876191988,0.2902808467765018,0.2977409168199327,0.3051408261332148,0.3126997277784353,0.319418650627239,0.3270710454137236,0.3338586943137883,0.340833479250569,0.3476008654702813,0.3532827791820597,0.3577319587628866,0.359468313134445,0.3614419674207895,0.3629428023465704,0.3642564407049657,0.3657871605011844,0.3660188954604808,0.3654761904761904,0.3665524963772888,0.3675105340687198,0.3694417062460794,0.3713817894380246,0.3718073776202894,0.3729904215367737,0.3743810209777617,0.3747576580069794,0.3752107037505268,0.3750576834333179,0.3777876895628902,0.3796348913197897,0.3808815249738599,0.3807639208467556,0.3818026301721373,0.3826675951129961,0.3831761367993252,0.3845427059712774,0.3855134619966643,0.3935334872979215,0.3919526143790849,0.395079185520362,0.3911812297734627,0.0,1.6875244481023777,64.9853247578126,221.1907906876205,344.2996841442761,fqhc2_100Compliance_baseline_low_initial_treat_cost,85 -100000,95648,40983,385.6431917029107,7481,76.98017731682837,5765,59.66669454667113,2283,23.4610237537638,77.2430810454354,79.64920073748468,63.27207635196621,65.05082403037089,76.95900657346044,79.36417602188877,63.16707226679315,64.94825767390944,0.2840744719749608,285.0247155959096,0.1050040851730642,102.56635646145185,61.77512,43.45693045591423,64585.898293743725,45434.22806113482,209.77992,126.29384857220872,218741.59417865507,131456.89253534703,240.00454,114.08841904308645,247397.4887085982,116564.32540100948,3813.35167,1698.4100806403158,3950430.6206089,1739258.8351458646,1378.44096,591.050561990918,1428886.5527768484,605669.7599436666,2249.95956,940.0121211026508,2314866.9914687183,950887.2162332472,0.38187,100000,0,280796,2935.722649715624,0,0.0,0,0.0,17500,182.3456841753095,0,0.0,22634,233.0733522917364,2184160,0,78393,0,0,0,0,0,38,0.3972900635664101,0,0.0,0,0.0,0,0.0,0.07481,0.1959043653599392,0.3051731051998396,0.02283,0.3066396350734921,0.6933603649265079,25.74630563615093,4.628431750210137,0.3283607979184735,0.202601908065915,0.2371205550737207,0.2319167389418907,11.060351185438758,5.448775432182803,24.51210187997583,13275.339508104717,64.9060520387042,13.661881999678483,21.30605726676741,15.227451968772897,14.710660803485403,0.5415437987857762,0.7491438356164384,0.687797147385103,0.5932699341623994,0.100224382946896,0.6855895196506551,0.9096209912536444,0.8688888888888889,0.6774193548387096,0.1070110701107011,0.4964700523798679,0.6824242424242424,0.6313236313236313,0.5685903500473037,0.098499061913696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020167828766012,0.0045341123486093,0.0069236469955229,0.0091648970219165,0.0114227009652843,0.0135139263709964,0.0156920723935763,0.0178381800359418,0.0201652486910994,0.0224261166977287,0.0242946949574919,0.0261663431816548,0.0279626068266194,0.0298141509045205,0.0318947987737533,0.0337304049303056,0.0360909109743717,0.0382168249519954,0.040139797584747,0.0420037531276063,0.0567642694421802,0.0709684177447231,0.0850123366055961,0.0986621193461121,0.111257746761405,0.1269533731419133,0.1410526092129865,0.1538855187266117,0.1656145006312996,0.1780727757013361,0.191728349770172,0.2053792116560426,0.2180552681168102,0.2300615512671675,0.2405735762545602,0.2517724594747528,0.2624563914482511,0.2725387199314651,0.2818760659465605,0.2907003417979951,0.2988301856167322,0.3072534064414842,0.3152361990092204,0.3226015557476231,0.3300743915356799,0.3370318658643569,0.3437088170693442,0.3502247076247383,0.3560983218728471,0.3613881714020796,0.362448009506833,0.3637128706041416,0.3643536914744686,0.3657506819105101,0.3666771192641371,0.3666923195320917,0.366759531958927,0.3672431164626794,0.3682809091065263,0.3698664605762145,0.3717566189522982,0.3731554598388769,0.3739791073124406,0.3756365766821398,0.3772318724713521,0.3776940506929441,0.3794637697908239,0.3806283388450776,0.3822484366117112,0.3846246973365617,0.3852645245050308,0.3866594652984067,0.3864174614350636,0.3879950495049505,0.3881799865681665,0.3887218949140315,0.3886270813697769,0.3925311203319502,0.3961947397873531,0.390728476821192,0.0,2.391007631706248,60.693361128442135,220.2155190031944,335.3804758343148,fqhc2_100Compliance_baseline_low_initial_treat_cost,86 -100000,95814,41050,385.1942304882377,7331,75.28127413530382,5683,58.69705888492288,2329,23.869163170309143,77.44904619750217,79.77350128111864,63.38601454967061,65.1060228690234,77.16144990852091,79.48656046674694,63.28122609643626,65.00405937314163,0.2875962889812626,286.9408143717038,0.1047884532343488,101.96349588177613,62.56712,43.99972517741362,65300.60325213434,45922.02097544579,209.988,126.81690651399698,218411.71436324547,131607.98552839222,244.76733,116.52668256182076,251315.06877909284,118539.97886086046,3793.62861,1690.698300796043,3920255.9855553466,1725521.4186024792,1395.66872,604.1084353630484,1437471.3194313983,611516.0892471453,2296.45222,950.4350817434132,2355656.89773937,959275.445085794,0.38135,100000,0,284396,2968.20923873338,0,0.0,0,0.0,17580,182.76034817458827,0,0.0,22971,235.644060366961,2189378,0,78517,0,0,0,0,0,44,0.4383493017721836,0,0.0,0,0.0,0,0.0,0.07331,0.1922381014815786,0.317691992906834,0.02329,0.3147956544231764,0.6852043455768236,25.43152758038489,4.575359904816842,0.3243005454865388,0.1967270807672004,0.2352630652824212,0.2437093084638395,11.073900275715411,5.613838035013184,24.669348941488145,13202.654747013728,63.46807698941145,12.833678255784232,20.658635186675003,14.91540308410436,15.060360462847848,0.5403836002111561,0.7629695885509838,0.6885512750949538,0.5841436050860135,0.1212996389891696,0.7194767441860465,0.9246987951807228,0.8807947019867549,0.7596153846153846,0.1684587813620071,0.4831669375435338,0.6946564885496184,0.6258992805755396,0.5307317073170732,0.1094032549728752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166057340773,0.0043485753094178,0.0065954359583168,0.0089292063266321,0.0109521339882241,0.0128699866616435,0.0150586747958361,0.0173098316986292,0.0196934082779764,0.0218047497723342,0.0236716708510529,0.0258620689655172,0.0280736019736842,0.0303211259485004,0.0325594826786027,0.0345985371296334,0.0366172985168855,0.0383749987038976,0.040383996010431,0.0424313717325449,0.0569139614453809,0.0704248912679826,0.084253883077955,0.0975540566097207,0.1093443763039767,0.1248309097057829,0.1385473202170963,0.1517642554820596,0.164381807901166,0.1759099621986871,0.1900854884671219,0.2035908737360643,0.2162173898882869,0.2278302813366217,0.2386562002525113,0.2499861818905384,0.2605373373730172,0.2713260964739956,0.280826880405742,0.2899502942352739,0.2989737136788151,0.3071241029231577,0.3154987429623597,0.3219230493316435,0.3290952063511302,0.335546783733599,0.3417475000936295,0.3482498667411224,0.3542223772429562,0.3599694584134172,0.3612409975276792,0.3624586132520023,0.3642027395719067,0.3653699025622519,0.3663705527295377,0.3661999816586678,0.3664693345962586,0.3676875204716672,0.3688012129265259,0.3694815606627472,0.3703530468296881,0.3704741421834612,0.3713830745699499,0.3710811537083482,0.3711471778077442,0.3714687426771161,0.3719536556132641,0.374480674808007,0.3773019120863614,0.3795120786405062,0.3821454745327959,0.381864896692003,0.3807254939330411,0.3820714996555155,0.3810338274420372,0.3831285049516764,0.3830246913580247,0.377025641025641,0.3822222222222222,0.3695568400770713,0.0,2.232660553039488,60.62187140672293,206.8100664428947,334.7921401782282,fqhc2_100Compliance_baseline_low_initial_treat_cost,87 -100000,95796,40964,384.0661405486659,7428,76.3079878074241,5752,59.3448578228736,2317,23.779698526034487,77.3497797498425,79.68395657691043,63.33168066437421,65.06042825398207,77.06158767039145,79.39611875422317,63.22640224290389,64.95817862535074,0.2881920794510506,287.83782268726554,0.1052784214703237,102.24962863132704,62.53566,44.042825772074366,65280.032569209565,45975.64175129898,211.64149,127.24204188170457,220186.8345233621,132095.65972858958,245.78968,116.70493941812404,252027.2975907136,118363.47818014414,3805.88381,1700.9764699952225,3928493.183431458,1732103.011449385,1441.17687,616.7851461024619,1488535.8783247734,628142.7757055853,2286.21946,950.2031981363884,2347929.558645455,958225.2231438012,0.38151,100000,0,284253,2967.274207691344,0,0.0,0,0.0,17671,183.7133074449873,0,0.0,23040,235.99106434506655,2183455,0,78328,0,0,0,0,0,46,0.4801870641780449,0,0.0,0,0.0,0,0.0,0.07428,0.1947000078634898,0.3119278406031233,0.02317,0.3211950250032055,0.6788049749967945,25.61797579772193,4.629982890069754,0.3244089012517385,0.2009735744089012,0.2352225312934631,0.2393949930458971,11.084219573996988,5.484430105656524,24.79828719619453,13224.014763794285,64.65545405240734,13.643163722451378,20.932506523754437,14.95994967207783,15.119834134123714,0.5394645340751043,0.773356401384083,0.6795284030010718,0.5713229859571323,0.1220043572984749,0.7057991513437057,0.9242819843342036,0.8549450549450549,0.7288135593220338,0.1423487544483986,0.4852466574458275,0.6985769728331177,0.622962437987243,0.5274102079395085,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0046944548653005,0.0068504272636856,0.0091538062969246,0.0114535652527718,0.0136347436484904,0.01548735725938,0.0176291048661229,0.0200742050553471,0.0223031965526771,0.0245205072218634,0.0266135490892662,0.0286157895819195,0.0305005509046162,0.0326373989107113,0.0344702879756972,0.0367368486429414,0.03880262625634,0.040842407114953,0.0428418236145381,0.0576820756783825,0.0711469890100697,0.0843753602985105,0.0975850690430652,0.1093638011720561,0.1246775216747726,0.1383143469314156,0.1510717098401481,0.1643044058744993,0.175972800205929,0.1906824401491154,0.2031794472220418,0.216030717020536,0.2275579361609095,0.2392299229922992,0.2509474104115418,0.2615197473411675,0.2715943854597804,0.2819360767895436,0.2917783121493186,0.2998923997176939,0.3073729269490772,0.3147080754163165,0.3229176651011214,0.330673468148418,0.3369724601072023,0.3427391603578802,0.3484869702486283,0.3538306059781552,0.3596454144317911,0.360417116339305,0.3620470789524519,0.3634347543577139,0.3641813141355937,0.3652116855809237,0.3657674275612942,0.3658648957803762,0.3667347543900108,0.3677837615339759,0.3679810555774819,0.3684478084048802,0.3707827193383566,0.3712017519846701,0.3724472602278088,0.3724717879322427,0.3740790267180576,0.3758016491067338,0.376187620340267,0.3777879245548101,0.3777205153617443,0.379711599890481,0.3814312317105613,0.3822354656691815,0.3836671802773497,0.383782757311052,0.3853484216795712,0.3820761992904519,0.3867369701886027,0.3895460797799174,0.3953216374269006,0.0,2.5603843078757977,62.14827637135434,211.61695622158655,336.6136798556935,fqhc2_100Compliance_baseline_low_initial_treat_cost,88 -100000,95804,40657,381.0070560728153,7485,76.89658051855872,5833,60.34194814412759,2371,24.383115527535384,77.41775944651599,79.74606583309618,63.37436231324406,65.0953731973191,77.12931662864817,79.45688414966523,63.26884071175848,64.99231819451053,0.2884428178678178,289.18168343095374,0.1055216014855844,103.05500280857416,63.31996,44.50666177584865,66093.2320153647,46455.9535884187,211.60525,127.78779404083927,220338.284414012,132849.81215903227,244.67412,116.5654757266141,251908.09360778256,119028.1757157421,3874.00646,1733.4851905655291,4006652.561479688,1772381.2685958105,1428.57012,621.2638946515511,1471758.8096530417,629094.3850481731,2341.97622,971.2995132736428,2408662.602814079,982161.7768711612,0.37948,100000,0,287818,3004.2378188802136,0,0.0,0,0.0,17762,184.8357062335602,0,0.0,23054,237.26566740428373,2182669,0,78336,0,0,0,0,0,36,0.3653292138115319,0,0.0,0,0.0,0,0.0,0.07485,0.1972435965004743,0.3167668670674682,0.02371,0.3208841463414634,0.6791158536585366,25.274944962500737,4.636446417041069,0.3322475570032573,0.1969826847248414,0.2292130978913081,0.2415566603805931,11.023778031206774,5.542248136349591,25.276634360010583,13146.997201088318,65.40331772363292,13.355363890854996,21.635594980790863,15.067359966683943,15.344998885303117,0.549974284244814,0.7467362924281984,0.7063983488132095,0.6155572176514585,0.1121362668559261,0.7121745249824067,0.8945783132530121,0.8763102725366876,0.7678018575851393,0.1695501730103806,0.4977334542157751,0.6866585067319462,0.6509240246406571,0.5670611439842209,0.0973214285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020251318867141,0.0041762541433103,0.0064636584103662,0.0085718348195242,0.0109310176523224,0.0132334378435604,0.0154520436245031,0.017677798644566,0.0199922320570739,0.0222090309902976,0.0241597392347195,0.0260734779350626,0.0282480648842014,0.0303704161261762,0.0326555443278134,0.0345596893139705,0.0363145258103241,0.0384942357136932,0.040504882609599,0.0425290467663349,0.0571240766245148,0.0705981976707717,0.0841894498490439,0.0968789066193232,0.1094386922128946,0.1251928237854743,0.138769413310168,0.1509845198605086,0.1632060775484944,0.1744333033380468,0.1887267291167012,0.2025041591945206,0.2151861624157138,0.2272861276409892,0.2379236473496292,0.2500442497455639,0.2605700527248609,0.2708579001156744,0.2803511753044463,0.2894068668938857,0.2973600600774074,0.3054134846680212,0.3127953127953128,0.3196265038606572,0.3266539633221269,0.3338096352594819,0.3400850212553138,0.3459733719909968,0.3517693960496,0.3567774261603375,0.3580278469092621,0.3595275135261643,0.3607858058879071,0.3615415751127558,0.3630712490519459,0.3632000245353616,0.3637631324575721,0.3648315529991783,0.3658732327026842,0.3674329707232552,0.3684091975598311,0.3684127297884957,0.3700727936394722,0.3710431533970157,0.3720268249143629,0.373552552474057,0.3744962990483267,0.3762060919467743,0.3783574471081071,0.3790165239896476,0.3804561451620275,0.3817270254413569,0.3815997470755611,0.3807342950919777,0.3824561403508772,0.3842364532019704,0.389280677009873,0.3947693574958814,0.3981737686773658,0.4032068830660931,0.0,2.11752794554306,62.82071226431045,217.0445618780884,338.7756223569989,fqhc2_100Compliance_baseline_low_initial_treat_cost,89 -100000,95720,40752,381.89511073965735,7471,76.69243627246135,5757,59.54868366067698,2349,24.10154617634768,77.3893283971574,79.75042113195214,63.35181630130408,65.09350789048015,77.10251784064174,79.46457189186357,63.24649319482471,64.99170860054332,0.2868105565156611,285.8492400885666,0.1053231064793678,101.79928993683518,62.45228,43.90457992089668,65244.75553698286,45867.718262533104,209.79783,126.13142625192128,218614.14542415377,131206.70314659557,244.31966,115.96234667751506,251869.78687839533,118488.71769960575,3822.98911,1700.2168215017712,3956662.797743418,1738973.4031568868,1418.40634,604.8702937740414,1465336.58587547,615424.2935374437,2326.68718,959.175355666446,2390091.9765984123,967657.2064139968,0.38039,100000,0,283874,2965.670706226494,0,0.0,0,0.0,17574,183.00250731299624,0,0.0,22968,236.53363978269957,2186073,0,78428,0,0,0,0,0,32,0.3343083994985374,0,0.0,0,0.0,0,0.0,0.07471,0.1964036909487631,0.3144157408646768,0.02349,0.3093607305936073,0.6906392694063926,25.775390300533815,4.580376465507158,0.3357651554629147,0.1884662150425569,0.2365815528921313,0.239187076602397,11.049436321830823,5.499840903823047,24.75975836311385,13189.856098287062,64.29633092306656,12.595117028431783,21.68355305446096,15.226361022848062,14.79129981732576,0.5419489317352788,0.7622119815668202,0.6875323331608898,0.5748898678414097,0.1314451706608569,0.697742170429716,0.9364161849710982,0.8133047210300429,0.7040498442367601,0.1208333333333333,0.4931569343065693,0.6806495263870095,0.6475800954328562,0.5350624399615754,0.1336851363236587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002228141426213,0.0046317411089827,0.0068571660428268,0.008925398292091,0.0113049489650685,0.0134051259084339,0.0155714984510027,0.0176016815983347,0.0198943464089018,0.0219484492832219,0.024100830003074,0.0261419132433208,0.0283905837383504,0.0305715962078868,0.0329709995462233,0.0348986214166132,0.0367433144560974,0.039013308714459,0.0409433923040143,0.042919349125987,0.057349915938306,0.0715556392708398,0.0850447880173697,0.0976373978781793,0.1103181463599755,0.125748249677433,0.1400036066999756,0.1532253771545987,0.1653916834052737,0.1769348732962283,0.1902731110536745,0.2036738535434945,0.2163437493204601,0.2281948925466178,0.239606030593155,0.250963924836022,0.2613840606405662,0.2718692345767898,0.2815131773091503,0.2900912049131491,0.2985043550681889,0.3066794517984939,0.3143228858663512,0.3214829011199617,0.3284392305450306,0.3344378202601498,0.3404050265344948,0.3462301839741469,0.3511843060018658,0.3565131318463772,0.3582384758214257,0.3594392703360801,0.3602499331541395,0.3614295834718868,0.363034048368887,0.3639591112199302,0.3645360694354418,0.3659559823667262,0.3668447190129187,0.367066007248835,0.3672126846090411,0.3683012744399588,0.3689815981850264,0.3695827725437416,0.3694685990338164,0.3721901678719682,0.3737789203084833,0.3752951175748418,0.3763535367740121,0.3780594405594406,0.3783091765351378,0.3801754573659998,0.3832202422474475,0.3870770640800428,0.390068233510235,0.3880472384587856,0.3876421764525053,0.3918533604887984,0.3835655388114871,0.3822593476531424,0.0,2.3697040461569667,60.39557907289978,214.4654402446884,336.1983963961066,fqhc2_100Compliance_baseline_low_initial_treat_cost,90 -100000,95672,40778,382.3689271678234,7422,76.22919976586671,5748,59.48448866962121,2340,24.01956685341584,77.35982293729873,79.7354537761061,63.33991942654043,65.08989940603432,77.07338784258206,79.44911641993076,63.23552828539754,64.98832446136616,0.2864350947166656,286.33735617533773,0.1043911411428908,101.5749446681582,63.20006,44.45442926681986,66058.8677983109,46465.224168847606,210.85904,127.1913648801319,219799.93101429887,132348.4417855802,244.30345,116.82488912343776,252110.366669454,119578.20985911768,3816.96655,1719.963370708888,3949965.789363659,1758220.5273807463,1402.37948,614.5096069344123,1445628.4179279204,622319.1598301947,2314.8071,957.8903246979236,2377778.5977088385,966223.0099365708,0.37964,100000,0,287273,3002.675809014132,0,0.0,0,0.0,17683,184.20227443766203,0,0.0,23034,237.47805000418097,2180138,0,78205,0,0,0,0,0,32,0.334476126766452,0,0.0,1,0.0104523789614516,0,0.0,0.07422,0.1955010009482667,0.3152789005658852,0.0234,0.3166112106475556,0.6833887893524443,25.522056664639955,4.546085199884204,0.3296798886569241,0.1995476687543493,0.2282533054975643,0.2425191370911621,11.030801125615229,5.513975785599827,24.859577513535783,13185.368023307909,64.83985272142485,13.339151887668995,21.47723111482059,14.635117363834226,15.388352355101038,0.5426235212247739,0.7576285963382737,0.6997361477572559,0.5746951219512195,0.1219512195121951,0.7108868060562364,0.8985074626865671,0.8806941431670282,0.7483870967741936,0.1672597864768683,0.4891080027516624,0.6995073891625616,0.6415620641562064,0.5209580838323353,0.1105121293800539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278932231538,0.0046624299368544,0.0069192918378734,0.0090593325343787,0.0114181714657556,0.0135172273398137,0.0154780464443289,0.0174978574052156,0.0197348260434329,0.0218716752598412,0.0240951512605902,0.0261915998112317,0.0284301733973337,0.0305501498162048,0.0326054442117858,0.0347379409423997,0.0368445571716962,0.0389254784006638,0.0409406578783216,0.042937240761198,0.0571574834409411,0.0711481074289304,0.0842464315701091,0.0967321086631736,0.1090134368342228,0.1247791262392737,0.1385524905271872,0.151708491329726,0.1637893251520626,0.1759042610282279,0.1899933188215263,0.2032920028155287,0.2158200574562549,0.2269782204224581,0.238227909435292,0.2496011875747773,0.2604357337381133,0.271108312908956,0.2809962346323095,0.2902882391996154,0.2990365598362267,0.3070336534524909,0.3148310299129118,0.3221884134361972,0.3289848916934652,0.3353979140756794,0.3417018829236578,0.3478614656969943,0.3524730180914667,0.3579801980198019,0.3590188872285718,0.3603216567525886,0.3616198673627769,0.3628774397036908,0.3634890187506505,0.3642164682783164,0.3642741500269832,0.365567669049109,0.3666489334317241,0.3679896694585433,0.3697083725305738,0.3704593274842193,0.3708016593316346,0.3713168363562807,0.3736502645119211,0.3747350794107643,0.3754465178750035,0.3770528044466902,0.3782945736434108,0.3785412177799058,0.3798808432630614,0.3790993505447909,0.3784664536741214,0.3791132396106905,0.3768102134146341,0.3729285109471392,0.3717789506364483,0.3788158164310592,0.3786593707250342,0.3875096974398759,0.0,2.225803013483539,61.06360981268944,224.2811871952385,327.84080249045803,fqhc2_100Compliance_baseline_low_initial_treat_cost,91 -100000,95863,40892,382.62937734057977,7520,77.39169439721269,5839,60.44042018296945,2362,24.33681399497199,77.34109898624328,79.63193552731008,63.34986309044478,65.04411687268627,77.05653081235717,79.34572390873,63.246888597522926,64.94280964968638,0.2845681738861145,286.2116185800829,0.1029744929218523,101.3072229998926,62.37506,43.887990656725904,65066.87668860771,45781.99165134192,212.10748,127.51044738373022,220802.6871681462,132554.84116262817,246.39459,116.63126205509184,254266.4218728811,119525.68012026991,3852.36528,1701.1102637471688,3989949.949406966,1745856.7995443176,1428.52293,610.9610265704152,1479356.8738720885,626512.8115857163,2332.29494,954.8903768904946,2405060.888976977,971315.5362768412,0.38081,100000,0,283523,2957.585304027623,0,0.0,0,0.0,17749,184.66978917830653,0,0.0,23110,238.25667880204043,2185086,0,78474,0,0,0,0,0,39,0.4068305811418378,0,0.0,0,0.0,0,0.0,0.0752,0.1974738058349308,0.314095744680851,0.02362,0.3089369232713942,0.6910630767286058,25.62714465047568,4.50028050140768,0.3307073128960438,0.1978078438088713,0.2334303819147114,0.2380544613803733,11.0587567560222,5.52481898262655,24.98054649909365,13245.341876351791,65.33636459512105,13.460302176149138,21.60289887039629,15.007922838704328,15.265240709871284,0.538105840041103,0.7740259740259741,0.6866908337648887,0.5612619222303742,0.1129496402877697,0.7044952100221076,0.9201183431952664,0.8489361702127659,0.7006578947368421,0.1346938775510204,0.4877286925479696,0.7135862913096696,0.6344969199178645,0.5212464589235127,0.108296943231441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023998784871652,0.0045799515659989,0.0069074643215774,0.0090868479298231,0.0113125851238997,0.01373850036636,0.0158419674602932,0.0179546034174955,0.0199579188200927,0.0222081283181767,0.0246243354809632,0.0267581510312503,0.0289021496872528,0.0310924542667242,0.0332100279240383,0.0351322620264008,0.0372656678144161,0.0392154831223191,0.0410593413894771,0.0430200378701179,0.058007737145598,0.0718809439207407,0.0855128782562244,0.0983396519675281,0.1108677568469711,0.125951900632664,0.1390283692451111,0.1513608335105252,0.1639508702286818,0.1756478683042891,0.1903316760293579,0.2039322136546011,0.2167759188598637,0.2279971143756558,0.2392373450100667,0.2513792568630492,0.2620415722940631,0.2726413714748529,0.2827752119197031,0.2913898941774703,0.2997003459326877,0.3078884573995227,0.3157240889730241,0.3220345075485262,0.3283168749772255,0.3353269045798703,0.3415247871807711,0.3473102675730034,0.3525892544967173,0.3583375168441356,0.3600744005499171,0.3614527524894294,0.3624714217166728,0.3644034622243486,0.3656997986727313,0.3663255270760341,0.3665665379297191,0.3678028178308641,0.3691563860355477,0.3703890580793974,0.3712215790867476,0.3722289841770257,0.3735556778262158,0.3752857304515107,0.3760906653668048,0.376822696534235,0.3761322333121791,0.3777926506676865,0.3802402636521492,0.3816417371776878,0.3819578618088141,0.3856430065990665,0.3860912799592045,0.3864143395645819,0.3900993883792049,0.3913410516160154,0.3896772181506315,0.3898894801473598,0.3941585535465925,0.3956301209520094,0.0,1.8591385926264856,60.270037663291134,221.9824934922,343.47865586357733,fqhc2_100Compliance_baseline_low_initial_treat_cost,92 -100000,95668,41080,385.4684952126103,7490,77.4344608437513,5846,60.78312497386796,2314,23.999665509888363,77.31769350596971,79.73965298035009,63.289715480586615,65.08112875217569,77.03952063398366,79.4543480512522,63.190232527949725,64.9802847103441,0.2781728719860581,285.3049290978902,0.0994829526368903,100.8440418315928,63.00162,44.27736284893422,65854.43408454237,46282.31263215936,212.00879,127.30802470418703,221302.9748714304,132766.82349812586,243.12224,115.04956039152287,251815.57051469665,118469.73950182046,3876.7822,1708.988695226746,4035318.2882468537,1769363.6275732182,1420.28274,601.2527444894814,1478685.579295062,622568.5960712896,2281.12368,929.0691036967288,2368067.77605887,957735.4650401572,0.38264,100000,0,286371,2993.3833674791986,0,0.0,0,0.0,17706,184.75352259898816,0,0.0,22897,237.05941380607933,2180453,0,78197,0,0,0,0,0,40,0.407659823556466,0,0.0,2,0.0209056319772546,0,0.0,0.0749,0.195745348107882,0.3089452603471295,0.02314,0.3150632911392405,0.6849367088607595,25.473282148174803,4.646894312397516,0.3262059527882313,0.1931235032500855,0.2454669859733151,0.2352035579883681,11.251302332400568,5.624755577979701,24.355264560299627,13265.418195783925,65.34067140130603,13.060584007133864,21.17915608953693,16.02619808011826,15.07473322451694,0.5437906260691071,0.7599645704162976,0.6932354483481908,0.5832752613240418,0.1178181818181818,0.6958119030124909,0.9019073569482288,0.8551724137931035,0.7119205298013245,0.11284046692607,0.4976588628762541,0.6916010498687664,0.6453804347826086,0.5489849955869374,0.1189624329159212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021780533268498,0.0048067172352249,0.0070152284263959,0.0093395258081891,0.0114765940561824,0.0137734311328443,0.0159753534776487,0.0183185361517792,0.0201713180436584,0.0220996740400582,0.0242775753220756,0.0267335691371226,0.0286685202347852,0.0308331871963359,0.0327420004752704,0.03492378853258,0.0371276606774424,0.0391063193319207,0.0410639582075884,0.0431205289173462,0.0574847170698573,0.0712983529608985,0.0845691719531151,0.0973007698545596,0.1096891366784929,0.125232971873941,0.1387253756083048,0.1514531444831665,0.163750320869342,0.1758774002319687,0.1902327487650726,0.2032959889050209,0.2162789177885243,0.2278461605852205,0.2388781751060664,0.2503687601894263,0.2614234469811257,0.2725900900900901,0.2820876712950874,0.2910134763476347,0.2995738570568345,0.3078831570077708,0.3156411015694403,0.3227284723721778,0.3305480551704006,0.3375339087546239,0.343836851198077,0.3494043376438244,0.3551243161961059,0.3606741573033707,0.3615172934765013,0.3634522661523626,0.3639146319100616,0.3649852490310638,0.3660947906755471,0.3672768000981941,0.3671846478627323,0.3680653753822881,0.3697533609277186,0.3714362224404177,0.3722942101715227,0.3743534057255676,0.3753130217028381,0.3761910074751757,0.3781102891728312,0.3785891250488981,0.3788699469753122,0.3809778168792811,0.3846775610613249,0.385672188595094,0.388463126979028,0.3881955974505918,0.3877473121699853,0.388427846934071,0.3902531886541024,0.3932974266906044,0.3948551061521773,0.4000405926527298,0.3988919667590028,0.4028363357608279,0.0,1.2784439911083985,61.26041434432219,219.2236909093021,345.7888564480737,fqhc2_100Compliance_baseline_low_initial_treat_cost,93 -100000,95722,40966,384.739140427488,7519,77.52658740937298,5768,59.798165520987865,2349,24.205511794571784,77.34880342590687,79.70810004431426,63.338894218876014,65.07775739324188,77.06170948626833,79.41810111688984,63.23399127958283,64.9741513600934,0.2870939396385381,289.9989274244206,0.1049029392931828,103.60603314848048,62.53148,43.989227708699374,65326.1319236957,45955.19076983283,211.51009,127.33511318103906,220514.2287039552,132577.3105253119,246.59294,117.01109229300748,254963.3731012724,120060.32001199982,3822.63523,1701.588181877341,3967612.105889973,1751771.3920283134,1383.86324,593.7576781350283,1436645.0032385448,611228.1065324879,2320.33592,963.9638413737372,2394707.528049978,981817.7706694908,0.38139,100000,0,284234,2969.369632895259,0,0.0,0,0.0,17709,184.5239338918953,0,0.0,23035,238.05394789076703,2183095,0,78383,0,0,0,0,0,45,0.4596644449551827,0,0.0,1,0.0104469192035268,0,0.0,0.07519,0.197147277065471,0.3124085649687458,0.02349,0.3124841732084072,0.6875158267915928,25.601947154488023,4.605516423323716,0.3333911234396671,0.1967753120665742,0.2283287101248266,0.241504854368932,10.851439223320533,5.303603714002951,25.220568139839774,13166.80557869727,64.9436660404438,13.148200188660825,21.733827352217588,14.667217507172722,15.394420992392668,0.5360610263522885,0.7568281938325991,0.6905876235049402,0.5755504935459378,0.1055276381909547,0.6831395348837209,0.9117647058823528,0.8286334056399133,0.7027027027027027,0.1433691756272401,0.4899817850637523,0.690566037735849,0.6470588235294118,0.5386875612144956,0.0960502692998204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019037396332263,0.0041762964765032,0.0065141291664552,0.0086855819339895,0.0107979502196193,0.0128671043925281,0.0152486570784959,0.0173726651015617,0.0195493331970773,0.0215853845760196,0.0237172785601541,0.0255044440339101,0.027841464041536,0.0299180496643742,0.0317203247336008,0.0337786870847412,0.0359809068223941,0.0379331811579165,0.0401235209715319,0.0423135432512972,0.0570291777188328,0.071311209485835,0.0841184246417255,0.0965892353659049,0.1085585300508406,0.1244287890327494,0.1373697502175251,0.1504540663692789,0.1625499455139847,0.1750319127254004,0.1894267433594002,0.2031116448656778,0.2158673191952148,0.2275988014784681,0.2389223796532605,0.2505567065131892,0.2619951751250893,0.2714470647830247,0.2812684499750216,0.2908111824014665,0.2988757279979622,0.3069433229177638,0.3138418179449832,0.3209743349995804,0.3273924505837616,0.334294516327788,0.340784009606244,0.3471446563283168,0.3529122443696609,0.3588319125913805,0.3603795455158099,0.3614459491107468,0.3620599647266314,0.3631439454284763,0.3632652453105678,0.3627667741440196,0.3639452002603464,0.3647772879794723,0.3654350172156843,0.3672069490462971,0.3691435224306612,0.3701788791822666,0.3702629421779431,0.3704786098059933,0.3709638379241903,0.3713866009128587,0.3729125348509672,0.3764347770942989,0.3795713376246728,0.3812992835127887,0.3818741953283061,0.3842839446329509,0.3845660812716318,0.3847405112316034,0.3881038762650372,0.3905439633337353,0.3979016598809897,0.3994187253477268,0.3967851099830795,0.4007843137254901,0.0,1.8302135671676416,61.37181460338804,223.61227802996956,330.7864479101847,fqhc2_100Compliance_baseline_low_initial_treat_cost,94 -100000,95640,40714,381.87996654119615,7458,76.75658720200752,5859,60.70681723128398,2403,24.78042659974906,77.26744378178137,79.68411640262335,63.28338998351626,65.06994162562653,76.97440916870818,79.38795791654539,63.177564425456886,64.9652590352158,0.2930346130731891,296.1584860779567,0.1058255580593723,104.68259041073225,62.71056,44.06045736544537,65569.3851944793,46069.06876353552,210.52061,127.00771942426806,219563.8122124634,132245.52244107443,244.03823,116.18863867309196,251703.78502718528,118752.09507706312,3905.31143,1740.0925098249015,4049072.8774571302,1785335.204800649,1470.72024,636.1543891531428,1520688.801756587,648413.0998378146,2381.19084,982.5272156352456,2457123.316603932,999049.1501467464,0.37891,100000,0,285048,2980.426599749059,0,0.0,0,0.0,17660,184.05478879130072,0,0.0,22960,236.55374320368043,2180834,0,78258,0,0,0,0,0,27,0.2823086574654956,0,0.0,0,0.0,0,0.0,0.07458,0.196827742735742,0.3222043443282381,0.02403,0.3051321138211382,0.6948678861788617,25.466754233233157,4.650507400952655,0.3329919781532685,0.1906468680662229,0.2258064516129032,0.2505547021676054,11.070421595945117,5.54640462627942,25.608591135183072,13172.903917663069,65.96470822297793,12.890271165164288,22.08327976861262,14.813180139445947,16.177977149755062,0.5381464413722479,0.7600716204118174,0.6955407483341876,0.5857898715041572,0.1171662125340599,0.6894812680115274,0.913846153846154,0.8659574468085106,0.7263513513513513,0.1279461279461279,0.4911652874077387,0.696969696969697,0.6414584740040513,0.5452775073028238,0.1144321093082835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304354874663,0.0048773068343135,0.0073403996101364,0.0093996423055036,0.0115667504247245,0.0136574734183403,0.0158451781307991,0.0182952352755005,0.0203171811572715,0.0225087300693285,0.0246756576585816,0.0267699387763487,0.0288353719382349,0.0310355486862442,0.0329063490261248,0.0348089488048962,0.0368705594796694,0.038902266877024,0.0408275775984022,0.0429125484799199,0.0575319273456932,0.0716889047150248,0.0847649850884193,0.0975224537500131,0.1093751649442092,0.1249814708934205,0.1390369788237293,0.1512707123448239,0.1630302252454598,0.1746577181208053,0.1892920687981883,0.2026946529334676,0.2150233413495544,0.2269524497253769,0.2380868512301172,0.249282683594226,0.2602145017465933,0.2700093393795501,0.2797583904809482,0.2886028358226063,0.2964923048417542,0.3043890338509062,0.3124807541985456,0.3195161174183328,0.3263744418896067,0.3328764416783977,0.3393078726044395,0.345632626028479,0.3515693904020752,0.3576938853823455,0.3594963727490104,0.3605675011730934,0.3619454141990926,0.3632816466253753,0.3645523891982266,0.3655126805186017,0.3656738988554782,0.3667117280490619,0.3670058513650325,0.3676900715964758,0.3689261808239841,0.3697897969765865,0.3711198511376131,0.3724142593176799,0.3724785785372721,0.3737256658149153,0.3757511284896926,0.3794831140003171,0.3810672722111836,0.3810425394779246,0.3822300622040664,0.3842849374660141,0.3893617021276596,0.3887286616260036,0.3898370086289549,0.3928528017503342,0.3934297390757623,0.3883211678832117,0.3790112749349523,0.3808745402533715,0.0,2.078838093857087,61.60607952721359,224.4488038976711,341.97230035794433,fqhc2_100Compliance_baseline_low_initial_treat_cost,95 -100000,95839,40746,381.6817788165569,7497,77.02501069501977,5831,60.26774069011572,2394,24.635065057022715,77.40182060844235,79.71644760852597,63.36325590393732,65.07607234778786,77.1054045085901,79.41816053892889,63.25446042718493,64.96922560219157,0.2964160998522516,298.2870695970803,0.1087954767523911,106.84674559628604,62.21358,43.78280227262821,64914.67982762758,45683.701074331126,210.23131,126.77322892133712,218759.7324679932,131679.89179604212,248.54445,118.09942248575868,255664.1033399764,120452.87370125596,3861.83979,1744.9826652278657,3993266.457287743,1784563.6399241854,1408.76016,610.3641828863974,1457207.118187794,624183.7011573834,2361.92122,984.1783734872716,2431967.3827982345,996768.8263699332,0.37988,100000,0,282789,2950.667264892163,0,0.0,0,0.0,17580,182.81701603731256,0,0.0,23397,240.476215319442,2188012,0,78560,0,0,0,0,0,38,0.3964982940139192,0,0.0,0,0.0,0,0.0,0.07497,0.1973517953037801,0.3193277310924369,0.02394,0.3091689820661783,0.6908310179338216,25.560625022580503,4.547902177907493,0.3349339735894358,0.1982507288629737,0.2330646544332018,0.2337506431143886,10.982923060024548,5.4231481630778,25.363670299832997,13146.61369475714,65.77410613983054,13.532363262564973,21.99329088039147,15.224630148045012,15.023821848829076,0.5362716515177499,0.7647058823529411,0.6856118791602662,0.5710080941869021,0.0939104915627292,0.6880546075085324,0.9264305177111716,0.8448637316561844,0.6892307692307692,0.1385135135135135,0.4853412734768667,0.6894803548795945,0.6341463414634146,0.5338491295938105,0.0815370196813495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289252516251,0.0046316472245588,0.0071216978452298,0.0091613597814274,0.0112544606093878,0.0134573883301437,0.0156245222443051,0.0180036742192284,0.020207698755034,0.0222818132503607,0.0242529854953615,0.0264400377714825,0.0283491113920667,0.0305897615419463,0.0326636275500732,0.0349238494761422,0.0370255359231541,0.0389365298271446,0.0407881343609131,0.0425968133046093,0.0574444119978307,0.0715682072404528,0.0854544120883151,0.0982404538053469,0.1106359672220934,0.1261314547048448,0.1401404794948671,0.1531543024813421,0.165120771915593,0.176517221061653,0.1898968384591387,0.203093084330318,0.2150424304325622,0.2269732169200004,0.2372957758867119,0.248964768927567,0.2595930751383187,0.268812488050654,0.2788739745611746,0.2879190327898883,0.2965015386751197,0.3048883171558882,0.312536974372323,0.3195952911841569,0.3268408262454434,0.3336333374429787,0.3397440713194601,0.3453455364757698,0.3514336429950376,0.3564798309896349,0.3569147861232738,0.3584295039524058,0.360001127205095,0.3611773375525597,0.362263926655671,0.3624277368009446,0.3628526148969889,0.3638036709006359,0.3638992505389959,0.3644179894179894,0.3663977485928705,0.3673994850465438,0.367938194109126,0.3701518652280222,0.3710828271140681,0.3711380626274243,0.3734970726831358,0.3762192435970046,0.3775438349412013,0.378478738271112,0.3800954829232464,0.3810877494099978,0.3818862655496319,0.3828939301042305,0.3869238005644402,0.3861962461392255,0.3833230579531442,0.3847256347256347,0.3874374652584769,0.3926905132192846,0.0,2.106318661009528,64.91032543565305,218.48180181778392,332.77887950108953,fqhc2_100Compliance_baseline_low_initial_treat_cost,96 -100000,95702,40778,382.7506217215941,7489,77.23976510417755,5804,60.12413533677457,2424,24.99425299366785,77.32145341825886,79.70885935526074,63.3143933609397,65.08029750438612,77.02817626175357,79.41285220139943,63.20825036324117,64.9756245624056,0.2932771565052832,296.0071538613107,0.1061429976985266,104.67294198052456,62.39244,43.92247111914116,65194.499592485,45895.03993557205,212.43681,127.59360410277849,221480.146705398,132826.61188144286,243.3943,115.24442765136138,250970.38724373572,117896.69553114296,3852.36318,1710.0831424100572,3994161.68941088,1755671.3364507086,1394.18772,596.4140449941502,1445201.9184552047,611600.0344759249,2387.76382,980.3877191121755,2464248.040793296,998797.9912628155,0.3798,100000,0,283602,2963.386345112955,0,0.0,0,0.0,17751,184.95956197362648,0,0.0,22875,235.6690560280872,2185180,0,78366,0,0,0,0,0,36,0.3761676871956699,0,0.0,0,0.0,0,0.0,0.07489,0.1971827277514481,0.3236747229269595,0.02424,0.3111026422764227,0.6888973577235772,25.94227447642665,4.661255332749472,0.328394210889042,0.1953824948311509,0.2344934527911785,0.2417298414886285,11.096127885393203,5.501067387330298,25.660098739085743,13184.95983044002,65.13560169826799,13.211039937440988,21.422685491372054,15.157898435152378,15.34397783430258,0.5389386629910407,0.7654320987654321,0.6857292759706191,0.5782512858192506,0.1183178902352102,0.6905829596412556,0.9014925373134328,0.8666666666666667,0.7315436241610739,0.1403508771929824,0.4935064935064935,0.7083854818523154,0.6345895020188426,0.535277516462841,0.1127012522361359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682742968306,0.0046242774566473,0.0070245249309728,0.009359660979055,0.011506999837213,0.0137621220764403,0.0159193122367602,0.0183581784766183,0.0202516893446058,0.0223250386414584,0.0243187270602226,0.0263098441126332,0.02835070105235,0.0304600958318305,0.032463175714035,0.0344610103600157,0.0363261585631124,0.0385042499974053,0.0405079351873037,0.0425556308301631,0.057144349279298,0.0713283785198367,0.0847562575431599,0.0972850678733031,0.1089529878460499,0.1248557972164893,0.1380840179158971,0.1510975259071496,0.1633521057524819,0.1748908741862485,0.1889696773846071,0.2019549262843411,0.2146461899893411,0.2258516201019537,0.2372942884801548,0.2485743707853971,0.259891795415249,0.2697638344030664,0.2793880837359098,0.2890550739243464,0.2980785915069349,0.3069258297663322,0.3141219928016669,0.3220922147361354,0.3294405016527318,0.3361424259225035,0.342321365980672,0.348731584438055,0.3546358130144432,0.3592921054715338,0.3604721671989327,0.3611076702864143,0.3615743547091081,0.3627972918233898,0.3643540170991093,0.3640999646713669,0.3634068899825369,0.3646059648429784,0.3658269253823363,0.3680694842406877,0.369650683771938,0.3704659612062975,0.3708522822974566,0.3735330555242707,0.3746968079945668,0.375974915682968,0.3765181018318188,0.3769120686913659,0.3782383419689119,0.3808721466682713,0.3808887865530739,0.3835793556728801,0.3866435719784449,0.3876548982931961,0.3887662025924148,0.3931832014607425,0.3906004401131719,0.3899187669235576,0.3957158962795941,0.3982751862014896,0.0,2.060443207138466,59.28228532642147,226.56875331911036,337.5874807312124,fqhc2_100Compliance_baseline_low_initial_treat_cost,97 -100000,95715,40460,380.34790785143394,7361,75.7665987567257,5758,59.67716658830904,2356,24.2804158177924,77.3455376358958,79.73160199981236,63.32130932583449,65.08697188154106,77.06069617185484,79.44356950251813,63.21882859957641,64.98545875541247,0.2848414640409515,288.03249729422475,0.1024807262580793,101.51312612859442,61.9201,43.521082228638406,64692.1590137387,45469.44807881566,208.89593,125.58262575745285,217761.6361071932,130730.28591996712,240.36941,114.00358408562754,247724.8811576033,116551.4982343874,3835.04031,1696.9148546295255,3976209.7790315,1743161.2887241717,1406.91948,603.2909423785364,1458088.2411325288,618764.0500906152,2333.22602,956.1198269634372,2406892.4619965525,973184.677838617,0.37749,100000,0,281455,2940.5526824426684,0,0.0,0,0.0,17520,182.55236901217157,0,0.0,22578,232.5758762994306,2190601,0,78484,0,0,0,0,0,34,0.3447735464660711,0,0.0,0,0.0,0,0.0,0.07361,0.1949985430077618,0.3200652085314495,0.02356,0.3174705806284754,0.6825294193715247,25.606608862997543,4.643748314033717,0.328238971865231,0.1969433831191386,0.2250781521361584,0.249739492879472,11.02842527876109,5.434602839186355,24.94772207798123,13058.71188216672,64.41240119778475,13.083056399091213,21.188761423366643,14.44112525971746,15.699458115609431,0.5298714831538729,0.7627865961199295,0.683068783068783,0.5725308641975309,0.1063977746870653,0.6842105263157895,0.9318885448916407,0.8458049886621315,0.7090909090909091,0.140893470790378,0.4835140018066847,0.6954377311960542,0.6335403726708074,0.5357492654260528,0.0976460331299041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002046626612225,0.0040975708707338,0.0062135133763135,0.0082623630561596,0.0103768210303572,0.0122530046852719,0.014592808631274,0.0164619139527996,0.0184473167539267,0.0208085855896448,0.0228193425978154,0.0247943221618512,0.0268265838279313,0.0290477809721063,0.0313825450717742,0.0333719295343644,0.0355614945564913,0.0376843481780536,0.0395482576096338,0.0414161726246913,0.0558520359675414,0.0701188881446751,0.0842498530769876,0.0968237435428042,0.1086899199459978,0.1237030534431881,0.1374989389695272,0.1494536857574918,0.1619102588768464,0.1732261492063151,0.1881110212880625,0.2015009421498343,0.2143471304650681,0.2257743350729204,0.236583755227823,0.2473270771242119,0.2581966298404196,0.2684896682826965,0.2781987295825771,0.2869374112906918,0.2952281797674822,0.3037780843055198,0.3116159704811013,0.3184740831208018,0.3251064759200611,0.3312163842016517,0.3374628097107283,0.3434157371884448,0.3493771966094687,0.3552764943595414,0.357074717508431,0.3579643710027174,0.3593725821199972,0.3608152189601917,0.3617589460566138,0.362019120458891,0.3624338624338624,0.3640614452475427,0.3655025874772953,0.3666373791891553,0.3677885973668845,0.3677529744140703,0.3684032761969095,0.369201349831271,0.3701784546841328,0.3707313228958706,0.3733298927690808,0.3755972534253077,0.3785426531910382,0.3815957787016309,0.3833814565287135,0.3872071879345384,0.3893187872637321,0.392467332820907,0.3915783443139501,0.3956843253727725,0.3968999530295913,0.3944571785788706,0.3861856823266219,0.3941199841080651,0.0,1.863362880323272,58.97793803364558,217.95122745856463,341.6956554327492,fqhc2_100Compliance_baseline_low_initial_treat_cost,98 -100000,95616,40540,381.03455488621154,7536,77.63345046854083,5925,61.4541499330656,2357,24.347389558232933,77.23812690061078,79.6702290051045,63.25655152000609,65.0545825566503,76.95662846426059,79.38506748200349,63.154432044349065,64.95327077349499,0.2814984363501907,285.16152310101006,0.1021194756570267,101.31178315531032,62.60782,44.10309606682285,65478.39273761714,46125.22597350114,211.17182,126.34614349581872,220322.55061914324,131612.16305854716,247.16891,116.96001187128805,255216.0830823293,119762.86222159416,3940.66029,1750.1231491125195,4090630.281542838,1800036.2584849775,1467.492,629.3443622814771,1525264.3804384205,648831.8722137284,2337.8211,959.013260275198,2416928.610274431,978819.301755012,0.37831,100000,0,284581,2976.2905789825973,0,0.0,0,0.0,17688,184.4356593038822,0,0.0,23232,239.70883534136547,2178514,0,78194,0,0,0,0,0,39,0.4078815261044177,0,0.0,1,0.010458500669344,0,0.0,0.07536,0.1992017128809706,0.3127653927813164,0.02357,0.3166436029689269,0.6833563970310731,25.73149165440121,4.624547436508896,0.3326582278481013,0.1913924050632911,0.2337552742616033,0.2421940928270042,11.124300182663829,5.5143640853637175,24.97625547382928,13126.767017649576,66.42518693172853,13.131516037039164,22.19439467443159,15.42230219231584,15.676974027941949,0.5443037974683544,0.7645502645502645,0.7006595636732623,0.5985559566787003,0.1031358885017421,0.7205673758865249,0.9429429429429428,0.8848484848484849,0.7211538461538461,0.1444444444444444,0.4892580287929125,0.6903870162297129,0.6388888888888888,0.5629077353215284,0.0935622317596566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021181287497973,0.0045439331392695,0.006650556412964,0.0090361139627781,0.0111138251099169,0.0132135252707397,0.0151563057779591,0.0173660769010746,0.0194137021050262,0.0216525150307785,0.0237523598456866,0.0259445352075049,0.0278918496104404,0.0298859817323354,0.0316934134704752,0.0338558642454343,0.0357442750069975,0.0376664658342509,0.0397335137667204,0.0419157303956853,0.0564516972098225,0.0705543330189667,0.0831932596545783,0.0961147563428788,0.1084956967104915,0.1240493994534708,0.1369097572635045,0.1498598394815659,0.1616844627993067,0.1739097744360902,0.1883280825169392,0.2013376983782846,0.2143518669848222,0.2265904060657857,0.2373211963589076,0.2493980048159614,0.2597062672677039,0.269435485689799,0.2793294818723559,0.2875057418465778,0.2961265317489788,0.3046476445132463,0.3126787642863077,0.320013948678483,0.3264216492960322,0.3330077279752705,0.3398224086610316,0.3463331162446206,0.3521672430380405,0.3580039211530309,0.3594246393857052,0.3605759929244631,0.3610435520361991,0.3631468176210174,0.3643063885656312,0.3641289289782348,0.3646523178807947,0.3661943921529773,0.3675592934661094,0.3695054698306059,0.3699737968216864,0.3705141219322864,0.371331447151725,0.3729111697449428,0.37352962576702,0.375108469851955,0.3763239696062629,0.3784710101234489,0.3797732908253631,0.3800375444342373,0.3811956371669198,0.3832502278698193,0.3828110101074312,0.3809780101491619,0.3822861468584406,0.3855020796197266,0.3899208282582216,0.3873565532514596,0.3897790055248619,0.38473400154202,0.0,1.9104204739776705,62.78518612017736,217.6345068731144,353.7067566176699,fqhc2_100Compliance_baseline_low_initial_treat_cost,99 -100000,95726,45796,434.2602845621879,5732,58.76146501472954,4467,46.15256043290224,1734,17.769467020454215,77.33641368994157,79.71159580363417,63.332022412709286,65.08947364253824,77.12712258532797,79.50221399230894,63.25524664216072,65.01445640950962,0.2092911046135981,209.3818113252297,0.0767757705485721,75.01723302861762,170.8069,120.18715278277006,178432.44259657775,125552.68371859413,423.06889,279.94639374461127,441446.3364185279,291936.6669408678,397.6462,194.00987103039407,411528.4353258258,199673.01833254032,3145.6856,1428.8592812576428,3254138.0189290266,1460997.0975938423,1034.43059,454.4636241780999,1065780.3418089128,460378.3305322619,1688.04648,695.9474238902408,1732253.201846938,702426.0004647078,0.38165,100000,0,776395,8110.565572571715,0,0.0,0,0.0,36603,381.8398345277145,0,0.0,36265,375.1122996886948,1497097,0,53699,0,0,0,0,0,75,0.7625932348578234,0,0.0,0,0.0,0,0.0,0.05732,0.1501899646272763,0.3025122121423587,0.01734,0.3390422347855005,0.6609577652144994,24.524665902465596,4.289591882148242,0.3145287665099619,0.2507275576449518,0.2225207074098948,0.2122229684351914,11.558258055821282,6.191524090165112,18.22079855563561,12048.992389393972,50.700275545276064,13.555258182726798,15.791228350897388,11.134198685218305,10.219590326433584,0.5768972464741438,0.8294642857142858,0.6868327402135231,0.5764587525150905,0.1160337552742616,0.745819397993311,0.92018779342723,0.827683615819209,0.7096774193548387,0.1845238095238095,0.5151329868541731,0.7737752161383286,0.6393910561370124,0.532171581769437,0.1012820512820512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020773377649872,0.0043205306341849,0.0065180973653484,0.0090454508496625,0.0111695472162599,0.013749414376795,0.0158272060698151,0.0180416581580559,0.0201711428951161,0.0226132710930942,0.0249090256778227,0.0270525548494399,0.028947503727698,0.0308682665568029,0.032853870441835,0.0351421188630491,0.0371302249971525,0.0392962363583551,0.0415198661387044,0.043363228232451,0.0581921080934331,0.0728364579845999,0.0861043822946487,0.0985136754472638,0.1107492543291069,0.1263897696047347,0.1384157135437093,0.1491902468072436,0.1594018827246141,0.1693357471104303,0.1828091205492128,0.1947021299599956,0.2053519045653071,0.2152211190842863,0.2253241045923972,0.2353240321047162,0.2445555914493544,0.2532750601083073,0.2613416140621281,0.2687065495792169,0.2751242056614673,0.2821967706910441,0.2883527591785642,0.2936392124967107,0.2977658168769926,0.302672192230598,0.3067239484463982,0.3110301213999085,0.3156506902435241,0.3190283507532522,0.3174517769228699,0.3156040568621245,0.3138025233750141,0.3126381644536273,0.3113070107629185,0.3091480232914496,0.3075814447031247,0.3085347432024169,0.3092415442432524,0.3096585331024757,0.3103932321398491,0.3115307209660234,0.3119252633338906,0.31436785451628,0.315540621624865,0.3178544499622994,0.3173804965856167,0.320328995052469,0.3223065037224329,0.3272061749025224,0.3280469358756933,0.3314053127677806,0.3356124992012269,0.3350277264325323,0.333933137607728,0.3395976388386941,0.3451423267326732,0.35,0.351388507011273,0.3477600607441154,0.0,1.985270019545854,52.44709134533559,169.357848570136,242.67959156417203,fqhc2_100Compliance_implementation,0 -100000,95623,45646,434.100582495843,5799,59.70320947889106,4535,46.98660364138335,1803,18.61476841345701,77.26635035352784,79.70592410010384,63.26822878755484,65.07289107162828,77.05037460930852,79.48694989052183,63.19027003667897,64.99515027135486,0.2159757442193211,218.97420958201508,0.0779587508758723,77.74080027341768,170.51298,119.93786990703543,178317.95697687796,125427.84675970786,425.08978,281.11643785335576,444147.0566704663,293583.549829388,401.00952,195.6153839855125,416447.7792999593,202316.7215601516,3273.70926,1492.2351232561043,3398870.062641833,1536154.296866601,1083.13672,484.1241137670774,1122174.4350208633,495869.7663935981,1769.3438,728.7183773252174,1829249.4483544757,745087.2157820108,0.38037,100000,0,775059,8105.361680767179,0,0.0,0,0.0,36808,384.48908735346095,0,0.0,36562,379.4693745228658,1491024,0,53543,0,0,0,0,0,77,0.794787864844232,0,0.0,0,0.0,0,0.0,0.05799,0.1524568183610694,0.3109156751163994,0.01803,0.3370102074415542,0.6629897925584458,24.293567919353464,4.378353757238871,0.3190738699007718,0.2381477398015435,0.2198456449834619,0.2229327453142227,11.307736822332677,5.843423117224147,19.17259622564208,11962.987108887655,51.70452119338875,13.101821306240891,16.411426733980512,11.114383212127311,11.076889941040031,0.560308710033076,0.7814814814814814,0.6800276434001382,0.5887662988966901,0.1246290801186943,0.7463768115942029,0.9271844660194176,0.8626943005181347,0.7754237288135594,0.1394230769230769,0.4901305800182204,0.6916167664670658,0.6135721017907634,0.5308804204993429,0.1207970112079701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020167011228667,0.0042404260715191,0.0063980826063554,0.0087237676915568,0.0110237983754402,0.0131169929777714,0.0151555355976485,0.0174836250676966,0.0196652205942539,0.0216415616354134,0.0238412906933782,0.0261599819090105,0.0284117229239368,0.0304979894834519,0.0324016691455957,0.0344766930518909,0.0364731245206359,0.038541428660449,0.0403488505208821,0.0423093368373848,0.0571810873814825,0.0711800825701532,0.0844134019535763,0.097639835283462,0.1100515355045832,0.1252608055582033,0.136692558628824,0.147619657025851,0.1582163342179608,0.1680845578757411,0.1800692325112421,0.191516570214795,0.2023431035233657,0.2123057377857119,0.2226996771670027,0.2319250388112663,0.2418537130094919,0.2503996037731601,0.2585290510153091,0.2654949439361629,0.2723841718956216,0.279407289496477,0.2856601673947271,0.2907084047410745,0.2966635075696824,0.3010447632322285,0.3054271721840203,0.3101428607807685,0.3148397626881525,0.3194748647578836,0.3186921171656257,0.3171909169681048,0.3158976959044561,0.3142873649546479,0.3131137555525842,0.3105168903922979,0.3083655124390707,0.3085247893846583,0.3085542497950259,0.3093247588424437,0.3099669768838187,0.3109338505997387,0.3116528890940371,0.3117420682865709,0.3118525656468321,0.3128347135505107,0.313375250071449,0.3173716917447399,0.32054890921886,0.3258377776008915,0.3266748757239932,0.3313829787234043,0.334388052145298,0.3382107657316148,0.3425347384127576,0.3460365853658536,0.3484066767830046,0.3528465097565882,0.3536318951392682,0.3619654913728432,0.0,1.7248056829727618,54.89868351977897,172.59745019882496,242.77812461184567,fqhc2_100Compliance_implementation,1 -100000,95704,45336,430.7343475716794,5710,58.419710774889246,4491,46.33035191841512,1697,17.324249770124553,77.34534288058313,79.71442044035531,63.32656324425341,65.07480483718447,77.12990405305409,79.50343254173299,63.24514114163095,64.99790496714587,0.2154388275290415,210.9878986223208,0.0814221026224544,76.8998700386021,171.08146,120.34087164797918,178761.0340215665,125742.78154306946,420.61329,278.33823970325693,438835.7539914737,290175.5630271877,394.956,192.61140502718092,409393.6721558138,198590.88901536213,3190.13173,1468.2975232792185,3292947.515255371,1493992.6930458338,1055.40561,468.6170100153771,1089402.3133829308,476331.1587762835,1659.94928,705.688531615789,1697114.5197692886,705278.7133865139,0.37765,100000,0,777643,8125.501546434842,0,0.0,0,0.0,36468,380.4438685948341,0,0.0,36012,372.9833653765778,1494162,0,53568,0,0,0,0,0,65,0.6687285797876787,0,0.0,1,0.0104488840591824,0,0.0,0.0571,0.1511981993909704,0.2971978984238179,0.01697,0.3361260053619302,0.6638739946380697,24.184514220681912,4.193175610999602,0.3175239367624137,0.2518370073480294,0.2199955466488532,0.2106435092407036,11.26348554726705,5.999215963757523,18.087114308814066,11893.41199413827,51.13989855084388,13.64676974316266,16.07372141947517,11.012910054731,10.40649733347504,0.5749276330438655,0.7922192749778957,0.6963534361851332,0.5941295546558705,0.1120507399577167,0.7424,0.9159090909090908,0.8653846153846154,0.7413793103448276,0.1775700934579439,0.5103363159518667,0.7134587554269175,0.6384180790960452,0.548941798941799,0.0928961748633879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809624108878,0.0047027344779356,0.0071019844973824,0.0093438959983749,0.0114401350444385,0.0134698988993982,0.0155550798650398,0.0178638873860539,0.0200151289023368,0.0219262777533242,0.0240809464252762,0.0261655370712672,0.0282652074633313,0.0300717023117814,0.0322610607139539,0.0343301942379854,0.0363101587663245,0.0384292074429996,0.0400927456668434,0.0421117352202503,0.0562715404699738,0.0700103618266121,0.0831523164908966,0.0955753143578681,0.1077752685675692,0.1226397121083827,0.1340199617753238,0.1458308919877702,0.1560579338357116,0.1658120574983909,0.1787519262061013,0.1904725807848912,0.201645553088677,0.2118003853902076,0.2205555188440274,0.2300537664209301,0.2394271873918721,0.2483292455165275,0.2565973916892727,0.2634502823499765,0.2709962519087501,0.2775238206582101,0.283310654913329,0.2895909711738911,0.2950771884223439,0.3000110909830308,0.3051176176176176,0.3093171333070676,0.3131888769443977,0.3167665777589986,0.3150107132750279,0.313991435220247,0.3130732973949366,0.3118554837216702,0.3106032444649309,0.3083178901260472,0.3057395317958364,0.3059095227175942,0.3065314663899144,0.3075691826136444,0.3096459005388875,0.3107347966328377,0.3117216346454722,0.3133183146343095,0.315492484272199,0.3162697587354409,0.3174113585557033,0.3197102625745418,0.3238042114070562,0.3264928312588624,0.3286284832531542,0.3329983072365637,0.3386399247884675,0.3440631642878834,0.3482126146359723,0.3510400752144788,0.3508718726307809,0.3518555667001003,0.3529732678668849,0.3604651162790697,0.0,2.323598291623735,54.6060574607141,168.72791743118103,238.59840977767897,fqhc2_100Compliance_implementation,2 -100000,95664,45697,434.4894631209232,5675,58.10963371801304,4465,46.09884596086302,1748,17.843702960361263,77.2498286400838,79.6491376898295,63.26585613190741,65.03930486869825,77.03036375201643,79.43307826617205,63.18353732494834,64.96141006998646,0.2194648880673781,216.0594236574553,0.0823188069590727,77.89479871179594,170.3097,119.74181898452196,178029.03913697944,125169.15347938825,421.0863,279.1404160573086,439591.3927914367,291223.3704731285,395.99934,192.27192735959545,411106.6545408932,198829.3174809906,3175.76296,1453.536877263108,3276623.3170262584,1477128.5167556086,1052.14943,466.277075731576,1081937.886770363,469741.1014304654,1708.29514,720.7780184922192,1744502.5296872386,717710.2571296571,0.38013,100000,0,774135,8092.229051680883,0,0.0,0,0.0,36575,381.71098845960864,0,0.0,36125,374.7491219267436,1490253,0,53570,0,0,0,0,0,66,0.6899147014550928,0,0.0,0,0.0,0,0.0,0.05675,0.1492910320153631,0.3080176211453744,0.01748,0.3379403337266138,0.6620596662733862,24.13053458903333,4.372497745248199,0.3198208286674132,0.2391937290033594,0.2291153415453527,0.2118701007838745,11.559072947504424,6.1182993845869005,18.67140750126239,11961.298750618686,50.96440131467689,12.81103103103224,16.251478699660037,11.571021117894766,10.330870466089848,0.5724524076147817,0.7883895131086143,0.7128851540616247,0.5796676441837733,0.1088794926004228,0.7426900584795322,0.9175257731958762,0.8654353562005277,0.7154150197628458,0.135593220338983,0.5100979192166463,0.7147058823529412,0.657769304099142,0.535064935064935,0.1027308192457737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210867539203,0.0045838530733112,0.0067092295043696,0.0088295061979272,0.0110974356887835,0.0132096225531134,0.0154586613370314,0.0176035125338234,0.0197790959296379,0.0220604049528374,0.0241042946673094,0.0260708782742681,0.0281319133611154,0.0304154684971604,0.0326247431833902,0.0346785536984941,0.0365273618436732,0.0384779110211285,0.0401094556350923,0.0420429188129548,0.0556107041723701,0.069790335756027,0.0828199288405629,0.0953332982585363,0.1078653819770571,0.1237643672078403,0.1356738560217485,0.145868411517722,0.1572686329257464,0.1676066475447699,0.1801829992015365,0.1908882888158679,0.2016052519656702,0.2118460019743336,0.2211159556266902,0.2311795099727762,0.2405968745802176,0.2499294972306512,0.2583993444414094,0.2652144440997713,0.272370468427042,0.2788720153154105,0.2857889920251013,0.2912736983928399,0.2963220239836209,0.3016691394658753,0.3058875219683655,0.3112368014504041,0.3151183024699374,0.3202181019308903,0.3192653116348166,0.317303978370027,0.3155575018717597,0.3149329004956378,0.31386567764422,0.3119250582607629,0.3088831843823287,0.3099643133191902,0.3101996096826103,0.3113009833951314,0.3128629145917505,0.3136788714534791,0.3149305701220791,0.3150863035193902,0.3154330063390296,0.3173277118467624,0.3181276595744681,0.3217665615141956,0.3250165522528487,0.3278973346495558,0.3321138211382113,0.3361914781693845,0.336894720399875,0.3347448015122873,0.3387952704589889,0.3400491976104017,0.3477734019993941,0.3573015552413653,0.3615742006012571,0.3668171557562076,0.0,2.228234663001059,52.46290074447103,175.39694516141762,236.7096205086112,fqhc2_100Compliance_implementation,3 -100000,95755,45394,431.4970497624145,5841,59.88199049657982,4624,47.83040050127931,1739,17.87896193410266,77.32698317968122,79.68822622396509,63.31555014592704,65.06185447571404,77.10423385672493,79.46513316390053,63.2328294512697,64.98133963251904,0.2227493229562895,223.09306006455645,0.0827206946573397,80.51484319500446,172.40608,121.26806975529335,180048.93739230328,126643.90263404876,425.16569,280.497330385676,443545.0054827424,292464.0559844561,395.37375,191.7718833329845,410385.3793535586,198331.3021334037,3295.88358,1490.6026686613309,3412624.165839904,1527415.6070266415,1091.41083,477.44806072868,1132167.249751971,490986.3513431985,1705.28096,714.6915465329943,1754550.46733852,723150.1617395827,0.37914,100000,0,783664,8184.042608741058,0,0.0,0,0.0,36835,384.18881520547234,0,0.0,36088,374.31987885750095,1486363,0,53320,0,0,0,0,0,72,0.7519189598454389,0,0.0,2,0.0208866377734844,0,0.0,0.05841,0.154059186580155,0.2977229926382468,0.01739,0.3353896103896104,0.6646103896103897,24.307829362347885,4.36301842859892,0.3103373702422145,0.2536764705882353,0.215181660899654,0.2208044982698962,10.964427896073168,5.576480451309415,18.468572604355167,11914.121608873764,52.3146190421194,14.161334810036893,16.044623582062805,10.984991871941686,11.123668778078011,0.5583910034602076,0.7740835464620631,0.6878048780487804,0.5728643216080402,0.1145935357492654,0.728701406120761,0.9011494252873564,0.8638888888888889,0.7192118226600985,0.1516587677725118,0.4980966325036603,0.6991869918699187,0.6288372093023256,0.5353535353535354,0.1049382716049382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0047251120439658,0.0068509834967419,0.0090824122236671,0.0113806254767353,0.0133699913446362,0.0155912224170983,0.0177102259967743,0.0195415103788722,0.021525076765609,0.0235215742543814,0.0255399523692206,0.0276098844619875,0.0297685242390543,0.0314211737035929,0.0333137005693501,0.0356662180349932,0.0375188008920699,0.0396304072172448,0.0416610236589609,0.0554865381202434,0.0693511602117464,0.0825723661449105,0.0956646061982254,0.1080437234502313,0.1224453114261849,0.1341407799425171,0.1455886893291741,0.1563258195188166,0.1660101535918599,0.1794910486209163,0.1914642466510001,0.202561256909083,0.2123837654523575,0.2211129944746516,0.2312116946879606,0.2406590337894442,0.2497972972972973,0.2587716807324027,0.2659003919231739,0.2716568252865578,0.2784328419376368,0.2847426296331405,0.2902757445583047,0.2951098787502888,0.3006253006253006,0.3053157769453388,0.3095025851310394,0.3136881390195545,0.3177732905729105,0.3168853893263342,0.314806917140145,0.314113124656782,0.3138467764080181,0.313061824881506,0.3105741384858189,0.3080236259124954,0.3080230401890477,0.3089033844472524,0.3098313055560504,0.3107110138912259,0.3109265251361376,0.3119131455399061,0.3128028763482882,0.3144737158089383,0.3164583333333333,0.3184738727469153,0.3218686314469353,0.3239564745810153,0.3250049416880806,0.3266887147193403,0.3301104242616368,0.333291653641763,0.3375122724869723,0.3424759772366825,0.3446374090589064,0.3454407294832827,0.3443348762326423,0.341267644616662,0.3460943542150038,0.0,1.7833790133510787,53.40558336616396,176.3553302753008,252.588847576628,fqhc2_100Compliance_implementation,4 -100000,95767,45873,436.27763216974535,5673,58.2142073992085,4447,45.94484530161747,1703,17.427715183727173,77.39144353273707,79.73027300293248,63.36142006586866,65.0872098339638,77.18023825698897,79.51961660445112,63.28436597199897,65.01244111415197,0.2112052757480995,210.65639848136183,0.0770540938696839,74.76871981182853,171.34898,120.43508690286605,178922.7813338624,125758.44174179624,423.59635,279.306634337265,441794.2610711414,291128.40425029857,391.2257,189.67515811143025,405431.3281192895,195702.02594018605,3169.43577,1430.6928867456743,3276640.0743471133,1461244.373214288,1021.4127,449.4028269512496,1054605.8872054047,457695.4707522213,1664.4012,696.1732442807105,1705826.8923533158,701554.8471656298,0.38273,100000,0,778859,8132.853696993746,0,0.0,0,0.0,36593,381.5510562093414,0,0.0,35625,368.95799179258,1499157,0,53761,0,0,0,0,0,76,0.7831507721866614,0,0.0,0,0.0,0,0.0,0.05673,0.1482245969743683,0.3001939009342499,0.01703,0.3469899665551839,0.653010033444816,24.514042692184454,4.288568838539654,0.3307847987407241,0.2307173375309197,0.2235214751517877,0.2149763885765684,10.98072915020587,5.699004858478064,18.092789249269003,12012.919360311014,50.19572108979845,12.326666998847973,16.550008442583128,10.909133014498073,10.409912633869274,0.5572295929840342,0.7923976608187134,0.6832087015635622,0.5633802816901409,0.104602510460251,0.7338568935427574,0.9318801089918256,0.8514588859416445,0.6636363636363637,0.1758241758241758,0.4959103302029688,0.7147192716236722,0.6252285191956124,0.5348837209302325,0.0878552971576227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024096873481289,0.0045096628393647,0.0067774598729733,0.008957861488305,0.0112861079195941,0.013333604755313,0.0154778887303851,0.017599526598241,0.0197059935232763,0.0218036342801014,0.023780737704918,0.0258125410374261,0.0278768200080147,0.0299805481510451,0.0319867228813821,0.0337881808509539,0.0358081675739449,0.0379166580241023,0.0399463639765498,0.0417821204608429,0.0561447090996388,0.0701647920481297,0.0835448880683129,0.0960943908133005,0.1084705733504839,0.1244633831708503,0.136440273580404,0.1480634420841001,0.1577930121305313,0.1678760141906303,0.1811195660363143,0.1931681787216557,0.204277005661382,0.214325502146204,0.2235349716446124,0.2335936808567129,0.2435363081175054,0.2528074746204294,0.2599861751674278,0.2672362521731174,0.2742082702683966,0.2809761910325007,0.2874686776038958,0.2941014497958792,0.2994980479643056,0.3035617651399616,0.3083340618716357,0.3124634586542616,0.3166489953192479,0.3203539589944825,0.3186714301063715,0.3174857989627068,0.3160223633196606,0.3138587347749719,0.3126091719217219,0.3108110167812343,0.3089097673245475,0.3096805816518258,0.3100181963505263,0.3105889467973461,0.3117614061331338,0.3131006176371924,0.3139880329720909,0.3143061484478019,0.3154740414470359,0.3163754889178618,0.3188240980297387,0.3237882693153957,0.3265198609208724,0.3298429319371728,0.3330752413918746,0.3356401384083045,0.3363200403836446,0.3368853706804688,0.3429427180831149,0.3466588511137163,0.3523852385238524,0.3538338658146965,0.3567567567567568,0.3618867924528302,0.0,1.8152838842845695,50.26458991355242,168.07356508325458,247.82986778394485,fqhc2_100Compliance_implementation,5 -100000,95724,45743,432.9112866156868,5748,58.72090593790481,4508,46.47737244578162,1817,18.626467761480924,77.37264048070351,79.7313454479242,63.34029949113111,65.08169656815417,77.13952332782313,79.49972690715805,63.25426196041943,64.99866784669968,0.2331171528803821,231.6185407661493,0.0860375307116854,83.02872145449669,171.82682,120.91091826460794,179502.34006100873,126312.02025052016,422.697,279.60652707743293,440996.0302536459,291513.6925718031,403.1633,196.98199700603084,416828.4024904935,202480.9042548453,3257.91787,1495.1591076705474,3364651.6965442314,1523150.3360396014,1085.10623,488.1376621576098,1117929.798169738,494294.5887735672,1779.52996,746.304122102914,1826371.401111529,752929.9306435662,0.38016,100000,0,781031,8159.197275500396,0,0.0,0,0.0,36479,380.4688479378213,0,0.0,36699,379.11077681668127,1488926,0,53435,0,0,0,0,0,76,0.7730558689565835,0,0.0,0,0.0,0,0.0,0.05748,0.1511994949494949,0.3161099512874043,0.01817,0.3411842759993365,0.6588157240006635,24.580303711726305,4.3386394453903225,0.3154392191659272,0.2395740905057675,0.217391304347826,0.2275953859804791,11.149604517038398,5.841271375648177,19.318634464756556,12018.221207406486,51.23654477561748,13.079880081968687,16.13078448395367,10.805331296765408,11.220548912929717,0.5618899733806566,0.774074074074074,0.7109704641350211,0.5795918367346938,0.1150097465886939,0.7508116883116883,0.9140811455847256,0.8923076923076924,0.7605633802816901,0.1523809523809524,0.4908424908424908,0.6853252647503782,0.6424418604651163,0.529335071707953,0.1053921568627451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101265822784,0.0046314594671287,0.0068778721202714,0.0093942963925901,0.0116727165502445,0.0138546735346214,0.0162174834869118,0.0183724087248527,0.0204642795081213,0.0226432863474905,0.024914388828511,0.0271050010780398,0.0294190231362467,0.0315045778963304,0.0336438763192918,0.0357397550514185,0.0378212163253473,0.0397676589565397,0.0420728792067682,0.0441616064825905,0.0588794219604894,0.0725212405306993,0.0861118100989766,0.098706130900453,0.1111298517846977,0.1261457463341403,0.1374917799792113,0.1486037800102162,0.1587782998718496,0.1691814389430449,0.1817995799903074,0.1936317998874799,0.2040172696921253,0.2137451332079268,0.2227552289055881,0.2327369412286046,0.2427452118398143,0.2509034822061853,0.2584221167170214,0.2661040658609856,0.2731345356886532,0.2798759435894435,0.2871054876315041,0.2923300260344807,0.2972664179013771,0.3023671557144618,0.307031817157734,0.3110271768850228,0.3147424281646389,0.3195294365899979,0.3188068457025994,0.3174825751639378,0.3157479760647659,0.3145895339093247,0.3133747362790836,0.311314254214709,0.3088786598965501,0.3089000082027725,0.3081787808536751,0.3090666429397633,0.3092727713811185,0.3086774339503865,0.308503969912244,0.3093525179856115,0.3113101367369908,0.312034852060265,0.311527891888829,0.314668498797664,0.3188122952533631,0.3223069065765695,0.3254942674009208,0.3272103457376616,0.3305894181224079,0.3335101545923007,0.3380281690140845,0.340571158838801,0.3444647758462946,0.3471857978616098,0.3445723684210526,0.3347392638036809,0.0,2.438804522914376,53.47993358306556,171.47229931934763,240.5864442819064,fqhc2_100Compliance_implementation,6 -100000,95742,45358,429.5084706816235,5660,58.05184767395709,4459,45.97773182093543,1715,17.505379039501992,77.33281654085012,79.69772797370211,63.319784280511655,65.07047873288344,77.11555894596083,79.48331137597556,63.239065488982526,64.99346966182874,0.2172575948892898,214.4165977265544,0.0807187915291294,77.00907105470378,173.1499,121.74608454850966,180850.51492552905,127160.58213585436,423.25799,280.1361523608628,441488.8554657308,292001.8616290268,395.60257,192.74894838730492,409410.13348373753,198451.93496684227,3197.75605,1463.9897305018114,3297507.5306553026,1486634.2258379946,1060.90559,471.1204745267152,1092256.1885066116,476241.1528135144,1692.10176,716.4721221430917,1728827.2231622487,715583.9984058316,0.37746,100000,0,787045,8220.47795116041,0,0.0,0,0.0,36707,382.7682730672014,0,0.0,36103,373.3157861753462,1482753,0,53267,0,0,0,0,0,72,0.7520210565895845,0,0.0,0,0.0,0,0.0,0.0566,0.1499496635405076,0.3030035335689046,0.01715,0.3373901284651792,0.6626098715348209,24.448553548115694,4.318753528523285,0.3195783808028706,0.2440008970621215,0.2105853330343126,0.2258353891006952,10.99069503428076,5.511203965304997,18.365501836194277,11868.43630447247,50.66161745683178,13.11950519796284,16.140673236747325,10.380615866124677,11.020823155996936,0.5671675263511998,0.7840073529411765,0.7164912280701754,0.5665601703940362,0.1221449851042701,0.7294882209585702,0.909307875894988,0.8556149732620321,0.7239819004524887,0.1705069124423963,0.5052664188351921,0.7055306427503737,0.6669838249286394,0.5181058495821727,0.1088607594936708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023204207155812,0.0046960737577718,0.0070362473347547,0.0093412345879793,0.011547226630855,0.0139137874837027,0.0159495813744786,0.0182950484941296,0.0206028506574507,0.0228545683537952,0.0250466484857183,0.0270461756461201,0.0292832392527016,0.0312561147670981,0.0332838099954603,0.0352772150328688,0.0372211520536879,0.0392805994312874,0.0414262095642137,0.0433165609275869,0.0576069821583304,0.0717618748692195,0.0848022818074095,0.0972466068819058,0.1091142896292939,0.1240959269128283,0.1359485857910979,0.146655313714012,0.1568154145216072,0.1657855511350841,0.1781184729011003,0.1897034801328443,0.2010156258495264,0.2119032261591105,0.2211394632644082,0.2311874391000088,0.2398486927995179,0.247498790190981,0.256177428691418,0.2632259985342616,0.2699305555555555,0.2766221452234071,0.2829580851089029,0.288475141168431,0.2936136598407972,0.2979054104063355,0.3020226689210345,0.3064813754310948,0.311193159735717,0.3145414697261757,0.3130656108597285,0.3111832780614,0.3106703107830154,0.3089713955504189,0.3077060292543703,0.3054199256118654,0.3024900335379358,0.3025021315668656,0.304378964599959,0.30603302399316,0.3057217651458489,0.3063303132587197,0.308185692796256,0.3091873579102215,0.3112555774120808,0.3114988558352403,0.3139022378934797,0.3171749497991968,0.3202859445631986,0.324615628467269,0.3268698060941828,0.3282616762975136,0.3326850690087829,0.3346975898135516,0.3360127114683615,0.3413166588013214,0.3406676783004552,0.3439323807607164,0.3455540355677154,0.3471798780487805,0.0,2.308146217325838,53.74691179358825,161.22901271341792,246.23876970333336,fqhc2_100Compliance_implementation,7 -100000,95783,45817,434.61783406241193,5860,60.00020880532036,4610,47.5658519779084,1776,18.16606287128196,77.34910350822409,79.67763689764595,63.34642956891118,65.0668404090967,77.12018410446802,79.45233879105075,63.2608916049439,64.98545124164433,0.2289194037560662,225.29810659520425,0.0855379639672762,81.38916745237168,170.09982,119.63891090478168,177588.7370410198,124906.20559471064,420.95303,278.0997045880185,438922.0007725797,289779.3288871914,401.60705,195.61673206715588,416331.05039516406,201882.6970306796,3262.0064,1490.9580067978552,3370930.7288349704,1521909.0932606545,1080.22276,478.53087813109295,1114952.945721057,486770.6149641296,1734.86192,732.7437446112473,1777637.0754726832,735445.971585218,0.38181,100000,0,773181,8072.215320046354,0,0.0,0,0.0,36425,379.6915945418289,0,0.0,36570,378.8041719303008,1500404,0,53882,0,0,0,0,0,65,0.6786172911685789,0,0.0,2,0.0208805320359562,0,0.0,0.0586,0.1534794793221759,0.3030716723549488,0.01776,0.3288317604946306,0.6711682395053693,24.70670561264998,4.221574113375246,0.3219088937093275,0.2468546637744034,0.2171366594360086,0.2140997830802603,11.241778604268202,6.037237739604781,19.031471813042696,12081.103884055025,52.27315204678537,13.600990051906129,16.7203131026928,11.065717807734789,10.886131084451662,0.5607375271149675,0.7776801405975395,0.6866576819407008,0.5684315684315684,0.1134751773049645,0.7193263833199679,0.9013761467889908,0.832,0.6837606837606838,0.1584158415841584,0.5019327980969372,0.7008547008547008,0.6375112714156899,0.5332464146023468,0.1019108280254777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0043280390030306,0.0065435067108987,0.0086642085910757,0.0109102371171757,0.0131520013029846,0.0154304001304551,0.0175843241312445,0.01981219793806,0.0220989953141945,0.0241466213170511,0.0261362120450277,0.0281174850471707,0.0303014708152783,0.0325913247894091,0.0346946785655263,0.0366307947019867,0.0384910512453597,0.0407128383644204,0.0429045997479875,0.0581286134708104,0.0718118208155965,0.0855971565471759,0.0985339708896011,0.1110713006091006,0.1261479281811745,0.1379829349727065,0.1490977147779112,0.1596679010105968,0.1696771014120117,0.1818142683412434,0.1935142032245158,0.2047142220337693,0.2149980317543629,0.2249994499328918,0.2351631801016622,0.2444456843162417,0.2532519365464827,0.2612276383106644,0.2688499444832362,0.2753009749158658,0.281871030376756,0.2882432992130643,0.2932577672869313,0.2983847461743988,0.3031181032463289,0.3078001401822369,0.3120712694877505,0.3171164634699351,0.3208810363269025,0.3197386149285907,0.3188738986784141,0.3177004112444369,0.316700125651728,0.3154043664752067,0.3127801147227533,0.3102526801808924,0.3106784970396733,0.311079642394049,0.3117849684984561,0.3126239754481829,0.3145947442311114,0.3166753899298649,0.317423021840315,0.3195150755585548,0.3204642287685914,0.3223896816998884,0.3266163418717033,0.3290118020081028,0.3327353187417773,0.3372427326244694,0.3412339905404687,0.3452237384957156,0.3491929931920752,0.3501989766913019,0.355241065003598,0.3574527424852805,0.3560358890701468,0.3615725359911406,0.3581560283687943,0.0,2.201859050533383,54.44801082384151,170.24157429896763,253.95836064219472,fqhc2_100Compliance_implementation,8 -100000,95661,45550,431.2729325430426,5903,60.52623326120362,4630,47.76241101389281,1846,18.900074220424205,77.31532774038504,79.70772086584616,63.31028192710126,65.07627512114692,77.08196936835557,79.47532306866037,63.22292618722668,64.99166585254905,0.2333583720294711,232.3977971857829,0.0873557398745816,84.60926859787321,170.8971,120.17262781858132,178648.6656004014,125623.4283758076,421.97363,278.5889879436299,440486.091510647,290597.7963262247,398.22458,194.1696015984485,411884.38339553215,199570.91835634413,3338.29973,1527.1295589849797,3450896.446827861,1557575.060876407,1118.94457,497.9663864771354,1153102.9991323529,503958.4328797897,1814.803,767.5006966423932,1861604.938271605,772051.9338334342,0.37923,100000,0,776805,8120.393890927337,0,0.0,0,0.0,36503,380.9389406341142,0,0.0,36295,375.0222138593575,1494631,0,53625,0,0,0,0,0,72,0.7422042420631187,0,0.0,2,0.0209071617482568,0,0.0,0.05903,0.1556575165466867,0.3127223445705573,0.01846,0.3332255456750202,0.6667744543249798,24.43490785500303,4.367078769508548,0.3136069114470842,0.2347732181425486,0.2233261339092872,0.2282937365010799,11.185530315281268,5.827873917543679,19.676321282921307,12034.700710790992,52.63704737912696,13.125974820137724,16.475558910483016,11.493925393531065,11.541588254975132,0.555939524838013,0.7782888684452622,0.6935261707988981,0.5831721470019342,0.1116367076631977,0.7225656877897991,0.9124087591240876,0.8589420654911839,0.7654320987654321,0.1358024691358024,0.4913069544364508,0.6967455621301775,0.6312796208530805,0.527180783817952,0.1044226044226044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819174585165,0.0048865548774306,0.0072865290547808,0.0095503220693719,0.0119120279947916,0.0141074611662846,0.0164007996409775,0.0189060824268423,0.0209950401390806,0.0231838941569213,0.025383053350563,0.0275908824768107,0.0295657720123036,0.0318701700154559,0.0339075773371455,0.035908202418012,0.0379634042729552,0.0401249623763609,0.0419093783806274,0.0441076844507905,0.0585819959879638,0.072328262258007,0.085504980006507,0.0979649388639855,0.1098142676234698,0.1250423405876873,0.1372115986961553,0.1477355033871586,0.1579594279728949,0.168468052678466,0.180446427609101,0.1922060766182298,0.203964340528361,0.2140058658728769,0.2234729167125581,0.233896462601635,0.2433452855690716,0.2528502774307548,0.2615084141439375,0.2686796432583626,0.2750249032826001,0.2814728092255458,0.2873266459016781,0.2922201821651006,0.2973396691904768,0.3023006361887853,0.3072183539548164,0.3116060066174599,0.3150025243698784,0.318699594778316,0.3172544742051468,0.3152010793991712,0.3143955394103235,0.3139086059589724,0.3120961392771729,0.3096860121553558,0.3074976273331224,0.3080980148070497,0.3089491907011649,0.309624400591832,0.310486583451678,0.3120524000236747,0.3131778401239479,0.3141177522464124,0.315193071093468,0.3149485207871758,0.3153909888288906,0.3187650107445329,0.3213882618510158,0.324133530092131,0.3265138368800804,0.3292760710109493,0.3305320358903071,0.3343572415911534,0.3347541915316851,0.3382651234936165,0.3408536585365854,0.3448413490321293,0.3502886994775914,0.3490315229775921,0.0,2.497116316126309,56.54588466642821,168.12079575686127,251.37477737995675,fqhc2_100Compliance_implementation,9 -100000,95640,45577,433.3228774571309,5730,58.91886240066918,4526,46.86323713927227,1747,17.92137181095776,77.3146043072854,79.73371703239296,63.296484254502126,65.08279783678843,77.09248815285781,79.51296977212914,63.21357411772081,65.0028592405595,0.2221161544275958,220.7472602638205,0.0829101367813152,79.93859622892785,170.55984,119.9545003163692,178335.2572145546,125422.94052317984,423.37126,279.3336080106999,442220.9953994145,291617.00963059376,392.54024,190.60024838193723,407843.6219155165,197203.11027874856,3207.51915,1467.4587392042888,3323812.515683814,1504426.8916816066,1023.74079,453.02636151424855,1059497.8042659976,462765.86314747867,1709.30492,720.3835491010882,1756293.705562526,726182.3474624454,0.38116,100000,0,775272,8106.148055207026,0,0.0,0,0.0,36671,382.9673776662484,0,0.0,35844,372.2814721873693,1494748,0,53662,0,0,0,0,0,75,0.7737348389795065,0,0.0,1,0.0104558762024257,0,0.0,0.0573,0.1503305698394375,0.3048865619546247,0.01747,0.339256061109266,0.660743938890734,24.38725712838986,4.308209751986977,0.3267786124613345,0.2441449403446752,0.2158638974812196,0.2132125497127706,10.779079738327855,5.481535834538375,18.61560340155373,11975.952910861835,51.60414314784003,13.361663768090322,16.79218501090167,10.928261797808135,10.522032571039896,0.556783031374282,0.783710407239819,0.6835699797160243,0.5568065506653019,0.1025906735751295,0.7322580645161291,0.9088729016786572,0.8604060913705583,0.7030567685589519,0.145,0.490566037735849,0.7078488372093024,0.6193548387096774,0.5120320855614974,0.0915032679738562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022291347917278,0.0045836671365263,0.0066187517765054,0.0090230147843316,0.011444091796875,0.0135974740272968,0.01578931263451,0.0178261313719481,0.0199650203025437,0.0222527163060286,0.0241335808572395,0.026173869274466,0.02822929097568,0.0301999938178108,0.0321957966885503,0.0344214324858085,0.0363478116710875,0.0383309627384005,0.0400998855478098,0.0422502894212617,0.0566826586393235,0.070351127126456,0.0837104785106003,0.0961568825591309,0.1078542099874391,0.1234501233548277,0.1345279571719918,0.1450982063879445,0.1555108634024754,0.1656460831077306,0.1782743329413161,0.1905546462599044,0.2010743432450396,0.2121212121212121,0.222589640995117,0.2332371545888358,0.2432305577595744,0.2519519147354071,0.2604012815560453,0.2686247075553925,0.2750923342325549,0.2816748169119539,0.2878920582317434,0.2930276043102518,0.2977264174991806,0.3026122941632899,0.3072008202358178,0.3115825061325131,0.3149501403313631,0.3194667862134437,0.3183548816747165,0.3162820741880953,0.3151113176460648,0.3134962498374207,0.3122398001665279,0.3098004353024126,0.3081859669138619,0.3087309026921243,0.3086660842455076,0.3094323440598924,0.3102519499466921,0.3110288908131937,0.3121196965908143,0.3136063055240131,0.3141096086769554,0.3144032495925073,0.3155570652173913,0.3197993269350617,0.3262633650262947,0.3294706554727838,0.3324909747292419,0.3358102766798419,0.3375888308911389,0.3416963541271887,0.3461034095166729,0.3476706779459073,0.3498993652268153,0.3513733468972533,0.3522633744855967,0.3604336043360434,0.0,1.8205851541014952,54.96253938723691,171.4771506267415,242.17847209313464,fqhc2_100Compliance_implementation,10 -100000,95647,45723,434.0439323763421,5840,59.94960636507156,4586,47.37210785492488,1734,17.81550911162922,77.29129418892526,79.69152368987791,63.29829466637945,65.07005457073693,77.07703111120009,79.47785466617975,63.21953488957521,64.99368123686884,0.2142630777251781,213.6690236981593,0.0787597768042402,76.37333386809075,170.38318,119.93575563982672,178137.50561962216,125394.16358048526,419.19689,277.5659488218852,437651.7507083338,289577.3308602067,400.88026,195.4568666764964,415319.0168013633,201467.8254734541,3266.94279,1488.768982567857,3377720.053948373,1519009.071038348,1091.80961,484.76602563366674,1126893.4937844365,492363.336186332,1702.7348,712.2133356708729,1751384.5285267702,720604.6327922207,0.38101,100000,0,774469,8097.159346346461,0,0.0,0,0.0,36300,378.935042395475,0,0.0,36588,378.694574842912,1494427,0,53569,0,0,0,0,0,66,0.6795822137651991,0,0.0,0,0.0,0,0.0,0.0584,0.1532768168814466,0.296917808219178,0.01734,0.3396534815299117,0.6603465184700883,24.149899161089067,4.340170011262307,0.3190143916266899,0.2488006977758395,0.2130396860008722,0.2191452245965983,11.236888778638292,5.764473634234794,18.54102912146964,12021.56159782628,52.074937771500046,13.666094691748674,16.463225321795772,10.9072715071518,11.038346250803803,0.5704317488006978,0.7887817703768624,0.7081339712918661,0.5844421699078812,0.108457711442786,0.7397260273972602,0.930715935334873,0.873972602739726,0.7194570135746606,0.1666666666666666,0.5076233183856502,0.7019774011299436,0.6530054644808743,0.544973544973545,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081986973653,0.0044205616952245,0.0068917917643595,0.0091250889137282,0.0113339234298853,0.0131995722360849,0.0157432143075636,0.0179304429513754,0.0201619499427449,0.0222800155632461,0.0242329149232914,0.026549308793624,0.0285376266652949,0.0305319127011932,0.0327042986331915,0.0349792110543408,0.0370592990237735,0.039112873918867,0.0410271884462109,0.043173193210726,0.0575295224161354,0.0716664920917565,0.0847648047039059,0.0977160298915903,0.1100862241828754,0.1255291677250021,0.138148816473835,0.1488017893279369,0.1600620022449088,0.1694684185667053,0.1810360627459436,0.1932200820692716,0.2051259726832453,0.2146641562308433,0.2241799169173471,0.2347977468287057,0.2434992404610848,0.2517134657588205,0.2590200774041244,0.2658793342420875,0.2731207183854842,0.2790629678143712,0.2854775320801174,0.290643583349319,0.2962413692502188,0.3018998272884283,0.3062103865520956,0.3109113137384748,0.3162082998522512,0.3206571221217919,0.3188948282594352,0.3170573902509533,0.316143402929525,0.3149690554687951,0.3135624730431161,0.3111932628737096,0.3094159034006275,0.3101905905181628,0.3108073429026022,0.3117904710825064,0.3132690576230492,0.3137988362427265,0.3138295640498468,0.314244153519078,0.3145244555430163,0.3149131022999271,0.3156969490756493,0.318703007518797,0.3233354381533712,0.3256561966405908,0.3271015283842794,0.3317645814605256,0.3346558347502991,0.3359828798532558,0.3389398091278465,0.3469997609371265,0.3477318470351447,0.3530869295890976,0.3548655392292764,0.3637747336377473,0.0,2.2301740136351715,54.39265620026213,168.5248082165569,253.6555265228287,fqhc2_100Compliance_implementation,11 -100000,95638,45721,434.49256571655616,5770,59.05602375624751,4531,46.85376105732031,1787,18.3818147598235,77.27514686010801,79.68687362305413,63.27600815666828,65.05656501267886,77.04696241663883,79.45828128133844,63.19091834423512,64.97328239374154,0.2281844434691748,228.59234171568232,0.0850898124331607,83.28261893731792,170.16626,119.72942909535908,177927.45561387733,125190.22678784486,421.4526,278.8058673985689,440187.64507831616,291034.8683562693,400.53786,195.55598433419243,415547.4811267488,201921.38950817005,3250.42094,1494.6040427300504,3364140.9795269663,1528242.1764675651,1110.49858,500.3334916766793,1150741.3162132206,512746.911977121,1757.29396,742.2135543739628,1808929.630481608,752585.2474000619,0.37988,100000,0,773483,8087.611618812605,0,0.0,0,0.0,36393,380.0058554131203,0,0.0,36419,377.50684874213175,1493246,0,53543,0,0,0,0,0,83,0.8678558731884816,0,0.0,0,0.0,0,0.0,0.0577,0.1518900705485943,0.3097053726169844,0.01787,0.3296939619520265,0.6703060380479735,24.425720962288608,4.351614972299487,0.309203266387111,0.2436548223350254,0.2187155153387773,0.2284263959390862,11.374817975737216,5.8628837869342005,19.12143848130425,12022.312654819929,51.45005003913354,13.218872793317871,15.80388825183062,11.071270589732531,11.356018404252517,0.5667623041271243,0.8043478260869565,0.7059243397573162,0.5681130171543896,0.123671497584541,0.7354581673306773,0.9303482587064676,0.8932291666666666,0.748898678414097,0.1487603305785124,0.5021367521367521,0.7321937321937322,0.6352015732546706,0.5143979057591623,0.116015132408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.0047130129835906,0.006625741971488,0.0088776028440832,0.0108422583630834,0.0131273423496822,0.0152751152261695,0.0175189635634143,0.019741752118839,0.0221473623853211,0.0243094376006482,0.0264017587475087,0.0284888267006872,0.0305825843159891,0.0324969021065675,0.0346768186708598,0.0368481607015143,0.0388733681597723,0.0406889016077839,0.0426534847584185,0.0569723447396475,0.0712227426571521,0.0843120364728869,0.0967932240529265,0.1089879688605803,0.1250278016077272,0.1365752056279356,0.1473892927957699,0.1582135556578229,0.1686907551103755,0.1813441858456755,0.1934091673082553,0.2044186249291537,0.2145371213034944,0.2238198230010372,0.2337868606652968,0.2426785734268864,0.2517657677987137,0.2592984612583083,0.2667524145296691,0.2739263590171922,0.2807838446383338,0.2866854112538705,0.2920589930822444,0.297323600973236,0.3020907901557602,0.3064336137825536,0.3106984090590648,0.3149568490039582,0.3198593095058643,0.3189956420254463,0.3179606632392871,0.3167418899858956,0.3148282045349375,0.3131865681625615,0.3107648464791322,0.3079126444057604,0.309082552241501,0.3100603415947908,0.3108168321243338,0.3124824369133929,0.3143962573284115,0.3159954789015405,0.316254969401885,0.3183815584103734,0.3196254389387437,0.3209736123748862,0.324197042479043,0.3290415380297502,0.3310856372218476,0.3339992735197966,0.3374057154998406,0.3405110176407809,0.3459557709784913,0.3537319044933258,0.3590568060021436,0.3542017449869891,0.3548972188633615,0.361247947454844,0.3639468690702087,0.0,2.0571390085228978,55.08937720264453,166.80098690014006,244.86835281202772,fqhc2_100Compliance_implementation,12 -100000,95682,45386,430.4362367007379,5743,58.72577914341255,4519,46.62318931460462,1768,18.10162831044501,77.28391542799022,79.68028467687337,63.28504443165552,65.05909552237961,77.05781487669081,79.4573970632687,63.19996592209438,64.97780426533052,0.2261005512994103,222.88761360466933,0.0850785095611428,81.29125704908802,169.3527,119.23285200851927,176995.3596287703,124613.67029171556,421.9595,278.67311914003244,440388.6937982065,290643.09741088987,394.12521,191.6778181532281,408221.4941159257,197441.09150588495,3200.82551,1470.509815150595,3303869.8083234043,1496371.709842769,1102.45627,490.5251457437198,1137252.1790932466,498513.3784320495,1732.64494,735.4523087951042,1775222.445183002,738334.4081973879,0.3781,100000,0,769785,8045.243619489559,0,0.0,0,0.0,36469,380.5104408352668,0,0.0,36062,373.1631863882444,1499981,0,53839,0,0,0,0,0,61,0.6375284797558579,0,0.0,1,0.0104512865533747,0,0.0,0.05743,0.1518910341179582,0.3078530384816298,0.01768,0.3392114456829146,0.6607885543170854,24.151497213824417,4.285837180405501,0.3177694180128347,0.242310245629564,0.2232794866120823,0.2166408497455189,11.261380810192112,5.979809443632905,18.944693702619045,11878.731282538522,51.41067688774071,13.141361819431395,16.198653436379892,11.329574049840556,10.741087582088854,0.5687098915689311,0.782648401826484,0.6754874651810585,0.6035678889990089,0.1368743615934627,0.7277867528271406,0.9056122448979592,0.8347107438016529,0.7669172932330827,0.1797235023041474,0.5086863761048461,0.7140825035561877,0.6216216216216216,0.5450874831763123,0.1246719160104986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219209176952,0.0048381207400194,0.0072489517447231,0.0094409609658438,0.0119654467201855,0.0142918262570287,0.0165128257432811,0.0186399477060097,0.0208642290974175,0.0229773197566022,0.025073352894105,0.0271158924406358,0.0292035398230088,0.0310519318568292,0.032898064516129,0.0350376437494829,0.0370439449988083,0.0389785643846992,0.0408479565619896,0.0429911412193851,0.0575386254661694,0.0714353020007747,0.0838335922085554,0.0965433787551954,0.1079977203647416,0.1228473141042603,0.1349176010873258,0.1455972565391497,0.15632282202031,0.1663052812365822,0.1787801039218645,0.1904395592489463,0.2024698887025461,0.2122579514588627,0.2212510333425186,0.2320092368497013,0.2416615419019399,0.2494787029001025,0.2574874120548754,0.2643606952331784,0.271563568902545,0.2782702499882745,0.2842347525891829,0.2891997358467911,0.2947570877308306,0.2994594327746649,0.3033785307902453,0.3072192513368983,0.3108649173955296,0.3151109703639194,0.3133638690556379,0.3113484058290102,0.310848664855506,0.3091168913652242,0.3076385585156993,0.3047156365419687,0.3029194189675109,0.3030819951777191,0.3033819232018046,0.3047624149568758,0.3051620287842681,0.3059663032705649,0.3067923575456611,0.3071276237512628,0.3083919974840941,0.3091988285744169,0.3096586865552677,0.313735364471862,0.317015092621774,0.3200837646686949,0.3245649902321566,0.3254412852763978,0.3275120064866213,0.3309637832984136,0.3356462207419742,0.3409543909016297,0.3418259023354564,0.3439516129032258,0.3493036211699164,0.3508500772797527,0.0,2.362485947218403,54.13044052771233,171.1875796010352,240.9398365881706,fqhc2_100Compliance_implementation,13 -100000,95667,45827,435.06120187734535,5825,59.75937366071895,4585,47.456280640137145,1818,18.65847157326978,77.35161970545354,79.75774773684842,63.31721993396855,65.0947326801864,77.11904053070401,79.52707581276567,63.2296625314859,65.01040658358984,0.2325791747495316,230.67192408274195,0.0875574024826519,84.32609659655554,171.50518,120.61302190770822,179273.08267218582,126075.89023143637,426.82976,282.43598018318903,445716.7048198438,294782.9661044969,399.91455,194.4556164828931,415889.073557235,201550.3393918942,3268.9009,1502.2441950901673,3382197.298964115,1535524.2508808344,1087.21295,482.3903022659568,1121624.0709962682,489407.47830072686,1779.5649,760.5208772968463,1826808.805544232,765258.3680407902,0.38224,100000,0,779569,8148.776485099355,0,0.0,0,0.0,36906,385.3052776819593,0,0.0,36393,378.2181943616921,1488538,0,53373,0,0,0,0,0,89,0.930310347350706,0,0.0,0,0.0,0,0.0,0.05825,0.152391167852658,0.3121030042918455,0.01818,0.337924249877029,0.6620757501229709,24.29235951239361,4.282119789612319,0.3221374045801526,0.2471101417666303,0.2091603053435114,0.2215921483097055,10.86924400925965,5.656502268649645,19.42747124186094,12025.958640198638,52.129804925418334,13.607695529067769,16.613443475112692,10.556492058421338,11.35217386281654,0.5585605234460196,0.7793468667255075,0.6912660798916723,0.5610010427528676,0.1171259842519685,0.7144026186579379,0.9069767441860463,0.8403361344537815,0.6926605504587156,0.1474654377880184,0.5019327980969372,0.701280227596017,0.64375,0.5222672064777328,0.1088861076345431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417179157252,0.0044922172083354,0.0067793857957659,0.0090018694627326,0.0114435097498703,0.0136382155225096,0.0159384081986437,0.0180637387548375,0.0201124744376278,0.0221858035439926,0.0243449535260684,0.0265532194751012,0.0286599296108012,0.0305776348209775,0.0326402445952506,0.034886608177454,0.0369706266453846,0.0389199177792081,0.0409084761280522,0.0429609701671515,0.0581307864323183,0.0720919761682879,0.0855718259591665,0.0983530649828992,0.1103429349489661,0.1265561483739837,0.1384942125942444,0.1496642149024624,0.1601181304571135,0.1696005670894777,0.1825966910416532,0.1938370858343987,0.2048733219375701,0.2144749518304431,0.2244248411361108,0.2336500404660805,0.2428102165314741,0.2512806079369546,0.2589379988419487,0.266964439099811,0.2742952329172788,0.28132122444686,0.2875742023981269,0.2936668542622107,0.2978643368523238,0.3021784615384615,0.3070255417473303,0.3122952276941051,0.316304123178671,0.3201958771029145,0.3185111502426304,0.3170614486783384,0.3159042007116036,0.3141641425068513,0.3125398685635449,0.3105530249763076,0.3081929918796802,0.3083707662546313,0.3086900129701686,0.3088473953596204,0.3101355906809498,0.3098057792515395,0.3099671183529855,0.3110194066473343,0.3131180118275193,0.3142420078301226,0.3159954622802042,0.3185801928133216,0.321057964431711,0.3249792465509744,0.3272273860802539,0.3284107630859785,0.3325219996255383,0.3344916150475903,0.3349491936235667,0.3340049780727747,0.3373106929784304,0.3313941825476429,0.332436069986541,0.3406716417910447,0.0,1.8663877303697889,53.8755272484532,174.999282726231,249.3627262831885,fqhc2_100Compliance_implementation,14 -100000,95788,45886,434.1357998914269,5802,59.120140309850925,4521,46.58203532801604,1749,17.956320207124065,77.3507064425629,79.67807912044718,63.34838135415546,65.06947759491752,77.12936343342771,79.4570666770583,63.26672368351002,64.99004015571056,0.2213430091351824,221.01244338888648,0.0816576706454341,79.43743920695567,170.85684,120.11019318008044,178369.77491961414,125391.69121401472,418.39505,277.0109585381554,436197.26896897313,288596.22138279886,397.668,194.30291540881072,410657.5875892596,199520.34022457144,3251.22894,1489.1576714667797,3354306.551968931,1514753.300483127,1100.92872,492.4131612108131,1128118.563911972,492845.2950378051,1727.20362,722.292476899133,1774185.4303253016,729148.6120543123,0.38201,100000,0,776622,8107.7170418006435,0,0.0,0,0.0,36181,377.0722846285547,0,0.0,36304,374.4205954816888,1499286,0,53786,0,0,0,0,0,64,0.6681421472418257,0,0.0,1,0.0104397210506535,0,0.0,0.05802,0.1518808408156854,0.3014477766287487,0.01749,0.3376623376623376,0.6623376623376623,24.349283921012017,4.415759254148764,0.3147533731475337,0.2444149524441495,0.214554302145543,0.2262773722627737,11.352998191301964,5.613583083127411,18.57785870261387,12058.601522368926,51.38242230258621,13.260067943774391,16.0790574698936,10.82098745482526,11.222309434092962,0.5635921256359212,0.7800904977375566,0.6985242445537596,0.5742268041237113,0.1319648093841642,0.7446982055464927,0.9125295508274232,0.8904494382022472,0.7533632286995515,0.1875,0.496206373292868,0.6979472140762464,0.6344892221180881,0.5207496653279786,0.1163954943679599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.0051703163017031,0.0074786650024861,0.0098326019827726,0.0120790629575402,0.0142527003776965,0.016387428152134,0.0186751844557153,0.0207649938175092,0.0228100695865738,0.0250425231059286,0.026975722875495,0.0289910180256099,0.0312323070113132,0.0334096392996349,0.0353719008264462,0.0375708786887959,0.039538475892311,0.0417674853315333,0.043920923599038,0.0585669716921086,0.0724972554759788,0.0860281554313986,0.0982996700224889,0.1109776147717212,0.1266027504413179,0.1380034357701851,0.149567919628794,0.1601063318707363,0.1692782577007995,0.1825149081828163,0.1941961631991353,0.2052262726136795,0.2159844437889861,0.2252759333362649,0.2358523959116853,0.2450164354560142,0.2535916877281662,0.2612518696460137,0.268570317236961,0.2750496604610338,0.2812770031995142,0.2869928118793152,0.2920003351647694,0.2972681175243225,0.3019669144798385,0.3061344327836082,0.3104013624463028,0.3150814285899078,0.3188569923623913,0.3176848269933376,0.3153693985768058,0.3137676878498889,0.3126489234190651,0.3117698576454347,0.3088343332925187,0.3066974815190034,0.3075974954395306,0.3086506254699569,0.3089422184129705,0.3096828673297054,0.3109642701697463,0.3131113816700953,0.3126122485632184,0.3142382431553854,0.316090752260965,0.3174889174889175,0.3209853150165798,0.3259927416229167,0.3299558946239123,0.3331502585930706,0.3352123261931605,0.3382698785991229,0.3431191246725227,0.3482572966846132,0.3534883720930232,0.3527683266316115,0.3520281456953642,0.3594056630221474,0.3685647425897035,0.0,2.441719660260291,53.11653029099413,172.2909229214317,243.1265150279,fqhc2_100Compliance_implementation,15 -100000,95732,45586,433.06313458404713,5788,59.34274850624661,4549,46.891321606150505,1824,18.624911210462542,77.31652017658898,79.67729899436502,63.31665033110207,65.06256451912786,77.09292054718722,79.45611088310797,63.23393320080826,64.98303400532082,0.223599629401761,221.1881112570495,0.0827171302938083,79.53051380704323,170.22962,119.84288602575826,177818.93201855177,125185.8166817347,423.44352,279.69099070504905,441695.6816947312,291534.2630521132,399.57385,194.43179620737877,413361.88526302594,200041.57585777304,3289.34431,1498.3134707146976,3393791.0938871014,1523030.2710358002,1090.18579,484.9716293379293,1119659.2884302011,487572.9895291415,1792.16208,746.8061671920029,1832569.7154556469,748752.0092610518,0.37887,100000,0,773771,8082.67872811599,0,0.0,0,0.0,36687,382.5680023398655,0,0.0,36478,377.0003760498057,1495844,0,53694,0,0,0,0,0,69,0.720762127606234,0,0.0,1,0.0104458279363222,0,0.0,0.05788,0.1527700794467759,0.3151347615756738,0.01824,0.3397255744751198,0.6602744255248801,24.2424942575352,4.299274301571795,0.3108375467135634,0.2360958452407122,0.2222466476148604,0.2308199604308639,11.161954489571222,5.84246099068008,19.35444081432,11938.130394763391,51.61779194695418,12.966035494128857,16.024883850940665,11.154145954899253,11.472726646985407,0.5570455045064849,0.7988826815642458,0.6888260254596889,0.5727002967359051,0.1171428571428571,0.7402912621359223,0.9326683291770572,0.8842364532019704,0.7289719626168224,0.1209302325581395,0.4886809538182916,0.7191679049034175,0.6101190476190477,0.5307402760351317,0.1161676646706586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0043186910108372,0.0065465617863486,0.0086468801121757,0.0108642578125,0.0130568512822602,0.0151652677633524,0.0174116397577688,0.0195908017300436,0.0217046327105195,0.0237572799606266,0.0259474889361221,0.0281653932769134,0.0302328215583907,0.0320793835807193,0.0341788500284134,0.0361985797983562,0.0382237620065141,0.0402694330679195,0.0422865358169771,0.0571076588991898,0.0709547128746023,0.0837799007938588,0.096486892882304,0.1083380780666793,0.1240653587858918,0.1354981064423393,0.1468700437480707,0.157496634687293,0.1679987126535428,0.1809211943642552,0.1932108384192529,0.2042454163857413,0.2137015656433132,0.2230404297240475,0.2329661317492685,0.2430102724430549,0.2520364536453645,0.2601028155108433,0.2673883161512027,0.2736622895817666,0.2786971522133208,0.2846964981005243,0.2900290160907412,0.2949281878052929,0.300346558464783,0.3048644587741814,0.309843557071755,0.3138836384350483,0.3183791988385138,0.3170005924489686,0.3154175677350928,0.3133043576428088,0.3118621987406818,0.3105115919169072,0.3087820434196001,0.3067188291941206,0.3062969723880474,0.3073604191278443,0.3082970683572413,0.3083727743971152,0.3086302454473476,0.3102782152230971,0.3117467855382823,0.3126940199735291,0.3121712410811937,0.3131984036488027,0.3151634971442917,0.3191668125328198,0.3219929502158501,0.324121630834962,0.3271886952826179,0.3280090554647214,0.3315176274776819,0.3362980994288924,0.3388822829964328,0.3428877988963826,0.3421424248537422,0.345638501503965,0.3465497521921464,0.0,2.3945487483261063,53.88936334980574,168.47970503430466,248.64137639716748,fqhc2_100Compliance_implementation,16 -100000,95666,45557,432.347960612966,5801,59.300064808814,4560,46.97593711454435,1806,18.48096502414651,77.40264542862671,79.78223327387391,63.35728834693722,65.11168874313563,77.18181425702568,79.5634142501529,63.27587798262626,65.03335871921738,0.2208311716010342,218.8190237210108,0.0814103643109547,78.33002391825516,170.70856,120.07254124854796,178442.24698429953,125512.24180852964,422.76011,278.8308974700992,441199.5588819434,290750.42300679616,396.51004,193.204282013368,409459.0972759392,198270.1418204964,3248.12873,1482.456485517063,3351634.969581669,1506026.8563889237,1101.78314,487.2165654885437,1133872.4729789058,491509.2998804455,1765.6312,730.6567309308102,1808927.121443355,733697.9703658863,0.38061,100000,0,775948,8111.011226559071,0,0.0,0,0.0,36624,382.0793176259068,0,0.0,36239,373.7796082202664,1499817,0,53748,0,0,0,0,0,75,0.7839775886939979,0,0.0,1,0.0104530345159199,0,0.0,0.05801,0.1524132313917133,0.3113256335114635,0.01806,0.3447992100065832,0.6552007899934167,24.329994320616777,4.3569934319806,0.3168859649122807,0.2432017543859649,0.2160087719298245,0.2239035087719298,11.425251494976164,6.019139658657388,18.989023223822176,12009.111756856622,51.5068312103741,13.37127762865366,16.167570681786614,10.986692755915266,10.981290144018551,0.5679824561403509,0.8169522091974752,0.6816608996539792,0.5746192893401015,0.1302644466209598,0.770387965162312,0.9318181818181818,0.8992042440318302,0.746938775510204,0.2039800995024875,0.4904458598726114,0.7414050822122571,0.6048689138576779,0.5175675675675676,0.1121951219512195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290903383256,0.0047533623197218,0.0071515520389531,0.0095670454891685,0.0119380522874487,0.014092825285624,0.0163222445380121,0.0184321450077055,0.0205916917888712,0.0226677309754799,0.0248775087640173,0.0270716984231274,0.0290355747480978,0.0310205258658866,0.0328934471053147,0.0350583444440999,0.0370895761930894,0.0390586086667773,0.0410591343053851,0.0432303988494127,0.057058688339636,0.0706657173371306,0.0837294716406946,0.0965244466885466,0.108680518932602,0.1239288208036224,0.1357076152474743,0.1460189709686691,0.1570504942559444,0.1671313672922252,0.1798994217287832,0.1919185360733261,0.2031078391927012,0.2144661032699603,0.225348394689662,0.2350890010626992,0.2444659934461312,0.2523335093059565,0.2604199700992162,0.2677587507716226,0.2735541960060025,0.2798273246995683,0.2859655750478124,0.291530126533834,0.296492950746142,0.3017124720124006,0.3061071468739456,0.3102450171385045,0.3146938037554562,0.3196942386885418,0.3184960468206773,0.3168375178160289,0.3152978795018512,0.3141488535343364,0.3138380505703591,0.3111850235723113,0.308456062256318,0.3083813703655181,0.3095278590380298,0.3099695951352216,0.3107966848353617,0.310855908912446,0.3122387438910263,0.3125125036121546,0.3142015659794555,0.3160862785862786,0.3169934640522875,0.3221537402621781,0.3264834587782251,0.3293242601677481,0.3328785811732606,0.3349109279446955,0.3377808546793379,0.3411406844106464,0.341856954142291,0.3418198962753418,0.3462421552120006,0.3548451950140732,0.3650490730643402,0.3696878525761564,0.0,2.6417481560075373,54.727239204456666,165.6686218866063,246.0943019320861,fqhc2_100Compliance_implementation,17 -100000,95720,45711,433.6188884245717,5947,60.83368157124948,4686,48.29711659005432,1847,18.89887170915169,77.33907921770925,79.70628601642946,63.32552877917672,65.07540051535436,77.1083887739704,79.47965660058439,63.23942427062787,64.99393824360027,0.230690443738851,226.62941584506768,0.0861045085488427,81.46227175409138,170.23292,119.71518704502846,177844.44212285834,125067.8719651363,422.14025,279.0019067821685,440343.5854575846,290804.99037000467,402.65334,196.78606196718468,416665.5871291266,202410.3068736801,3368.32002,1541.7259204166648,3470484.527789385,1562216.5591482085,1121.70951,497.8494615017289,1147467.258671124,495800.51572240907,1811.83126,759.1456719542565,1854194.1913915584,757582.3987665283,0.38045,100000,0,773786,8083.838278311743,0,0.0,0,0.0,36523,380.8295027162558,0,0.0,36753,379.9519431675721,1497850,0,53740,0,0,0,0,0,79,0.8253238612620142,0,0.0,0,0.0,0,0.0,0.05947,0.1563148902615324,0.3105767613922986,0.01847,0.33642617181251,0.66357382818749,24.26329171649549,4.324912096440783,0.314767392232181,0.2424242424242424,0.2168160478019632,0.2259923175416133,11.189208146730238,5.780889148559877,19.62696943433915,12048.303993610456,53.275982301713086,13.737838417931426,16.71024292134002,11.397833704550642,11.430067257891007,0.5729833546734955,0.7931338028169014,0.7159322033898305,0.5954724409448819,0.1161473087818696,0.7653374233128835,0.9322799097065464,0.8822055137844611,0.77431906614786,0.1658536585365853,0.4988172678888232,0.7041847041847041,0.654275092936803,0.5349143610013175,0.104215456674473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047451028105608,0.0067902926220273,0.0088705088603479,0.0109864398848458,0.0134434610801617,0.0156936725641156,0.0179174876721559,0.0200004090063191,0.0223273725393801,0.02421364619976,0.0264268767396238,0.0284985550173295,0.0306505120438482,0.0325460888953116,0.0348593115001602,0.0370347349556101,0.0390838236972923,0.0411289400068634,0.0431847306293822,0.057940295078886,0.0724987967438843,0.0854653357379524,0.0980398342692493,0.110804112839441,0.1258951332254413,0.1372977560872102,0.148719149932923,0.1597452283754034,0.1691828960781158,0.1818583498577463,0.1942802070474086,0.2048634533783048,0.2148469130939093,0.2248097864984199,0.2353606350191791,0.2443608182955154,0.2526508926360341,0.2607555565645787,0.2678051575931232,0.2740436367845361,0.2810500333399623,0.2879477748737538,0.2931090223313177,0.2979946864650435,0.3032237432813057,0.3075645572149243,0.3104997905373668,0.3147518958233751,0.3186322308604559,0.3177175724345535,0.3160976414316345,0.3143118749119594,0.3142576232956928,0.313906674787931,0.3117463426577707,0.3095038512028089,0.3097791280072255,0.3101755226331816,0.3105785567379057,0.3112519453246583,0.3128014548904879,0.314303048053388,0.3140403453057208,0.3155318842665899,0.3177436537012498,0.3189829446769739,0.3236901620806634,0.3274116121798241,0.3307533539731682,0.3343057708086425,0.3360345471024151,0.3398175136231149,0.3435728512333384,0.3469847830170956,0.3486795146324054,0.3527131782945736,0.3551957368313179,0.3625486922648859,0.3612928049249711,0.0,2.3722300547287016,57.03023081478637,169.60860721861613,256.8502603284608,fqhc2_100Compliance_implementation,18 -100000,95689,45618,432.9860276520813,5756,59.0245482761864,4532,46.8078880540083,1795,18.372017682283232,77.30793472821749,79.6840526145597,63.31631099018998,65.07025773581955,77.08048638439708,79.45795468194933,63.23206999940047,64.98840968563515,0.2274483438204129,226.09793261037225,0.0842409907895103,81.848050184405,171.952,120.98603681819924,179698.5860443729,126436.52045039776,421.58093,278.8373678575361,440005.7059850139,290832.9213199461,397.42164,193.8800002909102,411904.9734034215,199906.3957734755,3282.63855,1513.499610763405,3391622.1404759167,1542871.4702909929,1076.55002,486.9645394937838,1108793.2991252912,492685.9677229574,1760.20384,746.9749016851861,1802967.154009343,751531.1028161136,0.37966,100000,0,781600,8168.117547471496,0,0.0,0,0.0,36451,380.3258472760714,0,0.0,36204,374.9020263562165,1488780,0,53468,0,0,0,0,0,86,0.8987448923073709,0,0.0,0,0.0,0,0.0,0.05756,0.1516093346678607,0.3118485059068798,0.01795,0.3483033932135728,0.6516966067864272,24.288284966083346,4.334357208010321,0.3307590467784642,0.2319064430714916,0.2133715798764342,0.2239629302736099,11.192924302894603,5.7904338918638345,19.236142948334845,12010.391322759117,51.644899465569054,12.63615395927474,16.93895536795662,10.812858545932636,11.256931592405063,0.5644307149161518,0.7982873453853473,0.6931287525016678,0.5760082730093071,0.1211822660098522,0.7447665056360708,0.9268929503916448,0.8673469387755102,0.7692307692307693,0.1818181818181818,0.4963525835866261,0.7245508982035929,0.6314363143631436,0.5097222222222222,0.1044025157232704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376121337302,0.0044586761785091,0.006816867689873,0.0089583164052977,0.0112989179074119,0.0134006761435379,0.0157742859764864,0.01791730474732,0.0200781042343944,0.0220798231157424,0.0244802558740312,0.0265505806014435,0.0286622238677033,0.0305967919727204,0.0326911368631781,0.0347251656656087,0.0369790911163147,0.0390560925220352,0.0410052634863835,0.0430109768683088,0.0574618992405962,0.0717089356179151,0.0856291571371619,0.0979260007151721,0.1100767511491586,0.1251202876328451,0.1370995119881179,0.1480105592574457,0.159047446074294,0.1682489621214559,0.1808782190054605,0.1920721812320142,0.2030835471665289,0.2123120660434093,0.2221403269455017,0.2321563067653183,0.2417879139516201,0.2501996782648802,0.2588503608224027,0.2666017638300309,0.2749918970227346,0.2803939457739724,0.2863669720427053,0.2920030227062817,0.2966399533022826,0.301925662756128,0.3068190361626945,0.3114877349474355,0.316310382400249,0.3203715448443528,0.319587489889458,0.3180019577835684,0.3173124426565036,0.3155859391973118,0.314324851480726,0.3118751150095074,0.3087101380295097,0.3097343675378357,0.3101397102939916,0.3113199105145414,0.3111695631751996,0.3125049559908017,0.3125655768665799,0.3141272255524738,0.3145306967894217,0.3148298323174719,0.3166119125839166,0.3184269450313791,0.3241744658308317,0.3288128852654603,0.3319460324719872,0.3338304218150831,0.3358595427560945,0.339943558843719,0.3410692473926524,0.3410944332821179,0.3348423117549419,0.3421840686763825,0.3417381974248927,0.3390654205607477,0.0,2.0629083564729904,54.52304279532884,168.71736211937076,247.45330988226772,fqhc2_100Compliance_implementation,19 -100000,95709,45548,432.3417860389305,5912,60.61080985069325,4686,48.39670250446666,1839,18.88014711260174,77.38171245272493,79.75690416989774,63.34258245905804,65.09559913513714,77.15399274661047,79.5283951978073,63.25820019692076,65.01304566995054,0.2277197061144562,228.50897209043808,0.0843822621372822,82.55346518659223,170.24348,119.8112546461841,177876.1453990743,125182.85077284694,423.82357,279.5628311412691,442202.1753440116,291473.67660436244,396.6091,193.097117213214,410939.0757400036,199065.6178063681,3358.64876,1537.2367401430197,3473949.127041344,1570876.2500318866,1105.72098,492.3127842372125,1139266.9968341535,498362.9356151188,1806.02544,757.6758964033139,1856486.1820727407,766021.4294691868,0.38197,100000,0,773834,8085.279336321558,0,0.0,0,0.0,36670,382.5659028931448,0,0.0,36347,376.2342099489076,1500011,0,53764,0,0,0,0,0,74,0.7627286880021732,0,0.0,0,0.0,0,0.0,0.05912,0.1547765531324449,0.311062246278755,0.01839,0.3422840504691039,0.6577159495308962,24.109102079937493,4.3601750180652665,0.3162612035851472,0.2426376440460947,0.2200170721297482,0.2210840802390098,11.441504021462862,5.831048266428305,19.491904482840415,12010.240581083304,53.26186241350491,13.726037863998632,16.80822822366746,11.356093033035863,11.371503292802952,0.5567648314127187,0.7774846086191732,0.6828609986504723,0.5819592628516004,0.109073359073359,0.7453416149068323,0.930648769574944,0.8663366336633663,0.7432432432432432,0.1348837209302325,0.485285462036492,0.6782608695652174,0.614100185528757,0.5377008652657602,0.1023142509135201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0044501211365548,0.0066769493038925,0.0089287528188042,0.0111682974957788,0.0135336048879837,0.0156105021667091,0.017997876597656,0.0203121965182012,0.0225816357866721,0.0247583117189342,0.0266116364308374,0.0288664246562663,0.0307793732874595,0.0328269798352975,0.034790790004239,0.0367148257469835,0.0386646881193769,0.040634847996339,0.042686231189295,0.0569909766897819,0.0707892340064696,0.0831777073672283,0.0964192543970377,0.1086337460712553,0.1240694526689789,0.1350258869461891,0.1469952626816415,0.1572785249596735,0.1674014481094127,0.1808092236409676,0.1934052134753615,0.2050069057018259,0.2139944686758709,0.2236911570611526,0.2334351685816121,0.243164585191793,0.2517289073305671,0.2602916827326544,0.2683183733284484,0.2746697207376044,0.2810417786921656,0.2864953138312979,0.2920820552147239,0.297013348232179,0.3019630556137475,0.3065050717296411,0.3114804163591479,0.3159488951885363,0.3195870852065233,0.3184397353842844,0.3169314857794196,0.3154771113142535,0.3144236311239193,0.3130532610948278,0.3115551826710396,0.3096042166393132,0.309963220269718,0.3104731796859066,0.3108420453737287,0.3109745849750704,0.3124051929631016,0.3132291666666666,0.3141522029372496,0.3156974516190841,0.3161917098445596,0.3179937659393596,0.3213594657012671,0.3254874651810585,0.327663772691397,0.329408034784184,0.3320277351399989,0.3381861725594,0.3423664122137405,0.3437794089968003,0.3430066603235014,0.3476197765192101,0.355159132373809,0.3601543124827776,0.3593207255885758,0.0,2.203116510387559,56.35648231315708,176.1225017305477,251.28247703621452,fqhc2_100Compliance_implementation,20 -100000,95862,46266,437.7751350900253,5790,59.13709290438339,4575,47.19283970707893,1793,18.3805887630135,77.44506122741345,79.72275880369448,63.40474875222951,65.08403908619333,77.22006105138325,79.49708112485598,63.32104300144269,65.00187393411184,0.2250001760301927,225.677678838494,0.0837057507868195,82.16515208148678,170.55676,120.02497452125652,177919.05030147504,125205.9987495113,422.34038,278.86384052080734,440046.2539901108,290377.45584296586,401.21944,196.03356216514933,414702.12388642,201593.92690833897,3223.88432,1478.5434931192983,3327897.7279839767,1507644.6903900933,1079.47003,482.1468893669039,1111416.797062444,488609.1433705382,1750.73066,738.3290015838742,1796685.7357451336,747397.1192608676,0.38472,100000,0,775258,8087.229559157957,0,0.0,0,0.0,36528,380.4948780538691,0,0.0,36642,378.3563873067535,1499732,0,53851,0,0,0,0,0,56,0.5841730821389081,0,0.0,0,0.0,0,0.0,0.0579,0.1504990642545227,0.3096718480138169,0.01793,0.3499340369393139,0.650065963060686,24.459878038654097,4.29861103934959,0.3221857923497268,0.2485245901639344,0.2137704918032787,0.2155191256830601,11.362252336964364,6.026585687299251,19.06615666604793,12103.801567990757,51.825809288518265,13.563607670588018,16.60914487032048,10.883152683119697,10.76990406449007,0.5597814207650273,0.7792436235708003,0.6845318860244234,0.5613496932515337,0.1186612576064908,0.7431048069345941,0.9310344827586208,0.890625,0.721030042918455,0.1290322580645161,0.4894131881427707,0.6851851851851852,0.6119266055045871,0.5114093959731544,0.1157347204161248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024089556468754,0.0047812477841145,0.0070977358222726,0.0092667776379359,0.0113601723332046,0.013449858074493,0.0156542817567017,0.0180386878358673,0.0200757691797118,0.0223824130879345,0.0246672127790292,0.027178093431106,0.029538638511154,0.0317328066818901,0.0338659990315169,0.0358691164327002,0.0379022917183751,0.0397496476829975,0.041972488969634,0.0440442002746909,0.0592350843534294,0.0726478761413259,0.0860319753745641,0.0986978100964313,0.1106213310328865,0.1258508785816051,0.1375480428176649,0.1489901940994613,0.1592275867951889,0.1693563922005094,0.1822451501961416,0.1943649499454637,0.2052481869110175,0.2147310266516721,0.2243750274592504,0.2341649610001659,0.2432423394602789,0.2527079868758146,0.2616478110050559,0.2687933362319504,0.2758544933166829,0.2822146866230121,0.2884995326936955,0.2937401984844313,0.2990922991044341,0.3043986753499366,0.3091584901882259,0.3134915081737803,0.3181688681688682,0.3219203376417832,0.3205166150948473,0.3187943895704257,0.3180509319736491,0.3159409859661748,0.31552392507324,0.313695602469324,0.3110022215569806,0.3112809957855533,0.312131158693175,0.3125155290526391,0.3138257187097737,0.3142964086601919,0.3146053345577493,0.3154707571743438,0.3169593721586831,0.3174808863548011,0.3196401290103547,0.323989386608397,0.3266178054117892,0.3294303173664498,0.3333030358116706,0.3347846864546275,0.3381539235412474,0.3439914327239348,0.346219281663516,0.3486983520420348,0.3512217754407671,0.3481865284974093,0.358217270194986,0.3614599686028257,0.0,2.0359947409143784,55.66837706816834,167.59514278594833,246.639157768438,fqhc2_100Compliance_implementation,21 -100000,95680,45987,435.9113712374582,5942,60.91137123745819,4712,48.62040133779264,1854,19.032190635451503,77.29747507811412,79.69967447652708,63.28577397120039,65.06533737343274,77.06976197692642,79.47244843117547,63.201094452168576,64.98303922626559,0.2277131011877031,227.22604535161395,0.0846795190318161,82.29814716715111,170.885,120.27876675055457,178600.54347826086,125709.41340986054,425.07279,281.044368405479,443633.5493311037,293114.21957066376,407.51934,198.7957201655225,421341.73285953177,204419.2738811609,3348.17305,1532.5157269183806,3459826.6722408026,1563122.3498439875,1105.80508,490.3413169928904,1140100.1881270905,496847.9274591247,1820.71194,763.918558963189,1870577.299331104,772575.3285887303,0.38377,100000,0,776750,8118.20652173913,0,0.0,0,0.0,36736,383.2775919732441,0,0.0,37186,384.04055183946485,1488119,0,53439,0,0,0,0,0,78,0.8152173913043478,0,0.0,0,0.0,0,0.0,0.05942,0.1548323214425306,0.3120161561763716,0.01854,0.337391861582826,0.662608138417174,24.17225777941957,4.281476943704318,0.3132427843803056,0.2493633276740237,0.2092529711375212,0.2281409168081494,10.858318819216644,5.496101243500423,19.809466590134907,12130.742544571973,53.69245841932143,14.21548495900701,16.76613076030285,10.929883777984186,11.780958922027375,0.5573005093378608,0.796595744680851,0.6944444444444444,0.5699797160243407,0.095813953488372,0.7386541471048513,0.9217391304347826,0.8590078328981723,0.7302325581395349,0.1545454545454545,0.4898078043098428,0.7160839160839161,0.636779505946935,0.5252918287937743,0.0807017543859649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0045036820643904,0.0068226813543834,0.0091352504826745,0.0113016764322916,0.0135977510236509,0.0157378319937987,0.0181470966687771,0.0205978911195884,0.0230514792475243,0.0252120665073389,0.0276447987507961,0.0297424923611897,0.031769421802706,0.0338760802453202,0.0359030586385593,0.037842039800995,0.0398932580186279,0.0419575326931679,0.0438751901953019,0.0581943153210558,0.0725449349398599,0.0863483735571878,0.1000378692249431,0.1120780590717299,0.1269188045490611,0.1387388152378122,0.1495101171458999,0.1604045933751042,0.1704400287698732,0.1836807315311041,0.1952461983677097,0.2059339294855736,0.216132424793497,0.2259700176366843,0.2361046395526858,0.2449930707675801,0.2535534881625481,0.2622539275044585,0.2704694448264796,0.2769861680683951,0.2832212878592677,0.2897345698752798,0.2952155751872479,0.2999829638102655,0.3045941542411375,0.3098443257877716,0.3141509433962264,0.3193660189259706,0.3230529141814238,0.3209821549094246,0.3198310722221456,0.3181586978636826,0.3171551511814902,0.3155186771353795,0.3126053252443546,0.3103971907179803,0.3108889799262597,0.3110195323808388,0.3110743095250814,0.3109679828246056,0.3121851385390428,0.3127297026394921,0.3138359458496615,0.3150002395439084,0.3163331516520024,0.317322968679074,0.3200738607911867,0.3228434560648974,0.3256623171213919,0.3274930779356361,0.3311835914785642,0.3356511933847021,0.3371829710144927,0.3428891586516014,0.3418421362192683,0.342572741194487,0.3439335628924448,0.3463548830811554,0.3472915866308106,0.0,2.4418124104860697,55.796407701975255,180.2493731448073,252.97947807961356,fqhc2_100Compliance_implementation,22 -100000,95835,46111,435.74894349663487,5831,59.65461470235301,4581,47.279177753430375,1778,18.19794438357594,77.32864418348662,79.64012296224664,63.32870225298407,65.03867808178767,77.09902119822446,79.41149298499523,63.24176571873088,64.95475479729312,0.2296229852621536,228.62997725140133,0.0869365342531907,83.92328449454567,170.48262,120.0078313537882,177891.81405540774,125223.38535377284,425.0076,281.898535494994,442958.5537642824,293629.9530390714,407.77793,198.92880802204468,422376.8038816716,205184.3771080376,3252.5582,1504.5365136694677,3360377.596911358,1536609.421456822,1083.50856,486.3424880469259,1118655.0320863985,495632.43792918464,1734.88384,745.5661318077395,1777910.471122241,748848.3731205988,0.38276,100000,0,774921,8085.991547973079,0,0.0,0,0.0,36702,382.417697083529,0,0.0,37180,384.8385245473992,1488819,0,53589,0,0,0,0,0,79,0.8243334898523504,0,0.0,1,0.0104346011373715,0,0.0,0.05831,0.1523408924652523,0.304921968787515,0.01778,0.3384111384111384,0.6615888615888615,24.32685613566291,4.208514241404238,0.3289674743505785,0.2453612748308229,0.2123990395110238,0.2132722113075747,10.801082697767786,5.70607532713735,19.165528780957175,12025.248629344353,52.53077012291324,13.580244321932726,17.32241430355261,10.845418517929094,10.782692979498808,0.5671250818598559,0.7766903914590747,0.6987392169873922,0.5652620760534429,0.1248720573183213,0.7120300751879699,0.8857808857808858,0.8496583143507973,0.7056277056277056,0.1341991341991342,0.5078437403875731,0.7093525179856115,0.6367041198501873,0.5215633423180593,0.1219839142091152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0043993025990349,0.0069395830162836,0.0091012514220705,0.0114602399837299,0.0137650173080838,0.0159107124655998,0.0180227989427168,0.0205510249964232,0.0230235556556085,0.025348880100002,0.0275850745043306,0.0296692906912215,0.0318207086824929,0.0339372815113485,0.0359500418384107,0.0383926815891051,0.0404989268717533,0.042442246966927,0.0444652615144418,0.059119877337728,0.0727803103174271,0.0860715446131916,0.0987673780776142,0.1110970570874441,0.126679421993425,0.1383080251102816,0.1494817936112707,0.1602618874695603,0.1700546799614024,0.1820825121959099,0.1935710730746759,0.2048086647310214,0.2146854981525612,0.2237638360143476,0.2347141132025303,0.2437548157991714,0.2518242421512544,0.2598384953490749,0.2665450875140504,0.274089190881473,0.2802641146529683,0.2864520878103221,0.2916551516972063,0.2967241652160152,0.3011181320037518,0.3061260312445146,0.3099065563530206,0.313476613196283,0.3172770437381793,0.3151612424638873,0.3134480666335705,0.3121282757646394,0.312190100617624,0.3117627785058978,0.3095497597592987,0.3079840066004506,0.3081145035659118,0.3096559378468368,0.3097424012835368,0.3103448275862069,0.3109683794466403,0.3115556857657054,0.3125767487552747,0.3139054391697098,0.3144311064718162,0.3149476320582878,0.3173577567279342,0.3202249153075123,0.3242358509169789,0.327971362544746,0.330370840607311,0.3306755399296835,0.3364293871336125,0.3385265133740028,0.3417766678558687,0.3432518597236982,0.3442094662638469,0.3416098226466575,0.3479599692070824,0.0,2.021967514916988,58.740013642669545,171.8986985334798,237.01085797746344,fqhc2_100Compliance_implementation,23 -100000,95753,45906,434.2840433197915,5735,58.671790962163065,4475,46.22309483775965,1742,17.868891836287112,77.35098256499538,79.69957967773665,63.33757887846742,65.07133882995753,77.13371577087061,79.48310147017813,63.2558659260546,64.99238772354353,0.2172667941247681,216.47820755852365,0.0817129524128219,78.95110641399583,170.67336,120.09019515740704,178243.35529957287,125416.63985191802,425.01172,281.29395810223895,443374.4216891377,293282.2450494909,398.77707,193.90278536299792,413765.7201340951,200366.8741753221,3212.66923,1463.658402870505,3321799.786951845,1495213.855305322,1062.21102,468.601232500465,1096077.1255208715,476138.5465734387,1716.6036,727.3848955260711,1762793.771474523,732235.2174518134,0.38188,100000,0,775788,8101.9706954351295,0,0.0,0,0.0,36759,383.3822438983634,0,0.0,36290,376.2493081156726,1493405,0,53585,0,0,0,0,0,70,0.731047591198187,0,0.0,0,0.0,0,0.0,0.05735,0.1501780664082958,0.3037489102005231,0.01742,0.3443741677762982,0.6556258322237017,24.63486966056109,4.318956202273328,0.3220111731843575,0.2341899441340782,0.2201117318435754,0.2236871508379888,10.715759777912892,5.326193757193007,18.46314795492449,12043.15485294596,50.74053915605477,12.628442204586356,16.38503588867679,10.797006512776832,10.930054550014791,0.5602234636871508,0.7977099236641222,0.6939625260235948,0.5644670050761421,0.1148851148851148,0.7214765100671141,0.941747572815534,0.8394366197183099,0.6933962264150944,0.1267605633802817,0.5016752969844654,0.7044025157232704,0.6464088397790055,0.5291073738680466,0.1116751269035533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784117950847,0.0044495798745198,0.0068998406948545,0.0093341187941821,0.0118249941535927,0.0139670776027934,0.0161975922773468,0.0185442224081974,0.0209938878554344,0.0230996755606046,0.0254223388551746,0.0274384610646903,0.0298469099246373,0.0318405091186192,0.0339093206788053,0.0360623882417389,0.0379708824321245,0.0402830815208367,0.0423260069451664,0.0444009209388575,0.0587836144980791,0.0733034135726914,0.0863793645800566,0.099272436706199,0.1112188745282422,0.1262989861829099,0.1376238253823473,0.1481497248800008,0.1583867521367521,0.1682991985752449,0.1807663718530169,0.1929146642421093,0.2044967530701706,0.214892220155378,0.2241132565666351,0.2338916168793021,0.2433793881448883,0.2522221472130336,0.2608616697689199,0.2678520250828261,0.2744782563402127,0.2808243224266255,0.2875544095382286,0.29289409397902,0.2982345446824,0.3036320685073084,0.3074298569018309,0.3110888044624592,0.3154707998033482,0.3192395978997915,0.3175928669557956,0.3160387098550445,0.3150186764394954,0.3133579229044623,0.3118405801408743,0.3101848307122184,0.3076521078136382,0.3078616610531504,0.3083794493407119,0.308571326701608,0.3096818836378597,0.3106493711311753,0.312301321733311,0.3126268596792541,0.3134714405460423,0.3142976023300567,0.3150513825015613,0.3185824055198369,0.3225029664270259,0.3264991704195307,0.3277661795407098,0.3279487315290503,0.3318470137536896,0.3333586107530143,0.3337702462316262,0.3375162779685095,0.3363242574257425,0.3340752731687575,0.3357201872762324,0.3452880579931324,0.0,2.025866673451409,52.25045382122435,168.29849829286235,245.4320343399473,fqhc2_100Compliance_implementation,24 -100000,95831,45564,432.4383550208179,5818,59.45883899781907,4574,47.030710312946745,1770,17.99000323486137,77.51248185563044,79.79968871690068,63.42745123530996,65.11111780276534,77.29592342895731,79.58820004441485,63.34633498254796,65.03526958996531,0.2165584266731315,211.48867248582803,0.0811162527620013,75.8482128000253,171.91438,120.85323964301936,179393.0565265937,126110.5956095638,421.10326,277.8579032807336,438735.87878661393,289259.91527825687,394.21048,192.34104043262016,406975.7176696476,197223.9146434956,3266.11535,1475.251913163234,3363131.658857781,1494746.5620637357,1094.93577,482.065824509833,1125592.3135519822,486108.4103012187,1734.32372,721.6501100849835,1765823.689620269,715524.0152382741,0.38047,100000,0,781429,8154.229842117895,0,0.0,0,0.0,36525,380.4092621385564,0,0.0,35987,371.2890400809759,1499532,0,53708,0,0,0,0,0,70,0.709582494182467,0,0.0,0,0.0,0,0.0,0.05818,0.1529161300496754,0.3042282571330354,0.0177,0.3466798484099522,0.6533201515900477,24.45055941230241,4.315330316357345,0.3261915172715348,0.2431132487975514,0.2057280279842588,0.224967205946655,11.41471852232359,5.952979224896402,18.570053557039,11972.277292605577,51.43442538269564,13.394686132552737,16.687995973022634,10.250450497435326,11.101292779684949,0.5629645824223874,0.7967625899280576,0.693029490616622,0.5664187035069076,0.1185617103984451,0.7392363931762794,0.9322429906542056,0.8477157360406091,0.7263681592039801,0.1490384615384615,0.498055638647921,0.7119883040935673,0.6375227686703097,0.522972972972973,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022868475907149,0.0045371223706464,0.0067403886112772,0.0090917393024931,0.0116113695930433,0.0138208074849994,0.0157500356335647,0.0178046989720998,0.0198196726333309,0.0221086000613559,0.0242693591660351,0.0261414448045288,0.0279998355972955,0.0301445993927854,0.0322786832853946,0.0341782350024789,0.0360306291390728,0.0379559168100856,0.0398499911698403,0.0419568770757201,0.0565793727772389,0.0700363879710569,0.0828268432745106,0.0962744336025712,0.1087618064842211,0.1241840420812472,0.1363087162964219,0.1468886904002382,0.1573201575122456,0.1675447614152317,0.1798767702183941,0.1915773783807137,0.2024340726747657,0.2122883067818263,0.2215204472808357,0.2313867725277277,0.2408929884366018,0.2492418626592088,0.2582807704938453,0.2667893179143193,0.2738040319232366,0.2803326810176125,0.2864824073200641,0.2918532316032047,0.2973823383475935,0.3032330947089232,0.307469867504269,0.3111854018665552,0.3149795066120176,0.3185218235741844,0.3170989870839809,0.3162194337634614,0.3158130485295559,0.3147916576832967,0.3132581746184193,0.3119742777032793,0.3095985487814496,0.3103566641603191,0.3112093141837341,0.3120888888888889,0.3132170506482604,0.3129697398969032,0.3134200758997456,0.3133748055987558,0.313787110444492,0.3154217053863806,0.3165341902023789,0.3212735615079365,0.3238711015835696,0.3282053279326998,0.3304029630951849,0.3348585690515807,0.3337651921771855,0.3362217076268021,0.3397861356932153,0.3397822057460611,0.3455387834404423,0.3442719591275299,0.3439267438728791,0.3379647014645137,0.0,2.6492178784955738,53.354335775433725,167.86297233622872,248.05748060028424,fqhc2_100Compliance_implementation,25 -100000,95739,45666,433.052361106759,5823,59.54731091822559,4538,46.83566780517866,1725,17.72527392180825,77.31288813594676,79.67409417484326,63.318020272784125,65.06317713278379,77.10213751967898,79.46220772774372,63.23929056959205,64.98589409078367,0.2107506162677879,211.88644709954477,0.0787297031920744,77.28304200011848,169.74584,119.49198601560902,177300.61939230617,124810.14635165296,417.98934,276.0520109930464,436027.9509917589,287773.49982039345,396.51915,192.9016335052674,410529.46030353353,198683.11408954556,3205.91278,1462.3790033700966,3310425.385683995,1489385.2042105892,1049.94776,468.22779990797727,1080970.795600539,473416.5790025545,1684.47228,707.3296836800328,1732097.5360093587,715888.9781288006,0.37876,100000,0,771572,8059.119063286644,0,0.0,0,0.0,36172,377.2339381025496,0,0.0,36167,374.079528718704,1502484,0,53915,0,0,0,0,0,73,0.7624896854991173,0,0.0,1,0.0104450641849194,0,0.0,0.05823,0.1537385151547154,0.2962390520350335,0.01725,0.3342600163532297,0.6657399836467702,24.55179523665979,4.278627712798862,0.3230498016747465,0.2434993389158219,0.2225650066108417,0.2108858527985896,10.989929395087517,5.719412212269709,18.37881530390556,11949.227443393283,51.4133250735503,13.24086400507726,16.52691972012196,11.264140694799012,10.381400653552056,0.5526663728514765,0.7520361990950226,0.6971350613915416,0.5524752475247525,0.1013584117032393,0.7443729903536977,0.9039408866995072,0.8781725888324873,0.7198443579766537,0.1497326203208556,0.4802671523982999,0.6638054363376252,0.6305970149253731,0.4953519256308101,0.0896103896103896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0048956506755592,0.0071632220294442,0.0093649697314427,0.0117980899299234,0.0140835030549898,0.0162944835321709,0.0185603005584424,0.0205900995767477,0.0224142697699183,0.0245562949216146,0.0265543974944806,0.0288070922423457,0.0306635354222029,0.032961931290622,0.0352215297801754,0.0372142147117296,0.0390864945629617,0.0411064316539281,0.0429364756873899,0.0567201887540976,0.0703307281040417,0.0838803716365009,0.0960466827883503,0.1077698463744583,0.1231926213469003,0.1345515126433854,0.1465597990377655,0.1564285790581173,0.1663485459380629,0.1787221671906628,0.1904674352707058,0.2024486511759397,0.2125553672007437,0.2218371455919728,0.2315565598830254,0.2403852592576058,0.2491309385863267,0.2572272056318837,0.2646678047271519,0.2714371701083433,0.2777641349470853,0.2845042764364213,0.2898350989885432,0.295512524599723,0.3009254124924525,0.3058539272390395,0.310152264892575,0.3144455378878127,0.3194136291600634,0.3172095906842594,0.3160654564472398,0.3150779553976712,0.3136336023604964,0.3128376065832354,0.3104299937104023,0.3084039480783268,0.3095974213919221,0.3101613427549746,0.3104725437921594,0.3105621518203815,0.3121561176424019,0.3129213247916928,0.3125948745423698,0.3144010379126423,0.3156784626201078,0.3160547976417647,0.3201699181875393,0.3239021307965036,0.3269995229766259,0.3296758331815698,0.3313593824353619,0.3342074046325778,0.3390190281252369,0.3389719011371112,0.3407398652641532,0.3448753462603878,0.3530008110300081,0.3484890490712503,0.3456743483188515,0.0,2.1805038894959305,54.561254463065005,163.1139513182429,251.30738913913197,fqhc2_100Compliance_implementation,26 -100000,95780,45313,430.5282940070996,5815,59.52182083942368,4555,46.97222802255168,1758,17.968260597201922,77.37208356525132,79.71109076484129,63.35007434272507,65.07954444733348,77.14927188929799,79.48876643988007,63.26774996174869,64.99992083538554,0.2228116759533236,222.324324961221,0.0823243809763809,79.62361194793743,170.71758,120.11498282543192,178239.2775109626,125407.1651967341,423.64936,279.6084320736848,441726.6443934016,291339.3736413497,394.55733,192.0659548051653,407997.43161411566,197589.83092598125,3248.29861,1489.8958415361276,3351450.2401336394,1515573.4720569293,1091.73378,492.889801572933,1124202.7354353727,498974.1089715315,1721.95196,726.335248128702,1760926.5608686574,727360.582426715,0.37959,100000,0,775989,8101.785341407392,0,0.0,0,0.0,36725,382.8147838797244,0,0.0,36121,373.1676759239925,1497283,0,53782,0,0,0,0,0,69,0.7204009187721863,0,0.0,1,0.0104405930256838,0,0.0,0.05815,0.1531916014647382,0.3023215821152192,0.01758,0.3325669239612416,0.6674330760387585,24.2864711807981,4.32037093870176,0.3119648737650933,0.2472008781558726,0.2210757409440175,0.2197585071350164,11.48304865801621,6.099748702971155,18.68340385057999,11945.722219230223,51.63792292376312,13.464971185213294,16.062069162302514,10.956894306992186,11.153988269255102,0.5622392974753019,0.7806394316163411,0.6917663617171006,0.5729890764647467,0.1218781218781218,0.7392,0.927400468384075,0.8596938775510204,0.7365853658536585,0.1769911504424778,0.4953101361573374,0.6909871244635193,0.6277939747327502,0.5311720698254364,0.1058064516129032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0042780098130651,0.0066367640194028,0.0091323737060777,0.0113902166175124,0.0136015637726014,0.0157172124881509,0.0178888503377757,0.0201009646827992,0.022218810766554,0.0242670191943103,0.0264165272632108,0.0281852289664388,0.0302618437175012,0.0321017190351953,0.0340965448834518,0.0361146477036301,0.0379043214037562,0.0397655835991645,0.041573396358033,0.0565196973649882,0.0704005857127915,0.0837168345685742,0.0961477838723914,0.108354403708386,0.1236701706196186,0.1355326882928328,0.1466926111412378,0.1570439291925863,0.1663667138021168,0.1788676484826317,0.1910825271577582,0.2026449909261815,0.2134557577744985,0.2222393295868205,0.2332358933475064,0.2429423902738274,0.2520878058649642,0.260233918128655,0.2681843674529867,0.2744057528671846,0.2809848785846168,0.2869448087625394,0.2925139129914427,0.2978684686214803,0.3019188400802491,0.3060399829859634,0.3106954046360309,0.3143758647890238,0.318980401460335,0.3171066071716574,0.3149846255216341,0.3136592166969453,0.311303719754424,0.3103494344327999,0.307717022122946,0.3051501399408611,0.3061237870443221,0.3058660650189724,0.3062608168144592,0.3073614124336051,0.3082933759545374,0.3099914245675681,0.3106094405282413,0.3127640168970814,0.3143005991143527,0.3157023850279584,0.3180444500409242,0.3207255885758394,0.3228308867406612,0.3241187722014755,0.3250039789909279,0.3286827551533434,0.3331556503198294,0.3347781023273344,0.3416479489301335,0.3444495203289173,0.3432245301681503,0.3463506598437921,0.3451624953305939,0.0,2.267863753697969,54.64433125849328,163.8928889915322,252.63206786431377,fqhc2_100Compliance_implementation,27 -100000,95642,45456,431.2331402521905,5735,58.61441626063864,4483,46.245373371531336,1729,17.680516927709583,77.25911226955019,79.65526199322926,63.27736057920528,65.04566996924825,77.04076354979763,79.43932250704239,63.19503370456759,64.96696897958753,0.2183487197525551,215.9394861868691,0.0823268746376868,78.70098966071737,170.81878,120.20981509313393,178602.2667865582,125687.2661520398,423.68817,280.4199452166933,442350.6722987809,292554.32259540097,401.56848,195.5161984761275,415287.1646347839,201025.10528113044,3220.25226,1480.3882834318722,3322322.860249681,1503518.8592498817,1053.04101,472.0597211393568,1086132.9227745133,478812.6565022894,1693.71088,717.6710224328087,1733240.7310595764,718987.6432712133,0.37808,100000,0,776449,8118.284853934464,0,0.0,0,0.0,36639,382.43658643692106,0,0.0,36603,378.2125007841743,1486719,0,53411,0,0,0,0,0,81,0.846908262060601,0,0.0,1,0.0104556575563037,0,0.0,0.05735,0.1516874735505713,0.3014821272885789,0.01729,0.3399900149775336,0.6600099850224663,24.54951090810825,4.346423814064907,0.3140753959402186,0.2426946241356234,0.2237341066250278,0.21949587329913,11.20218985527171,5.760934439228493,18.43682906798549,11913.16216057738,51.115390718839045,13.114487453029753,16.053727453105452,11.186981911395431,10.76019390130842,0.5641311621681909,0.7922794117647058,0.7080965909090909,0.5613160518444666,0.1087398373983739,0.742741935483871,0.9239904988123516,0.8992248062015504,0.6563876651982379,0.1707317073170731,0.4958371877890842,0.7091454272863568,0.6356513222331048,0.5335051546391752,0.0924261874197689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177810641897,0.0047455358500897,0.0070438259951687,0.0092464639895951,0.0116689556945928,0.0138003381337461,0.0160796949242408,0.0180487356697326,0.0202614980423426,0.022488586811882,0.0245752893773644,0.0265424936595784,0.0287069036451904,0.0308434032821336,0.032580651819439,0.0348560674993796,0.0370048068954085,0.0389785643846992,0.0410351893651767,0.0429728630852472,0.0581583705205513,0.0727027055336175,0.0853986389985718,0.0977895723417475,0.1102685690749522,0.1257652466795178,0.1373563340485649,0.1487271293543471,0.1585262820170044,0.1678551484170282,0.1796783136819167,0.1913761527541477,0.2020152505446623,0.2115424651830424,0.2213166282493851,0.2318644218382124,0.2411945041174364,0.2496672907315092,0.2579750031274522,0.2642476330545087,0.2712114179624043,0.2775647115395893,0.2850125182434116,0.2900526581548005,0.2946533060269163,0.2997961075069509,0.3035440877488015,0.3070546827178126,0.3106862897783315,0.3148956432029204,0.3131495829171503,0.3115794994961834,0.3103409267664984,0.3085458664962528,0.3075683418885042,0.3059631547408693,0.3035280674189402,0.3036710381254833,0.3053614251455978,0.3062687741381776,0.3066411741550919,0.3076816636356448,0.3103448275862069,0.3118953141022783,0.3125584294172639,0.3130972164520149,0.3141746139872843,0.3190434345970374,0.3227298206278027,0.3265839838332607,0.3309538965172319,0.3319385593220339,0.3343596832977252,0.3368142262580401,0.3404690990320179,0.3415929203539823,0.3408433551529913,0.3426278836509528,0.3461004718290313,0.3498439937597504,0.0,2.4743946102135257,54.06720846523469,169.27462055346865,239.1604237787484,fqhc2_100Compliance_implementation,28 -100000,95635,45590,434.33889266481935,5795,59.58069744340461,4515,46.81340513410362,1716,17.67135462958122,77.28554750318864,79.71833229831917,63.27381344368565,65.07237456891967,77.0767766447146,79.50776849087278,63.19700030396884,64.99672648605132,0.2087708584740397,210.56380744639117,0.0768131397168119,75.648082868355,170.38714,119.90053084266523,178163.9985361008,125373.06513584488,423.50497,280.2923577749872,442435.9491817849,292686.78598315164,399.02635,193.8962027347463,414538.4639514822,200645.75419032143,3238.53217,1471.4138592489137,3357807.02671616,1510033.3970292383,1084.46826,478.25885125357615,1121185.1100538506,487306.9182345114,1687.10052,704.2258797812123,1738205.1550164688,713942.9617085418,0.37992,100000,0,774487,8098.363569822764,0,0.0,0,0.0,36597,382.2763632561301,0,0.0,36351,377.5709729701469,1492920,0,53510,0,0,0,0,0,85,0.8678830971924504,0,0.0,0,0.0,0,0.0,0.05795,0.1525321120235839,0.2961173425366695,0.01716,0.3413154010168935,0.6586845989831065,24.126976215056796,4.343805161119727,0.3266888150609081,0.238095238095238,0.2188261351052048,0.2163898117386489,11.158593330293169,5.748804805740803,18.20867664401617,11949.728118226154,51.22807050157922,12.971805705933246,16.649939889882035,10.921698035719352,10.684626870044596,0.5652270210409746,0.8027906976744186,0.6847457627118644,0.5789473684210527,0.1095189355168884,0.7367563162184189,0.921760391198044,0.8567708333333334,0.7184873949579832,0.1377551020408163,0.5012165450121655,0.7297297297297297,0.6241979835013749,0.5346666666666666,0.1024327784891165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584920956627,0.0042702532736917,0.0066502863176704,0.0089037963104131,0.0109164530175395,0.0128451955301571,0.0150054574573349,0.0171931186662307,0.019392253326651,0.0214454697213317,0.0235530662070946,0.0257295519934237,0.0278638408251073,0.0299756731126046,0.0319159920700479,0.0338646448556563,0.0356787564766839,0.0374797490964981,0.0395728381697822,0.0416075600801068,0.0560817026258571,0.0699075723597342,0.0830137130247465,0.0955225453013063,0.1081101064728747,0.1239039268013724,0.1354889439066634,0.1470233971113361,0.1578361722160404,0.1678698034160489,0.1806619344538177,0.1929476548188134,0.2048614137540312,0.2145548958173572,0.2248567019400352,0.2346054398366495,0.243601207108528,0.2517776450569635,0.259635049765941,0.2671281545831709,0.2739933779434578,0.2800018729222269,0.2859817735799865,0.2910821222412903,0.2966689376612,0.3009439200444198,0.3054992111787243,0.3089473349041584,0.313187881616303,0.3176866706278471,0.3162939727244578,0.3145681252663559,0.3137395762902862,0.3126182737450343,0.3118394489965562,0.3097754495603958,0.3075388342596551,0.3080674559516577,0.3084628905916685,0.3083738210917405,0.3094110822089563,0.3093675476457951,0.3097206236266611,0.3113540040151684,0.3114286399271175,0.3129747245625405,0.3147708651183816,0.3211232449297972,0.3261948561313387,0.3271131057832369,0.3301682040151926,0.3333157450401013,0.3350857428964827,0.3406775824341658,0.3386420787929589,0.3368014963759644,0.341201392041156,0.3458224804648367,0.3502840140654585,0.3472065991751031,0.0,1.5752983589981795,54.37754216421878,170.6740534081042,241.7180212308097,fqhc2_100Compliance_implementation,29 -100000,95815,45824,434.25350936700937,5776,59.05129676981684,4533,46.78808119814225,1774,18.17043260449825,77.35864855579545,79.66242381643103,63.35358995694328,65.0537143004912,77.13778572590591,79.44277951420653,63.271309079673166,64.97396497550238,0.2208628298895405,219.6443022244949,0.082280877270108,79.7493249888106,171.0346,120.38849375261871,178505.0357459688,125646.81287128189,427.95051,283.440015747354,446111.2351928195,295288.8229894631,404.26543,197.19737894158757,418251.1297813495,202999.73482137063,3233.87043,1484.9417080986489,3340641.507070918,1515323.2146309544,1046.64131,466.7007469471048,1077073.433178521,471802.2720316287,1736.29046,732.5037491288264,1780391.9219328917,738326.8788902174,0.38103,100000,0,777430,8113.8652611804,0,0.0,0,0.0,36960,385.200647080311,0,0.0,36865,381.0989928508063,1489166,0,53459,0,0,0,0,0,85,0.8871262328445442,0,0.0,1,0.0104367792099358,0,0.0,0.05776,0.1515891137180799,0.3071329639889196,0.01774,0.337339479749753,0.6626605202502469,24.48463432329557,4.33460706678846,0.3174498124862122,0.2404588572689168,0.2267813809838958,0.215309949260975,11.228395960682697,5.788764673993585,18.91486666242734,11978.282109318498,51.492263126778944,12.96194145587569,16.337735490928782,11.34507644687512,10.84750973309936,0.5656298257224796,0.7954128440366972,0.6949270326615705,0.5729571984435797,0.110655737704918,0.7285714285714285,0.9242424242424242,0.8731343283582089,0.7222222222222222,0.1403508771929824,0.5029025358997862,0.7219020172910663,0.6258437801350049,0.5289672544080605,0.1016042780748663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023682772301277,0.0048820508665133,0.007208248426047,0.0092747622961632,0.0114502265661512,0.0139057016428462,0.0159312227519048,0.0180653453428947,0.0203604192632245,0.0224943227152765,0.0245206489675516,0.0265965085030873,0.0286227975548363,0.0306036345674947,0.0326528508093617,0.0347737178030694,0.0368343179960475,0.0390085626023676,0.041234329396857,0.0432533155670296,0.0570206551220529,0.071601066332131,0.0850880962612806,0.0975702034639313,0.1098359100825192,0.1259061991418849,0.1369048250124574,0.1478100830859902,0.1579947680316053,0.1674655000482516,0.1792905907436521,0.1908383732378366,0.2026340688860129,0.212893274405986,0.2215653246138433,0.232083878261255,0.241768789481908,0.2505427996085093,0.2582519204366227,0.2655875917843683,0.272097113893582,0.278985931318617,0.2850681947338511,0.2903829093437552,0.2962571265331923,0.3013759431868619,0.3058561545294184,0.3096085861797095,0.313462783171521,0.3164553622079447,0.3156010712026807,0.3150426903881319,0.3139682093121395,0.3129382231583807,0.3128357323044962,0.3107469850052733,0.3082603333227918,0.3089673734655025,0.3102146128084205,0.3108294148146824,0.3112236286919831,0.3135343549184379,0.3156337850879033,0.3154978664462367,0.3165241206995964,0.3184593705965242,0.3176725489637084,0.3221214411690602,0.3247583904410472,0.3259200318281281,0.3292227884965417,0.3352118666595778,0.3390128890286074,0.3422757411782638,0.3482368347207932,0.3499001292445071,0.3547943110567365,0.3584521384928716,0.3622905027932961,0.358214849921011,0.0,2.027111864180744,55.25410278843587,164.7528341651221,247.76779541945965,fqhc2_100Compliance_implementation,30 -100000,95867,45821,434.68555394452727,5789,59.25918199171769,4594,47.39900069888491,1811,18.54652800233657,77.41454581429173,79.70201104562344,63.37712166936033,65.06749569077297,77.1930776990017,79.48288707067685,63.29551301902639,64.9891805445656,0.2214681152900226,219.12397494658364,0.0816086503339406,78.31514620737323,171.27858,120.54778424016128,178662.48031126455,125744.61438841636,426.77676,281.4706823864443,444649.5874492787,293080.60543425626,401.00914,195.10548997130888,415194.5090594261,201088.9523732806,3310.43933,1492.5062583766148,3417488.061585321,1521340.7379842713,1082.77762,474.1169086132789,1115307.9891933615,480532.80539793614,1771.66578,734.7278209072177,1815723.5336455717,738947.6902808008,0.37953,100000,0,778539,8121.021832330207,0,0.0,0,0.0,36853,383.8651465050539,0,0.0,36523,377.83596023657776,1493105,0,53649,0,0,0,0,0,82,0.8553516851471309,0,0.0,0,0.0,0,0.0,0.05789,0.1525307617316154,0.3128346864743479,0.01811,0.3346020188648022,0.6653979811351978,24.32115410209541,4.3745013928920855,0.3145407052677405,0.239007400957771,0.2233347845015237,0.2231171092729647,11.106191199426991,5.675092557566406,19.213123329836144,11948.51473869744,51.83878469426297,13.180888518343291,16.26058635676011,11.341221119689807,11.056088699469766,0.5539834566826295,0.7823315118397086,0.6913494809688582,0.5584795321637427,0.1112195121951219,0.749198717948718,0.9371980676328504,0.8686868686868687,0.691699604743083,0.1513513513513513,0.4811715481171548,0.6885964912280702,0.6244041944709247,0.5148771021992238,0.1023809523809523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002510502606671,0.0046400891545514,0.0071894298143322,0.0093801392808559,0.0117085069620896,0.0136651777083608,0.01590260798696,0.0178609680216249,0.0199601613974155,0.0221240295805333,0.0243275356974576,0.026464795667159,0.0288835001335771,0.0309926712779973,0.0329202408446057,0.0348688287543895,0.0366557689124317,0.0385719467329913,0.0405161317111655,0.0424485125858123,0.0570314454917007,0.0710105549169192,0.0843198055689413,0.097197576623022,0.1092436974789916,0.1252640473172792,0.1366722810139723,0.1475505670524962,0.1586067104069984,0.1684336781683051,0.1807727888814784,0.1927326587095658,0.20401355961668,0.214266984244914,0.2245640253618012,0.2350246730543692,0.2438540354319735,0.2518933009730555,0.2594759458938512,0.2671389658250738,0.2740505231516272,0.2801734718926438,0.2860065031037541,0.2904060366510959,0.2954951234620383,0.3004213586969913,0.3044174496140517,0.3093829892776739,0.3134434726271461,0.3164403267740956,0.3149733484089808,0.3128093719062809,0.3114163476694438,0.3095031898617245,0.3078007658286087,0.3056222381920765,0.3030451400953975,0.3040551606669068,0.3042381260868083,0.3058164354322305,0.3056757967012463,0.3059789672692898,0.3081126173096976,0.3088608158000089,0.3105882916088268,0.3114320533098245,0.3128648342306602,0.3175058456742011,0.3222551928783382,0.3269344709088754,0.3290750688394348,0.3313684210526316,0.3359447864204439,0.3381262637609526,0.3411710037174721,0.3422290148130731,0.3471968312004875,0.3467561521252796,0.3487798190293392,0.3551933282789992,0.0,1.938787413561756,54.87250787423873,166.22659478065378,252.77151380867528,fqhc2_100Compliance_implementation,31 -100000,95708,45790,433.9658126802357,5734,58.73072261461947,4503,46.44334851841017,1773,18.10715927613157,77.36002699221102,79.73116522604242,63.33690834044432,65.08806632752768,77.13928688898837,79.51381838063105,63.254385664212855,65.00978595499932,0.2207401032226528,217.34684541137028,0.0825226762314699,78.2803725283685,171.45898,120.56607126784412,179148.012705312,125972.82491311502,421.66859,278.5594669300893,440005.6108162328,290478.796892725,394.02567,191.797244477694,407963.2841559744,197510.99506809784,3205.07961,1464.2663626773217,3308804.4468591968,1489924.888909309,1082.53321,480.895680114787,1118183.9553642329,489566.1492401754,1735.39922,727.6911037368843,1774621.8915869102,728536.662700803,0.38184,100000,0,779359,8143.091486605091,0,0.0,0,0.0,36477,380.511555982781,0,0.0,35879,371.107953358131,1495311,0,53610,0,0,0,0,0,77,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05734,0.150167609469935,0.3092082316009766,0.01773,0.3350524039261354,0.6649475960738646,24.44373583515935,4.3510907856812215,0.3175660670664001,0.2465023317788141,0.2147457250721741,0.2211858760826116,11.507835340628713,6.107361344062697,18.794889424430835,12086.889922738312,51.12466875899518,13.33063922042006,16.278457067641536,10.597246328285944,10.91832614264765,0.5634021763268932,0.7855855855855856,0.7034965034965035,0.5594622543950362,0.1184738955823293,0.7317473338802297,0.9200968523002422,0.8623376623376623,0.7772020725388601,0.131578947368421,0.5009135200974422,0.7058823529411765,0.6449760765550239,0.5051679586563308,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025523898269034,0.0051292967997648,0.0074586728636229,0.0097624900952884,0.0119004027828634,0.0140829294122439,0.0160142711518858,0.0182285819265549,0.0204446716074623,0.0225536968406396,0.0249953864135003,0.0271038879705963,0.0292671890746796,0.0312928113057898,0.0332040117214907,0.0353501933456026,0.0375454554872931,0.0397757940626946,0.0416267942583732,0.043432501432814,0.058035947405249,0.0720431232991417,0.0858791439362148,0.0986158441667718,0.1108451773438488,0.1264113841079206,0.1386183777820211,0.1493976416499936,0.1600717695684214,0.169841678465697,0.1824302488419691,0.1946115559402726,0.2050602095378863,0.2148915704791885,0.2240844605740679,0.2341337527412887,0.2440812228048644,0.2531433455543309,0.2612984421415452,0.269000893082049,0.2759059269708392,0.2825939603590127,0.2880437995908569,0.2929246977133964,0.2984434947307076,0.304085502499569,0.3080434755418808,0.3130869029314967,0.3173075679381216,0.3205922683402774,0.319347633016659,0.3172875852960599,0.3165525403668949,0.3150712654312064,0.3147930752656215,0.3121326230712711,0.3095414961040603,0.3113017567412695,0.3118490360192966,0.3126814239666625,0.3118667514113732,0.3134507763852762,0.3138575061491641,0.31402825675826,0.3155741626794258,0.3154903995848469,0.3169082125603865,0.3214767839763915,0.3237727910238429,0.3279595573600828,0.3307449869821404,0.3334220046818472,0.3383147055129976,0.3403189066059225,0.3438930941033548,0.3409866949252325,0.3433221782780651,0.350222042793702,0.3445816186556927,0.3459624952162266,0.0,2.4181700725488424,53.04123512064068,167.93787367077852,246.0259126481952,fqhc2_100Compliance_implementation,32 -100000,95751,45979,437.0815970590385,5876,60.12469843656985,4610,47.56086098317511,1774,18.088583931238315,77.33346816806463,79.69477131333313,63.32120940122799,65.06990141862724,77.117379269349,79.48308863076589,63.24050102480078,64.99328374578043,0.2160888987156255,211.6826825672433,0.0807083764272107,76.6176728468082,171.68294,120.74628641441356,179301.45899259538,126104.46513813284,425.50961,280.51310987340594,443780.3051665257,292349.5105778591,400.57865,194.83246506801893,414883.0821610218,200685.3848595618,3285.55895,1483.856990182351,3392745.318586752,1511091.905235821,1090.85748,479.80214222091047,1123516.715230128,485345.4817400444,1739.5097,729.4536189140127,1777433.488945285,729113.404069106,0.38207,100000,0,780377,8150.066317845244,0,0.0,0,0.0,36796,383.70356445363495,0,0.0,36548,378.1683742206348,1491160,0,53519,0,0,0,0,0,68,0.6997315954924752,0,0.0,0,0.0,0,0.0,0.05876,0.1537938074174889,0.3019060585432266,0.01774,0.328782707622298,0.6712172923777019,24.615551965973705,4.368097817125946,0.3197396963123644,0.2344902386117136,0.2292841648590021,0.2164859002169197,11.150471695957629,5.776815700348574,18.82396294673037,11993.928481356845,51.89705486827789,12.92326488173617,16.49674155926363,11.721180625992783,10.755867801285303,0.5626898047722343,0.7844588344125809,0.6960651289009498,0.5695364238410596,0.1182364729458917,0.7373737373737373,0.9168765743073048,0.8729281767955801,0.6932773109243697,0.1623036649214659,0.5020455873758036,0.7076023391812866,0.6384892086330936,0.5335775335775336,0.1078066914498141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608085515983,0.0044517908570964,0.0066581409983151,0.0090837042004511,0.0110758528101543,0.0131759818346587,0.015434490070546,0.0175542446571819,0.0196026327623564,0.0216494528778929,0.0236306039387757,0.0256557671577434,0.0277243606223584,0.0296701372797396,0.0316423700310543,0.0338807867618939,0.0360844490003002,0.0384328048476799,0.0402220581967127,0.042378353607732,0.0574094756949156,0.0717746915195344,0.0845906868402828,0.0969774094484876,0.1091273398365409,0.1244170922818259,0.1362093112082502,0.1473321199348596,0.1581505137461816,0.1677837953777682,0.180200366260907,0.1920559180272881,0.2032215261463499,0.2132567678424938,0.2227869267240905,0.2335658914728682,0.2432933296120569,0.2518260086658038,0.259854047735243,0.2674917850723028,0.2744030066493206,0.2810332931834925,0.287545982517772,0.2926332682611351,0.2977474253690607,0.302112164938308,0.3066909854087547,0.3116450969683884,0.3157112197140123,0.3193200849234502,0.3181395974961297,0.3162509448223733,0.3148327916824941,0.3129269384630937,0.3121240475872209,0.3102190899341198,0.3092742701538851,0.3092839327907587,0.3097689667537524,0.3107546260773362,0.3114404401032895,0.3117536761077667,0.3130601926331404,0.3142908149602785,0.3151965023541846,0.3152046326003599,0.3171521035598705,0.3213199084093974,0.3250096447234595,0.3281657834374752,0.3333333333333333,0.3362082649875654,0.337751256281407,0.3410110224249335,0.342451588644482,0.3465121834687052,0.3511029411764705,0.3523073795486887,0.3594097995545657,0.3573353869849827,0.0,2.3165346393854085,51.81782664270381,171.2989084761005,258.2800245639372,fqhc2_100Compliance_implementation,33 -100000,95803,45998,436.6773483085081,5772,59.13175996576308,4506,46.51211339937163,1783,18.266651357473147,77.34149214859087,79.68174697338193,63.33904717832892,65.07289924755793,77.12357957852046,79.46457209550229,63.25848431509596,64.9947942367688,0.2179125700704105,217.17487787964276,0.0805628632329558,78.10501078913035,171.47482,120.61841470376766,178986.67056355227,125902.32842997358,424.98968,280.98819888591385,443052.5244512176,292752.39490331017,398.649,194.6376460710233,413077.08526872855,200781.06450743423,3243.03235,1480.125675483995,3349132.031356012,1509783.5673190083,1066.12379,471.6230238709807,1098045.395238145,478432.4559477165,1747.72634,723.128753021237,1791455.3823992985,727847.5303589213,0.38226,100000,0,779431,8135.75775288874,0,0.0,0,0.0,36733,382.8481362796573,0,0.0,36341,376.3347703099068,1494280,0,53608,0,0,0,0,0,81,0.8454850056887572,0,0.0,0,0.0,0,0.0,0.05772,0.1509967038141579,0.3089050589050589,0.01783,0.338301043219076,0.6616989567809239,24.35484945682964,4.339280763037315,0.3144695960940967,0.239236573457612,0.223479804704838,0.2228140257434532,11.19119244861871,5.799827090292691,18.922352324620647,12043.243376195704,51.17561177397639,13.072532883514471,16.107894264105106,11.16226769945218,10.83291692690462,0.5628051486906347,0.7949907235621522,0.6972477064220184,0.5670307845084409,0.1195219123505976,0.73359375,0.9414414414414416,0.8461538461538461,0.6936170212765957,0.1327014218009478,0.4950402975821451,0.692429022082019,0.6407010710808179,0.5284974093264249,0.116015132408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0046125928854556,0.0067278908113044,0.0088200625939926,0.0111715928168082,0.0132829450652433,0.015400777178292,0.0177987909484519,0.0197971204188481,0.0220053656638473,0.0242596997785251,0.0262371509842782,0.0284197858487363,0.0304110435768002,0.0324720886559217,0.0347408134787327,0.036635119183217,0.0388804746986452,0.0409514111143439,0.0426196400129087,0.0576991298178251,0.0718229155774901,0.0852109576407956,0.098498302840509,0.1102551402164634,0.1259169221012578,0.1379460215828863,0.1491445402634965,0.1597319303787337,0.1699010919534071,0.1823484465298479,0.1933611483419084,0.2045533541883906,0.213965735763297,0.2237270248878726,0.234368255022414,0.2437676217222203,0.2527112288658868,0.2621155849449703,0.2700598939283101,0.2759611722203626,0.2816275079659652,0.288381105413644,0.2936348408710217,0.2991704867932765,0.3035523126330425,0.3086697402451366,0.3130276906669375,0.3164653446159808,0.3200657894736842,0.3186375977848867,0.3165528893040122,0.315028983060386,0.3128933541197529,0.3108728261030995,0.3091927119188581,0.3075291958097287,0.3087238407878539,0.3093008952367935,0.3096169300830431,0.3101205316137739,0.311509781039223,0.3131762140400906,0.3140568001253273,0.314995905390433,0.3156135770234987,0.3177050495787241,0.3203407003989614,0.3240312268183263,0.3252622761179145,0.3285937787594331,0.3324945119665899,0.3361285814116003,0.3395004625346901,0.3437114380635975,0.346498031261186,0.3503491078355314,0.3495784495167592,0.3546316964285714,0.3625239005736138,0.0,1.9871293783288169,56.21610640554118,161.10085347232828,244.2855313226598,fqhc2_100Compliance_implementation,34 -100000,95702,45448,430.92098388748406,5710,58.48362625650456,4464,46.05964347662536,1766,18.05604898539216,77.3419109081298,79.71111837519871,63.33255108723839,65.08109875399575,77.12015146774493,79.4927009633636,63.24908679612034,65.00129225866294,0.2217594403848721,218.4174118351052,0.0834642911180481,79.8064953328037,169.76608,119.41326882794355,177390.08589162191,124775.91777386428,419.31076,277.4281479373564,437578.1488370149,289323.5543012229,397.23583,193.3707309175384,411892.9280474807,199430.15705158684,3201.45975,1473.1031689693264,3305688.17788552,1499710.6841751756,1062.70456,473.8354996206376,1092888.4871789515,477583.4101906304,1726.44528,730.823040548903,1767256.462769848,732087.922250151,0.37799,100000,0,771664,8063.18572234645,0,0.0,0,0.0,36249,378.1739148607135,0,0.0,36244,375.4989446406554,1503465,0,53927,0,0,0,0,0,72,0.7418862719692378,0,0.0,1,0.0104491024221019,0,0.0,0.0571,0.1510621974126299,0.3092819614711033,0.01766,0.3271604938271605,0.6728395061728395,24.49559296429823,4.241093906493557,0.318100358422939,0.2403673835125448,0.218189964157706,0.22334229390681,11.156085329077634,5.87372643454181,18.73804793273054,11958.14101642808,50.81569784590509,13.049944938436733,16.17599168641602,10.794446591274678,10.795314629777671,0.5810931899641577,0.8070829450139795,0.721830985915493,0.6006160164271047,0.1183550651955867,0.7434262948207171,0.919047619047619,0.8532338308457711,0.7575757575757576,0.1435643564356435,0.5176067310688688,0.7350689127105666,0.6699410609037328,0.5518169582772544,0.1119496855345912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0046822742474916,0.0068472306755934,0.0090700414398309,0.0115203156139423,0.0136128533029241,0.0157089411500861,0.0180758553115048,0.0203086672117743,0.0225572374548394,0.0248180420297283,0.0267792050436907,0.0289066677635638,0.0308971400313195,0.0329897119978536,0.0350940665701881,0.0370642695884509,0.0393200709816008,0.0414041216960925,0.0431851103075271,0.0577846937922967,0.0720035169620147,0.085287421443035,0.0984654865953575,0.1101196126827416,0.1258027996148678,0.1375571563458131,0.1490274569089418,0.1593533980789982,0.1689661831602437,0.1811161017222994,0.1930561267559903,0.204681670346883,0.2136592300962379,0.2222906674880098,0.2327468804322552,0.2420058220591351,0.2505255584409744,0.2586382920797695,0.2663530542869897,0.2742260169373872,0.2803665043999251,0.2863653582082485,0.2910653497626696,0.2961531919029914,0.3009975708102642,0.3053189357117803,0.3088373749968192,0.3124595343537151,0.3164984052508106,0.3156067030082778,0.3144054406814591,0.3131121509773337,0.3117802216809121,0.3095255739502897,0.3079801450935471,0.306280284735704,0.3068090612766375,0.307683124413746,0.3079076901127122,0.3089776214355212,0.3082329713721619,0.3089708656466149,0.3088334004564371,0.3084067176747991,0.3087905789172008,0.3084442417851748,0.3116805533721113,0.3149822351989306,0.3188423106015366,0.3218631785242241,0.3224261771747805,0.3224119463171823,0.3269157307662923,0.3268269684111268,0.3280285035629454,0.3330279431974347,0.331289597384018,0.3394546466332777,0.3367697594501718,0.0,2.2722627504920654,54.7298714045859,164.9853756472654,238.93131203798225,fqhc2_100Compliance_implementation,35 -100000,95711,45972,436.5015515457993,5802,59.49159448757196,4636,47.8941814420495,1820,18.702134550887568,77.33810060160408,79.72036094165587,63.31256206328344,65.07477906147244,77.10827762931612,79.49042462343867,63.22679097472332,64.99104166071037,0.2298229722879625,229.93631821719876,0.085771088560115,83.73740076207525,169.7146,119.47407101995104,177319.84829329964,124827.94142778892,424.75148,280.66090809744395,443166.9400591364,292619.3834537764,404.83101,197.05171595186587,418976.502178433,202966.80007906025,3331.93759,1540.1782560424906,3444852.942712959,1572946.046504692,1088.61234,487.5376509031772,1123168.4550365163,495228.5517645466,1781.15964,755.5537859867668,1831437.7239815693,764571.21663558,0.3831,100000,0,771430,8059.993104240892,0,0.0,0,0.0,36647,382.3176019475296,0,0.0,36952,382.1399839098954,1497184,0,53778,0,0,0,0,0,93,0.961227027196456,0,0.0,1,0.010448119860831,0,0.0,0.05802,0.1514487079091621,0.3136849362288866,0.0182,0.336952945047713,0.6630470549522869,24.01083817376444,4.238224914339564,0.3192407247627264,0.245685936151855,0.2174288179465056,0.2176445211389128,11.114833598115688,5.848108992690857,19.411218354798528,12042.650689756323,53.01051482895849,13.700701437278257,16.933436553939586,11.304483823698838,11.071893014041816,0.5774374460742019,0.7963125548726954,0.7195945945945946,0.5873015873015873,0.1119920713577799,0.7371172516803585,0.9294117647058824,0.891566265060241,0.7358490566037735,0.1153846153846153,0.5125872004852896,0.7170868347338936,0.6525821596244131,0.5343203230148048,0.1109677419354838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002300784496564,0.0044735240413877,0.0066907628891099,0.0088928186678049,0.0111720474964642,0.0134346448833253,0.0154621300206025,0.0177821810493631,0.0200542005420054,0.0221471356166487,0.0242619386991253,0.0267078768213416,0.0288616757662687,0.0308322863674747,0.0329495749773046,0.0349392361111111,0.0367141555537149,0.0389048542883524,0.0409398066327061,0.0430026876679792,0.0578774777032813,0.0715713881939137,0.0850961134894652,0.0977903051082761,0.1101408926010292,0.1255805096848586,0.1376028015068711,0.1485453228829442,0.1592689574092876,0.1695402607156268,0.1828143519017347,0.1946321077476072,0.2061131853658005,0.2155809194471498,0.225780888859539,0.235721173562696,0.2453955524778573,0.2534302855663489,0.261254713124063,0.2690327979731976,0.2758393070143947,0.2830429488080183,0.2893334280841387,0.2940774487471526,0.298941380944857,0.3035782613525556,0.3086342386604334,0.3132224558720448,0.3169511515481421,0.3206742700248165,0.3186144505324376,0.3167127584925909,0.3161496543081234,0.3136145082807514,0.3123960560703255,0.3102677203945353,0.3085453049860794,0.3078323031266908,0.30786167815935,0.3085825353519142,0.3087637840975044,0.310337340360435,0.3112079257692227,0.3112508672590139,0.3107630965820382,0.3116772053488131,0.3117950461939579,0.3141264522594181,0.3159016278907287,0.3192714082952215,0.3222857657495384,0.324515824279641,0.3266815864727092,0.3281766296185041,0.3313565604151223,0.3355186139077499,0.3393420459666516,0.3428116921853251,0.3485175202156334,0.3393325834270716,0.0,2.099832296373535,59.068882034708565,171.32025047106933,242.84604917761,fqhc2_100Compliance_implementation,36 -100000,95648,45775,434.1230344596855,5767,59.02893944463031,4579,47.25660756105721,1808,18.494897959183675,77.27782633283482,79.68790064765753,63.2892740309558,65.07186103705544,77.0525138227146,79.46419513761138,63.20605040789727,64.99195215452819,0.2253125101202187,223.7055100461447,0.0832236230585223,79.90888252724915,169.4297,119.24126965211316,177138.54968216797,124666.55095152346,420.90144,278.1157960511856,439416.3077116092,290135.8294089596,403.53759,197.42430581231412,418040.63859150215,203506.9616909705,3287.04551,1502.9074833784855,3394960.448728672,1529829.5774941547,1092.19742,486.5611332836976,1124524.7469889596,491391.40618111246,1773.59348,737.1958828462758,1816130.5202408836,738879.2182827782,0.38136,100000,0,770135,8051.752258280361,0,0.0,0,0.0,36326,379.1192706590833,0,0.0,36856,381.4193710270994,1499988,0,53855,0,0,0,0,0,66,0.6900301104048177,0,0.0,1,0.0104550016728002,0,0.0,0.05767,0.151221942521502,0.3135078897173574,0.01808,0.3372438863185724,0.6627561136814276,24.161024969353083,4.332352211749054,0.3188469098056344,0.2376064642935138,0.2234112251583315,0.2201354007425202,11.507154926824766,6.151872592697474,19.176885700248825,12072.29020271559,52.01310650720895,13.178688626857571,16.50318467416463,11.389641026379788,10.941592179806957,0.5675911771129067,0.8033088235294118,0.6972602739726027,0.5747800586510264,0.1180555555555555,0.750994431185362,0.9263657957244656,0.8593350383631714,0.736,0.1743589743589743,0.4981938591210114,0.7256371814092953,0.6379794200187091,0.5226390685640362,0.1045510455104551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021988934600652,0.0044925361025474,0.0071163177877489,0.0093092269073244,0.0114654865456025,0.0134778578050345,0.015634880163182,0.0177617535007711,0.0199259425952824,0.0223210169942942,0.0245438414752971,0.0267785607165601,0.0289039348040829,0.0312187580520484,0.0332651923434305,0.035538087604075,0.0378115123568727,0.0399244084022968,0.0418635143291223,0.0434701006204056,0.0589587643948418,0.0732800603248745,0.0858813280011756,0.0991097173405173,0.1107370864770748,0.1262093786387212,0.1383576336161582,0.1494715758970425,0.1606472519598301,0.1707015942884749,0.1823795002209028,0.194917823347264,0.2064761904761904,0.2159263758029392,0.2258036107441655,0.2356004698269175,0.2448252763201965,0.2524079575119272,0.260022467575204,0.2684947811756089,0.2754578246392897,0.2819649910023604,0.2891587635692831,0.2942233725151875,0.2980953769161625,0.3030344130303441,0.3075459416153422,0.3118772191043408,0.3165370658372213,0.3198717187314407,0.3174900586371908,0.3157285247528847,0.3138295619768213,0.3124466252695876,0.3110651222344638,0.3095738640723065,0.3084650542753761,0.308316730607742,0.3094646680942184,0.3106169040291991,0.3118140372600889,0.3131631037212985,0.3140202986076161,0.314989494389557,0.3157426337943476,0.3169848670330529,0.3172832815129646,0.3207850809378056,0.3244438156545113,0.3293341331733653,0.3327526931010772,0.3355034953839585,0.3390226942284594,0.3415887133875172,0.3431919115562695,0.3455829542734019,0.3501469905616586,0.3534749432872757,0.3564633463905988,0.3621351766513057,0.0,2.3160921389956477,54.66341742370377,170.82706308109286,247.90605772939813,fqhc2_100Compliance_implementation,37 -100000,95835,45350,429.7907862471957,5885,60.38503678196901,4592,47.48786977617781,1869,19.24140449731309,77.39792083527668,79.70149745605978,63.37134666233783,65.07156506486993,77.16559613815267,79.46666173738716,63.28526865661244,64.98610225249301,0.2323246971240138,234.83571867262756,0.0860780057253904,85.46281237691744,170.9565,120.17868270379527,178386.28893410548,125401.66192288336,421.85999,278.50967812478814,439758.9398445244,290178.60711095965,395.63991,192.87748388860996,410017.50926070847,199148.05848925165,3294.17774,1523.5790874726638,3410118.0049042627,1562568.9335552405,1086.7305,483.4975167858179,1124980.2577346482,495530.9706292138,1817.59086,767.7492859060554,1873033.338550634,783211.5993631543,0.37957,100000,0,777075,8108.467678822977,0,0.0,0,0.0,36518,380.6020764856264,0,0.0,36114,373.9761047633954,1499692,0,53765,0,0,0,0,0,76,0.7930296864402359,0,0.0,2,0.020869202274743,0,0.0,0.05885,0.155043865426667,0.3175870858113849,0.01869,0.3317144244779019,0.6682855755220981,24.27623866440593,4.274922786677685,0.3227351916376306,0.2332317073170731,0.228876306620209,0.2151567944250871,11.335006617050006,6.065552456966939,20.026247834772047,11968.716167961147,52.50199891011455,12.895550849545836,16.8909469155186,11.78792706001958,10.92757408503054,0.5601045296167247,0.7796451914098973,0.6842105263157895,0.582302568981922,0.1123481781376518,0.7245827010622155,0.9266503667481664,0.852112676056338,0.7351778656126482,0.117391304347826,0.4938912645082468,0.6888217522658611,0.6164772727272727,0.5338345864661654,0.1108179419525065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022677573499635,0.0045496458571877,0.0065419138901567,0.0089152442553537,0.0112129960962914,0.0131485213001974,0.0153858694544639,0.0174955368528436,0.0197909535827041,0.0218639056281396,0.0240458992879463,0.0264173010238627,0.0286333655248936,0.0306454268543673,0.0328073303717751,0.034619117434489,0.0365910431085317,0.0387007172173624,0.0407152425158094,0.0427212555157772,0.0572361421150355,0.0713815066988798,0.084729590873823,0.0973402018502943,0.1097854041064125,0.1247674418604651,0.1368133091579985,0.1472632262321601,0.1573072116052257,0.1676676891396211,0.1805210049645161,0.1933917369673372,0.2049570605500598,0.2146855593457535,0.2243933012986156,0.234766628288017,0.2435439989295749,0.252194930020797,0.2599306216841246,0.266578947368421,0.2726410950035837,0.2795920036453282,0.2858257754023341,0.2909545693905883,0.2960861341481158,0.3020026078185352,0.3065299649087753,0.3101473930099405,0.3147334126286394,0.3179789628888508,0.3171402875283568,0.3162422479556556,0.3148340686205637,0.3128134186408438,0.3114163777007201,0.3095154521175124,0.306143382410958,0.306958243988673,0.3077526251193236,0.3083382360806546,0.3086315868207487,0.3094181021724975,0.3108600125549278,0.3117743126244435,0.3139568483914467,0.3140153292663851,0.3120372752479776,0.3155070084606642,0.3162299982416036,0.320317775571003,0.3243243243243243,0.3258954785672343,0.3278947701258458,0.3296375592598257,0.3292602064980581,0.3286088613625536,0.3347139131768676,0.3292313899536009,0.3282401091405184,0.3262438283327003,0.0,1.664285160640712,58.413305337065935,170.3397703599831,241.96754959237384,fqhc2_100Compliance_implementation,38 -100000,95552,45493,432.6021433355659,5741,59.02545210984594,4515,46.65522438044206,1749,17.94834226389819,77.19945181010942,79.67170371077421,63.224607941291474,65.05418627206794,76.98116604607898,79.45358953605412,63.14422425174504,64.97602537897289,0.2182857640304405,218.11417472008543,0.0803836895464371,78.16089309504548,169.3351,119.17896242602912,177217.0545880777,124726.1608757212,420.81714,278.3168357152654,439816.60247823177,290683.66139641806,398.59544,194.63798170075475,412881.038596785,200359.6851674637,3184.9457,1457.8737601497269,3294001.088412592,1486637.0520729625,1059.45947,467.0976519713831,1094839.8463663764,474903.24846301903,1707.3372,712.7244004538575,1753506.3630274616,718256.4364916853,0.37963,100000,0,769705,8055.32066309444,0,0.0,0,0.0,36368,379.9920462156731,0,0.0,36350,376.18260214333554,1496183,0,53692,0,0,0,0,0,77,0.8058439383791024,0,0.0,0,0.0,0,0.0,0.05741,0.1512261939256644,0.3046507577077164,0.01749,0.3374937593609585,0.6625062406390414,24.137846652518306,4.333901549081215,0.3207087486157253,0.2449612403100775,0.2239202657807309,0.2104097452934662,11.25036625336528,5.822807991246339,18.53340807791372,11996.282888566711,51.46036287766743,13.305870680054277,16.566436346230226,11.20371771386233,10.3843381375206,0.582281284606866,0.8128390596745028,0.7182320441988951,0.5727002967359051,0.1168421052631579,0.7536348949919225,0.928400954653938,0.8817480719794345,0.7468354430379747,0.1243523316062176,0.5175465364662801,0.74235807860262,0.6581680830972616,0.5193798449612403,0.1149273447820343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0045555082080314,0.0068648956048419,0.0090491296567431,0.0113715030337581,0.0137413606801361,0.0159412154921671,0.017913345595749,0.0201289398280802,0.0221564066038799,0.0239485921348429,0.0263128129723504,0.0282180410088464,0.0304099358379237,0.0324387446133495,0.0346662250147504,0.0367643246046149,0.0387337483501522,0.0405712261989083,0.0426558095834638,0.0568398150666304,0.0707252880915182,0.0841961423240658,0.0969370014856649,0.1090278805301316,0.1242552740379518,0.1359168563708699,0.1475418583060325,0.1592569579842735,0.1690826970642004,0.1812516874561261,0.1932886197390983,0.2048610732324609,0.2141540891540891,0.2241179521702184,0.2349772298122848,0.2446374022311987,0.252713773103744,0.2606360584855208,0.2675815342214056,0.2742758412764674,0.2811888152881177,0.286781622826783,0.2914640442827468,0.2964644865957291,0.3009980976851051,0.3053690011423406,0.3101068850284431,0.3138955239381036,0.3183693984445267,0.3172878335875596,0.3151719859378231,0.313613473826753,0.3128445544124669,0.3117519204430417,0.3095062751235079,0.3065956198360214,0.3073771840347471,0.3083803094426263,0.3094022605549286,0.3099960519636781,0.310673644978391,0.3110657290833298,0.3127103055318767,0.3148796446075472,0.3160869906571406,0.3174625883430141,0.3209413692070193,0.3251665667853491,0.3298412698412698,0.3325325234576855,0.334654826091553,0.3389226052680973,0.342928755886374,0.342987947304494,0.3443011007219789,0.3475102164371121,0.3414245921209709,0.3514986376021798,0.3447085889570552,0.0,2.290937546791896,54.16104405577137,167.70008792817305,246.77257223625412,fqhc2_100Compliance_implementation,39 -100000,95671,45619,432.492604864588,5850,59.99728235306414,4513,46.461310114872845,1775,18.07235212342298,77.33990302576841,79.7307119023196,63.32261558699434,65.08895307968976,77.11702149443688,79.51245988374656,63.23898969468147,65.01048812928347,0.2228815313315237,218.2520185730397,0.0836258923128667,78.46495040628554,169.53068,119.30626939850876,177201.5135202935,124704.52111978416,419.33848,277.0088703947758,437589.47852536297,288820.18520426867,391.19016,190.26752355537053,404585.2034576832,195552.99626971903,3242.82254,1478.714507269854,3340704.706755443,1496885.1536338294,1076.91314,474.88548076135686,1107957.8451150295,478790.1251611745,1738.54882,731.0614388819317,1773363.1507980474,726112.5081438485,0.38075,100000,0,770594,8054.614250922432,0,0.0,0,0.0,36289,378.568218164334,0,0.0,35636,368.2307073198775,1505268,0,53950,0,0,0,0,0,69,0.7107691986077285,0,0.0,0,0.0,0,0.0,0.0585,0.1536441234405778,0.3034188034188034,0.01775,0.3338754268986827,0.6661245731013173,24.71237535900564,4.325944104154716,0.3212940394416131,0.2342122756481276,0.2264569022822956,0.2180367826279636,11.081299568399562,5.749985304743681,18.88434519186486,12035.303823214035,51.18463320599223,12.619785047222145,16.364496750996697,11.415957869635404,10.78439353813798,0.5597163749169067,0.7918637653736992,0.7,0.5547945205479452,0.1087398373983739,0.7120462046204621,0.898989898989899,0.8469656992084432,0.6735537190082644,0.1179487179487179,0.5037867312935475,0.7276853252647504,0.6479925303454716,0.517948717948718,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.004642440829152,0.0068898336901705,0.0091313533498557,0.0110938246748624,0.0134774730755919,0.0158804582704774,0.0179125500122478,0.0200259652637927,0.0220375241819093,0.0242557204953661,0.0263095763573092,0.0286384155809433,0.03100375959211,0.0331193493786896,0.0353092010711663,0.0371728725057499,0.039225659123936,0.0412267104975709,0.0433246114232697,0.0577911495549705,0.0727133763296758,0.0857823336236111,0.0979989900265118,0.1099986284460293,0.124783105505946,0.1367836946027097,0.1481520906071702,0.1590544957381812,0.1688934162556294,0.1816742593131078,0.193685212837326,0.2050610061114856,0.2149166921764989,0.2252107498954504,0.2353077996588618,0.2445555158871831,0.2534563248776647,0.2611240288096183,0.2682667094159004,0.2755617750124325,0.2816609967383299,0.2880513857837397,0.2927319976527789,0.2981687559918935,0.3029642492087536,0.3075595573063215,0.3119517962016627,0.3164742129246065,0.3193139841688654,0.3171083104432595,0.3159487264124993,0.3152060621425955,0.3131694202332943,0.3119631445980086,0.3104688169410612,0.3084525974539416,0.3088165340769294,0.3104741129554518,0.3101987037960259,0.3105832663664056,0.3112881910885816,0.3119252633338906,0.3125083821359917,0.3129960078880284,0.3154000468957611,0.316099811997949,0.3197961559029853,0.3209308856049703,0.326068900051418,0.3278012061850995,0.3311296805584937,0.3301165559593934,0.3308373042886317,0.3347960041079264,0.3334510773578241,0.3385297264251872,0.3476044852191641,0.3430474604496253,0.3353846153846154,0.0,2.6901753425554977,52.555023915132416,167.3574526493661,248.56959044758,fqhc2_100Compliance_implementation,40 -100000,95780,45904,433.7961996241386,5889,60.06473167675924,4642,47.83879724368344,1812,18.521612027563165,77.331780499572,79.67295156572541,63.32970022966426,65.0629237750311,77.09784626209766,79.44171229824843,63.241347953356765,64.97841068252788,0.2339342374743438,231.23926747697965,0.0883522763074964,84.51309250321515,170.25866,119.81400537968084,177760.13781582794,125092.92689463442,425.34347,281.7420871407854,443451.0858216747,293522.7261858272,406.3596,198.6224814143892,420253.8108164544,204309.3015687453,3287.50102,1528.1677311987576,3390368.845270412,1553520.5587792408,1085.71026,488.5281855588029,1119977.5944873667,496484.0943399479,1763.08934,757.1182989345859,1803627.187304239,758082.8961384381,0.38108,100000,0,773903,8080.006264355815,0,0.0,0,0.0,36810,383.68135310085614,0,0.0,37095,383.28461056588014,1494562,0,53665,0,0,0,0,0,64,0.668197953643767,0,0.0,2,0.0208811860513677,0,0.0,0.05889,0.1545344809488821,0.3076923076923077,0.01812,0.3398576512455516,0.6601423487544484,24.15284264756586,4.256864146078181,0.3237828522188711,0.2464454976303317,0.2188711762171477,0.2109004739336493,11.18143675812922,5.908758157208559,19.474849258319924,12096.134628876349,53.02508062525416,13.695478522390392,17.110257925804714,11.39498220559278,10.824361971466278,0.5672124084446359,0.7972027972027972,0.6939454424484365,0.5541338582677166,0.1174668028600612,0.7254601226993865,0.9176755447941888,0.8498789346246973,0.7449392712550608,0.1385281385281385,0.5053924505692031,0.7291381668946648,0.634862385321101,0.4928478543563069,0.1109625668449197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424158014687,0.0049470824378573,0.0072046840593828,0.0094985574383355,0.0120010170353419,0.0143891485656676,0.0166595297812034,0.0188349871370819,0.021089325509599,0.0234119875108767,0.0255979169015961,0.0278562114320331,0.0301481702363937,0.0321590440873506,0.0341101432522808,0.0362965336862019,0.0384643267707157,0.0406052937271822,0.0425755229712456,0.0445046076951111,0.0597123953832988,0.0737157023755975,0.0872523325296152,0.1001355597356059,0.1124317717224083,0.1274754306245376,0.1383901125691632,0.1493667386241585,0.1602433427610865,0.1702597291273787,0.182631442966025,0.1949264387710947,0.206107866488303,0.2159850365881671,0.2253956723678707,0.2349056499240988,0.2442086234600964,0.2534305124398254,0.2619331133263022,0.2687014860440089,0.2750095401089307,0.2814052726953878,0.288104705102717,0.2934372190590351,0.2980049572317262,0.3031659698326365,0.3076383495753689,0.3124545906466291,0.3164031594920948,0.3205163779548367,0.3181469054452844,0.3162441366218688,0.3149955634427684,0.3136367579446549,0.312330925413954,0.3103141626163352,0.3076691347846078,0.3077846280312371,0.3081926803382519,0.3087888531618435,0.3094460707047962,0.3099582847314209,0.3105989042131116,0.3101950334758951,0.3117299578059072,0.3126208013373034,0.3152580083863422,0.3198014202224596,0.3253687418981887,0.3289823447728625,0.3324669402644779,0.3360476874767151,0.340960953346856,0.3447247706422018,0.3506321947537271,0.3517462580185317,0.3562528841716659,0.3592115848753017,0.3596370635138851,0.3703271028037383,0.0,2.477356769686681,56.68364909673608,175.48925823954855,246.01607702185325,fqhc2_100Compliance_implementation,41 -100000,95678,45633,431.7293421685236,5729,58.728234285833736,4518,46.531072973933405,1777,18.14419197725705,77.34192318165195,79.7166056510159,63.32298576779221,65.0747211388857,77.12217150502319,79.50140267964687,63.24098824320181,64.99737711100467,0.2197516766287606,215.202971369024,0.0819975245903918,77.34402788103978,171.04516,120.2712096585419,178771.4417107381,125703.9263577226,424.03446,280.16766001367296,442500.21948619327,292135.18155236624,398.38922,194.3075589841497,411717.92888647335,199583.96925233584,3218.00734,1473.348677165487,3318699.283011769,1495300.6391902894,1109.82748,491.15099983151066,1142784.109199607,496277.7171357655,1742.09906,730.1882552986937,1781407.1991471394,728719.9267811902,0.38071,100000,0,777478,8125.974623215368,0,0.0,0,0.0,36723,383.09747277326034,0,0.0,36311,374.9764836221493,1492013,0,53543,0,0,0,0,0,78,0.8047827086686595,0,0.0,1,0.0104517234892033,0,0.0,0.05729,0.1504819941687898,0.3101762960377029,0.01777,0.3344420422418094,0.6655579577581906,24.227747638722303,4.266262267801437,0.3202744577246569,0.2419212040725984,0.2131474103585657,0.2246569278441788,11.474870694647349,6.159093097639238,18.84397133363667,12037.525929873304,51.3477450759144,13.196908707893368,16.389404160781748,10.85632893870434,10.905103268534944,0.580787959274015,0.8106129917657823,0.710435383552177,0.616822429906542,0.1142857142857142,0.7680577849117175,0.9431818181818182,0.8831168831168831,0.7489361702127659,0.1397849462365591,0.5094743276283619,0.7212863705972435,0.647834274952919,0.5741758241758241,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023895588428865,0.0046624299368544,0.0071111922659443,0.009466349767404,0.0118169892101329,0.0139174523019282,0.0161898741920355,0.0181961136695495,0.0203996073459037,0.02282291506681,0.0249364285128373,0.0268840944332056,0.0291591668809462,0.0313639829373338,0.0337025300122836,0.0359336545819287,0.0379527868988305,0.0401590168358556,0.0424089268815191,0.0441424730622538,0.0578188655593857,0.0719805650380112,0.0848640705363703,0.0974724303392541,0.1094755724385354,0.1241255966050395,0.1352961161956129,0.1463783553472518,0.1576663246109115,0.1680711057676825,0.1813221768150009,0.1930483947835882,0.2046416946975387,0.2138831434606082,0.2234526181381883,0.2337702629333747,0.2429191832360197,0.2522065114603503,0.2600651155403796,0.2674278777328584,0.2744229100376049,0.2815662326419354,0.2886766324610304,0.293597889941254,0.2983914078825873,0.3033025261860751,0.3082267230803895,0.3120706325377843,0.316241642046338,0.3208588633002324,0.3189799331103679,0.3174642566626683,0.316558533145275,0.3150063561770484,0.3131684739879248,0.3107849881525644,0.3084568466959517,0.3090351265770865,0.3093778286338872,0.3100554179511395,0.3107003199431212,0.3116895951929159,0.3133165829145728,0.314189869171419,0.3145360700996279,0.3142352084849745,0.315554924780017,0.3188950483886122,0.3225356045797263,0.3273595705206647,0.3295413506681112,0.3315246022547676,0.3316809939135345,0.3332329468453546,0.3373583503622515,0.3378346915017462,0.3370786516853932,0.3312165112125422,0.3354978354978355,0.3293856402664692,0.0,2.683366050789678,53.88381277126784,167.58315705380022,244.6857051131101,fqhc2_100Compliance_implementation,42 -100000,95741,45802,434.4220344471021,5794,59.35805976540876,4552,46.99136211236566,1830,18.74849855338883,77.32392886815877,79.6871184830296,63.31606620966248,65.06469384661216,77.09230804330824,79.45763214158053,63.22965430253876,64.98162250923329,0.2316208248505376,229.48634144906063,0.0864119071237254,83.0713373788683,170.77258,120.1530988337572,178369.32975423278,125498.06126294608,422.60945,280.1505689655332,440878.4219926677,292083.6430227726,403.60974,196.77058230926093,418231.89647068654,203009.6610164116,3229.11859,1486.63329939732,3336565.9957593926,1516669.5748987352,1065.40891,475.925540549711,1097836.266594249,482216.5789246249,1776.9868,748.8666773430203,1822047.2524832624,752536.4410122971,0.38164,100000,0,776239,8107.69680701058,0,0.0,0,0.0,36497,380.6415224407516,0,0.0,36784,380.8399745145758,1491464,0,53616,0,0,0,0,0,81,0.8460325252504152,0,0.0,0,0.0,0,0.0,0.05794,0.1518184676658631,0.3158439765274421,0.0183,0.3417533432392273,0.6582466567607727,23.938060468768825,4.215593125021721,0.3198594024604569,0.242750439367311,0.2295694200351493,0.2078207381370826,11.417539891236778,6.220057796148065,19.5861409428873,12031.768968004646,52.18849214978301,13.545622159110868,16.422682761456254,11.763033024205544,10.45715420501034,0.5645869947275922,0.7927601809954751,0.695054945054945,0.5435406698564593,0.120507399577167,0.7334384858044164,0.9131403118040088,0.889196675900277,0.669260700389105,0.1343283582089552,0.4993909866017052,0.7103658536585366,0.6310502283105023,0.5025380710659898,0.1167785234899328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397854690206,0.0043293554634032,0.0067387906712403,0.0091954723729399,0.011453798266672,0.0137678207739307,0.0160675325734559,0.0182306286810864,0.0202537598789477,0.0223612405164381,0.0242987204724409,0.0265305912913128,0.0287250557743119,0.0308189899364461,0.0328665627870019,0.0348448983388979,0.0368325651250712,0.0391293968675724,0.0409608485415691,0.0431842807134522,0.0584446091686416,0.0725943129747034,0.0858700781209039,0.098391167192429,0.1109400537776137,0.1264980590021049,0.1381311604120911,0.1495283320201869,0.1594351513597812,0.169573840793353,0.1821039486715756,0.194093283299629,0.2053052128064358,0.2153454251260017,0.2246929057657836,0.2343000786241874,0.2433602642503236,0.2523012175635226,0.2606439746588251,0.2677957161858459,0.2751787514630387,0.2824115303491915,0.2886733617102002,0.2929964592210286,0.2979992211079739,0.3028467072222702,0.3069970918572001,0.3114747830076855,0.3158857409713574,0.3194007351968899,0.3175789629909467,0.3160251905135943,0.3145284190325675,0.3134762656166307,0.3120071417943758,0.3107905295721155,0.3077580341461099,0.3079938332349275,0.30859328313613,0.3084772370486656,0.3087783686615235,0.3095548703352309,0.3109004540983949,0.3109924959799893,0.3118481134342706,0.3120147970614286,0.314176027299872,0.3170654911838791,0.3221103049940128,0.3247836099420313,0.3281883167144743,0.3302436440677966,0.3318047616056285,0.3321686289403722,0.33528467566802,0.338488994646044,0.3328781671976938,0.3365612648221344,0.3360699152542373,0.3334590720482837,0.0,2.1377737521328943,55.64638421655717,176.70519667464805,238.59404977724637,fqhc2_100Compliance_implementation,43 -100000,95790,45814,433.7613529595991,5761,58.93099488464349,4505,46.39315168597975,1759,17.914187284685248,77.4066300966336,79.74490212514095,63.35719594835807,65.08736069886838,77.18170854680294,79.52515855693018,63.27310656042097,65.00848205960123,0.2249215498306682,219.7435682107738,0.084089387937098,78.87863926714545,170.16516,119.68068997078606,177643.9711869715,124940.6931525066,423.11767,280.68246294631945,441088.06764798,292392.789379183,395.88988,193.0300432117228,409603.2571249609,198729.4884927084,3231.82466,1476.9599241651822,3329206.649963462,1497215.0685511872,1072.49071,477.1026384028113,1103797.8285833595,482242.2678805834,1720.66912,728.7423104891774,1754208.518634513,723347.466794456,0.3814,100000,0,773478,8074.725963044159,0,0.0,0,0.0,36602,381.4490030274559,0,0.0,36121,373.5358596930786,1498459,0,53792,0,0,0,0,0,69,0.6994467063367783,0,0.0,0,0.0,0,0.0,0.05761,0.1510487676979549,0.30532893594862,0.01759,0.3388852242744063,0.6611147757255936,24.51070080602692,4.386465329037541,0.3152053274139844,0.2388457269700332,0.220865704772475,0.2250832408435072,11.396351062964854,6.003452619494359,18.647644250558635,12039.055296741952,50.83173537802998,12.848956791530044,15.91328845033391,11.045972427408968,11.023517708757057,0.5596004439511654,0.7788104089219331,0.6774647887323944,0.5969849246231156,0.1252465483234714,0.724709784411277,0.9077306733167082,0.8370786516853933,0.7405857740585774,0.1666666666666666,0.4992421946044256,0.7022222222222222,0.6240601503759399,0.5515873015873016,0.1144278606965174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000385028471,0.0050293038064529,0.0072761591621761,0.0095302927161334,0.0116150161206659,0.01381845583593,0.0157419302216512,0.0180166385954167,0.0201561797293429,0.022534692373818,0.0246377108655994,0.0268018387785256,0.02910645645337,0.0313050102428428,0.0331096473595777,0.0352625329134183,0.0371807206480245,0.0394455847898654,0.0415268412795711,0.0435606454971369,0.0581833359419836,0.072569259247639,0.0855852078572776,0.0983415310884096,0.1103056612123191,0.1264701841891135,0.1384687138935117,0.1496884370813041,0.1607956546329594,0.1698446705945367,0.1825655593935285,0.1947099788053116,0.2058315311301172,0.2155931240853592,0.2248442701295277,0.2352036469455724,0.244605038642979,0.2534343593317895,0.2607512248230811,0.267537433032648,0.2740560855738653,0.2799817708029026,0.2863242303461816,0.291727036509286,0.2966012167134166,0.302196651430965,0.3065755550549423,0.3106605957316918,0.3144784370589987,0.3181302443400707,0.3163133367454139,0.3157873019366197,0.3146220901575856,0.314272921601479,0.3126687835712378,0.3112652599734144,0.3088362850699427,0.3088461161399954,0.309466040008823,0.3098651450443905,0.3097496878086966,0.3103922377388879,0.3116961498439126,0.3123416173920775,0.3137306442362837,0.3142797970384177,0.3136705709274033,0.316846504085324,0.3194691190302017,0.3220539051741097,0.3276624548736462,0.3315642898428879,0.336631199054197,0.3393916635373639,0.341747572815534,0.3453421942404104,0.3474021026969374,0.3524132429198245,0.3541153951326223,0.3505154639175257,0.0,2.4672931749419105,52.2767014460555,167.37771302040375,245.80381291234707,fqhc2_100Compliance_implementation,44 -100000,95703,45897,435.1274254725557,5718,58.78603596543473,4484,46.4248769631046,1737,17.857329446307848,77.29491858535671,79.69809745894027,63.29396199958445,65.07459671238485,77.08074304211314,79.4853777157483,63.21466721133378,64.99834351841027,0.2141755432435701,212.7197431919683,0.0792947882506709,76.25319397457986,170.6485,120.05250621625656,178310.50228310502,125442.78258388612,423.39046,279.90342523638486,441970.72192094295,292041.3353079386,399.65738,194.64542671545863,415650.9931768074,201889.07606226584,3222.39826,1476.4863151261968,3335661.379476088,1511368.385466561,1066.10416,474.33406464346393,1103998.0251402778,485684.3643689661,1704.09714,713.4080611116275,1753075.0969144125,720408.2619944896,0.38198,100000,0,775675,8105.022831050228,0,0.0,0,0.0,36630,382.28686666039727,0,0.0,36417,378.55657607389526,1494931,0,53699,0,0,0,0,0,76,0.7941234862021044,0,0.0,0,0.0,0,0.0,0.05718,0.1496937012409026,0.3037775445960126,0.01737,0.3475201072386059,0.6524798927613941,24.2630803053517,4.352026191708015,0.3189116859946476,0.2450936663693131,0.2107493309545049,0.2252453166815343,11.197832529121923,5.763121250022503,18.5384320789434,12012.871671280524,50.95837157701839,13.156923761493598,16.202997668797625,10.416137695347702,11.182312451379468,0.5539696699375558,0.7797998180163785,0.6951048951048951,0.5576719576719577,0.1049504950495049,0.7374485596707819,0.9201995012468828,0.8768844221105527,0.7235023041474654,0.1055276381909547,0.4857754665035179,0.6991404011461319,0.625,0.5082417582417582,0.1048088779284833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023923687491763,0.004728708129116,0.0067942923881582,0.0088861776218799,0.0112279487362195,0.0134946439309775,0.0160210620841667,0.0179910504484992,0.0200106396038793,0.0220653766172568,0.0243522146769792,0.0264120318053871,0.0287099064612724,0.031258373698856,0.0332789694254629,0.0352548192272689,0.0373479243093121,0.0395265534963401,0.0416649327951396,0.0436105899520533,0.0573992249276633,0.0716125384760349,0.0850228770515888,0.0977893751117938,0.1097595712582683,0.1252711209860868,0.1376700842726443,0.1481438107506733,0.1577007318767028,0.1675535909705383,0.1805099259993321,0.1919407183037646,0.2034287080923598,0.2133435331402655,0.2231238660729012,0.2331078462849994,0.2422717790247548,0.2511054354796971,0.259131007391092,0.2676387312722812,0.2752795980271841,0.2811702750146284,0.2872970029828133,0.2930215827338129,0.2983161628924093,0.3030471255859857,0.3078107976105496,0.3121159302281199,0.3157574738367204,0.3194226586700059,0.3174513521873024,0.3156738046509072,0.3150430525071754,0.3138324744872183,0.3125296912114014,0.3099154567175151,0.3077118133696789,0.307808547682402,0.308842375053396,0.3097390993566833,0.3107674405510407,0.3114939114939115,0.3127464138914521,0.3151135473766641,0.3158986731001206,0.3175329428989751,0.317813071297989,0.3209347737079147,0.325008768853034,0.3271435940165853,0.3297124600638977,0.3318307170131523,0.3334797064174142,0.3352298588984979,0.3380506091846298,0.3348351908940005,0.3364118092354277,0.3363599677158999,0.3363119415109667,0.3314585676790401,0.0,1.6137893091614173,53.64299291200891,168.10334980169776,244.57949605094856,fqhc2_100Compliance_implementation,45 -100000,95714,45334,429.9997910441524,5845,59.79271579915164,4626,47.68372442902815,1862,18.95229537998621,77.3593554540744,79.72932032100981,63.33143217950936,65.08334338401241,77.12793777672039,79.50208181064443,63.24442038057835,65.00048186279108,0.2314176773540168,227.23851036538176,0.0870117989310159,82.86152122133217,170.15856,119.67541080326995,177778.13068098712,125034.3845239672,422.04236,278.6413030578886,440294.9307311365,290472.4837096857,402.74182,196.2181561912631,416371.492153708,201563.76518930247,3293.27198,1524.9170158961588,3396375.201120004,1548834.648950162,1090.98024,489.6216914492928,1123505.5895689242,495218.6633609429,1814.95048,770.9728975622824,1850902.940008776,770430.5620557363,0.37847,100000,0,773448,8080.82412186305,0,0.0,0,0.0,36539,381.0832271141108,0,0.0,36692,378.9936686378168,1499622,0,53784,0,0,0,0,0,77,0.8044800133731742,0,0.0,1,0.0104477923814697,0,0.0,0.05845,0.1544376040373081,0.318562874251497,0.01862,0.3419069462647444,0.6580930537352556,24.32117988853189,4.245626391449898,0.3197146562905317,0.2392996108949416,0.2258971033290099,0.2150886294855166,11.509062679708071,6.276941004141443,19.84246375535823,11910.469915630694,53.01754952574466,13.495182879173983,16.965341713872096,11.60883320603945,10.94819172665913,0.5717682663207955,0.7985546522131888,0.6977687626774848,0.5856459330143541,0.1175879396984924,0.7362385321100917,0.9198218262806236,0.8379746835443038,0.7831325301204819,0.1116279069767441,0.5069318866787221,0.71580547112462,0.6466789667896679,0.5238693467336684,0.1192307692307692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181258355953,0.0045414457611483,0.0068292286929079,0.0089679267128435,0.0112361835616159,0.0136622313620491,0.0155971252357408,0.0177918869811975,0.0201386191245323,0.0223896641038503,0.0246628723786084,0.0266333877710329,0.0284168072760195,0.0308468988254687,0.032980073678888,0.0350534433211354,0.0370738474599082,0.0389578060822304,0.0408341476599372,0.0427686058017811,0.0574832666785009,0.071001705966697,0.0838359785584659,0.0970788029190939,0.1090888000759245,0.1241298322083747,0.1358542228259716,0.1472852533728025,0.1575054774755517,0.1670441007588035,0.1796980245503238,0.1915227629513343,0.2026766770034274,0.2117480956133438,0.2215881549376459,0.2310985415626906,0.2405839513895094,0.2498284145504461,0.2587388777919012,0.2666300038954194,0.2730439008585776,0.2794004162476907,0.2855082401343012,0.2910353081986834,0.2962320247557793,0.3013705377482791,0.3057220435691137,0.3098485907883195,0.3136161291992339,0.3172249245330275,0.3158177664292433,0.3142146693959418,0.3122928719878672,0.3106013728396483,0.3086512977686966,0.3063792787845506,0.3032514302825891,0.3033116479780313,0.3027991554859361,0.3040061167517203,0.3041836467641231,0.3051271938473673,0.3058273788320097,0.3074251658003226,0.3082838672466415,0.3096743968142422,0.3097481144158246,0.3131195518771438,0.3170174637197371,0.3192257347983023,0.3216368939117754,0.3255381344671804,0.3300786203398427,0.3316850513503233,0.3361722040243332,0.3377358490566037,0.3398872123151958,0.342410893071686,0.3491977155289638,0.3438569798402434,0.0,2.561524512545748,57.03069679646715,175.4976626576462,243.94462027421184,fqhc2_100Compliance_implementation,46 -100000,95888,45604,431.59728016018687,5880,60.14308359753045,4586,47.25304521942266,1832,18.761471717003168,77.4394230829848,79.7232255826636,63.39129033748679,65.07887140562849,77.20833275970398,79.49257677211362,63.30581544498473,64.99638114876238,0.2310903232808243,230.64881054997957,0.0854748925020558,82.49025686610878,171.68624,120.72149056362814,179048.72351076256,125898.4341769858,423.04397,279.19168450192444,440549.8185382947,290528.6631298227,396.14291,193.1958664251643,410174.3596696145,199117.0310363304,3301.00331,1502.363395685206,3403076.870932755,1527410.8712827594,1058.57681,469.66655660325534,1090505.235274487,476387.1115484385,1797.0087,751.4085999428144,1841893.7927582175,754686.3152828988,0.38045,100000,0,780392,8138.578341398297,0,0.0,0,0.0,36627,381.3824461872184,0,0.0,36114,373.6755381278157,1496001,0,53703,0,0,0,0,0,82,0.8343066911396629,0,0.0,1,0.0104288336392457,0,0.0,0.0588,0.1545538178472861,0.3115646258503401,0.01832,0.3328994467946632,0.6671005532053368,24.34445550302252,4.325596130927117,0.3111644134321849,0.2333187963366768,0.2317924116877453,0.2237243785433929,11.013183943169537,5.711163171685561,19.526339580184715,11990.270843587025,51.70452425955644,12.790704538511164,15.912916075068438,11.8003203080292,11.200583337947633,0.5617095508068033,0.7850467289719626,0.7147862648913805,0.5794920037629351,0.0974658869395711,0.7369687249398557,0.9301204819277108,0.868421052631579,0.7291666666666666,0.1320754716981132,0.4962563641808925,0.6931297709923664,0.6590257879656161,0.5358444714459295,0.0884520884520884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182830532496,0.0046110503060521,0.0067661469481329,0.0089756216430261,0.0112413225324483,0.0134103905089436,0.0154825566590272,0.0177172582619339,0.0198806750847942,0.0222797344435692,0.0244269803375103,0.0266362955438585,0.028762857994307,0.0308720134235096,0.0328669958864707,0.0348808392879269,0.0370684571534983,0.0391980105688529,0.0411527760475063,0.043121384877866,0.057698321692901,0.0713270637408568,0.08413182118061,0.0970065413004903,0.1092103462433283,0.1246898590508367,0.1363308971507255,0.1471757055423325,0.1579469139750559,0.1680631801984012,0.1807588949801139,0.1922295691257184,0.2035389578648939,0.2135653960033651,0.2226595569237535,0.2326070357542023,0.2415445478352928,0.2500673914996855,0.2590444691117504,0.2666201819761328,0.2735975426684219,0.2801952107973053,0.2866903073286052,0.292037305302477,0.2971050555319536,0.3014022430965073,0.3062046031329308,0.3095035497021806,0.3141243521976815,0.3180160850850982,0.3171256165248827,0.3157049522345448,0.3143222470457643,0.3131537562580254,0.311831783738897,0.3096253496583666,0.3076096404583168,0.3082176077557972,0.3092105263157895,0.3101907880686267,0.3114570291331078,0.3133598770055584,0.3144933893101072,0.3161336239491126,0.3171343283582089,0.3176345425294514,0.3201651443599242,0.323455174347948,0.3263582328200493,0.3291881468655306,0.3305635838150289,0.3317668180378076,0.3359404329871105,0.3402898990665554,0.3469579958560934,0.3511685846482382,0.3526234567901234,0.348475547370575,0.3493340732519422,0.3486517280668439,0.0,2.2735343133835286,54.31885488923377,165.2654384348191,253.07515041517115,fqhc2_100Compliance_implementation,47 -100000,95726,45901,435.6496667572029,5655,57.69592378246245,4412,45.4004136807137,1701,17.28892881766709,77.34647984393533,79.69845486716557,63.33814763576003,65.07493586631779,77.12798920599766,79.48608136239756,63.25509227244091,64.9974732413919,0.2184906379376627,212.37350476801,0.0830553633191186,77.46262492588585,171.7133,120.84962639736383,179379.7714309592,126245.12984702572,423.76726,280.5021190791578,442013.9251613982,292352.5298029353,398.96041,194.59627859960835,412686.29212544137,200109.79483848956,3107.86625,1428.4370490849471,3200740.488477529,1446339.3425871208,1035.61907,460.11160528497686,1065079.570858492,463892.74483760895,1661.17274,706.8001480573904,1691446.4408833543,700498.3447746186,0.38221,100000,0,780515,8153.625974134509,0,0.0,0,0.0,36717,382.8531433466352,0,0.0,36352,375.6659632701669,1488879,0,53442,0,0,0,0,0,58,0.6058959948185446,0,0.0,1,0.0104464826692852,0,0.0,0.05655,0.1479553125245284,0.3007957559681697,0.01701,0.3285424416638485,0.6714575583361515,24.454125828829326,4.272223641009845,0.3148232094288304,0.2531731640979148,0.2198549410698096,0.2121486854034451,11.172234813948627,5.850752238202427,18.05953709960193,12032.293436463622,50.11480124439098,13.262527137021442,15.81114646720692,10.840685032250782,10.20044260791184,0.5743427017225748,0.7914055505819159,0.7105831533477321,0.5742268041237113,0.1132478632478632,0.7333333333333333,0.946153846153846,0.8559782608695652,0.6853448275862069,0.1333333333333333,0.5159590951348001,0.7083906464924347,0.6581782566111655,0.5392953929539296,0.1079622132253711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875632975491,0.0045008058875406,0.00671801585127,0.0093049714552731,0.0115626334736713,0.0138153608079491,0.0159836901121304,0.0182079833433694,0.020474082857172,0.022472945440398,0.024415994423887,0.0264100590197587,0.0284994602374955,0.0303944793490575,0.032531313839995,0.0345226774713689,0.0367145356843336,0.0386059926958831,0.0409052163246637,0.0430077286836239,0.0579446863156575,0.0720236973769599,0.0855095424452581,0.0986833803053884,0.1109986398000822,0.1267988369019297,0.1387621735163692,0.1495689196381053,0.1598565007100225,0.1698181974101706,0.1820873666189312,0.1937437805563968,0.2042872827280336,0.2147392810693247,0.2238663222118397,0.2336458944525014,0.2421437651939246,0.2510628725677651,0.2589894588737221,0.2661184097495046,0.2730185907150542,0.2791875204640067,0.2855181393146712,0.2901586083703979,0.2955572289156626,0.3008200152675515,0.3059335601360816,0.3106923360775681,0.3155221559989634,0.3192174670644454,0.3186360330756592,0.3171412849085156,0.3162407602956705,0.3152633935664659,0.3142114642114642,0.3127037825095289,0.3110619469026549,0.3115600117959304,0.3113568113568113,0.3117737221073643,0.3125058442894279,0.3139723000434045,0.3150228444481703,0.315481246367741,0.3165229091083827,0.3172087923562888,0.3166015457890083,0.3197362223268959,0.3252767269160712,0.3281280885550504,0.3331666969641883,0.3374164810690423,0.3424657534246575,0.3429635824526724,0.3453142642077531,0.3488068384186157,0.351479109484599,0.3551912568306011,0.3560500695410292,0.363600782778865,0.0,2.676500109401686,51.0036664870452,168.35079211389797,238.86034366140373,fqhc2_100Compliance_implementation,48 -100000,95746,45852,434.6395671881854,5746,58.88496647379525,4470,46.15336410920561,1761,18.068639943183005,77.41222784566315,79.76786971774736,63.350809200748486,65.08966326012174,77.18472084225876,79.54263748831235,63.266311060813,65.00869228486168,0.2275070034043977,225.232229435008,0.0844981399354836,80.97097526005825,169.3912,119.17890201327552,176916.800701857,124473.60122325268,421.39276,279.28747553033287,439595.71157019614,291177.51337139186,402.08424,195.53175117045893,417053.6210389991,202011.91789603283,3193.06962,1464.3585951023626,3298502.10974871,1493088.2344425826,1071.7408,479.0827054619277,1107693.6895536105,488703.7635639368,1721.71252,725.9222710688888,1767305.7046769578,730184.1915359498,0.37995,100000,0,769960,8041.672759175319,0,0.0,0,0.0,36376,379.3578844024816,0,0.0,36653,379.83832222756047,1501603,0,53805,0,0,0,0,0,71,0.7415453387086667,0,0.0,0,0.0,0,0.0,0.05746,0.1512304250559284,0.3064740689175078,0.01761,0.344068079425997,0.655931920574003,24.607790539609887,4.32075777355608,0.3029082774049217,0.2590604026845637,0.2152125279642058,0.2228187919463087,11.499281685879614,6.176482205652611,18.667035599713447,12018.274372668053,50.63358548957351,13.84936671206943,15.156061639139162,10.723564885088988,10.904592253275949,0.5697986577181208,0.7927461139896373,0.6920236336779911,0.5997920997920998,0.1154618473895582,0.7226277372262774,0.9050925925925926,0.8724035608308606,0.7339055793991416,0.1515151515151515,0.5115848007414272,0.7258953168044077,0.632251720747296,0.5569272976680384,0.1045751633986928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.004652105609892,0.0069695248143489,0.0093833780160857,0.0115190272369584,0.0136509390746678,0.0155941048168457,0.0177853513193608,0.0199182422074604,0.0222110768789854,0.0244632334101972,0.0264538315454498,0.0285182634084156,0.0306372549019607,0.0328958230146937,0.0350313204192594,0.036885161023092,0.0389288345213268,0.0411615478987752,0.043325624518199,0.0576824697493292,0.0721475807801774,0.0860520739357573,0.0992299762260419,0.1112306913142567,0.1269034995819973,0.138276872134488,0.1492578632424029,0.1588565321934277,0.1687165947581943,0.1816133344833534,0.1940290426326789,0.2051424403731644,0.2152350506886207,0.2250641639954617,0.2349561938560496,0.2435075093867334,0.2523931797193504,0.2605817702892956,0.2675568800504327,0.2742566691367173,0.2816222414640425,0.2878692869227766,0.292562874251497,0.296676216373701,0.3017260483096545,0.3052417137429385,0.3103899236912606,0.314904498082213,0.3186511120171504,0.316664878205816,0.3154158215010142,0.3142452221255578,0.3127491473225207,0.3117201458927068,0.3098396567986126,0.307937905978201,0.3075844985495909,0.3078633000746623,0.3083863648449825,0.3093565294970447,0.3098574984808985,0.3113572945733205,0.3124667021843367,0.3133365200764818,0.3146978093117199,0.3154126934721711,0.3184953956609958,0.3212455106523937,0.3252713544124587,0.3272686230248307,0.3308008863564419,0.3309581848865554,0.3339121244149177,0.3357752225519287,0.3414977147544826,0.3436983626258074,0.3460241919492365,0.3379254457050243,0.3469233673084183,0.0,2.0293650660324283,54.20424671128971,162.82216932335464,242.88539984261104,fqhc2_100Compliance_implementation,49 -100000,95730,45876,435.5374490755249,5817,59.42755666980048,4495,46.380445001566905,1783,18.25968870782409,77.32373385663094,79.69618276907354,63.321321634088775,65.07641727858022,77.10206295892728,79.4749284037004,63.23882742092653,64.99632273227836,0.2216708977036603,221.2543653731416,0.0824942131622421,80.09454630186497,170.66126,120.09073845308583,178273.08053901597,125446.97545081582,424.41549,281.277508428112,442787.77812597936,293269.1286360489,401.05822,195.7951571659934,415691.6953932936,201919.8648988732,3206.49745,1485.875167235801,3311120.7458476964,1514139.7612170507,1083.27354,484.7464879168129,1117166.9591559593,491942.8370592429,1745.34332,734.8346506907435,1789157.2756711585,738763.1338618143,0.38127,100000,0,775733,8103.321842682544,0,0.0,0,0.0,36759,383.3907865872767,0,0.0,36609,379.1287997492949,1493734,0,53613,0,0,0,0,0,64,0.668546954977541,0,0.0,0,0.0,0,0.0,0.05817,0.1525690455582658,0.3065153859377686,0.01783,0.3383076418497868,0.6616923581502132,24.125754809571685,4.382780334605396,0.3163515016685205,0.2433815350389321,0.2204671857619577,0.2197997775305895,11.472089196841344,5.978285255009393,19.00980051689922,12021.145750025367,51.34745790249104,13.228154336984824,16.155757739318645,11.003789708028483,10.959756118159095,0.5733036707452726,0.8025594149908593,0.689873417721519,0.6004036326942482,0.124493927125506,0.731974921630094,0.923963133640553,0.862796833773087,0.7427385892116183,0.1216216216216216,0.5104069586828207,0.7227272727272728,0.6270373921380633,0.5546666666666666,0.1253263707571801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100303951367,0.004512864198282,0.0067194478278522,0.0089730300997906,0.0111712518313527,0.013283215679084,0.0154815812018112,0.0177198124865952,0.0200014315953084,0.0223360131087101,0.0244177579965337,0.0266406490705556,0.028599351885191,0.0307495723501164,0.0328337565285605,0.034684172438747,0.0367984423062981,0.0386889940239043,0.0408825303083865,0.0427516072228647,0.0575607922570136,0.0716087370613415,0.0848570679255179,0.0981949382534239,0.1106014109905406,0.1265133491937615,0.1381256497846428,0.1490178970441148,0.1590537726277567,0.1681141705266769,0.181016569589044,0.1924628714209997,0.2044055928849457,0.2147831505756048,0.224320756792432,0.2343561407199884,0.2430790157317902,0.2515530392388141,0.2602455531748461,0.2676924836975174,0.2748827213273866,0.2815905984603343,0.2876054939599536,0.2930792905644108,0.2983090761219213,0.3029269013772204,0.3061405813968039,0.3105094325211945,0.3153618906942393,0.3195926605020512,0.318418006084592,0.3171275585348732,0.3167528569616864,0.3151574774670505,0.3138316061790987,0.3118434351168417,0.3096641643619123,0.3096712876478877,0.3093818157033806,0.3100345650857,0.3104480964324486,0.3116662384632107,0.3132633788037775,0.3139758928171349,0.3142285824419389,0.3139027512868079,0.3131148478609014,0.3184445778184919,0.3195810853697239,0.3214185870042733,0.3240087904038092,0.3277513241667112,0.3310952049154367,0.3310360670801746,0.3319236913823888,0.3373379326751516,0.3364770307271068,0.3331314354936402,0.3346028291621327,0.3369024856596558,0.0,2.244414412251069,55.7533627048105,166.39079461345142,240.1194221261584,fqhc2_100Compliance_implementation,50 -100000,95785,45741,434.7966800647283,5784,59.28903272955056,4573,47.19945711750274,1786,18.29096413843504,77.38153749659537,79.72367741042534,63.350937847410606,65.08308561406874,77.15987133652011,79.50379350733996,63.26920453837271,65.00425519817445,0.2216661600752587,219.88390308537475,0.0817333090378937,78.83041589428785,169.90468,119.58573207912688,177381.30187398865,124848.07859176998,424.7024,279.909168756106,442847.77365975885,291682.94488292106,397.17772,192.780341706859,411477.7365975884,198693.438143574,3269.98254,1469.8289566255348,3376709.5683040144,1497340.5821637348,1082.13186,474.3486954732791,1114857.5455447093,480347.0672444651,1756.56272,725.8645876302627,1800853.912407997,729721.2261272832,0.37984,100000,0,772294,8062.786448817665,0,0.0,0,0.0,36753,383.1184423448348,0,0.0,36172,374.4427624367072,1501378,0,53838,0,0,0,0,0,71,0.7412434097196847,0,0.0,0,0.0,0,0.0,0.05784,0.1522746419545071,0.3087828492392808,0.01786,0.3343171011641253,0.6656828988358747,24.488662461817352,4.426452483676571,0.3251694729936584,0.2370435162912748,0.2162694073912092,0.2215176033238574,11.333071982245723,5.718370812164559,18.761771091116817,11992.098344966826,51.216139627014975,12.8558723838885,16.500127684261315,11.06994861685614,10.790190942009012,0.5574021430133391,0.7776752767527675,0.6933422999327505,0.5611729019211324,0.1184600197433366,0.7388255915863278,0.907514450867052,0.8792134831460674,0.7172131147540983,0.2102564102564102,0.4970862470862471,0.7168021680216802,0.6348364279398763,0.5100671140939598,0.0965770171149144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281188600133,0.0043181219210574,0.0066860111196785,0.0088561185419903,0.0111332533501433,0.0133249183098018,0.0150956089207811,0.0170955000561344,0.0193443561078297,0.0215482841181165,0.0236406861639989,0.0257847303483812,0.028069093152375,0.0299822906799555,0.0318920703028302,0.0339511912879961,0.0359596837617451,0.0381047154067025,0.040118423102893,0.0417495236806213,0.0561538622085864,0.0705642420122365,0.084213064399459,0.0969023201075992,0.1094683597660572,0.1243909914289639,0.1360394255736315,0.147179841582053,0.1583407148116922,0.1680637139304549,0.1803913970160821,0.1924616050183863,0.2037169872839908,0.2133358102127566,0.2237363072456117,0.2343402366536422,0.2432381207215644,0.2520849724626278,0.2600596378643748,0.2677282450781884,0.2743490727466124,0.2808493730206032,0.2873026199065586,0.2930468731287873,0.2981527781149112,0.3034685638324061,0.308452305117348,0.312892322549493,0.317333057466508,0.3208757624059754,0.3190502440270514,0.3176947382882264,0.3155680027020941,0.3132606655598065,0.312393282950513,0.3101408063110581,0.3069614759402175,0.3070761887637511,0.3078531006236935,0.3084251688588695,0.3089778541285432,0.3102965809439353,0.3126737018075436,0.3141618626268043,0.3151647403002254,0.3160907577019151,0.3163456621782853,0.3196946946946947,0.3230060707557044,0.3262646605852387,0.3274284160927872,0.3298024469042953,0.3344047393962311,0.3368694192169732,0.3359433962264151,0.3391118499168843,0.3418515684774292,0.3403437815975733,0.3486568817502077,0.3597701149425287,0.0,2.047444133362654,49.70139335566765,172.64025516415646,257.3865509257202,fqhc2_100Compliance_implementation,51 -100000,95869,45719,432.4755656155796,5824,59.581303653944445,4552,47.01206855187808,1807,18.53571018786052,77.37299817448195,79.67388787602431,63.35320242165369,65.05659480123373,77.14689059804368,79.44844238539359,63.2685887168353,64.97476067686132,0.2261075764382667,225.44549063071884,0.0846137048183877,81.83412437240634,170.32576,119.82631870432064,177665.10550855857,124989.64076429358,423.20601,280.1863614881645,440968.9472092126,291786.57489716646,398.5504,194.39890419163845,412640.8119412949,200464.09977945732,3276.72766,1507.6159313608464,3384650.178889944,1539307.3374718055,1095.54013,492.10573620023257,1131227.0598420762,501798.2208392141,1772.03484,752.5919006385867,1818843.1505491869,758595.3830379493,0.3805,100000,0,774208,8075.686614025389,0,0.0,0,0.0,36686,382.17776340631485,0,0.0,36288,375.5437106885437,1496120,0,53781,0,0,0,0,0,71,0.7405939354744495,0,0.0,3,0.0312927014989204,0,0.0,0.05824,0.1530617608409986,0.3102678571428571,0.01807,0.3263900278825652,0.6736099721174348,24.31232873591269,4.286202186618705,0.3231546572934973,0.2324253075571177,0.21902460456942,0.2253954305799648,11.14752574858862,5.813946301331909,19.327640644526216,11894.066965415344,51.73051457887463,12.678854294983434,16.572408545569143,11.093254555429564,11.385997182892488,0.5511862917398945,0.780718336483932,0.6730115567641061,0.5626880641925778,0.1286549707602339,0.7203252032520325,0.9285714285714286,0.8740157480314961,0.75,0.1428571428571428,0.4885611077664057,0.7031700288184438,0.6027522935779817,0.5033025099075297,0.1241997439180537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0045202549991385,0.0067861598855786,0.008701744410373,0.0112437224244149,0.0135993485342019,0.0157165717081324,0.0177060690485666,0.0198837221183418,0.0221621953465528,0.0241278623021361,0.0262447802846091,0.0287244100961933,0.0308488847258391,0.0329890105358652,0.0348634274797335,0.0370067661238593,0.0391693608555085,0.0413399931463462,0.0434579050314203,0.0574017496845771,0.0702007377451748,0.0842272879651357,0.0966522451379846,0.108522805059132,0.1235026935671279,0.1358198675496688,0.1462014416023473,0.1561442645347906,0.1660219662469863,0.177837325929274,0.1900793393432345,0.2014673115591544,0.2112283387087957,0.2200470971433601,0.2305298020580644,0.2389463466880878,0.2481013512753293,0.2561603739335633,0.2639763644275473,0.2703571759045063,0.277385841142817,0.2833891644275044,0.2882527738503199,0.2932562714004711,0.2983616654348361,0.30354013319313,0.308692388912211,0.3135671106623691,0.3170155478710767,0.3162303382891618,0.3146121550003441,0.313660524200939,0.3114794405634862,0.3112656591324506,0.3093619887337742,0.3069850614001772,0.3072305951424307,0.3076699989764236,0.3082920041388661,0.3094935288396798,0.3098530427063813,0.3115004285744152,0.3122006638301664,0.3139206584677226,0.313423149806609,0.3141540037561892,0.3167247496153967,0.3194463910301331,0.3241855873642645,0.3279909706546275,0.3298175297964349,0.3316617564094528,0.3359161349134001,0.337968617870901,0.3427263120817189,0.3491675576599969,0.3480922260763109,0.3496522948539638,0.3560229445506692,0.0,1.7821174980424146,54.28781138666741,173.5722980694121,244.22774589397517,fqhc2_100Compliance_implementation,52 -100000,95782,45690,432.7117830072456,5832,59.5623394792341,4591,47.24269695767472,1769,18.051408406589964,77.39816222968327,79.72655675362786,63.35848721039546,65.07916047540552,77.17732336762992,79.51010539802714,63.276135371205584,65.0011487749033,0.2208388620533412,216.45135560072504,0.0823518391898758,78.01170050221629,171.39628,120.58013659570696,178944.14399365225,125890.1845813482,423.41039,279.94739383930374,441392.4328161868,291611.6846999474,402.09659,196.3948856369674,415082.6668893946,201416.76058777445,3257.07047,1501.4916694590834,3359603.4119145563,1526713.3067372611,1069.81473,481.0858503655755,1103883.3288091708,489228.3000621986,1731.13,731.858347139442,1770125.4933077197,734012.5617027929,0.38033,100000,0,779074,8133.824726984193,0,0.0,0,0.0,36583,381.2407341671713,0,0.0,36708,378.5575577874757,1492768,0,53568,0,0,0,0,0,76,0.79346850138857,0,0.0,1,0.0104403750182706,0,0.0,0.05832,0.153340520074672,0.3033264746227709,0.01769,0.3389913497633426,0.6610086502366574,24.283800323993518,4.263411678201914,0.3147462426486604,0.2424308429536048,0.2284905249401002,0.2143323894576345,11.152844477472444,5.792508303535084,18.929249486553065,11980.150667470478,52.24542059206759,13.41424985044691,16.397993659535665,11.6184983397691,10.814678742315913,0.5663254192986278,0.793351302785265,0.7072664359861591,0.559580552907531,0.1097560975609756,0.7474429583005507,0.9244851258581236,0.8707124010554089,0.757085020242915,0.1394230769230769,0.4969879518072289,0.7085798816568047,0.649155722326454,0.4987531172069825,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280285997852,0.0044490838333063,0.0068883658645457,0.0092716711349419,0.0116403192192344,0.0141978952510839,0.016385591277322,0.0183548953189405,0.0205253425147375,0.0223961530591364,0.0244342222540954,0.0263519753719856,0.0285702540491655,0.0304352748643947,0.0326724608992401,0.0346722301979942,0.0369849267025998,0.0389696580044382,0.0413735047442865,0.0433220515490757,0.0574964521245512,0.0719350722697513,0.0851846803870791,0.0978591022312842,0.1100381623057623,0.1260372731212803,0.1380012514715396,0.1488385950351667,0.1592909013242204,0.1689074729280583,0.181557778663192,0.1934618753582126,0.2050797375396515,0.2144160085635329,0.2245884705830641,0.2344714655573012,0.2437952949046716,0.2522374634585113,0.2595188676035251,0.2665536943105442,0.2734197993249179,0.280206166288773,0.2864953785341491,0.291189897077677,0.2957083211962326,0.3005046774987691,0.3045505105420369,0.3094303178173408,0.3133783678857054,0.3169998417638061,0.3156867758474519,0.3137209078536766,0.3118655045690711,0.3105329235031819,0.3091011469045431,0.3072046197561795,0.3056279517920043,0.3061150961318005,0.3070899723634378,0.3071975770532692,0.3087573102146821,0.3100222980839434,0.31076646531363,0.3116706741472971,0.3119954139397124,0.313418903150525,0.3156542847465282,0.3194617493147271,0.3243608866072358,0.3259445250892542,0.3272489043509691,0.3299758682194942,0.3308317310674192,0.3297856280193236,0.3308446103593094,0.33388684616297,0.3409194355939918,0.3403141361256545,0.3471346312037291,0.3574677786201668,0.0,2.725870891218096,55.024462588736114,173.27248743509307,244.20768939320345,fqhc2_100Compliance_implementation,53 -100000,95860,45547,431.50427707072816,5756,58.56457333611517,4522,46.41143334028792,1831,18.64176924681828,77.3584022892406,79.64042165567,63.35300198276878,65.04157958548868,77.12550583798914,79.41373763748095,63.26600313217734,64.96002205401186,0.232896451251463,226.6840181890473,0.086998850591442,81.55753147681821,170.24634,119.80620075283728,177598.70644690172,124980.18567537978,420.86321,278.5595648019215,438289.7871896516,289841.42596650776,396.23854,193.4690135438078,408415.595660338,197992.80433008476,3254.52509,1496.557585210638,3344668.631337367,1510914.3376614405,1062.1598,472.3597110969335,1088764.8967243896,473492.5319183528,1793.29454,760.1904778057806,1827574.5670769876,755122.3242282177,0.38049,100000,0,773847,8072.66847485917,0,0.0,0,0.0,36339,378.2912580847069,0,0.0,36095,371.6983100354684,1498425,0,53757,0,0,0,0,0,95,0.9805967035259754,0,0.0,2,0.0208637596494888,0,0.0,0.05756,0.1512786144182501,0.3181028492008339,0.01831,0.3419611747137879,0.658038825286212,24.26587749985325,4.325061223971973,0.3210968597965501,0.2410437859354268,0.2111897390535161,0.2266696152145068,11.121754808513389,5.7632601639092975,19.604588831336976,11980.9258129618,51.28977985349951,13.003197005158128,16.337164604651505,10.74185830226418,11.207559941425693,0.5652366209641752,0.773394495412844,0.7258953168044077,0.562303664921466,0.1190243902439024,0.7326732673267327,0.9280205655526992,0.8920308483290489,0.7012987012987013,0.0886699507389162,0.5039274924471299,0.6875891583452212,0.665098777046096,0.5179558011049724,0.1265206812652068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023590397796879,0.0045191557487511,0.0071000395573632,0.0094122186233995,0.0119333197804431,0.0143192989955118,0.0163005827458331,0.0184303126115559,0.0207569708912326,0.0225723019045379,0.0247425424318735,0.0269937769758358,0.0289526117946716,0.0310044027486318,0.0330908116575291,0.0350118220395857,0.0370538946932864,0.0392181249093132,0.0411361512098868,0.0427083658457921,0.0568795479660557,0.0705233353880873,0.0841781166219839,0.096115679047349,0.1081849784051406,0.1232331128906167,0.1351328437139011,0.1464636260195455,0.1571076312165754,0.1673009508903206,0.1799825541950699,0.1924554020576176,0.2027789556084673,0.2126287251022148,0.22221855724511,0.2319098786061283,0.2417611830439292,0.2501742787110121,0.2582752909680786,0.2653033167210861,0.2718478059618589,0.2792264766784824,0.2854994196925555,0.2915977069391475,0.2967479180596924,0.302294313556186,0.3072557102226454,0.3123296048105587,0.3167345667799777,0.320795377923503,0.3182584307538799,0.3163043178749552,0.3157427250169186,0.3141861104280279,0.3126227751651884,0.3102697063606517,0.3079045866903508,0.3079971063102167,0.3081488830351339,0.3091834002677376,0.3101432986794043,0.3110391021714647,0.3120429161165943,0.3129639567122798,0.3143977671911842,0.3155402944695905,0.3160842739757186,0.32001378964523,0.3223368899772608,0.327424524195782,0.3309996817747874,0.3349360667864313,0.3352830188679245,0.3381405339061061,0.3384308510638298,0.3433857983900036,0.3451713395638629,0.3470636215334421,0.3515452538631347,0.3559710034338039,0.0,2.986573014422269,51.91643052259821,174.27902682026587,241.74720501653363,fqhc2_100Compliance_implementation,54 -100000,95720,45996,436.0321771834517,5844,59.75762641036357,4609,47.419557041370666,1823,18.554116172168825,77.38965647392791,79.754444597388,63.34469261111818,65.09318214929058,77.15217806765504,79.52364062611021,63.25594143368562,65.01034781157004,0.2374784062728707,230.8039712777941,0.0887511774325631,82.83433772054138,170.742,120.05099446373448,178376.51483493522,125418.9244293089,423.16398,280.0286261874468,441355.0668616799,291822.97752655885,404.50358,197.1394991570089,418430.0355202674,202813.6324396543,3276.63399,1508.070287989245,3373354.7534475555,1525977.901002382,1091.21329,486.29999723143936,1122951.9954032595,491140.9130388759,1785.08036,759.024741416253,1819609.1099038864,753218.4343807653,0.38142,100000,0,776100,8108.023401587965,0,0.0,0,0.0,36584,381.4145424153782,0,0.0,36923,381.5503552026745,1495699,0,53705,0,0,0,0,0,67,0.6999582114500627,0,0.0,1,0.0104471374843292,0,0.0,0.05844,0.1532169262230611,0.3119438740588638,0.01823,0.3455858221201181,0.6544141778798819,24.24471462411675,4.274972917546431,0.3189412019960946,0.2488609242785854,0.2113256671729225,0.2208722065523974,11.119773682805617,5.886861084363533,19.52679802327796,12091.1244088055,52.40562097919272,13.732376568506464,16.648856507528837,10.857833582092267,11.166554321065146,0.5721414623562595,0.7820401046207498,0.7224489795918367,0.5780287474332649,0.1129666011787819,0.7418844022169437,0.9201995012468828,0.864406779661017,0.7573221757322176,0.1428571428571428,0.5080693365212193,0.707774798927614,0.6669820245979187,0.5197278911564626,0.1051980198019802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024613078356697,0.0046024553186744,0.0069921553902515,0.0092549322388605,0.0117183923830449,0.0139098203739155,0.0160173733954588,0.0183236185829054,0.0206578624580914,0.0228982629256958,0.0252260193935915,0.0274723582494071,0.0293497815471601,0.0314472532564485,0.0335932504074097,0.0356338231950559,0.037691304077702,0.0396514161220043,0.0416770599484493,0.0435430429074541,0.0580619564195996,0.0717194025476507,0.0853662375271491,0.0986869792105041,0.1115905182872153,0.1271748442573534,0.1387556762721215,0.1492400698199157,0.1600286242216454,0.1695197031125984,0.1822499353838201,0.1945577495266432,0.2059984557999934,0.2161284325412014,0.2257386519944979,0.2349221466699151,0.2439720741418151,0.2529245844898693,0.2615197968161821,0.2685812356979405,0.2755646009921713,0.2823695807179343,0.2887636067085062,0.2941803121708321,0.2999393203883495,0.3049025282317156,0.309304652326163,0.3135793677035379,0.3180712603824359,0.3218269560401888,0.3203276307295029,0.3186536689994638,0.3168507704214451,0.3151185285710161,0.3132172829987248,0.3109671306978805,0.3086747178151393,0.3092847565163358,0.3094247329177777,0.3107575380899954,0.3108286655377114,0.3114425514354772,0.3127159209157128,0.3135485878091598,0.314352648689998,0.3157129881925522,0.3167025739879805,0.3192109884596086,0.3211842705300453,0.3240321170204309,0.329086176188519,0.3304640718562874,0.3319871269009907,0.3342129071170084,0.3330859157543143,0.3405703555920666,0.3485696988042984,0.3512594962015194,0.3500272182906913,0.3551082415495632,0.0,2.676625270204371,54.71276065452267,173.94754003827293,247.1739136997545,fqhc2_100Compliance_implementation,55 -100000,95762,46012,437.48042020843343,5777,59.01088114283328,4515,46.57379753973392,1749,17.87765501973643,77.34687979821054,79.707228905883,63.33382307926016,65.08159573321363,77.12405377569772,79.48751133785072,63.24997273560799,65.00193813893686,0.2228260225128195,219.71756803228004,0.0838503436521662,79.65759427676744,170.4758,119.9854693379467,178020.30032789626,125295.4923016924,425.58899,281.551245801684,443849.8569369896,293437.6431169816,403.00698,196.73737398328493,417773.8873457112,203009.138785,3228.7605,1489.986190171034,3329953.958772791,1514229.235156988,1081.12985,485.98119043575497,1105675.2365238825,484217.6130686002,1712.68526,731.7769889285352,1751038.198868027,729481.3303900402,0.38268,100000,0,774890,8091.831833086193,0,0.0,0,0.0,36798,383.6594891501848,0,0.0,36721,380.4222969445083,1495374,0,53709,0,0,0,0,0,80,0.824961884672417,0,0.0,0,0.0,0,0.0,0.05777,0.1509616389672833,0.3027522935779816,0.01749,0.3379116332947212,0.6620883667052788,24.17630600527088,4.260565400144782,0.3142857142857143,0.2425249169435216,0.2203765227021041,0.22281284606866,11.16769252935431,5.858284817975672,18.74132451715926,12044.664081388324,51.22681083438044,13.11757218196367,16.01110872381015,11.239520908041849,10.858609020564751,0.5714285714285714,0.7881278538812785,0.7145877378435518,0.5869346733668341,0.1182902584493041,0.7359238699444886,0.9130434782608696,0.8733850129198967,0.717741935483871,0.160377358490566,0.5076828518746158,0.7121879588839941,0.6550387596899225,0.5435073627844712,0.1070528967254408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482712496453,0.0045633391473654,0.006741116751269,0.0087909184223096,0.011353463009685,0.0134518645241441,0.0156794780303802,0.0177727416572239,0.0199037016591529,0.0219623823809475,0.0239911417322834,0.0259466896665023,0.0280231589555845,0.0301313417460726,0.0319211517622168,0.0342161301660154,0.0360156986196398,0.0382165605095541,0.0401671552423127,0.0421530547427393,0.0578866065464261,0.0718432586796656,0.0852643278042233,0.0983802987145394,0.1104459364032083,0.1257728036523889,0.1376868440580939,0.1488468041215188,0.1603614560662314,0.1702713414960739,0.1835511806788231,0.1956683850468501,0.2065728719647998,0.2163794421510167,0.225587782904856,0.2356573021897164,0.2446701752821016,0.2539120464049642,0.2617364365716101,0.2688603071707535,0.2759598250445488,0.2823044882295128,0.2884280793949508,0.29372984765124,0.2992122161125475,0.3035742848354352,0.3078856856982052,0.3115370925916509,0.3155402608155661,0.3190109658371995,0.3170899015440899,0.3151308461337477,0.3143821647091919,0.3126568404049727,0.3122942798683391,0.3097123291859007,0.3078381795195954,0.3081552665671788,0.3093657754193185,0.3102120834075922,0.3108858676341331,0.3118746423003296,0.3125810364297963,0.3133881490749843,0.3142898362547789,0.316581339462961,0.3177874186550976,0.3205099883232871,0.323843666526079,0.3263836390403056,0.3284271152351785,0.3307094989894692,0.331670980367401,0.3350296217530001,0.340510812826249,0.34005186232909,0.3440597834375477,0.3461931006327822,0.3462611607142857,0.3458676067371719,0.0,2.188134610458997,54.94176032962787,166.56782183719136,242.03647790709684,fqhc2_100Compliance_implementation,56 -100000,95752,45944,436.2415406466706,5830,59.67499373381235,4591,47.35149135266104,1868,19.090985044698805,77.36211040614715,79.72506411951875,63.32787542470121,65.07603108991795,77.12227763465083,79.48807674338839,63.23820930665374,64.99036607521525,0.2398327714963244,236.98737613035803,0.0896661180474751,85.66501470269827,170.9081,120.29444470743891,178490.14119809508,125631.0377928805,424.83544,280.6731031864789,443077.00100259,292519.2442836482,400.90939,195.44071780171117,415841.2879104353,201798.60338222084,3324.72157,1518.1873474222723,3431624.1645083134,1544979.440766013,1067.57668,469.8515065290398,1101311.8054975353,477071.21093704936,1829.64944,776.9850121788603,1871955.405631214,776774.0680703203,0.38066,100000,0,776855,8113.188236277049,0,0.0,0,0.0,36752,383.1773748851199,0,0.0,36446,377.7466789205448,1491579,0,53566,0,0,0,0,0,69,0.7101679338290584,0,0.0,0,0.0,0,0.0,0.0583,0.1531550464981873,0.3204116638078902,0.01868,0.3358915741345525,0.6641084258654474,24.34067671625317,4.402769117535619,0.3195382269658026,0.2274014375952951,0.2274014375952951,0.225658897843607,11.087601006228942,5.676789706051304,19.988028956316597,11996.146467925382,52.00853397562203,12.661049763649316,16.395866568586168,11.542582904098468,11.409034739288092,0.55173164887824,0.7921455938697318,0.6809815950920245,0.5727969348659003,0.1052123552123552,0.7122835943940643,0.9007832898172324,0.8539944903581267,0.75,0.116591928251121,0.4940793368857312,0.7291981845688351,0.6240942028985508,0.51875,0.1020910209102091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0044111383779179,0.006781037458126,0.0091142790371582,0.0115965617211738,0.0136065506986597,0.0160198233842514,0.0182553295760842,0.0204087892761832,0.0221798967805357,0.0244277627368939,0.0264704069683834,0.0286413859797123,0.0307189744540967,0.0327687814141664,0.0346239338330317,0.0365841030526446,0.0387620223483394,0.0407584120747185,0.0428627973834423,0.0577673855404079,0.0718732018622168,0.0851668519411875,0.0978344324193565,0.1098887189494225,0.1252392989729975,0.1369538925077977,0.1473851198841616,0.1573475515284915,0.1670062410191519,0.1803200999504556,0.1922402597402597,0.203172427298541,0.2127713110449851,0.2219605080678891,0.2328949263720069,0.242185318785388,0.2506751282743721,0.2589945198951632,0.2662230570126211,0.2730671729039576,0.280344420136411,0.2862977212192956,0.2921979010494752,0.2975264845951987,0.3026685739653726,0.3074456759972446,0.3112865236488637,0.3156994818652849,0.3202417715839206,0.3190259285213735,0.3174032768828307,0.3159473773170319,0.3142910819833229,0.3134412594682905,0.3109508718749522,0.3088719377096917,0.3091481615114639,0.3097527706734868,0.3105653118654935,0.309917587038179,0.3101913837914468,0.3111245667515764,0.3113687026304057,0.3123652048885694,0.3139027431421446,0.3141560283687943,0.318110679854764,0.3211841921519341,0.3257492113564669,0.3281193490054249,0.3305254290828682,0.3332290362953692,0.3385761589403973,0.3398959881129272,0.3432273262661955,0.3483929654335961,0.3512651922693763,0.3636117869694512,0.3671274961597542,0.0,2.188427147048592,52.983194945056326,174.84361982086574,250.28908010028104,fqhc2_100Compliance_implementation,57 -100000,95761,45575,431.0209793130816,5845,59.67982790488821,4542,46.85623583713621,1867,19.141404120675432,77.32840490063373,79.68657408309964,63.31625382636724,65.06382136042882,77.09453160622971,79.45510282383634,63.22969686648177,64.98068900345338,0.2338732944040202,231.47125926330148,0.0865569598854705,83.1323569754403,170.21268,119.7505355909428,177746.70272866826,125050.86323307065,422.23636,278.9753739537424,440344.6079301594,290744.4037019255,397.14402,193.59570503644863,410818.93463936256,199290.0275877275,3273.54034,1492.2323952745223,3380180.710310043,1520325.0076248306,1120.64569,492.8398717372729,1153892.8164910558,498296.26020746696,1831.5395,764.3522919014814,1878938.9417403743,768737.3996844855,0.37944,100000,0,773694,8079.39557857583,0,0.0,0,0.0,36523,380.7813201616525,0,0.0,36227,374.4217374505279,1497219,0,53749,0,0,0,0,0,69,0.7205438539697789,0,0.0,0,0.0,0,0.0,0.05845,0.1540427999156652,0.3194183062446535,0.01867,0.3381460213289581,0.6618539786710418,24.32069687663629,4.427227541250603,0.3095552619991193,0.2353588727432849,0.2278731836195508,0.2272126816380449,11.15791880687425,5.656489772887267,19.79948655974241,11977.141267866122,51.566823888871376,12.900302838226397,15.905634710864708,11.576798694061846,11.184087645718426,0.5598855129898723,0.7913938260056127,0.6813655761024182,0.5855072463768116,0.128875968992248,0.7393092105263158,0.9054726368159204,0.8467741935483871,0.7601626016260162,0.1683673469387755,0.4942874323511725,0.7226386806596702,0.6218568665377177,0.5310519645120405,0.1196172248803827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.0047871153573094,0.0070361044551841,0.0093294579158112,0.0116986429574169,0.0139239732724902,0.016091532060695,0.0182647935639318,0.0207017113414708,0.0229799168833295,0.0253908051868176,0.0275684333737191,0.0296585767174002,0.0316619973632168,0.0337956370090603,0.0359084613317346,0.038102434580987,0.0399066632097485,0.0421277966559632,0.0440755282918649,0.0584913734617833,0.0728748326639893,0.0859084188782518,0.0989215438950555,0.1105105105105105,0.1258508434448061,0.1373517996139897,0.1479991485738612,0.1576305220883534,0.167728237791932,0.18076558528284,0.1925340835317031,0.2039517348681848,0.2130568406776695,0.2226906945254791,0.233038315407025,0.2429265025950109,0.2518627737883528,0.2598412680390131,0.2667285499822372,0.2729724099620405,0.2789435515942639,0.2849175902244956,0.2904932746187351,0.2956087241957837,0.3011751069680267,0.3052403225199694,0.3099103001885734,0.3134541304037666,0.3174441788916324,0.3158008249534952,0.3138388677790627,0.3123554628010604,0.3113332948043691,0.3107497473095903,0.3077960491026957,0.3052458185504308,0.3058692043456108,0.3064783627130815,0.3067410107941954,0.3074343313223667,0.3087131684967217,0.3100601855721809,0.3105220811728947,0.3100298105587075,0.3117954859032098,0.3133792789200889,0.3166515013648772,0.3199244438225829,0.322695597085841,0.3249818445896877,0.3279025624802277,0.3276938444250218,0.3296296296296296,0.3353955755530559,0.3372216330858961,0.338470929345338,0.3398078102637497,0.3410227904391328,0.3413103177716751,0.0,2.1965197710999047,53.14743647843079,172.06314216324785,247.12044239953477,fqhc2_100Compliance_implementation,58 -100000,95731,45661,434.9270351296863,5823,59.64630057139276,4594,47.41410828258349,1768,18.071471101315144,77.31464774318667,79.68068258501224,63.30648041847581,65.05601733437621,77.094447207237,79.46355761879775,63.225723976606325,64.97918947981498,0.2202005359496723,217.1249662144845,0.0807564418694823,76.82785456123042,170.37922,119.89460852443628,177977.0607222321,125241.15336143598,421.57439,278.54038314894746,439741.72420637,290329.3010090226,401.24855,195.25164338471396,415974.2612111019,201428.44143657672,3243.44795,1476.840037556528,3347508.288851052,1502325.9300298577,1068.44703,472.790028699185,1103646.4363685746,481447.72688190296,1728.67882,717.5842753226746,1768516.530695386,717453.2957950856,0.37986,100000,0,774451,8089.866396465095,0,0.0,0,0.0,36445,380.1067574766795,0,0.0,36608,379.2397447012984,1495972,0,53611,0,0,0,0,0,84,0.8565668383282323,0,0.0,2,0.0208918741055666,0,0.0,0.05823,0.1532933185910598,0.3036235617379357,0.01768,0.3399410222804718,0.6600589777195282,24.03372590137309,4.265105663257524,0.3232477144101001,0.2522855898998694,0.2115803221593382,0.2128863735306922,11.104251481184138,5.74412749269866,18.773850351863427,11980.27788214578,52.15884759815639,14.040970840997913,16.804938669541222,10.675534381764477,10.637403705852766,0.5750979538528516,0.8153580672993961,0.6983164983164983,0.5679012345679012,0.1104294478527607,0.7599351175993512,0.9232456140350878,0.8694516971279374,0.7285714285714285,0.1630434782608695,0.5072894971734603,0.7453769559032717,0.6388384754990926,0.5236220472440944,0.0982367758186398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0045219048777767,0.0069936458312186,0.0090946042068895,0.01109924207742,0.0132442234809894,0.0154150641189132,0.017326581037757,0.0192382393228793,0.021252200974571,0.0233049326894487,0.0253408904222112,0.0274331913843115,0.0295305609364052,0.0314409578860445,0.0333505634239636,0.0353218941896467,0.0371588668672823,0.0392005989269226,0.0411314267854352,0.0557046349179831,0.0700252258287365,0.0841306811028578,0.0967860673495572,0.1095316932226803,0.1246575197554241,0.1370954902938897,0.1480345811507176,0.1587391508828936,0.1681903045129723,0.1810879292684241,0.1926464375088019,0.2032349417274806,0.2134506448113776,0.2229705895321663,0.233151649034779,0.2424408462673883,0.2511838722770937,0.2595974528087332,0.2678700609735092,0.2742806797894785,0.2802586570451244,0.2864812334822645,0.2922661546769065,0.2977096452624668,0.302977988778593,0.3072159531613581,0.3112204674347041,0.316177516782864,0.3202276799831348,0.319096862687089,0.3175154904035061,0.3162050892944962,0.315230871283131,0.3137793347088423,0.3114824335904027,0.3082157098550541,0.3083995534248374,0.3090210148641722,0.3092638190058167,0.310335786654681,0.3114647292254842,0.3120705140255237,0.3128957460090966,0.3135011990407674,0.3142597402597402,0.3159212472971435,0.3191162644938891,0.3227969683210506,0.3258849120031639,0.3291501841495021,0.3304158709951199,0.3332069030912194,0.335580237456913,0.3376193627682707,0.3406789755807028,0.3453370267774699,0.3496503496503496,0.353594227033028,0.3558401241753977,0.0,2.22583197068772,53.936647438606656,172.97385353456514,250.63973901549983,fqhc2_100Compliance_implementation,59 -100000,95813,46014,435.0662227463914,5872,60.07535511882521,4608,47.498773652844605,1820,18.630039764958827,77.3504688262772,79.68178099455585,63.33176974345843,65.05960932926325,77.11847538581236,79.45203548927014,63.24575272508718,64.97665253507382,0.2319934404648336,229.74550528570603,0.0860170183712512,82.95679418942825,171.43698,120.60563741630068,178928.72574702807,125876.0684002178,426.63778,282.8151098881399,444713.4104975317,294605.74326554226,409.11817,200.0727067816537,423117.8441338858,205765.29383742955,3317.08324,1533.7741867523146,3422894.784632565,1561656.605367207,1111.31049,506.0471859307128,1143527.0787888907,511837.3816445047,1786.63666,755.8304696876817,1831225.7000615783,761462.6525794689,0.38153,100000,0,779259,8133.123897592184,0,0.0,0,0.0,36842,383.9145001200255,0,0.0,37333,385.79315959212215,1486851,0,53506,0,0,0,0,0,62,0.6366568210994332,0,0.0,0,0.0,0,0.0,0.05872,0.1539066390585275,0.3099455040871934,0.0182,0.336963589076723,0.663036410923277,24.21302644691558,4.306717523258131,0.3263888888888889,0.2369791666666666,0.2120225694444444,0.224609375,11.340663345441929,5.937941894061534,19.599225067083363,12082.491123855074,52.8138806192467,13.191566555507722,17.129593506923506,10.990059770740384,11.502660786075088,0.5674913194444444,0.7967032967032966,0.699468085106383,0.5875127942681678,0.114975845410628,0.743549648162627,0.9138755980861244,0.8775,0.7634854771784232,0.1545454545454545,0.49984980474617,0.7240356083086054,0.634963768115942,0.529891304347826,0.1042944785276073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819174585165,0.0046845056426999,0.0069521973003146,0.0093474086341607,0.0115853286408853,0.0137907152023792,0.0160522155932894,0.0181153500531002,0.0204183877960001,0.0226439817374035,0.0245275473478051,0.0267700364532525,0.0293291924188356,0.0313291725885188,0.0336111053814896,0.0356777533244474,0.0380833091797441,0.0402335808820478,0.0420477219820419,0.0443893856900446,0.0598894220738577,0.074085690985509,0.0875729600016766,0.1003120305096498,0.1128634639696586,0.1288307900410026,0.1405988252507474,0.1512482581825531,0.161791707587856,0.1713400979331183,0.1836844483656474,0.1956871858617521,0.2071471243143431,0.217201245833561,0.2258238373883584,0.2359333975871581,0.2449473813429754,0.252759493670886,0.2603033674697427,0.2675898246457983,0.2740507574267165,0.2813420966459278,0.2875109438962637,0.2928392576884831,0.2987568506884106,0.303837900500703,0.3078638174211489,0.3111249824838533,0.3151618840241594,0.3195761883372526,0.3184123900491069,0.3171919177987725,0.3153332486270523,0.3125868457619268,0.3115319952985285,0.3090641436523392,0.3076666930944264,0.3074520376793963,0.3082078197391141,0.3087070768460754,0.3098855397988048,0.3108161491664691,0.3118041021347844,0.3127667657377818,0.3139752896495361,0.3141882211976765,0.3156159399693025,0.319788041262973,0.3218386792782102,0.3240762718569507,0.3251775134548414,0.3287526983625546,0.3297526854858856,0.3331576569793705,0.334513934197036,0.3369146327221768,0.3372673626872446,0.3424,0.3466738777717685,0.3411854103343465,0.0,2.272050705200279,55.934922473511854,179.4194894962567,241.78013624615028,fqhc2_100Compliance_implementation,60 -100000,95717,45737,433.01607864851593,5805,59.39383808518863,4543,46.88822257279271,1771,18.178588965387547,77.30949638025908,79.66898936058618,63.31695901961641,65.05936262492482,77.08488683946051,79.44577145039986,63.23278784816839,64.9778956992157,0.2246095407985677,223.21791018632095,0.0841711714480268,81.4669257091225,170.797,120.15342565932194,178439.566639155,125529.8699910381,423.3177,279.8055508043447,441681.0911332365,291747.27666385775,398.19051,194.5762839657281,411714.23049197113,200074.0277843669,3247.53467,1493.7138995283542,3354478.284944158,1522180.1869347726,1086.7991,482.0614993829172,1119541.2204728522,487743.733488217,1740.3043,737.2696199567642,1787458.7168423582,744224.0181805516,0.38166,100000,0,776350,8110.889392688864,0,0.0,0,0.0,36553,381.2802323516199,0,0.0,36346,375.51323171432455,1492373,0,53582,0,0,0,0,0,83,0.8566921236561948,0,0.0,2,0.020894929845273,0,0.0,0.05805,0.152098726615312,0.3050818260120586,0.01771,0.3353558543784847,0.6646441456215153,24.458738837939737,4.343199904746242,0.3196125907990315,0.2405899185560202,0.2168170812238609,0.2229804094210873,11.249595582793544,5.829319352741777,18.9685594343141,12088.253622391756,51.68804765872877,13.079477384120215,16.460544455068263,10.965688954888767,11.18233686465152,0.5661457186880916,0.7996340347666971,0.6873278236914601,0.5878172588832488,0.1194471865745311,0.7201946472019465,0.9307692307692308,0.8541114058355438,0.7130434782608696,0.1652542372881356,0.508761329305136,0.7268847795163584,0.6288372093023256,0.5496688741721855,0.1055341055341055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508562805724,0.0048860595247749,0.0072031490950409,0.0095677256845697,0.0119046408783612,0.0138935540016489,0.0161341283188095,0.0183633264262455,0.0207677527492743,0.0228838104205258,0.0250310068778892,0.0271269277368215,0.0293984575835475,0.0316162385944676,0.0337035776533316,0.0358932501265665,0.0378174742812196,0.0398141522250915,0.0419373278594813,0.0439171241367097,0.0583628332445725,0.0725013868101273,0.0864790593763438,0.0989905362776025,0.1107443768387974,0.1263418400262286,0.1387173447083041,0.1505115348173698,0.1606683118076253,0.1704108002616425,0.1834742795583086,0.195392343668803,0.206390318754149,0.2166152297152362,0.2257872715260955,0.2354395299855891,0.2447527451046099,0.2540919895010758,0.2626412950866231,0.2696121702644762,0.2760397369396072,0.2819966768856334,0.2880605321428994,0.2933464477203756,0.2982330351934668,0.302426268332696,0.3072648074901116,0.3119120062125243,0.3162123980973858,0.3191928002220195,0.3184116496999932,0.3173778891980495,0.3159342597164421,0.3143658469589857,0.3132307875397935,0.3111359906752757,0.3082001555283998,0.3081706173611225,0.3091092736205981,0.3101707657609279,0.3119717516246572,0.3131247025226082,0.3149672434066857,0.3150331779053085,0.3159926648006949,0.3163645846916156,0.3175070789119927,0.3201673008585176,0.3229122807017544,0.3254590060145615,0.3261274353967028,0.3270933870711142,0.3276317444346623,0.3308734023128423,0.3339601353892441,0.3355815879777541,0.3411764705882353,0.3438138015516537,0.3442802408319649,0.3428680396643783,0.0,2.2754292181956464,53.79266452811736,170.1323450276858,248.3181637924803,fqhc2_100Compliance_implementation,61 -100000,95731,45615,431.9708349437486,5878,60.105921801715226,4624,47.68570264595586,1846,18.928037939643374,77.40440741590693,79.76163507011083,63.3594678928421,65.09923410920256,77.16959548842554,79.52917359600762,63.2718703036482,65.01529768563181,0.2348119274813882,232.4614741032036,0.0875975891938978,83.93642357074782,170.55896,119.90606344077464,178164.58618420365,125252.91564525227,423.81705,279.4620487642134,442069.8937648202,291279.25644620915,395.63988,192.02150281991476,409484.1796283336,197679.3125048432,3321.21785,1516.24844929612,3428166.414223188,1542843.204570869,1098.51933,491.1999011682778,1129096.5204583677,494742.6511100962,1814.4509,764.1320608440135,1862394.7728530988,769505.9365856112,0.38168,100000,0,775268,8098.390281100166,0,0.0,0,0.0,36658,382.2586205095528,0,0.0,36140,373.6929521262705,1500805,0,53763,0,0,0,0,0,74,0.7729993419059658,0,0.0,1,0.0104459370527833,0,0.0,0.05878,0.1540033535946342,0.3140523987750935,0.01846,0.3377022653721683,0.6622977346278317,24.48193307767044,4.344205616437485,0.3207179930795847,0.236159169550173,0.2158304498269896,0.2272923875432526,11.102239586964137,5.743913383755973,19.57004166134174,12022.14047895942,52.35814896067325,13.02038674871924,16.638496328673497,11.139009070080425,11.560256813200084,0.5553633217993079,0.7728937728937729,0.6911665542818611,0.5771543086172345,0.1170313986679353,0.7128630705394191,0.913978494623656,0.8513513513513513,0.7172131147540983,0.1324200913242009,0.4998537584088915,0.7,0.637915543575921,0.5318302387267905,0.1129807692307692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023388378709487,0.0046921712693184,0.0069186600929251,0.0090489006245874,0.0112147062113001,0.0132837947882736,0.0158267515923566,0.0182749507668132,0.020455288540134,0.0226863411239818,0.0247617095418673,0.0269726578536825,0.029269947669816,0.0312406653963022,0.0334523391873207,0.035416709740112,0.0375207125103562,0.0396593219635669,0.0415610060278528,0.0434551647275719,0.0578206078576723,0.071672997833799,0.0848499470277868,0.0982892952148632,0.1102830337848521,0.1254375297414476,0.1369809238865194,0.1482518524827527,0.159017094017094,0.1688811676264625,0.1816478190630048,0.1936908175964504,0.2048322527305165,0.2150114286339228,0.2245672722471032,0.2346700333344407,0.2439190395429795,0.2522402995311393,0.2598607362380639,0.2675662992594627,0.274320842144186,0.2808578199605412,0.2876151121605667,0.2931386721783491,0.298643575148359,0.3038483277222126,0.3084002447521884,0.3124992069836194,0.3158553905745642,0.3187837820066019,0.3172102883363969,0.3151496858107181,0.313631575251071,0.3121515522581574,0.3108726223077492,0.308652716088954,0.3064826802235624,0.306377200444997,0.3067349926793558,0.3069819579374399,0.3072867985194601,0.3081069341336281,0.3091559161143287,0.3108231673320101,0.3123605747319437,0.3132141276905859,0.3152800249794203,0.3178156055048747,0.3204903677758319,0.3236028042935794,0.3280718465097292,0.3332273449920508,0.3367199749137661,0.3411122897408698,0.3441691505216095,0.3496774193548387,0.349878197320341,0.3576598311218335,0.3673018503175918,0.3724029792238338,0.0,2.350476452363142,52.38771127491627,180.75100136411484,248.843040198975,fqhc2_100Compliance_implementation,62 -100000,95764,45449,430.2034167328015,5677,58.23691575122176,4462,46.176016039430266,1760,18.07568606156802,77.33232137485312,79.69857240080096,63.31916690730778,65.07119456479064,77.1064734395214,79.47156304148638,63.23446561810705,64.98789009353757,0.2258479353317284,227.0093593145788,0.0847012892007299,83.30447125307217,170.46304,119.86310628176048,178002.1093521574,125164.2742922586,422.07408,279.4022907624277,440279.4682761789,291302.0917819344,391.1865,190.5175582306005,405965.63426757447,196968.9944962052,3247.68834,1482.3513310156995,3361592.195397018,1518672.6524941078,1085.05912,481.9319141725679,1121973.9359258176,492644.7847808714,1739.44182,739.9611493963146,1787448.2060064324,749241.3813131754,0.37797,100000,0,774832,8091.004970552609,0,0.0,0,0.0,36508,380.7380644083372,0,0.0,35641,369.6900714255879,1497767,0,53730,0,0,0,0,0,75,0.7831753059604862,0,0.0,0,0.0,0,0.0,0.05677,0.1501971055903907,0.3100228994187071,0.0176,0.3452220726783311,0.654777927321669,24.578799973976334,4.354556149926569,0.3041237113402061,0.2389063200358583,0.2198565665620797,0.2371134020618556,11.010998449812872,5.6156603677473536,18.769984541758934,11917.64557368804,50.45586138989736,12.832121548581146,15.260479068249222,10.825736708030616,11.53752406503636,0.5486329000448229,0.798311444652908,0.6897568165070007,0.5535168195718655,0.1115311909262759,0.7230125523012553,0.92,0.8670520231213873,0.7079646017699115,0.1614349775784753,0.4848484848484848,0.7252252252252253,0.629080118694362,0.5072847682119205,0.0982035928143712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0046354055726298,0.007016083177646,0.00954345881779,0.0116993570440302,0.0139872250690192,0.0160214571265399,0.0182646070914455,0.0206124431266295,0.0226351351351351,0.0247572964827211,0.0269695911956142,0.0293161953727506,0.0311753316305512,0.0332518286958226,0.0353053040638306,0.0374515935306177,0.0394331420983286,0.0414536309598038,0.0434913923286016,0.057768591590463,0.0717230267012639,0.0851014735958886,0.0978202580360241,0.1097942872808173,0.1246628518240377,0.1365469091526431,0.1473565445081906,0.1576580906304401,0.1677693305739928,0.1796934742102598,0.1909492273730684,0.2019799825935596,0.2104877435162599,0.2202901102771235,0.2304582807274016,0.2397160904403723,0.2482331757821292,0.2563895950608316,0.2638650264586626,0.2711217073283644,0.2772200772200772,0.2829230769230769,0.2892822473364413,0.2946885134396521,0.2994799369022971,0.3042542542542542,0.3089861926920436,0.3137957810275656,0.3176448874123292,0.3158390399440326,0.3147921508230085,0.3134561524495799,0.3115312454899697,0.3105767089735025,0.3081406020558003,0.3056619905633491,0.3056821535132299,0.3060247123988069,0.3064780794064138,0.3069538969195868,0.3081685126582278,0.3085759805462968,0.3095072866065232,0.3107027599826598,0.3123370528730837,0.3118579437124726,0.3149425287356321,0.3191862504384427,0.3223317957690472,0.3243845838831505,0.3291577825159915,0.3313294943997975,0.3334602787721837,0.3403679148379867,0.3454290062039096,0.3458646616541353,0.3486802937090693,0.3518817204301075,0.3514328808446455,0.0,1.441258059044639,52.93023711325375,165.27427650859073,245.38892669048084,fqhc2_100Compliance_implementation,63 -100000,95736,45793,434.64318542658975,5874,60.228127350213086,4592,47.48474972841982,1792,18.477897551600236,77.41699606751023,79.77107123462712,63.36600846061516,65.10087585946458,77.18982772052293,79.5425109816933,63.282123797773735,65.01844409541285,0.2271683469872982,228.56025293381776,0.0838846628414273,82.43176405173358,171.70802,120.72101638506976,179355.7491434779,126097.82776078983,425.97565,281.6779765910736,444485.79426756914,293761.22523509816,401.93776,196.0188046784235,416562.4947773043,202196.719702864,3254.80315,1494.6782172936075,3366335.015041364,1528084.7204843925,1067.71549,477.88110061556426,1097684.183588201,481676.8369505084,1747.15004,734.3620967040856,1801171.0119495278,745185.7095537076,0.38098,100000,0,780491,8152.534051976268,0,0.0,0,0.0,36895,384.8813403526364,0,0.0,36672,379.7735439124258,1490371,0,53533,0,0,0,0,0,69,0.7207320130358486,0,0.0,0,0.0,0,0.0,0.05874,0.1541813218541655,0.3050732039496084,0.01792,0.3350674687042757,0.6649325312957243,24.17746569143492,4.281316530936223,0.328397212543554,0.2354094076655052,0.2238675958188153,0.2123257839721254,11.12801827739211,5.868073584374376,19.1215923385912,11983.109104147676,52.21466346484712,12.972806368894936,17.00329082277937,11.544395148392926,10.69417112477988,0.5722996515679443,0.8011100832562442,0.6923076923076923,0.5914396887159533,0.1128205128205128,0.7384494909945184,0.9242053789731052,0.8611111111111112,0.7587548638132295,0.1348837209302325,0.5082956259426847,0.7261904761904762,0.6321942446043165,0.5356679636835279,0.106578947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023482256725844,0.0043663698345642,0.006643541058098,0.009047614212167,0.0112758256059866,0.0133349620309859,0.0153606229869123,0.0176262260280264,0.0198563150848722,0.0219957849937593,0.0242965179431475,0.0264891826429656,0.0285062244929428,0.0306069905872175,0.0325169703096952,0.0346694774260883,0.0364231211239607,0.0386139230003318,0.0408239622523852,0.0429197962351421,0.057322446593021,0.071346363103708,0.0846717932040159,0.097066958323255,0.109061570587863,0.1242438343415542,0.1364976665252439,0.1475540701634877,0.158409178310473,0.1679051264730165,0.1804724172085612,0.1930923329871928,0.2043533068179348,0.2140048925388782,0.2228617879034207,0.2323255788227745,0.2417893481628422,0.2497274944094213,0.2583351282719842,0.2664385991006968,0.2725486343092945,0.2791129701246655,0.2857564976893165,0.2913545082457694,0.2965160006793313,0.3017578846295886,0.3058936739233672,0.3104850494961432,0.3149388430606915,0.3196610035454917,0.318474592225046,0.3171971372446667,0.3160212753982102,0.3142877780988153,0.3123338925925376,0.3100230961011945,0.3083517524471108,0.3081162406580647,0.308553347849755,0.310003019913666,0.3104958985831469,0.3115530489122958,0.3120347006443809,0.3130651145224712,0.3156409213768029,0.317323161554829,0.3184973227186446,0.3217261068988112,0.3246481816915145,0.3279366580004727,0.3313636158599846,0.333227931488801,0.3349553933495539,0.3376061893203883,0.3383297644539614,0.3396710603056106,0.3433263031033444,0.3466719492868462,0.3495041543822031,0.3534002229654404,0.0,1.86725526501154,56.30223219671259,169.2581388363395,247.8341538689392,fqhc2_100Compliance_implementation,64 -100000,95693,46053,438.4228731464162,5772,59.1892823926515,4472,46.12667593240885,1769,18.099547511312217,77.3508434030137,79.74347354093896,63.31502979323547,65.08372414614358,77.1335861687406,79.5283973114395,63.2341971612453,65.0066619171155,0.2172572342730916,215.0762294994593,0.0808326319901695,77.0622290280869,170.45072,119.97273415031157,178122.4540980009,125372.52897318672,422.85262,279.7650612109918,441280.91918949137,291753.2016040795,399.32915,194.44803501694736,413952.61931384745,200587.95494749263,3226.65675,1466.985560493276,3330407.825023774,1491536.4451875011,1065.65518,471.0891160529925,1095540.8859582206,474214.2853218023,1730.48086,723.9773079562734,1771875.4558849656,723665.6671701001,0.38189,100000,0,774776,8096.475186272768,0,0.0,0,0.0,36427,380.0382473117156,0,0.0,36244,375.3357089860282,1496417,0,53635,0,0,0,0,0,97,1.0136582613148295,0,0.0,1,0.0104500851681941,0,0.0,0.05772,0.1511429992929901,0.3064795564795565,0.01769,0.3342705921270261,0.6657294078729739,24.541402313695148,4.309202345659344,0.3177549194991055,0.2354651162790697,0.2229427549194991,0.2238372093023256,10.956763797488984,5.663298224547417,18.79846262094191,12025.549366821198,50.57480023001165,12.519728422234438,16.167625138679245,10.99829820196593,10.889148467132046,0.5608228980322003,0.7749287749287749,0.7065446868402533,0.5687061183550652,0.1208791208791208,0.7278056951423786,0.9051282051282052,0.8605263157894737,0.7130044843049327,0.1492537313432835,0.5,0.698340874811463,0.6503362151777138,0.5271317829457365,0.11375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0043909908630882,0.0065374737333644,0.0088625091470851,0.0110683838938737,0.0131007925673886,0.0153423986779422,0.0174540923667708,0.0194823125147012,0.0215993117715737,0.0236898779612347,0.0258214274709585,0.0277100626407874,0.0300641877620828,0.0319930647291941,0.0338970785866396,0.0359610861884978,0.0379170040065599,0.0399334269516825,0.0419568027352708,0.0563842232806885,0.0698616797378092,0.0834811634668878,0.0965681942515675,0.1096049369692494,0.1248558460382788,0.1367279134689891,0.1478290503626236,0.1582666139325074,0.1676700039704257,0.1810627290364302,0.1931478675037887,0.2050551100569053,0.215376871224722,0.224826341108995,0.234669327568047,0.2433775019256315,0.2531997523498621,0.2620372473313649,0.2694441260744986,0.2768484539782133,0.2830517800489353,0.2891828830642773,0.2945592344313998,0.2993777648145447,0.3039888602728247,0.308815068664482,0.3121907790143084,0.3164764935703382,0.3201546092554482,0.3183678965795852,0.3181068148066663,0.3164922055264787,0.3148615699796575,0.3131361016873824,0.3110262675626145,0.3088486073391018,0.3091126352490547,0.3093038319923633,0.3108026339206264,0.311105713538358,0.3121618165004033,0.3130210070023341,0.3133033847796113,0.3136560503457682,0.3139405252650955,0.3159112716599875,0.3185498941073875,0.3221399520283658,0.3242216565498335,0.3289816061013907,0.3308811938416268,0.3335823218176159,0.3376682292454256,0.338688585839716,0.3430967284752569,0.3470098410295231,0.3548642758074103,0.3574113856068743,0.3526275704493526,0.0,2.403641644741821,52.11296867370848,165.38071150185326,245.98030593895115,fqhc2_100Compliance_implementation,65 -100000,95735,45531,432.8093173865357,5607,57.54426280879511,4411,45.61550112289132,1760,18.102052540868023,77.26691653433518,79.62665028054045,63.2951211478972,65.03899662371454,77.0391624169314,79.39826969246229,63.21066895878206,64.95661505380696,0.2277541174037765,228.38058807815287,0.0844521891151401,82.38156990758227,171.1325,120.51804917561716,178756.46315349665,125887.1355049012,421.07062,278.13645878562664,439336.7733848645,290035.0008541755,396.84222,192.84245554487745,411708.6540972477,199288.35960783265,3165.83435,1456.948235529136,3277082.206089726,1492079.367517767,1053.06585,472.0853980467525,1090981.1876534184,484156.2203395313,1727.63088,731.2189882636063,1778642.1893769258,740850.6875020373,0.37878,100000,0,777875,8125.293779704392,0,0.0,0,0.0,36505,380.79072439546667,0,0.0,36154,374.7845615501123,1489965,0,53483,0,0,0,0,0,67,0.6998485402412911,0,0.0,1,0.0104455006006162,0,0.0,0.05607,0.1480278789798828,0.3138933476012128,0.0176,0.3441281745355377,0.6558718254644622,24.261178594680096,4.35950967010967,0.3164815234640671,0.2459759691679891,0.2131036046248016,0.2244389027431421,11.153919480119786,5.730687177950836,18.928429187259976,11928.128608234489,50.441032462011535,13.169550805912657,15.88222684444344,10.476426879041083,10.912827932614364,0.5522557243255498,0.7824884792626728,0.6898280802292264,0.5436170212765957,0.1141414141414141,0.7201283079390537,0.9439252336448598,0.8440860215053764,0.6805555555555556,0.1428571428571428,0.4860935524652339,0.6773211567732116,0.6337890625,0.5027624309392266,0.1054018445322793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0044307455210942,0.0066465072857896,0.0087565140541034,0.0111160832333258,0.0135318135073768,0.0156786788317447,0.0180479986933575,0.0203121965182012,0.0225188339338355,0.0245097536723627,0.0267340150301835,0.0288135244637311,0.0307346867307315,0.0328897142267615,0.0346281863099791,0.036503909283902,0.0380972142968304,0.0400203740085861,0.0418854713678419,0.0561356611811878,0.0703385040507442,0.0835222264198463,0.0961459549887945,0.1087057433430392,0.1242328042328042,0.1359568572914787,0.1465739419369954,0.1573550325595321,0.1674824499259354,0.1803227440792523,0.1924460431654676,0.2037393965132359,0.2139204327686461,0.2231870323639929,0.2332060560316121,0.242295822524376,0.2510337678726353,0.2588637577107024,0.2661324529123821,0.2717951091925423,0.2779513827932072,0.2842951526202373,0.2892688834794287,0.2947031941270844,0.3000098663114794,0.30514825676116,0.3093318045735397,0.3135822967065751,0.3182401587826662,0.3163086069450074,0.3147654621024869,0.3141932475020845,0.3127660806858003,0.3104999032061114,0.308220229687404,0.3055418777896024,0.3059742056628947,0.3055446053646413,0.3054521371804969,0.306127814606847,0.3077959652808054,0.3088560186841164,0.3092952312592526,0.3113177920038652,0.3130266394515099,0.3140663936069658,0.3174713661962918,0.3215921599261442,0.3233766756571796,0.3254231052244297,0.3295045891256508,0.3318325935320228,0.3337669293748565,0.3352197698547444,0.335349940688019,0.3390426670744762,0.3411479385610347,0.3480890844102282,0.3557951482479784,0.0,1.790772318988634,55.09738561457118,161.2185283948453,239.54836387244248,fqhc2_100Compliance_implementation,66 -100000,95697,45574,433.19017315067344,5718,58.6538762970626,4464,45.9993521218011,1768,18.05699238220634,77.288290147924,79.65866011599536,63.294707477804174,65.04437602391991,77.06877698175606,79.44288379886751,63.21168435312497,64.96591934843165,0.2195131661679425,215.7763171278475,0.083023124679201,78.45667548825475,171.1105,120.35268685860872,178804.45573006468,125764.32579768304,422.86501,280.03198827957635,441249.2241136086,291993.7388628446,398.36566,194.1031920908384,412530.1106617762,199916.43010716117,3147.0531,1445.0370908308232,3243882.1279663937,1465335.2464871644,1061.30661,476.4473786884316,1090368.444151854,479211.11287546216,1726.91802,733.3128656639788,1765179.1592212922,730971.9606210389,0.37796,100000,0,777775,8127.475260457485,0,0.0,0,0.0,36639,382.1854394599621,0,0.0,36197,374.6407933373042,1487374,0,53457,0,0,0,0,0,71,0.7105760891146012,0,0.0,1,0.0104496483693323,0,0.0,0.05718,0.1512858503545348,0.3091990206365862,0.01768,0.3352793994995829,0.664720600500417,24.260304386808727,4.344929672644179,0.3250448028673835,0.244847670250896,0.216173835125448,0.2139336917562724,11.197431647540116,5.836171485082615,18.90919754476277,11905.708778209251,50.72426105794151,13.089039421463877,16.56355343774473,10.592177841315449,10.47949035741746,0.5723566308243727,0.8014638609332113,0.6891798759476223,0.5844559585492228,0.1204188481675392,0.7275693311582382,0.93,0.828009828009828,0.6995305164319249,0.1650485436893204,0.5135886349598517,0.7272727272727273,0.6350574712643678,0.5518617021276596,0.1081441922563418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660529274146,0.0041970377429263,0.006504444534643,0.0087567809179381,0.0108209258807257,0.0131657994684804,0.0151403927326114,0.0173327208696983,0.0195855949788913,0.021870170806341,0.0240540318943959,0.0261034695134469,0.0280176845568579,0.0299591138940668,0.0319343159805671,0.0339086399338569,0.0359084272978597,0.0376201249507046,0.0396396958633673,0.0418990046380738,0.0564340923334029,0.070646995382344,0.0844904856366174,0.0971099604277174,0.1091569368494394,0.1248372033925224,0.1360001699072943,0.1468419706784862,0.1568271009549066,0.1664680046819797,0.1786084030713484,0.1904792858381002,0.2022282241728561,0.2123023693776551,0.221320233073017,0.2317457499223223,0.2408417945162589,0.2501268620530227,0.2584370661993946,0.2656651966188901,0.2732186561191467,0.2790356812025843,0.2846583696180905,0.2902772438977513,0.2954979968095081,0.299875227000383,0.3038543628374137,0.308202492251572,0.312816517335411,0.316881192703028,0.3157390800102491,0.3145512714435435,0.3130765210266842,0.311766750673503,0.3106207348690288,0.3082622568570902,0.304995562317738,0.3053169297481973,0.3053398556425957,0.3065827807467515,0.3068292682926829,0.3085997707781686,0.3104301165422989,0.3104048176647708,0.3132584915144696,0.3147543532338308,0.3152090715804394,0.3201578551741418,0.3221514111632467,0.3261472616311326,0.3298861047835991,0.3327677624602333,0.3340224268621186,0.3346969696969697,0.3368869936034115,0.3400256799346329,0.3417130814391088,0.347609561752988,0.3517722878625134,0.3596556886227545,0.0,2.563651097460108,53.3170868711042,164.08906989784668,243.79805398693017,fqhc2_100Compliance_implementation,67 -100000,95835,45996,436.0411123284813,5800,59.35201126936924,4572,47.18526634319404,1787,18.281421192674912,77.36488025655099,79.68055445007565,63.35773544642036,65.07156093598216,77.13574901679108,79.45182287741422,63.27291331724868,64.98905824188486,0.2291312397599085,228.73157266143096,0.0848221291716768,82.50269409730038,170.9983,120.32670982538704,178429.9055668597,125556.12232001568,424.58518,280.7524459229773,442511.2328481244,292427.8279603545,397.50837,193.84863057195489,411286.1793707936,199573.07626993227,3262.76988,1488.268152983956,3369688.234987217,1518105.944027635,1066.53771,470.535208312449,1098431.4081494235,476547.9136701269,1753.17014,743.7473834983964,1795701.695622685,748188.7144297417,0.38381,100000,0,777265,8110.450253039078,0,0.0,0,0.0,36716,382.5637814994522,0,0.0,36220,374.5187040225388,1495872,0,53702,0,0,0,0,0,71,0.7408566807533783,0,0.0,1,0.0104346011373715,0,0.0,0.058,0.1511164378207967,0.308103448275862,0.01787,0.3387043735613285,0.6612956264386715,24.34743265959161,4.27002217522878,0.3215223097112861,0.2440944881889764,0.2117235345581802,0.2226596675415573,10.917943970723158,5.685957138984279,19.25439418637604,12077.964675522931,51.98981554386766,13.414360071980653,16.609543745670248,10.736377220357094,11.229534505859656,0.5535870516185477,0.7732974910394266,0.6884353741496598,0.5609504132231405,0.1110019646365422,0.7297734627831716,0.9193154034229828,0.8597402597402597,0.7522123893805309,0.1157407407407407,0.4883093525179856,0.6888260254596889,0.6276497695852534,0.5026954177897575,0.1097256857855361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.004308771645241,0.006585355954217,0.0088063218624304,0.011114387691807,0.013430130737588,0.015647617688434,0.017702186740715,0.0198110893032384,0.0220175034546292,0.0243409994670602,0.0262925637815315,0.0285723095265013,0.0308875142807151,0.0328821910465607,0.0353570285643497,0.0373703209524105,0.0393820713664055,0.0413041221057003,0.0430924166918091,0.0580431177446102,0.0726522079958191,0.0862114117511496,0.099144222187221,0.1111731255265374,0.1273955968533868,0.1388059069048073,0.15051397348811,0.1599317260507787,0.1702672307609918,0.1822631482696672,0.1939186925080799,0.2051254196043497,0.2152880152880152,0.2248579873204926,0.2348108753579602,0.2435566149116749,0.2522681338423534,0.2604225639167553,0.2680902626946204,0.2756486495848874,0.2817121712638177,0.2879878070393081,0.2935329928596203,0.2991685379620076,0.3040036441533499,0.3079096398344814,0.3124594955206811,0.3171491744139438,0.3212757272092809,0.3197843999085984,0.3183617372182518,0.3178271646667793,0.3155628756356912,0.3144742905561088,0.312285486638882,0.3099812930023146,0.3103414249062561,0.3108149772190058,0.3118400801746662,0.3126822568810791,0.3137753076617705,0.3148436186312426,0.3154800637242803,0.3174427554358283,0.317296648219693,0.3173681664247702,0.3198440398704524,0.322921790457452,0.3285930528999363,0.3328907609193297,0.3350785340314136,0.3360645325203252,0.3362240982348426,0.3390248529690761,0.3396293656450463,0.3462246777163904,0.3459580533496233,0.3497117760087839,0.347542242703533,0.0,1.9881227318859729,54.400131615827405,168.20488106543016,254.01466382885783,fqhc2_100Compliance_implementation,68 -100000,95631,45410,431.2618293231274,5837,59.64593071284416,4623,47.6937394777844,1824,18.602754336982777,77.2563444549925,79.66757866651155,63.27473565930678,65.05626259654193,77.02368948130606,79.43865343292539,63.186750128724,64.97253582942176,0.2326549736864365,228.92523358615333,0.0879855305827774,83.72676712016869,169.76432,119.379867200578,177520.17651180056,124833.85847745814,420.33281,277.5561799117927,438864.4686346478,289566.0879577477,392.72057,191.38764510554324,407154.74061758217,197359.02420876245,3323.88494,1529.9367523297049,3428358.6807625145,1552563.1721080309,1122.15784,500.3641787408208,1151135.3013144273,501343.4483705305,1795.38502,768.5335137012023,1833087.868996455,766311.336862393,0.38001,100000,0,771656,8069.098932354571,0,0.0,0,0.0,36319,379.0925536698351,0,0.0,35870,371.5531574489444,1498695,0,53889,0,0,0,0,0,77,0.8051782371825036,0,0.0,0,0.0,0,0.0,0.05837,0.1536012210204994,0.312489292444749,0.01824,0.3397582489382554,0.6602417510617445,24.18754719729892,4.329161590269174,0.3188405797101449,0.2385896603936837,0.2147955872809863,0.2277741726151849,11.117396398854943,5.718959574840299,19.501054111940423,11972.493738404206,52.47615782321796,13.375758619138027,16.518374589483518,10.972885750945498,11.609138863650918,0.563054293748648,0.7896645512239348,0.6987788331071914,0.5820745216515609,0.1177587844254511,0.7221350078492935,0.9166666666666666,0.8920308483290489,0.7215189873417721,0.1166666666666666,0.5025380710659898,0.7151079136690648,0.6294930875576037,0.5383597883597884,0.1180811808118081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686990428925,0.0046217933774565,0.0067587452683708,0.0092347078723598,0.0114457218435242,0.0136609516824057,0.0157601599477721,0.0179921533368752,0.020068326412045,0.0222099289036408,0.0244417993761287,0.0266576232170016,0.0288976280678636,0.0308276025610623,0.0329321832549971,0.0347678521538477,0.0367486990234901,0.0390065028151164,0.0410401556695559,0.0428283839742988,0.0576062873625684,0.0716680285792109,0.0852055599882417,0.0983240693953175,0.1101812079828607,0.1254630511631845,0.1358420466004989,0.1468360901935305,0.1569388322322707,0.1668652263043221,0.1798772926753,0.1916124837451235,0.202490548770523,0.2127081209650017,0.2224808339308367,0.2324107073465898,0.2411975967509146,0.2495828823953824,0.2583017859781953,0.2657341854941423,0.2724162327043296,0.2787556139260544,0.2842923241191126,0.289556468073866,0.2943167841790572,0.2998406482773955,0.304809682071863,0.309417554954863,0.3138437982534677,0.3183013705872246,0.3176530915175559,0.3161140775694358,0.3149255630487339,0.3136967622142277,0.3131994389566982,0.3112072149716818,0.3085248402784399,0.3088952606947465,0.3104473507828209,0.311647278471923,0.3117027490437699,0.3129308460973041,0.3135332968743426,0.3144493668053877,0.3161883224673419,0.3178227887698444,0.3183855222219051,0.3216635708213959,0.3257663338588194,0.3284474903933764,0.331408565972538,0.3363578478191659,0.3409391742830129,0.3412174967781063,0.3412580943570767,0.3401759530791788,0.3458770614692654,0.3447933227344992,0.3555138180842501,0.3636363636363636,0.0,2.3578680200790934,55.61685195087984,167.77897184952718,254.3691043944097,fqhc2_100Compliance_implementation,69 -100000,95695,45981,436.3864360729401,5745,58.8954490830242,4478,46.2302105648153,1772,18.130518835884843,77.32722884548278,79.70416053573503,63.32110870231941,65.07602074352651,77.1037558883684,79.48255461314112,63.23861397350439,64.99679642608648,0.2234729571143816,221.6059225939091,0.0824947288150284,79.22431744003688,170.90238,120.24490320005296,178590.4801713778,125654.11822523098,425.0328,281.9154849512425,443593.9495271436,294039.3553276716,402.99923,196.62685257743317,417672.0622812059,202812.273188514,3191.17154,1468.945720399274,3295979.2883640733,1496412.7689752795,1022.47449,459.0874654217987,1054210.0841214273,465648.860452688,1729.70916,729.057789896615,1771442.4369089296,730773.9355294037,0.38274,100000,0,776829,8117.749098698992,0,0.0,0,0.0,36787,383.83405611578456,0,0.0,36693,380.0094048800878,1489947,0,53530,0,0,0,0,0,79,0.8255394743717018,0,0.0,0,0.0,0,0.0,0.05745,0.1501018968490359,0.3084421235857267,0.01772,0.3491958215884596,0.6508041784115404,24.199071681837875,4.326172527748299,0.3050468959356855,0.2505582849486378,0.2288968289414917,0.2154979901741849,11.423527455604784,6.057432100005551,18.8644562684579,12033.635931803154,51.08716278525062,13.459871575008629,15.457587225967387,11.486565440817127,10.683138543457469,0.5634211701652524,0.7914438502673797,0.7027818448023426,0.5570731707317074,0.1077720207253886,0.7435897435897436,0.9456264775413712,0.8672086720867209,0.6809338521400778,0.1658291457286432,0.4938080495356037,0.698140200286123,0.641925777331996,0.515625,0.0926892950391645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0045808798937884,0.0067870548848534,0.009009009009009,0.0113279303647512,0.013460539847067,0.015581343177044,0.0177095993381879,0.0199619577444623,0.0221912730028366,0.0244077530509691,0.0265803933651722,0.0289749233712534,0.0310352289002689,0.0331176403810231,0.0349017580144777,0.0370569892361722,0.0391810801270737,0.0412211358435614,0.0431954636424282,0.0576678017088303,0.0721626826307196,0.0857415585369179,0.0982630377376355,0.1107876640087752,0.1260975351740188,0.1379723864203164,0.1495820688920832,0.1607675131675943,0.1711254612546125,0.1822656914807673,0.19382110652854,0.2050099524674505,0.2148895912854221,0.2238240926199018,0.2339034873930961,0.2431726616296329,0.2517182033947874,0.2601911117163739,0.2679015315532034,0.274409020397768,0.281102270067868,0.28757442678062,0.2926119000539277,0.2977446167306664,0.3028849710270003,0.3070893747026269,0.3110392586180559,0.314851998186411,0.318349241554121,0.3172583015382956,0.3161161574456372,0.3150136692877878,0.314267973950587,0.3120792903101178,0.309906897556636,0.3072976054732041,0.3070849373413056,0.3077736106375724,0.3081714000996512,0.3088694157433531,0.3096711875098565,0.31076646531363,0.3126045920074971,0.3137155908162038,0.31617128989327,0.3171337252439929,0.3205285512033978,0.3261509354635274,0.3281715306730196,0.3309556470050297,0.3363733333333333,0.339757361304183,0.3447219243143864,0.3493085811706762,0.3520674904942966,0.3566272461987406,0.3543610547667343,0.3602758620689655,0.3618497109826589,0.0,2.191279734535308,54.64773687506179,167.53981234507322,239.96656276417292,fqhc2_100Compliance_implementation,70 -100000,95784,45881,434.7803390963,5903,60.448509145577546,4623,47.74283805228431,1769,18.144992900693225,77.38146625236273,79.70466399393861,63.35451413110488,65.06782003743953,77.1616145338152,79.486528114346,63.27254985972885,64.98902640517628,0.219851718547531,218.13587959260872,0.0819642713760302,78.79363226325609,169.367,119.2477065015498,176821.80739998328,124496.47801464732,420.90117,277.6813826230665,438930.6042762883,289406.8974182186,405.00733,196.24962508221435,419494.12219159777,202340.68786071503,3313.38746,1509.9257658882707,3422447.569531446,1539605.2429302076,1101.23261,490.3410056241769,1137868.715025474,500088.28783948993,1737.50632,731.9493621495038,1783068.8423953897,736651.968445669,0.38208,100000,0,769850,8037.354881817422,0,0.0,0,0.0,36336,378.8315376263259,0,0.0,36851,381.4520170383362,1503280,0,53987,0,0,0,0,0,77,0.8038920905370416,0,0.0,1,0.0104401570199615,0,0.0,0.05903,0.1544964405360134,0.2996781297645265,0.01769,0.3323091849935317,0.6676908150064683,24.381061604273555,4.352385135323729,0.3155959333765953,0.2407527579493835,0.2199870214146658,0.2236642872593554,11.048938985555058,5.661363064821329,18.799664193496724,12097.995091120563,52.41620491994938,13.398619163410814,16.48628567714095,11.221149350033029,11.310150729364606,0.5749513303049968,0.8068283917340521,0.7210418094585332,0.5830875122910522,0.1112185686653771,0.7347266881028939,0.9234449760765552,0.8661417322834646,0.7244444444444444,0.1590909090909091,0.5161290322580645,0.7366906474820144,0.6697588126159555,0.5429292929292929,0.0982800982800982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084867262013,0.0044793060115934,0.0068471612176788,0.0089568608335364,0.0113272392650512,0.0134271229920394,0.0157065394651011,0.0181532464616985,0.0203821005312627,0.0225282370273367,0.0247203212719747,0.0269319161160586,0.0292476389160081,0.0314182477017943,0.0333518907996206,0.0354948312007518,0.0375536813783825,0.039873102761881,0.0416359348867166,0.0432306362775007,0.0576080150281778,0.071614678707085,0.0845875504745922,0.0971227937388964,0.1099339005028622,0.1253688407559781,0.1372931692829868,0.1489760292928002,0.1592028110948531,0.1698060615157005,0.1830629622054533,0.1952809887864009,0.207169885177453,0.2176599910310958,0.2274387694474396,0.2373471015777344,0.2471117461238796,0.2551788547445173,0.2629290280095825,0.2705599174737807,0.2770713177217242,0.2833606557377049,0.2889978329603183,0.2945004374243495,0.299419381483371,0.3041121541380245,0.3080117061457265,0.3116990439381611,0.3153608100583978,0.3194014107719691,0.3187774100680711,0.3179644339389275,0.316756985009501,0.3156997080334172,0.3150165727790247,0.3132847430636369,0.310533883174543,0.3106265245649362,0.310963036179894,0.3111881892564923,0.3110924369747899,0.3120130636656961,0.3132371667745235,0.3135946808273277,0.3139975081464443,0.3160176531671859,0.3166907657849224,0.3197412823397075,0.3221884498480243,0.3264966740576496,0.3305818857998095,0.332332174096322,0.335074951794489,0.3390506281501542,0.3402061855670103,0.3437573477545262,0.347904733192644,0.353704813261434,0.3540930106064727,0.3479420731707317,0.0,2.057298037631109,54.71790873843232,173.34985512035044,251.1096934461316,fqhc2_100Compliance_implementation,71 -100000,95748,45123,428.11338095834896,5768,58.91506872206208,4512,46.45527843923632,1769,18.0787066048377,77.31912755708531,79.66873146194777,63.32066847763053,65.05816916435059,77.09488525878444,79.44891948468096,63.23638016865189,64.97857705889196,0.2242422983008651,219.811977266815,0.0842883089786497,79.59210545863016,170.96596,120.22288165223446,178558.25709153194,125561.76802881988,421.47938,278.0438267801783,439547.12369971175,289741.85025293304,387.51076,188.9619502285573,400694.3121527343,194188.87918334044,3207.83008,1463.6958694317889,3306739.399256381,1485207.4495179355,1074.24682,477.6145948572116,1104858.1902494046,481859.7352268933,1725.06418,731.5947175709331,1764951.1008062833,731947.4871458855,0.37695,100000,0,777118,8116.284413251451,0,0.0,0,0.0,36488,380.3943685507791,0,0.0,35346,365.1355641893303,1496619,0,53761,0,0,0,0,0,82,0.8459706730166687,0,0.0,1,0.0104440823829218,0,0.0,0.05768,0.1530176415970288,0.3066920943134535,0.01769,0.3379560838699026,0.6620439161300974,24.464110718573284,4.27708646644045,0.3204787234042553,0.2422429078014184,0.2189716312056737,0.2183067375886525,11.223203950317677,5.919464342382164,18.939188457769298,11939.41875034747,51.06872056919477,13.106080927247024,16.23084585862534,10.977744790841191,10.754048992481234,0.5707003546099291,0.7913998170173834,0.6936376210235131,0.5759109311740891,0.1401015228426396,0.7435470441298918,0.9262899262899262,0.8579387186629527,0.7336244541484717,0.1941747572815534,0.5080036242826941,0.7113702623906706,0.6393744250229991,0.52832674571805,0.1258023106546855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024405310433523,0.0044994375703037,0.0069295077310174,0.0091714233480265,0.0113087429193235,0.01362622590205,0.0157328575070099,0.0177367969611567,0.0198666693932639,0.0221334971334971,0.0241974346617998,0.0263276789748223,0.0281900177923133,0.0303083373682638,0.0324817367617318,0.0345194662918445,0.0365964759715924,0.0384427870501955,0.0405361874577856,0.0424113652460109,0.0569415448851774,0.0705879891628398,0.0838131797824696,0.0966887138666021,0.1089277996226057,0.1241673187133884,0.1361327068506517,0.1465267727930535,0.157264135832132,0.1666595197255574,0.179428645266887,0.1917041814561509,0.2027864787261811,0.2131642247977258,0.2227148216191241,0.2324983943481053,0.2417257353351565,0.2500534470536608,0.2576423179522107,0.2659252811691138,0.273243024198217,0.2797944443794116,0.2859478479273046,0.290983065493693,0.2964841232198669,0.3007491884819985,0.3048212093116496,0.3092681062488056,0.3136385442192747,0.3167855256207079,0.3156837635640628,0.3148900425508475,0.3139406935078859,0.3120096123223023,0.3107320265326155,0.3090602483519852,0.3060376939781571,0.3061278133727616,0.3068106113663927,0.3083801280446367,0.309140037153097,0.3108677171269844,0.3123281922148778,0.3127954652387247,0.3134885288524037,0.314197740260418,0.3150392017106201,0.3190968187670759,0.3209175084175084,0.3228458498023715,0.3275588408688948,0.3317259286736262,0.3347169811320755,0.3391264578092842,0.3446912650602409,0.3427932171455488,0.3414968055978095,0.3399273314493338,0.3408157678620312,0.3308185590343266,0.0,2.5724929005851345,52.06961876027185,170.9871891147391,244.5251052549531,fqhc2_100Compliance_implementation,72 -100000,95665,45677,434.68353107196987,5791,59.10207494904092,4587,47.195944180212194,1854,18.920190247216848,77.34181859432726,79.72518193467138,63.3271521787835,65.08590167599473,77.11284538927049,79.49832896347752,63.24200174254592,65.00424902139765,0.228973205056775,226.85297119386405,0.0851504362375763,81.65265459707882,170.26438,119.73580029074438,177979.80452621126,125161.55364108544,422.56976,279.3730580000685,440976.59541106987,291291.0238855052,401.42155,196.22338962825103,414444.30042335234,201228.4188743687,3293.75104,1518.6169231238966,3396776.940364815,1541203.724584641,1081.76742,492.04917819524667,1110557.215282496,494116.9057532263,1805.5294,759.0874056126995,1845907.364239795,758644.1031448204,0.38038,100000,0,773929,8089.991114827784,0,0.0,0,0.0,36462,380.3585428317566,0,0.0,36683,378.2679140751581,1498014,0,53842,0,0,0,0,0,73,0.7630794961584696,0,0.0,1,0.0104531437829927,0,0.0,0.05791,0.1522424943477575,0.3201519599378346,0.01854,0.338035099229129,0.6619649007708709,24.07216977908461,4.364897416385146,0.3296272073250491,0.2343579681709178,0.2166993677785044,0.2193154567255286,11.30619404110204,5.818571466591278,19.8136405144012,11991.105533514226,52.38223611871192,12.957954937393106,17.202350382340676,11.138914358329716,11.083016440648422,0.5642031829082189,0.786046511627907,0.6944444444444444,0.5824949698189135,0.1133200795228628,0.7467282525019245,0.9377880184331796,0.8546365914786967,0.7603305785123967,0.1696428571428571,0.4920924574209245,0.6833073322932918,0.6370170709793351,0.5252659574468085,0.0971867007672634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0043382628703487,0.0067368079299534,0.0089069894984867,0.0110627567413673,0.0133175857294127,0.0155439358264787,0.0178332635791063,0.019838714623003,0.0221109848601173,0.0241981789844967,0.0261376824245909,0.0282707323848029,0.0300988180984471,0.0321508561520121,0.0341738896588816,0.0362472021885103,0.0383209784256317,0.0399675432756324,0.0420115505702312,0.0565868232197139,0.0707263189856453,0.0841117571737442,0.0976998190159518,0.1102261698805856,0.1257443860335727,0.1373562242689189,0.1480487960656575,0.1593354345851808,0.1687918923266663,0.1818377633222763,0.1931792370177279,0.2046697769512686,0.2144145522918329,0.223633843717001,0.2339737556060019,0.2432960239256341,0.2516869854694318,0.2602854743912678,0.2671414830760775,0.2743336224342295,0.279946683503455,0.2856754295715519,0.2907986631048073,0.2959634720940399,0.3011384638131145,0.3058058058058058,0.3101701602331589,0.3134846600331675,0.317137237819929,0.3158100317870804,0.3153722284157066,0.3140347909442048,0.3130854631664161,0.3110060649304317,0.3087269938650306,0.3073183862182532,0.3082553750205153,0.3094456974916273,0.3107589628281314,0.3119296933433059,0.3135792236496754,0.3145510447386584,0.3157506702412869,0.3167510984130033,0.316730989882132,0.3167208069755514,0.3218314949247352,0.3239401934916446,0.3280288900353189,0.3317095379012064,0.3353090601185436,0.3372252747252747,0.3405462661723538,0.3421738321235809,0.3503554502369668,0.3543127095397744,0.3567263221395536,0.3595132743362831,0.3625910310463779,0.0,2.87865290759113,56.18667091318631,170.3123981708451,244.41826895083685,fqhc2_100Compliance_implementation,73 -100000,95692,45514,432.7529992057853,5766,59.18990093215734,4573,47.32893031810392,1884,19.343309785562013,77.38307130315455,79.75824423306881,63.34642469116329,65.09706464438787,77.15153166958004,79.52630539281967,63.26078402387529,65.01329582833783,0.2315396335745134,231.9388402491427,0.0856406672880041,83.76881605003916,171.13778,120.38070734380352,178842.30656690217,125800.17905760514,424.55053,280.61952771588057,443130.5333779208,292719.8383520886,396.26689,192.90726454473,410982.9766333654,199239.72265662416,3291.07962,1491.8153546503868,3406077.226936421,1525811.0966960546,1130.40761,496.582727063202,1169104.1779877106,506744.8554353573,1845.75862,773.7050058634941,1896572.419847009,782185.3343344216,0.37888,100000,0,777899,8129.195753041007,0,0.0,0,0.0,36707,383.125026125486,0,0.0,36133,374.5140659616269,1492930,0,53633,0,0,0,0,0,80,0.8255653555156126,0,0.0,0,0.0,0,0.0,0.05766,0.1521853885135135,0.3267429760665973,0.01884,0.3441783649876135,0.6558216350123864,24.09720567179941,4.449443547741345,0.3000218674830527,0.2444784605291931,0.2245790509512355,0.2309206210365187,11.283064413199618,5.833853691609596,20.03226981617938,11873.307972818837,51.68102306357685,13.316511394711943,15.563243923753095,11.281805816894348,11.519461928217464,0.5670238355565275,0.8014311270125224,0.7004373177842566,0.5890944498539435,0.1240530303030303,0.723404255319149,0.8967254408060453,0.8620689655172413,0.7566371681415929,0.1441441441441441,0.5099970158161743,0.7489597780859917,0.6391959798994975,0.5418227215980025,0.118705035971223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866110565583,0.0044171580248414,0.0067849210454255,0.0087838661196636,0.0109501296324538,0.0128872013599763,0.01497482109727,0.0171789035307086,0.0192981918166671,0.0215079080718636,0.0237038252150465,0.0256921054793395,0.027727211954789,0.0295926250193129,0.0318360946623475,0.0338580154407433,0.0359044481737004,0.038308251167618,0.0400690522987967,0.0420626980156745,0.057550875433538,0.0717329173689555,0.0845345250834015,0.0975617449452733,0.1089381352001012,0.1243339817320703,0.135854816824966,0.1471429634907637,0.1577161514740874,0.1672756104616901,0.1794571099658945,0.1908741958155376,0.2018912015651323,0.2118016088135,0.2204978166899479,0.2312430755594948,0.240430141147043,0.2488119636945114,0.2564600363306085,0.2642957802958261,0.2705770721716289,0.2768908448231466,0.2837348113408655,0.2891712256454554,0.2943136086760933,0.2995645791960133,0.3040625156539598,0.3082349645362978,0.3120219854294677,0.316000845487212,0.3148838774823291,0.3135057076055563,0.3126381750334436,0.311115606351775,0.3096560532256148,0.307421198608621,0.30474440995756,0.3049386971293515,0.3059260019149227,0.3067938276896699,0.3055581486529378,0.3055342271572854,0.3064721474338906,0.3081990563518205,0.3088744950883147,0.3106441415764108,0.311168934015895,0.3149078204448326,0.3191682366896937,0.3220898690883358,0.3247364372652821,0.3280806807437756,0.3330633100697906,0.3322806226032032,0.3362316159467209,0.341767723880597,0.3463553360275407,0.3452194357366771,0.3491724506139882,0.3585951940850277,0.0,1.771044366928824,53.91191213697081,170.13968603802374,250.08972222279957,fqhc2_100Compliance_implementation,74 -100000,95704,46028,436.7947003260052,5733,58.82721725319736,4498,46.539329599598766,1777,18.264649335450976,77.3960056150407,79.78060227097363,63.35197710932333,65.11310924675603,77.18319289734458,79.56832833079724,63.27312493240488,65.03651227733593,0.2128127176961243,212.273940176388,0.0788521769184527,76.59696942009475,171.72232,120.87091528183232,179430.66120538328,126296.61799071336,426.54611,281.2302258975117,445219.2384853297,293380.35599087994,399.73234,194.31549583788444,414811.97233135503,200776.41633270084,3197.43878,1457.5150882189253,3309205.268327343,1491407.159968875,1053.46725,465.1927910947339,1088628.751149377,474089.01934995776,1731.29072,719.003515993921,1780927.8609044554,727574.784661455,0.38192,100000,0,780556,8155.93914569924,0,0.0,0,0.0,36864,384.69656440692137,0,0.0,36460,378.1033185655773,1493758,0,53486,0,0,0,0,0,75,0.783666304438686,0,0.0,1,0.0104488840591824,0,0.0,0.05733,0.1501099706744868,0.3099598813884528,0.01777,0.3381103149475087,0.6618896850524912,24.36253700262085,4.298021806521911,0.3134726545131169,0.245664739884393,0.2276567363272565,0.2132058692752334,11.465619483905671,6.092677021257243,18.841576826199844,12014.366818502183,50.91518537937843,13.219066530632023,15.789920433277254,11.474180208642544,10.43201820682661,0.5675855935971543,0.7909502262443439,0.6971631205673758,0.5634765625,0.1240875912408759,0.7379983726606998,0.9088729016786572,0.8836565096952909,0.712,0.154228855721393,0.5035178953808505,0.7194767441860465,0.6329837940896091,0.5155038759689923,0.1160949868073878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995026185965,0.0048467887489606,0.0072166622683258,0.0095707391414782,0.0116371330335889,0.0135523153993402,0.0157121445394944,0.0178970688827859,0.0199656504937741,0.0221601261028884,0.0246257945458273,0.0268796780188301,0.0289922145773554,0.0310253188026616,0.0331204407804455,0.035104403555923,0.0369576250996965,0.0390695550181127,0.0412775339559456,0.0432516935904116,0.0581040713584424,0.0719279151055947,0.0850543848792204,0.0981484791454195,0.1103603841005154,0.1259437852928113,0.1372045657062842,0.1482431583765314,0.158630634479812,0.1686757324868088,0.1804740418474925,0.1924765839624478,0.2045269323133428,0.2143606557377049,0.2230723567047028,0.233202368435615,0.2424151195852149,0.2510669841412462,0.2594773980903623,0.2662011109333211,0.273558336026594,0.2799257763721451,0.2864462809917355,0.2920518002128448,0.2978697622567433,0.302978179673678,0.3078054862842893,0.311788710617697,0.3157623205602775,0.3197376376876363,0.3185469271720327,0.3171456752239787,0.3143057700407132,0.3129096855055969,0.3123833506147237,0.3099858021769995,0.3072356683875653,0.3078081519070224,0.3080329767663691,0.3086380215283338,0.3093451314217443,0.3100796538499361,0.3115119451792297,0.3126068708223224,0.3141292390108576,0.3158563134978229,0.315993327867462,0.3193905643849331,0.3235930735930736,0.3297603037734356,0.3331665605385245,0.3352055955913522,0.3383600377002828,0.3411675511751327,0.3436061260922672,0.3485064011379801,0.3501293956462171,0.3540234532955923,0.3453848260750479,0.3528960490985807,0.0,1.7336900414371317,54.26356486462265,166.59034304793312,242.7510093092413,fqhc2_100Compliance_implementation,75 -100000,95816,46160,436.1693245386992,5874,60.06303748851966,4626,47.64339984971195,1830,18.723386490773983,77.38566316619061,79.70479499872184,63.36611244363343,65.08322649738197,77.15997177227484,79.48144848655954,63.282163420489645,65.00274072972451,0.2256913939157669,223.34651216229415,0.0839490231437807,80.48576765746418,171.1457,120.4431040777335,178619.1241546297,125702.49653266,425.81139,282.1324027549522,443788.563496702,293835.5418249062,408.36485,199.55282675949616,421484.0110211238,204742.89483048324,3284.13589,1508.669538938214,3388320.7606245307,1535325.069861208,1097.49922,487.1642967353779,1131042.5398680803,494056.1041322725,1781.15656,745.6201354442863,1824607.226350505,749158.7922655034,0.38249,100000,0,777935,8119.051097937714,0,0.0,0,0.0,36787,383.2867162060616,0,0.0,37286,384.43474993738,1493267,0,53594,0,0,0,0,0,69,0.7201302496451532,0,0.0,1,0.0104366702847123,0,0.0,0.05874,0.1535726424220241,0.3115423901940756,0.0183,0.3286109754111708,0.6713890245888292,24.12914263890201,4.312244441217307,0.3197146562905317,0.2447038478166882,0.2213575443147427,0.2142239515780371,11.235554889333438,5.867090627081277,19.478873713225777,12100.109267126993,52.68986535295473,13.565774301557882,16.88410362010059,11.308489090737604,10.931498340558669,0.5711197578901859,0.7879858657243817,0.7018255578093306,0.57421875,0.1251261352169525,0.7384855581576893,0.9148418491484184,0.875,0.7137254901960784,0.1497584541062802,0.5070254110612855,0.7156726768377254,0.6358543417366946,0.5279583875162549,0.1186224489795918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025320814722534,0.0047646563871739,0.0072160030853234,0.0096214414890374,0.0118088612229952,0.0142449852357193,0.0165224393276865,0.018644759669354,0.0206962102939372,0.0228005362424143,0.0251491114800467,0.0275485486718397,0.0296402877697841,0.0319608852290272,0.0342964383674647,0.0361514228167122,0.0383349888254283,0.0406927932503446,0.042604226156482,0.0446409989594172,0.0593223874992176,0.0735707640362522,0.0874035720275029,0.0999579743643622,0.1123189550745246,0.1275982256020278,0.1393565064465892,0.1504432303735039,0.1616677688418627,0.1715041555993488,0.1833980363268773,0.1947177963813124,0.2061362081881249,0.2161710767618548,0.2249692469905983,0.2354885788205117,0.2444776152655089,0.2533835008704442,0.2612453415797283,0.2673654371506624,0.2748816260538168,0.2809604928476419,0.2873835912326051,0.292602196278992,0.2979040284790584,0.3037659164302992,0.307935993215181,0.3119247445422044,0.317593464878886,0.3210574773115875,0.3190440366479486,0.3173705310560711,0.3162104789619445,0.3148666589702147,0.3131650416277102,0.3103928500374944,0.3085972134262191,0.3091007619548082,0.3100256629597947,0.3106024053324756,0.3118704362478937,0.3129075603683358,0.3134848930537462,0.3133910158701695,0.3130837738034899,0.3137193285673135,0.3150485020173405,0.3178206583427923,0.3201452801579745,0.3237381389043935,0.3279265283743032,0.3319704773535815,0.3329974811083123,0.3350809209026669,0.3405359501792791,0.3442661913250148,0.3436973502833512,0.3454766241651487,0.3523443926514943,0.3589645984012181,0.0,2.509068702567756,55.69373580952948,172.59902761082785,249.56332705062755,fqhc2_100Compliance_implementation,76 -100000,95766,45851,434.35039575632265,5824,59.48875383747885,4606,47.50120084372324,1822,18.6600672472485,77.37657405990127,79.72159985373851,63.3458979718325,65.07904381339213,77.14592857149538,79.49302252815949,63.259166022157736,64.99568310747568,0.2306454884058979,228.57732557902463,0.086731949674764,83.36070591644784,169.89346,119.53460934899684,177404.77831380657,124819.46551907444,425.00549,280.8887531580454,443228.7450660986,292740.32867410703,404.45355,196.91553246006927,418311.5823987637,202540.69189980207,3277.78933,1508.1129645509843,3380612.566046405,1532695.3872470243,1086.11684,487.4301933041008,1118742.382473947,493586.6417142831,1781.34298,754.6901496220652,1825361.485287054,758514.9500672362,0.38293,100000,0,772243,8063.85355971848,0,0.0,0,0.0,36688,382.48438903159786,0,0.0,36897,381.3775243823486,1498523,0,53755,0,0,0,0,0,82,0.8458116659357182,0,0.0,0,0.0,0,0.0,0.05824,0.1520904603974616,0.3128434065934066,0.01822,0.3438324538258575,0.6561675461741425,24.329383246008323,4.302799164877664,0.3145896656534954,0.2457663916630482,0.2223187147199305,0.2173252279635258,11.361228374197584,5.967119703957816,19.41304743473132,12033.799781779748,52.33884770891392,13.57401810086454,16.368524742140767,11.363166155874708,11.033138710033896,0.5629613547546678,0.7932862190812721,0.6721877156659766,0.583984375,0.1228771228771228,0.7436708860759493,0.9290617848970252,0.841688654353562,0.7456140350877193,0.2045454545454545,0.4946140035906642,0.7079136690647482,0.6121495327102804,0.5376884422110553,0.0998719590268886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025625443127722,0.0049366947460187,0.0074778303131151,0.0097525295623552,0.0115633390285574,0.0140120772700888,0.0161923504399873,0.0183975170498631,0.02076283748556,0.0229908589327573,0.0252439324368645,0.0273862924831401,0.0294126718137985,0.0314315139031925,0.0334461271819419,0.0354843044228761,0.037442789984882,0.0397219772809793,0.0416887585898595,0.0435434653558149,0.0583127198338395,0.0725162099979083,0.0860590430662137,0.0985885889041858,0.1106520662289345,0.1264085921478255,0.1377193447489794,0.1491168333688018,0.1601610474491921,0.1695476869624895,0.182391969324889,0.1938366984786513,0.2043951261966927,0.2145920868347338,0.2235225471199577,0.2334729981378026,0.2426357281640127,0.2506752498424417,0.2588860138907803,0.2668361446059065,0.2742711707542804,0.2812912881312334,0.2876786833299833,0.2922793237224005,0.2977038988792695,0.3023568110978329,0.3066175092170218,0.3110806279530559,0.3151186090104065,0.3188264445381695,0.3172265520021499,0.316411883472743,0.3144078401597278,0.3133910533910534,0.3119226606171137,0.3101539684723942,0.3073614975967619,0.3077767582093465,0.3089181211717937,0.3094898831575947,0.3102396106327218,0.312051140399337,0.3139654054506285,0.314266622118276,0.3155080213903743,0.3145131914450746,0.314856379805097,0.3180879038317055,0.3218475330041671,0.3243103994927077,0.3249647518988493,0.329745493107105,0.3320368860171884,0.3346209194879951,0.3381804623415361,0.3386660392894953,0.3409607516290347,0.3448070035813768,0.3428958051420839,0.3542059600150886,0.0,2.3212022371987606,55.02685683042931,175.73324007707188,244.00133669749087,fqhc2_100Compliance_implementation,77 -100000,95755,46018,436.5516161035977,5728,58.691452143491205,4430,45.71040676727064,1722,17.586549005273877,77.3313489084019,79.69802545665668,63.31030609897547,65.06342083813266,77.11487885306406,79.48419988689999,63.22957171653956,64.98629111075046,0.2164700553378509,213.8255697566933,0.0807343824359065,77.12972738220003,172.21842,121.23509443265222,179852.95807007467,126609.44538943366,423.43616,279.97938852668057,441648.57187614223,291833.52307284926,399.70356,194.67717222266128,414094.13607644505,200672.2452601153,3167.67921,1436.029755679595,3266803.6551616103,1459011.5145442393,1023.87793,449.7808843704245,1053773.2442170123,454239.7671132336,1686.01452,711.893651979361,1722875.1918959846,711839.1072123417,0.382,100000,0,782811,8175.134457730667,0,0.0,0,0.0,36624,381.89128505038906,0,0.0,36359,376.3563260404157,1485117,0,53235,0,0,0,0,0,78,0.8145788731658922,0,0.0,0,0.0,0,0.0,0.05728,0.1499476439790576,0.3006284916201117,0.01722,0.3458583834335337,0.6541416165664663,24.475915836533662,4.339684486715023,0.3167042889390519,0.2476297968397291,0.2144469525959368,0.2212189616252821,11.326429964932196,5.827969928299888,18.366512132088367,12039.448526462133,50.06422864388863,13.207792808374158,15.65702475640072,10.567825949185025,10.631585129928736,0.5525959367945824,0.7930720145852325,0.6678545972915182,0.5642105263157895,0.1071428571428571,0.7443478260869565,0.9218009478672986,0.8773006134969326,0.6891891891891891,0.1555555555555555,0.4853658536585366,0.7125925925925926,0.6044568245125348,0.5260989010989011,0.09625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.004502266343531,0.0068409033240294,0.0090530380004064,0.0112209810982929,0.0134330030247171,0.0158048760591816,0.0181238959739424,0.0203847845431578,0.0226662842862117,0.0246759107318674,0.0264858478450711,0.028517032005763,0.0303729889618353,0.032638989244204,0.0347655240163383,0.0370197783990887,0.0390179108814312,0.0409260067776876,0.0430394250299463,0.0580737431100718,0.0723412270696204,0.0856735237655648,0.0978926115212316,0.1106975665303024,0.1265812074290307,0.1369752536185746,0.1488128841217259,0.1600316344088319,0.1700449604584035,0.1830272460769098,0.1947780509199597,0.2052995993729315,0.2150277501067311,0.2232632390179456,0.2333658514954659,0.2430989815972842,0.2514857503039034,0.2596795424628932,0.2667911730332959,0.2743160038887088,0.2810663357295057,0.2880078675782314,0.2927505612042783,0.2985878832844789,0.304028310378417,0.3088146961657824,0.3128372187722691,0.3173712449132992,0.3207405257046342,0.3191612573060037,0.3176056531661579,0.315951653979823,0.3149639249639249,0.3132280150567592,0.3114841745081266,0.3083792184024107,0.3085936860710603,0.3086485011765508,0.3092423810880091,0.3098552078468005,0.3105793301925844,0.3115093039283252,0.31287905815198,0.312819405455985,0.3135597628211796,0.3138290321664821,0.3171015038774293,0.3201040531514746,0.3236019409752605,0.3267655624317437,0.330830645587691,0.3364661654135338,0.3371847152998036,0.3387320684868116,0.3372726219441548,0.3418116912092815,0.3461988304093567,0.3459286854709952,0.3514412416851441,0.0,2.095446966666871,50.304008726018026,166.1150447631815,247.1933011088,fqhc2_100Compliance_implementation,78 -100000,95484,45883,437.3088685015291,5772,59.266473964224375,4464,46.10196472707469,1760,18.023962129780905,77.22623088476638,79.71479541077484,63.24095407219974,65.07674586440915,77.00127469112988,79.49116220036686,63.15725331560597,64.99605197113493,0.2249561936365012,223.6332104079821,0.083700756593771,80.69389327421561,169.59998,119.38236387124785,177621.36064680995,125028.65806967432,424.03283,281.1203254142402,443413.5876167735,293752.6844456811,403.40583,196.70679765338323,418220.46625612665,202655.5552638002,3203.76978,1470.8953389448643,3312059.6435004817,1498071.202550917,1075.84877,482.9904965663241,1110023.8050353988,489125.77663935657,1733.21098,734.9719618872521,1777137.8241380756,738563.127524478,0.37984,100000,0,770909,8073.698211218634,0,0.0,0,0.0,36686,383.5302249591555,0,0.0,36703,380.2731347660341,1490162,0,53532,0,0,0,0,0,76,0.774998952704118,0,0.0,0,0.0,0,0.0,0.05772,0.1519587194608256,0.3049203049203049,0.0176,0.3402537485582468,0.6597462514417531,24.10926200620056,4.352692894106252,0.3194444444444444,0.2379032258064516,0.2188620071684587,0.2237903225806451,10.979690213131272,5.536116769267439,18.856441434644783,11946.998247894222,50.74380823116019,12.776262985806897,16.152120432405756,10.732768978644868,11.082655834302685,0.5582437275985663,0.768361581920904,0.6984572230014026,0.5875127942681678,0.1061061061061061,0.7171888230313294,0.9184210526315788,0.8637602179836512,0.7536231884057971,0.1101321585903083,0.5010660980810234,0.6847507331378299,0.6411709159584513,0.5428571428571428,0.1049222797927461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020773167147996,0.0043007698783815,0.0065790809592462,0.008795119471276,0.0110563609708421,0.0130153391428425,0.0150715823630853,0.0173298183230131,0.019499319672215,0.0216081637671359,0.0236594678929216,0.0259310288099693,0.0281524805898222,0.0299314114795523,0.0319580918136449,0.0343428068540663,0.0361721991701244,0.0382632377705245,0.0403500546960462,0.0423001420098571,0.0572239027811214,0.0712599540461427,0.0849273868739023,0.0977519682134839,0.1099052067591702,0.1251974095625722,0.1373422499122872,0.1485575281666097,0.1593158255505098,0.1691371693306532,0.181296020383926,0.1926289073515694,0.203720058003249,0.2134596200436303,0.2232912230374579,0.2340319139479064,0.2426588211604935,0.251783962934154,0.2594538651381259,0.2658381814635042,0.2731088539492602,0.2792816027948089,0.2848279216542299,0.2902737388545747,0.2958841667783885,0.3013618989893992,0.3063622312419105,0.3092396166134185,0.3135746312300994,0.3181415050632074,0.3165702858995838,0.3153105958256362,0.3129453262786596,0.3112791521478247,0.3104803298453478,0.3078705835405347,0.3057253059475246,0.3061244649324992,0.3069169452301363,0.30775290957923,0.3090202848511005,0.3093734534296743,0.3105075503355705,0.3103895813287386,0.3104715689336248,0.3108072916666666,0.3114483386954417,0.3147490493101606,0.3187341949985951,0.3218354304767197,0.3261037955073586,0.3266938602532182,0.3307673050444361,0.3361965039180229,0.3357037310676025,0.3341866418431464,0.3396169048342961,0.3390278625177954,0.3379083173208894,0.3298969072164948,0.0,2.486596454968681,51.35154950515208,169.69677346710498,245.31412521085437,fqhc2_100Compliance_implementation,79 -100000,95711,45900,437.38964173397,5784,59.24083961091202,4536,46.81802509638391,1764,18.1065917188202,77.36399481233721,79.74879703431357,63.33329461681414,65.09750962023564,77.13694188064517,79.52211472298268,63.24889495207682,65.01533203386093,0.2270529316920431,226.68231133089023,0.0843996647373188,82.17758637471206,170.46898,119.98312220288344,178108.03355936098,125359.80420524646,428.0362,282.76023678867205,446672.6813009999,294886.6136480364,397.99348,193.8904859046291,412163.0847029077,199764.941719529,3258.62618,1484.0829390764989,3369168.475932756,1515104.4279931234,1073.22575,477.7640995171309,1107794.0362131835,485648.56653585314,1725.26332,729.9791148801661,1773133.2239763455,738174.3727749706,0.38215,100000,0,774859,8095.8197072436815,0,0.0,0,0.0,37097,387.00880776504266,0,0.0,36313,375.6621495961802,1495460,0,53698,0,0,0,0,0,65,0.6791277909540179,0,0.0,0,0.0,0,0.0,0.05784,0.1513541802956954,0.3049792531120332,0.01764,0.3339400959788184,0.6660599040211815,24.320007659972603,4.353988129997148,0.3141534391534391,0.2411816578483245,0.2246472663139329,0.2200176366843033,11.086390453832326,5.604976964533646,18.92288237159677,11991.981458276938,51.60757513044283,13.261796764371171,16.160685354043274,11.312583680316962,10.872509331711433,0.5570987654320988,0.7970749542961609,0.6933333333333334,0.5564278704612365,0.1002004008016032,0.7242733699921445,0.9181818181818182,0.8621621621621621,0.6772908366533864,0.1367924528301886,0.4918786392889978,0.7155963302752294,0.6341232227488152,0.5169270833333334,0.0903307888040712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100069908106,0.0044418753232529,0.0066291724193941,0.0086489013557737,0.0106738028856916,0.0128879108339955,0.0149842914847607,0.0169330541796456,0.0187886102360594,0.0210633025456183,0.0231558869073867,0.0251622709719825,0.0273094765426511,0.0292838742916022,0.0311883998142319,0.0334580946669699,0.0356132881693029,0.037491698489125,0.0393122947070807,0.0413623529656911,0.0562569838236369,0.0695386418822741,0.0833149750852347,0.0953457558677546,0.1081807545141194,0.1237061081212531,0.1353904883092094,0.1473842095185413,0.1584841206298372,0.1685189749965168,0.1808115698744229,0.1936572491671353,0.2054998586434117,0.2157986243999519,0.2253263966034955,0.2351332801983705,0.2445071490709553,0.2538370720188902,0.2621165365765112,0.2694751302157862,0.2765224229248098,0.2820416895612425,0.2882248520710059,0.2933788723111031,0.2986738560186534,0.3032411398172548,0.307288214031094,0.3119297532213383,0.3160357844658186,0.3194658448895737,0.3181946441288311,0.3164920279605037,0.3149098269633544,0.3131624868403974,0.3124175840457528,0.309205710102489,0.3072378371565414,0.3081806165244211,0.3085010615711253,0.3095741843719441,0.3100028019052956,0.3101648513973962,0.3107377647918188,0.3120060722418181,0.3137278390033541,0.3152808169219547,0.3162646313331245,0.3191449348044132,0.3228476240575136,0.3254543294928139,0.3277699668919225,0.330974759742317,0.3329554043839758,0.3376801647220315,0.3377383424579951,0.3390153772797711,0.3403959171048561,0.3451672481017853,0.35213627478358,0.3608610567514677,0.0,2.281119348426718,55.980266121112585,167.6562384072812,240.86675478705243,fqhc2_100Compliance_implementation,80 -100000,95663,45446,431.5670635459896,5649,57.68165330378516,4436,45.6916467181669,1728,17.62436887824969,77.31725194233033,79.72498900676662,63.30264576078415,65.08491933077067,77.09325615196838,79.50695614956034,63.21842472872834,65.00624190500194,0.223995790361954,218.032857206282,0.0842210320558152,78.67742576873127,170.20476,119.73294951169731,177921.20255480174,125161.19033659548,422.77993,279.7522562077201,441295.6524466095,291783.6427957728,395.0768,192.0222404352966,409318.4094163888,197821.98083563236,3168.73558,1450.5606843992716,3268504.353825408,1472552.935869648,1020.26422,453.26272745887866,1052817.0034391563,460166.7376735124,1687.74824,715.7835841668175,1724846.61781462,712926.3853243676,0.37879,100000,0,773658,8087.3273888546255,0,0.0,0,0.0,36617,382.09129966653774,0,0.0,35910,371.6692974295182,1498041,0,53739,0,0,0,0,0,77,0.8049088989473464,0,0.0,0,0.0,0,0.0,0.05649,0.1491327648565168,0.305894848645778,0.01728,0.3416906657631712,0.6583093342368287,24.35401450619879,4.327252597773109,0.31785392245266,0.2434625788999098,0.2233994589720468,0.2152840396753832,10.9838173598166,5.638631343875788,18.424461218639703,11868.86484260978,50.43942824199206,12.97024786965761,15.975088667257117,11.053905592081248,10.44018611299608,0.556131650135257,0.7805555555555556,0.6900709219858157,0.5630676084762866,0.0973821989528795,0.725473321858864,0.9020618556701032,0.8690807799442897,0.6785714285714286,0.1518324607329843,0.4960293219303604,0.7124277456647399,0.6289248334919124,0.529335071707953,0.0837696335078534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024618314810499,0.0046037621051564,0.0067284370338045,0.0089727565568189,0.0109070560105814,0.0128756239176937,0.0150368269642747,0.0174485125858123,0.0196844754557917,0.0216787730388189,0.0239663486200882,0.0261719311946402,0.0283693783647462,0.0301358846938985,0.0320998109953213,0.0343825014485555,0.0363555315972798,0.0383944334821892,0.0403379355550237,0.0424793336738629,0.0564604599166257,0.069910151423126,0.0833245847943393,0.0958638903210193,0.1086013904860371,0.1232828870779976,0.1351985310506596,0.1458164699867933,0.1559878159568214,0.1650860404239797,0.1775857983066548,0.1896251231367115,0.2007270669162784,0.2107222228304303,0.2202674715783907,0.2297827532697849,0.2386755499012354,0.2478879577029079,0.2556691207332706,0.2634784699403501,0.2703850247582026,0.2770657436209275,0.2834282197261117,0.2894516082642251,0.2945936095249666,0.2992331779964001,0.3034406798753395,0.3081265974085424,0.3124830200395875,0.3157721348847628,0.3151633284043554,0.3137448831011841,0.3128012704301755,0.311232584302074,0.3103837639472863,0.3084620571288464,0.3061505362736103,0.3059979334437683,0.3064384122220706,0.3080170279464937,0.3087643812552614,0.3103495896464646,0.3112661888595499,0.312136790344211,0.3136352686099735,0.3156232874924976,0.3161670509864207,0.3192009783938035,0.3233066891039124,0.3250148544266191,0.3281121937892723,0.3324315722469764,0.3344656224444863,0.3340182648401826,0.3383416283219081,0.3397292525014714,0.3438360354848577,0.3495771244462344,0.354389721627409,0.3506879880996653,0.0,2.714898067898824,50.27804830793444,171.56463713321045,242.0268189523406,fqhc2_100Compliance_implementation,81 -100000,95857,45551,432.5505701200747,5787,59.23406741291716,4501,46.381589242308856,1745,17.818208372888783,77.4717338221379,79.75941386231563,63.40399372213196,65.09104197989123,77.25030461414343,79.54080917615345,63.320919573374375,65.01198921345467,0.2214292079944755,218.60468616218043,0.0830741487575821,79.05276643656123,171.74652,120.7868969227726,179169.5129202875,126007.38279183846,423.30386,279.57228368748065,441016.3889961088,291072.6432993737,393.29282,191.43367373564868,407053.17295554833,197159.2131443551,3188.72274,1459.001903535482,3286191.326663676,1481900.3802198076,1011.15086,446.8914540816078,1039518.6580009806,450996.3024739861,1700.7241,719.7799711456195,1737989.6929801684,718286.9645402118,0.38217,100000,0,780666,8144.0687691039775,0,0.0,0,0.0,36571,380.91114889888064,0,0.0,35952,371.8142649989046,1496238,0,53663,0,0,0,0,0,81,0.8450087108922666,0,0.0,0,0.0,0,0.0,0.05787,0.1514247586152759,0.301537929842751,0.01745,0.3418139765405584,0.6581860234594415,24.306415908843288,4.323342985541062,0.3179293490335481,0.2490557653854699,0.2212841590757609,0.211730726505221,11.607108226799031,6.17080545786629,18.58950116622128,11993.338534841469,50.77411054500149,13.393683635604678,15.946720928245169,11.060259856628694,10.373446124522957,0.5638746945123306,0.7939339875111507,0.6785464709993012,0.5652610441767069,0.1196222455403987,0.7232142857142857,0.9234338747099768,0.8425414364640884,0.6986899563318777,0.1333333333333333,0.5038237993270113,0.7130434782608696,0.6230121608980356,0.5254237288135594,0.1157469717362045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019333940682255,0.0042852367010768,0.0063984262507858,0.0085058871295168,0.010700349565076,0.0128399483146296,0.0149845163393366,0.0170952376095227,0.0194841002389559,0.0213122801276282,0.0234639846782535,0.0254653607507307,0.0275928665351742,0.0297561477518263,0.0318620376860594,0.0340251961999173,0.0359355766346342,0.0381191248561982,0.0399867091696346,0.0419402845278856,0.0565073671258303,0.0701360067742036,0.0833394468490939,0.0966196265512204,0.1085391434504421,0.1244554874180587,0.1365202914073021,0.1482494122152834,0.1585403610663307,0.1690335580540401,0.1812517487032692,0.1934591358104748,0.2045301539731144,0.2141242999530573,0.223529024181327,0.2341192205237037,0.2430024169924594,0.2508505788427636,0.2592978482446206,0.2669098143236074,0.2741715737212793,0.281356802090259,0.2874313713914634,0.2927403828906932,0.2978483407723656,0.3026097227861651,0.3069727360151869,0.3113844669561023,0.3151007014869456,0.3191058247700749,0.3186391049146418,0.3171600877192982,0.3158005529281333,0.3144266869974251,0.3127922116352015,0.3096914822266935,0.3081479614342429,0.3093635650810246,0.3091820266711968,0.3101949584005961,0.3119412991656734,0.3142666457286432,0.3157270400199787,0.3174430480927217,0.3181037771842808,0.3187850878327685,0.3202010788217684,0.3236053638654678,0.3262252021842814,0.3283809672752864,0.3304822891943934,0.3334032511798636,0.3334166146158651,0.3349514563106796,0.3358152686145146,0.3340448239060832,0.3342420112070271,0.3337988826815642,0.3369418132611637,0.3443484791588434,0.0,2.2228789015070647,53.58995717492909,163.3175454249503,246.01195929806244,fqhc2_100Compliance_implementation,82 -100000,95735,45884,434.1672324646159,5797,59.19465190369249,4561,47.00475270277328,1780,18.175171045072336,77.34438518034166,79.69714830358805,63.33412346583962,65.07240657588528,77.11925058765507,79.47566548816779,63.25005866304385,64.99246614756923,0.2251345926865866,221.48281542025927,0.0840648027957655,79.94042831604986,170.6573,120.11871963562726,178259.63336292893,125469.58316975748,424.98648,281.0146007320549,443155.66929545096,292772.5375438565,402.3683,196.19928458416248,416512.7591789836,202067.47247387632,3287.05567,1506.3689497160342,3391149.8929336187,1531381.6638191887,1085.9389,483.239481705915,1118456.5310492506,489079.72145492857,1751.83682,744.2464444437337,1790942.4139551888,744047.6418474178,0.38139,100000,0,775715,8102.71060740586,0,0.0,0,0.0,36703,382.6918055047788,0,0.0,36681,379.3596908131822,1492996,0,53627,0,0,0,0,0,76,0.7834125450462214,0,0.0,1,0.0104455006006162,0,0.0,0.05797,0.1519966438553711,0.3070553734690357,0.0178,0.3393151135989463,0.6606848864010537,24.491496551752604,4.310459233292714,0.3174742381056786,0.2394211795658846,0.2177154132865599,0.2253891690418767,10.97610606152478,5.521390326621598,19.005743523504037,12073.265363600438,51.61421975368667,13.067969750253065,16.197784084344654,10.967439958683372,11.38102596040559,0.5531681648761236,0.7738095238095238,0.680939226519337,0.581067472306143,0.1118677042801556,0.7229894394800975,0.9047619047619048,0.8635097493036211,0.7555555555555555,0.13215859030837,0.4903903903903904,0.6919642857142857,0.620752984389348,0.5299479166666666,0.1061173533083645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0047448622671925,0.0070921985815602,0.0093639235042604,0.0116822905016572,0.0138649944519662,0.0162348912578218,0.018541762334813,0.0208131111360873,0.0229305228691292,0.0252172309205672,0.0275374367501103,0.0295602463525226,0.0315853432473069,0.0341145887061833,0.0363243667779304,0.0384328744436393,0.040487005579408,0.0425388181005633,0.0442902825953355,0.0594462540716612,0.0730880321486876,0.0866582756450597,0.0996519123786688,0.1115410976959983,0.1269879874799086,0.1386160666935364,0.1493488530450696,0.1596317340966377,0.1695792949652629,0.1816478997567119,0.1937410079724803,0.2050757888784986,0.2150728059818969,0.2248545440547288,0.2350870200611133,0.2446740840763762,0.2525669429480763,0.2608148122936591,0.2687679607982322,0.2760782318039347,0.2827853993427131,0.2878671382438874,0.2937290167865707,0.2983870967741935,0.3034555903608514,0.3081500970995427,0.3120055039559684,0.3153100624530306,0.3189902164010615,0.3172094400840076,0.3152928878925,0.3143915388623657,0.3131536372566014,0.3119698117692502,0.3100372430916364,0.3072948039184605,0.3074890012476197,0.3088237806440591,0.3103054320855424,0.3109975286452482,0.312170669613783,0.3130780498012136,0.3135576170783503,0.3149953071980362,0.3150752721779444,0.3162342096278593,0.3181232519405424,0.323315916821545,0.325614648290106,0.3292455829586229,0.3313019977743627,0.3339615529589144,0.3377064012666817,0.340028024287716,0.3405430821676267,0.3429966432712847,0.3459803117309269,0.3497509684560044,0.3480620155038759,0.0,2.355749723402909,53.599204152545134,166.0824155683776,253.45055472558332,fqhc2_100Compliance_implementation,83 -100000,95672,45951,435.4356551551133,5911,60.66560749226524,4600,47.51651475875909,1774,18.16623463500293,77.28108161739658,79.66888776199178,63.29287913429015,65.05581157334737,77.05330844499939,79.44296857021534,63.20850420925406,64.97478225225113,0.2277731723971925,225.91919177644115,0.0843749250360943,81.0293210962385,170.36866,119.90213130320426,178075.77974747054,125326.25146668228,424.04284,280.80324768550594,442642.44502048666,292922.99490499403,405.92482,197.8192244759082,420688.445940296,203959.9551060045,3271.11093,1501.688690009339,3380211.023078853,1530959.288460315,1120.19914,503.5021456339846,1155520.256710427,511023.62571019656,1738.6243,731.9292908154458,1781915.96287315,735144.6454614439,0.38154,100000,0,774403,8094.353624885024,0,0.0,0,0.0,36648,382.4420938205536,0,0.0,36995,383.13195083200935,1490749,0,53561,0,0,0,0,0,73,0.7630236641859688,0,0.0,0,0.0,0,0.0,0.05911,0.1549247785291188,0.3001184232786331,0.01774,0.3360310780187763,0.6639689219812237,24.457248961782685,4.232143958836765,0.3217391304347826,0.2426086956521739,0.22,0.2156521739130434,11.202848680094991,5.870789458847483,19.023057853366996,12062.304651096374,52.44718584599941,13.295023592219726,16.930590305561733,11.22040621495047,11.00116573326748,0.5647826086956522,0.7777777777777778,0.6885135135135135,0.5741106719367589,0.1310483870967742,0.7466666666666667,0.9146341463414634,0.8668280871670703,0.7563025210084033,0.1822429906542056,0.4950375939849624,0.6983002832861189,0.619493908153702,0.5180878552971576,0.1169665809768637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044708482446091,0.006697991617362,0.0089402728815109,0.0110754022333868,0.0134923221050059,0.0156106613373575,0.0177543186180422,0.0201993355481727,0.0222827255140789,0.0246280669735776,0.0266440782381025,0.0290627121084349,0.0311678944928133,0.0332848252159643,0.0354650261076358,0.0374368111378138,0.0396695244223942,0.0418170659398957,0.0440492818278471,0.0584867417514679,0.0724495031465639,0.0859671036748575,0.0991961617777029,0.1114241100630921,0.1264573326844544,0.1380833085643921,0.149052645032111,0.1598507446728892,0.1699630631791436,0.1820309550773877,0.1934284816368109,0.2047350423627295,0.2146439208128941,0.224481926648966,0.2340585978219886,0.2438926264500123,0.2531930709796589,0.2616288317767627,0.2692885398153987,0.2762223586512064,0.2831068416119962,0.2891694824826605,0.2950733060361907,0.2997773749711074,0.3047378161628624,0.3092988874411145,0.3124912379083134,0.3163164721141375,0.320088854804374,0.3180781736983418,0.3168206259478836,0.3148150765273675,0.3130162594556995,0.3116000357749754,0.3091389183131457,0.3077203608860418,0.3084618042415966,0.3088660923772499,0.3092105263157895,0.3100469483568075,0.3117952993488963,0.311153692278537,0.3123581874957877,0.3147812643428267,0.3153729628081905,0.3149635558096327,0.3174272549390898,0.3215326800828855,0.3258877206903392,0.3292716195325998,0.3315861922914019,0.3347361809045226,0.3378643709409454,0.3380268556508765,0.338100220904546,0.3391449363250455,0.343238930993219,0.3510895883777239,0.3575268817204301,0.0,2.1455172180473308,55.95995799311072,170.49106570036437,249.6167553462328,fqhc2_100Compliance_implementation,84 -100000,95736,45645,433.5882008857692,5692,58.35840227291719,4443,45.92838639592212,1777,18.279435113228043,77.3612597271838,79.72586964406707,63.34108899169471,65.0885721044604,77.13466110683643,79.49755444844193,63.25778646513115,65.00655734680511,0.2265986203473744,228.31519562514305,0.083302526563564,82.01475765528699,170.33654,119.86671954742803,177923.18459095847,125205.48126872657,422.38,280.07772676682686,440737.3088493357,292097.0134190135,400.47678,195.30810361094703,414772.57249101694,201353.79896066964,3192.03416,1474.6321247340277,3306162.018467452,1512268.35749773,1082.18547,484.9311365510479,1118011.0198880257,494155.4864952031,1750.35448,735.3414285716103,1802605.456672516,747119.9368814303,0.37992,100000,0,774257,8087.417481407203,0,0.0,0,0.0,36553,381.3299072449235,0,0.0,36523,377.9560457925963,1496884,0,53730,0,0,0,0,0,69,0.7207320130358486,0,0.0,0,0.0,0,0.0,0.05692,0.1498210149505159,0.3121925509486999,0.01777,0.3413897280966767,0.6586102719033232,24.236755812977105,4.267741753197335,0.3238802610848525,0.2401530497411658,0.2063920774251632,0.2295746117488183,11.079262615918898,5.678866753072974,19.005679224589983,11942.368785550065,50.82873861252189,12.762373492034238,16.437883870106823,10.301089322138465,11.327391928242369,0.5698852126941256,0.7797563261480788,0.7171646977067407,0.5714285714285714,0.1411764705882353,0.7377952755905511,0.9037037037037036,0.8875305623471883,0.7568807339449541,0.180672268907563,0.5026788528206745,0.7039274924471299,0.6495145631067961,0.5135908440629471,0.129156010230179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.004866574742477,0.0070122384364027,0.0090317074905263,0.0115936133428251,0.0137980896519419,0.0157954846735871,0.0177056210752029,0.0199167748729641,0.0220413595413595,0.0241969384721068,0.0265190419456883,0.0287160077343975,0.0306273823014319,0.0325270370676133,0.0345405109224932,0.0363796406565525,0.0384164375032428,0.0405332335080276,0.042280522619767,0.0568734729676112,0.0708686141318568,0.0840929354381916,0.0971737393279219,0.109524361582159,0.1245243531202435,0.1356093940518475,0.1459758497792435,0.1562950543054561,0.1662111614846253,0.1790212500269123,0.1914083623542644,0.2023826345938542,0.2123169398907103,0.2216787213929254,0.2317863940158456,0.2414969399016755,0.2493961149123102,0.2585683198839423,0.2656718467489071,0.2730677640857281,0.2792504410201292,0.2848359444280224,0.2900557776554233,0.2961040850723284,0.3014069264069264,0.3057505433289201,0.3097480080820403,0.3136871797526008,0.316747572815534,0.3150121065375302,0.313857184061972,0.3127812781278127,0.3116483833718245,0.3112410752720094,0.3090116279069767,0.3066772026866851,0.3079267293639611,0.308779165885501,0.3092397410518431,0.3091596622924427,0.3097089491699808,0.3117704993608683,0.3136509923118183,0.3156489100620759,0.317128601656174,0.3180765602218474,0.321490604768672,0.3251786405716498,0.3287807597356056,0.3310872336550719,0.3337914266081717,0.3363596518690125,0.3419159409314654,0.3427505827505827,0.3431291877277536,0.3497798694398056,0.3520644511581067,0.3579212070410729,0.3562525130679533,0.0,1.9000606786533607,55.98934938540294,163.85452145175594,236.87231294498832,fqhc2_100Compliance_implementation,85 -100000,95649,45551,432.52935211032,5786,59.2687848278602,4580,47.266568390678415,1801,18.452885027548643,77.2430810454354,79.64864753292001,63.27207635196621,65.0507439027979,77.01826882621835,79.42626807839422,63.18771525230919,64.97010548691917,0.2248122192170569,222.3794545257931,0.0843610996570234,80.6384158787381,170.95408,120.20390506958084,178730.65060795195,125671.88895814992,422.8663,279.4747696329472,441494.558228523,291581.06987726275,395.37628,192.6198676427746,409588.9240870265,198508.15381295857,3254.88451,1491.060151046236,3360023.2203159467,1516156.7417094407,1076.25777,479.71895973639766,1107613.6917270438,484000.49361045327,1756.49858,743.204645747224,1800554.9038672647,745399.5655860716,0.37937,100000,0,777064,8124.1204821796355,0,0.0,0,0.0,36543,381.4153833286287,0,0.0,36156,374.21196248784617,1491408,0,53560,0,0,0,0,0,67,0.7004777885811666,0,0.0,2,0.0209097847337661,0,0.0,0.05786,0.1525160133906213,0.3112685793294158,0.01801,0.3340513670256835,0.6659486329743165,24.08081297801825,4.257617520679971,0.3187772925764192,0.2412663755458515,0.2255458515283842,0.2144104803493449,11.08655581499441,5.8592750788088015,19.248389315874142,11986.507771687004,52.324830985669806,13.50971088750546,16.612551317804517,11.45929265154008,10.743276128819756,0.5580786026200873,0.7972850678733032,0.684931506849315,0.5353339787028074,0.1242362525458248,0.7375886524822695,0.920704845814978,0.8552631578947368,0.7030567685589519,0.1553398058252427,0.4892781636967683,0.7112135176651305,0.625,0.4875621890547263,0.1159793814432989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0045442557766822,0.0066292397185872,0.009286824698483,0.0117583635938278,0.0139009114517032,0.0162018863114963,0.0182363992811632,0.0204311191099476,0.0223341832816196,0.0244897959183673,0.0266390075583305,0.0287236340076308,0.0305043886759797,0.0327205540818117,0.0347744263718992,0.0366710174653489,0.0389325970979594,0.0406910827031693,0.0427661415598903,0.0571939138067968,0.0710828986235937,0.0844864876215274,0.0973568699276849,0.1093855574324324,0.1247062061956084,0.136464563833969,0.1467728522996225,0.1570100257867086,0.1668295616870912,0.1794608943370165,0.1916067692240977,0.2029126002091321,0.2134228481934572,0.2237335214496715,0.2342283368467768,0.243433925556537,0.2526236290058954,0.2614711232378354,0.2685726736851763,0.2749620426281568,0.2808979553598613,0.2882066588494474,0.2926881926785971,0.2977372262773722,0.3024823176527224,0.3068670334766315,0.3113654905160106,0.3149241529657552,0.3190352779393875,0.3168032565913625,0.3152227790934626,0.313601286627259,0.3122575976845152,0.3115608571981712,0.3094660938938324,0.3077619047619047,0.3084901466883983,0.3091077144275371,0.3083767477666183,0.3090450843568378,0.3095171920908441,0.3107063321988318,0.3108135387928134,0.3110639631603057,0.3115372524363408,0.3124264431495249,0.3161532634768337,0.3180055010931659,0.3198062992756233,0.3236659465919014,0.3269189651485995,0.3303577081354859,0.334636314861654,0.3374227294341417,0.3407274895646989,0.3394994559303591,0.3442991418062934,0.3470960638590696,0.348729792147806,0.0,2.368654575345577,55.4689240979376,171.8063466124924,247.13636858249063,fqhc2_100Compliance_implementation,86 -100000,95821,45746,433.6418947829808,5860,60.04946723578339,4627,47.74527504409263,1822,18.711973367007232,77.44904619750217,79.77595533996121,63.38601454967061,65.1072549823941,77.22137762427161,79.54736211806855,63.3024417828727,65.0253535894302,0.2276685732305594,228.5932218926661,0.0835727667979142,81.90139296389987,171.44204,120.51122805013854,178919.06784525313,125767.03233126196,424.51448,280.5255216333846,442507.7905678296,292239.10378036613,401.01321,195.74831555230975,414337.1077321255,201139.4505992952,3298.80699,1515.4991308489514,3405812.88026633,1544814.3395698676,1114.26267,495.405675509924,1149218.501163628,503415.12186892994,1782.0401,745.2451584323522,1831336.7633399777,753045.3867212794,0.38232,100000,0,779282,8132.684902056961,0,0.0,0,0.0,36756,383.0475574247816,0,0.0,36627,378.2260673547552,1498125,0,53696,0,0,0,0,0,71,0.7200926727961512,0,0.0,0,0.0,0,0.0,0.0586,0.1532747436702239,0.3109215017064846,0.01822,0.3385391247763136,0.6614608752236864,24.34461906879521,4.3667936300070425,0.3060298249405662,0.2554570996325913,0.2202290901231899,0.2182839853036524,11.367992998317629,5.867743803808334,19.32416189878597,12063.289870194145,52.52625911719068,14.185288597574615,15.967749227716864,11.30841994688796,11.064801345011244,0.5794251134644478,0.799492385786802,0.711864406779661,0.5888125613346418,0.1267326732673267,0.7380191693290735,0.8951965065502183,0.8661202185792349,0.7312775330396476,0.154228855721393,0.5205925925925926,0.738950276243094,0.6580952380952381,0.547979797979798,0.1199011124845488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.0048959484252886,0.0071332176595334,0.0094777582511351,0.0116741409642352,0.013969637420708,0.0160068513401914,0.0181365394625378,0.0203474706182933,0.0226028588677083,0.0247988932725316,0.0269499178981937,0.0289884868421052,0.0308770990558752,0.0328176567656765,0.0348885261483149,0.0368254362541141,0.0388739112401493,0.0408,0.0428898605038517,0.057602436785446,0.0718490250405144,0.0856232576662684,0.0989062943234469,0.1112281884852061,0.1265270321680686,0.1378678029339438,0.1489940878737612,0.1593326292657428,0.1687243679662487,0.1818426202714037,0.1937389951713782,0.2050633461074984,0.2155655950588184,0.2250787621985356,0.2350854313565129,0.2439784862421077,0.2530751964085297,0.2615536112463072,0.2693867294139148,0.275171657723155,0.2812554673011652,0.2875243319766413,0.2931294061417134,0.2980849594825393,0.3031639737052282,0.3083494419155702,0.3121703853955375,0.3158050945879681,0.319778601667061,0.3182732809272127,0.3170049369171695,0.3155531231142733,0.3142400598854116,0.3134482860607495,0.3116107607470371,0.3089561399367357,0.3088876193585244,0.3100176522506619,0.3104506742370475,0.3123032504423954,0.313102554536708,0.3137581794690118,0.3151002227171492,0.316157456182358,0.3171041051923176,0.3181277270924236,0.3209563994374121,0.3246989638756651,0.3269769829049705,0.3292765996094637,0.3341466001909409,0.3378149148708927,0.3391976946993251,0.3449575871819039,0.3494617295634686,0.3526082300749579,0.3566333808844508,0.3560022026431718,0.3554285714285714,0.0,2.166123521577706,54.600813233244814,176.2534668093838,248.591925660556,fqhc2_100Compliance_implementation,87 -100000,95814,46068,437.2325547414784,5738,58.72836954933518,4522,46.68420063873756,1778,18.233243576095354,77.3497797498425,79.68189917468891,63.33168066437421,65.05937936370904,77.12622320814025,79.4603947276316,63.248476608167394,64.97941248322596,0.2235565417022513,221.5044470573133,0.0832040562068172,79.96688048308442,170.43312,119.89526652817771,177879.14083536854,125133.34849622993,420.75465,278.60920114900387,438645.4380361951,290289.8231458908,399.05782,194.1881559712376,413288.41296678985,200260.31704918423,3237.46981,1489.8242471208468,3340964.3162794583,1517014.2749002934,1083.88098,483.6004440560988,1114760.3794852528,488282.8758547442,1742.75588,734.9033567022242,1787369.2571023025,738297.83476419,0.38362,100000,0,774696,8085.415492516752,0,0.0,0,0.0,36366,379.0260295990148,0,0.0,36386,376.5211764460309,1498022,0,53749,0,0,0,0,0,69,0.7201452814828732,0,0.0,0,0.0,0,0.0,0.05738,0.1495751003597309,0.3098640641338445,0.01778,0.3302279154882715,0.6697720845117285,24.25017560808019,4.36466992130105,0.3248562582927908,0.2390535161432994,0.2162759840778416,0.2198142414860681,11.19609754646222,5.765766107224899,18.88223139952134,12069.158954061491,51.67338838642145,13.063701879832523,16.66376310145066,11.087075239286708,10.858848165851551,0.5703228659885007,0.8066604995374653,0.7140912185159973,0.5644171779141104,0.1066398390342052,0.7315914489311164,0.9497607655502392,0.8668407310704961,0.6680161943319838,0.1395348837209302,0.5078244860386621,0.7164404223227753,0.6602209944751382,0.5294117647058824,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198330530623,0.0045322274833463,0.0066170052976637,0.0088591776813743,0.0109754857084731,0.0130339595743597,0.0153548123980424,0.0175882731235262,0.019920888825291,0.0218937757807142,0.0236901723201197,0.0259048205760049,0.0281939231916096,0.030253104598719,0.0321728815307648,0.0342009278680732,0.0363013415038092,0.0385118035099365,0.040956269675529,0.0428309665597801,0.0571911448661506,0.0710939623983102,0.0849099122705881,0.0982722744183113,0.1103814653582232,0.1259119842662888,0.1376139003511154,0.1486961149547631,0.1592373017144688,0.1690353859850475,0.1813098008792345,0.1932059218215661,0.2047382848192142,0.2146128704321115,0.2256971563720367,0.2349623851889604,0.244727621683144,0.2538265162676143,0.2624974471850961,0.2703188505352338,0.2766956602202276,0.2824811203853078,0.2882352245443471,0.2946374052656154,0.299623740745236,0.3047867625332414,0.3110183576811087,0.3147590169978514,0.3180965442289529,0.3214507170468488,0.3203862574241424,0.3196447015079529,0.3175860416607943,0.3159098475746565,0.3148183940173354,0.3124004411224114,0.310318628614844,0.3106311747136245,0.310472644039424,0.311877120914449,0.3128266611715779,0.3132263420033204,0.3138067432661518,0.3146709527636396,0.3147636992055301,0.3157620856533278,0.3167391242576649,0.3187411930483795,0.3218422889043963,0.3248986659320766,0.3256035146519317,0.328462918029328,0.3326213958163201,0.3356995649187085,0.3377427526034337,0.338779828376631,0.3427744784528704,0.3416683336667333,0.3402005963675792,0.3335895465026902,0.0,1.938466203939669,55.62835015610489,172.02170917040988,238.86496946355052,fqhc2_100Compliance_implementation,88 -100000,95793,45892,435.3867192801144,5891,60.12965456766152,4600,47.37298132431388,1811,18.435585063626775,77.41775944651599,79.74423059878897,63.37436231324406,65.09431609678595,77.18633535826537,79.5184883286138,63.28645706309121,65.01168376808498,0.2314240882506197,225.742270175175,0.0879052501528505,82.63232870096715,170.68678,120.07465566628476,178182.9361226812,125348.04804764935,424.48587,281.44220203663235,442440.815090873,293115.0310915087,404.77926,197.4522145957324,418555.1136304323,203078.50250539067,3300.61441,1522.9538656167877,3398667.5853141667,1542938.999015113,1092.464,493.4277419538284,1122490.014928022,497177.29108721,1772.27288,755.9498483910004,1805329.115906173,750767.9561270081,0.38141,100000,0,775849,8099.224369212781,0,0.0,0,0.0,36604,381.42661781132233,0,0.0,36969,381.9068199137724,1496382,0,53730,0,0,0,0,0,80,0.835134091217521,0,0.0,1,0.010439176140219,0,0.0,0.05891,0.1544532130777903,0.3074180953997623,0.01811,0.3428155810570551,0.6571844189429449,24.35384881362681,4.250455378937266,0.3269565217391304,0.2365217391304347,0.2143478260869565,0.2221739130434782,11.209039517448636,5.983505010462378,19.41894517631116,11997.620873859612,52.549665776644815,13.284632723142192,17.010163438377827,11.044188665739192,11.21068094938561,0.5654347826086956,0.7922794117647058,0.6974734042553191,0.5892494929006086,0.1066536203522504,0.7314814814814815,0.9104477611940298,0.8971291866028708,0.721030042918455,0.1604938271604938,0.5003026634382567,0.7230320699708455,0.6206261510128913,0.548472775564409,0.0898587933247753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022478963942526,0.0047337637983639,0.0069101277511136,0.0090796449391643,0.0113987635239567,0.0137220570870149,0.0157170522882478,0.0179227565934514,0.0203193033381712,0.0224853645556146,0.0246004981600877,0.026597273548493,0.0286181268695839,0.0305145469145716,0.0326555443278134,0.0348798777086905,0.036707786562901,0.0389400348345359,0.0409727921544998,0.0428730570217905,0.0572817762567559,0.0704973392298926,0.0841283153370374,0.0966738806126951,0.1094538368357297,0.12541602831634,0.1368292812119286,0.1488400280689816,0.1592880694004289,0.169025401484878,0.1823246609376512,0.194183043962099,0.2059203596520757,0.2158644186249672,0.2244135582046915,0.2339691109439306,0.2437936838819713,0.2519880492407224,0.2593154859687085,0.2667642652087884,0.2733784689326894,0.2794922992491914,0.2850832122650981,0.2908357472887888,0.2958252427184466,0.30074132453267,0.3051764647070586,0.3098194202640708,0.3136306622011302,0.3166164017331525,0.3157944239166946,0.3151441845121918,0.3142567738668017,0.3127867055191714,0.3117804154302671,0.3092830812059287,0.307345971563981,0.3073748341767798,0.3085917554549477,0.3095005071445095,0.3108486864232594,0.3108668724563024,0.3126133828221115,0.3140444444444444,0.3158600862482031,0.3164248072479946,0.3171914893617021,0.3195092178158941,0.3238035396376584,0.3273983418870904,0.3321713147410358,0.3365542003273668,0.3418498340534786,0.3414652567975831,0.3442130932282873,0.351751064836725,0.3496072693670106,0.3534047282279248,0.3592862935928629,0.3603192702394527,0.0,2.4801552961967603,56.55229050940952,172.80241509930516,243.5781666502305,fqhc2_100Compliance_implementation,89 -100000,95712,45126,428.2848545636911,5821,59.47007689735874,4601,47.39217652958877,1829,18.618355065195587,77.3893283971574,79.74894782023156,63.35181630130408,65.09310325775203,77.15721544487407,79.52157174332184,63.2661163177948,65.01211907685199,0.2321129522833303,227.37607690972084,0.0856999835092793,80.984180900046,171.31356,120.48444600030452,178988.59077231694,125882.27808457092,421.98431,278.3839343623071,440167.0323470411,290133.20624614164,395.18232,192.7479826884047,408704.5511534604,198162.81975911357,3312.14363,1514.0261540583697,3417906.490304246,1539231.4276771662,1106.11819,497.3100212554536,1139989.7818455363,503907.6177397751,1780.77236,744.2031773721307,1817327.6496155127,743296.336180705,0.37772,100000,0,778698,8135.845035105315,0,0.0,0,0.0,36540,381.08074222668,0,0.0,36125,373.2133901705115,1497125,0,53706,0,0,0,0,0,63,0.6477766633233032,0,0.0,0,0.0,0,0.0,0.05821,0.1541088637085672,0.3142071808967531,0.01829,0.3379569190600522,0.6620430809399478,24.12414573727946,4.333600098185641,0.3168876331232341,0.2369050206476853,0.2240817213649206,0.2221256248641599,11.268943612508725,5.93677309473621,19.32652697126296,11927.695511292408,52.06982682925719,13.235642237607513,16.32618016579574,11.5341628377598,10.973841588094135,0.5668332971093241,0.7990825688073394,0.7016460905349794,0.5829291949563531,0.1105675146771037,0.7582938388625592,0.931350114416476,0.896457765667575,0.7290076335877863,0.165,0.4941529235382308,0.7105666156202144,0.6361136571952337,0.5331599479843954,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471181016235,0.0044695794946638,0.0069991783573232,0.0093214057248459,0.011406612175186,0.0137511959774443,0.0157651231045165,0.0177445358257994,0.0197921669204123,0.0219484492832219,0.0240188543908187,0.0262140006361127,0.0285141800246609,0.030488934637159,0.0323106275460217,0.0345262331166616,0.0366190767064572,0.0387328326625451,0.0405691952684863,0.0423468377902555,0.0565255529333138,0.070059228563655,0.0840561773004268,0.0962790061928944,0.1080705009276437,0.1228307653260858,0.1348728175318751,0.1459125121096952,0.156099437007916,0.1661376796054042,0.1786787271846228,0.1902217414818821,0.2013218540742673,0.2120105409335943,0.2220425138632162,0.2322194038612775,0.2414258769433377,0.2508604206500956,0.2584078427812826,0.2658129252479897,0.272273163511904,0.2792388433036444,0.2854474524175434,0.2907284371820195,0.2962733748346621,0.3012811834639952,0.3063562130325501,0.3106555501893698,0.3145507711417037,0.3178721553848384,0.3163480527157193,0.3150065926821228,0.3135164742563411,0.3117666584883603,0.3109055602496257,0.3078766966425943,0.3061214835372776,0.3063672615545532,0.3062057702776266,0.3075690971542473,0.3087944110285052,0.3099702292935865,0.3099502071216369,0.3106135024111448,0.3120255597194196,0.3123183139534883,0.3138729636146903,0.3179017172886234,0.3233137829912023,0.3266416880299743,0.3309744148067501,0.3338110403397027,0.3362302411990679,0.3386656557998483,0.3423846659776379,0.3469026548672566,0.3475952055833712,0.3602808425275827,0.3557103064066852,0.3536490683229814,0.0,2.6377944032038387,54.76789009771374,168.85439384683673,249.4916687284005,fqhc2_100Compliance_implementation,90 -100000,95660,45478,431.1206355843613,5749,58.71837758728832,4501,46.341208446581646,1774,18.06397658373406,77.35982293729873,79.73383050415187,63.33991942654043,65.08908950264714,77.13780634268949,79.51633274734235,63.256456252215365,65.01000153794828,0.2220165946092436,217.49775680952155,0.0834631743250682,79.08796469885715,170.49098,119.87679885054702,178225.98787371942,125315.49116720364,421.84316,278.8167576651912,440286.8910725486,290771.5217072874,396.52388,193.3666125479244,409485.5425465189,198285.0918200308,3221.5382,1476.6059437786632,3321004.7564290194,1496906.6420433444,1076.81788,475.7471122399545,1107679.646665273,479338.8900689466,1743.1641,735.5598653893999,1778099.9790926196,733676.8273694373,0.37958,100000,0,774959,8101.181266987247,0,0.0,0,0.0,36505,380.8906544010036,0,0.0,36124,372.6740539410412,1498378,0,53759,0,0,0,0,0,79,0.8153878319046624,0,0.0,3,0.0313610704578716,0,0.0,0.05749,0.1514568733863744,0.3085754044181596,0.01774,0.3307984790874524,0.6692015209125475,24.57353417642647,4.3167537044992015,0.3183736947345034,0.2390579871139746,0.2157298378138191,0.2268384803377027,11.259491388362344,5.9408367584710255,18.84241227532118,12012.1161701512,50.92321123269719,12.975621450541892,16.202973122192265,10.511378032326258,11.233238627636764,0.5594312375027771,0.7881040892193308,0.7076064200976971,0.568486096807415,0.1018609206660137,0.7142857142857143,0.9127358490566038,0.875,0.69,0.0978723404255319,0.4987631416202844,0.7070552147239264,0.6409756097560976,0.5369649805447471,0.1030534351145038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506825454692,0.0047232442403786,0.0070106021407193,0.0091710507606995,0.0114486741499918,0.0138124077561199,0.0160588552970786,0.0184263151450842,0.0206132913849108,0.0228844422620509,0.0250783699059561,0.0270736086175942,0.0290254280839517,0.0310949115545396,0.0330379890457869,0.0353160043408609,0.0373825003105718,0.0391847741533993,0.0414708695471368,0.0434166371386289,0.0578353531132469,0.0714547491649302,0.0851351918716936,0.0980796548639974,0.1098875598590806,0.1252275132275132,0.1374039318924886,0.1482972762811704,0.1593294990485557,0.1694824292123736,0.1822413793103448,0.194011262724713,0.2048447123860099,0.2146570499841303,0.2252722447945914,0.2349996123215294,0.2442386027565426,0.252776778487274,0.2604756126603236,0.2671405352196506,0.2739361702127659,0.2809898026008046,0.2862382281955421,0.291945625486556,0.2967644882262311,0.3014657920322942,0.3063994101695762,0.3113341804320203,0.3150334234106101,0.3190364432255683,0.317141359426874,0.3155102265229821,0.3141984173917941,0.3127822586463127,0.3115864686175101,0.3088340951128911,0.3063496078927397,0.3063849333945797,0.3069535348702086,0.3076058047587598,0.3093005409250005,0.3101508212255212,0.311012496598497,0.3119251718903473,0.3125554622856457,0.3126849016453003,0.3133630100087896,0.3175895765472312,0.321051896347,0.3242270894283229,0.3277371931575842,0.3292080522653636,0.330379746835443,0.3334098034717442,0.3322352941176471,0.3333333333333333,0.3289977046671767,0.336154776299879,0.3368307775087436,0.3417238749046529,0.0,2.8057771450829323,54.745886659540936,159.20777278870497,245.98788548764912,fqhc2_100Compliance_implementation,91 -100000,95858,46349,439.6085877026435,5769,59.08740011266665,4517,46.589747334599096,1775,18.151849610882763,77.34109898624328,79.63154418814568,63.34986309044478,65.04393133145051,77.12103397975287,79.41459143739303,63.266921856705125,64.96481694818593,0.2200650064904152,216.95275075265383,0.0829412337396533,79.11438326458153,170.03712,119.71280382825006,177384.38106365665,124885.5638843394,424.29455,281.6150065265622,442089.3822111874,293244.6916549085,405.67292,198.38503317307524,420056.3750547685,204522.44984953903,3191.43614,1474.7898472567556,3291664.055164932,1500841.909133045,1051.51988,474.25686321535824,1084302.071814559,482142.3692418171,1737.4893,741.2721733058045,1777974.5665463498,743035.0698205906,0.38371,100000,0,772896,8062.926411984393,0,0.0,0,0.0,36586,381.0949529512404,0,0.0,36872,381.5018047528636,1495135,0,53707,0,0,0,0,0,86,0.8971603830666194,0,0.0,0,0.0,0,0.0,0.05769,0.1503479190013291,0.3076789738256197,0.01775,0.3302479338842975,0.6697520661157025,24.3832286255311,4.277595750230567,0.3254372371042727,0.2523798981624972,0.2014611467788355,0.2207217179543945,11.287579923452396,5.873852571263882,19.12753759080291,12063.051831467035,51.5163940024826,13.682252064043174,16.58356537488774,10.180296923726646,11.070279639825026,0.5676333849900377,0.7885964912280702,0.6959183673469388,0.589010989010989,0.1063189568706118,0.7274900398406374,0.911007025761124,0.8649350649350649,0.7130434782608696,0.1267605633802817,0.5061312078479461,0.7152875175315568,0.6359447004608295,0.5470588235294118,0.1007653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024808870436939,0.004813002198782,0.0070697542322165,0.0091883769569719,0.0114548817921248,0.0135044370267849,0.0158215919394439,0.0176587605202754,0.0198047106408187,0.0220546866209069,0.0241838835568029,0.0260812487820887,0.0282756283187658,0.0303616441174957,0.0325296239052035,0.0345560762132815,0.036615756873856,0.0387301324160225,0.0410610465116279,0.0431249739897623,0.0576132974618865,0.071768234691638,0.0849298710549195,0.0985843012875716,0.1109391124871001,0.1266939172132619,0.1380490285399495,0.1491436044100917,0.1594386938427062,0.1694782645974449,0.1829383784249155,0.1943507223808288,0.205845906343754,0.2153303021029161,0.2258540073711425,0.236509466360907,0.2458242677824267,0.2552564376596056,0.2632367292286044,0.2695642214968791,0.2759885240970824,0.2830830760595004,0.2886141834743005,0.2939548591144336,0.2992215867001834,0.3037373961492,0.3071494707339656,0.3115715303215303,0.3158705102991408,0.3195776971296601,0.31781098546042,0.3158669454685522,0.3150499598348295,0.3133231063127731,0.3116581583294884,0.3100614757239878,0.3078909839961971,0.3081741360602374,0.3098340419695515,0.3105378350256539,0.3119233231649908,0.3119815851093384,0.3130416491375684,0.3132570735105737,0.3147749534428132,0.3163602074493163,0.3171749506959728,0.3200618843142208,0.3237771071654151,0.3269230769230769,0.3303652553152825,0.3328389044869417,0.3345706196917269,0.3383054440826834,0.3412773172569706,0.3430873119298661,0.3442472460220318,0.3495983935742972,0.3531173427715763,0.3577981651376147,0.0,2.038670129118492,55.07571408540012,170.50504488890107,240.74487627448357,fqhc2_100Compliance_implementation,92 -100000,95650,45848,435.3267119707266,5723,58.67224255096706,4478,46.304234187140615,1717,17.637219027705175,77.31769350596971,79.73998408775009,63.289715480586615,65.08127376752856,77.11022788943298,79.5332892839255,63.21323142534525,65.00761108204836,0.2074656165367372,206.6948038245897,0.0764840552413659,73.66268548020116,170.95496,120.30301555902264,178729.2420282279,125773.82638477942,425.95504,281.4535299757342,444805.8233141662,293737.6673185701,399.64689,194.98057967512452,414515.87036069005,201365.81797838872,3169.77225,1436.19771425695,3280801.5577626764,1468875.6237898986,1034.58968,454.1054355099468,1069328.280188186,462565.7571262099,1680.2827,697.1684901946667,1727507.0569785675,702700.6267052254,0.38063,100000,0,777068,8124.056455828541,0,0.0,0,0.0,36887,385.0914793518034,0,0.0,36335,376.62310507056975,1491112,0,53387,0,0,0,0,0,67,0.6900156821745949,0,0.0,0,0.0,0,0.0,0.05723,0.1503559887554843,0.3000174733531364,0.01717,0.3309964947421132,0.6690035052578869,24.69602727653792,4.290813733067823,0.325591782045556,0.2478785171951764,0.2072353729343456,0.2192943278249218,11.379821578936635,6.045978899163588,18.159883122775263,12015.65302088848,50.4515042300286,13.299981632451052,16.26434856426627,10.224903225826775,10.66227080748449,0.5645377400625279,0.7864864864864864,0.6927297668038409,0.5765086206896551,0.1120162932790224,0.7575250836120402,0.9307875894988068,0.8556430446194225,0.7464788732394366,0.1693989071038251,0.4942108470444851,0.6989869753979739,0.6350974930362117,0.5258741258741259,0.0988735919899874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868790015398,0.0045531983937046,0.0068934010152284,0.0092175733493226,0.0113850254865852,0.0134168704156479,0.015679513598433,0.0177363656797237,0.0199568114132492,0.022141129197589,0.0244220424588346,0.0266829815018559,0.0287826830197617,0.0307725636237969,0.0328260128328322,0.034490608992601,0.0367874250876138,0.0387659707073854,0.0412013862148633,0.0432275154346737,0.0576364358422339,0.0716927751873002,0.0842620505656334,0.0973331086347454,0.1096619530895227,0.1249774934598642,0.1372413573227626,0.1482172360496722,0.1591395318985067,0.1686788399570354,0.1812661122436872,0.193455412287355,0.2045219399035058,0.2142997919632103,0.2233938232021066,0.23341872095989,0.2434866157214997,0.2525781320363865,0.2606879802072339,0.2673478270829992,0.2749609397604305,0.280894014175107,0.2877466239007705,0.2937439315296741,0.2986083257368581,0.3029183143008487,0.3076115091720748,0.31186117467582,0.3162826818534817,0.3210632597304895,0.3192368796617928,0.317434346212017,0.3149404577573829,0.3131918086964051,0.3119883734725353,0.3098251036677735,0.3077896401739818,0.3088601375696037,0.3088373043581927,0.3090508510713905,0.3093388475940312,0.3104552060013353,0.3118656731906768,0.3122171945701357,0.3129412325892005,0.3134119838559454,0.3147661438462625,0.3161366606509428,0.3186197780792375,0.3208387529068621,0.3257111746291003,0.3295761231941578,0.3284763220700917,0.3326512050932242,0.3375468164794007,0.3407136968554941,0.3390629753574688,0.3402860548271752,0.3469553450608931,0.3545351900639819,0.0,1.9581104060864687,52.48542764779612,160.2043343920838,251.98473684514892,fqhc2_100Compliance_implementation,93 -100000,95723,45642,433.6052986220657,5671,58.20962569079531,4444,45.96596429280319,1701,17.487960051398307,77.34880342590687,79.70635572727286,63.338894218876014,65.0771342749791,77.13282865770314,79.48900161951565,63.25885626040691,64.99831306410178,0.215974768203722,217.35410775721675,0.0800379584691057,78.8212108773223,172.07278,121.04983195476495,179761.16502825863,126458.4603018762,421.31753,278.11951439009533,439688.5805919163,290092.33349361725,398.79134,193.6180276234439,413478.2445180364,199899.729820512,3146.55758,1437.7767910227565,3256444.459534281,1471770.5398478638,1028.98534,456.4198198129601,1064653.6046718133,466760.5694416734,1656.27392,698.7778608495629,1704616.487155647,708672.3897723475,0.37913,100000,0,782149,8170.962046739029,0,0.0,0,0.0,36398,379.7624395390868,0,0.0,36288,376.0015879151301,1492443,0,53489,0,0,0,0,0,79,0.8148511851906021,0,0.0,0,0.0,0,0.0,0.05671,0.1495792999762614,0.2999470992770234,0.01701,0.3334456613310868,0.6665543386689132,24.52370627436533,4.272122956383329,0.3188568856885688,0.2502250225022502,0.2220972097209721,0.2088208820882088,11.241532273063244,5.847982303012965,18.203309838037047,11975.926396070752,50.40524676714667,13.318032435301724,15.82771912483987,11.06928109993278,10.190214107072308,0.5672817281728173,0.789568345323741,0.6951305575158786,0.5602836879432624,0.1131465517241379,0.7361455748552522,0.9090909090909092,0.8866279069767442,0.7075098814229249,0.1756097560975609,0.5041731066460587,0.7205673758865249,0.6337371854613234,0.5095367847411444,0.0954356846473029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379066965054,0.0043182094635689,0.0067069149206027,0.0089090705919401,0.0110724743777452,0.0131928538708199,0.0153098147940513,0.0177197101153414,0.0200091972816923,0.0221483035668594,0.0241170079740893,0.0259865551393236,0.0280673616680032,0.0302777606193505,0.032235769841761,0.0342322793965695,0.0363425518476719,0.0386379199435579,0.0406737367436057,0.0423651992706433,0.0564037762646727,0.0706429027430377,0.0846726814939152,0.0976076756370063,0.1092090413357381,0.1244142628967939,0.1365059154331794,0.147410443391707,0.1578227658778911,0.1680308085088123,0.1799556197082965,0.1927034308156707,0.2041870581837955,0.2144278715772898,0.2243575640235853,0.2344052907356737,0.2432547127669078,0.2522707064795327,0.2609174395241392,0.267788417483735,0.2746432415541127,0.2805314495567355,0.2861166002058903,0.2913367907918219,0.2966694178763898,0.3017790089258233,0.3061527890561559,0.3094161288683368,0.31325768345956,0.3170243317656668,0.3158999192897498,0.3146875257760304,0.3141734943829715,0.3129432496064016,0.3120665330066087,0.310070522724839,0.3073030331783534,0.3064925703238912,0.307760532150776,0.3089456982921524,0.3096323419518756,0.3112887978572554,0.3126905885793057,0.3119309051955008,0.3131058642863998,0.3142879434099657,0.314792663476874,0.3194457536054294,0.3229287090558767,0.3267585551330798,0.3307057912243131,0.3331553657234383,0.3361067005398539,0.3364816094601858,0.3390951166524983,0.3392984967788117,0.3417388613861386,0.343139271754783,0.3540563144689155,0.3495746326372776,0.0,1.734418400747302,53.40349422858178,162.32120026827866,245.31235489856488,fqhc2_100Compliance_implementation,94 -100000,95632,46009,436.4438681612849,5722,58.41141040655848,4485,46.26066588589593,1762,17.996068261669734,77.26744378178137,79.68191052782802,63.28338998351626,65.06920671218336,77.04429179471252,79.46109236081888,63.20026969665616,64.98918806858751,0.2231519870688458,220.81816700914203,0.0831202868600939,80.01864359584943,172.03626,121.07316301580204,179894.03128659862,126603.1903712168,426.42114,282.53081228260754,445231.44972394174,294768.91864920483,404.12625,197.4140349484668,417959.3127823323,202946.71489990747,3199.62796,1469.9431669555256,3306059.7917015227,1497371.4938049242,1061.79851,475.1711447182201,1093260.8541074116,479839.23238896986,1724.26354,731.4494813771796,1764542.9981596118,734355.5700663861,0.38131,100000,0,781983,8177.001422118119,0,0.0,0,0.0,36830,384.4842730466789,0,0.0,36747,379.6532541408733,1482605,0,53173,0,0,0,0,0,75,0.7737995649991635,0,0.0,0,0.0,0,0.0,0.05722,0.1500616296451705,0.3079342887102412,0.01762,0.3439906260462002,0.6560093739537998,24.211919695851023,4.334569845251692,0.325752508361204,0.2363433667781493,0.2207357859531772,0.2171683389074693,11.249931421575695,5.826772501922786,18.78873926429888,12052.650673087724,50.90302135538135,12.616136846271129,16.563629398022794,10.949981256040727,10.773273855046703,0.5576365663322185,0.7867924528301887,0.6858316221765913,0.5646464646464646,0.108829568788501,0.7176669484361792,0.9247311827956988,0.8609625668449198,0.7061611374407583,0.1504424778761062,0.5003028467595396,0.7122093023255814,0.62557497700092,0.5263157894736842,0.0962566844919786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002593876020832,0.0050294058000405,0.0074723846653671,0.009460612958296,0.0118210765114599,0.0142379924226993,0.016304015335359,0.0185300513532552,0.0207773085614372,0.0230207575959283,0.0250346136095584,0.0269959321198175,0.0290616930879463,0.0310252447192169,0.0330715000877365,0.0350781064232324,0.0372648935288756,0.0394004816075728,0.0414720659059467,0.0438395295981984,0.0591825430831774,0.0733234884427268,0.0865510832011929,0.0989164885383651,0.1108061314978252,0.1259159642509212,0.1379167507514524,0.1490445588345003,0.1594407539338703,0.1692872792885681,0.1814710957722174,0.1938230546738741,0.2048064259825636,0.2150564699702329,0.2244241863742458,0.2349513057159001,0.244117778373069,0.2525375284135664,0.2597302329806076,0.26726953890589,0.2742239872179319,0.2804187624283542,0.2863432994815709,0.2918475523469167,0.2965889475091779,0.3014496329652705,0.3057217979216226,0.3105102430334648,0.3153735539117254,0.318854364827732,0.3177717545208139,0.3164394878149525,0.3152374642288227,0.3139356593184054,0.313421730136762,0.3119116970718994,0.3097888127853881,0.3097754726890756,0.3110002903352518,0.3123304298157932,0.3125866786611192,0.3134597475678139,0.3133369715796986,0.3134882472658958,0.3151268595638149,0.3158815542093169,0.3161179991449337,0.320407585621285,0.3235914749947246,0.3251844466600199,0.3309881822780153,0.3354651475251249,0.335691523263225,0.340805793082197,0.3470297969254128,0.3491223851887473,0.3522462303746308,0.3567311650885137,0.3597717546362339,0.3594191206131504,0.0,2.513662269999122,51.22470947013408,173.25331815561304,243.01378826905704,fqhc2_100Compliance_implementation,95 -100000,95831,45800,435.1932047041145,5890,60.08494119856831,4654,47.90725339399568,1775,18.167398858406987,77.40182060844235,79.71425336513593,63.36325590393732,65.07513572402773,77.17951250528147,79.49436219395999,63.28042091102919,64.9957208432487,0.2223081031608842,219.89117117594503,0.0828349929081326,79.41488077902648,170.73936,120.04242184606753,178167.14841752668,125264.70750181832,422.54421,278.5927200461033,440281.49554945686,290079.9717322381,401.40132,195.5367529452046,414057.6014024689,200416.25297488613,3320.43979,1514.737217639361,3422537.6652648933,1539064.3966466528,1106.18533,489.6464604981418,1138258.7367344596,494898.1649968608,1743.31686,730.1828179706897,1785818.84776325,732969.8805952689,0.38202,100000,0,776088,8098.5067462512125,0,0.0,0,0.0,36515,380.3675219918398,0,0.0,36650,377.7065876386556,1499271,0,53883,0,0,0,0,0,75,0.7721927142573906,0,0.0,1,0.0104350366791539,0,0.0,0.0589,0.154180409402649,0.3013582342954159,0.01775,0.3372523755838299,0.6627476244161701,24.4486362647522,4.373632404254414,0.3173614095401805,0.2449505801461108,0.2165878813923506,0.2211001289213579,11.390865006974629,5.897503452915184,18.78395430900225,12028.814164478754,52.74446969168645,13.815277910934055,16.535505781528247,11.229115142036363,11.164570857187783,0.570477009024495,0.7885964912280702,0.7007447528774543,0.5932539682539683,0.119533527696793,0.7405956112852664,0.9146067415730336,0.8670212765957447,0.736,0.1365853658536585,0.5062166962699822,0.7079136690647482,0.6439600363306085,0.5461741424802111,0.1152912621359223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136535774317,0.004287060778968,0.0066550338838615,0.0088058746457844,0.0108274621038826,0.0132130787084164,0.015267797992152,0.0174627474994896,0.0196353006112394,0.021739352936962,0.0238532110091743,0.0259884222194851,0.0281024186170814,0.0302499897038836,0.0322823519704611,0.0342319256878932,0.0360939456986409,0.0381592318380721,0.0400718759412943,0.0418787140820298,0.0565781926265839,0.0695170395149487,0.0832713365117619,0.0960324379969957,0.1085635446397539,0.1244045921654362,0.1366568852823712,0.1479792503773625,0.1583884738527214,0.1680877501178285,0.1810887265921631,0.1925807462476902,0.2037548075878403,0.2147766135288397,0.2254309207633453,0.2357701078173083,0.245109192710076,0.253204839870457,0.2614002450201915,0.2682896122327519,0.2760040241914035,0.2832480071066227,0.2901436764618932,0.2947088489320667,0.2987627939730218,0.3031060643381447,0.3070218220471456,0.3118946538881968,0.3162299195488527,0.3202841815282006,0.3188822849151494,0.3176359039190897,0.3161875307513882,0.315,0.3135683602429269,0.3111759850823831,0.3086558205654715,0.3089022374257328,0.309924184342789,0.3109663873022651,0.3117193480330837,0.3128728074492588,0.3137528943031769,0.3149983298073711,0.3161671490420265,0.3180840309997149,0.3189567285908473,0.3217638070290329,0.3246558633908346,0.3272461938944545,0.3297346337037877,0.3320430563656609,0.3365969999372372,0.3415834090221011,0.3439384101660328,0.3450984990619137,0.3437737570320815,0.3404858299595141,0.3427242888402625,0.349618320610687,0.0,2.559107217770733,55.59206037014141,170.47212147296253,253.5567245940248,fqhc2_100Compliance_implementation,96 -100000,95691,45502,431.9737488374037,5635,57.70657637604372,4457,45.93953454347849,1695,17.305702730664326,77.32145341825886,79.70973682783037,63.3143933609397,65.08069485251266,77.1049002800917,79.49573511066977,63.23345200943403,65.00353267539978,0.216553138167157,214.001717160599,0.0809413515056647,77.16217711288209,171.48318,120.6822401328986,179204.89910231894,126116.39479662516,424.21291,280.60044766941064,442649.1310572572,292571.033960185,401.54587,195.5553370660232,415861.2617696544,201505.83259250096,3206.5713,1472.45087093931,3306503.119415619,1494398.5607699156,1059.56428,473.2805692470411,1087820.2547784012,475183.2161420797,1662.62752,707.6984442463178,1698215.2971543823,704910.7318151965,0.37801,100000,0,779469,8145.677231923587,0,0.0,0,0.0,36704,382.8886729159482,0,0.0,36630,378.9384581622096,1490409,0,53449,0,0,0,0,0,70,0.7315212506923326,0,0.0,0,0.0,0,0.0,0.05635,0.1490701304198301,0.3007985803016859,0.01695,0.3442539466983534,0.6557460533016466,24.147768148847053,4.3021704406856935,0.3123177024904644,0.2418667264976441,0.2324433475431905,0.2133722234687009,11.00831902322221,5.672902080635463,18.241770280211707,11916.513742177693,50.75471948974848,12.992715889156823,15.853610630667063,11.43828282926722,10.470110140657368,0.5752748485528383,0.800556586270872,0.709051724137931,0.583011583011583,0.1156677181913775,0.7489779231398201,0.9301204819277108,0.8776595744680851,0.7161016949152542,0.1581632653061224,0.5095856524427953,0.7194570135746606,0.6466535433070866,0.54375,0.1046357615894039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986706654778,0.004391035391948,0.0067605976936819,0.0090141360352028,0.01120177437734,0.0133546573221416,0.0157561418358709,0.017827241168062,0.0202823582330631,0.0223350461645546,0.0245747854704272,0.0264844215325843,0.0286181604962401,0.0309337839787317,0.032958298926507,0.0350082712985938,0.0371237388908454,0.0389389347835111,0.0408190856524813,0.0426906801742646,0.0574368080217255,0.0713523019910809,0.0846881264496898,0.0976310499784258,0.1098484848484848,0.1251058425063505,0.1372191026144554,0.1483958928038856,0.1590445145086303,0.1690299467993821,0.1806752563992071,0.1926128798293947,0.2038849734621073,0.2132410051086825,0.2227135722614568,0.2324981454621951,0.241489314237273,0.2504833198453376,0.2581266936517115,0.2648920945675196,0.2716015123660203,0.2777050406808192,0.2831108586575783,0.2889543869738686,0.2947156199521479,0.2995606099767381,0.3048838430568406,0.3094545315934589,0.3121228176731323,0.3155371138773628,0.3140418095046044,0.3128491620111732,0.3121802439984258,0.3102055535521096,0.3079595563671997,0.3044177321797718,0.3034632240099988,0.3036888808699788,0.3049019775119862,0.3058943089430894,0.3061346708088483,0.3068874982726968,0.3085415577626764,0.309072625698324,0.3105313777350325,0.3116971279373368,0.3130091758854301,0.3160181337363053,0.3195195617054154,0.3214767229756523,0.3247172125562167,0.3269189878800765,0.3300626701272393,0.3327706590961405,0.3345609065155807,0.3359645975361799,0.3391398180977339,0.345973496432212,0.3541264145735578,0.3512157468159012,0.0,2.3980994055351563,53.19425595316238,167.9156242081299,240.1800993739309,fqhc2_100Compliance_implementation,97 -100000,95698,45477,431.6600137933917,5812,59.17574034985058,4575,47.12742168070388,1853,18.99726222073607,77.3455376358958,79.73430360665266,63.32130932583449,65.08810435288827,77.11316743143536,79.50234514906657,63.23465448546554,65.00404331525684,0.2323702044604374,231.95845758608868,0.0866548403689506,84.0610376314288,170.72308,120.0957162469114,178397.29147944576,125494.03628802212,422.06748,278.7171087703382,440342.1283621392,290548.13391897856,397.69418,194.2429270255493,411253.12963698304,199690.0854265933,3321.09398,1527.2020102046192,3424732.7843842087,1550255.1929989029,1103.55151,496.52665259949697,1137312.671111204,503018.4336350774,1824.69216,767.566985266983,1872156.1370143576,772059.5696464606,0.37814,100000,0,776014,8108.967794520262,0,0.0,0,0.0,36553,381.230537733286,0,0.0,36326,375.2534013250016,1497060,0,53651,0,0,0,0,0,60,0.6269723505193422,0,0.0,0,0.0,0,0.0,0.05812,0.1536996879462633,0.3188231245698554,0.01853,0.3350871423873726,0.6649128576126274,24.125649501835717,4.378715574360739,0.3158469945355191,0.2349726775956284,0.2122404371584699,0.2369398907103825,11.10093058926564,5.622104712183512,19.654987747644466,11965.209415403173,51.88360024222486,13.011710941876984,16.24119512060289,10.79972427144133,11.830969908303665,0.5578142076502732,0.7981395348837209,0.701038062283737,0.5736354273944387,0.1143911439114391,0.7326416600159616,0.908450704225352,0.8613333333333333,0.759825327510917,0.1524663677130044,0.4918723660445515,0.7257318952234206,0.6448598130841121,0.5161725067385444,0.1045296167247386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025734809876493,0.0046858359957401,0.0067516117569419,0.0087705034655175,0.0112415561162203,0.0135669179058871,0.0156739172555858,0.0178203059578031,0.0197155157427575,0.0220376647448566,0.0242554151624548,0.0263660640920295,0.028503538512179,0.0302536941244358,0.0324042063549395,0.0344881059454765,0.0367005738672854,0.0389509299236134,0.0408585601231268,0.0426660276313321,0.0577226347505509,0.0712940092937581,0.0850143789752093,0.0973600311451088,0.1092358972195266,0.1252221188018277,0.137575738282452,0.1476728086058153,0.1576848654600656,0.1674789068034951,0.180670547649849,0.1922081297995169,0.2035748886929449,0.2146429001302126,0.2240176114474408,0.2333687896113105,0.2426339285714285,0.2507481493148527,0.2587096847383408,0.2658256828224089,0.2725106146673299,0.2797905049158863,0.2858376204837088,0.2912645769976772,0.2964243681675342,0.3008464150386299,0.3055663147373024,0.3101575092969831,0.3143458281701776,0.3181716599403173,0.3164546771856384,0.3147688807882584,0.3126728919469212,0.3113991502844387,0.3103565666582792,0.3088825477240474,0.3070361126030773,0.3078210640322951,0.3091483188257382,0.3096959634370592,0.3094581668823496,0.3111093514925964,0.311623414798018,0.3121336852937229,0.3136207187041182,0.3151342746039617,0.3143500185179909,0.3165408805031446,0.3204381099487468,0.3226895428730291,0.3247054542146204,0.3294984625172304,0.3293142426525998,0.3334345351043643,0.3376990483369452,0.3425903758678477,0.3488659157537417,0.3493136652325343,0.3496426608026388,0.3486381322957198,0.0,2.5064902759623178,54.33583907098566,167.03479135706775,251.95067452774452,fqhc2_100Compliance_implementation,98 -100000,95620,45675,434.2501568709475,5781,59.26584396569755,4544,47.02991006065676,1764,18.15519765739385,77.23812690061078,79.6695929887103,63.25655152000609,65.05433843201337,77.00807317769754,79.43861623065584,63.17040415533469,64.97014791582673,0.2300537229132402,230.97675805446727,0.0861473646713975,84.19051618663786,171.08278,120.32899309163798,178919.2219201004,125840.59787872618,424.00349,280.2632304130925,442938.24513700063,292614.05983381346,397.66835,192.8975277859741,412783.2357247438,199357.5835950781,3249.64058,1490.750866138265,3366264.0765530225,1526841.8352209425,1075.57378,476.4497813795007,1113280.2760928676,486868.762363522,1736.03722,739.9463715523616,1788166.178623719,749068.527648245,0.37946,100000,0,777649,8132.691905459109,0,0.0,0,0.0,36660,382.8696925329429,0,0.0,36177,375.2143902949173,1488614,0,53454,0,0,0,0,0,74,0.7738966743359129,0,0.0,1,0.0104580631667015,0,0.0,0.05781,0.1523480735782427,0.305137519460301,0.01764,0.3275094775012362,0.6724905224987638,24.433265737291247,4.359721243221792,0.3116197183098591,0.2517605633802817,0.2097271126760563,0.2268926056338028,11.145839484800238,5.567939078555271,18.999325126319984,11993.052454929017,51.834203633608624,13.814606829889314,16.01837259721943,10.693887052946318,11.307337153553576,0.559419014084507,0.7972027972027972,0.6871468926553672,0.5603357817418678,0.119301648884578,0.7290996784565916,0.921875,0.8519553072625698,0.6858407079646017,0.160377358490566,0.4954545454545455,0.7169540229885057,0.6313799621928167,0.5213204951856947,0.1086691086691086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020775904005188,0.0043917925207671,0.0065693282430346,0.0088836485978268,0.0110324051457417,0.0133052151145613,0.0152481003620786,0.0173150002043067,0.0198432993065073,0.0222875462190038,0.0243577115652959,0.026365812808894,0.0285811325415285,0.0305557560075461,0.0326431558837197,0.0345798067172981,0.0366150752101842,0.0387364178422288,0.0406495601936189,0.0424499760051745,0.0576575257969075,0.0717309747867457,0.085107947680832,0.0971805322969656,0.1095739962405221,0.1254011799722484,0.1369943056263811,0.1490380003197783,0.1594894454727337,0.1695776402852969,0.1818809616297639,0.193328057070373,0.2039139625602022,0.2141636168394293,0.224788943505191,0.2355584651916291,0.244368386909156,0.2525119253019385,0.2609204944786253,0.2680140093012574,0.2747789561625397,0.281464369891767,0.2870160534402771,0.2926738385720295,0.2974260852609257,0.3017109232062503,0.3067575540742414,0.3109970899065707,0.3150385904732205,0.3180187692755695,0.3177036206733561,0.3154335555279537,0.3137935902866017,0.3121640223139897,0.3107190710138455,0.3081388206388206,0.3048691398805742,0.3054979082254505,0.3062540738961885,0.3069250192510879,0.3074077551403624,0.3086997008301468,0.3104013104013104,0.3112814306844157,0.3121777263746325,0.3130387086663532,0.3143330855868732,0.3175513806581768,0.3204136184580754,0.3236481672076637,0.3259650881910578,0.3299543572869122,0.3307996733463157,0.3321442125237192,0.333146277590722,0.3380661816475006,0.3400120518228382,0.3438868976503385,0.3462377317339149,0.3535660091047041,0.0,1.8800950074380145,54.879279261780106,171.38144059870055,245.68999242902763,fqhc2_100Compliance_implementation,99 -100000,95726,45796,434.2602845621879,5732,58.76146501472954,4467,46.15256043290224,1734,17.769467020454215,77.33641368994157,79.71159580363417,63.332022412709286,65.08947364253824,77.12712258532797,79.50221399230894,63.25524664216072,65.01445640950962,0.2092911046135981,209.3818113252297,0.0767757705485721,75.01723302861762,170.8069,120.18715278277006,178432.44259657775,125552.68371859413,423.06889,279.94639374461127,441446.3364185279,291936.6669408678,397.6462,194.00987103039407,411528.4353258258,199673.01833254032,2532.6314,1160.6065738777309,2618770.4489898253,1185725.020114975,1034.43059,454.4636241780999,1065780.3418089128,460378.3305322619,1688.04648,695.9474238902408,1732253.201846938,702426.0004647078,0.38165,100000,0,776395,8110.565572571715,0,0.0,0,0.0,36603,381.8398345277145,0,0.0,36265,375.1122996886948,1497097,0,53699,0,0,0,0,0,75,0.7625932348578234,0,0.0,0,0.0,0,0.0,0.05732,0.1501899646272763,0.3025122121423587,0.01734,0.3390422347855005,0.6609577652144994,24.524665902465596,4.289591882148242,0.3145287665099619,0.2507275576449518,0.2225207074098948,0.2122229684351914,11.558258055821282,6.191524090165112,18.22079855563561,12048.992389393972,50.700275545276064,13.555258182726798,15.791228350897388,11.134198685218305,10.219590326433584,0.5768972464741438,0.8294642857142858,0.6868327402135231,0.5764587525150905,0.1160337552742616,0.745819397993311,0.92018779342723,0.827683615819209,0.7096774193548387,0.1845238095238095,0.5151329868541731,0.7737752161383286,0.6393910561370124,0.532171581769437,0.1012820512820512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020773377649872,0.0043205306341849,0.0065180973653484,0.0090454508496625,0.0111695472162599,0.013749414376795,0.0158272060698151,0.0180416581580559,0.0201711428951161,0.0226132710930942,0.0249090256778227,0.0270525548494399,0.028947503727698,0.0308682665568029,0.032853870441835,0.0351421188630491,0.0371302249971525,0.0392962363583551,0.0415198661387044,0.043363228232451,0.0581921080934331,0.0728364579845999,0.0861043822946487,0.0985136754472638,0.1107492543291069,0.1263897696047347,0.1384157135437093,0.1491902468072436,0.1594018827246141,0.1693357471104303,0.1828091205492128,0.1947021299599956,0.2053519045653071,0.2152211190842863,0.2253241045923972,0.2353240321047162,0.2445555914493544,0.2532750601083073,0.2613416140621281,0.2687065495792169,0.2751242056614673,0.2821967706910441,0.2883527591785642,0.2936392124967107,0.2977658168769926,0.302672192230598,0.3067239484463982,0.3110301213999085,0.3156506902435241,0.3190283507532522,0.3174517769228699,0.3156040568621245,0.3138025233750141,0.3126381644536273,0.3113070107629185,0.3091480232914496,0.3075814447031247,0.3085347432024169,0.3092415442432524,0.3096585331024757,0.3103932321398491,0.3115307209660234,0.3119252633338906,0.31436785451628,0.315540621624865,0.3178544499622994,0.3173804965856167,0.320328995052469,0.3223065037224329,0.3272061749025224,0.3280469358756933,0.3314053127677806,0.3356124992012269,0.3350277264325323,0.333933137607728,0.3395976388386941,0.3451423267326732,0.35,0.351388507011273,0.3477600607441154,0.0,1.985270019545854,52.44709134533559,169.357848570136,242.67959156417203,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95623,45646,434.100582495843,5799,59.70320947889106,4535,46.98660364138335,1803,18.61476841345701,77.26635035352784,79.70592410010384,63.26822878755484,65.07289107162828,77.05037460930852,79.48694989052183,63.19027003667897,64.99515027135486,0.2159757442193211,218.97420958201508,0.0779587508758723,77.74080027341768,170.51298,119.93786990703543,178317.95697687796,125427.84675970786,425.08978,281.11643785335576,444147.0566704663,293583.549829388,401.00952,195.6153839855125,416447.7792999593,202316.7215601516,2626.18272,1208.93393309987,2724793.072796294,1242974.528237471,1083.13672,484.1241137670774,1122174.4350208633,495869.7663935981,1769.3438,728.7183773252174,1829249.4483544757,745087.2157820108,0.38037,100000,0,775059,8105.361680767179,0,0.0,0,0.0,36808,384.48908735346095,0,0.0,36562,379.4693745228658,1491024,0,53543,0,0,0,0,0,77,0.794787864844232,0,0.0,0,0.0,0,0.0,0.05799,0.1524568183610694,0.3109156751163994,0.01803,0.3370102074415542,0.6629897925584458,24.293567919353464,4.378353757238871,0.3190738699007718,0.2381477398015435,0.2198456449834619,0.2229327453142227,11.307736822332677,5.843423117224147,19.17259622564208,11962.987108887655,51.70452119338875,13.101821306240891,16.411426733980512,11.114383212127311,11.076889941040031,0.560308710033076,0.7814814814814814,0.6800276434001382,0.5887662988966901,0.1246290801186943,0.7463768115942029,0.9271844660194176,0.8626943005181347,0.7754237288135594,0.1394230769230769,0.4901305800182204,0.6916167664670658,0.6135721017907634,0.5308804204993429,0.1207970112079701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020167011228667,0.0042404260715191,0.0063980826063554,0.0087237676915568,0.0110237983754402,0.0131169929777714,0.0151555355976485,0.0174836250676966,0.0196652205942539,0.0216415616354134,0.0238412906933782,0.0261599819090105,0.0284117229239368,0.0304979894834519,0.0324016691455957,0.0344766930518909,0.0364731245206359,0.038541428660449,0.0403488505208821,0.0423093368373848,0.0571810873814825,0.0711800825701532,0.0844134019535763,0.097639835283462,0.1100515355045832,0.1252608055582033,0.136692558628824,0.147619657025851,0.1582163342179608,0.1680845578757411,0.1800692325112421,0.191516570214795,0.2023431035233657,0.2123057377857119,0.2226996771670027,0.2319250388112663,0.2418537130094919,0.2503996037731601,0.2585290510153091,0.2654949439361629,0.2723841718956216,0.279407289496477,0.2856601673947271,0.2907084047410745,0.2966635075696824,0.3010447632322285,0.3054271721840203,0.3101428607807685,0.3148397626881525,0.3194748647578836,0.3186921171656257,0.3171909169681048,0.3158976959044561,0.3142873649546479,0.3131137555525842,0.3105168903922979,0.3083655124390707,0.3085247893846583,0.3085542497950259,0.3093247588424437,0.3099669768838187,0.3109338505997387,0.3116528890940371,0.3117420682865709,0.3118525656468321,0.3128347135505107,0.313375250071449,0.3173716917447399,0.32054890921886,0.3258377776008915,0.3266748757239932,0.3313829787234043,0.334388052145298,0.3382107657316148,0.3425347384127576,0.3460365853658536,0.3484066767830046,0.3528465097565882,0.3536318951392682,0.3619654913728432,0.0,1.7248056829727618,54.89868351977897,172.59745019882496,242.77812461184567,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95704,45336,430.7343475716794,5710,58.419710774889246,4491,46.33035191841512,1697,17.324249770124553,77.34534288058313,79.71442044035531,63.32656324425341,65.07480483718447,77.12990405305409,79.50343254173299,63.24514114163095,64.99790496714587,0.2154388275290415,210.9878986223208,0.0814221026224544,76.8998700386021,171.08146,120.34087164797918,178761.0340215665,125742.78154306946,420.61329,278.33823970325693,438835.7539914737,290175.5630271877,394.956,192.61140502718092,409393.6721558138,198590.88901536213,2566.30388,1190.0068807696066,2649516.801805567,1211559.2822988108,1055.40561,468.6170100153771,1089402.3133829308,476331.1587762835,1659.94928,705.688531615789,1697114.5197692886,705278.7133865139,0.37765,100000,0,777643,8125.501546434842,0,0.0,0,0.0,36468,380.4438685948341,0,0.0,36012,372.9833653765778,1494162,0,53568,0,0,0,0,0,65,0.6687285797876787,0,0.0,1,0.0104488840591824,0,0.0,0.0571,0.1511981993909704,0.2971978984238179,0.01697,0.3361260053619302,0.6638739946380697,24.184514220681912,4.193175610999602,0.3175239367624137,0.2518370073480294,0.2199955466488532,0.2106435092407036,11.26348554726705,5.999215963757523,18.087114308814066,11893.41199413827,51.13989855084388,13.64676974316266,16.07372141947517,11.012910054731,10.40649733347504,0.5749276330438655,0.7922192749778957,0.6963534361851332,0.5941295546558705,0.1120507399577167,0.7424,0.9159090909090908,0.8653846153846154,0.7413793103448276,0.1775700934579439,0.5103363159518667,0.7134587554269175,0.6384180790960452,0.548941798941799,0.0928961748633879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809624108878,0.0047027344779356,0.0071019844973824,0.0093438959983749,0.0114401350444385,0.0134698988993982,0.0155550798650398,0.0178638873860539,0.0200151289023368,0.0219262777533242,0.0240809464252762,0.0261655370712672,0.0282652074633313,0.0300717023117814,0.0322610607139539,0.0343301942379854,0.0363101587663245,0.0384292074429996,0.0400927456668434,0.0421117352202503,0.0562715404699738,0.0700103618266121,0.0831523164908966,0.0955753143578681,0.1077752685675692,0.1226397121083827,0.1340199617753238,0.1458308919877702,0.1560579338357116,0.1658120574983909,0.1787519262061013,0.1904725807848912,0.201645553088677,0.2118003853902076,0.2205555188440274,0.2300537664209301,0.2394271873918721,0.2483292455165275,0.2565973916892727,0.2634502823499765,0.2709962519087501,0.2775238206582101,0.283310654913329,0.2895909711738911,0.2950771884223439,0.3000110909830308,0.3051176176176176,0.3093171333070676,0.3131888769443977,0.3167665777589986,0.3150107132750279,0.313991435220247,0.3130732973949366,0.3118554837216702,0.3106032444649309,0.3083178901260472,0.3057395317958364,0.3059095227175942,0.3065314663899144,0.3075691826136444,0.3096459005388875,0.3107347966328377,0.3117216346454722,0.3133183146343095,0.315492484272199,0.3162697587354409,0.3174113585557033,0.3197102625745418,0.3238042114070562,0.3264928312588624,0.3286284832531542,0.3329983072365637,0.3386399247884675,0.3440631642878834,0.3482126146359723,0.3510400752144788,0.3508718726307809,0.3518555667001003,0.3529732678668849,0.3604651162790697,0.0,2.323598291623735,54.6060574607141,168.72791743118103,238.59840977767897,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95664,45697,434.4894631209232,5675,58.10963371801304,4465,46.09884596086302,1748,17.843702960361263,77.2498286400838,79.6491376898295,63.26585613190741,65.03930486869825,77.03036375201643,79.43307826617205,63.18353732494834,64.96141006998646,0.2194648880673781,216.0594236574553,0.0823188069590727,77.89479871179594,170.3097,119.74181898452196,178029.03913697944,125169.15347938825,421.0863,279.1404160573086,439591.3927914367,291223.3704731285,395.99934,192.27192735959545,411106.6545408932,198829.3174809906,2548.90704,1176.0886083269272,2630946.1448402745,1196460.4229104642,1052.14943,466.277075731576,1081937.886770363,469741.1014304654,1708.29514,720.7780184922192,1744502.5296872386,717710.2571296571,0.38013,100000,0,774135,8092.229051680883,0,0.0,0,0.0,36575,381.71098845960864,0,0.0,36125,374.7491219267436,1490253,0,53570,0,0,0,0,0,66,0.6899147014550928,0,0.0,0,0.0,0,0.0,0.05675,0.1492910320153631,0.3080176211453744,0.01748,0.3379403337266138,0.6620596662733862,24.13053458903333,4.372497745248199,0.3198208286674132,0.2391937290033594,0.2291153415453527,0.2118701007838745,11.559072947504424,6.1182993845869005,18.67140750126239,11961.298750618686,50.96440131467689,12.81103103103224,16.251478699660037,11.571021117894766,10.330870466089848,0.5724524076147817,0.7883895131086143,0.7128851540616247,0.5796676441837733,0.1088794926004228,0.7426900584795322,0.9175257731958762,0.8654353562005277,0.7154150197628458,0.135593220338983,0.5100979192166463,0.7147058823529412,0.657769304099142,0.535064935064935,0.1027308192457737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210867539203,0.0045838530733112,0.0067092295043696,0.0088295061979272,0.0110974356887835,0.0132096225531134,0.0154586613370314,0.0176035125338234,0.0197790959296379,0.0220604049528374,0.0241042946673094,0.0260708782742681,0.0281319133611154,0.0304154684971604,0.0326247431833902,0.0346785536984941,0.0365273618436732,0.0384779110211285,0.0401094556350923,0.0420429188129548,0.0556107041723701,0.069790335756027,0.0828199288405629,0.0953332982585363,0.1078653819770571,0.1237643672078403,0.1356738560217485,0.145868411517722,0.1572686329257464,0.1676066475447699,0.1801829992015365,0.1908882888158679,0.2016052519656702,0.2118460019743336,0.2211159556266902,0.2311795099727762,0.2405968745802176,0.2499294972306512,0.2583993444414094,0.2652144440997713,0.272370468427042,0.2788720153154105,0.2857889920251013,0.2912736983928399,0.2963220239836209,0.3016691394658753,0.3058875219683655,0.3112368014504041,0.3151183024699374,0.3202181019308903,0.3192653116348166,0.317303978370027,0.3155575018717597,0.3149329004956378,0.31386567764422,0.3119250582607629,0.3088831843823287,0.3099643133191902,0.3101996096826103,0.3113009833951314,0.3128629145917505,0.3136788714534791,0.3149305701220791,0.3150863035193902,0.3154330063390296,0.3173277118467624,0.3181276595744681,0.3217665615141956,0.3250165522528487,0.3278973346495558,0.3321138211382113,0.3361914781693845,0.336894720399875,0.3347448015122873,0.3387952704589889,0.3400491976104017,0.3477734019993941,0.3573015552413653,0.3615742006012571,0.3668171557562076,0.0,2.228234663001059,52.46290074447103,175.39694516141762,236.7096205086112,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95755,45394,431.4970497624145,5841,59.88199049657982,4624,47.83040050127931,1739,17.87896193410266,77.32698317968122,79.68822622396509,63.31555014592704,65.06185447571404,77.10423385672493,79.46513316390053,63.2328294512697,64.98133963251904,0.2227493229562895,223.09306006455645,0.0827206946573397,80.51484319500446,172.40608,121.26806975529335,180048.93739230328,126643.90263404876,425.16569,280.49733038567604,443545.0054827424,292464.0559844561,395.37375,191.77188333298457,410385.3793535586,198331.3021334037,2648.81732,1208.4642293702764,2741726.6565714586,1237592.9517730414,1091.41083,477.4480607286801,1132167.249751971,490986.3513431985,1705.28096,714.6915465329944,1754550.46733852,723150.1617395827,0.37914,100000,0,783664,8184.042608741058,0,0.0,0,0.0,36835,384.18881520547234,0,0.0,36088,374.31987885750095,1486363,0,53320,0,0,0,0,0,72,0.7519189598454389,0,0.0,2,0.0208866377734844,0,0.0,0.05841,0.154059186580155,0.2977229926382468,0.01739,0.3353896103896104,0.6646103896103897,24.307829362347885,4.36301842859892,0.3103373702422145,0.2536764705882353,0.215181660899654,0.2208044982698962,10.964427896073168,5.576480451309415,18.468572604355167,11914.121608873764,52.3146190421194,14.161334810036893,16.044623582062805,10.984991871941686,11.123668778078011,0.5583910034602076,0.7740835464620631,0.6878048780487804,0.5728643216080402,0.1145935357492654,0.728701406120761,0.9011494252873564,0.8638888888888889,0.7192118226600985,0.1516587677725118,0.4980966325036603,0.6991869918699187,0.6288372093023256,0.5353535353535354,0.1049382716049382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0047251120439658,0.0068509834967419,0.0090824122236671,0.0113806254767353,0.0133699913446362,0.0155912224170983,0.0177102259967743,0.0195415103788722,0.021525076765609,0.0235215742543814,0.0255399523692206,0.0276098844619875,0.0297685242390543,0.0314211737035929,0.0333137005693501,0.0356662180349932,0.0375188008920699,0.0396304072172448,0.0416610236589609,0.0554865381202434,0.0693511602117464,0.0825723661449105,0.0956646061982254,0.1080437234502313,0.1224453114261849,0.1341407799425171,0.1455886893291741,0.1563258195188166,0.1660101535918599,0.1794910486209163,0.1914642466510001,0.202561256909083,0.2123837654523575,0.2211129944746516,0.2312116946879606,0.2406590337894442,0.2497972972972973,0.2587716807324027,0.2659003919231739,0.2716568252865578,0.2784328419376368,0.2847426296331405,0.2902757445583047,0.2951098787502888,0.3006253006253006,0.3053157769453388,0.3095025851310394,0.3136881390195545,0.3177732905729105,0.3168853893263342,0.314806917140145,0.314113124656782,0.3138467764080181,0.313061824881506,0.3105741384858189,0.3080236259124954,0.3080230401890477,0.3089033844472524,0.3098313055560504,0.3107110138912259,0.3109265251361376,0.3119131455399061,0.3128028763482882,0.3144737158089383,0.3164583333333333,0.3184738727469153,0.3218686314469353,0.3239564745810153,0.3250049416880806,0.3266887147193403,0.3301104242616368,0.333291653641763,0.3375122724869723,0.3424759772366825,0.3446374090589064,0.3454407294832827,0.3443348762326423,0.341267644616662,0.3460943542150038,0.0,1.7833790133510787,53.40558336616396,176.3553302753008,252.588847576628,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95767,45873,436.27763216974535,5673,58.2142073992085,4447,45.94484530161747,1703,17.427715183727173,77.39144353273707,79.73027300293248,63.36142006586866,65.0872098339638,77.18023825698897,79.51961660445112,63.28436597199897,65.01244111415197,0.2112052757480995,210.65639848136183,0.0770540938696839,74.76871981182853,171.34898,120.43508690286605,178922.7813338624,125758.44174179624,423.59635,279.306634337265,441794.2610711414,291128.40425029857,391.2257,189.67515811143025,405431.3281192895,195702.02594018605,2550.74016,1161.5313483414254,2637525.201791849,1187053.4068717067,1021.4127,449.4028269512496,1054605.8872054047,457695.4707522213,1664.4012,696.1732442807105,1705826.8923533158,701554.8471656298,0.38273,100000,0,778859,8132.853696993746,0,0.0,0,0.0,36593,381.5510562093414,0,0.0,35625,368.95799179258,1499157,0,53761,0,0,0,0,0,76,0.7831507721866614,0,0.0,0,0.0,0,0.0,0.05673,0.1482245969743683,0.3001939009342499,0.01703,0.3469899665551839,0.653010033444816,24.514042692184454,4.288568838539654,0.3307847987407241,0.2307173375309197,0.2235214751517877,0.2149763885765684,10.98072915020587,5.699004858478064,18.092789249269003,12012.919360311014,50.19572108979845,12.326666998847973,16.550008442583128,10.909133014498073,10.409912633869274,0.5572295929840342,0.7923976608187134,0.6832087015635622,0.5633802816901409,0.104602510460251,0.7338568935427574,0.9318801089918256,0.8514588859416445,0.6636363636363637,0.1758241758241758,0.4959103302029688,0.7147192716236722,0.6252285191956124,0.5348837209302325,0.0878552971576227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024096873481289,0.0045096628393647,0.0067774598729733,0.008957861488305,0.0112861079195941,0.013333604755313,0.0154778887303851,0.017599526598241,0.0197059935232763,0.0218036342801014,0.023780737704918,0.0258125410374261,0.0278768200080147,0.0299805481510451,0.0319867228813821,0.0337881808509539,0.0358081675739449,0.0379166580241023,0.0399463639765498,0.0417821204608429,0.0561447090996388,0.0701647920481297,0.0835448880683129,0.0960943908133005,0.1084705733504839,0.1244633831708503,0.136440273580404,0.1480634420841001,0.1577930121305313,0.1678760141906303,0.1811195660363143,0.1931681787216557,0.204277005661382,0.214325502146204,0.2235349716446124,0.2335936808567129,0.2435363081175054,0.2528074746204294,0.2599861751674278,0.2672362521731174,0.2742082702683966,0.2809761910325007,0.2874686776038958,0.2941014497958792,0.2994980479643056,0.3035617651399616,0.3083340618716357,0.3124634586542616,0.3166489953192479,0.3203539589944825,0.3186714301063715,0.3174857989627068,0.3160223633196606,0.3138587347749719,0.3126091719217219,0.3108110167812343,0.3089097673245475,0.3096805816518258,0.3100181963505263,0.3105889467973461,0.3117614061331338,0.3131006176371924,0.3139880329720909,0.3143061484478019,0.3154740414470359,0.3163754889178618,0.3188240980297387,0.3237882693153957,0.3265198609208724,0.3298429319371728,0.3330752413918746,0.3356401384083045,0.3363200403836446,0.3368853706804688,0.3429427180831149,0.3466588511137163,0.3523852385238524,0.3538338658146965,0.3567567567567568,0.3618867924528302,0.0,1.8152838842845695,50.26458991355242,168.07356508325458,247.82986778394485,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95724,45743,432.9112866156868,5748,58.72090593790481,4508,46.47737244578162,1817,18.626467761480924,77.37264048070351,79.7313454479242,63.34029949113111,65.08169656815417,77.13952332782313,79.49972690715805,63.25426196041943,64.99866784669968,0.2331171528803821,231.6185407661493,0.0860375307116854,83.02872145449669,171.82682,120.91091826460796,179502.34006100873,126312.0202505202,422.697,279.60652707743293,440996.0302536459,291513.6925718031,403.1633,196.98199700603084,416828.4024904935,202480.9042548453,2610.87856,1210.407255530109,2695032.2594124777,1232001.771269597,1085.10623,488.1376621576098,1117929.798169738,494294.5887735672,1779.52996,746.304122102914,1826371.401111529,752929.9306435662,0.38016,100000,0,781031,8159.197275500396,0,0.0,0,0.0,36479,380.4688479378213,0,0.0,36699,379.11077681668127,1488926,0,53435,0,0,0,0,0,76,0.7730558689565835,0,0.0,0,0.0,0,0.0,0.05748,0.1511994949494949,0.3161099512874043,0.01817,0.3411842759993365,0.6588157240006635,24.580303711726305,4.3386394453903225,0.3154392191659272,0.2395740905057675,0.217391304347826,0.2275953859804791,11.149604517038398,5.841271375648177,19.318634464756556,12018.221207406486,51.23654477561748,13.079880081968687,16.13078448395367,10.805331296765408,11.220548912929717,0.5618899733806566,0.774074074074074,0.7109704641350211,0.5795918367346938,0.1150097465886939,0.7508116883116883,0.9140811455847256,0.8923076923076924,0.7605633802816901,0.1523809523809524,0.4908424908424908,0.6853252647503782,0.6424418604651163,0.529335071707953,0.1053921568627451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101265822784,0.0046314594671287,0.0068778721202714,0.0093942963925901,0.0116727165502445,0.0138546735346214,0.0162174834869118,0.0183724087248527,0.0204642795081213,0.0226432863474905,0.024914388828511,0.0271050010780398,0.0294190231362467,0.0315045778963304,0.0336438763192918,0.0357397550514185,0.0378212163253473,0.0397676589565397,0.0420728792067682,0.0441616064825905,0.0588794219604894,0.0725212405306993,0.0861118100989766,0.098706130900453,0.1111298517846977,0.1261457463341403,0.1374917799792113,0.1486037800102162,0.1587782998718496,0.1691814389430449,0.1817995799903074,0.1936317998874799,0.2040172696921253,0.2137451332079268,0.2227552289055881,0.2327369412286046,0.2427452118398143,0.2509034822061853,0.2584221167170214,0.2661040658609856,0.2731345356886532,0.2798759435894435,0.2871054876315041,0.2923300260344807,0.2972664179013771,0.3023671557144618,0.307031817157734,0.3110271768850228,0.3147424281646389,0.3195294365899979,0.3188068457025994,0.3174825751639378,0.3157479760647659,0.3145895339093247,0.3133747362790836,0.311314254214709,0.3088786598965501,0.3089000082027725,0.3081787808536751,0.3090666429397633,0.3092727713811185,0.3086774339503865,0.308503969912244,0.3093525179856115,0.3113101367369908,0.312034852060265,0.311527891888829,0.314668498797664,0.3188122952533631,0.3223069065765695,0.3254942674009208,0.3272103457376616,0.3305894181224079,0.3335101545923007,0.3380281690140845,0.340571158838801,0.3444647758462946,0.3471857978616098,0.3445723684210526,0.3347392638036809,0.0,2.438804522914376,53.47993358306556,171.47229931934763,240.5864442819064,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95742,45358,429.5084706816235,5660,58.05184767395709,4459,45.97773182093543,1715,17.505379039501992,77.33281654085012,79.69772797370211,63.319784280511655,65.07047873288344,77.11555894596083,79.48331137597556,63.239065488982526,64.99346966182874,0.2172575948892898,214.4165977265544,0.0807187915291294,77.00907105470378,173.1499,121.74608454850966,180850.51492552905,127160.58213585436,423.25799,280.1361523608628,441488.8554657308,292001.8616290268,395.60257,192.74894838730492,409410.13348373753,198451.93496684227,2572.3146,1187.419225027596,2653379.415512523,1206892.6333558902,1060.90559,471.1204745267152,1092256.1885066116,476241.1528135144,1692.10176,716.4721221430917,1728827.2231622487,715583.9984058316,0.37746,100000,0,787045,8220.47795116041,0,0.0,0,0.0,36707,382.7682730672014,0,0.0,36103,373.3157861753462,1482753,0,53267,0,0,0,0,0,72,0.7520210565895845,0,0.0,0,0.0,0,0.0,0.0566,0.1499496635405076,0.3030035335689046,0.01715,0.3373901284651792,0.6626098715348209,24.448553548115694,4.318753528523285,0.3195783808028706,0.2440008970621215,0.2105853330343126,0.2258353891006952,10.99069503428076,5.511203965304997,18.365501836194277,11868.43630447247,50.66161745683178,13.11950519796284,16.140673236747325,10.380615866124677,11.020823155996936,0.5671675263511998,0.7840073529411765,0.7164912280701754,0.5665601703940362,0.1221449851042701,0.7294882209585702,0.909307875894988,0.8556149732620321,0.7239819004524887,0.1705069124423963,0.5052664188351921,0.7055306427503737,0.6669838249286394,0.5181058495821727,0.1088607594936708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023204207155812,0.0046960737577718,0.0070362473347547,0.0093412345879793,0.011547226630855,0.0139137874837027,0.0159495813744786,0.0182950484941296,0.0206028506574507,0.0228545683537952,0.0250466484857183,0.0270461756461201,0.0292832392527016,0.0312561147670981,0.0332838099954603,0.0352772150328688,0.0372211520536879,0.0392805994312874,0.0414262095642137,0.0433165609275869,0.0576069821583304,0.0717618748692195,0.0848022818074095,0.0972466068819058,0.1091142896292939,0.1240959269128283,0.1359485857910979,0.146655313714012,0.1568154145216072,0.1657855511350841,0.1781184729011003,0.1897034801328443,0.2010156258495264,0.2119032261591105,0.2211394632644082,0.2311874391000088,0.2398486927995179,0.247498790190981,0.256177428691418,0.2632259985342616,0.2699305555555555,0.2766221452234071,0.2829580851089029,0.288475141168431,0.2936136598407972,0.2979054104063355,0.3020226689210345,0.3064813754310948,0.311193159735717,0.3145414697261757,0.3130656108597285,0.3111832780614,0.3106703107830154,0.3089713955504189,0.3077060292543703,0.3054199256118654,0.3024900335379358,0.3025021315668656,0.304378964599959,0.30603302399316,0.3057217651458489,0.3063303132587197,0.308185692796256,0.3091873579102215,0.3112555774120808,0.3114988558352403,0.3139022378934797,0.3171749497991968,0.3202859445631986,0.324615628467269,0.3268698060941828,0.3282616762975136,0.3326850690087829,0.3346975898135516,0.3360127114683615,0.3413166588013214,0.3406676783004552,0.3439323807607164,0.3455540355677154,0.3471798780487805,0.0,2.308146217325838,53.74691179358825,161.22901271341792,246.23876970333336,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95783,45817,434.61783406241193,5860,60.00020880532036,4610,47.5658519779084,1776,18.16606287128196,77.34910350822409,79.67763689764595,63.34642956891118,65.0668404090967,77.12018410446802,79.45233879105075,63.2608916049439,64.98545124164433,0.2289194037560662,225.29810659520425,0.0855379639672762,81.38916745237168,170.09982,119.63891090478168,177588.7370410198,124906.20559471064,420.95303,278.0997045880185,438922.0007725797,289779.3288871914,401.60705,195.61673206715588,416331.05039516406,201882.6970306796,2627.84324,1210.837924852871,2714939.728344278,1235548.4844417816,1080.22276,478.53087813109295,1114952.945721057,486770.6149641296,1734.86192,732.7437446112473,1777637.0754726832,735445.971585218,0.38181,100000,0,773181,8072.215320046354,0,0.0,0,0.0,36425,379.6915945418289,0,0.0,36570,378.8041719303008,1500404,0,53882,0,0,0,0,0,65,0.6786172911685789,0,0.0,2,0.0208805320359562,0,0.0,0.0586,0.1534794793221759,0.3030716723549488,0.01776,0.3288317604946306,0.6711682395053693,24.70670561264998,4.221574113375246,0.3219088937093275,0.2468546637744034,0.2171366594360086,0.2140997830802603,11.241778604268202,6.037237739604781,19.031471813042696,12081.103884055025,52.27315204678537,13.600990051906129,16.7203131026928,11.065717807734789,10.886131084451662,0.5607375271149675,0.7776801405975395,0.6866576819407008,0.5684315684315684,0.1134751773049645,0.7193263833199679,0.9013761467889908,0.832,0.6837606837606838,0.1584158415841584,0.5019327980969372,0.7008547008547008,0.6375112714156899,0.5332464146023468,0.1019108280254777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0043280390030306,0.0065435067108987,0.0086642085910757,0.0109102371171757,0.0131520013029846,0.0154304001304551,0.0175843241312445,0.01981219793806,0.0220989953141945,0.0241466213170511,0.0261362120450277,0.0281174850471707,0.0303014708152783,0.0325913247894091,0.0346946785655263,0.0366307947019867,0.0384910512453597,0.0407128383644204,0.0429045997479875,0.0581286134708104,0.0718118208155965,0.0855971565471759,0.0985339708896011,0.1110713006091006,0.1261479281811745,0.1379829349727065,0.1490977147779112,0.1596679010105968,0.1696771014120117,0.1818142683412434,0.1935142032245158,0.2047142220337693,0.2149980317543629,0.2249994499328918,0.2351631801016622,0.2444456843162417,0.2532519365464827,0.2612276383106644,0.2688499444832362,0.2753009749158658,0.281871030376756,0.2882432992130643,0.2932577672869313,0.2983847461743988,0.3031181032463289,0.3078001401822369,0.3120712694877505,0.3171164634699351,0.3208810363269025,0.3197386149285907,0.3188738986784141,0.3177004112444369,0.316700125651728,0.3154043664752067,0.3127801147227533,0.3102526801808924,0.3106784970396733,0.311079642394049,0.3117849684984561,0.3126239754481829,0.3145947442311114,0.3166753899298649,0.317423021840315,0.3195150755585548,0.3204642287685914,0.3223896816998884,0.3266163418717033,0.3290118020081028,0.3327353187417773,0.3372427326244694,0.3412339905404687,0.3452237384957156,0.3491929931920752,0.3501989766913019,0.355241065003598,0.3574527424852805,0.3560358890701468,0.3615725359911406,0.3581560283687943,0.0,2.201859050533383,54.44801082384151,170.24157429896763,253.95836064219472,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95661,45550,431.2729325430426,5903,60.52623326120362,4630,47.76241101389281,1846,18.900074220424205,77.31532774038504,79.70772086584616,63.31028192710126,65.07627512114692,77.08196936835557,79.47532306866037,63.22292618722668,64.99166585254905,0.2333583720294711,232.3977971857829,0.0873557398745816,84.60926859787321,170.8971,120.17262781858132,178648.6656004014,125623.4283758076,421.97363,278.5889879436299,440486.091510647,290597.7963262247,398.22458,194.16960159844857,411884.38339553215,199570.91835634413,2669.20228,1231.4252800020931,2757625.782711868,1254633.9678678804,1118.94457,497.9663864771354,1153102.9991323529,503958.4328797897,1814.803,767.5006966423932,1861604.938271605,772051.9338334342,0.37923,100000,0,776805,8120.393890927337,0,0.0,0,0.0,36503,380.9389406341142,0,0.0,36295,375.0222138593575,1494631,0,53625,0,0,0,0,0,72,0.7422042420631187,0,0.0,2,0.0209071617482568,0,0.0,0.05903,0.1556575165466867,0.3127223445705573,0.01846,0.3332255456750202,0.6667744543249798,24.43490785500303,4.367078769508548,0.3136069114470842,0.2347732181425486,0.2233261339092872,0.2282937365010799,11.185530315281268,5.827873917543679,19.676321282921307,12034.700710790992,52.63704737912696,13.125974820137724,16.475558910483016,11.493925393531065,11.541588254975132,0.555939524838013,0.7782888684452622,0.6935261707988981,0.5831721470019342,0.1116367076631977,0.7225656877897991,0.9124087591240876,0.8589420654911839,0.7654320987654321,0.1358024691358024,0.4913069544364508,0.6967455621301775,0.6312796208530805,0.527180783817952,0.1044226044226044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819174585165,0.0048865548774306,0.0072865290547808,0.0095503220693719,0.0119120279947916,0.0141074611662846,0.0164007996409775,0.0189060824268423,0.0209950401390806,0.0231838941569213,0.025383053350563,0.0275908824768107,0.0295657720123036,0.0318701700154559,0.0339075773371455,0.035908202418012,0.0379634042729552,0.0401249623763609,0.0419093783806274,0.0441076844507905,0.0585819959879638,0.072328262258007,0.085504980006507,0.0979649388639855,0.1098142676234698,0.1250423405876873,0.1372115986961553,0.1477355033871586,0.1579594279728949,0.168468052678466,0.180446427609101,0.1922060766182298,0.203964340528361,0.2140058658728769,0.2234729167125581,0.233896462601635,0.2433452855690716,0.2528502774307548,0.2615084141439375,0.2686796432583626,0.2750249032826001,0.2814728092255458,0.2873266459016781,0.2922201821651006,0.2973396691904768,0.3023006361887853,0.3072183539548164,0.3116060066174599,0.3150025243698784,0.318699594778316,0.3172544742051468,0.3152010793991712,0.3143955394103235,0.3139086059589724,0.3120961392771729,0.3096860121553558,0.3074976273331224,0.3080980148070497,0.3089491907011649,0.309624400591832,0.310486583451678,0.3120524000236747,0.3131778401239479,0.3141177522464124,0.315193071093468,0.3149485207871758,0.3153909888288906,0.3187650107445329,0.3213882618510158,0.324133530092131,0.3265138368800804,0.3292760710109493,0.3305320358903071,0.3343572415911534,0.3347541915316851,0.3382651234936165,0.3408536585365854,0.3448413490321293,0.3502886994775914,0.3490315229775921,0.0,2.497116316126309,56.54588466642821,168.12079575686127,251.37477737995675,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95640,45577,433.3228774571309,5730,58.91886240066918,4526,46.86323713927227,1747,17.92137181095776,77.3146043072854,79.73371703239296,63.296484254502126,65.08279783678843,77.09248815285781,79.51296977212914,63.21357411772081,65.0028592405595,0.2221161544275958,220.7472602638205,0.0829101367813152,79.93859622892785,170.55984,119.9545003163692,178335.2572145546,125422.94052317984,423.37126,279.3336080106999,442220.9953994145,291617.00963059376,392.54024,190.60024838193723,407843.6219155165,197203.11027874856,2588.0766,1193.3291898608754,2681751.108322877,1223420.4829160145,1023.74079,453.02636151424855,1059497.8042659976,462765.86314747867,1709.30492,720.3835491010882,1756293.705562526,726182.3474624454,0.38116,100000,0,775272,8106.148055207026,0,0.0,0,0.0,36671,382.9673776662484,0,0.0,35844,372.2814721873693,1494748,0,53662,0,0,0,0,0,75,0.7737348389795065,0,0.0,1,0.0104558762024257,0,0.0,0.0573,0.1503305698394375,0.3048865619546247,0.01747,0.339256061109266,0.660743938890734,24.38725712838986,4.308209751986977,0.3267786124613345,0.2441449403446752,0.2158638974812196,0.2132125497127706,10.779079738327855,5.481535834538375,18.61560340155373,11975.952910861835,51.60414314784003,13.361663768090322,16.79218501090167,10.928261797808135,10.522032571039896,0.556783031374282,0.783710407239819,0.6835699797160243,0.5568065506653019,0.1025906735751295,0.7322580645161291,0.9088729016786572,0.8604060913705583,0.7030567685589519,0.145,0.490566037735849,0.7078488372093024,0.6193548387096774,0.5120320855614974,0.0915032679738562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022291347917278,0.0045836671365263,0.0066187517765054,0.0090230147843316,0.011444091796875,0.0135974740272968,0.01578931263451,0.0178261313719481,0.0199650203025437,0.0222527163060286,0.0241335808572395,0.026173869274466,0.02822929097568,0.0301999938178108,0.0321957966885503,0.0344214324858085,0.0363478116710875,0.0383309627384005,0.0400998855478098,0.0422502894212617,0.0566826586393235,0.070351127126456,0.0837104785106003,0.0961568825591309,0.1078542099874391,0.1234501233548277,0.1345279571719918,0.1450982063879445,0.1555108634024754,0.1656460831077306,0.1782743329413161,0.1905546462599044,0.2010743432450396,0.2121212121212121,0.222589640995117,0.2332371545888358,0.2432305577595744,0.2519519147354071,0.2604012815560453,0.2686247075553925,0.2750923342325549,0.2816748169119539,0.2878920582317434,0.2930276043102518,0.2977264174991806,0.3026122941632899,0.3072008202358178,0.3115825061325131,0.3149501403313631,0.3194667862134437,0.3183548816747165,0.3162820741880953,0.3151113176460648,0.3134962498374207,0.3122398001665279,0.3098004353024126,0.3081859669138619,0.3087309026921243,0.3086660842455076,0.3094323440598924,0.3102519499466921,0.3110288908131937,0.3121196965908143,0.3136063055240131,0.3141096086769554,0.3144032495925073,0.3155570652173913,0.3197993269350617,0.3262633650262947,0.3294706554727838,0.3324909747292419,0.3358102766798419,0.3375888308911389,0.3416963541271887,0.3461034095166729,0.3476706779459073,0.3498993652268153,0.3513733468972533,0.3522633744855967,0.3604336043360434,0.0,1.8205851541014952,54.96253938723691,171.4771506267415,242.17847209313464,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95647,45723,434.0439323763421,5840,59.94960636507156,4586,47.37210785492488,1734,17.81550911162922,77.29129418892526,79.69152368987791,63.29829466637945,65.07005457073693,77.07703111120009,79.47785466617975,63.21953488957521,64.99368123686884,0.2142630777251781,213.6690236981593,0.0787597768042402,76.37333386809075,170.38318,119.9357556398267,178137.50561962216,125394.1635804852,419.19689,277.5659488218851,437651.7507083338,289577.3308602066,400.88026,195.4568666764964,415319.0168013633,201467.8254734541,2631.8388,1208.0556336972288,2721205.223373446,1232928.086434764,1091.80961,484.76602563366674,1126893.4937844365,492363.3361863319,1702.7348,712.2133356708729,1751384.5285267702,720604.6327922208,0.38101,100000,0,774469,8097.159346346461,0,0.0,0,0.0,36300,378.935042395475,0,0.0,36588,378.694574842912,1494427,0,53569,0,0,0,0,0,66,0.6795822137651991,0,0.0,0,0.0,0,0.0,0.0584,0.1532768168814466,0.296917808219178,0.01734,0.3396534815299117,0.6603465184700883,24.149899161089067,4.340170011262307,0.3190143916266899,0.2488006977758395,0.2130396860008722,0.2191452245965983,11.236888778638292,5.764473634234794,18.54102912146964,12021.56159782628,52.074937771500046,13.666094691748674,16.463225321795772,10.9072715071518,11.038346250803803,0.5704317488006978,0.7887817703768624,0.7081339712918661,0.5844421699078812,0.108457711442786,0.7397260273972602,0.930715935334873,0.873972602739726,0.7194570135746606,0.1666666666666666,0.5076233183856502,0.7019774011299436,0.6530054644808743,0.544973544973545,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081986973653,0.0044205616952245,0.0068917917643595,0.0091250889137282,0.0113339234298853,0.0131995722360849,0.0157432143075636,0.0179304429513754,0.0201619499427449,0.0222800155632461,0.0242329149232914,0.026549308793624,0.0285376266652949,0.0305319127011932,0.0327042986331915,0.0349792110543408,0.0370592990237735,0.039112873918867,0.0410271884462109,0.043173193210726,0.0575295224161354,0.0716664920917565,0.0847648047039059,0.0977160298915903,0.1100862241828754,0.1255291677250021,0.138148816473835,0.1488017893279369,0.1600620022449088,0.1694684185667053,0.1810360627459436,0.1932200820692716,0.2051259726832453,0.2146641562308433,0.2241799169173471,0.2347977468287057,0.2434992404610848,0.2517134657588205,0.2590200774041244,0.2658793342420875,0.2731207183854842,0.2790629678143712,0.2854775320801174,0.290643583349319,0.2962413692502188,0.3018998272884283,0.3062103865520956,0.3109113137384748,0.3162082998522512,0.3206571221217919,0.3188948282594352,0.3170573902509533,0.316143402929525,0.3149690554687951,0.3135624730431161,0.3111932628737096,0.3094159034006275,0.3101905905181628,0.3108073429026022,0.3117904710825064,0.3132690576230492,0.3137988362427265,0.3138295640498468,0.314244153519078,0.3145244555430163,0.3149131022999271,0.3156969490756493,0.318703007518797,0.3233354381533712,0.3256561966405908,0.3271015283842794,0.3317645814605256,0.3346558347502991,0.3359828798532558,0.3389398091278465,0.3469997609371265,0.3477318470351447,0.3530869295890976,0.3548655392292764,0.3637747336377473,0.0,2.2301740136351715,54.39265620026213,168.5248082165569,253.6555265228287,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95638,45721,434.49256571655616,5770,59.05602375624751,4531,46.85376105732031,1787,18.3818147598235,77.27514686010801,79.68687362305413,63.27600815666828,65.05656501267886,77.04696241663883,79.45828128133844,63.19091834423512,64.97328239374154,0.2281844434691748,228.59234171568232,0.0850898124331607,83.28261893731792,170.16626,119.72942909535908,177927.45561387733,125190.22678784486,421.4526,278.8058673985689,440187.64507831616,291034.8683562693,400.53786,195.55598433419243,415547.4811267488,201921.38950817005,2603.84024,1207.6594814055284,2694044.584788473,1234184.7397535795,1110.49858,500.3334916766793,1150741.3162132206,512746.911977121,1757.29396,742.2135543739628,1808929.630481608,752585.2474000619,0.37988,100000,0,773483,8087.611618812605,0,0.0,0,0.0,36393,380.0058554131203,0,0.0,36419,377.50684874213175,1493246,0,53543,0,0,0,0,0,83,0.8678558731884816,0,0.0,0,0.0,0,0.0,0.0577,0.1518900705485943,0.3097053726169844,0.01787,0.3296939619520265,0.6703060380479735,24.425720962288608,4.351614972299487,0.309203266387111,0.2436548223350254,0.2187155153387773,0.2284263959390862,11.374817975737216,5.8628837869342005,19.12143848130425,12022.312654819929,51.45005003913354,13.218872793317871,15.80388825183062,11.071270589732531,11.356018404252517,0.5667623041271243,0.8043478260869565,0.7059243397573162,0.5681130171543896,0.123671497584541,0.7354581673306773,0.9303482587064676,0.8932291666666666,0.748898678414097,0.1487603305785124,0.5021367521367521,0.7321937321937322,0.6352015732546706,0.5143979057591623,0.116015132408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.0047130129835906,0.006625741971488,0.0088776028440832,0.0108422583630834,0.0131273423496822,0.0152751152261695,0.0175189635634143,0.019741752118839,0.0221473623853211,0.0243094376006482,0.0264017587475087,0.0284888267006872,0.0305825843159891,0.0324969021065675,0.0346768186708598,0.0368481607015143,0.0388733681597723,0.0406889016077839,0.0426534847584185,0.0569723447396475,0.0712227426571521,0.0843120364728869,0.0967932240529265,0.1089879688605803,0.1250278016077272,0.1365752056279356,0.1473892927957699,0.1582135556578229,0.1686907551103755,0.1813441858456755,0.1934091673082553,0.2044186249291537,0.2145371213034944,0.2238198230010372,0.2337868606652968,0.2426785734268864,0.2517657677987137,0.2592984612583083,0.2667524145296691,0.2739263590171922,0.2807838446383338,0.2866854112538705,0.2920589930822444,0.297323600973236,0.3020907901557602,0.3064336137825536,0.3106984090590648,0.3149568490039582,0.3198593095058643,0.3189956420254463,0.3179606632392871,0.3167418899858956,0.3148282045349375,0.3131865681625615,0.3107648464791322,0.3079126444057604,0.309082552241501,0.3100603415947908,0.3108168321243338,0.3124824369133929,0.3143962573284115,0.3159954789015405,0.316254969401885,0.3183815584103734,0.3196254389387437,0.3209736123748862,0.324197042479043,0.3290415380297502,0.3310856372218476,0.3339992735197966,0.3374057154998406,0.3405110176407809,0.3459557709784913,0.3537319044933258,0.3590568060021436,0.3542017449869891,0.3548972188633615,0.361247947454844,0.3639468690702087,0.0,2.0571390085228978,55.08937720264453,166.80098690014006,244.86835281202772,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95682,45386,430.4362367007379,5743,58.72577914341255,4519,46.62318931460462,1768,18.10162831044501,77.28391542799022,79.68028467687337,63.28504443165552,65.05909552237961,77.05781487669081,79.4573970632687,63.19996592209438,64.97780426533052,0.2261005512994103,222.88761360466933,0.0850785095611428,81.29125704908802,169.3527,119.23285200851927,176995.3596287703,124613.67029171556,421.9595,278.67311914003244,440388.6937982065,290643.0974108898,394.12521,191.6778181532281,408221.4941159257,197441.09150588495,2571.64792,1188.3057305572363,2653889.4253882654,1208859.9008363537,1102.45627,490.5251457437197,1137252.1790932466,498513.3784320494,1732.64494,735.4523087951042,1775222.445183002,738334.4081973879,0.3781,100000,0,769785,8045.243619489559,0,0.0,0,0.0,36469,380.5104408352668,0,0.0,36062,373.1631863882444,1499981,0,53839,0,0,0,0,0,61,0.6375284797558579,0,0.0,1,0.0104512865533747,0,0.0,0.05743,0.1518910341179582,0.3078530384816298,0.01768,0.3392114456829146,0.6607885543170854,24.151497213824417,4.285837180405501,0.3177694180128347,0.242310245629564,0.2232794866120823,0.2166408497455189,11.261380810192112,5.979809443632905,18.944693702619045,11878.731282538522,51.41067688774071,13.141361819431395,16.198653436379892,11.329574049840556,10.741087582088854,0.5687098915689311,0.782648401826484,0.6754874651810585,0.6035678889990089,0.1368743615934627,0.7277867528271406,0.9056122448979592,0.8347107438016529,0.7669172932330827,0.1797235023041474,0.5086863761048461,0.7140825035561877,0.6216216216216216,0.5450874831763123,0.1246719160104986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219209176952,0.0048381207400194,0.0072489517447231,0.0094409609658438,0.0119654467201855,0.0142918262570287,0.0165128257432811,0.0186399477060097,0.0208642290974175,0.0229773197566022,0.025073352894105,0.0271158924406358,0.0292035398230088,0.0310519318568292,0.032898064516129,0.0350376437494829,0.0370439449988083,0.0389785643846992,0.0408479565619896,0.0429911412193851,0.0575386254661694,0.0714353020007747,0.0838335922085554,0.0965433787551954,0.1079977203647416,0.1228473141042603,0.1349176010873258,0.1455972565391497,0.15632282202031,0.1663052812365822,0.1787801039218645,0.1904395592489463,0.2024698887025461,0.2122579514588627,0.2212510333425186,0.2320092368497013,0.2416615419019399,0.2494787029001025,0.2574874120548754,0.2643606952331784,0.271563568902545,0.2782702499882745,0.2842347525891829,0.2891997358467911,0.2947570877308306,0.2994594327746649,0.3033785307902453,0.3072192513368983,0.3108649173955296,0.3151109703639194,0.3133638690556379,0.3113484058290102,0.310848664855506,0.3091168913652242,0.3076385585156993,0.3047156365419687,0.3029194189675109,0.3030819951777191,0.3033819232018046,0.3047624149568758,0.3051620287842681,0.3059663032705649,0.3067923575456611,0.3071276237512628,0.3083919974840941,0.3091988285744169,0.3096586865552677,0.313735364471862,0.317015092621774,0.3200837646686949,0.3245649902321566,0.3254412852763978,0.3275120064866213,0.3309637832984136,0.3356462207419742,0.3409543909016297,0.3418259023354564,0.3439516129032258,0.3493036211699164,0.3508500772797527,0.0,2.362485947218403,54.13044052771233,171.1875796010352,240.9398365881706,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95667,45827,435.06120187734535,5825,59.75937366071895,4585,47.456280640137145,1818,18.65847157326978,77.35161970545354,79.75774773684842,63.31721993396855,65.0947326801864,77.11904053070401,79.52707581276567,63.2296625314859,65.01040658358984,0.2325791747495316,230.67192408274195,0.0875574024826519,84.32609659655554,171.50518,120.61302190770822,179273.08267218582,126075.89023143637,426.82976,282.43598018318903,445716.7048198438,294782.9661044969,399.91455,194.4556164828931,415889.073557235,201550.3393918942,2634.16108,1217.7908654063433,2725692.8303385703,1245171.6322309086,1087.21295,482.3903022659568,1121624.0709962682,489407.47830072686,1779.5649,760.5208772968463,1826808.805544232,765258.3680407902,0.38224,100000,0,779569,8148.776485099355,0,0.0,0,0.0,36906,385.3052776819593,0,0.0,36393,378.2181943616921,1488538,0,53373,0,0,0,0,0,89,0.930310347350706,0,0.0,0,0.0,0,0.0,0.05825,0.152391167852658,0.3121030042918455,0.01818,0.337924249877029,0.6620757501229709,24.29235951239361,4.282119789612319,0.3221374045801526,0.2471101417666303,0.2091603053435114,0.2215921483097055,10.86924400925965,5.656502268649645,19.42747124186094,12025.958640198638,52.129804925418334,13.607695529067769,16.613443475112692,10.556492058421338,11.35217386281654,0.5585605234460196,0.7793468667255075,0.6912660798916723,0.5610010427528676,0.1171259842519685,0.7144026186579379,0.9069767441860463,0.8403361344537815,0.6926605504587156,0.1474654377880184,0.5019327980969372,0.701280227596017,0.64375,0.5222672064777328,0.1088861076345431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417179157252,0.0044922172083354,0.0067793857957659,0.0090018694627326,0.0114435097498703,0.0136382155225096,0.0159384081986437,0.0180637387548375,0.0201124744376278,0.0221858035439926,0.0243449535260684,0.0265532194751012,0.0286599296108012,0.0305776348209775,0.0326402445952506,0.034886608177454,0.0369706266453846,0.0389199177792081,0.0409084761280522,0.0429609701671515,0.0581307864323183,0.0720919761682879,0.0855718259591665,0.0983530649828992,0.1103429349489661,0.1265561483739837,0.1384942125942444,0.1496642149024624,0.1601181304571135,0.1696005670894777,0.1825966910416532,0.1938370858343987,0.2048733219375701,0.2144749518304431,0.2244248411361108,0.2336500404660805,0.2428102165314741,0.2512806079369546,0.2589379988419487,0.266964439099811,0.2742952329172788,0.28132122444686,0.2875742023981269,0.2936668542622107,0.2978643368523238,0.3021784615384615,0.3070255417473303,0.3122952276941051,0.316304123178671,0.3201958771029145,0.3185111502426304,0.3170614486783384,0.3159042007116036,0.3141641425068513,0.3125398685635449,0.3105530249763076,0.3081929918796802,0.3083707662546313,0.3086900129701686,0.3088473953596204,0.3101355906809498,0.3098057792515395,0.3099671183529855,0.3110194066473343,0.3131180118275193,0.3142420078301226,0.3159954622802042,0.3185801928133216,0.321057964431711,0.3249792465509744,0.3272273860802539,0.3284107630859785,0.3325219996255383,0.3344916150475903,0.3349491936235667,0.3340049780727747,0.3373106929784304,0.3313941825476429,0.332436069986541,0.3406716417910447,0.0,1.8663877303697889,53.8755272484532,174.999282726231,249.3627262831885,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95788,45886,434.1357998914269,5802,59.120140309850925,4521,46.58203532801604,1749,17.956320207124065,77.3507064425629,79.67807912044718,63.34838135415546,65.06947759491752,77.12936343342771,79.4570666770583,63.26672368351002,64.99004015571056,0.2213430091351824,221.01244338888648,0.0816576706454341,79.43743920695567,170.85684,120.11019318008044,178369.77491961414,125391.69121401472,418.39505,277.0109585381554,436197.26896897313,288596.22138279886,397.668,194.30291540881072,410657.5875892596,199520.34022457144,2608.47548,1204.8065763428392,2690316.407065603,1224925.2268998623,1100.92872,492.4131612108131,1128118.563911972,492845.2950378051,1727.20362,722.292476899133,1774185.4303253016,729148.6120543123,0.38201,100000,0,776622,8107.7170418006435,0,0.0,0,0.0,36181,377.0722846285547,0,0.0,36304,374.4205954816888,1499286,0,53786,0,0,0,0,0,64,0.6681421472418257,0,0.0,1,0.0104397210506535,0,0.0,0.05802,0.1518808408156854,0.3014477766287487,0.01749,0.3376623376623376,0.6623376623376623,24.349283921012017,4.415759254148764,0.3147533731475337,0.2444149524441495,0.214554302145543,0.2262773722627737,11.352998191301964,5.613583083127411,18.57785870261387,12058.601522368926,51.38242230258621,13.260067943774391,16.0790574698936,10.82098745482526,11.222309434092962,0.5635921256359212,0.7800904977375566,0.6985242445537596,0.5742268041237113,0.1319648093841642,0.7446982055464927,0.9125295508274232,0.8904494382022472,0.7533632286995515,0.1875,0.496206373292868,0.6979472140762464,0.6344892221180881,0.5207496653279786,0.1163954943679599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.0051703163017031,0.0074786650024861,0.0098326019827726,0.0120790629575402,0.0142527003776965,0.016387428152134,0.0186751844557153,0.0207649938175092,0.0228100695865738,0.0250425231059286,0.026975722875495,0.0289910180256099,0.0312323070113132,0.0334096392996349,0.0353719008264462,0.0375708786887959,0.039538475892311,0.0417674853315333,0.043920923599038,0.0585669716921086,0.0724972554759788,0.0860281554313986,0.0982996700224889,0.1109776147717212,0.1266027504413179,0.1380034357701851,0.149567919628794,0.1601063318707363,0.1692782577007995,0.1825149081828163,0.1941961631991353,0.2052262726136795,0.2159844437889861,0.2252759333362649,0.2358523959116853,0.2450164354560142,0.2535916877281662,0.2612518696460137,0.268570317236961,0.2750496604610338,0.2812770031995142,0.2869928118793152,0.2920003351647694,0.2972681175243225,0.3019669144798385,0.3061344327836082,0.3104013624463028,0.3150814285899078,0.3188569923623913,0.3176848269933376,0.3153693985768058,0.3137676878498889,0.3126489234190651,0.3117698576454347,0.3088343332925187,0.3066974815190034,0.3075974954395306,0.3086506254699569,0.3089422184129705,0.3096828673297054,0.3109642701697463,0.3131113816700953,0.3126122485632184,0.3142382431553854,0.316090752260965,0.3174889174889175,0.3209853150165798,0.3259927416229167,0.3299558946239123,0.3331502585930706,0.3352123261931605,0.3382698785991229,0.3431191246725227,0.3482572966846132,0.3534883720930232,0.3527683266316115,0.3520281456953642,0.3594056630221474,0.3685647425897035,0.0,2.441719660260291,53.11653029099413,172.2909229214317,243.1265150279,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95732,45586,433.06313458404713,5788,59.34274850624661,4549,46.891321606150505,1824,18.624911210462542,77.31652017658898,79.67729899436502,63.31665033110207,65.06256451912786,77.09292054718722,79.45611088310797,63.23393320080826,64.98303400532082,0.223599629401761,221.1881112570495,0.0827171302938083,79.53051380704323,170.22962,119.84288602575826,177818.93201855177,125185.8166817347,423.44352,279.69099070504905,441695.6816947312,291534.2630521132,399.57385,194.43179620737877,413361.88526302594,200041.57585777304,2628.06828,1209.5857848748192,2709583.378598588,1227980.1458531255,1090.18579,484.9716293379293,1119659.2884302011,487572.9895291415,1792.16208,746.8061671920029,1832569.7154556469,748752.0092610518,0.37887,100000,0,773771,8082.67872811599,0,0.0,0,0.0,36687,382.5680023398655,0,0.0,36478,377.0003760498057,1495844,0,53694,0,0,0,0,0,69,0.720762127606234,0,0.0,1,0.0104458279363222,0,0.0,0.05788,0.1527700794467759,0.3151347615756738,0.01824,0.3397255744751198,0.6602744255248801,24.2424942575352,4.299274301571795,0.3108375467135634,0.2360958452407122,0.2222466476148604,0.2308199604308639,11.161954489571222,5.84246099068008,19.35444081432,11938.130394763391,51.61779194695418,12.966035494128857,16.024883850940665,11.154145954899253,11.472726646985407,0.5570455045064849,0.7988826815642458,0.6888260254596889,0.5727002967359051,0.1171428571428571,0.7402912621359223,0.9326683291770572,0.8842364532019704,0.7289719626168224,0.1209302325581395,0.4886809538182916,0.7191679049034175,0.6101190476190477,0.5307402760351317,0.1161676646706586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0043186910108372,0.0065465617863486,0.0086468801121757,0.0108642578125,0.0130568512822602,0.0151652677633524,0.0174116397577688,0.0195908017300436,0.0217046327105195,0.0237572799606266,0.0259474889361221,0.0281653932769134,0.0302328215583907,0.0320793835807193,0.0341788500284134,0.0361985797983562,0.0382237620065141,0.0402694330679195,0.0422865358169771,0.0571076588991898,0.0709547128746023,0.0837799007938588,0.096486892882304,0.1083380780666793,0.1240653587858918,0.1354981064423393,0.1468700437480707,0.157496634687293,0.1679987126535428,0.1809211943642552,0.1932108384192529,0.2042454163857413,0.2137015656433132,0.2230404297240475,0.2329661317492685,0.2430102724430549,0.2520364536453645,0.2601028155108433,0.2673883161512027,0.2736622895817666,0.2786971522133208,0.2846964981005243,0.2900290160907412,0.2949281878052929,0.300346558464783,0.3048644587741814,0.309843557071755,0.3138836384350483,0.3183791988385138,0.3170005924489686,0.3154175677350928,0.3133043576428088,0.3118621987406818,0.3105115919169072,0.3087820434196001,0.3067188291941206,0.3062969723880474,0.3073604191278443,0.3082970683572413,0.3083727743971152,0.3086302454473476,0.3102782152230971,0.3117467855382823,0.3126940199735291,0.3121712410811937,0.3131984036488027,0.3151634971442917,0.3191668125328198,0.3219929502158501,0.324121630834962,0.3271886952826179,0.3280090554647214,0.3315176274776819,0.3362980994288924,0.3388822829964328,0.3428877988963826,0.3421424248537422,0.345638501503965,0.3465497521921464,0.0,2.3945487483261063,53.88936334980574,168.47970503430466,248.64137639716748,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95666,45557,432.347960612966,5801,59.300064808814,4560,46.97593711454435,1806,18.48096502414651,77.40264542862671,79.78223327387391,63.35728834693722,65.11168874313563,77.18181425702568,79.5634142501529,63.27587798262626,65.03335871921738,0.2208311716010342,218.8190237210108,0.0814103643109547,78.33002391825516,170.70856,120.07254124854796,178442.24698429953,125512.24180852964,422.76011,278.8308974700992,441199.5588819434,290750.42300679616,396.51004,193.204282013368,409459.0972759392,198270.1418204964,2608.4,1201.1779354028793,2690440.9508080194,1219522.047873689,1101.78314,487.2165654885437,1133872.4729789058,491509.2998804455,1765.6312,730.6567309308102,1808927.121443355,733697.9703658863,0.38061,100000,0,775948,8111.011226559071,0,0.0,0,0.0,36624,382.0793176259068,0,0.0,36239,373.7796082202664,1499817,0,53748,0,0,0,0,0,75,0.7839775886939979,0,0.0,1,0.0104530345159199,0,0.0,0.05801,0.1524132313917133,0.3113256335114635,0.01806,0.3447992100065832,0.6552007899934167,24.329994320616777,4.3569934319806,0.3168859649122807,0.2432017543859649,0.2160087719298245,0.2239035087719298,11.425251494976164,6.019139658657388,18.989023223822176,12009.111756856622,51.5068312103741,13.37127762865366,16.167570681786614,10.986692755915266,10.981290144018551,0.5679824561403509,0.8169522091974752,0.6816608996539792,0.5746192893401015,0.1302644466209598,0.770387965162312,0.9318181818181818,0.8992042440318302,0.746938775510204,0.2039800995024875,0.4904458598726114,0.7414050822122571,0.6048689138576779,0.5175675675675676,0.1121951219512195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290903383256,0.0047533623197218,0.0071515520389531,0.0095670454891685,0.0119380522874487,0.014092825285624,0.0163222445380121,0.0184321450077055,0.0205916917888712,0.0226677309754799,0.0248775087640173,0.0270716984231274,0.0290355747480978,0.0310205258658866,0.0328934471053147,0.0350583444440999,0.0370895761930894,0.0390586086667773,0.0410591343053851,0.0432303988494127,0.057058688339636,0.0706657173371306,0.0837294716406946,0.0965244466885466,0.108680518932602,0.1239288208036224,0.1357076152474743,0.1460189709686691,0.1570504942559444,0.1671313672922252,0.1798994217287832,0.1919185360733261,0.2031078391927012,0.2144661032699603,0.225348394689662,0.2350890010626992,0.2444659934461312,0.2523335093059565,0.2604199700992162,0.2677587507716226,0.2735541960060025,0.2798273246995683,0.2859655750478124,0.291530126533834,0.296492950746142,0.3017124720124006,0.3061071468739456,0.3102450171385045,0.3146938037554562,0.3196942386885418,0.3184960468206773,0.3168375178160289,0.3152978795018512,0.3141488535343364,0.3138380505703591,0.3111850235723113,0.308456062256318,0.3083813703655181,0.3095278590380298,0.3099695951352216,0.3107966848353617,0.310855908912446,0.3122387438910263,0.3125125036121546,0.3142015659794555,0.3160862785862786,0.3169934640522875,0.3221537402621781,0.3264834587782251,0.3293242601677481,0.3328785811732606,0.3349109279446955,0.3377808546793379,0.3411406844106464,0.341856954142291,0.3418198962753418,0.3462421552120006,0.3548451950140732,0.3650490730643402,0.3696878525761564,0.0,2.6417481560075373,54.727239204456666,165.6686218866063,246.0943019320861,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95720,45711,433.6188884245717,5947,60.83368157124948,4686,48.29711659005432,1847,18.89887170915169,77.33907921770925,79.70628601642946,63.32552877917672,65.07540051535436,77.1083887739704,79.47965660058439,63.23942427062787,64.99393824360027,0.230690443738851,226.62941584506768,0.0861045085488427,81.46227175409138,170.23292,119.71518704502846,177844.44212285834,125067.8719651363,422.14025,279.0019067821685,440343.5854575846,290804.99037000467,402.65334,196.78606196718468,416665.5871291266,202410.3068736801,2700.4348,1247.2489666210215,2783763.8111157543,1265600.591956772,1121.70951,497.8494615017289,1147467.258671124,495800.51572240907,1811.83126,759.1456719542565,1854194.1913915584,757582.3987665283,0.38045,100000,0,773786,8083.838278311743,0,0.0,0,0.0,36523,380.8295027162558,0,0.0,36753,379.9519431675721,1497850,0,53740,0,0,0,0,0,79,0.8253238612620142,0,0.0,0,0.0,0,0.0,0.05947,0.1563148902615324,0.3105767613922986,0.01847,0.33642617181251,0.66357382818749,24.26329171649549,4.324912096440783,0.314767392232181,0.2424242424242424,0.2168160478019632,0.2259923175416133,11.189208146730238,5.780889148559877,19.62696943433915,12048.303993610456,53.275982301713086,13.737838417931426,16.71024292134002,11.397833704550642,11.430067257891007,0.5729833546734955,0.7931338028169014,0.7159322033898305,0.5954724409448819,0.1161473087818696,0.7653374233128835,0.9322799097065464,0.8822055137844611,0.77431906614786,0.1658536585365853,0.4988172678888232,0.7041847041847041,0.654275092936803,0.5349143610013175,0.104215456674473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047451028105608,0.0067902926220273,0.0088705088603479,0.0109864398848458,0.0134434610801617,0.0156936725641156,0.0179174876721559,0.0200004090063191,0.0223273725393801,0.02421364619976,0.0264268767396238,0.0284985550173295,0.0306505120438482,0.0325460888953116,0.0348593115001602,0.0370347349556101,0.0390838236972923,0.0411289400068634,0.0431847306293822,0.057940295078886,0.0724987967438843,0.0854653357379524,0.0980398342692493,0.110804112839441,0.1258951332254413,0.1372977560872102,0.148719149932923,0.1597452283754034,0.1691828960781158,0.1818583498577463,0.1942802070474086,0.2048634533783048,0.2148469130939093,0.2248097864984199,0.2353606350191791,0.2443608182955154,0.2526508926360341,0.2607555565645787,0.2678051575931232,0.2740436367845361,0.2810500333399623,0.2879477748737538,0.2931090223313177,0.2979946864650435,0.3032237432813057,0.3075645572149243,0.3104997905373668,0.3147518958233751,0.3186322308604559,0.3177175724345535,0.3160976414316345,0.3143118749119594,0.3142576232956928,0.313906674787931,0.3117463426577707,0.3095038512028089,0.3097791280072255,0.3101755226331816,0.3105785567379057,0.3112519453246583,0.3128014548904879,0.314303048053388,0.3140403453057208,0.3155318842665899,0.3177436537012498,0.3189829446769739,0.3236901620806634,0.3274116121798241,0.3307533539731682,0.3343057708086425,0.3360345471024151,0.3398175136231149,0.3435728512333384,0.3469847830170956,0.3486795146324054,0.3527131782945736,0.3551957368313179,0.3625486922648859,0.3612928049249711,0.0,2.3722300547287016,57.03023081478637,169.60860721861613,256.8502603284608,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95689,45618,432.9860276520813,5756,59.0245482761864,4532,46.8078880540083,1795,18.372017682283232,77.30793472821749,79.6840526145597,63.31631099018998,65.07025773581955,77.08048638439708,79.45795468194933,63.23206999940047,64.98840968563515,0.2274483438204129,226.09793261037225,0.0842409907895103,81.848050184405,171.952,120.98603681819924,179698.5860443729,126436.52045039776,421.58093,278.8373678575361,440005.7059850139,290832.9213199461,397.42164,193.8800002909102,411904.9734034215,199906.39577347547,2639.9812,1223.9701667857162,2727602.253132544,1247856.7446422426,1076.55002,486.9645394937838,1108793.2991252912,492685.9677229574,1760.20384,746.9749016851861,1802967.154009343,751531.1028161136,0.37966,100000,0,781600,8168.117547471496,0,0.0,0,0.0,36451,380.3258472760714,0,0.0,36204,374.9020263562165,1488780,0,53468,0,0,0,0,0,86,0.8987448923073709,0,0.0,0,0.0,0,0.0,0.05756,0.1516093346678607,0.3118485059068798,0.01795,0.3483033932135728,0.6516966067864272,24.288284966083346,4.334357208010321,0.3307590467784642,0.2319064430714916,0.2133715798764342,0.2239629302736099,11.192924302894603,5.7904338918638345,19.236142948334845,12010.391322759117,51.644899465569054,12.63615395927474,16.93895536795662,10.812858545932636,11.256931592405063,0.5644307149161518,0.7982873453853473,0.6931287525016678,0.5760082730093071,0.1211822660098522,0.7447665056360708,0.9268929503916448,0.8673469387755102,0.7692307692307693,0.1818181818181818,0.4963525835866261,0.7245508982035929,0.6314363143631436,0.5097222222222222,0.1044025157232704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376121337302,0.0044586761785091,0.006816867689873,0.0089583164052977,0.0112989179074119,0.0134006761435379,0.0157742859764864,0.01791730474732,0.0200781042343944,0.0220798231157424,0.0244802558740312,0.0265505806014435,0.0286622238677033,0.0305967919727204,0.0326911368631781,0.0347251656656087,0.0369790911163147,0.0390560925220352,0.0410052634863835,0.0430109768683088,0.0574618992405962,0.0717089356179151,0.0856291571371619,0.0979260007151721,0.1100767511491586,0.1251202876328451,0.1370995119881179,0.1480105592574457,0.159047446074294,0.1682489621214559,0.1808782190054605,0.1920721812320142,0.2030835471665289,0.2123120660434093,0.2221403269455017,0.2321563067653183,0.2417879139516201,0.2501996782648802,0.2588503608224027,0.2666017638300309,0.2749918970227346,0.2803939457739724,0.2863669720427053,0.2920030227062817,0.2966399533022826,0.301925662756128,0.3068190361626945,0.3114877349474355,0.316310382400249,0.3203715448443528,0.319587489889458,0.3180019577835684,0.3173124426565036,0.3155859391973118,0.314324851480726,0.3118751150095074,0.3087101380295097,0.3097343675378357,0.3101397102939916,0.3113199105145414,0.3111695631751996,0.3125049559908017,0.3125655768665799,0.3141272255524738,0.3145306967894217,0.3148298323174719,0.3166119125839166,0.3184269450313791,0.3241744658308317,0.3288128852654603,0.3319460324719872,0.3338304218150831,0.3358595427560945,0.339943558843719,0.3410692473926524,0.3410944332821179,0.3348423117549419,0.3421840686763825,0.3417381974248927,0.3390654205607477,0.0,2.0629083564729904,54.52304279532884,168.71736211937076,247.45330988226772,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95709,45548,432.3417860389305,5912,60.61080985069325,4686,48.39670250446666,1839,18.88014711260174,77.38171245272493,79.75690416989774,63.34258245905804,65.09559913513714,77.15399274661047,79.5283951978073,63.25820019692076,65.01304566995054,0.2277197061144562,228.50897209043808,0.0843822621372822,82.55346518659223,170.24348,119.8112546461841,177876.1453990743,125182.85077284694,423.82357,279.5628311412691,442202.1753440116,291473.67660436244,396.6091,193.097117213214,410939.0757400036,199065.6178063681,2694.27216,1245.7851587299906,2785604.572192793,1272176.3666217288,1105.72098,492.3127842372125,1139266.9968341535,498362.9356151188,1806.02544,757.6758964033139,1856486.1820727407,766021.4294691868,0.38197,100000,0,773834,8085.279336321558,0,0.0,0,0.0,36670,382.5659028931448,0,0.0,36347,376.2342099489076,1500011,0,53764,0,0,0,0,0,74,0.7627286880021732,0,0.0,0,0.0,0,0.0,0.05912,0.1547765531324449,0.311062246278755,0.01839,0.3422840504691039,0.6577159495308962,24.109102079937493,4.3601750180652665,0.3162612035851472,0.2426376440460947,0.2200170721297482,0.2210840802390098,11.441504021462862,5.831048266428305,19.491904482840415,12010.240581083304,53.26186241350491,13.726037863998632,16.80822822366746,11.356093033035863,11.371503292802952,0.5567648314127187,0.7774846086191732,0.6828609986504723,0.5819592628516004,0.109073359073359,0.7453416149068323,0.930648769574944,0.8663366336633663,0.7432432432432432,0.1348837209302325,0.485285462036492,0.6782608695652174,0.614100185528757,0.5377008652657602,0.1023142509135201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0044501211365548,0.0066769493038925,0.0089287528188042,0.0111682974957788,0.0135336048879837,0.0156105021667091,0.017997876597656,0.0203121965182012,0.0225816357866721,0.0247583117189342,0.0266116364308374,0.0288664246562663,0.0307793732874595,0.0328269798352975,0.034790790004239,0.0367148257469835,0.0386646881193769,0.040634847996339,0.042686231189295,0.0569909766897819,0.0707892340064696,0.0831777073672283,0.0964192543970377,0.1086337460712553,0.1240694526689789,0.1350258869461891,0.1469952626816415,0.1572785249596735,0.1674014481094127,0.1808092236409676,0.1934052134753615,0.2050069057018259,0.2139944686758709,0.2236911570611526,0.2334351685816121,0.243164585191793,0.2517289073305671,0.2602916827326544,0.2683183733284484,0.2746697207376044,0.2810417786921656,0.2864953138312979,0.2920820552147239,0.297013348232179,0.3019630556137475,0.3065050717296411,0.3114804163591479,0.3159488951885363,0.3195870852065233,0.3184397353842844,0.3169314857794196,0.3154771113142535,0.3144236311239193,0.3130532610948278,0.3115551826710396,0.3096042166393132,0.309963220269718,0.3104731796859066,0.3108420453737287,0.3109745849750704,0.3124051929631016,0.3132291666666666,0.3141522029372496,0.3156974516190841,0.3161917098445596,0.3179937659393596,0.3213594657012671,0.3254874651810585,0.327663772691397,0.329408034784184,0.3320277351399989,0.3381861725594,0.3423664122137405,0.3437794089968003,0.3430066603235014,0.3476197765192101,0.355159132373809,0.3601543124827776,0.3593207255885758,0.0,2.203116510387559,56.35648231315708,176.1225017305477,251.28247703621452,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95862,46266,437.7751350900253,5790,59.13709290438339,4575,47.19283970707893,1793,18.3805887630135,77.44506122741345,79.72275880369448,63.40474875222951,65.08403908619333,77.22006105138325,79.49708112485598,63.32104300144269,65.00187393411184,0.2250001760301927,225.677678838494,0.0837057507868195,82.16515208148678,170.55676,120.02497452125652,177919.05030147504,125205.9987495113,422.34038,278.86384052080734,440046.2539901108,290377.45584296586,401.21944,196.03356216514928,414702.12388642,201593.9269083389,2596.98452,1200.8529547383598,2680099.8518703966,1224089.9528460377,1079.47003,482.1468893669039,1111416.797062444,488609.1433705382,1750.73066,738.3290015838741,1796685.7357451336,747397.1192608676,0.38472,100000,0,775258,8087.229559157957,0,0.0,0,0.0,36528,380.4948780538691,0,0.0,36642,378.3563873067535,1499732,0,53851,0,0,0,0,0,56,0.5841730821389081,0,0.0,0,0.0,0,0.0,0.0579,0.1504990642545227,0.3096718480138169,0.01793,0.3499340369393139,0.650065963060686,24.459878038654097,4.29861103934959,0.3221857923497268,0.2485245901639344,0.2137704918032787,0.2155191256830601,11.362252336964364,6.026585687299251,19.06615666604793,12103.801567990757,51.825809288518265,13.563607670588018,16.60914487032048,10.883152683119697,10.76990406449007,0.5597814207650273,0.7792436235708003,0.6845318860244234,0.5613496932515337,0.1186612576064908,0.7431048069345941,0.9310344827586208,0.890625,0.721030042918455,0.1290322580645161,0.4894131881427707,0.6851851851851852,0.6119266055045871,0.5114093959731544,0.1157347204161248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024089556468754,0.0047812477841145,0.0070977358222726,0.0092667776379359,0.0113601723332046,0.013449858074493,0.0156542817567017,0.0180386878358673,0.0200757691797118,0.0223824130879345,0.0246672127790292,0.027178093431106,0.029538638511154,0.0317328066818901,0.0338659990315169,0.0358691164327002,0.0379022917183751,0.0397496476829975,0.041972488969634,0.0440442002746909,0.0592350843534294,0.0726478761413259,0.0860319753745641,0.0986978100964313,0.1106213310328865,0.1258508785816051,0.1375480428176649,0.1489901940994613,0.1592275867951889,0.1693563922005094,0.1822451501961416,0.1943649499454637,0.2052481869110175,0.2147310266516721,0.2243750274592504,0.2341649610001659,0.2432423394602789,0.2527079868758146,0.2616478110050559,0.2687933362319504,0.2758544933166829,0.2822146866230121,0.2884995326936955,0.2937401984844313,0.2990922991044341,0.3043986753499366,0.3091584901882259,0.3134915081737803,0.3181688681688682,0.3219203376417832,0.3205166150948473,0.3187943895704257,0.3180509319736491,0.3159409859661748,0.31552392507324,0.313695602469324,0.3110022215569806,0.3112809957855533,0.312131158693175,0.3125155290526391,0.3138257187097737,0.3142964086601919,0.3146053345577493,0.3154707571743438,0.3169593721586831,0.3174808863548011,0.3196401290103547,0.323989386608397,0.3266178054117892,0.3294303173664498,0.3333030358116706,0.3347846864546275,0.3381539235412474,0.3439914327239348,0.346219281663516,0.3486983520420348,0.3512217754407671,0.3481865284974093,0.358217270194986,0.3614599686028257,0.0,2.0359947409143784,55.66837706816834,167.59514278594833,246.639157768438,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95680,45987,435.9113712374582,5942,60.91137123745819,4712,48.62040133779264,1854,19.032190635451503,77.29747507811412,79.69967447652708,63.28577397120039,65.06533737343274,77.06976197692642,79.47244843117547,63.201094452168576,64.98303922626559,0.2277131011877031,227.22604535161395,0.0846795190318161,82.29814716715111,170.885,120.27876675055457,178600.54347826086,125709.41340986054,425.07279,281.044368405479,443633.5493311037,293114.21957066376,407.51934,198.7957201655225,421341.73285953177,204419.2738811609,2694.74372,1245.5345985851968,2783574.95819398,1269587.1754028725,1105.80508,490.3413169928904,1140100.1881270905,496847.9274591247,1820.71194,763.918558963189,1870577.299331104,772575.3285887303,0.38377,100000,0,776750,8118.20652173913,0,0.0,0,0.0,36736,383.2775919732441,0,0.0,37186,384.04055183946485,1488119,0,53439,0,0,0,0,0,78,0.8152173913043478,0,0.0,0,0.0,0,0.0,0.05942,0.1548323214425306,0.3120161561763716,0.01854,0.337391861582826,0.662608138417174,24.17225777941957,4.281476943704318,0.3132427843803056,0.2493633276740237,0.2092529711375212,0.2281409168081494,10.858318819216644,5.496101243500423,19.809466590134907,12130.742544571973,53.69245841932143,14.21548495900701,16.76613076030285,10.929883777984186,11.780958922027375,0.5573005093378608,0.796595744680851,0.6944444444444444,0.5699797160243407,0.095813953488372,0.7386541471048513,0.9217391304347826,0.8590078328981723,0.7302325581395349,0.1545454545454545,0.4898078043098428,0.7160839160839161,0.636779505946935,0.5252918287937743,0.0807017543859649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0045036820643904,0.0068226813543834,0.0091352504826745,0.0113016764322916,0.0135977510236509,0.0157378319937987,0.0181470966687771,0.0205978911195884,0.0230514792475243,0.0252120665073389,0.0276447987507961,0.0297424923611897,0.031769421802706,0.0338760802453202,0.0359030586385593,0.037842039800995,0.0398932580186279,0.0419575326931679,0.0438751901953019,0.0581943153210558,0.0725449349398599,0.0863483735571878,0.1000378692249431,0.1120780590717299,0.1269188045490611,0.1387388152378122,0.1495101171458999,0.1604045933751042,0.1704400287698732,0.1836807315311041,0.1952461983677097,0.2059339294855736,0.216132424793497,0.2259700176366843,0.2361046395526858,0.2449930707675801,0.2535534881625481,0.2622539275044585,0.2704694448264796,0.2769861680683951,0.2832212878592677,0.2897345698752798,0.2952155751872479,0.2999829638102655,0.3045941542411375,0.3098443257877716,0.3141509433962264,0.3193660189259706,0.3230529141814238,0.3209821549094246,0.3198310722221456,0.3181586978636826,0.3171551511814902,0.3155186771353795,0.3126053252443546,0.3103971907179803,0.3108889799262597,0.3110195323808388,0.3110743095250814,0.3109679828246056,0.3121851385390428,0.3127297026394921,0.3138359458496615,0.3150002395439084,0.3163331516520024,0.317322968679074,0.3200738607911867,0.3228434560648974,0.3256623171213919,0.3274930779356361,0.3311835914785642,0.3356511933847021,0.3371829710144927,0.3428891586516014,0.3418421362192683,0.342572741194487,0.3439335628924448,0.3463548830811554,0.3472915866308106,0.0,2.4418124104860697,55.796407701975255,180.2493731448073,252.97947807961356,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95835,46111,435.74894349663487,5831,59.65461470235301,4581,47.279177753430375,1778,18.19794438357594,77.32864418348662,79.64012296224664,63.32870225298407,65.03867808178767,77.09902119822446,79.41149298499523,63.24176571873087,64.95475479729312,0.2296229852621536,228.62997725140133,0.0869365342531978,83.92328449454567,170.48262,120.0078313537882,177891.81405540774,125223.38535377284,425.0076,281.898535494994,442958.5537642824,293629.9530390713,407.77793,198.9288080220446,422376.8038816716,205184.3771080376,2625.2234,1224.60733767397,2711185.057651171,1249920.7941333004,1083.50856,486.3424880469257,1118655.0320863985,495632.43792918464,1734.88384,745.5661318077395,1777910.471122241,748848.3731205988,0.38276,100000,0,774921,8085.991547973079,0,0.0,0,0.0,36702,382.417697083529,0,0.0,37180,384.8385245473992,1488819,0,53589,0,0,0,0,0,79,0.8243334898523504,0,0.0,1,0.0104346011373715,0,0.0,0.05831,0.1523408924652523,0.304921968787515,0.01778,0.3384111384111384,0.6615888615888615,24.32685613566291,4.208514241404238,0.3289674743505785,0.2453612748308229,0.2123990395110238,0.2132722113075747,10.801082697767786,5.70607532713735,19.165528780957175,12025.248629344353,52.53077012291324,13.580244321932726,17.32241430355261,10.845418517929094,10.782692979498808,0.5671250818598559,0.7766903914590747,0.6987392169873922,0.5652620760534429,0.1248720573183213,0.7120300751879699,0.8857808857808858,0.8496583143507973,0.7056277056277056,0.1341991341991342,0.5078437403875731,0.7093525179856115,0.6367041198501873,0.5215633423180593,0.1219839142091152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0043993025990349,0.0069395830162836,0.0091012514220705,0.0114602399837299,0.0137650173080838,0.0159107124655998,0.0180227989427168,0.0205510249964232,0.0230235556556085,0.025348880100002,0.0275850745043306,0.0296692906912215,0.0318207086824929,0.0339372815113485,0.0359500418384107,0.0383926815891051,0.0404989268717533,0.042442246966927,0.0444652615144418,0.059119877337728,0.0727803103174271,0.0860715446131916,0.0987673780776142,0.1110970570874441,0.126679421993425,0.1383080251102816,0.1494817936112707,0.1602618874695603,0.1700546799614024,0.1820825121959099,0.1935710730746759,0.2048086647310214,0.2146854981525612,0.2237638360143476,0.2347141132025303,0.2437548157991714,0.2518242421512544,0.2598384953490749,0.2665450875140504,0.274089190881473,0.2802641146529683,0.2864520878103221,0.2916551516972063,0.2967241652160152,0.3011181320037518,0.3061260312445146,0.3099065563530206,0.313476613196283,0.3172770437381793,0.3151612424638873,0.3134480666335705,0.3121282757646394,0.312190100617624,0.3117627785058978,0.3095497597592987,0.3079840066004506,0.3081145035659118,0.3096559378468368,0.3097424012835368,0.3103448275862069,0.3109683794466403,0.3115556857657054,0.3125767487552747,0.3139054391697098,0.3144311064718162,0.3149476320582878,0.3173577567279342,0.3202249153075123,0.3242358509169789,0.327971362544746,0.330370840607311,0.3306755399296835,0.3364293871336125,0.3385265133740028,0.3417766678558687,0.3432518597236982,0.3442094662638469,0.3416098226466575,0.3479599692070824,0.0,2.021967514916988,58.740013642669545,171.8986985334798,237.01085797746344,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95753,45906,434.2840433197915,5735,58.671790962163065,4475,46.22309483775965,1742,17.868891836287112,77.35098256499538,79.69957967773665,63.33757887846742,65.07133882995753,77.13371577087061,79.48310147017813,63.2558659260546,64.99238772354353,0.2172667941247681,216.47820755852365,0.0817129524128219,78.95110641399583,170.67336,120.09019515740704,178243.35529957287,125416.63985191802,425.01172,281.29395810223895,443374.4216891377,293282.2450494909,398.77707,193.90278536299792,413765.7201340951,200366.8741753221,2578.87024,1185.0989722679722,2665578.603281359,1209988.420486014,1062.21102,468.601232500465,1096077.1255208715,476138.5465734387,1716.6036,727.3848955260711,1762793.771474523,732235.2174518134,0.38188,100000,0,775788,8101.9706954351295,0,0.0,0,0.0,36759,383.3822438983634,0,0.0,36290,376.2493081156726,1493405,0,53585,0,0,0,0,0,70,0.731047591198187,0,0.0,0,0.0,0,0.0,0.05735,0.1501780664082958,0.3037489102005231,0.01742,0.3443741677762982,0.6556258322237017,24.63486966056109,4.318956202273328,0.3220111731843575,0.2341899441340782,0.2201117318435754,0.2236871508379888,10.715759777912892,5.326193757193007,18.46314795492449,12043.15485294596,50.74053915605477,12.628442204586356,16.38503588867679,10.797006512776832,10.930054550014791,0.5602234636871508,0.7977099236641222,0.6939625260235948,0.5644670050761421,0.1148851148851148,0.7214765100671141,0.941747572815534,0.8394366197183099,0.6933962264150944,0.1267605633802817,0.5016752969844654,0.7044025157232704,0.6464088397790055,0.5291073738680466,0.1116751269035533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784117950847,0.0044495798745198,0.0068998406948545,0.0093341187941821,0.0118249941535927,0.0139670776027934,0.0161975922773468,0.0185442224081974,0.0209938878554344,0.0230996755606046,0.0254223388551746,0.0274384610646903,0.0298469099246373,0.0318405091186192,0.0339093206788053,0.0360623882417389,0.0379708824321245,0.0402830815208367,0.0423260069451664,0.0444009209388575,0.0587836144980791,0.0733034135726914,0.0863793645800566,0.099272436706199,0.1112188745282422,0.1262989861829099,0.1376238253823473,0.1481497248800008,0.1583867521367521,0.1682991985752449,0.1807663718530169,0.1929146642421093,0.2044967530701706,0.214892220155378,0.2241132565666351,0.2338916168793021,0.2433793881448883,0.2522221472130336,0.2608616697689199,0.2678520250828261,0.2744782563402127,0.2808243224266255,0.2875544095382286,0.29289409397902,0.2982345446824,0.3036320685073084,0.3074298569018309,0.3110888044624592,0.3154707998033482,0.3192395978997915,0.3175928669557956,0.3160387098550445,0.3150186764394954,0.3133579229044623,0.3118405801408743,0.3101848307122184,0.3076521078136382,0.3078616610531504,0.3083794493407119,0.308571326701608,0.3096818836378597,0.3106493711311753,0.312301321733311,0.3126268596792541,0.3134714405460423,0.3142976023300567,0.3150513825015613,0.3185824055198369,0.3225029664270259,0.3264991704195307,0.3277661795407098,0.3279487315290503,0.3318470137536896,0.3333586107530143,0.3337702462316262,0.3375162779685095,0.3363242574257425,0.3340752731687575,0.3357201872762324,0.3452880579931324,0.0,2.025866673451409,52.25045382122435,168.29849829286235,245.4320343399473,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95831,45564,432.4383550208179,5818,59.45883899781907,4574,47.030710312946745,1770,17.99000323486137,77.51248185563044,79.79968871690068,63.42745123530996,65.11111780276534,77.29592342895731,79.58820004441485,63.34633498254796,65.03526958996531,0.2165584266731315,211.48867248582803,0.0811162527620013,75.8482128000253,171.91438,120.85323964301936,179393.0565265937,126110.59560956382,421.10326,277.8579032807336,438735.87878661393,289259.915278257,394.21048,192.34104043262016,406975.7176696476,197223.9146434956,2635.46916,1202.554277352211,2712351.410295207,1217446.3784794654,1094.93577,482.065824509833,1125592.3135519822,486108.4103012187,1734.32372,721.6501100849832,1765823.689620269,715524.0152382741,0.38047,100000,0,781429,8154.229842117895,0,0.0,0,0.0,36525,380.4092621385564,0,0.0,35987,371.2890400809759,1499532,0,53708,0,0,0,0,0,70,0.709582494182467,0,0.0,0,0.0,0,0.0,0.05818,0.1529161300496754,0.3042282571330354,0.0177,0.3466798484099522,0.6533201515900477,24.45055941230241,4.315330316357345,0.3261915172715348,0.2431132487975514,0.2057280279842588,0.224967205946655,11.41471852232359,5.952979224896402,18.570053557039,11972.277292605577,51.43442538269564,13.394686132552737,16.687995973022634,10.250450497435326,11.101292779684949,0.5629645824223874,0.7967625899280576,0.693029490616622,0.5664187035069076,0.1185617103984451,0.7392363931762794,0.9322429906542056,0.8477157360406091,0.7263681592039801,0.1490384615384615,0.498055638647921,0.7119883040935673,0.6375227686703097,0.522972972972973,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022868475907149,0.0045371223706464,0.0067403886112772,0.0090917393024931,0.0116113695930433,0.0138208074849994,0.0157500356335647,0.0178046989720998,0.0198196726333309,0.0221086000613559,0.0242693591660351,0.0261414448045288,0.0279998355972955,0.0301445993927854,0.0322786832853946,0.0341782350024789,0.0360306291390728,0.0379559168100856,0.0398499911698403,0.0419568770757201,0.0565793727772389,0.0700363879710569,0.0828268432745106,0.0962744336025712,0.1087618064842211,0.1241840420812472,0.1363087162964219,0.1468886904002382,0.1573201575122456,0.1675447614152317,0.1798767702183941,0.1915773783807137,0.2024340726747657,0.2122883067818263,0.2215204472808357,0.2313867725277277,0.2408929884366018,0.2492418626592088,0.2582807704938453,0.2667893179143193,0.2738040319232366,0.2803326810176125,0.2864824073200641,0.2918532316032047,0.2973823383475935,0.3032330947089232,0.307469867504269,0.3111854018665552,0.3149795066120176,0.3185218235741844,0.3170989870839809,0.3162194337634614,0.3158130485295559,0.3147916576832967,0.3132581746184193,0.3119742777032793,0.3095985487814496,0.3103566641603191,0.3112093141837341,0.3120888888888889,0.3132170506482604,0.3129697398969032,0.3134200758997456,0.3133748055987558,0.313787110444492,0.3154217053863806,0.3165341902023789,0.3212735615079365,0.3238711015835696,0.3282053279326998,0.3304029630951849,0.3348585690515807,0.3337651921771855,0.3362217076268021,0.3397861356932153,0.3397822057460611,0.3455387834404423,0.3442719591275299,0.3439267438728791,0.3379647014645137,0.0,2.6492178784955738,53.354335775433725,167.86297233622872,248.05748060028424,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95739,45666,433.052361106759,5823,59.54731091822559,4538,46.83566780517866,1725,17.72527392180825,77.31288813594676,79.67409417484326,63.318020272784125,65.06317713278379,77.10213751967898,79.46220772774372,63.23929056959205,64.98589409078367,0.2107506162677879,211.88644709954477,0.0787297031920744,77.28304200011848,169.74584,119.49198601560902,177300.61939230617,124810.14635165296,417.98934,276.0520109930464,436027.9509917589,287773.49982039345,396.51915,192.9016335052674,410529.46030353353,198683.11408954556,2582.78632,1186.6735600480745,2666925.244675629,1208768.545041367,1049.94776,468.22779990797727,1080970.795600539,473416.5790025545,1684.47228,707.3296836800328,1732097.5360093587,715888.9781288006,0.37876,100000,0,771572,8059.119063286644,0,0.0,0,0.0,36172,377.2339381025496,0,0.0,36167,374.079528718704,1502484,0,53915,0,0,0,0,0,73,0.7624896854991173,0,0.0,1,0.0104450641849194,0,0.0,0.05823,0.1537385151547154,0.2962390520350335,0.01725,0.3342600163532297,0.6657399836467702,24.55179523665979,4.278627712798862,0.3230498016747465,0.2434993389158219,0.2225650066108417,0.2108858527985896,10.989929395087517,5.719412212269709,18.37881530390556,11949.227443393283,51.4133250735503,13.24086400507726,16.52691972012196,11.264140694799012,10.381400653552056,0.5526663728514765,0.7520361990950226,0.6971350613915416,0.5524752475247525,0.1013584117032393,0.7443729903536977,0.9039408866995072,0.8781725888324873,0.7198443579766537,0.1497326203208556,0.4802671523982999,0.6638054363376252,0.6305970149253731,0.4953519256308101,0.0896103896103896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0048956506755592,0.0071632220294442,0.0093649697314427,0.0117980899299234,0.0140835030549898,0.0162944835321709,0.0185603005584424,0.0205900995767477,0.0224142697699183,0.0245562949216146,0.0265543974944806,0.0288070922423457,0.0306635354222029,0.032961931290622,0.0352215297801754,0.0372142147117296,0.0390864945629617,0.0411064316539281,0.0429364756873899,0.0567201887540976,0.0703307281040417,0.0838803716365009,0.0960466827883503,0.1077698463744583,0.1231926213469003,0.1345515126433854,0.1465597990377655,0.1564285790581173,0.1663485459380629,0.1787221671906628,0.1904674352707058,0.2024486511759397,0.2125553672007437,0.2218371455919728,0.2315565598830254,0.2403852592576058,0.2491309385863267,0.2572272056318837,0.2646678047271519,0.2714371701083433,0.2777641349470853,0.2845042764364213,0.2898350989885432,0.295512524599723,0.3009254124924525,0.3058539272390395,0.310152264892575,0.3144455378878127,0.3194136291600634,0.3172095906842594,0.3160654564472398,0.3150779553976712,0.3136336023604964,0.3128376065832354,0.3104299937104023,0.3084039480783268,0.3095974213919221,0.3101613427549746,0.3104725437921594,0.3105621518203815,0.3121561176424019,0.3129213247916928,0.3125948745423698,0.3144010379126423,0.3156784626201078,0.3160547976417647,0.3201699181875393,0.3239021307965036,0.3269995229766259,0.3296758331815698,0.3313593824353619,0.3342074046325778,0.3390190281252369,0.3389719011371112,0.3407398652641532,0.3448753462603878,0.3530008110300081,0.3484890490712503,0.3456743483188515,0.0,2.1805038894959305,54.561254463065005,163.1139513182429,251.30738913913197,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95780,45313,430.5282940070996,5815,59.52182083942368,4555,46.97222802255168,1758,17.968260597201922,77.37208356525132,79.71109076484129,63.35007434272507,65.07954444733348,77.14927188929799,79.48876643988007,63.26774996174869,64.99992083538554,0.2228116759533236,222.324324961221,0.0823243809763809,79.62361194793743,170.71758,120.11498282543192,178239.2775109626,125407.1651967341,423.64936,279.6084320736848,441726.6443934016,291339.3736413497,394.55733,192.0659548051653,407997.43161411566,197589.83092598128,2607.86348,1206.284835853813,2689774.065566924,1226442.8438649129,1091.73378,492.889801572933,1124202.7354353727,498974.1089715315,1721.95196,726.3352481287019,1760926.5608686574,727360.5824267148,0.37959,100000,0,775989,8101.785341407392,0,0.0,0,0.0,36725,382.8147838797244,0,0.0,36121,373.1676759239925,1497283,0,53782,0,0,0,0,0,69,0.7204009187721863,0,0.0,1,0.0104405930256838,0,0.0,0.05815,0.1531916014647382,0.3023215821152192,0.01758,0.3325669239612416,0.6674330760387585,24.2864711807981,4.32037093870176,0.3119648737650933,0.2472008781558726,0.2210757409440175,0.2197585071350164,11.48304865801621,6.099748702971155,18.68340385057999,11945.722219230223,51.63792292376312,13.464971185213294,16.062069162302514,10.956894306992186,11.153988269255102,0.5622392974753019,0.7806394316163411,0.6917663617171006,0.5729890764647467,0.1218781218781218,0.7392,0.927400468384075,0.8596938775510204,0.7365853658536585,0.1769911504424778,0.4953101361573374,0.6909871244635193,0.6277939747327502,0.5311720698254364,0.1058064516129032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0042780098130651,0.0066367640194028,0.0091323737060777,0.0113902166175124,0.0136015637726014,0.0157172124881509,0.0178888503377757,0.0201009646827992,0.022218810766554,0.0242670191943103,0.0264165272632108,0.0281852289664388,0.0302618437175012,0.0321017190351953,0.0340965448834518,0.0361146477036301,0.0379043214037562,0.0397655835991645,0.041573396358033,0.0565196973649882,0.0704005857127915,0.0837168345685742,0.0961477838723914,0.108354403708386,0.1236701706196186,0.1355326882928328,0.1466926111412378,0.1570439291925863,0.1663667138021168,0.1788676484826317,0.1910825271577582,0.2026449909261815,0.2134557577744985,0.2222393295868205,0.2332358933475064,0.2429423902738274,0.2520878058649642,0.260233918128655,0.2681843674529867,0.2744057528671846,0.2809848785846168,0.2869448087625394,0.2925139129914427,0.2978684686214803,0.3019188400802491,0.3060399829859634,0.3106954046360309,0.3143758647890238,0.318980401460335,0.3171066071716574,0.3149846255216341,0.3136592166969453,0.311303719754424,0.3103494344327999,0.307717022122946,0.3051501399408611,0.3061237870443221,0.3058660650189724,0.3062608168144592,0.3073614124336051,0.3082933759545374,0.3099914245675681,0.3106094405282413,0.3127640168970814,0.3143005991143527,0.3157023850279584,0.3180444500409242,0.3207255885758394,0.3228308867406612,0.3241187722014755,0.3250039789909279,0.3286827551533434,0.3331556503198294,0.3347781023273344,0.3416479489301335,0.3444495203289173,0.3432245301681503,0.3463506598437921,0.3451624953305939,0.0,2.267863753697969,54.64433125849328,163.8928889915322,252.63206786431377,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95642,45456,431.2331402521905,5735,58.61441626063864,4483,46.245373371531336,1729,17.680516927709583,77.25911226955019,79.65526199322926,63.27736057920528,65.04566996924825,77.04076354979763,79.43932250704239,63.19503370456759,64.96696897958753,0.2183487197525551,215.9394861868691,0.0823268746376868,78.70098966071737,170.81878,120.20981509313393,178602.2667865582,125687.2661520398,423.68817,280.4199452166933,442350.6722987809,292554.32259540097,401.56848,195.5161984761275,415287.1646347839,201025.10528113044,2582.06964,1196.5335504371133,2664680.788774806,1216232.3401913824,1053.04101,472.0597211393568,1086132.9227745133,478812.6565022894,1693.71088,717.6710224328087,1733240.7310595764,718987.6432712133,0.37808,100000,0,776449,8118.284853934464,0,0.0,0,0.0,36639,382.43658643692106,0,0.0,36603,378.2125007841743,1486719,0,53411,0,0,0,0,0,81,0.846908262060601,0,0.0,1,0.0104556575563037,0,0.0,0.05735,0.1516874735505713,0.3014821272885789,0.01729,0.3399900149775336,0.6600099850224663,24.54951090810825,4.346423814064907,0.3140753959402186,0.2426946241356234,0.2237341066250278,0.21949587329913,11.20218985527171,5.760934439228493,18.43682906798549,11913.16216057738,51.115390718839045,13.114487453029753,16.053727453105452,11.186981911395431,10.76019390130842,0.5641311621681909,0.7922794117647058,0.7080965909090909,0.5613160518444666,0.1087398373983739,0.742741935483871,0.9239904988123516,0.8992248062015504,0.6563876651982379,0.1707317073170731,0.4958371877890842,0.7091454272863568,0.6356513222331048,0.5335051546391752,0.0924261874197689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177810641897,0.0047455358500897,0.0070438259951687,0.0092464639895951,0.0116689556945928,0.0138003381337461,0.0160796949242408,0.0180487356697326,0.0202614980423426,0.022488586811882,0.0245752893773644,0.0265424936595784,0.0287069036451904,0.0308434032821336,0.032580651819439,0.0348560674993796,0.0370048068954085,0.0389785643846992,0.0410351893651767,0.0429728630852472,0.0581583705205513,0.0727027055336175,0.0853986389985718,0.0977895723417475,0.1102685690749522,0.1257652466795178,0.1373563340485649,0.1487271293543471,0.1585262820170044,0.1678551484170282,0.1796783136819167,0.1913761527541477,0.2020152505446623,0.2115424651830424,0.2213166282493851,0.2318644218382124,0.2411945041174364,0.2496672907315092,0.2579750031274522,0.2642476330545087,0.2712114179624043,0.2775647115395893,0.2850125182434116,0.2900526581548005,0.2946533060269163,0.2997961075069509,0.3035440877488015,0.3070546827178126,0.3106862897783315,0.3148956432029204,0.3131495829171503,0.3115794994961834,0.3103409267664984,0.3085458664962528,0.3075683418885042,0.3059631547408693,0.3035280674189402,0.3036710381254833,0.3053614251455978,0.3062687741381776,0.3066411741550919,0.3076816636356448,0.3103448275862069,0.3118953141022783,0.3125584294172639,0.3130972164520149,0.3141746139872843,0.3190434345970374,0.3227298206278027,0.3265839838332607,0.3309538965172319,0.3319385593220339,0.3343596832977252,0.3368142262580401,0.3404690990320179,0.3415929203539823,0.3408433551529913,0.3426278836509528,0.3461004718290313,0.3498439937597504,0.0,2.4743946102135257,54.06720846523469,169.27462055346865,239.1604237787484,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95635,45590,434.33889266481935,5795,59.58069744340461,4515,46.81340513410362,1716,17.67135462958122,77.28554750318864,79.71833229831917,63.27381344368566,65.07237456891967,77.0767766447146,79.50776849087278,63.19700030396884,64.99672648605132,0.2087708584740397,210.56380744639117,0.0768131397168261,75.648082868355,170.38714,119.90053084266523,178163.9985361008,125373.06513584488,423.50497,280.2923577749872,442435.9491817849,292686.7859831517,399.02635,193.89620273474637,414538.4639514822,200645.75419032143,2606.62152,1194.9257738672577,2702826.496575522,1226697.7297717964,1084.46826,478.25885125357627,1121185.1100538506,487306.9182345114,1687.10052,704.225879781212,1738205.1550164688,713942.9617085418,0.37992,100000,0,774487,8098.363569822764,0,0.0,0,0.0,36597,382.2763632561301,0,0.0,36351,377.5709729701469,1492920,0,53510,0,0,0,0,0,85,0.8678830971924504,0,0.0,0,0.0,0,0.0,0.05795,0.1525321120235839,0.2961173425366695,0.01716,0.3413154010168935,0.6586845989831065,24.126976215056796,4.343805161119727,0.3266888150609081,0.238095238095238,0.2188261351052048,0.2163898117386489,11.158593330293169,5.748804805740803,18.20867664401617,11949.728118226154,51.22807050157922,12.971805705933246,16.649939889882035,10.921698035719352,10.684626870044596,0.5652270210409746,0.8027906976744186,0.6847457627118644,0.5789473684210527,0.1095189355168884,0.7367563162184189,0.921760391198044,0.8567708333333334,0.7184873949579832,0.1377551020408163,0.5012165450121655,0.7297297297297297,0.6241979835013749,0.5346666666666666,0.1024327784891165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584920956627,0.0042702532736917,0.0066502863176704,0.0089037963104131,0.0109164530175395,0.0128451955301571,0.0150054574573349,0.0171931186662307,0.019392253326651,0.0214454697213317,0.0235530662070946,0.0257295519934237,0.0278638408251073,0.0299756731126046,0.0319159920700479,0.0338646448556563,0.0356787564766839,0.0374797490964981,0.0395728381697822,0.0416075600801068,0.0560817026258571,0.0699075723597342,0.0830137130247465,0.0955225453013063,0.1081101064728747,0.1239039268013724,0.1354889439066634,0.1470233971113361,0.1578361722160404,0.1678698034160489,0.1806619344538177,0.1929476548188134,0.2048614137540312,0.2145548958173572,0.2248567019400352,0.2346054398366495,0.243601207108528,0.2517776450569635,0.259635049765941,0.2671281545831709,0.2739933779434578,0.2800018729222269,0.2859817735799865,0.2910821222412903,0.2966689376612,0.3009439200444198,0.3054992111787243,0.3089473349041584,0.313187881616303,0.3176866706278471,0.3162939727244578,0.3145681252663559,0.3137395762902862,0.3126182737450343,0.3118394489965562,0.3097754495603958,0.3075388342596551,0.3080674559516577,0.3084628905916685,0.3083738210917405,0.3094110822089563,0.3093675476457951,0.3097206236266611,0.3113540040151684,0.3114286399271175,0.3129747245625405,0.3147708651183816,0.3211232449297972,0.3261948561313387,0.3271131057832369,0.3301682040151926,0.3333157450401013,0.3350857428964827,0.3406775824341658,0.3386420787929589,0.3368014963759644,0.341201392041156,0.3458224804648367,0.3502840140654585,0.3472065991751031,0.0,1.5752983589981795,54.37754216421878,170.6740534081042,241.7180212308097,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95815,45824,434.25350936700937,5776,59.05129676981684,4533,46.78808119814225,1774,18.17043260449825,77.35864855579545,79.66242381643103,63.35358995694328,65.0537143004912,77.13778572590591,79.44277951420653,63.271309079673166,64.97396497550238,0.2208628298895405,219.6443022244949,0.082280877270108,79.7493249888106,171.0346,120.38849375261871,178505.0357459688,125646.81287128189,427.95051,283.440015747354,446111.2351928195,295288.8229894631,404.26543,197.19737894158757,418251.1297813495,202999.73482137063,2596.33864,1201.9487514691734,2681783.1863486925,1226489.246432367,1046.64131,466.7007469471048,1077073.433178521,471802.2720316287,1736.29046,732.5037491288264,1780391.9219328917,738326.8788902174,0.38103,100000,0,777430,8113.8652611804,0,0.0,0,0.0,36960,385.200647080311,0,0.0,36865,381.0989928508063,1489166,0,53459,0,0,0,0,0,85,0.8871262328445442,0,0.0,1,0.0104367792099358,0,0.0,0.05776,0.1515891137180799,0.3071329639889196,0.01774,0.337339479749753,0.6626605202502469,24.48463432329557,4.33460706678846,0.3174498124862122,0.2404588572689168,0.2267813809838958,0.215309949260975,11.228395960682697,5.788764673993585,18.91486666242734,11978.282109318498,51.492263126778944,12.96194145587569,16.337735490928782,11.34507644687512,10.84750973309936,0.5656298257224796,0.7954128440366972,0.6949270326615705,0.5729571984435797,0.110655737704918,0.7285714285714285,0.9242424242424242,0.8731343283582089,0.7222222222222222,0.1403508771929824,0.5029025358997862,0.7219020172910663,0.6258437801350049,0.5289672544080605,0.1016042780748663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023682772301277,0.0048820508665133,0.007208248426047,0.0092747622961632,0.0114502265661512,0.0139057016428462,0.0159312227519048,0.0180653453428947,0.0203604192632245,0.0224943227152765,0.0245206489675516,0.0265965085030873,0.0286227975548363,0.0306036345674947,0.0326528508093617,0.0347737178030694,0.0368343179960475,0.0390085626023676,0.041234329396857,0.0432533155670296,0.0570206551220529,0.071601066332131,0.0850880962612806,0.0975702034639313,0.1098359100825192,0.1259061991418849,0.1369048250124574,0.1478100830859902,0.1579947680316053,0.1674655000482516,0.1792905907436521,0.1908383732378366,0.2026340688860129,0.212893274405986,0.2215653246138433,0.232083878261255,0.241768789481908,0.2505427996085093,0.2582519204366227,0.2655875917843683,0.272097113893582,0.278985931318617,0.2850681947338511,0.2903829093437552,0.2962571265331923,0.3013759431868619,0.3058561545294184,0.3096085861797095,0.313462783171521,0.3164553622079447,0.3156010712026807,0.3150426903881319,0.3139682093121395,0.3129382231583807,0.3128357323044962,0.3107469850052733,0.3082603333227918,0.3089673734655025,0.3102146128084205,0.3108294148146824,0.3112236286919831,0.3135343549184379,0.3156337850879033,0.3154978664462367,0.3165241206995964,0.3184593705965242,0.3176725489637084,0.3221214411690602,0.3247583904410472,0.3259200318281281,0.3292227884965417,0.3352118666595778,0.3390128890286074,0.3422757411782638,0.3482368347207932,0.3499001292445071,0.3547943110567365,0.3584521384928716,0.3622905027932961,0.358214849921011,0.0,2.027111864180744,55.25410278843587,164.7528341651221,247.76779541945965,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95867,45821,434.68555394452727,5789,59.25918199171769,4594,47.39900069888491,1811,18.54652800233657,77.41454581429173,79.70201104562344,63.37712166936033,65.06749569077297,77.1930776990017,79.48288707067685,63.29551301902639,64.9891805445656,0.2214681152900226,219.12397494658364,0.0816086503339406,78.31514620737323,171.27858,120.54778424016128,178662.48031126455,125744.61438841636,426.77676,281.4706823864443,444649.5874492787,293080.60543425626,401.00914,195.10548997130888,415194.5090594261,201088.9523732806,2652.04136,1206.3925917247152,2737852.7334745014,1229999.0147932698,1082.77762,474.1169086132789,1115307.9891933615,480532.80539793614,1771.66578,734.7278209072177,1815723.5336455717,738947.6902808008,0.37953,100000,0,778539,8121.021832330207,0,0.0,0,0.0,36853,383.8651465050539,0,0.0,36523,377.83596023657776,1493105,0,53649,0,0,0,0,0,82,0.8553516851471309,0,0.0,0,0.0,0,0.0,0.05789,0.1525307617316154,0.3128346864743479,0.01811,0.3346020188648022,0.6653979811351978,24.32115410209541,4.3745013928920855,0.3145407052677405,0.239007400957771,0.2233347845015237,0.2231171092729647,11.106191199426991,5.675092557566406,19.213123329836144,11948.51473869744,51.83878469426297,13.180888518343291,16.26058635676011,11.341221119689807,11.056088699469766,0.5539834566826295,0.7823315118397086,0.6913494809688582,0.5584795321637427,0.1112195121951219,0.749198717948718,0.9371980676328504,0.8686868686868687,0.691699604743083,0.1513513513513513,0.4811715481171548,0.6885964912280702,0.6244041944709247,0.5148771021992238,0.1023809523809523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002510502606671,0.0046400891545514,0.0071894298143322,0.0093801392808559,0.0117085069620896,0.0136651777083608,0.01590260798696,0.0178609680216249,0.0199601613974155,0.0221240295805333,0.0243275356974576,0.026464795667159,0.0288835001335771,0.0309926712779973,0.0329202408446057,0.0348688287543895,0.0366557689124317,0.0385719467329913,0.0405161317111655,0.0424485125858123,0.0570314454917007,0.0710105549169192,0.0843198055689413,0.097197576623022,0.1092436974789916,0.1252640473172792,0.1366722810139723,0.1475505670524962,0.1586067104069984,0.1684336781683051,0.1807727888814784,0.1927326587095658,0.20401355961668,0.214266984244914,0.2245640253618012,0.2350246730543692,0.2438540354319735,0.2518933009730555,0.2594759458938512,0.2671389658250738,0.2740505231516272,0.2801734718926438,0.2860065031037541,0.2904060366510959,0.2954951234620383,0.3004213586969913,0.3044174496140517,0.3093829892776739,0.3134434726271461,0.3164403267740956,0.3149733484089808,0.3128093719062809,0.3114163476694438,0.3095031898617245,0.3078007658286087,0.3056222381920765,0.3030451400953975,0.3040551606669068,0.3042381260868083,0.3058164354322305,0.3056757967012463,0.3059789672692898,0.3081126173096976,0.3088608158000089,0.3105882916088268,0.3114320533098245,0.3128648342306602,0.3175058456742011,0.3222551928783382,0.3269344709088754,0.3290750688394348,0.3313684210526316,0.3359447864204439,0.3381262637609526,0.3411710037174721,0.3422290148130731,0.3471968312004875,0.3467561521252796,0.3487798190293392,0.3551933282789992,0.0,1.938787413561756,54.87250787423873,166.22659478065378,252.77151380867528,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95708,45790,433.9658126802357,5734,58.73072261461947,4503,46.44334851841017,1773,18.10715927613157,77.36002699221102,79.73116522604242,63.33690834044432,65.08806632752768,77.13928688898837,79.51381838063105,63.254385664212855,65.00978595499932,0.2207401032226528,217.34684541137028,0.0825226762314699,78.2803725283685,171.45898,120.56607126784412,179148.012705312,125972.82491311502,421.66859,278.5594669300893,440005.6108162328,290478.796892725,394.02567,191.797244477694,407963.2841559744,197510.99506809784,2576.53592,1188.3833427010145,2659384.6282442426,1208980.7149883131,1082.53321,480.895680114787,1118183.9553642329,489566.1492401754,1735.39922,727.6911037368843,1774621.8915869102,728536.662700803,0.38184,100000,0,779359,8143.091486605091,0,0.0,0,0.0,36477,380.511555982781,0,0.0,35879,371.107953358131,1495311,0,53610,0,0,0,0,0,77,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05734,0.150167609469935,0.3092082316009766,0.01773,0.3350524039261354,0.6649475960738646,24.44373583515935,4.3510907856812215,0.3175660670664001,0.2465023317788141,0.2147457250721741,0.2211858760826116,11.507835340628713,6.107361344062697,18.794889424430835,12086.889922738312,51.12466875899518,13.33063922042006,16.278457067641536,10.597246328285944,10.91832614264765,0.5634021763268932,0.7855855855855856,0.7034965034965035,0.5594622543950362,0.1184738955823293,0.7317473338802297,0.9200968523002422,0.8623376623376623,0.7772020725388601,0.131578947368421,0.5009135200974422,0.7058823529411765,0.6449760765550239,0.5051679586563308,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025523898269034,0.0051292967997648,0.0074586728636229,0.0097624900952884,0.0119004027828634,0.0140829294122439,0.0160142711518858,0.0182285819265549,0.0204446716074623,0.0225536968406396,0.0249953864135003,0.0271038879705963,0.0292671890746796,0.0312928113057898,0.0332040117214907,0.0353501933456026,0.0375454554872931,0.0397757940626946,0.0416267942583732,0.043432501432814,0.058035947405249,0.0720431232991417,0.0858791439362148,0.0986158441667718,0.1108451773438488,0.1264113841079206,0.1386183777820211,0.1493976416499936,0.1600717695684214,0.169841678465697,0.1824302488419691,0.1946115559402726,0.2050602095378863,0.2148915704791885,0.2240844605740679,0.2341337527412887,0.2440812228048644,0.2531433455543309,0.2612984421415452,0.269000893082049,0.2759059269708392,0.2825939603590127,0.2880437995908569,0.2929246977133964,0.2984434947307076,0.304085502499569,0.3080434755418808,0.3130869029314967,0.3173075679381216,0.3205922683402774,0.319347633016659,0.3172875852960599,0.3165525403668949,0.3150712654312064,0.3147930752656215,0.3121326230712711,0.3095414961040603,0.3113017567412695,0.3118490360192966,0.3126814239666625,0.3118667514113732,0.3134507763852762,0.3138575061491641,0.31402825675826,0.3155741626794258,0.3154903995848469,0.3169082125603865,0.3214767839763915,0.3237727910238429,0.3279595573600828,0.3307449869821404,0.3334220046818472,0.3383147055129976,0.3403189066059225,0.3438930941033548,0.3409866949252325,0.3433221782780651,0.350222042793702,0.3445816186556927,0.3459624952162266,0.0,2.4181700725488424,53.04123512064068,167.93787367077852,246.0259126481952,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95751,45979,437.0815970590385,5876,60.12469843656985,4610,47.56086098317511,1774,18.088583931238315,77.33346816806463,79.69477131333313,63.32120940122799,65.06990141862724,77.117379269349,79.48308863076589,63.24050102480078,64.99328374578043,0.2160888987156255,211.6826825672433,0.0807083764272107,76.6176728468082,171.68294,120.74628641441356,179301.45899259538,126104.46513813284,425.50961,280.51310987340594,443780.3051665257,292349.5105778591,400.57865,194.83246506801893,414883.0821610218,200685.3848595618,2635.75128,1198.4678581772785,2722422.0321458783,1221358.4173296152,1090.85748,479.80214222091047,1123516.715230128,485345.4817400444,1739.5097,729.4536189140127,1777433.488945285,729113.404069106,0.38207,100000,0,780377,8150.066317845244,0,0.0,0,0.0,36796,383.70356445363495,0,0.0,36548,378.1683742206348,1491160,0,53519,0,0,0,0,0,68,0.6997315954924752,0,0.0,0,0.0,0,0.0,0.05876,0.1537938074174889,0.3019060585432266,0.01774,0.328782707622298,0.6712172923777019,24.615551965973705,4.368097817125946,0.3197396963123644,0.2344902386117136,0.2292841648590021,0.2164859002169197,11.150471695957629,5.776815700348574,18.82396294673037,11993.928481356845,51.89705486827789,12.92326488173617,16.49674155926363,11.721180625992783,10.755867801285303,0.5626898047722343,0.7844588344125809,0.6960651289009498,0.5695364238410596,0.1182364729458917,0.7373737373737373,0.9168765743073048,0.8729281767955801,0.6932773109243697,0.1623036649214659,0.5020455873758036,0.7076023391812866,0.6384892086330936,0.5335775335775336,0.1078066914498141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608085515983,0.0044517908570964,0.0066581409983151,0.0090837042004511,0.0110758528101543,0.0131759818346587,0.015434490070546,0.0175542446571819,0.0196026327623564,0.0216494528778929,0.0236306039387757,0.0256557671577434,0.0277243606223584,0.0296701372797396,0.0316423700310543,0.0338807867618939,0.0360844490003002,0.0384328048476799,0.0402220581967127,0.042378353607732,0.0574094756949156,0.0717746915195344,0.0845906868402828,0.0969774094484876,0.1091273398365409,0.1244170922818259,0.1362093112082502,0.1473321199348596,0.1581505137461816,0.1677837953777682,0.180200366260907,0.1920559180272881,0.2032215261463499,0.2132567678424938,0.2227869267240905,0.2335658914728682,0.2432933296120569,0.2518260086658038,0.259854047735243,0.2674917850723028,0.2744030066493206,0.2810332931834925,0.287545982517772,0.2926332682611351,0.2977474253690607,0.302112164938308,0.3066909854087547,0.3116450969683884,0.3157112197140123,0.3193200849234502,0.3181395974961297,0.3162509448223733,0.3148327916824941,0.3129269384630937,0.3121240475872209,0.3102190899341198,0.3092742701538851,0.3092839327907587,0.3097689667537524,0.3107546260773362,0.3114404401032895,0.3117536761077667,0.3130601926331404,0.3142908149602785,0.3151965023541846,0.3152046326003599,0.3171521035598705,0.3213199084093974,0.3250096447234595,0.3281657834374752,0.3333333333333333,0.3362082649875654,0.337751256281407,0.3410110224249335,0.342451588644482,0.3465121834687052,0.3511029411764705,0.3523073795486887,0.3594097995545657,0.3573353869849827,0.0,2.3165346393854085,51.81782664270381,171.2989084761005,258.2800245639372,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95803,45998,436.6773483085081,5772,59.13175996576308,4506,46.51211339937163,1783,18.266651357473147,77.34149214859087,79.68174697338193,63.33904717832892,65.07289924755793,77.12357957852046,79.46457209550229,63.25848431509596,64.9947942367688,0.2179125700704105,217.17487787964276,0.0805628632329558,78.10501078913035,171.47482,120.61841470376766,178986.67056355227,125902.32842997358,424.98968,280.98819888591385,443052.5244512176,292752.39490331017,398.649,194.6376460710233,413077.08526872855,200781.06450743423,2597.85276,1198.6961038614877,2682435.3725874973,1222537.6160354996,1066.12379,471.6230238709807,1098045.395238145,478432.4559477165,1747.72634,723.128753021237,1791455.3823992985,727847.5303589213,0.38226,100000,0,779431,8135.75775288874,0,0.0,0,0.0,36733,382.8481362796573,0,0.0,36341,376.3347703099068,1494280,0,53608,0,0,0,0,0,81,0.8454850056887572,0,0.0,0,0.0,0,0.0,0.05772,0.1509967038141579,0.3089050589050589,0.01783,0.338301043219076,0.6616989567809239,24.35484945682964,4.339280763037315,0.3144695960940967,0.239236573457612,0.223479804704838,0.2228140257434532,11.19119244861871,5.799827090292691,18.922352324620647,12043.243376195704,51.17561177397639,13.072532883514471,16.107894264105106,11.16226769945218,10.83291692690462,0.5628051486906347,0.7949907235621522,0.6972477064220184,0.5670307845084409,0.1195219123505976,0.73359375,0.9414414414414416,0.8461538461538461,0.6936170212765957,0.1327014218009478,0.4950402975821451,0.692429022082019,0.6407010710808179,0.5284974093264249,0.116015132408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0046125928854556,0.0067278908113044,0.0088200625939926,0.0111715928168082,0.0132829450652433,0.015400777178292,0.0177987909484519,0.0197971204188481,0.0220053656638473,0.0242596997785251,0.0262371509842782,0.0284197858487363,0.0304110435768002,0.0324720886559217,0.0347408134787327,0.036635119183217,0.0388804746986452,0.0409514111143439,0.0426196400129087,0.0576991298178251,0.0718229155774901,0.0852109576407956,0.098498302840509,0.1102551402164634,0.1259169221012578,0.1379460215828863,0.1491445402634965,0.1597319303787337,0.1699010919534071,0.1823484465298479,0.1933611483419084,0.2045533541883906,0.213965735763297,0.2237270248878726,0.234368255022414,0.2437676217222203,0.2527112288658868,0.2621155849449703,0.2700598939283101,0.2759611722203626,0.2816275079659652,0.288381105413644,0.2936348408710217,0.2991704867932765,0.3035523126330425,0.3086697402451366,0.3130276906669375,0.3164653446159808,0.3200657894736842,0.3186375977848867,0.3165528893040122,0.315028983060386,0.3128933541197529,0.3108728261030995,0.3091927119188581,0.3075291958097287,0.3087238407878539,0.3093008952367935,0.3096169300830431,0.3101205316137739,0.311509781039223,0.3131762140400906,0.3140568001253273,0.314995905390433,0.3156135770234987,0.3177050495787241,0.3203407003989614,0.3240312268183263,0.3252622761179145,0.3285937787594331,0.3324945119665899,0.3361285814116003,0.3395004625346901,0.3437114380635975,0.346498031261186,0.3503491078355314,0.3495784495167592,0.3546316964285714,0.3625239005736138,0.0,1.9871293783288169,56.21610640554118,161.10085347232828,244.2855313226598,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95702,45448,430.92098388748406,5710,58.48362625650456,4464,46.05964347662536,1766,18.05604898539216,77.3419109081298,79.71111837519871,63.33255108723839,65.08109875399575,77.12015146774493,79.4927009633636,63.24908679612034,65.00129225866294,0.2217594403848721,218.4174118351052,0.0834642911180481,79.8064953328037,169.76608,119.41326882794354,177390.08589162191,124775.91777386426,419.31076,277.4281479373564,437578.1488370149,289323.5543012229,397.23583,193.37073091753837,411892.9280474807,199430.15705158684,2570.54216,1194.608017602688,2654709.0342939543,1216981.356296303,1062.70456,473.8354996206376,1092888.4871789515,477583.4101906304,1726.44528,730.823040548903,1767256.462769848,732087.922250151,0.37799,100000,0,771664,8063.18572234645,0,0.0,0,0.0,36249,378.1739148607135,0,0.0,36244,375.4989446406554,1503465,0,53927,0,0,0,0,0,72,0.7418862719692378,0,0.0,1,0.0104491024221019,0,0.0,0.0571,0.1510621974126299,0.3092819614711033,0.01766,0.3271604938271605,0.6728395061728395,24.49559296429823,4.241093906493557,0.318100358422939,0.2403673835125448,0.218189964157706,0.22334229390681,11.156085329077634,5.87372643454181,18.73804793273054,11958.14101642808,50.81569784590509,13.049944938436733,16.17599168641602,10.794446591274678,10.795314629777671,0.5810931899641577,0.8070829450139795,0.721830985915493,0.6006160164271047,0.1183550651955867,0.7434262948207171,0.919047619047619,0.8532338308457711,0.7575757575757576,0.1435643564356435,0.5176067310688688,0.7350689127105666,0.6699410609037328,0.5518169582772544,0.1119496855345912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0046822742474916,0.0068472306755934,0.0090700414398309,0.0115203156139423,0.0136128533029241,0.0157089411500861,0.0180758553115048,0.0203086672117743,0.0225572374548394,0.0248180420297283,0.0267792050436907,0.0289066677635638,0.0308971400313195,0.0329897119978536,0.0350940665701881,0.0370642695884509,0.0393200709816008,0.0414041216960925,0.0431851103075271,0.0577846937922967,0.0720035169620147,0.085287421443035,0.0984654865953575,0.1101196126827416,0.1258027996148678,0.1375571563458131,0.1490274569089418,0.1593533980789982,0.1689661831602437,0.1811161017222994,0.1930561267559903,0.204681670346883,0.2136592300962379,0.2222906674880098,0.2327468804322552,0.2420058220591351,0.2505255584409744,0.2586382920797695,0.2663530542869897,0.2742260169373872,0.2803665043999251,0.2863653582082485,0.2910653497626696,0.2961531919029914,0.3009975708102642,0.3053189357117803,0.3088373749968192,0.3124595343537151,0.3164984052508106,0.3156067030082778,0.3144054406814591,0.3131121509773337,0.3117802216809121,0.3095255739502897,0.3079801450935471,0.306280284735704,0.3068090612766375,0.307683124413746,0.3079076901127122,0.3089776214355212,0.3082329713721619,0.3089708656466149,0.3088334004564371,0.3084067176747991,0.3087905789172008,0.3084442417851748,0.3116805533721113,0.3149822351989306,0.3188423106015366,0.3218631785242241,0.3224261771747805,0.3224119463171823,0.3269157307662923,0.3268269684111268,0.3280285035629454,0.3330279431974347,0.331289597384018,0.3394546466332777,0.3367697594501718,0.0,2.2722627504920654,54.7298714045859,164.9853756472654,238.93131203798225,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95711,45972,436.5015515457993,5802,59.49159448757196,4636,47.8941814420495,1820,18.702134550887568,77.33810060160408,79.72036094165587,63.31256206328344,65.07477906147244,77.10827762931612,79.49042462343867,63.22679097472332,64.99104166071037,0.2298229722879625,229.93631821719876,0.085771088560115,83.73740076207525,169.7146,119.47407101995104,177319.84829329964,124827.94142778892,424.75148,280.66090809744395,443166.9400591364,292619.3834537764,404.83101,197.05171595186587,418976.502178433,202966.80007906025,2679.20464,1247.5802226738815,2769472.098295912,1273838.4795911617,1088.61234,487.5376509031772,1123168.4550365163,495228.5517645466,1781.15964,755.5537859867668,1831437.7239815693,764571.21663558,0.3831,100000,0,771430,8059.993104240892,0,0.0,0,0.0,36647,382.3176019475296,0,0.0,36952,382.1399839098954,1497184,0,53778,0,0,0,0,0,93,0.961227027196456,0,0.0,1,0.010448119860831,0,0.0,0.05802,0.1514487079091621,0.3136849362288866,0.0182,0.336952945047713,0.6630470549522869,24.01083817376444,4.238224914339564,0.3192407247627264,0.245685936151855,0.2174288179465056,0.2176445211389128,11.114833598115688,5.848108992690857,19.411218354798528,12042.650689756323,53.01051482895849,13.700701437278257,16.933436553939586,11.304483823698838,11.071893014041816,0.5774374460742019,0.7963125548726954,0.7195945945945946,0.5873015873015873,0.1119920713577799,0.7371172516803585,0.9294117647058824,0.891566265060241,0.7358490566037735,0.1153846153846153,0.5125872004852896,0.7170868347338936,0.6525821596244131,0.5343203230148048,0.1109677419354838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002300784496564,0.0044735240413877,0.0066907628891099,0.0088928186678049,0.0111720474964642,0.0134346448833253,0.0154621300206025,0.0177821810493631,0.0200542005420054,0.0221471356166487,0.0242619386991253,0.0267078768213416,0.0288616757662687,0.0308322863674747,0.0329495749773046,0.0349392361111111,0.0367141555537149,0.0389048542883524,0.0409398066327061,0.0430026876679792,0.0578774777032813,0.0715713881939137,0.0850961134894652,0.0977903051082761,0.1101408926010292,0.1255805096848586,0.1376028015068711,0.1485453228829442,0.1592689574092876,0.1695402607156268,0.1828143519017347,0.1946321077476072,0.2061131853658005,0.2155809194471498,0.225780888859539,0.235721173562696,0.2453955524778573,0.2534302855663489,0.261254713124063,0.2690327979731976,0.2758393070143947,0.2830429488080183,0.2893334280841387,0.2940774487471526,0.298941380944857,0.3035782613525556,0.3086342386604334,0.3132224558720448,0.3169511515481421,0.3206742700248165,0.3186144505324376,0.3167127584925909,0.3161496543081234,0.3136145082807514,0.3123960560703255,0.3102677203945353,0.3085453049860794,0.3078323031266908,0.30786167815935,0.3085825353519142,0.3087637840975044,0.310337340360435,0.3112079257692227,0.3112508672590139,0.3107630965820382,0.3116772053488131,0.3117950461939579,0.3141264522594181,0.3159016278907287,0.3192714082952215,0.3222857657495384,0.324515824279641,0.3266815864727092,0.3281766296185041,0.3313565604151223,0.3355186139077499,0.3393420459666516,0.3428116921853251,0.3485175202156334,0.3393325834270716,0.0,2.099832296373535,59.068882034708565,171.32025047106933,242.84604917761,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95648,45775,434.1230344596855,5767,59.02893944463031,4579,47.25660756105721,1808,18.494897959183675,77.27782633283482,79.68790064765753,63.2892740309558,65.07186103705544,77.0525138227146,79.46419513761138,63.20605040789727,64.99195215452819,0.2253125101202187,223.7055100461447,0.0832236230585223,79.90888252724915,169.4297,119.24126965211316,177138.54968216797,124666.55095152346,420.90144,278.1157960511856,439416.3077116092,290135.8294089596,403.53759,197.42430581231412,418040.63859150215,203506.9616909705,2635.49784,1215.6512770380298,2721436.8936099038,1237111.7697381754,1092.19742,486.5611332836976,1124524.7469889596,491391.40618111246,1773.59348,737.1958828462758,1816130.5202408836,738879.2182827782,0.38136,100000,0,770135,8051.752258280361,0,0.0,0,0.0,36326,379.1192706590833,0,0.0,36856,381.4193710270994,1499988,0,53855,0,0,0,0,0,66,0.6900301104048177,0,0.0,1,0.0104550016728002,0,0.0,0.05767,0.151221942521502,0.3135078897173574,0.01808,0.3372438863185724,0.6627561136814276,24.161024969353083,4.332352211749054,0.3188469098056344,0.2376064642935138,0.2234112251583315,0.2201354007425202,11.507154926824766,6.151872592697474,19.176885700248825,12072.29020271559,52.01310650720895,13.178688626857571,16.50318467416463,11.389641026379788,10.941592179806957,0.5675911771129067,0.8033088235294118,0.6972602739726027,0.5747800586510264,0.1180555555555555,0.750994431185362,0.9263657957244656,0.8593350383631714,0.736,0.1743589743589743,0.4981938591210114,0.7256371814092953,0.6379794200187091,0.5226390685640362,0.1045510455104551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021988934600652,0.0044925361025474,0.0071163177877489,0.0093092269073244,0.0114654865456025,0.0134778578050345,0.015634880163182,0.0177617535007711,0.0199259425952824,0.0223210169942942,0.0245438414752971,0.0267785607165601,0.0289039348040829,0.0312187580520484,0.0332651923434305,0.035538087604075,0.0378115123568727,0.0399244084022968,0.0418635143291223,0.0434701006204056,0.0589587643948418,0.0732800603248745,0.0858813280011756,0.0991097173405173,0.1107370864770748,0.1262093786387212,0.1383576336161582,0.1494715758970425,0.1606472519598301,0.1707015942884749,0.1823795002209028,0.194917823347264,0.2064761904761904,0.2159263758029392,0.2258036107441655,0.2356004698269175,0.2448252763201965,0.2524079575119272,0.260022467575204,0.2684947811756089,0.2754578246392897,0.2819649910023604,0.2891587635692831,0.2942233725151875,0.2980953769161625,0.3030344130303441,0.3075459416153422,0.3118772191043408,0.3165370658372213,0.3198717187314407,0.3174900586371908,0.3157285247528847,0.3138295619768213,0.3124466252695876,0.3110651222344638,0.3095738640723065,0.3084650542753761,0.308316730607742,0.3094646680942184,0.3106169040291991,0.3118140372600889,0.3131631037212985,0.3140202986076161,0.314989494389557,0.3157426337943476,0.3169848670330529,0.3172832815129646,0.3207850809378056,0.3244438156545113,0.3293341331733653,0.3327526931010772,0.3355034953839585,0.3390226942284594,0.3415887133875172,0.3431919115562695,0.3455829542734019,0.3501469905616586,0.3534749432872757,0.3564633463905988,0.3621351766513057,0.0,2.3160921389956477,54.66341742370377,170.82706308109286,247.90605772939813,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95835,45350,429.7907862471957,5885,60.38503678196901,4592,47.48786977617781,1869,19.24140449731309,77.39792083527668,79.70149745605978,63.37134666233783,65.07156506486993,77.16559613815267,79.46666173738716,63.28526865661244,64.98610225249301,0.2323246971240138,234.83571867262756,0.0860780057253904,85.46281237691744,170.9565,120.17868270379527,178386.28893410548,125401.66192288336,421.85999,278.50967812478814,439758.9398445244,290178.60711095965,395.63991,192.87748388860996,410017.50926070847,199148.05848925165,2642.31312,1231.426782834304,2734951.322585694,1262747.704736583,1086.7305,483.4975167858179,1124980.2577346482,495530.9706292138,1817.59086,767.7492859060554,1873033.338550634,783211.5993631543,0.37957,100000,0,777075,8108.467678822977,0,0.0,0,0.0,36518,380.6020764856264,0,0.0,36114,373.9761047633954,1499692,0,53765,0,0,0,0,0,76,0.7930296864402359,0,0.0,2,0.020869202274743,0,0.0,0.05885,0.155043865426667,0.3175870858113849,0.01869,0.3317144244779019,0.6682855755220981,24.27623866440593,4.274922786677685,0.3227351916376306,0.2332317073170731,0.228876306620209,0.2151567944250871,11.335006617050006,6.065552456966939,20.026247834772047,11968.716167961147,52.50199891011455,12.895550849545836,16.8909469155186,11.78792706001958,10.92757408503054,0.5601045296167247,0.7796451914098973,0.6842105263157895,0.582302568981922,0.1123481781376518,0.7245827010622155,0.9266503667481664,0.852112676056338,0.7351778656126482,0.117391304347826,0.4938912645082468,0.6888217522658611,0.6164772727272727,0.5338345864661654,0.1108179419525065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022677573499635,0.0045496458571877,0.0065419138901567,0.0089152442553537,0.0112129960962914,0.0131485213001974,0.0153858694544639,0.0174955368528436,0.0197909535827041,0.0218639056281396,0.0240458992879463,0.0264173010238627,0.0286333655248936,0.0306454268543673,0.0328073303717751,0.034619117434489,0.0365910431085317,0.0387007172173624,0.0407152425158094,0.0427212555157772,0.0572361421150355,0.0713815066988798,0.084729590873823,0.0973402018502943,0.1097854041064125,0.1247674418604651,0.1368133091579985,0.1472632262321601,0.1573072116052257,0.1676676891396211,0.1805210049645161,0.1933917369673372,0.2049570605500598,0.2146855593457535,0.2243933012986156,0.234766628288017,0.2435439989295749,0.252194930020797,0.2599306216841246,0.266578947368421,0.2726410950035837,0.2795920036453282,0.2858257754023341,0.2909545693905883,0.2960861341481158,0.3020026078185352,0.3065299649087753,0.3101473930099405,0.3147334126286394,0.3179789628888508,0.3171402875283568,0.3162422479556556,0.3148340686205637,0.3128134186408438,0.3114163777007201,0.3095154521175124,0.306143382410958,0.306958243988673,0.3077526251193236,0.3083382360806546,0.3086315868207487,0.3094181021724975,0.3108600125549278,0.3117743126244435,0.3139568483914467,0.3140153292663851,0.3120372752479776,0.3155070084606642,0.3162299982416036,0.320317775571003,0.3243243243243243,0.3258954785672343,0.3278947701258458,0.3296375592598257,0.3292602064980581,0.3286088613625536,0.3347139131768676,0.3292313899536009,0.3282401091405184,0.3262438283327003,0.0,1.664285160640712,58.413305337065935,170.3397703599831,241.96754959237384,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95552,45493,432.6021433355659,5741,59.02545210984594,4515,46.65522438044206,1749,17.94834226389819,77.19945181010942,79.67170371077421,63.224607941291474,65.05418627206794,76.98116604607898,79.45358953605412,63.14422425174504,64.97602537897289,0.2182857640304405,218.11417472008543,0.0803836895464371,78.16089309504548,169.3351,119.17896242602912,177217.0545880777,124726.1608757212,420.81714,278.3168357152654,439816.60247823177,290683.66139641806,398.59544,194.63798170075475,412881.038596785,200359.6851674637,2563.6098,1184.8511985713774,2650785.540857334,1207918.0552697768,1059.45947,467.0976519713831,1094839.8463663764,474903.24846301903,1707.3372,712.7244004538575,1753506.3630274616,718256.4364916853,0.37963,100000,0,769705,8055.32066309444,0,0.0,0,0.0,36368,379.9920462156731,0,0.0,36350,376.18260214333554,1496183,0,53692,0,0,0,0,0,77,0.8058439383791024,0,0.0,0,0.0,0,0.0,0.05741,0.1512261939256644,0.3046507577077164,0.01749,0.3374937593609585,0.6625062406390414,24.137846652518306,4.333901549081215,0.3207087486157253,0.2449612403100775,0.2239202657807309,0.2104097452934662,11.25036625336528,5.822807991246339,18.53340807791372,11996.282888566711,51.46036287766743,13.305870680054277,16.566436346230226,11.20371771386233,10.3843381375206,0.582281284606866,0.8128390596745028,0.7182320441988951,0.5727002967359051,0.1168421052631579,0.7536348949919225,0.928400954653938,0.8817480719794345,0.7468354430379747,0.1243523316062176,0.5175465364662801,0.74235807860262,0.6581680830972616,0.5193798449612403,0.1149273447820343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0045555082080314,0.0068648956048419,0.0090491296567431,0.0113715030337581,0.0137413606801361,0.0159412154921671,0.017913345595749,0.0201289398280802,0.0221564066038799,0.0239485921348429,0.0263128129723504,0.0282180410088464,0.0304099358379237,0.0324387446133495,0.0346662250147504,0.0367643246046149,0.0387337483501522,0.0405712261989083,0.0426558095834638,0.0568398150666304,0.0707252880915182,0.0841961423240658,0.0969370014856649,0.1090278805301316,0.1242552740379518,0.1359168563708699,0.1475418583060325,0.1592569579842735,0.1690826970642004,0.1812516874561261,0.1932886197390983,0.2048610732324609,0.2141540891540891,0.2241179521702184,0.2349772298122848,0.2446374022311987,0.252713773103744,0.2606360584855208,0.2675815342214056,0.2742758412764674,0.2811888152881177,0.286781622826783,0.2914640442827468,0.2964644865957291,0.3009980976851051,0.3053690011423406,0.3101068850284431,0.3138955239381036,0.3183693984445267,0.3172878335875596,0.3151719859378231,0.313613473826753,0.3128445544124669,0.3117519204430417,0.3095062751235079,0.3065956198360214,0.3073771840347471,0.3083803094426263,0.3094022605549286,0.3099960519636781,0.310673644978391,0.3110657290833298,0.3127103055318767,0.3148796446075472,0.3160869906571406,0.3174625883430141,0.3209413692070193,0.3251665667853491,0.3298412698412698,0.3325325234576855,0.334654826091553,0.3389226052680973,0.342928755886374,0.342987947304494,0.3443011007219789,0.3475102164371121,0.3414245921209709,0.3514986376021798,0.3447085889570552,0.0,2.290937546791896,54.16104405577137,167.70008792817305,246.77257223625412,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95671,45619,432.492604864588,5850,59.99728235306414,4513,46.461310114872845,1775,18.07235212342298,77.33990302576841,79.7307119023196,63.32261558699434,65.08895307968976,77.11702149443688,79.51245988374656,63.23898969468147,65.01048812928347,0.2228815313315237,218.2520185730397,0.0836258923128667,78.46495040628554,169.53068,119.30626939850876,177201.5135202935,124704.52111978416,419.33848,277.0088703947758,437589.47852536297,288820.18520426867,391.19016,190.26752355537053,404585.2034576832,195552.99626971903,2602.04852,1195.8038484028552,2680983.3282812973,1211203.57560496,1076.91314,474.88548076135686,1107957.8451150295,478790.1251611745,1738.54882,731.0614388819317,1773363.1507980474,726112.5081438485,0.38075,100000,0,770594,8054.614250922432,0,0.0,0,0.0,36289,378.568218164334,0,0.0,35636,368.2307073198775,1505268,0,53950,0,0,0,0,0,69,0.7107691986077285,0,0.0,0,0.0,0,0.0,0.0585,0.1536441234405778,0.3034188034188034,0.01775,0.3338754268986827,0.6661245731013173,24.71237535900564,4.325944104154716,0.3212940394416131,0.2342122756481276,0.2264569022822956,0.2180367826279636,11.081299568399562,5.749985304743681,18.88434519186486,12035.303823214035,51.18463320599223,12.619785047222145,16.364496750996697,11.415957869635404,10.78439353813798,0.5597163749169067,0.7918637653736992,0.7,0.5547945205479452,0.1087398373983739,0.7120462046204621,0.898989898989899,0.8469656992084432,0.6735537190082644,0.1179487179487179,0.5037867312935475,0.7276853252647504,0.6479925303454716,0.517948717948718,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.004642440829152,0.0068898336901705,0.0091313533498557,0.0110938246748624,0.0134774730755919,0.0158804582704774,0.0179125500122478,0.0200259652637927,0.0220375241819093,0.0242557204953661,0.0263095763573092,0.0286384155809433,0.03100375959211,0.0331193493786896,0.0353092010711663,0.0371728725057499,0.039225659123936,0.0412267104975709,0.0433246114232697,0.0577911495549705,0.0727133763296758,0.0857823336236111,0.0979989900265118,0.1099986284460293,0.124783105505946,0.1367836946027097,0.1481520906071702,0.1590544957381812,0.1688934162556294,0.1816742593131078,0.193685212837326,0.2050610061114856,0.2149166921764989,0.2252107498954504,0.2353077996588618,0.2445555158871831,0.2534563248776647,0.2611240288096183,0.2682667094159004,0.2755617750124325,0.2816609967383299,0.2880513857837397,0.2927319976527789,0.2981687559918935,0.3029642492087536,0.3075595573063215,0.3119517962016627,0.3164742129246065,0.3193139841688654,0.3171083104432595,0.3159487264124993,0.3152060621425955,0.3131694202332943,0.3119631445980086,0.3104688169410612,0.3084525974539416,0.3088165340769294,0.3104741129554518,0.3101987037960259,0.3105832663664056,0.3112881910885816,0.3119252633338906,0.3125083821359917,0.3129960078880284,0.3154000468957611,0.316099811997949,0.3197961559029853,0.3209308856049703,0.326068900051418,0.3278012061850995,0.3311296805584937,0.3301165559593934,0.3308373042886317,0.3347960041079264,0.3334510773578241,0.3385297264251872,0.3476044852191641,0.3430474604496253,0.3353846153846154,0.0,2.6901753425554977,52.555023915132416,167.3574526493661,248.56959044758,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95780,45904,433.7961996241386,5889,60.06473167675924,4642,47.83879724368344,1812,18.521612027563165,77.331780499572,79.67295156572541,63.32970022966426,65.0629237750311,77.09784626209766,79.44171229824843,63.241347953356765,64.97841068252788,0.2339342374743438,231.23926747697965,0.0883522763074964,84.51309250321515,170.25866,119.81400537968084,177760.13781582794,125092.92689463442,425.34347,281.7420871407854,443451.0858216747,293522.7261858272,406.3596,198.6224814143892,420253.8108164544,204309.3015687453,2647.91228,1239.6255427090582,2730259.344330758,1259924.4755784697,1085.71026,488.5281855588029,1119977.5944873667,496484.0943399479,1763.08934,757.1182989345859,1803627.187304239,758082.8961384381,0.38108,100000,0,773903,8080.006264355815,0,0.0,0,0.0,36810,383.68135310085614,0,0.0,37095,383.28461056588014,1494562,0,53665,0,0,0,0,0,64,0.668197953643767,0,0.0,2,0.0208811860513677,0,0.0,0.05889,0.1545344809488821,0.3076923076923077,0.01812,0.3398576512455516,0.6601423487544484,24.15284264756586,4.256864146078181,0.3237828522188711,0.2464454976303317,0.2188711762171477,0.2109004739336493,11.18143675812922,5.908758157208559,19.474849258319924,12096.134628876349,53.02508062525416,13.695478522390392,17.110257925804714,11.39498220559278,10.824361971466278,0.5672124084446359,0.7972027972027972,0.6939454424484365,0.5541338582677166,0.1174668028600612,0.7254601226993865,0.9176755447941888,0.8498789346246973,0.7449392712550608,0.1385281385281385,0.5053924505692031,0.7291381668946648,0.634862385321101,0.4928478543563069,0.1109625668449197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424158014687,0.0049470824378573,0.0072046840593828,0.0094985574383355,0.0120010170353419,0.0143891485656676,0.0166595297812034,0.0188349871370819,0.021089325509599,0.0234119875108767,0.0255979169015961,0.0278562114320331,0.0301481702363937,0.0321590440873506,0.0341101432522808,0.0362965336862019,0.0384643267707157,0.0406052937271822,0.0425755229712456,0.0445046076951111,0.0597123953832988,0.0737157023755975,0.0872523325296152,0.1001355597356059,0.1124317717224083,0.1274754306245376,0.1383901125691632,0.1493667386241585,0.1602433427610865,0.1702597291273787,0.182631442966025,0.1949264387710947,0.206107866488303,0.2159850365881671,0.2253956723678707,0.2349056499240988,0.2442086234600964,0.2534305124398254,0.2619331133263022,0.2687014860440089,0.2750095401089307,0.2814052726953878,0.288104705102717,0.2934372190590351,0.2980049572317262,0.3031659698326365,0.3076383495753689,0.3124545906466291,0.3164031594920948,0.3205163779548367,0.3181469054452844,0.3162441366218688,0.3149955634427684,0.3136367579446549,0.312330925413954,0.3103141626163352,0.3076691347846078,0.3077846280312371,0.3081926803382519,0.3087888531618435,0.3094460707047962,0.3099582847314209,0.3105989042131116,0.3101950334758951,0.3117299578059072,0.3126208013373034,0.3152580083863422,0.3198014202224596,0.3253687418981887,0.3289823447728625,0.3324669402644779,0.3360476874767151,0.340960953346856,0.3447247706422018,0.3506321947537271,0.3517462580185317,0.3562528841716659,0.3592115848753017,0.3596370635138851,0.3703271028037383,0.0,2.477356769686681,56.68364909673608,175.48925823954855,246.01607702185325,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95678,45633,431.7293421685236,5729,58.728234285833736,4518,46.531072973933405,1777,18.14419197725705,77.34192318165195,79.7166056510159,63.32298576779221,65.0747211388857,77.12217150502319,79.50140267964687,63.24098824320181,64.99737711100467,0.2197516766287606,215.202971369024,0.0819975245903918,77.34402788103978,171.04516,120.2712096585419,178771.4417107381,125703.9263577226,424.03446,280.16766001367296,442500.21948619327,292135.18155236624,398.38922,194.3075589841497,411717.92888647335,199583.96925233584,2587.3342,1195.827571035475,2668090.7627667803,1213775.926582366,1109.82748,491.15099983151066,1142784.109199607,496277.7171357655,1742.09906,730.1882552986937,1781407.1991471394,728719.9267811902,0.38071,100000,0,777478,8125.974623215368,0,0.0,0,0.0,36723,383.09747277326034,0,0.0,36311,374.9764836221493,1492013,0,53543,0,0,0,0,0,78,0.8047827086686595,0,0.0,1,0.0104517234892033,0,0.0,0.05729,0.1504819941687898,0.3101762960377029,0.01777,0.3344420422418094,0.6655579577581906,24.227747638722303,4.266262267801437,0.3202744577246569,0.2419212040725984,0.2131474103585657,0.2246569278441788,11.474870694647349,6.159093097639238,18.84397133363667,12037.525929873304,51.3477450759144,13.196908707893368,16.389404160781748,10.85632893870434,10.905103268534944,0.580787959274015,0.8106129917657823,0.710435383552177,0.616822429906542,0.1142857142857142,0.7680577849117175,0.9431818181818182,0.8831168831168831,0.7489361702127659,0.1397849462365591,0.5094743276283619,0.7212863705972435,0.647834274952919,0.5741758241758241,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023895588428865,0.0046624299368544,0.0071111922659443,0.009466349767404,0.0118169892101329,0.0139174523019282,0.0161898741920355,0.0181961136695495,0.0203996073459037,0.02282291506681,0.0249364285128373,0.0268840944332056,0.0291591668809462,0.0313639829373338,0.0337025300122836,0.0359336545819287,0.0379527868988305,0.0401590168358556,0.0424089268815191,0.0441424730622538,0.0578188655593857,0.0719805650380112,0.0848640705363703,0.0974724303392541,0.1094755724385354,0.1241255966050395,0.1352961161956129,0.1463783553472518,0.1576663246109115,0.1680711057676825,0.1813221768150009,0.1930483947835882,0.2046416946975387,0.2138831434606082,0.2234526181381883,0.2337702629333747,0.2429191832360197,0.2522065114603503,0.2600651155403796,0.2674278777328584,0.2744229100376049,0.2815662326419354,0.2886766324610304,0.293597889941254,0.2983914078825873,0.3033025261860751,0.3082267230803895,0.3120706325377843,0.316241642046338,0.3208588633002324,0.3189799331103679,0.3174642566626683,0.316558533145275,0.3150063561770484,0.3131684739879248,0.3107849881525644,0.3084568466959517,0.3090351265770865,0.3093778286338872,0.3100554179511395,0.3107003199431212,0.3116895951929159,0.3133165829145728,0.314189869171419,0.3145360700996279,0.3142352084849745,0.315554924780017,0.3188950483886122,0.3225356045797263,0.3273595705206647,0.3295413506681112,0.3315246022547676,0.3316809939135345,0.3332329468453546,0.3373583503622515,0.3378346915017462,0.3370786516853932,0.3312165112125422,0.3354978354978355,0.3293856402664692,0.0,2.683366050789678,53.88381277126784,167.58315705380022,244.6857051131101,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95741,45802,434.4220344471021,5794,59.35805976540876,4552,46.99136211236566,1830,18.74849855338883,77.32392886815877,79.6871184830296,63.31606620966248,65.06469384661216,77.09230804330824,79.45763214158053,63.22965430253876,64.98162250923329,0.2316208248505376,229.48634144906063,0.0864119071237254,83.0713373788683,170.77258,120.1530988337572,178369.32975423278,125498.06126294608,422.60945,280.1505689655332,440878.4219926677,292083.6430227726,403.60974,196.77058230926093,418231.89647068654,203009.6610164116,2596.6432,1204.6646378871176,2682352.973125411,1228524.8935030142,1065.40891,475.9255405497111,1097836.266594249,482216.5789246249,1776.9868,748.8666773430203,1822047.2524832624,752536.4410122971,0.38164,100000,0,776239,8107.69680701058,0,0.0,0,0.0,36497,380.6415224407516,0,0.0,36784,380.8399745145758,1491464,0,53616,0,0,0,0,0,81,0.8460325252504152,0,0.0,0,0.0,0,0.0,0.05794,0.1518184676658631,0.3158439765274421,0.0183,0.3417533432392273,0.6582466567607727,23.938060468768825,4.215593125021721,0.3198594024604569,0.242750439367311,0.2295694200351493,0.2078207381370826,11.417539891236778,6.220057796148065,19.5861409428873,12031.768968004646,52.18849214978301,13.545622159110868,16.422682761456254,11.763033024205544,10.45715420501034,0.5645869947275922,0.7927601809954751,0.695054945054945,0.5435406698564593,0.120507399577167,0.7334384858044164,0.9131403118040088,0.889196675900277,0.669260700389105,0.1343283582089552,0.4993909866017052,0.7103658536585366,0.6310502283105023,0.5025380710659898,0.1167785234899328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397854690206,0.0043293554634032,0.0067387906712403,0.0091954723729399,0.011453798266672,0.0137678207739307,0.0160675325734559,0.0182306286810864,0.0202537598789477,0.0223612405164381,0.0242987204724409,0.0265305912913128,0.0287250557743119,0.0308189899364461,0.0328665627870019,0.0348448983388979,0.0368325651250712,0.0391293968675724,0.0409608485415691,0.0431842807134522,0.0584446091686416,0.0725943129747034,0.0858700781209039,0.098391167192429,0.1109400537776137,0.1264980590021049,0.1381311604120911,0.1495283320201869,0.1594351513597812,0.169573840793353,0.1821039486715756,0.194093283299629,0.2053052128064358,0.2153454251260017,0.2246929057657836,0.2343000786241874,0.2433602642503236,0.2523012175635226,0.2606439746588251,0.2677957161858459,0.2751787514630387,0.2824115303491915,0.2886733617102002,0.2929964592210286,0.2979992211079739,0.3028467072222702,0.3069970918572001,0.3114747830076855,0.3158857409713574,0.3194007351968899,0.3175789629909467,0.3160251905135943,0.3145284190325675,0.3134762656166307,0.3120071417943758,0.3107905295721155,0.3077580341461099,0.3079938332349275,0.30859328313613,0.3084772370486656,0.3087783686615235,0.3095548703352309,0.3109004540983949,0.3109924959799893,0.3118481134342706,0.3120147970614286,0.314176027299872,0.3170654911838791,0.3221103049940128,0.3247836099420313,0.3281883167144743,0.3302436440677966,0.3318047616056285,0.3321686289403722,0.33528467566802,0.338488994646044,0.3328781671976938,0.3365612648221344,0.3360699152542373,0.3334590720482837,0.0,2.1377737521328943,55.64638421655717,176.70519667464805,238.59404977724637,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95790,45814,433.7613529595991,5761,58.93099488464349,4505,46.39315168597975,1759,17.914187284685248,77.4066300966336,79.74490212514095,63.35719594835807,65.08736069886838,77.18170854680294,79.52515855693018,63.27310656042097,65.00848205960123,0.2249215498306682,219.7435682107738,0.084089387937098,78.87863926714545,170.16516,119.68068997078606,177643.9711869715,124940.6931525066,423.11767,280.68246294631945,441088.06764798,292392.789379183,395.88988,193.0300432117228,409603.2571249609,198729.4884927084,2591.85148,1192.8080074236666,2670787.096774194,1210255.23272123,1072.49071,477.1026384028113,1103797.8285833595,482242.2678805834,1720.66912,728.7423104891774,1754208.518634513,723347.466794456,0.3814,100000,0,773478,8074.725963044159,0,0.0,0,0.0,36602,381.4490030274559,0,0.0,36121,373.5358596930786,1498459,0,53792,0,0,0,0,0,69,0.6994467063367783,0,0.0,0,0.0,0,0.0,0.05761,0.1510487676979549,0.30532893594862,0.01759,0.3388852242744063,0.6611147757255936,24.51070080602692,4.386465329037541,0.3152053274139844,0.2388457269700332,0.220865704772475,0.2250832408435072,11.396351062964854,6.003452619494359,18.647644250558635,12039.055296741952,50.83173537802998,12.848956791530044,15.91328845033391,11.045972427408968,11.023517708757057,0.5596004439511654,0.7788104089219331,0.6774647887323944,0.5969849246231156,0.1252465483234714,0.724709784411277,0.9077306733167082,0.8370786516853933,0.7405857740585774,0.1666666666666666,0.4992421946044256,0.7022222222222222,0.6240601503759399,0.5515873015873016,0.1144278606965174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000385028471,0.0050293038064529,0.0072761591621761,0.0095302927161334,0.0116150161206659,0.01381845583593,0.0157419302216512,0.0180166385954167,0.0201561797293429,0.022534692373818,0.0246377108655994,0.0268018387785256,0.02910645645337,0.0313050102428428,0.0331096473595777,0.0352625329134183,0.0371807206480245,0.0394455847898654,0.0415268412795711,0.0435606454971369,0.0581833359419836,0.072569259247639,0.0855852078572776,0.0983415310884096,0.1103056612123191,0.1264701841891135,0.1384687138935117,0.1496884370813041,0.1607956546329594,0.1698446705945367,0.1825655593935285,0.1947099788053116,0.2058315311301172,0.2155931240853592,0.2248442701295277,0.2352036469455724,0.244605038642979,0.2534343593317895,0.2607512248230811,0.267537433032648,0.2740560855738653,0.2799817708029026,0.2863242303461816,0.291727036509286,0.2966012167134166,0.302196651430965,0.3065755550549423,0.3106605957316918,0.3144784370589987,0.3181302443400707,0.3163133367454139,0.3157873019366197,0.3146220901575856,0.314272921601479,0.3126687835712378,0.3112652599734144,0.3088362850699427,0.3088461161399954,0.309466040008823,0.3098651450443905,0.3097496878086966,0.3103922377388879,0.3116961498439126,0.3123416173920775,0.3137306442362837,0.3142797970384177,0.3136705709274033,0.316846504085324,0.3194691190302017,0.3220539051741097,0.3276624548736462,0.3315642898428879,0.336631199054197,0.3393916635373639,0.341747572815534,0.3453421942404104,0.3474021026969374,0.3524132429198245,0.3541153951326223,0.3505154639175257,0.0,2.4672931749419105,52.2767014460555,167.37771302040375,245.80381291234707,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95703,45897,435.1274254725557,5718,58.78603596543473,4484,46.4248769631046,1737,17.857329446307848,77.29491858535671,79.69809745894027,63.29396199958445,65.07459671238485,77.08074304211314,79.4853777157483,63.21466721133379,64.99834351841027,0.2141755432435701,212.7197431919683,0.0792947882506638,76.25319397457986,170.6485,120.05250621625656,178310.50228310502,125442.78258388616,423.39046,279.90342523638486,441970.72192094295,292041.3353079386,399.65738,194.64542671545863,415650.9931768074,201889.07606226584,2591.4604,1198.3250035523706,2683554.454928268,1227876.1447332646,1066.10416,474.334064643464,1103998.0251402778,485684.3643689661,1704.09714,713.4080611116275,1753075.0969144125,720408.2619944896,0.38198,100000,0,775675,8105.022831050228,0,0.0,0,0.0,36630,382.28686666039727,0,0.0,36417,378.55657607389526,1494931,0,53699,0,0,0,0,0,76,0.7941234862021044,0,0.0,0,0.0,0,0.0,0.05718,0.1496937012409026,0.3037775445960126,0.01737,0.3475201072386059,0.6524798927613941,24.2630803053517,4.352026191708015,0.3189116859946476,0.2450936663693131,0.2107493309545049,0.2252453166815343,11.197832529121923,5.763121250022503,18.5384320789434,12012.871671280524,50.95837157701839,13.156923761493598,16.202997668797625,10.416137695347702,11.182312451379468,0.5539696699375558,0.7797998180163785,0.6951048951048951,0.5576719576719577,0.1049504950495049,0.7374485596707819,0.9201995012468828,0.8768844221105527,0.7235023041474654,0.1055276381909547,0.4857754665035179,0.6991404011461319,0.625,0.5082417582417582,0.1048088779284833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023923687491763,0.004728708129116,0.0067942923881582,0.0088861776218799,0.0112279487362195,0.0134946439309775,0.0160210620841667,0.0179910504484992,0.0200106396038793,0.0220653766172568,0.0243522146769792,0.0264120318053871,0.0287099064612724,0.031258373698856,0.0332789694254629,0.0352548192272689,0.0373479243093121,0.0395265534963401,0.0416649327951396,0.0436105899520533,0.0573992249276633,0.0716125384760349,0.0850228770515888,0.0977893751117938,0.1097595712582683,0.1252711209860868,0.1376700842726443,0.1481438107506733,0.1577007318767028,0.1675535909705383,0.1805099259993321,0.1919407183037646,0.2034287080923598,0.2133435331402655,0.2231238660729012,0.2331078462849994,0.2422717790247548,0.2511054354796971,0.259131007391092,0.2676387312722812,0.2752795980271841,0.2811702750146284,0.2872970029828133,0.2930215827338129,0.2983161628924093,0.3030471255859857,0.3078107976105496,0.3121159302281199,0.3157574738367204,0.3194226586700059,0.3174513521873024,0.3156738046509072,0.3150430525071754,0.3138324744872183,0.3125296912114014,0.3099154567175151,0.3077118133696789,0.307808547682402,0.308842375053396,0.3097390993566833,0.3107674405510407,0.3114939114939115,0.3127464138914521,0.3151135473766641,0.3158986731001206,0.3175329428989751,0.317813071297989,0.3209347737079147,0.325008768853034,0.3271435940165853,0.3297124600638977,0.3318307170131523,0.3334797064174142,0.3352298588984979,0.3380506091846298,0.3348351908940005,0.3364118092354277,0.3363599677158999,0.3363119415109667,0.3314585676790401,0.0,1.6137893091614173,53.64299291200891,168.10334980169776,244.57949605094856,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95714,45334,429.9997910441524,5845,59.79271579915164,4626,47.68372442902815,1862,18.95229537998621,77.3593554540744,79.72932032100981,63.33143217950936,65.08334338401241,77.12793777672039,79.50208181064443,63.24442038057835,65.00048186279108,0.2314176773540168,227.23851036538176,0.0870117989310159,82.86152122133217,170.15856,119.67541080326995,177778.13068098712,125034.3845239672,422.04236,278.6413030578886,440294.9307311365,290472.4837096857,402.74182,196.21815619126303,416371.492153708,201563.7651893024,2643.97348,1235.125691140763,2726627.745157448,1254692.8256480375,1090.98024,489.6216914492928,1123505.5895689242,495218.66336094285,1814.95048,770.9728975622824,1850902.940008776,770430.5620557363,0.37847,100000,0,773448,8080.82412186305,0,0.0,0,0.0,36539,381.0832271141108,0,0.0,36692,378.9936686378168,1499622,0,53784,0,0,0,0,0,77,0.8044800133731742,0,0.0,1,0.0104477923814697,0,0.0,0.05845,0.1544376040373081,0.318562874251497,0.01862,0.3419069462647444,0.6580930537352556,24.32117988853189,4.245626391449898,0.3197146562905317,0.2392996108949416,0.2258971033290099,0.2150886294855166,11.509062679708071,6.276941004141443,19.84246375535823,11910.469915630694,53.01754952574466,13.495182879173983,16.965341713872096,11.60883320603945,10.94819172665913,0.5717682663207955,0.7985546522131888,0.6977687626774848,0.5856459330143541,0.1175879396984924,0.7362385321100917,0.9198218262806236,0.8379746835443038,0.7831325301204819,0.1116279069767441,0.5069318866787221,0.71580547112462,0.6466789667896679,0.5238693467336684,0.1192307692307692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181258355953,0.0045414457611483,0.0068292286929079,0.0089679267128435,0.0112361835616159,0.0136622313620491,0.0155971252357408,0.0177918869811975,0.0201386191245323,0.0223896641038503,0.0246628723786084,0.0266333877710329,0.0284168072760195,0.0308468988254687,0.032980073678888,0.0350534433211354,0.0370738474599082,0.0389578060822304,0.0408341476599372,0.0427686058017811,0.0574832666785009,0.071001705966697,0.0838359785584659,0.0970788029190939,0.1090888000759245,0.1241298322083747,0.1358542228259716,0.1472852533728025,0.1575054774755517,0.1670441007588035,0.1796980245503238,0.1915227629513343,0.2026766770034274,0.2117480956133438,0.2215881549376459,0.2310985415626906,0.2405839513895094,0.2498284145504461,0.2587388777919012,0.2666300038954194,0.2730439008585776,0.2794004162476907,0.2855082401343012,0.2910353081986834,0.2962320247557793,0.3013705377482791,0.3057220435691137,0.3098485907883195,0.3136161291992339,0.3172249245330275,0.3158177664292433,0.3142146693959418,0.3122928719878672,0.3106013728396483,0.3086512977686966,0.3063792787845506,0.3032514302825891,0.3033116479780313,0.3027991554859361,0.3040061167517203,0.3041836467641231,0.3051271938473673,0.3058273788320097,0.3074251658003226,0.3082838672466415,0.3096743968142422,0.3097481144158246,0.3131195518771438,0.3170174637197371,0.3192257347983023,0.3216368939117754,0.3255381344671804,0.3300786203398427,0.3316850513503233,0.3361722040243332,0.3377358490566037,0.3398872123151958,0.342410893071686,0.3491977155289638,0.3438569798402434,0.0,2.561524512545748,57.03069679646715,175.4976626576462,243.94462027421184,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95888,45604,431.59728016018687,5880,60.14308359753045,4586,47.25304521942266,1832,18.761471717003168,77.4394230829848,79.7232255826636,63.39129033748679,65.07887140562849,77.20833275970398,79.49257677211362,63.30581544498473,64.99638114876238,0.2310903232808243,230.64881054997957,0.0854748925020558,82.49025686610878,171.68624,120.72149056362814,179048.72351076256,125898.4341769858,423.04397,279.19168450192444,440549.8185382947,290528.6631298227,396.14291,193.1958664251643,410174.3596696145,199117.0310363304,2635.94392,1210.7047122906297,2717401.1346571003,1231148.520003584,1058.57681,469.66655660325534,1090505.235274487,476387.1115484385,1797.0087,751.4085999428144,1841893.7927582175,754686.3152828988,0.38045,100000,0,780392,8138.578341398297,0,0.0,0,0.0,36627,381.3824461872184,0,0.0,36114,373.6755381278157,1496001,0,53703,0,0,0,0,0,82,0.8343066911396629,0,0.0,1,0.0104288336392457,0,0.0,0.0588,0.1545538178472861,0.3115646258503401,0.01832,0.3328994467946632,0.6671005532053368,24.34445550302252,4.325596130927117,0.3111644134321849,0.2333187963366768,0.2317924116877453,0.2237243785433929,11.013183943169537,5.711163171685561,19.526339580184715,11990.270843587025,51.70452425955644,12.790704538511164,15.912916075068438,11.8003203080292,11.200583337947633,0.5617095508068033,0.7850467289719626,0.7147862648913805,0.5794920037629351,0.0974658869395711,0.7369687249398557,0.9301204819277108,0.868421052631579,0.7291666666666666,0.1320754716981132,0.4962563641808925,0.6931297709923664,0.6590257879656161,0.5358444714459295,0.0884520884520884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182830532496,0.0046110503060521,0.0067661469481329,0.0089756216430261,0.0112413225324483,0.0134103905089436,0.0154825566590272,0.0177172582619339,0.0198806750847942,0.0222797344435692,0.0244269803375103,0.0266362955438585,0.028762857994307,0.0308720134235096,0.0328669958864707,0.0348808392879269,0.0370684571534983,0.0391980105688529,0.0411527760475063,0.043121384877866,0.057698321692901,0.0713270637408568,0.08413182118061,0.0970065413004903,0.1092103462433283,0.1246898590508367,0.1363308971507255,0.1471757055423325,0.1579469139750559,0.1680631801984012,0.1807588949801139,0.1922295691257184,0.2035389578648939,0.2135653960033651,0.2226595569237535,0.2326070357542023,0.2415445478352928,0.2500673914996855,0.2590444691117504,0.2666201819761328,0.2735975426684219,0.2801952107973053,0.2866903073286052,0.292037305302477,0.2971050555319536,0.3014022430965073,0.3062046031329308,0.3095035497021806,0.3141243521976815,0.3180160850850982,0.3171256165248827,0.3157049522345448,0.3143222470457643,0.3131537562580254,0.311831783738897,0.3096253496583666,0.3076096404583168,0.3082176077557972,0.3092105263157895,0.3101907880686267,0.3114570291331078,0.3133598770055584,0.3144933893101072,0.3161336239491126,0.3171343283582089,0.3176345425294514,0.3201651443599242,0.323455174347948,0.3263582328200493,0.3291881468655306,0.3305635838150289,0.3317668180378076,0.3359404329871105,0.3402898990665554,0.3469579958560934,0.3511685846482382,0.3526234567901234,0.348475547370575,0.3493340732519422,0.3486517280668439,0.0,2.2735343133835286,54.31885488923377,165.2654384348191,253.07515041517115,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95726,45901,435.6496667572029,5655,57.69592378246245,4412,45.4004136807137,1701,17.28892881766709,77.34647984393533,79.69845486716557,63.33814763576003,65.07493586631779,77.12798920599766,79.48608136239756,63.25509227244091,64.9974732413919,0.2184906379376627,212.37350476801,0.0830553633191186,77.46262492588585,171.7133,120.84962639736383,179379.7714309592,126245.12984702572,423.76726,280.5021190791578,442013.9251613982,292352.5298029353,398.96041,194.59627859960835,412686.29212544137,200109.79483848956,2504.01264,1159.8909428872375,2579310.030712659,1175187.287557443,1035.61907,460.11160528497686,1065079.570858492,463892.74483760895,1661.17274,706.8001480573904,1691446.4408833543,700498.3447746186,0.38221,100000,0,780515,8153.625974134509,0,0.0,0,0.0,36717,382.8531433466352,0,0.0,36352,375.6659632701669,1488879,0,53442,0,0,0,0,0,58,0.6058959948185446,0,0.0,1,0.0104464826692852,0,0.0,0.05655,0.1479553125245284,0.3007957559681697,0.01701,0.3285424416638485,0.6714575583361515,24.454125828829326,4.272223641009845,0.3148232094288304,0.2531731640979148,0.2198549410698096,0.2121486854034451,11.172234813948627,5.850752238202427,18.05953709960193,12032.293436463622,50.11480124439098,13.262527137021442,15.81114646720692,10.840685032250782,10.20044260791184,0.5743427017225748,0.7914055505819159,0.7105831533477321,0.5742268041237113,0.1132478632478632,0.7333333333333333,0.946153846153846,0.8559782608695652,0.6853448275862069,0.1333333333333333,0.5159590951348001,0.7083906464924347,0.6581782566111655,0.5392953929539296,0.1079622132253711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875632975491,0.0045008058875406,0.00671801585127,0.0093049714552731,0.0115626334736713,0.0138153608079491,0.0159836901121304,0.0182079833433694,0.020474082857172,0.022472945440398,0.024415994423887,0.0264100590197587,0.0284994602374955,0.0303944793490575,0.032531313839995,0.0345226774713689,0.0367145356843336,0.0386059926958831,0.0409052163246637,0.0430077286836239,0.0579446863156575,0.0720236973769599,0.0855095424452581,0.0986833803053884,0.1109986398000822,0.1267988369019297,0.1387621735163692,0.1495689196381053,0.1598565007100225,0.1698181974101706,0.1820873666189312,0.1937437805563968,0.2042872827280336,0.2147392810693247,0.2238663222118397,0.2336458944525014,0.2421437651939246,0.2510628725677651,0.2589894588737221,0.2661184097495046,0.2730185907150542,0.2791875204640067,0.2855181393146712,0.2901586083703979,0.2955572289156626,0.3008200152675515,0.3059335601360816,0.3106923360775681,0.3155221559989634,0.3192174670644454,0.3186360330756592,0.3171412849085156,0.3162407602956705,0.3152633935664659,0.3142114642114642,0.3127037825095289,0.3110619469026549,0.3115600117959304,0.3113568113568113,0.3117737221073643,0.3125058442894279,0.3139723000434045,0.3150228444481703,0.315481246367741,0.3165229091083827,0.3172087923562888,0.3166015457890083,0.3197362223268959,0.3252767269160712,0.3281280885550504,0.3331666969641883,0.3374164810690423,0.3424657534246575,0.3429635824526724,0.3453142642077531,0.3488068384186157,0.351479109484599,0.3551912568306011,0.3560500695410292,0.363600782778865,0.0,2.676500109401686,51.0036664870452,168.35079211389797,238.86034366140373,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95746,45852,434.6395671881854,5746,58.88496647379525,4470,46.15336410920561,1761,18.068639943183005,77.41222784566315,79.76786971774736,63.350809200748486,65.08966326012174,77.18472084225876,79.54263748831235,63.266311060813,65.00869228486168,0.2275070034043977,225.232229435008,0.0844981399354836,80.97097526005825,169.3912,119.17890201327552,176916.800701857,124473.60122325268,421.39276,279.28747553033287,439595.71157019614,291177.51337139186,402.08424,195.53175117045893,417053.6210389991,202011.91789603283,2565.1076,1184.1176314117092,2648910.367012721,1206635.9043842133,1071.7408,479.0827054619277,1107693.6895536105,488703.7635639368,1721.71252,725.9222710688888,1767305.7046769578,730184.1915359498,0.37995,100000,0,769960,8041.672759175319,0,0.0,0,0.0,36376,379.3578844024816,0,0.0,36653,379.83832222756047,1501603,0,53805,0,0,0,0,0,71,0.7415453387086667,0,0.0,0,0.0,0,0.0,0.05746,0.1512304250559284,0.3064740689175078,0.01761,0.344068079425997,0.655931920574003,24.607790539609887,4.32075777355608,0.3029082774049217,0.2590604026845637,0.2152125279642058,0.2228187919463087,11.499281685879614,6.176482205652611,18.667035599713447,12018.274372668053,50.63358548957351,13.84936671206943,15.156061639139162,10.723564885088988,10.904592253275949,0.5697986577181208,0.7927461139896373,0.6920236336779911,0.5997920997920998,0.1154618473895582,0.7226277372262774,0.9050925925925926,0.8724035608308606,0.7339055793991416,0.1515151515151515,0.5115848007414272,0.7258953168044077,0.632251720747296,0.5569272976680384,0.1045751633986928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.004652105609892,0.0069695248143489,0.0093833780160857,0.0115190272369584,0.0136509390746678,0.0155941048168457,0.0177853513193608,0.0199182422074604,0.0222110768789854,0.0244632334101972,0.0264538315454498,0.0285182634084156,0.0306372549019607,0.0328958230146937,0.0350313204192594,0.036885161023092,0.0389288345213268,0.0411615478987752,0.043325624518199,0.0576824697493292,0.0721475807801774,0.0860520739357573,0.0992299762260419,0.1112306913142567,0.1269034995819973,0.138276872134488,0.1492578632424029,0.1588565321934277,0.1687165947581943,0.1816133344833534,0.1940290426326789,0.2051424403731644,0.2152350506886207,0.2250641639954617,0.2349561938560496,0.2435075093867334,0.2523931797193504,0.2605817702892956,0.2675568800504327,0.2742566691367173,0.2816222414640425,0.2878692869227766,0.292562874251497,0.296676216373701,0.3017260483096545,0.3052417137429385,0.3103899236912606,0.314904498082213,0.3186511120171504,0.316664878205816,0.3154158215010142,0.3142452221255578,0.3127491473225207,0.3117201458927068,0.3098396567986126,0.307937905978201,0.3075844985495909,0.3078633000746623,0.3083863648449825,0.3093565294970447,0.3098574984808985,0.3113572945733205,0.3124667021843367,0.3133365200764818,0.3146978093117199,0.3154126934721711,0.3184953956609958,0.3212455106523937,0.3252713544124587,0.3272686230248307,0.3308008863564419,0.3309581848865554,0.3339121244149177,0.3357752225519287,0.3414977147544826,0.3436983626258074,0.3460241919492365,0.3379254457050243,0.3469233673084183,0.0,2.0293650660324283,54.20424671128971,162.82216932335464,242.88539984261104,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95730,45876,435.5374490755249,5817,59.42755666980048,4495,46.380445001566905,1783,18.25968870782409,77.32373385663094,79.69618276907354,63.321321634088775,65.07641727858022,77.10206295892728,79.4749284037004,63.23882742092653,64.99632273227836,0.2216708977036603,221.2543653731416,0.0824942131622421,80.09454630186497,170.66126,120.09073845308583,178273.08053901597,125446.97545081582,424.41549,281.277508428112,442787.77812597936,293269.1286360489,401.05822,195.7951571659934,415691.6953932936,201919.8648988732,2574.10124,1202.9182621612688,2657952.616734566,1225881.793052478,1083.27354,484.7464879168129,1117166.9591559593,491942.8370592429,1745.34332,734.8346506907435,1789157.2756711585,738763.1338618143,0.38127,100000,0,775733,8103.321842682544,0,0.0,0,0.0,36759,383.3907865872767,0,0.0,36609,379.1287997492949,1493734,0,53613,0,0,0,0,0,64,0.668546954977541,0,0.0,0,0.0,0,0.0,0.05817,0.1525690455582658,0.3065153859377686,0.01783,0.3383076418497868,0.6616923581502132,24.125754809571685,4.382780334605396,0.3163515016685205,0.2433815350389321,0.2204671857619577,0.2197997775305895,11.472089196841344,5.978285255009393,19.00980051689922,12021.145750025367,51.34745790249104,13.228154336984824,16.155757739318645,11.003789708028483,10.959756118159095,0.5733036707452726,0.8025594149908593,0.689873417721519,0.6004036326942482,0.124493927125506,0.731974921630094,0.923963133640553,0.862796833773087,0.7427385892116183,0.1216216216216216,0.5104069586828207,0.7227272727272728,0.6270373921380633,0.5546666666666666,0.1253263707571801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100303951367,0.004512864198282,0.0067194478278522,0.0089730300997906,0.0111712518313527,0.013283215679084,0.0154815812018112,0.0177198124865952,0.0200014315953084,0.0223360131087101,0.0244177579965337,0.0266406490705556,0.028599351885191,0.0307495723501164,0.0328337565285605,0.034684172438747,0.0367984423062981,0.0386889940239043,0.0408825303083865,0.0427516072228647,0.0575607922570136,0.0716087370613415,0.0848570679255179,0.0981949382534239,0.1106014109905406,0.1265133491937615,0.1381256497846428,0.1490178970441148,0.1590537726277567,0.1681141705266769,0.181016569589044,0.1924628714209997,0.2044055928849457,0.2147831505756048,0.224320756792432,0.2343561407199884,0.2430790157317902,0.2515530392388141,0.2602455531748461,0.2676924836975174,0.2748827213273866,0.2815905984603343,0.2876054939599536,0.2930792905644108,0.2983090761219213,0.3029269013772204,0.3061405813968039,0.3105094325211945,0.3153618906942393,0.3195926605020512,0.318418006084592,0.3171275585348732,0.3167528569616864,0.3151574774670505,0.3138316061790987,0.3118434351168417,0.3096641643619123,0.3096712876478877,0.3093818157033806,0.3100345650857,0.3104480964324486,0.3116662384632107,0.3132633788037775,0.3139758928171349,0.3142285824419389,0.3139027512868079,0.3131148478609014,0.3184445778184919,0.3195810853697239,0.3214185870042733,0.3240087904038092,0.3277513241667112,0.3310952049154367,0.3310360670801746,0.3319236913823888,0.3373379326751516,0.3364770307271068,0.3331314354936402,0.3346028291621327,0.3369024856596558,0.0,2.244414412251069,55.7533627048105,166.39079461345142,240.1194221261584,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95785,45741,434.7966800647283,5784,59.28903272955056,4573,47.19945711750274,1786,18.29096413843504,77.38153749659537,79.72367741042534,63.350937847410606,65.08308561406874,77.15987133652011,79.50379350733996,63.26920453837271,65.00425519817445,0.2216661600752587,219.88390308537475,0.0817333090378937,78.83041589428785,169.90468,119.58573207912686,177381.30187398865,124848.07859176995,424.7024,279.90916875610594,442847.77365975885,291682.94488292106,397.17772,192.780341706859,411477.7365975884,198693.438143574,2631.1002,1190.2070867881137,2716664.4046562617,1212365.0746861342,1082.13186,474.3486954732791,1114857.5455447093,480347.0672444651,1756.56272,725.8645876302627,1800853.912407997,729721.2261272832,0.37984,100000,0,772294,8062.786448817665,0,0.0,0,0.0,36753,383.1184423448348,0,0.0,36172,374.4427624367072,1501378,0,53838,0,0,0,0,0,71,0.7412434097196847,0,0.0,0,0.0,0,0.0,0.05784,0.1522746419545071,0.3087828492392808,0.01786,0.3343171011641253,0.6656828988358747,24.488662461817352,4.426452483676571,0.3251694729936584,0.2370435162912748,0.2162694073912092,0.2215176033238574,11.333071982245723,5.718370812164559,18.761771091116817,11992.098344966826,51.216139627014975,12.8558723838885,16.500127684261315,11.06994861685614,10.790190942009012,0.5574021430133391,0.7776752767527675,0.6933422999327505,0.5611729019211324,0.1184600197433366,0.7388255915863278,0.907514450867052,0.8792134831460674,0.7172131147540983,0.2102564102564102,0.4970862470862471,0.7168021680216802,0.6348364279398763,0.5100671140939598,0.0965770171149144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281188600133,0.0043181219210574,0.0066860111196785,0.0088561185419903,0.0111332533501433,0.0133249183098018,0.0150956089207811,0.0170955000561344,0.0193443561078297,0.0215482841181165,0.0236406861639989,0.0257847303483812,0.028069093152375,0.0299822906799555,0.0318920703028302,0.0339511912879961,0.0359596837617451,0.0381047154067025,0.040118423102893,0.0417495236806213,0.0561538622085864,0.0705642420122365,0.084213064399459,0.0969023201075992,0.1094683597660572,0.1243909914289639,0.1360394255736315,0.147179841582053,0.1583407148116922,0.1680637139304549,0.1803913970160821,0.1924616050183863,0.2037169872839908,0.2133358102127566,0.2237363072456117,0.2343402366536422,0.2432381207215644,0.2520849724626278,0.2600596378643748,0.2677282450781884,0.2743490727466124,0.2808493730206032,0.2873026199065586,0.2930468731287873,0.2981527781149112,0.3034685638324061,0.308452305117348,0.312892322549493,0.317333057466508,0.3208757624059754,0.3190502440270514,0.3176947382882264,0.3155680027020941,0.3132606655598065,0.312393282950513,0.3101408063110581,0.3069614759402175,0.3070761887637511,0.3078531006236935,0.3084251688588695,0.3089778541285432,0.3102965809439353,0.3126737018075436,0.3141618626268043,0.3151647403002254,0.3160907577019151,0.3163456621782853,0.3196946946946947,0.3230060707557044,0.3262646605852387,0.3274284160927872,0.3298024469042953,0.3344047393962311,0.3368694192169732,0.3359433962264151,0.3391118499168843,0.3418515684774292,0.3403437815975733,0.3486568817502077,0.3597701149425287,0.0,2.047444133362654,49.70139335566765,172.64025516415646,257.3865509257202,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95869,45719,432.4755656155796,5824,59.581303653944445,4552,47.01206855187808,1807,18.53571018786052,77.37299817448195,79.67388787602431,63.35320242165369,65.05659480123373,77.14689059804368,79.44844238539359,63.2685887168353,64.97476067686132,0.2261075764382667,225.44549063071884,0.0846137048183877,81.83412437240634,170.32576,119.82631870432064,177665.10550855857,124989.64076429358,423.20601,280.1863614881645,440968.9472092126,291786.57489716646,398.5504,194.39890419163845,412640.8119412949,200464.09977945732,2627.12056,1215.4740176295038,2713440.7159770103,1240966.2535642432,1095.54013,492.10573620023257,1131227.0598420762,501798.2208392141,1772.03484,752.5919006385867,1818843.1505491869,758595.3830379493,0.3805,100000,0,774208,8075.686614025389,0,0.0,0,0.0,36686,382.17776340631485,0,0.0,36288,375.5437106885437,1496120,0,53781,0,0,0,0,0,71,0.7405939354744495,0,0.0,3,0.0312927014989204,0,0.0,0.05824,0.1530617608409986,0.3102678571428571,0.01807,0.3263900278825652,0.6736099721174348,24.31232873591269,4.286202186618705,0.3231546572934973,0.2324253075571177,0.21902460456942,0.2253954305799648,11.14752574858862,5.813946301331909,19.327640644526216,11894.066965415344,51.73051457887463,12.678854294983434,16.572408545569143,11.093254555429564,11.385997182892488,0.5511862917398945,0.780718336483932,0.6730115567641061,0.5626880641925778,0.1286549707602339,0.7203252032520325,0.9285714285714286,0.8740157480314961,0.75,0.1428571428571428,0.4885611077664057,0.7031700288184438,0.6027522935779817,0.5033025099075297,0.1241997439180537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0045202549991385,0.0067861598855786,0.008701744410373,0.0112437224244149,0.0135993485342019,0.0157165717081324,0.0177060690485666,0.0198837221183418,0.0221621953465528,0.0241278623021361,0.0262447802846091,0.0287244100961933,0.0308488847258391,0.0329890105358652,0.0348634274797335,0.0370067661238593,0.0391693608555085,0.0413399931463462,0.0434579050314203,0.0574017496845771,0.0702007377451748,0.0842272879651357,0.0966522451379846,0.108522805059132,0.1235026935671279,0.1358198675496688,0.1462014416023473,0.1561442645347906,0.1660219662469863,0.177837325929274,0.1900793393432345,0.2014673115591544,0.2112283387087957,0.2200470971433601,0.2305298020580644,0.2389463466880878,0.2481013512753293,0.2561603739335633,0.2639763644275473,0.2703571759045063,0.277385841142817,0.2833891644275044,0.2882527738503199,0.2932562714004711,0.2983616654348361,0.30354013319313,0.308692388912211,0.3135671106623691,0.3170155478710767,0.3162303382891618,0.3146121550003441,0.313660524200939,0.3114794405634862,0.3112656591324506,0.3093619887337742,0.3069850614001772,0.3072305951424307,0.3076699989764236,0.3082920041388661,0.3094935288396798,0.3098530427063813,0.3115004285744152,0.3122006638301664,0.3139206584677226,0.313423149806609,0.3141540037561892,0.3167247496153967,0.3194463910301331,0.3241855873642645,0.3279909706546275,0.3298175297964349,0.3316617564094528,0.3359161349134001,0.337968617870901,0.3427263120817189,0.3491675576599969,0.3480922260763109,0.3496522948539638,0.3560229445506692,0.0,1.7821174980424146,54.28781138666741,173.5722980694121,244.22774589397517,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95782,45690,432.7117830072456,5832,59.5623394792341,4591,47.24269695767472,1769,18.051408406589964,77.39816222968327,79.72655675362786,63.35848721039546,65.07916047540552,77.17732336762992,79.51010539802714,63.276135371205584,65.0011487749033,0.2208388620533412,216.45135560072504,0.0823518391898758,78.01170050221629,171.39628,120.58013659570696,178944.14399365225,125890.18458134824,423.41039,279.94739383930374,441392.4328161868,291611.6846999474,402.09659,196.3948856369674,415082.6668893946,201416.76058777445,2616.02672,1216.3455693430094,2696700.089787225,1235380.477900868,1069.81473,481.0858503655755,1103883.3288091708,489228.3000621986,1731.13,731.8583471394421,1770125.4933077197,734012.5617027931,0.38033,100000,0,779074,8133.824726984193,0,0.0,0,0.0,36583,381.2407341671713,0,0.0,36708,378.5575577874757,1492768,0,53568,0,0,0,0,0,76,0.79346850138857,0,0.0,1,0.0104403750182706,0,0.0,0.05832,0.153340520074672,0.3033264746227709,0.01769,0.3389913497633426,0.6610086502366574,24.283800323993518,4.263411678201914,0.3147462426486604,0.2424308429536048,0.2284905249401002,0.2143323894576345,11.152844477472444,5.792508303535084,18.929249486553065,11980.150667470478,52.24542059206759,13.41424985044691,16.397993659535665,11.6184983397691,10.814678742315913,0.5663254192986278,0.793351302785265,0.7072664359861591,0.559580552907531,0.1097560975609756,0.7474429583005507,0.9244851258581236,0.8707124010554089,0.757085020242915,0.1394230769230769,0.4969879518072289,0.7085798816568047,0.649155722326454,0.4987531172069825,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280285997852,0.0044490838333063,0.0068883658645457,0.0092716711349419,0.0116403192192344,0.0141978952510839,0.016385591277322,0.0183548953189405,0.0205253425147375,0.0223961530591364,0.0244342222540954,0.0263519753719856,0.0285702540491655,0.0304352748643947,0.0326724608992401,0.0346722301979942,0.0369849267025998,0.0389696580044382,0.0413735047442865,0.0433220515490757,0.0574964521245512,0.0719350722697513,0.0851846803870791,0.0978591022312842,0.1100381623057623,0.1260372731212803,0.1380012514715396,0.1488385950351667,0.1592909013242204,0.1689074729280583,0.181557778663192,0.1934618753582126,0.2050797375396515,0.2144160085635329,0.2245884705830641,0.2344714655573012,0.2437952949046716,0.2522374634585113,0.2595188676035251,0.2665536943105442,0.2734197993249179,0.280206166288773,0.2864953785341491,0.291189897077677,0.2957083211962326,0.3005046774987691,0.3045505105420369,0.3094303178173408,0.3133783678857054,0.3169998417638061,0.3156867758474519,0.3137209078536766,0.3118655045690711,0.3105329235031819,0.3091011469045431,0.3072046197561795,0.3056279517920043,0.3061150961318005,0.3070899723634378,0.3071975770532692,0.3087573102146821,0.3100222980839434,0.31076646531363,0.3116706741472971,0.3119954139397124,0.313418903150525,0.3156542847465282,0.3194617493147271,0.3243608866072358,0.3259445250892542,0.3272489043509691,0.3299758682194942,0.3308317310674192,0.3297856280193236,0.3308446103593094,0.33388684616297,0.3409194355939918,0.3403141361256545,0.3471346312037291,0.3574677786201668,0.0,2.725870891218096,55.024462588736114,173.27248743509307,244.20768939320345,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95860,45547,431.50427707072816,5756,58.56457333611517,4522,46.41143334028792,1831,18.64176924681828,77.3584022892406,79.64042165567,63.35300198276878,65.04157958548868,77.12550583798914,79.41373763748095,63.26600313217734,64.96002205401186,0.232896451251463,226.6840181890473,0.086998850591442,81.55753147681821,170.24634,119.80620075283728,177598.70644690172,124980.18567537978,420.86321,278.5595648019215,438289.7871896516,289841.42596650776,396.23854,193.4690135438078,408415.595660338,197992.80433008476,2616.66276,1211.9107041199402,2688325.0991028585,1223000.3649822047,1062.1598,472.3597110969335,1088764.8967243896,473492.5319183528,1793.29454,760.1904778057806,1827574.5670769876,755122.3242282177,0.38049,100000,0,773847,8072.66847485917,0,0.0,0,0.0,36339,378.2912580847069,0,0.0,36095,371.6983100354684,1498425,0,53757,0,0,0,0,0,95,0.9805967035259754,0,0.0,2,0.0208637596494888,0,0.0,0.05756,0.1512786144182501,0.3181028492008339,0.01831,0.3419611747137879,0.658038825286212,24.26587749985325,4.325061223971973,0.3210968597965501,0.2410437859354268,0.2111897390535161,0.2266696152145068,11.121754808513389,5.7632601639092975,19.604588831336976,11980.9258129618,51.28977985349951,13.003197005158128,16.337164604651505,10.74185830226418,11.207559941425693,0.5652366209641752,0.773394495412844,0.7258953168044077,0.562303664921466,0.1190243902439024,0.7326732673267327,0.9280205655526992,0.8920308483290489,0.7012987012987013,0.0886699507389162,0.5039274924471299,0.6875891583452212,0.665098777046096,0.5179558011049724,0.1265206812652068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023590397796879,0.0045191557487511,0.0071000395573632,0.0094122186233995,0.0119333197804431,0.0143192989955118,0.0163005827458331,0.0184303126115559,0.0207569708912326,0.0225723019045379,0.0247425424318735,0.0269937769758358,0.0289526117946716,0.0310044027486318,0.0330908116575291,0.0350118220395857,0.0370538946932864,0.0392181249093132,0.0411361512098868,0.0427083658457921,0.0568795479660557,0.0705233353880873,0.0841781166219839,0.096115679047349,0.1081849784051406,0.1232331128906167,0.1351328437139011,0.1464636260195455,0.1571076312165754,0.1673009508903206,0.1799825541950699,0.1924554020576176,0.2027789556084673,0.2126287251022148,0.22221855724511,0.2319098786061283,0.2417611830439292,0.2501742787110121,0.2582752909680786,0.2653033167210861,0.2718478059618589,0.2792264766784824,0.2854994196925555,0.2915977069391475,0.2967479180596924,0.302294313556186,0.3072557102226454,0.3123296048105587,0.3167345667799777,0.320795377923503,0.3182584307538799,0.3163043178749552,0.3157427250169186,0.3141861104280279,0.3126227751651884,0.3102697063606517,0.3079045866903508,0.3079971063102167,0.3081488830351339,0.3091834002677376,0.3101432986794043,0.3110391021714647,0.3120429161165943,0.3129639567122798,0.3143977671911842,0.3155402944695905,0.3160842739757186,0.32001378964523,0.3223368899772608,0.327424524195782,0.3309996817747874,0.3349360667864313,0.3352830188679245,0.3381405339061061,0.3384308510638298,0.3433857983900036,0.3451713395638629,0.3470636215334421,0.3515452538631347,0.3559710034338039,0.0,2.986573014422269,51.91643052259821,174.27902682026587,241.74720501653363,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95720,45996,436.0321771834517,5844,59.75762641036357,4609,47.419557041370666,1823,18.554116172168825,77.38965647392791,79.754444597388,63.34469261111818,65.09318214929058,77.15217806765504,79.52364062611021,63.25594143368562,65.01034781157004,0.2374784062728707,230.8039712777941,0.0887511774325631,82.83433772054138,170.742,120.05099446373448,178376.51483493522,125418.9244293089,423.16398,280.0286261874468,441355.0668616799,291822.97752655885,404.50358,197.1394991570089,418430.0355202674,202813.63243965423,2640.77972,1224.6355756284618,2718478.4788967823,1239186.7376202352,1091.21329,486.29999723143936,1122951.9954032595,491140.9130388758,1785.08036,759.024741416253,1819609.1099038864,753218.4343807653,0.38142,100000,0,776100,8108.023401587965,0,0.0,0,0.0,36584,381.4145424153782,0,0.0,36923,381.5503552026745,1495699,0,53705,0,0,0,0,0,67,0.6999582114500627,0,0.0,1,0.0104471374843292,0,0.0,0.05844,0.1532169262230611,0.3119438740588638,0.01823,0.3455858221201181,0.6544141778798819,24.24471462411675,4.274972917546431,0.3189412019960946,0.2488609242785854,0.2113256671729225,0.2208722065523974,11.119773682805617,5.886861084363533,19.52679802327796,12091.1244088055,52.40562097919272,13.732376568506464,16.648856507528837,10.857833582092267,11.166554321065146,0.5721414623562595,0.7820401046207498,0.7224489795918367,0.5780287474332649,0.1129666011787819,0.7418844022169437,0.9201995012468828,0.864406779661017,0.7573221757322176,0.1428571428571428,0.5080693365212193,0.707774798927614,0.6669820245979187,0.5197278911564626,0.1051980198019802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024613078356697,0.0046024553186744,0.0069921553902515,0.0092549322388605,0.0117183923830449,0.0139098203739155,0.0160173733954588,0.0183236185829054,0.0206578624580914,0.0228982629256958,0.0252260193935915,0.0274723582494071,0.0293497815471601,0.0314472532564485,0.0335932504074097,0.0356338231950559,0.037691304077702,0.0396514161220043,0.0416770599484493,0.0435430429074541,0.0580619564195996,0.0717194025476507,0.0853662375271491,0.0986869792105041,0.1115905182872153,0.1271748442573534,0.1387556762721215,0.1492400698199157,0.1600286242216454,0.1695197031125984,0.1822499353838201,0.1945577495266432,0.2059984557999934,0.2161284325412014,0.2257386519944979,0.2349221466699151,0.2439720741418151,0.2529245844898693,0.2615197968161821,0.2685812356979405,0.2755646009921713,0.2823695807179343,0.2887636067085062,0.2941803121708321,0.2999393203883495,0.3049025282317156,0.309304652326163,0.3135793677035379,0.3180712603824359,0.3218269560401888,0.3203276307295029,0.3186536689994638,0.3168507704214451,0.3151185285710161,0.3132172829987248,0.3109671306978805,0.3086747178151393,0.3092847565163358,0.3094247329177777,0.3107575380899954,0.3108286655377114,0.3114425514354772,0.3127159209157128,0.3135485878091598,0.314352648689998,0.3157129881925522,0.3167025739879805,0.3192109884596086,0.3211842705300453,0.3240321170204309,0.329086176188519,0.3304640718562874,0.3319871269009907,0.3342129071170084,0.3330859157543143,0.3405703555920666,0.3485696988042984,0.3512594962015194,0.3500272182906913,0.3551082415495632,0.0,2.676625270204371,54.71276065452267,173.94754003827293,247.1739136997545,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95762,46012,437.48042020843343,5777,59.01088114283328,4515,46.57379753973392,1749,17.87765501973643,77.34687979821054,79.707228905883,63.33382307926016,65.08159573321363,77.12405377569772,79.48751133785072,63.24997273560799,65.00193813893686,0.2228260225128195,219.71756803228004,0.0838503436521662,79.65759427676744,170.4758,119.9854693379467,178020.30032789626,125295.4923016924,425.58899,281.551245801684,443849.8569369896,293437.6431169816,403.00698,196.7373739832849,417773.8873457112,203009.138785,2590.48344,1204.8297713652385,2672227.48062906,1225250.9464769303,1081.12985,485.98119043575497,1105675.2365238825,484217.6130686002,1712.68526,731.7769889285352,1751038.198868027,729481.3303900402,0.38268,100000,0,774890,8091.831833086193,0,0.0,0,0.0,36798,383.6594891501848,0,0.0,36721,380.4222969445083,1495374,0,53709,0,0,0,0,0,80,0.824961884672417,0,0.0,0,0.0,0,0.0,0.05777,0.1509616389672833,0.3027522935779816,0.01749,0.3379116332947212,0.6620883667052788,24.17630600527088,4.260565400144782,0.3142857142857143,0.2425249169435216,0.2203765227021041,0.22281284606866,11.16769252935431,5.858284817975672,18.74132451715926,12044.664081388324,51.22681083438044,13.11757218196367,16.01110872381015,11.239520908041849,10.858609020564751,0.5714285714285714,0.7881278538812785,0.7145877378435518,0.5869346733668341,0.1182902584493041,0.7359238699444886,0.9130434782608696,0.8733850129198967,0.717741935483871,0.160377358490566,0.5076828518746158,0.7121879588839941,0.6550387596899225,0.5435073627844712,0.1070528967254408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482712496453,0.0045633391473654,0.006741116751269,0.0087909184223096,0.011353463009685,0.0134518645241441,0.0156794780303802,0.0177727416572239,0.0199037016591529,0.0219623823809475,0.0239911417322834,0.0259466896665023,0.0280231589555845,0.0301313417460726,0.0319211517622168,0.0342161301660154,0.0360156986196398,0.0382165605095541,0.0401671552423127,0.0421530547427393,0.0578866065464261,0.0718432586796656,0.0852643278042233,0.0983802987145394,0.1104459364032083,0.1257728036523889,0.1376868440580939,0.1488468041215188,0.1603614560662314,0.1702713414960739,0.1835511806788231,0.1956683850468501,0.2065728719647998,0.2163794421510167,0.225587782904856,0.2356573021897164,0.2446701752821016,0.2539120464049642,0.2617364365716101,0.2688603071707535,0.2759598250445488,0.2823044882295128,0.2884280793949508,0.29372984765124,0.2992122161125475,0.3035742848354352,0.3078856856982052,0.3115370925916509,0.3155402608155661,0.3190109658371995,0.3170899015440899,0.3151308461337477,0.3143821647091919,0.3126568404049727,0.3122942798683391,0.3097123291859007,0.3078381795195954,0.3081552665671788,0.3093657754193185,0.3102120834075922,0.3108858676341331,0.3118746423003296,0.3125810364297963,0.3133881490749843,0.3142898362547789,0.316581339462961,0.3177874186550976,0.3205099883232871,0.323843666526079,0.3263836390403056,0.3284271152351785,0.3307094989894692,0.331670980367401,0.3350296217530001,0.340510812826249,0.34005186232909,0.3440597834375477,0.3461931006327822,0.3462611607142857,0.3458676067371719,0.0,2.188134610458997,54.94176032962787,166.56782183719136,242.03647790709684,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95752,45944,436.2415406466706,5830,59.67499373381235,4591,47.35149135266104,1868,19.090985044698805,77.36211040614715,79.72506411951875,63.32787542470121,65.07603108991795,77.12227763465083,79.48807674338839,63.23820930665374,64.99036607521525,0.2398327714963244,236.98737613035803,0.0896661180474751,85.66501470269827,170.9081,120.29444470743891,178490.14119809508,125631.0377928805,424.83544,280.6731031864789,443077.00100259,292519.2442836482,400.90939,195.44071780171117,415841.2879104353,201798.60338222084,2659.66552,1222.9977115864526,2744648.759294845,1244268.8106634354,1067.57668,469.8515065290398,1101311.8054975353,477071.21093704936,1829.64944,776.9850121788603,1871955.405631214,776774.0680703203,0.38066,100000,0,776855,8113.188236277049,0,0.0,0,0.0,36752,383.1773748851199,0,0.0,36446,377.7466789205448,1491579,0,53566,0,0,0,0,0,69,0.7101679338290584,0,0.0,0,0.0,0,0.0,0.0583,0.1531550464981873,0.3204116638078902,0.01868,0.3358915741345525,0.6641084258654474,24.34067671625317,4.402769117535619,0.3195382269658026,0.2274014375952951,0.2274014375952951,0.225658897843607,11.087601006228942,5.676789706051304,19.988028956316597,11996.146467925382,52.00853397562203,12.661049763649316,16.395866568586168,11.542582904098468,11.409034739288092,0.55173164887824,0.7921455938697318,0.6809815950920245,0.5727969348659003,0.1052123552123552,0.7122835943940643,0.9007832898172324,0.8539944903581267,0.75,0.116591928251121,0.4940793368857312,0.7291981845688351,0.6240942028985508,0.51875,0.1020910209102091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0044111383779179,0.006781037458126,0.0091142790371582,0.0115965617211738,0.0136065506986597,0.0160198233842514,0.0182553295760842,0.0204087892761832,0.0221798967805357,0.0244277627368939,0.0264704069683834,0.0286413859797123,0.0307189744540967,0.0327687814141664,0.0346239338330317,0.0365841030526446,0.0387620223483394,0.0407584120747185,0.0428627973834423,0.0577673855404079,0.0718732018622168,0.0851668519411875,0.0978344324193565,0.1098887189494225,0.1252392989729975,0.1369538925077977,0.1473851198841616,0.1573475515284915,0.1670062410191519,0.1803200999504556,0.1922402597402597,0.203172427298541,0.2127713110449851,0.2219605080678891,0.2328949263720069,0.242185318785388,0.2506751282743721,0.2589945198951632,0.2662230570126211,0.2730671729039576,0.280344420136411,0.2862977212192956,0.2921979010494752,0.2975264845951987,0.3026685739653726,0.3074456759972446,0.3112865236488637,0.3156994818652849,0.3202417715839206,0.3190259285213735,0.3174032768828307,0.3159473773170319,0.3142910819833229,0.3134412594682905,0.3109508718749522,0.3088719377096917,0.3091481615114639,0.3097527706734868,0.3105653118654935,0.309917587038179,0.3101913837914468,0.3111245667515764,0.3113687026304057,0.3123652048885694,0.3139027431421446,0.3141560283687943,0.318110679854764,0.3211841921519341,0.3257492113564669,0.3281193490054249,0.3305254290828682,0.3332290362953692,0.3385761589403973,0.3398959881129272,0.3432273262661955,0.3483929654335961,0.3512651922693763,0.3636117869694512,0.3671274961597542,0.0,2.188427147048592,52.983194945056326,174.84361982086574,250.28908010028104,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95761,45575,431.0209793130816,5845,59.67982790488821,4542,46.85623583713621,1867,19.141404120675432,77.32840490063373,79.68657408309964,63.31625382636724,65.06382136042882,77.09453160622971,79.45510282383634,63.22969686648177,64.98068900345338,0.2338732944040202,231.47125926330148,0.0865569598854705,83.1323569754403,170.21268,119.7505355909428,177746.70272866826,125050.86323307065,422.23636,278.9753739537424,440344.6079301594,290744.4037019255,397.14402,193.59570503644863,410818.93463936256,199290.0275877275,2613.88292,1202.827853741571,2698629.2958511296,1225325.6673102942,1120.64569,492.8398717372729,1153892.8164910558,498296.26020746696,1831.5395,764.3522919014814,1878938.9417403743,768737.3996844855,0.37944,100000,0,773694,8079.39557857583,0,0.0,0,0.0,36523,380.7813201616525,0,0.0,36227,374.4217374505279,1497219,0,53749,0,0,0,0,0,69,0.7205438539697789,0,0.0,0,0.0,0,0.0,0.05845,0.1540427999156652,0.3194183062446535,0.01867,0.3381460213289581,0.6618539786710418,24.32069687663629,4.427227541250603,0.3095552619991193,0.2353588727432849,0.2278731836195508,0.2272126816380449,11.15791880687425,5.656489772887267,19.79948655974241,11977.141267866122,51.566823888871376,12.900302838226397,15.905634710864708,11.576798694061846,11.184087645718426,0.5598855129898723,0.7913938260056127,0.6813655761024182,0.5855072463768116,0.128875968992248,0.7393092105263158,0.9054726368159204,0.8467741935483871,0.7601626016260162,0.1683673469387755,0.4942874323511725,0.7226386806596702,0.6218568665377177,0.5310519645120405,0.1196172248803827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.0047871153573094,0.0070361044551841,0.0093294579158112,0.0116986429574169,0.0139239732724902,0.016091532060695,0.0182647935639318,0.0207017113414708,0.0229799168833295,0.0253908051868176,0.0275684333737191,0.0296585767174002,0.0316619973632168,0.0337956370090603,0.0359084613317346,0.038102434580987,0.0399066632097485,0.0421277966559632,0.0440755282918649,0.0584913734617833,0.0728748326639893,0.0859084188782518,0.0989215438950555,0.1105105105105105,0.1258508434448061,0.1373517996139897,0.1479991485738612,0.1576305220883534,0.167728237791932,0.18076558528284,0.1925340835317031,0.2039517348681848,0.2130568406776695,0.2226906945254791,0.233038315407025,0.2429265025950109,0.2518627737883528,0.2598412680390131,0.2667285499822372,0.2729724099620405,0.2789435515942639,0.2849175902244956,0.2904932746187351,0.2956087241957837,0.3011751069680267,0.3052403225199694,0.3099103001885734,0.3134541304037666,0.3174441788916324,0.3158008249534952,0.3138388677790627,0.3123554628010604,0.3113332948043691,0.3107497473095903,0.3077960491026957,0.3052458185504308,0.3058692043456108,0.3064783627130815,0.3067410107941954,0.3074343313223667,0.3087131684967217,0.3100601855721809,0.3105220811728947,0.3100298105587075,0.3117954859032098,0.3133792789200889,0.3166515013648772,0.3199244438225829,0.322695597085841,0.3249818445896877,0.3279025624802277,0.3276938444250218,0.3296296296296296,0.3353955755530559,0.3372216330858961,0.338470929345338,0.3398078102637497,0.3410227904391328,0.3413103177716751,0.0,2.1965197710999047,53.14743647843079,172.06314216324785,247.12044239953477,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95731,45661,434.9270351296863,5823,59.64630057139276,4594,47.41410828258349,1768,18.071471101315144,77.31464774318667,79.68068258501224,63.30648041847581,65.05601733437621,77.094447207237,79.46355761879775,63.225723976606325,64.97918947981498,0.2202005359496723,217.1249662144845,0.0807564418694823,76.82785456123042,170.37922,119.8946085244363,177977.0607222321,125241.153361436,421.57439,278.54038314894746,439741.72420637,290329.3010090226,401.24855,195.251643384714,415974.2612111019,201428.4414365768,2619.50372,1204.6620958002309,2704086.4087913004,1226285.5934929072,1068.44703,472.790028699185,1103646.4363685746,481447.72688190296,1728.67882,717.5842753226743,1768516.530695386,717453.2957950854,0.37986,100000,0,774451,8089.866396465095,0,0.0,0,0.0,36445,380.1067574766795,0,0.0,36608,379.2397447012984,1495972,0,53611,0,0,0,0,0,84,0.8565668383282323,0,0.0,2,0.0208918741055666,0,0.0,0.05823,0.1532933185910598,0.3036235617379357,0.01768,0.3399410222804718,0.6600589777195282,24.03372590137309,4.265105663257524,0.3232477144101001,0.2522855898998694,0.2115803221593382,0.2128863735306922,11.104251481184138,5.74412749269866,18.773850351863427,11980.27788214578,52.15884759815639,14.040970840997913,16.804938669541222,10.675534381764477,10.637403705852766,0.5750979538528516,0.8153580672993961,0.6983164983164983,0.5679012345679012,0.1104294478527607,0.7599351175993512,0.9232456140350878,0.8694516971279374,0.7285714285714285,0.1630434782608695,0.5072894971734603,0.7453769559032717,0.6388384754990926,0.5236220472440944,0.0982367758186398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0045219048777767,0.0069936458312186,0.0090946042068895,0.01109924207742,0.0132442234809894,0.0154150641189132,0.017326581037757,0.0192382393228793,0.021252200974571,0.0233049326894487,0.0253408904222112,0.0274331913843115,0.0295305609364052,0.0314409578860445,0.0333505634239636,0.0353218941896467,0.0371588668672823,0.0392005989269226,0.0411314267854352,0.0557046349179831,0.0700252258287365,0.0841306811028578,0.0967860673495572,0.1095316932226803,0.1246575197554241,0.1370954902938897,0.1480345811507176,0.1587391508828936,0.1681903045129723,0.1810879292684241,0.1926464375088019,0.2032349417274806,0.2134506448113776,0.2229705895321663,0.233151649034779,0.2424408462673883,0.2511838722770937,0.2595974528087332,0.2678700609735092,0.2742806797894785,0.2802586570451244,0.2864812334822645,0.2922661546769065,0.2977096452624668,0.302977988778593,0.3072159531613581,0.3112204674347041,0.316177516782864,0.3202276799831348,0.319096862687089,0.3175154904035061,0.3162050892944962,0.315230871283131,0.3137793347088423,0.3114824335904027,0.3082157098550541,0.3083995534248374,0.3090210148641722,0.3092638190058167,0.310335786654681,0.3114647292254842,0.3120705140255237,0.3128957460090966,0.3135011990407674,0.3142597402597402,0.3159212472971435,0.3191162644938891,0.3227969683210506,0.3258849120031639,0.3291501841495021,0.3304158709951199,0.3332069030912194,0.335580237456913,0.3376193627682707,0.3406789755807028,0.3453370267774699,0.3496503496503496,0.353594227033028,0.3558401241753977,0.0,2.22583197068772,53.936647438606656,172.97385353456514,250.63973901549983,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95813,46014,435.0662227463914,5872,60.07535511882521,4608,47.498773652844605,1820,18.630039764958827,77.3504688262772,79.68178099455585,63.33176974345843,65.05960932926325,77.11847538581236,79.45203548927014,63.24575272508718,64.97665253507382,0.2319934404648336,229.74550528570603,0.0860170183712512,82.95679418942825,171.43698,120.60563741630068,178928.72574702807,125876.0684002178,426.63778,282.81510988813983,444713.4104975317,294605.7432655422,409.11817,200.0727067816537,423117.8441338858,205765.29383742955,2668.63948,1243.3568195929147,2753467.9845114965,1265901.5139464445,1111.31049,506.0471859307127,1143527.0787888907,511837.3816445047,1786.63666,755.8304696876818,1831225.7000615783,761462.6525794689,0.38153,100000,0,779259,8133.123897592184,0,0.0,0,0.0,36842,383.9145001200255,0,0.0,37333,385.79315959212215,1486851,0,53506,0,0,0,0,0,62,0.6366568210994332,0,0.0,0,0.0,0,0.0,0.05872,0.1539066390585275,0.3099455040871934,0.0182,0.336963589076723,0.663036410923277,24.21302644691558,4.306717523258131,0.3263888888888889,0.2369791666666666,0.2120225694444444,0.224609375,11.340663345441929,5.937941894061534,19.599225067083363,12082.491123855074,52.8138806192467,13.191566555507722,17.129593506923506,10.990059770740384,11.502660786075088,0.5674913194444444,0.7967032967032966,0.699468085106383,0.5875127942681678,0.114975845410628,0.743549648162627,0.9138755980861244,0.8775,0.7634854771784232,0.1545454545454545,0.49984980474617,0.7240356083086054,0.634963768115942,0.529891304347826,0.1042944785276073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819174585165,0.0046845056426999,0.0069521973003146,0.0093474086341607,0.0115853286408853,0.0137907152023792,0.0160522155932894,0.0181153500531002,0.0204183877960001,0.0226439817374035,0.0245275473478051,0.0267700364532525,0.0293291924188356,0.0313291725885188,0.0336111053814896,0.0356777533244474,0.0380833091797441,0.0402335808820478,0.0420477219820419,0.0443893856900446,0.0598894220738577,0.074085690985509,0.0875729600016766,0.1003120305096498,0.1128634639696586,0.1288307900410026,0.1405988252507474,0.1512482581825531,0.161791707587856,0.1713400979331183,0.1836844483656474,0.1956871858617521,0.2071471243143431,0.217201245833561,0.2258238373883584,0.2359333975871581,0.2449473813429754,0.252759493670886,0.2603033674697427,0.2675898246457983,0.2740507574267165,0.2813420966459278,0.2875109438962637,0.2928392576884831,0.2987568506884106,0.303837900500703,0.3078638174211489,0.3111249824838533,0.3151618840241594,0.3195761883372526,0.3184123900491069,0.3171919177987725,0.3153332486270523,0.3125868457619268,0.3115319952985285,0.3090641436523392,0.3076666930944264,0.3074520376793963,0.3082078197391141,0.3087070768460754,0.3098855397988048,0.3108161491664691,0.3118041021347844,0.3127667657377818,0.3139752896495361,0.3141882211976765,0.3156159399693025,0.319788041262973,0.3218386792782102,0.3240762718569507,0.3251775134548414,0.3287526983625546,0.3297526854858856,0.3331576569793705,0.334513934197036,0.3369146327221768,0.3372673626872446,0.3424,0.3466738777717685,0.3411854103343465,0.0,2.272050705200279,55.934922473511854,179.4194894962567,241.78013624615028,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95717,45737,433.01607864851593,5805,59.39383808518863,4543,46.88822257279271,1771,18.178588965387547,77.30949638025908,79.66898936058618,63.31695901961641,65.05936262492482,77.08488683946051,79.44577145039986,63.23278784816839,64.9778956992157,0.2246095407985677,223.21791018632095,0.0841711714480268,81.4669257091225,170.797,120.15342565932194,178439.566639155,125529.8699910381,423.3177,279.8055508043447,441681.0911332365,291747.27666385775,398.19051,194.5762839657281,411714.23049197113,200074.0277843669,2606.81288,1207.966265149667,2691764.1380319064,1230324.043952137,1086.7991,482.0614993829172,1119541.2204728522,487743.733488217,1740.3043,737.2696199567642,1787458.7168423582,744224.0181805516,0.38166,100000,0,776350,8110.889392688864,0,0.0,0,0.0,36553,381.2802323516199,0,0.0,36346,375.51323171432455,1492373,0,53582,0,0,0,0,0,83,0.8566921236561948,0,0.0,2,0.020894929845273,0,0.0,0.05805,0.152098726615312,0.3050818260120586,0.01771,0.3353558543784847,0.6646441456215153,24.458738837939737,4.343199904746242,0.3196125907990315,0.2405899185560202,0.2168170812238609,0.2229804094210873,11.249595582793544,5.829319352741777,18.9685594343141,12088.253622391756,51.68804765872877,13.079477384120215,16.460544455068263,10.965688954888767,11.18233686465152,0.5661457186880916,0.7996340347666971,0.6873278236914601,0.5878172588832488,0.1194471865745311,0.7201946472019465,0.9307692307692308,0.8541114058355438,0.7130434782608696,0.1652542372881356,0.508761329305136,0.7268847795163584,0.6288372093023256,0.5496688741721855,0.1055341055341055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508562805724,0.0048860595247749,0.0072031490950409,0.0095677256845697,0.0119046408783612,0.0138935540016489,0.0161341283188095,0.0183633264262455,0.0207677527492743,0.0228838104205258,0.0250310068778892,0.0271269277368215,0.0293984575835475,0.0316162385944676,0.0337035776533316,0.0358932501265665,0.0378174742812196,0.0398141522250915,0.0419373278594813,0.0439171241367097,0.0583628332445725,0.0725013868101273,0.0864790593763438,0.0989905362776025,0.1107443768387974,0.1263418400262286,0.1387173447083041,0.1505115348173698,0.1606683118076253,0.1704108002616425,0.1834742795583086,0.195392343668803,0.206390318754149,0.2166152297152362,0.2257872715260955,0.2354395299855891,0.2447527451046099,0.2540919895010758,0.2626412950866231,0.2696121702644762,0.2760397369396072,0.2819966768856334,0.2880605321428994,0.2933464477203756,0.2982330351934668,0.302426268332696,0.3072648074901116,0.3119120062125243,0.3162123980973858,0.3191928002220195,0.3184116496999932,0.3173778891980495,0.3159342597164421,0.3143658469589857,0.3132307875397935,0.3111359906752757,0.3082001555283998,0.3081706173611225,0.3091092736205981,0.3101707657609279,0.3119717516246572,0.3131247025226082,0.3149672434066857,0.3150331779053085,0.3159926648006949,0.3163645846916156,0.3175070789119927,0.3201673008585176,0.3229122807017544,0.3254590060145615,0.3261274353967028,0.3270933870711142,0.3276317444346623,0.3308734023128423,0.3339601353892441,0.3355815879777541,0.3411764705882353,0.3438138015516537,0.3442802408319649,0.3428680396643783,0.0,2.2754292181956464,53.79266452811736,170.1323450276858,248.3181637924803,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95731,45615,431.9708349437486,5878,60.105921801715226,4624,47.68570264595586,1846,18.928037939643374,77.40440741590693,79.76163507011083,63.3594678928421,65.09923410920256,77.16959548842554,79.52917359600762,63.2718703036482,65.01529768563181,0.2348119274813882,232.4614741032036,0.0875975891938978,83.93642357074782,170.55896,119.90606344077464,178164.58618420365,125252.91564525227,423.81705,279.4620487642134,442069.8937648202,291279.25644620915,395.63988,192.02150281991476,409484.1796283336,197679.3125048432,2665.60684,1224.3219969409715,2750830.807157556,1245369.5905119258,1098.51933,491.1999011682778,1129096.5204583677,494742.6511100962,1814.4509,764.1320608440135,1862394.7728530988,769505.9365856112,0.38168,100000,0,775268,8098.390281100166,0,0.0,0,0.0,36658,382.2586205095528,0,0.0,36140,373.6929521262705,1500805,0,53763,0,0,0,0,0,74,0.7729993419059658,0,0.0,1,0.0104459370527833,0,0.0,0.05878,0.1540033535946342,0.3140523987750935,0.01846,0.3377022653721683,0.6622977346278317,24.48193307767044,4.344205616437485,0.3207179930795847,0.236159169550173,0.2158304498269896,0.2272923875432526,11.102239586964137,5.743913383755973,19.57004166134174,12022.14047895942,52.35814896067325,13.02038674871924,16.638496328673497,11.139009070080425,11.560256813200084,0.5553633217993079,0.7728937728937729,0.6911665542818611,0.5771543086172345,0.1170313986679353,0.7128630705394191,0.913978494623656,0.8513513513513513,0.7172131147540983,0.1324200913242009,0.4998537584088915,0.7,0.637915543575921,0.5318302387267905,0.1129807692307692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023388378709487,0.0046921712693184,0.0069186600929251,0.0090489006245874,0.0112147062113001,0.0132837947882736,0.0158267515923566,0.0182749507668132,0.020455288540134,0.0226863411239818,0.0247617095418673,0.0269726578536825,0.029269947669816,0.0312406653963022,0.0334523391873207,0.035416709740112,0.0375207125103562,0.0396593219635669,0.0415610060278528,0.0434551647275719,0.0578206078576723,0.071672997833799,0.0848499470277868,0.0982892952148632,0.1102830337848521,0.1254375297414476,0.1369809238865194,0.1482518524827527,0.159017094017094,0.1688811676264625,0.1816478190630048,0.1936908175964504,0.2048322527305165,0.2150114286339228,0.2245672722471032,0.2346700333344407,0.2439190395429795,0.2522402995311393,0.2598607362380639,0.2675662992594627,0.274320842144186,0.2808578199605412,0.2876151121605667,0.2931386721783491,0.298643575148359,0.3038483277222126,0.3084002447521884,0.3124992069836194,0.3158553905745642,0.3187837820066019,0.3172102883363969,0.3151496858107181,0.313631575251071,0.3121515522581574,0.3108726223077492,0.308652716088954,0.3064826802235624,0.306377200444997,0.3067349926793558,0.3069819579374399,0.3072867985194601,0.3081069341336281,0.3091559161143287,0.3108231673320101,0.3123605747319437,0.3132141276905859,0.3152800249794203,0.3178156055048747,0.3204903677758319,0.3236028042935794,0.3280718465097292,0.3332273449920508,0.3367199749137661,0.3411122897408698,0.3441691505216095,0.3496774193548387,0.349878197320341,0.3576598311218335,0.3673018503175918,0.3724029792238338,0.0,2.350476452363142,52.38771127491627,180.75100136411484,248.843040198975,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95764,45449,430.2034167328015,5677,58.23691575122176,4462,46.176016039430266,1760,18.07568606156802,77.33232137485312,79.69857240080096,63.31916690730778,65.07119456479064,77.1064734395214,79.47156304148638,63.23446561810705,64.98789009353757,0.2258479353317284,227.0093593145788,0.0847012892007299,83.30447125307217,170.46304,119.86310628176048,178002.1093521574,125164.2742922586,422.07408,279.4022907624277,440279.4682761789,291302.0917819344,391.1865,190.5175582306005,405965.63426757447,196968.9944962052,2593.14456,1191.761154909202,2684213.5666847667,1221192.970222986,1085.05912,481.9319141725679,1121973.9359258176,492644.7847808714,1739.44182,739.9611493963146,1787448.2060064324,749241.3813131754,0.37797,100000,0,774832,8091.004970552609,0,0.0,0,0.0,36508,380.7380644083372,0,0.0,35641,369.6900714255879,1497767,0,53730,0,0,0,0,0,75,0.7831753059604862,0,0.0,0,0.0,0,0.0,0.05677,0.1501971055903907,0.3100228994187071,0.0176,0.3452220726783311,0.654777927321669,24.578799973976334,4.354556149926569,0.3041237113402061,0.2389063200358583,0.2198565665620797,0.2371134020618556,11.010998449812872,5.6156603677473536,18.769984541758934,11917.64557368804,50.45586138989736,12.832121548581146,15.260479068249222,10.825736708030616,11.53752406503636,0.5486329000448229,0.798311444652908,0.6897568165070007,0.5535168195718655,0.1115311909262759,0.7230125523012553,0.92,0.8670520231213873,0.7079646017699115,0.1614349775784753,0.4848484848484848,0.7252252252252253,0.629080118694362,0.5072847682119205,0.0982035928143712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0046354055726298,0.007016083177646,0.00954345881779,0.0116993570440302,0.0139872250690192,0.0160214571265399,0.0182646070914455,0.0206124431266295,0.0226351351351351,0.0247572964827211,0.0269695911956142,0.0293161953727506,0.0311753316305512,0.0332518286958226,0.0353053040638306,0.0374515935306177,0.0394331420983286,0.0414536309598038,0.0434913923286016,0.057768591590463,0.0717230267012639,0.0851014735958886,0.0978202580360241,0.1097942872808173,0.1246628518240377,0.1365469091526431,0.1473565445081906,0.1576580906304401,0.1677693305739928,0.1796934742102598,0.1909492273730684,0.2019799825935596,0.2104877435162599,0.2202901102771235,0.2304582807274016,0.2397160904403723,0.2482331757821292,0.2563895950608316,0.2638650264586626,0.2711217073283644,0.2772200772200772,0.2829230769230769,0.2892822473364413,0.2946885134396521,0.2994799369022971,0.3042542542542542,0.3089861926920436,0.3137957810275656,0.3176448874123292,0.3158390399440326,0.3147921508230085,0.3134561524495799,0.3115312454899697,0.3105767089735025,0.3081406020558003,0.3056619905633491,0.3056821535132299,0.3060247123988069,0.3064780794064138,0.3069538969195868,0.3081685126582278,0.3085759805462968,0.3095072866065232,0.3107027599826598,0.3123370528730837,0.3118579437124726,0.3149425287356321,0.3191862504384427,0.3223317957690472,0.3243845838831505,0.3291577825159915,0.3313294943997975,0.3334602787721837,0.3403679148379867,0.3454290062039096,0.3458646616541353,0.3486802937090693,0.3518817204301075,0.3514328808446455,0.0,1.441258059044639,52.93023711325375,165.27427650859073,245.38892669048084,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95736,45793,434.64318542658975,5874,60.228127350213086,4592,47.48474972841982,1792,18.477897551600236,77.41699606751023,79.77107123462712,63.36600846061516,65.10087585946458,77.18982772052293,79.5425109816933,63.282123797773735,65.01844409541285,0.2271683469872982,228.56025293381776,0.0838846628414273,82.43176405173358,171.70802,120.72101638506976,179355.7491434779,126097.82776078983,425.97565,281.6779765910736,444485.79426756914,293761.22523509816,401.93776,196.0188046784235,416562.4947773043,202196.719702864,2619.98248,1212.456787398923,2709157.3075958886,1239210.7233519815,1067.71549,477.88110061556426,1097684.183588201,481676.8369505084,1747.15004,734.3620967040856,1801171.0119495278,745185.7095537076,0.38098,100000,0,780491,8152.534051976268,0,0.0,0,0.0,36895,384.8813403526364,0,0.0,36672,379.7735439124258,1490371,0,53533,0,0,0,0,0,69,0.7207320130358486,0,0.0,0,0.0,0,0.0,0.05874,0.1541813218541655,0.3050732039496084,0.01792,0.3350674687042757,0.6649325312957243,24.17746569143492,4.281316530936223,0.328397212543554,0.2354094076655052,0.2238675958188153,0.2123257839721254,11.12801827739211,5.868073584374376,19.1215923385912,11983.109104147676,52.21466346484712,12.972806368894936,17.00329082277937,11.544395148392926,10.69417112477988,0.5722996515679443,0.8011100832562442,0.6923076923076923,0.5914396887159533,0.1128205128205128,0.7384494909945184,0.9242053789731052,0.8611111111111112,0.7587548638132295,0.1348837209302325,0.5082956259426847,0.7261904761904762,0.6321942446043165,0.5356679636835279,0.106578947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023482256725844,0.0043663698345642,0.006643541058098,0.009047614212167,0.0112758256059866,0.0133349620309859,0.0153606229869123,0.0176262260280264,0.0198563150848722,0.0219957849937593,0.0242965179431475,0.0264891826429656,0.0285062244929428,0.0306069905872175,0.0325169703096952,0.0346694774260883,0.0364231211239607,0.0386139230003318,0.0408239622523852,0.0429197962351421,0.057322446593021,0.071346363103708,0.0846717932040159,0.097066958323255,0.109061570587863,0.1242438343415542,0.1364976665252439,0.1475540701634877,0.158409178310473,0.1679051264730165,0.1804724172085612,0.1930923329871928,0.2043533068179348,0.2140048925388782,0.2228617879034207,0.2323255788227745,0.2417893481628422,0.2497274944094213,0.2583351282719842,0.2664385991006968,0.2725486343092945,0.2791129701246655,0.2857564976893165,0.2913545082457694,0.2965160006793313,0.3017578846295886,0.3058936739233672,0.3104850494961432,0.3149388430606915,0.3196610035454917,0.318474592225046,0.3171971372446667,0.3160212753982102,0.3142877780988153,0.3123338925925376,0.3100230961011945,0.3083517524471108,0.3081162406580647,0.308553347849755,0.310003019913666,0.3104958985831469,0.3115530489122958,0.3120347006443809,0.3130651145224712,0.3156409213768029,0.317323161554829,0.3184973227186446,0.3217261068988112,0.3246481816915145,0.3279366580004727,0.3313636158599846,0.333227931488801,0.3349553933495539,0.3376061893203883,0.3383297644539614,0.3396710603056106,0.3433263031033444,0.3466719492868462,0.3495041543822031,0.3534002229654404,0.0,1.86725526501154,56.30223219671259,169.2581388363395,247.8341538689392,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95693,46053,438.4228731464162,5772,59.1892823926515,4472,46.12667593240885,1769,18.099547511312217,77.3508434030137,79.74347354093896,63.31502979323547,65.08372414614358,77.1335861687406,79.5283973114395,63.2341971612453,65.0066619171155,0.2172572342730916,215.0762294994593,0.0808326319901695,77.0622290280869,170.45072,119.97273415031157,178122.4540980009,125372.52897318672,422.85262,279.7650612109918,441280.91918949137,291753.2016040795,399.32915,194.44803501694736,413952.61931384745,200587.95494749263,2585.8844,1186.7418563616086,2668182.918290784,1206067.04394429,1065.65518,471.0891160529925,1095540.8859582206,474214.2853218023,1730.48086,723.9773079562734,1771875.4558849656,723665.6671701001,0.38189,100000,0,774776,8096.475186272768,0,0.0,0,0.0,36427,380.0382473117156,0,0.0,36244,375.3357089860282,1496417,0,53635,0,0,0,0,0,97,1.0136582613148295,0,0.0,1,0.0104500851681941,0,0.0,0.05772,0.1511429992929901,0.3064795564795565,0.01769,0.3342705921270261,0.6657294078729739,24.541402313695148,4.309202345659344,0.3177549194991055,0.2354651162790697,0.2229427549194991,0.2238372093023256,10.956763797488984,5.663298224547417,18.79846262094191,12025.549366821198,50.57480023001165,12.519728422234438,16.167625138679245,10.99829820196593,10.889148467132046,0.5608228980322003,0.7749287749287749,0.7065446868402533,0.5687061183550652,0.1208791208791208,0.7278056951423786,0.9051282051282052,0.8605263157894737,0.7130044843049327,0.1492537313432835,0.5,0.698340874811463,0.6503362151777138,0.5271317829457365,0.11375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0043909908630882,0.0065374737333644,0.0088625091470851,0.0110683838938737,0.0131007925673886,0.0153423986779422,0.0174540923667708,0.0194823125147012,0.0215993117715737,0.0236898779612347,0.0258214274709585,0.0277100626407874,0.0300641877620828,0.0319930647291941,0.0338970785866396,0.0359610861884978,0.0379170040065599,0.0399334269516825,0.0419568027352708,0.0563842232806885,0.0698616797378092,0.0834811634668878,0.0965681942515675,0.1096049369692494,0.1248558460382788,0.1367279134689891,0.1478290503626236,0.1582666139325074,0.1676700039704257,0.1810627290364302,0.1931478675037887,0.2050551100569053,0.215376871224722,0.224826341108995,0.234669327568047,0.2433775019256315,0.2531997523498621,0.2620372473313649,0.2694441260744986,0.2768484539782133,0.2830517800489353,0.2891828830642773,0.2945592344313998,0.2993777648145447,0.3039888602728247,0.308815068664482,0.3121907790143084,0.3164764935703382,0.3201546092554482,0.3183678965795852,0.3181068148066663,0.3164922055264787,0.3148615699796575,0.3131361016873824,0.3110262675626145,0.3088486073391018,0.3091126352490547,0.3093038319923633,0.3108026339206264,0.311105713538358,0.3121618165004033,0.3130210070023341,0.3133033847796113,0.3136560503457682,0.3139405252650955,0.3159112716599875,0.3185498941073875,0.3221399520283658,0.3242216565498335,0.3289816061013907,0.3308811938416268,0.3335823218176159,0.3376682292454256,0.338688585839716,0.3430967284752569,0.3470098410295231,0.3548642758074103,0.3574113856068743,0.3526275704493526,0.0,2.403641644741821,52.11296867370848,165.38071150185326,245.98030593895115,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95735,45531,432.8093173865357,5607,57.54426280879511,4411,45.61550112289132,1760,18.102052540868023,77.26691653433518,79.62665028054045,63.2951211478972,65.03899662371454,77.0391624169314,79.39826969246229,63.21066895878206,64.95661505380696,0.2277541174037765,228.38058807815287,0.0844521891151401,82.38156990758227,171.1325,120.51804917561716,178756.46315349665,125887.1355049012,421.07062,278.13645878562664,439336.7733848645,290035.0008541755,396.84222,192.84245554487745,411708.6540972477,199288.35960783265,2546.20292,1180.9159408742587,2634979.8506293413,1208879.2677965043,1053.06585,472.0853980467525,1090981.1876534184,484156.2203395313,1727.63088,731.2189882636063,1778642.1893769258,740850.6875020373,0.37878,100000,0,777875,8125.293779704392,0,0.0,0,0.0,36505,380.79072439546667,0,0.0,36154,374.7845615501123,1489965,0,53483,0,0,0,0,0,67,0.6998485402412911,0,0.0,1,0.0104455006006162,0,0.0,0.05607,0.1480278789798828,0.3138933476012128,0.0176,0.3441281745355377,0.6558718254644622,24.261178594680096,4.35950967010967,0.3164815234640671,0.2459759691679891,0.2131036046248016,0.2244389027431421,11.153919480119786,5.730687177950836,18.928429187259976,11928.128608234489,50.441032462011535,13.169550805912657,15.88222684444344,10.476426879041083,10.912827932614364,0.5522557243255498,0.7824884792626728,0.6898280802292264,0.5436170212765957,0.1141414141414141,0.7201283079390537,0.9439252336448598,0.8440860215053764,0.6805555555555556,0.1428571428571428,0.4860935524652339,0.6773211567732116,0.6337890625,0.5027624309392266,0.1054018445322793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0044307455210942,0.0066465072857896,0.0087565140541034,0.0111160832333258,0.0135318135073768,0.0156786788317447,0.0180479986933575,0.0203121965182012,0.0225188339338355,0.0245097536723627,0.0267340150301835,0.0288135244637311,0.0307346867307315,0.0328897142267615,0.0346281863099791,0.036503909283902,0.0380972142968304,0.0400203740085861,0.0418854713678419,0.0561356611811878,0.0703385040507442,0.0835222264198463,0.0961459549887945,0.1087057433430392,0.1242328042328042,0.1359568572914787,0.1465739419369954,0.1573550325595321,0.1674824499259354,0.1803227440792523,0.1924460431654676,0.2037393965132359,0.2139204327686461,0.2231870323639929,0.2332060560316121,0.242295822524376,0.2510337678726353,0.2588637577107024,0.2661324529123821,0.2717951091925423,0.2779513827932072,0.2842951526202373,0.2892688834794287,0.2947031941270844,0.3000098663114794,0.30514825676116,0.3093318045735397,0.3135822967065751,0.3182401587826662,0.3163086069450074,0.3147654621024869,0.3141932475020845,0.3127660806858003,0.3104999032061114,0.308220229687404,0.3055418777896024,0.3059742056628947,0.3055446053646413,0.3054521371804969,0.306127814606847,0.3077959652808054,0.3088560186841164,0.3092952312592526,0.3113177920038652,0.3130266394515099,0.3140663936069658,0.3174713661962918,0.3215921599261442,0.3233766756571796,0.3254231052244297,0.3295045891256508,0.3318325935320228,0.3337669293748565,0.3352197698547444,0.335349940688019,0.3390426670744762,0.3411479385610347,0.3480890844102282,0.3557951482479784,0.0,1.790772318988634,55.09738561457118,161.2185283948453,239.54836387244248,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95697,45574,433.19017315067344,5718,58.6538762970626,4464,45.9993521218011,1768,18.05699238220634,77.288290147924,79.65866011599536,63.294707477804174,65.04437602391991,77.06877698175606,79.44288379886751,63.21168435312497,64.96591934843165,0.2195131661679425,215.7763171278475,0.083023124679201,78.45667548825475,171.1105,120.35268685860872,178804.45573006468,125764.32579768304,422.86501,280.03198827957635,441249.2241136086,291993.7388628446,398.36566,194.1031920908384,412530.1106617762,199916.43010716117,2538.84448,1174.9130691022224,2617737.1913435115,1192476.826966595,1061.30661,476.4473786884316,1090368.444151854,479211.11287546216,1726.91802,733.3128656639788,1765179.1592212922,730971.9606210389,0.37796,100000,0,777775,8127.475260457485,0,0.0,0,0.0,36639,382.1854394599621,0,0.0,36197,374.6407933373042,1487374,0,53457,0,0,0,0,0,71,0.7105760891146012,0,0.0,1,0.0104496483693323,0,0.0,0.05718,0.1512858503545348,0.3091990206365862,0.01768,0.3352793994995829,0.664720600500417,24.260304386808727,4.344929672644179,0.3250448028673835,0.244847670250896,0.216173835125448,0.2139336917562724,11.197431647540116,5.836171485082615,18.90919754476277,11905.708778209251,50.72426105794151,13.089039421463877,16.56355343774473,10.592177841315449,10.47949035741746,0.5723566308243727,0.8014638609332113,0.6891798759476223,0.5844559585492228,0.1204188481675392,0.7275693311582382,0.93,0.828009828009828,0.6995305164319249,0.1650485436893204,0.5135886349598517,0.7272727272727273,0.6350574712643678,0.5518617021276596,0.1081441922563418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660529274146,0.0041970377429263,0.006504444534643,0.0087567809179381,0.0108209258807257,0.0131657994684804,0.0151403927326114,0.0173327208696983,0.0195855949788913,0.021870170806341,0.0240540318943959,0.0261034695134469,0.0280176845568579,0.0299591138940668,0.0319343159805671,0.0339086399338569,0.0359084272978597,0.0376201249507046,0.0396396958633673,0.0418990046380738,0.0564340923334029,0.070646995382344,0.0844904856366174,0.0971099604277174,0.1091569368494394,0.1248372033925224,0.1360001699072943,0.1468419706784862,0.1568271009549066,0.1664680046819797,0.1786084030713484,0.1904792858381002,0.2022282241728561,0.2123023693776551,0.221320233073017,0.2317457499223223,0.2408417945162589,0.2501268620530227,0.2584370661993946,0.2656651966188901,0.2732186561191467,0.2790356812025843,0.2846583696180905,0.2902772438977513,0.2954979968095081,0.299875227000383,0.3038543628374137,0.308202492251572,0.312816517335411,0.316881192703028,0.3157390800102491,0.3145512714435435,0.3130765210266842,0.311766750673503,0.3106207348690288,0.3082622568570902,0.304995562317738,0.3053169297481973,0.3053398556425957,0.3065827807467515,0.3068292682926829,0.3085997707781686,0.3104301165422989,0.3104048176647708,0.3132584915144696,0.3147543532338308,0.3152090715804394,0.3201578551741418,0.3221514111632467,0.3261472616311326,0.3298861047835991,0.3327677624602333,0.3340224268621186,0.3346969696969697,0.3368869936034115,0.3400256799346329,0.3417130814391088,0.347609561752988,0.3517722878625134,0.3596556886227545,0.0,2.563651097460108,53.3170868711042,164.08906989784668,243.79805398693017,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95835,45996,436.0411123284813,5800,59.35201126936924,4572,47.18526634319404,1787,18.281421192674912,77.36488025655099,79.68055445007565,63.35773544642036,65.07156093598216,77.13574901679108,79.45182287741422,63.27291331724868,64.98905824188486,0.2291312397599085,228.73157266143096,0.0848221291716768,82.50269409730038,170.9983,120.32670982538704,178429.9055668597,125556.12232001568,424.58518,280.7524459229773,442511.2328481244,292427.8279603545,397.50837,193.84863057195489,411286.1793707936,199573.07626993227,2629.31312,1208.3079052667608,2715497.511347629,1232762.9826913371,1066.53771,470.535208312449,1098431.4081494235,476547.9136701269,1753.17014,743.7473834983964,1795701.695622685,748188.7144297417,0.38381,100000,0,777265,8110.450253039078,0,0.0,0,0.0,36716,382.5637814994522,0,0.0,36220,374.5187040225388,1495872,0,53702,0,0,0,0,0,71,0.7408566807533783,0,0.0,1,0.0104346011373715,0,0.0,0.058,0.1511164378207967,0.308103448275862,0.01787,0.3387043735613285,0.6612956264386715,24.34743265959161,4.27002217522878,0.3215223097112861,0.2440944881889764,0.2117235345581802,0.2226596675415573,10.917943970723158,5.685957138984279,19.25439418637604,12077.964675522931,51.98981554386766,13.414360071980653,16.609543745670248,10.736377220357094,11.229534505859656,0.5535870516185477,0.7732974910394266,0.6884353741496598,0.5609504132231405,0.1110019646365422,0.7297734627831716,0.9193154034229828,0.8597402597402597,0.7522123893805309,0.1157407407407407,0.4883093525179856,0.6888260254596889,0.6276497695852534,0.5026954177897575,0.1097256857855361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.004308771645241,0.006585355954217,0.0088063218624304,0.011114387691807,0.013430130737588,0.015647617688434,0.017702186740715,0.0198110893032384,0.0220175034546292,0.0243409994670602,0.0262925637815315,0.0285723095265013,0.0308875142807151,0.0328821910465607,0.0353570285643497,0.0373703209524105,0.0393820713664055,0.0413041221057003,0.0430924166918091,0.0580431177446102,0.0726522079958191,0.0862114117511496,0.099144222187221,0.1111731255265374,0.1273955968533868,0.1388059069048073,0.15051397348811,0.1599317260507787,0.1702672307609918,0.1822631482696672,0.1939186925080799,0.2051254196043497,0.2152880152880152,0.2248579873204926,0.2348108753579602,0.2435566149116749,0.2522681338423534,0.2604225639167553,0.2680902626946204,0.2756486495848874,0.2817121712638177,0.2879878070393081,0.2935329928596203,0.2991685379620076,0.3040036441533499,0.3079096398344814,0.3124594955206811,0.3171491744139438,0.3212757272092809,0.3197843999085984,0.3183617372182518,0.3178271646667793,0.3155628756356912,0.3144742905561088,0.312285486638882,0.3099812930023146,0.3103414249062561,0.3108149772190058,0.3118400801746662,0.3126822568810791,0.3137753076617705,0.3148436186312426,0.3154800637242803,0.3174427554358283,0.317296648219693,0.3173681664247702,0.3198440398704524,0.322921790457452,0.3285930528999363,0.3328907609193297,0.3350785340314136,0.3360645325203252,0.3362240982348426,0.3390248529690761,0.3396293656450463,0.3462246777163904,0.3459580533496233,0.3497117760087839,0.347542242703533,0.0,1.9881227318859729,54.400131615827405,168.20488106543016,254.01466382885783,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95631,45410,431.2618293231274,5837,59.64593071284416,4623,47.6937394777844,1824,18.602754336982777,77.2563444549925,79.66757866651155,63.27473565930678,65.05626259654193,77.02368948130606,79.43865343292539,63.186750128724,64.97253582942176,0.2326549736864365,228.92523358615333,0.0879855305827774,83.72676712016869,169.76432,119.379867200578,177520.17651180056,124833.85847745814,420.33281,277.5561799117927,438864.4686346478,289566.0879577477,392.72057,191.38764510554324,407154.74061758217,197359.02420876245,2667.8406,1236.204199460052,2751709.341113237,1254753.3912811037,1122.15784,500.3641787408208,1151135.3013144273,501343.4483705305,1795.38502,768.5335137012023,1833087.868996455,766311.336862393,0.38001,100000,0,771656,8069.098932354571,0,0.0,0,0.0,36319,379.0925536698351,0,0.0,35870,371.5531574489444,1498695,0,53889,0,0,0,0,0,77,0.8051782371825036,0,0.0,0,0.0,0,0.0,0.05837,0.1536012210204994,0.312489292444749,0.01824,0.3397582489382554,0.6602417510617445,24.18754719729892,4.329161590269174,0.3188405797101449,0.2385896603936837,0.2147955872809863,0.2277741726151849,11.117396398854943,5.718959574840299,19.501054111940423,11972.493738404206,52.47615782321796,13.375758619138027,16.518374589483518,10.972885750945498,11.609138863650918,0.563054293748648,0.7896645512239348,0.6987788331071914,0.5820745216515609,0.1177587844254511,0.7221350078492935,0.9166666666666666,0.8920308483290489,0.7215189873417721,0.1166666666666666,0.5025380710659898,0.7151079136690648,0.6294930875576037,0.5383597883597884,0.1180811808118081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686990428925,0.0046217933774565,0.0067587452683708,0.0092347078723598,0.0114457218435242,0.0136609516824057,0.0157601599477721,0.0179921533368752,0.020068326412045,0.0222099289036408,0.0244417993761287,0.0266576232170016,0.0288976280678636,0.0308276025610623,0.0329321832549971,0.0347678521538477,0.0367486990234901,0.0390065028151164,0.0410401556695559,0.0428283839742988,0.0576062873625684,0.0716680285792109,0.0852055599882417,0.0983240693953175,0.1101812079828607,0.1254630511631845,0.1358420466004989,0.1468360901935305,0.1569388322322707,0.1668652263043221,0.1798772926753,0.1916124837451235,0.202490548770523,0.2127081209650017,0.2224808339308367,0.2324107073465898,0.2411975967509146,0.2495828823953824,0.2583017859781953,0.2657341854941423,0.2724162327043296,0.2787556139260544,0.2842923241191126,0.289556468073866,0.2943167841790572,0.2998406482773955,0.304809682071863,0.309417554954863,0.3138437982534677,0.3183013705872246,0.3176530915175559,0.3161140775694358,0.3149255630487339,0.3136967622142277,0.3131994389566982,0.3112072149716818,0.3085248402784399,0.3088952606947465,0.3104473507828209,0.311647278471923,0.3117027490437699,0.3129308460973041,0.3135332968743426,0.3144493668053877,0.3161883224673419,0.3178227887698444,0.3183855222219051,0.3216635708213959,0.3257663338588194,0.3284474903933764,0.331408565972538,0.3363578478191659,0.3409391742830129,0.3412174967781063,0.3412580943570767,0.3401759530791788,0.3458770614692654,0.3447933227344992,0.3555138180842501,0.3636363636363636,0.0,2.3578680200790934,55.61685195087984,167.77897184952718,254.3691043944097,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95695,45981,436.3864360729401,5745,58.8954490830242,4478,46.2302105648153,1772,18.130518835884843,77.32722884548278,79.70416053573503,63.32110870231941,65.07602074352651,77.1037558883684,79.48255461314112,63.23861397350439,64.99679642608648,0.2234729571143816,221.6059225939091,0.0824947288150284,79.22431744003688,170.90238,120.24490320005296,178590.4801713778,125654.11822523098,425.0328,281.9154849512425,443593.9495271436,294039.3553276716,402.99923,196.62685257743317,417672.0622812059,202812.273188514,2558.16504,1185.8059596602902,2642567.0306703597,1208565.9704397204,1022.47449,459.0874654217987,1054210.0841214273,465648.860452688,1729.70916,729.0577898966152,1771442.4369089296,730773.9355294039,0.38274,100000,0,776829,8117.749098698992,0,0.0,0,0.0,36787,383.83405611578456,0,0.0,36693,380.0094048800878,1489947,0,53530,0,0,0,0,0,79,0.8255394743717018,0,0.0,0,0.0,0,0.0,0.05745,0.1501018968490359,0.3084421235857267,0.01772,0.3491958215884596,0.6508041784115404,24.199071681837875,4.326172527748299,0.3050468959356855,0.2505582849486378,0.2288968289414917,0.2154979901741849,11.423527455604784,6.057432100005551,18.8644562684579,12033.635931803154,51.08716278525062,13.459871575008629,15.457587225967387,11.486565440817127,10.683138543457469,0.5634211701652524,0.7914438502673797,0.7027818448023426,0.5570731707317074,0.1077720207253886,0.7435897435897436,0.9456264775413712,0.8672086720867209,0.6809338521400778,0.1658291457286432,0.4938080495356037,0.698140200286123,0.641925777331996,0.515625,0.0926892950391645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0045808798937884,0.0067870548848534,0.009009009009009,0.0113279303647512,0.013460539847067,0.015581343177044,0.0177095993381879,0.0199619577444623,0.0221912730028366,0.0244077530509691,0.0265803933651722,0.0289749233712534,0.0310352289002689,0.0331176403810231,0.0349017580144777,0.0370569892361722,0.0391810801270737,0.0412211358435614,0.0431954636424282,0.0576678017088303,0.0721626826307196,0.0857415585369179,0.0982630377376355,0.1107876640087752,0.1260975351740188,0.1379723864203164,0.1495820688920832,0.1607675131675943,0.1711254612546125,0.1822656914807673,0.19382110652854,0.2050099524674505,0.2148895912854221,0.2238240926199018,0.2339034873930961,0.2431726616296329,0.2517182033947874,0.2601911117163739,0.2679015315532034,0.274409020397768,0.281102270067868,0.28757442678062,0.2926119000539277,0.2977446167306664,0.3028849710270003,0.3070893747026269,0.3110392586180559,0.314851998186411,0.318349241554121,0.3172583015382956,0.3161161574456372,0.3150136692877878,0.314267973950587,0.3120792903101178,0.309906897556636,0.3072976054732041,0.3070849373413056,0.3077736106375724,0.3081714000996512,0.3088694157433531,0.3096711875098565,0.31076646531363,0.3126045920074971,0.3137155908162038,0.31617128989327,0.3171337252439929,0.3205285512033978,0.3261509354635274,0.3281715306730196,0.3309556470050297,0.3363733333333333,0.339757361304183,0.3447219243143864,0.3493085811706762,0.3520674904942966,0.3566272461987406,0.3543610547667343,0.3602758620689655,0.3618497109826589,0.0,2.191279734535308,54.64773687506179,167.53981234507322,239.96656276417292,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95784,45881,434.7803390963,5903,60.448509145577546,4623,47.74283805228431,1769,18.144992900693225,77.38146625236273,79.70466399393861,63.35451413110488,65.06782003743953,77.1616145338152,79.486528114346,63.27254985972885,64.98902640517628,0.219851718547531,218.13587959260872,0.0819642713760302,78.79363226325609,169.367,119.2477065015498,176821.80739998328,124496.47801464732,420.90117,277.6813826230665,438930.6042762883,289406.89741821855,405.00733,196.24962508221435,419494.12219159777,202340.68786071503,2654.99116,1220.1486505013213,2742174.016537209,1244175.9067290162,1101.23261,490.3410056241769,1137868.715025474,500088.28783948993,1737.50632,731.9493621495037,1783068.8423953897,736651.9684456689,0.38208,100000,0,769850,8037.354881817422,0,0.0,0,0.0,36336,378.8315376263259,0,0.0,36851,381.4520170383362,1503280,0,53987,0,0,0,0,0,77,0.8038920905370416,0,0.0,1,0.0104401570199615,0,0.0,0.05903,0.1544964405360134,0.2996781297645265,0.01769,0.3323091849935317,0.6676908150064683,24.381061604273555,4.352385135323729,0.3155959333765953,0.2407527579493835,0.2199870214146658,0.2236642872593554,11.048938985555058,5.661363064821329,18.799664193496724,12097.995091120563,52.41620491994938,13.398619163410814,16.48628567714095,11.221149350033029,11.310150729364606,0.5749513303049968,0.8068283917340521,0.7210418094585332,0.5830875122910522,0.1112185686653771,0.7347266881028939,0.9234449760765552,0.8661417322834646,0.7244444444444444,0.1590909090909091,0.5161290322580645,0.7366906474820144,0.6697588126159555,0.5429292929292929,0.0982800982800982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084867262013,0.0044793060115934,0.0068471612176788,0.0089568608335364,0.0113272392650512,0.0134271229920394,0.0157065394651011,0.0181532464616985,0.0203821005312627,0.0225282370273367,0.0247203212719747,0.0269319161160586,0.0292476389160081,0.0314182477017943,0.0333518907996206,0.0354948312007518,0.0375536813783825,0.039873102761881,0.0416359348867166,0.0432306362775007,0.0576080150281778,0.071614678707085,0.0845875504745922,0.0971227937388964,0.1099339005028622,0.1253688407559781,0.1372931692829868,0.1489760292928002,0.1592028110948531,0.1698060615157005,0.1830629622054533,0.1952809887864009,0.207169885177453,0.2176599910310958,0.2274387694474396,0.2373471015777344,0.2471117461238796,0.2551788547445173,0.2629290280095825,0.2705599174737807,0.2770713177217242,0.2833606557377049,0.2889978329603183,0.2945004374243495,0.299419381483371,0.3041121541380245,0.3080117061457265,0.3116990439381611,0.3153608100583978,0.3194014107719691,0.3187774100680711,0.3179644339389275,0.316756985009501,0.3156997080334172,0.3150165727790247,0.3132847430636369,0.310533883174543,0.3106265245649362,0.310963036179894,0.3111881892564923,0.3110924369747899,0.3120130636656961,0.3132371667745235,0.3135946808273277,0.3139975081464443,0.3160176531671859,0.3166907657849224,0.3197412823397075,0.3221884498480243,0.3264966740576496,0.3305818857998095,0.332332174096322,0.335074951794489,0.3390506281501542,0.3402061855670103,0.3437573477545262,0.347904733192644,0.353704813261434,0.3540930106064727,0.3479420731707317,0.0,2.057298037631109,54.71790873843232,173.34985512035044,251.1096934461316,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95748,45123,428.11338095834896,5768,58.91506872206208,4512,46.45527843923632,1769,18.0787066048377,77.31912755708531,79.66873146194777,63.32066847763053,65.05816916435059,77.09488525878444,79.44891948468096,63.23638016865189,64.97857705889196,0.2242422983008651,219.811977266815,0.0842883089786497,79.59210545863016,170.96596,120.22288165223446,178558.25709153194,125561.76802881988,421.47938,278.0438267801783,439547.12369971175,289741.85025293304,387.51076,188.9619502285573,400694.3121527343,194188.87918334044,2578.82444,1184.614700902772,2657386.639929816,1201301.9714423667,1074.24682,477.6145948572116,1104858.1902494046,481859.7352268933,1725.06418,731.5947175709331,1764951.1008062833,731947.4871458855,0.37695,100000,0,777118,8116.284413251451,0,0.0,0,0.0,36488,380.3943685507791,0,0.0,35346,365.1355641893303,1496619,0,53761,0,0,0,0,0,82,0.8459706730166687,0,0.0,1,0.0104440823829218,0,0.0,0.05768,0.1530176415970288,0.3066920943134535,0.01769,0.3379560838699026,0.6620439161300974,24.464110718573284,4.27708646644045,0.3204787234042553,0.2422429078014184,0.2189716312056737,0.2183067375886525,11.223203950317677,5.919464342382164,18.939188457769298,11939.41875034747,51.06872056919477,13.106080927247024,16.23084585862534,10.977744790841191,10.754048992481234,0.5707003546099291,0.7913998170173834,0.6936376210235131,0.5759109311740891,0.1401015228426396,0.7435470441298918,0.9262899262899262,0.8579387186629527,0.7336244541484717,0.1941747572815534,0.5080036242826941,0.7113702623906706,0.6393744250229991,0.52832674571805,0.1258023106546855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024405310433523,0.0044994375703037,0.0069295077310174,0.0091714233480265,0.0113087429193235,0.01362622590205,0.0157328575070099,0.0177367969611567,0.0198666693932639,0.0221334971334971,0.0241974346617998,0.0263276789748223,0.0281900177923133,0.0303083373682638,0.0324817367617318,0.0345194662918445,0.0365964759715924,0.0384427870501955,0.0405361874577856,0.0424113652460109,0.0569415448851774,0.0705879891628398,0.0838131797824696,0.0966887138666021,0.1089277996226057,0.1241673187133884,0.1361327068506517,0.1465267727930535,0.157264135832132,0.1666595197255574,0.179428645266887,0.1917041814561509,0.2027864787261811,0.2131642247977258,0.2227148216191241,0.2324983943481053,0.2417257353351565,0.2500534470536608,0.2576423179522107,0.2659252811691138,0.273243024198217,0.2797944443794116,0.2859478479273046,0.290983065493693,0.2964841232198669,0.3007491884819985,0.3048212093116496,0.3092681062488056,0.3136385442192747,0.3167855256207079,0.3156837635640628,0.3148900425508475,0.3139406935078859,0.3120096123223023,0.3107320265326155,0.3090602483519852,0.3060376939781571,0.3061278133727616,0.3068106113663927,0.3083801280446367,0.309140037153097,0.3108677171269844,0.3123281922148778,0.3127954652387247,0.3134885288524037,0.314197740260418,0.3150392017106201,0.3190968187670759,0.3209175084175084,0.3228458498023715,0.3275588408688948,0.3317259286736262,0.3347169811320755,0.3391264578092842,0.3446912650602409,0.3427932171455488,0.3414968055978095,0.3399273314493338,0.3408157678620312,0.3308185590343266,0.0,2.5724929005851345,52.06961876027185,170.9871891147391,244.5251052549531,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95665,45677,434.68353107196987,5791,59.10207494904092,4587,47.195944180212194,1854,18.920190247216848,77.34181859432726,79.72518193467138,63.3271521787835,65.08590167599473,77.11284538927049,79.49832896347752,63.24200174254592,65.00424902139765,0.228973205056775,226.85297119386405,0.0851504362375763,81.65265459707882,170.26438,119.73580029074438,177979.80452621126,125161.55364108544,422.56976,279.37305800006845,440976.59541106987,291291.0238855052,401.42155,196.223389628251,414444.30042335234,201228.41887436868,2649.49368,1232.921348975374,2730209.460095124,1249446.0345741634,1081.76742,492.04917819524667,1110557.215282496,494116.9057532263,1805.5294,759.0874056126994,1845907.364239795,758644.1031448202,0.38038,100000,0,773929,8089.991114827784,0,0.0,0,0.0,36462,380.3585428317566,0,0.0,36683,378.2679140751581,1498014,0,53842,0,0,0,0,0,73,0.7630794961584696,0,0.0,1,0.0104531437829927,0,0.0,0.05791,0.1522424943477575,0.3201519599378346,0.01854,0.338035099229129,0.6619649007708709,24.07216977908461,4.364897416385146,0.3296272073250491,0.2343579681709178,0.2166993677785044,0.2193154567255286,11.30619404110204,5.818571466591278,19.8136405144012,11991.105533514226,52.38223611871192,12.957954937393106,17.202350382340676,11.138914358329716,11.083016440648422,0.5642031829082189,0.786046511627907,0.6944444444444444,0.5824949698189135,0.1133200795228628,0.7467282525019245,0.9377880184331796,0.8546365914786967,0.7603305785123967,0.1696428571428571,0.4920924574209245,0.6833073322932918,0.6370170709793351,0.5252659574468085,0.0971867007672634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0043382628703487,0.0067368079299534,0.0089069894984867,0.0110627567413673,0.0133175857294127,0.0155439358264787,0.0178332635791063,0.019838714623003,0.0221109848601173,0.0241981789844967,0.0261376824245909,0.0282707323848029,0.0300988180984471,0.0321508561520121,0.0341738896588816,0.0362472021885103,0.0383209784256317,0.0399675432756324,0.0420115505702312,0.0565868232197139,0.0707263189856453,0.0841117571737442,0.0976998190159518,0.1102261698805856,0.1257443860335727,0.1373562242689189,0.1480487960656575,0.1593354345851808,0.1687918923266663,0.1818377633222763,0.1931792370177279,0.2046697769512686,0.2144145522918329,0.223633843717001,0.2339737556060019,0.2432960239256341,0.2516869854694318,0.2602854743912678,0.2671414830760775,0.2743336224342295,0.279946683503455,0.2856754295715519,0.2907986631048073,0.2959634720940399,0.3011384638131145,0.3058058058058058,0.3101701602331589,0.3134846600331675,0.317137237819929,0.3158100317870804,0.3153722284157066,0.3140347909442048,0.3130854631664161,0.3110060649304317,0.3087269938650306,0.3073183862182532,0.3082553750205153,0.3094456974916273,0.3107589628281314,0.3119296933433059,0.3135792236496754,0.3145510447386584,0.3157506702412869,0.3167510984130033,0.316730989882132,0.3167208069755514,0.3218314949247352,0.3239401934916446,0.3280288900353189,0.3317095379012064,0.3353090601185436,0.3372252747252747,0.3405462661723538,0.3421738321235809,0.3503554502369668,0.3543127095397744,0.3567263221395536,0.3595132743362831,0.3625910310463779,0.0,2.87865290759113,56.18667091318631,170.3123981708451,244.41826895083685,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95692,45514,432.7529992057853,5766,59.18990093215734,4573,47.32893031810392,1884,19.343309785562013,77.38307130315455,79.75824423306881,63.34642469116329,65.09706464438787,77.15153166958004,79.52630539281967,63.26078402387529,65.01329582833783,0.2315396335745134,231.9388402491427,0.0856406672880041,83.76881605003916,171.13778,120.38070734380348,178842.30656690217,125800.17905760511,424.55053,280.61952771588057,443130.5333779208,292719.8383520886,396.26689,192.90726454473,410982.9766333654,199239.72265662413,2626.89524,1201.773236077022,2719430.464406638,1230150.269695505,1130.40761,496.582727063202,1169104.1779877106,506744.8554353574,1845.75862,773.7050058634941,1896572.419847009,782185.3343344216,0.37888,100000,0,777899,8129.195753041007,0,0.0,0,0.0,36707,383.125026125486,0,0.0,36133,374.5140659616269,1492930,0,53633,0,0,0,0,0,80,0.8255653555156126,0,0.0,0,0.0,0,0.0,0.05766,0.1521853885135135,0.3267429760665973,0.01884,0.3441783649876135,0.6558216350123864,24.09720567179941,4.449443547741345,0.3000218674830527,0.2444784605291931,0.2245790509512355,0.2309206210365187,11.283064413199618,5.833853691609596,20.03226981617938,11873.307972818837,51.68102306357685,13.316511394711943,15.563243923753095,11.281805816894348,11.519461928217464,0.5670238355565275,0.8014311270125224,0.7004373177842566,0.5890944498539435,0.1240530303030303,0.723404255319149,0.8967254408060453,0.8620689655172413,0.7566371681415929,0.1441441441441441,0.5099970158161743,0.7489597780859917,0.6391959798994975,0.5418227215980025,0.118705035971223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866110565583,0.0044171580248414,0.0067849210454255,0.0087838661196636,0.0109501296324538,0.0128872013599763,0.01497482109727,0.0171789035307086,0.0192981918166671,0.0215079080718636,0.0237038252150465,0.0256921054793395,0.027727211954789,0.0295926250193129,0.0318360946623475,0.0338580154407433,0.0359044481737004,0.038308251167618,0.0400690522987967,0.0420626980156745,0.057550875433538,0.0717329173689555,0.0845345250834015,0.0975617449452733,0.1089381352001012,0.1243339817320703,0.135854816824966,0.1471429634907637,0.1577161514740874,0.1672756104616901,0.1794571099658945,0.1908741958155376,0.2018912015651323,0.2118016088135,0.2204978166899479,0.2312430755594948,0.240430141147043,0.2488119636945114,0.2564600363306085,0.2642957802958261,0.2705770721716289,0.2768908448231466,0.2837348113408655,0.2891712256454554,0.2943136086760933,0.2995645791960133,0.3040625156539598,0.3082349645362978,0.3120219854294677,0.316000845487212,0.3148838774823291,0.3135057076055563,0.3126381750334436,0.311115606351775,0.3096560532256148,0.307421198608621,0.30474440995756,0.3049386971293515,0.3059260019149227,0.3067938276896699,0.3055581486529378,0.3055342271572854,0.3064721474338906,0.3081990563518205,0.3088744950883147,0.3106441415764108,0.311168934015895,0.3149078204448326,0.3191682366896937,0.3220898690883358,0.3247364372652821,0.3280806807437756,0.3330633100697906,0.3322806226032032,0.3362316159467209,0.341767723880597,0.3463553360275407,0.3452194357366771,0.3491724506139882,0.3585951940850277,0.0,1.771044366928824,53.91191213697081,170.13968603802374,250.08972222279957,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95704,46028,436.7947003260052,5733,58.82721725319736,4498,46.539329599598766,1777,18.264649335450976,77.3960056150407,79.78060227097363,63.35197710932333,65.11310924675603,77.18319289734458,79.56832833079724,63.27312493240488,65.03651227733593,0.2128127176961243,212.273940176388,0.0788521769184527,76.59696942009475,171.72232,120.87091528183232,179430.66120538328,126296.61799071336,426.54611,281.2302258975117,445219.2384853297,293380.35599087994,399.73234,194.3154958378844,414811.97233135503,200776.41633270084,2568.11452,1179.2385924513192,2658158.739446627,1207087.124623605,1053.46725,465.1927910947339,1088628.751149377,474089.01934995776,1731.29072,719.003515993921,1780927.8609044554,727574.784661455,0.38192,100000,0,780556,8155.93914569924,0,0.0,0,0.0,36864,384.69656440692137,0,0.0,36460,378.1033185655773,1493758,0,53486,0,0,0,0,0,75,0.783666304438686,0,0.0,1,0.0104488840591824,0,0.0,0.05733,0.1501099706744868,0.3099598813884528,0.01777,0.3381103149475087,0.6618896850524912,24.36253700262085,4.298021806521911,0.3134726545131169,0.245664739884393,0.2276567363272565,0.2132058692752334,11.465619483905671,6.092677021257243,18.841576826199844,12014.366818502183,50.91518537937843,13.219066530632023,15.789920433277254,11.474180208642544,10.43201820682661,0.5675855935971543,0.7909502262443439,0.6971631205673758,0.5634765625,0.1240875912408759,0.7379983726606998,0.9088729016786572,0.8836565096952909,0.712,0.154228855721393,0.5035178953808505,0.7194767441860465,0.6329837940896091,0.5155038759689923,0.1160949868073878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995026185965,0.0048467887489606,0.0072166622683258,0.0095707391414782,0.0116371330335889,0.0135523153993402,0.0157121445394944,0.0178970688827859,0.0199656504937741,0.0221601261028884,0.0246257945458273,0.0268796780188301,0.0289922145773554,0.0310253188026616,0.0331204407804455,0.035104403555923,0.0369576250996965,0.0390695550181127,0.0412775339559456,0.0432516935904116,0.0581040713584424,0.0719279151055947,0.0850543848792204,0.0981484791454195,0.1103603841005154,0.1259437852928113,0.1372045657062842,0.1482431583765314,0.158630634479812,0.1686757324868088,0.1804740418474925,0.1924765839624478,0.2045269323133428,0.2143606557377049,0.2230723567047028,0.233202368435615,0.2424151195852149,0.2510669841412462,0.2594773980903623,0.2662011109333211,0.273558336026594,0.2799257763721451,0.2864462809917355,0.2920518002128448,0.2978697622567433,0.302978179673678,0.3078054862842893,0.311788710617697,0.3157623205602775,0.3197376376876363,0.3185469271720327,0.3171456752239787,0.3143057700407132,0.3129096855055969,0.3123833506147237,0.3099858021769995,0.3072356683875653,0.3078081519070224,0.3080329767663691,0.3086380215283338,0.3093451314217443,0.3100796538499361,0.3115119451792297,0.3126068708223224,0.3141292390108576,0.3158563134978229,0.315993327867462,0.3193905643849331,0.3235930735930736,0.3297603037734356,0.3331665605385245,0.3352055955913522,0.3383600377002828,0.3411675511751327,0.3436061260922672,0.3485064011379801,0.3501293956462171,0.3540234532955923,0.3453848260750479,0.3528960490985807,0.0,1.7336900414371317,54.26356486462265,166.59034304793312,242.7510093092413,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95816,46160,436.1693245386992,5874,60.06303748851966,4626,47.64339984971195,1830,18.723386490773983,77.38566316619061,79.70479499872184,63.36611244363343,65.08322649738197,77.15997177227484,79.48144848655954,63.282163420489645,65.00274072972451,0.2256913939157669,223.34651216229415,0.0839490231437807,80.48576765746418,171.1457,120.4431040777335,178619.1241546297,125702.49653266,425.81139,282.1324027549522,443788.563496702,293835.5418249062,408.36485,199.55282675949616,421484.0110211238,204742.89483048324,2644.13576,1225.128611738765,2726337.146196877,1245366.1723916298,1097.49922,487.1642967353779,1131042.5398680803,494056.1041322725,1781.15656,745.6201354442863,1824607.226350505,749158.7922655034,0.38249,100000,0,777935,8119.051097937714,0,0.0,0,0.0,36787,383.2867162060616,0,0.0,37286,384.43474993738,1493267,0,53594,0,0,0,0,0,69,0.7201302496451532,0,0.0,1,0.0104366702847123,0,0.0,0.05874,0.1535726424220241,0.3115423901940756,0.0183,0.3286109754111708,0.6713890245888292,24.12914263890201,4.312244441217307,0.3197146562905317,0.2447038478166882,0.2213575443147427,0.2142239515780371,11.235554889333438,5.867090627081277,19.478873713225777,12100.109267126993,52.68986535295473,13.565774301557882,16.88410362010059,11.308489090737604,10.931498340558669,0.5711197578901859,0.7879858657243817,0.7018255578093306,0.57421875,0.1251261352169525,0.7384855581576893,0.9148418491484184,0.875,0.7137254901960784,0.1497584541062802,0.5070254110612855,0.7156726768377254,0.6358543417366946,0.5279583875162549,0.1186224489795918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025320814722534,0.0047646563871739,0.0072160030853234,0.0096214414890374,0.0118088612229952,0.0142449852357193,0.0165224393276865,0.018644759669354,0.0206962102939372,0.0228005362424143,0.0251491114800467,0.0275485486718397,0.0296402877697841,0.0319608852290272,0.0342964383674647,0.0361514228167122,0.0383349888254283,0.0406927932503446,0.042604226156482,0.0446409989594172,0.0593223874992176,0.0735707640362522,0.0874035720275029,0.0999579743643622,0.1123189550745246,0.1275982256020278,0.1393565064465892,0.1504432303735039,0.1616677688418627,0.1715041555993488,0.1833980363268773,0.1947177963813124,0.2061362081881249,0.2161710767618548,0.2249692469905983,0.2354885788205117,0.2444776152655089,0.2533835008704442,0.2612453415797283,0.2673654371506624,0.2748816260538168,0.2809604928476419,0.2873835912326051,0.292602196278992,0.2979040284790584,0.3037659164302992,0.307935993215181,0.3119247445422044,0.317593464878886,0.3210574773115875,0.3190440366479486,0.3173705310560711,0.3162104789619445,0.3148666589702147,0.3131650416277102,0.3103928500374944,0.3085972134262191,0.3091007619548082,0.3100256629597947,0.3106024053324756,0.3118704362478937,0.3129075603683358,0.3134848930537462,0.3133910158701695,0.3130837738034899,0.3137193285673135,0.3150485020173405,0.3178206583427923,0.3201452801579745,0.3237381389043935,0.3279265283743032,0.3319704773535815,0.3329974811083123,0.3350809209026669,0.3405359501792791,0.3442661913250148,0.3436973502833512,0.3454766241651487,0.3523443926514943,0.3589645984012181,0.0,2.509068702567756,55.69373580952948,172.59902761082785,249.56332705062755,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95766,45851,434.35039575632265,5824,59.48875383747885,4606,47.50120084372324,1822,18.6600672472485,77.37657405990127,79.72159985373851,63.3458979718325,65.07904381339213,77.14592857149538,79.49302252815949,63.259166022157736,64.99568310747568,0.2306454884058979,228.57732557902463,0.086731949674764,83.36070591644784,169.89346,119.53460934899684,177404.77831380657,124819.46551907444,425.00549,280.8887531580454,443228.7450660986,292740.32867410703,404.45355,196.91553246006927,418311.5823987637,202540.69189980207,2631.13112,1220.652274933075,2713656.5795793915,1240817.737958226,1086.11684,487.4301933041008,1118742.382473947,493586.6417142831,1781.34298,754.6901496220652,1825361.485287054,758514.9500672362,0.38293,100000,0,772243,8063.85355971848,0,0.0,0,0.0,36688,382.48438903159786,0,0.0,36897,381.3775243823486,1498523,0,53755,0,0,0,0,0,82,0.8458116659357182,0,0.0,0,0.0,0,0.0,0.05824,0.1520904603974616,0.3128434065934066,0.01822,0.3438324538258575,0.6561675461741425,24.329383246008323,4.302799164877664,0.3145896656534954,0.2457663916630482,0.2223187147199305,0.2173252279635258,11.361228374197584,5.967119703957816,19.41304743473132,12033.799781779748,52.33884770891392,13.57401810086454,16.368524742140767,11.363166155874708,11.033138710033896,0.5629613547546678,0.7932862190812721,0.6721877156659766,0.583984375,0.1228771228771228,0.7436708860759493,0.9290617848970252,0.841688654353562,0.7456140350877193,0.2045454545454545,0.4946140035906642,0.7079136690647482,0.6121495327102804,0.5376884422110553,0.0998719590268886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025625443127722,0.0049366947460187,0.0074778303131151,0.0097525295623552,0.0115633390285574,0.0140120772700888,0.0161923504399873,0.0183975170498631,0.02076283748556,0.0229908589327573,0.0252439324368645,0.0273862924831401,0.0294126718137985,0.0314315139031925,0.0334461271819419,0.0354843044228761,0.037442789984882,0.0397219772809793,0.0416887585898595,0.0435434653558149,0.0583127198338395,0.0725162099979083,0.0860590430662137,0.0985885889041858,0.1106520662289345,0.1264085921478255,0.1377193447489794,0.1491168333688018,0.1601610474491921,0.1695476869624895,0.182391969324889,0.1938366984786513,0.2043951261966927,0.2145920868347338,0.2235225471199577,0.2334729981378026,0.2426357281640127,0.2506752498424417,0.2588860138907803,0.2668361446059065,0.2742711707542804,0.2812912881312334,0.2876786833299833,0.2922793237224005,0.2977038988792695,0.3023568110978329,0.3066175092170218,0.3110806279530559,0.3151186090104065,0.3188264445381695,0.3172265520021499,0.316411883472743,0.3144078401597278,0.3133910533910534,0.3119226606171137,0.3101539684723942,0.3073614975967619,0.3077767582093465,0.3089181211717937,0.3094898831575947,0.3102396106327218,0.312051140399337,0.3139654054506285,0.314266622118276,0.3155080213903743,0.3145131914450746,0.314856379805097,0.3180879038317055,0.3218475330041671,0.3243103994927077,0.3249647518988493,0.329745493107105,0.3320368860171884,0.3346209194879951,0.3381804623415361,0.3386660392894953,0.3409607516290347,0.3448070035813768,0.3428958051420839,0.3542059600150886,0.0,2.3212022371987606,55.02685683042931,175.73324007707188,244.00133669749087,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95755,46018,436.5516161035977,5728,58.691452143491205,4430,45.71040676727064,1722,17.586549005273877,77.3313489084019,79.69802545665668,63.31030609897547,65.06342083813266,77.11487885306406,79.48419988689999,63.22957171653956,64.98629111075046,0.2164700553378509,213.8255697566933,0.0807343824359065,77.12972738220003,172.21842,121.23509443265222,179852.95807007467,126609.44538943366,423.43616,279.97938852668057,441648.57187614223,291833.52307284926,399.70356,194.67717222266128,414094.13607644505,200672.2452601153,2545.7936,1163.454770433959,2627032.8651245367,1183851.0906280898,1023.87793,449.7808843704245,1053773.2442170123,454239.7671132336,1686.01452,711.893651979361,1722875.1918959846,711839.1072123417,0.382,100000,0,782811,8175.134457730667,0,0.0,0,0.0,36624,381.89128505038906,0,0.0,36359,376.3563260404157,1485117,0,53235,0,0,0,0,0,78,0.8145788731658922,0,0.0,0,0.0,0,0.0,0.05728,0.1499476439790576,0.3006284916201117,0.01722,0.3458583834335337,0.6541416165664663,24.475915836533662,4.339684486715023,0.3167042889390519,0.2476297968397291,0.2144469525959368,0.2212189616252821,11.326429964932196,5.827969928299888,18.366512132088367,12039.448526462133,50.06422864388863,13.207792808374158,15.65702475640072,10.567825949185025,10.631585129928736,0.5525959367945824,0.7930720145852325,0.6678545972915182,0.5642105263157895,0.1071428571428571,0.7443478260869565,0.9218009478672986,0.8773006134969326,0.6891891891891891,0.1555555555555555,0.4853658536585366,0.7125925925925926,0.6044568245125348,0.5260989010989011,0.09625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.004502266343531,0.0068409033240294,0.0090530380004064,0.0112209810982929,0.0134330030247171,0.0158048760591816,0.0181238959739424,0.0203847845431578,0.0226662842862117,0.0246759107318674,0.0264858478450711,0.028517032005763,0.0303729889618353,0.032638989244204,0.0347655240163383,0.0370197783990887,0.0390179108814312,0.0409260067776876,0.0430394250299463,0.0580737431100718,0.0723412270696204,0.0856735237655648,0.0978926115212316,0.1106975665303024,0.1265812074290307,0.1369752536185746,0.1488128841217259,0.1600316344088319,0.1700449604584035,0.1830272460769098,0.1947780509199597,0.2052995993729315,0.2150277501067311,0.2232632390179456,0.2333658514954659,0.2430989815972842,0.2514857503039034,0.2596795424628932,0.2667911730332959,0.2743160038887088,0.2810663357295057,0.2880078675782314,0.2927505612042783,0.2985878832844789,0.304028310378417,0.3088146961657824,0.3128372187722691,0.3173712449132992,0.3207405257046342,0.3191612573060037,0.3176056531661579,0.315951653979823,0.3149639249639249,0.3132280150567592,0.3114841745081266,0.3083792184024107,0.3085936860710603,0.3086485011765508,0.3092423810880091,0.3098552078468005,0.3105793301925844,0.3115093039283252,0.31287905815198,0.312819405455985,0.3135597628211796,0.3138290321664821,0.3171015038774293,0.3201040531514746,0.3236019409752605,0.3267655624317437,0.330830645587691,0.3364661654135338,0.3371847152998036,0.3387320684868116,0.3372726219441548,0.3418116912092815,0.3461988304093567,0.3459286854709952,0.3514412416851441,0.0,2.095446966666871,50.304008726018026,166.1150447631815,247.1933011088,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95484,45883,437.3088685015291,5772,59.266473964224375,4464,46.10196472707469,1760,18.023962129780905,77.22623088476638,79.71479541077484,63.24095407219974,65.07674586440915,77.00127469112988,79.49116220036686,63.15725331560597,64.99605197113493,0.2249561936365012,223.6332104079821,0.083700756593771,80.69389327421561,169.59998,119.38236387124785,177621.36064680995,125028.65806967432,424.03283,281.1203254142402,443413.5876167735,293752.6844456811,403.40583,196.70679765338323,418220.46625612665,202655.5552638002,2569.72968,1188.4761526356588,2655917.933894684,1209929.537848004,1075.84877,482.9904965663241,1110023.8050353988,489125.77663935657,1733.21098,734.9719618872521,1777137.8241380756,738563.127524478,0.37984,100000,0,770909,8073.698211218634,0,0.0,0,0.0,36686,383.5302249591555,0,0.0,36703,380.2731347660341,1490162,0,53532,0,0,0,0,0,76,0.774998952704118,0,0.0,0,0.0,0,0.0,0.05772,0.1519587194608256,0.3049203049203049,0.0176,0.3402537485582468,0.6597462514417531,24.10926200620056,4.352692894106252,0.3194444444444444,0.2379032258064516,0.2188620071684587,0.2237903225806451,10.979690213131272,5.536116769267439,18.856441434644783,11946.998247894222,50.74380823116019,12.776262985806897,16.152120432405756,10.732768978644868,11.082655834302685,0.5582437275985663,0.768361581920904,0.6984572230014026,0.5875127942681678,0.1061061061061061,0.7171888230313294,0.9184210526315788,0.8637602179836512,0.7536231884057971,0.1101321585903083,0.5010660980810234,0.6847507331378299,0.6411709159584513,0.5428571428571428,0.1049222797927461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020773167147996,0.0043007698783815,0.0065790809592462,0.008795119471276,0.0110563609708421,0.0130153391428425,0.0150715823630853,0.0173298183230131,0.019499319672215,0.0216081637671359,0.0236594678929216,0.0259310288099693,0.0281524805898222,0.0299314114795523,0.0319580918136449,0.0343428068540663,0.0361721991701244,0.0382632377705245,0.0403500546960462,0.0423001420098571,0.0572239027811214,0.0712599540461427,0.0849273868739023,0.0977519682134839,0.1099052067591702,0.1251974095625722,0.1373422499122872,0.1485575281666097,0.1593158255505098,0.1691371693306532,0.181296020383926,0.1926289073515694,0.203720058003249,0.2134596200436303,0.2232912230374579,0.2340319139479064,0.2426588211604935,0.251783962934154,0.2594538651381259,0.2658381814635042,0.2731088539492602,0.2792816027948089,0.2848279216542299,0.2902737388545747,0.2958841667783885,0.3013618989893992,0.3063622312419105,0.3092396166134185,0.3135746312300994,0.3181415050632074,0.3165702858995838,0.3153105958256362,0.3129453262786596,0.3112791521478247,0.3104803298453478,0.3078705835405347,0.3057253059475246,0.3061244649324992,0.3069169452301363,0.30775290957923,0.3090202848511005,0.3093734534296743,0.3105075503355705,0.3103895813287386,0.3104715689336248,0.3108072916666666,0.3114483386954417,0.3147490493101606,0.3187341949985951,0.3218354304767197,0.3261037955073586,0.3266938602532182,0.3307673050444361,0.3361965039180229,0.3357037310676025,0.3341866418431464,0.3396169048342961,0.3390278625177954,0.3379083173208894,0.3298969072164948,0.0,2.486596454968681,51.35154950515208,169.69677346710498,245.31412521085437,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95711,45900,437.38964173397,5784,59.24083961091202,4536,46.81802509638391,1764,18.1065917188202,77.36399481233721,79.74879703431357,63.33329461681414,65.09750962023564,77.13694188064517,79.52211472298268,63.24889495207682,65.01533203386093,0.2270529316920431,226.68231133089023,0.0843996647373188,82.17758637471206,170.46898,119.98312220288344,178108.03355936098,125359.80420524646,428.0362,282.76023678867205,446672.6813009999,294886.6136480364,397.99348,193.89048590462903,412163.0847029077,199764.94171952896,2612.11464,1200.6330350235678,2699301.355121146,1224568.4561059526,1073.22575,477.764099517131,1107794.0362131835,485648.56653585314,1725.26332,729.9791148801661,1773133.2239763455,738174.3727749706,0.38215,100000,0,774859,8095.8197072436815,0,0.0,0,0.0,37097,387.00880776504266,0,0.0,36313,375.6621495961802,1495460,0,53698,0,0,0,0,0,65,0.6791277909540179,0,0.0,0,0.0,0,0.0,0.05784,0.1513541802956954,0.3049792531120332,0.01764,0.3339400959788184,0.6660599040211815,24.320007659972603,4.353988129997148,0.3141534391534391,0.2411816578483245,0.2246472663139329,0.2200176366843033,11.086390453832326,5.604976964533646,18.92288237159677,11991.981458276938,51.60757513044283,13.261796764371171,16.160685354043274,11.312583680316962,10.872509331711433,0.5570987654320988,0.7970749542961609,0.6933333333333334,0.5564278704612365,0.1002004008016032,0.7242733699921445,0.9181818181818182,0.8621621621621621,0.6772908366533864,0.1367924528301886,0.4918786392889978,0.7155963302752294,0.6341232227488152,0.5169270833333334,0.0903307888040712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100069908106,0.0044418753232529,0.0066291724193941,0.0086489013557737,0.0106738028856916,0.0128879108339955,0.0149842914847607,0.0169330541796456,0.0187886102360594,0.0210633025456183,0.0231558869073867,0.0251622709719825,0.0273094765426511,0.0292838742916022,0.0311883998142319,0.0334580946669699,0.0356132881693029,0.037491698489125,0.0393122947070807,0.0413623529656911,0.0562569838236369,0.0695386418822741,0.0833149750852347,0.0953457558677546,0.1081807545141194,0.1237061081212531,0.1353904883092094,0.1473842095185413,0.1584841206298372,0.1685189749965168,0.1808115698744229,0.1936572491671353,0.2054998586434117,0.2157986243999519,0.2253263966034955,0.2351332801983705,0.2445071490709553,0.2538370720188902,0.2621165365765112,0.2694751302157862,0.2765224229248098,0.2820416895612425,0.2882248520710059,0.2933788723111031,0.2986738560186534,0.3032411398172548,0.307288214031094,0.3119297532213383,0.3160357844658186,0.3194658448895737,0.3181946441288311,0.3164920279605037,0.3149098269633544,0.3131624868403974,0.3124175840457528,0.309205710102489,0.3072378371565414,0.3081806165244211,0.3085010615711253,0.3095741843719441,0.3100028019052956,0.3101648513973962,0.3107377647918188,0.3120060722418181,0.3137278390033541,0.3152808169219547,0.3162646313331245,0.3191449348044132,0.3228476240575136,0.3254543294928139,0.3277699668919225,0.330974759742317,0.3329554043839758,0.3376801647220315,0.3377383424579951,0.3390153772797711,0.3403959171048561,0.3451672481017853,0.35213627478358,0.3608610567514677,0.0,2.281119348426718,55.980266121112585,167.6562384072812,240.86675478705243,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95663,45446,431.5670635459896,5649,57.68165330378516,4436,45.6916467181669,1728,17.62436887824969,77.31725194233033,79.72498900676662,63.30264576078415,65.08491933077067,77.09325615196838,79.50695614956034,63.21842472872834,65.00624190500194,0.223995790361954,218.032857206282,0.0842210320558152,78.67742576873127,170.20476,119.73294951169731,177921.20255480174,125161.19033659548,422.77993,279.7522562077201,441295.6524466095,291783.6427957728,395.0768,192.0222404352966,409318.4094163888,197821.98083563236,2545.1994,1174.088400012516,2624545.8327671094,1191392.8798534705,1020.26422,453.26272745887866,1052817.0034391563,460166.7376735124,1687.74824,715.7835841668175,1724846.61781462,712926.3853243676,0.37879,100000,0,773658,8087.3273888546255,0,0.0,0,0.0,36617,382.09129966653774,0,0.0,35910,371.6692974295182,1498041,0,53739,0,0,0,0,0,77,0.8049088989473464,0,0.0,0,0.0,0,0.0,0.05649,0.1491327648565168,0.305894848645778,0.01728,0.3416906657631712,0.6583093342368287,24.35401450619879,4.327252597773109,0.31785392245266,0.2434625788999098,0.2233994589720468,0.2152840396753832,10.9838173598166,5.638631343875788,18.424461218639703,11868.86484260978,50.43942824199206,12.97024786965761,15.975088667257117,11.053905592081248,10.44018611299608,0.556131650135257,0.7805555555555556,0.6900709219858157,0.5630676084762866,0.0973821989528795,0.725473321858864,0.9020618556701032,0.8690807799442897,0.6785714285714286,0.1518324607329843,0.4960293219303604,0.7124277456647399,0.6289248334919124,0.529335071707953,0.0837696335078534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024618314810499,0.0046037621051564,0.0067284370338045,0.0089727565568189,0.0109070560105814,0.0128756239176937,0.0150368269642747,0.0174485125858123,0.0196844754557917,0.0216787730388189,0.0239663486200882,0.0261719311946402,0.0283693783647462,0.0301358846938985,0.0320998109953213,0.0343825014485555,0.0363555315972798,0.0383944334821892,0.0403379355550237,0.0424793336738629,0.0564604599166257,0.069910151423126,0.0833245847943393,0.0958638903210193,0.1086013904860371,0.1232828870779976,0.1351985310506596,0.1458164699867933,0.1559878159568214,0.1650860404239797,0.1775857983066548,0.1896251231367115,0.2007270669162784,0.2107222228304303,0.2202674715783907,0.2297827532697849,0.2386755499012354,0.2478879577029079,0.2556691207332706,0.2634784699403501,0.2703850247582026,0.2770657436209275,0.2834282197261117,0.2894516082642251,0.2945936095249666,0.2992331779964001,0.3034406798753395,0.3081265974085424,0.3124830200395875,0.3157721348847628,0.3151633284043554,0.3137448831011841,0.3128012704301755,0.311232584302074,0.3103837639472863,0.3084620571288464,0.3061505362736103,0.3059979334437683,0.3064384122220706,0.3080170279464937,0.3087643812552614,0.3103495896464646,0.3112661888595499,0.312136790344211,0.3136352686099735,0.3156232874924976,0.3161670509864207,0.3192009783938035,0.3233066891039124,0.3250148544266191,0.3281121937892723,0.3324315722469764,0.3344656224444863,0.3340182648401826,0.3383416283219081,0.3397292525014714,0.3438360354848577,0.3495771244462344,0.354389721627409,0.3506879880996653,0.0,2.714898067898824,50.27804830793444,171.56463713321045,242.0268189523406,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95857,45551,432.5505701200747,5787,59.23406741291716,4501,46.381589242308856,1745,17.818208372888783,77.4717338221379,79.75941386231563,63.40399372213196,65.09104197989123,77.25030461414343,79.54080917615345,63.320919573374375,65.01198921345467,0.2214292079944755,218.60468616218043,0.0830741487575821,79.05276643656123,171.74652,120.7868969227726,179169.5129202875,126007.38279183846,423.30386,279.57228368748065,441016.3889961088,291072.6432993736,393.29282,191.43367373564868,407053.17295554833,197159.2131443551,2565.16128,1183.3508727569122,2644368.048238522,1203024.4392049948,1011.15086,446.89145408160766,1039518.6580009806,450996.302473986,1700.7241,719.7799711456194,1737989.6929801684,718286.9645402118,0.38217,100000,0,780666,8144.0687691039775,0,0.0,0,0.0,36571,380.91114889888064,0,0.0,35952,371.8142649989046,1496238,0,53663,0,0,0,0,0,81,0.8450087108922666,0,0.0,0,0.0,0,0.0,0.05787,0.1514247586152759,0.301537929842751,0.01745,0.3418139765405584,0.6581860234594415,24.306415908843288,4.323342985541062,0.3179293490335481,0.2490557653854699,0.2212841590757609,0.211730726505221,11.607108226799031,6.17080545786629,18.58950116622128,11993.338534841469,50.77411054500149,13.393683635604678,15.946720928245169,11.060259856628694,10.373446124522957,0.5638746945123306,0.7939339875111507,0.6785464709993012,0.5652610441767069,0.1196222455403987,0.7232142857142857,0.9234338747099768,0.8425414364640884,0.6986899563318777,0.1333333333333333,0.5038237993270113,0.7130434782608696,0.6230121608980356,0.5254237288135594,0.1157469717362045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019333940682255,0.0042852367010768,0.0063984262507858,0.0085058871295168,0.010700349565076,0.0128399483146296,0.0149845163393366,0.0170952376095227,0.0194841002389559,0.0213122801276282,0.0234639846782535,0.0254653607507307,0.0275928665351742,0.0297561477518263,0.0318620376860594,0.0340251961999173,0.0359355766346342,0.0381191248561982,0.0399867091696346,0.0419402845278856,0.0565073671258303,0.0701360067742036,0.0833394468490939,0.0966196265512204,0.1085391434504421,0.1244554874180587,0.1365202914073021,0.1482494122152834,0.1585403610663307,0.1690335580540401,0.1812517487032692,0.1934591358104748,0.2045301539731144,0.2141242999530573,0.223529024181327,0.2341192205237037,0.2430024169924594,0.2508505788427636,0.2592978482446206,0.2669098143236074,0.2741715737212793,0.281356802090259,0.2874313713914634,0.2927403828906932,0.2978483407723656,0.3026097227861651,0.3069727360151869,0.3113844669561023,0.3151007014869456,0.3191058247700749,0.3186391049146418,0.3171600877192982,0.3158005529281333,0.3144266869974251,0.3127922116352015,0.3096914822266935,0.3081479614342429,0.3093635650810246,0.3091820266711968,0.3101949584005961,0.3119412991656734,0.3142666457286432,0.3157270400199787,0.3174430480927217,0.3181037771842808,0.3187850878327685,0.3202010788217684,0.3236053638654678,0.3262252021842814,0.3283809672752864,0.3304822891943934,0.3334032511798636,0.3334166146158651,0.3349514563106796,0.3358152686145146,0.3340448239060832,0.3342420112070271,0.3337988826815642,0.3369418132611637,0.3443484791588434,0.0,2.2228789015070647,53.58995717492909,163.3175454249503,246.01195929806244,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95735,45884,434.1672324646159,5797,59.19465190369249,4561,47.00475270277328,1780,18.175171045072336,77.34438518034166,79.69714830358805,63.33412346583962,65.07240657588528,77.11925058765507,79.47566548816779,63.25005866304385,64.99246614756923,0.2251345926865866,221.48281542025927,0.0840648027957655,79.94042831604986,170.6573,120.11871963562726,178259.63336292893,125469.58316975748,424.98648,281.0146007320548,443155.66929545096,292772.5375438565,402.3683,196.19928458416248,416512.7591789836,202067.47247387632,2637.42496,1217.6136795287614,2721278.069671489,1238398.5477350748,1085.9389,483.23948170591495,1118456.5310492506,489079.7214549285,1751.83682,744.2464444437337,1790942.4139551888,744047.6418474178,0.38139,100000,0,775715,8102.71060740586,0,0.0,0,0.0,36703,382.6918055047788,0,0.0,36681,379.3596908131822,1492996,0,53627,0,0,0,0,0,76,0.7834125450462214,0,0.0,1,0.0104455006006162,0,0.0,0.05797,0.1519966438553711,0.3070553734690357,0.0178,0.3393151135989463,0.6606848864010537,24.491496551752604,4.310459233292714,0.3174742381056786,0.2394211795658846,0.2177154132865599,0.2253891690418767,10.97610606152478,5.521390326621598,19.005743523504037,12073.265363600438,51.61421975368667,13.067969750253065,16.197784084344654,10.967439958683372,11.38102596040559,0.5531681648761236,0.7738095238095238,0.680939226519337,0.581067472306143,0.1118677042801556,0.7229894394800975,0.9047619047619048,0.8635097493036211,0.7555555555555555,0.13215859030837,0.4903903903903904,0.6919642857142857,0.620752984389348,0.5299479166666666,0.1061173533083645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0047448622671925,0.0070921985815602,0.0093639235042604,0.0116822905016572,0.0138649944519662,0.0162348912578218,0.018541762334813,0.0208131111360873,0.0229305228691292,0.0252172309205672,0.0275374367501103,0.0295602463525226,0.0315853432473069,0.0341145887061833,0.0363243667779304,0.0384328744436393,0.040487005579408,0.0425388181005633,0.0442902825953355,0.0594462540716612,0.0730880321486876,0.0866582756450597,0.0996519123786688,0.1115410976959983,0.1269879874799086,0.1386160666935364,0.1493488530450696,0.1596317340966377,0.1695792949652629,0.1816478997567119,0.1937410079724803,0.2050757888784986,0.2150728059818969,0.2248545440547288,0.2350870200611133,0.2446740840763762,0.2525669429480763,0.2608148122936591,0.2687679607982322,0.2760782318039347,0.2827853993427131,0.2878671382438874,0.2937290167865707,0.2983870967741935,0.3034555903608514,0.3081500970995427,0.3120055039559684,0.3153100624530306,0.3189902164010615,0.3172094400840076,0.3152928878925,0.3143915388623657,0.3131536372566014,0.3119698117692502,0.3100372430916364,0.3072948039184605,0.3074890012476197,0.3088237806440591,0.3103054320855424,0.3109975286452482,0.312170669613783,0.3130780498012136,0.3135576170783503,0.3149953071980362,0.3150752721779444,0.3162342096278593,0.3181232519405424,0.323315916821545,0.325614648290106,0.3292455829586229,0.3313019977743627,0.3339615529589144,0.3377064012666817,0.340028024287716,0.3405430821676267,0.3429966432712847,0.3459803117309269,0.3497509684560044,0.3480620155038759,0.0,2.355749723402909,53.599204152545134,166.0824155683776,253.45055472558332,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95672,45951,435.4356551551133,5911,60.66560749226524,4600,47.51651475875909,1774,18.16623463500293,77.28108161739658,79.66888776199178,63.29287913429015,65.05581157334737,77.05330844499939,79.44296857021534,63.20850420925406,64.97478225225113,0.2277731723971925,225.91919177644115,0.0843749250360943,81.0293210962385,170.36866,119.90213130320426,178075.77974747054,125326.25146668228,424.04284,280.80324768550594,442642.44502048666,292922.99490499403,405.92482,197.8192244759082,420688.445940296,203959.9551060045,2633.4122,1218.6461919084843,2721256.0832845555,1242704.4823510528,1120.19914,503.5021456339846,1155520.256710427,511023.62571019656,1738.6243,731.9292908154458,1781915.96287315,735144.6454614439,0.38154,100000,0,774403,8094.353624885024,0,0.0,0,0.0,36648,382.4420938205536,0,0.0,36995,383.13195083200935,1490749,0,53561,0,0,0,0,0,73,0.7630236641859688,0,0.0,0,0.0,0,0.0,0.05911,0.1549247785291188,0.3001184232786331,0.01774,0.3360310780187763,0.6639689219812237,24.457248961782685,4.232143958836765,0.3217391304347826,0.2426086956521739,0.22,0.2156521739130434,11.202848680094991,5.870789458847483,19.023057853366996,12062.304651096374,52.44718584599941,13.295023592219726,16.930590305561733,11.22040621495047,11.00116573326748,0.5647826086956522,0.7777777777777778,0.6885135135135135,0.5741106719367589,0.1310483870967742,0.7466666666666667,0.9146341463414634,0.8668280871670703,0.7563025210084033,0.1822429906542056,0.4950375939849624,0.6983002832861189,0.619493908153702,0.5180878552971576,0.1169665809768637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044708482446091,0.006697991617362,0.0089402728815109,0.0110754022333868,0.0134923221050059,0.0156106613373575,0.0177543186180422,0.0201993355481727,0.0222827255140789,0.0246280669735776,0.0266440782381025,0.0290627121084349,0.0311678944928133,0.0332848252159643,0.0354650261076358,0.0374368111378138,0.0396695244223942,0.0418170659398957,0.0440492818278471,0.0584867417514679,0.0724495031465639,0.0859671036748575,0.0991961617777029,0.1114241100630921,0.1264573326844544,0.1380833085643921,0.149052645032111,0.1598507446728892,0.1699630631791436,0.1820309550773877,0.1934284816368109,0.2047350423627295,0.2146439208128941,0.224481926648966,0.2340585978219886,0.2438926264500123,0.2531930709796589,0.2616288317767627,0.2692885398153987,0.2762223586512064,0.2831068416119962,0.2891694824826605,0.2950733060361907,0.2997773749711074,0.3047378161628624,0.3092988874411145,0.3124912379083134,0.3163164721141375,0.320088854804374,0.3180781736983418,0.3168206259478836,0.3148150765273675,0.3130162594556995,0.3116000357749754,0.3091389183131457,0.3077203608860418,0.3084618042415966,0.3088660923772499,0.3092105263157895,0.3100469483568075,0.3117952993488963,0.311153692278537,0.3123581874957877,0.3147812643428267,0.3153729628081905,0.3149635558096327,0.3174272549390898,0.3215326800828855,0.3258877206903392,0.3292716195325998,0.3315861922914019,0.3347361809045226,0.3378643709409454,0.3380268556508765,0.338100220904546,0.3391449363250455,0.343238930993219,0.3510895883777239,0.3575268817204301,0.0,2.1455172180473308,55.95995799311072,170.49106570036437,249.6167553462328,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95736,45645,433.5882008857692,5692,58.35840227291719,4443,45.92838639592212,1777,18.279435113228043,77.3612597271838,79.72586964406707,63.34108899169471,65.0885721044604,77.13466110683643,79.49755444844193,63.25778646513115,65.00655734680511,0.2265986203473744,228.31519562514305,0.083302526563564,82.01475765528699,170.33654,119.86671954742803,177923.18459095847,125205.48126872657,422.38,280.07772676682686,440737.3088493357,292097.0134190135,400.47678,195.30810361094703,414772.57249101694,201353.79896066964,2569.088,1196.8757221445144,2658504.763098521,1225175.3176908526,1082.18547,484.9311365510479,1118011.0198880257,494155.4864952031,1750.35448,735.3414285716103,1802605.456672516,747119.9368814303,0.37992,100000,0,774257,8087.417481407203,0,0.0,0,0.0,36553,381.3299072449235,0,0.0,36523,377.9560457925963,1496884,0,53730,0,0,0,0,0,69,0.7207320130358486,0,0.0,0,0.0,0,0.0,0.05692,0.1498210149505159,0.3121925509486999,0.01777,0.3413897280966767,0.6586102719033232,24.236755812977105,4.267741753197335,0.3238802610848525,0.2401530497411658,0.2063920774251632,0.2295746117488183,11.079262615918898,5.678866753072974,19.005679224589983,11942.368785550065,50.82873861252189,12.762373492034238,16.437883870106823,10.301089322138465,11.327391928242369,0.5698852126941256,0.7797563261480788,0.7171646977067407,0.5714285714285714,0.1411764705882353,0.7377952755905511,0.9037037037037036,0.8875305623471883,0.7568807339449541,0.180672268907563,0.5026788528206745,0.7039274924471299,0.6495145631067961,0.5135908440629471,0.129156010230179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.004866574742477,0.0070122384364027,0.0090317074905263,0.0115936133428251,0.0137980896519419,0.0157954846735871,0.0177056210752029,0.0199167748729641,0.0220413595413595,0.0241969384721068,0.0265190419456883,0.0287160077343975,0.0306273823014319,0.0325270370676133,0.0345405109224932,0.0363796406565525,0.0384164375032428,0.0405332335080276,0.042280522619767,0.0568734729676112,0.0708686141318568,0.0840929354381916,0.0971737393279219,0.109524361582159,0.1245243531202435,0.1356093940518475,0.1459758497792435,0.1562950543054561,0.1662111614846253,0.1790212500269123,0.1914083623542644,0.2023826345938542,0.2123169398907103,0.2216787213929254,0.2317863940158456,0.2414969399016755,0.2493961149123102,0.2585683198839423,0.2656718467489071,0.2730677640857281,0.2792504410201292,0.2848359444280224,0.2900557776554233,0.2961040850723284,0.3014069264069264,0.3057505433289201,0.3097480080820403,0.3136871797526008,0.316747572815534,0.3150121065375302,0.313857184061972,0.3127812781278127,0.3116483833718245,0.3112410752720094,0.3090116279069767,0.3066772026866851,0.3079267293639611,0.308779165885501,0.3092397410518431,0.3091596622924427,0.3097089491699808,0.3117704993608683,0.3136509923118183,0.3156489100620759,0.317128601656174,0.3180765602218474,0.321490604768672,0.3251786405716498,0.3287807597356056,0.3310872336550719,0.3337914266081717,0.3363596518690125,0.3419159409314654,0.3427505827505827,0.3431291877277536,0.3497798694398056,0.3520644511581067,0.3579212070410729,0.3562525130679533,0.0,1.9000606786533607,55.98934938540294,163.85452145175594,236.87231294498832,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95649,45551,432.52935211032,5786,59.2687848278602,4580,47.266568390678415,1801,18.452885027548643,77.2430810454354,79.64864753292001,63.27207635196621,65.0507439027979,77.01826882621835,79.42626807839422,63.18771525230919,64.97010548691917,0.2248122192170569,222.3794545257931,0.0843610996570234,80.6384158787381,170.95408,120.20390506958084,178730.65060795195,125671.88895814992,422.8663,279.4747696329472,441494.558228523,291581.06987726275,395.37628,192.6198676427746,409588.9240870265,198508.15381295857,2615.68188,1209.8857476278076,2700046.1269851224,1230474.744850201,1076.25777,479.71895973639766,1107613.6917270438,484000.49361045327,1756.49858,743.204645747224,1800554.9038672647,745399.5655860716,0.37937,100000,0,777064,8124.1204821796355,0,0.0,0,0.0,36543,381.4153833286287,0,0.0,36156,374.21196248784617,1491408,0,53560,0,0,0,0,0,67,0.7004777885811666,0,0.0,2,0.0209097847337661,0,0.0,0.05786,0.1525160133906213,0.3112685793294158,0.01801,0.3340513670256835,0.6659486329743165,24.08081297801825,4.257617520679971,0.3187772925764192,0.2412663755458515,0.2255458515283842,0.2144104803493449,11.08655581499441,5.8592750788088015,19.248389315874142,11986.507771687004,52.324830985669806,13.50971088750546,16.612551317804517,11.45929265154008,10.743276128819756,0.5580786026200873,0.7972850678733032,0.684931506849315,0.5353339787028074,0.1242362525458248,0.7375886524822695,0.920704845814978,0.8552631578947368,0.7030567685589519,0.1553398058252427,0.4892781636967683,0.7112135176651305,0.625,0.4875621890547263,0.1159793814432989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0045442557766822,0.0066292397185872,0.009286824698483,0.0117583635938278,0.0139009114517032,0.0162018863114963,0.0182363992811632,0.0204311191099476,0.0223341832816196,0.0244897959183673,0.0266390075583305,0.0287236340076308,0.0305043886759797,0.0327205540818117,0.0347744263718992,0.0366710174653489,0.0389325970979594,0.0406910827031693,0.0427661415598903,0.0571939138067968,0.0710828986235937,0.0844864876215274,0.0973568699276849,0.1093855574324324,0.1247062061956084,0.136464563833969,0.1467728522996225,0.1570100257867086,0.1668295616870912,0.1794608943370165,0.1916067692240977,0.2029126002091321,0.2134228481934572,0.2237335214496715,0.2342283368467768,0.243433925556537,0.2526236290058954,0.2614711232378354,0.2685726736851763,0.2749620426281568,0.2808979553598613,0.2882066588494474,0.2926881926785971,0.2977372262773722,0.3024823176527224,0.3068670334766315,0.3113654905160106,0.3149241529657552,0.3190352779393875,0.3168032565913625,0.3152227790934626,0.313601286627259,0.3122575976845152,0.3115608571981712,0.3094660938938324,0.3077619047619047,0.3084901466883983,0.3091077144275371,0.3083767477666183,0.3090450843568378,0.3095171920908441,0.3107063321988318,0.3108135387928134,0.3110639631603057,0.3115372524363408,0.3124264431495249,0.3161532634768337,0.3180055010931659,0.3198062992756233,0.3236659465919014,0.3269189651485995,0.3303577081354859,0.334636314861654,0.3374227294341417,0.3407274895646989,0.3394994559303591,0.3442991418062934,0.3470960638590696,0.348729792147806,0.0,2.368654575345577,55.4689240979376,171.8063466124924,247.13636858249063,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95821,45746,433.6418947829808,5860,60.04946723578339,4627,47.74527504409263,1822,18.711973367007232,77.44904619750217,79.77595533996121,63.38601454967061,65.1072549823941,77.22137762427161,79.54736211806855,63.3024417828727,65.0253535894302,0.2276685732305594,228.5932218926661,0.0835727667979142,81.90139296389987,171.44204,120.51122805013854,178919.06784525313,125767.03233126196,424.51448,280.5255216333846,442507.7905678296,292239.10378036613,401.01321,195.74831555230972,414337.1077321255,201139.45059929512,2648.17988,1227.1736165493485,2734517.0682835705,1251621.0267265402,1114.26267,495.405675509924,1149218.501163628,503415.12186892994,1782.0401,745.2451584323522,1831336.7633399777,753045.3867212794,0.38232,100000,0,779282,8132.684902056961,0,0.0,0,0.0,36756,383.0475574247816,0,0.0,36627,378.2260673547552,1498125,0,53696,0,0,0,0,0,71,0.7200926727961512,0,0.0,0,0.0,0,0.0,0.0586,0.1532747436702239,0.3109215017064846,0.01822,0.3385391247763136,0.6614608752236864,24.34461906879521,4.3667936300070425,0.3060298249405662,0.2554570996325913,0.2202290901231899,0.2182839853036524,11.367992998317629,5.867743803808334,19.32416189878597,12063.289870194145,52.52625911719068,14.185288597574615,15.967749227716864,11.30841994688796,11.064801345011244,0.5794251134644478,0.799492385786802,0.711864406779661,0.5888125613346418,0.1267326732673267,0.7380191693290735,0.8951965065502183,0.8661202185792349,0.7312775330396476,0.154228855721393,0.5205925925925926,0.738950276243094,0.6580952380952381,0.547979797979798,0.1199011124845488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.0048959484252886,0.0071332176595334,0.0094777582511351,0.0116741409642352,0.013969637420708,0.0160068513401914,0.0181365394625378,0.0203474706182933,0.0226028588677083,0.0247988932725316,0.0269499178981937,0.0289884868421052,0.0308770990558752,0.0328176567656765,0.0348885261483149,0.0368254362541141,0.0388739112401493,0.0408,0.0428898605038517,0.057602436785446,0.0718490250405144,0.0856232576662684,0.0989062943234469,0.1112281884852061,0.1265270321680686,0.1378678029339438,0.1489940878737612,0.1593326292657428,0.1687243679662487,0.1818426202714037,0.1937389951713782,0.2050633461074984,0.2155655950588184,0.2250787621985356,0.2350854313565129,0.2439784862421077,0.2530751964085297,0.2615536112463072,0.2693867294139148,0.275171657723155,0.2812554673011652,0.2875243319766413,0.2931294061417134,0.2980849594825393,0.3031639737052282,0.3083494419155702,0.3121703853955375,0.3158050945879681,0.319778601667061,0.3182732809272127,0.3170049369171695,0.3155531231142733,0.3142400598854116,0.3134482860607495,0.3116107607470371,0.3089561399367357,0.3088876193585244,0.3100176522506619,0.3104506742370475,0.3123032504423954,0.313102554536708,0.3137581794690118,0.3151002227171492,0.316157456182358,0.3171041051923176,0.3181277270924236,0.3209563994374121,0.3246989638756651,0.3269769829049705,0.3292765996094637,0.3341466001909409,0.3378149148708927,0.3391976946993251,0.3449575871819039,0.3494617295634686,0.3526082300749579,0.3566333808844508,0.3560022026431718,0.3554285714285714,0.0,2.166123521577706,54.600813233244814,176.2534668093838,248.591925660556,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95814,46068,437.2325547414784,5738,58.72836954933518,4522,46.68420063873756,1778,18.233243576095354,77.3497797498425,79.68189917468891,63.33168066437421,65.05937936370904,77.12622320814025,79.4603947276316,63.248476608167394,64.97941248322596,0.2235565417022513,221.5044470573133,0.0832040562068172,79.96688048308442,170.43312,119.89526652817771,177879.14083536854,125133.34849622993,420.75465,278.60920114900387,438645.4380361951,290289.8231458908,399.05782,194.1881559712376,413288.41296678985,200260.31704918423,2602.99304,1206.264076934987,2686575.6987496605,1228873.3871533454,1083.88098,483.6004440560988,1114760.3794852528,488282.8758547442,1742.75588,734.9033567022242,1787369.2571023025,738297.83476419,0.38362,100000,0,774696,8085.415492516752,0,0.0,0,0.0,36366,379.0260295990148,0,0.0,36386,376.5211764460309,1498022,0,53749,0,0,0,0,0,69,0.7201452814828732,0,0.0,0,0.0,0,0.0,0.05738,0.1495751003597309,0.3098640641338445,0.01778,0.3302279154882715,0.6697720845117285,24.25017560808019,4.36466992130105,0.3248562582927908,0.2390535161432994,0.2162759840778416,0.2198142414860681,11.19609754646222,5.765766107224899,18.88223139952134,12069.158954061491,51.67338838642145,13.063701879832523,16.66376310145066,11.087075239286708,10.858848165851551,0.5703228659885007,0.8066604995374653,0.7140912185159973,0.5644171779141104,0.1066398390342052,0.7315914489311164,0.9497607655502392,0.8668407310704961,0.6680161943319838,0.1395348837209302,0.5078244860386621,0.7164404223227753,0.6602209944751382,0.5294117647058824,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198330530623,0.0045322274833463,0.0066170052976637,0.0088591776813743,0.0109754857084731,0.0130339595743597,0.0153548123980424,0.0175882731235262,0.019920888825291,0.0218937757807142,0.0236901723201197,0.0259048205760049,0.0281939231916096,0.030253104598719,0.0321728815307648,0.0342009278680732,0.0363013415038092,0.0385118035099365,0.040956269675529,0.0428309665597801,0.0571911448661506,0.0710939623983102,0.0849099122705881,0.0982722744183113,0.1103814653582232,0.1259119842662888,0.1376139003511154,0.1486961149547631,0.1592373017144688,0.1690353859850475,0.1813098008792345,0.1932059218215661,0.2047382848192142,0.2146128704321115,0.2256971563720367,0.2349623851889604,0.244727621683144,0.2538265162676143,0.2624974471850961,0.2703188505352338,0.2766956602202276,0.2824811203853078,0.2882352245443471,0.2946374052656154,0.299623740745236,0.3047867625332414,0.3110183576811087,0.3147590169978514,0.3180965442289529,0.3214507170468488,0.3203862574241424,0.3196447015079529,0.3175860416607943,0.3159098475746565,0.3148183940173354,0.3124004411224114,0.310318628614844,0.3106311747136245,0.310472644039424,0.311877120914449,0.3128266611715779,0.3132263420033204,0.3138067432661518,0.3146709527636396,0.3147636992055301,0.3157620856533278,0.3167391242576649,0.3187411930483795,0.3218422889043963,0.3248986659320766,0.3256035146519317,0.328462918029328,0.3326213958163201,0.3356995649187085,0.3377427526034337,0.338779828376631,0.3427744784528704,0.3416683336667333,0.3402005963675792,0.3335895465026902,0.0,1.938466203939669,55.62835015610489,172.02170917040988,238.86496946355052,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95793,45892,435.3867192801144,5891,60.12965456766152,4600,47.37298132431388,1811,18.435585063626775,77.41775944651599,79.74423059878897,63.37436231324406,65.09431609678595,77.18633535826537,79.5184883286138,63.28645706309121,65.01168376808498,0.2314240882506197,225.742270175175,0.0879052501528505,82.63232870096715,170.68678,120.07465566628476,178182.9361226812,125348.04804764935,424.48587,281.44220203663235,442440.815090873,293115.0310915087,404.77926,197.4522145957324,418555.1136304323,203078.50250539067,2657.399,1236.533736701939,2736074.410447528,1252809.9386138625,1092.464,493.4277419538284,1122490.014928022,497177.29108721,1772.27288,755.9498483910004,1805329.115906173,750767.9561270081,0.38141,100000,0,775849,8099.224369212781,0,0.0,0,0.0,36604,381.42661781132233,0,0.0,36969,381.9068199137724,1496382,0,53730,0,0,0,0,0,80,0.835134091217521,0,0.0,1,0.010439176140219,0,0.0,0.05891,0.1544532130777903,0.3074180953997623,0.01811,0.3428155810570551,0.6571844189429449,24.35384881362681,4.250455378937266,0.3269565217391304,0.2365217391304347,0.2143478260869565,0.2221739130434782,11.209039517448636,5.983505010462378,19.41894517631116,11997.620873859612,52.549665776644815,13.284632723142192,17.010163438377827,11.044188665739192,11.21068094938561,0.5654347826086956,0.7922794117647058,0.6974734042553191,0.5892494929006086,0.1066536203522504,0.7314814814814815,0.9104477611940298,0.8971291866028708,0.721030042918455,0.1604938271604938,0.5003026634382567,0.7230320699708455,0.6206261510128913,0.548472775564409,0.0898587933247753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022478963942526,0.0047337637983639,0.0069101277511136,0.0090796449391643,0.0113987635239567,0.0137220570870149,0.0157170522882478,0.0179227565934514,0.0203193033381712,0.0224853645556146,0.0246004981600877,0.026597273548493,0.0286181268695839,0.0305145469145716,0.0326555443278134,0.0348798777086905,0.036707786562901,0.0389400348345359,0.0409727921544998,0.0428730570217905,0.0572817762567559,0.0704973392298926,0.0841283153370374,0.0966738806126951,0.1094538368357297,0.12541602831634,0.1368292812119286,0.1488400280689816,0.1592880694004289,0.169025401484878,0.1823246609376512,0.194183043962099,0.2059203596520757,0.2158644186249672,0.2244135582046915,0.2339691109439306,0.2437936838819713,0.2519880492407224,0.2593154859687085,0.2667642652087884,0.2733784689326894,0.2794922992491914,0.2850832122650981,0.2908357472887888,0.2958252427184466,0.30074132453267,0.3051764647070586,0.3098194202640708,0.3136306622011302,0.3166164017331525,0.3157944239166946,0.3151441845121918,0.3142567738668017,0.3127867055191714,0.3117804154302671,0.3092830812059287,0.307345971563981,0.3073748341767798,0.3085917554549477,0.3095005071445095,0.3108486864232594,0.3108668724563024,0.3126133828221115,0.3140444444444444,0.3158600862482031,0.3164248072479946,0.3171914893617021,0.3195092178158941,0.3238035396376584,0.3273983418870904,0.3321713147410358,0.3365542003273668,0.3418498340534786,0.3414652567975831,0.3442130932282873,0.351751064836725,0.3496072693670106,0.3534047282279248,0.3592862935928629,0.3603192702394527,0.0,2.4801552961967603,56.55229050940952,172.80241509930516,243.5781666502305,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95712,45126,428.2848545636911,5821,59.47007689735874,4601,47.39217652958877,1829,18.618355065195587,77.3893283971574,79.74894782023156,63.35181630130408,65.09310325775203,77.15721544487407,79.52157174332184,63.2661163177948,65.01211907685199,0.2321129522833303,227.37607690972084,0.0856999835092793,80.984180900046,171.31356,120.48444600030452,178988.59077231694,125882.27808457092,421.98431,278.3839343623071,440167.0323470411,290133.20624614164,395.18232,192.7479826884047,408704.5511534604,198162.81975911357,2655.489,1225.1876970857647,2739802.2818455365,1245421.950315284,1106.11819,497.3100212554536,1139989.7818455363,503907.6177397751,1780.77236,744.2031773721307,1817327.6496155127,743296.336180705,0.37772,100000,0,778698,8135.845035105315,0,0.0,0,0.0,36540,381.08074222668,0,0.0,36125,373.2133901705115,1497125,0,53706,0,0,0,0,0,63,0.6477766633233032,0,0.0,0,0.0,0,0.0,0.05821,0.1541088637085672,0.3142071808967531,0.01829,0.3379569190600522,0.6620430809399478,24.12414573727946,4.333600098185641,0.3168876331232341,0.2369050206476853,0.2240817213649206,0.2221256248641599,11.268943612508725,5.93677309473621,19.32652697126296,11927.695511292408,52.06982682925719,13.235642237607513,16.32618016579574,11.5341628377598,10.973841588094135,0.5668332971093241,0.7990825688073394,0.7016460905349794,0.5829291949563531,0.1105675146771037,0.7582938388625592,0.931350114416476,0.896457765667575,0.7290076335877863,0.165,0.4941529235382308,0.7105666156202144,0.6361136571952337,0.5331599479843954,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471181016235,0.0044695794946638,0.0069991783573232,0.0093214057248459,0.011406612175186,0.0137511959774443,0.0157651231045165,0.0177445358257994,0.0197921669204123,0.0219484492832219,0.0240188543908187,0.0262140006361127,0.0285141800246609,0.030488934637159,0.0323106275460217,0.0345262331166616,0.0366190767064572,0.0387328326625451,0.0405691952684863,0.0423468377902555,0.0565255529333138,0.070059228563655,0.0840561773004268,0.0962790061928944,0.1080705009276437,0.1228307653260858,0.1348728175318751,0.1459125121096952,0.156099437007916,0.1661376796054042,0.1786787271846228,0.1902217414818821,0.2013218540742673,0.2120105409335943,0.2220425138632162,0.2322194038612775,0.2414258769433377,0.2508604206500956,0.2584078427812826,0.2658129252479897,0.272273163511904,0.2792388433036444,0.2854474524175434,0.2907284371820195,0.2962733748346621,0.3012811834639952,0.3063562130325501,0.3106555501893698,0.3145507711417037,0.3178721553848384,0.3163480527157193,0.3150065926821228,0.3135164742563411,0.3117666584883603,0.3109055602496257,0.3078766966425943,0.3061214835372776,0.3063672615545532,0.3062057702776266,0.3075690971542473,0.3087944110285052,0.3099702292935865,0.3099502071216369,0.3106135024111448,0.3120255597194196,0.3123183139534883,0.3138729636146903,0.3179017172886234,0.3233137829912023,0.3266416880299743,0.3309744148067501,0.3338110403397027,0.3362302411990679,0.3386656557998483,0.3423846659776379,0.3469026548672566,0.3475952055833712,0.3602808425275827,0.3557103064066852,0.3536490683229814,0.0,2.6377944032038387,54.76789009771374,168.85439384683673,249.4916687284005,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95660,45478,431.1206355843613,5749,58.71837758728832,4501,46.341208446581646,1774,18.06397658373406,77.35982293729873,79.73383050415187,63.33991942654043,65.08908950264714,77.13780634268949,79.51633274734235,63.256456252215365,65.01000153794828,0.2220165946092436,217.49775680952155,0.0834631743250682,79.08796469885715,170.49098,119.87679885054702,178225.98787371942,125315.49116720364,421.84316,278.8167576651912,440286.8910725486,290771.5217072873,396.52388,193.36661254792432,409485.5425465189,198285.0918200308,2585.63504,1197.5624324780465,2664198.452853857,1213150.3580159384,1076.81788,475.7471122399545,1107679.646665273,479338.8900689466,1743.1641,735.5598653893996,1778099.9790926196,733676.8273694373,0.37958,100000,0,774959,8101.181266987247,0,0.0,0,0.0,36505,380.8906544010036,0,0.0,36124,372.6740539410412,1498378,0,53759,0,0,0,0,0,79,0.8153878319046624,0,0.0,3,0.0313610704578716,0,0.0,0.05749,0.1514568733863744,0.3085754044181596,0.01774,0.3307984790874524,0.6692015209125475,24.57353417642647,4.3167537044992015,0.3183736947345034,0.2390579871139746,0.2157298378138191,0.2268384803377027,11.259491388362344,5.9408367584710255,18.84241227532118,12012.1161701512,50.92321123269719,12.975621450541892,16.202973122192265,10.511378032326258,11.233238627636764,0.5594312375027771,0.7881040892193308,0.7076064200976971,0.568486096807415,0.1018609206660137,0.7142857142857143,0.9127358490566038,0.875,0.69,0.0978723404255319,0.4987631416202844,0.7070552147239264,0.6409756097560976,0.5369649805447471,0.1030534351145038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506825454692,0.0047232442403786,0.0070106021407193,0.0091710507606995,0.0114486741499918,0.0138124077561199,0.0160588552970786,0.0184263151450842,0.0206132913849108,0.0228844422620509,0.0250783699059561,0.0270736086175942,0.0290254280839517,0.0310949115545396,0.0330379890457869,0.0353160043408609,0.0373825003105718,0.0391847741533993,0.0414708695471368,0.0434166371386289,0.0578353531132469,0.0714547491649302,0.0851351918716936,0.0980796548639974,0.1098875598590806,0.1252275132275132,0.1374039318924886,0.1482972762811704,0.1593294990485557,0.1694824292123736,0.1822413793103448,0.194011262724713,0.2048447123860099,0.2146570499841303,0.2252722447945914,0.2349996123215294,0.2442386027565426,0.252776778487274,0.2604756126603236,0.2671405352196506,0.2739361702127659,0.2809898026008046,0.2862382281955421,0.291945625486556,0.2967644882262311,0.3014657920322942,0.3063994101695762,0.3113341804320203,0.3150334234106101,0.3190364432255683,0.317141359426874,0.3155102265229821,0.3141984173917941,0.3127822586463127,0.3115864686175101,0.3088340951128911,0.3063496078927397,0.3063849333945797,0.3069535348702086,0.3076058047587598,0.3093005409250005,0.3101508212255212,0.311012496598497,0.3119251718903473,0.3125554622856457,0.3126849016453003,0.3133630100087896,0.3175895765472312,0.321051896347,0.3242270894283229,0.3277371931575842,0.3292080522653636,0.330379746835443,0.3334098034717442,0.3322352941176471,0.3333333333333333,0.3289977046671767,0.336154776299879,0.3368307775087436,0.3417238749046529,0.0,2.8057771450829323,54.745886659540936,159.20777278870497,245.98788548764912,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95858,46349,439.6085877026435,5769,59.08740011266665,4517,46.589747334599096,1775,18.151849610882763,77.34109898624328,79.63154418814568,63.34986309044478,65.04393133145051,77.12103397975287,79.41459143739303,63.266921856705125,64.96481694818593,0.2200650064904152,216.95275075265383,0.0829412337396533,79.11438326458153,170.03712,119.71280382825006,177384.38106365665,124885.5638843394,424.29455,281.6150065265622,442089.3822111874,293244.6916549085,405.67292,198.38503317307524,420056.3750547685,204522.44984953903,2581.99836,1200.2723662046533,2664303.532308206,1222873.506858742,1051.51988,474.25686321535824,1084302.071814559,482142.3692418171,1737.4893,741.2721733058045,1777974.5665463498,743035.0698205906,0.38371,100000,0,772896,8062.926411984393,0,0.0,0,0.0,36586,381.0949529512404,0,0.0,36872,381.5018047528636,1495135,0,53707,0,0,0,0,0,86,0.8971603830666194,0,0.0,0,0.0,0,0.0,0.05769,0.1503479190013291,0.3076789738256197,0.01775,0.3302479338842975,0.6697520661157025,24.3832286255311,4.277595750230567,0.3254372371042727,0.2523798981624972,0.2014611467788355,0.2207217179543945,11.287579923452396,5.873852571263882,19.12753759080291,12063.051831467035,51.5163940024826,13.682252064043174,16.58356537488774,10.180296923726646,11.070279639825026,0.5676333849900377,0.7885964912280702,0.6959183673469388,0.589010989010989,0.1063189568706118,0.7274900398406374,0.911007025761124,0.8649350649350649,0.7130434782608696,0.1267605633802817,0.5061312078479461,0.7152875175315568,0.6359447004608295,0.5470588235294118,0.1007653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024808870436939,0.004813002198782,0.0070697542322165,0.0091883769569719,0.0114548817921248,0.0135044370267849,0.0158215919394439,0.0176587605202754,0.0198047106408187,0.0220546866209069,0.0241838835568029,0.0260812487820887,0.0282756283187658,0.0303616441174957,0.0325296239052035,0.0345560762132815,0.036615756873856,0.0387301324160225,0.0410610465116279,0.0431249739897623,0.0576132974618865,0.071768234691638,0.0849298710549195,0.0985843012875716,0.1109391124871001,0.1266939172132619,0.1380490285399495,0.1491436044100917,0.1594386938427062,0.1694782645974449,0.1829383784249155,0.1943507223808288,0.205845906343754,0.2153303021029161,0.2258540073711425,0.236509466360907,0.2458242677824267,0.2552564376596056,0.2632367292286044,0.2695642214968791,0.2759885240970824,0.2830830760595004,0.2886141834743005,0.2939548591144336,0.2992215867001834,0.3037373961492,0.3071494707339656,0.3115715303215303,0.3158705102991408,0.3195776971296601,0.31781098546042,0.3158669454685522,0.3150499598348295,0.3133231063127731,0.3116581583294884,0.3100614757239878,0.3078909839961971,0.3081741360602374,0.3098340419695515,0.3105378350256539,0.3119233231649908,0.3119815851093384,0.3130416491375684,0.3132570735105737,0.3147749534428132,0.3163602074493163,0.3171749506959728,0.3200618843142208,0.3237771071654151,0.3269230769230769,0.3303652553152825,0.3328389044869417,0.3345706196917269,0.3383054440826834,0.3412773172569706,0.3430873119298661,0.3442472460220318,0.3495983935742972,0.3531173427715763,0.3577981651376147,0.0,2.038670129118492,55.07571408540012,170.50504488890107,240.74487627448357,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95650,45848,435.3267119707266,5723,58.67224255096706,4478,46.304234187140615,1717,17.637219027705175,77.31769350596971,79.73998408775009,63.289715480586615,65.08127376752856,77.11022788943298,79.5332892839255,63.21323142534525,65.00761108204836,0.2074656165367372,206.6948038245897,0.0764840552413659,73.66268548020116,170.95496,120.30301555902264,178729.2420282279,125773.82638477942,425.95504,281.4535299757342,444805.8233141662,293737.6673185701,399.64689,194.98057967512452,414515.87036069005,201365.81797838872,2556.99112,1169.9137347939188,2645366.231050705,1195550.1519636738,1034.58968,454.1054355099468,1069328.280188186,462565.7571262099,1680.2827,697.1684901946667,1727507.0569785675,702700.6267052254,0.38063,100000,0,777068,8124.056455828541,0,0.0,0,0.0,36887,385.0914793518034,0,0.0,36335,376.62310507056975,1491112,0,53387,0,0,0,0,0,67,0.6900156821745949,0,0.0,0,0.0,0,0.0,0.05723,0.1503559887554843,0.3000174733531364,0.01717,0.3309964947421132,0.6690035052578869,24.69602727653792,4.290813733067823,0.325591782045556,0.2478785171951764,0.2072353729343456,0.2192943278249218,11.379821578936635,6.045978899163588,18.159883122775263,12015.65302088848,50.4515042300286,13.299981632451052,16.26434856426627,10.224903225826775,10.66227080748449,0.5645377400625279,0.7864864864864864,0.6927297668038409,0.5765086206896551,0.1120162932790224,0.7575250836120402,0.9307875894988068,0.8556430446194225,0.7464788732394366,0.1693989071038251,0.4942108470444851,0.6989869753979739,0.6350974930362117,0.5258741258741259,0.0988735919899874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868790015398,0.0045531983937046,0.0068934010152284,0.0092175733493226,0.0113850254865852,0.0134168704156479,0.015679513598433,0.0177363656797237,0.0199568114132492,0.022141129197589,0.0244220424588346,0.0266829815018559,0.0287826830197617,0.0307725636237969,0.0328260128328322,0.034490608992601,0.0367874250876138,0.0387659707073854,0.0412013862148633,0.0432275154346737,0.0576364358422339,0.0716927751873002,0.0842620505656334,0.0973331086347454,0.1096619530895227,0.1249774934598642,0.1372413573227626,0.1482172360496722,0.1591395318985067,0.1686788399570354,0.1812661122436872,0.193455412287355,0.2045219399035058,0.2142997919632103,0.2233938232021066,0.23341872095989,0.2434866157214997,0.2525781320363865,0.2606879802072339,0.2673478270829992,0.2749609397604305,0.280894014175107,0.2877466239007705,0.2937439315296741,0.2986083257368581,0.3029183143008487,0.3076115091720748,0.31186117467582,0.3162826818534817,0.3210632597304895,0.3192368796617928,0.317434346212017,0.3149404577573829,0.3131918086964051,0.3119883734725353,0.3098251036677735,0.3077896401739818,0.3088601375696037,0.3088373043581927,0.3090508510713905,0.3093388475940312,0.3104552060013353,0.3118656731906768,0.3122171945701357,0.3129412325892005,0.3134119838559454,0.3147661438462625,0.3161366606509428,0.3186197780792375,0.3208387529068621,0.3257111746291003,0.3295761231941578,0.3284763220700917,0.3326512050932242,0.3375468164794007,0.3407136968554941,0.3390629753574688,0.3402860548271752,0.3469553450608931,0.3545351900639819,0.0,1.9581104060864687,52.48542764779612,160.2043343920838,251.98473684514892,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95723,45642,433.6052986220657,5671,58.20962569079531,4444,45.96596429280319,1701,17.487960051398307,77.34880342590687,79.70635572727286,63.338894218876014,65.0771342749791,77.13282865770314,79.48900161951565,63.25885626040691,64.99831306410178,0.215974768203722,217.35410775721675,0.0800379584691057,78.8212108773223,172.07278,121.04983195476493,179761.16502825863,126458.46030187616,421.31753,278.11951439009533,439688.5805919163,290092.33349361725,398.79134,193.6180276234439,413478.2445180364,199899.729820512,2533.57588,1165.9836464572952,2621967.593995173,1193590.9174447574,1028.98534,456.4198198129601,1064653.6046718133,466760.5694416734,1656.27392,698.7778608495629,1704616.487155647,708672.3897723475,0.37913,100000,0,782149,8170.962046739029,0,0.0,0,0.0,36398,379.7624395390868,0,0.0,36288,376.0015879151301,1492443,0,53489,0,0,0,0,0,79,0.8148511851906021,0,0.0,0,0.0,0,0.0,0.05671,0.1495792999762614,0.2999470992770234,0.01701,0.3334456613310868,0.6665543386689132,24.52370627436533,4.272122956383329,0.3188568856885688,0.2502250225022502,0.2220972097209721,0.2088208820882088,11.241532273063244,5.847982303012965,18.203309838037047,11975.926396070752,50.40524676714667,13.318032435301724,15.82771912483987,11.06928109993278,10.190214107072308,0.5672817281728173,0.789568345323741,0.6951305575158786,0.5602836879432624,0.1131465517241379,0.7361455748552522,0.9090909090909092,0.8866279069767442,0.7075098814229249,0.1756097560975609,0.5041731066460587,0.7205673758865249,0.6337371854613234,0.5095367847411444,0.0954356846473029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379066965054,0.0043182094635689,0.0067069149206027,0.0089090705919401,0.0110724743777452,0.0131928538708199,0.0153098147940513,0.0177197101153414,0.0200091972816923,0.0221483035668594,0.0241170079740893,0.0259865551393236,0.0280673616680032,0.0302777606193505,0.032235769841761,0.0342322793965695,0.0363425518476719,0.0386379199435579,0.0406737367436057,0.0423651992706433,0.0564037762646727,0.0706429027430377,0.0846726814939152,0.0976076756370063,0.1092090413357381,0.1244142628967939,0.1365059154331794,0.147410443391707,0.1578227658778911,0.1680308085088123,0.1799556197082965,0.1927034308156707,0.2041870581837955,0.2144278715772898,0.2243575640235853,0.2344052907356737,0.2432547127669078,0.2522707064795327,0.2609174395241392,0.267788417483735,0.2746432415541127,0.2805314495567355,0.2861166002058903,0.2913367907918219,0.2966694178763898,0.3017790089258233,0.3061527890561559,0.3094161288683368,0.31325768345956,0.3170243317656668,0.3158999192897498,0.3146875257760304,0.3141734943829715,0.3129432496064016,0.3120665330066087,0.310070522724839,0.3073030331783534,0.3064925703238912,0.307760532150776,0.3089456982921524,0.3096323419518756,0.3112887978572554,0.3126905885793057,0.3119309051955008,0.3131058642863998,0.3142879434099657,0.314792663476874,0.3194457536054294,0.3229287090558767,0.3267585551330798,0.3307057912243131,0.3331553657234383,0.3361067005398539,0.3364816094601858,0.3390951166524983,0.3392984967788117,0.3417388613861386,0.343139271754783,0.3540563144689155,0.3495746326372776,0.0,1.734418400747302,53.40349422858178,162.32120026827866,245.31235489856488,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95632,46009,436.4438681612849,5722,58.41141040655848,4485,46.26066588589593,1762,17.996068261669734,77.26744378178137,79.68191052782802,63.28338998351626,65.06920671218336,77.04429179471252,79.46109236081888,63.20026969665616,64.98918806858751,0.2231519870688458,220.81816700914203,0.0831202868600939,80.01864359584943,172.03626,121.07316301580204,179894.03128659862,126603.1903712168,426.42114,282.53081228260754,445231.44972394174,294768.91864920483,404.12625,197.4140349484668,417959.3127823323,202946.7148999074,2573.91344,1191.091083168934,2658019.156767609,1212036.2673257207,1061.79851,475.17114471822,1093260.8541074116,479839.2323889698,1724.26354,731.4494813771796,1764542.9981596118,734355.5700663861,0.38131,100000,0,781983,8177.001422118119,0,0.0,0,0.0,36830,384.4842730466789,0,0.0,36747,379.6532541408733,1482605,0,53173,0,0,0,0,0,75,0.7737995649991635,0,0.0,0,0.0,0,0.0,0.05722,0.1500616296451705,0.3079342887102412,0.01762,0.3439906260462002,0.6560093739537998,24.211919695851023,4.334569845251692,0.325752508361204,0.2363433667781493,0.2207357859531772,0.2171683389074693,11.249931421575695,5.826772501922786,18.78873926429888,12052.650673087724,50.90302135538135,12.616136846271129,16.563629398022794,10.949981256040727,10.773273855046703,0.5576365663322185,0.7867924528301887,0.6858316221765913,0.5646464646464646,0.108829568788501,0.7176669484361792,0.9247311827956988,0.8609625668449198,0.7061611374407583,0.1504424778761062,0.5003028467595396,0.7122093023255814,0.62557497700092,0.5263157894736842,0.0962566844919786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002593876020832,0.0050294058000405,0.0074723846653671,0.009460612958296,0.0118210765114599,0.0142379924226993,0.016304015335359,0.0185300513532552,0.0207773085614372,0.0230207575959283,0.0250346136095584,0.0269959321198175,0.0290616930879463,0.0310252447192169,0.0330715000877365,0.0350781064232324,0.0372648935288756,0.0394004816075728,0.0414720659059467,0.0438395295981984,0.0591825430831774,0.0733234884427268,0.0865510832011929,0.0989164885383651,0.1108061314978252,0.1259159642509212,0.1379167507514524,0.1490445588345003,0.1594407539338703,0.1692872792885681,0.1814710957722174,0.1938230546738741,0.2048064259825636,0.2150564699702329,0.2244241863742458,0.2349513057159001,0.244117778373069,0.2525375284135664,0.2597302329806076,0.26726953890589,0.2742239872179319,0.2804187624283542,0.2863432994815709,0.2918475523469167,0.2965889475091779,0.3014496329652705,0.3057217979216226,0.3105102430334648,0.3153735539117254,0.318854364827732,0.3177717545208139,0.3164394878149525,0.3152374642288227,0.3139356593184054,0.313421730136762,0.3119116970718994,0.3097888127853881,0.3097754726890756,0.3110002903352518,0.3123304298157932,0.3125866786611192,0.3134597475678139,0.3133369715796986,0.3134882472658958,0.3151268595638149,0.3158815542093169,0.3161179991449337,0.320407585621285,0.3235914749947246,0.3251844466600199,0.3309881822780153,0.3354651475251249,0.335691523263225,0.340805793082197,0.3470297969254128,0.3491223851887473,0.3522462303746308,0.3567311650885137,0.3597717546362339,0.3594191206131504,0.0,2.513662269999122,51.22470947013408,173.25331815561304,243.01378826905704,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95831,45800,435.1932047041145,5890,60.08494119856831,4654,47.90725339399568,1775,18.167398858406987,77.40182060844235,79.71425336513593,63.36325590393732,65.07513572402773,77.17951250528147,79.49436219395999,63.28042091102919,64.9957208432487,0.2223081031608842,219.89117117594503,0.0828349929081326,79.41488077902648,170.73936,120.04242184606753,178167.14841752668,125264.70750181832,422.54421,278.5927200461033,440281.49554945686,290079.9717322381,401.40132,195.53675294520465,414057.6014024689,200416.25297488613,2668.4824,1226.4711448668982,2750277.384145005,1246084.0540319209,1106.18533,489.6464604981418,1138258.7367344596,494898.1649968608,1743.31686,730.1828179706898,1785818.84776325,732969.8805952689,0.38202,100000,0,776088,8098.5067462512125,0,0.0,0,0.0,36515,380.3675219918398,0,0.0,36650,377.7065876386556,1499271,0,53883,0,0,0,0,0,75,0.7721927142573906,0,0.0,1,0.0104350366791539,0,0.0,0.0589,0.154180409402649,0.3013582342954159,0.01775,0.3372523755838299,0.6627476244161701,24.4486362647522,4.373632404254414,0.3173614095401805,0.2449505801461108,0.2165878813923506,0.2211001289213579,11.390865006974629,5.897503452915184,18.78395430900225,12028.814164478754,52.74446969168645,13.815277910934055,16.535505781528247,11.229115142036363,11.164570857187783,0.570477009024495,0.7885964912280702,0.7007447528774543,0.5932539682539683,0.119533527696793,0.7405956112852664,0.9146067415730336,0.8670212765957447,0.736,0.1365853658536585,0.5062166962699822,0.7079136690647482,0.6439600363306085,0.5461741424802111,0.1152912621359223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136535774317,0.004287060778968,0.0066550338838615,0.0088058746457844,0.0108274621038826,0.0132130787084164,0.015267797992152,0.0174627474994896,0.0196353006112394,0.021739352936962,0.0238532110091743,0.0259884222194851,0.0281024186170814,0.0302499897038836,0.0322823519704611,0.0342319256878932,0.0360939456986409,0.0381592318380721,0.0400718759412943,0.0418787140820298,0.0565781926265839,0.0695170395149487,0.0832713365117619,0.0960324379969957,0.1085635446397539,0.1244045921654362,0.1366568852823712,0.1479792503773625,0.1583884738527214,0.1680877501178285,0.1810887265921631,0.1925807462476902,0.2037548075878403,0.2147766135288397,0.2254309207633453,0.2357701078173083,0.245109192710076,0.253204839870457,0.2614002450201915,0.2682896122327519,0.2760040241914035,0.2832480071066227,0.2901436764618932,0.2947088489320667,0.2987627939730218,0.3031060643381447,0.3070218220471456,0.3118946538881968,0.3162299195488527,0.3202841815282006,0.3188822849151494,0.3176359039190897,0.3161875307513882,0.315,0.3135683602429269,0.3111759850823831,0.3086558205654715,0.3089022374257328,0.309924184342789,0.3109663873022651,0.3117193480330837,0.3128728074492588,0.3137528943031769,0.3149983298073711,0.3161671490420265,0.3180840309997149,0.3189567285908473,0.3217638070290329,0.3246558633908346,0.3272461938944545,0.3297346337037877,0.3320430563656609,0.3365969999372372,0.3415834090221011,0.3439384101660328,0.3450984990619137,0.3437737570320815,0.3404858299595141,0.3427242888402625,0.349618320610687,0.0,2.559107217770733,55.59206037014141,170.47212147296253,253.5567245940248,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95691,45502,431.9737488374037,5635,57.70657637604372,4457,45.93953454347849,1695,17.305702730664326,77.32145341825886,79.70973682783037,63.3143933609397,65.08069485251266,77.1049002800917,79.49573511066977,63.23345200943403,65.00353267539978,0.216553138167157,214.001717160599,0.0809413515056647,77.16217711288209,171.48318,120.6822401328986,179204.89910231894,126116.39479662516,424.21291,280.60044766941064,442649.1310572572,292571.033960185,401.54587,195.5553370660232,415861.2617696544,201505.83259250096,2569.32784,1190.1379776627166,2649090.3846756746,1207868.1163983203,1059.56428,473.2805692470411,1087820.2547784012,475183.2161420797,1662.62752,707.6984442463178,1698215.2971543823,704910.7318151965,0.37801,100000,0,779469,8145.677231923587,0,0.0,0,0.0,36704,382.8886729159482,0,0.0,36630,378.9384581622096,1490409,0,53449,0,0,0,0,0,70,0.7315212506923326,0,0.0,0,0.0,0,0.0,0.05635,0.1490701304198301,0.3007985803016859,0.01695,0.3442539466983534,0.6557460533016466,24.147768148847053,4.3021704406856935,0.3123177024904644,0.2418667264976441,0.2324433475431905,0.2133722234687009,11.00831902322221,5.672902080635463,18.241770280211707,11916.513742177693,50.75471948974848,12.992715889156823,15.853610630667063,11.43828282926722,10.470110140657368,0.5752748485528383,0.800556586270872,0.709051724137931,0.583011583011583,0.1156677181913775,0.7489779231398201,0.9301204819277108,0.8776595744680851,0.7161016949152542,0.1581632653061224,0.5095856524427953,0.7194570135746606,0.6466535433070866,0.54375,0.1046357615894039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986706654778,0.004391035391948,0.0067605976936819,0.0090141360352028,0.01120177437734,0.0133546573221416,0.0157561418358709,0.017827241168062,0.0202823582330631,0.0223350461645546,0.0245747854704272,0.0264844215325843,0.0286181604962401,0.0309337839787317,0.032958298926507,0.0350082712985938,0.0371237388908454,0.0389389347835111,0.0408190856524813,0.0426906801742646,0.0574368080217255,0.0713523019910809,0.0846881264496898,0.0976310499784258,0.1098484848484848,0.1251058425063505,0.1372191026144554,0.1483958928038856,0.1590445145086303,0.1690299467993821,0.1806752563992071,0.1926128798293947,0.2038849734621073,0.2132410051086825,0.2227135722614568,0.2324981454621951,0.241489314237273,0.2504833198453376,0.2581266936517115,0.2648920945675196,0.2716015123660203,0.2777050406808192,0.2831108586575783,0.2889543869738686,0.2947156199521479,0.2995606099767381,0.3048838430568406,0.3094545315934589,0.3121228176731323,0.3155371138773628,0.3140418095046044,0.3128491620111732,0.3121802439984258,0.3102055535521096,0.3079595563671997,0.3044177321797718,0.3034632240099988,0.3036888808699788,0.3049019775119862,0.3058943089430894,0.3061346708088483,0.3068874982726968,0.3085415577626764,0.309072625698324,0.3105313777350325,0.3116971279373368,0.3130091758854301,0.3160181337363053,0.3195195617054154,0.3214767229756523,0.3247172125562167,0.3269189878800765,0.3300626701272393,0.3327706590961405,0.3345609065155807,0.3359645975361799,0.3391398180977339,0.345973496432212,0.3541264145735578,0.3512157468159012,0.0,2.3980994055351563,53.19425595316238,167.9156242081299,240.1800993739309,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95698,45477,431.6600137933917,5812,59.17574034985058,4575,47.12742168070388,1853,18.99726222073607,77.3455376358958,79.73430360665266,63.32130932583449,65.08810435288827,77.11316743143536,79.50234514906657,63.23465448546554,65.00404331525684,0.2323702044604374,231.95845758608868,0.0866548403689506,84.0610376314288,170.72308,120.09571624691142,178397.29147944576,125494.03628802214,422.06748,278.7171087703382,440342.1283621392,290548.13391897856,397.69418,194.2429270255493,411253.12963698304,199690.08542659332,2659.36268,1233.1482013975544,2741476.43628916,1251186.905323672,1103.55151,496.52665259949697,1137312.671111204,503018.4336350774,1824.69216,767.566985266983,1872156.1370143576,772059.5696464606,0.37814,100000,0,776014,8108.967794520262,0,0.0,0,0.0,36553,381.230537733286,0,0.0,36326,375.2534013250016,1497060,0,53651,0,0,0,0,0,60,0.6269723505193422,0,0.0,0,0.0,0,0.0,0.05812,0.1536996879462633,0.3188231245698554,0.01853,0.3350871423873726,0.6649128576126274,24.125649501835717,4.378715574360739,0.3158469945355191,0.2349726775956284,0.2122404371584699,0.2369398907103825,11.10093058926564,5.622104712183512,19.654987747644466,11965.209415403173,51.88360024222486,13.011710941876984,16.24119512060289,10.79972427144133,11.830969908303665,0.5578142076502732,0.7981395348837209,0.701038062283737,0.5736354273944387,0.1143911439114391,0.7326416600159616,0.908450704225352,0.8613333333333333,0.759825327510917,0.1524663677130044,0.4918723660445515,0.7257318952234206,0.6448598130841121,0.5161725067385444,0.1045296167247386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025734809876493,0.0046858359957401,0.0067516117569419,0.0087705034655175,0.0112415561162203,0.0135669179058871,0.0156739172555858,0.0178203059578031,0.0197155157427575,0.0220376647448566,0.0242554151624548,0.0263660640920295,0.028503538512179,0.0302536941244358,0.0324042063549395,0.0344881059454765,0.0367005738672854,0.0389509299236134,0.0408585601231268,0.0426660276313321,0.0577226347505509,0.0712940092937581,0.0850143789752093,0.0973600311451088,0.1092358972195266,0.1252221188018277,0.137575738282452,0.1476728086058153,0.1576848654600656,0.1674789068034951,0.180670547649849,0.1922081297995169,0.2035748886929449,0.2146429001302126,0.2240176114474408,0.2333687896113105,0.2426339285714285,0.2507481493148527,0.2587096847383408,0.2658256828224089,0.2725106146673299,0.2797905049158863,0.2858376204837088,0.2912645769976772,0.2964243681675342,0.3008464150386299,0.3055663147373024,0.3101575092969831,0.3143458281701776,0.3181716599403173,0.3164546771856384,0.3147688807882584,0.3126728919469212,0.3113991502844387,0.3103565666582792,0.3088825477240474,0.3070361126030773,0.3078210640322951,0.3091483188257382,0.3096959634370592,0.3094581668823496,0.3111093514925964,0.311623414798018,0.3121336852937229,0.3136207187041182,0.3151342746039617,0.3143500185179909,0.3165408805031446,0.3204381099487468,0.3226895428730291,0.3247054542146204,0.3294984625172304,0.3293142426525998,0.3334345351043643,0.3376990483369452,0.3425903758678477,0.3488659157537417,0.3493136652325343,0.3496426608026388,0.3486381322957198,0.0,2.5064902759623178,54.33583907098566,167.03479135706775,251.95067452774452,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95620,45675,434.2501568709475,5781,59.26584396569755,4544,47.02991006065676,1764,18.15519765739385,77.23812690061078,79.6695929887103,63.25655152000609,65.05433843201337,77.00807317769754,79.43861623065584,63.17040415533469,64.97014791582673,0.2300537229132402,230.97675805446727,0.0861473646713975,84.19051618663786,171.08278,120.32899309163798,178919.2219201004,125840.59787872618,424.00349,280.2632304130925,442938.24513700063,292614.05983381346,397.66835,192.8975277859741,412783.2357247438,199357.5835950781,2614.49104,1209.0330185629516,2707996.318761765,1238184.5414797657,1075.57378,476.4497813795007,1113280.2760928676,486868.762363522,1736.03722,739.9463715523616,1788166.178623719,749068.527648245,0.37946,100000,0,777649,8132.691905459109,0,0.0,0,0.0,36660,382.8696925329429,0,0.0,36177,375.2143902949173,1488614,0,53454,0,0,0,0,0,74,0.7738966743359129,0,0.0,1,0.0104580631667015,0,0.0,0.05781,0.1523480735782427,0.305137519460301,0.01764,0.3275094775012362,0.6724905224987638,24.433265737291247,4.359721243221792,0.3116197183098591,0.2517605633802817,0.2097271126760563,0.2268926056338028,11.145839484800238,5.567939078555271,18.999325126319984,11993.052454929017,51.834203633608624,13.814606829889314,16.01837259721943,10.693887052946318,11.307337153553576,0.559419014084507,0.7972027972027972,0.6871468926553672,0.5603357817418678,0.119301648884578,0.7290996784565916,0.921875,0.8519553072625698,0.6858407079646017,0.160377358490566,0.4954545454545455,0.7169540229885057,0.6313799621928167,0.5213204951856947,0.1086691086691086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020775904005188,0.0043917925207671,0.0065693282430346,0.0088836485978268,0.0110324051457417,0.0133052151145613,0.0152481003620786,0.0173150002043067,0.0198432993065073,0.0222875462190038,0.0243577115652959,0.026365812808894,0.0285811325415285,0.0305557560075461,0.0326431558837197,0.0345798067172981,0.0366150752101842,0.0387364178422288,0.0406495601936189,0.0424499760051745,0.0576575257969075,0.0717309747867457,0.085107947680832,0.0971805322969656,0.1095739962405221,0.1254011799722484,0.1369943056263811,0.1490380003197783,0.1594894454727337,0.1695776402852969,0.1818809616297639,0.193328057070373,0.2039139625602022,0.2141636168394293,0.224788943505191,0.2355584651916291,0.244368386909156,0.2525119253019385,0.2609204944786253,0.2680140093012574,0.2747789561625397,0.281464369891767,0.2870160534402771,0.2926738385720295,0.2974260852609257,0.3017109232062503,0.3067575540742414,0.3109970899065707,0.3150385904732205,0.3180187692755695,0.3177036206733561,0.3154335555279537,0.3137935902866017,0.3121640223139897,0.3107190710138455,0.3081388206388206,0.3048691398805742,0.3054979082254505,0.3062540738961885,0.3069250192510879,0.3074077551403624,0.3086997008301468,0.3104013104013104,0.3112814306844157,0.3121777263746325,0.3130387086663532,0.3143330855868732,0.3175513806581768,0.3204136184580754,0.3236481672076637,0.3259650881910578,0.3299543572869122,0.3307996733463157,0.3321442125237192,0.333146277590722,0.3380661816475006,0.3400120518228382,0.3438868976503385,0.3462377317339149,0.3535660091047041,0.0,1.8800950074380145,54.879279261780106,171.38144059870055,245.68999242902763,fqhc2_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95726,45796,434.2602845621879,5732,58.76146501472954,4467,46.15256043290224,1734,17.769467020454215,77.33641368994157,79.71159580363417,63.332022412709286,65.08947364253824,77.12712258532797,79.50221399230894,63.25524664216072,65.01445640950962,0.2092911046135981,209.3818113252297,0.0767757705485721,75.01723302861762,170.8069,120.18715278277006,178432.44259657775,125552.68371859413,423.06889,279.94639374461127,441446.3364185279,291936.6669408678,397.6462,194.00987103039415,411528.4353258258,199673.01833254032,2890.11247,1317.5520282612438,2989268.108977707,1346786.8253600744,1034.43059,454.4636241780999,1065780.3418089128,460378.3305322619,1688.04648,695.9474238902408,1732253.201846938,702426.0004647078,0.38165,100000,0,776395,8110.565572571715,0,0.0,0,0.0,36603,381.8398345277145,0,0.0,36265,375.1122996886948,1497097,0,53699,0,0,0,0,0,75,0.7625932348578234,0,0.0,0,0.0,0,0.0,0.05732,0.1501899646272763,0.3025122121423587,0.01734,0.3390422347855005,0.6609577652144994,24.524665902465596,4.289591882148242,0.3145287665099619,0.2507275576449518,0.2225207074098948,0.2122229684351914,11.558258055821282,6.191524090165112,18.22079855563561,12048.992389393972,50.700275545276064,13.555258182726798,15.791228350897388,11.134198685218305,10.219590326433584,0.5768972464741438,0.8294642857142858,0.6868327402135231,0.5764587525150905,0.1160337552742616,0.745819397993311,0.92018779342723,0.827683615819209,0.7096774193548387,0.1845238095238095,0.5151329868541731,0.7737752161383286,0.6393910561370124,0.532171581769437,0.1012820512820512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020773377649872,0.0043205306341849,0.0065180973653484,0.0090454508496625,0.0111695472162599,0.013749414376795,0.0158272060698151,0.0180416581580559,0.0201711428951161,0.0226132710930942,0.0249090256778227,0.0270525548494399,0.028947503727698,0.0308682665568029,0.032853870441835,0.0351421188630491,0.0371302249971525,0.0392962363583551,0.0415198661387044,0.043363228232451,0.0581921080934331,0.0728364579845999,0.0861043822946487,0.0985136754472638,0.1107492543291069,0.1263897696047347,0.1384157135437093,0.1491902468072436,0.1594018827246141,0.1693357471104303,0.1828091205492128,0.1947021299599956,0.2053519045653071,0.2152211190842863,0.2253241045923972,0.2353240321047162,0.2445555914493544,0.2532750601083073,0.2613416140621281,0.2687065495792169,0.2751242056614673,0.2821967706910441,0.2883527591785642,0.2936392124967107,0.2977658168769926,0.302672192230598,0.3067239484463982,0.3110301213999085,0.3156506902435241,0.3190283507532522,0.3174517769228699,0.3156040568621245,0.3138025233750141,0.3126381644536273,0.3113070107629185,0.3091480232914496,0.3075814447031247,0.3085347432024169,0.3092415442432524,0.3096585331024757,0.3103932321398491,0.3115307209660234,0.3119252633338906,0.31436785451628,0.315540621624865,0.3178544499622994,0.3173804965856167,0.320328995052469,0.3223065037224329,0.3272061749025224,0.3280469358756933,0.3314053127677806,0.3356124992012269,0.3350277264325323,0.333933137607728,0.3395976388386941,0.3451423267326732,0.35,0.351388507011273,0.3477600607441154,0.0,1.985270019545854,52.44709134533559,169.357848570136,242.67959156417203,fqhc2_100Compliance_implementation_low_initial_treat_cost,0 -100000,95623,45646,434.100582495843,5799,59.70320947889106,4535,46.98660364138335,1803,18.61476841345701,77.26635035352784,79.70592410010384,63.26822878755484,65.07289107162828,77.05037460930852,79.48694989052183,63.19027003667897,64.99515027135486,0.2159757442193211,218.97420958201508,0.0779587508758723,77.74080027341768,170.51298,119.93786990703543,178317.95697687796,125427.84675970786,425.08978,281.11643785335576,444147.0566704663,293583.549829388,401.00952,195.6153839855125,416447.7792999593,202316.7215601516,3002.54445,1373.9897505888764,3116546.6153540467,1413749.9457510444,1083.13672,484.1241137670774,1122174.4350208633,495869.7663935981,1769.3438,728.7183773252174,1829249.4483544757,745087.2157820108,0.38037,100000,0,775059,8105.361680767179,0,0.0,0,0.0,36808,384.48908735346095,0,0.0,36562,379.4693745228658,1491024,0,53543,0,0,0,0,0,77,0.794787864844232,0,0.0,0,0.0,0,0.0,0.05799,0.1524568183610694,0.3109156751163994,0.01803,0.3370102074415542,0.6629897925584458,24.293567919353464,4.378353757238871,0.3190738699007718,0.2381477398015435,0.2198456449834619,0.2229327453142227,11.307736822332677,5.843423117224147,19.17259622564208,11962.987108887655,51.70452119338875,13.101821306240891,16.411426733980512,11.114383212127311,11.076889941040031,0.560308710033076,0.7814814814814814,0.6800276434001382,0.5887662988966901,0.1246290801186943,0.7463768115942029,0.9271844660194176,0.8626943005181347,0.7754237288135594,0.1394230769230769,0.4901305800182204,0.6916167664670658,0.6135721017907634,0.5308804204993429,0.1207970112079701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020167011228667,0.0042404260715191,0.0063980826063554,0.0087237676915568,0.0110237983754402,0.0131169929777714,0.0151555355976485,0.0174836250676966,0.0196652205942539,0.0216415616354134,0.0238412906933782,0.0261599819090105,0.0284117229239368,0.0304979894834519,0.0324016691455957,0.0344766930518909,0.0364731245206359,0.038541428660449,0.0403488505208821,0.0423093368373848,0.0571810873814825,0.0711800825701532,0.0844134019535763,0.097639835283462,0.1100515355045832,0.1252608055582033,0.136692558628824,0.147619657025851,0.1582163342179608,0.1680845578757411,0.1800692325112421,0.191516570214795,0.2023431035233657,0.2123057377857119,0.2226996771670027,0.2319250388112663,0.2418537130094919,0.2503996037731601,0.2585290510153091,0.2654949439361629,0.2723841718956216,0.279407289496477,0.2856601673947271,0.2907084047410745,0.2966635075696824,0.3010447632322285,0.3054271721840203,0.3101428607807685,0.3148397626881525,0.3194748647578836,0.3186921171656257,0.3171909169681048,0.3158976959044561,0.3142873649546479,0.3131137555525842,0.3105168903922979,0.3083655124390707,0.3085247893846583,0.3085542497950259,0.3093247588424437,0.3099669768838187,0.3109338505997387,0.3116528890940371,0.3117420682865709,0.3118525656468321,0.3128347135505107,0.313375250071449,0.3173716917447399,0.32054890921886,0.3258377776008915,0.3266748757239932,0.3313829787234043,0.334388052145298,0.3382107657316148,0.3425347384127576,0.3460365853658536,0.3484066767830046,0.3528465097565882,0.3536318951392682,0.3619654913728432,0.0,1.7248056829727618,54.89868351977897,172.59745019882496,242.77812461184567,fqhc2_100Compliance_implementation_low_initial_treat_cost,1 -100000,95704,45336,430.7343475716794,5710,58.419710774889246,4491,46.33035191841512,1697,17.324249770124553,77.34534288058313,79.71442044035531,63.32656324425341,65.07480483718447,77.12990405305409,79.50343254173299,63.24514114163095,64.99790496714587,0.2154388275290415,210.9878986223208,0.0814221026224544,76.8998700386021,171.08146,120.34087164797918,178761.0340215665,125742.78154306946,420.61329,278.33823970325693,438835.7539914737,290175.5630271877,394.956,192.61140502718092,409393.6721558138,198590.88901536213,2929.96615,1352.348528450778,3024389.10599348,1376100.732563492,1055.40561,468.6170100153771,1089402.3133829308,476331.1587762835,1659.94928,705.688531615789,1697114.5197692886,705278.7133865139,0.37765,100000,0,777643,8125.501546434842,0,0.0,0,0.0,36468,380.4438685948341,0,0.0,36012,372.9833653765778,1494162,0,53568,0,0,0,0,0,65,0.6687285797876787,0,0.0,1,0.0104488840591824,0,0.0,0.0571,0.1511981993909704,0.2971978984238179,0.01697,0.3361260053619302,0.6638739946380697,24.184514220681912,4.193175610999602,0.3175239367624137,0.2518370073480294,0.2199955466488532,0.2106435092407036,11.26348554726705,5.999215963757523,18.087114308814066,11893.41199413827,51.13989855084388,13.64676974316266,16.07372141947517,11.012910054731,10.40649733347504,0.5749276330438655,0.7922192749778957,0.6963534361851332,0.5941295546558705,0.1120507399577167,0.7424,0.9159090909090908,0.8653846153846154,0.7413793103448276,0.1775700934579439,0.5103363159518667,0.7134587554269175,0.6384180790960452,0.548941798941799,0.0928961748633879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809624108878,0.0047027344779356,0.0071019844973824,0.0093438959983749,0.0114401350444385,0.0134698988993982,0.0155550798650398,0.0178638873860539,0.0200151289023368,0.0219262777533242,0.0240809464252762,0.0261655370712672,0.0282652074633313,0.0300717023117814,0.0322610607139539,0.0343301942379854,0.0363101587663245,0.0384292074429996,0.0400927456668434,0.0421117352202503,0.0562715404699738,0.0700103618266121,0.0831523164908966,0.0955753143578681,0.1077752685675692,0.1226397121083827,0.1340199617753238,0.1458308919877702,0.1560579338357116,0.1658120574983909,0.1787519262061013,0.1904725807848912,0.201645553088677,0.2118003853902076,0.2205555188440274,0.2300537664209301,0.2394271873918721,0.2483292455165275,0.2565973916892727,0.2634502823499765,0.2709962519087501,0.2775238206582101,0.283310654913329,0.2895909711738911,0.2950771884223439,0.3000110909830308,0.3051176176176176,0.3093171333070676,0.3131888769443977,0.3167665777589986,0.3150107132750279,0.313991435220247,0.3130732973949366,0.3118554837216702,0.3106032444649309,0.3083178901260472,0.3057395317958364,0.3059095227175942,0.3065314663899144,0.3075691826136444,0.3096459005388875,0.3107347966328377,0.3117216346454722,0.3133183146343095,0.315492484272199,0.3162697587354409,0.3174113585557033,0.3197102625745418,0.3238042114070562,0.3264928312588624,0.3286284832531542,0.3329983072365637,0.3386399247884675,0.3440631642878834,0.3482126146359723,0.3510400752144788,0.3508718726307809,0.3518555667001003,0.3529732678668849,0.3604651162790697,0.0,2.323598291623735,54.6060574607141,168.72791743118103,238.59840977767897,fqhc2_100Compliance_implementation_low_initial_treat_cost,2 -100000,95664,45697,434.4894631209232,5675,58.10963371801304,4465,46.09884596086302,1748,17.843702960361263,77.2498286400838,79.6491376898295,63.26585613190741,65.03930486869825,77.03036375201643,79.43307826617205,63.18353732494834,64.96141006998646,0.2194648880673781,216.0594236574553,0.0823188069590727,77.89479871179594,170.3097,119.74181898452196,178029.03913697944,125169.15347938825,421.0863,279.1404160573086,439591.3927914367,291223.3704731285,395.99934,192.27192735959545,411106.6545408932,198829.31748099063,2914.78045,1338.4512339056969,3008026.561716006,1360930.515228336,1052.14943,466.277075731576,1081937.886770363,469741.1014304654,1708.29514,720.7780184922193,1744502.5296872386,717710.2571296571,0.38013,100000,0,774135,8092.229051680883,0,0.0,0,0.0,36575,381.71098845960864,0,0.0,36125,374.7491219267436,1490253,0,53570,0,0,0,0,0,66,0.6899147014550928,0,0.0,0,0.0,0,0.0,0.05675,0.1492910320153631,0.3080176211453744,0.01748,0.3379403337266138,0.6620596662733862,24.13053458903333,4.372497745248199,0.3198208286674132,0.2391937290033594,0.2291153415453527,0.2118701007838745,11.559072947504424,6.1182993845869005,18.67140750126239,11961.298750618686,50.96440131467689,12.81103103103224,16.251478699660037,11.571021117894766,10.330870466089848,0.5724524076147817,0.7883895131086143,0.7128851540616247,0.5796676441837733,0.1088794926004228,0.7426900584795322,0.9175257731958762,0.8654353562005277,0.7154150197628458,0.135593220338983,0.5100979192166463,0.7147058823529412,0.657769304099142,0.535064935064935,0.1027308192457737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210867539203,0.0045838530733112,0.0067092295043696,0.0088295061979272,0.0110974356887835,0.0132096225531134,0.0154586613370314,0.0176035125338234,0.0197790959296379,0.0220604049528374,0.0241042946673094,0.0260708782742681,0.0281319133611154,0.0304154684971604,0.0326247431833902,0.0346785536984941,0.0365273618436732,0.0384779110211285,0.0401094556350923,0.0420429188129548,0.0556107041723701,0.069790335756027,0.0828199288405629,0.0953332982585363,0.1078653819770571,0.1237643672078403,0.1356738560217485,0.145868411517722,0.1572686329257464,0.1676066475447699,0.1801829992015365,0.1908882888158679,0.2016052519656702,0.2118460019743336,0.2211159556266902,0.2311795099727762,0.2405968745802176,0.2499294972306512,0.2583993444414094,0.2652144440997713,0.272370468427042,0.2788720153154105,0.2857889920251013,0.2912736983928399,0.2963220239836209,0.3016691394658753,0.3058875219683655,0.3112368014504041,0.3151183024699374,0.3202181019308903,0.3192653116348166,0.317303978370027,0.3155575018717597,0.3149329004956378,0.31386567764422,0.3119250582607629,0.3088831843823287,0.3099643133191902,0.3101996096826103,0.3113009833951314,0.3128629145917505,0.3136788714534791,0.3149305701220791,0.3150863035193902,0.3154330063390296,0.3173277118467624,0.3181276595744681,0.3217665615141956,0.3250165522528487,0.3278973346495558,0.3321138211382113,0.3361914781693845,0.336894720399875,0.3347448015122873,0.3387952704589889,0.3400491976104017,0.3477734019993941,0.3573015552413653,0.3615742006012571,0.3668171557562076,0.0,2.228234663001059,52.46290074447103,175.39694516141762,236.7096205086112,fqhc2_100Compliance_implementation_low_initial_treat_cost,3 -100000,95755,45394,431.4970497624145,5841,59.88199049657982,4624,47.83040050127931,1739,17.87896193410266,77.32698317968122,79.68822622396509,63.31555014592704,65.06185447571404,77.10423385672493,79.46513316390053,63.2328294512697,64.98133963251904,0.2227493229562895,223.09306006455645,0.0827206946573397,80.51484319500446,172.40608,121.26806975529335,180048.93739230328,126643.90263404876,425.16569,280.497330385676,443545.0054827424,292464.0559844561,395.37375,191.7718833329845,410385.3793535586,198331.3021334037,3024.83936,1372.448530586273,3131649.114928724,1406093.9906956751,1091.41083,477.44806072868,1132167.249751971,490986.3513431985,1705.28096,714.6915465329943,1754550.46733852,723150.1617395827,0.37914,100000,0,783664,8184.042608741058,0,0.0,0,0.0,36835,384.18881520547234,0,0.0,36088,374.31987885750095,1486363,0,53320,0,0,0,0,0,72,0.7519189598454389,0,0.0,2,0.0208866377734844,0,0.0,0.05841,0.154059186580155,0.2977229926382468,0.01739,0.3353896103896104,0.6646103896103897,24.307829362347885,4.36301842859892,0.3103373702422145,0.2536764705882353,0.215181660899654,0.2208044982698962,10.964427896073168,5.576480451309415,18.468572604355167,11914.121608873764,52.3146190421194,14.161334810036893,16.044623582062805,10.984991871941686,11.123668778078011,0.5583910034602076,0.7740835464620631,0.6878048780487804,0.5728643216080402,0.1145935357492654,0.728701406120761,0.9011494252873564,0.8638888888888889,0.7192118226600985,0.1516587677725118,0.4980966325036603,0.6991869918699187,0.6288372093023256,0.5353535353535354,0.1049382716049382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0047251120439658,0.0068509834967419,0.0090824122236671,0.0113806254767353,0.0133699913446362,0.0155912224170983,0.0177102259967743,0.0195415103788722,0.021525076765609,0.0235215742543814,0.0255399523692206,0.0276098844619875,0.0297685242390543,0.0314211737035929,0.0333137005693501,0.0356662180349932,0.0375188008920699,0.0396304072172448,0.0416610236589609,0.0554865381202434,0.0693511602117464,0.0825723661449105,0.0956646061982254,0.1080437234502313,0.1224453114261849,0.1341407799425171,0.1455886893291741,0.1563258195188166,0.1660101535918599,0.1794910486209163,0.1914642466510001,0.202561256909083,0.2123837654523575,0.2211129944746516,0.2312116946879606,0.2406590337894442,0.2497972972972973,0.2587716807324027,0.2659003919231739,0.2716568252865578,0.2784328419376368,0.2847426296331405,0.2902757445583047,0.2951098787502888,0.3006253006253006,0.3053157769453388,0.3095025851310394,0.3136881390195545,0.3177732905729105,0.3168853893263342,0.314806917140145,0.314113124656782,0.3138467764080181,0.313061824881506,0.3105741384858189,0.3080236259124954,0.3080230401890477,0.3089033844472524,0.3098313055560504,0.3107110138912259,0.3109265251361376,0.3119131455399061,0.3128028763482882,0.3144737158089383,0.3164583333333333,0.3184738727469153,0.3218686314469353,0.3239564745810153,0.3250049416880806,0.3266887147193403,0.3301104242616368,0.333291653641763,0.3375122724869723,0.3424759772366825,0.3446374090589064,0.3454407294832827,0.3443348762326423,0.341267644616662,0.3460943542150038,0.0,1.7833790133510787,53.40558336616396,176.3553302753008,252.588847576628,fqhc2_100Compliance_implementation_low_initial_treat_cost,4 -100000,95767,45873,436.27763216974535,5673,58.2142073992085,4447,45.94484530161747,1703,17.427715183727173,77.39144353273707,79.73027300293248,63.36142006586866,65.0872098339638,77.18023825698897,79.51961660445112,63.28436597199897,65.01244111415197,0.2112052757480995,210.65639848136183,0.0770540938696839,74.76871981182853,171.34898,120.43508690286605,178922.7813338624,125758.44174179624,423.59635,279.306634337265,441794.2610711414,291128.40425029857,391.2257,189.67515811143025,405431.3281192895,195702.02594018605,2911.55871,1318.7062066557048,3010091.3049380267,1347006.2676848825,1021.4127,449.4028269512496,1054605.8872054047,457695.4707522213,1664.4012,696.1732442807105,1705826.8923533158,701554.8471656298,0.38273,100000,0,778859,8132.853696993746,0,0.0,0,0.0,36593,381.5510562093414,0,0.0,35625,368.95799179258,1499157,0,53761,0,0,0,0,0,76,0.7831507721866614,0,0.0,0,0.0,0,0.0,0.05673,0.1482245969743683,0.3001939009342499,0.01703,0.3469899665551839,0.653010033444816,24.514042692184454,4.288568838539654,0.3307847987407241,0.2307173375309197,0.2235214751517877,0.2149763885765684,10.98072915020587,5.699004858478064,18.092789249269003,12012.919360311014,50.19572108979845,12.326666998847973,16.550008442583128,10.909133014498073,10.409912633869274,0.5572295929840342,0.7923976608187134,0.6832087015635622,0.5633802816901409,0.104602510460251,0.7338568935427574,0.9318801089918256,0.8514588859416445,0.6636363636363637,0.1758241758241758,0.4959103302029688,0.7147192716236722,0.6252285191956124,0.5348837209302325,0.0878552971576227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024096873481289,0.0045096628393647,0.0067774598729733,0.008957861488305,0.0112861079195941,0.013333604755313,0.0154778887303851,0.017599526598241,0.0197059935232763,0.0218036342801014,0.023780737704918,0.0258125410374261,0.0278768200080147,0.0299805481510451,0.0319867228813821,0.0337881808509539,0.0358081675739449,0.0379166580241023,0.0399463639765498,0.0417821204608429,0.0561447090996388,0.0701647920481297,0.0835448880683129,0.0960943908133005,0.1084705733504839,0.1244633831708503,0.136440273580404,0.1480634420841001,0.1577930121305313,0.1678760141906303,0.1811195660363143,0.1931681787216557,0.204277005661382,0.214325502146204,0.2235349716446124,0.2335936808567129,0.2435363081175054,0.2528074746204294,0.2599861751674278,0.2672362521731174,0.2742082702683966,0.2809761910325007,0.2874686776038958,0.2941014497958792,0.2994980479643056,0.3035617651399616,0.3083340618716357,0.3124634586542616,0.3166489953192479,0.3203539589944825,0.3186714301063715,0.3174857989627068,0.3160223633196606,0.3138587347749719,0.3126091719217219,0.3108110167812343,0.3089097673245475,0.3096805816518258,0.3100181963505263,0.3105889467973461,0.3117614061331338,0.3131006176371924,0.3139880329720909,0.3143061484478019,0.3154740414470359,0.3163754889178618,0.3188240980297387,0.3237882693153957,0.3265198609208724,0.3298429319371728,0.3330752413918746,0.3356401384083045,0.3363200403836446,0.3368853706804688,0.3429427180831149,0.3466588511137163,0.3523852385238524,0.3538338658146965,0.3567567567567568,0.3618867924528302,0.0,1.8152838842845695,50.26458991355242,168.07356508325458,247.82986778394485,fqhc2_100Compliance_implementation_low_initial_treat_cost,5 -100000,95724,45743,432.9112866156868,5748,58.72090593790481,4508,46.47737244578162,1817,18.626467761480924,77.37264048070351,79.7313454479242,63.34029949113111,65.08169656815417,77.13952332782313,79.49972690715805,63.25426196041943,64.99866784669968,0.2331171528803821,231.6185407661493,0.0860375307116854,83.02872145449669,171.82682,120.91091826460794,179502.34006100873,126312.02025052016,422.697,279.60652707743293,440996.0302536459,291513.6925718031,403.1633,196.98199700603084,416828.4024904935,202480.9042548453,2986.14918,1375.7505938379293,3083385.775772011,1401050.5347017758,1085.10623,488.1376621576098,1117929.798169738,494294.5887735672,1779.52996,746.304122102914,1826371.401111529,752929.9306435662,0.38016,100000,0,781031,8159.197275500396,0,0.0,0,0.0,36479,380.4688479378213,0,0.0,36699,379.11077681668127,1488926,0,53435,0,0,0,0,0,76,0.7730558689565835,0,0.0,0,0.0,0,0.0,0.05748,0.1511994949494949,0.3161099512874043,0.01817,0.3411842759993365,0.6588157240006635,24.580303711726305,4.3386394453903225,0.3154392191659272,0.2395740905057675,0.217391304347826,0.2275953859804791,11.149604517038398,5.841271375648177,19.318634464756556,12018.221207406486,51.23654477561748,13.079880081968687,16.13078448395367,10.805331296765408,11.220548912929717,0.5618899733806566,0.774074074074074,0.7109704641350211,0.5795918367346938,0.1150097465886939,0.7508116883116883,0.9140811455847256,0.8923076923076924,0.7605633802816901,0.1523809523809524,0.4908424908424908,0.6853252647503782,0.6424418604651163,0.529335071707953,0.1053921568627451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101265822784,0.0046314594671287,0.0068778721202714,0.0093942963925901,0.0116727165502445,0.0138546735346214,0.0162174834869118,0.0183724087248527,0.0204642795081213,0.0226432863474905,0.024914388828511,0.0271050010780398,0.0294190231362467,0.0315045778963304,0.0336438763192918,0.0357397550514185,0.0378212163253473,0.0397676589565397,0.0420728792067682,0.0441616064825905,0.0588794219604894,0.0725212405306993,0.0861118100989766,0.098706130900453,0.1111298517846977,0.1261457463341403,0.1374917799792113,0.1486037800102162,0.1587782998718496,0.1691814389430449,0.1817995799903074,0.1936317998874799,0.2040172696921253,0.2137451332079268,0.2227552289055881,0.2327369412286046,0.2427452118398143,0.2509034822061853,0.2584221167170214,0.2661040658609856,0.2731345356886532,0.2798759435894435,0.2871054876315041,0.2923300260344807,0.2972664179013771,0.3023671557144618,0.307031817157734,0.3110271768850228,0.3147424281646389,0.3195294365899979,0.3188068457025994,0.3174825751639378,0.3157479760647659,0.3145895339093247,0.3133747362790836,0.311314254214709,0.3088786598965501,0.3089000082027725,0.3081787808536751,0.3090666429397633,0.3092727713811185,0.3086774339503865,0.308503969912244,0.3093525179856115,0.3113101367369908,0.312034852060265,0.311527891888829,0.314668498797664,0.3188122952533631,0.3223069065765695,0.3254942674009208,0.3272103457376616,0.3305894181224079,0.3335101545923007,0.3380281690140845,0.340571158838801,0.3444647758462946,0.3471857978616098,0.3445723684210526,0.3347392638036809,0.0,2.438804522914376,53.47993358306556,171.47229931934763,240.5864442819064,fqhc2_100Compliance_implementation_low_initial_treat_cost,6 -100000,95742,45358,429.5084706816235,5660,58.05184767395709,4459,45.97773182093543,1715,17.505379039501992,77.33281654085012,79.69772797370211,63.319784280511655,65.07047873288344,77.11555894596083,79.48331137597556,63.239065488982526,64.99346966182874,0.2172575948892898,214.4165977265544,0.0807187915291294,77.00907105470378,173.1499,121.74608454850966,180850.51492552905,127160.58213585436,423.25799,280.1361523608628,441488.8554657308,292001.8616290268,395.60257,192.74894838730492,409410.13348373753,198451.93496684227,2934.61916,1347.8245136107164,3026464.6027866555,1369099.343663927,1060.90559,471.1204745267152,1092256.1885066116,476241.1528135144,1692.10176,716.4721221430917,1728827.2231622487,715583.9984058316,0.37746,100000,0,787045,8220.47795116041,0,0.0,0,0.0,36707,382.7682730672014,0,0.0,36103,373.3157861753462,1482753,0,53267,0,0,0,0,0,72,0.7520210565895845,0,0.0,0,0.0,0,0.0,0.0566,0.1499496635405076,0.3030035335689046,0.01715,0.3373901284651792,0.6626098715348209,24.448553548115694,4.318753528523285,0.3195783808028706,0.2440008970621215,0.2105853330343126,0.2258353891006952,10.99069503428076,5.511203965304997,18.365501836194277,11868.43630447247,50.66161745683178,13.11950519796284,16.140673236747325,10.380615866124677,11.020823155996936,0.5671675263511998,0.7840073529411765,0.7164912280701754,0.5665601703940362,0.1221449851042701,0.7294882209585702,0.909307875894988,0.8556149732620321,0.7239819004524887,0.1705069124423963,0.5052664188351921,0.7055306427503737,0.6669838249286394,0.5181058495821727,0.1088607594936708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023204207155812,0.0046960737577718,0.0070362473347547,0.0093412345879793,0.011547226630855,0.0139137874837027,0.0159495813744786,0.0182950484941296,0.0206028506574507,0.0228545683537952,0.0250466484857183,0.0270461756461201,0.0292832392527016,0.0312561147670981,0.0332838099954603,0.0352772150328688,0.0372211520536879,0.0392805994312874,0.0414262095642137,0.0433165609275869,0.0576069821583304,0.0717618748692195,0.0848022818074095,0.0972466068819058,0.1091142896292939,0.1240959269128283,0.1359485857910979,0.146655313714012,0.1568154145216072,0.1657855511350841,0.1781184729011003,0.1897034801328443,0.2010156258495264,0.2119032261591105,0.2211394632644082,0.2311874391000088,0.2398486927995179,0.247498790190981,0.256177428691418,0.2632259985342616,0.2699305555555555,0.2766221452234071,0.2829580851089029,0.288475141168431,0.2936136598407972,0.2979054104063355,0.3020226689210345,0.3064813754310948,0.311193159735717,0.3145414697261757,0.3130656108597285,0.3111832780614,0.3106703107830154,0.3089713955504189,0.3077060292543703,0.3054199256118654,0.3024900335379358,0.3025021315668656,0.304378964599959,0.30603302399316,0.3057217651458489,0.3063303132587197,0.308185692796256,0.3091873579102215,0.3112555774120808,0.3114988558352403,0.3139022378934797,0.3171749497991968,0.3202859445631986,0.324615628467269,0.3268698060941828,0.3282616762975136,0.3326850690087829,0.3346975898135516,0.3360127114683615,0.3413166588013214,0.3406676783004552,0.3439323807607164,0.3455540355677154,0.3471798780487805,0.0,2.308146217325838,53.74691179358825,161.22901271341792,246.23876970333336,fqhc2_100Compliance_implementation_low_initial_treat_cost,7 -100000,95783,45817,434.61783406241193,5860,60.00020880532036,4610,47.5658519779084,1776,18.16606287128196,77.34910350822409,79.67763689764595,63.34642956891118,65.0668404090967,77.12018410446802,79.45233879105075,63.2608916049439,64.98545124164433,0.2289194037560662,225.29810659520425,0.0855379639672762,81.38916745237168,170.09982,119.63891090478168,177588.7370410198,124906.20559471064,420.95303,278.0997045880185,438922.0007725797,289779.3288871914,401.60705,195.61673206715588,416331.05039516406,201882.6970306796,2996.74967,1373.996026689426,3096429.40814132,1402231.4363607585,1080.22276,478.53087813109295,1114952.945721057,486770.6149641296,1734.86192,732.7437446112473,1777637.0754726832,735445.971585218,0.38181,100000,0,773181,8072.215320046354,0,0.0,0,0.0,36425,379.6915945418289,0,0.0,36570,378.8041719303008,1500404,0,53882,0,0,0,0,0,65,0.6786172911685789,0,0.0,2,0.0208805320359562,0,0.0,0.0586,0.1534794793221759,0.3030716723549488,0.01776,0.3288317604946306,0.6711682395053693,24.70670561264998,4.221574113375246,0.3219088937093275,0.2468546637744034,0.2171366594360086,0.2140997830802603,11.241778604268202,6.037237739604781,19.031471813042696,12081.103884055025,52.27315204678537,13.600990051906129,16.7203131026928,11.065717807734789,10.886131084451662,0.5607375271149675,0.7776801405975395,0.6866576819407008,0.5684315684315684,0.1134751773049645,0.7193263833199679,0.9013761467889908,0.832,0.6837606837606838,0.1584158415841584,0.5019327980969372,0.7008547008547008,0.6375112714156899,0.5332464146023468,0.1019108280254777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0043280390030306,0.0065435067108987,0.0086642085910757,0.0109102371171757,0.0131520013029846,0.0154304001304551,0.0175843241312445,0.01981219793806,0.0220989953141945,0.0241466213170511,0.0261362120450277,0.0281174850471707,0.0303014708152783,0.0325913247894091,0.0346946785655263,0.0366307947019867,0.0384910512453597,0.0407128383644204,0.0429045997479875,0.0581286134708104,0.0718118208155965,0.0855971565471759,0.0985339708896011,0.1110713006091006,0.1261479281811745,0.1379829349727065,0.1490977147779112,0.1596679010105968,0.1696771014120117,0.1818142683412434,0.1935142032245158,0.2047142220337693,0.2149980317543629,0.2249994499328918,0.2351631801016622,0.2444456843162417,0.2532519365464827,0.2612276383106644,0.2688499444832362,0.2753009749158658,0.281871030376756,0.2882432992130643,0.2932577672869313,0.2983847461743988,0.3031181032463289,0.3078001401822369,0.3120712694877505,0.3171164634699351,0.3208810363269025,0.3197386149285907,0.3188738986784141,0.3177004112444369,0.316700125651728,0.3154043664752067,0.3127801147227533,0.3102526801808924,0.3106784970396733,0.311079642394049,0.3117849684984561,0.3126239754481829,0.3145947442311114,0.3166753899298649,0.317423021840315,0.3195150755585548,0.3204642287685914,0.3223896816998884,0.3266163418717033,0.3290118020081028,0.3327353187417773,0.3372427326244694,0.3412339905404687,0.3452237384957156,0.3491929931920752,0.3501989766913019,0.355241065003598,0.3574527424852805,0.3560358890701468,0.3615725359911406,0.3581560283687943,0.0,2.201859050533383,54.44801082384151,170.24157429896763,253.95836064219472,fqhc2_100Compliance_implementation_low_initial_treat_cost,8 -100000,95661,45550,431.2729325430426,5903,60.52623326120362,4630,47.76241101389281,1846,18.900074220424205,77.31532774038504,79.70772086584616,63.31028192710126,65.07627512114692,77.08196936835557,79.47532306866037,63.22292618722668,64.99166585254905,0.2333583720294711,232.3977971857829,0.0873557398745816,84.60926859787321,170.8971,120.17262781858132,178648.6656004014,125623.4283758076,421.97363,278.5889879436299,440486.091510647,290597.7963262247,398.22458,194.1696015984485,411884.38339553215,199570.91835634413,3057.77865,1403.3394684113937,3160157.5250101923,1430676.1464038568,1118.94457,497.9663864771354,1153102.9991323529,503958.4328797897,1814.803,767.5006966423932,1861604.938271605,772051.9338334342,0.37923,100000,0,776805,8120.393890927337,0,0.0,0,0.0,36503,380.9389406341142,0,0.0,36295,375.0222138593575,1494631,0,53625,0,0,0,0,0,72,0.7422042420631187,0,0.0,2,0.0209071617482568,0,0.0,0.05903,0.1556575165466867,0.3127223445705573,0.01846,0.3332255456750202,0.6667744543249798,24.43490785500303,4.367078769508548,0.3136069114470842,0.2347732181425486,0.2233261339092872,0.2282937365010799,11.185530315281268,5.827873917543679,19.676321282921307,12034.700710790992,52.63704737912696,13.125974820137724,16.475558910483016,11.493925393531065,11.541588254975132,0.555939524838013,0.7782888684452622,0.6935261707988981,0.5831721470019342,0.1116367076631977,0.7225656877897991,0.9124087591240876,0.8589420654911839,0.7654320987654321,0.1358024691358024,0.4913069544364508,0.6967455621301775,0.6312796208530805,0.527180783817952,0.1044226044226044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819174585165,0.0048865548774306,0.0072865290547808,0.0095503220693719,0.0119120279947916,0.0141074611662846,0.0164007996409775,0.0189060824268423,0.0209950401390806,0.0231838941569213,0.025383053350563,0.0275908824768107,0.0295657720123036,0.0318701700154559,0.0339075773371455,0.035908202418012,0.0379634042729552,0.0401249623763609,0.0419093783806274,0.0441076844507905,0.0585819959879638,0.072328262258007,0.085504980006507,0.0979649388639855,0.1098142676234698,0.1250423405876873,0.1372115986961553,0.1477355033871586,0.1579594279728949,0.168468052678466,0.180446427609101,0.1922060766182298,0.203964340528361,0.2140058658728769,0.2234729167125581,0.233896462601635,0.2433452855690716,0.2528502774307548,0.2615084141439375,0.2686796432583626,0.2750249032826001,0.2814728092255458,0.2873266459016781,0.2922201821651006,0.2973396691904768,0.3023006361887853,0.3072183539548164,0.3116060066174599,0.3150025243698784,0.318699594778316,0.3172544742051468,0.3152010793991712,0.3143955394103235,0.3139086059589724,0.3120961392771729,0.3096860121553558,0.3074976273331224,0.3080980148070497,0.3089491907011649,0.309624400591832,0.310486583451678,0.3120524000236747,0.3131778401239479,0.3141177522464124,0.315193071093468,0.3149485207871758,0.3153909888288906,0.3187650107445329,0.3213882618510158,0.324133530092131,0.3265138368800804,0.3292760710109493,0.3305320358903071,0.3343572415911534,0.3347541915316851,0.3382651234936165,0.3408536585365854,0.3448413490321293,0.3502886994775914,0.3490315229775921,0.0,2.497116316126309,56.54588466642821,168.12079575686127,251.37477737995675,fqhc2_100Compliance_implementation_low_initial_treat_cost,9 -100000,95640,45577,433.3228774571309,5730,58.91886240066918,4526,46.86323713927227,1747,17.92137181095776,77.3146043072854,79.73371703239296,63.296484254502126,65.08279783678843,77.09248815285781,79.51296977212914,63.21357411772081,65.0028592405595,0.2221161544275958,220.7472602638205,0.0829101367813152,79.93859622892785,170.55984,119.9545003163692,178335.2572145546,125422.94052317984,423.37126,279.3336080106999,442220.9953994145,291617.00963059376,392.54024,190.60024838193723,407843.6219155165,197203.1102787486,2948.3609,1353.0717423569854,3055151.171058135,1387136.5771193912,1023.74079,453.02636151424855,1059497.8042659976,462765.8631474788,1709.30492,720.3835491010882,1756293.705562526,726182.3474624454,0.38116,100000,0,775272,8106.148055207026,0,0.0,0,0.0,36671,382.9673776662484,0,0.0,35844,372.2814721873693,1494748,0,53662,0,0,0,0,0,75,0.7737348389795065,0,0.0,1,0.0104558762024257,0,0.0,0.0573,0.1503305698394375,0.3048865619546247,0.01747,0.339256061109266,0.660743938890734,24.38725712838986,4.308209751986977,0.3267786124613345,0.2441449403446752,0.2158638974812196,0.2132125497127706,10.779079738327855,5.481535834538375,18.61560340155373,11975.952910861835,51.60414314784003,13.361663768090322,16.79218501090167,10.928261797808135,10.522032571039896,0.556783031374282,0.783710407239819,0.6835699797160243,0.5568065506653019,0.1025906735751295,0.7322580645161291,0.9088729016786572,0.8604060913705583,0.7030567685589519,0.145,0.490566037735849,0.7078488372093024,0.6193548387096774,0.5120320855614974,0.0915032679738562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022291347917278,0.0045836671365263,0.0066187517765054,0.0090230147843316,0.011444091796875,0.0135974740272968,0.01578931263451,0.0178261313719481,0.0199650203025437,0.0222527163060286,0.0241335808572395,0.026173869274466,0.02822929097568,0.0301999938178108,0.0321957966885503,0.0344214324858085,0.0363478116710875,0.0383309627384005,0.0400998855478098,0.0422502894212617,0.0566826586393235,0.070351127126456,0.0837104785106003,0.0961568825591309,0.1078542099874391,0.1234501233548277,0.1345279571719918,0.1450982063879445,0.1555108634024754,0.1656460831077306,0.1782743329413161,0.1905546462599044,0.2010743432450396,0.2121212121212121,0.222589640995117,0.2332371545888358,0.2432305577595744,0.2519519147354071,0.2604012815560453,0.2686247075553925,0.2750923342325549,0.2816748169119539,0.2878920582317434,0.2930276043102518,0.2977264174991806,0.3026122941632899,0.3072008202358178,0.3115825061325131,0.3149501403313631,0.3194667862134437,0.3183548816747165,0.3162820741880953,0.3151113176460648,0.3134962498374207,0.3122398001665279,0.3098004353024126,0.3081859669138619,0.3087309026921243,0.3086660842455076,0.3094323440598924,0.3102519499466921,0.3110288908131937,0.3121196965908143,0.3136063055240131,0.3141096086769554,0.3144032495925073,0.3155570652173913,0.3197993269350617,0.3262633650262947,0.3294706554727838,0.3324909747292419,0.3358102766798419,0.3375888308911389,0.3416963541271887,0.3461034095166729,0.3476706779459073,0.3498993652268153,0.3513733468972533,0.3522633744855967,0.3604336043360434,0.0,1.8205851541014952,54.96253938723691,171.4771506267415,242.17847209313464,fqhc2_100Compliance_implementation_low_initial_treat_cost,10 -100000,95647,45723,434.0439323763421,5840,59.94960636507156,4586,47.37210785492488,1734,17.81550911162922,77.29129418892526,79.69152368987791,63.29829466637945,65.07005457073693,77.07703111120009,79.47785466617975,63.21953488957521,64.99368123686884,0.2142630777251781,213.6690236981593,0.0787597768042402,76.37333386809075,170.38318,119.9357556398267,178137.50561962216,125394.1635804852,419.19689,277.5659488218851,437651.7507083338,289577.3308602066,400.88026,195.4568666764964,415319.0168013633,201467.8254734541,3000.37767,1371.257875172212,3101948.686315305,1399035.065555831,1091.80961,484.76602563366674,1126893.4937844365,492363.3361863319,1702.7348,712.2133356708729,1751384.5285267702,720604.6327922208,0.38101,100000,0,774469,8097.159346346461,0,0.0,0,0.0,36300,378.935042395475,0,0.0,36588,378.694574842912,1494427,0,53569,0,0,0,0,0,66,0.6795822137651991,0,0.0,0,0.0,0,0.0,0.0584,0.1532768168814466,0.296917808219178,0.01734,0.3396534815299117,0.6603465184700883,24.149899161089067,4.340170011262307,0.3190143916266899,0.2488006977758395,0.2130396860008722,0.2191452245965983,11.236888778638292,5.764473634234794,18.54102912146964,12021.56159782628,52.074937771500046,13.666094691748674,16.463225321795772,10.9072715071518,11.038346250803803,0.5704317488006978,0.7887817703768624,0.7081339712918661,0.5844421699078812,0.108457711442786,0.7397260273972602,0.930715935334873,0.873972602739726,0.7194570135746606,0.1666666666666666,0.5076233183856502,0.7019774011299436,0.6530054644808743,0.544973544973545,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081986973653,0.0044205616952245,0.0068917917643595,0.0091250889137282,0.0113339234298853,0.0131995722360849,0.0157432143075636,0.0179304429513754,0.0201619499427449,0.0222800155632461,0.0242329149232914,0.026549308793624,0.0285376266652949,0.0305319127011932,0.0327042986331915,0.0349792110543408,0.0370592990237735,0.039112873918867,0.0410271884462109,0.043173193210726,0.0575295224161354,0.0716664920917565,0.0847648047039059,0.0977160298915903,0.1100862241828754,0.1255291677250021,0.138148816473835,0.1488017893279369,0.1600620022449088,0.1694684185667053,0.1810360627459436,0.1932200820692716,0.2051259726832453,0.2146641562308433,0.2241799169173471,0.2347977468287057,0.2434992404610848,0.2517134657588205,0.2590200774041244,0.2658793342420875,0.2731207183854842,0.2790629678143712,0.2854775320801174,0.290643583349319,0.2962413692502188,0.3018998272884283,0.3062103865520956,0.3109113137384748,0.3162082998522512,0.3206571221217919,0.3188948282594352,0.3170573902509533,0.316143402929525,0.3149690554687951,0.3135624730431161,0.3111932628737096,0.3094159034006275,0.3101905905181628,0.3108073429026022,0.3117904710825064,0.3132690576230492,0.3137988362427265,0.3138295640498468,0.314244153519078,0.3145244555430163,0.3149131022999271,0.3156969490756493,0.318703007518797,0.3233354381533712,0.3256561966405908,0.3271015283842794,0.3317645814605256,0.3346558347502991,0.3359828798532558,0.3389398091278465,0.3469997609371265,0.3477318470351447,0.3530869295890976,0.3548655392292764,0.3637747336377473,0.0,2.2301740136351715,54.39265620026213,168.5248082165569,253.6555265228287,fqhc2_100Compliance_implementation_low_initial_treat_cost,11 -100000,95638,45721,434.49256571655616,5770,59.05602375624751,4531,46.85376105732031,1787,18.3818147598235,77.27514686010801,79.68687362305413,63.27600815666828,65.05656501267886,77.04696241663883,79.45828128133844,63.19091834423512,64.97328239374154,0.2281844434691748,228.59234171568232,0.0850898124331607,83.28261893731792,170.16626,119.72942909535908,177927.45561387733,125190.22678784486,421.4526,278.8058673985689,440187.64507831616,291034.8683562693,400.53786,195.55598433419243,415547.4811267488,201921.38950817005,2979.22076,1374.3776041769463,3083049.7187310485,1405010.4918305986,1110.49858,500.3334916766793,1150741.3162132206,512746.911977121,1757.29396,742.2135543739628,1808929.630481608,752585.2474000619,0.37988,100000,0,773483,8087.611618812605,0,0.0,0,0.0,36393,380.0058554131203,0,0.0,36419,377.50684874213175,1493246,0,53543,0,0,0,0,0,83,0.8678558731884816,0,0.0,0,0.0,0,0.0,0.0577,0.1518900705485943,0.3097053726169844,0.01787,0.3296939619520265,0.6703060380479735,24.425720962288608,4.351614972299487,0.309203266387111,0.2436548223350254,0.2187155153387773,0.2284263959390862,11.374817975737216,5.8628837869342005,19.12143848130425,12022.312654819929,51.45005003913354,13.218872793317871,15.80388825183062,11.071270589732531,11.356018404252517,0.5667623041271243,0.8043478260869565,0.7059243397573162,0.5681130171543896,0.123671497584541,0.7354581673306773,0.9303482587064676,0.8932291666666666,0.748898678414097,0.1487603305785124,0.5021367521367521,0.7321937321937322,0.6352015732546706,0.5143979057591623,0.116015132408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.0047130129835906,0.006625741971488,0.0088776028440832,0.0108422583630834,0.0131273423496822,0.0152751152261695,0.0175189635634143,0.019741752118839,0.0221473623853211,0.0243094376006482,0.0264017587475087,0.0284888267006872,0.0305825843159891,0.0324969021065675,0.0346768186708598,0.0368481607015143,0.0388733681597723,0.0406889016077839,0.0426534847584185,0.0569723447396475,0.0712227426571521,0.0843120364728869,0.0967932240529265,0.1089879688605803,0.1250278016077272,0.1365752056279356,0.1473892927957699,0.1582135556578229,0.1686907551103755,0.1813441858456755,0.1934091673082553,0.2044186249291537,0.2145371213034944,0.2238198230010372,0.2337868606652968,0.2426785734268864,0.2517657677987137,0.2592984612583083,0.2667524145296691,0.2739263590171922,0.2807838446383338,0.2866854112538705,0.2920589930822444,0.297323600973236,0.3020907901557602,0.3064336137825536,0.3106984090590648,0.3149568490039582,0.3198593095058643,0.3189956420254463,0.3179606632392871,0.3167418899858956,0.3148282045349375,0.3131865681625615,0.3107648464791322,0.3079126444057604,0.309082552241501,0.3100603415947908,0.3108168321243338,0.3124824369133929,0.3143962573284115,0.3159954789015405,0.316254969401885,0.3183815584103734,0.3196254389387437,0.3209736123748862,0.324197042479043,0.3290415380297502,0.3310856372218476,0.3339992735197966,0.3374057154998406,0.3405110176407809,0.3459557709784913,0.3537319044933258,0.3590568060021436,0.3542017449869891,0.3548972188633615,0.361247947454844,0.3639468690702087,0.0,2.0571390085228978,55.08937720264453,166.80098690014006,244.86835281202772,fqhc2_100Compliance_implementation_low_initial_treat_cost,12 -100000,95682,45386,430.4362367007379,5743,58.72577914341255,4519,46.62318931460462,1768,18.10162831044501,77.28391542799022,79.68028467687337,63.28504443165552,65.05909552237961,77.05781487669081,79.4573970632687,63.19996592209438,64.97780426533052,0.2261005512994103,222.88761360466933,0.0850785095611428,81.29125704908802,169.3527,119.23285200851927,176995.3596287703,124613.67029171556,421.9595,278.67311914003244,440388.6937982065,290643.0974108898,394.12521,191.6778181532281,408221.4941159257,197441.09150588495,2938.17284,1353.0218296325556,3032536.6108567966,1376677.3501905196,1102.45627,490.5251457437197,1137252.1790932466,498513.3784320494,1732.64494,735.4523087951042,1775222.445183002,738334.4081973879,0.3781,100000,0,769785,8045.243619489559,0,0.0,0,0.0,36469,380.5104408352668,0,0.0,36062,373.1631863882444,1499981,0,53839,0,0,0,0,0,61,0.6375284797558579,0,0.0,1,0.0104512865533747,0,0.0,0.05743,0.1518910341179582,0.3078530384816298,0.01768,0.3392114456829146,0.6607885543170854,24.151497213824417,4.285837180405501,0.3177694180128347,0.242310245629564,0.2232794866120823,0.2166408497455189,11.261380810192112,5.979809443632905,18.944693702619045,11878.731282538522,51.41067688774071,13.141361819431395,16.198653436379892,11.329574049840556,10.741087582088854,0.5687098915689311,0.782648401826484,0.6754874651810585,0.6035678889990089,0.1368743615934627,0.7277867528271406,0.9056122448979592,0.8347107438016529,0.7669172932330827,0.1797235023041474,0.5086863761048461,0.7140825035561877,0.6216216216216216,0.5450874831763123,0.1246719160104986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219209176952,0.0048381207400194,0.0072489517447231,0.0094409609658438,0.0119654467201855,0.0142918262570287,0.0165128257432811,0.0186399477060097,0.0208642290974175,0.0229773197566022,0.025073352894105,0.0271158924406358,0.0292035398230088,0.0310519318568292,0.032898064516129,0.0350376437494829,0.0370439449988083,0.0389785643846992,0.0408479565619896,0.0429911412193851,0.0575386254661694,0.0714353020007747,0.0838335922085554,0.0965433787551954,0.1079977203647416,0.1228473141042603,0.1349176010873258,0.1455972565391497,0.15632282202031,0.1663052812365822,0.1787801039218645,0.1904395592489463,0.2024698887025461,0.2122579514588627,0.2212510333425186,0.2320092368497013,0.2416615419019399,0.2494787029001025,0.2574874120548754,0.2643606952331784,0.271563568902545,0.2782702499882745,0.2842347525891829,0.2891997358467911,0.2947570877308306,0.2994594327746649,0.3033785307902453,0.3072192513368983,0.3108649173955296,0.3151109703639194,0.3133638690556379,0.3113484058290102,0.310848664855506,0.3091168913652242,0.3076385585156993,0.3047156365419687,0.3029194189675109,0.3030819951777191,0.3033819232018046,0.3047624149568758,0.3051620287842681,0.3059663032705649,0.3067923575456611,0.3071276237512628,0.3083919974840941,0.3091988285744169,0.3096586865552677,0.313735364471862,0.317015092621774,0.3200837646686949,0.3245649902321566,0.3254412852763978,0.3275120064866213,0.3309637832984136,0.3356462207419742,0.3409543909016297,0.3418259023354564,0.3439516129032258,0.3493036211699164,0.3508500772797527,0.0,2.362485947218403,54.13044052771233,171.1875796010352,240.9398365881706,fqhc2_100Compliance_implementation_low_initial_treat_cost,13 -100000,95667,45827,435.06120187734535,5825,59.75937366071895,4585,47.456280640137145,1818,18.65847157326978,77.35161970545354,79.75774773684842,63.31721993396855,65.0947326801864,77.11904053070401,79.52707581276567,63.2296625314859,65.01040658358984,0.2325791747495316,230.67192408274195,0.0875574024826519,84.32609659655554,171.50518,120.61302190770822,179273.08267218582,126075.89023143637,426.82976,282.43598018318903,445716.7048198438,294782.9661044969,399.91455,194.4556164828931,415889.073557235,201550.3393918942,3002.21881,1382.4999052816186,3106524.3396364474,1413444.2757498603,1087.21295,482.3903022659568,1121624.0709962682,489407.47830072686,1779.5649,760.5208772968463,1826808.805544232,765258.3680407902,0.38224,100000,0,779569,8148.776485099355,0,0.0,0,0.0,36906,385.3052776819593,0,0.0,36393,378.2181943616921,1488538,0,53373,0,0,0,0,0,89,0.930310347350706,0,0.0,0,0.0,0,0.0,0.05825,0.152391167852658,0.3121030042918455,0.01818,0.337924249877029,0.6620757501229709,24.29235951239361,4.282119789612319,0.3221374045801526,0.2471101417666303,0.2091603053435114,0.2215921483097055,10.86924400925965,5.656502268649645,19.42747124186094,12025.958640198638,52.129804925418334,13.607695529067769,16.613443475112692,10.556492058421338,11.35217386281654,0.5585605234460196,0.7793468667255075,0.6912660798916723,0.5610010427528676,0.1171259842519685,0.7144026186579379,0.9069767441860463,0.8403361344537815,0.6926605504587156,0.1474654377880184,0.5019327980969372,0.701280227596017,0.64375,0.5222672064777328,0.1088861076345431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417179157252,0.0044922172083354,0.0067793857957659,0.0090018694627326,0.0114435097498703,0.0136382155225096,0.0159384081986437,0.0180637387548375,0.0201124744376278,0.0221858035439926,0.0243449535260684,0.0265532194751012,0.0286599296108012,0.0305776348209775,0.0326402445952506,0.034886608177454,0.0369706266453846,0.0389199177792081,0.0409084761280522,0.0429609701671515,0.0581307864323183,0.0720919761682879,0.0855718259591665,0.0983530649828992,0.1103429349489661,0.1265561483739837,0.1384942125942444,0.1496642149024624,0.1601181304571135,0.1696005670894777,0.1825966910416532,0.1938370858343987,0.2048733219375701,0.2144749518304431,0.2244248411361108,0.2336500404660805,0.2428102165314741,0.2512806079369546,0.2589379988419487,0.266964439099811,0.2742952329172788,0.28132122444686,0.2875742023981269,0.2936668542622107,0.2978643368523238,0.3021784615384615,0.3070255417473303,0.3122952276941051,0.316304123178671,0.3201958771029145,0.3185111502426304,0.3170614486783384,0.3159042007116036,0.3141641425068513,0.3125398685635449,0.3105530249763076,0.3081929918796802,0.3083707662546313,0.3086900129701686,0.3088473953596204,0.3101355906809498,0.3098057792515395,0.3099671183529855,0.3110194066473343,0.3131180118275193,0.3142420078301226,0.3159954622802042,0.3185801928133216,0.321057964431711,0.3249792465509744,0.3272273860802539,0.3284107630859785,0.3325219996255383,0.3344916150475903,0.3349491936235667,0.3340049780727747,0.3373106929784304,0.3313941825476429,0.332436069986541,0.3406716417910447,0.0,1.8663877303697889,53.8755272484532,174.999282726231,249.3627262831885,fqhc2_100Compliance_implementation_low_initial_treat_cost,14 -100000,95788,45886,434.1357998914269,5802,59.120140309850925,4521,46.58203532801604,1749,17.956320207124065,77.3507064425629,79.67807912044718,63.34838135415546,65.06947759491752,77.12936343342771,79.4570666770583,63.26672368351002,64.99004015571056,0.2213430091351824,221.01244338888648,0.0816576706454341,79.43743920695567,170.85684,120.11019318008044,178369.77491961414,125391.69121401472,418.39505,277.0109585381554,436197.26896897313,288596.22138279886,397.668,194.30291540881072,410657.5875892596,199520.34022457144,2981.12586,1369.9126908994804,3075300.6013279324,1393238.997473045,1100.92872,492.4131612108131,1128118.563911972,492845.2950378051,1727.20362,722.292476899133,1774185.4303253016,729148.6120543123,0.38201,100000,0,776622,8107.7170418006435,0,0.0,0,0.0,36181,377.0722846285547,0,0.0,36304,374.4205954816888,1499286,0,53786,0,0,0,0,0,64,0.6681421472418257,0,0.0,1,0.0104397210506535,0,0.0,0.05802,0.1518808408156854,0.3014477766287487,0.01749,0.3376623376623376,0.6623376623376623,24.349283921012017,4.415759254148764,0.3147533731475337,0.2444149524441495,0.214554302145543,0.2262773722627737,11.352998191301964,5.613583083127411,18.57785870261387,12058.601522368926,51.38242230258621,13.260067943774391,16.0790574698936,10.82098745482526,11.222309434092962,0.5635921256359212,0.7800904977375566,0.6985242445537596,0.5742268041237113,0.1319648093841642,0.7446982055464927,0.9125295508274232,0.8904494382022472,0.7533632286995515,0.1875,0.496206373292868,0.6979472140762464,0.6344892221180881,0.5207496653279786,0.1163954943679599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.0051703163017031,0.0074786650024861,0.0098326019827726,0.0120790629575402,0.0142527003776965,0.016387428152134,0.0186751844557153,0.0207649938175092,0.0228100695865738,0.0250425231059286,0.026975722875495,0.0289910180256099,0.0312323070113132,0.0334096392996349,0.0353719008264462,0.0375708786887959,0.039538475892311,0.0417674853315333,0.043920923599038,0.0585669716921086,0.0724972554759788,0.0860281554313986,0.0982996700224889,0.1109776147717212,0.1266027504413179,0.1380034357701851,0.149567919628794,0.1601063318707363,0.1692782577007995,0.1825149081828163,0.1941961631991353,0.2052262726136795,0.2159844437889861,0.2252759333362649,0.2358523959116853,0.2450164354560142,0.2535916877281662,0.2612518696460137,0.268570317236961,0.2750496604610338,0.2812770031995142,0.2869928118793152,0.2920003351647694,0.2972681175243225,0.3019669144798385,0.3061344327836082,0.3104013624463028,0.3150814285899078,0.3188569923623913,0.3176848269933376,0.3153693985768058,0.3137676878498889,0.3126489234190651,0.3117698576454347,0.3088343332925187,0.3066974815190034,0.3075974954395306,0.3086506254699569,0.3089422184129705,0.3096828673297054,0.3109642701697463,0.3131113816700953,0.3126122485632184,0.3142382431553854,0.316090752260965,0.3174889174889175,0.3209853150165798,0.3259927416229167,0.3299558946239123,0.3331502585930706,0.3352123261931605,0.3382698785991229,0.3431191246725227,0.3482572966846132,0.3534883720930232,0.3527683266316115,0.3520281456953642,0.3594056630221474,0.3685647425897035,0.0,2.441719660260291,53.11653029099413,172.2909229214317,243.1265150279,fqhc2_100Compliance_implementation_low_initial_treat_cost,15 -100000,95732,45586,433.06313458404713,5788,59.34274850624661,4549,46.891321606150505,1824,18.624911210462542,77.31652017658898,79.67729899436502,63.31665033110207,65.06256451912786,77.09292054718722,79.45611088310797,63.23393320080826,64.98303400532082,0.223599629401761,221.1881112570495,0.0827171302938083,79.53051380704323,170.22962,119.84288602575826,177818.93201855177,125185.8166817347,423.44352,279.69099070504905,441695.6816947312,291534.2630521132,399.57385,194.43179620737877,413361.88526302594,200041.57585777304,3011.7691,1377.2025798571765,3106690.709480633,1399369.8222229455,1090.18579,484.9716293379293,1119659.2884302011,487572.9895291415,1792.16208,746.8061671920029,1832569.7154556469,748752.0092610518,0.37887,100000,0,773771,8082.67872811599,0,0.0,0,0.0,36687,382.5680023398655,0,0.0,36478,377.0003760498057,1495844,0,53694,0,0,0,0,0,69,0.720762127606234,0,0.0,1,0.0104458279363222,0,0.0,0.05788,0.1527700794467759,0.3151347615756738,0.01824,0.3397255744751198,0.6602744255248801,24.2424942575352,4.299274301571795,0.3108375467135634,0.2360958452407122,0.2222466476148604,0.2308199604308639,11.161954489571222,5.84246099068008,19.35444081432,11938.130394763391,51.61779194695418,12.966035494128857,16.024883850940665,11.154145954899253,11.472726646985407,0.5570455045064849,0.7988826815642458,0.6888260254596889,0.5727002967359051,0.1171428571428571,0.7402912621359223,0.9326683291770572,0.8842364532019704,0.7289719626168224,0.1209302325581395,0.4886809538182916,0.7191679049034175,0.6101190476190477,0.5307402760351317,0.1161676646706586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0043186910108372,0.0065465617863486,0.0086468801121757,0.0108642578125,0.0130568512822602,0.0151652677633524,0.0174116397577688,0.0195908017300436,0.0217046327105195,0.0237572799606266,0.0259474889361221,0.0281653932769134,0.0302328215583907,0.0320793835807193,0.0341788500284134,0.0361985797983562,0.0382237620065141,0.0402694330679195,0.0422865358169771,0.0571076588991898,0.0709547128746023,0.0837799007938588,0.096486892882304,0.1083380780666793,0.1240653587858918,0.1354981064423393,0.1468700437480707,0.157496634687293,0.1679987126535428,0.1809211943642552,0.1932108384192529,0.2042454163857413,0.2137015656433132,0.2230404297240475,0.2329661317492685,0.2430102724430549,0.2520364536453645,0.2601028155108433,0.2673883161512027,0.2736622895817666,0.2786971522133208,0.2846964981005243,0.2900290160907412,0.2949281878052929,0.300346558464783,0.3048644587741814,0.309843557071755,0.3138836384350483,0.3183791988385138,0.3170005924489686,0.3154175677350928,0.3133043576428088,0.3118621987406818,0.3105115919169072,0.3087820434196001,0.3067188291941206,0.3062969723880474,0.3073604191278443,0.3082970683572413,0.3083727743971152,0.3086302454473476,0.3102782152230971,0.3117467855382823,0.3126940199735291,0.3121712410811937,0.3131984036488027,0.3151634971442917,0.3191668125328198,0.3219929502158501,0.324121630834962,0.3271886952826179,0.3280090554647214,0.3315176274776819,0.3362980994288924,0.3388822829964328,0.3428877988963826,0.3421424248537422,0.345638501503965,0.3465497521921464,0.0,2.3945487483261063,53.88936334980574,168.47970503430466,248.64137639716748,fqhc2_100Compliance_implementation_low_initial_treat_cost,16 -100000,95666,45557,432.347960612966,5801,59.300064808814,4560,46.97593711454435,1806,18.48096502414651,77.40264542862671,79.78223327387391,63.35728834693722,65.11168874313563,77.18181425702568,79.5634142501529,63.27587798262626,65.03335871921738,0.2208311716010342,218.8190237210108,0.0814103643109547,78.33002391825516,170.70856,120.07254124854796,178442.24698429953,125512.24180852964,422.76011,278.8308974700992,441199.5588819434,290750.42300679616,396.51004,193.204282013368,409459.0972759392,198270.1418204964,2979.73842,1364.8453531488467,3074189.628499153,1386191.5101131126,1101.78314,487.2165654885437,1133872.4729789058,491509.2998804455,1765.6312,730.6567309308102,1808927.121443355,733697.9703658863,0.38061,100000,0,775948,8111.011226559071,0,0.0,0,0.0,36624,382.0793176259068,0,0.0,36239,373.7796082202664,1499817,0,53748,0,0,0,0,0,75,0.7839775886939979,0,0.0,1,0.0104530345159199,0,0.0,0.05801,0.1524132313917133,0.3113256335114635,0.01806,0.3447992100065832,0.6552007899934167,24.329994320616777,4.3569934319806,0.3168859649122807,0.2432017543859649,0.2160087719298245,0.2239035087719298,11.425251494976164,6.019139658657388,18.989023223822176,12009.111756856622,51.5068312103741,13.37127762865366,16.167570681786614,10.986692755915266,10.981290144018551,0.5679824561403509,0.8169522091974752,0.6816608996539792,0.5746192893401015,0.1302644466209598,0.770387965162312,0.9318181818181818,0.8992042440318302,0.746938775510204,0.2039800995024875,0.4904458598726114,0.7414050822122571,0.6048689138576779,0.5175675675675676,0.1121951219512195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290903383256,0.0047533623197218,0.0071515520389531,0.0095670454891685,0.0119380522874487,0.014092825285624,0.0163222445380121,0.0184321450077055,0.0205916917888712,0.0226677309754799,0.0248775087640173,0.0270716984231274,0.0290355747480978,0.0310205258658866,0.0328934471053147,0.0350583444440999,0.0370895761930894,0.0390586086667773,0.0410591343053851,0.0432303988494127,0.057058688339636,0.0706657173371306,0.0837294716406946,0.0965244466885466,0.108680518932602,0.1239288208036224,0.1357076152474743,0.1460189709686691,0.1570504942559444,0.1671313672922252,0.1798994217287832,0.1919185360733261,0.2031078391927012,0.2144661032699603,0.225348394689662,0.2350890010626992,0.2444659934461312,0.2523335093059565,0.2604199700992162,0.2677587507716226,0.2735541960060025,0.2798273246995683,0.2859655750478124,0.291530126533834,0.296492950746142,0.3017124720124006,0.3061071468739456,0.3102450171385045,0.3146938037554562,0.3196942386885418,0.3184960468206773,0.3168375178160289,0.3152978795018512,0.3141488535343364,0.3138380505703591,0.3111850235723113,0.308456062256318,0.3083813703655181,0.3095278590380298,0.3099695951352216,0.3107966848353617,0.310855908912446,0.3122387438910263,0.3125125036121546,0.3142015659794555,0.3160862785862786,0.3169934640522875,0.3221537402621781,0.3264834587782251,0.3293242601677481,0.3328785811732606,0.3349109279446955,0.3377808546793379,0.3411406844106464,0.341856954142291,0.3418198962753418,0.3462421552120006,0.3548451950140732,0.3650490730643402,0.3696878525761564,0.0,2.6417481560075373,54.727239204456666,165.6686218866063,246.0943019320861,fqhc2_100Compliance_implementation_low_initial_treat_cost,17 -100000,95720,45711,433.6188884245717,5947,60.83368157124948,4686,48.29711659005432,1847,18.89887170915169,77.33907921770925,79.70628601642946,63.32552877917672,65.07540051535436,77.1083887739704,79.47965660058439,63.23942427062787,64.99393824360027,0.230690443738851,226.62941584506768,0.0861045085488427,81.46227175409138,170.23292,119.71518704502846,177844.44212285834,125067.8719651363,422.14025,279.0019067821685,440343.5854575846,290804.99037000467,402.65334,196.78606196718468,416665.5871291266,202410.3068736801,3087.85696,1418.6045762471765,3182071.2599247806,1438180.345013764,1121.70951,497.8494615017289,1147467.258671124,495800.51572240907,1811.83126,759.1456719542565,1854194.1913915584,757582.3987665283,0.38045,100000,0,773786,8083.838278311743,0,0.0,0,0.0,36523,380.8295027162558,0,0.0,36753,379.9519431675721,1497850,0,53740,0,0,0,0,0,79,0.8253238612620142,0,0.0,0,0.0,0,0.0,0.05947,0.1563148902615324,0.3105767613922986,0.01847,0.33642617181251,0.66357382818749,24.26329171649549,4.324912096440783,0.314767392232181,0.2424242424242424,0.2168160478019632,0.2259923175416133,11.189208146730238,5.780889148559877,19.62696943433915,12048.303993610456,53.275982301713086,13.737838417931426,16.71024292134002,11.397833704550642,11.430067257891007,0.5729833546734955,0.7931338028169014,0.7159322033898305,0.5954724409448819,0.1161473087818696,0.7653374233128835,0.9322799097065464,0.8822055137844611,0.77431906614786,0.1658536585365853,0.4988172678888232,0.7041847041847041,0.654275092936803,0.5349143610013175,0.104215456674473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047451028105608,0.0067902926220273,0.0088705088603479,0.0109864398848458,0.0134434610801617,0.0156936725641156,0.0179174876721559,0.0200004090063191,0.0223273725393801,0.02421364619976,0.0264268767396238,0.0284985550173295,0.0306505120438482,0.0325460888953116,0.0348593115001602,0.0370347349556101,0.0390838236972923,0.0411289400068634,0.0431847306293822,0.057940295078886,0.0724987967438843,0.0854653357379524,0.0980398342692493,0.110804112839441,0.1258951332254413,0.1372977560872102,0.148719149932923,0.1597452283754034,0.1691828960781158,0.1818583498577463,0.1942802070474086,0.2048634533783048,0.2148469130939093,0.2248097864984199,0.2353606350191791,0.2443608182955154,0.2526508926360341,0.2607555565645787,0.2678051575931232,0.2740436367845361,0.2810500333399623,0.2879477748737538,0.2931090223313177,0.2979946864650435,0.3032237432813057,0.3075645572149243,0.3104997905373668,0.3147518958233751,0.3186322308604559,0.3177175724345535,0.3160976414316345,0.3143118749119594,0.3142576232956928,0.313906674787931,0.3117463426577707,0.3095038512028089,0.3097791280072255,0.3101755226331816,0.3105785567379057,0.3112519453246583,0.3128014548904879,0.314303048053388,0.3140403453057208,0.3155318842665899,0.3177436537012498,0.3189829446769739,0.3236901620806634,0.3274116121798241,0.3307533539731682,0.3343057708086425,0.3360345471024151,0.3398175136231149,0.3435728512333384,0.3469847830170956,0.3486795146324054,0.3527131782945736,0.3551957368313179,0.3625486922648859,0.3612928049249711,0.0,2.3722300547287016,57.03023081478637,169.60860721861613,256.8502603284608,fqhc2_100Compliance_implementation_low_initial_treat_cost,18 -100000,95689,45618,432.9860276520813,5756,59.0245482761864,4532,46.8078880540083,1795,18.372017682283232,77.30793472821749,79.6840526145597,63.31631099018998,65.07025773581955,77.08048638439708,79.45795468194933,63.23206999940047,64.98840968563515,0.2274483438204129,226.09793261037225,0.0842409907895103,81.848050184405,171.952,120.98603681819924,179698.5860443729,126436.52045039776,421.58093,278.8373678575361,440005.7059850139,290832.9213199461,397.42164,193.8800002909102,411904.9734034215,199906.39577347547,3012.77303,1392.1740191769325,3112770.987260814,1419241.1009790075,1076.55002,486.9645394937838,1108793.2991252912,492685.9677229574,1760.20384,746.9749016851861,1802967.154009343,751531.1028161136,0.37966,100000,0,781600,8168.117547471496,0,0.0,0,0.0,36451,380.3258472760714,0,0.0,36204,374.9020263562165,1488780,0,53468,0,0,0,0,0,86,0.8987448923073709,0,0.0,0,0.0,0,0.0,0.05756,0.1516093346678607,0.3118485059068798,0.01795,0.3483033932135728,0.6516966067864272,24.288284966083346,4.334357208010321,0.3307590467784642,0.2319064430714916,0.2133715798764342,0.2239629302736099,11.192924302894603,5.7904338918638345,19.236142948334845,12010.391322759117,51.644899465569054,12.63615395927474,16.93895536795662,10.812858545932636,11.256931592405063,0.5644307149161518,0.7982873453853473,0.6931287525016678,0.5760082730093071,0.1211822660098522,0.7447665056360708,0.9268929503916448,0.8673469387755102,0.7692307692307693,0.1818181818181818,0.4963525835866261,0.7245508982035929,0.6314363143631436,0.5097222222222222,0.1044025157232704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376121337302,0.0044586761785091,0.006816867689873,0.0089583164052977,0.0112989179074119,0.0134006761435379,0.0157742859764864,0.01791730474732,0.0200781042343944,0.0220798231157424,0.0244802558740312,0.0265505806014435,0.0286622238677033,0.0305967919727204,0.0326911368631781,0.0347251656656087,0.0369790911163147,0.0390560925220352,0.0410052634863835,0.0430109768683088,0.0574618992405962,0.0717089356179151,0.0856291571371619,0.0979260007151721,0.1100767511491586,0.1251202876328451,0.1370995119881179,0.1480105592574457,0.159047446074294,0.1682489621214559,0.1808782190054605,0.1920721812320142,0.2030835471665289,0.2123120660434093,0.2221403269455017,0.2321563067653183,0.2417879139516201,0.2501996782648802,0.2588503608224027,0.2666017638300309,0.2749918970227346,0.2803939457739724,0.2863669720427053,0.2920030227062817,0.2966399533022826,0.301925662756128,0.3068190361626945,0.3114877349474355,0.316310382400249,0.3203715448443528,0.319587489889458,0.3180019577835684,0.3173124426565036,0.3155859391973118,0.314324851480726,0.3118751150095074,0.3087101380295097,0.3097343675378357,0.3101397102939916,0.3113199105145414,0.3111695631751996,0.3125049559908017,0.3125655768665799,0.3141272255524738,0.3145306967894217,0.3148298323174719,0.3166119125839166,0.3184269450313791,0.3241744658308317,0.3288128852654603,0.3319460324719872,0.3338304218150831,0.3358595427560945,0.339943558843719,0.3410692473926524,0.3410944332821179,0.3348423117549419,0.3421840686763825,0.3417381974248927,0.3390654205607477,0.0,2.0629083564729904,54.52304279532884,168.71736211937076,247.45330988226772,fqhc2_100Compliance_implementation_low_initial_treat_cost,19 -100000,95709,45548,432.3417860389305,5912,60.61080985069325,4686,48.39670250446666,1839,18.88014711260174,77.38171245272493,79.75690416989774,63.34258245905804,65.09559913513714,77.15399274661047,79.5283951978073,63.25820019692076,65.01304566995054,0.2277197061144562,228.50897209043808,0.0843822621372822,82.55346518659223,170.24348,119.8112546461841,177876.1453990743,125182.85077284694,423.82357,279.5628311412691,442202.1753440116,291473.67660436244,396.6091,193.097117213214,410939.0757400036,199065.6178063681,3080.19043,1415.1152914543457,3185344.513055199,1445617.696825112,1105.72098,492.3127842372125,1139266.9968341535,498362.9356151188,1806.02544,757.6758964033139,1856486.1820727407,766021.4294691868,0.38197,100000,0,773834,8085.279336321558,0,0.0,0,0.0,36670,382.5659028931448,0,0.0,36347,376.2342099489076,1500011,0,53764,0,0,0,0,0,74,0.7627286880021732,0,0.0,0,0.0,0,0.0,0.05912,0.1547765531324449,0.311062246278755,0.01839,0.3422840504691039,0.6577159495308962,24.109102079937493,4.3601750180652665,0.3162612035851472,0.2426376440460947,0.2200170721297482,0.2210840802390098,11.441504021462862,5.831048266428305,19.491904482840415,12010.240581083304,53.26186241350491,13.726037863998632,16.80822822366746,11.356093033035863,11.371503292802952,0.5567648314127187,0.7774846086191732,0.6828609986504723,0.5819592628516004,0.109073359073359,0.7453416149068323,0.930648769574944,0.8663366336633663,0.7432432432432432,0.1348837209302325,0.485285462036492,0.6782608695652174,0.614100185528757,0.5377008652657602,0.1023142509135201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0044501211365548,0.0066769493038925,0.0089287528188042,0.0111682974957788,0.0135336048879837,0.0156105021667091,0.017997876597656,0.0203121965182012,0.0225816357866721,0.0247583117189342,0.0266116364308374,0.0288664246562663,0.0307793732874595,0.0328269798352975,0.034790790004239,0.0367148257469835,0.0386646881193769,0.040634847996339,0.042686231189295,0.0569909766897819,0.0707892340064696,0.0831777073672283,0.0964192543970377,0.1086337460712553,0.1240694526689789,0.1350258869461891,0.1469952626816415,0.1572785249596735,0.1674014481094127,0.1808092236409676,0.1934052134753615,0.2050069057018259,0.2139944686758709,0.2236911570611526,0.2334351685816121,0.243164585191793,0.2517289073305671,0.2602916827326544,0.2683183733284484,0.2746697207376044,0.2810417786921656,0.2864953138312979,0.2920820552147239,0.297013348232179,0.3019630556137475,0.3065050717296411,0.3114804163591479,0.3159488951885363,0.3195870852065233,0.3184397353842844,0.3169314857794196,0.3154771113142535,0.3144236311239193,0.3130532610948278,0.3115551826710396,0.3096042166393132,0.309963220269718,0.3104731796859066,0.3108420453737287,0.3109745849750704,0.3124051929631016,0.3132291666666666,0.3141522029372496,0.3156974516190841,0.3161917098445596,0.3179937659393596,0.3213594657012671,0.3254874651810585,0.327663772691397,0.329408034784184,0.3320277351399989,0.3381861725594,0.3423664122137405,0.3437794089968003,0.3430066603235014,0.3476197765192101,0.355159132373809,0.3601543124827776,0.3593207255885758,0.0,2.203116510387559,56.35648231315708,176.1225017305477,251.28247703621452,fqhc2_100Compliance_implementation_low_initial_treat_cost,20 -100000,95862,46266,437.7751350900253,5790,59.13709290438339,4575,47.19283970707893,1793,18.3805887630135,77.44506122741345,79.72275880369448,63.40474875222951,65.08403908619333,77.22006105138325,79.49708112485598,63.32104300144269,65.00187393411184,0.2250001760301927,225.677678838494,0.0837057507868195,82.16515208148678,170.55676,120.02497452125652,177919.05030147504,125205.9987495113,422.34038,278.86384052080734,440046.2539901108,290377.45584296586,401.21944,196.03356216514933,414702.12388642,201593.92690833897,2961.66323,1362.6769443149567,3056858.348459244,1389258.5102341752,1079.47003,482.1468893669039,1111416.797062444,488609.1433705382,1750.73066,738.3290015838742,1796685.7357451336,747397.1192608676,0.38472,100000,0,775258,8087.229559157957,0,0.0,0,0.0,36528,380.4948780538691,0,0.0,36642,378.3563873067535,1499732,0,53851,0,0,0,0,0,56,0.5841730821389081,0,0.0,0,0.0,0,0.0,0.0579,0.1504990642545227,0.3096718480138169,0.01793,0.3499340369393139,0.650065963060686,24.459878038654097,4.29861103934959,0.3221857923497268,0.2485245901639344,0.2137704918032787,0.2155191256830601,11.362252336964364,6.026585687299251,19.06615666604793,12103.801567990757,51.825809288518265,13.563607670588018,16.60914487032048,10.883152683119697,10.76990406449007,0.5597814207650273,0.7792436235708003,0.6845318860244234,0.5613496932515337,0.1186612576064908,0.7431048069345941,0.9310344827586208,0.890625,0.721030042918455,0.1290322580645161,0.4894131881427707,0.6851851851851852,0.6119266055045871,0.5114093959731544,0.1157347204161248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024089556468754,0.0047812477841145,0.0070977358222726,0.0092667776379359,0.0113601723332046,0.013449858074493,0.0156542817567017,0.0180386878358673,0.0200757691797118,0.0223824130879345,0.0246672127790292,0.027178093431106,0.029538638511154,0.0317328066818901,0.0338659990315169,0.0358691164327002,0.0379022917183751,0.0397496476829975,0.041972488969634,0.0440442002746909,0.0592350843534294,0.0726478761413259,0.0860319753745641,0.0986978100964313,0.1106213310328865,0.1258508785816051,0.1375480428176649,0.1489901940994613,0.1592275867951889,0.1693563922005094,0.1822451501961416,0.1943649499454637,0.2052481869110175,0.2147310266516721,0.2243750274592504,0.2341649610001659,0.2432423394602789,0.2527079868758146,0.2616478110050559,0.2687933362319504,0.2758544933166829,0.2822146866230121,0.2884995326936955,0.2937401984844313,0.2990922991044341,0.3043986753499366,0.3091584901882259,0.3134915081737803,0.3181688681688682,0.3219203376417832,0.3205166150948473,0.3187943895704257,0.3180509319736491,0.3159409859661748,0.31552392507324,0.313695602469324,0.3110022215569806,0.3112809957855533,0.312131158693175,0.3125155290526391,0.3138257187097737,0.3142964086601919,0.3146053345577493,0.3154707571743438,0.3169593721586831,0.3174808863548011,0.3196401290103547,0.323989386608397,0.3266178054117892,0.3294303173664498,0.3333030358116706,0.3347846864546275,0.3381539235412474,0.3439914327239348,0.346219281663516,0.3486983520420348,0.3512217754407671,0.3481865284974093,0.358217270194986,0.3614599686028257,0.0,2.0359947409143784,55.66837706816834,167.59514278594833,246.639157768438,fqhc2_100Compliance_implementation_low_initial_treat_cost,21 -100000,95680,45987,435.9113712374582,5942,60.91137123745819,4712,48.62040133779264,1854,19.032190635451503,77.29747507811412,79.69967447652708,63.28577397120039,65.06533737343274,77.06976197692642,79.47244843117547,63.201094452168576,64.98303922626559,0.2277131011877031,227.22604535161395,0.0846795190318161,82.29814716715111,170.885,120.27876675055457,178600.54347826086,125709.41340986054,425.07279,281.044368405479,443633.5493311037,293114.21957066376,407.51934,198.7957201655225,421341.73285953177,204419.2738811609,3073.26716,1411.978925592754,3175319.345735786,1439823.525588147,1105.80508,490.3413169928904,1140100.1881270905,496847.9274591247,1820.71194,763.918558963189,1870577.299331104,772575.3285887303,0.38377,100000,0,776750,8118.20652173913,0,0.0,0,0.0,36736,383.2775919732441,0,0.0,37186,384.04055183946485,1488119,0,53439,0,0,0,0,0,78,0.8152173913043478,0,0.0,0,0.0,0,0.0,0.05942,0.1548323214425306,0.3120161561763716,0.01854,0.337391861582826,0.662608138417174,24.17225777941957,4.281476943704318,0.3132427843803056,0.2493633276740237,0.2092529711375212,0.2281409168081494,10.858318819216644,5.496101243500423,19.809466590134907,12130.742544571973,53.69245841932143,14.21548495900701,16.76613076030285,10.929883777984186,11.780958922027375,0.5573005093378608,0.796595744680851,0.6944444444444444,0.5699797160243407,0.095813953488372,0.7386541471048513,0.9217391304347826,0.8590078328981723,0.7302325581395349,0.1545454545454545,0.4898078043098428,0.7160839160839161,0.636779505946935,0.5252918287937743,0.0807017543859649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0045036820643904,0.0068226813543834,0.0091352504826745,0.0113016764322916,0.0135977510236509,0.0157378319937987,0.0181470966687771,0.0205978911195884,0.0230514792475243,0.0252120665073389,0.0276447987507961,0.0297424923611897,0.031769421802706,0.0338760802453202,0.0359030586385593,0.037842039800995,0.0398932580186279,0.0419575326931679,0.0438751901953019,0.0581943153210558,0.0725449349398599,0.0863483735571878,0.1000378692249431,0.1120780590717299,0.1269188045490611,0.1387388152378122,0.1495101171458999,0.1604045933751042,0.1704400287698732,0.1836807315311041,0.1952461983677097,0.2059339294855736,0.216132424793497,0.2259700176366843,0.2361046395526858,0.2449930707675801,0.2535534881625481,0.2622539275044585,0.2704694448264796,0.2769861680683951,0.2832212878592677,0.2897345698752798,0.2952155751872479,0.2999829638102655,0.3045941542411375,0.3098443257877716,0.3141509433962264,0.3193660189259706,0.3230529141814238,0.3209821549094246,0.3198310722221456,0.3181586978636826,0.3171551511814902,0.3155186771353795,0.3126053252443546,0.3103971907179803,0.3108889799262597,0.3110195323808388,0.3110743095250814,0.3109679828246056,0.3121851385390428,0.3127297026394921,0.3138359458496615,0.3150002395439084,0.3163331516520024,0.317322968679074,0.3200738607911867,0.3228434560648974,0.3256623171213919,0.3274930779356361,0.3311835914785642,0.3356511933847021,0.3371829710144927,0.3428891586516014,0.3418421362192683,0.342572741194487,0.3439335628924448,0.3463548830811554,0.3472915866308106,0.0,2.4418124104860697,55.796407701975255,180.2493731448073,252.97947807961356,fqhc2_100Compliance_implementation_low_initial_treat_cost,22 -100000,95835,46111,435.74894349663487,5831,59.65461470235301,4581,47.279177753430375,1778,18.19794438357594,77.32864418348662,79.64012296224664,63.32870225298407,65.03867808178767,77.09902119822446,79.41149298499523,63.24176571873088,64.95475479729312,0.2296229852621536,228.62997725140133,0.0869365342531907,83.92328449454567,170.48262,120.0078313537882,177891.81405540774,125223.38535377284,425.0076,281.898535494994,442958.5537642824,293629.9530390714,407.77793,198.92880802204468,422376.8038816716,205184.3771080376,2989.93997,1387.3135151000572,3088624.176970836,1416570.1262417017,1083.50856,486.3424880469259,1118655.0320863985,495632.43792918464,1734.88384,745.5661318077395,1777910.471122241,748848.3731205988,0.38276,100000,0,774921,8085.991547973079,0,0.0,0,0.0,36702,382.417697083529,0,0.0,37180,384.8385245473992,1488819,0,53589,0,0,0,0,0,79,0.8243334898523504,0,0.0,1,0.0104346011373715,0,0.0,0.05831,0.1523408924652523,0.304921968787515,0.01778,0.3384111384111384,0.6615888615888615,24.32685613566291,4.208514241404238,0.3289674743505785,0.2453612748308229,0.2123990395110238,0.2132722113075747,10.801082697767786,5.70607532713735,19.165528780957175,12025.248629344353,52.53077012291324,13.580244321932726,17.32241430355261,10.845418517929094,10.782692979498808,0.5671250818598559,0.7766903914590747,0.6987392169873922,0.5652620760534429,0.1248720573183213,0.7120300751879699,0.8857808857808858,0.8496583143507973,0.7056277056277056,0.1341991341991342,0.5078437403875731,0.7093525179856115,0.6367041198501873,0.5215633423180593,0.1219839142091152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0043993025990349,0.0069395830162836,0.0091012514220705,0.0114602399837299,0.0137650173080838,0.0159107124655998,0.0180227989427168,0.0205510249964232,0.0230235556556085,0.025348880100002,0.0275850745043306,0.0296692906912215,0.0318207086824929,0.0339372815113485,0.0359500418384107,0.0383926815891051,0.0404989268717533,0.042442246966927,0.0444652615144418,0.059119877337728,0.0727803103174271,0.0860715446131916,0.0987673780776142,0.1110970570874441,0.126679421993425,0.1383080251102816,0.1494817936112707,0.1602618874695603,0.1700546799614024,0.1820825121959099,0.1935710730746759,0.2048086647310214,0.2146854981525612,0.2237638360143476,0.2347141132025303,0.2437548157991714,0.2518242421512544,0.2598384953490749,0.2665450875140504,0.274089190881473,0.2802641146529683,0.2864520878103221,0.2916551516972063,0.2967241652160152,0.3011181320037518,0.3061260312445146,0.3099065563530206,0.313476613196283,0.3172770437381793,0.3151612424638873,0.3134480666335705,0.3121282757646394,0.312190100617624,0.3117627785058978,0.3095497597592987,0.3079840066004506,0.3081145035659118,0.3096559378468368,0.3097424012835368,0.3103448275862069,0.3109683794466403,0.3115556857657054,0.3125767487552747,0.3139054391697098,0.3144311064718162,0.3149476320582878,0.3173577567279342,0.3202249153075123,0.3242358509169789,0.327971362544746,0.330370840607311,0.3306755399296835,0.3364293871336125,0.3385265133740028,0.3417766678558687,0.3432518597236982,0.3442094662638469,0.3416098226466575,0.3479599692070824,0.0,2.021967514916988,58.740013642669545,171.8986985334798,237.01085797746344,fqhc2_100Compliance_implementation_low_initial_treat_cost,23 -100000,95753,45906,434.2840433197915,5735,58.671790962163065,4475,46.22309483775965,1742,17.868891836287112,77.35098256499538,79.69957967773665,63.33757887846742,65.07133882995753,77.13371577087061,79.48310147017813,63.2558659260546,64.99238772354353,0.2172667941247681,216.47820755852365,0.0817129524128219,78.95110641399583,170.67336,120.09019515740704,178243.35529957287,125416.63985191802,425.01172,281.29395810223895,443374.4216891377,293282.2450494909,398.77707,193.90278536299792,413765.7201340951,200366.8741753221,2947.29553,1347.043950793366,3047033.492423214,1375804.8320087786,1062.21102,468.601232500465,1096077.1255208715,476138.5465734387,1716.6036,727.3848955260711,1762793.771474523,732235.2174518134,0.38188,100000,0,775788,8101.9706954351295,0,0.0,0,0.0,36759,383.3822438983634,0,0.0,36290,376.2493081156726,1493405,0,53585,0,0,0,0,0,70,0.731047591198187,0,0.0,0,0.0,0,0.0,0.05735,0.1501780664082958,0.3037489102005231,0.01742,0.3443741677762982,0.6556258322237017,24.63486966056109,4.318956202273328,0.3220111731843575,0.2341899441340782,0.2201117318435754,0.2236871508379888,10.715759777912892,5.326193757193007,18.46314795492449,12043.15485294596,50.74053915605477,12.628442204586356,16.38503588867679,10.797006512776832,10.930054550014791,0.5602234636871508,0.7977099236641222,0.6939625260235948,0.5644670050761421,0.1148851148851148,0.7214765100671141,0.941747572815534,0.8394366197183099,0.6933962264150944,0.1267605633802817,0.5016752969844654,0.7044025157232704,0.6464088397790055,0.5291073738680466,0.1116751269035533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784117950847,0.0044495798745198,0.0068998406948545,0.0093341187941821,0.0118249941535927,0.0139670776027934,0.0161975922773468,0.0185442224081974,0.0209938878554344,0.0230996755606046,0.0254223388551746,0.0274384610646903,0.0298469099246373,0.0318405091186192,0.0339093206788053,0.0360623882417389,0.0379708824321245,0.0402830815208367,0.0423260069451664,0.0444009209388575,0.0587836144980791,0.0733034135726914,0.0863793645800566,0.099272436706199,0.1112188745282422,0.1262989861829099,0.1376238253823473,0.1481497248800008,0.1583867521367521,0.1682991985752449,0.1807663718530169,0.1929146642421093,0.2044967530701706,0.214892220155378,0.2241132565666351,0.2338916168793021,0.2433793881448883,0.2522221472130336,0.2608616697689199,0.2678520250828261,0.2744782563402127,0.2808243224266255,0.2875544095382286,0.29289409397902,0.2982345446824,0.3036320685073084,0.3074298569018309,0.3110888044624592,0.3154707998033482,0.3192395978997915,0.3175928669557956,0.3160387098550445,0.3150186764394954,0.3133579229044623,0.3118405801408743,0.3101848307122184,0.3076521078136382,0.3078616610531504,0.3083794493407119,0.308571326701608,0.3096818836378597,0.3106493711311753,0.312301321733311,0.3126268596792541,0.3134714405460423,0.3142976023300567,0.3150513825015613,0.3185824055198369,0.3225029664270259,0.3264991704195307,0.3277661795407098,0.3279487315290503,0.3318470137536896,0.3333586107530143,0.3337702462316262,0.3375162779685095,0.3363242574257425,0.3340752731687575,0.3357201872762324,0.3452880579931324,0.0,2.025866673451409,52.25045382122435,168.29849829286235,245.4320343399473,fqhc2_100Compliance_implementation_low_initial_treat_cost,24 -100000,95831,45564,432.4383550208179,5818,59.45883899781907,4574,47.030710312946745,1770,17.99000323486137,77.51248185563044,79.79968871690068,63.42745123530996,65.11111780276534,77.29592342895731,79.58820004441485,63.34633498254796,65.03526958996531,0.2165584266731315,211.48867248582803,0.0811162527620013,75.8482128000253,171.91438,120.85323964301936,179393.0565265937,126110.5956095638,421.10326,277.8579032807336,438735.87878661393,289259.91527825687,394.21048,192.34104043262016,406975.7176696476,197223.9146434956,3000.62375,1360.7110591411129,3089160.4491239786,1378273.908125552,1094.93577,482.065824509833,1125592.3135519822,486108.4103012187,1734.32372,721.6501100849835,1765823.689620269,715524.0152382741,0.38047,100000,0,781429,8154.229842117895,0,0.0,0,0.0,36525,380.4092621385564,0,0.0,35987,371.2890400809759,1499532,0,53708,0,0,0,0,0,70,0.709582494182467,0,0.0,0,0.0,0,0.0,0.05818,0.1529161300496754,0.3042282571330354,0.0177,0.3466798484099522,0.6533201515900477,24.45055941230241,4.315330316357345,0.3261915172715348,0.2431132487975514,0.2057280279842588,0.224967205946655,11.41471852232359,5.952979224896402,18.570053557039,11972.277292605577,51.43442538269564,13.394686132552737,16.687995973022634,10.250450497435326,11.101292779684949,0.5629645824223874,0.7967625899280576,0.693029490616622,0.5664187035069076,0.1185617103984451,0.7392363931762794,0.9322429906542056,0.8477157360406091,0.7263681592039801,0.1490384615384615,0.498055638647921,0.7119883040935673,0.6375227686703097,0.522972972972973,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022868475907149,0.0045371223706464,0.0067403886112772,0.0090917393024931,0.0116113695930433,0.0138208074849994,0.0157500356335647,0.0178046989720998,0.0198196726333309,0.0221086000613559,0.0242693591660351,0.0261414448045288,0.0279998355972955,0.0301445993927854,0.0322786832853946,0.0341782350024789,0.0360306291390728,0.0379559168100856,0.0398499911698403,0.0419568770757201,0.0565793727772389,0.0700363879710569,0.0828268432745106,0.0962744336025712,0.1087618064842211,0.1241840420812472,0.1363087162964219,0.1468886904002382,0.1573201575122456,0.1675447614152317,0.1798767702183941,0.1915773783807137,0.2024340726747657,0.2122883067818263,0.2215204472808357,0.2313867725277277,0.2408929884366018,0.2492418626592088,0.2582807704938453,0.2667893179143193,0.2738040319232366,0.2803326810176125,0.2864824073200641,0.2918532316032047,0.2973823383475935,0.3032330947089232,0.307469867504269,0.3111854018665552,0.3149795066120176,0.3185218235741844,0.3170989870839809,0.3162194337634614,0.3158130485295559,0.3147916576832967,0.3132581746184193,0.3119742777032793,0.3095985487814496,0.3103566641603191,0.3112093141837341,0.3120888888888889,0.3132170506482604,0.3129697398969032,0.3134200758997456,0.3133748055987558,0.313787110444492,0.3154217053863806,0.3165341902023789,0.3212735615079365,0.3238711015835696,0.3282053279326998,0.3304029630951849,0.3348585690515807,0.3337651921771855,0.3362217076268021,0.3397861356932153,0.3397822057460611,0.3455387834404423,0.3442719591275299,0.3439267438728791,0.3379647014645137,0.0,2.6492178784955738,53.354335775433725,167.86297233622872,248.05748060028424,fqhc2_100Compliance_implementation_low_initial_treat_cost,25 -100000,95739,45666,433.052361106759,5823,59.54731091822559,4538,46.83566780517866,1725,17.72527392180825,77.31288813594676,79.67409417484326,63.318020272784125,65.06317713278379,77.10213751967898,79.46220772774372,63.23929056959205,64.98589409078367,0.2107506162677879,211.88644709954477,0.0787297031920744,77.28304200011848,169.74584,119.49198601560902,177300.61939230617,124810.14635165296,417.98934,276.0520109930464,436027.9509917589,287773.49982039345,396.51915,192.9016335052674,410529.46030353353,198683.11408954556,2946.23773,1347.9586426914375,3042156.4670614903,1372835.7409002786,1049.94776,468.22779990797727,1080970.795600539,473416.5790025545,1684.47228,707.3296836800328,1732097.5360093587,715888.9781288006,0.37876,100000,0,771572,8059.119063286644,0,0.0,0,0.0,36172,377.2339381025496,0,0.0,36167,374.079528718704,1502484,0,53915,0,0,0,0,0,73,0.7624896854991173,0,0.0,1,0.0104450641849194,0,0.0,0.05823,0.1537385151547154,0.2962390520350335,0.01725,0.3342600163532297,0.6657399836467702,24.55179523665979,4.278627712798862,0.3230498016747465,0.2434993389158219,0.2225650066108417,0.2108858527985896,10.989929395087517,5.719412212269709,18.37881530390556,11949.227443393283,51.4133250735503,13.24086400507726,16.52691972012196,11.264140694799012,10.381400653552056,0.5526663728514765,0.7520361990950226,0.6971350613915416,0.5524752475247525,0.1013584117032393,0.7443729903536977,0.9039408866995072,0.8781725888324873,0.7198443579766537,0.1497326203208556,0.4802671523982999,0.6638054363376252,0.6305970149253731,0.4953519256308101,0.0896103896103896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0048956506755592,0.0071632220294442,0.0093649697314427,0.0117980899299234,0.0140835030549898,0.0162944835321709,0.0185603005584424,0.0205900995767477,0.0224142697699183,0.0245562949216146,0.0265543974944806,0.0288070922423457,0.0306635354222029,0.032961931290622,0.0352215297801754,0.0372142147117296,0.0390864945629617,0.0411064316539281,0.0429364756873899,0.0567201887540976,0.0703307281040417,0.0838803716365009,0.0960466827883503,0.1077698463744583,0.1231926213469003,0.1345515126433854,0.1465597990377655,0.1564285790581173,0.1663485459380629,0.1787221671906628,0.1904674352707058,0.2024486511759397,0.2125553672007437,0.2218371455919728,0.2315565598830254,0.2403852592576058,0.2491309385863267,0.2572272056318837,0.2646678047271519,0.2714371701083433,0.2777641349470853,0.2845042764364213,0.2898350989885432,0.295512524599723,0.3009254124924525,0.3058539272390395,0.310152264892575,0.3144455378878127,0.3194136291600634,0.3172095906842594,0.3160654564472398,0.3150779553976712,0.3136336023604964,0.3128376065832354,0.3104299937104023,0.3084039480783268,0.3095974213919221,0.3101613427549746,0.3104725437921594,0.3105621518203815,0.3121561176424019,0.3129213247916928,0.3125948745423698,0.3144010379126423,0.3156784626201078,0.3160547976417647,0.3201699181875393,0.3239021307965036,0.3269995229766259,0.3296758331815698,0.3313593824353619,0.3342074046325778,0.3390190281252369,0.3389719011371112,0.3407398652641532,0.3448753462603878,0.3530008110300081,0.3484890490712503,0.3456743483188515,0.0,2.1805038894959305,54.561254463065005,163.1139513182429,251.30738913913197,fqhc2_100Compliance_implementation_low_initial_treat_cost,26 -100000,95780,45313,430.5282940070996,5815,59.52182083942368,4555,46.97222802255168,1758,17.968260597201922,77.37208356525132,79.71109076484129,63.35007434272507,65.07954444733348,77.14927188929799,79.48876643988007,63.26774996174869,64.99992083538554,0.2228116759533236,222.324324961221,0.0823243809763809,79.62361194793743,170.71758,120.11498282543192,178239.2775109626,125407.1651967341,423.64936,279.6084320736848,441726.6443934016,291339.3736413497,394.55733,192.0659548051653,407997.43161411566,197589.83092598125,2980.76153,1371.1440081663654,3075209.855919816,1394673.708672337,1091.73378,492.889801572933,1124202.7354353727,498974.1089715315,1721.95196,726.335248128702,1760926.5608686574,727360.582426715,0.37959,100000,0,775989,8101.785341407392,0,0.0,0,0.0,36725,382.8147838797244,0,0.0,36121,373.1676759239925,1497283,0,53782,0,0,0,0,0,69,0.7204009187721863,0,0.0,1,0.0104405930256838,0,0.0,0.05815,0.1531916014647382,0.3023215821152192,0.01758,0.3325669239612416,0.6674330760387585,24.2864711807981,4.32037093870176,0.3119648737650933,0.2472008781558726,0.2210757409440175,0.2197585071350164,11.48304865801621,6.099748702971155,18.68340385057999,11945.722219230223,51.63792292376312,13.464971185213294,16.062069162302514,10.956894306992186,11.153988269255102,0.5622392974753019,0.7806394316163411,0.6917663617171006,0.5729890764647467,0.1218781218781218,0.7392,0.927400468384075,0.8596938775510204,0.7365853658536585,0.1769911504424778,0.4953101361573374,0.6909871244635193,0.6277939747327502,0.5311720698254364,0.1058064516129032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0042780098130651,0.0066367640194028,0.0091323737060777,0.0113902166175124,0.0136015637726014,0.0157172124881509,0.0178888503377757,0.0201009646827992,0.022218810766554,0.0242670191943103,0.0264165272632108,0.0281852289664388,0.0302618437175012,0.0321017190351953,0.0340965448834518,0.0361146477036301,0.0379043214037562,0.0397655835991645,0.041573396358033,0.0565196973649882,0.0704005857127915,0.0837168345685742,0.0961477838723914,0.108354403708386,0.1236701706196186,0.1355326882928328,0.1466926111412378,0.1570439291925863,0.1663667138021168,0.1788676484826317,0.1910825271577582,0.2026449909261815,0.2134557577744985,0.2222393295868205,0.2332358933475064,0.2429423902738274,0.2520878058649642,0.260233918128655,0.2681843674529867,0.2744057528671846,0.2809848785846168,0.2869448087625394,0.2925139129914427,0.2978684686214803,0.3019188400802491,0.3060399829859634,0.3106954046360309,0.3143758647890238,0.318980401460335,0.3171066071716574,0.3149846255216341,0.3136592166969453,0.311303719754424,0.3103494344327999,0.307717022122946,0.3051501399408611,0.3061237870443221,0.3058660650189724,0.3062608168144592,0.3073614124336051,0.3082933759545374,0.3099914245675681,0.3106094405282413,0.3127640168970814,0.3143005991143527,0.3157023850279584,0.3180444500409242,0.3207255885758394,0.3228308867406612,0.3241187722014755,0.3250039789909279,0.3286827551533434,0.3331556503198294,0.3347781023273344,0.3416479489301335,0.3444495203289173,0.3432245301681503,0.3463506598437921,0.3451624953305939,0.0,2.267863753697969,54.64433125849328,163.8928889915322,252.63206786431377,fqhc2_100Compliance_implementation_low_initial_treat_cost,27 -100000,95642,45456,431.2331402521905,5735,58.61441626063864,4483,46.245373371531336,1729,17.680516927709583,77.25911226955019,79.65526199322926,63.27736057920528,65.04566996924825,77.04076354979763,79.43932250704239,63.19503370456759,64.96696897958753,0.2183487197525551,215.9394861868691,0.0823268746376868,78.70098966071737,170.81878,120.20981509313393,178602.2667865582,125687.2661520398,423.68817,280.4199452166933,442350.6722987809,292554.32259540097,401.56848,195.5161984761275,415287.1646347839,201025.10528113044,2953.42331,1361.905225669679,3047262.332448088,1383522.5052487268,1053.04101,472.0597211393568,1086132.9227745133,478812.6565022894,1693.71088,717.6710224328087,1733240.7310595764,718987.6432712133,0.37808,100000,0,776449,8118.284853934464,0,0.0,0,0.0,36639,382.43658643692106,0,0.0,36603,378.2125007841743,1486719,0,53411,0,0,0,0,0,81,0.846908262060601,0,0.0,1,0.0104556575563037,0,0.0,0.05735,0.1516874735505713,0.3014821272885789,0.01729,0.3399900149775336,0.6600099850224663,24.54951090810825,4.346423814064907,0.3140753959402186,0.2426946241356234,0.2237341066250278,0.21949587329913,11.20218985527171,5.760934439228493,18.43682906798549,11913.16216057738,51.115390718839045,13.114487453029753,16.053727453105452,11.186981911395431,10.76019390130842,0.5641311621681909,0.7922794117647058,0.7080965909090909,0.5613160518444666,0.1087398373983739,0.742741935483871,0.9239904988123516,0.8992248062015504,0.6563876651982379,0.1707317073170731,0.4958371877890842,0.7091454272863568,0.6356513222331048,0.5335051546391752,0.0924261874197689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177810641897,0.0047455358500897,0.0070438259951687,0.0092464639895951,0.0116689556945928,0.0138003381337461,0.0160796949242408,0.0180487356697326,0.0202614980423426,0.022488586811882,0.0245752893773644,0.0265424936595784,0.0287069036451904,0.0308434032821336,0.032580651819439,0.0348560674993796,0.0370048068954085,0.0389785643846992,0.0410351893651767,0.0429728630852472,0.0581583705205513,0.0727027055336175,0.0853986389985718,0.0977895723417475,0.1102685690749522,0.1257652466795178,0.1373563340485649,0.1487271293543471,0.1585262820170044,0.1678551484170282,0.1796783136819167,0.1913761527541477,0.2020152505446623,0.2115424651830424,0.2213166282493851,0.2318644218382124,0.2411945041174364,0.2496672907315092,0.2579750031274522,0.2642476330545087,0.2712114179624043,0.2775647115395893,0.2850125182434116,0.2900526581548005,0.2946533060269163,0.2997961075069509,0.3035440877488015,0.3070546827178126,0.3106862897783315,0.3148956432029204,0.3131495829171503,0.3115794994961834,0.3103409267664984,0.3085458664962528,0.3075683418885042,0.3059631547408693,0.3035280674189402,0.3036710381254833,0.3053614251455978,0.3062687741381776,0.3066411741550919,0.3076816636356448,0.3103448275862069,0.3118953141022783,0.3125584294172639,0.3130972164520149,0.3141746139872843,0.3190434345970374,0.3227298206278027,0.3265839838332607,0.3309538965172319,0.3319385593220339,0.3343596832977252,0.3368142262580401,0.3404690990320179,0.3415929203539823,0.3408433551529913,0.3426278836509528,0.3461004718290313,0.3498439937597504,0.0,2.4743946102135257,54.06720846523469,169.27462055346865,239.1604237787484,fqhc2_100Compliance_implementation_low_initial_treat_cost,28 -100000,95635,45590,434.33889266481935,5795,59.58069744340461,4515,46.81340513410362,1716,17.67135462958122,77.28554750318864,79.71833229831917,63.27381344368565,65.07237456891967,77.0767766447146,79.50776849087278,63.19700030396884,64.99672648605132,0.2087708584740397,210.56380744639117,0.0768131397168119,75.648082868355,170.38714,119.90053084266523,178163.9985361008,125373.06513584488,423.50497,280.2923577749872,442435.9491817849,292686.78598315164,399.02635,193.8962027347463,414538.4639514822,200645.75419032143,2973.98357,1355.9054043107635,3083633.680138025,1391702.7284056682,1084.46826,478.25885125357615,1121185.1100538506,487306.9182345114,1687.10052,704.2258797812123,1738205.1550164688,713942.9617085418,0.37992,100000,0,774487,8098.363569822764,0,0.0,0,0.0,36597,382.2763632561301,0,0.0,36351,377.5709729701469,1492920,0,53510,0,0,0,0,0,85,0.8678830971924504,0,0.0,0,0.0,0,0.0,0.05795,0.1525321120235839,0.2961173425366695,0.01716,0.3413154010168935,0.6586845989831065,24.126976215056796,4.343805161119727,0.3266888150609081,0.238095238095238,0.2188261351052048,0.2163898117386489,11.158593330293169,5.748804805740803,18.20867664401617,11949.728118226154,51.22807050157922,12.971805705933246,16.649939889882035,10.921698035719352,10.684626870044596,0.5652270210409746,0.8027906976744186,0.6847457627118644,0.5789473684210527,0.1095189355168884,0.7367563162184189,0.921760391198044,0.8567708333333334,0.7184873949579832,0.1377551020408163,0.5012165450121655,0.7297297297297297,0.6241979835013749,0.5346666666666666,0.1024327784891165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584920956627,0.0042702532736917,0.0066502863176704,0.0089037963104131,0.0109164530175395,0.0128451955301571,0.0150054574573349,0.0171931186662307,0.019392253326651,0.0214454697213317,0.0235530662070946,0.0257295519934237,0.0278638408251073,0.0299756731126046,0.0319159920700479,0.0338646448556563,0.0356787564766839,0.0374797490964981,0.0395728381697822,0.0416075600801068,0.0560817026258571,0.0699075723597342,0.0830137130247465,0.0955225453013063,0.1081101064728747,0.1239039268013724,0.1354889439066634,0.1470233971113361,0.1578361722160404,0.1678698034160489,0.1806619344538177,0.1929476548188134,0.2048614137540312,0.2145548958173572,0.2248567019400352,0.2346054398366495,0.243601207108528,0.2517776450569635,0.259635049765941,0.2671281545831709,0.2739933779434578,0.2800018729222269,0.2859817735799865,0.2910821222412903,0.2966689376612,0.3009439200444198,0.3054992111787243,0.3089473349041584,0.313187881616303,0.3176866706278471,0.3162939727244578,0.3145681252663559,0.3137395762902862,0.3126182737450343,0.3118394489965562,0.3097754495603958,0.3075388342596551,0.3080674559516577,0.3084628905916685,0.3083738210917405,0.3094110822089563,0.3093675476457951,0.3097206236266611,0.3113540040151684,0.3114286399271175,0.3129747245625405,0.3147708651183816,0.3211232449297972,0.3261948561313387,0.3271131057832369,0.3301682040151926,0.3333157450401013,0.3350857428964827,0.3406775824341658,0.3386420787929589,0.3368014963759644,0.341201392041156,0.3458224804648367,0.3502840140654585,0.3472065991751031,0.0,1.5752983589981795,54.37754216421878,170.6740534081042,241.7180212308097,fqhc2_100Compliance_implementation_low_initial_treat_cost,29 -100000,95815,45824,434.25350936700937,5776,59.05129676981684,4533,46.78808119814225,1774,18.17043260449825,77.35864855579545,79.66242381643103,63.35358995694328,65.0537143004912,77.13778572590591,79.44277951420653,63.271309079673166,64.97396497550238,0.2208628298895405,219.6443022244949,0.082280877270108,79.7493249888106,171.0346,120.38849375261871,178505.0357459688,125646.81287128189,427.95051,283.440015747354,446111.2351928195,295288.8229894631,404.26543,197.19737894158757,418251.1297813495,202999.73482137063,2968.08511,1366.9422936560231,3065915.8169388925,1394838.411163203,1046.64131,466.7007469471048,1077073.433178521,471802.2720316287,1736.29046,732.5037491288264,1780391.9219328917,738326.8788902174,0.38103,100000,0,777430,8113.8652611804,0,0.0,0,0.0,36960,385.200647080311,0,0.0,36865,381.0989928508063,1489166,0,53459,0,0,0,0,0,85,0.8871262328445442,0,0.0,1,0.0104367792099358,0,0.0,0.05776,0.1515891137180799,0.3071329639889196,0.01774,0.337339479749753,0.6626605202502469,24.48463432329557,4.33460706678846,0.3174498124862122,0.2404588572689168,0.2267813809838958,0.215309949260975,11.228395960682697,5.788764673993585,18.91486666242734,11978.282109318498,51.492263126778944,12.96194145587569,16.337735490928782,11.34507644687512,10.84750973309936,0.5656298257224796,0.7954128440366972,0.6949270326615705,0.5729571984435797,0.110655737704918,0.7285714285714285,0.9242424242424242,0.8731343283582089,0.7222222222222222,0.1403508771929824,0.5029025358997862,0.7219020172910663,0.6258437801350049,0.5289672544080605,0.1016042780748663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023682772301277,0.0048820508665133,0.007208248426047,0.0092747622961632,0.0114502265661512,0.0139057016428462,0.0159312227519048,0.0180653453428947,0.0203604192632245,0.0224943227152765,0.0245206489675516,0.0265965085030873,0.0286227975548363,0.0306036345674947,0.0326528508093617,0.0347737178030694,0.0368343179960475,0.0390085626023676,0.041234329396857,0.0432533155670296,0.0570206551220529,0.071601066332131,0.0850880962612806,0.0975702034639313,0.1098359100825192,0.1259061991418849,0.1369048250124574,0.1478100830859902,0.1579947680316053,0.1674655000482516,0.1792905907436521,0.1908383732378366,0.2026340688860129,0.212893274405986,0.2215653246138433,0.232083878261255,0.241768789481908,0.2505427996085093,0.2582519204366227,0.2655875917843683,0.272097113893582,0.278985931318617,0.2850681947338511,0.2903829093437552,0.2962571265331923,0.3013759431868619,0.3058561545294184,0.3096085861797095,0.313462783171521,0.3164553622079447,0.3156010712026807,0.3150426903881319,0.3139682093121395,0.3129382231583807,0.3128357323044962,0.3107469850052733,0.3082603333227918,0.3089673734655025,0.3102146128084205,0.3108294148146824,0.3112236286919831,0.3135343549184379,0.3156337850879033,0.3154978664462367,0.3165241206995964,0.3184593705965242,0.3176725489637084,0.3221214411690602,0.3247583904410472,0.3259200318281281,0.3292227884965417,0.3352118666595778,0.3390128890286074,0.3422757411782638,0.3482368347207932,0.3499001292445071,0.3547943110567365,0.3584521384928716,0.3622905027932961,0.358214849921011,0.0,2.027111864180744,55.25410278843587,164.7528341651221,247.76779541945965,fqhc2_100Compliance_implementation_low_initial_treat_cost,30 -100000,95867,45821,434.68555394452727,5789,59.25918199171769,4594,47.39900069888491,1811,18.54652800233657,77.41454581429173,79.70201104562344,63.37712166936033,65.06749569077297,77.1930776990017,79.48288707067685,63.29551301902639,64.9891805445656,0.2214681152900226,219.12397494658364,0.0816086503339406,78.31514620737323,171.27858,120.54778424016128,178662.48031126455,125744.61438841636,426.77676,281.4706823864443,444649.5874492787,293080.60543425626,401.00914,195.10548997130888,415194.5090594261,201088.9523732806,3034.89243,1373.2613296109705,3132992.844252975,1399866.8588193648,1082.77762,474.1169086132789,1115307.9891933615,480532.80539793614,1771.66578,734.7278209072177,1815723.5336455717,738947.6902808008,0.37953,100000,0,778539,8121.021832330207,0,0.0,0,0.0,36853,383.8651465050539,0,0.0,36523,377.83596023657776,1493105,0,53649,0,0,0,0,0,82,0.8553516851471309,0,0.0,0,0.0,0,0.0,0.05789,0.1525307617316154,0.3128346864743479,0.01811,0.3346020188648022,0.6653979811351978,24.32115410209541,4.3745013928920855,0.3145407052677405,0.239007400957771,0.2233347845015237,0.2231171092729647,11.106191199426991,5.675092557566406,19.213123329836144,11948.51473869744,51.83878469426297,13.180888518343291,16.26058635676011,11.341221119689807,11.056088699469766,0.5539834566826295,0.7823315118397086,0.6913494809688582,0.5584795321637427,0.1112195121951219,0.749198717948718,0.9371980676328504,0.8686868686868687,0.691699604743083,0.1513513513513513,0.4811715481171548,0.6885964912280702,0.6244041944709247,0.5148771021992238,0.1023809523809523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002510502606671,0.0046400891545514,0.0071894298143322,0.0093801392808559,0.0117085069620896,0.0136651777083608,0.01590260798696,0.0178609680216249,0.0199601613974155,0.0221240295805333,0.0243275356974576,0.026464795667159,0.0288835001335771,0.0309926712779973,0.0329202408446057,0.0348688287543895,0.0366557689124317,0.0385719467329913,0.0405161317111655,0.0424485125858123,0.0570314454917007,0.0710105549169192,0.0843198055689413,0.097197576623022,0.1092436974789916,0.1252640473172792,0.1366722810139723,0.1475505670524962,0.1586067104069984,0.1684336781683051,0.1807727888814784,0.1927326587095658,0.20401355961668,0.214266984244914,0.2245640253618012,0.2350246730543692,0.2438540354319735,0.2518933009730555,0.2594759458938512,0.2671389658250738,0.2740505231516272,0.2801734718926438,0.2860065031037541,0.2904060366510959,0.2954951234620383,0.3004213586969913,0.3044174496140517,0.3093829892776739,0.3134434726271461,0.3164403267740956,0.3149733484089808,0.3128093719062809,0.3114163476694438,0.3095031898617245,0.3078007658286087,0.3056222381920765,0.3030451400953975,0.3040551606669068,0.3042381260868083,0.3058164354322305,0.3056757967012463,0.3059789672692898,0.3081126173096976,0.3088608158000089,0.3105882916088268,0.3114320533098245,0.3128648342306602,0.3175058456742011,0.3222551928783382,0.3269344709088754,0.3290750688394348,0.3313684210526316,0.3359447864204439,0.3381262637609526,0.3411710037174721,0.3422290148130731,0.3471968312004875,0.3467561521252796,0.3487798190293392,0.3551933282789992,0.0,1.938787413561756,54.87250787423873,166.22659478065378,252.77151380867528,fqhc2_100Compliance_implementation_low_initial_treat_cost,31 -100000,95708,45790,433.9658126802357,5734,58.73072261461947,4503,46.44334851841017,1773,18.10715927613157,77.36002699221102,79.73116522604242,63.33690834044432,65.08806632752768,77.13928688898837,79.51381838063105,63.254385664212855,65.00978595499932,0.2207401032226528,217.34684541137028,0.0825226762314699,78.2803725283685,171.45898,120.56607126784412,179148.012705312,125972.82491311502,421.66859,278.5594669300893,440005.6108162328,290478.796892725,394.02567,191.797244477694,407963.2841559744,197510.99506809784,2941.50752,1348.4471991251553,3036486.730471852,1371986.039960249,1082.53321,480.895680114787,1118183.9553642329,489566.1492401754,1735.39922,727.6911037368843,1774621.8915869102,728536.662700803,0.38184,100000,0,779359,8143.091486605091,0,0.0,0,0.0,36477,380.511555982781,0,0.0,35879,371.107953358131,1495311,0,53610,0,0,0,0,0,77,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05734,0.150167609469935,0.3092082316009766,0.01773,0.3350524039261354,0.6649475960738646,24.44373583515935,4.3510907856812215,0.3175660670664001,0.2465023317788141,0.2147457250721741,0.2211858760826116,11.507835340628713,6.107361344062697,18.794889424430835,12086.889922738312,51.12466875899518,13.33063922042006,16.278457067641536,10.597246328285944,10.91832614264765,0.5634021763268932,0.7855855855855856,0.7034965034965035,0.5594622543950362,0.1184738955823293,0.7317473338802297,0.9200968523002422,0.8623376623376623,0.7772020725388601,0.131578947368421,0.5009135200974422,0.7058823529411765,0.6449760765550239,0.5051679586563308,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025523898269034,0.0051292967997648,0.0074586728636229,0.0097624900952884,0.0119004027828634,0.0140829294122439,0.0160142711518858,0.0182285819265549,0.0204446716074623,0.0225536968406396,0.0249953864135003,0.0271038879705963,0.0292671890746796,0.0312928113057898,0.0332040117214907,0.0353501933456026,0.0375454554872931,0.0397757940626946,0.0416267942583732,0.043432501432814,0.058035947405249,0.0720431232991417,0.0858791439362148,0.0986158441667718,0.1108451773438488,0.1264113841079206,0.1386183777820211,0.1493976416499936,0.1600717695684214,0.169841678465697,0.1824302488419691,0.1946115559402726,0.2050602095378863,0.2148915704791885,0.2240844605740679,0.2341337527412887,0.2440812228048644,0.2531433455543309,0.2612984421415452,0.269000893082049,0.2759059269708392,0.2825939603590127,0.2880437995908569,0.2929246977133964,0.2984434947307076,0.304085502499569,0.3080434755418808,0.3130869029314967,0.3173075679381216,0.3205922683402774,0.319347633016659,0.3172875852960599,0.3165525403668949,0.3150712654312064,0.3147930752656215,0.3121326230712711,0.3095414961040603,0.3113017567412695,0.3118490360192966,0.3126814239666625,0.3118667514113732,0.3134507763852762,0.3138575061491641,0.31402825675826,0.3155741626794258,0.3154903995848469,0.3169082125603865,0.3214767839763915,0.3237727910238429,0.3279595573600828,0.3307449869821404,0.3334220046818472,0.3383147055129976,0.3403189066059225,0.3438930941033548,0.3409866949252325,0.3433221782780651,0.350222042793702,0.3445816186556927,0.3459624952162266,0.0,2.4181700725488424,53.04123512064068,167.93787367077852,246.0259126481952,fqhc2_100Compliance_implementation_low_initial_treat_cost,32 -100000,95751,45979,437.0815970590385,5876,60.12469843656985,4610,47.56086098317511,1774,18.088583931238315,77.33346816806463,79.69477131333313,63.32120940122799,65.06990141862724,77.117379269349,79.48308863076589,63.24050102480078,64.99328374578043,0.2160888987156255,211.6826825672433,0.0807083764272107,76.6176728468082,171.68294,120.74628641441356,179301.45899259538,126104.46513813284,425.50961,280.51310987340594,443780.3051665257,292349.5105778591,400.57865,194.83246506801893,414883.0821610218,200685.3848595618,3014.8584,1365.448653815087,3113247.141022026,1390643.986814849,1090.85748,479.80214222091047,1123516.715230128,485345.4817400444,1739.5097,729.4536189140127,1777433.488945285,729113.404069106,0.38207,100000,0,780377,8150.066317845244,0,0.0,0,0.0,36796,383.70356445363495,0,0.0,36548,378.1683742206348,1491160,0,53519,0,0,0,0,0,68,0.6997315954924752,0,0.0,0,0.0,0,0.0,0.05876,0.1537938074174889,0.3019060585432266,0.01774,0.328782707622298,0.6712172923777019,24.615551965973705,4.368097817125946,0.3197396963123644,0.2344902386117136,0.2292841648590021,0.2164859002169197,11.150471695957629,5.776815700348574,18.82396294673037,11993.928481356845,51.89705486827789,12.92326488173617,16.49674155926363,11.721180625992783,10.755867801285303,0.5626898047722343,0.7844588344125809,0.6960651289009498,0.5695364238410596,0.1182364729458917,0.7373737373737373,0.9168765743073048,0.8729281767955801,0.6932773109243697,0.1623036649214659,0.5020455873758036,0.7076023391812866,0.6384892086330936,0.5335775335775336,0.1078066914498141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608085515983,0.0044517908570964,0.0066581409983151,0.0090837042004511,0.0110758528101543,0.0131759818346587,0.015434490070546,0.0175542446571819,0.0196026327623564,0.0216494528778929,0.0236306039387757,0.0256557671577434,0.0277243606223584,0.0296701372797396,0.0316423700310543,0.0338807867618939,0.0360844490003002,0.0384328048476799,0.0402220581967127,0.042378353607732,0.0574094756949156,0.0717746915195344,0.0845906868402828,0.0969774094484876,0.1091273398365409,0.1244170922818259,0.1362093112082502,0.1473321199348596,0.1581505137461816,0.1677837953777682,0.180200366260907,0.1920559180272881,0.2032215261463499,0.2132567678424938,0.2227869267240905,0.2335658914728682,0.2432933296120569,0.2518260086658038,0.259854047735243,0.2674917850723028,0.2744030066493206,0.2810332931834925,0.287545982517772,0.2926332682611351,0.2977474253690607,0.302112164938308,0.3066909854087547,0.3116450969683884,0.3157112197140123,0.3193200849234502,0.3181395974961297,0.3162509448223733,0.3148327916824941,0.3129269384630937,0.3121240475872209,0.3102190899341198,0.3092742701538851,0.3092839327907587,0.3097689667537524,0.3107546260773362,0.3114404401032895,0.3117536761077667,0.3130601926331404,0.3142908149602785,0.3151965023541846,0.3152046326003599,0.3171521035598705,0.3213199084093974,0.3250096447234595,0.3281657834374752,0.3333333333333333,0.3362082649875654,0.337751256281407,0.3410110224249335,0.342451588644482,0.3465121834687052,0.3511029411764705,0.3523073795486887,0.3594097995545657,0.3573353869849827,0.0,2.3165346393854085,51.81782664270381,171.2989084761005,258.2800245639372,fqhc2_100Compliance_implementation_low_initial_treat_cost,33 -100000,95803,45998,436.6773483085081,5772,59.13175996576308,4506,46.51211339937163,1783,18.266651357473147,77.34149214859087,79.68174697338193,63.33904717832892,65.07289924755793,77.12357957852046,79.46457209550229,63.25848431509596,64.9947942367688,0.2179125700704105,217.17487787964276,0.0805628632329558,78.10501078913035,171.47482,120.61841470376768,178986.67056355227,125902.32842997358,424.98968,280.98819888591385,443052.5244512176,292752.39490331017,398.649,194.6376460710233,413077.08526872855,200781.06450743423,2973.26115,1362.8035576147408,3070418.7029633727,1390087.387783263,1066.12379,471.6230238709807,1098045.395238145,478432.4559477165,1747.72634,723.128753021237,1791455.3823992985,727847.5303589213,0.38226,100000,0,779431,8135.75775288874,0,0.0,0,0.0,36733,382.8481362796573,0,0.0,36341,376.3347703099068,1494280,0,53608,0,0,0,0,0,81,0.8454850056887572,0,0.0,0,0.0,0,0.0,0.05772,0.1509967038141579,0.3089050589050589,0.01783,0.338301043219076,0.6616989567809239,24.35484945682964,4.339280763037315,0.3144695960940967,0.239236573457612,0.223479804704838,0.2228140257434532,11.19119244861871,5.799827090292691,18.922352324620647,12043.243376195704,51.17561177397639,13.072532883514471,16.107894264105106,11.16226769945218,10.83291692690462,0.5628051486906347,0.7949907235621522,0.6972477064220184,0.5670307845084409,0.1195219123505976,0.73359375,0.9414414414414416,0.8461538461538461,0.6936170212765957,0.1327014218009478,0.4950402975821451,0.692429022082019,0.6407010710808179,0.5284974093264249,0.116015132408575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0046125928854556,0.0067278908113044,0.0088200625939926,0.0111715928168082,0.0132829450652433,0.015400777178292,0.0177987909484519,0.0197971204188481,0.0220053656638473,0.0242596997785251,0.0262371509842782,0.0284197858487363,0.0304110435768002,0.0324720886559217,0.0347408134787327,0.036635119183217,0.0388804746986452,0.0409514111143439,0.0426196400129087,0.0576991298178251,0.0718229155774901,0.0852109576407956,0.098498302840509,0.1102551402164634,0.1259169221012578,0.1379460215828863,0.1491445402634965,0.1597319303787337,0.1699010919534071,0.1823484465298479,0.1933611483419084,0.2045533541883906,0.213965735763297,0.2237270248878726,0.234368255022414,0.2437676217222203,0.2527112288658868,0.2621155849449703,0.2700598939283101,0.2759611722203626,0.2816275079659652,0.288381105413644,0.2936348408710217,0.2991704867932765,0.3035523126330425,0.3086697402451366,0.3130276906669375,0.3164653446159808,0.3200657894736842,0.3186375977848867,0.3165528893040122,0.315028983060386,0.3128933541197529,0.3108728261030995,0.3091927119188581,0.3075291958097287,0.3087238407878539,0.3093008952367935,0.3096169300830431,0.3101205316137739,0.311509781039223,0.3131762140400906,0.3140568001253273,0.314995905390433,0.3156135770234987,0.3177050495787241,0.3203407003989614,0.3240312268183263,0.3252622761179145,0.3285937787594331,0.3324945119665899,0.3361285814116003,0.3395004625346901,0.3437114380635975,0.346498031261186,0.3503491078355314,0.3495784495167592,0.3546316964285714,0.3625239005736138,0.0,1.9871293783288169,56.21610640554118,161.10085347232828,244.2855313226598,fqhc2_100Compliance_implementation_low_initial_treat_cost,34 -100000,95702,45448,430.92098388748406,5710,58.48362625650456,4464,46.05964347662536,1766,18.05604898539216,77.3419109081298,79.71111837519871,63.33255108723839,65.08109875399575,77.12015146774493,79.4927009633636,63.24908679612034,65.00129225866294,0.2217594403848721,218.4174118351052,0.0834642911180481,79.8064953328037,169.76608,119.41326882794354,177390.08589162191,124775.91777386426,419.31076,277.4281479373564,437578.1488370149,289323.5543012229,397.23583,193.37073091753837,411892.9280474807,199430.15705158684,2937.21852,1356.796415136317,3032906.2088566595,1381506.9644692035,1062.70456,473.8354996206376,1092888.4871789515,477583.4101906304,1726.44528,730.823040548903,1767256.462769848,732087.922250151,0.37799,100000,0,771664,8063.18572234645,0,0.0,0,0.0,36249,378.1739148607135,0,0.0,36244,375.4989446406554,1503465,0,53927,0,0,0,0,0,72,0.7418862719692378,0,0.0,1,0.0104491024221019,0,0.0,0.0571,0.1510621974126299,0.3092819614711033,0.01766,0.3271604938271605,0.6728395061728395,24.49559296429823,4.241093906493557,0.318100358422939,0.2403673835125448,0.218189964157706,0.22334229390681,11.156085329077634,5.87372643454181,18.73804793273054,11958.14101642808,50.81569784590509,13.049944938436733,16.17599168641602,10.794446591274678,10.795314629777671,0.5810931899641577,0.8070829450139795,0.721830985915493,0.6006160164271047,0.1183550651955867,0.7434262948207171,0.919047619047619,0.8532338308457711,0.7575757575757576,0.1435643564356435,0.5176067310688688,0.7350689127105666,0.6699410609037328,0.5518169582772544,0.1119496855345912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0046822742474916,0.0068472306755934,0.0090700414398309,0.0115203156139423,0.0136128533029241,0.0157089411500861,0.0180758553115048,0.0203086672117743,0.0225572374548394,0.0248180420297283,0.0267792050436907,0.0289066677635638,0.0308971400313195,0.0329897119978536,0.0350940665701881,0.0370642695884509,0.0393200709816008,0.0414041216960925,0.0431851103075271,0.0577846937922967,0.0720035169620147,0.085287421443035,0.0984654865953575,0.1101196126827416,0.1258027996148678,0.1375571563458131,0.1490274569089418,0.1593533980789982,0.1689661831602437,0.1811161017222994,0.1930561267559903,0.204681670346883,0.2136592300962379,0.2222906674880098,0.2327468804322552,0.2420058220591351,0.2505255584409744,0.2586382920797695,0.2663530542869897,0.2742260169373872,0.2803665043999251,0.2863653582082485,0.2910653497626696,0.2961531919029914,0.3009975708102642,0.3053189357117803,0.3088373749968192,0.3124595343537151,0.3164984052508106,0.3156067030082778,0.3144054406814591,0.3131121509773337,0.3117802216809121,0.3095255739502897,0.3079801450935471,0.306280284735704,0.3068090612766375,0.307683124413746,0.3079076901127122,0.3089776214355212,0.3082329713721619,0.3089708656466149,0.3088334004564371,0.3084067176747991,0.3087905789172008,0.3084442417851748,0.3116805533721113,0.3149822351989306,0.3188423106015366,0.3218631785242241,0.3224261771747805,0.3224119463171823,0.3269157307662923,0.3268269684111268,0.3280285035629454,0.3330279431974347,0.331289597384018,0.3394546466332777,0.3367697594501718,0.0,2.2722627504920654,54.7298714045859,164.9853756472654,238.93131203798225,fqhc2_100Compliance_implementation_low_initial_treat_cost,35 -100000,95711,45972,436.5015515457993,5802,59.49159448757196,4636,47.8941814420495,1820,18.702134550887568,77.33810060160408,79.72036094165587,63.31256206328344,65.07477906147244,77.10827762931612,79.49042462343867,63.22679097472332,64.99104166071037,0.2298229722879625,229.93631821719876,0.085771088560115,83.73740076207525,169.7146,119.47407101995104,177319.84829329964,124827.94142778892,424.75148,280.66090809744395,443166.9400591364,292619.3834537764,404.83101,197.05171595186587,418976.502178433,202966.80007906025,3058.86599,1417.988797071862,3162285.0978466426,1448021.671071745,1088.61234,487.5376509031772,1123168.4550365163,495228.5517645466,1781.15964,755.5537859867668,1831437.7239815693,764571.21663558,0.3831,100000,0,771430,8059.993104240892,0,0.0,0,0.0,36647,382.3176019475296,0,0.0,36952,382.1399839098954,1497184,0,53778,0,0,0,0,0,93,0.961227027196456,0,0.0,1,0.010448119860831,0,0.0,0.05802,0.1514487079091621,0.3136849362288866,0.0182,0.336952945047713,0.6630470549522869,24.01083817376444,4.238224914339564,0.3192407247627264,0.245685936151855,0.2174288179465056,0.2176445211389128,11.114833598115688,5.848108992690857,19.411218354798528,12042.650689756323,53.01051482895849,13.700701437278257,16.933436553939586,11.304483823698838,11.071893014041816,0.5774374460742019,0.7963125548726954,0.7195945945945946,0.5873015873015873,0.1119920713577799,0.7371172516803585,0.9294117647058824,0.891566265060241,0.7358490566037735,0.1153846153846153,0.5125872004852896,0.7170868347338936,0.6525821596244131,0.5343203230148048,0.1109677419354838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002300784496564,0.0044735240413877,0.0066907628891099,0.0088928186678049,0.0111720474964642,0.0134346448833253,0.0154621300206025,0.0177821810493631,0.0200542005420054,0.0221471356166487,0.0242619386991253,0.0267078768213416,0.0288616757662687,0.0308322863674747,0.0329495749773046,0.0349392361111111,0.0367141555537149,0.0389048542883524,0.0409398066327061,0.0430026876679792,0.0578774777032813,0.0715713881939137,0.0850961134894652,0.0977903051082761,0.1101408926010292,0.1255805096848586,0.1376028015068711,0.1485453228829442,0.1592689574092876,0.1695402607156268,0.1828143519017347,0.1946321077476072,0.2061131853658005,0.2155809194471498,0.225780888859539,0.235721173562696,0.2453955524778573,0.2534302855663489,0.261254713124063,0.2690327979731976,0.2758393070143947,0.2830429488080183,0.2893334280841387,0.2940774487471526,0.298941380944857,0.3035782613525556,0.3086342386604334,0.3132224558720448,0.3169511515481421,0.3206742700248165,0.3186144505324376,0.3167127584925909,0.3161496543081234,0.3136145082807514,0.3123960560703255,0.3102677203945353,0.3085453049860794,0.3078323031266908,0.30786167815935,0.3085825353519142,0.3087637840975044,0.310337340360435,0.3112079257692227,0.3112508672590139,0.3107630965820382,0.3116772053488131,0.3117950461939579,0.3141264522594181,0.3159016278907287,0.3192714082952215,0.3222857657495384,0.324515824279641,0.3266815864727092,0.3281766296185041,0.3313565604151223,0.3355186139077499,0.3393420459666516,0.3428116921853251,0.3485175202156334,0.3393325834270716,0.0,2.099832296373535,59.068882034708565,171.32025047106933,242.84604917761,fqhc2_100Compliance_implementation_low_initial_treat_cost,36 -100000,95648,45775,434.1230344596855,5767,59.02893944463031,4579,47.25660756105721,1808,18.494897959183675,77.27782633283482,79.68790064765753,63.2892740309558,65.07186103705544,77.0525138227146,79.46419513761138,63.20605040789727,64.99195215452819,0.2253125101202187,223.7055100461447,0.0832236230585223,79.90888252724915,169.4297,119.24126965211316,177138.54968216797,124666.55095152346,420.90144,278.1157960511856,439416.3077116092,290135.8294089596,403.53759,197.42430581231412,418040.63859150215,203506.9616909705,3014.7564,1383.2842652467314,3113525.1024590167,1407982.5286083866,1092.19742,486.5611332836976,1124524.7469889596,491391.40618111246,1773.59348,737.1958828462758,1816130.5202408836,738879.2182827782,0.38136,100000,0,770135,8051.752258280361,0,0.0,0,0.0,36326,379.1192706590833,0,0.0,36856,381.4193710270994,1499988,0,53855,0,0,0,0,0,66,0.6900301104048177,0,0.0,1,0.0104550016728002,0,0.0,0.05767,0.151221942521502,0.3135078897173574,0.01808,0.3372438863185724,0.6627561136814276,24.161024969353083,4.332352211749054,0.3188469098056344,0.2376064642935138,0.2234112251583315,0.2201354007425202,11.507154926824766,6.151872592697474,19.176885700248825,12072.29020271559,52.01310650720895,13.178688626857571,16.50318467416463,11.389641026379788,10.941592179806957,0.5675911771129067,0.8033088235294118,0.6972602739726027,0.5747800586510264,0.1180555555555555,0.750994431185362,0.9263657957244656,0.8593350383631714,0.736,0.1743589743589743,0.4981938591210114,0.7256371814092953,0.6379794200187091,0.5226390685640362,0.1045510455104551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021988934600652,0.0044925361025474,0.0071163177877489,0.0093092269073244,0.0114654865456025,0.0134778578050345,0.015634880163182,0.0177617535007711,0.0199259425952824,0.0223210169942942,0.0245438414752971,0.0267785607165601,0.0289039348040829,0.0312187580520484,0.0332651923434305,0.035538087604075,0.0378115123568727,0.0399244084022968,0.0418635143291223,0.0434701006204056,0.0589587643948418,0.0732800603248745,0.0858813280011756,0.0991097173405173,0.1107370864770748,0.1262093786387212,0.1383576336161582,0.1494715758970425,0.1606472519598301,0.1707015942884749,0.1823795002209028,0.194917823347264,0.2064761904761904,0.2159263758029392,0.2258036107441655,0.2356004698269175,0.2448252763201965,0.2524079575119272,0.260022467575204,0.2684947811756089,0.2754578246392897,0.2819649910023604,0.2891587635692831,0.2942233725151875,0.2980953769161625,0.3030344130303441,0.3075459416153422,0.3118772191043408,0.3165370658372213,0.3198717187314407,0.3174900586371908,0.3157285247528847,0.3138295619768213,0.3124466252695876,0.3110651222344638,0.3095738640723065,0.3084650542753761,0.308316730607742,0.3094646680942184,0.3106169040291991,0.3118140372600889,0.3131631037212985,0.3140202986076161,0.314989494389557,0.3157426337943476,0.3169848670330529,0.3172832815129646,0.3207850809378056,0.3244438156545113,0.3293341331733653,0.3327526931010772,0.3355034953839585,0.3390226942284594,0.3415887133875172,0.3431919115562695,0.3455829542734019,0.3501469905616586,0.3534749432872757,0.3564633463905988,0.3621351766513057,0.0,2.3160921389956477,54.66341742370377,170.82706308109286,247.90605772939813,fqhc2_100Compliance_implementation_low_initial_treat_cost,37 -100000,95835,45350,429.7907862471957,5885,60.38503678196901,4592,47.48786977617781,1869,19.24140449731309,77.39792083527668,79.70149745605978,63.37134666233784,65.07156506486993,77.16559613815267,79.46666173738716,63.28526865661244,64.98610225249301,0.2323246971240138,234.83571867262756,0.0860780057253975,85.46281237691744,170.9565,120.17868270379532,178386.28893410548,125401.66192288342,421.85999,278.5096781247882,439758.9398445244,290178.6071109597,395.63991,192.87748388860996,410017.50926070847,199148.05848925165,3022.34834,1402.0133124462016,3128407.763343246,1437652.791199668,1086.7305,483.4975167858181,1124980.2577346482,495530.9706292138,1817.59086,767.7492859060559,1873033.338550634,783211.5993631544,0.37957,100000,0,777075,8108.467678822977,0,0.0,0,0.0,36518,380.6020764856264,0,0.0,36114,373.9761047633954,1499692,0,53765,0,0,0,0,0,76,0.7930296864402359,0,0.0,2,0.020869202274743,0,0.0,0.05885,0.155043865426667,0.3175870858113849,0.01869,0.3317144244779019,0.6682855755220981,24.27623866440593,4.274922786677685,0.3227351916376306,0.2332317073170731,0.228876306620209,0.2151567944250871,11.335006617050006,6.065552456966939,20.026247834772047,11968.716167961147,52.50199891011455,12.895550849545836,16.8909469155186,11.78792706001958,10.92757408503054,0.5601045296167247,0.7796451914098973,0.6842105263157895,0.582302568981922,0.1123481781376518,0.7245827010622155,0.9266503667481664,0.852112676056338,0.7351778656126482,0.117391304347826,0.4938912645082468,0.6888217522658611,0.6164772727272727,0.5338345864661654,0.1108179419525065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022677573499635,0.0045496458571877,0.0065419138901567,0.0089152442553537,0.0112129960962914,0.0131485213001974,0.0153858694544639,0.0174955368528436,0.0197909535827041,0.0218639056281396,0.0240458992879463,0.0264173010238627,0.0286333655248936,0.0306454268543673,0.0328073303717751,0.034619117434489,0.0365910431085317,0.0387007172173624,0.0407152425158094,0.0427212555157772,0.0572361421150355,0.0713815066988798,0.084729590873823,0.0973402018502943,0.1097854041064125,0.1247674418604651,0.1368133091579985,0.1472632262321601,0.1573072116052257,0.1676676891396211,0.1805210049645161,0.1933917369673372,0.2049570605500598,0.2146855593457535,0.2243933012986156,0.234766628288017,0.2435439989295749,0.252194930020797,0.2599306216841246,0.266578947368421,0.2726410950035837,0.2795920036453282,0.2858257754023341,0.2909545693905883,0.2960861341481158,0.3020026078185352,0.3065299649087753,0.3101473930099405,0.3147334126286394,0.3179789628888508,0.3171402875283568,0.3162422479556556,0.3148340686205637,0.3128134186408438,0.3114163777007201,0.3095154521175124,0.306143382410958,0.306958243988673,0.3077526251193236,0.3083382360806546,0.3086315868207487,0.3094181021724975,0.3108600125549278,0.3117743126244435,0.3139568483914467,0.3140153292663851,0.3120372752479776,0.3155070084606642,0.3162299982416036,0.320317775571003,0.3243243243243243,0.3258954785672343,0.3278947701258458,0.3296375592598257,0.3292602064980581,0.3286088613625536,0.3347139131768676,0.3292313899536009,0.3282401091405184,0.3262438283327003,0.0,1.664285160640712,58.413305337065935,170.3397703599831,241.96754959237384,fqhc2_100Compliance_implementation_low_initial_treat_cost,38 -100000,95552,45493,432.6021433355659,5741,59.02545210984594,4515,46.65522438044206,1749,17.94834226389819,77.19945181010942,79.67170371077421,63.224607941291474,65.05418627206794,76.98116604607898,79.45358953605412,63.14422425174504,64.97602537897289,0.2182857640304405,218.11417472008543,0.0803836895464371,78.16089309504548,169.3351,119.17896242602914,177217.0545880777,124726.16087572122,420.81714,278.3168357152654,439816.60247823177,290683.66139641806,398.59544,194.63798170075475,412881.038596785,200359.6851674637,2926.30611,1344.389818449397,3026303.154303416,1370837.259977569,1059.45947,467.0976519713831,1094839.8463663764,474903.24846301903,1707.3372,712.7244004538571,1753506.3630274616,718256.4364916853,0.37963,100000,0,769705,8055.32066309444,0,0.0,0,0.0,36368,379.9920462156731,0,0.0,36350,376.18260214333554,1496183,0,53692,0,0,0,0,0,77,0.8058439383791024,0,0.0,0,0.0,0,0.0,0.05741,0.1512261939256644,0.3046507577077164,0.01749,0.3374937593609585,0.6625062406390414,24.137846652518306,4.333901549081215,0.3207087486157253,0.2449612403100775,0.2239202657807309,0.2104097452934662,11.25036625336528,5.822807991246339,18.53340807791372,11996.282888566711,51.46036287766743,13.305870680054277,16.566436346230226,11.20371771386233,10.3843381375206,0.582281284606866,0.8128390596745028,0.7182320441988951,0.5727002967359051,0.1168421052631579,0.7536348949919225,0.928400954653938,0.8817480719794345,0.7468354430379747,0.1243523316062176,0.5175465364662801,0.74235807860262,0.6581680830972616,0.5193798449612403,0.1149273447820343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0045555082080314,0.0068648956048419,0.0090491296567431,0.0113715030337581,0.0137413606801361,0.0159412154921671,0.017913345595749,0.0201289398280802,0.0221564066038799,0.0239485921348429,0.0263128129723504,0.0282180410088464,0.0304099358379237,0.0324387446133495,0.0346662250147504,0.0367643246046149,0.0387337483501522,0.0405712261989083,0.0426558095834638,0.0568398150666304,0.0707252880915182,0.0841961423240658,0.0969370014856649,0.1090278805301316,0.1242552740379518,0.1359168563708699,0.1475418583060325,0.1592569579842735,0.1690826970642004,0.1812516874561261,0.1932886197390983,0.2048610732324609,0.2141540891540891,0.2241179521702184,0.2349772298122848,0.2446374022311987,0.252713773103744,0.2606360584855208,0.2675815342214056,0.2742758412764674,0.2811888152881177,0.286781622826783,0.2914640442827468,0.2964644865957291,0.3009980976851051,0.3053690011423406,0.3101068850284431,0.3138955239381036,0.3183693984445267,0.3172878335875596,0.3151719859378231,0.313613473826753,0.3128445544124669,0.3117519204430417,0.3095062751235079,0.3065956198360214,0.3073771840347471,0.3083803094426263,0.3094022605549286,0.3099960519636781,0.310673644978391,0.3110657290833298,0.3127103055318767,0.3148796446075472,0.3160869906571406,0.3174625883430141,0.3209413692070193,0.3251665667853491,0.3298412698412698,0.3325325234576855,0.334654826091553,0.3389226052680973,0.342928755886374,0.342987947304494,0.3443011007219789,0.3475102164371121,0.3414245921209709,0.3514986376021798,0.3447085889570552,0.0,2.290937546791896,54.16104405577137,167.70008792817305,246.77257223625412,fqhc2_100Compliance_implementation_low_initial_treat_cost,39 -100000,95671,45619,432.492604864588,5850,59.99728235306414,4513,46.461310114872845,1775,18.07235212342298,77.33990302576841,79.7307119023196,63.32261558699434,65.08895307968976,77.11702149443688,79.51245988374656,63.23898969468147,65.01048812928347,0.2228815313315237,218.2520185730397,0.0836258923128667,78.46495040628554,169.53068,119.30626939850876,177201.5135202935,124704.52111978416,419.33848,277.00887039477584,437589.47852536297,288820.18520426867,391.19016,190.26752355537053,404585.2034576832,195552.99626971903,2975.12588,1360.7522836083217,3065056.5688662184,1377740.9897696143,1076.91314,474.88548076135686,1107957.8451150295,478790.1251611745,1738.54882,731.0614388819317,1773363.1507980474,726112.5081438485,0.38075,100000,0,770594,8054.614250922432,0,0.0,0,0.0,36289,378.568218164334,0,0.0,35636,368.2307073198775,1505268,0,53950,0,0,0,0,0,69,0.7107691986077285,0,0.0,0,0.0,0,0.0,0.0585,0.1536441234405778,0.3034188034188034,0.01775,0.3338754268986827,0.6661245731013173,24.71237535900564,4.325944104154716,0.3212940394416131,0.2342122756481276,0.2264569022822956,0.2180367826279636,11.081299568399562,5.749985304743681,18.88434519186486,12035.303823214035,51.18463320599223,12.619785047222145,16.364496750996697,11.415957869635404,10.78439353813798,0.5597163749169067,0.7918637653736992,0.7,0.5547945205479452,0.1087398373983739,0.7120462046204621,0.898989898989899,0.8469656992084432,0.6735537190082644,0.1179487179487179,0.5037867312935475,0.7276853252647504,0.6479925303454716,0.517948717948718,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.004642440829152,0.0068898336901705,0.0091313533498557,0.0110938246748624,0.0134774730755919,0.0158804582704774,0.0179125500122478,0.0200259652637927,0.0220375241819093,0.0242557204953661,0.0263095763573092,0.0286384155809433,0.03100375959211,0.0331193493786896,0.0353092010711663,0.0371728725057499,0.039225659123936,0.0412267104975709,0.0433246114232697,0.0577911495549705,0.0727133763296758,0.0857823336236111,0.0979989900265118,0.1099986284460293,0.124783105505946,0.1367836946027097,0.1481520906071702,0.1590544957381812,0.1688934162556294,0.1816742593131078,0.193685212837326,0.2050610061114856,0.2149166921764989,0.2252107498954504,0.2353077996588618,0.2445555158871831,0.2534563248776647,0.2611240288096183,0.2682667094159004,0.2755617750124325,0.2816609967383299,0.2880513857837397,0.2927319976527789,0.2981687559918935,0.3029642492087536,0.3075595573063215,0.3119517962016627,0.3164742129246065,0.3193139841688654,0.3171083104432595,0.3159487264124993,0.3152060621425955,0.3131694202332943,0.3119631445980086,0.3104688169410612,0.3084525974539416,0.3088165340769294,0.3104741129554518,0.3101987037960259,0.3105832663664056,0.3112881910885816,0.3119252633338906,0.3125083821359917,0.3129960078880284,0.3154000468957611,0.316099811997949,0.3197961559029853,0.3209308856049703,0.326068900051418,0.3278012061850995,0.3311296805584937,0.3301165559593934,0.3308373042886317,0.3347960041079264,0.3334510773578241,0.3385297264251872,0.3476044852191641,0.3430474604496253,0.3353846153846154,0.0,2.6901753425554977,52.555023915132416,167.3574526493661,248.56959044758,fqhc2_100Compliance_implementation_low_initial_treat_cost,40 -100000,95780,45904,433.7961996241386,5889,60.06473167675924,4642,47.83879724368344,1812,18.521612027563165,77.331780499572,79.67295156572541,63.32970022966426,65.0629237750311,77.09784626209766,79.44171229824843,63.241347953356765,64.97841068252788,0.2339342374743438,231.23926747697965,0.0883522763074964,84.51309250321515,170.25866,119.81400537968084,177760.13781582794,125092.92689463442,425.34347,281.7420871407854,443451.0858216747,293522.7261858272,406.3596,198.6224814143892,420253.8108164544,204309.3015687453,3020.58685,1407.8203482314857,3114933.117561077,1431109.248518987,1085.71026,488.5281855588029,1119977.5944873667,496484.0943399479,1763.08934,757.1182989345859,1803627.187304239,758082.8961384381,0.38108,100000,0,773903,8080.006264355815,0,0.0,0,0.0,36810,383.68135310085614,0,0.0,37095,383.28461056588014,1494562,0,53665,0,0,0,0,0,64,0.668197953643767,0,0.0,2,0.0208811860513677,0,0.0,0.05889,0.1545344809488821,0.3076923076923077,0.01812,0.3398576512455516,0.6601423487544484,24.15284264756586,4.256864146078181,0.3237828522188711,0.2464454976303317,0.2188711762171477,0.2109004739336493,11.18143675812922,5.908758157208559,19.474849258319924,12096.134628876349,53.02508062525416,13.695478522390392,17.110257925804714,11.39498220559278,10.824361971466278,0.5672124084446359,0.7972027972027972,0.6939454424484365,0.5541338582677166,0.1174668028600612,0.7254601226993865,0.9176755447941888,0.8498789346246973,0.7449392712550608,0.1385281385281385,0.5053924505692031,0.7291381668946648,0.634862385321101,0.4928478543563069,0.1109625668449197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424158014687,0.0049470824378573,0.0072046840593828,0.0094985574383355,0.0120010170353419,0.0143891485656676,0.0166595297812034,0.0188349871370819,0.021089325509599,0.0234119875108767,0.0255979169015961,0.0278562114320331,0.0301481702363937,0.0321590440873506,0.0341101432522808,0.0362965336862019,0.0384643267707157,0.0406052937271822,0.0425755229712456,0.0445046076951111,0.0597123953832988,0.0737157023755975,0.0872523325296152,0.1001355597356059,0.1124317717224083,0.1274754306245376,0.1383901125691632,0.1493667386241585,0.1602433427610865,0.1702597291273787,0.182631442966025,0.1949264387710947,0.206107866488303,0.2159850365881671,0.2253956723678707,0.2349056499240988,0.2442086234600964,0.2534305124398254,0.2619331133263022,0.2687014860440089,0.2750095401089307,0.2814052726953878,0.288104705102717,0.2934372190590351,0.2980049572317262,0.3031659698326365,0.3076383495753689,0.3124545906466291,0.3164031594920948,0.3205163779548367,0.3181469054452844,0.3162441366218688,0.3149955634427684,0.3136367579446549,0.312330925413954,0.3103141626163352,0.3076691347846078,0.3077846280312371,0.3081926803382519,0.3087888531618435,0.3094460707047962,0.3099582847314209,0.3105989042131116,0.3101950334758951,0.3117299578059072,0.3126208013373034,0.3152580083863422,0.3198014202224596,0.3253687418981887,0.3289823447728625,0.3324669402644779,0.3360476874767151,0.340960953346856,0.3447247706422018,0.3506321947537271,0.3517462580185317,0.3562528841716659,0.3592115848753017,0.3596370635138851,0.3703271028037383,0.0,2.477356769686681,56.68364909673608,175.48925823954855,246.01607702185325,fqhc2_100Compliance_implementation_low_initial_treat_cost,41 -100000,95678,45633,431.7293421685236,5729,58.728234285833736,4518,46.531072973933405,1777,18.14419197725705,77.34192318165195,79.7166056510159,63.32298576779221,65.0747211388857,77.12217150502319,79.50140267964687,63.24098824320181,64.99737711100467,0.2197516766287606,215.202971369024,0.0819975245903918,77.34402788103978,171.04516,120.2712096585419,178771.4417107381,125703.9263577226,424.03446,280.16766001367296,442500.21948619327,292135.18155236624,398.38922,194.3075589841497,411717.92888647335,199583.96925233584,2953.24021,1357.345111286571,3045396.8414891614,1377471.9042074154,1109.82748,491.15099983151066,1142784.109199607,496277.7171357655,1742.09906,730.1882552986937,1781407.1991471394,728719.9267811902,0.38071,100000,0,777478,8125.974623215368,0,0.0,0,0.0,36723,383.09747277326034,0,0.0,36311,374.9764836221493,1492013,0,53543,0,0,0,0,0,78,0.8047827086686595,0,0.0,1,0.0104517234892033,0,0.0,0.05729,0.1504819941687898,0.3101762960377029,0.01777,0.3344420422418094,0.6655579577581906,24.227747638722303,4.266262267801437,0.3202744577246569,0.2419212040725984,0.2131474103585657,0.2246569278441788,11.474870694647349,6.159093097639238,18.84397133363667,12037.525929873304,51.3477450759144,13.196908707893368,16.389404160781748,10.85632893870434,10.905103268534944,0.580787959274015,0.8106129917657823,0.710435383552177,0.616822429906542,0.1142857142857142,0.7680577849117175,0.9431818181818182,0.8831168831168831,0.7489361702127659,0.1397849462365591,0.5094743276283619,0.7212863705972435,0.647834274952919,0.5741758241758241,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023895588428865,0.0046624299368544,0.0071111922659443,0.009466349767404,0.0118169892101329,0.0139174523019282,0.0161898741920355,0.0181961136695495,0.0203996073459037,0.02282291506681,0.0249364285128373,0.0268840944332056,0.0291591668809462,0.0313639829373338,0.0337025300122836,0.0359336545819287,0.0379527868988305,0.0401590168358556,0.0424089268815191,0.0441424730622538,0.0578188655593857,0.0719805650380112,0.0848640705363703,0.0974724303392541,0.1094755724385354,0.1241255966050395,0.1352961161956129,0.1463783553472518,0.1576663246109115,0.1680711057676825,0.1813221768150009,0.1930483947835882,0.2046416946975387,0.2138831434606082,0.2234526181381883,0.2337702629333747,0.2429191832360197,0.2522065114603503,0.2600651155403796,0.2674278777328584,0.2744229100376049,0.2815662326419354,0.2886766324610304,0.293597889941254,0.2983914078825873,0.3033025261860751,0.3082267230803895,0.3120706325377843,0.316241642046338,0.3208588633002324,0.3189799331103679,0.3174642566626683,0.316558533145275,0.3150063561770484,0.3131684739879248,0.3107849881525644,0.3084568466959517,0.3090351265770865,0.3093778286338872,0.3100554179511395,0.3107003199431212,0.3116895951929159,0.3133165829145728,0.314189869171419,0.3145360700996279,0.3142352084849745,0.315554924780017,0.3188950483886122,0.3225356045797263,0.3273595705206647,0.3295413506681112,0.3315246022547676,0.3316809939135345,0.3332329468453546,0.3373583503622515,0.3378346915017462,0.3370786516853932,0.3312165112125422,0.3354978354978355,0.3293856402664692,0.0,2.683366050789678,53.88381277126784,167.58315705380022,244.6857051131101,fqhc2_100Compliance_implementation_low_initial_treat_cost,42 -100000,95741,45802,434.4220344471021,5794,59.35805976540876,4552,46.99136211236566,1830,18.74849855338883,77.32392886815877,79.6871184830296,63.31606620966248,65.06469384661216,77.09230804330824,79.45763214158053,63.22965430253876,64.98162250923329,0.2316208248505376,229.48634144906063,0.0864119071237254,83.0713373788683,170.77258,120.1530988337572,178369.32975423278,125498.06126294608,422.60945,280.1505689655332,440878.4219926677,292083.6430227726,403.60974,196.77058230926093,418231.89647068654,203009.6610164116,2966.45144,1369.8191672332753,3064925.5700274697,1397355.9997233627,1065.40891,475.925540549711,1097836.266594249,482216.5789246249,1776.9868,748.8666773430203,1822047.2524832624,752536.4410122971,0.38164,100000,0,776239,8107.69680701058,0,0.0,0,0.0,36497,380.6415224407516,0,0.0,36784,380.8399745145758,1491464,0,53616,0,0,0,0,0,81,0.8460325252504152,0,0.0,0,0.0,0,0.0,0.05794,0.1518184676658631,0.3158439765274421,0.0183,0.3417533432392273,0.6582466567607727,23.938060468768825,4.215593125021721,0.3198594024604569,0.242750439367311,0.2295694200351493,0.2078207381370826,11.417539891236778,6.220057796148065,19.5861409428873,12031.768968004646,52.18849214978301,13.545622159110868,16.422682761456254,11.763033024205544,10.45715420501034,0.5645869947275922,0.7927601809954751,0.695054945054945,0.5435406698564593,0.120507399577167,0.7334384858044164,0.9131403118040088,0.889196675900277,0.669260700389105,0.1343283582089552,0.4993909866017052,0.7103658536585366,0.6310502283105023,0.5025380710659898,0.1167785234899328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397854690206,0.0043293554634032,0.0067387906712403,0.0091954723729399,0.011453798266672,0.0137678207739307,0.0160675325734559,0.0182306286810864,0.0202537598789477,0.0223612405164381,0.0242987204724409,0.0265305912913128,0.0287250557743119,0.0308189899364461,0.0328665627870019,0.0348448983388979,0.0368325651250712,0.0391293968675724,0.0409608485415691,0.0431842807134522,0.0584446091686416,0.0725943129747034,0.0858700781209039,0.098391167192429,0.1109400537776137,0.1264980590021049,0.1381311604120911,0.1495283320201869,0.1594351513597812,0.169573840793353,0.1821039486715756,0.194093283299629,0.2053052128064358,0.2153454251260017,0.2246929057657836,0.2343000786241874,0.2433602642503236,0.2523012175635226,0.2606439746588251,0.2677957161858459,0.2751787514630387,0.2824115303491915,0.2886733617102002,0.2929964592210286,0.2979992211079739,0.3028467072222702,0.3069970918572001,0.3114747830076855,0.3158857409713574,0.3194007351968899,0.3175789629909467,0.3160251905135943,0.3145284190325675,0.3134762656166307,0.3120071417943758,0.3107905295721155,0.3077580341461099,0.3079938332349275,0.30859328313613,0.3084772370486656,0.3087783686615235,0.3095548703352309,0.3109004540983949,0.3109924959799893,0.3118481134342706,0.3120147970614286,0.314176027299872,0.3170654911838791,0.3221103049940128,0.3247836099420313,0.3281883167144743,0.3302436440677966,0.3318047616056285,0.3321686289403722,0.33528467566802,0.338488994646044,0.3328781671976938,0.3365612648221344,0.3360699152542373,0.3334590720482837,0.0,2.1377737521328943,55.64638421655717,176.70519667464805,238.59404977724637,fqhc2_100Compliance_implementation_low_initial_treat_cost,43 -100000,95790,45814,433.7613529595991,5761,58.93099488464349,4505,46.39315168597975,1759,17.914187284685248,77.4066300966336,79.74490212514095,63.35719594835807,65.08736069886838,77.18170854680294,79.52515855693018,63.27310656042097,65.00848205960123,0.2249215498306682,219.7435682107738,0.084089387937098,78.87863926714545,170.16516,119.68068997078606,177643.9711869715,124940.6931525066,423.11767,280.68246294631945,441088.06764798,292392.789379183,395.88988,193.0300432117228,409603.2571249609,198729.4884927084,2963.96025,1358.2177973536077,3053559.233740474,1377243.905787251,1072.49071,477.1026384028113,1103797.8285833595,482242.2678805834,1720.66912,728.7423104891774,1754208.518634513,723347.466794456,0.3814,100000,0,773478,8074.725963044159,0,0.0,0,0.0,36602,381.4490030274559,0,0.0,36121,373.5358596930786,1498459,0,53792,0,0,0,0,0,69,0.6994467063367783,0,0.0,0,0.0,0,0.0,0.05761,0.1510487676979549,0.30532893594862,0.01759,0.3388852242744063,0.6611147757255936,24.51070080602692,4.386465329037541,0.3152053274139844,0.2388457269700332,0.220865704772475,0.2250832408435072,11.396351062964854,6.003452619494359,18.647644250558635,12039.055296741952,50.83173537802998,12.848956791530044,15.91328845033391,11.045972427408968,11.023517708757057,0.5596004439511654,0.7788104089219331,0.6774647887323944,0.5969849246231156,0.1252465483234714,0.724709784411277,0.9077306733167082,0.8370786516853933,0.7405857740585774,0.1666666666666666,0.4992421946044256,0.7022222222222222,0.6240601503759399,0.5515873015873016,0.1144278606965174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000385028471,0.0050293038064529,0.0072761591621761,0.0095302927161334,0.0116150161206659,0.01381845583593,0.0157419302216512,0.0180166385954167,0.0201561797293429,0.022534692373818,0.0246377108655994,0.0268018387785256,0.02910645645337,0.0313050102428428,0.0331096473595777,0.0352625329134183,0.0371807206480245,0.0394455847898654,0.0415268412795711,0.0435606454971369,0.0581833359419836,0.072569259247639,0.0855852078572776,0.0983415310884096,0.1103056612123191,0.1264701841891135,0.1384687138935117,0.1496884370813041,0.1607956546329594,0.1698446705945367,0.1825655593935285,0.1947099788053116,0.2058315311301172,0.2155931240853592,0.2248442701295277,0.2352036469455724,0.244605038642979,0.2534343593317895,0.2607512248230811,0.267537433032648,0.2740560855738653,0.2799817708029026,0.2863242303461816,0.291727036509286,0.2966012167134166,0.302196651430965,0.3065755550549423,0.3106605957316918,0.3144784370589987,0.3181302443400707,0.3163133367454139,0.3157873019366197,0.3146220901575856,0.314272921601479,0.3126687835712378,0.3112652599734144,0.3088362850699427,0.3088461161399954,0.309466040008823,0.3098651450443905,0.3097496878086966,0.3103922377388879,0.3116961498439126,0.3123416173920775,0.3137306442362837,0.3142797970384177,0.3136705709274033,0.316846504085324,0.3194691190302017,0.3220539051741097,0.3276624548736462,0.3315642898428879,0.336631199054197,0.3393916635373639,0.341747572815534,0.3453421942404104,0.3474021026969374,0.3524132429198245,0.3541153951326223,0.3505154639175257,0.0,2.4672931749419105,52.2767014460555,167.37771302040375,245.80381291234707,fqhc2_100Compliance_implementation_low_initial_treat_cost,44 -100000,95703,45897,435.1274254725557,5718,58.78603596543473,4484,46.4248769631046,1737,17.857329446307848,77.29491858535671,79.69809745894027,63.29396199958445,65.07459671238485,77.08074304211314,79.4853777157483,63.21466721133378,64.99834351841027,0.2141755432435701,212.7197431919683,0.0792947882506709,76.25319397457986,170.6485,120.05250621625656,178310.50228310502,125442.78258388612,423.39046,279.90342523638486,441970.72192094295,292041.3353079386,399.65738,194.64542671545863,415650.9931768074,201889.07606226584,2957.08982,1359.640341148052,3061376.80114521,1392211.5285861774,1066.10416,474.33406464346393,1103998.0251402778,485684.3643689661,1704.09714,713.4080611116275,1753075.0969144125,720408.2619944896,0.38198,100000,0,775675,8105.022831050228,0,0.0,0,0.0,36630,382.28686666039727,0,0.0,36417,378.55657607389526,1494931,0,53699,0,0,0,0,0,76,0.7941234862021044,0,0.0,0,0.0,0,0.0,0.05718,0.1496937012409026,0.3037775445960126,0.01737,0.3475201072386059,0.6524798927613941,24.2630803053517,4.352026191708015,0.3189116859946476,0.2450936663693131,0.2107493309545049,0.2252453166815343,11.197832529121923,5.763121250022503,18.5384320789434,12012.871671280524,50.95837157701839,13.156923761493598,16.202997668797625,10.416137695347702,11.182312451379468,0.5539696699375558,0.7797998180163785,0.6951048951048951,0.5576719576719577,0.1049504950495049,0.7374485596707819,0.9201995012468828,0.8768844221105527,0.7235023041474654,0.1055276381909547,0.4857754665035179,0.6991404011461319,0.625,0.5082417582417582,0.1048088779284833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023923687491763,0.004728708129116,0.0067942923881582,0.0088861776218799,0.0112279487362195,0.0134946439309775,0.0160210620841667,0.0179910504484992,0.0200106396038793,0.0220653766172568,0.0243522146769792,0.0264120318053871,0.0287099064612724,0.031258373698856,0.0332789694254629,0.0352548192272689,0.0373479243093121,0.0395265534963401,0.0416649327951396,0.0436105899520533,0.0573992249276633,0.0716125384760349,0.0850228770515888,0.0977893751117938,0.1097595712582683,0.1252711209860868,0.1376700842726443,0.1481438107506733,0.1577007318767028,0.1675535909705383,0.1805099259993321,0.1919407183037646,0.2034287080923598,0.2133435331402655,0.2231238660729012,0.2331078462849994,0.2422717790247548,0.2511054354796971,0.259131007391092,0.2676387312722812,0.2752795980271841,0.2811702750146284,0.2872970029828133,0.2930215827338129,0.2983161628924093,0.3030471255859857,0.3078107976105496,0.3121159302281199,0.3157574738367204,0.3194226586700059,0.3174513521873024,0.3156738046509072,0.3150430525071754,0.3138324744872183,0.3125296912114014,0.3099154567175151,0.3077118133696789,0.307808547682402,0.308842375053396,0.3097390993566833,0.3107674405510407,0.3114939114939115,0.3127464138914521,0.3151135473766641,0.3158986731001206,0.3175329428989751,0.317813071297989,0.3209347737079147,0.325008768853034,0.3271435940165853,0.3297124600638977,0.3318307170131523,0.3334797064174142,0.3352298588984979,0.3380506091846298,0.3348351908940005,0.3364118092354277,0.3363599677158999,0.3363119415109667,0.3314585676790401,0.0,1.6137893091614173,53.64299291200891,168.10334980169776,244.57949605094856,fqhc2_100Compliance_implementation_low_initial_treat_cost,45 -100000,95714,45334,429.9997910441524,5845,59.79271579915164,4626,47.68372442902815,1862,18.95229537998621,77.3593554540744,79.72932032100981,63.33143217950936,65.08334338401241,77.12793777672039,79.50208181064443,63.24442038057835,65.00048186279108,0.2314176773540168,227.23851036538176,0.0870117989310159,82.86152122133217,170.15856,119.67541080326995,177778.13068098712,125034.3845239672,422.04236,278.6413030578886,440294.9307311365,290472.4837096857,402.74182,196.21815619126303,416371.492153708,201563.7651893024,3022.58684,1404.2879283852967,3117061.694214013,1426296.5902431149,1090.98024,489.6216914492928,1123505.5895689242,495218.66336094285,1814.95048,770.9728975622824,1850902.940008776,770430.5620557363,0.37847,100000,0,773448,8080.82412186305,0,0.0,0,0.0,36539,381.0832271141108,0,0.0,36692,378.9936686378168,1499622,0,53784,0,0,0,0,0,77,0.8044800133731742,0,0.0,1,0.0104477923814697,0,0.0,0.05845,0.1544376040373081,0.318562874251497,0.01862,0.3419069462647444,0.6580930537352556,24.32117988853189,4.245626391449898,0.3197146562905317,0.2392996108949416,0.2258971033290099,0.2150886294855166,11.509062679708071,6.276941004141443,19.84246375535823,11910.469915630694,53.01754952574466,13.495182879173983,16.965341713872096,11.60883320603945,10.94819172665913,0.5717682663207955,0.7985546522131888,0.6977687626774848,0.5856459330143541,0.1175879396984924,0.7362385321100917,0.9198218262806236,0.8379746835443038,0.7831325301204819,0.1116279069767441,0.5069318866787221,0.71580547112462,0.6466789667896679,0.5238693467336684,0.1192307692307692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181258355953,0.0045414457611483,0.0068292286929079,0.0089679267128435,0.0112361835616159,0.0136622313620491,0.0155971252357408,0.0177918869811975,0.0201386191245323,0.0223896641038503,0.0246628723786084,0.0266333877710329,0.0284168072760195,0.0308468988254687,0.032980073678888,0.0350534433211354,0.0370738474599082,0.0389578060822304,0.0408341476599372,0.0427686058017811,0.0574832666785009,0.071001705966697,0.0838359785584659,0.0970788029190939,0.1090888000759245,0.1241298322083747,0.1358542228259716,0.1472852533728025,0.1575054774755517,0.1670441007588035,0.1796980245503238,0.1915227629513343,0.2026766770034274,0.2117480956133438,0.2215881549376459,0.2310985415626906,0.2405839513895094,0.2498284145504461,0.2587388777919012,0.2666300038954194,0.2730439008585776,0.2794004162476907,0.2855082401343012,0.2910353081986834,0.2962320247557793,0.3013705377482791,0.3057220435691137,0.3098485907883195,0.3136161291992339,0.3172249245330275,0.3158177664292433,0.3142146693959418,0.3122928719878672,0.3106013728396483,0.3086512977686966,0.3063792787845506,0.3032514302825891,0.3033116479780313,0.3027991554859361,0.3040061167517203,0.3041836467641231,0.3051271938473673,0.3058273788320097,0.3074251658003226,0.3082838672466415,0.3096743968142422,0.3097481144158246,0.3131195518771438,0.3170174637197371,0.3192257347983023,0.3216368939117754,0.3255381344671804,0.3300786203398427,0.3316850513503233,0.3361722040243332,0.3377358490566037,0.3398872123151958,0.342410893071686,0.3491977155289638,0.3438569798402434,0.0,2.561524512545748,57.03069679646715,175.4976626576462,243.94462027421184,fqhc2_100Compliance_implementation_low_initial_treat_cost,46 -100000,95888,45604,431.59728016018687,5880,60.14308359753045,4586,47.25304521942266,1832,18.761471717003168,77.4394230829848,79.7232255826636,63.39129033748679,65.07887140562849,77.20833275970398,79.49257677211362,63.30581544498473,64.99638114876238,0.2310903232808243,230.64881054997957,0.0854748925020558,82.49025686610878,171.68624,120.72149056362814,179048.72351076256,125898.4341769858,423.04397,279.19168450192444,440549.8185382947,290528.6631298227,396.14291,193.19586642516435,410174.3596696145,199117.0310363304,3023.56958,1381.0697895163137,3116899.372184214,1404069.3101188058,1058.57681,469.66655660325534,1090505.235274487,476387.1115484385,1797.0087,751.4085999428144,1841893.7927582175,754686.3152828986,0.38045,100000,0,780392,8138.578341398297,0,0.0,0,0.0,36627,381.3824461872184,0,0.0,36114,373.6755381278157,1496001,0,53703,0,0,0,0,0,82,0.8343066911396629,0,0.0,1,0.0104288336392457,0,0.0,0.0588,0.1545538178472861,0.3115646258503401,0.01832,0.3328994467946632,0.6671005532053368,24.34445550302252,4.325596130927117,0.3111644134321849,0.2333187963366768,0.2317924116877453,0.2237243785433929,11.013183943169537,5.711163171685561,19.526339580184715,11990.270843587025,51.70452425955644,12.790704538511164,15.912916075068438,11.8003203080292,11.200583337947633,0.5617095508068033,0.7850467289719626,0.7147862648913805,0.5794920037629351,0.0974658869395711,0.7369687249398557,0.9301204819277108,0.868421052631579,0.7291666666666666,0.1320754716981132,0.4962563641808925,0.6931297709923664,0.6590257879656161,0.5358444714459295,0.0884520884520884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182830532496,0.0046110503060521,0.0067661469481329,0.0089756216430261,0.0112413225324483,0.0134103905089436,0.0154825566590272,0.0177172582619339,0.0198806750847942,0.0222797344435692,0.0244269803375103,0.0266362955438585,0.028762857994307,0.0308720134235096,0.0328669958864707,0.0348808392879269,0.0370684571534983,0.0391980105688529,0.0411527760475063,0.043121384877866,0.057698321692901,0.0713270637408568,0.08413182118061,0.0970065413004903,0.1092103462433283,0.1246898590508367,0.1363308971507255,0.1471757055423325,0.1579469139750559,0.1680631801984012,0.1807588949801139,0.1922295691257184,0.2035389578648939,0.2135653960033651,0.2226595569237535,0.2326070357542023,0.2415445478352928,0.2500673914996855,0.2590444691117504,0.2666201819761328,0.2735975426684219,0.2801952107973053,0.2866903073286052,0.292037305302477,0.2971050555319536,0.3014022430965073,0.3062046031329308,0.3095035497021806,0.3141243521976815,0.3180160850850982,0.3171256165248827,0.3157049522345448,0.3143222470457643,0.3131537562580254,0.311831783738897,0.3096253496583666,0.3076096404583168,0.3082176077557972,0.3092105263157895,0.3101907880686267,0.3114570291331078,0.3133598770055584,0.3144933893101072,0.3161336239491126,0.3171343283582089,0.3176345425294514,0.3201651443599242,0.323455174347948,0.3263582328200493,0.3291881468655306,0.3305635838150289,0.3317668180378076,0.3359404329871105,0.3402898990665554,0.3469579958560934,0.3511685846482382,0.3526234567901234,0.348475547370575,0.3493340732519422,0.3486517280668439,0.0,2.2735343133835286,54.31885488923377,165.2654384348191,253.07515041517115,fqhc2_100Compliance_implementation_low_initial_treat_cost,47 -100000,95726,45901,435.6496667572029,5655,57.69592378246245,4412,45.4004136807137,1701,17.28892881766709,77.34647984393533,79.69845486716557,63.33814763576003,65.07493586631779,77.12798920599766,79.48608136239756,63.25509227244091,64.9974732413919,0.2184906379376627,212.37350476801,0.0830553633191186,77.46262492588585,171.7133,120.84962639736383,179379.7714309592,126245.12984702572,423.76726,280.5021190791578,442013.9251613982,292352.5298029353,398.96041,194.59627859960835,412686.29212544137,200109.79483848956,2856.04868,1316.7470261442352,2941395.503833859,1333378.3571278804,1035.61907,460.11160528497686,1065079.570858492,463892.74483760895,1661.17274,706.8001480573904,1691446.4408833543,700498.3447746186,0.38221,100000,0,780515,8153.625974134509,0,0.0,0,0.0,36717,382.8531433466352,0,0.0,36352,375.6659632701669,1488879,0,53442,0,0,0,0,0,58,0.6058959948185446,0,0.0,1,0.0104464826692852,0,0.0,0.05655,0.1479553125245284,0.3007957559681697,0.01701,0.3285424416638485,0.6714575583361515,24.454125828829326,4.272223641009845,0.3148232094288304,0.2531731640979148,0.2198549410698096,0.2121486854034451,11.172234813948627,5.850752238202427,18.05953709960193,12032.293436463622,50.11480124439098,13.262527137021442,15.81114646720692,10.840685032250782,10.20044260791184,0.5743427017225748,0.7914055505819159,0.7105831533477321,0.5742268041237113,0.1132478632478632,0.7333333333333333,0.946153846153846,0.8559782608695652,0.6853448275862069,0.1333333333333333,0.5159590951348001,0.7083906464924347,0.6581782566111655,0.5392953929539296,0.1079622132253711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875632975491,0.0045008058875406,0.00671801585127,0.0093049714552731,0.0115626334736713,0.0138153608079491,0.0159836901121304,0.0182079833433694,0.020474082857172,0.022472945440398,0.024415994423887,0.0264100590197587,0.0284994602374955,0.0303944793490575,0.032531313839995,0.0345226774713689,0.0367145356843336,0.0386059926958831,0.0409052163246637,0.0430077286836239,0.0579446863156575,0.0720236973769599,0.0855095424452581,0.0986833803053884,0.1109986398000822,0.1267988369019297,0.1387621735163692,0.1495689196381053,0.1598565007100225,0.1698181974101706,0.1820873666189312,0.1937437805563968,0.2042872827280336,0.2147392810693247,0.2238663222118397,0.2336458944525014,0.2421437651939246,0.2510628725677651,0.2589894588737221,0.2661184097495046,0.2730185907150542,0.2791875204640067,0.2855181393146712,0.2901586083703979,0.2955572289156626,0.3008200152675515,0.3059335601360816,0.3106923360775681,0.3155221559989634,0.3192174670644454,0.3186360330756592,0.3171412849085156,0.3162407602956705,0.3152633935664659,0.3142114642114642,0.3127037825095289,0.3110619469026549,0.3115600117959304,0.3113568113568113,0.3117737221073643,0.3125058442894279,0.3139723000434045,0.3150228444481703,0.315481246367741,0.3165229091083827,0.3172087923562888,0.3166015457890083,0.3197362223268959,0.3252767269160712,0.3281280885550504,0.3331666969641883,0.3374164810690423,0.3424657534246575,0.3429635824526724,0.3453142642077531,0.3488068384186157,0.351479109484599,0.3551912568306011,0.3560500695410292,0.363600782778865,0.0,2.676500109401686,51.0036664870452,168.35079211389797,238.86034366140373,fqhc2_100Compliance_implementation_low_initial_treat_cost,48 -100000,95746,45852,434.6395671881854,5746,58.88496647379525,4470,46.15336410920561,1761,18.068639943183005,77.41222784566315,79.76786971774736,63.350809200748486,65.08966326012174,77.18472084225876,79.54263748831235,63.266311060813,65.00869228486168,0.2275070034043977,225.232229435008,0.0844981399354836,80.97097526005825,169.3912,119.17890201327552,176916.800701857,124473.60122325268,421.39276,279.28747553033287,439595.71157019614,291177.51337139186,402.08424,195.53175117045893,417053.6210389991,202011.91789603283,2929.57913,1346.8359602969786,3026056.670774758,1373081.455623576,1071.7408,479.0827054619277,1107693.6895536105,488703.7635639368,1721.71252,725.9222710688888,1767305.7046769578,730184.1915359498,0.37995,100000,0,769960,8041.672759175319,0,0.0,0,0.0,36376,379.3578844024816,0,0.0,36653,379.83832222756047,1501603,0,53805,0,0,0,0,0,71,0.7415453387086667,0,0.0,0,0.0,0,0.0,0.05746,0.1512304250559284,0.3064740689175078,0.01761,0.344068079425997,0.655931920574003,24.607790539609887,4.32075777355608,0.3029082774049217,0.2590604026845637,0.2152125279642058,0.2228187919463087,11.499281685879614,6.176482205652611,18.667035599713447,12018.274372668053,50.63358548957351,13.84936671206943,15.156061639139162,10.723564885088988,10.904592253275949,0.5697986577181208,0.7927461139896373,0.6920236336779911,0.5997920997920998,0.1154618473895582,0.7226277372262774,0.9050925925925926,0.8724035608308606,0.7339055793991416,0.1515151515151515,0.5115848007414272,0.7258953168044077,0.632251720747296,0.5569272976680384,0.1045751633986928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.004652105609892,0.0069695248143489,0.0093833780160857,0.0115190272369584,0.0136509390746678,0.0155941048168457,0.0177853513193608,0.0199182422074604,0.0222110768789854,0.0244632334101972,0.0264538315454498,0.0285182634084156,0.0306372549019607,0.0328958230146937,0.0350313204192594,0.036885161023092,0.0389288345213268,0.0411615478987752,0.043325624518199,0.0576824697493292,0.0721475807801774,0.0860520739357573,0.0992299762260419,0.1112306913142567,0.1269034995819973,0.138276872134488,0.1492578632424029,0.1588565321934277,0.1687165947581943,0.1816133344833534,0.1940290426326789,0.2051424403731644,0.2152350506886207,0.2250641639954617,0.2349561938560496,0.2435075093867334,0.2523931797193504,0.2605817702892956,0.2675568800504327,0.2742566691367173,0.2816222414640425,0.2878692869227766,0.292562874251497,0.296676216373701,0.3017260483096545,0.3052417137429385,0.3103899236912606,0.314904498082213,0.3186511120171504,0.316664878205816,0.3154158215010142,0.3142452221255578,0.3127491473225207,0.3117201458927068,0.3098396567986126,0.307937905978201,0.3075844985495909,0.3078633000746623,0.3083863648449825,0.3093565294970447,0.3098574984808985,0.3113572945733205,0.3124667021843367,0.3133365200764818,0.3146978093117199,0.3154126934721711,0.3184953956609958,0.3212455106523937,0.3252713544124587,0.3272686230248307,0.3308008863564419,0.3309581848865554,0.3339121244149177,0.3357752225519287,0.3414977147544826,0.3436983626258074,0.3460241919492365,0.3379254457050243,0.3469233673084183,0.0,2.0293650660324283,54.20424671128971,162.82216932335464,242.88539984261104,fqhc2_100Compliance_implementation_low_initial_treat_cost,49 -100000,95730,45876,435.5374490755249,5817,59.42755666980048,4495,46.380445001566905,1783,18.25968870782409,77.32373385663094,79.69618276907354,63.321321634088775,65.07641727858022,77.10206295892728,79.4749284037004,63.23882742092653,64.99632273227836,0.2216708977036603,221.2543653731416,0.0824942131622421,80.09454630186497,170.66126,120.09073845308583,178273.08053901597,125446.97545081582,424.41549,281.277508428112,442787.77812597936,293269.1286360489,401.05822,195.7951571659934,415691.6953932936,201919.8648988732,2942.10481,1367.754849747099,3037967.732163376,1393728.9852579446,1083.27354,484.7464879168129,1117166.9591559593,491942.8370592429,1745.34332,734.8346506907435,1789157.2756711585,738763.1338618143,0.38127,100000,0,775733,8103.321842682544,0,0.0,0,0.0,36759,383.3907865872767,0,0.0,36609,379.1287997492949,1493734,0,53613,0,0,0,0,0,64,0.668546954977541,0,0.0,0,0.0,0,0.0,0.05817,0.1525690455582658,0.3065153859377686,0.01783,0.3383076418497868,0.6616923581502132,24.125754809571685,4.382780334605396,0.3163515016685205,0.2433815350389321,0.2204671857619577,0.2197997775305895,11.472089196841344,5.978285255009393,19.00980051689922,12021.145750025367,51.34745790249104,13.228154336984824,16.155757739318645,11.003789708028483,10.959756118159095,0.5733036707452726,0.8025594149908593,0.689873417721519,0.6004036326942482,0.124493927125506,0.731974921630094,0.923963133640553,0.862796833773087,0.7427385892116183,0.1216216216216216,0.5104069586828207,0.7227272727272728,0.6270373921380633,0.5546666666666666,0.1253263707571801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100303951367,0.004512864198282,0.0067194478278522,0.0089730300997906,0.0111712518313527,0.013283215679084,0.0154815812018112,0.0177198124865952,0.0200014315953084,0.0223360131087101,0.0244177579965337,0.0266406490705556,0.028599351885191,0.0307495723501164,0.0328337565285605,0.034684172438747,0.0367984423062981,0.0386889940239043,0.0408825303083865,0.0427516072228647,0.0575607922570136,0.0716087370613415,0.0848570679255179,0.0981949382534239,0.1106014109905406,0.1265133491937615,0.1381256497846428,0.1490178970441148,0.1590537726277567,0.1681141705266769,0.181016569589044,0.1924628714209997,0.2044055928849457,0.2147831505756048,0.224320756792432,0.2343561407199884,0.2430790157317902,0.2515530392388141,0.2602455531748461,0.2676924836975174,0.2748827213273866,0.2815905984603343,0.2876054939599536,0.2930792905644108,0.2983090761219213,0.3029269013772204,0.3061405813968039,0.3105094325211945,0.3153618906942393,0.3195926605020512,0.318418006084592,0.3171275585348732,0.3167528569616864,0.3151574774670505,0.3138316061790987,0.3118434351168417,0.3096641643619123,0.3096712876478877,0.3093818157033806,0.3100345650857,0.3104480964324486,0.3116662384632107,0.3132633788037775,0.3139758928171349,0.3142285824419389,0.3139027512868079,0.3131148478609014,0.3184445778184919,0.3195810853697239,0.3214185870042733,0.3240087904038092,0.3277513241667112,0.3310952049154367,0.3310360670801746,0.3319236913823888,0.3373379326751516,0.3364770307271068,0.3331314354936402,0.3346028291621327,0.3369024856596558,0.0,2.244414412251069,55.7533627048105,166.39079461345142,240.1194221261584,fqhc2_100Compliance_implementation_low_initial_treat_cost,50 -100000,95785,45741,434.7966800647283,5784,59.28903272955056,4573,47.19945711750274,1786,18.29096413843504,77.38153749659537,79.72367741042534,63.350937847410606,65.08308561406874,77.15987133652011,79.50379350733996,63.26920453837271,65.00425519817445,0.2216661600752587,219.88390308537475,0.0817333090378937,78.83041589428785,169.90468,119.58573207912686,177381.30187398865,124848.07859176995,424.7024,279.90916875610594,442847.77365975885,291682.94488292106,397.17772,192.780341706859,411477.7365975884,198693.438143574,3002.21514,1353.2401574858484,3100064.2376154927,1378526.4367968347,1082.13186,474.3486954732791,1114857.5455447093,480347.0672444651,1756.56272,725.8645876302627,1800853.912407997,729721.2261272832,0.37984,100000,0,772294,8062.786448817665,0,0.0,0,0.0,36753,383.1184423448348,0,0.0,36172,374.4427624367072,1501378,0,53838,0,0,0,0,0,71,0.7412434097196847,0,0.0,0,0.0,0,0.0,0.05784,0.1522746419545071,0.3087828492392808,0.01786,0.3343171011641253,0.6656828988358747,24.488662461817352,4.426452483676571,0.3251694729936584,0.2370435162912748,0.2162694073912092,0.2215176033238574,11.333071982245723,5.718370812164559,18.761771091116817,11992.098344966826,51.216139627014975,12.8558723838885,16.500127684261315,11.06994861685614,10.790190942009012,0.5574021430133391,0.7776752767527675,0.6933422999327505,0.5611729019211324,0.1184600197433366,0.7388255915863278,0.907514450867052,0.8792134831460674,0.7172131147540983,0.2102564102564102,0.4970862470862471,0.7168021680216802,0.6348364279398763,0.5100671140939598,0.0965770171149144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281188600133,0.0043181219210574,0.0066860111196785,0.0088561185419903,0.0111332533501433,0.0133249183098018,0.0150956089207811,0.0170955000561344,0.0193443561078297,0.0215482841181165,0.0236406861639989,0.0257847303483812,0.028069093152375,0.0299822906799555,0.0318920703028302,0.0339511912879961,0.0359596837617451,0.0381047154067025,0.040118423102893,0.0417495236806213,0.0561538622085864,0.0705642420122365,0.084213064399459,0.0969023201075992,0.1094683597660572,0.1243909914289639,0.1360394255736315,0.147179841582053,0.1583407148116922,0.1680637139304549,0.1803913970160821,0.1924616050183863,0.2037169872839908,0.2133358102127566,0.2237363072456117,0.2343402366536422,0.2432381207215644,0.2520849724626278,0.2600596378643748,0.2677282450781884,0.2743490727466124,0.2808493730206032,0.2873026199065586,0.2930468731287873,0.2981527781149112,0.3034685638324061,0.308452305117348,0.312892322549493,0.317333057466508,0.3208757624059754,0.3190502440270514,0.3176947382882264,0.3155680027020941,0.3132606655598065,0.312393282950513,0.3101408063110581,0.3069614759402175,0.3070761887637511,0.3078531006236935,0.3084251688588695,0.3089778541285432,0.3102965809439353,0.3126737018075436,0.3141618626268043,0.3151647403002254,0.3160907577019151,0.3163456621782853,0.3196946946946947,0.3230060707557044,0.3262646605852387,0.3274284160927872,0.3298024469042953,0.3344047393962311,0.3368694192169732,0.3359433962264151,0.3391118499168843,0.3418515684774292,0.3403437815975733,0.3486568817502077,0.3597701149425287,0.0,2.047444133362654,49.70139335566765,172.64025516415646,257.3865509257202,fqhc2_100Compliance_implementation_low_initial_treat_cost,51 -100000,95869,45719,432.4755656155796,5824,59.581303653944445,4552,47.01206855187808,1807,18.53571018786052,77.37299817448195,79.67388787602431,63.35320242165369,65.05659480123373,77.14689059804368,79.44844238539359,63.2685887168353,64.97476067686132,0.2261075764382667,225.44549063071884,0.0846137048183877,81.83412437240634,170.32576,119.82631870432064,177665.10550855857,124989.64076429358,423.20601,280.1863614881645,440968.9472092126,291786.57489716646,398.5504,194.39890419163845,412640.8119412949,200464.09977945732,3004.26263,1385.0776343365387,3103152.364163598,1414196.606136016,1095.54013,492.10573620023257,1131227.0598420762,501798.2208392141,1772.03484,752.5919006385867,1818843.1505491869,758595.3830379493,0.3805,100000,0,774208,8075.686614025389,0,0.0,0,0.0,36686,382.17776340631485,0,0.0,36288,375.5437106885437,1496120,0,53781,0,0,0,0,0,71,0.7405939354744495,0,0.0,3,0.0312927014989204,0,0.0,0.05824,0.1530617608409986,0.3102678571428571,0.01807,0.3263900278825652,0.6736099721174348,24.31232873591269,4.286202186618705,0.3231546572934973,0.2324253075571177,0.21902460456942,0.2253954305799648,11.14752574858862,5.813946301331909,19.327640644526216,11894.066965415344,51.73051457887463,12.678854294983434,16.572408545569143,11.093254555429564,11.385997182892488,0.5511862917398945,0.780718336483932,0.6730115567641061,0.5626880641925778,0.1286549707602339,0.7203252032520325,0.9285714285714286,0.8740157480314961,0.75,0.1428571428571428,0.4885611077664057,0.7031700288184438,0.6027522935779817,0.5033025099075297,0.1241997439180537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0045202549991385,0.0067861598855786,0.008701744410373,0.0112437224244149,0.0135993485342019,0.0157165717081324,0.0177060690485666,0.0198837221183418,0.0221621953465528,0.0241278623021361,0.0262447802846091,0.0287244100961933,0.0308488847258391,0.0329890105358652,0.0348634274797335,0.0370067661238593,0.0391693608555085,0.0413399931463462,0.0434579050314203,0.0574017496845771,0.0702007377451748,0.0842272879651357,0.0966522451379846,0.108522805059132,0.1235026935671279,0.1358198675496688,0.1462014416023473,0.1561442645347906,0.1660219662469863,0.177837325929274,0.1900793393432345,0.2014673115591544,0.2112283387087957,0.2200470971433601,0.2305298020580644,0.2389463466880878,0.2481013512753293,0.2561603739335633,0.2639763644275473,0.2703571759045063,0.277385841142817,0.2833891644275044,0.2882527738503199,0.2932562714004711,0.2983616654348361,0.30354013319313,0.308692388912211,0.3135671106623691,0.3170155478710767,0.3162303382891618,0.3146121550003441,0.313660524200939,0.3114794405634862,0.3112656591324506,0.3093619887337742,0.3069850614001772,0.3072305951424307,0.3076699989764236,0.3082920041388661,0.3094935288396798,0.3098530427063813,0.3115004285744152,0.3122006638301664,0.3139206584677226,0.313423149806609,0.3141540037561892,0.3167247496153967,0.3194463910301331,0.3241855873642645,0.3279909706546275,0.3298175297964349,0.3316617564094528,0.3359161349134001,0.337968617870901,0.3427263120817189,0.3491675576599969,0.3480922260763109,0.3496522948539638,0.3560229445506692,0.0,1.7821174980424146,54.28781138666741,173.5722980694121,244.22774589397517,fqhc2_100Compliance_implementation_low_initial_treat_cost,52 -100000,95782,45690,432.7117830072456,5832,59.5623394792341,4591,47.24269695767472,1769,18.051408406589964,77.39816222968327,79.72655675362786,63.35848721039546,65.07916047540552,77.17732336762992,79.51010539802714,63.276135371205584,65.0011487749033,0.2208388620533412,216.45135560072504,0.0823518391898758,78.01170050221629,171.39628,120.58013659570696,178944.14399365225,125890.18458134824,423.41039,279.94739383930374,441392.4328161868,291611.6846999474,402.09659,196.3948856369674,415082.6668893946,201416.76058777445,2990.17626,1382.8931103574057,3083487.137457977,1405423.2531763848,1069.81473,481.0858503655755,1103883.3288091708,489228.3000621986,1731.13,731.8583471394421,1770125.4933077197,734012.5617027931,0.38033,100000,0,779074,8133.824726984193,0,0.0,0,0.0,36583,381.2407341671713,0,0.0,36708,378.5575577874757,1492768,0,53568,0,0,0,0,0,76,0.79346850138857,0,0.0,1,0.0104403750182706,0,0.0,0.05832,0.153340520074672,0.3033264746227709,0.01769,0.3389913497633426,0.6610086502366574,24.283800323993518,4.263411678201914,0.3147462426486604,0.2424308429536048,0.2284905249401002,0.2143323894576345,11.152844477472444,5.792508303535084,18.929249486553065,11980.150667470478,52.24542059206759,13.41424985044691,16.397993659535665,11.6184983397691,10.814678742315913,0.5663254192986278,0.793351302785265,0.7072664359861591,0.559580552907531,0.1097560975609756,0.7474429583005507,0.9244851258581236,0.8707124010554089,0.757085020242915,0.1394230769230769,0.4969879518072289,0.7085798816568047,0.649155722326454,0.4987531172069825,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280285997852,0.0044490838333063,0.0068883658645457,0.0092716711349419,0.0116403192192344,0.0141978952510839,0.016385591277322,0.0183548953189405,0.0205253425147375,0.0223961530591364,0.0244342222540954,0.0263519753719856,0.0285702540491655,0.0304352748643947,0.0326724608992401,0.0346722301979942,0.0369849267025998,0.0389696580044382,0.0413735047442865,0.0433220515490757,0.0574964521245512,0.0719350722697513,0.0851846803870791,0.0978591022312842,0.1100381623057623,0.1260372731212803,0.1380012514715396,0.1488385950351667,0.1592909013242204,0.1689074729280583,0.181557778663192,0.1934618753582126,0.2050797375396515,0.2144160085635329,0.2245884705830641,0.2344714655573012,0.2437952949046716,0.2522374634585113,0.2595188676035251,0.2665536943105442,0.2734197993249179,0.280206166288773,0.2864953785341491,0.291189897077677,0.2957083211962326,0.3005046774987691,0.3045505105420369,0.3094303178173408,0.3133783678857054,0.3169998417638061,0.3156867758474519,0.3137209078536766,0.3118655045690711,0.3105329235031819,0.3091011469045431,0.3072046197561795,0.3056279517920043,0.3061150961318005,0.3070899723634378,0.3071975770532692,0.3087573102146821,0.3100222980839434,0.31076646531363,0.3116706741472971,0.3119954139397124,0.313418903150525,0.3156542847465282,0.3194617493147271,0.3243608866072358,0.3259445250892542,0.3272489043509691,0.3299758682194942,0.3308317310674192,0.3297856280193236,0.3308446103593094,0.33388684616297,0.3409194355939918,0.3403141361256545,0.3471346312037291,0.3574677786201668,0.0,2.725870891218096,55.024462588736114,173.27248743509307,244.20768939320345,fqhc2_100Compliance_implementation_low_initial_treat_cost,53 -100000,95860,45547,431.50427707072816,5756,58.56457333611517,4522,46.41143334028792,1831,18.64176924681828,77.3584022892406,79.64042165567,63.35300198276878,65.04157958548868,77.12550583798914,79.41373763748095,63.26600313217734,64.96002205401186,0.232896451251463,226.6840181890473,0.086998850591442,81.55753147681821,170.24634,119.80620075283724,177598.70644690172,124980.18567537976,420.86321,278.55956480192145,438289.7871896516,289841.42596650764,396.23854,193.46901354380776,408415.595660338,197992.80433008476,2986.34059,1377.1458763227797,3068803.4633841016,1390228.0619872932,1062.1598,472.3597110969334,1088764.8967243896,473492.5319183528,1793.29454,760.1904778057806,1827574.5670769876,755122.3242282177,0.38049,100000,0,773847,8072.66847485917,0,0.0,0,0.0,36339,378.2912580847069,0,0.0,36095,371.6983100354684,1498425,0,53757,0,0,0,0,0,95,0.9805967035259754,0,0.0,2,0.0208637596494888,0,0.0,0.05756,0.1512786144182501,0.3181028492008339,0.01831,0.3419611747137879,0.658038825286212,24.26587749985325,4.325061223971973,0.3210968597965501,0.2410437859354268,0.2111897390535161,0.2266696152145068,11.121754808513389,5.7632601639092975,19.604588831336976,11980.9258129618,51.28977985349951,13.003197005158128,16.337164604651505,10.74185830226418,11.207559941425693,0.5652366209641752,0.773394495412844,0.7258953168044077,0.562303664921466,0.1190243902439024,0.7326732673267327,0.9280205655526992,0.8920308483290489,0.7012987012987013,0.0886699507389162,0.5039274924471299,0.6875891583452212,0.665098777046096,0.5179558011049724,0.1265206812652068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023590397796879,0.0045191557487511,0.0071000395573632,0.0094122186233995,0.0119333197804431,0.0143192989955118,0.0163005827458331,0.0184303126115559,0.0207569708912326,0.0225723019045379,0.0247425424318735,0.0269937769758358,0.0289526117946716,0.0310044027486318,0.0330908116575291,0.0350118220395857,0.0370538946932864,0.0392181249093132,0.0411361512098868,0.0427083658457921,0.0568795479660557,0.0705233353880873,0.0841781166219839,0.096115679047349,0.1081849784051406,0.1232331128906167,0.1351328437139011,0.1464636260195455,0.1571076312165754,0.1673009508903206,0.1799825541950699,0.1924554020576176,0.2027789556084673,0.2126287251022148,0.22221855724511,0.2319098786061283,0.2417611830439292,0.2501742787110121,0.2582752909680786,0.2653033167210861,0.2718478059618589,0.2792264766784824,0.2854994196925555,0.2915977069391475,0.2967479180596924,0.302294313556186,0.3072557102226454,0.3123296048105587,0.3167345667799777,0.320795377923503,0.3182584307538799,0.3163043178749552,0.3157427250169186,0.3141861104280279,0.3126227751651884,0.3102697063606517,0.3079045866903508,0.3079971063102167,0.3081488830351339,0.3091834002677376,0.3101432986794043,0.3110391021714647,0.3120429161165943,0.3129639567122798,0.3143977671911842,0.3155402944695905,0.3160842739757186,0.32001378964523,0.3223368899772608,0.327424524195782,0.3309996817747874,0.3349360667864313,0.3352830188679245,0.3381405339061061,0.3384308510638298,0.3433857983900036,0.3451713395638629,0.3470636215334421,0.3515452538631347,0.3559710034338039,0.0,2.986573014422269,51.91643052259821,174.27902682026587,241.74720501653363,fqhc2_100Compliance_implementation_low_initial_treat_cost,54 -100000,95720,45996,436.0321771834517,5844,59.75762641036357,4609,47.419557041370666,1823,18.554116172168825,77.38965647392791,79.754444597388,63.34469261111818,65.09318214929058,77.15217806765504,79.52364062611021,63.25594143368562,65.01034781157004,0.2374784062728707,230.8039712777941,0.0887511774325631,82.83433772054138,170.742,120.05099446373448,178376.51483493522,125418.9244293089,423.16398,280.0286261874468,441355.0668616799,291822.97752655885,404.50358,197.1394991570089,418430.0355202674,202813.63243965423,3009.68352,1389.465486563586,3098362.9962390307,1405932.4939346984,1091.21329,486.29999723143936,1122951.9954032595,491140.9130388758,1785.08036,759.024741416253,1819609.1099038864,753218.4343807653,0.38142,100000,0,776100,8108.023401587965,0,0.0,0,0.0,36584,381.4145424153782,0,0.0,36923,381.5503552026745,1495699,0,53705,0,0,0,0,0,67,0.6999582114500627,0,0.0,1,0.0104471374843292,0,0.0,0.05844,0.1532169262230611,0.3119438740588638,0.01823,0.3455858221201181,0.6544141778798819,24.24471462411675,4.274972917546431,0.3189412019960946,0.2488609242785854,0.2113256671729225,0.2208722065523974,11.119773682805617,5.886861084363533,19.52679802327796,12091.1244088055,52.40562097919272,13.732376568506464,16.648856507528837,10.857833582092267,11.166554321065146,0.5721414623562595,0.7820401046207498,0.7224489795918367,0.5780287474332649,0.1129666011787819,0.7418844022169437,0.9201995012468828,0.864406779661017,0.7573221757322176,0.1428571428571428,0.5080693365212193,0.707774798927614,0.6669820245979187,0.5197278911564626,0.1051980198019802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024613078356697,0.0046024553186744,0.0069921553902515,0.0092549322388605,0.0117183923830449,0.0139098203739155,0.0160173733954588,0.0183236185829054,0.0206578624580914,0.0228982629256958,0.0252260193935915,0.0274723582494071,0.0293497815471601,0.0314472532564485,0.0335932504074097,0.0356338231950559,0.037691304077702,0.0396514161220043,0.0416770599484493,0.0435430429074541,0.0580619564195996,0.0717194025476507,0.0853662375271491,0.0986869792105041,0.1115905182872153,0.1271748442573534,0.1387556762721215,0.1492400698199157,0.1600286242216454,0.1695197031125984,0.1822499353838201,0.1945577495266432,0.2059984557999934,0.2161284325412014,0.2257386519944979,0.2349221466699151,0.2439720741418151,0.2529245844898693,0.2615197968161821,0.2685812356979405,0.2755646009921713,0.2823695807179343,0.2887636067085062,0.2941803121708321,0.2999393203883495,0.3049025282317156,0.309304652326163,0.3135793677035379,0.3180712603824359,0.3218269560401888,0.3203276307295029,0.3186536689994638,0.3168507704214451,0.3151185285710161,0.3132172829987248,0.3109671306978805,0.3086747178151393,0.3092847565163358,0.3094247329177777,0.3107575380899954,0.3108286655377114,0.3114425514354772,0.3127159209157128,0.3135485878091598,0.314352648689998,0.3157129881925522,0.3167025739879805,0.3192109884596086,0.3211842705300453,0.3240321170204309,0.329086176188519,0.3304640718562874,0.3319871269009907,0.3342129071170084,0.3330859157543143,0.3405703555920666,0.3485696988042984,0.3512594962015194,0.3500272182906913,0.3551082415495632,0.0,2.676625270204371,54.71276065452267,173.94754003827293,247.1739136997545,fqhc2_100Compliance_implementation_low_initial_treat_cost,55 -100000,95762,46012,437.48042020843343,5777,59.01088114283328,4515,46.57379753973392,1749,17.87765501973643,77.34687979821054,79.707228905883,63.33382307926016,65.08159573321363,77.12405377569772,79.48751133785072,63.24997273560799,65.00193813893686,0.2228260225128195,219.71756803228004,0.0838503436521662,79.65759427676744,170.4758,119.9854693379467,178020.30032789626,125295.4923016924,425.58899,281.551245801684,443849.8569369896,293437.6431169816,403.00698,196.7373739832849,417773.8873457112,203009.138785,2961.24607,1370.825021045738,3054408.6798521336,1393602.6722977157,1081.12985,485.98119043575497,1105675.2365238825,484217.6130686002,1712.68526,731.7769889285352,1751038.198868027,729481.3303900402,0.38268,100000,0,774890,8091.831833086193,0,0.0,0,0.0,36798,383.6594891501848,0,0.0,36721,380.4222969445083,1495374,0,53709,0,0,0,0,0,80,0.824961884672417,0,0.0,0,0.0,0,0.0,0.05777,0.1509616389672833,0.3027522935779816,0.01749,0.3379116332947212,0.6620883667052788,24.17630600527088,4.260565400144782,0.3142857142857143,0.2425249169435216,0.2203765227021041,0.22281284606866,11.16769252935431,5.858284817975672,18.74132451715926,12044.664081388324,51.22681083438044,13.11757218196367,16.01110872381015,11.239520908041849,10.858609020564751,0.5714285714285714,0.7881278538812785,0.7145877378435518,0.5869346733668341,0.1182902584493041,0.7359238699444886,0.9130434782608696,0.8733850129198967,0.717741935483871,0.160377358490566,0.5076828518746158,0.7121879588839941,0.6550387596899225,0.5435073627844712,0.1070528967254408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482712496453,0.0045633391473654,0.006741116751269,0.0087909184223096,0.011353463009685,0.0134518645241441,0.0156794780303802,0.0177727416572239,0.0199037016591529,0.0219623823809475,0.0239911417322834,0.0259466896665023,0.0280231589555845,0.0301313417460726,0.0319211517622168,0.0342161301660154,0.0360156986196398,0.0382165605095541,0.0401671552423127,0.0421530547427393,0.0578866065464261,0.0718432586796656,0.0852643278042233,0.0983802987145394,0.1104459364032083,0.1257728036523889,0.1376868440580939,0.1488468041215188,0.1603614560662314,0.1702713414960739,0.1835511806788231,0.1956683850468501,0.2065728719647998,0.2163794421510167,0.225587782904856,0.2356573021897164,0.2446701752821016,0.2539120464049642,0.2617364365716101,0.2688603071707535,0.2759598250445488,0.2823044882295128,0.2884280793949508,0.29372984765124,0.2992122161125475,0.3035742848354352,0.3078856856982052,0.3115370925916509,0.3155402608155661,0.3190109658371995,0.3170899015440899,0.3151308461337477,0.3143821647091919,0.3126568404049727,0.3122942798683391,0.3097123291859007,0.3078381795195954,0.3081552665671788,0.3093657754193185,0.3102120834075922,0.3108858676341331,0.3118746423003296,0.3125810364297963,0.3133881490749843,0.3142898362547789,0.316581339462961,0.3177874186550976,0.3205099883232871,0.323843666526079,0.3263836390403056,0.3284271152351785,0.3307094989894692,0.331670980367401,0.3350296217530001,0.340510812826249,0.34005186232909,0.3440597834375477,0.3461931006327822,0.3462611607142857,0.3458676067371719,0.0,2.188134610458997,54.94176032962787,166.56782183719136,242.03647790709684,fqhc2_100Compliance_implementation_low_initial_treat_cost,56 -100000,95752,45944,436.2415406466706,5830,59.67499373381235,4591,47.35149135266104,1868,19.090985044698805,77.36211040614715,79.72506411951875,63.32787542470121,65.07603108991795,77.12227763465083,79.48807674338839,63.23820930665374,64.99036607521525,0.2398327714963244,236.98737613035803,0.0896661180474751,85.66501470269827,170.9081,120.29444470743891,178490.14119809508,125631.0377928805,424.83544,280.6731031864789,443077.00100259,292519.2442836482,400.90939,195.44071780171117,415841.2879104353,201798.60338222084,3046.392,1394.8344294286142,3144116.9270615755,1419319.3340385698,1067.57668,469.8515065290398,1101311.8054975353,477071.21093704936,1829.64944,776.9850121788603,1871955.405631214,776774.0680703203,0.38066,100000,0,776855,8113.188236277049,0,0.0,0,0.0,36752,383.1773748851199,0,0.0,36446,377.7466789205448,1491579,0,53566,0,0,0,0,0,69,0.7101679338290584,0,0.0,0,0.0,0,0.0,0.0583,0.1531550464981873,0.3204116638078902,0.01868,0.3358915741345525,0.6641084258654474,24.34067671625317,4.402769117535619,0.3195382269658026,0.2274014375952951,0.2274014375952951,0.225658897843607,11.087601006228942,5.676789706051304,19.988028956316597,11996.146467925382,52.00853397562203,12.661049763649316,16.395866568586168,11.542582904098468,11.409034739288092,0.55173164887824,0.7921455938697318,0.6809815950920245,0.5727969348659003,0.1052123552123552,0.7122835943940643,0.9007832898172324,0.8539944903581267,0.75,0.116591928251121,0.4940793368857312,0.7291981845688351,0.6240942028985508,0.51875,0.1020910209102091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0044111383779179,0.006781037458126,0.0091142790371582,0.0115965617211738,0.0136065506986597,0.0160198233842514,0.0182553295760842,0.0204087892761832,0.0221798967805357,0.0244277627368939,0.0264704069683834,0.0286413859797123,0.0307189744540967,0.0327687814141664,0.0346239338330317,0.0365841030526446,0.0387620223483394,0.0407584120747185,0.0428627973834423,0.0577673855404079,0.0718732018622168,0.0851668519411875,0.0978344324193565,0.1098887189494225,0.1252392989729975,0.1369538925077977,0.1473851198841616,0.1573475515284915,0.1670062410191519,0.1803200999504556,0.1922402597402597,0.203172427298541,0.2127713110449851,0.2219605080678891,0.2328949263720069,0.242185318785388,0.2506751282743721,0.2589945198951632,0.2662230570126211,0.2730671729039576,0.280344420136411,0.2862977212192956,0.2921979010494752,0.2975264845951987,0.3026685739653726,0.3074456759972446,0.3112865236488637,0.3156994818652849,0.3202417715839206,0.3190259285213735,0.3174032768828307,0.3159473773170319,0.3142910819833229,0.3134412594682905,0.3109508718749522,0.3088719377096917,0.3091481615114639,0.3097527706734868,0.3105653118654935,0.309917587038179,0.3101913837914468,0.3111245667515764,0.3113687026304057,0.3123652048885694,0.3139027431421446,0.3141560283687943,0.318110679854764,0.3211841921519341,0.3257492113564669,0.3281193490054249,0.3305254290828682,0.3332290362953692,0.3385761589403973,0.3398959881129272,0.3432273262661955,0.3483929654335961,0.3512651922693763,0.3636117869694512,0.3671274961597542,0.0,2.188427147048592,52.983194945056326,174.84361982086574,250.28908010028104,fqhc2_100Compliance_implementation_low_initial_treat_cost,57 -100000,95761,45575,431.0209793130816,5845,59.67982790488821,4542,46.85623583713621,1867,19.141404120675432,77.32840490063373,79.68657408309964,63.31625382636724,65.06382136042882,77.09453160622971,79.45510282383634,63.22969686648177,64.98068900345338,0.2338732944040202,231.47125926330148,0.0865569598854705,83.1323569754403,170.21268,119.7505355909428,177746.70272866826,125050.86323307065,422.23636,278.9753739537424,440344.6079301594,290744.4037019254,397.14402,193.59570503644863,410818.93463936256,199290.0275877275,2997.59268,1371.6630472031195,3095090.3186056954,1397448.3185040338,1120.64569,492.8398717372729,1153892.8164910558,498296.26020746696,1831.5395,764.3522919014814,1878938.9417403743,768737.3996844855,0.37944,100000,0,773694,8079.39557857583,0,0.0,0,0.0,36523,380.7813201616525,0,0.0,36227,374.4217374505279,1497219,0,53749,0,0,0,0,0,69,0.7205438539697789,0,0.0,0,0.0,0,0.0,0.05845,0.1540427999156652,0.3194183062446535,0.01867,0.3381460213289581,0.6618539786710418,24.32069687663629,4.427227541250603,0.3095552619991193,0.2353588727432849,0.2278731836195508,0.2272126816380449,11.15791880687425,5.656489772887267,19.79948655974241,11977.141267866122,51.566823888871376,12.900302838226397,15.905634710864708,11.576798694061846,11.184087645718426,0.5598855129898723,0.7913938260056127,0.6813655761024182,0.5855072463768116,0.128875968992248,0.7393092105263158,0.9054726368159204,0.8467741935483871,0.7601626016260162,0.1683673469387755,0.4942874323511725,0.7226386806596702,0.6218568665377177,0.5310519645120405,0.1196172248803827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.0047871153573094,0.0070361044551841,0.0093294579158112,0.0116986429574169,0.0139239732724902,0.016091532060695,0.0182647935639318,0.0207017113414708,0.0229799168833295,0.0253908051868176,0.0275684333737191,0.0296585767174002,0.0316619973632168,0.0337956370090603,0.0359084613317346,0.038102434580987,0.0399066632097485,0.0421277966559632,0.0440755282918649,0.0584913734617833,0.0728748326639893,0.0859084188782518,0.0989215438950555,0.1105105105105105,0.1258508434448061,0.1373517996139897,0.1479991485738612,0.1576305220883534,0.167728237791932,0.18076558528284,0.1925340835317031,0.2039517348681848,0.2130568406776695,0.2226906945254791,0.233038315407025,0.2429265025950109,0.2518627737883528,0.2598412680390131,0.2667285499822372,0.2729724099620405,0.2789435515942639,0.2849175902244956,0.2904932746187351,0.2956087241957837,0.3011751069680267,0.3052403225199694,0.3099103001885734,0.3134541304037666,0.3174441788916324,0.3158008249534952,0.3138388677790627,0.3123554628010604,0.3113332948043691,0.3107497473095903,0.3077960491026957,0.3052458185504308,0.3058692043456108,0.3064783627130815,0.3067410107941954,0.3074343313223667,0.3087131684967217,0.3100601855721809,0.3105220811728947,0.3100298105587075,0.3117954859032098,0.3133792789200889,0.3166515013648772,0.3199244438225829,0.322695597085841,0.3249818445896877,0.3279025624802277,0.3276938444250218,0.3296296296296296,0.3353955755530559,0.3372216330858961,0.338470929345338,0.3398078102637497,0.3410227904391328,0.3413103177716751,0.0,2.1965197710999047,53.14743647843079,172.06314216324785,247.12044239953477,fqhc2_100Compliance_implementation_low_initial_treat_cost,58 -100000,95731,45661,434.9270351296863,5823,59.64630057139276,4594,47.41410828258349,1768,18.071471101315144,77.31464774318667,79.68068258501224,63.30648041847581,65.05601733437621,77.094447207237,79.46355761879775,63.225723976606325,64.97918947981498,0.2202005359496723,217.1249662144845,0.0807564418694823,76.82785456123042,170.37922,119.89460852443628,177977.0607222321,125241.15336143598,421.57439,278.54038314894746,439741.72420637,290329.3010090226,401.24855,195.25164338471396,415974.2612111019,201428.44143657672,2981.9776,1362.9463028265354,3077772.5397206754,1386722.7857511542,1068.44703,472.790028699185,1103646.4363685746,481447.72688190296,1728.67882,717.5842753226746,1768516.530695386,717453.2957950856,0.37986,100000,0,774451,8089.866396465095,0,0.0,0,0.0,36445,380.1067574766795,0,0.0,36608,379.2397447012984,1495972,0,53611,0,0,0,0,0,84,0.8565668383282323,0,0.0,2,0.0208918741055666,0,0.0,0.05823,0.1532933185910598,0.3036235617379357,0.01768,0.3399410222804718,0.6600589777195282,24.03372590137309,4.265105663257524,0.3232477144101001,0.2522855898998694,0.2115803221593382,0.2128863735306922,11.104251481184138,5.74412749269866,18.773850351863427,11980.27788214578,52.15884759815639,14.040970840997913,16.804938669541222,10.675534381764477,10.637403705852766,0.5750979538528516,0.8153580672993961,0.6983164983164983,0.5679012345679012,0.1104294478527607,0.7599351175993512,0.9232456140350878,0.8694516971279374,0.7285714285714285,0.1630434782608695,0.5072894971734603,0.7453769559032717,0.6388384754990926,0.5236220472440944,0.0982367758186398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0045219048777767,0.0069936458312186,0.0090946042068895,0.01109924207742,0.0132442234809894,0.0154150641189132,0.017326581037757,0.0192382393228793,0.021252200974571,0.0233049326894487,0.0253408904222112,0.0274331913843115,0.0295305609364052,0.0314409578860445,0.0333505634239636,0.0353218941896467,0.0371588668672823,0.0392005989269226,0.0411314267854352,0.0557046349179831,0.0700252258287365,0.0841306811028578,0.0967860673495572,0.1095316932226803,0.1246575197554241,0.1370954902938897,0.1480345811507176,0.1587391508828936,0.1681903045129723,0.1810879292684241,0.1926464375088019,0.2032349417274806,0.2134506448113776,0.2229705895321663,0.233151649034779,0.2424408462673883,0.2511838722770937,0.2595974528087332,0.2678700609735092,0.2742806797894785,0.2802586570451244,0.2864812334822645,0.2922661546769065,0.2977096452624668,0.302977988778593,0.3072159531613581,0.3112204674347041,0.316177516782864,0.3202276799831348,0.319096862687089,0.3175154904035061,0.3162050892944962,0.315230871283131,0.3137793347088423,0.3114824335904027,0.3082157098550541,0.3083995534248374,0.3090210148641722,0.3092638190058167,0.310335786654681,0.3114647292254842,0.3120705140255237,0.3128957460090966,0.3135011990407674,0.3142597402597402,0.3159212472971435,0.3191162644938891,0.3227969683210506,0.3258849120031639,0.3291501841495021,0.3304158709951199,0.3332069030912194,0.335580237456913,0.3376193627682707,0.3406789755807028,0.3453370267774699,0.3496503496503496,0.353594227033028,0.3558401241753977,0.0,2.22583197068772,53.936647438606656,172.97385353456514,250.63973901549983,fqhc2_100Compliance_implementation_low_initial_treat_cost,59 -100000,95813,46014,435.0662227463914,5872,60.07535511882521,4608,47.498773652844605,1820,18.630039764958827,77.3504688262772,79.68178099455585,63.33176974345843,65.05960932926325,77.11847538581236,79.45203548927014,63.24575272508718,64.97665253507382,0.2319934404648336,229.74550528570603,0.0860170183712512,82.95679418942825,171.43698,120.60563741630068,178928.72574702807,125876.0684002178,426.63778,282.81510988813983,444713.4104975317,294605.7432655422,409.11817,200.0727067816537,423117.8441338858,205765.29383742955,3044.78141,1412.0792336368725,3141654.4936490874,1437604.5510496637,1111.31049,506.0471859307127,1143527.0787888907,511837.3816445047,1786.63666,755.8304696876818,1831225.7000615783,761462.6525794689,0.38153,100000,0,779259,8133.123897592184,0,0.0,0,0.0,36842,383.9145001200255,0,0.0,37333,385.79315959212215,1486851,0,53506,0,0,0,0,0,62,0.6366568210994332,0,0.0,0,0.0,0,0.0,0.05872,0.1539066390585275,0.3099455040871934,0.0182,0.336963589076723,0.663036410923277,24.21302644691558,4.306717523258131,0.3263888888888889,0.2369791666666666,0.2120225694444444,0.224609375,11.340663345441929,5.937941894061534,19.599225067083363,12082.491123855074,52.8138806192467,13.191566555507722,17.129593506923506,10.990059770740384,11.502660786075088,0.5674913194444444,0.7967032967032966,0.699468085106383,0.5875127942681678,0.114975845410628,0.743549648162627,0.9138755980861244,0.8775,0.7634854771784232,0.1545454545454545,0.49984980474617,0.7240356083086054,0.634963768115942,0.529891304347826,0.1042944785276073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819174585165,0.0046845056426999,0.0069521973003146,0.0093474086341607,0.0115853286408853,0.0137907152023792,0.0160522155932894,0.0181153500531002,0.0204183877960001,0.0226439817374035,0.0245275473478051,0.0267700364532525,0.0293291924188356,0.0313291725885188,0.0336111053814896,0.0356777533244474,0.0380833091797441,0.0402335808820478,0.0420477219820419,0.0443893856900446,0.0598894220738577,0.074085690985509,0.0875729600016766,0.1003120305096498,0.1128634639696586,0.1288307900410026,0.1405988252507474,0.1512482581825531,0.161791707587856,0.1713400979331183,0.1836844483656474,0.1956871858617521,0.2071471243143431,0.217201245833561,0.2258238373883584,0.2359333975871581,0.2449473813429754,0.252759493670886,0.2603033674697427,0.2675898246457983,0.2740507574267165,0.2813420966459278,0.2875109438962637,0.2928392576884831,0.2987568506884106,0.303837900500703,0.3078638174211489,0.3111249824838533,0.3151618840241594,0.3195761883372526,0.3184123900491069,0.3171919177987725,0.3153332486270523,0.3125868457619268,0.3115319952985285,0.3090641436523392,0.3076666930944264,0.3074520376793963,0.3082078197391141,0.3087070768460754,0.3098855397988048,0.3108161491664691,0.3118041021347844,0.3127667657377818,0.3139752896495361,0.3141882211976765,0.3156159399693025,0.319788041262973,0.3218386792782102,0.3240762718569507,0.3251775134548414,0.3287526983625546,0.3297526854858856,0.3331576569793705,0.334513934197036,0.3369146327221768,0.3372673626872446,0.3424,0.3466738777717685,0.3411854103343465,0.0,2.272050705200279,55.934922473511854,179.4194894962567,241.78013624615028,fqhc2_100Compliance_implementation_low_initial_treat_cost,60 -100000,95717,45737,433.01607864851593,5805,59.39383808518863,4543,46.88822257279271,1771,18.178588965387547,77.30949638025908,79.66898936058618,63.31695901961641,65.05936262492482,77.08488683946051,79.44577145039986,63.23278784816839,64.9778956992157,0.2246095407985677,223.21791018632095,0.0841711714480268,81.4669257091225,170.797,120.15342565932194,178439.566639155,125529.8699910381,423.3177,279.8055508043447,441681.0911332365,291747.27666385775,398.19051,194.5762839657281,411714.23049197113,200074.0277843669,2978.83699,1374.12389080047,3076566.942131492,1400048.5606532465,1086.7991,482.0614993829172,1119541.2204728522,487743.733488217,1740.3043,737.2696199567642,1787458.7168423582,744224.0181805516,0.38166,100000,0,776350,8110.889392688864,0,0.0,0,0.0,36553,381.2802323516199,0,0.0,36346,375.51323171432455,1492373,0,53582,0,0,0,0,0,83,0.8566921236561948,0,0.0,2,0.020894929845273,0,0.0,0.05805,0.152098726615312,0.3050818260120586,0.01771,0.3353558543784847,0.6646441456215153,24.458738837939737,4.343199904746242,0.3196125907990315,0.2405899185560202,0.2168170812238609,0.2229804094210873,11.249595582793544,5.829319352741777,18.9685594343141,12088.253622391756,51.68804765872877,13.079477384120215,16.460544455068263,10.965688954888767,11.18233686465152,0.5661457186880916,0.7996340347666971,0.6873278236914601,0.5878172588832488,0.1194471865745311,0.7201946472019465,0.9307692307692308,0.8541114058355438,0.7130434782608696,0.1652542372881356,0.508761329305136,0.7268847795163584,0.6288372093023256,0.5496688741721855,0.1055341055341055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508562805724,0.0048860595247749,0.0072031490950409,0.0095677256845697,0.0119046408783612,0.0138935540016489,0.0161341283188095,0.0183633264262455,0.0207677527492743,0.0228838104205258,0.0250310068778892,0.0271269277368215,0.0293984575835475,0.0316162385944676,0.0337035776533316,0.0358932501265665,0.0378174742812196,0.0398141522250915,0.0419373278594813,0.0439171241367097,0.0583628332445725,0.0725013868101273,0.0864790593763438,0.0989905362776025,0.1107443768387974,0.1263418400262286,0.1387173447083041,0.1505115348173698,0.1606683118076253,0.1704108002616425,0.1834742795583086,0.195392343668803,0.206390318754149,0.2166152297152362,0.2257872715260955,0.2354395299855891,0.2447527451046099,0.2540919895010758,0.2626412950866231,0.2696121702644762,0.2760397369396072,0.2819966768856334,0.2880605321428994,0.2933464477203756,0.2982330351934668,0.302426268332696,0.3072648074901116,0.3119120062125243,0.3162123980973858,0.3191928002220195,0.3184116496999932,0.3173778891980495,0.3159342597164421,0.3143658469589857,0.3132307875397935,0.3111359906752757,0.3082001555283998,0.3081706173611225,0.3091092736205981,0.3101707657609279,0.3119717516246572,0.3131247025226082,0.3149672434066857,0.3150331779053085,0.3159926648006949,0.3163645846916156,0.3175070789119927,0.3201673008585176,0.3229122807017544,0.3254590060145615,0.3261274353967028,0.3270933870711142,0.3276317444346623,0.3308734023128423,0.3339601353892441,0.3355815879777541,0.3411764705882353,0.3438138015516537,0.3442802408319649,0.3428680396643783,0.0,2.2754292181956464,53.79266452811736,170.1323450276858,248.3181637924803,fqhc2_100Compliance_implementation_low_initial_treat_cost,61 -100000,95731,45615,431.9708349437486,5878,60.105921801715226,4624,47.68570264595586,1846,18.928037939643374,77.40440741590693,79.76163507011083,63.3594678928421,65.09923410920256,77.16959548842554,79.52917359600762,63.2718703036482,65.01529768563181,0.2348119274813882,232.4614741032036,0.0875975891938978,83.93642357074782,170.55896,119.90606344077464,178164.58618420365,125252.91564525227,423.81705,279.4620487642134,442069.8937648202,291279.25644620915,395.63988,192.02150281991476,409484.1796283336,197679.3125048432,3046.11794,1394.1472911424084,3143900.648692691,1418379.8508744792,1098.51933,491.1999011682778,1129096.5204583677,494742.6511100962,1814.4509,764.1320608440135,1862394.7728530988,769505.9365856112,0.38168,100000,0,775268,8098.390281100166,0,0.0,0,0.0,36658,382.2586205095528,0,0.0,36140,373.6929521262705,1500805,0,53763,0,0,0,0,0,74,0.7729993419059658,0,0.0,1,0.0104459370527833,0,0.0,0.05878,0.1540033535946342,0.3140523987750935,0.01846,0.3377022653721683,0.6622977346278317,24.48193307767044,4.344205616437485,0.3207179930795847,0.236159169550173,0.2158304498269896,0.2272923875432526,11.102239586964137,5.743913383755973,19.57004166134174,12022.14047895942,52.35814896067325,13.02038674871924,16.638496328673497,11.139009070080425,11.560256813200084,0.5553633217993079,0.7728937728937729,0.6911665542818611,0.5771543086172345,0.1170313986679353,0.7128630705394191,0.913978494623656,0.8513513513513513,0.7172131147540983,0.1324200913242009,0.4998537584088915,0.7,0.637915543575921,0.5318302387267905,0.1129807692307692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023388378709487,0.0046921712693184,0.0069186600929251,0.0090489006245874,0.0112147062113001,0.0132837947882736,0.0158267515923566,0.0182749507668132,0.020455288540134,0.0226863411239818,0.0247617095418673,0.0269726578536825,0.029269947669816,0.0312406653963022,0.0334523391873207,0.035416709740112,0.0375207125103562,0.0396593219635669,0.0415610060278528,0.0434551647275719,0.0578206078576723,0.071672997833799,0.0848499470277868,0.0982892952148632,0.1102830337848521,0.1254375297414476,0.1369809238865194,0.1482518524827527,0.159017094017094,0.1688811676264625,0.1816478190630048,0.1936908175964504,0.2048322527305165,0.2150114286339228,0.2245672722471032,0.2346700333344407,0.2439190395429795,0.2522402995311393,0.2598607362380639,0.2675662992594627,0.274320842144186,0.2808578199605412,0.2876151121605667,0.2931386721783491,0.298643575148359,0.3038483277222126,0.3084002447521884,0.3124992069836194,0.3158553905745642,0.3187837820066019,0.3172102883363969,0.3151496858107181,0.313631575251071,0.3121515522581574,0.3108726223077492,0.308652716088954,0.3064826802235624,0.306377200444997,0.3067349926793558,0.3069819579374399,0.3072867985194601,0.3081069341336281,0.3091559161143287,0.3108231673320101,0.3123605747319437,0.3132141276905859,0.3152800249794203,0.3178156055048747,0.3204903677758319,0.3236028042935794,0.3280718465097292,0.3332273449920508,0.3367199749137661,0.3411122897408698,0.3441691505216095,0.3496774193548387,0.349878197320341,0.3576598311218335,0.3673018503175918,0.3724029792238338,0.0,2.350476452363142,52.38771127491627,180.75100136411484,248.843040198975,fqhc2_100Compliance_implementation_low_initial_treat_cost,62 -100000,95764,45449,430.2034167328015,5677,58.23691575122176,4462,46.176016039430266,1760,18.07568606156802,77.33232137485312,79.69857240080096,63.31916690730778,65.07119456479064,77.1064734395214,79.47156304148638,63.23446561810705,64.98789009353757,0.2258479353317284,227.0093593145788,0.0847012892007299,83.30447125307217,170.46304,119.86310628176048,178002.1093521574,125164.2742922586,422.07408,279.4022907624277,440279.4682761789,291302.0917819344,391.1865,190.5175582306005,405965.63426757447,196968.9944962052,2972.51407,1360.3654916014746,3076859.1328683016,1393834.6239651225,1085.05912,481.9319141725679,1121973.9359258176,492644.7847808714,1739.44182,739.9611493963146,1787448.2060064324,749241.3813131754,0.37797,100000,0,774832,8091.004970552609,0,0.0,0,0.0,36508,380.7380644083372,0,0.0,35641,369.6900714255879,1497767,0,53730,0,0,0,0,0,75,0.7831753059604862,0,0.0,0,0.0,0,0.0,0.05677,0.1501971055903907,0.3100228994187071,0.0176,0.3452220726783311,0.654777927321669,24.578799973976334,4.354556149926569,0.3041237113402061,0.2389063200358583,0.2198565665620797,0.2371134020618556,11.010998449812872,5.6156603677473536,18.769984541758934,11917.64557368804,50.45586138989736,12.832121548581146,15.260479068249222,10.825736708030616,11.53752406503636,0.5486329000448229,0.798311444652908,0.6897568165070007,0.5535168195718655,0.1115311909262759,0.7230125523012553,0.92,0.8670520231213873,0.7079646017699115,0.1614349775784753,0.4848484848484848,0.7252252252252253,0.629080118694362,0.5072847682119205,0.0982035928143712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0046354055726298,0.007016083177646,0.00954345881779,0.0116993570440302,0.0139872250690192,0.0160214571265399,0.0182646070914455,0.0206124431266295,0.0226351351351351,0.0247572964827211,0.0269695911956142,0.0293161953727506,0.0311753316305512,0.0332518286958226,0.0353053040638306,0.0374515935306177,0.0394331420983286,0.0414536309598038,0.0434913923286016,0.057768591590463,0.0717230267012639,0.0851014735958886,0.0978202580360241,0.1097942872808173,0.1246628518240377,0.1365469091526431,0.1473565445081906,0.1576580906304401,0.1677693305739928,0.1796934742102598,0.1909492273730684,0.2019799825935596,0.2104877435162599,0.2202901102771235,0.2304582807274016,0.2397160904403723,0.2482331757821292,0.2563895950608316,0.2638650264586626,0.2711217073283644,0.2772200772200772,0.2829230769230769,0.2892822473364413,0.2946885134396521,0.2994799369022971,0.3042542542542542,0.3089861926920436,0.3137957810275656,0.3176448874123292,0.3158390399440326,0.3147921508230085,0.3134561524495799,0.3115312454899697,0.3105767089735025,0.3081406020558003,0.3056619905633491,0.3056821535132299,0.3060247123988069,0.3064780794064138,0.3069538969195868,0.3081685126582278,0.3085759805462968,0.3095072866065232,0.3107027599826598,0.3123370528730837,0.3118579437124726,0.3149425287356321,0.3191862504384427,0.3223317957690472,0.3243845838831505,0.3291577825159915,0.3313294943997975,0.3334602787721837,0.3403679148379867,0.3454290062039096,0.3458646616541353,0.3486802937090693,0.3518817204301075,0.3514328808446455,0.0,1.441258059044639,52.93023711325375,165.27427650859073,245.38892669048084,fqhc2_100Compliance_implementation_low_initial_treat_cost,63 -100000,95736,45793,434.64318542658975,5874,60.228127350213086,4592,47.48474972841982,1792,18.477897551600236,77.41699606751023,79.77107123462712,63.36600846061516,65.10087585946458,77.18982772052293,79.5425109816933,63.282123797773735,65.01844409541285,0.2271683469872982,228.56025293381776,0.0838846628414273,82.43176405173358,171.70802,120.72101638506976,179355.7491434779,126097.82776078983,425.97565,281.6779765910736,444485.79426756914,293761.22523509816,401.93776,196.0188046784235,416562.4947773043,202196.719702864,2990.29447,1377.3658488275514,3092630.8912008023,1408132.9066776135,1067.71549,477.88110061556426,1097684.183588201,481676.8369505084,1747.15004,734.3620967040856,1801171.0119495278,745185.7095537076,0.38098,100000,0,780491,8152.534051976268,0,0.0,0,0.0,36895,384.8813403526364,0,0.0,36672,379.7735439124258,1490371,0,53533,0,0,0,0,0,69,0.7207320130358486,0,0.0,0,0.0,0,0.0,0.05874,0.1541813218541655,0.3050732039496084,0.01792,0.3350674687042757,0.6649325312957243,24.17746569143492,4.281316530936223,0.328397212543554,0.2354094076655052,0.2238675958188153,0.2123257839721254,11.12801827739211,5.868073584374376,19.1215923385912,11983.109104147676,52.21466346484712,12.972806368894936,17.00329082277937,11.544395148392926,10.69417112477988,0.5722996515679443,0.8011100832562442,0.6923076923076923,0.5914396887159533,0.1128205128205128,0.7384494909945184,0.9242053789731052,0.8611111111111112,0.7587548638132295,0.1348837209302325,0.5082956259426847,0.7261904761904762,0.6321942446043165,0.5356679636835279,0.106578947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023482256725844,0.0043663698345642,0.006643541058098,0.009047614212167,0.0112758256059866,0.0133349620309859,0.0153606229869123,0.0176262260280264,0.0198563150848722,0.0219957849937593,0.0242965179431475,0.0264891826429656,0.0285062244929428,0.0306069905872175,0.0325169703096952,0.0346694774260883,0.0364231211239607,0.0386139230003318,0.0408239622523852,0.0429197962351421,0.057322446593021,0.071346363103708,0.0846717932040159,0.097066958323255,0.109061570587863,0.1242438343415542,0.1364976665252439,0.1475540701634877,0.158409178310473,0.1679051264730165,0.1804724172085612,0.1930923329871928,0.2043533068179348,0.2140048925388782,0.2228617879034207,0.2323255788227745,0.2417893481628422,0.2497274944094213,0.2583351282719842,0.2664385991006968,0.2725486343092945,0.2791129701246655,0.2857564976893165,0.2913545082457694,0.2965160006793313,0.3017578846295886,0.3058936739233672,0.3104850494961432,0.3149388430606915,0.3196610035454917,0.318474592225046,0.3171971372446667,0.3160212753982102,0.3142877780988153,0.3123338925925376,0.3100230961011945,0.3083517524471108,0.3081162406580647,0.308553347849755,0.310003019913666,0.3104958985831469,0.3115530489122958,0.3120347006443809,0.3130651145224712,0.3156409213768029,0.317323161554829,0.3184973227186446,0.3217261068988112,0.3246481816915145,0.3279366580004727,0.3313636158599846,0.333227931488801,0.3349553933495539,0.3376061893203883,0.3383297644539614,0.3396710603056106,0.3433263031033444,0.3466719492868462,0.3495041543822031,0.3534002229654404,0.0,1.86725526501154,56.30223219671259,169.2581388363395,247.8341538689392,fqhc2_100Compliance_implementation_low_initial_treat_cost,64 -100000,95693,46053,438.4228731464162,5772,59.1892823926515,4472,46.12667593240885,1769,18.099547511312217,77.3508434030137,79.74347354093896,63.31502979323547,65.08372414614358,77.1335861687406,79.5283973114395,63.2341971612453,65.0066619171155,0.2172572342730916,215.0762294994593,0.0808326319901695,77.0622290280869,170.45072,119.97273415031157,178122.4540980009,125372.52897318672,422.85262,279.7650612109918,441280.91918949137,291753.2016040795,399.32915,194.44803501694736,413952.61931384745,200587.95494749263,2958.51217,1349.9137726558388,3053338.30060715,1372339.2752404448,1065.65518,471.0891160529925,1095540.8859582206,474214.2853218023,1730.48086,723.9773079562734,1771875.4558849656,723665.6671701001,0.38189,100000,0,774776,8096.475186272768,0,0.0,0,0.0,36427,380.0382473117156,0,0.0,36244,375.3357089860282,1496417,0,53635,0,0,0,0,0,97,1.0136582613148295,0,0.0,1,0.0104500851681941,0,0.0,0.05772,0.1511429992929901,0.3064795564795565,0.01769,0.3342705921270261,0.6657294078729739,24.541402313695148,4.309202345659344,0.3177549194991055,0.2354651162790697,0.2229427549194991,0.2238372093023256,10.956763797488984,5.663298224547417,18.79846262094191,12025.549366821198,50.57480023001165,12.519728422234438,16.167625138679245,10.99829820196593,10.889148467132046,0.5608228980322003,0.7749287749287749,0.7065446868402533,0.5687061183550652,0.1208791208791208,0.7278056951423786,0.9051282051282052,0.8605263157894737,0.7130044843049327,0.1492537313432835,0.5,0.698340874811463,0.6503362151777138,0.5271317829457365,0.11375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0043909908630882,0.0065374737333644,0.0088625091470851,0.0110683838938737,0.0131007925673886,0.0153423986779422,0.0174540923667708,0.0194823125147012,0.0215993117715737,0.0236898779612347,0.0258214274709585,0.0277100626407874,0.0300641877620828,0.0319930647291941,0.0338970785866396,0.0359610861884978,0.0379170040065599,0.0399334269516825,0.0419568027352708,0.0563842232806885,0.0698616797378092,0.0834811634668878,0.0965681942515675,0.1096049369692494,0.1248558460382788,0.1367279134689891,0.1478290503626236,0.1582666139325074,0.1676700039704257,0.1810627290364302,0.1931478675037887,0.2050551100569053,0.215376871224722,0.224826341108995,0.234669327568047,0.2433775019256315,0.2531997523498621,0.2620372473313649,0.2694441260744986,0.2768484539782133,0.2830517800489353,0.2891828830642773,0.2945592344313998,0.2993777648145447,0.3039888602728247,0.308815068664482,0.3121907790143084,0.3164764935703382,0.3201546092554482,0.3183678965795852,0.3181068148066663,0.3164922055264787,0.3148615699796575,0.3131361016873824,0.3110262675626145,0.3088486073391018,0.3091126352490547,0.3093038319923633,0.3108026339206264,0.311105713538358,0.3121618165004033,0.3130210070023341,0.3133033847796113,0.3136560503457682,0.3139405252650955,0.3159112716599875,0.3185498941073875,0.3221399520283658,0.3242216565498335,0.3289816061013907,0.3308811938416268,0.3335823218176159,0.3376682292454256,0.338688585839716,0.3430967284752569,0.3470098410295231,0.3548642758074103,0.3574113856068743,0.3526275704493526,0.0,2.403641644741821,52.11296867370848,165.38071150185326,245.98030593895115,fqhc2_100Compliance_implementation_low_initial_treat_cost,65 -100000,95735,45531,432.8093173865357,5607,57.54426280879511,4411,45.61550112289132,1760,18.102052540868023,77.26691653433518,79.62665028054045,63.2951211478972,65.03899662371454,77.0391624169314,79.39826969246229,63.21066895878206,64.95661505380696,0.2277541174037765,228.38058807815287,0.0844521891151401,82.38156990758227,171.1325,120.51804917561716,178756.46315349665,125887.1355049012,421.07062,278.13645878562664,439336.7733848645,290035.0008541755,396.84222,192.84245554487745,411708.6540972477,199288.35960783265,2905.30514,1341.0453898367853,3007129.461534444,1373194.1031006093,1053.06585,472.0853980467525,1090981.1876534184,484156.2203395313,1727.63088,731.2189882636063,1778642.1893769258,740850.6875020373,0.37878,100000,0,777875,8125.293779704392,0,0.0,0,0.0,36505,380.79072439546667,0,0.0,36154,374.7845615501123,1489965,0,53483,0,0,0,0,0,67,0.6998485402412911,0,0.0,1,0.0104455006006162,0,0.0,0.05607,0.1480278789798828,0.3138933476012128,0.0176,0.3441281745355377,0.6558718254644622,24.261178594680096,4.35950967010967,0.3164815234640671,0.2459759691679891,0.2131036046248016,0.2244389027431421,11.153919480119786,5.730687177950836,18.928429187259976,11928.128608234489,50.441032462011535,13.169550805912657,15.88222684444344,10.476426879041083,10.912827932614364,0.5522557243255498,0.7824884792626728,0.6898280802292264,0.5436170212765957,0.1141414141414141,0.7201283079390537,0.9439252336448598,0.8440860215053764,0.6805555555555556,0.1428571428571428,0.4860935524652339,0.6773211567732116,0.6337890625,0.5027624309392266,0.1054018445322793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0044307455210942,0.0066465072857896,0.0087565140541034,0.0111160832333258,0.0135318135073768,0.0156786788317447,0.0180479986933575,0.0203121965182012,0.0225188339338355,0.0245097536723627,0.0267340150301835,0.0288135244637311,0.0307346867307315,0.0328897142267615,0.0346281863099791,0.036503909283902,0.0380972142968304,0.0400203740085861,0.0418854713678419,0.0561356611811878,0.0703385040507442,0.0835222264198463,0.0961459549887945,0.1087057433430392,0.1242328042328042,0.1359568572914787,0.1465739419369954,0.1573550325595321,0.1674824499259354,0.1803227440792523,0.1924460431654676,0.2037393965132359,0.2139204327686461,0.2231870323639929,0.2332060560316121,0.242295822524376,0.2510337678726353,0.2588637577107024,0.2661324529123821,0.2717951091925423,0.2779513827932072,0.2842951526202373,0.2892688834794287,0.2947031941270844,0.3000098663114794,0.30514825676116,0.3093318045735397,0.3135822967065751,0.3182401587826662,0.3163086069450074,0.3147654621024869,0.3141932475020845,0.3127660806858003,0.3104999032061114,0.308220229687404,0.3055418777896024,0.3059742056628947,0.3055446053646413,0.3054521371804969,0.306127814606847,0.3077959652808054,0.3088560186841164,0.3092952312592526,0.3113177920038652,0.3130266394515099,0.3140663936069658,0.3174713661962918,0.3215921599261442,0.3233766756571796,0.3254231052244297,0.3295045891256508,0.3318325935320228,0.3337669293748565,0.3352197698547444,0.335349940688019,0.3390426670744762,0.3411479385610347,0.3480890844102282,0.3557951482479784,0.0,1.790772318988634,55.09738561457118,161.2185283948453,239.54836387244248,fqhc2_100Compliance_implementation_low_initial_treat_cost,66 -100000,95697,45574,433.19017315067344,5718,58.6538762970626,4464,45.9993521218011,1768,18.05699238220634,77.288290147924,79.65866011599536,63.294707477804174,65.04437602391991,77.06877698175606,79.44288379886751,63.21168435312497,64.96591934843165,0.2195131661679425,215.7763171278475,0.083023124679201,78.45667548825475,171.1105,120.35268685860872,178804.45573006468,125764.32579768304,422.86501,280.03198827957635,441249.2241136086,291993.7388628446,398.36566,194.1031920908384,412530.1106617762,199916.43010716117,2892.60789,1332.1074312101175,2981891.835689729,1351223.7282361176,1061.30661,476.4473786884316,1090368.444151854,479211.11287546216,1726.91802,733.3128656639788,1765179.1592212922,730971.9606210389,0.37796,100000,0,777775,8127.475260457485,0,0.0,0,0.0,36639,382.1854394599621,0,0.0,36197,374.6407933373042,1487374,0,53457,0,0,0,0,0,71,0.7105760891146012,0,0.0,1,0.0104496483693323,0,0.0,0.05718,0.1512858503545348,0.3091990206365862,0.01768,0.3352793994995829,0.664720600500417,24.260304386808727,4.344929672644179,0.3250448028673835,0.244847670250896,0.216173835125448,0.2139336917562724,11.197431647540116,5.836171485082615,18.90919754476277,11905.708778209251,50.72426105794151,13.089039421463877,16.56355343774473,10.592177841315449,10.47949035741746,0.5723566308243727,0.8014638609332113,0.6891798759476223,0.5844559585492228,0.1204188481675392,0.7275693311582382,0.93,0.828009828009828,0.6995305164319249,0.1650485436893204,0.5135886349598517,0.7272727272727273,0.6350574712643678,0.5518617021276596,0.1081441922563418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660529274146,0.0041970377429263,0.006504444534643,0.0087567809179381,0.0108209258807257,0.0131657994684804,0.0151403927326114,0.0173327208696983,0.0195855949788913,0.021870170806341,0.0240540318943959,0.0261034695134469,0.0280176845568579,0.0299591138940668,0.0319343159805671,0.0339086399338569,0.0359084272978597,0.0376201249507046,0.0396396958633673,0.0418990046380738,0.0564340923334029,0.070646995382344,0.0844904856366174,0.0971099604277174,0.1091569368494394,0.1248372033925224,0.1360001699072943,0.1468419706784862,0.1568271009549066,0.1664680046819797,0.1786084030713484,0.1904792858381002,0.2022282241728561,0.2123023693776551,0.221320233073017,0.2317457499223223,0.2408417945162589,0.2501268620530227,0.2584370661993946,0.2656651966188901,0.2732186561191467,0.2790356812025843,0.2846583696180905,0.2902772438977513,0.2954979968095081,0.299875227000383,0.3038543628374137,0.308202492251572,0.312816517335411,0.316881192703028,0.3157390800102491,0.3145512714435435,0.3130765210266842,0.311766750673503,0.3106207348690288,0.3082622568570902,0.304995562317738,0.3053169297481973,0.3053398556425957,0.3065827807467515,0.3068292682926829,0.3085997707781686,0.3104301165422989,0.3104048176647708,0.3132584915144696,0.3147543532338308,0.3152090715804394,0.3201578551741418,0.3221514111632467,0.3261472616311326,0.3298861047835991,0.3327677624602333,0.3340224268621186,0.3346969696969697,0.3368869936034115,0.3400256799346329,0.3417130814391088,0.347609561752988,0.3517722878625134,0.3596556886227545,0.0,2.563651097460108,53.3170868711042,164.08906989784668,243.79805398693017,fqhc2_100Compliance_implementation_low_initial_treat_cost,67 -100000,95835,45996,436.0411123284813,5800,59.35201126936924,4572,47.18526634319404,1787,18.281421192674912,77.36488025655099,79.68055445007565,63.35773544642036,65.07156093598216,77.13574901679108,79.45182287741422,63.27291331724868,64.98905824188486,0.2291312397599085,228.73157266143096,0.0848221291716768,82.50269409730038,170.9983,120.32670982538704,178429.9055668597,125556.12232001568,424.58518,280.7524459229773,442511.2328481244,292427.8279603545,397.50837,193.84863057195489,411286.1793707936,199573.07626993227,2996.65992,1370.7638445484397,3094778.577763865,1398254.8245821956,1066.53771,470.535208312449,1098431.4081494235,476547.9136701269,1753.17014,743.7473834983964,1795701.695622685,748188.7144297417,0.38381,100000,0,777265,8110.450253039078,0,0.0,0,0.0,36716,382.5637814994522,0,0.0,36220,374.5187040225388,1495872,0,53702,0,0,0,0,0,71,0.7408566807533783,0,0.0,1,0.0104346011373715,0,0.0,0.058,0.1511164378207967,0.308103448275862,0.01787,0.3387043735613285,0.6612956264386715,24.34743265959161,4.27002217522878,0.3215223097112861,0.2440944881889764,0.2117235345581802,0.2226596675415573,10.917943970723158,5.685957138984279,19.25439418637604,12077.964675522931,51.98981554386766,13.414360071980653,16.609543745670248,10.736377220357094,11.229534505859656,0.5535870516185477,0.7732974910394266,0.6884353741496598,0.5609504132231405,0.1110019646365422,0.7297734627831716,0.9193154034229828,0.8597402597402597,0.7522123893805309,0.1157407407407407,0.4883093525179856,0.6888260254596889,0.6276497695852534,0.5026954177897575,0.1097256857855361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.004308771645241,0.006585355954217,0.0088063218624304,0.011114387691807,0.013430130737588,0.015647617688434,0.017702186740715,0.0198110893032384,0.0220175034546292,0.0243409994670602,0.0262925637815315,0.0285723095265013,0.0308875142807151,0.0328821910465607,0.0353570285643497,0.0373703209524105,0.0393820713664055,0.0413041221057003,0.0430924166918091,0.0580431177446102,0.0726522079958191,0.0862114117511496,0.099144222187221,0.1111731255265374,0.1273955968533868,0.1388059069048073,0.15051397348811,0.1599317260507787,0.1702672307609918,0.1822631482696672,0.1939186925080799,0.2051254196043497,0.2152880152880152,0.2248579873204926,0.2348108753579602,0.2435566149116749,0.2522681338423534,0.2604225639167553,0.2680902626946204,0.2756486495848874,0.2817121712638177,0.2879878070393081,0.2935329928596203,0.2991685379620076,0.3040036441533499,0.3079096398344814,0.3124594955206811,0.3171491744139438,0.3212757272092809,0.3197843999085984,0.3183617372182518,0.3178271646667793,0.3155628756356912,0.3144742905561088,0.312285486638882,0.3099812930023146,0.3103414249062561,0.3108149772190058,0.3118400801746662,0.3126822568810791,0.3137753076617705,0.3148436186312426,0.3154800637242803,0.3174427554358283,0.317296648219693,0.3173681664247702,0.3198440398704524,0.322921790457452,0.3285930528999363,0.3328907609193297,0.3350785340314136,0.3360645325203252,0.3362240982348426,0.3390248529690761,0.3396293656450463,0.3462246777163904,0.3459580533496233,0.3497117760087839,0.347542242703533,0.0,1.9881227318859729,54.400131615827405,168.20488106543016,254.01466382885783,fqhc2_100Compliance_implementation_low_initial_treat_cost,68 -100000,95631,45410,431.2618293231274,5837,59.64593071284416,4623,47.6937394777844,1824,18.602754336982777,77.2563444549925,79.66757866651155,63.27473565930678,65.05626259654193,77.02368948130606,79.43865343292539,63.186750128724,64.97253582942176,0.2326549736864365,228.92523358615333,0.0879855305827774,83.72676712016869,169.76432,119.379867200578,177520.17651180056,124833.85847745814,420.33281,277.5561799117927,438864.4686346478,289566.0879577477,392.72057,191.38764510554324,407154.74061758217,197359.02420876245,3047.93997,1406.344105303116,3143815.561899384,1427321.0637867628,1122.15784,500.3641787408208,1151135.3013144273,501343.4483705305,1795.38502,768.5335137012023,1833087.868996455,766311.336862393,0.38001,100000,0,771656,8069.098932354571,0,0.0,0,0.0,36319,379.0925536698351,0,0.0,35870,371.5531574489444,1498695,0,53889,0,0,0,0,0,77,0.8051782371825036,0,0.0,0,0.0,0,0.0,0.05837,0.1536012210204994,0.312489292444749,0.01824,0.3397582489382554,0.6602417510617445,24.18754719729892,4.329161590269174,0.3188405797101449,0.2385896603936837,0.2147955872809863,0.2277741726151849,11.117396398854943,5.718959574840299,19.501054111940423,11972.493738404206,52.47615782321796,13.375758619138027,16.518374589483518,10.972885750945498,11.609138863650918,0.563054293748648,0.7896645512239348,0.6987788331071914,0.5820745216515609,0.1177587844254511,0.7221350078492935,0.9166666666666666,0.8920308483290489,0.7215189873417721,0.1166666666666666,0.5025380710659898,0.7151079136690648,0.6294930875576037,0.5383597883597884,0.1180811808118081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686990428925,0.0046217933774565,0.0067587452683708,0.0092347078723598,0.0114457218435242,0.0136609516824057,0.0157601599477721,0.0179921533368752,0.020068326412045,0.0222099289036408,0.0244417993761287,0.0266576232170016,0.0288976280678636,0.0308276025610623,0.0329321832549971,0.0347678521538477,0.0367486990234901,0.0390065028151164,0.0410401556695559,0.0428283839742988,0.0576062873625684,0.0716680285792109,0.0852055599882417,0.0983240693953175,0.1101812079828607,0.1254630511631845,0.1358420466004989,0.1468360901935305,0.1569388322322707,0.1668652263043221,0.1798772926753,0.1916124837451235,0.202490548770523,0.2127081209650017,0.2224808339308367,0.2324107073465898,0.2411975967509146,0.2495828823953824,0.2583017859781953,0.2657341854941423,0.2724162327043296,0.2787556139260544,0.2842923241191126,0.289556468073866,0.2943167841790572,0.2998406482773955,0.304809682071863,0.309417554954863,0.3138437982534677,0.3183013705872246,0.3176530915175559,0.3161140775694358,0.3149255630487339,0.3136967622142277,0.3131994389566982,0.3112072149716818,0.3085248402784399,0.3088952606947465,0.3104473507828209,0.311647278471923,0.3117027490437699,0.3129308460973041,0.3135332968743426,0.3144493668053877,0.3161883224673419,0.3178227887698444,0.3183855222219051,0.3216635708213959,0.3257663338588194,0.3284474903933764,0.331408565972538,0.3363578478191659,0.3409391742830129,0.3412174967781063,0.3412580943570767,0.3401759530791788,0.3458770614692654,0.3447933227344992,0.3555138180842501,0.3636363636363636,0.0,2.3578680200790934,55.61685195087984,167.77897184952718,254.3691043944097,fqhc2_100Compliance_implementation_low_initial_treat_cost,69 -100000,95695,45981,436.3864360729401,5745,58.8954490830242,4478,46.2302105648153,1772,18.130518835884843,77.32722884548278,79.70416053573503,63.32110870231941,65.07602074352651,77.1037558883684,79.48255461314112,63.23861397350439,64.99679642608648,0.2234729571143816,221.6059225939091,0.0824947288150284,79.22431744003688,170.90238,120.24490320005296,178590.4801713778,125654.11822523098,425.0328,281.9154849512425,443593.9495271436,294039.3553276716,402.99923,196.62685257743317,417672.0622812059,202812.273188514,2927.86969,1351.4902523210976,3024130.5815350856,1376952.459605348,1022.47449,459.0874654217987,1054210.0841214273,465648.860452688,1729.70916,729.057789896615,1771442.4369089296,730773.9355294037,0.38274,100000,0,776829,8117.749098698992,0,0.0,0,0.0,36787,383.83405611578456,0,0.0,36693,380.0094048800878,1489947,0,53530,0,0,0,0,0,79,0.8255394743717018,0,0.0,0,0.0,0,0.0,0.05745,0.1501018968490359,0.3084421235857267,0.01772,0.3491958215884596,0.6508041784115404,24.199071681837875,4.326172527748299,0.3050468959356855,0.2505582849486378,0.2288968289414917,0.2154979901741849,11.423527455604784,6.057432100005551,18.8644562684579,12033.635931803154,51.08716278525062,13.459871575008629,15.457587225967387,11.486565440817127,10.683138543457469,0.5634211701652524,0.7914438502673797,0.7027818448023426,0.5570731707317074,0.1077720207253886,0.7435897435897436,0.9456264775413712,0.8672086720867209,0.6809338521400778,0.1658291457286432,0.4938080495356037,0.698140200286123,0.641925777331996,0.515625,0.0926892950391645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0045808798937884,0.0067870548848534,0.009009009009009,0.0113279303647512,0.013460539847067,0.015581343177044,0.0177095993381879,0.0199619577444623,0.0221912730028366,0.0244077530509691,0.0265803933651722,0.0289749233712534,0.0310352289002689,0.0331176403810231,0.0349017580144777,0.0370569892361722,0.0391810801270737,0.0412211358435614,0.0431954636424282,0.0576678017088303,0.0721626826307196,0.0857415585369179,0.0982630377376355,0.1107876640087752,0.1260975351740188,0.1379723864203164,0.1495820688920832,0.1607675131675943,0.1711254612546125,0.1822656914807673,0.19382110652854,0.2050099524674505,0.2148895912854221,0.2238240926199018,0.2339034873930961,0.2431726616296329,0.2517182033947874,0.2601911117163739,0.2679015315532034,0.274409020397768,0.281102270067868,0.28757442678062,0.2926119000539277,0.2977446167306664,0.3028849710270003,0.3070893747026269,0.3110392586180559,0.314851998186411,0.318349241554121,0.3172583015382956,0.3161161574456372,0.3150136692877878,0.314267973950587,0.3120792903101178,0.309906897556636,0.3072976054732041,0.3070849373413056,0.3077736106375724,0.3081714000996512,0.3088694157433531,0.3096711875098565,0.31076646531363,0.3126045920074971,0.3137155908162038,0.31617128989327,0.3171337252439929,0.3205285512033978,0.3261509354635274,0.3281715306730196,0.3309556470050297,0.3363733333333333,0.339757361304183,0.3447219243143864,0.3493085811706762,0.3520674904942966,0.3566272461987406,0.3543610547667343,0.3602758620689655,0.3618497109826589,0.0,2.191279734535308,54.64773687506179,167.53981234507322,239.96656276417292,fqhc2_100Compliance_implementation_low_initial_treat_cost,70 -100000,95784,45881,434.7803390963,5903,60.448509145577546,4623,47.74283805228431,1769,18.144992900693225,77.38146625236273,79.70466399393861,63.35451413110488,65.06782003743953,77.1616145338152,79.486528114346,63.27254985972885,64.98902640517628,0.219851718547531,218.13587959260872,0.0819642713760302,78.79363226325609,169.367,119.2477065015498,176821.80739998328,124496.47801464732,420.90117,277.6813826230665,438930.6042762883,289406.89741821855,405.00733,196.24962508221435,419494.12219159777,202340.68786071503,3037.39264,1388.5652616753673,3137348.0017539463,1415946.3289018702,1101.23261,490.3410056241769,1137868.715025474,500088.28783948993,1737.50632,731.9493621495037,1783068.8423953897,736651.9684456689,0.38208,100000,0,769850,8037.354881817422,0,0.0,0,0.0,36336,378.8315376263259,0,0.0,36851,381.4520170383362,1503280,0,53987,0,0,0,0,0,77,0.8038920905370416,0,0.0,1,0.0104401570199615,0,0.0,0.05903,0.1544964405360134,0.2996781297645265,0.01769,0.3323091849935317,0.6676908150064683,24.381061604273555,4.352385135323729,0.3155959333765953,0.2407527579493835,0.2199870214146658,0.2236642872593554,11.048938985555058,5.661363064821329,18.799664193496724,12097.995091120563,52.41620491994938,13.398619163410814,16.48628567714095,11.221149350033029,11.310150729364606,0.5749513303049968,0.8068283917340521,0.7210418094585332,0.5830875122910522,0.1112185686653771,0.7347266881028939,0.9234449760765552,0.8661417322834646,0.7244444444444444,0.1590909090909091,0.5161290322580645,0.7366906474820144,0.6697588126159555,0.5429292929292929,0.0982800982800982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084867262013,0.0044793060115934,0.0068471612176788,0.0089568608335364,0.0113272392650512,0.0134271229920394,0.0157065394651011,0.0181532464616985,0.0203821005312627,0.0225282370273367,0.0247203212719747,0.0269319161160586,0.0292476389160081,0.0314182477017943,0.0333518907996206,0.0354948312007518,0.0375536813783825,0.039873102761881,0.0416359348867166,0.0432306362775007,0.0576080150281778,0.071614678707085,0.0845875504745922,0.0971227937388964,0.1099339005028622,0.1253688407559781,0.1372931692829868,0.1489760292928002,0.1592028110948531,0.1698060615157005,0.1830629622054533,0.1952809887864009,0.207169885177453,0.2176599910310958,0.2274387694474396,0.2373471015777344,0.2471117461238796,0.2551788547445173,0.2629290280095825,0.2705599174737807,0.2770713177217242,0.2833606557377049,0.2889978329603183,0.2945004374243495,0.299419381483371,0.3041121541380245,0.3080117061457265,0.3116990439381611,0.3153608100583978,0.3194014107719691,0.3187774100680711,0.3179644339389275,0.316756985009501,0.3156997080334172,0.3150165727790247,0.3132847430636369,0.310533883174543,0.3106265245649362,0.310963036179894,0.3111881892564923,0.3110924369747899,0.3120130636656961,0.3132371667745235,0.3135946808273277,0.3139975081464443,0.3160176531671859,0.3166907657849224,0.3197412823397075,0.3221884498480243,0.3264966740576496,0.3305818857998095,0.332332174096322,0.335074951794489,0.3390506281501542,0.3402061855670103,0.3437573477545262,0.347904733192644,0.353704813261434,0.3540930106064727,0.3479420731707317,0.0,2.057298037631109,54.71790873843232,173.34985512035044,251.1096934461316,fqhc2_100Compliance_implementation_low_initial_treat_cost,71 -100000,95748,45123,428.11338095834896,5768,58.91506872206208,4512,46.45527843923632,1769,18.0787066048377,77.31912755708531,79.66873146194777,63.32066847763053,65.05816916435059,77.09488525878444,79.44891948468096,63.23638016865189,64.97857705889196,0.2242422983008651,219.811977266815,0.0842883089786497,79.59210545863016,170.96596,120.22288165223446,178558.25709153194,125561.76802881988,421.47938,278.0438267801783,439547.12369971175,289741.85025293304,387.51076,188.9619502285573,400694.3121527343,194188.87918334044,2944.58532,1347.111320871879,3034974.8506496223,1366608.16090349,1074.24682,477.6145948572116,1104858.1902494046,481859.7352268933,1725.06418,731.5947175709331,1764951.1008062833,731947.4871458855,0.37695,100000,0,777118,8116.284413251451,0,0.0,0,0.0,36488,380.3943685507791,0,0.0,35346,365.1355641893303,1496619,0,53761,0,0,0,0,0,82,0.8459706730166687,0,0.0,1,0.0104440823829218,0,0.0,0.05768,0.1530176415970288,0.3066920943134535,0.01769,0.3379560838699026,0.6620439161300974,24.464110718573284,4.27708646644045,0.3204787234042553,0.2422429078014184,0.2189716312056737,0.2183067375886525,11.223203950317677,5.919464342382164,18.939188457769298,11939.41875034747,51.06872056919477,13.106080927247024,16.23084585862534,10.977744790841191,10.754048992481234,0.5707003546099291,0.7913998170173834,0.6936376210235131,0.5759109311740891,0.1401015228426396,0.7435470441298918,0.9262899262899262,0.8579387186629527,0.7336244541484717,0.1941747572815534,0.5080036242826941,0.7113702623906706,0.6393744250229991,0.52832674571805,0.1258023106546855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024405310433523,0.0044994375703037,0.0069295077310174,0.0091714233480265,0.0113087429193235,0.01362622590205,0.0157328575070099,0.0177367969611567,0.0198666693932639,0.0221334971334971,0.0241974346617998,0.0263276789748223,0.0281900177923133,0.0303083373682638,0.0324817367617318,0.0345194662918445,0.0365964759715924,0.0384427870501955,0.0405361874577856,0.0424113652460109,0.0569415448851774,0.0705879891628398,0.0838131797824696,0.0966887138666021,0.1089277996226057,0.1241673187133884,0.1361327068506517,0.1465267727930535,0.157264135832132,0.1666595197255574,0.179428645266887,0.1917041814561509,0.2027864787261811,0.2131642247977258,0.2227148216191241,0.2324983943481053,0.2417257353351565,0.2500534470536608,0.2576423179522107,0.2659252811691138,0.273243024198217,0.2797944443794116,0.2859478479273046,0.290983065493693,0.2964841232198669,0.3007491884819985,0.3048212093116496,0.3092681062488056,0.3136385442192747,0.3167855256207079,0.3156837635640628,0.3148900425508475,0.3139406935078859,0.3120096123223023,0.3107320265326155,0.3090602483519852,0.3060376939781571,0.3061278133727616,0.3068106113663927,0.3083801280446367,0.309140037153097,0.3108677171269844,0.3123281922148778,0.3127954652387247,0.3134885288524037,0.314197740260418,0.3150392017106201,0.3190968187670759,0.3209175084175084,0.3228458498023715,0.3275588408688948,0.3317259286736262,0.3347169811320755,0.3391264578092842,0.3446912650602409,0.3427932171455488,0.3414968055978095,0.3399273314493338,0.3408157678620312,0.3308185590343266,0.0,2.5724929005851345,52.06961876027185,170.9871891147391,244.5251052549531,fqhc2_100Compliance_implementation_low_initial_treat_cost,72 -100000,95665,45677,434.68353107196987,5791,59.10207494904092,4587,47.195944180212194,1854,18.920190247216848,77.34181859432726,79.72518193467138,63.3271521787835,65.08590167599473,77.11284538927049,79.49832896347752,63.24200174254592,65.00424902139765,0.228973205056775,226.85297119386405,0.0851504362375763,81.65265459707882,170.26438,119.73580029074438,177979.80452621126,125161.55364108544,422.56976,279.37305800006845,440976.59541106987,291291.0238855052,401.42155,196.223389628251,414444.30042335234,201228.41887436868,3023.7731,1399.239726944024,3117404.6934615583,1419256.6005791288,1081.76742,492.04917819524667,1110557.215282496,494116.9057532263,1805.5294,759.0874056126994,1845907.364239795,758644.1031448202,0.38038,100000,0,773929,8089.991114827784,0,0.0,0,0.0,36462,380.3585428317566,0,0.0,36683,378.2679140751581,1498014,0,53842,0,0,0,0,0,73,0.7630794961584696,0,0.0,1,0.0104531437829927,0,0.0,0.05791,0.1522424943477575,0.3201519599378346,0.01854,0.338035099229129,0.6619649007708709,24.07216977908461,4.364897416385146,0.3296272073250491,0.2343579681709178,0.2166993677785044,0.2193154567255286,11.30619404110204,5.818571466591278,19.8136405144012,11991.105533514226,52.38223611871192,12.957954937393106,17.202350382340676,11.138914358329716,11.083016440648422,0.5642031829082189,0.786046511627907,0.6944444444444444,0.5824949698189135,0.1133200795228628,0.7467282525019245,0.9377880184331796,0.8546365914786967,0.7603305785123967,0.1696428571428571,0.4920924574209245,0.6833073322932918,0.6370170709793351,0.5252659574468085,0.0971867007672634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0043382628703487,0.0067368079299534,0.0089069894984867,0.0110627567413673,0.0133175857294127,0.0155439358264787,0.0178332635791063,0.019838714623003,0.0221109848601173,0.0241981789844967,0.0261376824245909,0.0282707323848029,0.0300988180984471,0.0321508561520121,0.0341738896588816,0.0362472021885103,0.0383209784256317,0.0399675432756324,0.0420115505702312,0.0565868232197139,0.0707263189856453,0.0841117571737442,0.0976998190159518,0.1102261698805856,0.1257443860335727,0.1373562242689189,0.1480487960656575,0.1593354345851808,0.1687918923266663,0.1818377633222763,0.1931792370177279,0.2046697769512686,0.2144145522918329,0.223633843717001,0.2339737556060019,0.2432960239256341,0.2516869854694318,0.2602854743912678,0.2671414830760775,0.2743336224342295,0.279946683503455,0.2856754295715519,0.2907986631048073,0.2959634720940399,0.3011384638131145,0.3058058058058058,0.3101701602331589,0.3134846600331675,0.317137237819929,0.3158100317870804,0.3153722284157066,0.3140347909442048,0.3130854631664161,0.3110060649304317,0.3087269938650306,0.3073183862182532,0.3082553750205153,0.3094456974916273,0.3107589628281314,0.3119296933433059,0.3135792236496754,0.3145510447386584,0.3157506702412869,0.3167510984130033,0.316730989882132,0.3167208069755514,0.3218314949247352,0.3239401934916446,0.3280288900353189,0.3317095379012064,0.3353090601185436,0.3372252747252747,0.3405462661723538,0.3421738321235809,0.3503554502369668,0.3543127095397744,0.3567263221395536,0.3595132743362831,0.3625910310463779,0.0,2.87865290759113,56.18667091318631,170.3123981708451,244.41826895083685,fqhc2_100Compliance_implementation_low_initial_treat_cost,73 -100000,95692,45514,432.7529992057853,5766,59.18990093215734,4573,47.32893031810392,1884,19.343309785562013,77.38307130315455,79.75824423306881,63.34642469116329,65.09706464438787,77.15153166958004,79.52630539281967,63.26078402387529,65.01329582833783,0.2315396335745134,231.9388402491427,0.0856406672880041,83.76881605003916,171.13778,120.38070734380348,178842.30656690217,125800.17905760511,424.55053,280.61952771588057,443130.5333779208,292719.8383520886,396.26689,192.90726454473,410982.9766333654,199239.72265662413,3013.09641,1370.5562723832495,3118613.332357982,1402126.9619019872,1130.40761,496.582727063202,1169104.1779877106,506744.8554353574,1845.75862,773.7050058634941,1896572.419847009,782185.3343344216,0.37888,100000,0,777899,8129.195753041007,0,0.0,0,0.0,36707,383.125026125486,0,0.0,36133,374.5140659616269,1492930,0,53633,0,0,0,0,0,80,0.8255653555156126,0,0.0,0,0.0,0,0.0,0.05766,0.1521853885135135,0.3267429760665973,0.01884,0.3441783649876135,0.6558216350123864,24.09720567179941,4.449443547741345,0.3000218674830527,0.2444784605291931,0.2245790509512355,0.2309206210365187,11.283064413199618,5.833853691609596,20.03226981617938,11873.307972818837,51.68102306357685,13.316511394711943,15.563243923753095,11.281805816894348,11.519461928217464,0.5670238355565275,0.8014311270125224,0.7004373177842566,0.5890944498539435,0.1240530303030303,0.723404255319149,0.8967254408060453,0.8620689655172413,0.7566371681415929,0.1441441441441441,0.5099970158161743,0.7489597780859917,0.6391959798994975,0.5418227215980025,0.118705035971223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021866110565583,0.0044171580248414,0.0067849210454255,0.0087838661196636,0.0109501296324538,0.0128872013599763,0.01497482109727,0.0171789035307086,0.0192981918166671,0.0215079080718636,0.0237038252150465,0.0256921054793395,0.027727211954789,0.0295926250193129,0.0318360946623475,0.0338580154407433,0.0359044481737004,0.038308251167618,0.0400690522987967,0.0420626980156745,0.057550875433538,0.0717329173689555,0.0845345250834015,0.0975617449452733,0.1089381352001012,0.1243339817320703,0.135854816824966,0.1471429634907637,0.1577161514740874,0.1672756104616901,0.1794571099658945,0.1908741958155376,0.2018912015651323,0.2118016088135,0.2204978166899479,0.2312430755594948,0.240430141147043,0.2488119636945114,0.2564600363306085,0.2642957802958261,0.2705770721716289,0.2768908448231466,0.2837348113408655,0.2891712256454554,0.2943136086760933,0.2995645791960133,0.3040625156539598,0.3082349645362978,0.3120219854294677,0.316000845487212,0.3148838774823291,0.3135057076055563,0.3126381750334436,0.311115606351775,0.3096560532256148,0.307421198608621,0.30474440995756,0.3049386971293515,0.3059260019149227,0.3067938276896699,0.3055581486529378,0.3055342271572854,0.3064721474338906,0.3081990563518205,0.3088744950883147,0.3106441415764108,0.311168934015895,0.3149078204448326,0.3191682366896937,0.3220898690883358,0.3247364372652821,0.3280806807437756,0.3330633100697906,0.3322806226032032,0.3362316159467209,0.341767723880597,0.3463553360275407,0.3452194357366771,0.3491724506139882,0.3585951940850277,0.0,1.771044366928824,53.91191213697081,170.13968603802374,250.08972222279957,fqhc2_100Compliance_implementation_low_initial_treat_cost,74 -100000,95704,46028,436.7947003260052,5733,58.82721725319736,4498,46.539329599598766,1777,18.264649335450976,77.3960056150407,79.78060227097363,63.35197710932333,65.11310924675603,77.18319289734458,79.56832833079724,63.27312493240488,65.03651227733593,0.2128127176961243,212.273940176388,0.0788521769184527,76.59696942009475,171.72232,120.87091528183232,179430.66120538328,126296.61799071336,426.54611,281.2302258975117,445219.2384853297,293380.35599087994,399.73234,194.31549583788444,414811.97233135503,200776.41633270084,2935.10165,1341.9095654337325,3037763.917913567,1373256.1832206117,1053.46725,465.1927910947339,1088628.751149377,474089.01934995776,1731.29072,719.003515993921,1780927.8609044554,727574.784661455,0.38192,100000,0,780556,8155.93914569924,0,0.0,0,0.0,36864,384.69656440692137,0,0.0,36460,378.1033185655773,1493758,0,53486,0,0,0,0,0,75,0.783666304438686,0,0.0,1,0.0104488840591824,0,0.0,0.05733,0.1501099706744868,0.3099598813884528,0.01777,0.3381103149475087,0.6618896850524912,24.36253700262085,4.298021806521911,0.3134726545131169,0.245664739884393,0.2276567363272565,0.2132058692752334,11.465619483905671,6.092677021257243,18.841576826199844,12014.366818502183,50.91518537937843,13.219066530632023,15.789920433277254,11.474180208642544,10.43201820682661,0.5675855935971543,0.7909502262443439,0.6971631205673758,0.5634765625,0.1240875912408759,0.7379983726606998,0.9088729016786572,0.8836565096952909,0.712,0.154228855721393,0.5035178953808505,0.7194767441860465,0.6329837940896091,0.5155038759689923,0.1160949868073878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995026185965,0.0048467887489606,0.0072166622683258,0.0095707391414782,0.0116371330335889,0.0135523153993402,0.0157121445394944,0.0178970688827859,0.0199656504937741,0.0221601261028884,0.0246257945458273,0.0268796780188301,0.0289922145773554,0.0310253188026616,0.0331204407804455,0.035104403555923,0.0369576250996965,0.0390695550181127,0.0412775339559456,0.0432516935904116,0.0581040713584424,0.0719279151055947,0.0850543848792204,0.0981484791454195,0.1103603841005154,0.1259437852928113,0.1372045657062842,0.1482431583765314,0.158630634479812,0.1686757324868088,0.1804740418474925,0.1924765839624478,0.2045269323133428,0.2143606557377049,0.2230723567047028,0.233202368435615,0.2424151195852149,0.2510669841412462,0.2594773980903623,0.2662011109333211,0.273558336026594,0.2799257763721451,0.2864462809917355,0.2920518002128448,0.2978697622567433,0.302978179673678,0.3078054862842893,0.311788710617697,0.3157623205602775,0.3197376376876363,0.3185469271720327,0.3171456752239787,0.3143057700407132,0.3129096855055969,0.3123833506147237,0.3099858021769995,0.3072356683875653,0.3078081519070224,0.3080329767663691,0.3086380215283338,0.3093451314217443,0.3100796538499361,0.3115119451792297,0.3126068708223224,0.3141292390108576,0.3158563134978229,0.315993327867462,0.3193905643849331,0.3235930735930736,0.3297603037734356,0.3331665605385245,0.3352055955913522,0.3383600377002828,0.3411675511751327,0.3436061260922672,0.3485064011379801,0.3501293956462171,0.3540234532955923,0.3453848260750479,0.3528960490985807,0.0,1.7336900414371317,54.26356486462265,166.59034304793312,242.7510093092413,fqhc2_100Compliance_implementation_low_initial_treat_cost,75 -100000,95816,46160,436.1693245386992,5874,60.06303748851966,4626,47.64339984971195,1830,18.723386490773983,77.38566316619061,79.70479499872184,63.36611244363343,65.08322649738197,77.15997177227484,79.48144848655954,63.282163420489645,65.00274072972451,0.2256913939157669,223.34651216229415,0.0839490231437807,80.48576765746418,171.1457,120.4431040777335,178619.1241546297,125702.49653266,425.81139,282.1324027549522,443788.563496702,293835.5418249062,408.36485,199.55282675949616,421484.0110211238,204742.89483048324,3016.99595,1390.629400403704,3111989.229356266,1414604.0853340826,1097.49922,487.1642967353779,1131042.5398680803,494056.1041322725,1781.15656,745.6201354442863,1824607.226350505,749158.7922655034,0.38249,100000,0,777935,8119.051097937714,0,0.0,0,0.0,36787,383.2867162060616,0,0.0,37286,384.43474993738,1493267,0,53594,0,0,0,0,0,69,0.7201302496451532,0,0.0,1,0.0104366702847123,0,0.0,0.05874,0.1535726424220241,0.3115423901940756,0.0183,0.3286109754111708,0.6713890245888292,24.12914263890201,4.312244441217307,0.3197146562905317,0.2447038478166882,0.2213575443147427,0.2142239515780371,11.235554889333438,5.867090627081277,19.478873713225777,12100.109267126993,52.68986535295473,13.565774301557882,16.88410362010059,11.308489090737604,10.931498340558669,0.5711197578901859,0.7879858657243817,0.7018255578093306,0.57421875,0.1251261352169525,0.7384855581576893,0.9148418491484184,0.875,0.7137254901960784,0.1497584541062802,0.5070254110612855,0.7156726768377254,0.6358543417366946,0.5279583875162549,0.1186224489795918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025320814722534,0.0047646563871739,0.0072160030853234,0.0096214414890374,0.0118088612229952,0.0142449852357193,0.0165224393276865,0.018644759669354,0.0206962102939372,0.0228005362424143,0.0251491114800467,0.0275485486718397,0.0296402877697841,0.0319608852290272,0.0342964383674647,0.0361514228167122,0.0383349888254283,0.0406927932503446,0.042604226156482,0.0446409989594172,0.0593223874992176,0.0735707640362522,0.0874035720275029,0.0999579743643622,0.1123189550745246,0.1275982256020278,0.1393565064465892,0.1504432303735039,0.1616677688418627,0.1715041555993488,0.1833980363268773,0.1947177963813124,0.2061362081881249,0.2161710767618548,0.2249692469905983,0.2354885788205117,0.2444776152655089,0.2533835008704442,0.2612453415797283,0.2673654371506624,0.2748816260538168,0.2809604928476419,0.2873835912326051,0.292602196278992,0.2979040284790584,0.3037659164302992,0.307935993215181,0.3119247445422044,0.317593464878886,0.3210574773115875,0.3190440366479486,0.3173705310560711,0.3162104789619445,0.3148666589702147,0.3131650416277102,0.3103928500374944,0.3085972134262191,0.3091007619548082,0.3100256629597947,0.3106024053324756,0.3118704362478937,0.3129075603683358,0.3134848930537462,0.3133910158701695,0.3130837738034899,0.3137193285673135,0.3150485020173405,0.3178206583427923,0.3201452801579745,0.3237381389043935,0.3279265283743032,0.3319704773535815,0.3329974811083123,0.3350809209026669,0.3405359501792791,0.3442661913250148,0.3436973502833512,0.3454766241651487,0.3523443926514943,0.3589645984012181,0.0,2.509068702567756,55.69373580952948,172.59902761082785,249.56332705062755,fqhc2_100Compliance_implementation_low_initial_treat_cost,76 -100000,95766,45851,434.35039575632265,5824,59.48875383747885,4606,47.50120084372324,1822,18.6600672472485,77.37657405990127,79.72159985373851,63.3458979718325,65.07904381339213,77.14592857149538,79.49302252815949,63.259166022157736,64.99568310747568,0.2306454884058979,228.57732557902463,0.086731949674764,83.36070591644784,169.89346,119.53460934899684,177404.77831380657,124819.46551907444,425.00549,280.8887531580454,443228.7450660986,292740.3286741071,404.45355,196.91553246006927,418311.5823987637,202540.6918998021,3007.86672,1388.116036442402,3102259.2778230268,1410896.2851559038,1086.11684,487.4301933041008,1118742.382473947,493586.6417142831,1781.34298,754.6901496220652,1825361.485287054,758514.9500672363,0.38293,100000,0,772243,8063.85355971848,0,0.0,0,0.0,36688,382.48438903159786,0,0.0,36897,381.3775243823486,1498523,0,53755,0,0,0,0,0,82,0.8458116659357182,0,0.0,0,0.0,0,0.0,0.05824,0.1520904603974616,0.3128434065934066,0.01822,0.3438324538258575,0.6561675461741425,24.329383246008323,4.302799164877664,0.3145896656534954,0.2457663916630482,0.2223187147199305,0.2173252279635258,11.361228374197584,5.967119703957816,19.41304743473132,12033.799781779748,52.33884770891392,13.57401810086454,16.368524742140767,11.363166155874708,11.033138710033896,0.5629613547546678,0.7932862190812721,0.6721877156659766,0.583984375,0.1228771228771228,0.7436708860759493,0.9290617848970252,0.841688654353562,0.7456140350877193,0.2045454545454545,0.4946140035906642,0.7079136690647482,0.6121495327102804,0.5376884422110553,0.0998719590268886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025625443127722,0.0049366947460187,0.0074778303131151,0.0097525295623552,0.0115633390285574,0.0140120772700888,0.0161923504399873,0.0183975170498631,0.02076283748556,0.0229908589327573,0.0252439324368645,0.0273862924831401,0.0294126718137985,0.0314315139031925,0.0334461271819419,0.0354843044228761,0.037442789984882,0.0397219772809793,0.0416887585898595,0.0435434653558149,0.0583127198338395,0.0725162099979083,0.0860590430662137,0.0985885889041858,0.1106520662289345,0.1264085921478255,0.1377193447489794,0.1491168333688018,0.1601610474491921,0.1695476869624895,0.182391969324889,0.1938366984786513,0.2043951261966927,0.2145920868347338,0.2235225471199577,0.2334729981378026,0.2426357281640127,0.2506752498424417,0.2588860138907803,0.2668361446059065,0.2742711707542804,0.2812912881312334,0.2876786833299833,0.2922793237224005,0.2977038988792695,0.3023568110978329,0.3066175092170218,0.3110806279530559,0.3151186090104065,0.3188264445381695,0.3172265520021499,0.316411883472743,0.3144078401597278,0.3133910533910534,0.3119226606171137,0.3101539684723942,0.3073614975967619,0.3077767582093465,0.3089181211717937,0.3094898831575947,0.3102396106327218,0.312051140399337,0.3139654054506285,0.314266622118276,0.3155080213903743,0.3145131914450746,0.314856379805097,0.3180879038317055,0.3218475330041671,0.3243103994927077,0.3249647518988493,0.329745493107105,0.3320368860171884,0.3346209194879951,0.3381804623415361,0.3386660392894953,0.3409607516290347,0.3448070035813768,0.3428958051420839,0.3542059600150886,0.0,2.3212022371987606,55.02685683042931,175.73324007707188,244.00133669749087,fqhc2_100Compliance_implementation_low_initial_treat_cost,77 -100000,95755,46018,436.5516161035977,5728,58.691452143491205,4430,45.71040676727064,1722,17.586549005273877,77.3313489084019,79.69802545665668,63.31030609897547,65.06342083813266,77.11487885306406,79.48419988689999,63.22957171653956,64.98629111075046,0.2164700553378509,213.8255697566933,0.0807343824359065,77.12972738220003,172.21842,121.23509443265225,179852.95807007467,126609.44538943366,423.43616,279.97938852668057,441648.57187614223,291833.5230728493,399.70356,194.67717222266128,414094.13607644505,200672.2452601153,2906.88979,1322.0273894744416,2998444.1230222965,1343858.864634768,1023.87793,449.7808843704245,1053773.2442170123,454239.7671132336,1686.01452,711.8936519793612,1722875.1918959846,711839.1072123417,0.382,100000,0,782811,8175.134457730667,0,0.0,0,0.0,36624,381.89128505038906,0,0.0,36359,376.3563260404157,1485117,0,53235,0,0,0,0,0,78,0.8145788731658922,0,0.0,0,0.0,0,0.0,0.05728,0.1499476439790576,0.3006284916201117,0.01722,0.3458583834335337,0.6541416165664663,24.475915836533662,4.339684486715023,0.3167042889390519,0.2476297968397291,0.2144469525959368,0.2212189616252821,11.326429964932196,5.827969928299888,18.366512132088367,12039.448526462133,50.06422864388863,13.207792808374158,15.65702475640072,10.567825949185025,10.631585129928736,0.5525959367945824,0.7930720145852325,0.6678545972915182,0.5642105263157895,0.1071428571428571,0.7443478260869565,0.9218009478672986,0.8773006134969326,0.6891891891891891,0.1555555555555555,0.4853658536585366,0.7125925925925926,0.6044568245125348,0.5260989010989011,0.09625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.004502266343531,0.0068409033240294,0.0090530380004064,0.0112209810982929,0.0134330030247171,0.0158048760591816,0.0181238959739424,0.0203847845431578,0.0226662842862117,0.0246759107318674,0.0264858478450711,0.028517032005763,0.0303729889618353,0.032638989244204,0.0347655240163383,0.0370197783990887,0.0390179108814312,0.0409260067776876,0.0430394250299463,0.0580737431100718,0.0723412270696204,0.0856735237655648,0.0978926115212316,0.1106975665303024,0.1265812074290307,0.1369752536185746,0.1488128841217259,0.1600316344088319,0.1700449604584035,0.1830272460769098,0.1947780509199597,0.2052995993729315,0.2150277501067311,0.2232632390179456,0.2333658514954659,0.2430989815972842,0.2514857503039034,0.2596795424628932,0.2667911730332959,0.2743160038887088,0.2810663357295057,0.2880078675782314,0.2927505612042783,0.2985878832844789,0.304028310378417,0.3088146961657824,0.3128372187722691,0.3173712449132992,0.3207405257046342,0.3191612573060037,0.3176056531661579,0.315951653979823,0.3149639249639249,0.3132280150567592,0.3114841745081266,0.3083792184024107,0.3085936860710603,0.3086485011765508,0.3092423810880091,0.3098552078468005,0.3105793301925844,0.3115093039283252,0.31287905815198,0.312819405455985,0.3135597628211796,0.3138290321664821,0.3171015038774293,0.3201040531514746,0.3236019409752605,0.3267655624317437,0.330830645587691,0.3364661654135338,0.3371847152998036,0.3387320684868116,0.3372726219441548,0.3418116912092815,0.3461988304093567,0.3459286854709952,0.3514412416851441,0.0,2.095446966666871,50.304008726018026,166.1150447631815,247.1933011088,fqhc2_100Compliance_implementation_low_initial_treat_cost,78 -100000,95484,45883,437.3088685015291,5772,59.266473964224375,4464,46.10196472707469,1760,18.023962129780905,77.22623088476638,79.71479541077484,63.24095407219974,65.07674586440915,77.00127469112988,79.49116220036686,63.15725331560597,64.99605197113493,0.2249561936365012,223.6332104079821,0.083700756593771,80.69389327421561,169.59998,119.38236387124785,177621.36064680995,125028.65806967432,424.03283,281.1203254142402,443413.5876167735,293752.6844456811,403.40583,196.70679765338323,418220.46625612665,202655.5552638002,2938.02614,1352.4006537723617,3037024.4438858866,1377130.9911057495,1075.84877,482.9904965663241,1110023.8050353988,489125.77663935657,1733.21098,734.9719618872521,1777137.8241380756,738563.127524478,0.37984,100000,0,770909,8073.698211218634,0,0.0,0,0.0,36686,383.5302249591555,0,0.0,36703,380.2731347660341,1490162,0,53532,0,0,0,0,0,76,0.774998952704118,0,0.0,0,0.0,0,0.0,0.05772,0.1519587194608256,0.3049203049203049,0.0176,0.3402537485582468,0.6597462514417531,24.10926200620056,4.352692894106252,0.3194444444444444,0.2379032258064516,0.2188620071684587,0.2237903225806451,10.979690213131272,5.536116769267439,18.856441434644783,11946.998247894222,50.74380823116019,12.776262985806897,16.152120432405756,10.732768978644868,11.082655834302685,0.5582437275985663,0.768361581920904,0.6984572230014026,0.5875127942681678,0.1061061061061061,0.7171888230313294,0.9184210526315788,0.8637602179836512,0.7536231884057971,0.1101321585903083,0.5010660980810234,0.6847507331378299,0.6411709159584513,0.5428571428571428,0.1049222797927461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020773167147996,0.0043007698783815,0.0065790809592462,0.008795119471276,0.0110563609708421,0.0130153391428425,0.0150715823630853,0.0173298183230131,0.019499319672215,0.0216081637671359,0.0236594678929216,0.0259310288099693,0.0281524805898222,0.0299314114795523,0.0319580918136449,0.0343428068540663,0.0361721991701244,0.0382632377705245,0.0403500546960462,0.0423001420098571,0.0572239027811214,0.0712599540461427,0.0849273868739023,0.0977519682134839,0.1099052067591702,0.1251974095625722,0.1373422499122872,0.1485575281666097,0.1593158255505098,0.1691371693306532,0.181296020383926,0.1926289073515694,0.203720058003249,0.2134596200436303,0.2232912230374579,0.2340319139479064,0.2426588211604935,0.251783962934154,0.2594538651381259,0.2658381814635042,0.2731088539492602,0.2792816027948089,0.2848279216542299,0.2902737388545747,0.2958841667783885,0.3013618989893992,0.3063622312419105,0.3092396166134185,0.3135746312300994,0.3181415050632074,0.3165702858995838,0.3153105958256362,0.3129453262786596,0.3112791521478247,0.3104803298453478,0.3078705835405347,0.3057253059475246,0.3061244649324992,0.3069169452301363,0.30775290957923,0.3090202848511005,0.3093734534296743,0.3105075503355705,0.3103895813287386,0.3104715689336248,0.3108072916666666,0.3114483386954417,0.3147490493101606,0.3187341949985951,0.3218354304767197,0.3261037955073586,0.3266938602532182,0.3307673050444361,0.3361965039180229,0.3357037310676025,0.3341866418431464,0.3396169048342961,0.3390278625177954,0.3379083173208894,0.3298969072164948,0.0,2.486596454968681,51.35154950515208,169.69677346710498,245.31412521085437,fqhc2_100Compliance_implementation_low_initial_treat_cost,79 -100000,95711,45900,437.38964173397,5784,59.24083961091202,4536,46.81802509638391,1764,18.1065917188202,77.36399481233721,79.74879703431357,63.33329461681414,65.09750962023564,77.13694188064517,79.52211472298268,63.24889495207682,65.01533203386093,0.2270529316920431,226.68231133089023,0.0843996647373188,82.17758637471206,170.46898,119.98312220288344,178108.03355936098,125359.80420524646,428.0362,282.76023678867205,446672.6813009999,294886.6136480364,397.99348,193.89048590462903,412163.0847029077,199764.94171952896,2988.38803,1365.8567245523832,3089130.0164035484,1393889.8606768115,1073.22575,477.764099517131,1107794.0362131835,485648.56653585314,1725.26332,729.9791148801661,1773133.2239763455,738174.3727749706,0.38215,100000,0,774859,8095.8197072436815,0,0.0,0,0.0,37097,387.00880776504266,0,0.0,36313,375.6621495961802,1495460,0,53698,0,0,0,0,0,65,0.6791277909540179,0,0.0,0,0.0,0,0.0,0.05784,0.1513541802956954,0.3049792531120332,0.01764,0.3339400959788184,0.6660599040211815,24.320007659972603,4.353988129997148,0.3141534391534391,0.2411816578483245,0.2246472663139329,0.2200176366843033,11.086390453832326,5.604976964533646,18.92288237159677,11991.981458276938,51.60757513044283,13.261796764371171,16.160685354043274,11.312583680316962,10.872509331711433,0.5570987654320988,0.7970749542961609,0.6933333333333334,0.5564278704612365,0.1002004008016032,0.7242733699921445,0.9181818181818182,0.8621621621621621,0.6772908366533864,0.1367924528301886,0.4918786392889978,0.7155963302752294,0.6341232227488152,0.5169270833333334,0.0903307888040712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023100069908106,0.0044418753232529,0.0066291724193941,0.0086489013557737,0.0106738028856916,0.0128879108339955,0.0149842914847607,0.0169330541796456,0.0187886102360594,0.0210633025456183,0.0231558869073867,0.0251622709719825,0.0273094765426511,0.0292838742916022,0.0311883998142319,0.0334580946669699,0.0356132881693029,0.037491698489125,0.0393122947070807,0.0413623529656911,0.0562569838236369,0.0695386418822741,0.0833149750852347,0.0953457558677546,0.1081807545141194,0.1237061081212531,0.1353904883092094,0.1473842095185413,0.1584841206298372,0.1685189749965168,0.1808115698744229,0.1936572491671353,0.2054998586434117,0.2157986243999519,0.2253263966034955,0.2351332801983705,0.2445071490709553,0.2538370720188902,0.2621165365765112,0.2694751302157862,0.2765224229248098,0.2820416895612425,0.2882248520710059,0.2933788723111031,0.2986738560186534,0.3032411398172548,0.307288214031094,0.3119297532213383,0.3160357844658186,0.3194658448895737,0.3181946441288311,0.3164920279605037,0.3149098269633544,0.3131624868403974,0.3124175840457528,0.309205710102489,0.3072378371565414,0.3081806165244211,0.3085010615711253,0.3095741843719441,0.3100028019052956,0.3101648513973962,0.3107377647918188,0.3120060722418181,0.3137278390033541,0.3152808169219547,0.3162646313331245,0.3191449348044132,0.3228476240575136,0.3254543294928139,0.3277699668919225,0.330974759742317,0.3329554043839758,0.3376801647220315,0.3377383424579951,0.3390153772797711,0.3403959171048561,0.3451672481017853,0.35213627478358,0.3608610567514677,0.0,2.281119348426718,55.980266121112585,167.6562384072812,240.86675478705243,fqhc2_100Compliance_implementation_low_initial_treat_cost,80 -100000,95663,45446,431.5670635459896,5649,57.68165330378516,4436,45.6916467181669,1728,17.62436887824969,77.31725194233033,79.72498900676662,63.30264576078415,65.08491933077067,77.09325615196838,79.50695614956034,63.21842472872834,65.00624190500194,0.223995790361954,218.032857206282,0.0842210320558152,78.67742576873127,170.20476,119.73294951169731,177921.20255480174,125161.19033659548,422.77993,279.7522562077201,441295.6524466095,291783.6427957728,395.0768,192.0222404352966,409318.4094163888,197821.98083563236,2908.38684,1335.3810656613373,2999444.13200506,1355243.2563300824,1020.26422,453.26272745887866,1052817.0034391563,460166.7376735124,1687.74824,715.7835841668175,1724846.61781462,712926.3853243676,0.37879,100000,0,773658,8087.3273888546255,0,0.0,0,0.0,36617,382.09129966653774,0,0.0,35910,371.6692974295182,1498041,0,53739,0,0,0,0,0,77,0.8049088989473464,0,0.0,0,0.0,0,0.0,0.05649,0.1491327648565168,0.305894848645778,0.01728,0.3416906657631712,0.6583093342368287,24.35401450619879,4.327252597773109,0.31785392245266,0.2434625788999098,0.2233994589720468,0.2152840396753832,10.9838173598166,5.638631343875788,18.424461218639703,11868.86484260978,50.43942824199206,12.97024786965761,15.975088667257117,11.053905592081248,10.44018611299608,0.556131650135257,0.7805555555555556,0.6900709219858157,0.5630676084762866,0.0973821989528795,0.725473321858864,0.9020618556701032,0.8690807799442897,0.6785714285714286,0.1518324607329843,0.4960293219303604,0.7124277456647399,0.6289248334919124,0.529335071707953,0.0837696335078534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024618314810499,0.0046037621051564,0.0067284370338045,0.0089727565568189,0.0109070560105814,0.0128756239176937,0.0150368269642747,0.0174485125858123,0.0196844754557917,0.0216787730388189,0.0239663486200882,0.0261719311946402,0.0283693783647462,0.0301358846938985,0.0320998109953213,0.0343825014485555,0.0363555315972798,0.0383944334821892,0.0403379355550237,0.0424793336738629,0.0564604599166257,0.069910151423126,0.0833245847943393,0.0958638903210193,0.1086013904860371,0.1232828870779976,0.1351985310506596,0.1458164699867933,0.1559878159568214,0.1650860404239797,0.1775857983066548,0.1896251231367115,0.2007270669162784,0.2107222228304303,0.2202674715783907,0.2297827532697849,0.2386755499012354,0.2478879577029079,0.2556691207332706,0.2634784699403501,0.2703850247582026,0.2770657436209275,0.2834282197261117,0.2894516082642251,0.2945936095249666,0.2992331779964001,0.3034406798753395,0.3081265974085424,0.3124830200395875,0.3157721348847628,0.3151633284043554,0.3137448831011841,0.3128012704301755,0.311232584302074,0.3103837639472863,0.3084620571288464,0.3061505362736103,0.3059979334437683,0.3064384122220706,0.3080170279464937,0.3087643812552614,0.3103495896464646,0.3112661888595499,0.312136790344211,0.3136352686099735,0.3156232874924976,0.3161670509864207,0.3192009783938035,0.3233066891039124,0.3250148544266191,0.3281121937892723,0.3324315722469764,0.3344656224444863,0.3340182648401826,0.3383416283219081,0.3397292525014714,0.3438360354848577,0.3495771244462344,0.354389721627409,0.3506879880996653,0.0,2.714898067898824,50.27804830793444,171.56463713321045,242.0268189523406,fqhc2_100Compliance_implementation_low_initial_treat_cost,81 -100000,95857,45551,432.5505701200747,5787,59.23406741291716,4501,46.381589242308856,1745,17.818208372888783,77.4717338221379,79.75941386231563,63.40399372213196,65.09104197989123,77.25030461414343,79.54080917615345,63.320919573374375,65.01198921345467,0.2214292079944755,218.60468616218043,0.0830741487575821,79.05276643656123,171.74652,120.7868969227726,179169.5129202875,126007.38279183846,423.30386,279.57228368748065,441016.3889961088,291072.6432993736,393.29282,191.43367373564868,407053.17295554833,197159.2131443551,2928.65055,1344.2956273866084,3018435.2003505225,1365792.9742412427,1011.15086,446.89145408160766,1039518.6580009806,450996.302473986,1700.7241,719.7799711456194,1737989.6929801684,718286.9645402118,0.38217,100000,0,780666,8144.0687691039775,0,0.0,0,0.0,36571,380.91114889888064,0,0.0,35952,371.8142649989046,1496238,0,53663,0,0,0,0,0,81,0.8450087108922666,0,0.0,0,0.0,0,0.0,0.05787,0.1514247586152759,0.301537929842751,0.01745,0.3418139765405584,0.6581860234594415,24.306415908843288,4.323342985541062,0.3179293490335481,0.2490557653854699,0.2212841590757609,0.211730726505221,11.607108226799031,6.17080545786629,18.58950116622128,11993.338534841469,50.77411054500149,13.393683635604678,15.946720928245169,11.060259856628694,10.373446124522957,0.5638746945123306,0.7939339875111507,0.6785464709993012,0.5652610441767069,0.1196222455403987,0.7232142857142857,0.9234338747099768,0.8425414364640884,0.6986899563318777,0.1333333333333333,0.5038237993270113,0.7130434782608696,0.6230121608980356,0.5254237288135594,0.1157469717362045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019333940682255,0.0042852367010768,0.0063984262507858,0.0085058871295168,0.010700349565076,0.0128399483146296,0.0149845163393366,0.0170952376095227,0.0194841002389559,0.0213122801276282,0.0234639846782535,0.0254653607507307,0.0275928665351742,0.0297561477518263,0.0318620376860594,0.0340251961999173,0.0359355766346342,0.0381191248561982,0.0399867091696346,0.0419402845278856,0.0565073671258303,0.0701360067742036,0.0833394468490939,0.0966196265512204,0.1085391434504421,0.1244554874180587,0.1365202914073021,0.1482494122152834,0.1585403610663307,0.1690335580540401,0.1812517487032692,0.1934591358104748,0.2045301539731144,0.2141242999530573,0.223529024181327,0.2341192205237037,0.2430024169924594,0.2508505788427636,0.2592978482446206,0.2669098143236074,0.2741715737212793,0.281356802090259,0.2874313713914634,0.2927403828906932,0.2978483407723656,0.3026097227861651,0.3069727360151869,0.3113844669561023,0.3151007014869456,0.3191058247700749,0.3186391049146418,0.3171600877192982,0.3158005529281333,0.3144266869974251,0.3127922116352015,0.3096914822266935,0.3081479614342429,0.3093635650810246,0.3091820266711968,0.3101949584005961,0.3119412991656734,0.3142666457286432,0.3157270400199787,0.3174430480927217,0.3181037771842808,0.3187850878327685,0.3202010788217684,0.3236053638654678,0.3262252021842814,0.3283809672752864,0.3304822891943934,0.3334032511798636,0.3334166146158651,0.3349514563106796,0.3358152686145146,0.3340448239060832,0.3342420112070271,0.3337988826815642,0.3369418132611637,0.3443484791588434,0.0,2.2228789015070647,53.58995717492909,163.3175454249503,246.01195929806244,fqhc2_100Compliance_implementation_low_initial_treat_cost,82 -100000,95735,45884,434.1672324646159,5797,59.19465190369249,4561,47.00475270277328,1780,18.175171045072336,77.34438518034166,79.69714830358805,63.33412346583962,65.07240657588528,77.11925058765507,79.47566548816779,63.25005866304385,64.99246614756923,0.2251345926865866,221.48281542025927,0.0840648027957655,79.94042831604986,170.6573,120.11871963562726,178259.63336292893,125469.58316975748,424.98648,281.0146007320548,443155.66929545096,292772.5375438565,402.3683,196.19928458416248,416512.7591789836,202067.47247387632,3014.41927,1385.0812387971375,3109928.6050033947,1408221.6364782837,1085.9389,483.23948170591495,1118456.5310492506,489079.7214549285,1751.83682,744.2464444437337,1790942.4139551888,744047.6418474178,0.38139,100000,0,775715,8102.71060740586,0,0.0,0,0.0,36703,382.6918055047788,0,0.0,36681,379.3596908131822,1492996,0,53627,0,0,0,0,0,76,0.7834125450462214,0,0.0,1,0.0104455006006162,0,0.0,0.05797,0.1519966438553711,0.3070553734690357,0.0178,0.3393151135989463,0.6606848864010537,24.491496551752604,4.310459233292714,0.3174742381056786,0.2394211795658846,0.2177154132865599,0.2253891690418767,10.97610606152478,5.521390326621598,19.005743523504037,12073.265363600438,51.61421975368667,13.067969750253065,16.197784084344654,10.967439958683372,11.38102596040559,0.5531681648761236,0.7738095238095238,0.680939226519337,0.581067472306143,0.1118677042801556,0.7229894394800975,0.9047619047619048,0.8635097493036211,0.7555555555555555,0.13215859030837,0.4903903903903904,0.6919642857142857,0.620752984389348,0.5299479166666666,0.1061173533083645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0047448622671925,0.0070921985815602,0.0093639235042604,0.0116822905016572,0.0138649944519662,0.0162348912578218,0.018541762334813,0.0208131111360873,0.0229305228691292,0.0252172309205672,0.0275374367501103,0.0295602463525226,0.0315853432473069,0.0341145887061833,0.0363243667779304,0.0384328744436393,0.040487005579408,0.0425388181005633,0.0442902825953355,0.0594462540716612,0.0730880321486876,0.0866582756450597,0.0996519123786688,0.1115410976959983,0.1269879874799086,0.1386160666935364,0.1493488530450696,0.1596317340966377,0.1695792949652629,0.1816478997567119,0.1937410079724803,0.2050757888784986,0.2150728059818969,0.2248545440547288,0.2350870200611133,0.2446740840763762,0.2525669429480763,0.2608148122936591,0.2687679607982322,0.2760782318039347,0.2827853993427131,0.2878671382438874,0.2937290167865707,0.2983870967741935,0.3034555903608514,0.3081500970995427,0.3120055039559684,0.3153100624530306,0.3189902164010615,0.3172094400840076,0.3152928878925,0.3143915388623657,0.3131536372566014,0.3119698117692502,0.3100372430916364,0.3072948039184605,0.3074890012476197,0.3088237806440591,0.3103054320855424,0.3109975286452482,0.312170669613783,0.3130780498012136,0.3135576170783503,0.3149953071980362,0.3150752721779444,0.3162342096278593,0.3181232519405424,0.323315916821545,0.325614648290106,0.3292455829586229,0.3313019977743627,0.3339615529589144,0.3377064012666817,0.340028024287716,0.3405430821676267,0.3429966432712847,0.3459803117309269,0.3497509684560044,0.3480620155038759,0.0,2.355749723402909,53.599204152545134,166.0824155683776,253.45055472558332,fqhc2_100Compliance_implementation_low_initial_treat_cost,83 -100000,95672,45951,435.4356551551133,5911,60.66560749226524,4600,47.51651475875909,1774,18.16623463500293,77.28108161739658,79.66888776199178,63.29287913429015,65.05581157334737,77.05330844499939,79.44296857021534,63.20850420925406,64.97478225225113,0.2277731723971925,225.91919177644115,0.0843749250360943,81.0293210962385,170.36866,119.90213130320426,178075.77974747054,125326.25146668228,424.04284,280.8032476855059,442642.44502048666,292922.99490499403,405.92482,197.81922447590816,420688.445940296,203959.9551060045,3004.57394,1383.5184947812577,3104789.426373442,1410616.2881801056,1120.19914,503.5021456339845,1155520.256710427,511023.6257101965,1738.6243,731.9292908154458,1781915.96287315,735144.6454614439,0.38154,100000,0,774403,8094.353624885024,0,0.0,0,0.0,36648,382.4420938205536,0,0.0,36995,383.13195083200935,1490749,0,53561,0,0,0,0,0,73,0.7630236641859688,0,0.0,0,0.0,0,0.0,0.05911,0.1549247785291188,0.3001184232786331,0.01774,0.3360310780187763,0.6639689219812237,24.457248961782685,4.232143958836765,0.3217391304347826,0.2426086956521739,0.22,0.2156521739130434,11.202848680094991,5.870789458847483,19.023057853366996,12062.304651096374,52.44718584599941,13.295023592219726,16.930590305561733,11.22040621495047,11.00116573326748,0.5647826086956522,0.7777777777777778,0.6885135135135135,0.5741106719367589,0.1310483870967742,0.7466666666666667,0.9146341463414634,0.8668280871670703,0.7563025210084033,0.1822429906542056,0.4950375939849624,0.6983002832861189,0.619493908153702,0.5180878552971576,0.1169665809768637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044708482446091,0.006697991617362,0.0089402728815109,0.0110754022333868,0.0134923221050059,0.0156106613373575,0.0177543186180422,0.0201993355481727,0.0222827255140789,0.0246280669735776,0.0266440782381025,0.0290627121084349,0.0311678944928133,0.0332848252159643,0.0354650261076358,0.0374368111378138,0.0396695244223942,0.0418170659398957,0.0440492818278471,0.0584867417514679,0.0724495031465639,0.0859671036748575,0.0991961617777029,0.1114241100630921,0.1264573326844544,0.1380833085643921,0.149052645032111,0.1598507446728892,0.1699630631791436,0.1820309550773877,0.1934284816368109,0.2047350423627295,0.2146439208128941,0.224481926648966,0.2340585978219886,0.2438926264500123,0.2531930709796589,0.2616288317767627,0.2692885398153987,0.2762223586512064,0.2831068416119962,0.2891694824826605,0.2950733060361907,0.2997773749711074,0.3047378161628624,0.3092988874411145,0.3124912379083134,0.3163164721141375,0.320088854804374,0.3180781736983418,0.3168206259478836,0.3148150765273675,0.3130162594556995,0.3116000357749754,0.3091389183131457,0.3077203608860418,0.3084618042415966,0.3088660923772499,0.3092105263157895,0.3100469483568075,0.3117952993488963,0.311153692278537,0.3123581874957877,0.3147812643428267,0.3153729628081905,0.3149635558096327,0.3174272549390898,0.3215326800828855,0.3258877206903392,0.3292716195325998,0.3315861922914019,0.3347361809045226,0.3378643709409454,0.3380268556508765,0.338100220904546,0.3391449363250455,0.343238930993219,0.3510895883777239,0.3575268817204301,0.0,2.1455172180473308,55.95995799311072,170.49106570036437,249.6167553462328,fqhc2_100Compliance_implementation_low_initial_treat_cost,84 -100000,95736,45645,433.5882008857692,5692,58.35840227291719,4443,45.92838639592212,1777,18.279435113228043,77.3612597271838,79.72586964406707,63.34108899169471,65.0885721044604,77.13466110683643,79.49755444844193,63.25778646513115,65.00655734680511,0.2265986203473744,228.31519562514305,0.083302526563564,82.01475765528699,170.33654,119.86671954742803,177923.18459095847,125205.48126872657,422.38,280.07772676682686,440737.3088493357,292097.0134190135,400.47678,195.30810361094703,414772.57249101694,201353.79896066964,2929.52742,1357.655123748315,3033325.363499624,1391443.2123217136,1082.18547,484.9311365510479,1118011.0198880257,494155.4864952031,1750.35448,735.3414285716103,1802605.456672516,747119.9368814303,0.37992,100000,0,774257,8087.417481407203,0,0.0,0,0.0,36553,381.3299072449235,0,0.0,36523,377.9560457925963,1496884,0,53730,0,0,0,0,0,69,0.7207320130358486,0,0.0,0,0.0,0,0.0,0.05692,0.1498210149505159,0.3121925509486999,0.01777,0.3413897280966767,0.6586102719033232,24.236755812977105,4.267741753197335,0.3238802610848525,0.2401530497411658,0.2063920774251632,0.2295746117488183,11.079262615918898,5.678866753072974,19.005679224589983,11942.368785550065,50.82873861252189,12.762373492034238,16.437883870106823,10.301089322138465,11.327391928242369,0.5698852126941256,0.7797563261480788,0.7171646977067407,0.5714285714285714,0.1411764705882353,0.7377952755905511,0.9037037037037036,0.8875305623471883,0.7568807339449541,0.180672268907563,0.5026788528206745,0.7039274924471299,0.6495145631067961,0.5135908440629471,0.129156010230179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.004866574742477,0.0070122384364027,0.0090317074905263,0.0115936133428251,0.0137980896519419,0.0157954846735871,0.0177056210752029,0.0199167748729641,0.0220413595413595,0.0241969384721068,0.0265190419456883,0.0287160077343975,0.0306273823014319,0.0325270370676133,0.0345405109224932,0.0363796406565525,0.0384164375032428,0.0405332335080276,0.042280522619767,0.0568734729676112,0.0708686141318568,0.0840929354381916,0.0971737393279219,0.109524361582159,0.1245243531202435,0.1356093940518475,0.1459758497792435,0.1562950543054561,0.1662111614846253,0.1790212500269123,0.1914083623542644,0.2023826345938542,0.2123169398907103,0.2216787213929254,0.2317863940158456,0.2414969399016755,0.2493961149123102,0.2585683198839423,0.2656718467489071,0.2730677640857281,0.2792504410201292,0.2848359444280224,0.2900557776554233,0.2961040850723284,0.3014069264069264,0.3057505433289201,0.3097480080820403,0.3136871797526008,0.316747572815534,0.3150121065375302,0.313857184061972,0.3127812781278127,0.3116483833718245,0.3112410752720094,0.3090116279069767,0.3066772026866851,0.3079267293639611,0.308779165885501,0.3092397410518431,0.3091596622924427,0.3097089491699808,0.3117704993608683,0.3136509923118183,0.3156489100620759,0.317128601656174,0.3180765602218474,0.321490604768672,0.3251786405716498,0.3287807597356056,0.3310872336550719,0.3337914266081717,0.3363596518690125,0.3419159409314654,0.3427505827505827,0.3431291877277536,0.3497798694398056,0.3520644511581067,0.3579212070410729,0.3562525130679533,0.0,1.9000606786533607,55.98934938540294,163.85452145175594,236.87231294498832,fqhc2_100Compliance_implementation_low_initial_treat_cost,85 -100000,95649,45551,432.52935211032,5786,59.2687848278602,4580,47.266568390678415,1801,18.452885027548643,77.2430810454354,79.64864753292001,63.27207635196621,65.0507439027979,77.01826882621835,79.42626807839422,63.18771525230919,64.97010548691917,0.2248122192170569,222.3794545257931,0.0843610996570234,80.6384158787381,170.95408,120.20390506958084,178730.65060795195,125671.88895814992,422.8663,279.4747696329472,441494.558228523,291581.06987726275,395.37628,192.6198676427746,409588.9240870265,198508.15381295857,2988.47266,1373.9580487925518,3084999.9059059685,1397225.9504871287,1076.25777,479.71895973639766,1107613.6917270438,484000.49361045327,1756.49858,743.204645747224,1800554.9038672647,745399.5655860716,0.37937,100000,0,777064,8124.1204821796355,0,0.0,0,0.0,36543,381.4153833286287,0,0.0,36156,374.21196248784617,1491408,0,53560,0,0,0,0,0,67,0.7004777885811666,0,0.0,2,0.0209097847337661,0,0.0,0.05786,0.1525160133906213,0.3112685793294158,0.01801,0.3340513670256835,0.6659486329743165,24.08081297801825,4.257617520679971,0.3187772925764192,0.2412663755458515,0.2255458515283842,0.2144104803493449,11.08655581499441,5.8592750788088015,19.248389315874142,11986.507771687004,52.324830985669806,13.50971088750546,16.612551317804517,11.45929265154008,10.743276128819756,0.5580786026200873,0.7972850678733032,0.684931506849315,0.5353339787028074,0.1242362525458248,0.7375886524822695,0.920704845814978,0.8552631578947368,0.7030567685589519,0.1553398058252427,0.4892781636967683,0.7112135176651305,0.625,0.4875621890547263,0.1159793814432989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0045442557766822,0.0066292397185872,0.009286824698483,0.0117583635938278,0.0139009114517032,0.0162018863114963,0.0182363992811632,0.0204311191099476,0.0223341832816196,0.0244897959183673,0.0266390075583305,0.0287236340076308,0.0305043886759797,0.0327205540818117,0.0347744263718992,0.0366710174653489,0.0389325970979594,0.0406910827031693,0.0427661415598903,0.0571939138067968,0.0710828986235937,0.0844864876215274,0.0973568699276849,0.1093855574324324,0.1247062061956084,0.136464563833969,0.1467728522996225,0.1570100257867086,0.1668295616870912,0.1794608943370165,0.1916067692240977,0.2029126002091321,0.2134228481934572,0.2237335214496715,0.2342283368467768,0.243433925556537,0.2526236290058954,0.2614711232378354,0.2685726736851763,0.2749620426281568,0.2808979553598613,0.2882066588494474,0.2926881926785971,0.2977372262773722,0.3024823176527224,0.3068670334766315,0.3113654905160106,0.3149241529657552,0.3190352779393875,0.3168032565913625,0.3152227790934626,0.313601286627259,0.3122575976845152,0.3115608571981712,0.3094660938938324,0.3077619047619047,0.3084901466883983,0.3091077144275371,0.3083767477666183,0.3090450843568378,0.3095171920908441,0.3107063321988318,0.3108135387928134,0.3110639631603057,0.3115372524363408,0.3124264431495249,0.3161532634768337,0.3180055010931659,0.3198062992756233,0.3236659465919014,0.3269189651485995,0.3303577081354859,0.334636314861654,0.3374227294341417,0.3407274895646989,0.3394994559303591,0.3442991418062934,0.3470960638590696,0.348729792147806,0.0,2.368654575345577,55.4689240979376,171.8063466124924,247.13636858249063,fqhc2_100Compliance_implementation_low_initial_treat_cost,86 -100000,95821,45746,433.6418947829808,5860,60.04946723578339,4627,47.74527504409263,1822,18.711973367007232,77.44904619750217,79.77595533996121,63.38601454967061,65.1072549823941,77.22137762427161,79.54736211806855,63.3024417828727,65.0253535894302,0.2276685732305594,228.5932218926661,0.0835727667979142,81.90139296389987,171.44204,120.51122805013854,178919.06784525313,125767.03233126196,424.51448,280.5255216333846,442507.7905678296,292239.10378036613,401.01321,195.74831555230972,414337.1077321255,201139.45059929512,3026.75906,1395.1356021145598,3125027.582680206,1422328.7897066926,1114.26267,495.405675509924,1149218.501163628,503415.12186892994,1782.0401,745.2451584323522,1831336.7633399777,753045.3867212794,0.38232,100000,0,779282,8132.684902056961,0,0.0,0,0.0,36756,383.0475574247816,0,0.0,36627,378.2260673547552,1498125,0,53696,0,0,0,0,0,71,0.7200926727961512,0,0.0,0,0.0,0,0.0,0.0586,0.1532747436702239,0.3109215017064846,0.01822,0.3385391247763136,0.6614608752236864,24.34461906879521,4.3667936300070425,0.3060298249405662,0.2554570996325913,0.2202290901231899,0.2182839853036524,11.367992998317629,5.867743803808334,19.32416189878597,12063.289870194145,52.52625911719068,14.185288597574615,15.967749227716864,11.30841994688796,11.064801345011244,0.5794251134644478,0.799492385786802,0.711864406779661,0.5888125613346418,0.1267326732673267,0.7380191693290735,0.8951965065502183,0.8661202185792349,0.7312775330396476,0.154228855721393,0.5205925925925926,0.738950276243094,0.6580952380952381,0.547979797979798,0.1199011124845488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.0048959484252886,0.0071332176595334,0.0094777582511351,0.0116741409642352,0.013969637420708,0.0160068513401914,0.0181365394625378,0.0203474706182933,0.0226028588677083,0.0247988932725316,0.0269499178981937,0.0289884868421052,0.0308770990558752,0.0328176567656765,0.0348885261483149,0.0368254362541141,0.0388739112401493,0.0408,0.0428898605038517,0.057602436785446,0.0718490250405144,0.0856232576662684,0.0989062943234469,0.1112281884852061,0.1265270321680686,0.1378678029339438,0.1489940878737612,0.1593326292657428,0.1687243679662487,0.1818426202714037,0.1937389951713782,0.2050633461074984,0.2155655950588184,0.2250787621985356,0.2350854313565129,0.2439784862421077,0.2530751964085297,0.2615536112463072,0.2693867294139148,0.275171657723155,0.2812554673011652,0.2875243319766413,0.2931294061417134,0.2980849594825393,0.3031639737052282,0.3083494419155702,0.3121703853955375,0.3158050945879681,0.319778601667061,0.3182732809272127,0.3170049369171695,0.3155531231142733,0.3142400598854116,0.3134482860607495,0.3116107607470371,0.3089561399367357,0.3088876193585244,0.3100176522506619,0.3104506742370475,0.3123032504423954,0.313102554536708,0.3137581794690118,0.3151002227171492,0.316157456182358,0.3171041051923176,0.3181277270924236,0.3209563994374121,0.3246989638756651,0.3269769829049705,0.3292765996094637,0.3341466001909409,0.3378149148708927,0.3391976946993251,0.3449575871819039,0.3494617295634686,0.3526082300749579,0.3566333808844508,0.3560022026431718,0.3554285714285714,0.0,2.166123521577706,54.600813233244814,176.2534668093838,248.591925660556,fqhc2_100Compliance_implementation_low_initial_treat_cost,87 -100000,95814,46068,437.2325547414784,5738,58.72836954933518,4522,46.68420063873756,1778,18.233243576095354,77.3497797498425,79.68189917468891,63.33168066437421,65.05937936370904,77.12622320814025,79.4603947276316,63.248476608167394,64.97941248322596,0.2235565417022513,221.5044470573133,0.0832040562068172,79.96688048308442,170.43312,119.89526652817771,177879.14083536854,125133.34849622993,420.75465,278.60920114900387,438645.4380361951,290289.8231458908,399.05782,194.1881559712376,413288.41296678985,200260.31704918423,2971.77695,1371.3446542110491,3067039.159204292,1396733.9579217744,1083.88098,483.6004440560988,1114760.3794852528,488282.8758547442,1742.75588,734.9033567022242,1787369.2571023025,738297.83476419,0.38362,100000,0,774696,8085.415492516752,0,0.0,0,0.0,36366,379.0260295990148,0,0.0,36386,376.5211764460309,1498022,0,53749,0,0,0,0,0,69,0.7201452814828732,0,0.0,0,0.0,0,0.0,0.05738,0.1495751003597309,0.3098640641338445,0.01778,0.3302279154882715,0.6697720845117285,24.25017560808019,4.36466992130105,0.3248562582927908,0.2390535161432994,0.2162759840778416,0.2198142414860681,11.19609754646222,5.765766107224899,18.88223139952134,12069.158954061491,51.67338838642145,13.063701879832523,16.66376310145066,11.087075239286708,10.858848165851551,0.5703228659885007,0.8066604995374653,0.7140912185159973,0.5644171779141104,0.1066398390342052,0.7315914489311164,0.9497607655502392,0.8668407310704961,0.6680161943319838,0.1395348837209302,0.5078244860386621,0.7164404223227753,0.6602209944751382,0.5294117647058824,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198330530623,0.0045322274833463,0.0066170052976637,0.0088591776813743,0.0109754857084731,0.0130339595743597,0.0153548123980424,0.0175882731235262,0.019920888825291,0.0218937757807142,0.0236901723201197,0.0259048205760049,0.0281939231916096,0.030253104598719,0.0321728815307648,0.0342009278680732,0.0363013415038092,0.0385118035099365,0.040956269675529,0.0428309665597801,0.0571911448661506,0.0710939623983102,0.0849099122705881,0.0982722744183113,0.1103814653582232,0.1259119842662888,0.1376139003511154,0.1486961149547631,0.1592373017144688,0.1690353859850475,0.1813098008792345,0.1932059218215661,0.2047382848192142,0.2146128704321115,0.2256971563720367,0.2349623851889604,0.244727621683144,0.2538265162676143,0.2624974471850961,0.2703188505352338,0.2766956602202276,0.2824811203853078,0.2882352245443471,0.2946374052656154,0.299623740745236,0.3047867625332414,0.3110183576811087,0.3147590169978514,0.3180965442289529,0.3214507170468488,0.3203862574241424,0.3196447015079529,0.3175860416607943,0.3159098475746565,0.3148183940173354,0.3124004411224114,0.310318628614844,0.3106311747136245,0.310472644039424,0.311877120914449,0.3128266611715779,0.3132263420033204,0.3138067432661518,0.3146709527636396,0.3147636992055301,0.3157620856533278,0.3167391242576649,0.3187411930483795,0.3218422889043963,0.3248986659320766,0.3256035146519317,0.328462918029328,0.3326213958163201,0.3356995649187085,0.3377427526034337,0.338779828376631,0.3427744784528704,0.3416683336667333,0.3402005963675792,0.3335895465026902,0.0,1.938466203939669,55.62835015610489,172.02170917040988,238.86496946355052,fqhc2_100Compliance_implementation_low_initial_treat_cost,88 -100000,95793,45892,435.3867192801144,5891,60.12965456766152,4600,47.37298132431388,1811,18.435585063626775,77.41775944651599,79.74423059878897,63.37436231324406,65.09431609678595,77.18633535826537,79.5184883286138,63.28645706309121,65.01168376808498,0.2314240882506197,225.742270175175,0.0879052501528505,82.63232870096715,170.68678,120.07465566628476,178182.9361226812,125348.04804764935,424.48587,281.44220203663235,442440.815090873,293115.0310915087,404.77926,197.4522145957324,418555.1136304323,203078.50250539067,3030.83866,1402.9409659024286,3120919.9419581806,1421531.0732103528,1092.464,493.4277419538284,1122490.014928022,497177.29108721,1772.27288,755.9498483910004,1805329.115906173,750767.9561270081,0.38141,100000,0,775849,8099.224369212781,0,0.0,0,0.0,36604,381.42661781132233,0,0.0,36969,381.9068199137724,1496382,0,53730,0,0,0,0,0,80,0.835134091217521,0,0.0,1,0.010439176140219,0,0.0,0.05891,0.1544532130777903,0.3074180953997623,0.01811,0.3428155810570551,0.6571844189429449,24.35384881362681,4.250455378937266,0.3269565217391304,0.2365217391304347,0.2143478260869565,0.2221739130434782,11.209039517448636,5.983505010462378,19.41894517631116,11997.620873859612,52.549665776644815,13.284632723142192,17.010163438377827,11.044188665739192,11.21068094938561,0.5654347826086956,0.7922794117647058,0.6974734042553191,0.5892494929006086,0.1066536203522504,0.7314814814814815,0.9104477611940298,0.8971291866028708,0.721030042918455,0.1604938271604938,0.5003026634382567,0.7230320699708455,0.6206261510128913,0.548472775564409,0.0898587933247753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022478963942526,0.0047337637983639,0.0069101277511136,0.0090796449391643,0.0113987635239567,0.0137220570870149,0.0157170522882478,0.0179227565934514,0.0203193033381712,0.0224853645556146,0.0246004981600877,0.026597273548493,0.0286181268695839,0.0305145469145716,0.0326555443278134,0.0348798777086905,0.036707786562901,0.0389400348345359,0.0409727921544998,0.0428730570217905,0.0572817762567559,0.0704973392298926,0.0841283153370374,0.0966738806126951,0.1094538368357297,0.12541602831634,0.1368292812119286,0.1488400280689816,0.1592880694004289,0.169025401484878,0.1823246609376512,0.194183043962099,0.2059203596520757,0.2158644186249672,0.2244135582046915,0.2339691109439306,0.2437936838819713,0.2519880492407224,0.2593154859687085,0.2667642652087884,0.2733784689326894,0.2794922992491914,0.2850832122650981,0.2908357472887888,0.2958252427184466,0.30074132453267,0.3051764647070586,0.3098194202640708,0.3136306622011302,0.3166164017331525,0.3157944239166946,0.3151441845121918,0.3142567738668017,0.3127867055191714,0.3117804154302671,0.3092830812059287,0.307345971563981,0.3073748341767798,0.3085917554549477,0.3095005071445095,0.3108486864232594,0.3108668724563024,0.3126133828221115,0.3140444444444444,0.3158600862482031,0.3164248072479946,0.3171914893617021,0.3195092178158941,0.3238035396376584,0.3273983418870904,0.3321713147410358,0.3365542003273668,0.3418498340534786,0.3414652567975831,0.3442130932282873,0.351751064836725,0.3496072693670106,0.3534047282279248,0.3592862935928629,0.3603192702394527,0.0,2.4801552961967603,56.55229050940952,172.80241509930516,243.5781666502305,fqhc2_100Compliance_implementation_low_initial_treat_cost,89 -100000,95712,45126,428.2848545636911,5821,59.47007689735874,4601,47.39217652958877,1829,18.618355065195587,77.3893283971574,79.74894782023156,63.35181630130408,65.09310325775203,77.15721544487407,79.52157174332184,63.2661163177948,65.01211907685199,0.2321129522833303,227.37607690972084,0.0856999835092793,80.984180900046,171.31356,120.48444600030452,178988.59077231694,125882.27808457092,421.98431,278.3839343623071,440167.0323470411,290133.20624614164,395.18232,192.7479826884047,408704.5511534604,198162.81975911357,3037.28945,1393.7003457859275,3133787.97851889,1416564.3239990051,1106.11819,497.3100212554536,1139989.7818455363,503907.6177397751,1780.77236,744.2031773721307,1817327.6496155127,743296.336180705,0.37772,100000,0,778698,8135.845035105315,0,0.0,0,0.0,36540,381.08074222668,0,0.0,36125,373.2133901705115,1497125,0,53706,0,0,0,0,0,63,0.6477766633233032,0,0.0,0,0.0,0,0.0,0.05821,0.1541088637085672,0.3142071808967531,0.01829,0.3379569190600522,0.6620430809399478,24.12414573727946,4.333600098185641,0.3168876331232341,0.2369050206476853,0.2240817213649206,0.2221256248641599,11.268943612508725,5.93677309473621,19.32652697126296,11927.695511292408,52.06982682925719,13.235642237607513,16.32618016579574,11.5341628377598,10.973841588094135,0.5668332971093241,0.7990825688073394,0.7016460905349794,0.5829291949563531,0.1105675146771037,0.7582938388625592,0.931350114416476,0.896457765667575,0.7290076335877863,0.165,0.4941529235382308,0.7105666156202144,0.6361136571952337,0.5331599479843954,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471181016235,0.0044695794946638,0.0069991783573232,0.0093214057248459,0.011406612175186,0.0137511959774443,0.0157651231045165,0.0177445358257994,0.0197921669204123,0.0219484492832219,0.0240188543908187,0.0262140006361127,0.0285141800246609,0.030488934637159,0.0323106275460217,0.0345262331166616,0.0366190767064572,0.0387328326625451,0.0405691952684863,0.0423468377902555,0.0565255529333138,0.070059228563655,0.0840561773004268,0.0962790061928944,0.1080705009276437,0.1228307653260858,0.1348728175318751,0.1459125121096952,0.156099437007916,0.1661376796054042,0.1786787271846228,0.1902217414818821,0.2013218540742673,0.2120105409335943,0.2220425138632162,0.2322194038612775,0.2414258769433377,0.2508604206500956,0.2584078427812826,0.2658129252479897,0.272273163511904,0.2792388433036444,0.2854474524175434,0.2907284371820195,0.2962733748346621,0.3012811834639952,0.3063562130325501,0.3106555501893698,0.3145507711417037,0.3178721553848384,0.3163480527157193,0.3150065926821228,0.3135164742563411,0.3117666584883603,0.3109055602496257,0.3078766966425943,0.3061214835372776,0.3063672615545532,0.3062057702776266,0.3075690971542473,0.3087944110285052,0.3099702292935865,0.3099502071216369,0.3106135024111448,0.3120255597194196,0.3123183139534883,0.3138729636146903,0.3179017172886234,0.3233137829912023,0.3266416880299743,0.3309744148067501,0.3338110403397027,0.3362302411990679,0.3386656557998483,0.3423846659776379,0.3469026548672566,0.3475952055833712,0.3602808425275827,0.3557103064066852,0.3536490683229814,0.0,2.6377944032038387,54.76789009771374,168.85439384683673,249.4916687284005,fqhc2_100Compliance_implementation_low_initial_treat_cost,90 -100000,95660,45478,431.1206355843613,5749,58.71837758728832,4501,46.341208446581646,1774,18.06397658373406,77.35982293729873,79.73383050415187,63.33991942654043,65.08908950264714,77.13780634268949,79.51633274734235,63.256456252215365,65.01000153794828,0.2220165946092436,217.49775680952155,0.0834631743250682,79.08796469885715,170.49098,119.87679885054702,178225.98787371942,125315.49116720364,421.84316,278.8167576651912,440286.8910725486,290771.5217072873,396.52388,193.36661254792432,409485.5425465189,198285.0918200308,2954.69291,1359.2412119008875,3045393.14237926,1377557.371838686,1076.81788,475.7471122399545,1107679.646665273,479338.8900689466,1743.1641,735.5598653893996,1778099.9790926196,733676.8273694373,0.37958,100000,0,774959,8101.181266987247,0,0.0,0,0.0,36505,380.8906544010036,0,0.0,36124,372.6740539410412,1498378,0,53759,0,0,0,0,0,79,0.8153878319046624,0,0.0,3,0.0313610704578716,0,0.0,0.05749,0.1514568733863744,0.3085754044181596,0.01774,0.3307984790874524,0.6692015209125475,24.57353417642647,4.3167537044992015,0.3183736947345034,0.2390579871139746,0.2157298378138191,0.2268384803377027,11.259491388362344,5.9408367584710255,18.84241227532118,12012.1161701512,50.92321123269719,12.975621450541892,16.202973122192265,10.511378032326258,11.233238627636764,0.5594312375027771,0.7881040892193308,0.7076064200976971,0.568486096807415,0.1018609206660137,0.7142857142857143,0.9127358490566038,0.875,0.69,0.0978723404255319,0.4987631416202844,0.7070552147239264,0.6409756097560976,0.5369649805447471,0.1030534351145038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506825454692,0.0047232442403786,0.0070106021407193,0.0091710507606995,0.0114486741499918,0.0138124077561199,0.0160588552970786,0.0184263151450842,0.0206132913849108,0.0228844422620509,0.0250783699059561,0.0270736086175942,0.0290254280839517,0.0310949115545396,0.0330379890457869,0.0353160043408609,0.0373825003105718,0.0391847741533993,0.0414708695471368,0.0434166371386289,0.0578353531132469,0.0714547491649302,0.0851351918716936,0.0980796548639974,0.1098875598590806,0.1252275132275132,0.1374039318924886,0.1482972762811704,0.1593294990485557,0.1694824292123736,0.1822413793103448,0.194011262724713,0.2048447123860099,0.2146570499841303,0.2252722447945914,0.2349996123215294,0.2442386027565426,0.252776778487274,0.2604756126603236,0.2671405352196506,0.2739361702127659,0.2809898026008046,0.2862382281955421,0.291945625486556,0.2967644882262311,0.3014657920322942,0.3063994101695762,0.3113341804320203,0.3150334234106101,0.3190364432255683,0.317141359426874,0.3155102265229821,0.3141984173917941,0.3127822586463127,0.3115864686175101,0.3088340951128911,0.3063496078927397,0.3063849333945797,0.3069535348702086,0.3076058047587598,0.3093005409250005,0.3101508212255212,0.311012496598497,0.3119251718903473,0.3125554622856457,0.3126849016453003,0.3133630100087896,0.3175895765472312,0.321051896347,0.3242270894283229,0.3277371931575842,0.3292080522653636,0.330379746835443,0.3334098034717442,0.3322352941176471,0.3333333333333333,0.3289977046671767,0.336154776299879,0.3368307775087436,0.3417238749046529,0.0,2.8057771450829323,54.745886659540936,159.20777278870497,245.98788548764912,fqhc2_100Compliance_implementation_low_initial_treat_cost,91 -100000,95858,46349,439.6085877026435,5769,59.08740011266665,4517,46.589747334599096,1775,18.151849610882763,77.34109898624328,79.63154418814568,63.34986309044478,65.04393133145051,77.12103397975287,79.41459143739303,63.266921856705125,64.96481694818593,0.2200650064904152,216.95275075265383,0.0829412337396533,79.11438326458153,170.03712,119.71280382825006,177384.38106365665,124885.5638843394,424.29455,281.6150065265623,442089.3822111874,293244.6916549085,405.67292,198.38503317307524,420056.3750547685,204522.44984953903,2934.96986,1359.4642928675137,3027575.017212961,1383992.2519429931,1051.51988,474.25686321535824,1084302.071814559,482142.3692418171,1737.4893,741.2721733058046,1777974.5665463498,743035.0698205907,0.38371,100000,0,772896,8062.926411984393,0,0.0,0,0.0,36586,381.0949529512404,0,0.0,36872,381.5018047528636,1495135,0,53707,0,0,0,0,0,86,0.8971603830666194,0,0.0,0,0.0,0,0.0,0.05769,0.1503479190013291,0.3076789738256197,0.01775,0.3302479338842975,0.6697520661157025,24.3832286255311,4.277595750230567,0.3254372371042727,0.2523798981624972,0.2014611467788355,0.2207217179543945,11.287579923452396,5.873852571263882,19.12753759080291,12063.051831467035,51.5163940024826,13.682252064043174,16.58356537488774,10.180296923726646,11.070279639825026,0.5676333849900377,0.7885964912280702,0.6959183673469388,0.589010989010989,0.1063189568706118,0.7274900398406374,0.911007025761124,0.8649350649350649,0.7130434782608696,0.1267605633802817,0.5061312078479461,0.7152875175315568,0.6359447004608295,0.5470588235294118,0.1007653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024808870436939,0.004813002198782,0.0070697542322165,0.0091883769569719,0.0114548817921248,0.0135044370267849,0.0158215919394439,0.0176587605202754,0.0198047106408187,0.0220546866209069,0.0241838835568029,0.0260812487820887,0.0282756283187658,0.0303616441174957,0.0325296239052035,0.0345560762132815,0.036615756873856,0.0387301324160225,0.0410610465116279,0.0431249739897623,0.0576132974618865,0.071768234691638,0.0849298710549195,0.0985843012875716,0.1109391124871001,0.1266939172132619,0.1380490285399495,0.1491436044100917,0.1594386938427062,0.1694782645974449,0.1829383784249155,0.1943507223808288,0.205845906343754,0.2153303021029161,0.2258540073711425,0.236509466360907,0.2458242677824267,0.2552564376596056,0.2632367292286044,0.2695642214968791,0.2759885240970824,0.2830830760595004,0.2886141834743005,0.2939548591144336,0.2992215867001834,0.3037373961492,0.3071494707339656,0.3115715303215303,0.3158705102991408,0.3195776971296601,0.31781098546042,0.3158669454685522,0.3150499598348295,0.3133231063127731,0.3116581583294884,0.3100614757239878,0.3078909839961971,0.3081741360602374,0.3098340419695515,0.3105378350256539,0.3119233231649908,0.3119815851093384,0.3130416491375684,0.3132570735105737,0.3147749534428132,0.3163602074493163,0.3171749506959728,0.3200618843142208,0.3237771071654151,0.3269230769230769,0.3303652553152825,0.3328389044869417,0.3345706196917269,0.3383054440826834,0.3412773172569706,0.3430873119298661,0.3442472460220318,0.3495983935742972,0.3531173427715763,0.3577981651376147,0.0,2.038670129118492,55.07571408540012,170.50504488890107,240.74487627448357,fqhc2_100Compliance_implementation_low_initial_treat_cost,92 -100000,95650,45848,435.3267119707266,5723,58.67224255096706,4478,46.304234187140615,1717,17.637219027705175,77.31769350596971,79.73998408775009,63.289715480586615,65.08127376752856,77.11022788943298,79.5332892839255,63.21323142534526,65.00761108204836,0.2074656165367372,206.6948038245897,0.0764840552413517,73.66268548020116,170.95496,120.30301555902264,178729.2420282279,125773.82638477942,425.95504,281.4535299757342,444805.8233141662,293737.6673185701,399.64689,194.98057967512457,414515.87036069005,201365.81797838872,2912.50083,1324.7264695795118,3014084.0669106115,1354520.5862270277,1034.58968,454.1054355099468,1069328.280188186,462565.7571262099,1680.2827,697.1684901946668,1727507.0569785675,702700.6267052254,0.38063,100000,0,777068,8124.056455828541,0,0.0,0,0.0,36887,385.0914793518034,0,0.0,36335,376.62310507056975,1491112,0,53387,0,0,0,0,0,67,0.6900156821745949,0,0.0,0,0.0,0,0.0,0.05723,0.1503559887554843,0.3000174733531364,0.01717,0.3309964947421132,0.6690035052578869,24.69602727653792,4.290813733067823,0.325591782045556,0.2478785171951764,0.2072353729343456,0.2192943278249218,11.379821578936635,6.045978899163588,18.159883122775263,12015.65302088848,50.4515042300286,13.299981632451052,16.26434856426627,10.224903225826775,10.66227080748449,0.5645377400625279,0.7864864864864864,0.6927297668038409,0.5765086206896551,0.1120162932790224,0.7575250836120402,0.9307875894988068,0.8556430446194225,0.7464788732394366,0.1693989071038251,0.4942108470444851,0.6989869753979739,0.6350974930362117,0.5258741258741259,0.0988735919899874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868790015398,0.0045531983937046,0.0068934010152284,0.0092175733493226,0.0113850254865852,0.0134168704156479,0.015679513598433,0.0177363656797237,0.0199568114132492,0.022141129197589,0.0244220424588346,0.0266829815018559,0.0287826830197617,0.0307725636237969,0.0328260128328322,0.034490608992601,0.0367874250876138,0.0387659707073854,0.0412013862148633,0.0432275154346737,0.0576364358422339,0.0716927751873002,0.0842620505656334,0.0973331086347454,0.1096619530895227,0.1249774934598642,0.1372413573227626,0.1482172360496722,0.1591395318985067,0.1686788399570354,0.1812661122436872,0.193455412287355,0.2045219399035058,0.2142997919632103,0.2233938232021066,0.23341872095989,0.2434866157214997,0.2525781320363865,0.2606879802072339,0.2673478270829992,0.2749609397604305,0.280894014175107,0.2877466239007705,0.2937439315296741,0.2986083257368581,0.3029183143008487,0.3076115091720748,0.31186117467582,0.3162826818534817,0.3210632597304895,0.3192368796617928,0.317434346212017,0.3149404577573829,0.3131918086964051,0.3119883734725353,0.3098251036677735,0.3077896401739818,0.3088601375696037,0.3088373043581927,0.3090508510713905,0.3093388475940312,0.3104552060013353,0.3118656731906768,0.3122171945701357,0.3129412325892005,0.3134119838559454,0.3147661438462625,0.3161366606509428,0.3186197780792375,0.3208387529068621,0.3257111746291003,0.3295761231941578,0.3284763220700917,0.3326512050932242,0.3375468164794007,0.3407136968554941,0.3390629753574688,0.3402860548271752,0.3469553450608931,0.3545351900639819,0.0,1.9581104060864687,52.48542764779612,160.2043343920838,251.98473684514892,fqhc2_100Compliance_implementation_low_initial_treat_cost,93 -100000,95723,45642,433.6052986220657,5671,58.20962569079531,4444,45.96596429280319,1701,17.487960051398307,77.34880342590687,79.70635572727286,63.338894218876014,65.0771342749791,77.13282865770314,79.48900161951565,63.25885626040691,64.99831306410178,0.215974768203722,217.35410775721675,0.0800379584691057,78.8212108773223,172.07278,121.04983195476493,179761.16502825863,126458.46030187616,421.31753,278.11951439009533,439688.5805919163,290092.33349361725,398.79134,193.6180276234439,413478.2445180364,199899.729820512,2891.05064,1324.7580575947952,2991928.084159502,1356044.8651163771,1028.98534,456.4198198129601,1064653.6046718133,466760.5694416734,1656.27392,698.7778608495629,1704616.487155647,708672.3897723475,0.37913,100000,0,782149,8170.962046739029,0,0.0,0,0.0,36398,379.7624395390868,0,0.0,36288,376.0015879151301,1492443,0,53489,0,0,0,0,0,79,0.8148511851906021,0,0.0,0,0.0,0,0.0,0.05671,0.1495792999762614,0.2999470992770234,0.01701,0.3334456613310868,0.6665543386689132,24.52370627436533,4.272122956383329,0.3188568856885688,0.2502250225022502,0.2220972097209721,0.2088208820882088,11.241532273063244,5.847982303012965,18.203309838037047,11975.926396070752,50.40524676714667,13.318032435301724,15.82771912483987,11.06928109993278,10.190214107072308,0.5672817281728173,0.789568345323741,0.6951305575158786,0.5602836879432624,0.1131465517241379,0.7361455748552522,0.9090909090909092,0.8866279069767442,0.7075098814229249,0.1756097560975609,0.5041731066460587,0.7205673758865249,0.6337371854613234,0.5095367847411444,0.0954356846473029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379066965054,0.0043182094635689,0.0067069149206027,0.0089090705919401,0.0110724743777452,0.0131928538708199,0.0153098147940513,0.0177197101153414,0.0200091972816923,0.0221483035668594,0.0241170079740893,0.0259865551393236,0.0280673616680032,0.0302777606193505,0.032235769841761,0.0342322793965695,0.0363425518476719,0.0386379199435579,0.0406737367436057,0.0423651992706433,0.0564037762646727,0.0706429027430377,0.0846726814939152,0.0976076756370063,0.1092090413357381,0.1244142628967939,0.1365059154331794,0.147410443391707,0.1578227658778911,0.1680308085088123,0.1799556197082965,0.1927034308156707,0.2041870581837955,0.2144278715772898,0.2243575640235853,0.2344052907356737,0.2432547127669078,0.2522707064795327,0.2609174395241392,0.267788417483735,0.2746432415541127,0.2805314495567355,0.2861166002058903,0.2913367907918219,0.2966694178763898,0.3017790089258233,0.3061527890561559,0.3094161288683368,0.31325768345956,0.3170243317656668,0.3158999192897498,0.3146875257760304,0.3141734943829715,0.3129432496064016,0.3120665330066087,0.310070522724839,0.3073030331783534,0.3064925703238912,0.307760532150776,0.3089456982921524,0.3096323419518756,0.3112887978572554,0.3126905885793057,0.3119309051955008,0.3131058642863998,0.3142879434099657,0.314792663476874,0.3194457536054294,0.3229287090558767,0.3267585551330798,0.3307057912243131,0.3331553657234383,0.3361067005398539,0.3364816094601858,0.3390951166524983,0.3392984967788117,0.3417388613861386,0.343139271754783,0.3540563144689155,0.3495746326372776,0.0,1.734418400747302,53.40349422858178,162.32120026827866,245.31235489856488,fqhc2_100Compliance_implementation_low_initial_treat_cost,94 -100000,95632,46009,436.4438681612849,5722,58.41141040655848,4485,46.26066588589593,1762,17.996068261669734,77.26744378178137,79.68191052782802,63.28338998351626,65.06920671218336,77.04429179471252,79.46109236081888,63.20026969665616,64.98918806858751,0.2231519870688458,220.81816700914203,0.0831202868600939,80.01864359584943,172.03626,121.07316301580204,179894.03128659862,126603.1903712168,426.42114,282.53081228260754,445231.44972394174,294768.91864920483,404.12625,197.4140349484668,417959.3127823323,202946.7148999074,2938.18936,1353.4023056633953,3035255.9917182536,1378083.649472347,1061.79851,475.17114471822,1093260.8541074116,479839.2323889698,1724.26354,731.4494813771796,1764542.9981596118,734355.5700663861,0.38131,100000,0,781983,8177.001422118119,0,0.0,0,0.0,36830,384.4842730466789,0,0.0,36747,379.6532541408733,1482605,0,53173,0,0,0,0,0,75,0.7737995649991635,0,0.0,0,0.0,0,0.0,0.05722,0.1500616296451705,0.3079342887102412,0.01762,0.3439906260462002,0.6560093739537998,24.211919695851023,4.334569845251692,0.325752508361204,0.2363433667781493,0.2207357859531772,0.2171683389074693,11.249931421575695,5.826772501922786,18.78873926429888,12052.650673087724,50.90302135538135,12.616136846271129,16.563629398022794,10.949981256040727,10.773273855046703,0.5576365663322185,0.7867924528301887,0.6858316221765913,0.5646464646464646,0.108829568788501,0.7176669484361792,0.9247311827956988,0.8609625668449198,0.7061611374407583,0.1504424778761062,0.5003028467595396,0.7122093023255814,0.62557497700092,0.5263157894736842,0.0962566844919786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002593876020832,0.0050294058000405,0.0074723846653671,0.009460612958296,0.0118210765114599,0.0142379924226993,0.016304015335359,0.0185300513532552,0.0207773085614372,0.0230207575959283,0.0250346136095584,0.0269959321198175,0.0290616930879463,0.0310252447192169,0.0330715000877365,0.0350781064232324,0.0372648935288756,0.0394004816075728,0.0414720659059467,0.0438395295981984,0.0591825430831774,0.0733234884427268,0.0865510832011929,0.0989164885383651,0.1108061314978252,0.1259159642509212,0.1379167507514524,0.1490445588345003,0.1594407539338703,0.1692872792885681,0.1814710957722174,0.1938230546738741,0.2048064259825636,0.2150564699702329,0.2244241863742458,0.2349513057159001,0.244117778373069,0.2525375284135664,0.2597302329806076,0.26726953890589,0.2742239872179319,0.2804187624283542,0.2863432994815709,0.2918475523469167,0.2965889475091779,0.3014496329652705,0.3057217979216226,0.3105102430334648,0.3153735539117254,0.318854364827732,0.3177717545208139,0.3164394878149525,0.3152374642288227,0.3139356593184054,0.313421730136762,0.3119116970718994,0.3097888127853881,0.3097754726890756,0.3110002903352518,0.3123304298157932,0.3125866786611192,0.3134597475678139,0.3133369715796986,0.3134882472658958,0.3151268595638149,0.3158815542093169,0.3161179991449337,0.320407585621285,0.3235914749947246,0.3251844466600199,0.3309881822780153,0.3354651475251249,0.335691523263225,0.340805793082197,0.3470297969254128,0.3491223851887473,0.3522462303746308,0.3567311650885137,0.3597717546362339,0.3594191206131504,0.0,2.513662269999122,51.22470947013408,173.25331815561304,243.01378826905704,fqhc2_100Compliance_implementation_low_initial_treat_cost,95 -100000,95831,45800,435.1932047041145,5890,60.08494119856831,4654,47.90725339399568,1775,18.167398858406987,77.40182060844235,79.71425336513593,63.36325590393732,65.07513572402773,77.17951250528147,79.49436219395999,63.28042091102919,64.9957208432487,0.2223081031608842,219.89117117594503,0.0828349929081326,79.41488077902648,170.73936,120.04242184606753,178167.14841752668,125264.70750181832,422.54421,278.5927200461033,440281.49554945686,290079.9717322381,401.40132,195.5367529452046,414057.6014024689,200416.25297488613,3047.47699,1394.4603635409555,3140993.5198422223,1416738.7441722036,1106.18533,489.6464604981418,1138258.7367344596,494898.1649968608,1743.31686,730.1828179706897,1785818.84776325,732969.8805952689,0.38202,100000,0,776088,8098.5067462512125,0,0.0,0,0.0,36515,380.3675219918398,0,0.0,36650,377.7065876386556,1499271,0,53883,0,0,0,0,0,75,0.7721927142573906,0,0.0,1,0.0104350366791539,0,0.0,0.0589,0.154180409402649,0.3013582342954159,0.01775,0.3372523755838299,0.6627476244161701,24.4486362647522,4.373632404254414,0.3173614095401805,0.2449505801461108,0.2165878813923506,0.2211001289213579,11.390865006974629,5.897503452915184,18.78395430900225,12028.814164478754,52.74446969168645,13.815277910934055,16.535505781528247,11.229115142036363,11.164570857187783,0.570477009024495,0.7885964912280702,0.7007447528774543,0.5932539682539683,0.119533527696793,0.7405956112852664,0.9146067415730336,0.8670212765957447,0.736,0.1365853658536585,0.5062166962699822,0.7079136690647482,0.6439600363306085,0.5461741424802111,0.1152912621359223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136535774317,0.004287060778968,0.0066550338838615,0.0088058746457844,0.0108274621038826,0.0132130787084164,0.015267797992152,0.0174627474994896,0.0196353006112394,0.021739352936962,0.0238532110091743,0.0259884222194851,0.0281024186170814,0.0302499897038836,0.0322823519704611,0.0342319256878932,0.0360939456986409,0.0381592318380721,0.0400718759412943,0.0418787140820298,0.0565781926265839,0.0695170395149487,0.0832713365117619,0.0960324379969957,0.1085635446397539,0.1244045921654362,0.1366568852823712,0.1479792503773625,0.1583884738527214,0.1680877501178285,0.1810887265921631,0.1925807462476902,0.2037548075878403,0.2147766135288397,0.2254309207633453,0.2357701078173083,0.245109192710076,0.253204839870457,0.2614002450201915,0.2682896122327519,0.2760040241914035,0.2832480071066227,0.2901436764618932,0.2947088489320667,0.2987627939730218,0.3031060643381447,0.3070218220471456,0.3118946538881968,0.3162299195488527,0.3202841815282006,0.3188822849151494,0.3176359039190897,0.3161875307513882,0.315,0.3135683602429269,0.3111759850823831,0.3086558205654715,0.3089022374257328,0.309924184342789,0.3109663873022651,0.3117193480330837,0.3128728074492588,0.3137528943031769,0.3149983298073711,0.3161671490420265,0.3180840309997149,0.3189567285908473,0.3217638070290329,0.3246558633908346,0.3272461938944545,0.3297346337037877,0.3320430563656609,0.3365969999372372,0.3415834090221011,0.3439384101660328,0.3450984990619137,0.3437737570320815,0.3404858299595141,0.3427242888402625,0.349618320610687,0.0,2.559107217770733,55.59206037014141,170.47212147296253,253.5567245940248,fqhc2_100Compliance_implementation_low_initial_treat_cost,96 -100000,95691,45502,431.9737488374037,5635,57.70657637604372,4457,45.93953454347849,1695,17.305702730664326,77.32145341825886,79.70973682783037,63.3143933609397,65.08069485251266,77.1049002800917,79.49573511066977,63.23345200943403,65.00353267539978,0.216553138167157,214.001717160599,0.0809413515056647,77.16217711288209,171.48318,120.6822401328986,179204.89910231894,126116.39479662516,424.21291,280.60044766941064,442649.1310572572,292571.033960185,401.54587,195.5553370660232,415861.2617696544,201505.83259250096,2941.49866,1355.0153197876791,3033207.5430291253,1375373.661046544,1059.56428,473.2805692470411,1087820.2547784012,475183.2161420797,1662.62752,707.6984442463178,1698215.2971543823,704910.7318151965,0.37801,100000,0,779469,8145.677231923587,0,0.0,0,0.0,36704,382.8886729159482,0,0.0,36630,378.9384581622096,1490409,0,53449,0,0,0,0,0,70,0.7315212506923326,0,0.0,0,0.0,0,0.0,0.05635,0.1490701304198301,0.3007985803016859,0.01695,0.3442539466983534,0.6557460533016466,24.147768148847053,4.3021704406856935,0.3123177024904644,0.2418667264976441,0.2324433475431905,0.2133722234687009,11.00831902322221,5.672902080635463,18.241770280211707,11916.513742177693,50.75471948974848,12.992715889156823,15.853610630667063,11.43828282926722,10.470110140657368,0.5752748485528383,0.800556586270872,0.709051724137931,0.583011583011583,0.1156677181913775,0.7489779231398201,0.9301204819277108,0.8776595744680851,0.7161016949152542,0.1581632653061224,0.5095856524427953,0.7194570135746606,0.6466535433070866,0.54375,0.1046357615894039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986706654778,0.004391035391948,0.0067605976936819,0.0090141360352028,0.01120177437734,0.0133546573221416,0.0157561418358709,0.017827241168062,0.0202823582330631,0.0223350461645546,0.0245747854704272,0.0264844215325843,0.0286181604962401,0.0309337839787317,0.032958298926507,0.0350082712985938,0.0371237388908454,0.0389389347835111,0.0408190856524813,0.0426906801742646,0.0574368080217255,0.0713523019910809,0.0846881264496898,0.0976310499784258,0.1098484848484848,0.1251058425063505,0.1372191026144554,0.1483958928038856,0.1590445145086303,0.1690299467993821,0.1806752563992071,0.1926128798293947,0.2038849734621073,0.2132410051086825,0.2227135722614568,0.2324981454621951,0.241489314237273,0.2504833198453376,0.2581266936517115,0.2648920945675196,0.2716015123660203,0.2777050406808192,0.2831108586575783,0.2889543869738686,0.2947156199521479,0.2995606099767381,0.3048838430568406,0.3094545315934589,0.3121228176731323,0.3155371138773628,0.3140418095046044,0.3128491620111732,0.3121802439984258,0.3102055535521096,0.3079595563671997,0.3044177321797718,0.3034632240099988,0.3036888808699788,0.3049019775119862,0.3058943089430894,0.3061346708088483,0.3068874982726968,0.3085415577626764,0.309072625698324,0.3105313777350325,0.3116971279373368,0.3130091758854301,0.3160181337363053,0.3195195617054154,0.3214767229756523,0.3247172125562167,0.3269189878800765,0.3300626701272393,0.3327706590961405,0.3345609065155807,0.3359645975361799,0.3391398180977339,0.345973496432212,0.3541264145735578,0.3512157468159012,0.0,2.3980994055351563,53.19425595316238,167.9156242081299,240.1800993739309,fqhc2_100Compliance_implementation_low_initial_treat_cost,97 -100000,95698,45477,431.6600137933917,5812,59.17574034985058,4575,47.12742168070388,1853,18.99726222073607,77.3455376358958,79.73430360665266,63.32130932583449,65.08810435288827,77.11316743143536,79.50234514906657,63.23465448546554,65.00404331525684,0.2323702044604374,231.95845758608868,0.0866548403689506,84.0610376314288,170.72308,120.0957162469114,178397.29147944576,125494.03628802212,422.06748,278.7171087703382,440342.1283621392,290548.13391897856,397.69418,194.2429270255493,411253.12963698304,199690.0854265933,3042.05442,1403.5264500439107,3136585.748918473,1424448.7982305237,1103.55151,496.52665259949697,1137312.671111204,503018.4336350774,1824.69216,767.566985266983,1872156.1370143576,772059.5696464606,0.37814,100000,0,776014,8108.967794520262,0,0.0,0,0.0,36553,381.230537733286,0,0.0,36326,375.2534013250016,1497060,0,53651,0,0,0,0,0,60,0.6269723505193422,0,0.0,0,0.0,0,0.0,0.05812,0.1536996879462633,0.3188231245698554,0.01853,0.3350871423873726,0.6649128576126274,24.125649501835717,4.378715574360739,0.3158469945355191,0.2349726775956284,0.2122404371584699,0.2369398907103825,11.10093058926564,5.622104712183512,19.654987747644466,11965.209415403173,51.88360024222486,13.011710941876984,16.24119512060289,10.79972427144133,11.830969908303665,0.5578142076502732,0.7981395348837209,0.701038062283737,0.5736354273944387,0.1143911439114391,0.7326416600159616,0.908450704225352,0.8613333333333333,0.759825327510917,0.1524663677130044,0.4918723660445515,0.7257318952234206,0.6448598130841121,0.5161725067385444,0.1045296167247386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025734809876493,0.0046858359957401,0.0067516117569419,0.0087705034655175,0.0112415561162203,0.0135669179058871,0.0156739172555858,0.0178203059578031,0.0197155157427575,0.0220376647448566,0.0242554151624548,0.0263660640920295,0.028503538512179,0.0302536941244358,0.0324042063549395,0.0344881059454765,0.0367005738672854,0.0389509299236134,0.0408585601231268,0.0426660276313321,0.0577226347505509,0.0712940092937581,0.0850143789752093,0.0973600311451088,0.1092358972195266,0.1252221188018277,0.137575738282452,0.1476728086058153,0.1576848654600656,0.1674789068034951,0.180670547649849,0.1922081297995169,0.2035748886929449,0.2146429001302126,0.2240176114474408,0.2333687896113105,0.2426339285714285,0.2507481493148527,0.2587096847383408,0.2658256828224089,0.2725106146673299,0.2797905049158863,0.2858376204837088,0.2912645769976772,0.2964243681675342,0.3008464150386299,0.3055663147373024,0.3101575092969831,0.3143458281701776,0.3181716599403173,0.3164546771856384,0.3147688807882584,0.3126728919469212,0.3113991502844387,0.3103565666582792,0.3088825477240474,0.3070361126030773,0.3078210640322951,0.3091483188257382,0.3096959634370592,0.3094581668823496,0.3111093514925964,0.311623414798018,0.3121336852937229,0.3136207187041182,0.3151342746039617,0.3143500185179909,0.3165408805031446,0.3204381099487468,0.3226895428730291,0.3247054542146204,0.3294984625172304,0.3293142426525998,0.3334345351043643,0.3376990483369452,0.3425903758678477,0.3488659157537417,0.3493136652325343,0.3496426608026388,0.3486381322957198,0.0,2.5064902759623178,54.33583907098566,167.03479135706775,251.95067452774452,fqhc2_100Compliance_implementation_low_initial_treat_cost,98 -100000,95620,45675,434.2501568709475,5781,59.26584396569755,4544,47.02991006065676,1764,18.15519765739385,77.23812690061078,79.6695929887103,63.25655152000609,65.05433843201337,77.00807317769754,79.43861623065584,63.17040415533469,64.97014791582673,0.2300537229132402,230.97675805446727,0.0861473646713975,84.19051618663786,171.08278,120.32899309163798,178919.2219201004,125840.59787872618,424.00349,280.2632304130925,442938.24513700063,292614.05983381346,397.66835,192.8975277859741,412783.2357247438,199357.5835950781,2982.2848,1372.4178254581914,3089140.399498013,1405562.0735810385,1075.57378,476.4497813795007,1113280.2760928676,486868.762363522,1736.03722,739.9463715523616,1788166.178623719,749068.527648245,0.37946,100000,0,777649,8132.691905459109,0,0.0,0,0.0,36660,382.8696925329429,0,0.0,36177,375.2143902949173,1488614,0,53454,0,0,0,0,0,74,0.7738966743359129,0,0.0,1,0.0104580631667015,0,0.0,0.05781,0.1523480735782427,0.305137519460301,0.01764,0.3275094775012362,0.6724905224987638,24.433265737291247,4.359721243221792,0.3116197183098591,0.2517605633802817,0.2097271126760563,0.2268926056338028,11.145839484800238,5.567939078555271,18.999325126319984,11993.052454929017,51.834203633608624,13.814606829889314,16.01837259721943,10.693887052946318,11.307337153553576,0.559419014084507,0.7972027972027972,0.6871468926553672,0.5603357817418678,0.119301648884578,0.7290996784565916,0.921875,0.8519553072625698,0.6858407079646017,0.160377358490566,0.4954545454545455,0.7169540229885057,0.6313799621928167,0.5213204951856947,0.1086691086691086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020775904005188,0.0043917925207671,0.0065693282430346,0.0088836485978268,0.0110324051457417,0.0133052151145613,0.0152481003620786,0.0173150002043067,0.0198432993065073,0.0222875462190038,0.0243577115652959,0.026365812808894,0.0285811325415285,0.0305557560075461,0.0326431558837197,0.0345798067172981,0.0366150752101842,0.0387364178422288,0.0406495601936189,0.0424499760051745,0.0576575257969075,0.0717309747867457,0.085107947680832,0.0971805322969656,0.1095739962405221,0.1254011799722484,0.1369943056263811,0.1490380003197783,0.1594894454727337,0.1695776402852969,0.1818809616297639,0.193328057070373,0.2039139625602022,0.2141636168394293,0.224788943505191,0.2355584651916291,0.244368386909156,0.2525119253019385,0.2609204944786253,0.2680140093012574,0.2747789561625397,0.281464369891767,0.2870160534402771,0.2926738385720295,0.2974260852609257,0.3017109232062503,0.3067575540742414,0.3109970899065707,0.3150385904732205,0.3180187692755695,0.3177036206733561,0.3154335555279537,0.3137935902866017,0.3121640223139897,0.3107190710138455,0.3081388206388206,0.3048691398805742,0.3054979082254505,0.3062540738961885,0.3069250192510879,0.3074077551403624,0.3086997008301468,0.3104013104013104,0.3112814306844157,0.3121777263746325,0.3130387086663532,0.3143330855868732,0.3175513806581768,0.3204136184580754,0.3236481672076637,0.3259650881910578,0.3299543572869122,0.3307996733463157,0.3321442125237192,0.333146277590722,0.3380661816475006,0.3400120518228382,0.3438868976503385,0.3462377317339149,0.3535660091047041,0.0,1.8800950074380145,54.879279261780106,171.38144059870055,245.68999242902763,fqhc2_100Compliance_implementation_low_initial_treat_cost,99 -100000,95716,40735,381.5349575828493,7589,78.01203560533244,5911,61.13920347695266,2412,24.81298842408793,77.33641368994157,79.70995829059385,63.332022412709286,65.08873013601531,77.04025646652786,79.4136966989427,63.22408754088338,64.98340068910072,0.2961572234137009,296.2615916511453,0.1079348718259041,105.32944691459534,65.62138,45.93673973683438,68558.4228342179,47992.7491086489,195.79376,115.43505148696752,203950.6561076518,119995.39019225477,238.43126,113.25674865605762,244694.0114505412,114981.18594817602,4288.88028,1914.8664823395,4441278.500982072,1961017.5677870696,1446.93798,628.0697634392324,1495400.2465627482,639905.1155832845,2385.87508,990.3122809571636,2457308.663128421,1005074.159085266,0.38188,100000,0,298279,3116.291947009905,0,0.0,0,0.0,16142,167.9969910986669,0,0.0,22466,230.3585607421957,2186874,0,78490,0,0,2629,0,0,42,0.4283505370053074,0,0.0,0,0.0,0,0.0,0.07589,0.1987273489054153,0.3178284358940572,0.02412,0.3074899799599198,0.6925100200400801,25.668726455025443,4.605550713968452,0.3288783623752326,0.1970901708678734,0.2278802233124682,0.2461512434444256,10.919821462839636,5.363166182468846,25.78171840677319,13337.967927314545,66.70420984402693,13.561878708778517,22.000451127026235,15.022352613812345,16.11952739440984,0.5386567416680764,0.7699570815450644,0.691358024691358,0.5760950259836675,0.1147766323024054,0.6878491620111732,0.913793103448276,0.8423326133909287,0.7777777777777778,0.1238095238095238,0.4909578030810448,0.7086903304773562,0.6441593517893315,0.5168107588856868,0.1122807017543859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989380244011,0.0046957879897362,0.0070358901467079,0.0091369217009512,0.011352654547674,0.0137392296254048,0.0156538410548751,0.0177047171737798,0.0199053295574207,0.0221219007841451,0.0241814789757467,0.0264778957310938,0.0285987536249768,0.0310549409801619,0.0333608502734495,0.0353916440989808,0.037389854727316,0.0394850141610731,0.0412093622682298,0.0431449344805316,0.0577762462669423,0.0717327390480973,0.0852393686749515,0.0978701932174169,0.1102643561851758,0.1261506917361573,0.1404901732143235,0.1537528978879979,0.1670135886679262,0.1783820268055153,0.1925523327772695,0.2055630055803088,0.2184236549558262,0.2297936488863157,0.2409401577917939,0.2521119908001238,0.263201292551117,0.2739328822855087,0.2838225457183996,0.2934178315678693,0.3016817892850951,0.3088893302335362,0.3167555046034203,0.3244252873563218,0.330748413247412,0.3380326778876343,0.3443453460590671,0.3512103904033786,0.3574296148566396,0.3629086586090747,0.3640249164059972,0.365471656455263,0.3664496264177059,0.3670436421632594,0.3671133528323285,0.3676018210901932,0.3680979643765903,0.3695211072436035,0.3704104413532543,0.3712674842439804,0.373133485227936,0.3754146225197132,0.3765067210804215,0.3774550515139952,0.3790585789231922,0.3792624433203155,0.3808095952023988,0.3832367734131279,0.3860352845124418,0.3875030176229178,0.3910583433818755,0.3909263787014398,0.3909120415449529,0.3929522317932654,0.3908345393150024,0.3905042326094958,0.3866036249014972,0.3911599916995227,0.3953553441522104,0.3962920046349942,0.0,2.4054709923031243,63.19454942892343,223.9612833298554,344.5809272346759,fqhc2_80Compliance_baseline,0 -100000,95604,40726,382.3375590979457,7529,77.42353876406845,5874,60.79243546295134,2433,24.978034391866448,77.26635035352784,79.70460599348358,63.26822878755484,65.0722542682131,76.96946762870843,79.40883985945148,63.15948008028956,64.96742892971956,0.2968827248194117,295.7661340321067,0.1087487072652777,104.8253384935407,65.07204,45.55252677171469,68064.13957574996,47647.09297907481,196.28311,116.1409225619376,204653.73833730805,120826.50575492407,240.00696,114.26820188869416,247414.75252081503,116751.51893622744,4261.38095,1913.485194191246,4408517.938579976,1952710.8882381988,1435.50138,621.783156133461,1485783.576001004,634682.8786784556,2411.20706,1000.350947403773,2477061.8593364293,1005728.8001522168,0.38167,100000,0,295782,3093.8245261704533,0,0.0,0,0.0,16177,168.50759382452617,0,0.0,22606,232.8668256558303,2183458,0,78335,0,0,2674,0,0,37,0.3765532822894439,0,0.0,0,0.0,0,0.0,0.07529,0.1972646527104566,0.3231504847921371,0.02433,0.30933803171407,0.6906619682859301,25.67441228981427,4.563700279267669,0.3270343888321416,0.2000340483486551,0.2293156281920327,0.2436159346271705,10.9950622800596,5.374814285503795,25.92743464289831,13317.000215923072,66.12692027711338,13.74692318682311,21.54282431484634,14.99133552428697,15.845837251156963,0.5406877766428329,0.7617021276595745,0.6928682977615825,0.5857461024498887,0.1125087351502445,0.6962649753347427,0.9111747851002864,0.8929384965831435,0.7236024844720497,0.145631067961165,0.4911335578002244,0.698547215496368,0.6336032388663968,0.5424390243902439,0.1033868092691622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0047882323104235,0.0070785136136979,0.0091508052708638,0.011685429856884,0.0138813865079445,0.0159822011757021,0.0182397841880996,0.0204735205042154,0.0225125525156266,0.0247239213432406,0.0268075570996854,0.0288749575368271,0.030817610062893,0.0327115352834242,0.0349630089502819,0.0368266669430653,0.0387623469292369,0.0407373099220433,0.04273094212497,0.0568629705910027,0.0713462304290415,0.0850149692735963,0.0979185977921968,0.1096042333407268,0.1256858964852439,0.1392071420979913,0.1520911330837413,0.1644027701957762,0.1756318232614115,0.190070340482458,0.2039831739630087,0.2164905783683694,0.2282946925537976,0.2392773288947188,0.2513812767657044,0.2623046067553827,0.2737143243304124,0.2835161088698221,0.2920782424138128,0.3010773864689527,0.3093377692911448,0.3176168074794706,0.3247555635534761,0.3320072508729029,0.3387473290268394,0.345031733687881,0.3513578987632283,0.3573031958374962,0.3626255949233209,0.3635529776758616,0.3642066369790302,0.3656773319025161,0.3670601868617368,0.3681919809211507,0.3689697528020881,0.3696891726624418,0.3712194880754207,0.3722513807416555,0.3730791325578055,0.3740142625363166,0.3754157455537631,0.3760847990878185,0.3774439138661141,0.3786688012419347,0.3792132614129719,0.3815308442960362,0.3844172364445858,0.3851807143364339,0.3865080003216209,0.3880899705014749,0.3898697384002583,0.3909446546527287,0.3883330768046791,0.3913208262270229,0.3931429936686178,0.3968817536276628,0.396067990989146,0.3982177666388192,0.400767754318618,0.0,2.4765318152411284,62.3750071449056,221.0642531834025,343.7273046251587,fqhc2_80Compliance_baseline,1 -100000,95707,40565,381.4767989802209,7486,77.07900153593782,5790,59.93292026706511,2374,24.428725171617543,77.34534288058313,79.71148393029792,63.32656324425341,65.07345406735456,77.05143832462974,79.41663453582457,63.219305304304605,64.96814589003368,0.2939045559533895,294.8493944733457,0.107257939948802,105.30817732087884,65.94104,46.23116346881879,68898.86842132758,48304.89250401621,194.54729,114.99549704509715,202678.68598953052,119569.06031422324,238.79349,112.91234170144628,245853.657517214,115216.61607961149,4170.95871,1866.8423634486871,4318523.775690388,1911675.5905541664,1386.21346,604.6097879908775,1431336.9032568152,614673.8880028388,2337.71402,971.6965121832104,2406946.7646044698,985728.1791292568,0.37953,100000,0,299732,3131.7667464239817,0,0.0,0,0.0,16033,166.915690597344,0,0.0,22492,231.3519387296645,2181591,0,78305,0,0,2624,0,0,43,0.44928793087235,0,0.0,0,0.0,0,0.0,0.07486,0.1972439596342845,0.3171253005610472,0.02374,0.3136259832529814,0.6863740167470185,25.457921915263935,4.540527732389717,0.3343696027633851,0.1981001727115716,0.2347150259067357,0.2328151986183074,10.96367666643669,5.477103309012766,25.402813678360623,13177.852649596622,65.36600559427535,13.412749290146657,21.86027996584135,15.290736391041468,14.802239947245871,0.5454231433506045,0.7628596338273758,0.6947314049586777,0.5776306107431936,0.1135014836795252,0.7098808689558515,0.9064327485380116,0.8734693877551021,0.7643312101910829,0.1245551601423487,0.4916341966536786,0.7018633540372671,0.6341632088520055,0.5215311004784688,0.1105904404873477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0045811120345407,0.0065338257375918,0.0085516961202518,0.0107079664015945,0.012736843176982,0.0149740578779446,0.0173228667966477,0.0194426839490523,0.0215270598110368,0.0236811350542308,0.0256931608133086,0.0278023492625126,0.0298756554615788,0.031836616753181,0.0337609443967789,0.0360508709791006,0.0377131352546207,0.0394788829046143,0.0415164335882953,0.0558207053564901,0.0695028780743066,0.0832310259073881,0.0961595117845117,0.1082655354712083,0.124005164676996,0.1372713471277059,0.1506672773168315,0.1626554952336169,0.1747077121098358,0.1896691053669364,0.2033024741486654,0.2159365410981262,0.2273090522950945,0.2387921635997225,0.2504157335757522,0.2612530142002322,0.2710586434688664,0.2813042836544466,0.2906718298886394,0.2987928380458559,0.3061752079263514,0.3139221025216053,0.3209503602210474,0.3277993169581545,0.3340897878638382,0.3406152921134382,0.3465131076609824,0.3530289272279154,0.3591551158607555,0.3603823771653862,0.3622724324025893,0.3635733288051169,0.3643593092439414,0.3652873323086565,0.3655588194583288,0.3657990439740189,0.3671823568136932,0.3690250200947446,0.3693435879091397,0.3704753147811075,0.372276364788844,0.3729956919197226,0.3748201115308509,0.3758872120345922,0.3781351663343478,0.3792985164222622,0.381836522396999,0.3822421019265312,0.3835807234669107,0.3859810083031331,0.3840595225350605,0.384044644555774,0.3864526534060364,0.3864454976303317,0.3855148550292328,0.3824615384615384,0.3868926092282564,0.3816155988857939,0.3790386130811662,0.0,2.100531730325262,63.48323006215911,220.1445663029629,330.9963316712021,fqhc2_80Compliance_baseline,2 -100000,95651,40468,379.6405683160657,7425,76.44457454705126,5759,59.50800305276474,2409,24.68348475185832,77.2498286400838,79.64862183472542,63.26585613190741,65.03909978585534,76.95229241317548,79.35476058587355,63.15627023066704,64.93478562845382,0.2975362269083206,293.8612488518686,0.1095859012403721,104.31415740151806,66.05544,46.24602773713456,69058.80753991072,48348.71327757635,194.84396,114.73254754282962,202921.3494892892,119168.0408989764,234.36837,110.61430506419217,241253.4422013361,112723.13974489253,4199.41563,1871.652767493716,4339566.664227243,1906011.7637817492,1426.385,606.7376075399065,1475565.514213129,618682.9468755324,2374.63154,987.72559092357,2435124.1492509227,990238.3851132684,0.37951,100000,0,300252,3139.036706359578,0,0.0,0,0.0,16096,167.52569236076988,0,0.0,22036,226.5841444417727,2176121,0,78195,0,0,2531,0,0,35,0.3554589079047788,0,0.0,1,0.0104546737619052,0,0.0,0.07425,0.195647018523886,0.3244444444444444,0.02409,0.3151740973917512,0.6848259026082487,25.645846092751967,4.592859264120946,0.3215836082653238,0.1901371765931585,0.2450078138565723,0.2432714012849453,10.9491835355312,5.41208488216963,25.66572498295161,13205.622077874166,64.73481420433126,12.743954420284254,20.745287457215763,15.693088433910631,15.552483892920618,0.5341205070324709,0.7415525114155251,0.6819654427645788,0.5882352941176471,0.1220556745182012,0.6846321922796795,0.909967845659164,0.8267543859649122,0.7538461538461538,0.1245551601423487,0.4870041039671682,0.6747448979591837,0.6346704871060171,0.5386740331491713,0.1214285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019753636695165,0.0042897563053332,0.0069528323910638,0.009103840682788,0.011412761542452,0.0137189998472271,0.0159992658080699,0.0179917087017787,0.0201372482843964,0.0223678820155673,0.0246689437999405,0.0268315733245675,0.0287601741045244,0.0306025685955183,0.0325954529498007,0.0345141438692661,0.0364966529191104,0.0387163088168113,0.0406388180825053,0.0425438733694122,0.0575954525506259,0.0717824115287538,0.0849759640615488,0.0978553689438902,0.1099935620732235,0.1251587637595258,0.139493638622799,0.1521368432271128,0.1643807771311194,0.1767745678402217,0.1911693300387366,0.2047519899364521,0.2170485153157475,0.228735014423446,0.2397178621100735,0.2505611984086413,0.261629924874324,0.2719712954291581,0.2809813855524563,0.2894316418596632,0.2973707752901674,0.3050070521861777,0.3129891756869276,0.3199195655576828,0.3267489812352065,0.3334901339407293,0.3395711843957369,0.3464208548013859,0.3517812780458619,0.3577479352538014,0.3595139180210293,0.3608288751572457,0.3625345132743363,0.3641147143044028,0.3650563510806852,0.3653337027459672,0.3656363838824109,0.3659970926390908,0.3672020083912236,0.3689475862317145,0.3688423994109095,0.370269246866094,0.371918270854441,0.3728465307412675,0.3736338466022247,0.3754132773550249,0.3770182068017863,0.3780407004259347,0.3800415653950473,0.3832820799552698,0.3867708904735784,0.3857584149978696,0.3866210999303841,0.3888803680981595,0.3916698148847752,0.3909935668334525,0.3866646134893748,0.3872427983539094,0.393652561247216,0.3976226993865031,0.0,2.695008662818743,60.42447110483657,217.18162405377447,336.9534639470434,fqhc2_80Compliance_baseline,3 -100000,95747,40698,381.1712116306516,7597,78.16432890847754,5901,61.0985200580697,2457,25.348052680501738,77.32698317968122,79.68546348156138,63.31555014592704,65.06057947857602,77.01849333562637,79.37499903106063,63.20213384625048,64.94913153893356,0.3084898440548471,310.4644505007599,0.1134162996765653,111.44793964245991,64.26684,45.073594065775,67121.51816767105,47075.72463447941,195.23917,115.34197003516786,203357.3584550952,119911.1930767208,243.33669,115.07568034102545,250498.6265888226,117446.80693589624,4287.84007,1928.4741210466836,4445047.8343969,1980880.86420116,1459.98056,636.3976403427162,1512776.7136307142,652614.0379543045,2416.45692,1008.7801662957696,2494949.711218106,1028130.3310845696,0.38101,100000,0,292122,3050.9780985305024,0,0.0,0,0.0,16167,168.26636865907025,0,0.0,22898,235.54785006318733,2187731,0,78536,0,0,2633,0,0,35,0.3551025097392085,0,0.0,1,0.0104441914629178,0,0.0,0.07597,0.1993910920973202,0.3234171383440832,0.02457,0.3098009763424709,0.690199023657529,25.2672797718254,4.6324740501892645,0.3111337061514997,0.2031859006947975,0.250127097102186,0.2355532960515167,11.10265806170061,5.5732761523167085,26.301554079830844,13308.740016923774,66.77962587836188,14.008325877491531,20.840366449212905,16.53802702972239,15.392906521935064,0.5563463819691578,0.7773144286905754,0.7058823529411765,0.6056910569105691,0.1158273381294964,0.6922554347826086,0.8918128654970761,0.8674948240165632,0.7155425219941349,0.1666666666666666,0.5111763377737638,0.7316219369894983,0.6481892091648189,0.5726872246696035,0.1014760147601476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023504381743579,0.0047251120439658,0.0068915819174634,0.0093363946684005,0.0115840325451309,0.0137976681431699,0.0161520577558428,0.0183228704129025,0.0208395081916948,0.0231525076765609,0.0251716716203751,0.0272853256685315,0.0294604401591233,0.0312831443781985,0.0332477124789816,0.0351330405579953,0.0371478563367741,0.0389925624721222,0.0409715942752018,0.0429736740668201,0.0572409905207332,0.0712028958215638,0.0848063575936759,0.0977860942329121,0.1108054264301299,0.126009727215056,0.139973910000106,0.1527978877438037,0.1656157151101896,0.1773096076242809,0.1914852338866134,0.204511734191061,0.2165079710539202,0.228462944118001,0.2400308268193328,0.2518097265178977,0.2632813809284398,0.2734892523996214,0.2832793591273223,0.2922762922533596,0.3008284572156885,0.3081430781491726,0.3158512720156556,0.3238632950927984,0.331084865457202,0.3380222548813772,0.3444334307833222,0.3505785988593883,0.3556808145877708,0.3613691090471276,0.3633995573071317,0.3643926329585431,0.3653438779833357,0.3663278769337837,0.3669330788500536,0.3676429868012184,0.3685072419988234,0.3697873743200923,0.3713790499725425,0.3721946588812667,0.373351146905519,0.3737857327320765,0.3750316803244065,0.375481169664363,0.3760627861347286,0.3762259090789577,0.3767379064690336,0.3777354900095147,0.3799108090889785,0.3832407148282893,0.3839387970131476,0.3859096250400598,0.3881674795717996,0.3888931385297942,0.3900943396226415,0.3903946742748455,0.395628078817734,0.3944150020383204,0.4057239057239057,0.404313725490196,0.0,2.074026060783789,65.48207081003777,220.7414535911981,341.5751142248532,fqhc2_80Compliance_baseline,4 -100000,95760,40490,379.37552213868,7418,76.30534670008353,5761,59.5969089390142,2318,23.84085213032581,77.39144353273707,79.72900866976435,63.36142006586866,65.08650609284537,77.10742609597362,79.44556383338582,63.25735861661157,64.98538917732019,0.2840174367634489,283.4448363785356,0.1040614492570881,101.1169155251821,65.219,45.71775345125686,68106.72514619882,47742.0148822649,195.3206,115.38606416352184,203388.8366750209,119915.01061353578,240.18462,113.38840174629232,247151.69172932333,115558.82446474688,4142.07392,1843.4245053924203,4286800.501253133,1886372.9588475549,1414.73836,607.5513451933879,1461845.8751044278,618918.7502019498,2280.47616,940.9198752657136,2347498.95572264,952801.6090941088,0.37898,100000,0,296450,3095.7602339181285,0,0.0,0,0.0,16154,168.1077694235589,0,0.0,22569,232.05931495405176,2188301,0,78499,0,0,2622,0,0,46,0.4803675856307435,0,0.0,1,0.0104427736006683,0,0.0,0.07418,0.1957359227399862,0.3124831490967916,0.02318,0.3208343997952393,0.6791656002047607,25.65835278710814,4.518937860542113,0.3409130359312619,0.1971879881964936,0.2313834403749349,0.2305155354973095,10.989403300196454,5.538061018421201,24.580267270892616,13228.584506379471,64.73792684063264,13.254457532143636,22.095179130573072,14.84527610649673,14.543014071419211,0.5519875021697622,0.7720070422535211,0.6970468431771895,0.5678919729932483,0.1332831325301204,0.6924187725631769,0.9316239316239316,0.8725274725274725,0.6421404682274248,0.1535714285714285,0.5075411334552102,0.7006369426751592,0.6441351888667992,0.5464216634429401,0.1278625954198473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0047224783890876,0.00712242040543,0.009404738932166,0.011570802533782,0.0136796677794967,0.0159873649887915,0.0180688473075274,0.0200328944008009,0.0219161823688303,0.0239139344262295,0.0262023965856861,0.0282981062668899,0.0307733476050307,0.0327914480398321,0.0347292523190711,0.0367721636894289,0.0386234935385508,0.0406956196336874,0.0427101129213717,0.0576698258945346,0.0715167622316159,0.0851499066361748,0.0979346751635224,0.1100672697749942,0.1254203235698424,0.1388744552019596,0.1517021276595744,0.1643281223304288,0.1762436091192643,0.1903685524842848,0.2036660538553044,0.216661232474731,0.2290346545470436,0.240026383773979,0.2515214552858122,0.2617874579218405,0.2719613569984273,0.2815557092170443,0.2905385301993454,0.2986703665163602,0.3064557613168724,0.3141613334437438,0.3224082351672319,0.32912406809296,0.3362036044692462,0.3422057038455282,0.3486461703048982,0.3547041216942871,0.3601076957594795,0.3607581305190609,0.3616766631816431,0.363089705675257,0.364043321299639,0.3646611516240662,0.3649659603763482,0.3648907384844217,0.3659901225655077,0.3669104079819585,0.3679751179751179,0.369043817966681,0.3702477700693756,0.3715511440107671,0.3721317001910327,0.373441773775809,0.3744687549189359,0.3756477425634859,0.3784682630178639,0.3804886685552407,0.3822410825093078,0.3837594261541291,0.3835653248777342,0.3852140077821012,0.3870992601726264,0.3853080568720379,0.3877186719028918,0.3895728834169327,0.3927632908833636,0.392087312414734,0.3932798778159603,0.0,2.2301088378690603,61.35839484677901,219.39473916623965,331.93533130837494,fqhc2_80Compliance_baseline,5 -100000,95717,40851,382.5861654669495,7564,77.69779662964781,5873,60.66842880575029,2418,24.76049186664856,77.37264048070351,79.73065353481014,63.34029949113111,65.08115436306954,77.07893259738113,79.43884824623235,63.23229828294615,64.97716655191229,0.2937078833223836,291.8052885777911,0.1080012081849659,103.98781115725342,65.95644,46.205980774951584,68907.75933219804,48273.53633623242,198.55184,117.8526794069342,206752.25926428952,122442.09430606292,242.25655,115.27931501004132,248316.17163095376,116861.17392700473,4235.41696,1897.470028865946,4378872.175266672,1936310.319865799,1448.63779,629.7835691742816,1496160.3267967028,640665.2519137475,2377.42634,983.8278446886516,2438320.6326984754,990035.2512527588,0.38237,100000,0,299802,3132.1708787362745,0,0.0,0,0.0,16429,170.9205261343335,0,0.0,22873,234.2112686356656,2179041,0,78237,0,0,2628,0,0,35,0.3656612722922783,0,0.0,0,0.0,0,0.0,0.07564,0.1978188665428773,0.319672131147541,0.02418,0.3202811244979919,0.679718875502008,25.435683100730184,4.6811406127533886,0.3362846926613315,0.1980248595266473,0.2310573812361655,0.2346330665758556,11.40957720801004,5.749876706063192,25.611450133314047,13315.409518093016,66.00325603702376,13.47401991214826,22.355870186009717,15.068423834938168,15.10494210392762,0.5484420228162779,0.7454858125537404,0.7124050632911393,0.5725865880619012,0.1233671988388969,0.7104895104895105,0.8967551622418879,0.8787878787878788,0.7443365695792881,0.1637630662020905,0.4962862930452397,0.683252427184466,0.6567567567567567,0.5219465648854962,0.1127406049495875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002379746835443,0.0048138801901229,0.0070198930785071,0.0094247643808904,0.0117235559080417,0.0140379094814422,0.016400962244149,0.0187500637930858,0.0209038219750789,0.0229296755041457,0.0249038806582252,0.0268169731316926,0.0287706165425903,0.0310301856867732,0.033303413909437,0.0352233499390206,0.0375002588366844,0.0397153851738909,0.0416467457958301,0.0432971222047473,0.0581270295385964,0.0717267790438522,0.0852852978799253,0.0979934621974164,0.1101775322594248,0.125527303483639,0.1397887099853624,0.1527754129065213,0.1652711621846765,0.1779064779064779,0.1916117358149153,0.2057369155693093,0.2188625066620259,0.2307263180923211,0.2420737545257458,0.2533939158862969,0.2641045967642888,0.2736682058790404,0.2840342245503198,0.2933376158575755,0.301698880151938,0.3096160826142444,0.3180007587253414,0.3252155534740735,0.3316216643749772,0.3380699003716003,0.3444057258893429,0.3506068440289859,0.3559282492612369,0.3605230139338308,0.3618577953838069,0.3631806538684,0.3645825987616885,0.364783880026635,0.3663861791644947,0.3660704690258693,0.366394417571961,0.3674238683127572,0.368584918571233,0.3691367510676697,0.370700804078496,0.3705321840898308,0.3714549808831561,0.3721805353343039,0.3728923788418923,0.3744554300472178,0.3769566333076726,0.3784149140180452,0.3799627900445817,0.382072296789009,0.382664906450585,0.3848036607427902,0.3883255165420205,0.3863236082395282,0.3860162294772599,0.3871507045617387,0.3953452527743527,0.3952205882352941,0.4055555555555555,0.4013107170393215,0.0,2.731588345185096,62.62128457012759,223.35392926147725,336.410932648098,fqhc2_80Compliance_baseline,6 -100000,95726,40246,377.3478469799219,7437,76.33244886446734,5770,59.52405824958736,2307,23.67172972860038,77.33281654085012,79.69839128165977,63.319784280511655,65.07091043071884,77.05065651807901,79.41700058063235,63.21667629671217,64.97108591076613,0.2821600227711087,281.39070102741925,0.1031079837994823,99.8245199527048,65.0936,45.63163504026438,67999.91642813865,47669.00846192715,193.08717,113.79284988747538,200966.82197104237,118134.32915311898,236.87109,112.59337345439748,241765.91521634665,113481.49134190648,4172.19963,1856.344168671821,4309624.825021415,1890832.250213585,1439.14694,625.0297070634145,1483810.793305894,633426.1892505081,2274.02946,938.8266959688218,2336132.900152519,947248.414820496,0.37789,100000,0,295880,3090.9052921881203,0,0.0,0,0.0,15954,165.89014478824978,0,0.0,22302,227.5139460543635,2187993,0,78536,0,0,2531,0,0,43,0.4283057894406953,0,0.0,0,0.0,0,0.0,0.07437,0.1968033025483606,0.3102057281161758,0.02307,0.3130799542392271,0.6869200457607728,25.64277776634192,4.582188079977912,0.3332755632582322,0.2008665511265164,0.2294627383015598,0.2363951473136915,11.24181932504371,5.653475701169508,24.41951323366957,13166.856303547944,64.5950214921663,13.247388247791193,21.80718333112456,14.771505618131918,14.768944295118636,0.5483535528596187,0.7368421052631579,0.7160686427457098,0.5861027190332326,0.1151026392961876,0.7204066811909949,0.9125,0.8539553752535497,0.7669902912621359,0.1647058823529411,0.4944229455952652,0.6698450536352801,0.6685314685314685,0.5310344827586206,0.1036970243462579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0043005081496657,0.0065082749517717,0.0087415252945182,0.0108757579457127,0.0131091101694915,0.0153784966193822,0.0174374680959673,0.0197541972556798,0.0218920551704365,0.023898378068035,0.0260090975366827,0.0280802410109298,0.0301441812564366,0.0321492318644697,0.0339955347914168,0.0362986743993372,0.0385425639003331,0.0403231676250091,0.0421515413545584,0.056784606871783,0.070581834541783,0.0839983640768045,0.0965337426537842,0.1083927140869418,0.1235936046019795,0.1378922696757909,0.1509110647537145,0.1629034669856663,0.1740878965317547,0.188028942438142,0.2014130070217577,0.2140619902120717,0.2258766414817892,0.2376625376779388,0.2488814069906525,0.2595428367337827,0.2698312640003602,0.2795009195976476,0.2892403903422367,0.2979693903540253,0.3057627674399541,0.313350949745826,0.3205345040603596,0.3280398832684825,0.3342220576436462,0.3406116821258461,0.3464497719803317,0.3527001089381127,0.358726549175668,0.3599379510352735,0.3613868210642404,0.3629960051382674,0.3641155600608211,0.3655577416085375,0.3658109684947491,0.366286358082483,0.3674866310160428,0.3683859150589725,0.3695255474452554,0.3712331855414443,0.3715969521390586,0.3730245460659045,0.3747981700753498,0.3759627224220768,0.3773288263501297,0.3781621063500258,0.3795176909931008,0.3820033955857385,0.381602659084538,0.3839445540918896,0.3869325186257168,0.3889417888656129,0.3890549551621062,0.3909262759924385,0.3891731112433075,0.3949708678319534,0.3899063899063899,0.3960011108025548,0.4024012393493416,0.0,2.885840000345101,60.03570420442598,213.67380649200496,340.72102094928465,fqhc2_80Compliance_baseline,7 -100000,95769,40639,379.7888669611252,7549,77.44677296411156,5864,60.55195313723648,2341,24.057889296118784,77.34910350822409,79.67898726340704,63.34642956891118,65.06733656924808,77.05456982931054,79.38302593780719,63.2389663172092,64.96169308501622,0.2945336789135524,295.96132559984767,0.1074632517019722,105.64348423186232,65.95688,46.19293511089556,68870.80370474789,48233.703088573086,195.26651,115.13618873149755,203204.3354321336,119533.91883751276,240.71596,114.53398860378822,246485.14655055397,115872.74746741062,4227.74821,1898.2967866753136,4370795.91517088,1938784.5234716453,1414.43422,619.942768404339,1460622.8320228884,631188.2847973485,2307.7865,962.8041603744445,2374349.0899978075,976062.7301880872,0.38137,100000,0,299804,3130.49107748854,0,0.0,0,0.0,16171,168.13373847487182,0,0.0,22682,232.04794870991657,2183569,0,78455,0,0,2630,0,0,40,0.4072298969395106,0,0.0,0,0.0,0,0.0,0.07549,0.1979442536119778,0.3101072989799973,0.02341,0.3205015673981191,0.6794984326018809,25.314741057595228,4.602156718816975,0.3282742155525239,0.2007162346521146,0.2394270122783083,0.2315825375170532,10.981677381500589,5.457560538319867,25.05053509365831,13277.119797220494,66.10294075774414,13.763392652961944,21.76234139657236,15.617971257737729,14.95923545047209,0.547237380627558,0.7638062871707731,0.6935064935064935,0.584045584045584,0.1141384388807069,0.6940451745379876,0.918918918918919,0.8374485596707819,0.7203947368421053,0.1594684385382059,0.4985237338178515,0.6926889714993805,0.6448922863099374,0.5463636363636364,0.1012298959318826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0045104856120576,0.0068580008318876,0.0091212887629379,0.0113576280148045,0.0135897227085793,0.0156240445178254,0.0178496708679899,0.0199245930785028,0.0221501503959403,0.0242593123796254,0.0265466747390996,0.0288166075741226,0.0308781753056939,0.0332817816269718,0.0357065391408533,0.0377793874172185,0.0401385302931325,0.0420199501246882,0.0438504233008091,0.0578137229324289,0.0717886501976697,0.0847032920947787,0.0978057546396519,0.109806855420798,0.1249630161883427,0.1391520932697403,0.1523606975754997,0.1646462490662682,0.1761706321574341,0.1902886291728546,0.20378439746986,0.2167177613984736,0.2290575486862104,0.2398208961791918,0.2511822621908675,0.2620594209692181,0.2722907553386485,0.2815071213754752,0.2911670732126292,0.2998322244720856,0.3086627811717342,0.3161770800033152,0.3240858410262558,0.3310687635205755,0.3378495101305496,0.3450859519871698,0.3513878622588127,0.3568314519268197,0.3616908710948866,0.3626155611039881,0.3635034281063333,0.3646809712027103,0.3656018303985171,0.3671573808070734,0.367749259776322,0.367598775516678,0.3689917888466538,0.3696817162326433,0.370883695944131,0.3711444843335902,0.3707956690175822,0.3718056666526333,0.373329132724245,0.3743813682678311,0.3748124753257007,0.374564007955954,0.376128065308205,0.3780362032789217,0.3795811518324607,0.3807347918397489,0.3823893281695444,0.3842399332091709,0.3859024012393493,0.3849995198309805,0.383883944898208,0.3869141239383454,0.3939771547248182,0.3905941988172345,0.3976725521669342,0.0,2.642450398204814,64.09330698487258,218.86040354340992,338.02754297882615,fqhc2_80Compliance_baseline,8 -100000,95657,40881,382.752961100599,7558,77.61062964550425,5820,60.15241958246652,2387,24.566942304274647,77.31532774038504,79.70647760466576,63.31028192710126,65.07588208113825,77.0188156167441,79.41013133506652,63.20216035059757,64.97084315675808,0.2965121236409374,296.3462695992405,0.1081215765036844,105.03892438016749,66.31834,46.46791828785544,69329.3120210753,48577.64542882951,197.22892,116.38073373679968,205533.4371765788,121014.59771558765,242.53959,114.86721078722331,248911.5903697586,116523.83493478784,4258.10918,1891.7154594197943,4405920.674911402,1932088.4194777128,1457.48505,631.4076600050231,1505917.3609876956,642334.570397381,2362.49682,978.8159139265712,2433244.989911873,991542.738020415,0.38145,100000,0,301447,3151.332364594332,0,0.0,0,0.0,16232,168.99965501740596,0,0.0,22745,233.15596349456916,2178419,0,78142,0,0,2716,0,0,42,0.428614738074579,0,0.0,0,0.0,0,0.0,0.07558,0.1981386813474898,0.315824292140778,0.02387,0.3146264908976773,0.6853735091023226,25.72161132692281,4.6527987444265735,0.3214776632302406,0.1950171821305842,0.2415807560137457,0.2419243986254295,11.238603650288256,5.522689116126947,25.52353111639893,13287.965981085918,65.39290463057371,13.2753706316426,20.891883052746245,15.584766742027204,15.640884204157643,0.5398625429553264,0.7700440528634361,0.6819882415820417,0.5746799431009957,0.1306818181818181,0.7103866565579985,0.9116719242902208,0.8661971830985915,0.745819397993311,0.2021660649819494,0.4898911353032659,0.715158924205379,0.6276816608996539,0.5284552845528455,0.1131741821396993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008752557894,0.0045722743770149,0.0070531165641681,0.0093268038932802,0.0114237467447916,0.0135472370766488,0.016033617559463,0.0184364275208367,0.0209032152499386,0.0229486037295321,0.0250653812624993,0.0270775552131484,0.0291031417813715,0.0309534358932085,0.033164397559893,0.0352566422934916,0.0374549297525798,0.0396977779622845,0.0417312433039661,0.0437225105788672,0.058218748693944,0.0722602668006952,0.0855025610882525,0.0981436268732109,0.1102198486495614,0.1256947458685779,0.139139022214671,0.1517165713311816,0.1644380311046977,0.1760336610707998,0.1900645620237338,0.2037855162855162,0.216517176818914,0.2285048314200982,0.2394929292039297,0.251544562142976,0.2622584608511114,0.2726996488700819,0.2822416748981005,0.2907936362385952,0.2998540687035278,0.3079948956296756,0.3158025627057625,0.3228640351403574,0.3301891379394175,0.337110935727322,0.3432222500626409,0.3494703066109809,0.355637909140384,0.3617417734901546,0.3634303595996654,0.3643047298508904,0.3650374719489647,0.3656447053707328,0.3672845945220994,0.3684226698007405,0.368779573819429,0.3695981056370453,0.370255549465607,0.3712822532991924,0.3721567964538607,0.3729835909442647,0.3751053607552259,0.3760435653367537,0.377039655255895,0.3772847664752314,0.3767473968820111,0.3792686419910251,0.3810285958173282,0.3814793947198969,0.3842603277175167,0.3859110967603056,0.3851818647540984,0.3893082250408528,0.3886592984142239,0.3900992495763737,0.3872017353579176,0.3857548701298701,0.3896503496503496,0.3811175337186898,0.0,2.748477273491462,57.71489086740838,228.6584182754769,342.0231414642489,fqhc2_80Compliance_baseline,9 -100000,95627,40535,380.1436832693696,7365,75.86769427044663,5730,59.3347067250881,2293,23.61257803758353,77.3146043072854,79.73513084068271,63.296484254502126,65.08366517042505,77.0406983312147,79.45932213285485,63.19675284963719,64.98570517004711,0.2739059760707079,275.8087078278635,0.0997314048649329,97.96000037793816,64.64612,45.26191649841725,67602.37171510138,47331.73319085327,193.90631,114.5913643503466,202192.2469595407,119250.24768145668,234.81253,111.11810415138486,241707.35252596025,113275.13455453332,4133.7327,1837.0534573229208,4286398.789044935,1884692.9500276295,1382.19731,590.4726101087023,1431896.3681805348,603966.2857861301,2269.60332,934.5717321151716,2339648.2165078903,949016.069192292,0.38003,100000,0,293846,3072.8350779591538,0,0.0,0,0.0,16048,167.22264632373702,0,0.0,22108,227.3625649659615,2188537,0,78431,0,0,2500,0,0,32,0.3346335240047267,0,0.0,1,0.0104572976251477,0,0.0,0.07365,0.1938004894350446,0.3113374066530889,0.02293,0.3170668732248902,0.6829331267751098,25.68049650504864,4.456563309347561,0.3298429319371728,0.2036649214659686,0.2293193717277487,0.2371727748691099,10.9101717873484,5.450108279577415,24.250759062423104,13250.096535143002,64.26692358384115,13.514111874134125,21.293179684579314,14.614894250963957,14.844737774163752,0.550087260034904,0.7969151670951157,0.682010582010582,0.58675799086758,0.119205298013245,0.7137601177336277,0.9149560117302052,0.8741573033707866,0.7603833865814696,0.1192307692307692,0.4991992679020819,0.7481840193704601,0.6228373702422145,0.5324675324675324,0.1191992720655141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026445644574589,0.0049690196834024,0.0072278393633004,0.0093786516283086,0.011566162109375,0.0137909961295579,0.0158097122632368,0.0176626826029216,0.0198934244305571,0.0217409114183307,0.0236412681155704,0.026091690721014,0.0282498662606477,0.0302106087458269,0.0322164416367314,0.0344948816047978,0.0363596800265263,0.0384982765064994,0.0406422008802688,0.0428361337964266,0.0572279711508309,0.0709616593337523,0.0846678077516775,0.0978842105263158,0.1100497155342572,0.126236208466572,0.1399725960466079,0.1533871122430494,0.1659250385076159,0.177234497352224,0.1911239603447717,0.2037974271997225,0.2163036727934366,0.2275704927371119,0.2390005731164308,0.2505437918941714,0.261234479598565,0.2716876971608832,0.2816984626572282,0.2904776105707469,0.2992392223161454,0.3076149021810352,0.3156212261135185,0.3224135450141493,0.3295680901715007,0.3361717334779233,0.342784214609244,0.3489652891721041,0.3550007118911712,0.3605547198691051,0.3616763402776842,0.3628482972136223,0.3640260582644745,0.3655051609073932,0.3663667242714975,0.3667823789628901,0.3661423578010804,0.3667826918952803,0.3688082224743048,0.3698647339528542,0.3706444765858331,0.3723160267309897,0.3736012740455136,0.3753696567792813,0.3760400134660703,0.3775805065993283,0.3797122097164838,0.3809299551034504,0.3826346255042975,0.3843342866221798,0.3858468255412043,0.3866595801222429,0.3849087788443201,0.3838608322476818,0.3837648837648837,0.3834776334776335,0.3866729235100891,0.3937834499794154,0.3924015529672767,0.392156862745098,0.0,2.3246392822587043,60.10333767282737,215.23939157808283,336.2069371529973,fqhc2_80Compliance_baseline,10 -100000,95636,40802,384.2590656238237,7548,77.76360366389225,5821,60.18654063323435,2353,24.185453176628048,77.29129418892526,79.69293307073447,63.29829466637945,65.07063586571303,77.00550696548062,79.405407195325,63.195285319171504,64.9695998222787,0.2857872234446432,287.5258754094716,0.1030093472079443,101.03604343433403,65.12198,45.575666760490016,68093.58400602284,47655.34606266471,191.94126,112.52120837172563,200029.01627002383,116985.98695003983,235.66572,110.74282469196508,241690.64996444853,112195.25179642638,4192.53173,1853.3254795029204,4339648.929273495,1893834.736732891,1422.1248,606.8292561092259,1469772.7006566566,617321.4046772656,2319.15986,949.1336173485864,2386187.2307499265,960056.2728125756,0.38325,100000,0,296009,3095.1629093646743,0,0.0,0,0.0,15919,165.75348195240286,0,0.0,22268,228.1253921117571,2187986,0,78513,0,0,2548,0,0,28,0.2823204650968254,0,0.0,0,0.0,0,0.0,0.07548,0.1969471624266144,0.3117382087970323,0.02353,0.3191409193669932,0.6808590806330068,25.39148606713253,4.599560456902996,0.3325889022504724,0.2042604363511424,0.2274523277787321,0.2356983336196529,11.068449774589896,5.450367179765278,24.940014664538765,13287.8958550528,65.34909240293796,13.802955013211111,21.852540160637837,14.586484716469212,15.107112512619809,0.548187596632881,0.7544154751892347,0.702995867768595,0.5755287009063444,0.1246355685131195,0.696165191740413,0.8920454545454546,0.8571428571428571,0.7027972027972028,0.1482889733840304,0.5032474804031355,0.6965352449223416,0.6556380823767725,0.5404624277456648,0.1190261496844003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0044915340160194,0.0067090933081615,0.0088202418453409,0.011160964095677,0.0131995722360849,0.0153761445439158,0.0176445361161598,0.0197938818910518,0.0217578276984825,0.0236688817786528,0.0257687488445658,0.0279306620029833,0.0298109124632902,0.031775855305267,0.0337801497662488,0.0359619031826802,0.0376700238812169,0.0395600736678909,0.0413890887102659,0.0559189900932157,0.0704312394599294,0.0842511996136036,0.0965793074413219,0.1088314758527524,0.1243715800726056,0.1379317665541473,0.1513137574421403,0.1640903940307442,0.1765678339094402,0.1911163818662066,0.2044738466202535,0.2164586031628555,0.2281072441237971,0.2397624085338975,0.2508650135296988,0.2619954643459609,0.2725993470674321,0.2831938783619623,0.2922477511029622,0.3011622791785325,0.3089568829345346,0.3168085837113182,0.3244128301705731,0.331816744118148,0.3386340066176107,0.3451315228566413,0.3513796093232009,0.3569370538611291,0.3629840095149993,0.3647252421160538,0.3660491357786269,0.3670505121865065,0.3683050601710889,0.3695107398568019,0.3690666748753309,0.3686696029638581,0.3713375480761294,0.3728953336540443,0.3734465914804971,0.373923530631089,0.3748308525033829,0.3769827877151535,0.3784270472245982,0.3785135951661631,0.3791576022855346,0.3788251444260138,0.3817951959544879,0.3832695849270435,0.3859994377284228,0.3848173568566032,0.3884961439588689,0.3894353602452733,0.389375727025979,0.3906565413822935,0.3909545288309155,0.3948863636363636,0.3913499895024144,0.3993781797625777,0.3993783993783993,0.0,2.661073890766973,59.59474581084909,220.6563995530231,344.7050588603841,fqhc2_80Compliance_baseline,11 -100000,95624,41011,384.3909478791935,7539,77.59558269890404,5864,60.66468668953401,2444,25.140132184388857,77.27514686010801,79.68853248896748,63.27600815666828,65.05751173827713,76.97805324407481,79.39041056221971,63.16867068351948,64.95259614055823,0.2970936160331945,298.1219267477684,0.107337473148803,104.91559771890024,65.33626,45.79784685355743,68326.21517610642,47893.67402906952,197.69506,117.24528686870538,206071.2268886472,121939.86537763051,246.61458,117.12641365833244,254028.0578097549,119442.30855685296,4249.00224,1900.5838192792032,4400264.588387853,1944376.505144317,1450.6878,626.4260536206233,1497173.9626035306,635198.5280331541,2404.4042,994.2511263751755,2475873.4418137707,1005634.40502481,0.3827,100000,0,296983,3105.737053459383,0,0.0,0,0.0,16370,170.49067179787502,0,0.0,23114,237.81686605873003,2177660,0,78148,0,0,2646,0,0,43,0.4496779051284196,0,0.0,1,0.0104576257006609,0,0.0,0.07539,0.1969950352756728,0.324180925852235,0.02444,0.3113847700427243,0.6886152299572756,25.583326478365453,4.532352818176944,0.3306616643929058,0.1974761255115961,0.2394270122783083,0.2324351978171896,11.118753985128071,5.638916338780895,26.10051086190811,13376.89101782156,66.32401263308918,13.622999787991924,21.983723753378943,15.539579230240095,15.177709861478244,0.5511596180081856,0.7970639032815199,0.6817947395564724,0.5868945868945868,0.119589141599413,0.7145862552594671,0.92507204610951,0.8336594911937377,0.7354838709677419,0.1705426356589147,0.4986480396575034,0.7422934648581998,0.6274509803921569,0.5447897623400365,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0044089476298105,0.0068591142001927,0.0092026409344845,0.0113508070667927,0.01358562815708,0.0160908757188889,0.0181519331094118,0.0204471798227229,0.0225774082568807,0.0247917777868953,0.0270286929454186,0.0293636503935387,0.0314381133008988,0.0336531014756146,0.0356178554802669,0.0376673991459015,0.0396626751274834,0.0417191321088506,0.0436120178118905,0.0591979431223152,0.0735369623303819,0.0860042229995903,0.0986589130137058,0.1109233223124782,0.1267422156322813,0.1407666393904292,0.1534656631771954,0.1658622202720491,0.1773885008060182,0.1911809153713299,0.2047753814124459,0.2172363430265509,0.22886559505274,0.240041928721174,0.2521297746381882,0.2631101859934197,0.2739982622628948,0.2837923969952197,0.2929454194615455,0.3009108313511632,0.3099059149245677,0.3176871313450195,0.3251141552511415,0.3323676554721069,0.3398150548785758,0.3454912736352116,0.3511938909498859,0.3574518387654096,0.3635797974448931,0.3648451435057564,0.3668880940214614,0.3682596220441278,0.369474767682918,0.3705481596326719,0.3702285969038724,0.3706609076761838,0.3716362078341545,0.3740928385594961,0.3752170255418926,0.3757718373493975,0.3778585040495474,0.3796929944621086,0.3791103818749859,0.3801924657865467,0.3813368283093054,0.3823520985532159,0.3849443969204448,0.3861607142857143,0.3871446329042864,0.3893614086708657,0.392572658772874,0.3942656897100987,0.3966751327637959,0.3970770847263349,0.394991531575127,0.3981293842556508,0.3961562306261624,0.3923055321538893,0.392439594699922,0.0,2.522041095163169,62.99379994179903,222.63092073234944,341.35747078552987,fqhc2_80Compliance_baseline,12 -100000,95689,40902,383.3251470910972,7670,78.9850453030129,5968,61.83573869514783,2345,24.25566157029544,77.28391542799022,79.68061900158321,63.28504443165552,65.0593377322101,77.00310996786378,79.39717814002628,63.18274202099793,64.95838113111671,0.2808054601264445,283.44086155692594,0.1023024106575931,100.95660109338668,65.52612,45.91272746916224,68478.21588688354,47981.19686605801,197.7598,115.8916663714164,206138.20815349725,120581.73496579172,246.16651,116.04305813102629,253430.3733971512,118453.53780043696,4302.17967,1908.0776426263585,4461601.093124602,1959639.5015376464,1440.6054,623.4934644951506,1494223.1081942543,640303.2765048913,2319.98026,954.0937097120328,2400327.03863558,974802.5763624344,0.38208,100000,0,297846,3112.646176676525,0,0.0,0,0.0,16335,170.15539926219316,0,0.0,23063,237.2268494811316,2181409,0,78364,0,0,2633,0,0,42,0.4389219241501113,0,0.0,0,0.0,0,0.0,0.0767,0.2007432998324958,0.3057366362451108,0.02345,0.3140780884345363,0.6859219115654638,25.499467646935077,4.608404419500593,0.3203753351206434,0.2131367292225201,0.2293900804289544,0.237097855227882,10.99291020464171,5.325581192383204,24.87272080046779,13359.028352890273,67.04368468671683,14.827247074996738,21.54552623146063,15.151221046731848,15.51969033352762,0.546916890080429,0.7633647798742138,0.7024058577405857,0.5719503287070855,0.1180212014134275,0.7208806818181818,0.929503916449086,0.8602620087336245,0.7298245614035088,0.202127659574468,0.4932017543859649,0.6917885264341957,0.6526822558459422,0.5304428044280443,0.0970873786407767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307188747694,0.0047366926322622,0.006832695412043,0.0088921860550197,0.011131121353642,0.0132222312769945,0.0156968738844408,0.0177105037382032,0.0197289695729992,0.0221270667294966,0.0240782157293226,0.0262011425753154,0.0283082938876312,0.0303714238601698,0.0326499855485362,0.0346657014323388,0.0369196016869242,0.0389989204451087,0.0410555659572697,0.0432208777579755,0.0582059772900583,0.0724082333479908,0.0857952458414231,0.0983553081561142,0.1102890734662431,0.1260783504281646,0.140475684858781,0.1534840626630741,0.1661019485447374,0.1775211436912377,0.1915540322059108,0.205498743391975,0.2185672753405416,0.230057385666725,0.2414306183180866,0.2529998778958118,0.2636486622466207,0.2742682610704746,0.2843861523424181,0.2941594869618089,0.3027421879529248,0.3109315633941554,0.3189606074988135,0.3262666058087299,0.3342344975400653,0.3412944416315744,0.346238258274076,0.3519195728902537,0.3581311513674027,0.3635439092361945,0.3645938692667664,0.3658096340388007,0.3663743267251346,0.3678106063892866,0.3685433768865184,0.369028234354358,0.3698327748574695,0.3704605263157894,0.3713776192599197,0.3729713250721805,0.37416120033175,0.3751817837719385,0.3760658443179654,0.3777627118644068,0.3781815524758263,0.3798862079865135,0.3803289983636207,0.3820074915878357,0.383147853736089,0.3833034469017732,0.3843266501876773,0.3850832266325224,0.386509635974304,0.3880393641180923,0.3913328341445151,0.391732984915073,0.3920184190330008,0.3964110929853181,0.3969679955081415,0.3995372155804088,0.0,2.0774277010871653,62.53454266075261,225.8616386572833,351.2727358946772,fqhc2_80Compliance_baseline,13 -100000,95660,40691,381.2774409366506,7597,78.13088020071085,5888,61.01818942086557,2372,24.440727576834625,77.35161970545354,79.75890529835911,63.31721993396855,65.09485340353095,77.06069733450329,79.46601685180832,63.21015271734146,64.98962773693893,0.2909223709502555,292.8884465507906,0.1070672166270938,105.2256665920197,65.47288,45.82665233089524,68443.32009199247,47905.76241991976,196.83298,116.52011914916658,205215.0637675099,121267.41930032716,242.99637,115.38873699493952,251293.9577670918,118413.76852096296,4277.49435,1911.715109109288,4434331.057913443,1961879.712654723,1435.93292,618.5352720279852,1487262.9834831697,632780.8091448724,2352.22228,977.5310473421196,2425248.1287894626,992266.4897359316,0.38006,100000,0,297604,3111.060004181476,0,0.0,0,0.0,16228,169.0779845285386,0,0.0,22859,236.1697679280786,2184352,0,78296,0,0,2544,0,0,37,0.3867865356470834,0,0.0,2,0.0209073803052477,0,0.0,0.07597,0.199889491132979,0.3122285112544425,0.02372,0.3083187171135054,0.6916812828864947,25.52710840011832,4.732151619872746,0.3413722826086957,0.1891983695652173,0.2282608695652173,0.2411684782608695,11.039422966055294,5.291824417578712,25.211318071613032,13207.297489030992,66.19152630126786,12.938368648185117,22.73487508828981,15.071450492781446,15.446832072011487,0.5448369565217391,0.7872531418312387,0.6945273631840796,0.5625,0.126056338028169,0.7041172365666434,0.9184952978056428,0.883399209486166,0.7078313253012049,0.1231884057971014,0.4936026936026936,0.7345911949685534,0.6309840425531915,0.5148221343873518,0.1267482517482517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681644562871,0.0044922172083354,0.0069214687316053,0.0092965130455986,0.0113824776978709,0.013515991036871,0.0157854484270636,0.0180739500260387,0.0203783231083844,0.0223906586090341,0.0246219504688429,0.0269128799556076,0.0292156338115133,0.0311446509757832,0.0331670333529588,0.0350525063369717,0.0369913559005824,0.0391686650679456,0.0414594560852285,0.0432719879046973,0.0579501165062746,0.0716491984880689,0.0847582160363594,0.0978522797823868,0.1098504438135244,0.1250304319752733,0.1382063751619274,0.1522842098531198,0.1650492708344478,0.1762444289319658,0.1899682936824623,0.2033587951676689,0.2160184660946822,0.2279918109063837,0.2386433732816355,0.2496534593078057,0.2603768524106484,0.2705937996193736,0.2807957848837209,0.2901936075151793,0.2982701764535724,0.3062100253732914,0.3142701653928968,0.3211774149105677,0.3279861077378928,0.334910251198088,0.3417924068355981,0.3480095581880116,0.3536661062976852,0.3592629692113032,0.360138400850869,0.3614656690140845,0.362885726363252,0.3636771041142626,0.3649289804417342,0.3653498421649453,0.3644631765749778,0.3652448449370211,0.3658645199965745,0.3670570957805,0.3687160294145304,0.3694097132779836,0.3700275574815407,0.3708950707224676,0.3724385369260035,0.3741223147398919,0.3753429355281207,0.3763491762923688,0.3785993726430057,0.3797534016998523,0.3807910639077092,0.382922301776717,0.3858456113839567,0.385643375334097,0.3848473426309838,0.3875885247869403,0.3859621939882243,0.3837540716612377,0.3823207443897099,0.3749524172059383,0.0,2.026209655879388,63.55705862950997,221.9027674731914,340.349036719852,fqhc2_80Compliance_baseline,14 -100000,95787,40662,379.57134057857536,7450,76.51351435998622,5782,59.73670748640212,2412,24.80503617401109,77.3507064425629,79.67726972926508,63.34838135415546,65.0692498507463,77.05753720703646,79.38497547577057,63.24225504506141,64.96632427441783,0.2931692355264346,292.29425349450366,0.1061263090940443,102.92557632847377,65.12066,45.63316038924944,67984.40289392088,47639.81814149044,195.47884,115.56426642422268,203456.00133629824,120027.3762060224,240.47811,114.23088335664104,246724.6494827064,116036.1253391294,4220.65981,1881.9225391655743,4363522.3777756905,1922024.2465184252,1420.98307,617.9913860637441,1469443.5883783812,631133.9180303634,2381.94484,977.1477293909184,2450816.352949774,988897.6353721974,0.3799,100000,0,296003,3090.2001315418584,0,0.0,0,0.0,16096,167.381795024377,0,0.0,22610,231.79554636850511,2188635,0,78510,0,0,2562,0,0,53,0.5428711620574816,0,0.0,0,0.0,0,0.0,0.0745,0.1961042379573572,0.3237583892617449,0.02412,0.3107042969743198,0.6892957030256801,25.528692705453075,4.576921209871061,0.3332756831546177,0.1898996886890349,0.2319266689726738,0.2448979591836734,11.295059999969329,5.745974680547186,25.59232765237653,13283.214155542302,65.06465872380504,12.80222763723304,21.706554045470792,14.94290712645376,15.612969914647444,0.5425458318920788,0.76775956284153,0.6933056564608199,0.5764354958985831,0.1306497175141243,0.7139705882352941,0.9192546583850932,0.8722466960352423,0.7484076433121019,0.1629629629629629,0.4898236092265943,0.7048969072164949,0.6381534283774609,0.5238558909444986,0.1230366492146596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715368096916,0.0048053527980535,0.0069509980009538,0.0091825125954818,0.0115198470798763,0.0135807873598908,0.015888060005707,0.0182363686461001,0.0204992999989781,0.0227898361628751,0.0248993267959792,0.0269862606072421,0.0290529777503725,0.0313970126514519,0.0335337244913742,0.0356618938407818,0.0379648599987583,0.040099523118391,0.0420392352348609,0.0441214746025631,0.0584773353368394,0.0729738490333239,0.0862249711709822,0.0988923219202555,0.1107762027717763,0.1266938671965837,0.1400803792032066,0.1528966075001064,0.1649889516327031,0.1768778198107445,0.1908692704241419,0.2047397257313291,0.2179647354069117,0.2294399720368327,0.2397933384632296,0.2510591228361263,0.2621087700141505,0.2720430469899684,0.2816278885274885,0.2909128360053555,0.2997227356746765,0.3077579056808757,0.3154321133691358,0.322098051193599,0.3296429828714325,0.3359448139935945,0.3414216207427049,0.3476180781758957,0.3533717691261255,0.3593170693090208,0.3601066264573628,0.3619637815878262,0.3637453458196998,0.3648584051568045,0.3657984482270771,0.3658345495045702,0.3669469568120042,0.3678616227635835,0.3697336104288683,0.371036092655773,0.3714350427511749,0.3734402674680093,0.3746909275343942,0.3762015696740777,0.3762765312310491,0.3775209309673003,0.3787337100680429,0.3796367112810707,0.3822838847385272,0.3868314408377803,0.3892356776251907,0.3904091032240585,0.3920421675130166,0.3954212739448684,0.396078431372549,0.3963974854932302,0.3975544756231384,0.3932607785684386,0.3904734740444952,0.3893735130848533,0.0,2.3949410997774305,59.69596920009135,220.59391375684223,341.54798179537426,fqhc2_80Compliance_baseline,15 -100000,95731,40437,378.780123470976,7465,76.86120483437968,5837,60.356624290982026,2372,24.370371144143487,77.31652017658898,79.67606761343121,63.31665033110207,65.06200874432601,77.02622852767512,79.3862976116332,63.21069491578322,64.95897961900712,0.2902916489138647,289.7700017980185,0.1059554153188457,103.02912531888352,65.9714,46.22498075023904,68913.30916839895,48286.32391831177,196.65792,116.22883129576998,204779.3609175711,120763.93995970166,240.32901,114.14235862440604,246537.54792073625,115869.89555574964,4219.16929,1879.1407262982325,4370676.708694153,1926313.1378949992,1430.01054,614.3436659958468,1482843.1751470263,630829.3237881672,2339.94988,965.7420694711446,2408251.120326749,979231.8460018162,0.37875,100000,0,299870,3132.4231440181343,0,0.0,0,0.0,16286,169.4644368073038,0,0.0,22617,231.8893566347369,2180278,0,78289,0,0,2595,0,0,35,0.3551618597946329,0,0.0,0,0.0,0,0.0,0.07465,0.1970957095709571,0.3177494976557267,0.02372,0.3064045656309448,0.6935954343690551,25.64117659941433,4.580381242662151,0.3366455370909714,0.1944492033578893,0.2319684769573411,0.2369367825937982,11.153784564304525,5.55886779026678,25.19262447177089,13167.513904394904,65.7626116882226,13.222109598446682,22.484664542490624,14.98725938000701,15.068578167278288,0.5403460681857118,0.760352422907489,0.6880407124681934,0.5709010339734121,0.1200289226319595,0.7084507042253522,0.902439024390244,0.8563432835820896,0.7310344827586207,0.1466165413533834,0.4863029205342993,0.7026022304832714,0.6249125262421273,0.5272556390977443,0.1136974037600716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021778547624112,0.0046329619529404,0.0069931489469677,0.0094191044230163,0.0115152994791666,0.0136170126087222,0.015777181728249,0.0175546092337857,0.0196627777380136,0.0216129329497404,0.0237477569853883,0.0258556070112027,0.028145405933467,0.0302128492137862,0.0321522512764969,0.0343448746164099,0.0363338992174237,0.0383486333696385,0.0406232783442999,0.0427150075532635,0.0578936927719019,0.0715638570606393,0.0841687990268048,0.0973111664931596,0.1095247635416556,0.1248413571368136,0.1381274663724699,0.1511916293229161,0.1636967715744717,0.1750557844146927,0.1885804762981872,0.2018764609124751,0.214578553019346,0.2261718621866013,0.2378016558041219,0.2492711855013024,0.2598954610436025,0.27086920799991,0.2810481261566058,0.289602768927499,0.2984462917081529,0.3068919915269114,0.3148325812220919,0.3219248769950798,0.3281850464561949,0.3344442798597739,0.3408606731998295,0.3467567223142602,0.3528992364631,0.3578895893633612,0.3589007106544223,0.3600104886901558,0.3611881188118812,0.3618845858061146,0.3630289200113353,0.3640696101340548,0.3649633877090713,0.3655578655578655,0.366623722408314,0.3675534783390257,0.3693880630800573,0.3704109043876231,0.3717228859712078,0.3729890496147087,0.3729466492222706,0.373689177852349,0.3732705666226534,0.3762651821862348,0.3756755802041753,0.3774988005757236,0.3784652102074536,0.3789270178830353,0.3829692376281765,0.3823101096037403,0.3842500237484563,0.3823387291616332,0.3824856120703064,0.3897361912613355,0.3954468802698145,0.392618767177071,0.0,2.3268389257203146,62.9141733483938,218.46278856591476,340.4950999389484,fqhc2_80Compliance_baseline,16 -100000,95679,40704,380.4387587662914,7613,78.43936495991805,5915,61.24645951567219,2390,24.59264833453527,77.40264542862671,79.7845018433529,63.35728834693722,65.11251791811408,77.11521111364695,79.49608113421435,63.25386046592672,65.01162501273699,0.2874343149797624,288.4207091385491,0.1034278810104964,100.89290537709417,65.4126,45.80591139976564,68366.49630535436,47874.36178441001,196.08058,114.82139677705518,204367.4264990228,119439.48368833476,235.46831,110.7574998353035,242803.8441037218,113142.6815005353,4296.50982,1890.3754584530632,4450091.441173089,1935420.115387884,1418.97466,605.5637978099686,1470229.4442876703,620129.4819063519,2357.99656,963.0863045873472,2428206.482091159,975290.1299093576,0.38111,100000,0,297330,3107.568013879744,0,0.0,0,0.0,16185,168.5531830391204,0,0.0,22179,228.54544884457405,2191157,0,78503,0,0,2575,0,0,30,0.3030968133028146,0,0.0,1,0.0104516142518211,0,0.0,0.07613,0.1997585998792999,0.3139366872455011,0.0239,0.3130608175473579,0.6869391824526421,25.731443505214017,4.595310578462444,0.3273034657650042,0.1989856297548605,0.2349957734573119,0.2387151310228233,10.88453542259505,5.356489826596395,25.212286787922256,13269.61425412378,65.92330496074706,13.699976379838915,21.434605088279778,15.43100014450959,15.357723348118787,0.5320371935756552,0.7493627867459643,0.6730371900826446,0.5798561151079137,0.1104815864022662,0.7041942604856513,0.913649025069638,0.8581235697940504,0.7138263665594855,0.1269841269841269,0.480684811237928,0.6772616136919315,0.619079386257505,0.541241890639481,0.1068965517241379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392168180575,0.0046824166134573,0.0068370866301481,0.0091811137178432,0.0112465807750582,0.0134105859112477,0.0154454718770071,0.017452363213276,0.0197232611850307,0.0218492554878984,0.024160234529557,0.0265484000123194,0.0287068548926063,0.0308557421959483,0.0332029839350385,0.0355647886887228,0.0377530416774527,0.0401490152128344,0.0420068434025647,0.0441285292922134,0.0586901789538564,0.0731704763201156,0.0867858791923771,0.099396196246739,0.1112130704890885,0.1260315713741588,0.1393870577498567,0.1521306379671914,0.1641822941710744,0.1763911080608666,0.190592593390263,0.2038546029066432,0.2161762467105978,0.2283968163729391,0.2393026069739302,0.2511153177687003,0.2622062692290542,0.27222790128172,0.2823858552221731,0.2909063886221246,0.2988488494267339,0.3069355459860658,0.31540287438444,0.3227492971226894,0.3303258510083555,0.3372181746578714,0.3435120231083768,0.3496245855195456,0.3551231495248562,0.3607108043312169,0.3618582893091906,0.363266875377602,0.3644335764576921,0.3652512436017591,0.3661033546491787,0.3671139809955167,0.3673482316793107,0.3686511719648904,0.3692157901030012,0.3704332291201429,0.3716119828815977,0.3722087306758277,0.3719016915089599,0.3741519446496943,0.3745958206650258,0.3761686526122823,0.3764513632063301,0.3764962258787859,0.3777447756444256,0.3799456478299097,0.3803483615974999,0.3840322580645161,0.3849532174909299,0.3855727126065914,0.3847546450690805,0.3881273095720586,0.3909062693978895,0.3967280163599182,0.3945691327237461,0.3880998080614203,0.0,2.222469931534764,60.09014076495979,220.01852117030103,353.7041062382329,fqhc2_80Compliance_baseline,17 -100000,95722,40976,383.5168508806753,7525,77.35943670211655,5859,60.571237542048856,2349,24.153277198554147,77.33907921770925,79.70585295870681,63.32552877917672,65.07553999435027,77.04929061694877,79.41591827018523,63.219505858486976,64.97197818226789,0.2897886007604882,289.93468852158344,0.1060229206897389,103.56181208237558,66.5016,46.59831877501978,69473.68421052632,48680.88712628213,196.17201,115.83599402928958,204324.35594743112,120397.96914950544,241.9513,115.01858567714844,248811.85098514447,117095.2081148229,4285.95608,1907.49300111112,4438513.957084056,1953752.795711665,1434.186,617.8623137625142,1480497.1375441384,627755.5879159836,2318.93884,964.9072159539436,2387118.17555003,977920.5772484732,0.38329,100000,0,302280,3157.894736842105,0,0.0,0,0.0,16212,168.69685129855208,0,0.0,22801,234.146800108648,2179614,0,78173,0,0,2624,0,0,38,0.3969829297340214,0,0.0,0,0.0,0,0.0,0.07525,0.196326541261186,0.3121594684385382,0.02349,0.3129559748427672,0.6870440251572327,25.487817756505528,4.617020169437671,0.3275302952722307,0.1940604198668714,0.2386072708653353,0.2398020139955624,11.197250631512553,5.589345853756667,25.199525122194373,13362.493782867548,65.80223290561547,13.319445507645405,21.659253714280723,15.463438662735468,15.360095020953882,0.53899982932241,0.7607739665787159,0.6868160500260553,0.586552217453505,0.1103202846975089,0.7058011049723757,0.9297297297297298,0.8445807770961146,0.7210031347962382,0.1296296296296296,0.4842439356155067,0.6792698826597132,0.6328671328671329,0.5468025949953661,0.105726872246696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0046437117248651,0.0070643403063244,0.0094395220289383,0.0115459345086111,0.0138915764495004,0.0160097894253811,0.0182543976967605,0.0204298656414241,0.0224810012495135,0.0247879639410503,0.0270123147396855,0.0294035975440436,0.0314125877007716,0.0338776605627696,0.0358730946619511,0.0379674712524603,0.0398713158987131,0.0419279363593823,0.0437559252815485,0.0591281649699817,0.0730615106144783,0.0868370834818713,0.0998874833065186,0.1120813296211929,0.1270138470163858,0.1405805712345626,0.1536577835035082,0.1657867738212285,0.177057624208606,0.1909452425342975,0.2050854432435944,0.2176945508356546,0.2292439512819671,0.2410675944990696,0.2531813949363721,0.2639242485148957,0.2744831001609508,0.2842077780552591,0.2932842749561569,0.3019309131320615,0.3096996150110582,0.317585953952817,0.3256499341080627,0.3325927274934742,0.3390289541067559,0.3445598769830851,0.3510470671952831,0.3570403135063826,0.362154032875122,0.3633696676086664,0.3645074688511048,0.3651759127280938,0.3663855561351649,0.3676871508379888,0.3686902037870295,0.3696801333439162,0.3699986816953398,0.3706769241336676,0.3715599626356255,0.3728034654863923,0.3750918661237462,0.3759520302966547,0.3765801430563678,0.3788884330429326,0.3806323387117864,0.3813087864189034,0.3836903895446346,0.3865644215138879,0.3886487351905219,0.3884776311554554,0.3907056798623063,0.3918849840255591,0.3918626237623762,0.3952981325244099,0.3911266081519778,0.3964459820726529,0.4001662164969873,0.394505805720759,0.3944160440424695,0.0,2.442738377208834,63.81592141103609,212.17756009641707,345.3423153719417,fqhc2_80Compliance_baseline,18 -100000,95693,40551,379.9964469710428,7485,77.03802785992706,5895,61.09119789326283,2384,24.59950048592896,77.30793472821749,79.68258829310574,63.31631099018998,65.06962415913233,77.02128250361811,79.39205633518527,63.21296655741877,64.96659649083679,0.2866522245993792,290.5319579204644,0.103344432771216,103.02766829553887,66.1001,46.28606218290702,69075.16746261482,48369.32919117074,196.52559,115.4882116761933,204864.0861923025,120179.33566320762,244.15108,115.59982316287616,251423.3538503339,117996.89004207212,4265.79428,1897.011765164469,4424372.869488886,1948974.966992852,1493.18909,641.9002777491064,1547121.9315937427,657517.8725184773,2352.6192,963.713163276592,2429638.740555736,983546.4047956298,0.37941,100000,0,300455,3139.7803392097644,0,0.0,0,0.0,16180,168.549423677803,0,0.0,22998,236.5794781227467,2180819,0,78372,0,0,2679,0,0,35,0.3657529808867942,0,0.0,1,0.0104500851681941,0,0.0,0.07485,0.1972799873487783,0.318503674014696,0.02384,0.3117408906882591,0.6882591093117408,25.71841169906184,4.561134038604032,0.3190839694656489,0.2047497879558948,0.240373197625106,0.2357930449533503,11.179065747293835,5.655122577402738,25.252494968707293,13230.320614408152,66.40338409931363,14.205082922818988,21.261418709330776,15.67193144322922,15.264951023934652,0.5572519083969466,0.7754763877381938,0.7070707070707071,0.5935074100211715,0.1280575539568345,0.7263157894736842,0.925925925925926,0.8682008368200836,0.738255033557047,0.1845018450184501,0.5033557046979866,0.706875753920386,0.6521739130434783,0.5549597855227882,0.1143878462913315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0045296096631672,0.0067560027997849,0.0092833346875761,0.0114107883817427,0.0137978086432324,0.0158456628361085,0.0180091883614088,0.0200269888977488,0.0222538411931498,0.0245110099643252,0.0267248459958932,0.0288984645762415,0.0309979293506814,0.0329587551207834,0.0350552551869579,0.0370819346015168,0.0389929924733973,0.0410772239327619,0.042915368017262,0.0571762813482488,0.0713089531305603,0.0845162034851393,0.0972918967239838,0.1095110586350123,0.1248651735295983,0.1386743613680726,0.1522331502533316,0.1650499957268609,0.1767961727415098,0.1910936406224759,0.204251636284957,0.2172362426469788,0.2291771446065032,0.2400998811985744,0.2508500858392867,0.2616069535721857,0.271496877988412,0.2809042317774827,0.2895176996219498,0.2980593316504944,0.3068733547821,0.3149238001634122,0.3224606374807988,0.3290789633775398,0.335419675814476,0.3412351996789083,0.3478771177791386,0.3541306804161201,0.3590863374093483,0.3603326313515848,0.3615564116371871,0.3630258991178466,0.3644199376042951,0.3654095840733057,0.3653050870908727,0.3654249904568011,0.3667569710585436,0.368150390423446,0.3695093688805849,0.371259292803502,0.3721583550835807,0.3727157628191601,0.3732250151900443,0.3740635682595097,0.373874111140374,0.3755035101852917,0.3757190529159383,0.3770380918476326,0.3777296082209377,0.3800110844263809,0.3827406251681282,0.3841436146425605,0.3887902416428626,0.3922315308453922,0.3946295852313594,0.3980999080600674,0.395240032546786,0.3990687482881402,0.4003831417624521,0.0,1.944288080047476,63.27039716214969,225.32980667940143,340.21916307808635,fqhc2_80Compliance_baseline,19 -100000,95710,40655,380.7648103646432,7581,78.10051196322225,5870,60.79824469752377,2340,24.062271444990078,77.38171245272493,79.75509947371397,63.34258245905804,65.09468820615568,77.0900230011911,79.4628224615111,63.23638345578468,64.99095468701606,0.2916894515338271,292.2770122028737,0.1061990032733604,103.7335191396238,65.14926,45.6743430671828,68069.43893010134,47721.59969405789,197.62107,116.6235549730664,205884.7664820813,121258.0400043716,244.21379,115.50100656820888,252297.69094138543,118399.76289843024,4218.4472,1878.4097634665727,4369039.274892906,1924459.699847969,1428.3742,620.1599191631636,1474778.403510605,630570.4774567174,2309.05576,961.0823934550496,2376776.031762616,973542.240981254,0.37952,100000,0,296133,3094.0654059136978,0,0.0,0,0.0,16230,169.02100094034063,0,0.0,22935,236.70462856545817,2186527,0,78406,0,0,2551,0,0,49,0.5015149932086511,0,0.0,0,0.0,0,0.0,0.07581,0.1997523187183811,0.3086664028492283,0.0234,0.302591847005536,0.697408152994464,25.63847325591008,4.617673443201336,0.3441226575809199,0.1884156729131175,0.2374787052810903,0.2299829642248722,10.93764690985437,5.382314088367278,24.92305550781084,13203.615875719464,65.79232777977526,12.835967499587866,22.66143223499707,15.497639761810758,14.797288283379562,0.5412265758091993,0.7386980108499096,0.693069306930693,0.5803443328550932,0.1118518518518518,0.7104499274310595,0.923529411764706,0.8828633405639913,0.7508417508417509,0.125,0.4893143365983971,0.6566579634464752,0.6369467607440668,0.5341841385597083,0.108411214953271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020154756117322,0.0043082038337945,0.0064435604984373,0.0085935436686102,0.0109038387208332,0.0131975560081466,0.0155289319398419,0.0179264159418514,0.0202304161597988,0.0223666700788207,0.0245327701629025,0.026673237441094,0.0288969786717673,0.0310980634528224,0.0330433526309814,0.0350802824619265,0.037170139608103,0.0391615648023243,0.0412575921457692,0.0431225836034139,0.0576489263931823,0.0717441373534338,0.0851240189700759,0.0980338526599269,0.1100691953925994,0.1256107104333664,0.138743594368349,0.1525981284532592,0.1647758834337478,0.1763652160854688,0.1908625612844135,0.2048453619407428,0.2171439758970622,0.2289275172187602,0.2397289656917204,0.2513506930605376,0.2619557458957887,0.2721659224600434,0.28138611615245,0.2910587911962073,0.2998761846353232,0.3075492878692205,0.3148143763613978,0.3216327998561409,0.3279337959193593,0.3346608633466086,0.3401632162615465,0.3462268356365026,0.352113041223749,0.3572871687200412,0.3591719084627507,0.3603710227898271,0.3613428796933138,0.3627356106015743,0.3637159735209428,0.3637823945170272,0.3636651519229856,0.3656323329121609,0.3663344369730689,0.367816091954023,0.3691693081006058,0.3700015836566632,0.3706728654897279,0.3717374759367865,0.371831936012335,0.3739214306196397,0.3749037501782404,0.3773905385002516,0.3765288907633909,0.3768693918245264,0.3756070741317694,0.3734197557317334,0.3746489660454429,0.3761864341384366,0.378296049500238,0.3756766510285095,0.3753874767513949,0.3692783505154639,0.3721191680719505,0.3670338316286388,0.0,2.053766936772377,60.97824767114682,222.64318648299405,344.9748639459469,fqhc2_80Compliance_baseline,20 -100000,95852,40920,383.50790802487165,7616,78.16216667362183,5885,60.76033885573592,2415,24.78821516504611,77.44506122741345,79.72213541748148,63.40474875222951,65.08364531993234,77.15413804710548,79.43218496437775,63.299038328261496,64.98143749309286,0.2909231803079706,289.950453103728,0.1057104239680128,102.20782683948926,65.79936,46.13002512511319,68646.83053040103,48126.30422433877,199.58322,118.50172238460428,207595.69962024788,123005.39621980168,247.42861,118.2036085673033,253713.20368902056,119933.52762156753,4291.3826,1911.791557602072,4436057.056712432,1953489.0952740405,1436.08531,621.0848385079572,1480464.852063598,630204.4281644013,2378.30828,972.634573030214,2443694.0908901226,982026.0083621846,0.38166,100000,0,299088,3120.3104786545923,0,0.0,0,0.0,16508,171.556149063139,0,0.0,23235,238.09623169052287,2182509,0,78399,0,0,2605,0,0,38,0.3860117681425531,0,0.0,0,0.0,0,0.0,0.07616,0.199549337106325,0.3170955882352941,0.02415,0.3201798201798201,0.6798201798201798,25.31659649996096,4.553482747059797,0.3320305862361937,0.1918436703483432,0.2395921835174171,0.2365335598980459,11.234608779506637,5.700732522426641,25.46518853203664,13255.81624857501,66.00905909716664,13.150884226514195,22.045730157519863,15.69108428690699,15.121360426225593,0.545964316057774,0.7723649247121346,0.6908904810644831,0.5758865248226951,0.1285919540229885,0.7214386459802539,0.904494382022472,0.8987603305785123,0.7269736842105263,0.1642335766423357,0.4902619207521826,0.7115135834411385,0.6224489795918368,0.5343580470162749,0.1198568872987477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0045482632522614,0.006905082992811,0.0090942308473062,0.0112585607738736,0.0132667283881535,0.0156033569624378,0.0178857311837825,0.0198000592265825,0.021881390593047,0.0240323571574851,0.0263165991487616,0.0285626251733169,0.0305293258450081,0.0324126065051874,0.0345268938181893,0.0365992388516588,0.0386616098814556,0.0406644173371398,0.0424843402076873,0.0569864442127215,0.0706345723897281,0.0843498382317526,0.0972579308028921,0.1094872847027135,0.1253285203128463,0.1391539153915391,0.15200067999745,0.1640524199997867,0.1758221765606104,0.1899255215106344,0.2042458076428857,0.2173554347000141,0.2289276317944127,0.2397803404722679,0.2509708469325662,0.2611743986445817,0.271216343776689,0.2815355660869368,0.2903635552198839,0.2991673412744304,0.3078551545065381,0.3162828129808033,0.3229862757778257,0.3300590106607737,0.3368116299125293,0.3432430062264316,0.3492944832153227,0.3553029026277921,0.3611309193671922,0.3626098205142025,0.3637589804288585,0.364484928691098,0.3657772839434912,0.3669114919504414,0.3673800061143381,0.3681058187679762,0.369165464796119,0.3706618412741767,0.3716762078005457,0.3730593264831621,0.3741236582564265,0.3746483013480032,0.3750083992205523,0.3749458066380847,0.3760967202841028,0.3763796594700966,0.3784115591651714,0.378393546124167,0.3800031829394446,0.3839093120381844,0.3851855830692378,0.3885354370785087,0.3927103528499418,0.3954358040080544,0.3933470923880053,0.3961611076148521,0.3980602993885726,0.4009661835748792,0.398,0.0,2.4816665003450398,62.27300420484169,224.28528880758472,337.931899896743,fqhc2_80Compliance_baseline,21 -100000,95686,40437,378.10128963484726,7618,78.32911815730618,5942,61.534602763204646,2381,24.51769328846435,77.29747507811412,79.70090286136447,63.28577397120039,65.06586684400675,77.00688917494335,79.4089366490691,63.18019875228309,64.96219157299042,0.2905859031707649,291.9662122953639,0.105575218917302,103.67527101632844,65.74656,46.06636292384008,68710.74138327446,48143.2633027194,196.7793,115.46522979209068,205096.5658508037,120123.83980967646,239.28121,112.8570220093647,246483.4040507493,115198.59161976948,4323.5326,1912.278349467846,4478320.214033401,1959078.791641501,1455.44637,619.8823183563752,1506274.2825491712,633100.0470205221,2362.88762,970.9714461293606,2434312.940242042,985837.3701931172,0.37881,100000,0,298848,3123.2155174215663,0,0.0,0,0.0,16276,169.51278138912693,0,0.0,22523,231.87300127500365,2180725,0,78235,0,0,2566,0,0,40,0.4075831365089981,0,0.0,2,0.0209016993081537,0,0.0,0.07618,0.2011034555581954,0.3125492255185088,0.02381,0.3138640873015873,0.6861359126984127,25.69450046939778,4.56994941508895,0.3187478963312016,0.2049814877145742,0.2346011443958263,0.2416694715583978,10.956825317299424,5.359775005724458,25.07455498227193,13280.971411521314,66.3863237021273,14.137968350686837,21.27782557558495,15.312803547768372,15.657726228087135,0.5373611578593066,0.7602627257799671,0.691129883843717,0.56025824964132,0.123259052924791,0.7019579405366208,0.9226519337016574,0.8448275862068966,0.7378277153558053,0.1573426573426573,0.487617795310103,0.6915887850467289,0.6412587412587413,0.518189884649512,0.1147826086956521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.004594972917047,0.0069343621503629,0.009155573620567,0.0113423665364583,0.0135468231171952,0.0159418220390844,0.0182798553951103,0.0204035713920451,0.0227237816305004,0.0247607520539936,0.0269770499886996,0.029392399333347,0.0314393471002844,0.0336905794407962,0.0357793040671935,0.0378627694859038,0.039862107634959,0.041770268723796,0.0437501302707547,0.0585390312437977,0.0725875677825932,0.0860554675285155,0.0982190757708046,0.1101722628353217,0.1258093867704939,0.139701511548913,0.1524059045306409,0.1646706586826347,0.1755150682284229,0.1892133813601363,0.2021570646577421,0.2158417567096549,0.2278145405144835,0.2393094553031054,0.2514146233218684,0.2623537170129768,0.2726310097778578,0.2821494721770848,0.2909916417294397,0.2995387966997311,0.3077562975981253,0.3157819888363494,0.3229049071649893,0.3297421663866773,0.335724958938958,0.3420917311527222,0.3480130675582553,0.3542841549936329,0.3603400783981354,0.362026787765749,0.3636753022452504,0.3653394459065568,0.3662366309190381,0.3674618903574781,0.3677543186180422,0.3685579683707945,0.3698753986257684,0.3715774190793406,0.3723812755621439,0.3727940349956911,0.3735716262702147,0.3746039074140138,0.376052301629948,0.3762564782451488,0.3774611060269316,0.3787224304145092,0.3807763984964781,0.3832356472000565,0.3868143291220214,0.3867811868454896,0.3863368669022379,0.3856724774144293,0.3868714011516315,0.387425092742319,0.3857776711835951,0.3869761645116061,0.3900884227842895,0.3957115009746588,0.4048080651415277,0.0,2.1464498310600915,60.92555647958682,224.5105185825057,350.6281292994601,fqhc2_80Compliance_baseline,22 -100000,95849,40731,381.3811307368882,7632,78.64453463259919,5891,61.08566599547204,2371,24.538597168462893,77.32864418348662,79.63934652951825,63.32870225298407,65.03844910630158,77.04253317547703,79.34804398877138,63.22525707839591,64.93463901205713,0.2861110080095841,291.30254074686945,0.1034451745881597,103.81009424445152,66.29326,46.433654104435256,69164.26879779654,48444.588993557845,197.79711,116.7245454321644,206005.15394005156,121421.5228454803,239.62074,112.67299232213392,247482.16465482165,115639.4598793504,4246.91216,1886.7838983085007,4405537.261734604,1943197.2668556808,1433.16292,618.8342425187135,1483196.423541195,633601.0417622653,2328.72238,956.6717805288192,2410594.0176736326,981574.0492008282,0.38139,100000,0,301333,3143.830399899842,0,0.0,0,0.0,16292,169.60010015753946,0,0.0,22627,233.58616156663084,2177710,0,78298,0,0,2660,0,0,50,0.511220774342977,0,0.0,1,0.0104330770274076,0,0.0,0.07632,0.2001101234956344,0.3106656184486373,0.02371,0.3114549538307961,0.6885450461692039,25.55485186930377,4.5936879542449205,0.3337294177558988,0.1980987947716856,0.2410456628755729,0.2271261245968426,11.243496650509064,5.619490377561528,25.19229805178042,13304.072317327897,66.26614450435014,13.508217673486792,22.16844324432613,15.865234327736214,14.724249258801011,0.543201493804108,0.7617823479005998,0.6856561546286877,0.5690140845070423,0.1158445440956651,0.6926345609065155,0.916923076923077,0.8435517970401691,0.7079646017699115,0.149090909090909,0.4960928778745255,0.7019002375296912,0.6356329537843268,0.5254394079555966,0.1072436500470366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686990428925,0.0044297125248347,0.0067468168213869,0.0088269949618072,0.0109517998779743,0.0130217878232539,0.0152583834471511,0.0171961586741098,0.0195495329777014,0.0217649346131019,0.0238836861411094,0.025963630392841,0.028034982067066,0.0302241072255793,0.0324722866718226,0.0342244994938121,0.0366530071608924,0.0389001783270435,0.0410054009140008,0.042723478659076,0.0574989570296203,0.0718669301299543,0.0854504674464428,0.0984175020490511,0.1106180699017665,0.1260583254938852,0.1399245026933027,0.1531889085143963,0.1655346959697571,0.1777463308997738,0.1919390963518111,0.2056277992946318,0.2181397068418076,0.230281566981462,0.2405219266398222,0.2520962793119108,0.2632636655948553,0.272815293508365,0.2829760174418604,0.2923738532110091,0.3004857576776377,0.3082894567116573,0.3161494075463633,0.3241970175796974,0.3313245678110543,0.3383990518752623,0.3444763613100688,0.350563861815584,0.3564321712474671,0.3614740102450065,0.3627354350907986,0.3642779212528829,0.3656268576442947,0.3665286554804968,0.3681892162279195,0.3689087271048176,0.3702089067795261,0.3715736207948046,0.3722412611377655,0.372733618514077,0.374228627332932,0.3749528329990269,0.3753393522318328,0.3756597120848025,0.3757587482769461,0.3764619306683487,0.377479646829492,0.3797180249099071,0.3805213103205354,0.3823880834793691,0.3841499747903011,0.3870501285347044,0.3865038478661833,0.3861569292431016,0.3850837138508371,0.3874788494077834,0.3908401671050596,0.3860694472981302,0.3925389755011136,0.3976377952755905,0.0,1.4894168378619137,63.52120941935217,220.896317348353,345.5646157782105,fqhc2_80Compliance_baseline,23 -100000,95739,40874,381.6522002527705,7645,78.48421228548449,5898,60.94694951900479,2386,24.49367551363603,77.35098256499538,79.6998389202427,63.33757887846742,65.07119893789489,77.05468867439106,79.40365170595273,63.22812234802496,64.96481276665696,0.2962938906043177,296.1872142899722,0.1094565304424648,106.38617123792926,65.50126,45.90669092702039,68416.48648930948,47949.83332499859,197.58369,116.0877060897685,205722.76710640383,120601.05534008393,239.49695,113.07731393470937,246241.87635133017,115049.76931376976,4297.2008,1902.32323513504,4443843.606053959,1943057.1624058909,1422.28748,610.135813181314,1469413.5932065304,621341.3106739455,2362.10644,983.654605108359,2427859.973469537,993938.2018568526,0.38186,100000,0,297733,3109.8402949686124,0,0.0,0,0.0,16252,169.06380889710567,0,0.0,22493,231.0657098987873,2184968,0,78387,0,0,2528,0,0,36,0.3760223106570989,0,0.0,0,0.0,0,0.0,0.07645,0.2002042633425862,0.3120994113799869,0.02386,0.3116786511281924,0.6883213488718076,25.76091211852676,4.61894458825091,0.3345201763309596,0.1922685656154628,0.2309257375381485,0.2422855205154289,11.01329293851212,5.425912388604826,25.38592885011654,13356.548635681527,65.94857810809476,13.090320589406442,22.05291879664411,15.129914090857255,15.67542463118698,0.5350966429298067,0.7451499118165785,0.696908261530664,0.5675477239353891,0.1140657802659202,0.6879942487419123,0.9233038348082596,0.862144420131291,0.7133333333333334,0.1220338983050847,0.4879076991346794,0.6691823899371069,0.6470976253298153,0.5263653483992468,0.1119929453262786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0045813441988222,0.006879547045752,0.0091411391890793,0.0116318085225366,0.0138245564027649,0.0160650757892376,0.0183092985517895,0.0206157116866657,0.0231301428746878,0.0251760581427531,0.0273868547203317,0.0296615397269287,0.0318405091186192,0.0339093206788053,0.0360306353422703,0.0383018379497799,0.0403146305270476,0.0422749012268662,0.0443293813681161,0.059002839485552,0.0725427629858241,0.0854410469359506,0.0981546711529362,0.1103859819291716,0.1263783315184641,0.1401086080352976,0.152958705832269,0.1656909040405119,0.1774430605173098,0.1917396503247907,0.2051393068213798,0.2176727185701698,0.2292952506018822,0.2404051524826599,0.2513137180993769,0.2616433000055856,0.2720888618791992,0.2824803596566913,0.2916399082568807,0.3003959891624018,0.3092386404879819,0.3173941861566139,0.3258115929871655,0.3330782963529712,0.3403757314444102,0.3459771984932484,0.3517156238863717,0.3571252641267289,0.3627242322894496,0.3649199535649685,0.3665033469049755,0.3673965592796256,0.3687937088302719,0.3695717012646146,0.3692302961345675,0.3694130745983776,0.3704468148343846,0.3717567869224032,0.3732432238634734,0.3743885000376307,0.3759846034800896,0.3773922563530328,0.378947841322611,0.3791196851534394,0.3805989719920277,0.3810532947678914,0.3828312871788381,0.3832987003838974,0.3825805936801787,0.3833233903905282,0.3858651938441739,0.3914785373608903,0.3921658986175115,0.3889626398634553,0.3839328537170264,0.3804671578617338,0.3857701007608472,0.3839485458612975,0.3807303807303807,0.0,2.563809288907319,61.350323715109695,216.41640139543813,351.8847388091655,fqhc2_80Compliance_baseline,24 -100000,95844,40963,382.548725011477,7563,77.6783105880389,5898,60.97408288468762,2385,24.47727557280581,77.51248185563044,79.79904122490812,63.42745123530996,65.11121792823161,77.22183695405602,79.50734966992532,63.322625787497095,65.00838210697036,0.2906449015744243,291.69155498280475,0.104825447812864,102.83582126125168,65.50918,45.88956728798071,68349.79758774675,47879.43667624547,197.25489,115.76184274540078,205254.67426234297,120227.91488815236,241.39704,113.96915115392426,248366.81482408915,116182.79695806988,4285.66015,1895.797622766844,4433894.349150703,1940402.2920233333,1469.66715,633.8071899693501,1519376.434622929,647271.8062365405,2355.4546,965.1205899145108,2421315.3666374525,977559.4742022648,0.38346,100000,0,297769,3106.808981261217,0,0.0,0,0.0,16256,169.02466508075625,0,0.0,22721,233.62964817828973,2192032,0,78577,0,0,2503,0,0,32,0.3234422603397187,0,0.0,0,0.0,0,0.0,0.07563,0.1972304803630105,0.3153510511701706,0.02385,0.3006519558676028,0.6993480441323972,25.927668543650373,4.631696700181722,0.3263818243472363,0.1976941336046117,0.2353340115293319,0.2405900305188199,11.174630419602751,5.548096831969117,25.030948094220587,13394.920257140184,65.63706192896258,13.36440625901238,21.618508119133303,15.220138402497534,15.43400914831936,0.5359443879281113,0.7367066895368782,0.6862337662337662,0.5814121037463977,0.1226215644820296,0.7048327137546468,0.9088050314465408,0.864406779661017,0.7328767123287672,0.1406844106463878,0.486053151768065,0.6721698113207547,0.6283551273227804,0.541058394160584,0.1185121107266436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025094610729969,0.0050434976352275,0.0074499032019379,0.0097512962831427,0.0120685101282025,0.0144411674972032,0.0163914397996375,0.018600097895252,0.0209735227145088,0.0230596175478065,0.025037120475142,0.0273102995620917,0.0295924867964078,0.0317092750401383,0.0336910689800925,0.0359544294906886,0.0377893440672178,0.040039396609818,0.0419873892403419,0.0439838430947968,0.0583793930545416,0.0725099851529662,0.0852412636873264,0.0987396281903161,0.1115615457512898,0.1274346191220584,0.1409116440751613,0.1540825332014843,0.1665599590242653,0.1784333672431332,0.1920430107526881,0.2050719863479754,0.2183598584362854,0.2304551013277428,0.2419951888750975,0.2536493121599504,0.2649755467174671,0.2754588547165996,0.2846399528846807,0.2936087045968866,0.3025911996123583,0.3112356670084832,0.3185711252152985,0.3259264568848111,0.3331436320926065,0.3395918066426649,0.3465625623628018,0.351866872829586,0.357873685568673,0.3634022650235173,0.3641681312636677,0.3653100111036477,0.3667681259029638,0.3684756457724057,0.3700285879338182,0.3704614914425428,0.3707520141823765,0.3708766862506975,0.371607658280815,0.3734743839459624,0.3748710155531791,0.3761678543151227,0.3769211388259007,0.3781877616819291,0.379393968497887,0.3802128047035563,0.3800074025567292,0.3809986826422433,0.3812475920283002,0.3817579557553531,0.383712001445413,0.3867249184124645,0.3873631529558961,0.3885731605667955,0.3880834346646712,0.3891834570519618,0.3923685010641532,0.3963585434173669,0.3941305540318157,0.3986280487804878,0.0,2.2267343278193485,59.212273390858286,223.32983275540823,348.8406748785308,fqhc2_80Compliance_baseline,25 -100000,95753,40672,381.5024072352824,7523,77.50148820402494,5823,60.39497456998736,2387,24.67807797144737,77.31288813594676,79.67268650795513,63.318020272784125,65.06270492526333,77.02505780146431,79.37990660784979,63.21415216257759,64.95895489930895,0.2878303344824502,292.7799001053444,0.1038681102065339,103.75002595438332,65.5842,45.953272460536986,68493.10204380019,47991.47019992793,194.42102,114.29213682612414,202639.09224776248,118956.19649110116,234.47254,110.31103825947324,242256.05464058567,113196.86640485584,4235.16074,1863.0702512307248,4393196.714463254,1915895.231721956,1458.56377,623.3342941394459,1510984.4286863075,638711.0583874882,2353.19088,962.6248533096846,2433589.1303666728,983944.7715090088,0.38127,100000,0,298110,3113.322820172736,0,0.0,0,0.0,16071,167.3994548473677,0,0.0,22038,227.5646716029785,2186183,0,78497,0,0,2488,0,0,38,0.3968544066504443,0,0.0,0,0.0,0,0.0,0.07523,0.1973142392530228,0.3172936328592317,0.02387,0.3143073620406617,0.6856926379593383,25.350176289051195,4.651490073462087,0.3204533745492014,0.200755624248669,0.2404258973037953,0.2383651038983341,11.23543128016718,5.542345091107952,25.270863245753528,13271.616221904653,65.2688553875197,13.581897642092784,21.001112872609745,15.51118036443826,15.174664508378909,0.5423321312038468,0.7553464499572284,0.6827438370846731,0.5835714285714285,0.132564841498559,0.6810534016093636,0.887905604719764,0.8270509977827051,0.735593220338983,0.1418439716312056,0.4997755834829443,0.7012048192771084,0.6367491166077739,0.5429864253393665,0.1301989150090416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179910470133,0.0041557283167273,0.0064834261711259,0.0085117620769512,0.0108216962805504,0.0131873727087576,0.0154379524829203,0.0177537748466069,0.0199869139386999,0.0220151546180626,0.0241054034656003,0.026061776061776,0.0282725851571499,0.0304887469743008,0.0324876971804104,0.034570784844664,0.036448733613602,0.0383078950371976,0.0405444751783374,0.0424880183371535,0.056876787839559,0.0714083932326815,0.0847612256454352,0.0972347807801493,0.1095623200936303,0.1254693730762315,0.1392538041978819,0.1518999467802022,0.1644110704023756,0.1764516647900917,0.1906351274238525,0.203785011355034,0.2167980429464528,0.2296091340580502,0.2401782276252819,0.2518164901865225,0.2628642212277784,0.2736896578879276,0.2839752906976744,0.2931571831244127,0.3010997916184302,0.3092046783625731,0.3165000295805478,0.3238220836830116,0.3307686697782964,0.3370902902804153,0.3434794050199872,0.3497822377301785,0.355620971820575,0.360835516046247,0.3619064340122089,0.3629754300771173,0.3635348495342558,0.364653146487945,0.3651885792749362,0.3663363289425089,0.366505318132603,0.3669082564263426,0.3674440987917433,0.3692169378764722,0.3715854210685179,0.3730052794102998,0.375087001455297,0.375857647402875,0.3763508601889992,0.3771904474161259,0.3789207371417071,0.3817828840584322,0.3852304630583887,0.3871683200258085,0.3882396415538824,0.3879740385131148,0.3904044559782265,0.3920603169718418,0.3922072973230446,0.3940047961630695,0.3975377902446626,0.4017710049423393,0.4062588102621934,0.3946449359720605,0.0,1.621955678313126,61.26917413858675,218.0323749883024,344.7577166682147,fqhc2_80Compliance_baseline,26 -100000,95790,41088,385.0610710930159,7668,79.05835682221526,6040,62.56394195636288,2400,24.772940808017538,77.37208356525132,79.71071742139763,63.35007434272507,65.07944132630308,77.07834387013078,79.41387681859977,63.24370131460674,64.97410216355053,0.2937396951205357,296.8406027978574,0.1063730281183339,105.33916275255706,66.33594,46.47665878104295,69251.42499217037,48519.32224766985,199.00338,116.7642219680872,207262.36559139783,121410.11911441378,246.06606,115.38804049742892,253895.678045725,118188.6508711332,4354.74145,1930.665259074182,4511807.850506316,1981361.085062217,1467.2763,628.2050034968346,1516848.2618227373,641177.7433210752,2378.75874,980.5657808885154,2456006.702160977,999169.8083058848,0.38396,100000,0,301527,3147.792045098653,0,0.0,0,0.0,16388,170.57104081845702,0,0.0,23185,239.0124230086648,2182553,0,78408,0,0,2611,0,0,36,0.3758221108675227,0,0.0,2,0.0208790061593068,0,0.0,0.07668,0.1997083029482237,0.3129890453834116,0.024,0.324140489735345,0.675859510264655,25.722105796890503,4.57374515567566,0.3342715231788079,0.2021523178807947,0.221523178807947,0.2420529801324503,10.830884657301045,5.281671410213444,25.41334476057745,13389.539929326687,68.02454092778191,14.266469545102172,22.9502629265914,14.780061026200164,16.027747429888176,0.5471854304635762,0.7886977886977887,0.6934125804853888,0.5769805680119582,0.1162790697674418,0.702683615819209,0.9299719887955182,0.8762886597938144,0.7060931899641577,0.1389830508474576,0.4995674740484429,0.7303240740740741,0.635593220338983,0.5429650613786591,0.1105398457583547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.0046125461254612,0.0067077997199163,0.0090409483853272,0.0113800467812468,0.0136321062062225,0.0159414528738443,0.0181949915300936,0.0204688521909744,0.0227509978507829,0.0250253635441325,0.0272375537515779,0.0293673228144112,0.0313117792421746,0.0333388330892816,0.0352323683177319,0.0373245559557818,0.0393956363033018,0.0410726902456257,0.0429966477189914,0.0581028905353229,0.0722936931283338,0.0858239074145901,0.0988105745387298,0.1117209557119379,0.1269742332843846,0.1414901395614992,0.1537660017862459,0.1660069351827154,0.1778625218257581,0.1929820786988231,0.2060594269161343,0.2183693207132999,0.2301814604285089,0.2417573957989662,0.2535880398671096,0.2642094577258174,0.2748766146893163,0.2851376937292382,0.2936865129808408,0.302305405499196,0.3109476589176294,0.3183554257470231,0.3255769391983329,0.3328598312389971,0.3398913431806142,0.346018464005211,0.3521311391953979,0.3582362082362082,0.3636699621177123,0.3654646044501878,0.3667785327208208,0.3687486766885454,0.3704352610697634,0.3719424139111792,0.3716592726770336,0.3716566929633804,0.3722752716496542,0.3731648264848807,0.3732946090822711,0.3741327768063625,0.3756051107054995,0.3767304860088365,0.3777832644999102,0.3779556114307819,0.3789164062294823,0.3796658986175115,0.3799007128309572,0.382223640360207,0.3850916693470569,0.3848490427098675,0.3884899796377666,0.3902361604875571,0.3892349096501346,0.3873856707317073,0.388184644821813,0.3935235158057055,0.3912782556511302,0.3913878222709819,0.3939625525410776,0.0,1.8942958157390812,63.02815045649864,233.1970166872632,353.63190750799606,fqhc2_80Compliance_baseline,27 -100000,95656,40653,381.3665635192774,7445,76.63920715898637,5719,59.295809985782384,2303,23.720414819770845,77.25911226955019,79.65573080767015,63.27736057920528,65.04592512029389,76.98122271337698,79.37622725817022,63.17543343210393,64.9458583557746,0.2778895561732071,279.5035494999354,0.1019271471013496,100.06676451928342,65.34572,45.77686955467597,68313.2474701012,47855.72212373083,193.18079,114.33509582606254,201485.62557497705,119059.8793764222,237.79326,112.6162534493259,245917.05695408548,115654.27880423216,4129.05125,1850.117538166408,4280672.963536005,1898519.7958409784,1395.16795,603.281849777475,1445294.9945638538,617447.1855163026,2274.53384,943.0181688830542,2344113.3436480723,956840.3239895056,0.38005,100000,0,297026,3105.147612277327,0,0.0,0,0.0,15957,166.31471104792172,0,0.0,22376,231.30802040645645,2180110,0,78297,0,0,2605,0,0,41,0.4077109642887011,0,0.0,0,0.0,0,0.0,0.07445,0.1958952769372451,0.3093351242444593,0.02303,0.3111480865224625,0.6888519134775375,25.84675854347574,4.533615082631467,0.3304773561811505,0.1986361251967127,0.237454100367197,0.2334324182549396,11.028468004430898,5.496855406013483,24.45360135822034,13291.494270895862,64.52372460045004,13.319183006765828,21.28741468153947,15.20501592623235,14.712110985912398,0.5499213149151949,0.7640845070422535,0.6968253968253968,0.5802650957290133,0.1288389513108614,0.7047272727272728,0.924924924924925,0.8540305010893247,0.7293729372937293,0.1714285714285714,0.5009208103130756,0.6973848069738481,0.6464011180992313,0.5374407582938389,0.1175355450236966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025019499002258,0.0046137154098094,0.0067596370501187,0.0090330840513737,0.0113637519711073,0.0136679363656733,0.015916552807064,0.0180181099870351,0.0203943938418131,0.0224476426392613,0.0246470570142612,0.0266554404411085,0.0286860375417845,0.030359221600684,0.0322397547962311,0.0344945249247758,0.0364979383792967,0.0385433859632732,0.0407339602230173,0.0426918265221017,0.057894076829829,0.0720480110601395,0.0856908827421082,0.0982888432580424,0.1101840801799613,0.1255666652544168,0.1391801310855455,0.1529191130243907,0.16528890267247,0.1769563676585874,0.1906282361063168,0.2038987495394751,0.2162859850341469,0.2284649939739235,0.2390295009649848,0.2505275315963661,0.2614942207203679,0.2718064406970842,0.2820565318773815,0.2906136146835384,0.2992988809954961,0.307585802288061,0.3158525728529883,0.323297689356123,0.3302269982801312,0.3371217274087631,0.3434991772700438,0.3498659517426273,0.3554129203263864,0.3607045891000596,0.3628082978579633,0.3636200320601404,0.364572270133254,0.3667166155054774,0.367819013726487,0.3683083841557321,0.3688441091267946,0.3707989435457247,0.3731189268208788,0.3741558908045977,0.3754167844023735,0.3764303877940241,0.3778915434205536,0.3791263006817366,0.3789359391965255,0.3800648298217179,0.3794257278499113,0.3812264777507195,0.3842131298141474,0.3854949624180393,0.3883357041251778,0.3916831471484312,0.3939355493529561,0.393760990901445,0.3974588235294117,0.397918909221385,0.4001543209876543,0.4009414654113794,0.3949152542372881,0.3948103792415169,0.0,1.912419648873753,61.21646551151417,219.1079337212706,331.43086733733605,fqhc2_80Compliance_baseline,28 -100000,95615,40834,383.0779689379282,7525,77.49830047586676,5833,60.40893165298332,2369,24.34764419808608,77.28554750318864,79.71784127921349,63.27381344368566,65.07201076222782,76.99431340456947,79.42615257840724,63.16717124459604,64.9679851879208,0.2912340986191708,291.6887008062474,0.1066421990896202,104.0255743070162,64.89274,45.46629231783232,67868.78627830361,47551.42218044482,195.94672,115.7432853121732,204313.95701511268,120432.31220224145,242.4617,114.5286045973278,250088.50075824925,117017.65162792202,4249.48039,1900.74147690513,4402495.748575015,1946041.308272899,1450.75642,629.128935889629,1499525.5869894892,640292.9742687879,2348.78742,981.2061935780474,2416218.710453381,992021.0443718892,0.38112,100000,0,294967,3084.9448308319825,0,0.0,0,0.0,16169,168.47774930711708,0,0.0,22758,234.5761648276944,2183133,0,78351,0,0,2573,0,0,42,0.4288030120796946,0,0.0,0,0.0,0,0.0,0.07525,0.1974443744752309,0.3148172757475083,0.02369,0.3130522595304216,0.6869477404695784,25.67610772700661,4.577418520458492,0.3271044059660552,0.1940682324704268,0.2365849477112978,0.2422424138522201,10.917193364402966,5.473385745309513,25.39129230998155,13285.995937933543,65.8922750717895,13.14803177549332,21.613725939303077,15.386597050678844,15.743920306314276,0.545345448311332,0.7561837455830389,0.70020964360587,0.5869565217391305,0.1266808209483368,0.7032258064516129,0.9223880597014924,0.8946236559139785,0.7398648648648649,0.1237458193979933,0.4957187922487607,0.6863237139272271,0.6375606375606375,0.5452029520295203,0.1274685816876122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584920956627,0.0045441174978953,0.0066401332087885,0.0089952736697667,0.0113335775037642,0.0137823549185588,0.0159745386663402,0.0181227525335076,0.0200775281013797,0.0221418842108497,0.0244352803594509,0.0265924106821754,0.0288828730532881,0.0309549334102997,0.0331650300984006,0.0355088953247827,0.0373260380721443,0.0391209978087256,0.0412386156648451,0.0431208928757692,0.0575771196805452,0.0725700812156143,0.0856110042768723,0.0976874045198335,0.109891618955063,0.1253958335539763,0.1386825634649919,0.1516812008272744,0.1644979025768341,0.1763688327316486,0.1903513315205662,0.2039530748547142,0.2167658405806578,0.2284530931562685,0.2400718837511852,0.2514263514263514,0.2622806036892118,0.2729670626958541,0.2820171849427169,0.2918291060863184,0.300067188730828,0.3082122774133083,0.3159055865259162,0.3234057379018694,0.3308488612836439,0.3371054419667675,0.3435736677115987,0.3492703337075212,0.3554658078591278,0.3607730567754907,0.3622418003480889,0.3631378060711284,0.3650244357185231,0.3662555615136013,0.3674527388383214,0.367563162184189,0.3675991157901432,0.369023657900815,0.3702127659574468,0.3717545593387836,0.3733898305084746,0.3752108427757823,0.3760514388110045,0.3765261382799325,0.3771791957830597,0.3781253269170415,0.3801157915751647,0.3834063061076637,0.3829518769058217,0.3839058524173028,0.3844852806728835,0.3865685176294874,0.389363722697056,0.3893339436942092,0.3894122079879427,0.3916232844297208,0.395095785440613,0.3944636678200692,0.3889499725123694,0.3910721098817245,0.0,2.269468246180305,61.87614262439052,227.5731858951304,334.4141124774631,fqhc2_80Compliance_baseline,29 -100000,95799,40759,381.3192204511529,7660,78.8108435369889,5887,60.7626384409023,2389,24.52008893621019,77.35864855579545,79.66436106394235,63.35358995694328,65.05475430173078,77.06762383099225,79.37520277993833,63.24728160785707,64.95241378325053,0.2910247248032078,289.1582840040172,0.1063083490862055,102.34051848024706,65.5259,45.93148091784624,68399.35698702492,47945.678887928094,195.92852,114.94435171295744,203855.9692689903,119320.46442338378,236.49742,111.72627014420056,242552.3230931429,113288.74854942494,4277.53879,1894.1178188912309,4421295.441497302,1933356.1403472172,1415.2594,607.0328147719546,1461358.6989425777,617697.903100432,2358.09352,972.251767925095,2422837.252998465,981121.4933979472,0.38176,100000,0,297845,3109.061681228405,0,0.0,0,0.0,16191,168.3107339325045,0,0.0,22315,228.64539295817283,2186270,0,78446,0,0,2606,0,0,26,0.2714015803922796,0,0.0,0,0.0,0,0.0,0.0766,0.2006496227996647,0.3118798955613577,0.02389,0.3207383548067393,0.6792616451932606,25.60159711140709,4.561855220809384,0.3410905384746051,0.1929675556310514,0.2247324613555291,0.2412094445388143,10.82044483072744,5.347363173501798,25.3802615846127,13320.692367830734,66.13177582478119,13.175119236003376,22.67562582456436,14.746665471890546,15.5343652923229,0.5298114489553253,0.75,0.6812749003984063,0.5570672713529856,0.1140845070422535,0.686231884057971,0.9142857142857144,0.835030549898167,0.7322033898305085,0.1182795698924731,0.4819170179720435,0.6869671132764921,0.6315095583388266,0.5068093385214008,0.1130587204206836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023379147015363,0.0045579313069108,0.0070156229406814,0.0095081534699179,0.0118058236644788,0.0138751843751589,0.0161655054394328,0.0186367716663946,0.0207284057822955,0.022811665660771,0.0249920619475371,0.0270894022073606,0.0291576341014866,0.0311393759776076,0.0330569990926338,0.0350650692005783,0.0370745941247684,0.039001835014566,0.0411555121586388,0.0432578186815474,0.0579968701095461,0.0716936942588584,0.0847143171598377,0.0973230895351403,0.1094435075885328,0.1247423878924951,0.1385616895853433,0.1519648518116635,0.1641630099398908,0.175694221078589,0.1902295632698768,0.2037475793277292,0.2167690718286118,0.2290518071234794,0.2410630731798615,0.2524661390791602,0.2634234556049206,0.2736621810162473,0.2831721821235644,0.2920915736645507,0.3008044447016609,0.3088891230288343,0.3171009000473709,0.3246416791604198,0.3321777842650708,0.3390252930289944,0.3448457223001402,0.350376858830719,0.3565298555834997,0.3624770387598948,0.3640444893832154,0.3658721410856985,0.3672085383563382,0.3683883191830949,0.3687053571428571,0.3692845533441687,0.3689590045550494,0.3697725363595935,0.3705527155453391,0.371217698924345,0.3731931173554965,0.3735478994271164,0.3745459920601402,0.3751265495286733,0.3767007214448264,0.378004523220954,0.3785712230629801,0.3809054178729361,0.3842493963925579,0.3855460428473813,0.3889501240011022,0.392231653594069,0.3921831165519,0.3910753021382088,0.3928808732795443,0.3923251102371589,0.394033080847117,0.3954255099938182,0.395072217502124,0.3976,0.0,2.700031143256965,60.59897312499777,227.40860713546795,341.7102018556316,fqhc2_80Compliance_baseline,30 -100000,95868,40707,381.4411482455043,7384,75.7499895689907,5704,58.99778862602746,2399,24.66933700504861,77.41454581429173,79.70539257895035,63.37712166936033,65.06884037678152,77.1246503484744,79.41429952802743,63.27065171276298,64.96482880840651,0.2898954658173238,291.0930509229246,0.1064699565973512,104.01156837501446,65.43284,45.7802664860766,68253.0562857262,47753.43856769371,192.1043,113.64992562233884,199882.5989902783,118046.76807937871,235.87976,111.85881742802458,243805.82676179748,114821.92943176792,4169.52217,1861.119630564405,4312976.373763925,1905079.5370346785,1393.53372,598.8575519549897,1441190.0947135645,612265.4448218142,2370.15548,981.0597589140506,2438888.784578796,993043.1475839012,0.38073,100000,0,297422,3102.4116493511915,0,0.0,0,0.0,15860,164.91425710351734,0,0.0,22213,229.39875662369093,2187725,0,78577,0,0,2606,0,0,28,0.2920682605248884,0,0.0,0,0.0,0,0.0,0.07384,0.1939432143513776,0.3248916576381365,0.02399,0.3064350064350064,0.6935649935649936,25.713617619502635,4.593186640304489,0.3316970546984572,0.1937237026647966,0.229312762973352,0.2452664796633941,11.05078825650893,5.5332226538518325,25.372542692009525,13220.828480849104,63.87515784407866,12.649091303419048,21.46110461437179,14.571885456076313,15.193076470211496,0.533835904628331,0.7393665158371041,0.6971458773784355,0.5672782874617737,0.1193709792709077,0.6865136298421808,0.9034267912772586,0.8539094650205762,0.6895424836601307,0.1459074733096085,0.4844547563805104,0.6721938775510204,0.6429587482219061,0.5299401197604791,0.1127012522361359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021966897808371,0.0044273339749759,0.0066925580782218,0.0087304326640001,0.0110275434495375,0.0133293989560333,0.0156784841075794,0.0178199844954914,0.0198986679741766,0.022154714781061,0.0244811832913363,0.0266391761037255,0.0286574464149935,0.0306738993937272,0.0328068294292312,0.0345999318329701,0.0364174348469329,0.0385504212566193,0.0404443060313505,0.0423042116978894,0.0565976747823366,0.0714114019961331,0.0847249869041383,0.0981151887436341,0.110207778257527,0.125598098758912,0.1391084179079178,0.1509476078614781,0.1636171597443748,0.1759168023305629,0.1903081425374419,0.2036894862617459,0.2166400417305121,0.2283085061038918,0.2389693758656319,0.2503541546770552,0.2613306865325422,0.2715501253273685,0.2813471267496994,0.290435997572065,0.2993440460903064,0.3073701940509749,0.3150676826959485,0.3229437644604817,0.3301644804823788,0.3363259668508287,0.3422137050814764,0.3480791025200239,0.3535548836666104,0.3584631250495809,0.359806909198781,0.3611463213006338,0.3622450418935312,0.3629038091518018,0.3650954201311934,0.3657029860813048,0.3655859480178025,0.3667526662613182,0.3674842110668013,0.3684502108799771,0.3695338148391333,0.3716333967046895,0.3736574928679309,0.3752237336674422,0.3762590968239433,0.3764165230560342,0.3761025318984957,0.377977499842876,0.3789592361624916,0.3800383111182057,0.3826535267816406,0.3857911274431485,0.3888888888888889,0.3872143345228153,0.3880484825707037,0.3905487441971194,0.3888632518074142,0.3887070376432078,0.3788046485888212,0.3821729150726855,0.0,1.9456920590055031,61.89005375246455,207.64362507362105,335.151814335887,fqhc2_80Compliance_baseline,31 -100000,95699,40659,381.6863290107525,7567,77.66016363807354,5837,60.29321100533966,2436,24.995036520757797,77.36002699221102,79.7300946265047,63.33690834044432,65.08792871152653,77.05754417054956,79.42884575761626,63.22570536966407,64.97999548296562,0.3024828216614565,301.24886888843605,0.1112029707802548,107.9332285609098,65.05246,45.55840350885688,67976.1126030575,47605.93476301411,194.58541,114.99782397035176,202636.0672525314,119471.5764745209,237.04775,112.64731454109231,242936.7391508793,114090.8895052428,4257.61252,1902.367814851156,4403741.522899926,1942645.058831498,1403.94951,611.889223374438,1450756.8522137117,623103.633310312,2404.25292,1006.0513068129898,2470082.55049687,1015893.5027987856,0.38115,100000,0,295693,3089.8233001389776,0,0.0,0,0.0,16007,166.54301507852747,0,0.0,22270,227.9647645220953,2188968,0,78476,0,0,2602,0,0,40,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07567,0.1985307621671258,0.3219241443108233,0.02436,0.3106527480820023,0.6893472519179977,25.608237946990773,4.65549282808879,0.330477985266404,0.193249957169779,0.2383073496659243,0.2379647078978927,10.951862933656274,5.343978056888474,25.982590088902565,13269.359522506264,65.52362152636324,13.08098484374113,21.60149217048841,15.47202150607968,15.369123006054028,0.5372622922734281,0.7570921985815603,0.696215655780197,0.5629043853342919,0.1123110151187904,0.6784426820475847,0.9207317073170732,0.8760869565217392,0.6745762711864407,0.1217105263157894,0.4932584269662921,0.69,0.6398910823689585,0.5328467153284672,0.1096774193548387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0042575190828087,0.0064438874400008,0.0085332899896381,0.0107307050734366,0.0128609832593377,0.0153007135575942,0.0175039294535507,0.0197802197802197,0.0219087204897725,0.0239393877258094,0.0259229600427087,0.0281765455966434,0.0303642056690837,0.0324184894758563,0.0341497709907879,0.0359788250163163,0.0383313958316034,0.040252959164569,0.0423057685895298,0.0577115882696967,0.0717493013470656,0.0850608476710029,0.0984780756649873,0.1109810743845221,0.1261933710419199,0.1397201565765326,0.1529473112901337,0.1653387730690362,0.1770340573880396,0.1905367262071491,0.2041595879367621,0.2165279015673572,0.228709504597588,0.2401249573758951,0.2516422771432686,0.2622310507990358,0.2719285416971347,0.2817813673332804,0.2905931009199537,0.2993335030432066,0.3075015789104348,0.3151030262862012,0.322920036907886,0.3301613922512275,0.3366865145407251,0.3426098718735518,0.3486939253526147,0.3553651517901122,0.361074038347186,0.3623182541609344,0.3637504654979794,0.3652177599412147,0.3665206925553203,0.3681425163983303,0.3686174541992352,0.3692009900361744,0.3710960615425077,0.3721212951389483,0.3727027075392352,0.3730995470861288,0.3744845360824742,0.3749973772005288,0.375529696643573,0.3766080177636183,0.3766563662075106,0.3783605428514044,0.3800088905823331,0.380957450583768,0.3821125115773366,0.3855293573740175,0.3891402714932127,0.389733477514153,0.3908090216303594,0.3931276031806134,0.3912263925412383,0.3944247651316803,0.3926016758634784,0.3844649343392008,0.3910505836575875,0.0,2.690724566875476,60.68167430967652,221.2018086189298,341.4387127687688,fqhc2_80Compliance_baseline,32 -100000,95757,40693,381.66400367597146,7310,75.32608582140209,5668,58.66934010046263,2281,23.486533621562916,77.33346816806463,79.69644075733609,63.32120940122799,65.07080429304003,77.05784389946322,79.41955198129403,63.22278172410045,64.97423626400686,0.2756242686014047,276.88877604205686,0.0984276771275389,96.56802903316476,66.00462,46.20755714468277,68929.28976471694,48255.01753885645,193.97842,114.68668766337775,202073.1748070637,119268.05856603626,236.16274,111.4827881829285,243590.56779138863,114033.11685791449,4087.71137,1797.8114232262385,4234959.668744843,1843598.9284480647,1399.18769,597.5715694705104,1445755.182388755,608683.474585002,2247.03248,910.9571358695864,2315450.316948108,925279.2836348636,0.38042,100000,0,300021,3133.1495347598607,0,0.0,0,0.0,16014,166.69277441858037,0,0.0,22249,229.3513790114561,2183884,0,78330,0,0,2649,0,0,32,0.3237361237298578,0,0.0,1,0.0104431007654792,0,0.0,0.0731,0.1921560380631933,0.3120383036935704,0.02281,0.3105952535339126,0.6894047464660874,25.786356756507395,4.53866273791809,0.341743119266055,0.1947776993648553,0.2247706422018348,0.2387085391672547,10.929972843828844,5.413277551187957,23.99817515665664,13190.538406732245,63.40058735629525,12.71846454795705,21.917137618542817,14.07733193287491,14.687653256920472,0.5404022582921666,0.7518115942028986,0.7000516262261228,0.565149136577708,0.1160384331116038,0.7181889149102264,0.9297124600638976,0.8859649122807017,0.6954887218045113,0.1626016260162601,0.4884887166628676,0.6814159292035398,0.6428089128966914,0.5307539682539683,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350676326055,0.0045329168863829,0.0066378417879544,0.009043061228637,0.0111368767925794,0.013349082059689,0.0153937120254455,0.0176256863505541,0.0197048362699807,0.0216699251737586,0.0237946341613442,0.0261177557620245,0.0281054287800413,0.0302989732129064,0.0322311065256641,0.0343466082336768,0.0364479787939032,0.038610399178193,0.0405867614800029,0.0424304282619563,0.0565454754224991,0.0708305425318151,0.0839532858357029,0.0964210216337305,0.108673872923807,0.1248017425508067,0.1382694307114515,0.1509807469215296,0.163197522294014,0.1749270824397358,0.1887353375197923,0.2015643086642794,0.2140969737829344,0.2260484444201432,0.2371541067264968,0.2485524174352047,0.2595511010413295,0.2701477256106479,0.2802114889320036,0.2897878819098641,0.2978711102374041,0.3066057041290035,0.3142093309359326,0.3217378804757969,0.328107557151871,0.3352697197572953,0.3422075568387766,0.3480371598866394,0.3538742188813993,0.3592673721992029,0.3603385079775765,0.3616459093098466,0.3635517970401691,0.3648535201482167,0.3662730967943659,0.3666087918504064,0.3665660736975857,0.3672383400056014,0.3680068581225889,0.3693341697284703,0.370448350408873,0.3717508971588318,0.3730337078651685,0.3744754381634164,0.3753111481669446,0.3754234839929616,0.3763729977116705,0.379781680113906,0.3813214424744311,0.3830790125429416,0.3868097596771234,0.3891834002677376,0.3900934698289566,0.3934552751408505,0.3976513270956655,0.3997565429093122,0.3982453391822027,0.4015813566375364,0.3994310099573257,0.395743003547497,0.0,2.0233272859819342,56.64435899101319,222.0680125273036,331.0730169819884,fqhc2_80Compliance_baseline,33 -100000,95802,41071,384.3865472537108,7527,77.39921922298072,5861,60.64591553412246,2387,24.54019749065781,77.34149214859087,79.67990393279239,63.33904717832892,65.07234119751303,77.04886238465484,79.38627458068481,63.23322162063587,64.96821432658624,0.2926297639360342,293.6293521075726,0.105825557693052,104.12687092679109,65.36024,45.74931148461674,68224.29594371725,47754.025474015936,194.31323,115.01017783762624,202311.4966284629,119534.67062831318,243.72236,115.59635743005369,250964.52057368323,117987.16344991696,4237.62967,1886.595707010381,4389877.184192398,1935978.0547358163,1427.62825,620.5893068898952,1476022.3481764472,633735.1982326094,2353.79252,968.064332502306,2423377.862675101,982837.1830182016,0.38424,100000,0,297092,3101.1043610780566,0,0.0,0,0.0,16028,166.7606104256696,0,0.0,22912,235.7779587064988,2188772,0,78545,0,0,2515,0,0,35,0.3548986451222312,0,0.0,0,0.0,0,0.0,0.07527,0.195893191755153,0.3171250166068819,0.02387,0.3127130412826663,0.6872869587173337,25.39424041240636,4.6339033035185295,0.3328783484047091,0.1999658761303532,0.2327247909912984,0.2344309844736393,11.114377039389296,5.468435339884152,25.411855468549827,13385.57299494724,66.04220385507953,13.669752165349095,21.935774230825675,15.280351991518344,15.156325467386424,0.5423989080361713,0.7525597269624573,0.6827268067657611,0.593841642228739,0.1128093158660844,0.7147962830593281,0.8913649025069638,0.8468271334792122,0.7954545454545454,0.1745454545454545,0.4883460331689825,0.6912669126691267,0.6325301204819277,0.5350378787878788,0.097361237488626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717120658042,0.004906582322111,0.0070221726114972,0.0094907125147339,0.0115887470112428,0.0137922604435118,0.0161757506527415,0.0185338357381368,0.020625198122565,0.0228243172672257,0.0247208522593279,0.0269351625557084,0.0288926374688856,0.0309045769678489,0.0330592156174871,0.0350808285442593,0.0370170951675864,0.0392008381655792,0.041458422086221,0.0435647068620919,0.058270559021764,0.0720394805629326,0.0851532045102066,0.0978836534824093,0.1103535486590442,0.1260926088381089,0.1400358305153021,0.1532817218937428,0.1649110449417816,0.1774893630702948,0.191789815841307,0.2061532474271382,0.2186566434554007,0.2291561946805953,0.2407211961301671,0.2522667139014048,0.2626075712311053,0.2736654164888719,0.2836934855486092,0.2931982666956313,0.3016107615033774,0.3099063543588426,0.3179153171469774,0.325403761657907,0.3326293814933488,0.3389239843855825,0.3456791667187676,0.3523446435379336,0.358712380853843,0.3636052180787982,0.3653571717062925,0.3661124721297035,0.3675829678001721,0.3690655396016674,0.3712442835649699,0.3715425940138143,0.3720775095298602,0.3732871629977739,0.3745128002609845,0.3758686946684145,0.3769187252498586,0.3788216560509554,0.3807151602144636,0.3817435804946231,0.3817943362316024,0.3833456192080876,0.3844374403608709,0.3870833599897639,0.3871532116970757,0.3904769584324477,0.3926029309141661,0.3916386873172316,0.3949790794979079,0.3963914707490432,0.3999807377443898,0.4006060606060606,0.4043690083294043,0.4053038212570474,0.4079841449603624,0.4158262218774243,0.0,2.070368020733,61.900989379358485,223.78172937584208,342.74513178639864,fqhc2_80Compliance_baseline,34 -100000,95699,40495,378.6246460255593,7541,77.66016363807354,5888,60.88882851440454,2459,25.214474550413275,77.3419109081298,79.7109135941406,63.33255108723839,65.08105840864184,77.04224038341975,79.41013981357383,63.22350589619514,64.97416119290753,0.2996705247100522,300.7737805667716,0.1090451910432435,106.89721573430688,65.17368,45.676090732553256,68102.78059331865,47728.911203412,196.11989,115.68418615046367,204281.9674186773,120231.24186299092,237.00446,112.55433494028418,243542.11642754887,114506.28991992414,4322.54147,1922.084644418019,4473235.812286439,1964895.259530421,1432.03446,616.7324277592412,1482506.0240963856,630575.7419198176,2428.122,1002.747939845566,2493031.3587393807,1013174.2590166302,0.37865,100000,0,296244,3095.580936059938,0,0.0,0,0.0,16175,168.3507664656893,0,0.0,22343,229.35453870991336,2187168,0,78417,0,0,2604,0,0,43,0.449325489294559,0,0.0,0,0.0,0,0.0,0.07541,0.1991548923808266,0.3260840737302745,0.02459,0.3064250411861614,0.6935749588138386,25.444504615754045,4.568762306119763,0.3344089673913043,0.1880095108695652,0.2314877717391304,0.24609375,11.133730665727684,5.6348841820876645,26.143963218537568,13216.169388735834,65.98521723069292,12.780415184923546,22.182457299494786,15.201677639554946,15.82066710671966,0.5361752717391305,0.7597109304426377,0.6957846622651092,0.574468085106383,0.1124913733609385,0.6988388969521045,0.9113924050632912,0.8838709677419355,0.7120253164556962,0.1387900355871886,0.4864745011086474,0.6991150442477876,0.6376329787234043,0.5329512893982808,0.1061643835616438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0045302523563393,0.0065936295394603,0.0093239619728609,0.0117338430878106,0.0139590290787651,0.0164123265747168,0.0184534988160365,0.0205335241210139,0.0229461553419918,0.0250025627883136,0.0271488566470545,0.0290406507409273,0.0312065359611798,0.033114564629641,0.0351878269139324,0.0372725483901034,0.0394470562595348,0.0414782002890684,0.0436241610738255,0.0585513603843542,0.0723639446881117,0.0854798602440483,0.0983549656057386,0.1110208645387228,0.1262854966354903,0.139727567842821,0.1523000436481321,0.1643894153215037,0.1758351391362183,0.1902315562735595,0.2044997078111811,0.2167694499733524,0.2281281095207374,0.2395213532329553,0.2505978212735807,0.2613471618155459,0.2713015323387559,0.2801597476712919,0.2891781433526805,0.2971762527485245,0.3052690727321681,0.3138018828823494,0.3207553956834532,0.3272576938509989,0.3339546711435907,0.3402315285146304,0.345881903305943,0.3514782157676348,0.3563509661070637,0.3580876107268535,0.3602257864665795,0.3616463826910074,0.362599722511273,0.3643175735950044,0.364572794996781,0.3652517118944965,0.3670763206817696,0.3693438914027149,0.3700111162907448,0.3712903893562167,0.37248708780294,0.3726902202605959,0.3724322983607296,0.3734633010838728,0.3749934303883954,0.3754423314824937,0.3770866391621707,0.3769944209516364,0.3794466403162055,0.3818282650891949,0.3840172786177105,0.3847334100498657,0.3872895165670831,0.3911123908244553,0.3923514462059784,0.3963585434173669,0.4057035803497086,0.4034042553191489,0.4049295774647887,0.0,2.396184319873302,60.66290473247631,221.9267098638867,348.51145034243507,fqhc2_80Compliance_baseline,35 -100000,95701,40696,380.65432963082935,7584,77.94066937649555,5892,60.9189036687182,2387,24.482502795164105,77.33810060160408,79.72060676599641,63.31256206328344,65.07478367854645,77.04401003919861,79.42849877558912,63.20377821293464,64.9702498877568,0.2940905624054721,292.1079904072883,0.1087838503488001,104.53379078965952,65.15982,45.65560489766329,68086.87474530046,47706.50766205503,194.99028,115.26369000408944,203085.01478563444,119777.0138285801,242.22839,114.80650116277045,249427.91611372924,117069.8349412106,4252.96263,1902.5131236100408,4396768.246935769,1940733.8205557328,1436.57202,625.6524184145096,1481207.2601122246,633860.2087904087,2346.13184,976.2830735136024,2407675.301198525,980811.9275822804,0.38059,100000,0,296181,3094.857942968203,0,0.0,0,0.0,16076,167.28142861621092,0,0.0,22793,234.4385116142987,2184982,0,78419,0,0,2572,0,0,47,0.4911129455282599,0,0.0,2,0.0208984232139685,0,0.0,0.07584,0.19926955516435,0.3147415611814346,0.02387,0.3097600803919105,0.6902399196080894,25.401087393704582,4.583864439652574,0.3352002715546504,0.1955193482688391,0.2413441955193482,0.2279361846571622,11.051463109599666,5.571843630964625,25.29905127011375,13241.138442454208,66.13213180223708,13.362495808128855,22.194055311948613,15.865732648444382,14.709848033715224,0.5441276306856755,0.7664930555555556,0.6784810126582278,0.5759493670886076,0.122114668652271,0.704225352112676,0.9169139465875372,0.859538784067086,0.7476340694006309,0.1522491349480969,0.4932915921288014,0.7042944785276074,0.6208277703604806,0.5266968325791855,0.1138519924098671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023818694127424,0.0046459728139582,0.0068430564298332,0.0091468992011708,0.0114874696024663,0.0139337332830849,0.0160536890847153,0.0183950075071241,0.0206064324794191,0.0227821920052424,0.024692877212412,0.0270678235867946,0.0290264867977297,0.0312136347252973,0.0335479078979945,0.0355699773683177,0.0375742892050278,0.0395493121407673,0.0416064540946281,0.043607346369006,0.0580365535248041,0.0715242881072026,0.0845575889858965,0.0975250596909743,0.1098443300708741,0.1249272694574037,0.1388429050469035,0.1521308542585138,0.164064253422681,0.1757435303205871,0.190446429533528,0.2039910347889169,0.2165042730390289,0.2275169915398001,0.2387441932145923,0.2508314118481731,0.261690908684675,0.2722471821549618,0.2814786204389512,0.2906766055045872,0.2983130966725368,0.3068776870541101,0.3144777074592903,0.3216770633397313,0.3285816801877957,0.334939104226883,0.3412241416080188,0.3478565960704261,0.3542623588945114,0.3605551883674818,0.3619755150469205,0.3628894403087951,0.3638711316201685,0.3652050550818628,0.3663047848813832,0.366804979253112,0.3666068621691568,0.3677704993581092,0.3692645218792314,0.369911123853211,0.3705034617700181,0.3704732612362337,0.3720974295277994,0.3722542311847317,0.3739603481624758,0.3745397571484528,0.3760673996858489,0.3786300505050505,0.3792435554303423,0.3798289238114183,0.378835401609164,0.3794673585005559,0.3822183208978619,0.3859476629859325,0.3884737530356809,0.3876755991028214,0.3905540417801998,0.3949478748997594,0.3924291938997821,0.3859649122807017,0.0,2.572494194356577,62.44800802161179,221.89276743738688,341.84865784512004,fqhc2_80Compliance_baseline,36 -100000,95654,40982,382.6604219373994,7488,76.97534865243482,5817,60.26930394965187,2395,24.661801911054425,77.27782633283482,79.68984680286994,63.2892740309558,65.07281569514872,76.98100861378117,79.38995099168092,63.18015333322395,64.96489246415965,0.2968177190536494,299.89581118901754,0.1091206977318464,107.92323098907276,65.3499,45.83152770610744,68319.04572730885,47913.86424624944,194.73372,115.8761336475782,203045.7273088423,120605.2790762312,244.47427,116.7043540810143,252050.5781253267,119274.45480163571,4214.18123,1904.2499436189476,4367195.078093964,1952390.382552324,1407.84595,614.1820779501592,1456017.3542141467,626331.4561774097,2357.52088,990.10769960448,2429547.159554227,1005784.9864346808,0.38282,100000,0,297045,3105.411169423129,0,0.0,0,0.0,16113,167.8863403516842,0,0.0,22956,236.498212306856,2181087,0,78255,0,0,2602,0,0,41,0.4286281807347314,0,0.0,0,0.0,0,0.0,0.07488,0.1956010657750378,0.3198450854700854,0.02395,0.3162425623496645,0.6837574376503355,25.32158189616166,4.575883698358307,0.3250816572116211,0.2011346054667354,0.2386109678528451,0.2351727694687983,10.933790961108198,5.373812375872376,25.66729236131839,13379.428869526912,65.6791743796218,13.588440427403189,21.53762266843807,15.47238503965334,15.080726244127204,0.5348117586384734,0.7418803418803419,0.6906398730830249,0.5655619596541787,0.1111111111111111,0.699527346387576,0.8895184135977338,0.8875502008032129,0.7267267267267268,0.1279461279461279,0.4785516605166052,0.6780905752753978,0.6202440775305097,0.5146919431279621,0.1064425770308123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025636868451452,0.0049894531883822,0.0074919294256187,0.0098072095693974,0.012167455109619,0.01429284542741,0.0167057623661397,0.0190793303849571,0.0212250158548311,0.0233863615410618,0.0255692307692307,0.0277338373359081,0.0301181264405663,0.0323837401055409,0.0344937950401618,0.0368730800657819,0.0389214731300905,0.0408074263285776,0.0426760739260739,0.0448559542056367,0.0598980103661595,0.074292835673966,0.0880722967441274,0.1008207934336525,0.112369154144859,0.1273697246832428,0.1412399379818618,0.1543796475827243,0.1668502614889362,0.1784606134784896,0.1923159823256816,0.2055619328149704,0.2177018126394861,0.2298001357238239,0.2408473811122978,0.2526047439592108,0.2628686940886094,0.2732153711082596,0.283095121868153,0.2929549722871146,0.3013107509341848,0.3095446943382103,0.3175200624955614,0.3246980654601278,0.3309337646071719,0.3374563320124924,0.3441381817270209,0.3509583524494061,0.3568757789779809,0.361629813796022,0.3631561883662497,0.3642131453452208,0.3654815150314216,0.3673416067929458,0.368719756257841,0.3693205438112981,0.3692288097815704,0.3703116222200192,0.3711377430836156,0.3713268992289858,0.3727183587268065,0.3736110557967262,0.3754510350066468,0.376018180999955,0.37616811117029,0.3776425536379373,0.378783958602846,0.3804766298641382,0.3825345276756718,0.3855431406558832,0.3873145023346123,0.3898751882935227,0.3928867888385161,0.3936451211932877,0.3948099205209231,0.3982978723404255,0.4026055564275624,0.4035968214136344,0.3953488372093023,0.4010903426791277,0.0,2.156945082696421,65.62420067045691,212.318161740392,336.6815955477858,fqhc2_80Compliance_baseline,37 -100000,95825,40751,381.6853639446908,7523,77.31802765457866,5845,60.46438820767023,2349,24.17949386903209,77.39792083527668,79.70120712012546,63.37134666233784,65.07162497360673,77.11780867268493,79.41972297392711,63.26911517068008,64.9709983028244,0.2801121625917488,281.48414619835194,0.1022314916577542,100.6266707823329,65.34748,45.75543864506092,68194.60474823897,47748.95762594409,194.82552,115.23385487362742,202777.47978085047,119718.08491899548,243.55675,115.75279368280562,250787.27889381684,118231.47782675127,4232.82198,1883.7562021894337,4382953.989042526,1931759.3886056535,1442.19421,623.3423965322525,1491730.9470388729,637297.0194042433,2313.91922,951.9785978170324,2384222.468040699,969183.4585984388,0.38107,100000,0,297034,3099.7547612835897,0,0.0,0,0.0,16111,167.5867466736238,0,0.0,22939,235.971823636838,2187952,0,78416,0,0,2627,0,0,30,0.3130707018001565,0,0.0,0,0.0,0,0.0,0.07523,0.1974177972550974,0.312242456466835,0.02349,0.3178791305440382,0.6821208694559618,25.39658266304369,4.623169977472444,0.3260906757912746,0.2046193327630453,0.2355859709153122,0.2337040205303678,11.22731944635425,5.587524879851301,24.93280140177338,13309.435797561751,65.67234108273291,13.936391178591764,21.62404458689624,15.22778282890532,14.884122488339589,0.5515825491873396,0.7483277591973244,0.7061909758656874,0.5824255628177197,0.1325036603221083,0.7217391304347827,0.9005524861878453,0.8817204301075269,0.7422680412371134,0.1679389312977099,0.4989921612541993,0.6822541966426858,0.6495489243580846,0.5395948434622467,0.1240942028985507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386247671499,0.004701638480479,0.006805618946194,0.009158941137049,0.0113959824333116,0.0135963037593372,0.0160277964581932,0.0181994389186432,0.0201381367881153,0.0221706124286386,0.0243222752699629,0.0262836624775583,0.0284481430112498,0.0304804634841577,0.0324775048700796,0.034495931937389,0.0365304834521358,0.038567179030068,0.0405823589274959,0.042723478659076,0.0574888902797771,0.0722936931283338,0.0861172276397189,0.09882565682265,0.1108944494803634,0.1264562234391187,0.1402214022140221,0.1534760951934948,0.1658690310864224,0.1769399903469727,0.1914875285400422,0.2043480612189714,0.2172551748130109,0.229014059869241,0.2397972088726616,0.2520511542933067,0.262383745567277,0.2729858885703041,0.2821085573684986,0.2915713108751373,0.3000543409140835,0.3068330529070854,0.3152909176915799,0.3224980252291931,0.3298776569301468,0.3364460684801732,0.3429956519566195,0.3495959749961884,0.355304530103645,0.361235918044667,0.3631294674047401,0.3647924849616832,0.3656175696779549,0.3671554760117776,0.3683139793887915,0.3682174099223099,0.3683344669946375,0.3701533208575462,0.3721033639457527,0.3747652015241775,0.375570197668525,0.3756762648381919,0.3761556564128425,0.3771328372636737,0.379972399099339,0.3810323122114981,0.3816293056314926,0.3839822024471635,0.3857102393428693,0.3878065367844141,0.3892138350297057,0.3936897647122166,0.3964228680932609,0.4005245699298002,0.4036075586944073,0.4054995196926033,0.4079293789685612,0.4111292295148797,0.407876618011567,0.4059026446914526,0.0,2.107090155649774,60.9142553292194,226.1715246851421,338.31551886899416,fqhc2_80Compliance_baseline,38 -100000,95559,40409,378.5933297753221,7513,77.48092801306,5816,60.35015016900554,2279,23.57705710608106,77.19945181010942,79.67189114410553,63.224607941291474,65.05443332271822,76.92800983361406,79.39651026931672,63.12681305840548,64.95707718778009,0.2714419764953675,275.3808747888087,0.0977948828859993,97.35613493813844,65.90144,46.119261510948526,68964.13733923544,48262.603743183296,196.02496,115.415918265156,204620.9043627497,120265.64558561306,237.51371,111.89425037725896,244981.24718760137,114319.01180520968,4180.19121,1849.6619082594743,4342374.239998326,1903536.138154935,1378.28522,592.3707311475803,1430322.261639406,607883.2565719404,2247.54946,918.4363624898276,2327842.5266066,940249.7655288004,0.37854,100000,0,299552,3134.733515419793,0,0.0,0,0.0,16188,168.86949423916116,0,0.0,22367,230.4858778346362,2177370,0,78158,0,0,2621,0,0,40,0.4185895624692598,0,0.0,0,0.0,0,0.0,0.07513,0.1984730807840651,0.3033408758152535,0.02279,0.3073998986315256,0.6926001013684744,25.79312437983349,4.549199954167399,0.3392365887207703,0.2009972489683631,0.2291953232462173,0.2305708390646492,10.955363363642972,5.465634233892789,24.1193697648444,13232.087084356586,65.4507260196456,13.495954124054665,22.45619254013008,14.825213820066592,14.673365535394282,0.5443603851444292,0.7527801539777588,0.6958945767866194,0.5813953488372093,0.1029082774049217,0.7176128093158661,0.911504424778761,0.8841463414634146,0.7167832167832168,0.1439688715953307,0.4907699234579018,0.6879518072289157,0.6333558406482107,0.5444126074498568,0.0931734317343173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021996735968211,0.0046772589841926,0.0068242749207896,0.0088661135513258,0.0109032047888585,0.0133539929458296,0.0156452518242588,0.0177089720008174,0.0198731068358575,0.0222076471371914,0.0242052208546762,0.0266829815018559,0.028763568206628,0.0309047584663152,0.0328834507988343,0.0350806368134484,0.0374284410520202,0.039399293286219,0.0415816007666347,0.0434905158104623,0.0577596937334602,0.0717730942644437,0.084938878903499,0.0971140776954767,0.1096279856267174,0.1245468229906502,0.1381434087500399,0.1516774799385351,0.1638385396580537,0.1754142606750755,0.1895402956707666,0.2021008768122232,0.2143464886445448,0.2260781818979511,0.237419440275448,0.2491280684216372,0.2602687612589932,0.2702181198587242,0.2803126849028264,0.2899947171371477,0.2987451289664131,0.3070382229102893,0.3149090650247357,0.323015015015015,0.3292365036055349,0.3362954357256739,0.3433994497971284,0.3493394600804135,0.3546723143287771,0.3609639830508475,0.36181169410429,0.3632184225422114,0.3647178501794343,0.3661142766009888,0.366595039842421,0.3670373959727414,0.367322922298909,0.369282070752926,0.3698396862529242,0.3704143288735433,0.3712888116642744,0.3727614987749248,0.3739895890642854,0.3750677017512186,0.3758291420657482,0.3771839671120247,0.3771285331489324,0.3776860815743533,0.3800837532827028,0.3816010226092514,0.3853738701725555,0.3861227967410405,0.3868401111391765,0.3877144607843137,0.3872549019607843,0.3900370326125911,0.3928242870285188,0.3883730318934195,0.3895027624309392,0.3909687379390197,0.0,2.0282607977301104,61.23997647312883,220.79358285757925,341.6512555054536,fqhc2_80Compliance_baseline,39 -100000,95690,40498,380.42637684188526,7572,77.90782735918069,5944,61.59473299195319,2489,25.676664228237016,77.33990302576841,79.73011612607183,63.32261558699434,65.08881472441726,77.03695266630574,79.42466957388706,63.21266573681157,64.98020496921198,0.3029503594626703,305.446552184776,0.1099498501827653,108.60975520527916,65.27202,45.73055472911432,68211.95527223326,47790.31740946214,196.95833,116.708362762975,205312.3523879193,121447.82397635595,240.95432,113.97157744635884,248893.91785975543,116810.7761026458,4317.62716,1927.0541964453585,4476408.078169087,1978160.6504810927,1466.50687,636.6998547221675,1515296.9275786392,648142.188161843,2450.74346,1010.5386461946808,2529419.9811892565,1028872.1039667196,0.37961,100000,0,296691,3100.543421465148,0,0.0,0,0.0,16283,169.63110042846694,0,0.0,22736,234.65356881596824,2184957,0,78416,0,0,2633,0,0,34,0.3553140349043787,0,0.0,0,0.0,0,0.0,0.07572,0.1994678749242643,0.3287110406761754,0.02489,0.3249717797566788,0.6750282202433212,25.119553802785504,4.623673335389613,0.332436069986541,0.1953230148048452,0.2358681022880215,0.2363728129205922,11.088771530634697,5.506783690541087,26.41885176461336,13220.528295409347,66.87843646115999,13.530167120091324,22.267689888840405,15.664605754486782,15.415973697741476,0.5386944818304172,0.7717484926787253,0.6882591093117408,0.5634807417974322,0.1110320284697509,0.6982698961937717,0.9216216216216216,0.8483606557377049,0.6945337620578779,0.1376811594202898,0.4874416537008224,0.7016434892541087,0.635752688172043,0.5261228230980751,0.1045172719220549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0045613501596472,0.0066665990197968,0.0088469507983585,0.0110531507072186,0.0133756794723019,0.0155135157173726,0.0176675920633624,0.019892868825646,0.0218632930049745,0.0238864113998667,0.0258576443778357,0.0278051990786442,0.0297468224048781,0.0317050767341294,0.0338813068651778,0.0359703286229331,0.0377613086711922,0.0400183083500639,0.0419885125767478,0.0571607646505797,0.0712214323851799,0.0845293549876201,0.0971386492741426,0.1090552343980758,0.124115313409151,0.1385361299426037,0.1518360830228845,0.1639396787423103,0.1757371073228262,0.1899479845353608,0.2036982936778437,0.2169686161073533,0.2287835385187291,0.2403557238297544,0.2517472448357977,0.2626886987180202,0.2731589310829817,0.2826049952906733,0.291342551753371,0.2990083199296451,0.3068896947011346,0.314889990886819,0.3220808167960886,0.3290098492852892,0.3355147212876351,0.3415369978593693,0.3473666789728966,0.3534102697095436,0.3587070002246627,0.3602946135894565,0.3622579088841409,0.3631986218193114,0.3643019732359039,0.3655601288475304,0.36562787841572,0.3662830383363759,0.3672776981734934,0.3693801702433761,0.3709463812728183,0.3716208594954318,0.3716129032258065,0.3720504346727851,0.3726404469072397,0.3732476352170749,0.3753678015973098,0.3767353625937742,0.3781053434144482,0.3807918824948556,0.3827674567584881,0.3840146991272393,0.3870344531501556,0.3899923605805959,0.3881954076128833,0.3898803873172584,0.3925614877024595,0.3948558067030397,0.3911960132890365,0.3982905982905982,0.3939393939393939,0.0,2.022520437231301,64.24200274536302,220.33693848830697,349.33973975873084,fqhc2_80Compliance_baseline,40 -100000,95779,40422,378.0056170976937,7424,76.16492132931019,5755,59.44935737478989,2319,23.763037826663467,77.331780499572,79.67108200600097,63.32970022966426,65.06208585939436,77.04364365282632,79.38523840388814,63.22421348179076,64.96015178389368,0.2881368467456866,285.8436021128341,0.1054867478735062,101.93407550067946,65.74546,46.04160529754852,68642.87578696792,48070.66820237059,193.64759,114.30425099844564,201545.4744777039,118705.45839739988,238.71588,113.4092378577494,245245.064158114,115231.73783961352,4124.93302,1855.8874399628555,4267447.123064555,1898404.2430625248,1398.47691,604.3085181025828,1445694.9540087075,616527.399641448,2275.34872,945.272931991959,2335949.1537811006,953875.0132226208,0.37869,100000,0,298843,3120.130717589451,0,0.0,0,0.0,16030,166.7066893577924,0,0.0,22493,230.88568475344283,2184683,0,78459,0,0,2661,0,0,38,0.3863059752137734,0,0.0,0,0.0,0,0.0,0.07424,0.1960442578362248,0.3123653017241379,0.02319,0.3118210862619808,0.6881789137380192,25.68483084411764,4.535069840469673,0.3383145091225021,0.2020851433536055,0.2309296264118158,0.2286707211120764,11.232526732648695,5.709852261490181,24.725059148724824,13210.96648951509,64.93578441209044,13.64968980202648,21.96324747959853,14.867911185387818,14.454935945077604,0.557254561251086,0.764402407566638,0.6990241397021058,0.5921745673438675,0.1291793313069908,0.7199444058373871,0.9016393442622952,0.8795918367346939,0.7460815047021944,0.1401515151515151,0.5030120481927711,0.7013801756587202,0.6382978723404256,0.5435643564356436,0.1264258555133079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025120283616105,0.0047139207655812,0.0071235045206855,0.0094071274736884,0.0114823290109331,0.0137985111864682,0.0159560367855467,0.0180387112581158,0.0200159473329108,0.0223473409428264,0.0244802558740312,0.0265108733597552,0.0288522837106957,0.0306342126677722,0.0328706331596057,0.0349618541567597,0.0368065120806967,0.0391420689082951,0.0411812995542069,0.0432731854103976,0.0580495032974371,0.0715877116826877,0.0844392729102459,0.0971270648564583,0.1093420719885357,0.1245878772508242,0.1384222408292615,0.1514020480428749,0.1632550693703308,0.1754041978721352,0.1895217283658245,0.2026458403193181,0.2151433418888937,0.2267213563029806,0.2381130580258871,0.2497008243950004,0.2610340479192938,0.2710787126095418,0.2804741110417966,0.2895279323850752,0.2976995940460081,0.3065419467991815,0.3142674510825175,0.3209852854761533,0.3280699195293317,0.3353197369557439,0.3415808077009852,0.3475354628023268,0.3526792668362843,0.3586288072156904,0.3598705501618123,0.3612874791686752,0.3622769274176483,0.3641223253994698,0.3645969953499463,0.3652216703316981,0.3653702378111827,0.3667144954067917,0.3678877496693973,0.3700982149258011,0.3713059518879644,0.3728645409631143,0.3741856591680546,0.3747216912178117,0.3761728125681868,0.3771904474161259,0.3779787539477462,0.3795777545658848,0.3803761069752672,0.3818385560491455,0.3851180341447701,0.3880187308251251,0.3902611150317572,0.3940097515672162,0.3926761640692227,0.3955539446659418,0.3955562509779377,0.3957350830428542,0.39035333707235,0.3957667731629393,0.0,2.519925081466481,63.33810050863448,215.09649873278556,330.6004335297428,fqhc2_80Compliance_baseline,41 -100000,95689,40605,380.73341763421087,7514,77.4070164804732,5842,60.49807187869035,2344,24.16160687226327,77.34192318165195,79.71799106964447,63.32298576779221,65.07514411889436,77.05623588835024,79.42989533293299,63.21927084744367,64.97289582456375,0.2856872933017058,288.09573671148314,0.103714920348537,102.24829433060734,65.00054,45.51099733555639,67928.9573514197,47561.36790598333,192.95158,113.4497501590221,200997.92034612127,117914.35813836713,238.644,113.10301332116086,245261.9945866296,114995.4379767131,4194.63997,1858.4593412414984,4350041.927494279,1908611.220977854,1421.53452,615.3402965791962,1474307.652917263,631810.5781000159,2307.51908,950.7056587273156,2381085.830137216,967539.533743494,0.38069,100000,0,295457,3087.6798796099865,0,0.0,0,0.0,15963,166.21555246684574,0,0.0,22462,230.78932792693,2187808,0,78470,0,0,2424,0,0,43,0.4284714021465372,0,0.0,0,0.0,0,0.0,0.07514,0.1973784444035829,0.3119510247537929,0.02344,0.3148359305713923,0.6851640694286076,25.47854492050887,4.681766199900843,0.3296816158849709,0.1963368709346114,0.2428962684012324,0.2310852447791852,11.141909616865147,5.563537818403661,24.92933080833093,13247.613757966685,65.42207915023191,13.32894441353968,21.727374470096137,15.553776856133844,14.811983410462242,0.5477576172543649,0.7611159546643418,0.6983385254413291,0.5828047921071177,0.1148148148148148,0.7162962962962963,0.932748538011696,0.8728070175438597,0.7244897959183674,0.1434108527131783,0.4971059661620658,0.6881987577639752,0.64421768707483,0.5457777777777778,0.108058608058608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781811002095,0.0042570012466932,0.0062692108706899,0.0085928453897251,0.0107390194543032,0.0129400745250554,0.0152111412433986,0.0175323945963056,0.0198885423590163,0.021901621887287,0.0240443769994258,0.0261960752097431,0.0283054769863718,0.0302924145321161,0.032587714318156,0.034414651044952,0.0365033820528491,0.0386743198779361,0.0407861896838602,0.042868902852022,0.0575651538099963,0.0715669336683943,0.0846278181283849,0.0974177662731233,0.1095166242837999,0.1253161476025694,0.1394884644377674,0.1525335264856573,0.1650525910723448,0.1767616594214565,0.1903180592991913,0.2037863362647836,0.2162909423405575,0.2287884259715245,0.2392431397153518,0.2510387005993995,0.2611277952061447,0.2711572453080846,0.28131027753194,0.2902298192149944,0.299274297156217,0.3074321161048689,0.3157869805667728,0.3232531637977568,0.3298401312990092,0.3367655219187372,0.3439211116540741,0.3497255231617694,0.3552366990568363,0.3612925403918872,0.362395170765304,0.3632334055979784,0.3643740722414646,0.3652489972052073,0.3657487987384895,0.3663216011042098,0.3667575882520854,0.3680916935643238,0.3696066153133524,0.3707796743744515,0.3714575850461665,0.3723920041330525,0.3736233654109372,0.3738271493823549,0.37375812806691,0.3745581188300296,0.3761982430537671,0.3783433858590962,0.3808350348517919,0.3821737225695966,0.3842856491404077,0.3886341827486939,0.3907848744836352,0.3905546654459449,0.3901176470588235,0.3901546452602998,0.3966828971393792,0.3935119887165021,0.4039680352714246,0.4054257724189902,0.0,2.10904628170499,59.67808373804096,222.7764406644229,345.0308695765675,fqhc2_80Compliance_baseline,42 -100000,95743,40384,378.09552656591086,7438,76.51734330447135,5847,60.54750738957418,2415,24.858214177537786,77.32392886815877,79.68899186831703,63.31606620966248,65.06543205666681,77.04099595200519,79.40319595894005,63.21306347253312,64.96339593020691,0.2829329161535838,285.7959093769864,0.1030027371293655,102.03612645989324,66.06072,46.249537560837695,68997.9632975779,48305.92060081437,194.38787,114.96029013041472,202422.9865368748,119465.16385669372,243.23378,115.23441140126404,250621.23601725453,117645.90017965715,4249.24746,1891.96387491236,4401437.264343085,1939647.008367709,1414.67189,608.653122843677,1464745.9970963935,623052.7928990707,2376.90044,973.2813258319958,2448413.837042917,990085.1317324588,0.37789,100000,0,300276,3136.271058980813,0,0.0,0,0.0,16090,167.47960686420942,0,0.0,22829,235.03545951140032,2181019,0,78367,0,0,2640,0,0,41,0.4177851122275258,0,0.0,0,0.0,0,0.0,0.07438,0.1968297652756093,0.3246840548534552,0.02415,0.3063200815494393,0.6936799184505607,25.52998794063835,4.614840165614581,0.3307679151701727,0.1956558919103813,0.2300324952967333,0.2435436976227125,11.463361447685305,5.899277993896464,25.427559380090308,13206.83387611645,65.71728816927079,13.298440247819734,21.94048253915173,15.043455883552792,15.43490949874652,0.5435265948349581,0.7762237762237763,0.6964839710444675,0.5858736059479553,0.1088483146067415,0.702231520223152,0.9446064139941692,0.8586497890295358,0.7376543209876543,0.1262798634812286,0.4919555857693179,0.704119850187266,0.6438356164383562,0.5377081292850147,0.1043324491600353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0046031086191688,0.0068808736070797,0.008829685626613,0.0110163974447654,0.0132892057026476,0.0152315315131619,0.0175365173987158,0.0198345755503072,0.0221460018429405,0.0244317541035709,0.0265200517464424,0.0285705473537031,0.030633581574529,0.0325050563420976,0.0344207392706524,0.0364593043730449,0.0384958691410304,0.0409184023625568,0.0429025368547168,0.0580374387939404,0.0718522780771041,0.0853877208619514,0.0982293068640646,0.1102757420783466,0.1256531765004548,0.1393118229371134,0.1520917405794478,0.1643683440327284,0.1761344754022791,0.1903398387461382,0.204364328427609,0.2167550878413637,0.2278179293453897,0.2391285220948903,0.2503848240883268,0.2612290901786611,0.2712736029527603,0.2810569585755814,0.2903595802030165,0.2982681875086938,0.3064236314617278,0.3140664476259385,0.3208333333333333,0.3273256451161148,0.3338355149419609,0.3398231198645173,0.3459958670306401,0.3523578354382731,0.3579650701243715,0.3599821770948664,0.3610279613204033,0.362513775466953,0.3638696395952333,0.3646999210122356,0.3655395760747778,0.3660571265443357,0.3674076753592686,0.3689887178784818,0.3698032200357782,0.3710149825391461,0.3712931188383948,0.3724327846797418,0.3738861080559359,0.3739430835386771,0.3741450247647999,0.3740737561868795,0.3748017509357356,0.3764693348485387,0.3790047716428084,0.3815026240677654,0.3845287269996245,0.3848160875652284,0.3863251807414244,0.3886659021406727,0.3893240149415592,0.3923100490196078,0.3962415033986405,0.3983324367939752,0.4007692307692307,0.0,2.0244031876439923,63.73592147884498,216.43691507952727,340.4829374177936,fqhc2_80Compliance_baseline,43 -100000,95786,41015,381.63197126928776,7607,78.13250370617835,5929,61.24068235441505,2478,25.400371661829496,77.4066300966336,79.74495406469649,63.35719594835807,65.08748175763935,77.10319287815626,79.444113991284,63.24518363730552,64.97987673313219,0.3034372184773417,300.84007341248764,0.1120123110525526,107.60502450716558,65.10856,45.59570867481083,67972.7099993736,47601.41218425533,196.45865,115.83683156158136,204436.91144843717,120268.22454385964,244.21487,115.757590401521,251336.8133130103,118056.54394478376,4289.05207,1933.493415956096,4432493.767356399,1973410.6513754649,1497.63667,655.6141145928315,1544412.5341908005,665458.4880134679,2435.87748,1015.1276639985128,2499268.034994676,1020554.1293043564,0.38407,100000,0,295948,3089.668636335164,0,0.0,0,0.0,16141,167.82201991940366,0,0.0,22938,235.7860230096256,2187656,0,78616,0,0,2580,0,0,52,0.5428768295993152,0,0.0,0,0.0,0,0.0,0.07607,0.1980628531257323,0.3257525962928881,0.02478,0.3070383797974746,0.6929616202025253,25.77396537796383,4.590215498554276,0.3285545623207961,0.1944678697925451,0.2448979591836734,0.2320796087029853,11.336691609761282,5.849154618566585,26.27207163979864,13486.213257903046,66.717287972327,13.310439459858692,21.936720233032677,16.12315671176094,15.346971567674686,0.5560802833530106,0.7805724197745013,0.6878850102669405,0.5971074380165289,0.1380813953488372,0.6928864569083447,0.92507204610951,0.8282828282828283,0.7371794871794872,0.1688311688311688,0.5113051264830982,0.7183622828784119,0.6400550584996559,0.5587719298245614,0.1292134831460674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.0048974873760418,0.0072254188611846,0.0095404529429096,0.0116760407237517,0.0139813853078348,0.0164964009706164,0.0186393099576379,0.0208921051555664,0.0233636251995579,0.0257035685735954,0.0278279428665243,0.0298978396267138,0.0322932644300552,0.0344497015802331,0.0365945583148329,0.0388463010665921,0.0413418477359429,0.0435925406472391,0.0457252321659101,0.0605937288047164,0.0754669622874354,0.0891194968553459,0.1021472038004351,0.114315518840091,0.1298623072777419,0.1430979107705027,0.156793943453805,0.1691761015013925,0.1808715773235634,0.1950006994286206,0.2084148833789292,0.2207792207792207,0.2317143762082109,0.2437397677203854,0.2552513335841873,0.2660018294179327,0.2769393400958143,0.2862572469111991,0.2956817479130166,0.3039866725282861,0.3119971936389148,0.3189592926220096,0.3263063279002876,0.3328916819623908,0.3389675763707249,0.3455956081419833,0.3515651874785002,0.3570835495588998,0.3629005594276117,0.3644062073715914,0.3663149182702255,0.3678367116321774,0.3690151866450266,0.3703119184098861,0.3711778333512328,0.3713181119579167,0.3732146961289687,0.3747419778570088,0.3757707523969062,0.3772403449568804,0.3787630210907078,0.3801789718548944,0.3811324977618621,0.3819795123358823,0.3819029996612024,0.3816089334548769,0.3838053625876214,0.3841746344206974,0.3857551441963931,0.3896636587366694,0.3913389587645279,0.3939546599496221,0.3965320556696327,0.3970051474029012,0.3967954759660697,0.4017622507342711,0.4040097205346294,0.4114030184460592,0.407421875,0.0,2.5275855751193887,64.33741252100313,221.88192077147625,342.0136594256634,fqhc2_80Compliance_baseline,44 -100000,95679,40727,382.393210631382,7513,77.24788093521045,5790,59.85639482017998,2376,24.383616049498844,77.29491858535671,79.69850431874072,63.29396199958445,65.07456065637182,77.00996119238755,79.41419043384701,63.189253694461655,64.9734843869267,0.2849573929691615,284.3138848937059,0.1047083051227986,101.07626944511594,65.41634,45.865174537189695,68370.63514459808,47936.51118551583,194.87632,115.23050910176518,202912.45727902677,119669.72805084204,238.53579,113.42687218790762,245363.40262753583,115518.40990689716,4181.93449,1865.1697661224468,4324175.890216243,1902782.7695967208,1422.47024,616.7887219724311,1469401.8123099112,627334.8814599434,2345.84506,965.541904722012,2409082.578204204,972252.5546336736,0.38087,100000,0,297347,3107.7561429362763,0,0.0,0,0.0,16129,167.8633764985002,0,0.0,22442,230.6044168521828,2184690,0,78348,0,0,2602,0,0,37,0.3762581130655629,0,0.0,0,0.0,0,0.0,0.07513,0.1972589072386903,0.3162518301610542,0.02376,0.3164604897753093,0.6835395102246907,25.583658222933657,4.61095462263022,0.3343696027633851,0.1986183074265975,0.229706390328152,0.2373056994818652,11.15451228535889,5.541804119877421,25.14637900940992,13240.80733439677,65.03095193542741,13.448296865697117,21.64864174843393,14.759311796175162,15.174701525121217,0.5400690846286701,0.7747826086956522,0.6802685950413223,0.5691729323308271,0.1179039301310043,0.7212996389891697,0.9066265060240964,0.8739669421487604,0.75,0.1773584905660377,0.4830874006810443,0.7212713936430318,0.6157024793388429,0.5155945419103314,0.1036970243462579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0044648746283499,0.0066114863149342,0.0089065121244471,0.0111566924885735,0.0134946439309775,0.0157863586268827,0.0179297521505486,0.0198878749437328,0.0220653766172568,0.0243114325280812,0.0263714814053831,0.0283709108122292,0.030342069733167,0.0325467608076303,0.0344492362425408,0.0363638247821175,0.0383744834603484,0.0403341586733526,0.0423203210507114,0.056639645662711,0.070820550942843,0.0840959657445111,0.0969177829925601,0.109481503365902,0.1243730026032297,0.1382787868493965,0.1511079403277501,0.1634055376855424,0.1755748945713642,0.189491715326108,0.2034774893695292,0.2167157752818762,0.2282853457510767,0.2392679197967421,0.2508832356882593,0.2618981197344194,0.2728029893751125,0.2820102214650766,0.2910642006168946,0.2997197582045997,0.3072240497289957,0.3145803976364433,0.3216916616676664,0.328835563983808,0.3362302023281938,0.3426240397027308,0.3488105547348581,0.3557478112210537,0.3616122688698544,0.3630694216211848,0.3641067987888797,0.3648286560428712,0.3662232772221337,0.3670607152428312,0.3675632498195056,0.3673372028305637,0.3684045640416831,0.3695185789067193,0.3708556965660844,0.3725353308552991,0.3734764598104039,0.3751925552343371,0.3743716893947932,0.3753403345001945,0.375131717597471,0.3739952173787778,0.3769194086790653,0.378167641325536,0.3808779314491882,0.383537007147798,0.3818971526623411,0.3855329949238578,0.3861560893254547,0.3883679075494932,0.3924718292975305,0.3981268232765239,0.4001638337087856,0.4113941385921665,0.4105102817974105,0.0,2.569253480744135,60.8042572345245,218.7158847612108,337.9323074485737,fqhc2_80Compliance_baseline,45 -100000,95718,40470,380.31509225015145,7459,76.81940700808624,5770,59.66484882676195,2433,24.96918030046595,77.3593554540744,79.72911364230251,63.33143217950936,65.08316331005922,77.05831431575827,79.4300609771092,63.22034877556446,64.97641562830307,0.3010411383161369,299.052665193301,0.1110834039449031,106.74768175614702,66.0836,46.24407247907058,69039.8880043461,48312.82776392171,195.66539,115.9612939177574,203831.33788838045,120561.63304473288,236.22662,112.03210795202764,243336.7496186715,114364.93525114562,4220.59595,1877.8484670596188,4365685.0435654735,1918133.3992139583,1396.64663,601.5605802738179,1443858.9502496915,613211.9262145257,2400.94748,997.9592105056636,2466591.069600284,1005987.4288083224,0.37891,100000,0,300380,3138.176727470277,0,0.0,0,0.0,16126,167.8472178691573,0,0.0,22226,228.70306525418417,2182684,0,78274,0,0,2684,0,0,45,0.4701310098414091,0,0.0,0,0.0,0,0.0,0.07459,0.1968541342271251,0.3261831344684274,0.02433,0.3190999744310918,0.6809000255689082,25.37119054592299,4.636800501004685,0.3256499133448873,0.1939341421143847,0.2369150779896013,0.2435008665511265,11.089369553106058,5.4754477958065255,25.9099538622714,13138.53646667776,64.89581290432643,13.136856443190633,21.04034273243041,15.2832927950377,15.435320933667704,0.5405545927209705,0.7801608579088471,0.6998403406067057,0.562545720555962,0.1153024911032028,0.6908037653874004,0.8969359331476323,0.8697674418604651,0.6832298136645962,0.1407407407407407,0.493278651173388,0.725,0.6494133885438234,0.5253588516746411,0.1092511013215859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181258355953,0.0043082911796608,0.0063624463453986,0.0086733968434522,0.0108497808689993,0.0130819428466714,0.0152403282532239,0.0174039973051875,0.0195150375171229,0.0216937283728168,0.0237504358348544,0.0255448961564535,0.0276868942527316,0.0299617750394098,0.0317740420833204,0.0338867409597452,0.0355848673720829,0.0374669363622218,0.0395691680701973,0.0415642318429934,0.056265664160401,0.0695422811626665,0.0826637014036044,0.0962215935978463,0.1077646661815727,0.1233060753842736,0.1375618142071863,0.1498370988692745,0.1621352997755691,0.1741682764541747,0.18832568263615,0.2021371037588775,0.2142833828377452,0.2259166028236839,0.2372784259289861,0.2485525410945229,0.2596076503709,0.2701379667349373,0.2804677300334904,0.2896456079222446,0.2984558040468583,0.3066133202306999,0.3147254359192751,0.3209610386499467,0.3284687484823466,0.3348818296079059,0.3411854579153673,0.3466810920893527,0.3527879643907685,0.3582109250240857,0.3594147497072402,0.3599807268722467,0.3614074595355384,0.3625028861694758,0.3638996569086129,0.3646023118732297,0.3644031586776597,0.36585445947721,0.3673186745545942,0.3685715817886063,0.368739660099263,0.3692774790149425,0.3710663966928204,0.3717321182866037,0.3731708498885551,0.3741630563213863,0.3733991845173146,0.3749920660107902,0.3775322283609576,0.380742932544284,0.382789863404314,0.3833932692823788,0.3827784891165173,0.3850345356868764,0.3864949332323136,0.386203604248717,0.3843783700508396,0.3904820012202563,0.4007170435741864,0.410019267822736,0.0,2.417459768519421,60.88665354967517,218.3197195837596,336.91719769952186,fqhc2_80Compliance_baseline,46 -100000,95884,41012,383.5572149680864,7515,77.23916398982104,5798,59.843143798756834,2318,23.79959117266697,77.4394230829848,79.71899939804827,63.39129033748679,65.07723801824432,77.15436382903697,79.43445075519149,63.28850833908104,64.97736846214896,0.2850592539478356,284.5486428567767,0.1027819984057529,99.86955609535642,65.4368,45.84461218705788,68245.79700471404,47812.5778931395,195.87102,115.83890214705534,203670.99828959996,120214.59106407316,244.35696,115.6824547842575,251122.9923657753,117784.62013803628,4177.64175,1857.8457943955243,4315495.692712028,1896949.8615147169,1398.36417,599.1979290596936,1442326.6446956738,609340.6936594365,2278.77704,933.6221386575836,2341478.82858454,944534.2724642856,0.38245,100000,0,297440,3102.081682032456,0,0.0,0,0.0,16125,167.5357723916399,0,0.0,22920,235.23215552125484,2188986,0,78570,0,0,2606,0,0,43,0.4484585540861874,0,0.0,0,0.0,0,0.0,0.07515,0.196496274022748,0.3084497671324018,0.02318,0.3217205382970695,0.6782794617029304,25.59031444376356,4.613634585083715,0.3478785788202828,0.1919627457744049,0.2343911693687478,0.2257675060365643,11.37497025104662,5.761685081152243,24.4309795464152,13276.150936439684,64.88023774098886,12.895978530124529,22.55229847386105,15.097094220184982,14.334866516818304,0.5577785443256296,0.779874213836478,0.6931085770946951,0.5938189845474614,0.1229946524064171,0.727540500736377,0.9027355623100304,0.874468085106383,0.7766990291262136,0.16,0.5058558558558559,0.7283163265306123,0.6380090497737556,0.54,0.1142587346553352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689005871633,0.0046211844825489,0.006806723541525,0.0092294570967316,0.0114649293097665,0.0133188172808856,0.015492742551566,0.0176356589147286,0.0197682971680764,0.0220340023322899,0.0241605787063126,0.0263487307873838,0.0283309698501757,0.0303467018035081,0.0325367533351203,0.0345607368551484,0.0367584680005793,0.0387524608848824,0.0411640123751583,0.0432656797777939,0.0581238989711569,0.0726824375156733,0.0853325235347707,0.0982518767389364,0.1099905253184545,0.1253471012427016,0.1382995625509739,0.1507400992466182,0.1631238939939875,0.1753191853683072,0.1888995194736785,0.2021954750740108,0.2147380541162924,0.2271207552117477,0.2390659014446863,0.2514553221629518,0.2626663397454472,0.2726813213968796,0.2825264493328198,0.2916519015557663,0.3008153554765094,0.3090826298644435,0.3172029030046571,0.3249604903979694,0.3324673432719856,0.3388429752066115,0.3445334000500375,0.3501976686539463,0.3563767159621679,0.3621316746613252,0.3629647571757297,0.3635963706351388,0.3657705840957072,0.3671445915476672,0.3679253691434683,0.3677245435608381,0.367209895313663,0.3684987937174837,0.3696714866851263,0.3708043800575195,0.3715454323720895,0.372215070799089,0.3733159860662274,0.3744940629262729,0.3748227546924944,0.3756958055664445,0.3771430198781113,0.3788197606859081,0.3819626789903021,0.3850182510712585,0.3865178774766568,0.3858507176012378,0.3862527716186252,0.3901500577145055,0.3902975791790259,0.3952059744639846,0.3945471638984644,0.3981347150259067,0.3956814357823892,0.4029107621600919,0.0,2.4595487370720965,59.623474420106426,217.4384953069797,343.3732147420787,fqhc2_80Compliance_baseline,47 -100000,95729,40771,381.41002204138766,7585,78.01188772472291,5874,60.692162249684,2402,24.694711111575383,77.34647984393533,79.69839084764544,63.33814763576003,65.07510869340273,77.05175195483083,79.40337105554785,63.2303761537671,64.96982357965496,0.2947278891044931,295.019792097591,0.107771481992934,105.28511374776885,65.63656,45.982207144431015,68564.51023200911,48033.274916097536,196.74448,116.1200919946744,204780.10843109197,120559.68607940084,240.36609,113.42572138668493,246440.05473785373,114919.70936726037,4231.86588,1881.8991964245188,4377904.041617483,1923128.0417893424,1431.06552,612.2657681713977,1478696.7481118576,623503.0658139585,2369.2831,978.7838183410686,2438994.056137638,991999.4558995968,0.38085,100000,0,298348,3116.568646909505,0,0.0,0,0.0,16279,169.34262344744016,0,0.0,22598,231.4136781957401,2184166,0,78390,0,0,2606,0,0,39,0.396953901116694,0,0.0,0,0.0,0,0.0,0.07585,0.1991597741893133,0.3166776532630191,0.02402,0.3100037561036685,0.6899962438963315,25.669521942339284,4.6119323053255465,0.3265236636023153,0.2012257405515832,0.2376574736125297,0.2345931222335716,11.04749866755486,5.443243436090614,25.482462435512133,13301.383644502192,65.83322446081735,13.776147383105306,21.42294072963004,15.548267461158051,15.08586888692396,0.5440926115083419,0.7580372250423012,0.6866527632950991,0.585243553008596,0.1204644412191582,0.6952380952380952,0.9014492753623188,0.8449438202247191,0.7032258064516129,0.1660377358490566,0.4983366600133067,0.6989247311827957,0.6388323150033944,0.5515653775322283,0.1096136567834681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0044501211365548,0.0067281639114683,0.0089087990898193,0.0111456871478837,0.0133165010588043,0.0151681957186544,0.0174527194602925,0.019799450072063,0.0220019862193236,0.0242929919330866,0.0265842793504813,0.0287047889293278,0.0309709447837595,0.0330671453922661,0.0350383975359427,0.0370757666742592,0.0389675063285886,0.0411222336566148,0.0436313262298326,0.0590802317690661,0.0732646738675374,0.0866381300096521,0.0994742376445846,0.1115246338917648,0.1264127205641367,0.1394460768194499,0.1528170962729614,0.1652841388292818,0.1779421221864952,0.1925221772457152,0.2059310210570714,0.2182588849038148,0.2295940112562155,0.2403020676464445,0.250733381302928,0.2611275302514916,0.2712301029304235,0.2810205309212243,0.2899648270568152,0.2989318489544155,0.3068733547821,0.3149486001231702,0.3218840353676532,0.328888510721058,0.3366526990386985,0.3426103286384976,0.3493547688505586,0.3549554926945735,0.3600719376892662,0.3621471366114319,0.3641477437233734,0.3656859700143998,0.3674335719046101,0.3690061093726717,0.3698030298374458,0.3699460488733735,0.3711394487865076,0.3721324966567225,0.3723880864485144,0.3735442966530581,0.375094324635609,0.376086589585619,0.3774103442061632,0.3792543391835547,0.3796347537354732,0.3812375824239108,0.3847641389804717,0.3859003397508493,0.3874680306905371,0.3901250459727841,0.3921652803863697,0.391894463119173,0.3947977770916949,0.3949636154729988,0.3957780458383594,0.3968720966243419,0.396168108776267,0.4055051078320091,0.4121863799283154,0.0,2.610573881274884,59.68667273223189,223.52106036403305,347.42131014889696,fqhc2_80Compliance_baseline,48 -100000,95742,40645,380.3033151594911,7572,77.88640304150738,5908,61.13304505859497,2436,25.05692381608907,77.41222784566315,79.76766237554403,63.350809200748486,65.08961366470625,77.10650847049737,79.46172967661957,63.23896921789768,64.98062819965405,0.3057193751657792,305.9326989244653,0.1118399828508032,108.98546505219996,66.56694,46.56641390716873,69527.1876501431,48637.1907237686,196.45957,116.12344219286484,204607.52856635544,120699.64939361787,243.03328,115.38192451064532,250589.45917152343,118014.300101306,4266.75323,1908.9850856131773,4417963.923878757,1955473.5794999024,1400.74587,609.290710184431,1448544.5572476028,622138.9334034557,2402.73398,993.5253781536022,2473911.992646905,1006619.4509821573,0.38012,100000,0,302577,3160.3267113701404,0,0.0,0,0.0,16217,168.76605878297926,0,0.0,22924,236.21816966430612,2179670,0,78152,0,0,2639,0,0,38,0.3864552651918698,0,0.0,1,0.0104447368970775,0,0.0,0.07572,0.1992002525518257,0.3217115689381933,0.02436,0.3188971421377313,0.6811028578622687,25.380137256140948,4.609169441970489,0.3298916723087339,0.2044685172647257,0.2278266756939742,0.237813134732566,11.255706817775916,5.647315849160507,25.80405307453444,13205.513239059012,66.47703522584676,14.07262501353154,22.008370473461856,15.105192242612258,15.290847496241096,0.5429925524712255,0.7706953642384106,0.7049769112365315,0.5505200594353641,0.1153024911032028,0.7061252580867171,0.9096209912536444,0.8828451882845189,0.6899441340782123,0.1642335766423357,0.4897867564534231,0.715606936416185,0.6471787899388172,0.5,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0048548117366847,0.007152132451406,0.0095153952392558,0.0115800282638091,0.0137425561154374,0.0160527549585176,0.0184382110751711,0.020582734621713,0.0227742635468484,0.0247914403427142,0.0268749871681688,0.0287550118227613,0.031029226998414,0.0332267051903828,0.0353517603522771,0.037381435612807,0.0394575750658836,0.0413998170173833,0.0432726363598483,0.0580460610110036,0.0716535350681692,0.0845894829593731,0.0972607927291088,0.1092271168557108,0.1242050012169698,0.1382073269091989,0.1522023828536749,0.1648820210310336,0.1764598559730405,0.1909331033367473,0.2039804227304227,0.2163391933815925,0.2281272239557672,0.2386272241502781,0.2495451923503572,0.2605803840908582,0.2705479452054795,0.279958654217497,0.2889169199013818,0.2975878768218365,0.3052256810249923,0.3131047551370877,0.3214123006833713,0.3281077205390888,0.3340359700701404,0.3404337868111788,0.3465225683407502,0.351927777849632,0.357489195741541,0.3594258218865084,0.3606275845961504,0.3620709060213843,0.3631823561675471,0.3653575502585147,0.3656950022141123,0.3667182466999305,0.3677007448637145,0.367876442610934,0.3692184297299706,0.3700054222837163,0.3707809756771152,0.3711013696331564,0.3726678895798845,0.372124394767904,0.3733030492898914,0.3741364544675992,0.3766295106744757,0.3786988494423138,0.3790050422837178,0.3815735461801596,0.3844266666666667,0.3887062096876185,0.3900297732651347,0.3901362141850634,0.3925433388743766,0.3887448528290376,0.3901154547295928,0.3908965517241379,0.3922779922779922,0.0,2.1474697360046062,64.38590856447189,223.89941528845705,337.3372321184817,fqhc2_80Compliance_baseline,49 -100000,95729,40654,380.4594219097661,7449,76.62254907081449,5771,59.689331341599726,2273,23.378495544714767,77.32373385663094,79.69386268186463,63.321321634088775,65.07523193472865,77.04848036156014,79.41734648530644,63.22101179915311,64.97677373980598,0.2752534950707996,276.51619655819104,0.1003098349356648,98.45819492267084,65.63084,45.98724721475424,68557.38595409959,48037.52163811312,195.47837,115.34386624734964,203598.6900521263,119890.53426094983,240.36471,113.93939102196066,246936.16354500724,115884.12059102238,4184.30895,1858.2831022993237,4328698.304588996,1899251.3569809725,1401.60477,603.3006759754383,1449721.442822969,615937.4816094844,2243.92962,928.5242392173732,2309150.85292858,941719.2687790036,0.37991,100000,0,298322,3116.244816095436,0,0.0,0,0.0,16135,167.901054017069,0,0.0,22633,232.30160139560635,2184757,0,78410,0,0,2540,0,0,28,0.2924923481912482,0,0.0,1,0.0104461552925445,0,0.0,0.07449,0.1960727540733331,0.3051416297489596,0.02273,0.3152935184006112,0.6847064815993887,25.740668764190616,4.606896414263272,0.3391093398024605,0.1959798994974874,0.225784092878184,0.2391266678218679,10.91884823455739,5.383797448239862,24.197760161189887,13270.640415623402,64.77926753910552,13.13582829969996,22.057457893492515,14.490889325854749,15.095092020058312,0.540807485704384,0.7718832891246684,0.6980071538068472,0.5694551036070606,0.1014492753623188,0.7054992764109985,0.8991097922848664,0.8903225806451613,0.7335526315789473,0.1268115942028985,0.4889496468443837,0.7178841309823678,0.6380697050938338,0.5195195195195195,0.0951086956521739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002289766970618,0.004512864198282,0.0067803491676816,0.0086681706400016,0.0107744587335178,0.0131202314376228,0.0154407865214376,0.0174338443311919,0.0197662409374904,0.0217113011418915,0.0239255058403667,0.0263636270270825,0.0284659067528085,0.030595315382158,0.0329682806742292,0.0352217512664116,0.037491973403484,0.0394874721170306,0.0413296179999584,0.0434497202338157,0.0584286087183503,0.072644116046385,0.0856813175285849,0.0988198418041063,0.1109201341291098,0.1258603736479842,0.1402535405505755,0.1534213634380686,0.1659244069932609,0.1783022206019536,0.1927992334112124,0.2062001752317494,0.2184176760976882,0.2296582187137827,0.240999240999241,0.2526991860915785,0.2632353597074171,0.2732440569810812,0.2834610849056603,0.2918621415657825,0.3000566231785248,0.3086666432969935,0.3165740631280293,0.3236787887499401,0.3302976212159848,0.3371206053062884,0.3436799599323859,0.3496592573721419,0.3549177776624994,0.3600681467002998,0.3605317442126977,0.3616252448073263,0.3623552668737644,0.363375380600261,0.3644250980158316,0.3646303633403974,0.3645991882293252,0.3659382758677387,0.3668832279022055,0.367337815606895,0.3684794046903187,0.3708922051119225,0.3711955147120816,0.3719427052835458,0.3731133561063062,0.3746485534855611,0.3744174003107198,0.3769856398525861,0.3785808100528913,0.3790952265958303,0.3811700604885256,0.3813915857605178,0.384419064633446,0.3860396653238301,0.3856246434683399,0.3849397590361446,0.3881954076128833,0.391473662635786,0.398723640399556,0.402491241728299,0.0,2.237063749040884,61.00672040920757,216.29266189837367,338.43582902581966,fqhc2_80Compliance_baseline,50 -100000,95774,40679,381.52316912732056,7536,77.40096477123228,5884,60.788940631068975,2484,25.5184079186418,77.38153749659537,79.72167869790646,63.350937847410606,65.08242341684732,77.0777662079477,79.41873169780264,63.24044671910959,64.97517997651835,0.3037712886476669,302.9470001038135,0.1104911283010139,107.24344032897191,65.1772,45.65521058281643,68053.12506525779,47669.73352143216,196.52923,116.19448471429271,204560.63232192452,120685.13816738788,244.50383,116.19512778444454,251101.4784805897,118106.77190183336,4274.14817,1910.8151463241752,4420927.381126402,1953621.916958197,1426.19227,622.5170622102181,1470441.5290162258,631732.151891253,2448.27498,1009.3709863098338,2517627.477185875,1020952.7448992294,0.3805,100000,0,296260,3093.323866602627,0,0.0,0,0.0,16238,168.8662893896047,0,0.0,22966,235.617182116232,2186670,0,78539,0,0,2619,0,0,39,0.3967673898970493,0,0.0,0,0.0,0,0.0,0.07536,0.1980551905387647,0.3296178343949044,0.02484,0.321865154379332,0.678134845620668,25.247284222253963,4.636273118674736,0.3246091094493541,0.2012236573759347,0.2328348062542488,0.2413324269204622,11.095071118847237,5.463169559507924,26.364836273278357,13233.36950018941,66.58770476976339,13.81156331622214,21.77469175417385,15.52142776217068,15.480021937196732,0.5496261046906866,0.7609797297297297,0.7089005235602094,0.5985401459854015,0.1119718309859155,0.7171929824561404,0.9263456090651558,0.8409090909090909,0.7305389221556886,0.1732283464566929,0.4960753532182103,0.690734055354994,0.6640953716690042,0.555984555984556,0.0986277873070325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382466730134,0.0043688041032294,0.0066657197354003,0.0089779917329352,0.0111535880594586,0.0134063540213972,0.0154727443225832,0.0177282887149287,0.0196100472112653,0.0218552397323347,0.0238763757096304,0.0261645213606782,0.0282850092535471,0.0302400049421867,0.0324803251126857,0.0346755111951479,0.0365403123156685,0.038624607378689,0.0407330071368466,0.0424492940735496,0.0573244419398265,0.0713732873130425,0.0850762698537506,0.0982619477953848,0.1107329153274672,0.1261889663918833,0.1398700706874807,0.1530863935018818,0.1651245931380396,0.1775431450316218,0.1918468841835581,0.2053040299379177,0.2176053735625937,0.2290812925504595,0.2403889518320115,0.2509770057679321,0.2613185244658548,0.2716940406731645,0.2813942673064053,0.2905946713056216,0.299038828550609,0.3072380729653882,0.314610331972306,0.3223807983127823,0.329328879441239,0.3363603878901389,0.3427517198248905,0.3487928115971541,0.3542147132751159,0.3593863459329575,0.3604668400695408,0.3618779963630352,0.3623734699927999,0.3631293009779066,0.3645440591329746,0.3647779432308377,0.3656977942692228,0.3662154614449519,0.3672946521598032,0.3684125877874872,0.3697223421630653,0.3702485235245154,0.371427369660771,0.37218459599937,0.3728301339393646,0.3727723681793128,0.3717930342554106,0.374257363165213,0.3768126168718907,0.3795500859072202,0.3818131767296752,0.3871625610476037,0.3896161951593332,0.3924980665119876,0.3948325358851675,0.3944865775851691,0.3958817154358259,0.3956923076923077,0.3996062992125984,0.3989859594383775,0.0,2.4484973192787143,62.88605494491814,230.47396583881263,334.90493780052134,fqhc2_80Compliance_baseline,51 -100000,95860,40996,383.715835593574,7593,77.96786981013979,5917,61.17254329230127,2415,24.78614646359274,77.37299817448195,79.67568596366931,63.35320242165369,65.05746983612502,77.07095092443943,79.37252634179471,63.24171030279219,64.94831029788094,0.30204725004252,303.1596218745989,0.1114921188614985,109.15953824408577,65.08106,45.65920440980909,67891.7796786981,47631.13332965689,198.70356,117.7722945067803,206705.2263717922,122278.70280281694,243.14439,115.24924750660756,250660.6300855414,117839.1173766566,4278.70162,1922.4778648639603,4427256.446901731,1969272.1415230136,1443.58896,624.9402059300429,1491954.902983518,637957.812085769,2383.19446,996.5312179770266,2449290.3400792824,1008675.9130240212,0.38413,100000,0,295823,3085.9899853953684,0,0.0,0,0.0,16430,170.80116837054038,0,0.0,22910,235.96912163571875,2184192,0,78447,0,0,2681,0,0,36,0.3755476736907991,0,0.0,0,0.0,0,0.0,0.07593,0.1976674563298883,0.3180561043065982,0.02415,0.3208208208208208,0.6791791791791791,25.583117645511088,4.565060134767285,0.3189116106134865,0.2038195031265844,0.2404934933243197,0.2367753929356092,11.035871772906033,5.514766170739522,25.79955715047597,13331.747300878982,66.73558084073305,14.06449221358994,21.35625696394391,15.897730185025354,15.417101478173835,0.5382795335474058,0.7719734660033167,0.6788553259141494,0.5586788475052705,0.1270521056388294,0.6867388362652233,0.9144385026737968,0.8542094455852156,0.6646153846153846,0.1404109589041096,0.4888488398287903,0.7079326923076923,0.6178571428571429,0.5273224043715847,0.1235347159603246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888393761393,0.0048040378241965,0.006928172200075,0.0090775244961161,0.0111726732069333,0.0135791284520404,0.016104044357469,0.0183695962770951,0.0205480851759512,0.0227865715776656,0.02485553870743,0.0271787084726981,0.0292896489352955,0.031570062481343,0.0336285192936155,0.0355250792601695,0.0371109915576891,0.039283345768051,0.0412153812604492,0.0430734016542683,0.0585892289244564,0.0723317101715814,0.0860378386306019,0.0988679800058806,0.1102966730908976,0.1257698198911952,0.1398308677037853,0.1529154084974269,0.1650477146089964,0.1780333068992863,0.1919169088365084,0.2053707527486189,0.2181579033187307,0.2298581568039895,0.24073217980892,0.2521550291399827,0.2628406884082234,0.2733330331817568,0.283792986040177,0.2927315424709319,0.3010368210326552,0.309256267996348,0.3167008160316464,0.3236662270710946,0.3304776833995601,0.338011320894326,0.3439082476811231,0.3491115215591364,0.3553146798744911,0.3609693540283984,0.3620294157333693,0.363564875491481,0.3652989979223496,0.3666193017051386,0.3682790891750119,0.3689545545299565,0.3692102420738293,0.3706790072627262,0.3716944592023856,0.3730144501416329,0.3741634709376645,0.3750967357872805,0.3759490210099055,0.376489063376332,0.3786801051286379,0.3805735817458656,0.3814498077254204,0.3831802343997466,0.3842941571999858,0.3865133548928015,0.3882492690058479,0.3918528814284187,0.3928798474253019,0.3926725800231392,0.3940173382871296,0.3961139587555132,0.4027584069425073,0.4015276630883567,0.3909499718943227,0.3908845113943607,0.0,2.1175380985103174,65.5992503801147,218.91165168000092,342.7934214248369,fqhc2_80Compliance_baseline,52 -100000,95799,40494,380.4841386653305,7693,79.1761918182862,5907,61.15930228916794,2418,24.937629829121388,77.39816222968327,79.72728106564294,63.35848721039546,65.0795086868781,77.11143117845954,79.43790522567633,63.25488398023978,64.97683365208084,0.2867310512237253,289.37583996660976,0.1036032301556773,102.67503479725804,66.04136,46.23370215097838,68937.42105867493,48261.15319677489,195.70144,114.62982596380247,203771.9287257696,119145.74530994229,238.44146,112.11134295773604,245637.2509107611,114442.12498021756,4275.65743,1873.523673528438,4433938.099562626,1926698.3191320011,1426.68195,605.2989438186104,1479536.1746991095,622289.2231696603,2381.6032,965.7322953178036,2459749.37107903,986615.2889502412,0.37912,100000,0,300188,3133.5191390306786,0,0.0,0,0.0,16155,168.1019634860489,0,0.0,22452,231.0984457040261,2185469,0,78382,0,0,2592,0,0,39,0.3966638482656395,0,0.0,0,0.0,0,0.0,0.07693,0.202917282127031,0.3143117119459249,0.02418,0.31452802359882,0.68547197640118,25.50296439600994,4.618198898588354,0.3341797866937532,0.1934992381919756,0.23379041814796,0.2385305569663111,10.99331240703461,5.403745322585828,25.253210719813293,13187.750672382226,65.89885293065774,13.09698363928712,22.374791729862213,15.311530171610777,15.115547389897628,0.5393600812595226,0.7664041994750657,0.7021276595744681,0.5626357711803042,0.1043293115684882,0.7034220532319392,0.8961937716262975,0.8565891472868217,0.6580882352941176,0.1890756302521008,0.4923780487804878,0.7224824355971897,0.6474622770919067,0.539224526600541,0.0871050384286934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020862449616171,0.0043578725474298,0.0065738749340583,0.0087537574132748,0.0109083515478066,0.01278319457732,0.0153665868446527,0.0172835979267844,0.0192995361572569,0.0214039431547284,0.0237378083763625,0.0257773217034376,0.0276967031160075,0.0297553494786895,0.0317542141347492,0.0335450555125225,0.0355871886120996,0.0372670807453416,0.0394899560414436,0.0414445184938353,0.0559358110223075,0.0700466419861538,0.0828711905984966,0.0951049832909476,0.107646575169186,0.1238755641998668,0.1373451552689631,0.1505916404188303,0.1626670084265163,0.1737274959522201,0.1893489849765763,0.2021803551729359,0.2149150921871774,0.2266500622665006,0.2380868647793212,0.2496874343058828,0.2610411765361758,0.2715341273322312,0.28090575969687,0.2902727033248961,0.2992136000925176,0.3073927686047055,0.3149693934335003,0.3220249583428236,0.3284713197877069,0.3355221012171684,0.3415265685980186,0.3473400399343753,0.3535324749345838,0.359565986430476,0.3613371779670152,0.3629943697259199,0.3640580936266215,0.3650857894508608,0.3670081662954714,0.3671738664543979,0.3669437188316314,0.3679076412723958,0.369040894229617,0.3701457830247742,0.3710022522522522,0.3719938090324629,0.3733546406493124,0.3746106442577031,0.3761061946902654,0.3777696488294314,0.3793496212768381,0.381801007556675,0.3828681762331051,0.3836008263149531,0.3860211606284065,0.3888593317727176,0.3855019523869505,0.3889909661613842,0.393266951161688,0.3957605684692279,0.3950693374422188,0.3951299365664006,0.3949860724233983,0.3928571428571428,0.0,1.9088648024665589,58.29553509853724,229.2246794475909,349.8877584132284,fqhc2_80Compliance_baseline,53 -100000,95872,40856,382.3639853137517,7584,77.87466622162884,5957,61.48823431241656,2398,24.60572429906542,77.3584022892406,79.64232529995186,63.35300198276878,65.04221246901062,77.06348324591356,79.34585741587284,63.24575483465814,64.93704671641318,0.2949190433270416,296.46788407902136,0.1072471481106376,105.16575259744344,65.82598,46.13875235426386,68660.27620160213,48125.36752572582,197.72159,116.31535650964054,205598.8818424566,120696.9184429888,243.55487,114.99364351791108,250497.2254672897,117173.48858844944,4334.00353,1926.5261409066195,4477124.488901869,1966683.839762592,1491.71299,643.1191363411473,1536725.623748331,651604.8623004,2376.83226,986.8195518064916,2440762.328938585,996981.6830688756,0.38253,100000,0,299209,3120.92164552737,0,0.0,0,0.0,16268,169.01702269692925,0,0.0,22909,235.25116822429908,2182643,0,78354,0,0,2580,0,0,47,0.4902369826435247,0,0.0,1,0.0104305740987983,0,0.0,0.07584,0.1982589600815622,0.3161919831223628,0.02398,0.3185463659147869,0.681453634085213,25.39518890525368,4.642072186379466,0.3315427228470706,0.1974148061104582,0.2262884002014436,0.2447540708410273,11.026227724568589,5.407588987046201,25.62786052795277,13338.419661663434,67.17139116524245,13.848830452426,22.394298617150017,14.87474941472324,16.0535126809432,0.5496055061272452,0.7678571428571429,0.6992405063291139,0.6045994065281899,0.1200274348422496,0.7095406360424028,0.916010498687664,0.8851063829787233,0.7252747252747253,0.140893470790378,0.4997798326728313,0.6968553459119496,0.6411960132890365,0.573953488372093,0.1148243359040274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020350514837651,0.0044178293866715,0.0065117505654674,0.0090263887337672,0.0112116283797519,0.0133524664407331,0.0156078079791352,0.0178999439033097,0.0200320594631571,0.0222656130199654,0.0244044755187486,0.0266039244633081,0.0288082326842494,0.0310243380583043,0.0331722297220705,0.0351246708997986,0.0370427838464084,0.0391754500513011,0.0411444000207695,0.0429571676775663,0.0579306750065155,0.0722964572646447,0.0855464332090646,0.0977487031942373,0.1099758792487808,0.1256417298713371,0.1404287788387151,0.1540089323692046,0.1670918503495757,0.1789998392024441,0.1938189845474613,0.2064687111255341,0.219462080361802,0.2313368387682149,0.2423889261486702,0.2543822761276614,0.2649082696704399,0.2749842583430781,0.2850821959769919,0.2941783058537759,0.3023936847466259,0.309376682349086,0.31707403765269,0.3241858455926468,0.3309775204359673,0.3380526822524502,0.3440028095172396,0.3499011542631209,0.3556944101638109,0.3609548144519613,0.3627709135102289,0.3634845494569192,0.3654321685436125,0.3665206925553203,0.3679875865361661,0.3678120239432502,0.3685742923965443,0.3698252677083505,0.3711419885612215,0.3718236106378781,0.3725877812294079,0.3734968495955159,0.3734426713325041,0.3747160560466005,0.3767796610169491,0.3772878426854494,0.3768988248781886,0.3792253743602704,0.3812665373081672,0.3836038052602126,0.3838411691713773,0.3852239923019352,0.3865556896880361,0.3911828624650729,0.3937734217353704,0.4012135922330097,0.3996215108027125,0.3976849937990905,0.3981610476455837,0.3997691419776837,0.0,2.48741919919375,62.31632944394546,229.20311194228807,347.39971855588936,fqhc2_80Compliance_baseline,54 -100000,95724,40733,381.973172872007,7483,76.83548535372529,5833,60.25657097488613,2335,23.891605031131167,77.38965647392791,79.75649037764099,63.34469261111818,65.09394114686484,77.10237169074274,79.47067343062272,63.23843730857003,64.99136455657667,0.2872847831851715,285.81694701826166,0.1062553025481563,102.5765902881659,66.81026,46.8067443630658,69794.6805398855,48897.6059954304,197.75743,117.20520922054008,205927.83418996283,121777.3382020602,244.2068,115.81414420334777,251210.8666583093,117969.53102466614,4193.31197,1879.4678144871436,4335004.972629644,1917801.1830754525,1409.23733,610.5009828793721,1453929.495215411,619513.521038999,2291.51252,953.6078712416512,2347326.8354853536,956956.0134539842,0.38111,100000,0,303683,3172.485479085705,0,0.0,0,0.0,16335,169.93648405833437,0,0.0,23027,236.57598930257825,2177542,0,78151,0,0,2636,0,0,35,0.3656345326146002,0,0.0,2,0.0208934018636914,0,0.0,0.07483,0.1963475112172338,0.3120406254176132,0.02335,0.3228316326530612,0.6771683673469387,25.43697860172651,4.564629606557705,0.3260757757586148,0.2082976170066861,0.2391565232298988,0.2264700840048003,11.14961053597149,5.610362680771647,24.67768282439704,13211.996812857808,65.62496742380893,14.378268136270297,21.356081052370207,15.436602230533452,14.454016004634989,0.5530601748671352,0.7637860082304527,0.7029442691903259,0.5756272401433692,0.1196063588190764,0.722488038277512,0.8900255754475703,0.8972746331236897,0.7476038338658147,0.1666666666666666,0.4963386727688787,0.7038834951456311,0.6378947368421053,0.5258780036968577,0.1068334937439846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080868649218,0.0043997039830499,0.0065456316788276,0.0087876140358006,0.0110673705839868,0.0133599446051077,0.0155177863194706,0.017660089219179,0.0195845939978739,0.021700633617557,0.0236067119735129,0.0259634930086442,0.0282603779015975,0.0304281565994604,0.0324799900981929,0.0346114096734187,0.0367290726090378,0.0388956902454713,0.0408568399609204,0.0428127865299658,0.0568275545254278,0.0704304958080823,0.0837740283723663,0.0963017518017781,0.1085791450394564,0.1243507970255661,0.1376730861053637,0.1506040125592039,0.1632382783295952,0.1751305784060318,0.1890008830307337,0.2025835488093821,0.2158144289536072,0.2285733035831474,0.2394589418769742,0.2512101374627543,0.2621257418232118,0.2713967761516153,0.2807240393775801,0.2895631373536447,0.297627448031742,0.3063016710127811,0.3140255439924314,0.3214076105834301,0.3289935510511422,0.3359091917473933,0.3425792642475372,0.3482428115015974,0.3543369296325558,0.3600781487201827,0.3613984055160525,0.3630568863924225,0.364337043821333,0.3653529190642801,0.3665750983740441,0.3672928819683677,0.3674551063998101,0.3683684176011542,0.3697300059620134,0.3711400790682765,0.3719926778242677,0.3725749472063786,0.3732033391217021,0.3740923613128086,0.3762135922330097,0.3766535340621494,0.3778759800427655,0.3779530042580035,0.3796914168696819,0.3819586184816104,0.3829249229920463,0.384880279795534,0.3848061029879212,0.382834513746097,0.3840179657527837,0.3824053187700344,0.3836266258607498,0.3839935327405012,0.3822075782537067,0.3862760215882806,0.0,2.606056278729201,64.42746767999347,216.72048802552288,332.8919067859739,fqhc2_80Compliance_baseline,55 -100000,95759,40775,381.5829321525914,7597,78.13364801219728,5890,60.89244875155338,2390,24.5721028832799,77.34687979821054,79.70543897150051,63.33382307926016,65.08106974320202,77.05292736452282,79.41014312647646,63.22809580384712,64.97724353569623,0.2939524336877213,295.29584502405726,0.105727275413038,103.82620750579008,65.14046,45.65129918145913,68025.41797637819,47673.116032392914,195.30193,114.96887320961535,203296.1288234004,119408.11953796478,238.40142,112.45631063682364,244795.02709928047,114307.35335825414,4265.59759,1894.486967103148,4410391.754299857,1934545.8617948429,1432.44713,613.1961517969313,1478921.01003561,623502.5382787975,2356.76922,968.147746649088,2424250.9215843943,981075.0852412208,0.38214,100000,0,296093,3092.064453471736,0,0.0,0,0.0,16084,167.2845372236552,0,0.0,22423,230.03581908750093,2190387,0,78590,0,0,2507,0,0,40,0.417715306133105,0,0.0,1,0.0104428826533276,0,0.0,0.07597,0.1988014863662532,0.3145978675793076,0.0239,0.31267921705523,0.68732078294477,25.556726639735874,4.665343046998218,0.3297113752122241,0.1876061120543293,0.2505942275042445,0.232088285229202,11.029820593922691,5.427366009301494,25.43079544404024,13347.891312138325,66.21022939563971,12.87366104616082,21.79872070618683,16.47967259420237,15.058175049089686,0.5455008488964347,0.7728506787330317,0.6956745623069001,0.5711382113821138,0.1207022677395757,0.710999281092739,0.9483282674772036,0.8553459119496856,0.7358490566037735,0.1310861423220973,0.4943320737941765,0.6984536082474226,0.6436860068259386,0.5259067357512953,0.1181818181818181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0046546059303127,0.0071065989847715,0.0094311818449749,0.011475543257101,0.0136453432720311,0.0155979202772963,0.0177725602286647,0.0199648340864018,0.0225048122209935,0.0248418548858381,0.0269526557350117,0.0289795456648944,0.0310687612670615,0.033242169358584,0.0352188385122702,0.03730972351662,0.0390979159534849,0.0413089124966216,0.0432351379213395,0.0578129403291966,0.0717080212561195,0.0847514495716817,0.0975678970823173,0.1101063437358375,0.125437233828953,0.1396741607572529,0.1527861950177028,0.1656568027138315,0.1773488710852148,0.1919713446706896,0.205805120003458,0.2185829748403076,0.230232481955076,0.2414618874474091,0.2533356935808643,0.264381912236889,0.2744461055968346,0.2838630612638578,0.2924334909927965,0.3019854676725135,0.3101656837966863,0.3172773009766203,0.3245126016162682,0.3315643747115828,0.3384545309056887,0.3448496000600848,0.3510982158764094,0.357406519965289,0.3622714199013114,0.3641774964648845,0.3651311712456104,0.3665304396843292,0.3675917895345476,0.3686526995078286,0.3691831037761894,0.3692427295371971,0.3702727632099091,0.3716528953954812,0.372984593335722,0.3749294502765549,0.3756033609439246,0.3759843348633511,0.3771215054247512,0.3786167789463481,0.3796181698485846,0.380753619850888,0.3831591024987251,0.384667306120999,0.3870824949698189,0.3899731754694293,0.3908664979266519,0.3913544668587896,0.3940095723328701,0.3949165402124431,0.3956610332014862,0.3988484282601929,0.3947149396587598,0.3903697334479794,0.3919577579203899,0.0,2.2665328470188872,61.50366696216833,224.39517743559068,345.1174184271513,fqhc2_80Compliance_baseline,56 -100000,95757,40896,382.2905897219002,7426,76.50615620790124,5768,59.70320707624508,2347,24.09223346596071,77.36211040614715,79.72338302220244,63.32787542470121,65.0753225472583,77.0875054993896,79.44943944272528,63.22853488471743,64.97907294543108,0.2746049067575598,273.9435794771623,0.0993405399837854,96.24960182721054,65.14728,45.64761015344076,68033.7312154725,47670.05585912524,195.45481,115.28459434805816,203564.97175141243,119844.18313191766,240.35024,112.95107608522744,248137.2223440584,115761.86641543527,4223.37776,1866.6281800742036,4370997.54587132,1909961.705659674,1418.10605,609.6098644436207,1465872.5315120567,621672.0640244092,2319.03416,945.3880090191678,2381808.306442349,953293.2827970876,0.38194,100000,0,296124,3092.4423279760226,0,0.0,0,0.0,16090,167.45512077446034,0,0.0,22561,232.7140574579404,2187698,0,78488,0,0,2616,0,0,41,0.4281671313846507,0,0.0,1,0.0104431007654792,0,0.0,0.07426,0.1944284442582604,0.3160517102073795,0.02347,0.3022512151445382,0.6977487848554618,25.79680709656386,4.624343607688185,0.3347780859916782,0.1879334257975034,0.2314493758668516,0.2458391123439667,11.296507133504315,5.658125055988233,24.57480348836977,13287.690171657265,64.61780962417357,12.587841126581752,21.668706657968976,14.89306264329218,15.468199196330657,0.5426490984743412,0.7739852398523985,0.6866908337648887,0.59625468164794,0.119181946403385,0.7020802377414561,0.9281437125748504,0.8590909090909091,0.7333333333333333,0.1360294117647058,0.4941203075531434,0.7053333333333334,0.635814889336016,0.5565217391304348,0.1151832460732984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896973749531,0.004603808789827,0.0070246675464419,0.0090126705752055,0.0113015614668633,0.0137491343137654,0.015979034527767,0.0180307114269378,0.0201122687907076,0.02209797657082,0.0244482730330625,0.0266655710088953,0.0288059916462624,0.0310278023948393,0.033232877843372,0.0355540392448772,0.037774142108642,0.039892099393059,0.041879755519521,0.0439247955835633,0.0589985281683524,0.0722401238701037,0.0857960861631394,0.0985580715390035,0.1105743367965824,0.1256081567034733,0.1395654756853093,0.1519855211327584,0.1635147552193516,0.1754002208854719,0.1900315552540036,0.2032939088656357,0.2153292214643909,0.2276585504583141,0.2385024266235267,0.2501467997651204,0.2614001786511836,0.2724582897386569,0.2822848715185206,0.2918422499083913,0.3003171222888359,0.3085147449319779,0.316598021114425,0.3243107108163534,0.3306567214946913,0.3377102135424372,0.343966035467388,0.3504233242090521,0.3557113060151057,0.3618549622352506,0.3628897399935268,0.364560799173269,0.3663254659786256,0.3671494089902921,0.3688569686696109,0.3689576402410044,0.3688583070410476,0.3702377236360052,0.3707861328959284,0.3720681160972475,0.3726742987764891,0.3734797030484915,0.3740885089263264,0.3752855287320285,0.3765085635824922,0.3769857859531773,0.3771942343370915,0.3784737538597265,0.3773909985935302,0.3785771065182829,0.3793480738545703,0.3800859370855657,0.3829385080645161,0.3837579617834395,0.3857811038353601,0.3904174573055028,0.3881006864988558,0.3913218159903576,0.3931787175989086,0.3982952344052692,0.0,1.9761047259031368,59.84074340473076,218.6928929228876,339.19678005520007,fqhc2_80Compliance_baseline,57 -100000,95763,40444,378.611781168092,7451,76.66844188256424,5799,60.0022973382204,2312,23.84010525986028,77.32840490063373,79.68843230119286,63.31625382636724,65.06450691447708,77.05057303539442,79.40841766925179,63.215726058028544,64.96543121753594,0.2778318652393068,280.01463194107146,0.1005277683386935,99.07569694114216,65.4027,45.83436632229719,68296.41928511013,47862.291618158575,196.13908,115.72586305695796,204268.29777680317,120297.22654569922,237.74926,112.49918553942872,244334.75350605135,114540.92359503466,4170.50748,1850.5002124262448,4318311.216231738,1895656.0492322152,1388.283,602.0435818623135,1433207.0945981224,612186.11968428,2273.33382,934.5527253257164,2344828.4619320617,950972.8515884406,0.37971,100000,0,297285,3104.3826947777325,0,0.0,0,0.0,16224,168.83347430636047,0,0.0,22386,229.81736161147836,2184137,0,78435,0,0,2629,0,0,40,0.4176978582542318,0,0.0,0,0.0,0,0.0,0.07451,0.1962287008506491,0.3102939202791571,0.02312,0.3139327559857361,0.6860672440142639,25.58531061880517,4.49756909745112,0.3309191239868942,0.2048629073978272,0.2310743231591653,0.2331436454561131,11.181919883113617,5.678514558043335,24.48247525973458,13226.17095948354,64.97284982009792,13.71154427036744,21.642364474513013,14.831128512307476,14.78781256290998,0.5426797723745473,0.7533670033670034,0.6852527357998958,0.5865671641791045,0.1116863905325443,0.6865342163355408,0.9015384615384616,0.8280254777070064,0.7301038062283737,0.1423357664233576,0.4986486486486486,0.697566628041715,0.6388121546961326,0.5470980019029495,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293606801576,0.0045234183249153,0.006893960930837,0.0089635968210735,0.0112612154381396,0.0139341590612777,0.0161629140153369,0.0184281455466165,0.0207323805434582,0.0229082645812434,0.0249500281892265,0.0270858574450171,0.0291855203619909,0.0311882003955174,0.0331967762906704,0.0351232621840922,0.0371091121761363,0.039211009364597,0.0411193781694238,0.0428465792515908,0.0575120556123833,0.0718738233694515,0.0851298074906681,0.098142678453178,0.1096020314623789,0.1259710200069755,0.1400941595622852,0.1533844827769678,0.1654171472510572,0.1767184534722892,0.1901864277175259,0.2027350131449405,0.2152594188235038,0.226483389103952,0.2377524627153156,0.2499944620428416,0.2617633928571428,0.2720508779828905,0.2818311874105865,0.2907751022887465,0.2995046066947543,0.3079641047840788,0.3153306803107826,0.3227099763525274,0.3293891598059126,0.3360468701819303,0.3421894404094381,0.3481697754771588,0.3536260854891678,0.3588774174785517,0.3601117378748212,0.3613891416439187,0.3627017638004321,0.3638389304472386,0.3653247546281816,0.3655089783567072,0.3652477763659466,0.3657660033960335,0.3669724770642202,0.367798372351486,0.3691521154822096,0.369901045075059,0.3708814831903693,0.3725551767450206,0.3727127890696664,0.371101109482939,0.3724367052354221,0.3758954776406728,0.3779037026608475,0.3788990825688073,0.3791223891535361,0.3776689207177466,0.3798386079939478,0.379265592793343,0.3833301868982443,0.3839115969581749,0.3838928241453649,0.3800494641384996,0.3756983240223464,0.3693159351522341,0.0,2.145058783537644,60.09357196245294,221.1016978826217,338.94090423199407,fqhc2_80Compliance_baseline,58 -100000,95735,40746,382.03373896694,7608,78.41437300882644,5927,61.37776152922129,2412,24.870736930067373,77.31464774318667,79.68094775979537,63.30648041847581,65.05654787271601,77.0216669656354,79.38511485006097,63.2003499952714,64.95168059663679,0.2929807775512643,295.8329097344006,0.1061304232044051,104.86727607921864,66.1771,46.34049011599608,69125.2937797044,48404.961733949,195.37728,114.6419906750194,203530.5896485089,119199.0979529342,238.75887,113.22987520132062,246011.29158614928,115692.26966589475,4275.61104,1902.27366610484,4430096.558207552,1951123.0560483283,1456.90863,628.5385299365233,1506464.626312216,641289.6974254182,2375.17172,974.4250363710582,2450079.615605578,990536.4793441052,0.38164,100000,0,300805,3142.0588081683813,0,0.0,0,0.0,16127,167.89053115370555,0,0.0,22533,232.02590484148956,2180553,0,78229,0,0,2633,0,0,38,0.3969290228234188,0,0.0,0,0.0,0,0.0,0.07608,0.1993501729378471,0.3170347003154574,0.02412,0.3214018458468446,0.6785981541531554,25.4690981095641,4.551482896446855,0.3414881052809178,0.1941960519655812,0.2304707271806985,0.2338451155728024,11.021200557014303,5.503126953283115,25.581815394689013,13314.348600460104,66.72795095799123,13.434014835928554,22.7595022160298,15.338334240409004,15.196099665623874,0.5431078117091277,0.7567332754126846,0.6847826086956522,0.5805270863836017,0.1219336219336219,0.7087378640776699,0.9178470254957508,0.8706365503080082,0.7389937106918238,0.1373239436619718,0.4898550724637681,0.6854636591478697,0.6258945998698764,0.5324427480916031,0.1179673321234119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0048564852835315,0.0071154509835766,0.0093283202926531,0.0115773945775471,0.0136007987285545,0.0156701115067179,0.0179902391211124,0.0200355733649541,0.022163302076082,0.0244019972727179,0.0268091835058321,0.0288218231191754,0.0310967316490129,0.0332060280759702,0.0350039283794401,0.0369476747196305,0.0389644080107917,0.0408846557765693,0.0427974621563336,0.0576645993860803,0.0718038895518013,0.0850722311396468,0.097688457008245,0.1104784199592968,0.1260128202415959,0.140170649912977,0.1528142998584067,0.1649921976870952,0.1771673819742489,0.1911323887774687,0.2045264948375424,0.2172416422479058,0.2287824495655127,0.2400961443046627,0.2514184830281697,0.2623854852962561,0.2732389600135356,0.283033033033033,0.2923285436982415,0.301870600378063,0.3100121899760888,0.3177878173431515,0.3254613343578538,0.3325062034739454,0.3390274006418168,0.3448202430164098,0.3502362846625141,0.3558109701579568,0.3614723472796166,0.3632503403744793,0.3639080966417807,0.3652146953960626,0.3668768256355381,0.3683873561335855,0.3688055372243282,0.3688807024786827,0.3695548266939166,0.3708526333848001,0.3709717890812632,0.372367455253797,0.3737814925847247,0.3745507282930828,0.3748680990548034,0.3767527318441157,0.3760941349127312,0.3776398586328764,0.379014378919364,0.3824930317891543,0.3827056848165027,0.3858238779916395,0.3878316805146073,0.3894279877425944,0.3918657697363334,0.3927376970855232,0.3927927927927928,0.3925523661753297,0.3976279650436954,0.4006743467266086,0.4042553191489361,0.0,2.057938946136622,64.02757386689377,224.20162295119363,342.5272757204279,fqhc2_80Compliance_baseline,59 -100000,95827,40784,382.2096068957601,7407,76.26243125632651,5761,59.67003036722427,2289,23.56329635697664,77.3504688262772,79.68239232012357,63.33176974345843,65.05977423353254,77.06948511937263,79.39990332322452,63.22880022215742,64.95882736081073,0.2809837069045642,282.4889968990476,0.1029695213010128,100.94687272180636,65.4269,45.84023443275476,68276.05998309454,47836.44946910031,195.12181,115.44092940952504,203170.66171329585,120020.53097048092,238.44791,112.7366556213088,246174.1262900853,115593.07977581368,4179.13677,1863.6639278176576,4325242.144698258,1908997.3862078087,1425.83723,610.7165179335277,1474145.606144406,623574.0300039939,2267.32962,944.5464959105924,2334641.0719317105,958939.9711502922,0.3809,100000,0,297395,3103.4572719588427,0,0.0,0,0.0,16137,167.91718409216608,0,0.0,22382,230.9161301094681,2185174,0,78495,0,0,2617,0,0,41,0.4278543625491772,0,0.0,0,0.0,0,0.0,0.07407,0.1944604883171436,0.3090319967598218,0.02289,0.3105175292153589,0.6894824707846411,25.45286415358508,4.580754829446371,0.3278944627668807,0.2003124457559451,0.2322513452525603,0.2395417462246137,11.032678564647828,5.386737503674158,24.32828222123976,13211.133495606142,64.73013208811825,13.47220391974554,21.298484256498803,14.871161888598897,15.088282023275024,0.5440027772956084,0.7582322357019065,0.6971942826892535,0.5814648729446936,0.1188405797101449,0.6856936416184971,0.8810198300283286,0.8671023965141612,0.698961937716263,0.1342756183745583,0.4992003655471784,0.704119850187266,0.6426573426573426,0.5490943755958055,0.1148587055606198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0047149245105097,0.0069521973003146,0.0089918006969915,0.0110970970563704,0.0133425678841335,0.0157054714191015,0.0180030226288701,0.0201425314151917,0.0221733121768951,0.0241896617138872,0.0263906431307312,0.0284556607945371,0.0304849789385871,0.0326533138059778,0.034707942838839,0.0365734989648033,0.0386270991297493,0.0404581025326585,0.0426209711001915,0.0564272152558993,0.0699894398962809,0.0831246135627678,0.0957689357722979,0.1078871399372063,0.1230554616165032,0.1376312162018874,0.1502914769584273,0.1632430816535702,0.1747749678525503,0.1890219625313404,0.2025878842910883,0.2147900328039799,0.2259538147124075,0.2371732817037754,0.2488698812267328,0.2602629640377704,0.2704354383082169,0.2801576305448929,0.2895804211828868,0.2978445082422671,0.3061262694809753,0.3142312609498556,0.3223915310930213,0.330021887159533,0.3370486946861692,0.3434338368958816,0.3494071146245059,0.3549366300413818,0.360769535898453,0.3626961194674732,0.3637116361227644,0.3650872113551303,0.3653458891705903,0.3671824965371382,0.3664573385127976,0.3667206709234727,0.3673647613241279,0.3687719598937355,0.3708960573476702,0.3731287214260222,0.3743708635516982,0.3759060444986029,0.3771349058509325,0.3777879805717323,0.3785044280249436,0.37976493465641,0.3815074551427849,0.3823249920810896,0.3840015958507879,0.382230744646852,0.3815831471433131,0.3831987891019172,0.3841352009744214,0.3860956513536459,0.3840871418422922,0.3845446182152714,0.3828710265235878,0.387565050671049,0.4004620716211012,0.0,1.6600668146705582,61.83941280961591,219.56224036139213,332.1697174261068,fqhc2_80Compliance_baseline,60 -100000,95706,40714,382.1599481746181,7588,77.90525149938352,5861,60.52912043132092,2382,24.428980419200467,77.30949638025908,79.6683193497944,63.31695901961641,65.05880218673425,77.0124097089818,79.37358265469922,63.2084829753683,64.95464721641298,0.2970866712772704,294.73669509518174,0.108476044248114,104.1549703212752,65.87526,46.15162965127544,68830.85699956115,48222.29499851152,196.34073,115.57693621459173,204451.6644724469,120066.49635165468,240.4603,113.52304163061264,246772.49075293084,115202.4400979214,4271.19788,1892.4989217666405,4412644.442354711,1927558.3996945336,1432.44977,615.0315440491793,1475986.4376319144,621989.6224290964,2351.72034,973.4525175343174,2413291.81033582,979308.5513742045,0.38131,100000,0,299433,3128.6753181618706,0,0.0,0,0.0,16202,168.55787515934216,0,0.0,22583,231.46929137149183,2181401,0,78307,0,0,2617,0,0,39,0.4074979625101874,0,0.0,0,0.0,0,0.0,0.07588,0.1989981904487162,0.3139167105956774,0.02382,0.3143821067099837,0.6856178932900162,25.668136937545707,4.671749190010036,0.3456747995222658,0.188363760450435,0.2257293977137007,0.2402320423135983,11.193502538179128,5.497760446090291,25.375476140886047,13245.05220447501,65.82086624955396,12.846213581181871,22.90012304028258,14.600587246767171,15.473942381322324,0.536256611499744,0.7708333333333334,0.6831194471865746,0.5616024187452758,0.1171875,0.6918103448275862,0.918918918918919,0.841995841995842,0.735191637630662,0.140893470790378,0.4878048780487805,0.7068741893644618,0.6336569579288026,0.5135135135135135,0.1110116383169203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166486059488,0.0043285216121969,0.0064828341855368,0.008612984480377,0.0107761907182432,0.0131505287693262,0.0152881822351322,0.0174038196535568,0.0194595478516822,0.0215635905885724,0.0237499743742184,0.0257207984228684,0.0279185990313325,0.0299893924882339,0.0322291206864544,0.0343235005424394,0.0363282584170815,0.0381045229674649,0.0402548538643828,0.0422209490077608,0.0565616057814817,0.0711152980583032,0.0843036062684876,0.0969061540402978,0.1086211442130239,0.1246853516657853,0.1383444924291459,0.1511561062851303,0.1636132505795259,0.1755219335399264,0.1893772893772893,0.2025205443856173,0.2151843628923425,0.2269612993608265,0.2386306076155658,0.2506734958592477,0.2621124951125509,0.2715893599522302,0.2811125881992024,0.2900855249581547,0.2986915238536359,0.3071953560226581,0.3151579047122652,0.3226112318014331,0.329583596828331,0.3368557496450836,0.3429412501565827,0.3491244169151946,0.3551777835452894,0.3606262324153355,0.362390276839973,0.3637316995763823,0.3651668716339425,0.3667840630752061,0.3680120517868862,0.3684202430395323,0.369317005589439,0.3712790371312057,0.3722445751229409,0.3737028577594734,0.3754766129336706,0.3760296786804156,0.3764263375876933,0.3772792922910272,0.3781857976653696,0.3790271636133923,0.3803004043905257,0.3839577970572345,0.384541679974449,0.3863445462181513,0.3872776577653169,0.3884022142204547,0.3900261462916906,0.3897257628427964,0.3925233644859813,0.3969987995198079,0.4018633540372671,0.3996255460786353,0.3955890563930765,0.4006247559547052,0.0,2.7301659688134623,61.16450179249176,217.0098016681881,349.2549412305411,fqhc2_80Compliance_baseline,61 -100000,95727,40634,380.1121940518349,7616,78.1388740898597,5903,60.99637510838112,2482,25.520490561701504,77.40440741590693,79.76218210987008,63.3594678928421,65.09955378389294,77.09803425726551,79.45451964573002,63.24635830552143,64.9886023741882,0.3063731586414207,307.6624641400656,0.1131095873206646,110.95140970473948,65.6436,45.93906484927116,68573.75662038923,47989.66315592379,198.3018,116.93184880521768,206512.76024528084,121510.66972245832,239.08633,113.18259850890487,245415.9328089254,114884.38269319187,4297.41436,1930.075677961068,4444025.802542647,1971015.3853782823,1433.27547,622.8615080900336,1479064.2243045326,632475.5273747569,2453.71538,1029.4225738340058,2525143.167549385,1043205.2461513324,0.38047,100000,0,298380,3116.9889372904195,0,0.0,0,0.0,16349,170.10874674856623,0,0.0,22490,230.5828031798761,2185989,0,78410,0,0,2585,0,0,44,0.4596404358227041,0,0.0,0,0.0,0,0.0,0.07616,0.2001734696559518,0.3258928571428571,0.02482,0.319537658463833,0.680462341536167,25.500598799253805,4.698974036454733,0.3208538031509402,0.194307978993732,0.2410638658309334,0.2437743520243943,10.822876939875998,5.240652496830148,26.480958676179736,13249.481501869805,66.42505916072291,13.30401282595675,21.32007819306469,15.90770387761116,15.89326426409032,0.5297306454345249,0.7637314734088928,0.6906019007391764,0.5572733661278988,0.1042390548992355,0.672108843537415,0.9192200557103064,0.8488120950323974,0.6666666666666666,0.1365079365079365,0.4825174825174825,0.6928934010152284,0.639412997903564,0.5238532110091743,0.0951957295373665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185881924124,0.0049759310869014,0.0072838679570677,0.009444980449906,0.0119162608156334,0.0141693811074918,0.0163464968152866,0.0185198412293501,0.0207109358236862,0.0228193688346772,0.0250589320487854,0.0272500538842873,0.0294646804223339,0.0315802484395278,0.0334623123355517,0.03565336944499,0.0377884097593306,0.039947718384664,0.04168398736282,0.0435276226981084,0.0578936927719019,0.0723345472811754,0.0858578441656526,0.0990400891571078,0.1112446370028356,0.1265294036779713,0.1405184029877667,0.1533793279672927,0.1659152100517116,0.1774124359221843,0.1911403584352921,0.2042311438156043,0.2163011791324022,0.2280983782246864,0.239263196117915,0.2508776787197519,0.2610316273463831,0.271224186799838,0.2809004061812158,0.2903964636632234,0.2977741804937272,0.3058966480120573,0.3134453582907922,0.3211590667192863,0.3283459029512331,0.3353841610473987,0.3417303531001013,0.3475773333502854,0.353152780114129,0.3587066840655357,0.3594016921566254,0.3606710671067106,0.3625572062240372,0.3644269802516577,0.3652089984408642,0.3646678712522586,0.3652252452106672,0.366550614202194,0.3674491767401303,0.3697183098591549,0.3708665263790771,0.3713627425665878,0.3713083718973496,0.3727250286124638,0.3724760892667375,0.3737087724817786,0.3769714285714285,0.3794975381896225,0.3812310512585489,0.3838815264250359,0.3857247504807252,0.3868913857677902,0.3901001394346558,0.3893649579188982,0.3898896538715458,0.3911184991688435,0.3943051686784277,0.4006541291905151,0.4010740531373657,0.3959919839679359,0.0,2.6378326289157976,64.60008347743944,219.2038707257068,339.9098570058944,fqhc2_80Compliance_baseline,62 -100000,95749,40609,380.4843914818954,7501,77.17051875215407,5830,60.32438981085965,2394,24.55378124053515,77.33232137485312,79.69762847236765,63.31916690730778,65.07091776189053,77.03173008835283,79.39693244382222,63.209631279843386,64.96393469588207,0.3005912865002926,300.6960285454312,0.1095356274643961,106.98306600845342,65.93422,46.1603987963212,68861.5233579463,48209.79727863602,195.45301,115.99575627910318,203480.9763026246,120504.0469750158,240.59281,114.16801109864734,248298.44698116952,116852.73487469555,4229.97648,1903.5769210838544,4377988.260974005,1948950.5690727888,1422.9109,620.987409917334,1468369.2362322323,630861.2913230988,2357.1951,986.2662200405662,2419773.324003384,996179.931109724,0.38012,100000,0,299701,3130.0692435430137,0,0.0,0,0.0,16178,168.3359617332818,0,0.0,22652,233.52724310436665,2182062,0,78311,0,0,2630,0,0,35,0.3550950923769439,0,0.0,0,0.0,0,0.0,0.07501,0.1973324213406292,0.3191574456739101,0.02394,0.3193737270875764,0.6806262729124236,25.43378016712212,4.592135511949596,0.330188679245283,0.1941680960548885,0.2444253859348199,0.2312178387650085,11.080215823067736,5.525663462965828,25.708032426108936,13282.243823089992,65.9812681654743,13.261572822423826,21.727066517582912,15.959717198832616,15.032911626634943,0.5461406518010291,0.7703180212014135,0.6992207792207792,0.5691228070175438,0.1149851632047477,0.7065826330532213,0.9337175792507204,0.8592436974789915,0.7051671732522796,0.1594202898550724,0.4940935938209904,0.6980891719745222,0.6466528640441684,0.5282846715328468,0.1035447761194029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022092504763062,0.0046252624532148,0.0069856226139225,0.0092385559801609,0.0113738097175876,0.0136204806389502,0.015797095537244,0.0179991628296358,0.0202341393589284,0.0223177723177723,0.0244292494899894,0.0266002771931625,0.0284938662608355,0.0305789294799831,0.0326544509099913,0.0350276996857946,0.0369864148442677,0.0388114826380603,0.0407889677533332,0.0427320162054636,0.0580203353028373,0.0723403364861471,0.0852884726315458,0.0982524026834346,0.1103976212317717,0.1260061559290481,0.1403060141759687,0.1530388504523682,0.1658656926823016,0.1773195655204212,0.191009057717369,0.2042633771573878,0.2165631424935002,0.2282536175611677,0.2397662749240723,0.2511212252084648,0.2619092785805947,0.2717512407576218,0.2814656738103887,0.2905554028045092,0.2990715873309872,0.3075140720630054,0.3149676212575028,0.3219582968620726,0.3285207330708278,0.3355982784772662,0.3423376037870534,0.3485207251247581,0.3547500518564613,0.3602958658037247,0.3619502069095663,0.3626815888855197,0.364169923390567,0.3657400037626083,0.3670940743719191,0.3679401738275851,0.3683197607838147,0.3698907725003706,0.3708881578947368,0.3719261743762667,0.3732345232034093,0.3749751303171382,0.3761285967428909,0.3787004911458568,0.3790535787916272,0.3801455328762445,0.3799552521369973,0.3827658493202897,0.385761823845936,0.388656644424793,0.3923229161872325,0.3944810454692731,0.3941610522938723,0.3974190557143961,0.3979891871383856,0.399261289169546,0.404040404040404,0.4043804502129385,0.4038620689655172,0.4075939558310732,0.0,2.06382725441092,63.27154475246645,225.630699229916,333.1813504546003,fqhc2_80Compliance_baseline,63 -100000,95735,40734,382.8067060113856,7498,77.12957643495065,5808,60.19741996135165,2327,24.01420588081684,77.41699606751023,79.77045902280877,63.36600846061516,65.10074638064482,77.13127968367867,79.48128415817979,63.26049959806772,64.99597101891784,0.2857163838315557,289.1748646289756,0.1055088625474454,104.7753617269791,65.12066,45.66809129970302,68021.78931425289,47702.60751000472,194.5001,114.49404260891257,202681.8718337076,119111.53978055312,240.14961,113.95334299709492,247411.49005066068,116458.60142964392,4187.79496,1871.0106888015816,4344809.74565206,1924812.596021916,1397.03784,611.9322953122858,1447465.3470517574,627383.3031934882,2290.90998,956.774981542878,2366048.425340784,976701.857898274,0.38152,100000,0,296003,3091.8995142842223,0,0.0,0,0.0,16046,167.1071186086593,0,0.0,22645,233.1644644069567,2188499,0,78509,0,0,2729,0,0,37,0.3864835222228025,0,0.0,1,0.0104455006006162,0,0.0,0.07498,0.1965296707905221,0.310349426513737,0.02327,0.3211335620790443,0.6788664379209557,25.322464141323927,4.616883697988432,0.3345385674931129,0.1940426997245179,0.2415633608815427,0.2298553719008264,11.135628050293924,5.604590300144669,24.79210896438808,13182.751485474448,65.05449352964723,13.049372251087114,21.749132668569032,15.597956045728164,14.658032564262928,0.5507920110192838,0.7604259094942325,0.7004632012352033,0.5887384176764077,0.1161048689138576,0.7053883834849545,0.9269662921348316,0.8624454148471615,0.7415384615384616,0.1448275862068965,0.5003425439598082,0.6835278858625162,0.6505050505050505,0.5426716141001855,0.108133971291866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021457924249478,0.0043562390460849,0.0064203992210321,0.0087632896353537,0.0107267772897348,0.0129074288971681,0.0147694377624658,0.0169218207797509,0.0193553661577452,0.0215761097527289,0.0234147641103414,0.0255547117141156,0.0273340323608626,0.029370571758115,0.031567219608814,0.0334607833006096,0.0355530707748374,0.0377634417524062,0.0398054418092248,0.0418264022001833,0.055997577580086,0.0707918305850841,0.0835160454454853,0.0955861474228864,0.1073036966724674,0.1225646775114759,0.1366953791318368,0.1503065525609911,0.1623827532423135,0.1741788115690248,0.1886892006848503,0.2027804825273179,0.2150271175019292,0.2269132457999257,0.2386749436906004,0.2500774507634432,0.260792509613777,0.2711782490924009,0.2806160057155169,0.2893902452983528,0.2983981958017695,0.3066850609114504,0.3151600463696799,0.3224592972409579,0.3291554324856081,0.3364845377343374,0.3431877893156512,0.3487182749188983,0.3533751860720989,0.3595075672608758,0.3605257133623301,0.3620238881549978,0.3633479952630689,0.3649065400263512,0.3662676433803823,0.3661628174633622,0.3666249465295711,0.3676374023245124,0.369261511135401,0.3703333749531777,0.3721008592126691,0.3727866716674233,0.3740179749858588,0.3762829094154395,0.3769258502583824,0.3775095166084372,0.3783729876050719,0.3797977259878133,0.3809356807182437,0.3822666349432945,0.3830241862156756,0.3815747529486771,0.3858361560657383,0.3885155772755039,0.3876594148537134,0.3910995997174476,0.3919268849961919,0.3921608040201005,0.3929939792008757,0.3980325387816875,0.0,1.825055034478065,63.51781899648085,214.73917998857925,335.32603785641743,fqhc2_80Compliance_baseline,64 -100000,95690,40964,383.41519490019857,7674,78.9215173999373,5961,61.65743546870102,2427,24.94513533284565,77.3508434030137,79.74154325010424,63.31502979323547,65.08278626217484,77.05282644224827,79.44418102130257,63.20690672380297,64.97834246591387,0.2980169607654233,297.3622288016742,0.1081230694324943,104.44379626096634,64.72554,45.411162936818826,67640.861114014,47456.53980229786,197.01993,115.74037781916066,205266.8721914516,120326.38501323092,241.29405,114.42119966073632,248039.91012645,116399.14238000718,4318.13194,1910.7542625253427,4472416.689309228,1956607.6418908352,1437.90081,620.683495974376,1487036.4405894033,633016.9543749143,2394.24396,987.1993033525614,2464129.4806144843,997131.8787848484,0.38259,100000,0,294207,3074.584596091546,0,0.0,0,0.0,16218,168.8264186435364,0,0.0,22703,233.13825896122896,2188080,0,78451,0,0,2536,0,0,35,0.365764447695684,0,0.0,0,0.0,0,0.0,0.07674,0.2005802556261272,0.3162627052384675,0.02427,0.3021964461994077,0.6978035538005923,25.56553822292073,4.59578709465934,0.3328300620701224,0.1977856064418721,0.2308337527260526,0.2385505787619526,10.962538936153113,5.3402544784405865,25.75530740558512,13375.293937458027,66.60059059656922,13.517809590391048,22.296701201339623,15.143754387096582,15.642325417741969,0.537158194933736,0.7692960135708228,0.6880040322580645,0.5486918604651163,0.1230661040787623,0.6969914040114613,0.9244712990936556,0.8722109533468559,0.6529209621993127,0.1672597864768683,0.4882803943044907,0.7087264150943396,0.6270959087860496,0.5207373271889401,0.1121822962313759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024615820983214,0.0049385971139122,0.007501852622603,0.0099601593625498,0.0123502004109951,0.0145983170677044,0.0167195421762947,0.01891455767306,0.0211799838414415,0.0234837467483255,0.0254845656855707,0.027577494299624,0.0297772109193392,0.0319187298447336,0.0341909450240977,0.0360369673537742,0.0380220258384012,0.0398580058541446,0.041847837393638,0.0438430988293913,0.0592241325283586,0.0735714510099582,0.0870030757602796,0.0997169880798325,0.1115741277996392,0.1270976616231086,0.1411859620814844,0.1539149697537701,0.1660608911314461,0.178169369292023,0.1920751096786711,0.2052897679907326,0.2177617689947113,0.2287724750763304,0.2404579732481973,0.2520207116009358,0.2642090808614203,0.2748612408948133,0.2845979987960975,0.2935248664389058,0.3017231396345276,0.3105338361715584,0.3180056649166262,0.3253120499279884,0.3323319427382965,0.3392410059076726,0.34491650602108,0.3512746071765095,0.3571169490647183,0.3624699384233198,0.3638178752107925,0.364835437455207,0.3659214331052965,0.3668451519536903,0.3681746574324525,0.3691857346472743,0.369510764450363,0.3715535241602683,0.3721527658845693,0.3732844233694193,0.3745091038914673,0.3762448769477498,0.3777847702957835,0.3764508178355366,0.3767451954377758,0.3762945914844649,0.3765309028766733,0.3792420191854065,0.3810712026428621,0.3825745558375634,0.3834046037667182,0.3830739714346621,0.3843578242466359,0.3862169637369391,0.388313539192399,0.3889490790899241,0.3905572755417956,0.3876063183475091,0.3838105726872247,0.3764614185502728,0.0,2.4613767828373416,61.53455029119714,221.72668435575443,353.3907494680399,fqhc2_80Compliance_baseline,65 -100000,95729,40582,379.1014217217353,7608,78.2417031411589,5933,61.444285430747215,2412,24.87229575154864,77.26691653433518,79.62537557929748,63.2951211478972,65.03843794096058,76.96334404552988,79.32012368607064,63.18289488963889,64.92821977597411,0.3035724888053011,305.25189322683843,0.1122262582583104,110.21816498646332,66.71676,46.66971441292329,69693.36355754265,48751.90842161026,197.84841,116.41765953319889,206139.4457270002,121075.61923053506,238.58598,112.76370511288172,245520.29165665573,115023.5294840257,4281.07594,1913.1629716855996,4438401.18459401,1964842.525969769,1446.04121,628.793883898366,1499472.94968087,645763.7015934209,2386.2276,1000.9748316944904,2463380.981729674,1019342.6870859816,0.38014,100000,0,303258,3167.880161706484,0,0.0,0,0.0,16358,170.32456204493937,0,0.0,22500,231.42412435103265,2174955,0,78168,0,0,2661,0,0,38,0.396953901116694,0,0.0,0,0.0,0,0.0,0.07608,0.200136791708318,0.3170347003154574,0.02412,0.3080479880029992,0.6919520119970007,25.629836663214785,4.633949018907422,0.336760492162481,0.2014158098769593,0.2192819821338277,0.2425417158267318,11.024136745920169,5.348019737069962,25.842428319933404,13296.685689504351,66.95046155189975,13.90625737880169,22.67398381846347,14.45032727613412,15.91989307850046,0.5309287038597674,0.7665271966527196,0.6806806806806807,0.5626441199077633,0.098679638637943,0.675017397355602,0.9473684210526316,0.8266129032258065,0.7183098591549296,0.1015873015873015,0.4848754448398576,0.694021101992966,0.6324900133155792,0.5191740412979351,0.097864768683274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147226836284,0.0044915795557087,0.0068697487518772,0.0093964912993569,0.0116347659825478,0.0139390915662895,0.0162189714052704,0.01849715703188,0.0206802081310121,0.0229794464461185,0.0253195698748372,0.0271652088209929,0.029235736909218,0.0313533222779568,0.0334475074281941,0.0354451576890873,0.037549448045896,0.0397252741552284,0.0419018513321067,0.0439494029633025,0.058872668796859,0.0728505934811279,0.0861667296310288,0.0986005892255892,0.110834449942499,0.1268295780461217,0.1406911928651059,0.153066115614448,0.1657540692575877,0.1770193670288143,0.1905034016539261,0.2030235708480086,0.2151072867879316,0.2270845200017526,0.2382994202067855,0.2505329070077272,0.2620823872851119,0.2725807723948296,0.2823621653561202,0.2919414213465751,0.3000845308537616,0.3086311301638614,0.3162242237497037,0.3234492610955713,0.3300681431005111,0.3360091884748861,0.3426455823293172,0.3485556065941918,0.3543964968359776,0.3601389330787994,0.3620621962281521,0.3635218558812945,0.3650548453842011,0.3661892033238422,0.3673460239667692,0.3679474932980002,0.368155079787658,0.3689320388349514,0.3709008280112237,0.3719784172661871,0.3742425100526703,0.3756675966520526,0.3764207852682824,0.3767383059418457,0.377803726949837,0.3782522736259391,0.3797610803324099,0.3806682196764208,0.3823761382376138,0.3821376281112738,0.3818029584147362,0.3845318860244233,0.3867743175701653,0.3872939719879285,0.3882521489971346,0.3954047876819439,0.3939863608183509,0.3932814420319541,0.3869796032411288,0.3940228077074321,0.0,2.1146858745557786,63.813386551669495,225.39594806058903,344.70987260624537,fqhc2_80Compliance_baseline,66 -100000,95704,40576,379.8587310875199,7544,77.60386190754828,5916,61.251358354927696,2499,25.641561481233808,77.288290147924,79.65662659882967,63.294707477804174,65.04343231317469,76.98016645417772,79.34892663480149,63.18243131907688,64.93402283639685,0.3081236937462819,307.69996402818833,0.1122761587272904,109.40947677784152,65.38796,45.820791808966135,68323.12129064616,47877.61411118254,195.15222,115.15412601981164,203353.53799214243,119764.45709668523,240.25201,113.85400162556708,248384.08008024743,116757.87238425016,4319.84506,1933.588356803506,4472691.319067124,1979319.3563524068,1476.02585,635.2297764122394,1527252.4241411018,648744.753975005,2458.02424,1017.655461701328,2525268.181058263,1027646.5705593688,0.37952,100000,0,297218,3105.5964223020983,0,0.0,0,0.0,16107,167.7045891498788,0,0.0,22584,233.19819443283455,2180568,0,78305,0,0,2650,0,0,46,0.4806486667223941,0,0.0,0,0.0,0,0.0,0.07544,0.1987774030354131,0.3312566277836691,0.02499,0.3155046564309086,0.6844953435690914,25.52738954996753,4.631875845580289,0.3269100743745774,0.1948951994590939,0.2376605814739689,0.2405341446923597,11.365663986426478,5.717047109778239,26.539748992502705,13230.73098949603,66.7760757702891,13.494032506810004,21.85718114233949,15.858429672603252,15.566432448536354,0.5365111561866126,0.7562879444926279,0.6845915201654602,0.5839260312944523,0.1103302881236823,0.6988555078683834,0.9036144578313252,0.851931330472103,0.7552870090634441,0.1115241635687732,0.4862771137671536,0.6967113276492083,0.6314713896457765,0.5311627906976745,0.1100519930675909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018938818501301,0.004115935564319,0.0064131184803344,0.0089904305247973,0.011237897648686,0.0134814528200063,0.0158336901776064,0.0183637013219006,0.0205767206043197,0.0225553906769687,0.0249246725562137,0.0268830448974564,0.0290041331660874,0.0310810393301819,0.0331923671995874,0.0353134494946363,0.0375432275165144,0.0393520200080945,0.0412510531187918,0.0431587943469379,0.0580279277679718,0.0717277048390811,0.0852084295369631,0.0978984920075347,0.1100684034961786,0.1254235134677283,0.1392286782195039,0.1527012773936482,0.1652284562495321,0.1769929559316209,0.1906908526195457,0.2039222059699875,0.2167302036815162,0.2282363504960469,0.239336388472724,0.2506242578268059,0.261341774417252,0.271832066235026,0.2817212377798263,0.2905568450807804,0.299221189224323,0.3076598141368628,0.3160350477275965,0.3230107113232271,0.3292833030698173,0.3358473769458079,0.3422626526612052,0.3475091285141587,0.3538237512026419,0.3592820716603748,0.3605207011100008,0.3613981762917933,0.362154660926946,0.3626547695169447,0.3641338476720194,0.3640452207128115,0.3650634443011574,0.3659088282398005,0.3667119822408838,0.3680431848852901,0.3681076687522446,0.3695076021760357,0.3704353709851352,0.3716254249881791,0.3728772557937007,0.3742858640389958,0.3742753831142742,0.3766064798654523,0.3764005105658772,0.3774736081563842,0.378054978054978,0.3820152029759017,0.3846642929806714,0.3861066235864297,0.3862289530618004,0.3843872345473959,0.3901434238632896,0.3985053524540496,0.4055963053518066,0.3973584905660377,0.0,2.153800494567414,61.84692326621509,230.7849540744402,343.2090020908535,fqhc2_80Compliance_baseline,67 -100000,95814,40700,380.9255432400276,7569,77.70263218318827,5913,60.97230049888326,2333,23.95265827540861,77.36488025655099,79.6815648286863,63.35773544642036,65.0718520965111,77.08281157052565,79.39948799159937,63.25402832185839,64.97108857672929,0.2820686860253403,282.0768370869331,0.1037071245619714,100.76351978180752,65.967,46.22654815619485,68849.0199762039,48246.131208586274,196.83798,115.93508497648055,204682.21762999144,120245.54322643744,242.7137,115.45330590000222,248111.7477612875,116463.5336859534,4273.91128,1907.9772454676736,4413467.342977018,1944264.879597165,1418.06043,617.1333681005807,1463655.9479825497,627788.1350630649,2305.83504,956.7759184410364,2369641.3467760454,965978.8757137778,0.38147,100000,0,299850,3129.500908009268,0,0.0,0,0.0,16271,169.03584027386395,0,0.0,22874,233.6819253971236,2185953,0,78427,0,0,2562,0,0,41,0.4070386373598848,0,0.0,1,0.0104368881374329,0,0.0,0.07569,0.1984166513749443,0.3082309420002642,0.02333,0.3059222934741606,0.6940777065258393,25.472403886448284,4.5448309874911015,0.3291053610688313,0.2026044309149332,0.2337223067816675,0.2345679012345679,11.001552203332793,5.438489730917095,24.76969005781515,13287.558088064294,66.29264675132792,13.983758496531344,21.7445163438954,15.260262875382518,15.304109035518652,0.54354811432437,0.7779632721202003,0.682939362795478,0.5767004341534009,0.1124729632299927,0.7143859649122807,0.9196675900277008,0.8857758620689655,0.7428571428571429,0.143859649122807,0.4893048128342246,0.7168458781362007,0.6194331983805668,0.5276476101218369,0.1043557168784029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0045926436595157,0.0068694699245068,0.0090907244139275,0.0114194486531558,0.0137152282816763,0.0157393626781381,0.0180288706944075,0.0202813215570821,0.0224576488049541,0.0244537367277497,0.0265385917921246,0.0285614446191636,0.0307736643303383,0.0326863410058445,0.0348205805838873,0.0368539186379668,0.0388755918891755,0.0409316041409243,0.042855805146026,0.05803510894621,0.0716727116890175,0.0849064510046303,0.0977274636646223,0.1091439524792518,0.1239228689701782,0.1380110391880581,0.1514648977335544,0.1646220477480745,0.1768309663046505,0.1908880641170458,0.204447423326811,0.2168607936025033,0.2288142072324949,0.2399520821198166,0.2517280660038266,0.2624870477867035,0.2731408161202278,0.2825313760137737,0.2910633820535694,0.2995841035120148,0.3079115180677863,0.3156550729435131,0.3231214772088125,0.3300013360377977,0.3371604558053588,0.3442409686780746,0.3508506472039264,0.3565252284671344,0.3617256928878458,0.3630673558391213,0.3645221220670199,0.3662229992668208,0.3675595884166196,0.367964013882062,0.3681649319947192,0.3685607143992119,0.369564500708799,0.3708060029533981,0.3718234027279253,0.3731687056335901,0.3744769874476987,0.3749393011717513,0.3760905340517144,0.3769710747799168,0.3793691613309541,0.3797091492041681,0.3819982909769915,0.3841118188251946,0.3860797622394473,0.3859924333302574,0.3862815884476534,0.3875456935804527,0.388505925180079,0.3897882938978829,0.3884357005758157,0.3863388828380271,0.3836099585062241,0.3818742985409652,0.3802430419443355,0.0,2.7786988288576078,62.23415591467773,218.57471214692416,348.78881562788865,fqhc2_80Compliance_baseline,68 -100000,95649,40293,376.8465953643007,7418,76.62390615688611,5720,59.352423966795264,2306,23.80578991939278,77.2563444549925,79.66646544547451,63.27473565930678,65.05561369881059,76.98334630724028,79.3900043298847,63.17669124890093,64.95825611529368,0.2729981477522187,276.4611155898109,0.0980444104058477,97.35758351691004,65.59652,45.97515554644226,68580.45562420935,48066.53027887616,192.507,113.06957532474526,200800.26973622307,117749.297248006,234.72533,110.85541858251912,242380.58944683164,113608.84688094676,4103.79636,1804.927995064399,4261140.785580613,1857698.6534771908,1394.34916,589.2944495447961,1447350.6048155234,605678.5499226203,2264.44644,919.5079504892564,2339617.8736839904,937997.7140684422,0.37782,100000,0,298166,3117.2934374640613,0,0.0,0,0.0,15956,166.32688266474295,0,0.0,22086,227.93756338278496,2181611,0,78335,0,0,2552,0,0,32,0.3241016633733756,0,0.0,0,0.0,0,0.0,0.07418,0.1963368799957651,0.310865462388784,0.02306,0.3125,0.6875,25.50091849133544,4.604529959508754,0.3277972027972028,0.1993006993006993,0.2438811188811188,0.229020979020979,11.23012182971734,5.578374916576293,24.312752625516183,13211.502757598557,64.16796780813785,13.391051675979687,21.02368863404228,15.413382003387664,14.33984549472823,0.5416083916083916,0.7429824561403509,0.6896,0.5842293906810035,0.1091603053435114,0.7105064247921391,0.916184971098266,0.8532731376975169,0.7508532423208191,0.1037344398340249,0.4907891744371162,0.6675062972292192,0.6389664804469274,0.5399274047186933,0.1103835360149672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775459563477,0.0043886766062252,0.0068196348653832,0.008889295256672,0.0109980669447553,0.013029349143771,0.0151481149012567,0.0172973967060362,0.0194034736002291,0.0217181961603868,0.0241342157919039,0.0261337827699959,0.0284961291385274,0.0307344935664797,0.0328801933764436,0.0349023706294429,0.0371426201977899,0.0392346286889588,0.0414763326847236,0.0434741793831422,0.057677033692835,0.071159950136705,0.0846438094438262,0.0971507362615386,0.1093900032710428,0.1249629660981081,0.1385849667306937,0.1521269232816909,0.1642550281060978,0.1759637772126908,0.1897750423075679,0.2032495667244367,0.2154595053742363,0.2273917664719869,0.2380211951787033,0.2491648261395545,0.2595790368398685,0.2701271186440678,0.2805350668833604,0.2900420982598621,0.2991477766827062,0.3066064833812064,0.3150039743270337,0.3226275093650946,0.3294121944982282,0.3365909708665892,0.343062855135908,0.3483180467145463,0.3534468206666407,0.3595095432720924,0.3606196483077172,0.3616886076998521,0.3631578202606518,0.3643982860047934,0.3658131922335321,0.3662805940685677,0.3658307309922886,0.3675489029870473,0.3690043260198893,0.3698593122331706,0.3710952272899175,0.3719455027827093,0.3729791415710391,0.3738557387373203,0.3737437338047611,0.3748523118124294,0.3764996979025807,0.3776960162395331,0.3789659431798129,0.381072127090568,0.3812534359538208,0.3814052898744323,0.3812702651153919,0.3826877530751012,0.383897751655938,0.3799028320891101,0.3823396226415094,0.3845845845845846,0.3873410873681363,0.389082462253194,0.0,1.7293895952915057,59.10362814348262,215.15973958714275,342.2157658898582,fqhc2_80Compliance_baseline,69 -100000,95689,40831,383.5446080531723,7663,78.94324321499859,5952,61.58492616706205,2444,25.102153852584937,77.32722884548278,79.70265977154058,63.32110870231941,65.07544252454916,77.01870951268279,79.39632199024446,63.207589799704735,64.96577908401711,0.3085193327999889,306.3377812961221,0.113518902614679,109.6634405320458,64.262,45.04621105581039,67157.14449936774,47075.64198163884,195.07763,114.94019985734477,203267.62741798957,119519.8297164196,241.16647,114.49822695027638,248402.6586127977,116822.72124603036,4291.1278,1919.329565326408,4442116.711429736,1963463.74748028,1441.53925,623.1987440239608,1491231.6985233412,636023.1521114876,2407.91676,1008.1276766031154,2475810.86645278,1017935.9698625152,0.38227,100000,0,292100,3052.5974772439886,0,0.0,0,0.0,16118,167.82493285539613,0,0.0,22652,233.13024485573052,2189514,0,78623,0,0,2505,0,0,35,0.3657682701250928,0,0.0,0,0.0,0,0.0,0.07663,0.2004604075653334,0.3189351428944277,0.02444,0.3154761904761904,0.6845238095238095,25.58210832352923,4.563645602447818,0.3326612903225806,0.1985887096774193,0.2308467741935483,0.2379032258064516,11.10582060251684,5.529504591695977,26.285025191925666,13378.929876548162,67.08727269329758,13.61633792848953,22.45220283765373,15.329425342528928,15.689306584625385,0.5426747311827957,0.7580372250423012,0.7005050505050505,0.5735080058224163,0.1122881355932203,0.6955922865013774,0.9085545722713864,0.8563218390804598,0.7094594594594594,0.1525423728813559,0.4933333333333333,0.697508896797153,0.644718792866941,0.536178107606679,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880515115313,0.0047633043143375,0.0072030029420716,0.0092629269630397,0.0113380990634628,0.0135929052162137,0.0159382456712826,0.0181079121260711,0.0204016934939561,0.0228571428571428,0.0248284773713195,0.0268374347808224,0.0289855072463768,0.0310049562592092,0.0328190309097476,0.0346856676008562,0.0366122766122766,0.0385493884839801,0.0403278654420254,0.0423407271514342,0.0574066723766947,0.0719526107023621,0.0853306760371322,0.099186769486497,0.1115165961755492,0.1279965300552229,0.1422218920467811,0.1554959214533682,0.1686308029275068,0.1806430157589281,0.1949695696666128,0.2082268889369993,0.2207029337858564,0.2322829047395075,0.2432967903843614,0.2541747465233531,0.2653434841820901,0.2751105460355322,0.2842903526099494,0.2942686546638092,0.3017132530957869,0.309849753492675,0.3176756308494254,0.3248113445226926,0.3321530692948835,0.3394162386408534,0.3453729134529766,0.3512927460809449,0.357931088203983,0.3626174407833796,0.363125168964585,0.3648788569061917,0.3660388563671842,0.36808686449892,0.369245004253287,0.3694730839767596,0.3693980545428494,0.3702459191909209,0.3699804533452213,0.3713093019922603,0.3721433273770337,0.3730789087010047,0.3749473418148117,0.3766952297415828,0.3766570535346436,0.3787934571082943,0.3786893734537713,0.380290627577892,0.3821261847503183,0.3856890742820472,0.3852719974161399,0.3868605277329025,0.3849588569241564,0.3884624331239823,0.3907373669575223,0.3933637893724453,0.398726312519416,0.4040279490341142,0.4060234244283324,0.4100077579519007,0.0,2.443140090102993,64.13845828611227,223.74288037801983,345.9733152782387,fqhc2_80Compliance_baseline,70 -100000,95784,40640,380.6376847907793,7451,76.62031236949804,5819,60.22926584815836,2402,24.774492608368828,77.38146625236273,79.70356353998982,63.35451413110488,65.06747335596921,77.08470458011338,79.40435905596426,63.246892971822696,64.96122541302258,0.296761672249346,299.20448402555166,0.107621159282182,106.24794294663786,66.36828,46.49139643760522,69289.52643447758,48537.74788858809,197.87154,116.91574419767288,206085.02463877056,121565.90265354642,238.25363,112.761658614869,245335.1290403408,115124.8973069386,4253.74479,1894.4842094238204,4406185.57379103,1943080.4825689264,1464.17011,632.391335749857,1514007.663075253,645617.562170986,2384.16102,990.7523282939744,2460509.834627913,1010682.0821305666,0.38027,100000,0,301674,3149.52392883989,0,0.0,0,0.0,16324,169.89267518583478,0,0.0,22391,230.30986386035244,2179610,0,78295,0,0,2623,0,0,47,0.4906873799381942,0,0.0,0,0.0,0,0.0,0.07451,0.1959397270360533,0.3223728358609583,0.02402,0.3173272357723577,0.6826727642276422,25.512301991959934,4.712467436974905,0.3241106719367589,0.1960818009967348,0.2270149510225124,0.2527925760439938,11.028615753643155,5.361104180120562,25.780831336144555,13240.328863955849,65.58457357524648,13.284608577042947,21.24315216254656,14.6642962478535,16.3925165878035,0.5372057054476714,0.7668711656441718,0.6972428419936373,0.5851627554882665,0.1108089734874235,0.6956214689265536,0.9178470254957508,0.8869565217391304,0.7231833910034602,0.1401273885350318,0.4862593686123098,0.699238578680203,0.6360448807854138,0.5465116279069767,0.1028522039757994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971123666038,0.0045401110705744,0.00697903247076,0.0091498090827849,0.0117644666334509,0.0140073701569721,0.016104044357469,0.0183269046307067,0.0203823087689902,0.0225798530826052,0.0245876447085339,0.0264605093058092,0.0288163114299221,0.0309144627801398,0.0331051405241561,0.0350101725722665,0.0369638329797692,0.0387131556302033,0.0407226187137054,0.0428032984881929,0.0576056102855234,0.0714345505911897,0.0845831148400629,0.0972574083612778,0.1096352519502424,0.1255909384154918,0.1389646065568554,0.1514496764305177,0.1635412217001281,0.1757045008735918,0.1901450897662203,0.2035401100742839,0.2162738105592763,0.2285001804639564,0.2401060634400202,0.2511634091211275,0.2619305433071745,0.2723364990772831,0.2819720900657439,0.2908532321483842,0.2999490316004077,0.3086455905262788,0.3158748963392963,0.3225887685721481,0.3297924060479362,0.3363496270726746,0.342773082942097,0.3480530060974833,0.353502606530591,0.3583375168441356,0.358957075064711,0.3594488460213572,0.3605978912899265,0.3628690759324787,0.364342935569048,0.3643912715865229,0.365651849381422,0.3662892129431515,0.3684787636849589,0.369352126784245,0.3709956059638712,0.3723669623059867,0.3734949885482549,0.3736713184565945,0.3759418469860896,0.3776864479987435,0.378656601183838,0.3806685588142541,0.3838177200902934,0.3856794466877223,0.3872551268523191,0.3882930473293847,0.3886366502711565,0.3879743941472336,0.3934068022040661,0.393587749730829,0.3958876783796225,0.4027636659215606,0.3996683250414594,0.4003097173828881,0.0,2.0781043915548114,63.02294298622503,218.79182052577036,338.19058967245394,fqhc2_80Compliance_baseline,71 -100000,95755,40888,382.1836979792178,7612,78.28311837501958,5895,60.968095660801005,2377,24.41647955720328,77.31912755708531,79.66805753205334,63.32066847763053,65.05815329267115,77.03062958127482,79.38012636478304,63.215972265062526,64.95624266430708,0.2884979758104862,287.9311672703011,0.1046962125680082,101.91062836406672,65.49532,45.87100463416531,68398.85123492246,47904.552904981785,195.48668,114.74590311810488,203579.12380554545,119260.53613131442,235.20973,110.95826711228958,242084.87285259253,113065.17918257591,4284.22599,1885.5419924499167,4436122.834316745,1931228.3831665595,1459.59704,627.7858587127611,1507782.5492141405,639330.71096081,2359.51096,970.147159456812,2427112.1925748005,982027.4826486896,0.38315,100000,0,297706,3109.0386924964755,0,0.0,0,0.0,16151,168.06433084434235,0,0.0,22182,228.1238577619968,2185533,0,78480,0,0,2589,0,0,41,0.4177327554696883,0,0.0,0,0.0,0,0.0,0.07612,0.1986689286180347,0.3122700998423541,0.02377,0.3146600124766063,0.6853399875233936,25.627370680366344,4.63784000988212,0.3307888040712468,0.1974554707379134,0.225275657336726,0.2464800678541136,10.993505663326404,5.364611918311923,25.201160786616317,13391.077732734197,66.11501901941847,13.48486063524568,21.928084559338515,14.819751276212612,15.882322548621683,0.5406276505513147,0.7414089347079038,0.7046153846153846,0.5835843373493976,0.120440467997247,0.7052401746724891,0.9023668639053254,0.8720173535791758,0.7248322147651006,0.1660649819494584,0.4905994249059942,0.6755447941888619,0.6527871054398925,0.5427184466019418,0.1096938775510204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0045501069123116,0.0068990706546,0.0092933027280667,0.0114206099805758,0.0135854898006986,0.0160591384144787,0.01860474615039,0.0209811660293245,0.023248909727483,0.0253145089354372,0.0276411578071895,0.0298654819202764,0.0318416877845767,0.0338419950268775,0.0358408863074999,0.0378376140045757,0.0401539355213476,0.042178001766509,0.0439523814483455,0.0584956472724995,0.0727324079207506,0.0860873669306203,0.0987402469031946,0.1110384887042874,0.12715430649834,0.1413390461443828,0.1550484094052558,0.1676204304748889,0.1785059652056468,0.1927280166241373,0.2062222703170652,0.2188917287508836,0.2310753922694221,0.2420478176196815,0.2531508184375484,0.2636549345299889,0.2740541513807927,0.2840974878821246,0.2935665280784341,0.3023096960926194,0.3101454026083495,0.3182469817423551,0.3260459811513296,0.3339214445634186,0.3399893799627064,0.3460062695924765,0.3524626741977024,0.3583583193800864,0.3642794806019094,0.3651369955459576,0.3661352163958845,0.3678505306895431,0.3693820428407756,0.370364850363658,0.3697650820982719,0.3705370632484613,0.3706647756320398,0.3725638210266264,0.3733400420492731,0.3742313931117733,0.3747737714047056,0.3760671118248668,0.3773840424331339,0.378032802795031,0.3794391539958962,0.3779439252336448,0.3803834574552369,0.379596174282678,0.3801494386063052,0.3810048176187199,0.3835307993352276,0.3837290725062066,0.3820787425841744,0.3850033304786374,0.3848441589340947,0.379883112888342,0.381321370309951,0.3848291191997777,0.3816852635629088,0.0,2.310221688144912,60.82508946485745,221.20290560587705,351.07560055025806,fqhc2_80Compliance_baseline,72 -100000,95664,40812,382.8399397892624,7536,77.30180632212745,5852,60.41980264258237,2388,24.460612142498743,77.34181859432726,79.72263535220245,63.3271521787835,65.08486386461455,77.04593629334654,79.43039928259351,63.21881335788473,64.98134375879431,0.2958823009807219,292.2360696089328,0.1083388208987727,103.52010582023752,66.0,46.22251215705761,68990.55025924068,48316.68861289452,197.44871,116.73648543599715,205602.0760160562,121233.20220518684,241.50398,114.2873448476695,247390.52308078276,115667.68023918312,4246.96431,1888.7354518063155,4390715.525171433,1925965.577136627,1438.9226,619.5546767898945,1487677.8307409266,631312.7790426341,2352.54126,970.4631242087232,2413367.557283826,976068.4217088956,0.38177,100000,0,300000,3135.9341026927577,0,0.0,0,0.0,16342,170.00125439036628,0,0.0,22720,232.5326141495233,2181097,0,78301,0,0,2686,0,0,36,0.3658638568322462,0,0.0,1,0.0104532530523498,0,0.0,0.07536,0.1973963381093328,0.3168789808917197,0.02388,0.3174862017059709,0.6825137982940291,25.77924171150776,4.618180468352263,0.3318523581681476,0.1946343130553657,0.2365003417634996,0.237012987012987,11.102937464423352,5.573089767673061,25.1991082133162,13307.265009491575,65.58076291771009,13.183773746551577,21.866220525065703,15.37346830476336,15.157300341329474,0.5446001367053999,0.752414398595259,0.6956745623069001,0.5874277456647399,0.1196827685652487,0.7154178674351584,0.910144927536232,0.8701298701298701,0.7476340694006309,0.1515151515151515,0.4914874551971326,0.6838790931989924,0.6412162162162162,0.5398313027179007,0.1121994657168299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021063077842249,0.0043483989985505,0.0066962247496525,0.0089780829152363,0.0112966201651279,0.0134703103364014,0.0157477907225636,0.0183130365546175,0.0202475495456821,0.0224590281403228,0.0244545156262816,0.0265484907927574,0.0286513790726623,0.0306864785771695,0.0326982226534277,0.0346924843294234,0.0369533678756476,0.0388944264473793,0.0409691950770383,0.0429941618015012,0.0573861262014208,0.0714450261780104,0.0847477196628564,0.0977070157530859,0.1100655139309413,0.1258912137432035,0.1393448711282775,0.1526316910105182,0.1656141475663835,0.177471254504891,0.1922385101730879,0.2054066918358737,0.2190012074273096,0.2315178288301094,0.2416023941291025,0.2530518200146222,0.2638042289057092,0.2737848784878487,0.2835883581547402,0.2928536247322543,0.3018601638054694,0.3102334939871788,0.3178047828093384,0.3256023013304566,0.3323734538650336,0.3386750819752964,0.3450848815664279,0.3507436080268921,0.3564231901347268,0.361775781198388,0.3631852870587601,0.3637704127334114,0.3644130023440368,0.3653233283115077,0.36604004051719,0.3661326527474555,0.3660117222866401,0.3670400263548015,0.3683298742731685,0.3702549219827663,0.3716265705110147,0.373068914229053,0.373062117419382,0.3738313556274721,0.3752567355321977,0.376021225733575,0.376141519728907,0.3768001015035209,0.3780145622447167,0.379599534529112,0.3816723518023416,0.3838101884159107,0.3839675805736718,0.3860579509645684,0.3864862307182738,0.3891293891293891,0.3906904577191621,0.3935431140171638,0.3914510686164229,0.39296875,0.0,2.8241889527237625,60.75213050528882,220.59998364478423,342.1508339910366,fqhc2_80Compliance_baseline,73 -100000,95686,40806,382.8564262274523,7617,78.3709215559225,5853,60.65673139226219,2405,24.84166962774073,77.38307130315455,79.75908211370255,63.34642469116329,65.09730194368643,77.08947599641482,79.46067626345243,63.23963462714687,64.99047954545702,0.2935953067397321,298.4058502501199,0.1067900640164225,106.82239822941142,64.14584,44.961984652583695,67037.85297744707,46989.09417530641,194.64675,114.71307416407424,202905.9946073616,119368.5117614638,237.97529,112.62888854427014,244786.0606567314,114793.01910818004,4234.87265,1878.6462533069991,4390713.730326275,1928256.9480456884,1431.74204,617.5564708308585,1478415.4839788475,627624.5975647194,2370.9114,980.3942245310992,2449604.4562422927,1000728.5572075387,0.38287,100000,0,291572,3047.175135338503,0,0.0,0,0.0,16077,167.47486570658194,0,0.0,22404,230.2322178793136,2191642,0,78723,0,0,2550,0,0,41,0.4284848358171519,0,0.0,2,0.0209016993081537,0,0.0,0.07617,0.1989448115548358,0.3157411054220821,0.02405,0.3112276757836892,0.6887723242163107,25.676987473371355,4.633245877887122,0.3232530326328378,0.2004100461301896,0.2374850504015035,0.238851870835469,11.065647559743493,5.452894308650597,25.475983996143,13342.201847263355,65.36135695446708,13.521180798764442,21.326335671005427,15.129888011935094,15.383952472762104,0.542456859730053,0.7647058823529411,0.7040169133192389,0.5597122302158274,0.1201716738197424,0.6837972876516774,0.932944606413994,0.8565400843881856,0.7184115523465704,0.1074918566775244,0.4979784366576819,0.6951807228915663,0.6530324400564175,0.5202156334231806,0.1237396883593033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461182592146,0.0041740117115474,0.006764637275484,0.0089463422559811,0.0111331401555589,0.013497969196942,0.0159636282085261,0.0181485980259061,0.0202283483078306,0.0224497108051389,0.0248316023662815,0.0267908485993592,0.029023068299857,0.0310861616109594,0.0332490844380254,0.0350458355295114,0.0370439430666915,0.0391173936959657,0.0409928974761602,0.0426749202776214,0.0577881310783566,0.0720544360115153,0.085527558063907,0.0977951149757641,0.1093445232848693,0.1252061572292468,0.1388953673274674,0.1519228314970009,0.1640630001920737,0.1759373359193339,0.1908671279010964,0.2043729319405696,0.2164782608695652,0.2282335453690952,0.239490067536353,0.2515455693678122,0.2626471310834655,0.2730784391013007,0.283360397905997,0.292503753280539,0.3010129073334491,0.3094549499443826,0.3171691315889268,0.3242084789107805,0.3316987101484546,0.3385929821962121,0.3453298735161019,0.3524807505991535,0.3584090319231767,0.3635161055625372,0.3653993985084087,0.3669633753134732,0.368408430437604,0.3693530638248581,0.3705677453928369,0.3713113872716939,0.3717334010732543,0.3728821931341072,0.3737087751810288,0.3741595395621537,0.3755018573411879,0.376278563656148,0.3773901727431102,0.3790508611229312,0.3804379210779596,0.3817114531698408,0.3827642183806567,0.3850361521534108,0.3858611463174201,0.3864385247528683,0.3884957772198128,0.3909192171007267,0.3923222152297042,0.3905037285040328,0.3954076850984067,0.4004019387634472,0.3988772568654225,0.4009527590313616,0.3997289972899729,0.3884297520661157,0.0,1.8968365594641103,62.26470705432551,214.1334785232929,345.8174503193617,fqhc2_80Compliance_baseline,74 -100000,95696,40952,383.6210499916402,7617,78.41498077244609,5902,61.12063200133757,2406,24.797274703226886,77.3960056150407,79.78190746395153,63.35197710932333,65.11389892679149,77.10679148163365,79.49086426126401,63.246104233343445,65.00964087615806,0.2892141334070572,291.0432026875185,0.1058728759798839,104.2580506334332,66.35354,46.47919857184439,69337.84066209664,48569.63569202933,198.63018,117.50838436517418,206970.28088948337,122199.97112227698,242.85741,114.89092224993396,250362.8678314663,117372.87516415592,4248.34839,1901.2663537716987,4400918.596388564,1948274.7698667643,1404.47008,613.3725896352091,1453432.6931115198,626788.4536050829,2368.59502,979.1651828325928,2442547.838990136,995896.13465754,0.38325,100000,0,301607,3151.720030095302,0,0.0,0,0.0,16409,170.8535361979602,0,0.0,22864,235.6106838321351,2182969,0,78201,0,0,2562,0,0,37,0.3657415147968567,0,0.0,1,0.0104497575656244,0,0.0,0.07617,0.1987475538160469,0.3158723907050019,0.02406,0.316270337922403,0.683729662077597,25.39262413429349,4.526551252170609,0.3376821416468993,0.1978990172822771,0.2346662148424263,0.2297526262283971,11.008017249287212,5.529460611737336,25.516025576591154,13284.666322476876,66.3396108826091,13.452551167791142,22.580010409499497,15.487321564243407,14.819727741075042,0.5362588952897323,0.7534246575342466,0.6798795785248369,0.5703971119133574,0.103244837758112,0.6927494615936827,0.8940809968847352,0.8548057259713702,0.7266666666666667,0.1484098939929328,0.4879130627633621,0.7001180637544274,0.6230053191489362,0.5271889400921659,0.0913327120223671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0045223175356411,0.0067193114228294,0.0089204978409956,0.011138689398409,0.0133283101861279,0.0156611641873222,0.0179685346455808,0.0203439039849516,0.0223548317757965,0.0244825146864331,0.0265719331389379,0.0288585151131817,0.0313549370635133,0.0334193148988856,0.035373165185032,0.0373615901722548,0.0392767432687716,0.0414747023035723,0.0435122459614382,0.0574564976708236,0.0717171082925195,0.0846959859871409,0.0980233413941751,0.1101401918414672,0.1253674837672638,0.138775726713346,0.1515174094929904,0.1636847221183734,0.1752946601889686,0.1897428165252229,0.2040220248590993,0.2169305843866494,0.2281879194630872,0.2388581607855642,0.2500304456130639,0.2612716118237591,0.2722921348314607,0.2818909057946382,0.2914146553399723,0.299757505773672,0.3092091437644476,0.316710380189504,0.323572001292469,0.3308020767625794,0.3373883736377279,0.3439497602876548,0.3499314581640942,0.3563059513505832,0.3621157442773227,0.3632673906031609,0.3642980745461037,0.3660050675675675,0.3671637908610075,0.3681715508529988,0.3679235165239241,0.3680698640124259,0.368488513491307,0.3691602374394854,0.3706569917071776,0.3720790555378291,0.3732004429678848,0.3755367054141795,0.3751089263769411,0.3770227316509343,0.3788860442029364,0.3792100384999287,0.3815324413027013,0.3838665302811188,0.386659197311032,0.3884898710865562,0.3884448259213561,0.3895252640957108,0.3912842979017754,0.3919137980356632,0.3912048192771084,0.3942441590592604,0.3942997744515071,0.3953294412010008,0.3979711275848615,0.0,1.9837020834753436,61.74915026352505,229.7333365792225,339.7006983539662,fqhc2_80Compliance_baseline,75 -100000,95837,40377,377.04644344042487,7594,78.19526905057545,5988,62.05327796153886,2446,25.28251093001659,77.38566316619061,79.70660955942692,63.36611244363343,65.08420451580817,77.09468057706802,79.41032969113087,63.26189887472184,64.97985700130212,0.2909825891225921,296.2798682960539,0.1042135689115824,104.34751450604551,66.11308,46.28853943240755,68984.92231601574,48299.23665432719,198.54901,117.12581147310546,206773.1147677828,121813.0278213064,244.59018,116.06183016219308,251477.56085854108,118333.66318260726,4355.9575,1938.532610578876,4519651.700282771,1997217.8913977651,1446.40101,622.1471670727689,1499387.6999488715,639329.6399853593,2416.68456,984.924034801648,2499769.8383714017,1009453.2797072148,0.37822,100000,0,300514,3135.678287091624,0,0.0,0,0.0,16412,170.82129031584878,0,0.0,23058,237.0483216294333,2185529,0,78428,0,0,2545,0,0,36,0.3756378016841095,0,0.0,0,0.0,0,0.0,0.07594,0.2007826132938501,0.3220963918883329,0.02446,0.3180172306155575,0.6819827693844425,25.583765587184065,4.616733404245872,0.3401803607214428,0.1942217768871075,0.2249498997995992,0.2406479625918503,11.280021568607834,5.654579375503138,25.802441935003188,13193.8208351671,67.28953995883671,13.437371293046697,23.03010290072519,14.94920958527578,15.872856179789052,0.5415831663326653,0.7480653482373173,0.7025036818851251,0.5805493689680772,0.1110340041637751,0.7028688524590164,0.9287749287749288,0.8615384615384616,0.7508896797153025,0.141025641025641,0.4893899204244031,0.6699507389162561,0.6479894528675016,0.5356472795497186,0.1027457927369353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047747939539551,0.0068506358404968,0.0090524861317131,0.0114935514056715,0.013847876998269,0.0160637658114953,0.0180936830288804,0.0203791711380244,0.0224423590572776,0.0244419848736395,0.0263992527738717,0.0287364591255729,0.0309527730884835,0.0332659627124236,0.0352015204412584,0.0374662431322234,0.0396351575456053,0.041491880217635,0.0434221616390747,0.0577338298338392,0.0715920850449998,0.0851674841738984,0.097851552240374,0.1099829369509806,0.1258197716784066,0.1401423668488623,0.153030319131978,0.166725320194943,0.1781939670403803,0.1917270596331261,0.2038537143844641,0.2163992792479864,0.2274637356880123,0.2377140095981726,0.249836928281611,0.2605271366188397,0.271109713220179,0.2810584863554493,0.2900891632373114,0.2986138385121866,0.306286327878802,0.3139493694799981,0.3211014659109931,0.3275089062840802,0.334222102081439,0.3401819929349793,0.3459512962704466,0.3512591578049694,0.3574674341108755,0.3586814665321224,0.3596655297612499,0.3612323636261229,0.3618042503975712,0.3624697012506134,0.3632474044993789,0.363405498063615,0.3634177673836424,0.3643308384261484,0.3659762357755681,0.367270879213959,0.3692696115462606,0.3697537654425453,0.3708362503105169,0.3711854103343465,0.3726473616133886,0.3748124639353722,0.3772197823181211,0.3771233218190235,0.3784143098863911,0.3786282122388612,0.3796475392220073,0.3823098016708118,0.3814043209876543,0.3853597777139024,0.3871162678269277,0.383773643895576,0.3791469194312796,0.381660123387549,0.3752913752913753,0.0,1.699279818489109,65.28795998490351,221.9601106972655,349.80932748429274,fqhc2_80Compliance_baseline,76 -100000,95771,40595,380.731119023504,7495,77.0066095164507,5785,59.86154472648296,2353,24.214010504223616,77.37657405990127,79.72040933407439,63.3458979718325,65.07862192798038,77.0879923341633,79.43253146478348,63.23947503360271,64.97567194558731,0.2885817257379699,287.8778692909094,0.1064229382297909,102.94998239307064,65.67594,45.99828484285378,68576.01988075723,48029.45029586595,194.53769,114.64257338669732,202607.69961679424,119184.62100917536,235.51983,111.50226732902104,243162.00102327424,114293.1500455881,4179.03557,1858.7216523502668,4325648.996042644,1902876.00876076,1378.70645,592.9080253214887,1426991.0828956575,606493.829365349,2309.56192,956.818353059574,2377790.416723225,967402.5513395292,0.37965,100000,0,298527,3117.091812761692,0,0.0,0,0.0,16046,166.992095728352,0,0.0,22120,228.1379540779568,2186360,0,78382,0,0,2523,0,0,47,0.49075398607094,0,0.0,0,0.0,0,0.0,0.07495,0.1974186750954827,0.313942628418946,0.02353,0.3066109422492401,0.6933890577507599,25.85255197167711,4.613128615460711,0.3351771823681936,0.1960242005185825,0.2430423509075194,0.2257562662057044,11.13873363852798,5.520547526836868,24.753395690034697,13205.35889237766,64.75834044468465,13.169397634069083,21.76558862158456,15.614292448025308,14.209061741005694,0.5469317199654278,0.7557319223985891,0.6890149561629706,0.5896159317211949,0.1087289433384379,0.6896046852122987,0.908284023668639,0.8232662192393736,0.731629392971246,0.1417910447761194,0.5028286942747228,0.6909547738693468,0.6487935656836461,0.5489478499542544,0.1001926782273603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0048049143934555,0.0070618316118427,0.0091734731195903,0.0113395980798958,0.0135029174855653,0.0156825157284008,0.018060603585576,0.0199041086087569,0.0220798231157424,0.0241575106592325,0.0261237310230853,0.0282406883860554,0.0303919751179221,0.0324051625416542,0.0343070371289175,0.0362845604224914,0.0382285204473307,0.0401813097131688,0.0421787127681732,0.0569147270639808,0.0704552347287729,0.0839518597727177,0.0970142195037361,0.1095337464693731,0.1252061223626908,0.1383785159190424,0.1511236911551885,0.1636691799987184,0.1752045554471265,0.1895923995001938,0.2030407964506005,0.2164167736600439,0.2278632010943912,0.2390842317391448,0.2499944563939951,0.2613590671491757,0.2711389298539891,0.2806071477226284,0.289695858869351,0.2985314709592306,0.3068663001520645,0.3143729222615259,0.3211265243537219,0.3276917843170607,0.3348620460093202,0.3407885519863904,0.3465210592557749,0.3526785714285714,0.3585244214581629,0.3599520996757309,0.3611806453387616,0.3628056936094724,0.3641251716412517,0.3650475341651812,0.3661768986808439,0.3660128647929275,0.367358338672844,0.3688624189214629,0.3694964337426932,0.3714441396415016,0.3719271834082761,0.3732378091056159,0.374462654486835,0.3763656095502231,0.3771817349208426,0.380497569345153,0.3831772754500457,0.3845312058740469,0.3867758689572513,0.3882612289887021,0.386396526772793,0.3895658796648896,0.3892003994162378,0.3881616391576551,0.3913095523102705,0.3861600247142416,0.3857548701298701,0.3866078809589418,0.3750960799385088,0.0,2.1048866155003703,60.38753884948088,221.55337930499053,334.1169282829634,fqhc2_80Compliance_baseline,77 -100000,95756,40590,380.7907598479469,7439,76.60094406616818,5796,59.99624044446301,2371,24.426667780609048,77.3313489084019,79.69708134794917,63.31030609897547,65.06286985630162,77.04448815711181,79.40778442647782,63.20560472599604,64.95934158841082,0.2868607512900922,289.29692147134745,0.1047013729794272,103.52826789079472,65.97162,46.20284737935418,68895.54701533064,48250.60296937444,195.04423,114.85644457890136,203154.47595973095,119416.67515079626,238.81939,112.48886063629858,245524.1551443252,114518.14633409589,4212.24596,1871.829866123099,4365239.337482769,1921365.7021702584,1430.95135,616.3046092432328,1481783.5644763776,631311.2285115704,2343.75708,965.0097341469276,2417056.393333055,982376.1890154156,0.37965,100000,0,299871,3131.61577342412,0,0.0,0,0.0,16091,167.49864238272275,0,0.0,22406,230.1579013325536,2182318,0,78323,0,0,2572,0,0,46,0.480387651948703,0,0.0,0,0.0,0,0.0,0.07439,0.1959436322929013,0.3187256351660169,0.02371,0.3049917017745436,0.6950082982254564,25.656767378573736,4.574403511946568,0.3324706694271911,0.1927191166321601,0.2334368530020704,0.2413733609385783,11.16710378344213,5.543188303883561,25.027509013750198,13211.606037336398,64.97637166335208,12.88315020224872,21.589680968370768,15.16290236915092,15.340638123581684,0.5308833678398895,0.7555953446732319,0.6782563570316554,0.5750184774575019,0.1057898498927805,0.6997808619430241,0.9015384615384616,0.8680089485458613,0.7548387096774194,0.1498257839721254,0.478653715834651,0.6957070707070707,0.620945945945946,0.5215723873441994,0.0944244604316546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002036494797313,0.0041980591581573,0.0062522202486678,0.0086872586872586,0.0108140552198417,0.01297471255003,0.0151420909341191,0.0173274656156508,0.0194847037404494,0.021652293258496,0.0237323596980636,0.0260235269944007,0.0279195653068785,0.0300834793362877,0.0322041246051898,0.0342363767966084,0.0363448097333678,0.0383310331946332,0.0402794091660343,0.0422433994688329,0.0566167720924406,0.0707342339042995,0.0846856675303422,0.0974488937494742,0.1094240948103161,0.125193019566367,0.138979381771491,0.151638776749289,0.1643154857326066,0.1760754563110963,0.1903622508918852,0.2034849091952653,0.2166410834231468,0.2285038645967901,0.2393987777349557,0.2506236487610178,0.2617994594473855,0.2718306687682954,0.281815808293508,0.2909722381421792,0.3001111651497256,0.3081726375969446,0.3162494515528466,0.3229728593226244,0.3295063006026663,0.335826883432705,0.3419792998020199,0.3474953168605763,0.3538635272127828,0.3594749643102627,0.3609600777128671,0.362086065347953,0.3631993006993007,0.3644133981256508,0.3649088396558641,0.3654856547646401,0.3657428657349519,0.3660159716060337,0.3676586418273346,0.3682186488275171,0.3688716976172146,0.3699556013636724,0.370617029769533,0.3722845601436266,0.372362003187328,0.373267300788722,0.3738590517611376,0.3766570696364729,0.3789007092198581,0.3797951395862623,0.3815020926275123,0.3804231673434494,0.3835329910629397,0.3869485294117647,0.3885440180586907,0.3885162960348276,0.3931701420368691,0.3956349206349206,0.3938328374357587,0.3979591836734694,0.0,2.0604257576388827,60.71400446469225,216.98205024823335,342.4346824749996,fqhc2_80Compliance_baseline,78 -100000,95475,40516,380.9583660644148,7552,77.643362136685,5895,61.01073579471066,2389,24.56140350877193,77.22623088476638,79.71297181470537,63.24095407219974,65.07620208480274,76.93799447643559,79.42464022413779,63.13472783120383,64.9727169446679,0.2882364083307891,288.33159056758006,0.106226240995916,103.48514013485044,65.46342,45.86899976044718,68566.0329929301,48042.9429279363,195.90032,115.7847674405868,204446.1586802828,120533.56107943103,243.64407,115.38141815306211,249898.66457187745,116887.6420745014,4272.88668,1911.2736785045463,4426836.669285153,1953295.95025352,1428.52924,618.8404732060523,1476742.5608798114,628698.8793569877,2362.26558,985.8174529462616,2431294.8939512963,996722.0480872528,0.37903,100000,0,297561,3116.6378633150043,0,0.0,0,0.0,16178,168.67242733699922,0,0.0,22948,235.14008902854152,2177220,0,78170,0,0,2654,0,0,34,0.3456402199528672,0,0.0,0,0.0,0,0.0,0.07552,0.1992454423132733,0.3163400423728814,0.02389,0.3114095644533701,0.6885904355466298,25.311795480189417,4.584669045334694,0.3341815097540288,0.1932145886344359,0.2351145038167938,0.2374893977947413,10.953408018537871,5.409939676083075,25.541235675804483,13208.5604473477,66.53882918863454,13.26421997197373,22.445284354345954,15.374386644629476,15.454938217685376,0.534520780322307,0.7550482879719052,0.6939086294416243,0.5606060606060606,0.105,0.6919801277501775,0.9435736677115988,0.8343313373253493,0.7213114754098361,0.1267605633802817,0.4850646455639768,0.6817073170731708,0.6460176991150443,0.515263644773358,0.0994623655913978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018949181739879,0.0041993366265329,0.0065384693483867,0.0086629384850025,0.0106593093337677,0.0129236100494317,0.0151430116633843,0.0174830891218605,0.0198369259414611,0.0220282371262883,0.0241829528658236,0.0262600505870982,0.0283790184731346,0.0304574287040379,0.0323300579647252,0.0343224550650211,0.0363070539419087,0.0384303534303534,0.0404759176104101,0.0425416383856314,0.0575403263793662,0.0717440799068313,0.0849835417345855,0.0975568624971015,0.1101165629260147,0.1255789797237856,0.1391148109165523,0.1529532263571184,0.1660437171345035,0.1774240355987403,0.1910407151880283,0.2037705967218805,0.2159244558817115,0.2284423686259031,0.2396548299529915,0.2510168700406748,0.2613458353846842,0.27167955975552,0.2815369386385099,0.2902411021814007,0.2990451439245397,0.3069234920113554,0.3144142646849328,0.322094225728097,0.3292511862215337,0.335701818451902,0.341549915738109,0.3472938226753482,0.353301671979702,0.3591467133349243,0.3605186227804244,0.3609637488947834,0.3617129603439498,0.3635388584514595,0.3650817347167276,0.3653037653037653,0.365175968263578,0.3670517842680286,0.3675949192798871,0.3684475534535776,0.3700316765970284,0.3705486810169896,0.3710299479441084,0.3728462818840253,0.3735512845277187,0.3746003459300802,0.375222050312303,0.3761470792987785,0.377050919377652,0.3801391777315629,0.3806546524457521,0.3804760631184808,0.3795980280621919,0.3765530909368092,0.373315868263473,0.3750147597118904,0.3738447319778188,0.379644921552436,0.3779944289693593,0.3691301000769822,0.0,2.82219975752171,61.73475945816648,229.1483932648649,339.4242763574387,fqhc2_80Compliance_baseline,79 -100000,95699,40806,382.9507100387674,7655,78.71555606641658,5918,61.1500642639944,2474,25.43391258006876,77.36399481233721,79.74797674505824,63.33329461681414,65.09685119745608,77.06068403698112,79.44486168246421,63.2217586007348,64.98855978955709,0.3033107753560955,303.1150625940313,0.1115360160793486,108.29140789898872,65.857,46.12643111209989,68816.8110429576,48199.4912298978,197.29055,116.91281864074952,205469.5137880229,121479.3661801581,241.77603,115.2044411564622,248047.0537832161,116887.4238709382,4328.15541,1950.1209332089231,4473662.211726351,1988751.7353461613,1460.33908,640.2928944107601,1505516.3167849192,648695.2888539316,2446.53786,1022.5796355869568,2515926.227024316,1032976.2165360724,0.38138,100000,0,299350,3128.036865588982,0,0.0,0,0.0,16308,169.6778440736058,0,0.0,22748,233.10588407402375,2183372,0,78360,0,0,2743,0,0,40,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07655,0.2007184435471183,0.3231874591770085,0.02474,0.3129184230101661,0.6870815769898339,25.409292748094245,4.604949919982458,0.3213923622845556,0.1977019263264616,0.2363974315647178,0.2445082798242649,10.801894556853162,5.278206589899706,26.532390107159205,13314.979659726694,66.83929765644068,13.613895519725466,21.52199276257456,15.535086928116108,16.168322446024543,0.5353159851301115,0.7410256410256411,0.685068349106204,0.588277340957827,0.1209398756046993,0.6963423050379572,0.8885793871866295,0.8623655913978494,0.7756410256410257,0.1501597444089457,0.4831058402327142,0.6757090012330457,0.627696590118302,0.5344986200551978,0.1128747795414462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.0048373847698439,0.0074210184357995,0.0096652234892371,0.0116506237408168,0.0137946492246877,0.0162695336407034,0.0180562931492299,0.0198930174997187,0.0218310652372029,0.023658384010337,0.025778489852929,0.0281940772894187,0.030613401477604,0.0326848650601166,0.0345437250563493,0.0366280635604632,0.0386435331230283,0.0408511169090361,0.042613932359499,0.0571783651687153,0.0714181041701557,0.0842452028494392,0.0971174979756233,0.1099129298167942,0.1255934443563309,0.1390470736699222,0.1520499563839067,0.1648287126493226,0.1770953912111468,0.1909492036160137,0.2050411077455647,0.2182286795571699,0.2303881360937038,0.2415894739158177,0.2532001594543119,0.2646481324467847,0.2750964490984962,0.2840379050104976,0.2930971302933834,0.301494574647757,0.3095547212182883,0.3177108619199299,0.3249160671462829,0.3318952945751507,0.338698545723441,0.3455235185857548,0.3516442974365498,0.3569292123629112,0.3622807827819638,0.3632922985750074,0.3646338105726872,0.3659000591866069,0.3666343636547724,0.3677214060548385,0.3682735597684604,0.3683327795446274,0.3692494343705938,0.3699967569597351,0.3713070365140927,0.3723873730070797,0.3729048619091017,0.3737157264418531,0.3749156659020375,0.3764401826042849,0.3776826289106622,0.3781515020842317,0.3789816984358178,0.3800906579786103,0.3812495000399968,0.3835327556961445,0.385399978639325,0.3863737663164597,0.3871391076115485,0.3873960026776322,0.3905232698336147,0.3919024542754416,0.3930719767683053,0.3875140607424072,0.3932938856015779,0.0,2.6449274564031144,63.637375693027785,226.13390811021245,340.3271404125272,fqhc2_80Compliance_baseline,80 -100000,95684,40786,383.16750971949335,7549,77.55737636386439,5863,60.83566740520882,2381,24.53910789682705,77.31725194233033,79.72627233066939,63.30264576078415,65.08517107031791,77.02755199778875,79.43284267631365,63.19678095748559,64.98008941844026,0.2896999445415815,293.42965435573376,0.1058648032985658,105.08165187765428,65.82312,46.07717888951649,68792.1909619163,48155.57343915021,197.94232,117.13714877224716,206451.48614188368,122001.45141533294,239.2011,113.74221936188634,247368.32699301868,116773.58094928275,4269.78124,1914.946034973376,4433106.193302956,1972051.8842997528,1419.29164,618.8167738323701,1470290.999540153,633709.2657417854,2352.84746,978.738501680969,2428129.0079846163,997253.3605058534,0.38121,100000,0,299196,3126.917770996196,0,0.0,0,0.0,16303,169.92391622423813,0,0.0,22468,232.2227331633293,2181905,0,78319,0,0,2604,0,0,44,0.4598469963630283,0,0.0,0,0.0,0,0.0,0.07549,0.1980273340153721,0.3154060140415949,0.02381,0.3159022177419355,0.6840977822580645,25.55646788802073,4.675803864637864,0.3215077605321508,0.1959747569503667,0.240832338393314,0.2416851441241685,10.98940860363718,5.32900630652954,25.421631100006877,13253.758531885724,65.9344801765238,13.218725479333973,21.24772941418123,15.738915778047994,15.7291095049606,0.5312979703223606,0.7658833768494343,0.6779840848806366,0.5658640226628895,0.1115031757233592,0.6874557051736357,0.927710843373494,0.849438202247191,0.7423312883435583,0.1363636363636363,0.4818059299191374,0.7001223990208079,0.625,0.5128913443830571,0.1045987376014427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0045834812148253,0.0066269523123293,0.0089016248513855,0.011049498906242,0.013130284200876,0.0151796462163099,0.0171829029094475,0.0194900861451576,0.0215968117040786,0.0235764850723299,0.0256581516266261,0.0278032260388895,0.0298472070437346,0.0319858712715855,0.034391780736878,0.0363440347476339,0.038372467365229,0.04022264995058,0.0423220856657389,0.0570222635477501,0.0713096472214368,0.0847434497816593,0.0978442697976833,0.1100069624659788,0.1255172121866302,0.1398234033069428,0.1531212063126956,0.1648000512963002,0.1767665390102876,0.1907516318748788,0.2038558546855887,0.2153685424806015,0.2269622331691297,0.2378549868910969,0.2497894036798936,0.2606803267711263,0.2704414544145441,0.2806149656776536,0.2901068447029992,0.298335763720112,0.3068797304727256,0.315040915173549,0.3233724653148346,0.330460049603657,0.3368952284589662,0.3428635862483712,0.3490871126276387,0.3552425259502119,0.3615111474847209,0.3624057112068966,0.3641945564932472,0.3651672726247851,0.3670789035944167,0.3683473180619103,0.3688475436303529,0.3680064793787419,0.3694925304300561,0.3708517414979965,0.3728492219638705,0.3742814202517377,0.3756961924959863,0.3772929258892656,0.3777558037620513,0.3786167789463481,0.37998109938573,0.3797511895889469,0.3813315638133156,0.3827553293032135,0.385282596530498,0.3899264029438822,0.3911644863821574,0.3907335415206169,0.3901009945262508,0.391449247762331,0.3935776530977677,0.3940993788819876,0.3946179129005752,0.389252591380251,0.3843226788432268,0.0,1.7412987437031744,62.76094831217544,226.19646414080964,335.5376944644226,fqhc2_80Compliance_baseline,81 -100000,95857,40812,382.6741917648163,7587,77.88685229039089,5865,60.611118645482335,2376,24.44265937803186,77.4717338221379,79.75647287911603,63.40399372213196,65.08989794426084,77.18493901558958,79.46832992743695,63.300719101471714,64.9885045412899,0.286794806548329,288.14295167907744,0.1032746206602439,101.3934029709418,66.67694,46.66442954177984,69558.75940202593,48681.2956192869,196.36927,115.72975186438428,204288.24186027105,120163.43288897446,241.8382,114.40975822791722,247908.95813555608,116054.86406528272,4291.77615,1901.812641754596,4442025.371125739,1948766.1326294327,1447.91186,623.2866725101734,1498801.4438173529,638535.4356073876,2348.05146,959.485883771904,2418536.048488895,975752.9279553692,0.38171,100000,0,303077,3161.761791001179,0,0.0,0,0.0,16215,168.56358951354622,0,0.0,22723,232.67992947828537,2184667,0,78332,0,0,2689,0,0,40,0.4172882522924773,0,0.0,0,0.0,0,0.0,0.07587,0.1987634591705745,0.3131672597864768,0.02376,0.3174048658764816,0.6825951341235184,25.57240521363387,4.691576748214424,0.3290707587382779,0.1928388746803069,0.2364876385336743,0.2416027280477408,11.14325069387174,5.454420669006546,25.096426360717704,13289.481751176589,65.55140399950511,13.219869962638631,21.534233457897525,15.292842153566244,15.504458425402722,0.5430520034100597,0.770999115826702,0.6932642487046632,0.5940879596250901,0.1065631616090331,0.7274741506646972,0.9410029498525072,0.8454935622317596,0.7918088737201365,0.15625,0.4876967412990468,0.6982323232323232,0.644808743169399,0.5411334552102377,0.0956072351421188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024901305800182,0.0046094153640425,0.0067229106248352,0.0090946000812017,0.0113608649703276,0.013531799729364,0.015514220519925,0.0177480390456859,0.0199129955272348,0.0217622514930868,0.0240787398349003,0.0265627403722886,0.0284460972653119,0.0305181709676091,0.0324811875064426,0.0344905925359879,0.0364114075284722,0.038284950304186,0.0401125602259511,0.0422004599902174,0.0572152532298933,0.0708551118544846,0.084232808668497,0.0970727914600319,0.1094915897306184,0.1250171784978064,0.1384630065525796,0.1523348579938304,0.1642737433149372,0.1767864031891637,0.1913517817180237,0.2052409768748649,0.2179407836878277,0.2297354832370825,0.240486728093392,0.2529209546022306,0.2633319967923015,0.2734569702956959,0.2826214955387472,0.2918609967992684,0.3007872924987879,0.308900889972356,0.3167725329995985,0.3244474741676234,0.3315378922978005,0.3383431806991629,0.3444724936889199,0.35111924181213,0.3570689565982101,0.3628290600542834,0.3641036682186398,0.3649250041206527,0.3659181720974731,0.3665757693805999,0.3681609758269153,0.3684476114747079,0.3691274106860575,0.370247093738215,0.3710634958545157,0.3713445602780005,0.3717912711340785,0.3725242392527794,0.3737278552581983,0.3747709497206704,0.3755825685869408,0.3756972319240995,0.3757039649581887,0.3779033270558694,0.3796797041275601,0.381411522958982,0.3832698930578213,0.3847543160690571,0.3865189873417721,0.3836448957612124,0.383726482666412,0.3860576923076923,0.3828545091411891,0.3754812563323201,0.3656121045392022,0.3584544758990053,0.0,2.2829143770149427,59.629417847157576,226.4358821632091,341.10638626351846,fqhc2_80Compliance_baseline,82 -100000,95746,40806,380.93497378480566,7530,77.39226703987634,5828,60.3471685501222,2338,24.08455705721388,77.34438518034166,79.6990177194764,63.33412346583962,65.07299777626564,77.05853982266807,79.41080386071174,63.23011432995556,64.970816116794,0.285845357673594,288.21385876466366,0.1040091358840555,102.18165947163982,66.3575,46.46807854066396,69305.76734276106,48532.6578036304,196.81131,116.29407254814278,205054.2894742339,120959.66677265136,242.64445,114.42148081226928,250162.4506506799,116987.83427174028,4235.09133,1879.9832076680373,4388074.499195789,1928328.7945898932,1429.1861,617.5359464129543,1477822.070895912,630110.2567344365,2307.52034,952.2867781217528,2378775.0715434584,966587.0279392812,0.38197,100000,0,301625,3150.2621519436843,0,0.0,0,0.0,16285,169.55277505065487,0,0.0,22786,234.7460990537464,2180263,0,78291,0,0,2772,0,0,43,0.449104923443277,0,0.0,0,0.0,0,0.0,0.0753,0.1971359007251878,0.3104913678618858,0.02338,0.309304380760005,0.6906956192399949,25.56445702104304,4.6196696785035005,0.3335621139327385,0.1983527796842827,0.2292381606039807,0.2388469457789979,11.017681700918075,5.401951980250375,24.7688314019661,13329.633251246983,65.37906037318182,13.512913817961044,21.855507567470696,14.710538642168489,15.300100345581608,0.5418668496911462,0.7569204152249135,0.6939300411522634,0.5853293413173652,0.1091954022988505,0.7140751658069271,0.9019607843137256,0.8640350877192983,0.7474048442906575,0.1450980392156863,0.4895996421382241,0.6921151439299124,0.6418010752688172,0.5405921680993314,0.1011433597185576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046333377267243,0.0070110289268357,0.0091912698170886,0.0116111190190536,0.0138751743304184,0.0159495322149976,0.0185519669370886,0.0207824585423669,0.0232784201371124,0.0255656201327977,0.0279890383964036,0.0299923913714038,0.0320806599450045,0.0343529169030793,0.0363970816195771,0.0383094567737661,0.0401032916433327,0.0424344464191064,0.0443736133245836,0.0588910812531972,0.0730252417430616,0.0869729389553178,0.099061961048248,0.1116570886276163,0.1266732928711908,0.1405056847106736,0.1538256947104132,0.1663035584604212,0.1774568766817826,0.1924211432877597,0.2064426103605309,0.2194085027726432,0.2317253140064933,0.2426472205723839,0.2538642101067363,0.2645483158106207,0.2746271342766517,0.2840025869991944,0.2933800542787454,0.3019413656662887,0.3095068156555315,0.3172882318826857,0.3241317257513046,0.3312512911497005,0.3372777414458991,0.343540058157024,0.349964943591051,0.3552955824751628,0.3607090454851885,0.362371780183046,0.3637415462596934,0.3644942869234024,0.3652195312613095,0.3659884413727359,0.3669576711444468,0.367268737876427,0.3671476101064005,0.367326987393877,0.3678529807261317,0.3690715831060107,0.3702969118784585,0.3709524711228933,0.3714304987183523,0.3722129421163483,0.3720308321535315,0.3729435368300373,0.3754120182555781,0.3760390506172403,0.3791140509120064,0.3805915311839808,0.3815726000964785,0.3812849162011173,0.3803999389406197,0.3786931818181818,0.3782816229116945,0.3791285470615599,0.3835103060587133,0.3859353023909986,0.3817753338570306,0.0,2.068884694509358,60.09813527584647,220.89982710240952,345.3785915336508,fqhc2_80Compliance_baseline,83 -100000,95677,40558,379.9241196943884,7476,77.00910354630685,5805,60.15029735464113,2374,24.467740418282343,77.28108161739658,79.66923834496492,63.29287913429015,65.05614582835153,76.991590977397,79.37749784436163,63.187238207798245,64.9524371306746,0.2894906399995847,291.7405006032965,0.1056409264919082,103.70869767693593,65.15058,45.632939636928185,68094.29643487986,47694.78520117498,195.28166,115.4216884420779,203573.0948921893,120104.78844662552,240.89346,114.08258526295178,248509.464134536,116785.5723070022,4240.06998,1884.9661205755085,4393871.432005603,1932356.272223742,1404.61766,606.732286734351,1452469.0678010387,618561.5826987014,2348.0902,971.2475349031944,2421715.3756911275,985477.4163156054,0.37894,100000,0,296139,3095.1952924945385,0,0.0,0,0.0,16071,167.42790848375262,0,0.0,22613,233.1908400137964,2182480,0,78400,0,0,2662,0,0,44,0.4494288073413672,0,0.0,0,0.0,0,0.0,0.07476,0.1972871694727397,0.3175494917067951,0.02374,0.3186255864080132,0.6813744135919868,25.619682585464584,4.573731737224625,0.3354005167958656,0.1927648578811369,0.2301464254952627,0.2416881998277347,11.010403356305142,5.36682919687776,25.437767471502227,13209.554427909665,65.60176135450274,13.041396738798666,22.26296782376642,14.954312310021969,15.343084481915692,0.5424633936261843,0.7613941018766756,0.7036466358500256,0.5815868263473054,0.1069137562366357,0.7013167013167013,0.916184971098266,0.8556910569105691,0.746875,0.1228070175438596,0.4899128839981659,0.6921086675291074,0.652233676975945,0.5295275590551181,0.1028622540250447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387681709973,0.0045012621782459,0.0070531881425251,0.0090317074905263,0.011349998982975,0.0137672599894098,0.0158145889838285,0.0179891370931514,0.0203220035778175,0.0222213123982845,0.0243922445171278,0.0263668566148159,0.028507080492395,0.0307145433001906,0.0331609747035328,0.0352065346637026,0.0373328361146503,0.0390363896788657,0.0411209703425533,0.0431737163584815,0.0577566031427616,0.0719468906084753,0.0851711505558063,0.0983039077460491,0.1101885359188884,0.1248228000761695,0.1386217438379721,0.1516177817538926,0.1631206432023264,0.174941482165482,0.1893005446799331,0.2031883304072653,0.216157347912265,0.2279018834866404,0.2385579868226791,0.250795763322797,0.2614308227062913,0.2712761763148705,0.2809978406637118,0.2898123508900715,0.2981689651176266,0.305737560804079,0.31461074008612,0.3217997236739352,0.3287197653045076,0.3350372894749839,0.3417811998394863,0.3475126631537313,0.3535408631056739,0.3593274195683834,0.3602059709964725,0.3622563847566955,0.3640393112042596,0.3649345555442567,0.3657008731013036,0.3653535306885881,0.3656069593982092,0.3664867006785873,0.3673125526537489,0.3681961798075542,0.3694795027071896,0.3698826909265023,0.3708707436896493,0.3716934207551435,0.3722343787989302,0.373320714041591,0.3751043075417949,0.3751588713777326,0.3767634267934802,0.3766337583436588,0.3783833379209101,0.3783234365805382,0.3821231179721746,0.3832951945080091,0.3865887013109497,0.3888235294117647,0.3901876345739772,0.3871555915721232,0.383415435139573,0.3782625633034671,0.0,1.9752201588336031,64.31555564382549,217.12126157442103,335.5145389442697,fqhc2_80Compliance_baseline,84 -100000,95726,40456,378.779015105614,7428,76.4264672084909,5772,59.7120949376345,2302,23.640390280592523,77.3612597271838,79.72853808383192,63.34108899169471,65.0899578762531,77.08132853374927,79.44838551037464,63.23858178578052,64.99037836827142,0.2799311934345354,280.1525734572863,0.1025072059141933,99.57950798167305,65.9681,46.20067640247108,68913.46133756764,48263.45653476703,196.4561,116.20323514147434,204564.9666757203,120728.95048521232,239.11827,113.0277853068632,246784.6248668073,115734.86264881684,4163.56637,1859.8452797976945,4310490.514593736,1904080.9981841156,1418.33952,606.3785517250018,1467820.0279965736,619672.7590960481,2264.31868,939.2123636329368,2327565.697929507,946899.1832797384,0.3793,100000,0,299855,3132.430060798529,0,0.0,0,0.0,16214,168.77337400497254,0,0.0,22507,232.08950546351045,2185050,0,78382,0,0,2618,0,0,40,0.4074128241021248,0,0.0,0,0.0,0,0.0,0.07428,0.1958344318481413,0.3099084544964997,0.02302,0.3066361556064073,0.6933638443935927,25.780959748984483,4.573422040974341,0.3359320859320859,0.1969854469854469,0.233021483021483,0.234060984060984,11.245604943990053,5.6807173815903,24.44697405552299,13212.965632683385,65.04263451267344,13.243006216823908,21.99434063598068,15.031201544686825,14.77408611518202,0.5504158004158004,0.7669305189094108,0.6900464156781846,0.5866171003717472,0.1317542561065877,0.7003460207612456,0.9243697478991596,0.855072463768116,0.6955223880597015,0.1333333333333333,0.5003466605038133,0.6948717948717948,0.6353021978021978,0.5504950495049505,0.1313598519888991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487616616525,0.0045725525184524,0.0069412027358892,0.0092247361095589,0.0115122546527,0.0138388220199181,0.0158668651724348,0.0180936335324449,0.0202746224707843,0.0222870597870597,0.024514779613054,0.0266112052585631,0.0288388357502828,0.0309151969671996,0.0328469413027326,0.0350367529231755,0.0370220786214324,0.0389153513277917,0.0409508755875379,0.0429500270912349,0.0573561658139292,0.0715212794908832,0.085218868993297,0.0977266513848289,0.1095535224925165,0.1251189242901541,0.138995524825553,0.1514922594030962,0.1634019737685307,0.175590357054807,0.1896148918531916,0.203052658907014,0.2164180727082971,0.2280105370161881,0.2385124439363292,0.2501383202390174,0.2606228188518101,0.2704685919766266,0.2804479912940963,0.2898152599409381,0.2981742076477458,0.3061632309633992,0.3135786696949265,0.3196776279548775,0.3269240100931677,0.3337845820616323,0.3402997387597965,0.3472973144885315,0.3520159618573797,0.3578787478536521,0.3593425838609727,0.3605206312516338,0.362332318791568,0.3634299104624419,0.3645899980656776,0.3652539383062598,0.3659008081128189,0.3669465485795034,0.3690500615510874,0.3698137512747571,0.3712020143181946,0.3723951608097102,0.3739394066993705,0.3759741280571338,0.376795125961027,0.3784145828955663,0.3810290313308422,0.382948298325336,0.3838111776588581,0.3841710457699868,0.3857451007389049,0.3899994669225438,0.3919772583701832,0.3941639294171568,0.3951977401129943,0.3981679752557697,0.4030972094449555,0.4017929910350448,0.4092957746478873,0.4128329297820823,0.0,2.267831109327766,63.99616482711157,211.9121848669796,334.8869804401382,fqhc2_80Compliance_baseline,85 -100000,95646,40515,379.1376534303578,7620,78.59189093114192,5927,61.34077745018087,2448,25.207536122786102,77.2430810454354,79.64769725440634,63.27207635196621,65.05018534379803,76.94700303796762,79.3497837179217,63.16389690372353,64.94370456757991,0.2960780074677842,297.9135364846428,0.1081794482426801,106.48077621812035,64.96776,45.54491209667667,67925.22426447524,47618.208912737246,195.2345,114.898591843546,203504.98714007903,119512.0254308032,240.71079,114.20155878773538,247355.2161094034,116157.90346231736,4308.09405,1922.4223050886023,4460742.216088492,1966469.8524649253,1427.64925,616.6931032204291,1476137.0052066997,628264.4890747439,2425.29586,1000.8610935925068,2498805.5956339,1016033.295675609,0.37984,100000,0,295308,3087.5101938397843,0,0.0,0,0.0,16100,167.67036781464986,0,0.0,22700,232.9841289755975,2183320,0,78353,0,0,2516,0,0,46,0.4809401334086109,0,0.0,1,0.0104552202914915,0,0.0,0.0762,0.2006107834877843,0.321259842519685,0.02448,0.3137965508622844,0.6862034491377156,25.855972273048717,4.624247983154475,0.3323772566222372,0.1945334908047916,0.2276024970474101,0.2454867555255609,11.15667375596034,5.512782294071618,26.09697418959082,13299.823756159823,66.75295652207383,13.332970154159128,22.373223273452645,14.969360792549924,16.077402301912148,0.5383836679601822,0.7762359063313097,0.7030456852791879,0.5678280207561156,0.0996563573883161,0.686556927297668,0.9090909090909092,0.8402366863905325,0.7226027397260274,0.1433224755700325,0.4900425151040501,0.717852684144819,0.6555023923444976,0.5250709555345316,0.087979094076655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001996513701962,0.0043109569310044,0.0066698476188542,0.0089007203893557,0.0110972099315451,0.0131880441977697,0.0154473617129747,0.0176441757882698,0.0198993782722513,0.0220677084400024,0.024017803119648,0.0260739188925516,0.0284659447341087,0.0305964767693417,0.0326892508412295,0.0347016854513494,0.0369395873042181,0.0390252003155228,0.0412103056968411,0.043389872916254,0.0582155993980939,0.071993463709973,0.086008861264515,0.0989632124625019,0.1114911586170493,0.1268354135569176,0.1411028607242635,0.1537223382936084,0.166654184809937,0.178125,0.191843780343079,0.2049708965173374,0.2176105423654977,0.2292319148470181,0.2405470635559131,0.2521106291394402,0.2632155635062612,0.2730049938563167,0.283188356359088,0.2918822193418139,0.2997553538094079,0.307851844908194,0.3161119802778173,0.3235763767994141,0.3311494574813985,0.3383010800523961,0.3447756510825227,0.350113013829828,0.3553558890073596,0.3610242273233314,0.3619424664567823,0.3628394328865083,0.3638318642916767,0.3656861606365061,0.3670700732108172,0.3677161111538757,0.3684260822476348,0.3689480815625103,0.3708280342350393,0.3715225952633566,0.3725538391726067,0.3737847603457569,0.3742523196584448,0.3754824729702277,0.3775274898657669,0.3776124129195694,0.3787677176742841,0.3799732637341651,0.3832005123096627,0.385464246735923,0.3862485481997677,0.3880209741067085,0.3855506495168618,0.3826241959234286,0.3820127241179872,0.3826055400991895,0.381967471972209,0.3852578826477344,0.386685552407932,0.3919399446858949,0.0,2.3904714864569274,64.45663265636588,217.73904333834463,348.4881925576108,fqhc2_80Compliance_baseline,86 -100000,95823,40408,377.8737881301984,7424,76.46389697671749,5751,59.49511077716206,2315,23.83561357920333,77.44904619750217,79.77577077728859,63.38601454967061,65.1069513800991,77.16339654196209,79.48850311427968,63.282475888206505,65.00513690019503,0.2856496555400838,287.2676630089046,0.1035386614641069,101.81447990407833,66.8316,46.77956773591711,69744.61246256118,48818.49632751754,196.20334,115.95972318710966,204234.2965676299,120492.79733165278,239.44843,113.01342206497812,246381.22371455704,115223.8182292822,4194.42189,1863.901300377506,4343283.741899126,1911173.9252345525,1425.00957,607.3966097211339,1474140.2481658892,620947.0134155413,2284.04418,939.4236668465016,2353640.3159992904,954428.4935454828,0.3783,100000,0,303780,3170.209657389145,0,0.0,0,0.0,16233,168.8738611815535,0,0.0,22505,231.55192385961615,2185132,0,78338,0,0,2695,0,0,41,0.407000407000407,0,0.0,0,0.0,0,0.0,0.07424,0.1962463653185302,0.3118265086206896,0.02315,0.3119020283199387,0.6880979716800613,25.670067995577764,4.616354603760432,0.325508607198748,0.1992696922274387,0.2378716744913928,0.2373500260824204,11.142300180944387,5.609626859355155,24.43924994824172,13190.851030750697,64.39631398985372,13.381582273269348,20.99644519165441,15.037727139325993,14.980559385603978,0.5468614154060163,0.774869109947644,0.6960470085470085,0.5767543859649122,0.1208791208791208,0.7044117647058824,0.9257142857142856,0.8793859649122807,0.7304964539007093,0.0992647058823529,0.4980642222728308,0.7085427135678392,0.6370056497175142,0.5368324125230203,0.1262580054894785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022887698368491,0.0047337637983639,0.006879547045752,0.0093152243475787,0.0116131262902061,0.0138881818089254,0.0159660695533374,0.0180038579695649,0.0201532958610117,0.022173107816353,0.0242352820617922,0.0263444170771757,0.0286389802631578,0.0305682251073337,0.0326938943894389,0.0349708146081925,0.0370113538744967,0.0390493768275232,0.0411627810331213,0.043015230223092,0.0576134692217018,0.0716503737780333,0.0852992653300774,0.0980542539555798,0.1103524577208787,0.1259590387419948,0.1397422035659013,0.1525659839639294,0.1657118472288899,0.1776378492412803,0.1914747187990623,0.2043969102792632,0.2165430838879178,0.2281293307580668,0.2389843904366726,0.2504476226264948,0.2608584283677833,0.2706691808651537,0.2796436535696902,0.2888952359191134,0.2982731554160125,0.3060981586501435,0.3139501947362209,0.3210861091848203,0.3280679848222187,0.3343334972946384,0.3400856204989952,0.3467478900945491,0.352906976744186,0.3579627728194192,0.3592326912226968,0.3600939483009642,0.3615364067091259,0.3624637492966281,0.3635770718764359,0.3633794641493294,0.3637425055222467,0.3651900599155289,0.3655778466569024,0.3666369789811186,0.3683649222594345,0.3687129885511251,0.3687332327297116,0.3699796160652286,0.3713074068719579,0.3723409801876955,0.3730861517367458,0.3739124952717185,0.3745236414961185,0.3755819968960165,0.3761215894524812,0.3771798438001498,0.3787263732081695,0.3802342494067213,0.3822213762253735,0.3824758266682583,0.387789799072643,0.3852004110996916,0.3812430632630411,0.3789272030651341,0.0,2.019425600607363,60.10103537458348,215.36541377026097,339.3509685535688,fqhc2_80Compliance_baseline,87 -100000,95817,41042,383.449700992517,7468,76.75047225440163,5766,59.70756755064342,2381,24.515482638780178,77.3497797498425,79.68340687763425,63.33168066437421,65.06012929424962,77.05793404364219,79.38902473283669,63.22413623666194,64.95426553368512,0.2918457062003057,294.3821447975665,0.1075444277122699,105.8637605645032,65.26036,45.73522835338266,68109.37516307128,47731.851710429946,194.25455,114.61666529772144,202257.33429349697,119142.76725186706,243.00194,115.10959988938907,250724.37041443583,117942.57917004668,4203.19654,1892.5794419489184,4353100.0344406525,1941610.3217058743,1454.2571,637.0919767020674,1503956.865691892,651128.1336673888,2364.84864,985.137746435354,2436259.724266049,1001138.0761242803,0.38385,100000,0,296638,3095.8806892305124,0,0.0,0,0.0,15992,166.40053435194173,0,0.0,22820,235.29227590093615,2185895,0,78464,0,0,2621,0,0,40,0.417462454470501,0,0.0,0,0.0,0,0.0,0.07468,0.194555164777908,0.3188269951794322,0.02381,0.3171443063657114,0.6828556936342887,25.583197881068763,4.567221847587395,0.3263961151578217,0.1954561220950399,0.2299687825182102,0.2481789802289282,11.217299525544586,5.601594881817161,25.267966738905468,13366.135878379568,65.08322485021512,13.216772758812304,21.186463648597694,14.824134918078736,15.855853524726369,0.5421436004162331,0.7533274179236912,0.6934112646121148,0.5987933634992458,0.1243885394828791,0.6950959488272921,0.9028571428571428,0.865934065934066,0.7152542372881356,0.1856677524429967,0.4927735719201652,0.685971685971686,0.6384022424667134,0.565470417070805,0.1076512455516014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0049175175154876,0.0071041467919702,0.0092554023712523,0.0114230495371783,0.0136551092103253,0.015742251223491,0.0175984810591754,0.0199924363993172,0.0223339031105743,0.0245922645590511,0.0269423880566365,0.0292847447867396,0.0312734911596008,0.0333398665167473,0.0354216394391229,0.0373491232065588,0.0397066603047496,0.0419246914093346,0.0440513498599643,0.0582988179570374,0.0719745689159373,0.0850051359453283,0.0981997414690025,0.1102889247277825,0.1255881824237874,0.1398385539868255,0.1529881326166782,0.1650698027152027,0.1773482500080447,0.1915343003081963,0.20514346946065,0.2181462140992167,0.2298231036669363,0.2412116144223046,0.2530641193288858,0.2636954192338601,0.2736394519561745,0.2835902208703153,0.2927181296463877,0.3020820072447834,0.3103089286340932,0.3186558242486654,0.3258723159509202,0.3330944427573641,0.3399011743250403,0.346423299221858,0.3522426433153446,0.3575962485102855,0.3632147764506923,0.3646124172163099,0.3663328090941699,0.3681772605951053,0.3692548746518105,0.3700690004619901,0.3702327010214269,0.3701727642276423,0.3718991928842036,0.3730567280963657,0.3735054396610535,0.3747103483355626,0.3763746644128468,0.378554277770757,0.3788825459612532,0.3797756069252345,0.3799779631670077,0.3805538038181505,0.3815507008460664,0.3832501581499964,0.3838343777266598,0.384720826098876,0.3870194867426259,0.3871336124857251,0.3873978096560234,0.3857034364913613,0.3905374806340126,0.3970929333539508,0.3961881589618816,0.3944702983848891,0.3950233281493001,0.0,1.7815877768520874,62.6001248080624,221.63732748531157,330.3166596820231,fqhc2_80Compliance_baseline,88 -100000,95808,40585,380.8032732130928,7466,76.85161990647963,5815,60.20374081496325,2404,24.757849031396123,77.41775944651599,79.74443257402939,63.37436231324406,65.09462606614548,77.13395656491494,79.4581351173891,63.27067441271778,64.99237416756098,0.2838028816010478,286.29745664028405,0.1036879005262818,102.25189858449824,66.10582,46.275580224118514,68998.22561790248,48300.330060243934,195.19608,115.28687009304824,203245.20916833667,119839.65826434626,241.15467,113.99994903970683,247987.0783233133,116281.46734022486,4218.73302,1877.835999724115,4370903.598864395,1927585.1279996196,1422.5037,617.5822288810602,1470986.1493820974,630877.775737311,2370.21036,976.3003139943346,2442920.612057448,993470.3497947808,0.37948,100000,0,300481,3136.2829826319303,0,0.0,0,0.0,16124,167.77304609218436,0,0.0,22641,232.68411823647293,2186047,0,78462,0,0,2684,0,0,41,0.41750167000668,0,0.0,0,0.0,0,0.0,0.07466,0.1967429113523769,0.3219930350924189,0.02404,0.3251143873919674,0.6748856126080326,25.433062641666428,4.630978340094076,0.327944969905417,0.1969045571797076,0.2359415305245056,0.2392089423903697,11.160559418916224,5.624591119127867,25.48111248738701,13216.251423311864,65.29904025216484,13.44648615140165,21.398874528886555,15.333795567620562,15.119884004256072,0.5425623387790198,0.7877729257641921,0.686418458311484,0.5801749271137027,0.1063982746225736,0.7051094890510949,0.9174041297935104,0.8497854077253219,0.7248322147651006,0.1610486891385767,0.4924634420697413,0.7332506203473945,0.6335877862595419,0.5400372439478585,0.0934163701067615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365141404833,0.0042978926135038,0.0066057168369676,0.0085515224147386,0.0110123647604327,0.0133046948165641,0.0153297319335439,0.0173920143708663,0.0194096363376193,0.0215130797887583,0.0236162361623616,0.0259192346383625,0.0280418983789562,0.0298141761466,0.0320880979140674,0.0342395009192505,0.0360044294037898,0.0380380691714356,0.0400889249020891,0.0420080580512841,0.0571461363494084,0.0716316801873379,0.0855276950815547,0.0982814403966553,0.1110397270084677,0.1263284666906125,0.1401288053725398,0.1527985967150374,0.1644439228405599,0.1761946077958803,0.190065491617288,0.2038587432077693,0.2159864499527702,0.2279347541269979,0.2388631944368154,0.2505946520041155,0.261397464628558,0.2716591595808013,0.2806063489905513,0.2892864496351033,0.298057478304078,0.3069162414320578,0.3144423051936547,0.3217098805334099,0.3289639770851539,0.3360307430809592,0.3422546127306365,0.3478631174840464,0.3536572744443582,0.3595076176920238,0.3608720210877401,0.3623990201340434,0.3636722327908124,0.3641816499971093,0.364728445904759,0.3658966537394423,0.3657269559708584,0.3669037567554248,0.3682817276655338,0.3697303286452097,0.3705504656052868,0.3718774703557312,0.3726452695615691,0.3748070599288638,0.3756968746229033,0.3766118274788795,0.3771265189421015,0.3780533989774663,0.3806456155173021,0.3820756593341023,0.3827504337503424,0.3840004263710494,0.3871233223600911,0.391208120277799,0.3897775674396592,0.3868883837779638,0.3863247863247863,0.3857754228652945,0.3868413868413868,0.3878576952822892,0.0,1.9134310624383024,60.70860110619921,227.03556841507304,333.6042617441379,fqhc2_80Compliance_baseline,89 -100000,95722,40688,381.7199807776687,7595,78.09072104636343,5878,60.83241052213703,2391,24.602494724305803,77.3893283971574,79.74958638113772,63.35181630130408,65.09332803484014,77.09762068103765,79.45813214324758,63.24529851099009,64.98972172814364,0.2917077161197454,291.4542378901359,0.1065177903139869,103.6063066965056,66.31042,46.438415782379,69273.9600091933,48513.83776183009,195.95355,115.63956409054022,204106.7466204216,120203.37444948938,239.67993,113.9856974400266,246729.5501556591,116263.31184634636,4259.88096,1902.264887701217,4411004.826476672,1948022.364452494,1438.19731,624.3693261766808,1486956.519922275,636757.0006651349,2357.03656,972.9360014755124,2427055.180627233,985562.7194075875,0.38192,100000,0,301411,3148.8163640542407,0,0.0,0,0.0,16157,168.17450533837572,0,0.0,22580,232.3185892480308,2182372,0,78265,0,0,2537,0,0,43,0.438770606548129,0,0.0,0,0.0,0,0.0,0.07595,0.1988636363636363,0.3148123765635286,0.02391,0.3134216445888528,0.6865783554111472,25.52743108233723,4.569427179845039,0.3223885675399796,0.2014290575025518,0.2397073834637632,0.2364749914937053,11.104986131144727,5.53343851813811,25.311250379801574,13285.922990774416,65.86540859881305,13.648734886041842,21.476119306384515,15.471115041879989,15.269439364506722,0.5381082000680504,0.754222972972973,0.6891820580474934,0.57416607523066,0.1115107913669064,0.724233983286908,0.9454022988505748,0.8701825557809331,0.7724358974358975,0.1448763250883392,0.4779378658262044,0.6746411483253588,0.6255349500713266,0.5177757520510483,0.1029810298102981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0047128219161421,0.0071411906718196,0.0090980169166252,0.0112642836810215,0.0134356615027583,0.0155816892222403,0.0177853513193608,0.0199250002554487,0.0221633292062744,0.0241828056153294,0.0264291870152255,0.0288837969194726,0.0310547498224413,0.0331150415098231,0.0348668981481481,0.0367636401283776,0.0386490467398294,0.0405895620900766,0.042482706892241,0.0576939142057558,0.0719300999319834,0.085219525497682,0.0982556855818061,0.1104727771043061,0.1262875150694782,0.1405176071277047,0.1530748022695096,0.1658761697218305,0.1775030557759526,0.1920186074559042,0.205202530961008,0.2174087924511893,0.2290953625438759,0.2401302759561639,0.251290687110855,0.2614311230185309,0.2719408760602038,0.2813354668119248,0.2905066336701725,0.2998692901181016,0.308764544232006,0.3163889250274982,0.3235103859699562,0.3308190309611437,0.3374605755962941,0.3433826199091057,0.3499707297207869,0.356112543901712,0.3613102546837248,0.3627245065568031,0.3637840367831282,0.3650596981302095,0.3658353104565708,0.3671582327406791,0.3680993811653698,0.3684643625775414,0.369249196035965,0.3705949676295246,0.3715689778413152,0.3736752265010973,0.3747748461036004,0.375154966275136,0.3751458314636992,0.3760747753840208,0.3771231768727007,0.37857836695046,0.3801517584458928,0.3813875026358332,0.3829981718464351,0.3832472223492296,0.3838794163236945,0.384258965407807,0.3839743099625353,0.3791240045506257,0.3811685983988529,0.3795597968293058,0.3768854463921728,0.373197625106022,0.3769778481012658,0.0,2.239025182687615,63.42432420754211,219.86473965259287,338.1321897868452,fqhc2_80Compliance_baseline,90 -100000,95665,40757,382.647781320232,7496,77.03966968065646,5904,61.05681283646056,2405,24.617153608947888,77.35982293729873,79.73511514658739,63.33991942654043,65.08955731400319,77.06052762385464,79.43818786942171,63.22902308938337,64.98292716965946,0.299295313444091,296.927277165679,0.1108963371570652,106.63014434372542,65.80332,46.0681397852828,68784.92656666492,48155.47901241082,197.37127,116.46039704346,205660.7118590916,121084.2455084932,240.11239,113.77022113147436,247276.68426279203,115927.08771144557,4249.58511,1908.646668843056,4396734.291538181,1949821.6429102449,1432.89064,627.0758806071684,1478425.72518685,636190.3762519136,2368.15264,994.865494173982,2427428.98656771,999495.971607477,0.38155,100000,0,299106,3126.587571212042,0,0.0,0,0.0,16321,169.9053990487639,0,0.0,22587,232.3733862959285,2183136,0,78307,0,0,2646,0,0,39,0.4076726075367166,0,0.0,1,0.0104531437829927,0,0.0,0.07496,0.1964618005503866,0.320837780149413,0.02405,0.3039402001773723,0.6960597998226277,25.27869935652848,4.677047776338057,0.3348577235772357,0.1944444444444444,0.2381436314363143,0.2325542005420054,11.356846018492329,5.680357155366284,25.68877264311661,13259.769506653787,66.3515696597133,13.28945785021514,22.02136617221033,15.772329215483142,15.268416421804693,0.5497967479674797,0.7796167247386759,0.6939807789580172,0.5761024182076814,0.123088128186453,0.6940836940836941,0.917933130699088,0.8631346578366446,0.7184466019417476,0.159322033898305,0.5055334218680833,0.724053724053724,0.6437007874015748,0.536007292616226,0.1131725417439703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392878843115,0.0049766371717294,0.0071120580327702,0.0092015193678779,0.0115300146412884,0.0137208000407145,0.0157837353141972,0.0180386075174468,0.0202455617070828,0.0222706440788935,0.0247198147806667,0.0264272890484739,0.0286656936707299,0.0306733937397034,0.032512609982774,0.034562235796306,0.0365343603122347,0.0384595438374493,0.0404424760360135,0.0423866597186034,0.0571900204772451,0.0713186249358645,0.0848596168984518,0.0975263307414694,0.1097985444573357,0.1249761919878102,0.1395287124509075,0.1526138639171743,0.1652733531461803,0.1765255192400579,0.1895657984071731,0.202454054171134,0.2151331112997671,0.2266239026205749,0.2389149540738782,0.2509251667516121,0.2623893360722539,0.2722457150569076,0.2823233068203737,0.2918150688853514,0.2999282523665146,0.3083612274993563,0.3157227938477568,0.3230326640695235,0.3298117789921068,0.3365450961064564,0.3422873371951906,0.3486735797442585,0.3543269355298262,0.3593696335631819,0.3615668525552951,0.362961432506887,0.3644664606178641,0.3652883474637576,0.3664797656052471,0.3675013041210224,0.3679748523528291,0.3692016148965972,0.3706806282722513,0.3725553522087056,0.3737151248164464,0.374726803099543,0.3754398533470996,0.3760178145665572,0.3776482538454097,0.3784994107633888,0.3788446682498355,0.3800221273905484,0.3819796954314721,0.3816336317135549,0.3834151714010371,0.3849372384937238,0.3883464164911609,0.3891549513363201,0.3917270301181852,0.3915407854984894,0.3953848536472046,0.3927183473102884,0.3921139101861993,0.3895348837209302,0.0,2.459165031834183,60.85612673559246,231.09636684567093,339.6599579815073,fqhc2_80Compliance_baseline,91 -100000,95850,40589,380.114762649974,7497,76.99530516431925,5767,59.55138236828378,2402,24.621804903495047,77.34109898624328,79.63027270655083,63.34986309044478,65.04348116953477,77.05095419761034,79.34063495488088,63.2440879903011,64.94039187265206,0.2901447886329436,289.6377516699431,0.1057751001436813,103.08929688271462,65.40402,45.7803224029686,68235.80594679185,47762.46468749984,192.97079,113.78087636629654,200657.84037558685,118039.255468228,235.17268,111.65588549080236,241062.96296296292,113310.7954418614,4210.93937,1865.605083251609,4354166.071987481,1907498.58903932,1422.59197,611.6339363371245,1469592.676056338,623604.0129845279,2368.70912,973.740588221038,2431850.808555034,984926.7740127624,0.38011,100000,0,297291,3101.6275430359938,0,0.0,0,0.0,15946,165.717266562337,0,0.0,22079,226.1032863849765,2187630,0,78603,0,0,2525,0,0,39,0.386019822639541,0,0.0,0,0.0,0,0.0,0.07497,0.1972323801004972,0.3203948245965052,0.02402,0.3256462240243284,0.6743537759756716,25.529285860570877,4.657321142949107,0.3363967400728281,0.1916074215363273,0.2249002947806485,0.2470955436101959,11.194416807545773,5.575302103014875,25.44865505185393,13253.531693468702,64.80518338747079,12.915451129295356,21.86154767425148,14.403865378786852,15.624319205137107,0.5302583665684064,0.755656108597285,0.6701030927835051,0.5774865073245952,0.1221052631578947,0.7046289493019838,0.9269005847953216,0.859538784067086,0.6981818181818182,0.149812734082397,0.476395823876532,0.6788990825688074,0.608339029391661,0.5450097847358122,0.1157167530224525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026023998784871,0.0044583599315033,0.0066538863362038,0.0089345543890998,0.0110889760738316,0.0133110803549621,0.0154853958454312,0.0175363427697016,0.019661716340163,0.0218500976912139,0.0241019390127731,0.0262456154745543,0.0283991701074341,0.030505998312653,0.0326436402604896,0.0348646389166984,0.0367486635439608,0.0387803311299446,0.040789842509058,0.0426762658787544,0.0572784150156412,0.0707208996091382,0.0844148362295614,0.0970279353077084,0.108916104166886,0.1246078938752231,0.1383836350731485,0.1517036092063998,0.1643778610070745,0.1757298409568311,0.1901425881086898,0.2030712663566562,0.2156344780354172,0.227542030126145,0.2391928616224185,0.2507395876037361,0.261647305636459,0.2725534093082383,0.2826582838725785,0.2919110235498946,0.3009637968737345,0.3092129889575145,0.3168171544205531,0.3242676319700819,0.3315429390820381,0.3378813486140067,0.3430686187333275,0.3494531240052459,0.3552144060111413,0.3602056731963941,0.3612013972244325,0.3625087857113325,0.3638700201946025,0.3656604923050144,0.3666840731070496,0.3665129151291513,0.3665426681928017,0.3676783680744665,0.3678637834859858,0.3695742265626408,0.3714210068459472,0.3726839386505515,0.37394708994709,0.375746876697447,0.376157745929609,0.3786361594758117,0.3785225994404222,0.3800204003570062,0.3817878916773004,0.384374749338253,0.3850294442399705,0.3876784372652141,0.3874705545298275,0.3862990553720912,0.3882251744241613,0.389920424403183,0.3868101028999064,0.3895837605085093,0.3894150417827298,0.3976653696498054,0.0,2.387106718526422,59.93624177034647,218.50441708704903,339.74812603328843,fqhc2_80Compliance_baseline,92 -100000,95630,40561,380.0271881208826,7511,77.28746209348532,5792,59.84523685036077,2383,24.427480916030536,77.31769350596971,79.74036674467656,63.289715480586615,65.08152991755651,77.02139753757808,79.44580081627615,63.181553480724936,64.97734781865353,0.2962959683916324,294.5659284004165,0.1081619998616787,104.18209890298158,65.7459,45.95770799884468,68750.28756666317,48057.835406090846,193.3747,113.7203801165046,201515.7377392032,118221.45782338658,231.31114,109.13023053592866,237826.6757293736,110954.261600104,4208.08678,1871.8054723831708,4349029.467740249,1906020.3136914885,1412.96044,605.7449754192277,1457817.7350203912,613737.0025982704,2353.12188,977.1375326866894,2413779.1069747987,980956.9071560327,0.3809,100000,0,298845,3125.013071211963,0,0.0,0,0.0,16035,166.94551918853918,0,0.0,21842,224.33336818989855,2184414,0,78349,0,0,2553,0,0,27,0.2718812088256823,0,0.0,0,0.0,0,0.0,0.07511,0.1971908637437647,0.3172680069231793,0.02383,0.3113159888860823,0.6886840111139176,25.714557942273466,4.5995190573115385,0.3228591160220994,0.2007941988950276,0.235842541436464,0.2405041436464088,11.007429821929572,5.389567962891031,25.313155793171585,13291.122387117555,64.96133828316894,13.456695440342706,20.945037902635107,15.212658930994458,15.346946009196676,0.5429903314917127,0.7592433361994841,0.7032085561497327,0.5710102489019033,0.1198851399856425,0.695814648729447,0.9425981873111784,0.851063829787234,0.7302631578947368,0.1321428571428571,0.4970812752581949,0.6862980769230769,0.6599861782999309,0.5254237288135594,0.1168014375561545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185752492098,0.0044720723644181,0.0067106598984771,0.0088110651531011,0.0112222369184124,0.0134270578647106,0.0154550833452349,0.0179609517874109,0.0202429564131691,0.0224481846696324,0.0247192395343585,0.0267749730090997,0.0291837007898341,0.031081081081081,0.0334452652787105,0.0354733225712984,0.0375439360477775,0.0394191517871054,0.0413041668401115,0.0433299962457765,0.057646886691888,0.0714854556123732,0.0846708121507499,0.0973215508252319,0.1094084971116579,0.1249708729637553,0.1382780865739215,0.1508629419979319,0.1643630450596944,0.1761154912028185,0.1906046060083059,0.2051576552172499,0.2174164034418908,0.229068328423266,0.2408746252865455,0.2518219431842131,0.2628731739485185,0.2730795224149583,0.2828866681807858,0.292105082181418,0.300590756399861,0.3092737639469402,0.3178306514681138,0.3248796764165776,0.3311591116519622,0.3378033284397784,0.3439214409178586,0.3496994243211574,0.3558383272368796,0.3611904761904762,0.3625332379499777,0.36415770609319,0.364814501101135,0.366031235977825,0.3670867242944073,0.3676368942477536,0.367160811605256,0.3683526178053558,0.3691240688415104,0.3711778687206247,0.3733360830927293,0.3737225988812239,0.3747334977634714,0.3749385639605022,0.3765087761481125,0.3772772354752832,0.3771576935147935,0.3784957060618453,0.3806844159954982,0.3823599713170265,0.3841278589143014,0.3851923282974392,0.3859905840437714,0.3868142000922084,0.3902044698050404,0.3906380940979289,0.3882170542635659,0.392726533929297,0.3924507354981959,0.3930232558139535,0.0,2.766805086628015,58.534126485590825,222.7417762608696,340.448149318452,fqhc2_80Compliance_baseline,93 -100000,95724,40826,383.12230997451,7555,77.81747524131879,5853,60.7057791149555,2374,24.487066984246376,77.34880342590687,79.70642937097622,63.338894218876014,65.07712700969611,77.05773855481361,79.4119485685217,63.23197771236289,64.9711054196603,0.2910648710932548,294.4808024545296,0.106916506513123,106.0215900358088,64.06202,44.90383271498517,66923.67640299193,46909.691106708,194.44233,114.43162248107848,202708.02515565584,119123.23187610052,239.22576,113.5992029378793,247157.01391500563,116578.39307019468,4254.85526,1893.9773727100803,4414266.965442314,1947928.4429297573,1427.43078,621.4500978741536,1475811.6564288998,633827.7421275275,2343.37324,977.798911199719,2418899.2520162133,997017.469009554,0.38244,100000,0,291191,3041.985291045088,0,0.0,0,0.0,15999,166.68756006853036,0,0.0,22483,232.11524800468013,2192936,0,78672,0,0,2571,0,0,38,0.3969746354101374,0,0.0,0,0.0,0,0.0,0.07555,0.1975473276853885,0.314228987425546,0.02374,0.3201902616097133,0.6798097383902867,25.76007276152197,4.502799706655312,0.3256449683922774,0.2005808986844353,0.2357765248590466,0.2379976080642405,10.82167518873703,5.375155429005855,25.38538869422787,13347.710249283577,65.503362437732,13.458614557528408,21.354788446875933,15.358966391177212,15.330993042150448,0.5373312831026824,0.7657580919931857,0.6899265477439664,0.5659420289855073,0.1076812634601579,0.6878571428571428,0.905775075987842,0.8509719222462203,0.7178683385579937,0.1453287197231834,0.4900067370312149,0.7112426035502959,0.6382536382536382,0.5202639019792649,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0043891659571017,0.0065851554969306,0.0087363748107965,0.0109301285179762,0.0133760879523591,0.0154830949881252,0.0178319893845054,0.0198967860610086,0.0218924312982958,0.02393251747535,0.0261202454995176,0.0281396185678301,0.0304016142814491,0.0324417441176774,0.0343566269541946,0.0364361151377096,0.0384623365843536,0.0402794817941733,0.0424172961708778,0.0571637426900584,0.0710607836570663,0.084330018045239,0.0975160703201439,0.1101313221876483,0.125944104766539,0.140117994100295,0.1535128344352529,0.1652261242107287,0.1770669069610272,0.1914744632488392,0.2053454525780446,0.2183125401089876,0.2306505950297515,0.2419890840265856,0.253443709343174,0.2646220881514999,0.2745073752955748,0.2843159520348837,0.2943441195343294,0.3033334491182975,0.3117971282459363,0.3197029984368338,0.3272794840442111,0.3335884911666788,0.3403263977911449,0.3466926848794155,0.3524023966721368,0.3578714370776917,0.3623046875,0.36399902962344,0.365175815696649,0.3669705351095055,0.3674140378320442,0.3683724394785847,0.3683475324276614,0.3686750047616024,0.3698774368676483,0.371006697613868,0.3722784696711764,0.3728377439287794,0.3742026229248385,0.3750656885207996,0.376921002965759,0.3768736099023305,0.3783741286230934,0.3782821028440103,0.3812060110329085,0.3830020513546014,0.3850712798334134,0.3882542607093505,0.3895486935866983,0.3926987595603831,0.3939723473667857,0.394994246260069,0.3986690865093769,0.4039880672005024,0.399375,0.405793025871766,0.4078431372549019,0.0,1.6982448316873031,62.35753720195957,216.8718716491369,344.5242012981623,fqhc2_80Compliance_baseline,94 -100000,95631,40532,380.8493061873242,7431,76.64878543568508,5872,60.754357896498,2405,24.720017567525176,77.26744378178137,79.68268850346526,63.28338998351626,65.06934643134906,76.97596832052417,79.38978143926185,63.17831666210591,64.96601728820102,0.2914754612571926,292.90706420340484,0.1050733214103516,103.32914314804498,65.92696,46.14784387743842,68938.90056571613,48256.15530260942,195.9328,115.36825742313668,204216.85436730765,119971.63830048488,239.45469,113.06868015324008,245663.93742614845,114628.15698167648,4245.00188,1881.495835749936,4395938.534575609,1924749.7139122607,1438.88627,614.3119502787947,1484967.7928705127,622796.9362799753,2370.19456,971.9578320703364,2438923.8217732743,985782.2432245086,0.37941,100000,0,299668,3133.586389350733,0,0.0,0,0.0,16165,168.3554495927053,0,0.0,22509,230.68879338289884,2181084,0,78254,0,0,2602,0,0,38,0.3973606884796771,0,0.0,0,0.0,0,0.0,0.07431,0.1958567249149996,0.3236441932445162,0.02405,0.3195115746629356,0.6804884253370643,25.401573913438625,4.5988688798419615,0.3276566757493188,0.2035081743869209,0.2341621253405994,0.2346730245231607,11.246454142378376,5.664449616398957,25.57383810196672,13209.721791475273,66.01685605922714,13.920264673526844,21.586722024927298,15.349369720749628,15.160499640023378,0.5291212534059946,0.7456066945606694,0.6632016632016632,0.5687272727272727,0.1146589259796806,0.681422351233672,0.8950437317784257,0.8211920529801324,0.7198697068403909,0.1418181818181818,0.4824210057854917,0.6854460093896714,0.6145479265805575,0.5252808988764045,0.1078875793291024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0047759075238288,0.0068632228719948,0.0091049508170067,0.0114955391204386,0.0134945207153623,0.0156412504843281,0.017774556146566,0.0198672788065317,0.0219659808911327,0.0240295369468232,0.0263384969388174,0.0281766932762735,0.0300357543971726,0.0319980181872606,0.03429203539823,0.0363016819951943,0.0382998598785614,0.0401922236784622,0.0421292965940011,0.0571121027495323,0.0711839555951196,0.0844980206441044,0.0969644004085371,0.1091406192270745,0.1248464698657405,0.139118983900429,0.1523511172202154,0.1647005978417804,0.1756665342367203,0.1898148647337265,0.2031473378676948,0.2159638718102181,0.2274850921822857,0.2390775496725191,0.2505843386173053,0.2606720757117507,0.271307537383125,0.2812908060725113,0.2905389139182171,0.2992356687898089,0.3079623648363994,0.3157651629102365,0.3237203720372037,0.3293915836344392,0.3359018053394581,0.3426824071985362,0.3486209312695076,0.3545537104307213,0.359890437060855,0.3611741503214999,0.3622714413854964,0.3630928825823958,0.3645369497425484,0.3652634721600238,0.36460961053344,0.3649470099614907,0.3663403862632654,0.3665139739564568,0.3672539380673867,0.3676512167078204,0.3690378904147814,0.3695670538542767,0.3706380296276284,0.3720563626221715,0.3727014068180621,0.3728213977566868,0.37373352390027,0.3747069271758437,0.3757251047373509,0.379041248606466,0.3817648337317974,0.3851612903225806,0.3875419037966788,0.3883336536613492,0.3943747717033971,0.401538944723618,0.3998328807186129,0.4090121317157712,0.419446704637917,0.0,2.438060508996404,60.81680032184362,222.0157943549304,347.95094835789416,fqhc2_80Compliance_baseline,95 -100000,95827,40388,377.0127417116262,7522,77.19118828722594,5822,60.05614284074426,2349,24.095505442098784,77.40182060844235,79.71604008953793,63.36325590393732,65.07598533164416,77.11657466976085,79.43123613162793,63.25784715322092,64.97371535465663,0.2852459386814985,284.80395791000035,0.1054087507163998,102.26997698752882,65.72874,46.02321697127862,68591.04427770879,48027.40038953387,196.2129,116.1496858710758,204074.81190061252,120526.32769421862,239.65068,113.81089582004088,245453.5360597744,115310.10888303042,4197.73422,1876.848172700388,4332137.988249659,1910624.502755128,1395.70137,607.3647842300948,1440483.5067360974,617936.1139573149,2318.36672,964.407915094758,2379410.5001721857,970889.4928259857,0.37812,100000,0,298767,3117.774739895854,0,0.0,0,0.0,16275,169.11726340175525,0,0.0,22603,231.2605006939589,2185509,0,78462,0,0,2601,0,0,26,0.2713222786897221,0,0.0,0,0.0,0,0.0,0.07522,0.1989315561197503,0.3122839670300452,0.02349,0.3170086868941206,0.6829913131058793,25.526425600001858,4.622019014428132,0.3375128821710752,0.1932325661284782,0.2311920302301614,0.2380625214702851,11.183842991071051,5.605689259348882,24.757963304804296,13177.03708726765,65.18448439513455,13.056240671614592,22.07915414051375,14.926168798946104,15.122920784060094,0.5352112676056338,0.7511111111111111,0.6788804071246819,0.5780089153046062,0.1147186147186147,0.7117310443490701,0.9403409090909092,0.8739316239316239,0.7250859106529209,0.1533101045296167,0.4794303797468354,0.6649417852522639,0.6179024716098864,0.5374407582938389,0.1046405823475887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681706798436,0.0043985446290121,0.0067463377023901,0.0090496358816539,0.0114272933378066,0.0139256484384543,0.0159200937675177,0.0181669728516023,0.0203814624772573,0.0223943993531416,0.0248167700271641,0.0268505973642074,0.0290275165232764,0.0310225178382051,0.0331590292603937,0.0352755189551668,0.0373882080158993,0.0393193766136809,0.0413377648525135,0.0436063151102646,0.0580627666120839,0.0718848337218905,0.0851681460444546,0.0977938859123857,0.1097196182932737,0.1252006929187088,0.1393941962346509,0.1520151387899599,0.1639963708170998,0.1762537900296774,0.1899178105770472,0.203147121443007,0.2157968510610555,0.2279716305856382,0.238437685557828,0.2489120203753945,0.2598253031536908,0.2701128094386521,0.2793486894360603,0.2888430934798786,0.2969561646054351,0.3046401758776341,0.3126434334114084,0.3202123961691978,0.3275218991847793,0.3341098169717138,0.3403541705775608,0.3468886740612598,0.3529305143774518,0.3579137639856449,0.3598298193176616,0.3608648975996476,0.3611169785813865,0.362171294892345,0.3627669369449642,0.3629007539998774,0.3631611462243976,0.3652485180867309,0.3653326492218232,0.3663408794468168,0.3672918229557389,0.3677335075114304,0.3683304647160069,0.36902893025342,0.3703953550003613,0.3718153074289895,0.3737039047102173,0.3764002517306482,0.3790785259230579,0.3803715219644423,0.3807255404910223,0.3832700433224582,0.3858073493137689,0.3885496183206107,0.3886136299897167,0.3886328725038402,0.3839080459770115,0.3822929416564667,0.3805723720418272,0.3826354206684594,0.0,2.680375037675536,61.21772707278873,216.8046243674033,340.4447075600523,fqhc2_80Compliance_baseline,96 -100000,95708,40694,381.2220504033101,7438,76.56622225937225,5765,59.77556735069169,2333,24.010532034939608,77.32145341825886,79.7085207473738,63.3143933609397,65.08006520427811,77.03506447654881,79.4206522726508,63.20907105149561,64.97670483386618,0.2863889417100438,287.86847472299826,0.1053223094440838,103.36037041193435,65.33318,45.766974912968,68263.02921385881,47819.38282376395,194.64553,115.36814212436738,202935.16738412672,120104.75628026234,240.31936,113.38462276946828,248667.3005391399,116551.91971920789,4178.4227,1868.4161669420528,4334182.06419526,1920757.7064788917,1418.23599,618.3578597884402,1469352.7500313453,633662.867106126,2295.99898,956.260193268772,2365361.223722155,971016.623273892,0.38068,100000,0,296969,3102.86496426631,0,0.0,0,0.0,16073,167.46771429765536,0,0.0,22537,232.98992769674427,2185880,0,78387,0,0,2542,0,0,48,0.5015254733146655,0,0.0,0,0.0,0,0.0,0.07438,0.1953872018493222,0.3136595859101909,0.02333,0.3136503067484663,0.6863496932515337,25.53874099888512,4.645347715505569,0.3252385082393755,0.201561144839549,0.2398959236773634,0.233304423243712,11.187279966633657,5.566297862771838,24.76399331707553,13244.01034867312,65.02741628226626,13.593825833495654,21.19363403019385,15.357637087436864,14.882319331139865,0.540156114483955,0.7512908777969018,0.6874666666666667,0.5755603759942155,0.1159851301115241,0.6890934844192634,0.9112426035502958,0.8482905982905983,0.7272727272727273,0.1476510067114094,0.4918447048012864,0.6856796116504854,0.6339729921819474,0.532093023255814,0.1069723018147087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0044417401886218,0.0065778788370959,0.0088007235698824,0.0111509034673612,0.0134463368918588,0.0156745566354263,0.0177557688380641,0.0196894263895562,0.0219972567404344,0.0241236838597894,0.0260014992965629,0.028227258232093,0.030109742902777,0.0321122224630724,0.0342538694568802,0.0365126059124526,0.0387836645737117,0.0412251052987364,0.0431479223337398,0.0578232713599331,0.0719781427629306,0.0851577422808085,0.0979626628501673,0.1094124225830616,0.1254842192163586,0.1395289597418725,0.1521060759358858,0.1645595323337358,0.1760945577793508,0.1902889401219538,0.2030681621340724,0.2156384957629423,0.2271772428884026,0.2380370798261539,0.2494600551574423,0.2607599174245383,0.2704568710573365,0.2808217624103821,0.2903273843616119,0.2991948358436871,0.3075051753780657,0.3155881830560653,0.3232363204662373,0.3301604668125455,0.3371410967344423,0.3435621995192308,0.3500298985992188,0.3557709730023555,0.3607922307550207,0.3622413235611123,0.3630083258790339,0.3646344213315294,0.3647632271688507,0.3664403953793021,0.3661963180764329,0.3668497238270586,0.3683569712724999,0.3700419412822049,0.371635166093929,0.3724805109420494,0.3732121957509274,0.3739536448912632,0.3747216912178117,0.3757296839045658,0.3765061825835306,0.378111315971422,0.3788220352436894,0.3818110961524835,0.3840115347644985,0.3844670004133559,0.387854991394148,0.3906320179659929,0.389433551198257,0.3893627216099664,0.3869285800897296,0.387374686716792,0.3874922086017037,0.3872686483454851,0.3771004298554122,0.0,1.7905750162808594,63.08094879211952,216.73079722745757,334.2462141625452,fqhc2_80Compliance_baseline,97 -100000,95716,40809,384.16774624932094,7515,77.37473358686114,5813,60.26160725479544,2363,24.384637887082626,77.3455376358958,79.73036670252797,63.32130932583449,65.08642594697312,77.06020994129557,79.44431884590205,63.21668112362458,64.98421558434632,0.2853276946002268,286.04785662592747,0.1046282022099092,102.21036262680629,65.98394,46.21781575320702,68937.21007981946,48286.40535877703,194.99722,114.9848487336488,203265.72359898032,119672.20604042042,239.30953,113.31359970204808,247194.65920013376,116300.53593973372,4195.30411,1868.5904952229853,4350017.854904091,1919166.5711302029,1364.45497,588.3362795514046,1416883.2379121569,606044.0233664772,2326.87924,963.2330497706548,2402667.391031802,981033.5904435688,0.38143,100000,0,299927,3133.5095490827034,0,0.0,0,0.0,16142,168.1641522838397,0,0.0,22459,231.8107735383844,2185184,0,78283,0,0,2552,0,0,32,0.3343223703456057,0,0.0,0,0.0,0,0.0,0.07515,0.1970217340009962,0.3144377910844976,0.02363,0.3155499367888748,0.6844500632111251,25.472617901732093,4.581756134729534,0.3409599174264579,0.1909513160158266,0.2386031309134698,0.2294856356442456,10.984192425210509,5.397373918156858,25.090584873457992,13237.484106467226,65.24602657592894,13.03042076025996,22.075024601431984,15.562514718904966,14.578066495332038,0.5408567004988818,0.781981981981982,0.6765893037336024,0.5753424657534246,0.1026986506746626,0.6940836940836941,0.90633608815427,0.8451025056947609,0.7133956386292835,0.1254752851711026,0.4928845719448836,0.7215528781793842,0.6286454957874271,0.5337711069418386,0.0971055088702147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492629104651,0.0044424159440133,0.0063150413726585,0.0084249679871542,0.0109058354358264,0.0129659808514972,0.014949725683751,0.017176761332884,0.0192347022251308,0.021085293545381,0.0231580242861831,0.0254519309778142,0.027330892034233,0.0294093400931536,0.0313009556440793,0.0334660118893771,0.0353864959496136,0.0374994810478681,0.0393215191979699,0.0411691153485464,0.0561793058790353,0.0702376840717134,0.0835616007052674,0.0964595717817875,0.1090203358366382,0.1248188693214871,0.1388885941363101,0.1518143379024613,0.164952751528627,0.1764971072206777,0.1909520113827447,0.2042454107326582,0.2170287804240867,0.2281784459836523,0.2392484066617499,0.2511994858554855,0.2619924551887319,0.2720695785233691,0.2818973928433664,0.2907077923564837,0.2995013132470177,0.3079459358338789,0.3164661769750304,0.3243243243243243,0.3307808062911094,0.337403828399089,0.3444688937787557,0.3500711526733076,0.3561385370896872,0.3616710334022356,0.3632062792322993,0.3651913678545934,0.3668983761573748,0.3685813688267818,0.3694026528977121,0.3698445722677763,0.3695228436048999,0.3703331631560745,0.370938999314599,0.3709347771522822,0.3715878906617938,0.3731298742638866,0.3728620536938229,0.3734796195957643,0.3748396931787935,0.3750754612981968,0.3764044943820224,0.3754704449856099,0.3757421543681086,0.3753502521815707,0.3767252051905176,0.3779691846779371,0.3770346443726645,0.3766184018999464,0.3773513205396162,0.3777052351589892,0.3752333540759178,0.3788473455897542,0.374965460071843,0.3715846994535519,0.0,1.7742232462620962,61.7371292950432,220.9970956969049,337.4343396311743,fqhc2_80Compliance_baseline,98 -100000,95605,40649,380.4926520579468,7488,77.21353485696355,5833,60.38387113644684,2375,24.43386852152084,77.23812690061078,79.66900482527225,63.25655152000609,65.05402804301131,76.9422864889907,79.37318065724081,63.14820758291242,64.94886713229452,0.2958404116200768,295.8241680314444,0.1083439370936716,105.16091071679055,66.12826,46.334813979782055,69168.20249986925,48464.84386777057,196.53566,115.54324748317627,204953.0568484912,120237.3908092425,238.43873,112.52436987442154,245732.3152554783,114881.27376615522,4247.29045,1889.1546037707903,4400247.748548716,1933707.456483229,1465.47578,632.3707276017492,1519220.8984885728,647817.6743912444,2337.2141,970.1643638995392,2406502.588776737,980905.0900505658,0.38059,100000,0,300583,3144.0092045395118,0,0.0,0,0.0,16245,169.26938967627214,0,0.0,22369,230.2285445321897,2176624,0,78167,0,0,2611,0,0,39,0.4079284556247058,0,0.0,1,0.010459703990377,0,0.0,0.07488,0.1967471557318899,0.3171741452991453,0.02375,0.3095358863809282,0.6904641136190718,25.533840930477872,4.624228585199401,0.3312189267958169,0.188067889593691,0.2442996742671009,0.236413509343391,11.070776788793168,5.646624234760308,25.26804277765108,13293.12252726152,65.57107657411227,12.66081778831192,21.9132433908244,15.889015408494632,15.107999986481296,0.5417452425852906,0.7274384685505926,0.7070393374741201,0.5719298245614035,0.1312545322697607,0.695994277539342,0.89171974522293,0.8787234042553191,0.732484076433121,0.1666666666666666,0.4931228861330327,0.6615581098339719,0.6518467852257182,0.5265526552655265,0.1214087117701575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022802821469109,0.0047873581288732,0.0070871578263341,0.0092698941890367,0.0115107474352711,0.0138553541774911,0.0160538528226834,0.0183058881216034,0.0205592946423091,0.0228508803375907,0.0250554050726422,0.0270850672502902,0.0293015788065293,0.0313501922660591,0.0333770512118802,0.0354910806671909,0.0374962420824564,0.0398179986079802,0.0416397743124232,0.0436606053018684,0.0575646373720582,0.0717751485490919,0.0852472106070475,0.0980020432451788,0.1096947935368043,0.1251522694772522,0.1390081169521057,0.1524144547489606,0.1648869010678593,0.1763953938039788,0.1907700939823257,0.2046316976386148,0.217439630372243,0.2294684931506849,0.2405458132639677,0.2523306401491609,0.2627739676217541,0.2728185232386344,0.2823280519569149,0.291386240955553,0.2999257178671742,0.308022569709198,0.3160893616011015,0.3235071261049972,0.331183241476857,0.3371887331609743,0.3437189843838336,0.3498933329926802,0.356290150589092,0.3621235608198524,0.3633094011546938,0.3644669910427955,0.3653837993804896,0.3662276562068915,0.3678342760771905,0.3674745172912881,0.3674259318254221,0.368130505925326,0.3694839964876638,0.3701305708427754,0.3713186046072864,0.3728212585406665,0.3734547682944868,0.3755500891426508,0.3755097087378641,0.3765932792584009,0.3777937995674116,0.3787859506235683,0.3794094683795869,0.3795419115001798,0.3805464682301986,0.3811745776347546,0.3797090400863985,0.3807254841684598,0.3832590766897336,0.3870005963029219,0.3878954607977992,0.3911723020854424,0.392570002772387,0.3999230177059276,0.0,2.4830751814591827,61.71067819174472,217.88420981343023,343.19541276991043,fqhc2_80Compliance_baseline,99 -100000,95716,40735,381.5349575828493,7589,78.01203560533244,5911,61.13920347695266,2412,24.81298842408793,77.33641368994157,79.70995829059385,63.332022412709286,65.08873013601531,77.04025646652786,79.4136966989427,63.22408754088338,64.98340068910069,0.2961572234137009,296.2615916511453,0.1079348718259041,105.32944691462376,65.62138,45.93673973683438,68558.4228342179,47992.7491086489,195.79376,115.43505148696752,203950.6561076518,119995.39019225477,238.43126,113.25674865605762,244694.0114505412,114981.18594817602,3403.26788,1526.8933284733089,3523743.658322538,1563392.3834804618,1446.93798,628.0697634392324,1495400.2465627482,639905.1155832844,2385.87508,990.3122809571632,2457308.663128421,1005074.159085266,0.38188,100000,0,298279,3116.291947009905,0,0.0,0,0.0,16142,167.9969910986669,0,0.0,22466,230.3585607421957,2186874,0,78490,0,0,2629,0,0,42,0.4283505370053074,0,0.0,0,0.0,0,0.0,0.07589,0.1987273489054153,0.3178284358940572,0.02412,0.3074899799599198,0.6925100200400801,25.668726455025443,4.605550713968452,0.3288783623752326,0.1970901708678734,0.2278802233124682,0.2461512434444256,10.919821462839636,5.363166182468846,25.78171840677319,13337.967927314545,66.70420984402693,13.561878708778517,22.000451127026235,15.022352613812345,16.11952739440984,0.5386567416680764,0.7699570815450644,0.691358024691358,0.5760950259836675,0.1147766323024054,0.6878491620111732,0.913793103448276,0.8423326133909287,0.7777777777777778,0.1238095238095238,0.4909578030810448,0.7086903304773562,0.6441593517893315,0.5168107588856868,0.1122807017543859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989380244011,0.0046957879897362,0.0070358901467079,0.0091369217009512,0.011352654547674,0.0137392296254048,0.0156538410548751,0.0177047171737798,0.0199053295574207,0.0221219007841451,0.0241814789757467,0.0264778957310938,0.0285987536249768,0.0310549409801619,0.0333608502734495,0.0353916440989808,0.037389854727316,0.0394850141610731,0.0412093622682298,0.0431449344805316,0.0577762462669423,0.0717327390480973,0.0852393686749515,0.0978701932174169,0.1102643561851758,0.1261506917361573,0.1404901732143235,0.1537528978879979,0.1670135886679262,0.1783820268055153,0.1925523327772695,0.2055630055803088,0.2184236549558262,0.2297936488863157,0.2409401577917939,0.2521119908001238,0.263201292551117,0.2739328822855087,0.2838225457183996,0.2934178315678693,0.3016817892850951,0.3088893302335362,0.3167555046034203,0.3244252873563218,0.330748413247412,0.3380326778876343,0.3443453460590671,0.3512103904033786,0.3574296148566396,0.3629086586090747,0.3640249164059972,0.365471656455263,0.3664496264177059,0.3670436421632594,0.3671133528323285,0.3676018210901932,0.3680979643765903,0.3695211072436035,0.3704104413532543,0.3712674842439804,0.373133485227936,0.3754146225197132,0.3765067210804215,0.3774550515139952,0.3790585789231922,0.3792624433203155,0.3808095952023988,0.3832367734131279,0.3860352845124418,0.3875030176229178,0.3910583433818755,0.3909263787014398,0.3909120415449529,0.3929522317932654,0.3908345393150024,0.3905042326094958,0.3866036249014972,0.3911599916995227,0.3953553441522104,0.3962920046349942,0.0,2.4054709923031243,63.19454942892343,223.9612833298554,344.5809272346759,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95604,40726,382.3375590979457,7529,77.42353876406845,5874,60.79243546295134,2433,24.978034391866448,77.26635035352784,79.70460599348358,63.26822878755484,65.0722542682131,76.96946762870843,79.40883985945148,63.15948008028956,64.96742892971956,0.2968827248194117,295.7661340321067,0.1087487072652777,104.8253384935407,65.07204,45.55252677171469,68064.13957574996,47647.09297907481,196.28311,116.1409225619376,204653.73833730805,120826.50575492407,240.00696,114.26820188869416,247414.75252081503,116751.51893622744,3383.49052,1523.349251550511,3501099.661102046,1555457.9845513897,1435.50138,621.783156133461,1485783.576001004,634682.8786784556,2411.20706,1000.350947403773,2477061.8593364293,1005728.8001522168,0.38167,100000,0,295782,3093.8245261704533,0,0.0,0,0.0,16177,168.50759382452617,0,0.0,22606,232.8668256558303,2183458,0,78335,0,0,2674,0,0,37,0.3765532822894439,0,0.0,0,0.0,0,0.0,0.07529,0.1972646527104566,0.3231504847921371,0.02433,0.30933803171407,0.6906619682859301,25.67441228981427,4.563700279267669,0.3270343888321416,0.2000340483486551,0.2293156281920327,0.2436159346271705,10.9950622800596,5.374814285503795,25.92743464289831,13317.000215923072,66.12692027711338,13.74692318682311,21.54282431484634,14.99133552428697,15.845837251156963,0.5406877766428329,0.7617021276595745,0.6928682977615825,0.5857461024498887,0.1125087351502445,0.6962649753347427,0.9111747851002864,0.8929384965831435,0.7236024844720497,0.145631067961165,0.4911335578002244,0.698547215496368,0.6336032388663968,0.5424390243902439,0.1033868092691622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0047882323104235,0.0070785136136979,0.0091508052708638,0.011685429856884,0.0138813865079445,0.0159822011757021,0.0182397841880996,0.0204735205042154,0.0225125525156266,0.0247239213432406,0.0268075570996854,0.0288749575368271,0.030817610062893,0.0327115352834242,0.0349630089502819,0.0368266669430653,0.0387623469292369,0.0407373099220433,0.04273094212497,0.0568629705910027,0.0713462304290415,0.0850149692735963,0.0979185977921968,0.1096042333407268,0.1256858964852439,0.1392071420979913,0.1520911330837413,0.1644027701957762,0.1756318232614115,0.190070340482458,0.2039831739630087,0.2164905783683694,0.2282946925537976,0.2392773288947188,0.2513812767657044,0.2623046067553827,0.2737143243304124,0.2835161088698221,0.2920782424138128,0.3010773864689527,0.3093377692911448,0.3176168074794706,0.3247555635534761,0.3320072508729029,0.3387473290268394,0.345031733687881,0.3513578987632283,0.3573031958374962,0.3626255949233209,0.3635529776758616,0.3642066369790302,0.3656773319025161,0.3670601868617368,0.3681919809211507,0.3689697528020881,0.3696891726624418,0.3712194880754207,0.3722513807416555,0.3730791325578055,0.3740142625363166,0.3754157455537631,0.3760847990878185,0.3774439138661141,0.3786688012419347,0.3792132614129719,0.3815308442960362,0.3844172364445858,0.3851807143364339,0.3865080003216209,0.3880899705014749,0.3898697384002583,0.3909446546527287,0.3883330768046791,0.3913208262270229,0.3931429936686178,0.3968817536276628,0.396067990989146,0.3982177666388192,0.400767754318618,0.0,2.4765318152411284,62.3750071449056,221.0642531834025,343.7273046251587,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95707,40565,381.4767989802209,7486,77.07900153593782,5790,59.93292026706511,2374,24.428725171617543,77.34534288058313,79.71148393029792,63.32656324425341,65.07345406735456,77.05143832462974,79.41663453582457,63.219305304304605,64.96814589003368,0.2939045559533895,294.8493944733457,0.107257939948802,105.30817732087884,65.94104,46.23116346881879,68898.86842132758,48304.89250401621,194.54729,114.99549704509715,202678.68598953052,119569.06031422324,238.79349,112.91234170144628,245853.657517214,115216.61607961149,3315.94252,1490.0219337502415,3433376.868985549,1525989.4995154596,1386.21346,604.6097879908775,1431336.9032568152,614673.8880028388,2337.71402,971.6965121832104,2406946.7646044698,985728.1791292568,0.37953,100000,0,299732,3131.7667464239817,0,0.0,0,0.0,16033,166.915690597344,0,0.0,22492,231.3519387296645,2181591,0,78305,0,0,2624,0,0,43,0.44928793087235,0,0.0,0,0.0,0,0.0,0.07486,0.1972439596342845,0.3171253005610472,0.02374,0.3136259832529814,0.6863740167470185,25.457921915263935,4.540527732389717,0.3343696027633851,0.1981001727115716,0.2347150259067357,0.2328151986183074,10.96367666643669,5.477103309012766,25.402813678360623,13177.852649596622,65.36600559427535,13.412749290146657,21.86027996584135,15.290736391041468,14.802239947245871,0.5454231433506045,0.7628596338273758,0.6947314049586777,0.5776306107431936,0.1135014836795252,0.7098808689558515,0.9064327485380116,0.8734693877551021,0.7643312101910829,0.1245551601423487,0.4916341966536786,0.7018633540372671,0.6341632088520055,0.5215311004784688,0.1105904404873477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0045811120345407,0.0065338257375918,0.0085516961202518,0.0107079664015945,0.012736843176982,0.0149740578779446,0.0173228667966477,0.0194426839490523,0.0215270598110368,0.0236811350542308,0.0256931608133086,0.0278023492625126,0.0298756554615788,0.031836616753181,0.0337609443967789,0.0360508709791006,0.0377131352546207,0.0394788829046143,0.0415164335882953,0.0558207053564901,0.0695028780743066,0.0832310259073881,0.0961595117845117,0.1082655354712083,0.124005164676996,0.1372713471277059,0.1506672773168315,0.1626554952336169,0.1747077121098358,0.1896691053669364,0.2033024741486654,0.2159365410981262,0.2273090522950945,0.2387921635997225,0.2504157335757522,0.2612530142002322,0.2710586434688664,0.2813042836544466,0.2906718298886394,0.2987928380458559,0.3061752079263514,0.3139221025216053,0.3209503602210474,0.3277993169581545,0.3340897878638382,0.3406152921134382,0.3465131076609824,0.3530289272279154,0.3591551158607555,0.3603823771653862,0.3622724324025893,0.3635733288051169,0.3643593092439414,0.3652873323086565,0.3655588194583288,0.3657990439740189,0.3671823568136932,0.3690250200947446,0.3693435879091397,0.3704753147811075,0.372276364788844,0.3729956919197226,0.3748201115308509,0.3758872120345922,0.3781351663343478,0.3792985164222622,0.381836522396999,0.3822421019265312,0.3835807234669107,0.3859810083031331,0.3840595225350605,0.384044644555774,0.3864526534060364,0.3864454976303317,0.3855148550292328,0.3824615384615384,0.3868926092282564,0.3816155988857939,0.3790386130811662,0.0,2.100531730325262,63.48323006215911,220.1445663029629,330.9963316712021,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95651,40468,379.6405683160657,7425,76.44457454705126,5759,59.50800305276474,2409,24.68348475185832,77.2498286400838,79.64862183472542,63.26585613190741,65.03909978585534,76.95229241317548,79.35476058587355,63.15627023066704,64.93478562845382,0.2975362269083206,293.8612488518686,0.1095859012403721,104.31415740151806,66.05544,46.24602773713456,69058.80753991072,48348.71327757635,194.84396,114.73254754282962,202921.3494892892,119168.0408989764,234.36837,110.61430506419217,241253.4422013361,112723.13974489253,3315.46572,1483.3540964768174,3427297.487741895,1511916.328368332,1426.385,606.7376075399065,1475565.514213129,618682.9468755324,2374.63154,987.72559092357,2435124.1492509227,990238.3851132684,0.37951,100000,0,300252,3139.036706359578,0,0.0,0,0.0,16096,167.52569236076988,0,0.0,22036,226.5841444417727,2176121,0,78195,0,0,2531,0,0,35,0.3554589079047788,0,0.0,1,0.0104546737619052,0,0.0,0.07425,0.195647018523886,0.3244444444444444,0.02409,0.3151740973917512,0.6848259026082487,25.645846092751967,4.592859264120946,0.3215836082653238,0.1901371765931585,0.2450078138565723,0.2432714012849453,10.9491835355312,5.41208488216963,25.66572498295161,13205.622077874166,64.73481420433126,12.743954420284254,20.745287457215763,15.693088433910631,15.552483892920618,0.5341205070324709,0.7415525114155251,0.6819654427645788,0.5882352941176471,0.1220556745182012,0.6846321922796795,0.909967845659164,0.8267543859649122,0.7538461538461538,0.1245551601423487,0.4870041039671682,0.6747448979591837,0.6346704871060171,0.5386740331491713,0.1214285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019753636695165,0.0042897563053332,0.0069528323910638,0.009103840682788,0.011412761542452,0.0137189998472271,0.0159992658080699,0.0179917087017787,0.0201372482843964,0.0223678820155673,0.0246689437999405,0.0268315733245675,0.0287601741045244,0.0306025685955183,0.0325954529498007,0.0345141438692661,0.0364966529191104,0.0387163088168113,0.0406388180825053,0.0425438733694122,0.0575954525506259,0.0717824115287538,0.0849759640615488,0.0978553689438902,0.1099935620732235,0.1251587637595258,0.139493638622799,0.1521368432271128,0.1643807771311194,0.1767745678402217,0.1911693300387366,0.2047519899364521,0.2170485153157475,0.228735014423446,0.2397178621100735,0.2505611984086413,0.261629924874324,0.2719712954291581,0.2809813855524563,0.2894316418596632,0.2973707752901674,0.3050070521861777,0.3129891756869276,0.3199195655576828,0.3267489812352065,0.3334901339407293,0.3395711843957369,0.3464208548013859,0.3517812780458619,0.3577479352538014,0.3595139180210293,0.3608288751572457,0.3625345132743363,0.3641147143044028,0.3650563510806852,0.3653337027459672,0.3656363838824109,0.3659970926390908,0.3672020083912236,0.3689475862317145,0.3688423994109095,0.370269246866094,0.371918270854441,0.3728465307412675,0.3736338466022247,0.3754132773550249,0.3770182068017863,0.3780407004259347,0.3800415653950473,0.3832820799552698,0.3867708904735784,0.3857584149978696,0.3866210999303841,0.3888803680981595,0.3916698148847752,0.3909935668334525,0.3866646134893748,0.3872427983539094,0.393652561247216,0.3976226993865031,0.0,2.695008662818743,60.42447110483657,217.18162405377447,336.9534639470434,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95747,40698,381.1712116306516,7597,78.16432890847754,5901,61.0985200580697,2457,25.348052680501738,77.32698317968122,79.68546348156138,63.31555014592704,65.06057947857602,77.01849333562637,79.37499903106063,63.20213384625048,64.94913153893356,0.3084898440548471,310.4644505007599,0.1134162996765653,111.44793964245991,64.26684,45.073594065775,67121.51816767105,47075.72463447941,195.23917,115.34197003516786,203357.3584550952,119911.1930767208,243.33669,115.07568034102545,250498.6265888226,117446.80693589624,3385.46036,1530.489946867466,3507642.5162146077,1570275.9009341956,1459.98056,636.3976403427162,1512776.7136307142,652614.0379543045,2416.45692,1008.7801662957696,2494949.711218106,1028130.3310845696,0.38101,100000,0,292122,3050.9780985305024,0,0.0,0,0.0,16167,168.26636865907025,0,0.0,22898,235.54785006318733,2187731,0,78536,0,0,2633,0,0,35,0.3551025097392085,0,0.0,1,0.0104441914629178,0,0.0,0.07597,0.1993910920973202,0.3234171383440832,0.02457,0.3098009763424709,0.690199023657529,25.2672797718254,4.6324740501892645,0.3111337061514997,0.2031859006947975,0.250127097102186,0.2355532960515167,11.10265806170061,5.5732761523167085,26.301554079830844,13308.740016923774,66.77962587836188,14.008325877491531,20.840366449212905,16.53802702972239,15.392906521935064,0.5563463819691578,0.7773144286905754,0.7058823529411765,0.6056910569105691,0.1158273381294964,0.6922554347826086,0.8918128654970761,0.8674948240165632,0.7155425219941349,0.1666666666666666,0.5111763377737638,0.7316219369894983,0.6481892091648189,0.5726872246696035,0.1014760147601476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023504381743579,0.0047251120439658,0.0068915819174634,0.0093363946684005,0.0115840325451309,0.0137976681431699,0.0161520577558428,0.0183228704129025,0.0208395081916948,0.0231525076765609,0.0251716716203751,0.0272853256685315,0.0294604401591233,0.0312831443781985,0.0332477124789816,0.0351330405579953,0.0371478563367741,0.0389925624721222,0.0409715942752018,0.0429736740668201,0.0572409905207332,0.0712028958215638,0.0848063575936759,0.0977860942329121,0.1108054264301299,0.126009727215056,0.139973910000106,0.1527978877438037,0.1656157151101896,0.1773096076242809,0.1914852338866134,0.204511734191061,0.2165079710539202,0.228462944118001,0.2400308268193328,0.2518097265178977,0.2632813809284398,0.2734892523996214,0.2832793591273223,0.2922762922533596,0.3008284572156885,0.3081430781491726,0.3158512720156556,0.3238632950927984,0.331084865457202,0.3380222548813772,0.3444334307833222,0.3505785988593883,0.3556808145877708,0.3613691090471276,0.3633995573071317,0.3643926329585431,0.3653438779833357,0.3663278769337837,0.3669330788500536,0.3676429868012184,0.3685072419988234,0.3697873743200923,0.3713790499725425,0.3721946588812667,0.373351146905519,0.3737857327320765,0.3750316803244065,0.375481169664363,0.3760627861347286,0.3762259090789577,0.3767379064690336,0.3777354900095147,0.3799108090889785,0.3832407148282893,0.3839387970131476,0.3859096250400598,0.3881674795717996,0.3888931385297942,0.3900943396226415,0.3903946742748455,0.395628078817734,0.3944150020383204,0.4057239057239057,0.404313725490196,0.0,2.074026060783789,65.48207081003777,220.7414535911981,341.5751142248532,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95760,40490,379.37552213868,7418,76.30534670008353,5761,59.5969089390142,2318,23.84085213032581,77.39144353273707,79.72900866976435,63.36142006586866,65.08650609284537,77.10742609597362,79.44556383338582,63.25735861661157,64.98538917732019,0.2840174367634489,283.4448363785356,0.1040614492570881,101.1169155251821,65.219,45.71775345125686,68106.72514619882,47742.0148822649,195.3206,115.38606416352184,203388.8366750209,119915.01061353578,240.18462,113.38840174629232,247151.69172932333,115558.82446474688,3301.53556,1475.180830517589,3417591.604010025,1510370.7085605576,1414.73836,607.5513451933879,1461845.8751044278,618918.7502019498,2280.47616,940.9198752657136,2347498.95572264,952801.6090941088,0.37898,100000,0,296450,3095.7602339181285,0,0.0,0,0.0,16154,168.1077694235589,0,0.0,22569,232.05931495405176,2188301,0,78499,0,0,2622,0,0,46,0.4803675856307435,0,0.0,1,0.0104427736006683,0,0.0,0.07418,0.1957359227399862,0.3124831490967916,0.02318,0.3208343997952393,0.6791656002047607,25.65835278710814,4.518937860542113,0.3409130359312619,0.1971879881964936,0.2313834403749349,0.2305155354973095,10.989403300196454,5.538061018421201,24.580267270892616,13228.584506379471,64.73792684063264,13.254457532143636,22.095179130573072,14.84527610649673,14.543014071419211,0.5519875021697622,0.7720070422535211,0.6970468431771895,0.5678919729932483,0.1332831325301204,0.6924187725631769,0.9316239316239316,0.8725274725274725,0.6421404682274248,0.1535714285714285,0.5075411334552102,0.7006369426751592,0.6441351888667992,0.5464216634429401,0.1278625954198473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0047224783890876,0.00712242040543,0.009404738932166,0.011570802533782,0.0136796677794967,0.0159873649887915,0.0180688473075274,0.0200328944008009,0.0219161823688303,0.0239139344262295,0.0262023965856861,0.0282981062668899,0.0307733476050307,0.0327914480398321,0.0347292523190711,0.0367721636894289,0.0386234935385508,0.0406956196336874,0.0427101129213717,0.0576698258945346,0.0715167622316159,0.0851499066361748,0.0979346751635224,0.1100672697749942,0.1254203235698424,0.1388744552019596,0.1517021276595744,0.1643281223304288,0.1762436091192643,0.1903685524842848,0.2036660538553044,0.216661232474731,0.2290346545470436,0.240026383773979,0.2515214552858122,0.2617874579218405,0.2719613569984273,0.2815557092170443,0.2905385301993454,0.2986703665163602,0.3064557613168724,0.3141613334437438,0.3224082351672319,0.32912406809296,0.3362036044692462,0.3422057038455282,0.3486461703048982,0.3547041216942871,0.3601076957594795,0.3607581305190609,0.3616766631816431,0.363089705675257,0.364043321299639,0.3646611516240662,0.3649659603763482,0.3648907384844217,0.3659901225655077,0.3669104079819585,0.3679751179751179,0.369043817966681,0.3702477700693756,0.3715511440107671,0.3721317001910327,0.373441773775809,0.3744687549189359,0.3756477425634859,0.3784682630178639,0.3804886685552407,0.3822410825093078,0.3837594261541291,0.3835653248777342,0.3852140077821012,0.3870992601726264,0.3853080568720379,0.3877186719028918,0.3895728834169327,0.3927632908833636,0.392087312414734,0.3932798778159603,0.0,2.2301088378690603,61.35839484677901,219.39473916623965,331.93533130837494,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95717,40851,382.5861654669495,7564,77.69779662964781,5873,60.66842880575029,2418,24.76049186664856,77.37264048070351,79.73065353481014,63.34029949113111,65.08115436306954,77.07893259738113,79.43884824623235,63.23229828294615,64.97716655191229,0.2937078833223836,291.8052885777911,0.1080012081849659,103.98781115725342,65.95644,46.205980774951584,68907.75933219804,48273.53633623242,198.55184,117.8526794069342,206752.25926428952,122442.09430606292,242.25655,115.27931501004132,248316.17163095376,116861.17392700473,3370.57296,1518.1640663349406,3484360.437539831,1549062.74364527,1448.63779,629.7835691742816,1496160.3267967028,640665.2519137475,2377.42634,983.8278446886516,2438320.6326984754,990035.2512527588,0.38237,100000,0,299802,3132.1708787362745,0,0.0,0,0.0,16429,170.9205261343335,0,0.0,22873,234.2112686356656,2179041,0,78237,0,0,2628,0,0,35,0.3656612722922783,0,0.0,0,0.0,0,0.0,0.07564,0.1978188665428773,0.319672131147541,0.02418,0.3202811244979919,0.679718875502008,25.435683100730184,4.6811406127533886,0.3362846926613315,0.1980248595266473,0.2310573812361655,0.2346330665758556,11.40957720801004,5.749876706063192,25.611450133314047,13315.409518093016,66.00325603702376,13.47401991214826,22.355870186009717,15.068423834938168,15.10494210392762,0.5484420228162779,0.7454858125537404,0.7124050632911393,0.5725865880619012,0.1233671988388969,0.7104895104895105,0.8967551622418879,0.8787878787878788,0.7443365695792881,0.1637630662020905,0.4962862930452397,0.683252427184466,0.6567567567567567,0.5219465648854962,0.1127406049495875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002379746835443,0.0048138801901229,0.0070198930785071,0.0094247643808904,0.0117235559080417,0.0140379094814422,0.016400962244149,0.0187500637930858,0.0209038219750789,0.0229296755041457,0.0249038806582252,0.0268169731316926,0.0287706165425903,0.0310301856867732,0.033303413909437,0.0352233499390206,0.0375002588366844,0.0397153851738909,0.0416467457958301,0.0432971222047473,0.0581270295385964,0.0717267790438522,0.0852852978799253,0.0979934621974164,0.1101775322594248,0.125527303483639,0.1397887099853624,0.1527754129065213,0.1652711621846765,0.1779064779064779,0.1916117358149153,0.2057369155693093,0.2188625066620259,0.2307263180923211,0.2420737545257458,0.2533939158862969,0.2641045967642888,0.2736682058790404,0.2840342245503198,0.2933376158575755,0.301698880151938,0.3096160826142444,0.3180007587253414,0.3252155534740735,0.3316216643749772,0.3380699003716003,0.3444057258893429,0.3506068440289859,0.3559282492612369,0.3605230139338308,0.3618577953838069,0.3631806538684,0.3645825987616885,0.364783880026635,0.3663861791644947,0.3660704690258693,0.366394417571961,0.3674238683127572,0.368584918571233,0.3691367510676697,0.370700804078496,0.3705321840898308,0.3714549808831561,0.3721805353343039,0.3728923788418923,0.3744554300472178,0.3769566333076726,0.3784149140180452,0.3799627900445817,0.382072296789009,0.382664906450585,0.3848036607427902,0.3883255165420205,0.3863236082395282,0.3860162294772599,0.3871507045617387,0.3953452527743527,0.3952205882352941,0.4055555555555555,0.4013107170393215,0.0,2.731588345185096,62.62128457012759,223.35392926147725,336.410932648098,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95726,40246,377.3478469799219,7437,76.33244886446734,5770,59.52405824958736,2307,23.67172972860038,77.33281654085012,79.69839128165977,63.319784280511655,65.07091043071884,77.05065651807901,79.41700058063235,63.21667629671217,64.97108591076613,0.2821600227711087,281.39070102741925,0.1031079837994823,99.8245199527048,65.0936,45.63163504026438,67999.91642813865,47669.00846192715,193.08717,113.7928498874754,200966.82197104237,118134.32915311898,236.87109,112.59337345439748,241765.91521634665,113481.49134190648,3320.1154,1484.4622909891668,3428248.3755719448,1511057.1162027612,1439.14694,625.0297070634145,1483810.793305894,633426.1892505081,2274.02946,938.8266959688218,2336132.900152519,947248.414820496,0.37789,100000,0,295880,3090.9052921881203,0,0.0,0,0.0,15954,165.89014478824978,0,0.0,22302,227.5139460543635,2187993,0,78536,0,0,2531,0,0,43,0.4283057894406953,0,0.0,0,0.0,0,0.0,0.07437,0.1968033025483606,0.3102057281161758,0.02307,0.3130799542392271,0.6869200457607728,25.64277776634192,4.582188079977912,0.3332755632582322,0.2008665511265164,0.2294627383015598,0.2363951473136915,11.24181932504371,5.653475701169508,24.41951323366957,13166.856303547944,64.5950214921663,13.247388247791193,21.80718333112456,14.771505618131918,14.768944295118636,0.5483535528596187,0.7368421052631579,0.7160686427457098,0.5861027190332326,0.1151026392961876,0.7204066811909949,0.9125,0.8539553752535497,0.7669902912621359,0.1647058823529411,0.4944229455952652,0.6698450536352801,0.6685314685314685,0.5310344827586206,0.1036970243462579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0043005081496657,0.0065082749517717,0.0087415252945182,0.0108757579457127,0.0131091101694915,0.0153784966193822,0.0174374680959673,0.0197541972556798,0.0218920551704365,0.023898378068035,0.0260090975366827,0.0280802410109298,0.0301441812564366,0.0321492318644697,0.0339955347914168,0.0362986743993372,0.0385425639003331,0.0403231676250091,0.0421515413545584,0.056784606871783,0.070581834541783,0.0839983640768045,0.0965337426537842,0.1083927140869418,0.1235936046019795,0.1378922696757909,0.1509110647537145,0.1629034669856663,0.1740878965317547,0.188028942438142,0.2014130070217577,0.2140619902120717,0.2258766414817892,0.2376625376779388,0.2488814069906525,0.2595428367337827,0.2698312640003602,0.2795009195976476,0.2892403903422367,0.2979693903540253,0.3057627674399541,0.313350949745826,0.3205345040603596,0.3280398832684825,0.3342220576436462,0.3406116821258461,0.3464497719803317,0.3527001089381127,0.358726549175668,0.3599379510352735,0.3613868210642404,0.3629960051382674,0.3641155600608211,0.3655577416085375,0.3658109684947491,0.366286358082483,0.3674866310160428,0.3683859150589725,0.3695255474452554,0.3712331855414443,0.3715969521390586,0.3730245460659045,0.3747981700753498,0.3759627224220768,0.3773288263501297,0.3781621063500258,0.3795176909931008,0.3820033955857385,0.381602659084538,0.3839445540918896,0.3869325186257168,0.3889417888656129,0.3890549551621062,0.3909262759924385,0.3891731112433075,0.3949708678319534,0.3899063899063899,0.3960011108025548,0.4024012393493416,0.0,2.885840000345101,60.03570420442598,213.67380649200496,340.72102094928465,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95769,40639,379.7888669611252,7549,77.44677296411156,5864,60.55195313723648,2341,24.057889296118784,77.34910350822409,79.67898726340704,63.34642956891118,65.06733656924808,77.05456982931054,79.38302593780719,63.2389663172092,64.96169308501622,0.2945336789135524,295.96132559984767,0.1074632517019722,105.64348423186232,65.95688,46.19293511089556,68870.80370474789,48233.703088573086,195.26651,115.13618873149755,203204.3354321336,119533.91883751276,240.71596,114.53398860378822,246485.14655055397,115872.74746741062,3356.9914,1515.432205880882,3469761.3632803936,1547196.9003426265,1414.43422,619.942768404339,1460622.8320228884,631188.2847973485,2307.7865,962.8041603744445,2374349.0899978075,976062.7301880872,0.38137,100000,0,299804,3130.49107748854,0,0.0,0,0.0,16171,168.13373847487182,0,0.0,22682,232.04794870991657,2183569,0,78455,0,0,2630,0,0,40,0.4072298969395106,0,0.0,0,0.0,0,0.0,0.07549,0.1979442536119778,0.3101072989799973,0.02341,0.3205015673981191,0.6794984326018809,25.314741057595228,4.602156718816975,0.3282742155525239,0.2007162346521146,0.2394270122783083,0.2315825375170532,10.981677381500589,5.457560538319867,25.05053509365831,13277.119797220494,66.10294075774414,13.763392652961944,21.76234139657236,15.617971257737729,14.95923545047209,0.547237380627558,0.7638062871707731,0.6935064935064935,0.584045584045584,0.1141384388807069,0.6940451745379876,0.918918918918919,0.8374485596707819,0.7203947368421053,0.1594684385382059,0.4985237338178515,0.6926889714993805,0.6448922863099374,0.5463636363636364,0.1012298959318826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0045104856120576,0.0068580008318876,0.0091212887629379,0.0113576280148045,0.0135897227085793,0.0156240445178254,0.0178496708679899,0.0199245930785028,0.0221501503959403,0.0242593123796254,0.0265466747390996,0.0288166075741226,0.0308781753056939,0.0332817816269718,0.0357065391408533,0.0377793874172185,0.0401385302931325,0.0420199501246882,0.0438504233008091,0.0578137229324289,0.0717886501976697,0.0847032920947787,0.0978057546396519,0.109806855420798,0.1249630161883427,0.1391520932697403,0.1523606975754997,0.1646462490662682,0.1761706321574341,0.1902886291728546,0.20378439746986,0.2167177613984736,0.2290575486862104,0.2398208961791918,0.2511822621908675,0.2620594209692181,0.2722907553386485,0.2815071213754752,0.2911670732126292,0.2998322244720856,0.3086627811717342,0.3161770800033152,0.3240858410262558,0.3310687635205755,0.3378495101305496,0.3450859519871698,0.3513878622588127,0.3568314519268197,0.3616908710948866,0.3626155611039881,0.3635034281063333,0.3646809712027103,0.3656018303985171,0.3671573808070734,0.367749259776322,0.367598775516678,0.3689917888466538,0.3696817162326433,0.370883695944131,0.3711444843335902,0.3707956690175822,0.3718056666526333,0.373329132724245,0.3743813682678311,0.3748124753257007,0.374564007955954,0.376128065308205,0.3780362032789217,0.3795811518324607,0.3807347918397489,0.3823893281695444,0.3842399332091709,0.3859024012393493,0.3849995198309805,0.383883944898208,0.3869141239383454,0.3939771547248182,0.3905941988172345,0.3976725521669342,0.0,2.642450398204814,64.09330698487258,218.86040354340992,338.02754297882615,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95657,40881,382.752961100599,7558,77.61062964550425,5820,60.15241958246652,2387,24.566942304274647,77.31532774038504,79.70647760466576,63.31028192710126,65.07588208113825,77.0188156167441,79.41013133506652,63.20216035059757,64.97084315675808,0.2965121236409374,296.3462695992405,0.1081215765036844,105.03892438016749,66.31834,46.46791828785544,69329.3120210753,48577.64542882951,197.22892,116.38073373679968,205533.4371765788,121014.59771558765,242.53959,114.86721078722331,248911.5903697586,116523.83493478784,3364.57424,1500.4977550915532,3480043.53053096,1531334.6175309226,1457.48505,631.4076600050231,1505917.3609876956,642334.570397381,2362.49682,978.8159139265712,2433244.989911873,991542.738020415,0.38145,100000,0,301447,3151.332364594332,0,0.0,0,0.0,16232,168.99965501740596,0,0.0,22745,233.15596349456916,2178419,0,78142,0,0,2716,0,0,42,0.428614738074579,0,0.0,0,0.0,0,0.0,0.07558,0.1981386813474898,0.315824292140778,0.02387,0.3146264908976773,0.6853735091023226,25.72161132692281,4.6527987444265735,0.3214776632302406,0.1950171821305842,0.2415807560137457,0.2419243986254295,11.238603650288256,5.522689116126947,25.52353111639893,13287.965981085918,65.39290463057371,13.2753706316426,20.891883052746245,15.584766742027204,15.640884204157643,0.5398625429553264,0.7700440528634361,0.6819882415820417,0.5746799431009957,0.1306818181818181,0.7103866565579985,0.9116719242902208,0.8661971830985915,0.745819397993311,0.2021660649819494,0.4898911353032659,0.715158924205379,0.6276816608996539,0.5284552845528455,0.1131741821396993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008752557894,0.0045722743770149,0.0070531165641681,0.0093268038932802,0.0114237467447916,0.0135472370766488,0.016033617559463,0.0184364275208367,0.0209032152499386,0.0229486037295321,0.0250653812624993,0.0270775552131484,0.0291031417813715,0.0309534358932085,0.033164397559893,0.0352566422934916,0.0374549297525798,0.0396977779622845,0.0417312433039661,0.0437225105788672,0.058218748693944,0.0722602668006952,0.0855025610882525,0.0981436268732109,0.1102198486495614,0.1256947458685779,0.139139022214671,0.1517165713311816,0.1644380311046977,0.1760336610707998,0.1900645620237338,0.2037855162855162,0.216517176818914,0.2285048314200982,0.2394929292039297,0.251544562142976,0.2622584608511114,0.2726996488700819,0.2822416748981005,0.2907936362385952,0.2998540687035278,0.3079948956296756,0.3158025627057625,0.3228640351403574,0.3301891379394175,0.337110935727322,0.3432222500626409,0.3494703066109809,0.355637909140384,0.3617417734901546,0.3634303595996654,0.3643047298508904,0.3650374719489647,0.3656447053707328,0.3672845945220994,0.3684226698007405,0.368779573819429,0.3695981056370453,0.370255549465607,0.3712822532991924,0.3721567964538607,0.3729835909442647,0.3751053607552259,0.3760435653367537,0.377039655255895,0.3772847664752314,0.3767473968820111,0.3792686419910251,0.3810285958173282,0.3814793947198969,0.3842603277175167,0.3859110967603056,0.3851818647540984,0.3893082250408528,0.3886592984142239,0.3900992495763737,0.3872017353579176,0.3857548701298701,0.3896503496503496,0.3811175337186898,0.0,2.748477273491462,57.71489086740838,228.6584182754769,342.0231414642489,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95627,40535,380.1436832693696,7365,75.86769427044663,5730,59.3347067250881,2293,23.61257803758353,77.3146043072854,79.73513084068271,63.296484254502126,65.08366517042505,77.0406983312147,79.45932213285485,63.19675284963719,64.98570517004711,0.2739059760707079,275.8087078278635,0.0997314048649329,97.96000037793816,64.64612,45.26191649841725,67602.37171510138,47331.73319085327,193.90631,114.5913643503466,202192.2469595407,119250.24768145668,234.81253,111.11810415138486,241707.35252596025,113275.13455453332,3288.04016,1468.77801141729,3407450.99187468,1504994.4172851718,1382.19731,590.4726101087023,1431896.3681805348,603966.2857861301,2269.60332,934.571732115172,2339648.2165078903,949016.0691922924,0.38003,100000,0,293846,3072.8350779591538,0,0.0,0,0.0,16048,167.22264632373702,0,0.0,22108,227.3625649659615,2188537,0,78431,0,0,2500,0,0,32,0.3346335240047267,0,0.0,1,0.0104572976251477,0,0.0,0.07365,0.1938004894350446,0.3113374066530889,0.02293,0.3170668732248902,0.6829331267751098,25.68049650504864,4.456563309347561,0.3298429319371728,0.2036649214659686,0.2293193717277487,0.2371727748691099,10.9101717873484,5.450108279577415,24.250759062423104,13250.096535143002,64.26692358384115,13.514111874134125,21.293179684579314,14.614894250963957,14.844737774163752,0.550087260034904,0.7969151670951157,0.682010582010582,0.58675799086758,0.119205298013245,0.7137601177336277,0.9149560117302052,0.8741573033707866,0.7603833865814696,0.1192307692307692,0.4991992679020819,0.7481840193704601,0.6228373702422145,0.5324675324675324,0.1191992720655141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026445644574589,0.0049690196834024,0.0072278393633004,0.0093786516283086,0.011566162109375,0.0137909961295579,0.0158097122632368,0.0176626826029216,0.0198934244305571,0.0217409114183307,0.0236412681155704,0.026091690721014,0.0282498662606477,0.0302106087458269,0.0322164416367314,0.0344948816047978,0.0363596800265263,0.0384982765064994,0.0406422008802688,0.0428361337964266,0.0572279711508309,0.0709616593337523,0.0846678077516775,0.0978842105263158,0.1100497155342572,0.126236208466572,0.1399725960466079,0.1533871122430494,0.1659250385076159,0.177234497352224,0.1911239603447717,0.2037974271997225,0.2163036727934366,0.2275704927371119,0.2390005731164308,0.2505437918941714,0.261234479598565,0.2716876971608832,0.2816984626572282,0.2904776105707469,0.2992392223161454,0.3076149021810352,0.3156212261135185,0.3224135450141493,0.3295680901715007,0.3361717334779233,0.342784214609244,0.3489652891721041,0.3550007118911712,0.3605547198691051,0.3616763402776842,0.3628482972136223,0.3640260582644745,0.3655051609073932,0.3663667242714975,0.3667823789628901,0.3661423578010804,0.3667826918952803,0.3688082224743048,0.3698647339528542,0.3706444765858331,0.3723160267309897,0.3736012740455136,0.3753696567792813,0.3760400134660703,0.3775805065993283,0.3797122097164838,0.3809299551034504,0.3826346255042975,0.3843342866221798,0.3858468255412043,0.3866595801222429,0.3849087788443201,0.3838608322476818,0.3837648837648837,0.3834776334776335,0.3866729235100891,0.3937834499794154,0.3924015529672767,0.392156862745098,0.0,2.3246392822587043,60.10333767282737,215.23939157808283,336.2069371529973,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95636,40802,384.2590656238237,7548,77.76360366389225,5821,60.18654063323435,2353,24.185453176628048,77.29129418892526,79.69293307073447,63.29829466637945,65.07063586571303,77.00550696548062,79.405407195325,63.195285319171504,64.9695998222787,0.2857872234446432,287.5258754094716,0.1030093472079443,101.03604343433403,65.12198,45.575666760490016,68093.58400602284,47655.34606266471,191.94126,112.52120837172563,200029.01627002383,116985.98695003983,235.66572,110.74282469196508,241690.64996444853,112195.25179642638,3336.88832,1483.1229055719573,3453037.433602409,1514775.7630113931,1422.1248,606.8292561092259,1469772.7006566566,617321.4046772656,2319.15986,949.1336173485864,2386187.2307499265,960056.2728125756,0.38325,100000,0,296009,3095.1629093646743,0,0.0,0,0.0,15919,165.75348195240286,0,0.0,22268,228.1253921117571,2187986,0,78513,0,0,2548,0,0,28,0.2823204650968254,0,0.0,0,0.0,0,0.0,0.07548,0.1969471624266144,0.3117382087970323,0.02353,0.3191409193669932,0.6808590806330068,25.39148606713253,4.599560456902996,0.3325889022504724,0.2042604363511424,0.2274523277787321,0.2356983336196529,11.068449774589896,5.450367179765278,24.940014664538765,13287.8958550528,65.34909240293796,13.802955013211111,21.852540160637837,14.586484716469212,15.107112512619809,0.548187596632881,0.7544154751892347,0.702995867768595,0.5755287009063444,0.1246355685131195,0.696165191740413,0.8920454545454546,0.8571428571428571,0.7027972027972028,0.1482889733840304,0.5032474804031355,0.6965352449223416,0.6556380823767725,0.5404624277456648,0.1190261496844003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0044915340160194,0.0067090933081615,0.0088202418453409,0.011160964095677,0.0131995722360849,0.0153761445439158,0.0176445361161598,0.0197938818910518,0.0217578276984825,0.0236688817786528,0.0257687488445658,0.0279306620029833,0.0298109124632902,0.031775855305267,0.0337801497662488,0.0359619031826802,0.0376700238812169,0.0395600736678909,0.0413890887102659,0.0559189900932157,0.0704312394599294,0.0842511996136036,0.0965793074413219,0.1088314758527524,0.1243715800726056,0.1379317665541473,0.1513137574421403,0.1640903940307442,0.1765678339094402,0.1911163818662066,0.2044738466202535,0.2164586031628555,0.2281072441237971,0.2397624085338975,0.2508650135296988,0.2619954643459609,0.2725993470674321,0.2831938783619623,0.2922477511029622,0.3011622791785325,0.3089568829345346,0.3168085837113182,0.3244128301705731,0.331816744118148,0.3386340066176107,0.3451315228566413,0.3513796093232009,0.3569370538611291,0.3629840095149993,0.3647252421160538,0.3660491357786269,0.3670505121865065,0.3683050601710889,0.3695107398568019,0.3690666748753309,0.3686696029638581,0.3713375480761294,0.3728953336540443,0.3734465914804971,0.373923530631089,0.3748308525033829,0.3769827877151535,0.3784270472245982,0.3785135951661631,0.3791576022855346,0.3788251444260138,0.3817951959544879,0.3832695849270435,0.3859994377284228,0.3848173568566032,0.3884961439588689,0.3894353602452733,0.389375727025979,0.3906565413822935,0.3909545288309155,0.3948863636363636,0.3913499895024144,0.3993781797625777,0.3993783993783993,0.0,2.661073890766973,59.59474581084909,220.6563995530231,344.7050588603841,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95624,41011,384.3909478791935,7539,77.59558269890404,5864,60.66468668953401,2444,25.140132184388857,77.27514686010801,79.68853248896748,63.27600815666828,65.05751173827713,76.97805324407481,79.39041056221971,63.16867068351948,64.95259614055823,0.2970936160331945,298.1219267477684,0.107337473148803,104.91559771890024,65.33626,45.797846853557424,68326.21517610642,47893.67402906951,197.69506,117.24528686870538,206071.2268886472,121939.86537763051,246.61458,117.12641365833244,254028.0578097549,119442.30855685296,3371.78124,1518.291051121468,3491255.37521961,1552944.7117057096,1450.6878,626.4260536206232,1497173.9626035306,635198.528033154,2404.4042,994.2511263751755,2475873.4418137707,1005634.40502481,0.3827,100000,0,296983,3105.737053459383,0,0.0,0,0.0,16370,170.49067179787502,0,0.0,23114,237.81686605873003,2177660,0,78148,0,0,2646,0,0,43,0.4496779051284196,0,0.0,1,0.0104576257006609,0,0.0,0.07539,0.1969950352756728,0.324180925852235,0.02444,0.3113847700427243,0.6886152299572756,25.583326478365453,4.532352818176944,0.3306616643929058,0.1974761255115961,0.2394270122783083,0.2324351978171896,11.118753985128071,5.638916338780895,26.10051086190811,13376.89101782156,66.32401263308918,13.622999787991924,21.983723753378943,15.539579230240095,15.177709861478244,0.5511596180081856,0.7970639032815199,0.6817947395564724,0.5868945868945868,0.119589141599413,0.7145862552594671,0.92507204610951,0.8336594911937377,0.7354838709677419,0.1705426356589147,0.4986480396575034,0.7422934648581998,0.6274509803921569,0.5447897623400365,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0044089476298105,0.0068591142001927,0.0092026409344845,0.0113508070667927,0.01358562815708,0.0160908757188889,0.0181519331094118,0.0204471798227229,0.0225774082568807,0.0247917777868953,0.0270286929454186,0.0293636503935387,0.0314381133008988,0.0336531014756146,0.0356178554802669,0.0376673991459015,0.0396626751274834,0.0417191321088506,0.0436120178118905,0.0591979431223152,0.0735369623303819,0.0860042229995903,0.0986589130137058,0.1109233223124782,0.1267422156322813,0.1407666393904292,0.1534656631771954,0.1658622202720491,0.1773885008060182,0.1911809153713299,0.2047753814124459,0.2172363430265509,0.22886559505274,0.240041928721174,0.2521297746381882,0.2631101859934197,0.2739982622628948,0.2837923969952197,0.2929454194615455,0.3009108313511632,0.3099059149245677,0.3176871313450195,0.3251141552511415,0.3323676554721069,0.3398150548785758,0.3454912736352116,0.3511938909498859,0.3574518387654096,0.3635797974448931,0.3648451435057564,0.3668880940214614,0.3682596220441278,0.369474767682918,0.3705481596326719,0.3702285969038724,0.3706609076761838,0.3716362078341545,0.3740928385594961,0.3752170255418926,0.3757718373493975,0.3778585040495474,0.3796929944621086,0.3791103818749859,0.3801924657865467,0.3813368283093054,0.3823520985532159,0.3849443969204448,0.3861607142857143,0.3871446329042864,0.3893614086708657,0.392572658772874,0.3942656897100987,0.3966751327637959,0.3970770847263349,0.394991531575127,0.3981293842556508,0.3961562306261624,0.3923055321538893,0.392439594699922,0.0,2.522041095163169,62.99379994179903,222.63092073234944,341.35747078552987,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95689,40902,383.3251470910972,7670,78.9850453030129,5968,61.83573869514783,2345,24.25566157029544,77.28391542799022,79.68061900158321,63.28504443165552,65.0593377322101,77.00310996786378,79.39717814002628,63.18274202099793,64.95838113111671,0.2808054601264445,283.44086155692594,0.1023024106575931,100.95660109338668,65.52612,45.91272746916224,68478.21588688354,47981.19686605801,197.7598,115.8916663714164,206138.20815349725,120581.73496579172,246.16651,116.04305813102629,253430.3733971512,118453.53780043696,3419.10644,1525.189338055167,3545068.962994701,1565826.7283127278,1440.6054,623.4934644951506,1494223.1081942543,640303.2765048913,2319.98026,954.0937097120328,2400327.03863558,974802.5763624344,0.38208,100000,0,297846,3112.646176676525,0,0.0,0,0.0,16335,170.15539926219316,0,0.0,23063,237.2268494811316,2181409,0,78364,0,0,2633,0,0,42,0.4389219241501113,0,0.0,0,0.0,0,0.0,0.0767,0.2007432998324958,0.3057366362451108,0.02345,0.3140780884345363,0.6859219115654638,25.499467646935077,4.608404419500593,0.3203753351206434,0.2131367292225201,0.2293900804289544,0.237097855227882,10.99291020464171,5.325581192383204,24.87272080046779,13359.028352890273,67.04368468671683,14.827247074996738,21.54552623146063,15.151221046731848,15.51969033352762,0.546916890080429,0.7633647798742138,0.7024058577405857,0.5719503287070855,0.1180212014134275,0.7208806818181818,0.929503916449086,0.8602620087336245,0.7298245614035088,0.202127659574468,0.4932017543859649,0.6917885264341957,0.6526822558459422,0.5304428044280443,0.0970873786407767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307188747694,0.0047366926322622,0.006832695412043,0.0088921860550197,0.011131121353642,0.0132222312769945,0.0156968738844408,0.0177105037382032,0.0197289695729992,0.0221270667294966,0.0240782157293226,0.0262011425753154,0.0283082938876312,0.0303714238601698,0.0326499855485362,0.0346657014323388,0.0369196016869242,0.0389989204451087,0.0410555659572697,0.0432208777579755,0.0582059772900583,0.0724082333479908,0.0857952458414231,0.0983553081561142,0.1102890734662431,0.1260783504281646,0.140475684858781,0.1534840626630741,0.1661019485447374,0.1775211436912377,0.1915540322059108,0.205498743391975,0.2185672753405416,0.230057385666725,0.2414306183180866,0.2529998778958118,0.2636486622466207,0.2742682610704746,0.2843861523424181,0.2941594869618089,0.3027421879529248,0.3109315633941554,0.3189606074988135,0.3262666058087299,0.3342344975400653,0.3412944416315744,0.346238258274076,0.3519195728902537,0.3581311513674027,0.3635439092361945,0.3645938692667664,0.3658096340388007,0.3663743267251346,0.3678106063892866,0.3685433768865184,0.369028234354358,0.3698327748574695,0.3704605263157894,0.3713776192599197,0.3729713250721805,0.37416120033175,0.3751817837719385,0.3760658443179654,0.3777627118644068,0.3781815524758263,0.3798862079865135,0.3803289983636207,0.3820074915878357,0.383147853736089,0.3833034469017732,0.3843266501876773,0.3850832266325224,0.386509635974304,0.3880393641180923,0.3913328341445151,0.391732984915073,0.3920184190330008,0.3964110929853181,0.3969679955081415,0.3995372155804088,0.0,2.0774277010871653,62.53454266075261,225.8616386572833,351.2727358946772,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95660,40691,381.2774409366506,7597,78.13088020071085,5888,61.01818942086557,2372,24.440727576834625,77.35161970545354,79.75890529835911,63.31721993396855,65.09485340353095,77.06069733450329,79.46601685180832,63.21015271734146,64.98962773693893,0.2909223709502555,292.8884465507906,0.1070672166270938,105.2256665920197,65.47288,45.82665233089524,68443.32009199247,47905.76241991976,196.83298,116.52011914916658,205215.0637675099,121267.41930032716,242.99637,115.38873699493952,251293.9577670918,118413.76852096296,3399.28864,1526.2726681496215,3523950.7003972405,1566422.1290861417,1435.93292,618.5352720279852,1487262.9834831697,632780.8091448724,2352.22228,977.5310473421196,2425248.1287894626,992266.4897359316,0.38006,100000,0,297604,3111.060004181476,0,0.0,0,0.0,16228,169.0779845285386,0,0.0,22859,236.1697679280786,2184352,0,78296,0,0,2544,0,0,37,0.3867865356470834,0,0.0,2,0.0209073803052477,0,0.0,0.07597,0.199889491132979,0.3122285112544425,0.02372,0.3083187171135054,0.6916812828864947,25.52710840011832,4.732151619872746,0.3413722826086957,0.1891983695652173,0.2282608695652173,0.2411684782608695,11.039422966055294,5.291824417578712,25.211318071613032,13207.297489030992,66.19152630126786,12.938368648185117,22.73487508828981,15.071450492781446,15.446832072011487,0.5448369565217391,0.7872531418312387,0.6945273631840796,0.5625,0.126056338028169,0.7041172365666434,0.9184952978056428,0.883399209486166,0.7078313253012049,0.1231884057971014,0.4936026936026936,0.7345911949685534,0.6309840425531915,0.5148221343873518,0.1267482517482517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681644562871,0.0044922172083354,0.0069214687316053,0.0092965130455986,0.0113824776978709,0.013515991036871,0.0157854484270636,0.0180739500260387,0.0203783231083844,0.0223906586090341,0.0246219504688429,0.0269128799556076,0.0292156338115133,0.0311446509757832,0.0331670333529588,0.0350525063369717,0.0369913559005824,0.0391686650679456,0.0414594560852285,0.0432719879046973,0.0579501165062746,0.0716491984880689,0.0847582160363594,0.0978522797823868,0.1098504438135244,0.1250304319752733,0.1382063751619274,0.1522842098531198,0.1650492708344478,0.1762444289319658,0.1899682936824623,0.2033587951676689,0.2160184660946822,0.2279918109063837,0.2386433732816355,0.2496534593078057,0.2603768524106484,0.2705937996193736,0.2807957848837209,0.2901936075151793,0.2982701764535724,0.3062100253732914,0.3142701653928968,0.3211774149105677,0.3279861077378928,0.334910251198088,0.3417924068355981,0.3480095581880116,0.3536661062976852,0.3592629692113032,0.360138400850869,0.3614656690140845,0.362885726363252,0.3636771041142626,0.3649289804417342,0.3653498421649453,0.3644631765749778,0.3652448449370211,0.3658645199965745,0.3670570957805,0.3687160294145304,0.3694097132779836,0.3700275574815407,0.3708950707224676,0.3724385369260035,0.3741223147398919,0.3753429355281207,0.3763491762923688,0.3785993726430057,0.3797534016998523,0.3807910639077092,0.382922301776717,0.3858456113839567,0.385643375334097,0.3848473426309838,0.3875885247869403,0.3859621939882243,0.3837540716612377,0.3823207443897099,0.3749524172059383,0.0,2.026209655879388,63.55705862950997,221.9027674731914,340.349036719852,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95787,40662,379.57134057857536,7450,76.51351435998622,5782,59.73670748640212,2412,24.80503617401109,77.3507064425629,79.67726972926508,63.34838135415546,65.0692498507463,77.05753720703646,79.38497547577057,63.24225504506141,64.96632427441783,0.2931692355264346,292.29425349450366,0.1061263090940443,102.92557632847377,65.12066,45.63316038924943,67984.40289392088,47639.81814149044,195.47884,115.56426642422268,203456.00133629824,120027.3762060224,240.47811,114.23088335664104,246724.6494827064,116036.1253391294,3345.09272,1499.1340243210998,3457457.525551484,1530380.9555796687,1420.98307,617.9913860637441,1469443.5883783812,631133.9180303634,2381.94484,977.1477293909184,2450816.352949774,988897.6353721974,0.3799,100000,0,296003,3090.2001315418584,0,0.0,0,0.0,16096,167.381795024377,0,0.0,22610,231.79554636850511,2188635,0,78510,0,0,2562,0,0,53,0.5428711620574816,0,0.0,0,0.0,0,0.0,0.0745,0.1961042379573572,0.3237583892617449,0.02412,0.3107042969743198,0.6892957030256801,25.528692705453075,4.576921209871061,0.3332756831546177,0.1898996886890349,0.2319266689726738,0.2448979591836734,11.295059999969329,5.745974680547186,25.59232765237653,13283.214155542302,65.06465872380504,12.80222763723304,21.706554045470792,14.94290712645376,15.612969914647444,0.5425458318920788,0.76775956284153,0.6933056564608199,0.5764354958985831,0.1306497175141243,0.7139705882352941,0.9192546583850932,0.8722466960352423,0.7484076433121019,0.1629629629629629,0.4898236092265943,0.7048969072164949,0.6381534283774609,0.5238558909444986,0.1230366492146596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715368096916,0.0048053527980535,0.0069509980009538,0.0091825125954818,0.0115198470798763,0.0135807873598908,0.015888060005707,0.0182363686461001,0.0204992999989781,0.0227898361628751,0.0248993267959792,0.0269862606072421,0.0290529777503725,0.0313970126514519,0.0335337244913742,0.0356618938407818,0.0379648599987583,0.040099523118391,0.0420392352348609,0.0441214746025631,0.0584773353368394,0.0729738490333239,0.0862249711709822,0.0988923219202555,0.1107762027717763,0.1266938671965837,0.1400803792032066,0.1528966075001064,0.1649889516327031,0.1768778198107445,0.1908692704241419,0.2047397257313291,0.2179647354069117,0.2294399720368327,0.2397933384632296,0.2510591228361263,0.2621087700141505,0.2720430469899684,0.2816278885274885,0.2909128360053555,0.2997227356746765,0.3077579056808757,0.3154321133691358,0.322098051193599,0.3296429828714325,0.3359448139935945,0.3414216207427049,0.3476180781758957,0.3533717691261255,0.3593170693090208,0.3601066264573628,0.3619637815878262,0.3637453458196998,0.3648584051568045,0.3657984482270771,0.3658345495045702,0.3669469568120042,0.3678616227635835,0.3697336104288683,0.371036092655773,0.3714350427511749,0.3734402674680093,0.3746909275343942,0.3762015696740777,0.3762765312310491,0.3775209309673003,0.3787337100680429,0.3796367112810707,0.3822838847385272,0.3868314408377803,0.3892356776251907,0.3904091032240585,0.3920421675130166,0.3954212739448684,0.396078431372549,0.3963974854932302,0.3975544756231384,0.3932607785684386,0.3904734740444952,0.3893735130848533,0.0,2.3949410997774305,59.69596920009135,220.59391375684223,341.54798179537426,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95731,40437,378.780123470976,7465,76.86120483437968,5837,60.356624290982026,2372,24.370371144143487,77.31652017658898,79.67606761343121,63.31665033110207,65.06200874432601,77.02622852767512,79.3862976116332,63.21069491578322,64.95897961900712,0.2902916489138647,289.7700017980185,0.1059554153188457,103.02912531888352,65.9714,46.22498075023904,68913.30916839895,48286.32391831177,196.65792,116.22883129576998,204779.3609175711,120763.93995970166,240.32901,114.14235862440604,246537.54792073625,115869.89555574964,3353.67112,1504.1739765652,3471211.2064012703,1539248.2689329812,1430.01054,614.3436659958468,1482843.1751470263,630829.3237881672,2339.94988,965.7420694711446,2408251.120326749,979231.8460018162,0.37875,100000,0,299870,3132.4231440181343,0,0.0,0,0.0,16286,169.4644368073038,0,0.0,22617,231.8893566347369,2180278,0,78289,0,0,2595,0,0,35,0.3551618597946329,0,0.0,0,0.0,0,0.0,0.07465,0.1970957095709571,0.3177494976557267,0.02372,0.3064045656309448,0.6935954343690551,25.64117659941433,4.580381242662151,0.3366455370909714,0.1944492033578893,0.2319684769573411,0.2369367825937982,11.153784564304525,5.55886779026678,25.19262447177089,13167.513904394904,65.7626116882226,13.222109598446682,22.484664542490624,14.98725938000701,15.068578167278288,0.5403460681857118,0.760352422907489,0.6880407124681934,0.5709010339734121,0.1200289226319595,0.7084507042253522,0.902439024390244,0.8563432835820896,0.7310344827586207,0.1466165413533834,0.4863029205342993,0.7026022304832714,0.6249125262421273,0.5272556390977443,0.1136974037600716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021778547624112,0.0046329619529404,0.0069931489469677,0.0094191044230163,0.0115152994791666,0.0136170126087222,0.015777181728249,0.0175546092337857,0.0196627777380136,0.0216129329497404,0.0237477569853883,0.0258556070112027,0.028145405933467,0.0302128492137862,0.0321522512764969,0.0343448746164099,0.0363338992174237,0.0383486333696385,0.0406232783442999,0.0427150075532635,0.0578936927719019,0.0715638570606393,0.0841687990268048,0.0973111664931596,0.1095247635416556,0.1248413571368136,0.1381274663724699,0.1511916293229161,0.1636967715744717,0.1750557844146927,0.1885804762981872,0.2018764609124751,0.214578553019346,0.2261718621866013,0.2378016558041219,0.2492711855013024,0.2598954610436025,0.27086920799991,0.2810481261566058,0.289602768927499,0.2984462917081529,0.3068919915269114,0.3148325812220919,0.3219248769950798,0.3281850464561949,0.3344442798597739,0.3408606731998295,0.3467567223142602,0.3528992364631,0.3578895893633612,0.3589007106544223,0.3600104886901558,0.3611881188118812,0.3618845858061146,0.3630289200113353,0.3640696101340548,0.3649633877090713,0.3655578655578655,0.366623722408314,0.3675534783390257,0.3693880630800573,0.3704109043876231,0.3717228859712078,0.3729890496147087,0.3729466492222706,0.373689177852349,0.3732705666226534,0.3762651821862348,0.3756755802041753,0.3774988005757236,0.3784652102074536,0.3789270178830353,0.3829692376281765,0.3823101096037403,0.3842500237484563,0.3823387291616332,0.3824856120703064,0.3897361912613355,0.3954468802698145,0.392618767177071,0.0,2.3268389257203146,62.9141733483938,218.46278856591476,340.4950999389484,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95679,40704,380.4387587662914,7613,78.43936495991805,5915,61.24645951567219,2390,24.59264833453527,77.40264542862671,79.7845018433529,63.35728834693722,65.11251791811408,77.11521111364695,79.49608113421435,63.25386046592672,65.01162501273699,0.2874343149797624,288.4207091385491,0.1034278810104964,100.89290537709417,65.4126,45.80591139976564,68366.49630535436,47874.36178441001,196.08058,114.82139677705518,204367.4264990228,119439.48368833476,235.46831,110.7574998353035,242803.8441037218,113142.6815005353,3410.26352,1506.4848788183958,3531842.3478506254,1542175.9057686368,1418.97466,605.5637978099686,1470229.4442876703,620129.4819063519,2357.99656,963.0863045873472,2428206.482091159,975290.1299093576,0.38111,100000,0,297330,3107.568013879744,0,0.0,0,0.0,16185,168.5531830391204,0,0.0,22179,228.54544884457405,2191157,0,78503,0,0,2575,0,0,30,0.3030968133028146,0,0.0,1,0.0104516142518211,0,0.0,0.07613,0.1997585998792999,0.3139366872455011,0.0239,0.3130608175473579,0.6869391824526421,25.731443505214017,4.595310578462444,0.3273034657650042,0.1989856297548605,0.2349957734573119,0.2387151310228233,10.88453542259505,5.356489826596395,25.212286787922256,13269.61425412378,65.92330496074706,13.699976379838915,21.434605088279778,15.43100014450959,15.357723348118787,0.5320371935756552,0.7493627867459643,0.6730371900826446,0.5798561151079137,0.1104815864022662,0.7041942604856513,0.913649025069638,0.8581235697940504,0.7138263665594855,0.1269841269841269,0.480684811237928,0.6772616136919315,0.619079386257505,0.541241890639481,0.1068965517241379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392168180575,0.0046824166134573,0.0068370866301481,0.0091811137178432,0.0112465807750582,0.0134105859112477,0.0154454718770071,0.017452363213276,0.0197232611850307,0.0218492554878984,0.024160234529557,0.0265484000123194,0.0287068548926063,0.0308557421959483,0.0332029839350385,0.0355647886887228,0.0377530416774527,0.0401490152128344,0.0420068434025647,0.0441285292922134,0.0586901789538564,0.0731704763201156,0.0867858791923771,0.099396196246739,0.1112130704890885,0.1260315713741588,0.1393870577498567,0.1521306379671914,0.1641822941710744,0.1763911080608666,0.190592593390263,0.2038546029066432,0.2161762467105978,0.2283968163729391,0.2393026069739302,0.2511153177687003,0.2622062692290542,0.27222790128172,0.2823858552221731,0.2909063886221246,0.2988488494267339,0.3069355459860658,0.31540287438444,0.3227492971226894,0.3303258510083555,0.3372181746578714,0.3435120231083768,0.3496245855195456,0.3551231495248562,0.3607108043312169,0.3618582893091906,0.363266875377602,0.3644335764576921,0.3652512436017591,0.3661033546491787,0.3671139809955167,0.3673482316793107,0.3686511719648904,0.3692157901030012,0.3704332291201429,0.3716119828815977,0.3722087306758277,0.3719016915089599,0.3741519446496943,0.3745958206650258,0.3761686526122823,0.3764513632063301,0.3764962258787859,0.3777447756444256,0.3799456478299097,0.3803483615974999,0.3840322580645161,0.3849532174909299,0.3855727126065914,0.3847546450690805,0.3881273095720586,0.3909062693978895,0.3967280163599182,0.3945691327237461,0.3880998080614203,0.0,2.222469931534764,60.09014076495979,220.01852117030103,353.7041062382329,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95722,40976,383.5168508806753,7525,77.35943670211655,5859,60.571237542048856,2349,24.153277198554147,77.33907921770925,79.70585295870681,63.32552877917672,65.07553999435027,77.04929061694877,79.41591827018523,63.219505858486976,64.97197818226789,0.2897886007604882,289.93468852158344,0.1060229206897389,103.56181208237558,66.5016,46.59831877501978,69473.68421052632,48680.88712628213,196.17201,115.83599402928958,204324.35594743112,120397.96914950544,241.9513,115.01858567714844,248811.85098514447,117095.2081148229,3392.32336,1520.3470132907871,3510431.4995507826,1554792.9350523264,1434.186,617.8623137625142,1480497.1375441384,627755.5879159836,2318.93884,964.9072159539436,2387118.17555003,977920.5772484732,0.38329,100000,0,302280,3157.894736842105,0,0.0,0,0.0,16212,168.69685129855208,0,0.0,22801,234.146800108648,2179614,0,78173,0,0,2624,0,0,38,0.3969829297340214,0,0.0,0,0.0,0,0.0,0.07525,0.196326541261186,0.3121594684385382,0.02349,0.3129559748427672,0.6870440251572327,25.487817756505528,4.617020169437671,0.3275302952722307,0.1940604198668714,0.2386072708653353,0.2398020139955624,11.197250631512553,5.589345853756667,25.199525122194373,13362.493782867548,65.80223290561547,13.319445507645405,21.659253714280723,15.463438662735468,15.360095020953882,0.53899982932241,0.7607739665787159,0.6868160500260553,0.586552217453505,0.1103202846975089,0.7058011049723757,0.9297297297297298,0.8445807770961146,0.7210031347962382,0.1296296296296296,0.4842439356155067,0.6792698826597132,0.6328671328671329,0.5468025949953661,0.105726872246696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0046437117248651,0.0070643403063244,0.0094395220289383,0.0115459345086111,0.0138915764495004,0.0160097894253811,0.0182543976967605,0.0204298656414241,0.0224810012495135,0.0247879639410503,0.0270123147396855,0.0294035975440436,0.0314125877007716,0.0338776605627696,0.0358730946619511,0.0379674712524603,0.0398713158987131,0.0419279363593823,0.0437559252815485,0.0591281649699817,0.0730615106144783,0.0868370834818713,0.0998874833065186,0.1120813296211929,0.1270138470163858,0.1405805712345626,0.1536577835035082,0.1657867738212285,0.177057624208606,0.1909452425342975,0.2050854432435944,0.2176945508356546,0.2292439512819671,0.2410675944990696,0.2531813949363721,0.2639242485148957,0.2744831001609508,0.2842077780552591,0.2932842749561569,0.3019309131320615,0.3096996150110582,0.317585953952817,0.3256499341080627,0.3325927274934742,0.3390289541067559,0.3445598769830851,0.3510470671952831,0.3570403135063826,0.362154032875122,0.3633696676086664,0.3645074688511048,0.3651759127280938,0.3663855561351649,0.3676871508379888,0.3686902037870295,0.3696801333439162,0.3699986816953398,0.3706769241336676,0.3715599626356255,0.3728034654863923,0.3750918661237462,0.3759520302966547,0.3765801430563678,0.3788884330429326,0.3806323387117864,0.3813087864189034,0.3836903895446346,0.3865644215138879,0.3886487351905219,0.3884776311554554,0.3907056798623063,0.3918849840255591,0.3918626237623762,0.3952981325244099,0.3911266081519778,0.3964459820726529,0.4001662164969873,0.394505805720759,0.3944160440424695,0.0,2.442738377208834,63.81592141103609,212.17756009641707,345.3423153719417,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95693,40551,379.9964469710428,7485,77.03802785992706,5895,61.09119789326283,2384,24.59950048592896,77.30793472821749,79.68258829310574,63.31631099018998,65.06962415913233,77.02128250361811,79.39205633518527,63.21296655741877,64.96659649083679,0.2866522245993792,290.5319579204644,0.103344432771216,103.02766829553887,66.1001,46.28606218290702,69075.16746261482,48369.32919117074,196.52559,115.4882116761933,204864.0861923025,120179.33566320762,244.15108,115.5998231628761,251423.3538503339,117996.89004207212,3378.42852,1511.9305177197728,3503520.173889417,1553013.8648801618,1493.18909,641.9002777491064,1547121.9315937427,657517.8725184773,2352.6192,963.7131632765918,2429638.740555736,983546.4047956296,0.37941,100000,0,300455,3139.7803392097644,0,0.0,0,0.0,16180,168.549423677803,0,0.0,22998,236.5794781227467,2180819,0,78372,0,0,2679,0,0,35,0.3657529808867942,0,0.0,1,0.0104500851681941,0,0.0,0.07485,0.1972799873487783,0.318503674014696,0.02384,0.3117408906882591,0.6882591093117408,25.71841169906184,4.561134038604032,0.3190839694656489,0.2047497879558948,0.240373197625106,0.2357930449533503,11.179065747293835,5.655122577402738,25.252494968707293,13230.320614408152,66.40338409931363,14.205082922818988,21.261418709330776,15.67193144322922,15.264951023934652,0.5572519083969466,0.7754763877381938,0.7070707070707071,0.5935074100211715,0.1280575539568345,0.7263157894736842,0.925925925925926,0.8682008368200836,0.738255033557047,0.1845018450184501,0.5033557046979866,0.706875753920386,0.6521739130434783,0.5549597855227882,0.1143878462913315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0045296096631672,0.0067560027997849,0.0092833346875761,0.0114107883817427,0.0137978086432324,0.0158456628361085,0.0180091883614088,0.0200269888977488,0.0222538411931498,0.0245110099643252,0.0267248459958932,0.0288984645762415,0.0309979293506814,0.0329587551207834,0.0350552551869579,0.0370819346015168,0.0389929924733973,0.0410772239327619,0.042915368017262,0.0571762813482488,0.0713089531305603,0.0845162034851393,0.0972918967239838,0.1095110586350123,0.1248651735295983,0.1386743613680726,0.1522331502533316,0.1650499957268609,0.1767961727415098,0.1910936406224759,0.204251636284957,0.2172362426469788,0.2291771446065032,0.2400998811985744,0.2508500858392867,0.2616069535721857,0.271496877988412,0.2809042317774827,0.2895176996219498,0.2980593316504944,0.3068733547821,0.3149238001634122,0.3224606374807988,0.3290789633775398,0.335419675814476,0.3412351996789083,0.3478771177791386,0.3541306804161201,0.3590863374093483,0.3603326313515848,0.3615564116371871,0.3630258991178466,0.3644199376042951,0.3654095840733057,0.3653050870908727,0.3654249904568011,0.3667569710585436,0.368150390423446,0.3695093688805849,0.371259292803502,0.3721583550835807,0.3727157628191601,0.3732250151900443,0.3740635682595097,0.373874111140374,0.3755035101852917,0.3757190529159383,0.3770380918476326,0.3777296082209377,0.3800110844263809,0.3827406251681282,0.3841436146425605,0.3887902416428626,0.3922315308453922,0.3946295852313594,0.3980999080600674,0.395240032546786,0.3990687482881402,0.4003831417624521,0.0,1.944288080047476,63.27039716214969,225.32980667940143,340.21916307808635,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95710,40655,380.7648103646432,7581,78.10051196322225,5870,60.79824469752377,2340,24.062271444990078,77.38171245272493,79.75509947371397,63.34258245905804,65.09468820615568,77.0900230011911,79.4628224615111,63.23638345578468,64.99095468701606,0.2916894515338271,292.2770122028737,0.1061990032733604,103.7335191396238,65.14926,45.6743430671828,68069.43893010134,47721.59969405789,197.62107,116.6235549730664,205884.7664820813,121258.0400043716,244.21379,115.50100656820882,252297.69094138543,118399.76289843024,3357.39848,1502.4861013909244,3478224.9294744544,1540484.4950862634,1428.3742,620.1599191631635,1474778.403510605,630570.4774567173,2309.05576,961.0823934550496,2376776.031762616,973542.2409812538,0.37952,100000,0,296133,3094.0654059136978,0,0.0,0,0.0,16230,169.02100094034063,0,0.0,22935,236.70462856545817,2186527,0,78406,0,0,2551,0,0,49,0.5015149932086511,0,0.0,0,0.0,0,0.0,0.07581,0.1997523187183811,0.3086664028492283,0.0234,0.302591847005536,0.697408152994464,25.63847325591008,4.617673443201336,0.3441226575809199,0.1884156729131175,0.2374787052810903,0.2299829642248722,10.93764690985437,5.382314088367278,24.92305550781084,13203.615875719464,65.79232777977526,12.835967499587866,22.66143223499707,15.497639761810758,14.797288283379562,0.5412265758091993,0.7386980108499096,0.693069306930693,0.5803443328550932,0.1118518518518518,0.7104499274310595,0.923529411764706,0.8828633405639913,0.7508417508417509,0.125,0.4893143365983971,0.6566579634464752,0.6369467607440668,0.5341841385597083,0.108411214953271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020154756117322,0.0043082038337945,0.0064435604984373,0.0085935436686102,0.0109038387208332,0.0131975560081466,0.0155289319398419,0.0179264159418514,0.0202304161597988,0.0223666700788207,0.0245327701629025,0.026673237441094,0.0288969786717673,0.0310980634528224,0.0330433526309814,0.0350802824619265,0.037170139608103,0.0391615648023243,0.0412575921457692,0.0431225836034139,0.0576489263931823,0.0717441373534338,0.0851240189700759,0.0980338526599269,0.1100691953925994,0.1256107104333664,0.138743594368349,0.1525981284532592,0.1647758834337478,0.1763652160854688,0.1908625612844135,0.2048453619407428,0.2171439758970622,0.2289275172187602,0.2397289656917204,0.2513506930605376,0.2619557458957887,0.2721659224600434,0.28138611615245,0.2910587911962073,0.2998761846353232,0.3075492878692205,0.3148143763613978,0.3216327998561409,0.3279337959193593,0.3346608633466086,0.3401632162615465,0.3462268356365026,0.352113041223749,0.3572871687200412,0.3591719084627507,0.3603710227898271,0.3613428796933138,0.3627356106015743,0.3637159735209428,0.3637823945170272,0.3636651519229856,0.3656323329121609,0.3663344369730689,0.367816091954023,0.3691693081006058,0.3700015836566632,0.3706728654897279,0.3717374759367865,0.371831936012335,0.3739214306196397,0.3749037501782404,0.3773905385002516,0.3765288907633909,0.3768693918245264,0.3756070741317694,0.3734197557317334,0.3746489660454429,0.3761864341384366,0.378296049500238,0.3756766510285095,0.3753874767513949,0.3692783505154639,0.3721191680719505,0.3670338316286388,0.0,2.053766936772377,60.97824767114682,222.64318648299405,344.9748639459469,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95852,40920,383.50790802487165,7616,78.16216667362183,5885,60.76033885573592,2415,24.78821516504611,77.44506122741345,79.72213541748148,63.40474875222951,65.08364531993234,77.15413804710548,79.43218496437775,63.299038328261496,64.98143749309286,0.2909231803079706,289.950453103728,0.1057104239680128,102.20782683948926,65.79936,46.13002512511319,68646.83053040103,48126.30422433877,199.58322,118.50172238460428,207595.69962024788,123005.39621980168,247.42861,118.2036085673033,253713.20368902056,119933.52762156753,3400.14572,1524.1411284382418,3512995.785168802,1555807.0029193377,1436.08531,621.0848385079572,1480464.852063598,630204.4281644013,2378.30828,972.634573030214,2443694.0908901226,982026.0083621846,0.38166,100000,0,299088,3120.3104786545923,0,0.0,0,0.0,16508,171.556149063139,0,0.0,23235,238.09623169052287,2182509,0,78399,0,0,2605,0,0,38,0.3860117681425531,0,0.0,0,0.0,0,0.0,0.07616,0.199549337106325,0.3170955882352941,0.02415,0.3201798201798201,0.6798201798201798,25.31659649996096,4.553482747059797,0.3320305862361937,0.1918436703483432,0.2395921835174171,0.2365335598980459,11.234608779506637,5.700732522426641,25.46518853203664,13255.81624857501,66.00905909716664,13.150884226514195,22.045730157519863,15.69108428690699,15.121360426225593,0.545964316057774,0.7723649247121346,0.6908904810644831,0.5758865248226951,0.1285919540229885,0.7214386459802539,0.904494382022472,0.8987603305785123,0.7269736842105263,0.1642335766423357,0.4902619207521826,0.7115135834411385,0.6224489795918368,0.5343580470162749,0.1198568872987477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0045482632522614,0.006905082992811,0.0090942308473062,0.0112585607738736,0.0132667283881535,0.0156033569624378,0.0178857311837825,0.0198000592265825,0.021881390593047,0.0240323571574851,0.0263165991487616,0.0285626251733169,0.0305293258450081,0.0324126065051874,0.0345268938181893,0.0365992388516588,0.0386616098814556,0.0406644173371398,0.0424843402076873,0.0569864442127215,0.0706345723897281,0.0843498382317526,0.0972579308028921,0.1094872847027135,0.1253285203128463,0.1391539153915391,0.15200067999745,0.1640524199997867,0.1758221765606104,0.1899255215106344,0.2042458076428857,0.2173554347000141,0.2289276317944127,0.2397803404722679,0.2509708469325662,0.2611743986445817,0.271216343776689,0.2815355660869368,0.2903635552198839,0.2991673412744304,0.3078551545065381,0.3162828129808033,0.3229862757778257,0.3300590106607737,0.3368116299125293,0.3432430062264316,0.3492944832153227,0.3553029026277921,0.3611309193671922,0.3626098205142025,0.3637589804288585,0.364484928691098,0.3657772839434912,0.3669114919504414,0.3673800061143381,0.3681058187679762,0.369165464796119,0.3706618412741767,0.3716762078005457,0.3730593264831621,0.3741236582564265,0.3746483013480032,0.3750083992205523,0.3749458066380847,0.3760967202841028,0.3763796594700966,0.3784115591651714,0.378393546124167,0.3800031829394446,0.3839093120381844,0.3851855830692378,0.3885354370785087,0.3927103528499418,0.3954358040080544,0.3933470923880053,0.3961611076148521,0.3980602993885726,0.4009661835748792,0.398,0.0,2.4816665003450398,62.27300420484169,224.28528880758472,337.931899896743,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95686,40437,378.10128963484726,7618,78.32911815730618,5942,61.534602763204646,2381,24.51769328846435,77.29747507811412,79.70090286136447,63.28577397120039,65.06586684400675,77.00688917494335,79.4089366490691,63.18019875228309,64.96219157299042,0.2905859031707649,291.9662122953639,0.105575218917302,103.67527101632844,65.74656,46.06636292384008,68710.74138327446,48143.2633027194,196.7793,115.46522979209068,205096.5658508037,120123.83980967646,239.28121,112.8570220093647,246483.4040507493,115198.59161976948,3425.71348,1523.5659595366783,3547765.315720168,1560406.0310107565,1455.44637,619.8823183563752,1506274.2825491712,633100.0470205221,2362.88762,970.9714461293606,2434312.940242042,985837.3701931172,0.37881,100000,0,298848,3123.2155174215663,0,0.0,0,0.0,16276,169.51278138912693,0,0.0,22523,231.87300127500365,2180725,0,78235,0,0,2566,0,0,40,0.4075831365089981,0,0.0,2,0.0209016993081537,0,0.0,0.07618,0.2011034555581954,0.3125492255185088,0.02381,0.3138640873015873,0.6861359126984127,25.69450046939778,4.56994941508895,0.3187478963312016,0.2049814877145742,0.2346011443958263,0.2416694715583978,10.956825317299424,5.359775005724458,25.07455498227193,13280.971411521314,66.3863237021273,14.137968350686837,21.27782557558495,15.312803547768372,15.657726228087135,0.5373611578593066,0.7602627257799671,0.691129883843717,0.56025824964132,0.123259052924791,0.7019579405366208,0.9226519337016574,0.8448275862068966,0.7378277153558053,0.1573426573426573,0.487617795310103,0.6915887850467289,0.6412587412587413,0.518189884649512,0.1147826086956521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.004594972917047,0.0069343621503629,0.009155573620567,0.0113423665364583,0.0135468231171952,0.0159418220390844,0.0182798553951103,0.0204035713920451,0.0227237816305004,0.0247607520539936,0.0269770499886996,0.029392399333347,0.0314393471002844,0.0336905794407962,0.0357793040671935,0.0378627694859038,0.039862107634959,0.041770268723796,0.0437501302707547,0.0585390312437977,0.0725875677825932,0.0860554675285155,0.0982190757708046,0.1101722628353217,0.1258093867704939,0.139701511548913,0.1524059045306409,0.1646706586826347,0.1755150682284229,0.1892133813601363,0.2021570646577421,0.2158417567096549,0.2278145405144835,0.2393094553031054,0.2514146233218684,0.2623537170129768,0.2726310097778578,0.2821494721770848,0.2909916417294397,0.2995387966997311,0.3077562975981253,0.3157819888363494,0.3229049071649893,0.3297421663866773,0.335724958938958,0.3420917311527222,0.3480130675582553,0.3542841549936329,0.3603400783981354,0.362026787765749,0.3636753022452504,0.3653394459065568,0.3662366309190381,0.3674618903574781,0.3677543186180422,0.3685579683707945,0.3698753986257684,0.3715774190793406,0.3723812755621439,0.3727940349956911,0.3735716262702147,0.3746039074140138,0.376052301629948,0.3762564782451488,0.3774611060269316,0.3787224304145092,0.3807763984964781,0.3832356472000565,0.3868143291220214,0.3867811868454896,0.3863368669022379,0.3856724774144293,0.3868714011516315,0.387425092742319,0.3857776711835951,0.3869761645116061,0.3900884227842895,0.3957115009746588,0.4048080651415277,0.0,2.1464498310600915,60.92555647958682,224.5105185825057,350.6281292994601,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95849,40731,381.3811307368882,7632,78.64453463259919,5891,61.08566599547204,2371,24.538597168462893,77.32864418348662,79.63934652951825,63.32870225298407,65.03844910630158,77.04253317547703,79.34804398877138,63.22525707839591,64.93463901205713,0.2861110080095841,291.30254074686945,0.1034451745881597,103.81009424445152,66.29326,46.433654104435256,69164.26879779654,48444.588993557845,197.79711,116.7245454321644,206005.15394005156,121421.5228454803,239.62074,112.6729923221339,247482.16465482165,115639.45987935038,3373.392,1505.07669682244,3498885.330050392,1549657.583096786,1433.16292,618.8342425187135,1483196.423541195,633601.0417622653,2328.72238,956.6717805288192,2410594.0176736326,981574.0492008278,0.38139,100000,0,301333,3143.830399899842,0,0.0,0,0.0,16292,169.60010015753946,0,0.0,22627,233.58616156663084,2177710,0,78298,0,0,2660,0,0,50,0.511220774342977,0,0.0,1,0.0104330770274076,0,0.0,0.07632,0.2001101234956344,0.3106656184486373,0.02371,0.3114549538307961,0.6885450461692039,25.55485186930377,4.5936879542449205,0.3337294177558988,0.1980987947716856,0.2410456628755729,0.2271261245968426,11.243496650509064,5.619490377561528,25.19229805178042,13304.072317327897,66.26614450435014,13.508217673486792,22.16844324432613,15.865234327736214,14.724249258801011,0.543201493804108,0.7617823479005998,0.6856561546286877,0.5690140845070423,0.1158445440956651,0.6926345609065155,0.916923076923077,0.8435517970401691,0.7079646017699115,0.149090909090909,0.4960928778745255,0.7019002375296912,0.6356329537843268,0.5254394079555966,0.1072436500470366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686990428925,0.0044297125248347,0.0067468168213869,0.0088269949618072,0.0109517998779743,0.0130217878232539,0.0152583834471511,0.0171961586741098,0.0195495329777014,0.0217649346131019,0.0238836861411094,0.025963630392841,0.028034982067066,0.0302241072255793,0.0324722866718226,0.0342244994938121,0.0366530071608924,0.0389001783270435,0.0410054009140008,0.042723478659076,0.0574989570296203,0.0718669301299543,0.0854504674464428,0.0984175020490511,0.1106180699017665,0.1260583254938852,0.1399245026933027,0.1531889085143963,0.1655346959697571,0.1777463308997738,0.1919390963518111,0.2056277992946318,0.2181397068418076,0.230281566981462,0.2405219266398222,0.2520962793119108,0.2632636655948553,0.272815293508365,0.2829760174418604,0.2923738532110091,0.3004857576776377,0.3082894567116573,0.3161494075463633,0.3241970175796974,0.3313245678110543,0.3383990518752623,0.3444763613100688,0.350563861815584,0.3564321712474671,0.3614740102450065,0.3627354350907986,0.3642779212528829,0.3656268576442947,0.3665286554804968,0.3681892162279195,0.3689087271048176,0.3702089067795261,0.3715736207948046,0.3722412611377655,0.372733618514077,0.374228627332932,0.3749528329990269,0.3753393522318328,0.3756597120848025,0.3757587482769461,0.3764619306683487,0.377479646829492,0.3797180249099071,0.3805213103205354,0.3823880834793691,0.3841499747903011,0.3870501285347044,0.3865038478661833,0.3861569292431016,0.3850837138508371,0.3874788494077834,0.3908401671050596,0.3860694472981302,0.3925389755011136,0.3976377952755905,0.0,1.4894168378619137,63.52120941935217,220.896317348353,345.5646157782105,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95739,40874,381.6522002527705,7645,78.48421228548449,5898,60.94694951900479,2386,24.49367551363603,77.35098256499538,79.6998389202427,63.33757887846742,65.07119893789489,77.05468867439106,79.40365170595273,63.22812234802496,64.96481276665696,0.2962938906043177,296.1872142899722,0.1094565304424648,106.38617123792926,65.50126,45.90669092702039,68416.48648930948,47949.83332499859,197.58369,116.0877060897685,205722.76710640383,120601.05534008388,239.49695,113.07731393470932,246241.87635133017,115049.76931376976,3411.53784,1516.496975991084,3526552.1052026865,1547737.2809822182,1422.28748,610.1358131813139,1469413.5932065304,621341.3106739454,2362.10644,983.6546051083589,2427859.973469537,993938.2018568526,0.38186,100000,0,297733,3109.8402949686124,0,0.0,0,0.0,16252,169.06380889710567,0,0.0,22493,231.0657098987873,2184968,0,78387,0,0,2528,0,0,36,0.3760223106570989,0,0.0,0,0.0,0,0.0,0.07645,0.2002042633425862,0.3120994113799869,0.02386,0.3116786511281924,0.6883213488718076,25.76091211852676,4.61894458825091,0.3345201763309596,0.1922685656154628,0.2309257375381485,0.2422855205154289,11.01329293851212,5.425912388604826,25.38592885011654,13356.548635681527,65.94857810809476,13.090320589406442,22.05291879664411,15.129914090857255,15.67542463118698,0.5350966429298067,0.7451499118165785,0.696908261530664,0.5675477239353891,0.1140657802659202,0.6879942487419123,0.9233038348082596,0.862144420131291,0.7133333333333334,0.1220338983050847,0.4879076991346794,0.6691823899371069,0.6470976253298153,0.5263653483992468,0.1119929453262786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0045813441988222,0.006879547045752,0.0091411391890793,0.0116318085225366,0.0138245564027649,0.0160650757892376,0.0183092985517895,0.0206157116866657,0.0231301428746878,0.0251760581427531,0.0273868547203317,0.0296615397269287,0.0318405091186192,0.0339093206788053,0.0360306353422703,0.0383018379497799,0.0403146305270476,0.0422749012268662,0.0443293813681161,0.059002839485552,0.0725427629858241,0.0854410469359506,0.0981546711529362,0.1103859819291716,0.1263783315184641,0.1401086080352976,0.152958705832269,0.1656909040405119,0.1774430605173098,0.1917396503247907,0.2051393068213798,0.2176727185701698,0.2292952506018822,0.2404051524826599,0.2513137180993769,0.2616433000055856,0.2720888618791992,0.2824803596566913,0.2916399082568807,0.3003959891624018,0.3092386404879819,0.3173941861566139,0.3258115929871655,0.3330782963529712,0.3403757314444102,0.3459771984932484,0.3517156238863717,0.3571252641267289,0.3627242322894496,0.3649199535649685,0.3665033469049755,0.3673965592796256,0.3687937088302719,0.3695717012646146,0.3692302961345675,0.3694130745983776,0.3704468148343846,0.3717567869224032,0.3732432238634734,0.3743885000376307,0.3759846034800896,0.3773922563530328,0.378947841322611,0.3791196851534394,0.3805989719920277,0.3810532947678914,0.3828312871788381,0.3832987003838974,0.3825805936801787,0.3833233903905282,0.3858651938441739,0.3914785373608903,0.3921658986175115,0.3889626398634553,0.3839328537170264,0.3804671578617338,0.3857701007608472,0.3839485458612975,0.3807303807303807,0.0,2.563809288907319,61.350323715109695,216.41640139543813,351.8847388091655,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95844,40963,382.548725011477,7563,77.6783105880389,5898,60.97408288468762,2385,24.47727557280581,77.51248185563044,79.79904122490812,63.42745123530996,65.11121792823161,77.22183695405602,79.50734966992532,63.322625787497095,65.00838210697036,0.2906449015744243,291.69155498280475,0.104825447812864,102.83582126125168,65.50918,45.88956728798071,68349.79758774675,47879.43667624547,197.25489,115.76184274540078,205254.67426234297,120227.91488815236,241.39704,113.96915115392426,248366.81482408915,116182.79695806988,3396.94384,1510.5446578579897,3514119.444096657,1545921.9751450175,1469.66715,633.8071899693501,1519376.434622929,647271.8062365405,2355.4546,965.1205899145108,2421315.3666374525,977559.4742022648,0.38346,100000,0,297769,3106.808981261217,0,0.0,0,0.0,16256,169.02466508075625,0,0.0,22721,233.62964817828973,2192032,0,78577,0,0,2503,0,0,32,0.3234422603397187,0,0.0,0,0.0,0,0.0,0.07563,0.1972304803630105,0.3153510511701706,0.02385,0.3006519558676028,0.6993480441323972,25.927668543650373,4.631696700181722,0.3263818243472363,0.1976941336046117,0.2353340115293319,0.2405900305188199,11.174630419602751,5.548096831969117,25.030948094220587,13394.920257140184,65.63706192896258,13.36440625901238,21.618508119133303,15.220138402497534,15.43400914831936,0.5359443879281113,0.7367066895368782,0.6862337662337662,0.5814121037463977,0.1226215644820296,0.7048327137546468,0.9088050314465408,0.864406779661017,0.7328767123287672,0.1406844106463878,0.486053151768065,0.6721698113207547,0.6283551273227804,0.541058394160584,0.1185121107266436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025094610729969,0.0050434976352275,0.0074499032019379,0.0097512962831427,0.0120685101282025,0.0144411674972032,0.0163914397996375,0.018600097895252,0.0209735227145088,0.0230596175478065,0.025037120475142,0.0273102995620917,0.0295924867964078,0.0317092750401383,0.0336910689800925,0.0359544294906886,0.0377893440672178,0.040039396609818,0.0419873892403419,0.0439838430947968,0.0583793930545416,0.0725099851529662,0.0852412636873264,0.0987396281903161,0.1115615457512898,0.1274346191220584,0.1409116440751613,0.1540825332014843,0.1665599590242653,0.1784333672431332,0.1920430107526881,0.2050719863479754,0.2183598584362854,0.2304551013277428,0.2419951888750975,0.2536493121599504,0.2649755467174671,0.2754588547165996,0.2846399528846807,0.2936087045968866,0.3025911996123583,0.3112356670084832,0.3185711252152985,0.3259264568848111,0.3331436320926065,0.3395918066426649,0.3465625623628018,0.351866872829586,0.357873685568673,0.3634022650235173,0.3641681312636677,0.3653100111036477,0.3667681259029638,0.3684756457724057,0.3700285879338182,0.3704614914425428,0.3707520141823765,0.3708766862506975,0.371607658280815,0.3734743839459624,0.3748710155531791,0.3761678543151227,0.3769211388259007,0.3781877616819291,0.379393968497887,0.3802128047035563,0.3800074025567292,0.3809986826422433,0.3812475920283002,0.3817579557553531,0.383712001445413,0.3867249184124645,0.3873631529558961,0.3885731605667955,0.3880834346646712,0.3891834570519618,0.3923685010641532,0.3963585434173669,0.3941305540318157,0.3986280487804878,0.0,2.2267343278193485,59.212273390858286,223.32983275540823,348.8406748785308,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95753,40672,381.5024072352824,7523,77.50148820402494,5823,60.39497456998736,2387,24.67807797144737,77.31288813594676,79.67268650795513,63.318020272784125,65.06270492526333,77.02505780146431,79.37990660784979,63.21415216257759,64.95895489930895,0.2878303344824502,292.7799001053444,0.1038681102065339,103.75002595438332,65.5842,45.953272460536986,68493.10204380019,47991.47019992793,194.42102,114.29213682612414,202639.09224776248,118956.19649110116,234.47254,110.31103825947324,242256.05464058567,113196.8664048558,3350.36444,1482.024603777583,3474718.78687874,1523511.1628644369,1458.56377,623.3342941394459,1510984.4286863075,638711.0583874882,2353.19088,962.6248533096846,2433589.1303666728,983944.7715090088,0.38127,100000,0,298110,3113.322820172736,0,0.0,0,0.0,16071,167.3994548473677,0,0.0,22038,227.5646716029785,2186183,0,78497,0,0,2488,0,0,38,0.3968544066504443,0,0.0,0,0.0,0,0.0,0.07523,0.1973142392530228,0.3172936328592317,0.02387,0.3143073620406617,0.6856926379593383,25.350176289051195,4.651490073462087,0.3204533745492014,0.200755624248669,0.2404258973037953,0.2383651038983341,11.23543128016718,5.542345091107952,25.270863245753528,13271.616221904653,65.2688553875197,13.581897642092784,21.001112872609745,15.51118036443826,15.174664508378909,0.5423321312038468,0.7553464499572284,0.6827438370846731,0.5835714285714285,0.132564841498559,0.6810534016093636,0.887905604719764,0.8270509977827051,0.735593220338983,0.1418439716312056,0.4997755834829443,0.7012048192771084,0.6367491166077739,0.5429864253393665,0.1301989150090416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179910470133,0.0041557283167273,0.0064834261711259,0.0085117620769512,0.0108216962805504,0.0131873727087576,0.0154379524829203,0.0177537748466069,0.0199869139386999,0.0220151546180626,0.0241054034656003,0.026061776061776,0.0282725851571499,0.0304887469743008,0.0324876971804104,0.034570784844664,0.036448733613602,0.0383078950371976,0.0405444751783374,0.0424880183371535,0.056876787839559,0.0714083932326815,0.0847612256454352,0.0972347807801493,0.1095623200936303,0.1254693730762315,0.1392538041978819,0.1518999467802022,0.1644110704023756,0.1764516647900917,0.1906351274238525,0.203785011355034,0.2167980429464528,0.2296091340580502,0.2401782276252819,0.2518164901865225,0.2628642212277784,0.2736896578879276,0.2839752906976744,0.2931571831244127,0.3010997916184302,0.3092046783625731,0.3165000295805478,0.3238220836830116,0.3307686697782964,0.3370902902804153,0.3434794050199872,0.3497822377301785,0.355620971820575,0.360835516046247,0.3619064340122089,0.3629754300771173,0.3635348495342558,0.364653146487945,0.3651885792749362,0.3663363289425089,0.366505318132603,0.3669082564263426,0.3674440987917433,0.3692169378764722,0.3715854210685179,0.3730052794102998,0.375087001455297,0.375857647402875,0.3763508601889992,0.3771904474161259,0.3789207371417071,0.3817828840584322,0.3852304630583887,0.3871683200258085,0.3882396415538824,0.3879740385131148,0.3904044559782265,0.3920603169718418,0.3922072973230446,0.3940047961630695,0.3975377902446626,0.4017710049423393,0.4062588102621934,0.3946449359720605,0.0,1.621955678313126,61.26917413858675,218.0323749883024,344.7577166682147,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95790,41088,385.0610710930159,7668,79.05835682221526,6040,62.56394195636288,2400,24.772940808017538,77.37208356525132,79.71071742139763,63.35007434272507,65.07944132630308,77.07834387013078,79.41387681859977,63.24370131460674,64.97410216355053,0.2937396951205357,296.8406027978574,0.1063730281183339,105.33916275255706,66.33594,46.47665878104295,69251.42499217037,48519.32224766985,199.00338,116.7642219680872,207262.36559139783,121410.11911441378,246.06606,115.3880404974289,253895.678045725,118188.6508711332,3469.42072,1546.3402969721585,3594325.294915962,1586843.1298996876,1467.2763,628.2050034968346,1516848.2618227373,641177.7433210751,2378.75874,980.5657808885154,2456006.702160977,999169.8083058848,0.38396,100000,0,301527,3147.792045098653,0,0.0,0,0.0,16388,170.57104081845702,0,0.0,23185,239.0124230086648,2182553,0,78408,0,0,2611,0,0,36,0.3758221108675227,0,0.0,2,0.0208790061593068,0,0.0,0.07668,0.1997083029482237,0.3129890453834116,0.024,0.324140489735345,0.675859510264655,25.722105796890503,4.57374515567566,0.3342715231788079,0.2021523178807947,0.221523178807947,0.2420529801324503,10.830884657301045,5.281671410213444,25.41334476057745,13389.539929326687,68.02454092778191,14.266469545102172,22.9502629265914,14.780061026200164,16.027747429888176,0.5471854304635762,0.7886977886977887,0.6934125804853888,0.5769805680119582,0.1162790697674418,0.702683615819209,0.9299719887955182,0.8762886597938144,0.7060931899641577,0.1389830508474576,0.4995674740484429,0.7303240740740741,0.635593220338983,0.5429650613786591,0.1105398457583547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.0046125461254612,0.0067077997199163,0.0090409483853272,0.0113800467812468,0.0136321062062225,0.0159414528738443,0.0181949915300936,0.0204688521909744,0.0227509978507829,0.0250253635441325,0.0272375537515779,0.0293673228144112,0.0313117792421746,0.0333388330892816,0.0352323683177319,0.0373245559557818,0.0393956363033018,0.0410726902456257,0.0429966477189914,0.0581028905353229,0.0722936931283338,0.0858239074145901,0.0988105745387298,0.1117209557119379,0.1269742332843846,0.1414901395614992,0.1537660017862459,0.1660069351827154,0.1778625218257581,0.1929820786988231,0.2060594269161343,0.2183693207132999,0.2301814604285089,0.2417573957989662,0.2535880398671096,0.2642094577258174,0.2748766146893163,0.2851376937292382,0.2936865129808408,0.302305405499196,0.3109476589176294,0.3183554257470231,0.3255769391983329,0.3328598312389971,0.3398913431806142,0.346018464005211,0.3521311391953979,0.3582362082362082,0.3636699621177123,0.3654646044501878,0.3667785327208208,0.3687486766885454,0.3704352610697634,0.3719424139111792,0.3716592726770336,0.3716566929633804,0.3722752716496542,0.3731648264848807,0.3732946090822711,0.3741327768063625,0.3756051107054995,0.3767304860088365,0.3777832644999102,0.3779556114307819,0.3789164062294823,0.3796658986175115,0.3799007128309572,0.382223640360207,0.3850916693470569,0.3848490427098675,0.3884899796377666,0.3902361604875571,0.3892349096501346,0.3873856707317073,0.388184644821813,0.3935235158057055,0.3912782556511302,0.3913878222709819,0.3939625525410776,0.0,1.8942958157390812,63.02815045649864,233.1970166872632,353.63190750799606,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95656,40653,381.3665635192774,7445,76.63920715898637,5719,59.295809985782384,2303,23.720414819770845,77.25911226955019,79.65573080767015,63.27736057920528,65.04592512029389,76.98122271337698,79.37622725817022,63.17543343210393,64.9458583557746,0.2778895561732071,279.5035494999354,0.1019271471013496,100.06676451928342,65.34572,45.77686955467596,68313.2474701012,47855.72212373082,193.18079,114.33509582606254,201485.62557497705,119059.8793764222,237.79326,112.6162534493259,245917.05695408548,115654.27880423216,3279.47924,1475.6302335858145,3399631.5965543194,1514056.7503238858,1395.16795,603.2818497774748,1445294.9945638538,617447.1855163026,2274.53384,943.0181688830542,2344113.3436480723,956840.3239895056,0.38005,100000,0,297026,3105.147612277327,0,0.0,0,0.0,15957,166.31471104792172,0,0.0,22376,231.30802040645645,2180110,0,78297,0,0,2605,0,0,41,0.4077109642887011,0,0.0,0,0.0,0,0.0,0.07445,0.1958952769372451,0.3093351242444593,0.02303,0.3111480865224625,0.6888519134775375,25.84675854347574,4.533615082631467,0.3304773561811505,0.1986361251967127,0.237454100367197,0.2334324182549396,11.028468004430898,5.496855406013483,24.45360135822034,13291.494270895862,64.52372460045004,13.319183006765828,21.28741468153947,15.20501592623235,14.712110985912398,0.5499213149151949,0.7640845070422535,0.6968253968253968,0.5802650957290133,0.1288389513108614,0.7047272727272728,0.924924924924925,0.8540305010893247,0.7293729372937293,0.1714285714285714,0.5009208103130756,0.6973848069738481,0.6464011180992313,0.5374407582938389,0.1175355450236966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025019499002258,0.0046137154098094,0.0067596370501187,0.0090330840513737,0.0113637519711073,0.0136679363656733,0.015916552807064,0.0180181099870351,0.0203943938418131,0.0224476426392613,0.0246470570142612,0.0266554404411085,0.0286860375417845,0.030359221600684,0.0322397547962311,0.0344945249247758,0.0364979383792967,0.0385433859632732,0.0407339602230173,0.0426918265221017,0.057894076829829,0.0720480110601395,0.0856908827421082,0.0982888432580424,0.1101840801799613,0.1255666652544168,0.1391801310855455,0.1529191130243907,0.16528890267247,0.1769563676585874,0.1906282361063168,0.2038987495394751,0.2162859850341469,0.2284649939739235,0.2390295009649848,0.2505275315963661,0.2614942207203679,0.2718064406970842,0.2820565318773815,0.2906136146835384,0.2992988809954961,0.307585802288061,0.3158525728529883,0.323297689356123,0.3302269982801312,0.3371217274087631,0.3434991772700438,0.3498659517426273,0.3554129203263864,0.3607045891000596,0.3628082978579633,0.3636200320601404,0.364572270133254,0.3667166155054774,0.367819013726487,0.3683083841557321,0.3688441091267946,0.3707989435457247,0.3731189268208788,0.3741558908045977,0.3754167844023735,0.3764303877940241,0.3778915434205536,0.3791263006817366,0.3789359391965255,0.3800648298217179,0.3794257278499113,0.3812264777507195,0.3842131298141474,0.3854949624180393,0.3883357041251778,0.3916831471484312,0.3939355493529561,0.393760990901445,0.3974588235294117,0.397918909221385,0.4001543209876543,0.4009414654113794,0.3949152542372881,0.3948103792415169,0.0,1.912419648873753,61.21646551151417,219.1079337212706,331.43086733733605,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95615,40834,383.0779689379282,7525,77.49830047586676,5833,60.40893165298332,2369,24.34764419808608,77.28554750318864,79.71784127921349,63.27381344368565,65.07201076222782,76.99431340456947,79.42615257840724,63.16717124459604,64.9679851879208,0.2912340986191708,291.6887008062474,0.106642199089606,104.0255743070162,64.89274,45.46629231783231,67868.78627830361,47551.42218044481,195.94672,115.7432853121732,204313.95701511268,120432.31220224145,242.4617,114.5286045973278,250088.50075824925,117017.65162792202,3364.39576,1511.375481869548,3485049.751608012,1547048.1011029105,1450.75642,629.128935889629,1499525.5869894892,640292.9742687879,2348.78742,981.2061935780474,2416218.710453381,992021.0443718892,0.38112,100000,0,294967,3084.9448308319825,0,0.0,0,0.0,16169,168.47774930711708,0,0.0,22758,234.5761648276944,2183133,0,78351,0,0,2573,0,0,42,0.4288030120796946,0,0.0,0,0.0,0,0.0,0.07525,0.1974443744752309,0.3148172757475083,0.02369,0.3130522595304216,0.6869477404695784,25.67610772700661,4.577418520458492,0.3271044059660552,0.1940682324704268,0.2365849477112978,0.2422424138522201,10.917193364402966,5.473385745309513,25.39129230998155,13285.995937933543,65.8922750717895,13.14803177549332,21.613725939303077,15.386597050678844,15.743920306314276,0.545345448311332,0.7561837455830389,0.70020964360587,0.5869565217391305,0.1266808209483368,0.7032258064516129,0.9223880597014924,0.8946236559139785,0.7398648648648649,0.1237458193979933,0.4957187922487607,0.6863237139272271,0.6375606375606375,0.5452029520295203,0.1274685816876122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584920956627,0.0045441174978953,0.0066401332087885,0.0089952736697667,0.0113335775037642,0.0137823549185588,0.0159745386663402,0.0181227525335076,0.0200775281013797,0.0221418842108497,0.0244352803594509,0.0265924106821754,0.0288828730532881,0.0309549334102997,0.0331650300984006,0.0355088953247827,0.0373260380721443,0.0391209978087256,0.0412386156648451,0.0431208928757692,0.0575771196805452,0.0725700812156143,0.0856110042768723,0.0976874045198335,0.109891618955063,0.1253958335539763,0.1386825634649919,0.1516812008272744,0.1644979025768341,0.1763688327316486,0.1903513315205662,0.2039530748547142,0.2167658405806578,0.2284530931562685,0.2400718837511852,0.2514263514263514,0.2622806036892118,0.2729670626958541,0.2820171849427169,0.2918291060863184,0.300067188730828,0.3082122774133083,0.3159055865259162,0.3234057379018694,0.3308488612836439,0.3371054419667675,0.3435736677115987,0.3492703337075212,0.3554658078591278,0.3607730567754907,0.3622418003480889,0.3631378060711284,0.3650244357185231,0.3662555615136013,0.3674527388383214,0.367563162184189,0.3675991157901432,0.369023657900815,0.3702127659574468,0.3717545593387836,0.3733898305084746,0.3752108427757823,0.3760514388110045,0.3765261382799325,0.3771791957830597,0.3781253269170415,0.3801157915751647,0.3834063061076637,0.3829518769058217,0.3839058524173028,0.3844852806728835,0.3865685176294874,0.389363722697056,0.3893339436942092,0.3894122079879427,0.3916232844297208,0.395095785440613,0.3944636678200692,0.3889499725123694,0.3910721098817245,0.0,2.269468246180305,61.87614262439052,227.5731858951304,334.4141124774631,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95799,40759,381.3192204511529,7660,78.8108435369889,5887,60.7626384409023,2389,24.52008893621019,77.35864855579545,79.66436106394235,63.35358995694328,65.05475430173078,77.06762383099225,79.37520277993833,63.24728160785707,64.95241378325053,0.2910247248032078,289.1582840040172,0.1063083490862055,102.34051848024706,65.5259,45.93148091784624,68399.35698702492,47945.678887928094,195.92852,114.94435171295744,203855.9692689903,119320.46442338378,236.49742,111.72627014420058,242552.3230931429,113288.74854942494,3402.23976,1514.8846529471325,3514916.397874717,1544796.5562763026,1415.2594,607.0328147719546,1461358.6989425777,617697.903100432,2358.09352,972.251767925095,2422837.252998465,981121.4933979472,0.38176,100000,0,297845,3109.061681228405,0,0.0,0,0.0,16191,168.3107339325045,0,0.0,22315,228.64539295817283,2186270,0,78446,0,0,2606,0,0,26,0.2714015803922796,0,0.0,0,0.0,0,0.0,0.0766,0.2006496227996647,0.3118798955613577,0.02389,0.3207383548067393,0.6792616451932606,25.60159711140709,4.561855220809384,0.3410905384746051,0.1929675556310514,0.2247324613555291,0.2412094445388143,10.82044483072744,5.347363173501798,25.3802615846127,13320.692367830734,66.13177582478119,13.175119236003376,22.67562582456436,14.746665471890546,15.5343652923229,0.5298114489553253,0.75,0.6812749003984063,0.5570672713529856,0.1140845070422535,0.686231884057971,0.9142857142857144,0.835030549898167,0.7322033898305085,0.1182795698924731,0.4819170179720435,0.6869671132764921,0.6315095583388266,0.5068093385214008,0.1130587204206836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023379147015363,0.0045579313069108,0.0070156229406814,0.0095081534699179,0.0118058236644788,0.0138751843751589,0.0161655054394328,0.0186367716663946,0.0207284057822955,0.022811665660771,0.0249920619475371,0.0270894022073606,0.0291576341014866,0.0311393759776076,0.0330569990926338,0.0350650692005783,0.0370745941247684,0.039001835014566,0.0411555121586388,0.0432578186815474,0.0579968701095461,0.0716936942588584,0.0847143171598377,0.0973230895351403,0.1094435075885328,0.1247423878924951,0.1385616895853433,0.1519648518116635,0.1641630099398908,0.175694221078589,0.1902295632698768,0.2037475793277292,0.2167690718286118,0.2290518071234794,0.2410630731798615,0.2524661390791602,0.2634234556049206,0.2736621810162473,0.2831721821235644,0.2920915736645507,0.3008044447016609,0.3088891230288343,0.3171009000473709,0.3246416791604198,0.3321777842650708,0.3390252930289944,0.3448457223001402,0.350376858830719,0.3565298555834997,0.3624770387598948,0.3640444893832154,0.3658721410856985,0.3672085383563382,0.3683883191830949,0.3687053571428571,0.3692845533441687,0.3689590045550494,0.3697725363595935,0.3705527155453391,0.371217698924345,0.3731931173554965,0.3735478994271164,0.3745459920601402,0.3751265495286733,0.3767007214448264,0.378004523220954,0.3785712230629801,0.3809054178729361,0.3842493963925579,0.3855460428473813,0.3889501240011022,0.392231653594069,0.3921831165519,0.3910753021382088,0.3928808732795443,0.3923251102371589,0.394033080847117,0.3954255099938182,0.395072217502124,0.3976,0.0,2.700031143256965,60.59897312499777,227.40860713546795,341.7102018556316,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95868,40707,381.4411482455043,7384,75.7499895689907,5704,58.99778862602746,2399,24.66933700504861,77.41454581429173,79.70539257895035,63.37712166936033,65.06884037678152,77.1246503484744,79.41429952802743,63.27065171276298,64.96482880840651,0.2898954658173238,291.0930509229246,0.1064699565973512,104.01156837501446,65.43284,45.7802664860766,68253.0562857262,47753.43856769371,192.1043,113.64992562233884,199882.5989902783,118046.76807937871,235.87976,111.85881742802457,243805.82676179748,114821.9294317679,3306.69124,1483.147656480076,3421088.7887511994,1518948.7800726788,1393.53372,598.8575519549897,1441190.0947135645,612265.4448218142,2370.15548,981.0597589140506,2438888.784578796,993043.1475839012,0.38073,100000,0,297422,3102.4116493511915,0,0.0,0,0.0,15860,164.91425710351734,0,0.0,22213,229.39875662369093,2187725,0,78577,0,0,2606,0,0,28,0.2920682605248884,0,0.0,0,0.0,0,0.0,0.07384,0.1939432143513776,0.3248916576381365,0.02399,0.3064350064350064,0.6935649935649936,25.713617619502635,4.593186640304489,0.3316970546984572,0.1937237026647966,0.229312762973352,0.2452664796633941,11.05078825650893,5.5332226538518325,25.372542692009525,13220.828480849104,63.87515784407866,12.649091303419048,21.46110461437179,14.571885456076313,15.193076470211496,0.533835904628331,0.7393665158371041,0.6971458773784355,0.5672782874617737,0.1193709792709077,0.6865136298421808,0.9034267912772586,0.8539094650205762,0.6895424836601307,0.1459074733096085,0.4844547563805104,0.6721938775510204,0.6429587482219061,0.5299401197604791,0.1127012522361359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021966897808371,0.0044273339749759,0.0066925580782218,0.0087304326640001,0.0110275434495375,0.0133293989560333,0.0156784841075794,0.0178199844954914,0.0198986679741766,0.022154714781061,0.0244811832913363,0.0266391761037255,0.0286574464149935,0.0306738993937272,0.0328068294292312,0.0345999318329701,0.0364174348469329,0.0385504212566193,0.0404443060313505,0.0423042116978894,0.0565976747823366,0.0714114019961331,0.0847249869041383,0.0981151887436341,0.110207778257527,0.125598098758912,0.1391084179079178,0.1509476078614781,0.1636171597443748,0.1759168023305629,0.1903081425374419,0.2036894862617459,0.2166400417305121,0.2283085061038918,0.2389693758656319,0.2503541546770552,0.2613306865325422,0.2715501253273685,0.2813471267496994,0.290435997572065,0.2993440460903064,0.3073701940509749,0.3150676826959485,0.3229437644604817,0.3301644804823788,0.3363259668508287,0.3422137050814764,0.3480791025200239,0.3535548836666104,0.3584631250495809,0.359806909198781,0.3611463213006338,0.3622450418935312,0.3629038091518018,0.3650954201311934,0.3657029860813048,0.3655859480178025,0.3667526662613182,0.3674842110668013,0.3684502108799771,0.3695338148391333,0.3716333967046895,0.3736574928679309,0.3752237336674422,0.3762590968239433,0.3764165230560342,0.3761025318984957,0.377977499842876,0.3789592361624916,0.3800383111182057,0.3826535267816406,0.3857911274431485,0.3888888888888889,0.3872143345228153,0.3880484825707037,0.3905487441971194,0.3888632518074142,0.3887070376432078,0.3788046485888212,0.3821729150726855,0.0,1.9456920590055031,61.89005375246455,207.64362507362105,335.151814335887,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95699,40659,381.6863290107525,7567,77.66016363807354,5837,60.29321100533966,2436,24.995036520757797,77.36002699221102,79.7300946265047,63.33690834044432,65.08792871152653,77.05754417054956,79.42884575761626,63.22570536966407,64.97999548296562,0.3024828216614565,301.24886888843605,0.1112029707802548,107.9332285609098,65.05246,45.55840350885686,67976.1126030575,47605.9347630141,194.58541,114.99782397035176,202636.0672525314,119471.5764745209,237.04775,112.64731454109231,242936.7391508793,114090.88950524278,3372.30872,1512.8184766697211,3486239.3128454844,1543178.0025598195,1403.94951,611.889223374438,1450756.8522137117,623103.6333103122,2404.25292,1006.0513068129898,2470082.55049687,1015893.5027987856,0.38115,100000,0,295693,3089.8233001389776,0,0.0,0,0.0,16007,166.54301507852747,0,0.0,22270,227.9647645220953,2188968,0,78476,0,0,2602,0,0,40,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07567,0.1985307621671258,0.3219241443108233,0.02436,0.3106527480820023,0.6893472519179977,25.608237946990773,4.65549282808879,0.330477985266404,0.193249957169779,0.2383073496659243,0.2379647078978927,10.951862933656274,5.343978056888474,25.982590088902565,13269.359522506264,65.52362152636324,13.08098484374113,21.60149217048841,15.47202150607968,15.369123006054028,0.5372622922734281,0.7570921985815603,0.696215655780197,0.5629043853342919,0.1123110151187904,0.6784426820475847,0.9207317073170732,0.8760869565217392,0.6745762711864407,0.1217105263157894,0.4932584269662921,0.69,0.6398910823689585,0.5328467153284672,0.1096774193548387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0042575190828087,0.0064438874400008,0.0085332899896381,0.0107307050734366,0.0128609832593377,0.0153007135575942,0.0175039294535507,0.0197802197802197,0.0219087204897725,0.0239393877258094,0.0259229600427087,0.0281765455966434,0.0303642056690837,0.0324184894758563,0.0341497709907879,0.0359788250163163,0.0383313958316034,0.040252959164569,0.0423057685895298,0.0577115882696967,0.0717493013470656,0.0850608476710029,0.0984780756649873,0.1109810743845221,0.1261933710419199,0.1397201565765326,0.1529473112901337,0.1653387730690362,0.1770340573880396,0.1905367262071491,0.2041595879367621,0.2165279015673572,0.228709504597588,0.2401249573758951,0.2516422771432686,0.2622310507990358,0.2719285416971347,0.2817813673332804,0.2905931009199537,0.2993335030432066,0.3075015789104348,0.3151030262862012,0.322920036907886,0.3301613922512275,0.3366865145407251,0.3426098718735518,0.3486939253526147,0.3553651517901122,0.361074038347186,0.3623182541609344,0.3637504654979794,0.3652177599412147,0.3665206925553203,0.3681425163983303,0.3686174541992352,0.3692009900361744,0.3710960615425077,0.3721212951389483,0.3727027075392352,0.3730995470861288,0.3744845360824742,0.3749973772005288,0.375529696643573,0.3766080177636183,0.3766563662075106,0.3783605428514044,0.3800088905823331,0.380957450583768,0.3821125115773366,0.3855293573740175,0.3891402714932127,0.389733477514153,0.3908090216303594,0.3931276031806134,0.3912263925412383,0.3944247651316803,0.3926016758634784,0.3844649343392008,0.3910505836575875,0.0,2.690724566875476,60.68167430967652,221.2018086189298,341.4387127687688,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95757,40693,381.66400367597146,7310,75.32608582140209,5668,58.66934010046263,2281,23.486533621562916,77.33346816806463,79.69644075733609,63.32120940122799,65.07080429304003,77.05784389946322,79.41955198129403,63.22278172410045,64.97423626400686,0.2756242686014047,276.88877604205686,0.0984276771275389,96.56802903316476,66.00462,46.20755714468277,68929.28976471694,48255.01753885645,193.97842,114.68668766337775,202073.1748070637,119268.05856603626,236.16274,111.4827881829285,243590.56779138863,114033.11685791449,3257.71056,1441.4066199230156,3374021.784308197,1477240.6833180916,1399.18769,597.5715694705104,1445755.182388755,608683.474585002,2247.03248,910.9571358695864,2315450.316948108,925279.2836348636,0.38042,100000,0,300021,3133.1495347598607,0,0.0,0,0.0,16014,166.69277441858037,0,0.0,22249,229.3513790114561,2183884,0,78330,0,0,2649,0,0,32,0.3237361237298578,0,0.0,1,0.0104431007654792,0,0.0,0.0731,0.1921560380631933,0.3120383036935704,0.02281,0.3105952535339126,0.6894047464660874,25.786356756507395,4.53866273791809,0.341743119266055,0.1947776993648553,0.2247706422018348,0.2387085391672547,10.929972843828844,5.413277551187957,23.99817515665664,13190.538406732245,63.40058735629525,12.71846454795705,21.917137618542817,14.07733193287491,14.687653256920472,0.5404022582921666,0.7518115942028986,0.7000516262261228,0.565149136577708,0.1160384331116038,0.7181889149102264,0.9297124600638976,0.8859649122807017,0.6954887218045113,0.1626016260162601,0.4884887166628676,0.6814159292035398,0.6428089128966914,0.5307539682539683,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350676326055,0.0045329168863829,0.0066378417879544,0.009043061228637,0.0111368767925794,0.013349082059689,0.0153937120254455,0.0176256863505541,0.0197048362699807,0.0216699251737586,0.0237946341613442,0.0261177557620245,0.0281054287800413,0.0302989732129064,0.0322311065256641,0.0343466082336768,0.0364479787939032,0.038610399178193,0.0405867614800029,0.0424304282619563,0.0565454754224991,0.0708305425318151,0.0839532858357029,0.0964210216337305,0.108673872923807,0.1248017425508067,0.1382694307114515,0.1509807469215296,0.163197522294014,0.1749270824397358,0.1887353375197923,0.2015643086642794,0.2140969737829344,0.2260484444201432,0.2371541067264968,0.2485524174352047,0.2595511010413295,0.2701477256106479,0.2802114889320036,0.2897878819098641,0.2978711102374041,0.3066057041290035,0.3142093309359326,0.3217378804757969,0.328107557151871,0.3352697197572953,0.3422075568387766,0.3480371598866394,0.3538742188813993,0.3592673721992029,0.3603385079775765,0.3616459093098466,0.3635517970401691,0.3648535201482167,0.3662730967943659,0.3666087918504064,0.3665660736975857,0.3672383400056014,0.3680068581225889,0.3693341697284703,0.370448350408873,0.3717508971588318,0.3730337078651685,0.3744754381634164,0.3753111481669446,0.3754234839929616,0.3763729977116705,0.379781680113906,0.3813214424744311,0.3830790125429416,0.3868097596771234,0.3891834002677376,0.3900934698289566,0.3934552751408505,0.3976513270956655,0.3997565429093122,0.3982453391822027,0.4015813566375364,0.3994310099573257,0.395743003547497,0.0,2.0233272859819342,56.64435899101319,222.0680125273036,331.0730169819884,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95802,41071,384.3865472537108,7527,77.39921922298072,5861,60.64591553412246,2387,24.54019749065781,77.34149214859087,79.67990393279239,63.33904717832892,65.07234119751303,77.04886238465484,79.38627458068481,63.23322162063587,64.96821432658624,0.2926297639360342,293.6293521075726,0.105825557693052,104.12687092679109,65.36024,45.74931148461674,68224.29594371725,47754.025474015936,194.31323,115.01017783762624,202311.4966284629,119534.67062831318,243.72236,115.59635743005369,250964.52057368323,117987.16344991696,3369.29732,1507.9314221559232,3489863.969436964,1547043.49598678,1427.62825,620.5893068898952,1476022.3481764472,633735.1982326094,2353.79252,968.064332502306,2423377.862675101,982837.1830182016,0.38424,100000,0,297092,3101.1043610780566,0,0.0,0,0.0,16028,166.7606104256696,0,0.0,22912,235.7779587064988,2188772,0,78545,0,0,2515,0,0,35,0.3548986451222312,0,0.0,0,0.0,0,0.0,0.07527,0.195893191755153,0.3171250166068819,0.02387,0.3127130412826663,0.6872869587173337,25.39424041240636,4.6339033035185295,0.3328783484047091,0.1999658761303532,0.2327247909912984,0.2344309844736393,11.114377039389296,5.468435339884152,25.411855468549827,13385.57299494724,66.04220385507953,13.669752165349095,21.935774230825675,15.280351991518344,15.156325467386424,0.5423989080361713,0.7525597269624573,0.6827268067657611,0.593841642228739,0.1128093158660844,0.7147962830593281,0.8913649025069638,0.8468271334792122,0.7954545454545454,0.1745454545454545,0.4883460331689825,0.6912669126691267,0.6325301204819277,0.5350378787878788,0.097361237488626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717120658042,0.004906582322111,0.0070221726114972,0.0094907125147339,0.0115887470112428,0.0137922604435118,0.0161757506527415,0.0185338357381368,0.020625198122565,0.0228243172672257,0.0247208522593279,0.0269351625557084,0.0288926374688856,0.0309045769678489,0.0330592156174871,0.0350808285442593,0.0370170951675864,0.0392008381655792,0.041458422086221,0.0435647068620919,0.058270559021764,0.0720394805629326,0.0851532045102066,0.0978836534824093,0.1103535486590442,0.1260926088381089,0.1400358305153021,0.1532817218937428,0.1649110449417816,0.1774893630702948,0.191789815841307,0.2061532474271382,0.2186566434554007,0.2291561946805953,0.2407211961301671,0.2522667139014048,0.2626075712311053,0.2736654164888719,0.2836934855486092,0.2931982666956313,0.3016107615033774,0.3099063543588426,0.3179153171469774,0.325403761657907,0.3326293814933488,0.3389239843855825,0.3456791667187676,0.3523446435379336,0.358712380853843,0.3636052180787982,0.3653571717062925,0.3661124721297035,0.3675829678001721,0.3690655396016674,0.3712442835649699,0.3715425940138143,0.3720775095298602,0.3732871629977739,0.3745128002609845,0.3758686946684145,0.3769187252498586,0.3788216560509554,0.3807151602144636,0.3817435804946231,0.3817943362316024,0.3833456192080876,0.3844374403608709,0.3870833599897639,0.3871532116970757,0.3904769584324477,0.3926029309141661,0.3916386873172316,0.3949790794979079,0.3963914707490432,0.3999807377443898,0.4006060606060606,0.4043690083294043,0.4053038212570474,0.4079841449603624,0.4158262218774243,0.0,2.070368020733,61.900989379358485,223.78172937584208,342.74513178639864,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95699,40495,378.6246460255593,7541,77.66016363807354,5888,60.88882851440454,2459,25.214474550413275,77.3419109081298,79.7109135941406,63.33255108723839,65.08105840864184,77.04224038341975,79.41013981357383,63.22350589619514,64.97416119290753,0.2996705247100522,300.7737805667716,0.1090451910432435,106.89721573430688,65.17368,45.676090732553256,68102.78059331865,47728.911203412,196.11989,115.68418615046367,204281.9674186773,120231.24186299092,237.00446,112.55433494028416,243542.11642754887,114506.28991992414,3425.76764,1529.206103654353,3544583.1617885246,1562784.4634263187,1432.03446,616.7324277592412,1482506.0240963856,630575.7419198176,2428.122,1002.747939845566,2493031.3587393807,1013174.2590166302,0.37865,100000,0,296244,3095.580936059938,0,0.0,0,0.0,16175,168.3507664656893,0,0.0,22343,229.35453870991336,2187168,0,78417,0,0,2604,0,0,43,0.449325489294559,0,0.0,0,0.0,0,0.0,0.07541,0.1991548923808266,0.3260840737302745,0.02459,0.3064250411861614,0.6935749588138386,25.444504615754045,4.568762306119763,0.3344089673913043,0.1880095108695652,0.2314877717391304,0.24609375,11.133730665727684,5.6348841820876645,26.143963218537568,13216.169388735834,65.98521723069292,12.780415184923546,22.182457299494786,15.201677639554946,15.82066710671966,0.5361752717391305,0.7597109304426377,0.6957846622651092,0.574468085106383,0.1124913733609385,0.6988388969521045,0.9113924050632912,0.8838709677419355,0.7120253164556962,0.1387900355871886,0.4864745011086474,0.6991150442477876,0.6376329787234043,0.5329512893982808,0.1061643835616438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0045302523563393,0.0065936295394603,0.0093239619728609,0.0117338430878106,0.0139590290787651,0.0164123265747168,0.0184534988160365,0.0205335241210139,0.0229461553419918,0.0250025627883136,0.0271488566470545,0.0290406507409273,0.0312065359611798,0.033114564629641,0.0351878269139324,0.0372725483901034,0.0394470562595348,0.0414782002890684,0.0436241610738255,0.0585513603843542,0.0723639446881117,0.0854798602440483,0.0983549656057386,0.1110208645387228,0.1262854966354903,0.139727567842821,0.1523000436481321,0.1643894153215037,0.1758351391362183,0.1902315562735595,0.2044997078111811,0.2167694499733524,0.2281281095207374,0.2395213532329553,0.2505978212735807,0.2613471618155459,0.2713015323387559,0.2801597476712919,0.2891781433526805,0.2971762527485245,0.3052690727321681,0.3138018828823494,0.3207553956834532,0.3272576938509989,0.3339546711435907,0.3402315285146304,0.345881903305943,0.3514782157676348,0.3563509661070637,0.3580876107268535,0.3602257864665795,0.3616463826910074,0.362599722511273,0.3643175735950044,0.364572794996781,0.3652517118944965,0.3670763206817696,0.3693438914027149,0.3700111162907448,0.3712903893562167,0.37248708780294,0.3726902202605959,0.3724322983607296,0.3734633010838728,0.3749934303883954,0.3754423314824937,0.3770866391621707,0.3769944209516364,0.3794466403162055,0.3818282650891949,0.3840172786177105,0.3847334100498657,0.3872895165670831,0.3911123908244553,0.3923514462059784,0.3963585434173669,0.4057035803497086,0.4034042553191489,0.4049295774647887,0.0,2.396184319873302,60.66290473247631,221.9267098638867,348.51145034243507,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95701,40696,380.65432963082935,7584,77.94066937649555,5892,60.9189036687182,2387,24.482502795164105,77.33810060160408,79.72060676599641,63.31256206328344,65.07478367854645,77.04401003919861,79.42849877558912,63.20377821293464,64.9702498877568,0.2940905624054721,292.1079904072883,0.1087838503488001,104.53379078965952,65.15982,45.65560489766328,68086.87474530046,47706.507662055024,194.99028,115.2636900040894,203085.01478563444,119777.0138285801,242.22839,114.80650116277045,249427.91611372924,117069.8349412106,3381.47748,1517.9656744698796,3496608.603880837,1549385.685071084,1436.57202,625.6524184145096,1481207.2601122246,633860.2087904087,2346.13184,976.2830735136024,2407675.301198525,980811.9275822804,0.38059,100000,0,296181,3094.857942968203,0,0.0,0,0.0,16076,167.28142861621092,0,0.0,22793,234.4385116142987,2184982,0,78419,0,0,2572,0,0,47,0.4911129455282599,0,0.0,2,0.0208984232139685,0,0.0,0.07584,0.19926955516435,0.3147415611814346,0.02387,0.3097600803919105,0.6902399196080894,25.401087393704582,4.583864439652574,0.3352002715546504,0.1955193482688391,0.2413441955193482,0.2279361846571622,11.051463109599666,5.571843630964625,25.29905127011375,13241.138442454208,66.13213180223708,13.362495808128855,22.194055311948613,15.865732648444382,14.709848033715224,0.5441276306856755,0.7664930555555556,0.6784810126582278,0.5759493670886076,0.122114668652271,0.704225352112676,0.9169139465875372,0.859538784067086,0.7476340694006309,0.1522491349480969,0.4932915921288014,0.7042944785276074,0.6208277703604806,0.5266968325791855,0.1138519924098671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023818694127424,0.0046459728139582,0.0068430564298332,0.0091468992011708,0.0114874696024663,0.0139337332830849,0.0160536890847153,0.0183950075071241,0.0206064324794191,0.0227821920052424,0.024692877212412,0.0270678235867946,0.0290264867977297,0.0312136347252973,0.0335479078979945,0.0355699773683177,0.0375742892050278,0.0395493121407673,0.0416064540946281,0.043607346369006,0.0580365535248041,0.0715242881072026,0.0845575889858965,0.0975250596909743,0.1098443300708741,0.1249272694574037,0.1388429050469035,0.1521308542585138,0.164064253422681,0.1757435303205871,0.190446429533528,0.2039910347889169,0.2165042730390289,0.2275169915398001,0.2387441932145923,0.2508314118481731,0.261690908684675,0.2722471821549618,0.2814786204389512,0.2906766055045872,0.2983130966725368,0.3068776870541101,0.3144777074592903,0.3216770633397313,0.3285816801877957,0.334939104226883,0.3412241416080188,0.3478565960704261,0.3542623588945114,0.3605551883674818,0.3619755150469205,0.3628894403087951,0.3638711316201685,0.3652050550818628,0.3663047848813832,0.366804979253112,0.3666068621691568,0.3677704993581092,0.3692645218792314,0.369911123853211,0.3705034617700181,0.3704732612362337,0.3720974295277994,0.3722542311847317,0.3739603481624758,0.3745397571484528,0.3760673996858489,0.3786300505050505,0.3792435554303423,0.3798289238114183,0.378835401609164,0.3794673585005559,0.3822183208978619,0.3859476629859325,0.3884737530356809,0.3876755991028214,0.3905540417801998,0.3949478748997594,0.3924291938997821,0.3859649122807017,0.0,2.572494194356577,62.44800802161179,221.89276743738688,341.84865784512004,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95654,40982,382.6604219373994,7488,76.97534865243482,5817,60.26930394965187,2395,24.661801911054425,77.27782633283482,79.68984680286994,63.2892740309558,65.07281569514872,76.98100861378117,79.38995099168092,63.18015333322395,64.96489246415965,0.2968177190536494,299.89581118901754,0.1091206977318464,107.92323098907276,65.3499,45.83152770610744,68319.04572730885,47913.86424624944,194.73372,115.8761336475782,203045.7273088423,120605.2790762312,244.47427,116.7043540810143,252050.5781253267,119274.45480163571,3343.2322,1516.3941016239469,3464470.90555544,1554708.537574591,1407.84595,614.1820779501592,1456017.3542141467,626331.4561774097,2357.52088,990.10769960448,2429547.159554227,1005784.9864346808,0.38282,100000,0,297045,3105.411169423129,0,0.0,0,0.0,16113,167.8863403516842,0,0.0,22956,236.498212306856,2181087,0,78255,0,0,2602,0,0,41,0.4286281807347314,0,0.0,0,0.0,0,0.0,0.07488,0.1956010657750378,0.3198450854700854,0.02395,0.3162425623496645,0.6837574376503355,25.32158189616166,4.575883698358307,0.3250816572116211,0.2011346054667354,0.2386109678528451,0.2351727694687983,10.933790961108198,5.373812375872376,25.66729236131839,13379.428869526912,65.6791743796218,13.588440427403189,21.53762266843807,15.47238503965334,15.080726244127204,0.5348117586384734,0.7418803418803419,0.6906398730830249,0.5655619596541787,0.1111111111111111,0.699527346387576,0.8895184135977338,0.8875502008032129,0.7267267267267268,0.1279461279461279,0.4785516605166052,0.6780905752753978,0.6202440775305097,0.5146919431279621,0.1064425770308123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025636868451452,0.0049894531883822,0.0074919294256187,0.0098072095693974,0.012167455109619,0.01429284542741,0.0167057623661397,0.0190793303849571,0.0212250158548311,0.0233863615410618,0.0255692307692307,0.0277338373359081,0.0301181264405663,0.0323837401055409,0.0344937950401618,0.0368730800657819,0.0389214731300905,0.0408074263285776,0.0426760739260739,0.0448559542056367,0.0598980103661595,0.074292835673966,0.0880722967441274,0.1008207934336525,0.112369154144859,0.1273697246832428,0.1412399379818618,0.1543796475827243,0.1668502614889362,0.1784606134784896,0.1923159823256816,0.2055619328149704,0.2177018126394861,0.2298001357238239,0.2408473811122978,0.2526047439592108,0.2628686940886094,0.2732153711082596,0.283095121868153,0.2929549722871146,0.3013107509341848,0.3095446943382103,0.3175200624955614,0.3246980654601278,0.3309337646071719,0.3374563320124924,0.3441381817270209,0.3509583524494061,0.3568757789779809,0.361629813796022,0.3631561883662497,0.3642131453452208,0.3654815150314216,0.3673416067929458,0.368719756257841,0.3693205438112981,0.3692288097815704,0.3703116222200192,0.3711377430836156,0.3713268992289858,0.3727183587268065,0.3736110557967262,0.3754510350066468,0.376018180999955,0.37616811117029,0.3776425536379373,0.378783958602846,0.3804766298641382,0.3825345276756718,0.3855431406558832,0.3873145023346123,0.3898751882935227,0.3928867888385161,0.3936451211932877,0.3948099205209231,0.3982978723404255,0.4026055564275624,0.4035968214136344,0.3953488372093023,0.4010903426791277,0.0,2.156945082696421,65.62420067045691,212.318161740392,336.6815955477858,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95825,40751,381.6853639446908,7523,77.31802765457866,5845,60.46438820767023,2349,24.17949386903209,77.39792083527668,79.70120712012546,63.37134666233783,65.07162497360673,77.11780867268493,79.41972297392711,63.26911517068008,64.9709983028244,0.2801121625917488,281.48414619835194,0.1022314916577471,100.6266707823329,65.34748,45.75543864506092,68194.60474823897,47748.95762594409,194.82552,115.23385487362742,202777.47978085047,119718.08491899548,243.55675,115.7527936828056,250787.27889381684,118231.47782675127,3364.36824,1506.8344743851328,3482827.77980694,1544580.7527545718,1442.19421,623.3423965322525,1491730.9470388729,637297.0194042433,2313.91922,951.9785978170324,2384222.468040699,969183.4585984388,0.38107,100000,0,297034,3099.7547612835897,0,0.0,0,0.0,16111,167.5867466736238,0,0.0,22939,235.971823636838,2187952,0,78416,0,0,2627,0,0,30,0.3130707018001565,0,0.0,0,0.0,0,0.0,0.07523,0.1974177972550974,0.312242456466835,0.02349,0.3178791305440382,0.6821208694559618,25.39658266304369,4.623169977472444,0.3260906757912746,0.2046193327630453,0.2355859709153122,0.2337040205303678,11.22731944635425,5.587524879851301,24.93280140177338,13309.435797561751,65.67234108273291,13.936391178591764,21.62404458689624,15.22778282890532,14.884122488339589,0.5515825491873396,0.7483277591973244,0.7061909758656874,0.5824255628177197,0.1325036603221083,0.7217391304347827,0.9005524861878453,0.8817204301075269,0.7422680412371134,0.1679389312977099,0.4989921612541993,0.6822541966426858,0.6495489243580846,0.5395948434622467,0.1240942028985507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386247671499,0.004701638480479,0.006805618946194,0.009158941137049,0.0113959824333116,0.0135963037593372,0.0160277964581932,0.0181994389186432,0.0201381367881153,0.0221706124286386,0.0243222752699629,0.0262836624775583,0.0284481430112498,0.0304804634841577,0.0324775048700796,0.034495931937389,0.0365304834521358,0.038567179030068,0.0405823589274959,0.042723478659076,0.0574888902797771,0.0722936931283338,0.0861172276397189,0.09882565682265,0.1108944494803634,0.1264562234391187,0.1402214022140221,0.1534760951934948,0.1658690310864224,0.1769399903469727,0.1914875285400422,0.2043480612189714,0.2172551748130109,0.229014059869241,0.2397972088726616,0.2520511542933067,0.262383745567277,0.2729858885703041,0.2821085573684986,0.2915713108751373,0.3000543409140835,0.3068330529070854,0.3152909176915799,0.3224980252291931,0.3298776569301468,0.3364460684801732,0.3429956519566195,0.3495959749961884,0.355304530103645,0.361235918044667,0.3631294674047401,0.3647924849616832,0.3656175696779549,0.3671554760117776,0.3683139793887915,0.3682174099223099,0.3683344669946375,0.3701533208575462,0.3721033639457527,0.3747652015241775,0.375570197668525,0.3756762648381919,0.3761556564128425,0.3771328372636737,0.379972399099339,0.3810323122114981,0.3816293056314926,0.3839822024471635,0.3857102393428693,0.3878065367844141,0.3892138350297057,0.3936897647122166,0.3964228680932609,0.4005245699298002,0.4036075586944073,0.4054995196926033,0.4079293789685612,0.4111292295148797,0.407876618011567,0.4059026446914526,0.0,2.107090155649774,60.9142553292194,226.1715246851421,338.31551886899416,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95559,40409,378.5933297753221,7513,77.48092801306,5816,60.35015016900554,2279,23.57705710608106,77.19945181010942,79.67189114410553,63.224607941291474,65.05443332271822,76.92800983361406,79.39651026931672,63.12681305840548,64.95707718778009,0.2714419764953675,275.3808747888087,0.0977948828859993,97.35613493813844,65.90144,46.119261510948526,68964.13733923544,48262.603743183296,196.02496,115.415918265156,204620.9043627497,120265.64558561306,237.51371,111.89425037725896,244981.24718760137,114319.01180520968,3332.97116,1481.985109494857,3461532.414529244,1524523.8119851132,1378.28522,592.3707311475803,1430322.261639406,607883.2565719404,2247.54946,918.4363624898276,2327842.5266066,940249.7655288004,0.37854,100000,0,299552,3134.733515419793,0,0.0,0,0.0,16188,168.86949423916116,0,0.0,22367,230.4858778346362,2177370,0,78158,0,0,2621,0,0,40,0.4185895624692598,0,0.0,0,0.0,0,0.0,0.07513,0.1984730807840651,0.3033408758152535,0.02279,0.3073998986315256,0.6926001013684744,25.79312437983349,4.549199954167399,0.3392365887207703,0.2009972489683631,0.2291953232462173,0.2305708390646492,10.955363363642972,5.465634233892789,24.1193697648444,13232.087084356586,65.4507260196456,13.495954124054665,22.45619254013008,14.825213820066592,14.673365535394282,0.5443603851444292,0.7527801539777588,0.6958945767866194,0.5813953488372093,0.1029082774049217,0.7176128093158661,0.911504424778761,0.8841463414634146,0.7167832167832168,0.1439688715953307,0.4907699234579018,0.6879518072289157,0.6333558406482107,0.5444126074498568,0.0931734317343173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021996735968211,0.0046772589841926,0.0068242749207896,0.0088661135513258,0.0109032047888585,0.0133539929458296,0.0156452518242588,0.0177089720008174,0.0198731068358575,0.0222076471371914,0.0242052208546762,0.0266829815018559,0.028763568206628,0.0309047584663152,0.0328834507988343,0.0350806368134484,0.0374284410520202,0.039399293286219,0.0415816007666347,0.0434905158104623,0.0577596937334602,0.0717730942644437,0.084938878903499,0.0971140776954767,0.1096279856267174,0.1245468229906502,0.1381434087500399,0.1516774799385351,0.1638385396580537,0.1754142606750755,0.1895402956707666,0.2021008768122232,0.2143464886445448,0.2260781818979511,0.237419440275448,0.2491280684216372,0.2602687612589932,0.2702181198587242,0.2803126849028264,0.2899947171371477,0.2987451289664131,0.3070382229102893,0.3149090650247357,0.323015015015015,0.3292365036055349,0.3362954357256739,0.3433994497971284,0.3493394600804135,0.3546723143287771,0.3609639830508475,0.36181169410429,0.3632184225422114,0.3647178501794343,0.3661142766009888,0.366595039842421,0.3670373959727414,0.367322922298909,0.369282070752926,0.3698396862529242,0.3704143288735433,0.3712888116642744,0.3727614987749248,0.3739895890642854,0.3750677017512186,0.3758291420657482,0.3771839671120247,0.3771285331489324,0.3776860815743533,0.3800837532827028,0.3816010226092514,0.3853738701725555,0.3861227967410405,0.3868401111391765,0.3877144607843137,0.3872549019607843,0.3900370326125911,0.3928242870285188,0.3883730318934195,0.3895027624309392,0.3909687379390197,0.0,2.0282607977301104,61.23997647312883,220.79358285757925,341.6512555054536,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95690,40498,380.42637684188526,7572,77.90782735918069,5944,61.59473299195319,2489,25.676664228237016,77.33990302576841,79.73011612607183,63.32261558699434,65.08881472441726,77.03695266630574,79.42466957388706,63.21266573681157,64.98020496921198,0.3029503594626703,305.446552184776,0.1099498501827653,108.60975520527916,65.27202,45.73055472911432,68211.95527223326,47790.31740946214,196.95833,116.708362762975,205312.3523879193,121447.82397635595,240.95432,113.97157744635884,248893.91785975543,116810.7761026458,3428.69168,1538.6901456116163,3554189.1524715223,1579059.5314156313,1466.50687,636.6998547221675,1515296.9275786392,648142.188161843,2450.74346,1010.5386461946808,2529419.9811892565,1028872.1039667196,0.37961,100000,0,296691,3100.543421465148,0,0.0,0,0.0,16283,169.63110042846694,0,0.0,22736,234.65356881596824,2184957,0,78416,0,0,2633,0,0,34,0.3553140349043787,0,0.0,0,0.0,0,0.0,0.07572,0.1994678749242643,0.3287110406761754,0.02489,0.3249717797566788,0.6750282202433212,25.119553802785504,4.623673335389613,0.332436069986541,0.1953230148048452,0.2358681022880215,0.2363728129205922,11.088771530634697,5.506783690541087,26.41885176461336,13220.528295409347,66.87843646115999,13.530167120091324,22.267689888840405,15.664605754486782,15.415973697741476,0.5386944818304172,0.7717484926787253,0.6882591093117408,0.5634807417974322,0.1110320284697509,0.6982698961937717,0.9216216216216216,0.8483606557377049,0.6945337620578779,0.1376811594202898,0.4874416537008224,0.7016434892541087,0.635752688172043,0.5261228230980751,0.1045172719220549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0045613501596472,0.0066665990197968,0.0088469507983585,0.0110531507072186,0.0133756794723019,0.0155135157173726,0.0176675920633624,0.019892868825646,0.0218632930049745,0.0238864113998667,0.0258576443778357,0.0278051990786442,0.0297468224048781,0.0317050767341294,0.0338813068651778,0.0359703286229331,0.0377613086711922,0.0400183083500639,0.0419885125767478,0.0571607646505797,0.0712214323851799,0.0845293549876201,0.0971386492741426,0.1090552343980758,0.124115313409151,0.1385361299426037,0.1518360830228845,0.1639396787423103,0.1757371073228262,0.1899479845353608,0.2036982936778437,0.2169686161073533,0.2287835385187291,0.2403557238297544,0.2517472448357977,0.2626886987180202,0.2731589310829817,0.2826049952906733,0.291342551753371,0.2990083199296451,0.3068896947011346,0.314889990886819,0.3220808167960886,0.3290098492852892,0.3355147212876351,0.3415369978593693,0.3473666789728966,0.3534102697095436,0.3587070002246627,0.3602946135894565,0.3622579088841409,0.3631986218193114,0.3643019732359039,0.3655601288475304,0.36562787841572,0.3662830383363759,0.3672776981734934,0.3693801702433761,0.3709463812728183,0.3716208594954318,0.3716129032258065,0.3720504346727851,0.3726404469072397,0.3732476352170749,0.3753678015973098,0.3767353625937742,0.3781053434144482,0.3807918824948556,0.3827674567584881,0.3840146991272393,0.3870344531501556,0.3899923605805959,0.3881954076128833,0.3898803873172584,0.3925614877024595,0.3948558067030397,0.3911960132890365,0.3982905982905982,0.3939393939393939,0.0,2.022520437231301,64.24200274536302,220.33693848830697,349.33973975873084,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95779,40422,378.0056170976937,7424,76.16492132931019,5755,59.44935737478989,2319,23.763037826663467,77.331780499572,79.67108200600097,63.32970022966426,65.06208585939436,77.04364365282632,79.38523840388814,63.22421348179076,64.96015178389368,0.2881368467456866,285.8436021128341,0.1054867478735062,101.93407550067946,65.74546,46.04160529754852,68642.87578696792,48070.66820237059,193.64759,114.30425099844564,201545.4744777039,118705.45839739988,238.71588,113.4092378577494,245245.064158114,115231.73783961352,3288.21856,1485.8546370358083,3400507.2093047537,1518712.7418701444,1398.47691,604.3085181025828,1445694.9540087075,616527.399641448,2275.34872,945.272931991959,2335949.1537811006,953875.0132226208,0.37869,100000,0,298843,3120.130717589451,0,0.0,0,0.0,16030,166.7066893577924,0,0.0,22493,230.88568475344283,2184683,0,78459,0,0,2661,0,0,38,0.3863059752137734,0,0.0,0,0.0,0,0.0,0.07424,0.1960442578362248,0.3123653017241379,0.02319,0.3118210862619808,0.6881789137380192,25.68483084411764,4.535069840469673,0.3383145091225021,0.2020851433536055,0.2309296264118158,0.2286707211120764,11.232526732648695,5.709852261490181,24.725059148724824,13210.96648951509,64.93578441209044,13.64968980202648,21.96324747959853,14.867911185387818,14.454935945077604,0.557254561251086,0.764402407566638,0.6990241397021058,0.5921745673438675,0.1291793313069908,0.7199444058373871,0.9016393442622952,0.8795918367346939,0.7460815047021944,0.1401515151515151,0.5030120481927711,0.7013801756587202,0.6382978723404256,0.5435643564356436,0.1264258555133079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025120283616105,0.0047139207655812,0.0071235045206855,0.0094071274736884,0.0114823290109331,0.0137985111864682,0.0159560367855467,0.0180387112581158,0.0200159473329108,0.0223473409428264,0.0244802558740312,0.0265108733597552,0.0288522837106957,0.0306342126677722,0.0328706331596057,0.0349618541567597,0.0368065120806967,0.0391420689082951,0.0411812995542069,0.0432731854103976,0.0580495032974371,0.0715877116826877,0.0844392729102459,0.0971270648564583,0.1093420719885357,0.1245878772508242,0.1384222408292615,0.1514020480428749,0.1632550693703308,0.1754041978721352,0.1895217283658245,0.2026458403193181,0.2151433418888937,0.2267213563029806,0.2381130580258871,0.2497008243950004,0.2610340479192938,0.2710787126095418,0.2804741110417966,0.2895279323850752,0.2976995940460081,0.3065419467991815,0.3142674510825175,0.3209852854761533,0.3280699195293317,0.3353197369557439,0.3415808077009852,0.3475354628023268,0.3526792668362843,0.3586288072156904,0.3598705501618123,0.3612874791686752,0.3622769274176483,0.3641223253994698,0.3645969953499463,0.3652216703316981,0.3653702378111827,0.3667144954067917,0.3678877496693973,0.3700982149258011,0.3713059518879644,0.3728645409631143,0.3741856591680546,0.3747216912178117,0.3761728125681868,0.3771904474161259,0.3779787539477462,0.3795777545658848,0.3803761069752672,0.3818385560491455,0.3851180341447701,0.3880187308251251,0.3902611150317572,0.3940097515672162,0.3926761640692227,0.3955539446659418,0.3955562509779377,0.3957350830428542,0.39035333707235,0.3957667731629393,0.0,2.519925081466481,63.33810050863448,215.09649873278556,330.6004335297428,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95689,40605,380.73341763421087,7514,77.4070164804732,5842,60.49807187869035,2344,24.16160687226327,77.34192318165195,79.71799106964447,63.32298576779221,65.07514411889436,77.05623588835024,79.42989533293299,63.21927084744367,64.97289582456375,0.2856872933017058,288.09573671148314,0.103714920348537,102.24829433060734,65.00054,45.51099733555639,67928.9573514197,47561.36790598333,192.95158,113.4497501590221,200997.92034612127,117914.35813836713,238.644,113.10301332116086,245261.9945866296,114995.4379767131,3330.1754,1484.5995425394974,3451337.562311237,1522614.4515456287,1421.53452,615.3402965791962,1474307.652917263,631810.5781000159,2307.51908,950.7056587273156,2381085.830137216,967539.533743494,0.38069,100000,0,295457,3087.6798796099865,0,0.0,0,0.0,15963,166.21555246684574,0,0.0,22462,230.78932792693,2187808,0,78470,0,0,2424,0,0,43,0.4284714021465372,0,0.0,0,0.0,0,0.0,0.07514,0.1973784444035829,0.3119510247537929,0.02344,0.3148359305713923,0.6851640694286076,25.47854492050887,4.681766199900843,0.3296816158849709,0.1963368709346114,0.2428962684012324,0.2310852447791852,11.141909616865147,5.563537818403661,24.92933080833093,13247.613757966685,65.42207915023191,13.32894441353968,21.727374470096137,15.553776856133844,14.811983410462242,0.5477576172543649,0.7611159546643418,0.6983385254413291,0.5828047921071177,0.1148148148148148,0.7162962962962963,0.932748538011696,0.8728070175438597,0.7244897959183674,0.1434108527131783,0.4971059661620658,0.6881987577639752,0.64421768707483,0.5457777777777778,0.108058608058608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781811002095,0.0042570012466932,0.0062692108706899,0.0085928453897251,0.0107390194543032,0.0129400745250554,0.0152111412433986,0.0175323945963056,0.0198885423590163,0.021901621887287,0.0240443769994258,0.0261960752097431,0.0283054769863718,0.0302924145321161,0.032587714318156,0.034414651044952,0.0365033820528491,0.0386743198779361,0.0407861896838602,0.042868902852022,0.0575651538099963,0.0715669336683943,0.0846278181283849,0.0974177662731233,0.1095166242837999,0.1253161476025694,0.1394884644377674,0.1525335264856573,0.1650525910723448,0.1767616594214565,0.1903180592991913,0.2037863362647836,0.2162909423405575,0.2287884259715245,0.2392431397153518,0.2510387005993995,0.2611277952061447,0.2711572453080846,0.28131027753194,0.2902298192149944,0.299274297156217,0.3074321161048689,0.3157869805667728,0.3232531637977568,0.3298401312990092,0.3367655219187372,0.3439211116540741,0.3497255231617694,0.3552366990568363,0.3612925403918872,0.362395170765304,0.3632334055979784,0.3643740722414646,0.3652489972052073,0.3657487987384895,0.3663216011042098,0.3667575882520854,0.3680916935643238,0.3696066153133524,0.3707796743744515,0.3714575850461665,0.3723920041330525,0.3736233654109372,0.3738271493823549,0.37375812806691,0.3745581188300296,0.3761982430537671,0.3783433858590962,0.3808350348517919,0.3821737225695966,0.3842856491404077,0.3886341827486939,0.3907848744836352,0.3905546654459449,0.3901176470588235,0.3901546452602998,0.3966828971393792,0.3935119887165021,0.4039680352714246,0.4054257724189902,0.0,2.10904628170499,59.67808373804096,222.7764406644229,345.0308695765675,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95743,40384,378.09552656591086,7438,76.51734330447135,5847,60.54750738957418,2415,24.858214177537786,77.32392886815877,79.68899186831703,63.31606620966248,65.06543205666681,77.04099595200519,79.40319595894005,63.21306347253312,64.96339593020691,0.2829329161535838,285.7959093769864,0.1030027371293655,102.03612645989324,66.06072,46.249537560837695,68997.9632975779,48305.92060081437,194.38787,114.96029013041472,202422.9865368748,119465.16385669372,243.23378,115.23441140126404,250621.23601725453,117645.90017965715,3373.05148,1509.1166362929948,3493793.760379349,1547257.3647130935,1414.67189,608.653122843677,1464745.9970963935,623052.7928990707,2376.90044,973.2813258319958,2448413.837042917,990085.1317324588,0.37789,100000,0,300276,3136.271058980813,0,0.0,0,0.0,16090,167.47960686420942,0,0.0,22829,235.03545951140032,2181019,0,78367,0,0,2640,0,0,41,0.4177851122275258,0,0.0,0,0.0,0,0.0,0.07438,0.1968297652756093,0.3246840548534552,0.02415,0.3063200815494393,0.6936799184505607,25.52998794063835,4.614840165614581,0.3307679151701727,0.1956558919103813,0.2300324952967333,0.2435436976227125,11.463361447685305,5.899277993896464,25.427559380090308,13206.83387611645,65.71728816927079,13.298440247819734,21.94048253915173,15.043455883552792,15.43490949874652,0.5435265948349581,0.7762237762237763,0.6964839710444675,0.5858736059479553,0.1088483146067415,0.702231520223152,0.9446064139941692,0.8586497890295358,0.7376543209876543,0.1262798634812286,0.4919555857693179,0.704119850187266,0.6438356164383562,0.5377081292850147,0.1043324491600353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0046031086191688,0.0068808736070797,0.008829685626613,0.0110163974447654,0.0132892057026476,0.0152315315131619,0.0175365173987158,0.0198345755503072,0.0221460018429405,0.0244317541035709,0.0265200517464424,0.0285705473537031,0.030633581574529,0.0325050563420976,0.0344207392706524,0.0364593043730449,0.0384958691410304,0.0409184023625568,0.0429025368547168,0.0580374387939404,0.0718522780771041,0.0853877208619514,0.0982293068640646,0.1102757420783466,0.1256531765004548,0.1393118229371134,0.1520917405794478,0.1643683440327284,0.1761344754022791,0.1903398387461382,0.204364328427609,0.2167550878413637,0.2278179293453897,0.2391285220948903,0.2503848240883268,0.2612290901786611,0.2712736029527603,0.2810569585755814,0.2903595802030165,0.2982681875086938,0.3064236314617278,0.3140664476259385,0.3208333333333333,0.3273256451161148,0.3338355149419609,0.3398231198645173,0.3459958670306401,0.3523578354382731,0.3579650701243715,0.3599821770948664,0.3610279613204033,0.362513775466953,0.3638696395952333,0.3646999210122356,0.3655395760747778,0.3660571265443357,0.3674076753592686,0.3689887178784818,0.3698032200357782,0.3710149825391461,0.3712931188383948,0.3724327846797418,0.3738861080559359,0.3739430835386771,0.3741450247647999,0.3740737561868795,0.3748017509357356,0.3764693348485387,0.3790047716428084,0.3815026240677654,0.3845287269996245,0.3848160875652284,0.3863251807414244,0.3886659021406727,0.3893240149415592,0.3923100490196078,0.3962415033986405,0.3983324367939752,0.4007692307692307,0.0,2.0244031876439923,63.73592147884498,216.43691507952727,340.4829374177936,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95786,41015,381.63197126928776,7607,78.13250370617835,5929,61.24068235441505,2478,25.400371661829496,77.4066300966336,79.74495406469649,63.35719594835807,65.08748175763935,77.10319287815626,79.444113991284,63.24518363730552,64.97987673313219,0.3034372184773417,300.84007341248764,0.1120123110525526,107.60502450716558,65.10856,45.59570867481083,67972.7099993736,47601.41218425533,196.45865,115.83683156158136,204436.91144843717,120268.22454385964,244.21487,115.757590401521,251336.8133130103,118056.54394478376,3397.73768,1538.509769308025,3510459.900194183,1569543.054181647,1497.63667,655.6141145928315,1544412.5341908005,665458.4880134679,2435.87748,1015.1276639985128,2499268.034994676,1020554.1293043564,0.38407,100000,0,295948,3089.668636335164,0,0.0,0,0.0,16141,167.82201991940366,0,0.0,22938,235.7860230096256,2187656,0,78616,0,0,2580,0,0,52,0.5428768295993152,0,0.0,0,0.0,0,0.0,0.07607,0.1980628531257323,0.3257525962928881,0.02478,0.3070383797974746,0.6929616202025253,25.77396537796383,4.590215498554276,0.3285545623207961,0.1944678697925451,0.2448979591836734,0.2320796087029853,11.336691609761282,5.849154618566585,26.27207163979864,13486.213257903046,66.717287972327,13.310439459858692,21.936720233032677,16.12315671176094,15.346971567674686,0.5560802833530106,0.7805724197745013,0.6878850102669405,0.5971074380165289,0.1380813953488372,0.6928864569083447,0.92507204610951,0.8282828282828283,0.7371794871794872,0.1688311688311688,0.5113051264830982,0.7183622828784119,0.6400550584996559,0.5587719298245614,0.1292134831460674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.0048974873760418,0.0072254188611846,0.0095404529429096,0.0116760407237517,0.0139813853078348,0.0164964009706164,0.0186393099576379,0.0208921051555664,0.0233636251995579,0.0257035685735954,0.0278279428665243,0.0298978396267138,0.0322932644300552,0.0344497015802331,0.0365945583148329,0.0388463010665921,0.0413418477359429,0.0435925406472391,0.0457252321659101,0.0605937288047164,0.0754669622874354,0.0891194968553459,0.1021472038004351,0.114315518840091,0.1298623072777419,0.1430979107705027,0.156793943453805,0.1691761015013925,0.1808715773235634,0.1950006994286206,0.2084148833789292,0.2207792207792207,0.2317143762082109,0.2437397677203854,0.2552513335841873,0.2660018294179327,0.2769393400958143,0.2862572469111991,0.2956817479130166,0.3039866725282861,0.3119971936389148,0.3189592926220096,0.3263063279002876,0.3328916819623908,0.3389675763707249,0.3455956081419833,0.3515651874785002,0.3570835495588998,0.3629005594276117,0.3644062073715914,0.3663149182702255,0.3678367116321774,0.3690151866450266,0.3703119184098861,0.3711778333512328,0.3713181119579167,0.3732146961289687,0.3747419778570088,0.3757707523969062,0.3772403449568804,0.3787630210907078,0.3801789718548944,0.3811324977618621,0.3819795123358823,0.3819029996612024,0.3816089334548769,0.3838053625876214,0.3841746344206974,0.3857551441963931,0.3896636587366694,0.3913389587645279,0.3939546599496221,0.3965320556696327,0.3970051474029012,0.3967954759660697,0.4017622507342711,0.4040097205346294,0.4114030184460592,0.407421875,0.0,2.5275855751193887,64.33741252100313,221.88192077147625,342.0136594256634,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95679,40727,382.393210631382,7513,77.24788093521045,5790,59.85639482017998,2376,24.383616049498844,77.29491858535671,79.69850431874072,63.29396199958445,65.07456065637182,77.00996119238755,79.41419043384701,63.189253694461655,64.9734843869267,0.2849573929691615,284.3138848937059,0.1047083051227986,101.07626944511594,65.41634,45.865174537189695,68370.63514459808,47936.51118551583,194.87632,115.23050910176518,202912.45727902677,119669.72805084204,238.53579,113.42687218790762,245363.40262753583,115518.40990689716,3326.92164,1490.602287080298,3439709.1524786,1520459.0004915376,1422.47024,616.7887219724311,1469401.8123099112,627334.8814599434,2345.84506,965.541904722012,2409082.578204204,972252.5546336736,0.38087,100000,0,297347,3107.7561429362763,0,0.0,0,0.0,16129,167.8633764985002,0,0.0,22442,230.6044168521828,2184690,0,78348,0,0,2602,0,0,37,0.3762581130655629,0,0.0,0,0.0,0,0.0,0.07513,0.1972589072386903,0.3162518301610542,0.02376,0.3164604897753093,0.6835395102246907,25.583658222933657,4.61095462263022,0.3343696027633851,0.1986183074265975,0.229706390328152,0.2373056994818652,11.15451228535889,5.541804119877421,25.14637900940992,13240.80733439677,65.03095193542741,13.448296865697117,21.64864174843393,14.759311796175162,15.174701525121217,0.5400690846286701,0.7747826086956522,0.6802685950413223,0.5691729323308271,0.1179039301310043,0.7212996389891697,0.9066265060240964,0.8739669421487604,0.75,0.1773584905660377,0.4830874006810443,0.7212713936430318,0.6157024793388429,0.5155945419103314,0.1036970243462579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0044648746283499,0.0066114863149342,0.0089065121244471,0.0111566924885735,0.0134946439309775,0.0157863586268827,0.0179297521505486,0.0198878749437328,0.0220653766172568,0.0243114325280812,0.0263714814053831,0.0283709108122292,0.030342069733167,0.0325467608076303,0.0344492362425408,0.0363638247821175,0.0383744834603484,0.0403341586733526,0.0423203210507114,0.056639645662711,0.070820550942843,0.0840959657445111,0.0969177829925601,0.109481503365902,0.1243730026032297,0.1382787868493965,0.1511079403277501,0.1634055376855424,0.1755748945713642,0.189491715326108,0.2034774893695292,0.2167157752818762,0.2282853457510767,0.2392679197967421,0.2508832356882593,0.2618981197344194,0.2728029893751125,0.2820102214650766,0.2910642006168946,0.2997197582045997,0.3072240497289957,0.3145803976364433,0.3216916616676664,0.328835563983808,0.3362302023281938,0.3426240397027308,0.3488105547348581,0.3557478112210537,0.3616122688698544,0.3630694216211848,0.3641067987888797,0.3648286560428712,0.3662232772221337,0.3670607152428312,0.3675632498195056,0.3673372028305637,0.3684045640416831,0.3695185789067193,0.3708556965660844,0.3725353308552991,0.3734764598104039,0.3751925552343371,0.3743716893947932,0.3753403345001945,0.375131717597471,0.3739952173787778,0.3769194086790653,0.378167641325536,0.3808779314491882,0.383537007147798,0.3818971526623411,0.3855329949238578,0.3861560893254547,0.3883679075494932,0.3924718292975305,0.3981268232765239,0.4001638337087856,0.4113941385921665,0.4105102817974105,0.0,2.569253480744135,60.8042572345245,218.7158847612108,337.9323074485737,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95718,40470,380.31509225015145,7459,76.81940700808624,5770,59.66484882676195,2433,24.96918030046595,77.3593554540744,79.72911364230251,63.33143217950936,65.08316331005922,77.05831431575827,79.4300609771092,63.22034877556446,64.97641562830307,0.3010411383161369,299.052665193301,0.1110834039449031,106.74768175614702,66.0836,46.24407247907058,69039.8880043461,48312.82776392171,195.66539,115.9612939177574,203831.33788838045,120561.63304473288,236.22662,112.03210795202764,243336.7496186715,114364.93525114562,3339.45828,1491.689574541853,3455500.532815145,1525070.8273698285,1396.64663,601.5605802738179,1443858.9502496915,613211.9262145257,2400.94748,997.9592105056636,2466591.069600284,1005987.4288083224,0.37891,100000,0,300380,3138.176727470277,0,0.0,0,0.0,16126,167.8472178691573,0,0.0,22226,228.70306525418417,2182684,0,78274,0,0,2684,0,0,45,0.4701310098414091,0,0.0,0,0.0,0,0.0,0.07459,0.1968541342271251,0.3261831344684274,0.02433,0.3190999744310918,0.6809000255689082,25.37119054592299,4.636800501004685,0.3256499133448873,0.1939341421143847,0.2369150779896013,0.2435008665511265,11.089369553106058,5.4754477958065255,25.9099538622714,13138.53646667776,64.89581290432643,13.136856443190633,21.04034273243041,15.2832927950377,15.435320933667704,0.5405545927209705,0.7801608579088471,0.6998403406067057,0.562545720555962,0.1153024911032028,0.6908037653874004,0.8969359331476323,0.8697674418604651,0.6832298136645962,0.1407407407407407,0.493278651173388,0.725,0.6494133885438234,0.5253588516746411,0.1092511013215859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181258355953,0.0043082911796608,0.0063624463453986,0.0086733968434522,0.0108497808689993,0.0130819428466714,0.0152403282532239,0.0174039973051875,0.0195150375171229,0.0216937283728168,0.0237504358348544,0.0255448961564535,0.0276868942527316,0.0299617750394098,0.0317740420833204,0.0338867409597452,0.0355848673720829,0.0374669363622218,0.0395691680701973,0.0415642318429934,0.056265664160401,0.0695422811626665,0.0826637014036044,0.0962215935978463,0.1077646661815727,0.1233060753842736,0.1375618142071863,0.1498370988692745,0.1621352997755691,0.1741682764541747,0.18832568263615,0.2021371037588775,0.2142833828377452,0.2259166028236839,0.2372784259289861,0.2485525410945229,0.2596076503709,0.2701379667349373,0.2804677300334904,0.2896456079222446,0.2984558040468583,0.3066133202306999,0.3147254359192751,0.3209610386499467,0.3284687484823466,0.3348818296079059,0.3411854579153673,0.3466810920893527,0.3527879643907685,0.3582109250240857,0.3594147497072402,0.3599807268722467,0.3614074595355384,0.3625028861694758,0.3638996569086129,0.3646023118732297,0.3644031586776597,0.36585445947721,0.3673186745545942,0.3685715817886063,0.368739660099263,0.3692774790149425,0.3710663966928204,0.3717321182866037,0.3731708498885551,0.3741630563213863,0.3733991845173146,0.3749920660107902,0.3775322283609576,0.380742932544284,0.382789863404314,0.3833932692823788,0.3827784891165173,0.3850345356868764,0.3864949332323136,0.386203604248717,0.3843783700508396,0.3904820012202563,0.4007170435741864,0.410019267822736,0.0,2.417459768519421,60.88665354967517,218.3197195837596,336.91719769952186,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95884,41012,383.5572149680864,7515,77.23916398982104,5798,59.843143798756834,2318,23.79959117266697,77.4394230829848,79.71899939804827,63.39129033748679,65.07723801824432,77.15436382903697,79.43445075519149,63.28850833908104,64.97736846214896,0.2850592539478356,284.5486428567767,0.1027819984057529,99.86955609535642,65.4368,45.84461218705788,68245.79700471404,47812.5778931395,195.87102,115.83890214705534,203670.99828959996,120214.59106407316,244.35696,115.6824547842575,251122.9923657753,117784.62013803628,3330.56336,1487.9336293070378,3439554.419924075,1518410.5829802451,1398.36417,599.1979290596936,1442326.6446956738,609340.6936594365,2278.77704,933.6221386575836,2341478.82858454,944534.2724642856,0.38245,100000,0,297440,3102.081682032456,0,0.0,0,0.0,16125,167.5357723916399,0,0.0,22920,235.23215552125484,2188986,0,78570,0,0,2606,0,0,43,0.4484585540861874,0,0.0,0,0.0,0,0.0,0.07515,0.196496274022748,0.3084497671324018,0.02318,0.3217205382970695,0.6782794617029304,25.59031444376356,4.613634585083715,0.3478785788202828,0.1919627457744049,0.2343911693687478,0.2257675060365643,11.37497025104662,5.761685081152243,24.4309795464152,13276.150936439684,64.88023774098886,12.895978530124529,22.55229847386105,15.097094220184982,14.334866516818304,0.5577785443256296,0.779874213836478,0.6931085770946951,0.5938189845474614,0.1229946524064171,0.727540500736377,0.9027355623100304,0.874468085106383,0.7766990291262136,0.16,0.5058558558558559,0.7283163265306123,0.6380090497737556,0.54,0.1142587346553352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689005871633,0.0046211844825489,0.006806723541525,0.0092294570967316,0.0114649293097665,0.0133188172808856,0.015492742551566,0.0176356589147286,0.0197682971680764,0.0220340023322899,0.0241605787063126,0.0263487307873838,0.0283309698501757,0.0303467018035081,0.0325367533351203,0.0345607368551484,0.0367584680005793,0.0387524608848824,0.0411640123751583,0.0432656797777939,0.0581238989711569,0.0726824375156733,0.0853325235347707,0.0982518767389364,0.1099905253184545,0.1253471012427016,0.1382995625509739,0.1507400992466182,0.1631238939939875,0.1753191853683072,0.1888995194736785,0.2021954750740108,0.2147380541162924,0.2271207552117477,0.2390659014446863,0.2514553221629518,0.2626663397454472,0.2726813213968796,0.2825264493328198,0.2916519015557663,0.3008153554765094,0.3090826298644435,0.3172029030046571,0.3249604903979694,0.3324673432719856,0.3388429752066115,0.3445334000500375,0.3501976686539463,0.3563767159621679,0.3621316746613252,0.3629647571757297,0.3635963706351388,0.3657705840957072,0.3671445915476672,0.3679253691434683,0.3677245435608381,0.367209895313663,0.3684987937174837,0.3696714866851263,0.3708043800575195,0.3715454323720895,0.372215070799089,0.3733159860662274,0.3744940629262729,0.3748227546924944,0.3756958055664445,0.3771430198781113,0.3788197606859081,0.3819626789903021,0.3850182510712585,0.3865178774766568,0.3858507176012378,0.3862527716186252,0.3901500577145055,0.3902975791790259,0.3952059744639846,0.3945471638984644,0.3981347150259067,0.3956814357823892,0.4029107621600919,0.0,2.4595487370720965,59.623474420106426,217.4384953069797,343.3732147420787,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95729,40771,381.41002204138766,7585,78.01188772472291,5874,60.692162249684,2402,24.694711111575383,77.34647984393533,79.69839084764544,63.33814763576003,65.07510869340273,77.05175195483083,79.40337105554785,63.2303761537671,64.96982357965496,0.2947278891044931,295.019792097591,0.107771481992934,105.28511374776885,65.63656,45.982207144431015,68564.51023200911,48033.274916097536,196.74448,116.1200919946744,204780.10843109197,120559.68607940084,240.36609,113.42572138668493,246440.05473785373,114919.70936726037,3359.39268,1500.01720770642,3474902.5687095863,1532595.1464095735,1431.06552,612.2657681713977,1478696.7481118576,623503.0658139585,2369.2831,978.7838183410686,2438994.056137638,991999.4558995968,0.38085,100000,0,298348,3116.568646909505,0,0.0,0,0.0,16279,169.34262344744016,0,0.0,22598,231.4136781957401,2184166,0,78390,0,0,2606,0,0,39,0.396953901116694,0,0.0,0,0.0,0,0.0,0.07585,0.1991597741893133,0.3166776532630191,0.02402,0.3100037561036685,0.6899962438963315,25.669521942339284,4.6119323053255465,0.3265236636023153,0.2012257405515832,0.2376574736125297,0.2345931222335716,11.04749866755486,5.443243436090614,25.482462435512133,13301.383644502192,65.83322446081735,13.776147383105306,21.42294072963004,15.548267461158051,15.08586888692396,0.5440926115083419,0.7580372250423012,0.6866527632950991,0.585243553008596,0.1204644412191582,0.6952380952380952,0.9014492753623188,0.8449438202247191,0.7032258064516129,0.1660377358490566,0.4983366600133067,0.6989247311827957,0.6388323150033944,0.5515653775322283,0.1096136567834681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0044501211365548,0.0067281639114683,0.0089087990898193,0.0111456871478837,0.0133165010588043,0.0151681957186544,0.0174527194602925,0.019799450072063,0.0220019862193236,0.0242929919330866,0.0265842793504813,0.0287047889293278,0.0309709447837595,0.0330671453922661,0.0350383975359427,0.0370757666742592,0.0389675063285886,0.0411222336566148,0.0436313262298326,0.0590802317690661,0.0732646738675374,0.0866381300096521,0.0994742376445846,0.1115246338917648,0.1264127205641367,0.1394460768194499,0.1528170962729614,0.1652841388292818,0.1779421221864952,0.1925221772457152,0.2059310210570714,0.2182588849038148,0.2295940112562155,0.2403020676464445,0.250733381302928,0.2611275302514916,0.2712301029304235,0.2810205309212243,0.2899648270568152,0.2989318489544155,0.3068733547821,0.3149486001231702,0.3218840353676532,0.328888510721058,0.3366526990386985,0.3426103286384976,0.3493547688505586,0.3549554926945735,0.3600719376892662,0.3621471366114319,0.3641477437233734,0.3656859700143998,0.3674335719046101,0.3690061093726717,0.3698030298374458,0.3699460488733735,0.3711394487865076,0.3721324966567225,0.3723880864485144,0.3735442966530581,0.375094324635609,0.376086589585619,0.3774103442061632,0.3792543391835547,0.3796347537354732,0.3812375824239108,0.3847641389804717,0.3859003397508493,0.3874680306905371,0.3901250459727841,0.3921652803863697,0.391894463119173,0.3947977770916949,0.3949636154729988,0.3957780458383594,0.3968720966243419,0.396168108776267,0.4055051078320091,0.4121863799283154,0.0,2.610573881274884,59.68667273223189,223.52106036403305,347.42131014889696,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95742,40645,380.3033151594911,7572,77.88640304150738,5908,61.13304505859497,2436,25.05692381608907,77.41222784566315,79.76766237554403,63.350809200748486,65.08961366470625,77.10650847049737,79.46172967661957,63.23896921789768,64.98062819965405,0.3057193751657792,305.9326989244653,0.1118399828508032,108.98546505219996,66.56694,46.56641390716873,69527.1876501431,48637.1907237686,196.45957,116.12344219286484,204607.52856635544,120699.6493936179,243.03328,115.38192451064532,250589.45917152343,118014.30010130604,3394.74532,1524.6307821054736,3514963.5060892813,1561773.92143205,1400.74587,609.290710184431,1448544.5572476028,622138.9334034557,2402.73398,993.5253781536022,2473911.992646905,1006619.4509821573,0.38012,100000,0,302577,3160.3267113701404,0,0.0,0,0.0,16217,168.76605878297926,0,0.0,22924,236.21816966430612,2179670,0,78152,0,0,2639,0,0,38,0.3864552651918698,0,0.0,1,0.0104447368970775,0,0.0,0.07572,0.1992002525518257,0.3217115689381933,0.02436,0.3188971421377313,0.6811028578622687,25.380137256140948,4.609169441970489,0.3298916723087339,0.2044685172647257,0.2278266756939742,0.237813134732566,11.255706817775916,5.647315849160507,25.80405307453444,13205.513239059012,66.47703522584676,14.07262501353154,22.008370473461856,15.105192242612258,15.290847496241096,0.5429925524712255,0.7706953642384106,0.7049769112365315,0.5505200594353641,0.1153024911032028,0.7061252580867171,0.9096209912536444,0.8828451882845189,0.6899441340782123,0.1642335766423357,0.4897867564534231,0.715606936416185,0.6471787899388172,0.5,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0048548117366847,0.007152132451406,0.0095153952392558,0.0115800282638091,0.0137425561154374,0.0160527549585176,0.0184382110751711,0.020582734621713,0.0227742635468484,0.0247914403427142,0.0268749871681688,0.0287550118227613,0.031029226998414,0.0332267051903828,0.0353517603522771,0.037381435612807,0.0394575750658836,0.0413998170173833,0.0432726363598483,0.0580460610110036,0.0716535350681692,0.0845894829593731,0.0972607927291088,0.1092271168557108,0.1242050012169698,0.1382073269091989,0.1522023828536749,0.1648820210310336,0.1764598559730405,0.1909331033367473,0.2039804227304227,0.2163391933815925,0.2281272239557672,0.2386272241502781,0.2495451923503572,0.2605803840908582,0.2705479452054795,0.279958654217497,0.2889169199013818,0.2975878768218365,0.3052256810249923,0.3131047551370877,0.3214123006833713,0.3281077205390888,0.3340359700701404,0.3404337868111788,0.3465225683407502,0.351927777849632,0.357489195741541,0.3594258218865084,0.3606275845961504,0.3620709060213843,0.3631823561675471,0.3653575502585147,0.3656950022141123,0.3667182466999305,0.3677007448637145,0.367876442610934,0.3692184297299706,0.3700054222837163,0.3707809756771152,0.3711013696331564,0.3726678895798845,0.372124394767904,0.3733030492898914,0.3741364544675992,0.3766295106744757,0.3786988494423138,0.3790050422837178,0.3815735461801596,0.3844266666666667,0.3887062096876185,0.3900297732651347,0.3901362141850634,0.3925433388743766,0.3887448528290376,0.3901154547295928,0.3908965517241379,0.3922779922779922,0.0,2.1474697360046062,64.38590856447189,223.89941528845705,337.3372321184817,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95729,40654,380.4594219097661,7449,76.62254907081449,5771,59.689331341599726,2273,23.378495544714767,77.32373385663094,79.69386268186463,63.321321634088775,65.07523193472865,77.04848036156014,79.41734648530644,63.22101179915311,64.97677373980598,0.2752534950707996,276.51619655819104,0.1003098349356648,98.45819492267084,65.63084,45.98724721475424,68557.38595409959,48037.52163811312,195.47837,115.34386624734964,203598.6900521263,119890.53426094983,240.36471,113.93939102196066,246936.16354500724,115884.12059102238,3330.8,1486.468785202058,3445607.57973028,1519287.1964710793,1401.60477,603.3006759754383,1449721.442822969,615937.4816094844,2243.92962,928.5242392173732,2309150.85292858,941719.2687790036,0.37991,100000,0,298322,3116.244816095436,0,0.0,0,0.0,16135,167.901054017069,0,0.0,22633,232.30160139560635,2184757,0,78410,0,0,2540,0,0,28,0.2924923481912482,0,0.0,1,0.0104461552925445,0,0.0,0.07449,0.1960727540733331,0.3051416297489596,0.02273,0.3152935184006112,0.6847064815993887,25.740668764190616,4.606896414263272,0.3391093398024605,0.1959798994974874,0.225784092878184,0.2391266678218679,10.91884823455739,5.383797448239862,24.197760161189887,13270.640415623402,64.77926753910552,13.13582829969996,22.057457893492515,14.490889325854749,15.095092020058312,0.540807485704384,0.7718832891246684,0.6980071538068472,0.5694551036070606,0.1014492753623188,0.7054992764109985,0.8991097922848664,0.8903225806451613,0.7335526315789473,0.1268115942028985,0.4889496468443837,0.7178841309823678,0.6380697050938338,0.5195195195195195,0.0951086956521739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002289766970618,0.004512864198282,0.0067803491676816,0.0086681706400016,0.0107744587335178,0.0131202314376228,0.0154407865214376,0.0174338443311919,0.0197662409374904,0.0217113011418915,0.0239255058403667,0.0263636270270825,0.0284659067528085,0.030595315382158,0.0329682806742292,0.0352217512664116,0.037491973403484,0.0394874721170306,0.0413296179999584,0.0434497202338157,0.0584286087183503,0.072644116046385,0.0856813175285849,0.0988198418041063,0.1109201341291098,0.1258603736479842,0.1402535405505755,0.1534213634380686,0.1659244069932609,0.1783022206019536,0.1927992334112124,0.2062001752317494,0.2184176760976882,0.2296582187137827,0.240999240999241,0.2526991860915785,0.2632353597074171,0.2732440569810812,0.2834610849056603,0.2918621415657825,0.3000566231785248,0.3086666432969935,0.3165740631280293,0.3236787887499401,0.3302976212159848,0.3371206053062884,0.3436799599323859,0.3496592573721419,0.3549177776624994,0.3600681467002998,0.3605317442126977,0.3616252448073263,0.3623552668737644,0.363375380600261,0.3644250980158316,0.3646303633403974,0.3645991882293252,0.3659382758677387,0.3668832279022055,0.367337815606895,0.3684794046903187,0.3708922051119225,0.3711955147120816,0.3719427052835458,0.3731133561063062,0.3746485534855611,0.3744174003107198,0.3769856398525861,0.3785808100528913,0.3790952265958303,0.3811700604885256,0.3813915857605178,0.384419064633446,0.3860396653238301,0.3856246434683399,0.3849397590361446,0.3881954076128833,0.391473662635786,0.398723640399556,0.402491241728299,0.0,2.237063749040884,61.00672040920757,216.29266189837367,338.43582902581966,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95774,40679,381.52316912732056,7536,77.40096477123228,5884,60.788940631068975,2484,25.5184079186418,77.38153749659537,79.72167869790646,63.350937847410606,65.08242341684732,77.0777662079477,79.41873169780264,63.24044671910959,64.97517997651835,0.3037712886476669,302.9470001038135,0.1104911283010139,107.24344032897191,65.1772,45.65521058281643,68053.12506525779,47669.73352143216,196.52923,116.19448471429271,204560.63232192452,120685.13816738788,244.50383,116.19512778444454,251101.4784805897,118106.77190183336,3388.87132,1524.292661493694,3504096.101238332,1557460.4640783083,1426.19227,622.5170622102181,1470441.5290162258,631732.151891253,2448.27498,1009.3709863098338,2517627.477185875,1020952.7448992294,0.3805,100000,0,296260,3093.323866602627,0,0.0,0,0.0,16238,168.8662893896047,0,0.0,22966,235.617182116232,2186670,0,78539,0,0,2619,0,0,39,0.3967673898970493,0,0.0,0,0.0,0,0.0,0.07536,0.1980551905387647,0.3296178343949044,0.02484,0.321865154379332,0.678134845620668,25.247284222253963,4.636273118674736,0.3246091094493541,0.2012236573759347,0.2328348062542488,0.2413324269204622,11.095071118847237,5.463169559507924,26.364836273278357,13233.36950018941,66.58770476976339,13.81156331622214,21.77469175417385,15.52142776217068,15.480021937196732,0.5496261046906866,0.7609797297297297,0.7089005235602094,0.5985401459854015,0.1119718309859155,0.7171929824561404,0.9263456090651558,0.8409090909090909,0.7305389221556886,0.1732283464566929,0.4960753532182103,0.690734055354994,0.6640953716690042,0.555984555984556,0.0986277873070325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382466730134,0.0043688041032294,0.0066657197354003,0.0089779917329352,0.0111535880594586,0.0134063540213972,0.0154727443225832,0.0177282887149287,0.0196100472112653,0.0218552397323347,0.0238763757096304,0.0261645213606782,0.0282850092535471,0.0302400049421867,0.0324803251126857,0.0346755111951479,0.0365403123156685,0.038624607378689,0.0407330071368466,0.0424492940735496,0.0573244419398265,0.0713732873130425,0.0850762698537506,0.0982619477953848,0.1107329153274672,0.1261889663918833,0.1398700706874807,0.1530863935018818,0.1651245931380396,0.1775431450316218,0.1918468841835581,0.2053040299379177,0.2176053735625937,0.2290812925504595,0.2403889518320115,0.2509770057679321,0.2613185244658548,0.2716940406731645,0.2813942673064053,0.2905946713056216,0.299038828550609,0.3072380729653882,0.314610331972306,0.3223807983127823,0.329328879441239,0.3363603878901389,0.3427517198248905,0.3487928115971541,0.3542147132751159,0.3593863459329575,0.3604668400695408,0.3618779963630352,0.3623734699927999,0.3631293009779066,0.3645440591329746,0.3647779432308377,0.3656977942692228,0.3662154614449519,0.3672946521598032,0.3684125877874872,0.3697223421630653,0.3702485235245154,0.371427369660771,0.37218459599937,0.3728301339393646,0.3727723681793128,0.3717930342554106,0.374257363165213,0.3768126168718907,0.3795500859072202,0.3818131767296752,0.3871625610476037,0.3896161951593332,0.3924980665119876,0.3948325358851675,0.3944865775851691,0.3958817154358259,0.3956923076923077,0.3996062992125984,0.3989859594383775,0.0,2.4484973192787143,62.88605494491814,230.47396583881263,334.90493780052134,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95860,40996,383.715835593574,7593,77.96786981013979,5917,61.17254329230127,2415,24.78614646359274,77.37299817448195,79.67568596366931,63.35320242165369,65.05746983612502,77.07095092443943,79.37252634179471,63.24171030279219,64.94831029788094,0.30204725004252,303.1596218745989,0.1114921188614985,109.15953824408577,65.08106,45.65920440980909,67891.7796786981,47631.13332965689,198.70356,117.7722945067803,206705.2263717922,122278.70280281694,243.14439,115.24924750660756,250660.6300855414,117839.1173766566,3389.1828,1531.044033453625,3506873.5238890047,1568485.4928579435,1443.58896,624.9402059300429,1491954.902983518,637957.812085769,2383.19446,996.5312179770266,2449290.3400792824,1008675.9130240212,0.38413,100000,0,295823,3085.9899853953684,0,0.0,0,0.0,16430,170.80116837054038,0,0.0,22910,235.96912163571875,2184192,0,78447,0,0,2681,0,0,36,0.3755476736907991,0,0.0,0,0.0,0,0.0,0.07593,0.1976674563298883,0.3180561043065982,0.02415,0.3208208208208208,0.6791791791791791,25.583117645511088,4.565060134767285,0.3189116106134865,0.2038195031265844,0.2404934933243197,0.2367753929356092,11.035871772906033,5.514766170739522,25.79955715047597,13331.747300878982,66.73558084073305,14.06449221358994,21.35625696394391,15.897730185025354,15.417101478173835,0.5382795335474058,0.7719734660033167,0.6788553259141494,0.5586788475052705,0.1270521056388294,0.6867388362652233,0.9144385026737968,0.8542094455852156,0.6646153846153846,0.1404109589041096,0.4888488398287903,0.7079326923076923,0.6178571428571429,0.5273224043715847,0.1235347159603246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888393761393,0.0048040378241965,0.006928172200075,0.0090775244961161,0.0111726732069333,0.0135791284520404,0.016104044357469,0.0183695962770951,0.0205480851759512,0.0227865715776656,0.02485553870743,0.0271787084726981,0.0292896489352955,0.031570062481343,0.0336285192936155,0.0355250792601695,0.0371109915576891,0.039283345768051,0.0412153812604492,0.0430734016542683,0.0585892289244564,0.0723317101715814,0.0860378386306019,0.0988679800058806,0.1102966730908976,0.1257698198911952,0.1398308677037853,0.1529154084974269,0.1650477146089964,0.1780333068992863,0.1919169088365084,0.2053707527486189,0.2181579033187307,0.2298581568039895,0.24073217980892,0.2521550291399827,0.2628406884082234,0.2733330331817568,0.283792986040177,0.2927315424709319,0.3010368210326552,0.309256267996348,0.3167008160316464,0.3236662270710946,0.3304776833995601,0.338011320894326,0.3439082476811231,0.3491115215591364,0.3553146798744911,0.3609693540283984,0.3620294157333693,0.363564875491481,0.3652989979223496,0.3666193017051386,0.3682790891750119,0.3689545545299565,0.3692102420738293,0.3706790072627262,0.3716944592023856,0.3730144501416329,0.3741634709376645,0.3750967357872805,0.3759490210099055,0.376489063376332,0.3786801051286379,0.3805735817458656,0.3814498077254204,0.3831802343997466,0.3842941571999858,0.3865133548928015,0.3882492690058479,0.3918528814284187,0.3928798474253019,0.3926725800231392,0.3940173382871296,0.3961139587555132,0.4027584069425073,0.4015276630883567,0.3909499718943227,0.3908845113943607,0.0,2.1175380985103174,65.5992503801147,218.91165168000092,342.7934214248369,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95799,40494,380.4841386653305,7693,79.1761918182862,5907,61.15930228916794,2418,24.937629829121388,77.39816222968327,79.72728106564294,63.35848721039546,65.0795086868781,77.11143117845954,79.43790522567633,63.25488398023978,64.97683365208084,0.2867310512237253,289.37583996660976,0.1036032301556773,102.67503479725804,66.04136,46.23370215097838,68937.42105867493,48261.15319677489,195.70144,114.62982596380247,203771.9287257696,119145.74530994231,238.44146,112.11134295773604,245637.2509107611,114442.12498021756,3395.56004,1498.4519055477522,3519012.766312801,1538929.3948712763,1426.68195,605.2989438186104,1479536.1746991095,622289.2231696604,2381.6032,965.7322953178036,2459749.37107903,986615.2889502412,0.37912,100000,0,300188,3133.5191390306786,0,0.0,0,0.0,16155,168.1019634860489,0,0.0,22452,231.0984457040261,2185469,0,78382,0,0,2592,0,0,39,0.3966638482656395,0,0.0,0,0.0,0,0.0,0.07693,0.202917282127031,0.3143117119459249,0.02418,0.31452802359882,0.68547197640118,25.50296439600994,4.618198898588354,0.3341797866937532,0.1934992381919756,0.23379041814796,0.2385305569663111,10.99331240703461,5.403745322585828,25.253210719813293,13187.750672382226,65.89885293065774,13.09698363928712,22.374791729862213,15.311530171610777,15.115547389897628,0.5393600812595226,0.7664041994750657,0.7021276595744681,0.5626357711803042,0.1043293115684882,0.7034220532319392,0.8961937716262975,0.8565891472868217,0.6580882352941176,0.1890756302521008,0.4923780487804878,0.7224824355971897,0.6474622770919067,0.539224526600541,0.0871050384286934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020862449616171,0.0043578725474298,0.0065738749340583,0.0087537574132748,0.0109083515478066,0.01278319457732,0.0153665868446527,0.0172835979267844,0.0192995361572569,0.0214039431547284,0.0237378083763625,0.0257773217034376,0.0276967031160075,0.0297553494786895,0.0317542141347492,0.0335450555125225,0.0355871886120996,0.0372670807453416,0.0394899560414436,0.0414445184938353,0.0559358110223075,0.0700466419861538,0.0828711905984966,0.0951049832909476,0.107646575169186,0.1238755641998668,0.1373451552689631,0.1505916404188303,0.1626670084265163,0.1737274959522201,0.1893489849765763,0.2021803551729359,0.2149150921871774,0.2266500622665006,0.2380868647793212,0.2496874343058828,0.2610411765361758,0.2715341273322312,0.28090575969687,0.2902727033248961,0.2992136000925176,0.3073927686047055,0.3149693934335003,0.3220249583428236,0.3284713197877069,0.3355221012171684,0.3415265685980186,0.3473400399343753,0.3535324749345838,0.359565986430476,0.3613371779670152,0.3629943697259199,0.3640580936266215,0.3650857894508608,0.3670081662954714,0.3671738664543979,0.3669437188316314,0.3679076412723958,0.369040894229617,0.3701457830247742,0.3710022522522522,0.3719938090324629,0.3733546406493124,0.3746106442577031,0.3761061946902654,0.3777696488294314,0.3793496212768381,0.381801007556675,0.3828681762331051,0.3836008263149531,0.3860211606284065,0.3888593317727176,0.3855019523869505,0.3889909661613842,0.393266951161688,0.3957605684692279,0.3950693374422188,0.3951299365664006,0.3949860724233983,0.3928571428571428,0.0,1.9088648024665589,58.29553509853724,229.2246794475909,349.8877584132284,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95872,40856,382.3639853137517,7584,77.87466622162884,5957,61.48823431241656,2398,24.60572429906542,77.3584022892406,79.64232529995186,63.35300198276878,65.04221246901062,77.06348324591356,79.34585741587284,63.24575483465814,64.93704671641318,0.2949190433270416,296.46788407902136,0.1072471481106376,105.16575259744344,65.82598,46.13875235426386,68660.27620160213,48125.36752572582,197.72159,116.31535650964054,205598.8818424566,120696.91844298884,243.55487,114.99364351791108,250497.2254672897,117173.48858844944,3440.95916,1540.1809655182587,3553430.907877169,1571299.3623119337,1491.71299,643.1191363411473,1536725.623748331,651604.8623004,2376.83226,986.8195518064916,2440762.328938585,996981.6830688758,0.38253,100000,0,299209,3120.92164552737,0,0.0,0,0.0,16268,169.01702269692925,0,0.0,22909,235.25116822429908,2182643,0,78354,0,0,2580,0,0,47,0.4902369826435247,0,0.0,1,0.0104305740987983,0,0.0,0.07584,0.1982589600815622,0.3161919831223628,0.02398,0.3185463659147869,0.681453634085213,25.39518890525368,4.642072186379466,0.3315427228470706,0.1974148061104582,0.2262884002014436,0.2447540708410273,11.026227724568589,5.407588987046201,25.62786052795277,13338.419661663434,67.17139116524245,13.848830452426,22.394298617150017,14.87474941472324,16.0535126809432,0.5496055061272452,0.7678571428571429,0.6992405063291139,0.6045994065281899,0.1200274348422496,0.7095406360424028,0.916010498687664,0.8851063829787233,0.7252747252747253,0.140893470790378,0.4997798326728313,0.6968553459119496,0.6411960132890365,0.573953488372093,0.1148243359040274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020350514837651,0.0044178293866715,0.0065117505654674,0.0090263887337672,0.0112116283797519,0.0133524664407331,0.0156078079791352,0.0178999439033097,0.0200320594631571,0.0222656130199654,0.0244044755187486,0.0266039244633081,0.0288082326842494,0.0310243380583043,0.0331722297220705,0.0351246708997986,0.0370427838464084,0.0391754500513011,0.0411444000207695,0.0429571676775663,0.0579306750065155,0.0722964572646447,0.0855464332090646,0.0977487031942373,0.1099758792487808,0.1256417298713371,0.1404287788387151,0.1540089323692046,0.1670918503495757,0.1789998392024441,0.1938189845474613,0.2064687111255341,0.219462080361802,0.2313368387682149,0.2423889261486702,0.2543822761276614,0.2649082696704399,0.2749842583430781,0.2850821959769919,0.2941783058537759,0.3023936847466259,0.309376682349086,0.31707403765269,0.3241858455926468,0.3309775204359673,0.3380526822524502,0.3440028095172396,0.3499011542631209,0.3556944101638109,0.3609548144519613,0.3627709135102289,0.3634845494569192,0.3654321685436125,0.3665206925553203,0.3679875865361661,0.3678120239432502,0.3685742923965443,0.3698252677083505,0.3711419885612215,0.3718236106378781,0.3725877812294079,0.3734968495955159,0.3734426713325041,0.3747160560466005,0.3767796610169491,0.3772878426854494,0.3768988248781886,0.3792253743602704,0.3812665373081672,0.3836038052602126,0.3838411691713773,0.3852239923019352,0.3865556896880361,0.3911828624650729,0.3937734217353704,0.4012135922330097,0.3996215108027125,0.3976849937990905,0.3981610476455837,0.3997691419776837,0.0,2.48741919919375,62.31632944394546,229.20311194228807,347.39971855588936,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95724,40733,381.973172872007,7483,76.83548535372529,5833,60.25657097488613,2335,23.891605031131167,77.38965647392791,79.75649037764099,63.34469261111818,65.09394114686484,77.10237169074274,79.47067343062272,63.23843730857003,64.99136455657667,0.2872847831851715,285.81694701826166,0.1062553025481563,102.5765902881659,66.81026,46.8067443630658,69794.6805398855,48897.6059954304,197.75743,117.20520922054008,205927.83418996283,121777.3382020602,244.2068,115.81414420334777,251210.8666583093,117969.53102466614,3334.3202,1502.680915947611,3445735.280598387,1532276.4990468558,1409.23733,610.5009828793721,1453929.495215411,619513.521038999,2291.51252,953.6078712416512,2347326.8354853536,956956.0134539842,0.38111,100000,0,303683,3172.485479085705,0,0.0,0,0.0,16335,169.93648405833437,0,0.0,23027,236.57598930257825,2177542,0,78151,0,0,2636,0,0,35,0.3656345326146002,0,0.0,2,0.0208934018636914,0,0.0,0.07483,0.1963475112172338,0.3120406254176132,0.02335,0.3228316326530612,0.6771683673469387,25.43697860172651,4.564629606557705,0.3260757757586148,0.2082976170066861,0.2391565232298988,0.2264700840048003,11.14961053597149,5.610362680771647,24.67768282439704,13211.996812857808,65.62496742380893,14.378268136270297,21.356081052370207,15.436602230533452,14.454016004634989,0.5530601748671352,0.7637860082304527,0.7029442691903259,0.5756272401433692,0.1196063588190764,0.722488038277512,0.8900255754475703,0.8972746331236897,0.7476038338658147,0.1666666666666666,0.4963386727688787,0.7038834951456311,0.6378947368421053,0.5258780036968577,0.1068334937439846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080868649218,0.0043997039830499,0.0065456316788276,0.0087876140358006,0.0110673705839868,0.0133599446051077,0.0155177863194706,0.017660089219179,0.0195845939978739,0.021700633617557,0.0236067119735129,0.0259634930086442,0.0282603779015975,0.0304281565994604,0.0324799900981929,0.0346114096734187,0.0367290726090378,0.0388956902454713,0.0408568399609204,0.0428127865299658,0.0568275545254278,0.0704304958080823,0.0837740283723663,0.0963017518017781,0.1085791450394564,0.1243507970255661,0.1376730861053637,0.1506040125592039,0.1632382783295952,0.1751305784060318,0.1890008830307337,0.2025835488093821,0.2158144289536072,0.2285733035831474,0.2394589418769742,0.2512101374627543,0.2621257418232118,0.2713967761516153,0.2807240393775801,0.2895631373536447,0.297627448031742,0.3063016710127811,0.3140255439924314,0.3214076105834301,0.3289935510511422,0.3359091917473933,0.3425792642475372,0.3482428115015974,0.3543369296325558,0.3600781487201827,0.3613984055160525,0.3630568863924225,0.364337043821333,0.3653529190642801,0.3665750983740441,0.3672928819683677,0.3674551063998101,0.3683684176011542,0.3697300059620134,0.3711400790682765,0.3719926778242677,0.3725749472063786,0.3732033391217021,0.3740923613128086,0.3762135922330097,0.3766535340621494,0.3778759800427655,0.3779530042580035,0.3796914168696819,0.3819586184816104,0.3829249229920463,0.384880279795534,0.3848061029879212,0.382834513746097,0.3840179657527837,0.3824053187700344,0.3836266258607498,0.3839935327405012,0.3822075782537067,0.3862760215882806,0.0,2.606056278729201,64.42746767999347,216.72048802552288,332.8919067859739,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95759,40775,381.5829321525914,7597,78.13364801219728,5890,60.89244875155338,2390,24.5721028832799,77.34687979821054,79.70543897150051,63.33382307926016,65.08106974320202,77.05292736452282,79.41014312647646,63.22809580384712,64.97724353569623,0.2939524336877213,295.29584502405726,0.105727275413038,103.82620750579008,65.14046,45.65129918145913,68025.41797637819,47673.116032392914,195.30193,114.96887320961535,203296.1288234004,119408.11953796478,238.40142,112.45631063682364,244795.02709928047,114307.35335825414,3375.90348,1505.1860171341384,3491054.1254607923,1537677.5775346828,1432.44713,613.1961517969313,1478921.01003561,623502.5382787975,2356.76922,968.147746649088,2424250.9215843943,981075.0852412208,0.38214,100000,0,296093,3092.064453471736,0,0.0,0,0.0,16084,167.2845372236552,0,0.0,22423,230.03581908750093,2190387,0,78590,0,0,2507,0,0,40,0.417715306133105,0,0.0,1,0.0104428826533276,0,0.0,0.07597,0.1988014863662532,0.3145978675793076,0.0239,0.31267921705523,0.68732078294477,25.556726639735874,4.665343046998218,0.3297113752122241,0.1876061120543293,0.2505942275042445,0.232088285229202,11.029820593922691,5.427366009301494,25.43079544404024,13347.891312138325,66.21022939563971,12.87366104616082,21.79872070618683,16.47967259420237,15.058175049089686,0.5455008488964347,0.7728506787330317,0.6956745623069001,0.5711382113821138,0.1207022677395757,0.710999281092739,0.9483282674772036,0.8553459119496856,0.7358490566037735,0.1310861423220973,0.4943320737941765,0.6984536082474226,0.6436860068259386,0.5259067357512953,0.1181818181818181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0046546059303127,0.0071065989847715,0.0094311818449749,0.011475543257101,0.0136453432720311,0.0155979202772963,0.0177725602286647,0.0199648340864018,0.0225048122209935,0.0248418548858381,0.0269526557350117,0.0289795456648944,0.0310687612670615,0.033242169358584,0.0352188385122702,0.03730972351662,0.0390979159534849,0.0413089124966216,0.0432351379213395,0.0578129403291966,0.0717080212561195,0.0847514495716817,0.0975678970823173,0.1101063437358375,0.125437233828953,0.1396741607572529,0.1527861950177028,0.1656568027138315,0.1773488710852148,0.1919713446706896,0.205805120003458,0.2185829748403076,0.230232481955076,0.2414618874474091,0.2533356935808643,0.264381912236889,0.2744461055968346,0.2838630612638578,0.2924334909927965,0.3019854676725135,0.3101656837966863,0.3172773009766203,0.3245126016162682,0.3315643747115828,0.3384545309056887,0.3448496000600848,0.3510982158764094,0.357406519965289,0.3622714199013114,0.3641774964648845,0.3651311712456104,0.3665304396843292,0.3675917895345476,0.3686526995078286,0.3691831037761894,0.3692427295371971,0.3702727632099091,0.3716528953954812,0.372984593335722,0.3749294502765549,0.3756033609439246,0.3759843348633511,0.3771215054247512,0.3786167789463481,0.3796181698485846,0.380753619850888,0.3831591024987251,0.384667306120999,0.3870824949698189,0.3899731754694293,0.3908664979266519,0.3913544668587896,0.3940095723328701,0.3949165402124431,0.3956610332014862,0.3988484282601929,0.3947149396587598,0.3903697334479794,0.3919577579203899,0.0,2.2665328470188872,61.50366696216833,224.39517743559068,345.1174184271513,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95757,40896,382.2905897219002,7426,76.50615620790124,5768,59.70320707624508,2347,24.09223346596071,77.36211040614715,79.72338302220244,63.32787542470121,65.0753225472583,77.0875054993896,79.44943944272528,63.22853488471743,64.97907294543108,0.2746049067575598,273.9435794771623,0.0993405399837854,96.24960182721054,65.14728,45.64761015344076,68033.7312154725,47670.05585912524,195.45481,115.28459434805816,203564.97175141243,119844.18313191766,240.35024,112.95107608522744,248137.2223440584,115761.86641543527,3346.18872,1485.30093188576,3463941.017366877,1520698.0473286242,1418.10605,609.6098644436207,1465872.5315120567,621672.0640244092,2319.03416,945.3880090191678,2381808.306442349,953293.2827970876,0.38194,100000,0,296124,3092.4423279760226,0,0.0,0,0.0,16090,167.45512077446034,0,0.0,22561,232.7140574579404,2187698,0,78488,0,0,2616,0,0,41,0.4281671313846507,0,0.0,1,0.0104431007654792,0,0.0,0.07426,0.1944284442582604,0.3160517102073795,0.02347,0.3022512151445382,0.6977487848554618,25.79680709656386,4.624343607688185,0.3347780859916782,0.1879334257975034,0.2314493758668516,0.2458391123439667,11.296507133504315,5.658125055988233,24.57480348836977,13287.690171657265,64.61780962417357,12.587841126581752,21.668706657968976,14.89306264329218,15.468199196330657,0.5426490984743412,0.7739852398523985,0.6866908337648887,0.59625468164794,0.119181946403385,0.7020802377414561,0.9281437125748504,0.8590909090909091,0.7333333333333333,0.1360294117647058,0.4941203075531434,0.7053333333333334,0.635814889336016,0.5565217391304348,0.1151832460732984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896973749531,0.004603808789827,0.0070246675464419,0.0090126705752055,0.0113015614668633,0.0137491343137654,0.015979034527767,0.0180307114269378,0.0201122687907076,0.02209797657082,0.0244482730330625,0.0266655710088953,0.0288059916462624,0.0310278023948393,0.033232877843372,0.0355540392448772,0.037774142108642,0.039892099393059,0.041879755519521,0.0439247955835633,0.0589985281683524,0.0722401238701037,0.0857960861631394,0.0985580715390035,0.1105743367965824,0.1256081567034733,0.1395654756853093,0.1519855211327584,0.1635147552193516,0.1754002208854719,0.1900315552540036,0.2032939088656357,0.2153292214643909,0.2276585504583141,0.2385024266235267,0.2501467997651204,0.2614001786511836,0.2724582897386569,0.2822848715185206,0.2918422499083913,0.3003171222888359,0.3085147449319779,0.316598021114425,0.3243107108163534,0.3306567214946913,0.3377102135424372,0.343966035467388,0.3504233242090521,0.3557113060151057,0.3618549622352506,0.3628897399935268,0.364560799173269,0.3663254659786256,0.3671494089902921,0.3688569686696109,0.3689576402410044,0.3688583070410476,0.3702377236360052,0.3707861328959284,0.3720681160972475,0.3726742987764891,0.3734797030484915,0.3740885089263264,0.3752855287320285,0.3765085635824922,0.3769857859531773,0.3771942343370915,0.3784737538597265,0.3773909985935302,0.3785771065182829,0.3793480738545703,0.3800859370855657,0.3829385080645161,0.3837579617834395,0.3857811038353601,0.3904174573055028,0.3881006864988558,0.3913218159903576,0.3931787175989086,0.3982952344052692,0.0,1.9761047259031368,59.84074340473076,218.6928929228876,339.19678005520007,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95763,40444,378.611781168092,7451,76.66844188256424,5799,60.0022973382204,2312,23.84010525986028,77.32840490063373,79.68843230119286,63.31625382636724,65.06450691447708,77.05057303539442,79.40841766925179,63.215726058028544,64.96543121753594,0.2778318652393068,280.01463194107146,0.1005277683386935,99.07569694114216,65.4027,45.83436632229719,68296.41928511013,47862.291618158575,196.13908,115.72586305695796,204268.29777680317,120297.22654569922,237.74926,112.49918553942872,244334.75350605135,114540.92359503466,3320.45492,1482.3060381666896,3436917.9328133,1517440.8050778357,1388.283,602.0435818623134,1433207.0945981224,612186.1196842799,2273.33382,934.5527253257164,2344828.4619320617,950972.8515884406,0.37971,100000,0,297285,3104.3826947777325,0,0.0,0,0.0,16224,168.83347430636047,0,0.0,22386,229.81736161147836,2184137,0,78435,0,0,2629,0,0,40,0.4176978582542318,0,0.0,0,0.0,0,0.0,0.07451,0.1962287008506491,0.3102939202791571,0.02312,0.3139327559857361,0.6860672440142639,25.58531061880517,4.49756909745112,0.3309191239868942,0.2048629073978272,0.2310743231591653,0.2331436454561131,11.181919883113617,5.678514558043335,24.48247525973458,13226.17095948354,64.97284982009792,13.71154427036744,21.642364474513013,14.831128512307476,14.78781256290998,0.5426797723745473,0.7533670033670034,0.6852527357998958,0.5865671641791045,0.1116863905325443,0.6865342163355408,0.9015384615384616,0.8280254777070064,0.7301038062283737,0.1423357664233576,0.4986486486486486,0.697566628041715,0.6388121546961326,0.5470980019029495,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293606801576,0.0045234183249153,0.006893960930837,0.0089635968210735,0.0112612154381396,0.0139341590612777,0.0161629140153369,0.0184281455466165,0.0207323805434582,0.0229082645812434,0.0249500281892265,0.0270858574450171,0.0291855203619909,0.0311882003955174,0.0331967762906704,0.0351232621840922,0.0371091121761363,0.039211009364597,0.0411193781694238,0.0428465792515908,0.0575120556123833,0.0718738233694515,0.0851298074906681,0.098142678453178,0.1096020314623789,0.1259710200069755,0.1400941595622852,0.1533844827769678,0.1654171472510572,0.1767184534722892,0.1901864277175259,0.2027350131449405,0.2152594188235038,0.226483389103952,0.2377524627153156,0.2499944620428416,0.2617633928571428,0.2720508779828905,0.2818311874105865,0.2907751022887465,0.2995046066947543,0.3079641047840788,0.3153306803107826,0.3227099763525274,0.3293891598059126,0.3360468701819303,0.3421894404094381,0.3481697754771588,0.3536260854891678,0.3588774174785517,0.3601117378748212,0.3613891416439187,0.3627017638004321,0.3638389304472386,0.3653247546281816,0.3655089783567072,0.3652477763659466,0.3657660033960335,0.3669724770642202,0.367798372351486,0.3691521154822096,0.369901045075059,0.3708814831903693,0.3725551767450206,0.3727127890696664,0.371101109482939,0.3724367052354221,0.3758954776406728,0.3779037026608475,0.3788990825688073,0.3791223891535361,0.3776689207177466,0.3798386079939478,0.379265592793343,0.3833301868982443,0.3839115969581749,0.3838928241453649,0.3800494641384996,0.3756983240223464,0.3693159351522341,0.0,2.145058783537644,60.09357196245294,221.1016978826217,338.94090423199407,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95735,40746,382.03373896694,7608,78.41437300882644,5927,61.37776152922129,2412,24.870736930067373,77.31464774318667,79.68094775979537,63.30648041847581,65.05654787271601,77.0216669656354,79.38511485006097,63.2003499952714,64.95168059663679,0.2929807775512643,295.8329097344006,0.1061304232044051,104.86727607921864,66.1771,46.34049011599608,69125.2937797044,48404.961733949,195.37728,114.6419906750194,203530.5896485089,119199.0979529342,238.75887,113.22987520132064,246011.29158614928,115692.26966589475,3404.2034,1521.7299036047275,3525936.5122473496,1559666.2790801688,1456.90863,628.5385299365233,1506464.626312216,641289.6974254182,2375.17172,974.4250363710582,2450079.615605578,990536.4793441052,0.38164,100000,0,300805,3142.0588081683813,0,0.0,0,0.0,16127,167.89053115370555,0,0.0,22533,232.02590484148956,2180553,0,78229,0,0,2633,0,0,38,0.3969290228234188,0,0.0,0,0.0,0,0.0,0.07608,0.1993501729378471,0.3170347003154574,0.02412,0.3214018458468446,0.6785981541531554,25.4690981095641,4.551482896446855,0.3414881052809178,0.1941960519655812,0.2304707271806985,0.2338451155728024,11.021200557014303,5.503126953283115,25.581815394689013,13314.348600460104,66.72795095799123,13.434014835928554,22.7595022160298,15.338334240409004,15.196099665623874,0.5431078117091277,0.7567332754126846,0.6847826086956522,0.5805270863836017,0.1219336219336219,0.7087378640776699,0.9178470254957508,0.8706365503080082,0.7389937106918238,0.1373239436619718,0.4898550724637681,0.6854636591478697,0.6258945998698764,0.5324427480916031,0.1179673321234119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0048564852835315,0.0071154509835766,0.0093283202926531,0.0115773945775471,0.0136007987285545,0.0156701115067179,0.0179902391211124,0.0200355733649541,0.022163302076082,0.0244019972727179,0.0268091835058321,0.0288218231191754,0.0310967316490129,0.0332060280759702,0.0350039283794401,0.0369476747196305,0.0389644080107917,0.0408846557765693,0.0427974621563336,0.0576645993860803,0.0718038895518013,0.0850722311396468,0.097688457008245,0.1104784199592968,0.1260128202415959,0.140170649912977,0.1528142998584067,0.1649921976870952,0.1771673819742489,0.1911323887774687,0.2045264948375424,0.2172416422479058,0.2287824495655127,0.2400961443046627,0.2514184830281697,0.2623854852962561,0.2732389600135356,0.283033033033033,0.2923285436982415,0.301870600378063,0.3100121899760888,0.3177878173431515,0.3254613343578538,0.3325062034739454,0.3390274006418168,0.3448202430164098,0.3502362846625141,0.3558109701579568,0.3614723472796166,0.3632503403744793,0.3639080966417807,0.3652146953960626,0.3668768256355381,0.3683873561335855,0.3688055372243282,0.3688807024786827,0.3695548266939166,0.3708526333848001,0.3709717890812632,0.372367455253797,0.3737814925847247,0.3745507282930828,0.3748680990548034,0.3767527318441157,0.3760941349127312,0.3776398586328764,0.379014378919364,0.3824930317891543,0.3827056848165027,0.3858238779916395,0.3878316805146073,0.3894279877425944,0.3918657697363334,0.3927376970855232,0.3927927927927928,0.3925523661753297,0.3976279650436954,0.4006743467266086,0.4042553191489361,0.0,2.057938946136622,64.02757386689377,224.20162295119363,342.5272757204279,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95827,40784,382.2096068957601,7407,76.26243125632651,5761,59.67003036722427,2289,23.56329635697664,77.3504688262772,79.68239232012357,63.33176974345843,65.05977423353254,77.06948511937263,79.39990332322452,63.22880022215742,64.95882736081073,0.2809837069045642,282.4889968990476,0.1029695213010128,100.94687272180636,65.4269,45.84023443275476,68276.05998309454,47836.44946910031,195.12181,115.44092940952504,203170.66171329585,120020.53097048092,238.44791,112.7366556213088,246174.1262900853,115593.07977581368,3316.86056,1485.4395993215048,3433703.152556169,1522581.0524019354,1425.83723,610.7165179335277,1474145.606144406,623574.0300039939,2267.32962,944.5464959105924,2334641.0719317105,958939.9711502922,0.3809,100000,0,297395,3103.4572719588427,0,0.0,0,0.0,16137,167.91718409216608,0,0.0,22382,230.9161301094681,2185174,0,78495,0,0,2617,0,0,41,0.4278543625491772,0,0.0,0,0.0,0,0.0,0.07407,0.1944604883171436,0.3090319967598218,0.02289,0.3105175292153589,0.6894824707846411,25.45286415358508,4.580754829446371,0.3278944627668807,0.2003124457559451,0.2322513452525603,0.2395417462246137,11.032678564647828,5.386737503674158,24.32828222123976,13211.133495606142,64.73013208811825,13.47220391974554,21.298484256498803,14.871161888598897,15.088282023275024,0.5440027772956084,0.7582322357019065,0.6971942826892535,0.5814648729446936,0.1188405797101449,0.6856936416184971,0.8810198300283286,0.8671023965141612,0.698961937716263,0.1342756183745583,0.4992003655471784,0.704119850187266,0.6426573426573426,0.5490943755958055,0.1148587055606198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0047149245105097,0.0069521973003146,0.0089918006969915,0.0110970970563704,0.0133425678841335,0.0157054714191015,0.0180030226288701,0.0201425314151917,0.0221733121768951,0.0241896617138872,0.0263906431307312,0.0284556607945371,0.0304849789385871,0.0326533138059778,0.034707942838839,0.0365734989648033,0.0386270991297493,0.0404581025326585,0.0426209711001915,0.0564272152558993,0.0699894398962809,0.0831246135627678,0.0957689357722979,0.1078871399372063,0.1230554616165032,0.1376312162018874,0.1502914769584273,0.1632430816535702,0.1747749678525503,0.1890219625313404,0.2025878842910883,0.2147900328039799,0.2259538147124075,0.2371732817037754,0.2488698812267328,0.2602629640377704,0.2704354383082169,0.2801576305448929,0.2895804211828868,0.2978445082422671,0.3061262694809753,0.3142312609498556,0.3223915310930213,0.330021887159533,0.3370486946861692,0.3434338368958816,0.3494071146245059,0.3549366300413818,0.360769535898453,0.3626961194674732,0.3637116361227644,0.3650872113551303,0.3653458891705903,0.3671824965371382,0.3664573385127976,0.3667206709234727,0.3673647613241279,0.3687719598937355,0.3708960573476702,0.3731287214260222,0.3743708635516982,0.3759060444986029,0.3771349058509325,0.3777879805717323,0.3785044280249436,0.37976493465641,0.3815074551427849,0.3823249920810896,0.3840015958507879,0.382230744646852,0.3815831471433131,0.3831987891019172,0.3841352009744214,0.3860956513536459,0.3840871418422922,0.3845446182152714,0.3828710265235878,0.387565050671049,0.4004620716211012,0.0,1.6600668146705582,61.83941280961591,219.56224036139213,332.1697174261068,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95706,40714,382.1599481746181,7588,77.90525149938352,5861,60.52912043132092,2382,24.428980419200467,77.30949638025908,79.6683193497944,63.31695901961641,65.05880218673425,77.0124097089818,79.37358265469922,63.2084829753683,64.95464721641298,0.2970866712772704,294.73669509518174,0.108476044248114,104.1549703212752,65.87526,46.15162965127541,68830.85699956115,48222.2949985115,196.34073,115.57693621459173,204451.6644724469,120066.49635165468,240.4603,113.52304163061264,246772.49075293084,115202.4400979214,3398.90164,1514.1412990873205,3511760.098635404,1542719.9144601813,1432.44977,615.0315440491793,1475986.4376319144,621989.6224290964,2351.72034,973.4525175343174,2413291.81033582,979308.5513742045,0.38131,100000,0,299433,3128.6753181618706,0,0.0,0,0.0,16202,168.55787515934216,0,0.0,22583,231.46929137149183,2181401,0,78307,0,0,2617,0,0,39,0.4074979625101874,0,0.0,0,0.0,0,0.0,0.07588,0.1989981904487162,0.3139167105956774,0.02382,0.3143821067099837,0.6856178932900162,25.668136937545707,4.671749190010036,0.3456747995222658,0.188363760450435,0.2257293977137007,0.2402320423135983,11.193502538179128,5.497760446090291,25.375476140886047,13245.05220447501,65.82086624955396,12.846213581181871,22.90012304028258,14.600587246767171,15.473942381322324,0.536256611499744,0.7708333333333334,0.6831194471865746,0.5616024187452758,0.1171875,0.6918103448275862,0.918918918918919,0.841995841995842,0.735191637630662,0.140893470790378,0.4878048780487805,0.7068741893644618,0.6336569579288026,0.5135135135135135,0.1110116383169203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166486059488,0.0043285216121969,0.0064828341855368,0.008612984480377,0.0107761907182432,0.0131505287693262,0.0152881822351322,0.0174038196535568,0.0194595478516822,0.0215635905885724,0.0237499743742184,0.0257207984228684,0.0279185990313325,0.0299893924882339,0.0322291206864544,0.0343235005424394,0.0363282584170815,0.0381045229674649,0.0402548538643828,0.0422209490077608,0.0565616057814817,0.0711152980583032,0.0843036062684876,0.0969061540402978,0.1086211442130239,0.1246853516657853,0.1383444924291459,0.1511561062851303,0.1636132505795259,0.1755219335399264,0.1893772893772893,0.2025205443856173,0.2151843628923425,0.2269612993608265,0.2386306076155658,0.2506734958592477,0.2621124951125509,0.2715893599522302,0.2811125881992024,0.2900855249581547,0.2986915238536359,0.3071953560226581,0.3151579047122652,0.3226112318014331,0.329583596828331,0.3368557496450836,0.3429412501565827,0.3491244169151946,0.3551777835452894,0.3606262324153355,0.362390276839973,0.3637316995763823,0.3651668716339425,0.3667840630752061,0.3680120517868862,0.3684202430395323,0.369317005589439,0.3712790371312057,0.3722445751229409,0.3737028577594734,0.3754766129336706,0.3760296786804156,0.3764263375876933,0.3772792922910272,0.3781857976653696,0.3790271636133923,0.3803004043905257,0.3839577970572345,0.384541679974449,0.3863445462181513,0.3872776577653169,0.3884022142204547,0.3900261462916906,0.3897257628427964,0.3925233644859813,0.3969987995198079,0.4018633540372671,0.3996255460786353,0.3955890563930765,0.4006247559547052,0.0,2.7301659688134623,61.16450179249176,217.0098016681881,349.2549412305411,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95727,40634,380.1121940518349,7616,78.1388740898597,5903,60.99637510838112,2482,25.520490561701504,77.40440741590693,79.76218210987008,63.3594678928421,65.09955378389294,77.09803425726551,79.45451964573002,63.24635830552143,64.9886023741882,0.3063731586414207,307.6624641400656,0.1131095873206646,110.95140970473948,65.6436,45.93906484927116,68573.75662038923,47989.66315592379,198.3018,116.93184880521768,206512.76024528084,121510.66972245832,239.08633,113.18259850890487,245415.9328089254,114884.38269319187,3396.68856,1531.7021435734805,3512351.248863957,1564116.7732964372,1433.27547,622.8615080900336,1479064.2243045326,632475.5273747569,2453.71538,1029.4225738340058,2525143.167549385,1043205.2461513324,0.38047,100000,0,298380,3116.9889372904195,0,0.0,0,0.0,16349,170.10874674856623,0,0.0,22490,230.5828031798761,2185989,0,78410,0,0,2585,0,0,44,0.4596404358227041,0,0.0,0,0.0,0,0.0,0.07616,0.2001734696559518,0.3258928571428571,0.02482,0.319537658463833,0.680462341536167,25.500598799253805,4.698974036454733,0.3208538031509402,0.194307978993732,0.2410638658309334,0.2437743520243943,10.822876939875998,5.240652496830148,26.480958676179736,13249.481501869805,66.42505916072291,13.30401282595675,21.32007819306469,15.90770387761116,15.89326426409032,0.5297306454345249,0.7637314734088928,0.6906019007391764,0.5572733661278988,0.1042390548992355,0.672108843537415,0.9192200557103064,0.8488120950323974,0.6666666666666666,0.1365079365079365,0.4825174825174825,0.6928934010152284,0.639412997903564,0.5238532110091743,0.0951957295373665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185881924124,0.0049759310869014,0.0072838679570677,0.009444980449906,0.0119162608156334,0.0141693811074918,0.0163464968152866,0.0185198412293501,0.0207109358236862,0.0228193688346772,0.0250589320487854,0.0272500538842873,0.0294646804223339,0.0315802484395278,0.0334623123355517,0.03565336944499,0.0377884097593306,0.039947718384664,0.04168398736282,0.0435276226981084,0.0578936927719019,0.0723345472811754,0.0858578441656526,0.0990400891571078,0.1112446370028356,0.1265294036779713,0.1405184029877667,0.1533793279672927,0.1659152100517116,0.1774124359221843,0.1911403584352921,0.2042311438156043,0.2163011791324022,0.2280983782246864,0.239263196117915,0.2508776787197519,0.2610316273463831,0.271224186799838,0.2809004061812158,0.2903964636632234,0.2977741804937272,0.3058966480120573,0.3134453582907922,0.3211590667192863,0.3283459029512331,0.3353841610473987,0.3417303531001013,0.3475773333502854,0.353152780114129,0.3587066840655357,0.3594016921566254,0.3606710671067106,0.3625572062240372,0.3644269802516577,0.3652089984408642,0.3646678712522586,0.3652252452106672,0.366550614202194,0.3674491767401303,0.3697183098591549,0.3708665263790771,0.3713627425665878,0.3713083718973496,0.3727250286124638,0.3724760892667375,0.3737087724817786,0.3769714285714285,0.3794975381896225,0.3812310512585489,0.3838815264250359,0.3857247504807252,0.3868913857677902,0.3901001394346558,0.3893649579188982,0.3898896538715458,0.3911184991688435,0.3943051686784277,0.4006541291905151,0.4010740531373657,0.3959919839679359,0.0,2.6378326289157976,64.60008347743944,219.2038707257068,339.9098570058944,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95749,40609,380.4843914818954,7501,77.17051875215407,5830,60.32438981085965,2394,24.55378124053515,77.33232137485312,79.69762847236765,63.31916690730778,65.07091776189053,77.03173008835283,79.39693244382222,63.209631279843386,64.96393469588207,0.3005912865002926,300.6960285454312,0.1095356274643961,106.98306600845342,65.93422,46.1603987963212,68861.5233579463,48209.79727863602,195.45301,115.99575627910318,203480.9763026246,120504.0469750158,240.59281,114.16801109864734,248298.44698116952,116852.73487469555,3351.05936,1514.5023064684992,3467862.5573113034,1550222.3108119597,1422.9109,620.987409917334,1468369.2362322323,630861.2913230988,2357.1951,986.2662200405662,2419773.324003384,996179.931109724,0.38012,100000,0,299701,3130.0692435430137,0,0.0,0,0.0,16178,168.3359617332818,0,0.0,22652,233.52724310436665,2182062,0,78311,0,0,2630,0,0,35,0.3550950923769439,0,0.0,0,0.0,0,0.0,0.07501,0.1973324213406292,0.3191574456739101,0.02394,0.3193737270875764,0.6806262729124236,25.43378016712212,4.592135511949596,0.330188679245283,0.1941680960548885,0.2444253859348199,0.2312178387650085,11.080215823067736,5.525663462965828,25.708032426108936,13282.243823089992,65.9812681654743,13.261572822423826,21.727066517582912,15.959717198832616,15.032911626634943,0.5461406518010291,0.7703180212014135,0.6992207792207792,0.5691228070175438,0.1149851632047477,0.7065826330532213,0.9337175792507204,0.8592436974789915,0.7051671732522796,0.1594202898550724,0.4940935938209904,0.6980891719745222,0.6466528640441684,0.5282846715328468,0.1035447761194029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022092504763062,0.0046252624532148,0.0069856226139225,0.0092385559801609,0.0113738097175876,0.0136204806389502,0.015797095537244,0.0179991628296358,0.0202341393589284,0.0223177723177723,0.0244292494899894,0.0266002771931625,0.0284938662608355,0.0305789294799831,0.0326544509099913,0.0350276996857946,0.0369864148442677,0.0388114826380603,0.0407889677533332,0.0427320162054636,0.0580203353028373,0.0723403364861471,0.0852884726315458,0.0982524026834346,0.1103976212317717,0.1260061559290481,0.1403060141759687,0.1530388504523682,0.1658656926823016,0.1773195655204212,0.191009057717369,0.2042633771573878,0.2165631424935002,0.2282536175611677,0.2397662749240723,0.2511212252084648,0.2619092785805947,0.2717512407576218,0.2814656738103887,0.2905554028045092,0.2990715873309872,0.3075140720630054,0.3149676212575028,0.3219582968620726,0.3285207330708278,0.3355982784772662,0.3423376037870534,0.3485207251247581,0.3547500518564613,0.3602958658037247,0.3619502069095663,0.3626815888855197,0.364169923390567,0.3657400037626083,0.3670940743719191,0.3679401738275851,0.3683197607838147,0.3698907725003706,0.3708881578947368,0.3719261743762667,0.3732345232034093,0.3749751303171382,0.3761285967428909,0.3787004911458568,0.3790535787916272,0.3801455328762445,0.3799552521369973,0.3827658493202897,0.385761823845936,0.388656644424793,0.3923229161872325,0.3944810454692731,0.3941610522938723,0.3974190557143961,0.3979891871383856,0.399261289169546,0.404040404040404,0.4043804502129385,0.4038620689655172,0.4075939558310732,0.0,2.06382725441092,63.27154475246645,225.630699229916,333.1813504546003,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95735,40734,382.8067060113856,7498,77.12957643495065,5808,60.19741996135165,2327,24.01420588081684,77.41699606751023,79.77045902280877,63.36600846061516,65.10074638064482,77.13127968367867,79.48128415817979,63.26049959806772,64.99597101891784,0.2857163838315557,289.1748646289756,0.1055088625474454,104.7753617269791,65.12066,45.66809129970302,68021.78931425289,47702.60751000472,194.5001,114.49404260891257,202681.8718337076,119111.53978055312,240.14961,113.95334299709492,247411.49005066068,116458.60142964392,3325.05012,1491.4828761979186,3448965.790985533,1533713.0163450353,1397.03784,611.9322953122858,1447465.3470517574,627383.3031934882,2290.90998,956.774981542878,2366048.425340784,976701.857898274,0.38152,100000,0,296003,3091.8995142842223,0,0.0,0,0.0,16046,167.1071186086593,0,0.0,22645,233.1644644069567,2188499,0,78509,0,0,2729,0,0,37,0.3864835222228025,0,0.0,1,0.0104455006006162,0,0.0,0.07498,0.1965296707905221,0.310349426513737,0.02327,0.3211335620790443,0.6788664379209557,25.322464141323927,4.616883697988432,0.3345385674931129,0.1940426997245179,0.2415633608815427,0.2298553719008264,11.135628050293924,5.604590300144669,24.79210896438808,13182.751485474448,65.05449352964723,13.049372251087114,21.749132668569032,15.597956045728164,14.658032564262928,0.5507920110192838,0.7604259094942325,0.7004632012352033,0.5887384176764077,0.1161048689138576,0.7053883834849545,0.9269662921348316,0.8624454148471615,0.7415384615384616,0.1448275862068965,0.5003425439598082,0.6835278858625162,0.6505050505050505,0.5426716141001855,0.108133971291866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021457924249478,0.0043562390460849,0.0064203992210321,0.0087632896353537,0.0107267772897348,0.0129074288971681,0.0147694377624658,0.0169218207797509,0.0193553661577452,0.0215761097527289,0.0234147641103414,0.0255547117141156,0.0273340323608626,0.029370571758115,0.031567219608814,0.0334607833006096,0.0355530707748374,0.0377634417524062,0.0398054418092248,0.0418264022001833,0.055997577580086,0.0707918305850841,0.0835160454454853,0.0955861474228864,0.1073036966724674,0.1225646775114759,0.1366953791318368,0.1503065525609911,0.1623827532423135,0.1741788115690248,0.1886892006848503,0.2027804825273179,0.2150271175019292,0.2269132457999257,0.2386749436906004,0.2500774507634432,0.260792509613777,0.2711782490924009,0.2806160057155169,0.2893902452983528,0.2983981958017695,0.3066850609114504,0.3151600463696799,0.3224592972409579,0.3291554324856081,0.3364845377343374,0.3431877893156512,0.3487182749188983,0.3533751860720989,0.3595075672608758,0.3605257133623301,0.3620238881549978,0.3633479952630689,0.3649065400263512,0.3662676433803823,0.3661628174633622,0.3666249465295711,0.3676374023245124,0.369261511135401,0.3703333749531777,0.3721008592126691,0.3727866716674233,0.3740179749858588,0.3762829094154395,0.3769258502583824,0.3775095166084372,0.3783729876050719,0.3797977259878133,0.3809356807182437,0.3822666349432945,0.3830241862156756,0.3815747529486771,0.3858361560657383,0.3885155772755039,0.3876594148537134,0.3910995997174476,0.3919268849961919,0.3921608040201005,0.3929939792008757,0.3980325387816875,0.0,1.825055034478065,63.51781899648085,214.73917998857925,335.32603785641743,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95690,40964,383.41519490019857,7674,78.9215173999373,5961,61.65743546870102,2427,24.94513533284565,77.3508434030137,79.74154325010424,63.31502979323547,65.08278626217484,77.05282644224827,79.44418102130257,63.20690672380297,64.97834246591387,0.2980169607654233,297.3622288016742,0.1081230694324943,104.44379626096634,64.72554,45.411162936818826,67640.861114014,47456.53980229786,197.01993,115.74037781916066,205266.8721914516,120326.38501323092,241.29405,114.42119966073632,248039.91012645,116399.14238000718,3430.24008,1525.986785803831,3551542.1047131363,1561518.8063578564,1437.90081,620.683495974376,1487036.4405894033,633016.9543749143,2394.24396,987.1993033525614,2464129.4806144843,997131.8787848484,0.38259,100000,0,294207,3074.584596091546,0,0.0,0,0.0,16218,168.8264186435364,0,0.0,22703,233.13825896122896,2188080,0,78451,0,0,2536,0,0,35,0.365764447695684,0,0.0,0,0.0,0,0.0,0.07674,0.2005802556261272,0.3162627052384675,0.02427,0.3021964461994077,0.6978035538005923,25.56553822292073,4.59578709465934,0.3328300620701224,0.1977856064418721,0.2308337527260526,0.2385505787619526,10.962538936153113,5.3402544784405865,25.75530740558512,13375.293937458027,66.60059059656922,13.517809590391048,22.296701201339623,15.143754387096582,15.642325417741969,0.537158194933736,0.7692960135708228,0.6880040322580645,0.5486918604651163,0.1230661040787623,0.6969914040114613,0.9244712990936556,0.8722109533468559,0.6529209621993127,0.1672597864768683,0.4882803943044907,0.7087264150943396,0.6270959087860496,0.5207373271889401,0.1121822962313759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024615820983214,0.0049385971139122,0.007501852622603,0.0099601593625498,0.0123502004109951,0.0145983170677044,0.0167195421762947,0.01891455767306,0.0211799838414415,0.0234837467483255,0.0254845656855707,0.027577494299624,0.0297772109193392,0.0319187298447336,0.0341909450240977,0.0360369673537742,0.0380220258384012,0.0398580058541446,0.041847837393638,0.0438430988293913,0.0592241325283586,0.0735714510099582,0.0870030757602796,0.0997169880798325,0.1115741277996392,0.1270976616231086,0.1411859620814844,0.1539149697537701,0.1660608911314461,0.178169369292023,0.1920751096786711,0.2052897679907326,0.2177617689947113,0.2287724750763304,0.2404579732481973,0.2520207116009358,0.2642090808614203,0.2748612408948133,0.2845979987960975,0.2935248664389058,0.3017231396345276,0.3105338361715584,0.3180056649166262,0.3253120499279884,0.3323319427382965,0.3392410059076726,0.34491650602108,0.3512746071765095,0.3571169490647183,0.3624699384233198,0.3638178752107925,0.364835437455207,0.3659214331052965,0.3668451519536903,0.3681746574324525,0.3691857346472743,0.369510764450363,0.3715535241602683,0.3721527658845693,0.3732844233694193,0.3745091038914673,0.3762448769477498,0.3777847702957835,0.3764508178355366,0.3767451954377758,0.3762945914844649,0.3765309028766733,0.3792420191854065,0.3810712026428621,0.3825745558375634,0.3834046037667182,0.3830739714346621,0.3843578242466359,0.3862169637369391,0.388313539192399,0.3889490790899241,0.3905572755417956,0.3876063183475091,0.3838105726872247,0.3764614185502728,0.0,2.4613767828373416,61.53455029119714,221.72668435575443,353.3907494680399,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95729,40582,379.1014217217353,7608,78.2417031411589,5933,61.444285430747215,2412,24.87229575154864,77.26691653433518,79.62537557929748,63.2951211478972,65.03843794096058,76.96334404552988,79.32012368607064,63.18289488963889,64.92821977597411,0.3035724888053011,305.25189322683843,0.1122262582583104,110.21816498646332,66.71676,46.66971441292329,69693.36355754265,48751.90842161026,197.84841,116.41765953319889,206139.4457270002,121075.61923053506,238.58598,112.76370511288172,245520.29165665573,115023.5294840257,3412.55972,1531.3147885760686,3537914.65491126,1572736.985214585,1446.04121,628.793883898366,1499472.94968087,645763.7015934209,2386.2276,1000.9748316944904,2463380.981729674,1019342.6870859816,0.38014,100000,0,303258,3167.880161706484,0,0.0,0,0.0,16358,170.32456204493937,0,0.0,22500,231.42412435103265,2174955,0,78168,0,0,2661,0,0,38,0.396953901116694,0,0.0,0,0.0,0,0.0,0.07608,0.200136791708318,0.3170347003154574,0.02412,0.3080479880029992,0.6919520119970007,25.629836663214785,4.633949018907422,0.336760492162481,0.2014158098769593,0.2192819821338277,0.2425417158267318,11.024136745920169,5.348019737069962,25.842428319933404,13296.685689504351,66.95046155189975,13.90625737880169,22.67398381846347,14.45032727613412,15.91989307850046,0.5309287038597674,0.7665271966527196,0.6806806806806807,0.5626441199077633,0.098679638637943,0.675017397355602,0.9473684210526316,0.8266129032258065,0.7183098591549296,0.1015873015873015,0.4848754448398576,0.694021101992966,0.6324900133155792,0.5191740412979351,0.097864768683274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147226836284,0.0044915795557087,0.0068697487518772,0.0093964912993569,0.0116347659825478,0.0139390915662895,0.0162189714052704,0.01849715703188,0.0206802081310121,0.0229794464461185,0.0253195698748372,0.0271652088209929,0.029235736909218,0.0313533222779568,0.0334475074281941,0.0354451576890873,0.037549448045896,0.0397252741552284,0.0419018513321067,0.0439494029633025,0.058872668796859,0.0728505934811279,0.0861667296310288,0.0986005892255892,0.110834449942499,0.1268295780461217,0.1406911928651059,0.153066115614448,0.1657540692575877,0.1770193670288143,0.1905034016539261,0.2030235708480086,0.2151072867879316,0.2270845200017526,0.2382994202067855,0.2505329070077272,0.2620823872851119,0.2725807723948296,0.2823621653561202,0.2919414213465751,0.3000845308537616,0.3086311301638614,0.3162242237497037,0.3234492610955713,0.3300681431005111,0.3360091884748861,0.3426455823293172,0.3485556065941918,0.3543964968359776,0.3601389330787994,0.3620621962281521,0.3635218558812945,0.3650548453842011,0.3661892033238422,0.3673460239667692,0.3679474932980002,0.368155079787658,0.3689320388349514,0.3709008280112237,0.3719784172661871,0.3742425100526703,0.3756675966520526,0.3764207852682824,0.3767383059418457,0.377803726949837,0.3782522736259391,0.3797610803324099,0.3806682196764208,0.3823761382376138,0.3821376281112738,0.3818029584147362,0.3845318860244233,0.3867743175701653,0.3872939719879285,0.3882521489971346,0.3954047876819439,0.3939863608183509,0.3932814420319541,0.3869796032411288,0.3940228077074321,0.0,2.1146858745557786,63.813386551669495,225.39594806058903,344.70987260624537,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95704,40576,379.8587310875199,7544,77.60386190754828,5916,61.251358354927696,2499,25.641561481233808,77.288290147924,79.65662659882967,63.294707477804174,65.04343231317469,76.98016645417772,79.34892663480149,63.18243131907688,64.93402283639685,0.3081236937462819,307.69996402818833,0.1122761587272904,109.40947677784152,65.38796,45.820791808966135,68323.12129064616,47877.61411118254,195.15222,115.15412601981164,203353.53799214243,119764.45709668523,240.25201,113.85400162556708,248384.08008024743,116757.87238425016,3421.4426,1537.0267276078887,3542663.796706512,1573659.4997156733,1476.02585,635.2297764122394,1527252.4241411018,648744.753975005,2458.02424,1017.655461701328,2525268.181058263,1027646.5705593688,0.37952,100000,0,297218,3105.5964223020983,0,0.0,0,0.0,16107,167.7045891498788,0,0.0,22584,233.19819443283455,2180568,0,78305,0,0,2650,0,0,46,0.4806486667223941,0,0.0,0,0.0,0,0.0,0.07544,0.1987774030354131,0.3312566277836691,0.02499,0.3155046564309086,0.6844953435690914,25.52738954996753,4.631875845580289,0.3269100743745774,0.1948951994590939,0.2376605814739689,0.2405341446923597,11.365663986426478,5.717047109778239,26.539748992502705,13230.73098949603,66.7760757702891,13.494032506810004,21.85718114233949,15.858429672603252,15.566432448536354,0.5365111561866126,0.7562879444926279,0.6845915201654602,0.5839260312944523,0.1103302881236823,0.6988555078683834,0.9036144578313252,0.851931330472103,0.7552870090634441,0.1115241635687732,0.4862771137671536,0.6967113276492083,0.6314713896457765,0.5311627906976745,0.1100519930675909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018938818501301,0.004115935564319,0.0064131184803344,0.0089904305247973,0.011237897648686,0.0134814528200063,0.0158336901776064,0.0183637013219006,0.0205767206043197,0.0225553906769687,0.0249246725562137,0.0268830448974564,0.0290041331660874,0.0310810393301819,0.0331923671995874,0.0353134494946363,0.0375432275165144,0.0393520200080945,0.0412510531187918,0.0431587943469379,0.0580279277679718,0.0717277048390811,0.0852084295369631,0.0978984920075347,0.1100684034961786,0.1254235134677283,0.1392286782195039,0.1527012773936482,0.1652284562495321,0.1769929559316209,0.1906908526195457,0.2039222059699875,0.2167302036815162,0.2282363504960469,0.239336388472724,0.2506242578268059,0.261341774417252,0.271832066235026,0.2817212377798263,0.2905568450807804,0.299221189224323,0.3076598141368628,0.3160350477275965,0.3230107113232271,0.3292833030698173,0.3358473769458079,0.3422626526612052,0.3475091285141587,0.3538237512026419,0.3592820716603748,0.3605207011100008,0.3613981762917933,0.362154660926946,0.3626547695169447,0.3641338476720194,0.3640452207128115,0.3650634443011574,0.3659088282398005,0.3667119822408838,0.3680431848852901,0.3681076687522446,0.3695076021760357,0.3704353709851352,0.3716254249881791,0.3728772557937007,0.3742858640389958,0.3742753831142742,0.3766064798654523,0.3764005105658772,0.3774736081563842,0.378054978054978,0.3820152029759017,0.3846642929806714,0.3861066235864297,0.3862289530618004,0.3843872345473959,0.3901434238632896,0.3985053524540496,0.4055963053518066,0.3973584905660377,0.0,2.153800494567414,61.84692326621509,230.7849540744402,343.2090020908535,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95814,40700,380.9255432400276,7569,77.70263218318827,5913,60.97230049888326,2333,23.95265827540861,77.36488025655099,79.6815648286863,63.35773544642036,65.0718520965111,77.08281157052565,79.39948799159937,63.25402832185839,64.97108857672929,0.2820686860253403,282.0768370869331,0.1037071245619714,100.76351978180752,65.967,46.22654815619485,68849.0199762039,48246.131208586274,196.83798,115.93508497648055,204682.21762999144,120245.54322643744,242.7137,115.45330590000222,248111.7477612875,116463.5336859534,3396.74084,1523.9855135042349,3506667.167637297,1552161.113367541,1418.06043,617.1333681005807,1463655.9479825497,627788.1350630649,2305.83504,956.7759184410364,2369641.3467760454,965978.8757137778,0.38147,100000,0,299850,3129.500908009268,0,0.0,0,0.0,16271,169.03584027386395,0,0.0,22874,233.6819253971236,2185953,0,78427,0,0,2562,0,0,41,0.4070386373598848,0,0.0,1,0.0104368881374329,0,0.0,0.07569,0.1984166513749443,0.3082309420002642,0.02333,0.3059222934741606,0.6940777065258393,25.472403886448284,4.5448309874911015,0.3291053610688313,0.2026044309149332,0.2337223067816675,0.2345679012345679,11.001552203332793,5.438489730917095,24.76969005781515,13287.558088064294,66.29264675132792,13.983758496531344,21.7445163438954,15.260262875382518,15.304109035518652,0.54354811432437,0.7779632721202003,0.682939362795478,0.5767004341534009,0.1124729632299927,0.7143859649122807,0.9196675900277008,0.8857758620689655,0.7428571428571429,0.143859649122807,0.4893048128342246,0.7168458781362007,0.6194331983805668,0.5276476101218369,0.1043557168784029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0045926436595157,0.0068694699245068,0.0090907244139275,0.0114194486531558,0.0137152282816763,0.0157393626781381,0.0180288706944075,0.0202813215570821,0.0224576488049541,0.0244537367277497,0.0265385917921246,0.0285614446191636,0.0307736643303383,0.0326863410058445,0.0348205805838873,0.0368539186379668,0.0388755918891755,0.0409316041409243,0.042855805146026,0.05803510894621,0.0716727116890175,0.0849064510046303,0.0977274636646223,0.1091439524792518,0.1239228689701782,0.1380110391880581,0.1514648977335544,0.1646220477480745,0.1768309663046505,0.1908880641170458,0.204447423326811,0.2168607936025033,0.2288142072324949,0.2399520821198166,0.2517280660038266,0.2624870477867035,0.2731408161202278,0.2825313760137737,0.2910633820535694,0.2995841035120148,0.3079115180677863,0.3156550729435131,0.3231214772088125,0.3300013360377977,0.3371604558053588,0.3442409686780746,0.3508506472039264,0.3565252284671344,0.3617256928878458,0.3630673558391213,0.3645221220670199,0.3662229992668208,0.3675595884166196,0.367964013882062,0.3681649319947192,0.3685607143992119,0.369564500708799,0.3708060029533981,0.3718234027279253,0.3731687056335901,0.3744769874476987,0.3749393011717513,0.3760905340517144,0.3769710747799168,0.3793691613309541,0.3797091492041681,0.3819982909769915,0.3841118188251946,0.3860797622394473,0.3859924333302574,0.3862815884476534,0.3875456935804527,0.388505925180079,0.3897882938978829,0.3884357005758157,0.3863388828380271,0.3836099585062241,0.3818742985409652,0.3802430419443355,0.0,2.7786988288576078,62.23415591467773,218.57471214692416,348.78881562788865,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95649,40293,376.8465953643007,7418,76.62390615688611,5720,59.352423966795264,2306,23.80578991939278,77.2563444549925,79.66646544547451,63.27473565930678,65.05561369881059,76.98334630724028,79.3900043298847,63.17669124890093,64.95825611529368,0.2729981477522187,276.4611155898109,0.0980444104058477,97.35758351691004,65.59652,45.97515554644226,68580.45562420935,48066.53027887616,192.507,113.06957532474526,200800.26973622307,117749.297248006,234.72533,110.85541858251912,242380.58944683164,113608.84688094676,3259.61964,1442.1414093031874,3384309.5484531987,1484155.620344374,1394.34916,589.2944495447961,1447350.6048155234,605678.5499226203,2264.44644,919.5079504892564,2339617.8736839904,937997.7140684422,0.37782,100000,0,298166,3117.2934374640613,0,0.0,0,0.0,15956,166.32688266474295,0,0.0,22086,227.93756338278496,2181611,0,78335,0,0,2552,0,0,32,0.3241016633733756,0,0.0,0,0.0,0,0.0,0.07418,0.1963368799957651,0.310865462388784,0.02306,0.3125,0.6875,25.50091849133544,4.604529959508754,0.3277972027972028,0.1993006993006993,0.2438811188811188,0.229020979020979,11.23012182971734,5.578374916576293,24.312752625516183,13211.502757598557,64.16796780813785,13.391051675979687,21.02368863404228,15.413382003387664,14.33984549472823,0.5416083916083916,0.7429824561403509,0.6896,0.5842293906810035,0.1091603053435114,0.7105064247921391,0.916184971098266,0.8532731376975169,0.7508532423208191,0.1037344398340249,0.4907891744371162,0.6675062972292192,0.6389664804469274,0.5399274047186933,0.1103835360149672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775459563477,0.0043886766062252,0.0068196348653832,0.008889295256672,0.0109980669447553,0.013029349143771,0.0151481149012567,0.0172973967060362,0.0194034736002291,0.0217181961603868,0.0241342157919039,0.0261337827699959,0.0284961291385274,0.0307344935664797,0.0328801933764436,0.0349023706294429,0.0371426201977899,0.0392346286889588,0.0414763326847236,0.0434741793831422,0.057677033692835,0.071159950136705,0.0846438094438262,0.0971507362615386,0.1093900032710428,0.1249629660981081,0.1385849667306937,0.1521269232816909,0.1642550281060978,0.1759637772126908,0.1897750423075679,0.2032495667244367,0.2154595053742363,0.2273917664719869,0.2380211951787033,0.2491648261395545,0.2595790368398685,0.2701271186440678,0.2805350668833604,0.2900420982598621,0.2991477766827062,0.3066064833812064,0.3150039743270337,0.3226275093650946,0.3294121944982282,0.3365909708665892,0.343062855135908,0.3483180467145463,0.3534468206666407,0.3595095432720924,0.3606196483077172,0.3616886076998521,0.3631578202606518,0.3643982860047934,0.3658131922335321,0.3662805940685677,0.3658307309922886,0.3675489029870473,0.3690043260198893,0.3698593122331706,0.3710952272899175,0.3719455027827093,0.3729791415710391,0.3738557387373203,0.3737437338047611,0.3748523118124294,0.3764996979025807,0.3776960162395331,0.3789659431798129,0.381072127090568,0.3812534359538208,0.3814052898744323,0.3812702651153919,0.3826877530751012,0.383897751655938,0.3799028320891101,0.3823396226415094,0.3845845845845846,0.3873410873681363,0.389082462253194,0.0,1.7293895952915057,59.10362814348262,215.15973958714275,342.2157658898582,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95689,40831,383.5446080531723,7663,78.94324321499859,5952,61.58492616706205,2444,25.102153852584937,77.32722884548278,79.70265977154058,63.32110870231941,65.07544252454916,77.01870951268279,79.39632199024446,63.207589799704735,64.96577908401711,0.3085193327999889,306.3377812961221,0.113518902614679,109.6634405320458,64.262,45.04621105581039,67157.14449936774,47075.64198163884,195.07763,114.94019985734477,203267.62741798957,119519.8297164196,241.16647,114.49822695027638,248402.6586127977,116822.72124603036,3411.61208,1532.664773595248,3531605.2628828813,1568007.245968971,1441.53925,623.1987440239608,1491231.6985233412,636023.1521114876,2407.91676,1008.1276766031154,2475810.86645278,1017935.9698625152,0.38227,100000,0,292100,3052.5974772439886,0,0.0,0,0.0,16118,167.82493285539613,0,0.0,22652,233.13024485573052,2189514,0,78623,0,0,2505,0,0,35,0.3657682701250928,0,0.0,0,0.0,0,0.0,0.07663,0.2004604075653334,0.3189351428944277,0.02444,0.3154761904761904,0.6845238095238095,25.58210832352923,4.563645602447818,0.3326612903225806,0.1985887096774193,0.2308467741935483,0.2379032258064516,11.10582060251684,5.529504591695977,26.285025191925666,13378.929876548162,67.08727269329758,13.61633792848953,22.45220283765373,15.329425342528928,15.689306584625385,0.5426747311827957,0.7580372250423012,0.7005050505050505,0.5735080058224163,0.1122881355932203,0.6955922865013774,0.9085545722713864,0.8563218390804598,0.7094594594594594,0.1525423728813559,0.4933333333333333,0.697508896797153,0.644718792866941,0.536178107606679,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880515115313,0.0047633043143375,0.0072030029420716,0.0092629269630397,0.0113380990634628,0.0135929052162137,0.0159382456712826,0.0181079121260711,0.0204016934939561,0.0228571428571428,0.0248284773713195,0.0268374347808224,0.0289855072463768,0.0310049562592092,0.0328190309097476,0.0346856676008562,0.0366122766122766,0.0385493884839801,0.0403278654420254,0.0423407271514342,0.0574066723766947,0.0719526107023621,0.0853306760371322,0.099186769486497,0.1115165961755492,0.1279965300552229,0.1422218920467811,0.1554959214533682,0.1686308029275068,0.1806430157589281,0.1949695696666128,0.2082268889369993,0.2207029337858564,0.2322829047395075,0.2432967903843614,0.2541747465233531,0.2653434841820901,0.2751105460355322,0.2842903526099494,0.2942686546638092,0.3017132530957869,0.309849753492675,0.3176756308494254,0.3248113445226926,0.3321530692948835,0.3394162386408534,0.3453729134529766,0.3512927460809449,0.357931088203983,0.3626174407833796,0.363125168964585,0.3648788569061917,0.3660388563671842,0.36808686449892,0.369245004253287,0.3694730839767596,0.3693980545428494,0.3702459191909209,0.3699804533452213,0.3713093019922603,0.3721433273770337,0.3730789087010047,0.3749473418148117,0.3766952297415828,0.3766570535346436,0.3787934571082943,0.3786893734537713,0.380290627577892,0.3821261847503183,0.3856890742820472,0.3852719974161399,0.3868605277329025,0.3849588569241564,0.3884624331239823,0.3907373669575223,0.3933637893724453,0.398726312519416,0.4040279490341142,0.4060234244283324,0.4100077579519007,0.0,2.443140090102993,64.13845828611227,223.74288037801983,345.9733152782387,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95784,40640,380.6376847907793,7451,76.62031236949804,5819,60.22926584815836,2402,24.774492608368828,77.38146625236273,79.70356353998982,63.35451413110488,65.06747335596921,77.08470458011338,79.40435905596426,63.246892971822696,64.96122541302258,0.296761672249346,299.20448402555166,0.107621159282182,106.24794294663786,66.36828,46.49139643760522,69289.52643447758,48537.74788858809,197.87154,116.91574419767288,206085.02463877056,121565.90265354642,238.25363,112.761658614869,245335.1290403408,115124.8973069386,3369.46768,1507.5729401741487,3489305.6042762883,1545458.26043405,1464.17011,632.391335749857,1514007.663075253,645617.562170986,2384.16102,990.7523282939744,2460509.834627913,1010682.0821305666,0.38027,100000,0,301674,3149.52392883989,0,0.0,0,0.0,16324,169.89267518583478,0,0.0,22391,230.30986386035244,2179610,0,78295,0,0,2623,0,0,47,0.4906873799381942,0,0.0,0,0.0,0,0.0,0.07451,0.1959397270360533,0.3223728358609583,0.02402,0.3173272357723577,0.6826727642276422,25.512301991959934,4.712467436974905,0.3241106719367589,0.1960818009967348,0.2270149510225124,0.2527925760439938,11.028615753643155,5.361104180120562,25.780831336144555,13240.328863955849,65.58457357524648,13.284608577042947,21.24315216254656,14.6642962478535,16.3925165878035,0.5372057054476714,0.7668711656441718,0.6972428419936373,0.5851627554882665,0.1108089734874235,0.6956214689265536,0.9178470254957508,0.8869565217391304,0.7231833910034602,0.1401273885350318,0.4862593686123098,0.699238578680203,0.6360448807854138,0.5465116279069767,0.1028522039757994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971123666038,0.0045401110705744,0.00697903247076,0.0091498090827849,0.0117644666334509,0.0140073701569721,0.016104044357469,0.0183269046307067,0.0203823087689902,0.0225798530826052,0.0245876447085339,0.0264605093058092,0.0288163114299221,0.0309144627801398,0.0331051405241561,0.0350101725722665,0.0369638329797692,0.0387131556302033,0.0407226187137054,0.0428032984881929,0.0576056102855234,0.0714345505911897,0.0845831148400629,0.0972574083612778,0.1096352519502424,0.1255909384154918,0.1389646065568554,0.1514496764305177,0.1635412217001281,0.1757045008735918,0.1901450897662203,0.2035401100742839,0.2162738105592763,0.2285001804639564,0.2401060634400202,0.2511634091211275,0.2619305433071745,0.2723364990772831,0.2819720900657439,0.2908532321483842,0.2999490316004077,0.3086455905262788,0.3158748963392963,0.3225887685721481,0.3297924060479362,0.3363496270726746,0.342773082942097,0.3480530060974833,0.353502606530591,0.3583375168441356,0.358957075064711,0.3594488460213572,0.3605978912899265,0.3628690759324787,0.364342935569048,0.3643912715865229,0.365651849381422,0.3662892129431515,0.3684787636849589,0.369352126784245,0.3709956059638712,0.3723669623059867,0.3734949885482549,0.3736713184565945,0.3759418469860896,0.3776864479987435,0.378656601183838,0.3806685588142541,0.3838177200902934,0.3856794466877223,0.3872551268523191,0.3882930473293847,0.3886366502711565,0.3879743941472336,0.3934068022040661,0.393587749730829,0.3958876783796225,0.4027636659215606,0.3996683250414594,0.4003097173828881,0.0,2.0781043915548114,63.02294298622503,218.79182052577036,338.19058967245394,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95755,40888,382.1836979792178,7612,78.28311837501958,5895,60.968095660801005,2377,24.41647955720328,77.31912755708531,79.66805753205334,63.32066847763053,65.05815329267115,77.03062958127482,79.38012636478304,63.215972265062526,64.95624266430708,0.2884979758104862,287.9311672703011,0.1046962125680082,101.91062836406672,65.49532,45.87100463416531,68398.85123492246,47904.552904981785,195.48668,114.74590311810488,203579.12380554545,119260.53613131442,235.20973,110.9582671122896,242084.87285259253,113065.17918257591,3400.3586,1503.6259301741466,3519595.5511461543,1538866.8680669656,1459.59704,627.7858587127611,1507782.5492141405,639330.71096081,2359.51096,970.147159456812,2427112.1925748005,982027.4826486896,0.38315,100000,0,297706,3109.0386924964755,0,0.0,0,0.0,16151,168.06433084434235,0,0.0,22182,228.1238577619968,2185533,0,78480,0,0,2589,0,0,41,0.4177327554696883,0,0.0,0,0.0,0,0.0,0.07612,0.1986689286180347,0.3122700998423541,0.02377,0.3146600124766063,0.6853399875233936,25.627370680366344,4.63784000988212,0.3307888040712468,0.1974554707379134,0.225275657336726,0.2464800678541136,10.993505663326404,5.364611918311923,25.201160786616317,13391.077732734197,66.11501901941847,13.48486063524568,21.928084559338515,14.819751276212612,15.882322548621683,0.5406276505513147,0.7414089347079038,0.7046153846153846,0.5835843373493976,0.120440467997247,0.7052401746724891,0.9023668639053254,0.8720173535791758,0.7248322147651006,0.1660649819494584,0.4905994249059942,0.6755447941888619,0.6527871054398925,0.5427184466019418,0.1096938775510204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0045501069123116,0.0068990706546,0.0092933027280667,0.0114206099805758,0.0135854898006986,0.0160591384144787,0.01860474615039,0.0209811660293245,0.023248909727483,0.0253145089354372,0.0276411578071895,0.0298654819202764,0.0318416877845767,0.0338419950268775,0.0358408863074999,0.0378376140045757,0.0401539355213476,0.042178001766509,0.0439523814483455,0.0584956472724995,0.0727324079207506,0.0860873669306203,0.0987402469031946,0.1110384887042874,0.12715430649834,0.1413390461443828,0.1550484094052558,0.1676204304748889,0.1785059652056468,0.1927280166241373,0.2062222703170652,0.2188917287508836,0.2310753922694221,0.2420478176196815,0.2531508184375484,0.2636549345299889,0.2740541513807927,0.2840974878821246,0.2935665280784341,0.3023096960926194,0.3101454026083495,0.3182469817423551,0.3260459811513296,0.3339214445634186,0.3399893799627064,0.3460062695924765,0.3524626741977024,0.3583583193800864,0.3642794806019094,0.3651369955459576,0.3661352163958845,0.3678505306895431,0.3693820428407756,0.370364850363658,0.3697650820982719,0.3705370632484613,0.3706647756320398,0.3725638210266264,0.3733400420492731,0.3742313931117733,0.3747737714047056,0.3760671118248668,0.3773840424331339,0.378032802795031,0.3794391539958962,0.3779439252336448,0.3803834574552369,0.379596174282678,0.3801494386063052,0.3810048176187199,0.3835307993352276,0.3837290725062066,0.3820787425841744,0.3850033304786374,0.3848441589340947,0.379883112888342,0.381321370309951,0.3848291191997777,0.3816852635629088,0.0,2.310221688144912,60.82508946485745,221.20290560587705,351.07560055025806,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95664,40812,382.8399397892624,7536,77.30180632212745,5852,60.41980264258237,2388,24.460612142498743,77.34181859432726,79.72263535220245,63.3271521787835,65.08486386461455,77.04593629334654,79.43039928259351,63.21881335788473,64.98134375879431,0.2958823009807219,292.2360696089328,0.1083388208987727,103.52010582023752,66.0,46.22251215705761,68990.55025924068,48316.68861289452,197.44871,116.73648543599715,205602.0760160562,121233.20220518684,241.50398,114.2873448476695,247390.52308078276,115667.68023918312,3368.94748,1504.7059014540628,3481330.2809834424,1532904.8587895003,1438.9226,619.5546767898945,1487677.8307409266,631312.7790426341,2352.54126,970.4631242087232,2413367.557283826,976068.4217088956,0.38177,100000,0,300000,3135.9341026927577,0,0.0,0,0.0,16342,170.00125439036628,0,0.0,22720,232.5326141495233,2181097,0,78301,0,0,2686,0,0,36,0.3658638568322462,0,0.0,1,0.0104532530523498,0,0.0,0.07536,0.1973963381093328,0.3168789808917197,0.02388,0.3174862017059709,0.6825137982940291,25.77924171150776,4.618180468352263,0.3318523581681476,0.1946343130553657,0.2365003417634996,0.237012987012987,11.102937464423352,5.573089767673061,25.1991082133162,13307.265009491575,65.58076291771009,13.183773746551577,21.866220525065703,15.37346830476336,15.157300341329474,0.5446001367053999,0.752414398595259,0.6956745623069001,0.5874277456647399,0.1196827685652487,0.7154178674351584,0.910144927536232,0.8701298701298701,0.7476340694006309,0.1515151515151515,0.4914874551971326,0.6838790931989924,0.6412162162162162,0.5398313027179007,0.1121994657168299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021063077842249,0.0043483989985505,0.0066962247496525,0.0089780829152363,0.0112966201651279,0.0134703103364014,0.0157477907225636,0.0183130365546175,0.0202475495456821,0.0224590281403228,0.0244545156262816,0.0265484907927574,0.0286513790726623,0.0306864785771695,0.0326982226534277,0.0346924843294234,0.0369533678756476,0.0388944264473793,0.0409691950770383,0.0429941618015012,0.0573861262014208,0.0714450261780104,0.0847477196628564,0.0977070157530859,0.1100655139309413,0.1258912137432035,0.1393448711282775,0.1526316910105182,0.1656141475663835,0.177471254504891,0.1922385101730879,0.2054066918358737,0.2190012074273096,0.2315178288301094,0.2416023941291025,0.2530518200146222,0.2638042289057092,0.2737848784878487,0.2835883581547402,0.2928536247322543,0.3018601638054694,0.3102334939871788,0.3178047828093384,0.3256023013304566,0.3323734538650336,0.3386750819752964,0.3450848815664279,0.3507436080268921,0.3564231901347268,0.361775781198388,0.3631852870587601,0.3637704127334114,0.3644130023440368,0.3653233283115077,0.36604004051719,0.3661326527474555,0.3660117222866401,0.3670400263548015,0.3683298742731685,0.3702549219827663,0.3716265705110147,0.373068914229053,0.373062117419382,0.3738313556274721,0.3752567355321977,0.376021225733575,0.376141519728907,0.3768001015035209,0.3780145622447167,0.379599534529112,0.3816723518023416,0.3838101884159107,0.3839675805736718,0.3860579509645684,0.3864862307182738,0.3891293891293891,0.3906904577191621,0.3935431140171638,0.3914510686164229,0.39296875,0.0,2.8241889527237625,60.75213050528882,220.59998364478423,342.1508339910366,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95686,40806,382.8564262274523,7617,78.3709215559225,5853,60.65673139226219,2405,24.84166962774073,77.38307130315455,79.75908211370255,63.34642469116329,65.09730194368643,77.08947599641482,79.46067626345243,63.23963462714687,64.99047954545702,0.2935953067397321,298.4058502501199,0.1067900640164225,106.82239822941142,64.14584,44.961984652583695,67037.85297744707,46989.09417530641,194.64675,114.71307416407424,202905.9946073616,119368.5117614638,237.97529,112.62888854427014,244786.0606567314,114793.01910818004,3356.63832,1496.6519106334704,3480120.8954287986,1536277.063137209,1431.74204,617.5564708308585,1478415.4839788475,627624.5975647194,2370.9114,980.3942245310992,2449604.4562422927,1000728.5572075387,0.38287,100000,0,291572,3047.175135338503,0,0.0,0,0.0,16077,167.47486570658194,0,0.0,22404,230.2322178793136,2191642,0,78723,0,0,2550,0,0,41,0.4284848358171519,0,0.0,2,0.0209016993081537,0,0.0,0.07617,0.1989448115548358,0.3157411054220821,0.02405,0.3112276757836892,0.6887723242163107,25.676987473371355,4.633245877887122,0.3232530326328378,0.2004100461301896,0.2374850504015035,0.238851870835469,11.065647559743493,5.452894308650597,25.475983996143,13342.201847263355,65.36135695446708,13.521180798764442,21.326335671005427,15.129888011935094,15.383952472762104,0.542456859730053,0.7647058823529411,0.7040169133192389,0.5597122302158274,0.1201716738197424,0.6837972876516774,0.932944606413994,0.8565400843881856,0.7184115523465704,0.1074918566775244,0.4979784366576819,0.6951807228915663,0.6530324400564175,0.5202156334231806,0.1237396883593033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461182592146,0.0041740117115474,0.006764637275484,0.0089463422559811,0.0111331401555589,0.013497969196942,0.0159636282085261,0.0181485980259061,0.0202283483078306,0.0224497108051389,0.0248316023662815,0.0267908485993592,0.029023068299857,0.0310861616109594,0.0332490844380254,0.0350458355295114,0.0370439430666915,0.0391173936959657,0.0409928974761602,0.0426749202776214,0.0577881310783566,0.0720544360115153,0.085527558063907,0.0977951149757641,0.1093445232848693,0.1252061572292468,0.1388953673274674,0.1519228314970009,0.1640630001920737,0.1759373359193339,0.1908671279010964,0.2043729319405696,0.2164782608695652,0.2282335453690952,0.239490067536353,0.2515455693678122,0.2626471310834655,0.2730784391013007,0.283360397905997,0.292503753280539,0.3010129073334491,0.3094549499443826,0.3171691315889268,0.3242084789107805,0.3316987101484546,0.3385929821962121,0.3453298735161019,0.3524807505991535,0.3584090319231767,0.3635161055625372,0.3653993985084087,0.3669633753134732,0.368408430437604,0.3693530638248581,0.3705677453928369,0.3713113872716939,0.3717334010732543,0.3728821931341072,0.3737087751810288,0.3741595395621537,0.3755018573411879,0.376278563656148,0.3773901727431102,0.3790508611229312,0.3804379210779596,0.3817114531698408,0.3827642183806567,0.3850361521534108,0.3858611463174201,0.3864385247528683,0.3884957772198128,0.3909192171007267,0.3923222152297042,0.3905037285040328,0.3954076850984067,0.4004019387634472,0.3988772568654225,0.4009527590313616,0.3997289972899729,0.3884297520661157,0.0,1.8968365594641103,62.26470705432551,214.1334785232929,345.8174503193617,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95696,40952,383.6210499916402,7617,78.41498077244609,5902,61.12063200133757,2406,24.797274703226886,77.3960056150407,79.78190746395153,63.35197710932333,65.11389892679149,77.10679148163365,79.49086426126401,63.246104233343445,65.00964087615806,0.2892141334070572,291.0432026875185,0.1058728759798839,104.2580506334332,66.35354,46.47919857184439,69337.84066209664,48569.63569202933,198.63018,117.50838436517418,206970.28088948337,122199.97112227695,242.85741,114.89092224993396,250362.8678314663,117372.87516415592,3382.87216,1520.2462645023295,3504309.5636181245,1557910.6592776396,1404.47008,613.3725896352091,1453432.6931115198,626788.4536050829,2368.59502,979.1651828325928,2442547.838990136,995896.13465754,0.38325,100000,0,301607,3151.720030095302,0,0.0,0,0.0,16409,170.8535361979602,0,0.0,22864,235.6106838321351,2182969,0,78201,0,0,2562,0,0,37,0.3657415147968567,0,0.0,1,0.0104497575656244,0,0.0,0.07617,0.1987475538160469,0.3158723907050019,0.02406,0.316270337922403,0.683729662077597,25.39262413429349,4.526551252170609,0.3376821416468993,0.1978990172822771,0.2346662148424263,0.2297526262283971,11.008017249287212,5.529460611737336,25.516025576591154,13284.666322476876,66.3396108826091,13.452551167791142,22.580010409499497,15.487321564243407,14.819727741075042,0.5362588952897323,0.7534246575342466,0.6798795785248369,0.5703971119133574,0.103244837758112,0.6927494615936827,0.8940809968847352,0.8548057259713702,0.7266666666666667,0.1484098939929328,0.4879130627633621,0.7001180637544274,0.6230053191489362,0.5271889400921659,0.0913327120223671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0045223175356411,0.0067193114228294,0.0089204978409956,0.011138689398409,0.0133283101861279,0.0156611641873222,0.0179685346455808,0.0203439039849516,0.0223548317757965,0.0244825146864331,0.0265719331389379,0.0288585151131817,0.0313549370635133,0.0334193148988856,0.035373165185032,0.0373615901722548,0.0392767432687716,0.0414747023035723,0.0435122459614382,0.0574564976708236,0.0717171082925195,0.0846959859871409,0.0980233413941751,0.1101401918414672,0.1253674837672638,0.138775726713346,0.1515174094929904,0.1636847221183734,0.1752946601889686,0.1897428165252229,0.2040220248590993,0.2169305843866494,0.2281879194630872,0.2388581607855642,0.2500304456130639,0.2612716118237591,0.2722921348314607,0.2818909057946382,0.2914146553399723,0.299757505773672,0.3092091437644476,0.316710380189504,0.323572001292469,0.3308020767625794,0.3373883736377279,0.3439497602876548,0.3499314581640942,0.3563059513505832,0.3621157442773227,0.3632673906031609,0.3642980745461037,0.3660050675675675,0.3671637908610075,0.3681715508529988,0.3679235165239241,0.3680698640124259,0.368488513491307,0.3691602374394854,0.3706569917071776,0.3720790555378291,0.3732004429678848,0.3755367054141795,0.3751089263769411,0.3770227316509343,0.3788860442029364,0.3792100384999287,0.3815324413027013,0.3838665302811188,0.386659197311032,0.3884898710865562,0.3884448259213561,0.3895252640957108,0.3912842979017754,0.3919137980356632,0.3912048192771084,0.3942441590592604,0.3942997744515071,0.3953294412010008,0.3979711275848615,0.0,1.9837020834753436,61.74915026352505,229.7333365792225,339.7006983539662,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95837,40377,377.04644344042487,7594,78.19526905057545,5988,62.05327796153886,2446,25.28251093001659,77.38566316619061,79.70660955942692,63.36611244363343,65.08420451580817,77.09468057706802,79.41032969113087,63.26189887472184,64.97985700130212,0.2909825891225921,296.2798682960539,0.1042135689115824,104.34751450604551,66.11308,46.28853943240755,68984.92231601574,48299.23665432719,198.54901,117.12581147310544,206773.1147677828,121813.0278213064,244.59018,116.06183016219306,251477.56085854108,118333.66318260726,3466.49592,1551.649274056323,3595418.47094546,1597394.069155257,1446.40101,622.1471670727689,1499387.6999488715,639329.6399853592,2416.68456,984.924034801648,2499769.8383714017,1009453.2797072148,0.37822,100000,0,300514,3135.678287091624,0,0.0,0,0.0,16412,170.82129031584878,0,0.0,23058,237.0483216294333,2185529,0,78428,0,0,2545,0,0,36,0.3756378016841095,0,0.0,0,0.0,0,0.0,0.07594,0.2007826132938501,0.3220963918883329,0.02446,0.3180172306155575,0.6819827693844425,25.583765587184065,4.616733404245872,0.3401803607214428,0.1942217768871075,0.2249498997995992,0.2406479625918503,11.280021568607834,5.654579375503138,25.802441935003188,13193.8208351671,67.28953995883671,13.437371293046697,23.03010290072519,14.94920958527578,15.872856179789052,0.5415831663326653,0.7480653482373173,0.7025036818851251,0.5805493689680772,0.1110340041637751,0.7028688524590164,0.9287749287749288,0.8615384615384616,0.7508896797153025,0.141025641025641,0.4893899204244031,0.6699507389162561,0.6479894528675016,0.5356472795497186,0.1027457927369353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047747939539551,0.0068506358404968,0.0090524861317131,0.0114935514056715,0.013847876998269,0.0160637658114953,0.0180936830288804,0.0203791711380244,0.0224423590572776,0.0244419848736395,0.0263992527738717,0.0287364591255729,0.0309527730884835,0.0332659627124236,0.0352015204412584,0.0374662431322234,0.0396351575456053,0.041491880217635,0.0434221616390747,0.0577338298338392,0.0715920850449998,0.0851674841738984,0.097851552240374,0.1099829369509806,0.1258197716784066,0.1401423668488623,0.153030319131978,0.166725320194943,0.1781939670403803,0.1917270596331261,0.2038537143844641,0.2163992792479864,0.2274637356880123,0.2377140095981726,0.249836928281611,0.2605271366188397,0.271109713220179,0.2810584863554493,0.2900891632373114,0.2986138385121866,0.306286327878802,0.3139493694799981,0.3211014659109931,0.3275089062840802,0.334222102081439,0.3401819929349793,0.3459512962704466,0.3512591578049694,0.3574674341108755,0.3586814665321224,0.3596655297612499,0.3612323636261229,0.3618042503975712,0.3624697012506134,0.3632474044993789,0.363405498063615,0.3634177673836424,0.3643308384261484,0.3659762357755681,0.367270879213959,0.3692696115462606,0.3697537654425453,0.3708362503105169,0.3711854103343465,0.3726473616133886,0.3748124639353722,0.3772197823181211,0.3771233218190235,0.3784143098863911,0.3786282122388612,0.3796475392220073,0.3823098016708118,0.3814043209876543,0.3853597777139024,0.3871162678269277,0.383773643895576,0.3791469194312796,0.381660123387549,0.3752913752913753,0.0,1.699279818489109,65.28795998490351,221.9601106972655,349.80932748429274,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95771,40595,380.731119023504,7495,77.0066095164507,5785,59.86154472648296,2353,24.214010504223616,77.37657405990127,79.72040933407439,63.3458979718325,65.07862192798038,77.0879923341633,79.43253146478348,63.23947503360271,64.97567194558731,0.2885817257379699,287.8778692909094,0.1064229382297909,102.94998239307064,65.67594,45.99828484285378,68576.01988075723,48029.45029586595,194.53769,114.64257338669732,202607.69961679424,119184.62100917536,235.51983,111.50226732902104,243162.00102327424,114293.15004558812,3320.7688,1482.6787332296085,3437345.626546658,1518090.2498977887,1378.70645,592.9080253214887,1426991.0828956575,606493.829365349,2309.56192,956.818353059574,2377790.416723225,967402.5513395292,0.37965,100000,0,298527,3117.091812761692,0,0.0,0,0.0,16046,166.992095728352,0,0.0,22120,228.1379540779568,2186360,0,78382,0,0,2523,0,0,47,0.49075398607094,0,0.0,0,0.0,0,0.0,0.07495,0.1974186750954827,0.313942628418946,0.02353,0.3066109422492401,0.6933890577507599,25.85255197167711,4.613128615460711,0.3351771823681936,0.1960242005185825,0.2430423509075194,0.2257562662057044,11.13873363852798,5.520547526836868,24.753395690034697,13205.35889237766,64.75834044468465,13.169397634069083,21.76558862158456,15.614292448025308,14.209061741005694,0.5469317199654278,0.7557319223985891,0.6890149561629706,0.5896159317211949,0.1087289433384379,0.6896046852122987,0.908284023668639,0.8232662192393736,0.731629392971246,0.1417910447761194,0.5028286942747228,0.6909547738693468,0.6487935656836461,0.5489478499542544,0.1001926782273603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0048049143934555,0.0070618316118427,0.0091734731195903,0.0113395980798958,0.0135029174855653,0.0156825157284008,0.018060603585576,0.0199041086087569,0.0220798231157424,0.0241575106592325,0.0261237310230853,0.0282406883860554,0.0303919751179221,0.0324051625416542,0.0343070371289175,0.0362845604224914,0.0382285204473307,0.0401813097131688,0.0421787127681732,0.0569147270639808,0.0704552347287729,0.0839518597727177,0.0970142195037361,0.1095337464693731,0.1252061223626908,0.1383785159190424,0.1511236911551885,0.1636691799987184,0.1752045554471265,0.1895923995001938,0.2030407964506005,0.2164167736600439,0.2278632010943912,0.2390842317391448,0.2499944563939951,0.2613590671491757,0.2711389298539891,0.2806071477226284,0.289695858869351,0.2985314709592306,0.3068663001520645,0.3143729222615259,0.3211265243537219,0.3276917843170607,0.3348620460093202,0.3407885519863904,0.3465210592557749,0.3526785714285714,0.3585244214581629,0.3599520996757309,0.3611806453387616,0.3628056936094724,0.3641251716412517,0.3650475341651812,0.3661768986808439,0.3660128647929275,0.367358338672844,0.3688624189214629,0.3694964337426932,0.3714441396415016,0.3719271834082761,0.3732378091056159,0.374462654486835,0.3763656095502231,0.3771817349208426,0.380497569345153,0.3831772754500457,0.3845312058740469,0.3867758689572513,0.3882612289887021,0.386396526772793,0.3895658796648896,0.3892003994162378,0.3881616391576551,0.3913095523102705,0.3861600247142416,0.3857548701298701,0.3866078809589418,0.3750960799385088,0.0,2.1048866155003703,60.38753884948088,221.55337930499053,334.1169282829634,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95756,40590,380.7907598479469,7439,76.60094406616818,5796,59.99624044446301,2371,24.426667780609048,77.3313489084019,79.69708134794917,63.31030609897547,65.06286985630162,77.04448815711181,79.40778442647782,63.20560472599604,64.95934158841082,0.2868607512900922,289.29692147134745,0.1047013729794272,103.52826789079472,65.97162,46.20284737935418,68895.54701533064,48250.60296937444,195.04423,114.85644457890136,203154.47595973095,119416.67515079626,238.81939,112.48886063629858,245524.1551443252,114518.14633409589,3342.875,1491.2408545090432,3463430.9286102173,1529921.6013003497,1430.95135,616.3046092432328,1481783.5644763776,631311.2285115704,2343.75708,965.0097341469276,2417056.393333055,982376.1890154156,0.37965,100000,0,299871,3131.61577342412,0,0.0,0,0.0,16091,167.49864238272275,0,0.0,22406,230.1579013325536,2182318,0,78323,0,0,2572,0,0,46,0.480387651948703,0,0.0,0,0.0,0,0.0,0.07439,0.1959436322929013,0.3187256351660169,0.02371,0.3049917017745436,0.6950082982254564,25.656767378573736,4.574403511946568,0.3324706694271911,0.1927191166321601,0.2334368530020704,0.2413733609385783,11.16710378344213,5.543188303883561,25.027509013750198,13211.606037336398,64.97637166335208,12.88315020224872,21.589680968370768,15.16290236915092,15.340638123581684,0.5308833678398895,0.7555953446732319,0.6782563570316554,0.5750184774575019,0.1057898498927805,0.6997808619430241,0.9015384615384616,0.8680089485458613,0.7548387096774194,0.1498257839721254,0.478653715834651,0.6957070707070707,0.620945945945946,0.5215723873441994,0.0944244604316546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002036494797313,0.0041980591581573,0.0062522202486678,0.0086872586872586,0.0108140552198417,0.01297471255003,0.0151420909341191,0.0173274656156508,0.0194847037404494,0.021652293258496,0.0237323596980636,0.0260235269944007,0.0279195653068785,0.0300834793362877,0.0322041246051898,0.0342363767966084,0.0363448097333678,0.0383310331946332,0.0402794091660343,0.0422433994688329,0.0566167720924406,0.0707342339042995,0.0846856675303422,0.0974488937494742,0.1094240948103161,0.125193019566367,0.138979381771491,0.151638776749289,0.1643154857326066,0.1760754563110963,0.1903622508918852,0.2034849091952653,0.2166410834231468,0.2285038645967901,0.2393987777349557,0.2506236487610178,0.2617994594473855,0.2718306687682954,0.281815808293508,0.2909722381421792,0.3001111651497256,0.3081726375969446,0.3162494515528466,0.3229728593226244,0.3295063006026663,0.335826883432705,0.3419792998020199,0.3474953168605763,0.3538635272127828,0.3594749643102627,0.3609600777128671,0.362086065347953,0.3631993006993007,0.3644133981256508,0.3649088396558641,0.3654856547646401,0.3657428657349519,0.3660159716060337,0.3676586418273346,0.3682186488275171,0.3688716976172146,0.3699556013636724,0.370617029769533,0.3722845601436266,0.372362003187328,0.373267300788722,0.3738590517611376,0.3766570696364729,0.3789007092198581,0.3797951395862623,0.3815020926275123,0.3804231673434494,0.3835329910629397,0.3869485294117647,0.3885440180586907,0.3885162960348276,0.3931701420368691,0.3956349206349206,0.3938328374357587,0.3979591836734694,0.0,2.0604257576388827,60.71400446469225,216.98205024823335,342.4346824749996,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95475,40516,380.9583660644148,7552,77.643362136685,5895,61.01073579471066,2389,24.56140350877193,77.22623088476638,79.71297181470537,63.24095407219974,65.07620208480274,76.93799447643559,79.42464022413779,63.13472783120383,64.9727169446679,0.2882364083307891,288.33159056758006,0.106226240995916,103.48514013485044,65.46342,45.86899976044719,68566.0329929301,48042.94292793631,195.90032,115.7847674405868,204446.1586802828,120533.56107943106,243.64407,115.38141815306211,249898.66457187745,116887.6420745014,3393.4654,1526.2768822696642,3514814.181722964,1559131.0000205948,1428.52924,618.8404732060523,1476742.5608798114,628698.8793569877,2362.26558,985.8174529462616,2431294.8939512963,996722.0480872528,0.37903,100000,0,297561,3116.6378633150043,0,0.0,0,0.0,16178,168.67242733699922,0,0.0,22948,235.14008902854152,2177220,0,78170,0,0,2654,0,0,34,0.3456402199528672,0,0.0,0,0.0,0,0.0,0.07552,0.1992454423132733,0.3163400423728814,0.02389,0.3114095644533701,0.6885904355466298,25.311795480189417,4.584669045334694,0.3341815097540288,0.1932145886344359,0.2351145038167938,0.2374893977947413,10.953408018537871,5.409939676083075,25.541235675804483,13208.5604473477,66.53882918863454,13.26421997197373,22.445284354345954,15.374386644629476,15.454938217685376,0.534520780322307,0.7550482879719052,0.6939086294416243,0.5606060606060606,0.105,0.6919801277501775,0.9435736677115988,0.8343313373253493,0.7213114754098361,0.1267605633802817,0.4850646455639768,0.6817073170731708,0.6460176991150443,0.515263644773358,0.0994623655913978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018949181739879,0.0041993366265329,0.0065384693483867,0.0086629384850025,0.0106593093337677,0.0129236100494317,0.0151430116633843,0.0174830891218605,0.0198369259414611,0.0220282371262883,0.0241829528658236,0.0262600505870982,0.0283790184731346,0.0304574287040379,0.0323300579647252,0.0343224550650211,0.0363070539419087,0.0384303534303534,0.0404759176104101,0.0425416383856314,0.0575403263793662,0.0717440799068313,0.0849835417345855,0.0975568624971015,0.1101165629260147,0.1255789797237856,0.1391148109165523,0.1529532263571184,0.1660437171345035,0.1774240355987403,0.1910407151880283,0.2037705967218805,0.2159244558817115,0.2284423686259031,0.2396548299529915,0.2510168700406748,0.2613458353846842,0.27167955975552,0.2815369386385099,0.2902411021814007,0.2990451439245397,0.3069234920113554,0.3144142646849328,0.322094225728097,0.3292511862215337,0.335701818451902,0.341549915738109,0.3472938226753482,0.353301671979702,0.3591467133349243,0.3605186227804244,0.3609637488947834,0.3617129603439498,0.3635388584514595,0.3650817347167276,0.3653037653037653,0.365175968263578,0.3670517842680286,0.3675949192798871,0.3684475534535776,0.3700316765970284,0.3705486810169896,0.3710299479441084,0.3728462818840253,0.3735512845277187,0.3746003459300802,0.375222050312303,0.3761470792987785,0.377050919377652,0.3801391777315629,0.3806546524457521,0.3804760631184808,0.3795980280621919,0.3765530909368092,0.373315868263473,0.3750147597118904,0.3738447319778188,0.379644921552436,0.3779944289693593,0.3691301000769822,0.0,2.82219975752171,61.73475945816648,229.1483932648649,339.4242763574387,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95699,40806,382.9507100387674,7655,78.71555606641658,5918,61.1500642639944,2474,25.43391258006876,77.36399481233721,79.74797674505824,63.33329461681414,65.09685119745608,77.06068403698112,79.44486168246421,63.2217586007348,64.98855978955709,0.3033107753560955,303.1150625940313,0.1115360160793486,108.29140789898872,65.857,46.12643111209989,68816.8110429576,48199.4912298978,197.29055,116.91281864074952,205469.5137880229,121479.3661801581,241.77603,115.2044411564622,248047.0537832161,116887.4238709382,3424.69488,1550.66038510604,3539590.340546923,1581331.116423409,1460.33908,640.2928944107601,1505516.3167849192,648695.2888539316,2446.53786,1022.5796355869568,2515926.227024316,1032976.2165360724,0.38138,100000,0,299350,3128.036865588982,0,0.0,0,0.0,16308,169.6778440736058,0,0.0,22748,233.10588407402375,2183372,0,78360,0,0,2743,0,0,40,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07655,0.2007184435471183,0.3231874591770085,0.02474,0.3129184230101661,0.6870815769898339,25.409292748094245,4.604949919982458,0.3213923622845556,0.1977019263264616,0.2363974315647178,0.2445082798242649,10.801894556853162,5.278206589899706,26.532390107159205,13314.979659726694,66.83929765644068,13.613895519725466,21.52199276257456,15.535086928116108,16.168322446024543,0.5353159851301115,0.7410256410256411,0.685068349106204,0.588277340957827,0.1209398756046993,0.6963423050379572,0.8885793871866295,0.8623655913978494,0.7756410256410257,0.1501597444089457,0.4831058402327142,0.6757090012330457,0.627696590118302,0.5344986200551978,0.1128747795414462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.0048373847698439,0.0074210184357995,0.0096652234892371,0.0116506237408168,0.0137946492246877,0.0162695336407034,0.0180562931492299,0.0198930174997187,0.0218310652372029,0.023658384010337,0.025778489852929,0.0281940772894187,0.030613401477604,0.0326848650601166,0.0345437250563493,0.0366280635604632,0.0386435331230283,0.0408511169090361,0.042613932359499,0.0571783651687153,0.0714181041701557,0.0842452028494392,0.0971174979756233,0.1099129298167942,0.1255934443563309,0.1390470736699222,0.1520499563839067,0.1648287126493226,0.1770953912111468,0.1909492036160137,0.2050411077455647,0.2182286795571699,0.2303881360937038,0.2415894739158177,0.2532001594543119,0.2646481324467847,0.2750964490984962,0.2840379050104976,0.2930971302933834,0.301494574647757,0.3095547212182883,0.3177108619199299,0.3249160671462829,0.3318952945751507,0.338698545723441,0.3455235185857548,0.3516442974365498,0.3569292123629112,0.3622807827819638,0.3632922985750074,0.3646338105726872,0.3659000591866069,0.3666343636547724,0.3677214060548385,0.3682735597684604,0.3683327795446274,0.3692494343705938,0.3699967569597351,0.3713070365140927,0.3723873730070797,0.3729048619091017,0.3737157264418531,0.3749156659020375,0.3764401826042849,0.3776826289106622,0.3781515020842317,0.3789816984358178,0.3800906579786103,0.3812495000399968,0.3835327556961445,0.385399978639325,0.3863737663164597,0.3871391076115485,0.3873960026776322,0.3905232698336147,0.3919024542754416,0.3930719767683053,0.3875140607424072,0.3932938856015779,0.0,2.6449274564031144,63.637375693027785,226.13390811021245,340.3271404125272,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95684,40786,383.16750971949335,7549,77.55737636386439,5863,60.83566740520882,2381,24.53910789682705,77.31725194233033,79.72627233066939,63.30264576078415,65.08517107031791,77.02755199778875,79.43284267631365,63.19678095748559,64.98008941844026,0.2896999445415815,293.42965435573376,0.1058648032985587,105.08165187765428,65.82312,46.07717888951649,68792.1909619163,48155.57343915021,197.94232,117.13714877224716,206451.48614188368,122001.45141533294,239.2011,113.74221936188636,247368.32699301868,116773.5809492828,3374.79296,1519.14884768724,3504048.994607249,1564702.6960487005,1419.29164,618.8167738323701,1470290.999540153,633709.2657417854,2352.84746,978.7385016809692,2428129.0079846163,997253.3605058534,0.38121,100000,0,299196,3126.917770996196,0,0.0,0,0.0,16303,169.92391622423813,0,0.0,22468,232.2227331633293,2181905,0,78319,0,0,2604,0,0,44,0.4598469963630283,0,0.0,0,0.0,0,0.0,0.07549,0.1980273340153721,0.3154060140415949,0.02381,0.3159022177419355,0.6840977822580645,25.55646788802073,4.675803864637864,0.3215077605321508,0.1959747569503667,0.240832338393314,0.2416851441241685,10.98940860363718,5.32900630652954,25.421631100006877,13253.758531885724,65.9344801765238,13.218725479333973,21.24772941418123,15.738915778047994,15.7291095049606,0.5312979703223606,0.7658833768494343,0.6779840848806366,0.5658640226628895,0.1115031757233592,0.6874557051736357,0.927710843373494,0.849438202247191,0.7423312883435583,0.1363636363636363,0.4818059299191374,0.7001223990208079,0.625,0.5128913443830571,0.1045987376014427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0045834812148253,0.0066269523123293,0.0089016248513855,0.011049498906242,0.013130284200876,0.0151796462163099,0.0171829029094475,0.0194900861451576,0.0215968117040786,0.0235764850723299,0.0256581516266261,0.0278032260388895,0.0298472070437346,0.0319858712715855,0.034391780736878,0.0363440347476339,0.038372467365229,0.04022264995058,0.0423220856657389,0.0570222635477501,0.0713096472214368,0.0847434497816593,0.0978442697976833,0.1100069624659788,0.1255172121866302,0.1398234033069428,0.1531212063126956,0.1648000512963002,0.1767665390102876,0.1907516318748788,0.2038558546855887,0.2153685424806015,0.2269622331691297,0.2378549868910969,0.2497894036798936,0.2606803267711263,0.2704414544145441,0.2806149656776536,0.2901068447029992,0.298335763720112,0.3068797304727256,0.315040915173549,0.3233724653148346,0.330460049603657,0.3368952284589662,0.3428635862483712,0.3490871126276387,0.3552425259502119,0.3615111474847209,0.3624057112068966,0.3641945564932472,0.3651672726247851,0.3670789035944167,0.3683473180619103,0.3688475436303529,0.3680064793787419,0.3694925304300561,0.3708517414979965,0.3728492219638705,0.3742814202517377,0.3756961924959863,0.3772929258892656,0.3777558037620513,0.3786167789463481,0.37998109938573,0.3797511895889469,0.3813315638133156,0.3827553293032135,0.385282596530498,0.3899264029438822,0.3911644863821574,0.3907335415206169,0.3901009945262508,0.391449247762331,0.3935776530977677,0.3940993788819876,0.3946179129005752,0.389252591380251,0.3843226788432268,0.0,1.7412987437031744,62.76094831217544,226.19646414080964,335.5376944644226,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95857,40812,382.6741917648163,7587,77.88685229039089,5865,60.611118645482335,2376,24.44265937803186,77.4717338221379,79.75647287911603,63.40399372213196,65.08989794426084,77.18493901558958,79.46832992743695,63.300719101471714,64.9885045412899,0.286794806548329,288.14295167907744,0.1032746206602439,101.3934029709418,66.67694,46.66442954177985,69558.75940202593,48681.29561928691,196.36927,115.72975186438428,204288.24186027105,120163.43288897446,241.8382,114.40975822791722,247908.95813555608,116054.86406528272,3397.61232,1514.322105081895,3514620.27812262,1549933.0722658697,1447.91186,623.2866725101734,1498801.4438173529,638535.4356073876,2348.05146,959.4858837719042,2418536.048488895,975752.9279553696,0.38171,100000,0,303077,3161.761791001179,0,0.0,0,0.0,16215,168.56358951354622,0,0.0,22723,232.67992947828537,2184667,0,78332,0,0,2689,0,0,40,0.4172882522924773,0,0.0,0,0.0,0,0.0,0.07587,0.1987634591705745,0.3131672597864768,0.02376,0.3174048658764816,0.6825951341235184,25.57240521363387,4.691576748214424,0.3290707587382779,0.1928388746803069,0.2364876385336743,0.2416027280477408,11.14325069387174,5.454420669006546,25.096426360717704,13289.481751176589,65.55140399950511,13.219869962638631,21.534233457897525,15.292842153566244,15.504458425402722,0.5430520034100597,0.770999115826702,0.6932642487046632,0.5940879596250901,0.1065631616090331,0.7274741506646972,0.9410029498525072,0.8454935622317596,0.7918088737201365,0.15625,0.4876967412990468,0.6982323232323232,0.644808743169399,0.5411334552102377,0.0956072351421188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024901305800182,0.0046094153640425,0.0067229106248352,0.0090946000812017,0.0113608649703276,0.013531799729364,0.015514220519925,0.0177480390456859,0.0199129955272348,0.0217622514930868,0.0240787398349003,0.0265627403722886,0.0284460972653119,0.0305181709676091,0.0324811875064426,0.0344905925359879,0.0364114075284722,0.038284950304186,0.0401125602259511,0.0422004599902174,0.0572152532298933,0.0708551118544846,0.084232808668497,0.0970727914600319,0.1094915897306184,0.1250171784978064,0.1384630065525796,0.1523348579938304,0.1642737433149372,0.1767864031891637,0.1913517817180237,0.2052409768748649,0.2179407836878277,0.2297354832370825,0.240486728093392,0.2529209546022306,0.2633319967923015,0.2734569702956959,0.2826214955387472,0.2918609967992684,0.3007872924987879,0.308900889972356,0.3167725329995985,0.3244474741676234,0.3315378922978005,0.3383431806991629,0.3444724936889199,0.35111924181213,0.3570689565982101,0.3628290600542834,0.3641036682186398,0.3649250041206527,0.3659181720974731,0.3665757693805999,0.3681609758269153,0.3684476114747079,0.3691274106860575,0.370247093738215,0.3710634958545157,0.3713445602780005,0.3717912711340785,0.3725242392527794,0.3737278552581983,0.3747709497206704,0.3755825685869408,0.3756972319240995,0.3757039649581887,0.3779033270558694,0.3796797041275601,0.381411522958982,0.3832698930578213,0.3847543160690571,0.3865189873417721,0.3836448957612124,0.383726482666412,0.3860576923076923,0.3828545091411891,0.3754812563323201,0.3656121045392022,0.3584544758990053,0.0,2.2829143770149427,59.629417847157576,226.4358821632091,341.10638626351846,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95746,40806,380.93497378480566,7530,77.39226703987634,5828,60.3471685501222,2338,24.08455705721388,77.34438518034166,79.6990177194764,63.33412346583962,65.07299777626564,77.05853982266807,79.41080386071174,63.23011432995556,64.970816116794,0.285845357673594,288.21385876466366,0.1040091358840555,102.18165947163982,66.3575,46.46807854066396,69305.76734276106,48532.6578036304,196.81131,116.29407254814278,205054.2894742339,120959.66677265133,242.64445,114.42148081226928,250162.4506506799,116987.83427174028,3365.09148,1502.290042120176,3485261.5043970505,1539695.697073692,1429.1861,617.5359464129543,1477822.070895912,630110.2567344365,2307.52034,952.2867781217528,2378775.0715434584,966587.0279392812,0.38197,100000,0,301625,3150.2621519436843,0,0.0,0,0.0,16285,169.55277505065487,0,0.0,22786,234.7460990537464,2180263,0,78291,0,0,2772,0,0,43,0.449104923443277,0,0.0,0,0.0,0,0.0,0.0753,0.1971359007251878,0.3104913678618858,0.02338,0.309304380760005,0.6906956192399949,25.56445702104304,4.6196696785035005,0.3335621139327385,0.1983527796842827,0.2292381606039807,0.2388469457789979,11.017681700918075,5.401951980250375,24.7688314019661,13329.633251246983,65.37906037318182,13.512913817961044,21.855507567470696,14.710538642168489,15.300100345581608,0.5418668496911462,0.7569204152249135,0.6939300411522634,0.5853293413173652,0.1091954022988505,0.7140751658069271,0.9019607843137256,0.8640350877192983,0.7474048442906575,0.1450980392156863,0.4895996421382241,0.6921151439299124,0.6418010752688172,0.5405921680993314,0.1011433597185576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046333377267243,0.0070110289268357,0.0091912698170886,0.0116111190190536,0.0138751743304184,0.0159495322149976,0.0185519669370886,0.0207824585423669,0.0232784201371124,0.0255656201327977,0.0279890383964036,0.0299923913714038,0.0320806599450045,0.0343529169030793,0.0363970816195771,0.0383094567737661,0.0401032916433327,0.0424344464191064,0.0443736133245836,0.0588910812531972,0.0730252417430616,0.0869729389553178,0.099061961048248,0.1116570886276163,0.1266732928711908,0.1405056847106736,0.1538256947104132,0.1663035584604212,0.1774568766817826,0.1924211432877597,0.2064426103605309,0.2194085027726432,0.2317253140064933,0.2426472205723839,0.2538642101067363,0.2645483158106207,0.2746271342766517,0.2840025869991944,0.2933800542787454,0.3019413656662887,0.3095068156555315,0.3172882318826857,0.3241317257513046,0.3312512911497005,0.3372777414458991,0.343540058157024,0.349964943591051,0.3552955824751628,0.3607090454851885,0.362371780183046,0.3637415462596934,0.3644942869234024,0.3652195312613095,0.3659884413727359,0.3669576711444468,0.367268737876427,0.3671476101064005,0.367326987393877,0.3678529807261317,0.3690715831060107,0.3702969118784585,0.3709524711228933,0.3714304987183523,0.3722129421163483,0.3720308321535315,0.3729435368300373,0.3754120182555781,0.3760390506172403,0.3791140509120064,0.3805915311839808,0.3815726000964785,0.3812849162011173,0.3803999389406197,0.3786931818181818,0.3782816229116945,0.3791285470615599,0.3835103060587133,0.3859353023909986,0.3817753338570306,0.0,2.068884694509358,60.09813527584647,220.89982710240952,345.3785915336508,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95677,40558,379.9241196943884,7476,77.00910354630685,5805,60.15029735464113,2374,24.467740418282343,77.28108161739658,79.66923834496492,63.29287913429015,65.05614582835153,76.991590977397,79.37749784436163,63.187238207798245,64.9524371306746,0.2894906399995847,291.7405006032965,0.1056409264919082,103.70869767693593,65.15058,45.632939636928185,68094.29643487986,47694.78520117498,195.28166,115.4216884420779,203573.0948921893,120104.78844662552,240.89346,114.08258526295178,248509.464134536,116785.5723070022,3366.3204,1505.9291912451256,3488918.256216227,1544468.483799792,1404.61766,606.732286734351,1452469.0678010387,618561.5826987014,2348.0902,971.2475349031944,2421715.3756911275,985477.4163156054,0.37894,100000,0,296139,3095.1952924945385,0,0.0,0,0.0,16071,167.42790848375262,0,0.0,22613,233.1908400137964,2182480,0,78400,0,0,2662,0,0,44,0.4494288073413672,0,0.0,0,0.0,0,0.0,0.07476,0.1972871694727397,0.3175494917067951,0.02374,0.3186255864080132,0.6813744135919868,25.619682585464584,4.573731737224625,0.3354005167958656,0.1927648578811369,0.2301464254952627,0.2416881998277347,11.010403356305142,5.36682919687776,25.437767471502227,13209.554427909665,65.60176135450274,13.041396738798666,22.26296782376642,14.954312310021969,15.343084481915692,0.5424633936261843,0.7613941018766756,0.7036466358500256,0.5815868263473054,0.1069137562366357,0.7013167013167013,0.916184971098266,0.8556910569105691,0.746875,0.1228070175438596,0.4899128839981659,0.6921086675291074,0.652233676975945,0.5295275590551181,0.1028622540250447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387681709973,0.0045012621782459,0.0070531881425251,0.0090317074905263,0.011349998982975,0.0137672599894098,0.0158145889838285,0.0179891370931514,0.0203220035778175,0.0222213123982845,0.0243922445171278,0.0263668566148159,0.028507080492395,0.0307145433001906,0.0331609747035328,0.0352065346637026,0.0373328361146503,0.0390363896788657,0.0411209703425533,0.0431737163584815,0.0577566031427616,0.0719468906084753,0.0851711505558063,0.0983039077460491,0.1101885359188884,0.1248228000761695,0.1386217438379721,0.1516177817538926,0.1631206432023264,0.174941482165482,0.1893005446799331,0.2031883304072653,0.216157347912265,0.2279018834866404,0.2385579868226791,0.250795763322797,0.2614308227062913,0.2712761763148705,0.2809978406637118,0.2898123508900715,0.2981689651176266,0.305737560804079,0.31461074008612,0.3217997236739352,0.3287197653045076,0.3350372894749839,0.3417811998394863,0.3475126631537313,0.3535408631056739,0.3593274195683834,0.3602059709964725,0.3622563847566955,0.3640393112042596,0.3649345555442567,0.3657008731013036,0.3653535306885881,0.3656069593982092,0.3664867006785873,0.3673125526537489,0.3681961798075542,0.3694795027071896,0.3698826909265023,0.3708707436896493,0.3716934207551435,0.3722343787989302,0.373320714041591,0.3751043075417949,0.3751588713777326,0.3767634267934802,0.3766337583436588,0.3783833379209101,0.3783234365805382,0.3821231179721746,0.3832951945080091,0.3865887013109497,0.3888235294117647,0.3901876345739772,0.3871555915721232,0.383415435139573,0.3782625633034671,0.0,1.9752201588336031,64.31555564382549,217.12126157442103,335.5145389442697,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95726,40456,378.779015105614,7428,76.4264672084909,5772,59.7120949376345,2302,23.640390280592523,77.3612597271838,79.72853808383192,63.34108899169471,65.0899578762531,77.08132853374927,79.44838551037464,63.23858178578052,64.99037836827142,0.2799311934345354,280.1525734572863,0.1025072059141933,99.57950798167305,65.9681,46.20067640247108,68913.46133756764,48263.45653476703,196.4561,116.20323514147434,204564.9666757203,120728.95048521232,239.11827,113.0277853068632,246784.6248668073,115734.86264881684,3311.96436,1486.7402590033248,3427897.039466812,1521348.5735613713,1418.33952,606.3785517250018,1467820.0279965736,619672.7590960481,2264.31868,939.2123636329368,2327565.697929507,946899.1832797384,0.3793,100000,0,299855,3132.430060798529,0,0.0,0,0.0,16214,168.77337400497254,0,0.0,22507,232.08950546351045,2185050,0,78382,0,0,2618,0,0,40,0.4074128241021248,0,0.0,0,0.0,0,0.0,0.07428,0.1958344318481413,0.3099084544964997,0.02302,0.3066361556064073,0.6933638443935927,25.780959748984483,4.573422040974341,0.3359320859320859,0.1969854469854469,0.233021483021483,0.234060984060984,11.245604943990053,5.6807173815903,24.44697405552299,13212.965632683385,65.04263451267344,13.243006216823908,21.99434063598068,15.031201544686825,14.77408611518202,0.5504158004158004,0.7669305189094108,0.6900464156781846,0.5866171003717472,0.1317542561065877,0.7003460207612456,0.9243697478991596,0.855072463768116,0.6955223880597015,0.1333333333333333,0.5003466605038133,0.6948717948717948,0.6353021978021978,0.5504950495049505,0.1313598519888991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487616616525,0.0045725525184524,0.0069412027358892,0.0092247361095589,0.0115122546527,0.0138388220199181,0.0158668651724348,0.0180936335324449,0.0202746224707843,0.0222870597870597,0.024514779613054,0.0266112052585631,0.0288388357502828,0.0309151969671996,0.0328469413027326,0.0350367529231755,0.0370220786214324,0.0389153513277917,0.0409508755875379,0.0429500270912349,0.0573561658139292,0.0715212794908832,0.085218868993297,0.0977266513848289,0.1095535224925165,0.1251189242901541,0.138995524825553,0.1514922594030962,0.1634019737685307,0.175590357054807,0.1896148918531916,0.203052658907014,0.2164180727082971,0.2280105370161881,0.2385124439363292,0.2501383202390174,0.2606228188518101,0.2704685919766266,0.2804479912940963,0.2898152599409381,0.2981742076477458,0.3061632309633992,0.3135786696949265,0.3196776279548775,0.3269240100931677,0.3337845820616323,0.3402997387597965,0.3472973144885315,0.3520159618573797,0.3578787478536521,0.3593425838609727,0.3605206312516338,0.362332318791568,0.3634299104624419,0.3645899980656776,0.3652539383062598,0.3659008081128189,0.3669465485795034,0.3690500615510874,0.3698137512747571,0.3712020143181946,0.3723951608097102,0.3739394066993705,0.3759741280571338,0.376795125961027,0.3784145828955663,0.3810290313308422,0.382948298325336,0.3838111776588581,0.3841710457699868,0.3857451007389049,0.3899994669225438,0.3919772583701832,0.3941639294171568,0.3951977401129943,0.3981679752557697,0.4030972094449555,0.4017929910350448,0.4092957746478873,0.4128329297820823,0.0,2.267831109327766,63.99616482711157,211.9121848669796,334.8869804401382,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95646,40515,379.1376534303578,7620,78.59189093114192,5927,61.34077745018087,2448,25.207536122786102,77.2430810454354,79.64769725440634,63.27207635196621,65.05018534379803,76.94700303796762,79.3497837179217,63.16389690372353,64.94370456757991,0.2960780074677842,297.9135364846428,0.1081794482426801,106.48077621812035,64.96776,45.54491209667667,67925.22426447524,47618.208912737246,195.2345,114.898591843546,203504.98714007903,119512.0254308032,240.71079,114.20155878773538,247355.2161094034,116157.90346231736,3420.03692,1535.437429867976,3540915.8772975346,1570525.5942412396,1427.64925,616.6931032204291,1476137.0052066997,628264.4890747439,2425.29586,1000.8610935925068,2498805.5956339,1016033.295675609,0.37984,100000,0,295308,3087.5101938397843,0,0.0,0,0.0,16100,167.67036781464986,0,0.0,22700,232.9841289755975,2183320,0,78353,0,0,2516,0,0,46,0.4809401334086109,0,0.0,1,0.0104552202914915,0,0.0,0.0762,0.2006107834877843,0.321259842519685,0.02448,0.3137965508622844,0.6862034491377156,25.855972273048717,4.624247983154475,0.3323772566222372,0.1945334908047916,0.2276024970474101,0.2454867555255609,11.15667375596034,5.512782294071618,26.09697418959082,13299.823756159823,66.75295652207383,13.332970154159128,22.373223273452645,14.969360792549924,16.077402301912148,0.5383836679601822,0.7762359063313097,0.7030456852791879,0.5678280207561156,0.0996563573883161,0.686556927297668,0.9090909090909092,0.8402366863905325,0.7226027397260274,0.1433224755700325,0.4900425151040501,0.717852684144819,0.6555023923444976,0.5250709555345316,0.087979094076655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001996513701962,0.0043109569310044,0.0066698476188542,0.0089007203893557,0.0110972099315451,0.0131880441977697,0.0154473617129747,0.0176441757882698,0.0198993782722513,0.0220677084400024,0.024017803119648,0.0260739188925516,0.0284659447341087,0.0305964767693417,0.0326892508412295,0.0347016854513494,0.0369395873042181,0.0390252003155228,0.0412103056968411,0.043389872916254,0.0582155993980939,0.071993463709973,0.086008861264515,0.0989632124625019,0.1114911586170493,0.1268354135569176,0.1411028607242635,0.1537223382936084,0.166654184809937,0.178125,0.191843780343079,0.2049708965173374,0.2176105423654977,0.2292319148470181,0.2405470635559131,0.2521106291394402,0.2632155635062612,0.2730049938563167,0.283188356359088,0.2918822193418139,0.2997553538094079,0.307851844908194,0.3161119802778173,0.3235763767994141,0.3311494574813985,0.3383010800523961,0.3447756510825227,0.350113013829828,0.3553558890073596,0.3610242273233314,0.3619424664567823,0.3628394328865083,0.3638318642916767,0.3656861606365061,0.3670700732108172,0.3677161111538757,0.3684260822476348,0.3689480815625103,0.3708280342350393,0.3715225952633566,0.3725538391726067,0.3737847603457569,0.3742523196584448,0.3754824729702277,0.3775274898657669,0.3776124129195694,0.3787677176742841,0.3799732637341651,0.3832005123096627,0.385464246735923,0.3862485481997677,0.3880209741067085,0.3855506495168618,0.3826241959234286,0.3820127241179872,0.3826055400991895,0.381967471972209,0.3852578826477344,0.386685552407932,0.3919399446858949,0.0,2.3904714864569274,64.45663265636588,217.73904333834463,348.4881925576108,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95823,40408,377.8737881301984,7424,76.46389697671749,5751,59.49511077716206,2315,23.83561357920333,77.44904619750217,79.77577077728859,63.38601454967061,65.1069513800991,77.16339654196209,79.48850311427968,63.282475888206505,65.00513690019503,0.2856496555400838,287.2676630089046,0.1035386614641069,101.81447990407833,66.8316,46.77956773591711,69744.61246256118,48818.49632751754,196.20334,115.95972318710966,204234.2965676299,120492.79733165278,239.44843,113.01342206497812,246381.22371455704,115223.8182292822,3323.74092,1485.6090299487787,3440612.086868497,1522354.5807883076,1425.00957,607.3966097211339,1474140.2481658892,620947.0134155413,2284.04418,939.4236668465016,2353640.3159992904,954428.4935454828,0.3783,100000,0,303780,3170.209657389145,0,0.0,0,0.0,16233,168.8738611815535,0,0.0,22505,231.55192385961615,2185132,0,78338,0,0,2695,0,0,41,0.407000407000407,0,0.0,0,0.0,0,0.0,0.07424,0.1962463653185302,0.3118265086206896,0.02315,0.3119020283199387,0.6880979716800613,25.670067995577764,4.616354603760432,0.325508607198748,0.1992696922274387,0.2378716744913928,0.2373500260824204,11.142300180944387,5.609626859355155,24.43924994824172,13190.851030750697,64.39631398985372,13.381582273269348,20.99644519165441,15.037727139325993,14.980559385603978,0.5468614154060163,0.774869109947644,0.6960470085470085,0.5767543859649122,0.1208791208791208,0.7044117647058824,0.9257142857142856,0.8793859649122807,0.7304964539007093,0.0992647058823529,0.4980642222728308,0.7085427135678392,0.6370056497175142,0.5368324125230203,0.1262580054894785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022887698368491,0.0047337637983639,0.006879547045752,0.0093152243475787,0.0116131262902061,0.0138881818089254,0.0159660695533374,0.0180038579695649,0.0201532958610117,0.022173107816353,0.0242352820617922,0.0263444170771757,0.0286389802631578,0.0305682251073337,0.0326938943894389,0.0349708146081925,0.0370113538744967,0.0390493768275232,0.0411627810331213,0.043015230223092,0.0576134692217018,0.0716503737780333,0.0852992653300774,0.0980542539555798,0.1103524577208787,0.1259590387419948,0.1397422035659013,0.1525659839639294,0.1657118472288899,0.1776378492412803,0.1914747187990623,0.2043969102792632,0.2165430838879178,0.2281293307580668,0.2389843904366726,0.2504476226264948,0.2608584283677833,0.2706691808651537,0.2796436535696902,0.2888952359191134,0.2982731554160125,0.3060981586501435,0.3139501947362209,0.3210861091848203,0.3280679848222187,0.3343334972946384,0.3400856204989952,0.3467478900945491,0.352906976744186,0.3579627728194192,0.3592326912226968,0.3600939483009642,0.3615364067091259,0.3624637492966281,0.3635770718764359,0.3633794641493294,0.3637425055222467,0.3651900599155289,0.3655778466569024,0.3666369789811186,0.3683649222594345,0.3687129885511251,0.3687332327297116,0.3699796160652286,0.3713074068719579,0.3723409801876955,0.3730861517367458,0.3739124952717185,0.3745236414961185,0.3755819968960165,0.3761215894524812,0.3771798438001498,0.3787263732081695,0.3802342494067213,0.3822213762253735,0.3824758266682583,0.387789799072643,0.3852004110996916,0.3812430632630411,0.3789272030651341,0.0,2.019425600607363,60.10103537458348,215.36541377026097,339.3509685535688,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95817,41042,383.449700992517,7468,76.75047225440163,5766,59.70756755064342,2381,24.515482638780178,77.3497797498425,79.68340687763425,63.33168066437421,65.06012929424962,77.05793404364219,79.38902473283669,63.22413623666194,64.95426553368512,0.2918457062003057,294.3821447975665,0.1075444277122699,105.8637605645032,65.26036,45.73522835338266,68109.37516307128,47731.851710429946,194.25455,114.61666529772144,202257.33429349697,119142.76725186706,243.00194,115.10959988938907,250724.37041443583,117942.57917004668,3328.3814,1504.500584014413,3447193.921746663,1543689.5164891535,1454.2571,637.0919767020674,1503956.865691892,651128.1336673888,2364.84864,985.137746435354,2436259.724266049,1001138.0761242803,0.38385,100000,0,296638,3095.8806892305124,0,0.0,0,0.0,15992,166.40053435194173,0,0.0,22820,235.29227590093615,2185895,0,78464,0,0,2621,0,0,40,0.417462454470501,0,0.0,0,0.0,0,0.0,0.07468,0.194555164777908,0.3188269951794322,0.02381,0.3171443063657114,0.6828556936342887,25.583197881068763,4.567221847587395,0.3263961151578217,0.1954561220950399,0.2299687825182102,0.2481789802289282,11.217299525544586,5.601594881817161,25.267966738905468,13366.135878379568,65.08322485021512,13.216772758812304,21.186463648597694,14.824134918078736,15.855853524726369,0.5421436004162331,0.7533274179236912,0.6934112646121148,0.5987933634992458,0.1243885394828791,0.6950959488272921,0.9028571428571428,0.865934065934066,0.7152542372881356,0.1856677524429967,0.4927735719201652,0.685971685971686,0.6384022424667134,0.565470417070805,0.1076512455516014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0049175175154876,0.0071041467919702,0.0092554023712523,0.0114230495371783,0.0136551092103253,0.015742251223491,0.0175984810591754,0.0199924363993172,0.0223339031105743,0.0245922645590511,0.0269423880566365,0.0292847447867396,0.0312734911596008,0.0333398665167473,0.0354216394391229,0.0373491232065588,0.0397066603047496,0.0419246914093346,0.0440513498599643,0.0582988179570374,0.0719745689159373,0.0850051359453283,0.0981997414690025,0.1102889247277825,0.1255881824237874,0.1398385539868255,0.1529881326166782,0.1650698027152027,0.1773482500080447,0.1915343003081963,0.20514346946065,0.2181462140992167,0.2298231036669363,0.2412116144223046,0.2530641193288858,0.2636954192338601,0.2736394519561745,0.2835902208703153,0.2927181296463877,0.3020820072447834,0.3103089286340932,0.3186558242486654,0.3258723159509202,0.3330944427573641,0.3399011743250403,0.346423299221858,0.3522426433153446,0.3575962485102855,0.3632147764506923,0.3646124172163099,0.3663328090941699,0.3681772605951053,0.3692548746518105,0.3700690004619901,0.3702327010214269,0.3701727642276423,0.3718991928842036,0.3730567280963657,0.3735054396610535,0.3747103483355626,0.3763746644128468,0.378554277770757,0.3788825459612532,0.3797756069252345,0.3799779631670077,0.3805538038181505,0.3815507008460664,0.3832501581499964,0.3838343777266598,0.384720826098876,0.3870194867426259,0.3871336124857251,0.3873978096560234,0.3857034364913613,0.3905374806340126,0.3970929333539508,0.3961881589618816,0.3944702983848891,0.3950233281493001,0.0,1.7815877768520874,62.6001248080624,221.63732748531157,330.3166596820231,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95808,40585,380.8032732130928,7466,76.85161990647963,5815,60.20374081496325,2404,24.757849031396123,77.41775944651599,79.74443257402939,63.37436231324406,65.09462606614548,77.13395656491494,79.4581351173891,63.27067441271778,64.99237416756098,0.2838028816010478,286.29745664028405,0.1036879005262818,102.25189858449824,66.10582,46.275580224118514,68998.22561790248,48300.330060243934,195.19608,115.28687009304824,203245.20916833667,119839.65826434626,241.15467,113.99994903970683,247987.0783233133,116281.46734022486,3345.80288,1496.657554921571,3466021.083834336,1535969.7339637713,1422.5037,617.5822288810602,1470986.1493820974,630877.775737311,2370.21036,976.3003139943344,2442920.612057448,993470.3497947808,0.37948,100000,0,300481,3136.2829826319303,0,0.0,0,0.0,16124,167.77304609218436,0,0.0,22641,232.68411823647293,2186047,0,78462,0,0,2684,0,0,41,0.41750167000668,0,0.0,0,0.0,0,0.0,0.07466,0.1967429113523769,0.3219930350924189,0.02404,0.3251143873919674,0.6748856126080326,25.433062641666428,4.630978340094076,0.327944969905417,0.1969045571797076,0.2359415305245056,0.2392089423903697,11.160559418916224,5.624591119127867,25.48111248738701,13216.251423311864,65.29904025216484,13.44648615140165,21.398874528886555,15.333795567620562,15.119884004256072,0.5425623387790198,0.7877729257641921,0.686418458311484,0.5801749271137027,0.1063982746225736,0.7051094890510949,0.9174041297935104,0.8497854077253219,0.7248322147651006,0.1610486891385767,0.4924634420697413,0.7332506203473945,0.6335877862595419,0.5400372439478585,0.0934163701067615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365141404833,0.0042978926135038,0.0066057168369676,0.0085515224147386,0.0110123647604327,0.0133046948165641,0.0153297319335439,0.0173920143708663,0.0194096363376193,0.0215130797887583,0.0236162361623616,0.0259192346383625,0.0280418983789562,0.0298141761466,0.0320880979140674,0.0342395009192505,0.0360044294037898,0.0380380691714356,0.0400889249020891,0.0420080580512841,0.0571461363494084,0.0716316801873379,0.0855276950815547,0.0982814403966553,0.1110397270084677,0.1263284666906125,0.1401288053725398,0.1527985967150374,0.1644439228405599,0.1761946077958803,0.190065491617288,0.2038587432077693,0.2159864499527702,0.2279347541269979,0.2388631944368154,0.2505946520041155,0.261397464628558,0.2716591595808013,0.2806063489905513,0.2892864496351033,0.298057478304078,0.3069162414320578,0.3144423051936547,0.3217098805334099,0.3289639770851539,0.3360307430809592,0.3422546127306365,0.3478631174840464,0.3536572744443582,0.3595076176920238,0.3608720210877401,0.3623990201340434,0.3636722327908124,0.3641816499971093,0.364728445904759,0.3658966537394423,0.3657269559708584,0.3669037567554248,0.3682817276655338,0.3697303286452097,0.3705504656052868,0.3718774703557312,0.3726452695615691,0.3748070599288638,0.3756968746229033,0.3766118274788795,0.3771265189421015,0.3780533989774663,0.3806456155173021,0.3820756593341023,0.3827504337503424,0.3840004263710494,0.3871233223600911,0.391208120277799,0.3897775674396592,0.3868883837779638,0.3863247863247863,0.3857754228652945,0.3868413868413868,0.3878576952822892,0.0,1.9134310624383024,60.70860110619921,227.03556841507304,333.6042617441379,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95722,40688,381.7199807776687,7595,78.09072104636343,5878,60.83241052213703,2391,24.602494724305803,77.3893283971574,79.74958638113772,63.35181630130408,65.09332803484014,77.09762068103765,79.45813214324758,63.24529851099009,64.98972172814364,0.2917077161197454,291.4542378901359,0.1065177903139869,103.6063066965056,66.31042,46.438415782379,69273.9600091933,48513.837761830095,195.95355,115.63956409054022,204106.7466204216,120203.3744494894,239.67993,113.98569744002664,246729.5501556591,116263.3118463464,3376.17216,1516.2392649151525,3496021.6878042663,1552964.8199109426,1438.19731,624.3693261766808,1486956.519922275,636757.0006651349,2357.03656,972.9360014755129,2427055.180627233,985562.7194075875,0.38192,100000,0,301411,3148.8163640542407,0,0.0,0,0.0,16157,168.17450533837572,0,0.0,22580,232.3185892480308,2182372,0,78265,0,0,2537,0,0,43,0.438770606548129,0,0.0,0,0.0,0,0.0,0.07595,0.1988636363636363,0.3148123765635286,0.02391,0.3134216445888528,0.6865783554111472,25.52743108233723,4.569427179845039,0.3223885675399796,0.2014290575025518,0.2397073834637632,0.2364749914937053,11.104986131144727,5.53343851813811,25.311250379801574,13285.922990774416,65.86540859881305,13.648734886041842,21.476119306384515,15.471115041879989,15.269439364506722,0.5381082000680504,0.754222972972973,0.6891820580474934,0.57416607523066,0.1115107913669064,0.724233983286908,0.9454022988505748,0.8701825557809331,0.7724358974358975,0.1448763250883392,0.4779378658262044,0.6746411483253588,0.6255349500713266,0.5177757520510483,0.1029810298102981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0047128219161421,0.0071411906718196,0.0090980169166252,0.0112642836810215,0.0134356615027583,0.0155816892222403,0.0177853513193608,0.0199250002554487,0.0221633292062744,0.0241828056153294,0.0264291870152255,0.0288837969194726,0.0310547498224413,0.0331150415098231,0.0348668981481481,0.0367636401283776,0.0386490467398294,0.0405895620900766,0.042482706892241,0.0576939142057558,0.0719300999319834,0.085219525497682,0.0982556855818061,0.1104727771043061,0.1262875150694782,0.1405176071277047,0.1530748022695096,0.1658761697218305,0.1775030557759526,0.1920186074559042,0.205202530961008,0.2174087924511893,0.2290953625438759,0.2401302759561639,0.251290687110855,0.2614311230185309,0.2719408760602038,0.2813354668119248,0.2905066336701725,0.2998692901181016,0.308764544232006,0.3163889250274982,0.3235103859699562,0.3308190309611437,0.3374605755962941,0.3433826199091057,0.3499707297207869,0.356112543901712,0.3613102546837248,0.3627245065568031,0.3637840367831282,0.3650596981302095,0.3658353104565708,0.3671582327406791,0.3680993811653698,0.3684643625775414,0.369249196035965,0.3705949676295246,0.3715689778413152,0.3736752265010973,0.3747748461036004,0.375154966275136,0.3751458314636992,0.3760747753840208,0.3771231768727007,0.37857836695046,0.3801517584458928,0.3813875026358332,0.3829981718464351,0.3832472223492296,0.3838794163236945,0.384258965407807,0.3839743099625353,0.3791240045506257,0.3811685983988529,0.3795597968293058,0.3768854463921728,0.373197625106022,0.3769778481012658,0.0,2.239025182687615,63.42432420754211,219.86473965259287,338.1321897868452,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95665,40757,382.647781320232,7496,77.03966968065646,5904,61.05681283646056,2405,24.617153608947888,77.35982293729873,79.73511514658739,63.33991942654043,65.08955731400319,77.06052762385464,79.43818786942171,63.22902308938337,64.98292716965946,0.299295313444091,296.927277165679,0.1108963371570652,106.63014434372542,65.80332,46.0681397852828,68784.92656666492,48155.47901241082,197.37127,116.46039704346,205660.7118590916,121084.2455084932,240.11239,113.77022113147436,247276.68426279203,115927.08771144557,3376.50496,1520.129622875524,3493151.64375686,1552728.8396754523,1432.89064,627.0758806071684,1478425.72518685,636190.3762519136,2368.15264,994.865494173982,2427428.98656771,999495.971607477,0.38155,100000,0,299106,3126.587571212042,0,0.0,0,0.0,16321,169.9053990487639,0,0.0,22587,232.3733862959285,2183136,0,78307,0,0,2646,0,0,39,0.4076726075367166,0,0.0,1,0.0104531437829927,0,0.0,0.07496,0.1964618005503866,0.320837780149413,0.02405,0.3039402001773723,0.6960597998226277,25.27869935652848,4.677047776338057,0.3348577235772357,0.1944444444444444,0.2381436314363143,0.2325542005420054,11.356846018492329,5.680357155366284,25.68877264311661,13259.769506653787,66.3515696597133,13.28945785021514,22.02136617221033,15.772329215483142,15.268416421804693,0.5497967479674797,0.7796167247386759,0.6939807789580172,0.5761024182076814,0.123088128186453,0.6940836940836941,0.917933130699088,0.8631346578366446,0.7184466019417476,0.159322033898305,0.5055334218680833,0.724053724053724,0.6437007874015748,0.536007292616226,0.1131725417439703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392878843115,0.0049766371717294,0.0071120580327702,0.0092015193678779,0.0115300146412884,0.0137208000407145,0.0157837353141972,0.0180386075174468,0.0202455617070828,0.0222706440788935,0.0247198147806667,0.0264272890484739,0.0286656936707299,0.0306733937397034,0.032512609982774,0.034562235796306,0.0365343603122347,0.0384595438374493,0.0404424760360135,0.0423866597186034,0.0571900204772451,0.0713186249358645,0.0848596168984518,0.0975263307414694,0.1097985444573357,0.1249761919878102,0.1395287124509075,0.1526138639171743,0.1652733531461803,0.1765255192400579,0.1895657984071731,0.202454054171134,0.2151331112997671,0.2266239026205749,0.2389149540738782,0.2509251667516121,0.2623893360722539,0.2722457150569076,0.2823233068203737,0.2918150688853514,0.2999282523665146,0.3083612274993563,0.3157227938477568,0.3230326640695235,0.3298117789921068,0.3365450961064564,0.3422873371951906,0.3486735797442585,0.3543269355298262,0.3593696335631819,0.3615668525552951,0.362961432506887,0.3644664606178641,0.3652883474637576,0.3664797656052471,0.3675013041210224,0.3679748523528291,0.3692016148965972,0.3706806282722513,0.3725553522087056,0.3737151248164464,0.374726803099543,0.3754398533470996,0.3760178145665572,0.3776482538454097,0.3784994107633888,0.3788446682498355,0.3800221273905484,0.3819796954314721,0.3816336317135549,0.3834151714010371,0.3849372384937238,0.3883464164911609,0.3891549513363201,0.3917270301181852,0.3915407854984894,0.3953848536472046,0.3927183473102884,0.3921139101861993,0.3895348837209302,0.0,2.459165031834183,60.85612673559246,231.09636684567093,339.6599579815073,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95850,40589,380.114762649974,7497,76.99530516431925,5767,59.55138236828378,2402,24.621804903495047,77.34109898624328,79.63027270655083,63.34986309044478,65.04348116953477,77.05095419761034,79.34063495488088,63.2440879903011,64.94039187265206,0.2901447886329436,289.6377516699431,0.1057751001436813,103.08929688271462,65.40402,45.7803224029686,68235.80594679185,47762.46468749984,192.97079,113.78087636629654,200657.84037558685,118039.255468228,235.17268,111.65588549080236,241062.96296296292,113310.7954418614,3342.15676,1488.8820885135365,3454209.4522691704,1520906.2001628757,1422.59197,611.6339363371245,1469592.676056338,623604.0129845279,2368.70912,973.740588221038,2431850.808555034,984926.7740127624,0.38011,100000,0,297291,3101.6275430359938,0,0.0,0,0.0,15946,165.717266562337,0,0.0,22079,226.1032863849765,2187630,0,78603,0,0,2525,0,0,39,0.386019822639541,0,0.0,0,0.0,0,0.0,0.07497,0.1972323801004972,0.3203948245965052,0.02402,0.3256462240243284,0.6743537759756716,25.529285860570877,4.657321142949107,0.3363967400728281,0.1916074215363273,0.2249002947806485,0.2470955436101959,11.194416807545773,5.575302103014875,25.44865505185393,13253.531693468702,64.80518338747079,12.915451129295356,21.86154767425148,14.403865378786852,15.624319205137107,0.5302583665684064,0.755656108597285,0.6701030927835051,0.5774865073245952,0.1221052631578947,0.7046289493019838,0.9269005847953216,0.859538784067086,0.6981818181818182,0.149812734082397,0.476395823876532,0.6788990825688074,0.608339029391661,0.5450097847358122,0.1157167530224525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026023998784871,0.0044583599315033,0.0066538863362038,0.0089345543890998,0.0110889760738316,0.0133110803549621,0.0154853958454312,0.0175363427697016,0.019661716340163,0.0218500976912139,0.0241019390127731,0.0262456154745543,0.0283991701074341,0.030505998312653,0.0326436402604896,0.0348646389166984,0.0367486635439608,0.0387803311299446,0.040789842509058,0.0426762658787544,0.0572784150156412,0.0707208996091382,0.0844148362295614,0.0970279353077084,0.108916104166886,0.1246078938752231,0.1383836350731485,0.1517036092063998,0.1643778610070745,0.1757298409568311,0.1901425881086898,0.2030712663566562,0.2156344780354172,0.227542030126145,0.2391928616224185,0.2507395876037361,0.261647305636459,0.2725534093082383,0.2826582838725785,0.2919110235498946,0.3009637968737345,0.3092129889575145,0.3168171544205531,0.3242676319700819,0.3315429390820381,0.3378813486140067,0.3430686187333275,0.3494531240052459,0.3552144060111413,0.3602056731963941,0.3612013972244325,0.3625087857113325,0.3638700201946025,0.3656604923050144,0.3666840731070496,0.3665129151291513,0.3665426681928017,0.3676783680744665,0.3678637834859858,0.3695742265626408,0.3714210068459472,0.3726839386505515,0.37394708994709,0.375746876697447,0.376157745929609,0.3786361594758117,0.3785225994404222,0.3800204003570062,0.3817878916773004,0.384374749338253,0.3850294442399705,0.3876784372652141,0.3874705545298275,0.3862990553720912,0.3882251744241613,0.389920424403183,0.3868101028999064,0.3895837605085093,0.3894150417827298,0.3976653696498054,0.0,2.387106718526422,59.93624177034647,218.50441708704903,339.74812603328843,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95630,40561,380.0271881208826,7511,77.28746209348532,5792,59.84523685036077,2383,24.427480916030536,77.31769350596971,79.74036674467656,63.289715480586615,65.08152991755651,77.02139753757808,79.44580081627615,63.181553480724936,64.97734781865353,0.2962959683916324,294.5659284004165,0.1081619998616787,104.18209890298158,65.7459,45.95770799884466,68750.28756666317,48057.83540609083,193.3747,113.7203801165046,201515.7377392032,118221.45782338658,231.31114,109.13023053592866,237826.6757293736,110954.261600104,3333.4858,1487.989701945142,3445297.6680957857,1515501.1142373122,1412.96044,605.7449754192277,1457817.7350203912,613737.0025982703,2353.12188,977.1375326866894,2413779.1069747987,980956.9071560327,0.3809,100000,0,298845,3125.013071211963,0,0.0,0,0.0,16035,166.94551918853918,0,0.0,21842,224.33336818989855,2184414,0,78349,0,0,2553,0,0,27,0.2718812088256823,0,0.0,0,0.0,0,0.0,0.07511,0.1971908637437647,0.3172680069231793,0.02383,0.3113159888860823,0.6886840111139176,25.714557942273466,4.5995190573115385,0.3228591160220994,0.2007941988950276,0.235842541436464,0.2405041436464088,11.007429821929572,5.389567962891031,25.313155793171585,13291.122387117555,64.96133828316894,13.456695440342706,20.945037902635107,15.212658930994458,15.346946009196676,0.5429903314917127,0.7592433361994841,0.7032085561497327,0.5710102489019033,0.1198851399856425,0.695814648729447,0.9425981873111784,0.851063829787234,0.7302631578947368,0.1321428571428571,0.4970812752581949,0.6862980769230769,0.6599861782999309,0.5254237288135594,0.1168014375561545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185752492098,0.0044720723644181,0.0067106598984771,0.0088110651531011,0.0112222369184124,0.0134270578647106,0.0154550833452349,0.0179609517874109,0.0202429564131691,0.0224481846696324,0.0247192395343585,0.0267749730090997,0.0291837007898341,0.031081081081081,0.0334452652787105,0.0354733225712984,0.0375439360477775,0.0394191517871054,0.0413041668401115,0.0433299962457765,0.057646886691888,0.0714854556123732,0.0846708121507499,0.0973215508252319,0.1094084971116579,0.1249708729637553,0.1382780865739215,0.1508629419979319,0.1643630450596944,0.1761154912028185,0.1906046060083059,0.2051576552172499,0.2174164034418908,0.229068328423266,0.2408746252865455,0.2518219431842131,0.2628731739485185,0.2730795224149583,0.2828866681807858,0.292105082181418,0.300590756399861,0.3092737639469402,0.3178306514681138,0.3248796764165776,0.3311591116519622,0.3378033284397784,0.3439214409178586,0.3496994243211574,0.3558383272368796,0.3611904761904762,0.3625332379499777,0.36415770609319,0.364814501101135,0.366031235977825,0.3670867242944073,0.3676368942477536,0.367160811605256,0.3683526178053558,0.3691240688415104,0.3711778687206247,0.3733360830927293,0.3737225988812239,0.3747334977634714,0.3749385639605022,0.3765087761481125,0.3772772354752832,0.3771576935147935,0.3784957060618453,0.3806844159954982,0.3823599713170265,0.3841278589143014,0.3851923282974392,0.3859905840437714,0.3868142000922084,0.3902044698050404,0.3906380940979289,0.3882170542635659,0.392726533929297,0.3924507354981959,0.3930232558139535,0.0,2.766805086628015,58.534126485590825,222.7417762608696,340.448149318452,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95724,40826,383.12230997451,7555,77.81747524131879,5853,60.7057791149555,2374,24.487066984246376,77.34880342590687,79.70642937097622,63.338894218876014,65.07712700969611,77.05773855481361,79.4119485685217,63.23197771236289,64.9711054196603,0.2910648710932548,294.4808024545296,0.106916506513123,106.0215900358088,64.06202,44.90383271498517,66923.67640299193,46909.691106708,194.44233,114.43162248107848,202708.02515565584,119123.23187610052,239.22576,113.5992029378793,247157.01391500563,116578.39307019468,3377.0576,1509.1111064228496,3503859.470979065,1552471.6334700277,1427.43078,621.4500978741536,1475811.6564288998,633827.7421275275,2343.37324,977.798911199719,2418899.2520162133,997017.469009554,0.38244,100000,0,291191,3041.985291045088,0,0.0,0,0.0,15999,166.68756006853036,0,0.0,22483,232.11524800468013,2192936,0,78672,0,0,2571,0,0,38,0.3969746354101374,0,0.0,0,0.0,0,0.0,0.07555,0.1975473276853885,0.314228987425546,0.02374,0.3201902616097133,0.6798097383902867,25.76007276152197,4.502799706655312,0.3256449683922774,0.2005808986844353,0.2357765248590466,0.2379976080642405,10.82167518873703,5.375155429005855,25.38538869422787,13347.710249283577,65.503362437732,13.458614557528408,21.354788446875933,15.358966391177212,15.330993042150448,0.5373312831026824,0.7657580919931857,0.6899265477439664,0.5659420289855073,0.1076812634601579,0.6878571428571428,0.905775075987842,0.8509719222462203,0.7178683385579937,0.1453287197231834,0.4900067370312149,0.7112426035502959,0.6382536382536382,0.5202639019792649,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0043891659571017,0.0065851554969306,0.0087363748107965,0.0109301285179762,0.0133760879523591,0.0154830949881252,0.0178319893845054,0.0198967860610086,0.0218924312982958,0.02393251747535,0.0261202454995176,0.0281396185678301,0.0304016142814491,0.0324417441176774,0.0343566269541946,0.0364361151377096,0.0384623365843536,0.0402794817941733,0.0424172961708778,0.0571637426900584,0.0710607836570663,0.084330018045239,0.0975160703201439,0.1101313221876483,0.125944104766539,0.140117994100295,0.1535128344352529,0.1652261242107287,0.1770669069610272,0.1914744632488392,0.2053454525780446,0.2183125401089876,0.2306505950297515,0.2419890840265856,0.253443709343174,0.2646220881514999,0.2745073752955748,0.2843159520348837,0.2943441195343294,0.3033334491182975,0.3117971282459363,0.3197029984368338,0.3272794840442111,0.3335884911666788,0.3403263977911449,0.3466926848794155,0.3524023966721368,0.3578714370776917,0.3623046875,0.36399902962344,0.365175815696649,0.3669705351095055,0.3674140378320442,0.3683724394785847,0.3683475324276614,0.3686750047616024,0.3698774368676483,0.371006697613868,0.3722784696711764,0.3728377439287794,0.3742026229248385,0.3750656885207996,0.376921002965759,0.3768736099023305,0.3783741286230934,0.3782821028440103,0.3812060110329085,0.3830020513546014,0.3850712798334134,0.3882542607093505,0.3895486935866983,0.3926987595603831,0.3939723473667857,0.394994246260069,0.3986690865093769,0.4039880672005024,0.399375,0.405793025871766,0.4078431372549019,0.0,1.6982448316873031,62.35753720195957,216.8718716491369,344.5242012981623,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95631,40532,380.8493061873242,7431,76.64878543568508,5872,60.754357896498,2405,24.720017567525176,77.26744378178137,79.68268850346526,63.28338998351626,65.06934643134906,76.97596832052417,79.38978143926185,63.17831666210591,64.96601728820102,0.2914754612571926,292.90706420340484,0.1050733214103516,103.32914314804498,65.92696,46.14784387743842,68938.90056571613,48256.15530260942,195.9328,115.36825742313668,204216.85436730765,119971.6383004849,239.45469,113.06868015324008,245663.93742614845,114628.15698167653,3373.27896,1502.064481110534,3491579.759701352,1535152.085486956,1438.88627,614.3119502787947,1484967.7928705127,622796.9362799753,2370.19456,971.9578320703364,2438923.8217732743,985782.2432245086,0.37941,100000,0,299668,3133.586389350733,0,0.0,0,0.0,16165,168.3554495927053,0,0.0,22509,230.68879338289884,2181084,0,78254,0,0,2602,0,0,38,0.3973606884796771,0,0.0,0,0.0,0,0.0,0.07431,0.1958567249149996,0.3236441932445162,0.02405,0.3195115746629356,0.6804884253370643,25.401573913438625,4.5988688798419615,0.3276566757493188,0.2035081743869209,0.2341621253405994,0.2346730245231607,11.246454142378376,5.664449616398957,25.57383810196672,13209.721791475273,66.01685605922714,13.920264673526844,21.586722024927298,15.349369720749628,15.160499640023378,0.5291212534059946,0.7456066945606694,0.6632016632016632,0.5687272727272727,0.1146589259796806,0.681422351233672,0.8950437317784257,0.8211920529801324,0.7198697068403909,0.1418181818181818,0.4824210057854917,0.6854460093896714,0.6145479265805575,0.5252808988764045,0.1078875793291024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0047759075238288,0.0068632228719948,0.0091049508170067,0.0114955391204386,0.0134945207153623,0.0156412504843281,0.017774556146566,0.0198672788065317,0.0219659808911327,0.0240295369468232,0.0263384969388174,0.0281766932762735,0.0300357543971726,0.0319980181872606,0.03429203539823,0.0363016819951943,0.0382998598785614,0.0401922236784622,0.0421292965940011,0.0571121027495323,0.0711839555951196,0.0844980206441044,0.0969644004085371,0.1091406192270745,0.1248464698657405,0.139118983900429,0.1523511172202154,0.1647005978417804,0.1756665342367203,0.1898148647337265,0.2031473378676948,0.2159638718102181,0.2274850921822857,0.2390775496725191,0.2505843386173053,0.2606720757117507,0.271307537383125,0.2812908060725113,0.2905389139182171,0.2992356687898089,0.3079623648363994,0.3157651629102365,0.3237203720372037,0.3293915836344392,0.3359018053394581,0.3426824071985362,0.3486209312695076,0.3545537104307213,0.359890437060855,0.3611741503214999,0.3622714413854964,0.3630928825823958,0.3645369497425484,0.3652634721600238,0.36460961053344,0.3649470099614907,0.3663403862632654,0.3665139739564568,0.3672539380673867,0.3676512167078204,0.3690378904147814,0.3695670538542767,0.3706380296276284,0.3720563626221715,0.3727014068180621,0.3728213977566868,0.37373352390027,0.3747069271758437,0.3757251047373509,0.379041248606466,0.3817648337317974,0.3851612903225806,0.3875419037966788,0.3883336536613492,0.3943747717033971,0.401538944723618,0.3998328807186129,0.4090121317157712,0.419446704637917,0.0,2.438060508996404,60.81680032184362,222.0157943549304,347.95094835789416,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95827,40388,377.0127417116262,7522,77.19118828722594,5822,60.05614284074426,2349,24.095505442098784,77.40182060844235,79.71604008953793,63.36325590393732,65.07598533164416,77.11657466976085,79.43123613162793,63.25784715322092,64.97371535465663,0.2852459386814985,284.80395791000035,0.1054087507163998,102.26997698752882,65.72874,46.02321697127862,68591.04427770879,48027.40038953387,196.2129,116.1496858710758,204074.81190061252,120526.32769421862,239.65068,113.81089582004088,245453.5360597744,115310.10888303042,3337.63468,1498.9468994588476,3444336.063948574,1525873.9319384918,1395.70137,607.3647842300948,1440483.5067360974,617936.1139573149,2318.36672,964.407915094758,2379410.5001721857,970889.4928259857,0.37812,100000,0,298767,3117.774739895854,0,0.0,0,0.0,16275,169.11726340175525,0,0.0,22603,231.2605006939589,2185509,0,78462,0,0,2601,0,0,26,0.2713222786897221,0,0.0,0,0.0,0,0.0,0.07522,0.1989315561197503,0.3122839670300452,0.02349,0.3170086868941206,0.6829913131058793,25.526425600001858,4.622019014428132,0.3375128821710752,0.1932325661284782,0.2311920302301614,0.2380625214702851,11.183842991071051,5.605689259348882,24.757963304804296,13177.03708726765,65.18448439513455,13.056240671614592,22.07915414051375,14.926168798946104,15.122920784060094,0.5352112676056338,0.7511111111111111,0.6788804071246819,0.5780089153046062,0.1147186147186147,0.7117310443490701,0.9403409090909092,0.8739316239316239,0.7250859106529209,0.1533101045296167,0.4794303797468354,0.6649417852522639,0.6179024716098864,0.5374407582938389,0.1046405823475887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681706798436,0.0043985446290121,0.0067463377023901,0.0090496358816539,0.0114272933378066,0.0139256484384543,0.0159200937675177,0.0181669728516023,0.0203814624772573,0.0223943993531416,0.0248167700271641,0.0268505973642074,0.0290275165232764,0.0310225178382051,0.0331590292603937,0.0352755189551668,0.0373882080158993,0.0393193766136809,0.0413377648525135,0.0436063151102646,0.0580627666120839,0.0718848337218905,0.0851681460444546,0.0977938859123857,0.1097196182932737,0.1252006929187088,0.1393941962346509,0.1520151387899599,0.1639963708170998,0.1762537900296774,0.1899178105770472,0.203147121443007,0.2157968510610555,0.2279716305856382,0.238437685557828,0.2489120203753945,0.2598253031536908,0.2701128094386521,0.2793486894360603,0.2888430934798786,0.2969561646054351,0.3046401758776341,0.3126434334114084,0.3202123961691978,0.3275218991847793,0.3341098169717138,0.3403541705775608,0.3468886740612598,0.3529305143774518,0.3579137639856449,0.3598298193176616,0.3608648975996476,0.3611169785813865,0.362171294892345,0.3627669369449642,0.3629007539998774,0.3631611462243976,0.3652485180867309,0.3653326492218232,0.3663408794468168,0.3672918229557389,0.3677335075114304,0.3683304647160069,0.36902893025342,0.3703953550003613,0.3718153074289895,0.3737039047102173,0.3764002517306482,0.3790785259230579,0.3803715219644423,0.3807255404910223,0.3832700433224582,0.3858073493137689,0.3885496183206107,0.3886136299897167,0.3886328725038402,0.3839080459770115,0.3822929416564667,0.3805723720418272,0.3826354206684594,0.0,2.680375037675536,61.21772707278873,216.8046243674033,340.4447075600523,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95708,40694,381.2220504033101,7438,76.56622225937225,5765,59.77556735069169,2333,24.010532034939608,77.32145341825886,79.7085207473738,63.3143933609397,65.08006520427811,77.03506447654881,79.4206522726508,63.20907105149561,64.97670483386618,0.2863889417100438,287.86847472299826,0.1053223094440838,103.36037041193435,65.33318,45.766974912968,68263.02921385881,47819.38282376395,194.64553,115.36814212436738,202935.16738412672,120104.75628026234,240.31936,113.38462276946828,248667.3005391399,116551.91971920789,3310.95868,1486.371616711192,3433711.246708739,1527423.1479795268,1418.23599,618.3578597884402,1469352.7500313453,633662.867106126,2295.99898,956.260193268772,2365361.223722155,971016.623273892,0.38068,100000,0,296969,3102.86496426631,0,0.0,0,0.0,16073,167.46771429765536,0,0.0,22537,232.98992769674427,2185880,0,78387,0,0,2542,0,0,48,0.5015254733146655,0,0.0,0,0.0,0,0.0,0.07438,0.1953872018493222,0.3136595859101909,0.02333,0.3136503067484663,0.6863496932515337,25.53874099888512,4.645347715505569,0.3252385082393755,0.201561144839549,0.2398959236773634,0.233304423243712,11.187279966633657,5.566297862771838,24.76399331707553,13244.01034867312,65.02741628226626,13.593825833495654,21.19363403019385,15.357637087436864,14.882319331139865,0.540156114483955,0.7512908777969018,0.6874666666666667,0.5755603759942155,0.1159851301115241,0.6890934844192634,0.9112426035502958,0.8482905982905983,0.7272727272727273,0.1476510067114094,0.4918447048012864,0.6856796116504854,0.6339729921819474,0.532093023255814,0.1069723018147087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0044417401886218,0.0065778788370959,0.0088007235698824,0.0111509034673612,0.0134463368918588,0.0156745566354263,0.0177557688380641,0.0196894263895562,0.0219972567404344,0.0241236838597894,0.0260014992965629,0.028227258232093,0.030109742902777,0.0321122224630724,0.0342538694568802,0.0365126059124526,0.0387836645737117,0.0412251052987364,0.0431479223337398,0.0578232713599331,0.0719781427629306,0.0851577422808085,0.0979626628501673,0.1094124225830616,0.1254842192163586,0.1395289597418725,0.1521060759358858,0.1645595323337358,0.1760945577793508,0.1902889401219538,0.2030681621340724,0.2156384957629423,0.2271772428884026,0.2380370798261539,0.2494600551574423,0.2607599174245383,0.2704568710573365,0.2808217624103821,0.2903273843616119,0.2991948358436871,0.3075051753780657,0.3155881830560653,0.3232363204662373,0.3301604668125455,0.3371410967344423,0.3435621995192308,0.3500298985992188,0.3557709730023555,0.3607922307550207,0.3622413235611123,0.3630083258790339,0.3646344213315294,0.3647632271688507,0.3664403953793021,0.3661963180764329,0.3668497238270586,0.3683569712724999,0.3700419412822049,0.371635166093929,0.3724805109420494,0.3732121957509274,0.3739536448912632,0.3747216912178117,0.3757296839045658,0.3765061825835306,0.378111315971422,0.3788220352436894,0.3818110961524835,0.3840115347644985,0.3844670004133559,0.387854991394148,0.3906320179659929,0.389433551198257,0.3893627216099664,0.3869285800897296,0.387374686716792,0.3874922086017037,0.3872686483454851,0.3771004298554122,0.0,1.7905750162808594,63.08094879211952,216.73079722745757,334.2462141625452,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95716,40809,384.16774624932094,7515,77.37473358686114,5813,60.26160725479544,2363,24.384637887082626,77.3455376358958,79.73036670252797,63.32130932583449,65.08642594697312,77.06020994129557,79.44431884590205,63.21668112362458,64.98421558434632,0.2853276946002268,286.04785662592747,0.1046282022099092,102.21036262680629,65.98394,46.21781575320703,68937.21007981946,48286.40535877704,194.99722,114.9848487336488,203265.72359898032,119672.20604042042,239.30953,113.31359970204808,247194.65920013376,116300.53593973372,3337.47568,1491.7060173055888,3461156.462869322,1532774.9355443076,1364.45497,588.3362795514046,1416883.2379121569,606044.0233664772,2326.87924,963.2330497706548,2402667.391031802,981033.5904435688,0.38143,100000,0,299927,3133.5095490827034,0,0.0,0,0.0,16142,168.1641522838397,0,0.0,22459,231.8107735383844,2185184,0,78283,0,0,2552,0,0,32,0.3343223703456057,0,0.0,0,0.0,0,0.0,0.07515,0.1970217340009962,0.3144377910844976,0.02363,0.3155499367888748,0.6844500632111251,25.472617901732093,4.581756134729534,0.3409599174264579,0.1909513160158266,0.2386031309134698,0.2294856356442456,10.984192425210509,5.397373918156858,25.090584873457992,13237.484106467226,65.24602657592894,13.03042076025996,22.075024601431984,15.562514718904966,14.578066495332038,0.5408567004988818,0.781981981981982,0.6765893037336024,0.5753424657534246,0.1026986506746626,0.6940836940836941,0.90633608815427,0.8451025056947609,0.7133956386292835,0.1254752851711026,0.4928845719448836,0.7215528781793842,0.6286454957874271,0.5337711069418386,0.0971055088702147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492629104651,0.0044424159440133,0.0063150413726585,0.0084249679871542,0.0109058354358264,0.0129659808514972,0.014949725683751,0.017176761332884,0.0192347022251308,0.021085293545381,0.0231580242861831,0.0254519309778142,0.027330892034233,0.0294093400931536,0.0313009556440793,0.0334660118893771,0.0353864959496136,0.0374994810478681,0.0393215191979699,0.0411691153485464,0.0561793058790353,0.0702376840717134,0.0835616007052674,0.0964595717817875,0.1090203358366382,0.1248188693214871,0.1388885941363101,0.1518143379024613,0.164952751528627,0.1764971072206777,0.1909520113827447,0.2042454107326582,0.2170287804240867,0.2281784459836523,0.2392484066617499,0.2511994858554855,0.2619924551887319,0.2720695785233691,0.2818973928433664,0.2907077923564837,0.2995013132470177,0.3079459358338789,0.3164661769750304,0.3243243243243243,0.3307808062911094,0.337403828399089,0.3444688937787557,0.3500711526733076,0.3561385370896872,0.3616710334022356,0.3632062792322993,0.3651913678545934,0.3668983761573748,0.3685813688267818,0.3694026528977121,0.3698445722677763,0.3695228436048999,0.3703331631560745,0.370938999314599,0.3709347771522822,0.3715878906617938,0.3731298742638866,0.3728620536938229,0.3734796195957643,0.3748396931787935,0.3750754612981968,0.3764044943820224,0.3754704449856099,0.3757421543681086,0.3753502521815707,0.3767252051905176,0.3779691846779371,0.3770346443726645,0.3766184018999464,0.3773513205396162,0.3777052351589892,0.3752333540759178,0.3788473455897542,0.374965460071843,0.3715846994535519,0.0,1.7742232462620962,61.7371292950432,220.9970956969049,337.4343396311743,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95605,40649,380.4926520579468,7488,77.21353485696355,5833,60.38387113644684,2375,24.43386852152084,77.23812690061078,79.66900482527225,63.25655152000609,65.05402804301131,76.9422864889907,79.37318065724081,63.14820758291242,64.94886713229452,0.2958404116200768,295.8241680314444,0.1083439370936716,105.16091071679055,66.12826,46.334813979782055,69168.20249986925,48464.84386777057,196.53566,115.54324748317627,204953.0568484912,120237.3908092425,238.43873,112.52436987442154,245732.3152554783,114881.27376615522,3360.62608,1502.422228571889,3480217.520004184,1536591.2960325168,1465.47578,632.3707276017492,1519220.8984885728,647817.6743912444,2337.2141,970.1643638995392,2406502.588776737,980905.0900505658,0.38059,100000,0,300583,3144.0092045395118,0,0.0,0,0.0,16245,169.26938967627214,0,0.0,22369,230.2285445321897,2176624,0,78167,0,0,2611,0,0,39,0.4079284556247058,0,0.0,1,0.010459703990377,0,0.0,0.07488,0.1967471557318899,0.3171741452991453,0.02375,0.3095358863809282,0.6904641136190718,25.533840930477872,4.624228585199401,0.3312189267958169,0.188067889593691,0.2442996742671009,0.236413509343391,11.070776788793168,5.646624234760308,25.26804277765108,13293.12252726152,65.57107657411227,12.66081778831192,21.9132433908244,15.889015408494632,15.107999986481296,0.5417452425852906,0.7274384685505926,0.7070393374741201,0.5719298245614035,0.1312545322697607,0.695994277539342,0.89171974522293,0.8787234042553191,0.732484076433121,0.1666666666666666,0.4931228861330327,0.6615581098339719,0.6518467852257182,0.5265526552655265,0.1214087117701575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022802821469109,0.0047873581288732,0.0070871578263341,0.0092698941890367,0.0115107474352711,0.0138553541774911,0.0160538528226834,0.0183058881216034,0.0205592946423091,0.0228508803375907,0.0250554050726422,0.0270850672502902,0.0293015788065293,0.0313501922660591,0.0333770512118802,0.0354910806671909,0.0374962420824564,0.0398179986079802,0.0416397743124232,0.0436606053018684,0.0575646373720582,0.0717751485490919,0.0852472106070475,0.0980020432451788,0.1096947935368043,0.1251522694772522,0.1390081169521057,0.1524144547489606,0.1648869010678593,0.1763953938039788,0.1907700939823257,0.2046316976386148,0.217439630372243,0.2294684931506849,0.2405458132639677,0.2523306401491609,0.2627739676217541,0.2728185232386344,0.2823280519569149,0.291386240955553,0.2999257178671742,0.308022569709198,0.3160893616011015,0.3235071261049972,0.331183241476857,0.3371887331609743,0.3437189843838336,0.3498933329926802,0.356290150589092,0.3621235608198524,0.3633094011546938,0.3644669910427955,0.3653837993804896,0.3662276562068915,0.3678342760771905,0.3674745172912881,0.3674259318254221,0.368130505925326,0.3694839964876638,0.3701305708427754,0.3713186046072864,0.3728212585406665,0.3734547682944868,0.3755500891426508,0.3755097087378641,0.3765932792584009,0.3777937995674116,0.3787859506235683,0.3794094683795869,0.3795419115001798,0.3805464682301986,0.3811745776347546,0.3797090400863985,0.3807254841684598,0.3832590766897336,0.3870005963029219,0.3878954607977992,0.3911723020854424,0.392570002772387,0.3999230177059276,0.0,2.4830751814591827,61.71067819174472,217.88420981343023,343.19541276991043,fqhc2_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95716,40735,381.5349575828493,7589,78.01203560533244,5911,61.13920347695266,2412,24.81298842408793,77.33641368994157,79.70995829059385,63.332022412709286,65.08873013601531,77.04025646652786,79.4136966989427,63.22408754088338,64.98340068910069,0.2961572234137009,296.2615916511453,0.1079348718259041,105.32944691462376,65.62138,45.93673973683438,68558.4228342179,47992.7491086489,195.79376,115.43505148696752,203950.6561076518,119995.39019225477,238.43126,113.25674865605762,244694.0114505412,114981.18594817602,3916.30801,1751.6768238996176,4055161.634418488,1793653.8135232015,1446.93798,628.0697634392324,1495400.2465627482,639905.1155832844,2385.87508,990.3122809571632,2457308.663128421,1005074.159085266,0.38188,100000,0,298279,3116.291947009905,0,0.0,0,0.0,16142,167.9969910986669,0,0.0,22466,230.3585607421957,2186874,0,78490,0,0,2629,0,0,42,0.4283505370053074,0,0.0,0,0.0,0,0.0,0.07589,0.1987273489054153,0.3178284358940572,0.02412,0.3074899799599198,0.6925100200400801,25.668726455025443,4.605550713968452,0.3288783623752326,0.1970901708678734,0.2278802233124682,0.2461512434444256,10.919821462839636,5.363166182468846,25.78171840677319,13337.967927314545,66.70420984402693,13.561878708778517,22.000451127026235,15.022352613812345,16.11952739440984,0.5386567416680764,0.7699570815450644,0.691358024691358,0.5760950259836675,0.1147766323024054,0.6878491620111732,0.913793103448276,0.8423326133909287,0.7777777777777778,0.1238095238095238,0.4909578030810448,0.7086903304773562,0.6441593517893315,0.5168107588856868,0.1122807017543859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989380244011,0.0046957879897362,0.0070358901467079,0.0091369217009512,0.011352654547674,0.0137392296254048,0.0156538410548751,0.0177047171737798,0.0199053295574207,0.0221219007841451,0.0241814789757467,0.0264778957310938,0.0285987536249768,0.0310549409801619,0.0333608502734495,0.0353916440989808,0.037389854727316,0.0394850141610731,0.0412093622682298,0.0431449344805316,0.0577762462669423,0.0717327390480973,0.0852393686749515,0.0978701932174169,0.1102643561851758,0.1261506917361573,0.1404901732143235,0.1537528978879979,0.1670135886679262,0.1783820268055153,0.1925523327772695,0.2055630055803088,0.2184236549558262,0.2297936488863157,0.2409401577917939,0.2521119908001238,0.263201292551117,0.2739328822855087,0.2838225457183996,0.2934178315678693,0.3016817892850951,0.3088893302335362,0.3167555046034203,0.3244252873563218,0.330748413247412,0.3380326778876343,0.3443453460590671,0.3512103904033786,0.3574296148566396,0.3629086586090747,0.3640249164059972,0.365471656455263,0.3664496264177059,0.3670436421632594,0.3671133528323285,0.3676018210901932,0.3680979643765903,0.3695211072436035,0.3704104413532543,0.3712674842439804,0.373133485227936,0.3754146225197132,0.3765067210804215,0.3774550515139952,0.3790585789231922,0.3792624433203155,0.3808095952023988,0.3832367734131279,0.3860352845124418,0.3875030176229178,0.3910583433818755,0.3909263787014398,0.3909120415449529,0.3929522317932654,0.3908345393150024,0.3905042326094958,0.3866036249014972,0.3911599916995227,0.3953553441522104,0.3962920046349942,0.0,2.4054709923031243,63.19454942892343,223.9612833298554,344.5809272346759,fqhc2_80Compliance_baseline_low_initial_treat_cost,0 -100000,95604,40726,382.3375590979457,7529,77.42353876406845,5874,60.79243546295134,2433,24.978034391866448,77.26635035352784,79.70460599348358,63.26822878755484,65.0722542682131,76.96946762870843,79.40883985945148,63.15948008028956,64.96742892971956,0.2968827248194117,295.7661340321067,0.1087487072652777,104.8253384935407,65.07204,45.55252677171469,68064.13957574996,47647.09297907481,196.28311,116.1409225619376,204653.73833730805,120826.50575492407,240.00696,114.26820188869416,247414.75252081503,116751.51893622744,3892.41283,1749.8675234392858,4027151.635914816,1786131.462532202,1435.50138,621.783156133461,1485783.576001004,634682.8786784556,2411.20706,1000.350947403773,2477061.8593364293,1005728.8001522168,0.38167,100000,0,295782,3093.8245261704533,0,0.0,0,0.0,16177,168.50759382452617,0,0.0,22606,232.8668256558303,2183458,0,78335,0,0,2674,0,0,37,0.3765532822894439,0,0.0,0,0.0,0,0.0,0.07529,0.1972646527104566,0.3231504847921371,0.02433,0.30933803171407,0.6906619682859301,25.67441228981427,4.563700279267669,0.3270343888321416,0.2000340483486551,0.2293156281920327,0.2436159346271705,10.9950622800596,5.374814285503795,25.92743464289831,13317.000215923072,66.12692027711338,13.74692318682311,21.54282431484634,14.99133552428697,15.845837251156963,0.5406877766428329,0.7617021276595745,0.6928682977615825,0.5857461024498887,0.1125087351502445,0.6962649753347427,0.9111747851002864,0.8929384965831435,0.7236024844720497,0.145631067961165,0.4911335578002244,0.698547215496368,0.6336032388663968,0.5424390243902439,0.1033868092691622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0047882323104235,0.0070785136136979,0.0091508052708638,0.011685429856884,0.0138813865079445,0.0159822011757021,0.0182397841880996,0.0204735205042154,0.0225125525156266,0.0247239213432406,0.0268075570996854,0.0288749575368271,0.030817610062893,0.0327115352834242,0.0349630089502819,0.0368266669430653,0.0387623469292369,0.0407373099220433,0.04273094212497,0.0568629705910027,0.0713462304290415,0.0850149692735963,0.0979185977921968,0.1096042333407268,0.1256858964852439,0.1392071420979913,0.1520911330837413,0.1644027701957762,0.1756318232614115,0.190070340482458,0.2039831739630087,0.2164905783683694,0.2282946925537976,0.2392773288947188,0.2513812767657044,0.2623046067553827,0.2737143243304124,0.2835161088698221,0.2920782424138128,0.3010773864689527,0.3093377692911448,0.3176168074794706,0.3247555635534761,0.3320072508729029,0.3387473290268394,0.345031733687881,0.3513578987632283,0.3573031958374962,0.3626255949233209,0.3635529776758616,0.3642066369790302,0.3656773319025161,0.3670601868617368,0.3681919809211507,0.3689697528020881,0.3696891726624418,0.3712194880754207,0.3722513807416555,0.3730791325578055,0.3740142625363166,0.3754157455537631,0.3760847990878185,0.3774439138661141,0.3786688012419347,0.3792132614129719,0.3815308442960362,0.3844172364445858,0.3851807143364339,0.3865080003216209,0.3880899705014749,0.3898697384002583,0.3909446546527287,0.3883330768046791,0.3913208262270229,0.3931429936686178,0.3968817536276628,0.396067990989146,0.3982177666388192,0.400767754318618,0.0,2.4765318152411284,62.3750071449056,221.0642531834025,343.7273046251587,fqhc2_80Compliance_baseline_low_initial_treat_cost,1 -100000,95707,40565,381.4767989802209,7486,77.07900153593782,5790,59.93292026706511,2374,24.428725171617543,77.34534288058313,79.71148393029792,63.32656324425341,65.07345406735456,77.05143832462974,79.41663453582457,63.219305304304605,64.96814589003368,0.2939045559533895,294.8493944733457,0.107257939948802,105.30817732087884,65.94104,46.23116346881879,68898.86842132758,48304.89250401621,194.54729,114.99549704509715,202678.68598953052,119569.06031422326,238.79349,112.91234170144628,245853.657517214,115216.61607961149,3812.9862,1709.5041148759103,3947930.297679376,1750628.9682895555,1386.21346,604.6097879908776,1431336.9032568152,614673.8880028388,2337.71402,971.6965121832104,2406946.7646044698,985728.1791292568,0.37953,100000,0,299732,3131.7667464239817,0,0.0,0,0.0,16033,166.915690597344,0,0.0,22492,231.3519387296645,2181591,0,78305,0,0,2624,0,0,43,0.44928793087235,0,0.0,0,0.0,0,0.0,0.07486,0.1972439596342845,0.3171253005610472,0.02374,0.3136259832529814,0.6863740167470185,25.457921915263935,4.540527732389717,0.3343696027633851,0.1981001727115716,0.2347150259067357,0.2328151986183074,10.96367666643669,5.477103309012766,25.402813678360623,13177.852649596622,65.36600559427535,13.412749290146657,21.86027996584135,15.290736391041468,14.802239947245871,0.5454231433506045,0.7628596338273758,0.6947314049586777,0.5776306107431936,0.1135014836795252,0.7098808689558515,0.9064327485380116,0.8734693877551021,0.7643312101910829,0.1245551601423487,0.4916341966536786,0.7018633540372671,0.6341632088520055,0.5215311004784688,0.1105904404873477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0045811120345407,0.0065338257375918,0.0085516961202518,0.0107079664015945,0.012736843176982,0.0149740578779446,0.0173228667966477,0.0194426839490523,0.0215270598110368,0.0236811350542308,0.0256931608133086,0.0278023492625126,0.0298756554615788,0.031836616753181,0.0337609443967789,0.0360508709791006,0.0377131352546207,0.0394788829046143,0.0415164335882953,0.0558207053564901,0.0695028780743066,0.0832310259073881,0.0961595117845117,0.1082655354712083,0.124005164676996,0.1372713471277059,0.1506672773168315,0.1626554952336169,0.1747077121098358,0.1896691053669364,0.2033024741486654,0.2159365410981262,0.2273090522950945,0.2387921635997225,0.2504157335757522,0.2612530142002322,0.2710586434688664,0.2813042836544466,0.2906718298886394,0.2987928380458559,0.3061752079263514,0.3139221025216053,0.3209503602210474,0.3277993169581545,0.3340897878638382,0.3406152921134382,0.3465131076609824,0.3530289272279154,0.3591551158607555,0.3603823771653862,0.3622724324025893,0.3635733288051169,0.3643593092439414,0.3652873323086565,0.3655588194583288,0.3657990439740189,0.3671823568136932,0.3690250200947446,0.3693435879091397,0.3704753147811075,0.372276364788844,0.3729956919197226,0.3748201115308509,0.3758872120345922,0.3781351663343478,0.3792985164222622,0.381836522396999,0.3822421019265312,0.3835807234669107,0.3859810083031331,0.3840595225350605,0.384044644555774,0.3864526534060364,0.3864454976303317,0.3855148550292328,0.3824615384615384,0.3868926092282564,0.3816155988857939,0.3790386130811662,0.0,2.100531730325262,63.48323006215911,220.1445663029629,330.9963316712021,fqhc2_80Compliance_baseline_low_initial_treat_cost,2 -100000,95651,40468,379.6405683160657,7425,76.44457454705126,5759,59.50800305276474,2409,24.68348475185832,77.2498286400838,79.64862183472542,63.26585613190741,65.03909978585534,76.95229241317548,79.35476058587355,63.15627023066704,64.93478562845382,0.2975362269083206,293.8612488518686,0.1095859012403721,104.31415740151806,66.05544,46.24602773713456,69058.80753991072,48348.71327757635,194.84396,114.73254754282962,202921.3494892892,119168.0408989764,234.36837,110.61430506419217,241253.4422013361,112723.13974489253,3829.70949,1709.455948090412,3957937.522869599,1741320.509532125,1426.385,606.7376075399065,1475565.514213129,618682.9468755324,2374.63154,987.72559092357,2435124.1492509227,990238.3851132684,0.37951,100000,0,300252,3139.036706359578,0,0.0,0,0.0,16096,167.52569236076988,0,0.0,22036,226.5841444417727,2176121,0,78195,0,0,2531,0,0,35,0.3554589079047788,0,0.0,1,0.0104546737619052,0,0.0,0.07425,0.195647018523886,0.3244444444444444,0.02409,0.3151740973917512,0.6848259026082487,25.645846092751967,4.592859264120946,0.3215836082653238,0.1901371765931585,0.2450078138565723,0.2432714012849453,10.9491835355312,5.41208488216963,25.66572498295161,13205.622077874166,64.73481420433126,12.743954420284254,20.745287457215763,15.693088433910631,15.552483892920618,0.5341205070324709,0.7415525114155251,0.6819654427645788,0.5882352941176471,0.1220556745182012,0.6846321922796795,0.909967845659164,0.8267543859649122,0.7538461538461538,0.1245551601423487,0.4870041039671682,0.6747448979591837,0.6346704871060171,0.5386740331491713,0.1214285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019753636695165,0.0042897563053332,0.0069528323910638,0.009103840682788,0.011412761542452,0.0137189998472271,0.0159992658080699,0.0179917087017787,0.0201372482843964,0.0223678820155673,0.0246689437999405,0.0268315733245675,0.0287601741045244,0.0306025685955183,0.0325954529498007,0.0345141438692661,0.0364966529191104,0.0387163088168113,0.0406388180825053,0.0425438733694122,0.0575954525506259,0.0717824115287538,0.0849759640615488,0.0978553689438902,0.1099935620732235,0.1251587637595258,0.139493638622799,0.1521368432271128,0.1643807771311194,0.1767745678402217,0.1911693300387366,0.2047519899364521,0.2170485153157475,0.228735014423446,0.2397178621100735,0.2505611984086413,0.261629924874324,0.2719712954291581,0.2809813855524563,0.2894316418596632,0.2973707752901674,0.3050070521861777,0.3129891756869276,0.3199195655576828,0.3267489812352065,0.3334901339407293,0.3395711843957369,0.3464208548013859,0.3517812780458619,0.3577479352538014,0.3595139180210293,0.3608288751572457,0.3625345132743363,0.3641147143044028,0.3650563510806852,0.3653337027459672,0.3656363838824109,0.3659970926390908,0.3672020083912236,0.3689475862317145,0.3688423994109095,0.370269246866094,0.371918270854441,0.3728465307412675,0.3736338466022247,0.3754132773550249,0.3770182068017863,0.3780407004259347,0.3800415653950473,0.3832820799552698,0.3867708904735784,0.3857584149978696,0.3866210999303841,0.3888803680981595,0.3916698148847752,0.3909935668334525,0.3866646134893748,0.3872427983539094,0.393652561247216,0.3976226993865031,0.0,2.695008662818743,60.42447110483657,217.18162405377447,336.9534639470434,fqhc2_80Compliance_baseline_low_initial_treat_cost,3 -100000,95747,40698,381.1712116306516,7597,78.16432890847754,5901,61.0985200580697,2457,25.348052680501738,77.32698317968122,79.68546348156138,63.31555014592704,65.06057947857602,77.01849333562637,79.37499903106063,63.20213384625048,64.94913153893356,0.3084898440548471,310.4644505007599,0.1134162996765653,111.44793964245991,64.26684,45.073594065775005,67121.51816767105,47075.72463447941,195.23917,115.34197003516786,203357.3584550952,119911.1930767208,243.33669,115.07568034102546,250498.6265888226,117446.80693589624,3911.7952,1762.833862843734,4054413.0259955926,1809996.660828782,1459.98056,636.3976403427162,1512776.7136307142,652614.0379543046,2416.45692,1008.7801662957694,2494949.711218106,1028130.3310845692,0.38101,100000,0,292122,3050.9780985305024,0,0.0,0,0.0,16167,168.26636865907025,0,0.0,22898,235.54785006318733,2187731,0,78536,0,0,2633,0,0,35,0.3551025097392085,0,0.0,1,0.0104441914629178,0,0.0,0.07597,0.1993910920973202,0.3234171383440832,0.02457,0.3098009763424709,0.690199023657529,25.2672797718254,4.6324740501892645,0.3111337061514997,0.2031859006947975,0.250127097102186,0.2355532960515167,11.10265806170061,5.5732761523167085,26.301554079830844,13308.740016923774,66.77962587836188,14.008325877491531,20.840366449212905,16.53802702972239,15.392906521935064,0.5563463819691578,0.7773144286905754,0.7058823529411765,0.6056910569105691,0.1158273381294964,0.6922554347826086,0.8918128654970761,0.8674948240165632,0.7155425219941349,0.1666666666666666,0.5111763377737638,0.7316219369894983,0.6481892091648189,0.5726872246696035,0.1014760147601476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023504381743579,0.0047251120439658,0.0068915819174634,0.0093363946684005,0.0115840325451309,0.0137976681431699,0.0161520577558428,0.0183228704129025,0.0208395081916948,0.0231525076765609,0.0251716716203751,0.0272853256685315,0.0294604401591233,0.0312831443781985,0.0332477124789816,0.0351330405579953,0.0371478563367741,0.0389925624721222,0.0409715942752018,0.0429736740668201,0.0572409905207332,0.0712028958215638,0.0848063575936759,0.0977860942329121,0.1108054264301299,0.126009727215056,0.139973910000106,0.1527978877438037,0.1656157151101896,0.1773096076242809,0.1914852338866134,0.204511734191061,0.2165079710539202,0.228462944118001,0.2400308268193328,0.2518097265178977,0.2632813809284398,0.2734892523996214,0.2832793591273223,0.2922762922533596,0.3008284572156885,0.3081430781491726,0.3158512720156556,0.3238632950927984,0.331084865457202,0.3380222548813772,0.3444334307833222,0.3505785988593883,0.3556808145877708,0.3613691090471276,0.3633995573071317,0.3643926329585431,0.3653438779833357,0.3663278769337837,0.3669330788500536,0.3676429868012184,0.3685072419988234,0.3697873743200923,0.3713790499725425,0.3721946588812667,0.373351146905519,0.3737857327320765,0.3750316803244065,0.375481169664363,0.3760627861347286,0.3762259090789577,0.3767379064690336,0.3777354900095147,0.3799108090889785,0.3832407148282893,0.3839387970131476,0.3859096250400598,0.3881674795717996,0.3888931385297942,0.3900943396226415,0.3903946742748455,0.395628078817734,0.3944150020383204,0.4057239057239057,0.404313725490196,0.0,2.074026060783789,65.48207081003777,220.7414535911981,341.5751142248532,fqhc2_80Compliance_baseline_low_initial_treat_cost,4 -100000,95760,40490,379.37552213868,7418,76.30534670008353,5761,59.5969089390142,2318,23.84085213032581,77.39144353273707,79.72900866976435,63.36142006586866,65.08650609284537,77.10742609597362,79.44556383338582,63.25735861661157,64.98538917732019,0.2840174367634489,283.4448363785356,0.1040614492570881,101.1169155251821,65.219,45.71775345125686,68106.72514619882,47742.0148822649,195.3206,115.38606416352184,203388.8366750209,119915.01061353578,240.18462,113.38840174629232,247151.69172932333,115558.82446474688,3790.27787,1689.675788699985,3922849.759816207,1729238.5638053322,1414.73836,607.5513451933879,1461845.8751044278,618918.7502019498,2280.47616,940.9198752657136,2347498.95572264,952801.6090941088,0.37898,100000,0,296450,3095.7602339181285,0,0.0,0,0.0,16154,168.1077694235589,0,0.0,22569,232.05931495405176,2188301,0,78499,0,0,2622,0,0,46,0.4803675856307435,0,0.0,1,0.0104427736006683,0,0.0,0.07418,0.1957359227399862,0.3124831490967916,0.02318,0.3208343997952393,0.6791656002047607,25.65835278710814,4.518937860542113,0.3409130359312619,0.1971879881964936,0.2313834403749349,0.2305155354973095,10.989403300196454,5.538061018421201,24.580267270892616,13228.584506379471,64.73792684063264,13.254457532143636,22.095179130573072,14.84527610649673,14.543014071419211,0.5519875021697622,0.7720070422535211,0.6970468431771895,0.5678919729932483,0.1332831325301204,0.6924187725631769,0.9316239316239316,0.8725274725274725,0.6421404682274248,0.1535714285714285,0.5075411334552102,0.7006369426751592,0.6441351888667992,0.5464216634429401,0.1278625954198473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0047224783890876,0.00712242040543,0.009404738932166,0.011570802533782,0.0136796677794967,0.0159873649887915,0.0180688473075274,0.0200328944008009,0.0219161823688303,0.0239139344262295,0.0262023965856861,0.0282981062668899,0.0307733476050307,0.0327914480398321,0.0347292523190711,0.0367721636894289,0.0386234935385508,0.0406956196336874,0.0427101129213717,0.0576698258945346,0.0715167622316159,0.0851499066361748,0.0979346751635224,0.1100672697749942,0.1254203235698424,0.1388744552019596,0.1517021276595744,0.1643281223304288,0.1762436091192643,0.1903685524842848,0.2036660538553044,0.216661232474731,0.2290346545470436,0.240026383773979,0.2515214552858122,0.2617874579218405,0.2719613569984273,0.2815557092170443,0.2905385301993454,0.2986703665163602,0.3064557613168724,0.3141613334437438,0.3224082351672319,0.32912406809296,0.3362036044692462,0.3422057038455282,0.3486461703048982,0.3547041216942871,0.3601076957594795,0.3607581305190609,0.3616766631816431,0.363089705675257,0.364043321299639,0.3646611516240662,0.3649659603763482,0.3648907384844217,0.3659901225655077,0.3669104079819585,0.3679751179751179,0.369043817966681,0.3702477700693756,0.3715511440107671,0.3721317001910327,0.373441773775809,0.3744687549189359,0.3756477425634859,0.3784682630178639,0.3804886685552407,0.3822410825093078,0.3837594261541291,0.3835653248777342,0.3852140077821012,0.3870992601726264,0.3853080568720379,0.3877186719028918,0.3895728834169327,0.3927632908833636,0.392087312414734,0.3932798778159603,0.0,2.2301088378690603,61.35839484677901,219.39473916623965,331.93533130837494,fqhc2_80Compliance_baseline_low_initial_treat_cost,5 -100000,95717,40851,382.5861654669495,7564,77.69779662964781,5873,60.66842880575029,2418,24.76049186664856,77.37264048070351,79.73065353481014,63.34029949113111,65.08115436306954,77.07893259738113,79.43884824623235,63.23229828294615,64.97716655191229,0.2937078833223836,291.8052885777911,0.1080012081849659,103.98781115725342,65.95644,46.205980774951584,68907.75933219804,48273.53633623242,198.55184,117.85267940693424,206752.25926428952,122442.09430606292,242.25655,115.27931501004132,248316.17163095376,116861.17392700473,3872.81663,1738.8519352538542,4003596.18458581,1774144.0551352997,1448.63779,629.7835691742816,1496160.3267967028,640665.2519137478,2377.42634,983.8278446886516,2438320.6326984754,990035.2512527592,0.38237,100000,0,299802,3132.1708787362745,0,0.0,0,0.0,16429,170.9205261343335,0,0.0,22873,234.2112686356656,2179041,0,78237,0,0,2628,0,0,35,0.3656612722922783,0,0.0,0,0.0,0,0.0,0.07564,0.1978188665428773,0.319672131147541,0.02418,0.3202811244979919,0.679718875502008,25.435683100730184,4.6811406127533886,0.3362846926613315,0.1980248595266473,0.2310573812361655,0.2346330665758556,11.40957720801004,5.749876706063192,25.611450133314047,13315.409518093016,66.00325603702376,13.47401991214826,22.355870186009717,15.068423834938168,15.10494210392762,0.5484420228162779,0.7454858125537404,0.7124050632911393,0.5725865880619012,0.1233671988388969,0.7104895104895105,0.8967551622418879,0.8787878787878788,0.7443365695792881,0.1637630662020905,0.4962862930452397,0.683252427184466,0.6567567567567567,0.5219465648854962,0.1127406049495875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002379746835443,0.0048138801901229,0.0070198930785071,0.0094247643808904,0.0117235559080417,0.0140379094814422,0.016400962244149,0.0187500637930858,0.0209038219750789,0.0229296755041457,0.0249038806582252,0.0268169731316926,0.0287706165425903,0.0310301856867732,0.033303413909437,0.0352233499390206,0.0375002588366844,0.0397153851738909,0.0416467457958301,0.0432971222047473,0.0581270295385964,0.0717267790438522,0.0852852978799253,0.0979934621974164,0.1101775322594248,0.125527303483639,0.1397887099853624,0.1527754129065213,0.1652711621846765,0.1779064779064779,0.1916117358149153,0.2057369155693093,0.2188625066620259,0.2307263180923211,0.2420737545257458,0.2533939158862969,0.2641045967642888,0.2736682058790404,0.2840342245503198,0.2933376158575755,0.301698880151938,0.3096160826142444,0.3180007587253414,0.3252155534740735,0.3316216643749772,0.3380699003716003,0.3444057258893429,0.3506068440289859,0.3559282492612369,0.3605230139338308,0.3618577953838069,0.3631806538684,0.3645825987616885,0.364783880026635,0.3663861791644947,0.3660704690258693,0.366394417571961,0.3674238683127572,0.368584918571233,0.3691367510676697,0.370700804078496,0.3705321840898308,0.3714549808831561,0.3721805353343039,0.3728923788418923,0.3744554300472178,0.3769566333076726,0.3784149140180452,0.3799627900445817,0.382072296789009,0.382664906450585,0.3848036607427902,0.3883255165420205,0.3863236082395282,0.3860162294772599,0.3871507045617387,0.3953452527743527,0.3952205882352941,0.4055555555555555,0.4013107170393215,0.0,2.731588345185096,62.62128457012759,223.35392926147725,336.410932648098,fqhc2_80Compliance_baseline_low_initial_treat_cost,6 -100000,95726,40246,377.3478469799219,7437,76.33244886446734,5770,59.52405824958736,2307,23.67172972860038,77.33281654085012,79.69839128165977,63.319784280511655,65.07091043071884,77.05065651807901,79.41700058063235,63.21667629671217,64.97108591076613,0.2821600227711087,281.39070102741925,0.1031079837994823,99.8245199527048,65.0936,45.63163504026438,67999.91642813865,47669.00846192715,193.08717,113.7928498874754,200966.82197104237,118134.32915311898,236.87109,112.59337345439748,241765.91521634665,113481.49134190648,3814.80649,1701.088511598134,3939726.2394751688,1732081.7782347235,1439.14694,625.0297070634145,1483810.793305894,633426.1892505081,2274.02946,938.8266959688218,2336132.900152519,947248.414820496,0.37789,100000,0,295880,3090.9052921881203,0,0.0,0,0.0,15954,165.89014478824978,0,0.0,22302,227.5139460543635,2187993,0,78536,0,0,2531,0,0,43,0.4283057894406953,0,0.0,0,0.0,0,0.0,0.07437,0.1968033025483606,0.3102057281161758,0.02307,0.3130799542392271,0.6869200457607728,25.64277776634192,4.582188079977912,0.3332755632582322,0.2008665511265164,0.2294627383015598,0.2363951473136915,11.24181932504371,5.653475701169508,24.41951323366957,13166.856303547944,64.5950214921663,13.247388247791193,21.80718333112456,14.771505618131918,14.768944295118636,0.5483535528596187,0.7368421052631579,0.7160686427457098,0.5861027190332326,0.1151026392961876,0.7204066811909949,0.9125,0.8539553752535497,0.7669902912621359,0.1647058823529411,0.4944229455952652,0.6698450536352801,0.6685314685314685,0.5310344827586206,0.1036970243462579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0043005081496657,0.0065082749517717,0.0087415252945182,0.0108757579457127,0.0131091101694915,0.0153784966193822,0.0174374680959673,0.0197541972556798,0.0218920551704365,0.023898378068035,0.0260090975366827,0.0280802410109298,0.0301441812564366,0.0321492318644697,0.0339955347914168,0.0362986743993372,0.0385425639003331,0.0403231676250091,0.0421515413545584,0.056784606871783,0.070581834541783,0.0839983640768045,0.0965337426537842,0.1083927140869418,0.1235936046019795,0.1378922696757909,0.1509110647537145,0.1629034669856663,0.1740878965317547,0.188028942438142,0.2014130070217577,0.2140619902120717,0.2258766414817892,0.2376625376779388,0.2488814069906525,0.2595428367337827,0.2698312640003602,0.2795009195976476,0.2892403903422367,0.2979693903540253,0.3057627674399541,0.313350949745826,0.3205345040603596,0.3280398832684825,0.3342220576436462,0.3406116821258461,0.3464497719803317,0.3527001089381127,0.358726549175668,0.3599379510352735,0.3613868210642404,0.3629960051382674,0.3641155600608211,0.3655577416085375,0.3658109684947491,0.366286358082483,0.3674866310160428,0.3683859150589725,0.3695255474452554,0.3712331855414443,0.3715969521390586,0.3730245460659045,0.3747981700753498,0.3759627224220768,0.3773288263501297,0.3781621063500258,0.3795176909931008,0.3820033955857385,0.381602659084538,0.3839445540918896,0.3869325186257168,0.3889417888656129,0.3890549551621062,0.3909262759924385,0.3891731112433075,0.3949708678319534,0.3899063899063899,0.3960011108025548,0.4024012393493416,0.0,2.885840000345101,60.03570420442598,213.67380649200496,340.72102094928465,fqhc2_80Compliance_baseline_low_initial_treat_cost,7 -100000,95769,40639,379.7888669611252,7549,77.44677296411156,5864,60.55195313723648,2341,24.057889296118784,77.34910350822409,79.67898726340704,63.34642956891118,65.06733656924808,77.05456982931054,79.38302593780719,63.2389663172092,64.96169308501622,0.2945336789135524,295.96132559984767,0.1074632517019722,105.64348423186232,65.95688,46.19293511089557,68870.80370474789,48233.70308857309,195.26651,115.13618873149755,203204.3354321336,119533.91883751276,240.71596,114.53398860378825,246485.14655055397,115872.74746741062,3864.09432,1738.6347129207093,3994331.0361390426,1775323.660609338,1414.43422,619.942768404339,1460622.8320228884,631188.2847973488,2307.7865,962.8041603744445,2374349.0899978075,976062.7301880872,0.38137,100000,0,299804,3130.49107748854,0,0.0,0,0.0,16171,168.13373847487182,0,0.0,22682,232.04794870991657,2183569,0,78455,0,0,2630,0,0,40,0.4072298969395106,0,0.0,0,0.0,0,0.0,0.07549,0.1979442536119778,0.3101072989799973,0.02341,0.3205015673981191,0.6794984326018809,25.314741057595228,4.602156718816975,0.3282742155525239,0.2007162346521146,0.2394270122783083,0.2315825375170532,10.981677381500589,5.457560538319867,25.05053509365831,13277.119797220494,66.10294075774414,13.763392652961944,21.76234139657236,15.617971257737729,14.95923545047209,0.547237380627558,0.7638062871707731,0.6935064935064935,0.584045584045584,0.1141384388807069,0.6940451745379876,0.918918918918919,0.8374485596707819,0.7203947368421053,0.1594684385382059,0.4985237338178515,0.6926889714993805,0.6448922863099374,0.5463636363636364,0.1012298959318826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0045104856120576,0.0068580008318876,0.0091212887629379,0.0113576280148045,0.0135897227085793,0.0156240445178254,0.0178496708679899,0.0199245930785028,0.0221501503959403,0.0242593123796254,0.0265466747390996,0.0288166075741226,0.0308781753056939,0.0332817816269718,0.0357065391408533,0.0377793874172185,0.0401385302931325,0.0420199501246882,0.0438504233008091,0.0578137229324289,0.0717886501976697,0.0847032920947787,0.0978057546396519,0.109806855420798,0.1249630161883427,0.1391520932697403,0.1523606975754997,0.1646462490662682,0.1761706321574341,0.1902886291728546,0.20378439746986,0.2167177613984736,0.2290575486862104,0.2398208961791918,0.2511822621908675,0.2620594209692181,0.2722907553386485,0.2815071213754752,0.2911670732126292,0.2998322244720856,0.3086627811717342,0.3161770800033152,0.3240858410262558,0.3310687635205755,0.3378495101305496,0.3450859519871698,0.3513878622588127,0.3568314519268197,0.3616908710948866,0.3626155611039881,0.3635034281063333,0.3646809712027103,0.3656018303985171,0.3671573808070734,0.367749259776322,0.367598775516678,0.3689917888466538,0.3696817162326433,0.370883695944131,0.3711444843335902,0.3707956690175822,0.3718056666526333,0.373329132724245,0.3743813682678311,0.3748124753257007,0.374564007955954,0.376128065308205,0.3780362032789217,0.3795811518324607,0.3807347918397489,0.3823893281695444,0.3842399332091709,0.3859024012393493,0.3849995198309805,0.383883944898208,0.3869141239383454,0.3939771547248182,0.3905941988172345,0.3976725521669342,0.0,2.642450398204814,64.09330698487258,218.86040354340992,338.02754297882615,fqhc2_80Compliance_baseline_low_initial_treat_cost,8 -100000,95657,40881,382.752961100599,7558,77.61062964550425,5820,60.15241958246652,2387,24.566942304274647,77.31532774038504,79.70647760466576,63.31028192710126,65.07588208113825,77.0188156167441,79.41013133506652,63.20216035059757,64.97084315675808,0.2965121236409374,296.3462695992405,0.1081215765036844,105.03892438016749,66.31834,46.46791828785544,69329.3120210753,48577.64542882951,197.22892,116.3807337367997,205533.4371765788,121014.59771558765,242.53959,114.86721078722336,248911.5903697586,116523.83493478784,3883.69724,1727.8424296431144,4017947.677639901,1764213.1779620058,1457.48505,631.4076600050232,1505917.3609876956,642334.570397381,2362.49682,978.8159139265712,2433244.989911873,991542.738020415,0.38145,100000,0,301447,3151.332364594332,0,0.0,0,0.0,16232,168.99965501740596,0,0.0,22745,233.15596349456916,2178419,0,78142,0,0,2716,0,0,42,0.428614738074579,0,0.0,0,0.0,0,0.0,0.07558,0.1981386813474898,0.315824292140778,0.02387,0.3146264908976773,0.6853735091023226,25.72161132692281,4.6527987444265735,0.3214776632302406,0.1950171821305842,0.2415807560137457,0.2419243986254295,11.238603650288256,5.522689116126947,25.52353111639893,13287.965981085918,65.39290463057371,13.2753706316426,20.891883052746245,15.584766742027204,15.640884204157643,0.5398625429553264,0.7700440528634361,0.6819882415820417,0.5746799431009957,0.1306818181818181,0.7103866565579985,0.9116719242902208,0.8661971830985915,0.745819397993311,0.2021660649819494,0.4898911353032659,0.715158924205379,0.6276816608996539,0.5284552845528455,0.1131741821396993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008752557894,0.0045722743770149,0.0070531165641681,0.0093268038932802,0.0114237467447916,0.0135472370766488,0.016033617559463,0.0184364275208367,0.0209032152499386,0.0229486037295321,0.0250653812624993,0.0270775552131484,0.0291031417813715,0.0309534358932085,0.033164397559893,0.0352566422934916,0.0374549297525798,0.0396977779622845,0.0417312433039661,0.0437225105788672,0.058218748693944,0.0722602668006952,0.0855025610882525,0.0981436268732109,0.1102198486495614,0.1256947458685779,0.139139022214671,0.1517165713311816,0.1644380311046977,0.1760336610707998,0.1900645620237338,0.2037855162855162,0.216517176818914,0.2285048314200982,0.2394929292039297,0.251544562142976,0.2622584608511114,0.2726996488700819,0.2822416748981005,0.2907936362385952,0.2998540687035278,0.3079948956296756,0.3158025627057625,0.3228640351403574,0.3301891379394175,0.337110935727322,0.3432222500626409,0.3494703066109809,0.355637909140384,0.3617417734901546,0.3634303595996654,0.3643047298508904,0.3650374719489647,0.3656447053707328,0.3672845945220994,0.3684226698007405,0.368779573819429,0.3695981056370453,0.370255549465607,0.3712822532991924,0.3721567964538607,0.3729835909442647,0.3751053607552259,0.3760435653367537,0.377039655255895,0.3772847664752314,0.3767473968820111,0.3792686419910251,0.3810285958173282,0.3814793947198969,0.3842603277175167,0.3859110967603056,0.3851818647540984,0.3893082250408528,0.3886592984142239,0.3900992495763737,0.3872017353579176,0.3857548701298701,0.3896503496503496,0.3811175337186898,0.0,2.748477273491462,57.71489086740838,228.6584182754769,342.0231414642489,fqhc2_80Compliance_baseline_low_initial_treat_cost,9 -100000,95627,40535,380.1436832693696,7365,75.86769427044663,5730,59.3347067250881,2293,23.61257803758353,77.3146043072854,79.73513084068271,63.296484254502126,65.08366517042505,77.0406983312147,79.45932213285485,63.19675284963719,64.98570517004711,0.2739059760707079,275.8087078278635,0.0997314048649329,97.96000037793816,64.64612,45.26191649841725,67602.37171510138,47331.73319085327,193.90631,114.5913643503466,202192.2469595407,119250.24768145668,234.81253,111.11810415138486,241707.35252596025,113275.13455453332,3779.02884,1682.9285879438469,3917757.589383752,1725803.1705939192,1382.19731,590.4726101087023,1431896.3681805348,603966.2857861301,2269.60332,934.571732115172,2339648.2165078903,949016.0691922924,0.38003,100000,0,293846,3072.8350779591538,0,0.0,0,0.0,16048,167.22264632373702,0,0.0,22108,227.3625649659615,2188537,0,78431,0,0,2500,0,0,32,0.3346335240047267,0,0.0,1,0.0104572976251477,0,0.0,0.07365,0.1938004894350446,0.3113374066530889,0.02293,0.3170668732248902,0.6829331267751098,25.68049650504864,4.456563309347561,0.3298429319371728,0.2036649214659686,0.2293193717277487,0.2371727748691099,10.9101717873484,5.450108279577415,24.250759062423104,13250.096535143002,64.26692358384115,13.514111874134125,21.293179684579314,14.614894250963957,14.844737774163752,0.550087260034904,0.7969151670951157,0.682010582010582,0.58675799086758,0.119205298013245,0.7137601177336277,0.9149560117302052,0.8741573033707866,0.7603833865814696,0.1192307692307692,0.4991992679020819,0.7481840193704601,0.6228373702422145,0.5324675324675324,0.1191992720655141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026445644574589,0.0049690196834024,0.0072278393633004,0.0093786516283086,0.011566162109375,0.0137909961295579,0.0158097122632368,0.0176626826029216,0.0198934244305571,0.0217409114183307,0.0236412681155704,0.026091690721014,0.0282498662606477,0.0302106087458269,0.0322164416367314,0.0344948816047978,0.0363596800265263,0.0384982765064994,0.0406422008802688,0.0428361337964266,0.0572279711508309,0.0709616593337523,0.0846678077516775,0.0978842105263158,0.1100497155342572,0.126236208466572,0.1399725960466079,0.1533871122430494,0.1659250385076159,0.177234497352224,0.1911239603447717,0.2037974271997225,0.2163036727934366,0.2275704927371119,0.2390005731164308,0.2505437918941714,0.261234479598565,0.2716876971608832,0.2816984626572282,0.2904776105707469,0.2992392223161454,0.3076149021810352,0.3156212261135185,0.3224135450141493,0.3295680901715007,0.3361717334779233,0.342784214609244,0.3489652891721041,0.3550007118911712,0.3605547198691051,0.3616763402776842,0.3628482972136223,0.3640260582644745,0.3655051609073932,0.3663667242714975,0.3667823789628901,0.3661423578010804,0.3667826918952803,0.3688082224743048,0.3698647339528542,0.3706444765858331,0.3723160267309897,0.3736012740455136,0.3753696567792813,0.3760400134660703,0.3775805065993283,0.3797122097164838,0.3809299551034504,0.3826346255042975,0.3843342866221798,0.3858468255412043,0.3866595801222429,0.3849087788443201,0.3838608322476818,0.3837648837648837,0.3834776334776335,0.3866729235100891,0.3937834499794154,0.3924015529672767,0.392156862745098,0.0,2.3246392822587043,60.10333767282737,215.23939157808283,336.2069371529973,fqhc2_80Compliance_baseline_low_initial_treat_cost,10 -100000,95636,40802,384.2590656238237,7548,77.76360366389225,5821,60.18654063323435,2353,24.185453176628048,77.29129418892526,79.69293307073447,63.29829466637945,65.07063586571303,77.00550696548062,79.405407195325,63.195285319171504,64.9695998222787,0.2857872234446432,287.5258754094716,0.1030093472079443,101.03604343433403,65.12198,45.575666760490016,68093.58400602284,47655.34606266471,191.94126,112.52120837172563,200029.01627002383,116985.98695003983,235.66572,110.74282469196508,241690.64996444853,112195.25179642638,3833.68696,1698.2717268316046,3967729.840227529,1734987.260551336,1422.1248,606.8292561092259,1469772.7006566566,617321.4046772656,2319.15986,949.1336173485864,2386187.2307499265,960056.2728125756,0.38325,100000,0,296009,3095.1629093646743,0,0.0,0,0.0,15919,165.75348195240286,0,0.0,22268,228.1253921117571,2187986,0,78513,0,0,2548,0,0,28,0.2823204650968254,0,0.0,0,0.0,0,0.0,0.07548,0.1969471624266144,0.3117382087970323,0.02353,0.3191409193669932,0.6808590806330068,25.39148606713253,4.599560456902996,0.3325889022504724,0.2042604363511424,0.2274523277787321,0.2356983336196529,11.068449774589896,5.450367179765278,24.940014664538765,13287.8958550528,65.34909240293796,13.802955013211111,21.852540160637837,14.586484716469212,15.107112512619809,0.548187596632881,0.7544154751892347,0.702995867768595,0.5755287009063444,0.1246355685131195,0.696165191740413,0.8920454545454546,0.8571428571428571,0.7027972027972028,0.1482889733840304,0.5032474804031355,0.6965352449223416,0.6556380823767725,0.5404624277456648,0.1190261496844003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0044915340160194,0.0067090933081615,0.0088202418453409,0.011160964095677,0.0131995722360849,0.0153761445439158,0.0176445361161598,0.0197938818910518,0.0217578276984825,0.0236688817786528,0.0257687488445658,0.0279306620029833,0.0298109124632902,0.031775855305267,0.0337801497662488,0.0359619031826802,0.0376700238812169,0.0395600736678909,0.0413890887102659,0.0559189900932157,0.0704312394599294,0.0842511996136036,0.0965793074413219,0.1088314758527524,0.1243715800726056,0.1379317665541473,0.1513137574421403,0.1640903940307442,0.1765678339094402,0.1911163818662066,0.2044738466202535,0.2164586031628555,0.2281072441237971,0.2397624085338975,0.2508650135296988,0.2619954643459609,0.2725993470674321,0.2831938783619623,0.2922477511029622,0.3011622791785325,0.3089568829345346,0.3168085837113182,0.3244128301705731,0.331816744118148,0.3386340066176107,0.3451315228566413,0.3513796093232009,0.3569370538611291,0.3629840095149993,0.3647252421160538,0.3660491357786269,0.3670505121865065,0.3683050601710889,0.3695107398568019,0.3690666748753309,0.3686696029638581,0.3713375480761294,0.3728953336540443,0.3734465914804971,0.373923530631089,0.3748308525033829,0.3769827877151535,0.3784270472245982,0.3785135951661631,0.3791576022855346,0.3788251444260138,0.3817951959544879,0.3832695849270435,0.3859994377284228,0.3848173568566032,0.3884961439588689,0.3894353602452733,0.389375727025979,0.3906565413822935,0.3909545288309155,0.3948863636363636,0.3913499895024144,0.3993781797625777,0.3993783993783993,0.0,2.661073890766973,59.59474581084909,220.6563995530231,344.7050588603841,fqhc2_80Compliance_baseline_low_initial_treat_cost,11 -100000,95624,41011,384.3909478791935,7539,77.59558269890404,5864,60.66468668953401,2444,25.140132184388857,77.27514686010801,79.68853248896748,63.27600815666828,65.05751173827713,76.97805324407481,79.39041056221971,63.16867068351948,64.95259614055823,0.2970936160331945,298.1219267477684,0.107337473148803,104.91559771890024,65.33626,45.79784685355743,68326.21517610642,47893.67402906952,197.69506,117.24528686870538,206071.2268886472,121939.86537763051,246.61458,117.12641365833244,254028.0578097549,119442.30855685296,3882.59288,1741.10840312971,4020485.725340919,1781001.4150524042,1450.6878,626.4260536206233,1497173.9626035306,635198.5280331541,2404.4042,994.2511263751755,2475873.4418137707,1005634.40502481,0.3827,100000,0,296983,3105.737053459383,0,0.0,0,0.0,16370,170.49067179787502,0,0.0,23114,237.81686605873003,2177660,0,78148,0,0,2646,0,0,43,0.4496779051284196,0,0.0,1,0.0104576257006609,0,0.0,0.07539,0.1969950352756728,0.324180925852235,0.02444,0.3113847700427243,0.6886152299572756,25.583326478365453,4.532352818176944,0.3306616643929058,0.1974761255115961,0.2394270122783083,0.2324351978171896,11.118753985128071,5.638916338780895,26.10051086190811,13376.89101782156,66.32401263308918,13.622999787991924,21.983723753378943,15.539579230240095,15.177709861478244,0.5511596180081856,0.7970639032815199,0.6817947395564724,0.5868945868945868,0.119589141599413,0.7145862552594671,0.92507204610951,0.8336594911937377,0.7354838709677419,0.1705426356589147,0.4986480396575034,0.7422934648581998,0.6274509803921569,0.5447897623400365,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0044089476298105,0.0068591142001927,0.0092026409344845,0.0113508070667927,0.01358562815708,0.0160908757188889,0.0181519331094118,0.0204471798227229,0.0225774082568807,0.0247917777868953,0.0270286929454186,0.0293636503935387,0.0314381133008988,0.0336531014756146,0.0356178554802669,0.0376673991459015,0.0396626751274834,0.0417191321088506,0.0436120178118905,0.0591979431223152,0.0735369623303819,0.0860042229995903,0.0986589130137058,0.1109233223124782,0.1267422156322813,0.1407666393904292,0.1534656631771954,0.1658622202720491,0.1773885008060182,0.1911809153713299,0.2047753814124459,0.2172363430265509,0.22886559505274,0.240041928721174,0.2521297746381882,0.2631101859934197,0.2739982622628948,0.2837923969952197,0.2929454194615455,0.3009108313511632,0.3099059149245677,0.3176871313450195,0.3251141552511415,0.3323676554721069,0.3398150548785758,0.3454912736352116,0.3511938909498859,0.3574518387654096,0.3635797974448931,0.3648451435057564,0.3668880940214614,0.3682596220441278,0.369474767682918,0.3705481596326719,0.3702285969038724,0.3706609076761838,0.3716362078341545,0.3740928385594961,0.3752170255418926,0.3757718373493975,0.3778585040495474,0.3796929944621086,0.3791103818749859,0.3801924657865467,0.3813368283093054,0.3823520985532159,0.3849443969204448,0.3861607142857143,0.3871446329042864,0.3893614086708657,0.392572658772874,0.3942656897100987,0.3966751327637959,0.3970770847263349,0.394991531575127,0.3981293842556508,0.3961562306261624,0.3923055321538893,0.392439594699922,0.0,2.522041095163169,62.99379994179903,222.63092073234944,341.35747078552987,fqhc2_80Compliance_baseline_low_initial_treat_cost,12 -100000,95689,40902,383.3251470910972,7670,78.9850453030129,5968,61.83573869514783,2345,24.25566157029544,77.28391542799022,79.68061900158321,63.28504443165552,65.0593377322101,77.00310996786378,79.39717814002628,63.18274202099793,64.95838113111671,0.2808054601264445,283.44086155692594,0.1023024106575931,100.95660109338668,65.52612,45.91272746916224,68478.21588688354,47981.19686605801,197.7598,115.8916663714164,206138.20815349725,120581.73496579172,246.16651,116.04305813102629,253430.3733971512,118453.53780043696,3931.47613,1747.4077942480972,4076840.211518565,1794374.7915100986,1440.6054,623.4934644951506,1494223.1081942543,640303.2765048913,2319.98026,954.0937097120328,2400327.03863558,974802.5763624344,0.38208,100000,0,297846,3112.646176676525,0,0.0,0,0.0,16335,170.15539926219316,0,0.0,23063,237.2268494811316,2181409,0,78364,0,0,2633,0,0,42,0.4389219241501113,0,0.0,0,0.0,0,0.0,0.0767,0.2007432998324958,0.3057366362451108,0.02345,0.3140780884345363,0.6859219115654638,25.499467646935077,4.608404419500593,0.3203753351206434,0.2131367292225201,0.2293900804289544,0.237097855227882,10.99291020464171,5.325581192383204,24.87272080046779,13359.028352890273,67.04368468671683,14.827247074996738,21.54552623146063,15.151221046731848,15.51969033352762,0.546916890080429,0.7633647798742138,0.7024058577405857,0.5719503287070855,0.1180212014134275,0.7208806818181818,0.929503916449086,0.8602620087336245,0.7298245614035088,0.202127659574468,0.4932017543859649,0.6917885264341957,0.6526822558459422,0.5304428044280443,0.0970873786407767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307188747694,0.0047366926322622,0.006832695412043,0.0088921860550197,0.011131121353642,0.0132222312769945,0.0156968738844408,0.0177105037382032,0.0197289695729992,0.0221270667294966,0.0240782157293226,0.0262011425753154,0.0283082938876312,0.0303714238601698,0.0326499855485362,0.0346657014323388,0.0369196016869242,0.0389989204451087,0.0410555659572697,0.0432208777579755,0.0582059772900583,0.0724082333479908,0.0857952458414231,0.0983553081561142,0.1102890734662431,0.1260783504281646,0.140475684858781,0.1534840626630741,0.1661019485447374,0.1775211436912377,0.1915540322059108,0.205498743391975,0.2185672753405416,0.230057385666725,0.2414306183180866,0.2529998778958118,0.2636486622466207,0.2742682610704746,0.2843861523424181,0.2941594869618089,0.3027421879529248,0.3109315633941554,0.3189606074988135,0.3262666058087299,0.3342344975400653,0.3412944416315744,0.346238258274076,0.3519195728902537,0.3581311513674027,0.3635439092361945,0.3645938692667664,0.3658096340388007,0.3663743267251346,0.3678106063892866,0.3685433768865184,0.369028234354358,0.3698327748574695,0.3704605263157894,0.3713776192599197,0.3729713250721805,0.37416120033175,0.3751817837719385,0.3760658443179654,0.3777627118644068,0.3781815524758263,0.3798862079865135,0.3803289983636207,0.3820074915878357,0.383147853736089,0.3833034469017732,0.3843266501876773,0.3850832266325224,0.386509635974304,0.3880393641180923,0.3913328341445151,0.391732984915073,0.3920184190330008,0.3964110929853181,0.3969679955081415,0.3995372155804088,0.0,2.0774277010871653,62.53454266075261,225.8616386572833,351.2727358946772,fqhc2_80Compliance_baseline_low_initial_treat_cost,13 -100000,95660,40691,381.2774409366506,7597,78.13088020071085,5888,61.01818942086557,2372,24.440727576834625,77.35161970545354,79.75890529835911,63.31721993396855,65.09485340353095,77.06069733450329,79.46601685180832,63.21015271734146,64.98962773693893,0.2909223709502555,292.8884465507906,0.1070672166270938,105.2256665920197,65.47288,45.82665233089524,68443.32009199247,47905.76241991976,196.83298,116.52011914916658,205215.0637675099,121267.41930032716,242.99637,115.38873699493952,251293.9577670918,118413.76852096296,3908.53802,1750.2599775167469,4051878.09951913,1796249.4633074536,1435.93292,618.5352720279852,1487262.9834831697,632780.8091448724,2352.22228,977.5310473421196,2425248.1287894626,992266.4897359316,0.38006,100000,0,297604,3111.060004181476,0,0.0,0,0.0,16228,169.0779845285386,0,0.0,22859,236.1697679280786,2184352,0,78296,0,0,2544,0,0,37,0.3867865356470834,0,0.0,2,0.0209073803052477,0,0.0,0.07597,0.199889491132979,0.3122285112544425,0.02372,0.3083187171135054,0.6916812828864947,25.52710840011832,4.732151619872746,0.3413722826086957,0.1891983695652173,0.2282608695652173,0.2411684782608695,11.039422966055294,5.291824417578712,25.211318071613032,13207.297489030992,66.19152630126786,12.938368648185117,22.73487508828981,15.071450492781446,15.446832072011487,0.5448369565217391,0.7872531418312387,0.6945273631840796,0.5625,0.126056338028169,0.7041172365666434,0.9184952978056428,0.883399209486166,0.7078313253012049,0.1231884057971014,0.4936026936026936,0.7345911949685534,0.6309840425531915,0.5148221343873518,0.1267482517482517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681644562871,0.0044922172083354,0.0069214687316053,0.0092965130455986,0.0113824776978709,0.013515991036871,0.0157854484270636,0.0180739500260387,0.0203783231083844,0.0223906586090341,0.0246219504688429,0.0269128799556076,0.0292156338115133,0.0311446509757832,0.0331670333529588,0.0350525063369717,0.0369913559005824,0.0391686650679456,0.0414594560852285,0.0432719879046973,0.0579501165062746,0.0716491984880689,0.0847582160363594,0.0978522797823868,0.1098504438135244,0.1250304319752733,0.1382063751619274,0.1522842098531198,0.1650492708344478,0.1762444289319658,0.1899682936824623,0.2033587951676689,0.2160184660946822,0.2279918109063837,0.2386433732816355,0.2496534593078057,0.2603768524106484,0.2705937996193736,0.2807957848837209,0.2901936075151793,0.2982701764535724,0.3062100253732914,0.3142701653928968,0.3211774149105677,0.3279861077378928,0.334910251198088,0.3417924068355981,0.3480095581880116,0.3536661062976852,0.3592629692113032,0.360138400850869,0.3614656690140845,0.362885726363252,0.3636771041142626,0.3649289804417342,0.3653498421649453,0.3644631765749778,0.3652448449370211,0.3658645199965745,0.3670570957805,0.3687160294145304,0.3694097132779836,0.3700275574815407,0.3708950707224676,0.3724385369260035,0.3741223147398919,0.3753429355281207,0.3763491762923688,0.3785993726430057,0.3797534016998523,0.3807910639077092,0.382922301776717,0.3858456113839567,0.385643375334097,0.3848473426309838,0.3875885247869403,0.3859621939882243,0.3837540716612377,0.3823207443897099,0.3749524172059383,0.0,2.026209655879388,63.55705862950997,221.9027674731914,340.349036719852,fqhc2_80Compliance_baseline_low_initial_treat_cost,14 -100000,95787,40662,379.57134057857536,7450,76.51351435998622,5782,59.73670748640212,2412,24.80503617401109,77.3507064425629,79.67726972926508,63.34838135415546,65.0692498507463,77.05753720703646,79.38497547577057,63.24225504506141,64.96632427441783,0.2931692355264346,292.29425349450366,0.1061263090940443,102.92557632847377,65.12066,45.63316038924943,67984.40289392088,47639.81814149044,195.47884,115.56426642422268,203456.00133629824,120027.3762060224,240.47811,114.23088335664104,246724.6494827064,116036.1253391294,3852.91393,1721.4356616509,3983006.785889526,1757868.982069872,1420.98307,617.9913860637441,1469443.5883783812,631133.9180303634,2381.94484,977.1477293909184,2450816.352949774,988897.6353721974,0.3799,100000,0,296003,3090.2001315418584,0,0.0,0,0.0,16096,167.381795024377,0,0.0,22610,231.79554636850511,2188635,0,78510,0,0,2562,0,0,53,0.5428711620574816,0,0.0,0,0.0,0,0.0,0.0745,0.1961042379573572,0.3237583892617449,0.02412,0.3107042969743198,0.6892957030256801,25.528692705453075,4.576921209871061,0.3332756831546177,0.1898996886890349,0.2319266689726738,0.2448979591836734,11.295059999969329,5.745974680547186,25.59232765237653,13283.214155542302,65.06465872380504,12.80222763723304,21.706554045470792,14.94290712645376,15.612969914647444,0.5425458318920788,0.76775956284153,0.6933056564608199,0.5764354958985831,0.1306497175141243,0.7139705882352941,0.9192546583850932,0.8722466960352423,0.7484076433121019,0.1629629629629629,0.4898236092265943,0.7048969072164949,0.6381534283774609,0.5238558909444986,0.1230366492146596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715368096916,0.0048053527980535,0.0069509980009538,0.0091825125954818,0.0115198470798763,0.0135807873598908,0.015888060005707,0.0182363686461001,0.0204992999989781,0.0227898361628751,0.0248993267959792,0.0269862606072421,0.0290529777503725,0.0313970126514519,0.0335337244913742,0.0356618938407818,0.0379648599987583,0.040099523118391,0.0420392352348609,0.0441214746025631,0.0584773353368394,0.0729738490333239,0.0862249711709822,0.0988923219202555,0.1107762027717763,0.1266938671965837,0.1400803792032066,0.1528966075001064,0.1649889516327031,0.1768778198107445,0.1908692704241419,0.2047397257313291,0.2179647354069117,0.2294399720368327,0.2397933384632296,0.2510591228361263,0.2621087700141505,0.2720430469899684,0.2816278885274885,0.2909128360053555,0.2997227356746765,0.3077579056808757,0.3154321133691358,0.322098051193599,0.3296429828714325,0.3359448139935945,0.3414216207427049,0.3476180781758957,0.3533717691261255,0.3593170693090208,0.3601066264573628,0.3619637815878262,0.3637453458196998,0.3648584051568045,0.3657984482270771,0.3658345495045702,0.3669469568120042,0.3678616227635835,0.3697336104288683,0.371036092655773,0.3714350427511749,0.3734402674680093,0.3746909275343942,0.3762015696740777,0.3762765312310491,0.3775209309673003,0.3787337100680429,0.3796367112810707,0.3822838847385272,0.3868314408377803,0.3892356776251907,0.3904091032240585,0.3920421675130166,0.3954212739448684,0.396078431372549,0.3963974854932302,0.3975544756231384,0.3932607785684386,0.3904734740444952,0.3893735130848533,0.0,2.3949410997774305,59.69596920009135,220.59391375684223,341.54798179537426,fqhc2_80Compliance_baseline_low_initial_treat_cost,15 -100000,95731,40437,378.780123470976,7465,76.86120483437968,5837,60.356624290982026,2372,24.370371144143487,77.31652017658898,79.67606761343121,63.31665033110207,65.06200874432601,77.02622852767512,79.3862976116332,63.21069491578322,64.95897961900712,0.2902916489138647,289.7700017980185,0.1059554153188457,103.02912531888352,65.9714,46.22498075023904,68913.30916839895,48286.32391831177,196.65792,116.22883129576998,204779.3609175711,120763.93995970166,240.32901,114.14235862440604,246537.54792073625,115869.89555574964,3856.42117,1722.240344348299,3993630.474976758,1764292.2622961437,1430.01054,614.3436659958468,1482843.1751470263,630829.3237881672,2339.94988,965.7420694711446,2408251.120326749,979231.8460018162,0.37875,100000,0,299870,3132.4231440181343,0,0.0,0,0.0,16286,169.4644368073038,0,0.0,22617,231.8893566347369,2180278,0,78289,0,0,2595,0,0,35,0.3551618597946329,0,0.0,0,0.0,0,0.0,0.07465,0.1970957095709571,0.3177494976557267,0.02372,0.3064045656309448,0.6935954343690551,25.64117659941433,4.580381242662151,0.3366455370909714,0.1944492033578893,0.2319684769573411,0.2369367825937982,11.153784564304525,5.55886779026678,25.19262447177089,13167.513904394904,65.7626116882226,13.222109598446682,22.484664542490624,14.98725938000701,15.068578167278288,0.5403460681857118,0.760352422907489,0.6880407124681934,0.5709010339734121,0.1200289226319595,0.7084507042253522,0.902439024390244,0.8563432835820896,0.7310344827586207,0.1466165413533834,0.4863029205342993,0.7026022304832714,0.6249125262421273,0.5272556390977443,0.1136974037600716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021778547624112,0.0046329619529404,0.0069931489469677,0.0094191044230163,0.0115152994791666,0.0136170126087222,0.015777181728249,0.0175546092337857,0.0196627777380136,0.0216129329497404,0.0237477569853883,0.0258556070112027,0.028145405933467,0.0302128492137862,0.0321522512764969,0.0343448746164099,0.0363338992174237,0.0383486333696385,0.0406232783442999,0.0427150075532635,0.0578936927719019,0.0715638570606393,0.0841687990268048,0.0973111664931596,0.1095247635416556,0.1248413571368136,0.1381274663724699,0.1511916293229161,0.1636967715744717,0.1750557844146927,0.1885804762981872,0.2018764609124751,0.214578553019346,0.2261718621866013,0.2378016558041219,0.2492711855013024,0.2598954610436025,0.27086920799991,0.2810481261566058,0.289602768927499,0.2984462917081529,0.3068919915269114,0.3148325812220919,0.3219248769950798,0.3281850464561949,0.3344442798597739,0.3408606731998295,0.3467567223142602,0.3528992364631,0.3578895893633612,0.3589007106544223,0.3600104886901558,0.3611881188118812,0.3618845858061146,0.3630289200113353,0.3640696101340548,0.3649633877090713,0.3655578655578655,0.366623722408314,0.3675534783390257,0.3693880630800573,0.3704109043876231,0.3717228859712078,0.3729890496147087,0.3729466492222706,0.373689177852349,0.3732705666226534,0.3762651821862348,0.3756755802041753,0.3774988005757236,0.3784652102074536,0.3789270178830353,0.3829692376281765,0.3823101096037403,0.3842500237484563,0.3823387291616332,0.3824856120703064,0.3897361912613355,0.3954468802698145,0.392618767177071,0.0,2.3268389257203146,62.9141733483938,218.46278856591476,340.4950999389484,fqhc2_80Compliance_baseline_low_initial_treat_cost,16 -100000,95679,40704,380.4387587662914,7613,78.43936495991805,5915,61.24645951567219,2390,24.59264833453527,77.40264542862671,79.7845018433529,63.35728834693722,65.11251791811408,77.11521111364695,79.49608113421435,63.25386046592672,65.01162501273699,0.2874343149797624,288.4207091385491,0.1034278810104964,100.89290537709417,65.4126,45.80591139976564,68366.49630535436,47874.36178441001,196.08058,114.82139677705518,204367.4264990228,119439.48368833469,235.46831,110.75749983530348,242803.8441037218,113142.68150053528,3924.85697,1729.8621017740063,4065062.918717796,1771048.5825475836,1418.97466,605.5637978099686,1470229.4442876703,620129.4819063519,2357.99656,963.0863045873472,2428206.482091159,975290.1299093576,0.38111,100000,0,297330,3107.568013879744,0,0.0,0,0.0,16185,168.5531830391204,0,0.0,22179,228.54544884457405,2191157,0,78503,0,0,2575,0,0,30,0.3030968133028146,0,0.0,1,0.0104516142518211,0,0.0,0.07613,0.1997585998792999,0.3139366872455011,0.0239,0.3130608175473579,0.6869391824526421,25.731443505214017,4.595310578462444,0.3273034657650042,0.1989856297548605,0.2349957734573119,0.2387151310228233,10.88453542259505,5.356489826596395,25.212286787922256,13269.61425412378,65.92330496074706,13.699976379838915,21.434605088279778,15.43100014450959,15.357723348118787,0.5320371935756552,0.7493627867459643,0.6730371900826446,0.5798561151079137,0.1104815864022662,0.7041942604856513,0.913649025069638,0.8581235697940504,0.7138263665594855,0.1269841269841269,0.480684811237928,0.6772616136919315,0.619079386257505,0.541241890639481,0.1068965517241379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392168180575,0.0046824166134573,0.0068370866301481,0.0091811137178432,0.0112465807750582,0.0134105859112477,0.0154454718770071,0.017452363213276,0.0197232611850307,0.0218492554878984,0.024160234529557,0.0265484000123194,0.0287068548926063,0.0308557421959483,0.0332029839350385,0.0355647886887228,0.0377530416774527,0.0401490152128344,0.0420068434025647,0.0441285292922134,0.0586901789538564,0.0731704763201156,0.0867858791923771,0.099396196246739,0.1112130704890885,0.1260315713741588,0.1393870577498567,0.1521306379671914,0.1641822941710744,0.1763911080608666,0.190592593390263,0.2038546029066432,0.2161762467105978,0.2283968163729391,0.2393026069739302,0.2511153177687003,0.2622062692290542,0.27222790128172,0.2823858552221731,0.2909063886221246,0.2988488494267339,0.3069355459860658,0.31540287438444,0.3227492971226894,0.3303258510083555,0.3372181746578714,0.3435120231083768,0.3496245855195456,0.3551231495248562,0.3607108043312169,0.3618582893091906,0.363266875377602,0.3644335764576921,0.3652512436017591,0.3661033546491787,0.3671139809955167,0.3673482316793107,0.3686511719648904,0.3692157901030012,0.3704332291201429,0.3716119828815977,0.3722087306758277,0.3719016915089599,0.3741519446496943,0.3745958206650258,0.3761686526122823,0.3764513632063301,0.3764962258787859,0.3777447756444256,0.3799456478299097,0.3803483615974999,0.3840322580645161,0.3849532174909299,0.3855727126065914,0.3847546450690805,0.3881273095720586,0.3909062693978895,0.3967280163599182,0.3945691327237461,0.3880998080614203,0.0,2.222469931534764,60.09014076495979,220.01852117030103,353.7041062382329,fqhc2_80Compliance_baseline_low_initial_treat_cost,17 -100000,95722,40976,383.5168508806753,7525,77.35943670211655,5859,60.571237542048856,2349,24.153277198554147,77.33907921770925,79.70585295870681,63.32552877917672,65.07553999435027,77.04929061694877,79.41591827018523,63.219505858486976,64.97197818226789,0.2897886007604882,289.93468852158344,0.1060229206897389,103.56181208237558,66.5016,46.59831877501978,69473.68421052632,48680.88712628213,196.17201,115.83599402928958,204324.35594743112,120397.96914950544,241.9513,115.01858567714844,248811.85098514447,117095.2081148229,3911.7545,1745.6960340307996,4049938.6556904367,1787074.8772808746,1434.186,617.8623137625142,1480497.1375441384,627755.5879159836,2318.93884,964.9072159539436,2387118.17555003,977920.5772484732,0.38329,100000,0,302280,3157.894736842105,0,0.0,0,0.0,16212,168.69685129855208,0,0.0,22801,234.146800108648,2179614,0,78173,0,0,2624,0,0,38,0.3969829297340214,0,0.0,0,0.0,0,0.0,0.07525,0.196326541261186,0.3121594684385382,0.02349,0.3129559748427672,0.6870440251572327,25.487817756505528,4.617020169437671,0.3275302952722307,0.1940604198668714,0.2386072708653353,0.2398020139955624,11.197250631512553,5.589345853756667,25.199525122194373,13362.493782867548,65.80223290561547,13.319445507645405,21.659253714280723,15.463438662735468,15.360095020953882,0.53899982932241,0.7607739665787159,0.6868160500260553,0.586552217453505,0.1103202846975089,0.7058011049723757,0.9297297297297298,0.8445807770961146,0.7210031347962382,0.1296296296296296,0.4842439356155067,0.6792698826597132,0.6328671328671329,0.5468025949953661,0.105726872246696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0046437117248651,0.0070643403063244,0.0094395220289383,0.0115459345086111,0.0138915764495004,0.0160097894253811,0.0182543976967605,0.0204298656414241,0.0224810012495135,0.0247879639410503,0.0270123147396855,0.0294035975440436,0.0314125877007716,0.0338776605627696,0.0358730946619511,0.0379674712524603,0.0398713158987131,0.0419279363593823,0.0437559252815485,0.0591281649699817,0.0730615106144783,0.0868370834818713,0.0998874833065186,0.1120813296211929,0.1270138470163858,0.1405805712345626,0.1536577835035082,0.1657867738212285,0.177057624208606,0.1909452425342975,0.2050854432435944,0.2176945508356546,0.2292439512819671,0.2410675944990696,0.2531813949363721,0.2639242485148957,0.2744831001609508,0.2842077780552591,0.2932842749561569,0.3019309131320615,0.3096996150110582,0.317585953952817,0.3256499341080627,0.3325927274934742,0.3390289541067559,0.3445598769830851,0.3510470671952831,0.3570403135063826,0.362154032875122,0.3633696676086664,0.3645074688511048,0.3651759127280938,0.3663855561351649,0.3676871508379888,0.3686902037870295,0.3696801333439162,0.3699986816953398,0.3706769241336676,0.3715599626356255,0.3728034654863923,0.3750918661237462,0.3759520302966547,0.3765801430563678,0.3788884330429326,0.3806323387117864,0.3813087864189034,0.3836903895446346,0.3865644215138879,0.3886487351905219,0.3884776311554554,0.3907056798623063,0.3918849840255591,0.3918626237623762,0.3952981325244099,0.3911266081519778,0.3964459820726529,0.4001662164969873,0.394505805720759,0.3944160440424695,0.0,2.442738377208834,63.81592141103609,212.17756009641707,345.3423153719417,fqhc2_80Compliance_baseline_low_initial_treat_cost,18 -100000,95693,40551,379.9964469710428,7485,77.03802785992706,5895,61.09119789326283,2384,24.59950048592896,77.30793472821749,79.68258829310574,63.31631099018998,65.06962415913233,77.02128250361811,79.39205633518527,63.21296655741877,64.96659649083679,0.2866522245993792,290.5319579204644,0.103344432771216,103.02766829553887,66.1001,46.28606218290702,69075.16746261482,48369.32919117074,196.52559,115.4882116761933,204864.0861923025,120179.33566320762,244.15108,115.5998231628761,251423.3538503339,117996.89004207212,3895.21681,1736.3673764480395,4039719.070360424,1783703.025767861,1493.18909,641.9002777491064,1547121.9315937427,657517.8725184773,2352.6192,963.7131632765918,2429638.740555736,983546.4047956296,0.37941,100000,0,300455,3139.7803392097644,0,0.0,0,0.0,16180,168.549423677803,0,0.0,22998,236.5794781227467,2180819,0,78372,0,0,2679,0,0,35,0.3657529808867942,0,0.0,1,0.0104500851681941,0,0.0,0.07485,0.1972799873487783,0.318503674014696,0.02384,0.3117408906882591,0.6882591093117408,25.71841169906184,4.561134038604032,0.3190839694656489,0.2047497879558948,0.240373197625106,0.2357930449533503,11.179065747293835,5.655122577402738,25.252494968707293,13230.320614408152,66.40338409931363,14.205082922818988,21.261418709330776,15.67193144322922,15.264951023934652,0.5572519083969466,0.7754763877381938,0.7070707070707071,0.5935074100211715,0.1280575539568345,0.7263157894736842,0.925925925925926,0.8682008368200836,0.738255033557047,0.1845018450184501,0.5033557046979866,0.706875753920386,0.6521739130434783,0.5549597855227882,0.1143878462913315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0045296096631672,0.0067560027997849,0.0092833346875761,0.0114107883817427,0.0137978086432324,0.0158456628361085,0.0180091883614088,0.0200269888977488,0.0222538411931498,0.0245110099643252,0.0267248459958932,0.0288984645762415,0.0309979293506814,0.0329587551207834,0.0350552551869579,0.0370819346015168,0.0389929924733973,0.0410772239327619,0.042915368017262,0.0571762813482488,0.0713089531305603,0.0845162034851393,0.0972918967239838,0.1095110586350123,0.1248651735295983,0.1386743613680726,0.1522331502533316,0.1650499957268609,0.1767961727415098,0.1910936406224759,0.204251636284957,0.2172362426469788,0.2291771446065032,0.2400998811985744,0.2508500858392867,0.2616069535721857,0.271496877988412,0.2809042317774827,0.2895176996219498,0.2980593316504944,0.3068733547821,0.3149238001634122,0.3224606374807988,0.3290789633775398,0.335419675814476,0.3412351996789083,0.3478771177791386,0.3541306804161201,0.3590863374093483,0.3603326313515848,0.3615564116371871,0.3630258991178466,0.3644199376042951,0.3654095840733057,0.3653050870908727,0.3654249904568011,0.3667569710585436,0.368150390423446,0.3695093688805849,0.371259292803502,0.3721583550835807,0.3727157628191601,0.3732250151900443,0.3740635682595097,0.373874111140374,0.3755035101852917,0.3757190529159383,0.3770380918476326,0.3777296082209377,0.3800110844263809,0.3827406251681282,0.3841436146425605,0.3887902416428626,0.3922315308453922,0.3946295852313594,0.3980999080600674,0.395240032546786,0.3990687482881402,0.4003831417624521,0.0,1.944288080047476,63.27039716214969,225.32980667940143,340.21916307808635,fqhc2_80Compliance_baseline_low_initial_treat_cost,19 -100000,95710,40655,380.7648103646432,7581,78.10051196322225,5870,60.79824469752377,2340,24.062271444990078,77.38171245272493,79.75509947371397,63.34258245905804,65.09468820615568,77.0900230011911,79.4628224615111,63.23638345578468,64.99095468701606,0.2916894515338271,292.2770122028737,0.1061990032733604,103.7335191396238,65.14926,45.6743430671828,68069.43893010134,47721.59969405789,197.62107,116.6235549730664,205884.7664820813,121258.0400043716,244.21379,115.50100656820882,252297.69094138543,118399.76289843024,3859.0122,1721.6700632472196,3997014.6275206353,1764201.3203396706,1428.3742,620.1599191631635,1474778.403510605,630570.4774567173,2309.05576,961.0823934550496,2376776.031762616,973542.2409812538,0.37952,100000,0,296133,3094.0654059136978,0,0.0,0,0.0,16230,169.02100094034063,0,0.0,22935,236.70462856545817,2186527,0,78406,0,0,2551,0,0,49,0.5015149932086511,0,0.0,0,0.0,0,0.0,0.07581,0.1997523187183811,0.3086664028492283,0.0234,0.302591847005536,0.697408152994464,25.63847325591008,4.617673443201336,0.3441226575809199,0.1884156729131175,0.2374787052810903,0.2299829642248722,10.93764690985437,5.382314088367278,24.92305550781084,13203.615875719464,65.79232777977526,12.835967499587866,22.66143223499707,15.497639761810758,14.797288283379562,0.5412265758091993,0.7386980108499096,0.693069306930693,0.5803443328550932,0.1118518518518518,0.7104499274310595,0.923529411764706,0.8828633405639913,0.7508417508417509,0.125,0.4893143365983971,0.6566579634464752,0.6369467607440668,0.5341841385597083,0.108411214953271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020154756117322,0.0043082038337945,0.0064435604984373,0.0085935436686102,0.0109038387208332,0.0131975560081466,0.0155289319398419,0.0179264159418514,0.0202304161597988,0.0223666700788207,0.0245327701629025,0.026673237441094,0.0288969786717673,0.0310980634528224,0.0330433526309814,0.0350802824619265,0.037170139608103,0.0391615648023243,0.0412575921457692,0.0431225836034139,0.0576489263931823,0.0717441373534338,0.0851240189700759,0.0980338526599269,0.1100691953925994,0.1256107104333664,0.138743594368349,0.1525981284532592,0.1647758834337478,0.1763652160854688,0.1908625612844135,0.2048453619407428,0.2171439758970622,0.2289275172187602,0.2397289656917204,0.2513506930605376,0.2619557458957887,0.2721659224600434,0.28138611615245,0.2910587911962073,0.2998761846353232,0.3075492878692205,0.3148143763613978,0.3216327998561409,0.3279337959193593,0.3346608633466086,0.3401632162615465,0.3462268356365026,0.352113041223749,0.3572871687200412,0.3591719084627507,0.3603710227898271,0.3613428796933138,0.3627356106015743,0.3637159735209428,0.3637823945170272,0.3636651519229856,0.3656323329121609,0.3663344369730689,0.367816091954023,0.3691693081006058,0.3700015836566632,0.3706728654897279,0.3717374759367865,0.371831936012335,0.3739214306196397,0.3749037501782404,0.3773905385002516,0.3765288907633909,0.3768693918245264,0.3756070741317694,0.3734197557317334,0.3746489660454429,0.3761864341384366,0.378296049500238,0.3756766510285095,0.3753874767513949,0.3692783505154639,0.3721191680719505,0.3670338316286388,0.0,2.053766936772377,60.97824767114682,222.64318648299405,344.9748639459469,fqhc2_80Compliance_baseline_low_initial_treat_cost,20 -100000,95852,40920,383.50790802487165,7616,78.16216667362183,5885,60.76033885573592,2415,24.78821516504611,77.44506122741345,79.72213541748148,63.40474875222951,65.08364531993234,77.15413804710548,79.43218496437775,63.299038328261496,64.98143749309286,0.2909231803079706,289.950453103728,0.1057104239680128,102.20782683948926,65.79936,46.13002512511319,68646.83053040103,48126.30422433877,199.58322,118.50172238460428,207595.69962024788,123005.39621980168,247.42861,118.2036085673033,253713.20368902056,119933.52762156753,3918.46945,1749.9599255571547,4049880.7849601465,1787528.904516498,1436.08531,621.0848385079572,1480464.852063598,630204.4281644013,2378.30828,972.634573030214,2443694.0908901226,982026.0083621846,0.38166,100000,0,299088,3120.3104786545923,0,0.0,0,0.0,16508,171.556149063139,0,0.0,23235,238.09623169052287,2182509,0,78399,0,0,2605,0,0,38,0.3860117681425531,0,0.0,0,0.0,0,0.0,0.07616,0.199549337106325,0.3170955882352941,0.02415,0.3201798201798201,0.6798201798201798,25.31659649996096,4.553482747059797,0.3320305862361937,0.1918436703483432,0.2395921835174171,0.2365335598980459,11.234608779506637,5.700732522426641,25.46518853203664,13255.81624857501,66.00905909716664,13.150884226514195,22.045730157519863,15.69108428690699,15.121360426225593,0.545964316057774,0.7723649247121346,0.6908904810644831,0.5758865248226951,0.1285919540229885,0.7214386459802539,0.904494382022472,0.8987603305785123,0.7269736842105263,0.1642335766423357,0.4902619207521826,0.7115135834411385,0.6224489795918368,0.5343580470162749,0.1198568872987477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0045482632522614,0.006905082992811,0.0090942308473062,0.0112585607738736,0.0132667283881535,0.0156033569624378,0.0178857311837825,0.0198000592265825,0.021881390593047,0.0240323571574851,0.0263165991487616,0.0285626251733169,0.0305293258450081,0.0324126065051874,0.0345268938181893,0.0365992388516588,0.0386616098814556,0.0406644173371398,0.0424843402076873,0.0569864442127215,0.0706345723897281,0.0843498382317526,0.0972579308028921,0.1094872847027135,0.1253285203128463,0.1391539153915391,0.15200067999745,0.1640524199997867,0.1758221765606104,0.1899255215106344,0.2042458076428857,0.2173554347000141,0.2289276317944127,0.2397803404722679,0.2509708469325662,0.2611743986445817,0.271216343776689,0.2815355660869368,0.2903635552198839,0.2991673412744304,0.3078551545065381,0.3162828129808033,0.3229862757778257,0.3300590106607737,0.3368116299125293,0.3432430062264316,0.3492944832153227,0.3553029026277921,0.3611309193671922,0.3626098205142025,0.3637589804288585,0.364484928691098,0.3657772839434912,0.3669114919504414,0.3673800061143381,0.3681058187679762,0.369165464796119,0.3706618412741767,0.3716762078005457,0.3730593264831621,0.3741236582564265,0.3746483013480032,0.3750083992205523,0.3749458066380847,0.3760967202841028,0.3763796594700966,0.3784115591651714,0.378393546124167,0.3800031829394446,0.3839093120381844,0.3851855830692378,0.3885354370785087,0.3927103528499418,0.3954358040080544,0.3933470923880053,0.3961611076148521,0.3980602993885726,0.4009661835748792,0.398,0.0,2.4816665003450398,62.27300420484169,224.28528880758472,337.931899896743,fqhc2_80Compliance_baseline_low_initial_treat_cost,21 -100000,95686,40437,378.10128963484726,7618,78.32911815730618,5942,61.534602763204646,2381,24.51769328846435,77.29747507811412,79.70090286136447,63.28577397120039,65.06586684400675,77.00688917494335,79.4089366490691,63.18019875228309,64.96219157299042,0.2905859031707649,291.9662122953639,0.105575218917302,103.67527101632844,65.74656,46.06636292384008,68710.74138327446,48143.2633027194,196.7793,115.46522979209068,205096.5658508037,120123.83980967646,239.28121,112.8570220093647,246483.4040507493,115198.59161976948,3947.00713,1749.387204226981,4088129.956315449,1792070.900369106,1455.44637,619.8823183563752,1506274.2825491712,633100.0470205221,2362.88762,970.9714461293606,2434312.940242042,985837.3701931172,0.37881,100000,0,298848,3123.2155174215663,0,0.0,0,0.0,16276,169.51278138912693,0,0.0,22523,231.87300127500365,2180725,0,78235,0,0,2566,0,0,40,0.4075831365089981,0,0.0,2,0.0209016993081537,0,0.0,0.07618,0.2011034555581954,0.3125492255185088,0.02381,0.3138640873015873,0.6861359126984127,25.69450046939778,4.56994941508895,0.3187478963312016,0.2049814877145742,0.2346011443958263,0.2416694715583978,10.956825317299424,5.359775005724458,25.07455498227193,13280.971411521314,66.3863237021273,14.137968350686837,21.27782557558495,15.312803547768372,15.657726228087135,0.5373611578593066,0.7602627257799671,0.691129883843717,0.56025824964132,0.123259052924791,0.7019579405366208,0.9226519337016574,0.8448275862068966,0.7378277153558053,0.1573426573426573,0.487617795310103,0.6915887850467289,0.6412587412587413,0.518189884649512,0.1147826086956521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.004594972917047,0.0069343621503629,0.009155573620567,0.0113423665364583,0.0135468231171952,0.0159418220390844,0.0182798553951103,0.0204035713920451,0.0227237816305004,0.0247607520539936,0.0269770499886996,0.029392399333347,0.0314393471002844,0.0336905794407962,0.0357793040671935,0.0378627694859038,0.039862107634959,0.041770268723796,0.0437501302707547,0.0585390312437977,0.0725875677825932,0.0860554675285155,0.0982190757708046,0.1101722628353217,0.1258093867704939,0.139701511548913,0.1524059045306409,0.1646706586826347,0.1755150682284229,0.1892133813601363,0.2021570646577421,0.2158417567096549,0.2278145405144835,0.2393094553031054,0.2514146233218684,0.2623537170129768,0.2726310097778578,0.2821494721770848,0.2909916417294397,0.2995387966997311,0.3077562975981253,0.3157819888363494,0.3229049071649893,0.3297421663866773,0.335724958938958,0.3420917311527222,0.3480130675582553,0.3542841549936329,0.3603400783981354,0.362026787765749,0.3636753022452504,0.3653394459065568,0.3662366309190381,0.3674618903574781,0.3677543186180422,0.3685579683707945,0.3698753986257684,0.3715774190793406,0.3723812755621439,0.3727940349956911,0.3735716262702147,0.3746039074140138,0.376052301629948,0.3762564782451488,0.3774611060269316,0.3787224304145092,0.3807763984964781,0.3832356472000565,0.3868143291220214,0.3867811868454896,0.3863368669022379,0.3856724774144293,0.3868714011516315,0.387425092742319,0.3857776711835951,0.3869761645116061,0.3900884227842895,0.3957115009746588,0.4048080651415277,0.0,2.1464498310600915,60.92555647958682,224.5105185825057,350.6281292994601,fqhc2_80Compliance_baseline_low_initial_treat_cost,22 -100000,95849,40731,381.3811307368882,7632,78.64453463259919,5891,61.08566599547204,2371,24.538597168462893,77.32864418348662,79.63934652951825,63.32870225298407,65.03844910630158,77.04253317547703,79.34804398877138,63.22525707839591,64.93463901205713,0.2861110080095841,291.30254074686945,0.1034451745881597,103.81009424445152,66.29326,46.433654104435256,69164.26879779654,48444.588993557845,197.79711,116.7245454321644,206005.15394005156,121421.5228454803,239.62074,112.6729923221339,247482.16465482165,115639.45987935038,3882.98265,1728.0502628991458,4027791.714050225,1779534.1557023516,1433.16292,618.8342425187135,1483196.423541195,633601.0417622653,2328.72238,956.6717805288192,2410594.0176736326,981574.0492008278,0.38139,100000,0,301333,3143.830399899842,0,0.0,0,0.0,16292,169.60010015753946,0,0.0,22627,233.58616156663084,2177710,0,78298,0,0,2660,0,0,50,0.511220774342977,0,0.0,1,0.0104330770274076,0,0.0,0.07632,0.2001101234956344,0.3106656184486373,0.02371,0.3114549538307961,0.6885450461692039,25.55485186930377,4.5936879542449205,0.3337294177558988,0.1980987947716856,0.2410456628755729,0.2271261245968426,11.243496650509064,5.619490377561528,25.19229805178042,13304.072317327897,66.26614450435014,13.508217673486792,22.16844324432613,15.865234327736214,14.724249258801011,0.543201493804108,0.7617823479005998,0.6856561546286877,0.5690140845070423,0.1158445440956651,0.6926345609065155,0.916923076923077,0.8435517970401691,0.7079646017699115,0.149090909090909,0.4960928778745255,0.7019002375296912,0.6356329537843268,0.5254394079555966,0.1072436500470366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686990428925,0.0044297125248347,0.0067468168213869,0.0088269949618072,0.0109517998779743,0.0130217878232539,0.0152583834471511,0.0171961586741098,0.0195495329777014,0.0217649346131019,0.0238836861411094,0.025963630392841,0.028034982067066,0.0302241072255793,0.0324722866718226,0.0342244994938121,0.0366530071608924,0.0389001783270435,0.0410054009140008,0.042723478659076,0.0574989570296203,0.0718669301299543,0.0854504674464428,0.0984175020490511,0.1106180699017665,0.1260583254938852,0.1399245026933027,0.1531889085143963,0.1655346959697571,0.1777463308997738,0.1919390963518111,0.2056277992946318,0.2181397068418076,0.230281566981462,0.2405219266398222,0.2520962793119108,0.2632636655948553,0.272815293508365,0.2829760174418604,0.2923738532110091,0.3004857576776377,0.3082894567116573,0.3161494075463633,0.3241970175796974,0.3313245678110543,0.3383990518752623,0.3444763613100688,0.350563861815584,0.3564321712474671,0.3614740102450065,0.3627354350907986,0.3642779212528829,0.3656268576442947,0.3665286554804968,0.3681892162279195,0.3689087271048176,0.3702089067795261,0.3715736207948046,0.3722412611377655,0.372733618514077,0.374228627332932,0.3749528329990269,0.3753393522318328,0.3756597120848025,0.3757587482769461,0.3764619306683487,0.377479646829492,0.3797180249099071,0.3805213103205354,0.3823880834793691,0.3841499747903011,0.3870501285347044,0.3865038478661833,0.3861569292431016,0.3850837138508371,0.3874788494077834,0.3908401671050596,0.3860694472981302,0.3925389755011136,0.3976377952755905,0.0,1.4894168378619137,63.52120941935217,220.896317348353,345.5646157782105,fqhc2_80Compliance_baseline_low_initial_treat_cost,23 -100000,95739,40874,381.6522002527705,7645,78.48421228548449,5898,60.94694951900479,2386,24.49367551363603,77.35098256499538,79.6998389202427,63.33757887846742,65.07119893789489,77.05468867439106,79.40365170595273,63.22812234802496,64.96481276665696,0.2962938906043177,296.1872142899722,0.1094565304424648,106.38617123792926,65.50126,45.90669092702039,68416.48648930948,47949.83332499859,197.58369,116.0877060897685,205722.76710640383,120601.05534008393,239.49695,113.07731393470937,246241.87635133017,115049.76931376976,3925.18163,1740.5060761120135,4058466.3512257286,1777198.335264111,1422.28748,610.135813181314,1469413.5932065304,621341.3106739455,2362.10644,983.654605108359,2427859.973469537,993938.2018568526,0.38186,100000,0,297733,3109.8402949686124,0,0.0,0,0.0,16252,169.06380889710567,0,0.0,22493,231.0657098987873,2184968,0,78387,0,0,2528,0,0,36,0.3760223106570989,0,0.0,0,0.0,0,0.0,0.07645,0.2002042633425862,0.3120994113799869,0.02386,0.3116786511281924,0.6883213488718076,25.76091211852676,4.61894458825091,0.3345201763309596,0.1922685656154628,0.2309257375381485,0.2422855205154289,11.01329293851212,5.425912388604826,25.38592885011654,13356.548635681527,65.94857810809476,13.090320589406442,22.05291879664411,15.129914090857255,15.67542463118698,0.5350966429298067,0.7451499118165785,0.696908261530664,0.5675477239353891,0.1140657802659202,0.6879942487419123,0.9233038348082596,0.862144420131291,0.7133333333333334,0.1220338983050847,0.4879076991346794,0.6691823899371069,0.6470976253298153,0.5263653483992468,0.1119929453262786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0045813441988222,0.006879547045752,0.0091411391890793,0.0116318085225366,0.0138245564027649,0.0160650757892376,0.0183092985517895,0.0206157116866657,0.0231301428746878,0.0251760581427531,0.0273868547203317,0.0296615397269287,0.0318405091186192,0.0339093206788053,0.0360306353422703,0.0383018379497799,0.0403146305270476,0.0422749012268662,0.0443293813681161,0.059002839485552,0.0725427629858241,0.0854410469359506,0.0981546711529362,0.1103859819291716,0.1263783315184641,0.1401086080352976,0.152958705832269,0.1656909040405119,0.1774430605173098,0.1917396503247907,0.2051393068213798,0.2176727185701698,0.2292952506018822,0.2404051524826599,0.2513137180993769,0.2616433000055856,0.2720888618791992,0.2824803596566913,0.2916399082568807,0.3003959891624018,0.3092386404879819,0.3173941861566139,0.3258115929871655,0.3330782963529712,0.3403757314444102,0.3459771984932484,0.3517156238863717,0.3571252641267289,0.3627242322894496,0.3649199535649685,0.3665033469049755,0.3673965592796256,0.3687937088302719,0.3695717012646146,0.3692302961345675,0.3694130745983776,0.3704468148343846,0.3717567869224032,0.3732432238634734,0.3743885000376307,0.3759846034800896,0.3773922563530328,0.378947841322611,0.3791196851534394,0.3805989719920277,0.3810532947678914,0.3828312871788381,0.3832987003838974,0.3825805936801787,0.3833233903905282,0.3858651938441739,0.3914785373608903,0.3921658986175115,0.3889626398634553,0.3839328537170264,0.3804671578617338,0.3857701007608472,0.3839485458612975,0.3807303807303807,0.0,2.563809288907319,61.350323715109695,216.41640139543813,351.8847388091655,fqhc2_80Compliance_baseline_low_initial_treat_cost,24 -100000,95844,40963,382.548725011477,7563,77.6783105880389,5898,60.97408288468762,2385,24.47727557280581,77.51248185563044,79.79904122490812,63.42745123530996,65.11121792823161,77.22183695405602,79.50734966992532,63.322625787497095,65.00838210697036,0.2906449015744243,291.69155498280475,0.104825447812864,102.83582126125168,65.50918,45.88956728798071,68349.79758774675,47879.43667624547,197.25489,115.76184274540078,205254.67426234297,120227.91488815236,241.39704,113.96915115392426,248366.81482408915,116182.79695806988,3913.1006,1734.589795549966,4048099.2341721966,1775123.5607340753,1469.66715,633.8071899693501,1519376.434622929,647271.8062365405,2355.4546,965.1205899145108,2421315.3666374525,977559.4742022648,0.38346,100000,0,297769,3106.808981261217,0,0.0,0,0.0,16256,169.02466508075625,0,0.0,22721,233.62964817828973,2192032,0,78577,0,0,2503,0,0,32,0.3234422603397187,0,0.0,0,0.0,0,0.0,0.07563,0.1972304803630105,0.3153510511701706,0.02385,0.3006519558676028,0.6993480441323972,25.927668543650373,4.631696700181722,0.3263818243472363,0.1976941336046117,0.2353340115293319,0.2405900305188199,11.174630419602751,5.548096831969117,25.030948094220587,13394.920257140184,65.63706192896258,13.36440625901238,21.618508119133303,15.220138402497534,15.43400914831936,0.5359443879281113,0.7367066895368782,0.6862337662337662,0.5814121037463977,0.1226215644820296,0.7048327137546468,0.9088050314465408,0.864406779661017,0.7328767123287672,0.1406844106463878,0.486053151768065,0.6721698113207547,0.6283551273227804,0.541058394160584,0.1185121107266436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025094610729969,0.0050434976352275,0.0074499032019379,0.0097512962831427,0.0120685101282025,0.0144411674972032,0.0163914397996375,0.018600097895252,0.0209735227145088,0.0230596175478065,0.025037120475142,0.0273102995620917,0.0295924867964078,0.0317092750401383,0.0336910689800925,0.0359544294906886,0.0377893440672178,0.040039396609818,0.0419873892403419,0.0439838430947968,0.0583793930545416,0.0725099851529662,0.0852412636873264,0.0987396281903161,0.1115615457512898,0.1274346191220584,0.1409116440751613,0.1540825332014843,0.1665599590242653,0.1784333672431332,0.1920430107526881,0.2050719863479754,0.2183598584362854,0.2304551013277428,0.2419951888750975,0.2536493121599504,0.2649755467174671,0.2754588547165996,0.2846399528846807,0.2936087045968866,0.3025911996123583,0.3112356670084832,0.3185711252152985,0.3259264568848111,0.3331436320926065,0.3395918066426649,0.3465625623628018,0.351866872829586,0.357873685568673,0.3634022650235173,0.3641681312636677,0.3653100111036477,0.3667681259029638,0.3684756457724057,0.3700285879338182,0.3704614914425428,0.3707520141823765,0.3708766862506975,0.371607658280815,0.3734743839459624,0.3748710155531791,0.3761678543151227,0.3769211388259007,0.3781877616819291,0.379393968497887,0.3802128047035563,0.3800074025567292,0.3809986826422433,0.3812475920283002,0.3817579557553531,0.383712001445413,0.3867249184124645,0.3873631529558961,0.3885731605667955,0.3880834346646712,0.3891834570519618,0.3923685010641532,0.3963585434173669,0.3941305540318157,0.3986280487804878,0.0,2.2267343278193485,59.212273390858286,223.32983275540823,348.8406748785308,fqhc2_80Compliance_baseline_low_initial_treat_cost,25 -100000,95753,40672,381.5024072352824,7523,77.50148820402494,5823,60.39497456998736,2387,24.67807797144737,77.31288813594676,79.67268650795513,63.318020272784125,65.06270492526333,77.02505780146431,79.37990660784979,63.21415216257759,64.95895489930895,0.2878303344824502,292.7799001053444,0.1038681102065339,103.75002595438332,65.5842,45.953272460536986,68493.10204380019,47991.47019992793,194.42102,114.29213682612414,202639.09224776248,118956.19649110116,234.47254,110.31103825947324,242256.05464058567,113196.8664048558,3864.83169,1703.7594620658074,4008860.630998506,1751936.8500890925,1458.56377,623.3342941394459,1510984.4286863075,638711.0583874882,2353.19088,962.6248533096846,2433589.1303666728,983944.7715090088,0.38127,100000,0,298110,3113.322820172736,0,0.0,0,0.0,16071,167.3994548473677,0,0.0,22038,227.5646716029785,2186183,0,78497,0,0,2488,0,0,38,0.3968544066504443,0,0.0,0,0.0,0,0.0,0.07523,0.1973142392530228,0.3172936328592317,0.02387,0.3143073620406617,0.6856926379593383,25.350176289051195,4.651490073462087,0.3204533745492014,0.200755624248669,0.2404258973037953,0.2383651038983341,11.23543128016718,5.542345091107952,25.270863245753528,13271.616221904653,65.2688553875197,13.581897642092784,21.001112872609745,15.51118036443826,15.174664508378909,0.5423321312038468,0.7553464499572284,0.6827438370846731,0.5835714285714285,0.132564841498559,0.6810534016093636,0.887905604719764,0.8270509977827051,0.735593220338983,0.1418439716312056,0.4997755834829443,0.7012048192771084,0.6367491166077739,0.5429864253393665,0.1301989150090416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179910470133,0.0041557283167273,0.0064834261711259,0.0085117620769512,0.0108216962805504,0.0131873727087576,0.0154379524829203,0.0177537748466069,0.0199869139386999,0.0220151546180626,0.0241054034656003,0.026061776061776,0.0282725851571499,0.0304887469743008,0.0324876971804104,0.034570784844664,0.036448733613602,0.0383078950371976,0.0405444751783374,0.0424880183371535,0.056876787839559,0.0714083932326815,0.0847612256454352,0.0972347807801493,0.1095623200936303,0.1254693730762315,0.1392538041978819,0.1518999467802022,0.1644110704023756,0.1764516647900917,0.1906351274238525,0.203785011355034,0.2167980429464528,0.2296091340580502,0.2401782276252819,0.2518164901865225,0.2628642212277784,0.2736896578879276,0.2839752906976744,0.2931571831244127,0.3010997916184302,0.3092046783625731,0.3165000295805478,0.3238220836830116,0.3307686697782964,0.3370902902804153,0.3434794050199872,0.3497822377301785,0.355620971820575,0.360835516046247,0.3619064340122089,0.3629754300771173,0.3635348495342558,0.364653146487945,0.3651885792749362,0.3663363289425089,0.366505318132603,0.3669082564263426,0.3674440987917433,0.3692169378764722,0.3715854210685179,0.3730052794102998,0.375087001455297,0.375857647402875,0.3763508601889992,0.3771904474161259,0.3789207371417071,0.3817828840584322,0.3852304630583887,0.3871683200258085,0.3882396415538824,0.3879740385131148,0.3904044559782265,0.3920603169718418,0.3922072973230446,0.3940047961630695,0.3975377902446626,0.4017710049423393,0.4062588102621934,0.3946449359720605,0.0,1.621955678313126,61.26917413858675,218.0323749883024,344.7577166682147,fqhc2_80Compliance_baseline_low_initial_treat_cost,26 -100000,95790,41088,385.0610710930159,7668,79.05835682221526,6040,62.56394195636288,2400,24.772940808017538,77.37208356525132,79.71071742139763,63.35007434272507,65.07944132630308,77.07834387013078,79.41387681859977,63.24370131460674,64.97410216355053,0.2937396951205357,296.8406027978574,0.1063730281183339,105.33916275255706,66.33594,46.47665878104295,69251.42499217037,48519.32224766985,199.00338,116.7642219680872,207262.36559139783,121410.11911441378,246.06606,115.38804049742892,253895.678045725,118188.6508711332,3981.98602,1768.9352671629554,4125546.278317153,1815375.9990584904,1467.2763,628.2050034968346,1516848.2618227373,641177.7433210752,2378.75874,980.5657808885154,2456006.702160977,999169.8083058848,0.38396,100000,0,301527,3147.792045098653,0,0.0,0,0.0,16388,170.57104081845702,0,0.0,23185,239.0124230086648,2182553,0,78408,0,0,2611,0,0,36,0.3758221108675227,0,0.0,2,0.0208790061593068,0,0.0,0.07668,0.1997083029482237,0.3129890453834116,0.024,0.324140489735345,0.675859510264655,25.722105796890503,4.57374515567566,0.3342715231788079,0.2021523178807947,0.221523178807947,0.2420529801324503,10.830884657301045,5.281671410213444,25.41334476057745,13389.539929326687,68.02454092778191,14.266469545102172,22.9502629265914,14.780061026200164,16.027747429888176,0.5471854304635762,0.7886977886977887,0.6934125804853888,0.5769805680119582,0.1162790697674418,0.702683615819209,0.9299719887955182,0.8762886597938144,0.7060931899641577,0.1389830508474576,0.4995674740484429,0.7303240740740741,0.635593220338983,0.5429650613786591,0.1105398457583547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.0046125461254612,0.0067077997199163,0.0090409483853272,0.0113800467812468,0.0136321062062225,0.0159414528738443,0.0181949915300936,0.0204688521909744,0.0227509978507829,0.0250253635441325,0.0272375537515779,0.0293673228144112,0.0313117792421746,0.0333388330892816,0.0352323683177319,0.0373245559557818,0.0393956363033018,0.0410726902456257,0.0429966477189914,0.0581028905353229,0.0722936931283338,0.0858239074145901,0.0988105745387298,0.1117209557119379,0.1269742332843846,0.1414901395614992,0.1537660017862459,0.1660069351827154,0.1778625218257581,0.1929820786988231,0.2060594269161343,0.2183693207132999,0.2301814604285089,0.2417573957989662,0.2535880398671096,0.2642094577258174,0.2748766146893163,0.2851376937292382,0.2936865129808408,0.302305405499196,0.3109476589176294,0.3183554257470231,0.3255769391983329,0.3328598312389971,0.3398913431806142,0.346018464005211,0.3521311391953979,0.3582362082362082,0.3636699621177123,0.3654646044501878,0.3667785327208208,0.3687486766885454,0.3704352610697634,0.3719424139111792,0.3716592726770336,0.3716566929633804,0.3722752716496542,0.3731648264848807,0.3732946090822711,0.3741327768063625,0.3756051107054995,0.3767304860088365,0.3777832644999102,0.3779556114307819,0.3789164062294823,0.3796658986175115,0.3799007128309572,0.382223640360207,0.3850916693470569,0.3848490427098675,0.3884899796377666,0.3902361604875571,0.3892349096501346,0.3873856707317073,0.388184644821813,0.3935235158057055,0.3912782556511302,0.3913878222709819,0.3939625525410776,0.0,1.8942958157390812,63.02815045649864,233.1970166872632,353.63190750799606,fqhc2_80Compliance_baseline_low_initial_treat_cost,27 -100000,95656,40653,381.3665635192774,7445,76.63920715898637,5719,59.295809985782384,2303,23.720414819770845,77.25911226955019,79.65573080767015,63.27736057920528,65.04592512029389,76.98122271337698,79.37622725817022,63.17543343210393,64.9458583557746,0.2778895561732071,279.5035494999354,0.1019271471013496,100.06676451928342,65.34572,45.77686955467596,68313.2474701012,47855.72212373082,193.18079,114.33509582606254,201485.62557497705,119059.8793764222,237.79326,112.6162534493259,245917.05695408548,115654.27880423216,3774.25131,1693.7962688945008,3912808.020406456,1738108.70901039,1395.16795,603.2818497774748,1445294.9945638538,617447.1855163026,2274.53384,943.0181688830542,2344113.3436480723,956840.3239895056,0.38005,100000,0,297026,3105.147612277327,0,0.0,0,0.0,15957,166.31471104792172,0,0.0,22376,231.30802040645645,2180110,0,78297,0,0,2605,0,0,41,0.4077109642887011,0,0.0,0,0.0,0,0.0,0.07445,0.1958952769372451,0.3093351242444593,0.02303,0.3111480865224625,0.6888519134775375,25.84675854347574,4.533615082631467,0.3304773561811505,0.1986361251967127,0.237454100367197,0.2334324182549396,11.028468004430898,5.496855406013483,24.45360135822034,13291.494270895862,64.52372460045004,13.319183006765828,21.28741468153947,15.20501592623235,14.712110985912398,0.5499213149151949,0.7640845070422535,0.6968253968253968,0.5802650957290133,0.1288389513108614,0.7047272727272728,0.924924924924925,0.8540305010893247,0.7293729372937293,0.1714285714285714,0.5009208103130756,0.6973848069738481,0.6464011180992313,0.5374407582938389,0.1175355450236966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025019499002258,0.0046137154098094,0.0067596370501187,0.0090330840513737,0.0113637519711073,0.0136679363656733,0.015916552807064,0.0180181099870351,0.0203943938418131,0.0224476426392613,0.0246470570142612,0.0266554404411085,0.0286860375417845,0.030359221600684,0.0322397547962311,0.0344945249247758,0.0364979383792967,0.0385433859632732,0.0407339602230173,0.0426918265221017,0.057894076829829,0.0720480110601395,0.0856908827421082,0.0982888432580424,0.1101840801799613,0.1255666652544168,0.1391801310855455,0.1529191130243907,0.16528890267247,0.1769563676585874,0.1906282361063168,0.2038987495394751,0.2162859850341469,0.2284649939739235,0.2390295009649848,0.2505275315963661,0.2614942207203679,0.2718064406970842,0.2820565318773815,0.2906136146835384,0.2992988809954961,0.307585802288061,0.3158525728529883,0.323297689356123,0.3302269982801312,0.3371217274087631,0.3434991772700438,0.3498659517426273,0.3554129203263864,0.3607045891000596,0.3628082978579633,0.3636200320601404,0.364572270133254,0.3667166155054774,0.367819013726487,0.3683083841557321,0.3688441091267946,0.3707989435457247,0.3731189268208788,0.3741558908045977,0.3754167844023735,0.3764303877940241,0.3778915434205536,0.3791263006817366,0.3789359391965255,0.3800648298217179,0.3794257278499113,0.3812264777507195,0.3842131298141474,0.3854949624180393,0.3883357041251778,0.3916831471484312,0.3939355493529561,0.393760990901445,0.3974588235294117,0.397918909221385,0.4001543209876543,0.4009414654113794,0.3949152542372881,0.3948103792415169,0.0,1.912419648873753,61.21646551151417,219.1079337212706,331.43086733733605,fqhc2_80Compliance_baseline_low_initial_treat_cost,28 -100000,95615,40834,383.0779689379282,7525,77.49830047586676,5833,60.40893165298332,2369,24.34764419808608,77.28554750318864,79.71784127921349,63.27381344368565,65.07201076222782,76.99431340456947,79.42615257840724,63.16717124459604,64.9679851879208,0.2912340986191708,291.6887008062474,0.106642199089606,104.0255743070162,64.89274,45.46629231783231,67868.78627830361,47551.42218044481,195.94672,115.7432853121732,204313.95701511268,120432.31220224145,242.4617,114.5286045973278,250088.50075824925,117017.65162792202,3878.43866,1737.5970690622453,4017877.100873294,1778854.362874281,1450.75642,629.128935889629,1499525.5869894892,640292.9742687879,2348.78742,981.2061935780474,2416218.710453381,992021.0443718892,0.38112,100000,0,294967,3084.9448308319825,0,0.0,0,0.0,16169,168.47774930711708,0,0.0,22758,234.5761648276944,2183133,0,78351,0,0,2573,0,0,42,0.4288030120796946,0,0.0,0,0.0,0,0.0,0.07525,0.1974443744752309,0.3148172757475083,0.02369,0.3130522595304216,0.6869477404695784,25.67610772700661,4.577418520458492,0.3271044059660552,0.1940682324704268,0.2365849477112978,0.2422424138522201,10.917193364402966,5.473385745309513,25.39129230998155,13285.995937933543,65.8922750717895,13.14803177549332,21.613725939303077,15.386597050678844,15.743920306314276,0.545345448311332,0.7561837455830389,0.70020964360587,0.5869565217391305,0.1266808209483368,0.7032258064516129,0.9223880597014924,0.8946236559139785,0.7398648648648649,0.1237458193979933,0.4957187922487607,0.6863237139272271,0.6375606375606375,0.5452029520295203,0.1274685816876122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584920956627,0.0045441174978953,0.0066401332087885,0.0089952736697667,0.0113335775037642,0.0137823549185588,0.0159745386663402,0.0181227525335076,0.0200775281013797,0.0221418842108497,0.0244352803594509,0.0265924106821754,0.0288828730532881,0.0309549334102997,0.0331650300984006,0.0355088953247827,0.0373260380721443,0.0391209978087256,0.0412386156648451,0.0431208928757692,0.0575771196805452,0.0725700812156143,0.0856110042768723,0.0976874045198335,0.109891618955063,0.1253958335539763,0.1386825634649919,0.1516812008272744,0.1644979025768341,0.1763688327316486,0.1903513315205662,0.2039530748547142,0.2167658405806578,0.2284530931562685,0.2400718837511852,0.2514263514263514,0.2622806036892118,0.2729670626958541,0.2820171849427169,0.2918291060863184,0.300067188730828,0.3082122774133083,0.3159055865259162,0.3234057379018694,0.3308488612836439,0.3371054419667675,0.3435736677115987,0.3492703337075212,0.3554658078591278,0.3607730567754907,0.3622418003480889,0.3631378060711284,0.3650244357185231,0.3662555615136013,0.3674527388383214,0.367563162184189,0.3675991157901432,0.369023657900815,0.3702127659574468,0.3717545593387836,0.3733898305084746,0.3752108427757823,0.3760514388110045,0.3765261382799325,0.3771791957830597,0.3781253269170415,0.3801157915751647,0.3834063061076637,0.3829518769058217,0.3839058524173028,0.3844852806728835,0.3865685176294874,0.389363722697056,0.3893339436942092,0.3894122079879427,0.3916232844297208,0.395095785440613,0.3944636678200692,0.3889499725123694,0.3910721098817245,0.0,2.269468246180305,61.87614262439052,227.5731858951304,334.4141124774631,fqhc2_80Compliance_baseline_low_initial_treat_cost,29 -100000,95799,40759,381.3192204511529,7660,78.8108435369889,5887,60.7626384409023,2389,24.52008893621019,77.35864855579545,79.66436106394235,63.35358995694328,65.05475430173078,77.06762383099225,79.37520277993833,63.24728160785707,64.95241378325053,0.2910247248032078,289.1582840040172,0.1063083490862055,102.34051848024706,65.5259,45.93148091784624,68399.35698702492,47945.678887928094,195.92852,114.94435171295744,203855.9692689903,119320.46442338378,236.49742,111.72627014420056,242552.3230931429,113288.74854942494,3909.43838,1735.0322593644291,4040124.281046775,1770365.5981423915,1415.2594,607.0328147719546,1461358.6989425777,617697.903100432,2358.09352,972.251767925095,2422837.252998465,981121.4933979472,0.38176,100000,0,297845,3109.061681228405,0,0.0,0,0.0,16191,168.3107339325045,0,0.0,22315,228.64539295817283,2186270,0,78446,0,0,2606,0,0,26,0.2714015803922796,0,0.0,0,0.0,0,0.0,0.0766,0.2006496227996647,0.3118798955613577,0.02389,0.3207383548067393,0.6792616451932606,25.60159711140709,4.561855220809384,0.3410905384746051,0.1929675556310514,0.2247324613555291,0.2412094445388143,10.82044483072744,5.347363173501798,25.3802615846127,13320.692367830734,66.13177582478119,13.175119236003376,22.67562582456436,14.746665471890546,15.5343652923229,0.5298114489553253,0.75,0.6812749003984063,0.5570672713529856,0.1140845070422535,0.686231884057971,0.9142857142857144,0.835030549898167,0.7322033898305085,0.1182795698924731,0.4819170179720435,0.6869671132764921,0.6315095583388266,0.5068093385214008,0.1130587204206836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023379147015363,0.0045579313069108,0.0070156229406814,0.0095081534699179,0.0118058236644788,0.0138751843751589,0.0161655054394328,0.0186367716663946,0.0207284057822955,0.022811665660771,0.0249920619475371,0.0270894022073606,0.0291576341014866,0.0311393759776076,0.0330569990926338,0.0350650692005783,0.0370745941247684,0.039001835014566,0.0411555121586388,0.0432578186815474,0.0579968701095461,0.0716936942588584,0.0847143171598377,0.0973230895351403,0.1094435075885328,0.1247423878924951,0.1385616895853433,0.1519648518116635,0.1641630099398908,0.175694221078589,0.1902295632698768,0.2037475793277292,0.2167690718286118,0.2290518071234794,0.2410630731798615,0.2524661390791602,0.2634234556049206,0.2736621810162473,0.2831721821235644,0.2920915736645507,0.3008044447016609,0.3088891230288343,0.3171009000473709,0.3246416791604198,0.3321777842650708,0.3390252930289944,0.3448457223001402,0.350376858830719,0.3565298555834997,0.3624770387598948,0.3640444893832154,0.3658721410856985,0.3672085383563382,0.3683883191830949,0.3687053571428571,0.3692845533441687,0.3689590045550494,0.3697725363595935,0.3705527155453391,0.371217698924345,0.3731931173554965,0.3735478994271164,0.3745459920601402,0.3751265495286733,0.3767007214448264,0.378004523220954,0.3785712230629801,0.3809054178729361,0.3842493963925579,0.3855460428473813,0.3889501240011022,0.392231653594069,0.3921831165519,0.3910753021382088,0.3928808732795443,0.3923251102371589,0.394033080847117,0.3954255099938182,0.395072217502124,0.3976,0.0,2.700031143256965,60.59897312499777,227.40860713546795,341.7102018556316,fqhc2_80Compliance_baseline_low_initial_treat_cost,30 -100000,95868,40707,381.4411482455043,7384,75.7499895689907,5704,58.99778862602746,2399,24.66933700504861,77.41454581429173,79.70539257895035,63.37712166936033,65.06884037678152,77.1246503484744,79.41429952802743,63.27065171276298,64.96482880840651,0.2898954658173238,291.0930509229246,0.1064699565973512,104.01156837501446,65.43284,45.7802664860766,68253.0562857262,47753.43856769371,192.1043,113.64992562233884,199882.5989902783,118046.76807937871,235.87976,111.85881742802457,243805.82676179748,114821.9294317679,3806.81211,1702.6023339481565,3937994.481996078,1743091.3067427678,1393.53372,598.8575519549897,1441190.0947135645,612265.4448218142,2370.15548,981.0597589140506,2438888.784578796,993043.1475839012,0.38073,100000,0,297422,3102.4116493511915,0,0.0,0,0.0,15860,164.91425710351734,0,0.0,22213,229.39875662369093,2187725,0,78577,0,0,2606,0,0,28,0.2920682605248884,0,0.0,0,0.0,0,0.0,0.07384,0.1939432143513776,0.3248916576381365,0.02399,0.3064350064350064,0.6935649935649936,25.713617619502635,4.593186640304489,0.3316970546984572,0.1937237026647966,0.229312762973352,0.2452664796633941,11.05078825650893,5.5332226538518325,25.372542692009525,13220.828480849104,63.87515784407866,12.649091303419048,21.46110461437179,14.571885456076313,15.193076470211496,0.533835904628331,0.7393665158371041,0.6971458773784355,0.5672782874617737,0.1193709792709077,0.6865136298421808,0.9034267912772586,0.8539094650205762,0.6895424836601307,0.1459074733096085,0.4844547563805104,0.6721938775510204,0.6429587482219061,0.5299401197604791,0.1127012522361359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021966897808371,0.0044273339749759,0.0066925580782218,0.0087304326640001,0.0110275434495375,0.0133293989560333,0.0156784841075794,0.0178199844954914,0.0198986679741766,0.022154714781061,0.0244811832913363,0.0266391761037255,0.0286574464149935,0.0306738993937272,0.0328068294292312,0.0345999318329701,0.0364174348469329,0.0385504212566193,0.0404443060313505,0.0423042116978894,0.0565976747823366,0.0714114019961331,0.0847249869041383,0.0981151887436341,0.110207778257527,0.125598098758912,0.1391084179079178,0.1509476078614781,0.1636171597443748,0.1759168023305629,0.1903081425374419,0.2036894862617459,0.2166400417305121,0.2283085061038918,0.2389693758656319,0.2503541546770552,0.2613306865325422,0.2715501253273685,0.2813471267496994,0.290435997572065,0.2993440460903064,0.3073701940509749,0.3150676826959485,0.3229437644604817,0.3301644804823788,0.3363259668508287,0.3422137050814764,0.3480791025200239,0.3535548836666104,0.3584631250495809,0.359806909198781,0.3611463213006338,0.3622450418935312,0.3629038091518018,0.3650954201311934,0.3657029860813048,0.3655859480178025,0.3667526662613182,0.3674842110668013,0.3684502108799771,0.3695338148391333,0.3716333967046895,0.3736574928679309,0.3752237336674422,0.3762590968239433,0.3764165230560342,0.3761025318984957,0.377977499842876,0.3789592361624916,0.3800383111182057,0.3826535267816406,0.3857911274431485,0.3888888888888889,0.3872143345228153,0.3880484825707037,0.3905487441971194,0.3888632518074142,0.3887070376432078,0.3788046485888212,0.3821729150726855,0.0,1.9456920590055031,61.89005375246455,207.64362507362105,335.151814335887,fqhc2_80Compliance_baseline_low_initial_treat_cost,31 -100000,95699,40659,381.6863290107525,7567,77.66016363807354,5837,60.29321100533966,2436,24.995036520757797,77.36002699221102,79.7300946265047,63.33690834044432,65.08792871152653,77.05754417054956,79.42884575761626,63.22570536966407,64.97999548296562,0.3024828216614565,301.24886888843605,0.1112029707802548,107.9332285609098,65.05246,45.55840350885686,67976.1126030575,47605.9347630141,194.58541,114.99782397035176,202636.0672525314,119471.5764745209,237.04775,112.64731454109231,242936.7391508793,114090.88950524278,3886.82014,1739.159941903982,4019456.692337433,1775274.2054817523,1403.94951,611.889223374438,1450756.8522137117,623103.6333103122,2404.25292,1006.0513068129898,2470082.55049687,1015893.5027987856,0.38115,100000,0,295693,3089.8233001389776,0,0.0,0,0.0,16007,166.54301507852747,0,0.0,22270,227.9647645220953,2188968,0,78476,0,0,2602,0,0,40,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07567,0.1985307621671258,0.3219241443108233,0.02436,0.3106527480820023,0.6893472519179977,25.608237946990773,4.65549282808879,0.330477985266404,0.193249957169779,0.2383073496659243,0.2379647078978927,10.951862933656274,5.343978056888474,25.982590088902565,13269.359522506264,65.52362152636324,13.08098484374113,21.60149217048841,15.47202150607968,15.369123006054028,0.5372622922734281,0.7570921985815603,0.696215655780197,0.5629043853342919,0.1123110151187904,0.6784426820475847,0.9207317073170732,0.8760869565217392,0.6745762711864407,0.1217105263157894,0.4932584269662921,0.69,0.6398910823689585,0.5328467153284672,0.1096774193548387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0042575190828087,0.0064438874400008,0.0085332899896381,0.0107307050734366,0.0128609832593377,0.0153007135575942,0.0175039294535507,0.0197802197802197,0.0219087204897725,0.0239393877258094,0.0259229600427087,0.0281765455966434,0.0303642056690837,0.0324184894758563,0.0341497709907879,0.0359788250163163,0.0383313958316034,0.040252959164569,0.0423057685895298,0.0577115882696967,0.0717493013470656,0.0850608476710029,0.0984780756649873,0.1109810743845221,0.1261933710419199,0.1397201565765326,0.1529473112901337,0.1653387730690362,0.1770340573880396,0.1905367262071491,0.2041595879367621,0.2165279015673572,0.228709504597588,0.2401249573758951,0.2516422771432686,0.2622310507990358,0.2719285416971347,0.2817813673332804,0.2905931009199537,0.2993335030432066,0.3075015789104348,0.3151030262862012,0.322920036907886,0.3301613922512275,0.3366865145407251,0.3426098718735518,0.3486939253526147,0.3553651517901122,0.361074038347186,0.3623182541609344,0.3637504654979794,0.3652177599412147,0.3665206925553203,0.3681425163983303,0.3686174541992352,0.3692009900361744,0.3710960615425077,0.3721212951389483,0.3727027075392352,0.3730995470861288,0.3744845360824742,0.3749973772005288,0.375529696643573,0.3766080177636183,0.3766563662075106,0.3783605428514044,0.3800088905823331,0.380957450583768,0.3821125115773366,0.3855293573740175,0.3891402714932127,0.389733477514153,0.3908090216303594,0.3931276031806134,0.3912263925412383,0.3944247651316803,0.3926016758634784,0.3844649343392008,0.3910505836575875,0.0,2.690724566875476,60.68167430967652,221.2018086189298,341.4387127687688,fqhc2_80Compliance_baseline_low_initial_treat_cost,32 -100000,95757,40693,381.66400367597146,7310,75.32608582140209,5668,58.66934010046263,2281,23.486533621562916,77.33346816806463,79.69644075733609,63.32120940122799,65.07080429304003,77.05784389946322,79.41955198129403,63.22278172410045,64.97423626400686,0.2756242686014047,276.88877604205686,0.0984276771275389,96.56802903316476,66.00462,46.20755714468277,68929.28976471694,48255.01753885645,193.97842,114.68668766337775,202073.1748070637,119268.05856603626,236.16274,111.4827881829285,243590.56779138863,114033.11685791449,3738.79407,1648.2947333198472,3873097.67432146,1689972.321062036,1399.18769,597.5715694705104,1445755.182388755,608683.474585002,2247.03248,910.9571358695864,2315450.316948108,925279.2836348636,0.38042,100000,0,300021,3133.1495347598607,0,0.0,0,0.0,16014,166.69277441858037,0,0.0,22249,229.3513790114561,2183884,0,78330,0,0,2649,0,0,32,0.3237361237298578,0,0.0,1,0.0104431007654792,0,0.0,0.0731,0.1921560380631933,0.3120383036935704,0.02281,0.3105952535339126,0.6894047464660874,25.786356756507395,4.53866273791809,0.341743119266055,0.1947776993648553,0.2247706422018348,0.2387085391672547,10.929972843828844,5.413277551187957,23.99817515665664,13190.538406732245,63.40058735629525,12.71846454795705,21.917137618542817,14.07733193287491,14.687653256920472,0.5404022582921666,0.7518115942028986,0.7000516262261228,0.565149136577708,0.1160384331116038,0.7181889149102264,0.9297124600638976,0.8859649122807017,0.6954887218045113,0.1626016260162601,0.4884887166628676,0.6814159292035398,0.6428089128966914,0.5307539682539683,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350676326055,0.0045329168863829,0.0066378417879544,0.009043061228637,0.0111368767925794,0.013349082059689,0.0153937120254455,0.0176256863505541,0.0197048362699807,0.0216699251737586,0.0237946341613442,0.0261177557620245,0.0281054287800413,0.0302989732129064,0.0322311065256641,0.0343466082336768,0.0364479787939032,0.038610399178193,0.0405867614800029,0.0424304282619563,0.0565454754224991,0.0708305425318151,0.0839532858357029,0.0964210216337305,0.108673872923807,0.1248017425508067,0.1382694307114515,0.1509807469215296,0.163197522294014,0.1749270824397358,0.1887353375197923,0.2015643086642794,0.2140969737829344,0.2260484444201432,0.2371541067264968,0.2485524174352047,0.2595511010413295,0.2701477256106479,0.2802114889320036,0.2897878819098641,0.2978711102374041,0.3066057041290035,0.3142093309359326,0.3217378804757969,0.328107557151871,0.3352697197572953,0.3422075568387766,0.3480371598866394,0.3538742188813993,0.3592673721992029,0.3603385079775765,0.3616459093098466,0.3635517970401691,0.3648535201482167,0.3662730967943659,0.3666087918504064,0.3665660736975857,0.3672383400056014,0.3680068581225889,0.3693341697284703,0.370448350408873,0.3717508971588318,0.3730337078651685,0.3744754381634164,0.3753111481669446,0.3754234839929616,0.3763729977116705,0.379781680113906,0.3813214424744311,0.3830790125429416,0.3868097596771234,0.3891834002677376,0.3900934698289566,0.3934552751408505,0.3976513270956655,0.3997565429093122,0.3982453391822027,0.4015813566375364,0.3994310099573257,0.395743003547497,0.0,2.0233272859819342,56.64435899101319,222.0680125273036,331.0730169819884,fqhc2_80Compliance_baseline_low_initial_treat_cost,33 -100000,95802,41071,384.3865472537108,7527,77.39921922298072,5861,60.64591553412246,2387,24.54019749065781,77.34149214859087,79.67990393279239,63.33904717832892,65.07234119751303,77.04886238465484,79.38627458068481,63.23322162063587,64.96821432658624,0.2926297639360342,293.6293521075726,0.105825557693052,104.12687092679109,65.36024,45.74931148461674,68224.29594371725,47754.025474015936,194.31323,115.01017783762624,202311.4966284629,119534.67062831318,243.72236,115.59635743005369,250964.52057368323,117987.16344991696,3874.09182,1728.3990541757175,4012940.03256717,1773358.189525385,1427.62825,620.5893068898952,1476022.3481764472,633735.1982326094,2353.79252,968.064332502306,2423377.862675101,982837.1830182016,0.38424,100000,0,297092,3101.1043610780566,0,0.0,0,0.0,16028,166.7606104256696,0,0.0,22912,235.7779587064988,2188772,0,78545,0,0,2515,0,0,35,0.3548986451222312,0,0.0,0,0.0,0,0.0,0.07527,0.195893191755153,0.3171250166068819,0.02387,0.3127130412826663,0.6872869587173337,25.39424041240636,4.6339033035185295,0.3328783484047091,0.1999658761303532,0.2327247909912984,0.2344309844736393,11.114377039389296,5.468435339884152,25.411855468549827,13385.57299494724,66.04220385507953,13.669752165349095,21.935774230825675,15.280351991518344,15.156325467386424,0.5423989080361713,0.7525597269624573,0.6827268067657611,0.593841642228739,0.1128093158660844,0.7147962830593281,0.8913649025069638,0.8468271334792122,0.7954545454545454,0.1745454545454545,0.4883460331689825,0.6912669126691267,0.6325301204819277,0.5350378787878788,0.097361237488626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717120658042,0.004906582322111,0.0070221726114972,0.0094907125147339,0.0115887470112428,0.0137922604435118,0.0161757506527415,0.0185338357381368,0.020625198122565,0.0228243172672257,0.0247208522593279,0.0269351625557084,0.0288926374688856,0.0309045769678489,0.0330592156174871,0.0350808285442593,0.0370170951675864,0.0392008381655792,0.041458422086221,0.0435647068620919,0.058270559021764,0.0720394805629326,0.0851532045102066,0.0978836534824093,0.1103535486590442,0.1260926088381089,0.1400358305153021,0.1532817218937428,0.1649110449417816,0.1774893630702948,0.191789815841307,0.2061532474271382,0.2186566434554007,0.2291561946805953,0.2407211961301671,0.2522667139014048,0.2626075712311053,0.2736654164888719,0.2836934855486092,0.2931982666956313,0.3016107615033774,0.3099063543588426,0.3179153171469774,0.325403761657907,0.3326293814933488,0.3389239843855825,0.3456791667187676,0.3523446435379336,0.358712380853843,0.3636052180787982,0.3653571717062925,0.3661124721297035,0.3675829678001721,0.3690655396016674,0.3712442835649699,0.3715425940138143,0.3720775095298602,0.3732871629977739,0.3745128002609845,0.3758686946684145,0.3769187252498586,0.3788216560509554,0.3807151602144636,0.3817435804946231,0.3817943362316024,0.3833456192080876,0.3844374403608709,0.3870833599897639,0.3871532116970757,0.3904769584324477,0.3926029309141661,0.3916386873172316,0.3949790794979079,0.3963914707490432,0.3999807377443898,0.4006060606060606,0.4043690083294043,0.4053038212570474,0.4079841449603624,0.4158262218774243,0.0,2.070368020733,61.900989379358485,223.78172937584208,342.74513178639864,fqhc2_80Compliance_baseline_low_initial_treat_cost,34 -100000,95699,40495,378.6246460255593,7541,77.66016363807354,5888,60.88882851440454,2459,25.214474550413275,77.3419109081298,79.7109135941406,63.33255108723839,65.08105840864184,77.04224038341975,79.41013981357383,63.22350589619514,64.97416119290753,0.2996705247100522,300.7737805667716,0.1090451910432435,106.89721573430688,65.17368,45.676090732553256,68102.78059331865,47728.911203412,196.11989,115.68418615046367,204281.9674186773,120231.24186299092,237.00446,112.55433494028416,243542.11642754887,114506.28991992414,3945.32235,1757.2691252565774,4082528.166438521,1796137.2692050904,1432.03446,616.7324277592412,1482506.0240963856,630575.7419198176,2428.122,1002.747939845566,2493031.3587393807,1013174.2590166302,0.37865,100000,0,296244,3095.580936059938,0,0.0,0,0.0,16175,168.3507664656893,0,0.0,22343,229.35453870991336,2187168,0,78417,0,0,2604,0,0,43,0.449325489294559,0,0.0,0,0.0,0,0.0,0.07541,0.1991548923808266,0.3260840737302745,0.02459,0.3064250411861614,0.6935749588138386,25.444504615754045,4.568762306119763,0.3344089673913043,0.1880095108695652,0.2314877717391304,0.24609375,11.133730665727684,5.6348841820876645,26.143963218537568,13216.169388735834,65.98521723069292,12.780415184923546,22.182457299494786,15.201677639554946,15.82066710671966,0.5361752717391305,0.7597109304426377,0.6957846622651092,0.574468085106383,0.1124913733609385,0.6988388969521045,0.9113924050632912,0.8838709677419355,0.7120253164556962,0.1387900355871886,0.4864745011086474,0.6991150442477876,0.6376329787234043,0.5329512893982808,0.1061643835616438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0045302523563393,0.0065936295394603,0.0093239619728609,0.0117338430878106,0.0139590290787651,0.0164123265747168,0.0184534988160365,0.0205335241210139,0.0229461553419918,0.0250025627883136,0.0271488566470545,0.0290406507409273,0.0312065359611798,0.033114564629641,0.0351878269139324,0.0372725483901034,0.0394470562595348,0.0414782002890684,0.0436241610738255,0.0585513603843542,0.0723639446881117,0.0854798602440483,0.0983549656057386,0.1110208645387228,0.1262854966354903,0.139727567842821,0.1523000436481321,0.1643894153215037,0.1758351391362183,0.1902315562735595,0.2044997078111811,0.2167694499733524,0.2281281095207374,0.2395213532329553,0.2505978212735807,0.2613471618155459,0.2713015323387559,0.2801597476712919,0.2891781433526805,0.2971762527485245,0.3052690727321681,0.3138018828823494,0.3207553956834532,0.3272576938509989,0.3339546711435907,0.3402315285146304,0.345881903305943,0.3514782157676348,0.3563509661070637,0.3580876107268535,0.3602257864665795,0.3616463826910074,0.362599722511273,0.3643175735950044,0.364572794996781,0.3652517118944965,0.3670763206817696,0.3693438914027149,0.3700111162907448,0.3712903893562167,0.37248708780294,0.3726902202605959,0.3724322983607296,0.3734633010838728,0.3749934303883954,0.3754423314824937,0.3770866391621707,0.3769944209516364,0.3794466403162055,0.3818282650891949,0.3840172786177105,0.3847334100498657,0.3872895165670831,0.3911123908244553,0.3923514462059784,0.3963585434173669,0.4057035803497086,0.4034042553191489,0.4049295774647887,0.0,2.396184319873302,60.66290473247631,221.9267098638867,348.51145034243507,fqhc2_80Compliance_baseline_low_initial_treat_cost,35 -100000,95701,40696,380.65432963082935,7584,77.94066937649555,5892,60.9189036687182,2387,24.482502795164105,77.33810060160408,79.72060676599641,63.31256206328344,65.07478367854645,77.04401003919861,79.42849877558912,63.20377821293464,64.9702498877568,0.2940905624054721,292.1079904072883,0.1087838503488001,104.53379078965952,65.15982,45.65560489766329,68086.87474530046,47706.50766205503,194.99028,115.26369000408944,203085.01478563444,119777.0138285801,242.22839,114.80650116277045,249427.91611372924,117069.8349412106,3889.54268,1742.3942199342528,4021419.138775979,1777818.2776922446,1436.57202,625.6524184145096,1481207.2601122246,633860.2087904087,2346.13184,976.2830735136024,2407675.301198525,980811.9275822804,0.38059,100000,0,296181,3094.857942968203,0,0.0,0,0.0,16076,167.28142861621092,0,0.0,22793,234.4385116142987,2184982,0,78419,0,0,2572,0,0,47,0.4911129455282599,0,0.0,2,0.0208984232139685,0,0.0,0.07584,0.19926955516435,0.3147415611814346,0.02387,0.3097600803919105,0.6902399196080894,25.401087393704582,4.583864439652574,0.3352002715546504,0.1955193482688391,0.2413441955193482,0.2279361846571622,11.051463109599666,5.571843630964625,25.29905127011375,13241.138442454208,66.13213180223708,13.362495808128855,22.194055311948613,15.865732648444382,14.709848033715224,0.5441276306856755,0.7664930555555556,0.6784810126582278,0.5759493670886076,0.122114668652271,0.704225352112676,0.9169139465875372,0.859538784067086,0.7476340694006309,0.1522491349480969,0.4932915921288014,0.7042944785276074,0.6208277703604806,0.5266968325791855,0.1138519924098671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023818694127424,0.0046459728139582,0.0068430564298332,0.0091468992011708,0.0114874696024663,0.0139337332830849,0.0160536890847153,0.0183950075071241,0.0206064324794191,0.0227821920052424,0.024692877212412,0.0270678235867946,0.0290264867977297,0.0312136347252973,0.0335479078979945,0.0355699773683177,0.0375742892050278,0.0395493121407673,0.0416064540946281,0.043607346369006,0.0580365535248041,0.0715242881072026,0.0845575889858965,0.0975250596909743,0.1098443300708741,0.1249272694574037,0.1388429050469035,0.1521308542585138,0.164064253422681,0.1757435303205871,0.190446429533528,0.2039910347889169,0.2165042730390289,0.2275169915398001,0.2387441932145923,0.2508314118481731,0.261690908684675,0.2722471821549618,0.2814786204389512,0.2906766055045872,0.2983130966725368,0.3068776870541101,0.3144777074592903,0.3216770633397313,0.3285816801877957,0.334939104226883,0.3412241416080188,0.3478565960704261,0.3542623588945114,0.3605551883674818,0.3619755150469205,0.3628894403087951,0.3638711316201685,0.3652050550818628,0.3663047848813832,0.366804979253112,0.3666068621691568,0.3677704993581092,0.3692645218792314,0.369911123853211,0.3705034617700181,0.3704732612362337,0.3720974295277994,0.3722542311847317,0.3739603481624758,0.3745397571484528,0.3760673996858489,0.3786300505050505,0.3792435554303423,0.3798289238114183,0.378835401609164,0.3794673585005559,0.3822183208978619,0.3859476629859325,0.3884737530356809,0.3876755991028214,0.3905540417801998,0.3949478748997594,0.3924291938997821,0.3859649122807017,0.0,2.572494194356577,62.44800802161179,221.89276743738688,341.84865784512004,fqhc2_80Compliance_baseline_low_initial_treat_cost,36 -100000,95654,40982,382.6604219373994,7488,76.97534865243482,5817,60.26930394965187,2395,24.661801911054425,77.27782633283482,79.68984680286994,63.2892740309558,65.07281569514872,76.98100861378117,79.38995099168092,63.18015333322395,64.96489246415965,0.2968177190536494,299.89581118901754,0.1091206977318464,107.92323098907276,65.3499,45.83152770610744,68319.04572730885,47913.86424624944,194.73372,115.8761336475782,203045.7273088423,120605.2790762312,244.47427,116.7043540810143,252050.5781253267,119274.45480163571,3850.05222,1742.4002546541462,3989724.015723337,1786389.1186587063,1407.84595,614.1820779501592,1456017.3542141467,626331.4561774097,2357.52088,990.10769960448,2429547.159554227,1005784.9864346808,0.38282,100000,0,297045,3105.411169423129,0,0.0,0,0.0,16113,167.8863403516842,0,0.0,22956,236.498212306856,2181087,0,78255,0,0,2602,0,0,41,0.4286281807347314,0,0.0,0,0.0,0,0.0,0.07488,0.1956010657750378,0.3198450854700854,0.02395,0.3162425623496645,0.6837574376503355,25.32158189616166,4.575883698358307,0.3250816572116211,0.2011346054667354,0.2386109678528451,0.2351727694687983,10.933790961108198,5.373812375872376,25.66729236131839,13379.428869526912,65.6791743796218,13.588440427403189,21.53762266843807,15.47238503965334,15.080726244127204,0.5348117586384734,0.7418803418803419,0.6906398730830249,0.5655619596541787,0.1111111111111111,0.699527346387576,0.8895184135977338,0.8875502008032129,0.7267267267267268,0.1279461279461279,0.4785516605166052,0.6780905752753978,0.6202440775305097,0.5146919431279621,0.1064425770308123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025636868451452,0.0049894531883822,0.0074919294256187,0.0098072095693974,0.012167455109619,0.01429284542741,0.0167057623661397,0.0190793303849571,0.0212250158548311,0.0233863615410618,0.0255692307692307,0.0277338373359081,0.0301181264405663,0.0323837401055409,0.0344937950401618,0.0368730800657819,0.0389214731300905,0.0408074263285776,0.0426760739260739,0.0448559542056367,0.0598980103661595,0.074292835673966,0.0880722967441274,0.1008207934336525,0.112369154144859,0.1273697246832428,0.1412399379818618,0.1543796475827243,0.1668502614889362,0.1784606134784896,0.1923159823256816,0.2055619328149704,0.2177018126394861,0.2298001357238239,0.2408473811122978,0.2526047439592108,0.2628686940886094,0.2732153711082596,0.283095121868153,0.2929549722871146,0.3013107509341848,0.3095446943382103,0.3175200624955614,0.3246980654601278,0.3309337646071719,0.3374563320124924,0.3441381817270209,0.3509583524494061,0.3568757789779809,0.361629813796022,0.3631561883662497,0.3642131453452208,0.3654815150314216,0.3673416067929458,0.368719756257841,0.3693205438112981,0.3692288097815704,0.3703116222200192,0.3711377430836156,0.3713268992289858,0.3727183587268065,0.3736110557967262,0.3754510350066468,0.376018180999955,0.37616811117029,0.3776425536379373,0.378783958602846,0.3804766298641382,0.3825345276756718,0.3855431406558832,0.3873145023346123,0.3898751882935227,0.3928867888385161,0.3936451211932877,0.3948099205209231,0.3982978723404255,0.4026055564275624,0.4035968214136344,0.3953488372093023,0.4010903426791277,0.0,2.156945082696421,65.62420067045691,212.318161740392,336.6815955477858,fqhc2_80Compliance_baseline_low_initial_treat_cost,37 -100000,95825,40751,381.6853639446908,7523,77.31802765457866,5845,60.46438820767023,2349,24.17949386903209,77.39792083527668,79.70120712012546,63.37134666233783,65.07162497360673,77.11780867268493,79.41972297392711,63.26911517068008,64.9709983028244,0.2801121625917488,281.48414619835194,0.1022314916577471,100.6266707823329,65.34748,45.75543864506092,68194.60474823897,47748.95762594409,194.82552,115.23385487362742,202777.47978085047,119718.08491899548,243.55675,115.7527936828056,250787.27889381684,118231.47782675127,3869.32312,1726.2819039592937,4006119.6138794674,1769925.860580462,1442.19421,623.3423965322525,1491730.9470388729,637297.0194042433,2313.91922,951.9785978170324,2384222.468040699,969183.4585984388,0.38107,100000,0,297034,3099.7547612835897,0,0.0,0,0.0,16111,167.5867466736238,0,0.0,22939,235.971823636838,2187952,0,78416,0,0,2627,0,0,30,0.3130707018001565,0,0.0,0,0.0,0,0.0,0.07523,0.1974177972550974,0.312242456466835,0.02349,0.3178791305440382,0.6821208694559618,25.39658266304369,4.623169977472444,0.3260906757912746,0.2046193327630453,0.2355859709153122,0.2337040205303678,11.22731944635425,5.587524879851301,24.93280140177338,13309.435797561751,65.67234108273291,13.936391178591764,21.62404458689624,15.22778282890532,14.884122488339589,0.5515825491873396,0.7483277591973244,0.7061909758656874,0.5824255628177197,0.1325036603221083,0.7217391304347827,0.9005524861878453,0.8817204301075269,0.7422680412371134,0.1679389312977099,0.4989921612541993,0.6822541966426858,0.6495489243580846,0.5395948434622467,0.1240942028985507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386247671499,0.004701638480479,0.006805618946194,0.009158941137049,0.0113959824333116,0.0135963037593372,0.0160277964581932,0.0181994389186432,0.0201381367881153,0.0221706124286386,0.0243222752699629,0.0262836624775583,0.0284481430112498,0.0304804634841577,0.0324775048700796,0.034495931937389,0.0365304834521358,0.038567179030068,0.0405823589274959,0.042723478659076,0.0574888902797771,0.0722936931283338,0.0861172276397189,0.09882565682265,0.1108944494803634,0.1264562234391187,0.1402214022140221,0.1534760951934948,0.1658690310864224,0.1769399903469727,0.1914875285400422,0.2043480612189714,0.2172551748130109,0.229014059869241,0.2397972088726616,0.2520511542933067,0.262383745567277,0.2729858885703041,0.2821085573684986,0.2915713108751373,0.3000543409140835,0.3068330529070854,0.3152909176915799,0.3224980252291931,0.3298776569301468,0.3364460684801732,0.3429956519566195,0.3495959749961884,0.355304530103645,0.361235918044667,0.3631294674047401,0.3647924849616832,0.3656175696779549,0.3671554760117776,0.3683139793887915,0.3682174099223099,0.3683344669946375,0.3701533208575462,0.3721033639457527,0.3747652015241775,0.375570197668525,0.3756762648381919,0.3761556564128425,0.3771328372636737,0.379972399099339,0.3810323122114981,0.3816293056314926,0.3839822024471635,0.3857102393428693,0.3878065367844141,0.3892138350297057,0.3936897647122166,0.3964228680932609,0.4005245699298002,0.4036075586944073,0.4054995196926033,0.4079293789685612,0.4111292295148797,0.407876618011567,0.4059026446914526,0.0,2.107090155649774,60.9142553292194,226.1715246851421,338.31551886899416,fqhc2_80Compliance_baseline_low_initial_treat_cost,38 -100000,95559,40409,378.5933297753221,7513,77.48092801306,5816,60.35015016900554,2279,23.57705710608106,77.19945181010942,79.67189114410553,63.224607941291474,65.05443332271822,76.92800983361406,79.39651026931672,63.12681305840548,64.95707718778009,0.2714419764953675,275.3808747888087,0.0977948828859993,97.35613493813844,65.90144,46.119261510948526,68964.13733923544,48262.603743183296,196.02496,115.415918265156,204620.9043627497,120265.64558561306,237.51371,111.89425037725896,244981.24718760137,114319.01180520968,3825.44112,1696.1400434400705,3973409.9980116994,1745151.9830053365,1378.28522,592.3707311475803,1430322.261639406,607883.2565719404,2247.54946,918.4363624898276,2327842.5266066,940249.7655288004,0.37854,100000,0,299552,3134.733515419793,0,0.0,0,0.0,16188,168.86949423916116,0,0.0,22367,230.4858778346362,2177370,0,78158,0,0,2621,0,0,40,0.4185895624692598,0,0.0,0,0.0,0,0.0,0.07513,0.1984730807840651,0.3033408758152535,0.02279,0.3073998986315256,0.6926001013684744,25.79312437983349,4.549199954167399,0.3392365887207703,0.2009972489683631,0.2291953232462173,0.2305708390646492,10.955363363642972,5.465634233892789,24.1193697648444,13232.087084356586,65.4507260196456,13.495954124054665,22.45619254013008,14.825213820066592,14.673365535394282,0.5443603851444292,0.7527801539777588,0.6958945767866194,0.5813953488372093,0.1029082774049217,0.7176128093158661,0.911504424778761,0.8841463414634146,0.7167832167832168,0.1439688715953307,0.4907699234579018,0.6879518072289157,0.6333558406482107,0.5444126074498568,0.0931734317343173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021996735968211,0.0046772589841926,0.0068242749207896,0.0088661135513258,0.0109032047888585,0.0133539929458296,0.0156452518242588,0.0177089720008174,0.0198731068358575,0.0222076471371914,0.0242052208546762,0.0266829815018559,0.028763568206628,0.0309047584663152,0.0328834507988343,0.0350806368134484,0.0374284410520202,0.039399293286219,0.0415816007666347,0.0434905158104623,0.0577596937334602,0.0717730942644437,0.084938878903499,0.0971140776954767,0.1096279856267174,0.1245468229906502,0.1381434087500399,0.1516774799385351,0.1638385396580537,0.1754142606750755,0.1895402956707666,0.2021008768122232,0.2143464886445448,0.2260781818979511,0.237419440275448,0.2491280684216372,0.2602687612589932,0.2702181198587242,0.2803126849028264,0.2899947171371477,0.2987451289664131,0.3070382229102893,0.3149090650247357,0.323015015015015,0.3292365036055349,0.3362954357256739,0.3433994497971284,0.3493394600804135,0.3546723143287771,0.3609639830508475,0.36181169410429,0.3632184225422114,0.3647178501794343,0.3661142766009888,0.366595039842421,0.3670373959727414,0.367322922298909,0.369282070752926,0.3698396862529242,0.3704143288735433,0.3712888116642744,0.3727614987749248,0.3739895890642854,0.3750677017512186,0.3758291420657482,0.3771839671120247,0.3771285331489324,0.3776860815743533,0.3800837532827028,0.3816010226092514,0.3853738701725555,0.3861227967410405,0.3868401111391765,0.3877144607843137,0.3872549019607843,0.3900370326125911,0.3928242870285188,0.3883730318934195,0.3895027624309392,0.3909687379390197,0.0,2.0282607977301104,61.23997647312883,220.79358285757925,341.6512555054536,fqhc2_80Compliance_baseline_low_initial_treat_cost,39 -100000,95690,40498,380.42637684188526,7572,77.90782735918069,5944,61.59473299195319,2489,25.676664228237016,77.33990302576841,79.73011612607183,63.32261558699434,65.08881472441726,77.03695266630574,79.42466957388706,63.21266573681157,64.98020496921198,0.3029503594626703,305.446552184776,0.1099498501827653,108.60975520527916,65.27202,45.73055472911432,68211.95527223326,47790.31740946214,196.95833,116.708362762975,205312.3523879193,121447.82397635595,240.95432,113.97157744635884,248893.91785975543,116810.7761026458,3945.31696,1764.574602260455,4090208.130421152,1811242.3474349,1466.50687,636.6998547221675,1515296.9275786392,648142.188161843,2450.74346,1010.5386461946808,2529419.9811892565,1028872.1039667196,0.37961,100000,0,296691,3100.543421465148,0,0.0,0,0.0,16283,169.63110042846694,0,0.0,22736,234.65356881596824,2184957,0,78416,0,0,2633,0,0,34,0.3553140349043787,0,0.0,0,0.0,0,0.0,0.07572,0.1994678749242643,0.3287110406761754,0.02489,0.3249717797566788,0.6750282202433212,25.119553802785504,4.623673335389613,0.332436069986541,0.1953230148048452,0.2358681022880215,0.2363728129205922,11.088771530634697,5.506783690541087,26.41885176461336,13220.528295409347,66.87843646115999,13.530167120091324,22.267689888840405,15.664605754486782,15.415973697741476,0.5386944818304172,0.7717484926787253,0.6882591093117408,0.5634807417974322,0.1110320284697509,0.6982698961937717,0.9216216216216216,0.8483606557377049,0.6945337620578779,0.1376811594202898,0.4874416537008224,0.7016434892541087,0.635752688172043,0.5261228230980751,0.1045172719220549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0045613501596472,0.0066665990197968,0.0088469507983585,0.0110531507072186,0.0133756794723019,0.0155135157173726,0.0176675920633624,0.019892868825646,0.0218632930049745,0.0238864113998667,0.0258576443778357,0.0278051990786442,0.0297468224048781,0.0317050767341294,0.0338813068651778,0.0359703286229331,0.0377613086711922,0.0400183083500639,0.0419885125767478,0.0571607646505797,0.0712214323851799,0.0845293549876201,0.0971386492741426,0.1090552343980758,0.124115313409151,0.1385361299426037,0.1518360830228845,0.1639396787423103,0.1757371073228262,0.1899479845353608,0.2036982936778437,0.2169686161073533,0.2287835385187291,0.2403557238297544,0.2517472448357977,0.2626886987180202,0.2731589310829817,0.2826049952906733,0.291342551753371,0.2990083199296451,0.3068896947011346,0.314889990886819,0.3220808167960886,0.3290098492852892,0.3355147212876351,0.3415369978593693,0.3473666789728966,0.3534102697095436,0.3587070002246627,0.3602946135894565,0.3622579088841409,0.3631986218193114,0.3643019732359039,0.3655601288475304,0.36562787841572,0.3662830383363759,0.3672776981734934,0.3693801702433761,0.3709463812728183,0.3716208594954318,0.3716129032258065,0.3720504346727851,0.3726404469072397,0.3732476352170749,0.3753678015973098,0.3767353625937742,0.3781053434144482,0.3807918824948556,0.3827674567584881,0.3840146991272393,0.3870344531501556,0.3899923605805959,0.3881954076128833,0.3898803873172584,0.3925614877024595,0.3948558067030397,0.3911960132890365,0.3982905982905982,0.3939393939393939,0.0,2.022520437231301,64.24200274536302,220.33693848830697,349.33973975873084,fqhc2_80Compliance_baseline_low_initial_treat_cost,40 -100000,95779,40422,378.0056170976937,7424,76.16492132931019,5755,59.44935737478989,2319,23.763037826663467,77.331780499572,79.67108200600097,63.32970022966426,65.06208585939436,77.04364365282632,79.38523840388814,63.22421348179076,64.96015178389368,0.2881368467456866,285.8436021128341,0.1054867478735062,101.93407550067946,65.74546,46.04160529754852,68642.87578696792,48070.66820237059,193.64759,114.30425099844564,201545.4744777039,118705.45839739988,238.71588,113.4092378577494,245245.064158114,115231.73783961352,3775.12991,1701.7067548743382,3904856.9937042566,1740057.6586457763,1398.47691,604.3085181025828,1445694.9540087075,616527.399641448,2275.34872,945.272931991959,2335949.1537811006,953875.0132226208,0.37869,100000,0,298843,3120.130717589451,0,0.0,0,0.0,16030,166.7066893577924,0,0.0,22493,230.88568475344283,2184683,0,78459,0,0,2661,0,0,38,0.3863059752137734,0,0.0,0,0.0,0,0.0,0.07424,0.1960442578362248,0.3123653017241379,0.02319,0.3118210862619808,0.6881789137380192,25.68483084411764,4.535069840469673,0.3383145091225021,0.2020851433536055,0.2309296264118158,0.2286707211120764,11.232526732648695,5.709852261490181,24.725059148724824,13210.96648951509,64.93578441209044,13.64968980202648,21.96324747959853,14.867911185387818,14.454935945077604,0.557254561251086,0.764402407566638,0.6990241397021058,0.5921745673438675,0.1291793313069908,0.7199444058373871,0.9016393442622952,0.8795918367346939,0.7460815047021944,0.1401515151515151,0.5030120481927711,0.7013801756587202,0.6382978723404256,0.5435643564356436,0.1264258555133079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025120283616105,0.0047139207655812,0.0071235045206855,0.0094071274736884,0.0114823290109331,0.0137985111864682,0.0159560367855467,0.0180387112581158,0.0200159473329108,0.0223473409428264,0.0244802558740312,0.0265108733597552,0.0288522837106957,0.0306342126677722,0.0328706331596057,0.0349618541567597,0.0368065120806967,0.0391420689082951,0.0411812995542069,0.0432731854103976,0.0580495032974371,0.0715877116826877,0.0844392729102459,0.0971270648564583,0.1093420719885357,0.1245878772508242,0.1384222408292615,0.1514020480428749,0.1632550693703308,0.1754041978721352,0.1895217283658245,0.2026458403193181,0.2151433418888937,0.2267213563029806,0.2381130580258871,0.2497008243950004,0.2610340479192938,0.2710787126095418,0.2804741110417966,0.2895279323850752,0.2976995940460081,0.3065419467991815,0.3142674510825175,0.3209852854761533,0.3280699195293317,0.3353197369557439,0.3415808077009852,0.3475354628023268,0.3526792668362843,0.3586288072156904,0.3598705501618123,0.3612874791686752,0.3622769274176483,0.3641223253994698,0.3645969953499463,0.3652216703316981,0.3653702378111827,0.3667144954067917,0.3678877496693973,0.3700982149258011,0.3713059518879644,0.3728645409631143,0.3741856591680546,0.3747216912178117,0.3761728125681868,0.3771904474161259,0.3779787539477462,0.3795777545658848,0.3803761069752672,0.3818385560491455,0.3851180341447701,0.3880187308251251,0.3902611150317572,0.3940097515672162,0.3926761640692227,0.3955539446659418,0.3955562509779377,0.3957350830428542,0.39035333707235,0.3957667731629393,0.0,2.519925081466481,63.33810050863448,215.09649873278556,330.6004335297428,fqhc2_80Compliance_baseline_low_initial_treat_cost,41 -100000,95689,40605,380.73341763421087,7514,77.4070164804732,5842,60.49807187869035,2344,24.16160687226327,77.34192318165195,79.71799106964447,63.32298576779221,65.07514411889436,77.05623588835024,79.42989533293299,63.21927084744367,64.97289582456375,0.2856872933017058,288.09573671148314,0.103714920348537,102.24829433060734,65.00054,45.51099733555639,67928.9573514197,47561.36790598333,192.95158,113.4497501590221,200997.92034612127,117914.35813836713,238.644,113.10301332116086,245261.9945866296,114995.4379767131,3834.33364,1702.7622560730815,3975451.169935938,1747847.804944225,1421.53452,615.3402965791962,1474307.652917263,631810.5781000159,2307.51908,950.7056587273156,2381085.830137216,967539.533743494,0.38069,100000,0,295457,3087.6798796099865,0,0.0,0,0.0,15963,166.21555246684574,0,0.0,22462,230.78932792693,2187808,0,78470,0,0,2424,0,0,43,0.4284714021465372,0,0.0,0,0.0,0,0.0,0.07514,0.1973784444035829,0.3119510247537929,0.02344,0.3148359305713923,0.6851640694286076,25.47854492050887,4.681766199900843,0.3296816158849709,0.1963368709346114,0.2428962684012324,0.2310852447791852,11.141909616865147,5.563537818403661,24.92933080833093,13247.613757966685,65.42207915023191,13.32894441353968,21.727374470096137,15.553776856133844,14.811983410462242,0.5477576172543649,0.7611159546643418,0.6983385254413291,0.5828047921071177,0.1148148148148148,0.7162962962962963,0.932748538011696,0.8728070175438597,0.7244897959183674,0.1434108527131783,0.4971059661620658,0.6881987577639752,0.64421768707483,0.5457777777777778,0.108058608058608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781811002095,0.0042570012466932,0.0062692108706899,0.0085928453897251,0.0107390194543032,0.0129400745250554,0.0152111412433986,0.0175323945963056,0.0198885423590163,0.021901621887287,0.0240443769994258,0.0261960752097431,0.0283054769863718,0.0302924145321161,0.032587714318156,0.034414651044952,0.0365033820528491,0.0386743198779361,0.0407861896838602,0.042868902852022,0.0575651538099963,0.0715669336683943,0.0846278181283849,0.0974177662731233,0.1095166242837999,0.1253161476025694,0.1394884644377674,0.1525335264856573,0.1650525910723448,0.1767616594214565,0.1903180592991913,0.2037863362647836,0.2162909423405575,0.2287884259715245,0.2392431397153518,0.2510387005993995,0.2611277952061447,0.2711572453080846,0.28131027753194,0.2902298192149944,0.299274297156217,0.3074321161048689,0.3157869805667728,0.3232531637977568,0.3298401312990092,0.3367655219187372,0.3439211116540741,0.3497255231617694,0.3552366990568363,0.3612925403918872,0.362395170765304,0.3632334055979784,0.3643740722414646,0.3652489972052073,0.3657487987384895,0.3663216011042098,0.3667575882520854,0.3680916935643238,0.3696066153133524,0.3707796743744515,0.3714575850461665,0.3723920041330525,0.3736233654109372,0.3738271493823549,0.37375812806691,0.3745581188300296,0.3761982430537671,0.3783433858590962,0.3808350348517919,0.3821737225695966,0.3842856491404077,0.3886341827486939,0.3907848744836352,0.3905546654459449,0.3901176470588235,0.3901546452602998,0.3966828971393792,0.3935119887165021,0.4039680352714246,0.4054257724189902,0.0,2.10904628170499,59.67808373804096,222.7764406644229,345.0308695765675,fqhc2_80Compliance_baseline_low_initial_treat_cost,42 -100000,95743,40384,378.09552656591086,7438,76.51734330447135,5847,60.54750738957418,2415,24.858214177537786,77.32392886815877,79.68899186831703,63.31606620966248,65.06543205666681,77.04099595200519,79.40319595894005,63.21306347253312,64.96339593020691,0.2829329161535838,285.7959093769864,0.1030027371293655,102.03612645989324,66.06072,46.249537560837695,68997.9632975779,48305.92060081437,194.38787,114.96029013041472,202422.9865368748,119465.16385669372,243.23378,115.23441140126404,250621.23601725453,117645.90017965715,3881.07724,1731.830258500789,4019998.652643013,1775480.5061104372,1414.67189,608.653122843677,1464745.9970963935,623052.7928990707,2376.90044,973.2813258319958,2448413.837042917,990085.1317324588,0.37789,100000,0,300276,3136.271058980813,0,0.0,0,0.0,16090,167.47960686420942,0,0.0,22829,235.03545951140032,2181019,0,78367,0,0,2640,0,0,41,0.4177851122275258,0,0.0,0,0.0,0,0.0,0.07438,0.1968297652756093,0.3246840548534552,0.02415,0.3063200815494393,0.6936799184505607,25.52998794063835,4.614840165614581,0.3307679151701727,0.1956558919103813,0.2300324952967333,0.2435436976227125,11.463361447685305,5.899277993896464,25.427559380090308,13206.83387611645,65.71728816927079,13.298440247819734,21.94048253915173,15.043455883552792,15.43490949874652,0.5435265948349581,0.7762237762237763,0.6964839710444675,0.5858736059479553,0.1088483146067415,0.702231520223152,0.9446064139941692,0.8586497890295358,0.7376543209876543,0.1262798634812286,0.4919555857693179,0.704119850187266,0.6438356164383562,0.5377081292850147,0.1043324491600353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0046031086191688,0.0068808736070797,0.008829685626613,0.0110163974447654,0.0132892057026476,0.0152315315131619,0.0175365173987158,0.0198345755503072,0.0221460018429405,0.0244317541035709,0.0265200517464424,0.0285705473537031,0.030633581574529,0.0325050563420976,0.0344207392706524,0.0364593043730449,0.0384958691410304,0.0409184023625568,0.0429025368547168,0.0580374387939404,0.0718522780771041,0.0853877208619514,0.0982293068640646,0.1102757420783466,0.1256531765004548,0.1393118229371134,0.1520917405794478,0.1643683440327284,0.1761344754022791,0.1903398387461382,0.204364328427609,0.2167550878413637,0.2278179293453897,0.2391285220948903,0.2503848240883268,0.2612290901786611,0.2712736029527603,0.2810569585755814,0.2903595802030165,0.2982681875086938,0.3064236314617278,0.3140664476259385,0.3208333333333333,0.3273256451161148,0.3338355149419609,0.3398231198645173,0.3459958670306401,0.3523578354382731,0.3579650701243715,0.3599821770948664,0.3610279613204033,0.362513775466953,0.3638696395952333,0.3646999210122356,0.3655395760747778,0.3660571265443357,0.3674076753592686,0.3689887178784818,0.3698032200357782,0.3710149825391461,0.3712931188383948,0.3724327846797418,0.3738861080559359,0.3739430835386771,0.3741450247647999,0.3740737561868795,0.3748017509357356,0.3764693348485387,0.3790047716428084,0.3815026240677654,0.3845287269996245,0.3848160875652284,0.3863251807414244,0.3886659021406727,0.3893240149415592,0.3923100490196078,0.3962415033986405,0.3983324367939752,0.4007692307692307,0.0,2.0244031876439923,63.73592147884498,216.43691507952727,340.4829374177936,fqhc2_80Compliance_baseline_low_initial_treat_cost,43 -100000,95786,41015,381.63197126928776,7607,78.13250370617835,5929,61.24068235441505,2478,25.400371661829496,77.4066300966336,79.74495406469649,63.35719594835807,65.08748175763935,77.10319287815626,79.444113991284,63.24518363730552,64.97987673313219,0.3034372184773417,300.84007341248764,0.1120123110525526,107.60502450716558,65.10856,45.59570867481083,67972.7099993736,47601.41218425533,196.45865,115.83683156158136,204436.91144843717,120268.22454385964,244.21487,115.757590401521,251336.8133130103,118056.54394478376,3917.41649,1768.7490734078297,4048039.2750506336,1804949.3495690788,1497.63667,655.6141145928315,1544412.5341908005,665458.4880134679,2435.87748,1015.1276639985128,2499268.034994676,1020554.1293043564,0.38407,100000,0,295948,3089.668636335164,0,0.0,0,0.0,16141,167.82201991940366,0,0.0,22938,235.7860230096256,2187656,0,78616,0,0,2580,0,0,52,0.5428768295993152,0,0.0,0,0.0,0,0.0,0.07607,0.1980628531257323,0.3257525962928881,0.02478,0.3070383797974746,0.6929616202025253,25.77396537796383,4.590215498554276,0.3285545623207961,0.1944678697925451,0.2448979591836734,0.2320796087029853,11.336691609761282,5.849154618566585,26.27207163979864,13486.213257903046,66.717287972327,13.310439459858692,21.936720233032677,16.12315671176094,15.346971567674686,0.5560802833530106,0.7805724197745013,0.6878850102669405,0.5971074380165289,0.1380813953488372,0.6928864569083447,0.92507204610951,0.8282828282828283,0.7371794871794872,0.1688311688311688,0.5113051264830982,0.7183622828784119,0.6400550584996559,0.5587719298245614,0.1292134831460674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.0048974873760418,0.0072254188611846,0.0095404529429096,0.0116760407237517,0.0139813853078348,0.0164964009706164,0.0186393099576379,0.0208921051555664,0.0233636251995579,0.0257035685735954,0.0278279428665243,0.0298978396267138,0.0322932644300552,0.0344497015802331,0.0365945583148329,0.0388463010665921,0.0413418477359429,0.0435925406472391,0.0457252321659101,0.0605937288047164,0.0754669622874354,0.0891194968553459,0.1021472038004351,0.114315518840091,0.1298623072777419,0.1430979107705027,0.156793943453805,0.1691761015013925,0.1808715773235634,0.1950006994286206,0.2084148833789292,0.2207792207792207,0.2317143762082109,0.2437397677203854,0.2552513335841873,0.2660018294179327,0.2769393400958143,0.2862572469111991,0.2956817479130166,0.3039866725282861,0.3119971936389148,0.3189592926220096,0.3263063279002876,0.3328916819623908,0.3389675763707249,0.3455956081419833,0.3515651874785002,0.3570835495588998,0.3629005594276117,0.3644062073715914,0.3663149182702255,0.3678367116321774,0.3690151866450266,0.3703119184098861,0.3711778333512328,0.3713181119579167,0.3732146961289687,0.3747419778570088,0.3757707523969062,0.3772403449568804,0.3787630210907078,0.3801789718548944,0.3811324977618621,0.3819795123358823,0.3819029996612024,0.3816089334548769,0.3838053625876214,0.3841746344206974,0.3857551441963931,0.3896636587366694,0.3913389587645279,0.3939546599496221,0.3965320556696327,0.3970051474029012,0.3967954759660697,0.4017622507342711,0.4040097205346294,0.4114030184460592,0.407421875,0.0,2.5275855751193887,64.33741252100313,221.88192077147625,342.0136594256634,fqhc2_80Compliance_baseline_low_initial_treat_cost,44 -100000,95679,40727,382.393210631382,7513,77.24788093521045,5790,59.85639482017998,2376,24.383616049498844,77.29491858535671,79.69850431874072,63.29396199958445,65.07456065637182,77.00996119238755,79.41419043384701,63.189253694461655,64.9734843869267,0.2849573929691615,284.3138848937059,0.1047083051227986,101.07626944511594,65.41634,45.865174537189695,68370.63514459808,47936.51118551583,194.87632,115.23050910176518,202912.45727902677,119669.72805084204,238.53579,113.42687218790762,245363.40262753583,115518.40990689716,3823.06614,1708.1652372304898,3953078.773816616,1742665.9321590834,1422.47024,616.7887219724311,1469401.8123099112,627334.8814599434,2345.84506,965.541904722012,2409082.578204204,972252.5546336736,0.38087,100000,0,297347,3107.7561429362763,0,0.0,0,0.0,16129,167.8633764985002,0,0.0,22442,230.6044168521828,2184690,0,78348,0,0,2602,0,0,37,0.3762581130655629,0,0.0,0,0.0,0,0.0,0.07513,0.1972589072386903,0.3162518301610542,0.02376,0.3164604897753093,0.6835395102246907,25.583658222933657,4.61095462263022,0.3343696027633851,0.1986183074265975,0.229706390328152,0.2373056994818652,11.15451228535889,5.541804119877421,25.14637900940992,13240.80733439677,65.03095193542741,13.448296865697117,21.64864174843393,14.759311796175162,15.174701525121217,0.5400690846286701,0.7747826086956522,0.6802685950413223,0.5691729323308271,0.1179039301310043,0.7212996389891697,0.9066265060240964,0.8739669421487604,0.75,0.1773584905660377,0.4830874006810443,0.7212713936430318,0.6157024793388429,0.5155945419103314,0.1036970243462579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0044648746283499,0.0066114863149342,0.0089065121244471,0.0111566924885735,0.0134946439309775,0.0157863586268827,0.0179297521505486,0.0198878749437328,0.0220653766172568,0.0243114325280812,0.0263714814053831,0.0283709108122292,0.030342069733167,0.0325467608076303,0.0344492362425408,0.0363638247821175,0.0383744834603484,0.0403341586733526,0.0423203210507114,0.056639645662711,0.070820550942843,0.0840959657445111,0.0969177829925601,0.109481503365902,0.1243730026032297,0.1382787868493965,0.1511079403277501,0.1634055376855424,0.1755748945713642,0.189491715326108,0.2034774893695292,0.2167157752818762,0.2282853457510767,0.2392679197967421,0.2508832356882593,0.2618981197344194,0.2728029893751125,0.2820102214650766,0.2910642006168946,0.2997197582045997,0.3072240497289957,0.3145803976364433,0.3216916616676664,0.328835563983808,0.3362302023281938,0.3426240397027308,0.3488105547348581,0.3557478112210537,0.3616122688698544,0.3630694216211848,0.3641067987888797,0.3648286560428712,0.3662232772221337,0.3670607152428312,0.3675632498195056,0.3673372028305637,0.3684045640416831,0.3695185789067193,0.3708556965660844,0.3725353308552991,0.3734764598104039,0.3751925552343371,0.3743716893947932,0.3753403345001945,0.375131717597471,0.3739952173787778,0.3769194086790653,0.378167641325536,0.3808779314491882,0.383537007147798,0.3818971526623411,0.3855329949238578,0.3861560893254547,0.3883679075494932,0.3924718292975305,0.3981268232765239,0.4001638337087856,0.4113941385921665,0.4105102817974105,0.0,2.569253480744135,60.8042572345245,218.7158847612108,337.9323074485737,fqhc2_80Compliance_baseline_low_initial_treat_cost,45 -100000,95718,40470,380.31509225015145,7459,76.81940700808624,5770,59.66484882676195,2433,24.96918030046595,77.3593554540744,79.72911364230251,63.33143217950936,65.08316331005922,77.05831431575827,79.4300609771092,63.22034877556446,64.97641562830307,0.3010411383161369,299.052665193301,0.1110834039449031,106.74768175614702,66.0836,46.24407247907058,69039.8880043461,48312.82776392171,195.66539,115.9612939177574,203831.33788838045,120561.63304473288,236.22662,112.03210795202764,243336.7496186715,114364.93525114562,3851.06025,1716.3306822116192,3983765.070310704,1753537.1426603352,1396.64663,601.5605802738179,1443858.9502496915,613211.9262145257,2400.94748,997.9592105056636,2466591.069600284,1005987.4288083224,0.37891,100000,0,300380,3138.176727470277,0,0.0,0,0.0,16126,167.8472178691573,0,0.0,22226,228.70306525418417,2182684,0,78274,0,0,2684,0,0,45,0.4701310098414091,0,0.0,0,0.0,0,0.0,0.07459,0.1968541342271251,0.3261831344684274,0.02433,0.3190999744310918,0.6809000255689082,25.37119054592299,4.636800501004685,0.3256499133448873,0.1939341421143847,0.2369150779896013,0.2435008665511265,11.089369553106058,5.4754477958065255,25.9099538622714,13138.53646667776,64.89581290432643,13.136856443190633,21.04034273243041,15.2832927950377,15.435320933667704,0.5405545927209705,0.7801608579088471,0.6998403406067057,0.562545720555962,0.1153024911032028,0.6908037653874004,0.8969359331476323,0.8697674418604651,0.6832298136645962,0.1407407407407407,0.493278651173388,0.725,0.6494133885438234,0.5253588516746411,0.1092511013215859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181258355953,0.0043082911796608,0.0063624463453986,0.0086733968434522,0.0108497808689993,0.0130819428466714,0.0152403282532239,0.0174039973051875,0.0195150375171229,0.0216937283728168,0.0237504358348544,0.0255448961564535,0.0276868942527316,0.0299617750394098,0.0317740420833204,0.0338867409597452,0.0355848673720829,0.0374669363622218,0.0395691680701973,0.0415642318429934,0.056265664160401,0.0695422811626665,0.0826637014036044,0.0962215935978463,0.1077646661815727,0.1233060753842736,0.1375618142071863,0.1498370988692745,0.1621352997755691,0.1741682764541747,0.18832568263615,0.2021371037588775,0.2142833828377452,0.2259166028236839,0.2372784259289861,0.2485525410945229,0.2596076503709,0.2701379667349373,0.2804677300334904,0.2896456079222446,0.2984558040468583,0.3066133202306999,0.3147254359192751,0.3209610386499467,0.3284687484823466,0.3348818296079059,0.3411854579153673,0.3466810920893527,0.3527879643907685,0.3582109250240857,0.3594147497072402,0.3599807268722467,0.3614074595355384,0.3625028861694758,0.3638996569086129,0.3646023118732297,0.3644031586776597,0.36585445947721,0.3673186745545942,0.3685715817886063,0.368739660099263,0.3692774790149425,0.3710663966928204,0.3717321182866037,0.3731708498885551,0.3741630563213863,0.3733991845173146,0.3749920660107902,0.3775322283609576,0.380742932544284,0.382789863404314,0.3833932692823788,0.3827784891165173,0.3850345356868764,0.3864949332323136,0.386203604248717,0.3843783700508396,0.3904820012202563,0.4007170435741864,0.410019267822736,0.0,2.417459768519421,60.88665354967517,218.3197195837596,336.91719769952186,fqhc2_80Compliance_baseline_low_initial_treat_cost,46 -100000,95884,41012,383.5572149680864,7515,77.23916398982104,5798,59.843143798756834,2318,23.79959117266697,77.4394230829848,79.71899939804827,63.39129033748679,65.07723801824432,77.15436382903697,79.43445075519149,63.28850833908104,64.97736846214896,0.2850592539478356,284.5486428567767,0.1027819984057529,99.86955609535642,65.4368,45.84461218705788,68245.79700471404,47812.5778931395,195.87102,115.83890214705534,203670.99828959996,120214.59106407316,244.35696,115.6824547842575,251122.9923657753,117784.62013803628,3823.91988,1703.8582925171038,3949686.569187768,1739332.5399568167,1398.36417,599.1979290596936,1442326.6446956738,609340.6936594365,2278.77704,933.6221386575836,2341478.82858454,944534.2724642856,0.38245,100000,0,297440,3102.081682032456,0,0.0,0,0.0,16125,167.5357723916399,0,0.0,22920,235.23215552125484,2188986,0,78570,0,0,2606,0,0,43,0.4484585540861874,0,0.0,0,0.0,0,0.0,0.07515,0.196496274022748,0.3084497671324018,0.02318,0.3217205382970695,0.6782794617029304,25.59031444376356,4.613634585083715,0.3478785788202828,0.1919627457744049,0.2343911693687478,0.2257675060365643,11.37497025104662,5.761685081152243,24.4309795464152,13276.150936439684,64.88023774098886,12.895978530124529,22.55229847386105,15.097094220184982,14.334866516818304,0.5577785443256296,0.779874213836478,0.6931085770946951,0.5938189845474614,0.1229946524064171,0.727540500736377,0.9027355623100304,0.874468085106383,0.7766990291262136,0.16,0.5058558558558559,0.7283163265306123,0.6380090497737556,0.54,0.1142587346553352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689005871633,0.0046211844825489,0.006806723541525,0.0092294570967316,0.0114649293097665,0.0133188172808856,0.015492742551566,0.0176356589147286,0.0197682971680764,0.0220340023322899,0.0241605787063126,0.0263487307873838,0.0283309698501757,0.0303467018035081,0.0325367533351203,0.0345607368551484,0.0367584680005793,0.0387524608848824,0.0411640123751583,0.0432656797777939,0.0581238989711569,0.0726824375156733,0.0853325235347707,0.0982518767389364,0.1099905253184545,0.1253471012427016,0.1382995625509739,0.1507400992466182,0.1631238939939875,0.1753191853683072,0.1888995194736785,0.2021954750740108,0.2147380541162924,0.2271207552117477,0.2390659014446863,0.2514553221629518,0.2626663397454472,0.2726813213968796,0.2825264493328198,0.2916519015557663,0.3008153554765094,0.3090826298644435,0.3172029030046571,0.3249604903979694,0.3324673432719856,0.3388429752066115,0.3445334000500375,0.3501976686539463,0.3563767159621679,0.3621316746613252,0.3629647571757297,0.3635963706351388,0.3657705840957072,0.3671445915476672,0.3679253691434683,0.3677245435608381,0.367209895313663,0.3684987937174837,0.3696714866851263,0.3708043800575195,0.3715454323720895,0.372215070799089,0.3733159860662274,0.3744940629262729,0.3748227546924944,0.3756958055664445,0.3771430198781113,0.3788197606859081,0.3819626789903021,0.3850182510712585,0.3865178774766568,0.3858507176012378,0.3862527716186252,0.3901500577145055,0.3902975791790259,0.3952059744639846,0.3945471638984644,0.3981347150259067,0.3956814357823892,0.4029107621600919,0.0,2.4595487370720965,59.623474420106426,217.4384953069797,343.3732147420787,fqhc2_80Compliance_baseline_low_initial_treat_cost,47 -100000,95729,40771,381.41002204138766,7585,78.01188772472291,5874,60.692162249684,2402,24.694711111575383,77.34647984393533,79.69839084764544,63.33814763576003,65.07510869340273,77.05175195483083,79.40337105554785,63.2303761537671,64.96982357965496,0.2947278891044931,295.019792097591,0.107771481992934,105.28511374776885,65.63656,45.982207144431015,68564.51023200911,48033.274916097536,196.74448,116.1200919946744,204780.10843109197,120559.68607940084,240.36609,113.42572138668493,246440.05473785373,114919.70936726037,3866.7948,1722.585507479432,3999829.8530225954,1759986.2181569138,1431.06552,612.2657681713977,1478696.7481118576,623503.0658139585,2369.2831,978.7838183410686,2438994.056137638,991999.4558995968,0.38085,100000,0,298348,3116.568646909505,0,0.0,0,0.0,16279,169.34262344744016,0,0.0,22598,231.4136781957401,2184166,0,78390,0,0,2606,0,0,39,0.396953901116694,0,0.0,0,0.0,0,0.0,0.07585,0.1991597741893133,0.3166776532630191,0.02402,0.3100037561036685,0.6899962438963315,25.669521942339284,4.6119323053255465,0.3265236636023153,0.2012257405515832,0.2376574736125297,0.2345931222335716,11.04749866755486,5.443243436090614,25.482462435512133,13301.383644502192,65.83322446081735,13.776147383105306,21.42294072963004,15.548267461158051,15.08586888692396,0.5440926115083419,0.7580372250423012,0.6866527632950991,0.585243553008596,0.1204644412191582,0.6952380952380952,0.9014492753623188,0.8449438202247191,0.7032258064516129,0.1660377358490566,0.4983366600133067,0.6989247311827957,0.6388323150033944,0.5515653775322283,0.1096136567834681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0044501211365548,0.0067281639114683,0.0089087990898193,0.0111456871478837,0.0133165010588043,0.0151681957186544,0.0174527194602925,0.019799450072063,0.0220019862193236,0.0242929919330866,0.0265842793504813,0.0287047889293278,0.0309709447837595,0.0330671453922661,0.0350383975359427,0.0370757666742592,0.0389675063285886,0.0411222336566148,0.0436313262298326,0.0590802317690661,0.0732646738675374,0.0866381300096521,0.0994742376445846,0.1115246338917648,0.1264127205641367,0.1394460768194499,0.1528170962729614,0.1652841388292818,0.1779421221864952,0.1925221772457152,0.2059310210570714,0.2182588849038148,0.2295940112562155,0.2403020676464445,0.250733381302928,0.2611275302514916,0.2712301029304235,0.2810205309212243,0.2899648270568152,0.2989318489544155,0.3068733547821,0.3149486001231702,0.3218840353676532,0.328888510721058,0.3366526990386985,0.3426103286384976,0.3493547688505586,0.3549554926945735,0.3600719376892662,0.3621471366114319,0.3641477437233734,0.3656859700143998,0.3674335719046101,0.3690061093726717,0.3698030298374458,0.3699460488733735,0.3711394487865076,0.3721324966567225,0.3723880864485144,0.3735442966530581,0.375094324635609,0.376086589585619,0.3774103442061632,0.3792543391835547,0.3796347537354732,0.3812375824239108,0.3847641389804717,0.3859003397508493,0.3874680306905371,0.3901250459727841,0.3921652803863697,0.391894463119173,0.3947977770916949,0.3949636154729988,0.3957780458383594,0.3968720966243419,0.396168108776267,0.4055051078320091,0.4121863799283154,0.0,2.610573881274884,59.68667273223189,223.52106036403305,347.42131014889696,fqhc2_80Compliance_baseline_low_initial_treat_cost,48 -100000,95742,40645,380.3033151594911,7572,77.88640304150738,5908,61.13304505859497,2436,25.05692381608907,77.41222784566315,79.76766237554403,63.350809200748486,65.08961366470625,77.10650847049737,79.46172967661957,63.23896921789768,64.98062819965405,0.3057193751657792,305.9326989244653,0.1118399828508032,108.98546505219996,66.56694,46.56641390716873,69527.1876501431,48637.1907237686,196.45957,116.12344219286484,204607.52856635544,120699.64939361787,243.03328,115.38192451064532,250589.45917152343,118014.300101306,3900.45898,1748.338705860714,4038578.2728583063,1790862.5992343512,1400.74587,609.290710184431,1448544.5572476028,622138.9334034557,2402.73398,993.5253781536022,2473911.992646905,1006619.4509821573,0.38012,100000,0,302577,3160.3267113701404,0,0.0,0,0.0,16217,168.76605878297926,0,0.0,22924,236.21816966430612,2179670,0,78152,0,0,2639,0,0,38,0.3864552651918698,0,0.0,1,0.0104447368970775,0,0.0,0.07572,0.1992002525518257,0.3217115689381933,0.02436,0.3188971421377313,0.6811028578622687,25.380137256140948,4.609169441970489,0.3298916723087339,0.2044685172647257,0.2278266756939742,0.237813134732566,11.255706817775916,5.647315849160507,25.80405307453444,13205.513239059012,66.47703522584676,14.07262501353154,22.008370473461856,15.105192242612258,15.290847496241096,0.5429925524712255,0.7706953642384106,0.7049769112365315,0.5505200594353641,0.1153024911032028,0.7061252580867171,0.9096209912536444,0.8828451882845189,0.6899441340782123,0.1642335766423357,0.4897867564534231,0.715606936416185,0.6471787899388172,0.5,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0048548117366847,0.007152132451406,0.0095153952392558,0.0115800282638091,0.0137425561154374,0.0160527549585176,0.0184382110751711,0.020582734621713,0.0227742635468484,0.0247914403427142,0.0268749871681688,0.0287550118227613,0.031029226998414,0.0332267051903828,0.0353517603522771,0.037381435612807,0.0394575750658836,0.0413998170173833,0.0432726363598483,0.0580460610110036,0.0716535350681692,0.0845894829593731,0.0972607927291088,0.1092271168557108,0.1242050012169698,0.1382073269091989,0.1522023828536749,0.1648820210310336,0.1764598559730405,0.1909331033367473,0.2039804227304227,0.2163391933815925,0.2281272239557672,0.2386272241502781,0.2495451923503572,0.2605803840908582,0.2705479452054795,0.279958654217497,0.2889169199013818,0.2975878768218365,0.3052256810249923,0.3131047551370877,0.3214123006833713,0.3281077205390888,0.3340359700701404,0.3404337868111788,0.3465225683407502,0.351927777849632,0.357489195741541,0.3594258218865084,0.3606275845961504,0.3620709060213843,0.3631823561675471,0.3653575502585147,0.3656950022141123,0.3667182466999305,0.3677007448637145,0.367876442610934,0.3692184297299706,0.3700054222837163,0.3707809756771152,0.3711013696331564,0.3726678895798845,0.372124394767904,0.3733030492898914,0.3741364544675992,0.3766295106744757,0.3786988494423138,0.3790050422837178,0.3815735461801596,0.3844266666666667,0.3887062096876185,0.3900297732651347,0.3901362141850634,0.3925433388743766,0.3887448528290376,0.3901154547295928,0.3908965517241379,0.3922779922779922,0.0,2.1474697360046062,64.38590856447189,223.89941528845705,337.3372321184817,fqhc2_80Compliance_baseline_low_initial_treat_cost,49 -100000,95729,40654,380.4594219097661,7449,76.62254907081449,5771,59.689331341599726,2273,23.378495544714767,77.32373385663094,79.69386268186463,63.321321634088775,65.07523193472865,77.04848036156014,79.41734648530644,63.22101179915311,64.97677373980598,0.2752534950707996,276.51619655819104,0.1003098349356648,98.45819492267084,65.63084,45.98724721475424,68557.38595409959,48037.52163811312,195.47837,115.34386624734964,203598.6900521263,119890.53426094983,240.36471,113.93939102196066,246936.16354500724,115884.12059102238,3825.31546,1702.2668474051125,3957221.01975368,1739779.400497915,1401.60477,603.3006759754383,1449721.442822969,615937.4816094844,2243.92962,928.5242392173732,2309150.85292858,941719.2687790036,0.37991,100000,0,298322,3116.244816095436,0,0.0,0,0.0,16135,167.901054017069,0,0.0,22633,232.30160139560635,2184757,0,78410,0,0,2540,0,0,28,0.2924923481912482,0,0.0,1,0.0104461552925445,0,0.0,0.07449,0.1960727540733331,0.3051416297489596,0.02273,0.3152935184006112,0.6847064815993887,25.740668764190616,4.606896414263272,0.3391093398024605,0.1959798994974874,0.225784092878184,0.2391266678218679,10.91884823455739,5.383797448239862,24.197760161189887,13270.640415623402,64.77926753910552,13.13582829969996,22.057457893492515,14.490889325854749,15.095092020058312,0.540807485704384,0.7718832891246684,0.6980071538068472,0.5694551036070606,0.1014492753623188,0.7054992764109985,0.8991097922848664,0.8903225806451613,0.7335526315789473,0.1268115942028985,0.4889496468443837,0.7178841309823678,0.6380697050938338,0.5195195195195195,0.0951086956521739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002289766970618,0.004512864198282,0.0067803491676816,0.0086681706400016,0.0107744587335178,0.0131202314376228,0.0154407865214376,0.0174338443311919,0.0197662409374904,0.0217113011418915,0.0239255058403667,0.0263636270270825,0.0284659067528085,0.030595315382158,0.0329682806742292,0.0352217512664116,0.037491973403484,0.0394874721170306,0.0413296179999584,0.0434497202338157,0.0584286087183503,0.072644116046385,0.0856813175285849,0.0988198418041063,0.1109201341291098,0.1258603736479842,0.1402535405505755,0.1534213634380686,0.1659244069932609,0.1783022206019536,0.1927992334112124,0.2062001752317494,0.2184176760976882,0.2296582187137827,0.240999240999241,0.2526991860915785,0.2632353597074171,0.2732440569810812,0.2834610849056603,0.2918621415657825,0.3000566231785248,0.3086666432969935,0.3165740631280293,0.3236787887499401,0.3302976212159848,0.3371206053062884,0.3436799599323859,0.3496592573721419,0.3549177776624994,0.3600681467002998,0.3605317442126977,0.3616252448073263,0.3623552668737644,0.363375380600261,0.3644250980158316,0.3646303633403974,0.3645991882293252,0.3659382758677387,0.3668832279022055,0.367337815606895,0.3684794046903187,0.3708922051119225,0.3711955147120816,0.3719427052835458,0.3731133561063062,0.3746485534855611,0.3744174003107198,0.3769856398525861,0.3785808100528913,0.3790952265958303,0.3811700604885256,0.3813915857605178,0.384419064633446,0.3860396653238301,0.3856246434683399,0.3849397590361446,0.3881954076128833,0.391473662635786,0.398723640399556,0.402491241728299,0.0,2.237063749040884,61.00672040920757,216.29266189837367,338.43582902581966,fqhc2_80Compliance_baseline_low_initial_treat_cost,50 -100000,95774,40679,381.52316912732056,7536,77.40096477123228,5884,60.788940631068975,2484,25.5184079186418,77.38153749659537,79.72167869790646,63.350937847410606,65.08242341684732,77.0777662079477,79.41873169780264,63.24044671910959,64.97517997651835,0.3037712886476669,302.9470001038135,0.1104911283010139,107.24344032897191,65.1772,45.65521058281643,68053.12506525779,47669.73352143216,196.52923,116.19448471429271,204560.63232192452,120685.13816738788,244.50383,116.19512778444454,251101.4784805897,118106.77190183336,3902.63132,1749.2109262880915,4036117.9338860232,1787944.1447101464,1426.19227,622.5170622102181,1470441.5290162258,631732.151891253,2448.27498,1009.3709863098338,2517627.477185875,1020952.7448992294,0.3805,100000,0,296260,3093.323866602627,0,0.0,0,0.0,16238,168.8662893896047,0,0.0,22966,235.617182116232,2186670,0,78539,0,0,2619,0,0,39,0.3967673898970493,0,0.0,0,0.0,0,0.0,0.07536,0.1980551905387647,0.3296178343949044,0.02484,0.321865154379332,0.678134845620668,25.247284222253963,4.636273118674736,0.3246091094493541,0.2012236573759347,0.2328348062542488,0.2413324269204622,11.095071118847237,5.463169559507924,26.364836273278357,13233.36950018941,66.58770476976339,13.81156331622214,21.77469175417385,15.52142776217068,15.480021937196732,0.5496261046906866,0.7609797297297297,0.7089005235602094,0.5985401459854015,0.1119718309859155,0.7171929824561404,0.9263456090651558,0.8409090909090909,0.7305389221556886,0.1732283464566929,0.4960753532182103,0.690734055354994,0.6640953716690042,0.555984555984556,0.0986277873070325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382466730134,0.0043688041032294,0.0066657197354003,0.0089779917329352,0.0111535880594586,0.0134063540213972,0.0154727443225832,0.0177282887149287,0.0196100472112653,0.0218552397323347,0.0238763757096304,0.0261645213606782,0.0282850092535471,0.0302400049421867,0.0324803251126857,0.0346755111951479,0.0365403123156685,0.038624607378689,0.0407330071368466,0.0424492940735496,0.0573244419398265,0.0713732873130425,0.0850762698537506,0.0982619477953848,0.1107329153274672,0.1261889663918833,0.1398700706874807,0.1530863935018818,0.1651245931380396,0.1775431450316218,0.1918468841835581,0.2053040299379177,0.2176053735625937,0.2290812925504595,0.2403889518320115,0.2509770057679321,0.2613185244658548,0.2716940406731645,0.2813942673064053,0.2905946713056216,0.299038828550609,0.3072380729653882,0.314610331972306,0.3223807983127823,0.329328879441239,0.3363603878901389,0.3427517198248905,0.3487928115971541,0.3542147132751159,0.3593863459329575,0.3604668400695408,0.3618779963630352,0.3623734699927999,0.3631293009779066,0.3645440591329746,0.3647779432308377,0.3656977942692228,0.3662154614449519,0.3672946521598032,0.3684125877874872,0.3697223421630653,0.3702485235245154,0.371427369660771,0.37218459599937,0.3728301339393646,0.3727723681793128,0.3717930342554106,0.374257363165213,0.3768126168718907,0.3795500859072202,0.3818131767296752,0.3871625610476037,0.3896161951593332,0.3924980665119876,0.3948325358851675,0.3944865775851691,0.3958817154358259,0.3956923076923077,0.3996062992125984,0.3989859594383775,0.0,2.4484973192787143,62.88605494491814,230.47396583881263,334.90493780052134,fqhc2_80Compliance_baseline_low_initial_treat_cost,51 -100000,95860,40996,383.715835593574,7593,77.96786981013979,5917,61.17254329230127,2415,24.78614646359274,77.37299817448195,79.67568596366931,63.35320242165369,65.05746983612502,77.07095092443943,79.37252634179471,63.24171030279219,64.94831029788094,0.30204725004252,303.1596218745989,0.1114921188614985,109.15953824408577,65.08106,45.65920440980909,67891.7796786981,47631.13332965689,198.70356,117.7722945067803,206705.2263717922,122278.70280281694,243.14439,115.24924750660756,250660.6300855414,117839.1173766566,3906.75774,1759.0518555804945,4042237.0331733776,1801776.0646573063,1443.58896,624.9402059300429,1491954.902983518,637957.812085769,2383.19446,996.5312179770266,2449290.3400792824,1008675.9130240212,0.38413,100000,0,295823,3085.9899853953684,0,0.0,0,0.0,16430,170.80116837054038,0,0.0,22910,235.96912163571875,2184192,0,78447,0,0,2681,0,0,36,0.3755476736907991,0,0.0,0,0.0,0,0.0,0.07593,0.1976674563298883,0.3180561043065982,0.02415,0.3208208208208208,0.6791791791791791,25.583117645511088,4.565060134767285,0.3189116106134865,0.2038195031265844,0.2404934933243197,0.2367753929356092,11.035871772906033,5.514766170739522,25.79955715047597,13331.747300878982,66.73558084073305,14.06449221358994,21.35625696394391,15.897730185025354,15.417101478173835,0.5382795335474058,0.7719734660033167,0.6788553259141494,0.5586788475052705,0.1270521056388294,0.6867388362652233,0.9144385026737968,0.8542094455852156,0.6646153846153846,0.1404109589041096,0.4888488398287903,0.7079326923076923,0.6178571428571429,0.5273224043715847,0.1235347159603246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888393761393,0.0048040378241965,0.006928172200075,0.0090775244961161,0.0111726732069333,0.0135791284520404,0.016104044357469,0.0183695962770951,0.0205480851759512,0.0227865715776656,0.02485553870743,0.0271787084726981,0.0292896489352955,0.031570062481343,0.0336285192936155,0.0355250792601695,0.0371109915576891,0.039283345768051,0.0412153812604492,0.0430734016542683,0.0585892289244564,0.0723317101715814,0.0860378386306019,0.0988679800058806,0.1102966730908976,0.1257698198911952,0.1398308677037853,0.1529154084974269,0.1650477146089964,0.1780333068992863,0.1919169088365084,0.2053707527486189,0.2181579033187307,0.2298581568039895,0.24073217980892,0.2521550291399827,0.2628406884082234,0.2733330331817568,0.283792986040177,0.2927315424709319,0.3010368210326552,0.309256267996348,0.3167008160316464,0.3236662270710946,0.3304776833995601,0.338011320894326,0.3439082476811231,0.3491115215591364,0.3553146798744911,0.3609693540283984,0.3620294157333693,0.363564875491481,0.3652989979223496,0.3666193017051386,0.3682790891750119,0.3689545545299565,0.3692102420738293,0.3706790072627262,0.3716944592023856,0.3730144501416329,0.3741634709376645,0.3750967357872805,0.3759490210099055,0.376489063376332,0.3786801051286379,0.3805735817458656,0.3814498077254204,0.3831802343997466,0.3842941571999858,0.3865133548928015,0.3882492690058479,0.3918528814284187,0.3928798474253019,0.3926725800231392,0.3940173382871296,0.3961139587555132,0.4027584069425073,0.4015276630883567,0.3909499718943227,0.3908845113943607,0.0,2.1175380985103174,65.5992503801147,218.91165168000092,342.7934214248369,fqhc2_80Compliance_baseline_low_initial_treat_cost,52 -100000,95799,40494,380.4841386653305,7693,79.1761918182862,5907,61.15930228916794,2418,24.937629829121388,77.39816222968327,79.72728106564294,63.35848721039546,65.0795086868781,77.11143117845954,79.43790522567633,63.25488398023978,64.97683365208084,0.2867310512237253,289.37583996660976,0.1036032301556773,102.67503479725804,66.04136,46.23370215097838,68937.42105867493,48261.15319677489,195.70144,114.62982596380247,203771.9287257696,119145.74530994229,238.44146,112.11134295773604,245637.2509107611,114442.12498021756,3906.77184,1716.8167540344336,4050281.54782409,1764518.390158197,1426.68195,605.2989438186104,1479536.1746991095,622289.2231696603,2381.6032,965.7322953178036,2459749.37107903,986615.2889502412,0.37912,100000,0,300188,3133.5191390306786,0,0.0,0,0.0,16155,168.1019634860489,0,0.0,22452,231.0984457040261,2185469,0,78382,0,0,2592,0,0,39,0.3966638482656395,0,0.0,0,0.0,0,0.0,0.07693,0.202917282127031,0.3143117119459249,0.02418,0.31452802359882,0.68547197640118,25.50296439600994,4.618198898588354,0.3341797866937532,0.1934992381919756,0.23379041814796,0.2385305569663111,10.99331240703461,5.403745322585828,25.253210719813293,13187.750672382226,65.89885293065774,13.09698363928712,22.374791729862213,15.311530171610777,15.115547389897628,0.5393600812595226,0.7664041994750657,0.7021276595744681,0.5626357711803042,0.1043293115684882,0.7034220532319392,0.8961937716262975,0.8565891472868217,0.6580882352941176,0.1890756302521008,0.4923780487804878,0.7224824355971897,0.6474622770919067,0.539224526600541,0.0871050384286934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020862449616171,0.0043578725474298,0.0065738749340583,0.0087537574132748,0.0109083515478066,0.01278319457732,0.0153665868446527,0.0172835979267844,0.0192995361572569,0.0214039431547284,0.0237378083763625,0.0257773217034376,0.0276967031160075,0.0297553494786895,0.0317542141347492,0.0335450555125225,0.0355871886120996,0.0372670807453416,0.0394899560414436,0.0414445184938353,0.0559358110223075,0.0700466419861538,0.0828711905984966,0.0951049832909476,0.107646575169186,0.1238755641998668,0.1373451552689631,0.1505916404188303,0.1626670084265163,0.1737274959522201,0.1893489849765763,0.2021803551729359,0.2149150921871774,0.2266500622665006,0.2380868647793212,0.2496874343058828,0.2610411765361758,0.2715341273322312,0.28090575969687,0.2902727033248961,0.2992136000925176,0.3073927686047055,0.3149693934335003,0.3220249583428236,0.3284713197877069,0.3355221012171684,0.3415265685980186,0.3473400399343753,0.3535324749345838,0.359565986430476,0.3613371779670152,0.3629943697259199,0.3640580936266215,0.3650857894508608,0.3670081662954714,0.3671738664543979,0.3669437188316314,0.3679076412723958,0.369040894229617,0.3701457830247742,0.3710022522522522,0.3719938090324629,0.3733546406493124,0.3746106442577031,0.3761061946902654,0.3777696488294314,0.3793496212768381,0.381801007556675,0.3828681762331051,0.3836008263149531,0.3860211606284065,0.3888593317727176,0.3855019523869505,0.3889909661613842,0.393266951161688,0.3957605684692279,0.3950693374422188,0.3951299365664006,0.3949860724233983,0.3928571428571428,0.0,1.9088648024665589,58.29553509853724,229.2246794475909,349.8877584132284,fqhc2_80Compliance_baseline_low_initial_treat_cost,53 -100000,95872,40856,382.3639853137517,7584,77.87466622162884,5957,61.48823431241656,2398,24.60572429906542,77.3584022892406,79.64232529995186,63.35300198276878,65.04221246901062,77.06348324591356,79.34585741587284,63.24575483465814,64.93704671641318,0.2949190433270416,296.46788407902136,0.1072471481106376,105.16575259744344,65.82598,46.13875235426386,68660.27620160213,48125.36752572582,197.72159,116.31535650964054,205598.8818424566,120696.9184429888,243.55487,114.99364351791108,250497.2254672897,117173.48858844944,3958.09187,1763.944086757493,4088400.5131842457,1800377.3000773075,1491.71299,643.1191363411473,1536725.623748331,651604.8623004,2376.83226,986.8195518064916,2440762.328938585,996981.6830688756,0.38253,100000,0,299209,3120.92164552737,0,0.0,0,0.0,16268,169.01702269692925,0,0.0,22909,235.25116822429908,2182643,0,78354,0,0,2580,0,0,47,0.4902369826435247,0,0.0,1,0.0104305740987983,0,0.0,0.07584,0.1982589600815622,0.3161919831223628,0.02398,0.3185463659147869,0.681453634085213,25.39518890525368,4.642072186379466,0.3315427228470706,0.1974148061104582,0.2262884002014436,0.2447540708410273,11.026227724568589,5.407588987046201,25.62786052795277,13338.419661663434,67.17139116524245,13.848830452426,22.394298617150017,14.87474941472324,16.0535126809432,0.5496055061272452,0.7678571428571429,0.6992405063291139,0.6045994065281899,0.1200274348422496,0.7095406360424028,0.916010498687664,0.8851063829787233,0.7252747252747253,0.140893470790378,0.4997798326728313,0.6968553459119496,0.6411960132890365,0.573953488372093,0.1148243359040274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020350514837651,0.0044178293866715,0.0065117505654674,0.0090263887337672,0.0112116283797519,0.0133524664407331,0.0156078079791352,0.0178999439033097,0.0200320594631571,0.0222656130199654,0.0244044755187486,0.0266039244633081,0.0288082326842494,0.0310243380583043,0.0331722297220705,0.0351246708997986,0.0370427838464084,0.0391754500513011,0.0411444000207695,0.0429571676775663,0.0579306750065155,0.0722964572646447,0.0855464332090646,0.0977487031942373,0.1099758792487808,0.1256417298713371,0.1404287788387151,0.1540089323692046,0.1670918503495757,0.1789998392024441,0.1938189845474613,0.2064687111255341,0.219462080361802,0.2313368387682149,0.2423889261486702,0.2543822761276614,0.2649082696704399,0.2749842583430781,0.2850821959769919,0.2941783058537759,0.3023936847466259,0.309376682349086,0.31707403765269,0.3241858455926468,0.3309775204359673,0.3380526822524502,0.3440028095172396,0.3499011542631209,0.3556944101638109,0.3609548144519613,0.3627709135102289,0.3634845494569192,0.3654321685436125,0.3665206925553203,0.3679875865361661,0.3678120239432502,0.3685742923965443,0.3698252677083505,0.3711419885612215,0.3718236106378781,0.3725877812294079,0.3734968495955159,0.3734426713325041,0.3747160560466005,0.3767796610169491,0.3772878426854494,0.3768988248781886,0.3792253743602704,0.3812665373081672,0.3836038052602126,0.3838411691713773,0.3852239923019352,0.3865556896880361,0.3911828624650729,0.3937734217353704,0.4012135922330097,0.3996215108027125,0.3976849937990905,0.3981610476455837,0.3997691419776837,0.0,2.48741919919375,62.31632944394546,229.20311194228807,347.39971855588936,fqhc2_80Compliance_baseline_low_initial_treat_cost,54 -100000,95724,40733,381.973172872007,7483,76.83548535372529,5833,60.25657097488613,2335,23.891605031131167,77.38965647392791,79.75649037764099,63.34469261111818,65.09394114686484,77.10237169074274,79.47067343062272,63.23843730857003,64.99136455657667,0.2872847831851715,285.81694701826166,0.1062553025481563,102.5765902881659,66.81026,46.8067443630658,69794.6805398855,48897.6059954304,197.75743,117.20520922054008,205927.83418996283,121777.3382020602,244.2068,115.81414420334777,251210.8666583093,117969.53102466614,3835.00582,1722.46274263481,3964169.497722619,1757258.9242351025,1409.23733,610.5009828793721,1453929.495215411,619513.521038999,2291.51252,953.6078712416512,2347326.8354853536,956956.0134539842,0.38111,100000,0,303683,3172.485479085705,0,0.0,0,0.0,16335,169.93648405833437,0,0.0,23027,236.57598930257825,2177542,0,78151,0,0,2636,0,0,35,0.3656345326146002,0,0.0,2,0.0208934018636914,0,0.0,0.07483,0.1963475112172338,0.3120406254176132,0.02335,0.3228316326530612,0.6771683673469387,25.43697860172651,4.564629606557705,0.3260757757586148,0.2082976170066861,0.2391565232298988,0.2264700840048003,11.14961053597149,5.610362680771647,24.67768282439704,13211.996812857808,65.62496742380893,14.378268136270297,21.356081052370207,15.436602230533452,14.454016004634989,0.5530601748671352,0.7637860082304527,0.7029442691903259,0.5756272401433692,0.1196063588190764,0.722488038277512,0.8900255754475703,0.8972746331236897,0.7476038338658147,0.1666666666666666,0.4963386727688787,0.7038834951456311,0.6378947368421053,0.5258780036968577,0.1068334937439846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080868649218,0.0043997039830499,0.0065456316788276,0.0087876140358006,0.0110673705839868,0.0133599446051077,0.0155177863194706,0.017660089219179,0.0195845939978739,0.021700633617557,0.0236067119735129,0.0259634930086442,0.0282603779015975,0.0304281565994604,0.0324799900981929,0.0346114096734187,0.0367290726090378,0.0388956902454713,0.0408568399609204,0.0428127865299658,0.0568275545254278,0.0704304958080823,0.0837740283723663,0.0963017518017781,0.1085791450394564,0.1243507970255661,0.1376730861053637,0.1506040125592039,0.1632382783295952,0.1751305784060318,0.1890008830307337,0.2025835488093821,0.2158144289536072,0.2285733035831474,0.2394589418769742,0.2512101374627543,0.2621257418232118,0.2713967761516153,0.2807240393775801,0.2895631373536447,0.297627448031742,0.3063016710127811,0.3140255439924314,0.3214076105834301,0.3289935510511422,0.3359091917473933,0.3425792642475372,0.3482428115015974,0.3543369296325558,0.3600781487201827,0.3613984055160525,0.3630568863924225,0.364337043821333,0.3653529190642801,0.3665750983740441,0.3672928819683677,0.3674551063998101,0.3683684176011542,0.3697300059620134,0.3711400790682765,0.3719926778242677,0.3725749472063786,0.3732033391217021,0.3740923613128086,0.3762135922330097,0.3766535340621494,0.3778759800427655,0.3779530042580035,0.3796914168696819,0.3819586184816104,0.3829249229920463,0.384880279795534,0.3848061029879212,0.382834513746097,0.3840179657527837,0.3824053187700344,0.3836266258607498,0.3839935327405012,0.3822075782537067,0.3862760215882806,0.0,2.606056278729201,64.42746767999347,216.72048802552288,332.8919067859739,fqhc2_80Compliance_baseline_low_initial_treat_cost,55 -100000,95759,40775,381.5829321525914,7597,78.13364801219728,5890,60.89244875155338,2390,24.5721028832799,77.34687979821054,79.70543897150051,63.33382307926016,65.08106974320202,77.05292736452282,79.41014312647646,63.22809580384712,64.97724353569623,0.2939524336877213,295.29584502405726,0.105727275413038,103.82620750579008,65.14046,45.65129918145913,68025.41797637819,47673.116032392914,195.30193,114.96887320961535,203296.1288234004,119408.11953796478,238.40142,112.45631063682364,244795.02709928047,114307.35335825414,3895.14164,1732.738216506299,4027589.083010474,1769655.901921915,1432.44713,613.1961517969313,1478921.01003561,623502.5382787975,2356.76922,968.147746649088,2424250.9215843943,981075.0852412208,0.38214,100000,0,296093,3092.064453471736,0,0.0,0,0.0,16084,167.2845372236552,0,0.0,22423,230.03581908750093,2190387,0,78590,0,0,2507,0,0,40,0.417715306133105,0,0.0,1,0.0104428826533276,0,0.0,0.07597,0.1988014863662532,0.3145978675793076,0.0239,0.31267921705523,0.68732078294477,25.556726639735874,4.665343046998218,0.3297113752122241,0.1876061120543293,0.2505942275042445,0.232088285229202,11.029820593922691,5.427366009301494,25.43079544404024,13347.891312138325,66.21022939563971,12.87366104616082,21.79872070618683,16.47967259420237,15.058175049089686,0.5455008488964347,0.7728506787330317,0.6956745623069001,0.5711382113821138,0.1207022677395757,0.710999281092739,0.9483282674772036,0.8553459119496856,0.7358490566037735,0.1310861423220973,0.4943320737941765,0.6984536082474226,0.6436860068259386,0.5259067357512953,0.1181818181818181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0046546059303127,0.0071065989847715,0.0094311818449749,0.011475543257101,0.0136453432720311,0.0155979202772963,0.0177725602286647,0.0199648340864018,0.0225048122209935,0.0248418548858381,0.0269526557350117,0.0289795456648944,0.0310687612670615,0.033242169358584,0.0352188385122702,0.03730972351662,0.0390979159534849,0.0413089124966216,0.0432351379213395,0.0578129403291966,0.0717080212561195,0.0847514495716817,0.0975678970823173,0.1101063437358375,0.125437233828953,0.1396741607572529,0.1527861950177028,0.1656568027138315,0.1773488710852148,0.1919713446706896,0.205805120003458,0.2185829748403076,0.230232481955076,0.2414618874474091,0.2533356935808643,0.264381912236889,0.2744461055968346,0.2838630612638578,0.2924334909927965,0.3019854676725135,0.3101656837966863,0.3172773009766203,0.3245126016162682,0.3315643747115828,0.3384545309056887,0.3448496000600848,0.3510982158764094,0.357406519965289,0.3622714199013114,0.3641774964648845,0.3651311712456104,0.3665304396843292,0.3675917895345476,0.3686526995078286,0.3691831037761894,0.3692427295371971,0.3702727632099091,0.3716528953954812,0.372984593335722,0.3749294502765549,0.3756033609439246,0.3759843348633511,0.3771215054247512,0.3786167789463481,0.3796181698485846,0.380753619850888,0.3831591024987251,0.384667306120999,0.3870824949698189,0.3899731754694293,0.3908664979266519,0.3913544668587896,0.3940095723328701,0.3949165402124431,0.3956610332014862,0.3988484282601929,0.3947149396587598,0.3903697334479794,0.3919577579203899,0.0,2.2665328470188872,61.50366696216833,224.39517743559068,345.1174184271513,fqhc2_80Compliance_baseline_low_initial_treat_cost,56 -100000,95757,40896,382.2905897219002,7426,76.50615620790124,5768,59.70320707624508,2347,24.09223346596071,77.36211040614715,79.72338302220244,63.32787542470121,65.0753225472583,77.0875054993896,79.44943944272528,63.22853488471743,64.97907294543108,0.2746049067575598,273.9435794771623,0.0993405399837854,96.24960182721054,65.14728,45.64761015344076,68033.7312154725,47670.05585912524,195.45481,115.28459434805816,203564.97175141243,119844.18313191766,240.35024,112.95107608522744,248137.2223440584,115761.86641543527,3854.90017,1706.8002726651018,3990029.439101058,1746869.4488194615,1418.10605,609.6098644436207,1465872.5315120567,621672.0640244092,2319.03416,945.3880090191678,2381808.306442349,953293.2827970876,0.38194,100000,0,296124,3092.4423279760226,0,0.0,0,0.0,16090,167.45512077446034,0,0.0,22561,232.7140574579404,2187698,0,78488,0,0,2616,0,0,41,0.4281671313846507,0,0.0,1,0.0104431007654792,0,0.0,0.07426,0.1944284442582604,0.3160517102073795,0.02347,0.3022512151445382,0.6977487848554618,25.79680709656386,4.624343607688185,0.3347780859916782,0.1879334257975034,0.2314493758668516,0.2458391123439667,11.296507133504315,5.658125055988233,24.57480348836977,13287.690171657265,64.61780962417357,12.587841126581752,21.668706657968976,14.89306264329218,15.468199196330657,0.5426490984743412,0.7739852398523985,0.6866908337648887,0.59625468164794,0.119181946403385,0.7020802377414561,0.9281437125748504,0.8590909090909091,0.7333333333333333,0.1360294117647058,0.4941203075531434,0.7053333333333334,0.635814889336016,0.5565217391304348,0.1151832460732984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896973749531,0.004603808789827,0.0070246675464419,0.0090126705752055,0.0113015614668633,0.0137491343137654,0.015979034527767,0.0180307114269378,0.0201122687907076,0.02209797657082,0.0244482730330625,0.0266655710088953,0.0288059916462624,0.0310278023948393,0.033232877843372,0.0355540392448772,0.037774142108642,0.039892099393059,0.041879755519521,0.0439247955835633,0.0589985281683524,0.0722401238701037,0.0857960861631394,0.0985580715390035,0.1105743367965824,0.1256081567034733,0.1395654756853093,0.1519855211327584,0.1635147552193516,0.1754002208854719,0.1900315552540036,0.2032939088656357,0.2153292214643909,0.2276585504583141,0.2385024266235267,0.2501467997651204,0.2614001786511836,0.2724582897386569,0.2822848715185206,0.2918422499083913,0.3003171222888359,0.3085147449319779,0.316598021114425,0.3243107108163534,0.3306567214946913,0.3377102135424372,0.343966035467388,0.3504233242090521,0.3557113060151057,0.3618549622352506,0.3628897399935268,0.364560799173269,0.3663254659786256,0.3671494089902921,0.3688569686696109,0.3689576402410044,0.3688583070410476,0.3702377236360052,0.3707861328959284,0.3720681160972475,0.3726742987764891,0.3734797030484915,0.3740885089263264,0.3752855287320285,0.3765085635824922,0.3769857859531773,0.3771942343370915,0.3784737538597265,0.3773909985935302,0.3785771065182829,0.3793480738545703,0.3800859370855657,0.3829385080645161,0.3837579617834395,0.3857811038353601,0.3904174573055028,0.3881006864988558,0.3913218159903576,0.3931787175989086,0.3982952344052692,0.0,1.9761047259031368,59.84074340473076,218.6928929228876,339.19678005520007,fqhc2_80Compliance_baseline_low_initial_treat_cost,57 -100000,95763,40444,378.611781168092,7451,76.66844188256424,5799,60.0022973382204,2312,23.84010525986028,77.32840490063373,79.68843230119286,63.31625382636724,65.06450691447708,77.05057303539442,79.40841766925179,63.215726058028544,64.96543121753594,0.2778318652393068,280.01463194107146,0.1005277683386935,99.07569694114216,65.4027,45.83436632229719,68296.41928511013,47862.291618158575,196.13908,115.72586305695796,204268.29777680317,120297.22654569922,237.74926,112.49918553942872,244334.75350605135,114540.92359503466,3814.51974,1696.5015510554204,3949324.38415672,1737595.2309925752,1388.283,602.0435818623134,1433207.0945981224,612186.1196842799,2273.33382,934.5527253257164,2344828.4619320617,950972.8515884406,0.37971,100000,0,297285,3104.3826947777325,0,0.0,0,0.0,16224,168.83347430636047,0,0.0,22386,229.81736161147836,2184137,0,78435,0,0,2629,0,0,40,0.4176978582542318,0,0.0,0,0.0,0,0.0,0.07451,0.1962287008506491,0.3102939202791571,0.02312,0.3139327559857361,0.6860672440142639,25.58531061880517,4.49756909745112,0.3309191239868942,0.2048629073978272,0.2310743231591653,0.2331436454561131,11.181919883113617,5.678514558043335,24.48247525973458,13226.17095948354,64.97284982009792,13.71154427036744,21.642364474513013,14.831128512307476,14.78781256290998,0.5426797723745473,0.7533670033670034,0.6852527357998958,0.5865671641791045,0.1116863905325443,0.6865342163355408,0.9015384615384616,0.8280254777070064,0.7301038062283737,0.1423357664233576,0.4986486486486486,0.697566628041715,0.6388121546961326,0.5470980019029495,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293606801576,0.0045234183249153,0.006893960930837,0.0089635968210735,0.0112612154381396,0.0139341590612777,0.0161629140153369,0.0184281455466165,0.0207323805434582,0.0229082645812434,0.0249500281892265,0.0270858574450171,0.0291855203619909,0.0311882003955174,0.0331967762906704,0.0351232621840922,0.0371091121761363,0.039211009364597,0.0411193781694238,0.0428465792515908,0.0575120556123833,0.0718738233694515,0.0851298074906681,0.098142678453178,0.1096020314623789,0.1259710200069755,0.1400941595622852,0.1533844827769678,0.1654171472510572,0.1767184534722892,0.1901864277175259,0.2027350131449405,0.2152594188235038,0.226483389103952,0.2377524627153156,0.2499944620428416,0.2617633928571428,0.2720508779828905,0.2818311874105865,0.2907751022887465,0.2995046066947543,0.3079641047840788,0.3153306803107826,0.3227099763525274,0.3293891598059126,0.3360468701819303,0.3421894404094381,0.3481697754771588,0.3536260854891678,0.3588774174785517,0.3601117378748212,0.3613891416439187,0.3627017638004321,0.3638389304472386,0.3653247546281816,0.3655089783567072,0.3652477763659466,0.3657660033960335,0.3669724770642202,0.367798372351486,0.3691521154822096,0.369901045075059,0.3708814831903693,0.3725551767450206,0.3727127890696664,0.371101109482939,0.3724367052354221,0.3758954776406728,0.3779037026608475,0.3788990825688073,0.3791223891535361,0.3776689207177466,0.3798386079939478,0.379265592793343,0.3833301868982443,0.3839115969581749,0.3838928241453649,0.3800494641384996,0.3756983240223464,0.3693159351522341,0.0,2.145058783537644,60.09357196245294,221.1016978826217,338.94090423199407,fqhc2_80Compliance_baseline_low_initial_treat_cost,58 -100000,95735,40746,382.03373896694,7608,78.41437300882644,5927,61.37776152922129,2412,24.870736930067373,77.31464774318667,79.68094775979537,63.30648041847581,65.05654787271601,77.0216669656354,79.38511485006097,63.2003499952714,64.95168059663679,0.2929807775512643,295.8329097344006,0.1061304232044051,104.86727607921864,66.1771,46.34049011599608,69125.2937797044,48404.961733949,195.37728,114.6419906750194,203530.5896485089,119199.0979529342,238.75887,113.22987520132062,246011.29158614928,115692.26966589475,3910.91352,1743.43833779694,4051875.594087847,1787921.977988183,1456.90863,628.5385299365233,1506464.626312216,641289.6974254182,2375.17172,974.4250363710582,2450079.615605578,990536.4793441052,0.38164,100000,0,300805,3142.0588081683813,0,0.0,0,0.0,16127,167.89053115370555,0,0.0,22533,232.02590484148956,2180553,0,78229,0,0,2633,0,0,38,0.3969290228234188,0,0.0,0,0.0,0,0.0,0.07608,0.1993501729378471,0.3170347003154574,0.02412,0.3214018458468446,0.6785981541531554,25.4690981095641,4.551482896446855,0.3414881052809178,0.1941960519655812,0.2304707271806985,0.2338451155728024,11.021200557014303,5.503126953283115,25.581815394689013,13314.348600460104,66.72795095799123,13.434014835928554,22.7595022160298,15.338334240409004,15.196099665623874,0.5431078117091277,0.7567332754126846,0.6847826086956522,0.5805270863836017,0.1219336219336219,0.7087378640776699,0.9178470254957508,0.8706365503080082,0.7389937106918238,0.1373239436619718,0.4898550724637681,0.6854636591478697,0.6258945998698764,0.5324427480916031,0.1179673321234119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0048564852835315,0.0071154509835766,0.0093283202926531,0.0115773945775471,0.0136007987285545,0.0156701115067179,0.0179902391211124,0.0200355733649541,0.022163302076082,0.0244019972727179,0.0268091835058321,0.0288218231191754,0.0310967316490129,0.0332060280759702,0.0350039283794401,0.0369476747196305,0.0389644080107917,0.0408846557765693,0.0427974621563336,0.0576645993860803,0.0718038895518013,0.0850722311396468,0.097688457008245,0.1104784199592968,0.1260128202415959,0.140170649912977,0.1528142998584067,0.1649921976870952,0.1771673819742489,0.1911323887774687,0.2045264948375424,0.2172416422479058,0.2287824495655127,0.2400961443046627,0.2514184830281697,0.2623854852962561,0.2732389600135356,0.283033033033033,0.2923285436982415,0.301870600378063,0.3100121899760888,0.3177878173431515,0.3254613343578538,0.3325062034739454,0.3390274006418168,0.3448202430164098,0.3502362846625141,0.3558109701579568,0.3614723472796166,0.3632503403744793,0.3639080966417807,0.3652146953960626,0.3668768256355381,0.3683873561335855,0.3688055372243282,0.3688807024786827,0.3695548266939166,0.3708526333848001,0.3709717890812632,0.372367455253797,0.3737814925847247,0.3745507282930828,0.3748680990548034,0.3767527318441157,0.3760941349127312,0.3776398586328764,0.379014378919364,0.3824930317891543,0.3827056848165027,0.3858238779916395,0.3878316805146073,0.3894279877425944,0.3918657697363334,0.3927376970855232,0.3927927927927928,0.3925523661753297,0.3976279650436954,0.4006743467266086,0.4042553191489361,0.0,2.057938946136622,64.02757386689377,224.20162295119363,342.5272757204279,fqhc2_80Compliance_baseline_low_initial_treat_cost,59 -100000,95827,40784,382.2096068957601,7407,76.26243125632651,5761,59.67003036722427,2289,23.56329635697664,77.3504688262772,79.68239232012357,63.33176974345843,65.05977423353254,77.06948511937263,79.39990332322452,63.22880022215742,64.95882736081073,0.2809837069045642,282.4889968990476,0.1029695213010128,100.94687272180636,65.4269,45.84023443275476,68276.05998309454,47836.44946910031,195.12181,115.44092940952504,203170.66171329585,120020.53097048092,238.44791,112.7366556213088,246174.1262900853,115593.07977581368,3817.23278,1705.0643643041312,3951079.132186127,1746989.2202279428,1425.83723,610.7165179335277,1474145.606144406,623574.0300039939,2267.32962,944.5464959105924,2334641.0719317105,958939.9711502922,0.3809,100000,0,297395,3103.4572719588427,0,0.0,0,0.0,16137,167.91718409216608,0,0.0,22382,230.9161301094681,2185174,0,78495,0,0,2617,0,0,41,0.4278543625491772,0,0.0,0,0.0,0,0.0,0.07407,0.1944604883171436,0.3090319967598218,0.02289,0.3105175292153589,0.6894824707846411,25.45286415358508,4.580754829446371,0.3278944627668807,0.2003124457559451,0.2322513452525603,0.2395417462246137,11.032678564647828,5.386737503674158,24.32828222123976,13211.133495606142,64.73013208811825,13.47220391974554,21.298484256498803,14.871161888598897,15.088282023275024,0.5440027772956084,0.7582322357019065,0.6971942826892535,0.5814648729446936,0.1188405797101449,0.6856936416184971,0.8810198300283286,0.8671023965141612,0.698961937716263,0.1342756183745583,0.4992003655471784,0.704119850187266,0.6426573426573426,0.5490943755958055,0.1148587055606198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0047149245105097,0.0069521973003146,0.0089918006969915,0.0110970970563704,0.0133425678841335,0.0157054714191015,0.0180030226288701,0.0201425314151917,0.0221733121768951,0.0241896617138872,0.0263906431307312,0.0284556607945371,0.0304849789385871,0.0326533138059778,0.034707942838839,0.0365734989648033,0.0386270991297493,0.0404581025326585,0.0426209711001915,0.0564272152558993,0.0699894398962809,0.0831246135627678,0.0957689357722979,0.1078871399372063,0.1230554616165032,0.1376312162018874,0.1502914769584273,0.1632430816535702,0.1747749678525503,0.1890219625313404,0.2025878842910883,0.2147900328039799,0.2259538147124075,0.2371732817037754,0.2488698812267328,0.2602629640377704,0.2704354383082169,0.2801576305448929,0.2895804211828868,0.2978445082422671,0.3061262694809753,0.3142312609498556,0.3223915310930213,0.330021887159533,0.3370486946861692,0.3434338368958816,0.3494071146245059,0.3549366300413818,0.360769535898453,0.3626961194674732,0.3637116361227644,0.3650872113551303,0.3653458891705903,0.3671824965371382,0.3664573385127976,0.3667206709234727,0.3673647613241279,0.3687719598937355,0.3708960573476702,0.3731287214260222,0.3743708635516982,0.3759060444986029,0.3771349058509325,0.3777879805717323,0.3785044280249436,0.37976493465641,0.3815074551427849,0.3823249920810896,0.3840015958507879,0.382230744646852,0.3815831471433131,0.3831987891019172,0.3841352009744214,0.3860956513536459,0.3840871418422922,0.3845446182152714,0.3828710265235878,0.387565050671049,0.4004620716211012,0.0,1.6600668146705582,61.83941280961591,219.56224036139213,332.1697174261068,fqhc2_80Compliance_baseline_low_initial_treat_cost,60 -100000,95706,40714,382.1599481746181,7588,77.90525149938352,5861,60.52912043132092,2382,24.428980419200467,77.30949638025908,79.6683193497944,63.31695901961641,65.05880218673425,77.0124097089818,79.37358265469922,63.2084829753683,64.95464721641298,0.2970866712772704,294.73669509518174,0.108476044248114,104.1549703212752,65.87526,46.15162965127544,68830.85699956115,48222.29499851152,196.34073,115.57693621459173,204451.6644724469,120066.49635165468,240.4603,113.52304163061264,246772.49075293084,115202.4400979214,3904.19095,1733.3838014324174,4033636.187908804,1765744.3487954345,1432.44977,615.0315440491793,1475986.4376319144,621989.6224290964,2351.72034,973.4525175343174,2413291.81033582,979308.5513742045,0.38131,100000,0,299433,3128.6753181618706,0,0.0,0,0.0,16202,168.55787515934216,0,0.0,22583,231.46929137149183,2181401,0,78307,0,0,2617,0,0,39,0.4074979625101874,0,0.0,0,0.0,0,0.0,0.07588,0.1989981904487162,0.3139167105956774,0.02382,0.3143821067099837,0.6856178932900162,25.668136937545707,4.671749190010036,0.3456747995222658,0.188363760450435,0.2257293977137007,0.2402320423135983,11.193502538179128,5.497760446090291,25.375476140886047,13245.05220447501,65.82086624955396,12.846213581181871,22.90012304028258,14.600587246767171,15.473942381322324,0.536256611499744,0.7708333333333334,0.6831194471865746,0.5616024187452758,0.1171875,0.6918103448275862,0.918918918918919,0.841995841995842,0.735191637630662,0.140893470790378,0.4878048780487805,0.7068741893644618,0.6336569579288026,0.5135135135135135,0.1110116383169203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166486059488,0.0043285216121969,0.0064828341855368,0.008612984480377,0.0107761907182432,0.0131505287693262,0.0152881822351322,0.0174038196535568,0.0194595478516822,0.0215635905885724,0.0237499743742184,0.0257207984228684,0.0279185990313325,0.0299893924882339,0.0322291206864544,0.0343235005424394,0.0363282584170815,0.0381045229674649,0.0402548538643828,0.0422209490077608,0.0565616057814817,0.0711152980583032,0.0843036062684876,0.0969061540402978,0.1086211442130239,0.1246853516657853,0.1383444924291459,0.1511561062851303,0.1636132505795259,0.1755219335399264,0.1893772893772893,0.2025205443856173,0.2151843628923425,0.2269612993608265,0.2386306076155658,0.2506734958592477,0.2621124951125509,0.2715893599522302,0.2811125881992024,0.2900855249581547,0.2986915238536359,0.3071953560226581,0.3151579047122652,0.3226112318014331,0.329583596828331,0.3368557496450836,0.3429412501565827,0.3491244169151946,0.3551777835452894,0.3606262324153355,0.362390276839973,0.3637316995763823,0.3651668716339425,0.3667840630752061,0.3680120517868862,0.3684202430395323,0.369317005589439,0.3712790371312057,0.3722445751229409,0.3737028577594734,0.3754766129336706,0.3760296786804156,0.3764263375876933,0.3772792922910272,0.3781857976653696,0.3790271636133923,0.3803004043905257,0.3839577970572345,0.384541679974449,0.3863445462181513,0.3872776577653169,0.3884022142204547,0.3900261462916906,0.3897257628427964,0.3925233644859813,0.3969987995198079,0.4018633540372671,0.3996255460786353,0.3955890563930765,0.4006247559547052,0.0,2.7301659688134623,61.16450179249176,217.0098016681881,349.2549412305411,fqhc2_80Compliance_baseline_low_initial_treat_cost,61 -100000,95727,40634,380.1121940518349,7616,78.1388740898597,5903,60.99637510838112,2482,25.520490561701504,77.40440741590693,79.76218210987008,63.3594678928421,65.09955378389294,77.09803425726551,79.45451964573002,63.24635830552143,64.9886023741882,0.3063731586414207,307.6624641400656,0.1131095873206646,110.95140970473948,65.6436,45.93906484927116,68573.75662038923,47989.66315592379,198.3018,116.93184880521768,206512.76024528084,121510.66972245827,239.08633,113.18259850890487,245415.9328089254,114884.38269319187,3920.03297,1763.4374710414895,4053555.600823174,1800695.3848355091,1433.27547,622.8615080900336,1479064.2243045326,632475.5273747569,2453.71538,1029.4225738340058,2525143.167549385,1043205.2461513324,0.38047,100000,0,298380,3116.9889372904195,0,0.0,0,0.0,16349,170.10874674856623,0,0.0,22490,230.5828031798761,2185989,0,78410,0,0,2585,0,0,44,0.4596404358227041,0,0.0,0,0.0,0,0.0,0.07616,0.2001734696559518,0.3258928571428571,0.02482,0.319537658463833,0.680462341536167,25.500598799253805,4.698974036454733,0.3208538031509402,0.194307978993732,0.2410638658309334,0.2437743520243943,10.822876939875998,5.240652496830148,26.480958676179736,13249.481501869805,66.42505916072291,13.30401282595675,21.32007819306469,15.90770387761116,15.89326426409032,0.5297306454345249,0.7637314734088928,0.6906019007391764,0.5572733661278988,0.1042390548992355,0.672108843537415,0.9192200557103064,0.8488120950323974,0.6666666666666666,0.1365079365079365,0.4825174825174825,0.6928934010152284,0.639412997903564,0.5238532110091743,0.0951957295373665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185881924124,0.0049759310869014,0.0072838679570677,0.009444980449906,0.0119162608156334,0.0141693811074918,0.0163464968152866,0.0185198412293501,0.0207109358236862,0.0228193688346772,0.0250589320487854,0.0272500538842873,0.0294646804223339,0.0315802484395278,0.0334623123355517,0.03565336944499,0.0377884097593306,0.039947718384664,0.04168398736282,0.0435276226981084,0.0578936927719019,0.0723345472811754,0.0858578441656526,0.0990400891571078,0.1112446370028356,0.1265294036779713,0.1405184029877667,0.1533793279672927,0.1659152100517116,0.1774124359221843,0.1911403584352921,0.2042311438156043,0.2163011791324022,0.2280983782246864,0.239263196117915,0.2508776787197519,0.2610316273463831,0.271224186799838,0.2809004061812158,0.2903964636632234,0.2977741804937272,0.3058966480120573,0.3134453582907922,0.3211590667192863,0.3283459029512331,0.3353841610473987,0.3417303531001013,0.3475773333502854,0.353152780114129,0.3587066840655357,0.3594016921566254,0.3606710671067106,0.3625572062240372,0.3644269802516577,0.3652089984408642,0.3646678712522586,0.3652252452106672,0.366550614202194,0.3674491767401303,0.3697183098591549,0.3708665263790771,0.3713627425665878,0.3713083718973496,0.3727250286124638,0.3724760892667375,0.3737087724817786,0.3769714285714285,0.3794975381896225,0.3812310512585489,0.3838815264250359,0.3857247504807252,0.3868913857677902,0.3901001394346558,0.3893649579188982,0.3898896538715458,0.3911184991688435,0.3943051686784277,0.4006541291905151,0.4010740531373657,0.3959919839679359,0.0,2.6378326289157976,64.60008347743944,219.2038707257068,339.9098570058944,fqhc2_80Compliance_baseline_low_initial_treat_cost,62 -100000,95749,40609,380.4843914818954,7501,77.17051875215407,5830,60.32438981085965,2394,24.55378124053515,77.33232137485312,79.69762847236765,63.31916690730778,65.07091776189053,77.03173008835283,79.39693244382222,63.209631279843386,64.96393469588207,0.3005912865002926,300.6960285454312,0.1095356274643961,106.98306600845342,65.93422,46.1603987963212,68861.5233579463,48209.79727863602,195.45301,115.99575627910318,203480.9763026246,120504.0469750158,240.59281,114.16801109864734,248298.44698116952,116852.73487469555,3863.21714,1741.367757443986,3998323.585624915,1782826.783254936,1422.9109,620.987409917334,1468369.2362322323,630861.2913230988,2357.1951,986.2662200405662,2419773.324003384,996179.931109724,0.38012,100000,0,299701,3130.0692435430137,0,0.0,0,0.0,16178,168.3359617332818,0,0.0,22652,233.52724310436665,2182062,0,78311,0,0,2630,0,0,35,0.3550950923769439,0,0.0,0,0.0,0,0.0,0.07501,0.1973324213406292,0.3191574456739101,0.02394,0.3193737270875764,0.6806262729124236,25.43378016712212,4.592135511949596,0.330188679245283,0.1941680960548885,0.2444253859348199,0.2312178387650085,11.080215823067736,5.525663462965828,25.708032426108936,13282.243823089992,65.9812681654743,13.261572822423826,21.727066517582912,15.959717198832616,15.032911626634943,0.5461406518010291,0.7703180212014135,0.6992207792207792,0.5691228070175438,0.1149851632047477,0.7065826330532213,0.9337175792507204,0.8592436974789915,0.7051671732522796,0.1594202898550724,0.4940935938209904,0.6980891719745222,0.6466528640441684,0.5282846715328468,0.1035447761194029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022092504763062,0.0046252624532148,0.0069856226139225,0.0092385559801609,0.0113738097175876,0.0136204806389502,0.015797095537244,0.0179991628296358,0.0202341393589284,0.0223177723177723,0.0244292494899894,0.0266002771931625,0.0284938662608355,0.0305789294799831,0.0326544509099913,0.0350276996857946,0.0369864148442677,0.0388114826380603,0.0407889677533332,0.0427320162054636,0.0580203353028373,0.0723403364861471,0.0852884726315458,0.0982524026834346,0.1103976212317717,0.1260061559290481,0.1403060141759687,0.1530388504523682,0.1658656926823016,0.1773195655204212,0.191009057717369,0.2042633771573878,0.2165631424935002,0.2282536175611677,0.2397662749240723,0.2511212252084648,0.2619092785805947,0.2717512407576218,0.2814656738103887,0.2905554028045092,0.2990715873309872,0.3075140720630054,0.3149676212575028,0.3219582968620726,0.3285207330708278,0.3355982784772662,0.3423376037870534,0.3485207251247581,0.3547500518564613,0.3602958658037247,0.3619502069095663,0.3626815888855197,0.364169923390567,0.3657400037626083,0.3670940743719191,0.3679401738275851,0.3683197607838147,0.3698907725003706,0.3708881578947368,0.3719261743762667,0.3732345232034093,0.3749751303171382,0.3761285967428909,0.3787004911458568,0.3790535787916272,0.3801455328762445,0.3799552521369973,0.3827658493202897,0.385761823845936,0.388656644424793,0.3923229161872325,0.3944810454692731,0.3941610522938723,0.3974190557143961,0.3979891871383856,0.399261289169546,0.404040404040404,0.4043804502129385,0.4038620689655172,0.4075939558310732,0.0,2.06382725441092,63.27154475246645,225.630699229916,333.1813504546003,fqhc2_80Compliance_baseline_low_initial_treat_cost,63 -100000,95735,40734,382.8067060113856,7498,77.12957643495065,5808,60.19741996135165,2327,24.01420588081684,77.41699606751023,79.77045902280877,63.36600846061516,65.10074638064482,77.13127968367867,79.48128415817979,63.26049959806772,64.99597101891784,0.2857163838315557,289.1748646289756,0.1055088625474454,104.7753617269791,65.12066,45.66809129970302,68021.78931425289,47702.60751000472,194.5001,114.49404260891257,202681.8718337076,119111.53978055312,240.14961,113.95334299709492,247411.49005066068,116458.60142964392,3828.00998,1712.972147371171,3971207.792343448,1761944.8972383875,1397.03784,611.9322953122858,1447465.3470517574,627383.3031934882,2290.90998,956.774981542878,2366048.425340784,976701.857898274,0.38152,100000,0,296003,3091.8995142842223,0,0.0,0,0.0,16046,167.1071186086593,0,0.0,22645,233.1644644069567,2188499,0,78509,0,0,2729,0,0,37,0.3864835222228025,0,0.0,1,0.0104455006006162,0,0.0,0.07498,0.1965296707905221,0.310349426513737,0.02327,0.3211335620790443,0.6788664379209557,25.322464141323927,4.616883697988432,0.3345385674931129,0.1940426997245179,0.2415633608815427,0.2298553719008264,11.135628050293924,5.604590300144669,24.79210896438808,13182.751485474448,65.05449352964723,13.049372251087114,21.749132668569032,15.597956045728164,14.658032564262928,0.5507920110192838,0.7604259094942325,0.7004632012352033,0.5887384176764077,0.1161048689138576,0.7053883834849545,0.9269662921348316,0.8624454148471615,0.7415384615384616,0.1448275862068965,0.5003425439598082,0.6835278858625162,0.6505050505050505,0.5426716141001855,0.108133971291866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021457924249478,0.0043562390460849,0.0064203992210321,0.0087632896353537,0.0107267772897348,0.0129074288971681,0.0147694377624658,0.0169218207797509,0.0193553661577452,0.0215761097527289,0.0234147641103414,0.0255547117141156,0.0273340323608626,0.029370571758115,0.031567219608814,0.0334607833006096,0.0355530707748374,0.0377634417524062,0.0398054418092248,0.0418264022001833,0.055997577580086,0.0707918305850841,0.0835160454454853,0.0955861474228864,0.1073036966724674,0.1225646775114759,0.1366953791318368,0.1503065525609911,0.1623827532423135,0.1741788115690248,0.1886892006848503,0.2027804825273179,0.2150271175019292,0.2269132457999257,0.2386749436906004,0.2500774507634432,0.260792509613777,0.2711782490924009,0.2806160057155169,0.2893902452983528,0.2983981958017695,0.3066850609114504,0.3151600463696799,0.3224592972409579,0.3291554324856081,0.3364845377343374,0.3431877893156512,0.3487182749188983,0.3533751860720989,0.3595075672608758,0.3605257133623301,0.3620238881549978,0.3633479952630689,0.3649065400263512,0.3662676433803823,0.3661628174633622,0.3666249465295711,0.3676374023245124,0.369261511135401,0.3703333749531777,0.3721008592126691,0.3727866716674233,0.3740179749858588,0.3762829094154395,0.3769258502583824,0.3775095166084372,0.3783729876050719,0.3797977259878133,0.3809356807182437,0.3822666349432945,0.3830241862156756,0.3815747529486771,0.3858361560657383,0.3885155772755039,0.3876594148537134,0.3910995997174476,0.3919268849961919,0.3921608040201005,0.3929939792008757,0.3980325387816875,0.0,1.825055034478065,63.51781899648085,214.73917998857925,335.32603785641743,fqhc2_80Compliance_baseline_low_initial_treat_cost,64 -100000,95690,40964,383.41519490019857,7674,78.9215173999373,5961,61.65743546870102,2427,24.94513533284565,77.3508434030137,79.74154325010424,63.31502979323547,65.08278626217484,77.05282644224827,79.44418102130257,63.20690672380297,64.97834246591387,0.2980169607654233,297.3622288016742,0.1081230694324943,104.44379626096634,64.72554,45.411162936818826,67640.861114014,47456.53980229786,197.01993,115.74037781916066,205266.8721914516,120326.38501323092,241.29405,114.42119966073632,248039.91012645,116399.14238000718,3945.57601,1749.446735844672,4085878.451248824,1790832.7054495462,1437.90081,620.683495974376,1487036.4405894033,633016.9543749143,2394.24396,987.1993033525614,2464129.4806144843,997131.8787848484,0.38259,100000,0,294207,3074.584596091546,0,0.0,0,0.0,16218,168.8264186435364,0,0.0,22703,233.13825896122896,2188080,0,78451,0,0,2536,0,0,35,0.365764447695684,0,0.0,0,0.0,0,0.0,0.07674,0.2005802556261272,0.3162627052384675,0.02427,0.3021964461994077,0.6978035538005923,25.56553822292073,4.59578709465934,0.3328300620701224,0.1977856064418721,0.2308337527260526,0.2385505787619526,10.962538936153113,5.3402544784405865,25.75530740558512,13375.293937458027,66.60059059656922,13.517809590391048,22.296701201339623,15.143754387096582,15.642325417741969,0.537158194933736,0.7692960135708228,0.6880040322580645,0.5486918604651163,0.1230661040787623,0.6969914040114613,0.9244712990936556,0.8722109533468559,0.6529209621993127,0.1672597864768683,0.4882803943044907,0.7087264150943396,0.6270959087860496,0.5207373271889401,0.1121822962313759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024615820983214,0.0049385971139122,0.007501852622603,0.0099601593625498,0.0123502004109951,0.0145983170677044,0.0167195421762947,0.01891455767306,0.0211799838414415,0.0234837467483255,0.0254845656855707,0.027577494299624,0.0297772109193392,0.0319187298447336,0.0341909450240977,0.0360369673537742,0.0380220258384012,0.0398580058541446,0.041847837393638,0.0438430988293913,0.0592241325283586,0.0735714510099582,0.0870030757602796,0.0997169880798325,0.1115741277996392,0.1270976616231086,0.1411859620814844,0.1539149697537701,0.1660608911314461,0.178169369292023,0.1920751096786711,0.2052897679907326,0.2177617689947113,0.2287724750763304,0.2404579732481973,0.2520207116009358,0.2642090808614203,0.2748612408948133,0.2845979987960975,0.2935248664389058,0.3017231396345276,0.3105338361715584,0.3180056649166262,0.3253120499279884,0.3323319427382965,0.3392410059076726,0.34491650602108,0.3512746071765095,0.3571169490647183,0.3624699384233198,0.3638178752107925,0.364835437455207,0.3659214331052965,0.3668451519536903,0.3681746574324525,0.3691857346472743,0.369510764450363,0.3715535241602683,0.3721527658845693,0.3732844233694193,0.3745091038914673,0.3762448769477498,0.3777847702957835,0.3764508178355366,0.3767451954377758,0.3762945914844649,0.3765309028766733,0.3792420191854065,0.3810712026428621,0.3825745558375634,0.3834046037667182,0.3830739714346621,0.3843578242466359,0.3862169637369391,0.388313539192399,0.3889490790899241,0.3905572755417956,0.3876063183475091,0.3838105726872247,0.3764614185502728,0.0,2.4613767828373416,61.53455029119714,221.72668435575443,353.3907494680399,fqhc2_80Compliance_baseline_low_initial_treat_cost,65 -100000,95729,40582,379.1014217217353,7608,78.2417031411589,5933,61.444285430747215,2412,24.87229575154864,77.26691653433518,79.62537557929748,63.2951211478972,65.03843794096058,76.96334404552988,79.32012368607064,63.18289488963889,64.92821977597411,0.3035724888053011,305.25189322683843,0.1122262582583104,110.21816498646332,66.71676,46.66971441292329,69693.36355754265,48751.90842161026,197.84841,116.41765953319889,206139.4457270002,121075.61923053506,238.58598,112.76370511288172,245520.29165665573,115023.52948402573,3914.82337,1752.303563180156,4058397.5806704345,1799395.8081460746,1446.04121,628.7938838983661,1499472.94968087,645763.701593421,2386.2276,1000.9748316944904,2463380.981729674,1019342.6870859818,0.38014,100000,0,303258,3167.880161706484,0,0.0,0,0.0,16358,170.32456204493937,0,0.0,22500,231.42412435103265,2174955,0,78168,0,0,2661,0,0,38,0.396953901116694,0,0.0,0,0.0,0,0.0,0.07608,0.200136791708318,0.3170347003154574,0.02412,0.3080479880029992,0.6919520119970007,25.629836663214785,4.633949018907422,0.336760492162481,0.2014158098769593,0.2192819821338277,0.2425417158267318,11.024136745920169,5.348019737069962,25.842428319933404,13296.685689504351,66.95046155189975,13.90625737880169,22.67398381846347,14.45032727613412,15.91989307850046,0.5309287038597674,0.7665271966527196,0.6806806806806807,0.5626441199077633,0.098679638637943,0.675017397355602,0.9473684210526316,0.8266129032258065,0.7183098591549296,0.1015873015873015,0.4848754448398576,0.694021101992966,0.6324900133155792,0.5191740412979351,0.097864768683274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147226836284,0.0044915795557087,0.0068697487518772,0.0093964912993569,0.0116347659825478,0.0139390915662895,0.0162189714052704,0.01849715703188,0.0206802081310121,0.0229794464461185,0.0253195698748372,0.0271652088209929,0.029235736909218,0.0313533222779568,0.0334475074281941,0.0354451576890873,0.037549448045896,0.0397252741552284,0.0419018513321067,0.0439494029633025,0.058872668796859,0.0728505934811279,0.0861667296310288,0.0986005892255892,0.110834449942499,0.1268295780461217,0.1406911928651059,0.153066115614448,0.1657540692575877,0.1770193670288143,0.1905034016539261,0.2030235708480086,0.2151072867879316,0.2270845200017526,0.2382994202067855,0.2505329070077272,0.2620823872851119,0.2725807723948296,0.2823621653561202,0.2919414213465751,0.3000845308537616,0.3086311301638614,0.3162242237497037,0.3234492610955713,0.3300681431005111,0.3360091884748861,0.3426455823293172,0.3485556065941918,0.3543964968359776,0.3601389330787994,0.3620621962281521,0.3635218558812945,0.3650548453842011,0.3661892033238422,0.3673460239667692,0.3679474932980002,0.368155079787658,0.3689320388349514,0.3709008280112237,0.3719784172661871,0.3742425100526703,0.3756675966520526,0.3764207852682824,0.3767383059418457,0.377803726949837,0.3782522736259391,0.3797610803324099,0.3806682196764208,0.3823761382376138,0.3821376281112738,0.3818029584147362,0.3845318860244233,0.3867743175701653,0.3872939719879285,0.3882521489971346,0.3954047876819439,0.3939863608183509,0.3932814420319541,0.3869796032411288,0.3940228077074321,0.0,2.1146858745557786,63.813386551669495,225.39594806058903,344.70987260624537,fqhc2_80Compliance_baseline_low_initial_treat_cost,66 -100000,95704,40576,379.8587310875199,7544,77.60386190754828,5916,61.251358354927696,2499,25.641561481233808,77.288290147924,79.65662659882967,63.294707477804174,65.04343231317469,76.98016645417772,79.34892663480149,63.18243131907688,64.93402283639685,0.3081236937462819,307.69996402818833,0.1122761587272904,109.40947677784152,65.38796,45.820791808966135,68323.12129064616,47877.61411118254,195.15222,115.15412601981164,203353.53799214243,119764.45709668526,240.25201,113.85400162556708,248384.08008024743,116757.87238425016,3943.68591,1767.9792918235803,4083209.218005517,1809838.5979933743,1476.02585,635.2297764122394,1527252.4241411018,648744.7539750052,2458.02424,1017.6554617013284,2525268.181058263,1027646.5705593692,0.37952,100000,0,297218,3105.5964223020983,0,0.0,0,0.0,16107,167.7045891498788,0,0.0,22584,233.19819443283455,2180568,0,78305,0,0,2650,0,0,46,0.4806486667223941,0,0.0,0,0.0,0,0.0,0.07544,0.1987774030354131,0.3312566277836691,0.02499,0.3155046564309086,0.6844953435690914,25.52738954996753,4.631875845580289,0.3269100743745774,0.1948951994590939,0.2376605814739689,0.2405341446923597,11.365663986426478,5.717047109778239,26.539748992502705,13230.73098949603,66.7760757702891,13.494032506810004,21.85718114233949,15.858429672603252,15.566432448536354,0.5365111561866126,0.7562879444926279,0.6845915201654602,0.5839260312944523,0.1103302881236823,0.6988555078683834,0.9036144578313252,0.851931330472103,0.7552870090634441,0.1115241635687732,0.4862771137671536,0.6967113276492083,0.6314713896457765,0.5311627906976745,0.1100519930675909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018938818501301,0.004115935564319,0.0064131184803344,0.0089904305247973,0.011237897648686,0.0134814528200063,0.0158336901776064,0.0183637013219006,0.0205767206043197,0.0225553906769687,0.0249246725562137,0.0268830448974564,0.0290041331660874,0.0310810393301819,0.0331923671995874,0.0353134494946363,0.0375432275165144,0.0393520200080945,0.0412510531187918,0.0431587943469379,0.0580279277679718,0.0717277048390811,0.0852084295369631,0.0978984920075347,0.1100684034961786,0.1254235134677283,0.1392286782195039,0.1527012773936482,0.1652284562495321,0.1769929559316209,0.1906908526195457,0.2039222059699875,0.2167302036815162,0.2282363504960469,0.239336388472724,0.2506242578268059,0.261341774417252,0.271832066235026,0.2817212377798263,0.2905568450807804,0.299221189224323,0.3076598141368628,0.3160350477275965,0.3230107113232271,0.3292833030698173,0.3358473769458079,0.3422626526612052,0.3475091285141587,0.3538237512026419,0.3592820716603748,0.3605207011100008,0.3613981762917933,0.362154660926946,0.3626547695169447,0.3641338476720194,0.3640452207128115,0.3650634443011574,0.3659088282398005,0.3667119822408838,0.3680431848852901,0.3681076687522446,0.3695076021760357,0.3704353709851352,0.3716254249881791,0.3728772557937007,0.3742858640389958,0.3742753831142742,0.3766064798654523,0.3764005105658772,0.3774736081563842,0.378054978054978,0.3820152029759017,0.3846642929806714,0.3861066235864297,0.3862289530618004,0.3843872345473959,0.3901434238632896,0.3985053524540496,0.4055963053518066,0.3973584905660377,0.0,2.153800494567414,61.84692326621509,230.7849540744402,343.2090020908535,fqhc2_80Compliance_baseline_low_initial_treat_cost,67 -100000,95814,40700,380.9255432400276,7569,77.70263218318827,5913,60.97230049888326,2333,23.95265827540861,77.36488025655099,79.6815648286863,63.35773544642036,65.0718520965111,77.08281157052565,79.39948799159937,63.25402832185839,64.97108857672929,0.2820686860253403,282.0768370869331,0.1037071245619714,100.76351978180752,65.967,46.22654815619485,68849.0199762039,48246.131208586274,196.83798,115.93508497648055,204682.21762999144,120245.54322643744,242.7137,115.45330590000222,248111.7477612875,116463.5336859534,3906.94882,1747.3518396496638,4034030.872315111,1780166.5736300424,1418.06043,617.1333681005807,1463655.9479825497,627788.1350630649,2305.83504,956.7759184410364,2369641.3467760454,965978.8757137778,0.38147,100000,0,299850,3129.500908009268,0,0.0,0,0.0,16271,169.03584027386395,0,0.0,22874,233.6819253971236,2185953,0,78427,0,0,2562,0,0,41,0.4070386373598848,0,0.0,1,0.0104368881374329,0,0.0,0.07569,0.1984166513749443,0.3082309420002642,0.02333,0.3059222934741606,0.6940777065258393,25.472403886448284,4.5448309874911015,0.3291053610688313,0.2026044309149332,0.2337223067816675,0.2345679012345679,11.001552203332793,5.438489730917095,24.76969005781515,13287.558088064294,66.29264675132792,13.983758496531344,21.7445163438954,15.260262875382518,15.304109035518652,0.54354811432437,0.7779632721202003,0.682939362795478,0.5767004341534009,0.1124729632299927,0.7143859649122807,0.9196675900277008,0.8857758620689655,0.7428571428571429,0.143859649122807,0.4893048128342246,0.7168458781362007,0.6194331983805668,0.5276476101218369,0.1043557168784029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0045926436595157,0.0068694699245068,0.0090907244139275,0.0114194486531558,0.0137152282816763,0.0157393626781381,0.0180288706944075,0.0202813215570821,0.0224576488049541,0.0244537367277497,0.0265385917921246,0.0285614446191636,0.0307736643303383,0.0326863410058445,0.0348205805838873,0.0368539186379668,0.0388755918891755,0.0409316041409243,0.042855805146026,0.05803510894621,0.0716727116890175,0.0849064510046303,0.0977274636646223,0.1091439524792518,0.1239228689701782,0.1380110391880581,0.1514648977335544,0.1646220477480745,0.1768309663046505,0.1908880641170458,0.204447423326811,0.2168607936025033,0.2288142072324949,0.2399520821198166,0.2517280660038266,0.2624870477867035,0.2731408161202278,0.2825313760137737,0.2910633820535694,0.2995841035120148,0.3079115180677863,0.3156550729435131,0.3231214772088125,0.3300013360377977,0.3371604558053588,0.3442409686780746,0.3508506472039264,0.3565252284671344,0.3617256928878458,0.3630673558391213,0.3645221220670199,0.3662229992668208,0.3675595884166196,0.367964013882062,0.3681649319947192,0.3685607143992119,0.369564500708799,0.3708060029533981,0.3718234027279253,0.3731687056335901,0.3744769874476987,0.3749393011717513,0.3760905340517144,0.3769710747799168,0.3793691613309541,0.3797091492041681,0.3819982909769915,0.3841118188251946,0.3860797622394473,0.3859924333302574,0.3862815884476534,0.3875456935804527,0.388505925180079,0.3897882938978829,0.3884357005758157,0.3863388828380271,0.3836099585062241,0.3818742985409652,0.3802430419443355,0.0,2.7786988288576078,62.23415591467773,218.57471214692416,348.78881562788865,fqhc2_80Compliance_baseline_low_initial_treat_cost,68 -100000,95649,40293,376.8465953643007,7418,76.62390615688611,5720,59.352423966795264,2306,23.80578991939278,77.2563444549925,79.66646544547451,63.27473565930678,65.05561369881059,76.98334630724028,79.3900043298847,63.17669124890093,64.95825611529368,0.2729981477522187,276.4611155898109,0.0980444104058477,97.35758351691004,65.59652,45.97515554644226,68580.45562420935,48066.53027887616,192.507,113.06957532474526,200800.26973622307,117749.297248006,234.72533,110.85541858251912,242380.58944683164,113608.84688094672,3752.27417,1654.1487515199176,3895898.451630441,1702330.9093873615,1394.34916,589.2944495447961,1447350.6048155234,605678.5499226203,2264.44644,919.5079504892562,2339617.8736839904,937997.714068442,0.37782,100000,0,298166,3117.2934374640613,0,0.0,0,0.0,15956,166.32688266474295,0,0.0,22086,227.93756338278496,2181611,0,78335,0,0,2552,0,0,32,0.3241016633733756,0,0.0,0,0.0,0,0.0,0.07418,0.1963368799957651,0.310865462388784,0.02306,0.3125,0.6875,25.50091849133544,4.604529959508754,0.3277972027972028,0.1993006993006993,0.2438811188811188,0.229020979020979,11.23012182971734,5.578374916576293,24.312752625516183,13211.502757598557,64.16796780813785,13.391051675979687,21.02368863404228,15.413382003387664,14.33984549472823,0.5416083916083916,0.7429824561403509,0.6896,0.5842293906810035,0.1091603053435114,0.7105064247921391,0.916184971098266,0.8532731376975169,0.7508532423208191,0.1037344398340249,0.4907891744371162,0.6675062972292192,0.6389664804469274,0.5399274047186933,0.1103835360149672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775459563477,0.0043886766062252,0.0068196348653832,0.008889295256672,0.0109980669447553,0.013029349143771,0.0151481149012567,0.0172973967060362,0.0194034736002291,0.0217181961603868,0.0241342157919039,0.0261337827699959,0.0284961291385274,0.0307344935664797,0.0328801933764436,0.0349023706294429,0.0371426201977899,0.0392346286889588,0.0414763326847236,0.0434741793831422,0.057677033692835,0.071159950136705,0.0846438094438262,0.0971507362615386,0.1093900032710428,0.1249629660981081,0.1385849667306937,0.1521269232816909,0.1642550281060978,0.1759637772126908,0.1897750423075679,0.2032495667244367,0.2154595053742363,0.2273917664719869,0.2380211951787033,0.2491648261395545,0.2595790368398685,0.2701271186440678,0.2805350668833604,0.2900420982598621,0.2991477766827062,0.3066064833812064,0.3150039743270337,0.3226275093650946,0.3294121944982282,0.3365909708665892,0.343062855135908,0.3483180467145463,0.3534468206666407,0.3595095432720924,0.3606196483077172,0.3616886076998521,0.3631578202606518,0.3643982860047934,0.3658131922335321,0.3662805940685677,0.3658307309922886,0.3675489029870473,0.3690043260198893,0.3698593122331706,0.3710952272899175,0.3719455027827093,0.3729791415710391,0.3738557387373203,0.3737437338047611,0.3748523118124294,0.3764996979025807,0.3776960162395331,0.3789659431798129,0.381072127090568,0.3812534359538208,0.3814052898744323,0.3812702651153919,0.3826877530751012,0.383897751655938,0.3799028320891101,0.3823396226415094,0.3845845845845846,0.3873410873681363,0.389082462253194,0.0,1.7293895952915057,59.10362814348262,215.15973958714275,342.2157658898582,fqhc2_80Compliance_baseline_low_initial_treat_cost,69 -100000,95689,40831,383.5446080531723,7663,78.94324321499859,5952,61.58492616706205,2444,25.102153852584937,77.32722884548278,79.70265977154058,63.32110870231941,65.07544252454916,77.01870951268279,79.39632199024446,63.207589799704735,64.96577908401711,0.3085193327999889,306.3377812961221,0.113518902614679,109.6634405320458,64.262,45.04621105581039,67157.14449936774,47075.64198163884,195.07763,114.94019985734477,203267.62741798957,119519.8297164196,241.16647,114.49822695027638,248402.6586127977,116822.72124603036,3922.32381,1757.4977164361285,4060190.910135961,1797834.6376659055,1441.53925,623.1987440239608,1491231.6985233412,636023.1521114876,2407.91676,1008.1276766031154,2475810.86645278,1017935.9698625152,0.38227,100000,0,292100,3052.5974772439886,0,0.0,0,0.0,16118,167.82493285539613,0,0.0,22652,233.13024485573052,2189514,0,78623,0,0,2505,0,0,35,0.3657682701250928,0,0.0,0,0.0,0,0.0,0.07663,0.2004604075653334,0.3189351428944277,0.02444,0.3154761904761904,0.6845238095238095,25.58210832352923,4.563645602447818,0.3326612903225806,0.1985887096774193,0.2308467741935483,0.2379032258064516,11.10582060251684,5.529504591695977,26.285025191925666,13378.929876548162,67.08727269329758,13.61633792848953,22.45220283765373,15.329425342528928,15.689306584625385,0.5426747311827957,0.7580372250423012,0.7005050505050505,0.5735080058224163,0.1122881355932203,0.6955922865013774,0.9085545722713864,0.8563218390804598,0.7094594594594594,0.1525423728813559,0.4933333333333333,0.697508896797153,0.644718792866941,0.536178107606679,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880515115313,0.0047633043143375,0.0072030029420716,0.0092629269630397,0.0113380990634628,0.0135929052162137,0.0159382456712826,0.0181079121260711,0.0204016934939561,0.0228571428571428,0.0248284773713195,0.0268374347808224,0.0289855072463768,0.0310049562592092,0.0328190309097476,0.0346856676008562,0.0366122766122766,0.0385493884839801,0.0403278654420254,0.0423407271514342,0.0574066723766947,0.0719526107023621,0.0853306760371322,0.099186769486497,0.1115165961755492,0.1279965300552229,0.1422218920467811,0.1554959214533682,0.1686308029275068,0.1806430157589281,0.1949695696666128,0.2082268889369993,0.2207029337858564,0.2322829047395075,0.2432967903843614,0.2541747465233531,0.2653434841820901,0.2751105460355322,0.2842903526099494,0.2942686546638092,0.3017132530957869,0.309849753492675,0.3176756308494254,0.3248113445226926,0.3321530692948835,0.3394162386408534,0.3453729134529766,0.3512927460809449,0.357931088203983,0.3626174407833796,0.363125168964585,0.3648788569061917,0.3660388563671842,0.36808686449892,0.369245004253287,0.3694730839767596,0.3693980545428494,0.3702459191909209,0.3699804533452213,0.3713093019922603,0.3721433273770337,0.3730789087010047,0.3749473418148117,0.3766952297415828,0.3766570535346436,0.3787934571082943,0.3786893734537713,0.380290627577892,0.3821261847503183,0.3856890742820472,0.3852719974161399,0.3868605277329025,0.3849588569241564,0.3884624331239823,0.3907373669575223,0.3933637893724453,0.398726312519416,0.4040279490341142,0.4060234244283324,0.4100077579519007,0.0,2.443140090102993,64.13845828611227,223.74288037801983,345.9733152782387,fqhc2_80Compliance_baseline_low_initial_treat_cost,70 -100000,95784,40640,380.6376847907793,7451,76.62031236949804,5819,60.22926584815836,2402,24.774492608368828,77.38146625236273,79.70356353998982,63.35451413110488,65.06747335596921,77.08470458011338,79.40435905596426,63.246892971822696,64.96122541302258,0.296761672249346,299.20448402555166,0.107621159282182,106.24794294663786,66.36828,46.49139643760522,69289.52643447758,48537.74788858809,197.87154,116.91574419767288,206085.02463877056,121565.90265354642,238.25363,112.761658614869,245335.1290403408,115124.8973069386,3880.74363,1731.3357251924651,4019407.552409589,1775391.9497958587,1464.17011,632.391335749857,1514007.663075253,645617.562170986,2384.16102,990.7523282939744,2460509.834627913,1010682.0821305666,0.38027,100000,0,301674,3149.52392883989,0,0.0,0,0.0,16324,169.89267518583478,0,0.0,22391,230.30986386035244,2179610,0,78295,0,0,2623,0,0,47,0.4906873799381942,0,0.0,0,0.0,0,0.0,0.07451,0.1959397270360533,0.3223728358609583,0.02402,0.3173272357723577,0.6826727642276422,25.512301991959934,4.712467436974905,0.3241106719367589,0.1960818009967348,0.2270149510225124,0.2527925760439938,11.028615753643155,5.361104180120562,25.780831336144555,13240.328863955849,65.58457357524648,13.284608577042947,21.24315216254656,14.6642962478535,16.3925165878035,0.5372057054476714,0.7668711656441718,0.6972428419936373,0.5851627554882665,0.1108089734874235,0.6956214689265536,0.9178470254957508,0.8869565217391304,0.7231833910034602,0.1401273885350318,0.4862593686123098,0.699238578680203,0.6360448807854138,0.5465116279069767,0.1028522039757994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971123666038,0.0045401110705744,0.00697903247076,0.0091498090827849,0.0117644666334509,0.0140073701569721,0.016104044357469,0.0183269046307067,0.0203823087689902,0.0225798530826052,0.0245876447085339,0.0264605093058092,0.0288163114299221,0.0309144627801398,0.0331051405241561,0.0350101725722665,0.0369638329797692,0.0387131556302033,0.0407226187137054,0.0428032984881929,0.0576056102855234,0.0714345505911897,0.0845831148400629,0.0972574083612778,0.1096352519502424,0.1255909384154918,0.1389646065568554,0.1514496764305177,0.1635412217001281,0.1757045008735918,0.1901450897662203,0.2035401100742839,0.2162738105592763,0.2285001804639564,0.2401060634400202,0.2511634091211275,0.2619305433071745,0.2723364990772831,0.2819720900657439,0.2908532321483842,0.2999490316004077,0.3086455905262788,0.3158748963392963,0.3225887685721481,0.3297924060479362,0.3363496270726746,0.342773082942097,0.3480530060974833,0.353502606530591,0.3583375168441356,0.358957075064711,0.3594488460213572,0.3605978912899265,0.3628690759324787,0.364342935569048,0.3643912715865229,0.365651849381422,0.3662892129431515,0.3684787636849589,0.369352126784245,0.3709956059638712,0.3723669623059867,0.3734949885482549,0.3736713184565945,0.3759418469860896,0.3776864479987435,0.378656601183838,0.3806685588142541,0.3838177200902934,0.3856794466877223,0.3872551268523191,0.3882930473293847,0.3886366502711565,0.3879743941472336,0.3934068022040661,0.393587749730829,0.3958876783796225,0.4027636659215606,0.3996683250414594,0.4003097173828881,0.0,2.0781043915548114,63.02294298622503,218.79182052577036,338.19058967245394,fqhc2_80Compliance_baseline_low_initial_treat_cost,71 -100000,95755,40888,382.1836979792178,7612,78.28311837501958,5895,60.968095660801005,2377,24.41647955720328,77.31912755708531,79.66805753205334,63.32066847763053,65.05815329267115,77.03062958127482,79.38012636478304,63.215972265062526,64.95624266430708,0.2884979758104862,287.9311672703011,0.1046962125680082,101.91062836406672,65.49532,45.87100463416531,68398.85123492246,47904.552904981785,195.48668,114.74590311810488,203579.12380554545,119260.53613131442,235.20973,110.95826711228958,242084.87285259253,113065.17918257591,3911.89852,1725.048856533701,4049959.636572503,1766272.637067413,1459.59704,627.7858587127611,1507782.5492141405,639330.71096081,2359.51096,970.147159456812,2427112.1925748005,982027.4826486896,0.38315,100000,0,297706,3109.0386924964755,0,0.0,0,0.0,16151,168.06433084434235,0,0.0,22182,228.1238577619968,2185533,0,78480,0,0,2589,0,0,41,0.4177327554696883,0,0.0,0,0.0,0,0.0,0.07612,0.1986689286180347,0.3122700998423541,0.02377,0.3146600124766063,0.6853399875233936,25.627370680366344,4.63784000988212,0.3307888040712468,0.1974554707379134,0.225275657336726,0.2464800678541136,10.993505663326404,5.364611918311923,25.201160786616317,13391.077732734197,66.11501901941847,13.48486063524568,21.928084559338515,14.819751276212612,15.882322548621683,0.5406276505513147,0.7414089347079038,0.7046153846153846,0.5835843373493976,0.120440467997247,0.7052401746724891,0.9023668639053254,0.8720173535791758,0.7248322147651006,0.1660649819494584,0.4905994249059942,0.6755447941888619,0.6527871054398925,0.5427184466019418,0.1096938775510204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0045501069123116,0.0068990706546,0.0092933027280667,0.0114206099805758,0.0135854898006986,0.0160591384144787,0.01860474615039,0.0209811660293245,0.023248909727483,0.0253145089354372,0.0276411578071895,0.0298654819202764,0.0318416877845767,0.0338419950268775,0.0358408863074999,0.0378376140045757,0.0401539355213476,0.042178001766509,0.0439523814483455,0.0584956472724995,0.0727324079207506,0.0860873669306203,0.0987402469031946,0.1110384887042874,0.12715430649834,0.1413390461443828,0.1550484094052558,0.1676204304748889,0.1785059652056468,0.1927280166241373,0.2062222703170652,0.2188917287508836,0.2310753922694221,0.2420478176196815,0.2531508184375484,0.2636549345299889,0.2740541513807927,0.2840974878821246,0.2935665280784341,0.3023096960926194,0.3101454026083495,0.3182469817423551,0.3260459811513296,0.3339214445634186,0.3399893799627064,0.3460062695924765,0.3524626741977024,0.3583583193800864,0.3642794806019094,0.3651369955459576,0.3661352163958845,0.3678505306895431,0.3693820428407756,0.370364850363658,0.3697650820982719,0.3705370632484613,0.3706647756320398,0.3725638210266264,0.3733400420492731,0.3742313931117733,0.3747737714047056,0.3760671118248668,0.3773840424331339,0.378032802795031,0.3794391539958962,0.3779439252336448,0.3803834574552369,0.379596174282678,0.3801494386063052,0.3810048176187199,0.3835307993352276,0.3837290725062066,0.3820787425841744,0.3850033304786374,0.3848441589340947,0.379883112888342,0.381321370309951,0.3848291191997777,0.3816852635629088,0.0,2.310221688144912,60.82508946485745,221.20290560587705,351.07560055025806,fqhc2_80Compliance_baseline_low_initial_treat_cost,72 -100000,95664,40812,382.8399397892624,7536,77.30180632212745,5852,60.41980264258237,2388,24.460612142498743,77.34181859432726,79.72263535220245,63.3271521787835,65.08486386461455,77.04593629334654,79.43039928259351,63.21881335788473,64.98134375879431,0.2958823009807219,292.2360696089328,0.1083388208987727,103.52010582023752,66.0,46.22251215705761,68990.55025924068,48316.68861289452,197.44871,116.73648543599715,205602.0760160562,121233.20220518684,241.50398,114.2873448476695,247390.52308078276,115667.68023918312,3879.37894,1728.3122960879368,4009935.336176618,1761716.2363178744,1438.9226,619.5546767898945,1487677.8307409266,631312.7790426341,2352.54126,970.4631242087232,2413367.557283826,976068.4217088956,0.38177,100000,0,300000,3135.9341026927577,0,0.0,0,0.0,16342,170.00125439036628,0,0.0,22720,232.5326141495233,2181097,0,78301,0,0,2686,0,0,36,0.3658638568322462,0,0.0,1,0.0104532530523498,0,0.0,0.07536,0.1973963381093328,0.3168789808917197,0.02388,0.3174862017059709,0.6825137982940291,25.77924171150776,4.618180468352263,0.3318523581681476,0.1946343130553657,0.2365003417634996,0.237012987012987,11.102937464423352,5.573089767673061,25.1991082133162,13307.265009491575,65.58076291771009,13.183773746551577,21.866220525065703,15.37346830476336,15.157300341329474,0.5446001367053999,0.752414398595259,0.6956745623069001,0.5874277456647399,0.1196827685652487,0.7154178674351584,0.910144927536232,0.8701298701298701,0.7476340694006309,0.1515151515151515,0.4914874551971326,0.6838790931989924,0.6412162162162162,0.5398313027179007,0.1121994657168299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021063077842249,0.0043483989985505,0.0066962247496525,0.0089780829152363,0.0112966201651279,0.0134703103364014,0.0157477907225636,0.0183130365546175,0.0202475495456821,0.0224590281403228,0.0244545156262816,0.0265484907927574,0.0286513790726623,0.0306864785771695,0.0326982226534277,0.0346924843294234,0.0369533678756476,0.0388944264473793,0.0409691950770383,0.0429941618015012,0.0573861262014208,0.0714450261780104,0.0847477196628564,0.0977070157530859,0.1100655139309413,0.1258912137432035,0.1393448711282775,0.1526316910105182,0.1656141475663835,0.177471254504891,0.1922385101730879,0.2054066918358737,0.2190012074273096,0.2315178288301094,0.2416023941291025,0.2530518200146222,0.2638042289057092,0.2737848784878487,0.2835883581547402,0.2928536247322543,0.3018601638054694,0.3102334939871788,0.3178047828093384,0.3256023013304566,0.3323734538650336,0.3386750819752964,0.3450848815664279,0.3507436080268921,0.3564231901347268,0.361775781198388,0.3631852870587601,0.3637704127334114,0.3644130023440368,0.3653233283115077,0.36604004051719,0.3661326527474555,0.3660117222866401,0.3670400263548015,0.3683298742731685,0.3702549219827663,0.3716265705110147,0.373068914229053,0.373062117419382,0.3738313556274721,0.3752567355321977,0.376021225733575,0.376141519728907,0.3768001015035209,0.3780145622447167,0.379599534529112,0.3816723518023416,0.3838101884159107,0.3839675805736718,0.3860579509645684,0.3864862307182738,0.3891293891293891,0.3906904577191621,0.3935431140171638,0.3914510686164229,0.39296875,0.0,2.8241889527237625,60.75213050528882,220.59998364478423,342.1508339910366,fqhc2_80Compliance_baseline_low_initial_treat_cost,73 -100000,95686,40806,382.8564262274523,7617,78.3709215559225,5853,60.65673139226219,2405,24.84166962774073,77.38307130315455,79.75908211370255,63.34642469116329,65.09730194368643,77.08947599641482,79.46067626345243,63.23963462714687,64.99047954545702,0.2935953067397321,298.4058502501199,0.1067900640164225,106.82239822941142,64.14584,44.961984652583695,67037.85297744707,46989.09417530641,194.64675,114.71307416407424,202905.9946073616,119368.5117614638,237.97529,112.62888854427014,244786.0606567314,114793.01910818004,3867.08871,1718.691993853019,4009353.991179483,1764096.883403028,1431.74204,617.5564708308585,1478415.4839788475,627624.5975647194,2370.9114,980.3942245310992,2449604.4562422927,1000728.5572075387,0.38287,100000,0,291572,3047.175135338503,0,0.0,0,0.0,16077,167.47486570658194,0,0.0,22404,230.2322178793136,2191642,0,78723,0,0,2550,0,0,41,0.4284848358171519,0,0.0,2,0.0209016993081537,0,0.0,0.07617,0.1989448115548358,0.3157411054220821,0.02405,0.3112276757836892,0.6887723242163107,25.676987473371355,4.633245877887122,0.3232530326328378,0.2004100461301896,0.2374850504015035,0.238851870835469,11.065647559743493,5.452894308650597,25.475983996143,13342.201847263355,65.36135695446708,13.521180798764442,21.326335671005427,15.129888011935094,15.383952472762104,0.542456859730053,0.7647058823529411,0.7040169133192389,0.5597122302158274,0.1201716738197424,0.6837972876516774,0.932944606413994,0.8565400843881856,0.7184115523465704,0.1074918566775244,0.4979784366576819,0.6951807228915663,0.6530324400564175,0.5202156334231806,0.1237396883593033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461182592146,0.0041740117115474,0.006764637275484,0.0089463422559811,0.0111331401555589,0.013497969196942,0.0159636282085261,0.0181485980259061,0.0202283483078306,0.0224497108051389,0.0248316023662815,0.0267908485993592,0.029023068299857,0.0310861616109594,0.0332490844380254,0.0350458355295114,0.0370439430666915,0.0391173936959657,0.0409928974761602,0.0426749202776214,0.0577881310783566,0.0720544360115153,0.085527558063907,0.0977951149757641,0.1093445232848693,0.1252061572292468,0.1388953673274674,0.1519228314970009,0.1640630001920737,0.1759373359193339,0.1908671279010964,0.2043729319405696,0.2164782608695652,0.2282335453690952,0.239490067536353,0.2515455693678122,0.2626471310834655,0.2730784391013007,0.283360397905997,0.292503753280539,0.3010129073334491,0.3094549499443826,0.3171691315889268,0.3242084789107805,0.3316987101484546,0.3385929821962121,0.3453298735161019,0.3524807505991535,0.3584090319231767,0.3635161055625372,0.3653993985084087,0.3669633753134732,0.368408430437604,0.3693530638248581,0.3705677453928369,0.3713113872716939,0.3717334010732543,0.3728821931341072,0.3737087751810288,0.3741595395621537,0.3755018573411879,0.376278563656148,0.3773901727431102,0.3790508611229312,0.3804379210779596,0.3817114531698408,0.3827642183806567,0.3850361521534108,0.3858611463174201,0.3864385247528683,0.3884957772198128,0.3909192171007267,0.3923222152297042,0.3905037285040328,0.3954076850984067,0.4004019387634472,0.3988772568654225,0.4009527590313616,0.3997289972899729,0.3884297520661157,0.0,1.8968365594641103,62.26470705432551,214.1334785232929,345.8174503193617,fqhc2_80Compliance_baseline_low_initial_treat_cost,74 -100000,95696,40952,383.6210499916402,7617,78.41498077244609,5902,61.12063200133757,2406,24.797274703226886,77.3960056150407,79.78190746395153,63.35197710932333,65.11389892679149,77.10679148163365,79.49086426126401,63.246104233343445,65.00964087615806,0.2892141334070572,291.0432026875185,0.1058728759798839,104.2580506334332,66.35354,46.47919857184439,69337.84066209664,48569.63569202933,198.63018,117.50838436517418,206970.28088948337,122199.97112227695,242.85741,114.89092224993396,250362.8678314663,117372.87516415592,3886.21956,1742.1727336336023,4025703.3418324697,1785226.3873449282,1404.47008,613.3725896352091,1453432.6931115198,626788.4536050829,2368.59502,979.1651828325928,2442547.838990136,995896.13465754,0.38325,100000,0,301607,3151.720030095302,0,0.0,0,0.0,16409,170.8535361979602,0,0.0,22864,235.6106838321351,2182969,0,78201,0,0,2562,0,0,37,0.3657415147968567,0,0.0,1,0.0104497575656244,0,0.0,0.07617,0.1987475538160469,0.3158723907050019,0.02406,0.316270337922403,0.683729662077597,25.39262413429349,4.526551252170609,0.3376821416468993,0.1978990172822771,0.2346662148424263,0.2297526262283971,11.008017249287212,5.529460611737336,25.516025576591154,13284.666322476876,66.3396108826091,13.452551167791142,22.580010409499497,15.487321564243407,14.819727741075042,0.5362588952897323,0.7534246575342466,0.6798795785248369,0.5703971119133574,0.103244837758112,0.6927494615936827,0.8940809968847352,0.8548057259713702,0.7266666666666667,0.1484098939929328,0.4879130627633621,0.7001180637544274,0.6230053191489362,0.5271889400921659,0.0913327120223671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0045223175356411,0.0067193114228294,0.0089204978409956,0.011138689398409,0.0133283101861279,0.0156611641873222,0.0179685346455808,0.0203439039849516,0.0223548317757965,0.0244825146864331,0.0265719331389379,0.0288585151131817,0.0313549370635133,0.0334193148988856,0.035373165185032,0.0373615901722548,0.0392767432687716,0.0414747023035723,0.0435122459614382,0.0574564976708236,0.0717171082925195,0.0846959859871409,0.0980233413941751,0.1101401918414672,0.1253674837672638,0.138775726713346,0.1515174094929904,0.1636847221183734,0.1752946601889686,0.1897428165252229,0.2040220248590993,0.2169305843866494,0.2281879194630872,0.2388581607855642,0.2500304456130639,0.2612716118237591,0.2722921348314607,0.2818909057946382,0.2914146553399723,0.299757505773672,0.3092091437644476,0.316710380189504,0.323572001292469,0.3308020767625794,0.3373883736377279,0.3439497602876548,0.3499314581640942,0.3563059513505832,0.3621157442773227,0.3632673906031609,0.3642980745461037,0.3660050675675675,0.3671637908610075,0.3681715508529988,0.3679235165239241,0.3680698640124259,0.368488513491307,0.3691602374394854,0.3706569917071776,0.3720790555378291,0.3732004429678848,0.3755367054141795,0.3751089263769411,0.3770227316509343,0.3788860442029364,0.3792100384999287,0.3815324413027013,0.3838665302811188,0.386659197311032,0.3884898710865562,0.3884448259213561,0.3895252640957108,0.3912842979017754,0.3919137980356632,0.3912048192771084,0.3942441590592604,0.3942997744515071,0.3953294412010008,0.3979711275848615,0.0,1.9837020834753436,61.74915026352505,229.7333365792225,339.7006983539662,fqhc2_80Compliance_baseline_low_initial_treat_cost,75 -100000,95837,40377,377.04644344042487,7594,78.19526905057545,5988,62.05327796153886,2446,25.28251093001659,77.38566316619061,79.70660955942692,63.36611244363343,65.08420451580817,77.09468057706802,79.41032969113087,63.26189887472184,64.97985700130212,0.2909825891225921,296.2798682960539,0.1042135689115824,104.34751450604551,66.11308,46.28853943240755,68984.92231601574,48299.23665432719,198.54901,117.12581147310546,206773.1147677828,121813.0278213064,244.59018,116.06183016219308,251477.56085854108,118333.66318260726,3981.66884,1776.0124836358202,4130757.3797176457,1829290.977008692,1446.40101,622.1471670727689,1499387.6999488715,639329.6399853593,2416.68456,984.924034801648,2499769.8383714017,1009453.2797072148,0.37822,100000,0,300514,3135.678287091624,0,0.0,0,0.0,16412,170.82129031584878,0,0.0,23058,237.0483216294333,2185529,0,78428,0,0,2545,0,0,36,0.3756378016841095,0,0.0,0,0.0,0,0.0,0.07594,0.2007826132938501,0.3220963918883329,0.02446,0.3180172306155575,0.6819827693844425,25.583765587184065,4.616733404245872,0.3401803607214428,0.1942217768871075,0.2249498997995992,0.2406479625918503,11.280021568607834,5.654579375503138,25.802441935003188,13193.8208351671,67.28953995883671,13.437371293046697,23.03010290072519,14.94920958527578,15.872856179789052,0.5415831663326653,0.7480653482373173,0.7025036818851251,0.5805493689680772,0.1110340041637751,0.7028688524590164,0.9287749287749288,0.8615384615384616,0.7508896797153025,0.141025641025641,0.4893899204244031,0.6699507389162561,0.6479894528675016,0.5356472795497186,0.1027457927369353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047747939539551,0.0068506358404968,0.0090524861317131,0.0114935514056715,0.013847876998269,0.0160637658114953,0.0180936830288804,0.0203791711380244,0.0224423590572776,0.0244419848736395,0.0263992527738717,0.0287364591255729,0.0309527730884835,0.0332659627124236,0.0352015204412584,0.0374662431322234,0.0396351575456053,0.041491880217635,0.0434221616390747,0.0577338298338392,0.0715920850449998,0.0851674841738984,0.097851552240374,0.1099829369509806,0.1258197716784066,0.1401423668488623,0.153030319131978,0.166725320194943,0.1781939670403803,0.1917270596331261,0.2038537143844641,0.2163992792479864,0.2274637356880123,0.2377140095981726,0.249836928281611,0.2605271366188397,0.271109713220179,0.2810584863554493,0.2900891632373114,0.2986138385121866,0.306286327878802,0.3139493694799981,0.3211014659109931,0.3275089062840802,0.334222102081439,0.3401819929349793,0.3459512962704466,0.3512591578049694,0.3574674341108755,0.3586814665321224,0.3596655297612499,0.3612323636261229,0.3618042503975712,0.3624697012506134,0.3632474044993789,0.363405498063615,0.3634177673836424,0.3643308384261484,0.3659762357755681,0.367270879213959,0.3692696115462606,0.3697537654425453,0.3708362503105169,0.3711854103343465,0.3726473616133886,0.3748124639353722,0.3772197823181211,0.3771233218190235,0.3784143098863911,0.3786282122388612,0.3796475392220073,0.3823098016708118,0.3814043209876543,0.3853597777139024,0.3871162678269277,0.383773643895576,0.3791469194312796,0.381660123387549,0.3752913752913753,0.0,1.699279818489109,65.28795998490351,221.9601106972655,349.80932748429274,fqhc2_80Compliance_baseline_low_initial_treat_cost,76 -100000,95771,40595,380.731119023504,7495,77.0066095164507,5785,59.86154472648296,2353,24.214010504223616,77.37657405990127,79.72040933407439,63.3458979718325,65.07862192798038,77.0879923341633,79.43253146478348,63.23947503360271,64.97567194558731,0.2885817257379699,287.8778692909094,0.1064229382297909,102.94998239307064,65.67594,45.99828484285378,68576.01988075723,48029.45029586595,194.53769,114.64257338669732,202607.69961679424,119184.62100917536,235.51983,111.50226732902104,243162.00102327424,114293.15004558812,3821.39132,1702.2651983006713,3955479.299579205,1742778.0416834652,1378.70645,592.9080253214887,1426991.0828956575,606493.829365349,2309.56192,956.818353059574,2377790.416723225,967402.5513395292,0.37965,100000,0,298527,3117.091812761692,0,0.0,0,0.0,16046,166.992095728352,0,0.0,22120,228.1379540779568,2186360,0,78382,0,0,2523,0,0,47,0.49075398607094,0,0.0,0,0.0,0,0.0,0.07495,0.1974186750954827,0.313942628418946,0.02353,0.3066109422492401,0.6933890577507599,25.85255197167711,4.613128615460711,0.3351771823681936,0.1960242005185825,0.2430423509075194,0.2257562662057044,11.13873363852798,5.520547526836868,24.753395690034697,13205.35889237766,64.75834044468465,13.169397634069083,21.76558862158456,15.614292448025308,14.209061741005694,0.5469317199654278,0.7557319223985891,0.6890149561629706,0.5896159317211949,0.1087289433384379,0.6896046852122987,0.908284023668639,0.8232662192393736,0.731629392971246,0.1417910447761194,0.5028286942747228,0.6909547738693468,0.6487935656836461,0.5489478499542544,0.1001926782273603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0048049143934555,0.0070618316118427,0.0091734731195903,0.0113395980798958,0.0135029174855653,0.0156825157284008,0.018060603585576,0.0199041086087569,0.0220798231157424,0.0241575106592325,0.0261237310230853,0.0282406883860554,0.0303919751179221,0.0324051625416542,0.0343070371289175,0.0362845604224914,0.0382285204473307,0.0401813097131688,0.0421787127681732,0.0569147270639808,0.0704552347287729,0.0839518597727177,0.0970142195037361,0.1095337464693731,0.1252061223626908,0.1383785159190424,0.1511236911551885,0.1636691799987184,0.1752045554471265,0.1895923995001938,0.2030407964506005,0.2164167736600439,0.2278632010943912,0.2390842317391448,0.2499944563939951,0.2613590671491757,0.2711389298539891,0.2806071477226284,0.289695858869351,0.2985314709592306,0.3068663001520645,0.3143729222615259,0.3211265243537219,0.3276917843170607,0.3348620460093202,0.3407885519863904,0.3465210592557749,0.3526785714285714,0.3585244214581629,0.3599520996757309,0.3611806453387616,0.3628056936094724,0.3641251716412517,0.3650475341651812,0.3661768986808439,0.3660128647929275,0.367358338672844,0.3688624189214629,0.3694964337426932,0.3714441396415016,0.3719271834082761,0.3732378091056159,0.374462654486835,0.3763656095502231,0.3771817349208426,0.380497569345153,0.3831772754500457,0.3845312058740469,0.3867758689572513,0.3882612289887021,0.386396526772793,0.3895658796648896,0.3892003994162378,0.3881616391576551,0.3913095523102705,0.3861600247142416,0.3857548701298701,0.3866078809589418,0.3750960799385088,0.0,2.1048866155003703,60.38753884948088,221.55337930499053,334.1169282829634,fqhc2_80Compliance_baseline_low_initial_treat_cost,77 -100000,95756,40590,380.7907598479469,7439,76.60094406616818,5796,59.99624044446301,2371,24.426667780609048,77.3313489084019,79.69708134794917,63.31030609897547,65.06286985630162,77.04448815711181,79.40778442647782,63.20560472599604,64.95934158841082,0.2868607512900922,289.29692147134745,0.1047013729794272,103.52826789079472,65.97162,46.20284737935418,68895.54701533064,48250.60296937444,195.04423,114.85644457890136,203154.47595973095,119416.67515079626,238.81939,112.48886063629858,245524.1551443252,114518.14633409589,3847.61008,1712.4093941972133,3986876.8849993735,1757275.8940314006,1430.95135,616.3046092432328,1481783.5644763776,631311.2285115704,2343.75708,965.0097341469276,2417056.393333055,982376.1890154156,0.37965,100000,0,299871,3131.61577342412,0,0.0,0,0.0,16091,167.49864238272275,0,0.0,22406,230.1579013325536,2182318,0,78323,0,0,2572,0,0,46,0.480387651948703,0,0.0,0,0.0,0,0.0,0.07439,0.1959436322929013,0.3187256351660169,0.02371,0.3049917017745436,0.6950082982254564,25.656767378573736,4.574403511946568,0.3324706694271911,0.1927191166321601,0.2334368530020704,0.2413733609385783,11.16710378344213,5.543188303883561,25.027509013750198,13211.606037336398,64.97637166335208,12.88315020224872,21.589680968370768,15.16290236915092,15.340638123581684,0.5308833678398895,0.7555953446732319,0.6782563570316554,0.5750184774575019,0.1057898498927805,0.6997808619430241,0.9015384615384616,0.8680089485458613,0.7548387096774194,0.1498257839721254,0.478653715834651,0.6957070707070707,0.620945945945946,0.5215723873441994,0.0944244604316546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002036494797313,0.0041980591581573,0.0062522202486678,0.0086872586872586,0.0108140552198417,0.01297471255003,0.0151420909341191,0.0173274656156508,0.0194847037404494,0.021652293258496,0.0237323596980636,0.0260235269944007,0.0279195653068785,0.0300834793362877,0.0322041246051898,0.0342363767966084,0.0363448097333678,0.0383310331946332,0.0402794091660343,0.0422433994688329,0.0566167720924406,0.0707342339042995,0.0846856675303422,0.0974488937494742,0.1094240948103161,0.125193019566367,0.138979381771491,0.151638776749289,0.1643154857326066,0.1760754563110963,0.1903622508918852,0.2034849091952653,0.2166410834231468,0.2285038645967901,0.2393987777349557,0.2506236487610178,0.2617994594473855,0.2718306687682954,0.281815808293508,0.2909722381421792,0.3001111651497256,0.3081726375969446,0.3162494515528466,0.3229728593226244,0.3295063006026663,0.335826883432705,0.3419792998020199,0.3474953168605763,0.3538635272127828,0.3594749643102627,0.3609600777128671,0.362086065347953,0.3631993006993007,0.3644133981256508,0.3649088396558641,0.3654856547646401,0.3657428657349519,0.3660159716060337,0.3676586418273346,0.3682186488275171,0.3688716976172146,0.3699556013636724,0.370617029769533,0.3722845601436266,0.372362003187328,0.373267300788722,0.3738590517611376,0.3766570696364729,0.3789007092198581,0.3797951395862623,0.3815020926275123,0.3804231673434494,0.3835329910629397,0.3869485294117647,0.3885440180586907,0.3885162960348276,0.3931701420368691,0.3956349206349206,0.3938328374357587,0.3979591836734694,0.0,2.0604257576388827,60.71400446469225,216.98205024823335,342.4346824749996,fqhc2_80Compliance_baseline_low_initial_treat_cost,78 -100000,95475,40516,380.9583660644148,7552,77.643362136685,5895,61.01073579471066,2389,24.56140350877193,77.22623088476638,79.71297181470537,63.24095407219974,65.07620208480274,76.93799447643559,79.42464022413779,63.13472783120383,64.9727169446679,0.2882364083307891,288.33159056758006,0.106226240995916,103.48514013485044,65.46342,45.86899976044719,68566.0329929301,48042.94292793631,195.90032,115.7847674405868,204446.1586802828,120533.56107943106,243.64407,115.38141815306211,249898.66457187745,116887.6420745014,3904.76817,1750.2497477785416,4045009.2484943694,1788378.2747091297,1428.52924,618.8404732060523,1476742.5608798114,628698.8793569877,2362.26558,985.8174529462616,2431294.8939512963,996722.0480872528,0.37903,100000,0,297561,3116.6378633150043,0,0.0,0,0.0,16178,168.67242733699922,0,0.0,22948,235.14008902854152,2177220,0,78170,0,0,2654,0,0,34,0.3456402199528672,0,0.0,0,0.0,0,0.0,0.07552,0.1992454423132733,0.3163400423728814,0.02389,0.3114095644533701,0.6885904355466298,25.311795480189417,4.584669045334694,0.3341815097540288,0.1932145886344359,0.2351145038167938,0.2374893977947413,10.953408018537871,5.409939676083075,25.541235675804483,13208.5604473477,66.53882918863454,13.26421997197373,22.445284354345954,15.374386644629476,15.454938217685376,0.534520780322307,0.7550482879719052,0.6939086294416243,0.5606060606060606,0.105,0.6919801277501775,0.9435736677115988,0.8343313373253493,0.7213114754098361,0.1267605633802817,0.4850646455639768,0.6817073170731708,0.6460176991150443,0.515263644773358,0.0994623655913978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018949181739879,0.0041993366265329,0.0065384693483867,0.0086629384850025,0.0106593093337677,0.0129236100494317,0.0151430116633843,0.0174830891218605,0.0198369259414611,0.0220282371262883,0.0241829528658236,0.0262600505870982,0.0283790184731346,0.0304574287040379,0.0323300579647252,0.0343224550650211,0.0363070539419087,0.0384303534303534,0.0404759176104101,0.0425416383856314,0.0575403263793662,0.0717440799068313,0.0849835417345855,0.0975568624971015,0.1101165629260147,0.1255789797237856,0.1391148109165523,0.1529532263571184,0.1660437171345035,0.1774240355987403,0.1910407151880283,0.2037705967218805,0.2159244558817115,0.2284423686259031,0.2396548299529915,0.2510168700406748,0.2613458353846842,0.27167955975552,0.2815369386385099,0.2902411021814007,0.2990451439245397,0.3069234920113554,0.3144142646849328,0.322094225728097,0.3292511862215337,0.335701818451902,0.341549915738109,0.3472938226753482,0.353301671979702,0.3591467133349243,0.3605186227804244,0.3609637488947834,0.3617129603439498,0.3635388584514595,0.3650817347167276,0.3653037653037653,0.365175968263578,0.3670517842680286,0.3675949192798871,0.3684475534535776,0.3700316765970284,0.3705486810169896,0.3710299479441084,0.3728462818840253,0.3735512845277187,0.3746003459300802,0.375222050312303,0.3761470792987785,0.377050919377652,0.3801391777315629,0.3806546524457521,0.3804760631184808,0.3795980280621919,0.3765530909368092,0.373315868263473,0.3750147597118904,0.3738447319778188,0.379644921552436,0.3779944289693593,0.3691301000769822,0.0,2.82219975752171,61.73475945816648,229.1483932648649,339.4242763574387,fqhc2_80Compliance_baseline_low_initial_treat_cost,79 -100000,95699,40806,382.9507100387674,7655,78.71555606641658,5918,61.1500642639944,2474,25.43391258006876,77.36399481233721,79.74797674505824,63.33329461681414,65.09685119745608,77.06068403698112,79.44486168246421,63.2217586007348,64.98855978955709,0.3033107753560955,303.1150625940313,0.1115360160793486,108.29140789898872,65.857,46.12643111209989,68816.8110429576,48199.4912298978,197.29055,116.91281864074952,205469.5137880229,121479.3661801581,241.77603,115.2044411564622,248047.0537832161,116887.4238709382,3949.32601,1782.6771934237277,4082077.2526358687,1818052.7418507296,1460.33908,640.2928944107601,1505516.3167849192,648695.2888539316,2446.53786,1022.5796355869568,2515926.227024316,1032976.2165360724,0.38138,100000,0,299350,3128.036865588982,0,0.0,0,0.0,16308,169.6778440736058,0,0.0,22748,233.10588407402375,2183372,0,78360,0,0,2743,0,0,40,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07655,0.2007184435471183,0.3231874591770085,0.02474,0.3129184230101661,0.6870815769898339,25.409292748094245,4.604949919982458,0.3213923622845556,0.1977019263264616,0.2363974315647178,0.2445082798242649,10.801894556853162,5.278206589899706,26.532390107159205,13314.979659726694,66.83929765644068,13.613895519725466,21.52199276257456,15.535086928116108,16.168322446024543,0.5353159851301115,0.7410256410256411,0.685068349106204,0.588277340957827,0.1209398756046993,0.6963423050379572,0.8885793871866295,0.8623655913978494,0.7756410256410257,0.1501597444089457,0.4831058402327142,0.6757090012330457,0.627696590118302,0.5344986200551978,0.1128747795414462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.0048373847698439,0.0074210184357995,0.0096652234892371,0.0116506237408168,0.0137946492246877,0.0162695336407034,0.0180562931492299,0.0198930174997187,0.0218310652372029,0.023658384010337,0.025778489852929,0.0281940772894187,0.030613401477604,0.0326848650601166,0.0345437250563493,0.0366280635604632,0.0386435331230283,0.0408511169090361,0.042613932359499,0.0571783651687153,0.0714181041701557,0.0842452028494392,0.0971174979756233,0.1099129298167942,0.1255934443563309,0.1390470736699222,0.1520499563839067,0.1648287126493226,0.1770953912111468,0.1909492036160137,0.2050411077455647,0.2182286795571699,0.2303881360937038,0.2415894739158177,0.2532001594543119,0.2646481324467847,0.2750964490984962,0.2840379050104976,0.2930971302933834,0.301494574647757,0.3095547212182883,0.3177108619199299,0.3249160671462829,0.3318952945751507,0.338698545723441,0.3455235185857548,0.3516442974365498,0.3569292123629112,0.3622807827819638,0.3632922985750074,0.3646338105726872,0.3659000591866069,0.3666343636547724,0.3677214060548385,0.3682735597684604,0.3683327795446274,0.3692494343705938,0.3699967569597351,0.3713070365140927,0.3723873730070797,0.3729048619091017,0.3737157264418531,0.3749156659020375,0.3764401826042849,0.3776826289106622,0.3781515020842317,0.3789816984358178,0.3800906579786103,0.3812495000399968,0.3835327556961445,0.385399978639325,0.3863737663164597,0.3871391076115485,0.3873960026776322,0.3905232698336147,0.3919024542754416,0.3930719767683053,0.3875140607424072,0.3932938856015779,0.0,2.6449274564031144,63.637375693027785,226.13390811021245,340.3271404125272,fqhc2_80Compliance_baseline_low_initial_treat_cost,80 -100000,95684,40786,383.16750971949335,7549,77.55737636386439,5863,60.83566740520882,2381,24.53910789682705,77.31725194233033,79.72627233066939,63.30264576078415,65.08517107031791,77.02755199778875,79.43284267631365,63.19678095748559,64.98008941844026,0.2896999445415815,293.42965435573376,0.1058648032985587,105.08165187765428,65.82312,46.07717888951649,68792.1909619163,48155.57343915021,197.94232,117.13714877224716,206451.48614188368,122001.45141533294,239.2011,113.74221936188636,247368.32699301868,116773.5809492828,3894.94134,1749.4165352016455,4043823.1679277625,1801520.583589363,1419.29164,618.8167738323701,1470290.999540153,633709.2657417854,2352.84746,978.7385016809692,2428129.0079846163,997253.3605058534,0.38121,100000,0,299196,3126.917770996196,0,0.0,0,0.0,16303,169.92391622423813,0,0.0,22468,232.2227331633293,2181905,0,78319,0,0,2604,0,0,44,0.4598469963630283,0,0.0,0,0.0,0,0.0,0.07549,0.1980273340153721,0.3154060140415949,0.02381,0.3159022177419355,0.6840977822580645,25.55646788802073,4.675803864637864,0.3215077605321508,0.1959747569503667,0.240832338393314,0.2416851441241685,10.98940860363718,5.32900630652954,25.421631100006877,13253.758531885724,65.9344801765238,13.218725479333973,21.24772941418123,15.738915778047994,15.7291095049606,0.5312979703223606,0.7658833768494343,0.6779840848806366,0.5658640226628895,0.1115031757233592,0.6874557051736357,0.927710843373494,0.849438202247191,0.7423312883435583,0.1363636363636363,0.4818059299191374,0.7001223990208079,0.625,0.5128913443830571,0.1045987376014427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0045834812148253,0.0066269523123293,0.0089016248513855,0.011049498906242,0.013130284200876,0.0151796462163099,0.0171829029094475,0.0194900861451576,0.0215968117040786,0.0235764850723299,0.0256581516266261,0.0278032260388895,0.0298472070437346,0.0319858712715855,0.034391780736878,0.0363440347476339,0.038372467365229,0.04022264995058,0.0423220856657389,0.0570222635477501,0.0713096472214368,0.0847434497816593,0.0978442697976833,0.1100069624659788,0.1255172121866302,0.1398234033069428,0.1531212063126956,0.1648000512963002,0.1767665390102876,0.1907516318748788,0.2038558546855887,0.2153685424806015,0.2269622331691297,0.2378549868910969,0.2497894036798936,0.2606803267711263,0.2704414544145441,0.2806149656776536,0.2901068447029992,0.298335763720112,0.3068797304727256,0.315040915173549,0.3233724653148346,0.330460049603657,0.3368952284589662,0.3428635862483712,0.3490871126276387,0.3552425259502119,0.3615111474847209,0.3624057112068966,0.3641945564932472,0.3651672726247851,0.3670789035944167,0.3683473180619103,0.3688475436303529,0.3680064793787419,0.3694925304300561,0.3708517414979965,0.3728492219638705,0.3742814202517377,0.3756961924959863,0.3772929258892656,0.3777558037620513,0.3786167789463481,0.37998109938573,0.3797511895889469,0.3813315638133156,0.3827553293032135,0.385282596530498,0.3899264029438822,0.3911644863821574,0.3907335415206169,0.3901009945262508,0.391449247762331,0.3935776530977677,0.3940993788819876,0.3946179129005752,0.389252591380251,0.3843226788432268,0.0,1.7412987437031744,62.76094831217544,226.19646414080964,335.5376944644226,fqhc2_80Compliance_baseline_low_initial_treat_cost,81 -100000,95857,40812,382.6741917648163,7587,77.88685229039089,5865,60.611118645482335,2376,24.44265937803186,77.4717338221379,79.75647287911603,63.40399372213196,65.08989794426084,77.18493901558958,79.46832992743695,63.300719101471714,64.9885045412899,0.286794806548329,288.14295167907744,0.1032746206602439,101.3934029709418,66.67694,46.66442954177985,69558.75940202593,48681.29561928691,196.36927,115.72975186438428,204288.24186027105,120163.43288897446,241.8382,114.40975822791722,247908.95813555608,116054.86406528272,3916.93987,1739.5353646686983,4053266.136015106,1781752.834606444,1447.91186,623.2866725101734,1498801.4438173529,638535.4356073876,2348.05146,959.4858837719042,2418536.048488895,975752.9279553696,0.38171,100000,0,303077,3161.761791001179,0,0.0,0,0.0,16215,168.56358951354622,0,0.0,22723,232.67992947828537,2184667,0,78332,0,0,2689,0,0,40,0.4172882522924773,0,0.0,0,0.0,0,0.0,0.07587,0.1987634591705745,0.3131672597864768,0.02376,0.3174048658764816,0.6825951341235184,25.57240521363387,4.691576748214424,0.3290707587382779,0.1928388746803069,0.2364876385336743,0.2416027280477408,11.14325069387174,5.454420669006546,25.096426360717704,13289.481751176589,65.55140399950511,13.219869962638631,21.534233457897525,15.292842153566244,15.504458425402722,0.5430520034100597,0.770999115826702,0.6932642487046632,0.5940879596250901,0.1065631616090331,0.7274741506646972,0.9410029498525072,0.8454935622317596,0.7918088737201365,0.15625,0.4876967412990468,0.6982323232323232,0.644808743169399,0.5411334552102377,0.0956072351421188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024901305800182,0.0046094153640425,0.0067229106248352,0.0090946000812017,0.0113608649703276,0.013531799729364,0.015514220519925,0.0177480390456859,0.0199129955272348,0.0217622514930868,0.0240787398349003,0.0265627403722886,0.0284460972653119,0.0305181709676091,0.0324811875064426,0.0344905925359879,0.0364114075284722,0.038284950304186,0.0401125602259511,0.0422004599902174,0.0572152532298933,0.0708551118544846,0.084232808668497,0.0970727914600319,0.1094915897306184,0.1250171784978064,0.1384630065525796,0.1523348579938304,0.1642737433149372,0.1767864031891637,0.1913517817180237,0.2052409768748649,0.2179407836878277,0.2297354832370825,0.240486728093392,0.2529209546022306,0.2633319967923015,0.2734569702956959,0.2826214955387472,0.2918609967992684,0.3007872924987879,0.308900889972356,0.3167725329995985,0.3244474741676234,0.3315378922978005,0.3383431806991629,0.3444724936889199,0.35111924181213,0.3570689565982101,0.3628290600542834,0.3641036682186398,0.3649250041206527,0.3659181720974731,0.3665757693805999,0.3681609758269153,0.3684476114747079,0.3691274106860575,0.370247093738215,0.3710634958545157,0.3713445602780005,0.3717912711340785,0.3725242392527794,0.3737278552581983,0.3747709497206704,0.3755825685869408,0.3756972319240995,0.3757039649581887,0.3779033270558694,0.3796797041275601,0.381411522958982,0.3832698930578213,0.3847543160690571,0.3865189873417721,0.3836448957612124,0.383726482666412,0.3860576923076923,0.3828545091411891,0.3754812563323201,0.3656121045392022,0.3584544758990053,0.0,2.2829143770149427,59.629417847157576,226.4358821632091,341.10638626351846,fqhc2_80Compliance_baseline_low_initial_treat_cost,82 -100000,95746,40806,380.93497378480566,7530,77.39226703987634,5828,60.3471685501222,2338,24.08455705721388,77.34438518034166,79.6990177194764,63.33412346583962,65.07299777626564,77.05853982266807,79.41080386071174,63.23011432995556,64.970816116794,0.285845357673594,288.21385876466366,0.1040091358840555,102.18165947163982,66.3575,46.46807854066396,69305.76734276106,48532.6578036304,196.81131,116.29407254814278,205054.2894742339,120959.66677265133,242.64445,114.42148081226928,250162.4506506799,116987.83427174028,3870.03111,1721.7036027086488,4009310.780607023,1765532.965041513,1429.1861,617.5359464129543,1477822.070895912,630110.2567344365,2307.52034,952.2867781217528,2378775.0715434584,966587.0279392812,0.38197,100000,0,301625,3150.2621519436843,0,0.0,0,0.0,16285,169.55277505065487,0,0.0,22786,234.7460990537464,2180263,0,78291,0,0,2772,0,0,43,0.449104923443277,0,0.0,0,0.0,0,0.0,0.0753,0.1971359007251878,0.3104913678618858,0.02338,0.309304380760005,0.6906956192399949,25.56445702104304,4.6196696785035005,0.3335621139327385,0.1983527796842827,0.2292381606039807,0.2388469457789979,11.017681700918075,5.401951980250375,24.7688314019661,13329.633251246983,65.37906037318182,13.512913817961044,21.855507567470696,14.710538642168489,15.300100345581608,0.5418668496911462,0.7569204152249135,0.6939300411522634,0.5853293413173652,0.1091954022988505,0.7140751658069271,0.9019607843137256,0.8640350877192983,0.7474048442906575,0.1450980392156863,0.4895996421382241,0.6921151439299124,0.6418010752688172,0.5405921680993314,0.1011433597185576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046333377267243,0.0070110289268357,0.0091912698170886,0.0116111190190536,0.0138751743304184,0.0159495322149976,0.0185519669370886,0.0207824585423669,0.0232784201371124,0.0255656201327977,0.0279890383964036,0.0299923913714038,0.0320806599450045,0.0343529169030793,0.0363970816195771,0.0383094567737661,0.0401032916433327,0.0424344464191064,0.0443736133245836,0.0588910812531972,0.0730252417430616,0.0869729389553178,0.099061961048248,0.1116570886276163,0.1266732928711908,0.1405056847106736,0.1538256947104132,0.1663035584604212,0.1774568766817826,0.1924211432877597,0.2064426103605309,0.2194085027726432,0.2317253140064933,0.2426472205723839,0.2538642101067363,0.2645483158106207,0.2746271342766517,0.2840025869991944,0.2933800542787454,0.3019413656662887,0.3095068156555315,0.3172882318826857,0.3241317257513046,0.3312512911497005,0.3372777414458991,0.343540058157024,0.349964943591051,0.3552955824751628,0.3607090454851885,0.362371780183046,0.3637415462596934,0.3644942869234024,0.3652195312613095,0.3659884413727359,0.3669576711444468,0.367268737876427,0.3671476101064005,0.367326987393877,0.3678529807261317,0.3690715831060107,0.3702969118784585,0.3709524711228933,0.3714304987183523,0.3722129421163483,0.3720308321535315,0.3729435368300373,0.3754120182555781,0.3760390506172403,0.3791140509120064,0.3805915311839808,0.3815726000964785,0.3812849162011173,0.3803999389406197,0.3786931818181818,0.3782816229116945,0.3791285470615599,0.3835103060587133,0.3859353023909986,0.3817753338570306,0.0,2.068884694509358,60.09813527584647,220.89982710240952,345.3785915336508,fqhc2_80Compliance_baseline_low_initial_treat_cost,83 -100000,95677,40558,379.9241196943884,7476,77.00910354630685,5805,60.15029735464113,2374,24.467740418282343,77.28108161739658,79.66923834496492,63.29287913429015,65.05614582835153,76.991590977397,79.37749784436163,63.18723820779825,64.9524371306746,0.2894906399995847,291.7405006032965,0.1056409264919011,103.70869767693593,65.15058,45.6329396369282,68094.29643487986,47694.78520117499,195.28166,115.4216884420779,203573.0948921893,120104.78844662552,240.89346,114.08258526295178,248509.464134536,116785.57230700224,3872.63509,1725.985034453748,4013161.89888897,1769519.1680902902,1404.61766,606.7322867343511,1452469.0678010387,618561.5826987015,2348.0902,971.2475349031944,2421715.3756911275,985477.4163156056,0.37894,100000,0,296139,3095.1952924945385,0,0.0,0,0.0,16071,167.42790848375262,0,0.0,22613,233.1908400137964,2182480,0,78400,0,0,2662,0,0,44,0.4494288073413672,0,0.0,0,0.0,0,0.0,0.07476,0.1972871694727397,0.3175494917067951,0.02374,0.3186255864080132,0.6813744135919868,25.619682585464584,4.573731737224625,0.3354005167958656,0.1927648578811369,0.2301464254952627,0.2416881998277347,11.010403356305142,5.36682919687776,25.437767471502227,13209.554427909665,65.60176135450274,13.041396738798666,22.26296782376642,14.954312310021969,15.343084481915692,0.5424633936261843,0.7613941018766756,0.7036466358500256,0.5815868263473054,0.1069137562366357,0.7013167013167013,0.916184971098266,0.8556910569105691,0.746875,0.1228070175438596,0.4899128839981659,0.6921086675291074,0.652233676975945,0.5295275590551181,0.1028622540250447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387681709973,0.0045012621782459,0.0070531881425251,0.0090317074905263,0.011349998982975,0.0137672599894098,0.0158145889838285,0.0179891370931514,0.0203220035778175,0.0222213123982845,0.0243922445171278,0.0263668566148159,0.028507080492395,0.0307145433001906,0.0331609747035328,0.0352065346637026,0.0373328361146503,0.0390363896788657,0.0411209703425533,0.0431737163584815,0.0577566031427616,0.0719468906084753,0.0851711505558063,0.0983039077460491,0.1101885359188884,0.1248228000761695,0.1386217438379721,0.1516177817538926,0.1631206432023264,0.174941482165482,0.1893005446799331,0.2031883304072653,0.216157347912265,0.2279018834866404,0.2385579868226791,0.250795763322797,0.2614308227062913,0.2712761763148705,0.2809978406637118,0.2898123508900715,0.2981689651176266,0.305737560804079,0.31461074008612,0.3217997236739352,0.3287197653045076,0.3350372894749839,0.3417811998394863,0.3475126631537313,0.3535408631056739,0.3593274195683834,0.3602059709964725,0.3622563847566955,0.3640393112042596,0.3649345555442567,0.3657008731013036,0.3653535306885881,0.3656069593982092,0.3664867006785873,0.3673125526537489,0.3681961798075542,0.3694795027071896,0.3698826909265023,0.3708707436896493,0.3716934207551435,0.3722343787989302,0.373320714041591,0.3751043075417949,0.3751588713777326,0.3767634267934802,0.3766337583436588,0.3783833379209101,0.3783234365805382,0.3821231179721746,0.3832951945080091,0.3865887013109497,0.3888235294117647,0.3901876345739772,0.3871555915721232,0.383415435139573,0.3782625633034671,0.0,1.9752201588336031,64.31555564382549,217.12126157442103,335.5145389442697,fqhc2_80Compliance_baseline_low_initial_treat_cost,84 -100000,95726,40456,378.779015105614,7428,76.4264672084909,5772,59.7120949376345,2302,23.640390280592523,77.3612597271838,79.72853808383192,63.34108899169471,65.0899578762531,77.08132853374927,79.44838551037464,63.23858178578052,64.99037836827142,0.2799311934345354,280.1525734572863,0.1025072059141933,99.57950798167305,65.9681,46.20067640247108,68913.46133756764,48263.45653476703,196.4561,116.20323514147434,204564.9666757203,120728.95048521232,239.11827,113.0277853068632,246784.6248668073,115734.86264881684,3806.91311,1704.0765173595378,3940889.36130205,1744333.4871232165,1418.33952,606.3785517250018,1467820.0279965736,619672.7590960481,2264.31868,939.2123636329368,2327565.697929507,946899.1832797384,0.3793,100000,0,299855,3132.430060798529,0,0.0,0,0.0,16214,168.77337400497254,0,0.0,22507,232.08950546351045,2185050,0,78382,0,0,2618,0,0,40,0.4074128241021248,0,0.0,0,0.0,0,0.0,0.07428,0.1958344318481413,0.3099084544964997,0.02302,0.3066361556064073,0.6933638443935927,25.780959748984483,4.573422040974341,0.3359320859320859,0.1969854469854469,0.233021483021483,0.234060984060984,11.245604943990053,5.6807173815903,24.44697405552299,13212.965632683385,65.04263451267344,13.243006216823908,21.99434063598068,15.031201544686825,14.77408611518202,0.5504158004158004,0.7669305189094108,0.6900464156781846,0.5866171003717472,0.1317542561065877,0.7003460207612456,0.9243697478991596,0.855072463768116,0.6955223880597015,0.1333333333333333,0.5003466605038133,0.6948717948717948,0.6353021978021978,0.5504950495049505,0.1313598519888991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487616616525,0.0045725525184524,0.0069412027358892,0.0092247361095589,0.0115122546527,0.0138388220199181,0.0158668651724348,0.0180936335324449,0.0202746224707843,0.0222870597870597,0.024514779613054,0.0266112052585631,0.0288388357502828,0.0309151969671996,0.0328469413027326,0.0350367529231755,0.0370220786214324,0.0389153513277917,0.0409508755875379,0.0429500270912349,0.0573561658139292,0.0715212794908832,0.085218868993297,0.0977266513848289,0.1095535224925165,0.1251189242901541,0.138995524825553,0.1514922594030962,0.1634019737685307,0.175590357054807,0.1896148918531916,0.203052658907014,0.2164180727082971,0.2280105370161881,0.2385124439363292,0.2501383202390174,0.2606228188518101,0.2704685919766266,0.2804479912940963,0.2898152599409381,0.2981742076477458,0.3061632309633992,0.3135786696949265,0.3196776279548775,0.3269240100931677,0.3337845820616323,0.3402997387597965,0.3472973144885315,0.3520159618573797,0.3578787478536521,0.3593425838609727,0.3605206312516338,0.362332318791568,0.3634299104624419,0.3645899980656776,0.3652539383062598,0.3659008081128189,0.3669465485795034,0.3690500615510874,0.3698137512747571,0.3712020143181946,0.3723951608097102,0.3739394066993705,0.3759741280571338,0.376795125961027,0.3784145828955663,0.3810290313308422,0.382948298325336,0.3838111776588581,0.3841710457699868,0.3857451007389049,0.3899994669225438,0.3919772583701832,0.3941639294171568,0.3951977401129943,0.3981679752557697,0.4030972094449555,0.4017929910350448,0.4092957746478873,0.4128329297820823,0.0,2.267831109327766,63.99616482711157,211.9121848669796,334.8869804401382,fqhc2_80Compliance_baseline_low_initial_treat_cost,85 -100000,95646,40515,379.1376534303578,7620,78.59189093114192,5927,61.34077745018087,2448,25.207536122786102,77.2430810454354,79.64769725440634,63.27207635196621,65.05018534379803,76.94700303796762,79.3497837179217,63.16389690372353,64.94370456757991,0.2960780074677842,297.9135364846428,0.1081794482426801,106.48077621812035,64.96776,45.54491209667667,67925.22426447524,47618.208912737246,195.2345,114.898591843546,203504.98714007903,119512.02543080316,240.71079,114.20155878773537,247355.2161094034,116157.90346231736,3934.33853,1759.6453082340447,4073646.948121197,1799957.2781235443,1427.64925,616.6931032204291,1476137.0052066997,628264.4890747439,2425.29586,1000.8610935925068,2498805.5956339,1016033.295675609,0.37984,100000,0,295308,3087.5101938397843,0,0.0,0,0.0,16100,167.67036781464986,0,0.0,22700,232.9841289755975,2183320,0,78353,0,0,2516,0,0,46,0.4809401334086109,0,0.0,1,0.0104552202914915,0,0.0,0.0762,0.2006107834877843,0.321259842519685,0.02448,0.3137965508622844,0.6862034491377156,25.855972273048717,4.624247983154475,0.3323772566222372,0.1945334908047916,0.2276024970474101,0.2454867555255609,11.15667375596034,5.512782294071618,26.09697418959082,13299.823756159823,66.75295652207383,13.332970154159128,22.373223273452645,14.969360792549924,16.077402301912148,0.5383836679601822,0.7762359063313097,0.7030456852791879,0.5678280207561156,0.0996563573883161,0.686556927297668,0.9090909090909092,0.8402366863905325,0.7226027397260274,0.1433224755700325,0.4900425151040501,0.717852684144819,0.6555023923444976,0.5250709555345316,0.087979094076655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001996513701962,0.0043109569310044,0.0066698476188542,0.0089007203893557,0.0110972099315451,0.0131880441977697,0.0154473617129747,0.0176441757882698,0.0198993782722513,0.0220677084400024,0.024017803119648,0.0260739188925516,0.0284659447341087,0.0305964767693417,0.0326892508412295,0.0347016854513494,0.0369395873042181,0.0390252003155228,0.0412103056968411,0.043389872916254,0.0582155993980939,0.071993463709973,0.086008861264515,0.0989632124625019,0.1114911586170493,0.1268354135569176,0.1411028607242635,0.1537223382936084,0.166654184809937,0.178125,0.191843780343079,0.2049708965173374,0.2176105423654977,0.2292319148470181,0.2405470635559131,0.2521106291394402,0.2632155635062612,0.2730049938563167,0.283188356359088,0.2918822193418139,0.2997553538094079,0.307851844908194,0.3161119802778173,0.3235763767994141,0.3311494574813985,0.3383010800523961,0.3447756510825227,0.350113013829828,0.3553558890073596,0.3610242273233314,0.3619424664567823,0.3628394328865083,0.3638318642916767,0.3656861606365061,0.3670700732108172,0.3677161111538757,0.3684260822476348,0.3689480815625103,0.3708280342350393,0.3715225952633566,0.3725538391726067,0.3737847603457569,0.3742523196584448,0.3754824729702277,0.3775274898657669,0.3776124129195694,0.3787677176742841,0.3799732637341651,0.3832005123096627,0.385464246735923,0.3862485481997677,0.3880209741067085,0.3855506495168618,0.3826241959234286,0.3820127241179872,0.3826055400991895,0.381967471972209,0.3852578826477344,0.386685552407932,0.3919399446858949,0.0,2.3904714864569274,64.45663265636588,217.73904333834463,348.4881925576108,fqhc2_80Compliance_baseline_low_initial_treat_cost,86 -100000,95823,40408,377.8737881301984,7424,76.46389697671749,5751,59.49511077716206,2315,23.83561357920333,77.44904619750217,79.77577077728859,63.38601454967061,65.1069513800991,77.16339654196209,79.48850311427968,63.282475888206505,65.00513690019503,0.2856496555400838,287.2676630089046,0.1035386614641069,101.81447990407833,66.8316,46.77956773591711,69744.61246256118,48818.49632751754,196.20334,115.95972318710966,204234.2965676299,120492.79733165278,239.44843,113.01342206497812,246381.22371455704,115223.8182292822,3829.93835,1705.7473690402446,3965385.512872692,1748599.3749311178,1425.00957,607.3966097211339,1474140.2481658892,620947.0134155413,2284.04418,939.4236668465016,2353640.3159992904,954428.4935454828,0.3783,100000,0,303780,3170.209657389145,0,0.0,0,0.0,16233,168.8738611815535,0,0.0,22505,231.55192385961615,2185132,0,78338,0,0,2695,0,0,41,0.407000407000407,0,0.0,0,0.0,0,0.0,0.07424,0.1962463653185302,0.3118265086206896,0.02315,0.3119020283199387,0.6880979716800613,25.670067995577764,4.616354603760432,0.325508607198748,0.1992696922274387,0.2378716744913928,0.2373500260824204,11.142300180944387,5.609626859355155,24.43924994824172,13190.851030750697,64.39631398985372,13.381582273269348,20.99644519165441,15.037727139325993,14.980559385603978,0.5468614154060163,0.774869109947644,0.6960470085470085,0.5767543859649122,0.1208791208791208,0.7044117647058824,0.9257142857142856,0.8793859649122807,0.7304964539007093,0.0992647058823529,0.4980642222728308,0.7085427135678392,0.6370056497175142,0.5368324125230203,0.1262580054894785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022887698368491,0.0047337637983639,0.006879547045752,0.0093152243475787,0.0116131262902061,0.0138881818089254,0.0159660695533374,0.0180038579695649,0.0201532958610117,0.022173107816353,0.0242352820617922,0.0263444170771757,0.0286389802631578,0.0305682251073337,0.0326938943894389,0.0349708146081925,0.0370113538744967,0.0390493768275232,0.0411627810331213,0.043015230223092,0.0576134692217018,0.0716503737780333,0.0852992653300774,0.0980542539555798,0.1103524577208787,0.1259590387419948,0.1397422035659013,0.1525659839639294,0.1657118472288899,0.1776378492412803,0.1914747187990623,0.2043969102792632,0.2165430838879178,0.2281293307580668,0.2389843904366726,0.2504476226264948,0.2608584283677833,0.2706691808651537,0.2796436535696902,0.2888952359191134,0.2982731554160125,0.3060981586501435,0.3139501947362209,0.3210861091848203,0.3280679848222187,0.3343334972946384,0.3400856204989952,0.3467478900945491,0.352906976744186,0.3579627728194192,0.3592326912226968,0.3600939483009642,0.3615364067091259,0.3624637492966281,0.3635770718764359,0.3633794641493294,0.3637425055222467,0.3651900599155289,0.3655778466569024,0.3666369789811186,0.3683649222594345,0.3687129885511251,0.3687332327297116,0.3699796160652286,0.3713074068719579,0.3723409801876955,0.3730861517367458,0.3739124952717185,0.3745236414961185,0.3755819968960165,0.3761215894524812,0.3771798438001498,0.3787263732081695,0.3802342494067213,0.3822213762253735,0.3824758266682583,0.387789799072643,0.3852004110996916,0.3812430632630411,0.3789272030651341,0.0,2.019425600607363,60.10103537458348,215.36541377026097,339.3509685535688,fqhc2_80Compliance_baseline_low_initial_treat_cost,87 -100000,95817,41042,383.449700992517,7468,76.75047225440163,5766,59.70756755064342,2381,24.515482638780178,77.3497797498425,79.68340687763425,63.33168066437421,65.06012929424962,77.05793404364219,79.38902473283669,63.22413623666194,64.95426553368512,0.2918457062003057,294.3821447975665,0.1075444277122699,105.8637605645032,65.26036,45.73522835338266,68109.37516307128,47731.851710429946,194.25455,114.61666529772144,202257.33429349697,119142.76725186706,243.00194,115.10959988938907,250724.37041443583,117942.5791700467,3835.38809,1729.406596851371,3972276.7984804367,1774356.290482244,1454.2571,637.0919767020674,1503956.865691892,651128.1336673888,2364.84864,985.137746435354,2436259.724266049,1001138.0761242803,0.38385,100000,0,296638,3095.8806892305124,0,0.0,0,0.0,15992,166.40053435194173,0,0.0,22820,235.29227590093615,2185895,0,78464,0,0,2621,0,0,40,0.417462454470501,0,0.0,0,0.0,0,0.0,0.07468,0.194555164777908,0.3188269951794322,0.02381,0.3171443063657114,0.6828556936342887,25.583197881068763,4.567221847587395,0.3263961151578217,0.1954561220950399,0.2299687825182102,0.2481789802289282,11.217299525544586,5.601594881817161,25.267966738905468,13366.135878379568,65.08322485021512,13.216772758812304,21.186463648597694,14.824134918078736,15.855853524726369,0.5421436004162331,0.7533274179236912,0.6934112646121148,0.5987933634992458,0.1243885394828791,0.6950959488272921,0.9028571428571428,0.865934065934066,0.7152542372881356,0.1856677524429967,0.4927735719201652,0.685971685971686,0.6384022424667134,0.565470417070805,0.1076512455516014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0049175175154876,0.0071041467919702,0.0092554023712523,0.0114230495371783,0.0136551092103253,0.015742251223491,0.0175984810591754,0.0199924363993172,0.0223339031105743,0.0245922645590511,0.0269423880566365,0.0292847447867396,0.0312734911596008,0.0333398665167473,0.0354216394391229,0.0373491232065588,0.0397066603047496,0.0419246914093346,0.0440513498599643,0.0582988179570374,0.0719745689159373,0.0850051359453283,0.0981997414690025,0.1102889247277825,0.1255881824237874,0.1398385539868255,0.1529881326166782,0.1650698027152027,0.1773482500080447,0.1915343003081963,0.20514346946065,0.2181462140992167,0.2298231036669363,0.2412116144223046,0.2530641193288858,0.2636954192338601,0.2736394519561745,0.2835902208703153,0.2927181296463877,0.3020820072447834,0.3103089286340932,0.3186558242486654,0.3258723159509202,0.3330944427573641,0.3399011743250403,0.346423299221858,0.3522426433153446,0.3575962485102855,0.3632147764506923,0.3646124172163099,0.3663328090941699,0.3681772605951053,0.3692548746518105,0.3700690004619901,0.3702327010214269,0.3701727642276423,0.3718991928842036,0.3730567280963657,0.3735054396610535,0.3747103483355626,0.3763746644128468,0.378554277770757,0.3788825459612532,0.3797756069252345,0.3799779631670077,0.3805538038181505,0.3815507008460664,0.3832501581499964,0.3838343777266598,0.384720826098876,0.3870194867426259,0.3871336124857251,0.3873978096560234,0.3857034364913613,0.3905374806340126,0.3970929333539508,0.3961881589618816,0.3944702983848891,0.3950233281493001,0.0,1.7815877768520874,62.6001248080624,221.63732748531157,330.3166596820231,fqhc2_80Compliance_baseline_low_initial_treat_cost,88 -100000,95808,40585,380.8032732130928,7466,76.85161990647963,5815,60.20374081496325,2404,24.757849031396123,77.41775944651599,79.74443257402939,63.37436231324406,65.09462606614548,77.13395656491494,79.4581351173891,63.27067441271778,64.99237416756098,0.2838028816010478,286.29745664028405,0.1036879005262818,102.25189858449824,66.10582,46.275580224118514,68998.22561790248,48300.330060243934,195.19608,115.28687009304824,203245.20916833667,119839.65826434626,241.15467,113.99994903970683,247987.0783233133,116281.46734022486,3852.64551,1718.3969268479352,3991369.530728122,1763740.8691402602,1422.5037,617.5822288810602,1470986.1493820974,630877.775737311,2370.21036,976.3003139943344,2442920.612057448,993470.3497947808,0.37948,100000,0,300481,3136.2829826319303,0,0.0,0,0.0,16124,167.77304609218436,0,0.0,22641,232.68411823647293,2186047,0,78462,0,0,2684,0,0,41,0.41750167000668,0,0.0,0,0.0,0,0.0,0.07466,0.1967429113523769,0.3219930350924189,0.02404,0.3251143873919674,0.6748856126080326,25.433062641666428,4.630978340094076,0.327944969905417,0.1969045571797076,0.2359415305245056,0.2392089423903697,11.160559418916224,5.624591119127867,25.48111248738701,13216.251423311864,65.29904025216484,13.44648615140165,21.398874528886555,15.333795567620562,15.119884004256072,0.5425623387790198,0.7877729257641921,0.686418458311484,0.5801749271137027,0.1063982746225736,0.7051094890510949,0.9174041297935104,0.8497854077253219,0.7248322147651006,0.1610486891385767,0.4924634420697413,0.7332506203473945,0.6335877862595419,0.5400372439478585,0.0934163701067615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365141404833,0.0042978926135038,0.0066057168369676,0.0085515224147386,0.0110123647604327,0.0133046948165641,0.0153297319335439,0.0173920143708663,0.0194096363376193,0.0215130797887583,0.0236162361623616,0.0259192346383625,0.0280418983789562,0.0298141761466,0.0320880979140674,0.0342395009192505,0.0360044294037898,0.0380380691714356,0.0400889249020891,0.0420080580512841,0.0571461363494084,0.0716316801873379,0.0855276950815547,0.0982814403966553,0.1110397270084677,0.1263284666906125,0.1401288053725398,0.1527985967150374,0.1644439228405599,0.1761946077958803,0.190065491617288,0.2038587432077693,0.2159864499527702,0.2279347541269979,0.2388631944368154,0.2505946520041155,0.261397464628558,0.2716591595808013,0.2806063489905513,0.2892864496351033,0.298057478304078,0.3069162414320578,0.3144423051936547,0.3217098805334099,0.3289639770851539,0.3360307430809592,0.3422546127306365,0.3478631174840464,0.3536572744443582,0.3595076176920238,0.3608720210877401,0.3623990201340434,0.3636722327908124,0.3641816499971093,0.364728445904759,0.3658966537394423,0.3657269559708584,0.3669037567554248,0.3682817276655338,0.3697303286452097,0.3705504656052868,0.3718774703557312,0.3726452695615691,0.3748070599288638,0.3756968746229033,0.3766118274788795,0.3771265189421015,0.3780533989774663,0.3806456155173021,0.3820756593341023,0.3827504337503424,0.3840004263710494,0.3871233223600911,0.391208120277799,0.3897775674396592,0.3868883837779638,0.3863247863247863,0.3857754228652945,0.3868413868413868,0.3878576952822892,0.0,1.9134310624383024,60.70860110619921,227.03556841507304,333.6042617441379,fqhc2_80Compliance_baseline_low_initial_treat_cost,89 -100000,95722,40688,381.7199807776687,7595,78.09072104636343,5878,60.83241052213703,2391,24.602494724305803,77.3893283971574,79.74958638113772,63.35181630130408,65.09332803484014,77.09762068103765,79.45813214324758,63.24529851099009,64.98972172814364,0.2917077161197454,291.4542378901359,0.1065177903139869,103.6063066965056,66.31042,46.438415782379,69273.9600091933,48513.83776183009,195.95355,115.63956409054022,204106.7466204216,120203.37444948938,239.67993,113.9856974400266,246729.5501556591,116263.31184634636,3890.54476,1741.0990501850035,4028597.8667390975,1783089.3004586229,1438.19731,624.3693261766808,1486956.519922275,636757.0006651349,2357.03656,972.9360014755124,2427055.180627233,985562.7194075875,0.38192,100000,0,301411,3148.8163640542407,0,0.0,0,0.0,16157,168.17450533837572,0,0.0,22580,232.3185892480308,2182372,0,78265,0,0,2537,0,0,43,0.438770606548129,0,0.0,0,0.0,0,0.0,0.07595,0.1988636363636363,0.3148123765635286,0.02391,0.3134216445888528,0.6865783554111472,25.52743108233723,4.569427179845039,0.3223885675399796,0.2014290575025518,0.2397073834637632,0.2364749914937053,11.104986131144727,5.53343851813811,25.311250379801574,13285.922990774416,65.86540859881305,13.648734886041842,21.476119306384515,15.471115041879989,15.269439364506722,0.5381082000680504,0.754222972972973,0.6891820580474934,0.57416607523066,0.1115107913669064,0.724233983286908,0.9454022988505748,0.8701825557809331,0.7724358974358975,0.1448763250883392,0.4779378658262044,0.6746411483253588,0.6255349500713266,0.5177757520510483,0.1029810298102981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0047128219161421,0.0071411906718196,0.0090980169166252,0.0112642836810215,0.0134356615027583,0.0155816892222403,0.0177853513193608,0.0199250002554487,0.0221633292062744,0.0241828056153294,0.0264291870152255,0.0288837969194726,0.0310547498224413,0.0331150415098231,0.0348668981481481,0.0367636401283776,0.0386490467398294,0.0405895620900766,0.042482706892241,0.0576939142057558,0.0719300999319834,0.085219525497682,0.0982556855818061,0.1104727771043061,0.1262875150694782,0.1405176071277047,0.1530748022695096,0.1658761697218305,0.1775030557759526,0.1920186074559042,0.205202530961008,0.2174087924511893,0.2290953625438759,0.2401302759561639,0.251290687110855,0.2614311230185309,0.2719408760602038,0.2813354668119248,0.2905066336701725,0.2998692901181016,0.308764544232006,0.3163889250274982,0.3235103859699562,0.3308190309611437,0.3374605755962941,0.3433826199091057,0.3499707297207869,0.356112543901712,0.3613102546837248,0.3627245065568031,0.3637840367831282,0.3650596981302095,0.3658353104565708,0.3671582327406791,0.3680993811653698,0.3684643625775414,0.369249196035965,0.3705949676295246,0.3715689778413152,0.3736752265010973,0.3747748461036004,0.375154966275136,0.3751458314636992,0.3760747753840208,0.3771231768727007,0.37857836695046,0.3801517584458928,0.3813875026358332,0.3829981718464351,0.3832472223492296,0.3838794163236945,0.384258965407807,0.3839743099625353,0.3791240045506257,0.3811685983988529,0.3795597968293058,0.3768854463921728,0.373197625106022,0.3769778481012658,0.0,2.239025182687615,63.42432420754211,219.86473965259287,338.1321897868452,fqhc2_80Compliance_baseline_low_initial_treat_cost,90 -100000,95665,40757,382.647781320232,7496,77.03966968065646,5904,61.05681283646056,2405,24.617153608947888,77.35982293729873,79.73511514658739,63.33991942654043,65.08955731400319,77.06052762385464,79.43818786942171,63.22902308938337,64.98292716965946,0.299295313444091,296.927277165679,0.1108963371570652,106.63014434372542,65.80332,46.0681397852828,68784.92656666492,48155.47901241082,197.37127,116.46039704346,205660.7118590916,121084.2455084932,240.11239,113.77022113147436,247276.68426279203,115927.08771144557,3884.70898,1746.465366422456,4019054.523597972,1784007.1255180333,1432.89064,627.0758806071684,1478425.72518685,636190.3762519136,2368.15264,994.865494173982,2427428.98656771,999495.971607477,0.38155,100000,0,299106,3126.587571212042,0,0.0,0,0.0,16321,169.9053990487639,0,0.0,22587,232.3733862959285,2183136,0,78307,0,0,2646,0,0,39,0.4076726075367166,0,0.0,1,0.0104531437829927,0,0.0,0.07496,0.1964618005503866,0.320837780149413,0.02405,0.3039402001773723,0.6960597998226277,25.27869935652848,4.677047776338057,0.3348577235772357,0.1944444444444444,0.2381436314363143,0.2325542005420054,11.356846018492329,5.680357155366284,25.68877264311661,13259.769506653787,66.3515696597133,13.28945785021514,22.02136617221033,15.772329215483142,15.268416421804693,0.5497967479674797,0.7796167247386759,0.6939807789580172,0.5761024182076814,0.123088128186453,0.6940836940836941,0.917933130699088,0.8631346578366446,0.7184466019417476,0.159322033898305,0.5055334218680833,0.724053724053724,0.6437007874015748,0.536007292616226,0.1131725417439703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392878843115,0.0049766371717294,0.0071120580327702,0.0092015193678779,0.0115300146412884,0.0137208000407145,0.0157837353141972,0.0180386075174468,0.0202455617070828,0.0222706440788935,0.0247198147806667,0.0264272890484739,0.0286656936707299,0.0306733937397034,0.032512609982774,0.034562235796306,0.0365343603122347,0.0384595438374493,0.0404424760360135,0.0423866597186034,0.0571900204772451,0.0713186249358645,0.0848596168984518,0.0975263307414694,0.1097985444573357,0.1249761919878102,0.1395287124509075,0.1526138639171743,0.1652733531461803,0.1765255192400579,0.1895657984071731,0.202454054171134,0.2151331112997671,0.2266239026205749,0.2389149540738782,0.2509251667516121,0.2623893360722539,0.2722457150569076,0.2823233068203737,0.2918150688853514,0.2999282523665146,0.3083612274993563,0.3157227938477568,0.3230326640695235,0.3298117789921068,0.3365450961064564,0.3422873371951906,0.3486735797442585,0.3543269355298262,0.3593696335631819,0.3615668525552951,0.362961432506887,0.3644664606178641,0.3652883474637576,0.3664797656052471,0.3675013041210224,0.3679748523528291,0.3692016148965972,0.3706806282722513,0.3725553522087056,0.3737151248164464,0.374726803099543,0.3754398533470996,0.3760178145665572,0.3776482538454097,0.3784994107633888,0.3788446682498355,0.3800221273905484,0.3819796954314721,0.3816336317135549,0.3834151714010371,0.3849372384937238,0.3883464164911609,0.3891549513363201,0.3917270301181852,0.3915407854984894,0.3953848536472046,0.3927183473102884,0.3921139101861993,0.3895348837209302,0.0,2.459165031834183,60.85612673559246,231.09636684567093,339.6599579815073,fqhc2_80Compliance_baseline_low_initial_treat_cost,91 -100000,95850,40589,380.114762649974,7497,76.99530516431925,5767,59.55138236828378,2402,24.621804903495047,77.34109898624328,79.63027270655083,63.34986309044478,65.04348116953477,77.05095419761034,79.34063495488088,63.2440879903011,64.94039187265206,0.2901447886329436,289.6377516699431,0.1057751001436813,103.08929688271462,65.40402,45.7803224029686,68235.80594679185,47762.46468749984,192.97079,113.78087636629654,200657.84037558685,118039.255468228,235.17268,111.65588549080236,241062.96296296292,113310.79544186138,3844.59341,1707.1382933217185,3974557.047470005,1744769.2411729745,1422.59197,611.6339363371245,1469592.676056338,623604.0129845279,2368.70912,973.7405882210378,2431850.808555034,984926.7740127622,0.38011,100000,0,297291,3101.6275430359938,0,0.0,0,0.0,15946,165.717266562337,0,0.0,22079,226.1032863849765,2187630,0,78603,0,0,2525,0,0,39,0.386019822639541,0,0.0,0,0.0,0,0.0,0.07497,0.1972323801004972,0.3203948245965052,0.02402,0.3256462240243284,0.6743537759756716,25.529285860570877,4.657321142949107,0.3363967400728281,0.1916074215363273,0.2249002947806485,0.2470955436101959,11.194416807545773,5.575302103014875,25.44865505185393,13253.531693468702,64.80518338747079,12.915451129295356,21.86154767425148,14.403865378786852,15.624319205137107,0.5302583665684064,0.755656108597285,0.6701030927835051,0.5774865073245952,0.1221052631578947,0.7046289493019838,0.9269005847953216,0.859538784067086,0.6981818181818182,0.149812734082397,0.476395823876532,0.6788990825688074,0.608339029391661,0.5450097847358122,0.1157167530224525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026023998784871,0.0044583599315033,0.0066538863362038,0.0089345543890998,0.0110889760738316,0.0133110803549621,0.0154853958454312,0.0175363427697016,0.019661716340163,0.0218500976912139,0.0241019390127731,0.0262456154745543,0.0283991701074341,0.030505998312653,0.0326436402604896,0.0348646389166984,0.0367486635439608,0.0387803311299446,0.040789842509058,0.0426762658787544,0.0572784150156412,0.0707208996091382,0.0844148362295614,0.0970279353077084,0.108916104166886,0.1246078938752231,0.1383836350731485,0.1517036092063998,0.1643778610070745,0.1757298409568311,0.1901425881086898,0.2030712663566562,0.2156344780354172,0.227542030126145,0.2391928616224185,0.2507395876037361,0.261647305636459,0.2725534093082383,0.2826582838725785,0.2919110235498946,0.3009637968737345,0.3092129889575145,0.3168171544205531,0.3242676319700819,0.3315429390820381,0.3378813486140067,0.3430686187333275,0.3494531240052459,0.3552144060111413,0.3602056731963941,0.3612013972244325,0.3625087857113325,0.3638700201946025,0.3656604923050144,0.3666840731070496,0.3665129151291513,0.3665426681928017,0.3676783680744665,0.3678637834859858,0.3695742265626408,0.3714210068459472,0.3726839386505515,0.37394708994709,0.375746876697447,0.376157745929609,0.3786361594758117,0.3785225994404222,0.3800204003570062,0.3817878916773004,0.384374749338253,0.3850294442399705,0.3876784372652141,0.3874705545298275,0.3862990553720912,0.3882251744241613,0.389920424403183,0.3868101028999064,0.3895837605085093,0.3894150417827298,0.3976653696498054,0.0,2.387106718526422,59.93624177034647,218.50441708704903,339.74812603328843,fqhc2_80Compliance_baseline_low_initial_treat_cost,92 -100000,95630,40561,380.0271881208826,7511,77.28746209348532,5792,59.84523685036077,2383,24.427480916030536,77.31769350596971,79.74036674467656,63.289715480586615,65.08152991755651,77.02139753757808,79.44580081627615,63.181553480724936,64.97734781865353,0.2962959683916324,294.5659284004165,0.1081619998616787,104.18209890298158,65.7459,45.95770799884466,68750.28756666317,48057.83540609083,193.3747,113.7203801165046,201515.7377392032,118221.45782338658,231.31114,109.13023053592866,237826.6757293736,110954.261600104,3841.37274,1711.1118887971338,3970123.9360033465,1742549.7463109216,1412.96044,605.7449754192277,1457817.7350203912,613737.0025982703,2353.12188,977.1375326866894,2413779.1069747987,980956.9071560327,0.3809,100000,0,298845,3125.013071211963,0,0.0,0,0.0,16035,166.94551918853918,0,0.0,21842,224.33336818989855,2184414,0,78349,0,0,2553,0,0,27,0.2718812088256823,0,0.0,0,0.0,0,0.0,0.07511,0.1971908637437647,0.3172680069231793,0.02383,0.3113159888860823,0.6886840111139176,25.714557942273466,4.5995190573115385,0.3228591160220994,0.2007941988950276,0.235842541436464,0.2405041436464088,11.007429821929572,5.389567962891031,25.313155793171585,13291.122387117555,64.96133828316894,13.456695440342706,20.945037902635107,15.212658930994458,15.346946009196676,0.5429903314917127,0.7592433361994841,0.7032085561497327,0.5710102489019033,0.1198851399856425,0.695814648729447,0.9425981873111784,0.851063829787234,0.7302631578947368,0.1321428571428571,0.4970812752581949,0.6862980769230769,0.6599861782999309,0.5254237288135594,0.1168014375561545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185752492098,0.0044720723644181,0.0067106598984771,0.0088110651531011,0.0112222369184124,0.0134270578647106,0.0154550833452349,0.0179609517874109,0.0202429564131691,0.0224481846696324,0.0247192395343585,0.0267749730090997,0.0291837007898341,0.031081081081081,0.0334452652787105,0.0354733225712984,0.0375439360477775,0.0394191517871054,0.0413041668401115,0.0433299962457765,0.057646886691888,0.0714854556123732,0.0846708121507499,0.0973215508252319,0.1094084971116579,0.1249708729637553,0.1382780865739215,0.1508629419979319,0.1643630450596944,0.1761154912028185,0.1906046060083059,0.2051576552172499,0.2174164034418908,0.229068328423266,0.2408746252865455,0.2518219431842131,0.2628731739485185,0.2730795224149583,0.2828866681807858,0.292105082181418,0.300590756399861,0.3092737639469402,0.3178306514681138,0.3248796764165776,0.3311591116519622,0.3378033284397784,0.3439214409178586,0.3496994243211574,0.3558383272368796,0.3611904761904762,0.3625332379499777,0.36415770609319,0.364814501101135,0.366031235977825,0.3670867242944073,0.3676368942477536,0.367160811605256,0.3683526178053558,0.3691240688415104,0.3711778687206247,0.3733360830927293,0.3737225988812239,0.3747334977634714,0.3749385639605022,0.3765087761481125,0.3772772354752832,0.3771576935147935,0.3784957060618453,0.3806844159954982,0.3823599713170265,0.3841278589143014,0.3851923282974392,0.3859905840437714,0.3868142000922084,0.3902044698050404,0.3906380940979289,0.3882170542635659,0.392726533929297,0.3924507354981959,0.3930232558139535,0.0,2.766805086628015,58.534126485590825,222.7417762608696,340.448149318452,fqhc2_80Compliance_baseline_low_initial_treat_cost,93 -100000,95724,40826,383.12230997451,7555,77.81747524131879,5853,60.7057791149555,2374,24.487066984246376,77.34880342590687,79.70642937097622,63.338894218876014,65.07712700969611,77.05773855481361,79.4119485685217,63.23197771236289,64.9711054196603,0.2910648710932548,294.4808024545296,0.106916506513123,106.0215900358088,64.06202,44.90383271498517,66923.67640299193,46909.691106708,194.44233,114.43162248107848,202708.02515565584,119123.23187610052,239.22576,113.59920293787933,247157.01391500563,116578.39307019468,3887.02054,1732.9889335840608,4032741.297898124,1782488.8989010716,1427.43078,621.4500978741536,1475811.6564288998,633827.7421275275,2343.37324,977.7989111997192,2418899.2520162133,997017.4690095542,0.38244,100000,0,291191,3041.985291045088,0,0.0,0,0.0,15999,166.68756006853036,0,0.0,22483,232.11524800468013,2192936,0,78672,0,0,2571,0,0,38,0.3969746354101374,0,0.0,0,0.0,0,0.0,0.07555,0.1975473276853885,0.314228987425546,0.02374,0.3201902616097133,0.6798097383902867,25.76007276152197,4.502799706655312,0.3256449683922774,0.2005808986844353,0.2357765248590466,0.2379976080642405,10.82167518873703,5.375155429005855,25.38538869422787,13347.710249283577,65.503362437732,13.458614557528408,21.354788446875933,15.358966391177212,15.330993042150448,0.5373312831026824,0.7657580919931857,0.6899265477439664,0.5659420289855073,0.1076812634601579,0.6878571428571428,0.905775075987842,0.8509719222462203,0.7178683385579937,0.1453287197231834,0.4900067370312149,0.7112426035502959,0.6382536382536382,0.5202639019792649,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0043891659571017,0.0065851554969306,0.0087363748107965,0.0109301285179762,0.0133760879523591,0.0154830949881252,0.0178319893845054,0.0198967860610086,0.0218924312982958,0.02393251747535,0.0261202454995176,0.0281396185678301,0.0304016142814491,0.0324417441176774,0.0343566269541946,0.0364361151377096,0.0384623365843536,0.0402794817941733,0.0424172961708778,0.0571637426900584,0.0710607836570663,0.084330018045239,0.0975160703201439,0.1101313221876483,0.125944104766539,0.140117994100295,0.1535128344352529,0.1652261242107287,0.1770669069610272,0.1914744632488392,0.2053454525780446,0.2183125401089876,0.2306505950297515,0.2419890840265856,0.253443709343174,0.2646220881514999,0.2745073752955748,0.2843159520348837,0.2943441195343294,0.3033334491182975,0.3117971282459363,0.3197029984368338,0.3272794840442111,0.3335884911666788,0.3403263977911449,0.3466926848794155,0.3524023966721368,0.3578714370776917,0.3623046875,0.36399902962344,0.365175815696649,0.3669705351095055,0.3674140378320442,0.3683724394785847,0.3683475324276614,0.3686750047616024,0.3698774368676483,0.371006697613868,0.3722784696711764,0.3728377439287794,0.3742026229248385,0.3750656885207996,0.376921002965759,0.3768736099023305,0.3783741286230934,0.3782821028440103,0.3812060110329085,0.3830020513546014,0.3850712798334134,0.3882542607093505,0.3895486935866983,0.3926987595603831,0.3939723473667857,0.394994246260069,0.3986690865093769,0.4039880672005024,0.399375,0.405793025871766,0.4078431372549019,0.0,1.6982448316873031,62.35753720195957,216.8718716491369,344.5242012981623,fqhc2_80Compliance_baseline_low_initial_treat_cost,94 -100000,95631,40532,380.8493061873242,7431,76.64878543568508,5872,60.754357896498,2405,24.720017567525176,77.26744378178137,79.68268850346526,63.28338998351626,65.06934643134906,76.97596832052417,79.38978143926185,63.17831666210591,64.96601728820102,0.2914754612571926,292.90706420340484,0.1050733214103516,103.32914314804498,65.92696,46.14784387743842,68938.90056571613,48256.15530260942,195.9328,115.36825742313668,204216.85436730765,119971.63830048488,239.45469,113.06868015324008,245663.93742614845,114628.15698167648,3880.31615,1722.928256620511,4017709.2051740554,1762045.2415869422,1438.88627,614.3119502787947,1484967.7928705127,622796.9362799753,2370.19456,971.9578320703364,2438923.8217732743,985782.2432245086,0.37941,100000,0,299668,3133.586389350733,0,0.0,0,0.0,16165,168.3554495927053,0,0.0,22509,230.68879338289884,2181084,0,78254,0,0,2602,0,0,38,0.3973606884796771,0,0.0,0,0.0,0,0.0,0.07431,0.1958567249149996,0.3236441932445162,0.02405,0.3195115746629356,0.6804884253370643,25.401573913438625,4.5988688798419615,0.3276566757493188,0.2035081743869209,0.2341621253405994,0.2346730245231607,11.246454142378376,5.664449616398957,25.57383810196672,13209.721791475273,66.01685605922714,13.920264673526844,21.586722024927298,15.349369720749628,15.160499640023378,0.5291212534059946,0.7456066945606694,0.6632016632016632,0.5687272727272727,0.1146589259796806,0.681422351233672,0.8950437317784257,0.8211920529801324,0.7198697068403909,0.1418181818181818,0.4824210057854917,0.6854460093896714,0.6145479265805575,0.5252808988764045,0.1078875793291024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0047759075238288,0.0068632228719948,0.0091049508170067,0.0114955391204386,0.0134945207153623,0.0156412504843281,0.017774556146566,0.0198672788065317,0.0219659808911327,0.0240295369468232,0.0263384969388174,0.0281766932762735,0.0300357543971726,0.0319980181872606,0.03429203539823,0.0363016819951943,0.0382998598785614,0.0401922236784622,0.0421292965940011,0.0571121027495323,0.0711839555951196,0.0844980206441044,0.0969644004085371,0.1091406192270745,0.1248464698657405,0.139118983900429,0.1523511172202154,0.1647005978417804,0.1756665342367203,0.1898148647337265,0.2031473378676948,0.2159638718102181,0.2274850921822857,0.2390775496725191,0.2505843386173053,0.2606720757117507,0.271307537383125,0.2812908060725113,0.2905389139182171,0.2992356687898089,0.3079623648363994,0.3157651629102365,0.3237203720372037,0.3293915836344392,0.3359018053394581,0.3426824071985362,0.3486209312695076,0.3545537104307213,0.359890437060855,0.3611741503214999,0.3622714413854964,0.3630928825823958,0.3645369497425484,0.3652634721600238,0.36460961053344,0.3649470099614907,0.3663403862632654,0.3665139739564568,0.3672539380673867,0.3676512167078204,0.3690378904147814,0.3695670538542767,0.3706380296276284,0.3720563626221715,0.3727014068180621,0.3728213977566868,0.37373352390027,0.3747069271758437,0.3757251047373509,0.379041248606466,0.3817648337317974,0.3851612903225806,0.3875419037966788,0.3883336536613492,0.3943747717033971,0.401538944723618,0.3998328807186129,0.4090121317157712,0.419446704637917,0.0,2.438060508996404,60.81680032184362,222.0157943549304,347.95094835789416,fqhc2_80Compliance_baseline_low_initial_treat_cost,95 -100000,95827,40388,377.0127417116262,7522,77.19118828722594,5822,60.05614284074426,2349,24.095505442098784,77.40182060844235,79.71604008953793,63.36325590393732,65.07598533164416,77.11657466976085,79.43123613162793,63.25784715322092,64.97371535465663,0.2852459386814985,284.80395791000035,0.1054087507163998,102.26997698752882,65.72874,46.02321697127863,68591.04427770879,48027.40038953388,196.2129,116.1496858710758,204074.81190061252,120526.32769421862,239.65068,113.81089582004088,245453.5360597744,115310.10888303042,3837.36801,1718.6327617622342,3960136.078558235,1749519.919723975,1395.70137,607.3647842300948,1440483.5067360974,617936.1139573149,2318.36672,964.407915094758,2379410.5001721857,970889.4928259857,0.37812,100000,0,298767,3117.774739895854,0,0.0,0,0.0,16275,169.11726340175525,0,0.0,22603,231.2605006939589,2185509,0,78462,0,0,2601,0,0,26,0.2713222786897221,0,0.0,0,0.0,0,0.0,0.07522,0.1989315561197503,0.3122839670300452,0.02349,0.3170086868941206,0.6829913131058793,25.526425600001858,4.622019014428132,0.3375128821710752,0.1932325661284782,0.2311920302301614,0.2380625214702851,11.183842991071051,5.605689259348882,24.757963304804296,13177.03708726765,65.18448439513455,13.056240671614592,22.07915414051375,14.926168798946104,15.122920784060094,0.5352112676056338,0.7511111111111111,0.6788804071246819,0.5780089153046062,0.1147186147186147,0.7117310443490701,0.9403409090909092,0.8739316239316239,0.7250859106529209,0.1533101045296167,0.4794303797468354,0.6649417852522639,0.6179024716098864,0.5374407582938389,0.1046405823475887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681706798436,0.0043985446290121,0.0067463377023901,0.0090496358816539,0.0114272933378066,0.0139256484384543,0.0159200937675177,0.0181669728516023,0.0203814624772573,0.0223943993531416,0.0248167700271641,0.0268505973642074,0.0290275165232764,0.0310225178382051,0.0331590292603937,0.0352755189551668,0.0373882080158993,0.0393193766136809,0.0413377648525135,0.0436063151102646,0.0580627666120839,0.0718848337218905,0.0851681460444546,0.0977938859123857,0.1097196182932737,0.1252006929187088,0.1393941962346509,0.1520151387899599,0.1639963708170998,0.1762537900296774,0.1899178105770472,0.203147121443007,0.2157968510610555,0.2279716305856382,0.238437685557828,0.2489120203753945,0.2598253031536908,0.2701128094386521,0.2793486894360603,0.2888430934798786,0.2969561646054351,0.3046401758776341,0.3126434334114084,0.3202123961691978,0.3275218991847793,0.3341098169717138,0.3403541705775608,0.3468886740612598,0.3529305143774518,0.3579137639856449,0.3598298193176616,0.3608648975996476,0.3611169785813865,0.362171294892345,0.3627669369449642,0.3629007539998774,0.3631611462243976,0.3652485180867309,0.3653326492218232,0.3663408794468168,0.3672918229557389,0.3677335075114304,0.3683304647160069,0.36902893025342,0.3703953550003613,0.3718153074289895,0.3737039047102173,0.3764002517306482,0.3790785259230579,0.3803715219644423,0.3807255404910223,0.3832700433224582,0.3858073493137689,0.3885496183206107,0.3886136299897167,0.3886328725038402,0.3839080459770115,0.3822929416564667,0.3805723720418272,0.3826354206684594,0.0,2.680375037675536,61.21772707278873,216.8046243674033,340.4447075600523,fqhc2_80Compliance_baseline_low_initial_treat_cost,96 -100000,95708,40694,381.2220504033101,7438,76.56622225937225,5765,59.77556735069169,2333,24.010532034939608,77.32145341825886,79.7085207473738,63.3143933609397,65.08006520427811,77.03506447654881,79.4206522726508,63.20907105149561,64.97670483386618,0.2863889417100438,287.86847472299826,0.1053223094440838,103.36037041193435,65.33318,45.766974912968,68263.02921385881,47819.38282376395,194.64553,115.36814212436738,202935.16738412672,120104.75628026234,240.31936,113.38462276946828,248667.3005391399,116551.91971920789,3816.12705,1708.9243375938463,3958046.610523676,1756496.4033971275,1418.23599,618.3578597884402,1469352.7500313453,633662.867106126,2295.99898,956.260193268772,2365361.223722155,971016.623273892,0.38068,100000,0,296969,3102.86496426631,0,0.0,0,0.0,16073,167.46771429765536,0,0.0,22537,232.98992769674427,2185880,0,78387,0,0,2542,0,0,48,0.5015254733146655,0,0.0,0,0.0,0,0.0,0.07438,0.1953872018493222,0.3136595859101909,0.02333,0.3136503067484663,0.6863496932515337,25.53874099888512,4.645347715505569,0.3252385082393755,0.201561144839549,0.2398959236773634,0.233304423243712,11.187279966633657,5.566297862771838,24.76399331707553,13244.01034867312,65.02741628226626,13.593825833495654,21.19363403019385,15.357637087436864,14.882319331139865,0.540156114483955,0.7512908777969018,0.6874666666666667,0.5755603759942155,0.1159851301115241,0.6890934844192634,0.9112426035502958,0.8482905982905983,0.7272727272727273,0.1476510067114094,0.4918447048012864,0.6856796116504854,0.6339729921819474,0.532093023255814,0.1069723018147087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0044417401886218,0.0065778788370959,0.0088007235698824,0.0111509034673612,0.0134463368918588,0.0156745566354263,0.0177557688380641,0.0196894263895562,0.0219972567404344,0.0241236838597894,0.0260014992965629,0.028227258232093,0.030109742902777,0.0321122224630724,0.0342538694568802,0.0365126059124526,0.0387836645737117,0.0412251052987364,0.0431479223337398,0.0578232713599331,0.0719781427629306,0.0851577422808085,0.0979626628501673,0.1094124225830616,0.1254842192163586,0.1395289597418725,0.1521060759358858,0.1645595323337358,0.1760945577793508,0.1902889401219538,0.2030681621340724,0.2156384957629423,0.2271772428884026,0.2380370798261539,0.2494600551574423,0.2607599174245383,0.2704568710573365,0.2808217624103821,0.2903273843616119,0.2991948358436871,0.3075051753780657,0.3155881830560653,0.3232363204662373,0.3301604668125455,0.3371410967344423,0.3435621995192308,0.3500298985992188,0.3557709730023555,0.3607922307550207,0.3622413235611123,0.3630083258790339,0.3646344213315294,0.3647632271688507,0.3664403953793021,0.3661963180764329,0.3668497238270586,0.3683569712724999,0.3700419412822049,0.371635166093929,0.3724805109420494,0.3732121957509274,0.3739536448912632,0.3747216912178117,0.3757296839045658,0.3765061825835306,0.378111315971422,0.3788220352436894,0.3818110961524835,0.3840115347644985,0.3844670004133559,0.387854991394148,0.3906320179659929,0.389433551198257,0.3893627216099664,0.3869285800897296,0.387374686716792,0.3874922086017037,0.3872686483454851,0.3771004298554122,0.0,1.7905750162808594,63.08094879211952,216.73079722745757,334.2462141625452,fqhc2_80Compliance_baseline_low_initial_treat_cost,97 -100000,95716,40809,384.16774624932094,7515,77.37473358686114,5813,60.26160725479544,2363,24.384637887082626,77.3455376358958,79.73036670252797,63.32130932583449,65.08642594697312,77.06020994129557,79.44431884590205,63.21668112362458,64.98421558434632,0.2853276946002268,286.04785662592747,0.1046282022099092,102.21036262680629,65.98394,46.21781575320702,68937.21007981946,48286.40535877703,194.99722,114.9848487336488,203265.72359898032,119672.20604042042,239.30953,113.31359970204808,247194.65920013376,116300.53593973372,3837.16116,1711.6967669920066,3978809.4049061807,1758214.7362948768,1364.45497,588.3362795514046,1416883.2379121569,606044.0233664772,2326.87924,963.2330497706548,2402667.391031802,981033.5904435688,0.38143,100000,0,299927,3133.5095490827034,0,0.0,0,0.0,16142,168.1641522838397,0,0.0,22459,231.8107735383844,2185184,0,78283,0,0,2552,0,0,32,0.3343223703456057,0,0.0,0,0.0,0,0.0,0.07515,0.1970217340009962,0.3144377910844976,0.02363,0.3155499367888748,0.6844500632111251,25.472617901732093,4.581756134729534,0.3409599174264579,0.1909513160158266,0.2386031309134698,0.2294856356442456,10.984192425210509,5.397373918156858,25.090584873457992,13237.484106467226,65.24602657592894,13.03042076025996,22.075024601431984,15.562514718904966,14.578066495332038,0.5408567004988818,0.781981981981982,0.6765893037336024,0.5753424657534246,0.1026986506746626,0.6940836940836941,0.90633608815427,0.8451025056947609,0.7133956386292835,0.1254752851711026,0.4928845719448836,0.7215528781793842,0.6286454957874271,0.5337711069418386,0.0971055088702147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492629104651,0.0044424159440133,0.0063150413726585,0.0084249679871542,0.0109058354358264,0.0129659808514972,0.014949725683751,0.017176761332884,0.0192347022251308,0.021085293545381,0.0231580242861831,0.0254519309778142,0.027330892034233,0.0294093400931536,0.0313009556440793,0.0334660118893771,0.0353864959496136,0.0374994810478681,0.0393215191979699,0.0411691153485464,0.0561793058790353,0.0702376840717134,0.0835616007052674,0.0964595717817875,0.1090203358366382,0.1248188693214871,0.1388885941363101,0.1518143379024613,0.164952751528627,0.1764971072206777,0.1909520113827447,0.2042454107326582,0.2170287804240867,0.2281784459836523,0.2392484066617499,0.2511994858554855,0.2619924551887319,0.2720695785233691,0.2818973928433664,0.2907077923564837,0.2995013132470177,0.3079459358338789,0.3164661769750304,0.3243243243243243,0.3307808062911094,0.337403828399089,0.3444688937787557,0.3500711526733076,0.3561385370896872,0.3616710334022356,0.3632062792322993,0.3651913678545934,0.3668983761573748,0.3685813688267818,0.3694026528977121,0.3698445722677763,0.3695228436048999,0.3703331631560745,0.370938999314599,0.3709347771522822,0.3715878906617938,0.3731298742638866,0.3728620536938229,0.3734796195957643,0.3748396931787935,0.3750754612981968,0.3764044943820224,0.3754704449856099,0.3757421543681086,0.3753502521815707,0.3767252051905176,0.3779691846779371,0.3770346443726645,0.3766184018999464,0.3773513205396162,0.3777052351589892,0.3752333540759178,0.3788473455897542,0.374965460071843,0.3715846994535519,0.0,1.7742232462620962,61.7371292950432,220.9970956969049,337.4343396311743,fqhc2_80Compliance_baseline_low_initial_treat_cost,98 -100000,95605,40649,380.4926520579468,7488,77.21353485696355,5833,60.38387113644684,2375,24.43386852152084,77.23812690061078,79.66900482527225,63.25655152000609,65.05402804301131,76.9422864889907,79.37318065724081,63.14820758291242,64.94886713229452,0.2958404116200768,295.8241680314444,0.1083439370936716,105.16091071679055,66.12826,46.33481397978206,69168.20249986925,48464.84386777058,196.53566,115.54324748317627,204953.0568484912,120237.39080924253,238.43873,112.52436987442154,245732.3152554783,114881.27376615524,3877.20351,1727.742553358215,4016294.503425553,1768021.9688909734,1465.47578,632.3707276017492,1519220.8984885728,647817.6743912444,2337.2141,970.1643638995396,2406502.588776737,980905.090050566,0.38059,100000,0,300583,3144.0092045395118,0,0.0,0,0.0,16245,169.26938967627214,0,0.0,22369,230.2285445321897,2176624,0,78167,0,0,2611,0,0,39,0.4079284556247058,0,0.0,1,0.010459703990377,0,0.0,0.07488,0.1967471557318899,0.3171741452991453,0.02375,0.3095358863809282,0.6904641136190718,25.533840930477872,4.624228585199401,0.3312189267958169,0.188067889593691,0.2442996742671009,0.236413509343391,11.070776788793168,5.646624234760308,25.26804277765108,13293.12252726152,65.57107657411227,12.66081778831192,21.9132433908244,15.889015408494632,15.107999986481296,0.5417452425852906,0.7274384685505926,0.7070393374741201,0.5719298245614035,0.1312545322697607,0.695994277539342,0.89171974522293,0.8787234042553191,0.732484076433121,0.1666666666666666,0.4931228861330327,0.6615581098339719,0.6518467852257182,0.5265526552655265,0.1214087117701575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022802821469109,0.0047873581288732,0.0070871578263341,0.0092698941890367,0.0115107474352711,0.0138553541774911,0.0160538528226834,0.0183058881216034,0.0205592946423091,0.0228508803375907,0.0250554050726422,0.0270850672502902,0.0293015788065293,0.0313501922660591,0.0333770512118802,0.0354910806671909,0.0374962420824564,0.0398179986079802,0.0416397743124232,0.0436606053018684,0.0575646373720582,0.0717751485490919,0.0852472106070475,0.0980020432451788,0.1096947935368043,0.1251522694772522,0.1390081169521057,0.1524144547489606,0.1648869010678593,0.1763953938039788,0.1907700939823257,0.2046316976386148,0.217439630372243,0.2294684931506849,0.2405458132639677,0.2523306401491609,0.2627739676217541,0.2728185232386344,0.2823280519569149,0.291386240955553,0.2999257178671742,0.308022569709198,0.3160893616011015,0.3235071261049972,0.331183241476857,0.3371887331609743,0.3437189843838336,0.3498933329926802,0.356290150589092,0.3621235608198524,0.3633094011546938,0.3644669910427955,0.3653837993804896,0.3662276562068915,0.3678342760771905,0.3674745172912881,0.3674259318254221,0.368130505925326,0.3694839964876638,0.3701305708427754,0.3713186046072864,0.3728212585406665,0.3734547682944868,0.3755500891426508,0.3755097087378641,0.3765932792584009,0.3777937995674116,0.3787859506235683,0.3794094683795869,0.3795419115001798,0.3805464682301986,0.3811745776347546,0.3797090400863985,0.3807254841684598,0.3832590766897336,0.3870005963029219,0.3878954607977992,0.3911723020854424,0.392570002772387,0.3999230177059276,0.0,2.4830751814591827,61.71067819174472,217.88420981343023,343.19541276991043,fqhc2_80Compliance_baseline_low_initial_treat_cost,99 -100000,95720,45142,428.3117425825324,5884,60.311324697033015,4628,47.77475971583786,1791,18.31383201002925,77.33641368994157,79.71053988455475,63.332022412709286,65.08909152554253,77.11467020307505,79.49172825111951,63.24961628853156,65.0102510158246,0.2217434868665151,218.81163343523724,0.0824061241777229,78.84050971793499,180.37888,126.35580095841314,188444.2958629336,132005.64245550893,379.77995,247.37941966132396,396170.8420392812,257853.2770577776,385.72785,186.60019467812396,399131.1220225658,192099.5838712822,3250.02611,1490.832082814472,3356802.528207272,1519312.0649064914,1073.47581,477.5230206387625,1107933.106978688,485872.6538121903,1735.94898,725.021303067744,1777060.3635603846,726916.6846098395,0.38052,100000,0,819904,8565.649811951525,0,0.0,0,0.0,32500,338.9364814040953,0,0.0,35230,364.29168407856247,1493157,0,53589,0,0,7110,0,0,70,0.7312996239030506,0,0.0,1,0.0104471374843292,0,0.0,0.05884,0.1546305056238831,0.3043847722637661,0.01791,0.3471612168537498,0.6528387831462502,24.133888548072505,4.208108042078352,0.3230337078651685,0.2510803802938634,0.2180207433016421,0.2078651685393258,11.146085659446635,6.0835850810319645,19.120437296151277,12106.79189073068,52.76018118030067,14.166834387266409,16.896440461794654,11.305360652388332,10.391545678851267,0.574114088159032,0.8123924268502581,0.6949832775919732,0.5688800792864221,0.1039501039501039,0.7587822014051522,0.9419642857142856,0.8684863523573201,0.7109375,0.1034482758620689,0.5034359127576935,0.7310924369747899,0.6309523809523809,0.5205843293492696,0.1040609137055837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218718333265,0.0045030882666152,0.0066196253616934,0.0088625091470851,0.0112916187705359,0.0134744260892591,0.0156436431128198,0.0179191341637737,0.0199564475069776,0.0221833220727637,0.024263484839166,0.0263136280569187,0.0282073958290485,0.030127307185234,0.0321116064058114,0.034440344403444,0.0364165380991333,0.0382911622213231,0.040357952065188,0.0425,0.0569205868532344,0.0708008119023206,0.08345568186585,0.0964985125773932,0.1088193756455386,0.1238705177388161,0.1360186559253763,0.1477105973926543,0.1585121144198954,0.1685396869609933,0.181325067803177,0.1928817078710012,0.2052379917409258,0.2150036050601936,0.2259840443067185,0.2360232650714317,0.2463427406326251,0.2560198658381743,0.2641935008557471,0.2713124220974511,0.2779433853264009,0.2842147052298495,0.2901549508692366,0.2959303299279852,0.2999672643945731,0.3050424302053868,0.3094997189432265,0.3137939794233456,0.3177698185908791,0.3211926206269038,0.3203687504205639,0.3189529343725042,0.3185335532157808,0.3163778889820948,0.3156053704861421,0.3141494533130913,0.3126505642196018,0.3125575128171421,0.3125919086214562,0.3136536640280185,0.3153467108837802,0.3168934800213316,0.3174194897532413,0.3192775114282529,0.3196267063311182,0.3215919725486118,0.3239404418278986,0.3265615141955836,0.3298193829503127,0.3321660233196705,0.3360084380445748,0.3392521860415213,0.3426246315519672,0.3441242370393262,0.3490512333965844,0.3519344341328191,0.3528591352859135,0.3539119804400978,0.3636363636363636,0.3675018982536067,0.0,2.1766120424486304,56.13554708771282,173.64800918468848,248.70969633071087,fqhc2_80Compliance_implementation,0 -100000,95606,45149,428.7492416793925,5875,60.19496684308517,4630,47.81080685312637,1825,18.712214714557664,77.26635035352784,79.7039119965668,63.26822878755484,65.07181676369133,77.03948642449753,79.47952077797231,63.18305406250962,64.99005515236685,0.2268639290303156,224.39121859449077,0.0851747250452206,81.76161132448101,179.52748,125.70141854813178,187778.4657866661,131478.58769128696,383.63742,250.35696633797664,400656.1094491978,261250.1582933882,386.08402,187.0869280352922,399832.5209714872,192594.878058832,3325.14354,1522.2575951387123,3436894.49406941,1551148.8872442234,1089.79536,483.6058566543956,1123622.136685982,489593.2991762256,1791.77582,754.1833304413003,1839059.2013053573,759236.1234977758,0.3795,100000,0,816034,8535.384808484823,0,0.0,0,0.0,32792,342.3529903980922,0,0.0,35253,364.7260632177897,1488758,0,53367,0,0,7145,0,0,65,0.6798736480973998,0,0.0,0,0.0,0,0.0,0.05875,0.1548089591567852,0.3106382978723404,0.01825,0.3352788586251621,0.6647211413748378,24.268006805148254,4.2872189072106766,0.311231101511879,0.2503239740820734,0.2161987041036717,0.2222462203023758,11.145037543941797,5.784102408684458,19.52131734509185,12109.05208991128,52.742161648148446,14.027045053000904,16.1628125413315,11.321861197199166,11.23044285661688,0.5632829373650108,0.7955133735979293,0.6897987508674531,0.5834165834165834,0.1049562682215743,0.7290322580645161,0.9244851258581236,0.8440111420612814,0.7154811715481172,0.1268292682926829,0.5026548672566372,0.7174515235457064,0.6386321626617375,0.541994750656168,0.0995145631067961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0046766421506467,0.0069972681202839,0.0093033186920449,0.011685429856884,0.0136367805782891,0.015676028739386,0.0177799576959627,0.0200437914381599,0.0221026744543498,0.0242928691654008,0.0264683510474271,0.0285764285640756,0.0305914133707262,0.0325469456896729,0.0346533116728578,0.036485379935114,0.038471525462458,0.0404879368846145,0.0426361844369583,0.0570604162964047,0.0710415727864351,0.0842139540746654,0.0965366871010554,0.1087932400316873,0.1242703842201718,0.1369066598643794,0.1487300926962996,0.1601733918441614,0.1697217148382937,0.1818211238282219,0.193217913554416,0.2051321149280066,0.2158508260659976,0.2263348176888144,0.2359394759612184,0.2458749008523901,0.2544056211785107,0.2628350052828302,0.2704962212869413,0.2772496207691149,0.2837690695577853,0.2903244907626717,0.2954872434298868,0.300841173753434,0.3052357506879404,0.3099412273336758,0.3150540099867522,0.3189145759900477,0.3229306930693069,0.3212731852530341,0.3195039024323096,0.317974298275279,0.3171450871563611,0.3161447646236655,0.3135432299163885,0.3104687425794298,0.310357852556207,0.3111555350521981,0.3128206044790791,0.3133106827098155,0.3137363616562048,0.3153720256829913,0.3154997650533664,0.3156132575392619,0.3174470529861855,0.3201736845112266,0.3240209371255597,0.3281420284760063,0.3325908837801288,0.3366914345626111,0.3402253640905708,0.3417257085020243,0.3465969380021221,0.3501024781069499,0.3517953532034734,0.3542329244282902,0.3564972886121711,0.3547859285519498,0.356766917293233,0.0,2.3598217421454244,54.044630652426015,178.03648662113085,250.7209660114992,fqhc2_80Compliance_implementation,1 -100000,95704,44964,426.6279361364207,5944,60.76026080414612,4705,48.566413107080166,1905,19.487168770375327,77.34534288058313,79.71343268085224,63.32656324425341,65.07429039018032,77.10249892168868,79.47412374738587,63.234219030105,64.9863522470684,0.2428439588944542,239.3089334663614,0.0923442141484116,87.93814311192705,179.1768,125.47656159682452,187219.76092953276,131109.00442700883,380.9192,248.1643064286624,397412.2398227869,258698.1907011853,380.30477,184.60948702484612,394216.8665886483,190405.46517697567,3392.38356,1572.694371335267,3499819.2238568924,1598447.088246329,1142.7589,517.8354804576538,1175402.0730585973,522434.08777771913,1873.02796,802.146584697596,1917632.679929784,803760.889618184,0.37964,100000,0,814440,8509.98913316058,0,0.0,0,0.0,32580,339.8081584886734,0,0.0,34834,360.7268243751568,1494009,0,53675,0,0,7005,0,0,67,0.7000752319652261,0,0.0,1,0.0104488840591824,0,0.0,0.05944,0.1565693815193341,0.3204912516823687,0.01905,0.3450273575796588,0.6549726424203411,24.123776848499688,4.245145070369565,0.3094580233793836,0.2412327311370882,0.2210414452709883,0.2282678002125398,11.31483758052817,5.997564353373731,20.405353703807307,12096.913118241177,53.59587659683673,13.535161004840209,16.534635424963675,11.687991958204506,11.838088208828353,0.573432518597237,0.8035242290748899,0.7177197802197802,0.5903846153846154,0.1182495344506517,0.7299484915378955,0.9216152019002376,0.9017632241813602,0.7509157509157509,0.1529850746268656,0.5098625224148237,0.7338935574229691,0.6487252124645893,0.5332464146023468,0.1066997518610421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0042770559260535,0.0066251369668438,0.0086329473898029,0.0106977973926661,0.012767387165416,0.0149740578779446,0.017108500148015,0.0191973503976447,0.0214554053085749,0.0236711261469065,0.0256626171967261,0.027967208730624,0.0300411056280713,0.0323432888191706,0.0342785077064618,0.036517668503252,0.0384411810492449,0.0403651790541945,0.042176459553536,0.0566695910097338,0.0705852800803818,0.0834487679973135,0.0961961382648498,0.1079803288376707,0.1229876906467967,0.1353733118151703,0.1473038327971536,0.1579751814363129,0.1679182132206226,0.1817280544839328,0.1942820012995451,0.2056749167374126,0.2158226115521489,0.2256980778763011,0.2359495748007051,0.2451522154124384,0.2538712581589016,0.2617195926384268,0.2699429383321493,0.2778343595203926,0.2841383666927927,0.2906587095781085,0.2962243564380178,0.3011353966594539,0.3056172291296625,0.3104553880066129,0.3147102223579097,0.3190692247861031,0.3214658578810345,0.3201548505449444,0.3193780069202244,0.3185066952935194,0.3181015260765065,0.3166490494126754,0.3135552931433741,0.3119736592161084,0.3138348479380597,0.3143412107478148,0.3155054498824535,0.3158523830868071,0.3172639334896274,0.3185463659147869,0.3197997899582151,0.319730510105871,0.3209497279425164,0.3215622872702519,0.3236075929574382,0.3273952984735757,0.3318603274807654,0.3341525578008374,0.3403521799087727,0.3434965738354184,0.3479587943533003,0.3505590528986188,0.3574639224035959,0.3563270899954317,0.3633791430881164,0.3628854625550661,0.3620015637216575,0.0,2.2320973020113275,59.67730774730928,170.63473929638957,248.83431272864496,fqhc2_80Compliance_implementation,2 -100000,95671,45027,427.0364060164522,5753,58.92067606693773,4515,46.70171734381369,1780,18.30230686414901,77.2498286400838,79.64839183209695,63.26585613190741,65.03884206524552,77.02504961900874,79.42411635425256,63.18222859642988,64.9573225368067,0.2247790210750651,224.27547784438676,0.0836275354775324,81.51952843881816,180.38966,126.36240327393264,188552.07952253037,132080.15310170545,380.99877,248.6616864334883,397746.2972060499,259421.1264470191,385.96865,187.25647005054307,400536.8502472013,193462.6247642309,3228.01515,1478.7673310976309,3343283.346050527,1514885.358313831,1048.22498,467.4093814773956,1084309.466818576,477223.2288255497,1734.98396,726.1989906880137,1786001.024343845,735550.5346257652,0.37771,100000,0,819953,8570.549069205925,0,0.0,0,0.0,32589,340.1135140220129,0,0.0,35218,365.17858076115016,1481062,0,53210,0,0,7093,0,0,58,0.6062443164595331,0,0.0,0,0.0,0,0.0,0.05753,0.1523126207937306,0.3094037893273075,0.0178,0.3444333996023856,0.6555666003976143,24.18637933946984,4.293522270409779,0.3136212624584718,0.2451827242524916,0.2256921373200442,0.2155038759689922,11.208207454523906,5.897048607902082,18.914212149492005,12035.02156500607,51.52397984341273,13.440581521080247,16.204693648120863,11.395208165471242,10.483496508740371,0.5616832779623477,0.7877145438121048,0.6913841807909604,0.5711481844946026,0.105858170606372,0.7354116706634692,0.9081885856079404,0.8727735368956743,0.7110266159695817,0.125,0.4950980392156863,0.71875,0.6217008797653959,0.5224867724867724,0.1011523687580025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024818671745208,0.0047156895555082,0.0070137331127373,0.0090631985368827,0.0111381228957085,0.0136170126087222,0.0156218134355753,0.0177668862000306,0.019932501534056,0.0221833041447752,0.024514580533987,0.0264098613251155,0.0283685753974378,0.0305700710140894,0.0325934338220111,0.034770557756151,0.0365876404028681,0.0386412242270717,0.0404178067227765,0.0427271115930393,0.0573706261558232,0.0709356510812084,0.0838230972671172,0.0963478919624162,0.1080085689260349,0.1234271321685204,0.1353147929873743,0.1471729076532895,0.1581233152197167,0.1686503673785072,0.181712251173329,0.1943074003795066,0.2054519681605059,0.2165968368175137,0.2260741918038034,0.2358581762019578,0.2444757874941232,0.2529640701675221,0.2619424304852092,0.2691803956710553,0.2752758100104517,0.2817205816712477,0.2878555551593386,0.2936979642908706,0.2985933347960701,0.3035126777983921,0.3076749208900497,0.3123187943035954,0.3166681824678108,0.3199242594774963,0.3194226714957565,0.3176335835725326,0.3164596317180367,0.3151622350450894,0.3136390052004947,0.3109045164457535,0.3076801166439507,0.3081237561063868,0.3084427253589827,0.3094210554590548,0.3101038751244435,0.3118650109916226,0.3119025658225725,0.3129846264174622,0.3154150388269908,0.3161239906225579,0.3168243684823686,0.3195444020276613,0.3222156253274194,0.3267451972487943,0.3297319289363049,0.3327723136801136,0.3366039622523592,0.3385755330409798,0.3387743680626807,0.3413489736070381,0.3422808613891416,0.3453587353060397,0.3404663923182441,0.334216502649508,0.0,1.851261906681234,55.14842587953571,171.20058643446174,240.44547974664837,fqhc2_80Compliance_implementation,3 -100000,95748,45088,427.74783807494674,5859,60.0221414546518,4681,48.335213268162256,1822,18.66357521828132,77.32698317968122,79.687275624404,63.31555014592704,65.06150643366422,77.1011423622099,79.46176586269895,63.23123368844755,64.97944043276607,0.2258408174713224,225.509761705041,0.0843164574794883,82.06600089815197,180.29594,126.2462396723306,188302.5650666332,131852.61276719155,380.30104,247.41166485963396,396625.8511927142,257835.62713743895,382.38362,184.87524328016903,395670.7711910432,190250.40904078376,3302.73056,1506.2587540607833,3413215.0018799347,1537031.748241966,1075.52677,481.3266843582402,1106851.5373689267,486438.7827601716,1774.40534,746.1248827773941,1819539.165308936,752010.6712038993,0.3808,100000,0,819527,8559.207503028783,0,0.0,0,0.0,32341,337.17675565024854,0,0.0,35090,362.8065338179387,1490866,0,53547,0,0,7051,0,0,67,0.699753519655763,0,0.0,2,0.0208881647658436,0,0.0,0.05859,0.153860294117647,0.3109745690390851,0.01822,0.3477058249267816,0.6522941750732184,24.115975817697908,4.273944069231315,0.3300576799829096,0.2450331125827814,0.2140568254646443,0.2108523819696646,11.34280218430297,6.073186432514964,19.258351022616807,12080.11821603426,53.1084104414184,13.876360174514012,17.55547789365399,11.003978503697471,10.672593869552925,0.5680410168767357,0.7872711421098518,0.6990291262135923,0.5808383233532934,0.0952380952380952,0.7368839427662957,0.9160997732426304,0.8625592417061612,0.6767676767676768,0.1269035532994923,0.5059888986269354,0.7067988668555241,0.6375779162956366,0.5572139303482587,0.0873417721518987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020870269996454,0.0043803613798138,0.0064652984998883,0.008899544863459,0.0111568777015001,0.0132681635354615,0.0153566912754415,0.0177714717350917,0.0199807857405666,0.0220366219383629,0.0241160192682176,0.0262995811776299,0.0282266354179515,0.030170416516501,0.03228768013534,0.0342639856165657,0.0363901772403511,0.038388532190978,0.0402635736260081,0.0422535211267605,0.0566638480891088,0.0705296523731313,0.0843834524982701,0.0971197308945653,0.109364953886693,0.1245823994587051,0.1370365657079833,0.148647353796033,0.1597652742742314,0.1694305801534911,0.1822620805622325,0.1950157585209734,0.2059655690251811,0.2165326330762076,0.2256349284982991,0.2353038986376384,0.2442773675332074,0.2530552020093937,0.2612894064186311,0.2684998395305121,0.2753045814610645,0.2822369037578484,0.2887964247187548,0.2949656695635473,0.3009804398598676,0.3056360787990181,0.3101538615747005,0.3148369842078451,0.3189534522081692,0.322697281604645,0.3218641466763589,0.3203918223591888,0.3183987834584137,0.3160609782530164,0.3146863534409768,0.3126800269657412,0.3106477963525836,0.3110677318285461,0.3114211074495877,0.3118141655978338,0.3129849490511358,0.3139216034404529,0.3146288804577944,0.3153239675697407,0.3165165165165165,0.3169384671494816,0.3170197639698563,0.3199171816670326,0.3249098736481047,0.3290513833992095,0.3312505659693924,0.3341611624834874,0.3388176415389428,0.3395513933992901,0.3411336938280813,0.3425654265931229,0.3420532319391635,0.3462235649546827,0.3468992248062015,0.351981351981352,0.0,2.078822138552665,55.07779234676256,179.68803353064504,250.36402490165307,fqhc2_80Compliance_implementation,4 -100000,95759,45240,429.0458338119655,5949,60.97599181278,4717,48.674276047160056,1873,19.141803903549537,77.39144353273707,79.72988893736066,63.36142006586866,65.08705226777096,77.15636435620222,79.49771511218661,63.27383134514226,65.00331034951815,0.2350791765348532,232.17382517404417,0.0875887207263943,83.7419182528123,179.00938,125.40634386829706,186936.47594481983,130959.57157081012,381.06687,248.4151929592407,397341.9417496006,258817.11588832637,388.61185,188.69832320731763,402298.3740431709,194281.4851877829,3305.81058,1529.515381043372,3410109.9635543395,1555358.928249254,1083.19805,484.7479072823945,1115512.192065498,490643.7125777365,1825.95098,769.251060680713,1867455.2365835067,770128.1541693113,0.38114,100000,0,813679,8497.112542946355,0,0.0,0,0.0,32584,339.6338725341743,0,0.0,35480,366.9837822032394,1497805,0,53743,0,0,6918,0,0,73,0.7623304336929166,0,0.0,1,0.0104428826533276,0,0.0,0.05949,0.1560843784436165,0.3148428307278534,0.01873,0.3302429667519181,0.6697570332480819,23.999217295219328,4.233620689296807,0.323934704261183,0.2490990036039856,0.2177231291074835,0.2092431630273478,11.311382875982666,6.049997496147162,19.916978491957146,12182.977748382458,53.91463222619785,14.242069499654548,17.19087778766374,11.624417437836662,10.857267501042909,0.5709137163451347,0.7846808510638298,0.7041884816753927,0.5647517039922103,0.116514690982776,0.7397157816005984,0.9320594479830148,0.8589743589743589,0.7034220532319392,0.1408450704225352,0.5041420118343195,0.6860795454545454,0.6511423550087874,0.5170157068062827,0.1098191214470284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024805605054268,0.0048947576436251,0.0072441711815912,0.0094961456820466,0.011713149840876,0.0136796677794967,0.0159160383126146,0.0181606709245618,0.0200839726629141,0.0221312733411776,0.024149837600795,0.0263462978732135,0.0282470201397451,0.0303616640250303,0.0324928354947116,0.034419354172262,0.0365655499322093,0.0384890631320202,0.0407688069770584,0.042502656416026,0.0578380409594789,0.0724390499110599,0.0858371800251783,0.098785297365515,0.1108498523829607,0.1266430497541373,0.1380136804708627,0.1492191157070513,0.1604993645809972,0.1704953530502642,0.183343919217147,0.1951092893219844,0.2067713711211347,0.2168920838158498,0.2257656706901479,0.2365380784808445,0.2459392871874338,0.2545581181122707,0.2633022739123535,0.2710278235401794,0.2775068189172946,0.2847292828010144,0.2915267464409024,0.2968738771110312,0.302703096185577,0.3073865314561386,0.3122179863758515,0.3162594283824521,0.3206511892745295,0.3245031366967157,0.3230320464566082,0.3210371631829044,0.3194629929008223,0.3189397979332113,0.317904344218574,0.31495270064083,0.3127584356554401,0.313863718145834,0.3153987604712933,0.3163096319247823,0.3170845808383233,0.3180013824429742,0.3193647068683736,0.3215172876804297,0.3223054866147803,0.322907419978069,0.3229139977794859,0.3271457337024918,0.3306590661177381,0.3335321721148492,0.3384039102827646,0.3402551646826456,0.3446792357332658,0.3470790378006873,0.3495728902656528,0.3581263975520772,0.3610440555220278,0.3598,0.3596419853539463,0.3606370875995449,0.0,2.1734652979683906,58.59958017475668,176.3998729245245,250.35636795870568,fqhc2_80Compliance_implementation,5 -100000,95719,44798,424.2731328158464,5922,60.55224145676407,4704,48.46477710799319,1835,18.742360450903167,77.37264048070351,79.73167158975366,63.34029949113111,65.08188635595191,77.1425426260864,79.50576702058498,63.2544860576536,65.00050226792143,0.2300978546171137,225.9045691686765,0.0858134334775115,81.38408803047525,178.409,124.87779542326344,186388.28236818188,130462.91271666382,376.28312,245.2267457775328,392436.182993972,255525.85327363576,384.17032,186.1203341194865,397229.5364556671,191216.03305568133,3341.62087,1543.9957457402495,3445305.038707049,1567887.688535012,1134.02339,510.9920449783826,1165787.8686572153,514990.9695192194,1789.09406,753.8700340795116,1829461.1937024,753428.5001809655,0.37897,100000,0,810950,8472.194653099175,0,0.0,0,0.0,32125,334.9178324052696,0,0.0,35209,363.6686551259416,1502460,0,53985,0,0,7001,0,0,58,0.6059403044327668,0,0.0,0,0.0,0,0.0,0.05922,0.1562656674670818,0.3098615332657886,0.01835,0.3403570854109699,0.6596429145890301,24.110122253756757,4.308186475486592,0.3150510204081632,0.2485119047619047,0.2257653061224489,0.210671768707483,11.24394496061883,5.953688541389277,19.43418034724884,12102.901666614787,53.87155085182916,14.336655945888465,16.99446776376368,11.708064658297609,10.8323624838794,0.5801445578231292,0.7869974337040205,0.717948717948718,0.5875706214689266,0.1220988900100908,0.7416413373860182,0.9066390041493776,0.8438287153652393,0.76,0.1556603773584905,0.5174144037780402,0.7030567685589519,0.6718894009216589,0.5412186379928315,0.1129653401797175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024,0.0046821318901827,0.0069488825993893,0.0093536724081897,0.0114896948621745,0.0135187409654498,0.0156874337437821,0.0176989343894173,0.0199127030369938,0.0219167144378019,0.0239303620313124,0.0264373716632443,0.0284418669216768,0.0304740522559449,0.0325186476699439,0.0346128405473562,0.0367651626529724,0.0385852090032154,0.0406701797054452,0.0428913654827622,0.057564398408704,0.0719666848030804,0.0853167529934783,0.0982331486950946,0.1103766722540244,0.1256924768469573,0.1385100019091661,0.1490629689146189,0.159623661081387,0.1702166452166452,0.1828903153541271,0.1949079183708801,0.206449858603437,0.2162717945352322,0.2258387526271195,0.2356160740995158,0.2452893373816753,0.2537607530513894,0.2623394031647942,0.2703170689754028,0.2779019019946054,0.2840472846441947,0.2893657866047305,0.2950205825522364,0.2995950924721246,0.3045660861413982,0.3095250018779578,0.3137918314911154,0.3175400225187332,0.3210570038371771,0.3194877865059722,0.3180287304969413,0.3164271943033254,0.3155865534569398,0.3149875252465249,0.3138008080313418,0.3120494498545592,0.3118020366999557,0.3113617391008058,0.3127222301237377,0.3140167753960857,0.3153404623368454,0.3157235330966799,0.3146400106861391,0.3162282593071726,0.3177288768943325,0.3182565323357705,0.3212936659070334,0.3245531514581373,0.3278984795505441,0.332204767063922,0.3338083927157561,0.3386904388222738,0.3392884178652536,0.3429290106204583,0.346262341325811,0.3524590163934426,0.3500904886386487,0.3555555555555555,0.3487394957983193,0.0,2.5723095930973336,57.37759168583781,182.9038714686324,244.1164193191259,fqhc2_80Compliance_implementation,6 -100000,95753,44820,424.7282069491295,5753,58.95376646162522,4548,47.01680365106054,1787,18.34929453907449,77.33281654085012,79.69872425513513,63.319784280511655,65.07089438494621,77.11677195430791,79.4820349712968,63.24006124758955,64.99310507232043,0.2160445865422104,216.68928383833477,0.0797230329221037,77.78931262578226,180.5947,126.54778650154958,188604.7434545132,132160.64927631468,377.36301,245.5563630131637,393622.5183545163,255969.758663607,379.78493,184.01087267136768,393439.8295614759,189748.1124103423,3291.24112,1501.2628807534952,3405898.530594341,1536528.1304538727,1094.90509,484.4866306653715,1134618.675132894,497125.8975336236,1759.8809,729.4104443624589,1809192.6728144288,738031.2044273284,0.37717,100000,0,820885,8572.942884296053,0,0.0,0,0.0,32283,336.6474157467651,0,0.0,34691,359.1845686297035,1491873,0,53485,0,0,6951,0,0,54,0.5535074619071987,0,0.0,0,0.0,0,0.0,0.05753,0.152530689079195,0.3106205458021902,0.01787,0.3358147229114971,0.664185277088503,24.677927242763847,4.30796712604023,0.3128847845206684,0.2350483729111697,0.2260334212840809,0.2260334212840809,11.422307164117637,6.043296344801606,18.811875545660413,12084.863394439177,51.49497509272324,12.87349904161782,16.12057432524159,11.37133685945345,11.12956486641038,0.5736587510993844,0.8016838166510758,0.7203092059030218,0.5924124513618677,0.1147859922178988,0.751628664495114,0.929440389294404,0.8506666666666667,0.7755102040816326,0.1624365482233502,0.5078313253012048,0.7218844984802432,0.6736641221374046,0.5351213282247765,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023508192402395,0.0044932195997687,0.00701594070464,0.0093005763307955,0.0117303544540756,0.0137915580182529,0.0159393834324233,0.0180908626850433,0.0203165579436003,0.0223837804628302,0.0245855418969211,0.0266151887296176,0.0285329439828905,0.0305870236869207,0.0327686180640102,0.0346474272838153,0.0365575807787903,0.0385633191851475,0.0405735616765969,0.0425356808000833,0.0575228629891009,0.0721160888033311,0.0850548436484134,0.0978743087824057,0.1100301452452726,0.1257547080033413,0.1385772159416293,0.1501931693611043,0.1604379172229639,0.1704915923129718,0.1829918275494492,0.1947437894919068,0.2052135330005546,0.2153392007871863,0.2248949602938912,0.2347919480922116,0.2445180944729001,0.2538292724101063,0.2618628775067812,0.2692840540880935,0.2756709215261946,0.2828885767790262,0.2887391494854517,0.2950638889554815,0.3002454256068816,0.3044904199442704,0.3089978347121919,0.3143115135636978,0.3181164955527648,0.3213819131949484,0.320287475438077,0.3190459159811824,0.3175781305015281,0.3164750736525908,0.3153819862392819,0.3130232486952263,0.3101342908210879,0.3104545156424214,0.3103542373748572,0.3100498930862437,0.3106073359145577,0.3121309662513082,0.3130489335006273,0.3130675353071105,0.3132622683184481,0.3130971285762632,0.3142800182273866,0.3170862009364885,0.3207845063504315,0.325809266899397,0.3292743877504657,0.335541306766997,0.3380396586345381,0.3389663534404365,0.3414474911397127,0.3438456107319369,0.343190779496512,0.3490981963927855,0.3520742358078602,0.3468383188186293,0.0,1.856676269469354,54.03049972227898,167.08906336294586,250.79044956894123,fqhc2_80Compliance_implementation,7 -100000,95780,45145,428.75339319273337,6010,61.52641470035498,4736,48.86197536020046,1848,18.8870327834621,77.34910350822409,79.6774420644212,63.34642956891118,65.0665871970451,77.116573667428,79.44728112395403,63.258940556780985,64.98253903843165,0.23252984079609,230.16094046717228,0.0874890121301916,84.04815861344161,179.23334,125.48304302474492,187130.2359574024,131011.73838457392,381.50114,248.0204032575076,397726.41470035503,258364.609790674,380.17917,183.54735687313917,392969.7640425976,188571.39493496792,3355.56139,1530.9149811275654,3461962.246815619,1557036.2246373051,1101.83205,489.3871590815856,1134179.703487158,494776.7722129882,1806.10282,764.2871832725666,1848059.4278555023,765556.3238457621,0.38046,100000,0,814697,8505.919816245563,0,0.0,0,0.0,32584,339.5907287533932,0,0.0,34742,358.82230110670287,1499345,0,53819,0,0,7163,0,0,73,0.7621632908749217,0,0.0,0,0.0,0,0.0,0.0601,0.157966671923461,0.3074875207986688,0.01848,0.3419426398352083,0.6580573601647917,24.25727640032802,4.235493658791797,0.3236908783783784,0.2430320945945946,0.2176942567567567,0.2155827702702702,11.038005441091334,5.780091451879073,19.718557527188477,12088.912576266574,53.7158650647621,13.914876457938526,17.241331738069945,11.46398561125006,11.095671257503568,0.5644003378378378,0.8053866203301477,0.6771037181996086,0.5586808923375364,0.1292850146914789,0.734789391575663,0.920704845814978,0.8397932816537468,0.6722689075630253,0.1921182266009852,0.5011580775911986,0.7302725968436155,0.6221640488656196,0.5245901639344263,0.1136919315403423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050226830848,0.0041253205485561,0.0064420569944507,0.0086438939167707,0.0105543579940619,0.0124496111405187,0.014401027334434,0.016890340358218,0.0192400044958056,0.0213930551861021,0.0236343892144408,0.0257462724856594,0.0276653032700963,0.0298277033285987,0.031745213473415,0.0338676692350596,0.0359888660092507,0.0378158666956999,0.0397963424771404,0.0416948693651008,0.0562060401143739,0.0705858974627146,0.0833001321059363,0.0961914370389053,0.1084871859720114,0.1242180235015639,0.1372698654965181,0.1490646900556187,0.1596943566976863,0.1700559281719416,0.1829287982347559,0.1948734587929915,0.2063854543872813,0.2166504434941432,0.2253669916587803,0.2356772564136647,0.2451532975434445,0.2533873053353573,0.2619217808638823,0.2696010531738309,0.2768647135702802,0.2837173938472336,0.2891560562313627,0.2941148279497747,0.299644205899139,0.3047117707973766,0.3095774506858916,0.3152407744497766,0.3198724760892667,0.3234093700881005,0.3222885478285475,0.3202771006349075,0.3186525212392747,0.3173092201245143,0.3163559171070601,0.3143915052480186,0.3122944078947368,0.3128997343304142,0.3141502353824111,0.3138798165301351,0.3152603298822384,0.3157603322127744,0.3165060745705907,0.3182774519897936,0.3186693985777992,0.3197542162374167,0.3205491205491205,0.3251010611419909,0.3283571579466234,0.3305023923444976,0.3317498743890741,0.3334042440036164,0.3372063492063492,0.341541755888651,0.3433090254758973,0.3461446360153257,0.3493584788993662,0.3495719527109661,0.3490174370329366,0.3613081166272656,0.0,2.2719906419199294,56.00007468875205,175.18628454739465,260.3555486204934,fqhc2_80Compliance_implementation,8 -100000,95665,44916,426.6346103590655,5791,59.40521611874771,4558,47.0496001672503,1797,18.35572048293524,77.31532774038504,79.7060778037277,63.31028192710126,65.07582211436625,77.0867620268415,79.48110559825962,63.22526706646313,64.99488595159757,0.2285657135435457,224.9722054680774,0.0850148606381253,80.93616276867976,180.26998,126.2723860618357,188438.57210055925,131994.11076343042,381.28124,248.36325579034784,397970.3235248001,259029.2434958949,383.09877,185.28082758535024,397242.1679820206,191173.76684346577,3241.40851,1490.5291099070755,3349097.2978623323,1518877.8862771906,1097.34921,488.41973899284767,1132081.064130037,495571.8813432138,1755.44132,741.8003062666367,1795920.5352009616,742367.9254288091,0.37821,100000,0,819409,8565.38964093451,0,0.0,0,0.0,32583,339.9780483980557,0,0.0,34974,362.2850572309622,1489827,0,53460,0,0,7119,0,0,68,0.7108137772435059,0,0.0,0,0.0,0,0.0,0.05791,0.1531159937600803,0.3103091003280953,0.01797,0.3377265238879736,0.6622734761120264,24.32779779570456,4.271764551251771,0.3187801667397981,0.2439666520403685,0.2204914436156209,0.2167617376042123,11.354082685520602,6.016455056111239,19.09659515682561,12023.668545667711,51.90686481632206,13.218356284371271,16.587787403303988,11.23514288086724,10.865578247779553,0.5719613865730584,0.7787769784172662,0.7102546455609084,0.5930348258706468,0.1143724696356275,0.7570621468926554,0.9365853658536586,0.8676470588235294,0.75,0.1502590673575129,0.5028623079240735,0.6866096866096866,0.6488038277511962,0.546975546975547,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0044303412477949,0.0065862915829426,0.0086460894479101,0.0105183919270833,0.0128749681690858,0.0152176573783199,0.0175169807466421,0.0199314823336912,0.0222213119790279,0.0242651734252251,0.0263068689587164,0.0282695690639563,0.0304997424008243,0.0325344233190892,0.0345637132721763,0.036575004662536,0.0385361854054446,0.0401293959787391,0.0421990620114643,0.0568783759781847,0.0711159508303143,0.0838939910784571,0.0966367099530654,0.1084820533386805,0.1237217082001228,0.1367545871559633,0.1484826858962751,0.1593894631080517,0.169133510073093,0.1822738149130181,0.1941027418027461,0.2049311489685952,0.2148313524635016,0.2245376744390964,0.234750585129394,0.2440155043955184,0.2527518289251547,0.2605792921780795,0.2685580009170105,0.2748129618048317,0.2819621475473156,0.2889209859588473,0.294023799241879,0.2994011976047904,0.3034585576816451,0.3078212989613315,0.3121216745510962,0.315711845986648,0.3189734793508378,0.3180686238877895,0.3165650756085144,0.3147634664377102,0.3132615451326154,0.3130375365784822,0.3109549830861306,0.3084527537882383,0.3084153470777998,0.3101396395628378,0.3110010334628131,0.3114025255921692,0.3125788892395077,0.3142031897526058,0.3138503474316866,0.315107671601615,0.3165681243976767,0.315479761190619,0.3189532568502892,0.3210652726758971,0.3252535739956873,0.3292772186642269,0.331503490912967,0.3353179630098809,0.3403306420607458,0.3412412222433099,0.3409742120343839,0.3439926907263591,0.3446282639027307,0.343492586490939,0.3429220287660863,0.0,2.2585537968365528,54.09935248767235,174.35622896569302,244.2048021144683,fqhc2_80Compliance_implementation,9 -100000,95626,45032,427.2059900027189,5847,59.941856817183606,4584,47.35113881162027,1787,18.31091962436994,77.3146043072854,79.73418870826262,63.296484254502126,65.08320293322376,77.09003185820063,79.51007151606892,63.212796833100256,65.00213672002339,0.2245724490847749,224.1171921937024,0.0836874214018692,81.06621320037277,178.80698,125.18155850658742,186985.73609687743,130907.45038649262,379.37276,247.37221814962396,396165.6453265848,258127.30653757768,381.44724,185.2508619417709,394850.62639867817,190715.04721943784,3260.92053,1495.560331286645,3371745.268023341,1525960.1846410926,1064.38019,473.93186344460855,1098967.8643883462,481542.45931653655,1751.62166,740.6986692513318,1797005.3541923745,746041.2181166377,0.38022,100000,0,812759,8499.351640767154,0,0.0,0,0.0,32407,338.29711584715454,0,0.0,34752,359.37924832158615,1496618,0,53677,0,0,7156,0,0,66,0.6901888607700835,0,0.0,1,0.0104574069813649,0,0.0,0.05847,0.1537793908789648,0.3056268171711989,0.01787,0.3416516171400426,0.6583483828599573,24.33337574726582,4.298404530615695,0.3200261780104712,0.2449825479930192,0.2166230366492146,0.2183682373472949,11.210484536026996,5.792781114508779,19.15349373457916,12111.47994343686,52.204770464106325,13.544131515264588,16.69329254241139,10.94807475517926,11.01927165125109,0.5650087260034904,0.7916295636687445,0.6993865030674846,0.5790533736153072,0.0999000999000999,0.7287066246056783,0.9132530120481928,0.84,0.7330677290836654,0.1237623762376237,0.5024125452352232,0.7203389830508474,0.6466729147141518,0.5269541778975741,0.0938673341677096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0043707091500948,0.0063142079831079,0.008565767413504,0.0109965006510416,0.012955795477694,0.0150141267428932,0.0171621207477781,0.0191672377289789,0.0212901045560209,0.0234564102564102,0.0254853620955315,0.0276940486600483,0.0299211787131008,0.0320402981068973,0.0343387135131781,0.0366072261193024,0.0388820249800139,0.040943095859909,0.0428556528994576,0.0570705856529146,0.0708045254556882,0.084448178095138,0.0968967767742478,0.1093576819549269,0.1245539543206869,0.1367846369545821,0.1480025148386134,0.1592661924372894,0.1688313083459559,0.1817093168774004,0.1937354359724706,0.2051472030334067,0.2157208588957055,0.2251870956364558,0.2350467186008833,0.2448313627321696,0.2542076921343758,0.2626664243195347,0.2704317412992374,0.2773102434394064,0.2836002480025268,0.2898041304219184,0.2947064323559732,0.3002452170535107,0.3063431457075994,0.311196988456584,0.3162477912106072,0.3204864480238049,0.3233179893691388,0.3224547473252136,0.3203233478601575,0.3186070100304294,0.3171782600523401,0.3167749899608846,0.3147552040221956,0.313256639411802,0.3134777673592261,0.314921102677883,0.3150310203643775,0.3157973508942602,0.3161365246830958,0.3175149014213663,0.3195118692379637,0.3206203551031137,0.321903284199638,0.3237666638362911,0.3269746275169877,0.3296186662023332,0.3319798155010644,0.335078297757119,0.3378848587094053,0.3422412706416236,0.341943325989516,0.3426645445183035,0.3464323875103882,0.3502781211372064,0.3557046979865771,0.354679802955665,0.3542635658914728,0.0,2.32046040845684,55.41228529841634,171.90124609779332,245.76923502795728,fqhc2_80Compliance_implementation,10 -100000,95656,45281,428.08605837584673,5902,60.65484653341139,4698,48.64305427782888,1758,18.04382370159739,77.29129418892526,79.6909601488803,63.29829466637945,65.07001589873683,77.06293443017836,79.46359847945445,63.21323713944742,64.98778059718772,0.2283597587469046,227.3616694258465,0.0850575269320259,82.23530154910463,178.7533,125.22886379015628,186870.9751609936,130915.84823759751,379.99856,247.71891016771303,396796.83449025673,258510.00477514535,387.35255,187.7694889451382,402311.5957179895,194261.188435568,3317.6832,1522.942711129365,3433973.2897047754,1557728.737485745,1115.36757,498.4531058514696,1149538.8475370076,504608.614045611,1721.654,735.633758653077,1767518.1274567198,740480.0992091155,0.38055,100000,0,812515,8494.135234590616,0,0.0,0,0.0,32489,339.15279752446264,0,0.0,35403,367.4207577151459,1494591,0,53675,0,0,7020,0,0,52,0.5436146190516016,0,0.0,0,0.0,0,0.0,0.05902,0.1550913152016818,0.2978651304642494,0.01758,0.3396440129449838,0.6603559870550162,24.288929415747653,4.221451378513869,0.323541932737335,0.2526607066836951,0.2100893997445721,0.2137079608343976,11.21616239858907,5.853633977744966,18.99541766160333,12209.521979175595,53.62839275045451,14.3978499895034,17.127592472554998,11.005426736210016,11.0975235521861,0.5727969348659003,0.7893850042123,0.7032894736842106,0.574468085106383,0.1175298804780876,0.7297501892505678,0.8930131004366813,0.8938271604938272,0.676595744680851,0.1524663677130044,0.511400651465798,0.7242798353909465,0.6340807174887892,0.5425531914893617,0.1075544174135723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023196215674159,0.0045219507249315,0.0070237406493915,0.0093689665684381,0.0117815828831303,0.0143810154300555,0.0165589248934478,0.0188902730410276,0.0210821200719777,0.0231093727602236,0.0252379194355566,0.0273195982170367,0.0296175133222229,0.031809657275931,0.033995065398949,0.0358587164503283,0.0379828170502948,0.0400166130204547,0.0422025221625671,0.0444025104776997,0.0587946367921077,0.0730716051451795,0.0858699875048563,0.0981622213333894,0.1100897097625329,0.126059759311593,0.1387579617834395,0.1495691445735649,0.1599918747861785,0.1704973644942083,0.1827953511438859,0.1956168655391212,0.2065261164382816,0.2169686353932891,0.2268324131318808,0.237407678488256,0.2472237738800134,0.2566671544843579,0.2644043550822538,0.2718376513996952,0.2780793851069001,0.2854987014810135,0.2914100985221675,0.2969248482813212,0.3019313095933061,0.3074141718291088,0.3112884834663626,0.3159644809091256,0.3198667167991287,0.3245205316719684,0.3229304167452385,0.3218181818181818,0.3208768885691311,0.3199235934244038,0.3175770203899389,0.3151309527464767,0.3130757400390037,0.313701290152712,0.3149321731981365,0.3152055260285249,0.3154218767601667,0.3168073554472318,0.3174649839356586,0.3175079500156761,0.3187190698121366,0.3209069846145836,0.3224132062627637,0.3261517232728071,0.3288517569417629,0.3318228794021782,0.336565601383957,0.340197998835301,0.3430767292427869,0.3461833231146536,0.3500994600738846,0.3565092304003836,0.3588153202046829,0.3563028677532494,0.3573014991671294,0.3597259231062047,0.0,1.868004893905155,58.41133078951847,173.79767772863548,252.2339641871655,fqhc2_80Compliance_implementation,11 -100000,95643,45210,430.0994322637308,5855,60.08803571615277,4609,47.72957770040672,1856,19.123197724872703,77.27514686010801,79.68680338989171,63.27600815666828,65.05657604799279,77.04315991374538,79.4532355676445,63.19004084480575,64.97182420654829,0.2319869463626247,233.56782224720973,0.0859673118625323,84.75184144450054,180.93262,126.77647303815236,189174.97359974068,132551.75291255227,386.04997,251.37564791270145,403202.1162029631,262392.7291204808,384.97136,186.3149231827177,399449.5153853392,192479.7453648219,3284.94817,1496.0298301692444,3404641.6569952844,1534229.4576385582,1117.59908,494.7686971912656,1158046.7153895216,506843.4043173736,1814.27464,760.3864645000914,1870774.7770354336,772440.3328808738,0.38139,100000,0,822421,8598.86243635185,0,0.0,0,0.0,32912,343.64250389469174,0,0.0,35203,365.0031889422122,1479446,0,53043,0,0,7064,0,0,69,0.7214328283303535,0,0.0,0,0.0,0,0.0,0.05855,0.1535173968903222,0.3169940222032451,0.01856,0.3394465367610938,0.6605534632389062,24.431890475999356,4.300888461067251,0.3226296376654372,0.2382295508787155,0.2145801692341072,0.22456064222174,11.26916149158768,5.874522943395851,19.783351112660277,12086.392161753423,52.424537143198606,13.394862630384598,16.768283296949225,10.933396816196597,11.3279943996682,0.5636797569971794,0.8014571948998178,0.6845998655010087,0.5915065722952477,0.1111111111111111,0.7274900398406374,0.92512077294686,0.8426395939086294,0.7229437229437229,0.1435185185185185,0.5023852116875372,0.7266081871345029,0.6276303751143641,0.5514511873350924,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556545690213,0.0043075925118838,0.0063923697427832,0.0085322498730319,0.0106693518038222,0.0126792406713377,0.0147958559366969,0.0169064123898684,0.0193737028820299,0.0215330111402359,0.0237965802673012,0.0258059213905611,0.0277274784970574,0.0298092086953832,0.0319179694760537,0.0339209235925765,0.0358527332656149,0.0379582511164191,0.0396778322355071,0.0417444443285745,0.0567615305023985,0.071283373150593,0.0847610744036051,0.0974358434115713,0.109558365286096,0.1247934759584833,0.1376558232462246,0.1487996247494776,0.160095464372097,0.1699054170249355,0.1826474652387943,0.1952110873737976,0.2068630977686211,0.2175810678919606,0.2271001633337747,0.2373092217803745,0.246679125773565,0.2555649574096011,0.2632213863820005,0.2708220892711551,0.2773144335278219,0.2837376733932906,0.2888917886545351,0.2944807378230377,0.2993832792030069,0.3038499506416584,0.3092757656675066,0.3134617344339142,0.3182720888877351,0.3217417759024351,0.3200394093988717,0.318414956982131,0.3175957794955707,0.3162942069863311,0.3148723590894899,0.3128016547920018,0.309943649487147,0.3110782865583456,0.3115935854394246,0.3119020896798674,0.312929500983054,0.3142642820482451,0.314796986186689,0.3161715434442707,0.3178391356542617,0.3185626561199001,0.3196418419556566,0.3218166970287078,0.3246953895853084,0.3284228081321474,0.3285129604365621,0.3305345945371453,0.3364098700320211,0.3413395969086225,0.3463639788997739,0.3471576689309975,0.3457340507302075,0.3478526358640342,0.3518980326960377,0.3604651162790697,0.0,1.7685247137605538,55.50114150072351,171.3950399286037,251.87113975983715,fqhc2_80Compliance_implementation,12 -100000,95689,44956,427.447250990187,5875,60.27861091661529,4631,47.863390776369286,1774,18.204809330226045,77.28391542799022,79.68258213846934,63.28504443165552,65.06000417595247,77.07228972416422,79.47014819786749,63.20638291989957,64.9828678174043,0.2116257038260016,212.4339406018549,0.0786615117559534,77.13635854817369,178.07394,124.7641162632432,186096.56282331303,130385.01422654976,379.76608,247.57468238070672,396344.2715463638,258197.3605960003,384.05022,186.26122951099325,397288.19404529256,191533.2395601336,3273.57825,1495.5578505822125,3389028.958396472,1530904.827704555,1066.69249,474.2296966804556,1103449.0902820595,484296.5334875129,1734.38514,725.813670329961,1782865.721242776,735257.7941956208,0.37936,100000,0,809427,8458.934673786956,0,0.0,0,0.0,32458,338.64916552581803,0,0.0,35091,362.8212229200849,1499457,0,53800,0,0,7078,0,0,68,0.7001849742394634,0,0.0,1,0.010450522003574,0,0.0,0.05875,0.1548660902572754,0.3019574468085106,0.01774,0.3373944119558155,0.6626055880441846,24.10595868728913,4.341429654718998,0.320233210969553,0.2526452170157633,0.2105376808464694,0.2165838911682142,11.595658460215509,6.212158149003724,18.904448614098293,12099.27755112596,52.63194965481686,14.172553920038691,16.61583857653847,10.926922063373375,10.916635094866326,0.5720146836536385,0.805982905982906,0.7046527309507754,0.5764102564102564,0.098703888334995,0.7569875776397516,0.9188034188034188,0.8857142857142857,0.7113821138211383,0.1534391534391534,0.5007478312892611,0.7307692307692307,0.6411657559198543,0.5308641975308642,0.085995085995086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025637907622464,0.0047164070107108,0.0071981887773231,0.0092377109988719,0.0113244406458899,0.0134768967484312,0.0155846805038502,0.0176900763982514,0.0199232932753771,0.022065602655248,0.0240884748753513,0.026057293165098,0.0281845216657577,0.0300416357490312,0.0317416078285643,0.0336522053880759,0.0358112448966903,0.0375560538116591,0.0395485515160971,0.0414803697797788,0.0559269627710692,0.0702051926298157,0.0836481551441883,0.0966309631531323,0.108804626571124,0.1243120237087214,0.1371372753044604,0.14913850020233,0.1602894337444689,0.1709416385842151,0.1831889118813588,0.1958490402530439,0.2067137039698612,0.2166995181778361,0.2260524575710822,0.2367363700941218,0.2460088543064126,0.2537582546372467,0.2618176446525158,0.2696524830829223,0.2765483904621698,0.2834316127595221,0.2898607453799255,0.2953104739951016,0.3017609618965328,0.3063674385895648,0.3108925775133103,0.3151209703078665,0.3189777996528767,0.3231457176399203,0.3213424735020403,0.3200352170802839,0.3189360354654845,0.3169704053215589,0.3158809633470515,0.3126273068381959,0.3099425387428173,0.3095616550594018,0.3105455414447631,0.3113712613320009,0.3122620811221333,0.3130953088179964,0.3144827296234784,0.3168352358099168,0.3170443016570848,0.3186506175095955,0.320104616784171,0.3243285691848594,0.3273083243016467,0.3297536323436513,0.3329554215228334,0.3351105949427229,0.3382316313823163,0.3387446697089848,0.3404314415331914,0.3438012655261308,0.3482345809971208,0.35284618490109,0.3527292878913826,0.3510516252390057,0.0,2.081440676491952,56.58676945243014,168.6976112908265,252.29619272137109,fqhc2_80Compliance_implementation,13 -100000,95660,45352,430.0334518084884,5874,60.2028015889609,4629,47.846539828559486,1782,18.23123562617604,77.35161970545354,79.75709568834777,63.31721993396855,65.09394834171455,77.1269404598947,79.53407862401194,63.23322881023244,65.01301491122693,0.2246792455588462,223.0170643358349,0.0839911237361121,80.9334304876188,179.51494,125.68425317851502,187659.3560526866,131386.42397921285,382.42905,249.998178025734,399218.07443027385,260778.9442041962,391.61501,190.0579112259516,405713.2030106628,195875.6405875052,3293.48159,1523.9452483633308,3403776.332845494,1553957.8699177606,1101.69917,492.89753194104657,1136605.1223081746,500182.7534403575,1745.34058,738.57165723441,1787183.4622621783,741019.7946695723,0.38134,100000,0,815977,8529.970729667573,0,0.0,0,0.0,32709,341.35479824378007,0,0.0,35765,370.3010662763956,1490873,0,53471,0,0,7164,0,0,65,0.679489859920552,0,0.0,0,0.0,0,0.0,0.05874,0.1540357686054439,0.3033707865168539,0.01782,0.335180055401662,0.6648199445983379,24.112085241431373,4.246147971981602,0.3197234823936055,0.2480017282350399,0.2147332037157053,0.2175415856556491,11.433206034729569,6.017188590440426,18.96036726615951,12194.85272892178,52.82949628301749,13.91184332584162,16.820292258531133,11.093038709621055,11.004321989023698,0.5713977100885721,0.7874564459930313,0.6932432432432433,0.5845070422535211,0.1330685203574975,0.750386398763524,0.9356223175965666,0.8523316062176166,0.7229437229437229,0.1848341232227488,0.5019490254872564,0.6862170087976539,0.6371115173674589,0.5425950196592398,0.1193467336683417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694805523753,0.0045327789889976,0.0067286418901089,0.0088799479801674,0.0110366294032082,0.0133326543084131,0.0158976189262224,0.0179820485852283,0.0201329243353783,0.0222370173102529,0.024457804132384,0.02681011981832,0.0290303990779426,0.0311243530794449,0.0331460325985911,0.0351142195000827,0.0371568048257205,0.0393970537855429,0.041366681926006,0.0432828661995328,0.0585254226661929,0.0724973038625441,0.0854159013382314,0.0975525064186203,0.1097333178551452,0.1251190753402908,0.1371555980251632,0.148797151962822,0.1599619112832473,0.1698115233850614,0.1827103509263852,0.1945157690599235,0.2065924974418149,0.21693776133453,0.2270259555770903,0.2375008314302818,0.2465727405785281,0.2554746169175514,0.2643208320559548,0.2723545109897032,0.2794566827101074,0.2858161499976621,0.2922052579916506,0.2980792259424247,0.3026710192590076,0.3073306419850334,0.3120464622494223,0.3163615124812717,0.3202268235658834,0.3250029610328082,0.3244325588270866,0.323403028514161,0.3218137082601054,0.3201026543058579,0.3189684575801165,0.3168581555949398,0.3142550471169479,0.3146525605541999,0.3142062991320362,0.3147893976934457,0.3158475876782572,0.3159533994362199,0.3175001568676664,0.3193565635861331,0.3203790561883794,0.3214313476537196,0.3227799665542359,0.3249796633502284,0.3292946927374302,0.3327280622113449,0.3358546969834224,0.3403674540682415,0.3428055088178475,0.3468247375972211,0.3498694516971279,0.3504222671583204,0.3492014742014742,0.3481242436466317,0.3554298032875236,0.3555140186915888,0.0,2.098596926377845,56.67453340138545,176.49438876425617,243.6561816152321,fqhc2_80Compliance_implementation,14 -100000,95798,45165,427.1279149877868,5674,58.2371239483079,4521,46.68155911396897,1787,18.26760475166496,77.3507064425629,79.6786189452326,63.34838135415546,65.06976301327936,77.12879838557258,79.45922627235629,63.26703718267155,64.99178122470522,0.2219080569903155,219.39267287631023,0.0813441714839058,77.98178857413518,178.34608,124.92175978526696,186168.89705421825,130401.21900798238,378.7721,247.1353049111892,394840.3411344705,257429.54436542423,377.74463,183.17923622155,391212.38439215854,188764.90272170524,3209.74725,1451.3896098131331,3314654.9823587127,1479170.2747584851,1072.61473,469.11432329323486,1104242.4267730017,474270.6040765304,1748.61688,726.6053536917442,1789673.8971586046,728835.5684345714,0.3806,100000,0,810664,8462.222593373557,0,0.0,0,0.0,32359,337.2199837157352,0,0.0,34491,356.99075137268,1503821,0,53943,0,0,7043,0,0,56,0.5845633520532788,0,0.0,0,0.0,0,0.0,0.05674,0.1490803993694167,0.3149453648219951,0.01787,0.3444500589523328,0.6555499410476672,24.650196345293903,4.2484601147184256,0.3165228931652289,0.2419818624198186,0.2231807122318071,0.2183145321831453,10.932448874521423,5.648582538712194,19.104106729105883,12105.965025237168,51.386403814128606,13.165473051153835,16.31221046198669,11.194234447570311,10.714485853417765,0.5655828356558283,0.793418647166362,0.6918238993710691,0.5728444003964321,0.1225937183383991,0.7247557003257329,0.90625,0.8402061855670103,0.6826086956521739,0.1546391752577319,0.5062253264500456,0.724188790560472,0.6366251198465963,0.540436456996149,0.1147540983606557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297273206109,0.004551905920519,0.0069307031162795,0.0091926702421582,0.0116520253782332,0.0139574658698728,0.015979780685663,0.0180424732883632,0.0201927302083652,0.0224314367580843,0.0244584708076316,0.0267807670996737,0.029062956035599,0.0311393395371819,0.0332855566669072,0.0352892561983471,0.0372190720582757,0.039445175870541,0.0413624798795368,0.0433696308480293,0.058087606168743,0.0724270971654416,0.0852437707684728,0.0979087852038671,0.1105923763555312,0.1258957826868195,0.1376688651835514,0.1489305097371501,0.159674630115929,0.1693727293187152,0.1824140343324544,0.1942229138299941,0.2047997740260304,0.2149629694361304,0.2239664061383548,0.2347859750027651,0.2441980948136594,0.2529791654967148,0.2612473800487169,0.2694133391286444,0.2759874839797249,0.2833446174678402,0.2891507872712658,0.2948025992987159,0.2999684626767909,0.3044436238306253,0.309434858121025,0.313452373387558,0.3173789837351034,0.3212403836020655,0.3205863778670572,0.319694429941469,0.3188354815106658,0.317154908418559,0.3157675917264317,0.3131181676210307,0.311784543770484,0.3121866215127652,0.3129746185947868,0.3136750303810136,0.3139567642694814,0.3138524281839599,0.3149789915966386,0.3162081984897519,0.316854582249205,0.3180712810187485,0.3188878400411911,0.3233529151664456,0.3270415889002359,0.3297087070402413,0.3317795448313682,0.3348680336206435,0.3384878636161987,0.3428593377890451,0.3478179082016553,0.3511359581301296,0.3530868017948321,0.3582089552238806,0.3602484472049689,0.3592954990215264,0.0,1.9285929437218643,54.1885997788063,167.43626702137306,247.69849547305665,fqhc2_80Compliance_implementation,15 -100000,95753,45115,425.91877016908086,5850,60.112999070525206,4573,47.34055329859117,1767,18.171754409783507,77.31652017658898,79.67725631118066,63.31665033110207,65.06231305902874,77.09956378103372,79.4592359599129,63.23634199372746,64.98369866517022,0.2169563955552576,218.02035126775365,0.0803083373746105,78.61439385851554,180.1261,126.16335404624864,188115.1295520767,131758.95612480928,380.78561,248.23788514019128,397254.9267385878,258829.0513742977,385.36447,186.90713430308645,399629.1813311333,193103.9402403224,3236.43889,1477.0051466062891,3351419.8928493103,1514052.6171016227,1086.17162,481.800594027423,1121185.4041126647,490259.6572287016,1722.39282,720.1508646657701,1772133.8443704117,728532.7198941074,0.38027,100000,0,818755,8550.687706912577,0,0.0,0,0.0,32554,339.5298319634894,0,0.0,35098,363.873716750389,1490332,0,53475,0,0,7141,0,0,72,0.7414911282153039,0,0.0,0,0.0,0,0.0,0.0585,0.1538380624293265,0.302051282051282,0.01767,0.3281402142161636,0.6718597857838364,24.28612588353314,4.309610471108482,0.3159851301115242,0.2466652088344631,0.2263284495954515,0.2110212114585611,11.55613110433996,6.175893552348329,18.81349936473349,12185.50209790335,51.8473715562376,13.517788404511874,16.36228046558137,11.450477719262889,10.51682496688147,0.5738027553028646,0.8031914893617021,0.6955017301038062,0.5855072463768116,0.110880829015544,0.7224919093851133,0.9373493975903614,0.8308080808080808,0.6550218340611353,0.1275510204081632,0.5187293976625712,0.7251051893408135,0.6444232602478551,0.56575682382134,0.106631989596879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023804459031006,0.0046937885868959,0.0068510530322253,0.0092463700376967,0.011566162109375,0.0139734789073798,0.0161749258054317,0.0185145471441847,0.0209098066481937,0.0232096237522395,0.0254798621934213,0.0276311736317897,0.0298415375281499,0.0320554405692337,0.0340907918759734,0.0363792284008017,0.0384547703582556,0.0403082763699731,0.0426381165220102,0.0444530102407567,0.0586429742229832,0.0726939779207869,0.0860336835923572,0.0981893125276019,0.1101433994095318,0.1253410893707033,0.1380532099970297,0.1494842617331786,0.1600482890505646,0.1705179368348781,0.182755277897458,0.1954338887686648,0.2066389770799808,0.216542405492271,0.225549758964538,0.2358579422682697,0.2448558062679335,0.2532544245547317,0.2619196241104969,0.2691532258064516,0.2757838713409695,0.282155638200828,0.2889485892823329,0.2948920863309353,0.3006779743390357,0.3064144148588483,0.3111300276654607,0.3154599025085591,0.3200522957037267,0.323896631823461,0.3234145684664063,0.3216145474583275,0.320758711207079,0.3192733589056958,0.3184313492122528,0.316203292155841,0.3150912631195681,0.314846472483398,0.3162964990931179,0.3174498085388111,0.3190091949709138,0.3195531830763147,0.3207590689872091,0.3226528237715922,0.3236171236171236,0.3242729568590695,0.3246623739244401,0.3274597102903367,0.3298564928246412,0.3322786061780643,0.3343765591690479,0.3383008061094611,0.3414542257942986,0.345095964938794,0.3430390412882689,0.3471958174904943,0.3497552019583843,0.3533440773569702,0.3558062740781508,0.3508435582822086,0.0,1.528010671173624,54.66776806013792,168.39486934152416,252.71799567040057,fqhc2_80Compliance_implementation,16 -100000,95680,45525,431.6680602006689,5891,60.44105351170568,4658,48.118729096989966,1856,19.06354515050167,77.40264542862671,79.78472079295351,63.35728834693722,65.11273104039853,77.17694079815553,79.558649124205,63.27436540854297,65.03194198624647,0.2257046304711849,226.07166874850293,0.0829229383942475,80.7890541520635,177.83502,124.53749890083382,185864.36036789295,130160.4294532126,382.12519,248.68375518298717,398833.30894648825,259366.9264036237,387.52528,187.4340377855659,401119.2516722408,192926.97984699372,3318.35123,1510.2251567811134,3430242.3181438125,1540478.445632433,1120.22726,499.6612586015267,1151569.8160535116,502990.29957375926,1808.74086,750.3909455531207,1859050.06270903,757899.6726701985,0.38295,100000,0,808341,8448.380016722407,0,0.0,0,0.0,32546,339.57984949832775,0,0.0,35288,365.0188127090301,1506048,0,53971,0,0,6960,0,0,71,0.7316053511705685,0,0.0,1,0.0104515050167224,0,0.0,0.05891,0.1538320929625277,0.3150568664063826,0.01856,0.3409868099658036,0.6590131900341963,24.285886530699187,4.309739059156366,0.317732932589094,0.2458136539287247,0.2221983683984542,0.2142550450837269,11.47062990211683,6.078206457945631,19.692237297054973,12244.54480275422,52.65568306832649,13.726243324882695,16.657749584962957,11.450213833020538,10.821476325460292,0.5661227994847574,0.7982532751091703,0.6804054054054054,0.5758454106280193,0.1202404809619238,0.7369255150554676,0.911214953271028,0.8552631578947368,0.7217741935483871,0.174757281553398,0.5026501766784452,0.7308228730822873,0.62,0.5298602287166455,0.106060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999756964486,0.0046824166134573,0.0070703996753905,0.0091912698170886,0.0112160746789233,0.0136855181964442,0.015965418455045,0.0181871995590981,0.0203770885493842,0.0222993163862622,0.0244982471965394,0.0266097240473061,0.0287679542673836,0.0307933140403093,0.0329856274697949,0.0351609735930959,0.0370895761930894,0.0390693909740886,0.0410079873533571,0.043116655723353,0.0582489788669863,0.0727897139506638,0.0863501857331738,0.0988755535453197,0.111091189064906,0.1264348359658496,0.139220492577383,0.1506019607634416,0.1615040229086751,0.171788548144971,0.184679494772206,0.1964809384164222,0.2074815137016094,0.2175719408729117,0.2278552022263042,0.2380414687877077,0.2476314674870148,0.2567163843838447,0.2649566842194666,0.2723739855983541,0.2793411514843714,0.2856376214753199,0.2923233110221813,0.297947908445146,0.3035941572216498,0.3086404566254982,0.3126522961574507,0.3165892299489679,0.3208768213289242,0.3252713994341733,0.3245300751879699,0.3233161047970277,0.3220324712684002,0.3204399211136223,0.3198945825498586,0.3173628923903749,0.315570016110181,0.315935236472092,0.316936541179275,0.3172616398112703,0.3180883672248804,0.3187158630987465,0.3193207358694747,0.3202953014164684,0.3211248712482334,0.3214174373895874,0.3237399852264333,0.328659948676222,0.3326682069593222,0.3365635630092556,0.3393490317301573,0.3441054533857765,0.3490755879763552,0.3500113886568977,0.3573915498259151,0.3602586713697824,0.3672688303735456,0.3689828801611279,0.3740437158469945,0.3779705771407016,0.0,2.1905487123610863,55.27781370260119,169.8211577798292,256.371687817788,fqhc2_80Compliance_implementation,17 -100000,95727,45254,428.9594367315386,5973,61.17396345858535,4673,48.22046026721824,1778,18.281153697493917,77.33907921770925,79.70856274096744,63.32552877917672,65.07672399093771,77.11419142924662,79.48233971568786,63.24159950079746,64.99465198513745,0.2248877884626381,226.22302527958027,0.0839292783792515,82.07200580025642,179.80138,125.97572980407304,187827.23787437196,131598.95306869852,382.65764,249.03457482483373,399154.0631169889,259566.41785999117,388.73476,189.04113403981148,402145.0061111285,194426.2516472349,3292.6132,1518.2810158224493,3403396.366751282,1549862.6885021464,1083.14666,489.0562553750054,1120569.202001525,499960.17359261774,1736.96362,737.5012884501389,1787711.5338410272,745796.8974908304,0.37962,100000,0,817279,8537.60172156236,0,0.0,0,0.0,32734,341.3457018396064,0,0.0,35427,366.1453926269496,1490807,0,53532,0,0,7013,0,0,71,0.7416925214411817,0,0.0,1,0.010446373541425,0,0.0,0.05973,0.1573415520783941,0.2976728612087728,0.01778,0.3516113516113516,0.6483886483886484,24.1820047591834,4.277562894304076,0.3259148298737427,0.2456665953349026,0.2167772309009202,0.2116413438904344,11.067957769910722,5.738640952989402,19.13895855825468,12137.800314891776,53.31980877024227,13.916318920746004,17.30516092211477,11.24880966477895,10.849519262602543,0.5760753263428204,0.7961672473867596,0.6999343401181878,0.5765054294175715,0.1294236602628918,0.7310606060606061,0.9166666666666666,0.8557457212713936,0.6867469879518072,0.1697247706422018,0.5150611392782583,0.7201704545454546,0.6427289048473968,0.5405759162303665,0.1180285343709468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673958839734,0.0043496775763474,0.0065568445946631,0.0089213136075434,0.0111186840686449,0.0134332766399494,0.0156426859735889,0.0179174876721559,0.0203787398515307,0.0228292263258157,0.0248187309629052,0.0267763603870093,0.0288176731940102,0.0307950670197092,0.0328354511390732,0.0349734235072697,0.0367354549975136,0.0388559093362115,0.040940902426089,0.0428404734122353,0.0574379000344564,0.0715459063562647,0.0848230668414154,0.0976371494368907,0.1098702942106928,0.1256584375198324,0.1388393804370889,0.1509405840457357,0.1613685661470076,0.1718077744278617,0.183681386177022,0.1964202570571611,0.2070867512347962,0.2170430672268907,0.2262653175817763,0.2361860846625358,0.2455086477372963,0.2534326745599424,0.2616991090176494,0.2694938753996173,0.2762694996065361,0.2830773549813426,0.2894126830191357,0.2956638365645994,0.300862727967675,0.3062120895210207,0.310613157467431,0.3143060281346808,0.3187097107571471,0.3234732195796824,0.3221675803504246,0.3207025934935884,0.3187554579002225,0.3176535214525269,0.3167684330941451,0.3146382158000275,0.3118405441746421,0.3119119940891552,0.3117931872230491,0.312476536103116,0.3139268978444236,0.314349492315594,0.3158533015514573,0.3169586983729662,0.3186178120953431,0.3196757515134194,0.3218129021237829,0.3247809565681625,0.3273179620155582,0.3308846886912325,0.3347764662990475,0.3389361702127659,0.3414834470558504,0.3424971363115693,0.3445661331086773,0.3457943925233644,0.3431569202283598,0.3429794171591603,0.3476216814159292,0.3491759294748946,0.0,2.3347503877725324,57.81164480244251,173.98704934624817,247.9964318981287,fqhc2_80Compliance_implementation,18 -100000,95671,45243,428.437039437238,5862,59.99728235306414,4702,48.40547292282928,1786,18.14551954092672,77.30793472821749,79.68528147389614,63.31631099018998,65.07069171950779,77.0823462632795,79.46730258021498,63.231590585768416,64.99290622033475,0.2255884649379851,217.9788936811633,0.0847204044215672,77.78549917304645,179.6344,125.88102549501524,187762.6448976179,131576.99354560443,381.19131,247.98612764537972,397671.33196057327,258438.7720891176,388.66272,188.4476103304514,402106.5526648618,193602.72913529509,3318.23262,1518.7517364769774,3416570.873096341,1535665.6003145955,1096.39786,486.0680815341808,1125409.936135297,487465.539350065,1747.46568,736.0909780660567,1777209.6455561246,724882.9430779269,0.3798,100000,0,816520,8534.665677164448,0,0.0,0,0.0,32572,339.6849620052053,0,0.0,35421,366.2760920237062,1492712,0,53575,0,0,7109,0,0,61,0.6062443164595331,0,0.0,0,0.0,0,0.0,0.05862,0.15434439178515,0.3046741726373251,0.01786,0.3382042539373275,0.6617957460626726,24.429042058827417,4.217008066298197,0.336665248830285,0.2411739685240323,0.2124627817949808,0.2096980008507018,11.337454942357729,6.048521499735324,19.05173423645313,12155.383224463356,53.57174789284039,13.678057186029164,17.84570175446003,11.349618953959588,10.698369998391607,0.5742237345810294,0.7945326278659612,0.6942514213518636,0.5935935935935935,0.1085192697768762,0.741248097412481,0.9120370370370372,0.8561151079136691,0.7350746268656716,0.1319796954314721,0.5094451003541912,0.7222222222222222,0.6363636363636364,0.5417236662106704,0.1026615969581749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025514853289593,0.0048234769567508,0.0070704713985737,0.0093138051515397,0.0113802782523797,0.0137978086432324,0.0162127438284508,0.0183256763654925,0.0203234578502934,0.0226018773479645,0.0248903104112847,0.0267456544728385,0.0291150305959788,0.0312664187330661,0.0333519080345902,0.0354085683566288,0.0374054502124132,0.0399102952780431,0.0418201111041757,0.0435675562969141,0.0575520778922295,0.0711548930111804,0.0847123264672242,0.0978688490101613,0.1098071468488701,0.1252789558853081,0.1375047748397776,0.1491461545013201,0.1603838098901568,0.171285418477153,0.1838363601111614,0.1963277141806063,0.2075879992605561,0.2174802081966496,0.226675174090494,0.2363829716526536,0.2455895644799536,0.2539236091579006,0.2624950360242809,0.270346107153492,0.2774973955318903,0.284033495508982,0.2905073552907203,0.2958427289737562,0.3007125659670712,0.3061501449632965,0.3102199385926436,0.3146833539375246,0.3189590306426922,0.3227443310957238,0.322057198307232,0.3206553943252442,0.3200129771207718,0.3186186533896833,0.3174511029740109,0.3158709716984025,0.3132193930938263,0.3133566997416531,0.3144677789578265,0.3143904838565423,0.3148555010985296,0.3152951433610081,0.3162721396793418,0.316928032929912,0.3175887139486735,0.3179417455420175,0.3185724482512491,0.3222474174855127,0.3247715485305014,0.3277534791252485,0.3307270233196159,0.3359067191992333,0.3384945964734879,0.3424207712867507,0.3442622950819672,0.3471005917159763,0.3513309134906231,0.347444089456869,0.350579358663433,0.3538924407672057,0.0,2.8707742701640617,56.92146315912508,171.67877367131712,256.2602345298583,fqhc2_80Compliance_implementation,19 -100000,95702,45228,428.83116340306367,5856,59.99874610770935,4634,47.79419447869428,1786,18.2963783411005,77.38171245272493,79.75564934743434,63.34258245905804,65.09507303478959,77.15922399835152,79.53317897016242,63.26031257576364,65.01514399786583,0.2224884543734049,222.4703772719181,0.0822698832944013,79.92903692375819,179.68038,125.88612744839192,187749.8693862197,131539.70392300258,384.1771,250.9199622304699,400785.1978015088,261543.44969851195,394.62171,191.158058743196,407756.807590228,196394.64717886943,3280.45016,1518.4039245693275,3386920.7958036405,1545740.6371542143,1121.31255,501.9198809931289,1156838.2165471986,509629.7726339095,1752.52116,737.8593318541404,1797156.2140812103,743544.1607363443,0.37948,100000,0,816729,8534.084972100896,0,0.0,0,0.0,32829,342.35439175774803,0,0.0,36015,371.7999623832313,1490488,0,53437,0,0,7035,0,0,69,0.710538964702932,0,0.0,0,0.0,0,0.0,0.05856,0.1543164330135975,0.3049863387978142,0.01786,0.3362097036795832,0.6637902963204168,23.957913599089142,4.321178051181353,0.3243418213206733,0.2434182132067328,0.2157962883038411,0.2164436771687527,11.442732773508956,6.028450890485141,19.068633403652832,12122.591221127852,53.046963463753535,13.58260785000486,17.128904465512505,11.183370749756904,11.152080398479276,0.5830815709969789,0.8173758865248227,0.7039254823685961,0.594,0.1276171485543369,0.7498039215686274,0.9375,0.8784119106699751,0.7569721115537849,0.167420814479638,0.5197975587972611,0.7513736263736264,0.64,0.5393858477970628,0.1163682864450127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023902122832604,0.0045109428377378,0.006849454073142,0.0088982792596956,0.0109852106515857,0.0131466395112016,0.0154677542696915,0.0177324513046674,0.0198828496365885,0.0221414679086907,0.0245635258296341,0.0267245716163078,0.028938708350473,0.031067801149591,0.0331785345717234,0.0350400132343514,0.0370059656972408,0.0389556482576842,0.0408016807421891,0.0427283622531394,0.0580052219321148,0.071889950900849,0.0851021414556862,0.0977908689248895,0.1100340692142985,0.1256173002696557,0.1374689668342988,0.1490727532097004,0.1602644903540069,0.1714950714875634,0.1842178981619152,0.1961098422938292,0.2076581769145442,0.2180671396246215,0.2278276362676521,0.2375033206411051,0.2467076284889102,0.2548805721739913,0.2625126175273048,0.26987452488895,0.2756717989056879,0.2820141194071719,0.2885165992286032,0.2943149421432165,0.2991548474839712,0.3046022321318584,0.3089558955895589,0.3138344545188651,0.3188915768638662,0.3228029943592176,0.3209687390801817,0.3187440794080095,0.3176736926473276,0.3168510834485938,0.3155829928347249,0.3128946645922943,0.3094389043170916,0.3105207226354941,0.3109169414884575,0.3116354325948579,0.3131348969226172,0.3136439759629593,0.3156041666666667,0.3160916981971956,0.3179947355826752,0.3190619175812798,0.3202388701780205,0.3234771217366894,0.3260809023184571,0.331506309148265,0.3349490373725934,0.3366320914479255,0.3436987511038223,0.347378062743302,0.3488853353400433,0.3533380681818182,0.3571210734980177,0.3579223928860146,0.3548922056384743,0.3593508500772797,0.0,2.3973746685247845,55.62447488671858,184.626731418312,238.5582734321706,fqhc2_80Compliance_implementation,20 -100000,95850,45335,428.6384976525822,5879,60.135628586332814,4641,47.75169535732916,1876,19.08189880020866,77.44506122741345,79.72349703487446,63.40474875222951,65.08452267526152,77.20778585888476,79.49230268882495,63.31589597023711,65.0015816372679,0.2372753685286852,231.19434604950584,0.0888527819924007,82.94103799362063,178.25566,124.80965235325614,185973.5628586333,130213.51314893704,376.74456,245.5936664299309,392406.14501825767,255576.83508599983,382.74315,186.01778720757792,395969.06624934793,191410.1510562334,3333.62188,1529.9687303214005,3428667.8142931666,1546922.2225575368,1107.52087,490.9218138609814,1138453.646322379,495157.8131048313,1834.11244,769.1420716324361,1867167.741262389,761950.6043042773,0.38242,100000,0,810253,8453.343766301514,0,0.0,0,0.0,32227,335.5451225873761,0,0.0,34996,361.74230568596766,1505887,0,54097,0,0,7077,0,0,60,0.6259780907668232,0,0.0,1,0.010432968179447,0,0.0,0.05879,0.153731499398567,0.3191018880762034,0.01876,0.3340887018452573,0.6659112981547426,24.317328515080177,4.331366428902211,0.3206205559146736,0.238095238095238,0.2152553329023917,0.2260288730876966,11.202023924179924,5.840918685176714,19.92595428942116,12189.901640496544,52.6830271884333,13.366312444860151,16.824799620161148,11.124729288883158,11.367185834528843,0.5664727429433312,0.8153846153846154,0.6955645161290323,0.5695695695695696,0.1182078169685414,0.7488408037094282,0.9189814814814816,0.8746928746928747,0.704,0.1951219512195122,0.4959665371974903,0.7488855869242199,0.6281221091581869,0.5246995994659546,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023988339844936,0.0047204692105876,0.0072295509161149,0.0096423206528358,0.0120104863129229,0.0143960281205807,0.016682962600831,0.0189564277483761,0.0211683975124835,0.0233128834355828,0.0253839852549662,0.0273732359698063,0.0295286710557398,0.0314348313566557,0.0334847876034164,0.0355391777371773,0.0375307671623885,0.0392331606217616,0.0412595907264553,0.0432904937821947,0.0574807337344748,0.0714128992487801,0.0849834033151485,0.0978990891155606,0.1100145198964668,0.1254578271286982,0.1381537842445807,0.1491552438635639,0.1602252367545431,0.1702380442693839,0.1820370609226536,0.1935354975269444,0.2053088698295516,0.2158812996768276,0.2253819707604266,0.2359442416196482,0.2454777481805111,0.254786947141316,0.264085704568643,0.2718638792580641,0.2789597835387711,0.2857259790222056,0.2923173386333522,0.2985396217380895,0.3037874834654078,0.3083969465648855,0.312807480940876,0.3169273053480767,0.3204932259150843,0.3248848838283218,0.3235666218034993,0.3218536129511035,0.3203553256683439,0.3191369849202806,0.3174480940674703,0.315194680413,0.3133963750985027,0.3143300653594771,0.314851047178318,0.3157408722829947,0.3158661115985588,0.3164429728611128,0.3184818481848185,0.319279255200677,0.319065868263473,0.320538423632544,0.3199898011218766,0.3239031107216624,0.3276222315085667,0.3302241018141575,0.333318161128812,0.3360987024037439,0.3381204333585286,0.339209074187615,0.3431223948465328,0.3452110486667464,0.349164603960396,0.3495749533485383,0.3469387755102041,0.3496062992125984,0.0,2.6493772181849957,56.08020137555521,173.85621017260556,245.2966899034428,fqhc2_80Compliance_implementation,21 -100000,95668,44986,426.7153071037337,5985,61.14897353346991,4682,48.18748170757202,1864,18.971861019358613,77.29747507811412,79.69977253486076,63.28577397120039,65.06540122484301,77.0550691182636,79.46339870343058,63.195620490744886,64.98087232223796,0.2424059598505152,236.3738314301713,0.0901534804555055,84.52890260505797,178.54452,125.05173428797475,186629.3013337793,130714.276757092,380.08694,247.0743537488481,396515.7314880629,257480.12266259157,380.80087,184.55518228724327,393410.4193669775,189405.1438017332,3343.78827,1533.2831422469274,3441659.834009282,1549172.13932237,1117.96129,499.4958307234171,1151724.9446000753,505254.38048607385,1828.02732,775.4650818324169,1861661.1406112807,768702.3348639042,0.37888,100000,0,811566,8483.150060626333,0,0.0,0,0.0,32477,338.67123803152566,0,0.0,34760,358.6674750177698,1496820,0,53770,0,0,7177,0,0,67,0.7003386712380315,0,0.0,0,0.0,0,0.0,0.05985,0.1579655827702702,0.3114452798663325,0.01864,0.3301001749085705,0.6698998250914295,24.142840603187462,4.242369292438571,0.3269970098248612,0.24263135412217,0.2016232379325074,0.2287483981204613,11.127643105864037,5.877731155776513,19.946070487652783,12103.981247061054,52.99136546662019,13.58611693598607,17.15719493684672,10.51953763411398,11.728515959673423,0.5583084152071764,0.7746478873239436,0.6949706074461136,0.5773305084745762,0.1167133520074696,0.7319182389937107,0.9123222748815166,0.8507462686567164,0.7668161434977578,0.1466666666666666,0.4935483870967742,0.6932773109243697,0.6395039858281665,0.5187239944521498,0.1087470449172576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021788479468158,0.0041385186537642,0.006426722168638,0.0082613555532974,0.01055908203125,0.0126810487074497,0.0148096772877483,0.0170543902289577,0.019176288902298,0.0214541730670762,0.0234378205391211,0.0254568989428914,0.0276231726011049,0.0298524380693293,0.0320382435236905,0.0340822110511181,0.0360278189488085,0.0383780696744717,0.0405439147714267,0.0426680562793121,0.0573517889788456,0.0714158597225857,0.0843888055237835,0.0968345974605245,0.1093189586058483,0.1251639933979432,0.1376147762857597,0.1488081290075197,0.1594250943739239,0.1694403882494417,0.1825692130153902,0.194597407102285,0.2058429463089441,0.216202298649078,0.2259053078322218,0.2355486519471874,0.2449757449757449,0.2533626225076039,0.2619080083628761,0.2692603078898199,0.2756878873892139,0.2824044791154215,0.2888517715625999,0.2950949557033444,0.3006351446718419,0.3056700649206388,0.3100621678532037,0.314796868225753,0.3190599844196312,0.3235266882730339,0.3224521755565456,0.3207877884509219,0.3192108758938413,0.3181330783052223,0.3169708599223526,0.3159201311736672,0.3135058153334916,0.313544451186513,0.3138992060517259,0.3141661472709465,0.3157845590707056,0.3168767231193383,0.3180602006688963,0.3173913043478261,0.3169444777551265,0.3181309966457786,0.3205776994370842,0.324644772748659,0.3292700014011489,0.3322235434007134,0.3355646630236794,0.3405654872420561,0.3442963149289397,0.3477864682208216,0.3463671397687752,0.34853690321052,0.3483890858640358,0.3522473052674394,0.3553719008264462,0.3504404442742244,0.0,2.7953530514348066,55.034704350158,170.00477430053587,259.1028536146606,fqhc2_80Compliance_implementation,22 -100000,95829,45586,430.84035104196016,5993,61.327990483047934,4745,48.9204729257323,1882,19.28435024888082,77.32864418348662,79.63947390685426,63.32870225298407,65.03836899011586,77.09642952373363,79.40827175492846,63.242221648886165,64.95474857750855,0.2322146597529837,231.20215192579963,0.0864806040979004,83.6204126073028,178.28228,124.90393894107528,186041.8662409083,130340.222628928,381.28619,248.1360796043257,397250.4774128917,258305.85807879208,389.22349,188.47058393010064,402325.5590687579,193773.7094711901,3398.9527,1553.8592220540947,3506861.55547903,1581529.7983419383,1120.61988,499.9475566671478,1154105.7404334804,506608.503946536,1845.3274,772.3669276387632,1891816.8195431444,776856.2892926648,0.38411,100000,0,810374,8456.448465495832,0,0.0,0,0.0,32538,338.88488870801115,0,0.0,35574,367.3522628849305,1497214,0,53865,0,0,7048,0,0,63,0.6574210312118461,0,0.0,1,0.01043525446368,0,0.0,0.05993,0.1560230142407123,0.3140330385449691,0.01882,0.3341319278070596,0.6658680721929404,24.153578294570387,4.372204773314451,0.3226554267650158,0.233508956796628,0.2225500526870389,0.2212855637513171,11.282359238709766,5.800522603925452,19.967047578574512,12267.984146526644,53.8656926900063,13.434873454807056,17.264691650088846,11.666147392662198,11.4999801924482,0.5667017913593256,0.7978339350180506,0.6838667537557153,0.5909090909090909,0.1276190476190476,0.7389312977099237,0.9156908665105388,0.85785536159601,0.7677165354330708,0.1666666666666666,0.501018922852984,0.723935389133627,0.6221238938053097,0.5349127182044888,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990834050741,0.0045209423022341,0.0066149241617206,0.0090098326019827,0.0110433190970103,0.0136021176949704,0.0158495566201202,0.0180330043781317,0.020295542338586,0.0224302890764901,0.0249392911667366,0.027195665113606,0.0290427007861877,0.0310180466763437,0.0331642123499566,0.0355069319614041,0.0375962414107128,0.0399809219666963,0.0419531753121299,0.0441005037678504,0.0585351607317938,0.071899798216358,0.0860934093577058,0.0990826266511144,0.1113687627801083,0.1277310924369747,0.139857915385431,0.1516076862511438,0.1630430139677929,0.1730037411429245,0.1853989447614945,0.1966613655296268,0.208174760237479,0.2185006231006362,0.2284129918141008,0.2385900389932648,0.2480543117790904,0.2562041165608251,0.2655249170944442,0.2731672630516561,0.2801191897877076,0.286166619757951,0.2921455028967613,0.2981343328407876,0.3037011793629736,0.308024584701207,0.3124388837349247,0.3167675737684022,0.3218845694711164,0.3262988086265487,0.3252332919790711,0.3242959980141766,0.3237022803696063,0.3218604111694261,0.3204688989513822,0.3161401246507629,0.3143917761279269,0.3151330923430825,0.315993444190255,0.3164340339055564,0.3171996704613541,0.3189236179713123,0.3207294629412749,0.3213392857142857,0.3229959883734896,0.3239955094901183,0.3256628599094353,0.3294804950059677,0.3335899769020788,0.3358899343717877,0.339046233577306,0.3425871861563777,0.3470881443624203,0.3519706691109074,0.3535172803465486,0.3555661615559002,0.3597254004576659,0.3589329021827001,0.362691466083151,0.3615295480880648,0.0,2.1609011705555576,57.51810933889888,171.29468724131178,261.7403868158698,fqhc2_80Compliance_implementation,23 -100000,95746,45385,430.2425166586594,5966,61.1931568942828,4729,48.8062164476845,1843,18.9146282873436,77.35098256499538,79.6979885276617,63.33757887846742,65.07043759054908,77.1116194941736,79.45855825433043,63.24836512946367,64.98374108796921,0.2393630708217813,239.43027333127984,0.089213749003747,86.69650257986916,179.28042,125.62667828726605,187245.85883483384,131208.27845264142,382.0943,248.75911270823784,398493.2112046456,259233.93427217612,386.42489,186.93287185684835,399575.74206755374,192202.5629935243,3383.48836,1553.6535624664905,3492676.3624590063,1581541.9051098635,1140.62025,508.2420485860844,1173401.7086875692,512926.9093080496,1807.03446,769.3947174874083,1854947.590499864,774761.7950598584,0.38195,100000,0,814911,8511.175401583356,0,0.0,0,0.0,32636,340.2439788607357,0,0.0,35296,364.6000877321246,1494243,0,53646,0,0,7071,0,0,76,0.7937668414346292,0,0.0,1,0.0104443005451924,0,0.0,0.05966,0.1561984552951957,0.3089171974522293,0.01843,0.3332795872299258,0.6667204127700742,24.234282918253257,4.305068015177997,0.3080989638401353,0.2450835271727638,0.2249947134700782,0.2218227955170226,11.047795670325634,5.599605080144449,19.82066794509738,12139.684865730524,53.954165198143016,14.068077722400917,16.500585870854824,11.854412688924064,11.531088915963212,0.5741171495030661,0.8093183779119931,0.6884008236101579,0.599624060150376,0.1296472831267874,0.7304075235109718,0.9331742243436754,0.8407310704960835,0.7327935222672065,0.1674008810572687,0.5163625832609325,0.7391891891891892,0.6340782122905028,0.5593635250917993,0.1192214111922141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020252549289641,0.004196186943169,0.0063823526427404,0.008714552693589,0.0109607426462364,0.0133053720312325,0.01566752632491,0.0177581825418695,0.0198184754389909,0.022168319567687,0.0242744820657912,0.0265248722002094,0.0285106207974337,0.030460930098447,0.032321294089732,0.0345843367890107,0.036717957214157,0.0388406940063091,0.0407664635794639,0.0428590776026419,0.0571765614723721,0.0711573265265558,0.0846684561506521,0.0975240498344109,0.1099971536101711,0.1250991046227681,0.1374150237032166,0.1490358009450428,0.1598829134884516,0.1704517416351094,0.1828072821286222,0.1950403740826532,0.2062179773080814,0.2166048389744263,0.2257514037212374,0.235243257623624,0.2459371614301191,0.2547029702970297,0.2626316506264754,0.2702197663621043,0.2776189539230778,0.2846794766775107,0.2910121131825494,0.2966844740435522,0.3021909328154397,0.3077046173541612,0.3118615671221915,0.3150754599432938,0.3202739619612362,0.3240228625737555,0.322354590049054,0.320910431104559,0.3196952595936794,0.3192151752099623,0.3173235727357943,0.3152520544584815,0.3132749817651349,0.3129349059862804,0.3134055182087203,0.3138504946605236,0.3149817295980511,0.3157551697576583,0.3164808917197452,0.3159671002637343,0.3173792044527614,0.3194791666666666,0.3203684749232344,0.3236874351965312,0.327585603861355,0.3280525961424215,0.3321342379673057,0.3338472170538514,0.3365893622384673,0.3392110663525119,0.34287860294808,0.3459119496855345,0.3451382416899658,0.3481632653061224,0.3594534300055772,0.3593023255813953,0.0,2.2443977683472647,55.92886000105604,181.61212903819168,255.15470746630692,fqhc2_80Compliance_implementation,24 -100000,95832,45251,428.6355288421405,5879,59.90692044411053,4638,47.69805492945989,1800,18.28199348860506,77.51248185563044,79.79817946149221,63.42745123530996,65.1106341462562,77.27840394234826,79.57097804351024,63.33877603554296,65.02813450033575,0.2340779132821779,227.20141798197344,0.0886751997670032,82.4996459204499,180.35314,126.27991126006744,188197.19926538103,131772.17553642567,385.25002,251.4285436908479,401298.814592203,261657.07038447267,384.80069,187.29531718058985,397869.7303614659,192463.87066215588,3289.4745,1515.678362828126,3383389.9428165955,1532446.482206492,1103.58428,489.03348169602685,1133818.5992152935,492546.5387816375,1763.78214,752.1389835713961,1793749.8121712997,743899.4134347265,0.3807,100000,0,819787,8554.418148426414,0,0.0,0,0.0,32831,341.8482344102179,0,0.0,35186,363.542449286251,1493491,0,53578,0,0,7026,0,0,86,0.8765339343851741,0,0.0,0,0.0,0,0.0,0.05879,0.1544260572629367,0.3061745194761013,0.018,0.3449454663845027,0.6550545336154973,24.18517863513437,4.354012899154186,0.3141440275981026,0.2488141440275981,0.2164726175075463,0.2205692108667529,11.379437808136526,5.999675051937725,19.10052460351161,12103.598276791714,52.356047075053496,13.72835753896952,16.43431092701999,11.125947870519846,11.067430738544136,0.5638206123329021,0.7868284228769498,0.6835964310226493,0.5956175298804781,0.1104594330400782,0.7222653219550039,0.9095354523227384,0.847457627118644,0.71875,0.1184834123222748,0.5028366676619886,0.7194630872483222,0.6187739463601533,0.553475935828877,0.1083743842364532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024791046890494,0.0046890349500207,0.0068620196839619,0.0091221803939077,0.0114285133789796,0.0137597884674056,0.0159332939667284,0.0180902267906673,0.0203710700172566,0.022650577768688,0.0246787158875633,0.0267154826733942,0.0288215529730896,0.0308852890928925,0.0328144329896907,0.0350045447033548,0.0370040770711314,0.0390254017625712,0.0407533606199746,0.0425086672705125,0.0576535986566961,0.072306920133007,0.0858753628351968,0.0981986240218475,0.1108279718217907,0.1256813284319939,0.1372785957325023,0.1483143677549718,0.1588524712637544,0.1684159794366498,0.1810516353155013,0.1937539834289356,0.2053551070044191,0.2157327421450959,0.225848979905736,0.2364326081907563,0.2457047353760445,0.2544709054145136,0.2625366726702235,0.2695112472567666,0.2762965099509663,0.2835852200561647,0.2893392631740377,0.2946024389952582,0.2997784530453626,0.3040364583333333,0.3087808101335261,0.3129337859060743,0.3179509654799041,0.3216830942475031,0.3212017259400209,0.3192569879814931,0.3177381635882427,0.3168974591260083,0.3158914155602212,0.3134847398685234,0.3116475119979793,0.3118311242022582,0.312514890575542,0.3123309127153638,0.312492993011697,0.313319013931858,0.3139437737583023,0.3149422216284817,0.3153510132957773,0.3172768642051918,0.3190142437259778,0.3225003887420308,0.3258103657479632,0.3295862607338017,0.3333780041097114,0.3374798313641805,0.3403913821840854,0.3446344559778956,0.3478060895961733,0.3497286687449486,0.3535985695127402,0.3503134796238245,0.3492105967353492,0.3595087458131745,0.0,2.681617835860119,55.72404917474754,166.4763187369068,252.4595472992437,fqhc2_80Compliance_implementation,25 -100000,95731,45326,429.9338772184559,5778,58.96731466296185,4601,47.42455421963628,1804,18.48930858342648,77.31288813594676,79.67230869562987,63.318020272784125,65.0625617990732,77.08389264749914,79.44453689044265,63.23333779822843,64.980502078416,0.228995488447623,227.77180518721707,0.0846824745556915,82.05972065719891,180.62638,126.54235379233153,188681.179555212,132185.34622257316,382.51759,248.7969754873897,398930.2733701727,259247.2244944371,385.64446,186.9425986200792,398392.2449363321,191872.2149748295,3249.71245,1493.1816395889812,3355684.8042953694,1520862.1467737344,1084.6927,484.11784697206383,1115582.1834097628,488251.0209841572,1754.4739,735.4002419781797,1800879.0256029917,741577.1655422224,0.38237,100000,0,821029,8576.417252509636,0,0.0,0,0.0,32701,340.91360165463647,0,0.0,35277,364.0722441006571,1487680,0,53451,0,0,7258,0,0,58,0.5954184120086493,0,0.0,1,0.0104459370527833,0,0.0,0.05778,0.1511101812380678,0.3122187608168916,0.01804,0.3314625288874216,0.6685374711125784,24.089698889977896,4.296025636967364,0.3214518582916757,0.2471201912627689,0.2240817213649206,0.2073462290806346,11.502361677378111,6.17216933024806,19.25633733461191,12156.078780243744,52.38580624852016,13.74215112979994,16.670328793081957,11.417821940043805,10.555504385594464,0.5859595740056509,0.8021108179419525,0.7119675456389453,0.6032977691561591,0.1142557651991614,0.7304415182029435,0.9164733178654292,0.8488664987405542,0.7301587301587301,0.1279620853080568,0.529607250755287,0.7322946175637394,0.6617375231053605,0.5622593068035944,0.1103633916554508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699082420142,0.0046017089165712,0.006716788928459,0.0089789948401251,0.0111166485287985,0.0134419551934826,0.0154073620883042,0.0176108462394462,0.0197108798331527,0.0219534921821402,0.0242179409623606,0.0262771474046311,0.0283340018306542,0.0304166452078075,0.0326424496280782,0.0348084912875421,0.0368100065232923,0.038846636715467,0.0408768080526584,0.0427688813410987,0.0571464364384219,0.07116849418264,0.0850338709339149,0.0984838926739002,0.1108674335480741,0.1261621450103125,0.1382094841947772,0.1502762195706089,0.1609574774890249,0.1714150913048606,0.1844020498686533,0.1957976922993738,0.2062468743884673,0.2164432099035454,0.2268416651997887,0.2369607354488564,0.2469702042182792,0.256016200708781,0.2648034160855838,0.2715303877532313,0.2785347951422253,0.2846783625730994,0.2916893442816914,0.297029702970297,0.3021334499684113,0.30651662126684,0.3115363901657001,0.316510142271767,0.3204560176188625,0.3239386371744559,0.3224196984816203,0.3208914109415459,0.3202149718589988,0.317497539227607,0.3164227109608827,0.3142181767947321,0.3116942909760589,0.3118612267737529,0.3121093281728974,0.3131123170884602,0.3137464788732394,0.3144811180493607,0.316089664283168,0.3160707497596207,0.317320426689783,0.3187630480167014,0.3186320687391167,0.3214274445461142,0.325869595831573,0.3275635145375503,0.3292994794045118,0.330910055717697,0.3345030705602206,0.3356887774485221,0.3441265060240964,0.3457844183564568,0.3486181874324533,0.3445326817348809,0.3443080357142857,0.3500379650721336,0.0,2.4617505128209296,56.369160932073086,165.61660417515716,252.2702513890668,fqhc2_80Compliance_implementation,26 -100000,95777,45368,428.7877047725445,5850,59.98308570951272,4557,46.95281748227654,1780,18.19852365390438,77.37208356525132,79.71134551356381,63.35007434272507,65.07965279378963,77.14371657111317,79.48529033619252,63.26489949751311,64.9980521733577,0.2283669941381418,226.05517737129333,0.0851748452119594,81.60062043192795,178.84482,125.32691998882198,186730.4467669691,130852.83522016976,380.89876,248.844718176825,397051.943577268,259175.3742305824,381.28809,185.00276774384068,394454.9630913476,190314.73371942827,3252.62243,1500.3207183859802,3354175.2926067845,1524611.0844837285,1069.85884,482.13942408238165,1100966.8500788289,487338.55017602025,1743.55654,742.4614608747434,1784283.9721436254,743597.8631230261,0.38241,100000,0,812931,8487.747580316778,0,0.0,0,0.0,32530,338.9853513891644,0,0.0,34831,359.94027793729185,1498615,0,53787,0,0,7175,0,0,58,0.6055733631247585,0,0.0,1,0.0104409200538751,0,0.0,0.0585,0.1529771710990821,0.3042735042735042,0.0178,0.3358281809306866,0.6641718190693133,24.344609050708613,4.239206523812388,0.3168751371516348,0.2470923853412332,0.2139565503620803,0.2220759271450515,11.09177641617861,5.838303557282736,19.148749480703632,12164.833298406753,51.9889585527804,13.627610152990902,16.249007081765996,10.922999062555142,11.189342255468368,0.5668202764976958,0.7806394316163411,0.7105263157894737,0.5846153846153846,0.1067193675889328,0.7250589159465829,0.9204545454545454,0.8551532033426184,0.7004048582995951,0.1674008810572687,0.5054811205846529,0.6909620991253644,0.6626728110599078,0.5453296703296703,0.0891719745222929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384280360579,0.0047747455496532,0.0069209068214568,0.0091730071819668,0.0115936133428251,0.0137135526958788,0.0160535730666911,0.0183582668326632,0.0205403858731196,0.0227612322177873,0.0249228845779403,0.0272786050759962,0.0293467646605334,0.0312911861614497,0.033638576083818,0.0358943627045792,0.0379985301576457,0.0398838535725396,0.0419047816961409,0.0439766374113752,0.0584269897421448,0.0721054283024788,0.0854456255110384,0.0985489277195784,0.1103677872712523,0.1254146681598242,0.1376247906907734,0.1493859322664681,0.1603038774247241,0.1699125851651883,0.1828157104897963,0.1948939113892581,0.20590280796314,0.2164493173445852,0.2262874863910791,0.23675964168263,0.2459091365405851,0.2550608652646487,0.2635820591002346,0.2712046799693192,0.2778028331887829,0.2847407303502127,0.2916676515778277,0.2965330651726284,0.3011492578973556,0.306599359763605,0.3109572923446653,0.3149763491175423,0.3191885737942455,0.322745671980275,0.3219573197789342,0.3201856785782954,0.318662120657105,0.316964608292267,0.3162006029374638,0.3135703463369094,0.3109564116762914,0.3115619925533485,0.312922145654144,0.3138339638803626,0.3148550046772684,0.3159982632035999,0.3172936106113226,0.3181645724998326,0.3194401094811649,0.3204774065773701,0.3206372772955687,0.3257198664230357,0.329998595900028,0.3327902078448516,0.3352301179041289,0.3378787074866026,0.3394259154575718,0.3448616600790514,0.3456511518570757,0.3490488006617039,0.353627139179161,0.3540031397174254,0.3613197424892704,0.3511705685618729,0.0,2.430665023003684,55.56606528134225,171.36604863409636,242.22364440251243,fqhc2_80Compliance_implementation,27 -100000,95652,45003,427.8844143352988,5926,60.88738343160624,4623,47.79826872412495,1798,18.462760841383343,77.25911226955019,79.65562055715948,63.27736057920528,65.04568758532993,77.03672531404972,79.43396793090581,63.195506220253606,64.96642473490347,0.2223869555004682,221.65262625367177,0.0818543589516735,79.26285042645986,178.20748,124.85573003492377,186308.1587421068,130531.22782056178,379.27534,246.6500517429353,396003.7845523356,257349.82200365412,378.55591,182.7756656761494,392416.5098481997,188432.5900398808,3312.80665,1510.318495702674,3425263.266842304,1540840.406580807,1116.9725,492.0464372111626,1153027.4641408438,499694.4833470936,1762.61272,736.258313221335,1811407.93710534,742280.8749371509,0.37964,100000,0,810034,8468.552670095763,0,0.0,0,0.0,32441,338.6128883870698,0,0.0,34516,357.51474093589263,1497062,0,53792,0,0,6920,0,0,66,0.6900012545477355,0,0.0,1,0.0104545644628444,0,0.0,0.05926,0.1560952481298071,0.3034087073911576,0.01798,0.3278582930756843,0.6721417069243156,24.47190784861984,4.328489672936184,0.3201384382435648,0.2366428725935539,0.2227990482370755,0.2204196409258057,11.026622965816609,5.59769872780628,19.257563443849207,12127.639736908815,52.800929527134045,13.18563979703466,16.912522834773092,11.448372420140174,11.254394475186126,0.5611075059485183,0.7879341864716636,0.6864864864864865,0.583495145631068,0.112855740922473,0.7178456591639871,0.9182058047493404,0.8290398126463701,0.7466666666666667,0.107981220657277,0.5034033737792246,0.7188811188811188,0.6286799620132953,0.537888198757764,0.1141439205955335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.004380494630852,0.0065566449465115,0.0085453584782962,0.0106719568645404,0.0129142647627971,0.0151926096620918,0.0175893504292699,0.0197810286134879,0.0216901754457796,0.02381660293017,0.0259264203057777,0.0281203394188737,0.0301525655949646,0.0321255714595308,0.0340071343638525,0.0359466290970869,0.0378239794064832,0.03974246962889,0.0417296485869463,0.0564716701151587,0.070235339708208,0.0837936031249343,0.0958167058005959,0.1080030833887709,0.1238006481265753,0.1361613543912568,0.1477701306172892,0.1586420743116813,0.168701347506308,0.1808298370309652,0.1925352112676056,0.2046305976650984,0.2150713143307845,0.2262186986580807,0.2371974239395958,0.2471250223733667,0.2563654405629101,0.2645577248899856,0.2711200459506031,0.2779924123768751,0.2854914745408917,0.2917161027003939,0.2969970908566345,0.3026099252739751,0.3068452859102537,0.3113431299961098,0.3153538084791592,0.3196012771590997,0.3240429640995793,0.3231832415505885,0.3224840228028766,0.3207659237470302,0.3187292087334215,0.3176681346570127,0.3158986812578771,0.3139985391724094,0.3141516423808347,0.3150720164609053,0.3158705149323211,0.3167855801727375,0.3178561532676245,0.3196332661967103,0.3200303388582773,0.3204712883641686,0.3206664414004627,0.3216811018032088,0.3229006435410453,0.3240789427559855,0.3282984459245163,0.3341820496499045,0.3366908763187192,0.3385737643063765,0.3384871911474912,0.3421812424327093,0.3441673561044793,0.346780331861775,0.3440643863179074,0.3438363736871199,0.3441608662026295,0.0,2.031703927135682,54.95139838113619,175.70503973750607,252.3715533162199,fqhc2_80Compliance_implementation,28 -100000,95623,44989,426.3304853434842,5741,59.033914434811706,4517,46.71470252972611,1788,18.33240956673604,77.28554750318864,79.71677035357213,63.27381344368566,65.0716669393001,77.06195444978181,79.49482136503163,63.19099619232454,64.99186316206931,0.2235930534068302,221.94898854050396,0.0828172513611207,79.80377723079357,178.14698,124.77831674641322,186301.39192453696,130489.85782334086,376.71898,245.41812491066992,393435.59603861,256124.96827284215,375.6307,182.04342182739896,389682.0848540623,187935.59157795095,3231.35985,1470.916341762749,3343433.598611213,1502438.147285377,1076.80243,476.4524551781622,1113759.472093534,485958.0722075162,1754.75068,732.95833154747,1801038.8295702918,738182.2831512595,0.38052,100000,0,809759,8468.245087478954,0,0.0,0,0.0,32216,336.36259059013,0,0.0,34313,355.65711178273006,1499958,0,53784,0,0,7072,0,0,60,0.6274641038243937,0,0.0,0,0.0,0,0.0,0.05741,0.1508724902764638,0.3114439993032573,0.01788,0.3391203703703703,0.6608796296296297,24.51764169477805,4.316745640139877,0.3152534868275404,0.2351117998671684,0.2282488377241532,0.2213858755811379,11.236390275394434,5.862517030336284,18.88780300887059,12150.014875455958,51.16538945578323,12.820854855768063,16.099296323777157,11.34206689119241,10.903171385045605,0.558556564091211,0.7909604519774012,0.6882022471910112,0.5548011639185257,0.131,0.7332214765100671,0.9152119700748128,0.8602739726027397,0.7351598173515982,0.1545893719806763,0.4959398496240601,0.7155824508320726,0.6288951841359773,0.5061576354679803,0.12484237074401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888933927847,0.004412256945501,0.0065182959022052,0.0086090359302739,0.0108859317136694,0.0131711640130794,0.0153726882312737,0.0175711016672115,0.0199343363574065,0.0221521256004014,0.0243429556225764,0.0265204837599284,0.0285329023890644,0.0305632292912217,0.032907236081282,0.0351682906142038,0.0372542720649954,0.039267206015225,0.0413322924798334,0.0433299606755051,0.0583094645731847,0.071963028169014,0.0848772080999569,0.0982426936935038,0.1105641762350927,0.1262589356632247,0.1382879245122625,0.1496311457933563,0.1608795677063827,0.1697340854149879,0.1829589348525064,0.1951907023135801,0.2061810731877424,0.2157962788455217,0.2266347669816209,0.2365313325490022,0.2456461961503208,0.2539475018878132,0.2621231234302729,0.269540295769804,0.2769414271487134,0.2836014894962411,0.2897482099672815,0.2950144656126577,0.3012778386272362,0.3068294007305756,0.3114823906617905,0.3149695564670216,0.3188407676348547,0.3239581682776105,0.3236739695406865,0.3217600550017188,0.3209179145477341,0.3191972026355335,0.317933410555704,0.3151507722481,0.31314443194957,0.3129034907597536,0.3139618260661727,0.3147641770771898,0.3146982807056973,0.3158268555419642,0.3175191655146412,0.3178438246656097,0.3192408282745879,0.3201744140777077,0.320754716981132,0.3240642379553833,0.3289647500521448,0.3323869237745968,0.334255270913625,0.3377248677248677,0.3426991011377208,0.3458509993943064,0.3428705002337541,0.3443257833587607,0.3475748821651209,0.3488512696493349,0.3545925320250749,0.3610067618332081,0.0,1.991833881921797,52.37082684327802,171.7134567414512,246.3190073964832,fqhc2_80Compliance_implementation,29 -100000,95822,45164,428.39848886477006,5844,59.97578844106781,4589,47.44213228694871,1755,18.03343699776669,77.35864855579545,79.66345596391722,63.35358995694328,65.05425516529898,77.14287574220319,79.44819335916384,63.2746042228332,64.97782400308556,0.2157728135922667,215.2626047533772,0.0789857341100699,76.43116221342439,178.97264,125.30916424648866,186775.22907056837,130772.07692442017,379.78342,247.8880081844206,395897.2261067396,258253.90674092443,381.31777,185.17980241368411,395474.3378347352,191301.41804729545,3206.62567,1462.6746253290614,3314554.215107178,1494792.199856995,1054.75631,469.4012685570497,1086459.142994302,475655.33037854126,1708.72514,707.8738040700705,1756035.148504519,714163.7265058968,0.38134,100000,0,813512,8489.783139571287,0,0.0,0,0.0,32484,338.54438437937006,0,0.0,34878,361.51405731460414,1497423,0,53746,0,0,7228,0,0,66,0.678341090772474,0,0.0,0,0.0,0,0.0,0.05844,0.153249069072219,0.3003080082135523,0.01755,0.3340418574231524,0.6659581425768476,24.33824015425965,4.229982314405351,0.3220745260405317,0.2529962954892133,0.2200915232076705,0.2048376552625844,11.382897173242284,6.133534939697585,18.583269539358295,12149.51205961935,52.021052420331415,13.910317492055464,16.658850773722794,11.152680871723526,10.299203282829644,0.5648289387666158,0.7820844099913867,0.6792963464140731,0.5653465346534653,0.1159574468085106,0.7401574803149606,0.908883826879271,0.8716049382716049,0.6808510638297872,0.1465968586387434,0.4977402832178367,0.7049861495844876,0.6067101584342963,0.5303225806451612,0.1081441922563418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0045072876257229,0.0065999574196295,0.0089196018143626,0.0110946294678235,0.0129596663445399,0.015432098765432,0.0176165168871706,0.0196759495739942,0.0219830804955143,0.023855127981891,0.0260121239473603,0.0281813138266176,0.0303363964724163,0.0321998597764671,0.0341551077739793,0.0360694072242283,0.0381593133189583,0.0403427681121786,0.0422041079775549,0.0573678994314328,0.071815406490465,0.0848898392134666,0.0974830539645841,0.1100514268853011,0.1254715485813916,0.1379642978290366,0.1493650152098534,0.1603202562049639,0.1706294755799494,0.1826050447308077,0.1944468480941461,0.2063172773730564,0.216397423137079,0.2257631297953612,0.2361305051311035,0.2455083138042629,0.2541842886709259,0.2623942096067887,0.2697660035047933,0.2781409447998982,0.2850690909941848,0.2906226698701636,0.2957067862022676,0.3010257407452419,0.3070191655882172,0.3118387153255459,0.3164653528289892,0.3200139794967381,0.3239984698386735,0.3223510735618576,0.320710888748385,0.3197609841827768,0.3174568841206668,0.3172460844803037,0.3157830404889228,0.3139465030985203,0.3150010664654055,0.3156635973828519,0.3160030025736345,0.3173749226760642,0.3192368525108738,0.3202710356835679,0.3211382113821138,0.321901511692182,0.322730475171568,0.3239565204987019,0.3267236215756123,0.3292888795104452,0.3335721678210334,0.3364116094986807,0.3390064886714179,0.3404509952128999,0.3423568096658255,0.3435128805620608,0.3433345099423461,0.3434636530238241,0.3486815415821501,0.3503467406380027,0.3573667711598746,0.0,1.734081075833481,56.06298076234752,166.8661496097146,250.1428788003014,fqhc2_80Compliance_implementation,30 -100000,95874,44938,424.8075599223982,5796,59.463462461146925,4586,47.38510962304692,1757,18.107098900640423,77.41454581429173,79.70400277880775,63.37712166936033,65.06849415804739,77.19381218741637,79.4806520677544,63.29719532462687,64.98897750194536,0.2207336268753579,223.3507110533424,0.0799263447334581,79.51665610202951,179.5068,125.65702101958676,187231.53305379977,131064.3201026019,378.61006,246.68152045363365,394470.54467321694,256865.46569790196,384.10616,185.6951500139675,397575.6826668335,191390.6992149331,3276.2405,1487.956825627077,3389661.4619187685,1524554.0965211606,1105.99514,491.5870403685388,1142922.1060975865,502207.8952035145,1722.6296,712.7021663941292,1776068.0476458685,726360.5369184291,0.3791,100000,0,815940,8510.524229718172,0,0.0,0,0.0,32291,336.337276008094,0,0.0,35057,362.6217744122494,1498543,0,53821,0,0,7154,0,0,68,0.6988338861422284,0,0.0,1,0.0104303565095854,0,0.0,0.05796,0.1528884199419678,0.3031400966183575,0.01757,0.3397066095269491,0.6602933904730509,24.4259819956763,4.278025523992913,0.3048408198866114,0.2546881814217183,0.2191452245965983,0.2213257740950719,11.17653791993784,5.831325704361811,18.695465543284325,12130.024429272158,52.16553331703881,14.05076958398844,15.84841650432941,11.233463836546225,11.032883392174735,0.5680331443523768,0.7953767123287672,0.6924177396280401,0.582089552238806,0.1211822660098522,0.7630942788074134,0.9269406392694064,0.9019607843137256,0.7542372881355932,0.1952380952380952,0.4956651718983557,0.7164383561643836,0.6205571565802114,0.52925877763329,0.101863354037267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025003796122893,0.005004812319538,0.0074125150836062,0.009735447586949,0.0119727614594979,0.0140518320292229,0.0158720456397718,0.0181769962054755,0.0205013483696984,0.0225533917028066,0.0248394399090415,0.0268645693360276,0.0289654038613688,0.0311470685111989,0.0330230016599136,0.0347858419144607,0.036769574573746,0.0389549825899519,0.0412834513255963,0.0431974204285417,0.0575950620888115,0.071343476988672,0.0846209446789788,0.0977763312615488,0.1098850187423661,0.1255425427433918,0.1372677780837587,0.1490557816767447,0.1601796247506693,0.1706389995288877,0.1823725532372553,0.1949047202135823,0.205668596756146,0.2157597474245387,0.2259492836424365,0.2362441646939091,0.2449084240917654,0.2535670149421413,0.2611815924628414,0.2688183118741059,0.2750846850179775,0.2819020233544903,0.2885993331283846,0.2946129155887707,0.2996550802788505,0.304428726340694,0.3095958964093582,0.3145070010555633,0.3186612418368404,0.3232899130274115,0.3222789001197862,0.3209861265794937,0.3196172248803828,0.3178978051631336,0.3169240812450853,0.314459544155189,0.3124062702258986,0.3130914568256983,0.313207611512754,0.3144077600783127,0.3153610634007915,0.3165152977797041,0.3183941605839416,0.3194082971860749,0.3200804751868173,0.3215137995434737,0.3228174603174603,0.3261771772708834,0.3299228271117784,0.3330432374698366,0.3355801854783986,0.3367799113737075,0.3397272217724357,0.3438741101536156,0.3489602673598218,0.3492901560483398,0.3489290596992253,0.3474025974025974,0.3463227222832052,0.3530308806709874,0.0,1.6949376605065805,54.89570964131046,175.6990785348691,245.15451138592604,fqhc2_80Compliance_implementation,31 -100000,95704,45424,430.9955696731589,6028,61.73200702165009,4752,49.01571512162501,1908,19.54986207473042,77.36002699221102,79.7310965898895,63.33690834044432,65.08838966088506,77.12327894922518,79.49782042799826,63.24812327355826,65.00381662656675,0.2367480429858375,233.27616189124,0.0887850668860608,84.57303431831065,178.85648,125.23074662501234,186885.062275349,130852.15521296117,382.22326,248.51797196103595,398764.7224776394,259057.6682312682,386.21181,186.3767461777348,399674.9874613391,191784.83264577625,3379.6909,1544.076782096166,3490697.1808910808,1572689.5600704525,1105.3733,489.4591908530347,1141655.2913148876,498096.3159816635,1854.5893,781.788314205205,1902701.0365292984,784671.4790103759,0.38238,100000,0,812984,8494.77555797041,0,0.0,0,0.0,32649,340.4873359525203,0,0.0,35147,363.35994315807073,1498911,0,53799,0,0,7057,0,0,85,0.8881551450305109,0,0.0,0,0.0,0,0.0,0.06028,0.1576442282546158,0.3165228931652289,0.01908,0.3322259136212624,0.6677740863787376,24.52478129091539,4.294938613199529,0.3154461279461279,0.2453703703703703,0.2234848484848484,0.2156986531986532,11.02919622457298,5.7745446371709,20.312156338178813,12233.957860765207,54.07688259094822,14.093648157368255,16.95258268286304,11.767468582606943,11.263183168109988,0.5742845117845118,0.7941680960548885,0.7104736490993996,0.596045197740113,0.1024390243902439,0.7402700555996823,0.9196217494089834,0.8814432989690721,0.7361702127659574,0.1314553990610328,0.5144574864013742,0.7227456258411844,0.6507650765076508,0.5562273276904474,0.0948275862068965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396906746614,0.0048657360946385,0.0071643850907725,0.0093053495601292,0.0116359493876886,0.0139607347969532,0.0162181447502548,0.0184531221294576,0.0206286736519294,0.0230655828333913,0.0252824540179212,0.0273397396410825,0.0295236724116655,0.0316516974291364,0.0333887060328728,0.0352357320099255,0.0372331057631543,0.0392451968487591,0.0407934014956887,0.0426808936312104,0.0574087225332108,0.0716334177639153,0.0848615190935795,0.0970843150454392,0.1099723751080744,0.1256211278624743,0.138041137595604,0.1494603971987483,0.1610894526034713,0.171372481709541,0.1842522060487216,0.1965951643974977,0.2084053528139234,0.2187670843447265,0.2285506863780359,0.23862855876814,0.24763700884936,0.2564362114923912,0.2655690116569147,0.2737462789100068,0.2813995976041257,0.2876742745620493,0.2936446940585279,0.2989321713314339,0.3032080237019768,0.3083753063310469,0.3132013160034526,0.3172483033830668,0.3209045980283075,0.325036931518413,0.32384504557879,0.322824455855831,0.3215993230378676,0.3199403900688697,0.3182345418314844,0.316632714016573,0.315052674871081,0.3156212610427286,0.3155073824357771,0.3155286147263327,0.3165350499644447,0.3169248988453567,0.3178335038523375,0.3195667194151603,0.3200776643175607,0.3202777561051728,0.3197085278378686,0.3253068932955618,0.329499894492509,0.3323495393451123,0.3357587406187077,0.3378615950135847,0.33829907599472,0.3392599346554213,0.3415226529659038,0.3431129963473547,0.3465271458902032,0.3482178614337204,0.3531821906582901,0.3687834736036725,0.0,2.49002045427238,54.75323302949143,186.1821098746936,254.538638050326,fqhc2_80Compliance_implementation,32 -100000,95746,44907,423.9341591293632,5819,59.50118020596161,4598,47.38579157353832,1821,18.6326321726234,77.33346816806463,79.695001255856,63.32120940122799,65.07016407364002,77.09955540715154,79.46430875572723,63.23390029575786,64.98665394788864,0.2339127609130855,230.69250012876807,0.0873091054701262,83.51012575137418,179.17878,125.37536855874218,187139.7029640925,130945.803019178,378.48534,247.1043055688564,394668.8738955152,257452.1305804156,373.2781,181.28634260993823,385534.5810791052,186016.58227891973,3276.03933,1493.6184122594589,3382655.150084599,1521165.5481363295,1090.10996,487.4851479283837,1123752.8774048004,494408.4621219973,1791.72258,759.0860117835134,1835909.9910179016,761876.9182561082,0.37838,100000,0,814449,8506.350134731478,0,0.0,0,0.0,32379,337.5180164184405,0,0.0,34056,351.47160194681766,1499415,0,53777,0,0,7004,0,0,76,0.7833225408894366,0,0.0,0,0.0,0,0.0,0.05819,0.1537871980548655,0.3129403677607836,0.01821,0.3415792922673656,0.6584207077326344,24.44369839814543,4.343464202983718,0.3242714223575467,0.2433666811657242,0.2050891692040017,0.2272727272727272,11.009194246378886,5.514936239496721,19.49197607071793,12114.55322574728,52.1576893267469,13.475007166216974,16.843093958895444,10.450487014521864,11.389101187112622,0.5663331883427577,0.7935656836461126,0.6887994634473508,0.6129374337221634,0.1062200956937799,0.7435064935064936,0.9136690647482014,0.8844086021505376,0.7777777777777778,0.1422018348623853,0.5014854426619133,0.7222222222222222,0.6237712243074174,0.5612813370473537,0.0967351874244256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304118749683,0.0047255912059384,0.0070742748107098,0.0095917413481273,0.0117369459530928,0.0137665590729973,0.0159646046568527,0.0182788675471004,0.0206246678386002,0.022775429150502,0.0248608306080395,0.0270417329705867,0.0293902903036722,0.0315238772000288,0.0336748274474604,0.035824659686405,0.0379390324718356,0.0400747120473176,0.0420742927838481,0.0440882389701287,0.0582064156497593,0.0718068405408799,0.0842995498567726,0.0972287952884261,0.10930431206302,0.1246365164796819,0.1368608685503294,0.1484114735777766,0.1586755674232309,0.1687346509807286,0.1814509178660691,0.1932890408587257,0.205642749154349,0.2159069777617344,0.225105891413169,0.234349564235169,0.2438068657549539,0.2533367845326251,0.2619280007263483,0.2693910733505851,0.276643728676343,0.2835991953969219,0.2897177467054676,0.2952465379270688,0.3005144881813328,0.304951445556253,0.30899908746578,0.3131894667276702,0.3177936495613694,0.3219464566097982,0.3200695071190915,0.3192106710671067,0.3180250320291712,0.3167692885843957,0.3155735877658389,0.3131650771259468,0.3122029279422016,0.3118705331471288,0.313291734336268,0.3136109473533773,0.3146753587351542,0.3157645199525879,0.3166711982096919,0.3173603199070661,0.318692420561422,0.3194125026134225,0.320731637935939,0.32438717787555,0.3272197041565651,0.3319988901660787,0.3367407205488165,0.3419293218720153,0.3428877409600604,0.3446301809022212,0.3446812523576009,0.3462504485109436,0.3461715513272978,0.3472052223582211,0.3502239641657335,0.3515292295780101,0.0,2.4395615463989744,53.59536195642505,171.92964909212557,252.59528280448728,fqhc2_80Compliance_implementation,33 -100000,95797,45623,432.4665699343403,5935,60.84741693372444,4653,47.99732768249528,1835,18.81060993559297,77.34149214859087,79.67898018859557,63.33904717832892,65.07163324606995,77.11506775887085,79.45257642639183,63.25524843869159,64.98970308510911,0.2264243897200231,226.4037622037449,0.0837987396373307,81.93016096083738,178.91192,125.38249461660337,186761.5061014437,130883.5293554113,382.29995,249.19269506968328,398509.5879829222,259567.700599648,385.72939,187.37247812591136,398302.6086411892,192370.21559814847,3329.21285,1516.8767962807588,3439687.923421401,1548267.2937496405,1077.82548,475.2605062066221,1112606.5116861698,484012.7351236496,1797.76928,749.7550160714947,1845143.5848721776,758736.8347239278,0.3848,100000,0,813236,8489.15936824744,0,0.0,0,0.0,32665,340.38644216415963,0,0.0,35208,363.1637733958266,1498124,0,53737,0,0,7036,0,0,76,0.793344259214798,0,0.0,1,0.0104387402528262,0,0.0,0.05935,0.1542359667359667,0.3091828138163437,0.01835,0.342682140554481,0.657317859445519,24.148432678133183,4.301059217469864,0.319578766387277,0.2422093273157103,0.2140554480980012,0.2241564581990114,11.15993739321696,5.85280705421877,19.485829797338496,12252.263578125663,52.68744402451169,13.540079320752088,16.85042309723219,10.946911375136883,11.350030231390525,0.5589941972920697,0.7923691215616682,0.695359784801614,0.5652610441767069,0.1064237775647171,0.7365967365967366,0.914351851851852,0.8647342995169082,0.7579908675799086,0.1306306306306306,0.4910873440285205,0.7165467625899281,0.630009319664492,0.510939510939511,0.099878197320341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019550837241812,0.0042780531816753,0.0062610989903089,0.0084136080965735,0.0106323447118074,0.0130894052215012,0.015370022845953,0.0174514188851106,0.0196844354912928,0.0216569901391576,0.02384931661352,0.026247150397404,0.0283989220546789,0.0302555808515241,0.0323269635560691,0.034595030388225,0.0368004141858659,0.0390257059275088,0.0413770171555638,0.0431813449927128,0.0576451562418488,0.0719244683298132,0.0859478151524677,0.0989344710184523,0.1107633619962906,0.1270148291424887,0.1389728096676737,0.1511909825606125,0.1619977589242836,0.173173580821125,0.1865320662526771,0.198196834731471,0.2097012493210212,0.2201835864932794,0.2295952587770899,0.2392835001328491,0.2482973861673076,0.258033007746716,0.2658785428768783,0.2739202999611331,0.2806871709614851,0.2875287470377418,0.2934968861157396,0.2993298228817616,0.3050576106731352,0.3097033747124174,0.3135417447584776,0.31777896287267,0.3225402157762129,0.3258941495381214,0.3240983452299337,0.3224569984063307,0.3212853101380737,0.3200283044752841,0.3182054442579859,0.3166108229678248,0.3140365040920675,0.3149364511149791,0.315311773553945,0.3159060858378301,0.3173147262393788,0.3178713547544099,0.3187332102081934,0.319839598548322,0.3214096193738241,0.3225241703684348,0.3246104846345872,0.3292856916394534,0.3324611032531824,0.3362743532417758,0.3390415688440823,0.3408701243034719,0.3422174161948985,0.3400956494908979,0.344706329595134,0.3428947053902235,0.3432789432789432,0.3457501543527475,0.3502368347729172,0.3451834862385321,0.0,2.2186970695457022,56.3344134875258,168.69644168561032,253.5606813591569,fqhc2_80Compliance_implementation,34 -100000,95713,45450,430.4221997011901,5800,59.56348667370159,4589,47.47526459310648,1775,18.25248398859089,77.3419109081298,79.71126309670804,63.33255108723839,65.08121713966726,77.12529185248071,79.49520796393381,63.25238155394427,65.00349221248383,0.2166190556490903,216.0551327742297,0.0801695332941179,77.72492718342505,179.34444,125.61509044265158,187377.30506827703,131241.40967543758,380.98911,248.4037901788652,397576.3898321022,259052.5531316176,386.86727,187.57526838302783,401393.8440964133,193798.9431943782,3296.02296,1495.6172551924476,3413693.751110089,1532647.597706109,1110.95548,492.6784189544037,1149160.5320071464,503191.4082798376,1747.48598,727.5450319423525,1799049.721563424,735795.9075284377,0.38129,100000,0,815202,8517.15023037623,0,0.0,0,0.0,32478,338.8149990074494,0,0.0,35259,365.6034185533836,1494902,0,53660,0,0,6982,0,0,82,0.8462800246570477,0,0.0,0,0.0,0,0.0,0.058,0.1521151879147106,0.3060344827586206,0.01775,0.3331131296449215,0.6668868703550784,24.47123806400679,4.327024484516608,0.3142296796687731,0.2394857267378513,0.2242318587927653,0.2220527348006101,10.967172254882646,5.535662149178688,18.75049129082677,12172.87154113686,51.963919824140575,13.267196277289097,16.251800200946843,11.365241786949037,11.07968155895559,0.5630856395728917,0.7797998180163785,0.6962552011095701,0.5792031098153547,0.1246319921491658,0.7458033573141487,0.914351851851852,0.8997214484679665,0.7407407407407407,0.1612903225806451,0.4946075494307969,0.6926536731634183,0.628808864265928,0.5292620865139949,0.1147132169576059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0046924090402351,0.0069588151754919,0.0091919232956853,0.0115101476389962,0.0137655779099128,0.0159535969499576,0.0183004000979831,0.0204926410466067,0.0227824004421382,0.0252485904664274,0.0273542186489233,0.0294619719468553,0.0315358938432374,0.0334337722375861,0.0352295398864963,0.0375003883635911,0.0393835616438356,0.0414357459993969,0.0434678394264037,0.0579327199239678,0.0716596011932799,0.0849822691315022,0.0981047937569676,0.1101477707812549,0.1259825858803863,0.1380074896831206,0.1497599454953852,0.1606435141169307,0.1709915147874406,0.1835971997845988,0.19556959970565,0.2072112247117685,0.2172448856864824,0.2264414458997283,0.237362613036404,0.2468612715473987,0.2553468873978669,0.2629651050703682,0.2703837616421428,0.278001387925052,0.2847833208536128,0.2914216063335029,0.2968238944732649,0.3021317947160644,0.3062024582989163,0.3110470941883767,0.3157988474308904,0.3201843532747304,0.3240184453227931,0.3231087971371298,0.3212274388066262,0.3198302631763829,0.318371111143133,0.3172097986040101,0.3155322755524334,0.3127880548014395,0.3134746429039444,0.3145732071288479,0.3154796939376104,0.3161854146003705,0.3171907094327698,0.3176500188702981,0.3180536912751678,0.3177860098142981,0.3188889178414154,0.3198108369893453,0.3217079837873504,0.3236585965775326,0.3272611566303396,0.3283677281217256,0.3298217611066773,0.3325761877720992,0.3363678090575275,0.3357863949429191,0.3407090173685462,0.339951130116066,0.3456739619554101,0.3481171548117154,0.3448540706605222,0.0,1.717542652316823,55.413461264878016,167.9507526992377,250.7751085276688,fqhc2_80Compliance_implementation,35 -100000,95712,44937,427.0624373119358,5966,61.110414577064525,4707,48.62504179204279,1838,18.816867268472084,77.33810060160408,79.7209934069722,63.31256206328344,65.07499970363779,77.09926390635724,79.48193434153045,63.22362557297327,64.98797544550811,0.2388366952468459,239.0590654417508,0.0889364903101679,87.02425812967363,179.28548,125.50270974637792,187317.6613172852,131125.36541538982,379.70499,247.13488877192933,396180.8655132063,257671.48191650928,380.327,184.45289457267836,393471.1425944501,189732.06396434308,3370.04791,1542.8422879561433,3484479.041290538,1575412.6524951337,1117.02069,498.0556259988982,1153331.0974590438,506635.7363746428,1798.89674,765.7367408306535,1844368.2505850885,772053.1324338266,0.37989,100000,0,814934,8514.43915078569,0,0.0,0,0.0,32455,338.5259946506185,0,0.0,34824,359.9862086258776,1495864,0,53682,0,0,7217,0,0,55,0.5746405884319625,0,0.0,2,0.0208960213975259,0,0.0,0.05966,0.1570454605280476,0.3080791149849145,0.01838,0.33392,0.66608,24.134876371135817,4.327654102133089,0.3103887826641173,0.2421924792861695,0.2266836626301253,0.2207350754195878,11.300663442870336,5.938985283289991,19.76109047621852,12127.024486178889,53.46009843555893,13.929608763939925,16.43860812900084,11.80823508520059,11.283646457417566,0.5640535372848948,0.7982456140350878,0.6919917864476386,0.5726335520149953,0.1183830606352261,0.7480559875583204,0.9187935034802784,0.8666666666666667,0.75,0.1775700934579439,0.4948845366851798,0.7249647390691114,0.625,0.5222623345367028,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023514625691755,0.0046966930411848,0.0067922919162588,0.0089131451104742,0.0111109980565928,0.0131800079446724,0.0152887420190522,0.0176494019835149,0.0197371785038605,0.021553268827113,0.0237594725130487,0.0259172168769959,0.0279154414032778,0.0302144048771445,0.0321961686456151,0.0342675264550264,0.0361032883293299,0.0380333855522933,0.0400661184518302,0.0418858529776351,0.0560881370091896,0.0703219863501235,0.0834889723627053,0.0966880173329547,0.1090264814756225,0.1242647992214276,0.1371512855611795,0.14896653071656,0.1591018392843783,0.1693918715934938,0.1826586356632581,0.1940928726871149,0.2054581278643197,0.2153182827940162,0.2249603768600863,0.2352452202826267,0.2443292866795474,0.253036596760213,0.2618295813361804,0.2699204329183004,0.2764671137208575,0.2838374257912671,0.2908429767728333,0.295715039324765,0.3009552978925107,0.3056577225938633,0.3108172474304337,0.315923664316765,0.3194010501069553,0.3232392599146868,0.3228378269184151,0.3205121145374449,0.3197283703630651,0.3186743332659135,0.3184546805349182,0.3168975239029173,0.3153078993192971,0.3157177791272094,0.3164961309167933,0.3166922500267732,0.3179365138852453,0.3181028011536486,0.3197678073723254,0.321040729047715,0.3233568921582768,0.3253146490203711,0.3264020878840316,0.3295005952753932,0.3316216027387689,0.3325442853197617,0.3352277852954443,0.338256162295685,0.3414649324786856,0.3442868932403031,0.3462108578840096,0.3497011602015704,0.351416515973478,0.3517337584695097,0.3602901665771091,0.3601201652271873,0.0,2.157796504122444,56.38515698889165,174.7159382945486,256.189053388022,fqhc2_80Compliance_implementation,36 -100000,95654,45257,428.042737365923,5963,61.19974073222239,4772,49.34451251385201,1837,18.838731260585025,77.27782633283482,79.68977997847273,63.2892740309558,65.07273785561478,77.05600497984105,79.46695939890272,63.2072512374708,64.99233958699598,0.2218213529937713,222.820579570012,0.0820227934849953,80.39826861879362,180.83494,126.57761401862535,189051.10084262028,132328.61565499127,382.94848,249.5756802370255,399816.46350387856,260383.9256455825,390.35531,189.3702626177565,404525.153156167,195257.6084715676,3347.58649,1530.352681561573,3464520.9505091268,1564776.8127877703,1104.39001,490.11980150485874,1142834.41361574,500687.625091908,1789.27832,744.8528187858358,1837488.4897651956,752489.2695414621,0.38062,100000,0,821977,8593.23185648274,0,0.0,0,0.0,32612,340.37259288686306,0,0.0,35698,369.6761243648985,1485848,0,53371,0,0,7083,0,0,67,0.6899868275242018,0,0.0,0,0.0,0,0.0,0.05963,0.1566654405969208,0.3080664095254066,0.01837,0.3345047923322684,0.6654952076677316,24.045253853901293,4.198690086510649,0.3250209555741827,0.25,0.2160519698239731,0.2089270746018441,11.3687263688458,6.126273513618295,19.424824522460025,12141.264719982935,54.37096338979468,14.459355457321331,17.649606349820434,11.317283430526183,10.944718152126724,0.5785834031852473,0.7829002514668902,0.7143778207607995,0.574199806013579,0.1273821464393179,0.7309451219512195,0.9012875536480688,0.8606965174129353,0.7268518518518519,0.1578947368421052,0.5208092485549133,0.7070151306740028,0.6631853785900783,0.5337423312883436,0.118335500650195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024522221997041,0.004644653577803,0.006953891133535,0.0092889010843826,0.0116791291520423,0.0140789111765365,0.0160938296787353,0.0185686416701563,0.0206624250731368,0.0228434455701129,0.0251487179487179,0.027291869960454,0.0293975407727529,0.0314242427365578,0.0335226099525087,0.0354860062470264,0.037542485285584,0.0398716630844469,0.0420499479708636,0.0441768324470858,0.0583932452767095,0.0726815730219406,0.0864664021663832,0.0988971671507345,0.1109211775878442,0.1264461497750727,0.1379782726432827,0.1490699111461507,0.1607914438502674,0.1709233791748526,0.1837117334568925,0.1952534592148286,0.2064300562684341,0.2167680658292117,0.2255319617361822,0.2353736370889105,0.244758523678746,0.2528127812781278,0.2612366244170345,0.2684864091559371,0.2762779081732937,0.2825118921003728,0.2891864082033329,0.2957304286347677,0.3004823170657628,0.3052390113955897,0.3110735524256651,0.3151671736391289,0.3198024806563241,0.3237778481680921,0.3225049873294872,0.3207482149257023,0.3189522559521289,0.317276108064306,0.316011194140939,0.3133380381086803,0.3113914009201967,0.3119044092233249,0.312465762804711,0.3126352499329339,0.3137589556997637,0.314322478471741,0.3156460303151009,0.31638721216186,0.3182036734301375,0.3198823253755434,0.3198916298303151,0.3219087294073092,0.3238654451558134,0.3266195100507533,0.3295761741122566,0.3327472293265132,0.3354370463868728,0.3368300153139357,0.3411875589066918,0.3436828278003344,0.3415161340126602,0.345979381443299,0.3489349775784753,0.3562066306861989,0.0,2.148942702470765,57.683372886829545,177.39563860690424,259.684905505258,fqhc2_80Compliance_implementation,37 -100000,95827,45258,429.7327475554906,5881,60.28572323040479,4575,47.241382908783535,1783,18.26207645026976,77.39792083527668,79.70053001450314,63.37134666233784,65.0710679380685,77.17469497851896,79.47890953047508,63.288513309860136,64.99099343006715,0.2232258567577218,221.6204840280653,0.0828333524776994,80.07450800134563,178.4123,124.89301766701834,186180.0536383274,130330.22876281229,382.32557,249.05889998866303,398464.3367735607,259395.650201129,378.98122,182.71733960835516,392359.7733415426,188253.51123342355,3269.0551,1475.9585079185722,3378660.690619554,1507627.6903066894,1069.42458,471.8571658068685,1099203.606499212,475873.98452609306,1749.3117,729.260920367675,1793463.8880482535,733695.6423300987,0.38195,100000,0,810965,8462.729710833064,0,0.0,0,0.0,32671,340.394669560771,0,0.0,34559,357.52971500725266,1503394,0,53869,0,0,7143,0,0,69,0.7096121134961962,0,0.0,0,0.0,0,0.0,0.05881,0.1539730331195182,0.3031797313382078,0.01783,0.3257355318461041,0.6742644681538958,24.82210805965028,4.328069211607848,0.3304918032786885,0.2330054644808743,0.2192349726775956,0.2172677595628415,11.007864022591766,5.570859914856157,18.79581549433449,12178.542020905154,51.50161527805614,12.684354892564931,16.980898222480988,11.070391512195714,10.765970650814504,0.5554098360655738,0.7692307692307693,0.6838624338624338,0.5643070787637089,0.1217303822937625,0.7288135593220338,0.925925925925926,0.8423772609819121,0.7235023041474654,0.1363636363636363,0.495139911634757,0.6831395348837209,0.6293333333333333,0.5203562340966921,0.1180904522613065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0049346938361924,0.0068867589634362,0.0092300193942101,0.0113553188028627,0.0135352425149091,0.0154775733121395,0.0173425146646263,0.0193207593436459,0.0214339792514988,0.0234616724381697,0.0253398307258271,0.0272769301895515,0.0293176368893874,0.0314667656122775,0.0334826959610142,0.0356799255159571,0.0377464088054225,0.0398429955453101,0.0419407210057447,0.0565888157551607,0.0710453380745698,0.0844701219448259,0.0971570956956914,0.1096798676041194,0.1253779309469945,0.137655342070662,0.1494939174303138,0.1606148981401361,0.1705619254984823,0.1835079746276532,0.1958960269127175,0.2067668355476309,0.2172082750174947,0.2276331562682151,0.23828345567476,0.2477474463624604,0.2562845707604443,0.2645391678947965,0.2719898402819093,0.2793993549654941,0.2849766355140187,0.2904404374815252,0.2956473868763388,0.3013696969696969,0.3070016849303275,0.3124055879452191,0.3171434373175622,0.3220295174338959,0.3252591968843745,0.324829658243468,0.3230935833641759,0.3218623197562585,0.3208171962509178,0.3184686018957346,0.3157637872132747,0.3126685486287435,0.3146436807929472,0.3161246381746977,0.3163912238210571,0.3172281075425518,0.3179758010483585,0.3189284072386843,0.320369252777219,0.3217456155123054,0.323822923994893,0.3262989334019616,0.3293341331733653,0.3321149926196668,0.3346956590746766,0.3384973951192761,0.3423524388942256,0.3413291139240506,0.342540168324407,0.3441023211747986,0.3477691850089233,0.347010911326264,0.3513131313131313,0.3514028874965949,0.3442373526055534,0.0,1.9028597602513693,51.87212379628632,171.0900904439194,254.65760790588195,fqhc2_80Compliance_implementation,38 -100000,95546,45245,428.7777614970799,5781,59.28034663931509,4560,47.06633454043079,1773,18.106461808971595,77.19945181010942,79.67065010885766,63.224607941291474,65.05378881813309,76.97709491668373,79.45345539184946,63.141086404583945,64.9753839177547,0.2223568934256974,217.1947170081978,0.0835215367075292,78.40490037838777,179.22542,125.5373603423478,187580.24407091876,131389.44627964313,378.50004,246.98614594001867,395506.7297427417,257862.14591926252,383.44146,185.5007255098701,397594.5722479225,191190.9343678269,3236.32766,1469.6588218213592,3340583.362987461,1491558.9787341768,1070.77137,473.9083208501755,1102363.6886944508,477677.0988321598,1728.68208,727.8067814982362,1766183.4090385782,723742.76375601,0.38056,100000,0,814661,8526.374730496305,0,0.0,0,0.0,32259,336.9581144160928,0,0.0,35019,362.7990706047349,1489310,0,53476,0,0,7149,0,0,74,0.7640298913612291,0,0.0,0,0.0,0,0.0,0.05781,0.1519077149463948,0.30669434353918,0.01773,0.3387842748595969,0.661215725140403,24.52166570658177,4.19741135206231,0.3269736842105263,0.2390350877192982,0.2208333333333333,0.2131578947368421,10.996019515155028,5.84290982096454,18.93477656598888,12194.544090295974,51.81737647480724,13.112768081998858,16.889692315911002,11.179796553389709,10.635119523507678,0.5732456140350877,0.7862385321100918,0.7149564050972501,0.579940417080437,0.1100823045267489,0.7377593360995851,0.9012987012987012,0.8894601542416453,0.7377777777777778,0.145631067961165,0.5141579731743666,0.723404255319149,0.6533575317604355,0.5345268542199488,0.1005221932114882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0042308394716016,0.0066922576976196,0.009038962095331,0.0115343893798102,0.0139350445472894,0.0159310098484461,0.0185366850602902,0.0207224723700368,0.0230787362034864,0.0254780993050494,0.0278551818452901,0.0299169945006282,0.0317303129706422,0.0339788768782423,0.035878431534926,0.0379278158058494,0.0400141348632244,0.0418971426190401,0.0437755783846989,0.0580900275124747,0.0722937049737314,0.0859761802146513,0.098934679297373,0.1112990170172286,0.1269163079663281,0.1387432048595227,0.1507283496078117,0.1609782748425247,0.1704411037271221,0.1830414029934558,0.1942961323088944,0.2052756171795739,0.2161631453081463,0.2253457391035617,0.2356835779113298,0.24626214244147,0.2547877802981571,0.2624366926535025,0.2704310770609113,0.2773621887431428,0.2839451155154216,0.290133928041851,0.2958937343117591,0.3009401334697257,0.3061981020166073,0.3102954656755026,0.3147500829229709,0.3200150625876486,0.3243715268589573,0.3238304883318928,0.3223155311021939,0.3211927071573718,0.3197168623250293,0.3183883220376852,0.31634532727496,0.3144960416303089,0.3158007339993088,0.3168009600548603,0.317201218419638,0.3171892339232983,0.3176255925110569,0.3196707507052335,0.3201202413800839,0.320456795190613,0.3214454045561665,0.3229557496777889,0.3274992116051718,0.3295990981469738,0.3329764453961456,0.336006524398532,0.3418329637841833,0.3428017268347619,0.3467485220554798,0.3513085591878551,0.3547134282688007,0.35941026026779,0.359161889701522,0.3583378305450621,0.3615094339622641,0.0,2.6089550776406663,52.58075822966663,173.86816635339727,248.7136634592312,fqhc2_80Compliance_implementation,39 -100000,95681,45010,425.5285793417711,5973,61.109311148503885,4707,48.60944179095118,1828,18.812512411032493,77.33990302576841,79.73017140543956,63.32261558699434,65.08898236958288,77.11420990875419,79.50315011476475,63.239187155634575,65.00678563478766,0.2256931170142166,227.0212906748128,0.0834284313597635,82.19673479521816,179.44564,125.69202340406126,187545.74053364823,131365.7083475938,381.14406,248.3086468540364,397755.2074079493,258924.438538016,387.79465,188.6377764838457,400855.2690711845,193829.47131162343,3346.74743,1531.6562602677968,3461337.412861488,1564356.1549789037,1108.40819,495.995167511365,1144693.7845549274,504671.8216359735,1786.73088,748.7919412599789,1840343.4537682508,759997.8256924468,0.37899,100000,0,815662,8524.806387893103,0,0.0,0,0.0,32515,339.21050156248367,0,0.0,35391,365.4748591674418,1494758,0,53630,0,0,7172,0,0,75,0.7838546837930206,0,0.0,1,0.0104513957839069,0,0.0,0.05973,0.1576031029842476,0.3060438640549138,0.01828,0.3332800255877179,0.6667199744122821,24.36438052069069,4.229746971713707,0.3199490121096239,0.2438920756320373,0.2205226258763543,0.2156362863819843,11.240552001365828,5.944107977949221,19.431401641660774,12161.872769830848,53.342380565179816,13.842290539684154,16.84601840626224,11.452525043824412,11.201546575409012,0.568090078606331,0.7996515679442509,0.6892430278884463,0.581888246628131,0.1123152709359606,0.7503912363067292,0.9390519187358916,0.855,0.7445887445887446,0.142156862745098,0.5001458151064451,0.7120567375886525,0.6292947558770343,0.5353159851301115,0.1048088779284833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0047539404997212,0.0069405688425282,0.0090297810100353,0.0113988794321914,0.0136810602821718,0.0158600725730827,0.0183004000979831,0.0206186620870134,0.0227435566746504,0.0250243477369419,0.027192100022583,0.0292448173741362,0.0313536452217621,0.0334183067920283,0.0355765552465338,0.0375128202471847,0.0397425917276454,0.0419522952576118,0.044031647746818,0.0590299902852785,0.0735529663013096,0.0862235370638467,0.0994582653973597,0.1114357746389729,0.1271686696005416,0.1390135480653956,0.150002128746594,0.1606519208381839,0.1704746485970687,0.1832024897963579,0.1955141036322127,0.2074755581655846,0.2180710904101201,0.2275198661647846,0.2377313353490381,0.2461287875407202,0.2546939510186633,0.2626528436287743,0.2700019466614756,0.2774886668516976,0.2841731243498486,0.2900868084301156,0.2949361177301737,0.3004247057395947,0.305266527933408,0.3089958603784439,0.3141415168696448,0.3183765939543012,0.3223180834784444,0.321212202805676,0.3201727838001431,0.3187460373370905,0.3177414690572585,0.3155617668485452,0.3134143355573238,0.3108798456355671,0.3120161396142238,0.3128761144922348,0.3132347702173139,0.3138310801967053,0.314194923617416,0.3157421540134233,0.3179521573887771,0.320214582982511,0.3199572660708236,0.3207998632712356,0.3245470558631102,0.3272389107243121,0.3300924828076831,0.3320489573889392,0.3344274445444438,0.3377691293704098,0.342874497000987,0.343866866118175,0.3462584229814399,0.3492940454266421,0.3569526930165881,0.3617795187465025,0.3593023255813953,0.0,2.271982921729504,55.69664272449763,172.75917598820826,259.7905497838503,fqhc2_80Compliance_implementation,40 -100000,95787,45060,426.0181444246088,6058,61.97083111486945,4771,49.244678296637325,1886,19.313685573198867,77.331780499572,79.6710417171948,63.32970022966426,65.0619833489835,77.0987391529984,79.4409728188984,63.24301833038099,64.97905239455085,0.2330413465736001,230.0688982963948,0.0866818992832705,82.93095443265486,178.68488,125.13028023919271,186543.7481077808,130633.6630640825,381.96846,248.44387644491016,398136.72001419816,258739.88210699093,383.31253,186.14345461568703,396706.9122114692,191582.89391922424,3400.25077,1554.7650669282184,3512202.814578179,1585616.7804574212,1100.68742,489.60493743776567,1133080.5224090952,495294.1253709269,1844.3021,768.1470842324709,1890658.753275497,772328.6931584834,0.38086,100000,0,812204,8479.2612776264,0,0.0,0,0.0,32649,340.2549406495662,0,0.0,35014,362.0950650923403,1499288,0,53811,0,0,6996,0,0,77,0.7829872529675216,0,0.0,1,0.0104398300395669,0,0.0,0.06058,0.1590610723100352,0.3113238692637834,0.01886,0.3333333333333333,0.6666666666666666,24.30507198453676,4.305494481061191,0.3156570949486481,0.2483756025990358,0.2150492559211905,0.2209180465311255,11.34168250203418,6.011086549856278,20.03892679305535,12150.83410489882,54.107647772568434,14.371036263742992,16.91242524594187,11.476012191358732,11.348174071524832,0.5648710962062461,0.7940928270042195,0.6899070385126163,0.5877192982456141,0.1062618595825427,0.7439024390243902,0.921875,0.8345498783454988,0.7413127413127413,0.1443298969072164,0.4969644405897658,0.7164179104477612,0.6356164383561644,0.5358539765319427,0.0976744186046511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728032413269,0.0049065325818093,0.0071742417323713,0.0094883985533747,0.0115942028985507,0.0137985111864682,0.0160987744948104,0.0182839058751467,0.020343280072786,0.022736579173662,0.0249420786090664,0.0270864136684737,0.0291922017027927,0.0313353042367556,0.033490551433024,0.0354794690485051,0.0373768861915759,0.0396822104215068,0.0417948291628564,0.0435552223575839,0.0579660238751147,0.071512996182208,0.0841326247156619,0.096526070235168,0.1083820662768031,0.1234677487530645,0.1358120210702589,0.147206124727524,0.1587714898566809,0.1684897312006514,0.1815735368518498,0.1943732355518058,0.2063554207040553,0.2168434868205184,0.2265488284044508,0.2364907537699578,0.2458099935280858,0.2546959710255775,0.2628373780902699,0.2703804192281714,0.2772137554635647,0.2836700336700337,0.2907546321493646,0.2962834234212639,0.3016495797094407,0.3072607097935729,0.3118738729713484,0.3164118246687054,0.3205896079651524,0.3243971368954861,0.3228821548821549,0.3215238252357777,0.3201914953534215,0.3188462372587291,0.317189195617595,0.3158951871329786,0.3133225509783401,0.314137760973204,0.3144124244447869,0.314365854965787,0.3149194078021504,0.316494988038514,0.318013856812933,0.3176359888878932,0.317310243361231,0.3187353018029788,0.3196517767946339,0.3251564613013806,0.3288934067089628,0.3324470196047305,0.334124304097837,0.3345590194511058,0.3370544209057465,0.3377934092820552,0.3407763331449029,0.3408199643493761,0.344790382244143,0.3447230084917104,0.3470685840707964,0.3562130177514793,0.0,2.1499771121196987,57.448602737975776,175.5995947542772,259.49426565551937,fqhc2_80Compliance_implementation,41 -100000,95694,45296,429.5567120195623,5917,60.76661023679645,4574,47.28614124187514,1831,18.76815683323928,77.34192318165195,79.71672593044876,63.32298576779221,65.07488994121256,77.1149804918033,79.49169434789145,63.23871925950317,64.99365953796017,0.2269426898486557,225.0315825573068,0.0842665082890334,81.23040325239117,179.99388,126.04160773291582,188092.9420862332,131712.96082817714,377.64198,246.37747400452383,394102.3470646018,256931.81703818825,383.97032,185.78284686102464,398422.3775785316,191912.50693065644,3261.74524,1505.448877018044,3375608.4289506134,1540353.2879982495,1083.51664,482.00748117770365,1118310.1239367148,489851.6370382157,1789.20272,751.7849707734347,1836588.897945535,757755.4920856013,0.38192,100000,0,818154,8549.679185737872,0,0.0,0,0.0,32256,336.53102597864023,0,0.0,34979,362.6559658912784,1492714,0,53516,0,0,6999,0,0,74,0.7732982214140908,0,0.0,1,0.0104499759650552,0,0.0,0.05917,0.1549277335567658,0.3094473550785871,0.01831,0.343483164169486,0.6565168358305139,24.279051362746397,4.257108773965855,0.3187581985133362,0.2490161783996502,0.2083515522518583,0.2238740708351552,11.4036240391183,6.095144458163819,19.45738180759631,12200.767449482171,52.05681339381902,13.671418819011569,16.477201002807142,10.681353963386346,11.226839608613972,0.5743331875819851,0.7963125548726954,0.6947873799725651,0.6012591815320042,0.130859375,0.7361002349256069,0.9288990825688074,0.8513853904282116,0.7336244541484717,0.1348837209302325,0.5116772823779193,0.7140825035561877,0.6361922714420358,0.5593922651933702,0.1297898640296662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023085568482123,0.0044901227435359,0.0065938302038,0.0091006967720966,0.0108813928182807,0.0128382643399645,0.0151295801643455,0.0176447162856238,0.0197556112275678,0.022024492136304,0.0241264047247969,0.0263911851387847,0.0286448958601182,0.0305812288131227,0.0326702932584617,0.0347245201853077,0.0366069671324542,0.038923833841938,0.0410253743760399,0.0430147863328019,0.0583172298532407,0.0720381131877912,0.0857106870709742,0.0982826837275865,0.1107335809555968,0.1269009746960027,0.1388936079847101,0.1502029337509187,0.1619382562962329,0.1722005732504589,0.1848285529437136,0.1961895065205147,0.2076856085347267,0.217561178479184,0.2267158346634377,0.2363962726174779,0.2463465553235908,0.2553220232131398,0.2633161268364626,0.2704959340281754,0.2782759618166039,0.284029484029484,0.2901225069538971,0.295993478312993,0.3013109456060845,0.3071548282151131,0.311121962213124,0.3160533414770703,0.3206346325845464,0.3247791000224532,0.3234814045406105,0.3232122666225421,0.3225824656451931,0.3214110305376592,0.3196498776055189,0.3170537775806969,0.3149362448450757,0.3154093624844068,0.3164431536687452,0.3166613173567276,0.3183766683513974,0.3198434194658073,0.3201842546063652,0.3214437462262674,0.32271920142055,0.3239579275418777,0.3233131794828124,0.3278857894242509,0.3298875462736607,0.3330038353564509,0.3372403493686925,0.3391129671723846,0.3439309997481742,0.3482075328997126,0.3507838745800672,0.3507969995311767,0.3536585365853658,0.3569003395246655,0.3624215980365421,0.3729951510630361,0.0,1.944646157711434,56.0210372363779,171.8569750036483,242.79790449769837,fqhc2_80Compliance_implementation,42 -100000,95730,45411,430.7740520213099,6010,61.401859396218526,4741,48.88749608273268,1777,18.11344406142275,77.32392886815877,79.6891014468755,63.31606620966248,65.06540363421645,77.10611562482553,79.4744843894616,63.23482105109274,64.98817571269156,0.2178132433332393,214.61705741390347,0.0812451585697431,77.22792152489433,177.95492,124.7082998398658,185892.53107698736,130270.86580995069,384.00005,249.9695523329684,400463.1150109684,260454.3887373906,391.35616,189.744390969916,404685.88739162224,194987.54341478457,3335.58152,1515.6714092080213,3440260.158779902,1539243.9649086192,1101.97488,485.0988369150135,1135846.9027473102,491543.1613490042,1735.0156,723.8925862547953,1771565.778752742,722545.6435237558,0.38163,100000,0,808886,8449.660503499425,0,0.0,0,0.0,32723,341.1365298234618,0,0.0,35722,369.14237960931786,1498141,0,53861,0,0,7099,0,0,70,0.7103311396636373,0,0.0,1,0.010446046171524,0,0.0,0.0601,0.1574823782197416,0.2956738768718802,0.01777,0.3358681875792142,0.6641318124207858,24.6392542676016,4.271072443981359,0.3265133937987766,0.2488926386838219,0.2159881881459607,0.2086057793714406,11.442408644138258,6.141163417392404,18.855677249385828,12241.60998949546,53.66586561588907,14.122304426321902,17.53951453595449,11.32031118912561,10.683735464487064,0.5768825142375026,0.8033898305084746,0.6983204134366925,0.59375,0.0990899898887765,0.7525450274079875,0.9223744292237442,0.8502415458937198,0.7447698744769874,0.1451612903225806,0.5121247113163973,0.7331536388140162,0.6428571428571429,0.5477707006369427,0.0884184308841843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195275861719,0.0046842206653215,0.0070331053240505,0.0095104554044991,0.0118403385278919,0.0139103869653767,0.0161083131129824,0.0185878918411301,0.0207138402396507,0.0230162793078734,0.0252622081876621,0.0273311566972627,0.0291973804603727,0.0311788638821651,0.0333608502734495,0.0352365989291546,0.0371743746439484,0.0390667164860713,0.040981646129049,0.042767990164925,0.0577358766352408,0.0719173066058462,0.0855363191174774,0.0981713792994668,0.110314355313248,0.1262826073158863,0.1387553716377526,0.1508975915160033,0.1622447235751516,0.1723306174957118,0.185506965527636,0.1977116407838387,0.2082844096542726,0.2187769917890294,0.2287439374443234,0.238162207654146,0.2478547596996105,0.2568972501012647,0.2652053488319295,0.2725594726282602,0.2794615135085036,0.2871217534939844,0.2933437633338074,0.2989273887795748,0.3043330170547162,0.3088744989207524,0.3140684315371412,0.3181511256067574,0.322291655862677,0.3259332672613148,0.3246369777130607,0.3228249941467311,0.3209792971173915,0.3190337660833948,0.3184271968829469,0.3158772923491412,0.3142445952143727,0.3149016393442623,0.3151061216133215,0.3155024946543122,0.3160512293166308,0.3168015794669299,0.3176591118173454,0.3184181749202169,0.3199001512133068,0.3207836811156788,0.3211465257655815,0.3233758883089114,0.3270232230823364,0.3287013141700083,0.3331969634983408,0.3360512521840419,0.3388756431170787,0.3386387752008489,0.3424194003195789,0.3448684522398673,0.3468679245283019,0.3544577839008069,0.3577860169491525,0.3574130105900151,0.0,2.4879344437932804,55.51327112079297,178.65837802680792,255.8849522956635,fqhc2_80Compliance_implementation,43 -100000,95793,45214,428.5073022037101,5940,60.69337007923334,4683,48.281189648512935,1857,18.915787166076854,77.4066300966336,79.7450697014988,63.35719594835807,65.08742946703336,77.1674457396594,79.51292547477834,63.26639955693244,65.00328232136859,0.2391843569742064,232.14422672046453,0.0907963914256271,84.14714566477244,179.64936,125.7519164764485,187539.1312517616,131274.64060677553,376.07523,244.6367745356481,391979.674924055,254768.7561049848,380.92272,184.623242775465,395033.5306337624,190603.24208354764,3361.08165,1539.3266373763508,3463634.74366603,1561872.5975555116,1104.77585,493.9795994736369,1136087.2819517085,498467.83471132047,1811.3295,767.7331121605803,1846690.8437986076,761277.1635291702,0.38075,100000,0,816588,8524.505965989163,0,0.0,0,0.0,32116,334.62779117472047,0,0.0,34747,360.057624252294,1499340,0,53881,0,0,7041,0,0,70,0.7307423298153309,0,0.0,2,0.020878352280438,0,0.0,0.0594,0.1560078791858174,0.3126262626262626,0.01857,0.3397075365579302,0.6602924634420697,24.33364274665974,4.290151101625329,0.3192398035447363,0.242152466367713,0.2186632500533845,0.2199444800341661,11.216622690669965,5.960279840561324,19.63265684002776,12207.769806307644,52.96306799896309,13.643356337575431,16.852621700695824,11.32435863599271,11.14273132469912,0.5628870382233611,0.7892416225749559,0.6909698996655519,0.5771484375,0.1135922330097087,0.7306791569086651,0.9036144578313252,0.8624078624078624,0.7552742616033755,0.1396396396396396,0.4997060552616108,0.7232267037552156,0.6268382352941176,0.5235069885641678,0.1064356435643564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023709648002918,0.0046439942406359,0.0068296445134512,0.009205165459293,0.0113505761739608,0.0135435123520905,0.0159764278868701,0.0180472617771653,0.0201561797293429,0.0221458103074215,0.0242585114887162,0.0260841012169844,0.0282128761716822,0.0303797728980717,0.0323382058841721,0.0344492864371424,0.0365208934686572,0.0386174436807348,0.0407285421883279,0.0426991795427095,0.0579672336429093,0.0723847972054301,0.0863052183575486,0.0994544823889256,0.1112984467533562,0.1271943267208488,0.1399917308935935,0.1512160883113016,0.1621503356564244,0.1725272135081854,0.1847590964367581,0.197194674856976,0.2084275280410399,0.2183728524776373,0.228444297956493,0.2388797910949809,0.247752671142736,0.2568498926278628,0.2646221546767077,0.2712411566728484,0.2771821472768698,0.2842481765475967,0.2902359372411671,0.2957009211456224,0.3008430310245135,0.3054956431714261,0.3103810906905704,0.3153381258349768,0.3199316097611522,0.3243303895555292,0.323319316405197,0.3223266761179855,0.3207374311124892,0.3196409730151618,0.319075968347759,0.3164833820223,0.3156565257889834,0.3155562097275374,0.3166010052981932,0.3181423226286951,0.3182428651371012,0.3181094312171912,0.3205998750260362,0.3219283219505684,0.3215421018666794,0.322309983167163,0.3242799751032649,0.3270232340558241,0.3298473122777661,0.3326508111513624,0.3360589085652331,0.3373677840340999,0.3388646288209607,0.3393515384036711,0.3442486085343228,0.3448477068502742,0.3479389312977099,0.3497213375796178,0.3541609822646657,0.3549124143183549,0.0,2.372221494099925,55.91373140530031,169.43523114326734,257.60332442524845,fqhc2_80Compliance_implementation,44 -100000,95689,45371,430.16438671111626,5807,59.390316546311496,4597,47.476721462237045,1853,19.04085109051197,77.29491858535671,79.69749164734353,63.29396199958445,65.07407126814259,77.06136071984531,79.46457503070805,63.20769379298629,64.99036679963629,0.2335578655114005,232.9166166354781,0.086268206598163,83.70446850629776,179.38052,125.6505592964588,187462.007127256,131311.39346890323,380.06529,247.2864170303335,396614.5011443322,257853.6477864054,384.48888,186.38804382051944,398065.8800907105,191908.1591100197,3332.52935,1526.199514476466,3446176.8750849105,1558467.9058998048,1110.91704,495.1963327574088,1146105.6338764122,502645.35396692256,1813.50834,756.7872500484916,1865077.1771049963,764813.682321757,0.38169,100000,0,815366,8521.000323966182,0,0.0,0,0.0,32526,339.3075484120432,0,0.0,35089,362.98843127214207,1494346,0,53669,0,0,7139,0,0,61,0.6270313202144447,0,0.0,0,0.0,0,0.0,0.05807,0.1521391705310592,0.3190976407783709,0.01853,0.329107672044781,0.6708923279552189,23.976636486349125,4.452415142297981,0.3112899717206874,0.2345007613661083,0.2281922993256471,0.2260169675875571,11.56986925488068,6.006742678788374,19.628063467451025,12179.130440428507,52.28769054715223,12.930012104267432,16.265910241506326,11.801320278906948,11.29044792247154,0.5642810528605612,0.7866419294990723,0.7064989517819706,0.5815061963775023,0.1203079884504331,0.7414596273291926,0.9095238095238096,0.8835443037974684,0.7630522088353414,0.1517857142857142,0.4953158053792686,0.7082066869300911,0.638996138996139,0.525,0.1116564417177914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024531916834774,0.0046576760327559,0.0071802163205199,0.0096385542168674,0.0120015879963761,0.0140959913569047,0.0162353565451651,0.0183690566191945,0.0203175512542456,0.0223522060254663,0.0245984038733766,0.0264220334281869,0.028370618864352,0.0303620567046965,0.0323602881975267,0.0343037385593877,0.0365810690377002,0.0385605714523028,0.0408006158583525,0.0429217652331617,0.0574392078215091,0.0714098765690595,0.0846975611803719,0.0984122307684213,0.1108708037051885,0.1263199102778424,0.138939011187297,0.1505201179714866,0.1611710652847526,0.1717452415184223,0.183925628292273,0.1954216971742611,0.2072620535956949,0.2176212801766062,0.2268053707511793,0.2364449660639746,0.2453472284209586,0.2543862610711593,0.2623043902882191,0.2703759329534641,0.2781850397804259,0.2844382528886339,0.2901143926296095,0.2959559485106229,0.3016640937435423,0.306736275671406,0.3109911174031246,0.3158075645122277,0.3202350443943982,0.3239525775099236,0.3236105318390356,0.3222060359518443,0.3208142121118275,0.31860656566386,0.3180339557060737,0.3154418975239029,0.3132302814110186,0.3144326509151852,0.315076218470162,0.315700085812357,0.3162232694365695,0.3170345128184808,0.3183544967992444,0.3199480414772345,0.3209834798570186,0.3216631342072899,0.3229369348746709,0.3265589497601616,0.3283870740883997,0.331966886890074,0.3371821305841924,0.3410035155001598,0.344412209889001,0.3461714809720311,0.3500236183278224,0.3523433763749402,0.3516030534351145,0.3527975584944048,0.3601532567049808,0.3573050719152157,0.0,2.237944069653142,56.28720203454255,166.13916338087984,251.56776470536116,fqhc2_80Compliance_implementation,45 -100000,95724,45478,431.6994693075927,5943,61.11320045129748,4685,48.41001211817308,1880,19.29505662111905,77.3593554540744,79.72988230041042,63.33143217950936,65.08371090097572,77.13206891884286,79.50277289648048,63.24759358760596,65.00164650370796,0.227286535231542,227.10940392994416,0.083838591903401,82.06439726775727,178.21144,124.86843527634056,186171.9318039363,130446.09698334865,380.52909,247.58822150893175,397006.8321424095,258127.7684895447,391.68756,189.45852932097867,405244.2647611884,194962.11390752703,3328.89932,1516.8436376645252,3443916.186118424,1551120.2320092765,1096.36351,486.7679179874706,1132063.8502360955,495441.1781124871,1832.0924,764.0355466407912,1882925.0971543184,774472.533834402,0.38125,100000,0,810052,8462.36053654256,0,0.0,0,0.0,32350,337.3970999958213,0,0.0,35718,369.30132464167815,1501796,0,53829,0,0,7146,0,0,68,0.6894822615018177,0,0.0,0,0.0,0,0.0,0.05943,0.1558819672131147,0.3163385495540972,0.0188,0.3334940533590485,0.6665059466409514,24.3667804320722,4.247626136581191,0.3233724653148346,0.247812166488794,0.2098185699039487,0.2189967982924226,11.219365549270156,5.957436757074818,20.05288385810952,12172.27193035538,53.26788659191782,13.963523844498198,17.21474958087621,10.847477931241135,11.24213523530229,0.5592315901814301,0.8001722652885443,0.6838283828382838,0.5595116988809766,0.1023391812865497,0.7274155538098979,0.9120370370370372,0.8571428571428571,0.706140350877193,0.1583710407239819,0.4964830011723329,0.7338820301783264,0.6233303650934996,0.5152317880794702,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599238342178,0.0046732287854673,0.0065958375191532,0.0089476143080579,0.0109819712638418,0.0130514013458621,0.0150160558642132,0.0172202600902353,0.0192901392324834,0.0213351897541948,0.0234015279700558,0.0256165326266703,0.0279538252602987,0.0299302486116691,0.0322573987699673,0.034587911803926,0.0365769067511465,0.0385217761090309,0.0406682398927156,0.0426019478152179,0.0568340816539626,0.0711968352310783,0.0850981255965679,0.0980190107671601,0.110070751484094,0.1259559344622967,0.1379474990981049,0.1497599454953852,0.160652654749057,0.171042607753302,0.183336386066607,0.1952198997651083,0.2071707513407086,0.2172861660338545,0.226786638619368,0.2374790717271507,0.2473033030350403,0.2559303541903337,0.2642076719726795,0.271807736806534,0.2785811795737986,0.2855907039816698,0.2921256678171245,0.2977335822324334,0.3022891873203042,0.3074972613025122,0.3124953095684803,0.3172811733455345,0.3212585386048437,0.3248369028006589,0.3231681092414386,0.3217544245355612,0.320870261387418,0.3194074543282035,0.3177770863890247,0.3153443353739523,0.3135950041789538,0.3130877038054588,0.3141027824132411,0.3146567057986482,0.3146138880574678,0.3158154404799494,0.3169923676926948,0.3188493531535167,0.3198594870314229,0.3207596321671399,0.3209648023692903,0.3237774561017056,0.3276025402617452,0.3316580925999208,0.3349870283555596,0.34,0.3413677484658695,0.3444798301486199,0.3482884059322824,0.3508813160987074,0.351913730255164,0.3519519519519519,0.3458503401360544,0.350566037735849,0.0,2.065969208557042,56.047953850044365,174.29521274188372,255.97815890459665,fqhc2_80Compliance_implementation,46 -100000,95889,45092,426.8059944310609,6001,61.3209022932766,4727,48.7230026384674,1835,18.761276058776293,77.4394230829848,79.7192489934742,63.39129033748679,65.07721940396664,77.21549469208094,79.498767085613,63.307865218198735,64.99808953124892,0.2239283909038647,220.48190786119903,0.0834251192880515,79.12987271771499,180.12918,126.08193567609678,187851.7661045584,131487.38194797814,381.66919,248.57014026484595,397353.1583393299,258547.8211941369,384.86043,186.5350286852073,398209.0646476656,192047.05162740737,3367.48345,1519.4060140041977,3476114.0381065607,1548804.924448267,1114.20134,484.5175239607283,1148778.8693176485,492098.9414434688,1797.24274,744.427139749569,1840514.0527067755,745797.5139901425,0.38042,100000,0,818769,8538.71664111629,0,0.0,0,0.0,32607,339.4758522875408,0,0.0,35128,363.09691414030806,1495647,0,53720,0,0,7088,0,0,72,0.7300107415866263,0,0.0,2,0.0208574497596178,0,0.0,0.06001,0.157746701014668,0.3057823696050658,0.01835,0.3290291726446676,0.6709708273553324,24.29022785813249,4.4043430807219055,0.323460968902052,0.2392638036809816,0.2181087370425216,0.2191664903744447,11.204655370786297,5.716393504604744,19.320402869653883,12157.419356386425,53.24733793670809,13.632887151694176,17.19418308453086,11.255016496162732,11.165251204320322,0.558282208588957,0.7771883289124668,0.6873773708306082,0.5751697381183317,0.1119691119691119,0.7373086220789685,0.9041095890410958,0.8370927318295739,0.7181818181818181,0.1467391304347826,0.4945496270797476,0.696969696969697,0.6345132743362832,0.5363748458692972,0.1044600938967136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689005871633,0.0046313186590457,0.0067762910964809,0.0091786900059905,0.011271814365719,0.0133900409027085,0.0153806977336389,0.0175438596491228,0.0196559192513587,0.0218703328627836,0.0239556543746221,0.0261537830128665,0.0282076576854306,0.0302546787177533,0.0324965204391978,0.0345621643948781,0.0365220270242307,0.0385675502041323,0.0405527466024356,0.042550092590666,0.0574377150005212,0.0710538964702932,0.0845480438971265,0.0967735161639175,0.1094185887381175,0.1252362300326235,0.1376216754403618,0.1489655612109362,0.1602933808087161,0.1708619619426785,0.1828737300435413,0.1947010708072655,0.2056967181949529,0.2160097903167648,0.2262976767710085,0.236683967640907,0.2458599861813805,0.2552233105679367,0.2634900134815167,0.2703555504744483,0.2772427014042867,0.2835658824216241,0.2907000106366634,0.2961251630974754,0.3014721052439957,0.3061345086114565,0.3101253953767487,0.315314857621866,0.3195492608291119,0.3237566297724491,0.3229239451760279,0.3209574920735139,0.3200219125744465,0.3181936191080597,0.3175666661725687,0.3152701835843235,0.3137877137308767,0.3149371892174823,0.3162096376108529,0.3172721455993175,0.3182793692264626,0.3203354132629963,0.3213890685977836,0.3231012025161706,0.3225267379679144,0.3242983866784251,0.3254643634615928,0.3284409959178586,0.3315043756077233,0.3345777498329862,0.3380542149654955,0.3409654444737536,0.3424820256330103,0.3449139042706516,0.3474983510788655,0.3485999050783104,0.3551676193418817,0.3586489252814739,0.3572222222222222,0.3570072161033042,0.0,2.277049506095357,54.123708132849856,171.43994970544176,267.2874023904617,fqhc2_80Compliance_implementation,47 -100000,95729,45227,428.17745928610975,5833,59.67888518630718,4592,47.3106373199344,1750,17.873371705543775,77.34647984393533,79.69869249273545,63.33814763576003,65.0752383625888,77.12336697018186,79.47932509489155,63.25487563747951,64.99607737212004,0.2231128737534646,219.36739784389655,0.083271998280523,79.16099046876468,179.81106,125.97542611119312,187832.9659768722,131595.43368382944,380.05287,247.78585875717147,396354.3962644549,258186.50811893103,384.53403,186.82572140208416,397036.9271589592,191639.80152629243,3229.27013,1483.613863986507,3331219.5886304043,1507715.6354777631,1064.5582,474.9469594112372,1095048.1045451222,479220.1161058353,1704.94132,721.6064282904895,1743679.4074940716,721978.8143037814,0.38107,100000,0,817323,8537.862089857828,0,0.0,0,0.0,32462,338.41364685727416,0,0.0,35104,362.1473116819355,1492970,0,53559,0,0,7001,0,0,73,0.7625693363557543,0,0.0,0,0.0,0,0.0,0.05833,0.1530689899493531,0.3000171438367907,0.0175,0.3285901210336931,0.6714098789663069,24.39140322977893,4.210547853374288,0.3344947735191638,0.2443379790940766,0.2092770034843205,0.211890243902439,11.366388141037548,6.080949815820935,18.766590368825337,12190.0750470465,52.23195817235248,13.592584770161247,17.211978624861498,10.708328807546229,10.719065969783491,0.5755662020905923,0.8172905525846702,0.6920572916666666,0.5806451612903226,0.1079136690647482,0.7442231075697211,0.9393939393939394,0.8676844783715013,0.6978723404255319,0.1313131313131313,0.5121366496853461,0.7417027417027418,0.63167104111986,0.5426997245179064,0.1019354838709677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0044501211365548,0.0068397925736495,0.0092135470632453,0.0114812780930298,0.0135812021501873,0.015973496432212,0.0181773645372988,0.0207296255788042,0.0228619987099812,0.0249080043870888,0.0268819411656026,0.0290238009561507,0.0308067855266817,0.0329749695631538,0.0350494578755335,0.0372525470057152,0.0394036540197329,0.0412681912681912,0.0434433913134048,0.058130794287146,0.0721358146155617,0.0857787336725594,0.0983711710953848,0.1105101685801942,0.1260334510392658,0.1384793262193181,0.1498595266473693,0.1610943871560024,0.1713945837039577,0.1843566999655528,0.1958345949219256,0.2069984785916105,0.2174996175782871,0.2268151144132064,0.2369088071546371,0.2465130280630163,0.2552851745232098,0.2634552550372118,0.2712229309574797,0.2783496807624687,0.285183106496422,0.291292357585011,0.2961790694049803,0.3016360787552684,0.3071230683986948,0.3114766401901307,0.3163032825486527,0.3202389901241608,0.3234098170200407,0.3226519039344836,0.3207970386272,0.3197160083394376,0.3182113797638489,0.3175954822410462,0.316110447120836,0.314118894286302,0.3139885834262844,0.3144902282356157,0.3156073282551688,0.3162357962522698,0.3176010584727186,0.317501258178158,0.3192950280691552,0.3193265183403487,0.3209234228345839,0.321564258576856,0.3259571257936757,0.3291276767251954,0.3318708249337918,0.3360596146855689,0.3394665676865157,0.3422730682670667,0.3435718087128411,0.3480590281041451,0.3488206708545691,0.3536306896026792,0.3606060606060606,0.3681868743047831,0.3698201720093823,0.0,2.564096907293734,54.35202799134195,175.25892756626527,244.99063913281356,fqhc2_80Compliance_implementation,48 -100000,95740,45136,427.43889701274287,5937,60.81052851472739,4623,47.70210988092752,1839,18.821809066221014,77.41222784566315,79.76766483607081,63.350809200748486,65.08951999248892,77.18423091975335,79.54142655542141,63.26583353056695,65.00752958433499,0.2279969259098067,226.23828064939744,0.0849756701815351,81.99040815392777,178.58192,125.0269935892996,186528.0133695425,130590.1332664504,382.74338,249.9110096600204,399183.72675997496,260446.41010585325,385.45178,187.3934890100082,398920.7959055776,192875.6072511901,3318.06099,1522.1196246477705,3427099.310632964,1551933.148062493,1142.00883,509.037027766324,1180030.5932734488,518894.3887260534,1802.394,756.7929676070341,1846794.652182996,761746.6877510305,0.38082,100000,0,811736,8478.546062251933,0,0.0,0,0.0,32747,341.42469187382494,0,0.0,35171,363.5993315228745,1497808,0,53683,0,0,7094,0,0,73,0.7624817213285984,0,0.0,1,0.0104449550866931,0,0.0,0.05937,0.1559004253978257,0.3097524002021223,0.01839,0.3266025641025641,0.673397435897436,24.3336776873802,4.324976762307367,0.3194895089768548,0.2370754921046939,0.2143629677698464,0.2290720311486048,11.385318595223731,6.058686074192792,19.426446086418583,12207.450343971946,52.36266080788403,13.278798690141391,16.67938031703367,10.912179790401384,11.492302010307585,0.5710577547047372,0.7901459854014599,0.7129316181448883,0.5893037336024218,0.1293673276676109,0.7444698703279939,0.9133333333333332,0.8781094527363185,0.7447698744769874,0.1545454545454545,0.5024154589371981,0.7043343653250774,0.6511627906976745,0.5398936170212766,0.1227651966626936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0047737292859676,0.0070912632390536,0.0092818263059549,0.0116003619394259,0.0138748918409935,0.0160221782824061,0.0183055620746303,0.0205209962085211,0.022661207778915,0.0248011806181848,0.0267820481235115,0.0288880664528332,0.0308020266930301,0.0331637654391051,0.0351956173445656,0.0372042454051255,0.0391965638163218,0.0412629434025034,0.0431671163241283,0.05822414783108,0.072365047974804,0.0855764187559005,0.098913352198016,0.1115296550705369,0.1267235996909954,0.1388667791609623,0.1508959848379987,0.1621017985188668,0.1727661035866835,0.1853916230930947,0.1976525109903198,0.2086912032047723,0.2185508769624909,0.2282135736238557,0.2388415635121345,0.2485330770176478,0.2563446916361588,0.2644095901145953,0.2718683712664106,0.2790813490225146,0.2852059925093633,0.2916045350185803,0.2973911793594135,0.3020130153950755,0.3076942019527931,0.3116892854465022,0.3158683204895451,0.3195764462809917,0.3236535805878872,0.323250885288121,0.3209341849181766,0.320299127311502,0.317910340361229,0.3166506682418962,0.3145547762851622,0.3122070896109206,0.312676239996088,0.3128457491939589,0.3127005229105734,0.314542817833637,0.3158152760074517,0.3169680053324445,0.3174793498534505,0.319438140512649,0.3202380952380952,0.321564966477128,0.3257736461192912,0.3296282100421617,0.3321007081038552,0.3335742028723693,0.336251450268959,0.3377872127872128,0.3423131913612762,0.3460149958344904,0.3471751081997895,0.3466446479507581,0.3451362641734633,0.3493615865254007,0.3513102924420813,0.0,2.2387408726456224,57.40289432211316,166.1200094245199,247.683335064512,fqhc2_80Compliance_implementation,49 -100000,95734,45471,432.04086322518646,5780,59.15348778908225,4540,46.89034198926191,1782,18.26937138320764,77.32373385663094,79.69391266782804,63.321321634088775,65.0752622255037,77.08859421840617,79.45995607019306,63.232737693802704,64.98971601186194,0.2351396382247657,233.956597634986,0.088583940286071,85.54621364176285,179.53914,125.73189282251482,187539.3486117785,131334.39825194274,380.29054,247.96933777839527,396676.3636743477,258458.8001947012,380.75235,184.3797935112208,394559.5086385192,190147.21781610072,3223.28672,1490.2940679378014,3328842.7100089835,1518626.2225936467,1059.69757,472.1422938653819,1091474.0217686505,477800.2061025814,1749.20884,748.7481019753976,1793852.236405039,752216.7389099646,0.38388,100000,0,816087,8524.51584598993,0,0.0,0,0.0,32490,338.80335095159506,0,0.0,34828,360.66601207512485,1494841,0,53708,0,0,7106,0,0,54,0.5536173146426557,0,0.0,1,0.0104456097102387,0,0.0,0.0578,0.1505678857976451,0.3083044982698962,0.01782,0.3347046239921014,0.6652953760078987,23.979270298115704,4.289590393773925,0.3204845814977973,0.2477973568281938,0.2068281938325991,0.2248898678414096,10.920711415588489,5.54412926590588,19.119147778137584,12161.279836219754,52.00264021811447,13.78662951830851,16.619190538435678,10.371940816488667,11.22487934488161,0.5515418502202644,0.7582222222222222,0.7010309278350515,0.5612353567625133,0.1018609206660137,0.7118003025718608,0.8844444444444445,0.863961813842482,0.705607476635514,0.1255230125523012,0.485705407085146,0.674074074074074,0.6351351351351351,0.5186206896551724,0.0946291560102301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871327254305,0.0043201801089172,0.0064859926918392,0.0086580086580086,0.0109881165554289,0.0129572471961617,0.0152776077999428,0.0173521391439339,0.0197253382143916,0.021649854063188,0.0237716770415645,0.0257574201499435,0.0275703145896343,0.0296672609049596,0.0316983546995313,0.0340425092006781,0.0361244886334213,0.0382121328450037,0.040134335651975,0.0420443888715223,0.0565086193394798,0.0705045007326774,0.0836349521081841,0.0959750042080457,0.1087323349504324,0.1246840864149227,0.1369399382513023,0.1488879429605193,0.1600692145008651,0.1699177488713257,0.1835460076455069,0.1958864388808344,0.2073278159019477,0.2174169773977321,0.2270336875921403,0.2368744532175723,0.2469252812684678,0.2557920046740523,0.2642316066406604,0.2713249261895498,0.2784223542191508,0.2853270077939681,0.2918331638805476,0.2975064076460584,0.3024647887323943,0.307480931080798,0.3110540811216825,0.3147266291476737,0.3196163566845959,0.3237999709643785,0.323016418171778,0.3225708697209289,0.3214487114419444,0.3203623576400445,0.319246102582411,0.3181483865036315,0.3162590565381086,0.316358328413042,0.3170898054527784,0.3174509803921568,0.3167041198501872,0.3180766721366575,0.3181436371272574,0.3195867046193155,0.3217523387018999,0.3219084967320261,0.3227569237811856,0.3256321112515802,0.3286626901492959,0.3294268229270829,0.3329511579912864,0.3358152989072209,0.3379673712943566,0.3393432560994323,0.3446263881046489,0.3474525712922086,0.3543223052294557,0.3549626035981403,0.353554762558331,0.355324074074074,0.0,2.040787917101192,58.40502244958421,164.9946477599196,240.59627719103975,fqhc2_80Compliance_implementation,50 -100000,95785,45137,428.0315289450332,5740,58.756590280315294,4533,46.81317534060657,1807,18.520645194967894,77.38153749659537,79.72325117715918,63.350937847410606,65.08288735861501,77.15355168081862,79.49587035021607,63.26649939231656,65.00077305010417,0.2279858157767478,227.38082694311856,0.0844384550940517,82.1143085108389,177.914,124.65035165337147,185742.8407370674,130135.34964281616,378.50784,247.3237258777032,394643.8064415096,257687.52400658056,384.35582,186.630428033691,397975.7268883437,192222.22962460967,3231.43741,1492.5440005908754,3339559.461293522,1524494.4321085662,1075.97113,483.4540419440949,1111395.9283812705,492918.91853033256,1765.12708,745.60807136162,1811354.408310278,751727.3859381794,0.37936,100000,0,808700,8442.856397139427,0,0.0,0,0.0,32386,337.5580727671347,0,0.0,35103,363.1988307146213,1503134,0,53951,0,0,6935,0,0,63,0.6577230255259174,0,0.0,1,0.0104400480242209,0,0.0,0.0574,0.151307465204555,0.3148083623693379,0.01807,0.3350489789141623,0.6649510210858376,24.29926652658896,4.241101709516605,0.3214206926979925,0.2486212221486874,0.214868740348555,0.215089344804765,10.942626800049096,5.591588487210199,19.32360776542296,12083.19853521638,51.7046198596796,13.547314182166623,16.523025018623816,10.898629882663917,10.735650776225231,0.5660710346348996,0.7737355811889973,0.700754975978037,0.5728952772073922,0.1179487179487179,0.7317854283426741,0.9128440366972476,0.8494897959183674,0.6681614349775785,0.1717171717171717,0.5030450669914738,0.6859623733719248,0.6460093896713615,0.5446071904127829,0.1042471042471042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0047337158148681,0.0069700904995738,0.0089881478321806,0.0111942574780893,0.0134674308050938,0.0154727443225832,0.0178201451331407,0.0201209916409491,0.0222133546155892,0.0243784969155411,0.0268214571657325,0.0290561381863047,0.0310324945430583,0.032995709216932,0.0347670658249558,0.0367553472200664,0.0386533019601339,0.0407001506258764,0.0422913543228385,0.0571029041919292,0.071379267068273,0.0848944846890102,0.0975863482089379,0.110483556548403,0.1258282344735757,0.1380976602238046,0.1493722559452305,0.1599974390165823,0.1707110548993547,0.1839553082247075,0.1956632239225653,0.2062688156850811,0.2160528903944924,0.2252394936263349,0.2345491780594454,0.2434017595307918,0.2520486965905641,0.2604642723489187,0.2682617053412055,0.2749329262651494,0.2820069204152249,0.2890064000189279,0.2947552489430252,0.3000958889145132,0.3049885504641371,0.3096222808091662,0.3135956270259963,0.3183758472603094,0.3226975591754968,0.3213051255497424,0.3195343531384433,0.3174272398304726,0.3155370659270815,0.314744113496249,0.3118794461867972,0.3102767422758577,0.3105761835408859,0.3115389848959042,0.3111083445969979,0.3111355954359558,0.3120922440130088,0.313532042974792,0.3148462638541294,0.3162438252361997,0.3167304239206808,0.3169712645311656,0.3203330411919369,0.3239638255525682,0.3269185173476646,0.3289324440814845,0.3323453130789181,0.3368381288169741,0.3363310723268043,0.3385455915599096,0.3403197158081705,0.3468516542155816,0.3491422805247225,0.3497373513961846,0.3503233168505135,0.0,1.9888612899382112,54.8127121668244,173.7277767870046,240.30574586693592,fqhc2_80Compliance_implementation,51 -100000,95853,45421,430.39863123741566,5860,59.95639155790638,4636,47.73976818670256,1825,18.674428552053666,77.37299817448195,79.67545209247557,63.35320242165369,65.05739068310321,77.14980911758312,79.45503224158163,63.26984671149576,64.97795356721912,0.2231890568988319,220.4198508939328,0.0833557101579316,79.4371158840903,178.94492,125.35825572057048,186686.8225303329,130781.7759700484,381.85589,248.88248253828112,397751.2232272334,259024.8323352228,384.9934,186.345501026384,397753.2367270717,191361.44888456265,3271.50888,1501.227761513415,3371786.746372049,1524915.8936219155,1091.9353,488.548753783201,1122956.339394698,493468.11408432905,1785.51914,751.0130635890079,1828144.471221558,752066.3732414164,0.38214,100000,0,813386,8485.764660469678,0,0.0,0,0.0,32653,339.99979134716705,0,0.0,35137,362.6907869341596,1497199,0,53766,0,0,7264,0,0,65,0.6676890655482876,0,0.0,0,0.0,0,0.0,0.0586,0.1533469409117077,0.3114334470989761,0.01825,0.3376116978066612,0.6623883021933388,24.37254509077863,4.225706227486201,0.3192407247627264,0.250862812769629,0.2107420189818809,0.2191544434857636,11.210629319724164,5.844137261477652,19.34870142173921,12158.64543883468,52.77854315043828,13.961996336445296,16.713340857829877,10.881507079332073,11.22169887683104,0.566220880069025,0.7850386930352536,0.6939189189189189,0.5701125895598772,0.1259842519685039,0.7319587628865979,0.903529411764706,0.8579088471849866,0.7563025210084033,0.1733333333333333,0.5042962962962962,0.7168021680216802,0.6386630532971996,0.510148849797023,0.1125158027812895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.0046722815125624,0.0069586034103242,0.0091992770546067,0.0112742207673383,0.0134059446254071,0.0155331097815783,0.0177264795028013,0.0198632866382613,0.0220496449546728,0.0240971261718149,0.0261011419249592,0.028385266792732,0.0307562454323681,0.0327618733441233,0.0346779023896565,0.0368002317473126,0.0385994362927961,0.0406342810857961,0.0426567897124308,0.0576004671435423,0.071665186268875,0.0852320940318677,0.0981024289329706,0.1115054499499763,0.1264260965097608,0.1381521082581834,0.1490420396793331,0.1595188284518828,0.1696010458749022,0.1831076863471017,0.1957691975095122,0.2075475799702183,0.2168488956921058,0.2253854364978926,0.2358446679367329,0.245283439881291,0.2543541854185419,0.2627960794990471,0.2703312304645012,0.2772310432158014,0.2844811453167399,0.2911020910500219,0.2970531863919501,0.3018004346295329,0.3058152568887575,0.3108312783987783,0.3149038461538461,0.3197085204695771,0.3240094470319695,0.3228086710650329,0.3216649466804265,0.3199216437892838,0.3184997832056656,0.3181170181170181,0.3163209105929869,0.3138992168341112,0.313549593282603,0.3139435706731261,0.3146317967746539,0.3152608939592294,0.3169625246548323,0.3177065908330545,0.3179326023000802,0.3198707206128801,0.3210232437345799,0.3214092603659751,0.3245974702614481,0.3281255473429782,0.3301875616979269,0.3361177586129046,0.3399514204245432,0.3439126889544,0.3461012311901504,0.3502633559066967,0.3597933302019727,0.3677143729020445,0.3649664702296281,0.3613189249099474,0.3605623100303951,0.0,2.4264140968604515,55.160431880980006,177.32787407431795,246.9411794407917,fqhc2_80Compliance_implementation,52 -100000,95779,45215,428.06878334499214,5910,60.34725774961109,4647,47.79753390617985,1835,18.772382254982823,77.39816222968327,79.72614082912352,63.35848721039546,65.0791625329,77.16660425084166,79.4962767134874,63.27186047545786,64.99517663020195,0.2315579788416073,229.86411563611853,0.0866267349375959,83.98590269804629,179.50086,125.69519876219844,187411.0399983295,131234.21112800782,382.51332,248.97125456412692,398635.0034976352,259209.7902480761,385.74077,187.2587650159093,397039.465853684,191359.8944942717,3316.14417,1518.3981804170116,3414877.530565155,1538095.19213293,1094.32533,484.497046124438,1126051.3160504913,489395.2492025048,1792.83824,757.5002424720302,1835944.2048883368,761207.6422471568,0.38009,100000,0,815913,8518.683636287704,0,0.0,0,0.0,32613,339.7300034454317,0,0.0,35160,361.5093078858623,1495666,0,53657,0,0,7053,0,0,76,0.7830526524603515,0,0.0,0,0.0,0,0.0,0.0591,0.1554894893314741,0.3104906937394247,0.01835,0.3359588490596367,0.6640411509403633,24.417734156027816,4.284222459472914,0.3184850441144825,0.2397245534753604,0.2218635678932644,0.2199268345168926,11.51766132922949,6.168755770130682,19.553146063913807,12159.36265692204,52.62248659851863,13.389490488652626,16.754507763762852,11.348416086210293,11.13007225989286,0.5657413384979557,0.7764811490125674,0.6891891891891891,0.597478176527643,0.1252446183953033,0.7360681114551083,0.9189814814814816,0.8329177057356608,0.7824267782426778,0.15,0.5001490312965723,0.6862170087976539,0.6357738646895273,0.5416666666666666,0.1184538653366583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786656134167,0.004763256040214,0.0069695248143489,0.0092208952798765,0.0114878259543536,0.0140655851161275,0.0161308401691547,0.0182018528343468,0.0205457759069872,0.0226723961530591,0.0247723058324539,0.0268237370575981,0.0290940856071116,0.0313812268423219,0.0334237141354887,0.0353520748559271,0.0370876136681046,0.0391132126340239,0.0411011576912684,0.0429661872975871,0.0583478542138377,0.0723496376243215,0.0855165906589086,0.0986821363263762,0.1110115533816832,0.1268537603720733,0.1384331484447084,0.1496366286802651,0.1606984567736423,0.1708342268925584,0.1838185401790041,0.196149478124493,0.2071494540120606,0.2174478313121381,0.2267301266268026,0.2368368634220835,0.2460493593103525,0.2541499842548023,0.2619552762051713,0.2697945534916744,0.2770589799623065,0.2834749675624496,0.2894004852932473,0.2947788469604189,0.2995872283598397,0.3044618776093302,0.3091861744697879,0.3138730675345809,0.3182200701718044,0.3230844314299658,0.3219843834141088,0.3208377452935271,0.3196259576385759,0.3184757505773672,0.3173193797989979,0.315362522533533,0.313308585419793,0.3148518093990503,0.3153961646079301,0.3165912411360154,0.3164050822122571,0.3170794327921949,0.3171369407433747,0.3176208509690354,0.318642447418738,0.3190986734508449,0.3212871847076122,0.3244171166390961,0.3279668973191001,0.3309884063666732,0.3338912512440061,0.337517726771364,0.3406661695252299,0.3439836845683208,0.3438960553374462,0.3482905982905983,0.3514663425011396,0.3523232323232323,0.3495038588754134,0.3545937737281701,0.0,2.755974834714429,55.99162749500957,166.9955832618648,253.9873806864616,fqhc2_80Compliance_implementation,53 -100000,95877,45260,427.1201643772751,5984,61.09911657644691,4670,48.12415907881974,1817,18.60717377473221,77.3584022892406,79.64235825463943,63.35300198276878,65.04239938871764,77.13906623044078,79.42427089189746,63.271557342075006,64.96386000746742,0.2193360587998256,218.0873627419686,0.0814446406937747,78.53938125022353,178.67124,125.13590568021296,186354.6418849151,130517.1268189586,379.22957,247.07980661724645,394963.6096248318,257131.0080804013,384.46278,185.5668011398625,397141.2851883142,190563.88865642872,3370.90709,1528.024000387025,3481291.0499911346,1559349.458243882,1106.82051,491.00588101621895,1141530.5756333636,499307.36833124177,1787.72504,744.9886795067489,1833927.2818298445,750618.4727492103,0.38106,100000,0,812142,8470.665540223412,0,0.0,0,0.0,32408,337.42190514930587,0,0.0,35098,362.2453768891392,1499602,0,53835,0,0,7058,0,0,66,0.6883819894239495,0,0.0,0,0.0,0,0.0,0.05984,0.1570356374324253,0.3036430481283422,0.01817,0.3367916999201915,0.6632083000798085,24.45445170883684,4.426429070142985,0.3149892933618843,0.2387580299785867,0.2207708779443254,0.2254817987152034,11.158701765665404,5.722000717788752,19.267725715378116,12272.469394745118,52.82484174693328,13.346630627058202,16.5790964165571,11.445640424373126,11.453474278944856,0.5665952890792291,0.7937219730941704,0.7056424201223658,0.5848690591658584,0.1139601139601139,0.746160064672595,0.9253012048192772,0.8746594005449592,0.7689075630252101,0.1612903225806451,0.5018933877075444,0.7157142857142857,0.6494565217391305,0.5296343001261034,0.1016746411483253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025007846591541,0.0048332674711979,0.0072217545212037,0.0097675882585872,0.0121671071355966,0.0143701849194475,0.0166571579933982,0.0188280891427405,0.0210836915348723,0.0231243418967685,0.025366732523263,0.027229296098091,0.0295383351306937,0.0316939441009762,0.0339664251780248,0.0360959392068392,0.0379852900102411,0.0399647613618697,0.0422058365354657,0.0440296721703756,0.0588707491503513,0.0728099044036984,0.0862052715905877,0.0993437286711818,0.1116764101753831,0.1269517631895877,0.1396398783344108,0.1514977509809551,0.1630287440361195,0.173092795660889,0.1860450091525788,0.1986544368969844,0.2099032503532992,0.2197542739714048,0.2291742251833284,0.2390063074028992,0.2486898151245511,0.2573018549747048,0.2652406174505778,0.2715475276896469,0.2789629561072676,0.2853985147067423,0.2920479702612792,0.2973274342649545,0.3029168692270296,0.3076439325745712,0.3119027041921868,0.3165255046806343,0.321011673151751,0.3250551803439024,0.323774470150461,0.3230667511501694,0.3221177565087464,0.3207282508098102,0.3196679856008092,0.3177441118743866,0.3155959230903356,0.3161794909712295,0.3168179719956916,0.3167228674909454,0.3179716601463789,0.3192417810247803,0.319117308376777,0.320124198628454,0.3218713956170703,0.3227012987012987,0.323434217250582,0.3263467434148783,0.3286043748689636,0.332107697781995,0.3351947698174884,0.3390232337600758,0.3423446026469297,0.3434103780805143,0.3465440409595146,0.348274209012464,0.3534522885958107,0.3546027230237756,0.3565145684442001,0.3645395491020252,0.0,2.276970891026405,54.14064142403031,170.93273328800802,261.8855191326212,fqhc2_80Compliance_implementation,54 -100000,95726,44847,424.9942544345319,5770,59.10619894281596,4494,46.28836470760295,1700,17.299375300336376,77.38965647392791,79.75505087893639,63.34469261111818,65.09333556447814,77.17595868363439,79.5469997971115,63.26450475910454,65.01832309444293,0.2136977902935228,208.05108182489107,0.080187852013644,75.01247003520461,178.79246,125.17856245532028,186775.23347888765,130767.56832555449,378.53209,247.39366597981808,394787.6647932641,257794.1374128429,379.98583,184.65623664036917,393049.3282911644,189928.18376102857,3181.53325,1459.0300298561326,3276811.9110795395,1477799.3469723451,1029.83128,460.5517782005937,1058962.319537012,464404.7361849365,1661.68864,701.3239744158719,1692406.911392934,696801.1008940514,0.37801,100000,0,812693,8489.78333994944,0,0.0,0,0.0,32500,338.83166537826713,0,0.0,34659,358.1158723857677,1499050,0,53780,0,0,6994,0,0,64,0.6685748908342561,0,0.0,3,0.0313394480078557,0,0.0,0.0577,0.1526414645115208,0.2946273830155979,0.017,0.3318936877076412,0.6681063122923588,24.567080399311266,4.238304070634467,0.3199821984868713,0.2552291944815309,0.2131731197151758,0.2116154873164219,11.186093292878509,5.891933219536862,18.110449314803684,12069.15655792506,50.910312560232185,13.752716189097814,16.045992926525845,10.720159001569623,10.3914444430389,0.5589675122385402,0.7776809067131648,0.6828929068150209,0.5657620041753654,0.1009463722397476,0.7326332794830371,0.8796296296296297,0.8650793650793651,0.7322175732217573,0.1322751322751322,0.4929361179361179,0.7160839160839161,0.6179245283018868,0.5104311543810849,0.0931758530183727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397617697107,0.0047443812536115,0.007012451922589,0.0095190686145031,0.0116370146581626,0.0137570771048022,0.0159460038131748,0.0179152928206122,0.020065009403876,0.0220998433869366,0.0242112384427725,0.0262509496334928,0.0283426198161893,0.0304181726442391,0.0323256077812503,0.0346634421604191,0.0366772977674688,0.0388230655904384,0.0406502374988307,0.0425857811213804,0.0569680390089064,0.0714061420586573,0.0852927906659531,0.0979946552195778,0.1097513372086889,0.1255843963529436,0.1378205468260957,0.1496498733584488,0.1605224374719665,0.1709401709401709,0.1838169582772543,0.1955367091072336,0.2071215004077194,0.2170879986004198,0.2263260388817374,0.2359643877483223,0.2448226254335389,0.2526324069807949,0.2599101959361393,0.267150244840053,0.2741126141750491,0.279679738180118,0.2858577860764131,0.2915295215981041,0.2971415398801291,0.3027091564811737,0.3074971251437428,0.3122378955394586,0.3159201085902656,0.319916733639873,0.3194377250981025,0.31803697497459,0.3167735042735042,0.3151716181136429,0.3138329383886256,0.3112043962753778,0.3096150510163851,0.3106968994020975,0.3114417563028061,0.3131605078374352,0.314057882116768,0.3154403250181547,0.3166212647382977,0.3178298013979806,0.3189519400563165,0.320114927652525,0.3214831155608348,0.3254323149566903,0.3276115228639351,0.3309173003802281,0.3339093265426766,0.3355326167925934,0.3372107645875251,0.3389218855725133,0.3417066863686738,0.3424673507462686,0.3463737586518206,0.3517707918822125,0.3555555555555555,0.3610586011342155,0.0,2.55579920544996,53.71472135084787,165.4358243167387,242.8228981989554,fqhc2_80Compliance_implementation,55 -100000,95761,45150,427.8881799479955,5810,59.29344931652761,4614,47.59766502020656,1785,18.23289230480049,77.34687979821054,79.70697275343403,63.33382307926016,65.08156780982254,77.12051814863696,79.48283685909783,63.24797843920021,64.99906113737177,0.226361649573576,224.13589433620015,0.0858446400599461,82.50667245077636,178.08142,124.73258329459264,185964.45316987083,130254.05258361196,379.11001,247.29125908570987,395313.5410031224,257659.64127954992,381.76741,185.11778169586796,395364.89802738064,190662.5393601852,3305.40456,1517.6409673193002,3414698.426290452,1547796.8769324657,1089.9129,482.994356256532,1124871.241946095,491086.5657799429,1748.53902,747.2005928034778,1789496.9559632835,749005.6469098494,0.38043,100000,0,809461,8452.929689539584,0,0.0,0,0.0,32375,337.4755902716137,0,0.0,34829,360.4076816240432,1504048,0,53992,0,0,7080,0,0,78,0.8040851703720722,0,0.0,1,0.0104426645502866,0,0.0,0.0581,0.1527219199327077,0.3072289156626506,0.01785,0.3356378600823045,0.6643621399176954,24.07556438010392,4.3231567094920464,0.3207628955353273,0.2403554399653229,0.2171651495448634,0.2217165149544863,11.380628522755933,5.934881507312453,19.081999307999272,12173.098883770635,52.31147023558875,13.398614581513549,16.541049720519098,11.20744658429679,11.16435934925932,0.5717381881231036,0.8043282236248873,0.6966216216216217,0.593812375249501,0.1173020527859237,0.737490377213241,0.928735632183908,0.8925,0.7,0.1538461538461538,0.5067873303167421,0.7240356083086054,0.6240740740740741,0.5621761658031088,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0042793980448626,0.0065583756345177,0.0086181489273046,0.0111194758688044,0.0131056393963463,0.0155061678050769,0.0176092282564311,0.0198523849440821,0.0220543064258508,0.0242574612711073,0.026583019313503,0.0286707389810987,0.0308218472505511,0.0328193696204099,0.0350124564540971,0.0368855429796311,0.0388804746986452,0.0408307519594187,0.0428290275217893,0.0578129403291966,0.0721458607920667,0.0857265683159804,0.0976686497508881,0.1100594460137442,0.1257939401625397,0.1380732291644582,0.1495847820770466,0.1600200571843127,0.1702945902517407,0.1840432055599186,0.1952637779531133,0.2065275257765561,0.2163218943183555,0.2259896937800094,0.2362002567394095,0.2457597823299173,0.2546713736424347,0.2630258872130105,0.2702071114369501,0.2772962401490516,0.2844354470669459,0.2911596193001562,0.2972056055720057,0.3025943596654162,0.3072493016501975,0.3119198338629369,0.3159253653511059,0.3199062868089622,0.3249798963839856,0.3245086565236692,0.3227523415258083,0.3217360720315138,0.3198032512585284,0.3180523833536025,0.3155794109551335,0.3132084420203936,0.3134051731207662,0.3149803787749531,0.3157134964623692,0.3170777314459881,0.3186060737612723,0.3196184659150333,0.3209305443818718,0.3219695148338702,0.3228494553433818,0.3242595445985276,0.3268489862944483,0.3282794526330601,0.330374203821656,0.3316720771798271,0.3347324796769566,0.3384634792481393,0.3426923660646532,0.3477006144107242,0.3489056248529065,0.3488513616309143,0.3518518518518518,0.3537604456824512,0.358320251177394,0.0,2.3107838819349404,56.85788442632416,166.04374711552745,249.14648416474185,fqhc2_80Compliance_implementation,56 -100000,95755,45222,428.0925278053365,5931,60.67568273197222,4634,47.83040050127931,1793,18.31758132734583,77.36211040614715,79.72224341431307,63.32787542470121,65.07483215313506,77.13231143940196,79.49555885215663,63.24179626549015,64.99241546209757,0.2297989667451929,226.68456215643573,0.0860791592110601,82.41669103749416,178.98914,125.36422498755783,186924.0666283745,130921.8578534362,380.88995,247.9038840185064,397204.4697404836,258324.93859273943,383.56817,185.9746288283405,397192.533026996,191570.5365929448,3269.79822,1508.2316429270702,3379165.9025638346,1539658.0707648855,1081.85001,484.8198088451029,1115074.147564096,491837.710769622,1758.50932,743.818870569047,1800126.1970654274,746668.0880130656,0.3813,100000,0,813587,8496.548483107932,0,0.0,0,0.0,32554,339.38697718134824,0,0.0,35118,363.3752806641951,1496787,0,53739,0,0,7076,0,0,68,0.6997023654117279,0,0.0,2,0.0208866377734844,0,0.0,0.05931,0.1555468135326514,0.3023098971505648,0.01793,0.3374737860945314,0.6625262139054686,24.31860149166391,4.226261659393972,0.3120414328873543,0.2563659905049633,0.2162278808804488,0.2153646957272335,11.293911853220823,5.938556842793825,19.17778268062005,12181.148033640058,52.77074872604804,14.347894577790392,16.3001620961368,11.174720191601558,10.947971860519282,0.5731549417350021,0.7971380471380471,0.6991701244813278,0.5858283433133733,0.1112224448897795,0.7452901281085155,0.9279475982532752,0.8686868686868687,0.7297297297297297,0.1448598130841121,0.5040822497732084,0.7150684931506849,0.6352380952380953,0.5356662180349933,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002522719674174,0.0046443709818078,0.0068216424728453,0.0092260483453061,0.0115660444534865,0.0136574734183403,0.0159688373136459,0.0181226006697704,0.0203883395875297,0.0225894978291144,0.0248072032160144,0.0270353555067074,0.0291866422501594,0.0312857452004822,0.0334296625038703,0.0354931091880938,0.0374128879270174,0.0392708182025689,0.0410490426394461,0.0433202091535945,0.0580381841146567,0.0718530297957817,0.0850934412819598,0.0974368143715094,0.1093448381346188,0.1247633452145493,0.1375677654123213,0.1489028713788367,0.160515461714359,0.1709365047023624,0.183986041101202,0.1962857544831766,0.2075350588030505,0.2171111645918568,0.2258984095536844,0.2364712139343172,0.2455023618881704,0.2540957781978576,0.262608498326431,0.2701139552196072,0.2771983841283437,0.2843288645562808,0.290892952245695,0.2960791366906475,0.3017658060285152,0.3075681005793171,0.3119960939456157,0.3157787563316109,0.3203434610303831,0.3246888651330984,0.3233550681683462,0.3212442364599821,0.3200467447623338,0.3191123567909618,0.3183026235690636,0.3159731256026079,0.3133978862097336,0.3135859943610255,0.3144493301973617,0.3152789149549678,0.3161786674634,0.3170410290704535,0.3192949520233625,0.3193702120078389,0.3209051724137931,0.3219692052034378,0.323304219600726,0.3274875738535121,0.3309868971285196,0.3343969116836051,0.3384198645598194,0.3397930780946379,0.3419491789973153,0.3466306062654947,0.3515892873691039,0.3549640796137086,0.3562783661119515,0.360525268603263,0.3705501618122977,0.3741836342681521,0.0,2.1952364523595325,58.23231923655592,166.2363358329407,249.8612891801301,fqhc2_80Compliance_implementation,57 -100000,95759,45435,430.9882099854844,5969,61.19529234849988,4660,48.06858885326706,1820,18.577888240269843,77.32840490063373,79.68738683749773,63.31625382636724,65.0640578424484,77.10001660208447,79.4635772680948,63.23101500804236,64.98342857918772,0.2283882985492624,223.8095694029312,0.085238818324882,80.62926326068975,178.58478,125.16569444284676,186493.76037761464,130708.83618547268,380.77757,248.2416153589349,397063.2107687006,258657.468602361,387.5068,187.81423342310455,401079.7522948234,193295.1434892468,3302.575,1519.236108657958,3407521.068515753,1545201.1911757193,1109.79512,489.88622977831,1145798.504579204,498455.8937576561,1774.32808,747.6290035049578,1813301.7679800333,748559.3981475949,0.38238,100000,0,811749,8476.989108073392,0,0.0,0,0.0,32474,338.51648409026825,0,0.0,35381,365.8768366419866,1497624,0,53771,0,0,7131,0,0,71,0.7414446683862613,0,0.0,0,0.0,0,0.0,0.05969,0.1561012605261781,0.3049086949237728,0.0182,0.3309283309283309,0.669071669071669,24.28418815876227,4.233648211661914,0.323175965665236,0.248068669527897,0.2182403433476394,0.2105150214592274,11.035069519583075,5.816639658102275,19.539359615369733,12170.258456099997,53.13314390954394,13.834149976760164,17.050512893050623,11.442212207236748,10.806268832496402,0.5686695278969958,0.7785467128027682,0.6932270916334662,0.576204523107178,0.1223241590214067,0.744343891402715,0.91156462585034,0.8637469586374696,0.7211895910780669,0.1756097560975609,0.4988002399520096,0.6965034965034965,0.6292237442922375,0.5240641711229946,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.0043611432280573,0.0066198269910246,0.0088721315473891,0.010976378913959,0.0130378096479791,0.0154185022026431,0.0175195001429329,0.0198838659551411,0.0219051323520379,0.024150479216852,0.0264290041378743,0.0284662374791748,0.0305605339595822,0.0325173887019875,0.03459789125491,0.0364795759922154,0.0385397220493673,0.0406031759228466,0.042578898031455,0.0576913040301451,0.072063591674511,0.085165728186899,0.0982855220695672,0.1105374077976817,0.1257689462001902,0.1383351007423117,0.1498568585507061,0.1602512069039176,0.171059403817285,0.1833740831295843,0.1951660193229397,0.2064947780678851,0.2167299132774138,0.2259854046735864,0.2357423713795204,0.2455975895547372,0.2543946521416192,0.2621636962197752,0.2700407920066,0.2771541648344018,0.2837124978068893,0.2900716357823693,0.2956056351549188,0.3010551395507148,0.3068756319514661,0.3115619475129462,0.315417346106808,0.3198589010361955,0.3248200726312314,0.3238929702770102,0.3224669603524229,0.3217528622187129,0.3210534679784452,0.3197127180264977,0.3170821451568393,0.3153749861350995,0.315136762117798,0.315838079113437,0.3164423472214774,0.3171019597556863,0.3190775184614777,0.319469396281596,0.3200688175887032,0.3203680568902556,0.3219712739383847,0.3248356901015733,0.3278056426332288,0.3310744725443622,0.3353359683794466,0.3358868591632292,0.3406541317743719,0.3440404166406786,0.3453063688499849,0.3468095016301816,0.3487690504103165,0.3508479709267111,0.3571717990275527,0.3579092159559835,0.3548387096774194,0.0,2.2831169195631675,58.222721725593615,170.111075156156,249.20347725576477,fqhc2_80Compliance_implementation,58 -100000,95724,45189,428.09535748610585,5881,60.28791107768166,4542,46.79077347373699,1752,17.83251849066065,77.31464774318667,79.6815863611217,63.30648041847581,65.05646622058579,77.09013890857702,79.46061849622664,63.22244576341418,64.97665223704988,0.2245088346096508,220.9678648950586,0.0840346550616288,79.81398353591374,179.25798,125.53661363081248,187265.2208432577,131144.11603235602,377.60114,246.1554095265565,393721.8356942877,256404.41661574916,382.1201,185.3711142563361,395294.4298190631,190599.0812368365,3219.71196,1484.7025588378915,3319389.599264552,1506877.5382316948,1045.91196,471.4242834446288,1076709.8846684217,476572.5962554683,1716.54672,730.9409081201558,1750096.7573440308,727447.8526744428,0.38002,100000,0,814809,8512.05549287535,0,0.0,0,0.0,32263,336.33153650077304,0,0.0,34851,360.1918014291087,1494964,0,53642,0,0,7123,0,0,66,0.6790355605699719,0,0.0,2,0.0208934018636914,0,0.0,0.05881,0.1547550128940582,0.2979085189593606,0.01752,0.336198507946805,0.6638014920531949,24.27401537484888,4.198942474536473,0.3192426243945399,0.2443857331571994,0.2208278291501541,0.2155438132981065,11.074844897550436,5.742414877491879,18.837271017336107,12115.655936868325,51.88437253975794,13.314187507746231,16.67063699923492,11.108858952633865,10.790689080142942,0.571994715984148,0.7972972972972973,0.6986206896551724,0.6041874376869392,0.0960163432073544,0.7241647241647242,0.9182242990654206,0.8390243902439024,0.7631578947368421,0.0950226244343891,0.5118279569892473,0.7214076246334311,0.6432692307692308,0.5574193548387096,0.0963060686015831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002279288861875,0.0046232928795206,0.0070342475486713,0.0093079971547606,0.0113739254285568,0.0133868535800154,0.0157109190887666,0.0178575075044414,0.0199026843579416,0.0218459522542074,0.0239508679113735,0.0261520453425332,0.0284412351622127,0.0305303397182924,0.0325564111562996,0.0348396034281342,0.0370512276196294,0.0389133322264652,0.0412498700218363,0.0431326380713251,0.0576565665003028,0.0716977182332007,0.0853764726864528,0.0973193534478225,0.1093946072486845,0.1251652896933281,0.1379537253237104,0.1488330991014011,0.1597686897406845,0.1695675501663268,0.1816309364620627,0.1948967983097675,0.2057343297239591,0.2153040314715583,0.2245215205503616,0.2344176751415565,0.2449920028633105,0.2542799142889365,0.2624024748083616,0.2701256344886194,0.2769796268596143,0.2837706397290614,0.2899585062240664,0.2960411014812859,0.301293742856448,0.3058865615671181,0.3106457024110563,0.3141581097072183,0.3181765246308924,0.322369288369763,0.3205597416576964,0.3185562048814025,0.3177509633504908,0.3171009724987735,0.3168008078168156,0.3152014203501898,0.3127344083809403,0.3131145657205706,0.3132270793829754,0.3137650016940992,0.3155225333133702,0.3165203669000888,0.3171296779445221,0.3183813534772823,0.3183965091467069,0.3182325895524326,0.3196252100361689,0.3216357763351836,0.3252367804843952,0.3292557403008709,0.3335000227303723,0.3352061910314852,0.3389702170620898,0.3426936283861121,0.3434115098427051,0.3480990169371076,0.3502141982864137,0.3503380454824831,0.3568075117370892,0.3490895001937233,0.0,2.483900308999229,56.26598514417063,168.28559434696015,241.6917497410612,fqhc2_80Compliance_implementation,59 -100000,95825,45491,429.6686668405948,5875,60.17218888599008,4672,48.26506652752413,1827,18.8051134881294,77.3504688262772,79.68208245521471,63.33176974345843,65.05969799562705,77.12415070723576,79.45409922327354,63.24844304898631,64.97755378088277,0.2263181190414371,227.9832319411668,0.0833266944721202,82.14421474427525,179.2087,125.60613973614537,187016.64492564573,131078.67439201186,384.67524,250.6410703905713,400943.7307591965,261069.82560977968,388.98832,188.82815287451683,402386.5483955126,194437.8181899894,3326.76861,1523.1030355165678,3441986.2040177407,1559736.713296705,1079.28536,479.445422892769,1116408.8181581008,490464.5631719069,1792.67878,745.7147702614394,1846600.2191494915,758818.9831597891,0.38341,100000,0,814585,8500.75658752935,0,0.0,0,0.0,32942,343.2507174536916,0,0.0,35483,366.74145577876334,1492078,0,53609,0,0,7101,0,0,60,0.626141403600313,0,0.0,0,0.0,0,0.0,0.05875,0.1532302235205133,0.3109787234042553,0.01827,0.3440598082236307,0.6559401917763692,24.24098733026621,4.273581497045815,0.3195633561643836,0.2517123287671233,0.2084760273972602,0.2202482876712329,11.352938777401535,5.985908227440024,19.353951134205545,12271.782617690573,52.93215255309638,14.190838433073267,16.65910878815489,10.760709410672776,11.321495921195448,0.561429794520548,0.7908163265306123,0.6865371734762223,0.5780287474332649,0.1020408163265306,0.7349491790461298,0.9166666666666666,0.8740554156171285,0.7565217391304347,0.1045454545454545,0.4960212201591512,0.717741935483871,0.6186131386861314,0.5228494623655914,0.1013597033374536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374880969264,0.0044107358324123,0.0066781690855576,0.0090730825112016,0.0113513843399719,0.0136888635391415,0.0159706287287746,0.0180847153010374,0.0206228784098809,0.0229308491580078,0.0249584709091281,0.0270578329088967,0.0290929658576717,0.0313397942263921,0.0335598849021771,0.0359058079581736,0.0377118249293485,0.0397776187364512,0.0417571682445984,0.0441295883736908,0.0588867330120381,0.0734351639849867,0.0865118618492748,0.0995871111437966,0.1121037494337396,0.1277911043949657,0.1404580152671755,0.1516640607549698,0.161959051218002,0.1727544493137181,0.1852553205224764,0.1970425777998767,0.2087397623340792,0.2188415300546448,0.2280337029215065,0.2380799397350113,0.2488366123938443,0.2572769107868177,0.2657076682031835,0.2736560001832466,0.280660950463429,0.2874450369538778,0.2930675499822548,0.2988380450407283,0.3044724979648373,0.3086020842325954,0.3125821843182928,0.3168345836889098,0.3209143804994362,0.3254560585445755,0.3252724428139836,0.3240545421957508,0.3232227755597252,0.3210989265356905,0.3193558460097248,0.3167555310412453,0.3147754998574099,0.3153277476589453,0.3157660966568153,0.3157518837267435,0.3172346713553552,0.3177101826646151,0.3188545150501672,0.3196642632319128,0.3210502294073842,0.3219425864716446,0.3228829442835236,0.3258560731852502,0.3299138141596008,0.3332674285262367,0.3381353628703452,0.3401076858108108,0.3425386686705491,0.3444469645422242,0.3467190863989516,0.3499059708509638,0.3549908703590992,0.3591237942122186,0.3655097613882863,0.3605182926829268,0.0,1.8261911050752209,56.432901265530944,170.51139892376932,255.94090816455957,fqhc2_80Compliance_implementation,60 -100000,95710,45255,428.9624908577997,5892,60.36986730749138,4622,47.64392435482186,1805,18.47246891651865,77.30949638025908,79.67131533437701,63.31695901961641,65.060318243192,77.08122440347977,79.44434934645311,63.23158471057334,64.9776839178414,0.2282719767793111,226.96598792390432,0.0853743090430754,82.63432535059678,179.68016,125.81475941290056,187733.9462961028,131454.14210939355,380.62725,248.3938342270043,397057.4548114095,258897.08786443152,386.59364,187.6445875655157,399584.8187232264,192726.82625401395,3288.39309,1505.0743300463464,3397149.691777244,1534072.7366654277,1091.80175,481.8298171360672,1124533.7373315224,487319.8958084722,1767.57522,747.5513143098,1812609.675060077,752119.059738496,0.37938,100000,0,816728,8533.3611952774,0,0.0,0,0.0,32493,338.8256190575698,0,0.0,35280,364.2984014209592,1490478,0,53589,0,0,7118,0,0,64,0.6686866576115349,0,0.0,1,0.0104482290251802,0,0.0,0.05892,0.1553060256207496,0.3063475899524779,0.01805,0.3490550799547731,0.650944920045227,24.235935355951067,4.338738611790194,0.309822587624405,0.2477282561661618,0.2228472522717438,0.2196019039376893,11.171722734793873,5.819971087480976,19.318251243558464,12117.476968997467,52.604762253051845,13.932586499030558,16.193301413296236,11.419102072139497,11.059772268585574,0.5675032453483341,0.7825327510917031,0.7018156424581006,0.5815533980582525,0.1211822660098522,0.7297939778129953,0.9158878504672896,0.8730569948186528,0.6974789915966386,0.1238095238095238,0.506547619047619,0.702928870292887,0.638623326959847,0.5467171717171717,0.1204968944099378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495812276561,0.0050583894250263,0.0074263452641831,0.0097403916470301,0.0118843084430437,0.0140665872749295,0.015960862253478,0.0179448181530515,0.0202260741588651,0.0222492861602071,0.0241802396498529,0.0263568597654886,0.0286683804627249,0.0307917284560883,0.032713171898849,0.0348803570690581,0.0369684236672427,0.0389836660617059,0.0410002182521123,0.0431141342277684,0.0577553620282772,0.0716311685593176,0.084986103099271,0.0975689259952472,0.1104479500590518,0.126669698475987,0.1390539450787318,0.1504683840749414,0.1617210365527996,0.1713611751460891,0.184200887663205,0.1960656944579774,0.2073498525458957,0.2172937597128286,0.2264529058116232,0.236747001308117,0.24638879268933,0.2551177908719115,0.2637397598027519,0.270743759960559,0.2777372474089514,0.2843200355751115,0.2898320740863551,0.295041451212343,0.2996511444164874,0.3049630516043869,0.3088034648074202,0.3131795381050594,0.3176096960269622,0.3208592200925313,0.3194987725592813,0.3175224213702178,0.3160174381692744,0.3151776290105695,0.3138220331419391,0.3117592038885566,0.3098321114602177,0.3095711959471684,0.3100909262144899,0.3112579224406488,0.3121679214464074,0.3119546247818499,0.3134742237721104,0.3140877598152425,0.3163447609850314,0.3170069448070597,0.3177406887864647,0.3208877695576893,0.3243186288283226,0.3284001424557793,0.33154715952954,0.3332803560076287,0.3355337608449641,0.3414968055978095,0.3442345644206371,0.3469411903916696,0.3449013912245834,0.3500307944980497,0.3507709251101321,0.3444444444444444,0.0,2.525646949672093,54.95079344069101,170.8698749836784,254.02055625783825,fqhc2_80Compliance_implementation,61 -100000,95724,45271,429.4325352053821,5765,58.87760645188249,4512,46.45647904391793,1784,18.17725962141156,77.40440741590693,79.76198007904551,63.3594678928421,65.09933778726993,77.17464469785932,79.53840507054014,63.273291495543496,65.01910706727335,0.2297627180476098,223.57500850537804,0.0861763972986011,80.23071999657816,180.268,126.21887514599364,188320.5883581965,131857.08406041705,378.91882,246.9348266304448,395155.2588692491,257275.52821700383,383.52618,185.8674839301055,396979.7020600895,191243.13066860024,3214.49787,1476.4846125125578,3311185.919936484,1495535.448281051,1101.82499,490.45552757429743,1133614.9241569513,494941.42133791646,1747.36618,740.5265791831702,1782841.7951610882,734398.5021719973,0.38074,100000,0,819400,8560.026743554385,0,0.0,0,0.0,32427,338.0343487526639,0,0.0,34977,361.7483598679537,1494625,0,53593,0,0,7144,0,0,63,0.6476954577744348,0,0.0,0,0.0,0,0.0,0.05765,0.1514156642328098,0.3094535993061578,0.01784,0.3307921776599271,0.6692078223400729,24.20906799210447,4.317665922685024,0.3038563829787234,0.2513297872340425,0.2214095744680851,0.2234042553191489,11.07795687151609,5.692323849030944,19.03030452181135,12131.071948358878,51.34914242068922,13.717229748029432,15.46199554415633,11.177787442142726,10.992129686360723,0.5695921985815603,0.808641975308642,0.7045951859956237,0.5685685685685685,0.1180555555555555,0.743485342019544,0.928406466512702,0.8784530386740331,0.6896551724137931,0.1641791044776119,0.5045676004872107,0.7346647646219686,0.6422200198216056,0.5319426336375489,0.1065675340768277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185881924124,0.0045401570813275,0.0068679367784608,0.0092723302696389,0.0113367157077059,0.0133346905537459,0.0156535031847133,0.0177647623031948,0.0200568088932483,0.021990278843694,0.0239210421129228,0.0259562981741299,0.0280967605966834,0.0297774161319229,0.031945189648768,0.0340510869677579,0.0364421523549148,0.0385896119254349,0.0405940491160973,0.04264183566124,0.0566733140524343,0.0707677494976557,0.0841716581522936,0.0966785477715042,0.1092534418418334,0.1258433620270299,0.1384571313379945,0.1503662535667135,0.1617642345047172,0.1724115741833079,0.1844579675803759,0.1965501195770974,0.2075683083884441,0.2172529551344436,0.2263895612375126,0.2369563291699885,0.2465666313382049,0.2553038394513463,0.2632283232405706,0.2702563515678645,0.277964574162016,0.2839112667834209,0.2907210164608081,0.2961033374359219,0.3013917656891602,0.305932088827715,0.3110364551460579,0.3151488227454465,0.3192297260645511,0.3231564547104785,0.3228364417013283,0.3212674027844455,0.3198191239871364,0.3178315786441605,0.3165356894433838,0.3139164008729226,0.311094973478151,0.3116864002093282,0.3115554799183118,0.3123510369606204,0.3121063157697987,0.3120863053486396,0.3140364458020377,0.313856241218582,0.3152038369304556,0.3164675568048723,0.3164596449435653,0.320301740328033,0.323708312941341,0.3252450205501107,0.3277173913043478,0.3338974087784241,0.3352297592997811,0.339681100279604,0.3442028985507246,0.3467789079855021,0.3522003034901366,0.3528468323977546,0.356220818456468,0.3568918391253416,0.0,2.6029910388741446,53.20257845917573,172.5580095501766,241.11800000673492,fqhc2_80Compliance_implementation,62 -100000,95758,44886,425.70855698740576,5966,61.07061550993129,4662,48.20484972534932,1800,18.47365233192005,77.33232137485312,79.6990668412172,63.31916690730778,65.07130430171976,77.10709217602957,79.47199106432848,63.23534474012511,64.98871872481267,0.2252291988235555,227.07577688872504,0.0838221671826744,82.58557690709267,178.5927,125.08080051333424,186504.20852565844,130621.7762623846,377.37468,245.16869821520132,393639.246851438,255576.649695275,376.37172,182.059935874194,389911.9238079325,187670.1077826502,3335.59862,1525.9023814118248,3454283.8509576223,1564664.5998922095,1118.41136,499.1026812092008,1157339.4285594935,510698.6424149846,1772.98402,747.6713798664848,1823194.552935525,757716.15911148,0.37921,100000,0,811785,8477.464023893566,0,0.0,0,0.0,32299,336.8073685749493,0,0.0,34351,355.542095699576,1503372,0,53919,0,0,7002,0,0,65,0.678794461037198,0,0.0,1,0.0104429917082645,0,0.0,0.05966,0.1573270747079454,0.3017096882333221,0.018,0.3457659676644789,0.654234032335521,24.28111027995236,4.287134414000855,0.3138138138138138,0.2391677391677391,0.2222222222222222,0.2247962247962248,11.03762832912521,5.642873950152401,19.129213037299127,12100.036736641578,52.95993053259009,13.442605421194878,16.37805532791218,11.643990278618285,11.49527950486475,0.5506220506220506,0.7802690582959642,0.6746411483253588,0.5704633204633205,0.1135496183206106,0.7314890154597233,0.9290780141843972,0.868421052631579,0.6967213114754098,0.1772727272727272,0.4858724147975531,0.6893063583815029,0.6155218554861731,0.5315656565656566,0.0966183574879227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0046556918114596,0.0066810169766875,0.0091572485567932,0.0110787824529991,0.0134065463880767,0.0155931304560659,0.017805184330621,0.0200092019835386,0.0223484848484848,0.0241729627769177,0.0260664236948821,0.0282573599728531,0.0303208198156444,0.0324164826775065,0.0342824660224277,0.0363536586628563,0.0384575483442609,0.04036205301936,0.0421370547802541,0.0567861541994613,0.0711565423005294,0.0841365567150873,0.0967046601615074,0.1090385710369261,0.1243521123780913,0.1365845376795908,0.1481583989780711,0.1587913613739773,0.1690865807364831,0.1812923448119863,0.1936580086580086,0.2048481155888241,0.2157928703470756,0.2257461044105995,0.2355963546568926,0.2450707997188096,0.2543404633578252,0.26192880728948,0.2695333524191239,0.2759753783496089,0.2829290542911277,0.2895857484208285,0.2950584007187781,0.2999150072850898,0.3050056055883404,0.3095205333800332,0.3134971586936347,0.3180959283514094,0.3224819693313819,0.3217643972718834,0.3209277386713594,0.3197754579476068,0.3188395343133719,0.3174365290163667,0.3157290997522254,0.3131986446689255,0.3139267908685384,0.3143207814124746,0.3150061566465014,0.3147922333739799,0.3158457184698502,0.3167407531661494,0.3171135681991137,0.317665189751493,0.3181048187433218,0.3191386470956363,0.32318685469655,0.3267316320807628,0.3324182382430174,0.3343191227990354,0.3348437999786757,0.3381627230165759,0.3406106870229007,0.3424798651432852,0.3435813189392162,0.3492303048596438,0.349740932642487,0.3567552902875746,0.3642585551330798,0.0,1.901037034696441,54.09507452745414,179.56448404528425,253.652207433028,fqhc2_80Compliance_implementation,63 -100000,95722,45294,429.6817868410606,5859,60.069785420279565,4593,47.35588474958735,1815,18.55372850546374,77.41699606751023,79.7703750864641,63.36600846061516,65.10063619716334,77.18197664396024,79.53939301555309,63.27890666900202,65.0178598487016,0.2350194235499856,230.9820709110113,0.0871017916131435,82.77634846173498,178.98562,125.45811599121338,186984.601241094,131064.88867488388,383.11099,249.7575096741341,399525.1248406845,260213.4127676492,388.66255,188.29695179804503,402651.5639038048,194033.5175853016,3296.70591,1512.9352995673823,3403618.875493617,1540326.8591135666,1121.51529,497.55964812905125,1158006.727815967,506230.8096054958,1788.07254,754.1106778879998,1830509.18284198,755764.400798594,0.3805,100000,0,813571,8499.300056413364,0,0.0,0,0.0,32713,341.0710181567456,0,0.0,35397,366.3630095484842,1496281,0,53679,0,0,7031,0,0,68,0.699943586636301,0,0.0,0,0.0,0,0.0,0.05859,0.153981603153745,0.3097798259088581,0.01815,0.3390160740379931,0.6609839259620068,24.22680070918572,4.361192738630143,0.3122142390594383,0.245808839538428,0.2127150010886131,0.2292619203135205,11.346437320079596,5.876415746845012,19.435927551474936,12136.691935065215,52.12481956326521,13.483712934363036,16.126594717375134,10.926961204197012,11.58755070733003,0.568691487045504,0.7962798937112489,0.701534170153417,0.5834186284544524,0.1301044634377967,0.7385725741780272,0.94,0.8426395939086294,0.7261410788381742,0.1792452830188679,0.5053795576808129,0.7174211248285323,0.6480769230769231,0.5366847826086957,0.1177170035671819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021255491001842,0.004244800372813,0.0066131126257708,0.0088445252287289,0.0109402960793883,0.013080478022761,0.015350430138215,0.0174527194602925,0.019590610405404,0.0217707118449859,0.0237634111100863,0.0259039174030399,0.0279511086896183,0.0299372830911506,0.0323625597061888,0.034349488477834,0.036536629809086,0.0387276102761961,0.040823537970671,0.0427322825622701,0.0572917210487298,0.071380739128615,0.085043434470603,0.0980406592135292,0.1098571940852616,0.1258130360750055,0.1381519629162114,0.1496663083162141,0.1606541966221918,0.1699353413611554,0.1824867029867137,0.1945066476270838,0.2057902973395931,0.2161557028801101,0.2266410326833287,0.2364863369841796,0.2457618617714916,0.2538660373117554,0.2633924016189926,0.2710192686164126,0.278303086348399,0.2846360556139736,0.2906954753912344,0.2974001723642631,0.301928000291202,0.3068654731709719,0.311832123083076,0.3165440195218668,0.3202130961001345,0.3239039308217553,0.3223993006522762,0.320393019101278,0.3184978746164457,0.3178021215712345,0.3163945871273451,0.3144150897214275,0.3127526528549773,0.3132340912808768,0.3132349687718044,0.3138261951306202,0.3143054286406952,0.3151086208591369,0.3162507303230114,0.3173632725655847,0.3182905819295559,0.3193096288606281,0.319594058283252,0.3219719453903589,0.3249145328961139,0.3270254287403903,0.3311530133525803,0.3357037505267594,0.3390316945345645,0.3403851986654534,0.3422400148961921,0.3443964006076896,0.3531902026005443,0.357926221335992,0.3554835224203133,0.36565201052236,0.0,2.3952097457350856,54.2541218608044,177.6748669040547,241.29830261818236,fqhc2_80Compliance_implementation,64 -100000,95682,45172,427.46807131957945,5920,60.6488158692335,4662,48.00275913965009,1844,18.812315796074497,77.3508434030137,79.74052564487792,63.31502979323547,65.08237845801993,77.12307218056193,79.51872032474965,63.23045076331334,65.0034472960049,0.2277712224517643,221.8053201282686,0.0845790299221249,78.93116201503858,180.4418,126.38619694810768,188584.89580067305,132089.8360695927,383.56694,249.3642185063216,400152.6305888255,259893.5207315082,382.07854,184.94260655161395,394673.2196233357,189635.91308418696,3309.69403,1499.6129483395143,3411347.641144625,1519580.0342170051,1097.04951,485.0723019080767,1126583.6834514327,486988.7668611405,1797.31232,750.2986468245423,1835330.971342572,746267.2360860666,0.38113,100000,0,820190,8572.04071821241,0,0.0,0,0.0,32641,340.39840304341465,0,0.0,34957,360.6634476704082,1489128,0,53412,0,0,7045,0,0,68,0.7106874856294809,0,0.0,0,0.0,0,0.0,0.0592,0.1553275785165166,0.3114864864864864,0.01844,0.3400868306801736,0.6599131693198264,24.800458928662675,4.211936579825239,0.3294723294723294,0.2395967395967396,0.2192192192192192,0.2117117117117117,10.936512794629918,5.760590708257034,19.529045596085,12160.932411490676,52.64684697885711,13.404223209577246,17.259538491513513,11.2738749795477,10.709210298218643,0.5604890604890604,0.7887197851387645,0.6712239583333334,0.576320939334638,0.1134751773049645,0.7398042414355628,0.9204819277108434,0.8367875647668394,0.7316017316017316,0.1701030927835051,0.4965075669383003,0.7108262108262108,0.6156521739130435,0.5309734513274337,0.0996216897856242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0046445122755067,0.0068927712188734,0.0094316611106594,0.0118924087977374,0.0142417636152482,0.0164645156025257,0.0186081663500623,0.0208424949632341,0.0231969849040371,0.025330735309199,0.0272796368192929,0.0295612104256238,0.0314757003472114,0.0336240260075339,0.0356038912034404,0.0376191462909241,0.0394436371185385,0.0417542180706097,0.0436341651552108,0.0576874869438061,0.0712745015915563,0.08504697422978,0.0976664422186684,0.1098111615149277,0.1252539360081259,0.1385898987325648,0.1500212992545261,0.1609992837824836,0.1709790622551807,0.1839016029407009,0.1957472608375557,0.2067100509293518,0.2164072931030708,0.2264570535262126,0.2366454531343548,0.2454340448334375,0.2543907052148068,0.2626181173905142,0.2696103717459335,0.2766413132821635,0.2831854262767228,0.2896183278447724,0.2959209374287873,0.3006732942806446,0.3054939367051168,0.3101045732012408,0.315270058882629,0.3198463309575858,0.3226078811625176,0.3211717171717171,0.3197529675529207,0.3191956433024218,0.3183806018618749,0.3171396813634679,0.3142975029799199,0.3121454867200708,0.3128173212355465,0.3139120500622367,0.3141061029686748,0.3148591075566185,0.3156330571355468,0.3167844265199358,0.3176337100649639,0.3199665031702356,0.3224267565465387,0.3241174809375882,0.3268085902191192,0.3308749347712645,0.3335685444352973,0.3336330126764362,0.3354390397978521,0.3375593305021234,0.3416723523614586,0.3412571643333646,0.347676215380958,0.3531927894897647,0.3587282543491302,0.3553561718325176,0.3539412673879443,0.0,2.8488982384770885,52.97588720006822,177.25005572524404,252.8954226981592,fqhc2_80Compliance_implementation,65 -100000,95730,45203,427.71336049305336,5967,61.28695288833176,4715,48.74125143633135,1809,18.614854277655905,77.26691653433518,79.62806526652109,63.2951211478972,65.03961817061432,77.04084222415526,79.40032742407222,63.21111383562929,64.95675976509084,0.2260743101799249,227.7378424488745,0.0840073122679072,82.85840552348134,179.42936,125.6323959592682,187432.7379087016,131236.18088297106,379.77187,246.7843208948666,396213.8410111773,257294.4331921724,378.56517,183.04621148007672,392182.42975033954,188673.9604704364,3368.86633,1531.3418479575146,3485297.9107907657,1565930.3234087792,1109.80138,491.6944391375242,1144040.133709391,498419.6677522798,1770.55316,744.5456961743103,1822788.0079389955,756049.0940398285,0.38172,100000,0,815588,8519.66990494098,0,0.0,0,0.0,32473,338.68170897315366,0,0.0,34661,358.76945576099445,1493532,0,53695,0,0,7079,0,0,67,0.6998850934921133,0,0.0,0,0.0,0,0.0,0.05967,0.1563187676831185,0.3031674208144796,0.01809,0.3333333333333333,0.6666666666666666,24.461579209120103,4.300066091626536,0.3200424178154825,0.2455991516436903,0.216118769883351,0.2182396606574761,11.24105164606712,5.909732884911505,19.41320052043033,12258.711235762225,53.61644556582683,14.055275363295715,16.914490799119992,11.428209462793518,11.218469940617606,0.56033934252386,0.7849740932642487,0.6752816434724983,0.5799803729146222,0.119533527696793,0.741112828438949,0.9230769230769232,0.8582474226804123,0.7391304347826086,0.1469194312796208,0.4919614147909968,0.6997206703910615,0.6119536128456735,0.5274151436031331,0.1124694376528117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.004521996573016,0.0070321061817591,0.0092745908716896,0.0114923824827614,0.0135929052162137,0.0159233396197563,0.0180684149814722,0.0204655346902057,0.0227337864395676,0.0246635162424528,0.0268880128126155,0.0290811866934032,0.0311882003955174,0.0332820930784388,0.0354964751607368,0.037704391769445,0.0397775610565849,0.0416311511195193,0.0435729393500526,0.0584107758170617,0.072355613238157,0.0859715212121848,0.0988553152091574,0.1107946153521542,0.1259100143909252,0.139052249421456,0.1510452720476256,0.1621454004982838,0.1717723584217079,0.1848238540813246,0.1971243444718935,0.2092281221413947,0.2198992443324937,0.2291290166174461,0.2393944102825937,0.2491390106449593,0.258430131028966,0.2665341360899693,0.2739652227736958,0.2806688653590233,0.2861907548273844,0.2924100536304119,0.2970872855035794,0.3028505439737434,0.3081012408417001,0.3127388934143743,0.3161555807524238,0.3208364683600135,0.3248686630761291,0.3237702702702703,0.3228782542642083,0.3216370962041422,0.3197653364235532,0.3190532227071634,0.3171263591129676,0.3151781884046458,0.3148096281529565,0.3153716911260458,0.3163559519332366,0.3172596460908441,0.318432211786153,0.3201984944699104,0.321843974810067,0.322178256044009,0.3247296096974764,0.3263729977116705,0.3297700749549321,0.3317010857994464,0.3340575336954335,0.33826978797774,0.3418863062966343,0.3428390367553866,0.3452171921520727,0.3497740963855422,0.3518693800283956,0.3540998625744389,0.3584142394822006,0.3606152156001098,0.3576388888888889,0.0,2.025121498938221,57.06656588588438,173.90092788789076,257.1675336212894,fqhc2_80Compliance_implementation,66 -100000,95700,45597,431.8704284221525,5983,61.20167189132706,4669,48.18181818181818,1799,18.44305120167189,77.288290147924,79.65923442466239,63.294707477804174,65.04469047174443,77.06673718255453,79.4384451825988,63.21223046376072,64.96493498917644,0.2215529653694687,220.78924206358863,0.0824770140434552,79.75548256798959,178.5729,125.15257263749704,186596.5517241379,130775.93797021634,383.57799,250.4818658392946,400199.6133751306,261123.7227925881,386.75368,188.0700990287188,400532.8840125392,193662.3562792083,3335.91284,1524.650865331382,3444340.815047022,1551725.1073179657,1098.34787,489.7697916897415,1125658.2131661442,489758.4001396408,1768.51016,738.3833408876219,1814219.791013584,741808.8235587128,0.38329,100000,0,811695,8481.661442006269,0,0.0,0,0.0,32874,342.88401253918494,0,0.0,35252,364.7753396029258,1489524,0,53526,0,0,7206,0,0,74,0.7628004179728317,0,0.0,0,0.0,0,0.0,0.05983,0.1560959064937775,0.3006852749456794,0.01799,0.3307839388145315,0.6692160611854685,24.33137834045734,4.3257164661545175,0.3169843649603769,0.2495180980938102,0.207967444849004,0.2255300920968087,11.071805416626209,5.67953239311514,19.04102269423438,12287.40884057549,52.98936801130792,14.055863614042517,16.829929941670237,10.736339781288912,11.367234674306268,0.5639323195545085,0.7854077253218884,0.702027027027027,0.583934088568486,0.1063627730294397,0.7618683001531393,0.9288888888888888,0.8710462287104623,0.7956521739130434,0.1674418604651162,0.4870651204281891,0.6951048951048951,0.637043966323667,0.5182186234817814,0.0906921241050119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025623107384113,0.0048053040824809,0.0069001907699801,0.0092951908815701,0.0115836791147994,0.0138276532700668,0.0159968189881935,0.0178124840504261,0.0199327397806376,0.0219618277644169,0.0245864677065611,0.0265956354827451,0.0289630071353663,0.0310086301003068,0.0328822510108094,0.0351684011450657,0.0371597486100038,0.0394553869782694,0.0416974361641271,0.0438036080916301,0.0584334203655352,0.0723042936563609,0.085847719997901,0.0988771612278615,0.1113151977705291,0.1272473159265612,0.1393407806991462,0.1514334721881891,0.1622647562018819,0.17346719639214,0.186650132096835,0.1980717148737948,0.2097880774508309,0.220382960554406,0.2302515640144506,0.2404606832580691,0.2503661795453783,0.2587017555728444,0.2665771781541857,0.2742002158785568,0.2802779002064534,0.2869136960600375,0.2938314962685239,0.2987602710105232,0.3042604746307548,0.3092849730691308,0.3135677256580516,0.317442097745128,0.3218023633294377,0.3262644035507812,0.3249777514090774,0.3237772170051986,0.3225742658172418,0.3210679569456315,0.3188531064184909,0.3180555768670114,0.3163635787103832,0.3158543601545163,0.3153571000701706,0.3160087248802117,0.3171079544388358,0.3190812231908122,0.3194985955644992,0.3199446910055978,0.3217133143390715,0.3241036011511239,0.3241823756529639,0.3282425990968389,0.3315238328722025,0.335486939632962,0.3373010443745154,0.340987614947111,0.346409741400954,0.3484193768478508,0.3506999165662371,0.3537796471550414,0.3581101414384592,0.3608617594254937,0.3615363953800698,0.3668661181750187,0.0,2.353569040715509,57.19529053833779,168.64136697556316,253.46780586687527,fqhc2_80Compliance_implementation,67 -100000,95824,45047,427.2520454165971,5752,58.77441976957756,4483,46.14710302220738,1784,18.21046919352145,77.36488025655099,79.67932886833238,63.35773544642036,65.07101997793669,77.13892319109074,79.45680307668117,63.27373420064382,64.99094320278138,0.2259570654602498,222.52579165120775,0.084001245776534,80.07677515530531,180.17208,126.17382894090598,188023.96059442312,131672.4713442415,377.59912,246.3088926996332,393383.1086157956,256387.14903135883,379.05015,184.3989671199634,391934.1814159292,189583.17995936784,3180.12192,1448.7759903562107,3275553.493905493,1469605.042293262,1041.95137,462.1094212409783,1070087.044999165,465470.8988632484,1749.03152,734.1694360972596,1786821.8191684757,734285.8815372867,0.37851,100000,0,818964,8546.543663382869,0,0.0,0,0.0,32261,335.9701118717649,0,0.0,34526,356.59125062614794,1495735,0,53686,0,0,7016,0,0,73,0.7618133244281182,0,0.0,0,0.0,0,0.0,0.05752,0.151964280996539,0.3101529902642559,0.01784,0.3332779531483635,0.6667220468516365,24.379833483148364,4.293235290214762,0.319875083649342,0.2451483381664064,0.2105732768235556,0.2244033013606959,11.060189405026785,5.765992594083885,19.0214957468586,12113.1350139393,50.75969464239741,13.166665505992905,16.13540230718013,10.497276852849485,10.96034997637488,0.5583314744590676,0.7816196542311192,0.694560669456067,0.5752118644067796,0.1043737574552683,0.7296631059983566,0.9055690072639224,0.8586387434554974,0.7488584474885844,0.1083743842364532,0.494488671157379,0.706997084548105,0.6349809885931559,0.5227586206896552,0.1033623910336239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044202927937061,0.0066665313742998,0.0090704099459635,0.0111855685827884,0.0133486742964199,0.015749556565883,0.0179165730853257,0.0201790971540726,0.0221915144070832,0.0240235315821299,0.0260360009031013,0.0281403523196776,0.0301770275833676,0.0322015379223617,0.0343563855595817,0.036243651672028,0.0383467683444888,0.0402039269434839,0.0421361465713661,0.0573136134173307,0.071066467372558,0.0849073404779115,0.0977443609022556,0.1100134804954082,0.1253708963813184,0.1385545997711767,0.149879343885871,0.1599901853056957,0.1710937834711452,0.1842464795550631,0.1962857266398582,0.2080350255847556,0.2175698403337483,0.2269000835201547,0.2367597456455626,0.2463069004701321,0.2544725582022169,0.2622132131451996,0.2686956223490002,0.2753360432352533,0.2822709605126469,0.288532879657853,0.2948921869954674,0.3001601825109822,0.3039272396096144,0.3079085808539618,0.3115528739282311,0.3154975825425963,0.3198067123991099,0.3194968891516723,0.3179769723283229,0.3174837774305702,0.3164509418698717,0.3162878506340028,0.3136548892225661,0.3115647983768704,0.3128956411647676,0.3141306580839553,0.3148124966469357,0.3154738405429286,0.3163668101481761,0.3173882901619714,0.3186138258764458,0.3197895141525301,0.32057964970809,0.321231591516461,0.3268698931489629,0.3315891132572432,0.334581225855271,0.3372716032422036,0.3416653314105645,0.3466234261732163,0.3482342078941294,0.3506703432537796,0.3540823613425375,0.3576597382602001,0.361354825545807,0.3605835397742912,0.3582434514637904,0.0,2.324907143337064,52.95605364008525,165.19210886437804,245.5041316177413,fqhc2_80Compliance_implementation,68 -100000,95641,45458,431.1540029903493,5840,59.953367279723125,4593,47.47963739400466,1730,17.732980625463973,77.2563444549925,79.66766400158184,63.27473565930678,65.0561322574331,77.03824061683308,79.45079403072637,63.19361841136271,64.9779381736758,0.218103838159422,216.86997085546977,0.0811172479440642,78.1940837573103,178.6796,125.23713039529451,186823.2243493899,130945.02399106506,382.85827,249.73181782780264,399766.7736640144,260573.58755859616,383.58159,185.8421872936894,397871.4358904654,191806.21040843416,3237.17492,1477.549126330924,3346643.1446764464,1506880.6810364586,1071.66816,475.6231672817522,1106804.163486371,483634.8510031232,1689.86486,708.4761298136045,1733841.51148566,712128.5503557132,0.38252,100000,0,812180,8491.964743154087,0,0.0,0,0.0,32678,341.1089386351041,0,0.0,34975,362.4700703673111,1491613,0,53556,0,0,7125,0,0,67,0.7005363808408527,0,0.0,1,0.0104557668782216,0,0.0,0.0584,0.1526717557251908,0.2962328767123288,0.0173,0.3338223308883455,0.6661776691116544,24.29438539462493,4.22211264601948,0.3261484868277814,0.2466797300239495,0.2218593511865882,0.2053124319616808,11.165844665154486,5.901001296444913,18.38285219707674,12232.274973915552,52.342628993927896,13.7431452336221,17.08906501664955,11.255217319188654,10.255201424467574,0.5736991073372524,0.7837599293909974,0.6835781041388518,0.6045142296368989,0.1134676564156945,0.7402912621359223,0.9086651053864168,0.8530183727034121,0.7510548523206751,0.1256544502617801,0.5123622281799225,0.7082152974504249,0.6257833482542524,0.5601023017902813,0.1103723404255319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990834050741,0.0047231484953832,0.0069414140594079,0.0091940710940436,0.011364330043748,0.0138035716104846,0.0159437734617267,0.01794106829049,0.0204570095943375,0.0225582395967791,0.0246778033163684,0.0265651333908825,0.0286299621149728,0.0309406961398878,0.033076462202756,0.0350779164338486,0.0373395807849397,0.0395462619589267,0.0414667901478652,0.043308195387552,0.0579505669645189,0.0720444188361007,0.0863288959811867,0.0987294335610598,0.1113092662748119,0.1268400055028202,0.1395973296823426,0.1513157194125853,0.1622219609435959,0.1727120535714285,0.1857885204191642,0.1969079759918528,0.2081822043590497,0.2184185149469623,0.2279916179552222,0.238499622574486,0.2488339056610105,0.2578474578181531,0.2658414885031995,0.2723049393195531,0.2796429399489914,0.2859738585077076,0.2920719267447929,0.2972791320107058,0.3024136126291702,0.3072791257640304,0.312811062218712,0.3173395524290156,0.3215819033166012,0.3255651117012141,0.3241799741044454,0.3224009047527101,0.3214033402096815,0.3204888444309137,0.3188230732522071,0.3153305550002306,0.3138011528750417,0.3142607807946256,0.3140854988578397,0.3150999605182872,0.316486455939419,0.3175905145875951,0.3195265028069216,0.3201001990561606,0.3213289068514242,0.32191066868192,0.3222181019482557,0.3240592285202301,0.3255350398657154,0.3290368495967104,0.3317002358918526,0.3337219160661297,0.3368341613734985,0.3396069538926681,0.3413488114980652,0.3451420554191511,0.3488093455144526,0.3509366281387007,0.3464439655172414,0.3456221198156682,0.0,2.1070285707460576,54.16610048626113,176.31437028804623,248.10331949852417,fqhc2_80Compliance_implementation,69 -100000,95685,45226,427.966765950776,5751,58.62987929142498,4551,46.87255055651356,1809,18.46684433296755,77.32722884548278,79.70391520155853,63.32110870231941,65.07574570497529,77.09923785804722,79.47885742409656,63.23550332990567,64.99398088222048,0.227990987435561,225.05777746197,0.0856053724137453,81.76482275480623,180.63848,126.56459240647705,188784.5325808643,132272.13503315777,385.74821,251.64281011789373,402485.352981136,262332.35106640944,383.38741,186.0744741303704,396078.4867011548,190929.99816991945,3248.34027,1494.5736743125433,3351980.0700214244,1519125.813149963,1072.17589,480.8972828990335,1106187.417045514,488244.5763693727,1766.26352,742.7283810186515,1806112.3687098287,742442.587550844,0.38038,100000,0,821084,8581.115117312012,0,0.0,0,0.0,33040,344.5890160422219,0,0.0,35081,362.0630192820191,1483484,0,53272,0,0,7280,0,0,66,0.6897632857814704,0,0.0,0,0.0,0,0.0,0.05751,0.151190914348809,0.3145539906103286,0.01809,0.3350430178689609,0.664956982131039,24.268590514789764,4.1899407669037565,0.3126785321907273,0.2467589540760272,0.2225884421006372,0.2179740716326082,11.082416094203673,5.815294309272336,19.093300936465614,12134.17936602202,51.74481792976199,13.556880452381565,16.161570274854114,11.274301523320702,10.752065679205607,0.5658097121511756,0.8058771148708815,0.6865776528460998,0.5765054294175715,0.1098790322580645,0.7244897959183674,0.9189814814814816,0.8630490956072352,0.664,0.1268292682926829,0.5041196216051267,0.7351664254703328,0.6206563706563707,0.5478374836173001,0.1054637865311308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880515115313,0.0044187248533003,0.0068986507050826,0.0090293224453314,0.0114092799544442,0.0138169081486157,0.0161014010972202,0.0182815356489945,0.0205346368600822,0.0227442627315644,0.0250743513485796,0.0272171724952498,0.0296332105901956,0.0314576871953921,0.0337678153090394,0.0356566701137538,0.0376160285098624,0.0397001723386142,0.04176244812199,0.0436844628822781,0.0585869769579477,0.0726545819902038,0.0859513494802429,0.0989479221462388,0.1110853285518405,0.1269478561680789,0.1392624038206421,0.1505154200034077,0.161053531360188,0.1709528254315662,0.1832412225418269,0.1953445569209116,0.2061226487962489,0.2162398678582758,0.2257602941014606,0.2359498271429837,0.2457859837913866,0.2545315435939557,0.2623830927086171,0.2697621666208413,0.2763787094607894,0.2824855450736206,0.2877557302519417,0.2937517229806666,0.2994359896922254,0.305007400098668,0.3089515411881113,0.3131956294730407,0.3182996371176775,0.3221001478977393,0.3203219804222959,0.3185577650863552,0.3175426236437931,0.315870036101083,0.3145613174596097,0.312388783211634,0.3101744047901915,0.3107149294574532,0.3110463133483391,0.3123264259773552,0.3141901362387636,0.3153567062349647,0.3164829648840273,0.3172533875036274,0.3184463684463684,0.3195585818267198,0.3199041314768318,0.324833947177889,0.3289759585056424,0.3322610111600937,0.3347800264973274,0.3398146175154485,0.3419957108616122,0.3444877377950951,0.3468596292092319,0.3501304244723737,0.3540039810136273,0.3589379813538711,0.3596370635138851,0.358758144883097,0.0,2.693036328835373,55.23393188038812,166.0577757787106,246.44186762742348,fqhc2_80Compliance_implementation,70 -100000,95778,44888,424.1161853452776,5967,61.02654054166927,4694,48.43492242477395,1883,19.24241475077784,77.38146625236273,79.70420512209708,63.35451413110488,65.06768897708872,77.14689846118165,79.47322086589485,63.26846050709228,64.9858580668418,0.2345677911810781,230.98425620223395,0.0860536240125995,81.83091024692146,177.66474,124.4866347497814,185496.1682223475,129973.91337236251,379.37086,247.06497419333903,395491.4907390006,257353.41539115357,380.71917,184.36544318929705,394239.491323686,189924.03832579768,3361.9854,1528.380173792916,3471425.922445656,1556993.3531634784,1123.64353,499.7680499688357,1157904.4352565303,506627.0867052498,1841.50664,763.3717614720791,1884089.95802794,763807.554593988,0.37874,100000,0,807567,8431.644010106704,0,0.0,0,0.0,32378,337.4261312618764,0,0.0,34724,359.27874877320465,1504674,0,53999,0,0,7079,0,0,85,0.8874689385871494,0,0.0,0,0.0,0,0.0,0.05967,0.1575487141574695,0.3155689626277861,0.01883,0.3465536542459619,0.653446345754038,24.29019429167483,4.301441836575741,0.3065615679590967,0.2449936088623775,0.2243289305496378,0.2241158926288879,11.302172252677211,5.8171682681719865,19.80623162469547,12073.338093812206,53.11030390376757,13.673536055925505,16.428482372089093,11.626484045564464,11.381801430188526,0.568172134639966,0.7930434782608695,0.7102154273801251,0.5859449192782527,0.1102661596958174,0.7569279493269992,0.937046004842615,0.8784810126582279,0.7654320987654321,0.1698113207547169,0.4986884290294375,0.7123473541383989,0.646551724137931,0.5320987654320988,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025717352125225,0.0047326604240139,0.0071819113216542,0.0092412056219026,0.011184886168363,0.0135594600647433,0.0156861545988258,0.0178267125174746,0.0203923171230077,0.0226816991324275,0.024833012334549,0.0271884105552591,0.0293501048218029,0.0315411300865734,0.0336608348711815,0.0357836252478519,0.0379258247444016,0.0398946648143156,0.0415532608921485,0.0435955102975781,0.0575337605142869,0.0713822329182797,0.0840272679601468,0.096816920359936,0.1089828060595199,0.124176370424427,0.1361625847237396,0.1478083154152385,0.1587542321289344,0.1690805201487977,0.1824210129716346,0.1939983779399837,0.2046779174459571,0.2145068311838895,0.2236404850458856,0.2344624317166949,0.2438937262781871,0.2526161809384494,0.2603635620451217,0.2677570575492567,0.2746725952686977,0.2815613548288902,0.2879098239340729,0.2923736937973348,0.2969152295360699,0.3035342523128472,0.3091939074106495,0.3133946960258333,0.3176296910206936,0.3212204319506342,0.320507473529847,0.3188720471629402,0.3173838985317511,0.3165411468798335,0.3158802366723159,0.3138804644180988,0.3113226944185237,0.311210527178277,0.3118956254796623,0.3126858363749666,0.3132791327913279,0.3139310344827586,0.3141202542231142,0.3144683609378841,0.3166146458583433,0.3181226910869452,0.31865196635599,0.3226392631117238,0.3268665079142737,0.3306067344345616,0.3345773974784943,0.3372837416009735,0.3402834134465322,0.3451688449044345,0.348235294117647,0.3500532355376789,0.3490809661248671,0.3534152730203506,0.3592552026286966,0.352963671128107,0.0,2.149520509548966,55.30818179409381,175.48160886114917,254.95412869557012,fqhc2_80Compliance_implementation,71 -100000,95752,45022,426.9466956303785,5820,59.49745175035509,4498,46.348901328431786,1733,17.701980115297854,77.31912755708531,79.66852090207158,63.32066847763053,65.05818895019283,77.10388522547811,79.4560669633234,63.23945838367055,64.98073758554094,0.2152423316072003,212.4539387481832,0.0812100939599815,77.45136465189262,178.90268,125.26011476905938,186838.938090066,130816.56192148404,376.44456,246.1405866570242,392538.42217394937,256454.4337204697,380.34799,184.71672816179012,392975.7080792046,189747.41662568017,3173.55752,1451.7063792855492,3274764.965744841,1476721.7400946843,1056.06103,470.5596864356612,1090289.0174617765,478917.5502228824,1699.49474,715.403390239693,1738791.2524020388,716690.5717337454,0.37968,100000,0,813194,8492.67900409391,0,0.0,0,0.0,32172,335.3559194586014,0,0.0,34610,357.29801988470217,1498122,0,53829,0,0,7170,0,0,80,0.8250480407719943,0,0.0,1,0.0104436460857214,0,0.0,0.0582,0.1532869785082174,0.297766323024055,0.01733,0.3428384136348738,0.6571615863651262,24.17163728877121,4.311921665388317,0.3128056914184082,0.262338817252112,0.203201422854602,0.2216540684748777,11.118515987898634,5.71304422288323,18.34124397036075,12125.816732342562,51.06487277108884,14.336050226862415,15.847481927490763,10.07692014767447,10.804420469061176,0.5598043574922188,0.7805084745762711,0.7029140014214641,0.5536105032822757,0.1023069207622868,0.7391646966115051,0.9098712446351932,0.862533692722372,0.7534246575342466,0.136150234741784,0.4893155775781976,0.696078431372549,0.6457528957528957,0.4906474820143885,0.0931122448979591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050835957832,0.0043575634126815,0.0063714946633659,0.0086026529078388,0.0106883892160152,0.0129133441284001,0.0149579403517716,0.0171139157782951,0.0193247581849041,0.0213959583137118,0.0235510032501819,0.0255362405150373,0.0276440824386029,0.0294726649016719,0.0316133758421807,0.0337742868954113,0.0357982131950267,0.0379029915771129,0.0400270171974853,0.0422976773252786,0.0566707376903725,0.071477886104021,0.085030731471964,0.0980357105301899,0.1101752092601573,0.1250938388826036,0.1380224628535672,0.1486774063118469,0.1597454324125191,0.1694324735747518,0.1824564426162427,0.1943139758879677,0.2065957493093171,0.2164508791881725,0.2263229128841646,0.2357345383661173,0.2449906790350847,0.2549253462650629,0.2633628077503717,0.2705460625773054,0.2771931043265835,0.2836539024361691,0.2890789754282871,0.2950115229498751,0.2997859193305113,0.3051924809617259,0.3106425098982609,0.3153784413896781,0.3191831442463533,0.3237690306735505,0.3228870535293245,0.3216989182196041,0.3207906275112433,0.3196308724832215,0.3187815750371471,0.3162135253120931,0.3148544012160942,0.3144137048341046,0.3147361416798894,0.315005359056806,0.3156483755460152,0.3158341727400209,0.3166369640423524,0.3190679768113347,0.3205569048019814,0.3208978570311278,0.3220865009538453,0.3255938000062753,0.3287637613070612,0.3320690608826202,0.3354344277163069,0.3382454280413464,0.3396463852010319,0.3433381579949722,0.3486229908826017,0.3525205158264947,0.3548778637536034,0.3558912386706949,0.3598795840175151,0.3642559636501325,0.0,2.439265815392543,55.44851955668516,162.43674072178857,242.0802792747515,fqhc2_80Compliance_implementation,72 -100000,95681,45052,427.0126775430859,5959,61.01524858644872,4673,48.24364293851444,1824,18.666192870057795,77.34181859432726,79.72273120144921,63.3271521787835,65.08480519107698,77.11785641553861,79.5032521429889,63.24406608334335,65.00664884948523,0.2239621787886534,219.47905846030835,0.0830860954401515,78.15634159175033,178.77112,125.20210239660916,186840.77298523215,130853.6725124206,379.53995,246.92911352736647,396071.4561929745,257477.7669537285,384.10371,186.48747930987923,397627.585414032,192003.67157212857,3334.14469,1519.262161904168,3441603.599460708,1545047.0038315654,1110.65755,492.8598824213452,1143947.481736186,498361.3393719972,1788.0718,743.7955970540723,1830999.278853691,743253.6842747784,0.38047,100000,0,812596,8492.762408419645,0,0.0,0,0.0,32405,338.0608480262539,0,0.0,35061,362.6843364931387,1500546,0,53818,0,0,6948,0,0,78,0.8152088711447414,0,0.0,2,0.0209027915678138,0,0.0,0.05959,0.1566220726995558,0.3060916261117637,0.01824,0.3403950302644154,0.6596049697355846,24.277390199825955,4.28379164844239,0.3145730793922534,0.2512304729295955,0.2142092873956773,0.2199871602824737,11.400590139048784,5.916668988387294,19.279154976739893,12126.600058216913,52.99000235374584,14.252483969182904,16.426718077000274,11.05412729538718,11.256673012175504,0.5758613310507169,0.8160136286201022,0.6945578231292517,0.5954045954045954,0.11284046692607,0.7400635930047694,0.9252747252747252,0.8767123287671232,0.726027397260274,0.1415525114155251,0.5153733528550513,0.7468706536856745,0.6343891402714932,0.5588235294117647,0.1050679851668726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999756964486,0.0045004409215767,0.0065846210038249,0.0088866770937011,0.0109814129417985,0.0129917732345035,0.0150342985862662,0.0171391239549625,0.0192765666043193,0.0213330057631872,0.0234086621277991,0.0253676772656314,0.0274997170810999,0.0298315214591169,0.0318525246686759,0.0340922020293962,0.0362490803013502,0.0384371787816805,0.0408751378456544,0.0429112063303412,0.0573843276955381,0.0713702330841239,0.0847258376018137,0.0975566125094705,0.1098897621182551,0.1252948580978876,0.1375834297174266,0.1487225888865233,0.1592426784054363,0.1696035006059566,0.1819738514226635,0.193605261165374,0.2055880625584582,0.2153398779981196,0.2253412678333755,0.236226924908364,0.2454076735932861,0.2538715010290264,0.2625028363966417,0.2699543148951762,0.2774315151655315,0.2838101696500602,0.2902150003547861,0.2965225620201003,0.3008305809209248,0.3059833904236181,0.3102037240965061,0.314825888370081,0.318920739368661,0.3229666965746556,0.3215675188131874,0.3209820507530431,0.3195002042569975,0.3186905226068246,0.3184483603271923,0.3155379950381328,0.3139062376472448,0.3150042625745951,0.3151075452372823,0.3159461097052429,0.3169000933706816,0.3174634453947109,0.3183423543917577,0.318773587012349,0.3199731034317139,0.3208211602671118,0.3228362164780985,0.3256391710431146,0.32945109078114,0.332684206342898,0.3372140802629776,0.3406698564593301,0.3436559679037111,0.3495706360665704,0.3505414488424197,0.3521527695409797,0.3538673188627331,0.3629421221864952,0.3604298704877376,0.3524464831804281,0.0,2.2857391705590384,54.96489472136116,176.74773657625852,252.32905247388808,fqhc2_80Compliance_implementation,73 -100000,95666,45373,431.1981268162148,5794,59.16417536010704,4558,46.92367194196476,1796,18.36598164447139,77.38307130315455,79.75925130272948,63.34642469116329,65.09726405711027,77.14986810457383,79.52803438133661,63.258661587706506,65.01276511391237,0.2332031985807248,231.2169213928712,0.0877631034567869,84.49894319790019,178.86528,125.30533686136808,186968.494553969,130982.10112408597,380.82344,248.92334723406225,397398.3442393327,259525.1085208149,381.78305,184.8710963626823,393993.1846214956,189393.98102303545,3289.69486,1515.4504665603215,3391769.3015282336,1537570.681370675,1089.38497,484.72664345041534,1123009.240482512,491110.9417893737,1765.53022,755.9119103047792,1807812.3471243705,759556.421900088,0.38169,100000,0,813024,8498.56793427132,0,0.0,0,0.0,32531,339.3159534212782,0,0.0,34847,359.0930947253988,1496141,0,53735,0,0,7213,0,0,73,0.7630715196621579,0,0.0,0,0.0,0,0.0,0.05794,0.151798579999476,0.309975837072834,0.01796,0.3414714615638403,0.6585285384361597,24.040756685080343,4.35560918369756,0.3012286090390522,0.2492321193505923,0.2187362878455463,0.2308029837648091,10.9801078099841,5.446726214270025,19.1861198128263,12127.05777303523,51.93414091972683,13.720378586651584,15.541279146647966,11.12265974565234,11.549823440774956,0.54870557261957,0.7790492957746479,0.6817188638018936,0.5646940822467402,0.1112167300380228,0.710236220472441,0.9044289044289044,0.8449197860962567,0.7148936170212766,0.1293103448275862,0.4863138686131387,0.7029702970297029,0.6206206206206206,0.5183727034120735,0.1060975609756097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890750432766,0.0047210909164589,0.007038468169694,0.0092509850115764,0.0115499974581871,0.0138644298991215,0.0161267304124447,0.0181691981055038,0.0202183334696213,0.0220097457106588,0.0239501312335958,0.0259593563558321,0.0281491689978607,0.0303551563594413,0.0324138073328243,0.0343234528091281,0.0362781253884722,0.038163739776643,0.0401730467246955,0.0421877605469401,0.0572473230608513,0.0713904331166179,0.0846333812436396,0.0976761303890641,0.1104152168870331,0.1255722487127707,0.1374218170253366,0.1492294438594812,0.1595398422743231,0.1698117251208195,0.1820754513956141,0.1940458295935029,0.2044550257647903,0.2160519469161984,0.2256300810772158,0.2366604239851948,0.2460459297649897,0.2552237629115649,0.263821378276473,0.2704734833289396,0.2763770229909009,0.2836083041579336,0.2898662338123955,0.2952104359931354,0.3004718816890445,0.3052296532070024,0.3102161444636461,0.3145014451787056,0.3196868965695994,0.3239481260399884,0.323099493916227,0.3209223027319849,0.3196059113300493,0.3182566502036218,0.3171332719769617,0.3143272838655333,0.3119588444796201,0.3122087298982606,0.3132167700695619,0.3141872589630053,0.3155064236629817,0.3163283388135226,0.3172829968052452,0.3181312074110364,0.3196213877668092,0.320715635761075,0.3220971664498614,0.3254718452659491,0.3285853931015221,0.3312204724409449,0.3342837746096402,0.3363464368299348,0.3402782109662529,0.3377951571664912,0.3381414701803051,0.3396094839609484,0.3432746793915896,0.3425004876145894,0.3383097840575846,0.349171270718232,0.0,2.81592531392226,55.07103200737857,171.04794914365522,242.25334285228865,fqhc2_80Compliance_implementation,74 -100000,95694,44982,425.7424707923172,5892,60.3590611741593,4624,47.73549020837252,1857,19.01895625640061,77.3960056150407,79.78036411885567,63.35197710932333,65.11319558670245,77.15844600378658,79.5437574850315,63.26412104287458,65.02775830463898,0.2375596112541274,236.60663382416655,0.0878560664487508,85.43728206346657,181.01292,126.6708310447353,189158.06633644743,132370.7139891062,380.69771,248.04398814452395,397254.8331138838,258632.0126073985,379.92033,184.20466957729533,393140.9074759128,189495.31741403876,3313.58952,1526.1900184735591,3424202.844483457,1556543.445772556,1097.708,492.0893504050873,1130786.4233912262,497984.2328393567,1821.57572,768.428061252841,1868242.5648421007,774170.9109015509,0.37894,100000,0,822786,8598.093924383973,0,0.0,0,0.0,32558,339.61376888833155,0,0.0,34732,359.02982423140423,1492966,0,53461,0,0,7155,0,0,72,0.7523982694839801,0,0.0,1,0.0104499759650552,0,0.0,0.05892,0.1554863566791576,0.315173116089613,0.01857,0.3299220272904483,0.6700779727095516,24.395700175253054,4.376125807590193,0.317257785467128,0.2355103806228373,0.2244809688581314,0.2227508650519031,11.28380467291244,5.864279111624647,19.792439566762507,12076.850564438117,52.568401686391546,13.062326339353312,16.767251275248405,11.45565181258944,11.283172259200398,0.5661764705882353,0.8117539026629935,0.7014314928425358,0.571290944123314,0.1087378640776699,0.7273419649657273,0.9264705882352942,0.8613861386138614,0.7537878787878788,0.1265822784810126,0.5022651766837813,0.7430249632892805,0.6406396989651929,0.5090439276485789,0.1034047919293821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019348237892156,0.004562876437306,0.0070745620267554,0.0092456184912369,0.0115252375236506,0.0137966847228444,0.0159058698777491,0.0180910473818007,0.0201701118403565,0.0225081373211324,0.0246975599753947,0.0271260921794305,0.0293724417384865,0.0317563322105826,0.0337594535755924,0.0355274854768352,0.0375372886973815,0.0392966868720418,0.0414526092472805,0.0434691984617469,0.0582496892723227,0.0715788151822434,0.0850184594730659,0.0977994595901717,0.1095897630491609,0.1251057529610829,0.1367991088005941,0.1480326193416514,0.1597175485263169,0.1692461147398564,0.1818054538405204,0.1940679524484299,0.2053229873065553,0.2151976215459951,0.2243991468214702,0.2341344078284645,0.2439807741633304,0.2531201905254052,0.2616927260367097,0.2693587295780122,0.2755845505455805,0.2823736807695899,0.2889235348309829,0.2934336607132176,0.2985391283263623,0.3031122474064605,0.3076299308864991,0.3127322064846632,0.3164047379422466,0.3206207259337191,0.3196404614971827,0.3177194714042879,0.316381720354579,0.3158016147635525,0.3154041115178823,0.3132228248414941,0.3115727940595623,0.3129228299506937,0.3131809114623293,0.3130365093499554,0.3130620104316614,0.3130280649926145,0.3136980872322229,0.315028901734104,0.3166219325153374,0.3180672814651253,0.3183274273564848,0.3205836209601506,0.3225749929913092,0.3253385220188222,0.3287176674892605,0.3317724684723035,0.3346183013144591,0.337530525030525,0.3390761075350246,0.3410991636798088,0.3414634146341463,0.3517690117934119,0.3562362030905077,0.3473887814313346,0.0,2.239578180461088,57.52305805589601,166.85558716153758,249.0481543847841,fqhc2_80Compliance_implementation,75 -100000,95819,44996,425.76107035139165,6011,61.50137237917323,4789,49.36390486229244,1877,19.181999394692077,77.38566316619061,79.7071440344094,63.36611244363343,65.08424845244362,77.15271494443206,79.47482737631158,63.28017521018516,65.00086274964929,0.2329482217585479,232.3166580978153,0.0859372334482699,83.385702794331,179.13588,125.54257893826554,186952.35809181893,131020.5480523336,386.29732,251.0465795505764,402551.8112274184,261399.4923246709,391.44711,190.1546428896839,404488.4939312663,195329.5165800496,3444.9806,1579.115390562508,3555967.542971645,1608734.594177175,1133.68453,502.0458252803452,1166880.3681941994,507709.0930772711,1835.26206,768.5501453875693,1878671.0986338824,772087.6929752447,0.37955,100000,0,814254,8497.834458719042,0,0.0,0,0.0,33007,343.83577369832705,0,0.0,35763,369.1334703973116,1497506,0,53755,0,0,7008,0,0,81,0.8453438253373547,0,0.0,0,0.0,0,0.0,0.06011,0.1583717560268739,0.3122608550989852,0.01877,0.3283060803302111,0.6716939196697889,24.23689737757615,4.327104797023797,0.3257465024013364,0.2317811651701816,0.2221758195865525,0.2202965128419294,11.198660126085649,5.903686838727461,20.042266693025887,12083.619582163865,54.604583325652605,13.53745973000076,17.674402634903835,11.760784212246248,11.631936748501769,0.5658801419920652,0.8081081081081081,0.6897435897435897,0.5704887218045113,0.1232227488151658,0.75,0.9455782312925172,0.8506024096385543,0.7403100775193798,0.1407766990291262,0.4958201210723551,0.7174887892376681,0.6314410480349345,0.5161290322580645,0.1189634864546525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295149544731,0.004541629917987,0.0070637667333123,0.0094284030642309,0.0115850929655396,0.0138886060482639,0.0160637658114953,0.0181753240126543,0.0204200521232561,0.022462596451012,0.0247286813761157,0.0267476829280809,0.0288078108941418,0.0308903757076685,0.0331002907876013,0.035159477772269,0.0370623292773777,0.0391057399307642,0.0410453960210989,0.0430272002663836,0.057766326967007,0.0715435596161485,0.0852785493422776,0.0977096028577432,0.1101900227521698,0.125623151668779,0.1382126739973304,0.150020192573384,0.1614107308541384,0.1709184766311099,0.1834419424909134,0.1953400952720438,0.2065285829045355,0.2169224388220655,0.2259903137595132,0.2369090265799832,0.2465828199672485,0.2544592712405086,0.2625760338910096,0.2690922807859813,0.2753057477105011,0.2814337720526463,0.2878219200717607,0.2939848006882707,0.298879941878065,0.3041721919355631,0.308785932531022,0.3130823941072809,0.3173617921849997,0.321399907900796,0.3194731890874882,0.3177291520720869,0.3162484527962192,0.3146148515994919,0.3128061997090174,0.3109297732596414,0.3087266392144441,0.3085263676688023,0.3083032367389555,0.3092069964588475,0.3108237278605567,0.312820309871975,0.3140627957351055,0.3135912742941784,0.3140144468871548,0.3151151518327351,0.3157789289905263,0.3191636971397937,0.3221881282403978,0.3261588744071106,0.3298474746552196,0.3314899500159523,0.3341527987897125,0.3360474849707023,0.3361694082057099,0.3372633083244015,0.3396342400491778,0.3440097303871883,0.3408902405308266,0.3389441469013007,0.0,2.443156830373874,57.5409674938173,183.36560973002852,253.8369674273113,fqhc2_80Compliance_implementation,76 -100000,95767,45389,430.05419403343535,5937,60.69940584961417,4704,48.54490586527719,1783,18.304844048576232,77.37657405990127,79.72159799274051,63.3458979718325,65.07911934704119,77.14412769474515,79.49077656088998,63.258497985776096,64.99489794987588,0.2324463651561217,230.82143185052928,0.087399986056404,84.22139716530808,177.9008,124.5733627852622,185764.1985234997,130079.6336788896,378.87453,247.0100871823039,394979.4814497687,257286.49449424536,383.99766,186.69024868832983,397242.0457986572,192087.5326894442,3357.11408,1552.311296753618,3468449.8522455543,1583872.927786836,1082.2893,489.5789958727711,1113471.7073731036,494572.5701990556,1749.95054,752.0263544736927,1797678.4278509298,758358.6596170324,0.38266,100000,0,808640,8443.827205613625,0,0.0,0,0.0,32281,336.483339772573,0,0.0,35088,362.6196915430159,1504180,0,54013,0,0,6981,0,0,73,0.751824741299195,0,0.0,2,0.0208840205916443,0,0.0,0.05937,0.1551507865990696,0.3003200269496379,0.01783,0.3362193362193362,0.6637806637806638,24.14682149867736,4.2784942862422,0.3254676870748299,0.2468112244897959,0.2153486394557823,0.2123724489795918,11.173718916910827,5.658108045377037,19.371307174424064,12237.738753761018,53.75979245340058,14.035498127300071,17.380217371783825,11.221770378048529,11.122306576268148,0.5680272108843537,0.7855297157622739,0.6864794252122796,0.5932872655478776,0.1081081081081081,0.7463823305407464,0.901565995525727,0.8740740740740741,0.763265306122449,0.1666666666666666,0.498967856089649,0.7128851540616247,0.6190053285968028,0.5390625,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028461460548971,0.0050887489989761,0.007396659834818,0.0094579218984924,0.0116853795460092,0.0138593293347318,0.0160495967207431,0.018305631559603,0.0205072634150829,0.0227656590678772,0.0248339619547392,0.0270067747895709,0.0288366641993585,0.0306385169927909,0.0326933591936532,0.0347090865866641,0.0366865130727413,0.0390879478827361,0.041022122421823,0.0429580104973756,0.0583108940238378,0.0726804986195934,0.0868225180836565,0.1000588519662862,0.1123429727678947,0.1274681831635026,0.1394069189257959,0.1505075439977868,0.1605241517776093,0.1710293502621899,0.183558073410305,0.1961070717562537,0.2075155576831019,0.2178722659284628,0.2276290294169455,0.2377796005231772,0.2472168563038065,0.2561895115912672,0.2641535127038344,0.2721526958791807,0.2795526047931896,0.2861418317005307,0.2926563959468886,0.2985188998910427,0.3033699678183253,0.308505526189332,0.3135294558724287,0.3172522419531031,0.3213371266002845,0.3255844618204354,0.3237698305996235,0.3235577055218096,0.3222122200967706,0.3206196133912717,0.3184840030866029,0.3165205684825676,0.3143435557594066,0.3144824194738136,0.3158146283178288,0.3167919888813656,0.3175034175389974,0.3182661194854392,0.3193505868569157,0.3199055300565928,0.3224313631459057,0.3239194882196911,0.32374918316902,0.327501486651435,0.3312913501592747,0.3337160503602819,0.3367272727272727,0.3376939780731953,0.3399499060738885,0.3423621094045547,0.3446216997854277,0.3481176470588235,0.3489780469341408,0.3539348171701112,0.3582613390928725,0.3633633633633634,0.0,2.2395054906817102,57.47807665294624,178.25607056865215,250.214964660514,fqhc2_80Compliance_implementation,77 -100000,95764,44787,424.5541121924732,5828,59.78238168831712,4648,48.08696378597386,1827,18.79620734305167,77.3313489084019,79.69786887324655,63.31030609897547,65.06343822619492,77.11059480647971,79.47527324641456,63.22965607243568,64.98371207335113,0.2207541019221963,222.59562683198908,0.0806500265397929,79.72615284379003,179.59634,125.75171374679564,187539.17964997285,131312.92981748207,380.97467,248.2493515588796,397358.24526962114,258764.42716901767,382.796,185.7238951007949,396565.212397143,191563.6335839948,3303.1503,1511.9619224080463,3420083.2880832045,1549968.3677427168,1106.07389,495.1951871411726,1146405.162691617,508505.00933667365,1783.10716,740.5384564894212,1835909.2769725577,751349.396242405,0.37751,100000,0,816347,8524.508165907857,0,0.0,0,0.0,32658,340.5350653690322,0,0.0,34978,362.1089344638904,1492739,0,53608,0,0,7034,0,0,58,0.605655569942776,0,0.0,0,0.0,0,0.0,0.05828,0.154380016423406,0.3134866163349348,0.01827,0.3431661750245821,0.6568338249754179,24.20923098137296,4.310676632925994,0.3207831325301205,0.241394148020654,0.2252581755593803,0.212564543889845,11.399390662951427,6.033376746625896,19.402087413463043,12036.344446411576,53.03202859274701,13.705522274999694,16.862201290680986,11.654184610892036,10.810120416174314,0.5679862306368331,0.785204991087344,0.6948356807511737,0.5778414517669532,0.1194331983805668,0.7336448598130841,0.8886255924170616,0.8507462686567164,0.768,0.1571428571428571,0.504756242568371,0.7228571428571429,0.6372819100091828,0.5181932245922208,0.1092544987146529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024620310236172,0.0046340894571929,0.006780005074854,0.0090225563909774,0.0112718468330993,0.0135450295851961,0.01556015539762,0.0177971553141305,0.0199347441418036,0.0221644099391605,0.0241220872989826,0.026300919504803,0.0283929527024245,0.030330825517881,0.0322560667210288,0.0343194532049757,0.0359827696895644,0.038093162739055,0.0400823267707532,0.0422338641642277,0.0571288399912318,0.0709636915350005,0.0846296665372955,0.097271436832974,0.1093891665085289,0.1249180397216523,0.136577291584878,0.1473241386655306,0.1583317304609861,0.1682277082193397,0.1800881475015894,0.1916130708763724,0.2042011319111885,0.2140105500470593,0.2234220549061048,0.2333525447774428,0.2424553686067413,0.2508215539749707,0.2593038032132159,0.2669477446925518,0.2744528419809955,0.2811299990634073,0.2878066121578386,0.293125390193536,0.298286159123253,0.3026783071914767,0.3081920020026285,0.3129303651660366,0.3172843827376554,0.3213446664730882,0.3204675842378862,0.3183099366157484,0.3177155881980499,0.3167951049152885,0.3153322759009176,0.3124914028947408,0.3108440963779328,0.3116349162148438,0.3125287925062703,0.3136699617062962,0.3151598975758368,0.3149974359985799,0.3163350610265842,0.3168619573708292,0.3181086857334966,0.3183226175911706,0.3186376161122631,0.3227671138198611,0.3256909768619452,0.3270983404306125,0.330950971912414,0.3332099809684923,0.3388673098609197,0.3417070217917675,0.3445300176301382,0.3454714136611388,0.3485142601164701,0.3546875,0.3611111111111111,0.3684601113172542,0.0,1.686564063501154,56.91540197208726,176.47329161871835,247.47955369523248,fqhc2_80Compliance_implementation,78 -100000,95496,44773,426.6670855323784,5854,60.09675797939181,4553,47.164279132110245,1747,17.93792410153305,77.22623088476638,79.7154173778986,63.24095407219974,65.07707641376989,77.00575759612698,79.49537971311065,63.15915668225113,64.99780179702226,0.2204732886393969,220.03766478795228,0.0817973899486119,79.27461674762526,178.76386,125.19655396086029,187195.12859177348,131101.3591782486,378.42983,246.7791826821112,395760.77532043227,257900.9201245196,377.09204,182.8763130715132,392085.5219066767,189183.13561082672,3220.83802,1465.3783892230165,3337607.135377398,1499352.516569296,1059.42771,461.5516966291288,1099131.963642456,473057.5590905677,1708.56256,718.2711221124605,1756531.3939850884,724497.4386115108,0.37704,100000,0,812563,8508.86948144425,0,0.0,0,0.0,32318,337.8780263047667,0,0.0,34350,356.9678311133451,1493437,0,53605,0,0,7060,0,0,80,0.8272597805143671,0,0.0,0,0.0,0,0.0,0.05854,0.1552620411627413,0.2984284250085411,0.01747,0.3453296253885163,0.6546703746114837,24.093332156673963,4.288478166334366,0.320667691631891,0.253898528442785,0.2090929057764111,0.2163408741489128,10.97559892162327,5.665346149578864,18.630963815639237,12003.576069547067,51.880546230571376,14.00260892267317,16.622220326183406,10.532464810195192,10.7232521715196,0.5679771579178564,0.8027681660899654,0.6835616438356165,0.582983193277311,0.1065989847715736,0.7399527186761229,0.9172259507829976,0.8452088452088452,0.7130044843049327,0.1354166666666666,0.5015225334957369,0.7306064880112835,0.6210826210826211,0.5432098765432098,0.0996216897856242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0045239230324484,0.0063861758076634,0.0087137773258769,0.0108731063691154,0.0128726494419813,0.0150103572485433,0.0170845850448572,0.019008256007857,0.0210651421077436,0.0230538676301527,0.0252827472753444,0.0272769397106523,0.0293432072280209,0.0314924833393604,0.0334938137391934,0.0355494237611643,0.0375463872516917,0.0396832838464343,0.0413812546988555,0.0557788523938118,0.0694846615468546,0.0827277985172722,0.0960034569254442,0.1082083637170666,0.1229993004176294,0.1350621458114042,0.1467544383748719,0.1575891948630614,0.1679691279063518,0.1806864682192638,0.1921512479255475,0.2035195603820489,0.2134643002006161,0.223304720082971,0.2338207840696951,0.2433496655256505,0.25223184093061,0.2601808153749929,0.2679081615090702,0.2746446211998237,0.2814738396970727,0.2878714192515272,0.2932277522770421,0.2983657701353936,0.3033477201617591,0.3077435323976931,0.3120728638401696,0.3164616164109493,0.3205542175052272,0.3187380135598714,0.3174611927541426,0.3167376767021246,0.3163426093241778,0.3148668958231031,0.3133820100625843,0.3113120736157385,0.3111773030971266,0.3118629550321199,0.3131958615257939,0.3139646147207264,0.3157217769862471,0.3168374939738833,0.3175586518462192,0.3180486868007874,0.3207390059849076,0.320589406610912,0.3218513517756775,0.324180256005611,0.3278194295688048,0.332133254340792,0.335773004508088,0.3397680977749922,0.339927514346119,0.338826143306795,0.3433096541283335,0.3407396134530512,0.3432896890343699,0.3502902958252695,0.3623853211009174,0.0,1.999509191729748,56.230957783917496,164.37185403401838,249.62943835644415,fqhc2_80Compliance_implementation,79 -100000,95697,45205,429.0521123964178,5850,59.82423691442783,4611,47.46230289350763,1767,18.025643437098346,77.36399481233721,79.74822099345222,63.33329461681414,65.09726199831651,77.14289568081824,79.53232953308965,63.25107309532702,65.01999168159867,0.2210991315189687,215.89146036257037,0.0822215214871207,77.27031671784346,179.5387,125.75500237351716,187611.39847644127,131409.32565651712,382.06755,249.50789791032045,398528.971650104,260008.79642028525,390.35885,189.0395056083813,403414.4121550309,194074.39997279688,3295.71191,1511.086052085116,3392887.248294095,1528015.9796912286,1090.80947,485.8944255491612,1122632.9143024336,490532.5296807448,1727.97964,724.7975176146305,1764140.1715832262,721488.0553652861,0.37942,100000,0,816085,8527.790839838239,0,0.0,0,0.0,32600,339.9166118060127,0,0.0,35598,367.58728068800485,1494069,0,53616,0,0,7111,0,0,68,0.6896767923759365,0,0.0,1,0.0104496483693323,0,0.0,0.0585,0.1541826999103895,0.302051282051282,0.01767,0.328,0.672,24.359372183973843,4.194750267747151,0.3231403166341358,0.2400780741704619,0.2194751680763391,0.2173064411190631,11.283434535393496,6.12389718432689,18.8162971244834,12111.101789689308,52.40330681927262,13.302309663830307,16.903340513093575,11.208704732966495,10.988951909382244,0.5723270440251572,0.8093947606142728,0.7026845637583893,0.5731225296442688,0.1157684630738523,0.7531746031746032,0.9339853300733496,0.8582089552238806,0.7931034482758621,0.1751152073732718,0.5043270665472993,0.7363896848137536,0.6452205882352942,0.5076923076923077,0.0993630573248407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023606650388547,0.0047156895555082,0.0068931210915292,0.0091977153078439,0.0115183459166853,0.0134584428551052,0.0157901179158676,0.0179235262878385,0.0203634950344164,0.0224864067827849,0.0242939475357384,0.0266614630940032,0.0286772269080436,0.030818847822279,0.0331802466587543,0.0349262805268926,0.0366598988978205,0.0385102320368602,0.0404677754677754,0.0424164122654385,0.057242819843342,0.0712192262602579,0.084906155250375,0.097180595429641,0.1098977548223885,0.1251546326351515,0.1373700954400848,0.1482159194876486,0.159060094588391,0.169274796887393,0.1820431970556267,0.1940051489518205,0.2052651037362446,0.2154315520125971,0.2258018390602314,0.2371205915561557,0.246448087431694,0.2549888138146578,0.2629680463707619,0.2708981871452115,0.2780494572191586,0.2838475923328658,0.2892669537646112,0.2951267430159567,0.3004820242590546,0.3053438873364273,0.3094812388251916,0.3136440430369777,0.3177771748258976,0.3217726650521217,0.3206591812614161,0.3183902050676696,0.3176741637750586,0.315118659707604,0.3150479971557241,0.3130471919709587,0.3106202637341861,0.3110661488757628,0.3111749116607774,0.3115541249488716,0.3133885038575778,0.3151964067609629,0.3164607163730483,0.3179301723368158,0.3192657032616771,0.319310219073172,0.3201321071662443,0.3250634338877925,0.3279170752206191,0.3319756406200569,0.3335295715967756,0.3380274261603375,0.3415355569540592,0.3449538485010298,0.3455541906831711,0.3528362468783446,0.3573411474398519,0.3648648648648648,0.3627260083449235,0.3668869024485037,0.0,2.738520825637057,54.631700984262665,173.88026442530577,247.3011472074845,fqhc2_80Compliance_implementation,80 -100000,95668,45137,427.6665133586988,5765,59.04795751975582,4472,46.14918258978969,1765,18.072918844336662,77.31725194233033,79.72690716943818,63.30264576078415,65.08552503827903,77.09393493785588,79.50542804202364,63.21973928657454,65.0059020372965,0.2233170044744525,221.4791274145398,0.082906474209615,79.6230009825365,179.26238,125.56016513745094,187379.6671823389,131245.73016834358,381.43656,249.32042491718053,398115.0018815069,260017.6222309548,379.84764,184.06488999981303,393607.4026842832,189653.18658789503,3219.76595,1467.757395079855,3325371.1272316766,1494093.293189142,1060.70534,464.39580741459866,1092099.6885060836,468830.8138087458,1726.99192,725.4024391859064,1770066.8562110632,727657.0616134165,0.37903,100000,0,814829,8517.257599197223,0,0.0,0,0.0,32593,340.0719153740017,0,0.0,34618,358.3747961700882,1494549,0,53636,0,0,6994,0,0,64,0.6689802232721495,0,0.0,0,0.0,0,0.0,0.05765,0.1520987784608078,0.3061578490893322,0.01765,0.3426275217319993,0.6573724782680006,24.29924000668389,4.266529685551989,0.3144007155635062,0.2419499105545617,0.2202593917710197,0.2233899821109123,10.861687797879474,5.643430923588461,18.847891827354157,12108.750765963385,50.97653192109284,13.232904743601662,15.914721607159892,10.992185231577285,10.836720338754011,0.5623881932021467,0.7902033271719039,0.6735419630156472,0.6,0.1221221221221221,0.7344913151364765,0.9044117647058824,0.8631284916201117,0.7615062761506276,0.1372549019607843,0.4986209010113392,0.7210682492581603,0.6087786259541985,0.5482573726541555,0.1182389937106918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002411176512304,0.0047761496729706,0.0070633366146726,0.0092979300673718,0.011436129623035,0.0134969950086584,0.0157917287250321,0.017979731938542,0.0205336498127724,0.0227032897230731,0.0251564583974556,0.0271172855997862,0.0291414042636416,0.0312287357980906,0.0332452027348026,0.0351163993792033,0.0369871249974084,0.0392452124787105,0.0413051168404186,0.0432398623996664,0.0575870282920305,0.0711017100013613,0.0838826839099764,0.0962461072300311,0.1085229610406051,0.1244946769107033,0.1370790571304246,0.1486853455161177,0.1590552022658045,0.1687819845723052,0.181639951740779,0.1944811310541927,0.2064188233245543,0.2165593940190026,0.226787091089327,0.2370666725773561,0.2459998661043047,0.2541616052548702,0.2626444799854811,0.2700202635405099,0.2768413868098053,0.2840072024881322,0.2898953796629426,0.295726045123953,0.3009341934229868,0.306134523178563,0.3101187422579797,0.3138546023110071,0.318184170353696,0.3215716243280278,0.3204027044101241,0.3192401203280174,0.3171928147752509,0.3159033537684818,0.3149103122352836,0.3129579105484197,0.3099748373925841,0.3092260732571879,0.3091026931145639,0.3106360235168359,0.3123982713139137,0.314007851182609,0.3153759114910737,0.315514235909355,0.3170214815528369,0.3172264524877438,0.3171328571835073,0.3209327106904441,0.3259088043706661,0.3310519444554338,0.3357607755677939,0.3390972259056914,0.3418765743073048,0.3442723040525071,0.3459007145543437,0.3465439962255249,0.3515253717614594,0.3567381626871712,0.3640789829591561,0.3579502637528259,0.0,2.3277467355997845,52.86187711091918,172.90864717001895,238.13368546454373,fqhc2_80Compliance_implementation,81 -100000,95861,45344,428.7666517144616,5837,59.64886658808066,4540,46.82822002691397,1737,17.807033100009388,77.4717338221379,79.75955280233124,63.40399372213196,65.0912231474117,77.25860506729539,79.54626205299628,63.32391278995876,65.01297211181519,0.2131287548425149,213.2907493349592,0.0800809321731961,78.2510355965087,180.53618,126.38987861869924,188330.97923034392,131846.81113351544,378.52626,246.7367008235728,394354.4715786399,256875.1836675736,381.28584,184.3794610462444,394444.2786951941,189769.1541948329,3239.0738,1478.0091512386823,3342044.1785501926,1504989.1143297916,1067.03993,471.0258508001386,1099839.42374897,478127.9019969436,1697.34474,714.5217068150038,1741138.1688069184,720076.0164978775,0.38027,100000,0,820619,8560.499055924724,0,0.0,0,0.0,32410,337.5512460750461,0,0.0,34858,360.2820750878877,1495698,0,53622,0,0,7160,0,0,39,0.4068390690687558,0,0.0,1,0.0104317710017629,0,0.0,0.05837,0.1534962000683724,0.2975843755353777,0.01737,0.3279973864750081,0.6720026135249918,24.390338686157296,4.241152279328692,0.3211453744493392,0.2392070484581497,0.2306167400881057,0.2090308370044052,11.050838426919984,5.760567699316208,18.221901265433228,12173.126628468905,51.18298557747063,12.881232013676016,16.54235141877546,11.435517556767207,10.32388458825195,0.5759911894273128,0.7707182320441989,0.700960219478738,0.6055396370582617,0.1285563751317176,0.7153225806451613,0.8916876574307305,0.8646616541353384,0.6965811965811965,0.119047619047619,0.5236363636363637,0.7010159651669086,0.6392823418319169,0.5793357933579336,0.1312584573748308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022876809393663,0.0043865425332536,0.0066215092579447,0.0088814453917986,0.0110661734818307,0.0133384883046588,0.0154734740444951,0.017564438641765,0.0198721483569225,0.0220895033952384,0.0243038130255328,0.026634258404611,0.0289691304124505,0.0310217100524745,0.0330371500432936,0.0350987701490071,0.0374136290289213,0.0394026385880548,0.0414083834324933,0.0434986211561475,0.0585677642691802,0.0726829880203215,0.086194248826291,0.0987454556916805,0.1101836042075085,0.1256263875673961,0.1373189404703836,0.148416472515665,0.1590668873111621,0.1691854233654876,0.1824207988980716,0.1942198780856859,0.2050494081876425,0.2154212342228239,0.2256516151708533,0.2358254831719075,0.2453406115969476,0.2546512019581644,0.2635590437037792,0.2707275803722504,0.2782723147795365,0.2848394358968377,0.290679827150582,0.2964703350312074,0.3018520090720549,0.3072853223087618,0.3128379981765271,0.3171189926121506,0.3208675657520798,0.3245764049673753,0.3223532255465435,0.3209411313308485,0.3200757575757575,0.3194811917634879,0.3184943152416576,0.3157718325309281,0.3141714807410788,0.3151581421157424,0.3155125594025798,0.3160058841252681,0.3167935379404046,0.3180008238363311,0.3186004448971954,0.3198030343359063,0.3221433336510054,0.3231349647277707,0.324582675389127,0.3273728075631297,0.3303158040218368,0.3343623007189746,0.3380325814536341,0.3385211968768013,0.3405011219147345,0.3443628378889982,0.3477524920067707,0.3519155497568497,0.3526020330754058,0.3571000599161174,0.3581445523193096,0.3619011976047904,0.0,2.060941316289483,54.29580988662464,164.7908404399747,247.40676420177917,fqhc2_80Compliance_implementation,82 -100000,95749,45127,427.1793961294635,5841,59.80219114559944,4621,47.77073389800416,1810,18.52760864343231,77.34438518034166,79.69762401195354,63.33412346583962,65.07267339438472,77.12202667235682,79.47590715037803,63.25086629460991,64.99160613795212,0.2223585079848362,221.7168615755014,0.0832571712297109,81.06725643260404,178.69456,125.20688977888862,186628.1214425216,130765.74144783612,382.7743,249.53079175054376,399289.6427116733,260130.47838676523,385.17313,186.2552337889001,399083.9591014005,192048.45420067772,3286.24153,1509.8289449153974,3400200.2109682607,1544919.649203017,1086.83709,477.7014339110499,1124122.789794149,487943.1366500423,1765.74316,740.5847155874912,1811160.116554742,747187.1257587469,0.38084,100000,0,812248,8483.096429205527,0,0.0,0,0.0,32683,340.8495127886453,0,0.0,35249,364.9855350969723,1496185,0,53733,0,0,6980,0,0,74,0.762410051279909,0,0.0,1,0.0104439733052042,0,0.0,0.05841,0.1533714945909043,0.3098784454716658,0.0181,0.3286793692509855,0.6713206307490145,24.29223831710653,4.268570346979876,0.3118372646613287,0.2518935295390608,0.2254923176801558,0.2107768881194546,11.257949827129025,5.89328254581635,19.19458628531893,12132.26236624437,52.60944159748245,14.03341974576671,16.302890823855414,11.607317526184907,10.665813501675412,0.5704392988530621,0.7903780068728522,0.6988202637057599,0.5777351247600768,0.1098562628336755,0.741501976284585,0.9086859688195992,0.8556430446194225,0.7429718875502008,0.1021505376344086,0.5059594755661502,0.7160839160839161,0.6424528301886793,0.5258511979823455,0.1116751269035533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025829585511121,0.0049983271318929,0.007406730993618,0.0096279820846409,0.0118856375948105,0.0141194914132725,0.0161635514971158,0.0183784886984029,0.020383974824003,0.0224905351478563,0.0246229199114681,0.0267676612166558,0.0287585597071706,0.0308029783421385,0.032907631682106,0.0349802106046357,0.0370458544664113,0.0390654166839507,0.0411249337448944,0.0433727410030727,0.057898088507031,0.0723927921140202,0.0852701795603289,0.0976833205388409,0.1098328676121685,0.126044200063445,0.1377053701169907,0.1490083840490275,0.15926689380427,0.1698544074447327,0.1817056366533178,0.194104921579232,0.2060950020113724,0.2169464847848898,0.2263364529148475,0.2361530882238976,0.246175305473414,0.2546783625730994,0.2630629608621667,0.269984658011037,0.2773639034773153,0.2844022743758336,0.2900519471298914,0.2949007003741725,0.3001166209091572,0.3062596361393771,0.3112926260930571,0.3152972952313004,0.3186954155544613,0.3233158158819024,0.322530261616556,0.3198976503604248,0.3186017689144274,0.3172394862682211,0.31555720653789,0.3131082468696838,0.3104590704457549,0.311594321818331,0.3124124739556648,0.3135753551795531,0.3147707916066113,0.3151852290211859,0.3157025139080604,0.3163892302536029,0.3164109470443942,0.3163252024054356,0.3173117943175678,0.3208566224957608,0.3239826294039364,0.3288518738845925,0.3321383191141768,0.3344293593551124,0.3354660644837536,0.3387509405568096,0.3429077683484099,0.3456296992481203,0.3453435114503816,0.3472734727347273,0.3486314625380149,0.3568384347152266,0.0,1.9495627139411589,55.68908745092004,173.41840649129858,249.9574145666093,fqhc2_80Compliance_implementation,83 -100000,95670,45461,430.3438904567785,5820,59.65297376398035,4603,47.53841329570398,1793,18.3547611581478,77.28108161739658,79.6692265846236,63.29287913429015,65.05619355669391,77.05392905998441,79.44485976069056,63.20779430841459,64.97485113385065,0.2271525574121682,224.36682393303897,0.0850848258755618,81.34242284326376,178.23344,124.96396027722696,186300.24040974185,130619.79750938326,385.0479,251.28015893048044,401886.6624856276,262065.61233962703,391.72834,190.0148479162548,406450.5278561722,196185.6425316516,3290.20851,1515.6957014221116,3401574.3702310026,1546870.5718384432,1093.22975,487.8490871191145,1129939.7303229852,497159.6917728792,1754.41068,745.5385779318261,1798406.4388000418,748388.2205267048,0.38189,100000,0,810152,8468.192745897355,0,0.0,0,0.0,32838,342.62569248458243,0,0.0,35665,369.70837253057385,1492646,0,53539,0,0,7234,0,0,79,0.8257552001672416,0,0.0,1,0.0104525974704714,0,0.0,0.0582,0.152399905732017,0.3080756013745704,0.01793,0.3398201144726083,0.6601798855273917,24.235080551632933,4.279949063855236,0.3223984358027373,0.2394090810341081,0.2200738648707364,0.218118618292418,11.177416531841695,5.806191316318559,19.2214708350368,12231.442971294977,52.70633701960301,13.330369547370893,16.909171853552756,11.326266609364149,11.140529009315218,0.5731044970671302,0.8030852994555354,0.7028301886792453,0.5923000987166831,0.1095617529880478,0.734996102883866,0.93006993006993,0.8733850129198967,0.7131474103585658,0.125,0.5105421686746988,0.7221396731054978,0.6426618049225159,0.55249343832021,0.1053299492385786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678569619612,0.0045215381340037,0.0068806641160173,0.0094279241295933,0.0116144254825783,0.0140727465276363,0.0161816587474763,0.0182852125617674,0.0204446716074623,0.0226102621316492,0.0248333845996103,0.0269418347964474,0.0292578080811197,0.0313018391633609,0.0334599347727366,0.0355477433696944,0.0376439877351454,0.0396176281319411,0.0415990513044563,0.043943673716138,0.058892359768902,0.0727927626068018,0.0864517618902663,0.0989688552188552,0.1116597558530898,0.1268077993250177,0.1391825902335456,0.1502215405589638,0.1615255487720123,0.1722431010415548,0.1851276575089797,0.1966617894109359,0.2088593118621546,0.2190025625862408,0.2286400599422615,0.2388394095007819,0.2490080584770484,0.2575081671735947,0.2652780618622304,0.2729847819355726,0.2796186018490627,0.285868278908456,0.2926730935695398,0.2983524269279727,0.3038701592593043,0.3082922013820335,0.3126715032139232,0.3167822185970636,0.3212488326242607,0.3248922271296712,0.3235091696692441,0.3214147821290678,0.3197879858657244,0.3181528293135436,0.3169135839270277,0.3149316266863115,0.3124355864212212,0.3134490417043679,0.3134864929640155,0.3140850356549247,0.3152894346495428,0.315832291604659,0.3159556331951255,0.3173750898634076,0.3187842502957294,0.3195020746887966,0.3209901216239365,0.3243021863776699,0.3288684736491462,0.3321444140609519,0.3350447544186469,0.3391456434174263,0.3417363424907274,0.343429003021148,0.3450079387316708,0.3433356594556874,0.3454655747649378,0.3438995215311005,0.346680999731255,0.3386788850706376,0.0,2.245074530206693,56.27825535585328,176.14772082534134,243.4511946016678,fqhc2_80Compliance_implementation,84 -100000,95734,45344,429.29366787139367,5871,60.21893997952661,4603,47.57975223013768,1809,18.55140284538409,77.3612597271838,79.7264968998842,63.34108899169471,65.08889031400557,77.13292325783121,79.49950012683334,63.255914239112215,65.00660382960095,0.2283364693525982,226.9967730508569,0.0851747525824961,82.28648440461939,178.13642,124.774333821401,186073.89224309023,130333.97333793744,382.56083,249.36142424787684,399110.1698456139,259976.55450028923,384.20796,186.2843790583133,398283.9847911923,192199.8519204344,3300.01565,1509.7146381997895,3412171.099087054,1542375.526618841,1114.05814,493.1060584885731,1151469.3421355004,503123.9736009938,1766.7628,743.6890455520618,1813590.0933837509,749249.3884273991,0.3829,100000,0,809711,8457.904192867738,0,0.0,0,0.0,32587,339.8792487517497,0,0.0,35072,363.3087513318152,1501814,0,53892,0,0,7094,0,0,75,0.7834207282679091,0,0.0,0,0.0,0,0.0,0.05871,0.1533298511360668,0.3081246806336229,0.01809,0.3411669367909238,0.6588330632090762,24.263878652866364,4.389941075868025,0.3195741907451662,0.2337605909189659,0.2309363458613947,0.2157288724744731,11.363388878668776,5.873588667502713,19.320424814823788,12198.808601659412,52.48699731714401,12.90726365492505,16.929321341774997,11.754960877424466,10.89545144301951,0.5781012383228329,0.7825278810408922,0.7362338545207342,0.5794920037629351,0.120845921450151,0.7403921568627451,0.9223300970873788,0.8648018648018648,0.740909090909091,0.1401869158878504,0.5159254807692307,0.6957831325301205,0.6833013435700576,0.5373665480427047,0.1155327342747111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297981179283,0.0046435234001135,0.0068295752065109,0.0090621856935315,0.0112580087460591,0.0135638785360786,0.0157139069606183,0.0178996273038239,0.0201314834316562,0.0219287469287469,0.0240533973116791,0.0264057926359574,0.0286431282204235,0.0307191495060418,0.0328153055538356,0.0348292652668796,0.0371037725102778,0.0392781536673446,0.0414487298137614,0.0435113310758009,0.0582314430998298,0.0721380797370707,0.0853971950362421,0.098985332001472,0.111077150084317,0.1264428565388355,0.1389156920336341,0.1501101169260886,0.1610167681298729,0.1714794091795828,0.1839283407260669,0.1952688962921299,0.206776970909249,0.2176507880987254,0.2274651216482151,0.2377295012118328,0.2473657802308078,0.2560060228779468,0.2645008444892823,0.2719146647133554,0.278668624345353,0.284554175478775,0.2906441808484217,0.296041369899089,0.3019387223104623,0.3067142154451549,0.3116373765004184,0.3163940884195544,0.3204544278246468,0.323109193810108,0.3225172868404767,0.3212759819208418,0.3200630222547337,0.3188769983969499,0.3170637514110866,0.3145363792258697,0.3125879543981152,0.3125542970478797,0.313831782073574,0.3145379950053514,0.3157589260639194,0.3183923058655901,0.3197392962675776,0.320554375768414,0.322029822029822,0.3234319125055467,0.3251941969385424,0.3299602799319084,0.333813758920097,0.3381615598885794,0.34325983177995,0.3457090044890414,0.3489201877934272,0.3506994328922495,0.3537300922045264,0.3559840112861509,0.3634708737864077,0.3657062260729397,0.363332404569518,0.3645045762037405,0.0,1.9080436862679364,56.307720243510246,172.5284065108487,246.8986926361821,fqhc2_80Compliance_implementation,85 -100000,95658,44855,426.0699575571306,5838,60.06815948483138,4613,47.71163938196492,1758,18.064354262058583,77.2430810454354,79.64716697344011,63.27207635196621,65.04983967307871,77.01652824375444,79.42083351298118,63.18775562104675,64.96779463544081,0.2265528016809668,226.33346045893177,0.0843207309194653,82.04503763789717,178.85098,125.1952997182543,186968.95189111208,130877.8319266691,377.54414,245.8999671858735,394155.11509753496,256537.0909711561,377.6668,182.6954437199096,390957.31669071066,188123.6805289379,3308.40708,1517.091713807714,3424194.934035836,1551769.0630381354,1119.47395,495.1814089060507,1157161.1365489557,504670.77344900486,1726.05894,731.7233917862708,1774809.1325346548,738908.2243488729,0.37892,100000,0,812959,8498.588722323277,0,0.0,0,0.0,32345,337.5776202722198,0,0.0,34445,356.3423864182818,1496900,0,53733,0,0,6938,0,0,61,0.6376884317046143,0,0.0,1,0.010453908716469,0,0.0,0.05838,0.1540694605721524,0.3011305241521069,0.01758,0.3350759679790884,0.6649240320209117,24.29455694033456,4.3021079219657,0.3264686754823325,0.2326035118144374,0.220030349013657,0.2208974636895729,11.101238691142866,5.733911022405362,18.986127279119987,12083.379470527,52.69592725947923,12.96277981716922,17.118509696068788,11.299805108289236,11.314832637952,0.5623238673314546,0.7735321528424977,0.6952191235059761,0.5773399014778325,0.1285574092247301,0.7368827160493827,0.9009433962264152,0.8878048780487805,0.7044534412955465,0.1627906976744186,0.4941211938498643,0.6902927580893683,0.6231751824817519,0.5364583333333334,0.1194029850746268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044123912117339,0.0067104555191212,0.0087787927127891,0.0110565235523277,0.0130047354753297,0.0152128473107315,0.0172663780428034,0.0195414757853403,0.0218936244291068,0.0238434638143388,0.0259506865070807,0.0280648710908174,0.0298341403111156,0.0317699516948102,0.0340395611667752,0.0361726591876689,0.0381226192823855,0.040013313501763,0.0419711643714229,0.0562289703024096,0.0701245378274486,0.0831356163520692,0.0962856150469955,0.1084989813045635,0.1239321215714089,0.1369599626076888,0.1481185374693529,0.1587731216501021,0.1688859775348467,0.1815210003344517,0.193062706628367,0.2052625273636175,0.2159024956471271,0.2257172142439906,0.2361235923891939,0.2452205800147575,0.254437669758478,0.2619583503842131,0.2699395649132464,0.2773695556431237,0.2838757275186491,0.2903034753974082,0.2963482809088509,0.3016438922891595,0.3062506944530179,0.3105463117374895,0.3147860021425292,0.3187047183775221,0.3220211161387632,0.321186292095432,0.3195079618711774,0.317855277828744,0.3159693065006515,0.3151550370271035,0.3126803807184525,0.310722621826323,0.3113032024368157,0.3119694687842278,0.3126577520004296,0.3135768565194493,0.3139731141160818,0.3147720109266653,0.3161281643086168,0.3175280086736537,0.3181663481425242,0.3194823083766178,0.3234476659718274,0.3274145721547585,0.3310632160884544,0.3334099793055874,0.3370750481077614,0.3387106977921174,0.3402156457903189,0.3414310115771494,0.3455952380952381,0.3510952306975299,0.357625383828045,0.3647642679900744,0.3710667689946277,0.0,1.9846240954410443,57.26400429127848,171.06487644509195,247.3147163119896,fqhc2_80Compliance_implementation,86 -100000,95815,45498,431.0076710327193,5986,61.33695141679278,4695,48.39534519647237,1870,19.15148985023222,77.44904619750217,79.7752857775517,63.38601454967061,65.10677782790665,77.21025930185824,79.53776166444666,63.297495880470976,65.02128531913515,0.2387868956439263,237.52411310503877,0.0885186691996366,85.49250877150882,179.31716,125.60996826488798,187149.3607472734,131096.35053476802,380.12484,247.53412534615856,396079.5282575797,257706.2543733524,389.77603,189.29312820053607,402740.9695767886,194567.6752235516,3354.59004,1546.7596083106596,3457948.5779888327,1572017.688384286,1118.15017,502.65002649722857,1153704.0651255022,511591.1105997316,1827.45752,773.4367311133728,1872238.626519856,777042.3045537698,0.3826,100000,0,815078,8506.789124876064,0,0.0,0,0.0,32447,337.9846579345614,0,0.0,35597,367.45812242342015,1501172,0,53793,0,0,7236,0,0,67,0.6992642070656996,0,0.0,0,0.0,0,0.0,0.05986,0.1564558285415577,0.3123955897093217,0.0187,0.3304042179261863,0.6695957820738138,24.145000905051308,4.300593036646225,0.318849840255591,0.2396166134185303,0.2187433439829606,0.222790202342918,11.12991049641051,5.91451581831394,20.01426441264685,12181.469712529552,53.19397402523786,13.532384690964918,16.754987285180338,11.32229429123631,11.58430775785629,0.5597444089456869,0.7866666666666666,0.698062792251169,0.569620253164557,0.1080305927342256,0.7396946564885496,0.9229024943310656,0.8721227621483376,0.7551867219917012,0.1645569620253164,0.4901033973412112,0.6988304093567251,0.6365280289330922,0.5127226463104325,0.0914709517923362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.0047337637983639,0.0068896938703032,0.0088784144817708,0.0111250088979732,0.0135929052162137,0.0158947014263429,0.0179017952826626,0.0199795605518651,0.0219275357870071,0.0241020648665266,0.0262520525451559,0.028453947368421,0.0303931965364934,0.0324976021286909,0.0346398611512872,0.036690506008135,0.0388747174350359,0.0409363408729622,0.0430061630715416,0.0574268993647051,0.0720491828989053,0.0851770723067087,0.0981665353296559,0.1105912601818775,0.1262708461034431,0.1380399639582339,0.1496634088757962,0.1607506748178258,0.1709983829686981,0.1839238668745631,0.1954908336664254,0.2062466752792765,0.2163846061518653,0.2264080526009593,0.2363037543793724,0.2454872440173272,0.2547586980920314,0.2634670892523629,0.2713324422204705,0.2780310988490886,0.2846575662116439,0.2906046445766072,0.2966938394970237,0.3018733036060488,0.3071051952361638,0.3118521013435126,0.316124532369539,0.3196912791523083,0.3235673145201588,0.3230684593296299,0.321217939925936,0.3201488345970233,0.3188944607758372,0.3185477903087351,0.3165190076091431,0.3136912075103172,0.314694110920526,0.3153682779712853,0.3169094138543517,0.3185335745053798,0.3187340279142913,0.3205387486187269,0.3208905330718488,0.3231207780386145,0.3251935675997617,0.325141723356009,0.3281025320412629,0.3316519546027743,0.3350446252270753,0.3386979450809238,0.3407124276689494,0.3446562244448638,0.3465564320388349,0.3495383455813077,0.3512298959318827,0.3507268553940321,0.3512799674928891,0.3533296642817831,0.3495811119573496,0.0,2.2770431130206377,57.07658385660951,171.50124149240182,253.25829490413267,fqhc2_80Compliance_implementation,87 -100000,95808,45123,426.6553941215765,5872,60.05761523046092,4656,48.0126920507682,1844,18.881513026052104,77.3497797498425,79.68403631026314,63.33168066437421,65.06031563460208,77.12600344707371,79.46271653940506,63.248271648556525,64.98093317185436,0.2237763027687833,221.31977085807364,0.0834090158176863,79.38246274771643,178.23872,124.84796914031716,186036.9488977956,130310.18855879812,378.81699,246.64558549155444,394819.81671676686,256866.70615944397,386.63762,187.4389439333655,400215.08642284566,193105.62010307368,3322.55914,1526.8368445632889,3428897.628590514,1554772.9114152857,1124.60257,494.427924631796,1159456.9868904476,501709.56979771546,1806.27548,754.4386154700572,1851146.6683366732,756084.8893824801,0.37995,100000,0,810176,8456.224949899799,0,0.0,0,0.0,32339,336.92384769539075,0,0.0,35280,364.89645958583833,1502209,0,53889,0,0,6987,0,0,70,0.73062792251169,0,0.0,0,0.0,0,0.0,0.05872,0.1545466508751151,0.3140326975476839,0.01844,0.3473238978363429,0.6526761021636571,24.26980384270551,4.279581948278564,0.3195876288659793,0.2484965635738831,0.2109106529209622,0.2210051546391752,11.20162563613845,5.732884012438842,19.46458948155634,12164.53056994719,53.00714913753949,13.991994509202527,16.874576737205796,10.842194312977954,11.298383578153198,0.5719501718213058,0.7873811581676751,0.7143817204301075,0.5743380855397149,0.1214771622934888,0.7478532396565184,0.9153674832962138,0.8624078624078624,0.7647058823529411,0.1323529411764706,0.5051851851851852,0.7062146892655368,0.6586493987049029,0.519053876478318,0.1187878787878787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0048262646131383,0.0072766760712038,0.0093773176604456,0.0117892381243006,0.0141744310371162,0.0165376890058014,0.0187011290092076,0.0211169712580236,0.0234600503592704,0.0255253716043054,0.027558165800768,0.0296851543381249,0.0316847383975368,0.0337208462704888,0.0356589307487238,0.0376063598534252,0.0394876050202261,0.0414350577160846,0.0433560317361154,0.0578514121169756,0.0712754499158205,0.0848514706190645,0.0980777517367497,0.1100101197503794,0.1250198267931351,0.1369880451040086,0.1485711244744824,0.1593851478379764,0.170011692393508,0.1818299371774011,0.1949498338618726,0.2065705738373674,0.2164977754457307,0.2259171662724822,0.2356043566418844,0.2447162273751869,0.253882572562779,0.2623966238981724,0.2702390219332387,0.2771969188776572,0.2842379677581511,0.2899200416351249,0.2962404214559387,0.3016481782654077,0.3066543551862111,0.3114899573797948,0.3150801622315741,0.3200491527616091,0.3235798301598185,0.3230278476923698,0.3227995320349597,0.3211850557872197,0.3193139879875534,0.3174683393780843,0.3154791079524568,0.3129886985976131,0.3152817652366499,0.3163700946070562,0.3155497606629992,0.3151218781031608,0.3162129569222861,0.3169328003683318,0.3187887990710553,0.3189307330195023,0.3208215113100971,0.3218348310772381,0.3246138905422762,0.3264274005092253,0.3295552931916568,0.3320052519581654,0.3340721975934135,0.3372472686173552,0.3368718497021536,0.3394400601277715,0.3411931148314077,0.3399541634835752,0.3427597272362615,0.3503926347143244,0.3551114527286702,0.0,2.268750656232767,56.016640447972506,174.27755801650807,251.4435005643342,fqhc2_80Compliance_implementation,88 -100000,95803,45527,431.0512196904064,5909,60.446958863501145,4714,48.66235921630847,1815,18.57979395217269,77.41775944651599,79.7465844414669,63.37436231324406,65.09549786081809,77.19659249533345,79.52668462831603,63.293517200925926,65.01731345504795,0.2211669511825391,219.89981315086027,0.080845112318137,78.18440577013064,179.8291,125.89208207019443,187707.16992160995,131407.24410529362,377.59335,245.98605584743328,393594.5325302965,256222.84763057728,386.12815,186.5163098026068,399544.4401532311,191987.9354911913,3332.71807,1516.4708812746028,3438520.4951828234,1543003.7225758878,1106.72382,490.9702154881924,1139515.6101583457,496936.5361221048,1771.00768,732.7917813197564,1814164.775633331,735994.806648221,0.38283,100000,0,817405,8532.144087345909,0,0.0,0,0.0,32192,335.45922361512686,0,0.0,35213,364.1013329436448,1500982,0,53856,0,0,7118,0,0,68,0.7097898813189566,0,0.0,0,0.0,0,0.0,0.05909,0.1543504949977797,0.3071585716703334,0.01815,0.3467247499193288,0.6532752500806712,24.572759910219894,4.228932972652897,0.3207467119219346,0.2437420449724225,0.225074246924056,0.2104369961815867,11.225540793696592,5.928881181572443,19.17199864188212,12279.157513163414,53.373427824431324,13.732983686381797,16.999413674057763,11.84085790239348,10.800172561598282,0.5719134492999576,0.804177545691906,0.6944444444444444,0.5749293119698398,0.1129032258064516,0.7442596991290578,0.8990610328638498,0.8637532133676092,0.7568627450980392,0.1450777202072538,0.508838017965807,0.7482710926694329,0.6357969723953696,0.5173697270471465,0.1051314142678347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020858858433155,0.0043789849269662,0.0065651287150815,0.0091405821535211,0.0113377531928739,0.0137322366545869,0.0157476302109876,0.0180962684739119,0.0201966516077597,0.0223113767552298,0.0242722427224272,0.0265556673304728,0.0288745207281847,0.0308948278702026,0.0330470288607281,0.0352413807349872,0.037317989423465,0.039322406411014,0.0411680378957865,0.0433809444490713,0.0583417667372638,0.0716704996863892,0.0852497851198088,0.0981522915156671,0.1102790942601369,0.1259573838726375,0.1388956561344787,0.1513128521313915,0.1620078950176037,0.1726439145617756,0.1852584714321048,0.1977337049279495,0.2091503267973856,0.2194128756864158,0.2285014444041695,0.2382326918823269,0.2481390684198796,0.2569321269000202,0.2651335009171818,0.2729787817815987,0.2802864072063749,0.2864912813090875,0.2930857405942698,0.299059831104519,0.3042465985982102,0.3090533257868445,0.3136566847323859,0.3186591327534759,0.3225531365075263,0.3262866921153087,0.324935200977693,0.3239096091764544,0.3231141362434606,0.3216479681596631,0.3215689182175428,0.3199021331906109,0.3185730303365286,0.3189364419267166,0.3200687331994964,0.319749550863587,0.3190431695010278,0.3203633432295865,0.3212736675285678,0.3216278087702531,0.3224793942879049,0.3233935430291705,0.325158766160127,0.3290461885092001,0.3332169541233154,0.337755142326977,0.3412511332728921,0.3463226352244488,0.3500062680205591,0.354072055706933,0.3555242125058768,0.3570240076063703,0.3639597834493426,0.361077359254759,0.3591415376256452,0.3569513596323247,0.0,2.021668400431697,55.58589794227907,175.4787673189963,258.09332970067203,fqhc2_80Compliance_implementation,89 -100000,95725,45003,426.4089840689475,5824,59.66048576651868,4534,46.82162444502482,1762,18.009924262209456,77.3893283971574,79.75205302046777,63.35181630130408,65.09469014193711,77.1750638439562,79.54105867963013,63.27160214698007,65.01846260379023,0.2142645532012039,210.9943408376438,0.0802141543240111,76.2275381468811,179.18076,125.5020479229794,187182.82580308177,131106.86646432948,382.45436,248.9315286207412,398982.78401671455,259496.9324844516,378.58278,183.5844216887056,393063.6824236093,189807.33236399363,3210.52762,1465.9648817644418,3317157.210759989,1494683.7312765142,1074.88452,476.6662502726047,1107519.895534082,482585.688454014,1722.43132,719.8802359461597,1762821.4781927394,719720.7049461141,0.38032,100000,0,814458,8508.310263776444,0,0.0,0,0.0,32736,341.4259597806216,0,0.0,34497,357.86889527291726,1497837,0,53744,0,0,7043,0,0,79,0.8252807521546096,0,0.0,1,0.0104465917994254,0,0.0,0.05824,0.1531342027766091,0.3025412087912087,0.01762,0.3334426229508196,0.6665573770491803,24.62869931282507,4.320567424156291,0.3182620202911336,0.2434936038817821,0.2232024702249669,0.2150419056021173,11.275089938202878,5.856433300720831,18.69228975195423,12185.777125138791,51.5204240027527,13.439928338389423,16.503687366624472,11.037261961099318,10.539546336639464,0.5621967357741509,0.792572463768116,0.7075537075537075,0.5385375494071146,0.1107692307692307,0.7488151658767772,0.9118279569892472,0.8701298701298701,0.7180616740088106,0.1375661375661375,0.4899020807833537,0.7057902973395931,0.6483931947069943,0.486624203821656,0.104325699745547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0046216060080878,0.0070803282513212,0.0094432541656935,0.0118539302997031,0.013975123669157,0.0163765693787705,0.0185404379502459,0.0204869874421408,0.0226442509388206,0.0247258940465211,0.0269424523171945,0.0288532675709001,0.0310862695447199,0.0331769195070386,0.035177281511259,0.0370121130551817,0.0388979939007945,0.0405271965657384,0.0428464279017438,0.057359759408546,0.0717013907056078,0.0848367877821599,0.0973145188425302,0.1085272135018606,0.1236820119081612,0.1361061608961303,0.1479064419627173,0.1586240051279312,0.1686967896892625,0.1813061971679319,0.1939081243036852,0.2058375910425046,0.2167528619381362,0.2265421301033037,0.2374005892647482,0.2468722447294115,0.2557893671341648,0.2644465876212628,0.2719536359367304,0.2789847950511649,0.2859564023143007,0.2919085052308056,0.2967538063774777,0.3016029024547098,0.3066397598070581,0.3113928165122704,0.3156737940059204,0.3206519630036867,0.3245753890345618,0.3238905007522029,0.322757351931684,0.3211658336609199,0.3200190410247533,0.3186034794463709,0.3167854472202298,0.3140317420290311,0.3140854963328378,0.3151691412827185,0.3163183637172077,0.3173093066204041,0.3175053153791637,0.3189685770957302,0.320515105605561,0.321947360851431,0.3224536317480054,0.3236193712829227,0.3270742358078602,0.3311647648204843,0.3362814465408805,0.3421207325344788,0.347283872331431,0.3453052526012285,0.349777811252542,0.3562371806824538,0.3607038123167155,0.3608340888485947,0.3642357642357642,0.3652993348115299,0.3669511249030256,0.0,2.145577993772392,55.52940141483188,164.71466265480623,246.4284376329096,fqhc2_80Compliance_implementation,90 -100000,95683,45043,426.81563078080745,5851,60.07336726482238,4561,47.19751680026755,1801,18.540388574772948,77.35982293729873,79.73720536673599,63.33991942654043,65.09067787856912,77.12930668503681,79.50466869413756,63.25371307645711,65.00541308959498,0.2305162522619213,232.5366725984281,0.086206350083323,85.26478897414336,179.96352,126.06086306106346,188082.83603147892,131748.21343505476,377.24387,245.1654647059258,393790.3075781487,255752.82412333,380.84411,184.18799515251283,395140.5892373776,190190.9771107316,3252.446,1490.1919046407,3370789.189302175,1529026.1850492775,1050.8603,466.4128541653109,1088440.517124254,477637.8061154647,1756.0669,743.448253904467,1810181.4115360093,754837.810472446,0.37964,100000,0,818016,8549.21981961268,0,0.0,0,0.0,32280,336.87279872077585,0,0.0,34818,361.0672742284418,1495434,0,53643,0,0,7201,0,0,53,0.543461220906535,0,0.0,2,0.0209023546502513,0,0.0,0.05851,0.1541196923401117,0.3078106306614254,0.01801,0.3349133703824779,0.6650866296175221,24.310367191163404,4.285844742181585,0.3146239859679894,0.254330190747643,0.2139881604911203,0.2170576627932471,11.126485011223927,5.783728657618079,19.24422908315892,12110.335648566848,51.904331843446975,14.015353644716996,16.232751796483164,10.902836212993288,10.75339018925352,0.5639114229335672,0.7732758620689655,0.689198606271777,0.5778688524590164,0.1232323232323232,0.7296875,0.8900862068965517,0.8618925831202046,0.7122641509433962,0.1549295774647887,0.4992380371837854,0.6954022988505747,0.6245210727969349,0.5405759162303665,0.1145431145431145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024810629076031,0.0047029728058706,0.0068076903566174,0.0090593325343787,0.0113876687815194,0.0140058018219756,0.0162320789900039,0.0185283434681467,0.0207256532309138,0.022925362140928,0.0251910586596184,0.0270736086175942,0.028881534318663,0.0308786886596239,0.033089221248066,0.0349022282855843,0.0369262303567361,0.039059096849136,0.0411161127340395,0.0431855603493194,0.0574771480804387,0.0716043178272659,0.0844842785777255,0.0974319049773279,0.1101256077368459,0.1253676703980362,0.1374303454863875,0.149021153313593,0.1599568117677242,0.1700743793669704,0.1826224703118601,0.1950749371913714,0.2065925933987006,0.2158071012652685,0.2254430114869106,0.2358689149365181,0.2450073118183543,0.2541995547460028,0.2627621326740084,0.270479700573443,0.2773556318887848,0.283984982631782,0.290554609123604,0.2954398486336311,0.3002680965147453,0.3051842552248726,0.3096487939007624,0.313872509150061,0.3181524213576159,0.3225270377209179,0.3211783846288303,0.3205824521841957,0.3194203878163153,0.3180775059536696,0.3163685974434261,0.3147094801223241,0.3115488055687391,0.3115744541126252,0.3116865347449075,0.3121626934486579,0.3117632728022338,0.3113921549254026,0.312316715542522,0.3133044333214158,0.313994813178369,0.3149053463698772,0.3163360858091427,0.3171771639966141,0.3201832616374637,0.3244141861937935,0.3252897068847989,0.3286891784099973,0.3311187041255378,0.3328492815652705,0.3359992472713586,0.3403166289727413,0.3439412484700122,0.3378894472361809,0.33244039646397,0.3353658536585366,0.0,1.76627583265775,56.536295899185546,163.72703425158147,250.63228900862907,fqhc2_80Compliance_implementation,91 -100000,95849,45504,430.3852935346221,5896,60.13625598597794,4607,47.44963432065019,1825,18.63347557095014,77.34109898624328,79.63240499441484,63.34986309044478,65.04442726086965,77.1090828453309,79.40558129177887,63.26134933242955,64.96135700966789,0.2320161409123784,226.8237026359685,0.0885137580152246,83.07025120176093,179.85946,126.07247837558538,187648.76002879528,131532.3877928673,381.6081,249.45337758845787,397524.0012937015,259645.96144817155,385.471,187.3541943658322,398747.56126824487,192816.9896972573,3320.73826,1534.0570238008424,3420743.492368204,1556685.1962992256,1110.48997,495.28306444791616,1143620.4029254348,501770.29958363273,1790.31702,763.1987898595504,1828831.850097549,759375.2114067422,0.38249,100000,0,817543,8529.489092217967,0,0.0,0,0.0,32576,339.22106646913375,0,0.0,35175,363.5823013281307,1490710,0,53528,0,0,7300,0,0,77,0.8033469311103923,0,0.0,0,0.0,0,0.0,0.05896,0.1541478208580616,0.3095318860244233,0.01825,0.3393702072116169,0.6606297927883831,24.01993107722176,4.288492066718041,0.3132190145430866,0.2383329715650097,0.223138701975255,0.2253093119166485,10.964419461870628,5.6432250825229415,19.50183124085587,12244.250754245832,52.62396561266621,13.252044933889367,16.414750257745606,11.53452267304868,11.422647747982555,0.5663121337095723,0.7969034608378871,0.6902286902286903,0.5943579766536965,0.1223506743737957,0.723583460949464,0.9385342789598108,0.8168316831683168,0.7201492537313433,0.1184834123222748,0.5040896697970312,0.7081481481481482,0.6410009624639076,0.55,0.1233373639661426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682395828059,0.0047623390177422,0.0072320441428556,0.0094117408166994,0.0118614437013396,0.0139013270373687,0.0162800411585521,0.0182606477939301,0.0204379711151512,0.0226277670935799,0.0247679921332431,0.0271689521133116,0.0292419884963023,0.0312683273142574,0.0334480555612802,0.0355568858567196,0.037464066345418,0.0393004051267704,0.0413625556743737,0.043365621716105,0.057815644846753,0.0713658597767465,0.085149178679182,0.098313131525324,0.1103773684265958,0.12632045973126,0.1391366997944523,0.1504976182374957,0.1612985848754562,0.1714742043712684,0.1846342618504327,0.1972764834404136,0.2086001630877956,0.2196433842420002,0.2288427469492402,0.2384545494836679,0.2478127929295183,0.2566635538203625,0.2644852281884526,0.2713650735462585,0.2785067925663635,0.2855004152095346,0.2922044887190468,0.2981812953777586,0.3029916554312575,0.3076240150926645,0.312057270155941,0.3164048088543986,0.32105699052746,0.3245248152059134,0.3242034957313296,0.3222908555627399,0.3215216992966581,0.3202970082068057,0.3195242490100926,0.3175537869377866,0.3160322769860016,0.3173913758781238,0.3176367659924862,0.3194314837412964,0.3198071817274558,0.3210543029533185,0.3213353540456344,0.3220003597769383,0.3228866677960359,0.3253564688613965,0.3252423020842268,0.3277870741641145,0.3285598961075427,0.3322743338231206,0.3356133150934792,0.3394081079645077,0.3432845241100732,0.3434220532319391,0.3455951707225052,0.3473971951509389,0.3543234526186454,0.3597180261832829,0.353967821107172,0.3590718904526436,0.0,2.3978294975639467,56.98877053803694,170.10128299236294,246.8943900192692,fqhc2_80Compliance_implementation,92 -100000,95656,44957,426.95701262858574,5794,59.45262189512419,4571,47.3467424939366,1786,18.39926402943882,77.31769350596971,79.74091297043378,63.289715480586615,65.08192846359496,77.09916483472674,79.5207934292009,63.208273277169,65.00164899554461,0.2185286712429786,220.1195412328758,0.0814422034176161,80.27946805034958,179.14248,125.41107634105326,187277.8288868445,131106.33555767886,378.02937,246.3848875619568,394766.8206908088,257144.0030546508,379.24066,183.702126958962,394013.8726269131,190132.24263743675,3230.21406,1484.8886389180427,3348811.2820941703,1524225.8707431245,1079.36879,480.2608751126698,1118590.9822698005,492275.94203465496,1738.20674,729.2813655596859,1792187.588860082,740461.5544692846,0.37858,100000,0,814284,8512.62858576566,0,0.0,0,0.0,32327,337.49059128543945,0,0.0,34684,360.1760475035544,1495722,0,53656,0,0,6937,0,0,63,0.6481558919461403,0,0.0,0,0.0,0,0.0,0.05794,0.1530455914205716,0.3082499137038315,0.01786,0.3353047478232298,0.6646952521767702,24.316072534004903,4.233909162155792,0.3082476482170203,0.2553051848610807,0.2231459199299934,0.2133012469919055,11.156594566007824,5.886106489352529,18.926853875287943,12063.061760481503,51.98952898532908,14.073502846987694,15.914883632527554,11.498557761186424,10.502584744627407,0.571866112448042,0.778063410454156,0.7111426543647977,0.5843137254901961,0.1107692307692307,0.7294761532447225,0.9101123595505618,0.8662952646239555,0.7159090909090909,0.1327014218009478,0.5106318347509113,0.6966759002770083,0.6580952380952381,0.5383597883597884,0.1047120418848167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894886133398,0.0044517908570964,0.0067208121827411,0.0089126922021565,0.0109577054951316,0.0130399348003259,0.015291861342909,0.0174909837656698,0.0196186791931472,0.0218126652862912,0.0238977570189395,0.0258390227852266,0.0280297803544397,0.0302345732499845,0.0323597177306869,0.0343857034944484,0.0365681700362882,0.0385042846014022,0.0403151114024954,0.0421828723981145,0.0566719963214931,0.0703583403185247,0.0837534660952861,0.0969583350886801,0.1092771529647816,0.1246544730515457,0.1364080765143464,0.14886155289302,0.1598861776441767,0.1705622032696728,0.1834480377985372,0.1953640589950042,0.2066122004357298,0.2164932647026612,0.2253386085365719,0.2358330467961445,0.2450129077681295,0.2539696840018919,0.2618642143505904,0.2688002016660364,0.2765403227673713,0.2827391746908308,0.2891617624421262,0.2937494003645783,0.2984726140675163,0.3032786885245901,0.3072572572572573,0.31185927602961,0.3161943739315132,0.3207442523802606,0.3196631862579993,0.3182687413155035,0.3172868369905073,0.3152757724516315,0.3146524222865198,0.3122063212673146,0.3099208860759493,0.3105595150323584,0.3118133038071714,0.3129520052596976,0.3136984514469932,0.3140089975050586,0.3141664590082232,0.3154228414233738,0.3172622739634524,0.3195932308647725,0.3200316527243952,0.3231339102284754,0.3252819156341361,0.3282364532019704,0.3298253572238603,0.3302116402116402,0.3310530940128028,0.3320968962906889,0.3367022272131761,0.3436948074885199,0.3477595962685426,0.3482178614337204,0.3477310005467469,0.3571156047310187,0.0,1.7288185139184302,56.454800527661,169.23817775028684,244.62463189057308,fqhc2_80Compliance_implementation,93 -100000,95713,44755,422.7220962669648,5979,61.41276524610033,4720,48.76035648240051,1846,18.95249339170228,77.34880342590687,79.7062083310792,63.338894218876014,65.07715397015444,77.11684537994543,79.47500030237173,63.25375010337613,64.9940163778768,0.2319580459614343,231.2080287074707,0.0851441154998795,83.1375922776374,180.2713,126.1330079166013,188345.67927031856,131782.52475275175,382.40995,248.6425902072063,398977.23402254656,259218.9699374649,385.73911,186.72493971572072,399455.18372634856,192253.5923287061,3366.10387,1534.717871163428,3480554.1253539226,1567627.289288856,1144.62854,507.37566518236696,1181040.976669836,515530.3644836231,1808.07408,754.9795527162925,1858890.0358363024,764345.8482645599,0.37681,100000,0,819415,8561.167239559934,0,0.0,0,0.0,32669,340.73741289062093,0,0.0,35117,363.28398441173096,1491255,0,53573,0,0,7122,0,0,82,0.8567279261960236,0,0.0,1,0.0104479015389758,0,0.0,0.05979,0.1586741328521005,0.3087472821542064,0.01846,0.3403781979977753,0.6596218020022246,24.32903587677901,4.407897563874685,0.3281779661016949,0.2370762711864406,0.2141949152542372,0.2205508474576271,11.253051189632332,5.792022441642331,19.67768864958861,12056.806049986944,53.51765958182799,13.266291758362955,17.622236278604138,11.22069545046962,11.40843609439127,0.5603813559322034,0.7721179624664879,0.7017430600387347,0.559841740850643,0.1229586935638808,0.7284046692607004,0.8997555012224939,0.8694581280788177,0.7530864197530864,0.1409691629955947,0.4975254730713246,0.6985915492957746,0.642169728783902,0.4986979166666667,0.1179361179361179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004439849166768,0.00674750139516,0.0089293877426629,0.0113571660972832,0.0135186033491118,0.0158092694710876,0.0180871695416964,0.0202953349343416,0.0223632362724527,0.0246294815816985,0.0266947195566274,0.0287976147637896,0.0311325708049787,0.0331638179136193,0.0353275470138458,0.0373361495930918,0.0394675409563927,0.0417957622008276,0.0439366944852519,0.0579973476186,0.0720930962671494,0.0845135435681165,0.0965105147437853,0.1090955113061086,0.1247223573710151,0.1376204218478122,0.148856668369954,0.1594487768400811,0.1689746532656848,0.1820316455014487,0.1929896684156434,0.2042911360744695,0.2139529797703663,0.2236316629077507,0.2337794717248714,0.244415654038599,0.2525157020328223,0.2603434772244861,0.2683343068870334,0.2747557983426693,0.2815321637426901,0.2877331692074614,0.2930978710148921,0.2978493448455924,0.3038422213188465,0.3086645081444626,0.3130196018610327,0.3172967521721141,0.3214850545627076,0.3196571305541351,0.3179311577760358,0.3167485811657677,0.3151955613991996,0.314134569662387,0.3118177503559563,0.3102045983195405,0.3096065573770492,0.310727812468011,0.3117842234828213,0.3116467816134944,0.3128586358527399,0.3139415737855753,0.3148992268847477,0.3149278846153846,0.3159513199384984,0.316204179513532,0.3206388206388206,0.3257823200927194,0.3295720926536613,0.3329225432470674,0.3364181020648336,0.3380021646399694,0.3425142329589167,0.3439188548677599,0.3451539475260572,0.3426878702837543,0.3499689376682543,0.3444506726457399,0.3494351382937281,0.0,2.0245646275829285,56.679303427900585,170.5192523616843,262.2531674205758,fqhc2_80Compliance_implementation,94 -100000,95638,44970,426.04404107154056,5820,59.484723645412906,4550,47.010602480185696,1749,17.879922206654257,77.26744378178137,79.68315343105853,63.28338998351626,65.0696297947692,77.04331804146514,79.46267660871334,63.19936314469911,64.98980762188442,0.2241257403162251,220.47682234519075,0.0840268388171452,79.822172884775,177.42164,124.35268567088912,185513.74976473788,130024.34771836417,375.83326,245.2462801243911,392424.36060979945,255881.3757339041,381.18506,185.07398519884683,395518.7268658901,191035.79272191724,3229.87133,1499.6288632815665,3338681.162299504,1529523.2264179152,1079.2133,486.8754461806898,1115329.0219368872,495974.9432032137,1711.94252,728.0840406801963,1751896.2337146322,728039.9265588088,0.37927,100000,0,806462,8432.443171124449,0,0.0,0,0.0,32020,334.2290721261423,0,0.0,34819,361.0280432464083,1504225,0,53945,0,0,7089,0,0,75,0.7842071143269411,0,0.0,1,0.0104560948576925,0,0.0,0.0582,0.1534526854219949,0.3005154639175257,0.01749,0.3376047313947757,0.6623952686052242,24.18338232645919,4.35354279273849,0.3171428571428571,0.2518681318681319,0.218021978021978,0.2129670329670329,11.423511035389932,5.84218077004364,18.71056325156197,12161.323511188442,52.09417590780622,13.728307796457612,16.63740502809065,11.031572976747292,10.69689010651066,0.5756043956043956,0.7923211169284468,0.7110187110187111,0.5645161290322581,0.1289989680082559,0.7412040656763096,0.908653846153846,0.854679802955665,0.8240343347639485,0.1383928571428571,0.5108529501681442,0.726027397260274,0.6547733847637416,0.4848484848484848,0.1261744966442953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022493768618153,0.0046136686270533,0.007421621182586,0.0095215836110885,0.0118312495549293,0.0141463315272742,0.0163957827762709,0.0185810983266802,0.0208897841491221,0.0232050875055042,0.0252704989487718,0.0273143772856144,0.0294523084519792,0.0313443447259688,0.0335363336085879,0.0354403159440067,0.0372338221890794,0.0392659560113345,0.0410988828094118,0.0432683786348044,0.0575982441471571,0.0721752063345762,0.0851474958780966,0.0976791205088244,0.1095285857572718,0.1254262416604892,0.1381533526643936,0.1494660783937592,0.15944803979248,0.1697150651387084,0.1822299877046528,0.1946701332466688,0.2068695311479692,0.2169987853320639,0.22719716402629,0.237929582770158,0.2467213572185947,0.2557242031121662,0.2642364106988783,0.2705121886926524,0.2777192474674385,0.2845227929392773,0.291214320385476,0.2962669737536587,0.3015344211268633,0.3069149329977049,0.3108214701573827,0.3149128387835602,0.3190009197963493,0.3234781230183893,0.3229225665506918,0.3219986503050586,0.3195983867783512,0.3182212832460278,0.3174726060028585,0.3153205649180378,0.3132862695327992,0.3130828845396033,0.3133550822416178,0.3144188205054976,0.315204349456318,0.3159135482081657,0.3163141106354403,0.3177925359450817,0.3179520508376661,0.3187898421987668,0.3194891821783872,0.3220775954222474,0.3243699251291785,0.3270319853234426,0.3277558150225246,0.3278300618445818,0.3312264572559535,0.3358254971481424,0.3333965484543902,0.3332933269323092,0.334261407579273,0.3319713993871297,0.3268361581920904,0.3289578361177406,0.0,2.2249446468100555,55.99012553891351,171.44427096949565,242.7100954242106,fqhc2_80Compliance_implementation,95 -100000,95835,45292,428.5595033129859,5828,59.60244169666615,4590,47.268743152293005,1797,18.312724996087027,77.40182060844235,79.71594132124845,63.36325590393732,65.07595795431799,77.16928905185412,79.4886037449547,63.27597231409023,64.99393583474277,0.2325315565882277,227.33757629374907,0.0872835898470896,82.02211957521399,179.77388,125.98497969686112,187586.64371054416,131460.08524950285,381.39111,249.1351287859798,397345.2809516356,259342.00216828907,387.05841,187.42758336627145,400766.504930349,193102.8189978673,3251.14803,1502.6057419403248,3348791.9444879224,1524328.0433446283,1044.00017,472.9966573148715,1072924.0987113267,477173.5436099431,1756.90804,749.8833744523805,1792685.0106954663,746278.7052380356,0.38006,100000,0,817154,8526.665623206554,0,0.0,0,0.0,32607,339.5940940157563,0,0.0,35296,365.1797360045912,1493739,0,53586,0,0,6865,0,0,67,0.6991182762038921,0,0.0,0,0.0,0,0.0,0.05828,0.1533442088091354,0.3083390528483185,0.01797,0.3395203679369251,0.6604796320630749,24.037082335633325,4.217340713516779,0.3163398692810457,0.25359477124183,0.214161220043573,0.2159041394335512,10.839401536827936,5.613236547143548,19.20252391771364,12102.84416839703,52.4267719934696,14.073632257559373,16.438120708314308,10.87707897888405,11.037940048711866,0.562962962962963,0.813573883161512,0.6880165289256198,0.5493387589013224,0.0988900100908173,0.7369219105382866,0.9211087420042644,0.8585858585858586,0.7094017094017094,0.1545454545454545,0.4928156527055946,0.7410071942446043,0.6240530303030303,0.4993324432576769,0.0830090791180285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020454039166447,0.0044086795244707,0.0065738749340583,0.0088160313639456,0.0112239607161374,0.0132741561138482,0.0152983743566223,0.0176260461318636,0.0199317210785616,0.0222920483506135,0.0246630106093998,0.0268095414049349,0.0289150434291,0.0308793245469522,0.033056913587887,0.0350492880613362,0.0370473883609713,0.0392711962833914,0.0413416293587892,0.0432963510334922,0.0578860635390809,0.0717690844083885,0.0851208752056502,0.0969199092360702,0.108889825152728,0.1245088512400185,0.1372665345947263,0.1486887284865364,0.1593878073770492,0.1690555769807601,0.1815903272304812,0.1935002755952316,0.2045965770171149,0.2155283575565512,0.2256769980099612,0.2357891007329657,0.2450475170659884,0.2545822557067356,0.2632498411834105,0.2706628360822736,0.2775150050305883,0.2844601860943563,0.2906826862812341,0.2960322974818506,0.3014703204108641,0.3063514745374363,0.311441578907872,0.3146307359857633,0.3188615782664942,0.3226499670402109,0.3211792712942664,0.3201748357478626,0.3183058188261102,0.316519182544029,0.3149363637710577,0.313208816067007,0.3107092086558206,0.3104492763114808,0.3107110588315518,0.3108389554443989,0.3110754054256034,0.3120503065307812,0.3133599181577134,0.3141417294742006,0.3154518252543387,0.3162688116242864,0.3163713678242381,0.3193130366900858,0.323109668864929,0.326747540206267,0.3320451032099663,0.3362714384325386,0.3395585738539898,0.3379843785546371,0.3423791821561338,0.3402932551319648,0.34401093062092,0.3388011340623734,0.3420980553273076,0.337151584574265,0.0,2.3622283621353453,57.73895889671003,170.07179833867704,240.93818209079976,fqhc2_80Compliance_implementation,96 -100000,95700,45589,433.75130616509927,5772,59.059561128526646,4501,46.50992685475444,1735,17.784743991640543,77.32145341825886,79.71081691859635,63.3143933609397,65.08121136639839,77.099607958635,79.4901761730676,63.2312766911157,65.00122068834968,0.2218454596238501,220.64074552875468,0.083116669823994,79.99067804871629,179.36248,125.69251413029664,187421.6091954023,131340.14015704978,382.16399,249.49754783322555,398779.25809822365,260151.8368163276,385.24353,186.58959908121463,399970.0731452456,192910.1791673252,3179.89585,1463.8522594449933,3285776.9592476487,1492627.9618024991,1023.82009,457.12590571164606,1060865.078369906,468710.92833115446,1688.66988,718.6785661532305,1731748.631138976,721412.8067208875,0.38341,100000,0,815284,8519.164054336468,0,0.0,0,0.0,32654,340.6478578892372,0,0.0,35129,364.4514106583072,1493192,0,53583,0,0,7138,0,0,70,0.7314524555903866,0,0.0,0,0.0,0,0.0,0.05772,0.1505438042826217,0.3005890505890506,0.01735,0.3408190224570673,0.6591809775429326,24.30824679183229,4.270920429343275,0.3197067318373695,0.2492779382359475,0.2226171961786269,0.208398133748056,11.16699291209524,5.882234683210598,18.57905992626922,12129.158957898895,51.26308356055797,13.479492306425325,16.291693446117314,11.200795959929115,10.291101848086216,0.5618751388580315,0.7691622103386809,0.665045170257123,0.5848303393213573,0.1311300639658848,0.7213771016813451,0.9063231850117096,0.8315217391304348,0.7325102880658436,0.1421800947867298,0.5006150061500615,0.6848920863309352,0.6078431372549019,0.5375494071146245,0.1279229711141678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0043707534732785,0.0067098424557414,0.0088210485665796,0.0111814260133485,0.0134259636541439,0.015633764035204,0.0174802683302872,0.0195873970025966,0.0215470913985648,0.0235600483913961,0.0254574955328719,0.0275280320954634,0.0296978690078727,0.0318032143852514,0.0338410000310183,0.0357779158897866,0.0378188762272453,0.0397075494264349,0.0417539580792762,0.056529868284989,0.071299213834832,0.084906749509346,0.0978173935005893,0.1098344569999683,0.1253400226505361,0.1381729789402173,0.1500484645782516,0.1602988169158588,0.1701096166634489,0.1834751696649789,0.1955488682737792,0.2069693080721293,0.2172804935408713,0.2273042273042273,0.237189991142604,0.2466480758505298,0.2550357447956476,0.2627765367562848,0.2707171565652517,0.2776492632260751,0.284010523238819,0.290186285416716,0.2954294890231042,0.3010578990198341,0.30529050368747,0.3101218322367598,0.3145396066665819,0.3180284639547058,0.3225190085258345,0.3210678501781991,0.3201170104650204,0.3193700344512409,0.3186198142057584,0.3178255448013776,0.3152343630407495,0.3128885795193874,0.3131097810937115,0.3136385344886402,0.3134740896608295,0.3139856998465167,0.3151899233988786,0.3168267118558965,0.3185935717640743,0.3196967873902057,0.3214817523968756,0.3220639551513071,0.3255323169963462,0.3288720272596339,0.3333994525330265,0.3346818181818182,0.3358514656594137,0.3381486409427865,0.3418954148136789,0.3489381783860311,0.3481587757054041,0.349644952145724,0.3565716629075251,0.3678383614724606,0.3656745264785466,0.0,1.9787582723325592,54.94066924684108,169.30801876281305,239.69953494590368,fqhc2_80Compliance_implementation,97 -100000,95705,44919,425.46366438535085,5874,60.20584086515856,4593,47.39564286087457,1791,18.36894624105324,77.3455376358958,79.7318913797356,63.32130932583449,65.08703356026672,77.11539785753892,79.50354768256695,63.235505167910986,65.00439136067138,0.2301397783568717,228.3436971686541,0.0858041579235049,82.64219959534103,179.04106,125.3623178694229,187075.9730421608,130988.2637996164,377.71275,245.8251323991242,394071.7830834335,256265.38049122217,379.35116,184.1928256680087,392507.3925082284,189504.4326469463,3270.94162,1507.5475148475105,3378707.089493757,1536176.2863460763,1084.4941,486.6756024430794,1118183.0729846924,493535.98290902114,1754.77214,743.738904777776,1801486.2964317435,748167.4549603577,0.37937,100000,0,813823,8503.453320098219,0,0.0,0,0.0,32206,335.90721487905546,0,0.0,34595,357.682461731362,1502191,0,53789,0,0,7065,0,0,71,0.731414241680163,0,0.0,0,0.0,0,0.0,0.05874,0.1548356485752695,0.304902962206333,0.01791,0.3312133072407045,0.6687866927592955,24.53138463178295,4.321162093127339,0.3217940344001742,0.2421075549749619,0.2164162856520792,0.2196821249727846,11.250846787228893,5.84704462931249,19.23841268425842,12161.250395659774,52.37431172680337,13.349720294557894,16.76899801417859,11.025451616467477,11.230141801599425,0.5649902024820379,0.7859712230215827,0.706359945872801,0.5613682092555332,0.1179385530227948,0.7311577311577312,0.9079903147699758,0.8581907090464548,0.7161016949152542,0.2008733624454148,0.500302480338778,0.7138769670958512,0.6482694106641721,0.5131926121372031,0.0935897435897435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023708446894092,0.0046351234849637,0.0068023757551144,0.0092176670257525,0.0114958899650036,0.0137706253819515,0.0158267218698374,0.0183409413518785,0.0203697643979057,0.0228157129398271,0.0247577047330906,0.0267563681183237,0.028925279789335,0.0309131751952682,0.0329821157676391,0.0349230307980191,0.0370017402834175,0.0389716871471272,0.0411185407805659,0.0430003334166875,0.0583388163047905,0.0728100470957613,0.085943075437639,0.098741661932117,0.1103704328748628,0.1259281196454635,0.1381900750156503,0.1498114975824831,0.1601428052247899,0.1704911346756536,0.1825550812745225,0.1951763648374974,0.2060846848808098,0.2169422165811386,0.2257847928499097,0.236376731301939,0.2453322917247921,0.2549046076313895,0.2638093185247371,0.2707396087319848,0.277521370487328,0.2842683496961197,0.2908256772255921,0.296442593124581,0.3018533792635001,0.3071132486254443,0.3114109050028105,0.3151368228664263,0.3189734188817598,0.3225734346648434,0.3215996779171979,0.3198914414167443,0.3189224113714253,0.3178759276604943,0.3166219878848916,0.3148323459353814,0.3132351081320349,0.3134811165845648,0.3141871113237203,0.3143122743036933,0.3150641206181115,0.3165414874853847,0.3168610148124803,0.3168788739958379,0.3178843007026662,0.3197161788490635,0.3211855479315548,0.3240365589371525,0.3263755122053725,0.3302828618968386,0.3364333348455292,0.3403288047787704,0.3427265326570229,0.3473779933313125,0.3506761833208114,0.3518385864374403,0.3541124215040588,0.3501116297950071,0.349400871459695,0.3574730354391371,0.0,2.346288082041362,56.18178646573669,171.1688285903172,245.6679901538565,fqhc2_80Compliance_implementation,98 -100000,95612,45123,428.06342300129694,5915,60.72459523909133,4658,48.15295151236247,1873,19.171233736351088,77.23812690061078,79.66905637025376,63.25655152000609,65.05417251447888,76.99825774313054,79.43321730569846,63.1660015720106,64.9684036045617,0.2398691574802427,235.83906455529305,0.0905499479954912,85.7689099171779,179.07692,125.48173766144832,187295.21398987572,131240.350857056,381.40951,248.4661193174441,398379.6908337865,259335.30615136595,383.72648,185.87564400802177,398599.5063381165,192193.7094604273,3344.48752,1550.950596932537,3457872.7356398776,1582059.2850610148,1076.10363,483.10686826976223,1109258.5658703928,489184.3387560239,1829.23704,781.1383642038799,1873971.070576915,782427.6504226356,0.38057,100000,0,813986,8513.418817721626,0,0.0,0,0.0,32567,340.0305400995691,0,0.0,35048,363.75141195665816,1489935,0,53553,0,0,7128,0,0,63,0.6589131071413631,0,0.0,0,0.0,0,0.0,0.05915,0.1554247576004414,0.3166525781910397,0.01873,0.3458427693303138,0.6541572306696862,24.120559086268724,4.288838821548348,0.3215972520395019,0.2340060111635895,0.2249892657793044,0.2194074710176041,11.248001730551245,5.90765615908268,20.106375391195083,12206.25312121724,53.418180910440576,13.193914286392014,17.162847189190963,11.608982181227116,11.452437253630489,0.55817947617003,0.7770642201834862,0.7096128170894526,0.5591603053435115,0.1017612524461839,0.7266666666666667,0.9388235294117648,0.8904761904761904,0.7276422764227642,0.1119691119691119,0.4894195888754534,0.6736842105263158,0.6391465677179963,0.5074812967581047,0.0982961992136304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432300956705,0.0048177862525737,0.0071886930387458,0.0093613734080074,0.0117142973457091,0.0139979828234359,0.0159620582385639,0.0181221971376326,0.0202219608244259,0.0223799573910193,0.0243682217867293,0.0265510367645547,0.0287769784172661,0.0306900888641471,0.0327471006784877,0.0349119956954978,0.0367406178726933,0.0387791778772737,0.0409527180362682,0.0430033488779693,0.0576366164493837,0.0717227502803307,0.0849776208787745,0.0977143459026753,0.1100491102075302,0.1258924220918162,0.1388487527091921,0.1503906874606914,0.1619123028526183,0.1722922888511698,0.1839734113152982,0.1964219885069933,0.2075895289783997,0.2177434379966025,0.2278158689565466,0.2381993540582235,0.2475052579764621,0.256160413212888,0.2651905427996315,0.2727471063751607,0.2790824495857796,0.2861381146147261,0.292766866433276,0.2985727855330712,0.3035522722839867,0.3077436747211436,0.3118626613753956,0.3168396461261537,0.3212424459029177,0.3247848537005163,0.3237113680570564,0.3223455358621832,0.3211083023823982,0.3200858045627156,0.3182258232674521,0.3169116856383551,0.3149457428385313,0.3144363876071193,0.315610626759113,0.3163466360965823,0.3166306695464362,0.3170325750970912,0.3165822811403601,0.317236122320868,0.3181785309644915,0.3180024564245956,0.3194543738740026,0.3222145154171133,0.3260754862992015,0.328326265308549,0.331249429588391,0.3332978723404255,0.3342155009451796,0.3354406276182496,0.3397484040555764,0.3365870869105021,0.3397252000603956,0.3440495207667731,0.3503132661400163,0.3550587343690792,0.0,2.1963331925674368,59.56076575543036,171.71056060385857,245.46805627987223,fqhc2_80Compliance_implementation,99 -100000,95720,45142,428.3117425825324,5884,60.311324697033015,4628,47.77475971583786,1791,18.31383201002925,77.33641368994157,79.71053988455475,63.332022412709286,65.08909152554253,77.11467020307505,79.49172825111951,63.24961628853156,65.0102510158246,0.2217434868665151,218.81163343523724,0.0824061241777229,78.84050971793499,180.37888,126.35580095841313,188444.2958629336,132005.6424555089,379.77995,247.37941966132396,396170.8420392812,257853.2770577776,385.72785,186.60019467812396,399131.1220225658,192099.5838712822,2622.34908,1213.933269842991,2708218.052653573,1237107.1937394142,1073.47581,477.5230206387625,1107933.106978688,485872.6538121903,1735.94898,725.0213030677443,1777060.3635603846,726916.6846098397,0.38052,100000,0,819904,8565.649811951525,0,0.0,0,0.0,32500,338.9364814040953,0,0.0,35230,364.29168407856247,1493157,0,53589,0,0,7110,0,0,70,0.7312996239030506,0,0.0,1,0.0104471374843292,0,0.0,0.05884,0.1546305056238831,0.3043847722637661,0.01791,0.3471612168537498,0.6528387831462502,24.133888548072505,4.208108042078352,0.3230337078651685,0.2510803802938634,0.2180207433016421,0.2078651685393258,11.146085659446635,6.0835850810319645,19.120437296151277,12106.79189073068,52.76018118030067,14.166834387266409,16.896440461794654,11.305360652388332,10.391545678851267,0.574114088159032,0.8123924268502581,0.6949832775919732,0.5688800792864221,0.1039501039501039,0.7587822014051522,0.9419642857142856,0.8684863523573201,0.7109375,0.1034482758620689,0.5034359127576935,0.7310924369747899,0.6309523809523809,0.5205843293492696,0.1040609137055837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218718333265,0.0045030882666152,0.0066196253616934,0.0088625091470851,0.0112916187705359,0.0134744260892591,0.0156436431128198,0.0179191341637737,0.0199564475069776,0.0221833220727637,0.024263484839166,0.0263136280569187,0.0282073958290485,0.030127307185234,0.0321116064058114,0.034440344403444,0.0364165380991333,0.0382911622213231,0.040357952065188,0.0425,0.0569205868532344,0.0708008119023206,0.08345568186585,0.0964985125773932,0.1088193756455386,0.1238705177388161,0.1360186559253763,0.1477105973926543,0.1585121144198954,0.1685396869609933,0.181325067803177,0.1928817078710012,0.2052379917409258,0.2150036050601936,0.2259840443067185,0.2360232650714317,0.2463427406326251,0.2560198658381743,0.2641935008557471,0.2713124220974511,0.2779433853264009,0.2842147052298495,0.2901549508692366,0.2959303299279852,0.2999672643945731,0.3050424302053868,0.3094997189432265,0.3137939794233456,0.3177698185908791,0.3211926206269038,0.3203687504205639,0.3189529343725042,0.3185335532157808,0.3163778889820948,0.3156053704861421,0.3141494533130913,0.3126505642196018,0.3125575128171421,0.3125919086214562,0.3136536640280185,0.3153467108837802,0.3168934800213316,0.3174194897532413,0.3192775114282529,0.3196267063311182,0.3215919725486118,0.3239404418278986,0.3265615141955836,0.3298193829503127,0.3321660233196705,0.3360084380445748,0.3392521860415213,0.3426246315519672,0.3441242370393262,0.3490512333965844,0.3519344341328191,0.3528591352859135,0.3539119804400978,0.3636363636363636,0.3675018982536067,0.0,2.1766120424486304,56.13554708771282,173.64800918468848,248.70969633071087,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95606,45149,428.7492416793925,5875,60.19496684308517,4630,47.81080685312637,1825,18.712214714557664,77.26635035352784,79.7039119965668,63.26822878755484,65.07181676369133,77.03948642449753,79.47952077797231,63.18305406250962,64.99005515236685,0.2268639290303156,224.39121859449077,0.0851747250452206,81.76161132448101,179.52748,125.70141854813178,187778.4657866661,131478.58769128696,383.63742,250.35696633797664,400656.1094491978,261250.1582933882,386.08402,187.0869280352922,399832.5209714872,192594.878058832,2670.08892,1231.4687958152278,2759458.067485304,1254719.7412455569,1089.79536,483.6058566543956,1123622.136685982,489593.2991762256,1791.77582,754.1833304413003,1839059.2013053573,759236.1234977758,0.3795,100000,0,816034,8535.384808484823,0,0.0,0,0.0,32792,342.3529903980922,0,0.0,35253,364.7260632177897,1488758,0,53367,0,0,7145,0,0,65,0.6798736480973998,0,0.0,0,0.0,0,0.0,0.05875,0.1548089591567852,0.3106382978723404,0.01825,0.3352788586251621,0.6647211413748378,24.268006805148254,4.2872189072106766,0.311231101511879,0.2503239740820734,0.2161987041036717,0.2222462203023758,11.145037543941797,5.784102408684458,19.52131734509185,12109.05208991128,52.742161648148446,14.027045053000904,16.1628125413315,11.321861197199166,11.23044285661688,0.5632829373650108,0.7955133735979293,0.6897987508674531,0.5834165834165834,0.1049562682215743,0.7290322580645161,0.9244851258581236,0.8440111420612814,0.7154811715481172,0.1268292682926829,0.5026548672566372,0.7174515235457064,0.6386321626617375,0.541994750656168,0.0995145631067961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0046766421506467,0.0069972681202839,0.0093033186920449,0.011685429856884,0.0136367805782891,0.015676028739386,0.0177799576959627,0.0200437914381599,0.0221026744543498,0.0242928691654008,0.0264683510474271,0.0285764285640756,0.0305914133707262,0.0325469456896729,0.0346533116728578,0.036485379935114,0.038471525462458,0.0404879368846145,0.0426361844369583,0.0570604162964047,0.0710415727864351,0.0842139540746654,0.0965366871010554,0.1087932400316873,0.1242703842201718,0.1369066598643794,0.1487300926962996,0.1601733918441614,0.1697217148382937,0.1818211238282219,0.193217913554416,0.2051321149280066,0.2158508260659976,0.2263348176888144,0.2359394759612184,0.2458749008523901,0.2544056211785107,0.2628350052828302,0.2704962212869413,0.2772496207691149,0.2837690695577853,0.2903244907626717,0.2954872434298868,0.300841173753434,0.3052357506879404,0.3099412273336758,0.3150540099867522,0.3189145759900477,0.3229306930693069,0.3212731852530341,0.3195039024323096,0.317974298275279,0.3171450871563611,0.3161447646236655,0.3135432299163885,0.3104687425794298,0.310357852556207,0.3111555350521981,0.3128206044790791,0.3133106827098155,0.3137363616562048,0.3153720256829913,0.3154997650533664,0.3156132575392619,0.3174470529861855,0.3201736845112266,0.3240209371255597,0.3281420284760063,0.3325908837801288,0.3366914345626111,0.3402253640905708,0.3417257085020243,0.3465969380021221,0.3501024781069499,0.3517953532034734,0.3542329244282902,0.3564972886121711,0.3547859285519498,0.356766917293233,0.0,2.3598217421454244,54.044630652426015,178.03648662113085,250.7209660114992,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95704,44964,426.6279361364207,5944,60.76026080414612,4705,48.566413107080166,1905,19.487168770375327,77.34534288058313,79.71343268085224,63.32656324425341,65.07429039018032,77.10249892168868,79.47412374738587,63.234219030105,64.9863522470684,0.2428439588944542,239.3089334663614,0.0923442141484116,87.93814311192705,179.1768,125.47656159682452,187219.76092953276,131109.00442700883,380.9192,248.16430642866231,397412.2398227869,258698.1907011853,380.30477,184.60948702484612,394216.8665886483,190405.46517697565,2712.58496,1264.4573843212663,2799675.833820948,1286544.11970374,1142.7589,517.8354804576538,1175402.0730585973,522434.08777771913,1873.02796,802.1465846975958,1917632.679929784,803760.889618184,0.37964,100000,0,814440,8509.98913316058,0,0.0,0,0.0,32580,339.8081584886734,0,0.0,34834,360.7268243751568,1494009,0,53675,0,0,7005,0,0,67,0.7000752319652261,0,0.0,1,0.0104488840591824,0,0.0,0.05944,0.1565693815193341,0.3204912516823687,0.01905,0.3450273575796588,0.6549726424203411,24.123776848499688,4.245145070369565,0.3094580233793836,0.2412327311370882,0.2210414452709883,0.2282678002125398,11.31483758052817,5.997564353373731,20.405353703807307,12096.913118241177,53.59587659683673,13.535161004840209,16.534635424963675,11.687991958204506,11.838088208828353,0.573432518597237,0.8035242290748899,0.7177197802197802,0.5903846153846154,0.1182495344506517,0.7299484915378955,0.9216152019002376,0.9017632241813602,0.7509157509157509,0.1529850746268656,0.5098625224148237,0.7338935574229691,0.6487252124645893,0.5332464146023468,0.1066997518610421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0042770559260535,0.0066251369668438,0.0086329473898029,0.0106977973926661,0.012767387165416,0.0149740578779446,0.017108500148015,0.0191973503976447,0.0214554053085749,0.0236711261469065,0.0256626171967261,0.027967208730624,0.0300411056280713,0.0323432888191706,0.0342785077064618,0.036517668503252,0.0384411810492449,0.0403651790541945,0.042176459553536,0.0566695910097338,0.0705852800803818,0.0834487679973135,0.0961961382648498,0.1079803288376707,0.1229876906467967,0.1353733118151703,0.1473038327971536,0.1579751814363129,0.1679182132206226,0.1817280544839328,0.1942820012995451,0.2056749167374126,0.2158226115521489,0.2256980778763011,0.2359495748007051,0.2451522154124384,0.2538712581589016,0.2617195926384268,0.2699429383321493,0.2778343595203926,0.2841383666927927,0.2906587095781085,0.2962243564380178,0.3011353966594539,0.3056172291296625,0.3104553880066129,0.3147102223579097,0.3190692247861031,0.3214658578810345,0.3201548505449444,0.3193780069202244,0.3185066952935194,0.3181015260765065,0.3166490494126754,0.3135552931433741,0.3119736592161084,0.3138348479380597,0.3143412107478148,0.3155054498824535,0.3158523830868071,0.3172639334896274,0.3185463659147869,0.3197997899582151,0.319730510105871,0.3209497279425164,0.3215622872702519,0.3236075929574382,0.3273952984735757,0.3318603274807654,0.3341525578008374,0.3403521799087727,0.3434965738354184,0.3479587943533003,0.3505590528986188,0.3574639224035959,0.3563270899954317,0.3633791430881164,0.3628854625550661,0.3620015637216575,0.0,2.2320973020113275,59.67730774730928,170.63473929638957,248.83431272864496,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95671,45027,427.0364060164522,5753,58.92067606693773,4515,46.70171734381369,1780,18.30230686414901,77.2498286400838,79.64839183209695,63.26585613190741,65.03884206524552,77.02504961900874,79.42411635425256,63.18222859642988,64.9573225368067,0.2247790210750651,224.27547784438676,0.0836275354775324,81.51952843881816,180.38966,126.36240327393264,188552.07952253037,132080.15310170545,380.99877,248.6616864334883,397746.2972060499,259421.1264470191,385.96865,187.25647005054307,400536.8502472013,193462.6247642309,2589.29808,1197.4573165068805,2681131.753613948,1226312.7023054117,1048.22498,467.4093814773956,1084309.466818576,477223.2288255497,1734.98396,726.1989906880137,1786001.024343845,735550.5346257652,0.37771,100000,0,819953,8570.549069205925,0,0.0,0,0.0,32589,340.1135140220129,0,0.0,35218,365.17858076115016,1481062,0,53210,0,0,7093,0,0,58,0.6062443164595331,0,0.0,0,0.0,0,0.0,0.05753,0.1523126207937306,0.3094037893273075,0.0178,0.3444333996023856,0.6555666003976143,24.18637933946984,4.293522270409779,0.3136212624584718,0.2451827242524916,0.2256921373200442,0.2155038759689922,11.208207454523906,5.897048607902082,18.914212149492005,12035.02156500607,51.52397984341273,13.440581521080247,16.204693648120863,11.395208165471242,10.483496508740371,0.5616832779623477,0.7877145438121048,0.6913841807909604,0.5711481844946026,0.105858170606372,0.7354116706634692,0.9081885856079404,0.8727735368956743,0.7110266159695817,0.125,0.4950980392156863,0.71875,0.6217008797653959,0.5224867724867724,0.1011523687580025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024818671745208,0.0047156895555082,0.0070137331127373,0.0090631985368827,0.0111381228957085,0.0136170126087222,0.0156218134355753,0.0177668862000306,0.019932501534056,0.0221833041447752,0.024514580533987,0.0264098613251155,0.0283685753974378,0.0305700710140894,0.0325934338220111,0.034770557756151,0.0365876404028681,0.0386412242270717,0.0404178067227765,0.0427271115930393,0.0573706261558232,0.0709356510812084,0.0838230972671172,0.0963478919624162,0.1080085689260349,0.1234271321685204,0.1353147929873743,0.1471729076532895,0.1581233152197167,0.1686503673785072,0.181712251173329,0.1943074003795066,0.2054519681605059,0.2165968368175137,0.2260741918038034,0.2358581762019578,0.2444757874941232,0.2529640701675221,0.2619424304852092,0.2691803956710553,0.2752758100104517,0.2817205816712477,0.2878555551593386,0.2936979642908706,0.2985933347960701,0.3035126777983921,0.3076749208900497,0.3123187943035954,0.3166681824678108,0.3199242594774963,0.3194226714957565,0.3176335835725326,0.3164596317180367,0.3151622350450894,0.3136390052004947,0.3109045164457535,0.3076801166439507,0.3081237561063868,0.3084427253589827,0.3094210554590548,0.3101038751244435,0.3118650109916226,0.3119025658225725,0.3129846264174622,0.3154150388269908,0.3161239906225579,0.3168243684823686,0.3195444020276613,0.3222156253274194,0.3267451972487943,0.3297319289363049,0.3327723136801136,0.3366039622523592,0.3385755330409798,0.3387743680626807,0.3413489736070381,0.3422808613891416,0.3453587353060397,0.3404663923182441,0.334216502649508,0.0,1.851261906681234,55.14842587953571,171.20058643446174,240.44547974664837,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95748,45088,427.74783807494674,5859,60.0221414546518,4681,48.335213268162256,1822,18.66357521828132,77.32698317968122,79.687275624404,63.31555014592704,65.06150643366422,77.1011423622099,79.46176586269895,63.23123368844755,64.97944043276607,0.2258408174713224,225.509761705041,0.0843164574794883,82.06600089815197,180.29594,126.2462396723306,188302.5650666332,131852.61276719155,380.30104,247.41166485963396,396625.8511927142,257835.62713743895,382.38362,184.87524328016903,395670.7711910432,190250.40904078376,2666.75156,1228.787198910186,2754758.449262648,1252983.4770491594,1075.52677,481.3266843582402,1106851.5373689267,486438.7827601716,1774.40534,746.1248827773941,1819539.165308936,752010.6712038993,0.3808,100000,0,819527,8559.207503028783,0,0.0,0,0.0,32341,337.17675565024854,0,0.0,35090,362.8065338179387,1490866,0,53547,0,0,7051,0,0,67,0.699753519655763,0,0.0,2,0.0208881647658436,0,0.0,0.05859,0.153860294117647,0.3109745690390851,0.01822,0.3477058249267816,0.6522941750732184,24.115975817697908,4.273944069231315,0.3300576799829096,0.2450331125827814,0.2140568254646443,0.2108523819696646,11.34280218430297,6.073186432514964,19.258351022616807,12080.11821603426,53.1084104414184,13.876360174514012,17.55547789365399,11.003978503697471,10.672593869552925,0.5680410168767357,0.7872711421098518,0.6990291262135923,0.5808383233532934,0.0952380952380952,0.7368839427662957,0.9160997732426304,0.8625592417061612,0.6767676767676768,0.1269035532994923,0.5059888986269354,0.7067988668555241,0.6375779162956366,0.5572139303482587,0.0873417721518987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020870269996454,0.0043803613798138,0.0064652984998883,0.008899544863459,0.0111568777015001,0.0132681635354615,0.0153566912754415,0.0177714717350917,0.0199807857405666,0.0220366219383629,0.0241160192682176,0.0262995811776299,0.0282266354179515,0.030170416516501,0.03228768013534,0.0342639856165657,0.0363901772403511,0.038388532190978,0.0402635736260081,0.0422535211267605,0.0566638480891088,0.0705296523731313,0.0843834524982701,0.0971197308945653,0.109364953886693,0.1245823994587051,0.1370365657079833,0.148647353796033,0.1597652742742314,0.1694305801534911,0.1822620805622325,0.1950157585209734,0.2059655690251811,0.2165326330762076,0.2256349284982991,0.2353038986376384,0.2442773675332074,0.2530552020093937,0.2612894064186311,0.2684998395305121,0.2753045814610645,0.2822369037578484,0.2887964247187548,0.2949656695635473,0.3009804398598676,0.3056360787990181,0.3101538615747005,0.3148369842078451,0.3189534522081692,0.322697281604645,0.3218641466763589,0.3203918223591888,0.3183987834584137,0.3160609782530164,0.3146863534409768,0.3126800269657412,0.3106477963525836,0.3110677318285461,0.3114211074495877,0.3118141655978338,0.3129849490511358,0.3139216034404529,0.3146288804577944,0.3153239675697407,0.3165165165165165,0.3169384671494816,0.3170197639698563,0.3199171816670326,0.3249098736481047,0.3290513833992095,0.3312505659693924,0.3341611624834874,0.3388176415389428,0.3395513933992901,0.3411336938280813,0.3425654265931229,0.3420532319391635,0.3462235649546827,0.3468992248062015,0.351981351981352,0.0,2.078822138552665,55.07779234676256,179.68803353064504,250.36402490165307,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95759,45240,429.0458338119655,5949,60.97599181278,4717,48.674276047160056,1873,19.141803903549537,77.39144353273707,79.72988893736066,63.36142006586866,65.08705226777096,77.15636435620222,79.49771511218661,63.27383134514226,65.00331034951815,0.2350791765348532,232.17382517404417,0.0875887207263943,83.7419182528123,179.00938,125.40634386829706,186936.47594481983,130959.57157081012,381.06687,248.4151929592407,397341.9417496006,258817.11588832637,388.61185,188.69832320731763,402298.3740431709,194281.4851877829,2668.78796,1242.862734241907,2753799.642853413,1264871.6922182392,1083.19805,484.7479072823945,1115512.192065498,490643.7125777365,1825.95098,769.2510606807127,1867455.2365835067,770128.1541693112,0.38114,100000,0,813679,8497.112542946355,0,0.0,0,0.0,32584,339.6338725341743,0,0.0,35480,366.9837822032394,1497805,0,53743,0,0,6918,0,0,73,0.7623304336929166,0,0.0,1,0.0104428826533276,0,0.0,0.05949,0.1560843784436165,0.3148428307278534,0.01873,0.3302429667519181,0.6697570332480819,23.999217295219328,4.233620689296807,0.323934704261183,0.2490990036039856,0.2177231291074835,0.2092431630273478,11.311382875982666,6.049997496147162,19.916978491957146,12182.977748382458,53.91463222619785,14.242069499654548,17.19087778766374,11.624417437836662,10.857267501042909,0.5709137163451347,0.7846808510638298,0.7041884816753927,0.5647517039922103,0.116514690982776,0.7397157816005984,0.9320594479830148,0.8589743589743589,0.7034220532319392,0.1408450704225352,0.5041420118343195,0.6860795454545454,0.6511423550087874,0.5170157068062827,0.1098191214470284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024805605054268,0.0048947576436251,0.0072441711815912,0.0094961456820466,0.011713149840876,0.0136796677794967,0.0159160383126146,0.0181606709245618,0.0200839726629141,0.0221312733411776,0.024149837600795,0.0263462978732135,0.0282470201397451,0.0303616640250303,0.0324928354947116,0.034419354172262,0.0365655499322093,0.0384890631320202,0.0407688069770584,0.042502656416026,0.0578380409594789,0.0724390499110599,0.0858371800251783,0.098785297365515,0.1108498523829607,0.1266430497541373,0.1380136804708627,0.1492191157070513,0.1604993645809972,0.1704953530502642,0.183343919217147,0.1951092893219844,0.2067713711211347,0.2168920838158498,0.2257656706901479,0.2365380784808445,0.2459392871874338,0.2545581181122707,0.2633022739123535,0.2710278235401794,0.2775068189172946,0.2847292828010144,0.2915267464409024,0.2968738771110312,0.302703096185577,0.3073865314561386,0.3122179863758515,0.3162594283824521,0.3206511892745295,0.3245031366967157,0.3230320464566082,0.3210371631829044,0.3194629929008223,0.3189397979332113,0.317904344218574,0.31495270064083,0.3127584356554401,0.313863718145834,0.3153987604712933,0.3163096319247823,0.3170845808383233,0.3180013824429742,0.3193647068683736,0.3215172876804297,0.3223054866147803,0.322907419978069,0.3229139977794859,0.3271457337024918,0.3306590661177381,0.3335321721148492,0.3384039102827646,0.3402551646826456,0.3446792357332658,0.3470790378006873,0.3495728902656528,0.3581263975520772,0.3610440555220278,0.3598,0.3596419853539463,0.3606370875995449,0.0,2.1734652979683906,58.59958017475668,176.3998729245245,250.35636795870568,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95719,44798,424.2731328158464,5922,60.55224145676407,4704,48.46477710799319,1835,18.742360450903167,77.37264048070351,79.73167158975366,63.34029949113111,65.08188635595191,77.1425426260864,79.50576702058498,63.2544860576536,65.00050226792143,0.2300978546171137,225.9045691686765,0.0858134334775115,81.38408803047525,178.409,124.87779542326344,186388.28236818188,130462.91271666382,376.28312,245.2267457775328,392436.182993972,255525.85327363576,384.17032,186.1203341194865,397229.5364556671,191216.03305568133,2683.33928,1252.146010759453,2766840.0631013694,1272062.801133088,1134.02339,510.9920449783826,1165787.8686572153,514990.9695192194,1789.09406,753.8700340795116,1829461.1937024,753428.5001809655,0.37897,100000,0,810950,8472.194653099175,0,0.0,0,0.0,32125,334.9178324052696,0,0.0,35209,363.6686551259416,1502460,0,53985,0,0,7001,0,0,58,0.6059403044327668,0,0.0,0,0.0,0,0.0,0.05922,0.1562656674670818,0.3098615332657886,0.01835,0.3403570854109699,0.6596429145890301,24.110122253756757,4.308186475486592,0.3150510204081632,0.2485119047619047,0.2257653061224489,0.210671768707483,11.24394496061883,5.953688541389277,19.43418034724884,12102.901666614787,53.87155085182916,14.336655945888465,16.99446776376368,11.708064658297609,10.8323624838794,0.5801445578231292,0.7869974337040205,0.717948717948718,0.5875706214689266,0.1220988900100908,0.7416413373860182,0.9066390041493776,0.8438287153652393,0.76,0.1556603773584905,0.5174144037780402,0.7030567685589519,0.6718894009216589,0.5412186379928315,0.1129653401797175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024,0.0046821318901827,0.0069488825993893,0.0093536724081897,0.0114896948621745,0.0135187409654498,0.0156874337437821,0.0176989343894173,0.0199127030369938,0.0219167144378019,0.0239303620313124,0.0264373716632443,0.0284418669216768,0.0304740522559449,0.0325186476699439,0.0346128405473562,0.0367651626529724,0.0385852090032154,0.0406701797054452,0.0428913654827622,0.057564398408704,0.0719666848030804,0.0853167529934783,0.0982331486950946,0.1103766722540244,0.1256924768469573,0.1385100019091661,0.1490629689146189,0.159623661081387,0.1702166452166452,0.1828903153541271,0.1949079183708801,0.206449858603437,0.2162717945352322,0.2258387526271195,0.2356160740995158,0.2452893373816753,0.2537607530513894,0.2623394031647942,0.2703170689754028,0.2779019019946054,0.2840472846441947,0.2893657866047305,0.2950205825522364,0.2995950924721246,0.3045660861413982,0.3095250018779578,0.3137918314911154,0.3175400225187332,0.3210570038371771,0.3194877865059722,0.3180287304969413,0.3164271943033254,0.3155865534569398,0.3149875252465249,0.3138008080313418,0.3120494498545592,0.3118020366999557,0.3113617391008058,0.3127222301237377,0.3140167753960857,0.3153404623368454,0.3157235330966799,0.3146400106861391,0.3162282593071726,0.3177288768943325,0.3182565323357705,0.3212936659070334,0.3245531514581373,0.3278984795505441,0.332204767063922,0.3338083927157561,0.3386904388222738,0.3392884178652536,0.3429290106204583,0.346262341325811,0.3524590163934426,0.3500904886386487,0.3555555555555555,0.3487394957983193,0.0,2.5723095930973336,57.37759168583781,182.9038714686324,244.1164193191259,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95753,44820,424.7282069491295,5753,58.95376646162522,4548,47.01680365106054,1787,18.34929453907449,77.33281654085012,79.69872425513513,63.319784280511655,65.07089438494621,77.11677195430791,79.4820349712968,63.24006124758955,64.99310507232043,0.2160445865422104,216.68928383833477,0.0797230329221037,77.78931262578226,180.5947,126.54778650154958,188604.7434545132,132160.64927631468,377.36301,245.5563630131637,393622.5183545163,255969.758663607,379.78493,184.01087267136768,393439.8295614759,189748.1124103423,2630.61592,1210.9882341247176,2721585.5795640866,1238992.1507678276,1094.90509,484.4866306653715,1134618.675132894,497125.8975336236,1759.8809,729.4104443624589,1809192.6728144288,738031.2044273284,0.37717,100000,0,820885,8572.942884296053,0,0.0,0,0.0,32283,336.6474157467651,0,0.0,34691,359.1845686297035,1491873,0,53485,0,0,6951,0,0,54,0.5535074619071987,0,0.0,0,0.0,0,0.0,0.05753,0.152530689079195,0.3106205458021902,0.01787,0.3358147229114971,0.664185277088503,24.677927242763847,4.30796712604023,0.3128847845206684,0.2350483729111697,0.2260334212840809,0.2260334212840809,11.422307164117637,6.043296344801606,18.811875545660413,12084.863394439177,51.49497509272324,12.87349904161782,16.12057432524159,11.37133685945345,11.12956486641038,0.5736587510993844,0.8016838166510758,0.7203092059030218,0.5924124513618677,0.1147859922178988,0.751628664495114,0.929440389294404,0.8506666666666667,0.7755102040816326,0.1624365482233502,0.5078313253012048,0.7218844984802432,0.6736641221374046,0.5351213282247765,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023508192402395,0.0044932195997687,0.00701594070464,0.0093005763307955,0.0117303544540756,0.0137915580182529,0.0159393834324233,0.0180908626850433,0.0203165579436003,0.0223837804628302,0.0245855418969211,0.0266151887296176,0.0285329439828905,0.0305870236869207,0.0327686180640102,0.0346474272838153,0.0365575807787903,0.0385633191851475,0.0405735616765969,0.0425356808000833,0.0575228629891009,0.0721160888033311,0.0850548436484134,0.0978743087824057,0.1100301452452726,0.1257547080033413,0.1385772159416293,0.1501931693611043,0.1604379172229639,0.1704915923129718,0.1829918275494492,0.1947437894919068,0.2052135330005546,0.2153392007871863,0.2248949602938912,0.2347919480922116,0.2445180944729001,0.2538292724101063,0.2618628775067812,0.2692840540880935,0.2756709215261946,0.2828885767790262,0.2887391494854517,0.2950638889554815,0.3002454256068816,0.3044904199442704,0.3089978347121919,0.3143115135636978,0.3181164955527648,0.3213819131949484,0.320287475438077,0.3190459159811824,0.3175781305015281,0.3164750736525908,0.3153819862392819,0.3130232486952263,0.3101342908210879,0.3104545156424214,0.3103542373748572,0.3100498930862437,0.3106073359145577,0.3121309662513082,0.3130489335006273,0.3130675353071105,0.3132622683184481,0.3130971285762632,0.3142800182273866,0.3170862009364885,0.3207845063504315,0.325809266899397,0.3292743877504657,0.335541306766997,0.3380396586345381,0.3389663534404365,0.3414474911397127,0.3438456107319369,0.343190779496512,0.3490981963927855,0.3520742358078602,0.3468383188186293,0.0,1.856676269469354,54.03049972227898,167.08906336294586,250.79044956894123,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95780,45145,428.75339319273337,6010,61.52641470035498,4736,48.86197536020046,1848,18.8870327834621,77.34910350822409,79.6774420644212,63.34642956891118,65.0665871970451,77.116573667428,79.44728112395403,63.258940556780985,64.98253903843165,0.23252984079609,230.16094046717228,0.0874890121301916,84.04815861344161,179.23334,125.48304302474492,187130.2359574024,131011.73838457392,381.50114,248.0204032575076,397726.41470035503,258364.609790674,380.17917,183.54735687313917,392969.7640425976,188571.39493496792,2701.3026,1241.4294397412946,2787699.8955940697,1263579.4870833629,1101.83205,489.3871590815856,1134179.703487158,494776.7722129882,1806.10282,764.2871832725666,1848059.4278555023,765556.3238457621,0.38046,100000,0,814697,8505.919816245563,0,0.0,0,0.0,32584,339.5907287533932,0,0.0,34742,358.82230110670287,1499345,0,53819,0,0,7163,0,0,73,0.7621632908749217,0,0.0,0,0.0,0,0.0,0.0601,0.157966671923461,0.3074875207986688,0.01848,0.3419426398352083,0.6580573601647917,24.25727640032802,4.235493658791797,0.3236908783783784,0.2430320945945946,0.2176942567567567,0.2155827702702702,11.038005441091334,5.780091451879073,19.718557527188477,12088.912576266574,53.7158650647621,13.914876457938526,17.241331738069945,11.46398561125006,11.095671257503568,0.5644003378378378,0.8053866203301477,0.6771037181996086,0.5586808923375364,0.1292850146914789,0.734789391575663,0.920704845814978,0.8397932816537468,0.6722689075630253,0.1921182266009852,0.5011580775911986,0.7302725968436155,0.6221640488656196,0.5245901639344263,0.1136919315403423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050226830848,0.0041253205485561,0.0064420569944507,0.0086438939167707,0.0105543579940619,0.0124496111405187,0.014401027334434,0.016890340358218,0.0192400044958056,0.0213930551861021,0.0236343892144408,0.0257462724856594,0.0276653032700963,0.0298277033285987,0.031745213473415,0.0338676692350596,0.0359888660092507,0.0378158666956999,0.0397963424771404,0.0416948693651008,0.0562060401143739,0.0705858974627146,0.0833001321059363,0.0961914370389053,0.1084871859720114,0.1242180235015639,0.1372698654965181,0.1490646900556187,0.1596943566976863,0.1700559281719416,0.1829287982347559,0.1948734587929915,0.2063854543872813,0.2166504434941432,0.2253669916587803,0.2356772564136647,0.2451532975434445,0.2533873053353573,0.2619217808638823,0.2696010531738309,0.2768647135702802,0.2837173938472336,0.2891560562313627,0.2941148279497747,0.299644205899139,0.3047117707973766,0.3095774506858916,0.3152407744497766,0.3198724760892667,0.3234093700881005,0.3222885478285475,0.3202771006349075,0.3186525212392747,0.3173092201245143,0.3163559171070601,0.3143915052480186,0.3122944078947368,0.3128997343304142,0.3141502353824111,0.3138798165301351,0.3152603298822384,0.3157603322127744,0.3165060745705907,0.3182774519897936,0.3186693985777992,0.3197542162374167,0.3205491205491205,0.3251010611419909,0.3283571579466234,0.3305023923444976,0.3317498743890741,0.3334042440036164,0.3372063492063492,0.341541755888651,0.3433090254758973,0.3461446360153257,0.3493584788993662,0.3495719527109661,0.3490174370329366,0.3613081166272656,0.0,2.2719906419199294,56.00007468875205,175.18628454739465,260.3555486204934,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95665,44916,426.6346103590655,5791,59.40521611874771,4558,47.0496001672503,1797,18.35572048293524,77.31532774038504,79.7060778037277,63.31028192710126,65.07582211436625,77.0867620268415,79.48110559825962,63.22526706646313,64.99488595159757,0.2285657135435457,224.9722054680774,0.0850148606381253,80.93616276867976,180.26998,126.2723860618357,188438.57210055925,131994.11076343042,381.28124,248.36325579034784,397970.3235248001,259029.2434958949,383.09877,185.28082758535024,397242.1679820206,191173.76684346577,2606.68896,1208.7477686360571,2692499.827523128,1231211.800173583,1097.34921,488.41973899284767,1132081.064130037,495571.8813432138,1755.44132,741.8003062666367,1795920.5352009616,742367.9254288091,0.37821,100000,0,819409,8565.38964093451,0,0.0,0,0.0,32583,339.9780483980557,0,0.0,34974,362.2850572309622,1489827,0,53460,0,0,7119,0,0,68,0.7108137772435059,0,0.0,0,0.0,0,0.0,0.05791,0.1531159937600803,0.3103091003280953,0.01797,0.3377265238879736,0.6622734761120264,24.32779779570456,4.271764551251771,0.3187801667397981,0.2439666520403685,0.2204914436156209,0.2167617376042123,11.354082685520602,6.016455056111239,19.09659515682561,12023.668545667711,51.90686481632206,13.218356284371271,16.587787403303988,11.23514288086724,10.865578247779553,0.5719613865730584,0.7787769784172662,0.7102546455609084,0.5930348258706468,0.1143724696356275,0.7570621468926554,0.9365853658536586,0.8676470588235294,0.75,0.1502590673575129,0.5028623079240735,0.6866096866096866,0.6488038277511962,0.546975546975547,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0044303412477949,0.0065862915829426,0.0086460894479101,0.0105183919270833,0.0128749681690858,0.0152176573783199,0.0175169807466421,0.0199314823336912,0.0222213119790279,0.0242651734252251,0.0263068689587164,0.0282695690639563,0.0304997424008243,0.0325344233190892,0.0345637132721763,0.036575004662536,0.0385361854054446,0.0401293959787391,0.0421990620114643,0.0568783759781847,0.0711159508303143,0.0838939910784571,0.0966367099530654,0.1084820533386805,0.1237217082001228,0.1367545871559633,0.1484826858962751,0.1593894631080517,0.169133510073093,0.1822738149130181,0.1941027418027461,0.2049311489685952,0.2148313524635016,0.2245376744390964,0.234750585129394,0.2440155043955184,0.2527518289251547,0.2605792921780795,0.2685580009170105,0.2748129618048317,0.2819621475473156,0.2889209859588473,0.294023799241879,0.2994011976047904,0.3034585576816451,0.3078212989613315,0.3121216745510962,0.315711845986648,0.3189734793508378,0.3180686238877895,0.3165650756085144,0.3147634664377102,0.3132615451326154,0.3130375365784822,0.3109549830861306,0.3084527537882383,0.3084153470777998,0.3101396395628378,0.3110010334628131,0.3114025255921692,0.3125788892395077,0.3142031897526058,0.3138503474316866,0.315107671601615,0.3165681243976767,0.315479761190619,0.3189532568502892,0.3210652726758971,0.3252535739956873,0.3292772186642269,0.331503490912967,0.3353179630098809,0.3403306420607458,0.3412412222433099,0.3409742120343839,0.3439926907263591,0.3446282639027307,0.343492586490939,0.3429220287660863,0.0,2.2585537968365528,54.09935248767235,174.35622896569302,244.2048021144683,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95626,45032,427.2059900027189,5847,59.941856817183606,4584,47.35113881162027,1787,18.31091962436994,77.3146043072854,79.73418870826262,63.296484254502126,65.08320293322376,77.09003185820063,79.51007151606892,63.212796833100256,65.00213672002339,0.2245724490847749,224.1171921937024,0.0836874214018692,81.06621320037277,178.80698,125.18155850658742,186985.73609687743,130907.45038649262,379.37276,247.37221814962396,396165.6453265848,258127.30653757768,381.44724,185.2508619417709,394850.62639867817,190715.04721943784,2622.81208,1213.2510011101635,2711260.2848597663,1237436.2287330162,1064.38019,473.93186344460855,1098967.8643883462,481542.45931653655,1751.62166,740.6986692513318,1797005.3541923745,746041.2181166377,0.38022,100000,0,812759,8499.351640767154,0,0.0,0,0.0,32407,338.29711584715454,0,0.0,34752,359.37924832158615,1496618,0,53677,0,0,7156,0,0,66,0.6901888607700835,0,0.0,1,0.0104574069813649,0,0.0,0.05847,0.1537793908789648,0.3056268171711989,0.01787,0.3416516171400426,0.6583483828599573,24.33337574726582,4.298404530615695,0.3200261780104712,0.2449825479930192,0.2166230366492146,0.2183682373472949,11.210484536026996,5.792781114508779,19.15349373457916,12111.47994343686,52.204770464106325,13.544131515264588,16.69329254241139,10.94807475517926,11.01927165125109,0.5650087260034904,0.7916295636687445,0.6993865030674846,0.5790533736153072,0.0999000999000999,0.7287066246056783,0.9132530120481928,0.84,0.7330677290836654,0.1237623762376237,0.5024125452352232,0.7203389830508474,0.6466729147141518,0.5269541778975741,0.0938673341677096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0043707091500948,0.0063142079831079,0.008565767413504,0.0109965006510416,0.012955795477694,0.0150141267428932,0.0171621207477781,0.0191672377289789,0.0212901045560209,0.0234564102564102,0.0254853620955315,0.0276940486600483,0.0299211787131008,0.0320402981068973,0.0343387135131781,0.0366072261193024,0.0388820249800139,0.040943095859909,0.0428556528994576,0.0570705856529146,0.0708045254556882,0.084448178095138,0.0968967767742478,0.1093576819549269,0.1245539543206869,0.1367846369545821,0.1480025148386134,0.1592661924372894,0.1688313083459559,0.1817093168774004,0.1937354359724706,0.2051472030334067,0.2157208588957055,0.2251870956364558,0.2350467186008833,0.2448313627321696,0.2542076921343758,0.2626664243195347,0.2704317412992374,0.2773102434394064,0.2836002480025268,0.2898041304219184,0.2947064323559732,0.3002452170535107,0.3063431457075994,0.311196988456584,0.3162477912106072,0.3204864480238049,0.3233179893691388,0.3224547473252136,0.3203233478601575,0.3186070100304294,0.3171782600523401,0.3167749899608846,0.3147552040221956,0.313256639411802,0.3134777673592261,0.314921102677883,0.3150310203643775,0.3157973508942602,0.3161365246830958,0.3175149014213663,0.3195118692379637,0.3206203551031137,0.321903284199638,0.3237666638362911,0.3269746275169877,0.3296186662023332,0.3319798155010644,0.335078297757119,0.3378848587094053,0.3422412706416236,0.341943325989516,0.3426645445183035,0.3464323875103882,0.3502781211372064,0.3557046979865771,0.354679802955665,0.3542635658914728,0.0,2.32046040845684,55.41228529841634,171.90124609779332,245.76923502795728,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95656,45281,428.08605837584673,5902,60.65484653341139,4698,48.64305427782888,1758,18.04382370159739,77.29129418892526,79.6909601488803,63.29829466637945,65.07001589873683,77.06293443017836,79.46359847945445,63.21323713944742,64.98778059718772,0.2283597587469046,227.3616694258465,0.0850575269320259,82.23530154910463,178.7533,125.22886379015628,186870.9751609936,130915.84823759751,379.99856,247.718910167713,396796.83449025673,258510.00477514535,387.35255,187.7694889451382,402311.5957179895,194261.188435568,2680.08392,1239.848721971896,2774328.21778038,1268688.009086619,1115.36757,498.4531058514696,1149538.8475370076,504608.614045611,1721.654,735.633758653077,1767518.1274567198,740480.0992091155,0.38055,100000,0,812515,8494.135234590616,0,0.0,0,0.0,32489,339.15279752446264,0,0.0,35403,367.4207577151459,1494591,0,53675,0,0,7020,0,0,52,0.5436146190516016,0,0.0,0,0.0,0,0.0,0.05902,0.1550913152016818,0.2978651304642494,0.01758,0.3396440129449838,0.6603559870550162,24.288929415747653,4.221451378513869,0.323541932737335,0.2526607066836951,0.2100893997445721,0.2137079608343976,11.21616239858907,5.853633977744966,18.99541766160333,12209.521979175595,53.62839275045451,14.3978499895034,17.127592472554998,11.005426736210016,11.0975235521861,0.5727969348659003,0.7893850042123,0.7032894736842106,0.574468085106383,0.1175298804780876,0.7297501892505678,0.8930131004366813,0.8938271604938272,0.676595744680851,0.1524663677130044,0.511400651465798,0.7242798353909465,0.6340807174887892,0.5425531914893617,0.1075544174135723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023196215674159,0.0045219507249315,0.0070237406493915,0.0093689665684381,0.0117815828831303,0.0143810154300555,0.0165589248934478,0.0188902730410276,0.0210821200719777,0.0231093727602236,0.0252379194355566,0.0273195982170367,0.0296175133222229,0.031809657275931,0.033995065398949,0.0358587164503283,0.0379828170502948,0.0400166130204547,0.0422025221625671,0.0444025104776997,0.0587946367921077,0.0730716051451795,0.0858699875048563,0.0981622213333894,0.1100897097625329,0.126059759311593,0.1387579617834395,0.1495691445735649,0.1599918747861785,0.1704973644942083,0.1827953511438859,0.1956168655391212,0.2065261164382816,0.2169686353932891,0.2268324131318808,0.237407678488256,0.2472237738800134,0.2566671544843579,0.2644043550822538,0.2718376513996952,0.2780793851069001,0.2854987014810135,0.2914100985221675,0.2969248482813212,0.3019313095933061,0.3074141718291088,0.3112884834663626,0.3159644809091256,0.3198667167991287,0.3245205316719684,0.3229304167452385,0.3218181818181818,0.3208768885691311,0.3199235934244038,0.3175770203899389,0.3151309527464767,0.3130757400390037,0.313701290152712,0.3149321731981365,0.3152055260285249,0.3154218767601667,0.3168073554472318,0.3174649839356586,0.3175079500156761,0.3187190698121366,0.3209069846145836,0.3224132062627637,0.3261517232728071,0.3288517569417629,0.3318228794021782,0.336565601383957,0.340197998835301,0.3430767292427869,0.3461833231146536,0.3500994600738846,0.3565092304003836,0.3588153202046829,0.3563028677532494,0.3573014991671294,0.3597259231062047,0.0,1.868004893905155,58.41133078951847,173.79767772863548,252.2339641871655,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95643,45210,430.0994322637308,5855,60.08803571615277,4609,47.72957770040672,1856,19.123197724872703,77.27514686010801,79.68680338989171,63.27600815666828,65.05657604799279,77.04315991374538,79.4532355676445,63.19004084480575,64.97182420654829,0.2319869463626247,233.56782224720973,0.0859673118625323,84.75184144450054,180.93262,126.77647303815236,189174.97359974068,132551.75291255227,386.04997,251.37564791270145,403202.1162029631,262392.7291204808,384.97136,186.3149231827177,399449.5153853392,192479.7453648219,2641.00776,1213.1619578901575,2737189.255878632,1244298.1900297543,1117.59908,494.7686971912656,1158046.7153895216,506843.4043173736,1814.27464,760.3864645000914,1870774.7770354336,772440.3328808738,0.38139,100000,0,822421,8598.86243635185,0,0.0,0,0.0,32912,343.64250389469174,0,0.0,35203,365.0031889422122,1479446,0,53043,0,0,7064,0,0,69,0.7214328283303535,0,0.0,0,0.0,0,0.0,0.05855,0.1535173968903222,0.3169940222032451,0.01856,0.3394465367610938,0.6605534632389062,24.431890475999356,4.300888461067251,0.3226296376654372,0.2382295508787155,0.2145801692341072,0.22456064222174,11.26916149158768,5.874522943395851,19.783351112660277,12086.392161753423,52.424537143198606,13.394862630384598,16.768283296949225,10.933396816196597,11.3279943996682,0.5636797569971794,0.8014571948998178,0.6845998655010087,0.5915065722952477,0.1111111111111111,0.7274900398406374,0.92512077294686,0.8426395939086294,0.7229437229437229,0.1435185185185185,0.5023852116875372,0.7266081871345029,0.6276303751143641,0.5514511873350924,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556545690213,0.0043075925118838,0.0063923697427832,0.0085322498730319,0.0106693518038222,0.0126792406713377,0.0147958559366969,0.0169064123898684,0.0193737028820299,0.0215330111402359,0.0237965802673012,0.0258059213905611,0.0277274784970574,0.0298092086953832,0.0319179694760537,0.0339209235925765,0.0358527332656149,0.0379582511164191,0.0396778322355071,0.0417444443285745,0.0567615305023985,0.071283373150593,0.0847610744036051,0.0974358434115713,0.109558365286096,0.1247934759584833,0.1376558232462246,0.1487996247494776,0.160095464372097,0.1699054170249355,0.1826474652387943,0.1952110873737976,0.2068630977686211,0.2175810678919606,0.2271001633337747,0.2373092217803745,0.246679125773565,0.2555649574096011,0.2632213863820005,0.2708220892711551,0.2773144335278219,0.2837376733932906,0.2888917886545351,0.2944807378230377,0.2993832792030069,0.3038499506416584,0.3092757656675066,0.3134617344339142,0.3182720888877351,0.3217417759024351,0.3200394093988717,0.318414956982131,0.3175957794955707,0.3162942069863311,0.3148723590894899,0.3128016547920018,0.309943649487147,0.3110782865583456,0.3115935854394246,0.3119020896798674,0.312929500983054,0.3142642820482451,0.314796986186689,0.3161715434442707,0.3178391356542617,0.3185626561199001,0.3196418419556566,0.3218166970287078,0.3246953895853084,0.3284228081321474,0.3285129604365621,0.3305345945371453,0.3364098700320211,0.3413395969086225,0.3463639788997739,0.3471576689309975,0.3457340507302075,0.3478526358640342,0.3518980326960377,0.3604651162790697,0.0,1.7685247137605538,55.50114150072351,171.3950399286037,251.87113975983715,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95689,44956,427.447250990187,5875,60.27861091661529,4631,47.863390776369286,1774,18.204809330226045,77.28391542799022,79.68258213846934,63.28504443165552,65.06000417595247,77.07228972416422,79.47014819786749,63.20638291989957,64.9828678174043,0.2116257038260016,212.4339406018549,0.0786615117559534,77.13635854817369,178.07394,124.7641162632432,186096.56282331303,130385.01422654976,379.76608,247.57468238070672,396344.2715463638,258197.3605960003,384.05022,186.26122951099325,397288.19404529256,191533.2395601336,2641.20732,1216.8341464839946,2733279.8127266457,1244735.49361368,1066.69249,474.2296966804556,1103449.0902820595,484296.5334875129,1734.38514,725.813670329961,1782865.721242776,735257.7941956208,0.37936,100000,0,809427,8458.934673786956,0,0.0,0,0.0,32458,338.64916552581803,0,0.0,35091,362.8212229200849,1499457,0,53800,0,0,7078,0,0,68,0.7001849742394634,0,0.0,1,0.010450522003574,0,0.0,0.05875,0.1548660902572754,0.3019574468085106,0.01774,0.3373944119558155,0.6626055880441846,24.10595868728913,4.341429654718998,0.320233210969553,0.2526452170157633,0.2105376808464694,0.2165838911682142,11.595658460215509,6.212158149003724,18.904448614098293,12099.27755112596,52.63194965481686,14.172553920038691,16.61583857653847,10.926922063373375,10.916635094866326,0.5720146836536385,0.805982905982906,0.7046527309507754,0.5764102564102564,0.098703888334995,0.7569875776397516,0.9188034188034188,0.8857142857142857,0.7113821138211383,0.1534391534391534,0.5007478312892611,0.7307692307692307,0.6411657559198543,0.5308641975308642,0.085995085995086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025637907622464,0.0047164070107108,0.0071981887773231,0.0092377109988719,0.0113244406458899,0.0134768967484312,0.0155846805038502,0.0176900763982514,0.0199232932753771,0.022065602655248,0.0240884748753513,0.026057293165098,0.0281845216657577,0.0300416357490312,0.0317416078285643,0.0336522053880759,0.0358112448966903,0.0375560538116591,0.0395485515160971,0.0414803697797788,0.0559269627710692,0.0702051926298157,0.0836481551441883,0.0966309631531323,0.108804626571124,0.1243120237087214,0.1371372753044604,0.14913850020233,0.1602894337444689,0.1709416385842151,0.1831889118813588,0.1958490402530439,0.2067137039698612,0.2166995181778361,0.2260524575710822,0.2367363700941218,0.2460088543064126,0.2537582546372467,0.2618176446525158,0.2696524830829223,0.2765483904621698,0.2834316127595221,0.2898607453799255,0.2953104739951016,0.3017609618965328,0.3063674385895648,0.3108925775133103,0.3151209703078665,0.3189777996528767,0.3231457176399203,0.3213424735020403,0.3200352170802839,0.3189360354654845,0.3169704053215589,0.3158809633470515,0.3126273068381959,0.3099425387428173,0.3095616550594018,0.3105455414447631,0.3113712613320009,0.3122620811221333,0.3130953088179964,0.3144827296234784,0.3168352358099168,0.3170443016570848,0.3186506175095955,0.320104616784171,0.3243285691848594,0.3273083243016467,0.3297536323436513,0.3329554215228334,0.3351105949427229,0.3382316313823163,0.3387446697089848,0.3404314415331914,0.3438012655261308,0.3482345809971208,0.35284618490109,0.3527292878913826,0.3510516252390057,0.0,2.081440676491952,56.58676945243014,168.6976112908265,252.29619272137109,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95660,45352,430.0334518084884,5874,60.2028015889609,4629,47.846539828559486,1782,18.23123562617604,77.35161970545354,79.75709568834777,63.31721993396855,65.09394834171455,77.1269404598947,79.53407862401194,63.23322881023244,65.01301491122693,0.2246792455588462,223.0170643358349,0.0839911237361121,80.9334304876188,179.51494,125.68425317851502,187659.3560526866,131386.42397921285,382.42905,249.998178025734,399218.07443027385,260778.9442041962,391.61501,190.0579112259516,405713.2030106628,195875.64058750524,2652.58952,1237.336895317284,2742792.891490696,1263331.6488786151,1101.69917,492.89753194104657,1136605.1223081746,500182.7534403575,1745.34058,738.57165723441,1787183.4622621783,741019.7946695723,0.38134,100000,0,815977,8529.970729667573,0,0.0,0,0.0,32709,341.35479824378007,0,0.0,35765,370.3010662763956,1490873,0,53471,0,0,7164,0,0,65,0.679489859920552,0,0.0,0,0.0,0,0.0,0.05874,0.1540357686054439,0.3033707865168539,0.01782,0.335180055401662,0.6648199445983379,24.112085241431373,4.246147971981602,0.3197234823936055,0.2480017282350399,0.2147332037157053,0.2175415856556491,11.433206034729569,6.017188590440426,18.96036726615951,12194.85272892178,52.82949628301749,13.91184332584162,16.820292258531133,11.093038709621055,11.004321989023698,0.5713977100885721,0.7874564459930313,0.6932432432432433,0.5845070422535211,0.1330685203574975,0.750386398763524,0.9356223175965666,0.8523316062176166,0.7229437229437229,0.1848341232227488,0.5019490254872564,0.6862170087976539,0.6371115173674589,0.5425950196592398,0.1193467336683417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694805523753,0.0045327789889976,0.0067286418901089,0.0088799479801674,0.0110366294032082,0.0133326543084131,0.0158976189262224,0.0179820485852283,0.0201329243353783,0.0222370173102529,0.024457804132384,0.02681011981832,0.0290303990779426,0.0311243530794449,0.0331460325985911,0.0351142195000827,0.0371568048257205,0.0393970537855429,0.041366681926006,0.0432828661995328,0.0585254226661929,0.0724973038625441,0.0854159013382314,0.0975525064186203,0.1097333178551452,0.1251190753402908,0.1371555980251632,0.148797151962822,0.1599619112832473,0.1698115233850614,0.1827103509263852,0.1945157690599235,0.2065924974418149,0.21693776133453,0.2270259555770903,0.2375008314302818,0.2465727405785281,0.2554746169175514,0.2643208320559548,0.2723545109897032,0.2794566827101074,0.2858161499976621,0.2922052579916506,0.2980792259424247,0.3026710192590076,0.3073306419850334,0.3120464622494223,0.3163615124812717,0.3202268235658834,0.3250029610328082,0.3244325588270866,0.323403028514161,0.3218137082601054,0.3201026543058579,0.3189684575801165,0.3168581555949398,0.3142550471169479,0.3146525605541999,0.3142062991320362,0.3147893976934457,0.3158475876782572,0.3159533994362199,0.3175001568676664,0.3193565635861331,0.3203790561883794,0.3214313476537196,0.3227799665542359,0.3249796633502284,0.3292946927374302,0.3327280622113449,0.3358546969834224,0.3403674540682415,0.3428055088178475,0.3468247375972211,0.3498694516971279,0.3504222671583204,0.3492014742014742,0.3481242436466317,0.3554298032875236,0.3555140186915888,0.0,2.098596926377845,56.67453340138545,176.49438876425617,243.6561816152321,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95798,45165,427.1279149877868,5674,58.2371239483079,4521,46.68155911396897,1787,18.26760475166496,77.3507064425629,79.6786189452326,63.34838135415546,65.06976301327936,77.12879838557258,79.45922627235629,63.26703718267155,64.99178122470522,0.2219080569903155,219.39267287631023,0.0813441714839058,77.98178857413518,178.34608,124.92175978526696,186168.89705421825,130401.21900798238,378.7721,247.1353049111892,394840.3411344705,257429.5443654243,377.74463,183.17923622155,391212.38439215854,188764.9027217053,2575.21992,1175.226203127212,2660635.7961544083,1199233.9747460403,1072.61473,469.11432329323486,1104242.4267730017,474270.6040765304,1748.61688,726.6053536917442,1789673.8971586046,728835.5684345714,0.3806,100000,0,810664,8462.222593373557,0,0.0,0,0.0,32359,337.2199837157352,0,0.0,34491,356.99075137268,1503821,0,53943,0,0,7043,0,0,56,0.5845633520532788,0,0.0,0,0.0,0,0.0,0.05674,0.1490803993694167,0.3149453648219951,0.01787,0.3444500589523328,0.6555499410476672,24.650196345293903,4.2484601147184256,0.3165228931652289,0.2419818624198186,0.2231807122318071,0.2183145321831453,10.932448874521423,5.648582538712194,19.104106729105883,12105.965025237168,51.386403814128606,13.165473051153835,16.31221046198669,11.194234447570311,10.714485853417765,0.5655828356558283,0.793418647166362,0.6918238993710691,0.5728444003964321,0.1225937183383991,0.7247557003257329,0.90625,0.8402061855670103,0.6826086956521739,0.1546391752577319,0.5062253264500456,0.724188790560472,0.6366251198465963,0.540436456996149,0.1147540983606557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297273206109,0.004551905920519,0.0069307031162795,0.0091926702421582,0.0116520253782332,0.0139574658698728,0.015979780685663,0.0180424732883632,0.0201927302083652,0.0224314367580843,0.0244584708076316,0.0267807670996737,0.029062956035599,0.0311393395371819,0.0332855566669072,0.0352892561983471,0.0372190720582757,0.039445175870541,0.0413624798795368,0.0433696308480293,0.058087606168743,0.0724270971654416,0.0852437707684728,0.0979087852038671,0.1105923763555312,0.1258957826868195,0.1376688651835514,0.1489305097371501,0.159674630115929,0.1693727293187152,0.1824140343324544,0.1942229138299941,0.2047997740260304,0.2149629694361304,0.2239664061383548,0.2347859750027651,0.2441980948136594,0.2529791654967148,0.2612473800487169,0.2694133391286444,0.2759874839797249,0.2833446174678402,0.2891507872712658,0.2948025992987159,0.2999684626767909,0.3044436238306253,0.309434858121025,0.313452373387558,0.3173789837351034,0.3212403836020655,0.3205863778670572,0.319694429941469,0.3188354815106658,0.317154908418559,0.3157675917264317,0.3131181676210307,0.311784543770484,0.3121866215127652,0.3129746185947868,0.3136750303810136,0.3139567642694814,0.3138524281839599,0.3149789915966386,0.3162081984897519,0.316854582249205,0.3180712810187485,0.3188878400411911,0.3233529151664456,0.3270415889002359,0.3297087070402413,0.3317795448313682,0.3348680336206435,0.3384878636161987,0.3428593377890451,0.3478179082016553,0.3511359581301296,0.3530868017948321,0.3582089552238806,0.3602484472049689,0.3592954990215264,0.0,1.9285929437218643,54.1885997788063,167.43626702137306,247.69849547305665,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95753,45115,425.91877016908086,5850,60.112999070525206,4573,47.34055329859117,1767,18.171754409783507,77.31652017658898,79.67725631118066,63.31665033110207,65.06231305902874,77.09956378103372,79.4592359599129,63.23634199372746,64.98369866517022,0.2169563955552576,218.02035126775365,0.0803083373746105,78.61439385851554,180.1261,126.16335404624864,188115.1295520767,131758.95612480928,380.78561,248.23788514019128,397254.9267385878,258829.0513742977,385.36447,186.90713430308645,399629.1813311333,193103.9402403224,2601.716,1198.165865416078,2694233.8307938133,1228504.012423713,1086.17162,481.800594027423,1121185.4041126647,490259.6572287016,1722.39282,720.1508646657701,1772133.8443704117,728532.7198941074,0.38027,100000,0,818755,8550.687706912577,0,0.0,0,0.0,32554,339.5298319634894,0,0.0,35098,363.873716750389,1490332,0,53475,0,0,7141,0,0,72,0.7414911282153039,0,0.0,0,0.0,0,0.0,0.0585,0.1538380624293265,0.302051282051282,0.01767,0.3281402142161636,0.6718597857838364,24.28612588353314,4.309610471108482,0.3159851301115242,0.2466652088344631,0.2263284495954515,0.2110212114585611,11.55613110433996,6.175893552348329,18.81349936473349,12185.50209790335,51.8473715562376,13.517788404511874,16.36228046558137,11.450477719262889,10.51682496688147,0.5738027553028646,0.8031914893617021,0.6955017301038062,0.5855072463768116,0.110880829015544,0.7224919093851133,0.9373493975903614,0.8308080808080808,0.6550218340611353,0.1275510204081632,0.5187293976625712,0.7251051893408135,0.6444232602478551,0.56575682382134,0.106631989596879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023804459031006,0.0046937885868959,0.0068510530322253,0.0092463700376967,0.011566162109375,0.0139734789073798,0.0161749258054317,0.0185145471441847,0.0209098066481937,0.0232096237522395,0.0254798621934213,0.0276311736317897,0.0298415375281499,0.0320554405692337,0.0340907918759734,0.0363792284008017,0.0384547703582556,0.0403082763699731,0.0426381165220102,0.0444530102407567,0.0586429742229832,0.0726939779207869,0.0860336835923572,0.0981893125276019,0.1101433994095318,0.1253410893707033,0.1380532099970297,0.1494842617331786,0.1600482890505646,0.1705179368348781,0.182755277897458,0.1954338887686648,0.2066389770799808,0.216542405492271,0.225549758964538,0.2358579422682697,0.2448558062679335,0.2532544245547317,0.2619196241104969,0.2691532258064516,0.2757838713409695,0.282155638200828,0.2889485892823329,0.2948920863309353,0.3006779743390357,0.3064144148588483,0.3111300276654607,0.3154599025085591,0.3200522957037267,0.323896631823461,0.3234145684664063,0.3216145474583275,0.320758711207079,0.3192733589056958,0.3184313492122528,0.316203292155841,0.3150912631195681,0.314846472483398,0.3162964990931179,0.3174498085388111,0.3190091949709138,0.3195531830763147,0.3207590689872091,0.3226528237715922,0.3236171236171236,0.3242729568590695,0.3246623739244401,0.3274597102903367,0.3298564928246412,0.3322786061780643,0.3343765591690479,0.3383008061094611,0.3414542257942986,0.345095964938794,0.3430390412882689,0.3471958174904943,0.3497552019583843,0.3533440773569702,0.3558062740781508,0.3508435582822086,0.0,1.528010671173624,54.66776806013792,168.39486934152416,252.71799567040057,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95680,45525,431.6680602006689,5891,60.44105351170568,4658,48.118729096989966,1856,19.06354515050167,77.40264542862671,79.78472079295351,63.35728834693722,65.11273104039853,77.17694079815553,79.558649124205,63.27436540854297,65.03194198624647,0.2257046304711849,226.07166874850293,0.0829229383942475,80.7890541520635,177.83502,124.53749890083382,185864.36036789295,130160.4294532126,382.12519,248.68375518298717,398833.30894648825,259366.9264036237,387.52528,187.4340377855659,401119.2516722408,192926.97984699372,2666.34328,1223.1144883166853,2756311.4130434785,1247920.11738784,1120.22726,499.6612586015267,1151569.8160535116,502990.29957375926,1808.74086,750.3909455531207,1859050.06270903,757899.6726701985,0.38295,100000,0,808341,8448.380016722407,0,0.0,0,0.0,32546,339.57984949832775,0,0.0,35288,365.0188127090301,1506048,0,53971,0,0,6960,0,0,71,0.7316053511705685,0,0.0,1,0.0104515050167224,0,0.0,0.05891,0.1538320929625277,0.3150568664063826,0.01856,0.3409868099658036,0.6590131900341963,24.285886530699187,4.309739059156366,0.317732932589094,0.2458136539287247,0.2221983683984542,0.2142550450837269,11.47062990211683,6.078206457945631,19.692237297054973,12244.54480275422,52.65568306832649,13.726243324882695,16.657749584962957,11.450213833020538,10.821476325460292,0.5661227994847574,0.7982532751091703,0.6804054054054054,0.5758454106280193,0.1202404809619238,0.7369255150554676,0.911214953271028,0.8552631578947368,0.7217741935483871,0.174757281553398,0.5026501766784452,0.7308228730822873,0.62,0.5298602287166455,0.106060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999756964486,0.0046824166134573,0.0070703996753905,0.0091912698170886,0.0112160746789233,0.0136855181964442,0.015965418455045,0.0181871995590981,0.0203770885493842,0.0222993163862622,0.0244982471965394,0.0266097240473061,0.0287679542673836,0.0307933140403093,0.0329856274697949,0.0351609735930959,0.0370895761930894,0.0390693909740886,0.0410079873533571,0.043116655723353,0.0582489788669863,0.0727897139506638,0.0863501857331738,0.0988755535453197,0.111091189064906,0.1264348359658496,0.139220492577383,0.1506019607634416,0.1615040229086751,0.171788548144971,0.184679494772206,0.1964809384164222,0.2074815137016094,0.2175719408729117,0.2278552022263042,0.2380414687877077,0.2476314674870148,0.2567163843838447,0.2649566842194666,0.2723739855983541,0.2793411514843714,0.2856376214753199,0.2923233110221813,0.297947908445146,0.3035941572216498,0.3086404566254982,0.3126522961574507,0.3165892299489679,0.3208768213289242,0.3252713994341733,0.3245300751879699,0.3233161047970277,0.3220324712684002,0.3204399211136223,0.3198945825498586,0.3173628923903749,0.315570016110181,0.315935236472092,0.316936541179275,0.3172616398112703,0.3180883672248804,0.3187158630987465,0.3193207358694747,0.3202953014164684,0.3211248712482334,0.3214174373895874,0.3237399852264333,0.328659948676222,0.3326682069593222,0.3365635630092556,0.3393490317301573,0.3441054533857765,0.3490755879763552,0.3500113886568977,0.3573915498259151,0.3602586713697824,0.3672688303735456,0.3689828801611279,0.3740437158469945,0.3779705771407016,0.0,2.1905487123610863,55.27781370260119,169.8211577798292,256.371687817788,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95727,45254,428.9594367315386,5973,61.17396345858535,4673,48.22046026721824,1778,18.281153697493917,77.33907921770925,79.70856274096744,63.32552877917672,65.07672399093771,77.11419142924662,79.48233971568786,63.24159950079746,64.99465198513745,0.2248877884626381,226.22302527958027,0.0839292783792515,82.07200580025642,179.80138,125.97572980407304,187827.23787437196,131598.95306869852,382.65764,249.03457482483373,399154.0631169889,259566.41785999117,388.73476,189.04113403981148,402145.0061111285,194426.2516472349,2654.9128,1235.233651963553,2742769.91862275,1259720.0496866638,1083.14666,489.0562553750054,1120569.202001525,499960.17359261774,1736.96362,737.5012884501389,1787711.5338410272,745796.8974908304,0.37962,100000,0,817279,8537.60172156236,0,0.0,0,0.0,32734,341.3457018396064,0,0.0,35427,366.1453926269496,1490807,0,53532,0,0,7013,0,0,71,0.7416925214411817,0,0.0,1,0.010446373541425,0,0.0,0.05973,0.1573415520783941,0.2976728612087728,0.01778,0.3516113516113516,0.6483886483886484,24.1820047591834,4.277562894304076,0.3259148298737427,0.2456665953349026,0.2167772309009202,0.2116413438904344,11.067957769910722,5.738640952989402,19.13895855825468,12137.800314891776,53.31980877024227,13.916318920746004,17.30516092211477,11.24880966477895,10.849519262602543,0.5760753263428204,0.7961672473867596,0.6999343401181878,0.5765054294175715,0.1294236602628918,0.7310606060606061,0.9166666666666666,0.8557457212713936,0.6867469879518072,0.1697247706422018,0.5150611392782583,0.7201704545454546,0.6427289048473968,0.5405759162303665,0.1180285343709468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673958839734,0.0043496775763474,0.0065568445946631,0.0089213136075434,0.0111186840686449,0.0134332766399494,0.0156426859735889,0.0179174876721559,0.0203787398515307,0.0228292263258157,0.0248187309629052,0.0267763603870093,0.0288176731940102,0.0307950670197092,0.0328354511390732,0.0349734235072697,0.0367354549975136,0.0388559093362115,0.040940902426089,0.0428404734122353,0.0574379000344564,0.0715459063562647,0.0848230668414154,0.0976371494368907,0.1098702942106928,0.1256584375198324,0.1388393804370889,0.1509405840457357,0.1613685661470076,0.1718077744278617,0.183681386177022,0.1964202570571611,0.2070867512347962,0.2170430672268907,0.2262653175817763,0.2361860846625358,0.2455086477372963,0.2534326745599424,0.2616991090176494,0.2694938753996173,0.2762694996065361,0.2830773549813426,0.2894126830191357,0.2956638365645994,0.300862727967675,0.3062120895210207,0.310613157467431,0.3143060281346808,0.3187097107571471,0.3234732195796824,0.3221675803504246,0.3207025934935884,0.3187554579002225,0.3176535214525269,0.3167684330941451,0.3146382158000275,0.3118405441746421,0.3119119940891552,0.3117931872230491,0.312476536103116,0.3139268978444236,0.314349492315594,0.3158533015514573,0.3169586983729662,0.3186178120953431,0.3196757515134194,0.3218129021237829,0.3247809565681625,0.3273179620155582,0.3308846886912325,0.3347764662990475,0.3389361702127659,0.3414834470558504,0.3424971363115693,0.3445661331086773,0.3457943925233644,0.3431569202283598,0.3429794171591603,0.3476216814159292,0.3491759294748946,0.0,2.3347503877725324,57.81164480244251,173.98704934624817,247.9964318981287,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95671,45243,428.437039437238,5862,59.99728235306414,4702,48.40547292282928,1786,18.14551954092672,77.30793472821749,79.68528147389614,63.31631099018998,65.07069171950779,77.0823462632795,79.46730258021498,63.231590585768416,64.99290622033475,0.2255884649379851,217.9788936811633,0.0847204044215672,77.78549917304645,179.6344,125.88102549501524,187762.6448976179,131576.99354560443,381.19131,247.98612764537972,397671.33196057327,258438.7720891176,388.66272,188.4476103304514,402106.5526648618,193602.72913529509,2684.89224,1238.2879236281942,2764771.0591506306,1252709.6023122931,1096.39786,486.0680815341808,1125409.936135297,487465.539350065,1747.46568,736.0909780660567,1777209.6455561246,724882.9430779269,0.3798,100000,0,816520,8534.665677164448,0,0.0,0,0.0,32572,339.6849620052053,0,0.0,35421,366.2760920237062,1492712,0,53575,0,0,7109,0,0,61,0.6062443164595331,0,0.0,0,0.0,0,0.0,0.05862,0.15434439178515,0.3046741726373251,0.01786,0.3382042539373275,0.6617957460626726,24.429042058827417,4.217008066298197,0.336665248830285,0.2411739685240323,0.2124627817949808,0.2096980008507018,11.337454942357729,6.048521499735324,19.05173423645313,12155.383224463356,53.57174789284039,13.678057186029164,17.84570175446003,11.349618953959588,10.698369998391607,0.5742237345810294,0.7945326278659612,0.6942514213518636,0.5935935935935935,0.1085192697768762,0.741248097412481,0.9120370370370372,0.8561151079136691,0.7350746268656716,0.1319796954314721,0.5094451003541912,0.7222222222222222,0.6363636363636364,0.5417236662106704,0.1026615969581749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025514853289593,0.0048234769567508,0.0070704713985737,0.0093138051515397,0.0113802782523797,0.0137978086432324,0.0162127438284508,0.0183256763654925,0.0203234578502934,0.0226018773479645,0.0248903104112847,0.0267456544728385,0.0291150305959788,0.0312664187330661,0.0333519080345902,0.0354085683566288,0.0374054502124132,0.0399102952780431,0.0418201111041757,0.0435675562969141,0.0575520778922295,0.0711548930111804,0.0847123264672242,0.0978688490101613,0.1098071468488701,0.1252789558853081,0.1375047748397776,0.1491461545013201,0.1603838098901568,0.171285418477153,0.1838363601111614,0.1963277141806063,0.2075879992605561,0.2174802081966496,0.226675174090494,0.2363829716526536,0.2455895644799536,0.2539236091579006,0.2624950360242809,0.270346107153492,0.2774973955318903,0.284033495508982,0.2905073552907203,0.2958427289737562,0.3007125659670712,0.3061501449632965,0.3102199385926436,0.3146833539375246,0.3189590306426922,0.3227443310957238,0.322057198307232,0.3206553943252442,0.3200129771207718,0.3186186533896833,0.3174511029740109,0.3158709716984025,0.3132193930938263,0.3133566997416531,0.3144677789578265,0.3143904838565423,0.3148555010985296,0.3152951433610081,0.3162721396793418,0.316928032929912,0.3175887139486735,0.3179417455420175,0.3185724482512491,0.3222474174855127,0.3247715485305014,0.3277534791252485,0.3307270233196159,0.3359067191992333,0.3384945964734879,0.3424207712867507,0.3442622950819672,0.3471005917159763,0.3513309134906231,0.347444089456869,0.350579358663433,0.3538924407672057,0.0,2.8707742701640617,56.92146315912508,171.67877367131712,256.2602345298583,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95702,45228,428.83116340306367,5856,59.99874610770935,4634,47.79419447869428,1786,18.2963783411005,77.38171245272493,79.75564934743434,63.34258245905804,65.09507303478959,77.15922399835152,79.53317897016242,63.26031257576364,65.01514399786583,0.2224884543734049,222.4703772719181,0.0822698832944013,79.92903692375819,179.68038,125.88612744839192,187749.8693862197,131539.70392300258,384.1771,250.9199622304699,400785.1978015088,261543.44969851195,394.62171,191.158058743196,407756.807590228,196394.64717886943,2642.8256,1231.0564843936925,2728655.116925456,1253483.1083923976,1121.31255,501.9198809931289,1156838.2165471986,509629.7726339095,1752.52116,737.8593318541404,1797156.2140812103,743544.1607363443,0.37948,100000,0,816729,8534.084972100896,0,0.0,0,0.0,32829,342.35439175774803,0,0.0,36015,371.7999623832313,1490488,0,53437,0,0,7035,0,0,69,0.710538964702932,0,0.0,0,0.0,0,0.0,0.05856,0.1543164330135975,0.3049863387978142,0.01786,0.3362097036795832,0.6637902963204168,23.957913599089142,4.321178051181353,0.3243418213206733,0.2434182132067328,0.2157962883038411,0.2164436771687527,11.442732773508956,6.028450890485141,19.068633403652832,12122.591221127852,53.046963463753535,13.58260785000486,17.128904465512505,11.183370749756904,11.152080398479276,0.5830815709969789,0.8173758865248227,0.7039254823685961,0.594,0.1276171485543369,0.7498039215686274,0.9375,0.8784119106699751,0.7569721115537849,0.167420814479638,0.5197975587972611,0.7513736263736264,0.64,0.5393858477970628,0.1163682864450127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023902122832604,0.0045109428377378,0.006849454073142,0.0088982792596956,0.0109852106515857,0.0131466395112016,0.0154677542696915,0.0177324513046674,0.0198828496365885,0.0221414679086907,0.0245635258296341,0.0267245716163078,0.028938708350473,0.031067801149591,0.0331785345717234,0.0350400132343514,0.0370059656972408,0.0389556482576842,0.0408016807421891,0.0427283622531394,0.0580052219321148,0.071889950900849,0.0851021414556862,0.0977908689248895,0.1100340692142985,0.1256173002696557,0.1374689668342988,0.1490727532097004,0.1602644903540069,0.1714950714875634,0.1842178981619152,0.1961098422938292,0.2076581769145442,0.2180671396246215,0.2278276362676521,0.2375033206411051,0.2467076284889102,0.2548805721739913,0.2625126175273048,0.26987452488895,0.2756717989056879,0.2820141194071719,0.2885165992286032,0.2943149421432165,0.2991548474839712,0.3046022321318584,0.3089558955895589,0.3138344545188651,0.3188915768638662,0.3228029943592176,0.3209687390801817,0.3187440794080095,0.3176736926473276,0.3168510834485938,0.3155829928347249,0.3128946645922943,0.3094389043170916,0.3105207226354941,0.3109169414884575,0.3116354325948579,0.3131348969226172,0.3136439759629593,0.3156041666666667,0.3160916981971956,0.3179947355826752,0.3190619175812798,0.3202388701780205,0.3234771217366894,0.3260809023184571,0.331506309148265,0.3349490373725934,0.3366320914479255,0.3436987511038223,0.347378062743302,0.3488853353400433,0.3533380681818182,0.3571210734980177,0.3579223928860146,0.3548922056384743,0.3593508500772797,0.0,2.3973746685247845,55.62447488671858,184.626731418312,238.5582734321706,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95850,45335,428.6384976525822,5879,60.135628586332814,4641,47.75169535732916,1876,19.08189880020866,77.44506122741345,79.72349703487446,63.40474875222951,65.08452267526152,77.20778585888476,79.49230268882495,63.31589597023711,65.0015816372679,0.2372753685286852,231.19434604950584,0.0888527819924007,82.94103799362063,178.25566,124.80965235325613,185973.5628586333,130213.513148937,376.74456,245.5936664299309,392406.14501825767,255576.83508599983,382.74315,186.01778720757792,395969.06624934793,191410.15105623333,2674.57308,1237.6879750066214,2752855.628586333,1253757.9707945967,1107.52087,490.9218138609814,1138453.646322379,495157.8131048313,1834.11244,769.1420716324361,1867167.741262389,761950.6043042773,0.38242,100000,0,810253,8453.343766301514,0,0.0,0,0.0,32227,335.5451225873761,0,0.0,34996,361.74230568596766,1505887,0,54097,0,0,7077,0,0,60,0.6259780907668232,0,0.0,1,0.010432968179447,0,0.0,0.05879,0.153731499398567,0.3191018880762034,0.01876,0.3340887018452573,0.6659112981547426,24.317328515080177,4.331366428902211,0.3206205559146736,0.238095238095238,0.2152553329023917,0.2260288730876966,11.202023924179924,5.840918685176714,19.92595428942116,12189.901640496544,52.6830271884333,13.366312444860151,16.824799620161148,11.124729288883158,11.367185834528843,0.5664727429433312,0.8153846153846154,0.6955645161290323,0.5695695695695696,0.1182078169685414,0.7488408037094282,0.9189814814814816,0.8746928746928747,0.704,0.1951219512195122,0.4959665371974903,0.7488855869242199,0.6281221091581869,0.5246995994659546,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023988339844936,0.0047204692105876,0.0072295509161149,0.0096423206528358,0.0120104863129229,0.0143960281205807,0.016682962600831,0.0189564277483761,0.0211683975124835,0.0233128834355828,0.0253839852549662,0.0273732359698063,0.0295286710557398,0.0314348313566557,0.0334847876034164,0.0355391777371773,0.0375307671623885,0.0392331606217616,0.0412595907264553,0.0432904937821947,0.0574807337344748,0.0714128992487801,0.0849834033151485,0.0978990891155606,0.1100145198964668,0.1254578271286982,0.1381537842445807,0.1491552438635639,0.1602252367545431,0.1702380442693839,0.1820370609226536,0.1935354975269444,0.2053088698295516,0.2158812996768276,0.2253819707604266,0.2359442416196482,0.2454777481805111,0.254786947141316,0.264085704568643,0.2718638792580641,0.2789597835387711,0.2857259790222056,0.2923173386333522,0.2985396217380895,0.3037874834654078,0.3083969465648855,0.312807480940876,0.3169273053480767,0.3204932259150843,0.3248848838283218,0.3235666218034993,0.3218536129511035,0.3203553256683439,0.3191369849202806,0.3174480940674703,0.315194680413,0.3133963750985027,0.3143300653594771,0.314851047178318,0.3157408722829947,0.3158661115985588,0.3164429728611128,0.3184818481848185,0.319279255200677,0.319065868263473,0.320538423632544,0.3199898011218766,0.3239031107216624,0.3276222315085667,0.3302241018141575,0.333318161128812,0.3360987024037439,0.3381204333585286,0.339209074187615,0.3431223948465328,0.3452110486667464,0.349164603960396,0.3495749533485383,0.3469387755102041,0.3496062992125984,0.0,2.6493772181849957,56.08020137555521,173.85621017260556,245.2966899034428,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95668,44986,426.7153071037337,5985,61.14897353346991,4682,48.18748170757202,1864,18.971861019358613,77.29747507811412,79.69977253486076,63.28577397120039,65.06540122484301,77.0550691182636,79.46339870343058,63.195620490744886,64.98087232223796,0.2424059598505152,236.3738314301713,0.0901534804555055,84.52890260505797,178.54452,125.05173428797475,186629.3013337793,130714.276757092,380.08694,247.0743537488481,396515.7314880629,257480.12266259157,380.80087,184.55518228724324,393410.4193669775,189405.14380173312,2692.95368,1243.3411592771818,2772337.458711377,1257084.1653187913,1117.96129,499.4958307234171,1151724.9446000753,505254.38048607385,1828.02732,775.4650818324168,1861661.1406112807,768702.334863904,0.37888,100000,0,811566,8483.150060626333,0,0.0,0,0.0,32477,338.67123803152566,0,0.0,34760,358.6674750177698,1496820,0,53770,0,0,7177,0,0,67,0.7003386712380315,0,0.0,0,0.0,0,0.0,0.05985,0.1579655827702702,0.3114452798663325,0.01864,0.3301001749085705,0.6698998250914295,24.142840603187462,4.242369292438571,0.3269970098248612,0.24263135412217,0.2016232379325074,0.2287483981204613,11.127643105864037,5.877731155776513,19.946070487652783,12103.981247061054,52.99136546662019,13.58611693598607,17.15719493684672,10.51953763411398,11.728515959673423,0.5583084152071764,0.7746478873239436,0.6949706074461136,0.5773305084745762,0.1167133520074696,0.7319182389937107,0.9123222748815166,0.8507462686567164,0.7668161434977578,0.1466666666666666,0.4935483870967742,0.6932773109243697,0.6395039858281665,0.5187239944521498,0.1087470449172576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021788479468158,0.0041385186537642,0.006426722168638,0.0082613555532974,0.01055908203125,0.0126810487074497,0.0148096772877483,0.0170543902289577,0.019176288902298,0.0214541730670762,0.0234378205391211,0.0254568989428914,0.0276231726011049,0.0298524380693293,0.0320382435236905,0.0340822110511181,0.0360278189488085,0.0383780696744717,0.0405439147714267,0.0426680562793121,0.0573517889788456,0.0714158597225857,0.0843888055237835,0.0968345974605245,0.1093189586058483,0.1251639933979432,0.1376147762857597,0.1488081290075197,0.1594250943739239,0.1694403882494417,0.1825692130153902,0.194597407102285,0.2058429463089441,0.216202298649078,0.2259053078322218,0.2355486519471874,0.2449757449757449,0.2533626225076039,0.2619080083628761,0.2692603078898199,0.2756878873892139,0.2824044791154215,0.2888517715625999,0.2950949557033444,0.3006351446718419,0.3056700649206388,0.3100621678532037,0.314796868225753,0.3190599844196312,0.3235266882730339,0.3224521755565456,0.3207877884509219,0.3192108758938413,0.3181330783052223,0.3169708599223526,0.3159201311736672,0.3135058153334916,0.313544451186513,0.3138992060517259,0.3141661472709465,0.3157845590707056,0.3168767231193383,0.3180602006688963,0.3173913043478261,0.3169444777551265,0.3181309966457786,0.3205776994370842,0.324644772748659,0.3292700014011489,0.3322235434007134,0.3355646630236794,0.3405654872420561,0.3442963149289397,0.3477864682208216,0.3463671397687752,0.34853690321052,0.3483890858640358,0.3522473052674394,0.3553719008264462,0.3504404442742244,0.0,2.7953530514348066,55.034704350158,170.00477430053587,259.1028536146606,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95829,45586,430.84035104196016,5993,61.327990483047934,4745,48.9204729257323,1882,19.28435024888082,77.32864418348662,79.63947390685426,63.32870225298407,65.03836899011586,77.09642952373363,79.40827175492846,63.242221648886165,64.95474857750855,0.2322146597529837,231.20215192579963,0.0864806040979004,83.6204126073028,178.28228,124.90393894107528,186041.8662409083,130340.222628928,381.28619,248.1360796043257,397250.4774128917,258305.85807879208,389.22349,188.47058393010064,402325.5590687579,193773.7094711901,2725.20356,1255.6257835089186,2810962.0261090067,1277469.5588067493,1120.61988,499.9475566671478,1154105.7404334804,506608.503946536,1845.3274,772.3669276387632,1891816.8195431444,776856.2892926648,0.38411,100000,0,810374,8456.448465495832,0,0.0,0,0.0,32538,338.88488870801115,0,0.0,35574,367.3522628849305,1497214,0,53865,0,0,7048,0,0,63,0.6574210312118461,0,0.0,1,0.01043525446368,0,0.0,0.05993,0.1560230142407123,0.3140330385449691,0.01882,0.3341319278070596,0.6658680721929404,24.153578294570387,4.372204773314451,0.3226554267650158,0.233508956796628,0.2225500526870389,0.2212855637513171,11.282359238709766,5.800522603925452,19.967047578574512,12267.984146526644,53.8656926900063,13.434873454807056,17.264691650088846,11.666147392662198,11.4999801924482,0.5667017913593256,0.7978339350180506,0.6838667537557153,0.5909090909090909,0.1276190476190476,0.7389312977099237,0.9156908665105388,0.85785536159601,0.7677165354330708,0.1666666666666666,0.501018922852984,0.723935389133627,0.6221238938053097,0.5349127182044888,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990834050741,0.0045209423022341,0.0066149241617206,0.0090098326019827,0.0110433190970103,0.0136021176949704,0.0158495566201202,0.0180330043781317,0.020295542338586,0.0224302890764901,0.0249392911667366,0.027195665113606,0.0290427007861877,0.0310180466763437,0.0331642123499566,0.0355069319614041,0.0375962414107128,0.0399809219666963,0.0419531753121299,0.0441005037678504,0.0585351607317938,0.071899798216358,0.0860934093577058,0.0990826266511144,0.1113687627801083,0.1277310924369747,0.139857915385431,0.1516076862511438,0.1630430139677929,0.1730037411429245,0.1853989447614945,0.1966613655296268,0.208174760237479,0.2185006231006362,0.2284129918141008,0.2385900389932648,0.2480543117790904,0.2562041165608251,0.2655249170944442,0.2731672630516561,0.2801191897877076,0.286166619757951,0.2921455028967613,0.2981343328407876,0.3037011793629736,0.308024584701207,0.3124388837349247,0.3167675737684022,0.3218845694711164,0.3262988086265487,0.3252332919790711,0.3242959980141766,0.3237022803696063,0.3218604111694261,0.3204688989513822,0.3161401246507629,0.3143917761279269,0.3151330923430825,0.315993444190255,0.3164340339055564,0.3171996704613541,0.3189236179713123,0.3207294629412749,0.3213392857142857,0.3229959883734896,0.3239955094901183,0.3256628599094353,0.3294804950059677,0.3335899769020788,0.3358899343717877,0.339046233577306,0.3425871861563777,0.3470881443624203,0.3519706691109074,0.3535172803465486,0.3555661615559002,0.3597254004576659,0.3589329021827001,0.362691466083151,0.3615295480880648,0.0,2.1609011705555576,57.51810933889888,171.29468724131178,261.7403868158698,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95746,45385,430.2425166586594,5966,61.1931568942828,4729,48.8062164476845,1843,18.9146282873436,77.35098256499538,79.6979885276617,63.33757887846742,65.07043759054908,77.1116194941736,79.45855825433043,63.24836512946367,64.98374108796921,0.2393630708217813,239.43027333127984,0.089213749003747,86.69650257986916,179.28042,125.62667828726605,187245.85883483384,131208.27845264142,382.0943,248.75911270823784,398493.2112046456,259233.93427217612,386.42489,186.93287185684835,399575.74206755374,192202.5629935243,2707.5356,1253.0070263160906,2794782.445219644,1275629.0877071528,1140.62025,508.2420485860844,1173401.7086875692,512926.9093080496,1807.03446,769.3947174874083,1854947.590499864,774761.7950598584,0.38195,100000,0,814911,8511.175401583356,0,0.0,0,0.0,32636,340.2439788607357,0,0.0,35296,364.6000877321246,1494243,0,53646,0,0,7071,0,0,76,0.7937668414346292,0,0.0,1,0.0104443005451924,0,0.0,0.05966,0.1561984552951957,0.3089171974522293,0.01843,0.3332795872299258,0.6667204127700742,24.234282918253257,4.305068015177997,0.3080989638401353,0.2450835271727638,0.2249947134700782,0.2218227955170226,11.047795670325634,5.599605080144449,19.82066794509738,12139.684865730524,53.954165198143016,14.068077722400917,16.500585870854824,11.854412688924064,11.531088915963212,0.5741171495030661,0.8093183779119931,0.6884008236101579,0.599624060150376,0.1296472831267874,0.7304075235109718,0.9331742243436754,0.8407310704960835,0.7327935222672065,0.1674008810572687,0.5163625832609325,0.7391891891891892,0.6340782122905028,0.5593635250917993,0.1192214111922141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020252549289641,0.004196186943169,0.0063823526427404,0.008714552693589,0.0109607426462364,0.0133053720312325,0.01566752632491,0.0177581825418695,0.0198184754389909,0.022168319567687,0.0242744820657912,0.0265248722002094,0.0285106207974337,0.030460930098447,0.032321294089732,0.0345843367890107,0.036717957214157,0.0388406940063091,0.0407664635794639,0.0428590776026419,0.0571765614723721,0.0711573265265558,0.0846684561506521,0.0975240498344109,0.1099971536101711,0.1250991046227681,0.1374150237032166,0.1490358009450428,0.1598829134884516,0.1704517416351094,0.1828072821286222,0.1950403740826532,0.2062179773080814,0.2166048389744263,0.2257514037212374,0.235243257623624,0.2459371614301191,0.2547029702970297,0.2626316506264754,0.2702197663621043,0.2776189539230778,0.2846794766775107,0.2910121131825494,0.2966844740435522,0.3021909328154397,0.3077046173541612,0.3118615671221915,0.3150754599432938,0.3202739619612362,0.3240228625737555,0.322354590049054,0.320910431104559,0.3196952595936794,0.3192151752099623,0.3173235727357943,0.3152520544584815,0.3132749817651349,0.3129349059862804,0.3134055182087203,0.3138504946605236,0.3149817295980511,0.3157551697576583,0.3164808917197452,0.3159671002637343,0.3173792044527614,0.3194791666666666,0.3203684749232344,0.3236874351965312,0.327585603861355,0.3280525961424215,0.3321342379673057,0.3338472170538514,0.3365893622384673,0.3392110663525119,0.34287860294808,0.3459119496855345,0.3451382416899658,0.3481632653061224,0.3594534300055772,0.3593023255813953,0.0,2.2443977683472647,55.92886000105604,181.61212903819168,255.15470746630692,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95832,45251,428.6355288421405,5879,59.90692044411053,4638,47.69805492945989,1800,18.28199348860506,77.51248185563044,79.79817946149221,63.42745123530996,65.1106341462562,77.27840394234826,79.57097804351024,63.33877603554296,65.02813450033575,0.2340779132821779,227.20141798197344,0.0886751997670032,82.4996459204499,180.35314,126.27991126006744,188197.19926538103,131772.17553642567,385.25002,251.42854369084787,401298.814592203,261657.07038447267,384.80069,187.29531718058976,397869.7303614659,192463.8706621558,2646.3552,1227.842324250788,2722607.604975374,1242399.662170035,1103.58428,489.03348169602685,1133818.5992152935,492546.5387816375,1763.78214,752.1389835713961,1793749.8121712997,743899.4134347265,0.3807,100000,0,819787,8554.418148426414,0,0.0,0,0.0,32831,341.8482344102179,0,0.0,35186,363.542449286251,1493491,0,53578,0,0,7026,0,0,86,0.8765339343851741,0,0.0,0,0.0,0,0.0,0.05879,0.1544260572629367,0.3061745194761013,0.018,0.3449454663845027,0.6550545336154973,24.18517863513437,4.354012899154186,0.3141440275981026,0.2488141440275981,0.2164726175075463,0.2205692108667529,11.379437808136526,5.999675051937725,19.10052460351161,12103.598276791714,52.356047075053496,13.72835753896952,16.43431092701999,11.125947870519846,11.067430738544136,0.5638206123329021,0.7868284228769498,0.6835964310226493,0.5956175298804781,0.1104594330400782,0.7222653219550039,0.9095354523227384,0.847457627118644,0.71875,0.1184834123222748,0.5028366676619886,0.7194630872483222,0.6187739463601533,0.553475935828877,0.1083743842364532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024791046890494,0.0046890349500207,0.0068620196839619,0.0091221803939077,0.0114285133789796,0.0137597884674056,0.0159332939667284,0.0180902267906673,0.0203710700172566,0.022650577768688,0.0246787158875633,0.0267154826733942,0.0288215529730896,0.0308852890928925,0.0328144329896907,0.0350045447033548,0.0370040770711314,0.0390254017625712,0.0407533606199746,0.0425086672705125,0.0576535986566961,0.072306920133007,0.0858753628351968,0.0981986240218475,0.1108279718217907,0.1256813284319939,0.1372785957325023,0.1483143677549718,0.1588524712637544,0.1684159794366498,0.1810516353155013,0.1937539834289356,0.2053551070044191,0.2157327421450959,0.225848979905736,0.2364326081907563,0.2457047353760445,0.2544709054145136,0.2625366726702235,0.2695112472567666,0.2762965099509663,0.2835852200561647,0.2893392631740377,0.2946024389952582,0.2997784530453626,0.3040364583333333,0.3087808101335261,0.3129337859060743,0.3179509654799041,0.3216830942475031,0.3212017259400209,0.3192569879814931,0.3177381635882427,0.3168974591260083,0.3158914155602212,0.3134847398685234,0.3116475119979793,0.3118311242022582,0.312514890575542,0.3123309127153638,0.312492993011697,0.313319013931858,0.3139437737583023,0.3149422216284817,0.3153510132957773,0.3172768642051918,0.3190142437259778,0.3225003887420308,0.3258103657479632,0.3295862607338017,0.3333780041097114,0.3374798313641805,0.3403913821840854,0.3446344559778956,0.3478060895961733,0.3497286687449486,0.3535985695127402,0.3503134796238245,0.3492105967353492,0.3595087458131745,0.0,2.681617835860119,55.72404917474754,166.4763187369068,252.4595472992437,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95731,45326,429.9338772184559,5778,58.96731466296185,4601,47.42455421963628,1804,18.48930858342648,77.31288813594676,79.67230869562987,63.318020272784125,65.0625617990732,77.08389264749914,79.44453689044265,63.23333779822843,64.980502078416,0.228995488447623,227.77180518721707,0.0846824745556915,82.05972065719891,180.62638,126.54235379233153,188681.179555212,132185.34622257316,382.51759,248.7969754873897,398930.2733701727,259247.2244944371,385.64446,186.9425986200792,398392.2449363321,191872.2149748295,2614.649,1210.7058962335238,2698751.041982221,1232239.283379997,1084.6927,484.11784697206383,1115582.1834097628,488251.0209841572,1754.4739,735.4002419781797,1800879.0256029917,741577.1655422224,0.38237,100000,0,821029,8576.417252509636,0,0.0,0,0.0,32701,340.91360165463647,0,0.0,35277,364.0722441006571,1487680,0,53451,0,0,7258,0,0,58,0.5954184120086493,0,0.0,1,0.0104459370527833,0,0.0,0.05778,0.1511101812380678,0.3122187608168916,0.01804,0.3314625288874216,0.6685374711125784,24.089698889977896,4.296025636967364,0.3214518582916757,0.2471201912627689,0.2240817213649206,0.2073462290806346,11.502361677378111,6.17216933024806,19.25633733461191,12156.078780243744,52.38580624852016,13.74215112979994,16.670328793081957,11.417821940043805,10.555504385594464,0.5859595740056509,0.8021108179419525,0.7119675456389453,0.6032977691561591,0.1142557651991614,0.7304415182029435,0.9164733178654292,0.8488664987405542,0.7301587301587301,0.1279620853080568,0.529607250755287,0.7322946175637394,0.6617375231053605,0.5622593068035944,0.1103633916554508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699082420142,0.0046017089165712,0.006716788928459,0.0089789948401251,0.0111166485287985,0.0134419551934826,0.0154073620883042,0.0176108462394462,0.0197108798331527,0.0219534921821402,0.0242179409623606,0.0262771474046311,0.0283340018306542,0.0304166452078075,0.0326424496280782,0.0348084912875421,0.0368100065232923,0.038846636715467,0.0408768080526584,0.0427688813410987,0.0571464364384219,0.07116849418264,0.0850338709339149,0.0984838926739002,0.1108674335480741,0.1261621450103125,0.1382094841947772,0.1502762195706089,0.1609574774890249,0.1714150913048606,0.1844020498686533,0.1957976922993738,0.2062468743884673,0.2164432099035454,0.2268416651997887,0.2369607354488564,0.2469702042182792,0.256016200708781,0.2648034160855838,0.2715303877532313,0.2785347951422253,0.2846783625730994,0.2916893442816914,0.297029702970297,0.3021334499684113,0.30651662126684,0.3115363901657001,0.316510142271767,0.3204560176188625,0.3239386371744559,0.3224196984816203,0.3208914109415459,0.3202149718589988,0.317497539227607,0.3164227109608827,0.3142181767947321,0.3116942909760589,0.3118612267737529,0.3121093281728974,0.3131123170884602,0.3137464788732394,0.3144811180493607,0.316089664283168,0.3160707497596207,0.317320426689783,0.3187630480167014,0.3186320687391167,0.3214274445461142,0.325869595831573,0.3275635145375503,0.3292994794045118,0.330910055717697,0.3345030705602206,0.3356887774485221,0.3441265060240964,0.3457844183564568,0.3486181874324533,0.3445326817348809,0.3443080357142857,0.3500379650721336,0.0,2.4617505128209296,56.369160932073086,165.61660417515716,252.2702513890668,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95777,45368,428.7877047725445,5850,59.98308570951272,4557,46.95281748227654,1780,18.19852365390438,77.37208356525132,79.71134551356381,63.35007434272507,65.07965279378963,77.14371657111317,79.48529033619252,63.26489949751311,64.9980521733577,0.2283669941381418,226.05517737129333,0.0851748452119594,81.60062043192795,178.84482,125.32691998882198,186730.4467669691,130852.83522016976,380.89876,248.844718176825,397051.943577268,259175.3742305824,381.28809,185.00276774384068,394454.9630913476,190314.73371942827,2614.32176,1213.265232111116,2695794.8568027816,1232962.936938008,1069.85884,482.13942408238165,1100966.8500788289,487338.55017602025,1743.55654,742.4614608747434,1784283.9721436254,743597.8631230261,0.38241,100000,0,812931,8487.747580316778,0,0.0,0,0.0,32530,338.9853513891644,0,0.0,34831,359.94027793729185,1498615,0,53787,0,0,7175,0,0,58,0.6055733631247585,0,0.0,1,0.0104409200538751,0,0.0,0.0585,0.1529771710990821,0.3042735042735042,0.0178,0.3358281809306866,0.6641718190693133,24.344609050708613,4.239206523812388,0.3168751371516348,0.2470923853412332,0.2139565503620803,0.2220759271450515,11.09177641617861,5.838303557282736,19.148749480703632,12164.833298406753,51.9889585527804,13.627610152990902,16.249007081765996,10.922999062555142,11.189342255468368,0.5668202764976958,0.7806394316163411,0.7105263157894737,0.5846153846153846,0.1067193675889328,0.7250589159465829,0.9204545454545454,0.8551532033426184,0.7004048582995951,0.1674008810572687,0.5054811205846529,0.6909620991253644,0.6626728110599078,0.5453296703296703,0.0891719745222929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384280360579,0.0047747455496532,0.0069209068214568,0.0091730071819668,0.0115936133428251,0.0137135526958788,0.0160535730666911,0.0183582668326632,0.0205403858731196,0.0227612322177873,0.0249228845779403,0.0272786050759962,0.0293467646605334,0.0312911861614497,0.033638576083818,0.0358943627045792,0.0379985301576457,0.0398838535725396,0.0419047816961409,0.0439766374113752,0.0584269897421448,0.0721054283024788,0.0854456255110384,0.0985489277195784,0.1103677872712523,0.1254146681598242,0.1376247906907734,0.1493859322664681,0.1603038774247241,0.1699125851651883,0.1828157104897963,0.1948939113892581,0.20590280796314,0.2164493173445852,0.2262874863910791,0.23675964168263,0.2459091365405851,0.2550608652646487,0.2635820591002346,0.2712046799693192,0.2778028331887829,0.2847407303502127,0.2916676515778277,0.2965330651726284,0.3011492578973556,0.306599359763605,0.3109572923446653,0.3149763491175423,0.3191885737942455,0.322745671980275,0.3219573197789342,0.3201856785782954,0.318662120657105,0.316964608292267,0.3162006029374638,0.3135703463369094,0.3109564116762914,0.3115619925533485,0.312922145654144,0.3138339638803626,0.3148550046772684,0.3159982632035999,0.3172936106113226,0.3181645724998326,0.3194401094811649,0.3204774065773701,0.3206372772955687,0.3257198664230357,0.329998595900028,0.3327902078448516,0.3352301179041289,0.3378787074866026,0.3394259154575718,0.3448616600790514,0.3456511518570757,0.3490488006617039,0.353627139179161,0.3540031397174254,0.3613197424892704,0.3511705685618729,0.0,2.430665023003684,55.56606528134225,171.36604863409636,242.22364440251243,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95652,45003,427.8844143352988,5926,60.88738343160624,4623,47.79826872412495,1798,18.462760841383343,77.25911226955019,79.65562055715948,63.27736057920528,65.04568758532993,77.03672531404972,79.43396793090581,63.195506220253606,64.96642473490347,0.2223869555004682,221.65262625367177,0.0818543589516735,79.26285042645986,178.20748,124.85573003492377,186308.1587421068,130531.22782056178,379.27534,246.6500517429353,396003.7845523356,257349.82200365412,378.55591,182.7756656761494,392416.5098481997,188432.5900398808,2656.19924,1221.18274995512,2746680.843056078,1246433.6030141762,1116.9725,492.0464372111626,1153027.4641408438,499694.4833470936,1762.61272,736.258313221335,1811407.93710534,742280.8749371509,0.37964,100000,0,810034,8468.552670095763,0,0.0,0,0.0,32441,338.6128883870698,0,0.0,34516,357.51474093589263,1497062,0,53792,0,0,6920,0,0,66,0.6900012545477355,0,0.0,1,0.0104545644628444,0,0.0,0.05926,0.1560952481298071,0.3034087073911576,0.01798,0.3278582930756843,0.6721417069243156,24.47190784861984,4.328489672936184,0.3201384382435648,0.2366428725935539,0.2227990482370755,0.2204196409258057,11.026622965816609,5.59769872780628,19.257563443849207,12127.639736908815,52.800929527134045,13.18563979703466,16.912522834773092,11.448372420140174,11.254394475186126,0.5611075059485183,0.7879341864716636,0.6864864864864865,0.583495145631068,0.112855740922473,0.7178456591639871,0.9182058047493404,0.8290398126463701,0.7466666666666667,0.107981220657277,0.5034033737792246,0.7188811188811188,0.6286799620132953,0.537888198757764,0.1141439205955335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.004380494630852,0.0065566449465115,0.0085453584782962,0.0106719568645404,0.0129142647627971,0.0151926096620918,0.0175893504292699,0.0197810286134879,0.0216901754457796,0.02381660293017,0.0259264203057777,0.0281203394188737,0.0301525655949646,0.0321255714595308,0.0340071343638525,0.0359466290970869,0.0378239794064832,0.03974246962889,0.0417296485869463,0.0564716701151587,0.070235339708208,0.0837936031249343,0.0958167058005959,0.1080030833887709,0.1238006481265753,0.1361613543912568,0.1477701306172892,0.1586420743116813,0.168701347506308,0.1808298370309652,0.1925352112676056,0.2046305976650984,0.2150713143307845,0.2262186986580807,0.2371974239395958,0.2471250223733667,0.2563654405629101,0.2645577248899856,0.2711200459506031,0.2779924123768751,0.2854914745408917,0.2917161027003939,0.2969970908566345,0.3026099252739751,0.3068452859102537,0.3113431299961098,0.3153538084791592,0.3196012771590997,0.3240429640995793,0.3231832415505885,0.3224840228028766,0.3207659237470302,0.3187292087334215,0.3176681346570127,0.3158986812578771,0.3139985391724094,0.3141516423808347,0.3150720164609053,0.3158705149323211,0.3167855801727375,0.3178561532676245,0.3196332661967103,0.3200303388582773,0.3204712883641686,0.3206664414004627,0.3216811018032088,0.3229006435410453,0.3240789427559855,0.3282984459245163,0.3341820496499045,0.3366908763187192,0.3385737643063765,0.3384871911474912,0.3421812424327093,0.3441673561044793,0.346780331861775,0.3440643863179074,0.3438363736871199,0.3441608662026295,0.0,2.031703927135682,54.95139838113619,175.70503973750607,252.3715533162199,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95623,44989,426.3304853434842,5741,59.033914434811706,4517,46.71470252972611,1788,18.33240956673604,77.28554750318864,79.71677035357213,63.27381344368566,65.0716669393001,77.06195444978181,79.49482136503163,63.19099619232454,64.99186316206931,0.2235930534068302,221.94898854050396,0.0828172513611207,79.80377723079357,178.14698,124.77831674641322,186301.39192453696,130489.85782334086,376.71898,245.41812491066992,393435.59603861,256124.96827284215,375.6307,182.04342182739896,389682.0848540623,187935.59157795095,2585.28164,1186.9047049869466,2674669.148635789,1212303.326802412,1076.80243,476.4524551781622,1113759.472093534,485958.0722075162,1754.75068,732.95833154747,1801038.8295702918,738182.2831512595,0.38052,100000,0,809759,8468.245087478954,0,0.0,0,0.0,32216,336.36259059013,0,0.0,34313,355.65711178273006,1499958,0,53784,0,0,7072,0,0,60,0.6274641038243937,0,0.0,0,0.0,0,0.0,0.05741,0.1508724902764638,0.3114439993032573,0.01788,0.3391203703703703,0.6608796296296297,24.51764169477805,4.316745640139877,0.3152534868275404,0.2351117998671684,0.2282488377241532,0.2213858755811379,11.236390275394434,5.862517030336284,18.88780300887059,12150.014875455958,51.16538945578323,12.820854855768063,16.099296323777157,11.34206689119241,10.903171385045605,0.558556564091211,0.7909604519774012,0.6882022471910112,0.5548011639185257,0.131,0.7332214765100671,0.9152119700748128,0.8602739726027397,0.7351598173515982,0.1545893719806763,0.4959398496240601,0.7155824508320726,0.6288951841359773,0.5061576354679803,0.12484237074401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888933927847,0.004412256945501,0.0065182959022052,0.0086090359302739,0.0108859317136694,0.0131711640130794,0.0153726882312737,0.0175711016672115,0.0199343363574065,0.0221521256004014,0.0243429556225764,0.0265204837599284,0.0285329023890644,0.0305632292912217,0.032907236081282,0.0351682906142038,0.0372542720649954,0.039267206015225,0.0413322924798334,0.0433299606755051,0.0583094645731847,0.071963028169014,0.0848772080999569,0.0982426936935038,0.1105641762350927,0.1262589356632247,0.1382879245122625,0.1496311457933563,0.1608795677063827,0.1697340854149879,0.1829589348525064,0.1951907023135801,0.2061810731877424,0.2157962788455217,0.2266347669816209,0.2365313325490022,0.2456461961503208,0.2539475018878132,0.2621231234302729,0.269540295769804,0.2769414271487134,0.2836014894962411,0.2897482099672815,0.2950144656126577,0.3012778386272362,0.3068294007305756,0.3114823906617905,0.3149695564670216,0.3188407676348547,0.3239581682776105,0.3236739695406865,0.3217600550017188,0.3209179145477341,0.3191972026355335,0.317933410555704,0.3151507722481,0.31314443194957,0.3129034907597536,0.3139618260661727,0.3147641770771898,0.3146982807056973,0.3158268555419642,0.3175191655146412,0.3178438246656097,0.3192408282745879,0.3201744140777077,0.320754716981132,0.3240642379553833,0.3289647500521448,0.3323869237745968,0.334255270913625,0.3377248677248677,0.3426991011377208,0.3458509993943064,0.3428705002337541,0.3443257833587607,0.3475748821651209,0.3488512696493349,0.3545925320250749,0.3610067618332081,0.0,1.991833881921797,52.37082684327802,171.7134567414512,246.3190073964832,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95822,45164,428.39848886477006,5844,59.97578844106781,4589,47.44213228694871,1755,18.03343699776669,77.35864855579545,79.66345596391722,63.35358995694328,65.05425516529898,77.14287574220319,79.44819335916384,63.2746042228332,64.97782400308556,0.2157728135922667,215.2626047533772,0.0789857341100699,76.43116221342439,178.97264,125.30916424648866,186775.22907056837,130772.07692442017,379.78342,247.8880081844206,395897.2261067396,258253.90674092443,381.31777,185.17980241368411,395474.3378347352,191301.41804729545,2590.22812,1192.04002692853,2677951.07595333,1218959.9472487576,1054.75631,469.4012685570497,1086459.142994302,475655.33037854126,1708.72514,707.8738040700705,1756035.148504519,714163.7265058968,0.38134,100000,0,813512,8489.783139571287,0,0.0,0,0.0,32484,338.54438437937006,0,0.0,34878,361.51405731460414,1497423,0,53746,0,0,7228,0,0,66,0.678341090772474,0,0.0,0,0.0,0,0.0,0.05844,0.153249069072219,0.3003080082135523,0.01755,0.3340418574231524,0.6659581425768476,24.33824015425965,4.229982314405351,0.3220745260405317,0.2529962954892133,0.2200915232076705,0.2048376552625844,11.382897173242284,6.133534939697585,18.583269539358295,12149.51205961935,52.021052420331415,13.910317492055464,16.658850773722794,11.152680871723526,10.299203282829644,0.5648289387666158,0.7820844099913867,0.6792963464140731,0.5653465346534653,0.1159574468085106,0.7401574803149606,0.908883826879271,0.8716049382716049,0.6808510638297872,0.1465968586387434,0.4977402832178367,0.7049861495844876,0.6067101584342963,0.5303225806451612,0.1081441922563418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0045072876257229,0.0065999574196295,0.0089196018143626,0.0110946294678235,0.0129596663445399,0.015432098765432,0.0176165168871706,0.0196759495739942,0.0219830804955143,0.023855127981891,0.0260121239473603,0.0281813138266176,0.0303363964724163,0.0321998597764671,0.0341551077739793,0.0360694072242283,0.0381593133189583,0.0403427681121786,0.0422041079775549,0.0573678994314328,0.071815406490465,0.0848898392134666,0.0974830539645841,0.1100514268853011,0.1254715485813916,0.1379642978290366,0.1493650152098534,0.1603202562049639,0.1706294755799494,0.1826050447308077,0.1944468480941461,0.2063172773730564,0.216397423137079,0.2257631297953612,0.2361305051311035,0.2455083138042629,0.2541842886709259,0.2623942096067887,0.2697660035047933,0.2781409447998982,0.2850690909941848,0.2906226698701636,0.2957067862022676,0.3010257407452419,0.3070191655882172,0.3118387153255459,0.3164653528289892,0.3200139794967381,0.3239984698386735,0.3223510735618576,0.320710888748385,0.3197609841827768,0.3174568841206668,0.3172460844803037,0.3157830404889228,0.3139465030985203,0.3150010664654055,0.3156635973828519,0.3160030025736345,0.3173749226760642,0.3192368525108738,0.3202710356835679,0.3211382113821138,0.321901511692182,0.322730475171568,0.3239565204987019,0.3267236215756123,0.3292888795104452,0.3335721678210334,0.3364116094986807,0.3390064886714179,0.3404509952128999,0.3423568096658255,0.3435128805620608,0.3433345099423461,0.3434636530238241,0.3486815415821501,0.3503467406380027,0.3573667711598746,0.0,1.734081075833481,56.06298076234752,166.8661496097146,250.1428788003014,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95874,44938,424.8075599223982,5796,59.463462461146925,4586,47.38510962304692,1757,18.107098900640423,77.41454581429173,79.70400277880775,63.37712166936033,65.06849415804739,77.19381218741637,79.4806520677544,63.29719532462687,64.98897750194536,0.2207336268753579,223.3507110533424,0.0799263447334581,79.51665610202951,179.5068,125.65702101958676,187231.53305379977,131064.3201026019,378.61006,246.68152045363365,394470.54467321694,256865.46569790196,384.10616,185.6951500139675,397575.6826668335,191390.6992149331,2630.2398,1205.3159811962992,2720076.7674239106,1233926.1394625225,1105.99514,491.5870403685388,1142922.1060975865,502207.8952035145,1722.6296,712.7021663941292,1776068.0476458685,726360.5369184291,0.3791,100000,0,815940,8510.524229718172,0,0.0,0,0.0,32291,336.337276008094,0,0.0,35057,362.6217744122494,1498543,0,53821,0,0,7154,0,0,68,0.6988338861422284,0,0.0,1,0.0104303565095854,0,0.0,0.05796,0.1528884199419678,0.3031400966183575,0.01757,0.3397066095269491,0.6602933904730509,24.4259819956763,4.278025523992913,0.3048408198866114,0.2546881814217183,0.2191452245965983,0.2213257740950719,11.17653791993784,5.831325704361811,18.695465543284325,12130.024429272158,52.16553331703881,14.05076958398844,15.84841650432941,11.233463836546225,11.032883392174735,0.5680331443523768,0.7953767123287672,0.6924177396280401,0.582089552238806,0.1211822660098522,0.7630942788074134,0.9269406392694064,0.9019607843137256,0.7542372881355932,0.1952380952380952,0.4956651718983557,0.7164383561643836,0.6205571565802114,0.52925877763329,0.101863354037267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025003796122893,0.005004812319538,0.0074125150836062,0.009735447586949,0.0119727614594979,0.0140518320292229,0.0158720456397718,0.0181769962054755,0.0205013483696984,0.0225533917028066,0.0248394399090415,0.0268645693360276,0.0289654038613688,0.0311470685111989,0.0330230016599136,0.0347858419144607,0.036769574573746,0.0389549825899519,0.0412834513255963,0.0431974204285417,0.0575950620888115,0.071343476988672,0.0846209446789788,0.0977763312615488,0.1098850187423661,0.1255425427433918,0.1372677780837587,0.1490557816767447,0.1601796247506693,0.1706389995288877,0.1823725532372553,0.1949047202135823,0.205668596756146,0.2157597474245387,0.2259492836424365,0.2362441646939091,0.2449084240917654,0.2535670149421413,0.2611815924628414,0.2688183118741059,0.2750846850179775,0.2819020233544903,0.2885993331283846,0.2946129155887707,0.2996550802788505,0.304428726340694,0.3095958964093582,0.3145070010555633,0.3186612418368404,0.3232899130274115,0.3222789001197862,0.3209861265794937,0.3196172248803828,0.3178978051631336,0.3169240812450853,0.314459544155189,0.3124062702258986,0.3130914568256983,0.313207611512754,0.3144077600783127,0.3153610634007915,0.3165152977797041,0.3183941605839416,0.3194082971860749,0.3200804751868173,0.3215137995434737,0.3228174603174603,0.3261771772708834,0.3299228271117784,0.3330432374698366,0.3355801854783986,0.3367799113737075,0.3397272217724357,0.3438741101536156,0.3489602673598218,0.3492901560483398,0.3489290596992253,0.3474025974025974,0.3463227222832052,0.3530308806709874,0.0,1.6949376605065805,54.89570964131046,175.6990785348691,245.15451138592604,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95704,45424,430.9955696731589,6028,61.73200702165009,4752,49.01571512162501,1908,19.54986207473042,77.36002699221102,79.7310965898895,63.33690834044432,65.08838966088506,77.12327894922518,79.49782042799826,63.24812327355826,65.00381662656675,0.2367480429858375,233.27616189124,0.0887850668860608,84.57303431831065,178.85648,125.23074662501234,186885.062275349,130852.15521296117,382.22326,248.51797196103595,398764.7224776394,259057.6682312682,386.21181,186.37674617773476,399674.9874613391,191784.83264577625,2714.56068,1251.3240710898187,2803275.056423974,1274358.8866576138,1105.3733,489.4591908530347,1141655.2913148876,498096.3159816635,1854.5893,781.788314205205,1902701.0365292984,784671.4790103759,0.38238,100000,0,812984,8494.77555797041,0,0.0,0,0.0,32649,340.4873359525203,0,0.0,35147,363.35994315807073,1498911,0,53799,0,0,7057,0,0,85,0.8881551450305109,0,0.0,0,0.0,0,0.0,0.06028,0.1576442282546158,0.3165228931652289,0.01908,0.3322259136212624,0.6677740863787376,24.52478129091539,4.294938613199529,0.3154461279461279,0.2453703703703703,0.2234848484848484,0.2156986531986532,11.02919622457298,5.7745446371709,20.312156338178813,12233.957860765207,54.07688259094822,14.093648157368255,16.95258268286304,11.767468582606943,11.263183168109988,0.5742845117845118,0.7941680960548885,0.7104736490993996,0.596045197740113,0.1024390243902439,0.7402700555996823,0.9196217494089834,0.8814432989690721,0.7361702127659574,0.1314553990610328,0.5144574864013742,0.7227456258411844,0.6507650765076508,0.5562273276904474,0.0948275862068965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396906746614,0.0048657360946385,0.0071643850907725,0.0093053495601292,0.0116359493876886,0.0139607347969532,0.0162181447502548,0.0184531221294576,0.0206286736519294,0.0230655828333913,0.0252824540179212,0.0273397396410825,0.0295236724116655,0.0316516974291364,0.0333887060328728,0.0352357320099255,0.0372331057631543,0.0392451968487591,0.0407934014956887,0.0426808936312104,0.0574087225332108,0.0716334177639153,0.0848615190935795,0.0970843150454392,0.1099723751080744,0.1256211278624743,0.138041137595604,0.1494603971987483,0.1610894526034713,0.171372481709541,0.1842522060487216,0.1965951643974977,0.2084053528139234,0.2187670843447265,0.2285506863780359,0.23862855876814,0.24763700884936,0.2564362114923912,0.2655690116569147,0.2737462789100068,0.2813995976041257,0.2876742745620493,0.2936446940585279,0.2989321713314339,0.3032080237019768,0.3083753063310469,0.3132013160034526,0.3172483033830668,0.3209045980283075,0.325036931518413,0.32384504557879,0.322824455855831,0.3215993230378676,0.3199403900688697,0.3182345418314844,0.316632714016573,0.315052674871081,0.3156212610427286,0.3155073824357771,0.3155286147263327,0.3165350499644447,0.3169248988453567,0.3178335038523375,0.3195667194151603,0.3200776643175607,0.3202777561051728,0.3197085278378686,0.3253068932955618,0.329499894492509,0.3323495393451123,0.3357587406187077,0.3378615950135847,0.33829907599472,0.3392599346554213,0.3415226529659038,0.3431129963473547,0.3465271458902032,0.3482178614337204,0.3531821906582901,0.3687834736036725,0.0,2.49002045427238,54.75323302949143,186.1821098746936,254.538638050326,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95746,44907,423.9341591293632,5819,59.50118020596161,4598,47.38579157353832,1821,18.6326321726234,77.33346816806463,79.695001255856,63.32120940122799,65.07016407364002,77.09955540715154,79.46430875572723,63.23390029575786,64.98665394788864,0.2339127609130855,230.69250012876807,0.0873091054701262,83.51012575137418,179.17878,125.37536855874218,187139.7029640925,130945.803019178,378.48534,247.1043055688564,394668.8738955152,257452.1305804156,373.2781,181.28634260993823,385534.5810791052,186016.58227891973,2636.41172,1210.7590142508693,2721133.081277547,1232225.9133939056,1090.10996,487.4851479283837,1123752.8774048004,494408.4621219973,1791.72258,759.0860117835134,1835909.9910179016,761876.9182561082,0.37838,100000,0,814449,8506.350134731478,0,0.0,0,0.0,32379,337.5180164184405,0,0.0,34056,351.47160194681766,1499415,0,53777,0,0,7004,0,0,76,0.7833225408894366,0,0.0,0,0.0,0,0.0,0.05819,0.1537871980548655,0.3129403677607836,0.01821,0.3415792922673656,0.6584207077326344,24.44369839814543,4.343464202983718,0.3242714223575467,0.2433666811657242,0.2050891692040017,0.2272727272727272,11.009194246378886,5.514936239496721,19.49197607071793,12114.55322574728,52.1576893267469,13.475007166216974,16.843093958895444,10.450487014521864,11.389101187112622,0.5663331883427577,0.7935656836461126,0.6887994634473508,0.6129374337221634,0.1062200956937799,0.7435064935064936,0.9136690647482014,0.8844086021505376,0.7777777777777778,0.1422018348623853,0.5014854426619133,0.7222222222222222,0.6237712243074174,0.5612813370473537,0.0967351874244256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304118749683,0.0047255912059384,0.0070742748107098,0.0095917413481273,0.0117369459530928,0.0137665590729973,0.0159646046568527,0.0182788675471004,0.0206246678386002,0.022775429150502,0.0248608306080395,0.0270417329705867,0.0293902903036722,0.0315238772000288,0.0336748274474604,0.035824659686405,0.0379390324718356,0.0400747120473176,0.0420742927838481,0.0440882389701287,0.0582064156497593,0.0718068405408799,0.0842995498567726,0.0972287952884261,0.10930431206302,0.1246365164796819,0.1368608685503294,0.1484114735777766,0.1586755674232309,0.1687346509807286,0.1814509178660691,0.1932890408587257,0.205642749154349,0.2159069777617344,0.225105891413169,0.234349564235169,0.2438068657549539,0.2533367845326251,0.2619280007263483,0.2693910733505851,0.276643728676343,0.2835991953969219,0.2897177467054676,0.2952465379270688,0.3005144881813328,0.304951445556253,0.30899908746578,0.3131894667276702,0.3177936495613694,0.3219464566097982,0.3200695071190915,0.3192106710671067,0.3180250320291712,0.3167692885843957,0.3155735877658389,0.3131650771259468,0.3122029279422016,0.3118705331471288,0.313291734336268,0.3136109473533773,0.3146753587351542,0.3157645199525879,0.3166711982096919,0.3173603199070661,0.318692420561422,0.3194125026134225,0.320731637935939,0.32438717787555,0.3272197041565651,0.3319988901660787,0.3367407205488165,0.3419293218720153,0.3428877409600604,0.3446301809022212,0.3446812523576009,0.3462504485109436,0.3461715513272978,0.3472052223582211,0.3502239641657335,0.3515292295780101,0.0,2.4395615463989744,53.59536195642505,171.92964909212557,252.59528280448728,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95797,45623,432.4665699343403,5935,60.84741693372444,4653,47.99732768249528,1835,18.81060993559297,77.34149214859087,79.67898018859557,63.33904717832892,65.07163324606995,77.11506775887085,79.45257642639183,63.25524843869159,64.98970308510911,0.2264243897200231,226.4037622037449,0.0837987396373307,81.93016096083738,178.91192,125.38249461660332,186761.5061014437,130883.52935541129,382.29995,249.19269506968328,398509.5879829222,259567.700599648,385.72939,187.37247812591136,398302.6086411892,192370.21559814847,2675.27268,1231.604310531205,2762465.2128981072,1255759.2804563686,1077.82548,475.2605062066221,1112606.5116861698,484012.7351236496,1797.76928,749.7550160714947,1845143.5848721776,758736.8347239278,0.3848,100000,0,813236,8489.15936824744,0,0.0,0,0.0,32665,340.38644216415963,0,0.0,35208,363.1637733958266,1498124,0,53737,0,0,7036,0,0,76,0.793344259214798,0,0.0,1,0.0104387402528262,0,0.0,0.05935,0.1542359667359667,0.3091828138163437,0.01835,0.342682140554481,0.657317859445519,24.148432678133183,4.301059217469864,0.319578766387277,0.2422093273157103,0.2140554480980012,0.2241564581990114,11.15993739321696,5.85280705421877,19.485829797338496,12252.263578125663,52.68744402451169,13.540079320752088,16.85042309723219,10.946911375136883,11.350030231390525,0.5589941972920697,0.7923691215616682,0.695359784801614,0.5652610441767069,0.1064237775647171,0.7365967365967366,0.914351851851852,0.8647342995169082,0.7579908675799086,0.1306306306306306,0.4910873440285205,0.7165467625899281,0.630009319664492,0.510939510939511,0.099878197320341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019550837241812,0.0042780531816753,0.0062610989903089,0.0084136080965735,0.0106323447118074,0.0130894052215012,0.015370022845953,0.0174514188851106,0.0196844354912928,0.0216569901391576,0.02384931661352,0.026247150397404,0.0283989220546789,0.0302555808515241,0.0323269635560691,0.034595030388225,0.0368004141858659,0.0390257059275088,0.0413770171555638,0.0431813449927128,0.0576451562418488,0.0719244683298132,0.0859478151524677,0.0989344710184523,0.1107633619962906,0.1270148291424887,0.1389728096676737,0.1511909825606125,0.1619977589242836,0.173173580821125,0.1865320662526771,0.198196834731471,0.2097012493210212,0.2201835864932794,0.2295952587770899,0.2392835001328491,0.2482973861673076,0.258033007746716,0.2658785428768783,0.2739202999611331,0.2806871709614851,0.2875287470377418,0.2934968861157396,0.2993298228817616,0.3050576106731352,0.3097033747124174,0.3135417447584776,0.31777896287267,0.3225402157762129,0.3258941495381214,0.3240983452299337,0.3224569984063307,0.3212853101380737,0.3200283044752841,0.3182054442579859,0.3166108229678248,0.3140365040920675,0.3149364511149791,0.315311773553945,0.3159060858378301,0.3173147262393788,0.3178713547544099,0.3187332102081934,0.319839598548322,0.3214096193738241,0.3225241703684348,0.3246104846345872,0.3292856916394534,0.3324611032531824,0.3362743532417758,0.3390415688440823,0.3408701243034719,0.3422174161948985,0.3400956494908979,0.344706329595134,0.3428947053902235,0.3432789432789432,0.3457501543527475,0.3502368347729172,0.3451834862385321,0.0,2.2186970695457022,56.3344134875258,168.69644168561032,253.5606813591569,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95713,45450,430.4221997011901,5800,59.56348667370159,4589,47.47526459310648,1775,18.25248398859089,77.3419109081298,79.71126309670804,63.33255108723839,65.08121713966726,77.12529185248071,79.49520796393381,63.25238155394427,65.00349221248383,0.2166190556490903,216.0551327742297,0.0801695332941179,77.72492718342505,179.34444,125.61509044265158,187377.30506827703,131241.40967543758,380.98911,248.4037901788652,397576.3898321022,259052.5531316176,386.86727,187.57526838302783,401393.8440964133,193798.9431943782,2641.57028,1208.982875634491,2734911.4122428508,1238158.197564062,1110.95548,492.6784189544037,1149160.5320071464,503191.4082798376,1747.48598,727.5450319423525,1799049.721563424,735795.9075284377,0.38129,100000,0,815202,8517.15023037623,0,0.0,0,0.0,32478,338.8149990074494,0,0.0,35259,365.6034185533836,1494902,0,53660,0,0,6982,0,0,82,0.8462800246570477,0,0.0,0,0.0,0,0.0,0.058,0.1521151879147106,0.3060344827586206,0.01775,0.3331131296449215,0.6668868703550784,24.47123806400679,4.327024484516608,0.3142296796687731,0.2394857267378513,0.2242318587927653,0.2220527348006101,10.967172254882646,5.535662149178688,18.75049129082677,12172.87154113686,51.963919824140575,13.267196277289097,16.251800200946843,11.365241786949037,11.07968155895559,0.5630856395728917,0.7797998180163785,0.6962552011095701,0.5792031098153547,0.1246319921491658,0.7458033573141487,0.914351851851852,0.8997214484679665,0.7407407407407407,0.1612903225806451,0.4946075494307969,0.6926536731634183,0.628808864265928,0.5292620865139949,0.1147132169576059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0046924090402351,0.0069588151754919,0.0091919232956853,0.0115101476389962,0.0137655779099128,0.0159535969499576,0.0183004000979831,0.0204926410466067,0.0227824004421382,0.0252485904664274,0.0273542186489233,0.0294619719468553,0.0315358938432374,0.0334337722375861,0.0352295398864963,0.0375003883635911,0.0393835616438356,0.0414357459993969,0.0434678394264037,0.0579327199239678,0.0716596011932799,0.0849822691315022,0.0981047937569676,0.1101477707812549,0.1259825858803863,0.1380074896831206,0.1497599454953852,0.1606435141169307,0.1709915147874406,0.1835971997845988,0.19556959970565,0.2072112247117685,0.2172448856864824,0.2264414458997283,0.237362613036404,0.2468612715473987,0.2553468873978669,0.2629651050703682,0.2703837616421428,0.278001387925052,0.2847833208536128,0.2914216063335029,0.2968238944732649,0.3021317947160644,0.3062024582989163,0.3110470941883767,0.3157988474308904,0.3201843532747304,0.3240184453227931,0.3231087971371298,0.3212274388066262,0.3198302631763829,0.318371111143133,0.3172097986040101,0.3155322755524334,0.3127880548014395,0.3134746429039444,0.3145732071288479,0.3154796939376104,0.3161854146003705,0.3171907094327698,0.3176500188702981,0.3180536912751678,0.3177860098142981,0.3188889178414154,0.3198108369893453,0.3217079837873504,0.3236585965775326,0.3272611566303396,0.3283677281217256,0.3298217611066773,0.3325761877720992,0.3363678090575275,0.3357863949429191,0.3407090173685462,0.339951130116066,0.3456739619554101,0.3481171548117154,0.3448540706605222,0.0,1.717542652316823,55.413461264878016,167.9507526992377,250.7751085276688,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95712,44937,427.0624373119358,5966,61.110414577064525,4707,48.62504179204279,1838,18.816867268472084,77.33810060160408,79.7209934069722,63.31256206328344,65.07499970363779,77.09926390635724,79.48193434153045,63.22362557297327,64.98797544550811,0.2388366952468459,239.0590654417508,0.0889364903101679,87.02425812967363,179.28548,125.50270974637792,187317.6613172852,131125.36541538982,379.70499,247.13488877192933,396180.8655132063,257671.48191650928,380.327,184.45289457267836,393471.1425944501,189732.06396434308,2696.85516,1246.0788876428444,2788614.8863256434,1272842.2848157426,1117.02069,498.05562599889817,1153331.0974590438,506635.7363746428,1798.89674,765.7367408306535,1844368.2505850885,772053.1324338265,0.37989,100000,0,814934,8514.43915078569,0,0.0,0,0.0,32455,338.5259946506185,0,0.0,34824,359.9862086258776,1495864,0,53682,0,0,7217,0,0,55,0.5746405884319625,0,0.0,2,0.0208960213975259,0,0.0,0.05966,0.1570454605280476,0.3080791149849145,0.01838,0.33392,0.66608,24.134876371135817,4.327654102133089,0.3103887826641173,0.2421924792861695,0.2266836626301253,0.2207350754195878,11.300663442870336,5.938985283289991,19.76109047621852,12127.024486178889,53.46009843555893,13.929608763939925,16.43860812900084,11.80823508520059,11.283646457417566,0.5640535372848948,0.7982456140350878,0.6919917864476386,0.5726335520149953,0.1183830606352261,0.7480559875583204,0.9187935034802784,0.8666666666666667,0.75,0.1775700934579439,0.4948845366851798,0.7249647390691114,0.625,0.5222623345367028,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023514625691755,0.0046966930411848,0.0067922919162588,0.0089131451104742,0.0111109980565928,0.0131800079446724,0.0152887420190522,0.0176494019835149,0.0197371785038605,0.021553268827113,0.0237594725130487,0.0259172168769959,0.0279154414032778,0.0302144048771445,0.0321961686456151,0.0342675264550264,0.0361032883293299,0.0380333855522933,0.0400661184518302,0.0418858529776351,0.0560881370091896,0.0703219863501235,0.0834889723627053,0.0966880173329547,0.1090264814756225,0.1242647992214276,0.1371512855611795,0.14896653071656,0.1591018392843783,0.1693918715934938,0.1826586356632581,0.1940928726871149,0.2054581278643197,0.2153182827940162,0.2249603768600863,0.2352452202826267,0.2443292866795474,0.253036596760213,0.2618295813361804,0.2699204329183004,0.2764671137208575,0.2838374257912671,0.2908429767728333,0.295715039324765,0.3009552978925107,0.3056577225938633,0.3108172474304337,0.315923664316765,0.3194010501069553,0.3232392599146868,0.3228378269184151,0.3205121145374449,0.3197283703630651,0.3186743332659135,0.3184546805349182,0.3168975239029173,0.3153078993192971,0.3157177791272094,0.3164961309167933,0.3166922500267732,0.3179365138852453,0.3181028011536486,0.3197678073723254,0.321040729047715,0.3233568921582768,0.3253146490203711,0.3264020878840316,0.3295005952753932,0.3316216027387689,0.3325442853197617,0.3352277852954443,0.338256162295685,0.3414649324786856,0.3442868932403031,0.3462108578840096,0.3497011602015704,0.351416515973478,0.3517337584695097,0.3602901665771091,0.3601201652271873,0.0,2.157796504122444,56.38515698889165,174.7159382945486,256.189053388022,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95654,45257,428.042737365923,5963,61.19974073222239,4772,49.34451251385201,1837,18.838731260585025,77.27782633283482,79.68977997847273,63.2892740309558,65.07273785561478,77.05600497984105,79.46695939890272,63.20725123747081,64.99233958699598,0.2218213529937713,222.820579570012,0.0820227934849882,80.39826861879362,180.83494,126.57761401862535,189051.10084262028,132328.6156549913,382.94848,249.57568023702555,399816.46350387856,260383.9256455825,390.35531,189.3702626177565,404525.153156167,195257.60847156763,2703.95468,1248.0738456168638,2797746.419386539,1275773.1789149472,1104.39001,490.11980150485874,1142834.41361574,500687.625091908,1789.27832,744.8528187858358,1837488.4897651956,752489.2695414621,0.38062,100000,0,821977,8593.23185648274,0,0.0,0,0.0,32612,340.37259288686306,0,0.0,35698,369.6761243648985,1485848,0,53371,0,0,7083,0,0,67,0.6899868275242018,0,0.0,0,0.0,0,0.0,0.05963,0.1566654405969208,0.3080664095254066,0.01837,0.3345047923322684,0.6654952076677316,24.045253853901293,4.198690086510649,0.3250209555741827,0.25,0.2160519698239731,0.2089270746018441,11.3687263688458,6.126273513618295,19.424824522460025,12141.264719982935,54.37096338979468,14.459355457321331,17.649606349820434,11.317283430526183,10.944718152126724,0.5785834031852473,0.7829002514668902,0.7143778207607995,0.574199806013579,0.1273821464393179,0.7309451219512195,0.9012875536480688,0.8606965174129353,0.7268518518518519,0.1578947368421052,0.5208092485549133,0.7070151306740028,0.6631853785900783,0.5337423312883436,0.118335500650195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024522221997041,0.004644653577803,0.006953891133535,0.0092889010843826,0.0116791291520423,0.0140789111765365,0.0160938296787353,0.0185686416701563,0.0206624250731368,0.0228434455701129,0.0251487179487179,0.027291869960454,0.0293975407727529,0.0314242427365578,0.0335226099525087,0.0354860062470264,0.037542485285584,0.0398716630844469,0.0420499479708636,0.0441768324470858,0.0583932452767095,0.0726815730219406,0.0864664021663832,0.0988971671507345,0.1109211775878442,0.1264461497750727,0.1379782726432827,0.1490699111461507,0.1607914438502674,0.1709233791748526,0.1837117334568925,0.1952534592148286,0.2064300562684341,0.2167680658292117,0.2255319617361822,0.2353736370889105,0.244758523678746,0.2528127812781278,0.2612366244170345,0.2684864091559371,0.2762779081732937,0.2825118921003728,0.2891864082033329,0.2957304286347677,0.3004823170657628,0.3052390113955897,0.3110735524256651,0.3151671736391289,0.3198024806563241,0.3237778481680921,0.3225049873294872,0.3207482149257023,0.3189522559521289,0.317276108064306,0.316011194140939,0.3133380381086803,0.3113914009201967,0.3119044092233249,0.312465762804711,0.3126352499329339,0.3137589556997637,0.314322478471741,0.3156460303151009,0.31638721216186,0.3182036734301375,0.3198823253755434,0.3198916298303151,0.3219087294073092,0.3238654451558134,0.3266195100507533,0.3295761741122566,0.3327472293265132,0.3354370463868728,0.3368300153139357,0.3411875589066918,0.3436828278003344,0.3415161340126602,0.345979381443299,0.3489349775784753,0.3562066306861989,0.0,2.148942702470765,57.683372886829545,177.39563860690424,259.684905505258,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95827,45258,429.7327475554906,5881,60.28572323040479,4575,47.241382908783535,1783,18.26207645026976,77.39792083527668,79.70053001450314,63.37134666233784,65.0710679380685,77.17469497851896,79.47890953047508,63.288513309860136,64.99099343006715,0.2232258567577218,221.6204840280653,0.0828333524776994,80.07450800134563,178.4123,124.89301766701834,186180.0536383274,130330.22876281229,382.32557,249.05889998866303,398464.3367735607,259395.650201129,378.98122,182.71733960835516,392359.7733415426,188253.51123342355,2628.62164,1195.8723624796166,2716174.188902919,1221140.063063246,1069.42458,471.8571658068685,1099203.606499212,475873.98452609306,1749.3117,729.260920367675,1793463.8880482535,733695.6423300987,0.38195,100000,0,810965,8462.729710833064,0,0.0,0,0.0,32671,340.394669560771,0,0.0,34559,357.52971500725266,1503394,0,53869,0,0,7143,0,0,69,0.7096121134961962,0,0.0,0,0.0,0,0.0,0.05881,0.1539730331195182,0.3031797313382078,0.01783,0.3257355318461041,0.6742644681538958,24.82210805965028,4.328069211607848,0.3304918032786885,0.2330054644808743,0.2192349726775956,0.2172677595628415,11.007864022591766,5.570859914856157,18.79581549433449,12178.542020905154,51.50161527805614,12.684354892564931,16.980898222480988,11.070391512195714,10.765970650814504,0.5554098360655738,0.7692307692307693,0.6838624338624338,0.5643070787637089,0.1217303822937625,0.7288135593220338,0.925925925925926,0.8423772609819121,0.7235023041474654,0.1363636363636363,0.495139911634757,0.6831395348837209,0.6293333333333333,0.5203562340966921,0.1180904522613065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0049346938361924,0.0068867589634362,0.0092300193942101,0.0113553188028627,0.0135352425149091,0.0154775733121395,0.0173425146646263,0.0193207593436459,0.0214339792514988,0.0234616724381697,0.0253398307258271,0.0272769301895515,0.0293176368893874,0.0314667656122775,0.0334826959610142,0.0356799255159571,0.0377464088054225,0.0398429955453101,0.0419407210057447,0.0565888157551607,0.0710453380745698,0.0844701219448259,0.0971570956956914,0.1096798676041194,0.1253779309469945,0.137655342070662,0.1494939174303138,0.1606148981401361,0.1705619254984823,0.1835079746276532,0.1958960269127175,0.2067668355476309,0.2172082750174947,0.2276331562682151,0.23828345567476,0.2477474463624604,0.2562845707604443,0.2645391678947965,0.2719898402819093,0.2793993549654941,0.2849766355140187,0.2904404374815252,0.2956473868763388,0.3013696969696969,0.3070016849303275,0.3124055879452191,0.3171434373175622,0.3220295174338959,0.3252591968843745,0.324829658243468,0.3230935833641759,0.3218623197562585,0.3208171962509178,0.3184686018957346,0.3157637872132747,0.3126685486287435,0.3146436807929472,0.3161246381746977,0.3163912238210571,0.3172281075425518,0.3179758010483585,0.3189284072386843,0.320369252777219,0.3217456155123054,0.323822923994893,0.3262989334019616,0.3293341331733653,0.3321149926196668,0.3346956590746766,0.3384973951192761,0.3423524388942256,0.3413291139240506,0.342540168324407,0.3441023211747986,0.3477691850089233,0.347010911326264,0.3513131313131313,0.3514028874965949,0.3442373526055534,0.0,1.9028597602513693,51.87212379628632,171.0900904439194,254.65760790588195,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95546,45245,428.7777614970799,5781,59.28034663931509,4560,47.06633454043079,1773,18.106461808971595,77.19945181010942,79.67065010885766,63.224607941291474,65.05378881813309,76.97709491668373,79.45345539184946,63.141086404583945,64.9753839177547,0.2223568934256974,217.1947170081978,0.0835215367075292,78.40490037838777,179.22542,125.5373603423478,187580.24407091876,131389.4462796431,378.50004,246.9861459400186,395506.7297427417,257862.14591926252,383.44146,185.50072550987008,397594.5722479225,191190.9343678269,2606.2784,1193.132276539665,2689702.509785862,1210680.7574777228,1070.77137,473.9083208501755,1102363.6886944508,477677.0988321598,1728.68208,727.8067814982363,1766183.4090385782,723742.7637560102,0.38056,100000,0,814661,8526.374730496305,0,0.0,0,0.0,32259,336.9581144160928,0,0.0,35019,362.7990706047349,1489310,0,53476,0,0,7149,0,0,74,0.7640298913612291,0,0.0,0,0.0,0,0.0,0.05781,0.1519077149463948,0.30669434353918,0.01773,0.3387842748595969,0.661215725140403,24.52166570658177,4.19741135206231,0.3269736842105263,0.2390350877192982,0.2208333333333333,0.2131578947368421,10.996019515155028,5.84290982096454,18.93477656598888,12194.544090295974,51.81737647480724,13.112768081998858,16.889692315911002,11.179796553389709,10.635119523507678,0.5732456140350877,0.7862385321100918,0.7149564050972501,0.579940417080437,0.1100823045267489,0.7377593360995851,0.9012987012987012,0.8894601542416453,0.7377777777777778,0.145631067961165,0.5141579731743666,0.723404255319149,0.6533575317604355,0.5345268542199488,0.1005221932114882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0042308394716016,0.0066922576976196,0.009038962095331,0.0115343893798102,0.0139350445472894,0.0159310098484461,0.0185366850602902,0.0207224723700368,0.0230787362034864,0.0254780993050494,0.0278551818452901,0.0299169945006282,0.0317303129706422,0.0339788768782423,0.035878431534926,0.0379278158058494,0.0400141348632244,0.0418971426190401,0.0437755783846989,0.0580900275124747,0.0722937049737314,0.0859761802146513,0.098934679297373,0.1112990170172286,0.1269163079663281,0.1387432048595227,0.1507283496078117,0.1609782748425247,0.1704411037271221,0.1830414029934558,0.1942961323088944,0.2052756171795739,0.2161631453081463,0.2253457391035617,0.2356835779113298,0.24626214244147,0.2547877802981571,0.2624366926535025,0.2704310770609113,0.2773621887431428,0.2839451155154216,0.290133928041851,0.2958937343117591,0.3009401334697257,0.3061981020166073,0.3102954656755026,0.3147500829229709,0.3200150625876486,0.3243715268589573,0.3238304883318928,0.3223155311021939,0.3211927071573718,0.3197168623250293,0.3183883220376852,0.31634532727496,0.3144960416303089,0.3158007339993088,0.3168009600548603,0.317201218419638,0.3171892339232983,0.3176255925110569,0.3196707507052335,0.3201202413800839,0.320456795190613,0.3214454045561665,0.3229557496777889,0.3274992116051718,0.3295990981469738,0.3329764453961456,0.336006524398532,0.3418329637841833,0.3428017268347619,0.3467485220554798,0.3513085591878551,0.3547134282688007,0.35941026026779,0.359161889701522,0.3583378305450621,0.3615094339622641,0.0,2.6089550776406663,52.58075822966663,173.86816635339727,248.7136634592312,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95681,45010,425.5285793417711,5973,61.109311148503885,4707,48.60944179095118,1828,18.812512411032493,77.33990302576841,79.73017140543956,63.32261558699434,65.08898236958288,77.11420990875419,79.50315011476475,63.239187155634575,65.00678563478766,0.2256931170142166,227.0212906748128,0.0834284313597635,82.19673479521816,179.44564,125.69202340406127,187545.74053364823,131365.70834759384,381.14406,248.3086468540364,397755.2074079493,258924.438538016,387.79465,188.63777648384576,400855.2690711845,193829.47131162343,2692.63364,1243.0364535047274,2783795.9051431315,1268792.1501726974,1108.40819,495.995167511365,1144693.7845549274,504671.8216359735,1786.73088,748.7919412599789,1840343.4537682508,759997.8256924468,0.37899,100000,0,815662,8524.806387893103,0,0.0,0,0.0,32515,339.21050156248367,0,0.0,35391,365.4748591674418,1494758,0,53630,0,0,7172,0,0,75,0.7838546837930206,0,0.0,1,0.0104513957839069,0,0.0,0.05973,0.1576031029842476,0.3060438640549138,0.01828,0.3332800255877179,0.6667199744122821,24.36438052069069,4.229746971713707,0.3199490121096239,0.2438920756320373,0.2205226258763543,0.2156362863819843,11.240552001365828,5.944107977949221,19.431401641660774,12161.872769830848,53.342380565179816,13.842290539684154,16.84601840626224,11.452525043824412,11.201546575409012,0.568090078606331,0.7996515679442509,0.6892430278884463,0.581888246628131,0.1123152709359606,0.7503912363067292,0.9390519187358916,0.855,0.7445887445887446,0.142156862745098,0.5001458151064451,0.7120567375886525,0.6292947558770343,0.5353159851301115,0.1048088779284833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0047539404997212,0.0069405688425282,0.0090297810100353,0.0113988794321914,0.0136810602821718,0.0158600725730827,0.0183004000979831,0.0206186620870134,0.0227435566746504,0.0250243477369419,0.027192100022583,0.0292448173741362,0.0313536452217621,0.0334183067920283,0.0355765552465338,0.0375128202471847,0.0397425917276454,0.0419522952576118,0.044031647746818,0.0590299902852785,0.0735529663013096,0.0862235370638467,0.0994582653973597,0.1114357746389729,0.1271686696005416,0.1390135480653956,0.150002128746594,0.1606519208381839,0.1704746485970687,0.1832024897963579,0.1955141036322127,0.2074755581655846,0.2180710904101201,0.2275198661647846,0.2377313353490381,0.2461287875407202,0.2546939510186633,0.2626528436287743,0.2700019466614756,0.2774886668516976,0.2841731243498486,0.2900868084301156,0.2949361177301737,0.3004247057395947,0.305266527933408,0.3089958603784439,0.3141415168696448,0.3183765939543012,0.3223180834784444,0.321212202805676,0.3201727838001431,0.3187460373370905,0.3177414690572585,0.3155617668485452,0.3134143355573238,0.3108798456355671,0.3120161396142238,0.3128761144922348,0.3132347702173139,0.3138310801967053,0.314194923617416,0.3157421540134233,0.3179521573887771,0.320214582982511,0.3199572660708236,0.3207998632712356,0.3245470558631102,0.3272389107243121,0.3300924828076831,0.3320489573889392,0.3344274445444438,0.3377691293704098,0.342874497000987,0.343866866118175,0.3462584229814399,0.3492940454266421,0.3569526930165881,0.3617795187465025,0.3593023255813953,0.0,2.271982921729504,55.69664272449763,172.75917598820826,259.7905497838503,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95787,45060,426.0181444246088,6058,61.97083111486945,4771,49.244678296637325,1886,19.313685573198867,77.331780499572,79.6710417171948,63.32970022966426,65.0619833489835,77.0987391529984,79.4409728188984,63.24301833038099,64.97905239455085,0.2330413465736001,230.0688982963948,0.0866818992832705,82.93095443265486,178.68488,125.13028023919271,186543.7481077808,130633.6630640825,381.96846,248.44387644491013,398136.72001419816,258739.88210699093,383.31253,186.14345461568703,396706.9122114692,191582.89391922424,2731.6136,1259.7056873301287,2821512.7313727336,1284914.82879656,1100.68742,489.60493743776567,1133080.5224090952,495294.1253709269,1844.3021,768.1470842324709,1890658.753275497,772328.6931584834,0.38086,100000,0,812204,8479.2612776264,0,0.0,0,0.0,32649,340.2549406495662,0,0.0,35014,362.0950650923403,1499288,0,53811,0,0,6996,0,0,77,0.7829872529675216,0,0.0,1,0.0104398300395669,0,0.0,0.06058,0.1590610723100352,0.3113238692637834,0.01886,0.3333333333333333,0.6666666666666666,24.30507198453676,4.305494481061191,0.3156570949486481,0.2483756025990358,0.2150492559211905,0.2209180465311255,11.34168250203418,6.011086549856278,20.03892679305535,12150.83410489882,54.107647772568434,14.371036263742992,16.91242524594187,11.476012191358732,11.348174071524832,0.5648710962062461,0.7940928270042195,0.6899070385126163,0.5877192982456141,0.1062618595825427,0.7439024390243902,0.921875,0.8345498783454988,0.7413127413127413,0.1443298969072164,0.4969644405897658,0.7164179104477612,0.6356164383561644,0.5358539765319427,0.0976744186046511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728032413269,0.0049065325818093,0.0071742417323713,0.0094883985533747,0.0115942028985507,0.0137985111864682,0.0160987744948104,0.0182839058751467,0.020343280072786,0.022736579173662,0.0249420786090664,0.0270864136684737,0.0291922017027927,0.0313353042367556,0.033490551433024,0.0354794690485051,0.0373768861915759,0.0396822104215068,0.0417948291628564,0.0435552223575839,0.0579660238751147,0.071512996182208,0.0841326247156619,0.096526070235168,0.1083820662768031,0.1234677487530645,0.1358120210702589,0.147206124727524,0.1587714898566809,0.1684897312006514,0.1815735368518498,0.1943732355518058,0.2063554207040553,0.2168434868205184,0.2265488284044508,0.2364907537699578,0.2458099935280858,0.2546959710255775,0.2628373780902699,0.2703804192281714,0.2772137554635647,0.2836700336700337,0.2907546321493646,0.2962834234212639,0.3016495797094407,0.3072607097935729,0.3118738729713484,0.3164118246687054,0.3205896079651524,0.3243971368954861,0.3228821548821549,0.3215238252357777,0.3201914953534215,0.3188462372587291,0.317189195617595,0.3158951871329786,0.3133225509783401,0.314137760973204,0.3144124244447869,0.314365854965787,0.3149194078021504,0.316494988038514,0.318013856812933,0.3176359888878932,0.317310243361231,0.3187353018029788,0.3196517767946339,0.3251564613013806,0.3288934067089628,0.3324470196047305,0.334124304097837,0.3345590194511058,0.3370544209057465,0.3377934092820552,0.3407763331449029,0.3408199643493761,0.344790382244143,0.3447230084917104,0.3470685840707964,0.3562130177514793,0.0,2.1499771121196987,57.448602737975776,175.5995947542772,259.49426565551937,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95694,45296,429.5567120195623,5917,60.76661023679645,4574,47.28614124187514,1831,18.76815683323928,77.34192318165195,79.71672593044876,63.32298576779221,65.07488994121256,77.1149804918033,79.49169434789145,63.23871925950317,64.99365953796017,0.2269426898486557,225.0315825573068,0.0842665082890334,81.23040325239117,179.99388,126.04160773291582,188092.9420862332,131712.96082817714,377.64198,246.37747400452383,394102.3470646018,256931.81703818825,383.97032,185.78284686102464,398422.3775785316,191912.50693065644,2628.62904,1222.8729878595186,2719342.0277133365,1250379.7394397953,1083.51664,482.00748117770365,1118310.1239367148,489851.6370382157,1789.20272,751.7849707734347,1836588.897945535,757755.4920856013,0.38192,100000,0,818154,8549.679185737872,0,0.0,0,0.0,32256,336.53102597864023,0,0.0,34979,362.6559658912784,1492714,0,53516,0,0,6999,0,0,74,0.7732982214140908,0,0.0,1,0.0104499759650552,0,0.0,0.05917,0.1549277335567658,0.3094473550785871,0.01831,0.343483164169486,0.6565168358305139,24.279051362746397,4.257108773965855,0.3187581985133362,0.2490161783996502,0.2083515522518583,0.2238740708351552,11.4036240391183,6.095144458163819,19.45738180759631,12200.767449482171,52.05681339381902,13.671418819011569,16.477201002807142,10.681353963386346,11.226839608613972,0.5743331875819851,0.7963125548726954,0.6947873799725651,0.6012591815320042,0.130859375,0.7361002349256069,0.9288990825688074,0.8513853904282116,0.7336244541484717,0.1348837209302325,0.5116772823779193,0.7140825035561877,0.6361922714420358,0.5593922651933702,0.1297898640296662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023085568482123,0.0044901227435359,0.0065938302038,0.0091006967720966,0.0108813928182807,0.0128382643399645,0.0151295801643455,0.0176447162856238,0.0197556112275678,0.022024492136304,0.0241264047247969,0.0263911851387847,0.0286448958601182,0.0305812288131227,0.0326702932584617,0.0347245201853077,0.0366069671324542,0.038923833841938,0.0410253743760399,0.0430147863328019,0.0583172298532407,0.0720381131877912,0.0857106870709742,0.0982826837275865,0.1107335809555968,0.1269009746960027,0.1388936079847101,0.1502029337509187,0.1619382562962329,0.1722005732504589,0.1848285529437136,0.1961895065205147,0.2076856085347267,0.217561178479184,0.2267158346634377,0.2363962726174779,0.2463465553235908,0.2553220232131398,0.2633161268364626,0.2704959340281754,0.2782759618166039,0.284029484029484,0.2901225069538971,0.295993478312993,0.3013109456060845,0.3071548282151131,0.311121962213124,0.3160533414770703,0.3206346325845464,0.3247791000224532,0.3234814045406105,0.3232122666225421,0.3225824656451931,0.3214110305376592,0.3196498776055189,0.3170537775806969,0.3149362448450757,0.3154093624844068,0.3164431536687452,0.3166613173567276,0.3183766683513974,0.3198434194658073,0.3201842546063652,0.3214437462262674,0.32271920142055,0.3239579275418777,0.3233131794828124,0.3278857894242509,0.3298875462736607,0.3330038353564509,0.3372403493686925,0.3391129671723846,0.3439309997481742,0.3482075328997126,0.3507838745800672,0.3507969995311767,0.3536585365853658,0.3569003395246655,0.3624215980365421,0.3729951510630361,0.0,1.944646157711434,56.0210372363779,171.8569750036483,242.79790449769837,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95730,45411,430.7740520213099,6010,61.401859396218526,4741,48.88749608273268,1777,18.11344406142275,77.32392886815877,79.6891014468755,63.31606620966248,65.06540363421645,77.10611562482553,79.4744843894616,63.23482105109274,64.98817571269156,0.2178132433332393,214.61705741390347,0.0812451585697431,77.22792152489433,177.95492,124.7082998398658,185892.53107698736,130270.86580995069,384.00005,249.9695523329684,400463.1150109684,260454.3887373906,391.35616,189.744390969916,404685.88739162224,194987.54341478457,2692.74888,1235.4998071868338,2778062.2584351823,1255862.5375397822,1101.97488,485.0988369150135,1135846.9027473102,491543.1613490042,1735.0156,723.8925862547953,1771565.778752742,722545.6435237558,0.38163,100000,0,808886,8449.660503499425,0,0.0,0,0.0,32723,341.1365298234618,0,0.0,35722,369.14237960931786,1498141,0,53861,0,0,7099,0,0,70,0.7103311396636373,0,0.0,1,0.010446046171524,0,0.0,0.0601,0.1574823782197416,0.2956738768718802,0.01777,0.3358681875792142,0.6641318124207858,24.6392542676016,4.271072443981359,0.3265133937987766,0.2488926386838219,0.2159881881459607,0.2086057793714406,11.442408644138258,6.141163417392404,18.855677249385828,12241.60998949546,53.66586561588907,14.122304426321902,17.53951453595449,11.32031118912561,10.683735464487064,0.5768825142375026,0.8033898305084746,0.6983204134366925,0.59375,0.0990899898887765,0.7525450274079875,0.9223744292237442,0.8502415458937198,0.7447698744769874,0.1451612903225806,0.5121247113163973,0.7331536388140162,0.6428571428571429,0.5477707006369427,0.0884184308841843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195275861719,0.0046842206653215,0.0070331053240505,0.0095104554044991,0.0118403385278919,0.0139103869653767,0.0161083131129824,0.0185878918411301,0.0207138402396507,0.0230162793078734,0.0252622081876621,0.0273311566972627,0.0291973804603727,0.0311788638821651,0.0333608502734495,0.0352365989291546,0.0371743746439484,0.0390667164860713,0.040981646129049,0.042767990164925,0.0577358766352408,0.0719173066058462,0.0855363191174774,0.0981713792994668,0.110314355313248,0.1262826073158863,0.1387553716377526,0.1508975915160033,0.1622447235751516,0.1723306174957118,0.185506965527636,0.1977116407838387,0.2082844096542726,0.2187769917890294,0.2287439374443234,0.238162207654146,0.2478547596996105,0.2568972501012647,0.2652053488319295,0.2725594726282602,0.2794615135085036,0.2871217534939844,0.2933437633338074,0.2989273887795748,0.3043330170547162,0.3088744989207524,0.3140684315371412,0.3181511256067574,0.322291655862677,0.3259332672613148,0.3246369777130607,0.3228249941467311,0.3209792971173915,0.3190337660833948,0.3184271968829469,0.3158772923491412,0.3142445952143727,0.3149016393442623,0.3151061216133215,0.3155024946543122,0.3160512293166308,0.3168015794669299,0.3176591118173454,0.3184181749202169,0.3199001512133068,0.3207836811156788,0.3211465257655815,0.3233758883089114,0.3270232230823364,0.3287013141700083,0.3331969634983408,0.3360512521840419,0.3388756431170787,0.3386387752008489,0.3424194003195789,0.3448684522398673,0.3468679245283019,0.3544577839008069,0.3577860169491525,0.3574130105900151,0.0,2.4879344437932804,55.51327112079297,178.65837802680792,255.8849522956635,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95793,45214,428.5073022037101,5940,60.69337007923334,4683,48.281189648512935,1857,18.915787166076854,77.4066300966336,79.7450697014988,63.35719594835807,65.08742946703336,77.1674457396594,79.51292547477834,63.26639955693244,65.00328232136859,0.2391843569742064,232.14422672046453,0.0907963914256271,84.14714566477244,179.64936,125.7519164764485,187539.1312517616,131274.64060677553,376.07523,244.6367745356481,391979.674924055,254768.7561049848,380.92272,184.623242775465,395033.5306337624,190603.2420835476,2698.762,1244.8716358426627,2781781.215746453,1264039.455745892,1104.77585,493.9795994736369,1136087.2819517085,498467.83471132047,1811.3295,767.7331121605803,1846690.8437986076,761277.1635291702,0.38075,100000,0,816588,8524.505965989163,0,0.0,0,0.0,32116,334.62779117472047,0,0.0,34747,360.057624252294,1499340,0,53881,0,0,7041,0,0,70,0.7307423298153309,0,0.0,2,0.020878352280438,0,0.0,0.0594,0.1560078791858174,0.3126262626262626,0.01857,0.3397075365579302,0.6602924634420697,24.33364274665974,4.290151101625329,0.3192398035447363,0.242152466367713,0.2186632500533845,0.2199444800341661,11.216622690669965,5.960279840561324,19.63265684002776,12207.769806307644,52.96306799896309,13.643356337575431,16.852621700695824,11.32435863599271,11.14273132469912,0.5628870382233611,0.7892416225749559,0.6909698996655519,0.5771484375,0.1135922330097087,0.7306791569086651,0.9036144578313252,0.8624078624078624,0.7552742616033755,0.1396396396396396,0.4997060552616108,0.7232267037552156,0.6268382352941176,0.5235069885641678,0.1064356435643564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023709648002918,0.0046439942406359,0.0068296445134512,0.009205165459293,0.0113505761739608,0.0135435123520905,0.0159764278868701,0.0180472617771653,0.0201561797293429,0.0221458103074215,0.0242585114887162,0.0260841012169844,0.0282128761716822,0.0303797728980717,0.0323382058841721,0.0344492864371424,0.0365208934686572,0.0386174436807348,0.0407285421883279,0.0426991795427095,0.0579672336429093,0.0723847972054301,0.0863052183575486,0.0994544823889256,0.1112984467533562,0.1271943267208488,0.1399917308935935,0.1512160883113016,0.1621503356564244,0.1725272135081854,0.1847590964367581,0.197194674856976,0.2084275280410399,0.2183728524776373,0.228444297956493,0.2388797910949809,0.247752671142736,0.2568498926278628,0.2646221546767077,0.2712411566728484,0.2771821472768698,0.2842481765475967,0.2902359372411671,0.2957009211456224,0.3008430310245135,0.3054956431714261,0.3103810906905704,0.3153381258349768,0.3199316097611522,0.3243303895555292,0.323319316405197,0.3223266761179855,0.3207374311124892,0.3196409730151618,0.319075968347759,0.3164833820223,0.3156565257889834,0.3155562097275374,0.3166010052981932,0.3181423226286951,0.3182428651371012,0.3181094312171912,0.3205998750260362,0.3219283219505684,0.3215421018666794,0.322309983167163,0.3242799751032649,0.3270232340558241,0.3298473122777661,0.3326508111513624,0.3360589085652331,0.3373677840340999,0.3388646288209607,0.3393515384036711,0.3442486085343228,0.3448477068502742,0.3479389312977099,0.3497213375796178,0.3541609822646657,0.3549124143183549,0.0,2.372221494099925,55.91373140530031,169.43523114326734,257.60332442524845,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95689,45371,430.16438671111626,5807,59.390316546311496,4597,47.476721462237045,1853,19.04085109051197,77.29491858535671,79.69749164734353,63.29396199958445,65.07407126814259,77.06136071984531,79.46457503070805,63.20769379298629,64.99036679963629,0.2335578655114005,232.9166166354781,0.086268206598163,83.70446850629776,179.38052,125.6505592964588,187462.007127256,131311.39346890323,380.06529,247.2864170303335,396614.5011443322,257853.6477864054,384.48888,186.38804382051947,398065.8800907105,191908.1591100197,2658.4666,1228.82155799857,2748552.623603549,1254498.9267298966,1110.91704,495.1963327574088,1146105.6338764122,502645.3539669226,1813.50834,756.7872500484916,1865077.1771049963,764813.682321757,0.38169,100000,0,815366,8521.000323966182,0,0.0,0,0.0,32526,339.3075484120432,0,0.0,35089,362.98843127214207,1494346,0,53669,0,0,7139,0,0,61,0.6270313202144447,0,0.0,0,0.0,0,0.0,0.05807,0.1521391705310592,0.3190976407783709,0.01853,0.329107672044781,0.6708923279552189,23.976636486349125,4.452415142297981,0.3112899717206874,0.2345007613661083,0.2281922993256471,0.2260169675875571,11.56986925488068,6.006742678788374,19.628063467451025,12179.130440428507,52.28769054715223,12.930012104267432,16.265910241506326,11.801320278906948,11.29044792247154,0.5642810528605612,0.7866419294990723,0.7064989517819706,0.5815061963775023,0.1203079884504331,0.7414596273291926,0.9095238095238096,0.8835443037974684,0.7630522088353414,0.1517857142857142,0.4953158053792686,0.7082066869300911,0.638996138996139,0.525,0.1116564417177914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024531916834774,0.0046576760327559,0.0071802163205199,0.0096385542168674,0.0120015879963761,0.0140959913569047,0.0162353565451651,0.0183690566191945,0.0203175512542456,0.0223522060254663,0.0245984038733766,0.0264220334281869,0.028370618864352,0.0303620567046965,0.0323602881975267,0.0343037385593877,0.0365810690377002,0.0385605714523028,0.0408006158583525,0.0429217652331617,0.0574392078215091,0.0714098765690595,0.0846975611803719,0.0984122307684213,0.1108708037051885,0.1263199102778424,0.138939011187297,0.1505201179714866,0.1611710652847526,0.1717452415184223,0.183925628292273,0.1954216971742611,0.2072620535956949,0.2176212801766062,0.2268053707511793,0.2364449660639746,0.2453472284209586,0.2543862610711593,0.2623043902882191,0.2703759329534641,0.2781850397804259,0.2844382528886339,0.2901143926296095,0.2959559485106229,0.3016640937435423,0.306736275671406,0.3109911174031246,0.3158075645122277,0.3202350443943982,0.3239525775099236,0.3236105318390356,0.3222060359518443,0.3208142121118275,0.31860656566386,0.3180339557060737,0.3154418975239029,0.3132302814110186,0.3144326509151852,0.315076218470162,0.315700085812357,0.3162232694365695,0.3170345128184808,0.3183544967992444,0.3199480414772345,0.3209834798570186,0.3216631342072899,0.3229369348746709,0.3265589497601616,0.3283870740883997,0.331966886890074,0.3371821305841924,0.3410035155001598,0.344412209889001,0.3461714809720311,0.3500236183278224,0.3523433763749402,0.3516030534351145,0.3527975584944048,0.3601532567049808,0.3573050719152157,0.0,2.237944069653142,56.28720203454255,166.13916338087984,251.56776470536116,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95724,45478,431.6994693075927,5943,61.11320045129748,4685,48.41001211817308,1880,19.29505662111905,77.3593554540744,79.72988230041042,63.33143217950936,65.08371090097572,77.13206891884286,79.50277289648048,63.24759358760596,65.00164650370796,0.227286535231542,227.10940392994416,0.083838591903401,82.06439726775727,178.21144,124.86843527634056,186171.9318039363,130446.09698334865,380.52909,247.58822150893175,397006.8321424095,258127.7684895447,391.68756,189.45852932097867,405244.2647611884,194962.11390752703,2685.7328,1233.631121860377,2777837.031465463,1261063.6396143187,1096.36351,486.7679179874707,1132063.8502360955,495441.17811248713,1832.0924,764.0355466407912,1882925.0971543184,774472.533834402,0.38125,100000,0,810052,8462.36053654256,0,0.0,0,0.0,32350,337.3970999958213,0,0.0,35718,369.30132464167815,1501796,0,53829,0,0,7146,0,0,68,0.6894822615018177,0,0.0,0,0.0,0,0.0,0.05943,0.1558819672131147,0.3163385495540972,0.0188,0.3334940533590485,0.6665059466409514,24.3667804320722,4.247626136581191,0.3233724653148346,0.247812166488794,0.2098185699039487,0.2189967982924226,11.219365549270156,5.957436757074818,20.05288385810952,12172.27193035538,53.26788659191782,13.963523844498198,17.21474958087621,10.847477931241135,11.24213523530229,0.5592315901814301,0.8001722652885443,0.6838283828382838,0.5595116988809766,0.1023391812865497,0.7274155538098979,0.9120370370370372,0.8571428571428571,0.706140350877193,0.1583710407239819,0.4964830011723329,0.7338820301783264,0.6233303650934996,0.5152317880794702,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599238342178,0.0046732287854673,0.0065958375191532,0.0089476143080579,0.0109819712638418,0.0130514013458621,0.0150160558642132,0.0172202600902353,0.0192901392324834,0.0213351897541948,0.0234015279700558,0.0256165326266703,0.0279538252602987,0.0299302486116691,0.0322573987699673,0.034587911803926,0.0365769067511465,0.0385217761090309,0.0406682398927156,0.0426019478152179,0.0568340816539626,0.0711968352310783,0.0850981255965679,0.0980190107671601,0.110070751484094,0.1259559344622967,0.1379474990981049,0.1497599454953852,0.160652654749057,0.171042607753302,0.183336386066607,0.1952198997651083,0.2071707513407086,0.2172861660338545,0.226786638619368,0.2374790717271507,0.2473033030350403,0.2559303541903337,0.2642076719726795,0.271807736806534,0.2785811795737986,0.2855907039816698,0.2921256678171245,0.2977335822324334,0.3022891873203042,0.3074972613025122,0.3124953095684803,0.3172811733455345,0.3212585386048437,0.3248369028006589,0.3231681092414386,0.3217544245355612,0.320870261387418,0.3194074543282035,0.3177770863890247,0.3153443353739523,0.3135950041789538,0.3130877038054588,0.3141027824132411,0.3146567057986482,0.3146138880574678,0.3158154404799494,0.3169923676926948,0.3188493531535167,0.3198594870314229,0.3207596321671399,0.3209648023692903,0.3237774561017056,0.3276025402617452,0.3316580925999208,0.3349870283555596,0.34,0.3413677484658695,0.3444798301486199,0.3482884059322824,0.3508813160987074,0.351913730255164,0.3519519519519519,0.3458503401360544,0.350566037735849,0.0,2.065969208557042,56.047953850044365,174.29521274188372,255.97815890459665,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95889,45092,426.8059944310609,6001,61.3209022932766,4727,48.7230026384674,1835,18.761276058776293,77.4394230829848,79.7192489934742,63.39129033748679,65.07721940396664,77.21549469208094,79.498767085613,63.307865218198735,64.99808953124892,0.2239283909038647,220.48190786119903,0.0834251192880515,79.12987271771499,180.12918,126.08193567609676,187851.7661045584,131487.3819479781,381.66919,248.57014026484595,397353.1583393299,258547.8211941369,384.86043,186.5350286852072,398209.0646476656,192047.05162740732,2708.1902,1234.9980997224577,2794160.7066503977,1257809.1957601574,1114.20134,484.5175239607283,1148778.8693176485,492098.9414434688,1797.24274,744.427139749569,1840514.0527067755,745797.5139901424,0.38042,100000,0,818769,8538.71664111629,0,0.0,0,0.0,32607,339.4758522875408,0,0.0,35128,363.09691414030806,1495647,0,53720,0,0,7088,0,0,72,0.7300107415866263,0,0.0,2,0.0208574497596178,0,0.0,0.06001,0.157746701014668,0.3057823696050658,0.01835,0.3290291726446676,0.6709708273553324,24.29022785813249,4.4043430807219055,0.323460968902052,0.2392638036809816,0.2181087370425216,0.2191664903744447,11.204655370786297,5.716393504604744,19.320402869653883,12157.419356386425,53.24733793670809,13.632887151694176,17.19418308453086,11.255016496162732,11.165251204320322,0.558282208588957,0.7771883289124668,0.6873773708306082,0.5751697381183317,0.1119691119691119,0.7373086220789685,0.9041095890410958,0.8370927318295739,0.7181818181818181,0.1467391304347826,0.4945496270797476,0.696969696969697,0.6345132743362832,0.5363748458692972,0.1044600938967136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689005871633,0.0046313186590457,0.0067762910964809,0.0091786900059905,0.011271814365719,0.0133900409027085,0.0153806977336389,0.0175438596491228,0.0196559192513587,0.0218703328627836,0.0239556543746221,0.0261537830128665,0.0282076576854306,0.0302546787177533,0.0324965204391978,0.0345621643948781,0.0365220270242307,0.0385675502041323,0.0405527466024356,0.042550092590666,0.0574377150005212,0.0710538964702932,0.0845480438971265,0.0967735161639175,0.1094185887381175,0.1252362300326235,0.1376216754403618,0.1489655612109362,0.1602933808087161,0.1708619619426785,0.1828737300435413,0.1947010708072655,0.2056967181949529,0.2160097903167648,0.2262976767710085,0.236683967640907,0.2458599861813805,0.2552233105679367,0.2634900134815167,0.2703555504744483,0.2772427014042867,0.2835658824216241,0.2907000106366634,0.2961251630974754,0.3014721052439957,0.3061345086114565,0.3101253953767487,0.315314857621866,0.3195492608291119,0.3237566297724491,0.3229239451760279,0.3209574920735139,0.3200219125744465,0.3181936191080597,0.3175666661725687,0.3152701835843235,0.3137877137308767,0.3149371892174823,0.3162096376108529,0.3172721455993175,0.3182793692264626,0.3203354132629963,0.3213890685977836,0.3231012025161706,0.3225267379679144,0.3242983866784251,0.3254643634615928,0.3284409959178586,0.3315043756077233,0.3345777498329862,0.3380542149654955,0.3409654444737536,0.3424820256330103,0.3449139042706516,0.3474983510788655,0.3485999050783104,0.3551676193418817,0.3586489252814739,0.3572222222222222,0.3570072161033042,0.0,2.277049506095357,54.123708132849856,171.43994970544176,267.2874023904617,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95729,45227,428.17745928610975,5833,59.67888518630718,4592,47.3106373199344,1750,17.873371705543775,77.34647984393533,79.69869249273545,63.33814763576003,65.0752383625888,77.12336697018186,79.47932509489155,63.25487563747951,64.99607737212004,0.2231128737534646,219.36739784389655,0.083271998280523,79.16099046876468,179.81106,125.97542611119312,187832.9659768722,131595.43368382944,380.05287,247.78585875717147,396354.3962644549,258186.50811893103,384.53403,186.82572140208424,397036.9271589592,191639.80152629243,2612.49148,1209.3367904768909,2693599.8913599853,1227867.7835106296,1064.5582,474.9469594112372,1095048.1045451222,479220.1161058353,1704.94132,721.6064282904895,1743679.4074940716,721978.8143037814,0.38107,100000,0,817323,8537.862089857828,0,0.0,0,0.0,32462,338.41364685727416,0,0.0,35104,362.1473116819355,1492970,0,53559,0,0,7001,0,0,73,0.7625693363557543,0,0.0,0,0.0,0,0.0,0.05833,0.1530689899493531,0.3000171438367907,0.0175,0.3285901210336931,0.6714098789663069,24.39140322977893,4.210547853374288,0.3344947735191638,0.2443379790940766,0.2092770034843205,0.211890243902439,11.366388141037548,6.080949815820935,18.766590368825337,12190.0750470465,52.23195817235248,13.592584770161247,17.211978624861498,10.708328807546229,10.719065969783491,0.5755662020905923,0.8172905525846702,0.6920572916666666,0.5806451612903226,0.1079136690647482,0.7442231075697211,0.9393939393939394,0.8676844783715013,0.6978723404255319,0.1313131313131313,0.5121366496853461,0.7417027417027418,0.63167104111986,0.5426997245179064,0.1019354838709677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0044501211365548,0.0068397925736495,0.0092135470632453,0.0114812780930298,0.0135812021501873,0.015973496432212,0.0181773645372988,0.0207296255788042,0.0228619987099812,0.0249080043870888,0.0268819411656026,0.0290238009561507,0.0308067855266817,0.0329749695631538,0.0350494578755335,0.0372525470057152,0.0394036540197329,0.0412681912681912,0.0434433913134048,0.058130794287146,0.0721358146155617,0.0857787336725594,0.0983711710953848,0.1105101685801942,0.1260334510392658,0.1384793262193181,0.1498595266473693,0.1610943871560024,0.1713945837039577,0.1843566999655528,0.1958345949219256,0.2069984785916105,0.2174996175782871,0.2268151144132064,0.2369088071546371,0.2465130280630163,0.2552851745232098,0.2634552550372118,0.2712229309574797,0.2783496807624687,0.285183106496422,0.291292357585011,0.2961790694049803,0.3016360787552684,0.3071230683986948,0.3114766401901307,0.3163032825486527,0.3202389901241608,0.3234098170200407,0.3226519039344836,0.3207970386272,0.3197160083394376,0.3182113797638489,0.3175954822410462,0.316110447120836,0.314118894286302,0.3139885834262844,0.3144902282356157,0.3156073282551688,0.3162357962522698,0.3176010584727186,0.317501258178158,0.3192950280691552,0.3193265183403487,0.3209234228345839,0.321564258576856,0.3259571257936757,0.3291276767251954,0.3318708249337918,0.3360596146855689,0.3394665676865157,0.3422730682670667,0.3435718087128411,0.3480590281041451,0.3488206708545691,0.3536306896026792,0.3606060606060606,0.3681868743047831,0.3698201720093823,0.0,2.564096907293734,54.35202799134195,175.25892756626527,244.99063913281356,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95740,45136,427.43889701274287,5937,60.81052851472739,4623,47.70210988092752,1839,18.821809066221014,77.41222784566315,79.76766483607081,63.350809200748486,65.08951999248892,77.18423091975335,79.54142655542141,63.26583353056695,65.00752958433499,0.2279969259098067,226.23828064939744,0.0849756701815351,81.99040815392777,178.58192,125.0269935892996,186528.0133695425,130590.1332664504,382.74338,249.9110096600204,399183.72675997496,260446.41010585325,385.45178,187.3934890100082,398920.7959055776,192875.6072511901,2661.21748,1231.747173347101,2748261.792354293,1255668.7204270782,1142.00883,509.037027766324,1180030.5932734488,518894.3887260534,1802.394,756.7929676070341,1846794.652182996,761746.6877510305,0.38082,100000,0,811736,8478.546062251933,0,0.0,0,0.0,32747,341.42469187382494,0,0.0,35171,363.5993315228745,1497808,0,53683,0,0,7094,0,0,73,0.7624817213285984,0,0.0,1,0.0104449550866931,0,0.0,0.05937,0.1559004253978257,0.3097524002021223,0.01839,0.3266025641025641,0.673397435897436,24.3336776873802,4.324976762307367,0.3194895089768548,0.2370754921046939,0.2143629677698464,0.2290720311486048,11.385318595223731,6.058686074192792,19.426446086418583,12207.450343971946,52.36266080788403,13.278798690141391,16.67938031703367,10.912179790401384,11.492302010307585,0.5710577547047372,0.7901459854014599,0.7129316181448883,0.5893037336024218,0.1293673276676109,0.7444698703279939,0.9133333333333332,0.8781094527363185,0.7447698744769874,0.1545454545454545,0.5024154589371981,0.7043343653250774,0.6511627906976745,0.5398936170212766,0.1227651966626936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0047737292859676,0.0070912632390536,0.0092818263059549,0.0116003619394259,0.0138748918409935,0.0160221782824061,0.0183055620746303,0.0205209962085211,0.022661207778915,0.0248011806181848,0.0267820481235115,0.0288880664528332,0.0308020266930301,0.0331637654391051,0.0351956173445656,0.0372042454051255,0.0391965638163218,0.0412629434025034,0.0431671163241283,0.05822414783108,0.072365047974804,0.0855764187559005,0.098913352198016,0.1115296550705369,0.1267235996909954,0.1388667791609623,0.1508959848379987,0.1621017985188668,0.1727661035866835,0.1853916230930947,0.1976525109903198,0.2086912032047723,0.2185508769624909,0.2282135736238557,0.2388415635121345,0.2485330770176478,0.2563446916361588,0.2644095901145953,0.2718683712664106,0.2790813490225146,0.2852059925093633,0.2916045350185803,0.2973911793594135,0.3020130153950755,0.3076942019527931,0.3116892854465022,0.3158683204895451,0.3195764462809917,0.3236535805878872,0.323250885288121,0.3209341849181766,0.320299127311502,0.317910340361229,0.3166506682418962,0.3145547762851622,0.3122070896109206,0.312676239996088,0.3128457491939589,0.3127005229105734,0.314542817833637,0.3158152760074517,0.3169680053324445,0.3174793498534505,0.319438140512649,0.3202380952380952,0.321564966477128,0.3257736461192912,0.3296282100421617,0.3321007081038552,0.3335742028723693,0.336251450268959,0.3377872127872128,0.3423131913612762,0.3460149958344904,0.3471751081997895,0.3466446479507581,0.3451362641734633,0.3493615865254007,0.3513102924420813,0.0,2.2387408726456224,57.40289432211316,166.1200094245199,247.683335064512,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95734,45471,432.04086322518646,5780,59.15348778908225,4540,46.89034198926191,1782,18.26937138320764,77.32373385663094,79.69391266782804,63.321321634088775,65.0752622255037,77.08859421840617,79.45995607019306,63.232737693802704,64.98971601186194,0.2351396382247657,233.956597634986,0.088583940286071,85.54621364176285,179.53914,125.73189282251482,187539.3486117785,131334.39825194274,380.29054,247.96933777839527,396676.3636743477,258458.8001947012,380.75235,184.3797935112208,394559.5086385192,190147.21781610072,2597.2636,1212.4473871985167,2682661.87561368,1236136.907680152,1059.69757,472.1422938653819,1091474.0217686505,477800.2061025814,1749.20884,748.7481019753976,1793852.236405039,752216.7389099646,0.38388,100000,0,816087,8524.51584598993,0,0.0,0,0.0,32490,338.80335095159506,0,0.0,34828,360.66601207512485,1494841,0,53708,0,0,7106,0,0,54,0.5536173146426557,0,0.0,1,0.0104456097102387,0,0.0,0.0578,0.1505678857976451,0.3083044982698962,0.01782,0.3347046239921014,0.6652953760078987,23.979270298115704,4.289590393773925,0.3204845814977973,0.2477973568281938,0.2068281938325991,0.2248898678414096,10.920711415588489,5.54412926590588,19.119147778137584,12161.279836219754,52.00264021811447,13.78662951830851,16.619190538435678,10.371940816488667,11.22487934488161,0.5515418502202644,0.7582222222222222,0.7010309278350515,0.5612353567625133,0.1018609206660137,0.7118003025718608,0.8844444444444445,0.863961813842482,0.705607476635514,0.1255230125523012,0.485705407085146,0.674074074074074,0.6351351351351351,0.5186206896551724,0.0946291560102301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871327254305,0.0043201801089172,0.0064859926918392,0.0086580086580086,0.0109881165554289,0.0129572471961617,0.0152776077999428,0.0173521391439339,0.0197253382143916,0.021649854063188,0.0237716770415645,0.0257574201499435,0.0275703145896343,0.0296672609049596,0.0316983546995313,0.0340425092006781,0.0361244886334213,0.0382121328450037,0.040134335651975,0.0420443888715223,0.0565086193394798,0.0705045007326774,0.0836349521081841,0.0959750042080457,0.1087323349504324,0.1246840864149227,0.1369399382513023,0.1488879429605193,0.1600692145008651,0.1699177488713257,0.1835460076455069,0.1958864388808344,0.2073278159019477,0.2174169773977321,0.2270336875921403,0.2368744532175723,0.2469252812684678,0.2557920046740523,0.2642316066406604,0.2713249261895498,0.2784223542191508,0.2853270077939681,0.2918331638805476,0.2975064076460584,0.3024647887323943,0.307480931080798,0.3110540811216825,0.3147266291476737,0.3196163566845959,0.3237999709643785,0.323016418171778,0.3225708697209289,0.3214487114419444,0.3203623576400445,0.319246102582411,0.3181483865036315,0.3162590565381086,0.316358328413042,0.3170898054527784,0.3174509803921568,0.3167041198501872,0.3180766721366575,0.3181436371272574,0.3195867046193155,0.3217523387018999,0.3219084967320261,0.3227569237811856,0.3256321112515802,0.3286626901492959,0.3294268229270829,0.3329511579912864,0.3358152989072209,0.3379673712943566,0.3393432560994323,0.3446263881046489,0.3474525712922086,0.3543223052294557,0.3549626035981403,0.353554762558331,0.355324074074074,0.0,2.040787917101192,58.40502244958421,164.9946477599196,240.59627719103975,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95785,45137,428.0315289450332,5740,58.756590280315294,4533,46.81317534060657,1807,18.520645194967894,77.38153749659537,79.72325117715918,63.350937847410606,65.08288735861501,77.15355168081862,79.49587035021607,63.26649939231656,65.00077305010417,0.2279858157767478,227.38082694311856,0.0844384550940517,82.1143085108389,177.914,124.65035165337147,185742.8407370674,130135.34964281616,378.50784,247.3237258777032,394643.8064415096,257687.52400658056,384.35582,186.63042803369103,397975.7268883437,192222.22962460967,2603.789,1212.0855933113062,2690534.9689408573,1237820.5096545126,1075.97113,483.4540419440949,1111395.9283812705,492918.91853033256,1765.12708,745.6080713616201,1811354.408310278,751727.3859381796,0.37936,100000,0,808700,8442.856397139427,0,0.0,0,0.0,32386,337.5580727671347,0,0.0,35103,363.1988307146213,1503134,0,53951,0,0,6935,0,0,63,0.6577230255259174,0,0.0,1,0.0104400480242209,0,0.0,0.0574,0.151307465204555,0.3148083623693379,0.01807,0.3350489789141623,0.6649510210858376,24.29926652658896,4.241101709516605,0.3214206926979925,0.2486212221486874,0.214868740348555,0.215089344804765,10.942626800049096,5.591588487210199,19.32360776542296,12083.19853521638,51.7046198596796,13.547314182166623,16.523025018623816,10.898629882663917,10.735650776225231,0.5660710346348996,0.7737355811889973,0.700754975978037,0.5728952772073922,0.1179487179487179,0.7317854283426741,0.9128440366972476,0.8494897959183674,0.6681614349775785,0.1717171717171717,0.5030450669914738,0.6859623733719248,0.6460093896713615,0.5446071904127829,0.1042471042471042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0047337158148681,0.0069700904995738,0.0089881478321806,0.0111942574780893,0.0134674308050938,0.0154727443225832,0.0178201451331407,0.0201209916409491,0.0222133546155892,0.0243784969155411,0.0268214571657325,0.0290561381863047,0.0310324945430583,0.032995709216932,0.0347670658249558,0.0367553472200664,0.0386533019601339,0.0407001506258764,0.0422913543228385,0.0571029041919292,0.071379267068273,0.0848944846890102,0.0975863482089379,0.110483556548403,0.1258282344735757,0.1380976602238046,0.1493722559452305,0.1599974390165823,0.1707110548993547,0.1839553082247075,0.1956632239225653,0.2062688156850811,0.2160528903944924,0.2252394936263349,0.2345491780594454,0.2434017595307918,0.2520486965905641,0.2604642723489187,0.2682617053412055,0.2749329262651494,0.2820069204152249,0.2890064000189279,0.2947552489430252,0.3000958889145132,0.3049885504641371,0.3096222808091662,0.3135956270259963,0.3183758472603094,0.3226975591754968,0.3213051255497424,0.3195343531384433,0.3174272398304726,0.3155370659270815,0.314744113496249,0.3118794461867972,0.3102767422758577,0.3105761835408859,0.3115389848959042,0.3111083445969979,0.3111355954359558,0.3120922440130088,0.313532042974792,0.3148462638541294,0.3162438252361997,0.3167304239206808,0.3169712645311656,0.3203330411919369,0.3239638255525682,0.3269185173476646,0.3289324440814845,0.3323453130789181,0.3368381288169741,0.3363310723268043,0.3385455915599096,0.3403197158081705,0.3468516542155816,0.3491422805247225,0.3497373513961846,0.3503233168505135,0.0,1.9888612899382112,54.8127121668244,173.7277767870046,240.30574586693592,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95853,45421,430.39863123741566,5860,59.95639155790638,4636,47.73976818670256,1825,18.674428552053666,77.37299817448195,79.67545209247557,63.35320242165369,65.05739068310321,77.14980911758312,79.45503224158163,63.26984671149576,64.97795356721912,0.2231890568988319,220.4198508939328,0.0833557101579316,79.4371158840903,178.94492,125.35825572057048,186686.8225303329,130781.7759700484,381.85589,248.88248253828112,397751.2232272334,259024.8323352228,384.9934,186.345501026384,397753.2367270717,191361.44888456265,2637.25128,1218.490833603666,2716908.015398579,1236766.0830685182,1091.9353,488.548753783201,1122956.339394698,493468.11408432905,1785.51914,751.0130635890079,1828144.471221558,752066.3732414164,0.38214,100000,0,813386,8485.764660469678,0,0.0,0,0.0,32653,339.99979134716705,0,0.0,35137,362.6907869341596,1497199,0,53766,0,0,7264,0,0,65,0.6676890655482876,0,0.0,0,0.0,0,0.0,0.0586,0.1533469409117077,0.3114334470989761,0.01825,0.3376116978066612,0.6623883021933388,24.37254509077863,4.225706227486201,0.3192407247627264,0.250862812769629,0.2107420189818809,0.2191544434857636,11.210629319724164,5.844137261477652,19.34870142173921,12158.64543883468,52.77854315043828,13.961996336445296,16.713340857829877,10.881507079332073,11.22169887683104,0.566220880069025,0.7850386930352536,0.6939189189189189,0.5701125895598772,0.1259842519685039,0.7319587628865979,0.903529411764706,0.8579088471849866,0.7563025210084033,0.1733333333333333,0.5042962962962962,0.7168021680216802,0.6386630532971996,0.510148849797023,0.1125158027812895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.0046722815125624,0.0069586034103242,0.0091992770546067,0.0112742207673383,0.0134059446254071,0.0155331097815783,0.0177264795028013,0.0198632866382613,0.0220496449546728,0.0240971261718149,0.0261011419249592,0.028385266792732,0.0307562454323681,0.0327618733441233,0.0346779023896565,0.0368002317473126,0.0385994362927961,0.0406342810857961,0.0426567897124308,0.0576004671435423,0.071665186268875,0.0852320940318677,0.0981024289329706,0.1115054499499763,0.1264260965097608,0.1381521082581834,0.1490420396793331,0.1595188284518828,0.1696010458749022,0.1831076863471017,0.1957691975095122,0.2075475799702183,0.2168488956921058,0.2253854364978926,0.2358446679367329,0.245283439881291,0.2543541854185419,0.2627960794990471,0.2703312304645012,0.2772310432158014,0.2844811453167399,0.2911020910500219,0.2970531863919501,0.3018004346295329,0.3058152568887575,0.3108312783987783,0.3149038461538461,0.3197085204695771,0.3240094470319695,0.3228086710650329,0.3216649466804265,0.3199216437892838,0.3184997832056656,0.3181170181170181,0.3163209105929869,0.3138992168341112,0.313549593282603,0.3139435706731261,0.3146317967746539,0.3152608939592294,0.3169625246548323,0.3177065908330545,0.3179326023000802,0.3198707206128801,0.3210232437345799,0.3214092603659751,0.3245974702614481,0.3281255473429782,0.3301875616979269,0.3361177586129046,0.3399514204245432,0.3439126889544,0.3461012311901504,0.3502633559066967,0.3597933302019727,0.3677143729020445,0.3649664702296281,0.3613189249099474,0.3605623100303951,0.0,2.4264140968604515,55.160431880980006,177.32787407431795,246.9411794407917,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95779,45215,428.06878334499214,5910,60.34725774961109,4647,47.79753390617985,1835,18.772382254982823,77.39816222968327,79.72614082912352,63.35848721039546,65.0791625329,77.16660425084166,79.4962767134874,63.27186047545786,64.99517663020195,0.2315579788416073,229.86411563611853,0.0866267349375959,83.98590269804629,179.50086,125.69519876219844,187411.0399983295,131234.21112800782,382.51332,248.97125456412692,398635.0034976352,259209.7902480761,385.74077,187.2587650159093,397039.465853684,191359.8944942717,2659.99704,1229.0320308032194,2738585.535451404,1244748.289770418,1094.32533,484.497046124438,1126051.3160504913,489395.2492025048,1792.83824,757.5002424720302,1835944.2048883368,761207.6422471568,0.38009,100000,0,815913,8518.683636287704,0,0.0,0,0.0,32613,339.7300034454317,0,0.0,35160,361.5093078858623,1495666,0,53657,0,0,7053,0,0,76,0.7830526524603515,0,0.0,0,0.0,0,0.0,0.0591,0.1554894893314741,0.3104906937394247,0.01835,0.3359588490596367,0.6640411509403633,24.417734156027816,4.284222459472914,0.3184850441144825,0.2397245534753604,0.2218635678932644,0.2199268345168926,11.51766132922949,6.168755770130682,19.553146063913807,12159.36265692204,52.62248659851863,13.389490488652626,16.754507763762852,11.348416086210293,11.13007225989286,0.5657413384979557,0.7764811490125674,0.6891891891891891,0.597478176527643,0.1252446183953033,0.7360681114551083,0.9189814814814816,0.8329177057356608,0.7824267782426778,0.15,0.5001490312965723,0.6862170087976539,0.6357738646895273,0.5416666666666666,0.1184538653366583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786656134167,0.004763256040214,0.0069695248143489,0.0092208952798765,0.0114878259543536,0.0140655851161275,0.0161308401691547,0.0182018528343468,0.0205457759069872,0.0226723961530591,0.0247723058324539,0.0268237370575981,0.0290940856071116,0.0313812268423219,0.0334237141354887,0.0353520748559271,0.0370876136681046,0.0391132126340239,0.0411011576912684,0.0429661872975871,0.0583478542138377,0.0723496376243215,0.0855165906589086,0.0986821363263762,0.1110115533816832,0.1268537603720733,0.1384331484447084,0.1496366286802651,0.1606984567736423,0.1708342268925584,0.1838185401790041,0.196149478124493,0.2071494540120606,0.2174478313121381,0.2267301266268026,0.2368368634220835,0.2460493593103525,0.2541499842548023,0.2619552762051713,0.2697945534916744,0.2770589799623065,0.2834749675624496,0.2894004852932473,0.2947788469604189,0.2995872283598397,0.3044618776093302,0.3091861744697879,0.3138730675345809,0.3182200701718044,0.3230844314299658,0.3219843834141088,0.3208377452935271,0.3196259576385759,0.3184757505773672,0.3173193797989979,0.315362522533533,0.313308585419793,0.3148518093990503,0.3153961646079301,0.3165912411360154,0.3164050822122571,0.3170794327921949,0.3171369407433747,0.3176208509690354,0.318642447418738,0.3190986734508449,0.3212871847076122,0.3244171166390961,0.3279668973191001,0.3309884063666732,0.3338912512440061,0.337517726771364,0.3406661695252299,0.3439836845683208,0.3438960553374462,0.3482905982905983,0.3514663425011396,0.3523232323232323,0.3495038588754134,0.3545937737281701,0.0,2.755974834714429,55.99162749500957,166.9955832618648,253.9873806864616,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95877,45260,427.1201643772751,5984,61.09911657644691,4670,48.12415907881974,1817,18.60717377473221,77.3584022892406,79.64235825463943,63.35300198276878,65.04239938871764,77.13906623044078,79.42427089189746,63.271557342075006,64.96386000746742,0.2193360587998256,218.0873627419686,0.0814446406937747,78.53938125022353,178.67124,125.13590568021296,186354.6418849151,130517.1268189586,379.22957,247.07980661724645,394963.6096248318,257131.0080804013,384.46278,185.5668011398625,397141.2851883142,190563.88865642872,2700.91436,1233.7446679024663,2787183.620680664,1257112.2350469136,1106.82051,491.00588101621895,1141530.5756333636,499307.36833124177,1787.72504,744.9886795067489,1833927.2818298445,750618.4727492103,0.38106,100000,0,812142,8470.665540223412,0,0.0,0,0.0,32408,337.42190514930587,0,0.0,35098,362.2453768891392,1499602,0,53835,0,0,7058,0,0,66,0.6883819894239495,0,0.0,0,0.0,0,0.0,0.05984,0.1570356374324253,0.3036430481283422,0.01817,0.3367916999201915,0.6632083000798085,24.45445170883684,4.426429070142985,0.3149892933618843,0.2387580299785867,0.2207708779443254,0.2254817987152034,11.158701765665404,5.722000717788752,19.267725715378116,12272.469394745118,52.82484174693328,13.346630627058202,16.5790964165571,11.445640424373126,11.453474278944856,0.5665952890792291,0.7937219730941704,0.7056424201223658,0.5848690591658584,0.1139601139601139,0.746160064672595,0.9253012048192772,0.8746594005449592,0.7689075630252101,0.1612903225806451,0.5018933877075444,0.7157142857142857,0.6494565217391305,0.5296343001261034,0.1016746411483253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025007846591541,0.0048332674711979,0.0072217545212037,0.0097675882585872,0.0121671071355966,0.0143701849194475,0.0166571579933982,0.0188280891427405,0.0210836915348723,0.0231243418967685,0.025366732523263,0.027229296098091,0.0295383351306937,0.0316939441009762,0.0339664251780248,0.0360959392068392,0.0379852900102411,0.0399647613618697,0.0422058365354657,0.0440296721703756,0.0588707491503513,0.0728099044036984,0.0862052715905877,0.0993437286711818,0.1116764101753831,0.1269517631895877,0.1396398783344108,0.1514977509809551,0.1630287440361195,0.173092795660889,0.1860450091525788,0.1986544368969844,0.2099032503532992,0.2197542739714048,0.2291742251833284,0.2390063074028992,0.2486898151245511,0.2573018549747048,0.2652406174505778,0.2715475276896469,0.2789629561072676,0.2853985147067423,0.2920479702612792,0.2973274342649545,0.3029168692270296,0.3076439325745712,0.3119027041921868,0.3165255046806343,0.321011673151751,0.3250551803439024,0.323774470150461,0.3230667511501694,0.3221177565087464,0.3207282508098102,0.3196679856008092,0.3177441118743866,0.3155959230903356,0.3161794909712295,0.3168179719956916,0.3167228674909454,0.3179716601463789,0.3192417810247803,0.319117308376777,0.320124198628454,0.3218713956170703,0.3227012987012987,0.323434217250582,0.3263467434148783,0.3286043748689636,0.332107697781995,0.3351947698174884,0.3390232337600758,0.3423446026469297,0.3434103780805143,0.3465440409595146,0.348274209012464,0.3534522885958107,0.3546027230237756,0.3565145684442001,0.3645395491020252,0.0,2.276970891026405,54.14064142403031,170.93273328800802,261.8855191326212,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95726,44847,424.9942544345319,5770,59.10619894281596,4494,46.28836470760295,1700,17.299375300336376,77.38965647392791,79.75505087893639,63.34469261111818,65.09333556447814,77.17595868363439,79.5469997971115,63.26450475910454,65.01832309444293,0.2136977902935228,208.05108182489107,0.080187852013644,75.01247003520461,178.79246,125.17856245532028,186775.23347888765,130767.56832555449,378.53209,247.39366597981808,394787.6647932641,257794.1374128429,379.98583,184.65623664036917,393049.3282911644,189928.18376102857,2568.216,1186.2524805071405,2645747.153333473,1202360.5345457385,1029.83128,460.5517782005938,1058962.319537012,464404.7361849365,1661.68864,701.3239744158719,1692406.911392934,696801.1008940514,0.37801,100000,0,812693,8489.78333994944,0,0.0,0,0.0,32500,338.83166537826713,0,0.0,34659,358.1158723857677,1499050,0,53780,0,0,6994,0,0,64,0.6685748908342561,0,0.0,3,0.0313394480078557,0,0.0,0.0577,0.1526414645115208,0.2946273830155979,0.017,0.3318936877076412,0.6681063122923588,24.567080399311266,4.238304070634467,0.3199821984868713,0.2552291944815309,0.2131731197151758,0.2116154873164219,11.186093292878509,5.891933219536862,18.110449314803684,12069.15655792506,50.910312560232185,13.752716189097814,16.045992926525845,10.720159001569623,10.3914444430389,0.5589675122385402,0.7776809067131648,0.6828929068150209,0.5657620041753654,0.1009463722397476,0.7326332794830371,0.8796296296296297,0.8650793650793651,0.7322175732217573,0.1322751322751322,0.4929361179361179,0.7160839160839161,0.6179245283018868,0.5104311543810849,0.0931758530183727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397617697107,0.0047443812536115,0.007012451922589,0.0095190686145031,0.0116370146581626,0.0137570771048022,0.0159460038131748,0.0179152928206122,0.020065009403876,0.0220998433869366,0.0242112384427725,0.0262509496334928,0.0283426198161893,0.0304181726442391,0.0323256077812503,0.0346634421604191,0.0366772977674688,0.0388230655904384,0.0406502374988307,0.0425857811213804,0.0569680390089064,0.0714061420586573,0.0852927906659531,0.0979946552195778,0.1097513372086889,0.1255843963529436,0.1378205468260957,0.1496498733584488,0.1605224374719665,0.1709401709401709,0.1838169582772543,0.1955367091072336,0.2071215004077194,0.2170879986004198,0.2263260388817374,0.2359643877483223,0.2448226254335389,0.2526324069807949,0.2599101959361393,0.267150244840053,0.2741126141750491,0.279679738180118,0.2858577860764131,0.2915295215981041,0.2971415398801291,0.3027091564811737,0.3074971251437428,0.3122378955394586,0.3159201085902656,0.319916733639873,0.3194377250981025,0.31803697497459,0.3167735042735042,0.3151716181136429,0.3138329383886256,0.3112043962753778,0.3096150510163851,0.3106968994020975,0.3114417563028061,0.3131605078374352,0.314057882116768,0.3154403250181547,0.3166212647382977,0.3178298013979806,0.3189519400563165,0.320114927652525,0.3214831155608348,0.3254323149566903,0.3276115228639351,0.3309173003802281,0.3339093265426766,0.3355326167925934,0.3372107645875251,0.3389218855725133,0.3417066863686738,0.3424673507462686,0.3463737586518206,0.3517707918822125,0.3555555555555555,0.3610586011342155,0.0,2.55579920544996,53.71472135084787,165.4358243167387,242.8228981989554,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95761,45150,427.8881799479955,5810,59.29344931652761,4614,47.59766502020656,1785,18.23289230480049,77.34687979821054,79.70697275343403,63.33382307926016,65.08156780982254,77.12051814863696,79.48283685909783,63.24797843920021,64.99906113737177,0.226361649573576,224.13589433620015,0.0858446400599461,82.50667245077636,178.08142,124.73258329459264,185964.45316987083,130254.05258361196,379.11001,247.29125908570987,395313.5410031224,257659.64127954992,381.76741,185.11778169586796,395364.89802738064,190662.5393601852,2655.0944,1227.5153954050998,2742883.386764967,1252110.5203632994,1089.9129,482.994356256532,1124871.241946095,491086.5657799429,1748.53902,747.2005928034778,1789496.9559632835,749005.6469098494,0.38043,100000,0,809461,8452.929689539584,0,0.0,0,0.0,32375,337.4755902716137,0,0.0,34829,360.4076816240432,1504048,0,53992,0,0,7080,0,0,78,0.8040851703720722,0,0.0,1,0.0104426645502866,0,0.0,0.0581,0.1527219199327077,0.3072289156626506,0.01785,0.3356378600823045,0.6643621399176954,24.07556438010392,4.3231567094920464,0.3207628955353273,0.2403554399653229,0.2171651495448634,0.2217165149544863,11.380628522755933,5.934881507312453,19.081999307999272,12173.098883770635,52.31147023558875,13.398614581513549,16.541049720519098,11.20744658429679,11.16435934925932,0.5717381881231036,0.8043282236248873,0.6966216216216217,0.593812375249501,0.1173020527859237,0.737490377213241,0.928735632183908,0.8925,0.7,0.1538461538461538,0.5067873303167421,0.7240356083086054,0.6240740740740741,0.5621761658031088,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0042793980448626,0.0065583756345177,0.0086181489273046,0.0111194758688044,0.0131056393963463,0.0155061678050769,0.0176092282564311,0.0198523849440821,0.0220543064258508,0.0242574612711073,0.026583019313503,0.0286707389810987,0.0308218472505511,0.0328193696204099,0.0350124564540971,0.0368855429796311,0.0388804746986452,0.0408307519594187,0.0428290275217893,0.0578129403291966,0.0721458607920667,0.0857265683159804,0.0976686497508881,0.1100594460137442,0.1257939401625397,0.1380732291644582,0.1495847820770466,0.1600200571843127,0.1702945902517407,0.1840432055599186,0.1952637779531133,0.2065275257765561,0.2163218943183555,0.2259896937800094,0.2362002567394095,0.2457597823299173,0.2546713736424347,0.2630258872130105,0.2702071114369501,0.2772962401490516,0.2844354470669459,0.2911596193001562,0.2972056055720057,0.3025943596654162,0.3072493016501975,0.3119198338629369,0.3159253653511059,0.3199062868089622,0.3249798963839856,0.3245086565236692,0.3227523415258083,0.3217360720315138,0.3198032512585284,0.3180523833536025,0.3155794109551335,0.3132084420203936,0.3134051731207662,0.3149803787749531,0.3157134964623692,0.3170777314459881,0.3186060737612723,0.3196184659150333,0.3209305443818718,0.3219695148338702,0.3228494553433818,0.3242595445985276,0.3268489862944483,0.3282794526330601,0.330374203821656,0.3316720771798271,0.3347324796769566,0.3384634792481393,0.3426923660646532,0.3477006144107242,0.3489056248529065,0.3488513616309143,0.3518518518518518,0.3537604456824512,0.358320251177394,0.0,2.3107838819349404,56.85788442632416,166.04374711552745,249.14648416474185,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95755,45222,428.0925278053365,5931,60.67568273197222,4634,47.83040050127931,1793,18.31758132734583,77.36211040614715,79.72224341431307,63.32787542470121,65.07483215313506,77.13231143940196,79.49555885215663,63.24179626549015,64.99241546209757,0.2297989667451929,226.68456215643573,0.0860791592110601,82.41669103749416,178.98914,125.36422498755783,186924.0666283745,130921.8578534362,380.88995,247.9038840185064,397204.4697404836,258324.93859273943,383.56817,185.9746288283405,397192.533026996,191570.5365929448,2632.99644,1223.7595603616105,2719949.2872434864,1248345.2696086103,1081.85001,484.8198088451029,1115074.147564096,491837.710769622,1758.50932,743.818870569047,1800126.1970654274,746668.0880130656,0.3813,100000,0,813587,8496.548483107932,0,0.0,0,0.0,32554,339.38697718134824,0,0.0,35118,363.3752806641951,1496787,0,53739,0,0,7076,0,0,68,0.6997023654117279,0,0.0,2,0.0208866377734844,0,0.0,0.05931,0.1555468135326514,0.3023098971505648,0.01793,0.3374737860945314,0.6625262139054686,24.31860149166391,4.226261659393972,0.3120414328873543,0.2563659905049633,0.2162278808804488,0.2153646957272335,11.293911853220823,5.938556842793825,19.17778268062005,12181.148033640058,52.77074872604804,14.347894577790392,16.3001620961368,11.174720191601558,10.947971860519282,0.5731549417350021,0.7971380471380471,0.6991701244813278,0.5858283433133733,0.1112224448897795,0.7452901281085155,0.9279475982532752,0.8686868686868687,0.7297297297297297,0.1448598130841121,0.5040822497732084,0.7150684931506849,0.6352380952380953,0.5356662180349933,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002522719674174,0.0046443709818078,0.0068216424728453,0.0092260483453061,0.0115660444534865,0.0136574734183403,0.0159688373136459,0.0181226006697704,0.0203883395875297,0.0225894978291144,0.0248072032160144,0.0270353555067074,0.0291866422501594,0.0312857452004822,0.0334296625038703,0.0354931091880938,0.0374128879270174,0.0392708182025689,0.0410490426394461,0.0433202091535945,0.0580381841146567,0.0718530297957817,0.0850934412819598,0.0974368143715094,0.1093448381346188,0.1247633452145493,0.1375677654123213,0.1489028713788367,0.160515461714359,0.1709365047023624,0.183986041101202,0.1962857544831766,0.2075350588030505,0.2171111645918568,0.2258984095536844,0.2364712139343172,0.2455023618881704,0.2540957781978576,0.262608498326431,0.2701139552196072,0.2771983841283437,0.2843288645562808,0.290892952245695,0.2960791366906475,0.3017658060285152,0.3075681005793171,0.3119960939456157,0.3157787563316109,0.3203434610303831,0.3246888651330984,0.3233550681683462,0.3212442364599821,0.3200467447623338,0.3191123567909618,0.3183026235690636,0.3159731256026079,0.3133978862097336,0.3135859943610255,0.3144493301973617,0.3152789149549678,0.3161786674634,0.3170410290704535,0.3192949520233625,0.3193702120078389,0.3209051724137931,0.3219692052034378,0.323304219600726,0.3274875738535121,0.3309868971285196,0.3343969116836051,0.3384198645598194,0.3397930780946379,0.3419491789973153,0.3466306062654947,0.3515892873691039,0.3549640796137086,0.3562783661119515,0.360525268603263,0.3705501618122977,0.3741836342681521,0.0,2.1952364523595325,58.23231923655592,166.2363358329407,249.8612891801301,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95759,45435,430.9882099854844,5969,61.19529234849988,4660,48.06858885326706,1820,18.577888240269843,77.32840490063373,79.68738683749773,63.31625382636724,65.0640578424484,77.10001660208447,79.4635772680948,63.23101500804236,64.98342857918772,0.2283882985492624,223.8095694029312,0.085238818324882,80.62926326068975,178.58478,125.16569444284676,186493.76037761464,130708.83618547268,380.77757,248.2416153589349,397063.2107687006,258657.468602361,387.5068,187.81423342310455,401079.7522948234,193295.1434892468,2664.12432,1234.1470758476678,2748935.932914922,1255627.4771537583,1109.79512,489.88622977831,1145798.504579204,498455.8937576561,1774.32808,747.6290035049578,1813301.7679800333,748559.3981475949,0.38238,100000,0,811749,8476.989108073392,0,0.0,0,0.0,32474,338.51648409026825,0,0.0,35381,365.8768366419866,1497624,0,53771,0,0,7131,0,0,71,0.7414446683862613,0,0.0,0,0.0,0,0.0,0.05969,0.1561012605261781,0.3049086949237728,0.0182,0.3309283309283309,0.669071669071669,24.28418815876227,4.233648211661914,0.323175965665236,0.248068669527897,0.2182403433476394,0.2105150214592274,11.035069519583075,5.816639658102275,19.539359615369733,12170.258456099997,53.13314390954394,13.834149976760164,17.050512893050623,11.442212207236748,10.806268832496402,0.5686695278969958,0.7785467128027682,0.6932270916334662,0.576204523107178,0.1223241590214067,0.744343891402715,0.91156462585034,0.8637469586374696,0.7211895910780669,0.1756097560975609,0.4988002399520096,0.6965034965034965,0.6292237442922375,0.5240641711229946,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.0043611432280573,0.0066198269910246,0.0088721315473891,0.010976378913959,0.0130378096479791,0.0154185022026431,0.0175195001429329,0.0198838659551411,0.0219051323520379,0.024150479216852,0.0264290041378743,0.0284662374791748,0.0305605339595822,0.0325173887019875,0.03459789125491,0.0364795759922154,0.0385397220493673,0.0406031759228466,0.042578898031455,0.0576913040301451,0.072063591674511,0.085165728186899,0.0982855220695672,0.1105374077976817,0.1257689462001902,0.1383351007423117,0.1498568585507061,0.1602512069039176,0.171059403817285,0.1833740831295843,0.1951660193229397,0.2064947780678851,0.2167299132774138,0.2259854046735864,0.2357423713795204,0.2455975895547372,0.2543946521416192,0.2621636962197752,0.2700407920066,0.2771541648344018,0.2837124978068893,0.2900716357823693,0.2956056351549188,0.3010551395507148,0.3068756319514661,0.3115619475129462,0.315417346106808,0.3198589010361955,0.3248200726312314,0.3238929702770102,0.3224669603524229,0.3217528622187129,0.3210534679784452,0.3197127180264977,0.3170821451568393,0.3153749861350995,0.315136762117798,0.315838079113437,0.3164423472214774,0.3171019597556863,0.3190775184614777,0.319469396281596,0.3200688175887032,0.3203680568902556,0.3219712739383847,0.3248356901015733,0.3278056426332288,0.3310744725443622,0.3353359683794466,0.3358868591632292,0.3406541317743719,0.3440404166406786,0.3453063688499849,0.3468095016301816,0.3487690504103165,0.3508479709267111,0.3571717990275527,0.3579092159559835,0.3548387096774194,0.0,2.2831169195631675,58.222721725593615,170.111075156156,249.20347725576477,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95724,45189,428.09535748610585,5881,60.28791107768166,4542,46.79077347373699,1752,17.83251849066065,77.31464774318667,79.6815863611217,63.30648041847581,65.05646622058579,77.09013890857702,79.46061849622664,63.22244576341418,64.97665223704988,0.2245088346096508,220.9678648950586,0.0840346550616288,79.81398353591374,179.25798,125.53661363081248,187265.2208432577,131144.11603235605,377.60114,246.1554095265565,393721.8356942877,256404.41661574916,382.1201,185.3711142563361,395294.4298190631,190599.0812368365,2588.40492,1204.54212196076,2668988.090760938,1223308.2551152357,1045.91196,471.4242834446288,1076709.8846684217,476572.5962554683,1716.54672,730.9409081201558,1750096.7573440308,727447.8526744428,0.38002,100000,0,814809,8512.05549287535,0,0.0,0,0.0,32263,336.33153650077304,0,0.0,34851,360.1918014291087,1494964,0,53642,0,0,7123,0,0,66,0.6790355605699719,0,0.0,2,0.0208934018636914,0,0.0,0.05881,0.1547550128940582,0.2979085189593606,0.01752,0.336198507946805,0.6638014920531949,24.27401537484888,4.198942474536473,0.3192426243945399,0.2443857331571994,0.2208278291501541,0.2155438132981065,11.074844897550436,5.742414877491879,18.837271017336107,12115.655936868325,51.88437253975794,13.314187507746231,16.67063699923492,11.108858952633865,10.790689080142942,0.571994715984148,0.7972972972972973,0.6986206896551724,0.6041874376869392,0.0960163432073544,0.7241647241647242,0.9182242990654206,0.8390243902439024,0.7631578947368421,0.0950226244343891,0.5118279569892473,0.7214076246334311,0.6432692307692308,0.5574193548387096,0.0963060686015831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002279288861875,0.0046232928795206,0.0070342475486713,0.0093079971547606,0.0113739254285568,0.0133868535800154,0.0157109190887666,0.0178575075044414,0.0199026843579416,0.0218459522542074,0.0239508679113735,0.0261520453425332,0.0284412351622127,0.0305303397182924,0.0325564111562996,0.0348396034281342,0.0370512276196294,0.0389133322264652,0.0412498700218363,0.0431326380713251,0.0576565665003028,0.0716977182332007,0.0853764726864528,0.0973193534478225,0.1093946072486845,0.1251652896933281,0.1379537253237104,0.1488330991014011,0.1597686897406845,0.1695675501663268,0.1816309364620627,0.1948967983097675,0.2057343297239591,0.2153040314715583,0.2245215205503616,0.2344176751415565,0.2449920028633105,0.2542799142889365,0.2624024748083616,0.2701256344886194,0.2769796268596143,0.2837706397290614,0.2899585062240664,0.2960411014812859,0.301293742856448,0.3058865615671181,0.3106457024110563,0.3141581097072183,0.3181765246308924,0.322369288369763,0.3205597416576964,0.3185562048814025,0.3177509633504908,0.3171009724987735,0.3168008078168156,0.3152014203501898,0.3127344083809403,0.3131145657205706,0.3132270793829754,0.3137650016940992,0.3155225333133702,0.3165203669000888,0.3171296779445221,0.3183813534772823,0.3183965091467069,0.3182325895524326,0.3196252100361689,0.3216357763351836,0.3252367804843952,0.3292557403008709,0.3335000227303723,0.3352061910314852,0.3389702170620898,0.3426936283861121,0.3434115098427051,0.3480990169371076,0.3502141982864137,0.3503380454824831,0.3568075117370892,0.3490895001937233,0.0,2.483900308999229,56.26598514417063,168.28559434696015,241.6917497410612,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95825,45491,429.6686668405948,5875,60.17218888599008,4672,48.26506652752413,1827,18.8051134881294,77.3504688262772,79.68208245521471,63.33176974345843,65.05969799562705,77.12415070723576,79.45409922327354,63.24844304898631,64.97755378088277,0.2263181190414371,227.9832319411668,0.0833266944721202,82.14421474427525,179.2087,125.60613973614537,187016.64492564573,131078.67439201186,384.67524,250.6410703905713,400943.7307591965,261069.82560977968,388.98832,188.82815287451683,402386.5483955126,194437.8181899894,2680.89264,1237.2428289434476,2772113.6237933734,1265565.4254562454,1079.28536,479.445422892769,1116408.8181581008,490464.5631719069,1792.67878,745.7147702614394,1846600.2191494915,758818.9831597891,0.38341,100000,0,814585,8500.75658752935,0,0.0,0,0.0,32942,343.2507174536916,0,0.0,35483,366.74145577876334,1492078,0,53609,0,0,7101,0,0,60,0.626141403600313,0,0.0,0,0.0,0,0.0,0.05875,0.1532302235205133,0.3109787234042553,0.01827,0.3440598082236307,0.6559401917763692,24.24098733026621,4.273581497045815,0.3195633561643836,0.2517123287671233,0.2084760273972602,0.2202482876712329,11.352938777401535,5.985908227440024,19.353951134205545,12271.782617690573,52.93215255309638,14.190838433073267,16.65910878815489,10.760709410672776,11.321495921195448,0.561429794520548,0.7908163265306123,0.6865371734762223,0.5780287474332649,0.1020408163265306,0.7349491790461298,0.9166666666666666,0.8740554156171285,0.7565217391304347,0.1045454545454545,0.4960212201591512,0.717741935483871,0.6186131386861314,0.5228494623655914,0.1013597033374536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374880969264,0.0044107358324123,0.0066781690855576,0.0090730825112016,0.0113513843399719,0.0136888635391415,0.0159706287287746,0.0180847153010374,0.0206228784098809,0.0229308491580078,0.0249584709091281,0.0270578329088967,0.0290929658576717,0.0313397942263921,0.0335598849021771,0.0359058079581736,0.0377118249293485,0.0397776187364512,0.0417571682445984,0.0441295883736908,0.0588867330120381,0.0734351639849867,0.0865118618492748,0.0995871111437966,0.1121037494337396,0.1277911043949657,0.1404580152671755,0.1516640607549698,0.161959051218002,0.1727544493137181,0.1852553205224764,0.1970425777998767,0.2087397623340792,0.2188415300546448,0.2280337029215065,0.2380799397350113,0.2488366123938443,0.2572769107868177,0.2657076682031835,0.2736560001832466,0.280660950463429,0.2874450369538778,0.2930675499822548,0.2988380450407283,0.3044724979648373,0.3086020842325954,0.3125821843182928,0.3168345836889098,0.3209143804994362,0.3254560585445755,0.3252724428139836,0.3240545421957508,0.3232227755597252,0.3210989265356905,0.3193558460097248,0.3167555310412453,0.3147754998574099,0.3153277476589453,0.3157660966568153,0.3157518837267435,0.3172346713553552,0.3177101826646151,0.3188545150501672,0.3196642632319128,0.3210502294073842,0.3219425864716446,0.3228829442835236,0.3258560731852502,0.3299138141596008,0.3332674285262367,0.3381353628703452,0.3401076858108108,0.3425386686705491,0.3444469645422242,0.3467190863989516,0.3499059708509638,0.3549908703590992,0.3591237942122186,0.3655097613882863,0.3605182926829268,0.0,1.8261911050752209,56.432901265530944,170.51139892376932,255.94090816455957,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95710,45255,428.9624908577997,5892,60.36986730749138,4622,47.64392435482186,1805,18.47246891651865,77.30949638025908,79.67131533437701,63.31695901961641,65.060318243192,77.08122440347977,79.44434934645311,63.23158471057334,64.9776839178414,0.2282719767793111,226.96598792390432,0.0853743090430754,82.63432535059678,179.68016,125.81475941290056,187733.9462961028,131454.14210939355,380.62725,248.3938342270043,397057.4548114095,258897.08786443152,386.59364,187.6445875655157,399584.8187232264,192726.82625401395,2636.62792,1217.2820746646237,2722191.620520322,1239397.9787707962,1091.80175,481.8298171360672,1124533.7373315224,487319.8958084722,1767.57522,747.5513143098,1812609.675060077,752119.059738496,0.37938,100000,0,816728,8533.3611952774,0,0.0,0,0.0,32493,338.8256190575698,0,0.0,35280,364.2984014209592,1490478,0,53589,0,0,7118,0,0,64,0.6686866576115349,0,0.0,1,0.0104482290251802,0,0.0,0.05892,0.1553060256207496,0.3063475899524779,0.01805,0.3490550799547731,0.650944920045227,24.235935355951067,4.338738611790194,0.309822587624405,0.2477282561661618,0.2228472522717438,0.2196019039376893,11.171722734793873,5.819971087480976,19.318251243558464,12117.476968997467,52.604762253051845,13.932586499030558,16.193301413296236,11.419102072139497,11.059772268585574,0.5675032453483341,0.7825327510917031,0.7018156424581006,0.5815533980582525,0.1211822660098522,0.7297939778129953,0.9158878504672896,0.8730569948186528,0.6974789915966386,0.1238095238095238,0.506547619047619,0.702928870292887,0.638623326959847,0.5467171717171717,0.1204968944099378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495812276561,0.0050583894250263,0.0074263452641831,0.0097403916470301,0.0118843084430437,0.0140665872749295,0.015960862253478,0.0179448181530515,0.0202260741588651,0.0222492861602071,0.0241802396498529,0.0263568597654886,0.0286683804627249,0.0307917284560883,0.032713171898849,0.0348803570690581,0.0369684236672427,0.0389836660617059,0.0410002182521123,0.0431141342277684,0.0577553620282772,0.0716311685593176,0.084986103099271,0.0975689259952472,0.1104479500590518,0.126669698475987,0.1390539450787318,0.1504683840749414,0.1617210365527996,0.1713611751460891,0.184200887663205,0.1960656944579774,0.2073498525458957,0.2172937597128286,0.2264529058116232,0.236747001308117,0.24638879268933,0.2551177908719115,0.2637397598027519,0.270743759960559,0.2777372474089514,0.2843200355751115,0.2898320740863551,0.295041451212343,0.2996511444164874,0.3049630516043869,0.3088034648074202,0.3131795381050594,0.3176096960269622,0.3208592200925313,0.3194987725592813,0.3175224213702178,0.3160174381692744,0.3151776290105695,0.3138220331419391,0.3117592038885566,0.3098321114602177,0.3095711959471684,0.3100909262144899,0.3112579224406488,0.3121679214464074,0.3119546247818499,0.3134742237721104,0.3140877598152425,0.3163447609850314,0.3170069448070597,0.3177406887864647,0.3208877695576893,0.3243186288283226,0.3284001424557793,0.33154715952954,0.3332803560076287,0.3355337608449641,0.3414968055978095,0.3442345644206371,0.3469411903916696,0.3449013912245834,0.3500307944980497,0.3507709251101321,0.3444444444444444,0.0,2.525646949672093,54.95079344069101,170.8698749836784,254.02055625783825,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95724,45271,429.4325352053821,5765,58.87760645188249,4512,46.45647904391793,1784,18.17725962141156,77.40440741590693,79.76198007904551,63.3594678928421,65.09933778726993,77.17464469785932,79.53840507054014,63.273291495543496,65.01910706727335,0.2297627180476098,223.57500850537804,0.0861763972986011,80.23071999657816,180.268,126.21887514599364,188320.5883581965,131857.08406041705,378.91882,246.9348266304448,395155.2588692491,257275.52821700383,383.52618,185.8674839301055,396979.7020600895,191243.13066860024,2577.81748,1194.2713779944602,2655322.510551168,1209973.2752438884,1101.82499,490.45552757429743,1133614.9241569513,494941.42133791646,1747.36618,740.5265791831702,1782841.7951610882,734398.5021719973,0.38074,100000,0,819400,8560.026743554385,0,0.0,0,0.0,32427,338.0343487526639,0,0.0,34977,361.7483598679537,1494625,0,53593,0,0,7144,0,0,63,0.6476954577744348,0,0.0,0,0.0,0,0.0,0.05765,0.1514156642328098,0.3094535993061578,0.01784,0.3307921776599271,0.6692078223400729,24.20906799210447,4.317665922685024,0.3038563829787234,0.2513297872340425,0.2214095744680851,0.2234042553191489,11.07795687151609,5.692323849030944,19.03030452181135,12131.071948358878,51.34914242068922,13.717229748029432,15.46199554415633,11.177787442142726,10.992129686360723,0.5695921985815603,0.808641975308642,0.7045951859956237,0.5685685685685685,0.1180555555555555,0.743485342019544,0.928406466512702,0.8784530386740331,0.6896551724137931,0.1641791044776119,0.5045676004872107,0.7346647646219686,0.6422200198216056,0.5319426336375489,0.1065675340768277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185881924124,0.0045401570813275,0.0068679367784608,0.0092723302696389,0.0113367157077059,0.0133346905537459,0.0156535031847133,0.0177647623031948,0.0200568088932483,0.021990278843694,0.0239210421129228,0.0259562981741299,0.0280967605966834,0.0297774161319229,0.031945189648768,0.0340510869677579,0.0364421523549148,0.0385896119254349,0.0405940491160973,0.04264183566124,0.0566733140524343,0.0707677494976557,0.0841716581522936,0.0966785477715042,0.1092534418418334,0.1258433620270299,0.1384571313379945,0.1503662535667135,0.1617642345047172,0.1724115741833079,0.1844579675803759,0.1965501195770974,0.2075683083884441,0.2172529551344436,0.2263895612375126,0.2369563291699885,0.2465666313382049,0.2553038394513463,0.2632283232405706,0.2702563515678645,0.277964574162016,0.2839112667834209,0.2907210164608081,0.2961033374359219,0.3013917656891602,0.305932088827715,0.3110364551460579,0.3151488227454465,0.3192297260645511,0.3231564547104785,0.3228364417013283,0.3212674027844455,0.3198191239871364,0.3178315786441605,0.3165356894433838,0.3139164008729226,0.311094973478151,0.3116864002093282,0.3115554799183118,0.3123510369606204,0.3121063157697987,0.3120863053486396,0.3140364458020377,0.313856241218582,0.3152038369304556,0.3164675568048723,0.3164596449435653,0.320301740328033,0.323708312941341,0.3252450205501107,0.3277173913043478,0.3338974087784241,0.3352297592997811,0.339681100279604,0.3442028985507246,0.3467789079855021,0.3522003034901366,0.3528468323977546,0.356220818456468,0.3568918391253416,0.0,2.6029910388741446,53.20257845917573,172.5580095501766,241.11800000673492,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95758,44886,425.70855698740576,5966,61.07061550993129,4662,48.20484972534932,1800,18.47365233192005,77.33232137485312,79.6990668412172,63.31916690730778,65.07130430171976,77.10709217602957,79.47199106432848,63.23534474012511,64.98871872481267,0.2252291988235555,227.07577688872504,0.0838221671826744,82.58557690709267,178.5927,125.08080051333424,186504.20852565844,130621.7762623846,377.37468,245.16869821520132,393639.246851438,255576.649695275,376.37172,182.059935874194,389911.9238079325,187670.1077826502,2672.16452,1229.4706501332746,2765935.8800309114,1259491.7280569528,1118.41136,499.1026812092008,1157339.4285594935,510698.6424149846,1772.98402,747.6713798664848,1823194.552935525,757716.15911148,0.37921,100000,0,811785,8477.464023893566,0,0.0,0,0.0,32299,336.8073685749493,0,0.0,34351,355.542095699576,1503372,0,53919,0,0,7002,0,0,65,0.678794461037198,0,0.0,1,0.0104429917082645,0,0.0,0.05966,0.1573270747079454,0.3017096882333221,0.018,0.3457659676644789,0.654234032335521,24.28111027995236,4.287134414000855,0.3138138138138138,0.2391677391677391,0.2222222222222222,0.2247962247962248,11.03762832912521,5.642873950152401,19.129213037299127,12100.036736641578,52.95993053259009,13.442605421194878,16.37805532791218,11.643990278618285,11.49527950486475,0.5506220506220506,0.7802690582959642,0.6746411483253588,0.5704633204633205,0.1135496183206106,0.7314890154597233,0.9290780141843972,0.868421052631579,0.6967213114754098,0.1772727272727272,0.4858724147975531,0.6893063583815029,0.6155218554861731,0.5315656565656566,0.0966183574879227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0046556918114596,0.0066810169766875,0.0091572485567932,0.0110787824529991,0.0134065463880767,0.0155931304560659,0.017805184330621,0.0200092019835386,0.0223484848484848,0.0241729627769177,0.0260664236948821,0.0282573599728531,0.0303208198156444,0.0324164826775065,0.0342824660224277,0.0363536586628563,0.0384575483442609,0.04036205301936,0.0421370547802541,0.0567861541994613,0.0711565423005294,0.0841365567150873,0.0967046601615074,0.1090385710369261,0.1243521123780913,0.1365845376795908,0.1481583989780711,0.1587913613739773,0.1690865807364831,0.1812923448119863,0.1936580086580086,0.2048481155888241,0.2157928703470756,0.2257461044105995,0.2355963546568926,0.2450707997188096,0.2543404633578252,0.26192880728948,0.2695333524191239,0.2759753783496089,0.2829290542911277,0.2895857484208285,0.2950584007187781,0.2999150072850898,0.3050056055883404,0.3095205333800332,0.3134971586936347,0.3180959283514094,0.3224819693313819,0.3217643972718834,0.3209277386713594,0.3197754579476068,0.3188395343133719,0.3174365290163667,0.3157290997522254,0.3131986446689255,0.3139267908685384,0.3143207814124746,0.3150061566465014,0.3147922333739799,0.3158457184698502,0.3167407531661494,0.3171135681991137,0.317665189751493,0.3181048187433218,0.3191386470956363,0.32318685469655,0.3267316320807628,0.3324182382430174,0.3343191227990354,0.3348437999786757,0.3381627230165759,0.3406106870229007,0.3424798651432852,0.3435813189392162,0.3492303048596438,0.349740932642487,0.3567552902875746,0.3642585551330798,0.0,1.901037034696441,54.09507452745414,179.56448404528425,253.652207433028,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95722,45294,429.6817868410606,5859,60.069785420279565,4593,47.35588474958735,1815,18.55372850546374,77.41699606751023,79.7703750864641,63.36600846061516,65.10063619716334,77.18197664396024,79.53939301555309,63.27890666900202,65.0178598487016,0.2350194235499856,230.9820709110113,0.0871017916131435,82.77634846173498,178.98562,125.45811599121338,186984.601241094,131064.88867488388,383.11099,249.7575096741341,399525.1248406845,260213.4127676492,388.66255,188.29695179804503,402651.5639038048,194033.5175853016,2644.43992,1222.168571558302,2729360.0635172687,1243664.2714886433,1121.51529,497.55964812905125,1158006.727815967,506230.8096054958,1788.07254,754.1106778879998,1830509.18284198,755764.400798594,0.3805,100000,0,813571,8499.300056413364,0,0.0,0,0.0,32713,341.0710181567456,0,0.0,35397,366.3630095484842,1496281,0,53679,0,0,7031,0,0,68,0.699943586636301,0,0.0,0,0.0,0,0.0,0.05859,0.153981603153745,0.3097798259088581,0.01815,0.3390160740379931,0.6609839259620068,24.22680070918572,4.361192738630143,0.3122142390594383,0.245808839538428,0.2127150010886131,0.2292619203135205,11.346437320079596,5.876415746845012,19.435927551474936,12136.691935065215,52.12481956326521,13.483712934363036,16.126594717375134,10.926961204197012,11.58755070733003,0.568691487045504,0.7962798937112489,0.701534170153417,0.5834186284544524,0.1301044634377967,0.7385725741780272,0.94,0.8426395939086294,0.7261410788381742,0.1792452830188679,0.5053795576808129,0.7174211248285323,0.6480769230769231,0.5366847826086957,0.1177170035671819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021255491001842,0.004244800372813,0.0066131126257708,0.0088445252287289,0.0109402960793883,0.013080478022761,0.015350430138215,0.0174527194602925,0.019590610405404,0.0217707118449859,0.0237634111100863,0.0259039174030399,0.0279511086896183,0.0299372830911506,0.0323625597061888,0.034349488477834,0.036536629809086,0.0387276102761961,0.040823537970671,0.0427322825622701,0.0572917210487298,0.071380739128615,0.085043434470603,0.0980406592135292,0.1098571940852616,0.1258130360750055,0.1381519629162114,0.1496663083162141,0.1606541966221918,0.1699353413611554,0.1824867029867137,0.1945066476270838,0.2057902973395931,0.2161557028801101,0.2266410326833287,0.2364863369841796,0.2457618617714916,0.2538660373117554,0.2633924016189926,0.2710192686164126,0.278303086348399,0.2846360556139736,0.2906954753912344,0.2974001723642631,0.301928000291202,0.3068654731709719,0.311832123083076,0.3165440195218668,0.3202130961001345,0.3239039308217553,0.3223993006522762,0.320393019101278,0.3184978746164457,0.3178021215712345,0.3163945871273451,0.3144150897214275,0.3127526528549773,0.3132340912808768,0.3132349687718044,0.3138261951306202,0.3143054286406952,0.3151086208591369,0.3162507303230114,0.3173632725655847,0.3182905819295559,0.3193096288606281,0.319594058283252,0.3219719453903589,0.3249145328961139,0.3270254287403903,0.3311530133525803,0.3357037505267594,0.3390316945345645,0.3403851986654534,0.3422400148961921,0.3443964006076896,0.3531902026005443,0.357926221335992,0.3554835224203133,0.36565201052236,0.0,2.3952097457350856,54.2541218608044,177.6748669040547,241.29830261818236,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95682,45172,427.46807131957945,5920,60.6488158692335,4662,48.00275913965009,1844,18.812315796074497,77.3508434030137,79.74052564487792,63.31502979323547,65.08237845801993,77.12307218056193,79.51872032474965,63.23045076331334,65.0034472960049,0.2277712224517643,221.8053201282686,0.0845790299221249,78.93116201503858,180.4418,126.38619694810768,188584.89580067305,132089.8360695927,383.56694,249.3642185063216,400152.6305888255,259893.5207315082,382.07854,184.94260655161395,394673.2196233357,189635.91308418696,2664.63416,1217.7470299601162,2745476.599569407,1233293.3989257289,1097.04951,485.0723019080767,1126583.6834514327,486988.7668611405,1797.31232,750.2986468245423,1835330.971342572,746267.2360860666,0.38113,100000,0,820190,8572.04071821241,0,0.0,0,0.0,32641,340.39840304341465,0,0.0,34957,360.6634476704082,1489128,0,53412,0,0,7045,0,0,68,0.7106874856294809,0,0.0,0,0.0,0,0.0,0.0592,0.1553275785165166,0.3114864864864864,0.01844,0.3400868306801736,0.6599131693198264,24.800458928662675,4.211936579825239,0.3294723294723294,0.2395967395967396,0.2192192192192192,0.2117117117117117,10.936512794629918,5.760590708257034,19.529045596085,12160.932411490676,52.64684697885711,13.404223209577246,17.259538491513513,11.2738749795477,10.709210298218643,0.5604890604890604,0.7887197851387645,0.6712239583333334,0.576320939334638,0.1134751773049645,0.7398042414355628,0.9204819277108434,0.8367875647668394,0.7316017316017316,0.1701030927835051,0.4965075669383003,0.7108262108262108,0.6156521739130435,0.5309734513274337,0.0996216897856242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0046445122755067,0.0068927712188734,0.0094316611106594,0.0118924087977374,0.0142417636152482,0.0164645156025257,0.0186081663500623,0.0208424949632341,0.0231969849040371,0.025330735309199,0.0272796368192929,0.0295612104256238,0.0314757003472114,0.0336240260075339,0.0356038912034404,0.0376191462909241,0.0394436371185385,0.0417542180706097,0.0436341651552108,0.0576874869438061,0.0712745015915563,0.08504697422978,0.0976664422186684,0.1098111615149277,0.1252539360081259,0.1385898987325648,0.1500212992545261,0.1609992837824836,0.1709790622551807,0.1839016029407009,0.1957472608375557,0.2067100509293518,0.2164072931030708,0.2264570535262126,0.2366454531343548,0.2454340448334375,0.2543907052148068,0.2626181173905142,0.2696103717459335,0.2766413132821635,0.2831854262767228,0.2896183278447724,0.2959209374287873,0.3006732942806446,0.3054939367051168,0.3101045732012408,0.315270058882629,0.3198463309575858,0.3226078811625176,0.3211717171717171,0.3197529675529207,0.3191956433024218,0.3183806018618749,0.3171396813634679,0.3142975029799199,0.3121454867200708,0.3128173212355465,0.3139120500622367,0.3141061029686748,0.3148591075566185,0.3156330571355468,0.3167844265199358,0.3176337100649639,0.3199665031702356,0.3224267565465387,0.3241174809375882,0.3268085902191192,0.3308749347712645,0.3335685444352973,0.3336330126764362,0.3354390397978521,0.3375593305021234,0.3416723523614586,0.3412571643333646,0.347676215380958,0.3531927894897647,0.3587282543491302,0.3553561718325176,0.3539412673879443,0.0,2.8488982384770885,52.97588720006822,177.25005572524404,252.8954226981592,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95730,45203,427.71336049305336,5967,61.28695288833176,4715,48.74125143633135,1809,18.614854277655905,77.26691653433518,79.62806526652109,63.2951211478972,65.03961817061432,77.04084222415526,79.40032742407222,63.21111383562929,64.95675976509084,0.2260743101799249,227.7378424488745,0.0840073122679072,82.85840552348134,179.42936,125.6323959592682,187432.7379087016,131236.18088297106,379.77187,246.7843208948666,396213.8410111773,257294.4331921724,378.56517,183.04621148007672,392182.42975033954,188673.9604704364,2709.13808,1239.8542580030585,2802465.517601588,1267763.823926427,1109.80138,491.6944391375242,1144040.133709391,498419.6677522798,1770.55316,744.5456961743103,1822788.0079389955,756049.0940398285,0.38172,100000,0,815588,8519.66990494098,0,0.0,0,0.0,32473,338.68170897315366,0,0.0,34661,358.76945576099445,1493532,0,53695,0,0,7079,0,0,67,0.6998850934921133,0,0.0,0,0.0,0,0.0,0.05967,0.1563187676831185,0.3031674208144796,0.01809,0.3333333333333333,0.6666666666666666,24.461579209120103,4.300066091626536,0.3200424178154825,0.2455991516436903,0.216118769883351,0.2182396606574761,11.24105164606712,5.909732884911505,19.41320052043033,12258.711235762225,53.61644556582683,14.055275363295715,16.914490799119992,11.428209462793518,11.218469940617606,0.56033934252386,0.7849740932642487,0.6752816434724983,0.5799803729146222,0.119533527696793,0.741112828438949,0.9230769230769232,0.8582474226804123,0.7391304347826086,0.1469194312796208,0.4919614147909968,0.6997206703910615,0.6119536128456735,0.5274151436031331,0.1124694376528117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.004521996573016,0.0070321061817591,0.0092745908716896,0.0114923824827614,0.0135929052162137,0.0159233396197563,0.0180684149814722,0.0204655346902057,0.0227337864395676,0.0246635162424528,0.0268880128126155,0.0290811866934032,0.0311882003955174,0.0332820930784388,0.0354964751607368,0.037704391769445,0.0397775610565849,0.0416311511195193,0.0435729393500526,0.0584107758170617,0.072355613238157,0.0859715212121848,0.0988553152091574,0.1107946153521542,0.1259100143909252,0.139052249421456,0.1510452720476256,0.1621454004982838,0.1717723584217079,0.1848238540813246,0.1971243444718935,0.2092281221413947,0.2198992443324937,0.2291290166174461,0.2393944102825937,0.2491390106449593,0.258430131028966,0.2665341360899693,0.2739652227736958,0.2806688653590233,0.2861907548273844,0.2924100536304119,0.2970872855035794,0.3028505439737434,0.3081012408417001,0.3127388934143743,0.3161555807524238,0.3208364683600135,0.3248686630761291,0.3237702702702703,0.3228782542642083,0.3216370962041422,0.3197653364235532,0.3190532227071634,0.3171263591129676,0.3151781884046458,0.3148096281529565,0.3153716911260458,0.3163559519332366,0.3172596460908441,0.318432211786153,0.3201984944699104,0.321843974810067,0.322178256044009,0.3247296096974764,0.3263729977116705,0.3297700749549321,0.3317010857994464,0.3340575336954335,0.33826978797774,0.3418863062966343,0.3428390367553866,0.3452171921520727,0.3497740963855422,0.3518693800283956,0.3540998625744389,0.3584142394822006,0.3606152156001098,0.3576388888888889,0.0,2.025121498938221,57.06656588588438,173.90092788789076,257.1675336212894,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95700,45597,431.8704284221525,5983,61.20167189132706,4669,48.18181818181818,1799,18.44305120167189,77.288290147924,79.65923442466239,63.294707477804174,65.04469047174443,77.06673718255453,79.4384451825988,63.21223046376072,64.96493498917644,0.2215529653694687,220.78924206358863,0.0824770140434552,79.75548256798959,178.5729,125.15257263749704,186596.5517241379,130775.93797021634,383.57799,250.4818658392946,400199.6133751306,261123.7227925881,386.75368,188.0700990287188,400532.8840125392,193662.3562792083,2686.47936,1239.8177090584377,2773468.171368861,1261835.038067242,1098.34787,489.7697916897415,1125658.2131661442,489758.4001396408,1768.51016,738.3833408876219,1814219.791013584,741808.8235587128,0.38329,100000,0,811695,8481.661442006269,0,0.0,0,0.0,32874,342.88401253918494,0,0.0,35252,364.7753396029258,1489524,0,53526,0,0,7206,0,0,74,0.7628004179728317,0,0.0,0,0.0,0,0.0,0.05983,0.1560959064937775,0.3006852749456794,0.01799,0.3307839388145315,0.6692160611854685,24.33137834045734,4.3257164661545175,0.3169843649603769,0.2495180980938102,0.207967444849004,0.2255300920968087,11.071805416626209,5.67953239311514,19.04102269423438,12287.40884057549,52.98936801130792,14.055863614042517,16.829929941670237,10.736339781288912,11.367234674306268,0.5639323195545085,0.7854077253218884,0.702027027027027,0.583934088568486,0.1063627730294397,0.7618683001531393,0.9288888888888888,0.8710462287104623,0.7956521739130434,0.1674418604651162,0.4870651204281891,0.6951048951048951,0.637043966323667,0.5182186234817814,0.0906921241050119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025623107384113,0.0048053040824809,0.0069001907699801,0.0092951908815701,0.0115836791147994,0.0138276532700668,0.0159968189881935,0.0178124840504261,0.0199327397806376,0.0219618277644169,0.0245864677065611,0.0265956354827451,0.0289630071353663,0.0310086301003068,0.0328822510108094,0.0351684011450657,0.0371597486100038,0.0394553869782694,0.0416974361641271,0.0438036080916301,0.0584334203655352,0.0723042936563609,0.085847719997901,0.0988771612278615,0.1113151977705291,0.1272473159265612,0.1393407806991462,0.1514334721881891,0.1622647562018819,0.17346719639214,0.186650132096835,0.1980717148737948,0.2097880774508309,0.220382960554406,0.2302515640144506,0.2404606832580691,0.2503661795453783,0.2587017555728444,0.2665771781541857,0.2742002158785568,0.2802779002064534,0.2869136960600375,0.2938314962685239,0.2987602710105232,0.3042604746307548,0.3092849730691308,0.3135677256580516,0.317442097745128,0.3218023633294377,0.3262644035507812,0.3249777514090774,0.3237772170051986,0.3225742658172418,0.3210679569456315,0.3188531064184909,0.3180555768670114,0.3163635787103832,0.3158543601545163,0.3153571000701706,0.3160087248802117,0.3171079544388358,0.3190812231908122,0.3194985955644992,0.3199446910055978,0.3217133143390715,0.3241036011511239,0.3241823756529639,0.3282425990968389,0.3315238328722025,0.335486939632962,0.3373010443745154,0.340987614947111,0.346409741400954,0.3484193768478508,0.3506999165662371,0.3537796471550414,0.3581101414384592,0.3608617594254937,0.3615363953800698,0.3668661181750187,0.0,2.353569040715509,57.19529053833779,168.64136697556316,253.46780586687527,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95824,45047,427.2520454165971,5752,58.77441976957756,4483,46.14710302220738,1784,18.21046919352145,77.36488025655099,79.67932886833238,63.35773544642036,65.07101997793669,77.13892319109074,79.45680307668117,63.27373420064382,64.99094320278138,0.2259570654602498,222.52579165120775,0.084001245776534,80.07677515530531,180.17208,126.17382894090598,188023.96059442312,131672.4713442415,377.59912,246.3088926996332,393383.1086157956,256387.14903135883,379.05015,184.3989671199634,391934.1814159292,189583.17995936784,2558.45548,1175.5497451596334,2634450.4508265154,1191874.446326353,1041.95137,462.1094212409783,1070087.044999165,465470.8988632484,1749.03152,734.1694360972596,1786821.8191684757,734285.8815372867,0.37851,100000,0,818964,8546.543663382869,0,0.0,0,0.0,32261,335.9701118717649,0,0.0,34526,356.59125062614794,1495735,0,53686,0,0,7016,0,0,73,0.7618133244281182,0,0.0,0,0.0,0,0.0,0.05752,0.151964280996539,0.3101529902642559,0.01784,0.3332779531483635,0.6667220468516365,24.379833483148364,4.293235290214762,0.319875083649342,0.2451483381664064,0.2105732768235556,0.2244033013606959,11.060189405026785,5.765992594083885,19.0214957468586,12113.1350139393,50.75969464239741,13.166665505992905,16.13540230718013,10.497276852849485,10.96034997637488,0.5583314744590676,0.7816196542311192,0.694560669456067,0.5752118644067796,0.1043737574552683,0.7296631059983566,0.9055690072639224,0.8586387434554974,0.7488584474885844,0.1083743842364532,0.494488671157379,0.706997084548105,0.6349809885931559,0.5227586206896552,0.1033623910336239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044202927937061,0.0066665313742998,0.0090704099459635,0.0111855685827884,0.0133486742964199,0.015749556565883,0.0179165730853257,0.0201790971540726,0.0221915144070832,0.0240235315821299,0.0260360009031013,0.0281403523196776,0.0301770275833676,0.0322015379223617,0.0343563855595817,0.036243651672028,0.0383467683444888,0.0402039269434839,0.0421361465713661,0.0573136134173307,0.071066467372558,0.0849073404779115,0.0977443609022556,0.1100134804954082,0.1253708963813184,0.1385545997711767,0.149879343885871,0.1599901853056957,0.1710937834711452,0.1842464795550631,0.1962857266398582,0.2080350255847556,0.2175698403337483,0.2269000835201547,0.2367597456455626,0.2463069004701321,0.2544725582022169,0.2622132131451996,0.2686956223490002,0.2753360432352533,0.2822709605126469,0.288532879657853,0.2948921869954674,0.3001601825109822,0.3039272396096144,0.3079085808539618,0.3115528739282311,0.3154975825425963,0.3198067123991099,0.3194968891516723,0.3179769723283229,0.3174837774305702,0.3164509418698717,0.3162878506340028,0.3136548892225661,0.3115647983768704,0.3128956411647676,0.3141306580839553,0.3148124966469357,0.3154738405429286,0.3163668101481761,0.3173882901619714,0.3186138258764458,0.3197895141525301,0.32057964970809,0.321231591516461,0.3268698931489629,0.3315891132572432,0.334581225855271,0.3372716032422036,0.3416653314105645,0.3466234261732163,0.3482342078941294,0.3506703432537796,0.3540823613425375,0.3576597382602001,0.361354825545807,0.3605835397742912,0.3582434514637904,0.0,2.324907143337064,52.95605364008525,165.19210886437804,245.5041316177413,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95641,45458,431.1540029903493,5840,59.953367279723125,4593,47.47963739400466,1730,17.732980625463973,77.2563444549925,79.66766400158184,63.27473565930678,65.0561322574331,77.03824061683308,79.45079403072637,63.19361841136271,64.9779381736758,0.218103838159422,216.86997085546977,0.0811172479440642,78.1940837573103,178.6796,125.23713039529451,186823.2243493899,130945.02399106506,382.85827,249.73181782780264,399766.7736640144,260573.58755859616,383.58159,185.8421872936894,397871.4358904654,191806.21040843416,2612.27984,1203.1564257078226,2700988.739139072,1227682.1040346597,1071.66816,475.6231672817522,1106804.163486371,483634.8510031232,1689.86486,708.4761298136045,1733841.51148566,712128.5503557132,0.38252,100000,0,812180,8491.964743154087,0,0.0,0,0.0,32678,341.1089386351041,0,0.0,34975,362.4700703673111,1491613,0,53556,0,0,7125,0,0,67,0.7005363808408527,0,0.0,1,0.0104557668782216,0,0.0,0.0584,0.1526717557251908,0.2962328767123288,0.0173,0.3338223308883455,0.6661776691116544,24.29438539462493,4.22211264601948,0.3261484868277814,0.2466797300239495,0.2218593511865882,0.2053124319616808,11.165844665154486,5.901001296444913,18.38285219707674,12232.274973915552,52.342628993927896,13.7431452336221,17.08906501664955,11.255217319188654,10.255201424467574,0.5736991073372524,0.7837599293909974,0.6835781041388518,0.6045142296368989,0.1134676564156945,0.7402912621359223,0.9086651053864168,0.8530183727034121,0.7510548523206751,0.1256544502617801,0.5123622281799225,0.7082152974504249,0.6257833482542524,0.5601023017902813,0.1103723404255319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990834050741,0.0047231484953832,0.0069414140594079,0.0091940710940436,0.011364330043748,0.0138035716104846,0.0159437734617267,0.01794106829049,0.0204570095943375,0.0225582395967791,0.0246778033163684,0.0265651333908825,0.0286299621149728,0.0309406961398878,0.033076462202756,0.0350779164338486,0.0373395807849397,0.0395462619589267,0.0414667901478652,0.043308195387552,0.0579505669645189,0.0720444188361007,0.0863288959811867,0.0987294335610598,0.1113092662748119,0.1268400055028202,0.1395973296823426,0.1513157194125853,0.1622219609435959,0.1727120535714285,0.1857885204191642,0.1969079759918528,0.2081822043590497,0.2184185149469623,0.2279916179552222,0.238499622574486,0.2488339056610105,0.2578474578181531,0.2658414885031995,0.2723049393195531,0.2796429399489914,0.2859738585077076,0.2920719267447929,0.2972791320107058,0.3024136126291702,0.3072791257640304,0.312811062218712,0.3173395524290156,0.3215819033166012,0.3255651117012141,0.3241799741044454,0.3224009047527101,0.3214033402096815,0.3204888444309137,0.3188230732522071,0.3153305550002306,0.3138011528750417,0.3142607807946256,0.3140854988578397,0.3150999605182872,0.316486455939419,0.3175905145875951,0.3195265028069216,0.3201001990561606,0.3213289068514242,0.32191066868192,0.3222181019482557,0.3240592285202301,0.3255350398657154,0.3290368495967104,0.3317002358918526,0.3337219160661297,0.3368341613734985,0.3396069538926681,0.3413488114980652,0.3451420554191511,0.3488093455144526,0.3509366281387007,0.3464439655172414,0.3456221198156682,0.0,2.1070285707460576,54.16610048626113,176.31437028804623,248.10331949852417,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95685,45226,427.966765950776,5751,58.62987929142498,4551,46.87255055651356,1809,18.46684433296755,77.32722884548278,79.70391520155853,63.32110870231941,65.07574570497529,77.09923785804722,79.47885742409656,63.23550332990567,64.99398088222048,0.227990987435561,225.05777746197,0.0856053724137453,81.76482275480623,180.63848,126.56459240647705,188784.5325808643,132272.13503315777,385.74821,251.64281011789384,402485.352981136,262332.35106640944,383.38741,186.0744741303704,396078.4867011548,190929.99816991945,2606.0168,1209.665792221328,2687573.015624183,1228252.3198216322,1072.17589,480.8972828990335,1106187.417045514,488244.5763693727,1766.26352,742.7283810186516,1806112.3687098287,742442.587550844,0.38038,100000,0,821084,8581.115117312012,0,0.0,0,0.0,33040,344.5890160422219,0,0.0,35081,362.0630192820191,1483484,0,53272,0,0,7280,0,0,66,0.6897632857814704,0,0.0,0,0.0,0,0.0,0.05751,0.151190914348809,0.3145539906103286,0.01809,0.3350430178689609,0.664956982131039,24.268590514789764,4.1899407669037565,0.3126785321907273,0.2467589540760272,0.2225884421006372,0.2179740716326082,11.082416094203673,5.815294309272336,19.093300936465614,12134.17936602202,51.74481792976199,13.556880452381565,16.161570274854114,11.274301523320702,10.752065679205607,0.5658097121511756,0.8058771148708815,0.6865776528460998,0.5765054294175715,0.1098790322580645,0.7244897959183674,0.9189814814814816,0.8630490956072352,0.664,0.1268292682926829,0.5041196216051267,0.7351664254703328,0.6206563706563707,0.5478374836173001,0.1054637865311308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880515115313,0.0044187248533003,0.0068986507050826,0.0090293224453314,0.0114092799544442,0.0138169081486157,0.0161014010972202,0.0182815356489945,0.0205346368600822,0.0227442627315644,0.0250743513485796,0.0272171724952498,0.0296332105901956,0.0314576871953921,0.0337678153090394,0.0356566701137538,0.0376160285098624,0.0397001723386142,0.04176244812199,0.0436844628822781,0.0585869769579477,0.0726545819902038,0.0859513494802429,0.0989479221462388,0.1110853285518405,0.1269478561680789,0.1392624038206421,0.1505154200034077,0.161053531360188,0.1709528254315662,0.1832412225418269,0.1953445569209116,0.2061226487962489,0.2162398678582758,0.2257602941014606,0.2359498271429837,0.2457859837913866,0.2545315435939557,0.2623830927086171,0.2697621666208413,0.2763787094607894,0.2824855450736206,0.2877557302519417,0.2937517229806666,0.2994359896922254,0.305007400098668,0.3089515411881113,0.3131956294730407,0.3182996371176775,0.3221001478977393,0.3203219804222959,0.3185577650863552,0.3175426236437931,0.315870036101083,0.3145613174596097,0.312388783211634,0.3101744047901915,0.3107149294574532,0.3110463133483391,0.3123264259773552,0.3141901362387636,0.3153567062349647,0.3164829648840273,0.3172533875036274,0.3184463684463684,0.3195585818267198,0.3199041314768318,0.324833947177889,0.3289759585056424,0.3322610111600937,0.3347800264973274,0.3398146175154485,0.3419957108616122,0.3444877377950951,0.3468596292092319,0.3501304244723737,0.3540039810136273,0.3589379813538711,0.3596370635138851,0.358758144883097,0.0,2.693036328835373,55.23393188038812,166.0577757787106,246.44186762742348,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95778,44888,424.1161853452776,5967,61.02654054166927,4694,48.43492242477395,1883,19.24241475077784,77.38146625236273,79.70420512209708,63.35451413110488,65.06768897708872,77.14689846118165,79.47322086589485,63.26846050709228,64.9858580668418,0.2345677911810781,230.98425620223395,0.0860536240125995,81.83091024692146,177.66474,124.48663474978136,185496.1682223475,129973.91337236251,379.37086,247.06497419333903,395491.4907390006,257353.41539115357,380.71917,184.36544318929705,394239.491323686,189924.03832579768,2691.36044,1235.4445545384535,2778190.6492096307,1258096.3838652435,1123.64353,499.7680499688356,1157904.4352565303,506627.0867052497,1841.50664,763.3717614720791,1884089.95802794,763807.554593988,0.37874,100000,0,807567,8431.644010106704,0,0.0,0,0.0,32378,337.4261312618764,0,0.0,34724,359.27874877320465,1504674,0,53999,0,0,7079,0,0,85,0.8874689385871494,0,0.0,0,0.0,0,0.0,0.05967,0.1575487141574695,0.3155689626277861,0.01883,0.3465536542459619,0.653446345754038,24.29019429167483,4.301441836575741,0.3065615679590967,0.2449936088623775,0.2243289305496378,0.2241158926288879,11.302172252677211,5.8171682681719865,19.80623162469547,12073.338093812206,53.11030390376757,13.673536055925505,16.428482372089093,11.626484045564464,11.381801430188526,0.568172134639966,0.7930434782608695,0.7102154273801251,0.5859449192782527,0.1102661596958174,0.7569279493269992,0.937046004842615,0.8784810126582279,0.7654320987654321,0.1698113207547169,0.4986884290294375,0.7123473541383989,0.646551724137931,0.5320987654320988,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025717352125225,0.0047326604240139,0.0071819113216542,0.0092412056219026,0.011184886168363,0.0135594600647433,0.0156861545988258,0.0178267125174746,0.0203923171230077,0.0226816991324275,0.024833012334549,0.0271884105552591,0.0293501048218029,0.0315411300865734,0.0336608348711815,0.0357836252478519,0.0379258247444016,0.0398946648143156,0.0415532608921485,0.0435955102975781,0.0575337605142869,0.0713822329182797,0.0840272679601468,0.096816920359936,0.1089828060595199,0.124176370424427,0.1361625847237396,0.1478083154152385,0.1587542321289344,0.1690805201487977,0.1824210129716346,0.1939983779399837,0.2046779174459571,0.2145068311838895,0.2236404850458856,0.2344624317166949,0.2438937262781871,0.2526161809384494,0.2603635620451217,0.2677570575492567,0.2746725952686977,0.2815613548288902,0.2879098239340729,0.2923736937973348,0.2969152295360699,0.3035342523128472,0.3091939074106495,0.3133946960258333,0.3176296910206936,0.3212204319506342,0.320507473529847,0.3188720471629402,0.3173838985317511,0.3165411468798335,0.3158802366723159,0.3138804644180988,0.3113226944185237,0.311210527178277,0.3118956254796623,0.3126858363749666,0.3132791327913279,0.3139310344827586,0.3141202542231142,0.3144683609378841,0.3166146458583433,0.3181226910869452,0.31865196635599,0.3226392631117238,0.3268665079142737,0.3306067344345616,0.3345773974784943,0.3372837416009735,0.3402834134465322,0.3451688449044345,0.348235294117647,0.3500532355376789,0.3490809661248671,0.3534152730203506,0.3592552026286966,0.352963671128107,0.0,2.149520509548966,55.30818179409381,175.48160886114917,254.95412869557012,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95752,45022,426.9466956303785,5820,59.49745175035509,4498,46.348901328431786,1733,17.701980115297854,77.31912755708531,79.66852090207158,63.32066847763053,65.05818895019283,77.10388522547811,79.4560669633234,63.23945838367055,64.98073758554094,0.2152423316072003,212.4539387481832,0.0812100939599815,77.45136465189262,178.90268,125.26011476905938,186838.938090066,130816.56192148404,376.44456,246.1405866570242,392538.42217394937,256454.4337204697,380.34799,184.71672816179012,392975.7080792046,189747.41662568017,2563.58696,1182.3355121816192,2644257.1225666306,1201907.7197578435,1056.06103,470.5596864356612,1090289.0174617765,478917.5502228824,1699.49474,715.403390239693,1738791.2524020388,716690.5717337454,0.37968,100000,0,813194,8492.67900409391,0,0.0,0,0.0,32172,335.3559194586014,0,0.0,34610,357.29801988470217,1498122,0,53829,0,0,7170,0,0,80,0.8250480407719943,0,0.0,1,0.0104436460857214,0,0.0,0.0582,0.1532869785082174,0.297766323024055,0.01733,0.3428384136348738,0.6571615863651262,24.17163728877121,4.311921665388317,0.3128056914184082,0.262338817252112,0.203201422854602,0.2216540684748777,11.118515987898634,5.71304422288323,18.34124397036075,12125.816732342562,51.06487277108884,14.336050226862415,15.847481927490763,10.07692014767447,10.804420469061176,0.5598043574922188,0.7805084745762711,0.7029140014214641,0.5536105032822757,0.1023069207622868,0.7391646966115051,0.9098712446351932,0.862533692722372,0.7534246575342466,0.136150234741784,0.4893155775781976,0.696078431372549,0.6457528957528957,0.4906474820143885,0.0931122448979591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050835957832,0.0043575634126815,0.0063714946633659,0.0086026529078388,0.0106883892160152,0.0129133441284001,0.0149579403517716,0.0171139157782951,0.0193247581849041,0.0213959583137118,0.0235510032501819,0.0255362405150373,0.0276440824386029,0.0294726649016719,0.0316133758421807,0.0337742868954113,0.0357982131950267,0.0379029915771129,0.0400270171974853,0.0422976773252786,0.0566707376903725,0.071477886104021,0.085030731471964,0.0980357105301899,0.1101752092601573,0.1250938388826036,0.1380224628535672,0.1486774063118469,0.1597454324125191,0.1694324735747518,0.1824564426162427,0.1943139758879677,0.2065957493093171,0.2164508791881725,0.2263229128841646,0.2357345383661173,0.2449906790350847,0.2549253462650629,0.2633628077503717,0.2705460625773054,0.2771931043265835,0.2836539024361691,0.2890789754282871,0.2950115229498751,0.2997859193305113,0.3051924809617259,0.3106425098982609,0.3153784413896781,0.3191831442463533,0.3237690306735505,0.3228870535293245,0.3216989182196041,0.3207906275112433,0.3196308724832215,0.3187815750371471,0.3162135253120931,0.3148544012160942,0.3144137048341046,0.3147361416798894,0.315005359056806,0.3156483755460152,0.3158341727400209,0.3166369640423524,0.3190679768113347,0.3205569048019814,0.3208978570311278,0.3220865009538453,0.3255938000062753,0.3287637613070612,0.3320690608826202,0.3354344277163069,0.3382454280413464,0.3396463852010319,0.3433381579949722,0.3486229908826017,0.3525205158264947,0.3548778637536034,0.3558912386706949,0.3598795840175151,0.3642559636501325,0.0,2.439265815392543,55.44851955668516,162.43674072178857,242.0802792747515,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95681,45052,427.0126775430859,5959,61.01524858644872,4673,48.24364293851444,1824,18.666192870057795,77.34181859432726,79.72273120144921,63.3271521787835,65.08480519107698,77.11785641553861,79.5032521429889,63.24406608334335,65.00664884948523,0.2239621787886534,219.47905846030835,0.0830860954401515,78.15634159175033,178.77112,125.20210239660916,186840.77298523215,130853.6725124206,379.53995,246.92911352736647,396071.4561929745,257477.7669537285,384.10371,186.48747930987923,397627.585414032,192003.67157212857,2680.9548,1232.7948037340443,2768063.837125448,1254708.5776622875,1110.65755,492.8598824213452,1143947.481736186,498361.3393719972,1788.0718,743.7955970540723,1830999.278853691,743253.6842747784,0.38047,100000,0,812596,8492.762408419645,0,0.0,0,0.0,32405,338.0608480262539,0,0.0,35061,362.6843364931387,1500546,0,53818,0,0,6948,0,0,78,0.8152088711447414,0,0.0,2,0.0209027915678138,0,0.0,0.05959,0.1566220726995558,0.3060916261117637,0.01824,0.3403950302644154,0.6596049697355846,24.277390199825955,4.28379164844239,0.3145730793922534,0.2512304729295955,0.2142092873956773,0.2199871602824737,11.400590139048784,5.916668988387294,19.279154976739893,12126.600058216913,52.99000235374584,14.252483969182904,16.426718077000274,11.05412729538718,11.256673012175504,0.5758613310507169,0.8160136286201022,0.6945578231292517,0.5954045954045954,0.11284046692607,0.7400635930047694,0.9252747252747252,0.8767123287671232,0.726027397260274,0.1415525114155251,0.5153733528550513,0.7468706536856745,0.6343891402714932,0.5588235294117647,0.1050679851668726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999756964486,0.0045004409215767,0.0065846210038249,0.0088866770937011,0.0109814129417985,0.0129917732345035,0.0150342985862662,0.0171391239549625,0.0192765666043193,0.0213330057631872,0.0234086621277991,0.0253676772656314,0.0274997170810999,0.0298315214591169,0.0318525246686759,0.0340922020293962,0.0362490803013502,0.0384371787816805,0.0408751378456544,0.0429112063303412,0.0573843276955381,0.0713702330841239,0.0847258376018137,0.0975566125094705,0.1098897621182551,0.1252948580978876,0.1375834297174266,0.1487225888865233,0.1592426784054363,0.1696035006059566,0.1819738514226635,0.193605261165374,0.2055880625584582,0.2153398779981196,0.2253412678333755,0.236226924908364,0.2454076735932861,0.2538715010290264,0.2625028363966417,0.2699543148951762,0.2774315151655315,0.2838101696500602,0.2902150003547861,0.2965225620201003,0.3008305809209248,0.3059833904236181,0.3102037240965061,0.314825888370081,0.318920739368661,0.3229666965746556,0.3215675188131874,0.3209820507530431,0.3195002042569975,0.3186905226068246,0.3184483603271923,0.3155379950381328,0.3139062376472448,0.3150042625745951,0.3151075452372823,0.3159461097052429,0.3169000933706816,0.3174634453947109,0.3183423543917577,0.318773587012349,0.3199731034317139,0.3208211602671118,0.3228362164780985,0.3256391710431146,0.32945109078114,0.332684206342898,0.3372140802629776,0.3406698564593301,0.3436559679037111,0.3495706360665704,0.3505414488424197,0.3521527695409797,0.3538673188627331,0.3629421221864952,0.3604298704877376,0.3524464831804281,0.0,2.2857391705590384,54.96489472136116,176.74773657625852,252.32905247388808,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95666,45373,431.1981268162148,5794,59.16417536010704,4558,46.92367194196476,1796,18.36598164447139,77.38307130315455,79.75925130272948,63.34642469116329,65.09726405711027,77.14986810457383,79.52803438133661,63.258661587706506,65.01276511391237,0.2332031985807248,231.2169213928712,0.0877631034567869,84.49894319790019,178.86528,125.30533686136808,186968.494553969,130982.10112408597,380.82344,248.9233472340622,397398.3442393327,259525.1085208149,381.78305,184.87109636268224,393993.1846214956,189393.98102303545,2628.493,1219.4572513939802,2709800.096167918,1237266.6525154605,1089.38497,484.72664345041534,1123009.240482512,491110.9417893737,1765.53022,755.9119103047792,1807812.3471243705,759556.421900088,0.38169,100000,0,813024,8498.56793427132,0,0.0,0,0.0,32531,339.3159534212782,0,0.0,34847,359.0930947253988,1496141,0,53735,0,0,7213,0,0,73,0.7630715196621579,0,0.0,0,0.0,0,0.0,0.05794,0.151798579999476,0.309975837072834,0.01796,0.3414714615638403,0.6585285384361597,24.040756685080343,4.35560918369756,0.3012286090390522,0.2492321193505923,0.2187362878455463,0.2308029837648091,10.9801078099841,5.446726214270025,19.1861198128263,12127.05777303523,51.93414091972683,13.720378586651584,15.541279146647966,11.12265974565234,11.549823440774956,0.54870557261957,0.7790492957746479,0.6817188638018936,0.5646940822467402,0.1112167300380228,0.710236220472441,0.9044289044289044,0.8449197860962567,0.7148936170212766,0.1293103448275862,0.4863138686131387,0.7029702970297029,0.6206206206206206,0.5183727034120735,0.1060975609756097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890750432766,0.0047210909164589,0.007038468169694,0.0092509850115764,0.0115499974581871,0.0138644298991215,0.0161267304124447,0.0181691981055038,0.0202183334696213,0.0220097457106588,0.0239501312335958,0.0259593563558321,0.0281491689978607,0.0303551563594413,0.0324138073328243,0.0343234528091281,0.0362781253884722,0.038163739776643,0.0401730467246955,0.0421877605469401,0.0572473230608513,0.0713904331166179,0.0846333812436396,0.0976761303890641,0.1104152168870331,0.1255722487127707,0.1374218170253366,0.1492294438594812,0.1595398422743231,0.1698117251208195,0.1820754513956141,0.1940458295935029,0.2044550257647903,0.2160519469161984,0.2256300810772158,0.2366604239851948,0.2460459297649897,0.2552237629115649,0.263821378276473,0.2704734833289396,0.2763770229909009,0.2836083041579336,0.2898662338123955,0.2952104359931354,0.3004718816890445,0.3052296532070024,0.3102161444636461,0.3145014451787056,0.3196868965695994,0.3239481260399884,0.323099493916227,0.3209223027319849,0.3196059113300493,0.3182566502036218,0.3171332719769617,0.3143272838655333,0.3119588444796201,0.3122087298982606,0.3132167700695619,0.3141872589630053,0.3155064236629817,0.3163283388135226,0.3172829968052452,0.3181312074110364,0.3196213877668092,0.320715635761075,0.3220971664498614,0.3254718452659491,0.3285853931015221,0.3312204724409449,0.3342837746096402,0.3363464368299348,0.3402782109662529,0.3377951571664912,0.3381414701803051,0.3396094839609484,0.3432746793915896,0.3425004876145894,0.3383097840575846,0.349171270718232,0.0,2.81592531392226,55.07103200737857,171.04794914365522,242.25334285228865,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95694,44982,425.7424707923172,5892,60.3590611741593,4624,47.73549020837252,1857,19.01895625640061,77.3960056150407,79.78036411885567,63.35197710932333,65.11319558670245,77.15844600378658,79.5437574850315,63.26412104287458,65.02775830463898,0.2375596112541274,236.60663382416655,0.0878560664487508,85.43728206346657,181.01292,126.6708310447353,189158.06633644743,132370.7139891062,380.69771,248.04398814452395,397254.8331138838,258632.0126073985,379.92033,184.20466957729533,393140.9074759128,189495.31741403876,2655.38544,1232.9200217449345,2743389.9304031604,1257085.771593796,1097.708,492.0893504050873,1130786.4233912262,497984.2328393567,1821.57572,768.428061252841,1868242.5648421007,774170.9109015509,0.37894,100000,0,822786,8598.093924383973,0,0.0,0,0.0,32558,339.61376888833155,0,0.0,34732,359.02982423140423,1492966,0,53461,0,0,7155,0,0,72,0.7523982694839801,0,0.0,1,0.0104499759650552,0,0.0,0.05892,0.1554863566791576,0.315173116089613,0.01857,0.3299220272904483,0.6700779727095516,24.395700175253054,4.376125807590193,0.317257785467128,0.2355103806228373,0.2244809688581314,0.2227508650519031,11.28380467291244,5.864279111624647,19.792439566762507,12076.850564438117,52.568401686391546,13.062326339353312,16.767251275248405,11.45565181258944,11.283172259200398,0.5661764705882353,0.8117539026629935,0.7014314928425358,0.571290944123314,0.1087378640776699,0.7273419649657273,0.9264705882352942,0.8613861386138614,0.7537878787878788,0.1265822784810126,0.5022651766837813,0.7430249632892805,0.6406396989651929,0.5090439276485789,0.1034047919293821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019348237892156,0.004562876437306,0.0070745620267554,0.0092456184912369,0.0115252375236506,0.0137966847228444,0.0159058698777491,0.0180910473818007,0.0201701118403565,0.0225081373211324,0.0246975599753947,0.0271260921794305,0.0293724417384865,0.0317563322105826,0.0337594535755924,0.0355274854768352,0.0375372886973815,0.0392966868720418,0.0414526092472805,0.0434691984617469,0.0582496892723227,0.0715788151822434,0.0850184594730659,0.0977994595901717,0.1095897630491609,0.1251057529610829,0.1367991088005941,0.1480326193416514,0.1597175485263169,0.1692461147398564,0.1818054538405204,0.1940679524484299,0.2053229873065553,0.2151976215459951,0.2243991468214702,0.2341344078284645,0.2439807741633304,0.2531201905254052,0.2616927260367097,0.2693587295780122,0.2755845505455805,0.2823736807695899,0.2889235348309829,0.2934336607132176,0.2985391283263623,0.3031122474064605,0.3076299308864991,0.3127322064846632,0.3164047379422466,0.3206207259337191,0.3196404614971827,0.3177194714042879,0.316381720354579,0.3158016147635525,0.3154041115178823,0.3132228248414941,0.3115727940595623,0.3129228299506937,0.3131809114623293,0.3130365093499554,0.3130620104316614,0.3130280649926145,0.3136980872322229,0.315028901734104,0.3166219325153374,0.3180672814651253,0.3183274273564848,0.3205836209601506,0.3225749929913092,0.3253385220188222,0.3287176674892605,0.3317724684723035,0.3346183013144591,0.337530525030525,0.3390761075350246,0.3410991636798088,0.3414634146341463,0.3517690117934119,0.3562362030905077,0.3473887814313346,0.0,2.239578180461088,57.52305805589601,166.85558716153758,249.0481543847841,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95819,44996,425.76107035139165,6011,61.50137237917323,4789,49.36390486229244,1877,19.181999394692077,77.38566316619061,79.7071440344094,63.36611244363343,65.08424845244362,77.15271494443206,79.47482737631158,63.28017521018516,65.00086274964929,0.2329482217585479,232.3166580978153,0.0859372334482699,83.385702794331,179.13588,125.54257893826554,186952.35809181893,131020.5480523336,386.29732,251.0465795505764,402551.8112274184,261399.4923246709,391.44711,190.1546428896839,404488.4939312663,195329.5165800496,2764.84144,1279.4942712016175,2851760.506788841,1301649.2568631885,1133.68453,502.0458252803452,1166880.3681941994,507709.0930772711,1835.26206,768.5501453875693,1878671.0986338824,772087.6929752447,0.37955,100000,0,814254,8497.834458719042,0,0.0,0,0.0,33007,343.83577369832705,0,0.0,35763,369.1334703973116,1497506,0,53755,0,0,7008,0,0,81,0.8453438253373547,0,0.0,0,0.0,0,0.0,0.06011,0.1583717560268739,0.3122608550989852,0.01877,0.3283060803302111,0.6716939196697889,24.23689737757615,4.327104797023797,0.3257465024013364,0.2317811651701816,0.2221758195865525,0.2202965128419294,11.198660126085649,5.903686838727461,20.042266693025887,12083.619582163865,54.604583325652605,13.53745973000076,17.674402634903835,11.760784212246248,11.631936748501769,0.5658801419920652,0.8081081081081081,0.6897435897435897,0.5704887218045113,0.1232227488151658,0.75,0.9455782312925172,0.8506024096385543,0.7403100775193798,0.1407766990291262,0.4958201210723551,0.7174887892376681,0.6314410480349345,0.5161290322580645,0.1189634864546525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295149544731,0.004541629917987,0.0070637667333123,0.0094284030642309,0.0115850929655396,0.0138886060482639,0.0160637658114953,0.0181753240126543,0.0204200521232561,0.022462596451012,0.0247286813761157,0.0267476829280809,0.0288078108941418,0.0308903757076685,0.0331002907876013,0.035159477772269,0.0370623292773777,0.0391057399307642,0.0410453960210989,0.0430272002663836,0.057766326967007,0.0715435596161485,0.0852785493422776,0.0977096028577432,0.1101900227521698,0.125623151668779,0.1382126739973304,0.150020192573384,0.1614107308541384,0.1709184766311099,0.1834419424909134,0.1953400952720438,0.2065285829045355,0.2169224388220655,0.2259903137595132,0.2369090265799832,0.2465828199672485,0.2544592712405086,0.2625760338910096,0.2690922807859813,0.2753057477105011,0.2814337720526463,0.2878219200717607,0.2939848006882707,0.298879941878065,0.3041721919355631,0.308785932531022,0.3130823941072809,0.3173617921849997,0.321399907900796,0.3194731890874882,0.3177291520720869,0.3162484527962192,0.3146148515994919,0.3128061997090174,0.3109297732596414,0.3087266392144441,0.3085263676688023,0.3083032367389555,0.3092069964588475,0.3108237278605567,0.312820309871975,0.3140627957351055,0.3135912742941784,0.3140144468871548,0.3151151518327351,0.3157789289905263,0.3191636971397937,0.3221881282403978,0.3261588744071106,0.3298474746552196,0.3314899500159523,0.3341527987897125,0.3360474849707023,0.3361694082057099,0.3372633083244015,0.3396342400491778,0.3440097303871883,0.3408902405308266,0.3389441469013007,0.0,2.443156830373874,57.5409674938173,183.36560973002852,253.8369674273113,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95767,45389,430.05419403343535,5937,60.69940584961417,4704,48.54490586527719,1783,18.304844048576232,77.37657405990127,79.72159799274051,63.3458979718325,65.07911934704119,77.14412769474515,79.49077656088998,63.258497985776096,64.99489794987588,0.2324463651561217,230.82143185052928,0.087399986056404,84.22139716530808,177.9008,124.5733627852622,185764.1985234997,130079.6336788896,378.87453,247.0100871823039,394979.4814497687,257286.49449424536,383.99766,186.69024868832983,397242.0457986572,192087.5326894442,2707.52892,1261.3171758392707,2796750.864076352,1286615.0718298275,1082.2893,489.5789958727711,1113471.7073731036,494572.5701990556,1749.95054,752.0263544736927,1797678.4278509298,758358.6596170324,0.38266,100000,0,808640,8443.827205613625,0,0.0,0,0.0,32281,336.483339772573,0,0.0,35088,362.6196915430159,1504180,0,54013,0,0,6981,0,0,73,0.751824741299195,0,0.0,2,0.0208840205916443,0,0.0,0.05937,0.1551507865990696,0.3003200269496379,0.01783,0.3362193362193362,0.6637806637806638,24.14682149867736,4.2784942862422,0.3254676870748299,0.2468112244897959,0.2153486394557823,0.2123724489795918,11.173718916910827,5.658108045377037,19.371307174424064,12237.738753761018,53.75979245340058,14.035498127300071,17.380217371783825,11.221770378048529,11.122306576268148,0.5680272108843537,0.7855297157622739,0.6864794252122796,0.5932872655478776,0.1081081081081081,0.7463823305407464,0.901565995525727,0.8740740740740741,0.763265306122449,0.1666666666666666,0.498967856089649,0.7128851540616247,0.6190053285968028,0.5390625,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028461460548971,0.0050887489989761,0.007396659834818,0.0094579218984924,0.0116853795460092,0.0138593293347318,0.0160495967207431,0.018305631559603,0.0205072634150829,0.0227656590678772,0.0248339619547392,0.0270067747895709,0.0288366641993585,0.0306385169927909,0.0326933591936532,0.0347090865866641,0.0366865130727413,0.0390879478827361,0.041022122421823,0.0429580104973756,0.0583108940238378,0.0726804986195934,0.0868225180836565,0.1000588519662862,0.1123429727678947,0.1274681831635026,0.1394069189257959,0.1505075439977868,0.1605241517776093,0.1710293502621899,0.183558073410305,0.1961070717562537,0.2075155576831019,0.2178722659284628,0.2276290294169455,0.2377796005231772,0.2472168563038065,0.2561895115912672,0.2641535127038344,0.2721526958791807,0.2795526047931896,0.2861418317005307,0.2926563959468886,0.2985188998910427,0.3033699678183253,0.308505526189332,0.3135294558724287,0.3172522419531031,0.3213371266002845,0.3255844618204354,0.3237698305996235,0.3235577055218096,0.3222122200967706,0.3206196133912717,0.3184840030866029,0.3165205684825676,0.3143435557594066,0.3144824194738136,0.3158146283178288,0.3167919888813656,0.3175034175389974,0.3182661194854392,0.3193505868569157,0.3199055300565928,0.3224313631459057,0.3239194882196911,0.32374918316902,0.327501486651435,0.3312913501592747,0.3337160503602819,0.3367272727272727,0.3376939780731953,0.3399499060738885,0.3423621094045547,0.3446216997854277,0.3481176470588235,0.3489780469341408,0.3539348171701112,0.3582613390928725,0.3633633633633634,0.0,2.2395054906817102,57.47807665294624,178.25607056865215,250.214964660514,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95764,44787,424.5541121924732,5828,59.78238168831712,4648,48.08696378597386,1827,18.79620734305167,77.3313489084019,79.69786887324655,63.31030609897547,65.06343822619492,77.11059480647971,79.47527324641456,63.22965607243568,64.98371207335113,0.2207541019221963,222.59562683198908,0.0806500265397929,79.72615284379003,179.59634,125.75171374679564,187539.17964997285,131312.92981748207,380.97467,248.2493515588796,397358.24526962114,258764.42716901767,382.796,185.7238951007949,396565.212397143,191563.6335839948,2655.98292,1226.693939232278,2749902.050875068,1257604.1077688048,1106.07389,495.1951871411726,1146405.162691617,508505.00933667365,1783.10716,740.5384564894212,1835909.2769725577,751349.396242405,0.37751,100000,0,816347,8524.508165907857,0,0.0,0,0.0,32658,340.5350653690322,0,0.0,34978,362.1089344638904,1492739,0,53608,0,0,7034,0,0,58,0.605655569942776,0,0.0,0,0.0,0,0.0,0.05828,0.154380016423406,0.3134866163349348,0.01827,0.3431661750245821,0.6568338249754179,24.20923098137296,4.310676632925994,0.3207831325301205,0.241394148020654,0.2252581755593803,0.212564543889845,11.399390662951427,6.033376746625896,19.402087413463043,12036.344446411576,53.03202859274701,13.705522274999694,16.862201290680986,11.654184610892036,10.810120416174314,0.5679862306368331,0.785204991087344,0.6948356807511737,0.5778414517669532,0.1194331983805668,0.7336448598130841,0.8886255924170616,0.8507462686567164,0.768,0.1571428571428571,0.504756242568371,0.7228571428571429,0.6372819100091828,0.5181932245922208,0.1092544987146529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024620310236172,0.0046340894571929,0.006780005074854,0.0090225563909774,0.0112718468330993,0.0135450295851961,0.01556015539762,0.0177971553141305,0.0199347441418036,0.0221644099391605,0.0241220872989826,0.026300919504803,0.0283929527024245,0.030330825517881,0.0322560667210288,0.0343194532049757,0.0359827696895644,0.038093162739055,0.0400823267707532,0.0422338641642277,0.0571288399912318,0.0709636915350005,0.0846296665372955,0.097271436832974,0.1093891665085289,0.1249180397216523,0.136577291584878,0.1473241386655306,0.1583317304609861,0.1682277082193397,0.1800881475015894,0.1916130708763724,0.2042011319111885,0.2140105500470593,0.2234220549061048,0.2333525447774428,0.2424553686067413,0.2508215539749707,0.2593038032132159,0.2669477446925518,0.2744528419809955,0.2811299990634073,0.2878066121578386,0.293125390193536,0.298286159123253,0.3026783071914767,0.3081920020026285,0.3129303651660366,0.3172843827376554,0.3213446664730882,0.3204675842378862,0.3183099366157484,0.3177155881980499,0.3167951049152885,0.3153322759009176,0.3124914028947408,0.3108440963779328,0.3116349162148438,0.3125287925062703,0.3136699617062962,0.3151598975758368,0.3149974359985799,0.3163350610265842,0.3168619573708292,0.3181086857334966,0.3183226175911706,0.3186376161122631,0.3227671138198611,0.3256909768619452,0.3270983404306125,0.330950971912414,0.3332099809684923,0.3388673098609197,0.3417070217917675,0.3445300176301382,0.3454714136611388,0.3485142601164701,0.3546875,0.3611111111111111,0.3684601113172542,0.0,1.686564063501154,56.91540197208726,176.47329161871835,247.47955369523248,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95496,44773,426.6670855323784,5854,60.09675797939181,4553,47.164279132110245,1747,17.93792410153305,77.22623088476638,79.7154173778986,63.24095407219974,65.07707641376989,77.00575759612698,79.49537971311065,63.15915668225113,64.99780179702226,0.2204732886393969,220.03766478795228,0.0817973899486119,79.27461674762526,178.76386,125.19655396086029,187195.12859177348,131101.3591782486,378.42983,246.7791826821112,395760.77532043227,257900.9201245196,377.09204,182.8763130715132,392085.5219066767,189183.13561082672,2598.46852,1192.8804383960453,2693465.234145933,1221583.6039164425,1059.42771,461.5516966291288,1099131.963642456,473057.5590905677,1708.56256,718.2711221124605,1756531.3939850884,724497.4386115108,0.37704,100000,0,812563,8508.86948144425,0,0.0,0,0.0,32318,337.8780263047667,0,0.0,34350,356.9678311133451,1493437,0,53605,0,0,7060,0,0,80,0.8272597805143671,0,0.0,0,0.0,0,0.0,0.05854,0.1552620411627413,0.2984284250085411,0.01747,0.3453296253885163,0.6546703746114837,24.093332156673963,4.288478166334366,0.320667691631891,0.253898528442785,0.2090929057764111,0.2163408741489128,10.97559892162327,5.665346149578864,18.630963815639237,12003.576069547067,51.880546230571376,14.00260892267317,16.622220326183406,10.532464810195192,10.7232521715196,0.5679771579178564,0.8027681660899654,0.6835616438356165,0.582983193277311,0.1065989847715736,0.7399527186761229,0.9172259507829976,0.8452088452088452,0.7130044843049327,0.1354166666666666,0.5015225334957369,0.7306064880112835,0.6210826210826211,0.5432098765432098,0.0996216897856242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0045239230324484,0.0063861758076634,0.0087137773258769,0.0108731063691154,0.0128726494419813,0.0150103572485433,0.0170845850448572,0.019008256007857,0.0210651421077436,0.0230538676301527,0.0252827472753444,0.0272769397106523,0.0293432072280209,0.0314924833393604,0.0334938137391934,0.0355494237611643,0.0375463872516917,0.0396832838464343,0.0413812546988555,0.0557788523938118,0.0694846615468546,0.0827277985172722,0.0960034569254442,0.1082083637170666,0.1229993004176294,0.1350621458114042,0.1467544383748719,0.1575891948630614,0.1679691279063518,0.1806864682192638,0.1921512479255475,0.2035195603820489,0.2134643002006161,0.223304720082971,0.2338207840696951,0.2433496655256505,0.25223184093061,0.2601808153749929,0.2679081615090702,0.2746446211998237,0.2814738396970727,0.2878714192515272,0.2932277522770421,0.2983657701353936,0.3033477201617591,0.3077435323976931,0.3120728638401696,0.3164616164109493,0.3205542175052272,0.3187380135598714,0.3174611927541426,0.3167376767021246,0.3163426093241778,0.3148668958231031,0.3133820100625843,0.3113120736157385,0.3111773030971266,0.3118629550321199,0.3131958615257939,0.3139646147207264,0.3157217769862471,0.3168374939738833,0.3175586518462192,0.3180486868007874,0.3207390059849076,0.320589406610912,0.3218513517756775,0.324180256005611,0.3278194295688048,0.332133254340792,0.335773004508088,0.3397680977749922,0.339927514346119,0.338826143306795,0.3433096541283335,0.3407396134530512,0.3432896890343699,0.3502902958252695,0.3623853211009174,0.0,1.999509191729748,56.230957783917496,164.37185403401838,249.62943835644415,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95697,45205,429.0521123964178,5850,59.82423691442783,4611,47.46230289350763,1767,18.025643437098346,77.36399481233721,79.74822099345222,63.33329461681414,65.09726199831651,77.14289568081824,79.53232953308965,63.25107309532702,65.01999168159867,0.2210991315189687,215.89146036257037,0.0822215214871207,77.27031671784346,179.5387,125.75500237351716,187611.39847644127,131409.32565651715,382.06755,249.50789791032045,398528.971650104,260008.7964202853,390.35885,189.0395056083813,403414.4121550309,194074.3999727969,2649.03176,1224.8917863142003,2727249.171865367,1239072.9764926806,1090.80947,485.89442554916127,1122632.9143024336,490532.5296807449,1727.97964,724.7975176146305,1764140.1715832262,721488.0553652861,0.37942,100000,0,816085,8527.790839838239,0,0.0,0,0.0,32600,339.9166118060127,0,0.0,35598,367.58728068800485,1494069,0,53616,0,0,7111,0,0,68,0.6896767923759365,0,0.0,1,0.0104496483693323,0,0.0,0.0585,0.1541826999103895,0.302051282051282,0.01767,0.328,0.672,24.359372183973843,4.194750267747151,0.3231403166341358,0.2400780741704619,0.2194751680763391,0.2173064411190631,11.283434535393496,6.12389718432689,18.8162971244834,12111.101789689308,52.40330681927262,13.302309663830307,16.903340513093575,11.208704732966495,10.988951909382244,0.5723270440251572,0.8093947606142728,0.7026845637583893,0.5731225296442688,0.1157684630738523,0.7531746031746032,0.9339853300733496,0.8582089552238806,0.7931034482758621,0.1751152073732718,0.5043270665472993,0.7363896848137536,0.6452205882352942,0.5076923076923077,0.0993630573248407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023606650388547,0.0047156895555082,0.0068931210915292,0.0091977153078439,0.0115183459166853,0.0134584428551052,0.0157901179158676,0.0179235262878385,0.0203634950344164,0.0224864067827849,0.0242939475357384,0.0266614630940032,0.0286772269080436,0.030818847822279,0.0331802466587543,0.0349262805268926,0.0366598988978205,0.0385102320368602,0.0404677754677754,0.0424164122654385,0.057242819843342,0.0712192262602579,0.084906155250375,0.097180595429641,0.1098977548223885,0.1251546326351515,0.1373700954400848,0.1482159194876486,0.159060094588391,0.169274796887393,0.1820431970556267,0.1940051489518205,0.2052651037362446,0.2154315520125971,0.2258018390602314,0.2371205915561557,0.246448087431694,0.2549888138146578,0.2629680463707619,0.2708981871452115,0.2780494572191586,0.2838475923328658,0.2892669537646112,0.2951267430159567,0.3004820242590546,0.3053438873364273,0.3094812388251916,0.3136440430369777,0.3177771748258976,0.3217726650521217,0.3206591812614161,0.3183902050676696,0.3176741637750586,0.315118659707604,0.3150479971557241,0.3130471919709587,0.3106202637341861,0.3110661488757628,0.3111749116607774,0.3115541249488716,0.3133885038575778,0.3151964067609629,0.3164607163730483,0.3179301723368158,0.3192657032616771,0.319310219073172,0.3201321071662443,0.3250634338877925,0.3279170752206191,0.3319756406200569,0.3335295715967756,0.3380274261603375,0.3415355569540592,0.3449538485010298,0.3455541906831711,0.3528362468783446,0.3573411474398519,0.3648648648648648,0.3627260083449235,0.3668869024485037,0.0,2.738520825637057,54.631700984262665,173.88026442530577,247.3011472074845,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95668,45137,427.6665133586988,5765,59.04795751975582,4472,46.14918258978969,1765,18.072918844336662,77.31725194233033,79.72690716943818,63.30264576078415,65.08552503827903,77.09393493785588,79.50542804202364,63.21973928657454,65.0059020372965,0.2233170044744525,221.4791274145398,0.082906474209615,79.6230009825365,179.26238,125.56016513745094,187379.6671823389,131245.73016834358,381.43656,249.32042491718053,398115.0018815069,260017.6222309548,379.84764,184.06488999981303,393607.4026842832,189653.18658789503,2584.00612,1187.2524510869189,2668820.6714888997,1208861.8237120314,1060.70534,464.39580741459866,1092099.6885060836,468830.8138087458,1726.99192,725.4024391859064,1770066.8562110632,727657.0616134165,0.37903,100000,0,814829,8517.257599197223,0,0.0,0,0.0,32593,340.0719153740017,0,0.0,34618,358.3747961700882,1494549,0,53636,0,0,6994,0,0,64,0.6689802232721495,0,0.0,0,0.0,0,0.0,0.05765,0.1520987784608078,0.3061578490893322,0.01765,0.3426275217319993,0.6573724782680006,24.29924000668389,4.266529685551989,0.3144007155635062,0.2419499105545617,0.2202593917710197,0.2233899821109123,10.861687797879474,5.643430923588461,18.847891827354157,12108.750765963385,50.97653192109284,13.232904743601662,15.914721607159892,10.992185231577285,10.836720338754011,0.5623881932021467,0.7902033271719039,0.6735419630156472,0.6,0.1221221221221221,0.7344913151364765,0.9044117647058824,0.8631284916201117,0.7615062761506276,0.1372549019607843,0.4986209010113392,0.7210682492581603,0.6087786259541985,0.5482573726541555,0.1182389937106918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002411176512304,0.0047761496729706,0.0070633366146726,0.0092979300673718,0.011436129623035,0.0134969950086584,0.0157917287250321,0.017979731938542,0.0205336498127724,0.0227032897230731,0.0251564583974556,0.0271172855997862,0.0291414042636416,0.0312287357980906,0.0332452027348026,0.0351163993792033,0.0369871249974084,0.0392452124787105,0.0413051168404186,0.0432398623996664,0.0575870282920305,0.0711017100013613,0.0838826839099764,0.0962461072300311,0.1085229610406051,0.1244946769107033,0.1370790571304246,0.1486853455161177,0.1590552022658045,0.1687819845723052,0.181639951740779,0.1944811310541927,0.2064188233245543,0.2165593940190026,0.226787091089327,0.2370666725773561,0.2459998661043047,0.2541616052548702,0.2626444799854811,0.2700202635405099,0.2768413868098053,0.2840072024881322,0.2898953796629426,0.295726045123953,0.3009341934229868,0.306134523178563,0.3101187422579797,0.3138546023110071,0.318184170353696,0.3215716243280278,0.3204027044101241,0.3192401203280174,0.3171928147752509,0.3159033537684818,0.3149103122352836,0.3129579105484197,0.3099748373925841,0.3092260732571879,0.3091026931145639,0.3106360235168359,0.3123982713139137,0.314007851182609,0.3153759114910737,0.315514235909355,0.3170214815528369,0.3172264524877438,0.3171328571835073,0.3209327106904441,0.3259088043706661,0.3310519444554338,0.3357607755677939,0.3390972259056914,0.3418765743073048,0.3442723040525071,0.3459007145543437,0.3465439962255249,0.3515253717614594,0.3567381626871712,0.3640789829591561,0.3579502637528259,0.0,2.3277467355997845,52.86187711091918,172.90864717001895,238.13368546454373,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95861,45344,428.7666517144616,5837,59.64886658808066,4540,46.82822002691397,1737,17.807033100009388,77.4717338221379,79.75955280233124,63.40399372213196,65.0912231474117,77.25860506729539,79.54626205299628,63.32391278995876,65.01297211181519,0.2131287548425149,213.2907493349592,0.0800809321731961,78.2510355965087,180.53618,126.38987861869924,188330.97923034392,131846.81113351544,378.52626,246.7367008235728,394354.4715786399,256875.1836675736,381.28584,184.3794610462444,394444.2786951941,189769.1541948329,2598.85116,1195.614314837896,2681882.183578306,1218088.4664648774,1067.03993,471.0258508001386,1099839.42374897,478127.9019969436,1697.34474,714.5217068150038,1741138.1688069184,720076.0164978775,0.38027,100000,0,820619,8560.499055924724,0,0.0,0,0.0,32410,337.5512460750461,0,0.0,34858,360.2820750878877,1495698,0,53622,0,0,7160,0,0,39,0.4068390690687558,0,0.0,1,0.0104317710017629,0,0.0,0.05837,0.1534962000683724,0.2975843755353777,0.01737,0.3279973864750081,0.6720026135249918,24.390338686157296,4.241152279328692,0.3211453744493392,0.2392070484581497,0.2306167400881057,0.2090308370044052,11.050838426919984,5.760567699316208,18.221901265433228,12173.126628468905,51.18298557747063,12.881232013676016,16.54235141877546,11.435517556767207,10.32388458825195,0.5759911894273128,0.7707182320441989,0.700960219478738,0.6055396370582617,0.1285563751317176,0.7153225806451613,0.8916876574307305,0.8646616541353384,0.6965811965811965,0.119047619047619,0.5236363636363637,0.7010159651669086,0.6392823418319169,0.5793357933579336,0.1312584573748308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022876809393663,0.0043865425332536,0.0066215092579447,0.0088814453917986,0.0110661734818307,0.0133384883046588,0.0154734740444951,0.017564438641765,0.0198721483569225,0.0220895033952384,0.0243038130255328,0.026634258404611,0.0289691304124505,0.0310217100524745,0.0330371500432936,0.0350987701490071,0.0374136290289213,0.0394026385880548,0.0414083834324933,0.0434986211561475,0.0585677642691802,0.0726829880203215,0.086194248826291,0.0987454556916805,0.1101836042075085,0.1256263875673961,0.1373189404703836,0.148416472515665,0.1590668873111621,0.1691854233654876,0.1824207988980716,0.1942198780856859,0.2050494081876425,0.2154212342228239,0.2256516151708533,0.2358254831719075,0.2453406115969476,0.2546512019581644,0.2635590437037792,0.2707275803722504,0.2782723147795365,0.2848394358968377,0.290679827150582,0.2964703350312074,0.3018520090720549,0.3072853223087618,0.3128379981765271,0.3171189926121506,0.3208675657520798,0.3245764049673753,0.3223532255465435,0.3209411313308485,0.3200757575757575,0.3194811917634879,0.3184943152416576,0.3157718325309281,0.3141714807410788,0.3151581421157424,0.3155125594025798,0.3160058841252681,0.3167935379404046,0.3180008238363311,0.3186004448971954,0.3198030343359063,0.3221433336510054,0.3231349647277707,0.324582675389127,0.3273728075631297,0.3303158040218368,0.3343623007189746,0.3380325814536341,0.3385211968768013,0.3405011219147345,0.3443628378889982,0.3477524920067707,0.3519155497568497,0.3526020330754058,0.3571000599161174,0.3581445523193096,0.3619011976047904,0.0,2.060941316289483,54.29580988662464,164.7908404399747,247.40676420177917,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95749,45127,427.1793961294635,5841,59.80219114559944,4621,47.77073389800416,1810,18.52760864343231,77.34438518034166,79.69762401195354,63.33412346583962,65.07267339438472,77.12202667235682,79.47590715037803,63.25086629460991,64.99160613795212,0.2223585079848362,221.7168615755014,0.0832571712297109,81.06725643260404,178.69456,125.20688977888862,186628.1214425216,130765.74144783612,382.7743,249.53079175054376,399289.6427116733,260130.47838676523,385.17313,186.2552337889001,399083.9591014005,192048.45420067772,2639.09776,1222.047168792704,2730470.417445613,1250506.5627763253,1086.83709,477.7014339110499,1124122.789794149,487943.1366500423,1765.74316,740.5847155874912,1811160.116554742,747187.1257587469,0.38084,100000,0,812248,8483.096429205527,0,0.0,0,0.0,32683,340.8495127886453,0,0.0,35249,364.9855350969723,1496185,0,53733,0,0,6980,0,0,74,0.762410051279909,0,0.0,1,0.0104439733052042,0,0.0,0.05841,0.1533714945909043,0.3098784454716658,0.0181,0.3286793692509855,0.6713206307490145,24.29223831710653,4.268570346979876,0.3118372646613287,0.2518935295390608,0.2254923176801558,0.2107768881194546,11.257949827129025,5.89328254581635,19.19458628531893,12132.26236624437,52.60944159748245,14.03341974576671,16.302890823855414,11.607317526184907,10.665813501675412,0.5704392988530621,0.7903780068728522,0.6988202637057599,0.5777351247600768,0.1098562628336755,0.741501976284585,0.9086859688195992,0.8556430446194225,0.7429718875502008,0.1021505376344086,0.5059594755661502,0.7160839160839161,0.6424528301886793,0.5258511979823455,0.1116751269035533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025829585511121,0.0049983271318929,0.007406730993618,0.0096279820846409,0.0118856375948105,0.0141194914132725,0.0161635514971158,0.0183784886984029,0.020383974824003,0.0224905351478563,0.0246229199114681,0.0267676612166558,0.0287585597071706,0.0308029783421385,0.032907631682106,0.0349802106046357,0.0370458544664113,0.0390654166839507,0.0411249337448944,0.0433727410030727,0.057898088507031,0.0723927921140202,0.0852701795603289,0.0976833205388409,0.1098328676121685,0.126044200063445,0.1377053701169907,0.1490083840490275,0.15926689380427,0.1698544074447327,0.1817056366533178,0.194104921579232,0.2060950020113724,0.2169464847848898,0.2263364529148475,0.2361530882238976,0.246175305473414,0.2546783625730994,0.2630629608621667,0.269984658011037,0.2773639034773153,0.2844022743758336,0.2900519471298914,0.2949007003741725,0.3001166209091572,0.3062596361393771,0.3112926260930571,0.3152972952313004,0.3186954155544613,0.3233158158819024,0.322530261616556,0.3198976503604248,0.3186017689144274,0.3172394862682211,0.31555720653789,0.3131082468696838,0.3104590704457549,0.311594321818331,0.3124124739556648,0.3135753551795531,0.3147707916066113,0.3151852290211859,0.3157025139080604,0.3163892302536029,0.3164109470443942,0.3163252024054356,0.3173117943175678,0.3208566224957608,0.3239826294039364,0.3288518738845925,0.3321383191141768,0.3344293593551124,0.3354660644837536,0.3387509405568096,0.3429077683484099,0.3456296992481203,0.3453435114503816,0.3472734727347273,0.3486314625380149,0.3568384347152266,0.0,1.9495627139411589,55.68908745092004,173.41840649129858,249.9574145666093,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95670,45461,430.3438904567785,5820,59.65297376398035,4603,47.53841329570398,1793,18.3547611581478,77.28108161739658,79.6692265846236,63.29287913429015,65.05619355669391,77.05392905998441,79.44485976069056,63.20779430841459,64.97485113385065,0.2271525574121682,224.36682393303897,0.0850848258755618,81.34242284326376,178.23344,124.96396027722696,186300.24040974185,130619.79750938326,385.0479,251.28015893048044,401886.6624856276,262065.61233962703,391.72834,190.0148479162548,406450.5278561722,196185.6425316516,2639.75168,1225.7549745212148,2728131.660917738,1250224.2298895365,1093.22975,487.8490871191145,1129939.7303229852,497159.6917728792,1754.41068,745.5385779318261,1798406.4388000418,748388.2205267048,0.38189,100000,0,810152,8468.192745897355,0,0.0,0,0.0,32838,342.62569248458243,0,0.0,35665,369.70837253057385,1492646,0,53539,0,0,7234,0,0,79,0.8257552001672416,0,0.0,1,0.0104525974704714,0,0.0,0.0582,0.152399905732017,0.3080756013745704,0.01793,0.3398201144726083,0.6601798855273917,24.235080551632933,4.279949063855236,0.3223984358027373,0.2394090810341081,0.2200738648707364,0.218118618292418,11.177416531841695,5.806191316318559,19.2214708350368,12231.442971294977,52.70633701960301,13.330369547370893,16.909171853552756,11.326266609364149,11.140529009315218,0.5731044970671302,0.8030852994555354,0.7028301886792453,0.5923000987166831,0.1095617529880478,0.734996102883866,0.93006993006993,0.8733850129198967,0.7131474103585658,0.125,0.5105421686746988,0.7221396731054978,0.6426618049225159,0.55249343832021,0.1053299492385786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678569619612,0.0045215381340037,0.0068806641160173,0.0094279241295933,0.0116144254825783,0.0140727465276363,0.0161816587474763,0.0182852125617674,0.0204446716074623,0.0226102621316492,0.0248333845996103,0.0269418347964474,0.0292578080811197,0.0313018391633609,0.0334599347727366,0.0355477433696944,0.0376439877351454,0.0396176281319411,0.0415990513044563,0.043943673716138,0.058892359768902,0.0727927626068018,0.0864517618902663,0.0989688552188552,0.1116597558530898,0.1268077993250177,0.1391825902335456,0.1502215405589638,0.1615255487720123,0.1722431010415548,0.1851276575089797,0.1966617894109359,0.2088593118621546,0.2190025625862408,0.2286400599422615,0.2388394095007819,0.2490080584770484,0.2575081671735947,0.2652780618622304,0.2729847819355726,0.2796186018490627,0.285868278908456,0.2926730935695398,0.2983524269279727,0.3038701592593043,0.3082922013820335,0.3126715032139232,0.3167822185970636,0.3212488326242607,0.3248922271296712,0.3235091696692441,0.3214147821290678,0.3197879858657244,0.3181528293135436,0.3169135839270277,0.3149316266863115,0.3124355864212212,0.3134490417043679,0.3134864929640155,0.3140850356549247,0.3152894346495428,0.315832291604659,0.3159556331951255,0.3173750898634076,0.3187842502957294,0.3195020746887966,0.3209901216239365,0.3243021863776699,0.3288684736491462,0.3321444140609519,0.3350447544186469,0.3391456434174263,0.3417363424907274,0.343429003021148,0.3450079387316708,0.3433356594556874,0.3454655747649378,0.3438995215311005,0.346680999731255,0.3386788850706376,0.0,2.245074530206693,56.27825535585328,176.14772082534134,243.4511946016678,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95734,45344,429.29366787139367,5871,60.21893997952661,4603,47.57975223013768,1809,18.55140284538409,77.3612597271838,79.7264968998842,63.34108899169471,65.08889031400557,77.13292325783121,79.49950012683334,63.255914239112215,65.00660382960095,0.2283364693525982,226.9967730508569,0.0851747525824961,82.28648440461939,178.13642,124.774333821401,186073.89224309023,130333.97333793744,382.56083,249.36142424787684,399110.1698456139,259976.55450028923,384.20796,186.2843790583133,398283.9847911923,192199.8519204344,2642.87212,1220.750303831358,2732421.125201078,1247126.963607347,1114.05814,493.1060584885731,1151469.3421355004,503123.9736009938,1766.7628,743.6890455520618,1813590.0933837509,749249.3884273991,0.3829,100000,0,809711,8457.904192867738,0,0.0,0,0.0,32587,339.8792487517497,0,0.0,35072,363.3087513318152,1501814,0,53892,0,0,7094,0,0,75,0.7834207282679091,0,0.0,0,0.0,0,0.0,0.05871,0.1533298511360668,0.3081246806336229,0.01809,0.3411669367909238,0.6588330632090762,24.263878652866364,4.389941075868025,0.3195741907451662,0.2337605909189659,0.2309363458613947,0.2157288724744731,11.363388878668776,5.873588667502713,19.320424814823788,12198.808601659412,52.48699731714401,12.90726365492505,16.929321341774997,11.754960877424466,10.89545144301951,0.5781012383228329,0.7825278810408922,0.7362338545207342,0.5794920037629351,0.120845921450151,0.7403921568627451,0.9223300970873788,0.8648018648018648,0.740909090909091,0.1401869158878504,0.5159254807692307,0.6957831325301205,0.6833013435700576,0.5373665480427047,0.1155327342747111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297981179283,0.0046435234001135,0.0068295752065109,0.0090621856935315,0.0112580087460591,0.0135638785360786,0.0157139069606183,0.0178996273038239,0.0201314834316562,0.0219287469287469,0.0240533973116791,0.0264057926359574,0.0286431282204235,0.0307191495060418,0.0328153055538356,0.0348292652668796,0.0371037725102778,0.0392781536673446,0.0414487298137614,0.0435113310758009,0.0582314430998298,0.0721380797370707,0.0853971950362421,0.098985332001472,0.111077150084317,0.1264428565388355,0.1389156920336341,0.1501101169260886,0.1610167681298729,0.1714794091795828,0.1839283407260669,0.1952688962921299,0.206776970909249,0.2176507880987254,0.2274651216482151,0.2377295012118328,0.2473657802308078,0.2560060228779468,0.2645008444892823,0.2719146647133554,0.278668624345353,0.284554175478775,0.2906441808484217,0.296041369899089,0.3019387223104623,0.3067142154451549,0.3116373765004184,0.3163940884195544,0.3204544278246468,0.323109193810108,0.3225172868404767,0.3212759819208418,0.3200630222547337,0.3188769983969499,0.3170637514110866,0.3145363792258697,0.3125879543981152,0.3125542970478797,0.313831782073574,0.3145379950053514,0.3157589260639194,0.3183923058655901,0.3197392962675776,0.320554375768414,0.322029822029822,0.3234319125055467,0.3251941969385424,0.3299602799319084,0.333813758920097,0.3381615598885794,0.34325983177995,0.3457090044890414,0.3489201877934272,0.3506994328922495,0.3537300922045264,0.3559840112861509,0.3634708737864077,0.3657062260729397,0.363332404569518,0.3645045762037405,0.0,1.9080436862679364,56.307720243510246,172.5284065108487,246.8986926361821,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95658,44855,426.0699575571306,5838,60.06815948483138,4613,47.71163938196492,1758,18.064354262058583,77.2430810454354,79.64716697344011,63.27207635196621,65.04983967307871,77.01652824375444,79.42083351298118,63.18775562104675,64.96779463544081,0.2265528016809668,226.33346045893177,0.0843207309194653,82.04503763789717,178.85098,125.1952997182543,186968.95189111208,130877.8319266691,377.54414,245.8999671858735,394155.11509753496,256537.0909711561,377.6668,182.6954437199096,390957.31669071066,188123.6805289379,2656.42608,1227.0571001291448,2749782.9350394118,1255673.3389002518,1119.47395,495.1814089060507,1157161.1365489557,504670.77344900486,1726.05894,731.7233917862708,1774809.1325346548,738908.2243488729,0.37892,100000,0,812959,8498.588722323277,0,0.0,0,0.0,32345,337.5776202722198,0,0.0,34445,356.3423864182818,1496900,0,53733,0,0,6938,0,0,61,0.6376884317046143,0,0.0,1,0.010453908716469,0,0.0,0.05838,0.1540694605721524,0.3011305241521069,0.01758,0.3350759679790884,0.6649240320209117,24.29455694033456,4.3021079219657,0.3264686754823325,0.2326035118144374,0.220030349013657,0.2208974636895729,11.101238691142866,5.733911022405362,18.986127279119987,12083.379470527,52.69592725947923,12.96277981716922,17.118509696068788,11.299805108289236,11.314832637952,0.5623238673314546,0.7735321528424977,0.6952191235059761,0.5773399014778325,0.1285574092247301,0.7368827160493827,0.9009433962264152,0.8878048780487805,0.7044534412955465,0.1627906976744186,0.4941211938498643,0.6902927580893683,0.6231751824817519,0.5364583333333334,0.1194029850746268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044123912117339,0.0067104555191212,0.0087787927127891,0.0110565235523277,0.0130047354753297,0.0152128473107315,0.0172663780428034,0.0195414757853403,0.0218936244291068,0.0238434638143388,0.0259506865070807,0.0280648710908174,0.0298341403111156,0.0317699516948102,0.0340395611667752,0.0361726591876689,0.0381226192823855,0.040013313501763,0.0419711643714229,0.0562289703024096,0.0701245378274486,0.0831356163520692,0.0962856150469955,0.1084989813045635,0.1239321215714089,0.1369599626076888,0.1481185374693529,0.1587731216501021,0.1688859775348467,0.1815210003344517,0.193062706628367,0.2052625273636175,0.2159024956471271,0.2257172142439906,0.2361235923891939,0.2452205800147575,0.254437669758478,0.2619583503842131,0.2699395649132464,0.2773695556431237,0.2838757275186491,0.2903034753974082,0.2963482809088509,0.3016438922891595,0.3062506944530179,0.3105463117374895,0.3147860021425292,0.3187047183775221,0.3220211161387632,0.321186292095432,0.3195079618711774,0.317855277828744,0.3159693065006515,0.3151550370271035,0.3126803807184525,0.310722621826323,0.3113032024368157,0.3119694687842278,0.3126577520004296,0.3135768565194493,0.3139731141160818,0.3147720109266653,0.3161281643086168,0.3175280086736537,0.3181663481425242,0.3194823083766178,0.3234476659718274,0.3274145721547585,0.3310632160884544,0.3334099793055874,0.3370750481077614,0.3387106977921174,0.3402156457903189,0.3414310115771494,0.3455952380952381,0.3510952306975299,0.357625383828045,0.3647642679900744,0.3710667689946277,0.0,1.9846240954410443,57.26400429127848,171.06487644509195,247.3147163119896,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95815,45498,431.0076710327193,5986,61.33695141679278,4695,48.39534519647237,1870,19.15148985023222,77.44904619750217,79.7752857775517,63.38601454967061,65.10677782790665,77.21025930185824,79.53776166444666,63.297495880470976,65.02128531913515,0.2387868956439263,237.52411310503877,0.0885186691996366,85.49250877150882,179.31716,125.60996826488798,187149.3607472734,131096.35053476802,380.12484,247.53412534615856,396079.5282575797,257706.2543733524,389.77603,189.29312820053607,402740.9695767886,194567.6752235516,2693.81984,1251.27361317188,2777034.660543756,1272150.6490099488,1118.15017,502.65002649722857,1153704.0651255022,511591.1105997316,1827.45752,773.4367311133728,1872238.626519856,777042.3045537698,0.3826,100000,0,815078,8506.789124876064,0,0.0,0,0.0,32447,337.9846579345614,0,0.0,35597,367.45812242342015,1501172,0,53793,0,0,7236,0,0,67,0.6992642070656996,0,0.0,0,0.0,0,0.0,0.05986,0.1564558285415577,0.3123955897093217,0.0187,0.3304042179261863,0.6695957820738138,24.145000905051308,4.300593036646225,0.318849840255591,0.2396166134185303,0.2187433439829606,0.222790202342918,11.12991049641051,5.91451581831394,20.01426441264685,12181.469712529552,53.19397402523786,13.532384690964918,16.754987285180338,11.32229429123631,11.58430775785629,0.5597444089456869,0.7866666666666666,0.698062792251169,0.569620253164557,0.1080305927342256,0.7396946564885496,0.9229024943310656,0.8721227621483376,0.7551867219917012,0.1645569620253164,0.4901033973412112,0.6988304093567251,0.6365280289330922,0.5127226463104325,0.0914709517923362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.0047337637983639,0.0068896938703032,0.0088784144817708,0.0111250088979732,0.0135929052162137,0.0158947014263429,0.0179017952826626,0.0199795605518651,0.0219275357870071,0.0241020648665266,0.0262520525451559,0.028453947368421,0.0303931965364934,0.0324976021286909,0.0346398611512872,0.036690506008135,0.0388747174350359,0.0409363408729622,0.0430061630715416,0.0574268993647051,0.0720491828989053,0.0851770723067087,0.0981665353296559,0.1105912601818775,0.1262708461034431,0.1380399639582339,0.1496634088757962,0.1607506748178258,0.1709983829686981,0.1839238668745631,0.1954908336664254,0.2062466752792765,0.2163846061518653,0.2264080526009593,0.2363037543793724,0.2454872440173272,0.2547586980920314,0.2634670892523629,0.2713324422204705,0.2780310988490886,0.2846575662116439,0.2906046445766072,0.2966938394970237,0.3018733036060488,0.3071051952361638,0.3118521013435126,0.316124532369539,0.3196912791523083,0.3235673145201588,0.3230684593296299,0.321217939925936,0.3201488345970233,0.3188944607758372,0.3185477903087351,0.3165190076091431,0.3136912075103172,0.314694110920526,0.3153682779712853,0.3169094138543517,0.3185335745053798,0.3187340279142913,0.3205387486187269,0.3208905330718488,0.3231207780386145,0.3251935675997617,0.325141723356009,0.3281025320412629,0.3316519546027743,0.3350446252270753,0.3386979450809238,0.3407124276689494,0.3446562244448638,0.3465564320388349,0.3495383455813077,0.3512298959318827,0.3507268553940321,0.3512799674928891,0.3533296642817831,0.3495811119573496,0.0,2.2770431130206377,57.07658385660951,171.50124149240182,253.25829490413267,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95808,45123,426.6553941215765,5872,60.05761523046092,4656,48.0126920507682,1844,18.881513026052104,77.3497797498425,79.68403631026314,63.33168066437421,65.06031563460208,77.12600344707371,79.46271653940506,63.248271648556525,64.98093317185436,0.2237763027687833,221.31977085807364,0.0834090158176863,79.38246274771643,178.23872,124.84796914031716,186036.9488977956,130310.18855879812,378.81699,246.64558549155444,394819.81671676686,256866.70615944397,386.63762,187.4389439333655,400215.08642284566,193105.62010307368,2676.174,1240.7503339593072,2761255.5110220443,1263144.024234664,1124.60257,494.427924631796,1159456.9868904476,501709.56979771546,1806.27548,754.4386154700572,1851146.6683366732,756084.8893824801,0.37995,100000,0,810176,8456.224949899799,0,0.0,0,0.0,32339,336.92384769539075,0,0.0,35280,364.89645958583833,1502209,0,53889,0,0,6987,0,0,70,0.73062792251169,0,0.0,0,0.0,0,0.0,0.05872,0.1545466508751151,0.3140326975476839,0.01844,0.3473238978363429,0.6526761021636571,24.26980384270551,4.279581948278564,0.3195876288659793,0.2484965635738831,0.2109106529209622,0.2210051546391752,11.20162563613845,5.732884012438842,19.46458948155634,12164.53056994719,53.00714913753949,13.991994509202527,16.874576737205796,10.842194312977954,11.298383578153198,0.5719501718213058,0.7873811581676751,0.7143817204301075,0.5743380855397149,0.1214771622934888,0.7478532396565184,0.9153674832962138,0.8624078624078624,0.7647058823529411,0.1323529411764706,0.5051851851851852,0.7062146892655368,0.6586493987049029,0.519053876478318,0.1187878787878787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0048262646131383,0.0072766760712038,0.0093773176604456,0.0117892381243006,0.0141744310371162,0.0165376890058014,0.0187011290092076,0.0211169712580236,0.0234600503592704,0.0255253716043054,0.027558165800768,0.0296851543381249,0.0316847383975368,0.0337208462704888,0.0356589307487238,0.0376063598534252,0.0394876050202261,0.0414350577160846,0.0433560317361154,0.0578514121169756,0.0712754499158205,0.0848514706190645,0.0980777517367497,0.1100101197503794,0.1250198267931351,0.1369880451040086,0.1485711244744824,0.1593851478379764,0.170011692393508,0.1818299371774011,0.1949498338618726,0.2065705738373674,0.2164977754457307,0.2259171662724822,0.2356043566418844,0.2447162273751869,0.253882572562779,0.2623966238981724,0.2702390219332387,0.2771969188776572,0.2842379677581511,0.2899200416351249,0.2962404214559387,0.3016481782654077,0.3066543551862111,0.3114899573797948,0.3150801622315741,0.3200491527616091,0.3235798301598185,0.3230278476923698,0.3227995320349597,0.3211850557872197,0.3193139879875534,0.3174683393780843,0.3154791079524568,0.3129886985976131,0.3152817652366499,0.3163700946070562,0.3155497606629992,0.3151218781031608,0.3162129569222861,0.3169328003683318,0.3187887990710553,0.3189307330195023,0.3208215113100971,0.3218348310772381,0.3246138905422762,0.3264274005092253,0.3295552931916568,0.3320052519581654,0.3340721975934135,0.3372472686173552,0.3368718497021536,0.3394400601277715,0.3411931148314077,0.3399541634835752,0.3427597272362615,0.3503926347143244,0.3551114527286702,0.0,2.268750656232767,56.016640447972506,174.27755801650807,251.4435005643342,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95803,45527,431.0512196904064,5909,60.446958863501145,4714,48.66235921630847,1815,18.57979395217269,77.41775944651599,79.7465844414669,63.37436231324406,65.09549786081809,77.19659249533345,79.52668462831603,63.293517200925926,65.01731345504795,0.2211669511825391,219.89981315086027,0.080845112318137,78.18440577013064,179.8291,125.89208207019443,187707.16992160995,131407.24410529362,377.59335,245.98605584743328,393594.5325302965,256222.84763057728,386.12815,186.5163098026068,399544.4401532311,191987.9354911913,2678.98872,1227.9213020733464,2764365.500036533,1249993.0271784794,1106.72382,490.9702154881924,1139515.6101583457,496936.5361221048,1771.00768,732.7917813197564,1814164.775633331,735994.806648221,0.38283,100000,0,817405,8532.144087345909,0,0.0,0,0.0,32192,335.45922361512686,0,0.0,35213,364.1013329436448,1500982,0,53856,0,0,7118,0,0,68,0.7097898813189566,0,0.0,0,0.0,0,0.0,0.05909,0.1543504949977797,0.3071585716703334,0.01815,0.3467247499193288,0.6532752500806712,24.572759910219894,4.228932972652897,0.3207467119219346,0.2437420449724225,0.225074246924056,0.2104369961815867,11.225540793696592,5.928881181572443,19.17199864188212,12279.157513163414,53.373427824431324,13.732983686381797,16.999413674057763,11.84085790239348,10.800172561598282,0.5719134492999576,0.804177545691906,0.6944444444444444,0.5749293119698398,0.1129032258064516,0.7442596991290578,0.8990610328638498,0.8637532133676092,0.7568627450980392,0.1450777202072538,0.508838017965807,0.7482710926694329,0.6357969723953696,0.5173697270471465,0.1051314142678347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020858858433155,0.0043789849269662,0.0065651287150815,0.0091405821535211,0.0113377531928739,0.0137322366545869,0.0157476302109876,0.0180962684739119,0.0201966516077597,0.0223113767552298,0.0242722427224272,0.0265556673304728,0.0288745207281847,0.0308948278702026,0.0330470288607281,0.0352413807349872,0.037317989423465,0.039322406411014,0.0411680378957865,0.0433809444490713,0.0583417667372638,0.0716704996863892,0.0852497851198088,0.0981522915156671,0.1102790942601369,0.1259573838726375,0.1388956561344787,0.1513128521313915,0.1620078950176037,0.1726439145617756,0.1852584714321048,0.1977337049279495,0.2091503267973856,0.2194128756864158,0.2285014444041695,0.2382326918823269,0.2481390684198796,0.2569321269000202,0.2651335009171818,0.2729787817815987,0.2802864072063749,0.2864912813090875,0.2930857405942698,0.299059831104519,0.3042465985982102,0.3090533257868445,0.3136566847323859,0.3186591327534759,0.3225531365075263,0.3262866921153087,0.324935200977693,0.3239096091764544,0.3231141362434606,0.3216479681596631,0.3215689182175428,0.3199021331906109,0.3185730303365286,0.3189364419267166,0.3200687331994964,0.319749550863587,0.3190431695010278,0.3203633432295865,0.3212736675285678,0.3216278087702531,0.3224793942879049,0.3233935430291705,0.325158766160127,0.3290461885092001,0.3332169541233154,0.337755142326977,0.3412511332728921,0.3463226352244488,0.3500062680205591,0.354072055706933,0.3555242125058768,0.3570240076063703,0.3639597834493426,0.361077359254759,0.3591415376256452,0.3569513596323247,0.0,2.021668400431697,55.58589794227907,175.4787673189963,258.09332970067203,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95725,45003,426.4089840689475,5824,59.66048576651868,4534,46.82162444502482,1762,18.009924262209456,77.3893283971574,79.75205302046777,63.35181630130408,65.09469014193711,77.1750638439562,79.54105867963013,63.27160214698007,65.01846260379023,0.2142645532012039,210.9943408376438,0.0802141543240111,76.2275381468811,179.18076,125.5020479229794,187182.82580308177,131106.86646432948,382.45436,248.9315286207412,398982.78401671455,259496.9324844516,378.58278,183.58442168870556,393063.6824236093,189807.3323639936,2580.93864,1190.6205187279954,2666887.5633324627,1214478.9749051922,1074.88452,476.6662502726047,1107519.895534082,482585.6884540139,1722.43132,719.8802359461597,1762821.4781927394,719720.7049461141,0.38032,100000,0,814458,8508.310263776444,0,0.0,0,0.0,32736,341.4259597806216,0,0.0,34497,357.86889527291726,1497837,0,53744,0,0,7043,0,0,79,0.8252807521546096,0,0.0,1,0.0104465917994254,0,0.0,0.05824,0.1531342027766091,0.3025412087912087,0.01762,0.3334426229508196,0.6665573770491803,24.62869931282507,4.320567424156291,0.3182620202911336,0.2434936038817821,0.2232024702249669,0.2150419056021173,11.275089938202878,5.856433300720831,18.69228975195423,12185.777125138791,51.5204240027527,13.439928338389423,16.503687366624472,11.037261961099318,10.539546336639464,0.5621967357741509,0.792572463768116,0.7075537075537075,0.5385375494071146,0.1107692307692307,0.7488151658767772,0.9118279569892472,0.8701298701298701,0.7180616740088106,0.1375661375661375,0.4899020807833537,0.7057902973395931,0.6483931947069943,0.486624203821656,0.104325699745547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0046216060080878,0.0070803282513212,0.0094432541656935,0.0118539302997031,0.013975123669157,0.0163765693787705,0.0185404379502459,0.0204869874421408,0.0226442509388206,0.0247258940465211,0.0269424523171945,0.0288532675709001,0.0310862695447199,0.0331769195070386,0.035177281511259,0.0370121130551817,0.0388979939007945,0.0405271965657384,0.0428464279017438,0.057359759408546,0.0717013907056078,0.0848367877821599,0.0973145188425302,0.1085272135018606,0.1236820119081612,0.1361061608961303,0.1479064419627173,0.1586240051279312,0.1686967896892625,0.1813061971679319,0.1939081243036852,0.2058375910425046,0.2167528619381362,0.2265421301033037,0.2374005892647482,0.2468722447294115,0.2557893671341648,0.2644465876212628,0.2719536359367304,0.2789847950511649,0.2859564023143007,0.2919085052308056,0.2967538063774777,0.3016029024547098,0.3066397598070581,0.3113928165122704,0.3156737940059204,0.3206519630036867,0.3245753890345618,0.3238905007522029,0.322757351931684,0.3211658336609199,0.3200190410247533,0.3186034794463709,0.3167854472202298,0.3140317420290311,0.3140854963328378,0.3151691412827185,0.3163183637172077,0.3173093066204041,0.3175053153791637,0.3189685770957302,0.320515105605561,0.321947360851431,0.3224536317480054,0.3236193712829227,0.3270742358078602,0.3311647648204843,0.3362814465408805,0.3421207325344788,0.347283872331431,0.3453052526012285,0.349777811252542,0.3562371806824538,0.3607038123167155,0.3608340888485947,0.3642357642357642,0.3652993348115299,0.3669511249030256,0.0,2.145577993772392,55.52940141483188,164.71466265480623,246.4284376329096,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95683,45043,426.81563078080745,5851,60.07336726482238,4561,47.19751680026755,1801,18.540388574772948,77.35982293729873,79.73720536673599,63.33991942654043,65.09067787856912,77.12930668503681,79.50466869413756,63.25371307645711,65.00541308959498,0.2305162522619213,232.5366725984281,0.086206350083323,85.26478897414336,179.96352,126.06086306106346,188082.83603147892,131748.21343505476,377.24387,245.1654647059258,393790.3075781487,255752.82412333,380.84411,184.18799515251283,395140.5892373776,190190.9771107316,2616.83284,1210.304177575323,2710699.413688952,1240711.3673017388,1050.8603,466.4128541653109,1088440.517124254,477637.8061154647,1756.0669,743.448253904467,1810181.4115360093,754837.810472446,0.37964,100000,0,818016,8549.21981961268,0,0.0,0,0.0,32280,336.87279872077585,0,0.0,34818,361.0672742284418,1495434,0,53643,0,0,7201,0,0,53,0.543461220906535,0,0.0,2,0.0209023546502513,0,0.0,0.05851,0.1541196923401117,0.3078106306614254,0.01801,0.3349133703824779,0.6650866296175221,24.310367191163404,4.285844742181585,0.3146239859679894,0.254330190747643,0.2139881604911203,0.2170576627932471,11.126485011223927,5.783728657618079,19.24422908315892,12110.335648566848,51.904331843446975,14.015353644716996,16.232751796483164,10.902836212993288,10.75339018925352,0.5639114229335672,0.7732758620689655,0.689198606271777,0.5778688524590164,0.1232323232323232,0.7296875,0.8900862068965517,0.8618925831202046,0.7122641509433962,0.1549295774647887,0.4992380371837854,0.6954022988505747,0.6245210727969349,0.5405759162303665,0.1145431145431145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024810629076031,0.0047029728058706,0.0068076903566174,0.0090593325343787,0.0113876687815194,0.0140058018219756,0.0162320789900039,0.0185283434681467,0.0207256532309138,0.022925362140928,0.0251910586596184,0.0270736086175942,0.028881534318663,0.0308786886596239,0.033089221248066,0.0349022282855843,0.0369262303567361,0.039059096849136,0.0411161127340395,0.0431855603493194,0.0574771480804387,0.0716043178272659,0.0844842785777255,0.0974319049773279,0.1101256077368459,0.1253676703980362,0.1374303454863875,0.149021153313593,0.1599568117677242,0.1700743793669704,0.1826224703118601,0.1950749371913714,0.2065925933987006,0.2158071012652685,0.2254430114869106,0.2358689149365181,0.2450073118183543,0.2541995547460028,0.2627621326740084,0.270479700573443,0.2773556318887848,0.283984982631782,0.290554609123604,0.2954398486336311,0.3002680965147453,0.3051842552248726,0.3096487939007624,0.313872509150061,0.3181524213576159,0.3225270377209179,0.3211783846288303,0.3205824521841957,0.3194203878163153,0.3180775059536696,0.3163685974434261,0.3147094801223241,0.3115488055687391,0.3115744541126252,0.3116865347449075,0.3121626934486579,0.3117632728022338,0.3113921549254026,0.312316715542522,0.3133044333214158,0.313994813178369,0.3149053463698772,0.3163360858091427,0.3171771639966141,0.3201832616374637,0.3244141861937935,0.3252897068847989,0.3286891784099973,0.3311187041255378,0.3328492815652705,0.3359992472713586,0.3403166289727413,0.3439412484700122,0.3378894472361809,0.33244039646397,0.3353658536585366,0.0,1.76627583265775,56.536295899185546,163.72703425158147,250.63228900862907,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95849,45504,430.3852935346221,5896,60.13625598597794,4607,47.44963432065019,1825,18.63347557095014,77.34109898624328,79.63240499441484,63.34986309044478,65.04442726086965,77.1090828453309,79.40558129177887,63.26134933242955,64.96135700966789,0.2320161409123784,226.8237026359685,0.0885137580152246,83.07025120176093,179.85946,126.07247837558538,187648.76002879528,131532.3877928673,381.6081,249.45337758845787,397524.0012937015,259645.96144817155,385.471,187.3541943658322,398747.56126824487,192816.9896972573,2656.43416,1235.994005920383,2736940.020240169,1254983.86620662,1110.48997,495.28306444791616,1143620.4029254348,501770.29958363273,1790.31702,763.1987898595504,1828831.850097549,759375.2114067422,0.38249,100000,0,817543,8529.489092217967,0,0.0,0,0.0,32576,339.22106646913375,0,0.0,35175,363.5823013281307,1490710,0,53528,0,0,7300,0,0,77,0.8033469311103923,0,0.0,0,0.0,0,0.0,0.05896,0.1541478208580616,0.3095318860244233,0.01825,0.3393702072116169,0.6606297927883831,24.01993107722176,4.288492066718041,0.3132190145430866,0.2383329715650097,0.223138701975255,0.2253093119166485,10.964419461870628,5.6432250825229415,19.50183124085587,12244.250754245832,52.62396561266621,13.252044933889367,16.414750257745606,11.53452267304868,11.422647747982555,0.5663121337095723,0.7969034608378871,0.6902286902286903,0.5943579766536965,0.1223506743737957,0.723583460949464,0.9385342789598108,0.8168316831683168,0.7201492537313433,0.1184834123222748,0.5040896697970312,0.7081481481481482,0.6410009624639076,0.55,0.1233373639661426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682395828059,0.0047623390177422,0.0072320441428556,0.0094117408166994,0.0118614437013396,0.0139013270373687,0.0162800411585521,0.0182606477939301,0.0204379711151512,0.0226277670935799,0.0247679921332431,0.0271689521133116,0.0292419884963023,0.0312683273142574,0.0334480555612802,0.0355568858567196,0.037464066345418,0.0393004051267704,0.0413625556743737,0.043365621716105,0.057815644846753,0.0713658597767465,0.085149178679182,0.098313131525324,0.1103773684265958,0.12632045973126,0.1391366997944523,0.1504976182374957,0.1612985848754562,0.1714742043712684,0.1846342618504327,0.1972764834404136,0.2086001630877956,0.2196433842420002,0.2288427469492402,0.2384545494836679,0.2478127929295183,0.2566635538203625,0.2644852281884526,0.2713650735462585,0.2785067925663635,0.2855004152095346,0.2922044887190468,0.2981812953777586,0.3029916554312575,0.3076240150926645,0.312057270155941,0.3164048088543986,0.32105699052746,0.3245248152059134,0.3242034957313296,0.3222908555627399,0.3215216992966581,0.3202970082068057,0.3195242490100926,0.3175537869377866,0.3160322769860016,0.3173913758781238,0.3176367659924862,0.3194314837412964,0.3198071817274558,0.3210543029533185,0.3213353540456344,0.3220003597769383,0.3228866677960359,0.3253564688613965,0.3252423020842268,0.3277870741641145,0.3285598961075427,0.3322743338231206,0.3356133150934792,0.3394081079645077,0.3432845241100732,0.3434220532319391,0.3455951707225052,0.3473971951509389,0.3543234526186454,0.3597180261832829,0.353967821107172,0.3590718904526436,0.0,2.3978294975639467,56.98877053803694,170.10128299236294,246.8943900192692,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95656,44957,426.95701262858574,5794,59.45262189512419,4571,47.3467424939366,1786,18.39926402943882,77.31769350596971,79.74091297043378,63.289715480586615,65.08192846359496,77.09916483472674,79.5207934292009,63.208273277169,65.00164899554461,0.2185286712429786,220.1195412328758,0.0814422034176161,80.27946805034958,179.14248,125.41107634105326,187277.8288868445,131106.33555767886,378.02937,246.3848875619568,394766.8206908088,257144.0030546508,379.24066,183.702126958962,394013.8726269131,190132.24263743675,2594.982,1202.1341645438422,2689717.9476457303,1233617.0909758315,1079.36879,480.2608751126698,1118590.9822698005,492275.94203465496,1738.20674,729.2813655596859,1792187.588860082,740461.5544692846,0.37858,100000,0,814284,8512.62858576566,0,0.0,0,0.0,32327,337.49059128543945,0,0.0,34684,360.1760475035544,1495722,0,53656,0,0,6937,0,0,63,0.6481558919461403,0,0.0,0,0.0,0,0.0,0.05794,0.1530455914205716,0.3082499137038315,0.01786,0.3353047478232298,0.6646952521767702,24.316072534004903,4.233909162155792,0.3082476482170203,0.2553051848610807,0.2231459199299934,0.2133012469919055,11.156594566007824,5.886106489352529,18.926853875287943,12063.061760481503,51.98952898532908,14.073502846987694,15.914883632527554,11.498557761186424,10.502584744627407,0.571866112448042,0.778063410454156,0.7111426543647977,0.5843137254901961,0.1107692307692307,0.7294761532447225,0.9101123595505618,0.8662952646239555,0.7159090909090909,0.1327014218009478,0.5106318347509113,0.6966759002770083,0.6580952380952381,0.5383597883597884,0.1047120418848167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894886133398,0.0044517908570964,0.0067208121827411,0.0089126922021565,0.0109577054951316,0.0130399348003259,0.015291861342909,0.0174909837656698,0.0196186791931472,0.0218126652862912,0.0238977570189395,0.0258390227852266,0.0280297803544397,0.0302345732499845,0.0323597177306869,0.0343857034944484,0.0365681700362882,0.0385042846014022,0.0403151114024954,0.0421828723981145,0.0566719963214931,0.0703583403185247,0.0837534660952861,0.0969583350886801,0.1092771529647816,0.1246544730515457,0.1364080765143464,0.14886155289302,0.1598861776441767,0.1705622032696728,0.1834480377985372,0.1953640589950042,0.2066122004357298,0.2164932647026612,0.2253386085365719,0.2358330467961445,0.2450129077681295,0.2539696840018919,0.2618642143505904,0.2688002016660364,0.2765403227673713,0.2827391746908308,0.2891617624421262,0.2937494003645783,0.2984726140675163,0.3032786885245901,0.3072572572572573,0.31185927602961,0.3161943739315132,0.3207442523802606,0.3196631862579993,0.3182687413155035,0.3172868369905073,0.3152757724516315,0.3146524222865198,0.3122063212673146,0.3099208860759493,0.3105595150323584,0.3118133038071714,0.3129520052596976,0.3136984514469932,0.3140089975050586,0.3141664590082232,0.3154228414233738,0.3172622739634524,0.3195932308647725,0.3200316527243952,0.3231339102284754,0.3252819156341361,0.3282364532019704,0.3298253572238603,0.3302116402116402,0.3310530940128028,0.3320968962906889,0.3367022272131761,0.3436948074885199,0.3477595962685426,0.3482178614337204,0.3477310005467469,0.3571156047310187,0.0,1.7288185139184302,56.454800527661,169.23817775028684,244.62463189057308,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95713,44755,422.7220962669648,5979,61.41276524610033,4720,48.76035648240051,1846,18.95249339170228,77.34880342590687,79.7062083310792,63.338894218876014,65.07715397015444,77.11684537994543,79.47500030237173,63.25375010337613,64.9940163778768,0.2319580459614343,231.2080287074707,0.0851441154998795,83.1375922776374,180.2713,126.1330079166013,188345.67927031856,131782.52475275175,382.40995,248.6425902072063,398977.23402254656,259218.9699374649,385.73911,186.72493971572072,399455.18372634856,192253.5923287061,2708.43424,1243.759899682191,2800156.425981841,1270219.8271102223,1144.62854,507.37566518236696,1181040.976669836,515530.3644836231,1808.07408,754.9795527162925,1858890.0358363024,764345.8482645599,0.37681,100000,0,819415,8561.167239559934,0,0.0,0,0.0,32669,340.73741289062093,0,0.0,35117,363.28398441173096,1491255,0,53573,0,0,7122,0,0,82,0.8567279261960236,0,0.0,1,0.0104479015389758,0,0.0,0.05979,0.1586741328521005,0.3087472821542064,0.01846,0.3403781979977753,0.6596218020022246,24.32903587677901,4.407897563874685,0.3281779661016949,0.2370762711864406,0.2141949152542372,0.2205508474576271,11.253051189632332,5.792022441642331,19.67768864958861,12056.806049986944,53.51765958182799,13.266291758362955,17.622236278604138,11.22069545046962,11.40843609439127,0.5603813559322034,0.7721179624664879,0.7017430600387347,0.559841740850643,0.1229586935638808,0.7284046692607004,0.8997555012224939,0.8694581280788177,0.7530864197530864,0.1409691629955947,0.4975254730713246,0.6985915492957746,0.642169728783902,0.4986979166666667,0.1179361179361179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004439849166768,0.00674750139516,0.0089293877426629,0.0113571660972832,0.0135186033491118,0.0158092694710876,0.0180871695416964,0.0202953349343416,0.0223632362724527,0.0246294815816985,0.0266947195566274,0.0287976147637896,0.0311325708049787,0.0331638179136193,0.0353275470138458,0.0373361495930918,0.0394675409563927,0.0417957622008276,0.0439366944852519,0.0579973476186,0.0720930962671494,0.0845135435681165,0.0965105147437853,0.1090955113061086,0.1247223573710151,0.1376204218478122,0.148856668369954,0.1594487768400811,0.1689746532656848,0.1820316455014487,0.1929896684156434,0.2042911360744695,0.2139529797703663,0.2236316629077507,0.2337794717248714,0.244415654038599,0.2525157020328223,0.2603434772244861,0.2683343068870334,0.2747557983426693,0.2815321637426901,0.2877331692074614,0.2930978710148921,0.2978493448455924,0.3038422213188465,0.3086645081444626,0.3130196018610327,0.3172967521721141,0.3214850545627076,0.3196571305541351,0.3179311577760358,0.3167485811657677,0.3151955613991996,0.314134569662387,0.3118177503559563,0.3102045983195405,0.3096065573770492,0.310727812468011,0.3117842234828213,0.3116467816134944,0.3128586358527399,0.3139415737855753,0.3148992268847477,0.3149278846153846,0.3159513199384984,0.316204179513532,0.3206388206388206,0.3257823200927194,0.3295720926536613,0.3329225432470674,0.3364181020648336,0.3380021646399694,0.3425142329589167,0.3439188548677599,0.3451539475260572,0.3426878702837543,0.3499689376682543,0.3444506726457399,0.3494351382937281,0.0,2.0245646275829285,56.679303427900585,170.5192523616843,262.2531674205758,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95638,44970,426.04404107154056,5820,59.484723645412906,4550,47.010602480185696,1749,17.879922206654257,77.26744378178137,79.68315343105853,63.28338998351626,65.0696297947692,77.04331804146514,79.46267660871334,63.19936314469911,64.98980762188442,0.2241257403162251,220.47682234519075,0.0840268388171452,79.822172884775,177.42164,124.35268567088912,185513.74976473788,130024.34771836417,375.83326,245.2462801243911,392424.36060979945,255881.37573390407,381.18506,185.0739851988468,395518.7268658901,191035.79272191724,2600.21152,1216.4947142576425,2687897.530270395,1241070.1125678509,1079.2133,486.8754461806896,1115329.0219368872,495974.9432032137,1711.94252,728.0840406801962,1751896.2337146322,728039.9265588088,0.37927,100000,0,806462,8432.443171124449,0,0.0,0,0.0,32020,334.2290721261423,0,0.0,34819,361.0280432464083,1504225,0,53945,0,0,7089,0,0,75,0.7842071143269411,0,0.0,1,0.0104560948576925,0,0.0,0.0582,0.1534526854219949,0.3005154639175257,0.01749,0.3376047313947757,0.6623952686052242,24.18338232645919,4.35354279273849,0.3171428571428571,0.2518681318681319,0.218021978021978,0.2129670329670329,11.423511035389932,5.84218077004364,18.71056325156197,12161.323511188442,52.09417590780622,13.728307796457612,16.63740502809065,11.031572976747292,10.69689010651066,0.5756043956043956,0.7923211169284468,0.7110187110187111,0.5645161290322581,0.1289989680082559,0.7412040656763096,0.908653846153846,0.854679802955665,0.8240343347639485,0.1383928571428571,0.5108529501681442,0.726027397260274,0.6547733847637416,0.4848484848484848,0.1261744966442953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022493768618153,0.0046136686270533,0.007421621182586,0.0095215836110885,0.0118312495549293,0.0141463315272742,0.0163957827762709,0.0185810983266802,0.0208897841491221,0.0232050875055042,0.0252704989487718,0.0273143772856144,0.0294523084519792,0.0313443447259688,0.0335363336085879,0.0354403159440067,0.0372338221890794,0.0392659560113345,0.0410988828094118,0.0432683786348044,0.0575982441471571,0.0721752063345762,0.0851474958780966,0.0976791205088244,0.1095285857572718,0.1254262416604892,0.1381533526643936,0.1494660783937592,0.15944803979248,0.1697150651387084,0.1822299877046528,0.1946701332466688,0.2068695311479692,0.2169987853320639,0.22719716402629,0.237929582770158,0.2467213572185947,0.2557242031121662,0.2642364106988783,0.2705121886926524,0.2777192474674385,0.2845227929392773,0.291214320385476,0.2962669737536587,0.3015344211268633,0.3069149329977049,0.3108214701573827,0.3149128387835602,0.3190009197963493,0.3234781230183893,0.3229225665506918,0.3219986503050586,0.3195983867783512,0.3182212832460278,0.3174726060028585,0.3153205649180378,0.3132862695327992,0.3130828845396033,0.3133550822416178,0.3144188205054976,0.315204349456318,0.3159135482081657,0.3163141106354403,0.3177925359450817,0.3179520508376661,0.3187898421987668,0.3194891821783872,0.3220775954222474,0.3243699251291785,0.3270319853234426,0.3277558150225246,0.3278300618445818,0.3312264572559535,0.3358254971481424,0.3333965484543902,0.3332933269323092,0.334261407579273,0.3319713993871297,0.3268361581920904,0.3289578361177406,0.0,2.2249446468100555,55.99012553891351,171.44427096949565,242.7100954242106,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95835,45292,428.5595033129859,5828,59.60244169666615,4590,47.268743152293005,1797,18.312724996087027,77.40182060844235,79.71594132124845,63.36325590393732,65.07595795431799,77.16928905185412,79.4886037449547,63.27597231409023,64.99393583474277,0.2325315565882277,227.33757629374907,0.0872835898470896,82.02211957521399,179.77388,125.98497969686112,187586.64371054416,131460.08524950285,381.39111,249.1351287859798,397345.2809516356,259342.00216828907,387.05841,187.42758336627145,400766.504930349,193102.8189978673,2619.91516,1220.643627996175,2699245.7870297907,1239211.0898900973,1044.00017,472.9966573148715,1072924.0987113267,477173.5436099432,1756.90804,749.8833744523805,1792685.0106954663,746278.7052380356,0.38006,100000,0,817154,8526.665623206554,0,0.0,0,0.0,32607,339.5940940157563,0,0.0,35296,365.1797360045912,1493739,0,53586,0,0,6865,0,0,67,0.6991182762038921,0,0.0,0,0.0,0,0.0,0.05828,0.1533442088091354,0.3083390528483185,0.01797,0.3395203679369251,0.6604796320630749,24.037082335633325,4.217340713516779,0.3163398692810457,0.25359477124183,0.214161220043573,0.2159041394335512,10.839401536827936,5.613236547143548,19.20252391771364,12102.84416839703,52.4267719934696,14.073632257559373,16.438120708314308,10.87707897888405,11.037940048711866,0.562962962962963,0.813573883161512,0.6880165289256198,0.5493387589013224,0.0988900100908173,0.7369219105382866,0.9211087420042644,0.8585858585858586,0.7094017094017094,0.1545454545454545,0.4928156527055946,0.7410071942446043,0.6240530303030303,0.4993324432576769,0.0830090791180285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020454039166447,0.0044086795244707,0.0065738749340583,0.0088160313639456,0.0112239607161374,0.0132741561138482,0.0152983743566223,0.0176260461318636,0.0199317210785616,0.0222920483506135,0.0246630106093998,0.0268095414049349,0.0289150434291,0.0308793245469522,0.033056913587887,0.0350492880613362,0.0370473883609713,0.0392711962833914,0.0413416293587892,0.0432963510334922,0.0578860635390809,0.0717690844083885,0.0851208752056502,0.0969199092360702,0.108889825152728,0.1245088512400185,0.1372665345947263,0.1486887284865364,0.1593878073770492,0.1690555769807601,0.1815903272304812,0.1935002755952316,0.2045965770171149,0.2155283575565512,0.2256769980099612,0.2357891007329657,0.2450475170659884,0.2545822557067356,0.2632498411834105,0.2706628360822736,0.2775150050305883,0.2844601860943563,0.2906826862812341,0.2960322974818506,0.3014703204108641,0.3063514745374363,0.311441578907872,0.3146307359857633,0.3188615782664942,0.3226499670402109,0.3211792712942664,0.3201748357478626,0.3183058188261102,0.316519182544029,0.3149363637710577,0.313208816067007,0.3107092086558206,0.3104492763114808,0.3107110588315518,0.3108389554443989,0.3110754054256034,0.3120503065307812,0.3133599181577134,0.3141417294742006,0.3154518252543387,0.3162688116242864,0.3163713678242381,0.3193130366900858,0.323109668864929,0.326747540206267,0.3320451032099663,0.3362714384325386,0.3395585738539898,0.3379843785546371,0.3423791821561338,0.3402932551319648,0.34401093062092,0.3388011340623734,0.3420980553273076,0.337151584574265,0.0,2.3622283621353453,57.73895889671003,170.07179833867704,240.93818209079976,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95700,45589,433.75130616509927,5772,59.059561128526646,4501,46.50992685475444,1735,17.784743991640543,77.32145341825886,79.71081691859635,63.3143933609397,65.08121136639839,77.099607958635,79.4901761730676,63.2312766911157,65.00122068834968,0.2218454596238501,220.64074552875468,0.083116669823994,79.99067804871629,179.36248,125.69251413029664,187421.6091954023,131340.14015704978,382.16399,249.49754783322555,398779.25809822365,260151.8368163276,385.24353,186.58959908121463,399970.0731452456,192910.1791673252,2559.9644,1185.4773515743125,2646137.136886102,1209891.527245885,1023.82009,457.12590571164606,1060865.078369906,468710.92833115446,1688.66988,718.6785661532305,1731748.631138976,721412.8067208875,0.38341,100000,0,815284,8519.164054336468,0,0.0,0,0.0,32654,340.6478578892372,0,0.0,35129,364.4514106583072,1493192,0,53583,0,0,7138,0,0,70,0.7314524555903866,0,0.0,0,0.0,0,0.0,0.05772,0.1505438042826217,0.3005890505890506,0.01735,0.3408190224570673,0.6591809775429326,24.30824679183229,4.270920429343275,0.3197067318373695,0.2492779382359475,0.2226171961786269,0.208398133748056,11.16699291209524,5.882234683210598,18.57905992626922,12129.158957898895,51.26308356055797,13.479492306425325,16.291693446117314,11.200795959929115,10.291101848086216,0.5618751388580315,0.7691622103386809,0.665045170257123,0.5848303393213573,0.1311300639658848,0.7213771016813451,0.9063231850117096,0.8315217391304348,0.7325102880658436,0.1421800947867298,0.5006150061500615,0.6848920863309352,0.6078431372549019,0.5375494071146245,0.1279229711141678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0043707534732785,0.0067098424557414,0.0088210485665796,0.0111814260133485,0.0134259636541439,0.015633764035204,0.0174802683302872,0.0195873970025966,0.0215470913985648,0.0235600483913961,0.0254574955328719,0.0275280320954634,0.0296978690078727,0.0318032143852514,0.0338410000310183,0.0357779158897866,0.0378188762272453,0.0397075494264349,0.0417539580792762,0.056529868284989,0.071299213834832,0.084906749509346,0.0978173935005893,0.1098344569999683,0.1253400226505361,0.1381729789402173,0.1500484645782516,0.1602988169158588,0.1701096166634489,0.1834751696649789,0.1955488682737792,0.2069693080721293,0.2172804935408713,0.2273042273042273,0.237189991142604,0.2466480758505298,0.2550357447956476,0.2627765367562848,0.2707171565652517,0.2776492632260751,0.284010523238819,0.290186285416716,0.2954294890231042,0.3010578990198341,0.30529050368747,0.3101218322367598,0.3145396066665819,0.3180284639547058,0.3225190085258345,0.3210678501781991,0.3201170104650204,0.3193700344512409,0.3186198142057584,0.3178255448013776,0.3152343630407495,0.3128885795193874,0.3131097810937115,0.3136385344886402,0.3134740896608295,0.3139856998465167,0.3151899233988786,0.3168267118558965,0.3185935717640743,0.3196967873902057,0.3214817523968756,0.3220639551513071,0.3255323169963462,0.3288720272596339,0.3333994525330265,0.3346818181818182,0.3358514656594137,0.3381486409427865,0.3418954148136789,0.3489381783860311,0.3481587757054041,0.349644952145724,0.3565716629075251,0.3678383614724606,0.3656745264785466,0.0,1.9787582723325592,54.94066924684108,169.30801876281305,239.69953494590368,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95705,44919,425.46366438535085,5874,60.20584086515856,4593,47.39564286087457,1791,18.36894624105324,77.3455376358958,79.7318913797356,63.32130932583449,65.08703356026672,77.11539785753892,79.50354768256695,63.235505167910986,65.00439136067138,0.2301397783568717,228.3436971686541,0.0858041579235049,82.64219959534103,179.04106,125.3623178694229,187075.9730421608,130988.2637996164,377.71275,245.8251323991242,394071.7830834335,256265.38049122217,379.35116,184.1928256680087,392507.3925082284,189504.4326469463,2630.53344,1221.8002871502424,2716996.8131236616,1245043.2549503604,1084.4941,486.6756024430794,1118183.0729846924,493535.98290902114,1754.77214,743.738904777776,1801486.2964317435,748167.4549603577,0.37937,100000,0,813823,8503.453320098219,0,0.0,0,0.0,32206,335.90721487905546,0,0.0,34595,357.682461731362,1502191,0,53789,0,0,7065,0,0,71,0.731414241680163,0,0.0,0,0.0,0,0.0,0.05874,0.1548356485752695,0.304902962206333,0.01791,0.3312133072407045,0.6687866927592955,24.53138463178295,4.321162093127339,0.3217940344001742,0.2421075549749619,0.2164162856520792,0.2196821249727846,11.250846787228893,5.84704462931249,19.23841268425842,12161.250395659774,52.37431172680337,13.349720294557894,16.76899801417859,11.025451616467477,11.230141801599425,0.5649902024820379,0.7859712230215827,0.706359945872801,0.5613682092555332,0.1179385530227948,0.7311577311577312,0.9079903147699758,0.8581907090464548,0.7161016949152542,0.2008733624454148,0.500302480338778,0.7138769670958512,0.6482694106641721,0.5131926121372031,0.0935897435897435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023708446894092,0.0046351234849637,0.0068023757551144,0.0092176670257525,0.0114958899650036,0.0137706253819515,0.0158267218698374,0.0183409413518785,0.0203697643979057,0.0228157129398271,0.0247577047330906,0.0267563681183237,0.028925279789335,0.0309131751952682,0.0329821157676391,0.0349230307980191,0.0370017402834175,0.0389716871471272,0.0411185407805659,0.0430003334166875,0.0583388163047905,0.0728100470957613,0.085943075437639,0.098741661932117,0.1103704328748628,0.1259281196454635,0.1381900750156503,0.1498114975824831,0.1601428052247899,0.1704911346756536,0.1825550812745225,0.1951763648374974,0.2060846848808098,0.2169422165811386,0.2257847928499097,0.236376731301939,0.2453322917247921,0.2549046076313895,0.2638093185247371,0.2707396087319848,0.277521370487328,0.2842683496961197,0.2908256772255921,0.296442593124581,0.3018533792635001,0.3071132486254443,0.3114109050028105,0.3151368228664263,0.3189734188817598,0.3225734346648434,0.3215996779171979,0.3198914414167443,0.3189224113714253,0.3178759276604943,0.3166219878848916,0.3148323459353814,0.3132351081320349,0.3134811165845648,0.3141871113237203,0.3143122743036933,0.3150641206181115,0.3165414874853847,0.3168610148124803,0.3168788739958379,0.3178843007026662,0.3197161788490635,0.3211855479315548,0.3240365589371525,0.3263755122053725,0.3302828618968386,0.3364333348455292,0.3403288047787704,0.3427265326570229,0.3473779933313125,0.3506761833208114,0.3518385864374403,0.3541124215040588,0.3501116297950071,0.349400871459695,0.3574730354391371,0.0,2.346288082041362,56.18178646573669,171.1688285903172,245.6679901538565,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95612,45123,428.06342300129694,5915,60.72459523909133,4658,48.15295151236247,1873,19.171233736351088,77.23812690061078,79.66905637025376,63.25655152000609,65.05417251447888,76.99825774313054,79.43321730569846,63.1660015720106,64.9684036045617,0.2398691574802427,235.83906455529305,0.0905499479954912,85.7689099171779,179.07692,125.48173766144832,187295.21398987572,131240.350857056,381.40951,248.4661193174441,398379.6908337865,259335.30615136595,383.72648,185.87564400802177,398599.5063381165,192193.7094604273,2682.62648,1252.438497821572,2773384.7215830646,1277585.0498071082,1076.10363,483.10686826976223,1109258.5658703928,489184.3387560239,1829.23704,781.1383642038799,1873971.070576915,782427.6504226357,0.38057,100000,0,813986,8513.418817721626,0,0.0,0,0.0,32567,340.0305400995691,0,0.0,35048,363.75141195665816,1489935,0,53553,0,0,7128,0,0,63,0.6589131071413631,0,0.0,0,0.0,0,0.0,0.05915,0.1554247576004414,0.3166525781910397,0.01873,0.3458427693303138,0.6541572306696862,24.120559086268724,4.288838821548348,0.3215972520395019,0.2340060111635895,0.2249892657793044,0.2194074710176041,11.248001730551245,5.90765615908268,20.106375391195083,12206.25312121724,53.418180910440576,13.193914286392014,17.162847189190963,11.608982181227116,11.452437253630489,0.55817947617003,0.7770642201834862,0.7096128170894526,0.5591603053435115,0.1017612524461839,0.7266666666666667,0.9388235294117648,0.8904761904761904,0.7276422764227642,0.1119691119691119,0.4894195888754534,0.6736842105263158,0.6391465677179963,0.5074812967581047,0.0982961992136304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432300956705,0.0048177862525737,0.0071886930387458,0.0093613734080074,0.0117142973457091,0.0139979828234359,0.0159620582385639,0.0181221971376326,0.0202219608244259,0.0223799573910193,0.0243682217867293,0.0265510367645547,0.0287769784172661,0.0306900888641471,0.0327471006784877,0.0349119956954978,0.0367406178726933,0.0387791778772737,0.0409527180362682,0.0430033488779693,0.0576366164493837,0.0717227502803307,0.0849776208787745,0.0977143459026753,0.1100491102075302,0.1258924220918162,0.1388487527091921,0.1503906874606914,0.1619123028526183,0.1722922888511698,0.1839734113152982,0.1964219885069933,0.2075895289783997,0.2177434379966025,0.2278158689565466,0.2381993540582235,0.2475052579764621,0.256160413212888,0.2651905427996315,0.2727471063751607,0.2790824495857796,0.2861381146147261,0.292766866433276,0.2985727855330712,0.3035522722839867,0.3077436747211436,0.3118626613753956,0.3168396461261537,0.3212424459029177,0.3247848537005163,0.3237113680570564,0.3223455358621832,0.3211083023823982,0.3200858045627156,0.3182258232674521,0.3169116856383551,0.3149457428385313,0.3144363876071193,0.315610626759113,0.3163466360965823,0.3166306695464362,0.3170325750970912,0.3165822811403601,0.317236122320868,0.3181785309644915,0.3180024564245956,0.3194543738740026,0.3222145154171133,0.3260754862992015,0.328326265308549,0.331249429588391,0.3332978723404255,0.3342155009451796,0.3354406276182496,0.3397484040555764,0.3365870869105021,0.3397252000603956,0.3440495207667731,0.3503132661400163,0.3550587343690792,0.0,2.1963331925674368,59.56076575543036,171.71056060385857,245.46805627987223,fqhc2_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95720,45142,428.3117425825324,5884,60.311324697033015,4628,47.77475971583786,1791,18.31383201002925,77.33641368994157,79.71053988455475,63.332022412709286,65.08909152554253,77.11467020307505,79.49172825111951,63.24961628853156,65.0102510158246,0.2217434868665151,218.81163343523724,0.0824061241777229,78.84050971793499,180.37888,126.35580095841313,188444.2958629336,132005.6424555089,379.77995,247.37941966132396,396170.8420392812,257853.2770577776,385.72785,186.60019467812396,399131.1220225658,192099.5838712822,2988.14414,1375.68101686464,3086146.3435018803,1401908.4847443844,1073.47581,477.5230206387625,1107933.106978688,485872.6538121903,1735.94898,725.0213030677443,1777060.3635603846,726916.6846098397,0.38052,100000,0,819904,8565.649811951525,0,0.0,0,0.0,32500,338.9364814040953,0,0.0,35230,364.29168407856247,1493157,0,53589,0,0,7110,0,0,70,0.7312996239030506,0,0.0,1,0.0104471374843292,0,0.0,0.05884,0.1546305056238831,0.3043847722637661,0.01791,0.3471612168537498,0.6528387831462502,24.133888548072505,4.208108042078352,0.3230337078651685,0.2510803802938634,0.2180207433016421,0.2078651685393258,11.146085659446635,6.0835850810319645,19.120437296151277,12106.79189073068,52.76018118030067,14.166834387266409,16.896440461794654,11.305360652388332,10.391545678851267,0.574114088159032,0.8123924268502581,0.6949832775919732,0.5688800792864221,0.1039501039501039,0.7587822014051522,0.9419642857142856,0.8684863523573201,0.7109375,0.1034482758620689,0.5034359127576935,0.7310924369747899,0.6309523809523809,0.5205843293492696,0.1040609137055837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218718333265,0.0045030882666152,0.0066196253616934,0.0088625091470851,0.0112916187705359,0.0134744260892591,0.0156436431128198,0.0179191341637737,0.0199564475069776,0.0221833220727637,0.024263484839166,0.0263136280569187,0.0282073958290485,0.030127307185234,0.0321116064058114,0.034440344403444,0.0364165380991333,0.0382911622213231,0.040357952065188,0.0425,0.0569205868532344,0.0708008119023206,0.08345568186585,0.0964985125773932,0.1088193756455386,0.1238705177388161,0.1360186559253763,0.1477105973926543,0.1585121144198954,0.1685396869609933,0.181325067803177,0.1928817078710012,0.2052379917409258,0.2150036050601936,0.2259840443067185,0.2360232650714317,0.2463427406326251,0.2560198658381743,0.2641935008557471,0.2713124220974511,0.2779433853264009,0.2842147052298495,0.2901549508692366,0.2959303299279852,0.2999672643945731,0.3050424302053868,0.3094997189432265,0.3137939794233456,0.3177698185908791,0.3211926206269038,0.3203687504205639,0.3189529343725042,0.3185335532157808,0.3163778889820948,0.3156053704861421,0.3141494533130913,0.3126505642196018,0.3125575128171421,0.3125919086214562,0.3136536640280185,0.3153467108837802,0.3168934800213316,0.3174194897532413,0.3192775114282529,0.3196267063311182,0.3215919725486118,0.3239404418278986,0.3265615141955836,0.3298193829503127,0.3321660233196705,0.3360084380445748,0.3392521860415213,0.3426246315519672,0.3441242370393262,0.3490512333965844,0.3519344341328191,0.3528591352859135,0.3539119804400978,0.3636363636363636,0.3675018982536067,0.0,2.1766120424486304,56.13554708771282,173.64800918468848,248.70969633071087,fqhc2_80Compliance_implementation_low_initial_treat_cost,0 -100000,95606,45149,428.7492416793925,5875,60.19496684308517,4630,47.81080685312637,1825,18.712214714557664,77.26635035352784,79.7039119965668,63.26822878755484,65.07181676369133,77.03948642449753,79.47952077797231,63.18305406250962,64.99005515236685,0.2268639290303156,224.39121859449077,0.0851747250452206,81.76161132448101,179.52748,125.70141854813178,187778.4657866661,131478.58769128696,383.63742,250.35696633797664,400656.1094491978,261250.1582933882,386.08402,187.0869280352922,399832.5209714872,192594.878058832,3050.40178,1400.7174214398503,3152660.125933519,1427157.167374279,1089.79536,483.6058566543956,1123622.136685982,489593.2991762256,1791.77582,754.1833304413003,1839059.2013053573,759236.1234977758,0.3795,100000,0,816034,8535.384808484823,0,0.0,0,0.0,32792,342.3529903980922,0,0.0,35253,364.7260632177897,1488758,0,53367,0,0,7145,0,0,65,0.6798736480973998,0,0.0,0,0.0,0,0.0,0.05875,0.1548089591567852,0.3106382978723404,0.01825,0.3352788586251621,0.6647211413748378,24.268006805148254,4.2872189072106766,0.311231101511879,0.2503239740820734,0.2161987041036717,0.2222462203023758,11.145037543941797,5.784102408684458,19.52131734509185,12109.05208991128,52.742161648148446,14.027045053000904,16.1628125413315,11.321861197199166,11.23044285661688,0.5632829373650108,0.7955133735979293,0.6897987508674531,0.5834165834165834,0.1049562682215743,0.7290322580645161,0.9244851258581236,0.8440111420612814,0.7154811715481172,0.1268292682926829,0.5026548672566372,0.7174515235457064,0.6386321626617375,0.541994750656168,0.0995145631067961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0046766421506467,0.0069972681202839,0.0093033186920449,0.011685429856884,0.0136367805782891,0.015676028739386,0.0177799576959627,0.0200437914381599,0.0221026744543498,0.0242928691654008,0.0264683510474271,0.0285764285640756,0.0305914133707262,0.0325469456896729,0.0346533116728578,0.036485379935114,0.038471525462458,0.0404879368846145,0.0426361844369583,0.0570604162964047,0.0710415727864351,0.0842139540746654,0.0965366871010554,0.1087932400316873,0.1242703842201718,0.1369066598643794,0.1487300926962996,0.1601733918441614,0.1697217148382937,0.1818211238282219,0.193217913554416,0.2051321149280066,0.2158508260659976,0.2263348176888144,0.2359394759612184,0.2458749008523901,0.2544056211785107,0.2628350052828302,0.2704962212869413,0.2772496207691149,0.2837690695577853,0.2903244907626717,0.2954872434298868,0.300841173753434,0.3052357506879404,0.3099412273336758,0.3150540099867522,0.3189145759900477,0.3229306930693069,0.3212731852530341,0.3195039024323096,0.317974298275279,0.3171450871563611,0.3161447646236655,0.3135432299163885,0.3104687425794298,0.310357852556207,0.3111555350521981,0.3128206044790791,0.3133106827098155,0.3137363616562048,0.3153720256829913,0.3154997650533664,0.3156132575392619,0.3174470529861855,0.3201736845112266,0.3240209371255597,0.3281420284760063,0.3325908837801288,0.3366914345626111,0.3402253640905708,0.3417257085020243,0.3465969380021221,0.3501024781069499,0.3517953532034734,0.3542329244282902,0.3564972886121711,0.3547859285519498,0.356766917293233,0.0,2.3598217421454244,54.044630652426015,178.03648662113085,250.7209660114992,fqhc2_80Compliance_implementation_low_initial_treat_cost,1 -100000,95704,44964,426.6279361364207,5944,60.76026080414612,4705,48.566413107080166,1905,19.487168770375327,77.34534288058313,79.71343268085224,63.32656324425341,65.07429039018032,77.10249892168868,79.47412374738587,63.234219030105,64.9863522470684,0.2428439588944542,239.3089334663614,0.0923442141484116,87.93814311192705,179.1768,125.47656159682452,187219.76092953276,131109.00442700883,380.9192,248.16430642866231,397412.2398227869,258698.1907011853,380.30477,184.60948702484612,394216.8665886483,190405.46517697565,3107.33622,1443.6706471254647,3206095.8685112437,1467751.0000893,1142.7589,517.8354804576538,1175402.0730585973,522434.08777771913,1873.02796,802.1465846975958,1917632.679929784,803760.889618184,0.37964,100000,0,814440,8509.98913316058,0,0.0,0,0.0,32580,339.8081584886734,0,0.0,34834,360.7268243751568,1494009,0,53675,0,0,7005,0,0,67,0.7000752319652261,0,0.0,1,0.0104488840591824,0,0.0,0.05944,0.1565693815193341,0.3204912516823687,0.01905,0.3450273575796588,0.6549726424203411,24.123776848499688,4.245145070369565,0.3094580233793836,0.2412327311370882,0.2210414452709883,0.2282678002125398,11.31483758052817,5.997564353373731,20.405353703807307,12096.913118241177,53.59587659683673,13.535161004840209,16.534635424963675,11.687991958204506,11.838088208828353,0.573432518597237,0.8035242290748899,0.7177197802197802,0.5903846153846154,0.1182495344506517,0.7299484915378955,0.9216152019002376,0.9017632241813602,0.7509157509157509,0.1529850746268656,0.5098625224148237,0.7338935574229691,0.6487252124645893,0.5332464146023468,0.1066997518610421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0042770559260535,0.0066251369668438,0.0086329473898029,0.0106977973926661,0.012767387165416,0.0149740578779446,0.017108500148015,0.0191973503976447,0.0214554053085749,0.0236711261469065,0.0256626171967261,0.027967208730624,0.0300411056280713,0.0323432888191706,0.0342785077064618,0.036517668503252,0.0384411810492449,0.0403651790541945,0.042176459553536,0.0566695910097338,0.0705852800803818,0.0834487679973135,0.0961961382648498,0.1079803288376707,0.1229876906467967,0.1353733118151703,0.1473038327971536,0.1579751814363129,0.1679182132206226,0.1817280544839328,0.1942820012995451,0.2056749167374126,0.2158226115521489,0.2256980778763011,0.2359495748007051,0.2451522154124384,0.2538712581589016,0.2617195926384268,0.2699429383321493,0.2778343595203926,0.2841383666927927,0.2906587095781085,0.2962243564380178,0.3011353966594539,0.3056172291296625,0.3104553880066129,0.3147102223579097,0.3190692247861031,0.3214658578810345,0.3201548505449444,0.3193780069202244,0.3185066952935194,0.3181015260765065,0.3166490494126754,0.3135552931433741,0.3119736592161084,0.3138348479380597,0.3143412107478148,0.3155054498824535,0.3158523830868071,0.3172639334896274,0.3185463659147869,0.3197997899582151,0.319730510105871,0.3209497279425164,0.3215622872702519,0.3236075929574382,0.3273952984735757,0.3318603274807654,0.3341525578008374,0.3403521799087727,0.3434965738354184,0.3479587943533003,0.3505590528986188,0.3574639224035959,0.3563270899954317,0.3633791430881164,0.3628854625550661,0.3620015637216575,0.0,2.2320973020113275,59.67730774730928,170.63473929638957,248.83431272864496,fqhc2_80Compliance_implementation_low_initial_treat_cost,2 -100000,95671,45027,427.0364060164522,5753,58.92067606693773,4515,46.70171734381369,1780,18.30230686414901,77.2498286400838,79.64839183209695,63.26585613190741,65.03884206524552,77.02504961900874,79.42411635425256,63.18222859642988,64.9573225368067,0.2247790210750651,224.27547784438676,0.0836275354775324,81.51952843881816,180.38966,126.36240327393264,188552.07952253037,132080.15310170545,380.99877,248.6616864334883,397746.2972060499,259421.1264470191,385.96865,187.25647005054307,400536.8502472013,193462.6247642309,2961.44734,1361.9994630489723,3066825.851093853,1395005.9033100945,1048.22498,467.4093814773956,1084309.466818576,477223.2288255497,1734.98396,726.1989906880137,1786001.024343845,735550.5346257652,0.37771,100000,0,819953,8570.549069205925,0,0.0,0,0.0,32589,340.1135140220129,0,0.0,35218,365.17858076115016,1481062,0,53210,0,0,7093,0,0,58,0.6062443164595331,0,0.0,0,0.0,0,0.0,0.05753,0.1523126207937306,0.3094037893273075,0.0178,0.3444333996023856,0.6555666003976143,24.18637933946984,4.293522270409779,0.3136212624584718,0.2451827242524916,0.2256921373200442,0.2155038759689922,11.208207454523906,5.897048607902082,18.914212149492005,12035.02156500607,51.52397984341273,13.440581521080247,16.204693648120863,11.395208165471242,10.483496508740371,0.5616832779623477,0.7877145438121048,0.6913841807909604,0.5711481844946026,0.105858170606372,0.7354116706634692,0.9081885856079404,0.8727735368956743,0.7110266159695817,0.125,0.4950980392156863,0.71875,0.6217008797653959,0.5224867724867724,0.1011523687580025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024818671745208,0.0047156895555082,0.0070137331127373,0.0090631985368827,0.0111381228957085,0.0136170126087222,0.0156218134355753,0.0177668862000306,0.019932501534056,0.0221833041447752,0.024514580533987,0.0264098613251155,0.0283685753974378,0.0305700710140894,0.0325934338220111,0.034770557756151,0.0365876404028681,0.0386412242270717,0.0404178067227765,0.0427271115930393,0.0573706261558232,0.0709356510812084,0.0838230972671172,0.0963478919624162,0.1080085689260349,0.1234271321685204,0.1353147929873743,0.1471729076532895,0.1581233152197167,0.1686503673785072,0.181712251173329,0.1943074003795066,0.2054519681605059,0.2165968368175137,0.2260741918038034,0.2358581762019578,0.2444757874941232,0.2529640701675221,0.2619424304852092,0.2691803956710553,0.2752758100104517,0.2817205816712477,0.2878555551593386,0.2936979642908706,0.2985933347960701,0.3035126777983921,0.3076749208900497,0.3123187943035954,0.3166681824678108,0.3199242594774963,0.3194226714957565,0.3176335835725326,0.3164596317180367,0.3151622350450894,0.3136390052004947,0.3109045164457535,0.3076801166439507,0.3081237561063868,0.3084427253589827,0.3094210554590548,0.3101038751244435,0.3118650109916226,0.3119025658225725,0.3129846264174622,0.3154150388269908,0.3161239906225579,0.3168243684823686,0.3195444020276613,0.3222156253274194,0.3267451972487943,0.3297319289363049,0.3327723136801136,0.3366039622523592,0.3385755330409798,0.3387743680626807,0.3413489736070381,0.3422808613891416,0.3453587353060397,0.3404663923182441,0.334216502649508,0.0,1.851261906681234,55.14842587953571,171.20058643446174,240.44547974664837,fqhc2_80Compliance_implementation_low_initial_treat_cost,3 -100000,95748,45088,427.74783807494674,5859,60.0221414546518,4681,48.335213268162256,1822,18.66357521828132,77.32698317968122,79.687275624404,63.31555014592704,65.06150643366422,77.1011423622099,79.46176586269895,63.23123368844755,64.97944043276607,0.2258408174713224,225.509761705041,0.0843164574794883,82.06600089815197,180.29594,126.2462396723306,188302.5650666332,131852.61276719155,380.30104,247.41166485963396,396625.8511927142,257835.62713743895,382.38362,184.87524328016903,395670.7711910432,190250.40904078376,3036.71492,1390.2392305001547,3137833.040899026,1418297.6210040818,1075.52677,481.3266843582402,1106851.5373689267,486438.7827601716,1774.40534,746.1248827773941,1819539.165308936,752010.6712038993,0.3808,100000,0,819527,8559.207503028783,0,0.0,0,0.0,32341,337.17675565024854,0,0.0,35090,362.8065338179387,1490866,0,53547,0,0,7051,0,0,67,0.699753519655763,0,0.0,2,0.0208881647658436,0,0.0,0.05859,0.153860294117647,0.3109745690390851,0.01822,0.3477058249267816,0.6522941750732184,24.115975817697908,4.273944069231315,0.3300576799829096,0.2450331125827814,0.2140568254646443,0.2108523819696646,11.34280218430297,6.073186432514964,19.258351022616807,12080.11821603426,53.1084104414184,13.876360174514012,17.55547789365399,11.003978503697471,10.672593869552925,0.5680410168767357,0.7872711421098518,0.6990291262135923,0.5808383233532934,0.0952380952380952,0.7368839427662957,0.9160997732426304,0.8625592417061612,0.6767676767676768,0.1269035532994923,0.5059888986269354,0.7067988668555241,0.6375779162956366,0.5572139303482587,0.0873417721518987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020870269996454,0.0043803613798138,0.0064652984998883,0.008899544863459,0.0111568777015001,0.0132681635354615,0.0153566912754415,0.0177714717350917,0.0199807857405666,0.0220366219383629,0.0241160192682176,0.0262995811776299,0.0282266354179515,0.030170416516501,0.03228768013534,0.0342639856165657,0.0363901772403511,0.038388532190978,0.0402635736260081,0.0422535211267605,0.0566638480891088,0.0705296523731313,0.0843834524982701,0.0971197308945653,0.109364953886693,0.1245823994587051,0.1370365657079833,0.148647353796033,0.1597652742742314,0.1694305801534911,0.1822620805622325,0.1950157585209734,0.2059655690251811,0.2165326330762076,0.2256349284982991,0.2353038986376384,0.2442773675332074,0.2530552020093937,0.2612894064186311,0.2684998395305121,0.2753045814610645,0.2822369037578484,0.2887964247187548,0.2949656695635473,0.3009804398598676,0.3056360787990181,0.3101538615747005,0.3148369842078451,0.3189534522081692,0.322697281604645,0.3218641466763589,0.3203918223591888,0.3183987834584137,0.3160609782530164,0.3146863534409768,0.3126800269657412,0.3106477963525836,0.3110677318285461,0.3114211074495877,0.3118141655978338,0.3129849490511358,0.3139216034404529,0.3146288804577944,0.3153239675697407,0.3165165165165165,0.3169384671494816,0.3170197639698563,0.3199171816670326,0.3249098736481047,0.3290513833992095,0.3312505659693924,0.3341611624834874,0.3388176415389428,0.3395513933992901,0.3411336938280813,0.3425654265931229,0.3420532319391635,0.3462235649546827,0.3468992248062015,0.351981351981352,0.0,2.078822138552665,55.07779234676256,179.68803353064504,250.36402490165307,fqhc2_80Compliance_implementation_low_initial_treat_cost,4 -100000,95759,45240,429.0458338119655,5949,60.97599181278,4717,48.674276047160056,1873,19.141803903549537,77.39144353273707,79.72988893736066,63.36142006586866,65.08705226777096,77.15636435620222,79.49771511218661,63.27383134514226,65.00331034951815,0.2350791765348532,232.17382517404417,0.0875887207263943,83.7419182528123,179.00938,125.40634386829706,186936.47594481983,130959.57157081012,381.06687,248.4151929592407,397341.9417496006,258817.11588832637,388.61185,188.69832320731763,402298.3740431709,194281.4851877829,3040.04067,1410.2450517276177,3136337.117137815,1434544.267554978,1083.19805,484.7479072823945,1115512.192065498,490643.7125777365,1825.95098,769.2510606807127,1867455.2365835067,770128.1541693112,0.38114,100000,0,813679,8497.112542946355,0,0.0,0,0.0,32584,339.6338725341743,0,0.0,35480,366.9837822032394,1497805,0,53743,0,0,6918,0,0,73,0.7623304336929166,0,0.0,1,0.0104428826533276,0,0.0,0.05949,0.1560843784436165,0.3148428307278534,0.01873,0.3302429667519181,0.6697570332480819,23.999217295219328,4.233620689296807,0.323934704261183,0.2490990036039856,0.2177231291074835,0.2092431630273478,11.311382875982666,6.049997496147162,19.916978491957146,12182.977748382458,53.91463222619785,14.242069499654548,17.19087778766374,11.624417437836662,10.857267501042909,0.5709137163451347,0.7846808510638298,0.7041884816753927,0.5647517039922103,0.116514690982776,0.7397157816005984,0.9320594479830148,0.8589743589743589,0.7034220532319392,0.1408450704225352,0.5041420118343195,0.6860795454545454,0.6511423550087874,0.5170157068062827,0.1098191214470284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024805605054268,0.0048947576436251,0.0072441711815912,0.0094961456820466,0.011713149840876,0.0136796677794967,0.0159160383126146,0.0181606709245618,0.0200839726629141,0.0221312733411776,0.024149837600795,0.0263462978732135,0.0282470201397451,0.0303616640250303,0.0324928354947116,0.034419354172262,0.0365655499322093,0.0384890631320202,0.0407688069770584,0.042502656416026,0.0578380409594789,0.0724390499110599,0.0858371800251783,0.098785297365515,0.1108498523829607,0.1266430497541373,0.1380136804708627,0.1492191157070513,0.1604993645809972,0.1704953530502642,0.183343919217147,0.1951092893219844,0.2067713711211347,0.2168920838158498,0.2257656706901479,0.2365380784808445,0.2459392871874338,0.2545581181122707,0.2633022739123535,0.2710278235401794,0.2775068189172946,0.2847292828010144,0.2915267464409024,0.2968738771110312,0.302703096185577,0.3073865314561386,0.3122179863758515,0.3162594283824521,0.3206511892745295,0.3245031366967157,0.3230320464566082,0.3210371631829044,0.3194629929008223,0.3189397979332113,0.317904344218574,0.31495270064083,0.3127584356554401,0.313863718145834,0.3153987604712933,0.3163096319247823,0.3170845808383233,0.3180013824429742,0.3193647068683736,0.3215172876804297,0.3223054866147803,0.322907419978069,0.3229139977794859,0.3271457337024918,0.3306590661177381,0.3335321721148492,0.3384039102827646,0.3402551646826456,0.3446792357332658,0.3470790378006873,0.3495728902656528,0.3581263975520772,0.3610440555220278,0.3598,0.3596419853539463,0.3606370875995449,0.0,2.1734652979683906,58.59958017475668,176.3998729245245,250.35636795870568,fqhc2_80Compliance_implementation_low_initial_treat_cost,5 -100000,95719,44798,424.2731328158464,5922,60.55224145676407,4704,48.46477710799319,1835,18.742360450903167,77.37264048070351,79.73167158975366,63.34029949113111,65.08188635595191,77.1425426260864,79.50576702058498,63.2544860576536,65.00050226792143,0.2300978546171137,225.9045691686765,0.0858134334775115,81.38408803047525,178.409,124.87779542326344,186388.28236818188,130462.91271666382,376.28312,245.2267457775328,392436.182993972,255525.85327363576,384.17032,186.1203341194865,397229.5364556671,191216.03305568133,3067.37874,1422.548794480809,3162554.3309060894,1444680.9670540206,1134.02339,510.9920449783826,1165787.8686572153,514990.9695192194,1789.09406,753.8700340795116,1829461.1937024,753428.5001809655,0.37897,100000,0,810950,8472.194653099175,0,0.0,0,0.0,32125,334.9178324052696,0,0.0,35209,363.6686551259416,1502460,0,53985,0,0,7001,0,0,58,0.6059403044327668,0,0.0,0,0.0,0,0.0,0.05922,0.1562656674670818,0.3098615332657886,0.01835,0.3403570854109699,0.6596429145890301,24.110122253756757,4.308186475486592,0.3150510204081632,0.2485119047619047,0.2257653061224489,0.210671768707483,11.24394496061883,5.953688541389277,19.43418034724884,12102.901666614787,53.87155085182916,14.336655945888465,16.99446776376368,11.708064658297609,10.8323624838794,0.5801445578231292,0.7869974337040205,0.717948717948718,0.5875706214689266,0.1220988900100908,0.7416413373860182,0.9066390041493776,0.8438287153652393,0.76,0.1556603773584905,0.5174144037780402,0.7030567685589519,0.6718894009216589,0.5412186379928315,0.1129653401797175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024,0.0046821318901827,0.0069488825993893,0.0093536724081897,0.0114896948621745,0.0135187409654498,0.0156874337437821,0.0176989343894173,0.0199127030369938,0.0219167144378019,0.0239303620313124,0.0264373716632443,0.0284418669216768,0.0304740522559449,0.0325186476699439,0.0346128405473562,0.0367651626529724,0.0385852090032154,0.0406701797054452,0.0428913654827622,0.057564398408704,0.0719666848030804,0.0853167529934783,0.0982331486950946,0.1103766722540244,0.1256924768469573,0.1385100019091661,0.1490629689146189,0.159623661081387,0.1702166452166452,0.1828903153541271,0.1949079183708801,0.206449858603437,0.2162717945352322,0.2258387526271195,0.2356160740995158,0.2452893373816753,0.2537607530513894,0.2623394031647942,0.2703170689754028,0.2779019019946054,0.2840472846441947,0.2893657866047305,0.2950205825522364,0.2995950924721246,0.3045660861413982,0.3095250018779578,0.3137918314911154,0.3175400225187332,0.3210570038371771,0.3194877865059722,0.3180287304969413,0.3164271943033254,0.3155865534569398,0.3149875252465249,0.3138008080313418,0.3120494498545592,0.3118020366999557,0.3113617391008058,0.3127222301237377,0.3140167753960857,0.3153404623368454,0.3157235330966799,0.3146400106861391,0.3162282593071726,0.3177288768943325,0.3182565323357705,0.3212936659070334,0.3245531514581373,0.3278984795505441,0.332204767063922,0.3338083927157561,0.3386904388222738,0.3392884178652536,0.3429290106204583,0.346262341325811,0.3524590163934426,0.3500904886386487,0.3555555555555555,0.3487394957983193,0.0,2.5723095930973336,57.37759168583781,182.9038714686324,244.1164193191259,fqhc2_80Compliance_implementation_low_initial_treat_cost,6 -100000,95753,44820,424.7282069491295,5753,58.95376646162522,4548,47.01680365106054,1787,18.34929453907449,77.33281654085012,79.69872425513513,63.319784280511655,65.07089438494621,77.11677195430791,79.4820349712968,63.24006124758955,64.99310507232043,0.2160445865422104,216.68928383833477,0.0797230329221037,77.78931262578226,180.5947,126.54778650154958,188604.7434545132,132160.64927631468,377.36301,245.5563630131637,393622.5183545163,255969.758663607,379.78493,184.01087267136768,393439.8295614759,189748.1124103423,3014.70954,1380.1039582060491,3119410.33701294,1412303.9468278263,1094.90509,484.4866306653715,1134618.675132894,497125.8975336236,1759.8809,729.4104443624589,1809192.6728144288,738031.2044273284,0.37717,100000,0,820885,8572.942884296053,0,0.0,0,0.0,32283,336.6474157467651,0,0.0,34691,359.1845686297035,1491873,0,53485,0,0,6951,0,0,54,0.5535074619071987,0,0.0,0,0.0,0,0.0,0.05753,0.152530689079195,0.3106205458021902,0.01787,0.3358147229114971,0.664185277088503,24.677927242763847,4.30796712604023,0.3128847845206684,0.2350483729111697,0.2260334212840809,0.2260334212840809,11.422307164117637,6.043296344801606,18.811875545660413,12084.863394439177,51.49497509272324,12.87349904161782,16.12057432524159,11.37133685945345,11.12956486641038,0.5736587510993844,0.8016838166510758,0.7203092059030218,0.5924124513618677,0.1147859922178988,0.751628664495114,0.929440389294404,0.8506666666666667,0.7755102040816326,0.1624365482233502,0.5078313253012048,0.7218844984802432,0.6736641221374046,0.5351213282247765,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023508192402395,0.0044932195997687,0.00701594070464,0.0093005763307955,0.0117303544540756,0.0137915580182529,0.0159393834324233,0.0180908626850433,0.0203165579436003,0.0223837804628302,0.0245855418969211,0.0266151887296176,0.0285329439828905,0.0305870236869207,0.0327686180640102,0.0346474272838153,0.0365575807787903,0.0385633191851475,0.0405735616765969,0.0425356808000833,0.0575228629891009,0.0721160888033311,0.0850548436484134,0.0978743087824057,0.1100301452452726,0.1257547080033413,0.1385772159416293,0.1501931693611043,0.1604379172229639,0.1704915923129718,0.1829918275494492,0.1947437894919068,0.2052135330005546,0.2153392007871863,0.2248949602938912,0.2347919480922116,0.2445180944729001,0.2538292724101063,0.2618628775067812,0.2692840540880935,0.2756709215261946,0.2828885767790262,0.2887391494854517,0.2950638889554815,0.3002454256068816,0.3044904199442704,0.3089978347121919,0.3143115135636978,0.3181164955527648,0.3213819131949484,0.320287475438077,0.3190459159811824,0.3175781305015281,0.3164750736525908,0.3153819862392819,0.3130232486952263,0.3101342908210879,0.3104545156424214,0.3103542373748572,0.3100498930862437,0.3106073359145577,0.3121309662513082,0.3130489335006273,0.3130675353071105,0.3132622683184481,0.3130971285762632,0.3142800182273866,0.3170862009364885,0.3207845063504315,0.325809266899397,0.3292743877504657,0.335541306766997,0.3380396586345381,0.3389663534404365,0.3414474911397127,0.3438456107319369,0.343190779496512,0.3490981963927855,0.3520742358078602,0.3468383188186293,0.0,1.856676269469354,54.03049972227898,167.08906336294586,250.79044956894123,fqhc2_80Compliance_implementation_low_initial_treat_cost,7 -100000,95780,45145,428.75339319273337,6010,61.52641470035498,4736,48.86197536020046,1848,18.8870327834621,77.34910350822409,79.6774420644212,63.34642956891118,65.0665871970451,77.116573667428,79.44728112395403,63.258940556780985,64.98253903843165,0.23252984079609,230.16094046717228,0.0874890121301916,84.04815861344161,179.23334,125.48304302474492,187130.2359574024,131011.73838457392,381.50114,248.0204032575076,397726.41470035503,258364.609790674,380.17917,183.54735687313917,392969.7640425976,188571.39493496792,3081.99564,1410.2578364276374,3179862.0797661305,1434567.9352979106,1101.83205,489.3871590815856,1134179.703487158,494776.7722129882,1806.10282,764.2871832725666,1848059.4278555023,765556.3238457621,0.38046,100000,0,814697,8505.919816245563,0,0.0,0,0.0,32584,339.5907287533932,0,0.0,34742,358.82230110670287,1499345,0,53819,0,0,7163,0,0,73,0.7621632908749217,0,0.0,0,0.0,0,0.0,0.0601,0.157966671923461,0.3074875207986688,0.01848,0.3419426398352083,0.6580573601647917,24.25727640032802,4.235493658791797,0.3236908783783784,0.2430320945945946,0.2176942567567567,0.2155827702702702,11.038005441091334,5.780091451879073,19.718557527188477,12088.912576266574,53.7158650647621,13.914876457938526,17.241331738069945,11.46398561125006,11.095671257503568,0.5644003378378378,0.8053866203301477,0.6771037181996086,0.5586808923375364,0.1292850146914789,0.734789391575663,0.920704845814978,0.8397932816537468,0.6722689075630253,0.1921182266009852,0.5011580775911986,0.7302725968436155,0.6221640488656196,0.5245901639344263,0.1136919315403423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050226830848,0.0041253205485561,0.0064420569944507,0.0086438939167707,0.0105543579940619,0.0124496111405187,0.014401027334434,0.016890340358218,0.0192400044958056,0.0213930551861021,0.0236343892144408,0.0257462724856594,0.0276653032700963,0.0298277033285987,0.031745213473415,0.0338676692350596,0.0359888660092507,0.0378158666956999,0.0397963424771404,0.0416948693651008,0.0562060401143739,0.0705858974627146,0.0833001321059363,0.0961914370389053,0.1084871859720114,0.1242180235015639,0.1372698654965181,0.1490646900556187,0.1596943566976863,0.1700559281719416,0.1829287982347559,0.1948734587929915,0.2063854543872813,0.2166504434941432,0.2253669916587803,0.2356772564136647,0.2451532975434445,0.2533873053353573,0.2619217808638823,0.2696010531738309,0.2768647135702802,0.2837173938472336,0.2891560562313627,0.2941148279497747,0.299644205899139,0.3047117707973766,0.3095774506858916,0.3152407744497766,0.3198724760892667,0.3234093700881005,0.3222885478285475,0.3202771006349075,0.3186525212392747,0.3173092201245143,0.3163559171070601,0.3143915052480186,0.3122944078947368,0.3128997343304142,0.3141502353824111,0.3138798165301351,0.3152603298822384,0.3157603322127744,0.3165060745705907,0.3182774519897936,0.3186693985777992,0.3197542162374167,0.3205491205491205,0.3251010611419909,0.3283571579466234,0.3305023923444976,0.3317498743890741,0.3334042440036164,0.3372063492063492,0.341541755888651,0.3433090254758973,0.3461446360153257,0.3493584788993662,0.3495719527109661,0.3490174370329366,0.3613081166272656,0.0,2.2719906419199294,56.00007468875205,175.18628454739465,260.3555486204934,fqhc2_80Compliance_implementation_low_initial_treat_cost,8 -100000,95665,44916,426.6346103590655,5791,59.40521611874771,4558,47.0496001672503,1797,18.35572048293524,77.31532774038504,79.7060778037277,63.31028192710126,65.07582211436625,77.0867620268415,79.48110559825962,63.22526706646313,64.99488595159757,0.2285657135435457,224.9722054680774,0.0850148606381253,80.93616276867976,180.26998,126.2723860618357,188438.57210055925,131994.11076343042,381.28124,248.36325579034784,397970.3235248001,259029.2434958949,383.09877,185.28082758535024,397242.1679820206,191173.76684346577,2975.79363,1372.8355096242915,3074285.8203104585,1398690.6492701534,1097.34921,488.41973899284767,1132081.064130037,495571.8813432138,1755.44132,741.8003062666367,1795920.5352009616,742367.9254288091,0.37821,100000,0,819409,8565.38964093451,0,0.0,0,0.0,32583,339.9780483980557,0,0.0,34974,362.2850572309622,1489827,0,53460,0,0,7119,0,0,68,0.7108137772435059,0,0.0,0,0.0,0,0.0,0.05791,0.1531159937600803,0.3103091003280953,0.01797,0.3377265238879736,0.6622734761120264,24.32779779570456,4.271764551251771,0.3187801667397981,0.2439666520403685,0.2204914436156209,0.2167617376042123,11.354082685520602,6.016455056111239,19.09659515682561,12023.668545667711,51.90686481632206,13.218356284371271,16.587787403303988,11.23514288086724,10.865578247779553,0.5719613865730584,0.7787769784172662,0.7102546455609084,0.5930348258706468,0.1143724696356275,0.7570621468926554,0.9365853658536586,0.8676470588235294,0.75,0.1502590673575129,0.5028623079240735,0.6866096866096866,0.6488038277511962,0.546975546975547,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0044303412477949,0.0065862915829426,0.0086460894479101,0.0105183919270833,0.0128749681690858,0.0152176573783199,0.0175169807466421,0.0199314823336912,0.0222213119790279,0.0242651734252251,0.0263068689587164,0.0282695690639563,0.0304997424008243,0.0325344233190892,0.0345637132721763,0.036575004662536,0.0385361854054446,0.0401293959787391,0.0421990620114643,0.0568783759781847,0.0711159508303143,0.0838939910784571,0.0966367099530654,0.1084820533386805,0.1237217082001228,0.1367545871559633,0.1484826858962751,0.1593894631080517,0.169133510073093,0.1822738149130181,0.1941027418027461,0.2049311489685952,0.2148313524635016,0.2245376744390964,0.234750585129394,0.2440155043955184,0.2527518289251547,0.2605792921780795,0.2685580009170105,0.2748129618048317,0.2819621475473156,0.2889209859588473,0.294023799241879,0.2994011976047904,0.3034585576816451,0.3078212989613315,0.3121216745510962,0.315711845986648,0.3189734793508378,0.3180686238877895,0.3165650756085144,0.3147634664377102,0.3132615451326154,0.3130375365784822,0.3109549830861306,0.3084527537882383,0.3084153470777998,0.3101396395628378,0.3110010334628131,0.3114025255921692,0.3125788892395077,0.3142031897526058,0.3138503474316866,0.315107671601615,0.3165681243976767,0.315479761190619,0.3189532568502892,0.3210652726758971,0.3252535739956873,0.3292772186642269,0.331503490912967,0.3353179630098809,0.3403306420607458,0.3412412222433099,0.3409742120343839,0.3439926907263591,0.3446282639027307,0.343492586490939,0.3429220287660863,0.0,2.2585537968365528,54.09935248767235,174.35622896569302,244.2048021144683,fqhc2_80Compliance_implementation_low_initial_treat_cost,9 -100000,95626,45032,427.2059900027189,5847,59.941856817183606,4584,47.35113881162027,1787,18.31091962436994,77.3146043072854,79.73418870826262,63.296484254502126,65.08320293322376,77.09003185820063,79.51007151606892,63.212796833100256,65.00213672002339,0.2245724490847749,224.1171921937024,0.0836874214018692,81.06621320037277,178.80698,125.18155850658742,186985.73609687743,130907.45038649262,379.37276,247.37221814962396,396165.6453265848,258127.30653757768,381.44724,185.2508619417709,394850.62639867817,190715.04721943784,2993.70985,1377.660006806342,3095083.701085479,1405399.0607981356,1064.38019,473.93186344460855,1098967.8643883462,481542.45931653655,1751.62166,740.6986692513318,1797005.3541923745,746041.2181166377,0.38022,100000,0,812759,8499.351640767154,0,0.0,0,0.0,32407,338.29711584715454,0,0.0,34752,359.37924832158615,1496618,0,53677,0,0,7156,0,0,66,0.6901888607700835,0,0.0,1,0.0104574069813649,0,0.0,0.05847,0.1537793908789648,0.3056268171711989,0.01787,0.3416516171400426,0.6583483828599573,24.33337574726582,4.298404530615695,0.3200261780104712,0.2449825479930192,0.2166230366492146,0.2183682373472949,11.210484536026996,5.792781114508779,19.15349373457916,12111.47994343686,52.204770464106325,13.544131515264588,16.69329254241139,10.94807475517926,11.01927165125109,0.5650087260034904,0.7916295636687445,0.6993865030674846,0.5790533736153072,0.0999000999000999,0.7287066246056783,0.9132530120481928,0.84,0.7330677290836654,0.1237623762376237,0.5024125452352232,0.7203389830508474,0.6466729147141518,0.5269541778975741,0.0938673341677096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0043707091500948,0.0063142079831079,0.008565767413504,0.0109965006510416,0.012955795477694,0.0150141267428932,0.0171621207477781,0.0191672377289789,0.0212901045560209,0.0234564102564102,0.0254853620955315,0.0276940486600483,0.0299211787131008,0.0320402981068973,0.0343387135131781,0.0366072261193024,0.0388820249800139,0.040943095859909,0.0428556528994576,0.0570705856529146,0.0708045254556882,0.084448178095138,0.0968967767742478,0.1093576819549269,0.1245539543206869,0.1367846369545821,0.1480025148386134,0.1592661924372894,0.1688313083459559,0.1817093168774004,0.1937354359724706,0.2051472030334067,0.2157208588957055,0.2251870956364558,0.2350467186008833,0.2448313627321696,0.2542076921343758,0.2626664243195347,0.2704317412992374,0.2773102434394064,0.2836002480025268,0.2898041304219184,0.2947064323559732,0.3002452170535107,0.3063431457075994,0.311196988456584,0.3162477912106072,0.3204864480238049,0.3233179893691388,0.3224547473252136,0.3203233478601575,0.3186070100304294,0.3171782600523401,0.3167749899608846,0.3147552040221956,0.313256639411802,0.3134777673592261,0.314921102677883,0.3150310203643775,0.3157973508942602,0.3161365246830958,0.3175149014213663,0.3195118692379637,0.3206203551031137,0.321903284199638,0.3237666638362911,0.3269746275169877,0.3296186662023332,0.3319798155010644,0.335078297757119,0.3378848587094053,0.3422412706416236,0.341943325989516,0.3426645445183035,0.3464323875103882,0.3502781211372064,0.3557046979865771,0.354679802955665,0.3542635658914728,0.0,2.32046040845684,55.41228529841634,171.90124609779332,245.76923502795728,fqhc2_80Compliance_implementation_low_initial_treat_cost,10 -100000,95656,45281,428.08605837584673,5902,60.65484653341139,4698,48.64305427782888,1758,18.04382370159739,77.29129418892526,79.6909601488803,63.29829466637945,65.07001589873683,77.06293443017836,79.46359847945445,63.21323713944742,64.98778059718772,0.2283597587469046,227.3616694258465,0.0850575269320259,82.23530154910463,178.7533,125.22886379015628,186870.9751609936,130915.84823759751,379.99856,247.718910167713,396796.83449025673,258510.00477514535,387.35255,187.7694889451382,402311.5957179895,194261.188435568,3050.48793,1404.4213709431588,3157662.9484820603,1436844.0149527043,1115.36757,498.4531058514696,1149538.8475370076,504608.614045611,1721.654,735.633758653077,1767518.1274567198,740480.0992091155,0.38055,100000,0,812515,8494.135234590616,0,0.0,0,0.0,32489,339.15279752446264,0,0.0,35403,367.4207577151459,1494591,0,53675,0,0,7020,0,0,52,0.5436146190516016,0,0.0,0,0.0,0,0.0,0.05902,0.1550913152016818,0.2978651304642494,0.01758,0.3396440129449838,0.6603559870550162,24.288929415747653,4.221451378513869,0.323541932737335,0.2526607066836951,0.2100893997445721,0.2137079608343976,11.21616239858907,5.853633977744966,18.99541766160333,12209.521979175595,53.62839275045451,14.3978499895034,17.127592472554998,11.005426736210016,11.0975235521861,0.5727969348659003,0.7893850042123,0.7032894736842106,0.574468085106383,0.1175298804780876,0.7297501892505678,0.8930131004366813,0.8938271604938272,0.676595744680851,0.1524663677130044,0.511400651465798,0.7242798353909465,0.6340807174887892,0.5425531914893617,0.1075544174135723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023196215674159,0.0045219507249315,0.0070237406493915,0.0093689665684381,0.0117815828831303,0.0143810154300555,0.0165589248934478,0.0188902730410276,0.0210821200719777,0.0231093727602236,0.0252379194355566,0.0273195982170367,0.0296175133222229,0.031809657275931,0.033995065398949,0.0358587164503283,0.0379828170502948,0.0400166130204547,0.0422025221625671,0.0444025104776997,0.0587946367921077,0.0730716051451795,0.0858699875048563,0.0981622213333894,0.1100897097625329,0.126059759311593,0.1387579617834395,0.1495691445735649,0.1599918747861785,0.1704973644942083,0.1827953511438859,0.1956168655391212,0.2065261164382816,0.2169686353932891,0.2268324131318808,0.237407678488256,0.2472237738800134,0.2566671544843579,0.2644043550822538,0.2718376513996952,0.2780793851069001,0.2854987014810135,0.2914100985221675,0.2969248482813212,0.3019313095933061,0.3074141718291088,0.3112884834663626,0.3159644809091256,0.3198667167991287,0.3245205316719684,0.3229304167452385,0.3218181818181818,0.3208768885691311,0.3199235934244038,0.3175770203899389,0.3151309527464767,0.3130757400390037,0.313701290152712,0.3149321731981365,0.3152055260285249,0.3154218767601667,0.3168073554472318,0.3174649839356586,0.3175079500156761,0.3187190698121366,0.3209069846145836,0.3224132062627637,0.3261517232728071,0.3288517569417629,0.3318228794021782,0.336565601383957,0.340197998835301,0.3430767292427869,0.3461833231146536,0.3500994600738846,0.3565092304003836,0.3588153202046829,0.3563028677532494,0.3573014991671294,0.3597259231062047,0.0,1.868004893905155,58.41133078951847,173.79767772863548,252.2339641871655,fqhc2_80Compliance_implementation_low_initial_treat_cost,11 -100000,95643,45210,430.0994322637308,5855,60.08803571615277,4609,47.72957770040672,1856,19.123197724872703,77.27514686010801,79.68680338989171,63.27600815666828,65.05657604799279,77.04315991374538,79.4532355676445,63.19004084480575,64.97182420654829,0.2319869463626247,233.56782224720973,0.0859673118625323,84.75184144450054,180.93262,126.77647303815236,189174.97359974068,132551.75291255227,386.04997,251.37564791270145,403202.1162029631,262392.7291204808,384.97136,186.3149231827177,399449.5153853392,192479.7453648219,3014.51052,1377.3711316407612,3124223.9473876813,1412504.962873143,1117.59908,494.7686971912656,1158046.7153895216,506843.4043173736,1814.27464,760.3864645000914,1870774.7770354336,772440.3328808738,0.38139,100000,0,822421,8598.86243635185,0,0.0,0,0.0,32912,343.64250389469174,0,0.0,35203,365.0031889422122,1479446,0,53043,0,0,7064,0,0,69,0.7214328283303535,0,0.0,0,0.0,0,0.0,0.05855,0.1535173968903222,0.3169940222032451,0.01856,0.3394465367610938,0.6605534632389062,24.431890475999356,4.300888461067251,0.3226296376654372,0.2382295508787155,0.2145801692341072,0.22456064222174,11.26916149158768,5.874522943395851,19.783351112660277,12086.392161753423,52.424537143198606,13.394862630384598,16.768283296949225,10.933396816196597,11.3279943996682,0.5636797569971794,0.8014571948998178,0.6845998655010087,0.5915065722952477,0.1111111111111111,0.7274900398406374,0.92512077294686,0.8426395939086294,0.7229437229437229,0.1435185185185185,0.5023852116875372,0.7266081871345029,0.6276303751143641,0.5514511873350924,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556545690213,0.0043075925118838,0.0063923697427832,0.0085322498730319,0.0106693518038222,0.0126792406713377,0.0147958559366969,0.0169064123898684,0.0193737028820299,0.0215330111402359,0.0237965802673012,0.0258059213905611,0.0277274784970574,0.0298092086953832,0.0319179694760537,0.0339209235925765,0.0358527332656149,0.0379582511164191,0.0396778322355071,0.0417444443285745,0.0567615305023985,0.071283373150593,0.0847610744036051,0.0974358434115713,0.109558365286096,0.1247934759584833,0.1376558232462246,0.1487996247494776,0.160095464372097,0.1699054170249355,0.1826474652387943,0.1952110873737976,0.2068630977686211,0.2175810678919606,0.2271001633337747,0.2373092217803745,0.246679125773565,0.2555649574096011,0.2632213863820005,0.2708220892711551,0.2773144335278219,0.2837376733932906,0.2888917886545351,0.2944807378230377,0.2993832792030069,0.3038499506416584,0.3092757656675066,0.3134617344339142,0.3182720888877351,0.3217417759024351,0.3200394093988717,0.318414956982131,0.3175957794955707,0.3162942069863311,0.3148723590894899,0.3128016547920018,0.309943649487147,0.3110782865583456,0.3115935854394246,0.3119020896798674,0.312929500983054,0.3142642820482451,0.314796986186689,0.3161715434442707,0.3178391356542617,0.3185626561199001,0.3196418419556566,0.3218166970287078,0.3246953895853084,0.3284228081321474,0.3285129604365621,0.3305345945371453,0.3364098700320211,0.3413395969086225,0.3463639788997739,0.3471576689309975,0.3457340507302075,0.3478526358640342,0.3518980326960377,0.3604651162790697,0.0,1.7685247137605538,55.50114150072351,171.3950399286037,251.87113975983715,fqhc2_80Compliance_implementation_low_initial_treat_cost,12 -100000,95689,44956,427.447250990187,5875,60.27861091661529,4631,47.863390776369286,1774,18.204809330226045,77.28391542799022,79.68258213846934,63.28504443165552,65.06000417595247,77.07228972416422,79.47014819786749,63.20638291989957,64.9828678174043,0.2116257038260016,212.4339406018549,0.0786615117559534,77.13635854817369,178.07394,124.7641162632432,186096.56282331303,130385.01422654976,379.76608,247.57468238070672,396344.2715463638,258197.3605960003,384.05022,186.26122951099325,397288.19404529256,191533.2395601336,3008.90906,1379.39591431158,3114440.855270721,1411514.556857716,1066.69249,474.2296966804556,1103449.0902820595,484296.5334875129,1734.38514,725.813670329961,1782865.721242776,735257.7941956208,0.37936,100000,0,809427,8458.934673786956,0,0.0,0,0.0,32458,338.64916552581803,0,0.0,35091,362.8212229200849,1499457,0,53800,0,0,7078,0,0,68,0.7001849742394634,0,0.0,1,0.010450522003574,0,0.0,0.05875,0.1548660902572754,0.3019574468085106,0.01774,0.3373944119558155,0.6626055880441846,24.10595868728913,4.341429654718998,0.320233210969553,0.2526452170157633,0.2105376808464694,0.2165838911682142,11.595658460215509,6.212158149003724,18.904448614098293,12099.27755112596,52.63194965481686,14.172553920038691,16.61583857653847,10.926922063373375,10.916635094866326,0.5720146836536385,0.805982905982906,0.7046527309507754,0.5764102564102564,0.098703888334995,0.7569875776397516,0.9188034188034188,0.8857142857142857,0.7113821138211383,0.1534391534391534,0.5007478312892611,0.7307692307692307,0.6411657559198543,0.5308641975308642,0.085995085995086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025637907622464,0.0047164070107108,0.0071981887773231,0.0092377109988719,0.0113244406458899,0.0134768967484312,0.0155846805038502,0.0176900763982514,0.0199232932753771,0.022065602655248,0.0240884748753513,0.026057293165098,0.0281845216657577,0.0300416357490312,0.0317416078285643,0.0336522053880759,0.0358112448966903,0.0375560538116591,0.0395485515160971,0.0414803697797788,0.0559269627710692,0.0702051926298157,0.0836481551441883,0.0966309631531323,0.108804626571124,0.1243120237087214,0.1371372753044604,0.14913850020233,0.1602894337444689,0.1709416385842151,0.1831889118813588,0.1958490402530439,0.2067137039698612,0.2166995181778361,0.2260524575710822,0.2367363700941218,0.2460088543064126,0.2537582546372467,0.2618176446525158,0.2696524830829223,0.2765483904621698,0.2834316127595221,0.2898607453799255,0.2953104739951016,0.3017609618965328,0.3063674385895648,0.3108925775133103,0.3151209703078665,0.3189777996528767,0.3231457176399203,0.3213424735020403,0.3200352170802839,0.3189360354654845,0.3169704053215589,0.3158809633470515,0.3126273068381959,0.3099425387428173,0.3095616550594018,0.3105455414447631,0.3113712613320009,0.3122620811221333,0.3130953088179964,0.3144827296234784,0.3168352358099168,0.3170443016570848,0.3186506175095955,0.320104616784171,0.3243285691848594,0.3273083243016467,0.3297536323436513,0.3329554215228334,0.3351105949427229,0.3382316313823163,0.3387446697089848,0.3404314415331914,0.3438012655261308,0.3482345809971208,0.35284618490109,0.3527292878913826,0.3510516252390057,0.0,2.081440676491952,56.58676945243014,168.6976112908265,252.29619272137109,fqhc2_80Compliance_implementation_low_initial_treat_cost,13 -100000,95660,45352,430.0334518084884,5874,60.2028015889609,4629,47.846539828559486,1782,18.23123562617604,77.35161970545354,79.75709568834777,63.31721993396855,65.09394834171455,77.1269404598947,79.53407862401194,63.23322881023244,65.01301491122693,0.2246792455588462,223.0170643358349,0.0839911237361121,80.9334304876188,179.51494,125.68425317851502,187659.3560526866,131386.42397921285,382.42905,249.998178025734,399218.07443027385,260778.9442041962,391.61501,190.0579112259516,405713.2030106628,195875.64058750524,3024.92808,1404.1412606147808,3126700.3136107046,1432379.99227972,1101.69917,492.89753194104657,1136605.1223081746,500182.7534403575,1745.34058,738.57165723441,1787183.4622621783,741019.7946695723,0.38134,100000,0,815977,8529.970729667573,0,0.0,0,0.0,32709,341.35479824378007,0,0.0,35765,370.3010662763956,1490873,0,53471,0,0,7164,0,0,65,0.679489859920552,0,0.0,0,0.0,0,0.0,0.05874,0.1540357686054439,0.3033707865168539,0.01782,0.335180055401662,0.6648199445983379,24.112085241431373,4.246147971981602,0.3197234823936055,0.2480017282350399,0.2147332037157053,0.2175415856556491,11.433206034729569,6.017188590440426,18.96036726615951,12194.85272892178,52.82949628301749,13.91184332584162,16.820292258531133,11.093038709621055,11.004321989023698,0.5713977100885721,0.7874564459930313,0.6932432432432433,0.5845070422535211,0.1330685203574975,0.750386398763524,0.9356223175965666,0.8523316062176166,0.7229437229437229,0.1848341232227488,0.5019490254872564,0.6862170087976539,0.6371115173674589,0.5425950196592398,0.1193467336683417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694805523753,0.0045327789889976,0.0067286418901089,0.0088799479801674,0.0110366294032082,0.0133326543084131,0.0158976189262224,0.0179820485852283,0.0201329243353783,0.0222370173102529,0.024457804132384,0.02681011981832,0.0290303990779426,0.0311243530794449,0.0331460325985911,0.0351142195000827,0.0371568048257205,0.0393970537855429,0.041366681926006,0.0432828661995328,0.0585254226661929,0.0724973038625441,0.0854159013382314,0.0975525064186203,0.1097333178551452,0.1251190753402908,0.1371555980251632,0.148797151962822,0.1599619112832473,0.1698115233850614,0.1827103509263852,0.1945157690599235,0.2065924974418149,0.21693776133453,0.2270259555770903,0.2375008314302818,0.2465727405785281,0.2554746169175514,0.2643208320559548,0.2723545109897032,0.2794566827101074,0.2858161499976621,0.2922052579916506,0.2980792259424247,0.3026710192590076,0.3073306419850334,0.3120464622494223,0.3163615124812717,0.3202268235658834,0.3250029610328082,0.3244325588270866,0.323403028514161,0.3218137082601054,0.3201026543058579,0.3189684575801165,0.3168581555949398,0.3142550471169479,0.3146525605541999,0.3142062991320362,0.3147893976934457,0.3158475876782572,0.3159533994362199,0.3175001568676664,0.3193565635861331,0.3203790561883794,0.3214313476537196,0.3227799665542359,0.3249796633502284,0.3292946927374302,0.3327280622113449,0.3358546969834224,0.3403674540682415,0.3428055088178475,0.3468247375972211,0.3498694516971279,0.3504222671583204,0.3492014742014742,0.3481242436466317,0.3554298032875236,0.3555140186915888,0.0,2.098596926377845,56.67453340138545,176.49438876425617,243.6561816152321,fqhc2_80Compliance_implementation_low_initial_treat_cost,14 -100000,95798,45165,427.1279149877868,5674,58.2371239483079,4521,46.68155911396897,1787,18.26760475166496,77.3507064425629,79.6786189452326,63.34838135415546,65.06976301327936,77.12879838557258,79.45922627235629,63.26703718267155,64.99178122470522,0.2219080569903155,219.39267287631023,0.0813441714839058,77.98178857413518,178.34608,124.92175978526696,186168.89705421825,130401.21900798238,378.7721,247.1353049111892,394840.3411344705,257429.54436542423,377.74463,183.17923622155,391212.38439215854,188764.90272170524,2944.60749,1336.3844725460783,3041277.521451387,1362512.810858346,1072.61473,469.11432329323486,1104242.4267730017,474270.6040765304,1748.61688,726.6053536917442,1789673.8971586046,728835.5684345714,0.3806,100000,0,810664,8462.222593373557,0,0.0,0,0.0,32359,337.2199837157352,0,0.0,34491,356.99075137268,1503821,0,53943,0,0,7043,0,0,56,0.5845633520532788,0,0.0,0,0.0,0,0.0,0.05674,0.1490803993694167,0.3149453648219951,0.01787,0.3444500589523328,0.6555499410476672,24.650196345293903,4.2484601147184256,0.3165228931652289,0.2419818624198186,0.2231807122318071,0.2183145321831453,10.932448874521423,5.648582538712194,19.104106729105883,12105.965025237168,51.386403814128606,13.165473051153835,16.31221046198669,11.194234447570311,10.714485853417765,0.5655828356558283,0.793418647166362,0.6918238993710691,0.5728444003964321,0.1225937183383991,0.7247557003257329,0.90625,0.8402061855670103,0.6826086956521739,0.1546391752577319,0.5062253264500456,0.724188790560472,0.6366251198465963,0.540436456996149,0.1147540983606557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297273206109,0.004551905920519,0.0069307031162795,0.0091926702421582,0.0116520253782332,0.0139574658698728,0.015979780685663,0.0180424732883632,0.0201927302083652,0.0224314367580843,0.0244584708076316,0.0267807670996737,0.029062956035599,0.0311393395371819,0.0332855566669072,0.0352892561983471,0.0372190720582757,0.039445175870541,0.0413624798795368,0.0433696308480293,0.058087606168743,0.0724270971654416,0.0852437707684728,0.0979087852038671,0.1105923763555312,0.1258957826868195,0.1376688651835514,0.1489305097371501,0.159674630115929,0.1693727293187152,0.1824140343324544,0.1942229138299941,0.2047997740260304,0.2149629694361304,0.2239664061383548,0.2347859750027651,0.2441980948136594,0.2529791654967148,0.2612473800487169,0.2694133391286444,0.2759874839797249,0.2833446174678402,0.2891507872712658,0.2948025992987159,0.2999684626767909,0.3044436238306253,0.309434858121025,0.313452373387558,0.3173789837351034,0.3212403836020655,0.3205863778670572,0.319694429941469,0.3188354815106658,0.317154908418559,0.3157675917264317,0.3131181676210307,0.311784543770484,0.3121866215127652,0.3129746185947868,0.3136750303810136,0.3139567642694814,0.3138524281839599,0.3149789915966386,0.3162081984897519,0.316854582249205,0.3180712810187485,0.3188878400411911,0.3233529151664456,0.3270415889002359,0.3297087070402413,0.3317795448313682,0.3348680336206435,0.3384878636161987,0.3428593377890451,0.3478179082016553,0.3511359581301296,0.3530868017948321,0.3582089552238806,0.3602484472049689,0.3592954990215264,0.0,1.9285929437218643,54.1885997788063,167.43626702137306,247.69849547305665,fqhc2_80Compliance_implementation_low_initial_treat_cost,15 -100000,95753,45115,425.91877016908086,5850,60.112999070525206,4573,47.34055329859117,1767,18.171754409783507,77.31652017658898,79.67725631118066,63.31665033110207,65.06231305902874,77.09956378103372,79.4592359599129,63.23634199372746,64.98369866517022,0.2169563955552576,218.02035126775365,0.0803083373746105,78.61439385851554,180.1261,126.16335404624864,188115.1295520767,131758.95612480928,380.78561,248.23788514019128,397254.9267385878,258829.0513742977,385.36447,186.90713430308645,399629.1813311333,193103.9402403224,2971.71985,1360.9267171460046,3077337.2949150414,1395188.8372691984,1086.17162,481.800594027423,1121185.4041126647,490259.6572287016,1722.39282,720.1508646657701,1772133.8443704117,728532.7198941074,0.38027,100000,0,818755,8550.687706912577,0,0.0,0,0.0,32554,339.5298319634894,0,0.0,35098,363.873716750389,1490332,0,53475,0,0,7141,0,0,72,0.7414911282153039,0,0.0,0,0.0,0,0.0,0.0585,0.1538380624293265,0.302051282051282,0.01767,0.3281402142161636,0.6718597857838364,24.28612588353314,4.309610471108482,0.3159851301115242,0.2466652088344631,0.2263284495954515,0.2110212114585611,11.55613110433996,6.175893552348329,18.81349936473349,12185.50209790335,51.8473715562376,13.517788404511874,16.36228046558137,11.450477719262889,10.51682496688147,0.5738027553028646,0.8031914893617021,0.6955017301038062,0.5855072463768116,0.110880829015544,0.7224919093851133,0.9373493975903614,0.8308080808080808,0.6550218340611353,0.1275510204081632,0.5187293976625712,0.7251051893408135,0.6444232602478551,0.56575682382134,0.106631989596879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023804459031006,0.0046937885868959,0.0068510530322253,0.0092463700376967,0.011566162109375,0.0139734789073798,0.0161749258054317,0.0185145471441847,0.0209098066481937,0.0232096237522395,0.0254798621934213,0.0276311736317897,0.0298415375281499,0.0320554405692337,0.0340907918759734,0.0363792284008017,0.0384547703582556,0.0403082763699731,0.0426381165220102,0.0444530102407567,0.0586429742229832,0.0726939779207869,0.0860336835923572,0.0981893125276019,0.1101433994095318,0.1253410893707033,0.1380532099970297,0.1494842617331786,0.1600482890505646,0.1705179368348781,0.182755277897458,0.1954338887686648,0.2066389770799808,0.216542405492271,0.225549758964538,0.2358579422682697,0.2448558062679335,0.2532544245547317,0.2619196241104969,0.2691532258064516,0.2757838713409695,0.282155638200828,0.2889485892823329,0.2948920863309353,0.3006779743390357,0.3064144148588483,0.3111300276654607,0.3154599025085591,0.3200522957037267,0.323896631823461,0.3234145684664063,0.3216145474583275,0.320758711207079,0.3192733589056958,0.3184313492122528,0.316203292155841,0.3150912631195681,0.314846472483398,0.3162964990931179,0.3174498085388111,0.3190091949709138,0.3195531830763147,0.3207590689872091,0.3226528237715922,0.3236171236171236,0.3242729568590695,0.3246623739244401,0.3274597102903367,0.3298564928246412,0.3322786061780643,0.3343765591690479,0.3383008061094611,0.3414542257942986,0.345095964938794,0.3430390412882689,0.3471958174904943,0.3497552019583843,0.3533440773569702,0.3558062740781508,0.3508435582822086,0.0,1.528010671173624,54.66776806013792,168.39486934152416,252.71799567040057,fqhc2_80Compliance_implementation_low_initial_treat_cost,16 -100000,95680,45525,431.6680602006689,5891,60.44105351170568,4658,48.118729096989966,1856,19.06354515050167,77.40264542862671,79.78472079295351,63.35728834693722,65.11273104039853,77.17694079815553,79.558649124205,63.27436540854297,65.03194198624647,0.2257046304711849,226.07166874850293,0.0829229383942475,80.7890541520635,177.83502,124.53749890083382,185864.36036789295,130160.4294532126,382.12519,248.68375518298717,398833.30894648825,259366.9264036237,387.52528,187.4340377855659,401119.2516722408,192926.97984699372,3045.94153,1390.6156955204458,3148636.705685619,1418572.0793482922,1120.22726,499.66125860152687,1151569.8160535116,502990.29957375926,1808.74086,750.3909455531207,1859050.06270903,757899.6726701985,0.38295,100000,0,808341,8448.380016722407,0,0.0,0,0.0,32546,339.57984949832775,0,0.0,35288,365.0188127090301,1506048,0,53971,0,0,6960,0,0,71,0.7316053511705685,0,0.0,1,0.0104515050167224,0,0.0,0.05891,0.1538320929625277,0.3150568664063826,0.01856,0.3409868099658036,0.6590131900341963,24.285886530699187,4.309739059156366,0.317732932589094,0.2458136539287247,0.2221983683984542,0.2142550450837269,11.47062990211683,6.078206457945631,19.692237297054973,12244.54480275422,52.65568306832649,13.726243324882695,16.657749584962957,11.450213833020538,10.821476325460292,0.5661227994847574,0.7982532751091703,0.6804054054054054,0.5758454106280193,0.1202404809619238,0.7369255150554676,0.911214953271028,0.8552631578947368,0.7217741935483871,0.174757281553398,0.5026501766784452,0.7308228730822873,0.62,0.5298602287166455,0.106060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999756964486,0.0046824166134573,0.0070703996753905,0.0091912698170886,0.0112160746789233,0.0136855181964442,0.015965418455045,0.0181871995590981,0.0203770885493842,0.0222993163862622,0.0244982471965394,0.0266097240473061,0.0287679542673836,0.0307933140403093,0.0329856274697949,0.0351609735930959,0.0370895761930894,0.0390693909740886,0.0410079873533571,0.043116655723353,0.0582489788669863,0.0727897139506638,0.0863501857331738,0.0988755535453197,0.111091189064906,0.1264348359658496,0.139220492577383,0.1506019607634416,0.1615040229086751,0.171788548144971,0.184679494772206,0.1964809384164222,0.2074815137016094,0.2175719408729117,0.2278552022263042,0.2380414687877077,0.2476314674870148,0.2567163843838447,0.2649566842194666,0.2723739855983541,0.2793411514843714,0.2856376214753199,0.2923233110221813,0.297947908445146,0.3035941572216498,0.3086404566254982,0.3126522961574507,0.3165892299489679,0.3208768213289242,0.3252713994341733,0.3245300751879699,0.3233161047970277,0.3220324712684002,0.3204399211136223,0.3198945825498586,0.3173628923903749,0.315570016110181,0.315935236472092,0.316936541179275,0.3172616398112703,0.3180883672248804,0.3187158630987465,0.3193207358694747,0.3202953014164684,0.3211248712482334,0.3214174373895874,0.3237399852264333,0.328659948676222,0.3326682069593222,0.3365635630092556,0.3393490317301573,0.3441054533857765,0.3490755879763552,0.3500113886568977,0.3573915498259151,0.3602586713697824,0.3672688303735456,0.3689828801611279,0.3740437158469945,0.3779705771407016,0.0,2.1905487123610863,55.27781370260119,169.8211577798292,256.371687817788,fqhc2_80Compliance_implementation_low_initial_treat_cost,17 -100000,95727,45254,428.9594367315386,5973,61.17396345858535,4673,48.22046026721824,1778,18.281153697493917,77.33907921770925,79.70856274096744,63.32552877917672,65.07672399093771,77.11419142924662,79.48233971568786,63.24159950079746,64.99465198513745,0.2248877884626381,226.22302527958027,0.0839292783792515,82.07200580025642,179.80138,125.97572980407304,187827.23787437196,131598.95306869852,382.65764,249.03457482483373,399154.0631169889,259566.41785999117,388.73476,189.04113403981157,402145.0061111285,194426.2516472349,3026.52413,1400.319679793305,3127669.8528105966,1428875.9386518989,1083.14666,489.0562553750054,1120569.202001525,499960.17359261774,1736.96362,737.501288450139,1787711.5338410272,745796.8974908305,0.37962,100000,0,817279,8537.60172156236,0,0.0,0,0.0,32734,341.3457018396064,0,0.0,35427,366.1453926269496,1490807,0,53532,0,0,7013,0,0,71,0.7416925214411817,0,0.0,1,0.010446373541425,0,0.0,0.05973,0.1573415520783941,0.2976728612087728,0.01778,0.3516113516113516,0.6483886483886484,24.1820047591834,4.277562894304076,0.3259148298737427,0.2456665953349026,0.2167772309009202,0.2116413438904344,11.067957769910722,5.738640952989402,19.13895855825468,12137.800314891776,53.31980877024227,13.916318920746004,17.30516092211477,11.24880966477895,10.849519262602543,0.5760753263428204,0.7961672473867596,0.6999343401181878,0.5765054294175715,0.1294236602628918,0.7310606060606061,0.9166666666666666,0.8557457212713936,0.6867469879518072,0.1697247706422018,0.5150611392782583,0.7201704545454546,0.6427289048473968,0.5405759162303665,0.1180285343709468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673958839734,0.0043496775763474,0.0065568445946631,0.0089213136075434,0.0111186840686449,0.0134332766399494,0.0156426859735889,0.0179174876721559,0.0203787398515307,0.0228292263258157,0.0248187309629052,0.0267763603870093,0.0288176731940102,0.0307950670197092,0.0328354511390732,0.0349734235072697,0.0367354549975136,0.0388559093362115,0.040940902426089,0.0428404734122353,0.0574379000344564,0.0715459063562647,0.0848230668414154,0.0976371494368907,0.1098702942106928,0.1256584375198324,0.1388393804370889,0.1509405840457357,0.1613685661470076,0.1718077744278617,0.183681386177022,0.1964202570571611,0.2070867512347962,0.2170430672268907,0.2262653175817763,0.2361860846625358,0.2455086477372963,0.2534326745599424,0.2616991090176494,0.2694938753996173,0.2762694996065361,0.2830773549813426,0.2894126830191357,0.2956638365645994,0.300862727967675,0.3062120895210207,0.310613157467431,0.3143060281346808,0.3187097107571471,0.3234732195796824,0.3221675803504246,0.3207025934935884,0.3187554579002225,0.3176535214525269,0.3167684330941451,0.3146382158000275,0.3118405441746421,0.3119119940891552,0.3117931872230491,0.312476536103116,0.3139268978444236,0.314349492315594,0.3158533015514573,0.3169586983729662,0.3186178120953431,0.3196757515134194,0.3218129021237829,0.3247809565681625,0.3273179620155582,0.3308846886912325,0.3347764662990475,0.3389361702127659,0.3414834470558504,0.3424971363115693,0.3445661331086773,0.3457943925233644,0.3431569202283598,0.3429794171591603,0.3476216814159292,0.3491759294748946,0.0,2.3347503877725324,57.81164480244251,173.98704934624817,247.9964318981287,fqhc2_80Compliance_implementation_low_initial_treat_cost,18 -100000,95671,45243,428.437039437238,5862,59.99728235306414,4702,48.40547292282928,1786,18.14551954092672,77.30793472821749,79.68528147389614,63.31631099018998,65.07069171950779,77.0823462632795,79.46730258021498,63.231590585768416,64.99290622033475,0.2255884649379851,217.9788936811633,0.0847204044215672,77.78549917304645,179.6344,125.88102549501524,187762.6448976179,131576.99354560443,381.19131,247.98612764537972,397671.33196057327,258438.7720891176,388.66272,188.4476103304514,402106.5526648618,193602.7291352951,3053.42743,1402.055307901937,3144083.4108559545,1417988.6464048016,1096.39786,486.0680815341808,1125409.936135297,487465.539350065,1747.46568,736.0909780660567,1777209.6455561246,724882.9430779269,0.3798,100000,0,816520,8534.665677164448,0,0.0,0,0.0,32572,339.6849620052053,0,0.0,35421,366.2760920237062,1492712,0,53575,0,0,7109,0,0,61,0.6062443164595331,0,0.0,0,0.0,0,0.0,0.05862,0.15434439178515,0.3046741726373251,0.01786,0.3382042539373275,0.6617957460626726,24.429042058827417,4.217008066298197,0.336665248830285,0.2411739685240323,0.2124627817949808,0.2096980008507018,11.337454942357729,6.048521499735324,19.05173423645313,12155.383224463356,53.57174789284039,13.678057186029164,17.84570175446003,11.349618953959588,10.698369998391607,0.5742237345810294,0.7945326278659612,0.6942514213518636,0.5935935935935935,0.1085192697768762,0.741248097412481,0.9120370370370372,0.8561151079136691,0.7350746268656716,0.1319796954314721,0.5094451003541912,0.7222222222222222,0.6363636363636364,0.5417236662106704,0.1026615969581749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025514853289593,0.0048234769567508,0.0070704713985737,0.0093138051515397,0.0113802782523797,0.0137978086432324,0.0162127438284508,0.0183256763654925,0.0203234578502934,0.0226018773479645,0.0248903104112847,0.0267456544728385,0.0291150305959788,0.0312664187330661,0.0333519080345902,0.0354085683566288,0.0374054502124132,0.0399102952780431,0.0418201111041757,0.0435675562969141,0.0575520778922295,0.0711548930111804,0.0847123264672242,0.0978688490101613,0.1098071468488701,0.1252789558853081,0.1375047748397776,0.1491461545013201,0.1603838098901568,0.171285418477153,0.1838363601111614,0.1963277141806063,0.2075879992605561,0.2174802081966496,0.226675174090494,0.2363829716526536,0.2455895644799536,0.2539236091579006,0.2624950360242809,0.270346107153492,0.2774973955318903,0.284033495508982,0.2905073552907203,0.2958427289737562,0.3007125659670712,0.3061501449632965,0.3102199385926436,0.3146833539375246,0.3189590306426922,0.3227443310957238,0.322057198307232,0.3206553943252442,0.3200129771207718,0.3186186533896833,0.3174511029740109,0.3158709716984025,0.3132193930938263,0.3133566997416531,0.3144677789578265,0.3143904838565423,0.3148555010985296,0.3152951433610081,0.3162721396793418,0.316928032929912,0.3175887139486735,0.3179417455420175,0.3185724482512491,0.3222474174855127,0.3247715485305014,0.3277534791252485,0.3307270233196159,0.3359067191992333,0.3384945964734879,0.3424207712867507,0.3442622950819672,0.3471005917159763,0.3513309134906231,0.347444089456869,0.350579358663433,0.3538924407672057,0.0,2.8707742701640617,56.92146315912508,171.67877367131712,256.2602345298583,fqhc2_80Compliance_implementation_low_initial_treat_cost,19 -100000,95702,45228,428.83116340306367,5856,59.99874610770935,4634,47.79419447869428,1786,18.2963783411005,77.38171245272493,79.75564934743434,63.34258245905804,65.09507303478959,77.15922399835152,79.53317897016242,63.26031257576364,65.01514399786583,0.2224884543734049,222.4703772719181,0.0822698832944013,79.92903692375819,179.68038,125.88612744839192,187749.8693862197,131539.70392300258,384.1771,250.9199622304699,400785.1978015088,261543.44969851195,394.62171,191.158058743196,407756.807590228,196394.64717886943,3013.53144,1398.404598964224,3111243.505882845,1423580.9272159669,1121.31255,501.9198809931289,1156838.2165471986,509629.7726339095,1752.52116,737.8593318541404,1797156.2140812103,743544.1607363443,0.37948,100000,0,816729,8534.084972100896,0,0.0,0,0.0,32829,342.35439175774803,0,0.0,36015,371.7999623832313,1490488,0,53437,0,0,7035,0,0,69,0.710538964702932,0,0.0,0,0.0,0,0.0,0.05856,0.1543164330135975,0.3049863387978142,0.01786,0.3362097036795832,0.6637902963204168,23.957913599089142,4.321178051181353,0.3243418213206733,0.2434182132067328,0.2157962883038411,0.2164436771687527,11.442732773508956,6.028450890485141,19.068633403652832,12122.591221127852,53.046963463753535,13.58260785000486,17.128904465512505,11.183370749756904,11.152080398479276,0.5830815709969789,0.8173758865248227,0.7039254823685961,0.594,0.1276171485543369,0.7498039215686274,0.9375,0.8784119106699751,0.7569721115537849,0.167420814479638,0.5197975587972611,0.7513736263736264,0.64,0.5393858477970628,0.1163682864450127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023902122832604,0.0045109428377378,0.006849454073142,0.0088982792596956,0.0109852106515857,0.0131466395112016,0.0154677542696915,0.0177324513046674,0.0198828496365885,0.0221414679086907,0.0245635258296341,0.0267245716163078,0.028938708350473,0.031067801149591,0.0331785345717234,0.0350400132343514,0.0370059656972408,0.0389556482576842,0.0408016807421891,0.0427283622531394,0.0580052219321148,0.071889950900849,0.0851021414556862,0.0977908689248895,0.1100340692142985,0.1256173002696557,0.1374689668342988,0.1490727532097004,0.1602644903540069,0.1714950714875634,0.1842178981619152,0.1961098422938292,0.2076581769145442,0.2180671396246215,0.2278276362676521,0.2375033206411051,0.2467076284889102,0.2548805721739913,0.2625126175273048,0.26987452488895,0.2756717989056879,0.2820141194071719,0.2885165992286032,0.2943149421432165,0.2991548474839712,0.3046022321318584,0.3089558955895589,0.3138344545188651,0.3188915768638662,0.3228029943592176,0.3209687390801817,0.3187440794080095,0.3176736926473276,0.3168510834485938,0.3155829928347249,0.3128946645922943,0.3094389043170916,0.3105207226354941,0.3109169414884575,0.3116354325948579,0.3131348969226172,0.3136439759629593,0.3156041666666667,0.3160916981971956,0.3179947355826752,0.3190619175812798,0.3202388701780205,0.3234771217366894,0.3260809023184571,0.331506309148265,0.3349490373725934,0.3366320914479255,0.3436987511038223,0.347378062743302,0.3488853353400433,0.3533380681818182,0.3571210734980177,0.3579223928860146,0.3548922056384743,0.3593508500772797,0.0,2.3973746685247845,55.62447488671858,184.626731418312,238.5582734321706,fqhc2_80Compliance_implementation_low_initial_treat_cost,20 -100000,95850,45335,428.6384976525822,5879,60.135628586332814,4641,47.75169535732916,1876,19.08189880020866,77.44506122741345,79.72349703487446,63.40474875222951,65.08452267526152,77.20778585888476,79.49230268882495,63.31589597023711,65.0015816372679,0.2372753685286852,231.19434604950584,0.0888527819924007,82.94103799362063,178.25566,124.80965235325614,185973.5628586333,130213.51314893704,376.74456,245.5936664299309,392406.14501825767,255576.83508599983,382.74315,186.01778720757792,395969.06624934793,191410.1510562334,3057.03135,1407.7011407553869,3144909.1601460613,1424168.2011010784,1107.52087,490.9218138609814,1138453.646322379,495157.8131048313,1834.11244,769.1420716324361,1867167.741262389,761950.6043042773,0.38242,100000,0,810253,8453.343766301514,0,0.0,0,0.0,32227,335.5451225873761,0,0.0,34996,361.74230568596766,1505887,0,54097,0,0,7077,0,0,60,0.6259780907668232,0,0.0,1,0.010432968179447,0,0.0,0.05879,0.153731499398567,0.3191018880762034,0.01876,0.3340887018452573,0.6659112981547426,24.317328515080177,4.331366428902211,0.3206205559146736,0.238095238095238,0.2152553329023917,0.2260288730876966,11.202023924179924,5.840918685176714,19.92595428942116,12189.901640496544,52.6830271884333,13.366312444860151,16.824799620161148,11.124729288883158,11.367185834528843,0.5664727429433312,0.8153846153846154,0.6955645161290323,0.5695695695695696,0.1182078169685414,0.7488408037094282,0.9189814814814816,0.8746928746928747,0.704,0.1951219512195122,0.4959665371974903,0.7488855869242199,0.6281221091581869,0.5246995994659546,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023988339844936,0.0047204692105876,0.0072295509161149,0.0096423206528358,0.0120104863129229,0.0143960281205807,0.016682962600831,0.0189564277483761,0.0211683975124835,0.0233128834355828,0.0253839852549662,0.0273732359698063,0.0295286710557398,0.0314348313566557,0.0334847876034164,0.0355391777371773,0.0375307671623885,0.0392331606217616,0.0412595907264553,0.0432904937821947,0.0574807337344748,0.0714128992487801,0.0849834033151485,0.0978990891155606,0.1100145198964668,0.1254578271286982,0.1381537842445807,0.1491552438635639,0.1602252367545431,0.1702380442693839,0.1820370609226536,0.1935354975269444,0.2053088698295516,0.2158812996768276,0.2253819707604266,0.2359442416196482,0.2454777481805111,0.254786947141316,0.264085704568643,0.2718638792580641,0.2789597835387711,0.2857259790222056,0.2923173386333522,0.2985396217380895,0.3037874834654078,0.3083969465648855,0.312807480940876,0.3169273053480767,0.3204932259150843,0.3248848838283218,0.3235666218034993,0.3218536129511035,0.3203553256683439,0.3191369849202806,0.3174480940674703,0.315194680413,0.3133963750985027,0.3143300653594771,0.314851047178318,0.3157408722829947,0.3158661115985588,0.3164429728611128,0.3184818481848185,0.319279255200677,0.319065868263473,0.320538423632544,0.3199898011218766,0.3239031107216624,0.3276222315085667,0.3302241018141575,0.333318161128812,0.3360987024037439,0.3381204333585286,0.339209074187615,0.3431223948465328,0.3452110486667464,0.349164603960396,0.3495749533485383,0.3469387755102041,0.3496062992125984,0.0,2.6493772181849957,56.08020137555521,173.85621017260556,245.2966899034428,fqhc2_80Compliance_implementation_low_initial_treat_cost,21 -100000,95668,44986,426.7153071037337,5985,61.14897353346991,4682,48.18748170757202,1864,18.971861019358613,77.29747507811412,79.69977253486076,63.28577397120039,65.06540122484301,77.0550691182636,79.46339870343058,63.195620490744886,64.98087232223796,0.2424059598505152,236.3738314301713,0.0901534804555055,84.52890260505797,178.54452,125.05173428797475,186629.3013337793,130714.276757092,380.08694,247.0743537488481,396515.7314880629,257480.12266259157,380.80087,184.55518228724324,393410.4193669775,189405.14380173312,3068.85425,1411.1248363554173,3158979.146632103,1426185.094655909,1117.96129,499.4958307234171,1151724.9446000753,505254.38048607385,1828.02732,775.4650818324168,1861661.1406112807,768702.334863904,0.37888,100000,0,811566,8483.150060626333,0,0.0,0,0.0,32477,338.67123803152566,0,0.0,34760,358.6674750177698,1496820,0,53770,0,0,7177,0,0,67,0.7003386712380315,0,0.0,0,0.0,0,0.0,0.05985,0.1579655827702702,0.3114452798663325,0.01864,0.3301001749085705,0.6698998250914295,24.142840603187462,4.242369292438571,0.3269970098248612,0.24263135412217,0.2016232379325074,0.2287483981204613,11.127643105864037,5.877731155776513,19.946070487652783,12103.981247061054,52.99136546662019,13.58611693598607,17.15719493684672,10.51953763411398,11.728515959673423,0.5583084152071764,0.7746478873239436,0.6949706074461136,0.5773305084745762,0.1167133520074696,0.7319182389937107,0.9123222748815166,0.8507462686567164,0.7668161434977578,0.1466666666666666,0.4935483870967742,0.6932773109243697,0.6395039858281665,0.5187239944521498,0.1087470449172576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021788479468158,0.0041385186537642,0.006426722168638,0.0082613555532974,0.01055908203125,0.0126810487074497,0.0148096772877483,0.0170543902289577,0.019176288902298,0.0214541730670762,0.0234378205391211,0.0254568989428914,0.0276231726011049,0.0298524380693293,0.0320382435236905,0.0340822110511181,0.0360278189488085,0.0383780696744717,0.0405439147714267,0.0426680562793121,0.0573517889788456,0.0714158597225857,0.0843888055237835,0.0968345974605245,0.1093189586058483,0.1251639933979432,0.1376147762857597,0.1488081290075197,0.1594250943739239,0.1694403882494417,0.1825692130153902,0.194597407102285,0.2058429463089441,0.216202298649078,0.2259053078322218,0.2355486519471874,0.2449757449757449,0.2533626225076039,0.2619080083628761,0.2692603078898199,0.2756878873892139,0.2824044791154215,0.2888517715625999,0.2950949557033444,0.3006351446718419,0.3056700649206388,0.3100621678532037,0.314796868225753,0.3190599844196312,0.3235266882730339,0.3224521755565456,0.3207877884509219,0.3192108758938413,0.3181330783052223,0.3169708599223526,0.3159201311736672,0.3135058153334916,0.313544451186513,0.3138992060517259,0.3141661472709465,0.3157845590707056,0.3168767231193383,0.3180602006688963,0.3173913043478261,0.3169444777551265,0.3181309966457786,0.3205776994370842,0.324644772748659,0.3292700014011489,0.3322235434007134,0.3355646630236794,0.3405654872420561,0.3442963149289397,0.3477864682208216,0.3463671397687752,0.34853690321052,0.3483890858640358,0.3522473052674394,0.3553719008264462,0.3504404442742244,0.0,2.7953530514348066,55.034704350158,170.00477430053587,259.1028536146606,fqhc2_80Compliance_implementation_low_initial_treat_cost,22 -100000,95829,45586,430.84035104196016,5993,61.327990483047934,4745,48.9204729257323,1882,19.28435024888082,77.32864418348662,79.63947390685426,63.32870225298407,65.03836899011586,77.09642952373363,79.40827175492846,63.242221648886165,64.95474857750855,0.2322146597529837,231.20215192579963,0.0864806040979004,83.6204126073028,178.28228,124.90393894107528,186041.8662409083,130340.222628928,381.28619,248.1360796043257,397250.4774128917,258305.85807879208,389.22349,188.47058393010064,402325.5590687579,193773.7094711901,3117.3309,1429.3446776516882,3216093.040728798,1454696.8609426036,1120.61988,499.9475566671478,1154105.7404334804,506608.503946536,1845.3274,772.3669276387632,1891816.8195431444,776856.2892926648,0.38411,100000,0,810374,8456.448465495832,0,0.0,0,0.0,32538,338.88488870801115,0,0.0,35574,367.3522628849305,1497214,0,53865,0,0,7048,0,0,63,0.6574210312118461,0,0.0,1,0.01043525446368,0,0.0,0.05993,0.1560230142407123,0.3140330385449691,0.01882,0.3341319278070596,0.6658680721929404,24.153578294570387,4.372204773314451,0.3226554267650158,0.233508956796628,0.2225500526870389,0.2212855637513171,11.282359238709766,5.800522603925452,19.967047578574512,12267.984146526644,53.8656926900063,13.434873454807056,17.264691650088846,11.666147392662198,11.4999801924482,0.5667017913593256,0.7978339350180506,0.6838667537557153,0.5909090909090909,0.1276190476190476,0.7389312977099237,0.9156908665105388,0.85785536159601,0.7677165354330708,0.1666666666666666,0.501018922852984,0.723935389133627,0.6221238938053097,0.5349127182044888,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990834050741,0.0045209423022341,0.0066149241617206,0.0090098326019827,0.0110433190970103,0.0136021176949704,0.0158495566201202,0.0180330043781317,0.020295542338586,0.0224302890764901,0.0249392911667366,0.027195665113606,0.0290427007861877,0.0310180466763437,0.0331642123499566,0.0355069319614041,0.0375962414107128,0.0399809219666963,0.0419531753121299,0.0441005037678504,0.0585351607317938,0.071899798216358,0.0860934093577058,0.0990826266511144,0.1113687627801083,0.1277310924369747,0.139857915385431,0.1516076862511438,0.1630430139677929,0.1730037411429245,0.1853989447614945,0.1966613655296268,0.208174760237479,0.2185006231006362,0.2284129918141008,0.2385900389932648,0.2480543117790904,0.2562041165608251,0.2655249170944442,0.2731672630516561,0.2801191897877076,0.286166619757951,0.2921455028967613,0.2981343328407876,0.3037011793629736,0.308024584701207,0.3124388837349247,0.3167675737684022,0.3218845694711164,0.3262988086265487,0.3252332919790711,0.3242959980141766,0.3237022803696063,0.3218604111694261,0.3204688989513822,0.3161401246507629,0.3143917761279269,0.3151330923430825,0.315993444190255,0.3164340339055564,0.3171996704613541,0.3189236179713123,0.3207294629412749,0.3213392857142857,0.3229959883734896,0.3239955094901183,0.3256628599094353,0.3294804950059677,0.3335899769020788,0.3358899343717877,0.339046233577306,0.3425871861563777,0.3470881443624203,0.3519706691109074,0.3535172803465486,0.3555661615559002,0.3597254004576659,0.3589329021827001,0.362691466083151,0.3615295480880648,0.0,2.1609011705555576,57.51810933889888,171.29468724131178,261.7403868158698,fqhc2_80Compliance_implementation_low_initial_treat_cost,23 -100000,95746,45385,430.2425166586594,5966,61.1931568942828,4729,48.8062164476845,1843,18.9146282873436,77.35098256499538,79.6979885276617,63.33757887846742,65.07043759054908,77.1116194941736,79.45855825433043,63.24836512946367,64.98374108796921,0.2393630708217813,239.43027333127984,0.089213749003747,86.69650257986916,179.28042,125.62667828726605,187245.85883483384,131208.27845264142,382.0943,248.75911270823784,398493.2112046456,259233.93427217612,386.42489,186.93287185684835,399575.74206755374,192202.5629935243,3101.05325,1428.1653744099217,3201168.090572974,1453953.7154658386,1140.62025,508.2420485860844,1173401.7086875692,512926.9093080496,1807.03446,769.3947174874083,1854947.590499864,774761.7950598584,0.38195,100000,0,814911,8511.175401583356,0,0.0,0,0.0,32636,340.2439788607357,0,0.0,35296,364.6000877321246,1494243,0,53646,0,0,7071,0,0,76,0.7937668414346292,0,0.0,1,0.0104443005451924,0,0.0,0.05966,0.1561984552951957,0.3089171974522293,0.01843,0.3332795872299258,0.6667204127700742,24.234282918253257,4.305068015177997,0.3080989638401353,0.2450835271727638,0.2249947134700782,0.2218227955170226,11.047795670325634,5.599605080144449,19.82066794509738,12139.684865730524,53.954165198143016,14.068077722400917,16.500585870854824,11.854412688924064,11.531088915963212,0.5741171495030661,0.8093183779119931,0.6884008236101579,0.599624060150376,0.1296472831267874,0.7304075235109718,0.9331742243436754,0.8407310704960835,0.7327935222672065,0.1674008810572687,0.5163625832609325,0.7391891891891892,0.6340782122905028,0.5593635250917993,0.1192214111922141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020252549289641,0.004196186943169,0.0063823526427404,0.008714552693589,0.0109607426462364,0.0133053720312325,0.01566752632491,0.0177581825418695,0.0198184754389909,0.022168319567687,0.0242744820657912,0.0265248722002094,0.0285106207974337,0.030460930098447,0.032321294089732,0.0345843367890107,0.036717957214157,0.0388406940063091,0.0407664635794639,0.0428590776026419,0.0571765614723721,0.0711573265265558,0.0846684561506521,0.0975240498344109,0.1099971536101711,0.1250991046227681,0.1374150237032166,0.1490358009450428,0.1598829134884516,0.1704517416351094,0.1828072821286222,0.1950403740826532,0.2062179773080814,0.2166048389744263,0.2257514037212374,0.235243257623624,0.2459371614301191,0.2547029702970297,0.2626316506264754,0.2702197663621043,0.2776189539230778,0.2846794766775107,0.2910121131825494,0.2966844740435522,0.3021909328154397,0.3077046173541612,0.3118615671221915,0.3150754599432938,0.3202739619612362,0.3240228625737555,0.322354590049054,0.320910431104559,0.3196952595936794,0.3192151752099623,0.3173235727357943,0.3152520544584815,0.3132749817651349,0.3129349059862804,0.3134055182087203,0.3138504946605236,0.3149817295980511,0.3157551697576583,0.3164808917197452,0.3159671002637343,0.3173792044527614,0.3194791666666666,0.3203684749232344,0.3236874351965312,0.327585603861355,0.3280525961424215,0.3321342379673057,0.3338472170538514,0.3365893622384673,0.3392110663525119,0.34287860294808,0.3459119496855345,0.3451382416899658,0.3481632653061224,0.3594534300055772,0.3593023255813953,0.0,2.2443977683472647,55.92886000105604,181.61212903819168,255.15470746630692,fqhc2_80Compliance_implementation_low_initial_treat_cost,24 -100000,95832,45251,428.6355288421405,5879,59.90692044411053,4638,47.69805492945989,1800,18.28199348860506,77.51248185563044,79.79817946149221,63.42745123530996,65.1106341462562,77.27840394234826,79.57097804351024,63.33877603554296,65.02813450033575,0.2340779132821779,227.20141798197344,0.0886751997670032,82.4996459204499,180.35314,126.27991126006744,188197.19926538103,131772.17553642567,385.25002,251.42854369084787,401298.814592203,261657.07038447267,384.80069,187.29531718058976,397869.7303614659,192463.8706621558,3019.93631,1395.4538778420444,3106380.728775357,1411245.0411574908,1103.58428,489.03348169602685,1133818.5992152935,492546.5387816375,1763.78214,752.1389835713961,1793749.8121712997,743899.4134347265,0.3807,100000,0,819787,8554.418148426414,0,0.0,0,0.0,32831,341.8482344102179,0,0.0,35186,363.542449286251,1493491,0,53578,0,0,7026,0,0,86,0.8765339343851741,0,0.0,0,0.0,0,0.0,0.05879,0.1544260572629367,0.3061745194761013,0.018,0.3449454663845027,0.6550545336154973,24.18517863513437,4.354012899154186,0.3141440275981026,0.2488141440275981,0.2164726175075463,0.2205692108667529,11.379437808136526,5.999675051937725,19.10052460351161,12103.598276791714,52.356047075053496,13.72835753896952,16.43431092701999,11.125947870519846,11.067430738544136,0.5638206123329021,0.7868284228769498,0.6835964310226493,0.5956175298804781,0.1104594330400782,0.7222653219550039,0.9095354523227384,0.847457627118644,0.71875,0.1184834123222748,0.5028366676619886,0.7194630872483222,0.6187739463601533,0.553475935828877,0.1083743842364532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024791046890494,0.0046890349500207,0.0068620196839619,0.0091221803939077,0.0114285133789796,0.0137597884674056,0.0159332939667284,0.0180902267906673,0.0203710700172566,0.022650577768688,0.0246787158875633,0.0267154826733942,0.0288215529730896,0.0308852890928925,0.0328144329896907,0.0350045447033548,0.0370040770711314,0.0390254017625712,0.0407533606199746,0.0425086672705125,0.0576535986566961,0.072306920133007,0.0858753628351968,0.0981986240218475,0.1108279718217907,0.1256813284319939,0.1372785957325023,0.1483143677549718,0.1588524712637544,0.1684159794366498,0.1810516353155013,0.1937539834289356,0.2053551070044191,0.2157327421450959,0.225848979905736,0.2364326081907563,0.2457047353760445,0.2544709054145136,0.2625366726702235,0.2695112472567666,0.2762965099509663,0.2835852200561647,0.2893392631740377,0.2946024389952582,0.2997784530453626,0.3040364583333333,0.3087808101335261,0.3129337859060743,0.3179509654799041,0.3216830942475031,0.3212017259400209,0.3192569879814931,0.3177381635882427,0.3168974591260083,0.3158914155602212,0.3134847398685234,0.3116475119979793,0.3118311242022582,0.312514890575542,0.3123309127153638,0.312492993011697,0.313319013931858,0.3139437737583023,0.3149422216284817,0.3153510132957773,0.3172768642051918,0.3190142437259778,0.3225003887420308,0.3258103657479632,0.3295862607338017,0.3333780041097114,0.3374798313641805,0.3403913821840854,0.3446344559778956,0.3478060895961733,0.3497286687449486,0.3535985695127402,0.3503134796238245,0.3492105967353492,0.3595087458131745,0.0,2.681617835860119,55.72404917474754,166.4763187369068,252.4595472992437,fqhc2_80Compliance_implementation_low_initial_treat_cost,25 -100000,95731,45326,429.9338772184559,5778,58.96731466296185,4601,47.42455421963628,1804,18.48930858342648,77.31288813594676,79.67230869562987,63.318020272784125,65.0625617990732,77.08389264749914,79.44453689044265,63.23333779822843,64.980502078416,0.228995488447623,227.77180518721707,0.0846824745556915,82.05972065719891,180.62638,126.54235379233153,188681.179555212,132185.34622257316,382.51759,248.7969754873897,398930.2733701727,259247.2244944371,385.64446,186.9425986200792,398392.2449363321,191872.2149748295,2985.28175,1375.7094181230204,3082063.9395807004,1400753.1836730023,1084.6927,484.11784697206383,1115582.1834097628,488251.0209841572,1754.4739,735.4002419781797,1800879.0256029917,741577.1655422224,0.38237,100000,0,821029,8576.417252509636,0,0.0,0,0.0,32701,340.91360165463647,0,0.0,35277,364.0722441006571,1487680,0,53451,0,0,7258,0,0,58,0.5954184120086493,0,0.0,1,0.0104459370527833,0,0.0,0.05778,0.1511101812380678,0.3122187608168916,0.01804,0.3314625288874216,0.6685374711125784,24.089698889977896,4.296025636967364,0.3214518582916757,0.2471201912627689,0.2240817213649206,0.2073462290806346,11.502361677378111,6.17216933024806,19.25633733461191,12156.078780243744,52.38580624852016,13.74215112979994,16.670328793081957,11.417821940043805,10.555504385594464,0.5859595740056509,0.8021108179419525,0.7119675456389453,0.6032977691561591,0.1142557651991614,0.7304415182029435,0.9164733178654292,0.8488664987405542,0.7301587301587301,0.1279620853080568,0.529607250755287,0.7322946175637394,0.6617375231053605,0.5622593068035944,0.1103633916554508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699082420142,0.0046017089165712,0.006716788928459,0.0089789948401251,0.0111166485287985,0.0134419551934826,0.0154073620883042,0.0176108462394462,0.0197108798331527,0.0219534921821402,0.0242179409623606,0.0262771474046311,0.0283340018306542,0.0304166452078075,0.0326424496280782,0.0348084912875421,0.0368100065232923,0.038846636715467,0.0408768080526584,0.0427688813410987,0.0571464364384219,0.07116849418264,0.0850338709339149,0.0984838926739002,0.1108674335480741,0.1261621450103125,0.1382094841947772,0.1502762195706089,0.1609574774890249,0.1714150913048606,0.1844020498686533,0.1957976922993738,0.2062468743884673,0.2164432099035454,0.2268416651997887,0.2369607354488564,0.2469702042182792,0.256016200708781,0.2648034160855838,0.2715303877532313,0.2785347951422253,0.2846783625730994,0.2916893442816914,0.297029702970297,0.3021334499684113,0.30651662126684,0.3115363901657001,0.316510142271767,0.3204560176188625,0.3239386371744559,0.3224196984816203,0.3208914109415459,0.3202149718589988,0.317497539227607,0.3164227109608827,0.3142181767947321,0.3116942909760589,0.3118612267737529,0.3121093281728974,0.3131123170884602,0.3137464788732394,0.3144811180493607,0.316089664283168,0.3160707497596207,0.317320426689783,0.3187630480167014,0.3186320687391167,0.3214274445461142,0.325869595831573,0.3275635145375503,0.3292994794045118,0.330910055717697,0.3345030705602206,0.3356887774485221,0.3441265060240964,0.3457844183564568,0.3486181874324533,0.3445326817348809,0.3443080357142857,0.3500379650721336,0.0,2.4617505128209296,56.369160932073086,165.61660417515716,252.2702513890668,fqhc2_80Compliance_implementation_low_initial_treat_cost,26 -100000,95777,45368,428.7877047725445,5850,59.98308570951272,4557,46.95281748227654,1780,18.19852365390438,77.37208356525132,79.71134551356381,63.35007434272507,65.07965279378963,77.14371657111317,79.48529033619252,63.26489949751311,64.9980521733577,0.2283669941381418,226.05517737129333,0.0851748452119594,81.60062043192795,178.84482,125.32691998882198,186730.4467669691,130852.83522016976,380.89876,248.844718176825,397051.943577268,259175.3742305824,381.28809,185.00276774384068,394454.9630913476,190314.73371942827,2984.93663,1380.20554534765,3077982.083381188,1402495.187098833,1069.85884,482.13942408238165,1100966.8500788289,487338.55017602025,1743.55654,742.4614608747434,1784283.9721436254,743597.8631230261,0.38241,100000,0,812931,8487.747580316778,0,0.0,0,0.0,32530,338.9853513891644,0,0.0,34831,359.94027793729185,1498615,0,53787,0,0,7175,0,0,58,0.6055733631247585,0,0.0,1,0.0104409200538751,0,0.0,0.0585,0.1529771710990821,0.3042735042735042,0.0178,0.3358281809306866,0.6641718190693133,24.344609050708613,4.239206523812388,0.3168751371516348,0.2470923853412332,0.2139565503620803,0.2220759271450515,11.09177641617861,5.838303557282736,19.148749480703632,12164.833298406753,51.9889585527804,13.627610152990902,16.249007081765996,10.922999062555142,11.189342255468368,0.5668202764976958,0.7806394316163411,0.7105263157894737,0.5846153846153846,0.1067193675889328,0.7250589159465829,0.9204545454545454,0.8551532033426184,0.7004048582995951,0.1674008810572687,0.5054811205846529,0.6909620991253644,0.6626728110599078,0.5453296703296703,0.0891719745222929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384280360579,0.0047747455496532,0.0069209068214568,0.0091730071819668,0.0115936133428251,0.0137135526958788,0.0160535730666911,0.0183582668326632,0.0205403858731196,0.0227612322177873,0.0249228845779403,0.0272786050759962,0.0293467646605334,0.0312911861614497,0.033638576083818,0.0358943627045792,0.0379985301576457,0.0398838535725396,0.0419047816961409,0.0439766374113752,0.0584269897421448,0.0721054283024788,0.0854456255110384,0.0985489277195784,0.1103677872712523,0.1254146681598242,0.1376247906907734,0.1493859322664681,0.1603038774247241,0.1699125851651883,0.1828157104897963,0.1948939113892581,0.20590280796314,0.2164493173445852,0.2262874863910791,0.23675964168263,0.2459091365405851,0.2550608652646487,0.2635820591002346,0.2712046799693192,0.2778028331887829,0.2847407303502127,0.2916676515778277,0.2965330651726284,0.3011492578973556,0.306599359763605,0.3109572923446653,0.3149763491175423,0.3191885737942455,0.322745671980275,0.3219573197789342,0.3201856785782954,0.318662120657105,0.316964608292267,0.3162006029374638,0.3135703463369094,0.3109564116762914,0.3115619925533485,0.312922145654144,0.3138339638803626,0.3148550046772684,0.3159982632035999,0.3172936106113226,0.3181645724998326,0.3194401094811649,0.3204774065773701,0.3206372772955687,0.3257198664230357,0.329998595900028,0.3327902078448516,0.3352301179041289,0.3378787074866026,0.3394259154575718,0.3448616600790514,0.3456511518570757,0.3490488006617039,0.353627139179161,0.3540031397174254,0.3613197424892704,0.3511705685618729,0.0,2.430665023003684,55.56606528134225,171.36604863409636,242.22364440251243,fqhc2_80Compliance_implementation_low_initial_treat_cost,27 -100000,95652,45003,427.8844143352988,5926,60.88738343160624,4623,47.79826872412495,1798,18.462760841383343,77.25911226955019,79.65562055715948,63.27736057920528,65.04568758532993,77.03672531404972,79.43396793090581,63.195506220253606,64.96642473490347,0.2223869555004682,221.65262625367177,0.0818543589516735,79.26285042645986,178.20748,124.85573003492377,186308.1587421068,130531.22782056178,379.27534,246.6500517429353,396003.7845523356,257349.82200365412,378.55591,182.7756656761494,392416.5098481997,188432.5900398808,3038.29521,1389.558574344525,3141544.776899595,1417862.4329282455,1116.9725,492.0464372111626,1153027.4641408438,499694.4833470936,1762.61272,736.258313221335,1811407.93710534,742280.8749371509,0.37964,100000,0,810034,8468.552670095763,0,0.0,0,0.0,32441,338.6128883870698,0,0.0,34516,357.51474093589263,1497062,0,53792,0,0,6920,0,0,66,0.6900012545477355,0,0.0,1,0.0104545644628444,0,0.0,0.05926,0.1560952481298071,0.3034087073911576,0.01798,0.3278582930756843,0.6721417069243156,24.47190784861984,4.328489672936184,0.3201384382435648,0.2366428725935539,0.2227990482370755,0.2204196409258057,11.026622965816609,5.59769872780628,19.257563443849207,12127.639736908815,52.800929527134045,13.18563979703466,16.912522834773092,11.448372420140174,11.254394475186126,0.5611075059485183,0.7879341864716636,0.6864864864864865,0.583495145631068,0.112855740922473,0.7178456591639871,0.9182058047493404,0.8290398126463701,0.7466666666666667,0.107981220657277,0.5034033737792246,0.7188811188811188,0.6286799620132953,0.537888198757764,0.1141439205955335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.004380494630852,0.0065566449465115,0.0085453584782962,0.0106719568645404,0.0129142647627971,0.0151926096620918,0.0175893504292699,0.0197810286134879,0.0216901754457796,0.02381660293017,0.0259264203057777,0.0281203394188737,0.0301525655949646,0.0321255714595308,0.0340071343638525,0.0359466290970869,0.0378239794064832,0.03974246962889,0.0417296485869463,0.0564716701151587,0.070235339708208,0.0837936031249343,0.0958167058005959,0.1080030833887709,0.1238006481265753,0.1361613543912568,0.1477701306172892,0.1586420743116813,0.168701347506308,0.1808298370309652,0.1925352112676056,0.2046305976650984,0.2150713143307845,0.2262186986580807,0.2371974239395958,0.2471250223733667,0.2563654405629101,0.2645577248899856,0.2711200459506031,0.2779924123768751,0.2854914745408917,0.2917161027003939,0.2969970908566345,0.3026099252739751,0.3068452859102537,0.3113431299961098,0.3153538084791592,0.3196012771590997,0.3240429640995793,0.3231832415505885,0.3224840228028766,0.3207659237470302,0.3187292087334215,0.3176681346570127,0.3158986812578771,0.3139985391724094,0.3141516423808347,0.3150720164609053,0.3158705149323211,0.3167855801727375,0.3178561532676245,0.3196332661967103,0.3200303388582773,0.3204712883641686,0.3206664414004627,0.3216811018032088,0.3229006435410453,0.3240789427559855,0.3282984459245163,0.3341820496499045,0.3366908763187192,0.3385737643063765,0.3384871911474912,0.3421812424327093,0.3441673561044793,0.346780331861775,0.3440643863179074,0.3438363736871199,0.3441608662026295,0.0,2.031703927135682,54.95139838113619,175.70503973750607,252.3715533162199,fqhc2_80Compliance_implementation_low_initial_treat_cost,28 -100000,95623,44989,426.3304853434842,5741,59.033914434811706,4517,46.71470252972611,1788,18.33240956673604,77.28554750318864,79.71677035357213,63.27381344368565,65.0716669393001,77.06195444978181,79.49482136503163,63.19099619232454,64.99186316206931,0.2235930534068302,221.94898854050396,0.0828172513611065,79.80377723079357,178.14698,124.77831674641322,186301.39192453696,130489.85782334086,376.71898,245.4181249106699,393435.59603861,256124.96827284215,375.6307,182.0434218273989,389682.0848540623,187935.59157795095,2961.96676,1352.5859147107255,3064550.265103584,1381528.400165442,1076.80243,476.4524551781622,1113759.472093534,485958.0722075162,1754.75068,732.95833154747,1801038.8295702918,738182.2831512595,0.38052,100000,0,809759,8468.245087478954,0,0.0,0,0.0,32216,336.36259059013,0,0.0,34313,355.65711178273006,1499958,0,53784,0,0,7072,0,0,60,0.6274641038243937,0,0.0,0,0.0,0,0.0,0.05741,0.1508724902764638,0.3114439993032573,0.01788,0.3391203703703703,0.6608796296296297,24.51764169477805,4.316745640139877,0.3152534868275404,0.2351117998671684,0.2282488377241532,0.2213858755811379,11.236390275394434,5.862517030336284,18.88780300887059,12150.014875455958,51.16538945578323,12.820854855768063,16.099296323777157,11.34206689119241,10.903171385045605,0.558556564091211,0.7909604519774012,0.6882022471910112,0.5548011639185257,0.131,0.7332214765100671,0.9152119700748128,0.8602739726027397,0.7351598173515982,0.1545893719806763,0.4959398496240601,0.7155824508320726,0.6288951841359773,0.5061576354679803,0.12484237074401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888933927847,0.004412256945501,0.0065182959022052,0.0086090359302739,0.0108859317136694,0.0131711640130794,0.0153726882312737,0.0175711016672115,0.0199343363574065,0.0221521256004014,0.0243429556225764,0.0265204837599284,0.0285329023890644,0.0305632292912217,0.032907236081282,0.0351682906142038,0.0372542720649954,0.039267206015225,0.0413322924798334,0.0433299606755051,0.0583094645731847,0.071963028169014,0.0848772080999569,0.0982426936935038,0.1105641762350927,0.1262589356632247,0.1382879245122625,0.1496311457933563,0.1608795677063827,0.1697340854149879,0.1829589348525064,0.1951907023135801,0.2061810731877424,0.2157962788455217,0.2266347669816209,0.2365313325490022,0.2456461961503208,0.2539475018878132,0.2621231234302729,0.269540295769804,0.2769414271487134,0.2836014894962411,0.2897482099672815,0.2950144656126577,0.3012778386272362,0.3068294007305756,0.3114823906617905,0.3149695564670216,0.3188407676348547,0.3239581682776105,0.3236739695406865,0.3217600550017188,0.3209179145477341,0.3191972026355335,0.317933410555704,0.3151507722481,0.31314443194957,0.3129034907597536,0.3139618260661727,0.3147641770771898,0.3146982807056973,0.3158268555419642,0.3175191655146412,0.3178438246656097,0.3192408282745879,0.3201744140777077,0.320754716981132,0.3240642379553833,0.3289647500521448,0.3323869237745968,0.334255270913625,0.3377248677248677,0.3426991011377208,0.3458509993943064,0.3428705002337541,0.3443257833587607,0.3475748821651209,0.3488512696493349,0.3545925320250749,0.3610067618332081,0.0,1.991833881921797,52.37082684327802,171.7134567414512,246.3190073964832,fqhc2_80Compliance_implementation_low_initial_treat_cost,29 -100000,95822,45164,428.39848886477006,5844,59.97578844106781,4589,47.44213228694871,1755,18.03343699776669,77.35864855579545,79.66345596391722,63.35358995694328,65.05425516529898,77.14287574220319,79.44819335916384,63.2746042228332,64.97782400308556,0.2157728135922667,215.2626047533772,0.0789857341100699,76.43116221342439,178.97264,125.30916424648862,186775.22907056837,130772.07692442014,379.78342,247.8880081844206,395897.2261067396,258253.90674092443,381.31777,185.1798024136841,395474.3378347352,191301.41804729545,2950.2474,1350.401146074356,3049803.9594247667,1380397.9674757705,1054.75631,469.4012685570497,1086459.142994302,475655.33037854126,1708.72514,707.8738040700705,1756035.148504519,714163.7265058968,0.38134,100000,0,813512,8489.783139571287,0,0.0,0,0.0,32484,338.54438437937006,0,0.0,34878,361.51405731460414,1497423,0,53746,0,0,7228,0,0,66,0.678341090772474,0,0.0,0,0.0,0,0.0,0.05844,0.153249069072219,0.3003080082135523,0.01755,0.3340418574231524,0.6659581425768476,24.33824015425965,4.229982314405351,0.3220745260405317,0.2529962954892133,0.2200915232076705,0.2048376552625844,11.382897173242284,6.133534939697585,18.583269539358295,12149.51205961935,52.021052420331415,13.910317492055464,16.658850773722794,11.152680871723526,10.299203282829644,0.5648289387666158,0.7820844099913867,0.6792963464140731,0.5653465346534653,0.1159574468085106,0.7401574803149606,0.908883826879271,0.8716049382716049,0.6808510638297872,0.1465968586387434,0.4977402832178367,0.7049861495844876,0.6067101584342963,0.5303225806451612,0.1081441922563418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0045072876257229,0.0065999574196295,0.0089196018143626,0.0110946294678235,0.0129596663445399,0.015432098765432,0.0176165168871706,0.0196759495739942,0.0219830804955143,0.023855127981891,0.0260121239473603,0.0281813138266176,0.0303363964724163,0.0321998597764671,0.0341551077739793,0.0360694072242283,0.0381593133189583,0.0403427681121786,0.0422041079775549,0.0573678994314328,0.071815406490465,0.0848898392134666,0.0974830539645841,0.1100514268853011,0.1254715485813916,0.1379642978290366,0.1493650152098534,0.1603202562049639,0.1706294755799494,0.1826050447308077,0.1944468480941461,0.2063172773730564,0.216397423137079,0.2257631297953612,0.2361305051311035,0.2455083138042629,0.2541842886709259,0.2623942096067887,0.2697660035047933,0.2781409447998982,0.2850690909941848,0.2906226698701636,0.2957067862022676,0.3010257407452419,0.3070191655882172,0.3118387153255459,0.3164653528289892,0.3200139794967381,0.3239984698386735,0.3223510735618576,0.320710888748385,0.3197609841827768,0.3174568841206668,0.3172460844803037,0.3157830404889228,0.3139465030985203,0.3150010664654055,0.3156635973828519,0.3160030025736345,0.3173749226760642,0.3192368525108738,0.3202710356835679,0.3211382113821138,0.321901511692182,0.322730475171568,0.3239565204987019,0.3267236215756123,0.3292888795104452,0.3335721678210334,0.3364116094986807,0.3390064886714179,0.3404509952128999,0.3423568096658255,0.3435128805620608,0.3433345099423461,0.3434636530238241,0.3486815415821501,0.3503467406380027,0.3573667711598746,0.0,1.734081075833481,56.06298076234752,166.8661496097146,250.1428788003014,fqhc2_80Compliance_implementation_low_initial_treat_cost,30 -100000,95874,44938,424.8075599223982,5796,59.463462461146925,4586,47.38510962304692,1757,18.107098900640423,77.41454581429173,79.70400277880775,63.37712166936033,65.06849415804739,77.19381218741637,79.4806520677544,63.29719532462687,64.98897750194536,0.2207336268753579,223.3507110533424,0.0799263447334581,79.51665610202951,179.5068,125.65702101958676,187231.53305379977,131064.3201026019,378.61006,246.68152045363365,394470.54467321694,256865.46569790196,384.10616,185.6951500139675,397575.6826668335,191390.69921493303,3005.56984,1369.926748779898,3109160.9404009427,1403244.0522750018,1105.99514,491.58704036853874,1142922.1060975865,502207.8952035144,1722.6296,712.7021663941292,1776068.0476458685,726360.536918429,0.3791,100000,0,815940,8510.524229718172,0,0.0,0,0.0,32291,336.337276008094,0,0.0,35057,362.6217744122494,1498543,0,53821,0,0,7154,0,0,68,0.6988338861422284,0,0.0,1,0.0104303565095854,0,0.0,0.05796,0.1528884199419678,0.3031400966183575,0.01757,0.3397066095269491,0.6602933904730509,24.4259819956763,4.278025523992913,0.3048408198866114,0.2546881814217183,0.2191452245965983,0.2213257740950719,11.17653791993784,5.831325704361811,18.695465543284325,12130.024429272158,52.16553331703881,14.05076958398844,15.84841650432941,11.233463836546225,11.032883392174735,0.5680331443523768,0.7953767123287672,0.6924177396280401,0.582089552238806,0.1211822660098522,0.7630942788074134,0.9269406392694064,0.9019607843137256,0.7542372881355932,0.1952380952380952,0.4956651718983557,0.7164383561643836,0.6205571565802114,0.52925877763329,0.101863354037267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025003796122893,0.005004812319538,0.0074125150836062,0.009735447586949,0.0119727614594979,0.0140518320292229,0.0158720456397718,0.0181769962054755,0.0205013483696984,0.0225533917028066,0.0248394399090415,0.0268645693360276,0.0289654038613688,0.0311470685111989,0.0330230016599136,0.0347858419144607,0.036769574573746,0.0389549825899519,0.0412834513255963,0.0431974204285417,0.0575950620888115,0.071343476988672,0.0846209446789788,0.0977763312615488,0.1098850187423661,0.1255425427433918,0.1372677780837587,0.1490557816767447,0.1601796247506693,0.1706389995288877,0.1823725532372553,0.1949047202135823,0.205668596756146,0.2157597474245387,0.2259492836424365,0.2362441646939091,0.2449084240917654,0.2535670149421413,0.2611815924628414,0.2688183118741059,0.2750846850179775,0.2819020233544903,0.2885993331283846,0.2946129155887707,0.2996550802788505,0.304428726340694,0.3095958964093582,0.3145070010555633,0.3186612418368404,0.3232899130274115,0.3222789001197862,0.3209861265794937,0.3196172248803828,0.3178978051631336,0.3169240812450853,0.314459544155189,0.3124062702258986,0.3130914568256983,0.313207611512754,0.3144077600783127,0.3153610634007915,0.3165152977797041,0.3183941605839416,0.3194082971860749,0.3200804751868173,0.3215137995434737,0.3228174603174603,0.3261771772708834,0.3299228271117784,0.3330432374698366,0.3355801854783986,0.3367799113737075,0.3397272217724357,0.3438741101536156,0.3489602673598218,0.3492901560483398,0.3489290596992253,0.3474025974025974,0.3463227222832052,0.3530308806709874,0.0,1.6949376605065805,54.89570964131046,175.6990785348691,245.15451138592604,fqhc2_80Compliance_implementation_low_initial_treat_cost,31 -100000,95704,45424,430.9955696731589,6028,61.73200702165009,4752,49.01571512162501,1908,19.54986207473042,77.36002699221102,79.7310965898895,63.33690834044432,65.08838966088506,77.12327894922518,79.49782042799826,63.24812327355826,65.00381662656675,0.2367480429858375,233.27616189124,0.0887850668860608,84.57303431831065,178.85648,125.23074662501234,186885.062275349,130852.15521296117,382.22326,248.51797196103595,398764.7224776394,259057.6682312682,386.21181,186.37674617773476,399674.9874613391,191784.83264577625,3101.74306,1421.9323856391543,3203265.5479394803,1448054.616268803,1105.3733,489.4591908530347,1141655.2913148876,498096.3159816635,1854.5893,781.788314205205,1902701.0365292984,784671.4790103759,0.38238,100000,0,812984,8494.77555797041,0,0.0,0,0.0,32649,340.4873359525203,0,0.0,35147,363.35994315807073,1498911,0,53799,0,0,7057,0,0,85,0.8881551450305109,0,0.0,0,0.0,0,0.0,0.06028,0.1576442282546158,0.3165228931652289,0.01908,0.3322259136212624,0.6677740863787376,24.52478129091539,4.294938613199529,0.3154461279461279,0.2453703703703703,0.2234848484848484,0.2156986531986532,11.02919622457298,5.7745446371709,20.312156338178813,12233.957860765207,54.07688259094822,14.093648157368255,16.95258268286304,11.767468582606943,11.263183168109988,0.5742845117845118,0.7941680960548885,0.7104736490993996,0.596045197740113,0.1024390243902439,0.7402700555996823,0.9196217494089834,0.8814432989690721,0.7361702127659574,0.1314553990610328,0.5144574864013742,0.7227456258411844,0.6507650765076508,0.5562273276904474,0.0948275862068965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396906746614,0.0048657360946385,0.0071643850907725,0.0093053495601292,0.0116359493876886,0.0139607347969532,0.0162181447502548,0.0184531221294576,0.0206286736519294,0.0230655828333913,0.0252824540179212,0.0273397396410825,0.0295236724116655,0.0316516974291364,0.0333887060328728,0.0352357320099255,0.0372331057631543,0.0392451968487591,0.0407934014956887,0.0426808936312104,0.0574087225332108,0.0716334177639153,0.0848615190935795,0.0970843150454392,0.1099723751080744,0.1256211278624743,0.138041137595604,0.1494603971987483,0.1610894526034713,0.171372481709541,0.1842522060487216,0.1965951643974977,0.2084053528139234,0.2187670843447265,0.2285506863780359,0.23862855876814,0.24763700884936,0.2564362114923912,0.2655690116569147,0.2737462789100068,0.2813995976041257,0.2876742745620493,0.2936446940585279,0.2989321713314339,0.3032080237019768,0.3083753063310469,0.3132013160034526,0.3172483033830668,0.3209045980283075,0.325036931518413,0.32384504557879,0.322824455855831,0.3215993230378676,0.3199403900688697,0.3182345418314844,0.316632714016573,0.315052674871081,0.3156212610427286,0.3155073824357771,0.3155286147263327,0.3165350499644447,0.3169248988453567,0.3178335038523375,0.3195667194151603,0.3200776643175607,0.3202777561051728,0.3197085278378686,0.3253068932955618,0.329499894492509,0.3323495393451123,0.3357587406187077,0.3378615950135847,0.33829907599472,0.3392599346554213,0.3415226529659038,0.3431129963473547,0.3465271458902032,0.3482178614337204,0.3531821906582901,0.3687834736036725,0.0,2.49002045427238,54.75323302949143,186.1821098746936,254.538638050326,fqhc2_80Compliance_implementation_low_initial_treat_cost,32 -100000,95746,44907,423.9341591293632,5819,59.50118020596161,4598,47.38579157353832,1821,18.6326321726234,77.33346816806463,79.695001255856,63.32120940122799,65.07016407364002,77.09955540715154,79.46430875572723,63.23390029575786,64.98665394788864,0.2339127609130855,230.69250012876807,0.0873091054701262,83.51012575137418,179.17878,125.37536855874218,187139.7029640925,130945.803019178,378.48534,247.1043055688564,394668.8738955152,257452.1305804156,373.2781,181.28634260993823,385534.5810791052,186016.58227891973,3006.54282,1374.7607219495114,3103855.398658952,1399680.0801775814,1090.10996,487.4851479283837,1123752.8774048004,494408.4621219973,1791.72258,759.0860117835134,1835909.9910179016,761876.9182561082,0.37838,100000,0,814449,8506.350134731478,0,0.0,0,0.0,32379,337.5180164184405,0,0.0,34056,351.47160194681766,1499415,0,53777,0,0,7004,0,0,76,0.7833225408894366,0,0.0,0,0.0,0,0.0,0.05819,0.1537871980548655,0.3129403677607836,0.01821,0.3415792922673656,0.6584207077326344,24.44369839814543,4.343464202983718,0.3242714223575467,0.2433666811657242,0.2050891692040017,0.2272727272727272,11.009194246378886,5.514936239496721,19.49197607071793,12114.55322574728,52.1576893267469,13.475007166216974,16.843093958895444,10.450487014521864,11.389101187112622,0.5663331883427577,0.7935656836461126,0.6887994634473508,0.6129374337221634,0.1062200956937799,0.7435064935064936,0.9136690647482014,0.8844086021505376,0.7777777777777778,0.1422018348623853,0.5014854426619133,0.7222222222222222,0.6237712243074174,0.5612813370473537,0.0967351874244256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304118749683,0.0047255912059384,0.0070742748107098,0.0095917413481273,0.0117369459530928,0.0137665590729973,0.0159646046568527,0.0182788675471004,0.0206246678386002,0.022775429150502,0.0248608306080395,0.0270417329705867,0.0293902903036722,0.0315238772000288,0.0336748274474604,0.035824659686405,0.0379390324718356,0.0400747120473176,0.0420742927838481,0.0440882389701287,0.0582064156497593,0.0718068405408799,0.0842995498567726,0.0972287952884261,0.10930431206302,0.1246365164796819,0.1368608685503294,0.1484114735777766,0.1586755674232309,0.1687346509807286,0.1814509178660691,0.1932890408587257,0.205642749154349,0.2159069777617344,0.225105891413169,0.234349564235169,0.2438068657549539,0.2533367845326251,0.2619280007263483,0.2693910733505851,0.276643728676343,0.2835991953969219,0.2897177467054676,0.2952465379270688,0.3005144881813328,0.304951445556253,0.30899908746578,0.3131894667276702,0.3177936495613694,0.3219464566097982,0.3200695071190915,0.3192106710671067,0.3180250320291712,0.3167692885843957,0.3155735877658389,0.3131650771259468,0.3122029279422016,0.3118705331471288,0.313291734336268,0.3136109473533773,0.3146753587351542,0.3157645199525879,0.3166711982096919,0.3173603199070661,0.318692420561422,0.3194125026134225,0.320731637935939,0.32438717787555,0.3272197041565651,0.3319988901660787,0.3367407205488165,0.3419293218720153,0.3428877409600604,0.3446301809022212,0.3446812523576009,0.3462504485109436,0.3461715513272978,0.3472052223582211,0.3502239641657335,0.3515292295780101,0.0,2.4395615463989744,53.59536195642505,171.92964909212557,252.59528280448728,fqhc2_80Compliance_implementation_low_initial_treat_cost,33 -100000,95797,45623,432.4665699343403,5935,60.84741693372444,4653,47.99732768249528,1835,18.81060993559297,77.34149214859087,79.67898018859557,63.33904717832892,65.07163324606995,77.11506775887085,79.45257642639183,63.25524843869159,64.98970308510911,0.2264243897200231,226.4037622037449,0.0837987396373307,81.93016096083738,178.91192,125.38249461660332,186761.5061014437,130883.52935541129,382.29995,249.19269506968328,398509.5879829222,259567.700599648,385.72939,187.37247812591136,398302.6086411892,192370.21559814847,3054.73947,1397.4396424464146,3155451.4233222334,1425808.8457481423,1077.82548,475.2605062066221,1112606.5116861698,484012.7351236496,1797.76928,749.7550160714947,1845143.5848721776,758736.8347239278,0.3848,100000,0,813236,8489.15936824744,0,0.0,0,0.0,32665,340.38644216415963,0,0.0,35208,363.1637733958266,1498124,0,53737,0,0,7036,0,0,76,0.793344259214798,0,0.0,1,0.0104387402528262,0,0.0,0.05935,0.1542359667359667,0.3091828138163437,0.01835,0.342682140554481,0.657317859445519,24.148432678133183,4.301059217469864,0.319578766387277,0.2422093273157103,0.2140554480980012,0.2241564581990114,11.15993739321696,5.85280705421877,19.485829797338496,12252.263578125663,52.68744402451169,13.540079320752088,16.85042309723219,10.946911375136883,11.350030231390525,0.5589941972920697,0.7923691215616682,0.695359784801614,0.5652610441767069,0.1064237775647171,0.7365967365967366,0.914351851851852,0.8647342995169082,0.7579908675799086,0.1306306306306306,0.4910873440285205,0.7165467625899281,0.630009319664492,0.510939510939511,0.099878197320341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019550837241812,0.0042780531816753,0.0062610989903089,0.0084136080965735,0.0106323447118074,0.0130894052215012,0.015370022845953,0.0174514188851106,0.0196844354912928,0.0216569901391576,0.02384931661352,0.026247150397404,0.0283989220546789,0.0302555808515241,0.0323269635560691,0.034595030388225,0.0368004141858659,0.0390257059275088,0.0413770171555638,0.0431813449927128,0.0576451562418488,0.0719244683298132,0.0859478151524677,0.0989344710184523,0.1107633619962906,0.1270148291424887,0.1389728096676737,0.1511909825606125,0.1619977589242836,0.173173580821125,0.1865320662526771,0.198196834731471,0.2097012493210212,0.2201835864932794,0.2295952587770899,0.2392835001328491,0.2482973861673076,0.258033007746716,0.2658785428768783,0.2739202999611331,0.2806871709614851,0.2875287470377418,0.2934968861157396,0.2993298228817616,0.3050576106731352,0.3097033747124174,0.3135417447584776,0.31777896287267,0.3225402157762129,0.3258941495381214,0.3240983452299337,0.3224569984063307,0.3212853101380737,0.3200283044752841,0.3182054442579859,0.3166108229678248,0.3140365040920675,0.3149364511149791,0.315311773553945,0.3159060858378301,0.3173147262393788,0.3178713547544099,0.3187332102081934,0.319839598548322,0.3214096193738241,0.3225241703684348,0.3246104846345872,0.3292856916394534,0.3324611032531824,0.3362743532417758,0.3390415688440823,0.3408701243034719,0.3422174161948985,0.3400956494908979,0.344706329595134,0.3428947053902235,0.3432789432789432,0.3457501543527475,0.3502368347729172,0.3451834862385321,0.0,2.2186970695457022,56.3344134875258,168.69644168561032,253.5606813591569,fqhc2_80Compliance_implementation_low_initial_treat_cost,34 -100000,95713,45450,430.4221997011901,5800,59.56348667370159,4589,47.47526459310648,1775,18.25248398859089,77.3419109081298,79.71126309670804,63.33255108723839,65.08121713966726,77.12529185248071,79.49520796393381,63.25238155394427,65.00349221248383,0.2166190556490903,216.0551327742297,0.0801695332941179,77.72492718342505,179.34444,125.61509044265156,187377.30506827703,131241.40967543758,380.98911,248.4037901788651,397576.3898321022,259052.55313161752,386.86727,187.57526838302783,401393.8440964133,193798.9431943782,3022.43001,1375.9251210761856,3129891.78063586,1409639.684344012,1110.95548,492.6784189544037,1149160.5320071464,503191.4082798376,1747.48598,727.5450319423525,1799049.721563424,735795.9075284377,0.38129,100000,0,815202,8517.15023037623,0,0.0,0,0.0,32478,338.8149990074494,0,0.0,35259,365.6034185533836,1494902,0,53660,0,0,6982,0,0,82,0.8462800246570477,0,0.0,0,0.0,0,0.0,0.058,0.1521151879147106,0.3060344827586206,0.01775,0.3331131296449215,0.6668868703550784,24.47123806400679,4.327024484516608,0.3142296796687731,0.2394857267378513,0.2242318587927653,0.2220527348006101,10.967172254882646,5.535662149178688,18.75049129082677,12172.87154113686,51.963919824140575,13.267196277289097,16.251800200946843,11.365241786949037,11.07968155895559,0.5630856395728917,0.7797998180163785,0.6962552011095701,0.5792031098153547,0.1246319921491658,0.7458033573141487,0.914351851851852,0.8997214484679665,0.7407407407407407,0.1612903225806451,0.4946075494307969,0.6926536731634183,0.628808864265928,0.5292620865139949,0.1147132169576059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0046924090402351,0.0069588151754919,0.0091919232956853,0.0115101476389962,0.0137655779099128,0.0159535969499576,0.0183004000979831,0.0204926410466067,0.0227824004421382,0.0252485904664274,0.0273542186489233,0.0294619719468553,0.0315358938432374,0.0334337722375861,0.0352295398864963,0.0375003883635911,0.0393835616438356,0.0414357459993969,0.0434678394264037,0.0579327199239678,0.0716596011932799,0.0849822691315022,0.0981047937569676,0.1101477707812549,0.1259825858803863,0.1380074896831206,0.1497599454953852,0.1606435141169307,0.1709915147874406,0.1835971997845988,0.19556959970565,0.2072112247117685,0.2172448856864824,0.2264414458997283,0.237362613036404,0.2468612715473987,0.2553468873978669,0.2629651050703682,0.2703837616421428,0.278001387925052,0.2847833208536128,0.2914216063335029,0.2968238944732649,0.3021317947160644,0.3062024582989163,0.3110470941883767,0.3157988474308904,0.3201843532747304,0.3240184453227931,0.3231087971371298,0.3212274388066262,0.3198302631763829,0.318371111143133,0.3172097986040101,0.3155322755524334,0.3127880548014395,0.3134746429039444,0.3145732071288479,0.3154796939376104,0.3161854146003705,0.3171907094327698,0.3176500188702981,0.3180536912751678,0.3177860098142981,0.3188889178414154,0.3198108369893453,0.3217079837873504,0.3236585965775326,0.3272611566303396,0.3283677281217256,0.3298217611066773,0.3325761877720992,0.3363678090575275,0.3357863949429191,0.3407090173685462,0.339951130116066,0.3456739619554101,0.3481171548117154,0.3448540706605222,0.0,1.717542652316823,55.413461264878016,167.9507526992377,250.7751085276688,fqhc2_80Compliance_implementation_low_initial_treat_cost,35 -100000,95712,44937,427.0624373119358,5966,61.110414577064525,4707,48.62504179204279,1838,18.816867268472084,77.33810060160408,79.7209934069722,63.31256206328344,65.07499970363779,77.09926390635724,79.48193434153045,63.22362557297327,64.98797544550811,0.2388366952468459,239.0590654417508,0.0889364903101679,87.02425812967363,179.28548,125.50270974637792,187317.6613172852,131125.36541538982,379.70499,247.13488877192933,396180.8655132063,257671.48191650928,380.327,184.45289457267836,393471.1425944501,189732.06396434308,3088.78426,1419.026137530706,3193537.915830826,1448972.843040275,1117.02069,498.05562599889817,1153331.0974590438,506635.7363746428,1798.89674,765.7367408306535,1844368.2505850885,772053.1324338265,0.37989,100000,0,814934,8514.43915078569,0,0.0,0,0.0,32455,338.5259946506185,0,0.0,34824,359.9862086258776,1495864,0,53682,0,0,7217,0,0,55,0.5746405884319625,0,0.0,2,0.0208960213975259,0,0.0,0.05966,0.1570454605280476,0.3080791149849145,0.01838,0.33392,0.66608,24.134876371135817,4.327654102133089,0.3103887826641173,0.2421924792861695,0.2266836626301253,0.2207350754195878,11.300663442870336,5.938985283289991,19.76109047621852,12127.024486178889,53.46009843555893,13.929608763939925,16.43860812900084,11.80823508520059,11.283646457417566,0.5640535372848948,0.7982456140350878,0.6919917864476386,0.5726335520149953,0.1183830606352261,0.7480559875583204,0.9187935034802784,0.8666666666666667,0.75,0.1775700934579439,0.4948845366851798,0.7249647390691114,0.625,0.5222623345367028,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023514625691755,0.0046966930411848,0.0067922919162588,0.0089131451104742,0.0111109980565928,0.0131800079446724,0.0152887420190522,0.0176494019835149,0.0197371785038605,0.021553268827113,0.0237594725130487,0.0259172168769959,0.0279154414032778,0.0302144048771445,0.0321961686456151,0.0342675264550264,0.0361032883293299,0.0380333855522933,0.0400661184518302,0.0418858529776351,0.0560881370091896,0.0703219863501235,0.0834889723627053,0.0966880173329547,0.1090264814756225,0.1242647992214276,0.1371512855611795,0.14896653071656,0.1591018392843783,0.1693918715934938,0.1826586356632581,0.1940928726871149,0.2054581278643197,0.2153182827940162,0.2249603768600863,0.2352452202826267,0.2443292866795474,0.253036596760213,0.2618295813361804,0.2699204329183004,0.2764671137208575,0.2838374257912671,0.2908429767728333,0.295715039324765,0.3009552978925107,0.3056577225938633,0.3108172474304337,0.315923664316765,0.3194010501069553,0.3232392599146868,0.3228378269184151,0.3205121145374449,0.3197283703630651,0.3186743332659135,0.3184546805349182,0.3168975239029173,0.3153078993192971,0.3157177791272094,0.3164961309167933,0.3166922500267732,0.3179365138852453,0.3181028011536486,0.3197678073723254,0.321040729047715,0.3233568921582768,0.3253146490203711,0.3264020878840316,0.3295005952753932,0.3316216027387689,0.3325442853197617,0.3352277852954443,0.338256162295685,0.3414649324786856,0.3442868932403031,0.3462108578840096,0.3497011602015704,0.351416515973478,0.3517337584695097,0.3602901665771091,0.3601201652271873,0.0,2.157796504122444,56.38515698889165,174.7159382945486,256.189053388022,fqhc2_80Compliance_implementation_low_initial_treat_cost,36 -100000,95654,45257,428.042737365923,5963,61.19974073222239,4772,49.34451251385201,1837,18.838731260585025,77.27782633283482,79.68977997847273,63.2892740309558,65.07273785561478,77.05600497984105,79.46695939890272,63.2072512374708,64.99233958699598,0.2218213529937713,222.820579570012,0.0820227934849953,80.39826861879362,180.83494,126.57761401862535,189051.10084262028,132328.61565499127,382.94848,249.5756802370255,399816.46350387856,260383.9256455825,390.35531,189.3702626177565,404525.153156167,195257.6084715676,3078.92873,1412.5646535004714,3186093.880025927,1444074.17822873,1104.39001,490.11980150485874,1142834.41361574,500687.625091908,1789.27832,744.8528187858358,1837488.4897651956,752489.2695414621,0.38062,100000,0,821977,8593.23185648274,0,0.0,0,0.0,32612,340.37259288686306,0,0.0,35698,369.6761243648985,1485848,0,53371,0,0,7083,0,0,67,0.6899868275242018,0,0.0,0,0.0,0,0.0,0.05963,0.1566654405969208,0.3080664095254066,0.01837,0.3345047923322684,0.6654952076677316,24.045253853901293,4.198690086510649,0.3250209555741827,0.25,0.2160519698239731,0.2089270746018441,11.3687263688458,6.126273513618295,19.424824522460025,12141.264719982935,54.37096338979468,14.459355457321331,17.649606349820434,11.317283430526183,10.944718152126724,0.5785834031852473,0.7829002514668902,0.7143778207607995,0.574199806013579,0.1273821464393179,0.7309451219512195,0.9012875536480688,0.8606965174129353,0.7268518518518519,0.1578947368421052,0.5208092485549133,0.7070151306740028,0.6631853785900783,0.5337423312883436,0.118335500650195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024522221997041,0.004644653577803,0.006953891133535,0.0092889010843826,0.0116791291520423,0.0140789111765365,0.0160938296787353,0.0185686416701563,0.0206624250731368,0.0228434455701129,0.0251487179487179,0.027291869960454,0.0293975407727529,0.0314242427365578,0.0335226099525087,0.0354860062470264,0.037542485285584,0.0398716630844469,0.0420499479708636,0.0441768324470858,0.0583932452767095,0.0726815730219406,0.0864664021663832,0.0988971671507345,0.1109211775878442,0.1264461497750727,0.1379782726432827,0.1490699111461507,0.1607914438502674,0.1709233791748526,0.1837117334568925,0.1952534592148286,0.2064300562684341,0.2167680658292117,0.2255319617361822,0.2353736370889105,0.244758523678746,0.2528127812781278,0.2612366244170345,0.2684864091559371,0.2762779081732937,0.2825118921003728,0.2891864082033329,0.2957304286347677,0.3004823170657628,0.3052390113955897,0.3110735524256651,0.3151671736391289,0.3198024806563241,0.3237778481680921,0.3225049873294872,0.3207482149257023,0.3189522559521289,0.317276108064306,0.316011194140939,0.3133380381086803,0.3113914009201967,0.3119044092233249,0.312465762804711,0.3126352499329339,0.3137589556997637,0.314322478471741,0.3156460303151009,0.31638721216186,0.3182036734301375,0.3198823253755434,0.3198916298303151,0.3219087294073092,0.3238654451558134,0.3266195100507533,0.3295761741122566,0.3327472293265132,0.3354370463868728,0.3368300153139357,0.3411875589066918,0.3436828278003344,0.3415161340126602,0.345979381443299,0.3489349775784753,0.3562066306861989,0.0,2.148942702470765,57.683372886829545,177.39563860690424,259.684905505258,fqhc2_80Compliance_implementation_low_initial_treat_cost,37 -100000,95827,45258,429.7327475554906,5881,60.28572323040479,4575,47.241382908783535,1783,18.26207645026976,77.39792083527668,79.70053001450314,63.37134666233784,65.0710679380685,77.17469497851896,79.47890953047508,63.288513309860136,64.99099343006715,0.2232258567577218,221.6204840280653,0.0828333524776994,80.07450800134563,178.4123,124.89301766701834,186180.0536383274,130330.22876281229,382.32557,249.05889998866303,398464.3367735607,259395.650201129,378.98122,182.71733960835516,392359.7733415426,188253.51123342355,3001.0701,1358.8242938086998,3101519.707389358,1387887.5240870924,1069.42458,471.8571658068685,1099203.606499212,475873.98452609306,1749.3117,729.260920367675,1793463.8880482535,733695.6423300987,0.38195,100000,0,810965,8462.729710833064,0,0.0,0,0.0,32671,340.394669560771,0,0.0,34559,357.52971500725266,1503394,0,53869,0,0,7143,0,0,69,0.7096121134961962,0,0.0,0,0.0,0,0.0,0.05881,0.1539730331195182,0.3031797313382078,0.01783,0.3257355318461041,0.6742644681538958,24.82210805965028,4.328069211607848,0.3304918032786885,0.2330054644808743,0.2192349726775956,0.2172677595628415,11.007864022591766,5.570859914856157,18.79581549433449,12178.542020905154,51.50161527805614,12.684354892564931,16.980898222480988,11.070391512195714,10.765970650814504,0.5554098360655738,0.7692307692307693,0.6838624338624338,0.5643070787637089,0.1217303822937625,0.7288135593220338,0.925925925925926,0.8423772609819121,0.7235023041474654,0.1363636363636363,0.495139911634757,0.6831395348837209,0.6293333333333333,0.5203562340966921,0.1180904522613065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0049346938361924,0.0068867589634362,0.0092300193942101,0.0113553188028627,0.0135352425149091,0.0154775733121395,0.0173425146646263,0.0193207593436459,0.0214339792514988,0.0234616724381697,0.0253398307258271,0.0272769301895515,0.0293176368893874,0.0314667656122775,0.0334826959610142,0.0356799255159571,0.0377464088054225,0.0398429955453101,0.0419407210057447,0.0565888157551607,0.0710453380745698,0.0844701219448259,0.0971570956956914,0.1096798676041194,0.1253779309469945,0.137655342070662,0.1494939174303138,0.1606148981401361,0.1705619254984823,0.1835079746276532,0.1958960269127175,0.2067668355476309,0.2172082750174947,0.2276331562682151,0.23828345567476,0.2477474463624604,0.2562845707604443,0.2645391678947965,0.2719898402819093,0.2793993549654941,0.2849766355140187,0.2904404374815252,0.2956473868763388,0.3013696969696969,0.3070016849303275,0.3124055879452191,0.3171434373175622,0.3220295174338959,0.3252591968843745,0.324829658243468,0.3230935833641759,0.3218623197562585,0.3208171962509178,0.3184686018957346,0.3157637872132747,0.3126685486287435,0.3146436807929472,0.3161246381746977,0.3163912238210571,0.3172281075425518,0.3179758010483585,0.3189284072386843,0.320369252777219,0.3217456155123054,0.323822923994893,0.3262989334019616,0.3293341331733653,0.3321149926196668,0.3346956590746766,0.3384973951192761,0.3423524388942256,0.3413291139240506,0.342540168324407,0.3441023211747986,0.3477691850089233,0.347010911326264,0.3513131313131313,0.3514028874965949,0.3442373526055534,0.0,1.9028597602513693,51.87212379628632,171.0900904439194,254.65760790588195,fqhc2_80Compliance_implementation_low_initial_treat_cost,38 -100000,95546,45245,428.7777614970799,5781,59.28034663931509,4560,47.06633454043079,1773,18.106461808971595,77.19945181010942,79.67065010885766,63.224607941291474,65.05378881813309,76.97709491668373,79.45345539184946,63.141086404583945,64.9753839177547,0.2223568934256974,217.1947170081978,0.0835215367075292,78.40490037838777,179.22542,125.5373603423478,187580.24407091876,131389.4462796431,378.50004,246.9861459400186,395506.7297427417,257862.14591926252,383.44146,185.50072550987008,397594.5722479225,191190.9343678269,2973.32863,1354.3392863226495,3069043.3089820608,1374582.689304262,1070.77137,473.9083208501755,1102363.6886944508,477677.0988321598,1728.68208,727.8067814982363,1766183.4090385782,723742.7637560102,0.38056,100000,0,814661,8526.374730496305,0,0.0,0,0.0,32259,336.9581144160928,0,0.0,35019,362.7990706047349,1489310,0,53476,0,0,7149,0,0,74,0.7640298913612291,0,0.0,0,0.0,0,0.0,0.05781,0.1519077149463948,0.30669434353918,0.01773,0.3387842748595969,0.661215725140403,24.52166570658177,4.19741135206231,0.3269736842105263,0.2390350877192982,0.2208333333333333,0.2131578947368421,10.996019515155028,5.84290982096454,18.93477656598888,12194.544090295974,51.81737647480724,13.112768081998858,16.889692315911002,11.179796553389709,10.635119523507678,0.5732456140350877,0.7862385321100918,0.7149564050972501,0.579940417080437,0.1100823045267489,0.7377593360995851,0.9012987012987012,0.8894601542416453,0.7377777777777778,0.145631067961165,0.5141579731743666,0.723404255319149,0.6533575317604355,0.5345268542199488,0.1005221932114882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022300838308785,0.0042308394716016,0.0066922576976196,0.009038962095331,0.0115343893798102,0.0139350445472894,0.0159310098484461,0.0185366850602902,0.0207224723700368,0.0230787362034864,0.0254780993050494,0.0278551818452901,0.0299169945006282,0.0317303129706422,0.0339788768782423,0.035878431534926,0.0379278158058494,0.0400141348632244,0.0418971426190401,0.0437755783846989,0.0580900275124747,0.0722937049737314,0.0859761802146513,0.098934679297373,0.1112990170172286,0.1269163079663281,0.1387432048595227,0.1507283496078117,0.1609782748425247,0.1704411037271221,0.1830414029934558,0.1942961323088944,0.2052756171795739,0.2161631453081463,0.2253457391035617,0.2356835779113298,0.24626214244147,0.2547877802981571,0.2624366926535025,0.2704310770609113,0.2773621887431428,0.2839451155154216,0.290133928041851,0.2958937343117591,0.3009401334697257,0.3061981020166073,0.3102954656755026,0.3147500829229709,0.3200150625876486,0.3243715268589573,0.3238304883318928,0.3223155311021939,0.3211927071573718,0.3197168623250293,0.3183883220376852,0.31634532727496,0.3144960416303089,0.3158007339993088,0.3168009600548603,0.317201218419638,0.3171892339232983,0.3176255925110569,0.3196707507052335,0.3201202413800839,0.320456795190613,0.3214454045561665,0.3229557496777889,0.3274992116051718,0.3295990981469738,0.3329764453961456,0.336006524398532,0.3418329637841833,0.3428017268347619,0.3467485220554798,0.3513085591878551,0.3547134282688007,0.35941026026779,0.359161889701522,0.3583378305450621,0.3615094339622641,0.0,2.6089550776406663,52.58075822966663,173.86816635339727,248.7136634592312,fqhc2_80Compliance_implementation_low_initial_treat_cost,39 -100000,95681,45010,425.5285793417711,5973,61.109311148503885,4707,48.60944179095118,1828,18.812512411032493,77.33990302576841,79.73017140543956,63.32261558699434,65.08898236958288,77.11420990875419,79.50315011476475,63.239187155634575,65.00678563478766,0.2256931170142166,227.0212906748128,0.0834284313597635,82.19673479521816,179.44564,125.69202340406127,187545.74053364823,131365.70834759384,381.14406,248.3086468540364,397755.2074079493,258924.438538016,387.79465,188.63777648384576,400855.2690711845,193829.47131162343,3073.31406,1411.1591589147786,3177997.732047115,1440851.0593928625,1108.40819,495.995167511365,1144693.7845549274,504671.8216359735,1786.73088,748.7919412599789,1840343.4537682508,759997.8256924468,0.37899,100000,0,815662,8524.806387893103,0,0.0,0,0.0,32515,339.21050156248367,0,0.0,35391,365.4748591674418,1494758,0,53630,0,0,7172,0,0,75,0.7838546837930206,0,0.0,1,0.0104513957839069,0,0.0,0.05973,0.1576031029842476,0.3060438640549138,0.01828,0.3332800255877179,0.6667199744122821,24.36438052069069,4.229746971713707,0.3199490121096239,0.2438920756320373,0.2205226258763543,0.2156362863819843,11.240552001365828,5.944107977949221,19.431401641660774,12161.872769830848,53.342380565179816,13.842290539684154,16.84601840626224,11.452525043824412,11.201546575409012,0.568090078606331,0.7996515679442509,0.6892430278884463,0.581888246628131,0.1123152709359606,0.7503912363067292,0.9390519187358916,0.855,0.7445887445887446,0.142156862745098,0.5001458151064451,0.7120567375886525,0.6292947558770343,0.5353159851301115,0.1048088779284833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0047539404997212,0.0069405688425282,0.0090297810100353,0.0113988794321914,0.0136810602821718,0.0158600725730827,0.0183004000979831,0.0206186620870134,0.0227435566746504,0.0250243477369419,0.027192100022583,0.0292448173741362,0.0313536452217621,0.0334183067920283,0.0355765552465338,0.0375128202471847,0.0397425917276454,0.0419522952576118,0.044031647746818,0.0590299902852785,0.0735529663013096,0.0862235370638467,0.0994582653973597,0.1114357746389729,0.1271686696005416,0.1390135480653956,0.150002128746594,0.1606519208381839,0.1704746485970687,0.1832024897963579,0.1955141036322127,0.2074755581655846,0.2180710904101201,0.2275198661647846,0.2377313353490381,0.2461287875407202,0.2546939510186633,0.2626528436287743,0.2700019466614756,0.2774886668516976,0.2841731243498486,0.2900868084301156,0.2949361177301737,0.3004247057395947,0.305266527933408,0.3089958603784439,0.3141415168696448,0.3183765939543012,0.3223180834784444,0.321212202805676,0.3201727838001431,0.3187460373370905,0.3177414690572585,0.3155617668485452,0.3134143355573238,0.3108798456355671,0.3120161396142238,0.3128761144922348,0.3132347702173139,0.3138310801967053,0.314194923617416,0.3157421540134233,0.3179521573887771,0.320214582982511,0.3199572660708236,0.3207998632712356,0.3245470558631102,0.3272389107243121,0.3300924828076831,0.3320489573889392,0.3344274445444438,0.3377691293704098,0.342874497000987,0.343866866118175,0.3462584229814399,0.3492940454266421,0.3569526930165881,0.3617795187465025,0.3593023255813953,0.0,2.271982921729504,55.69664272449763,172.75917598820826,259.7905497838503,fqhc2_80Compliance_implementation_low_initial_treat_cost,40 -100000,95787,45060,426.0181444246088,6058,61.97083111486945,4771,49.244678296637325,1886,19.313685573198867,77.331780499572,79.6710417171948,63.32970022966426,65.0619833489835,77.0987391529984,79.4409728188984,63.24301833038099,64.97905239455085,0.2330413465736001,230.0688982963948,0.0866818992832705,82.93095443265486,178.68488,125.13028023919271,186543.7481077808,130633.6630640825,381.96846,248.44387644491016,398136.72001419816,258739.88210699093,383.31253,186.14345461568703,396706.9122114692,191582.89391922424,3119.85028,1431.75656727793,3222431.321578085,1460150.087707592,1100.68742,489.60493743776567,1133080.5224090952,495294.1253709269,1844.3021,768.1470842324709,1890658.753275497,772328.6931584834,0.38086,100000,0,812204,8479.2612776264,0,0.0,0,0.0,32649,340.2549406495662,0,0.0,35014,362.0950650923403,1499288,0,53811,0,0,6996,0,0,77,0.7829872529675216,0,0.0,1,0.0104398300395669,0,0.0,0.06058,0.1590610723100352,0.3113238692637834,0.01886,0.3333333333333333,0.6666666666666666,24.30507198453676,4.305494481061191,0.3156570949486481,0.2483756025990358,0.2150492559211905,0.2209180465311255,11.34168250203418,6.011086549856278,20.03892679305535,12150.83410489882,54.107647772568434,14.371036263742992,16.91242524594187,11.476012191358732,11.348174071524832,0.5648710962062461,0.7940928270042195,0.6899070385126163,0.5877192982456141,0.1062618595825427,0.7439024390243902,0.921875,0.8345498783454988,0.7413127413127413,0.1443298969072164,0.4969644405897658,0.7164179104477612,0.6356164383561644,0.5358539765319427,0.0976744186046511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728032413269,0.0049065325818093,0.0071742417323713,0.0094883985533747,0.0115942028985507,0.0137985111864682,0.0160987744948104,0.0182839058751467,0.020343280072786,0.022736579173662,0.0249420786090664,0.0270864136684737,0.0291922017027927,0.0313353042367556,0.033490551433024,0.0354794690485051,0.0373768861915759,0.0396822104215068,0.0417948291628564,0.0435552223575839,0.0579660238751147,0.071512996182208,0.0841326247156619,0.096526070235168,0.1083820662768031,0.1234677487530645,0.1358120210702589,0.147206124727524,0.1587714898566809,0.1684897312006514,0.1815735368518498,0.1943732355518058,0.2063554207040553,0.2168434868205184,0.2265488284044508,0.2364907537699578,0.2458099935280858,0.2546959710255775,0.2628373780902699,0.2703804192281714,0.2772137554635647,0.2836700336700337,0.2907546321493646,0.2962834234212639,0.3016495797094407,0.3072607097935729,0.3118738729713484,0.3164118246687054,0.3205896079651524,0.3243971368954861,0.3228821548821549,0.3215238252357777,0.3201914953534215,0.3188462372587291,0.317189195617595,0.3158951871329786,0.3133225509783401,0.314137760973204,0.3144124244447869,0.314365854965787,0.3149194078021504,0.316494988038514,0.318013856812933,0.3176359888878932,0.317310243361231,0.3187353018029788,0.3196517767946339,0.3251564613013806,0.3288934067089628,0.3324470196047305,0.334124304097837,0.3345590194511058,0.3370544209057465,0.3377934092820552,0.3407763331449029,0.3408199643493761,0.344790382244143,0.3447230084917104,0.3470685840707964,0.3562130177514793,0.0,2.1499771121196987,57.448602737975776,175.5995947542772,259.49426565551937,fqhc2_80Compliance_implementation_low_initial_treat_cost,41 -100000,95694,45296,429.5567120195623,5917,60.76661023679645,4574,47.28614124187514,1831,18.76815683323928,77.34192318165195,79.71672593044876,63.32298576779221,65.07488994121256,77.1149804918033,79.49169434789145,63.23871925950317,64.99365953796017,0.2269426898486557,225.0315825573068,0.0842665082890405,81.23040325239117,179.99388,126.04160773291584,188092.9420862332,131712.96082817714,377.64198,246.37747400452383,394102.3470646018,256931.81703818837,383.97032,185.78284686102464,398422.3775785316,191912.50693065644,2995.34694,1386.773264480463,3099435.2623988967,1418540.1192357552,1083.51664,482.00748117770365,1118310.1239367148,489851.6370382156,1789.20272,751.7849707734348,1836588.897945535,757755.4920856013,0.38192,100000,0,818154,8549.679185737872,0,0.0,0,0.0,32256,336.53102597864023,0,0.0,34979,362.6559658912784,1492714,0,53516,0,0,6999,0,0,74,0.7732982214140908,0,0.0,1,0.0104499759650552,0,0.0,0.05917,0.1549277335567658,0.3094473550785871,0.01831,0.343483164169486,0.6565168358305139,24.279051362746397,4.257108773965855,0.3187581985133362,0.2490161783996502,0.2083515522518583,0.2238740708351552,11.4036240391183,6.095144458163819,19.45738180759631,12200.767449482171,52.05681339381902,13.671418819011569,16.477201002807142,10.681353963386346,11.226839608613972,0.5743331875819851,0.7963125548726954,0.6947873799725651,0.6012591815320042,0.130859375,0.7361002349256069,0.9288990825688074,0.8513853904282116,0.7336244541484717,0.1348837209302325,0.5116772823779193,0.7140825035561877,0.6361922714420358,0.5593922651933702,0.1297898640296662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023085568482123,0.0044901227435359,0.0065938302038,0.0091006967720966,0.0108813928182807,0.0128382643399645,0.0151295801643455,0.0176447162856238,0.0197556112275678,0.022024492136304,0.0241264047247969,0.0263911851387847,0.0286448958601182,0.0305812288131227,0.0326702932584617,0.0347245201853077,0.0366069671324542,0.038923833841938,0.0410253743760399,0.0430147863328019,0.0583172298532407,0.0720381131877912,0.0857106870709742,0.0982826837275865,0.1107335809555968,0.1269009746960027,0.1388936079847101,0.1502029337509187,0.1619382562962329,0.1722005732504589,0.1848285529437136,0.1961895065205147,0.2076856085347267,0.217561178479184,0.2267158346634377,0.2363962726174779,0.2463465553235908,0.2553220232131398,0.2633161268364626,0.2704959340281754,0.2782759618166039,0.284029484029484,0.2901225069538971,0.295993478312993,0.3013109456060845,0.3071548282151131,0.311121962213124,0.3160533414770703,0.3206346325845464,0.3247791000224532,0.3234814045406105,0.3232122666225421,0.3225824656451931,0.3214110305376592,0.3196498776055189,0.3170537775806969,0.3149362448450757,0.3154093624844068,0.3164431536687452,0.3166613173567276,0.3183766683513974,0.3198434194658073,0.3201842546063652,0.3214437462262674,0.32271920142055,0.3239579275418777,0.3233131794828124,0.3278857894242509,0.3298875462736607,0.3330038353564509,0.3372403493686925,0.3391129671723846,0.3439309997481742,0.3482075328997126,0.3507838745800672,0.3507969995311767,0.3536585365853658,0.3569003395246655,0.3624215980365421,0.3729951510630361,0.0,1.944646157711434,56.0210372363779,171.8569750036483,242.79790449769837,fqhc2_80Compliance_implementation_low_initial_treat_cost,42 -100000,95730,45411,430.7740520213099,6010,61.401859396218526,4741,48.88749608273268,1777,18.11344406142275,77.32392886815877,79.6891014468755,63.31606620966248,65.06540363421645,77.10611562482553,79.4744843894616,63.23482105109274,64.98817571269156,0.2178132433332393,214.61705741390347,0.0812451585697431,77.22792152489433,177.95492,124.7082998398658,185892.53107698736,130270.86580995069,384.00005,249.9695523329684,400463.1150109684,260454.3887373906,391.35616,189.744390969916,404685.88739162224,194987.54341478457,3067.20393,1399.0840932890685,3163558.1949232216,1421092.9703437453,1101.97488,485.0988369150135,1135846.9027473102,491543.1613490042,1735.0156,723.8925862547953,1771565.778752742,722545.6435237558,0.38163,100000,0,808886,8449.660503499425,0,0.0,0,0.0,32723,341.1365298234618,0,0.0,35722,369.14237960931786,1498141,0,53861,0,0,7099,0,0,70,0.7103311396636373,0,0.0,1,0.010446046171524,0,0.0,0.0601,0.1574823782197416,0.2956738768718802,0.01777,0.3358681875792142,0.6641318124207858,24.6392542676016,4.271072443981359,0.3265133937987766,0.2488926386838219,0.2159881881459607,0.2086057793714406,11.442408644138258,6.141163417392404,18.855677249385828,12241.60998949546,53.66586561588907,14.122304426321902,17.53951453595449,11.32031118912561,10.683735464487064,0.5768825142375026,0.8033898305084746,0.6983204134366925,0.59375,0.0990899898887765,0.7525450274079875,0.9223744292237442,0.8502415458937198,0.7447698744769874,0.1451612903225806,0.5121247113163973,0.7331536388140162,0.6428571428571429,0.5477707006369427,0.0884184308841843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195275861719,0.0046842206653215,0.0070331053240505,0.0095104554044991,0.0118403385278919,0.0139103869653767,0.0161083131129824,0.0185878918411301,0.0207138402396507,0.0230162793078734,0.0252622081876621,0.0273311566972627,0.0291973804603727,0.0311788638821651,0.0333608502734495,0.0352365989291546,0.0371743746439484,0.0390667164860713,0.040981646129049,0.042767990164925,0.0577358766352408,0.0719173066058462,0.0855363191174774,0.0981713792994668,0.110314355313248,0.1262826073158863,0.1387553716377526,0.1508975915160033,0.1622447235751516,0.1723306174957118,0.185506965527636,0.1977116407838387,0.2082844096542726,0.2187769917890294,0.2287439374443234,0.238162207654146,0.2478547596996105,0.2568972501012647,0.2652053488319295,0.2725594726282602,0.2794615135085036,0.2871217534939844,0.2933437633338074,0.2989273887795748,0.3043330170547162,0.3088744989207524,0.3140684315371412,0.3181511256067574,0.322291655862677,0.3259332672613148,0.3246369777130607,0.3228249941467311,0.3209792971173915,0.3190337660833948,0.3184271968829469,0.3158772923491412,0.3142445952143727,0.3149016393442623,0.3151061216133215,0.3155024946543122,0.3160512293166308,0.3168015794669299,0.3176591118173454,0.3184181749202169,0.3199001512133068,0.3207836811156788,0.3211465257655815,0.3233758883089114,0.3270232230823364,0.3287013141700083,0.3331969634983408,0.3360512521840419,0.3388756431170787,0.3386387752008489,0.3424194003195789,0.3448684522398673,0.3468679245283019,0.3544577839008069,0.3577860169491525,0.3574130105900151,0.0,2.4879344437932804,55.51327112079297,178.65837802680792,255.8849522956635,fqhc2_80Compliance_implementation_low_initial_treat_cost,43 -100000,95793,45214,428.5073022037101,5940,60.69337007923334,4683,48.281189648512935,1857,18.915787166076854,77.4066300966336,79.7450697014988,63.35719594835807,65.08742946703336,77.1674457396594,79.51292547477834,63.26639955693244,65.00328232136859,0.2391843569742064,232.14422672046453,0.0907963914256271,84.14714566477244,179.64936,125.7519164764485,187539.1312517616,131274.64060677553,376.07523,244.6367745356481,391979.674924055,254768.7561049848,380.92272,184.623242775465,395033.5306337624,190603.2420835476,3083.75217,1416.363848847714,3178155.9090956543,1437539.8712303725,1104.77585,493.9795994736369,1136087.2819517085,498467.83471132047,1811.3295,767.7331121605803,1846690.8437986076,761277.1635291702,0.38075,100000,0,816588,8524.505965989163,0,0.0,0,0.0,32116,334.62779117472047,0,0.0,34747,360.057624252294,1499340,0,53881,0,0,7041,0,0,70,0.7307423298153309,0,0.0,2,0.020878352280438,0,0.0,0.0594,0.1560078791858174,0.3126262626262626,0.01857,0.3397075365579302,0.6602924634420697,24.33364274665974,4.290151101625329,0.3192398035447363,0.242152466367713,0.2186632500533845,0.2199444800341661,11.216622690669965,5.960279840561324,19.63265684002776,12207.769806307644,52.96306799896309,13.643356337575431,16.852621700695824,11.32435863599271,11.14273132469912,0.5628870382233611,0.7892416225749559,0.6909698996655519,0.5771484375,0.1135922330097087,0.7306791569086651,0.9036144578313252,0.8624078624078624,0.7552742616033755,0.1396396396396396,0.4997060552616108,0.7232267037552156,0.6268382352941176,0.5235069885641678,0.1064356435643564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023709648002918,0.0046439942406359,0.0068296445134512,0.009205165459293,0.0113505761739608,0.0135435123520905,0.0159764278868701,0.0180472617771653,0.0201561797293429,0.0221458103074215,0.0242585114887162,0.0260841012169844,0.0282128761716822,0.0303797728980717,0.0323382058841721,0.0344492864371424,0.0365208934686572,0.0386174436807348,0.0407285421883279,0.0426991795427095,0.0579672336429093,0.0723847972054301,0.0863052183575486,0.0994544823889256,0.1112984467533562,0.1271943267208488,0.1399917308935935,0.1512160883113016,0.1621503356564244,0.1725272135081854,0.1847590964367581,0.197194674856976,0.2084275280410399,0.2183728524776373,0.228444297956493,0.2388797910949809,0.247752671142736,0.2568498926278628,0.2646221546767077,0.2712411566728484,0.2771821472768698,0.2842481765475967,0.2902359372411671,0.2957009211456224,0.3008430310245135,0.3054956431714261,0.3103810906905704,0.3153381258349768,0.3199316097611522,0.3243303895555292,0.323319316405197,0.3223266761179855,0.3207374311124892,0.3196409730151618,0.319075968347759,0.3164833820223,0.3156565257889834,0.3155562097275374,0.3166010052981932,0.3181423226286951,0.3182428651371012,0.3181094312171912,0.3205998750260362,0.3219283219505684,0.3215421018666794,0.322309983167163,0.3242799751032649,0.3270232340558241,0.3298473122777661,0.3326508111513624,0.3360589085652331,0.3373677840340999,0.3388646288209607,0.3393515384036711,0.3442486085343228,0.3448477068502742,0.3479389312977099,0.3497213375796178,0.3541609822646657,0.3549124143183549,0.0,2.372221494099925,55.91373140530031,169.43523114326734,257.60332442524845,fqhc2_80Compliance_implementation_low_initial_treat_cost,44 -100000,95689,45371,430.16438671111626,5807,59.390316546311496,4597,47.476721462237045,1853,19.04085109051197,77.29491858535671,79.69749164734353,63.29396199958445,65.07407126814259,77.06136071984531,79.46457503070805,63.20769379298629,64.99036679963629,0.2335578655114005,232.9166166354781,0.086268206598163,83.70446850629776,179.38052,125.6505592964588,187462.007127256,131311.39346890323,380.06529,247.2864170303335,396614.5011443322,257853.6477864054,384.48888,186.38804382051947,398065.8800907105,191908.1591100197,3050.47142,1402.2155184970468,3154181.30610624,1431667.8494884982,1110.91704,495.1963327574088,1146105.6338764122,502645.3539669226,1813.50834,756.7872500484916,1865077.1771049963,764813.682321757,0.38169,100000,0,815366,8521.000323966182,0,0.0,0,0.0,32526,339.3075484120432,0,0.0,35089,362.98843127214207,1494346,0,53669,0,0,7139,0,0,61,0.6270313202144447,0,0.0,0,0.0,0,0.0,0.05807,0.1521391705310592,0.3190976407783709,0.01853,0.329107672044781,0.6708923279552189,23.976636486349125,4.452415142297981,0.3112899717206874,0.2345007613661083,0.2281922993256471,0.2260169675875571,11.56986925488068,6.006742678788374,19.628063467451025,12179.130440428507,52.28769054715223,12.930012104267432,16.265910241506326,11.801320278906948,11.29044792247154,0.5642810528605612,0.7866419294990723,0.7064989517819706,0.5815061963775023,0.1203079884504331,0.7414596273291926,0.9095238095238096,0.8835443037974684,0.7630522088353414,0.1517857142857142,0.4953158053792686,0.7082066869300911,0.638996138996139,0.525,0.1116564417177914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024531916834774,0.0046576760327559,0.0071802163205199,0.0096385542168674,0.0120015879963761,0.0140959913569047,0.0162353565451651,0.0183690566191945,0.0203175512542456,0.0223522060254663,0.0245984038733766,0.0264220334281869,0.028370618864352,0.0303620567046965,0.0323602881975267,0.0343037385593877,0.0365810690377002,0.0385605714523028,0.0408006158583525,0.0429217652331617,0.0574392078215091,0.0714098765690595,0.0846975611803719,0.0984122307684213,0.1108708037051885,0.1263199102778424,0.138939011187297,0.1505201179714866,0.1611710652847526,0.1717452415184223,0.183925628292273,0.1954216971742611,0.2072620535956949,0.2176212801766062,0.2268053707511793,0.2364449660639746,0.2453472284209586,0.2543862610711593,0.2623043902882191,0.2703759329534641,0.2781850397804259,0.2844382528886339,0.2901143926296095,0.2959559485106229,0.3016640937435423,0.306736275671406,0.3109911174031246,0.3158075645122277,0.3202350443943982,0.3239525775099236,0.3236105318390356,0.3222060359518443,0.3208142121118275,0.31860656566386,0.3180339557060737,0.3154418975239029,0.3132302814110186,0.3144326509151852,0.315076218470162,0.315700085812357,0.3162232694365695,0.3170345128184808,0.3183544967992444,0.3199480414772345,0.3209834798570186,0.3216631342072899,0.3229369348746709,0.3265589497601616,0.3283870740883997,0.331966886890074,0.3371821305841924,0.3410035155001598,0.344412209889001,0.3461714809720311,0.3500236183278224,0.3523433763749402,0.3516030534351145,0.3527975584944048,0.3601532567049808,0.3573050719152157,0.0,2.237944069653142,56.28720203454255,166.13916338087984,251.56776470536116,fqhc2_80Compliance_implementation_low_initial_treat_cost,45 -100000,95724,45478,431.6994693075927,5943,61.11320045129748,4685,48.41001211817308,1880,19.29505662111905,77.3593554540744,79.72988230041042,63.33143217950936,65.08371090097572,77.13206891884286,79.50277289648048,63.24759358760596,65.00164650370796,0.227286535231542,227.10940392994416,0.083838591903401,82.06439726775727,178.21144,124.86843527634056,186171.9318039363,130446.09698334865,380.52909,247.58822150893175,397006.8321424095,258127.7684895447,391.68756,189.45852932097867,405244.2647611884,194962.11390752703,3059.01839,1398.1712223659113,3164317.349880907,1429479.4076615516,1096.36351,486.7679179874706,1132063.8502360955,495441.1781124871,1832.0924,764.0355466407912,1882925.0971543184,774472.533834402,0.38125,100000,0,810052,8462.36053654256,0,0.0,0,0.0,32350,337.3970999958213,0,0.0,35718,369.30132464167815,1501796,0,53829,0,0,7146,0,0,68,0.6894822615018177,0,0.0,0,0.0,0,0.0,0.05943,0.1558819672131147,0.3163385495540972,0.0188,0.3334940533590485,0.6665059466409514,24.3667804320722,4.247626136581191,0.3233724653148346,0.247812166488794,0.2098185699039487,0.2189967982924226,11.219365549270156,5.957436757074818,20.05288385810952,12172.27193035538,53.26788659191782,13.963523844498198,17.21474958087621,10.847477931241135,11.24213523530229,0.5592315901814301,0.8001722652885443,0.6838283828382838,0.5595116988809766,0.1023391812865497,0.7274155538098979,0.9120370370370372,0.8571428571428571,0.706140350877193,0.1583710407239819,0.4964830011723329,0.7338820301783264,0.6233303650934996,0.5152317880794702,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599238342178,0.0046732287854673,0.0065958375191532,0.0089476143080579,0.0109819712638418,0.0130514013458621,0.0150160558642132,0.0172202600902353,0.0192901392324834,0.0213351897541948,0.0234015279700558,0.0256165326266703,0.0279538252602987,0.0299302486116691,0.0322573987699673,0.034587911803926,0.0365769067511465,0.0385217761090309,0.0406682398927156,0.0426019478152179,0.0568340816539626,0.0711968352310783,0.0850981255965679,0.0980190107671601,0.110070751484094,0.1259559344622967,0.1379474990981049,0.1497599454953852,0.160652654749057,0.171042607753302,0.183336386066607,0.1952198997651083,0.2071707513407086,0.2172861660338545,0.226786638619368,0.2374790717271507,0.2473033030350403,0.2559303541903337,0.2642076719726795,0.271807736806534,0.2785811795737986,0.2855907039816698,0.2921256678171245,0.2977335822324334,0.3022891873203042,0.3074972613025122,0.3124953095684803,0.3172811733455345,0.3212585386048437,0.3248369028006589,0.3231681092414386,0.3217544245355612,0.320870261387418,0.3194074543282035,0.3177770863890247,0.3153443353739523,0.3135950041789538,0.3130877038054588,0.3141027824132411,0.3146567057986482,0.3146138880574678,0.3158154404799494,0.3169923676926948,0.3188493531535167,0.3198594870314229,0.3207596321671399,0.3209648023692903,0.3237774561017056,0.3276025402617452,0.3316580925999208,0.3349870283555596,0.34,0.3413677484658695,0.3444798301486199,0.3482884059322824,0.3508813160987074,0.351913730255164,0.3519519519519519,0.3458503401360544,0.350566037735849,0.0,2.065969208557042,56.047953850044365,174.29521274188372,255.97815890459665,fqhc2_80Compliance_implementation_low_initial_treat_cost,46 -100000,95889,45092,426.8059944310609,6001,61.3209022932766,4727,48.7230026384674,1835,18.761276058776293,77.4394230829848,79.7192489934742,63.39129033748679,65.07721940396664,77.21549469208094,79.498767085613,63.307865218198735,64.99808953124892,0.2239283909038647,220.48190786119903,0.0834251192880515,79.12987271771499,180.12918,126.08193567609676,187851.7661045584,131487.3819479781,381.66919,248.57014026484595,397353.1583393299,258547.8211941369,384.86043,186.5350286852072,398209.0646476656,192047.05162740732,3091.41882,1400.5670429042286,3190519.141924517,1427176.3423377313,1114.20134,484.5175239607283,1148778.8693176485,492098.9414434688,1797.24274,744.427139749569,1840514.0527067755,745797.5139901424,0.38042,100000,0,818769,8538.71664111629,0,0.0,0,0.0,32607,339.4758522875408,0,0.0,35128,363.09691414030806,1495647,0,53720,0,0,7088,0,0,72,0.7300107415866263,0,0.0,2,0.0208574497596178,0,0.0,0.06001,0.157746701014668,0.3057823696050658,0.01835,0.3290291726446676,0.6709708273553324,24.29022785813249,4.4043430807219055,0.323460968902052,0.2392638036809816,0.2181087370425216,0.2191664903744447,11.204655370786297,5.716393504604744,19.320402869653883,12157.419356386425,53.24733793670809,13.632887151694176,17.19418308453086,11.255016496162732,11.165251204320322,0.558282208588957,0.7771883289124668,0.6873773708306082,0.5751697381183317,0.1119691119691119,0.7373086220789685,0.9041095890410958,0.8370927318295739,0.7181818181818181,0.1467391304347826,0.4945496270797476,0.696969696969697,0.6345132743362832,0.5363748458692972,0.1044600938967136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023689005871633,0.0046313186590457,0.0067762910964809,0.0091786900059905,0.011271814365719,0.0133900409027085,0.0153806977336389,0.0175438596491228,0.0196559192513587,0.0218703328627836,0.0239556543746221,0.0261537830128665,0.0282076576854306,0.0302546787177533,0.0324965204391978,0.0345621643948781,0.0365220270242307,0.0385675502041323,0.0405527466024356,0.042550092590666,0.0574377150005212,0.0710538964702932,0.0845480438971265,0.0967735161639175,0.1094185887381175,0.1252362300326235,0.1376216754403618,0.1489655612109362,0.1602933808087161,0.1708619619426785,0.1828737300435413,0.1947010708072655,0.2056967181949529,0.2160097903167648,0.2262976767710085,0.236683967640907,0.2458599861813805,0.2552233105679367,0.2634900134815167,0.2703555504744483,0.2772427014042867,0.2835658824216241,0.2907000106366634,0.2961251630974754,0.3014721052439957,0.3061345086114565,0.3101253953767487,0.315314857621866,0.3195492608291119,0.3237566297724491,0.3229239451760279,0.3209574920735139,0.3200219125744465,0.3181936191080597,0.3175666661725687,0.3152701835843235,0.3137877137308767,0.3149371892174823,0.3162096376108529,0.3172721455993175,0.3182793692264626,0.3203354132629963,0.3213890685977836,0.3231012025161706,0.3225267379679144,0.3242983866784251,0.3254643634615928,0.3284409959178586,0.3315043756077233,0.3345777498329862,0.3380542149654955,0.3409654444737536,0.3424820256330103,0.3449139042706516,0.3474983510788655,0.3485999050783104,0.3551676193418817,0.3586489252814739,0.3572222222222222,0.3570072161033042,0.0,2.277049506095357,54.123708132849856,171.43994970544176,267.2874023904617,fqhc2_80Compliance_implementation_low_initial_treat_cost,47 -100000,95729,45227,428.17745928610975,5833,59.67888518630718,4592,47.3106373199344,1750,17.873371705543775,77.34647984393533,79.69869249273545,63.33814763576003,65.0752383625888,77.12336697018186,79.47932509489155,63.25487563747951,64.99607737212004,0.2231128737534646,219.36739784389655,0.083271998280523,79.16099046876468,179.81106,125.97542611119312,187832.9659768722,131595.43368382944,380.05287,247.78585875717147,396354.3962644549,258186.50811893103,384.53403,186.82572140208416,397036.9271589592,191639.80152629243,2971.04578,1369.0982939792525,3064283.68623928,1390895.1553648857,1064.5582,474.9469594112372,1095048.1045451222,479220.1161058353,1704.94132,721.6064282904895,1743679.4074940716,721978.8143037814,0.38107,100000,0,817323,8537.862089857828,0,0.0,0,0.0,32462,338.41364685727416,0,0.0,35104,362.1473116819355,1492970,0,53559,0,0,7001,0,0,73,0.7625693363557543,0,0.0,0,0.0,0,0.0,0.05833,0.1530689899493531,0.3000171438367907,0.0175,0.3285901210336931,0.6714098789663069,24.39140322977893,4.210547853374288,0.3344947735191638,0.2443379790940766,0.2092770034843205,0.211890243902439,11.366388141037548,6.080949815820935,18.766590368825337,12190.0750470465,52.23195817235248,13.592584770161247,17.211978624861498,10.708328807546229,10.719065969783491,0.5755662020905923,0.8172905525846702,0.6920572916666666,0.5806451612903226,0.1079136690647482,0.7442231075697211,0.9393939393939394,0.8676844783715013,0.6978723404255319,0.1313131313131313,0.5121366496853461,0.7417027417027418,0.63167104111986,0.5426997245179064,0.1019354838709677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0044501211365548,0.0068397925736495,0.0092135470632453,0.0114812780930298,0.0135812021501873,0.015973496432212,0.0181773645372988,0.0207296255788042,0.0228619987099812,0.0249080043870888,0.0268819411656026,0.0290238009561507,0.0308067855266817,0.0329749695631538,0.0350494578755335,0.0372525470057152,0.0394036540197329,0.0412681912681912,0.0434433913134048,0.058130794287146,0.0721358146155617,0.0857787336725594,0.0983711710953848,0.1105101685801942,0.1260334510392658,0.1384793262193181,0.1498595266473693,0.1610943871560024,0.1713945837039577,0.1843566999655528,0.1958345949219256,0.2069984785916105,0.2174996175782871,0.2268151144132064,0.2369088071546371,0.2465130280630163,0.2552851745232098,0.2634552550372118,0.2712229309574797,0.2783496807624687,0.285183106496422,0.291292357585011,0.2961790694049803,0.3016360787552684,0.3071230683986948,0.3114766401901307,0.3163032825486527,0.3202389901241608,0.3234098170200407,0.3226519039344836,0.3207970386272,0.3197160083394376,0.3182113797638489,0.3175954822410462,0.316110447120836,0.314118894286302,0.3139885834262844,0.3144902282356157,0.3156073282551688,0.3162357962522698,0.3176010584727186,0.317501258178158,0.3192950280691552,0.3193265183403487,0.3209234228345839,0.321564258576856,0.3259571257936757,0.3291276767251954,0.3318708249337918,0.3360596146855689,0.3394665676865157,0.3422730682670667,0.3435718087128411,0.3480590281041451,0.3488206708545691,0.3536306896026792,0.3606060606060606,0.3681868743047831,0.3698201720093823,0.0,2.564096907293734,54.35202799134195,175.25892756626527,244.99063913281356,fqhc2_80Compliance_implementation_low_initial_treat_cost,48 -100000,95740,45136,427.43889701274287,5937,60.81052851472739,4623,47.70210988092752,1839,18.821809066221014,77.41222784566315,79.76766483607081,63.350809200748486,65.08951999248892,77.18423091975335,79.54142655542141,63.26583353056695,65.00752958433499,0.2279969259098067,226.23828064939744,0.0849756701815351,81.99040815392777,178.58192,125.0269935892996,186528.0133695425,130590.1332664504,382.74338,249.9110096600204,399183.72675997496,260446.41010585325,385.45178,187.3934890100082,398920.7959055776,192875.6072511901,3041.83585,1400.2481858288477,3141587.424274076,1427546.8138818005,1142.00883,509.037027766324,1180030.5932734488,518894.3887260534,1802.394,756.7929676070341,1846794.652182996,761746.6877510305,0.38082,100000,0,811736,8478.546062251933,0,0.0,0,0.0,32747,341.42469187382494,0,0.0,35171,363.5993315228745,1497808,0,53683,0,0,7094,0,0,73,0.7624817213285984,0,0.0,1,0.0104449550866931,0,0.0,0.05937,0.1559004253978257,0.3097524002021223,0.01839,0.3266025641025641,0.673397435897436,24.3336776873802,4.324976762307367,0.3194895089768548,0.2370754921046939,0.2143629677698464,0.2290720311486048,11.385318595223731,6.058686074192792,19.426446086418583,12207.450343971946,52.36266080788403,13.278798690141391,16.67938031703367,10.912179790401384,11.492302010307585,0.5710577547047372,0.7901459854014599,0.7129316181448883,0.5893037336024218,0.1293673276676109,0.7444698703279939,0.9133333333333332,0.8781094527363185,0.7447698744769874,0.1545454545454545,0.5024154589371981,0.7043343653250774,0.6511627906976745,0.5398936170212766,0.1227651966626936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0047737292859676,0.0070912632390536,0.0092818263059549,0.0116003619394259,0.0138748918409935,0.0160221782824061,0.0183055620746303,0.0205209962085211,0.022661207778915,0.0248011806181848,0.0267820481235115,0.0288880664528332,0.0308020266930301,0.0331637654391051,0.0351956173445656,0.0372042454051255,0.0391965638163218,0.0412629434025034,0.0431671163241283,0.05822414783108,0.072365047974804,0.0855764187559005,0.098913352198016,0.1115296550705369,0.1267235996909954,0.1388667791609623,0.1508959848379987,0.1621017985188668,0.1727661035866835,0.1853916230930947,0.1976525109903198,0.2086912032047723,0.2185508769624909,0.2282135736238557,0.2388415635121345,0.2485330770176478,0.2563446916361588,0.2644095901145953,0.2718683712664106,0.2790813490225146,0.2852059925093633,0.2916045350185803,0.2973911793594135,0.3020130153950755,0.3076942019527931,0.3116892854465022,0.3158683204895451,0.3195764462809917,0.3236535805878872,0.323250885288121,0.3209341849181766,0.320299127311502,0.317910340361229,0.3166506682418962,0.3145547762851622,0.3122070896109206,0.312676239996088,0.3128457491939589,0.3127005229105734,0.314542817833637,0.3158152760074517,0.3169680053324445,0.3174793498534505,0.319438140512649,0.3202380952380952,0.321564966477128,0.3257736461192912,0.3296282100421617,0.3321007081038552,0.3335742028723693,0.336251450268959,0.3377872127872128,0.3423131913612762,0.3460149958344904,0.3471751081997895,0.3466446479507581,0.3451362641734633,0.3493615865254007,0.3513102924420813,0.0,2.2387408726456224,57.40289432211316,166.1200094245199,247.683335064512,fqhc2_80Compliance_implementation_low_initial_treat_cost,49 -100000,95734,45471,432.04086322518646,5780,59.15348778908225,4540,46.89034198926191,1782,18.26937138320764,77.32373385663094,79.69391266782804,63.321321634088775,65.0752622255037,77.08859421840617,79.45995607019306,63.232737693802704,64.98971601186194,0.2351396382247657,233.956597634986,0.088583940286071,85.54621364176285,179.53914,125.73189282251482,187539.3486117785,131334.39825194274,380.29054,247.96933777839527,396676.3636743477,258458.80019470127,380.75235,184.3797935112208,394559.5086385192,190147.21781610072,2960.06823,1373.285279510212,3057204.1385505674,1399712.5989828168,1059.69757,472.1422938653819,1091474.0217686505,477800.2061025814,1749.20884,748.7481019753976,1793852.236405039,752216.7389099646,0.38388,100000,0,816087,8524.51584598993,0,0.0,0,0.0,32490,338.80335095159506,0,0.0,34828,360.66601207512485,1494841,0,53708,0,0,7106,0,0,54,0.5536173146426557,0,0.0,1,0.0104456097102387,0,0.0,0.0578,0.1505678857976451,0.3083044982698962,0.01782,0.3347046239921014,0.6652953760078987,23.979270298115704,4.289590393773925,0.3204845814977973,0.2477973568281938,0.2068281938325991,0.2248898678414096,10.920711415588489,5.54412926590588,19.119147778137584,12161.279836219754,52.00264021811447,13.78662951830851,16.619190538435678,10.371940816488667,11.22487934488161,0.5515418502202644,0.7582222222222222,0.7010309278350515,0.5612353567625133,0.1018609206660137,0.7118003025718608,0.8844444444444445,0.863961813842482,0.705607476635514,0.1255230125523012,0.485705407085146,0.674074074074074,0.6351351351351351,0.5186206896551724,0.0946291560102301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871327254305,0.0043201801089172,0.0064859926918392,0.0086580086580086,0.0109881165554289,0.0129572471961617,0.0152776077999428,0.0173521391439339,0.0197253382143916,0.021649854063188,0.0237716770415645,0.0257574201499435,0.0275703145896343,0.0296672609049596,0.0316983546995313,0.0340425092006781,0.0361244886334213,0.0382121328450037,0.040134335651975,0.0420443888715223,0.0565086193394798,0.0705045007326774,0.0836349521081841,0.0959750042080457,0.1087323349504324,0.1246840864149227,0.1369399382513023,0.1488879429605193,0.1600692145008651,0.1699177488713257,0.1835460076455069,0.1958864388808344,0.2073278159019477,0.2174169773977321,0.2270336875921403,0.2368744532175723,0.2469252812684678,0.2557920046740523,0.2642316066406604,0.2713249261895498,0.2784223542191508,0.2853270077939681,0.2918331638805476,0.2975064076460584,0.3024647887323943,0.307480931080798,0.3110540811216825,0.3147266291476737,0.3196163566845959,0.3237999709643785,0.323016418171778,0.3225708697209289,0.3214487114419444,0.3203623576400445,0.319246102582411,0.3181483865036315,0.3162590565381086,0.316358328413042,0.3170898054527784,0.3174509803921568,0.3167041198501872,0.3180766721366575,0.3181436371272574,0.3195867046193155,0.3217523387018999,0.3219084967320261,0.3227569237811856,0.3256321112515802,0.3286626901492959,0.3294268229270829,0.3329511579912864,0.3358152989072209,0.3379673712943566,0.3393432560994323,0.3446263881046489,0.3474525712922086,0.3543223052294557,0.3549626035981403,0.353554762558331,0.355324074074074,0.0,2.040787917101192,58.40502244958421,164.9946477599196,240.59627719103975,fqhc2_80Compliance_implementation_low_initial_treat_cost,50 -100000,95785,45137,428.0315289450332,5740,58.756590280315294,4533,46.81317534060657,1807,18.520645194967894,77.38153749659537,79.72325117715918,63.350937847410606,65.08288735861501,77.15355168081862,79.49587035021607,63.26649939231656,65.00077305010417,0.2279858157767478,227.38082694311856,0.0844384550940517,82.1143085108389,177.914,124.65035165337147,185742.8407370674,130135.34964281616,378.50784,247.3237258777032,394643.8064415096,257687.52400658056,384.35582,186.63042803369103,397975.7268883437,192222.22962460967,2968.38305,1375.1731773985805,3067501.362426267,1404486.950780237,1075.97113,483.4540419440949,1111395.9283812705,492918.91853033256,1765.12708,745.6080713616201,1811354.408310278,751727.3859381796,0.37936,100000,0,808700,8442.856397139427,0,0.0,0,0.0,32386,337.5580727671347,0,0.0,35103,363.1988307146213,1503134,0,53951,0,0,6935,0,0,63,0.6577230255259174,0,0.0,1,0.0104400480242209,0,0.0,0.0574,0.151307465204555,0.3148083623693379,0.01807,0.3350489789141623,0.6649510210858376,24.29926652658896,4.241101709516605,0.3214206926979925,0.2486212221486874,0.214868740348555,0.215089344804765,10.942626800049096,5.591588487210199,19.32360776542296,12083.19853521638,51.7046198596796,13.547314182166623,16.523025018623816,10.898629882663917,10.735650776225231,0.5660710346348996,0.7737355811889973,0.700754975978037,0.5728952772073922,0.1179487179487179,0.7317854283426741,0.9128440366972476,0.8494897959183674,0.6681614349775785,0.1717171717171717,0.5030450669914738,0.6859623733719248,0.6460093896713615,0.5446071904127829,0.1042471042471042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0047337158148681,0.0069700904995738,0.0089881478321806,0.0111942574780893,0.0134674308050938,0.0154727443225832,0.0178201451331407,0.0201209916409491,0.0222133546155892,0.0243784969155411,0.0268214571657325,0.0290561381863047,0.0310324945430583,0.032995709216932,0.0347670658249558,0.0367553472200664,0.0386533019601339,0.0407001506258764,0.0422913543228385,0.0571029041919292,0.071379267068273,0.0848944846890102,0.0975863482089379,0.110483556548403,0.1258282344735757,0.1380976602238046,0.1493722559452305,0.1599974390165823,0.1707110548993547,0.1839553082247075,0.1956632239225653,0.2062688156850811,0.2160528903944924,0.2252394936263349,0.2345491780594454,0.2434017595307918,0.2520486965905641,0.2604642723489187,0.2682617053412055,0.2749329262651494,0.2820069204152249,0.2890064000189279,0.2947552489430252,0.3000958889145132,0.3049885504641371,0.3096222808091662,0.3135956270259963,0.3183758472603094,0.3226975591754968,0.3213051255497424,0.3195343531384433,0.3174272398304726,0.3155370659270815,0.314744113496249,0.3118794461867972,0.3102767422758577,0.3105761835408859,0.3115389848959042,0.3111083445969979,0.3111355954359558,0.3120922440130088,0.313532042974792,0.3148462638541294,0.3162438252361997,0.3167304239206808,0.3169712645311656,0.3203330411919369,0.3239638255525682,0.3269185173476646,0.3289324440814845,0.3323453130789181,0.3368381288169741,0.3363310723268043,0.3385455915599096,0.3403197158081705,0.3468516542155816,0.3491422805247225,0.3497373513961846,0.3503233168505135,0.0,1.9888612899382112,54.8127121668244,173.7277767870046,240.30574586693592,fqhc2_80Compliance_implementation_low_initial_treat_cost,51 -100000,95853,45421,430.39863123741566,5860,59.95639155790638,4636,47.73976818670256,1825,18.674428552053666,77.37299817448195,79.67545209247557,63.35320242165369,65.05739068310321,77.14980911758312,79.45503224158163,63.26984671149576,64.97795356721912,0.2231890568988319,220.4198508939328,0.0833557101579316,79.4371158840903,178.94492,125.35825572057048,186686.8225303329,130781.7759700484,381.85589,248.88248253828112,397751.2232272334,259024.8323352228,384.9934,186.345501026384,397753.2367270717,191361.44888456268,3005.56667,1382.8658434501608,3097282.5055032186,1404376.8827790036,1091.9353,488.548753783201,1122956.339394698,493468.11408432905,1785.51914,751.0130635890079,1828144.471221558,752066.3732414164,0.38214,100000,0,813386,8485.764660469678,0,0.0,0,0.0,32653,339.99979134716705,0,0.0,35137,362.6907869341596,1497199,0,53766,0,0,7264,0,0,65,0.6676890655482876,0,0.0,0,0.0,0,0.0,0.0586,0.1533469409117077,0.3114334470989761,0.01825,0.3376116978066612,0.6623883021933388,24.37254509077863,4.225706227486201,0.3192407247627264,0.250862812769629,0.2107420189818809,0.2191544434857636,11.210629319724164,5.844137261477652,19.34870142173921,12158.64543883468,52.77854315043828,13.961996336445296,16.713340857829877,10.881507079332073,11.22169887683104,0.566220880069025,0.7850386930352536,0.6939189189189189,0.5701125895598772,0.1259842519685039,0.7319587628865979,0.903529411764706,0.8579088471849866,0.7563025210084033,0.1733333333333333,0.5042962962962962,0.7168021680216802,0.6386630532971996,0.510148849797023,0.1125158027812895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.0046722815125624,0.0069586034103242,0.0091992770546067,0.0112742207673383,0.0134059446254071,0.0155331097815783,0.0177264795028013,0.0198632866382613,0.0220496449546728,0.0240971261718149,0.0261011419249592,0.028385266792732,0.0307562454323681,0.0327618733441233,0.0346779023896565,0.0368002317473126,0.0385994362927961,0.0406342810857961,0.0426567897124308,0.0576004671435423,0.071665186268875,0.0852320940318677,0.0981024289329706,0.1115054499499763,0.1264260965097608,0.1381521082581834,0.1490420396793331,0.1595188284518828,0.1696010458749022,0.1831076863471017,0.1957691975095122,0.2075475799702183,0.2168488956921058,0.2253854364978926,0.2358446679367329,0.245283439881291,0.2543541854185419,0.2627960794990471,0.2703312304645012,0.2772310432158014,0.2844811453167399,0.2911020910500219,0.2970531863919501,0.3018004346295329,0.3058152568887575,0.3108312783987783,0.3149038461538461,0.3197085204695771,0.3240094470319695,0.3228086710650329,0.3216649466804265,0.3199216437892838,0.3184997832056656,0.3181170181170181,0.3163209105929869,0.3138992168341112,0.313549593282603,0.3139435706731261,0.3146317967746539,0.3152608939592294,0.3169625246548323,0.3177065908330545,0.3179326023000802,0.3198707206128801,0.3210232437345799,0.3214092603659751,0.3245974702614481,0.3281255473429782,0.3301875616979269,0.3361177586129046,0.3399514204245432,0.3439126889544,0.3461012311901504,0.3502633559066967,0.3597933302019727,0.3677143729020445,0.3649664702296281,0.3613189249099474,0.3605623100303951,0.0,2.4264140968604515,55.160431880980006,177.32787407431795,246.9411794407917,fqhc2_80Compliance_implementation_low_initial_treat_cost,52 -100000,95779,45215,428.06878334499214,5910,60.34725774961109,4647,47.79753390617985,1835,18.772382254982823,77.39816222968327,79.72614082912352,63.35848721039546,65.0791625329,77.16660425084166,79.4962767134874,63.27186047545786,64.99517663020195,0.2315579788416073,229.86411563611853,0.0866267349375959,83.98590269804629,179.50086,125.69519876219844,187411.0399983295,131234.21112800782,382.51332,248.97125456412692,398635.0034976352,259209.7902480761,385.74077,187.2587650159093,397039.465853684,191359.8944942717,3041.75332,1397.629590619512,3132022.771171133,1415632.857176941,1094.32533,484.497046124438,1126051.3160504913,489395.2492025048,1792.83824,757.5002424720302,1835944.2048883368,761207.6422471568,0.38009,100000,0,815913,8518.683636287704,0,0.0,0,0.0,32613,339.7300034454317,0,0.0,35160,361.5093078858623,1495666,0,53657,0,0,7053,0,0,76,0.7830526524603515,0,0.0,0,0.0,0,0.0,0.0591,0.1554894893314741,0.3104906937394247,0.01835,0.3359588490596367,0.6640411509403633,24.417734156027816,4.284222459472914,0.3184850441144825,0.2397245534753604,0.2218635678932644,0.2199268345168926,11.51766132922949,6.168755770130682,19.553146063913807,12159.36265692204,52.62248659851863,13.389490488652626,16.754507763762852,11.348416086210293,11.13007225989286,0.5657413384979557,0.7764811490125674,0.6891891891891891,0.597478176527643,0.1252446183953033,0.7360681114551083,0.9189814814814816,0.8329177057356608,0.7824267782426778,0.15,0.5001490312965723,0.6862170087976539,0.6357738646895273,0.5416666666666666,0.1184538653366583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786656134167,0.004763256040214,0.0069695248143489,0.0092208952798765,0.0114878259543536,0.0140655851161275,0.0161308401691547,0.0182018528343468,0.0205457759069872,0.0226723961530591,0.0247723058324539,0.0268237370575981,0.0290940856071116,0.0313812268423219,0.0334237141354887,0.0353520748559271,0.0370876136681046,0.0391132126340239,0.0411011576912684,0.0429661872975871,0.0583478542138377,0.0723496376243215,0.0855165906589086,0.0986821363263762,0.1110115533816832,0.1268537603720733,0.1384331484447084,0.1496366286802651,0.1606984567736423,0.1708342268925584,0.1838185401790041,0.196149478124493,0.2071494540120606,0.2174478313121381,0.2267301266268026,0.2368368634220835,0.2460493593103525,0.2541499842548023,0.2619552762051713,0.2697945534916744,0.2770589799623065,0.2834749675624496,0.2894004852932473,0.2947788469604189,0.2995872283598397,0.3044618776093302,0.3091861744697879,0.3138730675345809,0.3182200701718044,0.3230844314299658,0.3219843834141088,0.3208377452935271,0.3196259576385759,0.3184757505773672,0.3173193797989979,0.315362522533533,0.313308585419793,0.3148518093990503,0.3153961646079301,0.3165912411360154,0.3164050822122571,0.3170794327921949,0.3171369407433747,0.3176208509690354,0.318642447418738,0.3190986734508449,0.3212871847076122,0.3244171166390961,0.3279668973191001,0.3309884063666732,0.3338912512440061,0.337517726771364,0.3406661695252299,0.3439836845683208,0.3438960553374462,0.3482905982905983,0.3514663425011396,0.3523232323232323,0.3495038588754134,0.3545937737281701,0.0,2.755974834714429,55.99162749500957,166.9955832618648,253.9873806864616,fqhc2_80Compliance_implementation_low_initial_treat_cost,53 -100000,95877,45260,427.1201643772751,5984,61.09911657644691,4670,48.12415907881974,1817,18.60717377473221,77.3584022892406,79.64235825463943,63.35300198276878,65.04239938871764,77.13906623044078,79.42427089189746,63.271557342075006,64.96386000746742,0.2193360587998256,218.0873627419686,0.0814446406937747,78.53938125022353,178.67124,125.13590568021296,186354.6418849151,130517.1268189586,379.22957,247.07980661724645,394963.6096248318,257131.0080804014,384.46278,185.56680113986252,397141.2851883142,190563.88865642875,3089.86828,1404.8642990708945,3190111.0693909903,1432837.863892652,1106.82051,491.00588101621895,1141530.5756333636,499307.36833124177,1787.72504,744.9886795067489,1833927.2818298445,750618.4727492103,0.38106,100000,0,812142,8470.665540223412,0,0.0,0,0.0,32408,337.42190514930587,0,0.0,35098,362.2453768891392,1499602,0,53835,0,0,7058,0,0,66,0.6883819894239495,0,0.0,0,0.0,0,0.0,0.05984,0.1570356374324253,0.3036430481283422,0.01817,0.3367916999201915,0.6632083000798085,24.45445170883684,4.426429070142985,0.3149892933618843,0.2387580299785867,0.2207708779443254,0.2254817987152034,11.158701765665404,5.722000717788752,19.267725715378116,12272.469394745118,52.82484174693328,13.346630627058202,16.5790964165571,11.445640424373126,11.453474278944856,0.5665952890792291,0.7937219730941704,0.7056424201223658,0.5848690591658584,0.1139601139601139,0.746160064672595,0.9253012048192772,0.8746594005449592,0.7689075630252101,0.1612903225806451,0.5018933877075444,0.7157142857142857,0.6494565217391305,0.5296343001261034,0.1016746411483253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025007846591541,0.0048332674711979,0.0072217545212037,0.0097675882585872,0.0121671071355966,0.0143701849194475,0.0166571579933982,0.0188280891427405,0.0210836915348723,0.0231243418967685,0.025366732523263,0.027229296098091,0.0295383351306937,0.0316939441009762,0.0339664251780248,0.0360959392068392,0.0379852900102411,0.0399647613618697,0.0422058365354657,0.0440296721703756,0.0588707491503513,0.0728099044036984,0.0862052715905877,0.0993437286711818,0.1116764101753831,0.1269517631895877,0.1396398783344108,0.1514977509809551,0.1630287440361195,0.173092795660889,0.1860450091525788,0.1986544368969844,0.2099032503532992,0.2197542739714048,0.2291742251833284,0.2390063074028992,0.2486898151245511,0.2573018549747048,0.2652406174505778,0.2715475276896469,0.2789629561072676,0.2853985147067423,0.2920479702612792,0.2973274342649545,0.3029168692270296,0.3076439325745712,0.3119027041921868,0.3165255046806343,0.321011673151751,0.3250551803439024,0.323774470150461,0.3230667511501694,0.3221177565087464,0.3207282508098102,0.3196679856008092,0.3177441118743866,0.3155959230903356,0.3161794909712295,0.3168179719956916,0.3167228674909454,0.3179716601463789,0.3192417810247803,0.319117308376777,0.320124198628454,0.3218713956170703,0.3227012987012987,0.323434217250582,0.3263467434148783,0.3286043748689636,0.332107697781995,0.3351947698174884,0.3390232337600758,0.3423446026469297,0.3434103780805143,0.3465440409595146,0.348274209012464,0.3534522885958107,0.3546027230237756,0.3565145684442001,0.3645395491020252,0.0,2.276970891026405,54.14064142403031,170.93273328800802,261.8855191326212,fqhc2_80Compliance_implementation_low_initial_treat_cost,54 -100000,95726,44847,424.9942544345319,5770,59.10619894281596,4494,46.28836470760295,1700,17.299375300336376,77.38965647392791,79.75505087893639,63.34469261111818,65.09333556447814,77.17595868363439,79.5469997971115,63.26450475910454,65.01832309444293,0.2136977902935228,208.05108182489107,0.080187852013644,75.01247003520461,178.79246,125.17856245532028,186775.23347888765,130767.56832555449,378.53209,247.39366597981808,394787.6647932641,257794.1374128429,379.98583,184.65623664036917,393049.3282911644,189928.18376102857,2924.97089,1345.3648146515668,3012896.746965297,1363105.748723725,1029.83128,460.5517782005937,1058962.319537012,464404.7361849365,1661.68864,701.3239744158719,1692406.911392934,696801.1008940514,0.37801,100000,0,812693,8489.78333994944,0,0.0,0,0.0,32500,338.83166537826713,0,0.0,34659,358.1158723857677,1499050,0,53780,0,0,6994,0,0,64,0.6685748908342561,0,0.0,3,0.0313394480078557,0,0.0,0.0577,0.1526414645115208,0.2946273830155979,0.017,0.3318936877076412,0.6681063122923588,24.567080399311266,4.238304070634467,0.3199821984868713,0.2552291944815309,0.2131731197151758,0.2116154873164219,11.186093292878509,5.891933219536862,18.110449314803684,12069.15655792506,50.910312560232185,13.752716189097814,16.045992926525845,10.720159001569623,10.3914444430389,0.5589675122385402,0.7776809067131648,0.6828929068150209,0.5657620041753654,0.1009463722397476,0.7326332794830371,0.8796296296296297,0.8650793650793651,0.7322175732217573,0.1322751322751322,0.4929361179361179,0.7160839160839161,0.6179245283018868,0.5104311543810849,0.0931758530183727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397617697107,0.0047443812536115,0.007012451922589,0.0095190686145031,0.0116370146581626,0.0137570771048022,0.0159460038131748,0.0179152928206122,0.020065009403876,0.0220998433869366,0.0242112384427725,0.0262509496334928,0.0283426198161893,0.0304181726442391,0.0323256077812503,0.0346634421604191,0.0366772977674688,0.0388230655904384,0.0406502374988307,0.0425857811213804,0.0569680390089064,0.0714061420586573,0.0852927906659531,0.0979946552195778,0.1097513372086889,0.1255843963529436,0.1378205468260957,0.1496498733584488,0.1605224374719665,0.1709401709401709,0.1838169582772543,0.1955367091072336,0.2071215004077194,0.2170879986004198,0.2263260388817374,0.2359643877483223,0.2448226254335389,0.2526324069807949,0.2599101959361393,0.267150244840053,0.2741126141750491,0.279679738180118,0.2858577860764131,0.2915295215981041,0.2971415398801291,0.3027091564811737,0.3074971251437428,0.3122378955394586,0.3159201085902656,0.319916733639873,0.3194377250981025,0.31803697497459,0.3167735042735042,0.3151716181136429,0.3138329383886256,0.3112043962753778,0.3096150510163851,0.3106968994020975,0.3114417563028061,0.3131605078374352,0.314057882116768,0.3154403250181547,0.3166212647382977,0.3178298013979806,0.3189519400563165,0.320114927652525,0.3214831155608348,0.3254323149566903,0.3276115228639351,0.3309173003802281,0.3339093265426766,0.3355326167925934,0.3372107645875251,0.3389218855725133,0.3417066863686738,0.3424673507462686,0.3463737586518206,0.3517707918822125,0.3555555555555555,0.3610586011342155,0.0,2.55579920544996,53.71472135084787,165.4358243167387,242.8228981989554,fqhc2_80Compliance_implementation_low_initial_treat_cost,55 -100000,95761,45150,427.8881799479955,5810,59.29344931652761,4614,47.59766502020656,1785,18.23289230480049,77.34687979821054,79.70697275343403,63.33382307926016,65.08156780982254,77.12051814863696,79.48283685909783,63.24797843920021,64.99906113737177,0.226361649573576,224.13589433620015,0.0858446400599461,82.50667245077636,178.08142,124.73258329459264,185964.45316987083,130254.05258361196,379.11001,247.29125908570987,395313.5410031224,257659.64127954992,381.76741,185.11778169586796,395364.89802738064,190662.5393601852,3032.89692,1396.3482887427504,3133021.376134334,1424028.538489313,1089.9129,482.994356256532,1124871.241946095,491086.5657799429,1748.53902,747.2005928034778,1789496.9559632835,749005.6469098494,0.38043,100000,0,809461,8452.929689539584,0,0.0,0,0.0,32375,337.4755902716137,0,0.0,34829,360.4076816240432,1504048,0,53992,0,0,7080,0,0,78,0.8040851703720722,0,0.0,1,0.0104426645502866,0,0.0,0.0581,0.1527219199327077,0.3072289156626506,0.01785,0.3356378600823045,0.6643621399176954,24.07556438010392,4.3231567094920464,0.3207628955353273,0.2403554399653229,0.2171651495448634,0.2217165149544863,11.380628522755933,5.934881507312453,19.081999307999272,12173.098883770635,52.31147023558875,13.398614581513549,16.541049720519098,11.20744658429679,11.16435934925932,0.5717381881231036,0.8043282236248873,0.6966216216216217,0.593812375249501,0.1173020527859237,0.737490377213241,0.928735632183908,0.8925,0.7,0.1538461538461538,0.5067873303167421,0.7240356083086054,0.6240740740740741,0.5621761658031088,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0042793980448626,0.0065583756345177,0.0086181489273046,0.0111194758688044,0.0131056393963463,0.0155061678050769,0.0176092282564311,0.0198523849440821,0.0220543064258508,0.0242574612711073,0.026583019313503,0.0286707389810987,0.0308218472505511,0.0328193696204099,0.0350124564540971,0.0368855429796311,0.0388804746986452,0.0408307519594187,0.0428290275217893,0.0578129403291966,0.0721458607920667,0.0857265683159804,0.0976686497508881,0.1100594460137442,0.1257939401625397,0.1380732291644582,0.1495847820770466,0.1600200571843127,0.1702945902517407,0.1840432055599186,0.1952637779531133,0.2065275257765561,0.2163218943183555,0.2259896937800094,0.2362002567394095,0.2457597823299173,0.2546713736424347,0.2630258872130105,0.2702071114369501,0.2772962401490516,0.2844354470669459,0.2911596193001562,0.2972056055720057,0.3025943596654162,0.3072493016501975,0.3119198338629369,0.3159253653511059,0.3199062868089622,0.3249798963839856,0.3245086565236692,0.3227523415258083,0.3217360720315138,0.3198032512585284,0.3180523833536025,0.3155794109551335,0.3132084420203936,0.3134051731207662,0.3149803787749531,0.3157134964623692,0.3170777314459881,0.3186060737612723,0.3196184659150333,0.3209305443818718,0.3219695148338702,0.3228494553433818,0.3242595445985276,0.3268489862944483,0.3282794526330601,0.330374203821656,0.3316720771798271,0.3347324796769566,0.3384634792481393,0.3426923660646532,0.3477006144107242,0.3489056248529065,0.3488513616309143,0.3518518518518518,0.3537604456824512,0.358320251177394,0.0,2.3107838819349404,56.85788442632416,166.04374711552745,249.14648416474185,fqhc2_80Compliance_implementation_low_initial_treat_cost,56 -100000,95755,45222,428.0925278053365,5931,60.67568273197222,4634,47.83040050127931,1793,18.31758132734583,77.36211040614715,79.72224341431307,63.32787542470121,65.07483215313506,77.13231143940196,79.49555885215663,63.24179626549015,64.99241546209757,0.2297989667451929,226.68456215643573,0.0860791592110601,82.41669103749416,178.98914,125.36422498755783,186924.0666283745,130921.8578534362,380.88995,247.9038840185064,397204.4697404836,258324.93859273943,383.56817,185.9746288283405,397192.533026996,191570.5365929448,3003.33104,1389.608671820107,3103222.672445303,1418091.9198278105,1081.85001,484.8198088451029,1115074.147564096,491837.710769622,1758.50932,743.818870569047,1800126.1970654274,746668.0880130656,0.3813,100000,0,813587,8496.548483107932,0,0.0,0,0.0,32554,339.38697718134824,0,0.0,35118,363.3752806641951,1496787,0,53739,0,0,7076,0,0,68,0.6997023654117279,0,0.0,2,0.0208866377734844,0,0.0,0.05931,0.1555468135326514,0.3023098971505648,0.01793,0.3374737860945314,0.6625262139054686,24.31860149166391,4.226261659393972,0.3120414328873543,0.2563659905049633,0.2162278808804488,0.2153646957272335,11.293911853220823,5.938556842793825,19.17778268062005,12181.148033640058,52.77074872604804,14.347894577790392,16.3001620961368,11.174720191601558,10.947971860519282,0.5731549417350021,0.7971380471380471,0.6991701244813278,0.5858283433133733,0.1112224448897795,0.7452901281085155,0.9279475982532752,0.8686868686868687,0.7297297297297297,0.1448598130841121,0.5040822497732084,0.7150684931506849,0.6352380952380953,0.5356662180349933,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002522719674174,0.0046443709818078,0.0068216424728453,0.0092260483453061,0.0115660444534865,0.0136574734183403,0.0159688373136459,0.0181226006697704,0.0203883395875297,0.0225894978291144,0.0248072032160144,0.0270353555067074,0.0291866422501594,0.0312857452004822,0.0334296625038703,0.0354931091880938,0.0374128879270174,0.0392708182025689,0.0410490426394461,0.0433202091535945,0.0580381841146567,0.0718530297957817,0.0850934412819598,0.0974368143715094,0.1093448381346188,0.1247633452145493,0.1375677654123213,0.1489028713788367,0.160515461714359,0.1709365047023624,0.183986041101202,0.1962857544831766,0.2075350588030505,0.2171111645918568,0.2258984095536844,0.2364712139343172,0.2455023618881704,0.2540957781978576,0.262608498326431,0.2701139552196072,0.2771983841283437,0.2843288645562808,0.290892952245695,0.2960791366906475,0.3017658060285152,0.3075681005793171,0.3119960939456157,0.3157787563316109,0.3203434610303831,0.3246888651330984,0.3233550681683462,0.3212442364599821,0.3200467447623338,0.3191123567909618,0.3183026235690636,0.3159731256026079,0.3133978862097336,0.3135859943610255,0.3144493301973617,0.3152789149549678,0.3161786674634,0.3170410290704535,0.3192949520233625,0.3193702120078389,0.3209051724137931,0.3219692052034378,0.323304219600726,0.3274875738535121,0.3309868971285196,0.3343969116836051,0.3384198645598194,0.3397930780946379,0.3419491789973153,0.3466306062654947,0.3515892873691039,0.3549640796137086,0.3562783661119515,0.360525268603263,0.3705501618122977,0.3741836342681521,0.0,2.1952364523595325,58.23231923655592,166.2363358329407,249.8612891801301,fqhc2_80Compliance_implementation_low_initial_treat_cost,57 -100000,95759,45435,430.9882099854844,5969,61.19529234849988,4660,48.06858885326706,1820,18.577888240269843,77.32840490063373,79.68738683749773,63.31625382636724,65.0640578424484,77.10001660208447,79.4635772680948,63.23101500804236,64.98342857918772,0.2283882985492624,223.8095694029312,0.085238818324882,80.62926326068975,178.58478,125.1656944428468,186493.76037761464,130708.83618547273,380.77757,248.2416153589349,397063.2107687006,258657.46860236107,387.5068,187.8142334231046,401079.7522948234,193295.1434892468,3036.10058,1400.6146719568983,3132610.0940903723,1424691.3522038627,1109.79512,489.88622977831,1145798.504579204,498455.8937576561,1774.32808,747.6290035049578,1813301.7679800333,748559.3981475949,0.38238,100000,0,811749,8476.989108073392,0,0.0,0,0.0,32474,338.51648409026825,0,0.0,35381,365.8768366419866,1497624,0,53771,0,0,7131,0,0,71,0.7414446683862613,0,0.0,0,0.0,0,0.0,0.05969,0.1561012605261781,0.3049086949237728,0.0182,0.3309283309283309,0.669071669071669,24.28418815876227,4.233648211661914,0.323175965665236,0.248068669527897,0.2182403433476394,0.2105150214592274,11.035069519583075,5.816639658102275,19.539359615369733,12170.258456099997,53.13314390954394,13.834149976760164,17.050512893050623,11.442212207236748,10.806268832496402,0.5686695278969958,0.7785467128027682,0.6932270916334662,0.576204523107178,0.1223241590214067,0.744343891402715,0.91156462585034,0.8637469586374696,0.7211895910780669,0.1756097560975609,0.4988002399520096,0.6965034965034965,0.6292237442922375,0.5240641711229946,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.0043611432280573,0.0066198269910246,0.0088721315473891,0.010976378913959,0.0130378096479791,0.0154185022026431,0.0175195001429329,0.0198838659551411,0.0219051323520379,0.024150479216852,0.0264290041378743,0.0284662374791748,0.0305605339595822,0.0325173887019875,0.03459789125491,0.0364795759922154,0.0385397220493673,0.0406031759228466,0.042578898031455,0.0576913040301451,0.072063591674511,0.085165728186899,0.0982855220695672,0.1105374077976817,0.1257689462001902,0.1383351007423117,0.1498568585507061,0.1602512069039176,0.171059403817285,0.1833740831295843,0.1951660193229397,0.2064947780678851,0.2167299132774138,0.2259854046735864,0.2357423713795204,0.2455975895547372,0.2543946521416192,0.2621636962197752,0.2700407920066,0.2771541648344018,0.2837124978068893,0.2900716357823693,0.2956056351549188,0.3010551395507148,0.3068756319514661,0.3115619475129462,0.315417346106808,0.3198589010361955,0.3248200726312314,0.3238929702770102,0.3224669603524229,0.3217528622187129,0.3210534679784452,0.3197127180264977,0.3170821451568393,0.3153749861350995,0.315136762117798,0.315838079113437,0.3164423472214774,0.3171019597556863,0.3190775184614777,0.319469396281596,0.3200688175887032,0.3203680568902556,0.3219712739383847,0.3248356901015733,0.3278056426332288,0.3310744725443622,0.3353359683794466,0.3358868591632292,0.3406541317743719,0.3440404166406786,0.3453063688499849,0.3468095016301816,0.3487690504103165,0.3508479709267111,0.3571717990275527,0.3579092159559835,0.3548387096774194,0.0,2.2831169195631675,58.222721725593615,170.111075156156,249.20347725576477,fqhc2_80Compliance_implementation_low_initial_treat_cost,58 -100000,95724,45189,428.09535748610585,5881,60.28791107768166,4542,46.79077347373699,1752,17.83251849066065,77.31464774318667,79.6815863611217,63.30648041847581,65.05646622058579,77.09013890857702,79.46061849622664,63.22244576341418,64.97665223704988,0.2245088346096508,220.9678648950586,0.0840346550616288,79.81398353591374,179.25798,125.53661363081248,187265.2208432577,131144.11603235602,377.60114,246.1554095265565,393721.8356942877,256404.41661574916,382.1201,185.3711142563361,395294.4298190631,190599.0812368365,2955.86425,1367.707620553742,3047374.1068070703,1388274.699186034,1045.91196,471.4242834446288,1076709.8846684217,476572.5962554683,1716.54672,730.9409081201558,1750096.7573440308,727447.8526744428,0.38002,100000,0,814809,8512.05549287535,0,0.0,0,0.0,32263,336.33153650077304,0,0.0,34851,360.1918014291087,1494964,0,53642,0,0,7123,0,0,66,0.6790355605699719,0,0.0,2,0.0208934018636914,0,0.0,0.05881,0.1547550128940582,0.2979085189593606,0.01752,0.336198507946805,0.6638014920531949,24.27401537484888,4.198942474536473,0.3192426243945399,0.2443857331571994,0.2208278291501541,0.2155438132981065,11.074844897550436,5.742414877491879,18.837271017336107,12115.655936868325,51.88437253975794,13.314187507746231,16.67063699923492,11.108858952633865,10.790689080142942,0.571994715984148,0.7972972972972973,0.6986206896551724,0.6041874376869392,0.0960163432073544,0.7241647241647242,0.9182242990654206,0.8390243902439024,0.7631578947368421,0.0950226244343891,0.5118279569892473,0.7214076246334311,0.6432692307692308,0.5574193548387096,0.0963060686015831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002279288861875,0.0046232928795206,0.0070342475486713,0.0093079971547606,0.0113739254285568,0.0133868535800154,0.0157109190887666,0.0178575075044414,0.0199026843579416,0.0218459522542074,0.0239508679113735,0.0261520453425332,0.0284412351622127,0.0305303397182924,0.0325564111562996,0.0348396034281342,0.0370512276196294,0.0389133322264652,0.0412498700218363,0.0431326380713251,0.0576565665003028,0.0716977182332007,0.0853764726864528,0.0973193534478225,0.1093946072486845,0.1251652896933281,0.1379537253237104,0.1488330991014011,0.1597686897406845,0.1695675501663268,0.1816309364620627,0.1948967983097675,0.2057343297239591,0.2153040314715583,0.2245215205503616,0.2344176751415565,0.2449920028633105,0.2542799142889365,0.2624024748083616,0.2701256344886194,0.2769796268596143,0.2837706397290614,0.2899585062240664,0.2960411014812859,0.301293742856448,0.3058865615671181,0.3106457024110563,0.3141581097072183,0.3181765246308924,0.322369288369763,0.3205597416576964,0.3185562048814025,0.3177509633504908,0.3171009724987735,0.3168008078168156,0.3152014203501898,0.3127344083809403,0.3131145657205706,0.3132270793829754,0.3137650016940992,0.3155225333133702,0.3165203669000888,0.3171296779445221,0.3183813534772823,0.3183965091467069,0.3182325895524326,0.3196252100361689,0.3216357763351836,0.3252367804843952,0.3292557403008709,0.3335000227303723,0.3352061910314852,0.3389702170620898,0.3426936283861121,0.3434115098427051,0.3480990169371076,0.3502141982864137,0.3503380454824831,0.3568075117370892,0.3490895001937233,0.0,2.483900308999229,56.26598514417063,168.28559434696015,241.6917497410612,fqhc2_80Compliance_implementation_low_initial_treat_cost,59 -100000,95825,45491,429.6686668405948,5875,60.17218888599008,4672,48.26506652752413,1827,18.8051134881294,77.3504688262772,79.68208245521471,63.33176974345843,65.05969799562705,77.12415070723576,79.45409922327354,63.24844304898631,64.97755378088277,0.2263181190414371,227.9832319411668,0.0833266944721202,82.14421474427525,179.2087,125.60613973614537,187016.64492564573,131078.67439201186,384.67524,250.6410703905713,400943.7307591965,261069.82560977968,388.98832,188.82815287451683,402386.5483955126,194437.8181899894,3055.16312,1403.0078442547206,3160297.6154448213,1436159.5765768003,1079.28536,479.445422892769,1116408.8181581008,490464.5631719069,1792.67878,745.7147702614394,1846600.2191494915,758818.9831597891,0.38341,100000,0,814585,8500.75658752935,0,0.0,0,0.0,32942,343.2507174536916,0,0.0,35483,366.74145577876334,1492078,0,53609,0,0,7101,0,0,60,0.626141403600313,0,0.0,0,0.0,0,0.0,0.05875,0.1532302235205133,0.3109787234042553,0.01827,0.3440598082236307,0.6559401917763692,24.24098733026621,4.273581497045815,0.3195633561643836,0.2517123287671233,0.2084760273972602,0.2202482876712329,11.352938777401535,5.985908227440024,19.353951134205545,12271.782617690573,52.93215255309638,14.190838433073267,16.65910878815489,10.760709410672776,11.321495921195448,0.561429794520548,0.7908163265306123,0.6865371734762223,0.5780287474332649,0.1020408163265306,0.7349491790461298,0.9166666666666666,0.8740554156171285,0.7565217391304347,0.1045454545454545,0.4960212201591512,0.717741935483871,0.6186131386861314,0.5228494623655914,0.1013597033374536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374880969264,0.0044107358324123,0.0066781690855576,0.0090730825112016,0.0113513843399719,0.0136888635391415,0.0159706287287746,0.0180847153010374,0.0206228784098809,0.0229308491580078,0.0249584709091281,0.0270578329088967,0.0290929658576717,0.0313397942263921,0.0335598849021771,0.0359058079581736,0.0377118249293485,0.0397776187364512,0.0417571682445984,0.0441295883736908,0.0588867330120381,0.0734351639849867,0.0865118618492748,0.0995871111437966,0.1121037494337396,0.1277911043949657,0.1404580152671755,0.1516640607549698,0.161959051218002,0.1727544493137181,0.1852553205224764,0.1970425777998767,0.2087397623340792,0.2188415300546448,0.2280337029215065,0.2380799397350113,0.2488366123938443,0.2572769107868177,0.2657076682031835,0.2736560001832466,0.280660950463429,0.2874450369538778,0.2930675499822548,0.2988380450407283,0.3044724979648373,0.3086020842325954,0.3125821843182928,0.3168345836889098,0.3209143804994362,0.3254560585445755,0.3252724428139836,0.3240545421957508,0.3232227755597252,0.3210989265356905,0.3193558460097248,0.3167555310412453,0.3147754998574099,0.3153277476589453,0.3157660966568153,0.3157518837267435,0.3172346713553552,0.3177101826646151,0.3188545150501672,0.3196642632319128,0.3210502294073842,0.3219425864716446,0.3228829442835236,0.3258560731852502,0.3299138141596008,0.3332674285262367,0.3381353628703452,0.3401076858108108,0.3425386686705491,0.3444469645422242,0.3467190863989516,0.3499059708509638,0.3549908703590992,0.3591237942122186,0.3655097613882863,0.3605182926829268,0.0,1.8261911050752209,56.432901265530944,170.51139892376932,255.94090816455957,fqhc2_80Compliance_implementation_low_initial_treat_cost,60 -100000,95710,45255,428.9624908577997,5892,60.36986730749138,4622,47.64392435482186,1805,18.47246891651865,77.30949638025908,79.67131533437701,63.31695901961641,65.060318243192,77.08122440347977,79.44434934645311,63.23158471057334,64.9776839178414,0.2282719767793111,226.96598792390432,0.0853743090430754,82.63432535059678,179.68016,125.81475941290056,187733.9462961028,131454.14210939355,380.62725,248.3938342270043,397057.4548114095,258897.08786443152,386.59364,187.6445875655157,399584.8187232264,192726.82625401395,3015.90541,1385.1852558257815,3114814.7842440708,1411174.9717774943,1091.80175,481.8298171360672,1124533.7373315224,487319.8958084722,1767.57522,747.5513143098,1812609.675060077,752119.059738496,0.37938,100000,0,816728,8533.3611952774,0,0.0,0,0.0,32493,338.8256190575698,0,0.0,35280,364.2984014209592,1490478,0,53589,0,0,7118,0,0,64,0.6686866576115349,0,0.0,1,0.0104482290251802,0,0.0,0.05892,0.1553060256207496,0.3063475899524779,0.01805,0.3490550799547731,0.650944920045227,24.235935355951067,4.338738611790194,0.309822587624405,0.2477282561661618,0.2228472522717438,0.2196019039376893,11.171722734793873,5.819971087480976,19.318251243558464,12117.476968997467,52.604762253051845,13.932586499030558,16.193301413296236,11.419102072139497,11.059772268585574,0.5675032453483341,0.7825327510917031,0.7018156424581006,0.5815533980582525,0.1211822660098522,0.7297939778129953,0.9158878504672896,0.8730569948186528,0.6974789915966386,0.1238095238095238,0.506547619047619,0.702928870292887,0.638623326959847,0.5467171717171717,0.1204968944099378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495812276561,0.0050583894250263,0.0074263452641831,0.0097403916470301,0.0118843084430437,0.0140665872749295,0.015960862253478,0.0179448181530515,0.0202260741588651,0.0222492861602071,0.0241802396498529,0.0263568597654886,0.0286683804627249,0.0307917284560883,0.032713171898849,0.0348803570690581,0.0369684236672427,0.0389836660617059,0.0410002182521123,0.0431141342277684,0.0577553620282772,0.0716311685593176,0.084986103099271,0.0975689259952472,0.1104479500590518,0.126669698475987,0.1390539450787318,0.1504683840749414,0.1617210365527996,0.1713611751460891,0.184200887663205,0.1960656944579774,0.2073498525458957,0.2172937597128286,0.2264529058116232,0.236747001308117,0.24638879268933,0.2551177908719115,0.2637397598027519,0.270743759960559,0.2777372474089514,0.2843200355751115,0.2898320740863551,0.295041451212343,0.2996511444164874,0.3049630516043869,0.3088034648074202,0.3131795381050594,0.3176096960269622,0.3208592200925313,0.3194987725592813,0.3175224213702178,0.3160174381692744,0.3151776290105695,0.3138220331419391,0.3117592038885566,0.3098321114602177,0.3095711959471684,0.3100909262144899,0.3112579224406488,0.3121679214464074,0.3119546247818499,0.3134742237721104,0.3140877598152425,0.3163447609850314,0.3170069448070597,0.3177406887864647,0.3208877695576893,0.3243186288283226,0.3284001424557793,0.33154715952954,0.3332803560076287,0.3355337608449641,0.3414968055978095,0.3442345644206371,0.3469411903916696,0.3449013912245834,0.3500307944980497,0.3507709251101321,0.3444444444444444,0.0,2.525646949672093,54.95079344069101,170.8698749836784,254.02055625783825,fqhc2_80Compliance_implementation_low_initial_treat_cost,61 -100000,95724,45271,429.4325352053821,5765,58.87760645188249,4512,46.45647904391793,1784,18.17725962141156,77.40440741590693,79.76198007904551,63.3594678928421,65.09933778726993,77.17464469785932,79.53840507054014,63.273291495543496,65.01910706727335,0.2297627180476098,223.57500850537804,0.0861763972986011,80.23071999657816,180.268,126.21887514599364,188320.5883581965,131857.08406041705,378.91882,246.9348266304448,395155.2588692491,257275.52821700383,383.52618,185.8674839301055,396979.7020600895,191243.13066860024,2947.9917,1358.626754463368,3036531.50725001,1376169.481491966,1101.82499,490.45552757429743,1133614.9241569513,494941.42133791646,1747.36618,740.5265791831702,1782841.7951610882,734398.5021719973,0.38074,100000,0,819400,8560.026743554385,0,0.0,0,0.0,32427,338.0343487526639,0,0.0,34977,361.7483598679537,1494625,0,53593,0,0,7144,0,0,63,0.6476954577744348,0,0.0,0,0.0,0,0.0,0.05765,0.1514156642328098,0.3094535993061578,0.01784,0.3307921776599271,0.6692078223400729,24.20906799210447,4.317665922685024,0.3038563829787234,0.2513297872340425,0.2214095744680851,0.2234042553191489,11.07795687151609,5.692323849030944,19.03030452181135,12131.071948358878,51.34914242068922,13.717229748029432,15.46199554415633,11.177787442142726,10.992129686360723,0.5695921985815603,0.808641975308642,0.7045951859956237,0.5685685685685685,0.1180555555555555,0.743485342019544,0.928406466512702,0.8784530386740331,0.6896551724137931,0.1641791044776119,0.5045676004872107,0.7346647646219686,0.6422200198216056,0.5319426336375489,0.1065675340768277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185881924124,0.0045401570813275,0.0068679367784608,0.0092723302696389,0.0113367157077059,0.0133346905537459,0.0156535031847133,0.0177647623031948,0.0200568088932483,0.021990278843694,0.0239210421129228,0.0259562981741299,0.0280967605966834,0.0297774161319229,0.031945189648768,0.0340510869677579,0.0364421523549148,0.0385896119254349,0.0405940491160973,0.04264183566124,0.0566733140524343,0.0707677494976557,0.0841716581522936,0.0966785477715042,0.1092534418418334,0.1258433620270299,0.1384571313379945,0.1503662535667135,0.1617642345047172,0.1724115741833079,0.1844579675803759,0.1965501195770974,0.2075683083884441,0.2172529551344436,0.2263895612375126,0.2369563291699885,0.2465666313382049,0.2553038394513463,0.2632283232405706,0.2702563515678645,0.277964574162016,0.2839112667834209,0.2907210164608081,0.2961033374359219,0.3013917656891602,0.305932088827715,0.3110364551460579,0.3151488227454465,0.3192297260645511,0.3231564547104785,0.3228364417013283,0.3212674027844455,0.3198191239871364,0.3178315786441605,0.3165356894433838,0.3139164008729226,0.311094973478151,0.3116864002093282,0.3115554799183118,0.3123510369606204,0.3121063157697987,0.3120863053486396,0.3140364458020377,0.313856241218582,0.3152038369304556,0.3164675568048723,0.3164596449435653,0.320301740328033,0.323708312941341,0.3252450205501107,0.3277173913043478,0.3338974087784241,0.3352297592997811,0.339681100279604,0.3442028985507246,0.3467789079855021,0.3522003034901366,0.3528468323977546,0.356220818456468,0.3568918391253416,0.0,2.6029910388741446,53.20257845917573,172.5580095501766,241.11800000673492,fqhc2_80Compliance_implementation_low_initial_treat_cost,62 -100000,95758,44886,425.70855698740576,5966,61.07061550993129,4662,48.20484972534932,1800,18.47365233192005,77.33232137485312,79.6990668412172,63.31916690730778,65.07130430171976,77.10709217602957,79.47199106432848,63.23534474012511,64.98871872481267,0.2252291988235555,227.07577688872504,0.0838221671826744,82.58557690709267,178.5927,125.08080051333424,186504.20852565844,130621.7762623846,377.37468,245.16869821520132,393639.246851438,255576.649695275,376.37172,182.059935874194,389911.9238079325,187670.1077826502,3058.00076,1402.1254647501826,3166128.0310783437,1437114.0049303777,1118.41136,499.1026812092008,1157339.4285594935,510698.6424149846,1772.98402,747.6713798664848,1823194.552935525,757716.15911148,0.37921,100000,0,811785,8477.464023893566,0,0.0,0,0.0,32299,336.8073685749493,0,0.0,34351,355.542095699576,1503372,0,53919,0,0,7002,0,0,65,0.678794461037198,0,0.0,1,0.0104429917082645,0,0.0,0.05966,0.1573270747079454,0.3017096882333221,0.018,0.3457659676644789,0.654234032335521,24.28111027995236,4.287134414000855,0.3138138138138138,0.2391677391677391,0.2222222222222222,0.2247962247962248,11.03762832912521,5.642873950152401,19.129213037299127,12100.036736641578,52.95993053259009,13.442605421194878,16.37805532791218,11.643990278618285,11.49527950486475,0.5506220506220506,0.7802690582959642,0.6746411483253588,0.5704633204633205,0.1135496183206106,0.7314890154597233,0.9290780141843972,0.868421052631579,0.6967213114754098,0.1772727272727272,0.4858724147975531,0.6893063583815029,0.6155218554861731,0.5315656565656566,0.0966183574879227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0046556918114596,0.0066810169766875,0.0091572485567932,0.0110787824529991,0.0134065463880767,0.0155931304560659,0.017805184330621,0.0200092019835386,0.0223484848484848,0.0241729627769177,0.0260664236948821,0.0282573599728531,0.0303208198156444,0.0324164826775065,0.0342824660224277,0.0363536586628563,0.0384575483442609,0.04036205301936,0.0421370547802541,0.0567861541994613,0.0711565423005294,0.0841365567150873,0.0967046601615074,0.1090385710369261,0.1243521123780913,0.1365845376795908,0.1481583989780711,0.1587913613739773,0.1690865807364831,0.1812923448119863,0.1936580086580086,0.2048481155888241,0.2157928703470756,0.2257461044105995,0.2355963546568926,0.2450707997188096,0.2543404633578252,0.26192880728948,0.2695333524191239,0.2759753783496089,0.2829290542911277,0.2895857484208285,0.2950584007187781,0.2999150072850898,0.3050056055883404,0.3095205333800332,0.3134971586936347,0.3180959283514094,0.3224819693313819,0.3217643972718834,0.3209277386713594,0.3197754579476068,0.3188395343133719,0.3174365290163667,0.3157290997522254,0.3131986446689255,0.3139267908685384,0.3143207814124746,0.3150061566465014,0.3147922333739799,0.3158457184698502,0.3167407531661494,0.3171135681991137,0.317665189751493,0.3181048187433218,0.3191386470956363,0.32318685469655,0.3267316320807628,0.3324182382430174,0.3343191227990354,0.3348437999786757,0.3381627230165759,0.3406106870229007,0.3424798651432852,0.3435813189392162,0.3492303048596438,0.349740932642487,0.3567552902875746,0.3642585551330798,0.0,1.901037034696441,54.09507452745414,179.56448404528425,253.652207433028,fqhc2_80Compliance_implementation_low_initial_treat_cost,63 -100000,95722,45294,429.6817868410606,5859,60.069785420279565,4593,47.35588474958735,1815,18.55372850546374,77.41699606751023,79.7703750864641,63.36600846061516,65.10063619716334,77.18197664396024,79.53939301555309,63.27890666900202,65.0178598487016,0.2350194235499856,230.9820709110113,0.0871017916131435,82.77634846173498,178.98562,125.45811599121338,186984.601241094,131064.88867488388,383.11099,249.7575096741341,399525.1248406845,260213.4127676492,388.66255,188.29695179804503,402651.5639038048,194033.5175853016,3021.96322,1390.861356157404,3119532.8555608955,1415704.799673278,1121.51529,497.55964812905125,1158006.727815967,506230.8096054958,1788.07254,754.1106778879998,1830509.18284198,755764.400798594,0.3805,100000,0,813571,8499.300056413364,0,0.0,0,0.0,32713,341.0710181567456,0,0.0,35397,366.3630095484842,1496281,0,53679,0,0,7031,0,0,68,0.699943586636301,0,0.0,0,0.0,0,0.0,0.05859,0.153981603153745,0.3097798259088581,0.01815,0.3390160740379931,0.6609839259620068,24.22680070918572,4.361192738630143,0.3122142390594383,0.245808839538428,0.2127150010886131,0.2292619203135205,11.346437320079596,5.876415746845012,19.435927551474936,12136.691935065215,52.12481956326521,13.483712934363036,16.126594717375134,10.926961204197012,11.58755070733003,0.568691487045504,0.7962798937112489,0.701534170153417,0.5834186284544524,0.1301044634377967,0.7385725741780272,0.94,0.8426395939086294,0.7261410788381742,0.1792452830188679,0.5053795576808129,0.7174211248285323,0.6480769230769231,0.5366847826086957,0.1177170035671819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021255491001842,0.004244800372813,0.0066131126257708,0.0088445252287289,0.0109402960793883,0.013080478022761,0.015350430138215,0.0174527194602925,0.019590610405404,0.0217707118449859,0.0237634111100863,0.0259039174030399,0.0279511086896183,0.0299372830911506,0.0323625597061888,0.034349488477834,0.036536629809086,0.0387276102761961,0.040823537970671,0.0427322825622701,0.0572917210487298,0.071380739128615,0.085043434470603,0.0980406592135292,0.1098571940852616,0.1258130360750055,0.1381519629162114,0.1496663083162141,0.1606541966221918,0.1699353413611554,0.1824867029867137,0.1945066476270838,0.2057902973395931,0.2161557028801101,0.2266410326833287,0.2364863369841796,0.2457618617714916,0.2538660373117554,0.2633924016189926,0.2710192686164126,0.278303086348399,0.2846360556139736,0.2906954753912344,0.2974001723642631,0.301928000291202,0.3068654731709719,0.311832123083076,0.3165440195218668,0.3202130961001345,0.3239039308217553,0.3223993006522762,0.320393019101278,0.3184978746164457,0.3178021215712345,0.3163945871273451,0.3144150897214275,0.3127526528549773,0.3132340912808768,0.3132349687718044,0.3138261951306202,0.3143054286406952,0.3151086208591369,0.3162507303230114,0.3173632725655847,0.3182905819295559,0.3193096288606281,0.319594058283252,0.3219719453903589,0.3249145328961139,0.3270254287403903,0.3311530133525803,0.3357037505267594,0.3390316945345645,0.3403851986654534,0.3422400148961921,0.3443964006076896,0.3531902026005443,0.357926221335992,0.3554835224203133,0.36565201052236,0.0,2.3952097457350856,54.2541218608044,177.6748669040547,241.29830261818236,fqhc2_80Compliance_implementation_low_initial_treat_cost,64 -100000,95682,45172,427.46807131957945,5920,60.6488158692335,4662,48.00275913965009,1844,18.812315796074497,77.3508434030137,79.74052564487792,63.31502979323547,65.08237845801993,77.12307218056193,79.51872032474965,63.23045076331334,65.0034472960049,0.2277712224517643,221.8053201282686,0.0845790299221249,78.93116201503858,180.4418,126.38619694810768,188584.89580067305,132089.8360695927,383.56694,249.3642185063216,400152.6305888255,259893.5207315082,382.07854,184.94260655161395,394673.2196233357,189635.91308418696,3040.33176,1382.2568272109263,3133335.611713802,1400433.986759191,1097.04951,485.0723019080767,1126583.6834514327,486988.7668611405,1797.31232,750.2986468245423,1835330.971342572,746267.2360860666,0.38113,100000,0,820190,8572.04071821241,0,0.0,0,0.0,32641,340.39840304341465,0,0.0,34957,360.6634476704082,1489128,0,53412,0,0,7045,0,0,68,0.7106874856294809,0,0.0,0,0.0,0,0.0,0.0592,0.1553275785165166,0.3114864864864864,0.01844,0.3400868306801736,0.6599131693198264,24.800458928662675,4.211936579825239,0.3294723294723294,0.2395967395967396,0.2192192192192192,0.2117117117117117,10.936512794629918,5.760590708257034,19.529045596085,12160.932411490676,52.64684697885711,13.404223209577246,17.259538491513513,11.2738749795477,10.709210298218643,0.5604890604890604,0.7887197851387645,0.6712239583333334,0.576320939334638,0.1134751773049645,0.7398042414355628,0.9204819277108434,0.8367875647668394,0.7316017316017316,0.1701030927835051,0.4965075669383003,0.7108262108262108,0.6156521739130435,0.5309734513274337,0.0996216897856242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0046445122755067,0.0068927712188734,0.0094316611106594,0.0118924087977374,0.0142417636152482,0.0164645156025257,0.0186081663500623,0.0208424949632341,0.0231969849040371,0.025330735309199,0.0272796368192929,0.0295612104256238,0.0314757003472114,0.0336240260075339,0.0356038912034404,0.0376191462909241,0.0394436371185385,0.0417542180706097,0.0436341651552108,0.0576874869438061,0.0712745015915563,0.08504697422978,0.0976664422186684,0.1098111615149277,0.1252539360081259,0.1385898987325648,0.1500212992545261,0.1609992837824836,0.1709790622551807,0.1839016029407009,0.1957472608375557,0.2067100509293518,0.2164072931030708,0.2264570535262126,0.2366454531343548,0.2454340448334375,0.2543907052148068,0.2626181173905142,0.2696103717459335,0.2766413132821635,0.2831854262767228,0.2896183278447724,0.2959209374287873,0.3006732942806446,0.3054939367051168,0.3101045732012408,0.315270058882629,0.3198463309575858,0.3226078811625176,0.3211717171717171,0.3197529675529207,0.3191956433024218,0.3183806018618749,0.3171396813634679,0.3142975029799199,0.3121454867200708,0.3128173212355465,0.3139120500622367,0.3141061029686748,0.3148591075566185,0.3156330571355468,0.3167844265199358,0.3176337100649639,0.3199665031702356,0.3224267565465387,0.3241174809375882,0.3268085902191192,0.3308749347712645,0.3335685444352973,0.3336330126764362,0.3354390397978521,0.3375593305021234,0.3416723523614586,0.3412571643333646,0.347676215380958,0.3531927894897647,0.3587282543491302,0.3553561718325176,0.3539412673879443,0.0,2.8488982384770885,52.97588720006822,177.25005572524404,252.8954226981592,fqhc2_80Compliance_implementation_low_initial_treat_cost,65 -100000,95730,45203,427.71336049305336,5967,61.28695288833176,4715,48.74125143633135,1809,18.614854277655905,77.26691653433518,79.62806526652109,63.2951211478972,65.03961817061432,77.04084222415526,79.40032742407222,63.21111383562929,64.95675976509084,0.2260743101799249,227.7378424488745,0.0840073122679072,82.85840552348134,179.42936,125.6323959592682,187432.7379087016,131236.18088297106,379.77187,246.78432089486665,396213.8410111773,257294.4331921724,378.56517,183.04621148007672,392182.42975033954,188673.9604704364,3092.40456,1409.4724722985472,3199147.2056826493,1441267.5472059497,1109.80138,491.6944391375242,1144040.133709391,498419.6677522798,1770.55316,744.5456961743103,1822788.0079389955,756049.0940398285,0.38172,100000,0,815588,8519.66990494098,0,0.0,0,0.0,32473,338.68170897315366,0,0.0,34661,358.76945576099445,1493532,0,53695,0,0,7079,0,0,67,0.6998850934921133,0,0.0,0,0.0,0,0.0,0.05967,0.1563187676831185,0.3031674208144796,0.01809,0.3333333333333333,0.6666666666666666,24.461579209120103,4.300066091626536,0.3200424178154825,0.2455991516436903,0.216118769883351,0.2182396606574761,11.24105164606712,5.909732884911505,19.41320052043033,12258.711235762225,53.61644556582683,14.055275363295715,16.914490799119992,11.428209462793518,11.218469940617606,0.56033934252386,0.7849740932642487,0.6752816434724983,0.5799803729146222,0.119533527696793,0.741112828438949,0.9230769230769232,0.8582474226804123,0.7391304347826086,0.1469194312796208,0.4919614147909968,0.6997206703910615,0.6119536128456735,0.5274151436031331,0.1124694376528117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.004521996573016,0.0070321061817591,0.0092745908716896,0.0114923824827614,0.0135929052162137,0.0159233396197563,0.0180684149814722,0.0204655346902057,0.0227337864395676,0.0246635162424528,0.0268880128126155,0.0290811866934032,0.0311882003955174,0.0332820930784388,0.0354964751607368,0.037704391769445,0.0397775610565849,0.0416311511195193,0.0435729393500526,0.0584107758170617,0.072355613238157,0.0859715212121848,0.0988553152091574,0.1107946153521542,0.1259100143909252,0.139052249421456,0.1510452720476256,0.1621454004982838,0.1717723584217079,0.1848238540813246,0.1971243444718935,0.2092281221413947,0.2198992443324937,0.2291290166174461,0.2393944102825937,0.2491390106449593,0.258430131028966,0.2665341360899693,0.2739652227736958,0.2806688653590233,0.2861907548273844,0.2924100536304119,0.2970872855035794,0.3028505439737434,0.3081012408417001,0.3127388934143743,0.3161555807524238,0.3208364683600135,0.3248686630761291,0.3237702702702703,0.3228782542642083,0.3216370962041422,0.3197653364235532,0.3190532227071634,0.3171263591129676,0.3151781884046458,0.3148096281529565,0.3153716911260458,0.3163559519332366,0.3172596460908441,0.318432211786153,0.3201984944699104,0.321843974810067,0.322178256044009,0.3247296096974764,0.3263729977116705,0.3297700749549321,0.3317010857994464,0.3340575336954335,0.33826978797774,0.3418863062966343,0.3428390367553866,0.3452171921520727,0.3497740963855422,0.3518693800283956,0.3540998625744389,0.3584142394822006,0.3606152156001098,0.3576388888888889,0.0,2.025121498938221,57.06656588588438,173.90092788789076,257.1675336212894,fqhc2_80Compliance_implementation_low_initial_treat_cost,66 -100000,95700,45597,431.8704284221525,5983,61.20167189132706,4669,48.18181818181818,1799,18.44305120167189,77.288290147924,79.65923442466239,63.294707477804174,65.04469047174443,77.06673718255453,79.4384451825988,63.21223046376072,64.96493498917644,0.2215529653694687,220.78924206358863,0.0824770140434552,79.75548256798959,178.5729,125.15257263749704,186596.5517241379,130775.93797021634,383.57799,250.48186583929464,400199.6133751306,261123.7227925881,386.75368,188.0700990287189,400532.8840125392,193662.35627920832,3062.4078,1405.014721012544,3161856.9905956117,1430023.8279879368,1098.34787,489.7697916897415,1125658.2131661442,489758.4001396408,1768.51016,738.3833408876221,1814219.791013584,741808.8235587128,0.38329,100000,0,811695,8481.661442006269,0,0.0,0,0.0,32874,342.88401253918494,0,0.0,35252,364.7753396029258,1489524,0,53526,0,0,7206,0,0,74,0.7628004179728317,0,0.0,0,0.0,0,0.0,0.05983,0.1560959064937775,0.3006852749456794,0.01799,0.3307839388145315,0.6692160611854685,24.33137834045734,4.3257164661545175,0.3169843649603769,0.2495180980938102,0.207967444849004,0.2255300920968087,11.071805416626209,5.67953239311514,19.04102269423438,12287.40884057549,52.98936801130792,14.055863614042517,16.829929941670237,10.736339781288912,11.367234674306268,0.5639323195545085,0.7854077253218884,0.702027027027027,0.583934088568486,0.1063627730294397,0.7618683001531393,0.9288888888888888,0.8710462287104623,0.7956521739130434,0.1674418604651162,0.4870651204281891,0.6951048951048951,0.637043966323667,0.5182186234817814,0.0906921241050119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025623107384113,0.0048053040824809,0.0069001907699801,0.0092951908815701,0.0115836791147994,0.0138276532700668,0.0159968189881935,0.0178124840504261,0.0199327397806376,0.0219618277644169,0.0245864677065611,0.0265956354827451,0.0289630071353663,0.0310086301003068,0.0328822510108094,0.0351684011450657,0.0371597486100038,0.0394553869782694,0.0416974361641271,0.0438036080916301,0.0584334203655352,0.0723042936563609,0.085847719997901,0.0988771612278615,0.1113151977705291,0.1272473159265612,0.1393407806991462,0.1514334721881891,0.1622647562018819,0.17346719639214,0.186650132096835,0.1980717148737948,0.2097880774508309,0.220382960554406,0.2302515640144506,0.2404606832580691,0.2503661795453783,0.2587017555728444,0.2665771781541857,0.2742002158785568,0.2802779002064534,0.2869136960600375,0.2938314962685239,0.2987602710105232,0.3042604746307548,0.3092849730691308,0.3135677256580516,0.317442097745128,0.3218023633294377,0.3262644035507812,0.3249777514090774,0.3237772170051986,0.3225742658172418,0.3210679569456315,0.3188531064184909,0.3180555768670114,0.3163635787103832,0.3158543601545163,0.3153571000701706,0.3160087248802117,0.3171079544388358,0.3190812231908122,0.3194985955644992,0.3199446910055978,0.3217133143390715,0.3241036011511239,0.3241823756529639,0.3282425990968389,0.3315238328722025,0.335486939632962,0.3373010443745154,0.340987614947111,0.346409741400954,0.3484193768478508,0.3506999165662371,0.3537796471550414,0.3581101414384592,0.3608617594254937,0.3615363953800698,0.3668661181750187,0.0,2.353569040715509,57.19529053833779,168.64136697556316,253.46780586687527,fqhc2_80Compliance_implementation_low_initial_treat_cost,67 -100000,95824,45047,427.2520454165971,5752,58.77441976957756,4483,46.14710302220738,1784,18.21046919352145,77.36488025655099,79.67932886833238,63.35773544642036,65.07101997793669,77.13892319109074,79.45680307668117,63.27373420064382,64.99094320278138,0.2259570654602498,222.52579165120775,0.084001245776534,80.07677515530531,180.17208,126.17382894090598,188023.96059442312,131672.4713442415,377.59912,246.3088926996332,393383.1086157956,256387.14903135883,379.05015,184.3989671199634,391934.1814159292,189583.17995936784,2919.08315,1334.4156250104118,3006375.688762732,1353378.8608995902,1041.95137,462.1094212409783,1070087.044999165,465470.8988632484,1749.03152,734.1694360972596,1786821.8191684757,734285.8815372867,0.37851,100000,0,818964,8546.543663382869,0,0.0,0,0.0,32261,335.9701118717649,0,0.0,34526,356.59125062614794,1495735,0,53686,0,0,7016,0,0,73,0.7618133244281182,0,0.0,0,0.0,0,0.0,0.05752,0.151964280996539,0.3101529902642559,0.01784,0.3332779531483635,0.6667220468516365,24.379833483148364,4.293235290214762,0.319875083649342,0.2451483381664064,0.2105732768235556,0.2244033013606959,11.060189405026785,5.765992594083885,19.0214957468586,12113.1350139393,50.75969464239741,13.166665505992905,16.13540230718013,10.497276852849485,10.96034997637488,0.5583314744590676,0.7816196542311192,0.694560669456067,0.5752118644067796,0.1043737574552683,0.7296631059983566,0.9055690072639224,0.8586387434554974,0.7488584474885844,0.1083743842364532,0.494488671157379,0.706997084548105,0.6349809885931559,0.5227586206896552,0.1033623910336239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044202927937061,0.0066665313742998,0.0090704099459635,0.0111855685827884,0.0133486742964199,0.015749556565883,0.0179165730853257,0.0201790971540726,0.0221915144070832,0.0240235315821299,0.0260360009031013,0.0281403523196776,0.0301770275833676,0.0322015379223617,0.0343563855595817,0.036243651672028,0.0383467683444888,0.0402039269434839,0.0421361465713661,0.0573136134173307,0.071066467372558,0.0849073404779115,0.0977443609022556,0.1100134804954082,0.1253708963813184,0.1385545997711767,0.149879343885871,0.1599901853056957,0.1710937834711452,0.1842464795550631,0.1962857266398582,0.2080350255847556,0.2175698403337483,0.2269000835201547,0.2367597456455626,0.2463069004701321,0.2544725582022169,0.2622132131451996,0.2686956223490002,0.2753360432352533,0.2822709605126469,0.288532879657853,0.2948921869954674,0.3001601825109822,0.3039272396096144,0.3079085808539618,0.3115528739282311,0.3154975825425963,0.3198067123991099,0.3194968891516723,0.3179769723283229,0.3174837774305702,0.3164509418698717,0.3162878506340028,0.3136548892225661,0.3115647983768704,0.3128956411647676,0.3141306580839553,0.3148124966469357,0.3154738405429286,0.3163668101481761,0.3173882901619714,0.3186138258764458,0.3197895141525301,0.32057964970809,0.321231591516461,0.3268698931489629,0.3315891132572432,0.334581225855271,0.3372716032422036,0.3416653314105645,0.3466234261732163,0.3482342078941294,0.3506703432537796,0.3540823613425375,0.3576597382602001,0.361354825545807,0.3605835397742912,0.3582434514637904,0.0,2.324907143337064,52.95605364008525,165.19210886437804,245.5041316177413,fqhc2_80Compliance_implementation_low_initial_treat_cost,68 -100000,95641,45458,431.1540029903493,5840,59.953367279723125,4593,47.47963739400466,1730,17.732980625463973,77.2563444549925,79.66766400158184,63.27473565930678,65.0561322574331,77.03824061683308,79.45079403072637,63.19361841136271,64.9779381736758,0.218103838159422,216.86997085546977,0.0811172479440642,78.1940837573103,178.6796,125.23713039529454,186823.2243493899,130945.02399106506,382.85827,249.73181782780267,399766.7736640144,260573.58755859616,383.58159,185.84218729368948,397871.4358904654,191806.21040843416,2977.0837,1363.523779650679,3077831.0557187814,1390784.2009129855,1071.66816,475.62316728175216,1106804.163486371,483634.8510031231,1689.86486,708.4761298136045,1733841.51148566,712128.5503557132,0.38252,100000,0,812180,8491.964743154087,0,0.0,0,0.0,32678,341.1089386351041,0,0.0,34975,362.4700703673111,1491613,0,53556,0,0,7125,0,0,67,0.7005363808408527,0,0.0,1,0.0104557668782216,0,0.0,0.0584,0.1526717557251908,0.2962328767123288,0.0173,0.3338223308883455,0.6661776691116544,24.29438539462493,4.22211264601948,0.3261484868277814,0.2466797300239495,0.2218593511865882,0.2053124319616808,11.165844665154486,5.901001296444913,18.38285219707674,12232.274973915552,52.342628993927896,13.7431452336221,17.08906501664955,11.255217319188654,10.255201424467574,0.5736991073372524,0.7837599293909974,0.6835781041388518,0.6045142296368989,0.1134676564156945,0.7402912621359223,0.9086651053864168,0.8530183727034121,0.7510548523206751,0.1256544502617801,0.5123622281799225,0.7082152974504249,0.6257833482542524,0.5601023017902813,0.1103723404255319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990834050741,0.0047231484953832,0.0069414140594079,0.0091940710940436,0.011364330043748,0.0138035716104846,0.0159437734617267,0.01794106829049,0.0204570095943375,0.0225582395967791,0.0246778033163684,0.0265651333908825,0.0286299621149728,0.0309406961398878,0.033076462202756,0.0350779164338486,0.0373395807849397,0.0395462619589267,0.0414667901478652,0.043308195387552,0.0579505669645189,0.0720444188361007,0.0863288959811867,0.0987294335610598,0.1113092662748119,0.1268400055028202,0.1395973296823426,0.1513157194125853,0.1622219609435959,0.1727120535714285,0.1857885204191642,0.1969079759918528,0.2081822043590497,0.2184185149469623,0.2279916179552222,0.238499622574486,0.2488339056610105,0.2578474578181531,0.2658414885031995,0.2723049393195531,0.2796429399489914,0.2859738585077076,0.2920719267447929,0.2972791320107058,0.3024136126291702,0.3072791257640304,0.312811062218712,0.3173395524290156,0.3215819033166012,0.3255651117012141,0.3241799741044454,0.3224009047527101,0.3214033402096815,0.3204888444309137,0.3188230732522071,0.3153305550002306,0.3138011528750417,0.3142607807946256,0.3140854988578397,0.3150999605182872,0.316486455939419,0.3175905145875951,0.3195265028069216,0.3201001990561606,0.3213289068514242,0.32191066868192,0.3222181019482557,0.3240592285202301,0.3255350398657154,0.3290368495967104,0.3317002358918526,0.3337219160661297,0.3368341613734985,0.3396069538926681,0.3413488114980652,0.3451420554191511,0.3488093455144526,0.3509366281387007,0.3464439655172414,0.3456221198156682,0.0,2.1070285707460576,54.16610048626113,176.31437028804623,248.10331949852417,fqhc2_80Compliance_implementation_low_initial_treat_cost,69 -100000,95685,45226,427.966765950776,5751,58.62987929142498,4551,46.87255055651356,1809,18.46684433296755,77.32722884548278,79.70391520155853,63.32110870231941,65.07574570497529,77.09923785804722,79.47885742409656,63.23550332990567,64.99398088222048,0.227990987435561,225.05777746197,0.0856053724137453,81.76482275480623,180.63848,126.56459240647705,188784.5325808643,132272.13503315777,385.74821,251.64281011789373,402485.352981136,262332.35106640944,383.38741,186.0744741303704,396078.4867011548,190929.99816991945,2979.97809,1375.8345490185127,3074354.8414066997,1397871.0236907692,1072.17589,480.8972828990335,1106187.417045514,488244.5763693727,1766.26352,742.7283810186515,1806112.3687098287,742442.587550844,0.38038,100000,0,821084,8581.115117312012,0,0.0,0,0.0,33040,344.5890160422219,0,0.0,35081,362.0630192820191,1483484,0,53272,0,0,7280,0,0,66,0.6897632857814704,0,0.0,0,0.0,0,0.0,0.05751,0.151190914348809,0.3145539906103286,0.01809,0.3350430178689609,0.664956982131039,24.268590514789764,4.1899407669037565,0.3126785321907273,0.2467589540760272,0.2225884421006372,0.2179740716326082,11.082416094203673,5.815294309272336,19.093300936465614,12134.17936602202,51.74481792976199,13.556880452381565,16.161570274854114,11.274301523320702,10.752065679205607,0.5658097121511756,0.8058771148708815,0.6865776528460998,0.5765054294175715,0.1098790322580645,0.7244897959183674,0.9189814814814816,0.8630490956072352,0.664,0.1268292682926829,0.5041196216051267,0.7351664254703328,0.6206563706563707,0.5478374836173001,0.1054637865311308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880515115313,0.0044187248533003,0.0068986507050826,0.0090293224453314,0.0114092799544442,0.0138169081486157,0.0161014010972202,0.0182815356489945,0.0205346368600822,0.0227442627315644,0.0250743513485796,0.0272171724952498,0.0296332105901956,0.0314576871953921,0.0337678153090394,0.0356566701137538,0.0376160285098624,0.0397001723386142,0.04176244812199,0.0436844628822781,0.0585869769579477,0.0726545819902038,0.0859513494802429,0.0989479221462388,0.1110853285518405,0.1269478561680789,0.1392624038206421,0.1505154200034077,0.161053531360188,0.1709528254315662,0.1832412225418269,0.1953445569209116,0.2061226487962489,0.2162398678582758,0.2257602941014606,0.2359498271429837,0.2457859837913866,0.2545315435939557,0.2623830927086171,0.2697621666208413,0.2763787094607894,0.2824855450736206,0.2877557302519417,0.2937517229806666,0.2994359896922254,0.305007400098668,0.3089515411881113,0.3131956294730407,0.3182996371176775,0.3221001478977393,0.3203219804222959,0.3185577650863552,0.3175426236437931,0.315870036101083,0.3145613174596097,0.312388783211634,0.3101744047901915,0.3107149294574532,0.3110463133483391,0.3123264259773552,0.3141901362387636,0.3153567062349647,0.3164829648840273,0.3172533875036274,0.3184463684463684,0.3195585818267198,0.3199041314768318,0.324833947177889,0.3289759585056424,0.3322610111600937,0.3347800264973274,0.3398146175154485,0.3419957108616122,0.3444877377950951,0.3468596292092319,0.3501304244723737,0.3540039810136273,0.3589379813538711,0.3596370635138851,0.358758144883097,0.0,2.693036328835373,55.23393188038812,166.0577757787106,246.44186762742348,fqhc2_80Compliance_implementation_low_initial_treat_cost,70 -100000,95778,44888,424.1161853452776,5967,61.02654054166927,4694,48.43492242477395,1883,19.24241475077784,77.38146625236273,79.70420512209708,63.35451413110488,65.06768897708872,77.14689846118165,79.47322086589485,63.26846050709228,64.9858580668418,0.2345677911810781,230.98425620223395,0.0860536240125995,81.83091024692146,177.66474,124.48663474978136,185496.1682223475,129973.91337236251,379.37086,247.06497419333903,395491.4907390006,257353.41539115357,380.71917,184.36544318929705,394239.491323686,189924.03832579768,3081.41809,1406.1436611422378,3181396.2287790515,1432273.8532254137,1123.64353,499.7680499688356,1157904.4352565303,506627.0867052497,1841.50664,763.3717614720791,1884089.95802794,763807.554593988,0.37874,100000,0,807567,8431.644010106704,0,0.0,0,0.0,32378,337.4261312618764,0,0.0,34724,359.27874877320465,1504674,0,53999,0,0,7079,0,0,85,0.8874689385871494,0,0.0,0,0.0,0,0.0,0.05967,0.1575487141574695,0.3155689626277861,0.01883,0.3465536542459619,0.653446345754038,24.29019429167483,4.301441836575741,0.3065615679590967,0.2449936088623775,0.2243289305496378,0.2241158926288879,11.302172252677211,5.8171682681719865,19.80623162469547,12073.338093812206,53.11030390376757,13.673536055925505,16.428482372089093,11.626484045564464,11.381801430188526,0.568172134639966,0.7930434782608695,0.7102154273801251,0.5859449192782527,0.1102661596958174,0.7569279493269992,0.937046004842615,0.8784810126582279,0.7654320987654321,0.1698113207547169,0.4986884290294375,0.7123473541383989,0.646551724137931,0.5320987654320988,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025717352125225,0.0047326604240139,0.0071819113216542,0.0092412056219026,0.011184886168363,0.0135594600647433,0.0156861545988258,0.0178267125174746,0.0203923171230077,0.0226816991324275,0.024833012334549,0.0271884105552591,0.0293501048218029,0.0315411300865734,0.0336608348711815,0.0357836252478519,0.0379258247444016,0.0398946648143156,0.0415532608921485,0.0435955102975781,0.0575337605142869,0.0713822329182797,0.0840272679601468,0.096816920359936,0.1089828060595199,0.124176370424427,0.1361625847237396,0.1478083154152385,0.1587542321289344,0.1690805201487977,0.1824210129716346,0.1939983779399837,0.2046779174459571,0.2145068311838895,0.2236404850458856,0.2344624317166949,0.2438937262781871,0.2526161809384494,0.2603635620451217,0.2677570575492567,0.2746725952686977,0.2815613548288902,0.2879098239340729,0.2923736937973348,0.2969152295360699,0.3035342523128472,0.3091939074106495,0.3133946960258333,0.3176296910206936,0.3212204319506342,0.320507473529847,0.3188720471629402,0.3173838985317511,0.3165411468798335,0.3158802366723159,0.3138804644180988,0.3113226944185237,0.311210527178277,0.3118956254796623,0.3126858363749666,0.3132791327913279,0.3139310344827586,0.3141202542231142,0.3144683609378841,0.3166146458583433,0.3181226910869452,0.31865196635599,0.3226392631117238,0.3268665079142737,0.3306067344345616,0.3345773974784943,0.3372837416009735,0.3402834134465322,0.3451688449044345,0.348235294117647,0.3500532355376789,0.3490809661248671,0.3534152730203506,0.3592552026286966,0.352963671128107,0.0,2.149520509548966,55.30818179409381,175.48160886114917,254.95412869557012,fqhc2_80Compliance_implementation_low_initial_treat_cost,71 -100000,95752,45022,426.9466956303785,5820,59.49745175035509,4498,46.348901328431786,1733,17.701980115297854,77.31912755708531,79.66852090207158,63.32066847763053,65.05818895019283,77.10388522547811,79.4560669633234,63.23945838367055,64.98073758554094,0.2152423316072003,212.4539387481832,0.0812100939599815,77.45136465189262,178.90268,125.26011476905938,186838.938090066,130816.56192148404,376.44456,246.1405866570242,392538.42217394937,256454.4337204697,380.34799,184.71672816179012,392975.7080792046,189747.41662568017,2916.90446,1338.675486870055,3009395.929066756,1361340.8480355155,1056.06103,470.5596864356612,1090289.0174617765,478917.5502228824,1699.49474,715.403390239693,1738791.2524020388,716690.5717337454,0.37968,100000,0,813194,8492.67900409391,0,0.0,0,0.0,32172,335.3559194586014,0,0.0,34610,357.29801988470217,1498122,0,53829,0,0,7170,0,0,80,0.8250480407719943,0,0.0,1,0.0104436460857214,0,0.0,0.0582,0.1532869785082174,0.297766323024055,0.01733,0.3428384136348738,0.6571615863651262,24.17163728877121,4.311921665388317,0.3128056914184082,0.262338817252112,0.203201422854602,0.2216540684748777,11.118515987898634,5.71304422288323,18.34124397036075,12125.816732342562,51.06487277108884,14.336050226862415,15.847481927490763,10.07692014767447,10.804420469061176,0.5598043574922188,0.7805084745762711,0.7029140014214641,0.5536105032822757,0.1023069207622868,0.7391646966115051,0.9098712446351932,0.862533692722372,0.7534246575342466,0.136150234741784,0.4893155775781976,0.696078431372549,0.6457528957528957,0.4906474820143885,0.0931122448979591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050835957832,0.0043575634126815,0.0063714946633659,0.0086026529078388,0.0106883892160152,0.0129133441284001,0.0149579403517716,0.0171139157782951,0.0193247581849041,0.0213959583137118,0.0235510032501819,0.0255362405150373,0.0276440824386029,0.0294726649016719,0.0316133758421807,0.0337742868954113,0.0357982131950267,0.0379029915771129,0.0400270171974853,0.0422976773252786,0.0566707376903725,0.071477886104021,0.085030731471964,0.0980357105301899,0.1101752092601573,0.1250938388826036,0.1380224628535672,0.1486774063118469,0.1597454324125191,0.1694324735747518,0.1824564426162427,0.1943139758879677,0.2065957493093171,0.2164508791881725,0.2263229128841646,0.2357345383661173,0.2449906790350847,0.2549253462650629,0.2633628077503717,0.2705460625773054,0.2771931043265835,0.2836539024361691,0.2890789754282871,0.2950115229498751,0.2997859193305113,0.3051924809617259,0.3106425098982609,0.3153784413896781,0.3191831442463533,0.3237690306735505,0.3228870535293245,0.3216989182196041,0.3207906275112433,0.3196308724832215,0.3187815750371471,0.3162135253120931,0.3148544012160942,0.3144137048341046,0.3147361416798894,0.315005359056806,0.3156483755460152,0.3158341727400209,0.3166369640423524,0.3190679768113347,0.3205569048019814,0.3208978570311278,0.3220865009538453,0.3255938000062753,0.3287637613070612,0.3320690608826202,0.3354344277163069,0.3382454280413464,0.3396463852010319,0.3433381579949722,0.3486229908826017,0.3525205158264947,0.3548778637536034,0.3558912386706949,0.3598795840175151,0.3642559636501325,0.0,2.439265815392543,55.44851955668516,162.43674072178857,242.0802792747515,fqhc2_80Compliance_implementation_low_initial_treat_cost,72 -100000,95681,45052,427.0126775430859,5959,61.01524858644872,4673,48.24364293851444,1824,18.666192870057795,77.34181859432726,79.72273120144921,63.3271521787835,65.08480519107698,77.11785641553861,79.5032521429889,63.24406608334335,65.00664884948523,0.2239621787886534,219.47905846030835,0.0830860954401515,78.15634159175033,178.77112,125.20210239660916,186840.77298523215,130853.6725124206,379.53995,246.92911352736647,396071.4561929745,257477.7669537285,384.10371,186.48747930987923,397627.585414032,192003.67157212857,3060.05666,1399.1973614715448,3158942.402357835,1423326.99235913,1110.65755,492.8598824213452,1143947.481736186,498361.3393719972,1788.0718,743.7955970540723,1830999.278853691,743253.6842747784,0.38047,100000,0,812596,8492.762408419645,0,0.0,0,0.0,32405,338.0608480262539,0,0.0,35061,362.6843364931387,1500546,0,53818,0,0,6948,0,0,78,0.8152088711447414,0,0.0,2,0.0209027915678138,0,0.0,0.05959,0.1566220726995558,0.3060916261117637,0.01824,0.3403950302644154,0.6596049697355846,24.277390199825955,4.28379164844239,0.3145730793922534,0.2512304729295955,0.2142092873956773,0.2199871602824737,11.400590139048784,5.916668988387294,19.279154976739893,12126.600058216913,52.99000235374584,14.252483969182904,16.426718077000274,11.05412729538718,11.256673012175504,0.5758613310507169,0.8160136286201022,0.6945578231292517,0.5954045954045954,0.11284046692607,0.7400635930047694,0.9252747252747252,0.8767123287671232,0.726027397260274,0.1415525114155251,0.5153733528550513,0.7468706536856745,0.6343891402714932,0.5588235294117647,0.1050679851668726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999756964486,0.0045004409215767,0.0065846210038249,0.0088866770937011,0.0109814129417985,0.0129917732345035,0.0150342985862662,0.0171391239549625,0.0192765666043193,0.0213330057631872,0.0234086621277991,0.0253676772656314,0.0274997170810999,0.0298315214591169,0.0318525246686759,0.0340922020293962,0.0362490803013502,0.0384371787816805,0.0408751378456544,0.0429112063303412,0.0573843276955381,0.0713702330841239,0.0847258376018137,0.0975566125094705,0.1098897621182551,0.1252948580978876,0.1375834297174266,0.1487225888865233,0.1592426784054363,0.1696035006059566,0.1819738514226635,0.193605261165374,0.2055880625584582,0.2153398779981196,0.2253412678333755,0.236226924908364,0.2454076735932861,0.2538715010290264,0.2625028363966417,0.2699543148951762,0.2774315151655315,0.2838101696500602,0.2902150003547861,0.2965225620201003,0.3008305809209248,0.3059833904236181,0.3102037240965061,0.314825888370081,0.318920739368661,0.3229666965746556,0.3215675188131874,0.3209820507530431,0.3195002042569975,0.3186905226068246,0.3184483603271923,0.3155379950381328,0.3139062376472448,0.3150042625745951,0.3151075452372823,0.3159461097052429,0.3169000933706816,0.3174634453947109,0.3183423543917577,0.318773587012349,0.3199731034317139,0.3208211602671118,0.3228362164780985,0.3256391710431146,0.32945109078114,0.332684206342898,0.3372140802629776,0.3406698564593301,0.3436559679037111,0.3495706360665704,0.3505414488424197,0.3521527695409797,0.3538673188627331,0.3629421221864952,0.3604298704877376,0.3524464831804281,0.0,2.2857391705590384,54.96489472136116,176.74773657625852,252.32905247388808,fqhc2_80Compliance_implementation_low_initial_treat_cost,73 -100000,95666,45373,431.1981268162148,5794,59.16417536010704,4558,46.92367194196476,1796,18.36598164447139,77.38307130315455,79.75925130272948,63.34642469116329,65.09726405711027,77.14986810457383,79.52803438133661,63.258661587706506,65.01276511391237,0.2332031985807248,231.2169213928712,0.0877631034567869,84.49894319790019,178.86528,125.30533686136808,186968.494553969,130982.10112408597,380.82344,248.9233472340622,397398.3442393327,259525.1085208149,381.78305,184.87109636268224,393993.1846214956,189393.98102303545,3011.73792,1391.2468320562075,3104909.654422679,1411388.1364143554,1089.38497,484.72664345041534,1123009.240482512,491110.9417893737,1765.53022,755.9119103047792,1807812.3471243705,759556.421900088,0.38169,100000,0,813024,8498.56793427132,0,0.0,0,0.0,32531,339.3159534212782,0,0.0,34847,359.0930947253988,1496141,0,53735,0,0,7213,0,0,73,0.7630715196621579,0,0.0,0,0.0,0,0.0,0.05794,0.151798579999476,0.309975837072834,0.01796,0.3414714615638403,0.6585285384361597,24.040756685080343,4.35560918369756,0.3012286090390522,0.2492321193505923,0.2187362878455463,0.2308029837648091,10.9801078099841,5.446726214270025,19.1861198128263,12127.05777303523,51.93414091972683,13.720378586651584,15.541279146647966,11.12265974565234,11.549823440774956,0.54870557261957,0.7790492957746479,0.6817188638018936,0.5646940822467402,0.1112167300380228,0.710236220472441,0.9044289044289044,0.8449197860962567,0.7148936170212766,0.1293103448275862,0.4863138686131387,0.7029702970297029,0.6206206206206206,0.5183727034120735,0.1060975609756097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890750432766,0.0047210909164589,0.007038468169694,0.0092509850115764,0.0115499974581871,0.0138644298991215,0.0161267304124447,0.0181691981055038,0.0202183334696213,0.0220097457106588,0.0239501312335958,0.0259593563558321,0.0281491689978607,0.0303551563594413,0.0324138073328243,0.0343234528091281,0.0362781253884722,0.038163739776643,0.0401730467246955,0.0421877605469401,0.0572473230608513,0.0713904331166179,0.0846333812436396,0.0976761303890641,0.1104152168870331,0.1255722487127707,0.1374218170253366,0.1492294438594812,0.1595398422743231,0.1698117251208195,0.1820754513956141,0.1940458295935029,0.2044550257647903,0.2160519469161984,0.2256300810772158,0.2366604239851948,0.2460459297649897,0.2552237629115649,0.263821378276473,0.2704734833289396,0.2763770229909009,0.2836083041579336,0.2898662338123955,0.2952104359931354,0.3004718816890445,0.3052296532070024,0.3102161444636461,0.3145014451787056,0.3196868965695994,0.3239481260399884,0.323099493916227,0.3209223027319849,0.3196059113300493,0.3182566502036218,0.3171332719769617,0.3143272838655333,0.3119588444796201,0.3122087298982606,0.3132167700695619,0.3141872589630053,0.3155064236629817,0.3163283388135226,0.3172829968052452,0.3181312074110364,0.3196213877668092,0.320715635761075,0.3220971664498614,0.3254718452659491,0.3285853931015221,0.3312204724409449,0.3342837746096402,0.3363464368299348,0.3402782109662529,0.3377951571664912,0.3381414701803051,0.3396094839609484,0.3432746793915896,0.3425004876145894,0.3383097840575846,0.349171270718232,0.0,2.81592531392226,55.07103200737857,171.04794914365522,242.25334285228865,fqhc2_80Compliance_implementation_low_initial_treat_cost,74 -100000,95694,44982,425.7424707923172,5892,60.3590611741593,4624,47.73549020837252,1857,19.01895625640061,77.3960056150407,79.78036411885567,63.35197710932333,65.11319558670245,77.15844600378658,79.5437574850315,63.26412104287458,65.02775830463898,0.2375596112541274,236.60663382416655,0.0878560664487508,85.43728206346657,181.01292,126.6708310447353,189158.06633644743,132370.7139891062,380.69771,248.04398814452395,397254.8331138838,258632.0126073985,379.92033,184.20466957729533,393140.9074759128,189495.31741403876,3038.06982,1403.7388902038265,3139083.3908082014,1431380.281655966,1097.708,492.0893504050873,1130786.4233912262,497984.2328393567,1821.57572,768.428061252841,1868242.5648421007,774170.9109015509,0.37894,100000,0,822786,8598.093924383973,0,0.0,0,0.0,32558,339.61376888833155,0,0.0,34732,359.02982423140423,1492966,0,53461,0,0,7155,0,0,72,0.7523982694839801,0,0.0,1,0.0104499759650552,0,0.0,0.05892,0.1554863566791576,0.315173116089613,0.01857,0.3299220272904483,0.6700779727095516,24.395700175253054,4.376125807590193,0.317257785467128,0.2355103806228373,0.2244809688581314,0.2227508650519031,11.28380467291244,5.864279111624647,19.792439566762507,12076.850564438117,52.568401686391546,13.062326339353312,16.767251275248405,11.45565181258944,11.283172259200398,0.5661764705882353,0.8117539026629935,0.7014314928425358,0.571290944123314,0.1087378640776699,0.7273419649657273,0.9264705882352942,0.8613861386138614,0.7537878787878788,0.1265822784810126,0.5022651766837813,0.7430249632892805,0.6406396989651929,0.5090439276485789,0.1034047919293821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019348237892156,0.004562876437306,0.0070745620267554,0.0092456184912369,0.0115252375236506,0.0137966847228444,0.0159058698777491,0.0180910473818007,0.0201701118403565,0.0225081373211324,0.0246975599753947,0.0271260921794305,0.0293724417384865,0.0317563322105826,0.0337594535755924,0.0355274854768352,0.0375372886973815,0.0392966868720418,0.0414526092472805,0.0434691984617469,0.0582496892723227,0.0715788151822434,0.0850184594730659,0.0977994595901717,0.1095897630491609,0.1251057529610829,0.1367991088005941,0.1480326193416514,0.1597175485263169,0.1692461147398564,0.1818054538405204,0.1940679524484299,0.2053229873065553,0.2151976215459951,0.2243991468214702,0.2341344078284645,0.2439807741633304,0.2531201905254052,0.2616927260367097,0.2693587295780122,0.2755845505455805,0.2823736807695899,0.2889235348309829,0.2934336607132176,0.2985391283263623,0.3031122474064605,0.3076299308864991,0.3127322064846632,0.3164047379422466,0.3206207259337191,0.3196404614971827,0.3177194714042879,0.316381720354579,0.3158016147635525,0.3154041115178823,0.3132228248414941,0.3115727940595623,0.3129228299506937,0.3131809114623293,0.3130365093499554,0.3130620104316614,0.3130280649926145,0.3136980872322229,0.315028901734104,0.3166219325153374,0.3180672814651253,0.3183274273564848,0.3205836209601506,0.3225749929913092,0.3253385220188222,0.3287176674892605,0.3317724684723035,0.3346183013144591,0.337530525030525,0.3390761075350246,0.3410991636798088,0.3414634146341463,0.3517690117934119,0.3562362030905077,0.3473887814313346,0.0,2.239578180461088,57.52305805589601,166.85558716153758,249.0481543847841,fqhc2_80Compliance_implementation_low_initial_treat_cost,75 -100000,95819,44996,425.76107035139165,6011,61.50137237917323,4789,49.36390486229244,1877,19.181999394692077,77.38566316619061,79.7071440344094,63.36611244363343,65.08424845244362,77.15271494443206,79.47482737631158,63.28017521018516,65.00086274964929,0.2329482217585479,232.3166580978153,0.0859372334482699,83.385702794331,179.13588,125.54257893826554,186952.35809181893,131020.5480523336,386.29732,251.0465795505764,402551.8112274184,261399.4923246709,391.44711,190.1546428896839,404488.4939312663,195329.5165800496,3160.2216,1453.9843842872165,3261090.2639351278,1480450.572975441,1133.68453,502.0458252803452,1166880.3681941994,507709.0930772711,1835.26206,768.5501453875693,1878671.0986338824,772087.6929752447,0.37955,100000,0,814254,8497.834458719042,0,0.0,0,0.0,33007,343.83577369832705,0,0.0,35763,369.1334703973116,1497506,0,53755,0,0,7008,0,0,81,0.8453438253373547,0,0.0,0,0.0,0,0.0,0.06011,0.1583717560268739,0.3122608550989852,0.01877,0.3283060803302111,0.6716939196697889,24.23689737757615,4.327104797023797,0.3257465024013364,0.2317811651701816,0.2221758195865525,0.2202965128419294,11.198660126085649,5.903686838727461,20.042266693025887,12083.619582163865,54.604583325652605,13.53745973000076,17.674402634903835,11.760784212246248,11.631936748501769,0.5658801419920652,0.8081081081081081,0.6897435897435897,0.5704887218045113,0.1232227488151658,0.75,0.9455782312925172,0.8506024096385543,0.7403100775193798,0.1407766990291262,0.4958201210723551,0.7174887892376681,0.6314410480349345,0.5161290322580645,0.1189634864546525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295149544731,0.004541629917987,0.0070637667333123,0.0094284030642309,0.0115850929655396,0.0138886060482639,0.0160637658114953,0.0181753240126543,0.0204200521232561,0.022462596451012,0.0247286813761157,0.0267476829280809,0.0288078108941418,0.0308903757076685,0.0331002907876013,0.035159477772269,0.0370623292773777,0.0391057399307642,0.0410453960210989,0.0430272002663836,0.057766326967007,0.0715435596161485,0.0852785493422776,0.0977096028577432,0.1101900227521698,0.125623151668779,0.1382126739973304,0.150020192573384,0.1614107308541384,0.1709184766311099,0.1834419424909134,0.1953400952720438,0.2065285829045355,0.2169224388220655,0.2259903137595132,0.2369090265799832,0.2465828199672485,0.2544592712405086,0.2625760338910096,0.2690922807859813,0.2753057477105011,0.2814337720526463,0.2878219200717607,0.2939848006882707,0.298879941878065,0.3041721919355631,0.308785932531022,0.3130823941072809,0.3173617921849997,0.321399907900796,0.3194731890874882,0.3177291520720869,0.3162484527962192,0.3146148515994919,0.3128061997090174,0.3109297732596414,0.3087266392144441,0.3085263676688023,0.3083032367389555,0.3092069964588475,0.3108237278605567,0.312820309871975,0.3140627957351055,0.3135912742941784,0.3140144468871548,0.3151151518327351,0.3157789289905263,0.3191636971397937,0.3221881282403978,0.3261588744071106,0.3298474746552196,0.3314899500159523,0.3341527987897125,0.3360474849707023,0.3361694082057099,0.3372633083244015,0.3396342400491778,0.3440097303871883,0.3408902405308266,0.3389441469013007,0.0,2.443156830373874,57.5409674938173,183.36560973002852,253.8369674273113,fqhc2_80Compliance_implementation_low_initial_treat_cost,76 -100000,95767,45389,430.05419403343535,5937,60.69940584961417,4704,48.54490586527719,1783,18.304844048576232,77.37657405990127,79.72159799274051,63.3458979718325,65.07911934704119,77.14412769474515,79.49077656088998,63.258497985776096,64.99489794987588,0.2324463651561217,230.82143185052928,0.087399986056404,84.22139716530808,177.9008,124.57336278526222,185764.1985234997,130079.63367888962,378.87453,247.0100871823039,394979.4814497687,257286.49449424536,383.99766,186.69024868832983,397242.0457986572,192087.53268944423,3085.26834,1430.639420669681,3187327.283928702,1459562.062787474,1082.2893,489.5789958727711,1113471.7073731036,494572.5701990556,1749.95054,752.0263544736928,1797678.4278509298,758358.6596170325,0.38266,100000,0,808640,8443.827205613625,0,0.0,0,0.0,32281,336.483339772573,0,0.0,35088,362.6196915430159,1504180,0,54013,0,0,6981,0,0,73,0.751824741299195,0,0.0,2,0.0208840205916443,0,0.0,0.05937,0.1551507865990696,0.3003200269496379,0.01783,0.3362193362193362,0.6637806637806638,24.14682149867736,4.2784942862422,0.3254676870748299,0.2468112244897959,0.2153486394557823,0.2123724489795918,11.173718916910827,5.658108045377037,19.371307174424064,12237.738753761018,53.75979245340058,14.035498127300071,17.380217371783825,11.221770378048529,11.122306576268148,0.5680272108843537,0.7855297157622739,0.6864794252122796,0.5932872655478776,0.1081081081081081,0.7463823305407464,0.901565995525727,0.8740740740740741,0.763265306122449,0.1666666666666666,0.498967856089649,0.7128851540616247,0.6190053285968028,0.5390625,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028461460548971,0.0050887489989761,0.007396659834818,0.0094579218984924,0.0116853795460092,0.0138593293347318,0.0160495967207431,0.018305631559603,0.0205072634150829,0.0227656590678772,0.0248339619547392,0.0270067747895709,0.0288366641993585,0.0306385169927909,0.0326933591936532,0.0347090865866641,0.0366865130727413,0.0390879478827361,0.041022122421823,0.0429580104973756,0.0583108940238378,0.0726804986195934,0.0868225180836565,0.1000588519662862,0.1123429727678947,0.1274681831635026,0.1394069189257959,0.1505075439977868,0.1605241517776093,0.1710293502621899,0.183558073410305,0.1961070717562537,0.2075155576831019,0.2178722659284628,0.2276290294169455,0.2377796005231772,0.2472168563038065,0.2561895115912672,0.2641535127038344,0.2721526958791807,0.2795526047931896,0.2861418317005307,0.2926563959468886,0.2985188998910427,0.3033699678183253,0.308505526189332,0.3135294558724287,0.3172522419531031,0.3213371266002845,0.3255844618204354,0.3237698305996235,0.3235577055218096,0.3222122200967706,0.3206196133912717,0.3184840030866029,0.3165205684825676,0.3143435557594066,0.3144824194738136,0.3158146283178288,0.3167919888813656,0.3175034175389974,0.3182661194854392,0.3193505868569157,0.3199055300565928,0.3224313631459057,0.3239194882196911,0.32374918316902,0.327501486651435,0.3312913501592747,0.3337160503602819,0.3367272727272727,0.3376939780731953,0.3399499060738885,0.3423621094045547,0.3446216997854277,0.3481176470588235,0.3489780469341408,0.3539348171701112,0.3582613390928725,0.3633633633633634,0.0,2.2395054906817102,57.47807665294624,178.25607056865215,250.214964660514,fqhc2_80Compliance_implementation_low_initial_treat_cost,77 -100000,95764,44787,424.5541121924732,5828,59.78238168831712,4648,48.08696378597386,1827,18.79620734305167,77.3313489084019,79.69786887324655,63.31030609897547,65.06343822619492,77.11059480647971,79.47527324641456,63.22965607243568,64.98371207335113,0.2207541019221963,222.59562683198908,0.0806500265397929,79.72615284379003,179.59634,125.75171374679564,187539.17964997285,131312.92981748207,380.97467,248.2493515588796,397358.24526962114,258764.42716901767,382.796,185.7238951007949,396565.212397143,191563.6335839948,3033.21228,1393.167875685537,3140513.2199991643,1428185.281280091,1106.07389,495.1951871411726,1146405.162691617,508505.00933667365,1783.10716,740.5384564894212,1835909.2769725577,751349.396242405,0.37751,100000,0,816347,8524.508165907857,0,0.0,0,0.0,32658,340.5350653690322,0,0.0,34978,362.1089344638904,1492739,0,53608,0,0,7034,0,0,58,0.605655569942776,0,0.0,0,0.0,0,0.0,0.05828,0.154380016423406,0.3134866163349348,0.01827,0.3431661750245821,0.6568338249754179,24.20923098137296,4.310676632925994,0.3207831325301205,0.241394148020654,0.2252581755593803,0.212564543889845,11.399390662951427,6.033376746625896,19.402087413463043,12036.344446411576,53.03202859274701,13.705522274999694,16.862201290680986,11.654184610892036,10.810120416174314,0.5679862306368331,0.785204991087344,0.6948356807511737,0.5778414517669532,0.1194331983805668,0.7336448598130841,0.8886255924170616,0.8507462686567164,0.768,0.1571428571428571,0.504756242568371,0.7228571428571429,0.6372819100091828,0.5181932245922208,0.1092544987146529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024620310236172,0.0046340894571929,0.006780005074854,0.0090225563909774,0.0112718468330993,0.0135450295851961,0.01556015539762,0.0177971553141305,0.0199347441418036,0.0221644099391605,0.0241220872989826,0.026300919504803,0.0283929527024245,0.030330825517881,0.0322560667210288,0.0343194532049757,0.0359827696895644,0.038093162739055,0.0400823267707532,0.0422338641642277,0.0571288399912318,0.0709636915350005,0.0846296665372955,0.097271436832974,0.1093891665085289,0.1249180397216523,0.136577291584878,0.1473241386655306,0.1583317304609861,0.1682277082193397,0.1800881475015894,0.1916130708763724,0.2042011319111885,0.2140105500470593,0.2234220549061048,0.2333525447774428,0.2424553686067413,0.2508215539749707,0.2593038032132159,0.2669477446925518,0.2744528419809955,0.2811299990634073,0.2878066121578386,0.293125390193536,0.298286159123253,0.3026783071914767,0.3081920020026285,0.3129303651660366,0.3172843827376554,0.3213446664730882,0.3204675842378862,0.3183099366157484,0.3177155881980499,0.3167951049152885,0.3153322759009176,0.3124914028947408,0.3108440963779328,0.3116349162148438,0.3125287925062703,0.3136699617062962,0.3151598975758368,0.3149974359985799,0.3163350610265842,0.3168619573708292,0.3181086857334966,0.3183226175911706,0.3186376161122631,0.3227671138198611,0.3256909768619452,0.3270983404306125,0.330950971912414,0.3332099809684923,0.3388673098609197,0.3417070217917675,0.3445300176301382,0.3454714136611388,0.3485142601164701,0.3546875,0.3611111111111111,0.3684601113172542,0.0,1.686564063501154,56.91540197208726,176.47329161871835,247.47955369523248,fqhc2_80Compliance_implementation_low_initial_treat_cost,78 -100000,95496,44773,426.6670855323784,5854,60.09675797939181,4553,47.164279132110245,1747,17.93792410153305,77.22623088476638,79.7154173778986,63.24095407219974,65.07707641376989,77.00575759612698,79.49537971311065,63.15915668225113,64.99780179702226,0.2204732886393969,220.03766478795228,0.0817973899486119,79.27461674762526,178.76386,125.19655396086029,187195.12859177348,131101.3591782486,378.42983,246.7791826821112,395760.77532043227,257900.9201245196,377.09204,182.8763130715132,392085.5219066767,189183.13561082672,2959.75664,1351.3427515981202,3067211.401524672,1382937.8315302432,1059.42771,461.5516966291288,1099131.963642456,473057.5590905677,1708.56256,718.2711221124605,1756531.3939850884,724497.4386115108,0.37704,100000,0,812563,8508.86948144425,0,0.0,0,0.0,32318,337.8780263047667,0,0.0,34350,356.9678311133451,1493437,0,53605,0,0,7060,0,0,80,0.8272597805143671,0,0.0,0,0.0,0,0.0,0.05854,0.1552620411627413,0.2984284250085411,0.01747,0.3453296253885163,0.6546703746114837,24.093332156673963,4.288478166334366,0.320667691631891,0.253898528442785,0.2090929057764111,0.2163408741489128,10.97559892162327,5.665346149578864,18.630963815639237,12003.576069547067,51.880546230571376,14.00260892267317,16.622220326183406,10.532464810195192,10.7232521715196,0.5679771579178564,0.8027681660899654,0.6835616438356165,0.582983193277311,0.1065989847715736,0.7399527186761229,0.9172259507829976,0.8452088452088452,0.7130044843049327,0.1354166666666666,0.5015225334957369,0.7306064880112835,0.6210826210826211,0.5432098765432098,0.0996216897856242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0045239230324484,0.0063861758076634,0.0087137773258769,0.0108731063691154,0.0128726494419813,0.0150103572485433,0.0170845850448572,0.019008256007857,0.0210651421077436,0.0230538676301527,0.0252827472753444,0.0272769397106523,0.0293432072280209,0.0314924833393604,0.0334938137391934,0.0355494237611643,0.0375463872516917,0.0396832838464343,0.0413812546988555,0.0557788523938118,0.0694846615468546,0.0827277985172722,0.0960034569254442,0.1082083637170666,0.1229993004176294,0.1350621458114042,0.1467544383748719,0.1575891948630614,0.1679691279063518,0.1806864682192638,0.1921512479255475,0.2035195603820489,0.2134643002006161,0.223304720082971,0.2338207840696951,0.2433496655256505,0.25223184093061,0.2601808153749929,0.2679081615090702,0.2746446211998237,0.2814738396970727,0.2878714192515272,0.2932277522770421,0.2983657701353936,0.3033477201617591,0.3077435323976931,0.3120728638401696,0.3164616164109493,0.3205542175052272,0.3187380135598714,0.3174611927541426,0.3167376767021246,0.3163426093241778,0.3148668958231031,0.3133820100625843,0.3113120736157385,0.3111773030971266,0.3118629550321199,0.3131958615257939,0.3139646147207264,0.3157217769862471,0.3168374939738833,0.3175586518462192,0.3180486868007874,0.3207390059849076,0.320589406610912,0.3218513517756775,0.324180256005611,0.3278194295688048,0.332133254340792,0.335773004508088,0.3397680977749922,0.339927514346119,0.338826143306795,0.3433096541283335,0.3407396134530512,0.3432896890343699,0.3502902958252695,0.3623853211009174,0.0,1.999509191729748,56.230957783917496,164.37185403401838,249.62943835644415,fqhc2_80Compliance_implementation_low_initial_treat_cost,79 -100000,95697,45205,429.0521123964178,5850,59.82423691442783,4611,47.46230289350763,1767,18.025643437098346,77.36399481233721,79.74822099345222,63.33329461681414,65.09726199831651,77.14289568081824,79.53232953308965,63.25107309532702,65.01999168159867,0.2210991315189687,215.89146036257037,0.0822215214871207,77.27031671784346,179.5387,125.75500237351716,187611.39847644127,131409.32565651712,382.06755,249.50789791032045,398528.971650104,260008.79642028525,390.35885,189.0395056083813,403414.4121550309,194074.39997279688,3025.17001,1391.5208032919772,3114409.9919537706,1407304.015060006,1090.80947,485.8944255491612,1122632.9143024336,490532.5296807448,1727.97964,724.7975176146305,1764140.1715832262,721488.0553652861,0.37942,100000,0,816085,8527.790839838239,0,0.0,0,0.0,32600,339.9166118060127,0,0.0,35598,367.58728068800485,1494069,0,53616,0,0,7111,0,0,68,0.6896767923759365,0,0.0,1,0.0104496483693323,0,0.0,0.0585,0.1541826999103895,0.302051282051282,0.01767,0.328,0.672,24.359372183973843,4.194750267747151,0.3231403166341358,0.2400780741704619,0.2194751680763391,0.2173064411190631,11.283434535393496,6.12389718432689,18.8162971244834,12111.101789689308,52.40330681927262,13.302309663830307,16.903340513093575,11.208704732966495,10.988951909382244,0.5723270440251572,0.8093947606142728,0.7026845637583893,0.5731225296442688,0.1157684630738523,0.7531746031746032,0.9339853300733496,0.8582089552238806,0.7931034482758621,0.1751152073732718,0.5043270665472993,0.7363896848137536,0.6452205882352942,0.5076923076923077,0.0993630573248407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023606650388547,0.0047156895555082,0.0068931210915292,0.0091977153078439,0.0115183459166853,0.0134584428551052,0.0157901179158676,0.0179235262878385,0.0203634950344164,0.0224864067827849,0.0242939475357384,0.0266614630940032,0.0286772269080436,0.030818847822279,0.0331802466587543,0.0349262805268926,0.0366598988978205,0.0385102320368602,0.0404677754677754,0.0424164122654385,0.057242819843342,0.0712192262602579,0.084906155250375,0.097180595429641,0.1098977548223885,0.1251546326351515,0.1373700954400848,0.1482159194876486,0.159060094588391,0.169274796887393,0.1820431970556267,0.1940051489518205,0.2052651037362446,0.2154315520125971,0.2258018390602314,0.2371205915561557,0.246448087431694,0.2549888138146578,0.2629680463707619,0.2708981871452115,0.2780494572191586,0.2838475923328658,0.2892669537646112,0.2951267430159567,0.3004820242590546,0.3053438873364273,0.3094812388251916,0.3136440430369777,0.3177771748258976,0.3217726650521217,0.3206591812614161,0.3183902050676696,0.3176741637750586,0.315118659707604,0.3150479971557241,0.3130471919709587,0.3106202637341861,0.3110661488757628,0.3111749116607774,0.3115541249488716,0.3133885038575778,0.3151964067609629,0.3164607163730483,0.3179301723368158,0.3192657032616771,0.319310219073172,0.3201321071662443,0.3250634338877925,0.3279170752206191,0.3319756406200569,0.3335295715967756,0.3380274261603375,0.3415355569540592,0.3449538485010298,0.3455541906831711,0.3528362468783446,0.3573411474398519,0.3648648648648648,0.3627260083449235,0.3668869024485037,0.0,2.738520825637057,54.631700984262665,173.88026442530577,247.3011472074845,fqhc2_80Compliance_implementation_low_initial_treat_cost,80 -100000,95668,45137,427.6665133586988,5765,59.04795751975582,4472,46.14918258978969,1765,18.072918844336662,77.31725194233033,79.72690716943818,63.30264576078415,65.08552503827903,77.09393493785588,79.50542804202364,63.21973928657454,65.0059020372965,0.2233170044744525,221.4791274145398,0.082906474209615,79.6230009825365,179.26238,125.56016513745097,187379.6671823389,131245.7301683436,381.43656,249.32042491718053,398115.0018815069,260017.6222309548,379.84764,184.06488999981303,393607.4026842832,189653.18658789503,2953.50096,1350.5505684062127,3050279.194715056,1374801.2599010123,1060.70534,464.39580741459866,1092099.6885060836,468830.8138087458,1726.99192,725.4024391859064,1770066.8562110632,727657.0616134165,0.37903,100000,0,814829,8517.257599197223,0,0.0,0,0.0,32593,340.0719153740017,0,0.0,34618,358.3747961700882,1494549,0,53636,0,0,6994,0,0,64,0.6689802232721495,0,0.0,0,0.0,0,0.0,0.05765,0.1520987784608078,0.3061578490893322,0.01765,0.3426275217319993,0.6573724782680006,24.29924000668389,4.266529685551989,0.3144007155635062,0.2419499105545617,0.2202593917710197,0.2233899821109123,10.861687797879474,5.643430923588461,18.847891827354157,12108.750765963385,50.97653192109284,13.232904743601662,15.914721607159892,10.992185231577285,10.836720338754011,0.5623881932021467,0.7902033271719039,0.6735419630156472,0.6,0.1221221221221221,0.7344913151364765,0.9044117647058824,0.8631284916201117,0.7615062761506276,0.1372549019607843,0.4986209010113392,0.7210682492581603,0.6087786259541985,0.5482573726541555,0.1182389937106918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002411176512304,0.0047761496729706,0.0070633366146726,0.0092979300673718,0.011436129623035,0.0134969950086584,0.0157917287250321,0.017979731938542,0.0205336498127724,0.0227032897230731,0.0251564583974556,0.0271172855997862,0.0291414042636416,0.0312287357980906,0.0332452027348026,0.0351163993792033,0.0369871249974084,0.0392452124787105,0.0413051168404186,0.0432398623996664,0.0575870282920305,0.0711017100013613,0.0838826839099764,0.0962461072300311,0.1085229610406051,0.1244946769107033,0.1370790571304246,0.1486853455161177,0.1590552022658045,0.1687819845723052,0.181639951740779,0.1944811310541927,0.2064188233245543,0.2165593940190026,0.226787091089327,0.2370666725773561,0.2459998661043047,0.2541616052548702,0.2626444799854811,0.2700202635405099,0.2768413868098053,0.2840072024881322,0.2898953796629426,0.295726045123953,0.3009341934229868,0.306134523178563,0.3101187422579797,0.3138546023110071,0.318184170353696,0.3215716243280278,0.3204027044101241,0.3192401203280174,0.3171928147752509,0.3159033537684818,0.3149103122352836,0.3129579105484197,0.3099748373925841,0.3092260732571879,0.3091026931145639,0.3106360235168359,0.3123982713139137,0.314007851182609,0.3153759114910737,0.315514235909355,0.3170214815528369,0.3172264524877438,0.3171328571835073,0.3209327106904441,0.3259088043706661,0.3310519444554338,0.3357607755677939,0.3390972259056914,0.3418765743073048,0.3442723040525071,0.3459007145543437,0.3465439962255249,0.3515253717614594,0.3567381626871712,0.3640789829591561,0.3579502637528259,0.0,2.3277467355997845,52.86187711091918,172.90864717001895,238.13368546454373,fqhc2_80Compliance_implementation_low_initial_treat_cost,81 -100000,95861,45344,428.7666517144616,5837,59.64886658808066,4540,46.82822002691397,1737,17.807033100009388,77.4717338221379,79.75955280233124,63.40399372213196,65.09122314741171,77.25860506729539,79.54626205299628,63.32391278995876,65.01297211181519,0.2131287548425149,213.2907493349592,0.0800809321731961,78.25103559652291,180.53618,126.38987861869926,188330.97923034392,131846.81113351547,378.52626,246.7367008235728,394354.4715786399,256875.1836675736,381.28584,184.3794610462444,394444.2786951941,189769.1541948329,2973.07905,1360.759923834372,3067690.5832403167,1385797.6842870116,1067.03993,471.0258508001386,1099839.42374897,478127.9019969436,1697.34474,714.5217068150039,1741138.1688069184,720076.0164978775,0.38027,100000,0,820619,8560.499055924724,0,0.0,0,0.0,32410,337.5512460750461,0,0.0,34858,360.2820750878877,1495698,0,53622,0,0,7160,0,0,39,0.4068390690687558,0,0.0,1,0.0104317710017629,0,0.0,0.05837,0.1534962000683724,0.2975843755353777,0.01737,0.3279973864750081,0.6720026135249918,24.390338686157296,4.241152279328692,0.3211453744493392,0.2392070484581497,0.2306167400881057,0.2090308370044052,11.050838426919984,5.760567699316208,18.221901265433228,12173.126628468905,51.18298557747063,12.881232013676016,16.54235141877546,11.435517556767207,10.32388458825195,0.5759911894273128,0.7707182320441989,0.700960219478738,0.6055396370582617,0.1285563751317176,0.7153225806451613,0.8916876574307305,0.8646616541353384,0.6965811965811965,0.119047619047619,0.5236363636363637,0.7010159651669086,0.6392823418319169,0.5793357933579336,0.1312584573748308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022876809393663,0.0043865425332536,0.0066215092579447,0.0088814453917986,0.0110661734818307,0.0133384883046588,0.0154734740444951,0.017564438641765,0.0198721483569225,0.0220895033952384,0.0243038130255328,0.026634258404611,0.0289691304124505,0.0310217100524745,0.0330371500432936,0.0350987701490071,0.0374136290289213,0.0394026385880548,0.0414083834324933,0.0434986211561475,0.0585677642691802,0.0726829880203215,0.086194248826291,0.0987454556916805,0.1101836042075085,0.1256263875673961,0.1373189404703836,0.148416472515665,0.1590668873111621,0.1691854233654876,0.1824207988980716,0.1942198780856859,0.2050494081876425,0.2154212342228239,0.2256516151708533,0.2358254831719075,0.2453406115969476,0.2546512019581644,0.2635590437037792,0.2707275803722504,0.2782723147795365,0.2848394358968377,0.290679827150582,0.2964703350312074,0.3018520090720549,0.3072853223087618,0.3128379981765271,0.3171189926121506,0.3208675657520798,0.3245764049673753,0.3223532255465435,0.3209411313308485,0.3200757575757575,0.3194811917634879,0.3184943152416576,0.3157718325309281,0.3141714807410788,0.3151581421157424,0.3155125594025798,0.3160058841252681,0.3167935379404046,0.3180008238363311,0.3186004448971954,0.3198030343359063,0.3221433336510054,0.3231349647277707,0.324582675389127,0.3273728075631297,0.3303158040218368,0.3343623007189746,0.3380325814536341,0.3385211968768013,0.3405011219147345,0.3443628378889982,0.3477524920067707,0.3519155497568497,0.3526020330754058,0.3571000599161174,0.3581445523193096,0.3619011976047904,0.0,2.060941316289483,54.29580988662464,164.7908404399747,247.40676420177917,fqhc2_80Compliance_implementation_low_initial_treat_cost,82 -100000,95749,45127,427.1793961294635,5841,59.80219114559944,4621,47.77073389800416,1810,18.52760864343231,77.34438518034166,79.69762401195354,63.33412346583962,65.07267339438472,77.12202667235682,79.47590715037803,63.25086629460991,64.99160613795212,0.2223585079848362,221.7168615755014,0.0832571712297109,81.06725643260404,178.69456,125.20688977888862,186628.1214425216,130765.74144783612,382.7743,249.53079175054387,399289.6427116733,260130.47838676523,385.17313,186.2552337889001,399083.9591014005,192048.45420067772,3016.47488,1390.3089806038192,3120781.4180826955,1422418.0937699804,1086.83709,477.7014339110499,1124122.789794149,487943.1366500423,1765.74316,740.5847155874912,1811160.116554742,747187.1257587469,0.38084,100000,0,812248,8483.096429205527,0,0.0,0,0.0,32683,340.8495127886453,0,0.0,35249,364.9855350969723,1496185,0,53733,0,0,6980,0,0,74,0.762410051279909,0,0.0,1,0.0104439733052042,0,0.0,0.05841,0.1533714945909043,0.3098784454716658,0.0181,0.3286793692509855,0.6713206307490145,24.29223831710653,4.268570346979876,0.3118372646613287,0.2518935295390608,0.2254923176801558,0.2107768881194546,11.257949827129025,5.89328254581635,19.19458628531893,12132.26236624437,52.60944159748245,14.03341974576671,16.302890823855414,11.607317526184907,10.665813501675412,0.5704392988530621,0.7903780068728522,0.6988202637057599,0.5777351247600768,0.1098562628336755,0.741501976284585,0.9086859688195992,0.8556430446194225,0.7429718875502008,0.1021505376344086,0.5059594755661502,0.7160839160839161,0.6424528301886793,0.5258511979823455,0.1116751269035533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025829585511121,0.0049983271318929,0.007406730993618,0.0096279820846409,0.0118856375948105,0.0141194914132725,0.0161635514971158,0.0183784886984029,0.020383974824003,0.0224905351478563,0.0246229199114681,0.0267676612166558,0.0287585597071706,0.0308029783421385,0.032907631682106,0.0349802106046357,0.0370458544664113,0.0390654166839507,0.0411249337448944,0.0433727410030727,0.057898088507031,0.0723927921140202,0.0852701795603289,0.0976833205388409,0.1098328676121685,0.126044200063445,0.1377053701169907,0.1490083840490275,0.15926689380427,0.1698544074447327,0.1817056366533178,0.194104921579232,0.2060950020113724,0.2169464847848898,0.2263364529148475,0.2361530882238976,0.246175305473414,0.2546783625730994,0.2630629608621667,0.269984658011037,0.2773639034773153,0.2844022743758336,0.2900519471298914,0.2949007003741725,0.3001166209091572,0.3062596361393771,0.3112926260930571,0.3152972952313004,0.3186954155544613,0.3233158158819024,0.322530261616556,0.3198976503604248,0.3186017689144274,0.3172394862682211,0.31555720653789,0.3131082468696838,0.3104590704457549,0.311594321818331,0.3124124739556648,0.3135753551795531,0.3147707916066113,0.3151852290211859,0.3157025139080604,0.3163892302536029,0.3164109470443942,0.3163252024054356,0.3173117943175678,0.3208566224957608,0.3239826294039364,0.3288518738845925,0.3321383191141768,0.3344293593551124,0.3354660644837536,0.3387509405568096,0.3429077683484099,0.3456296992481203,0.3453435114503816,0.3472734727347273,0.3486314625380149,0.3568384347152266,0.0,1.9495627139411589,55.68908745092004,173.41840649129858,249.9574145666093,fqhc2_80Compliance_implementation_low_initial_treat_cost,83 -100000,95670,45461,430.3438904567785,5820,59.65297376398035,4603,47.53841329570398,1793,18.3547611581478,77.28108161739658,79.6692265846236,63.29287913429015,65.05619355669391,77.05392905998441,79.44485976069056,63.20779430841459,64.97485113385065,0.2271525574121682,224.36682393303897,0.0850848258755618,81.34242284326376,178.23344,124.96396027722696,186300.24040974185,130619.79750938326,385.0479,251.28015893048044,401886.6624856276,262065.61233962703,391.72834,190.0148479162548,406450.5278561722,196185.6425316516,3018.01641,1394.6475149448988,3119666.36354134,1422929.97779614,1093.22975,487.8490871191145,1129939.7303229852,497159.6917728792,1754.41068,745.5385779318261,1798406.4388000418,748388.2205267048,0.38189,100000,0,810152,8468.192745897355,0,0.0,0,0.0,32838,342.62569248458243,0,0.0,35665,369.70837253057385,1492646,0,53539,0,0,7234,0,0,79,0.8257552001672416,0,0.0,1,0.0104525974704714,0,0.0,0.0582,0.152399905732017,0.3080756013745704,0.01793,0.3398201144726083,0.6601798855273917,24.235080551632933,4.279949063855236,0.3223984358027373,0.2394090810341081,0.2200738648707364,0.218118618292418,11.177416531841695,5.806191316318559,19.2214708350368,12231.442971294977,52.70633701960301,13.330369547370893,16.909171853552756,11.326266609364149,11.140529009315218,0.5731044970671302,0.8030852994555354,0.7028301886792453,0.5923000987166831,0.1095617529880478,0.734996102883866,0.93006993006993,0.8733850129198967,0.7131474103585658,0.125,0.5105421686746988,0.7221396731054978,0.6426618049225159,0.55249343832021,0.1053299492385786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678569619612,0.0045215381340037,0.0068806641160173,0.0094279241295933,0.0116144254825783,0.0140727465276363,0.0161816587474763,0.0182852125617674,0.0204446716074623,0.0226102621316492,0.0248333845996103,0.0269418347964474,0.0292578080811197,0.0313018391633609,0.0334599347727366,0.0355477433696944,0.0376439877351454,0.0396176281319411,0.0415990513044563,0.043943673716138,0.058892359768902,0.0727927626068018,0.0864517618902663,0.0989688552188552,0.1116597558530898,0.1268077993250177,0.1391825902335456,0.1502215405589638,0.1615255487720123,0.1722431010415548,0.1851276575089797,0.1966617894109359,0.2088593118621546,0.2190025625862408,0.2286400599422615,0.2388394095007819,0.2490080584770484,0.2575081671735947,0.2652780618622304,0.2729847819355726,0.2796186018490627,0.285868278908456,0.2926730935695398,0.2983524269279727,0.3038701592593043,0.3082922013820335,0.3126715032139232,0.3167822185970636,0.3212488326242607,0.3248922271296712,0.3235091696692441,0.3214147821290678,0.3197879858657244,0.3181528293135436,0.3169135839270277,0.3149316266863115,0.3124355864212212,0.3134490417043679,0.3134864929640155,0.3140850356549247,0.3152894346495428,0.315832291604659,0.3159556331951255,0.3173750898634076,0.3187842502957294,0.3195020746887966,0.3209901216239365,0.3243021863776699,0.3288684736491462,0.3321444140609519,0.3350447544186469,0.3391456434174263,0.3417363424907274,0.343429003021148,0.3450079387316708,0.3433356594556874,0.3454655747649378,0.3438995215311005,0.346680999731255,0.3386788850706376,0.0,2.245074530206693,56.27825535585328,176.14772082534134,243.4511946016678,fqhc2_80Compliance_implementation_low_initial_treat_cost,84 -100000,95734,45344,429.29366787139367,5871,60.21893997952661,4603,47.57975223013768,1809,18.55140284538409,77.3612597271838,79.7264968998842,63.34108899169471,65.08889031400557,77.13292325783121,79.49950012683334,63.255914239112215,65.00660382960095,0.2283364693525982,226.9967730508569,0.0851747525824961,82.28648440461939,178.13642,124.774333821401,186073.89224309023,130333.97333793744,382.56083,249.36142424787684,399110.1698456139,259976.55450028923,384.20796,186.2843790583133,398283.9847911923,192199.8519204344,3026.21327,1389.2923410355077,3128976.93609376,1419356.559526021,1114.05814,493.1060584885731,1151469.3421355004,503123.9736009938,1766.7628,743.6890455520618,1813590.0933837509,749249.3884273991,0.3829,100000,0,809711,8457.904192867738,0,0.0,0,0.0,32587,339.8792487517497,0,0.0,35072,363.3087513318152,1501814,0,53892,0,0,7094,0,0,75,0.7834207282679091,0,0.0,0,0.0,0,0.0,0.05871,0.1533298511360668,0.3081246806336229,0.01809,0.3411669367909238,0.6588330632090762,24.263878652866364,4.389941075868025,0.3195741907451662,0.2337605909189659,0.2309363458613947,0.2157288724744731,11.363388878668776,5.873588667502713,19.320424814823788,12198.808601659412,52.48699731714401,12.90726365492505,16.929321341774997,11.754960877424466,10.89545144301951,0.5781012383228329,0.7825278810408922,0.7362338545207342,0.5794920037629351,0.120845921450151,0.7403921568627451,0.9223300970873788,0.8648018648018648,0.740909090909091,0.1401869158878504,0.5159254807692307,0.6957831325301205,0.6833013435700576,0.5373665480427047,0.1155327342747111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297981179283,0.0046435234001135,0.0068295752065109,0.0090621856935315,0.0112580087460591,0.0135638785360786,0.0157139069606183,0.0178996273038239,0.0201314834316562,0.0219287469287469,0.0240533973116791,0.0264057926359574,0.0286431282204235,0.0307191495060418,0.0328153055538356,0.0348292652668796,0.0371037725102778,0.0392781536673446,0.0414487298137614,0.0435113310758009,0.0582314430998298,0.0721380797370707,0.0853971950362421,0.098985332001472,0.111077150084317,0.1264428565388355,0.1389156920336341,0.1501101169260886,0.1610167681298729,0.1714794091795828,0.1839283407260669,0.1952688962921299,0.206776970909249,0.2176507880987254,0.2274651216482151,0.2377295012118328,0.2473657802308078,0.2560060228779468,0.2645008444892823,0.2719146647133554,0.278668624345353,0.284554175478775,0.2906441808484217,0.296041369899089,0.3019387223104623,0.3067142154451549,0.3116373765004184,0.3163940884195544,0.3204544278246468,0.323109193810108,0.3225172868404767,0.3212759819208418,0.3200630222547337,0.3188769983969499,0.3170637514110866,0.3145363792258697,0.3125879543981152,0.3125542970478797,0.313831782073574,0.3145379950053514,0.3157589260639194,0.3183923058655901,0.3197392962675776,0.320554375768414,0.322029822029822,0.3234319125055467,0.3251941969385424,0.3299602799319084,0.333813758920097,0.3381615598885794,0.34325983177995,0.3457090044890414,0.3489201877934272,0.3506994328922495,0.3537300922045264,0.3559840112861509,0.3634708737864077,0.3657062260729397,0.363332404569518,0.3645045762037405,0.0,1.9080436862679364,56.307720243510246,172.5284065108487,246.8986926361821,fqhc2_80Compliance_implementation_low_initial_treat_cost,85 -100000,95658,44855,426.0699575571306,5838,60.06815948483138,4613,47.71163938196492,1758,18.064354262058583,77.2430810454354,79.64716697344011,63.27207635196621,65.04983967307871,77.01652824375444,79.42083351298118,63.18775562104675,64.96779463544081,0.2265528016809668,226.33346045893177,0.0843207309194653,82.04503763789717,178.85098,125.1952997182543,186968.95189111208,130877.8319266691,377.54414,245.8999671858735,394155.11509753496,256537.0909711561,377.6668,182.6954437199096,390957.31669071066,188123.6805289379,3035.27291,1395.8456181849656,3141600.378431496,1427929.04970919,1119.47395,495.1814089060507,1157161.1365489557,504670.77344900486,1726.05894,731.7233917862708,1774809.1325346548,738908.2243488729,0.37892,100000,0,812959,8498.588722323277,0,0.0,0,0.0,32345,337.5776202722198,0,0.0,34445,356.3423864182818,1496900,0,53733,0,0,6938,0,0,61,0.6376884317046143,0,0.0,1,0.010453908716469,0,0.0,0.05838,0.1540694605721524,0.3011305241521069,0.01758,0.3350759679790884,0.6649240320209117,24.29455694033456,4.3021079219657,0.3264686754823325,0.2326035118144374,0.220030349013657,0.2208974636895729,11.101238691142866,5.733911022405362,18.986127279119987,12083.379470527,52.69592725947923,12.96277981716922,17.118509696068788,11.299805108289236,11.314832637952,0.5623238673314546,0.7735321528424977,0.6952191235059761,0.5773399014778325,0.1285574092247301,0.7368827160493827,0.9009433962264152,0.8878048780487805,0.7044534412955465,0.1627906976744186,0.4941211938498643,0.6902927580893683,0.6231751824817519,0.5364583333333334,0.1194029850746268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044123912117339,0.0067104555191212,0.0087787927127891,0.0110565235523277,0.0130047354753297,0.0152128473107315,0.0172663780428034,0.0195414757853403,0.0218936244291068,0.0238434638143388,0.0259506865070807,0.0280648710908174,0.0298341403111156,0.0317699516948102,0.0340395611667752,0.0361726591876689,0.0381226192823855,0.040013313501763,0.0419711643714229,0.0562289703024096,0.0701245378274486,0.0831356163520692,0.0962856150469955,0.1084989813045635,0.1239321215714089,0.1369599626076888,0.1481185374693529,0.1587731216501021,0.1688859775348467,0.1815210003344517,0.193062706628367,0.2052625273636175,0.2159024956471271,0.2257172142439906,0.2361235923891939,0.2452205800147575,0.254437669758478,0.2619583503842131,0.2699395649132464,0.2773695556431237,0.2838757275186491,0.2903034753974082,0.2963482809088509,0.3016438922891595,0.3062506944530179,0.3105463117374895,0.3147860021425292,0.3187047183775221,0.3220211161387632,0.321186292095432,0.3195079618711774,0.317855277828744,0.3159693065006515,0.3151550370271035,0.3126803807184525,0.310722621826323,0.3113032024368157,0.3119694687842278,0.3126577520004296,0.3135768565194493,0.3139731141160818,0.3147720109266653,0.3161281643086168,0.3175280086736537,0.3181663481425242,0.3194823083766178,0.3234476659718274,0.3274145721547585,0.3310632160884544,0.3334099793055874,0.3370750481077614,0.3387106977921174,0.3402156457903189,0.3414310115771494,0.3455952380952381,0.3510952306975299,0.357625383828045,0.3647642679900744,0.3710667689946277,0.0,1.9846240954410443,57.26400429127848,171.06487644509195,247.3147163119896,fqhc2_80Compliance_implementation_low_initial_treat_cost,86 -100000,95815,45498,431.0076710327193,5986,61.33695141679278,4695,48.39534519647237,1870,19.15148985023222,77.44904619750217,79.7752857775517,63.38601454967061,65.10677782790665,77.21025930185824,79.53776166444666,63.297495880470976,65.02128531913515,0.2387868956439263,237.52411310503877,0.0885186691996366,85.49250877150882,179.31716,125.60996826488798,187149.3607472734,131096.35053476802,380.12484,247.53412534615856,396079.5282575797,257706.2543733524,389.77603,189.29312820053607,402740.9695767886,194567.6752235516,3077.92608,1423.1659132660686,3172937.473255753,1446672.1431820914,1118.15017,502.65002649722857,1153704.0651255022,511591.1105997316,1827.45752,773.4367311133728,1872238.626519856,777042.3045537698,0.3826,100000,0,815078,8506.789124876064,0,0.0,0,0.0,32447,337.9846579345614,0,0.0,35597,367.45812242342015,1501172,0,53793,0,0,7236,0,0,67,0.6992642070656996,0,0.0,0,0.0,0,0.0,0.05986,0.1564558285415577,0.3123955897093217,0.0187,0.3304042179261863,0.6695957820738138,24.145000905051308,4.300593036646225,0.318849840255591,0.2396166134185303,0.2187433439829606,0.222790202342918,11.12991049641051,5.91451581831394,20.01426441264685,12181.469712529552,53.19397402523786,13.532384690964918,16.754987285180338,11.32229429123631,11.58430775785629,0.5597444089456869,0.7866666666666666,0.698062792251169,0.569620253164557,0.1080305927342256,0.7396946564885496,0.9229024943310656,0.8721227621483376,0.7551867219917012,0.1645569620253164,0.4901033973412112,0.6988304093567251,0.6365280289330922,0.5127226463104325,0.0914709517923362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.0047337637983639,0.0068896938703032,0.0088784144817708,0.0111250088979732,0.0135929052162137,0.0158947014263429,0.0179017952826626,0.0199795605518651,0.0219275357870071,0.0241020648665266,0.0262520525451559,0.028453947368421,0.0303931965364934,0.0324976021286909,0.0346398611512872,0.036690506008135,0.0388747174350359,0.0409363408729622,0.0430061630715416,0.0574268993647051,0.0720491828989053,0.0851770723067087,0.0981665353296559,0.1105912601818775,0.1262708461034431,0.1380399639582339,0.1496634088757962,0.1607506748178258,0.1709983829686981,0.1839238668745631,0.1954908336664254,0.2062466752792765,0.2163846061518653,0.2264080526009593,0.2363037543793724,0.2454872440173272,0.2547586980920314,0.2634670892523629,0.2713324422204705,0.2780310988490886,0.2846575662116439,0.2906046445766072,0.2966938394970237,0.3018733036060488,0.3071051952361638,0.3118521013435126,0.316124532369539,0.3196912791523083,0.3235673145201588,0.3230684593296299,0.321217939925936,0.3201488345970233,0.3188944607758372,0.3185477903087351,0.3165190076091431,0.3136912075103172,0.314694110920526,0.3153682779712853,0.3169094138543517,0.3185335745053798,0.3187340279142913,0.3205387486187269,0.3208905330718488,0.3231207780386145,0.3251935675997617,0.325141723356009,0.3281025320412629,0.3316519546027743,0.3350446252270753,0.3386979450809238,0.3407124276689494,0.3446562244448638,0.3465564320388349,0.3495383455813077,0.3512298959318827,0.3507268553940321,0.3512799674928891,0.3533296642817831,0.3495811119573496,0.0,2.2770431130206377,57.07658385660951,171.50124149240182,253.25829490413267,fqhc2_80Compliance_implementation_low_initial_treat_cost,87 -100000,95808,45123,426.6553941215765,5872,60.05761523046092,4656,48.0126920507682,1844,18.881513026052104,77.3497797498425,79.68403631026314,63.33168066437421,65.06031563460208,77.12600344707371,79.46271653940506,63.248271648556525,64.98093317185436,0.2237763027687833,221.31977085807364,0.0834090158176863,79.38246274771643,178.23872,124.84796914031716,186036.9488977956,130310.18855879812,378.81699,246.64558549155447,394819.81671676686,256866.70615944397,386.63762,187.4389439333655,400215.08642284566,193105.62010307368,3050.93824,1406.809002017941,3148365.689712759,1432443.3295750178,1124.60257,494.427924631796,1159456.9868904476,501709.56979771546,1806.27548,754.4386154700572,1851146.6683366732,756084.8893824801,0.37995,100000,0,810176,8456.224949899799,0,0.0,0,0.0,32339,336.92384769539075,0,0.0,35280,364.89645958583833,1502209,0,53889,0,0,6987,0,0,70,0.73062792251169,0,0.0,0,0.0,0,0.0,0.05872,0.1545466508751151,0.3140326975476839,0.01844,0.3473238978363429,0.6526761021636571,24.26980384270551,4.279581948278564,0.3195876288659793,0.2484965635738831,0.2109106529209622,0.2210051546391752,11.20162563613845,5.732884012438842,19.46458948155634,12164.53056994719,53.00714913753949,13.991994509202527,16.874576737205796,10.842194312977954,11.298383578153198,0.5719501718213058,0.7873811581676751,0.7143817204301075,0.5743380855397149,0.1214771622934888,0.7478532396565184,0.9153674832962138,0.8624078624078624,0.7647058823529411,0.1323529411764706,0.5051851851851852,0.7062146892655368,0.6586493987049029,0.519053876478318,0.1187878787878787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0048262646131383,0.0072766760712038,0.0093773176604456,0.0117892381243006,0.0141744310371162,0.0165376890058014,0.0187011290092076,0.0211169712580236,0.0234600503592704,0.0255253716043054,0.027558165800768,0.0296851543381249,0.0316847383975368,0.0337208462704888,0.0356589307487238,0.0376063598534252,0.0394876050202261,0.0414350577160846,0.0433560317361154,0.0578514121169756,0.0712754499158205,0.0848514706190645,0.0980777517367497,0.1100101197503794,0.1250198267931351,0.1369880451040086,0.1485711244744824,0.1593851478379764,0.170011692393508,0.1818299371774011,0.1949498338618726,0.2065705738373674,0.2164977754457307,0.2259171662724822,0.2356043566418844,0.2447162273751869,0.253882572562779,0.2623966238981724,0.2702390219332387,0.2771969188776572,0.2842379677581511,0.2899200416351249,0.2962404214559387,0.3016481782654077,0.3066543551862111,0.3114899573797948,0.3150801622315741,0.3200491527616091,0.3235798301598185,0.3230278476923698,0.3227995320349597,0.3211850557872197,0.3193139879875534,0.3174683393780843,0.3154791079524568,0.3129886985976131,0.3152817652366499,0.3163700946070562,0.3155497606629992,0.3151218781031608,0.3162129569222861,0.3169328003683318,0.3187887990710553,0.3189307330195023,0.3208215113100971,0.3218348310772381,0.3246138905422762,0.3264274005092253,0.3295552931916568,0.3320052519581654,0.3340721975934135,0.3372472686173552,0.3368718497021536,0.3394400601277715,0.3411931148314077,0.3399541634835752,0.3427597272362615,0.3503926347143244,0.3551114527286702,0.0,2.268750656232767,56.016640447972506,174.27755801650807,251.4435005643342,fqhc2_80Compliance_implementation_low_initial_treat_cost,88 -100000,95803,45527,431.0512196904064,5909,60.446958863501145,4714,48.66235921630847,1815,18.57979395217269,77.41775944651599,79.7465844414669,63.37436231324406,65.09549786081809,77.19659249533345,79.52668462831603,63.293517200925926,65.01731345504795,0.2211669511825391,219.89981315086027,0.080845112318137,78.18440577013064,179.8291,125.89208207019443,187707.16992160995,131407.24410529362,377.59335,245.98605584743328,393594.5325302965,256222.84763057728,386.12815,186.5163098026068,399544.4401532311,191987.9354911913,3060.23494,1396.6305493176692,3157532.9269438325,1421334.2816285794,1106.72382,490.9702154881924,1139515.6101583457,496936.5361221048,1771.00768,732.7917813197564,1814164.775633331,735994.806648221,0.38283,100000,0,817405,8532.144087345909,0,0.0,0,0.0,32192,335.45922361512686,0,0.0,35213,364.1013329436448,1500982,0,53856,0,0,7118,0,0,68,0.7097898813189566,0,0.0,0,0.0,0,0.0,0.05909,0.1543504949977797,0.3071585716703334,0.01815,0.3467247499193288,0.6532752500806712,24.572759910219894,4.228932972652897,0.3207467119219346,0.2437420449724225,0.225074246924056,0.2104369961815867,11.225540793696592,5.928881181572443,19.17199864188212,12279.157513163414,53.373427824431324,13.732983686381797,16.999413674057763,11.84085790239348,10.800172561598282,0.5719134492999576,0.804177545691906,0.6944444444444444,0.5749293119698398,0.1129032258064516,0.7442596991290578,0.8990610328638498,0.8637532133676092,0.7568627450980392,0.1450777202072538,0.508838017965807,0.7482710926694329,0.6357969723953696,0.5173697270471465,0.1051314142678347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020858858433155,0.0043789849269662,0.0065651287150815,0.0091405821535211,0.0113377531928739,0.0137322366545869,0.0157476302109876,0.0180962684739119,0.0201966516077597,0.0223113767552298,0.0242722427224272,0.0265556673304728,0.0288745207281847,0.0308948278702026,0.0330470288607281,0.0352413807349872,0.037317989423465,0.039322406411014,0.0411680378957865,0.0433809444490713,0.0583417667372638,0.0716704996863892,0.0852497851198088,0.0981522915156671,0.1102790942601369,0.1259573838726375,0.1388956561344787,0.1513128521313915,0.1620078950176037,0.1726439145617756,0.1852584714321048,0.1977337049279495,0.2091503267973856,0.2194128756864158,0.2285014444041695,0.2382326918823269,0.2481390684198796,0.2569321269000202,0.2651335009171818,0.2729787817815987,0.2802864072063749,0.2864912813090875,0.2930857405942698,0.299059831104519,0.3042465985982102,0.3090533257868445,0.3136566847323859,0.3186591327534759,0.3225531365075263,0.3262866921153087,0.324935200977693,0.3239096091764544,0.3231141362434606,0.3216479681596631,0.3215689182175428,0.3199021331906109,0.3185730303365286,0.3189364419267166,0.3200687331994964,0.319749550863587,0.3190431695010278,0.3203633432295865,0.3212736675285678,0.3216278087702531,0.3224793942879049,0.3233935430291705,0.325158766160127,0.3290461885092001,0.3332169541233154,0.337755142326977,0.3412511332728921,0.3463226352244488,0.3500062680205591,0.354072055706933,0.3555242125058768,0.3570240076063703,0.3639597834493426,0.361077359254759,0.3591415376256452,0.3569513596323247,0.0,2.021668400431697,55.58589794227907,175.4787673189963,258.09332970067203,fqhc2_80Compliance_implementation_low_initial_treat_cost,89 -100000,95725,45003,426.4089840689475,5824,59.66048576651868,4534,46.82162444502482,1762,18.009924262209456,77.3893283971574,79.75205302046777,63.35181630130408,65.09469014193711,77.1750638439562,79.54105867963013,63.27160214698007,65.01846260379023,0.2142645532012039,210.9943408376438,0.0802141543240111,76.2275381468811,179.18076,125.5020479229794,187182.82580308177,131106.86646432948,382.45436,248.9315286207412,398982.78401671455,259496.9324844516,378.58278,183.58442168870556,393063.6824236093,189807.3323639936,2947.64918,1351.2925960372145,3045571.7524157744,1377923.1925173309,1074.88452,476.6662502726047,1107519.895534082,482585.6884540139,1722.43132,719.8802359461597,1762821.4781927394,719720.7049461141,0.38032,100000,0,814458,8508.310263776444,0,0.0,0,0.0,32736,341.4259597806216,0,0.0,34497,357.86889527291726,1497837,0,53744,0,0,7043,0,0,79,0.8252807521546096,0,0.0,1,0.0104465917994254,0,0.0,0.05824,0.1531342027766091,0.3025412087912087,0.01762,0.3334426229508196,0.6665573770491803,24.62869931282507,4.320567424156291,0.3182620202911336,0.2434936038817821,0.2232024702249669,0.2150419056021173,11.275089938202878,5.856433300720831,18.69228975195423,12185.777125138791,51.5204240027527,13.439928338389423,16.503687366624472,11.037261961099318,10.539546336639464,0.5621967357741509,0.792572463768116,0.7075537075537075,0.5385375494071146,0.1107692307692307,0.7488151658767772,0.9118279569892472,0.8701298701298701,0.7180616740088106,0.1375661375661375,0.4899020807833537,0.7057902973395931,0.6483931947069943,0.486624203821656,0.104325699745547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0046216060080878,0.0070803282513212,0.0094432541656935,0.0118539302997031,0.013975123669157,0.0163765693787705,0.0185404379502459,0.0204869874421408,0.0226442509388206,0.0247258940465211,0.0269424523171945,0.0288532675709001,0.0310862695447199,0.0331769195070386,0.035177281511259,0.0370121130551817,0.0388979939007945,0.0405271965657384,0.0428464279017438,0.057359759408546,0.0717013907056078,0.0848367877821599,0.0973145188425302,0.1085272135018606,0.1236820119081612,0.1361061608961303,0.1479064419627173,0.1586240051279312,0.1686967896892625,0.1813061971679319,0.1939081243036852,0.2058375910425046,0.2167528619381362,0.2265421301033037,0.2374005892647482,0.2468722447294115,0.2557893671341648,0.2644465876212628,0.2719536359367304,0.2789847950511649,0.2859564023143007,0.2919085052308056,0.2967538063774777,0.3016029024547098,0.3066397598070581,0.3113928165122704,0.3156737940059204,0.3206519630036867,0.3245753890345618,0.3238905007522029,0.322757351931684,0.3211658336609199,0.3200190410247533,0.3186034794463709,0.3167854472202298,0.3140317420290311,0.3140854963328378,0.3151691412827185,0.3163183637172077,0.3173093066204041,0.3175053153791637,0.3189685770957302,0.320515105605561,0.321947360851431,0.3224536317480054,0.3236193712829227,0.3270742358078602,0.3311647648204843,0.3362814465408805,0.3421207325344788,0.347283872331431,0.3453052526012285,0.349777811252542,0.3562371806824538,0.3607038123167155,0.3608340888485947,0.3642357642357642,0.3652993348115299,0.3669511249030256,0.0,2.145577993772392,55.52940141483188,164.71466265480623,246.4284376329096,fqhc2_80Compliance_implementation_low_initial_treat_cost,90 -100000,95683,45043,426.81563078080745,5851,60.07336726482238,4561,47.19751680026755,1801,18.540388574772948,77.35982293729873,79.73720536673599,63.33991942654043,65.09067787856912,77.12930668503681,79.50466869413756,63.25371307645711,65.00541308959498,0.2305162522619213,232.5366725984281,0.086206350083323,85.26478897414336,179.96352,126.06086306106346,188082.83603147892,131748.21343505476,377.24387,245.1654647059258,393790.3075781487,255752.82412333,380.84411,184.18799515251283,395140.5892373776,190190.9771107316,2985.86547,1373.114318312324,3093824.305257987,1408309.47849913,1050.8603,466.4128541653109,1088440.517124254,477637.8061154647,1756.0669,743.448253904467,1810181.4115360093,754837.810472446,0.37964,100000,0,818016,8549.21981961268,0,0.0,0,0.0,32280,336.87279872077585,0,0.0,34818,361.0672742284418,1495434,0,53643,0,0,7201,0,0,53,0.543461220906535,0,0.0,2,0.0209023546502513,0,0.0,0.05851,0.1541196923401117,0.3078106306614254,0.01801,0.3349133703824779,0.6650866296175221,24.310367191163404,4.285844742181585,0.3146239859679894,0.254330190747643,0.2139881604911203,0.2170576627932471,11.126485011223927,5.783728657618079,19.24422908315892,12110.335648566848,51.904331843446975,14.015353644716996,16.232751796483164,10.902836212993288,10.75339018925352,0.5639114229335672,0.7732758620689655,0.689198606271777,0.5778688524590164,0.1232323232323232,0.7296875,0.8900862068965517,0.8618925831202046,0.7122641509433962,0.1549295774647887,0.4992380371837854,0.6954022988505747,0.6245210727969349,0.5405759162303665,0.1145431145431145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024810629076031,0.0047029728058706,0.0068076903566174,0.0090593325343787,0.0113876687815194,0.0140058018219756,0.0162320789900039,0.0185283434681467,0.0207256532309138,0.022925362140928,0.0251910586596184,0.0270736086175942,0.028881534318663,0.0308786886596239,0.033089221248066,0.0349022282855843,0.0369262303567361,0.039059096849136,0.0411161127340395,0.0431855603493194,0.0574771480804387,0.0716043178272659,0.0844842785777255,0.0974319049773279,0.1101256077368459,0.1253676703980362,0.1374303454863875,0.149021153313593,0.1599568117677242,0.1700743793669704,0.1826224703118601,0.1950749371913714,0.2065925933987006,0.2158071012652685,0.2254430114869106,0.2358689149365181,0.2450073118183543,0.2541995547460028,0.2627621326740084,0.270479700573443,0.2773556318887848,0.283984982631782,0.290554609123604,0.2954398486336311,0.3002680965147453,0.3051842552248726,0.3096487939007624,0.313872509150061,0.3181524213576159,0.3225270377209179,0.3211783846288303,0.3205824521841957,0.3194203878163153,0.3180775059536696,0.3163685974434261,0.3147094801223241,0.3115488055687391,0.3115744541126252,0.3116865347449075,0.3121626934486579,0.3117632728022338,0.3113921549254026,0.312316715542522,0.3133044333214158,0.313994813178369,0.3149053463698772,0.3163360858091427,0.3171771639966141,0.3201832616374637,0.3244141861937935,0.3252897068847989,0.3286891784099973,0.3311187041255378,0.3328492815652705,0.3359992472713586,0.3403166289727413,0.3439412484700122,0.3378894472361809,0.33244039646397,0.3353658536585366,0.0,1.76627583265775,56.536295899185546,163.72703425158147,250.63228900862907,fqhc2_80Compliance_implementation_low_initial_treat_cost,91 -100000,95849,45504,430.3852935346221,5896,60.13625598597794,4607,47.44963432065019,1825,18.63347557095014,77.34109898624328,79.63240499441484,63.34986309044478,65.04442726086967,77.1090828453309,79.40558129177887,63.26134933242955,64.96135700966789,0.2320161409123784,226.8237026359685,0.0885137580152246,83.07025120177514,179.85946,126.07247837558538,187648.76002879528,131532.3877928673,381.6081,249.45337758845787,397524.0012937015,259645.96144817155,385.471,187.3541943658322,398747.56126824487,192816.9896972573,3042.34612,1409.3959653263432,3134225.3335976377,1430555.8590348808,1110.48997,495.28306444791616,1143620.4029254348,501770.29958363273,1790.31702,763.1987898595504,1828831.850097549,759375.2114067422,0.38249,100000,0,817543,8529.489092217967,0,0.0,0,0.0,32576,339.22106646913375,0,0.0,35175,363.5823013281307,1490710,0,53528,0,0,7300,0,0,77,0.8033469311103923,0,0.0,0,0.0,0,0.0,0.05896,0.1541478208580616,0.3095318860244233,0.01825,0.3393702072116169,0.6606297927883831,24.01993107722176,4.288492066718041,0.3132190145430866,0.2383329715650097,0.223138701975255,0.2253093119166485,10.964419461870628,5.6432250825229415,19.50183124085587,12244.250754245832,52.62396561266621,13.252044933889367,16.414750257745606,11.53452267304868,11.422647747982555,0.5663121337095723,0.7969034608378871,0.6902286902286903,0.5943579766536965,0.1223506743737957,0.723583460949464,0.9385342789598108,0.8168316831683168,0.7201492537313433,0.1184834123222748,0.5040896697970312,0.7081481481481482,0.6410009624639076,0.55,0.1233373639661426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682395828059,0.0047623390177422,0.0072320441428556,0.0094117408166994,0.0118614437013396,0.0139013270373687,0.0162800411585521,0.0182606477939301,0.0204379711151512,0.0226277670935799,0.0247679921332431,0.0271689521133116,0.0292419884963023,0.0312683273142574,0.0334480555612802,0.0355568858567196,0.037464066345418,0.0393004051267704,0.0413625556743737,0.043365621716105,0.057815644846753,0.0713658597767465,0.085149178679182,0.098313131525324,0.1103773684265958,0.12632045973126,0.1391366997944523,0.1504976182374957,0.1612985848754562,0.1714742043712684,0.1846342618504327,0.1972764834404136,0.2086001630877956,0.2196433842420002,0.2288427469492402,0.2384545494836679,0.2478127929295183,0.2566635538203625,0.2644852281884526,0.2713650735462585,0.2785067925663635,0.2855004152095346,0.2922044887190468,0.2981812953777586,0.3029916554312575,0.3076240150926645,0.312057270155941,0.3164048088543986,0.32105699052746,0.3245248152059134,0.3242034957313296,0.3222908555627399,0.3215216992966581,0.3202970082068057,0.3195242490100926,0.3175537869377866,0.3160322769860016,0.3173913758781238,0.3176367659924862,0.3194314837412964,0.3198071817274558,0.3210543029533185,0.3213353540456344,0.3220003597769383,0.3228866677960359,0.3253564688613965,0.3252423020842268,0.3277870741641145,0.3285598961075427,0.3322743338231206,0.3356133150934792,0.3394081079645077,0.3432845241100732,0.3434220532319391,0.3455951707225052,0.3473971951509389,0.3543234526186454,0.3597180261832829,0.353967821107172,0.3590718904526436,0.0,2.3978294975639467,56.98877053803694,170.10128299236294,246.8943900192692,fqhc2_80Compliance_implementation_low_initial_treat_cost,92 -100000,95656,44957,426.95701262858574,5794,59.45262189512419,4571,47.3467424939366,1786,18.39926402943882,77.31769350596971,79.74091297043378,63.289715480586615,65.08192846359496,77.09916483472674,79.5207934292009,63.208273277169,65.00164899554461,0.2185286712429786,220.1195412328758,0.0814422034176161,80.27946805034958,179.14248,125.41107634105326,187277.8288868445,131106.33555767886,378.02937,246.3848875619568,394766.8206908088,257144.0030546508,379.24066,183.702126958962,394013.8726269131,190132.24263743675,2965.47961,1367.532539932901,3074100.986869616,1403586.779640485,1079.36879,480.2608751126698,1118590.9822698005,492275.94203465496,1738.20674,729.2813655596859,1792187.588860082,740461.5544692846,0.37858,100000,0,814284,8512.62858576566,0,0.0,0,0.0,32327,337.49059128543945,0,0.0,34684,360.1760475035544,1495722,0,53656,0,0,6937,0,0,63,0.6481558919461403,0,0.0,0,0.0,0,0.0,0.05794,0.1530455914205716,0.3082499137038315,0.01786,0.3353047478232298,0.6646952521767702,24.316072534004903,4.233909162155792,0.3082476482170203,0.2553051848610807,0.2231459199299934,0.2133012469919055,11.156594566007824,5.886106489352529,18.926853875287943,12063.061760481503,51.98952898532908,14.073502846987694,15.914883632527554,11.498557761186424,10.502584744627407,0.571866112448042,0.778063410454156,0.7111426543647977,0.5843137254901961,0.1107692307692307,0.7294761532447225,0.9101123595505618,0.8662952646239555,0.7159090909090909,0.1327014218009478,0.5106318347509113,0.6966759002770083,0.6580952380952381,0.5383597883597884,0.1047120418848167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894886133398,0.0044517908570964,0.0067208121827411,0.0089126922021565,0.0109577054951316,0.0130399348003259,0.015291861342909,0.0174909837656698,0.0196186791931472,0.0218126652862912,0.0238977570189395,0.0258390227852266,0.0280297803544397,0.0302345732499845,0.0323597177306869,0.0343857034944484,0.0365681700362882,0.0385042846014022,0.0403151114024954,0.0421828723981145,0.0566719963214931,0.0703583403185247,0.0837534660952861,0.0969583350886801,0.1092771529647816,0.1246544730515457,0.1364080765143464,0.14886155289302,0.1598861776441767,0.1705622032696728,0.1834480377985372,0.1953640589950042,0.2066122004357298,0.2164932647026612,0.2253386085365719,0.2358330467961445,0.2450129077681295,0.2539696840018919,0.2618642143505904,0.2688002016660364,0.2765403227673713,0.2827391746908308,0.2891617624421262,0.2937494003645783,0.2984726140675163,0.3032786885245901,0.3072572572572573,0.31185927602961,0.3161943739315132,0.3207442523802606,0.3196631862579993,0.3182687413155035,0.3172868369905073,0.3152757724516315,0.3146524222865198,0.3122063212673146,0.3099208860759493,0.3105595150323584,0.3118133038071714,0.3129520052596976,0.3136984514469932,0.3140089975050586,0.3141664590082232,0.3154228414233738,0.3172622739634524,0.3195932308647725,0.3200316527243952,0.3231339102284754,0.3252819156341361,0.3282364532019704,0.3298253572238603,0.3302116402116402,0.3310530940128028,0.3320968962906889,0.3367022272131761,0.3436948074885199,0.3477595962685426,0.3482178614337204,0.3477310005467469,0.3571156047310187,0.0,1.7288185139184302,56.454800527661,169.23817775028684,244.62463189057308,fqhc2_80Compliance_implementation_low_initial_treat_cost,93 -100000,95713,44755,422.7220962669648,5979,61.41276524610033,4720,48.76035648240051,1846,18.95249339170228,77.34880342590687,79.7062083310792,63.338894218876014,65.07715397015444,77.11684537994543,79.47500030237173,63.25375010337613,64.9940163778768,0.2319580459614343,231.2080287074707,0.0851441154998795,83.1375922776374,180.2713,126.13300791660131,188345.67927031856,131782.52475275178,382.40995,248.64259020720635,398977.23402254656,259218.9699374649,385.73911,186.72493971572072,399455.18372634856,192253.5923287061,3090.32303,1412.9316208977557,3195120.8613250027,1443018.3397687082,1144.62854,507.37566518236696,1181040.976669836,515530.3644836231,1808.07408,754.9795527162925,1858890.0358363024,764345.8482645599,0.37681,100000,0,819415,8561.167239559934,0,0.0,0,0.0,32669,340.73741289062093,0,0.0,35117,363.28398441173096,1491255,0,53573,0,0,7122,0,0,82,0.8567279261960236,0,0.0,1,0.0104479015389758,0,0.0,0.05979,0.1586741328521005,0.3087472821542064,0.01846,0.3403781979977753,0.6596218020022246,24.32903587677901,4.407897563874685,0.3281779661016949,0.2370762711864406,0.2141949152542372,0.2205508474576271,11.253051189632332,5.792022441642331,19.67768864958861,12056.806049986944,53.51765958182799,13.266291758362955,17.622236278604138,11.22069545046962,11.40843609439127,0.5603813559322034,0.7721179624664879,0.7017430600387347,0.559841740850643,0.1229586935638808,0.7284046692607004,0.8997555012224939,0.8694581280788177,0.7530864197530864,0.1409691629955947,0.4975254730713246,0.6985915492957746,0.642169728783902,0.4986979166666667,0.1179361179361179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004439849166768,0.00674750139516,0.0089293877426629,0.0113571660972832,0.0135186033491118,0.0158092694710876,0.0180871695416964,0.0202953349343416,0.0223632362724527,0.0246294815816985,0.0266947195566274,0.0287976147637896,0.0311325708049787,0.0331638179136193,0.0353275470138458,0.0373361495930918,0.0394675409563927,0.0417957622008276,0.0439366944852519,0.0579973476186,0.0720930962671494,0.0845135435681165,0.0965105147437853,0.1090955113061086,0.1247223573710151,0.1376204218478122,0.148856668369954,0.1594487768400811,0.1689746532656848,0.1820316455014487,0.1929896684156434,0.2042911360744695,0.2139529797703663,0.2236316629077507,0.2337794717248714,0.244415654038599,0.2525157020328223,0.2603434772244861,0.2683343068870334,0.2747557983426693,0.2815321637426901,0.2877331692074614,0.2930978710148921,0.2978493448455924,0.3038422213188465,0.3086645081444626,0.3130196018610327,0.3172967521721141,0.3214850545627076,0.3196571305541351,0.3179311577760358,0.3167485811657677,0.3151955613991996,0.314134569662387,0.3118177503559563,0.3102045983195405,0.3096065573770492,0.310727812468011,0.3117842234828213,0.3116467816134944,0.3128586358527399,0.3139415737855753,0.3148992268847477,0.3149278846153846,0.3159513199384984,0.316204179513532,0.3206388206388206,0.3257823200927194,0.3295720926536613,0.3329225432470674,0.3364181020648336,0.3380021646399694,0.3425142329589167,0.3439188548677599,0.3451539475260572,0.3426878702837543,0.3499689376682543,0.3444506726457399,0.3494351382937281,0.0,2.0245646275829285,56.679303427900585,170.5192523616843,262.2531674205758,fqhc2_80Compliance_implementation_low_initial_treat_cost,94 -100000,95638,44970,426.04404107154056,5820,59.484723645412906,4550,47.010602480185696,1749,17.879922206654257,77.26744378178137,79.68315343105853,63.28338998351626,65.0696297947692,77.04331804146514,79.46267660871334,63.19936314469911,64.98980762188442,0.2241257403162251,220.47682234519075,0.0840268388171452,79.822172884775,177.42164,124.35268567088912,185513.74976473788,130024.34771836417,375.83326,245.2462801243911,392424.36060979945,255881.3757339041,381.18506,185.07398519884683,395518.7268658901,191035.79272191724,2966.47878,1381.2607348727954,3066449.507517932,1408930.4825203312,1079.2133,486.8754461806898,1115329.0219368872,495974.9432032137,1711.94252,728.0840406801963,1751896.2337146322,728039.9265588088,0.37927,100000,0,806462,8432.443171124449,0,0.0,0,0.0,32020,334.2290721261423,0,0.0,34819,361.0280432464083,1504225,0,53945,0,0,7089,0,0,75,0.7842071143269411,0,0.0,1,0.0104560948576925,0,0.0,0.0582,0.1534526854219949,0.3005154639175257,0.01749,0.3376047313947757,0.6623952686052242,24.18338232645919,4.35354279273849,0.3171428571428571,0.2518681318681319,0.218021978021978,0.2129670329670329,11.423511035389932,5.84218077004364,18.71056325156197,12161.323511188442,52.09417590780622,13.728307796457612,16.63740502809065,11.031572976747292,10.69689010651066,0.5756043956043956,0.7923211169284468,0.7110187110187111,0.5645161290322581,0.1289989680082559,0.7412040656763096,0.908653846153846,0.854679802955665,0.8240343347639485,0.1383928571428571,0.5108529501681442,0.726027397260274,0.6547733847637416,0.4848484848484848,0.1261744966442953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022493768618153,0.0046136686270533,0.007421621182586,0.0095215836110885,0.0118312495549293,0.0141463315272742,0.0163957827762709,0.0185810983266802,0.0208897841491221,0.0232050875055042,0.0252704989487718,0.0273143772856144,0.0294523084519792,0.0313443447259688,0.0335363336085879,0.0354403159440067,0.0372338221890794,0.0392659560113345,0.0410988828094118,0.0432683786348044,0.0575982441471571,0.0721752063345762,0.0851474958780966,0.0976791205088244,0.1095285857572718,0.1254262416604892,0.1381533526643936,0.1494660783937592,0.15944803979248,0.1697150651387084,0.1822299877046528,0.1946701332466688,0.2068695311479692,0.2169987853320639,0.22719716402629,0.237929582770158,0.2467213572185947,0.2557242031121662,0.2642364106988783,0.2705121886926524,0.2777192474674385,0.2845227929392773,0.291214320385476,0.2962669737536587,0.3015344211268633,0.3069149329977049,0.3108214701573827,0.3149128387835602,0.3190009197963493,0.3234781230183893,0.3229225665506918,0.3219986503050586,0.3195983867783512,0.3182212832460278,0.3174726060028585,0.3153205649180378,0.3132862695327992,0.3130828845396033,0.3133550822416178,0.3144188205054976,0.315204349456318,0.3159135482081657,0.3163141106354403,0.3177925359450817,0.3179520508376661,0.3187898421987668,0.3194891821783872,0.3220775954222474,0.3243699251291785,0.3270319853234426,0.3277558150225246,0.3278300618445818,0.3312264572559535,0.3358254971481424,0.3333965484543902,0.3332933269323092,0.334261407579273,0.3319713993871297,0.3268361581920904,0.3289578361177406,0.0,2.2249446468100555,55.99012553891351,171.44427096949565,242.7100954242106,fqhc2_80Compliance_implementation_low_initial_treat_cost,95 -100000,95835,45292,428.5595033129859,5828,59.60244169666615,4590,47.268743152293005,1797,18.312724996087027,77.40182060844235,79.71594132124845,63.36325590393732,65.07595795431799,77.16928905185412,79.4886037449547,63.27597231409023,64.99393583474277,0.2325315565882277,227.33757629374907,0.0872835898470896,82.02211957521399,179.77388,125.98497969686112,187586.64371054416,131460.08524950285,381.39111,249.1351287859798,397345.2809516356,259342.00216828907,387.05841,187.42758336627145,400766.504930349,193102.8189978673,2986.91859,1384.6984513758728,3076872.009182449,1405079.5936733666,1044.00017,472.9966573148715,1072924.0987113267,477173.5436099431,1756.90804,749.8833744523805,1792685.0106954663,746278.7052380356,0.38006,100000,0,817154,8526.665623206554,0,0.0,0,0.0,32607,339.5940940157563,0,0.0,35296,365.1797360045912,1493739,0,53586,0,0,6865,0,0,67,0.6991182762038921,0,0.0,0,0.0,0,0.0,0.05828,0.1533442088091354,0.3083390528483185,0.01797,0.3395203679369251,0.6604796320630749,24.037082335633325,4.217340713516779,0.3163398692810457,0.25359477124183,0.214161220043573,0.2159041394335512,10.839401536827936,5.613236547143548,19.20252391771364,12102.84416839703,52.4267719934696,14.073632257559373,16.438120708314308,10.87707897888405,11.037940048711866,0.562962962962963,0.813573883161512,0.6880165289256198,0.5493387589013224,0.0988900100908173,0.7369219105382866,0.9211087420042644,0.8585858585858586,0.7094017094017094,0.1545454545454545,0.4928156527055946,0.7410071942446043,0.6240530303030303,0.4993324432576769,0.0830090791180285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020454039166447,0.0044086795244707,0.0065738749340583,0.0088160313639456,0.0112239607161374,0.0132741561138482,0.0152983743566223,0.0176260461318636,0.0199317210785616,0.0222920483506135,0.0246630106093998,0.0268095414049349,0.0289150434291,0.0308793245469522,0.033056913587887,0.0350492880613362,0.0370473883609713,0.0392711962833914,0.0413416293587892,0.0432963510334922,0.0578860635390809,0.0717690844083885,0.0851208752056502,0.0969199092360702,0.108889825152728,0.1245088512400185,0.1372665345947263,0.1486887284865364,0.1593878073770492,0.1690555769807601,0.1815903272304812,0.1935002755952316,0.2045965770171149,0.2155283575565512,0.2256769980099612,0.2357891007329657,0.2450475170659884,0.2545822557067356,0.2632498411834105,0.2706628360822736,0.2775150050305883,0.2844601860943563,0.2906826862812341,0.2960322974818506,0.3014703204108641,0.3063514745374363,0.311441578907872,0.3146307359857633,0.3188615782664942,0.3226499670402109,0.3211792712942664,0.3201748357478626,0.3183058188261102,0.316519182544029,0.3149363637710577,0.313208816067007,0.3107092086558206,0.3104492763114808,0.3107110588315518,0.3108389554443989,0.3110754054256034,0.3120503065307812,0.3133599181577134,0.3141417294742006,0.3154518252543387,0.3162688116242864,0.3163713678242381,0.3193130366900858,0.323109668864929,0.326747540206267,0.3320451032099663,0.3362714384325386,0.3395585738539898,0.3379843785546371,0.3423791821561338,0.3402932551319648,0.34401093062092,0.3388011340623734,0.3420980553273076,0.337151584574265,0.0,2.3622283621353453,57.73895889671003,170.07179833867704,240.93818209079976,fqhc2_80Compliance_implementation_low_initial_treat_cost,96 -100000,95700,45589,433.75130616509927,5772,59.059561128526646,4501,46.50992685475444,1735,17.784743991640543,77.32145341825886,79.71081691859635,63.3143933609397,65.08121136639839,77.099607958635,79.4901761730676,63.2312766911157,65.00122068834968,0.2218454596238501,220.64074552875468,0.083116669823994,79.99067804871629,179.36248,125.69251413029666,187421.6091954023,131340.1401570498,382.16399,249.49754783322555,398779.25809822365,260151.8368163276,385.24353,186.58959908121463,399970.0731452456,192910.1791673252,2921.7894,1348.1503134508398,3019440.459770115,1375094.496813834,1023.82009,457.12590571164606,1060865.078369906,468710.9283311545,1688.66988,718.6785661532305,1731748.631138976,721412.8067208875,0.38341,100000,0,815284,8519.164054336468,0,0.0,0,0.0,32654,340.6478578892372,0,0.0,35129,364.4514106583072,1493192,0,53583,0,0,7138,0,0,70,0.7314524555903866,0,0.0,0,0.0,0,0.0,0.05772,0.1505438042826217,0.3005890505890506,0.01735,0.3408190224570673,0.6591809775429326,24.30824679183229,4.270920429343275,0.3197067318373695,0.2492779382359475,0.2226171961786269,0.208398133748056,11.16699291209524,5.882234683210598,18.57905992626922,12129.158957898895,51.26308356055797,13.479492306425325,16.291693446117314,11.200795959929115,10.291101848086216,0.5618751388580315,0.7691622103386809,0.665045170257123,0.5848303393213573,0.1311300639658848,0.7213771016813451,0.9063231850117096,0.8315217391304348,0.7325102880658436,0.1421800947867298,0.5006150061500615,0.6848920863309352,0.6078431372549019,0.5375494071146245,0.1279229711141678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0043707534732785,0.0067098424557414,0.0088210485665796,0.0111814260133485,0.0134259636541439,0.015633764035204,0.0174802683302872,0.0195873970025966,0.0215470913985648,0.0235600483913961,0.0254574955328719,0.0275280320954634,0.0296978690078727,0.0318032143852514,0.0338410000310183,0.0357779158897866,0.0378188762272453,0.0397075494264349,0.0417539580792762,0.056529868284989,0.071299213834832,0.084906749509346,0.0978173935005893,0.1098344569999683,0.1253400226505361,0.1381729789402173,0.1500484645782516,0.1602988169158588,0.1701096166634489,0.1834751696649789,0.1955488682737792,0.2069693080721293,0.2172804935408713,0.2273042273042273,0.237189991142604,0.2466480758505298,0.2550357447956476,0.2627765367562848,0.2707171565652517,0.2776492632260751,0.284010523238819,0.290186285416716,0.2954294890231042,0.3010578990198341,0.30529050368747,0.3101218322367598,0.3145396066665819,0.3180284639547058,0.3225190085258345,0.3210678501781991,0.3201170104650204,0.3193700344512409,0.3186198142057584,0.3178255448013776,0.3152343630407495,0.3128885795193874,0.3131097810937115,0.3136385344886402,0.3134740896608295,0.3139856998465167,0.3151899233988786,0.3168267118558965,0.3185935717640743,0.3196967873902057,0.3214817523968756,0.3220639551513071,0.3255323169963462,0.3288720272596339,0.3333994525330265,0.3346818181818182,0.3358514656594137,0.3381486409427865,0.3418954148136789,0.3489381783860311,0.3481587757054041,0.349644952145724,0.3565716629075251,0.3678383614724606,0.3656745264785466,0.0,1.9787582723325592,54.94066924684108,169.30801876281305,239.69953494590368,fqhc2_80Compliance_implementation_low_initial_treat_cost,97 -100000,95705,44919,425.46366438535085,5874,60.20584086515856,4593,47.39564286087457,1791,18.36894624105324,77.3455376358958,79.7318913797356,63.32130932583449,65.08703356026672,77.11539785753892,79.50354768256695,63.235505167910986,65.00439136067138,0.2301397783568717,228.3436971686541,0.0858041579235049,82.64219959534103,179.04106,125.36231786942292,187075.9730421608,130988.26379961644,377.71275,245.8251323991242,394071.7830834335,256265.38049122217,379.35116,184.1928256680087,392507.3925082284,189504.43264694637,3002.68007,1387.9955312437553,3101440.185988193,1414292.6610352169,1084.4941,486.67560244307936,1118183.0729846924,493535.98290902126,1754.77214,743.738904777776,1801486.2964317435,748167.4549603577,0.37937,100000,0,813823,8503.453320098219,0,0.0,0,0.0,32206,335.90721487905546,0,0.0,34595,357.682461731362,1502191,0,53789,0,0,7065,0,0,71,0.731414241680163,0,0.0,0,0.0,0,0.0,0.05874,0.1548356485752695,0.304902962206333,0.01791,0.3312133072407045,0.6687866927592955,24.53138463178295,4.321162093127339,0.3217940344001742,0.2421075549749619,0.2164162856520792,0.2196821249727846,11.250846787228893,5.84704462931249,19.23841268425842,12161.250395659774,52.37431172680337,13.349720294557894,16.76899801417859,11.025451616467477,11.230141801599425,0.5649902024820379,0.7859712230215827,0.706359945872801,0.5613682092555332,0.1179385530227948,0.7311577311577312,0.9079903147699758,0.8581907090464548,0.7161016949152542,0.2008733624454148,0.500302480338778,0.7138769670958512,0.6482694106641721,0.5131926121372031,0.0935897435897435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023708446894092,0.0046351234849637,0.0068023757551144,0.0092176670257525,0.0114958899650036,0.0137706253819515,0.0158267218698374,0.0183409413518785,0.0203697643979057,0.0228157129398271,0.0247577047330906,0.0267563681183237,0.028925279789335,0.0309131751952682,0.0329821157676391,0.0349230307980191,0.0370017402834175,0.0389716871471272,0.0411185407805659,0.0430003334166875,0.0583388163047905,0.0728100470957613,0.085943075437639,0.098741661932117,0.1103704328748628,0.1259281196454635,0.1381900750156503,0.1498114975824831,0.1601428052247899,0.1704911346756536,0.1825550812745225,0.1951763648374974,0.2060846848808098,0.2169422165811386,0.2257847928499097,0.236376731301939,0.2453322917247921,0.2549046076313895,0.2638093185247371,0.2707396087319848,0.277521370487328,0.2842683496961197,0.2908256772255921,0.296442593124581,0.3018533792635001,0.3071132486254443,0.3114109050028105,0.3151368228664263,0.3189734188817598,0.3225734346648434,0.3215996779171979,0.3198914414167443,0.3189224113714253,0.3178759276604943,0.3166219878848916,0.3148323459353814,0.3132351081320349,0.3134811165845648,0.3141871113237203,0.3143122743036933,0.3150641206181115,0.3165414874853847,0.3168610148124803,0.3168788739958379,0.3178843007026662,0.3197161788490635,0.3211855479315548,0.3240365589371525,0.3263755122053725,0.3302828618968386,0.3364333348455292,0.3403288047787704,0.3427265326570229,0.3473779933313125,0.3506761833208114,0.3518385864374403,0.3541124215040588,0.3501116297950071,0.349400871459695,0.3574730354391371,0.0,2.346288082041362,56.18178646573669,171.1688285903172,245.6679901538565,fqhc2_80Compliance_implementation_low_initial_treat_cost,98 -100000,95612,45123,428.06342300129694,5915,60.72459523909133,4658,48.15295151236247,1873,19.171233736351088,77.23812690061078,79.66905637025376,63.25655152000609,65.05417251447888,76.99825774313054,79.43321730569846,63.1660015720106,64.9684036045617,0.2398691574802427,235.83906455529305,0.0905499479954912,85.7689099171779,179.07692,125.48173766144832,187295.21398987572,131240.350857056,381.40951,248.4661193174441,398379.6908337865,259335.30615136595,383.72648,185.87564400802177,398599.5063381165,192193.7094604273,3067.72655,1425.970400126418,3171723.559804209,1454651.6749219955,1076.10363,483.10686826976223,1109258.5658703928,489184.3387560239,1829.23704,781.1383642038799,1873971.070576915,782427.6504226356,0.38057,100000,0,813986,8513.418817721626,0,0.0,0,0.0,32567,340.0305400995691,0,0.0,35048,363.75141195665816,1489935,0,53553,0,0,7128,0,0,63,0.6589131071413631,0,0.0,0,0.0,0,0.0,0.05915,0.1554247576004414,0.3166525781910397,0.01873,0.3458427693303138,0.6541572306696862,24.120559086268724,4.288838821548348,0.3215972520395019,0.2340060111635895,0.2249892657793044,0.2194074710176041,11.248001730551245,5.90765615908268,20.106375391195083,12206.25312121724,53.418180910440576,13.193914286392014,17.162847189190963,11.608982181227116,11.452437253630489,0.55817947617003,0.7770642201834862,0.7096128170894526,0.5591603053435115,0.1017612524461839,0.7266666666666667,0.9388235294117648,0.8904761904761904,0.7276422764227642,0.1119691119691119,0.4894195888754534,0.6736842105263158,0.6391465677179963,0.5074812967581047,0.0982961992136304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432300956705,0.0048177862525737,0.0071886930387458,0.0093613734080074,0.0117142973457091,0.0139979828234359,0.0159620582385639,0.0181221971376326,0.0202219608244259,0.0223799573910193,0.0243682217867293,0.0265510367645547,0.0287769784172661,0.0306900888641471,0.0327471006784877,0.0349119956954978,0.0367406178726933,0.0387791778772737,0.0409527180362682,0.0430033488779693,0.0576366164493837,0.0717227502803307,0.0849776208787745,0.0977143459026753,0.1100491102075302,0.1258924220918162,0.1388487527091921,0.1503906874606914,0.1619123028526183,0.1722922888511698,0.1839734113152982,0.1964219885069933,0.2075895289783997,0.2177434379966025,0.2278158689565466,0.2381993540582235,0.2475052579764621,0.256160413212888,0.2651905427996315,0.2727471063751607,0.2790824495857796,0.2861381146147261,0.292766866433276,0.2985727855330712,0.3035522722839867,0.3077436747211436,0.3118626613753956,0.3168396461261537,0.3212424459029177,0.3247848537005163,0.3237113680570564,0.3223455358621832,0.3211083023823982,0.3200858045627156,0.3182258232674521,0.3169116856383551,0.3149457428385313,0.3144363876071193,0.315610626759113,0.3163466360965823,0.3166306695464362,0.3170325750970912,0.3165822811403601,0.317236122320868,0.3181785309644915,0.3180024564245956,0.3194543738740026,0.3222145154171133,0.3260754862992015,0.328326265308549,0.331249429588391,0.3332978723404255,0.3342155009451796,0.3354406276182496,0.3397484040555764,0.3365870869105021,0.3397252000603956,0.3440495207667731,0.3503132661400163,0.3550587343690792,0.0,2.1963331925674368,59.56076575543036,171.71056060385857,245.46805627987223,fqhc2_80Compliance_implementation_low_initial_treat_cost,99 -100000,95714,47538,453.3715026015003,5044,51.35089955492405,4035,41.51952692396097,1503,15.28512025409031,77.33641368994157,79.71027462722006,63.332022412709286,65.08884726082843,77.14156514375537,79.52092337838465,63.25815840092161,65.01997689538109,0.1948485461861935,189.3512488354077,0.0738640117876769,68.8703654473386,211.2891,148.70387181234997,220750.46492676096,155362.71790161313,502.54265,336.6468233069393,524433.9177131872,351109.4022890479,456.86834,224.4598023646503,472768.4351296571,231070.8683685244,2832.8756,1313.288067014304,2918362.716008107,1330729.210997664,907.42748,416.0317131960342,927854.5562822575,414458.990095934,1459.21802,624.8871470680195,1485718.1603527174,618830.2435690899,0.38053,100000,0,960405,10034.112042125498,0,0.0,0,0.0,43771,456.6625572016633,0,0.0,41329,427.3356039868776,1238024,0,44454,0,0,0,0,0,95,0.9925402762396306,0,0.0,0,0.0,0,0.0,0.05044,0.1325519669934039,0.2979777954004758,0.01503,0.3463294028147584,0.6536705971852416,23.51642102343289,4.127449486777473,0.3231722428748451,0.2646840148698884,0.2158612143742255,0.1962825278810409,10.95420652979158,5.762189442373303,16.099255440880693,11552.18485791216,46.01118773966257,12.966513161971132,14.741931838377662,9.69215174595525,8.61059099335852,0.5771995043370508,0.802434456928839,0.6993865030674846,0.5373134328358209,0.1161616161616161,0.7575236457437661,0.9271070615034168,0.8693181818181818,0.6682692307692307,0.1768292682926829,0.5041782729805014,0.7154213036565977,0.6365546218487395,0.4962292609351433,0.1003184713375796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0044320936317812,0.0066703893598659,0.0091165948451093,0.0112916187705359,0.0134947955920395,0.0157354245913174,0.0179191341637737,0.0202018136648502,0.0224290072272382,0.0244169955409768,0.0264570906440253,0.0283307967586689,0.0304050922349596,0.0324314842331187,0.03450200520941,0.0364790424121935,0.0383641795999668,0.0402336482595907,0.0424066917363722,0.0581638193893321,0.0713560793914854,0.0850077603926339,0.0978586521176952,0.1093837284062523,0.1247767314541784,0.1354245068003773,0.1456859971711457,0.1550227896203153,0.164000814218832,0.1757070902750871,0.1879379704126654,0.1991893331015072,0.208533601328323,0.2179574524196738,0.227755724853216,0.2358505280984001,0.2439377935591163,0.2518022306855277,0.2580932886596759,0.2647024841132293,0.2706628215157211,0.2757948693721359,0.2807116194486983,0.2856051604141911,0.2901999852409416,0.2939846618870375,0.2980357800378369,0.3015210452178183,0.30482629553482,0.3024463063329612,0.2998390181482959,0.2968296871920489,0.2945662535748332,0.2929482036195061,0.2896771329281548,0.2871858978416355,0.2879501271429743,0.2886988581084541,0.2893362098168916,0.2900422382536538,0.2909205523708212,0.2912115400650379,0.2916740753911807,0.2926770937963361,0.2948950505312257,0.2973688706646164,0.3018197818776126,0.3069917332212414,0.310255901606824,0.3141447368421052,0.3167094291212315,0.3201659221442246,0.3236967553436875,0.3239409984871407,0.3271375464684015,0.3306637917757585,0.3333333333333333,0.338411316648531,0.3358433734939759,0.0,2.478218935801029,50.15873519703352,148.112196947945,213.42928044756087,fqhc3_100Compliance_baseline,0 -100000,95602,47373,451.936151963348,5168,52.7604025020397,4096,42.17484989853769,1544,15.690048325348842,77.26635035352784,79.70363007065163,63.26822878755484,65.07178338238043,77.06589872036801,79.50776817230977,63.19237118497284,65.00032178237505,0.2004516331598296,195.8618983418603,0.0758576025820048,71.46160000537805,210.2804,147.8281084225368,219953.74573753687,154628.4475455918,500.19099,335.74673673869535,522514.7695654903,350505.550865772,454.93768,223.31747187112387,471315.1712307274,230082.6874273149,2870.0895,1341.512889796374,2956210.602288655,1357362.642200345,935.0556,426.95116313428775,960920.5142151838,429485.4167783079,1504.61744,643.2821907425458,1531267.274743206,637851.5347228956,0.37851,100000,0,955820,9997.897533524403,0,0.0,0,0.0,43515,454.46747975983766,0,0.0,41214,426.612413966235,1240755,0,44555,0,0,0,0,0,88,0.920482835087132,0,0.0,0,0.0,0,0.0,0.05168,0.1365353623418139,0.2987616099071207,0.01544,0.3450129773822766,0.6549870226177233,23.58393218821769,4.125627151382467,0.310791015625,0.27783203125,0.20849609375,0.202880859375,11.657131132201098,6.320436429738608,16.50248959620334,11532.493353131636,47.04231927463325,14.024515180036774,14.460593117571548,9.615132236805758,8.942078740219172,0.58984375,0.8101933216168717,0.6834249803613511,0.6147540983606558,0.1191335740072202,0.7708674304418985,0.934959349593496,0.83008356545961,0.7560975609756098,0.1746987951807229,0.5128740431454419,0.7151702786377709,0.6258205689277899,0.5701078582434514,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024626048887267,0.0048085214303829,0.007119136360405,0.0093541564991052,0.0115938193440687,0.0138100431117951,0.0156862344872632,0.0177493025964869,0.0200028648604403,0.0222973665334562,0.0243544480479494,0.0265094669325493,0.0284940757440062,0.0306017239246092,0.0326912152042555,0.0346426058524067,0.0364635157545605,0.03849069929271,0.0407247824819949,0.0427799678785224,0.0578211735680608,0.071425577398667,0.0845360391588412,0.0974510216979144,0.1088520157585103,0.1243194000127115,0.1352302198035797,0.1457282143733398,0.15610649025338,0.1653252237827614,0.1778051069613903,0.1886409956203113,0.199529493770149,0.2093372338910254,0.2187365659549608,0.2277986709710342,0.2360235956562542,0.2439076576576576,0.252485202394883,0.2587881776788889,0.2646840837502316,0.2708816297857394,0.2765733230714581,0.2815881880610251,0.2855806381065779,0.2902911543821139,0.2940027300164051,0.2973014256619145,0.3007653160327881,0.303202152352817,0.3003618655582011,0.2971215703524495,0.2952070023359883,0.2931922816031405,0.2902995932183259,0.2875292390955373,0.2850323253718603,0.284594315330239,0.2854656816747138,0.2862419700214133,0.286801079298456,0.2873036261239008,0.2884450306722777,0.2897256757661659,0.2911921579933689,0.2930513595166163,0.294080783911582,0.2972037869971377,0.3016663743202947,0.3049724195404579,0.3084400835831743,0.3123013350286077,0.3147611244169923,0.3162903103995166,0.3220921590486807,0.3233504913430042,0.326336454243431,0.3274935297630897,0.3315349339088211,0.3324656005950167,0.0,2.5316393987595527,52.90573790192667,153.04248965061572,208.70777648224595,fqhc3_100Compliance_baseline,1 -100000,95716,47573,453.362029336788,5204,53.29307534790422,4062,41.97835262652013,1539,15.796731998829872,77.34534288058313,79.71362987968814,63.32656324425341,65.07435467370544,77.14162406158785,79.51167877988006,63.24798345526115,64.99870905363935,0.2037188189952843,201.95109980808468,0.0785797889922577,75.64562006609776,211.13532,148.48176728609488,220584.72982573445,155127.02536690942,501.83222,336.6168416411026,523824.3344895316,351215.6901529401,456.35403,222.84489270138877,474031.9382339421,230738.05565855064,2861.44097,1333.5200443215017,2956812.800367755,1360674.1827144604,950.82741,435.5223087722143,981835.5969743824,443527.02344743686,1496.85794,654.4990053935077,1536533.0979146643,658410.4366064658,0.38159,100000,0,959706,10026.578628442476,0,0.0,0,0.0,43603,455.0545363366626,0,0.0,41233,428.0789000794016,1236080,0,44401,0,0,0,0,0,104,1.0865477036232187,0,0.0,0,0.0,0,0.0,0.05204,0.136376739432375,0.2957340507302075,0.01539,0.3466764597869996,0.6533235402130003,23.782118403508072,4.088316365982584,0.3008370260955194,0.2732644017725258,0.2223042836041359,0.2035942885278188,10.919013070945097,5.715463369481265,16.55297040170002,11560.075677891144,46.23669209612403,13.49458760727782,13.633019302303088,9.87542155666771,9.233663629875416,0.5753323485967504,0.7891891891891892,0.676759410801964,0.584717607973422,0.1281741233373639,0.729059829059829,0.9149888143176734,0.8552631578947368,0.7330097087378641,0.1549295774647887,0.5131396957123098,0.7043740573152338,0.6176470588235294,0.5408895265423243,0.1188925081433224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.004804086514098,0.0068787792703218,0.0087345114767418,0.0109011775712339,0.0129099257781081,0.014933284405166,0.016873717628084,0.0191360170097928,0.0212302054436949,0.0232403173887191,0.0252721298007804,0.0274629199152455,0.0298450570733918,0.0322497420020639,0.034267816163245,0.0362069679771324,0.0381913094014965,0.0404986691066378,0.0427474233787346,0.0576089567515065,0.0717350804847926,0.0850498966389288,0.0980324074074074,0.1111568372956831,0.1269354104710601,0.1376473086314895,0.1474178703822063,0.157907113462669,0.1679414699035583,0.180092896940436,0.191165163148832,0.2019764480529374,0.2105856718967272,0.219773320556455,0.228875855110707,0.2369114331003996,0.2447930145941871,0.252120111256173,0.258394528520203,0.2647698609214819,0.2706160250713317,0.275447046710612,0.2809302437037214,0.2859745875950535,0.2903110519570147,0.2942221777271646,0.2980029745636671,0.3005584131220605,0.3032676458157227,0.3013802027172741,0.2983243607925209,0.2960365724605985,0.2939764610624331,0.2925161980621767,0.2890184913054127,0.2858993192121183,0.2866657938663961,0.2871977022824221,0.2872703365435872,0.2877082479221796,0.2890268825656343,0.289334389196849,0.2912692753364827,0.2920485627909209,0.2917164372890158,0.2922568060385039,0.2968638076551745,0.3007785346865008,0.3044910766817023,0.3084221941080788,0.3153433024431339,0.3181818181818182,0.3230315853105637,0.3279679940454038,0.3283319657718908,0.3334340078526125,0.3332000799520287,0.3298969072164948,0.3224191063174114,0.0,1.7333480866345246,51.39399852025002,146.85358372326158,216.4807386755587,fqhc3_100Compliance_baseline,2 -100000,95671,47138,449.1956810318696,5019,51.24854971726019,3921,40.49293934421089,1560,15.908687062955336,77.2498286400838,79.6478958213699,63.26585613190741,65.03861806438627,77.04566465416409,79.447545187873,63.18881496430365,64.96573310079692,0.2041639859197204,200.35063349689608,0.0770411676037596,72.88496358934538,210.90674,148.23624071596802,220449.5615181194,154943.3424585191,499.11874,334.83793674006546,521176.4066436015,349463.78000059846,444.11046,216.82375799091432,461614.3136373613,224605.07066023472,2775.28698,1289.7635574914118,2864882.2631727485,1312277.2066384074,889.64953,400.8061313510814,919907.213262117,408992.4402556776,1512.82952,646.9087690893246,1543793.646977663,643626.2097297687,0.37863,100000,0,958667,10020.434614459971,0,0.0,0,0.0,43454,453.6588934995975,0,0.0,40198,417.5664516938257,1235459,0,44458,0,0,0,0,0,81,0.8466515454003825,0,0.0,1,0.0104524882148195,0,0.0,0.05019,0.1325568496949528,0.3108188882247459,0.0156,0.3474446987032799,0.65255530129672,23.906618441634127,4.158290901283307,0.306044376434583,0.2662586074980872,0.2216271359347105,0.2060698801326192,11.22211898492191,5.933778056813043,16.710301395722333,11495.376000939204,44.831205810658375,12.670444216944736,13.552991920750063,9.794817394338518,8.81295227862506,0.5814843152257078,0.7998084291187739,0.715,0.570771001150748,0.1126237623762376,0.7341092211280215,0.9075,0.8792569659442725,0.7067307692307693,0.1397849462365591,0.5206847360912982,0.7329192546583851,0.6545039908779932,0.5279878971255674,0.1045016077170418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387454921188,0.004381027716085,0.0066178784218592,0.0089819142450721,0.0112906999216771,0.0136170126087222,0.0158155565525961,0.017879205595548,0.0198200040908161,0.0218248481682899,0.0237250235916793,0.025845155060658,0.0280190154757984,0.0301175015460729,0.0321611464442058,0.0343479475006981,0.0364855342783718,0.0388197306809805,0.0406908390989959,0.0426463688024607,0.056642216788916,0.0707837634048257,0.083922836331577,0.0967738541184393,0.1089195635197028,0.1238027706928848,0.1351959816071447,0.1453204595349233,0.1549702597458171,0.1643641363900049,0.1763436451330966,0.1878212775187073,0.1983599049093803,0.2080902031325407,0.2172958057395143,0.2275530271885868,0.2358939344757726,0.2441233531853456,0.2516074700413105,0.2586533711673004,0.2645774795067691,0.2705822939421699,0.2768058757814171,0.2812913469171738,0.2854322552341027,0.2893952694766256,0.2927420164691705,0.2962045361667347,0.2997038422570337,0.3020882960139749,0.2992655397742615,0.2964127167948824,0.2938976016713485,0.2912811156001564,0.2886973864380544,0.2857230392156862,0.2828584995251662,0.2832271204257276,0.2840977077314918,0.2862020881006865,0.2870351268730894,0.2885756089844986,0.2889735432016075,0.2893765519092678,0.2910079645804759,0.2922273601080687,0.2935610889209937,0.2995164560910934,0.3025724927768302,0.3081897401522022,0.3107120296002166,0.3131859475922911,0.3179720628585682,0.3224760612229511,0.3270124558468116,0.3254617722702829,0.3275261324041811,0.3270084779975777,0.3293282359366466,0.3313298271975958,0.0,1.8682480713068803,48.978806177612775,149.8614572539396,202.27606125521376,fqhc3_100Compliance_baseline,3 -100000,95730,47565,452.5436122427661,5189,52.86743967408336,4128,42.37960931787318,1540,15.585500887913923,77.32698317968122,79.6842656033428,63.31555014592704,65.06038417737848,77.12259715171342,79.48661094802044,63.23783386348461,64.98809438655807,0.2043860279678,197.6546553223528,0.0777162824424309,72.2897908204061,210.23992,147.9533559807327,219617.59114175284,154552.7587806672,502.59835,336.844849257154,524299.4776976914,351152.6055125395,461.34156,226.29896143666943,476649.0337407292,232455.94402866537,2946.08869,1369.740374480867,3027324.109474564,1380663.3808428557,966.09886,435.18203040508064,989724.6317768724,435126.4602581014,1501.91884,647.2605937991151,1521942.504961872,637535.0771781304,0.38091,100000,0,955636,9982.617779170583,0,0.0,0,0.0,43745,456.21017444897103,0,0.0,41784,431.2963543298861,1238640,0,44495,0,0,0,0,0,92,0.9505902016086912,0,0.0,0,0.0,0,0.0,0.05189,0.1362264051875771,0.2967816534977838,0.0154,0.3501565665868484,0.6498434334131515,23.632040107041817,4.189518707278357,0.3015988372093023,0.2725290697674418,0.2148740310077519,0.2109980620155038,11.401474972634771,6.132793018741781,16.61019610929043,11609.407815503351,47.20605820844583,13.733847588284313,14.153090025665268,9.910146108688473,9.40897448580778,0.5864825581395349,0.816,0.7076305220883534,0.5907553551296505,0.1125143513203214,0.7674609695973705,0.9339019189765458,0.8898305084745762,0.7511737089201878,0.1160220994475138,0.5108210237031948,0.7317073170731707,0.6352413019079686,0.5400593471810089,0.1115942028985507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002127551795755,0.0040863093427429,0.0063942512636258,0.0085541287386215,0.0109534706331045,0.0132477979736265,0.0156524044540522,0.0178531327195149,0.0201238706512407,0.0222003868947093,0.024433489458958,0.0267099171602492,0.0286275235393281,0.0308600024712714,0.0330922932505338,0.0350909823615115,0.0370738474599082,0.0391477532052611,0.0410967446888122,0.0433604900714687,0.058316890601021,0.0729418411223753,0.0863694027112318,0.0981529954692148,0.111056065604874,0.1262990960511709,0.1380648856176224,0.1482230692247088,0.158920860233443,0.1684609357390492,0.1804669311028714,0.192306026079799,0.202010859511866,0.2110877699730847,0.219851832282069,0.228763023719796,0.2369446957765043,0.245168701292851,0.2538191565485047,0.2603742880390561,0.2662451947570747,0.2713654943021444,0.2766196982804593,0.2816032641305652,0.2858098411694598,0.2894409018587269,0.2935590162496711,0.2969066388191995,0.3007022908676272,0.3037523749208359,0.3014924569690608,0.2995006946259336,0.2970846178751918,0.2946954813359528,0.2927278397362598,0.289358053799164,0.2865549807792701,0.2872387509220556,0.2873927797957061,0.2879221726216942,0.2890241397979949,0.2907210401891253,0.2909673098656398,0.2900082502731509,0.2916067491132202,0.292823563024337,0.2959172100935639,0.3001657337627818,0.3060164528722811,0.3115947732997481,0.3181674708030843,0.320454187036745,0.3236850295673825,0.3276938115647793,0.3281090605582862,0.3321670165616981,0.33398761890382,0.3438624550179928,0.3492717779609783,0.3446023818670764,0.0,2.921634004443032,52.16482533142251,152.88002696931608,212.71821037751545,fqhc3_100Compliance_baseline,4 -100000,95760,47876,456.234335839599,5227,53.38345864661654,4153,42.784043441938174,1562,15.94611528822055,77.39144353273707,79.72998348447445,63.36142006586866,65.08697355764653,77.19640389455444,79.53805411167414,63.28779650145169,65.0169226217943,0.1950396381826351,191.92937280030264,0.0736235644169696,70.05093585223676,210.18492,147.90194813351775,219491.35338345863,154450.65594561168,506.79843,339.86456554461586,528659.7953216374,354334.6691626836,459.3492,224.79223174944784,476077.1929824562,231914.2119584097,2911.20297,1340.0988963583625,3001314.1499582287,1360653.2047000169,960.89663,431.186730337572,985284.8266499582,432136.643953368,1522.35128,640.9887296266783,1555847.8070175438,640543.6028525698,0.38206,100000,0,955386,9976.87969924812,0,0.0,0,0.0,44039,459.2836257309941,0,0.0,41648,431.296992481203,1241512,0,44502,0,0,0,0,0,89,0.929406850459482,0,0.0,3,0.031328320802005,0,0.0,0.05227,0.1368109720986232,0.298832982590396,0.01562,0.3397880891487029,0.660211910851297,23.88631090987256,4.116054961194388,0.3262701661449554,0.2547555983626294,0.2152660727185167,0.2037081627738984,11.154018463096545,5.935414291277684,16.547093234287683,11575.382357829074,47.09755843693903,12.869480023517273,15.22262368191239,9.837898919816263,9.1675558116931,0.5730797014206598,0.7835538752362949,0.6811808118081181,0.5973154362416108,0.1111111111111111,0.7478632478632479,0.910958904109589,0.8535911602209945,0.6859903381642513,0.1533742331288343,0.5045256453234999,0.6935483870967742,0.6183282980866063,0.5705967976710334,0.1010248901903367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207192612992,0.0043981880276052,0.0067774598729733,0.0092219254324047,0.011499628880235,0.0135778845370898,0.0156613001834114,0.0179770236904931,0.0203904422355933,0.0227449455676516,0.0247131147540983,0.0268692547603414,0.0290379260385733,0.0310817903934625,0.0329453968188518,0.035089350273732,0.0371742595160722,0.0390471054323702,0.0407879008367548,0.0427712788674882,0.0575648452585981,0.0716542848174113,0.0854550222921584,0.0985687394180311,0.1108041711038242,0.1264169697995093,0.1364094297803747,0.1465516324294422,0.1569544556570025,0.1664272851997942,0.1784068891280947,0.1890538655362221,0.2002130041188041,0.2089623981297384,0.217826679563841,0.2271706296956084,0.2364742860964355,0.2441479085231612,0.2518361517885478,0.2589952749779766,0.2641012307158953,0.2696055521802122,0.2753194859851753,0.2806838998575208,0.2853002873737435,0.290320199771198,0.2950707040423724,0.2981947622679888,0.3021598551474392,0.305876000842815,0.3025972979506325,0.3001385592580906,0.2981985650299771,0.2955297774963299,0.2931863579196567,0.2897791317593298,0.2866301231767634,0.2871673469387755,0.2870661388695401,0.2871506990460287,0.2882913165266106,0.2895778753914945,0.2905563444992064,0.2919371027099364,0.2924240605114659,0.2932549794581101,0.2942026521591295,0.2986508905374526,0.3033228401539,0.307655823880479,0.3105263157894737,0.3138481106576925,0.3160901500408061,0.3197881195611048,0.3212956068503351,0.3307665383269163,0.3354665872897752,0.3407202216066482,0.3395772009633396,0.349420127197905,0.0,2.262079387147779,50.7554671104155,152.69018469000332,220.8821295475496,fqhc3_100Compliance_baseline,5 -100000,95728,47027,447.8000167140231,5127,52.30444593013539,4028,41.49256225973592,1533,15.638057830519807,77.37264048070351,79.73333034160497,63.34029949113111,65.08257284595919,77.17318415783208,79.53725199712989,63.26509910218249,65.01128148865341,0.199456322871427,196.0783444750831,0.0752003889486232,71.29135730578184,210.24542,147.8948951183897,219627.92495403645,154494.9180160347,497.90164,334.0524123198733,519527.9750961056,348367.6912153288,449.56361,220.7142071687436,466483.8082901554,228068.6762010477,2853.27261,1339.3224629896856,2941627.945846565,1360234.4485814266,955.2433,435.3512618615748,984201.6233494902,441167.8660912831,1496.60718,642.4040621069665,1528812.3641985627,641312.8314438787,0.37772,100000,0,955661,9983.087497910748,0,0.0,0,0.0,43332,452.0412000668561,0,0.0,40836,423.3662042453618,1245898,0,44685,0,0,0,0,0,82,0.8565936820992813,0,0.0,1,0.0104462644158448,0,0.0,0.05127,0.1357354654241236,0.2990052662375658,0.01533,0.3515625,0.6484375,23.50124215322413,4.218448268018014,0.3152929493545183,0.2651439920556107,0.2058093346573982,0.2137537239324727,11.742173279482518,6.347326496573428,16.463815125496527,11523.779095747685,46.17178955386391,12.985180239903393,14.4570413845308,9.204018443841532,9.52554948558818,0.5841608738828202,0.8108614232209738,0.7086614173228346,0.5886610373944512,0.1149825783972125,0.7621753246753247,0.9452954048140044,0.8602150537634409,0.7162790697674418,0.175531914893617,0.505722460658083,0.7103109656301145,0.6458797327394209,0.5439739413680782,0.0980683506686478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088607594936,0.0043476938980268,0.0066952737453969,0.0090083685407864,0.0111744908438316,0.0134576623165095,0.0157995596509826,0.0181990772873882,0.0203009363372449,0.0224590281403228,0.0246990792954251,0.0267043121149897,0.0286989336870572,0.0306085666910409,0.032725659516956,0.0347992351816443,0.0367866313260995,0.0387424019251913,0.0404427814156532,0.0424756270310807,0.0571571770160069,0.0710683268808203,0.0844255247761444,0.0977486283660213,0.1097395136041154,0.124779313042467,0.135461632285093,0.1454551258858833,0.1550717054470511,0.1643164294982467,0.1763838035752746,0.188664344288898,0.1996411288130063,0.2092346726743804,0.2184604889641969,0.2282210084312921,0.2366499977675581,0.2435825264580049,0.2510960677858295,0.257986103148577,0.2638687947777173,0.2699107278662439,0.2758122401601383,0.2805460259578245,0.2846569848696603,0.288788906009245,0.2918340026773762,0.294881084035643,0.2987311975374109,0.3018082134008119,0.3008159589197618,0.2972739133420312,0.2950116694317127,0.2932892781392933,0.2909271680417878,0.2875581110839246,0.2848002274989336,0.2847590953785644,0.2855708182266932,0.2870743707703511,0.2884217973302552,0.28900883218842,0.2902835948406993,0.2914399911180193,0.2932553420078787,0.294978160295676,0.296359017781541,0.3024340203301315,0.3066948653052734,0.311123261990314,0.3146693008845584,0.3184629901446844,0.3198054984103235,0.3247484607298393,0.3274459034584797,0.3268332554880896,0.329062405788363,0.3316683316683316,0.3322475570032573,0.3253878168747635,0.0,2.238783714675719,53.65598313260836,145.5624505165666,204.8571443218798,fqhc3_100Compliance_baseline,6 -100000,95746,47516,452.1859921041088,5166,52.75416205376726,4129,42.57096902220459,1559,15.958891233054125,77.33281654085012,79.69915572099667,63.319784280511655,65.07120040215746,77.1349142062043,79.50302224833032,63.2449567894606,64.99912579306906,0.1979023346458177,196.13347266634665,0.0748274910510602,72.07460908840346,211.48754,148.80857508659375,220883.25360850585,155419.4994052324,500.43391,335.41134020928314,522016.85710108,349664.3146731003,456.33567,223.8727438900791,473377.55102040817,231288.954638006,2901.7851,1343.947363157159,2992849.831846761,1366471.5600687307,937.1065,424.2699041803856,964426.858563282,429095.94848100486,1521.19242,647.636899543342,1558674.1378229898,650849.4249736251,0.38201,100000,0,961307,10040.14789129572,0,0.0,0,0.0,43505,453.7735257869781,0,0.0,41317,428.18498945125646,1237196,0,44401,0,0,0,0,0,88,0.9086541474317466,0,0.0,1,0.0104443005451924,0,0.0,0.05166,0.135232061987906,0.3017808749516066,0.01559,0.3543510324483775,0.6456489675516224,23.822012989160783,4.190956258890186,0.3274400581254541,0.2593848389440542,0.2056187938968273,0.2075563090336643,11.212039700405668,5.935769886459993,16.752255779529776,11634.271079664446,47.04350518700053,13.12407601631168,15.15065794846167,9.444418916086535,9.324352306140645,0.5730201017195447,0.8207282913165266,0.6723372781065089,0.558303886925795,0.1213535589264877,0.75,0.9406593406593406,0.8489010989010989,0.7424242424242424,0.1407035175879397,0.499141778235496,0.7321428571428571,0.6072874493927125,0.5023041474654378,0.1155015197568389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0042802227338654,0.006487968321657,0.0091379433020603,0.0112216660562405,0.0133841264667535,0.0152663192567739,0.0174068402246043,0.0198359951739228,0.0221685217231033,0.0244212512046586,0.0265019663411678,0.0288925218750321,0.0312876548677123,0.0332019562122118,0.0349781903127777,0.037096490228772,0.0391448733914487,0.0411138377074408,0.0433364932859687,0.0584298987368201,0.0728708934923624,0.0862634885013475,0.0991063919259882,0.1111485881125293,0.1262993158434582,0.1368423285361275,0.1475462179507647,0.1580971097771986,0.167124227865477,0.1792527993109388,0.1902304446608244,0.2008286301503931,0.2112260293442372,0.2195140729660467,0.2292319445520876,0.2384411121524523,0.2465229328892289,0.2542470976747353,0.2610174149005599,0.2678255233950953,0.2739382872126235,0.2795200985385034,0.2838783926345066,0.2880422894640904,0.2919184942151615,0.2961520642115676,0.2996793648370104,0.3029310054527322,0.3061752514718694,0.3037238482457793,0.3006891997853989,0.298208551630894,0.2957122019554323,0.2936543319958389,0.2909508146561615,0.2877623925139099,0.2874250516038137,0.2877440457937238,0.287857219118118,0.2887154301506974,0.2896479678322229,0.2911685547975214,0.2919696666444281,0.2933081231152171,0.293565370749799,0.2954906409529211,0.2995589201363906,0.3019935062668016,0.3060942375291283,0.3073651827723489,0.3106068601583113,0.3153658993075051,0.3196955997588909,0.3215147577501392,0.328335480848073,0.3314182038100998,0.3302605210420841,0.3331523214770567,0.3391304347826087,0.0,2.096367553134985,53.1341083139488,148.04608206189332,216.83259780675516,fqhc3_100Compliance_baseline,7 -100000,95778,47164,448.2971037190169,5139,52.45463467602163,4049,41.679717680469416,1547,15.776065484766857,77.34910350822409,79.67809915318686,63.34642956891118,65.06705319184923,77.15172883737634,79.4856358032345,63.272175548799446,64.99747637799835,0.1973746708477506,192.46334995236225,0.0742540201117307,69.57681385087255,210.11782,147.8965717845317,219379.8158240932,154415.7862813294,498.14986,334.0383167920053,519521.9674664328,348177.15322423534,453.59516,222.50246277156708,470173.421871411,229706.29324830015,2867.96363,1335.4955516073776,2954925.734511057,1355023.0314904994,930.80716,420.5222668503558,956975.9443713588,424322.6700552281,1502.06134,637.3573155606476,1533028.0231368372,633621.7602734943,0.37847,100000,0,955081,9971.809810186054,0,0.0,0,0.0,43372,452.2124078598425,0,0.0,41053,425.222911315751,1244914,0,44716,0,0,0,0,0,101,1.044081104220176,0,0.0,1,0.0104408110422017,0,0.0,0.05139,0.1357835495547864,0.3010313290523448,0.01547,0.3670083876980429,0.6329916123019571,23.544545940109103,4.174778853961949,0.298345270437145,0.2775994072610521,0.2148678686095332,0.2091874536922697,11.390262974189298,6.099739687274827,16.45213248091385,11491.088177102993,46.38425864423034,13.701860384172,13.79787568555212,9.565094987251449,9.31942758725477,0.5848357619165226,0.7838078291814946,0.7201986754966887,0.5942528735632184,0.1180637544273908,0.7542955326460481,0.9090909090909092,0.8678678678678678,0.7681159420289855,0.1156069364161849,0.5164644714038128,0.6998514115898959,0.664,0.5399698340874811,0.1186943620178041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521467919637,0.0047841555255982,0.0071420600379421,0.00961899828341,0.0114898116891039,0.0135490044382914,0.0158278807150573,0.0180435780986885,0.0202311252797106,0.0223343086902252,0.0246181270553523,0.0266082441432104,0.0285905143620574,0.0304976583809376,0.032941540364986,0.03516980664353,0.0373352097518574,0.039258790713108,0.0411176690635521,0.0432378393576806,0.0582845454640326,0.0720927070586635,0.0849384010484927,0.0975691780605971,0.1094894356920807,0.1242180235015639,0.1349939053473952,0.1455688126076692,0.1554559521903847,0.1643633091212958,0.1761502448474412,0.1870302886123036,0.198014850570214,0.2076494964846867,0.2165111776095757,0.226125477601196,0.2341729067392784,0.2427427877588649,0.2498043263722676,0.2566362564531084,0.263306390999179,0.2693216374269006,0.2738941664990713,0.2775795171488791,0.2813679445637795,0.2865643325284581,0.2908094993934695,0.2946120881496458,0.299291900218773,0.3029627479949345,0.3007523856952501,0.2986879022941079,0.2975706508742562,0.2947913511330362,0.2929519009856963,0.2890673915367347,0.2855519608616744,0.2856207759904433,0.285957388877544,0.2868051476477812,0.2879458037063994,0.2881509672076193,0.2890396659707724,0.2892829262852682,0.2910571449160481,0.2919498919186394,0.2926718122525704,0.2947882223271926,0.298117448721551,0.3013671409267944,0.3062468720141953,0.3098823030431555,0.3124050632911392,0.3149192319414812,0.3165739081218753,0.3206398472006685,0.3234704885190322,0.3251221498371335,0.3217247097844112,0.324377716317661,0.0,2.244508664577987,50.54725719586032,151.33153875947605,213.6106316560632,fqhc3_100Compliance_baseline,8 -100000,95667,47388,451.56637084888206,5080,51.83605632036125,4019,41.424942770234246,1541,15.700293727199556,77.31532774038504,79.70852228579572,63.31028192710126,65.07670850903408,77.11575364083347,79.51124230601464,63.23447940372101,65.00425508684245,0.1995740995515689,197.27997978108647,0.0758025233802541,72.45342219162865,210.86736,148.26624588014158,220418.07519834428,154981.5985451008,497.91012,334.19806553360326,519907.0944003679,348780.1075957261,452.36662,222.2175603668509,469462.6464716151,229631.1065568373,2844.40405,1332.014285473214,2933303.42751419,1352413.7115966997,948.47481,431.4798667037383,977344.517963352,436933.5682144712,1502.60782,643.9395167233315,1532665.8722443476,641736.5472747011,0.38059,100000,0,958488,10019.003418106557,0,0.0,0,0.0,43274,451.7545235034024,0,0.0,41007,425.1936404402772,1240585,0,44532,0,0,0,0,0,76,0.7944223190859963,0,0.0,1,0.0104529252511315,0,0.0,0.0508,0.1334769699676817,0.3033464566929134,0.01541,0.3579481397970688,0.6420518602029313,23.517454620043985,4.12767717410595,0.3065439163971137,0.2739487434685245,0.2050261259019656,0.2144812142323961,11.222062202050504,6.034556503795198,16.480995995063786,11526.267479897995,45.91837545502665,13.300272181662978,14.057144331972838,9.082221183986707,9.478737757404124,0.575018661358547,0.8010899182561307,0.6915584415584416,0.5606796116504854,0.1334106728538283,0.7464435146443514,0.9237472766884532,0.8558282208588958,0.7368421052631579,0.1741293532338308,0.5024787535410765,0.7133956386292835,0.6324503311258278,0.5008130081300813,0.1210287443267776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0048155883128206,0.0070632649333252,0.0094284030642309,0.01165771484375,0.013903743315508,0.0161866100934274,0.0184055972626525,0.0206473385488571,0.0227538042476498,0.0248807753448541,0.0269748330765279,0.0292368783819928,0.0312007336500118,0.0331850414425945,0.035401799565622,0.0373206237372429,0.0392008303061754,0.041243654822335,0.0429612181725327,0.0579539043400129,0.0723006366225498,0.0855733403306218,0.0986551332238919,0.1109094171160807,0.1260996136135076,0.1365769745364962,0.1463905665803853,0.1561541339319117,0.1650387480411309,0.1772276053848392,0.1880887926367081,0.198393172069934,0.2070546775817537,0.215981056225563,0.2257789017180758,0.2348184468296605,0.2433408730292697,0.2513906232262459,0.2581887363330047,0.2641878669275929,0.2698938448754111,0.2749937848492382,0.2790892951393887,0.2839929062507592,0.2886293065207748,0.2927323689874368,0.2959351040699818,0.2998641743742319,0.3035094892051224,0.3000094198705441,0.2978448335144205,0.2948919891989199,0.292852707132851,0.2910588409883505,0.2886170782050302,0.2854999447225863,0.2858917770148765,0.2866137980327422,0.2871876944963101,0.2883339545285128,0.2888329465444676,0.2890540202053936,0.2885386053967406,0.2909543647943303,0.2918492777676927,0.2938985556692823,0.2975089639554633,0.3013732307800372,0.3053083280356007,0.3072440012748714,0.3122517082472588,0.3147821707378494,0.3149238889313853,0.3200641448919913,0.3203987184051264,0.3207204480096867,0.3210023866348448,0.3255051884216275,0.3218608169440242,0.0,2.3102967620208386,51.91645435052509,145.89636327244352,208.18432982584804,fqhc3_100Compliance_baseline,9 -100000,95629,47648,454.2345941084817,5166,52.83961978061048,4075,42.05837141452906,1533,15.601961748005312,77.3146043072854,79.73330686547507,63.296484254502126,65.08277841800037,77.11224680079971,79.5353836875901,63.21885762159236,65.00966003328121,0.202357506485697,197.9231778849737,0.0776266329097694,73.11838471916587,209.64086,147.5019333509595,219223.10177874911,154243.9357840817,497.78374,333.59561468931,519991.06965460273,348298.2795529208,453.23191,221.94220080860663,470926.2357653013,229741.4515406475,2911.40704,1347.7269680805928,3005312.0706061968,1370161.1160405618,951.04128,432.3584279268413,976134.6035198529,433752.4553202861,1496.31244,650.3206515628042,1524741.7624360812,645710.8297670092,0.38358,100000,0,952913,9964.686444488596,0,0.0,0,0.0,43235,451.5366677472315,0,0.0,41059,426.3246504721371,1245635,0,44645,0,0,0,0,0,86,0.8993087870834161,0,0.0,1,0.0104570789195746,0,0.0,0.05166,0.1346785546691694,0.2967479674796748,0.01533,0.351572678205844,0.648427321794156,23.941571546516208,4.17961865580551,0.3094478527607362,0.2593865030674847,0.2215950920245398,0.2095705521472392,11.199347523773492,5.8436126390122585,16.61977549035576,11598.870406204978,46.31302468817582,12.8615132688856,14.173416321808904,9.891414972324116,9.3866801251572,0.5720245398773006,0.7899716177861873,0.6938937351308485,0.5658914728682171,0.1288056206088993,0.7297527706734868,0.9113082039911308,0.8466257668711656,0.6893203883495146,0.1421052631578947,0.5082701585113715,0.6996699669966997,0.6406417112299465,0.5294117647058824,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002006221312555,0.0044923994280556,0.0066390546960652,0.0088909210994259,0.0112101236979166,0.013750254634345,0.0158301118919635,0.0180713045254877,0.0201900359002158,0.0223551218113485,0.0245230769230769,0.0265844889573703,0.0287639524715806,0.0306012055020349,0.0327115827286146,0.0348243273983084,0.0369276677753256,0.0390992431399827,0.0411091457704713,0.0432211433160546,0.057863765116595,0.0725307187077716,0.0857205863821565,0.0991441474634973,0.1109035057161858,0.1269088213491475,0.1378442121366649,0.1488989789175246,0.1579183874350031,0.1666988997765171,0.1786330873149467,0.1895677058491957,0.2011724709061587,0.2110014351603326,0.2198243080891024,0.2295245705153815,0.2382937350528598,0.2467327625056331,0.254314311357517,0.2608032478554062,0.2662499276494762,0.2712746669162114,0.2767198835461614,0.2813260304181598,0.2856431797212645,0.2886633492634379,0.2927643506420435,0.2964007930456001,0.3006156393077938,0.3039540126834285,0.3010989897902907,0.2987168214540858,0.2966482255725889,0.2940165260603259,0.2921720775359733,0.2892394883970284,0.2866508313539192,0.2875755783385909,0.287894862931654,0.2886691770920707,0.289062791826977,0.2905672240014146,0.291407533747946,0.2930302828323224,0.2933406451920555,0.2930509698720594,0.2937210876678325,0.2991490154667992,0.3037008775276612,0.3079338907863228,0.3136400395363465,0.3160572837433772,0.3201976605992369,0.3223084457168688,0.3260546366846311,0.3286018452803406,0.3335895465026902,0.3373080032336297,0.3326086956521739,0.3425712086220169,0.0,2.111108320505113,51.19658402215394,147.888843285841,215.18559959398576,fqhc3_100Compliance_baseline,10 -100000,95651,47241,450.86826065592624,5165,52.785647823859655,4036,41.66187494119246,1541,15.776102706715038,77.29129418892526,79.6907719846767,63.29829466637945,65.06962067178182,77.0870017824551,79.48815466396798,63.2220333043392,64.99610368764475,0.2042924064701594,202.6173207087254,0.076261362040249,73.51698413707197,210.79938,148.19132581685267,220383.4147055441,154928.7830387287,497.81702,334.287269231832,519928.9918558092,348965.66210090753,454.11421,222.4626786266883,471071.53087787895,229819.54298911805,2847.3957,1328.6976611164366,2942595.634128237,1354982.9588692817,946.15176,425.9752383640637,976735.8731220792,432908.2898914424,1497.396,640.1906295790768,1534814.2518112722,643587.9864085268,0.37807,100000,0,958179,10017.427941161097,0,0.0,0,0.0,43346,452.62464584792633,0,0.0,41030,425.3484020031155,1240116,0,44516,0,0,0,0,0,96,0.9931940073809996,0,0.0,1,0.0104546737619052,0,0.0,0.05165,0.136614912582326,0.2983543078412391,0.01541,0.356652440155873,0.643347559844127,23.73187819893816,4.180607980921465,0.3136769078295341,0.2621407333994053,0.2187809712586719,0.2054013875123885,11.6522797654085,6.319171872662106,16.514144959654658,11476.4119481897,46.182436462883146,13.02881280071188,14.26156177383565,9.811419126222528,9.080642762113092,0.5832507433102081,0.8119092627599244,0.7187993680884676,0.5549263873159683,0.1145958986731001,0.7666941467436109,0.9348314606741572,0.8923512747875354,0.7511111111111111,0.1578947368421052,0.5044279135671271,0.7226753670473083,0.651697699890471,0.4878419452887538,0.1017214397496087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0042988948595761,0.0064959451092638,0.0088304034142871,0.0108659158196746,0.0131588328156031,0.0153863409262393,0.0173586292809443,0.0192929003762473,0.0215632871214138,0.0237304126671589,0.0258098309471478,0.0279718121495807,0.0299448709361636,0.0318477913014752,0.0338732365231062,0.0358886136818214,0.0380326439073012,0.0399650396945135,0.0421805444063343,0.0563044704997178,0.0695199488839309,0.0829177122817333,0.0956425639406378,0.1076072272880783,0.1225828985108432,0.1335534277403876,0.1436118655802311,0.153280379726537,0.1624656475437993,0.175216163184337,0.1875162407968817,0.197999651734796,0.2072117437138071,0.2167234178540337,0.2264217904356312,0.2350411118062382,0.2429168026835665,0.250771850170261,0.2578878628875192,0.2647446877459377,0.2705067614992279,0.2761115386892428,0.280047486000024,0.284559172209185,0.2893538795602877,0.2933440216438288,0.2967377186950874,0.2998133941530168,0.3043162810331636,0.3015262038706899,0.298497192557525,0.2957546039931803,0.2931570200158971,0.2916004219848145,0.2877243535704979,0.2849067359153814,0.2847425322861556,0.2845955234854573,0.2856964196383906,0.2856446502559103,0.2864803894407725,0.2871461522331726,0.2889579189666346,0.2917376184194747,0.2932817208770654,0.2943291526287477,0.2996966759435879,0.3053563306860721,0.3087314792805641,0.3139835700993963,0.3160561596115275,0.3204572577099428,0.3264280274181264,0.3308221113099162,0.3296808003811339,0.3329734731647131,0.3393739703459638,0.3422074320576816,0.3510840623811335,0.0,2.0609411147849834,53.05225743353856,142.99027814171546,212.18136703160607,fqhc3_100Compliance_baseline,11 -100000,95638,47505,453.85725339300274,5053,51.62174031242811,3996,41.270206403312486,1530,15.7155105711119,77.27514686010801,79.6881638324911,63.27600815666828,65.05713801264473,77.08138229046108,79.49451079391952,63.20371887999045,64.98692336970396,0.1937645696469303,193.65303857158267,0.0722892766778287,70.21464294076907,210.7281,148.15618610201403,220339.3002781321,154913.51356366093,502.46479,337.2037358827813,524851.4188920722,352054.03509761207,453.56492,221.841025272792,471206.978397708,229629.38375060807,2819.26296,1298.8099146487489,2913771.178820134,1324113.665279662,942.33223,421.78426694579775,973957.5168865932,429784.9985722782,1487.42486,630.2461934067151,1528596.8338944772,635965.6689196734,0.37971,100000,0,957855,10015.422739915097,0,0.0,0,0.0,43668,456.0321211234028,0,0.0,41035,425.9603923126791,1235515,0,44315,0,0,0,0,0,77,0.8051193040423262,0,0.0,3,0.0313682845730776,0,0.0,0.05053,0.1330752416317716,0.3027904215317633,0.0153,0.3439575033200531,0.6560424966799469,23.832938255604635,4.193766441573655,0.3163163163163163,0.2602602602602603,0.2184684684684684,0.2049549549549549,11.314243132368428,6.114981447117825,16.281040765773835,11542.042251151568,45.32603506021859,12.5722110162983,14.245143356531742,9.580486084689667,8.928194602698875,0.5813313313313313,0.8076923076923077,0.6882911392405063,0.5784650630011455,0.1318681318681318,0.7531194295900179,0.9318734793187348,0.8563049853372434,0.7114427860696517,0.1597633136094674,0.5142658315935977,0.7265500794912559,0.6262188515709642,0.5386904761904762,0.1246153846153846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0043582700708472,0.0067272081578813,0.0087252412392077,0.0108931132334543,0.0126792406713377,0.014755067912061,0.0169982950659002,0.0192510198030936,0.0215739678899082,0.0235709230406285,0.0254977296542088,0.0276143051154368,0.029840746276349,0.0316817778144943,0.033611619751094,0.0358434827675563,0.0377728849469289,0.0399816846004953,0.0419447688970465,0.0563046113967975,0.0703732422407108,0.0841106769191982,0.0974337905315719,0.1100208084670391,0.1249682284165042,0.135359996599796,0.1457960262641766,0.1562951468778425,0.1653089736700698,0.1772757202534515,0.1884975711311589,0.1990147353736158,0.2089053111705626,0.2178561970338983,0.2280547811309438,0.2369010049463954,0.2452530038923675,0.2528220300409649,0.2601471989712147,0.2663929673184422,0.2726409453803678,0.2771195787526239,0.2817834761939062,0.2855614192952163,0.2895992895992896,0.2939311934651332,0.2974926816851215,0.3011876361373301,0.3044064035504834,0.3022635408245755,0.2991714152008148,0.2973696068491607,0.2943257291365868,0.2925996824407544,0.289434648968544,0.2858857720495324,0.2861308129535291,0.2869364083201524,0.2872884970851699,0.287478514311337,0.288575813624021,0.2904161622907709,0.291299117882919,0.2937697538549947,0.2962329211065308,0.2974717590102205,0.3005507228237061,0.303681946921221,0.3076344936708861,0.3118299027369373,0.3169234026785241,0.3179801262421098,0.3188689178010077,0.3257356375525455,0.3295494856332032,0.3325709057639524,0.3399273314493338,0.3389086920756786,0.3347312237895539,0.0,1.8524209577311936,49.231309820673815,143.95555993985195,216.6264060646303,fqhc3_100Compliance_baseline,12 -100000,95673,47306,450.3046836620572,5140,52.38677578836244,4052,41.65229479581491,1506,15.23940923771597,77.28391542799022,79.6800111720141,63.28504443165552,65.05886064230596,77.09478495897348,79.49811846699731,63.21340171920116,64.99268831750953,0.1891304690167459,181.8927050167929,0.0716427124543628,66.1723247964261,211.09638,148.51608333520954,220643.62986422505,155233.0159347042,502.40551,337.0960697128865,524444.0751309147,351659.0782782916,458.66566,225.1180849604813,474754.1835209516,231647.8289608863,2862.77361,1329.0051828787336,2948926.959539264,1345839.1709154765,969.27015,437.6279143659055,997655.075099558,442005.3933076591,1464.03314,619.5396618356189,1485744.7555736727,612199.6348571038,0.38086,100000,0,959529,10029.255902919318,0,0.0,0,0.0,43678,455.8130297994209,0,0.0,41664,430.8321051916424,1233960,0,44315,0,0,0,0,0,94,0.982513352774555,0,0.0,1,0.0104522697103676,0,0.0,0.0514,0.1349577272488578,0.2929961089494163,0.01506,0.3636532738095238,0.6363467261904762,23.7188855522429,4.152754011430438,0.305528134254689,0.2680157946692991,0.2253208292201382,0.2011352418558736,11.888774824126315,6.688634584721697,16.079009783529003,11561.10872638818,46.33757075899609,13.299899592838871,14.101546664603209,10.095352273897095,8.840772227656911,0.5856367226061204,0.8075506445672191,0.6938610662358643,0.5848849945235487,0.1263803680981595,0.7713338856669428,0.9261744966442952,0.8825136612021858,0.7546296296296297,0.1741573033707865,0.5068541300527241,0.7245696400625978,0.6146788990825688,0.5322812051649928,0.1130298273155416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813866763948,0.004817835118468,0.0072387991512431,0.0094511234641924,0.0118128262263056,0.0141695868307391,0.0160946504156254,0.0184561016464436,0.0207210432114548,0.0228953676576041,0.0249810205798469,0.0270339697088017,0.0292141306249292,0.0312168276117941,0.0335487334062803,0.0353789195002895,0.0372101216504673,0.0391654123631079,0.0413585062672283,0.0433880852128236,0.0579018290835779,0.0715788812462702,0.0847955671228276,0.0979523548970916,0.1102280762857655,0.1262067067490896,0.1364693389965489,0.1462300319488818,0.1556534194155247,0.1651176268567012,0.1765320859649501,0.1878615221300288,0.1990723602552098,0.2087188865405884,0.2174665270813819,0.2270921198668146,0.2362679126332968,0.2441604975830713,0.2514202608735172,0.2581888246628131,0.2646823603046003,0.2710714160132212,0.2767572311231811,0.2812064909501176,0.2853544571804045,0.2899480561142025,0.2930794764201165,0.2970923204173824,0.3019178224104217,0.3054570385117407,0.3032811154177433,0.2998777018949335,0.2973698637839661,0.2951096121416526,0.2925243770314192,0.2890867642783923,0.2861253399102004,0.286324716360243,0.2866522280393594,0.2870281253341888,0.2878512721622077,0.2888998715034101,0.2900436534586971,0.2905458373462942,0.2914103770171503,0.2919154261282164,0.2926670072081276,0.2959468355223974,0.2998360598555931,0.3052966851480476,0.3109444871042052,0.3112057184904867,0.3134457950880674,0.3159342702059632,0.3185198787990083,0.3212748633244155,0.3271224643125469,0.3286197968532165,0.3311511183851609,0.3348399246704331,0.0,2.743826193246391,52.08712751632342,148.7284305248036,207.3493084906761,fqhc3_100Compliance_baseline,13 -100000,95656,47770,455.28769758300575,5225,53.41013632181985,4161,42.91419252320816,1617,16.548883499205484,77.35161970545354,79.75776643801385,63.31721993396855,65.09436364019042,77.14670194966989,79.55486641234471,63.240751074840894,65.0207477062104,0.2049177557836543,202.9000256691376,0.0764688591276581,73.61593398002242,209.88,147.54407422032975,219410.9935602576,154244.23017931942,504.3647,338.7097512344458,526666.9105963034,353489.99185807543,458.41495,224.7670920079161,475721.96203060966,232215.0810246333,2955.29271,1377.385725170295,3049384.6596136154,1399905.683135654,973.97495,441.0398196473129,1005623.9964037802,448501.7387514749,1573.00534,666.0549186190633,1610804.5914527057,668023.8259379714,0.38316,100000,0,954000,9973.226980011708,0,0.0,0,0.0,43848,457.7548716233168,0,0.0,41644,431.8181818181818,1242668,0,44544,0,0,0,0,0,89,0.9199632014719412,0,0.0,2,0.0104541272894538,0,0.0,0.05225,0.1363660089779726,0.3094736842105263,0.01617,0.3536562902928716,0.6463437097071284,23.33533007453794,4.194928393356627,0.3141071857726508,0.2641192021148762,0.2141312184571016,0.2076423936553713,11.524878811433604,6.284030037222701,17.185542550246073,11661.107708480076,47.52713090716835,13.553607239385926,14.773360437519324,9.725841129533048,9.47432210073006,0.5849555395337659,0.818926296633303,0.7016067329762815,0.5791245791245792,0.1168981481481481,0.761519805982215,0.9245283018867924,0.889196675900277,0.7101449275362319,0.171875,0.5102599179206566,0.7379421221864951,0.6300211416490487,0.5394736842105263,0.1011904761904761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019857954833284,0.004167722963038,0.006545963829744,0.0089002682272616,0.0110976614552075,0.0131798737013648,0.0154591342476928,0.0177165555339984,0.0197137014314928,0.0219502202191949,0.0242526212118103,0.026224387035781,0.0287116791701398,0.0306810449699993,0.0327948437209494,0.0349379765562763,0.0370001865555624,0.0393119627953328,0.0410316164001622,0.0432710855307746,0.0581166931371729,0.0721801677293714,0.0858768210252319,0.0984017087721882,0.1107218235542423,0.1268719110160971,0.1376202305879355,0.147852499200682,0.1574809045978732,0.16672035736529,0.1784116029546557,0.1896424702058504,0.2007120072289419,0.2094558351851649,0.2188962676622504,0.2288999013314708,0.237486033519553,0.2460286187136214,0.2543252202343111,0.2613878392305049,0.2668972057735011,0.2731596723112342,0.2796292574509085,0.2849686972551742,0.289289180009704,0.2926109101646121,0.296692594858477,0.3011803528366544,0.3045919882263332,0.3078410481038633,0.3053510986944608,0.3026357312404813,0.2999353678412859,0.2973140436323813,0.2958122165910909,0.2929636810527762,0.2909779179810725,0.2916837093633939,0.2920356996866058,0.291818748330811,0.2919548394332498,0.2924164271370634,0.2940537605213141,0.2946722405052032,0.2950459591739286,0.2953858084528887,0.2963172484018781,0.3002622377622377,0.305500400599157,0.3092170075265004,0.3128133327311322,0.3155967142782399,0.3218147917961467,0.3272288793428291,0.3310101291701515,0.3352266004023193,0.3397092578423871,0.3451185214945761,0.3426951120712935,0.3480044759418128,0.0,2.102384613965181,54.07332583481224,146.56196168183334,221.6197764592379,fqhc3_100Compliance_baseline,14 -100000,95798,47794,456.3873984843107,5005,51.10753877951523,3984,41.08645274431616,1493,15.282156203678571,77.3507064425629,79.67758046238899,63.34838135415546,65.0693875789864,77.15370363373677,79.48250337474434,63.27425021800347,64.99795220031689,0.1970028088261273,195.0770876446484,0.0741311361519834,71.43537866950567,210.4608,148.05878310574062,219692.2691496691,154553.10455932337,497.35984,334.160341439394,518663.63598404976,348310.6454654065,458.66232,225.03873238347197,475030.0110649492,232091.3985697407,2814.63616,1317.187345380623,2906812.198584521,1344008.6300980845,939.77426,422.71032142796406,971098.8851541786,431440.0519019273,1463.41348,624.5508887964357,1500054.0512328022,629073.2718577331,0.38141,100000,0,956640,9986.012234075868,0,0.0,0,0.0,43201,450.416501388338,0,0.0,41593,430.5935405749598,1243984,0,44676,0,0,0,0,0,80,0.814213240359924,0,0.0,2,0.0208772625733313,0,0.0,0.05005,0.1312236176293227,0.2983016983016983,0.01493,0.3553435114503817,0.6446564885496183,23.492683246151262,4.173687308727261,0.3185240963855422,0.2678212851405622,0.2023092369477911,0.2113453815261044,11.203127485337784,5.884384749638896,16.098127173777,11493.57628120963,45.75065458017458,13.058972371594976,14.438636139376412,8.95550236435442,9.297543704848785,0.5763052208835341,0.8153701968134958,0.7013396375098503,0.5471464019851117,0.1128266033254156,0.7585917854149203,0.9385964912280702,0.8469945355191257,0.7263681592039801,0.1235294117647058,0.4983876746685776,0.723404255319149,0.6423034330011074,0.4876033057851239,0.1101190476190476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0043694241686942,0.0063928886724101,0.008359743214692,0.0105844314299658,0.0125118348315636,0.0149606620194855,0.0168792733952444,0.019150588620013,0.0215413583847562,0.023547012050168,0.0256731242817271,0.0277172572556112,0.0298429103786209,0.0318635538689985,0.0338126820802082,0.0358536055379075,0.0376840140991084,0.0397540813359365,0.0417260944250689,0.0561161138182539,0.0705742127054493,0.0837010870134907,0.0969179197797463,0.1086532685558916,0.1243208963111721,0.1360223947067056,0.1466378640673385,0.1562389914279919,0.1652502866695958,0.1778703344956735,0.1888649945427234,0.1997631438846576,0.208745712350615,0.2173621493272359,0.2265864368909487,0.2349644584085388,0.2428789648665648,0.2510792100522326,0.257389613360787,0.2628917165092488,0.2696865331854532,0.2753655739836629,0.279766821081864,0.2837195195923814,0.2880231413096996,0.2920201401816614,0.2958383633013533,0.3000931243209685,0.3036069373296285,0.3006017946375799,0.297276510417382,0.2956894733141129,0.2937338510616799,0.2915622265399047,0.2886673597945079,0.2868232987604351,0.2870016250020518,0.2872850825522033,0.2871439019604345,0.2886039405357778,0.2894039996838194,0.2907162026165716,0.2919290853262209,0.2936313386205239,0.2942219440967876,0.294766861542849,0.2990930847713818,0.3032206006174572,0.3065338550930866,0.3086644240385489,0.3138328990054778,0.3154049628416677,0.3168664579674735,0.3173518119674127,0.3219437219200756,0.3269525267993874,0.3210354667753771,0.3319467554076539,0.3386100386100386,0.0,1.851566426314449,52.08653714110152,147.88039556716825,204.42594480402184,fqhc3_100Compliance_baseline,15 -100000,95737,47428,450.755716180787,5163,52.59199682463416,4071,41.95869935343702,1602,16.31553109038303,77.31652017658898,79.67816710308458,63.31665033110207,65.06270603451136,77.11002729273922,79.47492091489323,63.2378211297358,64.98786632223835,0.2064928838497621,203.24618819134344,0.0788292013662683,74.83971227301822,209.43362,147.3769002443041,218759.3302484933,153939.3340550718,500.49371,336.266096662875,522217.5021151697,350677.1223903767,457.48164,224.2649818537848,474341.81142087176,231556.16189217023,2890.3069,1351.2467908124572,2979255.55427891,1371663.8089896876,959.30013,441.3634637096171,981876.3278565236,440881.9527640775,1566.37278,673.027268214206,1597151.8848512068,669116.7815342904,0.37893,100000,0,951971,9943.60592038606,0,0.0,0,0.0,43475,453.5341612960507,0,0.0,41464,429.7084721685451,1245230,0,44666,0,0,0,0,0,88,0.9087395677742148,0,0.0,0,0.0,0,0.0,0.05163,0.1362520782202517,0.3102847181871005,0.01602,0.3508057047601408,0.6491942952398593,23.68368491694612,4.126604242023467,0.3178580201424711,0.2593957258658806,0.2095308278064357,0.2132154261852124,11.493556794109324,6.203675935490212,17.205154504311487,11523.10829767506,46.76585254271892,12.968186663803296,14.66113918854719,9.529572840975929,9.606953849392498,0.5738147875214935,0.7945075757575758,0.6908809891808346,0.5814771395076201,0.1232718894009216,0.7397034596375618,0.9248291571753986,0.8469945355191257,0.7087378640776699,0.1773399014778325,0.5033251662583129,0.7017828200972447,0.6293103448275862,0.5409582689335394,0.106766917293233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0045417220020072,0.0068612027404212,0.009144761575744,0.0116170247395833,0.0139123703990385,0.0163584999949007,0.0183307292464487,0.0206646216768916,0.022923193480353,0.0252237841828416,0.0273028781484561,0.0294404968790811,0.0315405764418769,0.0335234715875684,0.0356353191577294,0.0375542144979142,0.0397792691402076,0.041953389742417,0.0437455072041005,0.058821686973408,0.0728614032334013,0.0863564379280328,0.098255318701427,0.1109611288043363,0.126331489258174,0.1370836825854916,0.1481942847408543,0.1573896968466495,0.1663376110562685,0.1788249997306528,0.1897221650990876,0.2005394705357725,0.2093976904907707,0.2176679767920643,0.2265834571130866,0.2347587192745384,0.2430178913019016,0.2504369538077403,0.2573398856776292,0.2626019552264708,0.2677347678634078,0.2729650715494691,0.2775486222691191,0.2822581625089614,0.2863326386405396,0.2904368506696708,0.2940899548317323,0.2985182788741508,0.3015290842645487,0.2991061813482662,0.2964681583476764,0.2948421319940182,0.29169862101897,0.2901901887016907,0.2875503607592028,0.2851695987849639,0.2849868593955322,0.2855702001812059,0.2850859155685089,0.2871097778194431,0.2879299784640309,0.2887166055526454,0.2891248463172013,0.2905689377746824,0.2915833484820941,0.2936979447966116,0.2980859448301745,0.3024708592168633,0.3065578295674119,0.3086112493777999,0.3143083840253901,0.3195566409919218,0.3244993223912061,0.3284834918858422,0.3270231897775674,0.3241136919315403,0.3270971635485817,0.3223774308408655,0.3309187952725886,0.0,2.187743267416248,53.0194970515277,147.48423326748443,213.7283082204281,fqhc3_100Compliance_baseline,16 -100000,95685,47432,451.397815749595,5255,53.770183414328265,4165,43.01614673146261,1565,16.00041803835502,77.40264542862671,79.7830668310357,63.35728834693722,65.11222862185859,77.20616780920926,79.58934411231866,63.28334735166096,65.04160719007706,0.1964776194174504,193.72271871704072,0.0739409952762528,70.62143178153235,210.122,147.844873322366,219597.6380832941,154512.0691042128,498.58488,333.3687099822664,520565.6163452997,347898.87650338764,451.83078,220.99031501920416,469027.7577467733,228533.07591530724,2922.64719,1359.8074781483217,3018719.8097925484,1385436.4046531024,981.75779,441.96497462504567,1011598.6204734284,447487.909311068,1523.61638,648.3575101943954,1559318.325756388,650085.6487085671,0.38005,100000,0,955100,9981.710821967916,0,0.0,0,0.0,43422,453.2894393060563,0,0.0,41090,426.2423577363223,1248968,0,44777,0,0,0,0,0,70,0.7315671212833778,0,0.0,1,0.0104509588754768,0,0.0,0.05255,0.1382712800947244,0.2978116079923882,0.01565,0.3534655266509005,0.6465344733490995,23.95301774727331,4.212523943036537,0.3164465786314526,0.2703481392557023,0.2122448979591836,0.2009603841536614,11.213941046301835,5.860820702424579,16.758296902883355,11522.39609579832,47.5406624323176,13.767122956102984,14.605816205547542,9.891044405965348,9.276678864701733,0.5786314525810324,0.8134991119005328,0.6722306525037937,0.5667420814479638,0.1278375149342891,0.7465475223395613,0.9341825902335456,0.8391812865497076,0.6991150442477876,0.1770833333333333,0.5081799591002045,0.7267175572519083,0.6137295081967213,0.5212765957446809,0.1131782945736434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468137031523,0.0043479582839247,0.0065429093122337,0.0086733087555731,0.0110025320059791,0.0130032788220678,0.0153129364747622,0.0174117166768728,0.019917428004987,0.0222381415340531,0.0243549924659429,0.0263738745675362,0.0285831791075467,0.0309378154029949,0.0329856274697949,0.0350480088472708,0.037132147368857,0.0394334042442795,0.0413633148895452,0.0434723698747211,0.0580738171599302,0.0719984921781742,0.0854330419451994,0.0983894551919293,0.1112540871216116,0.1268012442074525,0.1373554069829141,0.1472598364844149,0.1582170260969927,0.1673316173316173,0.1791052812957698,0.1901778080798242,0.2007438178298788,0.2102109981414671,0.219408911424706,0.2286846591538069,0.2373935529894333,0.2448445502740587,0.2521856314549737,0.2583491439412988,0.2648793380036239,0.2706797611271811,0.276168108484498,0.2807011251001351,0.2840765874939409,0.2877908406709626,0.2910785219976516,0.2951872200581137,0.2993390478157596,0.302770873607659,0.3000684260663062,0.296471329552615,0.2932139002200821,0.290796963946869,0.2892499667341839,0.2862434265680969,0.2829456753134116,0.2838165041554872,0.2840078839161314,0.2830909123199602,0.2833516678164562,0.2838743824982357,0.285717252263477,0.2870454595877798,0.2871923536439665,0.2888163349917081,0.2895154434684046,0.2927103153560622,0.2970473265391595,0.3007569187100843,0.3052312426463933,0.3107150412523799,0.3121481296134117,0.3166553467662817,0.3164190262592281,0.3214868329060825,0.3247953925431949,0.3241845664280032,0.3287486515641855,0.3338289962825279,0.0,2.024339752882512,53.9297800627588,147.97646900543776,220.83356135422267,fqhc3_100Compliance_baseline,17 -100000,95726,47354,450.51501159559575,5223,53.2666151306855,4075,41.99486033052671,1530,15.63838455592002,77.33907921770925,79.70600135339969,63.32552877917672,65.07554930081172,77.1463899808314,79.5159199810525,63.25256765479235,65.00589541109615,0.1926892368778539,190.08137234717992,0.0729611243843635,69.65388971556763,210.397,147.99161622039725,219790.8614169609,154599.1854045894,500.64216,335.174700274161,522415.7491172722,349560.45408160903,452.43586,221.11101727947397,468739.19311367866,227977.13229608265,2911.68878,1338.0250111801197,3002607.8599335607,1358682.7311076606,942.15701,421.4107445626142,966749.3262018678,422752.64250320016,1493.06068,639.7094683245085,1526838.5391638635,639299.5658816629,0.37978,100000,0,956350,9990.49370077095,0,0.0,0,0.0,43488,453.6907423270585,0,0.0,41040,424.8480036771619,1244257,0,44631,0,0,0,0,0,87,0.9088439922278168,0,0.0,1,0.0104464826692852,0,0.0,0.05223,0.1375269893096003,0.2929350947731189,0.0153,0.3403713141609028,0.6596286858390972,23.676170911227658,4.219849515177875,0.3101840490797546,0.2647852760736196,0.211042944785276,0.2139877300613497,10.760534758648063,5.572108981388947,16.389865726093934,11580.071801978773,46.41418912426402,13.144804282999427,14.36824058054167,9.321054450631026,9.580089810091884,0.5685889570552147,0.7747914735866543,0.7001582278481012,0.5802325581395349,0.1112385321100917,0.733275412684622,0.8860465116279069,0.8662952646239555,0.6896551724137931,0.1702127659574468,0.5037619699042407,0.7010785824345146,0.6342541436464089,0.5524781341107872,0.0950292397660818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.004359816684917,0.006506095023497,0.0085453584782962,0.0107219515172476,0.0128833168684883,0.0153367664304287,0.0176009964369212,0.019407349843555,0.0217743091829001,0.0241421040756466,0.0262114582691399,0.0286428336350172,0.030794749747584,0.032866078985941,0.0351078571280842,0.0370558375634517,0.0389900163971854,0.0410132689987937,0.0431729627237305,0.0571240628980725,0.0716594996704228,0.0845906245740587,0.0971944730698858,0.1091802518084231,0.1257192418344897,0.1369476420349053,0.1468787598087754,0.1573069730162971,0.1658708272080521,0.1778505770660689,0.1897806267189293,0.2002241152343962,0.2090272458693511,0.2189753696750823,0.2283006318589956,0.2362229344172594,0.2447665781299239,0.252687134668861,0.2599294112254486,0.2658350882877045,0.2717885751037829,0.2775236136231986,0.2816689008042895,0.2862444064466838,0.2900263112597437,0.2941411418158217,0.2984775437706166,0.3015930391675918,0.3050169161302213,0.3032271921817108,0.3004311291739894,0.2986775464265616,0.2958027115609524,0.2935660018993352,0.290646492434663,0.2868243990270714,0.2866089579644567,0.2874408917871592,0.2879852983157294,0.2888909668973256,0.2889064039408867,0.2899910355035753,0.2916378868563534,0.2929959136855689,0.2946442432082794,0.2957303243365842,0.2984990619136961,0.3023101619207147,0.3071177330751294,0.3103573372029748,0.3147019867549669,0.3188651946908221,0.3254860267314702,0.3307284398548702,0.3357672830055352,0.3363455353040281,0.340016200891049,0.3451131971286582,0.351434034416826,0.0,2.279861195146425,50.05562483327302,150.74491356418667,216.8906733854732,fqhc3_100Compliance_baseline,18 -100000,95682,47019,447.6599569406994,5025,51.33671955017663,3979,40.96904328922891,1526,15.54106310486821,77.30793472821749,79.68465036153043,63.31631099018998,65.07053784950314,77.11712216313315,79.49677174101465,63.24472747108872,65.00257082329634,0.190812565084343,187.8786205157752,0.0715835191012601,67.9670262068015,209.99506,147.71786705446166,219471.6247570076,154383.96591459378,497.70968,333.4024171131276,519533.7994607136,347812.8567029928,446.3308,218.5859789346709,462408.4362785058,225352.2948185965,2785.76148,1293.7296184263455,2870975.543989465,1311680.2376265922,923.65817,417.74781711391375,952768.5144541294,424071.4396930153,1482.45622,627.4353642365365,1512608.8083443071,625614.5830975146,0.37717,100000,0,954523,9975.982943500345,0,0.0,0,0.0,43283,451.7046048368554,0,0.0,40561,419.9013398549361,1247396,0,44794,0,0,0,0,0,88,0.9092619301436008,0,0.0,0,0.0,0,0.0,0.05025,0.1332290479094307,0.303681592039801,0.01526,0.3484877306448545,0.6515122693551455,23.853788743816143,4.152735556540019,0.3277205327971852,0.2663985926112088,0.2028147775823071,0.2030660970092988,11.303036900008886,6.126505597421111,16.33041803846963,11493.053519715351,45.56357228196557,12.85096696868358,14.844242753292946,9.017326096950551,8.851036463038488,0.5890927368685599,0.7858490566037736,0.7093558282208589,0.5997521685254027,0.1262376237623762,0.7552921253175275,0.8960739030023095,0.8590425531914894,0.7766497461928934,0.16,0.5189421015010722,0.7097288676236044,0.6487068965517241,0.5426229508196722,0.1169036334913112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502359111435,0.004965343926067,0.0070197506568336,0.0091512960104005,0.0113294280367748,0.0135737851818663,0.0159680231668892,0.0182337927514037,0.0200167658304197,0.0223869138405789,0.0243472377418065,0.026304171500734,0.0283742646756345,0.0305658861222429,0.0324954079210781,0.0346642130510296,0.0368869869755779,0.0387981602799032,0.0410702396804261,0.0428776948417497,0.0561788363104564,0.0703511801957397,0.082947761585513,0.095667813081753,0.1076940918483532,0.1231229643416099,0.1349748573125968,0.1447229762094842,0.1553936389568487,0.1645319774302203,0.1767879642891758,0.1876724035351513,0.1983018232026179,0.2075147857837831,0.2169551923626845,0.2266867496566694,0.2351753299639633,0.244055251850352,0.251525877521385,0.2579134218964727,0.2639412949373828,0.2698815467907716,0.2758726777896107,0.2810828957149365,0.2851465172526952,0.2885464184440883,0.2921801422703136,0.2962198787508278,0.3004031474015788,0.3035525620707871,0.3011676610416021,0.2987978683851778,0.2958985200845666,0.2937322843755423,0.2904305152799464,0.2869436065473365,0.2835000949908176,0.2845479037981337,0.284092463411298,0.283691868249576,0.2841669321439949,0.2854968471406827,0.2865511758306134,0.2873798961143188,0.2890878110825793,0.2925145254162216,0.2944724189923473,0.2983106198580669,0.3016096155197863,0.3042119833893613,0.3084124892060174,0.3120274914089347,0.3136873785190294,0.3209119139589487,0.3213084112149533,0.3248295320949917,0.3238610735227785,0.322060871295007,0.330833110099116,0.3322160148975791,0.0,2.310679512760507,51.35357391671906,143.38923736448578,209.15540670958617,fqhc3_100Compliance_baseline,19 -100000,95710,47457,451.7500783617177,5207,53.108348134991125,4133,42.63922265176053,1626,16.549994775885487,77.38171245272493,79.75299433197796,63.34258245905804,65.09403664492054,77.16626564475614,79.5423520082226,63.26044608449087,65.01632448077463,0.2154468079687888,210.6423237553656,0.0821363745671774,77.71216414590754,209.59136,147.3663832097627,218985.8530978999,153971.77223880752,500.88846,336.3541828671628,522726.2459513113,350817.06495367544,457.0664,224.89353842477647,474192.10113885696,232359.2994404361,2952.57988,1379.2661618614875,3046704.5136349387,1402870.3080780348,960.9455,435.8312912821467,988431.950684359,439799.5147257677,1577.36178,682.062850564489,1607426.454915892,678955.6236428153,0.37984,100000,0,952688,9953.902413540904,0,0.0,0,0.0,43524,454.1845157245847,0,0.0,41379,428.9729390868248,1246583,0,44715,0,0,0,0,0,108,1.117960505694285,0,0.0,0,0.0,0,0.0,0.05207,0.1370840353833192,0.3122719416170539,0.01626,0.3556454578889297,0.6443545421110702,23.49112390183233,4.249950233040507,0.3201064601984031,0.2489716912654246,0.221146866682797,0.2097749818533752,11.58308346919247,6.354359510268089,17.56213682365039,11521.43517420144,47.36372922414029,12.563031202176925,15.075050751855288,10.190048471372494,9.535598798735572,0.5877086861843697,0.8046647230320699,0.7195767195767195,0.5908096280087527,0.1257208765859284,0.7554655870445344,0.9243119266055044,0.8929503916449086,0.7476635514018691,0.1386138613861386,0.5162180814354728,0.7166947723440135,0.648936170212766,0.5428571428571428,0.1218045112781954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0044805319871463,0.0066262126070544,0.0088576478475509,0.0109445246862094,0.0131670061099796,0.0154575579913331,0.0176507819837478,0.0196783987405824,0.021936738663118,0.0239894200506443,0.0262830977094691,0.0282699684289548,0.0307072663219266,0.0327547419041918,0.0349152191894127,0.0372951923276094,0.0392765233272455,0.0412372206217304,0.0433214877497212,0.0573779908303829,0.0709492352306871,0.084525957946867,0.0973626350505486,0.1096589770365916,0.1248215399909051,0.1362363127069009,0.1463658720948801,0.1556170412785232,0.1648842023964043,0.1769998276010688,0.1882699343999653,0.1987753947883586,0.2073730703634057,0.2152812152812152,0.2251536119568226,0.2347705828556133,0.2433359577100438,0.2499035822046779,0.2576977247483711,0.2639575113106465,0.2698900841908325,0.2751334651215095,0.2798724801649129,0.283538029811582,0.2881696318564881,0.2923519479707335,0.2959348559068643,0.3003715162263272,0.3033738974514483,0.3006912132540814,0.2974962574336295,0.2957358235823582,0.2934336229628669,0.2922273043504004,0.2890258036966998,0.2860365334258762,0.2863609622172833,0.2876942675159236,0.2887590359305898,0.2903610862429125,0.2898884363378785,0.2908413781624501,0.2921131018539101,0.2928822306644685,0.2946906084485208,0.295612400474335,0.3014589230721373,0.3064213814647691,0.3095678162727594,0.3146224710982659,0.3187496705497865,0.3250832338714743,0.329228430254656,0.3307123467190864,0.3350667769767167,0.3391581826470141,0.3413945989520354,0.347515783694757,0.3522205206738131,0.0,2.082996082800636,53.85399006152371,153.13051315445986,211.09525612371917,fqhc3_100Compliance_baseline,20 -100000,95858,47579,452.5861169646769,5189,53.02635147822821,4094,42.13524171169856,1591,16.232343675019298,77.44506122741345,79.72524704378286,63.40474875222951,65.08525669611701,77.24415034468026,79.5249933935031,63.33021384164481,65.01307107945406,0.2009108827331829,200.2536502797625,0.0745349105846955,72.18561666294931,210.80906,148.32823980514146,219918.06630641155,154737.46563160245,500.49891,335.87595242267,521571.8145590352,349835.5405106199,460.60383,225.28194966842364,476915.2913684825,232207.9086502342,2886.82106,1349.7337940313869,2973024.7345031197,1369520.3154993705,958.65175,433.4154078816911,985746.5521917838,437824.11260184296,1548.57444,654.2105361859096,1581934.2986500864,654679.9132744754,0.38101,100000,0,958223,9996.275741200525,0,0.0,0,0.0,43519,453.4102526654009,0,0.0,41783,432.2539589809927,1243298,0,44683,0,0,0,0,0,79,0.8241357007239876,0,0.0,3,0.0312962924325564,0,0.0,0.05189,0.1361906511640114,0.3066101368279051,0.01591,0.3574060427413412,0.6425939572586588,23.23178610218891,4.220429711943408,0.3070346849047386,0.2691744015632633,0.2178798241328773,0.2059110893991206,11.528051513074864,6.146375172167801,16.919612755233178,11545.824981264532,47.07602117817625,13.531682369679316,14.217097227135236,9.961993697307358,9.36524788405433,0.5854909623839766,0.8103448275862069,0.6992840095465394,0.5908071748878924,0.1162514827995255,0.7487479131886478,0.9276315789473684,0.8640483383685801,0.7685185185185185,0.1128205128205128,0.5179558011049724,0.7275541795665634,0.6403887688984882,0.5340236686390533,0.1172839506172839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0045077442032435,0.0067732678989688,0.0089927327351711,0.0113500111772715,0.0137347264754657,0.0159089057280208,0.0177837600823926,0.0199328084632744,0.0222597137014314,0.0245443374974401,0.0266550433311112,0.0285626251733169,0.0307450189777718,0.0327831695205126,0.0347020086290539,0.0366402266874877,0.0387959173099839,0.0406747988580327,0.0429417212065718,0.0572974776597186,0.0710703913415933,0.0847109817511752,0.0980262536594579,0.1101209889531825,0.1254445863368196,0.1363164693674424,0.1461795078832178,0.1559590961921924,0.1653325057254767,0.1770465023804662,0.1885710583433217,0.1990555796786799,0.2081877729257641,0.2177632807266097,0.2273033993738868,0.2362124876026611,0.2443238628065563,0.2512919896640826,0.2579065963603921,0.2634133937446543,0.2695917437090195,0.2750490694539693,0.279799502344722,0.2851425106124924,0.2895057399136244,0.2935341430769423,0.2971090035342876,0.3007349516070596,0.3037662748405461,0.3019060676936312,0.3000700039806185,0.2975530316856425,0.2951211092572349,0.2934845281568325,0.2904448707408422,0.2865053645030362,0.2864062627415804,0.2865804983270207,0.2874669787068064,0.2884823191861981,0.2898696088264794,0.2909807027049556,0.291442542787286,0.2938548286902088,0.2952393272962484,0.2963224494407411,0.299582528506449,0.3027287542040844,0.3058888320679753,0.3097826086956521,0.3113991007669928,0.3159146379623255,0.3198139818556072,0.3240950226244344,0.3298454221165279,0.3353302611367127,0.3353909465020576,0.3461644973691498,0.3588349514563106,0.0,2.231201785545052,52.04213836660863,160.7784286789837,203.57717761002743,fqhc3_100Compliance_baseline,21 -100000,95692,47666,454.9074112778498,5207,53.10788780671321,4082,42.14563390879071,1543,15.80069389290641,77.29747507811412,79.70012537813302,63.28577397120039,65.06548759732244,77.0942407279573,79.49992100425237,63.20841507141038,64.99164469712342,0.2032343501568192,200.20437388065204,0.0773588997900134,73.84290019902551,209.26972,147.2733416636827,218690.4652426535,153903.18067555755,501.708,335.6125547394456,523768.7162981232,350199.0377268815,452.40499,221.1946005892104,469878.6105421561,228913.35364960128,2892.4007,1337.0893079611494,2987824.478535301,1362864.3051463112,928.37269,421.60920432485335,956616.8227229026,427256.51098284335,1508.50008,645.1479567975033,1545567.0066463237,646921.5522558567,0.38262,100000,0,951226,9940.475692847887,0,0.0,0,0.0,43622,455.3045186640472,0,0.0,40976,425.2497596455294,1244931,0,44686,0,0,0,0,0,84,0.8778163273836894,0,0.0,3,0.031350583120846,0,0.0,0.05207,0.1360880246719983,0.2963318609564048,0.01543,0.3381109886071297,0.6618890113928703,24.05583040068285,4.1484882932323055,0.3236158745712886,0.2601665850073493,0.2040666340029397,0.2121509064184223,10.965013037170086,5.726445967249428,16.44715030255415,11619.82304432688,46.234772116623546,12.796139467013951,14.917164550123903,9.100468029545183,9.421000069940495,0.5764331210191083,0.8163841807909604,0.691900075700227,0.56062424969988,0.1212471131639722,0.7464788732394366,0.9182692307692308,0.8497109826589595,0.7391304347826086,0.1894736842105263,0.5108621860149355,0.7507739938080495,0.6358974358974359,0.5100154083204931,0.1020710059171597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021180428878349,0.0044225346398068,0.0065993197624244,0.0092775124479219,0.011444091796875,0.0137097924178532,0.0158704255232344,0.0179122158452646,0.0199128620520373,0.0218228366615463,0.0240532556517457,0.0261965667087866,0.0283333333333333,0.0303679812042084,0.032523515017604,0.0341546163553238,0.0360892592477431,0.0381799869168388,0.0403349979192675,0.042323686048087,0.0567539617043947,0.0712573408565117,0.0850822699798522,0.098315818264062,0.1099789029535865,0.1256836960316536,0.1371071318635828,0.1474384918521674,0.157489493214702,0.1665467664522779,0.1787031644340904,0.189825253664036,0.2005294290663093,0.2100586205007396,0.2194172830796027,0.2289905243769833,0.2375209567452777,0.245902562658406,0.253206694009248,0.2601070597540147,0.2658070943676003,0.2719777967749113,0.2781955777680401,0.2833417332661339,0.2879366546657584,0.2914301929625426,0.2946445349201378,0.2989144284185311,0.3019303616833584,0.3053885092716195,0.3029195603802845,0.300610705965067,0.298780487804878,0.2960743442765329,0.2946384799370107,0.2925388664463214,0.2889485741369776,0.2887634012603323,0.2894696570369489,0.2914060278646573,0.2922503725782414,0.2933377852849904,0.2934139224676949,0.2945777777777777,0.2966097642614642,0.2998135391308851,0.2999179237539977,0.3046299762885311,0.3080486190923971,0.3125738130855838,0.316504854368932,0.3203112676796887,0.3240850427083983,0.3231867718902668,0.3245980856797695,0.330333138515488,0.3329277566539924,0.3344064386317907,0.3356986899563319,0.3259541984732824,0.0,1.919012425582493,49.477984213950485,149.51032824169897,220.37105299565815,fqhc3_100Compliance_baseline,22 -100000,95831,47720,454.2475816802496,5042,51.465600901587166,4024,41.416660579561935,1541,15.683860128768352,77.32864418348662,79.63911923166326,63.32870225298407,65.03845112389148,77.13998187248107,79.45575715778652,63.258001263996,64.97238438705345,0.1886623110055438,183.36207387673653,0.0707009889880652,66.06673683802455,210.22782,148.0338903661224,219373.50126785695,154473.90757283385,500.45028,335.2603891250952,521627.5631058843,349257.9566200465,454.7016,222.32421341508055,471247.6964656531,229452.0058960029,2832.7842,1300.4145040302426,2918320.647807077,1320117.7581025532,913.17269,409.06187998743394,940421.053730004,415377.8598986913,1498.52386,623.6248665275706,1527165.0927153009,620391.3072206893,0.38218,100000,0,955581,9971.522784902589,0,0.0,0,0.0,43566,454.007575836629,0,0.0,41274,427.4921476348989,1241592,0,44579,0,0,0,0,0,64,0.6678423474658514,0,0.0,2,0.0208700733583078,0,0.0,0.05042,0.1319273640692867,0.3056326854422848,0.01541,0.3486692015209126,0.6513307984790875,23.60046489510893,4.157377389186348,0.3098906560636182,0.2664015904572565,0.2184393638170974,0.2052683896620278,11.586218555171364,6.244988262553353,16.211688873895273,11597.79409557336,45.68399455647713,12.966300061209347,14.010453415418043,9.884306872789848,8.822934207059888,0.5760437375745527,0.8013059701492538,0.6920609462710505,0.5858930602957907,0.0980629539951573,0.7451327433628319,0.9253012048192772,0.8477611940298507,0.7072072072072072,0.1075949367088607,0.5100207325501037,0.7229832572298326,0.6348684210526315,0.5449010654490106,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020965209905302,0.004480395734501,0.006655506518541,0.0089387290752478,0.0109314622737441,0.0133374058236611,0.0153399245744572,0.0174206782532376,0.019876550779733,0.0221742422692016,0.0243857456095411,0.026487007922499,0.0285696668242451,0.030790928463336,0.0330195002732719,0.0350099689052799,0.0367672168468981,0.0388806519507719,0.040873349744996,0.0428831641946396,0.056961365153538,0.0702807255998745,0.0840827620904345,0.0967108028583438,0.1093965744400527,0.1253065279891763,0.1371906609835231,0.1480326857191496,0.1580936922699072,0.1681477590661078,0.1807737447912741,0.1922673330520667,0.2021004794572674,0.2113753606715047,0.2196860527792139,0.2293413372614604,0.2384848958449619,0.2463107419038935,0.2537406625343414,0.2607394668959587,0.2661597839566986,0.2717405319236224,0.2776604328839946,0.2819696933310919,0.2859158355631233,0.2887935286573937,0.2937308198158702,0.2968443572829381,0.3004251788862387,0.3036591809775429,0.3012121212121212,0.2982924814100798,0.2969144598541176,0.2949360125079622,0.2928842293107294,0.2900467397134319,0.2870082979666814,0.2879630085100103,0.2886943786931866,0.2894226837117508,0.288912540144895,0.2891798759476223,0.2897511774267495,0.2912422719387982,0.2925778819926305,0.2941772546574168,0.2964872521246459,0.3012894564301102,0.3063260340632603,0.3092694422623723,0.3121640543836668,0.3178388645597003,0.3222166499498495,0.3278364617372141,0.3299934450791272,0.3325426944971537,0.3369105199516324,0.3388263665594855,0.339469409853817,0.3388208269525268,0.0,2.151753963788795,49.16514085822232,147.36536591230433,215.80080574454792,fqhc3_100Compliance_baseline,23 -100000,95747,47606,453.8523400210973,5107,52.17918054873782,4034,41.5469936394874,1562,15.843838449246451,77.35098256499538,79.69991595713307,63.33757887846742,65.07122262402436,77.15286088963819,79.50564754659105,63.26284561157632,65.00070587844982,0.1981216753571857,194.2684105420227,0.0747332668911013,70.5167455745368,212.5332,149.4202204258657,221973.5135304501,156057.1092837015,500.89402,335.7411418979327,522579.1095282359,350090.2815732428,452.00956,221.39910713557703,469052.2836224634,228768.9321517028,2859.07116,1323.3519095874324,2944123.0847963905,1340188.4963366298,948.83537,428.7004317991792,974609.011248394,431383.6601599183,1520.20206,650.600604280763,1543892.69637691,640587.8065205414,0.38105,100000,0,966060,10089.705160475,0,0.0,0,0.0,43578,454.53121246618696,0,0.0,40961,424.77571098833386,1233137,0,44262,0,0,0,0,0,86,0.8982004658109393,0,0.0,1,0.0104441914629178,0,0.0,0.05107,0.1340244062458994,0.3058547092226356,0.01562,0.359143018229656,0.6408569817703439,23.701290748691253,4.200464514185826,0.3262270699058007,0.2550818046603867,0.2074863658899355,0.211204759543877,11.145510261035282,5.984958687985248,16.81379417528223,11544.63013156684,46.01279377714911,12.613889968744214,14.91179086992416,9.33296783433224,9.154145104148483,0.5770946950917204,0.7988338192419825,0.6968085106382979,0.5806451612903226,0.1208920187793427,0.762384550797649,0.9152941176470588,0.8912466843501327,0.7311320754716981,0.1581920903954802,0.4994723883221948,0.7168874172185431,0.6187433439829606,0.5296,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771490486364,0.0044495798745198,0.0068694002212007,0.0090497277971885,0.011499628880235,0.0135904144312895,0.0158815914210864,0.0177479766898339,0.0200942364496775,0.022300913938327,0.0241609775098919,0.0263395606651611,0.0284277841750287,0.0305735763567088,0.0324647189898489,0.0344492563384357,0.036438001553197,0.038487480413826,0.0404736656062212,0.0425773518074799,0.0571330145938158,0.0713022920088291,0.0845094050789523,0.0973673696826965,0.1096153237963714,0.1254637900233612,0.1362074451161311,0.1459053903049007,0.1558133572618895,0.1655224937249265,0.177310770490214,0.189025974025974,0.199693281561001,0.2086921317825216,0.2169763550702302,0.2259154992019861,0.2358998414081172,0.2447069411632354,0.2528937812074444,0.2594867798241894,0.2654008145885402,0.2703458442530887,0.275845347778264,0.2804435556300669,0.2848891531470313,0.2894989417728995,0.2939030028866701,0.2977282545168094,0.3014645001034982,0.3042841691508164,0.3022350881917329,0.2991783536795167,0.2969302509051463,0.2941763149906769,0.292120311919792,0.2890504246690642,0.2860058539672494,0.286933403354449,0.2878614689072763,0.2884560603902578,0.2888785133999439,0.2900222427809381,0.2895895499029693,0.2903441214441526,0.2912215291221529,0.2925747198007472,0.2937445133520233,0.2965430940090724,0.3012954450480568,0.3055610294407441,0.3093502377179081,0.3138177014531043,0.3151276276276276,0.3192211908535204,0.3225896599906847,0.3303866100895803,0.3328206705629037,0.3387746876259572,0.3432876712328767,0.3442873519296905,0.0,2.266700030853315,51.8818999591407,144.8055138219472,211.4352129272956,fqhc3_100Compliance_baseline,24 -100000,95848,47547,452.5707370002504,5310,54.31516567899174,4217,43.46465236624656,1645,16.80786244887739,77.51248185563044,79.79888247939117,63.42745123530996,65.11142832577089,77.30491961622145,79.59293000346344,63.35070614131371,65.03758679657746,0.2075622394089862,205.9524759277309,0.0767450939962515,73.84152919343023,212.3693,149.32159286673345,221568.83816042065,155789.99339238528,505.56458,338.2042250170065,526933.8431683499,352323.6739598181,457.02413,223.0422028828631,473579.5634755029,230299.80495075716,3019.36883,1384.5057140425097,3112724.250897254,1407041.173569096,987.40661,441.0787489656263,1015411.7352474752,445417.7228169872,1604.42336,669.5720580485588,1640671.9597696357,671705.4940976992,0.38149,100000,0,965315,10071.310825473667,0,0.0,0,0.0,43989,458.40288790585095,0,0.0,41336,428.18838160420665,1239791,0,44427,0,0,0,0,0,92,0.928553543109924,0,0.0,1,0.0104331858776395,0,0.0,0.0531,0.1391910666072505,0.3097928436911488,0.01645,0.3494410385863685,0.6505589614136315,23.89873685371462,4.124594906506544,0.2990277448423049,0.2682001422812426,0.2160303533317524,0.2167417595447,11.263256048865252,6.07241724364473,17.343787528684942,11588.477056754997,47.84500965958106,13.683739451712652,14.15353871598466,10.162831477565808,9.844900014317943,0.5677021579321793,0.7984084880636605,0.6796193497224425,0.5817782656421515,0.1137855579868709,0.7470588235294118,0.9072847682119204,0.8680981595092024,0.6820083682008368,0.1860465116279069,0.497191939213743,0.7256637168141593,0.613903743315508,0.5461309523809523,0.0970350404312668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022058972335215,0.0045675048865213,0.0069228352203042,0.0090105630587208,0.011255815843475,0.0134445235431709,0.015556596281892,0.0179780551476586,0.0201055823879591,0.022364249923305,0.0246070349700476,0.0264693515470366,0.0287085272751559,0.0306588724450939,0.0328041237113402,0.0348492516810064,0.0367649341376848,0.0388881977274612,0.0407927950387983,0.042641792287832,0.0569622893375604,0.0707444583856127,0.0841628769620889,0.0975076932771785,0.1100090551098195,0.1255478923965737,0.136338105785229,0.1472711613911601,0.1575184600281702,0.1662972599659503,0.1784351042439491,0.1902992731474981,0.2010269548508961,0.2108481090051533,0.2191872597473915,0.2287995046768237,0.2367480145691086,0.2448539568102954,0.2523013168174458,0.2585038677315783,0.2649653470484449,0.2706605795211031,0.2764462468905839,0.2809907490301402,0.285671074760136,0.289721461803808,0.2937841138499115,0.2979986581768928,0.3019840247358928,0.3053908709338929,0.3029446817627917,0.3003460586247931,0.2981682828876481,0.2955045041162019,0.294002983002791,0.2907063536795284,0.2884730586121007,0.2889825799915024,0.2899634571258604,0.2903948374251124,0.29054696678664,0.2907424885952493,0.2916675348488321,0.2917915584271409,0.2935170641153791,0.2934275326818451,0.294426118582424,0.2992123542545274,0.3036814061310636,0.3072399423608677,0.3114469109387536,0.3164977916341907,0.3213867127259268,0.3256213150235092,0.3269478725363787,0.3311740890688259,0.336069243396508,0.3366647070350774,0.3407328162610323,0.3354453969437197,0.0,2.0969532126881645,51.8558633457066,155.00204600106863,224.19074603635272,fqhc3_100Compliance_baseline,25 -100000,95732,47551,454.2681652947813,5084,51.97843981113943,3988,41.02076630593741,1532,15.658296076547026,77.31288813594676,79.6718433437842,63.318020272784125,65.062429443954,77.1175660945061,79.47959892826452,63.24495040676476,64.99271872612566,0.1953220414406615,192.2444155196814,0.0730698660193667,69.71071782834315,210.5741,148.20725916117726,219962.08164459115,154814.75281115746,499.82361,335.5886498034798,521455.9081602807,349898.8946261228,454.23526,222.59059678326244,470215.3511887352,229257.44034915217,2807.95613,1304.0752986643552,2892776.898006936,1321848.857920398,933.48649,424.1369232394676,958979.1083441272,426921.3149620476,1485.50228,630.1512215947685,1519797.559854594,630604.0119175669,0.37994,100000,0,957155,9998.276438390509,0,0.0,0,0.0,43365,452.314795470689,0,0.0,41152,425.6361509213221,1240074,0,44517,0,0,0,0,0,88,0.8983412025237121,0,0.0,2,0.0208916558726444,0,0.0,0.05084,0.1338106016739485,0.3013375295043273,0.01532,0.3540642722117202,0.6459357277882798,23.495685207393397,4.166481995652592,0.3109327983951855,0.272567703109328,0.2138916750250752,0.2026078234704112,11.491740955572524,6.284687566901832,16.467009412775333,11526.119595858512,45.60713128040487,13.171570781638536,14.037324044202837,9.47900442266629,8.9192320318972,0.5797392176529589,0.7994480220791168,0.7032258064516129,0.5486518171160609,0.1274752475247524,0.7534013605442177,0.9352678571428572,0.8647058823529412,0.7512953367875648,0.1435897435897435,0.5071123755334281,0.704225352112676,0.6422222222222222,0.4893939393939394,0.1223491027732463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0042368156985171,0.006503718584807,0.0085219193109332,0.0109030624179981,0.0129429735234215,0.0149383093708575,0.0172433155353186,0.0193837283006522,0.0214619960885102,0.02396161220535,0.0259896287929352,0.0279226188639659,0.0299943348612041,0.0319615388583396,0.0337963537144983,0.0357131762878591,0.0377268435415088,0.039712993292778,0.0416970555752359,0.0566274116762716,0.0705526607654801,0.0837667785234899,0.0965188043443976,0.1089356318203384,0.1241035730151678,0.134983711972496,0.1450818014412381,0.1551024331887804,0.1649957646655158,0.1768911091492431,0.1885286675173562,0.1986628254606729,0.2083169312863578,0.2179456153473841,0.2271332853424885,0.2348300564618715,0.2430909397671672,0.2519328360750655,0.2585027779368807,0.2654521042640863,0.271381463551533,0.277510320436238,0.2818183996740875,0.2867467537988752,0.2905900762700378,0.2940580054826071,0.2969308454484171,0.3015289411338244,0.304314533164343,0.3017675747042815,0.2993904871974794,0.2977359500697389,0.2956874990964421,0.2931824266040037,0.2903240641383328,0.2874443229191434,0.2879342915811088,0.2875235002563664,0.2885704586467509,0.2892967506320816,0.2899828073434381,0.2899859900048094,0.2901945924258297,0.2918126409751884,0.29278951201748,0.2926440899655947,0.2953788116944357,0.3003648866746193,0.3050732986373207,0.3085464640029125,0.3137285986049461,0.3205440139746709,0.324461247637051,0.3221671189295406,0.3262428017393348,0.3318049824239645,0.3351394742123219,0.3339763020115734,0.3344620015048909,0.0,2.529162787945651,50.9293347610955,146.9085463831031,205.6647359617456,fqhc3_100Compliance_baseline,26 -100000,95791,47823,455.7630675115616,5120,52.30136442880856,4056,41.86197033124198,1564,15.993151757471995,77.37208356525132,79.70862143565284,63.35007434272507,65.0785728188524,77.17416233131635,79.5143567514967,63.27553056703312,65.00769452078555,0.1979212339349629,194.2646841561384,0.07454377569195,70.87829806684454,211.11662,148.59029839999116,220392.9596726206,155119.26840725244,502.34395,336.38024841994627,523978.69319664687,350722.6445281355,453.54291,221.5010668638085,470823.5324821748,229154.5629343976,2869.4343,1322.113141552695,2962877.6607405706,1347568.1238871028,969.01089,438.891027185054,1000654.602206888,447241.58551957295,1529.88988,646.8837793896552,1565617.500600265,647438.5679415858,0.38391,100000,0,959621,10017.861803300935,0,0.0,0,0.0,43669,455.3976887181468,0,0.0,41201,427.3887943543757,1239900,0,44519,0,0,0,0,0,83,0.866469710098026,0,0.0,1,0.0104393940975665,0,0.0,0.0512,0.1333645906592691,0.30546875,0.01564,0.3518103770063456,0.6481896229936543,23.650921587239612,4.1131549340372935,0.2990631163708087,0.2736686390532544,0.2152366863905325,0.2120315581854043,11.254145100885282,5.977295354867545,16.631605342568662,11599.081150129636,46.08835506469244,13.34924019877133,13.763497581155528,9.58902191212342,9.38659537264216,0.5808678500986193,0.8117117117117117,0.7015663643858203,0.5715922107674685,0.1220930232558139,0.7462946817785527,0.9363207547169812,0.8348909657320872,0.7836538461538461,0.1443298969072164,0.5156411137848058,0.7346938775510204,0.6535874439461884,0.5052631578947369,0.1156156156156156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020257267294641,0.0041259478528851,0.0064338048750786,0.0089088895886876,0.0111766500559341,0.0134183091708747,0.0155235503368702,0.0176745515031532,0.0200498691955526,0.0221471701975232,0.0240210696754491,0.026385738769897,0.0283702523513388,0.0307248764415156,0.0327304225874976,0.0346747946479309,0.0367353276058379,0.0389397600356731,0.0407609825028053,0.0426010369167343,0.0571544851191718,0.0708705065316752,0.0849424492106421,0.0977293503273055,0.1107341894838866,0.1264539029569296,0.1373496529433582,0.1474519143868752,0.1570411941062874,0.1657900656647349,0.1779329188270476,0.1895821173011652,0.2003042816778961,0.2101155405922412,0.2189829986583676,0.2282154919439676,0.2376660606128208,0.2465043611186044,0.2546017137416693,0.2605057408106963,0.26566456610973,0.272392551985319,0.2772781526607499,0.2826024511681348,0.2871025270845718,0.2911615198099622,0.2949617785784884,0.2985920504218766,0.302620183296493,0.3061208361322954,0.3040436189785531,0.3016654776930253,0.2993033565547815,0.2961717238790888,0.2936472612901311,0.2902589659705873,0.2871498317296298,0.2864674580433893,0.2876452818596078,0.2881443482597698,0.2884105589366389,0.2895663983309386,0.2900796796128655,0.2905944888019038,0.2911471172486418,0.2923820160515311,0.2928528767668724,0.2976354741595584,0.3020509416162957,0.3075735992402659,0.3108493771234428,0.3163254537779654,0.3203125,0.3217825527729439,0.3251028806584362,0.3327460653042048,0.3383594692400482,0.3399960807368214,0.3431793770139635,0.3404255319148936,0.0,1.89556963652082,50.1260299410573,150.17726666002633,214.55689696734103,fqhc3_100Compliance_baseline,27 -100000,95645,47690,455.4968895394428,5147,52.53803126143552,4086,42.114067645982544,1568,15.975743635318103,77.25911226955019,79.65564385134455,63.27736057920528,65.04597281273391,77.05803645647332,79.45912502712308,63.20077288522579,64.97376307420765,0.2010758130768692,196.5188242214708,0.0765876939794907,72.20973852625434,208.8757,147.04185764856496,218386.1989649224,153736.87871667626,499.61798,333.99637666971,521755.9516963773,348593.10645586275,454.29995,222.6478107886776,471444.7592660359,230029.13720480056,2916.22034,1345.350048829988,3007874.734696011,1365816.25046985,952.63414,427.7876072135288,977605.7817972712,429094.69197742734,1529.6439,655.1086213432043,1560880.5687699304,652642.5619308872,0.38155,100000,0,949435,9926.645407496471,0,0.0,0,0.0,43427,453.384912959381,0,0.0,41115,426.3369752731455,1245145,0,44713,0,0,0,0,0,83,0.8677923571540593,0,0.0,2,0.0209106592085315,0,0.0,0.05147,0.1348971301271131,0.3046434816397901,0.01568,0.3374187558031569,0.662581244196843,24.132521614073127,4.122877929518339,0.3127753303964757,0.2577092511013216,0.2158590308370044,0.2136563876651982,11.184230683053766,6.080405189441222,16.874462868532024,11581.252470408408,46.42567372283219,12.754397852840343,14.425114956564396,9.762510156422346,9.483650757005108,0.5658345570239843,0.7910731244064577,0.6979655712050078,0.5578231292517006,0.1088201603665521,0.7416309012875536,0.9212410501193318,0.8633720930232558,0.7162790697674418,0.1443850267379679,0.4957206436152003,0.7050473186119873,0.6370449678800857,0.5067466266866567,0.0991253644314868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021676812900742,0.0043906346647197,0.006343503237724,0.00861648512437,0.010804211811384,0.0130568512822602,0.0152639843383567,0.0174260134548832,0.0194641232455198,0.0215673429279177,0.0236013000194797,0.0258750808596276,0.0278220622267935,0.0297199015174147,0.031980764070917,0.0339754128022994,0.0359573608478105,0.0380323648781905,0.040190969513527,0.0421075676859082,0.0563486257707179,0.0703639696255564,0.0844814550342336,0.0974685143843983,0.1094507397746353,0.1251813800773182,0.1360980687926236,0.1466400971846294,0.1569080389703444,0.1660133807278858,0.1780620941120628,0.1905701065224694,0.2005076142131979,0.2099398481412089,0.2191673559415494,0.2288309698053282,0.238182611516989,0.2461965286627795,0.2535393852556886,0.2602906542592911,0.2660780378006474,0.272236817414149,0.277940600638371,0.2817966505163687,0.2868933399978056,0.2915291936978684,0.2958449935372143,0.2989504023670148,0.3016529997924019,0.3050641279915377,0.3024833744756046,0.2989820128007062,0.2971876766534765,0.2954512467705884,0.2926410929483355,0.2891103705637545,0.2867341434781229,0.2861465596632022,0.2873140078420629,0.2883336907570233,0.2889038735296321,0.28982388248302,0.2913423717465896,0.2941215720290919,0.296068531501998,0.2975487147595356,0.2982784007248839,0.304455290657656,0.3076815593670311,0.3112305382122817,0.3133130864421377,0.3170307059195948,0.3225806451612903,0.3235892413169592,0.3247823671050194,0.3320427079666784,0.3338377723970944,0.3377271819452766,0.3345284059569773,0.3324303405572755,0.0,2.281671284729314,50.61619385616627,146.5833343031285,220.4107980102149,fqhc3_100Compliance_baseline,28 -100000,95636,47756,454.81826927098587,5125,52.54297544857585,4009,41.51156468275545,1511,15.54853820736961,77.28554750318864,79.71749834107742,63.27381344368565,65.0720591107774,77.09238682194719,79.52072496539071,63.20235217129369,65.00007721754596,0.1931606812414514,196.7733756867034,0.0714612723919572,71.98189323143822,209.81466,147.6001548152138,219388.7866493789,154335.34946590595,498.01514,334.13183871588546,520342.52791835705,348981.00999193336,455.36682,223.20875939040957,472747.5427663223,230809.32665904143,2838.67537,1319.3915252348538,2941750.491446736,1353300.0901189928,910.28761,410.5039991549826,941496.9049311976,418971.2538983946,1474.89828,627.1143056956806,1519668.5557739765,639491.8366230524,0.38147,100000,0,953703,9972.217574971768,0,0.0,0,0.0,43306,452.40286084737966,0,0.0,41211,427.54820360533694,1241697,0,44584,0,0,0,0,0,94,0.9828934710778368,0,0.0,2,0.0209126270442092,0,0.0,0.05125,0.1343487036988492,0.2948292682926829,0.01511,0.346067415730337,0.6539325842696629,23.569833391679595,4.229348081587296,0.3130456472935894,0.2698927413320029,0.2027937141431778,0.2142678972312297,11.272883482031077,5.865976931696667,16.25305386972721,11560.826350753989,45.86620485735294,13.227709032194264,14.146285097249068,9.112184957271827,9.380025770637785,0.575704664504864,0.7939001848428835,0.7107569721115538,0.5867158671586716,0.0931315483119906,0.7472245943637916,0.908675799086758,0.8816901408450705,0.7164179104477612,0.1129943502824858,0.5049330514446794,0.7158385093167702,0.6433333333333333,0.5441176470588235,0.0879765395894428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713011755168,0.0046455486920447,0.0069954920196564,0.0093510189561416,0.0115268790949416,0.0137619818883761,0.0160765472146565,0.0182351258581235,0.0205173313150116,0.0225310570138156,0.0248148376110461,0.0273116799046454,0.0294795783926218,0.0314597012771484,0.0334021683014971,0.0353736993442419,0.0372941773830865,0.0391613184622094,0.0412785312086928,0.0433689700130378,0.0581588602368583,0.0723327116122136,0.0854750246916174,0.0985473353769659,0.1111850443599493,0.1264269225067242,0.1371349036857595,0.1472061739186049,0.156890648405735,0.1663819867435839,0.1772378599402302,0.1877310323147134,0.198638047504903,0.2084437920382096,0.2171823502827349,0.2270886272595124,0.2361336179438751,0.2445916711736073,0.2521500062483669,0.2588153054559206,0.2649997105979047,0.2707821242128426,0.2763597582651973,0.280742598615128,0.2859141223695414,0.2902931306750888,0.293990234130462,0.297519608841805,0.3007634775169481,0.304216390326328,0.301405454888129,0.2983821083451319,0.2967761925552441,0.2942833208157606,0.2922547230013504,0.2899116561787087,0.2867680813005556,0.2857049072706384,0.2857752004093467,0.2866370465535392,0.2872841444270015,0.2880728889938406,0.2889176819711186,0.2898944461764575,0.2909299710505538,0.2929094342551155,0.2933382199543289,0.2985706723133933,0.2995983657641438,0.3044962335216573,0.3064930383454242,0.3105642320029447,0.3130033085710718,0.312471791785768,0.3149591685226429,0.3186953989516599,0.3179626280892104,0.3200239568776203,0.3205818965517241,0.3308550185873606,0.0,1.6293966236975814,51.52850364493662,151.02157042825735,205.2044727464961,fqhc3_100Compliance_baseline,29 -100000,95810,47202,449.4311658490763,5003,50.97588978185993,3919,40.34025675816721,1556,15.896044254253209,77.35864855579545,79.66396164813085,63.35358995694328,65.05451502192007,77.16168839436264,79.46817874503462,63.28032486565671,64.98356608849052,0.1969601614328127,195.78290309623011,0.0732650912865651,70.94893342954833,210.41042,148.08350483987576,219611.71067738236,154559.13065176652,499.16554,334.9019979106038,520378.7182966288,348936.4317071014,451.71185,221.07473568511475,467781.51549942594,227940.77810948336,2802.83616,1311.4263432921405,2885539.087777893,1329252.03035914,917.77094,419.3639313581046,941804.508923912,421836.2578794973,1517.43622,642.1649157799549,1551038.2841039556,643757.0617663995,0.37865,100000,0,956411,9982.35048533556,0,0.0,0,0.0,43319,451.4977559753679,0,0.0,40990,424.0789061684584,1243751,0,44692,0,0,0,0,0,90,0.9393591483143722,0,0.0,0,0.0,0,0.0,0.05003,0.1321272943351379,0.3110133919648211,0.01556,0.3585916570991198,0.6414083429008802,23.7940746461583,4.160892091651236,0.3197244194947691,0.2561878030109721,0.2122990558816024,0.2117887216126563,11.618180068378043,6.271727401342367,16.64537840194143,11473.221180054468,45.08888069558182,12.213233037539576,14.366154326849612,9.33488819797639,9.174605133216238,0.5805052309262567,0.7908366533864541,0.7166799680766162,0.5889423076923077,0.1120481927710843,0.7595486111111112,0.9242053789731052,0.883008356545961,0.7183098591549296,0.1578947368421052,0.5059631369714492,0.6991596638655462,0.6498881431767338,0.5444264943457189,0.1001517450682852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0042236830110707,0.0066202337865101,0.0087470952946309,0.0109219108772072,0.0131529423732261,0.0152283746893207,0.0172696948986565,0.0195329260568416,0.0215123058982385,0.023465666994428,0.0256323466059449,0.0278317152103559,0.0298527429329985,0.0322407695718071,0.0343299767621998,0.0362859419135221,0.0382625822837298,0.0403518976297804,0.042410110137203,0.0570722191506452,0.0718728764831948,0.0855989938161618,0.098330163200538,0.1097622660596863,0.1252892631845895,0.1361713855645187,0.1460631135597366,0.1557536293766012,0.1647763818018095,0.1767232562896298,0.189219885773624,0.1990017290314161,0.208894819740987,0.2176670042714342,0.2275628948243378,0.2362217906649702,0.2431739174457457,0.2502070780996471,0.2572992909751097,0.2635001446340758,0.2688760941815288,0.2741971757631712,0.2781746697672188,0.2830129062051867,0.2878533928175297,0.2913285401688028,0.2962181670309561,0.2997956174165007,0.303064654320174,0.300217812197483,0.2979793123342995,0.2953922684541123,0.2921693258961387,0.290229799851742,0.2869732561513906,0.283815814423867,0.2836153745244654,0.2839192119235825,0.2838897522462176,0.2842399040982992,0.2860105468981454,0.2869235443250152,0.2863866520934175,0.2867117765620501,0.2884114583333333,0.2901482176893972,0.2935154655361909,0.2963416768772974,0.3008081768481103,0.3047278326238565,0.3088850082023601,0.312813126252505,0.3139146285887893,0.3160048358597601,0.3172863970159692,0.3186779866585809,0.3270046455261563,0.3190899001109878,0.3145760062524423,0.0,1.9452714200457493,50.30146675481514,152.83775762291182,195.49295341503725,fqhc3_100Compliance_baseline,30 -100000,95863,47318,448.9740567267872,5130,52.2203561332318,4052,41.70535034371969,1617,16.50271741965096,77.41454581429173,79.70188235449174,63.37712166936033,65.06749736613277,77.20756546195082,79.49789780497345,63.29857471367588,64.9923777021403,0.2069803523409064,203.98454951829592,0.0785469556844447,75.11966399246717,212.03512,149.16604096861693,221185.56690276752,155603.351625358,499.96486,335.2636073268799,520981.473561228,349172.4829463713,454.00401,222.43725696253185,470059.9710002817,229343.0701299872,2897.61663,1359.8325587017848,2983939.038002149,1379924.910848741,949.65408,434.4275941218333,976467.8655998664,439072.1232252082,1575.07632,673.1966171491335,1608501.3195915003,672425.7539615157,0.3791,100000,0,963796,10053.88940467125,0,0.0,0,0.0,43450,452.67725817051416,0,0.0,41196,426.1811126294817,1236997,0,44402,0,0,0,0,0,82,0.8553873757341206,0,0.0,4,0.0417262134504449,0,0.0,0.0513,0.135320495911369,0.3152046783625731,0.01617,0.3601274124039723,0.6398725875960277,23.593448203157305,4.114836487140237,0.31071076011846,0.2618460019743336,0.2105133267522211,0.2169299111549852,11.27631717421528,6.093438336601053,17.230435279214817,11499.256770675784,46.36807697433077,12.933343618691746,14.313589900994664,9.512708900451484,9.608434554192876,0.5831688055281342,0.7992459943449576,0.7291501191421763,0.5861664712778429,0.1103526734926052,0.7561576354679803,0.9248291571753986,0.8701657458563536,0.748898678414097,0.1578947368421052,0.5088214537755822,0.7106109324758842,0.6722408026755853,0.5271565495207667,0.0972423802612481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002318165713418,0.0049440251253735,0.0073111126884817,0.0096643859257304,0.0117491615001524,0.0138992053236194,0.0163101059494702,0.0185340079154596,0.0207567214186483,0.0229113820472956,0.0253515933092279,0.0276957163958641,0.0297260639937527,0.0318881752305665,0.0337653232707515,0.0357253516762719,0.037668894452606,0.039535317526115,0.0414815429971349,0.0436342833368005,0.057221503941277,0.0710105549169192,0.0841539557492457,0.0967911294048469,0.1083099021683042,0.1232572877059569,0.1338679435163508,0.1449269200106298,0.1556378302249157,0.1650493755756913,0.1766344984884184,0.1873918685121107,0.1974068881571082,0.2073615877248584,0.2162869170486145,0.2251953168226988,0.2339376909524765,0.2424341181097938,0.2497618507598094,0.2567863071727059,0.2624603927191988,0.2681498281465547,0.273246532089261,0.2774669653660465,0.2827433735817886,0.2883935282737545,0.2924335890088715,0.2961818274318274,0.3003044633024551,0.3033182862120852,0.3006190283945633,0.2985591728992521,0.2966839713558153,0.2937315155449758,0.2920850079342716,0.2892670556964345,0.2858607688788629,0.2858801786035557,0.2862930682282446,0.286612886030065,0.2876898704687354,0.2878460207612456,0.2883758691036263,0.2892721582206832,0.2890498040340312,0.2902349410060029,0.2900856101488995,0.2948402948402948,0.2981344841988027,0.3023805770140312,0.3065976131501914,0.3114030478192328,0.3142130720575468,0.3200119518936281,0.3217785172860048,0.3275781614559029,0.3318744340476909,0.3357444243520193,0.3401950162513543,0.3530734632683658,0.0,2.222399974216477,52.933572291154654,149.15539698328203,205.9018806926237,fqhc3_100Compliance_baseline,31 -100000,95706,47688,455.57227342068416,5112,52.27467452406327,4040,41.59613817315529,1544,15.808831212254194,77.36002699221102,79.73149119347299,63.33690834044432,65.08818267680867,77.16513927681497,79.53853067636052,63.26396422409149,65.01826962364851,0.1948877153960495,192.96051711246776,0.0729441163528363,69.91305316016394,211.3386,148.6816630822551,220820.63820450127,155352.49940678233,500.29916,335.3465916824815,522157.0016508891,349803.577291373,455.4886,222.6195410426469,471136.0520761499,229097.7071014896,2829.24673,1312.5206471097692,2914907.8532171445,1330131.4725406652,940.45337,424.4367926357682,967424.5815309384,428256.1099991307,1498.92738,637.1292713876878,1535754.121998621,638695.4127394445,0.38115,100000,0,960630,10037.30173656824,0,0.0,0,0.0,43527,454.18260088186736,0,0.0,41311,426.9324807222118,1238434,0,44438,0,0,0,0,0,78,0.8149959250203749,0,0.0,2,0.0208973314107788,0,0.0,0.05112,0.1341204250295159,0.3020344287949921,0.01544,0.3422868867748554,0.6577131132251446,23.894571520432,4.080433388289056,0.3096534653465346,0.275,0.2091584158415841,0.2061881188118811,11.078098592962643,5.921194983497145,16.491670299151373,11589.521441578234,46.465521826962345,13.591775124917255,14.254278903606444,9.450387495396502,9.169080303042142,0.5801980198019802,0.8082808280828083,0.6938449240607514,0.5633136094674556,0.1224489795918367,0.7577796467619848,0.9292035398230089,0.8664772727272727,0.704225352112676,0.1511627906976744,0.5061381971238162,0.7253414264036419,0.6262513904338154,0.5158227848101266,0.1149773071104387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295621436023,0.004521079787935,0.0069208365891032,0.0092139214530973,0.0115138939745311,0.0136043338356889,0.0158817533129459,0.0181061054522443,0.0201073345259391,0.0221441880464382,0.0240931739424634,0.0262514886452301,0.0282485294722553,0.0300960973951735,0.0320360702420503,0.0340143087548074,0.0358533957651348,0.0378216239218657,0.0398044620105049,0.0418251346761,0.0564762889397119,0.070960584430536,0.0844164699711513,0.0969163458909152,0.1092871978155211,0.1256633613125568,0.1370184147997284,0.1484488905443516,0.1587474501511219,0.1682058542759382,0.1796294301411181,0.1909260100846155,0.200971654638727,0.2102904364745362,0.2186544678792144,0.2280031451764732,0.2372437027286316,0.2451343055352545,0.2531259564916736,0.2587424594498689,0.2640370854190028,0.2701259551795854,0.2761857473873362,0.2808067508528338,0.2858131235889593,0.290546528803545,0.2943353294910423,0.2980566493077607,0.3016870273414776,0.3053198777403035,0.3032633687862204,0.3012920962199312,0.2995255459037858,0.2974608585129124,0.2945646688633597,0.2921392973981105,0.2887899737980238,0.2888423737960131,0.288307000817216,0.2887494221811328,0.2898410091811599,0.2908271682669605,0.2917655384871571,0.2927982945082276,0.2934167482509133,0.2934016987777087,0.2945679292356543,0.3000125344697919,0.3026444662095984,0.3074755971748274,0.3125540337625699,0.3159621184064335,0.319827693844425,0.3197797223898612,0.3264397662988036,0.3310312536579656,0.3307680700165987,0.3403445512820512,0.3373362445414847,0.3473122378955394,0.0,2.4321760962896333,51.71014268984405,152.64547043331726,206.8317177682957,fqhc3_100Compliance_baseline,32 -100000,95752,47382,451.11329267273794,5230,53.38791879020804,4199,43.27846937922968,1714,17.482663547497705,77.33346816806463,79.69610845064342,63.32120940122799,65.07056850218864,77.11847250170501,79.48429605273392,63.24057582765236,64.99360612085663,0.2149956663596128,211.81239790949743,0.080633573575632,76.9623813320095,210.11144,147.74342765821436,219432.9517921297,154298.006995378,498.08169,333.92694915676043,519609.17787618015,348172.2172912287,454.31634,222.67439147989828,471086.5360514663,229905.60431954064,3004.3225,1393.6762306790226,3097747.0026735733,1415700.1235143195,1026.66051,459.83227305090696,1055042.1401119558,463066.7903029777,1670.12576,704.5237733825822,1705637.1250731056,703421.1485783192,0.37858,100000,0,955052,9974.22508146044,0,0.0,0,0.0,43307,451.6981368535383,0,0.0,41119,426.0172111287493,1246824,0,44736,0,0,0,0,0,92,0.9608154398863732,0,0.0,0,0.0,0,0.0,0.0523,0.138147815521158,0.3277246653919694,0.01714,0.3540827535701208,0.6459172464298791,23.405072760149668,4.233337677623552,0.3005477494641581,0.258633007859014,0.2169564181948083,0.2238628244820195,11.5811443255059,6.336860010223957,18.169920434471702,11536.933106319007,47.977592229610366,13.3220138734325,14.328201355168693,10.026485695708866,10.300891305300304,0.56799237913789,0.8047882136279927,0.694136291600634,0.575192096597146,0.1180851063829787,0.7473338802296965,0.9340909090909092,0.8756756756756757,0.7230046948356808,0.1122448979591836,0.4946308724832214,0.7167182662538699,0.6188340807174888,0.5300859598853869,0.1196236559139785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405441005116,0.004583620654687,0.0068103850760205,0.0090024182568229,0.0114419967047049,0.0136851001435713,0.0157199363862496,0.0180033067298075,0.0199399043375168,0.0221510241266006,0.0245635258296341,0.0265386787125917,0.0287629957940417,0.0309368595586039,0.0329117058374429,0.0349043927648578,0.0367804665900406,0.0387261463748715,0.0408587617611893,0.0428284259095312,0.0567977786128857,0.0712738233539514,0.0845714765382355,0.0969258437365249,0.108791023369611,0.1240536310958846,0.1347210728457147,0.1461459863337378,0.1565450506258811,0.1651598511416406,0.1774110143928294,0.1890865415828085,0.200232752901254,0.2092015882912742,0.2181370122226256,0.2278370267007763,0.2361925176675486,0.2434333430867226,0.2512653487369209,0.2572445930319094,0.2635443769875686,0.2689937437876395,0.2744091414511817,0.2800642008432349,0.2843711710400213,0.2890693239835148,0.292914527031248,0.296639231824417,0.2999418115988879,0.3034614623854421,0.3011321567518813,0.2988936988936989,0.2967199966229051,0.2947403385130842,0.2931733467975467,0.2902202886117834,0.2873992685591248,0.2877957536179569,0.2887716962777124,0.2894877648569594,0.2897385058546257,0.2910955527068336,0.2922852072241361,0.2932783413220377,0.2930757230289211,0.2950956376713399,0.2959557258407833,0.3011761016151795,0.3034424735329173,0.3053039591820591,0.3079225431953199,0.311847889412637,0.3144563167818981,0.3159698423577793,0.3171441991545326,0.3175247879584279,0.3226499003220365,0.3285655905190028,0.3278367803242035,0.326915671929149,0.0,2.2423888815830866,53.06133696135226,155.8123685243647,218.86772375537896,fqhc3_100Compliance_baseline,33 -100000,95793,47305,449.1351142567828,5267,53.709561241426826,4149,42.685791237355545,1621,16.546094182247135,77.34149214859087,79.68102006351603,63.33904717832892,65.07255315788207,77.13389399224705,79.47593631003822,63.26184982680882,64.99865106036633,0.2075981563438205,205.08375347780827,0.0771973515200983,73.90209751574162,210.59654,148.10994852522273,219845.4375580679,154614.58407735717,500.91086,335.32494500250533,522183.9069660622,349325.8536662442,453.06909,222.47920259403423,468394.07889929326,228736.6469632697,2958.14157,1380.320609248733,3048712.786946854,1401597.6942456458,955.03947,430.204519703005,984865.3346277912,436980.8855584485,1583.37768,669.1347981399542,1618821.4587704735,670566.1538916937,0.37954,100000,0,957257,9992.974434457632,0,0.0,0,0.0,43588,454.3547023268923,0,0.0,41038,423.9245038781539,1245973,0,44710,0,0,0,0,0,96,0.9917217333208064,0,0.0,1,0.010439176140219,0,0.0,0.05267,0.138773251831164,0.307765331308145,0.01621,0.3517003091471176,0.6482996908528823,23.42006521909278,4.148830677513607,0.3179079296215956,0.2581344902386117,0.2111352133044107,0.212822366835382,11.229951543972428,6.0263261988765375,17.419418248965606,11521.223431289573,47.58969944426058,13.052662234422549,14.95188526483654,9.849274316607012,9.735877628394482,0.5760424198602073,0.7917833800186741,0.7012888551933283,0.5970319634703196,0.1064552661381653,0.7502040816326531,0.9187358916478556,0.8607242339832869,0.782051282051282,0.1058201058201058,0.503077975376197,0.7022292993630573,0.6416666666666667,0.5295950155763239,0.1066282420749279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020462534315264,0.0043692912827063,0.0066264143284793,0.0089115148559118,0.0110800223838836,0.013221827219851,0.0154618146214099,0.0177577632774765,0.0199400775106602,0.02230209197309,0.0245260384090885,0.0267297857920354,0.0289234946822735,0.031028834564391,0.0332046969478094,0.0354436921804744,0.037608466046762,0.0397933567086454,0.0418757858204225,0.043827687438839,0.0582306480389804,0.0718527812630698,0.0848711580579919,0.0974033480102142,0.1092692899445697,0.1249907519949268,0.1359352971729613,0.1460517641053997,0.1548460077262928,0.1650610285371368,0.1771935299878391,0.1883890354100912,0.1996849880512709,0.2087216862072356,0.2177698624715543,0.2272204020189498,0.2352285644237413,0.2430906355941716,0.2514887354239782,0.2580611976636529,0.2647198014659202,0.2696532162991841,0.2753426275992439,0.2803402850066406,0.2843404761038551,0.2892366750332201,0.2932270717265846,0.2976238830219334,0.3005786319487497,0.3028640591493337,0.3001397624039133,0.2973113997748057,0.2950427638982669,0.2925259405711977,0.2904877831547071,0.2873134328358209,0.2841076258719688,0.2845656525877063,0.285777717057176,0.2860636569735268,0.2873978865322641,0.2877619612495057,0.2891720279134097,0.2885548770940974,0.289469250210615,0.2899835710746603,0.2914758415388138,0.2972682433286961,0.3011385667453911,0.3059300799427276,0.3087257554220735,0.3125200128081972,0.3177386680172195,0.3191489361702128,0.3241965973534971,0.3278981194953582,0.3257434944237918,0.3232510288065843,0.3260869565217391,0.3305247031788587,0.0,2.4495631155730746,53.12910723200245,151.53042631375007,218.06281745743016,fqhc3_100Compliance_baseline,34 -100000,95708,47304,450.1400091946337,5060,51.75115977765704,3983,41.08329502235968,1538,15.69356793580474,77.3419109081298,79.71106493511374,63.33255108723839,65.08122774415511,77.13948389839928,79.51059107923128,63.25617774778886,65.0077681013493,0.2024270097305276,200.4738558824641,0.0763733394495247,73.4596428058154,211.2121,148.53189929327232,220683.85087975927,155192.77311538465,497.7856,333.8897732463028,519588.0490659088,348342.3572181038,450.40423,220.5565695367877,467396.7902369708,228004.1256552717,2831.07862,1316.2001394273802,2922191.760354412,1339378.954139028,907.40252,413.1580427790144,933723.3042169934,417316.9906932651,1490.00582,641.4754306673836,1522040.5608726544,640911.5990285228,0.37795,100000,0,960055,10031.084130898147,0,0.0,0,0.0,43303,451.895348351235,0,0.0,40820,423.2770510302169,1241348,0,44558,0,0,0,0,0,72,0.7522882099719982,0,0.0,0,0.0,0,0.0,0.0506,0.1338801428760418,0.3039525691699605,0.01538,0.3558108871727256,0.6441891128272744,23.79608648388098,4.149197295772481,0.3068039166457444,0.2638714536781321,0.2244539291990961,0.2048707004770273,11.350705435758506,6.131660552346879,16.554357299370864,11488.29910382089,45.62413292624423,12.795859975617477,13.79826601919222,10.028015933871908,9.001990997562617,0.5676625659050967,0.7878211227402474,0.6914893617021277,0.5715883668903803,0.0943627450980392,0.7394305435720449,0.9195402298850576,0.8498498498498499,0.729064039408867,0.1382978723404255,0.4971671388101983,0.6948051948051948,0.6321709786276716,0.5253256150506512,0.0812101910828025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.004773487382183,0.0070298234936092,0.0094052165434305,0.0114999796640501,0.0134601286959354,0.0156070012334729,0.0175655262513268,0.0198793949304987,0.0222194929738913,0.0244592516658124,0.0267586688435038,0.0288346838879519,0.0308971400313195,0.0328349276125024,0.0348046309696092,0.0370332014664153,0.0392893464228637,0.0412897456693077,0.0432159233013755,0.0574818280558108,0.07172315615383,0.084734025810513,0.0977438864054693,0.109692935728526,0.1252711209860868,0.136652486181984,0.147568908430836,0.1568629545745908,0.1661195150734899,0.1783187032150358,0.1894635455558802,0.1999369112624273,0.2084217202090668,0.2167476849306029,0.2260706892925536,0.234779214986619,0.2420444454436114,0.2499517971169005,0.256757066025861,0.2632455501197044,0.269330213512723,0.2744332434095319,0.2788187372708757,0.2836183443451224,0.2877252668688213,0.2913285241959723,0.2949645777953016,0.2980081021963941,0.3015519603709949,0.2992263706693575,0.2974769602659012,0.2946258006517586,0.2918041289095702,0.2904482564512784,0.2866759269152687,0.2840107888137037,0.28366659030664,0.2833969465648855,0.2837009585575312,0.2849611127729584,0.2849142181029382,0.2857142857142857,0.2868795673452969,0.2881710099675753,0.2890177921132036,0.290878580164396,0.2944754499278861,0.2976791473846585,0.3013453982616978,0.3060650081714182,0.3099904650916411,0.3141656737944441,0.3182129017551858,0.3189452941728441,0.3209847319209374,0.3243531202435312,0.3319053447572419,0.3345383759733036,0.3256792958285495,0.0,2.015255882520334,50.67149859735438,149.5397513936742,205.80965079162357,fqhc3_100Compliance_baseline,35 -100000,95703,47463,452.410060290691,5220,53.2585185417385,4141,42.6318924171656,1564,15.913816703760592,77.33810060160408,79.71962899768135,63.31256206328344,65.07445484110954,77.13611592751603,79.52203635338283,63.236735815371816,65.00295564191471,0.2019846740880524,197.59264429852408,0.0758262479116211,71.49919919483239,211.01366,148.47094237196256,220488.03067824413,155137.1873107035,498.89477,332.9612825894635,520623.4600796213,347240.06441358646,455.1611,222.61903595473237,471065.0867788888,229172.95779632853,2935.03696,1360.9699984911626,3023919.375568164,1379193.100151927,953.86393,430.73724814318814,979351.3682956648,432854.8355037729,1532.09262,650.3906732134319,1561232.228874748,647182.5755182315,0.3814,100000,0,959153,10022.183212647462,0,0.0,0,0.0,43385,452.65038713519954,0,0.0,41274,426.81002685391263,1241906,0,44618,0,0,0,0,0,79,0.8254704659206086,0,0.0,1,0.0104489932395013,0,0.0,0.0522,0.1368641845831148,0.2996168582375479,0.01564,0.3493887976646597,0.6506112023353403,23.641125115891988,4.172566252957227,0.3033083796184496,0.2748128471383724,0.2113016179666747,0.2105771552765032,11.44362506884779,6.081982391912893,16.697453703773572,11570.151434710077,47.33092105380794,13.91316050632054,14.324416044789585,9.56627400312367,9.527070499574153,0.5829509780246317,0.8101933216168717,0.7085987261146497,0.5794285714285714,0.1089449541284403,0.7545605306799337,0.9067796610169492,0.8967551622418879,0.7342995169082126,0.1382978723404255,0.5124361158432709,0.7417417417417418,0.6390403489640131,0.531437125748503,0.1008771929824561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021588858932517,0.0043416514505984,0.0068735151379779,0.0091265727585015,0.0112737965629165,0.0133633465405025,0.0155437243742733,0.0174757678204827,0.0195837807434678,0.0218297240567245,0.0240158328120673,0.0263795617439878,0.0284095582791807,0.0303279954688224,0.0324647189898489,0.0345055649136585,0.0365699612764283,0.0384284187701661,0.0405148304864482,0.0425139594966247,0.0568987665667526,0.0710195450310396,0.0842707240293809,0.0970517391898856,0.1090216841039487,0.1249801643974737,0.1359396389799751,0.145916530888257,0.1556030566985518,0.1659299156670457,0.1781996853651703,0.1896002944742768,0.2002351097178683,0.2096595944896105,0.2185463990139109,0.2275850604011969,0.2363248531415425,0.2442263539368838,0.2521062790961735,0.2595495960116898,0.2659542444310656,0.2726942883895131,0.2785802235271832,0.2834305983295186,0.2869430001457796,0.2910216718266253,0.2948764512129447,0.2986298578923241,0.3015498957672437,0.3054526274147821,0.3040046258942499,0.3007545665709141,0.2981878552535314,0.2943595515345656,0.2918156329273539,0.2879763780732218,0.285445697854457,0.285845287220803,0.2869999488656701,0.2879240984015095,0.2892322639711515,0.2893757018183251,0.2905538140020898,0.2913904328221612,0.2921875748431288,0.2957440760743172,0.296951374565592,0.3003776175763817,0.3054444251174117,0.3085958984835389,0.3124971934078764,0.3155550898517315,0.3163119687286715,0.319880418535127,0.3234481488303555,0.3239026662009547,0.3224794622852875,0.3285827395091053,0.3370937416062315,0.3343305908750935,0.0,2.447351378234084,52.4483000814913,152.5329381185243,215.9982950344248,fqhc3_100Compliance_baseline,36 -100000,95661,47600,454.2708104661252,5155,52.93693354658638,4100,42.38927044459079,1590,16.359854068010996,77.27782633283482,79.68580216105505,63.2892740309558,65.07098387333106,77.07626877361172,79.48450309017294,63.21437031963615,64.99785484772221,0.2015575592231044,201.29907088211496,0.0749037113196493,73.12902560884993,210.41658,148.05876583290393,219960.6736287515,154774.42827579047,499.68335,334.4589322178045,521877.6303822874,349158.94901559094,455.39222,223.00729413494736,472319.074649021,230369.13394705043,2908.16085,1340.342736062964,3011424.875341048,1372493.5303446166,948.57327,425.62657088878376,980826.1778572252,434159.61665546393,1552.50732,659.0901522308714,1599294.3832909963,668858.4250334172,0.38094,100000,0,956439,9998.212437670523,0,0.0,0,0.0,43413,453.3404417683277,0,0.0,41218,427.1855824212584,1241253,0,44616,0,0,0,0,0,90,0.9408222786715588,0,0.0,1,0.0104535808741284,0,0.0,0.05155,0.13532314800231,0.3084384093113482,0.0159,0.3500186081131373,0.6499813918868627,23.888491511035443,4.116637199254311,0.3214634146341463,0.2595121951219512,0.2029268292682927,0.2160975609756097,10.948621026821083,5.7217465547417055,17.130864259745294,11596.119248654675,46.73390121531468,12.910358293434678,14.831091870833616,9.331197065799593,9.661253985246796,0.5717073170731707,0.8110902255639098,0.6790591805766313,0.5865384615384616,0.110609480812641,0.7517123287671232,0.9390519187358916,0.8511904761904762,0.7317073170731707,0.1413043478260869,0.5,0.7198067632850241,0.620162932790224,0.5390749601275917,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0045331007626156,0.0068320711428745,0.009085642854965,0.0112416704817132,0.0132027994824828,0.0152983171851096,0.0175574780148508,0.0196088459728728,0.0217883447209104,0.0240410256410256,0.026203071234143,0.0281010443998559,0.0302183928184938,0.0321594862741454,0.0343372497104087,0.0364325903820448,0.0383337486502201,0.0404977940564388,0.0424546990011885,0.0568535662786566,0.0713881791144808,0.0854551942735993,0.0978943713104145,0.1100148782829828,0.1254935168033871,0.1364843053136813,0.1476861124131759,0.1578474569020832,0.1677867479709709,0.1798090599543123,0.191074251315476,0.2017762491973138,0.2115174194677871,0.220002421600678,0.2292504570383912,0.2379049362595164,0.2458850398838923,0.2531287939818229,0.2604600595101854,0.2665317919075144,0.2722651959524199,0.2774539133725124,0.2824198861934711,0.286850702583223,0.2904112628827851,0.2938975244674726,0.2979086098107062,0.3014443940669732,0.3047160477541059,0.3022622849212444,0.2997243660418963,0.2981773037638959,0.295552180516381,0.2927145025445671,0.2895386455282808,0.2868466526102189,0.2857847651624786,0.2864622544658134,0.2861942632472523,0.2882410252566889,0.2901669171742742,0.2913735343383584,0.2919996428411983,0.2935907595514252,0.295817846281808,0.2976810357092047,0.3019449864669226,0.3069767441860465,0.3102268205332272,0.3129416055066782,0.3149952345652864,0.3175281040005024,0.3213904558621741,0.3250727494602459,0.327069457659372,0.3291896869244936,0.3279492946227765,0.3320366768546818,0.3343523118074131,0.0,1.863097382856237,51.07033200074088,151.13432625331197,218.3797826159468,fqhc3_100Compliance_baseline,37 -100000,95816,47858,457.2305251732488,5198,53.070468397762376,4098,42.164147950237954,1578,16.072472238457042,77.39792083527668,79.70061633529444,63.37134666233783,65.07111578229613,77.19554223080709,79.504259165055,63.29465557597062,64.99960029701946,0.2023786044695867,196.35717023943755,0.0766910863672052,71.51548527667728,210.36202,147.99871073920133,219547.90431660684,154461.37465475634,501.40514,337.1939121453973,522698.6515821992,351316.8073655729,460.02052,225.61249658295495,476723.19863070885,232844.9008647269,2927.98001,1355.638731986157,3015342.427152042,1374464.8726074083,955.64163,426.8998493356624,982632.6813893296,430830.0301936207,1548.38836,659.8810618426153,1579404.6297069383,655969.0910511202,0.38205,100000,0,956191,9979.450196209402,0,0.0,0,0.0,43525,453.6194372547382,0,0.0,41653,431.27452617516906,1243130,0,44470,0,0,0,0,0,91,0.9497369959088252,0,0.0,0,0.0,0,0.0,0.05198,0.1360554901190943,0.3035782993459022,0.01578,0.3586715867158672,0.6413284132841328,23.568576678592542,4.144207813461192,0.3177159590043923,0.2613469985358712,0.2030258662762323,0.2179111761835041,10.904702668907786,5.63608020587861,16.874103099267717,11514.41680045796,46.729590231740985,12.977658637303776,14.70547264192076,9.253002513813575,9.793456438702876,0.5690580771107857,0.8020541549953315,0.6712749615975423,0.6081730769230769,0.1041433370660694,0.7322635135135135,0.9211136890951276,0.8104395604395604,0.755,0.1269841269841269,0.502745367192862,0.721875,0.6172707889125799,0.5617088607594937,0.0980113636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020956507653681,0.0044381846001074,0.0065824838987778,0.008691855447133,0.0107148666232921,0.0128737457002707,0.0149273501660858,0.0170772762050497,0.0191981527269755,0.0213930551861021,0.0235641251562403,0.0255655296229802,0.0276056916833615,0.0293999608960968,0.0313434066500381,0.0332042744308502,0.0353082358296349,0.0373425921127636,0.0394080996884735,0.0413392587658586,0.0564045858065323,0.0710191615764371,0.0855581887963759,0.0987719224460613,0.1111954459203036,0.1270564601395644,0.1377302662976042,0.1477081603542611,0.1575010951673736,0.1664842945417095,0.1780932582212216,0.1889549978364344,0.1996281638688353,0.2082485949834897,0.2169523956145463,0.2269768162795332,0.2363435656701939,0.243850892576105,0.2512100293580893,0.256791846352707,0.2630623967085418,0.2683049323164251,0.2735825640904417,0.2785965499916262,0.2832509330618971,0.2878445160179972,0.292715496262277,0.2968813438895655,0.3002351238922047,0.3043003682272488,0.3018771788683293,0.2988776670823455,0.2959495873800034,0.2945723045036487,0.2926749848289744,0.2907472875777154,0.2870128233403698,0.2871591261866248,0.2875514578300956,0.2880143749221655,0.2879610455028824,0.288770369204125,0.2903245994659546,0.2913896944010707,0.292012871619999,0.2930622009569378,0.2949814656401482,0.299990557426584,0.3029177904655154,0.3070074783365647,0.3098174866869965,0.3139868309260832,0.3175092866586916,0.3200091192339843,0.3220498354489892,0.3268074065337893,0.3276887871853547,0.3315271924543447,0.3350515463917525,0.3330807123910572,0.0,2.351467050734614,51.430636742961056,148.66502447048623,217.8530123645505,fqhc3_100Compliance_baseline,38 -100000,95569,47032,449.5076855465685,5043,51.73225627557053,3939,40.79774822379642,1477,15.151356611453505,77.19945181010942,79.67195069359404,63.224607941291474,65.054372233554,77.01138571961617,79.48241461582053,63.15439274167656,64.9853397446167,0.1880660904932511,189.53607777351067,0.070215199614914,69.03248893731018,208.92278,147.0620541800181,218609.36077598383,153880.4990949137,497.09557,333.01408106895474,519756.1970931997,348067.1672497932,448.88733,219.0735615826381,467228.7247956974,227329.13639885196,2773.27749,1287.6498757957154,2875969.770532286,1321461.9131681984,916.04725,413.5035832583329,949564.8588977596,423721.0531221761,1432.21548,605.1973141909681,1471347.6336468938,612049.8610720778,0.37735,100000,0,949649,9936.789126181084,0,0.0,0,0.0,43291,452.563069614624,0,0.0,40726,423.6206301206458,1245086,0,44681,0,0,0,0,0,73,0.7638460170138852,0,0.0,0,0.0,0,0.0,0.05043,0.1336425069564065,0.2928812214951418,0.01477,0.3566818526955201,0.6433181473044799,23.576381646549617,4.117741259588914,0.3241939578573242,0.2670728611322671,0.2074130489972074,0.2013201320132013,11.7293235957308,6.410886117990734,15.75393081221571,11445.899996901206,45.28853583118314,12.921529843121192,14.54699564879084,9.165722291773225,8.65428804749788,0.594059405940594,0.80893536121673,0.7086922474549726,0.591187270501836,0.1273644388398487,0.7793345008756567,0.9328703703703703,0.8753623188405797,0.7572815533980582,0.1823899371069182,0.5184125849124062,0.7225806451612903,0.6469957081545065,0.5351882160392799,0.113564668769716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002148989873392,0.0043322984517359,0.0064485335933057,0.008601756954612,0.0109846479618845,0.0129564313237782,0.0153696994437924,0.0175045984058859,0.0196582071223905,0.0216644974840898,0.0236201073734563,0.0256444531274099,0.0274556651768243,0.0295843949537357,0.0314156685646966,0.0332381011531374,0.0354583450006741,0.0378407591016327,0.0398004249822924,0.0417053794197784,0.056588182379214,0.0698137740122473,0.0827114297126279,0.0961216297373328,0.1084431574386235,0.1245150210952572,0.1357544038805208,0.1461881589618816,0.1561863952865559,0.1648332741916406,0.17634417891429,0.1870042212407626,0.1973711480774475,0.2065678779436443,0.2161318089520614,0.2257752799004798,0.2342739499183207,0.2421613205311911,0.2499061401413017,0.255838787461247,0.2619831644366115,0.2676850570939529,0.2738506053814318,0.2787302502041012,0.2826102833771545,0.2873463842401037,0.2911767289520248,0.294913309535951,0.2980371297725769,0.3020206959440707,0.2994064481316606,0.2962105872143477,0.2947932079193969,0.2929850681545511,0.2901738574339297,0.2877373672352752,0.2846598558644175,0.2848012880542823,0.2850201043716314,0.2862787870118724,0.2879521236680174,0.2884178053748343,0.2891561208000168,0.2891369513668292,0.290404891435174,0.2916438391902116,0.2928546989051095,0.2976773383553044,0.3010560291899098,0.3053230137419049,0.3104038946988821,0.3141402477430191,0.3187667060359296,0.3213935600633436,0.3239632618981353,0.3312551464533584,0.3297150610583446,0.3319444444444444,0.3331529093369418,0.3273967411898446,0.0,1.6584923680078747,50.41391659334792,148.4872949420273,205.35182552043952,fqhc3_100Compliance_baseline,39 -100000,95687,47408,451.242070500695,5138,52.47316772393325,4061,41.90746914418887,1558,15.90602694200884,77.33990302576841,79.7319929973905,63.32261558699434,65.08981798161508,77.14573272932213,79.54120720255983,63.24918825096304,65.02006449339753,0.1941702964462734,190.78579483067412,0.0734273360313011,69.75348821755745,211.46906,148.71429775111213,221000.5956922048,155417.22256013064,498.12566,334.60466947214525,520006.74072758056,349115.1979601673,453.78676,222.654425666387,471561.7795520813,230496.73689676495,2854.04049,1343.5914615313918,2941318.162341802,1362787.0886655368,938.6893,427.900461174764,967743.486576024,433941.5665396166,1510.73386,647.5298447368071,1541681.1270078486,643516.3800448118,0.38101,100000,0,961223,10045.481622372943,0,0.0,0,0.0,43333,452.276693803756,0,0.0,41196,427.8951163689948,1238202,0,44469,0,0,0,0,0,82,0.8465099752317452,0,0.0,1,0.0104507404349598,0,0.0,0.05138,0.1348521036193276,0.3032308291163877,0.01558,0.3346339650687476,0.6653660349312523,23.799644782765217,4.128159034806114,0.3245506032996799,0.2588032504309283,0.212262989411475,0.2043831568579167,11.63178052770846,6.450300539119472,16.76489141351983,11585.36710953637,46.72248025344776,12.87452803930188,15.117792615286,9.644277027917846,9.085882570942038,0.5732578182713617,0.7925784966698383,0.6858877086494689,0.5881670533642691,0.1012048192771084,0.7402390438247012,0.9103448275862068,0.8313253012048193,0.7557603686635944,0.1276595744680851,0.4985744832501781,0.7094155844155844,0.6190476190476191,0.5317829457364341,0.0934579439252336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0047742131670974,0.0070724802386581,0.0092227684556941,0.0113988794321914,0.0134163969136179,0.015696986993925,0.018188127704744,0.0202097644749754,0.0221805973510204,0.0242862268696499,0.0264530168962614,0.0286689700559394,0.0306326349834167,0.0328506703270618,0.0349048800661703,0.0371513820396999,0.0392563913598571,0.0410286284953395,0.0433350360169712,0.0574556546810688,0.0715699104852641,0.0844043434926297,0.0975530213768725,0.1099319584366264,0.1257206935584542,0.1370117332541215,0.1482746876130872,0.1582741496235382,0.1674993567201303,0.1792279114844128,0.1904308497976672,0.2009199451947543,0.210090740133377,0.2190612447036813,0.2285508610665042,0.2373153643625329,0.2456436389816971,0.2526968930430935,0.259670216420474,0.2652449954319945,0.2711822804044182,0.276620151371807,0.280487512870244,0.2857298844996603,0.2903253603830955,0.2945493186648331,0.2984839435259432,0.3014001759925462,0.3044928854953779,0.3016968767241263,0.2994694303936661,0.2967810947374347,0.2950223107914915,0.2921633537698737,0.2894330802487053,0.2870380602080604,0.2873868120711958,0.2876493210359732,0.2879181032950627,0.2891330299186749,0.289092626111592,0.2902708333333333,0.2908329248183965,0.2915328187179364,0.2918343502531481,0.2926967727285629,0.2974023125372105,0.3015972877564573,0.3065842811602188,0.3101348608542691,0.3131227922180629,0.3144854271984023,0.3203531808920081,0.3255576208178438,0.3289134006101854,0.3320158102766798,0.332792865828942,0.3383894098179812,0.3423457730388423,0.0,2.014852765298868,54.82768175610544,148.34163205022804,204.6565690831052,fqhc3_100Compliance_baseline,40 -100000,95782,47831,454.8244972959429,5170,52.81785721743125,4047,41.62577519784511,1560,15.963333402935834,77.331780499572,79.67172805952869,63.32970022966426,65.0624293278628,77.13169353902909,79.47427126538784,63.25394045974856,64.990080034742,0.2000869605429187,197.45679414084805,0.0757597699157059,72.34929312080851,212.10376,149.23304774197857,221444.27971852748,155804.8983545745,505.03321,338.52349789622764,526623.5722787163,352781.18842394976,461.13294,225.6805735364006,476970.2240504479,232255.01252951985,2861.06639,1338.7930329478197,2944823.495019941,1355513.0222252822,946.63114,426.5158633044931,976248.2303564344,433231.8719430371,1522.77412,652.9711192777437,1558510.6178613934,654404.8451550613,0.38164,100000,0,964108,10065.649078114886,0,0.0,0,0.0,43893,457.5807563007663,0,0.0,41723,431.1874882545781,1231949,0,44239,0,0,0,0,0,97,1.0127163767722538,0,0.0,0,0.0,0,0.0,0.0517,0.1354679802955665,0.3017408123791102,0.0156,0.3548863846295954,0.6451136153704046,23.646362544983777,4.080447031922644,0.3076352853965901,0.2678527304175933,0.2115147022485791,0.2129972819372374,11.184586592812815,6.020642405470603,16.78266883888778,11619.130912787936,46.37621571912914,13.272475875211027,14.110647285662328,9.578638683747462,9.414453874508329,0.5767234988880652,0.801660516605166,0.6843373493975904,0.5922897196261683,0.1229698375870069,0.7568922305764411,0.9406593406593406,0.8629737609329446,0.705607476635514,0.1675675675675675,0.5010526315789474,0.7011128775834659,0.6164079822616408,0.5545171339563862,0.1107828655834564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777665231704,0.0045922711974372,0.0070118826549768,0.0094782396684139,0.0117569285532672,0.0139614456359026,0.0159866234375318,0.0183041365511045,0.0205884156938112,0.0229717971029328,0.0251263493495443,0.026880781986385,0.0290273821887242,0.0312319736299958,0.0332741609214383,0.0350046521244701,0.0375847962301279,0.0397253453926897,0.0415887267739119,0.0436711233287517,0.0577081615828524,0.0719979079497908,0.0857085949702808,0.0982870954182429,0.1102341461358511,0.1251426639049752,0.1365549113341742,0.1470697704095196,0.1572718347135661,0.1670309185575625,0.1790969269684086,0.1907785156503493,0.2021203718806067,0.2114236346536602,0.2195138055882644,0.2289497008641701,0.2371436541143654,0.2458863357739762,0.2533310653739298,0.2596052571323899,0.2665487298669164,0.2719293119367921,0.2777258585404517,0.2818303817489036,0.2864291092812553,0.2915357023998817,0.2946824224519941,0.2983354347355417,0.3015677636693444,0.3049429155942718,0.3026698245236301,0.3009864805451747,0.2990109874650047,0.2954250064985703,0.2938477983313043,0.2911531925967883,0.2878984520907853,0.2877999967191063,0.2883732049246111,0.2888164457745475,0.2895864120166856,0.290471967681545,0.2913919758899981,0.2926078028747433,0.2933173076923077,0.2927927927927928,0.2926045929968167,0.2973015276734285,0.3034213371464443,0.3067499209611128,0.3109476456431912,0.3128379094667656,0.3173010162216751,0.3216512087577923,0.3218638664916557,0.3233207190160833,0.3265306122448979,0.3312537733950493,0.3350814242340602,0.3350393700787402,0.0,2.4018894636106287,51.737961167831486,150.0444298488216,209.24213998564,fqhc3_100Compliance_baseline,41 -100000,95681,47243,449.4727270827019,5216,53.18715314430242,4137,42.59988921520469,1618,16.481851151221246,77.34192318165195,79.71780311534609,63.32298576779221,65.07522763345419,77.13371098956128,79.51394119097849,63.24358446521503,65.00015973592575,0.2082121920906701,203.86192436760095,0.0794013025771747,75.06789752844156,211.35048,148.67337552544268,220890.7515598708,155384.4290145825,499.31029,334.4792040064736,521187.8324850284,348917.92472934385,453.66742,222.26250495925703,470259.81124779215,229278.47674748203,2933.2726,1363.7086115962377,3023931.6896771565,1383716.0474531197,982.75888,447.8615098668751,1008118.9055298334,449076.49362660816,1578.1916,678.5235008873155,1609596.053552952,674954.1245216917,0.37915,100000,0,960684,10040.488707266855,0,0.0,0,0.0,43485,453.7996049372394,0,0.0,41121,425.9257323815596,1236505,0,44367,0,0,0,0,0,82,0.8570144542803692,0,0.0,1,0.0104513957839069,0,0.0,0.05216,0.1375708822365818,0.3101993865030675,0.01618,0.3455976569650375,0.6544023430349625,23.664675217013805,4.151084138905864,0.3185883490452018,0.2627507855934252,0.2037708484408992,0.2148900169204737,11.020034515595734,5.763969915308021,17.393654321229064,11519.811874930185,47.16660415292817,13.207027249741431,14.893646655051649,9.305541084013818,9.760389164121271,0.571912013536379,0.8068077276908924,0.6767830045523521,0.5848161328588375,0.1169853768278965,0.7395744680851064,0.9244851258581236,0.8450704225352113,0.7471264367816092,0.1674641148325359,0.5054017555705604,0.7276923076923076,0.6147455867082036,0.5426008968609866,0.1014705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024908113362291,0.004844872847427,0.0074053785365754,0.009679647348,0.0119695321001088,0.0140498055425464,0.0160879228432192,0.018420757048186,0.0205427624851732,0.0227102851584498,0.0247926257831004,0.0270586664749797,0.0290974543584469,0.0310758039421759,0.0332903225806451,0.0355624954758383,0.0375392328489004,0.0395362354943845,0.0414422096965411,0.0434012400354295,0.0581095338075689,0.0720717890724801,0.0851657867391601,0.0979280009260331,0.1104932148660912,0.125437863122136,0.1362453946041217,0.1458109187749667,0.1555203968186094,0.1641744581727621,0.1756162256582778,0.187130385806815,0.1975985979121082,0.2066693662241581,0.2157764959711153,0.2257985884125735,0.2340180864128614,0.2429079610951008,0.2505019795578042,0.2568754796513293,0.2626572390728247,0.2689935995694043,0.2743932757191902,0.2790934708315846,0.2834799727785339,0.2872690520503371,0.2914381589161846,0.2956167695146001,0.2998911324814018,0.3034933632701578,0.301943541534602,0.2988099998621089,0.2964473164399797,0.2940692046521708,0.2916147409649279,0.2890601112945637,0.2866034755134281,0.2870986783852031,0.2876258747226489,0.2881564186121053,0.2888403034719886,0.2888296822577462,0.2903596581053687,0.2897838899803536,0.2914670371789958,0.2915424690910033,0.2926567096628196,0.2978099457166032,0.303112502173535,0.3071021050560693,0.3117485477552123,0.3145576943304933,0.3158389766741911,0.3184823441021788,0.3208105857314703,0.3275762142111974,0.3341764618360363,0.3336618052818289,0.3310829057520928,0.3367684946632315,0.0,2.463629863620948,50.769104946700274,155.8786559619823,216.3489753008363,fqhc3_100Compliance_baseline,42 -100000,95735,47491,452.4050765132919,5266,53.67942758656709,4220,43.47417349976498,1632,16.608345954979892,77.32392886815877,79.68834975105277,63.31606620966248,65.06528261835096,77.12133172353572,79.49052342136146,63.23952911899059,64.99345931315108,0.2025971446230556,197.8263296913099,0.0765370906718914,71.82330519988511,210.68982,148.19931182764378,220076.0641353737,154801.60007065732,506.05103,339.35756436892086,527993.0850786023,353873.4155417776,457.771,224.0788395752301,474850.9009244268,231456.43336556025,2995.59985,1370.7881431646397,3086459.2573249075,1389367.9048780978,960.02967,429.70727398145976,987954.1651433646,434052.5313623762,1579.2351,667.0958084460564,1608728.1349558677,661821.6383649266,0.38113,100000,0,957681,10003.457460698804,0,0.0,0,0.0,44060,459.5915809265159,0,0.0,41520,430.3128427429885,1235407,0,44413,0,0,0,0,0,73,0.7625215438449888,0,0.0,2,0.0208910012012325,0,0.0,0.05266,0.1381680791331042,0.3099126471705279,0.01632,0.3446337926033357,0.6553662073966643,23.590683312133063,4.1787401044651045,0.3170616113744076,0.2623222748815166,0.2149289099526066,0.2056872037914691,11.489367168685948,6.247923590130728,17.393697303759332,11584.179346724704,47.89996258454656,13.405372229051844,15.123195437312347,9.93578695178776,9.43560796639461,0.5765402843601896,0.8048780487804879,0.6980568011958147,0.5667034178610805,0.108294930875576,0.7512820512820513,0.9248291571753986,0.8679775280898876,0.7064676616915423,0.1264367816091954,0.5095081967213114,0.7260479041916168,0.6364562118126272,0.5269121813031161,0.1037463976945245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024917195903856,0.0046842206653215,0.0068707248259484,0.0089516145420553,0.0113012165846116,0.0136048879837067,0.0158330444711783,0.018220421162228,0.0202946559110102,0.0224941128289136,0.0246162994555912,0.0267459290745189,0.0288070074433523,0.0309113757158749,0.033093243075907,0.0352687016114861,0.0373922770964534,0.0391086385668469,0.040981646129049,0.0429346863507079,0.057913364863595,0.0720959186449189,0.0853397651006711,0.0977443609022556,0.1102405382319754,0.125374207948547,0.1364480427839263,0.1461186242146736,0.1564295938641656,0.1653425964641429,0.1777383066903493,0.1893850096785007,0.1992238033635187,0.2079283691742557,0.2172516934987244,0.2276628021570386,0.2362163428813729,0.2448552493896058,0.2516403678056533,0.2588278455470971,0.2653434831473693,0.2710903361098419,0.2769263592077658,0.2817242744538158,0.2869133639880301,0.2919970894022174,0.2956791902083359,0.2991210191082802,0.3030471919432815,0.3060989947292638,0.3031001482679606,0.3001899936668777,0.2982577316681232,0.2954239861201475,0.2937392286206691,0.2907867573973545,0.2867525080970061,0.2870640248894711,0.2879157220053526,0.288767386774475,0.2894191065189365,0.2897067234680394,0.2904283536266995,0.2909581225344892,0.2912861081145871,0.2916125344281037,0.2925445934832544,0.2959183673469387,0.3008212831672048,0.3067700708265738,0.3109609541517391,0.3166912695065373,0.32007007007007,0.3260278113663845,0.328711943793911,0.3308545797922568,0.3326821938392186,0.3307225376933621,0.3350026357406431,0.3410794602698651,0.0,2.356863751073316,50.76891873289809,154.60515883836138,229.14319796084547,fqhc3_100Compliance_baseline,43 -100000,95780,47512,452.1820839423679,5147,52.43265817498434,4094,42.01294633535185,1660,16.85111714345375,77.4066300966336,79.74492466961726,63.35719594835807,65.08726651412036,77.19723113669296,79.5421232876842,63.27877691596387,65.0147359435659,0.2093989599406427,202.80138193305677,0.0784190323942013,72.53057055446277,210.04104,147.77228736087477,219295.30173313845,154283.03128093,500.28009,335.9162979813396,521601.0440593026,349995.4979968048,459.16968,224.7782512123161,474736.4167884736,231069.0803826588,2914.54183,1351.3942048387555,2993392.5349759865,1361448.293193252,981.207,438.8341262715063,1003651.3990394656,437390.57522451767,1612.24624,676.702539406747,1638164.627270829,667385.1875046114,0.38027,100000,0,954732,9967.9682605972,0,0.0,0,0.0,43390,452.2551680935477,0,0.0,41585,429.5155564836082,1245729,0,44743,0,0,0,0,0,94,0.9709751513885988,0,0.0,0,0.0,0,0.0,0.05147,0.1353511978331185,0.3225179716339615,0.0166,0.3609765188222139,0.6390234811777861,23.81330695613017,4.247942672725627,0.3136297020029311,0.2586712261846605,0.2100635075720566,0.2176355642403517,11.593691357455691,6.2739606479417525,17.477686521750556,11574.857452901138,46.73187762439719,12.768523141736344,14.632979861089996,9.665120038116244,9.6652545834546,0.5852467024914509,0.789423984891407,0.7118380062305296,0.6174418604651163,0.1290684624017957,0.7443609022556391,0.9026128266033254,0.8509485094850948,0.7521739130434782,0.135593220338983,0.5195029340697273,0.7147335423197492,0.6557377049180327,0.5682539682539682,0.1274509803921568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024114941131173,0.0049786051793717,0.007306603342771,0.0095404529429096,0.0120625298766285,0.0144498075395613,0.0166391386798801,0.0186188945031388,0.0207492206265651,0.022893107506524,0.0249761716868395,0.0270996870350418,0.0292712005508905,0.0310077519379844,0.0331622134256968,0.035119422558627,0.0370991102834678,0.039020546951131,0.0411220779220779,0.0430921395106715,0.0577426726071849,0.0712799221944511,0.0848173575808395,0.097667868290786,0.1098572256466993,0.1250779359392997,0.136575644504749,0.1478197071676927,0.1579879636348115,0.1675860960848374,0.1795958769985582,0.1911228847921284,0.2016604003216482,0.2111073499383046,0.2197517301988355,0.2296875691463468,0.2376168067976538,0.2453158894471232,0.2532654542156107,0.2597042936922091,0.2665741864632102,0.2727347062740196,0.2783998864832267,0.28277628806742,0.2871571995678195,0.2914033726272741,0.2951371508659525,0.2984091458219413,0.3020426126802495,0.3044355902686158,0.3017546694676739,0.3,0.2965455108533461,0.293991973900742,0.2910012899782038,0.2881863306605575,0.2849417440522175,0.2844102614347066,0.2848494098494099,0.2846543419747839,0.2851769087523277,0.2861375453742765,0.285779635289959,0.2850609417667562,0.2860652023562519,0.2859651841520739,0.285028655317467,0.2887733823025927,0.2930350681881436,0.2953840109998035,0.2971413112093065,0.3001836788244555,0.305301758965753,0.3060002992667963,0.3057090239410681,0.3074164063403911,0.3119891008174387,0.3138224243622701,0.3197278911564626,0.3203809523809524,0.0,2.854694636532943,51.509858052530745,150.3866837570828,212.69605778343964,fqhc3_100Compliance_baseline,44 -100000,95700,47525,453.5736677115987,5068,51.901776384535005,3997,41.30616509926855,1494,15.370950888192269,77.29491858535671,79.69810215102541,63.29396199958445,65.07446993592174,77.11645340565975,79.51944662571485,63.228016119019166,65.01012007692842,0.1784651796969569,178.6555253105604,0.0659458805652875,64.34985899332446,210.74834,148.2997094631101,220217.7011494253,154963.12378590397,500.76964,335.3276186918058,522813.4169278997,349937.7415797344,451.97878,220.7722798292976,469094.9843260188,228245.22435978503,2813.1653,1285.0151939448867,2910445.579937304,1313632.511959129,943.73644,415.20661299038215,975215.2142110764,422947.526387109,1459.44052,602.2913588155242,1502907.5862068965,609881.8070439757,0.38062,100000,0,957947,10009.895506792058,0,0.0,0,0.0,43594,455.0574712643678,0,0.0,40927,424.503657262278,1241403,0,44537,0,0,0,0,0,74,0.7628004179728317,0,0.0,0,0.0,0,0.0,0.05068,0.1331511743996637,0.2947908445146014,0.01494,0.3452583759227711,0.6547416240772288,23.73653405908756,4.189232942346757,0.315986990242682,0.2626970227670753,0.2139104328246184,0.2074055541656242,11.631639623629558,6.275589446587373,15.65922322457457,11564.275773581126,45.34093775505696,12.641552766184772,14.194877418861031,9.504369089926485,9.000138480084676,0.5799349512134101,0.7904761904761904,0.6785431512272367,0.6222222222222222,0.1194209891435464,0.758744394618834,0.9142857142857144,0.8419452887537994,0.8118811881188119,0.1280487804878048,0.5107564191533657,0.707936507936508,0.6209850107066381,0.5635528330781011,0.1172932330827067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022707228805741,0.004282220666281,0.0065505509571929,0.008723501601342,0.0108818469619389,0.0128932965050502,0.0147965223070329,0.0170613595962485,0.0189876007693252,0.021307327466989,0.0232033317604579,0.0252200980039653,0.0275262399670714,0.0294238895187055,0.0314209624476145,0.0335477465924838,0.0356776473270261,0.0377595514950166,0.0399779460719041,0.0422125637097026,0.057438007896551,0.0711361899477601,0.0844080210705254,0.0970392660241572,0.1090726869922987,0.1242104594940592,0.1359159414137125,0.1467507026658717,0.1564399807682034,0.1657619190662146,0.1776585775681003,0.1888061961836355,0.1996021652644622,0.2088578547075793,0.2180490808338464,0.2276219363694732,0.2363983135916482,0.2443159446050692,0.2526337299064571,0.2591599335281646,0.265353364661219,0.2716552014600589,0.2773603436239069,0.282695212294119,0.2868107845518581,0.29222100292221,0.2958573216520651,0.2996300392844883,0.3030201212183869,0.3058510638297872,0.3039209101777103,0.3009820595819388,0.2983887960218573,0.2967221381744831,0.2947948615370938,0.291599156247134,0.2893014136175326,0.2899731218041169,0.2899420388680532,0.2902978556531969,0.2907314150925735,0.2916312952835962,0.2920613017207134,0.2909537088678193,0.2918560196205727,0.2931909907564119,0.2922512165277027,0.2956942003514938,0.3010692571109092,0.3052019922523519,0.3087098827166106,0.3136394863393754,0.315934237669563,0.3170068027210884,0.3227434124462717,0.3282965411403612,0.3303140096618358,0.329121540312876,0.3274979800700242,0.3274962742175857,0.0,1.7896978326934605,48.89591313348246,147.2258139494195,214.02670477977765,fqhc3_100Compliance_baseline,45 -100000,95727,47464,452.06681500517095,5112,52.37811693670542,4051,41.806386912783225,1602,16.348574592330273,77.3593554540744,79.73006180493267,63.33143217950936,65.0835823111477,77.16059999037718,79.53415742935091,63.25711125759577,65.01285967052465,0.1987554636972248,195.90437558176177,0.0743209219135963,70.72264062304612,209.29216,147.20909421596508,218634.4082651708,153780.11868748115,497.18929,332.95264992287343,518864.7925872533,347297.0634438282,449.71615,220.0981706767043,466669.4349556552,227524.00043166665,2871.05243,1322.6069974213722,2965081.471267249,1347891.3817179163,957.67556,431.9162653767454,987257.6075715316,438160.7461988528,1558.0846,656.3539590694288,1592096.608062511,656466.5033019678,0.38168,100000,0,951328,9937.927648416851,0,0.0,0,0.0,43303,451.82654841371817,0,0.0,40715,422.2006330502366,1251766,0,44871,0,0,0,0,0,77,0.8043707626897322,0,0.0,1,0.010446373541425,0,0.0,0.05112,0.1339341857053028,0.3133802816901408,0.01602,0.354790137398833,0.645209862601167,23.62987480112521,4.12053839009276,0.3056035546778573,0.263885460380153,0.2206862503085657,0.2098247346334238,11.351584174030776,6.214940206110779,17.163613296897548,11573.6967548319,46.15237823065769,13.034424752693832,13.976687833057484,9.79493137351297,9.346334271393408,0.5801036781041718,0.7970065481758652,0.7075928917609047,0.5727069351230425,0.1294117647058823,0.7722513089005235,0.9126436781609196,0.8794117647058823,0.7378640776699029,0.2242424242424242,0.504302925989673,0.7176656151419558,0.6425389755011136,0.5232558139534884,0.1065693430656934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573552647571,0.0044197998925461,0.0066059849614904,0.0088562084865227,0.011205678085883,0.0134688018569232,0.0156379020337428,0.0175877345201396,0.0197910490482713,0.0222360998781723,0.0243449725683228,0.0265512176583572,0.0287874890683677,0.0311357009653921,0.0329900524208527,0.0349600471371422,0.0369400242263611,0.0390619327670079,0.0410320917322466,0.0427898837548435,0.057034855794332,0.0712117723400247,0.0842345980761363,0.0962050074133271,0.1082768293068722,0.1241471232268096,0.135133701188455,0.1452905918299992,0.1551079290446676,0.1646725542166089,0.1764465036095248,0.1880845167994458,0.1991993298739162,0.20905370508163,0.2186670484959963,0.2276089198389904,0.2361664824058874,0.2441907546957597,0.2517271500039704,0.2582455336692625,0.2637191067112309,0.2701489921121823,0.2756445095583544,0.2809416155309147,0.2862201096182761,0.2906932398351479,0.2947669766976697,0.2989127673626988,0.3030060120240481,0.3067045948401881,0.3045148121290253,0.3011710759345954,0.2989965616447969,0.2965365474786411,0.2938860686429766,0.2915485228208177,0.288469713907827,0.2888094305120167,0.289689284742997,0.2892578125,0.2904496164542078,0.2920070069084968,0.2931668966670848,0.2936195880434297,0.2946578429962115,0.2948265115312695,0.2952462040584646,0.3004106196909381,0.3045332214882388,0.3097491717936583,0.3135769998186105,0.3182226924094155,0.3236054207374724,0.3303632107528506,0.3342325581395349,0.3374736348722756,0.3387291981845688,0.337910447761194,0.3475215517241379,0.353051291651067,0.0,1.99026192124648,50.14137992237893,153.52819877898187,210.22681124377323,fqhc3_100Compliance_baseline,46 -100000,95886,47633,452.81897252987926,5200,52.87528940616983,4081,41.945643785328414,1580,16.123313100974073,77.4394230829848,79.71978547453904,63.39129033748679,65.07739800390978,77.23675522823712,79.51907453405383,63.31489811145053,65.00395322330377,0.2026678547476876,200.7109404852088,0.0763922260362548,73.44478060601034,209.94908,147.66556694656035,218956.96973489356,154001.1752983338,499.77618,335.2490805818769,520608.7020002921,349022.5482154609,451.98831,221.8599663459166,467321.1939177773,228371.50914789544,2906.21194,1354.7226498160064,2990375.0808251468,1372318.961908939,958.17166,435.3025247843869,984391.3501449638,439089.4528217136,1537.52242,657.6188124827663,1570294.7667021253,657843.5649586307,0.38223,100000,0,954314,9952.58953340425,0,0.0,0,0.0,43350,451.4527668272741,0,0.0,40877,422.2722816678139,1251908,0,44856,0,0,0,0,0,99,1.0324760653275766,0,0.0,0,0.0,0,0.0,0.052,0.1360437432959213,0.3038461538461538,0.0158,0.3450367647058823,0.6549632352941176,23.9060047531169,4.126227692248883,0.3026219063954913,0.267826513109532,0.2195540308747856,0.2099975496201911,11.09652402220386,5.958715866944405,17.00914141851703,11624.230968847192,46.39743310530101,13.006629835371273,13.963128289523072,10.03971276946756,9.3879622109391,0.5809850526831659,0.7941445562671546,0.7101214574898785,0.5859375,0.1178529754959159,0.7559322033898305,0.9221698113207548,0.875,0.7446808510638298,0.1412429378531073,0.5098241985522234,0.7130044843049327,0.6464646464646465,0.529500756429652,0.1117647058823529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021664304515084,0.0043982325996189,0.006796579393177,0.0091989968422869,0.0114649293097665,0.0137563338149406,0.0158390628978864,0.0178702570379436,0.0202178088349474,0.0224943227152765,0.0246418983995573,0.0269640786760103,0.029163027282536,0.0313963662566266,0.0334436437489046,0.0353038360266405,0.0372853300227601,0.03921832744454,0.0412873085907085,0.0431820073235685,0.0583195221864348,0.0728771588878788,0.0867521099034575,0.098762191729047,0.1105181161708667,0.1257614628532818,0.1372542789357736,0.1469525671540292,0.1563922438145593,0.1660709317009482,0.1773090815273477,0.1880091622188128,0.1988941874232828,0.2079440528875047,0.2171876546196219,0.2269256308100929,0.2362617155720988,0.2443136506082287,0.2522060239462625,0.2588215122592444,0.2648767249841214,0.2711820877401882,0.2776477817958354,0.2825355787760183,0.28737515321416,0.2909690762261178,0.2958866099216318,0.2996279412324923,0.3035933482356285,0.3073998052682824,0.3053313095222104,0.302482853223594,0.3007133428820175,0.2978591508685936,0.294883762279415,0.2923417576544246,0.2886503551696922,0.2887090180688414,0.2887527650161647,0.2895082782633411,0.2910545156238347,0.2917821957406643,0.2923368614051171,0.2935576218903264,0.2952514831669486,0.2958785024967012,0.2986954439153588,0.3038634600465477,0.3074848746758859,0.3131016670579948,0.318028813787532,0.3230680446985992,0.3268872030841935,0.3284402288467329,0.3310596150252289,0.3358841535201318,0.3399571996331397,0.3415721231766612,0.3433040614709111,0.3378480060195636,0.0,2.2978504877078203,51.052688460957285,148.40135721995617,215.4184295774888,fqhc3_100Compliance_baseline,47 -100000,95734,47811,455.4390289761213,5112,52.0818100152506,4053,41.70931957298348,1569,15.992228466375582,77.34647984393533,79.69747319423658,63.33814763576003,65.07478453889169,77.14240636587354,79.49742188516859,63.26002698599219,65.00075112818236,0.2040734780617867,200.0513090679874,0.0781206497678397,74.03341070933322,210.0758,147.8371877522876,219436.9816366181,154424.956391969,501.00426,336.2665023305535,522695.7925084088,350617.1603929153,462.97345,226.8348021541497,478981.4068147158,233505.43317929129,2873.22475,1345.5941731981345,2958419.297219379,1362800.0508371356,945.25586,431.3920208460491,967249.3993774416,430530.8868971856,1527.74408,662.622872339929,1558160.1520880775,659820.0826463514,0.38156,100000,0,954890,9974.408256209916,0,0.0,0,0.0,43449,453.2141141078405,0,0.0,41842,432.5631437106984,1242891,0,44648,0,0,0,0,0,103,1.0758978001545951,0,0.0,2,0.0208912194204775,0,0.0,0.05112,0.1339763077890764,0.306924882629108,0.01569,0.3542835765057987,0.6457164234942012,23.507179316687708,4.146604535447817,0.3214902541327412,0.2553663952627683,0.2146558105107328,0.2084875400937577,11.511527122988502,6.244964636242851,16.891189806802306,11587.576551919989,46.5662716824355,12.70593993483324,14.841673547826783,9.637536351686528,9.381121848088952,0.5849987663459166,0.81256038647343,0.7145049884881044,0.5804597701149425,0.1112426035502958,0.7491638795986622,0.9282296650717704,0.8753387533875339,0.7419354838709677,0.125,0.5162758137906895,0.7341977309562399,0.6509635974304069,0.5267993874425727,0.1071975497702909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027850921612315,0.0050482011981875,0.0073370475233659,0.0095792446313565,0.0116744971220534,0.013784818374328,0.0160856269113149,0.0182181896120597,0.0205660782369596,0.02252413666008,0.024662252198692,0.026615345137285,0.0287462088109803,0.0306416726748377,0.0328817721283905,0.0349974160206718,0.0369515250657445,0.0390090052703656,0.0410078897308759,0.0430897103396556,0.0585883261820497,0.0719257297761217,0.0849795944060346,0.0981198342762203,0.1103812576441314,0.125733498271323,0.1369210531899094,0.147120808940926,0.1562633467156402,0.1652838521567618,0.1774377638039452,0.1894110648423557,0.2001630434782608,0.2099585787822817,0.2189523443082504,0.2283556972676143,0.2363431554058575,0.2446516545564978,0.2526011232767913,0.2598357557640106,0.2657227793779135,0.2706886472582719,0.2764081381448912,0.2816421935870542,0.2861826925412284,0.2903336985019879,0.2942279797929275,0.297770032183791,0.3011322416830759,0.3051493876689189,0.3016751501440844,0.2994828202800473,0.2975830177789665,0.2950367514332337,0.2924214527528657,0.2895405430224371,0.2867368221463784,0.2865400360242345,0.2875782435912742,0.2887650055213194,0.2895956349502952,0.2895986444151084,0.2907147041593438,0.2912807694882725,0.2925582957489684,0.2946603080290829,0.2968656588948672,0.3021609771374882,0.3052635255492298,0.3082617941245963,0.3108493771234428,0.3138508693124768,0.3172525554724507,0.3222752404756495,0.3276185122728124,0.3304964539007092,0.3354093878171046,0.3371857258718572,0.3431126012852752,0.3442043222003929,0.0,2.472053181548784,51.637680793595926,154.91428918899422,205.20661920921208,fqhc3_100Compliance_baseline,48 -100000,95747,47719,454.9803126990924,5233,53.46381609867672,4146,42.78985242357463,1584,16.230273533374415,77.41222784566315,79.76842417272596,63.350809200748486,65.08993723999068,77.21401513019342,79.57132967834266,63.27756435016535,65.01927325920863,0.1982127154697366,197.0944943832933,0.0732448505831371,70.66398078204372,209.4356,147.41833457489088,218737.86123847225,153965.87588007032,501.17884,335.7473279787098,522890.08532904426,350111.6794152399,458.83143,225.0269864457285,476129.4975299487,232674.169508348,2921.04598,1344.2197631477163,3015655.195463043,1368928.3005689122,963.2082,431.1747757083854,993033.4109684898,437382.1364370008,1543.79394,643.3767575631512,1582922.8487576633,647916.6944197293,0.3818,100000,0,951980,9942.630056294192,0,0.0,0,0.0,43541,454.1865541479106,0,0.0,41687,432.2433078843201,1246450,0,44678,0,0,0,0,0,74,0.7728701682559245,0,0.0,2,0.0208883829258357,0,0.0,0.05233,0.137061288632792,0.3026944391362507,0.01584,0.3401061687717371,0.6598938312282628,23.917284115905133,4.224547160813427,0.3205499276410998,0.2571152918475639,0.2122527737578388,0.2100820067534973,11.499673993925814,6.083225684774253,16.77472865595801,11612.686460413302,47.04741131210712,13.00846801374897,15.069151859265476,9.616193029602062,9.353598409490598,0.5735648818137964,0.8039399624765479,0.7035364936042137,0.5681818181818182,0.0987370838117106,0.7590652699435939,0.9287257019438444,0.8730964467005076,0.69377990430622,0.1314285714285714,0.4943201376936316,0.7081260364842454,0.6320855614973262,0.5290611028315947,0.0905172413793103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496050232934,0.0046926468352505,0.0068274966521933,0.0087232919002356,0.0108175154281763,0.0129180027485112,0.0150233401960984,0.0171729436853973,0.0194581557674423,0.0218628454452405,0.0238685742395671,0.025930032027593,0.0279936672423719,0.0301429395287526,0.0320903068700084,0.0342339734976123,0.0361994698475811,0.0383358406391035,0.0406196392368872,0.0425538564106837,0.057420264133215,0.0720100449931987,0.0851559303899046,0.0983001283318957,0.1114053597805444,0.1274033628562056,0.1388549901841141,0.149165859319273,0.1586865697158793,0.1677290580130062,0.1797102386650281,0.1911196284145905,0.2024097172337229,0.2112982847885813,0.2198348017621145,0.2292415169660678,0.2384889554306656,0.2457414350209973,0.2529994665092679,0.2600320843359688,0.2656349472758209,0.2711065358024402,0.2772251463717546,0.2824304100568692,0.2863731249089761,0.2907748169118099,0.2943844087700668,0.297935252985444,0.3013705701675141,0.3050352904065297,0.3030839129910337,0.3003067148647168,0.2981416078035654,0.2962052608883139,0.2940855457227138,0.2910121236060891,0.2887454454077145,0.288977531748616,0.2886199532187531,0.2884734540690778,0.2896412198155056,0.2903408868537435,0.2914042199355576,0.2917275909433293,0.2935342361243563,0.2946308724832214,0.2956975595993793,0.3012936127868648,0.3056519927787807,0.3098249598621608,0.3131512756018685,0.3176741991296597,0.3224824501459899,0.3266361796236599,0.328667464775762,0.3331388564760793,0.3305859433538138,0.3336639555643721,0.3349553933495539,0.3301815431164902,0.0,1.8957481515840324,54.47591454348044,142.8191347917909,219.2283561892672,fqhc3_100Compliance_baseline,49 -100000,95730,47674,454.40300846129736,5130,52.41825968870782,4110,42.358717225530135,1562,15.867544134545074,77.32373385663094,79.69359963999764,63.321321634088775,65.07512805617199,77.12085100937024,79.49602533999847,63.24453808437608,65.00322303897451,0.202882847260696,197.5742999991752,0.0767835497126938,71.90501719747999,211.00618,148.5244692484184,220417.80006267625,155149.14288519818,501.54275,335.55973851988034,523349.3993523452,349963.871983133,452.19076,221.14225762210745,469370.32278282667,228578.8942827044,2913.7966,1344.253836881145,3003947.853337512,1364834.168277996,899.14201,407.0749989823251,925821.6546537136,411914.076998948,1521.8206,651.2828273024007,1548395.6126606078,645301.2989868018,0.38222,100000,0,959119,10018.99091193983,0,0.0,0,0.0,43669,455.5729656325081,0,0.0,40979,425.0078345346286,1241191,0,44521,0,0,0,0,0,72,0.7521153243497336,0,0.0,1,0.010446046171524,0,0.0,0.0513,0.13421589660405,0.3044834307992203,0.01562,0.3590841399851079,0.640915860014892,23.573109754672696,4.17372635439663,0.3182481751824818,0.2591240875912409,0.2143552311435523,0.208272506082725,11.20806226541139,6.021999493692901,16.77115711975623,11594.00229705096,46.85191839243338,13.165816807600514,14.755450313388014,9.693150488420743,9.23750078302411,0.5661800486618005,0.8028169014084507,0.6788990825688074,0.5698070374574348,0.0957943925233644,0.751892346509672,0.9048672566371682,0.876010781671159,0.7046632124352331,0.1387283236994219,0.4905854159534406,0.7275693311582382,0.6008537886872999,0.5319767441860465,0.0849194729136164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025430597771023,0.0047968196983986,0.0068818514007308,0.0092677275775867,0.0115985674751749,0.013598997646915,0.0157773426345204,0.018026206938813,0.0200525599991819,0.0221823954119514,0.0244795405599425,0.0263536274751458,0.0283527426854861,0.0303074021785055,0.0323396436755506,0.0343954180795633,0.0364570386941751,0.0385022410358565,0.0406658764322997,0.042659164322184,0.0569483455325724,0.0709837455386579,0.0845756008518405,0.0976479498453705,0.1102217722800468,0.1252167660618365,0.1365931804196991,0.147589303765815,0.157253930280246,0.1668257219142388,0.178523359857009,0.1894654853470937,0.2004501565762004,0.2104762529519811,0.2198534750181506,0.2295366966381715,0.2388087990991292,0.246082297037711,0.2535398079604584,0.2601304198604278,0.2663608633359523,0.271992336269539,0.2775867163032559,0.2826883471430624,0.2876439676201803,0.2919611851341034,0.2955119705801416,0.2990026460411154,0.3026963323663489,0.3051973736255043,0.3026469836228822,0.3012164244826067,0.2989096748746267,0.2962507771721057,0.2935573979970877,0.2895296692532562,0.2853893898952888,0.2864301036532446,0.2864609046492228,0.2863802982312537,0.2871533228676086,0.2880703900254493,0.2886455476225372,0.2888640679101977,0.2893358323721645,0.2920466982852973,0.2927302284459401,0.2967254408060453,0.299620466685409,0.3056086679413639,0.3097555403244231,0.3144838623632969,0.3165308571789527,0.3219769307157589,0.3240333302125269,0.3275657738800663,0.332476176070186,0.3350753768844221,0.3336049986416735,0.341964965727342,0.0,2.2428912612690626,51.71652348260412,149.0483697402177,218.30567834287535,fqhc3_100Compliance_baseline,50 -100000,95763,47313,450.194751626411,5165,52.525505675469645,4099,42.03084698683208,1612,16.34242870419682,77.38153749659537,79.72237702972052,63.350937847410606,65.08251874148834,77.17350216433147,79.5192740704456,63.272671186991744,65.00859590018844,0.2080353322639041,203.10295927491492,0.0782666604188619,73.92284129990401,211.28646,148.6642734479676,220634.524816474,155241.65538879062,500.90678,335.76355671140107,522270.1565322724,349820.792689662,459.0396,225.1119010477769,473337.96977955993,230509.71882706563,2905.77308,1360.9311614322144,2983243.215020415,1370120.5996378723,946.85261,431.79210039905706,968799.1708697514,430951.4557746321,1568.1489,670.6512416155412,1592237.83716049,664503.6628362434,0.3796,100000,0,960393,10028.842037112454,0,0.0,0,0.0,43669,455.1862410325491,0,0.0,41636,428.9548155341833,1238510,0,44463,0,0,0,0,0,73,0.7518561448576172,0,0.0,0,0.0,0,0.0,0.05165,0.1360642781875658,0.3121006776379477,0.01612,0.3504983388704319,0.6495016611295681,23.47540057657628,4.140806621774855,0.3071480848987558,0.2671383264210783,0.2168821663820444,0.2088314222981215,11.515248073413396,6.292003004824163,17.244471608132514,11536.554274164951,46.86224500775803,13.328417344842656,14.068672075305397,10.0195547546082,9.445600833001771,0.5767260307392047,0.7990867579908676,0.6862589356632248,0.5883014623172104,0.1191588785046729,0.758563074352548,0.9230769230769232,0.8773006134969326,0.7573221757322176,0.1736842105263158,0.5017229496898691,0.7151607963246555,0.6195069667738478,0.5261538461538462,0.1036036036036036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218254370151,0.0048148073063433,0.0071425672659388,0.0094248600997328,0.0116416210830266,0.0138237120433237,0.0161148937905165,0.0180446830443258,0.0202640560812606,0.0225203102298074,0.0246756706904678,0.0269754264950421,0.0290767016245116,0.031083975124583,0.0330060235993068,0.0348401095211034,0.0369220580322033,0.0388199562562842,0.0409291116097398,0.0429373119410288,0.0571875815288285,0.0706912239967368,0.0839466566018745,0.0971457396275589,0.1090713653416515,0.1253117734094271,0.136112170927127,0.1467636301777664,0.1560659096730129,0.1658216586453431,0.1775368949073725,0.1891304347826087,0.1992674470420729,0.2084389753453401,0.2179604228311205,0.2277095095759991,0.2363987109579723,0.2442783273381295,0.2512303540244483,0.2576773455377574,0.2645344803663105,0.2709219692365234,0.2766823198211519,0.2814516804961864,0.2857766937274746,0.2903011432861169,0.29363503540254,0.2979391136409839,0.301828243386517,0.3047945205479452,0.3013735451442088,0.2990248592226343,0.2956080130549772,0.2934206918447751,0.2908769794743169,0.2875066860242989,0.2843752958626566,0.2846778542133041,0.284581153610979,0.2857016017331392,0.2864283183199985,0.2860686233980984,0.2876134822080768,0.2883735464143026,0.2896464162514373,0.2898539425126046,0.2919857069933639,0.2949141965678627,0.2999617218220413,0.3047071788413098,0.3094603748024385,0.3119096617592739,0.3136848713119899,0.3176157934700075,0.3185824114007125,0.3251179245283019,0.3257863546573469,0.324438202247191,0.3169052863436123,0.3111449220235831,0.0,2.96763818458089,51.22573182876977,153.82485077643844,210.4410062172023,fqhc3_100Compliance_baseline,51 -100000,95864,47285,449.3866310606693,5189,52.99173829591922,4111,42.37252774764249,1585,16.179170491529668,77.37299817448195,79.67475355335452,63.35320242165369,65.05710769829194,77.175087341227,79.47885781617968,63.27876945528384,64.98568016899941,0.1979108332549515,195.89573717483688,0.074432966369855,71.42752929253504,209.48708,147.3768466967812,218525.2858215806,153735.34037467788,499.00718,334.6043216041495,519928.3985646332,348435.9359604411,452.32455,221.5136047327558,468588.4586497538,228541.18609941515,2921.228,1355.9448503870212,3009742.2807310354,1377358.853622557,969.02569,436.5598790676043,995182.2060418926,439884.6736224559,1543.39002,653.289958332774,1576593.298840023,652382.8843870328,0.37977,100000,0,952214,9932.967537344572,0,0.0,0,0.0,43481,453.01677376283067,0,0.0,40989,424.3615955937578,1249152,0,44835,0,0,0,0,0,88,0.9075356755403488,0,0.0,0,0.0,0,0.0,0.05189,0.13663533191142,0.3054538446714203,0.01585,0.3485967503692762,0.6514032496307238,23.622017499031365,4.147543525525355,0.3108732668450498,0.2634395524203357,0.2172220870834346,0.2084650936511797,11.493323913820674,6.176960352861487,16.930480454784938,11574.15985099608,47.02751575859829,13.074277420220914,14.653279649971402,9.881090416955416,9.418868271450563,0.576015567988324,0.8060941828254847,0.7065727699530516,0.555431131019037,0.1120186697782963,0.736753574432296,0.9219858156028368,0.8484848484848485,0.7136150234741784,0.1368421052631579,0.5106091718001369,0.7318181818181818,0.6502732240437158,0.5058823529411764,0.1049475262368815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0043580933848196,0.0069078847265755,0.0089149726864732,0.0111827257385682,0.0136807817589576,0.0160733032319876,0.0184204349467797,0.020486568780717,0.022806802136411,0.0247118487782388,0.0269732319656909,0.0290738304694565,0.0311782688804026,0.0331845406843087,0.0350902556900326,0.0370998779200893,0.0390338424553913,0.0409544973105439,0.0430403978401772,0.0579617967218584,0.0719316210737497,0.0850408548082966,0.097994329518009,0.1102814958349568,0.1259863313228195,0.1373486060631748,0.1472539388913695,0.1568240279215719,0.1660469551986112,0.1772739012526365,0.1889145895933764,0.2000847770797556,0.209446236265238,0.2180619890633424,0.2281904466569944,0.2369706840390879,0.2450079310616373,0.2525522936612369,0.259368237866801,0.2648048568950564,0.2708547768316646,0.2769336362775726,0.2814438669189681,0.2862135922330097,0.2903988474183895,0.2937290425904609,0.2966066138608826,0.2998033482547158,0.303277283217936,0.3016755265459929,0.2990551376033228,0.2967997295546102,0.2942961165048544,0.2922875972213976,0.2891321296989895,0.2863938053097345,0.2863646039725556,0.28677510005961,0.287057650180769,0.2879749197581548,0.2885705289672544,0.2897695275836896,0.2914332710945141,0.2923620562041878,0.2941039384758797,0.2957123411978221,0.3003783259856799,0.305018496544985,0.3073260937991816,0.3111061151079137,0.3166333718851856,0.3196230183497691,0.3211557370849406,0.3248878085265519,0.3315039701074264,0.3346988317402518,0.3356289244480454,0.3329639889196676,0.3332063975628332,0.0,1.9114751747744936,52.23784927768168,151.82933327956374,216.1561278863096,fqhc3_100Compliance_baseline,52 -100000,95791,47753,454.9487947719514,5023,51.1634704721738,3996,41.12077335031475,1516,15.4294244762034,77.39816222968327,79.72748824787863,63.35848721039546,65.07942000580044,77.20407848630411,79.53818709666551,63.28455050165098,65.0101186430826,0.1940837433791529,189.3011512131153,0.0739367087444762,69.30136271783738,211.64594,148.8543604341452,220945.537680993,155394.93317132632,504.40331,338.1973413954121,525953.9205144533,352444.9597513462,458.61236,224.9866940730972,475197.085321168,232115.8094728427,2853.04065,1335.681842820499,2935911.1503168354,1352063.9935586825,937.99181,431.5873422286283,960558.7268114958,431984.60044905567,1478.32934,636.6690277188768,1504533.6409474793,630804.5819824331,0.3807,100000,0,962027,10042.978985499682,0,0.0,0,0.0,43836,456.9844766209769,0,0.0,41455,429.2156883214498,1236107,0,44376,0,0,0,0,0,98,1.0230606215615246,0,0.0,1,0.0104393940975665,0,0.0,0.05023,0.1319411610191752,0.3018116663348596,0.01516,0.3552027543993879,0.6447972456006121,23.43887405831328,4.240136627575288,0.3018018018018018,0.2675175175175175,0.2237237237237237,0.2069569569569569,11.14232315988568,5.840749568497753,16.306660294098748,11540.855253501262,45.65895459408296,12.9704107522236,13.679819113147124,9.9735263894627,9.035198339249533,0.5708208208208209,0.764265668849392,0.7089552238805971,0.5671140939597316,0.1233373639661426,0.7565359477124183,0.9096774193548388,0.872093023255814,0.7130434782608696,0.2108108108108108,0.4888167388167388,0.652317880794702,0.6438515081206496,0.516566265060241,0.0981308411214953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584108079641,0.0047936598021728,0.0070709735016028,0.0094239987001381,0.0115081583896711,0.0137500763327701,0.0159983695929077,0.0182018528343468,0.020341441984491,0.0223961530591364,0.024526426866375,0.0264953669023406,0.0285394228397599,0.0305993268765631,0.0327336460642301,0.0347744360902255,0.0368703640482914,0.0388950528313234,0.0409037058591233,0.0426017140655427,0.0575989982782908,0.0718723199531449,0.084682323338226,0.097649927479873,0.1098190942059542,0.1250171784978064,0.1357345127111903,0.1461621138436326,0.156007689842999,0.1655497056584351,0.1780321795506924,0.1888559624494387,0.2010842404884514,0.210534939864326,0.2194296389911533,0.2287930252370467,0.2370445524684475,0.2448362323892193,0.2519877051504531,0.2591142255198314,0.2646997618442045,0.2707763517778245,0.2766423271281317,0.2815656111849908,0.286289882158764,0.2897655240322481,0.2938912217556488,0.2976839323601529,0.3000219919535323,0.3031197690817308,0.300653682681444,0.2977829061237946,0.296029033210955,0.2934113611139138,0.2905073407530192,0.2870912640312347,0.2840002522624791,0.2839169294619369,0.2840266902703071,0.2851354233312007,0.2864542574995342,0.2868615293770298,0.2873608737337946,0.28898756660746,0.2880314397999285,0.2902224521469219,0.291226885079794,0.2953303527074019,0.2978178925891344,0.3035693342194769,0.3083742069027584,0.3127711851116106,0.3146213292117465,0.3159795365633464,0.3187691735614019,0.3206502532689362,0.3236002408187838,0.3288,0.3313384113166485,0.336838152459632,0.0,2.2291174464001235,53.2347430146539,142.73597049476618,203.43447712632292,fqhc3_100Compliance_baseline,53 -100000,95871,47170,448.7697009523214,5157,52.518488385434594,4116,42.27555778076791,1564,15.906791417634114,77.3584022892406,79.63929344503251,63.35300198276878,65.04119129599245,77.16001636777446,79.44494779339922,63.2776842053518,64.96967460321791,0.1983859214661407,194.34565163328443,0.0753177774169842,71.5166927745372,211.25104,148.6493506834634,220349.2609861168,155051.4239795803,498.89624,334.00139089056074,519733.4126065233,347736.8243687462,449.22125,219.9678056646942,463600.5778598325,225786.51004724615,2886.40351,1342.5119738511664,2972907.7719018264,1362523.4678382068,951.18437,428.88723106577487,978548.0385100812,433785.25858090445,1515.37708,648.9904834564038,1545191.5177686682,647452.3381408801,0.37932,100000,0,960232,10015.875499368944,0,0.0,0,0.0,43414,452.1596728937844,0,0.0,40883,421.5247572258556,1241429,0,44518,0,0,0,0,0,70,0.7301478027766478,0,0.0,1,0.0104306828968092,0,0.0,0.05157,0.1359538120847833,0.3032770990886174,0.01564,0.351517408303854,0.648482591696146,23.669492988027823,4.114951536417256,0.3085519922254616,0.2687074829931973,0.2264334305150631,0.1963070942662779,11.387397911907808,6.230430416426714,16.77864531497422,11506.809255601716,47.10444311356576,13.581194361067396,14.25512663688538,10.341230254110158,8.926891861502828,0.5840621963070942,0.8155515370705244,0.6976377952755906,0.5525751072961373,0.125,0.7373653686826843,0.9006479481641468,0.834319526627219,0.7333333333333333,0.143646408839779,0.5204537641801307,0.7542768273716952,0.648068669527897,0.495049504950495,0.1196172248803827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780427057072,0.0047218084729103,0.0068870383706423,0.0092802241874727,0.0113437690587517,0.0136476047995603,0.0158625045845388,0.0179611402927227,0.0201341596642945,0.0222656130199654,0.024476132955255,0.0265424124992311,0.0286747185933777,0.0306334478573045,0.0327909397252651,0.0347629470554224,0.0369079267220423,0.038874494766297,0.0406052361023127,0.0423645935204644,0.0562632917726533,0.0700196414392578,0.0835052518038349,0.0965286236297198,0.1089530229618706,0.1244771200405628,0.1350761372908476,0.1451432824711574,0.1551532746990009,0.1642600632470386,0.1760911469831253,0.1873864128083081,0.1985497162488313,0.2080290374775878,0.2174448525368932,0.2271731190650109,0.2353866229464315,0.2444566879553836,0.2512280064888657,0.257561176794061,0.2638765143538178,0.2692213215426185,0.274649805217103,0.279566411261796,0.2832835022727825,0.2870953819594303,0.291199639319215,0.2954568605480289,0.299441108964301,0.3028653711507721,0.3005469634100339,0.2982463385089748,0.2968252626834559,0.2947908388122245,0.2914728221287475,0.2883693137420136,0.2850378487948564,0.2853532037815126,0.2859558333760311,0.2875191560640079,0.2882224258175495,0.2888315067413072,0.2898865606785468,0.2906114266622118,0.2919699291323501,0.2937432075764632,0.2957638869237952,0.2998036220816059,0.3046488969308929,0.3079831436335709,0.3141797122432359,0.3178306794892007,0.3207075442215138,0.3249923710711016,0.3255112618980303,0.3288422558721831,0.335800185013876,0.3385858585858586,0.3384237796563948,0.332955832389581,0.0,2.53999284604772,52.31545585856968,152.65336077167044,212.739329630292,fqhc3_100Compliance_baseline,54 -100000,95724,47681,453.8464752831056,5186,52.8707534160712,4109,42.2464585683841,1601,16.255066649951946,77.38965647392791,79.75515052962791,63.34469261111818,65.0934036169835,77.18626823218227,79.55958984505492,63.2665958454925,65.0213838328497,0.2033882417456425,195.560684572996,0.0780967656256805,72.01978413380061,210.05908,147.74312032672333,219442.43867786555,154342.81927909754,504.0093,338.5464365929742,525842.892064686,352989.29602502653,461.12801,226.4071807433472,477703.41816054494,233374.07518637023,2884.76132,1352.8784305896856,2965250.438761439,1365001.7477885592,965.46958,441.52711366413695,985696.951652668,438415.1351713336,1551.9466,668.3269010784924,1576994.1080606745,658296.6083178687,0.38129,100000,0,954814,9974.65630353934,0,0.0,0,0.0,43876,457.6595211232293,0,0.0,41786,432.556098784004,1241095,0,44565,0,0,0,0,0,81,0.8357360745476579,0,0.0,0,0.0,0,0.0,0.05186,0.1360119594009808,0.3087157732356344,0.01601,0.3385724852071006,0.6614275147928994,23.4442784841064,4.110976873655325,0.3185689948892675,0.2652713555609637,0.212217084448771,0.2039425651009978,11.365944447587456,6.27058012902753,17.10682475278157,11653.66690873829,46.93191673188156,13.253522135231826,14.771460083017848,9.7099623369715,9.19697217666038,0.5870041372596739,0.8174311926605504,0.6913674560733384,0.5848623853211009,0.1264916467780429,0.7526358475263585,0.9264367816091954,0.8677248677248677,0.755656108597285,0.1507537688442211,0.5159944367176634,0.7450381679389313,0.6197636949516648,0.5268817204301075,0.1189358372456964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0047139685532678,0.0070226001887577,0.0091838185992644,0.0114844314240084,0.0138589059508777,0.0162518734515349,0.0183542430150774,0.0205454248098781,0.0227959014463677,0.0247852559503064,0.0270822425493034,0.029165038962107,0.0312107420145396,0.0331191402019535,0.0353654881615526,0.0374523691186216,0.0393302140285717,0.0412418280273975,0.0433550403750976,0.0582063061181875,0.0719392080720962,0.085493043460013,0.0985838436125665,0.1110196761090889,0.1266130738311825,0.1373229349037084,0.1476967942441142,0.1570256760798052,0.1670742433017997,0.1783241258251758,0.1891871422852629,0.2003305857021683,0.2102080097989895,0.2194748888595449,0.2287698236909719,0.2383703422816546,0.2469320327249842,0.2548817272582949,0.2619227424596091,0.267377452964372,0.2733712041517638,0.2787042180279626,0.2837839455196103,0.2884029656954944,0.2923355327949576,0.2960833093723043,0.2999110320284697,0.30382611169298,0.3058263940128597,0.3033223127167164,0.3008888461485623,0.2987615446251599,0.2974477289113194,0.2946306935971095,0.2924626182483979,0.2902559737721455,0.2895901010463768,0.2891141472014103,0.2894601633506369,0.2906113050583079,0.2919672259683236,0.2928550670486154,0.2935336613039046,0.2955535973707399,0.2962723773604402,0.2963882618510158,0.2996067661194682,0.305006633614971,0.3085379839443192,0.3124914861735458,0.3164382106046116,0.3185208398621122,0.3185085354896675,0.3224294771662225,0.329346185112066,0.3307899461400359,0.3304347826086956,0.329225823734262,0.3300751879699248,0.0,2.65960837103572,53.25388269095749,148.51658603096433,211.34266725405132,fqhc3_100Compliance_baseline,55 -100000,95758,47500,452.4112867854384,5110,52.17318657448986,4066,41.83462478330792,1554,15.862904404853904,77.34687979821054,79.70812665019987,63.33382307926016,65.08217053065634,77.15129184658666,79.51518654470809,63.26043145287745,65.01208589874533,0.1955879516238781,192.94010549178608,0.0733916263827083,70.08463191101555,210.58752,148.1583521911427,219916.37252240023,154721.64434422474,500.40578,335.4835407165745,521976.806115416,349748.648380892,453.82577,222.1137195402341,469973.8716347459,228825.4881107616,2903.46093,1352.9483606537526,2993309.9375509094,1374110.9470266232,930.78005,424.1306736465773,956875.2271350696,427782.09970772057,1517.7938,643.1437856438582,1551408.5298356274,643039.9639820609,0.3822,100000,0,957216,9996.198751018192,0,0.0,0,0.0,43594,454.6147580358821,0,0.0,41171,426.0531757137785,1243967,0,44659,0,0,0,0,0,86,0.8876542952024896,0,0.0,0,0.0,0,0.0,0.0511,0.1336996336996337,0.3041095890410959,0.01554,0.3440617353660832,0.6559382646339168,23.608862446578247,4.194481863133802,0.3093949827840629,0.26463354648303,0.2169208066896212,0.2090506640432858,11.405201899578625,6.02879307794381,16.64227095794617,11630.758991872068,46.50559550934864,13.164302745727674,14.260986787658345,9.707507276276589,9.372798699686038,0.5764879488440728,0.8234200743494424,0.6796502384737679,0.5952380952380952,0.0917647058823529,0.7512315270935961,0.9363057324840764,0.8392370572207084,0.7192118226600985,0.1129943502824858,0.5017556179775281,0.7355371900826446,0.6139169472502806,0.5581737849779087,0.0861812778603269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394714442057,0.0045126353790613,0.0067614213197969,0.008841732979664,0.0108447953121184,0.0132278365002749,0.0154755836476705,0.0176806859942833,0.0199955020343072,0.0223512306999221,0.0245650368578078,0.0265727516351277,0.0286913062257049,0.0307185166108678,0.0327987285074411,0.0348987460847452,0.0368859249440808,0.0389024326987914,0.0407605305833922,0.0427058492746982,0.0575218929723297,0.0713942005941671,0.0850004193927193,0.0974722791528719,0.1102270092532091,0.1258083604547952,0.1371850721273596,0.1473649517855814,0.1583876438651321,0.1675341644175984,0.1787634986877769,0.1905369047747679,0.2008190043774372,0.2100866944729544,0.2193589490103034,0.2285711124878307,0.2372097171588793,0.2454815214459131,0.2531371258707935,0.2592469596683691,0.2668864595985887,0.272980338491409,0.2781859700185757,0.2830903056517415,0.2878480859066917,0.2914857768321629,0.2953309581848866,0.2986404066073697,0.3031020080944438,0.3075261737011918,0.3048567435359888,0.302121403643758,0.2994602799797605,0.2970904846310147,0.2958754333461732,0.2928043491539918,0.2892115855102202,0.2896512199115769,0.2909320113797039,0.2915221065741482,0.2918681729063579,0.2919787150177375,0.2933684122609204,0.2931161441481646,0.2951992318771003,0.2949422831383381,0.2953115659426684,0.2978087022227819,0.3039012934207298,0.3095606006577123,0.314879679752536,0.317451084082496,0.3211440757699303,0.3245243128964059,0.3222757598220904,0.3251023990637799,0.3268181818181818,0.3329283110571081,0.3332407664537628,0.3233463035019455,0.0,2.4439216932163665,52.86099360197654,142.23297957690562,216.890367429863,fqhc3_100Compliance_baseline,56 -100000,95745,47924,456.754921928038,5201,53.109822967256775,4094,42.09097080787508,1586,16.073946420178597,77.36211040614715,79.72306309897448,63.32787542470121,65.07521633971479,77.1553329805344,79.5237797778672,63.24962859935434,65.00287999728987,0.2067774256127563,199.28332110727357,0.0782468253468735,72.3363424249186,212.33696,149.34003951028814,221773.41897749229,155976.85467678535,502.54413,336.6246122452852,524159.8516893832,350867.93629512633,460.3056,224.7056513183408,477235.8347694397,231901.21646114663,2882.11227,1325.1128033182165,2962262.468013996,1336221.4847442105,944.23308,419.9769738862232,965539.0464254008,418242.04956841154,1536.07554,654.4320602363938,1558382.0982818946,643517.090405408,0.38193,100000,0,965168,10080.609953522377,0,0.0,0,0.0,43583,454.457151809494,0,0.0,41590,430.9363413233067,1232678,0,44319,0,0,0,0,0,96,0.9922189148258396,0,0.0,0,0.0,0,0.0,0.05201,0.1361767863221009,0.3049413574312632,0.01586,0.353189924618496,0.6468100753815039,23.8040164641576,4.173225790927841,0.3146067415730337,0.2696629213483146,0.2100635075720566,0.205666829506595,11.08546178225189,5.909687095469123,16.872552257097485,11580.04248527743,46.60502247773452,13.527713255719206,14.429658198592175,9.591084110545632,9.056566912877502,0.5701025891548608,0.7989130434782609,0.6777950310559007,0.5651162790697675,0.1104513064133016,0.7401709401709402,0.8991228070175439,0.8496932515337423,0.7136363636363636,0.1309523809523809,0.5020519835841313,0.7283950617283951,0.6195426195426196,0.5140625,0.1053412462908011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694345663252,0.0044922627618796,0.006963760024363,0.0090126705752055,0.0110167336351152,0.0132297225730231,0.0155507515346807,0.0176835742873478,0.0200509197247471,0.0222003768329646,0.0243457215522192,0.0261108942621772,0.0279832512011193,0.0301006790944033,0.0322527376123685,0.034561902300336,0.0366776775636578,0.0385345659414199,0.0407380457380457,0.0428011916418408,0.0585711601494812,0.0726892294816132,0.0862871764755233,0.0990744636095919,0.1110700912399135,0.126675057377656,0.1374693669704331,0.1475538993878094,0.1573525954736819,0.1671992622300384,0.1791441834415759,0.1899602783760674,0.2007506935755861,0.2096684206495936,0.2183186951066499,0.2285242595813989,0.2363766303376809,0.244196905766526,0.2517557892825941,0.2586917685859558,0.2653958774579586,0.2715555555555555,0.2768633668989835,0.2817602071396035,0.2865277676598431,0.2910540650456601,0.2942273512403935,0.2987863830653368,0.3023180565082898,0.3057061096385383,0.3032925909972001,0.3006175471412656,0.2980995118657419,0.2954699608907105,0.2929740791268758,0.2897134819435525,0.2871230798406979,0.2874078925822826,0.2874357490553834,0.2878007178138659,0.2884572365968235,0.2878317889115753,0.2889004581424406,0.2876550896073286,0.2890710905005498,0.2899515581690542,0.2916065518119324,0.2958989552471542,0.2991794729156526,0.3042743773080851,0.3076507650765076,0.3105018052430537,0.3148505004040529,0.3155848040682022,0.3204098587648851,0.3247863247863248,0.3255709134615384,0.3311688311688311,0.3374265883609183,0.347577260587562,0.0,2.4259974417880867,50.69253626902978,149.57870525602806,217.7212659762376,fqhc3_100Compliance_baseline,57 -100000,95745,48023,457.1204762650791,5122,52.12804846206068,4027,41.3180844952739,1571,15.92772468536216,77.32840490063373,79.68807011347502,63.31625382636724,65.06433056090796,77.13043859609412,79.49716373620288,63.24157497611773,64.99544634816264,0.1979663045396051,190.90637727214244,0.074678850249505,68.88421274531709,210.22606,147.98464274684963,219568.0192177137,154560.60622481932,501.41573,336.67758283368136,522943.2033004334,350886.7149068476,464.60362,227.7377157439388,480649.7153898376,234349.9829337391,2872.76708,1326.912527074431,2953031.9285602383,1338677.7595396177,934.6251,420.9433984611467,958086.0619353493,421609.17025228566,1534.36716,646.1795037636764,1558428.5550159276,638107.265688834,0.38235,100000,0,955573,9980.364509896075,0,0.0,0,0.0,43571,454.290041255418,0,0.0,42062,434.6963287900151,1238725,0,44500,0,0,0,0,0,74,0.7728863126011802,0,0.0,1,0.0104444096297456,0,0.0,0.05122,0.1339610304694651,0.3067161265130808,0.01571,0.3414634146341463,0.6585365853658537,23.73700046500649,4.2291640934478645,0.3071765582319344,0.2662031288800596,0.2128135088154954,0.2138068040725105,11.360156117276183,6.014371384092223,16.642409085252332,11595.151628051151,45.93932840029539,13.034096719897084,13.990375646182915,9.518536658912195,9.39631937530319,0.5803327539111001,0.8003731343283582,0.6936135812449474,0.5904317386231038,0.1335656213704994,0.747457627118644,0.9345372460496614,0.8490028490028491,0.7319587628865979,0.1458333333333333,0.5110642781875658,0.7058823529411765,0.6320541760722348,0.5490196078431373,0.1300448430493273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0044828495507008,0.0068736547130731,0.0092989694912498,0.0116376065593782,0.0136998859191655,0.0161527165932452,0.0184179360476987,0.0204154654562554,0.0226728355886748,0.0249602788170775,0.0270550547261638,0.029226956262405,0.0310546211130223,0.0332703837858477,0.0353720682633368,0.0375760838060535,0.0394511682897234,0.0414748459372109,0.0434941101725808,0.0587983549403979,0.0734546595544399,0.0861705585672493,0.0987354545741225,0.1106533192834562,0.1262723957507531,0.1377880526421837,0.1481071531199778,0.1577800563957959,0.16753881787767,0.1804864387427562,0.19159272884657,0.2019409659134181,0.2112250924123449,0.219921625608172,0.2294647999645563,0.2380702615837871,0.245804774285039,0.2530537644174008,0.2604974622778777,0.2672660164069099,0.2729834654692579,0.2777975049120564,0.2825771477230477,0.2859694528487588,0.2904875764149083,0.2949853986238359,0.2978707146859559,0.3006105544248992,0.3032474301624375,0.3004929425708436,0.2977983140118542,0.2944622838149963,0.2924608614097107,0.2901200670832158,0.2872682210391041,0.2835726484913656,0.2837542874961022,0.2841735212805897,0.2837269030463009,0.2846011547732496,0.2862459387614453,0.2866958151155527,0.2873174207338796,0.2882848392036753,0.291066058280618,0.2919797011878774,0.2973580663293985,0.3008529155787641,0.3053486263844547,0.3086514569686017,0.3144805876180482,0.3185654008438818,0.3254522254747429,0.3267317526731753,0.3307270393278095,0.330662231629876,0.3361667678607569,0.3412348401323043,0.3395784543325527,0.0,2.7960935484339133,50.79895921345042,146.92327617698749,209.69844770279693,fqhc3_100Compliance_baseline,58 -100000,95729,47488,453.1855550564615,5084,51.844268716898746,4064,41.84729810193358,1519,15.5125406094287,77.31464774318667,79.67998813189536,63.30648041847581,65.05590494601144,77.11155298557419,79.47949720928102,63.229507443038486,64.98197930359511,0.2030947576124759,200.49092261433543,0.0769729754373216,73.92564241632726,209.92334,147.7008497496966,219289.18091696352,154290.60133261248,499.87914,335.22532227829936,521613.3773464676,349613.4424033461,457.98511,224.32251735619337,474782.58416989626,231468.6302934985,2829.45977,1328.2988485751698,2917540.055782469,1349404.0453521612,953.53207,435.67893405597545,983918.9691733957,442961.5414931468,1472.9566,640.3395990871976,1505886.2831534855,641854.6129656886,0.38126,100000,0,954197,9967.69004168016,0,0.0,0,0.0,43459,453.3735858517273,0,0.0,41546,430.2980288104963,1241668,0,44594,0,0,0,0,0,79,0.8148001128184772,0,0.0,1,0.0104461552925445,0,0.0,0.05084,0.1333473220374547,0.298780487804878,0.01519,0.3558584137800492,0.6441415862199508,23.527189114570035,4.124337558408885,0.3252952755905511,0.2731299212598425,0.203001968503937,0.1985728346456693,11.565563439455774,6.3936308750470445,16.480601690525393,11570.044416673323,46.39718018008589,13.45271673099147,14.809695383701111,9.147481728769463,8.98728633662385,0.5856299212598425,0.8063063063063063,0.6822995461422088,0.5975757575757575,0.1115241635687732,0.7325769854132901,0.9364035087719298,0.8181818181818182,0.7038834951456311,0.1313131313131313,0.5215547703180212,0.7155963302752294,0.6286919831223629,0.5621970920840065,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0046232928795206,0.0068819911082238,0.0089421806726958,0.0112314970242636,0.0133766657157993,0.0154762754919864,0.0176635151416144,0.0199231288205589,0.0218971377093485,0.0238688443911291,0.0256594551857974,0.0277626341072034,0.0298811964843226,0.0321538429777658,0.0341159321403095,0.036047511054501,0.0380420683428974,0.0403136080523234,0.0421202871222144,0.0565480230117877,0.070796089677838,0.0842416676283295,0.0978210575022083,0.1102089879584132,0.1254429482636428,0.1368499257057949,0.1471706148522757,0.1573552517662651,0.166371586458501,0.17869119375465,0.1906474820143885,0.201106850270176,0.2108971759832553,0.2192502756339581,0.2281438056536318,0.2362139549450795,0.2441233531853456,0.2518002798539299,0.2587185260062488,0.2654303806276529,0.2707156419211927,0.2763497972636521,0.2810342964839201,0.2845105358510755,0.2890692453807632,0.2937326358471204,0.297026050676707,0.3016361637457155,0.3052971405982342,0.3036713286713287,0.3000906742869704,0.2973812132962432,0.2953470940959409,0.2937354437703045,0.2921922059655399,0.2892207997471155,0.2896673825019262,0.2888407478165939,0.2897590683262995,0.2900170026718484,0.2908936941195005,0.2918055324112648,0.2921583005577406,0.2928561182039879,0.2936834744775076,0.2941710653272036,0.29753125,0.3015402843601896,0.3072248747188573,0.3132338940019041,0.3138747884940778,0.3168061410683949,0.3192395437262357,0.3239264954059628,0.3256582831503129,0.3294656488549618,0.338989981598855,0.3383977900552486,0.3476744186046511,0.0,2.398212611481822,53.61841520488208,139.4585555626129,216.08932336665168,fqhc3_100Compliance_baseline,59 -100000,95799,47405,451.8314387415317,5093,51.98384116744433,4004,41.06514681781647,1559,15.84567688598002,77.3504688262772,79.68349757448665,63.33176974345843,65.06028954042083,77.15622715278899,79.49310040273487,63.2589749406213,64.9914143746298,0.1942416734882073,190.3971717517834,0.0727948028371301,68.87516579102737,210.34354,147.9822084564597,219567.3441267654,154471.34904163898,501.16042,336.0218398331621,522427.76020626526,350048.3160110252,451.55286,221.3848056318791,466341.0787168968,227224.6373781165,2837.84036,1305.6556559746175,2914625.935552563,1315378.2785014943,930.1043,418.3400713213381,952384.158498523,418249.731132737,1518.49782,637.806205499169,1545891.7525235128,633275.4026934681,0.38035,100000,0,956107,9980.333823943882,0,0.0,0,0.0,43608,454.430630799904,0,0.0,40848,421.3613920813369,1241509,0,44654,0,0,0,0,0,101,1.0542907546007787,0,0.0,1,0.0104385223227799,0,0.0,0.05093,0.133902984093598,0.3061064205772629,0.01559,0.346211552888222,0.653788447111778,23.88149070090557,4.234512196291674,0.3184315684315684,0.2597402597402597,0.2145354645354645,0.2072927072927073,11.290016130388752,5.869048800932485,16.584455439148385,11466.096949006598,45.56016151084771,12.731182380667248,14.357357627718784,9.456966977948095,9.01465452451359,0.5746753246753247,0.8028846153846154,0.6956862745098039,0.5669383003492433,0.1108433734939759,0.7413494809688581,0.9200913242009132,0.8475073313782991,0.69,0.1525423728813559,0.5070224719101124,0.717607973421927,0.6402569593147751,0.5295902883156297,0.0995405819295559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004441154700222,0.0066578706992794,0.0087885961614663,0.0109750391602416,0.0132305310545721,0.0154913058997501,0.0176149824360754,0.0198253650157457,0.02205024261409,0.0239433153544841,0.0261028505709356,0.0280234471410942,0.0302786875115862,0.0321363008188775,0.0340559194891612,0.0361168907797894,0.038044662026905,0.0399787999085486,0.0421815304858371,0.056852558886733,0.0710521913683506,0.0847008278319186,0.0968429899669065,0.1093600210692652,0.1247437496037365,0.1360913495690157,0.1461027910142954,0.1552872606161532,0.1646753747736356,0.1762250102218683,0.1874621637983222,0.1985487410111017,0.2074739591872424,0.2162649740944041,0.2257599929096871,0.2350578047582913,0.2436911445383256,0.2518986910667862,0.2580730120923415,0.263822205768363,0.2695756895483298,0.2753962621244381,0.2785502976297414,0.282290489899542,0.2856473605049683,0.2902179764870854,0.2938458012934766,0.2979445401442837,0.3009226870124213,0.2981295313047462,0.2963957636105717,0.294206329078254,0.291456560373351,0.2885945897793746,0.2857995044204472,0.2831635880566802,0.2840510314519038,0.2842040649297503,0.2855946249398514,0.286493147615669,0.2880121276553856,0.2892958451526781,0.2896014250723669,0.2903643026514335,0.2913283702108895,0.2929873217115689,0.2976777576627754,0.3020087579064433,0.306977476767995,0.3127533099162388,0.3159163565850846,0.319617105917454,0.3242412888722368,0.3237723939478325,0.3267303658820787,0.3293620871663399,0.3306114319856602,0.336742934051144,0.3425226586102719,0.0,2.7270839301692487,49.79589321444251,143.4418294018282,213.9915042331036,fqhc3_100Compliance_baseline,60 -100000,95712,47648,454.22726512871947,5192,53.00275827482447,4071,41.90697091273821,1535,15.651120026746907,77.30949638025908,79.67032278776233,63.31695901961641,65.05969938140193,77.11635425350673,79.48119065131773,63.24319366150524,64.99051457421498,0.1931421267523489,189.1321364445986,0.0737653581111743,69.18480718694298,209.90596,147.74512135752352,219309.9715814109,154364.2608633437,498.79539,334.868150816955,520534.0709628887,349262.7160825759,461.50791,226.25178036721,477980.05474757607,233214.92607783023,2904.2331,1361.367434188494,2988025.86927449,1376038.1709592252,946.18379,434.2460561302466,965489.8654296222,430616.77337245794,1499.48448,641.2928533276094,1528990.0325977933,636811.7934502977,0.3818,100000,0,954118,9968.635071882314,0,0.0,0,0.0,43350,452.2839351387496,0,0.0,41796,432.4954028752925,1241777,0,44591,0,0,0,0,0,79,0.8253928452022734,0,0.0,0,0.0,0,0.0,0.05192,0.1359874279727606,0.2956471494607088,0.01535,0.3521594684385382,0.6478405315614618,23.401712947201887,4.201435736626525,0.3166298206828789,0.2647998034880864,0.2041267501842299,0.2144436256448047,11.318843642947613,5.985569744730305,16.42754159402266,11615.052420807571,46.710784900314906,13.150030657316242,14.630592668783946,9.363882430419537,9.566279143795184,0.5787275853598625,0.7959183673469388,0.6997672614429791,0.592057761732852,0.1191294387170675,0.7617866004962779,0.9290465631929048,0.8717201166180758,0.7467248908296943,0.1720430107526881,0.5013976240391335,0.7001594896331739,0.6374207188160677,0.5332225913621262,0.1048034934497816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204737646975,0.0043893439299326,0.0068277737196656,0.0089684732266189,0.0111726732069333,0.0134355247488472,0.0156754828517555,0.0179652331907683,0.0201749724050529,0.0221060064885222,0.0242007400649863,0.026202846171222,0.0283190572653703,0.0303080234390286,0.0324247393335602,0.034343455216093,0.0365552002152741,0.0385915785106824,0.0405259328552125,0.0427010302834581,0.0574695838337423,0.0720566069335119,0.0848053201309054,0.097253186387919,0.1105498491974774,0.1263908279392478,0.137066395016925,0.1482758987789169,0.1580347413627331,0.1667667495925195,0.1790562378797673,0.1904272134768204,0.201033844814452,0.2106507321557554,0.2194756719260963,0.229496203513828,0.2375037698124588,0.2456183825185852,0.253055568176655,0.2600279636930411,0.2661997916425512,0.2720604578795287,0.2784433973433097,0.28366710636767,0.2885568513119533,0.2920560171601864,0.2955517750369018,0.2989656620144781,0.3016345879853897,0.304726811680336,0.3027220051206037,0.2993338655068953,0.2970417036629881,0.2951915993817977,0.2938161179127541,0.2914937600490008,0.2889888637191693,0.2889100428367444,0.2889386276653909,0.290122685143847,0.2911672160623314,0.2915463428141936,0.2927355349402132,0.2932844823734417,0.2947062077590975,0.2958043048767807,0.2965010257579211,0.2999028426364121,0.3030175880275534,0.3085718791893383,0.3116096060784225,0.3151566290475688,0.3191369606003752,0.3215528984410474,0.3238291109656913,0.3260206475832942,0.3279284740112138,0.3363083164300203,0.3350585671479161,0.3287671232876712,0.0,2.489872354692422,52.311186559223984,148.850357764082,212.7300802929548,fqhc3_100Compliance_baseline,61 -100000,95750,47451,452.3759791122715,5147,52.81462140992167,4049,41.869451697127936,1583,16.2088772845953,77.40440741590693,79.76165461964996,63.3594678928421,65.09925943233972,77.21136917390463,79.57020702874523,63.286774559640655,65.02934935809546,0.1930382420023022,191.4475909047297,0.0726933332014425,69.91007424426243,209.21384,147.17364855109932,218500.0939947781,153706.16036668335,501.78906,336.24730768755404,523675.49869451695,350785.9401436595,453.62551,222.2047718697781,471476.10443864233,230190.7375305696,2871.31779,1331.455988472272,2968874.725848564,1360663.9670728687,960.8229,430.5300657177294,989583.5195822456,435752.8832561139,1541.13526,650.658890905759,1579384.731070496,653126.3569708056,0.38032,100000,0,950972,9931.822454308094,0,0.0,0,0.0,43817,457.20104438642295,0,0.0,41022,426.1723237597912,1250261,0,44757,0,0,0,0,0,76,0.783289817232376,0,0.0,0,0.0,0,0.0,0.05147,0.1353334034497265,0.307557800660579,0.01583,0.3407988055244494,0.6592011944755506,23.80876304252408,4.085381364498527,0.3114349222030131,0.2635218572487033,0.2136329958014324,0.211410224746851,11.270877814060617,6.120145830161728,16.73447141290755,11562.62981012843,45.94112580786238,12.88340065683836,14.182780302794216,9.609393955457792,9.265550892772008,0.575697703136577,0.7985004686035614,0.6986518636003172,0.584971098265896,0.1074766355140186,0.7487179487179487,0.9285714285714286,0.8668639053254438,0.7281553398058253,0.15625,0.5053838138242446,0.7093206951026856,0.6370530877573131,0.5402124430955993,0.0933734939759036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679639960715,0.0046719027109196,0.0068375027897822,0.0090285888386736,0.0111028641729281,0.0134161237785016,0.0156127388535031,0.0176627246104711,0.0201181134543076,0.0220619084164748,0.0243002531489889,0.0266644771278724,0.0290017477125526,0.0310337013843111,0.0330798518319799,0.0348670133038381,0.0368560037280588,0.0386821713467702,0.0405512138343864,0.0422759655043119,0.0571082551183404,0.0711482717845146,0.0843962406645967,0.0970994228282467,0.1095535224925165,0.1247488738976885,0.1358934917519758,0.1457951884181392,0.1555175729088772,0.1642272761390077,0.1766650514187261,0.1886894522163437,0.1997476917053648,0.2086636126083771,0.2177744043297472,0.2273547615620536,0.2361636377835045,0.2437968677976772,0.2516046358667301,0.258428895145231,0.2642895931784307,0.2704734335605565,0.2752706196215457,0.280369812943453,0.2853856399079791,0.2898855149371069,0.2940633113640902,0.2976839755460287,0.3019357336430507,0.3060564639083118,0.3037725225225225,0.3022146694441399,0.2996422307962118,0.2967497805850107,0.2942315652533854,0.2904494125177159,0.288702203448602,0.2886254531204075,0.288764693891418,0.2893144266775516,0.2895144002236928,0.2894690213218356,0.2901006816334188,0.2904659275223854,0.292039836641112,0.2941953874060637,0.2955212922173275,0.2996073787859902,0.3042707101620644,0.3099638251022334,0.3118018018018018,0.3164064553435315,0.3194228496797064,0.3229659679963939,0.325609305760709,0.3266821345707656,0.3350437669785692,0.3340637450199203,0.3393590797041906,0.338006230529595,0.0,1.6588055066694278,51.28141731256986,148.89166861098067,210.24039503968064,fqhc3_100Compliance_baseline,62 -100000,95735,47583,452.1961665012796,5186,52.74977803311224,4089,41.97002141327623,1601,16.232307933357706,77.33232137485312,79.69932708885334,63.31916690730778,65.07165568489428,77.13396513990304,79.50747701745337,63.243434841223824,65.00151555506665,0.1983562349500829,191.85007139996912,0.0757320660839582,70.14012982763518,210.93732,148.46054942210867,220334.59027523897,155074.47581564597,502.45447,336.9492089527947,524123.5180446023,351245.4488739328,460.28396,225.91066313064053,476589.7320729096,232621.80384835665,2905.72862,1355.001638983637,2983492.682926829,1363719.4779668096,937.96226,430.0421384385128,957339.2071865044,426843.9337196954,1552.6539,660.2938502201281,1575568.1621141694,650179.3804867439,0.38054,100000,0,958806,10015.208648874495,0,0.0,0,0.0,43714,455.8416462108947,0,0.0,41649,430.814226771818,1237692,0,44363,0,0,0,0,0,88,0.919204052854233,0,0.0,0,0.0,0,0.0,0.05186,0.1362800231250328,0.3087157732356344,0.01601,0.3509713228492137,0.6490286771507863,23.652132679024497,4.177557003313777,0.3105893861579848,0.2609439960870628,0.2196135974565908,0.2088530202983614,11.32308796120434,6.210100659159345,17.029752988486923,11503.761778901537,46.72057763397646,12.950993784724163,14.467667287313732,9.978142712934238,9.323773849004326,0.5739789679628271,0.7825679475164011,0.7070866141732284,0.5824053452115813,0.1065573770491803,0.7315875613747954,0.890625,0.8611111111111112,0.7535545023696683,0.1280788177339901,0.5068015347052668,0.7043618739903069,0.6461538461538462,0.529839883551674,0.0998463901689708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046658349308746,0.0070973113475753,0.0093401902593706,0.0116993570440302,0.0140381617954177,0.0162152239536591,0.0183973292223504,0.0203875057512397,0.0225839475839475,0.0247062924158858,0.0268877367691596,0.0288334978611385,0.0306816075143675,0.0332421975754449,0.0354614327204324,0.037638361100469,0.0397344122834318,0.0418909650198491,0.0438993907201999,0.0577206151019428,0.0718336681734471,0.0856321718517275,0.0980567414666975,0.1100332155849633,0.1253649248995134,0.1355036555214821,0.1463713196942924,0.1558591371778302,0.1645720290818624,0.176436373036903,0.1877232094543408,0.1981700683232516,0.2076082557668959,0.2160645310385051,0.2253549201568071,0.2343443135154436,0.242351617440225,0.2497787259151669,0.2562845723055075,0.2626591066882666,0.2682550264921576,0.2736253075903842,0.2783894193331975,0.2838774692519699,0.288420793298842,0.2916942856785522,0.2953407386695813,0.2984344675895976,0.301578725423014,0.2994098113816329,0.2978238171127109,0.2956510735225883,0.293259318001586,0.2912261451089132,0.2884015892420538,0.2863919547136396,0.2868904784508863,0.2869875829222656,0.2878604485582057,0.2876914732451793,0.2880593481177492,0.28830071918381,0.2896134618818068,0.2907895052689695,0.2920098739768741,0.2922810798548094,0.2970337388686818,0.3028218202137319,0.3063391442155309,0.3099529070820503,0.3126491646778043,0.312842131756119,0.3165554881746513,0.3196020085549563,0.3207238762405137,0.3196401799100449,0.3279143536875495,0.3330636461704422,0.3329554043839758,0.0,2.807780960456201,52.63664863712163,148.1292999287834,210.91204979617703,fqhc3_100Compliance_baseline,63 -100000,95719,47849,456.47154692380826,5230,53.30185229682717,4155,42.76058044902266,1611,16.43351894608176,77.41699606751023,79.77068769958741,63.36600846061516,65.10079874599867,77.21292456914264,79.56982805410951,63.28944207401761,65.02800245960077,0.2040714983675826,200.85964547790525,0.0765663865975554,72.79628639790303,211.5597,148.8209088717836,221021.6362477669,155476.87384091306,505.75659,339.1905249750441,527719.1884578819,353704.3928361611,467.37513,229.407910867913,483954.63805514056,236378.5561767988,2963.66044,1391.1171989520928,3055465.7487019296,1412755.8977753147,957.7249,435.3442492815781,988477.230225974,442765.7922482813,1566.54196,669.193270886168,1600156.4579655032,667984.0671938882,0.38291,100000,0,961635,10046.438011262131,0,0.0,0,0.0,43921,458.1848953708251,0,0.0,42357,438.2306543110564,1234532,0,44339,0,0,0,0,0,87,0.898463210020999,0,0.0,1,0.0104472466281511,0,0.0,0.0523,0.1365856206419263,0.3080305927342256,0.01611,0.3561217008797654,0.6438782991202346,23.36767946645943,4.175745576816765,0.317208182912154,0.257280385078219,0.2223826714801444,0.2031287605294825,11.67032968992074,6.339872811188196,17.215924873982285,11530.786410673589,47.73248245295101,13.14974485783456,14.924129844538772,10.451916467774003,9.20669128280367,0.5809867629362214,0.8353601496725912,0.6904400606980273,0.5562770562770563,0.1149289099526066,0.7624309392265194,0.9471458773784356,0.848404255319149,0.7203389830508474,0.1593406593406593,0.5013850415512465,0.7466442953020134,0.6273885350318471,0.5,0.1027190332326284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026215105568938,0.0047412090082971,0.0069376825705939,0.0090882320088546,0.0111029770619814,0.013080478022761,0.0153300444408203,0.0175137783221065,0.0198458928607926,0.0221285563751317,0.0240298400401692,0.0262836499481716,0.0283414543884537,0.0302253254242873,0.0322996616324172,0.0343897574736755,0.0365354950254164,0.0385608645598896,0.0406165230676491,0.0425152882101074,0.0568561523682232,0.0702319789890027,0.0842137289255851,0.0969774094484876,0.1092993576830181,0.1247474907721758,0.1359484889308483,0.145963724613616,0.1565818430442493,0.1655746319074326,0.1773377266658052,0.1891944522578272,0.2000760786870992,0.2097364368180179,0.2186198789290383,0.2284529011560374,0.237203133880908,0.2449995505213952,0.252128371101765,0.2591071346849114,0.2656703306864547,0.271153576601411,0.2775480303424156,0.281945125818147,0.2858546288098386,0.2902348365498227,0.2946158650843223,0.2973518765479139,0.3011836460433142,0.3041725936462778,0.3011891165602956,0.2984515278807347,0.2960552212787494,0.2927424126535148,0.2911822280223039,0.2884392180818571,0.2857300483914188,0.2850565705049713,0.2851344925961147,0.2852456690958739,0.2859030919007465,0.2863535553767345,0.2873266419557703,0.2881874404273712,0.2884197972570065,0.2884630304911164,0.2901166567804988,0.2950141519703897,0.2991559862457018,0.3024131842260153,0.306175611947002,0.3081242783667471,0.3122902945196967,0.3136514648142555,0.3169555946973209,0.3191390343222804,0.3240030097817908,0.3241529621557361,0.3286096256684492,0.3270159791898922,0.0,2.5137211548242666,55.01813911278475,151.07287549313796,212.01113078728108,fqhc3_100Compliance_baseline,64 -100000,95683,47456,452.1179310849367,5132,52.21408191632787,4123,42.37952405338461,1658,16.84729784810259,77.3508434030137,79.74209410946385,63.31502979323547,65.0830310223198,77.1435978053935,79.54152952954287,63.23525912462325,65.00940983653396,0.2072455976202007,200.5645799209788,0.0797706686122197,73.62118578583932,210.75912,148.24730323278405,220268.0936007441,154935.8854057503,498.63545,333.9735626990577,520438.7195217541,348347.6612345534,454.23487,222.06331279876727,470658.0479290992,228950.7145162245,2932.9221,1366.699168121991,3014962.4384686938,1378075.0792951628,976.08328,442.7574084052515,998327.2054596952,440938.87984830193,1616.0797,690.5843299146034,1643773.418475591,680456.5994134659,0.38044,100000,0,957996,10012.186072761097,0,0.0,0,0.0,43377,452.6195875965427,0,0.0,41220,426.6902166529059,1241745,0,44525,0,0,0,0,0,72,0.7524847674090486,0,0.0,0,0.0,0,0.0,0.05132,0.1348964357060246,0.3230709275136399,0.01658,0.3566772210840007,0.6433227789159992,23.66372445488908,4.225169905071172,0.3165170991996119,0.2534562211981567,0.218287654620422,0.2117390249818093,11.14800308707971,5.812908248380071,17.519537484529096,11528.423752926958,46.99085932845174,12.72569729984275,14.762921048880411,10.00901208450268,9.493228895225904,0.5782197429056513,0.8181818181818182,0.7003831417624521,0.5611111111111111,0.1260022909507445,0.7521222410865874,0.9241379310344828,0.8863636363636364,0.6966824644549763,0.1388888888888889,0.5086587436332768,0.7426229508196721,0.6316894018887723,0.5195936139332366,0.1226551226551226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0047256391274807,0.0071059497101787,0.0095028051061061,0.0116380801237054,0.0138037122308021,0.0159748645808893,0.0179953837040668,0.0202288788210388,0.0223369281346975,0.0246031094884522,0.0266639276910435,0.0290783789343756,0.0309814749943332,0.0330973414795244,0.0349515165298654,0.0370167005097177,0.0388503695092584,0.0409411471010422,0.0429140260173449,0.0572401474873873,0.071392670157068,0.0850286578068904,0.0974360053447241,0.1096880373890934,0.1255184526832571,0.1367380735016241,0.1478108991767575,0.1576781228285851,0.1664931580359538,0.1778575587036677,0.1896800043315826,0.2004549857952999,0.2095179707257261,0.2179180755801786,0.2273836461244953,0.2361514406968952,0.2440647806108658,0.2508009725283465,0.2578629332782957,0.2646214068978296,0.2697100295123436,0.2761129477563305,0.280468346989455,0.2845231004849826,0.2881944872284584,0.2922772970539689,0.2958254944831444,0.2989346848011584,0.302471821237888,0.3002812655604451,0.2978395910065416,0.294890182513569,0.2920776374228528,0.2895216097365966,0.2869615654669231,0.2840215213240979,0.2848475928833072,0.2849019340779079,0.2847032044670484,0.2848238280083607,0.2853240040095127,0.2857559046925398,0.2871614866816253,0.2897892875913804,0.2916407706650093,0.2921797942792729,0.2972981376115412,0.3031407253166753,0.3064743138634764,0.3111340021497671,0.3148245154531168,0.3180240485930333,0.3230051891404076,0.3260849363442059,0.3316889828517735,0.3304164152082076,0.3382701421800947,0.3420911528150134,0.3334600760456274,0.0,2.8079903555881875,50.518192110623865,154.70186792803037,214.966110899447,fqhc3_100Compliance_baseline,65 -100000,95709,47771,455.0460249297349,5200,52.84769457417798,4081,41.90828448735228,1564,15.839680698784855,77.26691653433518,79.62618408401468,63.2951211478972,65.03876068694571,77.06760707803697,79.4339095784995,63.21898807023428,64.96821973699865,0.1993094562982094,192.27450551518643,0.0761330776629236,70.54094994705906,209.82544,147.65024808950955,219232.71583654615,154269.97261439316,501.50197,336.813027112504,523269.1596401593,351196.5824661254,465.81402,228.8917886837866,482154.56226687145,235591.5673589336,2845.11806,1339.563502068001,2923408.362849889,1350354.0441003465,910.37461,420.1341347978141,932569.3090513954,420358.3463837819,1519.864,654.2231153786395,1541461.2418894777,644952.0506364541,0.38082,100000,0,953752,9965.123447115737,0,0.0,0,0.0,43594,454.7221264457888,0,0.0,42120,435.5180808492409,1238903,0,44480,0,0,0,0,0,91,0.950798775454764,0,0.0,0,0.0,0,0.0,0.052,0.136547450238958,0.3007692307692308,0.01564,0.3402688271036641,0.6597311728963359,23.63515538799344,4.162898826531908,0.3170791472678265,0.2661112472433227,0.2144082332761578,0.2024013722126929,11.6100701494715,6.3268329029848,16.82877092041446,11576.57767945132,46.78923878748973,13.22908220088478,14.63804832332155,9.751828624784036,9.170279638499354,0.5834354324920362,0.8047882136279927,0.705564142194745,0.5897142857142857,0.0944309927360774,0.7473598700243704,0.9186813186813186,0.8497267759562842,0.7603686635944701,0.1347150259067357,0.5126315789473684,0.722662440570523,0.6487068965517241,0.5334346504559271,0.0821484992101105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409512620021,0.0048058887345506,0.0068798960912448,0.0092136406578559,0.0114822122327766,0.0136947247309419,0.0159845048167592,0.0179969579730709,0.0198726270917882,0.0221912872584343,0.0243457402642666,0.0267237485113547,0.0287415420685683,0.0310333817425249,0.0331476323119777,0.0354547615848175,0.0374861497996251,0.0395688304682069,0.04130805371918,0.0432608152038009,0.0579113891006296,0.0722345503265784,0.0851322845718723,0.0975586656845206,0.1102751867640231,0.1259379994284686,0.1369959013782412,0.1474529688731704,0.1569873152366895,0.1653192471629035,0.1769545106580266,0.1883486308124099,0.199840998442656,0.2092587725062426,0.2191160427984264,0.2294168571999378,0.2380025940337224,0.2457243290745623,0.2535640044074381,0.260056170115206,0.2655602620188413,0.2722442004728575,0.2771594999052851,0.2819599803378532,0.2860059301025616,0.290001602900016,0.2940948038282307,0.2971517335336584,0.3009749014727235,0.3047945205479452,0.3024379707875482,0.2991405829689202,0.2972648583007385,0.2950485310497461,0.2922802320392682,0.2893175301675892,0.2858638079228646,0.2853218855883417,0.2857069523108776,0.2863754132046815,0.2872322482712093,0.288270299124177,0.2884538721386459,0.2895902299364767,0.2904491407115005,0.2906940391829929,0.2919957797484958,0.2958181131124827,0.2993565266581813,0.3036565341022868,0.3088006586771567,0.3125200128081972,0.317285273174113,0.3214204243023344,0.3265421087221857,0.3277895730125029,0.3310030395136778,0.3299879566439181,0.3336070060207991,0.3351330505206324,0.0,2.758563961190077,52.93186308060294,146.44839729647146,213.1814417274155,fqhc3_100Compliance_baseline,66 -100000,95702,47129,447.3678710998725,5201,53.16503312365468,4123,42.5069486531107,1620,16.520030929343168,77.288290147924,79.65719521629505,63.294707477804174,65.04411718836472,77.07854503018135,79.45166783150215,63.216033059076295,64.96971322095804,0.2097451177426563,205.5273847929016,0.0786744187278785,74.4039674066812,208.6293,146.76798342217702,217998.43263463667,153358.91624226977,500.03556,335.2448134211137,521870.284842532,349679.0318082315,450.38547,220.3514184640921,466899.3124490606,227452.2387380612,2946.44675,1365.2651404428454,3034914.129276295,1382756.9717903952,1000.30044,448.9084360581165,1027386.8153225638,451252.6442323048,1582.73508,670.1738837948853,1615451.4430210446,667428.9059411405,0.37965,100000,0,948315,9909.01966521076,0,0.0,0,0.0,43491,453.7940690894652,0,0.0,40920,423.9305343670979,1246720,0,44770,0,0,0,0,0,72,0.7523353743913398,0,0.0,0,0.0,0,0.0,0.05201,0.1369946002897405,0.3114785618150356,0.0162,0.3469237832874196,0.6530762167125803,23.71931280026332,4.196381036081373,0.3080281348532622,0.2636429784137764,0.2068881882124666,0.2214406985204947,11.377974916352107,6.063927265157384,17.39598439141475,11574.208786342731,47.166333415622304,13.24713205473825,14.269146414063655,9.64789914796462,10.002155798855776,0.5765219500363813,0.7865685372585096,0.6976377952755906,0.5978898007033998,0.1380065717415115,0.7519247219846023,0.9061784897025172,0.8769230769230769,0.7685185185185185,0.1675392670157068,0.5071090047393365,0.7061538461538461,0.635978835978836,0.5400313971742543,0.1301939058171745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787348464132,0.0046937885868959,0.0071437269148029,0.0093866189886019,0.0114412985111056,0.013552729383254,0.015782712424298,0.0181595467769101,0.0205153890973024,0.0229954459397226,0.0251193965605591,0.0272320420438915,0.0296627596134073,0.0317819956951152,0.0339254033089903,0.0360582885489871,0.0381859598260509,0.0403071814030718,0.0421355911048241,0.0441067650522673,0.0590305701484119,0.0718660677827684,0.0850728881332451,0.0976194986424196,0.1098079785493354,0.1256273426084747,0.1372015971455271,0.1472622079208976,0.1568912604125453,0.1656089939760976,0.1778058143547274,0.1885149115490028,0.198275017151818,0.2078849122499698,0.2173482086807123,0.2264381205968824,0.2352730728380569,0.2430074069063482,0.2504492822857663,0.2570841370441811,0.2632689743143735,0.2688479619230724,0.2745907473309608,0.2794960183528112,0.2845332456685052,0.2897304775315595,0.2943265972135057,0.2982440479985718,0.3026344832958957,0.3045681249917316,0.3015614044549916,0.2992458189138138,0.2976484711531671,0.2962383580295195,0.2937083774079647,0.2905798101547285,0.2873528619635304,0.2875227821289591,0.2882981451406103,0.2892452762796014,0.2891446566817253,0.2900760343635825,0.2917312445021572,0.2928698752228164,0.2943019057411348,0.2967084152779215,0.2955060636971551,0.2998904366880576,0.3029783961406698,0.3073606771348336,0.312326523183328,0.3176345796870856,0.3227562898986106,0.3252802181157225,0.3288559518295507,0.3308419946280509,0.3337839867808322,0.3339307048984468,0.337620578778135,0.3380703066566941,0.0,2.165673505707475,51.05118445361143,154.665854424616,218.2221546586124,fqhc3_100Compliance_baseline,67 -100000,95826,47426,451.27627157556407,5121,52.07354997599817,4085,42.01364974015403,1552,15.75772754784714,77.36488025655099,79.67925753043573,63.35773544642036,65.07094740191957,77.16454502898199,79.48202698895577,63.28186493157176,64.99869451444061,0.2003352275689991,197.23054147996777,0.0758705148485958,72.2528874789532,211.5608,148.8267020928871,220775.9898148728,155309.31280955806,501.76458,336.6049515150816,523028.0404065702,350674.3697066367,460.67745,226.70085748858497,476504.35163734265,233384.7113336722,2880.19804,1356.3464593864553,2964666.030096216,1374438.345946251,942.35048,432.300031059187,967566.5685722036,435299.4253781098,1517.18662,650.7669255014149,1543121.8041032704,645848.7812397671,0.38032,100000,0,961640,10035.2722643124,0,0.0,0,0.0,43602,454.38607476050345,0,0.0,41807,432.1374157326822,1238932,0,44486,0,0,0,0,0,89,0.9183311418612904,0,0.0,0,0.0,0,0.0,0.05121,0.1346497686159024,0.3030658074594806,0.01552,0.3642830400599026,0.6357169599400974,23.51678901032569,4.136175730944972,0.3194614443084455,0.2619339045287637,0.2090575275397797,0.209547123623011,11.373064666457346,6.204404197543577,16.77374155481702,11509.453463472615,46.94037019670941,13.24229263322116,14.762918126586715,9.571846752749796,9.363312684151742,0.5818849449204406,0.814018691588785,0.6942528735632184,0.5936768149882904,0.1086448598130841,0.7647058823529411,0.9316239316239316,0.8583333333333333,0.771689497716895,0.1242937853107344,0.5036700454386578,0.7225913621262459,0.6317460317460317,0.5322834645669291,0.1045655375552282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0044304310799302,0.0066969721568309,0.0088672652663226,0.0111347250892303,0.013358856351566,0.0156883932394136,0.0178246932233497,0.0200053156689564,0.0220072675162495,0.0240027876849915,0.026045996120809,0.0281095192090279,0.0302490736928777,0.0321396911785927,0.0343346753380819,0.0365321362818311,0.0387086078992084,0.0406499844252933,0.0427599409059697,0.0572099087353324,0.0716503088645699,0.0847693774290533,0.0973327732857292,0.1102089388769535,0.1256018753167765,0.1363467833345692,0.146804009737326,0.1574214332956412,0.1663578428747389,0.179319470292716,0.1903444100923183,0.200280294635291,0.2100119033318408,0.2182847096313389,0.2284709628908841,0.2365469228627123,0.2444077617571755,0.251123818150937,0.2576647842886211,0.2635820929990878,0.2699365020076571,0.2760759388991931,0.2795441772590847,0.2845285766290498,0.2879787338781136,0.2911272181954511,0.2951234073904704,0.2983830315250688,0.3016163424329375,0.2988084203173068,0.2961421724142666,0.2937923075840522,0.2911980828364781,0.2895061269959153,0.2865406687581299,0.283701639967074,0.2844755382568852,0.2840405698941283,0.2848313803943984,0.2855212029058963,0.2859915628527856,0.2870349020018866,0.2887164926557714,0.2896949948486954,0.2908051948051948,0.2917303879920702,0.2961525216792411,0.3007481994266135,0.305016245344322,0.3101847638117775,0.3130245405290555,0.3185203888397929,0.322302706824247,0.3262037124281541,0.3307737743650324,0.3335881363705855,0.3440357650883967,0.3473366282262493,0.3547892720306513,0.0,2.3743694447230594,52.89891024837111,153.15660391879408,207.8723960626793,fqhc3_100Compliance_baseline,68 -100000,95630,47269,451.0613824113772,5127,52.38941754679494,4046,41.65010979818049,1590,16.197845864268537,77.2563444549925,79.66676954088814,63.27473565930678,65.0558296382672,77.06139745045334,79.47645694810463,63.20099249003375,64.98670457513975,0.1949470045391592,190.31259278351345,0.0737431692730297,69.12506312744426,209.89166,147.67064333898244,219483.0701662658,154418.7423810336,499.16809,334.309370490756,521321.7818676147,348929.52053827874,449.56688,220.04211945788705,466344.1702394646,227215.8036451953,2904.32304,1332.6745715951593,2992833.2949911114,1349365.274072111,944.16341,423.7619054349462,973036.202028652,428874.9293736583,1552.50902,653.1656928790198,1583670.5427167208,648268.8895370084,0.37974,100000,0,954053,9976.50318937572,0,0.0,0,0.0,43374,452.870438147025,0,0.0,40758,422.33608700198687,1242687,0,44648,0,0,0,0,0,83,0.8679284743281398,0,0.0,2,0.0209139391404371,0,0.0,0.05127,0.1350134302417443,0.310122878876536,0.0159,0.3562768140272337,0.6437231859727662,23.88271477103555,4.164104503959636,0.3096885813148789,0.263964409293129,0.2093425605536332,0.2170044488383588,10.99285140643751,5.754262231174498,16.863776641182987,11507.132487864208,45.98903500469566,12.938187287113172,14.05880762291864,9.514573062301045,9.477467032362808,0.5687098368759268,0.800561797752809,0.6927374301675978,0.5619834710743802,0.1161731207289293,0.7457777777777778,0.9214285714285714,0.8459214501510574,0.6941747572815534,0.1726190476190476,0.500513522766176,0.7222222222222222,0.6377440347071583,0.5195007800312013,0.1028169014084507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0045305737713225,0.0066674108728523,0.0088689768675139,0.0109980669447553,0.0132330918981693,0.0153113269136608,0.0173280477338673,0.0195671296769838,0.0216977072960845,0.0237953538006895,0.0259485345500883,0.0280119830754501,0.0302702256863897,0.0324666604687677,0.0345919433780693,0.0365421297064189,0.0386537163039526,0.0406564132448125,0.0424641959340349,0.0569705584180767,0.0713036008004106,0.0851995338435856,0.0979535549613659,0.1104298363181612,0.125922006455368,0.1365054767767682,0.147196336333138,0.1580832050624251,0.1667328475300228,0.1784532114246282,0.1893446885970615,0.1994770957023803,0.2090329227127263,0.2183546746958718,0.2277611277611277,0.2361151497528351,0.2442102890629402,0.2515398777189354,0.2586042777682206,0.264602580301151,0.2694660603787737,0.2741101704963126,0.2787550094790141,0.2827380590203833,0.2875537010517999,0.2915324753443025,0.2954380422181739,0.2988033345866124,0.3014355330753688,0.2997573469937988,0.2970864687560297,0.2956698527439326,0.2924815297696653,0.2910123074172304,0.2874633239627018,0.2842185417856463,0.2851904229428402,0.2860719982163376,0.2864895846393581,0.2866459919180528,0.2876335030812214,0.2893980403264723,0.2904449502387646,0.2913676834097291,0.2921584940980708,0.2937224199288256,0.297925753914708,0.3021098517872711,0.3047468977742761,0.3090826931766832,0.3114425762926263,0.3133103664265581,0.3135586840322216,0.3139630955659598,0.3139602464256654,0.3114754098360656,0.3083778966131907,0.3100133511348464,0.3180778032036613,0.0,2.5186793467952207,48.634162163018935,148.72879015487987,218.85425270955955,fqhc3_100Compliance_baseline,69 -100000,95697,47630,454.4447579338955,5117,52.29004044013919,4065,41.94488855450014,1584,16.196954972465175,77.32722884548278,79.7019388733306,63.32110870231941,65.0750775945265,77.1255275128348,79.50317603755003,63.24576615089502,65.00312718876405,0.2017013326479855,198.7628357805704,0.0753425514243915,71.95040576245049,209.47036,147.3527278051538,218888.9306874824,153978.20936611787,500.00896,335.45010041912155,521966.7701181856,350009.3804835695,455.90351,223.3875874621021,472985.5481363053,230820.52413120237,2893.2037,1344.966963337905,2986191.4166588294,1368372.4139543627,953.36123,426.8432001151557,980354.232630072,430185.9426255854,1549.77842,659.3278654762274,1585246.914741319,659520.8199015729,0.38105,100000,0,952138,9949.496849431016,0,0.0,0,0.0,43467,453.65058465782624,0,0.0,41268,427.76680564699,1246011,0,44692,0,0,0,0,0,79,0.8255222211772574,0,0.0,0,0.0,0,0.0,0.05117,0.1342868389975069,0.3095563806918116,0.01584,0.3539473684210526,0.6460526315789473,23.604385686994284,4.205835277971585,0.3198031980319803,0.259040590405904,0.2083640836408364,0.2127921279212792,11.312870633092947,5.995649427863523,16.959693685671134,11568.212127403072,46.38658833619072,12.741080016212631,14.762106332809037,9.35805009158365,9.525351895585388,0.5781057810578106,0.8024691358024691,0.7007692307692308,0.5879574970484062,0.1109826589595375,0.7504288164665524,0.9290780141843972,0.8708791208791209,0.7566137566137566,0.1157894736842105,0.5087961365988272,0.7174603174603175,0.6346153846153846,0.5395136778115501,0.1096296296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024601615809828,0.0046315533439409,0.0067971999594197,0.0090394791634926,0.0112364120763465,0.0135419954588496,0.0156221320335284,0.0176483204477444,0.0196449389483157,0.0218430942847487,0.0239565172802789,0.0259128023417038,0.0281623500853716,0.0302730551262235,0.0323645970937912,0.0344884642033526,0.0366732968672302,0.0386927317463118,0.0404618265030164,0.0424644826400108,0.0569348554955557,0.0708828700602813,0.0842415532921443,0.0976443729023977,0.1096004556577504,0.1253385240352065,0.1365546664402606,0.1472107163012575,0.1576619408327012,0.1670599845533339,0.1786279768636701,0.1898880782802589,0.201002784303489,0.2104595463592817,0.2188817114370921,0.2284267895518089,0.2363522742489845,0.2446036691675196,0.2521303997549047,0.2594149447931461,0.2660400726910745,0.2719518901147758,0.2774141624551727,0.2813799384084455,0.285837525212024,0.2900147928994083,0.2932104946925696,0.2978720696413572,0.3014245014245014,0.3043633149054637,0.3023697576353618,0.2992051267946531,0.2976688499190084,0.2960712429998268,0.2946619534220532,0.2906015671721896,0.2863497490937297,0.286486132486329,0.2869209809264305,0.2875017773354187,0.287589988436719,0.2882723337268791,0.288733569789276,0.2901106731689937,0.2902196853415196,0.2915452653485952,0.2933466022177992,0.2990876884973508,0.3029223839949722,0.3089872064007605,0.3124374032595829,0.316995544239338,0.3165901804237128,0.3179530201342282,0.3210074521271578,0.3233242700082752,0.3261533761075466,0.3321890145395799,0.3324198410523431,0.3315569090216977,0.0,2.0667482816469085,50.83933618045187,152.31681551810215,211.8023413631721,fqhc3_100Compliance_baseline,70 -100000,95769,47094,446.7416387348724,5201,52.93988660213639,4139,42.53986154183504,1622,16.50847351439401,77.38146625236273,79.7042873870886,63.35451413110488,65.06761923236633,77.16810580577149,79.49546845916946,63.27378088374899,64.99168470438049,0.2133604465912384,208.8189279191397,0.0807332473558872,75.93452798583655,210.49732,147.99343283239,219796.92802472616,154531.66769245788,498.46854,334.66058469137886,519834.6751036348,348790.63876574667,458.45846,225.20817616373373,474201.6727751151,231755.4212784932,2973.18301,1389.2822616317603,3059730.9463396296,1405915.9040419206,978.49951,443.6520306710988,1006038.7494909626,447562.1241436149,1584.64172,678.4971627155078,1614979.6698305295,674079.9644121805,0.3772,100000,0,956806,9990.769455669371,0,0.0,0,0.0,43267,451.0958660944564,0,0.0,41490,428.76087251615866,1242320,0,44668,0,0,0,0,0,91,0.93976130062964,0,0.0,0,0.0,0,0.0,0.05201,0.1378844114528102,0.3118631032493751,0.01622,0.3588192152548588,0.6411807847451412,23.83255910564106,4.219396045772627,0.3181928001932834,0.24812756704518,0.2213094950471128,0.2123701377144237,11.148658665442566,5.833235963117121,17.40665423683886,11477.05290433828,47.41742059148934,12.57882332677912,14.946486147482188,10.234472480463198,9.657638636764837,0.5798502053636144,0.8081791626095424,0.7061503416856492,0.5698689956331878,0.1342434584755404,0.7413509060955519,0.927765237020316,0.8818443804034583,0.6666666666666666,0.1421052631578947,0.5128205128205128,0.7174657534246576,0.643298969072165,0.5366568914956011,0.1320754716981132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0046921237180266,0.0069891764133047,0.0094341538711511,0.0117237943201114,0.013925931958385,0.016216161121983,0.0183369218053245,0.0207601144258275,0.0229170076935668,0.025130106954063,0.0272910083309393,0.0293603814691495,0.0316443968623252,0.0338567172180582,0.0361554031725049,0.0380706982904921,0.0399469171513586,0.0419800540203615,0.0440744674205035,0.0586301541415764,0.0723905195416732,0.0862036415505957,0.0991222076215505,0.1114964946497285,0.1270769653830289,0.1372078962163079,0.1472278998467041,0.1571599478732722,0.1666595188060213,0.1776859059246579,0.1883192731992213,0.1971637992909498,0.2069968931868901,0.2157932962123379,0.2255884047692921,0.2345028521673122,0.242964363276283,0.2504144430566595,0.2574526366459983,0.2629811478067534,0.2687025045958572,0.2742697467350249,0.2777531482524353,0.2819326557623887,0.2863494722321439,0.290256833470878,0.293246370178249,0.2967082772195172,0.2989083142156475,0.2966763958196027,0.294646292530094,0.2932973079466937,0.2908610075435706,0.2882963227206516,0.2848546097661812,0.2820046782146921,0.2828952755260788,0.283788619825838,0.2843654984797568,0.2845199216198563,0.2850852188955945,0.2854699071659539,0.2858480262131377,0.2853209471592405,0.2874448767833982,0.288258948799275,0.2913457040386714,0.295472763391768,0.298151366724601,0.3039757290345952,0.308449074074074,0.3098906560636182,0.3106686701728024,0.3127340823970037,0.3151151857075693,0.318557475582269,0.3220675944333996,0.3335132218024824,0.3455438066465257,0.0,2.645491206820863,52.377748815793325,157.20362795207586,210.0173444341608,fqhc3_100Compliance_baseline,71 -100000,95760,47225,449.9269005847953,5169,52.7360066833751,4133,42.606516290726816,1676,17.094820384294067,77.31912755708531,79.66738230192732,63.32066847763053,65.05760641697408,77.10718611986188,79.46022783304556,63.23972003392493,64.98109308024263,0.2119414372234302,207.15446888175396,0.0809484437056013,76.51333673145189,210.59742,148.11500956188743,219921.888053467,154672.92143054248,500.74954,335.93541439515514,522376.8379281537,350265.50362263544,451.66428,220.98425131450475,468711.90476190473,228426.0277156327,2944.98444,1375.4139420661245,3037066.2802840434,1398145.852575559,981.96253,445.4969876557908,1012063.1996658312,451936.7085124544,1627.2704,697.9078296939216,1661880.4511278195,697004.5745683052,0.37947,100000,0,957261,9996.449456975772,0,0.0,0,0.0,43518,453.8742690058479,0,0.0,40981,424.9582289055973,1241064,0,44587,0,0,0,0,0,97,1.0129490392648286,0,0.0,1,0.0104427736006683,0,0.0,0.05169,0.1362163016839276,0.3242406655059006,0.01676,0.3678737233054782,0.6321262766945218,23.632216861748844,4.210959128566938,0.3121219453181708,0.2596177111057343,0.2141301717880474,0.2141301717880474,11.626727007195178,6.323638339699343,17.972669525671257,11492.286790345144,47.5248242373783,13.158138842718891,14.765035930990472,9.93271805880964,9.668931404859302,0.5739172513912413,0.8117427772600186,0.689922480620155,0.5728813559322034,0.1175141242937853,0.7260726072607261,0.8967889908256881,0.8469945355191257,0.714975845410628,0.1527093596059113,0.5107839780896953,0.7535321821036107,0.6277056277056277,0.5294985250737463,0.1070381231671554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0043575634126815,0.0065236800454527,0.0091104836580064,0.0111460271938656,0.0131577607365087,0.0153250063726739,0.0175529959563778,0.0197848714750209,0.0220716201551974,0.0241969384721068,0.0263166000965181,0.0284873915010901,0.030554639854953,0.032511685015322,0.0344150475403059,0.0365021688044142,0.0383586083853702,0.0404825486549112,0.0424200133311114,0.0566683715541267,0.0706537089535844,0.0839626599538493,0.0965340287709262,0.1088679921566973,0.1241884661746357,0.1351294017819261,0.1456876828943868,0.1555021624219125,0.1637987413292163,0.1757490253516272,0.1874492656370071,0.1970107365466827,0.2062815086994083,0.2155896171917122,0.2259522200932561,0.2346026323721491,0.2431666010240252,0.2502639196322152,0.2574053286293555,0.2632742850526803,0.2688845446989827,0.2742951907131011,0.279163266285824,0.2840950550920633,0.2879977288997506,0.292432026061897,0.2959612689514588,0.300103734439834,0.3037053665751109,0.3009512517179121,0.2990158970476911,0.2972675746552745,0.295236855051075,0.2931769881254923,0.2898353121409421,0.2867664528391542,0.286837741548868,0.2871091082889526,0.2874216195937617,0.288857651579046,0.2897823768711244,0.2910885693926311,0.2913105731800081,0.2918689028785621,0.2929032593981047,0.295369211514393,0.2986866438892894,0.3025227750525578,0.3057485786481364,0.3092480318523211,0.3105162928480744,0.3109813524204181,0.313962321482832,0.3169542385596399,0.3195550351288056,0.323805202661827,0.326915363016446,0.3322448979591836,0.332579185520362,0.0,2.1080348438913035,52.92952711761429,156.3310154733639,212.8934921117521,fqhc3_100Compliance_baseline,72 -100000,95683,47373,452.2746987448136,5116,52.224533093652994,4060,41.867416364453454,1544,15.812631292915146,77.34181859432726,79.7252819620004,63.3271521787835,65.08602727637997,77.15083365288822,79.53537139844691,63.25571899367196,65.01692894069251,0.1909849414390407,189.91056355348235,0.0714331851115375,69.09833568745682,209.08536,147.14860392067135,218518.81734477388,153787.61527196196,497.72168,334.1140354464357,519618.019919944,348628.76942240074,455.66311,223.4613224893299,472639.4970893471,230742.4239539655,2864.49573,1336.4913629003788,2955825.737069281,1358881.2776568236,966.03184,432.6407181298949,993270.204738564,435873.8909460767,1503.53876,635.3554403607653,1541001.0555689095,637792.5588571934,0.37935,100000,0,950388,9932.67351567154,0,0.0,0,0.0,43228,451.1982274803256,0,0.0,41333,428.34150267027576,1250484,0,44827,0,0,0,0,0,84,0.8778988953105566,0,0.0,0,0.0,0,0.0,0.05116,0.1348622643996309,0.3017982799061767,0.01544,0.3474766355140187,0.6525233644859814,23.628485324175895,4.142260230145347,0.3051724137931034,0.2763546798029556,0.2118226600985221,0.2066502463054187,11.566119577532705,6.264455410925055,16.417322368145406,11519.08836988477,46.27553426375032,13.516110274008454,14.051412827632392,9.61287799706783,9.095133165041643,0.5894088669950739,0.803921568627451,0.7134786117836965,0.5802325581395349,0.1287246722288438,0.7561779242174629,0.9225941422594144,0.8609467455621301,0.6902654867256637,0.1744186046511628,0.5182712579058327,0.7158385093167702,0.658157602663707,0.5410094637223974,0.1169415292353823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020151694666383,0.004165948690919,0.0062295181761918,0.0084601165932034,0.0106357017936307,0.0129917732345035,0.0152381534823512,0.0172412033114543,0.0196240762885965,0.0218857803846901,0.0240751373964399,0.0259425484497119,0.0280752651667129,0.0299030366729522,0.0322853663067935,0.0344335377900061,0.0364037678366027,0.0383321566510237,0.0400407793856044,0.0420219752726059,0.0564817716494306,0.0697735291962014,0.0834890115656682,0.0961500015782994,0.1086568990432792,0.1247527684643616,0.1353103448275862,0.1468897688082769,0.1570439539306395,0.1657104250002681,0.1778629735725516,0.1884206883125311,0.1985905843202505,0.2080149542517955,0.2169451257740576,0.2258925407512402,0.2339043580157357,0.2422200978462576,0.2506410692808677,0.2576142713199597,0.264410346542095,0.269404311030065,0.2749926118564927,0.2807639346225229,0.2855114153588464,0.2899964286154111,0.2939102163311242,0.2976591605528501,0.3007092565748602,0.3040342781806196,0.3014606983375477,0.2991947452316825,0.2971204188481675,0.2943595515345656,0.2929574540655169,0.2898448734816265,0.2868785141196538,0.2878477737566934,0.2886968674370249,0.2888580526943125,0.2890620630511382,0.2903847667007632,0.2910141179905324,0.291322452069741,0.2926350558893223,0.2933516997608899,0.2953183999091502,0.2994739478957915,0.3035195237261425,0.3058763049667826,0.3108420623044484,0.3150250858199102,0.3189649810287989,0.3235404896421845,0.3264776727811747,0.3292998120300752,0.3334341906202723,0.3389796731765643,0.3404663923182441,0.3406928054815378,0.0,2.19261033040785,52.69952462586243,144.09536589397206,212.89886039450505,fqhc3_100Compliance_baseline,73 -100000,95667,47558,453.88692025463325,5126,52.29598503141104,4016,41.26814889146728,1584,16.149769512998212,77.38307130315455,79.76038193660082,63.34642469116329,65.0979213431342,77.18046067984399,79.5615659672085,63.27012213736411,65.0255696702352,0.2026106233105622,198.81596939232796,0.0763025537991808,72.35167289900346,209.81268,147.64089487191816,219315.16614924688,154327.51034258417,498.44279,333.8506266193246,520315.69924843474,348269.8346858346,457.53341,223.8980755167385,473515.9877491716,230426.61162956705,2862.49122,1329.329584168577,2946190.6195448795,1343844.0333589334,931.07047,425.8922873623689,956185.5498761327,428282.6688617918,1536.6684,652.7910025890733,1568110.9055369145,650208.0763884856,0.37993,100000,0,953694,9968.87118860213,0,0.0,0,0.0,43326,452.1412817376943,0,0.0,41359,427.5769073975352,1245992,0,44811,0,0,0,0,0,93,0.9721220483552322,0,0.0,1,0.0104529252511315,0,0.0,0.05126,0.1349195904508725,0.3090128755364807,0.01584,0.3505811773528309,0.6494188226471691,23.626122810481466,4.11418215677264,0.3296812749003984,0.250996015936255,0.2121513944223107,0.2071713147410358,11.5061176138179,6.3539394308905095,16.869467481130606,11506.255752325176,45.95551238750859,12.274086237274055,15.195938615078084,9.489183442002776,8.99630409315368,0.5804282868525896,0.7986111111111112,0.702416918429003,0.5915492957746479,0.110576923076923,0.756138865368332,0.9318734793187348,0.851063829787234,0.7363636363636363,0.160919540229885,0.5072310405643738,0.7068676716917923,0.6434599156118144,0.5411392405063291,0.0972644376899696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0043968958320669,0.0065516576910984,0.0088854137048621,0.010970464135021,0.0131722263505603,0.0153418010560867,0.0174442936030785,0.0197377163124916,0.0218969135486512,0.0238781180475101,0.0260104329253265,0.028076887476474,0.0301182481150344,0.0323109776856179,0.0341887408662939,0.0362673904260719,0.0382882882882882,0.040328618968386,0.0422398699349674,0.0571115173674588,0.0717022613065326,0.0851657574485942,0.0977456258411843,0.1093468290368496,0.1247925234435293,0.1353758083324499,0.1456330298647153,0.1558128367924025,0.1641539961640254,0.1766509586211348,0.1885103208157174,0.1991609242875464,0.2090455996152669,0.2180522251798403,0.2277164098075495,0.236970529442639,0.2455713593927722,0.2528243616091197,0.2591400190190305,0.2645963020387383,0.2697195955434884,0.2756252368321333,0.2799227567677785,0.2842573571419889,0.2880026636084495,0.291765766216859,0.2953356665606109,0.2987317502882385,0.30231913517509,0.3004641151543687,0.2971335128895729,0.2957415689252665,0.293197494877197,0.2909684116861931,0.2879214342531971,0.2847363844755355,0.2848438191020622,0.2848661651056861,0.2853070605212991,0.2861214605067064,0.2878073689999214,0.2878267208164115,0.2884534204270257,0.289663232207594,0.291520256304258,0.2923810060906835,0.2973603208655909,0.3024420788979336,0.3053366270634827,0.3073938737763342,0.3123266160690918,0.3157372371440977,0.3202394313505424,0.3281853281853282,0.3346415791296317,0.3341239252890602,0.3362369337979094,0.3343007915567282,0.3355263157894737,0.0,2.7364805606311786,50.838676151375886,149.83263192137372,205.936684327894,fqhc3_100Compliance_baseline,74 -100000,95702,47719,454.4419134396355,5128,52.485841466218055,4066,41.9949426344277,1554,15.882635681594952,77.3960056150407,79.78101226633297,63.35197710932333,65.11321653873125,77.19239852485828,79.57953584492452,63.27407593715198,65.03863388682429,0.2036070901824302,201.47642140844368,0.0779011721713516,74.58265190696522,210.68212,148.201641457574,220143.9050385572,154857.41307138198,504.23391,338.8288428788799,526386.2615201354,353552.8127718124,460.43008,225.70615564622167,478144.6051284194,233499.9875301788,2873.54776,1340.2191002534275,2969520.1876658797,1367329.3664222562,913.22783,414.8338036241415,944359.7312490856,423589.314637904,1518.99902,652.3114469812726,1554839.6480742304,653546.4919419491,0.38111,100000,0,957646,10006.541138116236,0,0.0,0,0.0,43907,458.27673402854697,0,0.0,41652,432.2793672023573,1239480,0,44414,0,0,0,0,0,82,0.8568263986123592,0,0.0,1,0.0104491024221019,0,0.0,0.05128,0.1345543281467293,0.3030421216848674,0.01554,0.3502698678578075,0.6497301321421924,23.407918968303047,4.134159507453644,0.3128381701918347,0.2656173143138219,0.2080668962124938,0.2134776192818495,11.039616376761312,5.753987093979306,16.480789155657767,11553.645672540426,46.31610414104838,13.215719517009362,14.319747714032012,9.3778091779317,9.402827732075298,0.572798819478603,0.8037037037037037,0.6831761006289309,0.5839243498817966,0.1129032258064516,0.7545909849749582,0.9157667386609072,0.8821752265861027,0.7677725118483413,0.1347150259067357,0.4968619246861924,0.7196110210696921,0.6131774707757705,0.5228346456692914,0.1066666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678130413201,0.0044614791831437,0.0067802115263595,0.0093472186944373,0.0117592008626126,0.0138985052743045,0.0159466541594869,0.0184585855904603,0.0206608190721544,0.0227844991709144,0.0250256305105597,0.0270647665201856,0.0292184752090339,0.0316742547537133,0.0334812216260833,0.0357656009344538,0.0378177373578339,0.0395897776578297,0.0413095931441883,0.0433146775891358,0.0579799456862335,0.0718337275257969,0.0842030186383612,0.0962569656187572,0.1084254798823616,0.1242848229110483,0.1355784738137679,0.1459324794787441,0.1559845724847487,0.1648163046393135,0.1775800596744832,0.1893432868116412,0.1998978283080802,0.2087369088484159,0.2175046186328846,0.2271750924511171,0.2355860930476392,0.2439046313565987,0.2517137062509206,0.2587515719675317,0.264740178025099,0.2712277916559662,0.2761027457927369,0.2806702788044063,0.28525893517228,0.2897799186522321,0.2930972126956413,0.2974422023930237,0.3010214609987618,0.3041495248485167,0.3018432870835847,0.2988414450439594,0.2961357130830106,0.2940439683842266,0.2924750277469478,0.2900613160062231,0.2866354506613694,0.2869566638876628,0.2881583646536623,0.2885158539834799,0.2893819334389857,0.2912869264613451,0.2913261380414665,0.2922937121833374,0.2927108692539023,0.2945026516621394,0.2936776742873271,0.2973614363778298,0.3012862969289225,0.3030159482078004,0.3054786437292905,0.3069197018554739,0.308484582051121,0.311880063602635,0.3154677950164551,0.3183654074602043,0.3220313212710962,0.3262797259169689,0.3332424325061358,0.3363879343260786,0.0,1.8593699788069225,52.34071680838772,146.74534053390155,212.94012088055456,fqhc3_100Compliance_baseline,75 -100000,95828,47346,449.7641607880786,5175,52.85511541511875,4059,41.81450098092415,1589,16.247860750511332,77.38566316619061,79.70732495277754,63.36611244363343,65.08437990218428,77.17777956258368,79.50257726034839,63.286639659904765,65.0088589528844,0.2078836036069304,204.7476924291516,0.0794727837286615,75.52094929988584,210.25774,148.01398996584498,219411.5916016196,154457.9767561099,501.60437,336.3165471550423,522922.42350878654,350438.57448245,453.19751,222.69051917203825,469942.125474809,229971.21944427,2903.68731,1357.4876126307454,2991449.190215803,1377933.62339895,944.60552,431.3785904513393,972212.1405017322,436641.1909372413,1557.4033,671.191300597708,1592888.717285136,670772.6898315937,0.37957,100000,0,955717,9973.25416370998,0,0.0,0,0.0,43658,455.03401928455145,0,0.0,41120,426.1176274157866,1246534,0,44692,0,0,0,0,0,79,0.8243937053888216,0,0.0,2,0.0208707267187043,0,0.0,0.05175,0.13633848828938,0.3070531400966184,0.01589,0.3598596750369276,0.6401403249630724,23.59183347254193,4.288213811039353,0.3104212860310421,0.2638580931263858,0.2005420054200542,0.2251786154225178,11.05590135234718,5.682647338140807,17.093218315947478,11501.996687321578,46.531878893520776,13.103804286261912,14.334976137810964,9.154015385119768,9.939083084328123,0.5659029317565903,0.8197945845004668,0.6746031746031746,0.5675675675675675,0.1170678336980306,0.7332242225859247,0.9292035398230089,0.8696883852691218,0.6682692307692307,0.1435406698564593,0.4938315121607332,0.7399030694668821,0.5986769570011026,0.533003300330033,0.1092198581560283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002228231695583,0.0044098415498312,0.0068201885700946,0.0089712067949525,0.0113002970015053,0.0136544140107931,0.0159414528738443,0.0185427084396366,0.0207266595124942,0.0227289008053869,0.0249748918813667,0.0268916533234799,0.0289828261338759,0.0308804002099867,0.0331315672788393,0.0352015204412584,0.0372696514118389,0.0393258426966292,0.0414217773254968,0.043280087413497,0.0571649124271095,0.0710231133505472,0.0848374316080749,0.0976076152852054,0.1095438744337933,0.1254198618416883,0.1362885112514302,0.1465167201683709,0.1555749927999232,0.1645226593545484,0.1766527925660633,0.1880887563736928,0.1985127286543994,0.207876267504939,0.217084742784343,0.2259976337641946,0.2336512109801475,0.2423922445265723,0.2499263622974963,0.2564392770175258,0.26309041133867,0.269000933706816,0.2736825947835122,0.2774762713080068,0.283022067194729,0.2879597224780499,0.2925937936539612,0.2967813090272936,0.3000232246077622,0.3032945354113237,0.3008139909735654,0.2981249656838522,0.2960095545876071,0.293183751748403,0.2895879972127915,0.2853911289089964,0.2833718098731855,0.2849624553234744,0.284777149495191,0.2861043689320388,0.2874369040942232,0.2884065120868278,0.2902988987939171,0.2911604805691657,0.2923039865108996,0.2929345696748073,0.2945521962350256,0.299519185443575,0.3004990160247399,0.3037592791076178,0.3076398362892223,0.3103685295828266,0.3161524956107349,0.3191312244589072,0.324037558685446,0.3246308328411104,0.3285127112193636,0.3323281061519904,0.3414434117003827,0.3406261788004526,0.0,2.1154603485262475,53.32016857733432,148.2275054152508,208.3387349127931,fqhc3_100Compliance_baseline,76 -100000,95748,47330,449.84751639720935,5200,52.92016543426495,4095,42.006099344111625,1620,16.37632117642144,77.37657405990127,79.72340861571867,63.3458979718325,65.08006748105763,77.16503487336497,79.51764592227514,63.26541197132054,65.00475753946415,0.2115391865362994,205.76269344353196,0.0804860005119607,75.30994159347415,210.31428,147.99571930782585,219653.96666248905,154567.9484770709,497.8624,333.30246147020216,519215.0123240173,347347.256830641,456.63455,224.1794872312043,472239.2948155576,230421.31423049013,2914.2508,1370.0417842166737,2994833.8764256174,1382049.258696446,980.82588,444.92036819083137,1008114.7595772236,448410.6280975381,1583.15722,680.1286394453602,1604839.9339933994,671754.9540074838,0.38007,100000,0,955974,9984.27121193132,0,0.0,0,0.0,43414,452.63608639344943,0,0.0,41425,427.9462756402222,1244540,0,44698,0,0,0,0,0,82,0.8459706730166687,0,0.0,1,0.0104440823829218,0,0.0,0.052,0.136816902149604,0.3115384615384615,0.0162,0.345246868091378,0.6547531319086219,23.678346840530757,4.143207604098174,0.2984126984126984,0.2761904761904762,0.2112332112332112,0.2141636141636141,11.42776619816489,6.275593873073916,17.38068811421465,11566.129314834914,46.85478485074332,13.718522446446595,13.8990794573045,9.555267788836137,9.681915158156093,0.578021978021978,0.8072502210433244,0.7103109656301145,0.5549132947976878,0.1208665906499429,0.7556109725685786,0.9366515837104072,0.8642659279778393,0.7285714285714285,0.1578947368421052,0.504149377593361,0.7242380261248186,0.645760743321719,0.499236641221374,0.1106259097525473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002714473817482,0.0050988859491733,0.0073662209054566,0.0096407818277865,0.0116752095028882,0.0137676805735175,0.0158150727534133,0.0183362600563564,0.0205992700804547,0.0224590281403228,0.0245577352766332,0.026894137693879,0.0293204482368664,0.0315354748344439,0.0336015681419581,0.0357017344386331,0.0377231495671623,0.0394530723185293,0.0415332473905268,0.0435339575283543,0.0580026303154291,0.072162145202786,0.0858922075335213,0.0984845300151336,0.1105408481578281,0.1258997748580971,0.1370942091982782,0.1477651164522753,0.1569167681168706,0.166162688455682,0.1783306408185245,0.1887172163074526,0.1997389175958662,0.2096435370577036,0.2182993152343836,0.227858203826457,0.2368265311819552,0.2448540914052916,0.2522528657360118,0.2581794029064507,0.2641740800296149,0.269488453668518,0.2752296832322372,0.2803740555814983,0.285153973188265,0.2894396472080905,0.2924491759443215,0.296318870392239,0.3000943408418304,0.3031900175246729,0.3012452814980991,0.2988687223701914,0.2969342737516509,0.2939649578195976,0.2917845766353063,0.2885990102034582,0.2852630914029436,0.2851414824149387,0.285901762279715,0.2858261132558843,0.2867479340388139,0.2889427434290893,0.2892686289665545,0.2909822401031363,0.2922458549656674,0.2940733821163527,0.2958125566636446,0.2998409083819446,0.3051551429269484,0.3073581105098937,0.309504394310048,0.3124372854502245,0.31586835695997,0.3204557458688599,0.3239043453987159,0.3273389750822755,0.3311107743597515,0.3375619425173439,0.3338722716248989,0.3385767790262172,0.0,3.0379053999628587,51.39282840898266,151.4583863193688,212.5881300389348,fqhc3_100Compliance_baseline,77 -100000,95751,47396,451.1075602343578,5143,52.45898215162244,4078,42.00478323986172,1618,16.490689392277886,77.3313489084019,79.69738010650057,63.31030609897547,65.06310173826611,77.12430692291248,79.49570733202607,63.23152680009402,64.98913001953372,0.2070419854894254,201.6727744745026,0.0787792988814501,73.97171873239472,210.25554,148.02776676968804,219585.73800795813,154596.575252152,502.91895,336.192175961455,524638.8027279088,350513.4421170067,458.7827,224.26197416641637,475612.9544338963,231396.4180276109,2929.06121,1363.7454813626116,3018327.704149304,1383550.2828822793,976.84726,436.8330700928303,1006739.511858884,442774.1965325674,1579.38304,674.1371467126113,1612591.7640546835,672248.6395371152,0.37974,100000,0,955707,9981.169909452645,0,0.0,0,0.0,43703,455.7968062996731,0,0.0,41597,430.9197815166421,1240738,0,44514,0,0,0,0,0,77,0.8041691470585163,0,0.0,1,0.0104437551566041,0,0.0,0.05143,0.1354347711592142,0.3146023721563289,0.01618,0.3495995529893835,0.6504004470106165,23.73008706468934,4.166940859106679,0.3138793526238352,0.2506130456105934,0.2236390387444826,0.2118685630210887,11.41241814004479,6.124328597881412,17.263399975086735,11523.13893344042,46.44868721317665,12.475149075793396,14.420491992001317,10.119332667751792,9.433713477630132,0.5738106915154487,0.7827788649706457,0.69140625,0.6096491228070176,0.1145833333333333,0.7551724137931034,0.9298245614035088,0.8859649122807017,0.7668161434977578,0.1581632653061224,0.5017135023989033,0.6886035313001605,0.6204690831556503,0.5587808417997098,0.1017964071856287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023607128744972,0.0045833882596306,0.007064196904339,0.0094797805324121,0.0118313699159698,0.0140847939220498,0.0165798248207931,0.0187977985848045,0.0206302611257146,0.022748222955118,0.0247271906793567,0.0269070735090152,0.0290618696743918,0.0310319595172577,0.0330718414533443,0.0351071310390469,0.0370305170396296,0.0388933856339372,0.0409156115511757,0.0429651695692025,0.057551778854184,0.0716834625728607,0.0840834225047733,0.0973308934881373,0.1094603429005251,0.1252445976962863,0.1366429306703738,0.1468702062382819,0.1572393595416746,0.1667239010989011,0.178925584202811,0.189942923981675,0.2003375251782895,0.2098820850257836,0.2188491014799154,0.2279147634041421,0.2367583503634962,0.2442423287331997,0.2514753279767579,0.2585195370688667,0.263933420531756,0.2699139394649025,0.2753765747401605,0.2806320314094637,0.2847620090257757,0.2890456400833631,0.2929213286275687,0.2963962129695612,0.2998095336814418,0.3023639289765981,0.3002557889068389,0.2969830252216343,0.2938421289524023,0.2921024161557879,0.2902896081771721,0.2864580947582184,0.2836056266952627,0.283734929904631,0.2839956376525117,0.2848222862632084,0.2845727301581374,0.2861476039471352,0.2863342374295848,0.2868056483585015,0.2875098757451698,0.2885798064198043,0.2886968838526912,0.292477363160698,0.297699214365881,0.3008291347641528,0.3046003085019508,0.3096644861785186,0.3139265837033331,0.3133720491741458,0.3133154436939021,0.3162155910247513,0.3168993168993169,0.3246551389158733,0.3205399682371625,0.3192350128723795,0.0,2.237740885709252,50.42949259285586,152.10601945210306,213.99819921632,fqhc3_100Compliance_baseline,78 -100000,95496,47576,455.0661807824412,5103,52.52576024126665,3993,41.279215883387785,1545,15.85406718606015,77.22623088476638,79.71342443239473,63.24095407219974,65.076069098777,77.03221777603808,79.51966428778796,63.169196912339295,65.00642907780394,0.1940131087282992,193.76014460677027,0.0717571598604465,69.6400209730541,210.44188,148.03773802822133,220367.21956940604,155019.83122667056,500.49498,336.1218961963517,523583.0401273352,351464.2280361217,454.31642,222.13188268163267,471869.9736114602,229664.45776662367,2825.68101,1298.035053407857,2924307.1332830694,1325161.283674692,924.68429,408.3512922782474,956225.6010722962,415540.129720876,1507.88586,632.567861160341,1548834.3804976123,637674.2101460736,0.37938,100000,0,956554,10016.691798609369,0,0.0,0,0.0,43571,455.7154226355031,0,0.0,41150,427.0754796012399,1234085,0,44314,0,0,0,0,0,76,0.7958448521404038,0,0.0,0,0.0,0,0.0,0.05103,0.1345089356318203,0.3027630805408583,0.01545,0.3439609902475619,0.6560390097524381,23.87276854170793,4.025953090084473,0.304282494365139,0.2807412972702229,0.2023541197094916,0.2126220886551465,11.089272287941627,6.006129745919736,16.488016014611286,11540.45566554388,45.77568230273114,13.68815928212675,13.815511866615887,8.993067051287246,9.27894410270126,0.5755071374906086,0.776092774308653,0.6888888888888889,0.6113861386138614,0.1142520612485276,0.7618213660245184,0.9212253829321664,0.8757763975155279,0.7538461538461538,0.119047619047619,0.5008768853034024,0.6762048192771084,0.6215005599104143,0.566068515497553,0.1130690161527166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381162284035,0.0043210565287512,0.0063760229049485,0.0085917641077783,0.010740755823424,0.0128828415634714,0.0151736242206553,0.0173298183230131,0.0195709331232672,0.0215876723837626,0.023751847594022,0.0256940160394818,0.0279768524239054,0.0298070278577101,0.0320710853954641,0.0341457354067877,0.0363900414937759,0.0383260049271837,0.0404954889254682,0.0421748391947205,0.0572855064423952,0.0715514708968064,0.0842928799015741,0.0970522832421722,0.1088966617704557,0.1254557402068848,0.136950767039112,0.1468150250168023,0.1568644249303919,0.1653412144008597,0.1778027244662248,0.1888846716911565,0.1999367702689443,0.20863112202394,0.2170445143140824,0.227060117546413,0.2357368944960798,0.2443109453016692,0.2526237989652624,0.2590859030837004,0.2651750521678646,0.2700611857373936,0.2748135058527734,0.2806861590947312,0.284986843387584,0.2894544915139004,0.2933376861455011,0.2966769222913022,0.3008905852417303,0.3042173056323313,0.302291992872955,0.2991198710797074,0.2971007343302936,0.2950580555716018,0.293085762706825,0.2896911167318157,0.2872450030908716,0.28811414106547,0.2884125164667841,0.2895324930723161,0.289311475409836,0.2898954566115294,0.2916867192567638,0.2915932067218639,0.2932305630026809,0.2946032240479713,0.2941059734074221,0.2983345855246682,0.3018940452893486,0.305873047261222,0.3087266615181938,0.3140578791719476,0.3177680798004987,0.3238717428850342,0.3285740604274134,0.3304770727188513,0.3327283726557773,0.3350912778904665,0.3444596443228454,0.3418640183346065,0.0,2.0652620354085163,50.03367904544016,151.37631570344095,207.99521557885652,fqhc3_100Compliance_baseline,79 -100000,95705,48141,458.5758319836999,5213,53.17381537014785,4142,42.641450289953504,1635,16.665795935426573,77.36399481233721,79.74872447244837,63.33329461681414,65.0973539276948,77.16199226019081,79.55086864415054,63.25731941069336,65.02554563761923,0.2020025521463964,197.85582829783263,0.0759752061207876,71.8082900755661,210.16292,147.93725110429864,219594.5039444125,154576.30333242632,507.89628,340.3331807731801,530000.4910924195,354917.580871616,459.47928,224.89769717710345,476479.212162374,232203.08719155888,2953.1585,1356.844425711712,3045346.032077739,1377393.3918935382,978.96448,443.0744635050744,1008918.0711561568,449066.0985811096,1585.8682,668.2984454813306,1619150.869860509,666034.2938016537,0.38531,100000,0,955286,9981.56836110966,0,0.0,0,0.0,44212,461.3029622276788,0,0.0,41652,431.5761976908208,1239658,0,44471,0,0,0,0,0,84,0.8672483151350504,0,0.0,0,0.0,0,0.0,0.05213,0.1352936596506709,0.3136389794743909,0.01635,0.3523582308680492,0.6476417691319508,23.598058634184436,4.261880144993832,0.3242394978271366,0.251569290197972,0.2168034765813616,0.2073877353935297,11.482364208260844,6.19938835618205,17.3314970938482,11653.293860791524,46.87686189806662,12.738447804040186,15.047912713782486,9.707418822745588,9.383082557498367,0.5729116368903912,0.8157389635316699,0.6939687267311988,0.544543429844098,0.1187427240977881,0.7597623089983022,0.9157175398633256,0.8622589531680441,0.7463414634146341,0.1578947368421052,0.4986504723346828,0.7429519071310116,0.6316326530612245,0.4848484848484848,0.1090116279069767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021377696274607,0.0045230054661433,0.0069946398115812,0.0092180417505132,0.0114267689615173,0.0137029565784379,0.0160451262801419,0.0183320397075043,0.0204657727593507,0.0227423995740279,0.0250528129294255,0.0271855229644236,0.0293358294160606,0.0313855601693954,0.0334172721268163,0.0353812113567278,0.0373742710048996,0.039359946869779,0.041486055238511,0.0436037425243284,0.0580248976522683,0.0714883818296001,0.0849331738738171,0.0975876501146234,0.1100406855408225,0.1257757900635434,0.136300977668441,0.1471623849795223,0.1571160169093471,0.1657396392630936,0.1783777385615288,0.1898647917793401,0.2003827584707059,0.2104779713282813,0.2188599964801126,0.2292704527842355,0.2379428036048898,0.2460924322500843,0.2539538472011073,0.2616360264658073,0.2673311978907686,0.2731715301159745,0.2785837691998201,0.2839359739295042,0.2883452713366517,0.2920425872361376,0.2970199254981374,0.301238173852308,0.3044528555373267,0.3074908880380005,0.3053821472203203,0.3031296286137473,0.3009279407016411,0.2987108390349298,0.2963922102521605,0.2932860037477719,0.2893113433211632,0.289157608252799,0.2894794864401893,0.2901513941394671,0.2900387712496272,0.2906967599874174,0.2924954697881735,0.2936537990332568,0.2944552040743132,0.2959324236517219,0.296444709693921,0.3004596479159501,0.3039479665699199,0.3074554998618621,0.3134490238611713,0.3161381921438713,0.3169155477475216,0.3187656760659725,0.3198719759013461,0.3229857819905213,0.3230911046243662,0.3178026449643947,0.3187086092715231,0.3176379776148205,0.0,2.424661885393283,50.909694171742906,149.1147363699361,221.2997766689664,fqhc3_100Compliance_baseline,80 -100000,95671,47080,448.652151644699,5149,52.65963562626083,4074,42.00855013535972,1537,15.710089786873764,77.31725194233033,79.72486210483078,63.30264576078415,65.08466330545258,77.11962269238292,79.53061579944591,63.2272546404032,65.01316550862403,0.1976292499474112,194.24630538486556,0.0753911203809494,71.4977968285524,210.71336,148.20833124274864,220247.89121050268,154914.58356529006,499.57556,335.0345917833515,521646.0787490462,349659.82563509484,455.05352,223.5578339784644,472450.53359952336,231242.9518119149,2891.02143,1351.8214280133084,2982523.1365826637,1373676.1484810545,946.11049,425.8410473259398,975187.8834756614,431376.8616675264,1493.45754,639.7143683176507,1527398.9819276475,638825.1445843106,0.37754,100000,0,957788,10011.267782295576,0,0.0,0,0.0,43480,453.8993007285384,0,0.0,41287,428.2697996258009,1240580,0,44568,0,0,0,0,0,83,0.8675565218300216,0,0.0,0,0.0,0,0.0,0.05149,0.1363828998251841,0.2985045639930083,0.01537,0.3594358879198367,0.6405641120801633,23.617928451316804,4.1525300393207445,0.3134511536573392,0.2700049091801669,0.2093765341188021,0.2071674030436917,11.134229563025697,5.9924214499916575,16.475663421668784,11505.519857517163,46.669789630185456,13.375468788111302,14.45492654213595,9.612079115387504,9.2273151845507,0.5844378988708886,0.8063636363636364,0.696945967110415,0.5908558030480656,0.1184834123222748,0.7479541734860884,0.9,0.8554913294797688,0.7522522522522522,0.1521739130434782,0.5143758765778401,0.7365079365079366,0.6380236305048335,0.5340729001584786,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026239273810368,0.0050195203569436,0.0072967514740655,0.0097247202999725,0.0118125858472808,0.0139553835183864,0.0160467631036663,0.0181329682902909,0.0201857952569008,0.0222832378825289,0.0242946547655688,0.0265521280749707,0.028904649654647,0.0308063468497726,0.032853424770718,0.0348060010346611,0.03694565961064,0.0389124858504771,0.0407437079271274,0.0425114931145558,0.0569410633874186,0.070978281357991,0.0841477624631276,0.0974821922708668,0.109117187829683,0.1249536992941126,0.1355410497266889,0.1463580884623987,0.1561845311898755,0.1653397995751164,0.1769851444084156,0.1887090663058186,0.1987941317313133,0.2078439528443359,0.2163966206615484,0.2260595850328072,0.2343600044637875,0.2421600827859264,0.2497504650424209,0.255872790548585,0.2622804784932552,0.2678335496392952,0.2740582060052312,0.2791957245907925,0.2833626920974306,0.2884259829902625,0.2915769981482408,0.2955787760913228,0.2994929766924489,0.3032981217565396,0.3012925590519442,0.2979246163559996,0.2957730655806769,0.2933419801124081,0.291328999317244,0.289308946200352,0.2860799494390899,0.2869872886908662,0.2869106382978723,0.2862221590202108,0.2871677120669056,0.2886273274810061,0.2897293908682478,0.2901658345221112,0.2914735755276491,0.2931343749187615,0.2932569613792321,0.2976863271614575,0.303586380128384,0.307607410327158,0.3113327289211242,0.3152007597741782,0.3189903545033195,0.3217833042687087,0.3223875011694265,0.3288330594036158,0.330030487804878,0.3344064386317907,0.3345844504021448,0.3349496456546065,0.0,2.2782839370948693,52.99393833100546,147.2437086649807,212.37431266261947,fqhc3_100Compliance_baseline,81 -100000,95870,47122,449.3793678940231,5136,52.414728277876286,4023,41.52498174611453,1568,16.042557630124126,77.4717338221379,79.7592415259262,63.40399372213196,65.09101691519581,77.2727335562741,79.56044870799603,63.32859155454539,65.01788608185477,0.1990002658638019,198.792817930169,0.0754021675865672,73.13083334103965,210.25532,147.80694753820765,219312.9446124961,154174.34811537253,497.7935,334.32396431796656,518808.2403254407,348297.05918102607,450.20412,220.6894978892886,467008.3759257328,228177.8052794356,2862.48441,1326.9125484822343,2953870.4704287057,1352208.1898265474,959.47451,431.032103475119,990115.667049129,438908.4004121401,1533.20334,653.5278560853179,1569637.884635444,656219.8932189693,0.37803,100000,0,955706,9968.770209658913,0,0.0,0,0.0,43333,451.5489725670178,0,0.0,40729,422.26974027328674,1249803,0,44766,0,0,0,0,0,79,0.8240325440700949,0,0.0,1,0.0104307916970898,0,0.0,0.05136,0.1358622331560987,0.3052959501557632,0.01568,0.3593574897273067,0.6406425102726934,23.66755161412971,4.195266990906718,0.3114591101168282,0.2622421078796917,0.2087994034302759,0.2174993785732041,10.992636763398949,5.821042224951027,16.758499631559335,11439.18236960354,45.8929182064973,12.888079893233884,14.215649033213555,9.283284577471896,9.50590470257797,0.5781754909271688,0.7838862559241706,0.6983240223463687,0.6059523809523809,0.1314285714285714,0.7453151618398637,0.9279475982532752,0.8357771260997068,0.703125,0.1639344262295081,0.5093015093015093,0.6733668341708543,0.6469298245614035,0.5771604938271605,0.1228323699421965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021965786010729,0.0044169342829066,0.0065403881644324,0.0086175395858708,0.0109848792781074,0.0132876168771048,0.0152697416673457,0.0174726384398045,0.0194636766537998,0.02173157162726,0.0237302717151957,0.0256394478288515,0.0278083106476963,0.0299513329423506,0.0318101697710616,0.0336537965076054,0.0353873366917339,0.0372281989096863,0.0391472747474118,0.0411181300669171,0.0566840458811261,0.0710328245870792,0.0839953050659177,0.0967280980099607,0.1088672702551724,0.1236639284468267,0.1348588636990223,0.145025905082077,0.1549991992740084,0.1643963346015755,0.1761021855394978,0.187408808430154,0.1981475247847284,0.2075617957900253,0.2168369028006589,0.2257679426101758,0.23499994431017,0.2425681440567605,0.2503510281728417,0.2573708458610085,0.2628334622355101,0.2688795325456899,0.2740945365254758,0.2794309283280531,0.2829149993937189,0.2866227935297373,0.290440992858213,0.2949492385786802,0.2988790743323519,0.3022858195018018,0.3000255078067314,0.2966367559421878,0.2939823579732705,0.2917631158972295,0.2888803465558792,0.2858883743602242,0.2822413141993957,0.282992398290431,0.2842023135113131,0.2857446431733664,0.2857514735687324,0.2870834966679733,0.2875064908090144,0.2871320027468267,0.2891279512566641,0.2902934420729346,0.2910882725608897,0.29722187771301,0.3001928507472966,0.3037501460337241,0.30649478097957,0.3096022162981548,0.3140120654269544,0.3151853809559767,0.3157302316855829,0.3180905116388987,0.322015995171269,0.317794088474509,0.315676257058349,0.3204647676161919,0.0,1.6997642425528423,51.49261307785496,151.26336651214586,205.0689413183248,fqhc3_100Compliance_baseline,82 -100000,95741,47220,449.3372745218872,5138,52.391347489581264,4088,42.103174188696585,1534,15.688158678100292,77.34438518034166,79.69868988129087,63.33412346583962,65.07292144956469,77.14801656311417,79.5025601468231,63.26000485895101,65.00070773641403,0.1963686172274918,196.1297344677746,0.0741186068886108,72.21371315065994,210.25796,147.88416364933224,219610.97126622868,154462.50848573988,500.52676,335.7112309559895,522173.7291233641,350028.41578670155,451.85007,221.56485377227293,467641.3971025997,228143.25749552328,2862.88341,1330.2940781342884,2952776.020722574,1352323.948950806,933.25432,423.7393553572557,959653.1788888772,427625.26504572,1492.24548,637.859470114699,1528451.488912796,641172.5129983171,0.38011,100000,0,955718,9982.316875737668,0,0.0,0,0.0,43608,454.8417083590102,0,0.0,40962,423.5802843087079,1243221,0,44633,0,0,0,0,0,77,0.8042531412874317,0,0.0,0,0.0,0,0.0,0.05138,0.1351713977532819,0.2985597508758271,0.01534,0.341576794347341,0.658423205652659,23.930235698407188,4.177613597725823,0.3231409001956947,0.2654109589041096,0.2081702544031311,0.2032778864970645,11.31516499971025,5.997582163758996,16.37421035227878,11540.415167978865,46.45180131924651,13.129139870565073,14.78768626509334,9.339623964113144,9.19535121947495,0.5758317025440313,0.7972350230414746,0.6934140802422407,0.5769682726204466,0.098676293622142,0.7281067556296914,0.905829596412556,0.8480662983425414,0.6896551724137931,0.1170212765957446,0.5126341294565594,0.7214397496087637,0.635036496350365,0.5416666666666666,0.093312597200622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0046637535104883,0.0068791282379082,0.0090693966261438,0.0116721231469996,0.0139260737226797,0.0161533601027292,0.018266238073371,0.0203635397615228,0.0225930890523795,0.0245821848326177,0.0266447706045365,0.0286251889324161,0.0309165808444902,0.033011130940714,0.035177281511259,0.0374598902805092,0.0393661592068693,0.0411656499101027,0.0429868966522925,0.0568848522810314,0.0708029426230365,0.0836873184187617,0.096630702252508,0.1087199493884436,0.1242228801015013,0.13532917621108,0.1464558887671407,0.1566474790948022,0.1664397585840935,0.1785741197239954,0.1894712932116125,0.2002565858856018,0.2091790449333814,0.2188620318032859,0.2284351060532258,0.2370532376669605,0.245214907446976,0.2521952215642229,0.2594225132808206,0.2657320007403294,0.2711840612094481,0.2765280160937222,0.2806927071465406,0.284909075448549,0.2881861795937496,0.292590040714062,0.2955442896084376,0.2991282496340721,0.3018462066326194,0.2989761459496549,0.2960916886543535,0.2951239413634957,0.2931967390520164,0.2908060303893637,0.2874584984470387,0.285416007592534,0.2855504775009419,0.2871071112020181,0.2871489876956498,0.2884888324493912,0.289397040302267,0.289455015857119,0.2903685876008379,0.2919303797468354,0.2923975090814737,0.2940309506263817,0.2991546649968691,0.3035215204024595,0.3054434686288472,0.3085476653256792,0.3118171742228321,0.3168125,0.3232247410298754,0.3230941077911198,0.3208631406121731,0.3251636474349216,0.3283551554828151,0.3287292817679558,0.3364269141531322,0.0,2.272454326904942,52.0138261219782,144.34110514494077,217.7513260381588,fqhc3_100Compliance_baseline,83 -100000,95657,47636,455.356116123232,5126,52.20736590108408,4010,41.19928494516868,1531,15.534670750703034,77.28108161739658,79.66876582216818,63.29287913429015,65.05589086938592,77.09041924733583,79.48628030846817,63.22013488283133,64.98968210909996,0.1906623700607497,182.48551370001564,0.0727442514588219,66.20876028596001,211.12322,148.56628961160558,220708.59424819928,155311.46660631796,501.82421,336.57706053891053,523898.9828240484,351149.3153024981,461.19127,226.12337926598883,478075.2584755951,233153.16393427897,2843.9878,1328.4627928148898,2923565.781908276,1339233.2111762755,954.03391,431.2771941789461,979652.2261831335,433161.4144066246,1496.17008,634.5957878924481,1520269.567308195,624641.490078686,0.38135,100000,0,959651,10032.208829463603,0,0.0,0,0.0,43629,455.3665701412338,0,0.0,41727,432.1900122312011,1233394,0,44286,0,0,0,0,0,77,0.794505368138244,0,0.0,1,0.0104540180018189,0,0.0,0.05126,0.1344172020453651,0.2986734295747171,0.01531,0.3498791596951106,0.6501208403048894,23.752720460009076,4.174903669400617,0.3206982543640898,0.2630922693266833,0.2029925187032419,0.213216957605985,11.632306837476984,6.304173482965002,16.25413346076607,11562.249420171298,45.8371152379524,12.733815443235276,14.792692379085786,9.088178079943782,9.222429335687549,0.5925187032418953,0.8113744075829384,0.7216174183514774,0.6044226044226044,0.1169590643274853,0.7552565180824222,0.9305210918114144,0.8883248730964467,0.7281553398058253,0.1236559139784946,0.5239276852180078,0.7377300613496932,0.647982062780269,0.5625,0.1150971599402092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779871346806,0.0044100203773355,0.0064950221744116,0.0086456502524611,0.0105567194841649,0.0128508003747301,0.0148663254277382,0.0169069302078654,0.0190339892665474,0.0211977604683773,0.0233054105874029,0.0254222496021356,0.0275609580518104,0.0296223790634176,0.031881186075074,0.0338313601819779,0.0359136911236106,0.0381437734830714,0.0399654645127063,0.0418807784112821,0.0573288336763799,0.0714465224402605,0.0843331758778145,0.0981091574860317,0.1105260936543777,0.126346304407626,0.136903118962186,0.1474936622568756,0.1579594542577306,0.1673020134228187,0.1802679264820088,0.1916337036033595,0.2018470519047722,0.2117867349955652,0.2196882058062028,0.2292285853701814,0.2373347340657375,0.2451678305924758,0.2532807653414836,0.2594418583319957,0.2654990269669168,0.2708008761962773,0.276282720030349,0.2820149585219155,0.2868366006713042,0.2907530276496559,0.2948093419322522,0.2979636539612597,0.3016588906168999,0.3045408304818274,0.3017402909022282,0.2984945110948885,0.2964280672031625,0.294505876223007,0.2918309943000015,0.2885299166257969,0.2852101531839473,0.2852920894493153,0.2867025365103766,0.2871966765917236,0.2877581977190584,0.2883801005263783,0.290051828692532,0.2898271693382287,0.2908006158583526,0.2912724815469383,0.2933883122422863,0.2983992467043314,0.3025658928259731,0.3058939483540311,0.3099005424954792,0.3121378147718892,0.3157927629523154,0.3211229545113346,0.3228018159918465,0.3244239631336406,0.3237237237237237,0.3234772324068598,0.3309428950863213,0.3333333333333333,0.0,2.8669150140027075,50.98442932967743,142.6845385819343,213.0452767471572,fqhc3_100Compliance_baseline,84 -100000,95732,47467,451.2702126770568,5095,52.1978021978022,4072,42.023565787824346,1564,16.00300839844566,77.3612597271838,79.72720665525891,63.34108899169471,65.08919369749557,77.16771044096862,79.536213189463,63.26895897673951,65.02049463966148,0.1935492862151875,190.9934657959127,0.0721300149551993,68.69905783409536,210.83238,148.3568172812848,220231.87648853048,154970.9786500698,503.87137,338.0207357389728,525809.6874608282,352564.96859876823,457.88339,223.91326435716977,475201.2493210212,231470.76891762644,2941.29732,1355.7766133692703,3037119.938996365,1380912.2899023006,964.17971,430.07986679685047,996644.6433794342,438733.1370877556,1537.86232,641.7796954025778,1575586.4078886893,643245.918009964,0.37948,100000,0,958329,10010.53984038775,0,0.0,0,0.0,43734,456.2842100864914,0,0.0,41410,429.4906614298249,1241862,0,44505,0,0,0,0,0,112,1.16993272886809,0,0.0,0,0.0,0,0.0,0.05095,0.1342626752398018,0.3069676153091266,0.01564,0.360913515537252,0.6390864844627481,23.66188795846074,4.222100059287101,0.3143418467583497,0.2541748526522593,0.2067779960707269,0.224705304518664,11.444612415784157,6.010428096167368,16.499568032544367,11567.781390526969,46.35886832880243,12.716244241633683,14.413567590087206,9.2934662093977,9.93559028768384,0.5724459724950884,0.8106280193236715,0.69609375,0.5795724465558195,0.1234972677595628,0.7514792899408284,0.9292237442922374,0.8693181818181818,0.7676767676767676,0.123076923076923,0.4991346486673589,0.7236180904522613,0.6303879310344828,0.5217391304347826,0.1236111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0048361586503366,0.0070629782224838,0.0092450549115624,0.0114410657988406,0.0135435123520905,0.0156221320335284,0.0182059529279624,0.0203359677732677,0.0225634725634725,0.0248021162285198,0.0267963518343535,0.0287157123903362,0.0309155154474559,0.0326298952582426,0.0347162632977348,0.037135608139595,0.0395587518030779,0.0419166658001185,0.0437405574368325,0.0584304389591947,0.0726404923643747,0.0864443581970566,0.1003185885371213,0.1128185670018339,0.127957125642164,0.1382491411121007,0.1488669007341206,0.158045946321197,0.1665505525246787,0.1779954785229841,0.1889641149877787,0.1990239024337221,0.2084653887346724,0.2177889160016707,0.227365765686025,0.235522311525299,0.2436106274223445,0.2512211430579009,0.2583608883193556,0.2642133123750303,0.26977749226187,0.2759501152550387,0.2804657675231268,0.2850338157224929,0.2902095753180505,0.2937688053235452,0.2971730461507201,0.3006917059926304,0.3039312589781099,0.3008895936357773,0.2989026063100137,0.2966380182002022,0.2935342031283788,0.2926858193246168,0.2892039291770421,0.28650754839015,0.2858544402112595,0.2859815309263447,0.2869443011403056,0.2882289255581274,0.290050889581443,0.2896930695138003,0.289534080527641,0.2905058738911532,0.2923661539262382,0.2946250640551158,0.2984689867647521,0.3006412277935457,0.3046890483174125,0.3088388528972047,0.3099947396107312,0.3114171756200922,0.3158926417370326,0.3200891199405867,0.3253689388615601,0.3268240993036633,0.3277699577719686,0.3325948490722791,0.3444312326595323,0.0,1.9778451661306533,51.62437490906405,148.9972894467015,213.00718450255903,fqhc3_100Compliance_baseline,85 -100000,95645,47456,452.92487845679335,5111,52.19300538449475,4032,41.47629254012233,1523,15.49479847352188,77.2430810454354,79.6472586570052,63.27207635196621,65.04997588429455,77.04771967763483,79.45691215928423,63.19762357036373,64.97982761202131,0.1953613678005723,190.34649772096657,0.0744527816024884,70.1482722732436,209.24728,147.22160376822796,218774.928119609,153925.03922654397,495.70185,331.9543448215172,517587.85090699984,346384.43705527444,448.96664,219.84087442502303,465324.6798055309,226671.58339884743,2858.58159,1319.5942149871148,2945180.0198651263,1336262.8255682264,911.32381,411.5096299053436,937005.9909038632,414492.6733105128,1482.99026,634.7085356637638,1511616.7076167075,631137.7931734697,0.37971,100000,0,951124,9944.31491452768,0,0.0,0,0.0,43128,450.2064927596843,0,0.0,40776,422.2071200794605,1246957,0,44744,0,0,0,0,0,66,0.6900517538815412,0,0.0,1,0.0104553296042657,0,0.0,0.05111,0.1346027231308103,0.2979847387986695,0.01523,0.3470996808710344,0.6529003191289656,23.6923126862212,4.16264734299284,0.3127480158730158,0.2646329365079365,0.2175099206349206,0.2051091269841269,11.367031669223634,6.129179698616483,16.333832577355746,11537.082354809469,45.84818759985585,12.835610500229327,14.246388881472395,9.736351905414203,9.02983631273992,0.5729166666666666,0.7910028116213683,0.6946867565424266,0.5758266818700114,0.1027811366384522,0.750886524822695,0.921760391198044,0.8562874251497006,0.7149532710280374,0.1812865497076023,0.5037878787878788,0.709726443768997,0.6364617044228694,0.530920060331825,0.0823170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0049905666118921,0.0071672943971249,0.0093071459779107,0.011473558939306,0.0137990732725698,0.0158756054040275,0.0180321842836137,0.0200323134816753,0.0222929936305732,0.0242436673161727,0.0264849654945777,0.0283942491618503,0.0302571393250092,0.0325966907856029,0.0345259021817805,0.0366081047484876,0.0385369853345649,0.0406170040148946,0.042440290649792,0.0569801462904911,0.0713492678635021,0.0844601688153529,0.097026472290932,0.1087275529702395,0.1244137668194666,0.1360203116866561,0.146969147779365,0.156614130260328,0.1647799282538182,0.1763709346742344,0.1874525704126103,0.1979870158163043,0.206928274940585,0.2158563602896601,0.2252781999933431,0.2339300289589319,0.242377791052851,0.2500682035193016,0.2568938829329817,0.2633298953540925,0.2696797611381066,0.2761119795367344,0.2808725999304414,0.2856656369341538,0.2909638331215064,0.2941913496717285,0.2978997272704101,0.3016449587463027,0.3049306014540647,0.3025220273219626,0.2996917487752518,0.2980193134559808,0.2950855226060176,0.2932591457518187,0.289800423066311,0.2872586627777954,0.2868438789433019,0.2877866247479753,0.2881283269622378,0.2889447707696061,0.2898677018141488,0.2915723744866315,0.2926878354203935,0.2940568847890842,0.2959860110658732,0.2966680966680967,0.3014435324087178,0.3049311604383253,0.3095162190164979,0.3115646881149604,0.3154058942440685,0.3193044354838709,0.3208222306813856,0.3244720965309201,0.3290885508784341,0.3318972149561471,0.3366457108091665,0.338070511068598,0.3478095238095238,0.0,2.607798663784721,48.54490391192189,150.0729831973699,214.91698482189108,fqhc3_100Compliance_baseline,86 -100000,95816,47569,453.11847708107206,5232,53.52968189028972,4167,42.89471487016782,1585,16.155965600734742,77.44904619750217,79.7748976742287,63.38601454967061,65.10667873299421,77.2494957142529,79.57958688589292,63.31120305560804,65.03612234008646,0.1995504832492685,195.31078833577453,0.0748114940625725,70.55639290774707,211.64924,148.88301061038672,220891.1037822493,155384.07323660635,504.32884,337.18803695046245,525753.4962845454,351314.71355771745,457.8034,223.6527958702129,473780.75686732907,230334.4131535825,2896.30063,1336.0611852819231,2983003.517157886,1354703.299742135,953.50635,426.3228309878513,978953.0976037404,428922.9495475178,1537.1128,650.9893296787693,1568160.3490022544,648244.0329648162,0.38065,100000,0,962042,10040.504717374968,0,0.0,0,0.0,43922,457.7836686983385,0,0.0,41560,429.8655756867329,1240618,0,44534,0,0,0,0,0,75,0.772313601068715,0,0.0,0,0.0,0,0.0,0.05232,0.1374491002233022,0.3029434250764526,0.01585,0.360655737704918,0.639344262295082,23.731376990736905,4.135569263567126,0.3045356371490281,0.2795776337892968,0.2179025677945764,0.1979841612670986,11.00198674906644,5.791765696248741,16.84840283252994,11508.138625319749,47.32155415455412,14.125703835083549,14.150722608575444,10.014216879845408,9.030910831049722,0.5872330213582914,0.7957081545064377,0.6926713947990544,0.5958149779735683,0.1212121212121212,0.7575496117342536,0.9320594479830148,0.83125,0.7386934673366834,0.1538461538461538,0.5216090425531915,0.7031700288184438,0.6459430979978925,0.5557122708039492,0.1128048780487804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268515236523,0.0044499407012457,0.0065447018355605,0.008888572850743,0.0110436559992678,0.0133587203323388,0.0158233332993485,0.0178711764765919,0.0200306591722023,0.0221321791447954,0.0242967669211456,0.0263957307060755,0.0283717105263157,0.0301563931759448,0.0322500799290436,0.0342369519401628,0.0362661588300437,0.0384479790962443,0.0404991220688007,0.0423502956608645,0.0571237821034403,0.0704577295443615,0.0844434196597947,0.0970402513212225,0.1093583704780872,0.1246763403472802,0.1350173846675712,0.1450523741160206,0.1551781160981959,0.1651996059282104,0.1779899778480332,0.18925137733607,0.2005558329895564,0.2096182806259412,0.2185081508315494,0.2278795782586591,0.2369414410903381,0.2446948188214698,0.2520201905882885,0.2586153723142997,0.2648742210939303,0.2695156229953697,0.2752621459996933,0.2787494325376914,0.2829909892452282,0.2874184552256226,0.2910562212441241,0.2951964512040557,0.2985759983489836,0.3027380702123187,0.3003766604560138,0.2985352753380924,0.2961524439832861,0.2931418952941346,0.2907076377603781,0.2878382079922086,0.2839946570283649,0.2839685203591156,0.285160153801853,0.2852842750146077,0.2851912426123481,0.2867749329049699,0.2873419827012641,0.28897921108742,0.2904357371259485,0.2923902665600082,0.294192382619498,0.2980041722452284,0.3020459377505141,0.3064421151807796,0.310030257869304,0.3147277815915932,0.3207157604955264,0.3246831623415812,0.3271264152708898,0.3330200869258781,0.3376347350842568,0.3407482305358948,0.3416301969365427,0.3415187004155648,0.0,2.3113214354292086,50.22075563632145,157.0535107154251,220.08516719691443,fqhc3_100Compliance_baseline,87 -100000,95811,47488,452.1714625669286,5179,52.83318199371679,4122,42.479464779618205,1644,16.793478828109507,77.3497797498425,79.68280987800922,63.33168066437421,65.05995358146272,77.13638499295415,79.47193309745583,63.25036884906194,64.98213386372531,0.2133947568883485,210.87678055339157,0.0813118153122687,77.81971773741247,211.5575,148.79667796523896,220807.10983081275,155302.2909323971,499.51068,334.88133776674664,520815.2717328908,348988.0888068663,456.52132,224.06540193649155,473067.9149575727,231254.2043653422,2941.28754,1382.3877657412663,3032976.47451754,1406129.3079757602,972.59721,443.09299982951353,999901.7336214004,447312.8790073114,1600.583,696.0869526203954,1636820.886954525,698134.9001888861,0.37865,100000,0,961625,10036.686810491488,0,0.0,0,0.0,43467,453.1108119109496,0,0.0,41307,427.6857563327801,1237810,0,44462,0,0,0,0,0,77,0.8036655498846688,0,0.0,0,0.0,0,0.0,0.05179,0.1367753862405915,0.3174357984166827,0.01644,0.3427935447968837,0.6572064552031163,23.35720931206241,4.0920300825904405,0.309315866084425,0.2617661329451722,0.2108199902959728,0.2180980106744298,10.988398294459545,5.961494073775408,17.8695124656218,11458.054399503297,47.3907324152319,13.254746650662169,14.470622685329335,9.74035269667101,9.925010382569388,0.5638039786511402,0.7979610750695088,0.6870588235294117,0.5638665132336018,0.1078976640711902,0.7306772908366533,0.9274725274725276,0.8543956043956044,0.6832579185520362,0.1534883720930232,0.4907568887338681,0.7035256410256411,0.6201975850713501,0.5231481481481481,0.0935672514619883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361853435176,0.0041976335080657,0.0063429882071163,0.0086255067104207,0.0108635947512969,0.0131867012881217,0.0153955954323001,0.0178230556434572,0.0201253104653658,0.022149663763191,0.0241412184395854,0.0262128446018789,0.0281633660312172,0.0300995767729711,0.0322670490298222,0.0343266925684053,0.0363649538321394,0.0383997012665055,0.0404708962822884,0.0425529699619969,0.0569228682615363,0.0707197456891593,0.0839150577531811,0.0966948662708212,0.1082804561839914,0.1239558441009156,0.1349089327576879,0.1456532845161565,0.1555133039233489,0.1642050390964378,0.1769662618665345,0.1877462227802069,0.1981876135461201,0.2068064544341437,0.2160193640664539,0.2246221020435303,0.2335078066582592,0.2406626404399608,0.2490185399505299,0.2561944673445085,0.263061687259938,0.2684752104770814,0.2742200716930685,0.2789672845715381,0.2831633891721291,0.2875841942593983,0.2913515743159631,0.2957923782154801,0.2993427011360401,0.3027556821929373,0.3007430740650997,0.298449719132063,0.2955547728073265,0.2932015226736528,0.2904966478869052,0.2872852023156798,0.2840570994492625,0.2841535433070866,0.2850946843570172,0.2848292238747344,0.2848449670461354,0.2870372198637575,0.2895303388165458,0.290907875086374,0.2916417123829145,0.2926044181398126,0.2930077062556663,0.296894991418318,0.3019989570658786,0.3066991091401436,0.307841720119252,0.3088103638948865,0.3128404182057221,0.3141966390388563,0.313159615205006,0.3133575700715375,0.3133444663731592,0.3185540243658877,0.3185983827493261,0.3256704980842911,0.0,2.1644464632419678,54.79697645394166,150.25098018390486,210.9418955440978,fqhc3_100Compliance_baseline,88 -100000,95803,47549,451.94826884335566,5167,52.76452720687244,4136,42.61870713860735,1596,16.262538751396093,77.41775944651599,79.74689313589579,63.37436231324406,65.0955730481305,77.2060096593674,79.5376018036601,63.29446553671478,65.01906051930109,0.2117497871485909,209.29133223569352,0.0798967765292815,76.51252882941151,212.47556,149.42498076810267,221783.8272287924,155971.08730217497,500.67822,335.4303648073623,522049.4765299625,349562.3360514414,454.78375,222.7521949646617,471646.0444871247,230049.18537084773,2927.60298,1362.1747608882624,3014312.568499943,1380305.0540048466,945.59961,430.4423340784972,971859.1797751636,434142.0396338158,1550.15288,664.6388046529443,1580439.4016888824,662203.3847301832,0.38203,100000,0,965798,10081.0830558542,0,0.0,0,0.0,43593,454.463847687442,0,0.0,41226,427.230880035072,1237478,0,44443,0,0,0,0,0,78,0.8141707462188031,0,0.0,2,0.0208761729799693,0,0.0,0.05167,0.1352511582859984,0.3088832978517515,0.01596,0.3500371195248701,0.64996288047513,23.57368657424616,4.125198894079441,0.3116537717601547,0.2674081237911025,0.2183268858800773,0.2026112185686653,11.014691834964092,5.858965365511756,17.1995741517202,11562.703903433414,47.26473420319385,13.516642591158607,14.51032661263814,10.090745116846191,9.147019882550923,0.5759187620889749,0.7965641952983725,0.6889061287820015,0.5780730897009967,0.1085918854415274,0.7383100902379,0.9171974522292994,0.8141592920353983,0.7074235807860262,0.1666666666666666,0.5080562221460404,0.7070866141732284,0.6442105263157895,0.5341246290801187,0.0927051671732522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521289198959,0.004875675346923,0.007031892116772,0.0094858930348763,0.0118665093955909,0.014027444114174,0.0163184181021302,0.0187596962521433,0.0209938878554344,0.0229254513448233,0.025010250102501,0.0270894495883717,0.0292037581464196,0.0312249058002347,0.0332948382174011,0.0352513452937956,0.0372666307902471,0.0393124468680669,0.0413558829029108,0.0434438602883764,0.057874693515572,0.0714233443102817,0.0845833726427455,0.0974326112990314,0.1104218231607773,0.1261515382014875,0.1384128127449526,0.1488683116634596,0.1579480832630938,0.1670915907873594,0.1786006194614127,0.1897646982563038,0.2005733148019458,0.2104424160370354,0.2192742493655449,0.2286545567183662,0.236832424840317,0.2449123989218329,0.2516426499909371,0.2583341910545396,0.2645380403391631,0.2701674099325223,0.2751299008030231,0.279943523105272,0.2843627189364902,0.2886082804115591,0.2931094788387548,0.2968372920106694,0.3001693097075207,0.3029433445661331,0.3005143079670735,0.2977183125678256,0.2963770051596395,0.2934621206660419,0.2910279597948231,0.2883560283037611,0.2847468863948477,0.2848237950328851,0.2849735647620828,0.2866306549628629,0.2866633077683853,0.2881372568265248,0.2890008536153734,0.2904628766697732,0.2913027874147625,0.2927113551595524,0.2937464629315223,0.2989050753345603,0.3025976739327251,0.3043888998228695,0.3065179095713446,0.3084550872936336,0.3126446849777889,0.3167622208811104,0.3207264557199026,0.3259303012404017,0.322406894429055,0.3297679112008073,0.3332430969139144,0.3316755929609793,0.0,2.129415940675245,53.05992267887854,152.17237760948532,214.35226050992964,fqhc3_100Compliance_baseline,89 -100000,95727,47763,455.0126923438528,5044,51.52151430630856,3977,41.01246252363492,1545,15.763577674010468,77.3893283971574,79.7487752244985,63.35181630130408,65.09303942956464,77.18702704190247,79.55164356187079,63.27521492483981,65.02108933279857,0.2023013552549315,197.13166262771156,0.0766013764642679,71.95009676607356,210.9943,148.46656177601616,220412.06765071503,155093.26352650364,497.96025,334.0244955579703,519642.26393807394,348389.4940218234,456.73275,224.0447313112074,474296.9590606621,231855.70181709708,2828.97221,1317.1229182151606,2917646.5782903465,1338378.0296197317,920.01148,414.02385314420417,945227.480230238,416773.966250708,1507.5758,643.1368584588214,1539292.0074796034,639891.0447940445,0.38185,100000,0,959065,10018.730347759774,0,0.0,0,0.0,43257,451.3146761101883,0,0.0,41323,428.9072048638315,1242223,0,44507,0,0,0,0,0,83,0.8670490039382828,0,0.0,3,0.0313391206242752,0,0.0,0.05044,0.1320937540919209,0.306304520222046,0.01545,0.3462194428652643,0.6537805571347356,23.783380338169717,4.183389728231664,0.3087754588886095,0.2602464168971586,0.2210208700025144,0.2099572542117173,11.276264818466949,5.994795401884638,16.46651294480474,11563.88001401008,45.36671496585313,12.658025233902384,13.935521454359446,9.669056876454484,9.104111401136814,0.5743022378677395,0.8106280193236715,0.6921824104234527,0.5824800910125142,0.0994011976047904,0.7495755517826825,0.927570093457944,0.8825214899713467,0.7303921568627451,0.1472081218274111,0.5005359056806002,0.728171334431631,0.6166097838452788,0.5377777777777778,0.0846394984326018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496764130974,0.004733092117932,0.006928172200075,0.0092097113207355,0.011650603879468,0.013934409543391,0.0162033262677319,0.0183261566090487,0.0205687310329324,0.0226851804479734,0.0249718208832872,0.0270755530020109,0.0293461842767748,0.0314668039114771,0.0335994059773528,0.0351765544750901,0.037124459076133,0.0392287027144768,0.0410248414925683,0.0430633971541073,0.0583278513924129,0.0718134921050153,0.0846810563631405,0.097858201814798,0.1095052865711605,0.1243614827349161,0.1349266967941781,0.1453089732123844,0.1555087824265994,0.1646399004847081,0.1775329542517446,0.1886588347288029,0.1992954913621587,0.2086736869730669,0.2174788473599084,0.226904160574239,0.2361239773653135,0.2444949279111091,0.2518408423059032,0.2587358125365065,0.2646249537550869,0.2712121920433827,0.2768027042040445,0.2814273060257116,0.2866018663463055,0.2902396101258968,0.2937410917456428,0.2974968233799238,0.3016700516150731,0.3058640633440048,0.3029623462426814,0.3005285194591255,0.2979729919425026,0.2953840829451887,0.2933718432940828,0.2904013056542762,0.2871251260080645,0.2872276177262711,0.2880005436536926,0.2884980904165556,0.2885916044046133,0.2901570701212919,0.2902923147491764,0.2902020112129572,0.2901897901060239,0.2919370266008324,0.2923768337149156,0.2959272636691991,0.3003057254030016,0.3062897027684103,0.3074980837729383,0.3103739254258741,0.3148148148148148,0.3148162068706306,0.3168574885972261,0.3187083187083187,0.3197893152746426,0.3191701575902653,0.3227865667499306,0.3292021688613478,0.0,1.9747576794216517,51.332629601150806,144.31813108127034,206.732498561566,fqhc3_100Compliance_baseline,90 -100000,95670,48079,457.5101912825337,5283,53.94585554510296,4172,43.00198599351939,1638,16.765966342636144,77.35982293729873,79.73653739334387,63.33991942654043,65.09015656492959,77.14655949869795,79.5239440717198,63.26047690198177,65.01330454798719,0.2132634386007765,212.59332162406963,0.0794425245586651,76.85201694239652,208.8207,146.99518897920652,218271.87206020692,153648.15404955213,502.40525,337.1820545100747,524559.9142887007,351858.75876458123,463.07457,226.98298840183548,480175.8858576357,234280.94147072727,2976.11017,1380.2911538135415,3071425.6820319854,1403782.722415443,990.63483,449.5585125357185,1018177.5269154386,452657.6417409697,1597.99,678.3397488368678,1637449.0017769416,681348.029542779,0.38546,100000,0,949185,9921.448730009408,0,0.0,0,0.0,43632,455.4614821783213,0,0.0,41999,435.03710672102017,1246724,0,44742,0,0,0,0,0,88,0.9198285774014844,0,0.0,1,0.0104525974704714,0,0.0,0.05283,0.1370570227779795,0.3100511073253833,0.01638,0.3367254224968199,0.6632745775031801,23.842567557644404,4.10465469800795,0.3149568552253116,0.2567114093959731,0.2157238734419942,0.212607861936721,10.980841463007057,5.803570808239631,17.52702554235683,11756.582329735833,47.69951993172529,12.95540695242889,14.917753820161304,10.105729569627526,9.720629589507574,0.5745445829338447,0.8132586367880486,0.6894977168949772,0.5666666666666667,0.1240135287485907,0.7619439868204283,0.9380530973451328,0.8659217877094972,0.7222222222222222,0.1861702127659574,0.4976335361730899,0.7221324717285945,0.6234309623430963,0.5175438596491229,0.1072961373390558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582735852878,0.0044698513090278,0.0068584183026429,0.0093437062013771,0.0118655441678867,0.0140159804570207,0.0164562508279073,0.0188650369342529,0.0208890886432817,0.0230685817169981,0.0251910586596184,0.0273403436778661,0.0296112812711986,0.0316612096126521,0.0338112429087158,0.0358331438493499,0.0375588798592059,0.0396614669764354,0.0417507017361472,0.0440836234028805,0.0594343860675518,0.0742571147362469,0.0880352644836272,0.1008553662924658,0.1138439470964203,0.1292920101156528,0.140376389168993,0.1511317036800341,0.1607371931925083,0.1704929645490549,0.182840887049848,0.1938774405232438,0.2041109454739339,0.2127035545438627,0.2214258188824663,0.2308612440191387,0.2397866380993829,0.2476564080660027,0.2549548732368815,0.26164673570979,0.2678598268067936,0.2732332444693887,0.2790571148091639,0.2843272235325104,0.2891998738813029,0.292770847174036,0.2968949064475031,0.300358204405152,0.3046114465229926,0.3084082579692567,0.3064683035654289,0.3035238173772024,0.3008713768881005,0.2988142634585425,0.2970625722500519,0.29351713176636,0.2903154434540742,0.2907197901295294,0.2915165075406924,0.2922890233238753,0.2939382029831752,0.2943603308395349,0.2953632407097422,0.295111230113573,0.2964641016420952,0.2978016558955592,0.299847103459992,0.3043056814983896,0.3065522892910695,0.3107777339123569,0.3139682539682539,0.3178031308039267,0.3228739188080055,0.3274322777565814,0.3317963677425425,0.337230108553024,0.3349700782568666,0.3396530859217426,0.3446145581520279,0.3567877629063097,0.0,2.3514566371406094,52.82721786119206,154.06086276830356,217.88319323287715,fqhc3_100Compliance_baseline,91 -100000,95856,47706,452.9815556668336,5195,52.8292438657987,4158,42.824653647137374,1637,16.702136538140547,77.34109898624328,79.63219920332004,63.34986309044478,65.04415874981957,77.12631712761132,79.42036556930158,63.2693645031989,64.96695920184705,0.2147818586319658,211.83363401846125,0.0804985872458772,77.19954797252626,209.77044,147.6539315739737,218838.90418961772,154037.03139037246,502.83883,337.1118931762752,523985.9789684526,351109.6522216049,460.32089,225.9110621173736,477090.8550325488,233160.01279066916,2953.27333,1375.7111189457448,3041524.4324820563,1396793.5868850662,942.66794,431.6307416179586,968393.5903855785,435601.2029648849,1584.81696,677.8331496795959,1618514.7095643466,678226.2160760803,0.38118,100000,0,953502,9947.222917709898,0,0.0,0,0.0,43669,454.9532632281756,0,0.0,41745,432.3255716908697,1243644,0,44676,0,0,0,0,0,96,1.0015022533800702,0,0.0,1,0.0104323151393757,0,0.0,0.05195,0.1362873183272994,0.3151106833493744,0.01637,0.3504053058216654,0.6495946941783346,23.37485999011217,4.162670793394347,0.3179413179413179,0.2585377585377585,0.2190957190957191,0.2044252044252044,11.261002625257422,6.103303732181102,17.580791946940035,11616.208818301726,47.555364813823545,13.141167269363269,14.887461450245148,10.17100630977192,9.3557297844432,0.5788840788840789,0.8037209302325582,0.708018154311649,0.5718990120746432,0.1011764705882353,0.7514498757249378,0.933774834437086,0.863768115942029,0.75,0.1243523316062176,0.5083022704168079,0.7090032154340836,0.6530194472876152,0.516546762589928,0.0943683409436834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0044279620228794,0.0068567487245027,0.0092899059841208,0.0116378346512715,0.0138300903688024,0.0160253471479364,0.0181994389186432,0.0204379711151512,0.0226173061775627,0.0247984676370266,0.0268196875993559,0.0289637747398909,0.0311435773445136,0.0334264134612412,0.035297760346785,0.0372763933409161,0.0394019768333367,0.0416614758523317,0.0437894693036756,0.0577875561765533,0.0719839478304489,0.084979574735519,0.0979280215914222,0.1096790497851908,0.1249234278954817,0.1359408436976926,0.1460300246661563,0.1558721519662771,0.1654233654876741,0.1778538296796134,0.1899143487476748,0.2008805304924448,0.2098549520696929,0.2184866553719553,0.228195726107523,0.2376548030793261,0.2456183769433257,0.2532936917717281,0.2611140376995488,0.2669774328247718,0.2732832103644633,0.2792766153736974,0.2833682697490567,0.2880627458598416,0.2926047789813548,0.2964473355016262,0.2997151142086788,0.3030103103452736,0.3055020451246866,0.303377441544281,0.3012225476848605,0.2991082120567476,0.296678336853679,0.293646897823791,0.2908010050867193,0.2872146625057424,0.2871020233731652,0.2874378748928877,0.288362586729297,0.28890184937821,0.2883601031132262,0.2890879650074653,0.2906893142805787,0.2919699204487753,0.2938434545787833,0.2934434663313136,0.2990913679959616,0.3038094569945278,0.3085275003962593,0.313320910784893,0.3149618805590851,0.3168721690991444,0.3185713202396299,0.320573260418631,0.3237145232157701,0.3266585142158361,0.3265060240963855,0.3302452316076294,0.3396801218583397,0.0,2.016873451604249,52.61217800558313,152.15935683218902,221.06383087101636,fqhc3_100Compliance_baseline,92 -100000,95658,47406,451.3161471074034,5152,52.79223901816889,4100,42.43241548014802,1603,16.485814045871752,77.31769350596971,79.73873383412213,63.289715480586615,65.08084282483189,77.11657519346448,79.53764711838606,63.21504585663548,65.00789784560943,0.2011183125052298,201.08671573606784,0.0746696239511379,72.94497922245569,209.75174,147.54346603210763,219272.324322064,154240.3761672914,496.99819,332.8845209989006,519126.6281962826,347564.26016736764,450.90278,220.3801387508934,468614.9825419724,228342.39976586247,2909.26029,1338.7959671114054,3010477.3045641766,1369385.9043386923,934.7583,419.0905151627881,963595.9564281084,424738.5785302208,1561.21554,656.2426420089253,1606246.5658909867,664137.2785161326,0.38039,100000,0,953417,9966.923832821092,0,0.0,0,0.0,43358,452.8110560538585,0,0.0,40882,424.6064103368249,1245466,0,44645,0,0,0,0,0,67,0.7004118840034289,0,0.0,0,0.0,0,0.0,0.05152,0.1354399432161728,0.3111413043478261,0.01603,0.3606313834726091,0.6393686165273909,23.919906637150643,4.128843025231818,0.3129268292682927,0.2585365853658536,0.2190243902439024,0.2095121951219512,11.07299169686374,5.832825378804764,16.904952234130835,11562.23938043124,46.54713672718892,12.8100539926996,14.317763244257314,10.062108140826094,9.357211349405906,0.5673170731707317,0.7943396226415095,0.6812159002338269,0.5556792873051225,0.129220023282887,0.7416520210896309,0.927400468384075,0.8652037617554859,0.6866359447004609,0.1314285714285714,0.50033760972316,0.7045813586097947,0.6203319502074689,0.5139500734214391,0.1286549707602339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0045227761327221,0.0069035532994923,0.008922854907062,0.0113545026300528,0.0135391198044009,0.0159243466019219,0.018114202229283,0.0203145947826798,0.0226224399844195,0.0246984550633885,0.0266615941432919,0.0288432824293849,0.0307709764601514,0.0332585987787616,0.0354618735707116,0.0376986801314684,0.0394706774414691,0.0414498605503059,0.043319116098151,0.0578307713207862,0.0722338642078792,0.0856020502478783,0.0979578510568831,0.1096573208722741,0.1250569258957223,0.1355806119087344,0.1461220312966358,0.156471972614463,0.1654457572502685,0.1775663635677226,0.1886579842676663,0.1991221764795573,0.2094456976413131,0.2183202574047955,0.2275368747920594,0.2365389557425222,0.2449639113152946,0.2523725196385596,0.2588217771871133,0.2644886429414897,0.2704584279128542,0.2764410552740018,0.2814729546626377,0.2856014100771896,0.2901393526447431,0.2942603779720585,0.2972069311839713,0.3008140603362367,0.3037351734329028,0.3007727309442395,0.2986543510233255,0.2960810525575177,0.2939284684164984,0.2920420865441612,0.288466831819433,0.2850524917783961,0.2860042892457803,0.2865532914560033,0.2874185588240515,0.2879320935946836,0.2885090852007378,0.2895479054334301,0.2911829862649535,0.2922057807324802,0.2945129358248688,0.295831098817353,0.3012463867217853,0.3056018904642757,0.3087512291052114,0.3132246376811594,0.3153972197262011,0.3186151530356247,0.3204449152542373,0.3252944475602916,0.3281562536769031,0.3298906439854192,0.3335985677342351,0.3272727272727272,0.3339636913767019,0.0,1.645243832585879,50.02512506914488,152.13494394332184,220.0064870418987,fqhc3_100Compliance_baseline,93 -100000,95714,47489,452.0655285538166,5076,51.94642372066782,4037,41.634452640157136,1585,16.183630398896714,77.34880342590687,79.70712566940597,63.338894218876014,65.07755532012769,77.14857625613882,79.5111128381402,63.263443616562405,65.00637914249722,0.2002271697680413,196.01283126576163,0.0754506023136087,71.17617763046269,210.16732,147.9232649893447,219578.45247299247,154547.1560997813,502.95694,336.80698249026835,524938.650563136,351349.73500910174,451.28592,220.4235202778508,468641.212361828,228053.15216593293,2878.86617,1319.8394368409774,2972128.852623441,1343379.8491142965,939.22606,416.1149158799303,971049.2195499092,424550.56791611057,1544.32278,654.7401972770398,1579143.3437114735,653963.6918297979,0.38021,100000,0,955306,9980.838748772385,0,0.0,0,0.0,43657,455.5446434168461,0,0.0,40919,424.6714169296028,1243737,0,44567,0,0,0,0,0,94,0.9820924838581608,0,0.0,0,0.0,0,0.0,0.05076,0.1335051681965229,0.3122537431048069,0.01585,0.346609055044148,0.6533909449558519,23.932361464911192,4.174136998888739,0.3153331681942036,0.2543968293287094,0.2103046816943274,0.2199653207827595,11.181005388613764,6.0043833136621885,16.930950790211106,11578.005289944327,45.9086465961912,12.53529412665594,14.328594535638768,9.33188696128672,9.712870972609764,0.5687391627446123,0.7945472249269717,0.6881382560879812,0.5948174322732627,0.1114864864864864,0.724910394265233,0.908433734939759,0.8348348348348348,0.7180851063829787,0.1055555555555555,0.5090722355357754,0.7173202614379085,0.6361702127659574,0.5597579425113465,0.1129943502824858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025720737597845,0.0048047682763654,0.0072446857084876,0.0095592194150692,0.0117333658695298,0.013752735786634,0.0162067946221982,0.0185567010309278,0.0203975269531449,0.0224655851798782,0.0247217268310682,0.0267460358187509,0.0287047889293278,0.0308549190791912,0.0331129243560516,0.0351629502572898,0.0370888081259901,0.0390960592666376,0.0412161038096822,0.0431697405439199,0.057793930279675,0.0718292759508509,0.0848161826422696,0.0979694897422409,0.1104055693265123,0.1256571640133284,0.1373166953163133,0.1471825063078217,0.1564389649793807,0.1656475939155993,0.1777239187806323,0.1887774423561744,0.1991907941963411,0.207979264411562,0.2163651967256403,0.2259733640614266,0.2356199879375432,0.2439106748908198,0.2528576455497917,0.2598043707334952,0.2657392833996852,0.271469504707327,0.2772631006045978,0.281780726758809,0.2870077067783239,0.2913542859253241,0.2959201519012642,0.2993890279065632,0.3019028795101345,0.3056466158484405,0.302645374626986,0.3000453365206281,0.2972064367298711,0.2949759695180914,0.2932193579983081,0.2905321734876397,0.2879058377438976,0.2871548069210496,0.2870479208190661,0.2872177505520336,0.287009739896257,0.2879992130631517,0.2884651492708572,0.2888472853704198,0.2908411394072974,0.2912568447823943,0.2923876907339527,0.2962138782674105,0.3011879804332634,0.30613858255267,0.3101334786161809,0.3135836613126263,0.3165927802406586,0.3211963589076723,0.3238984809887725,0.3280114381031812,0.3328192473781616,0.3338785524432631,0.3342556723851688,0.3353822512485593,0.0,2.0264892103046166,48.57506478323312,152.35321724498462,215.21535002294016,fqhc3_100Compliance_baseline,94 -100000,95623,47838,456.0409106595693,5016,51.02328937598695,3965,40.73287807326689,1484,15.01730755153049,77.26744378178137,79.68424515136336,63.28338998351626,65.06994828717384,77.08112554562823,79.50680792773177,63.210711198215314,65.00436059249854,0.1863182361531414,177.43722363158554,0.072678785300944,65.58769467530112,210.51404,148.1442806628221,220149.7756815829,154925.16015854347,497.64868,334.0031420355476,519662.999487571,348532.4747666102,455.81401,223.66923662953428,473027.3678926618,230938.07862541653,2811.62031,1306.6039110796987,2887681.572425044,1314179.385989935,897.46314,411.9955095670889,913074.2290034824,405909.911015798,1451.11572,626.6698603820072,1469654.8947428963,612090.2607589082,0.38203,100000,0,956882,10006.807985526497,0,0.0,0,0.0,43215,451.1466906497391,0,0.0,41200,427.15664641351975,1240727,0,44470,0,0,0,0,0,90,0.9411961557365904,0,0.0,0,0.0,0,0.0,0.05016,0.131298589116038,0.2958532695374801,0.01484,0.3387497610399541,0.6612502389600459,23.752243261267235,4.170940563877082,0.3185372005044136,0.2673392181588903,0.2022698612862547,0.2118537200504413,11.20600265031609,5.863087947214527,15.939738017540378,11605.577857564633,45.20700185328828,12.852636612929413,14.35831188395824,8.792345211005038,9.203708145395598,0.5715006305170239,0.7981132075471699,0.7070467141726049,0.5349127182044888,0.1166666666666666,0.742437337942956,0.9149425287356322,0.8376811594202899,0.7580645161290323,0.1623036649214659,0.5010683760683761,0.7168,0.6579520697167756,0.4675324675324675,0.1032357473035439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025229497233874,0.0048975866964104,0.0073302469135802,0.0094809365092268,0.0115769234681939,0.0138713488409989,0.0162428370414177,0.0182339789073905,0.0204707662733389,0.0224577572964669,0.0247477026583524,0.0270372995572539,0.0290411184379725,0.03086038124678,0.0327828241123038,0.0350880820444959,0.0369959917556524,0.0390691494882813,0.0410889080752707,0.0432588545630845,0.0584675522852932,0.0727430791951651,0.0855072463768115,0.0982855578255649,0.1101983930060922,0.1257108967094881,0.1371786700658593,0.1471647836282242,0.1575017117425539,0.1668743286788399,0.1792863922685305,0.1898813715400032,0.200426694532432,0.2103339206952029,0.2187097413536814,0.2277673130193905,0.2371299727642095,0.2444296903132877,0.2527476270493664,0.2591539933758896,0.2656510464900907,0.2712334214404341,0.276942014747831,0.2818117497511662,0.2855614843265713,0.2907435732964918,0.2941367915081113,0.2981329331264467,0.3020780734123131,0.3054682755525044,0.304147465437788,0.3014156589211276,0.299281588956191,0.296136222373195,0.2939199738301637,0.2913547359879974,0.2882788753799392,0.2887290482198155,0.2894996932724422,0.2892160353175733,0.2897294064882643,0.2904588895031988,0.2913017120638836,0.290643574274838,0.2921439869625653,0.2931070333212039,0.2942644098551217,0.2977991746905089,0.3033150522234254,0.3051685926864018,0.3074290407958382,0.3122700367941129,0.3158427108357567,0.318588127435251,0.3225199811941702,0.32357491372129,0.3239133773613884,0.3296725645718934,0.3198871650211565,0.3258964143426295,0.0,2.768889284334884,49.664647136553526,142.78551728448753,210.2521783126787,fqhc3_100Compliance_baseline,95 -100000,95825,47451,450.79050352204536,5176,52.68979911296634,4100,42.06626663188104,1546,15.674406470127836,77.40182060844235,79.71540660199327,63.36325590393732,65.07555125195583,77.20295737098907,79.5219513583501,63.28851455347802,65.00592483107869,0.1988632374532812,193.4552436431716,0.0747413504592984,69.62642087714244,209.6798,147.5200161134382,218814.88129402557,153946.8778663587,500.31346,335.73322822741744,521414.2864596921,349664.0200567884,455.75639,223.2948373932061,470899.9634750848,229458.13080965853,2867.98822,1336.0002997860508,2947986.277067571,1349321.406924134,960.94088,430.0262370235176,986520.5426558832,432543.3187865751,1498.8834,638.7891402457892,1522774.599530394,631051.9767412575,0.37921,100000,0,953090,9946.130967910252,0,0.0,0,0.0,43485,453.0654839551265,0,0.0,41308,426.4022958518132,1249828,0,44819,0,0,0,0,0,84,0.8661622749804331,0,0.0,1,0.0104356900600052,0,0.0,0.05176,0.1364942907623744,0.2986862442040185,0.01546,0.3606951377334073,0.6393048622665927,23.608017077982822,4.110936199736858,0.3209756097560975,0.2719512195121951,0.2026829268292683,0.204390243902439,11.462429491514824,6.306929152005242,16.5281508706279,11534.923270714184,46.99456447357648,13.637125001081062,14.982873532870691,9.288818781110471,9.085747158514245,0.5846341463414634,0.7946188340807175,0.6983282674772037,0.592057761732852,0.1193317422434367,0.7421746293245469,0.9052631578947368,0.8611111111111112,0.6746411483253588,0.1176470588235294,0.5183645183645184,0.7125,0.6370292887029289,0.5643086816720257,0.1197604790419161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0045302982699733,0.0069695248143489,0.0093543374264907,0.0116204593283923,0.0138442118978785,0.0159914386179483,0.0181159420289855,0.0206472187583048,0.0230289755688156,0.0250525344677361,0.0270353491809336,0.0291919783732667,0.0313825624974259,0.0335097001763668,0.0357821864021492,0.0375960085294909,0.0396113524891898,0.0415052400884946,0.0436063151102646,0.0584057321054223,0.0718198544785481,0.0849121851029048,0.0973580545196701,0.1094446141369031,0.1244534105071928,0.135527681844185,0.1465748182166092,0.1567162586181135,0.1658418493047967,0.1781169662353308,0.1901339961097903,0.2006518550708892,0.2103095261507533,0.2184480427398344,0.2277250738899897,0.2357224904928124,0.2436649803260258,0.2510291332599993,0.2577326665827507,0.2632217931225863,0.2683924501840706,0.2742879438158408,0.2787937580090779,0.2829801694215879,0.2872900970108829,0.2911193050434348,0.2957778681028351,0.299387343604591,0.3032637901058954,0.3008746120672282,0.2984459941793421,0.295857738822637,0.2927809219337279,0.2905780475168381,0.2872322559960916,0.2846619767185084,0.2847593364386696,0.2850993602831087,0.2857625131038894,0.286472889882616,0.2889229499498909,0.2895640412027884,0.2911240499577759,0.293351463536821,0.2927043732381617,0.2947707432833291,0.2973250388802488,0.3004412633334491,0.3049260308467107,0.3092718227046585,0.3141543826279918,0.3189520415181642,0.3225490196078431,0.3278794601589943,0.3299065420560748,0.3345432546884452,0.3425291985501409,0.349480021893815,0.3603053435114504,0.0,2.8110053667821098,52.22566927889919,153.76804116181103,208.70005453850237,fqhc3_100Compliance_baseline,96 -100000,95708,47212,449.7534166422869,5080,52.12730388264304,3971,41.04150123291679,1574,16.101057382872906,77.32145341825886,79.70827276542755,63.3143933609397,65.07992933366269,77.12524878315915,79.51450992084212,63.2408459588036,65.00973099157274,0.1962046350997042,193.7628445854358,0.0735474021360929,70.19834208995235,210.22672,147.84249535631184,219654.28177372843,154472.453040824,502.13729,337.3454809375259,524200.7355706942,352018.8813239498,454.23419,222.3791285217386,471917.58264721866,230252.9199375565,2812.15415,1300.077656149717,2906729.970326409,1326844.8051884032,929.32929,417.75820614602446,959517.4593555398,425005.1052639521,1534.4235,646.6468831275967,1571041.5430267062,647435.54652426,0.37846,100000,0,955576,9984.285535169474,0,0.0,0,0.0,43688,456.00158816399886,0,0.0,41186,427.6653989217202,1241818,0,44569,0,0,0,0,0,83,0.8672211309399424,0,0.0,1,0.0104484473607221,0,0.0,0.0508,0.1342281879194631,0.3098425196850394,0.01574,0.3476702508960573,0.6523297491039427,23.68311130289861,4.206356223736765,0.311760261898766,0.2593805086879879,0.2178292621505917,0.2110299672626542,11.5072280469053,6.213222218054632,16.847919380481134,11494.168170112242,45.56819790450814,12.577055409878808,14.155888952714976,9.67461818878166,9.1606353531327,0.5769327625283304,0.8038834951456311,0.6825525040387722,0.5976878612716763,0.1205250596658711,0.7437229437229437,0.9170616113744076,0.8342857142857143,0.7453703703703703,0.1137724550898203,0.5085227272727273,0.725328947368421,0.6227477477477478,0.5485362095531587,0.1222056631892697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088027883602,0.0045837136193083,0.0068316550267987,0.0092580359955691,0.0113543871072765,0.0134768967484312,0.0155521788347593,0.0178068205023483,0.0199041086087569,0.0219563125678137,0.0240519176944606,0.026186344078292,0.0283092622310002,0.0303564252372561,0.0325660611065235,0.0346360628618693,0.036739724892277,0.0385645198115361,0.0406214900786222,0.0428660760812923,0.0576432987967914,0.0712423979148566,0.0846687445560348,0.0974208416201029,0.1096879022557977,0.1251587637595258,0.1359048114379119,0.1462380708929788,0.1560773333048338,0.1648147750917008,0.1777404343329886,0.1886974216872686,0.1993670541919065,0.2092097347552639,0.2187283465865971,0.2274855808083603,0.2356910242683797,0.2439065502477834,0.2513915813579113,0.2569083541289865,0.2633720594185307,0.2694945953841659,0.2751404743597326,0.2795266158784917,0.2843109875299003,0.2884343191916208,0.291745849169834,0.2956586921444816,0.2989612134680482,0.3013050979152674,0.2984153864763517,0.2956491902278342,0.2936166624504596,0.2905477515936427,0.289292497625831,0.2860181161637799,0.2824729227606925,0.2829656822576945,0.2837980638123807,0.2836530754021268,0.2847614065244199,0.2856495527798574,0.2880404150053232,0.2895764091811469,0.2910557008807506,0.2931398348141007,0.2942517598107669,0.2992343416593448,0.3030981970943462,0.3071143275200696,0.3116335960858929,0.314991518235793,0.3177257525083612,0.3198136266422242,0.323598459949291,0.3271428571428571,0.3315958914609842,0.332725430597771,0.3365305563167991,0.3297791317593297,0.0,1.7249327297080432,50.87044801989161,150.3166559186033,204.41644499012293,fqhc3_100Compliance_baseline,97 -100000,95693,47145,449.22826121032887,5176,52.68932941803476,4044,41.53908854357163,1517,15.382525367581746,77.3455376358958,79.7313808595379,63.32130932583449,65.08677866671182,77.15199999313228,79.54465783461069,63.24711567164744,65.01788159530412,0.1935376427635162,186.72302492720405,0.0741936541870558,68.8970714077044,211.48732,148.74688532671112,221006.0505993124,155441.76201677357,500.75497,335.0657511640097,522581.04563552194,349434.40080675675,449.87342,219.96306071440335,465176.87814155687,226080.64741884623,2859.75197,1328.0640626515296,2937970.300857952,1338010.1955080018,916.95267,418.93845452081615,940230.7692307692,420020.6721048402,1479.21812,636.3117413285102,1501741.4439927686,628365.43456551,0.38005,100000,0,961306,10045.729572696018,0,0.0,0,0.0,43675,455.65506358876826,0,0.0,40717,420.6054779346452,1240928,0,44401,0,0,0,0,0,81,0.8464568986237238,0,0.0,0,0.0,0,0.0,0.05176,0.1361926062360215,0.2930834621329212,0.01517,0.3635690485005553,0.6364309514994446,23.5174540400998,4.188727815066688,0.3229475766567755,0.2601384767556874,0.2087042532146389,0.2082096933728981,11.458464389997443,6.297242307370229,16.170611402033167,11513.872969689157,45.83952178008098,12.755128842711676,14.615542544068914,9.25719583184386,9.211654561456536,0.5682492581602374,0.7709125475285171,0.6937212863705973,0.5675355450236966,0.1211401425178147,0.7298701298701299,0.916256157635468,0.8546511627906976,0.725,0.1560975609756097,0.5036344755970924,0.6795665634674922,0.6361746361746362,0.5186335403726708,0.1098901098901098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097285686785,0.0042192808965971,0.006243971775217,0.0087603406573304,0.0108956620818751,0.0129252393562843,0.0152046664355203,0.0176567302880834,0.0196437336387434,0.021760947036415,0.0238654427978052,0.0260887428101889,0.0282155200789993,0.03016095459885,0.032156862745098,0.0342610205938301,0.0362762464132923,0.0384008635004981,0.0404330327894424,0.0424277155509247,0.0574221646631226,0.0706271456083061,0.0840583969185235,0.0963584137372292,0.1091187173672274,0.124151134993336,0.1351423053250419,0.1460905130635764,0.1558945522962456,0.1652586493768584,0.177442652638841,0.1889945416738866,0.1995602338162778,0.2086811900254943,0.2175760310838626,0.2274918278020943,0.2363269041878739,0.2442029230094171,0.2522263945454752,0.2585449051074838,0.2645112781954887,0.270980410491374,0.276182931731656,0.2801541518060176,0.2846887051005312,0.2886956735617483,0.2926835360827317,0.2963930932112,0.300059348712391,0.3032281798951531,0.3005254973457021,0.2980301972540484,0.295930102098059,0.2942724814452563,0.2922578928698119,0.2891685584995353,0.2862190812720848,0.2862502252584328,0.2866655313351499,0.2867499064887875,0.287512154985414,0.2885218729651335,0.2885021648643561,0.2894132852017737,0.2901239005919429,0.2919243361222263,0.2928786074729262,0.2963878029710711,0.300690521029504,0.3048265519554836,0.3066570318851052,0.3098317560462671,0.3158255025203809,0.3210387655250282,0.3247287691732136,0.3232779097387173,0.3277837177333129,0.3321197411003236,0.3362326719217178,0.3362730061349693,0.0,2.780346567088059,49.59460100196632,144.1724580719696,217.59984811023045,fqhc3_100Compliance_baseline,98 -100000,95621,46850,446.701038474812,5106,52.41526442936176,4024,41.58082429591826,1535,15.73922046412399,77.23812690061078,79.66873570027167,63.25655152000609,65.05405065901596,77.0489847210993,79.4812192970297,63.1865979028722,64.987190189061,0.189142179511478,187.51640324197183,0.0699536171338905,66.86046995496042,211.1032,148.4864686281234,220770.75119482123,155286.46283569862,499.39411,334.2191260321081,521762.0397193085,349022.8046476277,448.13707,218.9541269598932,465842.1476453917,226826.4595033564,2874.9203,1316.6378002363842,2971129.1348134824,1341484.4963307057,929.14661,411.89740503229865,957008.5127743904,416071.68407807685,1506.1096,624.4325288352717,1545052.3002269375,626107.2766437939,0.37648,100000,0,959560,10035.034145219148,0,0.0,0,0.0,43567,455.0883174198137,0,0.0,40670,422.42812771253176,1236045,0,44416,0,0,0,0,0,70,0.7320567657732089,0,0.0,2,0.0209159075935202,0,0.0,0.05106,0.1356247343816404,0.3006267136701919,0.01535,0.3471726470035694,0.6528273529964306,23.82104141019402,4.1599380019973164,0.30889662027833,0.2726143141153082,0.202534791252485,0.2159542743538767,11.242695817742105,6.001397158038341,16.232719298168426,11467.624586826729,45.86278216244706,13.390514070337796,14.008495116759422,9.027587316826162,9.436185658523694,0.5787773359840954,0.8085688240656336,0.7071600965406275,0.5840490797546012,0.1001150747986191,0.7596412556053812,0.9389671361502347,0.8881789137380192,0.7183098591549296,0.0981595092024539,0.5094534204193881,0.7257824143070045,0.646236559139785,0.5365448504983389,0.1005665722379603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024627047186638,0.0048786424999746,0.006955162050199,0.0090462783204415,0.0109815176681322,0.0131523987081919,0.0149829160079555,0.0170494013811138,0.0193523310762432,0.0215503113733202,0.0233729723074397,0.0255235198619017,0.0279124340012968,0.0300096905218449,0.0324056384571694,0.0342387086760825,0.0361589417704197,0.0382797486106061,0.040379330446369,0.0423864964112835,0.0568304182827511,0.0708492266420757,0.0843077310977339,0.096156884222056,0.1087397300779352,0.1235859848324365,0.1343163083198776,0.1452781922830953,0.155891258064171,0.1650233077699727,0.1765454741611824,0.1876388783506942,0.1983396341529846,0.2075980150514312,0.216151600286454,0.2257581471703973,0.2351967799642218,0.2426817859034908,0.2510628140132311,0.258269252840583,0.2644817868698466,0.2703576953729314,0.2748467276198608,0.2794248372294164,0.2838319999025804,0.287642641900904,0.2913228840125392,0.2954568631450132,0.2992577597840756,0.3025327834179357,0.3003829970870644,0.2972809084770055,0.2946077394798054,0.2919349005424955,0.2892307692307692,0.2858610170011191,0.2824722662440571,0.2838550653192014,0.2844923445385339,0.2851836639939999,0.2861957274718691,0.2864734585827456,0.2874672809129934,0.2881658920271719,0.2890724421927149,0.2903133458255257,0.2922634471368774,0.2964590657960824,0.3016028557429831,0.3052063216805265,0.3094719651605879,0.3120840815464244,0.3143910977744436,0.3178487801193443,0.3240171417924352,0.3265377855887522,0.3289295901516288,0.3319411296738265,0.3398479913137893,0.3511161558834658,0.0,1.997558922569112,48.707579590202506,150.97484959809432,216.04960598976777,fqhc3_100Compliance_baseline,99 -100000,95714,47538,453.3715026015003,5044,51.35089955492405,4035,41.51952692396097,1503,15.28512025409031,77.33641368994157,79.71027462722006,63.332022412709286,65.08884726082843,77.14156514375537,79.52092337838465,63.25815840092161,65.01997689538109,0.1948485461861935,189.3512488354077,0.0738640117876769,68.8703654473386,211.2891,148.70387181234997,220750.46492676096,155362.71790161313,502.54265,336.6468233069393,524433.9177131872,351109.4022890479,456.86834,224.4598023646503,472768.4351296571,231070.8683685244,2298.28696,1075.9855379706082,2367070.146478049,1090034.9979842112,907.42748,416.0317131960342,927854.5562822575,414458.990095934,1459.21802,624.8871470680195,1485718.1603527174,618830.2435690899,0.38053,100000,0,960405,10034.112042125498,0,0.0,0,0.0,43771,456.6625572016633,0,0.0,41329,427.3356039868776,1238024,0,44454,0,0,0,0,0,95,0.9925402762396306,0,0.0,0,0.0,0,0.0,0.05044,0.1325519669934039,0.2979777954004758,0.01503,0.3463294028147584,0.6536705971852416,23.51642102343289,4.127449486777473,0.3231722428748451,0.2646840148698884,0.2158612143742255,0.1962825278810409,10.95420652979158,5.762189442373303,16.099255440880693,11552.18485791216,46.01118773966257,12.966513161971132,14.741931838377662,9.69215174595525,8.61059099335852,0.5771995043370508,0.802434456928839,0.6993865030674846,0.5373134328358209,0.1161616161616161,0.7575236457437661,0.9271070615034168,0.8693181818181818,0.6682692307692307,0.1768292682926829,0.5041782729805014,0.7154213036565977,0.6365546218487395,0.4962292609351433,0.1003184713375796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0044320936317812,0.0066703893598659,0.0091165948451093,0.0112916187705359,0.0134947955920395,0.0157354245913174,0.0179191341637737,0.0202018136648502,0.0224290072272382,0.0244169955409768,0.0264570906440253,0.0283307967586689,0.0304050922349596,0.0324314842331187,0.03450200520941,0.0364790424121935,0.0383641795999668,0.0402336482595907,0.0424066917363722,0.0581638193893321,0.0713560793914854,0.0850077603926339,0.0978586521176952,0.1093837284062523,0.1247767314541784,0.1354245068003773,0.1456859971711457,0.1550227896203153,0.164000814218832,0.1757070902750871,0.1879379704126654,0.1991893331015072,0.208533601328323,0.2179574524196738,0.227755724853216,0.2358505280984001,0.2439377935591163,0.2518022306855277,0.2580932886596759,0.2647024841132293,0.2706628215157211,0.2757948693721359,0.2807116194486983,0.2856051604141911,0.2901999852409416,0.2939846618870375,0.2980357800378369,0.3015210452178183,0.30482629553482,0.3024463063329612,0.2998390181482959,0.2968296871920489,0.2945662535748332,0.2929482036195061,0.2896771329281548,0.2871858978416355,0.2879501271429743,0.2886988581084541,0.2893362098168916,0.2900422382536538,0.2909205523708212,0.2912115400650379,0.2916740753911807,0.2926770937963361,0.2948950505312257,0.2973688706646164,0.3018197818776126,0.3069917332212414,0.310255901606824,0.3141447368421052,0.3167094291212315,0.3201659221442246,0.3236967553436875,0.3239409984871407,0.3271375464684015,0.3306637917757585,0.3333333333333333,0.338411316648531,0.3358433734939759,0.0,2.478218935801029,50.15873519703352,148.112196947945,213.42928044756087,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95602,47373,451.936151963348,5168,52.7604025020397,4096,42.17484989853769,1544,15.690048325348842,77.26635035352784,79.70363007065163,63.26822878755484,65.07178338238043,77.06589872036801,79.50776817230977,63.19237118497284,65.00032178237505,0.2004516331598296,195.8618983418603,0.0758576025820048,71.46160000537805,210.2804,147.8281084225368,219953.74573753687,154628.4475455918,500.19099,335.74673673869535,522514.7695654903,350505.550865772,454.93768,223.31747187112387,471315.1712307274,230082.6874273149,2328.1464,1099.1324645425786,2398048.4508692287,1112527.294975605,935.0556,426.95116313428775,960920.5142151838,429485.4167783079,1504.61744,643.2821907425458,1531267.274743206,637851.5347228956,0.37851,100000,0,955820,9997.897533524403,0,0.0,0,0.0,43515,454.46747975983766,0,0.0,41214,426.612413966235,1240755,0,44555,0,0,0,0,0,88,0.920482835087132,0,0.0,0,0.0,0,0.0,0.05168,0.1365353623418139,0.2987616099071207,0.01544,0.3450129773822766,0.6549870226177233,23.58393218821769,4.125627151382467,0.310791015625,0.27783203125,0.20849609375,0.202880859375,11.657131132201098,6.320436429738608,16.50248959620334,11532.493353131636,47.04231927463325,14.024515180036774,14.460593117571548,9.615132236805758,8.942078740219172,0.58984375,0.8101933216168717,0.6834249803613511,0.6147540983606558,0.1191335740072202,0.7708674304418985,0.934959349593496,0.83008356545961,0.7560975609756098,0.1746987951807229,0.5128740431454419,0.7151702786377709,0.6258205689277899,0.5701078582434514,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024626048887267,0.0048085214303829,0.007119136360405,0.0093541564991052,0.0115938193440687,0.0138100431117951,0.0156862344872632,0.0177493025964869,0.0200028648604403,0.0222973665334562,0.0243544480479494,0.0265094669325493,0.0284940757440062,0.0306017239246092,0.0326912152042555,0.0346426058524067,0.0364635157545605,0.03849069929271,0.0407247824819949,0.0427799678785224,0.0578211735680608,0.071425577398667,0.0845360391588412,0.0974510216979144,0.1088520157585103,0.1243194000127115,0.1352302198035797,0.1457282143733398,0.15610649025338,0.1653252237827614,0.1778051069613903,0.1886409956203113,0.199529493770149,0.2093372338910254,0.2187365659549608,0.2277986709710342,0.2360235956562542,0.2439076576576576,0.252485202394883,0.2587881776788889,0.2646840837502316,0.2708816297857394,0.2765733230714581,0.2815881880610251,0.2855806381065779,0.2902911543821139,0.2940027300164051,0.2973014256619145,0.3007653160327881,0.303202152352817,0.3003618655582011,0.2971215703524495,0.2952070023359883,0.2931922816031405,0.2902995932183259,0.2875292390955373,0.2850323253718603,0.284594315330239,0.2854656816747138,0.2862419700214133,0.286801079298456,0.2873036261239008,0.2884450306722777,0.2897256757661659,0.2911921579933689,0.2930513595166163,0.294080783911582,0.2972037869971377,0.3016663743202947,0.3049724195404579,0.3084400835831743,0.3123013350286077,0.3147611244169923,0.3162903103995166,0.3220921590486807,0.3233504913430042,0.326336454243431,0.3274935297630897,0.3315349339088211,0.3324656005950167,0.0,2.5316393987595527,52.90573790192667,153.04248965061572,208.70777648224595,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95716,47573,453.362029336788,5204,53.29307534790422,4062,41.97835262652013,1539,15.796731998829872,77.34534288058313,79.71362987968814,63.32656324425341,65.07435467370544,77.14162406158785,79.51167877988006,63.24798345526115,64.99870905363935,0.2037188189952843,201.95109980808468,0.0785797889922577,75.64562006609776,211.13532,148.48176728609488,220584.72982573445,155127.02536690942,501.83222,336.6168416411026,523824.3344895316,351215.6901529401,456.35403,222.84489270138877,474031.9382339421,230738.05565855064,2309.90616,1083.7385611164418,2387346.232604789,1106416.6219815717,950.82741,435.5223087722143,981835.5969743824,443527.02344743686,1496.85794,654.4990053935077,1536533.0979146643,658410.4366064658,0.38159,100000,0,959706,10026.578628442476,0,0.0,0,0.0,43603,455.0545363366626,0,0.0,41233,428.0789000794016,1236080,0,44401,0,0,0,0,0,104,1.0865477036232187,0,0.0,0,0.0,0,0.0,0.05204,0.136376739432375,0.2957340507302075,0.01539,0.3466764597869996,0.6533235402130003,23.782118403508072,4.088316365982584,0.3008370260955194,0.2732644017725258,0.2223042836041359,0.2035942885278188,10.919013070945097,5.715463369481265,16.55297040170002,11560.075677891144,46.23669209612403,13.49458760727782,13.633019302303088,9.87542155666771,9.233663629875416,0.5753323485967504,0.7891891891891892,0.676759410801964,0.584717607973422,0.1281741233373639,0.729059829059829,0.9149888143176734,0.8552631578947368,0.7330097087378641,0.1549295774647887,0.5131396957123098,0.7043740573152338,0.6176470588235294,0.5408895265423243,0.1188925081433224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.004804086514098,0.0068787792703218,0.0087345114767418,0.0109011775712339,0.0129099257781081,0.014933284405166,0.016873717628084,0.0191360170097928,0.0212302054436949,0.0232403173887191,0.0252721298007804,0.0274629199152455,0.0298450570733918,0.0322497420020639,0.034267816163245,0.0362069679771324,0.0381913094014965,0.0404986691066378,0.0427474233787346,0.0576089567515065,0.0717350804847926,0.0850498966389288,0.0980324074074074,0.1111568372956831,0.1269354104710601,0.1376473086314895,0.1474178703822063,0.157907113462669,0.1679414699035583,0.180092896940436,0.191165163148832,0.2019764480529374,0.2105856718967272,0.219773320556455,0.228875855110707,0.2369114331003996,0.2447930145941871,0.252120111256173,0.258394528520203,0.2647698609214819,0.2706160250713317,0.275447046710612,0.2809302437037214,0.2859745875950535,0.2903110519570147,0.2942221777271646,0.2980029745636671,0.3005584131220605,0.3032676458157227,0.3013802027172741,0.2983243607925209,0.2960365724605985,0.2939764610624331,0.2925161980621767,0.2890184913054127,0.2858993192121183,0.2866657938663961,0.2871977022824221,0.2872703365435872,0.2877082479221796,0.2890268825656343,0.289334389196849,0.2912692753364827,0.2920485627909209,0.2917164372890158,0.2922568060385039,0.2968638076551745,0.3007785346865008,0.3044910766817023,0.3084221941080788,0.3153433024431339,0.3181818181818182,0.3230315853105637,0.3279679940454038,0.3283319657718908,0.3334340078526125,0.3332000799520287,0.3298969072164948,0.3224191063174114,0.0,1.7333480866345246,51.39399852025002,146.85358372326158,216.4807386755587,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95671,47138,449.1956810318696,5019,51.24854971726019,3921,40.49293934421089,1560,15.908687062955336,77.2498286400838,79.6478958213699,63.26585613190741,65.03861806438627,77.04566465416409,79.447545187873,63.18881496430365,64.96573310079692,0.2041639859197204,200.35063349689608,0.0770411676037596,72.88496358934538,210.90674,148.23624071596802,220449.5615181194,154943.3424585191,499.11874,334.83793674006535,521176.4066436015,349463.78000059846,444.11046,216.82375799091432,461614.3136373613,224605.0706602347,2238.40028,1048.272798219363,2311724.0961210816,1067840.6664207154,889.64953,400.8061313510814,919907.213262117,408992.4402556776,1512.82952,646.9087690893246,1543793.646977663,643626.2097297687,0.37863,100000,0,958667,10020.434614459971,0,0.0,0,0.0,43454,453.6588934995975,0,0.0,40198,417.5664516938257,1235459,0,44458,0,0,0,0,0,81,0.8466515454003825,0,0.0,1,0.0104524882148195,0,0.0,0.05019,0.1325568496949528,0.3108188882247459,0.0156,0.3474446987032799,0.65255530129672,23.906618441634127,4.158290901283307,0.306044376434583,0.2662586074980872,0.2216271359347105,0.2060698801326192,11.22211898492191,5.933778056813043,16.710301395722333,11495.376000939204,44.831205810658375,12.670444216944736,13.552991920750063,9.794817394338518,8.81295227862506,0.5814843152257078,0.7998084291187739,0.715,0.570771001150748,0.1126237623762376,0.7341092211280215,0.9075,0.8792569659442725,0.7067307692307693,0.1397849462365591,0.5206847360912982,0.7329192546583851,0.6545039908779932,0.5279878971255674,0.1045016077170418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387454921188,0.004381027716085,0.0066178784218592,0.0089819142450721,0.0112906999216771,0.0136170126087222,0.0158155565525961,0.017879205595548,0.0198200040908161,0.0218248481682899,0.0237250235916793,0.025845155060658,0.0280190154757984,0.0301175015460729,0.0321611464442058,0.0343479475006981,0.0364855342783718,0.0388197306809805,0.0406908390989959,0.0426463688024607,0.056642216788916,0.0707837634048257,0.083922836331577,0.0967738541184393,0.1089195635197028,0.1238027706928848,0.1351959816071447,0.1453204595349233,0.1549702597458171,0.1643641363900049,0.1763436451330966,0.1878212775187073,0.1983599049093803,0.2080902031325407,0.2172958057395143,0.2275530271885868,0.2358939344757726,0.2441233531853456,0.2516074700413105,0.2586533711673004,0.2645774795067691,0.2705822939421699,0.2768058757814171,0.2812913469171738,0.2854322552341027,0.2893952694766256,0.2927420164691705,0.2962045361667347,0.2997038422570337,0.3020882960139749,0.2992655397742615,0.2964127167948824,0.2938976016713485,0.2912811156001564,0.2886973864380544,0.2857230392156862,0.2828584995251662,0.2832271204257276,0.2840977077314918,0.2862020881006865,0.2870351268730894,0.2885756089844986,0.2889735432016075,0.2893765519092678,0.2910079645804759,0.2922273601080687,0.2935610889209937,0.2995164560910934,0.3025724927768302,0.3081897401522022,0.3107120296002166,0.3131859475922911,0.3179720628585682,0.3224760612229511,0.3270124558468116,0.3254617722702829,0.3275261324041811,0.3270084779975777,0.3293282359366466,0.3313298271975958,0.0,1.8682480713068803,48.978806177612775,149.8614572539396,202.27606125521376,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95730,47565,452.5436122427661,5189,52.86743967408336,4128,42.37960931787318,1540,15.585500887913923,77.32698317968122,79.6842656033428,63.31555014592704,65.06038417737848,77.12259715171342,79.48661094802044,63.23783386348461,64.98809438655807,0.2043860279678,197.6546553223528,0.0777162824424309,72.2897908204061,210.23992,147.9533559807327,219617.59114175284,154552.7587806672,502.59835,336.844849257154,524299.4776976914,351152.6055125395,461.34156,226.29896143666943,476649.0337407292,232455.94402866537,2377.68188,1117.1849208425533,2443047.9055677424,1126326.962125304,966.09886,435.18203040508064,989724.6317768724,435126.4602581014,1501.91884,647.2605937991151,1521942.504961872,637535.0771781305,0.38091,100000,0,955636,9982.617779170583,0,0.0,0,0.0,43745,456.21017444897103,0,0.0,41784,431.2963543298861,1238640,0,44495,0,0,0,0,0,92,0.9505902016086912,0,0.0,0,0.0,0,0.0,0.05189,0.1362264051875771,0.2967816534977838,0.0154,0.3501565665868484,0.6498434334131515,23.632040107041817,4.189518707278357,0.3015988372093023,0.2725290697674418,0.2148740310077519,0.2109980620155038,11.401474972634771,6.132793018741781,16.61019610929043,11609.407815503351,47.20605820844583,13.733847588284313,14.153090025665268,9.910146108688473,9.40897448580778,0.5864825581395349,0.816,0.7076305220883534,0.5907553551296505,0.1125143513203214,0.7674609695973705,0.9339019189765458,0.8898305084745762,0.7511737089201878,0.1160220994475138,0.5108210237031948,0.7317073170731707,0.6352413019079686,0.5400593471810089,0.1115942028985507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002127551795755,0.0040863093427429,0.0063942512636258,0.0085541287386215,0.0109534706331045,0.0132477979736265,0.0156524044540522,0.0178531327195149,0.0201238706512407,0.0222003868947093,0.024433489458958,0.0267099171602492,0.0286275235393281,0.0308600024712714,0.0330922932505338,0.0350909823615115,0.0370738474599082,0.0391477532052611,0.0410967446888122,0.0433604900714687,0.058316890601021,0.0729418411223753,0.0863694027112318,0.0981529954692148,0.111056065604874,0.1262990960511709,0.1380648856176224,0.1482230692247088,0.158920860233443,0.1684609357390492,0.1804669311028714,0.192306026079799,0.202010859511866,0.2110877699730847,0.219851832282069,0.228763023719796,0.2369446957765043,0.245168701292851,0.2538191565485047,0.2603742880390561,0.2662451947570747,0.2713654943021444,0.2766196982804593,0.2816032641305652,0.2858098411694598,0.2894409018587269,0.2935590162496711,0.2969066388191995,0.3007022908676272,0.3037523749208359,0.3014924569690608,0.2995006946259336,0.2970846178751918,0.2946954813359528,0.2927278397362598,0.289358053799164,0.2865549807792701,0.2872387509220556,0.2873927797957061,0.2879221726216942,0.2890241397979949,0.2907210401891253,0.2909673098656398,0.2900082502731509,0.2916067491132202,0.292823563024337,0.2959172100935639,0.3001657337627818,0.3060164528722811,0.3115947732997481,0.3181674708030843,0.320454187036745,0.3236850295673825,0.3276938115647793,0.3281090605582862,0.3321670165616981,0.33398761890382,0.3438624550179928,0.3492717779609783,0.3446023818670764,0.0,2.921634004443032,52.16482533142251,152.88002696931608,212.71821037751545,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95760,47876,456.234335839599,5227,53.38345864661654,4153,42.784043441938174,1562,15.94611528822055,77.39144353273707,79.72998348447445,63.36142006586866,65.08697355764653,77.19640389455444,79.53805411167414,63.28779650145169,65.0169226217943,0.1950396381826351,191.92937280030264,0.0736235644169696,70.05093585223676,210.18492,147.90194813351778,219491.35338345863,154450.6559456117,506.79843,339.86456554461586,528659.7953216374,354334.6691626836,459.3492,224.79223174944784,476077.1929824562,231914.2119584097,2361.049,1096.944993474384,2434790.7268170426,1114723.00118709,960.89663,431.186730337572,985284.8266499582,432136.643953368,1522.35128,640.9887296266783,1555847.8070175438,640543.6028525698,0.38206,100000,0,955386,9976.87969924812,0,0.0,0,0.0,44039,459.2836257309941,0,0.0,41648,431.296992481203,1241512,0,44502,0,0,0,0,0,89,0.929406850459482,0,0.0,3,0.031328320802005,0,0.0,0.05227,0.1368109720986232,0.298832982590396,0.01562,0.3397880891487029,0.660211910851297,23.88631090987256,4.116054961194388,0.3262701661449554,0.2547555983626294,0.2152660727185167,0.2037081627738984,11.154018463096545,5.935414291277684,16.547093234287683,11575.382357829074,47.09755843693903,12.869480023517273,15.22262368191239,9.837898919816263,9.1675558116931,0.5730797014206598,0.7835538752362949,0.6811808118081181,0.5973154362416108,0.1111111111111111,0.7478632478632479,0.910958904109589,0.8535911602209945,0.6859903381642513,0.1533742331288343,0.5045256453234999,0.6935483870967742,0.6183282980866063,0.5705967976710334,0.1010248901903367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207192612992,0.0043981880276052,0.0067774598729733,0.0092219254324047,0.011499628880235,0.0135778845370898,0.0156613001834114,0.0179770236904931,0.0203904422355933,0.0227449455676516,0.0247131147540983,0.0268692547603414,0.0290379260385733,0.0310817903934625,0.0329453968188518,0.035089350273732,0.0371742595160722,0.0390471054323702,0.0407879008367548,0.0427712788674882,0.0575648452585981,0.0716542848174113,0.0854550222921584,0.0985687394180311,0.1108041711038242,0.1264169697995093,0.1364094297803747,0.1465516324294422,0.1569544556570025,0.1664272851997942,0.1784068891280947,0.1890538655362221,0.2002130041188041,0.2089623981297384,0.217826679563841,0.2271706296956084,0.2364742860964355,0.2441479085231612,0.2518361517885478,0.2589952749779766,0.2641012307158953,0.2696055521802122,0.2753194859851753,0.2806838998575208,0.2853002873737435,0.290320199771198,0.2950707040423724,0.2981947622679888,0.3021598551474392,0.305876000842815,0.3025972979506325,0.3001385592580906,0.2981985650299771,0.2955297774963299,0.2931863579196567,0.2897791317593298,0.2866301231767634,0.2871673469387755,0.2870661388695401,0.2871506990460287,0.2882913165266106,0.2895778753914945,0.2905563444992064,0.2919371027099364,0.2924240605114659,0.2932549794581101,0.2942026521591295,0.2986508905374526,0.3033228401539,0.307655823880479,0.3105263157894737,0.3138481106576925,0.3160901500408061,0.3197881195611048,0.3212956068503351,0.3307665383269163,0.3354665872897752,0.3407202216066482,0.3395772009633396,0.349420127197905,0.0,2.262079387147779,50.7554671104155,152.69018469000332,220.8821295475496,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95728,47027,447.8000167140231,5127,52.30444593013539,4028,41.49256225973592,1533,15.638057830519807,77.37264048070351,79.73333034160497,63.34029949113111,65.08257284595919,77.17318415783208,79.53725199712989,63.26509910218249,65.01128148865341,0.199456322871427,196.0783444750831,0.0752003889486232,71.29135730578184,210.24542,147.8948951183897,219627.92495403645,154494.9180160347,497.90164,334.0524123198733,519527.9750961056,348367.6912153288,449.56361,220.7142071687436,466483.8082901554,228068.6762010477,2308.86284,1094.9824763099484,2380561.6747451117,1112593.64000907,955.2433,435.3512618615748,984201.6233494902,441167.8660912831,1496.60718,642.4040621069665,1528812.3641985627,641312.8314438787,0.37772,100000,0,955661,9983.087497910748,0,0.0,0,0.0,43332,452.0412000668561,0,0.0,40836,423.3662042453618,1245898,0,44685,0,0,0,0,0,82,0.8565936820992813,0,0.0,1,0.0104462644158448,0,0.0,0.05127,0.1357354654241236,0.2990052662375658,0.01533,0.3515625,0.6484375,23.50124215322413,4.218448268018014,0.3152929493545183,0.2651439920556107,0.2058093346573982,0.2137537239324727,11.742173279482518,6.347326496573428,16.463815125496527,11523.779095747685,46.17178955386391,12.985180239903393,14.4570413845308,9.204018443841532,9.52554948558818,0.5841608738828202,0.8108614232209738,0.7086614173228346,0.5886610373944512,0.1149825783972125,0.7621753246753247,0.9452954048140044,0.8602150537634409,0.7162790697674418,0.175531914893617,0.505722460658083,0.7103109656301145,0.6458797327394209,0.5439739413680782,0.0980683506686478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088607594936,0.0043476938980268,0.0066952737453969,0.0090083685407864,0.0111744908438316,0.0134576623165095,0.0157995596509826,0.0181990772873882,0.0203009363372449,0.0224590281403228,0.0246990792954251,0.0267043121149897,0.0286989336870572,0.0306085666910409,0.032725659516956,0.0347992351816443,0.0367866313260995,0.0387424019251913,0.0404427814156532,0.0424756270310807,0.0571571770160069,0.0710683268808203,0.0844255247761444,0.0977486283660213,0.1097395136041154,0.124779313042467,0.135461632285093,0.1454551258858833,0.1550717054470511,0.1643164294982467,0.1763838035752746,0.188664344288898,0.1996411288130063,0.2092346726743804,0.2184604889641969,0.2282210084312921,0.2366499977675581,0.2435825264580049,0.2510960677858295,0.257986103148577,0.2638687947777173,0.2699107278662439,0.2758122401601383,0.2805460259578245,0.2846569848696603,0.288788906009245,0.2918340026773762,0.294881084035643,0.2987311975374109,0.3018082134008119,0.3008159589197618,0.2972739133420312,0.2950116694317127,0.2932892781392933,0.2909271680417878,0.2875581110839246,0.2848002274989336,0.2847590953785644,0.2855708182266932,0.2870743707703511,0.2884217973302552,0.28900883218842,0.2902835948406993,0.2914399911180193,0.2932553420078787,0.294978160295676,0.296359017781541,0.3024340203301315,0.3066948653052734,0.311123261990314,0.3146693008845584,0.3184629901446844,0.3198054984103235,0.3247484607298393,0.3274459034584797,0.3268332554880896,0.329062405788363,0.3316683316683316,0.3322475570032573,0.3253878168747635,0.0,2.238783714675719,53.65598313260836,145.5624505165666,204.8571443218798,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95746,47516,452.1859921041088,5166,52.75416205376726,4129,42.57096902220459,1559,15.958891233054125,77.33281654085012,79.69915572099667,63.319784280511655,65.07120040215746,77.1349142062043,79.50302224833032,63.2449567894606,64.99912579306906,0.1979023346458177,196.13347266634665,0.0748274910510602,72.07460908840346,211.48754,148.80857508659375,220883.25360850585,155419.4994052324,500.43391,335.41134020928314,522016.85710108,349664.3146731003,456.33567,223.8727438900791,473377.55102040817,231288.954638006,2356.98588,1102.367169323871,2430874.7728364635,1120986.9250203911,937.1065,424.2699041803856,964426.858563282,429095.94848100486,1521.19242,647.636899543342,1558674.1378229898,650849.4249736251,0.38201,100000,0,961307,10040.14789129572,0,0.0,0,0.0,43505,453.7735257869781,0,0.0,41317,428.18498945125646,1237196,0,44401,0,0,0,0,0,88,0.9086541474317466,0,0.0,1,0.0104443005451924,0,0.0,0.05166,0.135232061987906,0.3017808749516066,0.01559,0.3543510324483775,0.6456489675516224,23.822012989160783,4.190956258890186,0.3274400581254541,0.2593848389440542,0.2056187938968273,0.2075563090336643,11.212039700405668,5.935769886459993,16.752255779529776,11634.271079664446,47.04350518700053,13.12407601631168,15.15065794846167,9.444418916086535,9.324352306140645,0.5730201017195447,0.8207282913165266,0.6723372781065089,0.558303886925795,0.1213535589264877,0.75,0.9406593406593406,0.8489010989010989,0.7424242424242424,0.1407035175879397,0.499141778235496,0.7321428571428571,0.6072874493927125,0.5023041474654378,0.1155015197568389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0042802227338654,0.006487968321657,0.0091379433020603,0.0112216660562405,0.0133841264667535,0.0152663192567739,0.0174068402246043,0.0198359951739228,0.0221685217231033,0.0244212512046586,0.0265019663411678,0.0288925218750321,0.0312876548677123,0.0332019562122118,0.0349781903127777,0.037096490228772,0.0391448733914487,0.0411138377074408,0.0433364932859687,0.0584298987368201,0.0728708934923624,0.0862634885013475,0.0991063919259882,0.1111485881125293,0.1262993158434582,0.1368423285361275,0.1475462179507647,0.1580971097771986,0.167124227865477,0.1792527993109388,0.1902304446608244,0.2008286301503931,0.2112260293442372,0.2195140729660467,0.2292319445520876,0.2384411121524523,0.2465229328892289,0.2542470976747353,0.2610174149005599,0.2678255233950953,0.2739382872126235,0.2795200985385034,0.2838783926345066,0.2880422894640904,0.2919184942151615,0.2961520642115676,0.2996793648370104,0.3029310054527322,0.3061752514718694,0.3037238482457793,0.3006891997853989,0.298208551630894,0.2957122019554323,0.2936543319958389,0.2909508146561615,0.2877623925139099,0.2874250516038137,0.2877440457937238,0.287857219118118,0.2887154301506974,0.2896479678322229,0.2911685547975214,0.2919696666444281,0.2933081231152171,0.293565370749799,0.2954906409529211,0.2995589201363906,0.3019935062668016,0.3060942375291283,0.3073651827723489,0.3106068601583113,0.3153658993075051,0.3196955997588909,0.3215147577501392,0.328335480848073,0.3314182038100998,0.3302605210420841,0.3331523214770567,0.3391304347826087,0.0,2.096367553134985,53.1341083139488,148.04608206189332,216.83259780675516,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95778,47164,448.2971037190169,5139,52.45463467602163,4049,41.679717680469416,1547,15.776065484766857,77.34910350822409,79.67809915318686,63.34642956891118,65.06705319184923,77.15172883737634,79.4856358032345,63.272175548799446,64.99747637799835,0.1973746708477506,192.46334995236225,0.0742540201117307,69.57681385087255,210.11782,147.8965717845317,219379.8158240932,154415.7862813294,498.14986,334.0383167920053,519521.9674664328,348177.15322423534,453.59516,222.50246277156708,470173.421871411,229706.29324830015,2316.74744,1088.333677027706,2387551.128651673,1105070.6012422235,930.80716,420.5222668503558,956975.9443713588,424322.6700552281,1502.06134,637.3573155606476,1533028.0231368372,633621.7602734943,0.37847,100000,0,955081,9971.809810186054,0,0.0,0,0.0,43372,452.2124078598425,0,0.0,41053,425.222911315751,1244914,0,44716,0,0,0,0,0,101,1.044081104220176,0,0.0,1,0.0104408110422017,0,0.0,0.05139,0.1357835495547864,0.3010313290523448,0.01547,0.3670083876980429,0.6329916123019571,23.544545940109103,4.174778853961949,0.298345270437145,0.2775994072610521,0.2148678686095332,0.2091874536922697,11.390262974189298,6.099739687274827,16.45213248091385,11491.088177102993,46.38425864423034,13.701860384172,13.79787568555212,9.565094987251449,9.31942758725477,0.5848357619165226,0.7838078291814946,0.7201986754966887,0.5942528735632184,0.1180637544273908,0.7542955326460481,0.9090909090909092,0.8678678678678678,0.7681159420289855,0.1156069364161849,0.5164644714038128,0.6998514115898959,0.664,0.5399698340874811,0.1186943620178041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521467919637,0.0047841555255982,0.0071420600379421,0.00961899828341,0.0114898116891039,0.0135490044382914,0.0158278807150573,0.0180435780986885,0.0202311252797106,0.0223343086902252,0.0246181270553523,0.0266082441432104,0.0285905143620574,0.0304976583809376,0.032941540364986,0.03516980664353,0.0373352097518574,0.039258790713108,0.0411176690635521,0.0432378393576806,0.0582845454640326,0.0720927070586635,0.0849384010484927,0.0975691780605971,0.1094894356920807,0.1242180235015639,0.1349939053473952,0.1455688126076692,0.1554559521903847,0.1643633091212958,0.1761502448474412,0.1870302886123036,0.198014850570214,0.2076494964846867,0.2165111776095757,0.226125477601196,0.2341729067392784,0.2427427877588649,0.2498043263722676,0.2566362564531084,0.263306390999179,0.2693216374269006,0.2738941664990713,0.2775795171488791,0.2813679445637795,0.2865643325284581,0.2908094993934695,0.2946120881496458,0.299291900218773,0.3029627479949345,0.3007523856952501,0.2986879022941079,0.2975706508742562,0.2947913511330362,0.2929519009856963,0.2890673915367347,0.2855519608616744,0.2856207759904433,0.285957388877544,0.2868051476477812,0.2879458037063994,0.2881509672076193,0.2890396659707724,0.2892829262852682,0.2910571449160481,0.2919498919186394,0.2926718122525704,0.2947882223271926,0.298117448721551,0.3013671409267944,0.3062468720141953,0.3098823030431555,0.3124050632911392,0.3149192319414812,0.3165739081218753,0.3206398472006685,0.3234704885190322,0.3251221498371335,0.3217247097844112,0.324377716317661,0.0,2.244508664577987,50.54725719586032,151.33153875947605,213.6106316560632,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95667,47388,451.56637084888206,5080,51.83605632036125,4019,41.424942770234246,1541,15.700293727199556,77.31532774038504,79.70852228579572,63.31028192710126,65.07670850903408,77.11575364083347,79.51124230601464,63.23447940372101,65.00425508684245,0.1995740995515689,197.27997978108647,0.0758025233802541,72.45342219162865,210.86736,148.26624588014158,220418.07519834428,154981.5985451008,497.91012,334.19806553360326,519907.0944003679,348780.1075957261,452.36662,222.2175603668509,469462.6464716151,229631.1065568373,2301.95512,1087.5094080381098,2374434.8625962976,1104983.837726813,948.47481,431.4798667037383,977344.517963352,436933.5682144712,1502.60782,643.9395167233315,1532665.8722443476,641736.5472747011,0.38059,100000,0,958488,10019.003418106557,0,0.0,0,0.0,43274,451.7545235034024,0,0.0,41007,425.1936404402772,1240585,0,44532,0,0,0,0,0,76,0.7944223190859963,0,0.0,1,0.0104529252511315,0,0.0,0.0508,0.1334769699676817,0.3033464566929134,0.01541,0.3579481397970688,0.6420518602029313,23.517454620043985,4.12767717410595,0.3065439163971137,0.2739487434685245,0.2050261259019656,0.2144812142323961,11.222062202050504,6.034556503795198,16.480995995063786,11526.267479897995,45.91837545502665,13.300272181662978,14.057144331972838,9.082221183986707,9.478737757404124,0.575018661358547,0.8010899182561307,0.6915584415584416,0.5606796116504854,0.1334106728538283,0.7464435146443514,0.9237472766884532,0.8558282208588958,0.7368421052631579,0.1741293532338308,0.5024787535410765,0.7133956386292835,0.6324503311258278,0.5008130081300813,0.1210287443267776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0048155883128206,0.0070632649333252,0.0094284030642309,0.01165771484375,0.013903743315508,0.0161866100934274,0.0184055972626525,0.0206473385488571,0.0227538042476498,0.0248807753448541,0.0269748330765279,0.0292368783819928,0.0312007336500118,0.0331850414425945,0.035401799565622,0.0373206237372429,0.0392008303061754,0.041243654822335,0.0429612181725327,0.0579539043400129,0.0723006366225498,0.0855733403306218,0.0986551332238919,0.1109094171160807,0.1260996136135076,0.1365769745364962,0.1463905665803853,0.1561541339319117,0.1650387480411309,0.1772276053848392,0.1880887926367081,0.198393172069934,0.2070546775817537,0.215981056225563,0.2257789017180758,0.2348184468296605,0.2433408730292697,0.2513906232262459,0.2581887363330047,0.2641878669275929,0.2698938448754111,0.2749937848492382,0.2790892951393887,0.2839929062507592,0.2886293065207748,0.2927323689874368,0.2959351040699818,0.2998641743742319,0.3035094892051224,0.3000094198705441,0.2978448335144205,0.2948919891989199,0.292852707132851,0.2910588409883505,0.2886170782050302,0.2854999447225863,0.2858917770148765,0.2866137980327422,0.2871876944963101,0.2883339545285128,0.2888329465444676,0.2890540202053936,0.2885386053967406,0.2909543647943303,0.2918492777676927,0.2938985556692823,0.2975089639554633,0.3013732307800372,0.3053083280356007,0.3072440012748714,0.3122517082472588,0.3147821707378494,0.3149238889313853,0.3200641448919913,0.3203987184051264,0.3207204480096867,0.3210023866348448,0.3255051884216275,0.3218608169440242,0.0,2.3102967620208386,51.91645435052509,145.89636327244352,208.18432982584804,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95629,47648,454.2345941084817,5166,52.83961978061048,4075,42.05837141452906,1533,15.601961748005312,77.3146043072854,79.73330686547507,63.296484254502126,65.08277841800037,77.11224680079971,79.5353836875901,63.21885762159236,65.00966003328121,0.202357506485697,197.9231778849737,0.0776266329097694,73.11838471916587,209.64086,147.5019333509595,219223.10177874911,154243.93578408172,497.78374,333.59561468931,519991.06965460273,348298.2795529208,453.23191,221.94220080860677,470926.2357653013,229741.4515406476,2345.41968,1095.932112073678,2421682.920453001,1115085.5469068105,951.04128,432.3584279268413,976134.6035198529,433752.4553202861,1496.31244,650.3206515628042,1524741.7624360812,645710.8297670092,0.38358,100000,0,952913,9964.686444488596,0,0.0,0,0.0,43235,451.5366677472315,0,0.0,41059,426.3246504721371,1245635,0,44645,0,0,0,0,0,86,0.8993087870834161,0,0.0,1,0.0104570789195746,0,0.0,0.05166,0.1346785546691694,0.2967479674796748,0.01533,0.351572678205844,0.648427321794156,23.941571546516208,4.17961865580551,0.3094478527607362,0.2593865030674847,0.2215950920245398,0.2095705521472392,11.199347523773492,5.8436126390122585,16.61977549035576,11598.870406204978,46.31302468817582,12.8615132688856,14.173416321808904,9.891414972324116,9.3866801251572,0.5720245398773006,0.7899716177861873,0.6938937351308485,0.5658914728682171,0.1288056206088993,0.7297527706734868,0.9113082039911308,0.8466257668711656,0.6893203883495146,0.1421052631578947,0.5082701585113715,0.6996699669966997,0.6406417112299465,0.5294117647058824,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002006221312555,0.0044923994280556,0.0066390546960652,0.0088909210994259,0.0112101236979166,0.013750254634345,0.0158301118919635,0.0180713045254877,0.0201900359002158,0.0223551218113485,0.0245230769230769,0.0265844889573703,0.0287639524715806,0.0306012055020349,0.0327115827286146,0.0348243273983084,0.0369276677753256,0.0390992431399827,0.0411091457704713,0.0432211433160546,0.057863765116595,0.0725307187077716,0.0857205863821565,0.0991441474634973,0.1109035057161858,0.1269088213491475,0.1378442121366649,0.1488989789175246,0.1579183874350031,0.1666988997765171,0.1786330873149467,0.1895677058491957,0.2011724709061587,0.2110014351603326,0.2198243080891024,0.2295245705153815,0.2382937350528598,0.2467327625056331,0.254314311357517,0.2608032478554062,0.2662499276494762,0.2712746669162114,0.2767198835461614,0.2813260304181598,0.2856431797212645,0.2886633492634379,0.2927643506420435,0.2964007930456001,0.3006156393077938,0.3039540126834285,0.3010989897902907,0.2987168214540858,0.2966482255725889,0.2940165260603259,0.2921720775359733,0.2892394883970284,0.2866508313539192,0.2875755783385909,0.287894862931654,0.2886691770920707,0.289062791826977,0.2905672240014146,0.291407533747946,0.2930302828323224,0.2933406451920555,0.2930509698720594,0.2937210876678325,0.2991490154667992,0.3037008775276612,0.3079338907863228,0.3136400395363465,0.3160572837433772,0.3201976605992369,0.3223084457168688,0.3260546366846311,0.3286018452803406,0.3335895465026902,0.3373080032336297,0.3326086956521739,0.3425712086220169,0.0,2.111108320505113,51.19658402215394,147.888843285841,215.18559959398576,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95651,47241,450.86826065592624,5165,52.785647823859655,4036,41.66187494119246,1541,15.776102706715038,77.29129418892526,79.6907719846767,63.29829466637945,65.06962067178182,77.0870017824551,79.48815466396798,63.2220333043392,64.99610368764475,0.2042924064701594,202.6173207087254,0.076261362040249,73.51698413707197,210.79938,148.19132581685267,220383.4147055441,154928.7830387287,497.81702,334.287269231832,519928.9918558092,348965.66210090753,454.11421,222.4626786266883,471071.53087787895,229819.54298911805,2301.5748,1084.0359836307748,2377931.3964307746,1105130.2227710898,946.15176,425.9752383640637,976735.8731220792,432908.2898914424,1497.396,640.1906295790768,1534814.2518112722,643587.9864085268,0.37807,100000,0,958179,10017.427941161097,0,0.0,0,0.0,43346,452.62464584792633,0,0.0,41030,425.3484020031155,1240116,0,44516,0,0,0,0,0,96,0.9931940073809996,0,0.0,1,0.0104546737619052,0,0.0,0.05165,0.136614912582326,0.2983543078412391,0.01541,0.356652440155873,0.643347559844127,23.73187819893816,4.180607980921465,0.3136769078295341,0.2621407333994053,0.2187809712586719,0.2054013875123885,11.6522797654085,6.319171872662106,16.514144959654658,11476.4119481897,46.182436462883146,13.02881280071188,14.26156177383565,9.811419126222528,9.080642762113092,0.5832507433102081,0.8119092627599244,0.7187993680884676,0.5549263873159683,0.1145958986731001,0.7666941467436109,0.9348314606741572,0.8923512747875354,0.7511111111111111,0.1578947368421052,0.5044279135671271,0.7226753670473083,0.651697699890471,0.4878419452887538,0.1017214397496087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0042988948595761,0.0064959451092638,0.0088304034142871,0.0108659158196746,0.0131588328156031,0.0153863409262393,0.0173586292809443,0.0192929003762473,0.0215632871214138,0.0237304126671589,0.0258098309471478,0.0279718121495807,0.0299448709361636,0.0318477913014752,0.0338732365231062,0.0358886136818214,0.0380326439073012,0.0399650396945135,0.0421805444063343,0.0563044704997178,0.0695199488839309,0.0829177122817333,0.0956425639406378,0.1076072272880783,0.1225828985108432,0.1335534277403876,0.1436118655802311,0.153280379726537,0.1624656475437993,0.175216163184337,0.1875162407968817,0.197999651734796,0.2072117437138071,0.2167234178540337,0.2264217904356312,0.2350411118062382,0.2429168026835665,0.250771850170261,0.2578878628875192,0.2647446877459377,0.2705067614992279,0.2761115386892428,0.280047486000024,0.284559172209185,0.2893538795602877,0.2933440216438288,0.2967377186950874,0.2998133941530168,0.3043162810331636,0.3015262038706899,0.298497192557525,0.2957546039931803,0.2931570200158971,0.2916004219848145,0.2877243535704979,0.2849067359153814,0.2847425322861556,0.2845955234854573,0.2856964196383906,0.2856446502559103,0.2864803894407725,0.2871461522331726,0.2889579189666346,0.2917376184194747,0.2932817208770654,0.2943291526287477,0.2996966759435879,0.3053563306860721,0.3087314792805641,0.3139835700993963,0.3160561596115275,0.3204572577099428,0.3264280274181264,0.3308221113099162,0.3296808003811339,0.3329734731647131,0.3393739703459638,0.3422074320576816,0.3510840623811335,0.0,2.0609411147849834,53.05225743353856,142.99027814171546,212.18136703160607,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95638,47505,453.85725339300274,5053,51.62174031242811,3996,41.270206403312486,1530,15.7155105711119,77.27514686010801,79.6881638324911,63.27600815666828,65.05713801264473,77.08138229046108,79.49451079391952,63.20371887999045,64.98692336970396,0.1937645696469303,193.65303857158267,0.0722892766778287,70.21464294076907,210.7281,148.15618610201406,220339.3002781321,154913.51356366096,502.46479,337.2037358827813,524851.4188920722,352054.03509761207,453.56492,221.84102527279205,471206.978397708,229629.3837506081,2280.77792,1059.360688044413,2357536.251280872,1080510.9845476614,942.33223,421.7842669457978,973957.5168865932,429784.9985722782,1487.42486,630.2461934067151,1528596.8338944772,635965.6689196734,0.37971,100000,0,957855,10015.422739915097,0,0.0,0,0.0,43668,456.0321211234028,0,0.0,41035,425.9603923126791,1235515,0,44315,0,0,0,0,0,77,0.8051193040423262,0,0.0,3,0.0313682845730776,0,0.0,0.05053,0.1330752416317716,0.3027904215317633,0.0153,0.3439575033200531,0.6560424966799469,23.832938255604635,4.193766441573655,0.3163163163163163,0.2602602602602603,0.2184684684684684,0.2049549549549549,11.314243132368428,6.114981447117825,16.281040765773835,11542.042251151568,45.32603506021859,12.5722110162983,14.245143356531742,9.580486084689667,8.928194602698875,0.5813313313313313,0.8076923076923077,0.6882911392405063,0.5784650630011455,0.1318681318681318,0.7531194295900179,0.9318734793187348,0.8563049853372434,0.7114427860696517,0.1597633136094674,0.5142658315935977,0.7265500794912559,0.6262188515709642,0.5386904761904762,0.1246153846153846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0043582700708472,0.0067272081578813,0.0087252412392077,0.0108931132334543,0.0126792406713377,0.014755067912061,0.0169982950659002,0.0192510198030936,0.0215739678899082,0.0235709230406285,0.0254977296542088,0.0276143051154368,0.029840746276349,0.0316817778144943,0.033611619751094,0.0358434827675563,0.0377728849469289,0.0399816846004953,0.0419447688970465,0.0563046113967975,0.0703732422407108,0.0841106769191982,0.0974337905315719,0.1100208084670391,0.1249682284165042,0.135359996599796,0.1457960262641766,0.1562951468778425,0.1653089736700698,0.1772757202534515,0.1884975711311589,0.1990147353736158,0.2089053111705626,0.2178561970338983,0.2280547811309438,0.2369010049463954,0.2452530038923675,0.2528220300409649,0.2601471989712147,0.2663929673184422,0.2726409453803678,0.2771195787526239,0.2817834761939062,0.2855614192952163,0.2895992895992896,0.2939311934651332,0.2974926816851215,0.3011876361373301,0.3044064035504834,0.3022635408245755,0.2991714152008148,0.2973696068491607,0.2943257291365868,0.2925996824407544,0.289434648968544,0.2858857720495324,0.2861308129535291,0.2869364083201524,0.2872884970851699,0.287478514311337,0.288575813624021,0.2904161622907709,0.291299117882919,0.2937697538549947,0.2962329211065308,0.2974717590102205,0.3005507228237061,0.303681946921221,0.3076344936708861,0.3118299027369373,0.3169234026785241,0.3179801262421098,0.3188689178010077,0.3257356375525455,0.3295494856332032,0.3325709057639524,0.3399273314493338,0.3389086920756786,0.3347312237895539,0.0,1.8524209577311936,49.231309820673815,143.95555993985195,216.6264060646303,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95673,47306,450.3046836620572,5140,52.38677578836244,4052,41.65229479581491,1506,15.23940923771597,77.28391542799022,79.6800111720141,63.28504443165552,65.05886064230596,77.09478495897348,79.49811846699731,63.21340171920116,64.99268831750953,0.1891304690167459,181.8927050167929,0.0716427124543628,66.1723247964261,211.09638,148.51608333520954,220643.62986422505,155233.0159347042,502.40551,337.0960697128865,524444.0751309147,351659.0782782916,458.66566,225.1180849604813,474754.1835209516,231647.8289608863,2309.54268,1085.21879010488,2377812.2563314624,1098147.4419664396,969.27015,437.6279143659055,997655.075099558,442005.3933076591,1464.03314,619.5396618356189,1485744.7555736727,612199.6348571038,0.38086,100000,0,959529,10029.255902919318,0,0.0,0,0.0,43678,455.8130297994209,0,0.0,41664,430.8321051916424,1233960,0,44315,0,0,0,0,0,94,0.982513352774555,0,0.0,1,0.0104522697103676,0,0.0,0.0514,0.1349577272488578,0.2929961089494163,0.01506,0.3636532738095238,0.6363467261904762,23.7188855522429,4.152754011430438,0.305528134254689,0.2680157946692991,0.2253208292201382,0.2011352418558736,11.888774824126315,6.688634584721697,16.079009783529003,11561.10872638818,46.33757075899609,13.299899592838871,14.101546664603209,10.095352273897095,8.840772227656911,0.5856367226061204,0.8075506445672191,0.6938610662358643,0.5848849945235487,0.1263803680981595,0.7713338856669428,0.9261744966442952,0.8825136612021858,0.7546296296296297,0.1741573033707865,0.5068541300527241,0.7245696400625978,0.6146788990825688,0.5322812051649928,0.1130298273155416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813866763948,0.004817835118468,0.0072387991512431,0.0094511234641924,0.0118128262263056,0.0141695868307391,0.0160946504156254,0.0184561016464436,0.0207210432114548,0.0228953676576041,0.0249810205798469,0.0270339697088017,0.0292141306249292,0.0312168276117941,0.0335487334062803,0.0353789195002895,0.0372101216504673,0.0391654123631079,0.0413585062672283,0.0433880852128236,0.0579018290835779,0.0715788812462702,0.0847955671228276,0.0979523548970916,0.1102280762857655,0.1262067067490896,0.1364693389965489,0.1462300319488818,0.1556534194155247,0.1651176268567012,0.1765320859649501,0.1878615221300288,0.1990723602552098,0.2087188865405884,0.2174665270813819,0.2270921198668146,0.2362679126332968,0.2441604975830713,0.2514202608735172,0.2581888246628131,0.2646823603046003,0.2710714160132212,0.2767572311231811,0.2812064909501176,0.2853544571804045,0.2899480561142025,0.2930794764201165,0.2970923204173824,0.3019178224104217,0.3054570385117407,0.3032811154177433,0.2998777018949335,0.2973698637839661,0.2951096121416526,0.2925243770314192,0.2890867642783923,0.2861253399102004,0.286324716360243,0.2866522280393594,0.2870281253341888,0.2878512721622077,0.2888998715034101,0.2900436534586971,0.2905458373462942,0.2914103770171503,0.2919154261282164,0.2926670072081276,0.2959468355223974,0.2998360598555931,0.3052966851480476,0.3109444871042052,0.3112057184904867,0.3134457950880674,0.3159342702059632,0.3185198787990083,0.3212748633244155,0.3271224643125469,0.3286197968532165,0.3311511183851609,0.3348399246704331,0.0,2.743826193246391,52.08712751632342,148.7284305248036,207.3493084906761,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95656,47770,455.28769758300575,5225,53.41013632181985,4161,42.91419252320816,1617,16.548883499205484,77.35161970545354,79.75776643801385,63.31721993396855,65.09436364019042,77.14670194966989,79.55486641234471,63.240751074840894,65.0207477062104,0.2049177557836543,202.9000256691376,0.0764688591276581,73.61593398002242,209.88,147.54407422032975,219410.9935602576,154244.23017931942,504.3647,338.7097512344458,526666.9105963034,353489.99185807543,458.41495,224.7670920079161,475721.96203060966,232215.0810246333,2387.87896,1125.284036773166,2463947.896629589,1144072.3801623057,973.97495,441.0398196473129,1005623.9964037802,448501.7387514749,1573.00534,666.0549186190633,1610804.5914527057,668023.8259379714,0.38316,100000,0,954000,9973.226980011708,0,0.0,0,0.0,43848,457.7548716233168,0,0.0,41644,431.8181818181818,1242668,0,44544,0,0,0,0,0,89,0.9199632014719412,0,0.0,2,0.0104541272894538,0,0.0,0.05225,0.1363660089779726,0.3094736842105263,0.01617,0.3536562902928716,0.6463437097071284,23.33533007453794,4.194928393356627,0.3141071857726508,0.2641192021148762,0.2141312184571016,0.2076423936553713,11.524878811433604,6.284030037222701,17.185542550246073,11661.107708480076,47.52713090716835,13.553607239385926,14.773360437519324,9.725841129533048,9.47432210073006,0.5849555395337659,0.818926296633303,0.7016067329762815,0.5791245791245792,0.1168981481481481,0.761519805982215,0.9245283018867924,0.889196675900277,0.7101449275362319,0.171875,0.5102599179206566,0.7379421221864951,0.6300211416490487,0.5394736842105263,0.1011904761904761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019857954833284,0.004167722963038,0.006545963829744,0.0089002682272616,0.0110976614552075,0.0131798737013648,0.0154591342476928,0.0177165555339984,0.0197137014314928,0.0219502202191949,0.0242526212118103,0.026224387035781,0.0287116791701398,0.0306810449699993,0.0327948437209494,0.0349379765562763,0.0370001865555624,0.0393119627953328,0.0410316164001622,0.0432710855307746,0.0581166931371729,0.0721801677293714,0.0858768210252319,0.0984017087721882,0.1107218235542423,0.1268719110160971,0.1376202305879355,0.147852499200682,0.1574809045978732,0.16672035736529,0.1784116029546557,0.1896424702058504,0.2007120072289419,0.2094558351851649,0.2188962676622504,0.2288999013314708,0.237486033519553,0.2460286187136214,0.2543252202343111,0.2613878392305049,0.2668972057735011,0.2731596723112342,0.2796292574509085,0.2849686972551742,0.289289180009704,0.2926109101646121,0.296692594858477,0.3011803528366544,0.3045919882263332,0.3078410481038633,0.3053510986944608,0.3026357312404813,0.2999353678412859,0.2973140436323813,0.2958122165910909,0.2929636810527762,0.2909779179810725,0.2916837093633939,0.2920356996866058,0.291818748330811,0.2919548394332498,0.2924164271370634,0.2940537605213141,0.2946722405052032,0.2950459591739286,0.2953858084528887,0.2963172484018781,0.3002622377622377,0.305500400599157,0.3092170075265004,0.3128133327311322,0.3155967142782399,0.3218147917961467,0.3272288793428291,0.3310101291701515,0.3352266004023193,0.3397092578423871,0.3451185214945761,0.3426951120712935,0.3480044759418128,0.0,2.102384613965181,54.07332583481224,146.56196168183334,221.6197764592379,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95798,47794,456.3873984843107,5005,51.10753877951523,3984,41.08645274431616,1493,15.282156203678571,77.3507064425629,79.67758046238899,63.34838135415546,65.0693875789864,77.15370363373677,79.48250337474434,63.27425021800347,64.99795220031689,0.1970028088261273,195.0770876446484,0.0741311361519834,71.43537866950567,210.4608,148.05878310574062,219692.2691496691,154553.10455932337,497.35984,334.160341439394,518663.63598404976,348310.6454654065,458.66232,225.03873238347197,475030.0110649492,232091.3985697407,2282.69616,1080.779268517529,2356796.6763397986,1102380.7538230866,939.77426,422.71032142796406,971098.8851541786,431440.0519019273,1463.41348,624.5508887964357,1500054.0512328022,629073.2718577331,0.38141,100000,0,956640,9986.012234075868,0,0.0,0,0.0,43201,450.416501388338,0,0.0,41593,430.5935405749598,1243984,0,44676,0,0,0,0,0,80,0.814213240359924,0,0.0,2,0.0208772625733313,0,0.0,0.05005,0.1312236176293227,0.2983016983016983,0.01493,0.3553435114503817,0.6446564885496183,23.492683246151262,4.173687308727261,0.3185240963855422,0.2678212851405622,0.2023092369477911,0.2113453815261044,11.203127485337784,5.884384749638896,16.098127173777,11493.57628120963,45.75065458017458,13.058972371594976,14.438636139376412,8.95550236435442,9.297543704848785,0.5763052208835341,0.8153701968134958,0.7013396375098503,0.5471464019851117,0.1128266033254156,0.7585917854149203,0.9385964912280702,0.8469945355191257,0.7263681592039801,0.1235294117647058,0.4983876746685776,0.723404255319149,0.6423034330011074,0.4876033057851239,0.1101190476190476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0043694241686942,0.0063928886724101,0.008359743214692,0.0105844314299658,0.0125118348315636,0.0149606620194855,0.0168792733952444,0.019150588620013,0.0215413583847562,0.023547012050168,0.0256731242817271,0.0277172572556112,0.0298429103786209,0.0318635538689985,0.0338126820802082,0.0358536055379075,0.0376840140991084,0.0397540813359365,0.0417260944250689,0.0561161138182539,0.0705742127054493,0.0837010870134907,0.0969179197797463,0.1086532685558916,0.1243208963111721,0.1360223947067056,0.1466378640673385,0.1562389914279919,0.1652502866695958,0.1778703344956735,0.1888649945427234,0.1997631438846576,0.208745712350615,0.2173621493272359,0.2265864368909487,0.2349644584085388,0.2428789648665648,0.2510792100522326,0.257389613360787,0.2628917165092488,0.2696865331854532,0.2753655739836629,0.279766821081864,0.2837195195923814,0.2880231413096996,0.2920201401816614,0.2958383633013533,0.3000931243209685,0.3036069373296285,0.3006017946375799,0.297276510417382,0.2956894733141129,0.2937338510616799,0.2915622265399047,0.2886673597945079,0.2868232987604351,0.2870016250020518,0.2872850825522033,0.2871439019604345,0.2886039405357778,0.2894039996838194,0.2907162026165716,0.2919290853262209,0.2936313386205239,0.2942219440967876,0.294766861542849,0.2990930847713818,0.3032206006174572,0.3065338550930866,0.3086644240385489,0.3138328990054778,0.3154049628416677,0.3168664579674735,0.3173518119674127,0.3219437219200756,0.3269525267993874,0.3210354667753771,0.3319467554076539,0.3386100386100386,0.0,1.851566426314449,52.08653714110152,147.88039556716825,204.42594480402184,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95737,47428,450.755716180787,5163,52.59199682463416,4071,41.95869935343702,1602,16.31553109038303,77.31652017658898,79.67816710308458,63.31665033110207,65.06270603451136,77.11002729273922,79.47492091489323,63.2378211297358,64.98786632223835,0.2064928838497621,203.24618819134344,0.0788292013662683,74.83971227301822,209.43362,147.3769002443041,218759.3302484933,153939.3340550718,500.49371,336.266096662875,522217.5021151697,350677.1223903767,457.48164,224.26498185378483,474341.81142087176,231556.16189217023,2337.66432,1102.2762040708458,2409945.538297628,1119547.7653058332,959.30013,441.3634637096171,981876.3278565236,440881.9527640775,1566.37278,673.027268214206,1597151.8848512068,669116.7815342904,0.37893,100000,0,951971,9943.60592038606,0,0.0,0,0.0,43475,453.5341612960507,0,0.0,41464,429.7084721685451,1245230,0,44666,0,0,0,0,0,88,0.9087395677742148,0,0.0,0,0.0,0,0.0,0.05163,0.1362520782202517,0.3102847181871005,0.01602,0.3508057047601408,0.6491942952398593,23.68368491694612,4.126604242023467,0.3178580201424711,0.2593957258658806,0.2095308278064357,0.2132154261852124,11.493556794109324,6.203675935490212,17.205154504311487,11523.10829767506,46.76585254271892,12.968186663803296,14.66113918854719,9.529572840975929,9.606953849392498,0.5738147875214935,0.7945075757575758,0.6908809891808346,0.5814771395076201,0.1232718894009216,0.7397034596375618,0.9248291571753986,0.8469945355191257,0.7087378640776699,0.1773399014778325,0.5033251662583129,0.7017828200972447,0.6293103448275862,0.5409582689335394,0.106766917293233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0045417220020072,0.0068612027404212,0.009144761575744,0.0116170247395833,0.0139123703990385,0.0163584999949007,0.0183307292464487,0.0206646216768916,0.022923193480353,0.0252237841828416,0.0273028781484561,0.0294404968790811,0.0315405764418769,0.0335234715875684,0.0356353191577294,0.0375542144979142,0.0397792691402076,0.041953389742417,0.0437455072041005,0.058821686973408,0.0728614032334013,0.0863564379280328,0.098255318701427,0.1109611288043363,0.126331489258174,0.1370836825854916,0.1481942847408543,0.1573896968466495,0.1663376110562685,0.1788249997306528,0.1897221650990876,0.2005394705357725,0.2093976904907707,0.2176679767920643,0.2265834571130866,0.2347587192745384,0.2430178913019016,0.2504369538077403,0.2573398856776292,0.2626019552264708,0.2677347678634078,0.2729650715494691,0.2775486222691191,0.2822581625089614,0.2863326386405396,0.2904368506696708,0.2940899548317323,0.2985182788741508,0.3015290842645487,0.2991061813482662,0.2964681583476764,0.2948421319940182,0.29169862101897,0.2901901887016907,0.2875503607592028,0.2851695987849639,0.2849868593955322,0.2855702001812059,0.2850859155685089,0.2871097778194431,0.2879299784640309,0.2887166055526454,0.2891248463172013,0.2905689377746824,0.2915833484820941,0.2936979447966116,0.2980859448301745,0.3024708592168633,0.3065578295674119,0.3086112493777999,0.3143083840253901,0.3195566409919218,0.3244993223912061,0.3284834918858422,0.3270231897775674,0.3241136919315403,0.3270971635485817,0.3223774308408655,0.3309187952725886,0.0,2.187743267416248,53.0194970515277,147.48423326748443,213.7283082204281,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95685,47432,451.397815749595,5255,53.770183414328265,4165,43.01614673146261,1565,16.00041803835502,77.40264542862671,79.7830668310357,63.35728834693722,65.11222862185859,77.20616780920926,79.58934411231866,63.28334735166096,65.04160719007706,0.1964776194174504,193.72271871704072,0.0739409952762528,70.62143178153235,210.122,147.844873322366,219597.6380832941,154512.0691042128,498.58488,333.3687099822664,520565.6163452997,347898.87650338764,451.83078,220.99031501920416,469027.7577467733,228533.07591530724,2369.8546,1110.3884100434752,2448513.685530647,1132284.7005146844,981.75779,441.96497462504567,1011598.6204734284,447487.909311068,1523.61638,648.3575101943954,1559318.325756388,650085.648708567,0.38005,100000,0,955100,9981.710821967916,0,0.0,0,0.0,43422,453.2894393060563,0,0.0,41090,426.2423577363223,1248968,0,44777,0,0,0,0,0,70,0.7315671212833778,0,0.0,1,0.0104509588754768,0,0.0,0.05255,0.1382712800947244,0.2978116079923882,0.01565,0.3534655266509005,0.6465344733490995,23.95301774727331,4.212523943036537,0.3164465786314526,0.2703481392557023,0.2122448979591836,0.2009603841536614,11.213941046301835,5.860820702424579,16.758296902883355,11522.39609579832,47.5406624323176,13.767122956102984,14.605816205547542,9.891044405965348,9.276678864701733,0.5786314525810324,0.8134991119005328,0.6722306525037937,0.5667420814479638,0.1278375149342891,0.7465475223395613,0.9341825902335456,0.8391812865497076,0.6991150442477876,0.1770833333333333,0.5081799591002045,0.7267175572519083,0.6137295081967213,0.5212765957446809,0.1131782945736434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468137031523,0.0043479582839247,0.0065429093122337,0.0086733087555731,0.0110025320059791,0.0130032788220678,0.0153129364747622,0.0174117166768728,0.019917428004987,0.0222381415340531,0.0243549924659429,0.0263738745675362,0.0285831791075467,0.0309378154029949,0.0329856274697949,0.0350480088472708,0.037132147368857,0.0394334042442795,0.0413633148895452,0.0434723698747211,0.0580738171599302,0.0719984921781742,0.0854330419451994,0.0983894551919293,0.1112540871216116,0.1268012442074525,0.1373554069829141,0.1472598364844149,0.1582170260969927,0.1673316173316173,0.1791052812957698,0.1901778080798242,0.2007438178298788,0.2102109981414671,0.219408911424706,0.2286846591538069,0.2373935529894333,0.2448445502740587,0.2521856314549737,0.2583491439412988,0.2648793380036239,0.2706797611271811,0.276168108484498,0.2807011251001351,0.2840765874939409,0.2877908406709626,0.2910785219976516,0.2951872200581137,0.2993390478157596,0.302770873607659,0.3000684260663062,0.296471329552615,0.2932139002200821,0.290796963946869,0.2892499667341839,0.2862434265680969,0.2829456753134116,0.2838165041554872,0.2840078839161314,0.2830909123199602,0.2833516678164562,0.2838743824982357,0.285717252263477,0.2870454595877798,0.2871923536439665,0.2888163349917081,0.2895154434684046,0.2927103153560622,0.2970473265391595,0.3007569187100843,0.3052312426463933,0.3107150412523799,0.3121481296134117,0.3166553467662817,0.3164190262592281,0.3214868329060825,0.3247953925431949,0.3241845664280032,0.3287486515641855,0.3338289962825279,0.0,2.024339752882512,53.9297800627588,147.97646900543776,220.83356135422267,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95726,47354,450.51501159559575,5223,53.2666151306855,4075,41.99486033052671,1530,15.63838455592002,77.33907921770925,79.70600135339969,63.32552877917672,65.07554930081172,77.1463899808314,79.5159199810525,63.25256765479235,65.00589541109615,0.1926892368778539,190.08137234717992,0.0729611243843635,69.65388971556763,210.397,147.99161622039725,219790.8614169609,154599.1854045894,500.64216,335.174700274161,522415.7491172722,349560.45408160903,452.43586,221.11101727947397,468739.19311367866,227977.13229608265,2351.00728,1092.0514576618611,2424556.296095105,1109390.2781499922,942.15701,421.4107445626142,966749.3262018678,422752.64250320016,1493.06068,639.7094683245085,1526838.5391638635,639299.5658816629,0.37978,100000,0,956350,9990.49370077095,0,0.0,0,0.0,43488,453.6907423270585,0,0.0,41040,424.8480036771619,1244257,0,44631,0,0,0,0,0,87,0.9088439922278168,0,0.0,1,0.0104464826692852,0,0.0,0.05223,0.1375269893096003,0.2929350947731189,0.0153,0.3403713141609028,0.6596286858390972,23.676170911227658,4.219849515177875,0.3101840490797546,0.2647852760736196,0.211042944785276,0.2139877300613497,10.760534758648063,5.572108981388947,16.389865726093934,11580.071801978773,46.41418912426402,13.144804282999427,14.36824058054167,9.321054450631026,9.580089810091884,0.5685889570552147,0.7747914735866543,0.7001582278481012,0.5802325581395349,0.1112385321100917,0.733275412684622,0.8860465116279069,0.8662952646239555,0.6896551724137931,0.1702127659574468,0.5037619699042407,0.7010785824345146,0.6342541436464089,0.5524781341107872,0.0950292397660818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.004359816684917,0.006506095023497,0.0085453584782962,0.0107219515172476,0.0128833168684883,0.0153367664304287,0.0176009964369212,0.019407349843555,0.0217743091829001,0.0241421040756466,0.0262114582691399,0.0286428336350172,0.030794749747584,0.032866078985941,0.0351078571280842,0.0370558375634517,0.0389900163971854,0.0410132689987937,0.0431729627237305,0.0571240628980725,0.0716594996704228,0.0845906245740587,0.0971944730698858,0.1091802518084231,0.1257192418344897,0.1369476420349053,0.1468787598087754,0.1573069730162971,0.1658708272080521,0.1778505770660689,0.1897806267189293,0.2002241152343962,0.2090272458693511,0.2189753696750823,0.2283006318589956,0.2362229344172594,0.2447665781299239,0.252687134668861,0.2599294112254486,0.2658350882877045,0.2717885751037829,0.2775236136231986,0.2816689008042895,0.2862444064466838,0.2900263112597437,0.2941411418158217,0.2984775437706166,0.3015930391675918,0.3050169161302213,0.3032271921817108,0.3004311291739894,0.2986775464265616,0.2958027115609524,0.2935660018993352,0.290646492434663,0.2868243990270714,0.2866089579644567,0.2874408917871592,0.2879852983157294,0.2888909668973256,0.2889064039408867,0.2899910355035753,0.2916378868563534,0.2929959136855689,0.2946442432082794,0.2957303243365842,0.2984990619136961,0.3023101619207147,0.3071177330751294,0.3103573372029748,0.3147019867549669,0.3188651946908221,0.3254860267314702,0.3307284398548702,0.3357672830055352,0.3363455353040281,0.340016200891049,0.3451131971286582,0.351434034416826,0.0,2.279861195146425,50.05562483327302,150.74491356418667,216.8906733854732,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95682,47019,447.6599569406994,5025,51.33671955017663,3979,40.96904328922891,1526,15.54106310486821,77.30793472821749,79.68465036153043,63.31631099018998,65.07053784950314,77.11712216313315,79.49677174101465,63.24472747108872,65.00257082329634,0.190812565084343,187.8786205157752,0.0715835191012601,67.9670262068015,209.99506,147.71786705446166,219471.6247570076,154383.96591459378,497.70968,333.4024171131276,519533.7994607136,347812.8567029928,446.3308,218.5859789346709,462408.4362785058,225352.29481859648,2264.6154,1063.0734997182208,2332561.025062185,1076840.7884641006,923.65817,417.74781711391375,952768.5144541294,424071.4396930153,1482.45622,627.4353642365365,1512608.8083443071,625614.5830975146,0.37717,100000,0,954523,9975.982943500345,0,0.0,0,0.0,43283,451.7046048368554,0,0.0,40561,419.9013398549361,1247396,0,44794,0,0,0,0,0,88,0.9092619301436008,0,0.0,0,0.0,0,0.0,0.05025,0.1332290479094307,0.303681592039801,0.01526,0.3484877306448545,0.6515122693551455,23.853788743816143,4.152735556540019,0.3277205327971852,0.2663985926112088,0.2028147775823071,0.2030660970092988,11.303036900008886,6.126505597421111,16.33041803846963,11493.053519715351,45.56357228196557,12.85096696868358,14.844242753292946,9.017326096950551,8.851036463038488,0.5890927368685599,0.7858490566037736,0.7093558282208589,0.5997521685254027,0.1262376237623762,0.7552921253175275,0.8960739030023095,0.8590425531914894,0.7766497461928934,0.16,0.5189421015010722,0.7097288676236044,0.6487068965517241,0.5426229508196722,0.1169036334913112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502359111435,0.004965343926067,0.0070197506568336,0.0091512960104005,0.0113294280367748,0.0135737851818663,0.0159680231668892,0.0182337927514037,0.0200167658304197,0.0223869138405789,0.0243472377418065,0.026304171500734,0.0283742646756345,0.0305658861222429,0.0324954079210781,0.0346642130510296,0.0368869869755779,0.0387981602799032,0.0410702396804261,0.0428776948417497,0.0561788363104564,0.0703511801957397,0.082947761585513,0.095667813081753,0.1076940918483532,0.1231229643416099,0.1349748573125968,0.1447229762094842,0.1553936389568487,0.1645319774302203,0.1767879642891758,0.1876724035351513,0.1983018232026179,0.2075147857837831,0.2169551923626845,0.2266867496566694,0.2351753299639633,0.244055251850352,0.251525877521385,0.2579134218964727,0.2639412949373828,0.2698815467907716,0.2758726777896107,0.2810828957149365,0.2851465172526952,0.2885464184440883,0.2921801422703136,0.2962198787508278,0.3004031474015788,0.3035525620707871,0.3011676610416021,0.2987978683851778,0.2958985200845666,0.2937322843755423,0.2904305152799464,0.2869436065473365,0.2835000949908176,0.2845479037981337,0.284092463411298,0.283691868249576,0.2841669321439949,0.2854968471406827,0.2865511758306134,0.2873798961143188,0.2890878110825793,0.2925145254162216,0.2944724189923473,0.2983106198580669,0.3016096155197863,0.3042119833893613,0.3084124892060174,0.3120274914089347,0.3136873785190294,0.3209119139589487,0.3213084112149533,0.3248295320949917,0.3238610735227785,0.322060871295007,0.330833110099116,0.3322160148975791,0.0,2.310679512760507,51.35357391671906,143.38923736448578,209.15540670958617,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95710,47457,451.7500783617177,5207,53.108348134991125,4133,42.63922265176053,1626,16.549994775885487,77.38171245272493,79.75299433197796,63.34258245905804,65.09403664492054,77.16626564475614,79.5423520082226,63.26044608449087,65.01632448077463,0.2154468079687888,210.6423237553656,0.0821363745671774,77.71216414590754,209.59136,147.3663832097627,218985.8530978999,153971.77223880752,500.88846,336.3541828671628,522726.2459513113,350817.06495367544,457.0664,224.89353842477647,474192.10113885696,232359.2994404361,2377.51332,1122.015079421163,2454209.96761049,1142436.6517826377,960.9455,435.8312912821467,988431.950684359,439799.5147257677,1577.36178,682.062850564489,1607426.454915892,678955.6236428153,0.37984,100000,0,952688,9953.902413540904,0,0.0,0,0.0,43524,454.1845157245847,0,0.0,41379,428.9729390868248,1246583,0,44715,0,0,0,0,0,108,1.117960505694285,0,0.0,0,0.0,0,0.0,0.05207,0.1370840353833192,0.3122719416170539,0.01626,0.3556454578889297,0.6443545421110702,23.49112390183233,4.249950233040507,0.3201064601984031,0.2489716912654246,0.221146866682797,0.2097749818533752,11.58308346919247,6.354359510268089,17.56213682365039,11521.43517420144,47.36372922414029,12.563031202176925,15.075050751855288,10.190048471372494,9.535598798735572,0.5877086861843697,0.8046647230320699,0.7195767195767195,0.5908096280087527,0.1257208765859284,0.7554655870445344,0.9243119266055044,0.8929503916449086,0.7476635514018691,0.1386138613861386,0.5162180814354728,0.7166947723440135,0.648936170212766,0.5428571428571428,0.1218045112781954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0044805319871463,0.0066262126070544,0.0088576478475509,0.0109445246862094,0.0131670061099796,0.0154575579913331,0.0176507819837478,0.0196783987405824,0.021936738663118,0.0239894200506443,0.0262830977094691,0.0282699684289548,0.0307072663219266,0.0327547419041918,0.0349152191894127,0.0372951923276094,0.0392765233272455,0.0412372206217304,0.0433214877497212,0.0573779908303829,0.0709492352306871,0.084525957946867,0.0973626350505486,0.1096589770365916,0.1248215399909051,0.1362363127069009,0.1463658720948801,0.1556170412785232,0.1648842023964043,0.1769998276010688,0.1882699343999653,0.1987753947883586,0.2073730703634057,0.2152812152812152,0.2251536119568226,0.2347705828556133,0.2433359577100438,0.2499035822046779,0.2576977247483711,0.2639575113106465,0.2698900841908325,0.2751334651215095,0.2798724801649129,0.283538029811582,0.2881696318564881,0.2923519479707335,0.2959348559068643,0.3003715162263272,0.3033738974514483,0.3006912132540814,0.2974962574336295,0.2957358235823582,0.2934336229628669,0.2922273043504004,0.2890258036966998,0.2860365334258762,0.2863609622172833,0.2876942675159236,0.2887590359305898,0.2903610862429125,0.2898884363378785,0.2908413781624501,0.2921131018539101,0.2928822306644685,0.2946906084485208,0.295612400474335,0.3014589230721373,0.3064213814647691,0.3095678162727594,0.3146224710982659,0.3187496705497865,0.3250832338714743,0.329228430254656,0.3307123467190864,0.3350667769767167,0.3391581826470141,0.3413945989520354,0.347515783694757,0.3522205206738131,0.0,2.082996082800636,53.85399006152371,153.13051315445986,211.09525612371917,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95858,47579,452.5861169646769,5189,53.02635147822821,4094,42.13524171169856,1591,16.232343675019298,77.44506122741345,79.72524704378286,63.40474875222951,65.08525669611701,77.24415034468026,79.5249933935031,63.33021384164481,65.01307107945406,0.2009108827331829,200.2536502797625,0.0745349105846955,72.18561666294931,210.80906,148.32823980514144,219918.06630641155,154737.46563160242,500.49891,335.87595242267,521571.8145590352,349835.5405106199,460.60383,225.28194966842364,476915.2913684825,232207.9086502342,2331.34096,1100.1418221925712,2401170.6899789274,1116771.7479945037,958.65175,433.4154078816911,985746.5521917838,437824.11260184296,1548.57444,654.2105361859096,1581934.2986500864,654679.9132744754,0.38101,100000,0,958223,9996.275741200525,0,0.0,0,0.0,43519,453.4102526654009,0,0.0,41783,432.2539589809927,1243298,0,44683,0,0,0,0,0,79,0.8241357007239876,0,0.0,3,0.0312962924325564,0,0.0,0.05189,0.1361906511640114,0.3066101368279051,0.01591,0.3574060427413412,0.6425939572586588,23.23178610218891,4.220429711943408,0.3070346849047386,0.2691744015632633,0.2178798241328773,0.2059110893991206,11.528051513074864,6.146375172167801,16.919612755233178,11545.824981264532,47.07602117817625,13.531682369679316,14.217097227135236,9.961993697307358,9.36524788405433,0.5854909623839766,0.8103448275862069,0.6992840095465394,0.5908071748878924,0.1162514827995255,0.7487479131886478,0.9276315789473684,0.8640483383685801,0.7685185185185185,0.1128205128205128,0.5179558011049724,0.7275541795665634,0.6403887688984882,0.5340236686390533,0.1172839506172839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0045077442032435,0.0067732678989688,0.0089927327351711,0.0113500111772715,0.0137347264754657,0.0159089057280208,0.0177837600823926,0.0199328084632744,0.0222597137014314,0.0245443374974401,0.0266550433311112,0.0285626251733169,0.0307450189777718,0.0327831695205126,0.0347020086290539,0.0366402266874877,0.0387959173099839,0.0406747988580327,0.0429417212065718,0.0572974776597186,0.0710703913415933,0.0847109817511752,0.0980262536594579,0.1101209889531825,0.1254445863368196,0.1363164693674424,0.1461795078832178,0.1559590961921924,0.1653325057254767,0.1770465023804662,0.1885710583433217,0.1990555796786799,0.2081877729257641,0.2177632807266097,0.2273033993738868,0.2362124876026611,0.2443238628065563,0.2512919896640826,0.2579065963603921,0.2634133937446543,0.2695917437090195,0.2750490694539693,0.279799502344722,0.2851425106124924,0.2895057399136244,0.2935341430769423,0.2971090035342876,0.3007349516070596,0.3037662748405461,0.3019060676936312,0.3000700039806185,0.2975530316856425,0.2951211092572349,0.2934845281568325,0.2904448707408422,0.2865053645030362,0.2864062627415804,0.2865804983270207,0.2874669787068064,0.2884823191861981,0.2898696088264794,0.2909807027049556,0.291442542787286,0.2938548286902088,0.2952393272962484,0.2963224494407411,0.299582528506449,0.3027287542040844,0.3058888320679753,0.3097826086956521,0.3113991007669928,0.3159146379623255,0.3198139818556072,0.3240950226244344,0.3298454221165279,0.3353302611367127,0.3353909465020576,0.3461644973691498,0.3588349514563106,0.0,2.231201785545052,52.04213836660863,160.7784286789837,203.57717761002743,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95692,47666,454.9074112778498,5207,53.10788780671321,4082,42.14563390879071,1543,15.80069389290641,77.29747507811412,79.70012537813302,63.28577397120039,65.06548759732244,77.0942407279573,79.49992100425237,63.20841507141038,64.99164469712342,0.2032343501568192,200.20437388065204,0.0773588997900134,73.84290019902551,209.26972,147.27334166368266,218690.4652426535,153903.18067555752,501.708,335.6125547394455,523768.7162981232,350199.0377268815,452.40499,221.1946005892104,469878.6105421561,228913.35364960128,2342.6648,1093.0197533439064,2419892.362997952,1114249.2264618273,928.37269,421.60920432485335,956616.8227229026,427256.51098284335,1508.50008,645.1479567975033,1545567.0066463237,646921.5522558566,0.38262,100000,0,951226,9940.475692847887,0,0.0,0,0.0,43622,455.3045186640472,0,0.0,40976,425.2497596455294,1244931,0,44686,0,0,0,0,0,84,0.8778163273836894,0,0.0,3,0.031350583120846,0,0.0,0.05207,0.1360880246719983,0.2963318609564048,0.01543,0.3381109886071297,0.6618890113928703,24.05583040068285,4.1484882932323055,0.3236158745712886,0.2601665850073493,0.2040666340029397,0.2121509064184223,10.965013037170086,5.726445967249428,16.44715030255415,11619.82304432688,46.234772116623546,12.796139467013951,14.917164550123903,9.100468029545183,9.421000069940495,0.5764331210191083,0.8163841807909604,0.691900075700227,0.56062424969988,0.1212471131639722,0.7464788732394366,0.9182692307692308,0.8497109826589595,0.7391304347826086,0.1894736842105263,0.5108621860149355,0.7507739938080495,0.6358974358974359,0.5100154083204931,0.1020710059171597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021180428878349,0.0044225346398068,0.0065993197624244,0.0092775124479219,0.011444091796875,0.0137097924178532,0.0158704255232344,0.0179122158452646,0.0199128620520373,0.0218228366615463,0.0240532556517457,0.0261965667087866,0.0283333333333333,0.0303679812042084,0.032523515017604,0.0341546163553238,0.0360892592477431,0.0381799869168388,0.0403349979192675,0.042323686048087,0.0567539617043947,0.0712573408565117,0.0850822699798522,0.098315818264062,0.1099789029535865,0.1256836960316536,0.1371071318635828,0.1474384918521674,0.157489493214702,0.1665467664522779,0.1787031644340904,0.189825253664036,0.2005294290663093,0.2100586205007396,0.2194172830796027,0.2289905243769833,0.2375209567452777,0.245902562658406,0.253206694009248,0.2601070597540147,0.2658070943676003,0.2719777967749113,0.2781955777680401,0.2833417332661339,0.2879366546657584,0.2914301929625426,0.2946445349201378,0.2989144284185311,0.3019303616833584,0.3053885092716195,0.3029195603802845,0.300610705965067,0.298780487804878,0.2960743442765329,0.2946384799370107,0.2925388664463214,0.2889485741369776,0.2887634012603323,0.2894696570369489,0.2914060278646573,0.2922503725782414,0.2933377852849904,0.2934139224676949,0.2945777777777777,0.2966097642614642,0.2998135391308851,0.2999179237539977,0.3046299762885311,0.3080486190923971,0.3125738130855838,0.316504854368932,0.3203112676796887,0.3240850427083983,0.3231867718902668,0.3245980856797695,0.330333138515488,0.3329277566539924,0.3344064386317907,0.3356986899563319,0.3259541984732824,0.0,1.919012425582493,49.477984213950485,149.51032824169897,220.37105299565815,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95831,47720,454.2475816802496,5042,51.465600901587166,4024,41.416660579561935,1541,15.683860128768352,77.32864418348662,79.63911923166326,63.32870225298407,65.03845112389148,77.13998187248107,79.45575715778652,63.258001263996,64.97238438705345,0.1886623110055438,183.36207387673653,0.0707009889880652,66.06673683802455,210.22782,148.0338903661224,219373.50126785695,154473.90757283385,500.45028,335.2603891250952,521627.5631058843,349257.9566200465,454.7016,222.32421341508055,471247.6964656531,229452.0058960029,2288.10136,1061.3295576749636,2356814.1833018544,1077256.688991803,913.17269,409.06187998743394,940421.053730004,415377.8598986913,1498.52386,623.6248665275706,1527165.0927153009,620391.3072206893,0.38218,100000,0,955581,9971.522784902589,0,0.0,0,0.0,43566,454.007575836629,0,0.0,41274,427.4921476348989,1241592,0,44579,0,0,0,0,0,64,0.6678423474658514,0,0.0,2,0.0208700733583078,0,0.0,0.05042,0.1319273640692867,0.3056326854422848,0.01541,0.3486692015209126,0.6513307984790875,23.60046489510893,4.157377389186348,0.3098906560636182,0.2664015904572565,0.2184393638170974,0.2052683896620278,11.586218555171364,6.244988262553353,16.211688873895273,11597.79409557336,45.68399455647713,12.966300061209347,14.010453415418043,9.884306872789848,8.822934207059888,0.5760437375745527,0.8013059701492538,0.6920609462710505,0.5858930602957907,0.0980629539951573,0.7451327433628319,0.9253012048192772,0.8477611940298507,0.7072072072072072,0.1075949367088607,0.5100207325501037,0.7229832572298326,0.6348684210526315,0.5449010654490106,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020965209905302,0.004480395734501,0.006655506518541,0.0089387290752478,0.0109314622737441,0.0133374058236611,0.0153399245744572,0.0174206782532376,0.019876550779733,0.0221742422692016,0.0243857456095411,0.026487007922499,0.0285696668242451,0.030790928463336,0.0330195002732719,0.0350099689052799,0.0367672168468981,0.0388806519507719,0.040873349744996,0.0428831641946396,0.056961365153538,0.0702807255998745,0.0840827620904345,0.0967108028583438,0.1093965744400527,0.1253065279891763,0.1371906609835231,0.1480326857191496,0.1580936922699072,0.1681477590661078,0.1807737447912741,0.1922673330520667,0.2021004794572674,0.2113753606715047,0.2196860527792139,0.2293413372614604,0.2384848958449619,0.2463107419038935,0.2537406625343414,0.2607394668959587,0.2661597839566986,0.2717405319236224,0.2776604328839946,0.2819696933310919,0.2859158355631233,0.2887935286573937,0.2937308198158702,0.2968443572829381,0.3004251788862387,0.3036591809775429,0.3012121212121212,0.2982924814100798,0.2969144598541176,0.2949360125079622,0.2928842293107294,0.2900467397134319,0.2870082979666814,0.2879630085100103,0.2886943786931866,0.2894226837117508,0.288912540144895,0.2891798759476223,0.2897511774267495,0.2912422719387982,0.2925778819926305,0.2941772546574168,0.2964872521246459,0.3012894564301102,0.3063260340632603,0.3092694422623723,0.3121640543836668,0.3178388645597003,0.3222166499498495,0.3278364617372141,0.3299934450791272,0.3325426944971537,0.3369105199516324,0.3388263665594855,0.339469409853817,0.3388208269525268,0.0,2.151753963788795,49.16514085822232,147.36536591230433,215.80080574454792,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95747,47606,453.8523400210973,5107,52.17918054873782,4034,41.5469936394874,1562,15.843838449246451,77.35098256499538,79.69991595713307,63.33757887846742,65.07122262402436,77.15286088963819,79.50564754659105,63.26284561157632,65.00070587844982,0.1981216753571857,194.2684105420227,0.0747332668911013,70.5167455745368,212.5332,149.4202204258657,221973.5135304501,156057.1092837015,500.89402,335.7411418979327,522579.1095282359,350090.2815732428,452.00956,221.39910713557703,469052.2836224634,228768.9321517028,2317.08084,1084.5293047386367,2387035.123815889,1099734.7015975814,948.83537,428.7004317991792,974609.011248394,431383.6601599183,1520.20206,650.600604280763,1543892.69637691,640587.8065205414,0.38105,100000,0,966060,10089.705160475,0,0.0,0,0.0,43578,454.53121246618696,0,0.0,40961,424.77571098833386,1233137,0,44262,0,0,0,0,0,86,0.8982004658109393,0,0.0,1,0.0104441914629178,0,0.0,0.05107,0.1340244062458994,0.3058547092226356,0.01562,0.359143018229656,0.6408569817703439,23.701290748691253,4.200464514185826,0.3262270699058007,0.2550818046603867,0.2074863658899355,0.211204759543877,11.145510261035282,5.984958687985248,16.81379417528223,11544.63013156684,46.01279377714911,12.613889968744214,14.91179086992416,9.33296783433224,9.154145104148483,0.5770946950917204,0.7988338192419825,0.6968085106382979,0.5806451612903226,0.1208920187793427,0.762384550797649,0.9152941176470588,0.8912466843501327,0.7311320754716981,0.1581920903954802,0.4994723883221948,0.7168874172185431,0.6187433439829606,0.5296,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771490486364,0.0044495798745198,0.0068694002212007,0.0090497277971885,0.011499628880235,0.0135904144312895,0.0158815914210864,0.0177479766898339,0.0200942364496775,0.022300913938327,0.0241609775098919,0.0263395606651611,0.0284277841750287,0.0305735763567088,0.0324647189898489,0.0344492563384357,0.036438001553197,0.038487480413826,0.0404736656062212,0.0425773518074799,0.0571330145938158,0.0713022920088291,0.0845094050789523,0.0973673696826965,0.1096153237963714,0.1254637900233612,0.1362074451161311,0.1459053903049007,0.1558133572618895,0.1655224937249265,0.177310770490214,0.189025974025974,0.199693281561001,0.2086921317825216,0.2169763550702302,0.2259154992019861,0.2358998414081172,0.2447069411632354,0.2528937812074444,0.2594867798241894,0.2654008145885402,0.2703458442530887,0.275845347778264,0.2804435556300669,0.2848891531470313,0.2894989417728995,0.2939030028866701,0.2977282545168094,0.3014645001034982,0.3042841691508164,0.3022350881917329,0.2991783536795167,0.2969302509051463,0.2941763149906769,0.292120311919792,0.2890504246690642,0.2860058539672494,0.286933403354449,0.2878614689072763,0.2884560603902578,0.2888785133999439,0.2900222427809381,0.2895895499029693,0.2903441214441526,0.2912215291221529,0.2925747198007472,0.2937445133520233,0.2965430940090724,0.3012954450480568,0.3055610294407441,0.3093502377179081,0.3138177014531043,0.3151276276276276,0.3192211908535204,0.3225896599906847,0.3303866100895803,0.3328206705629037,0.3387746876259572,0.3432876712328767,0.3442873519296905,0.0,2.266700030853315,51.8818999591407,144.8055138219472,211.4352129272956,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95848,47547,452.5707370002504,5310,54.31516567899174,4217,43.46465236624656,1645,16.80786244887739,77.51248185563044,79.79888247939117,63.42745123530996,65.11142832577089,77.30491961622145,79.59293000346344,63.35070614131371,65.03758679657746,0.2075622394089862,205.9524759277309,0.0767450939962515,73.84152919343023,212.3693,149.32159286673345,221568.83816042065,155789.99339238528,505.56458,338.2042250170065,526933.8431683499,352323.6739598181,457.02413,223.0422028828631,473579.5634755029,230299.80495075716,2429.585,1124.0701587433275,2505172.1058342378,1143104.205349436,987.40661,441.0787489656263,1015411.7352474752,445417.7228169872,1604.42336,669.5720580485588,1640671.9597696357,671705.4940976992,0.38149,100000,0,965315,10071.310825473667,0,0.0,0,0.0,43989,458.40288790585095,0,0.0,41336,428.18838160420665,1239791,0,44427,0,0,0,0,0,92,0.928553543109924,0,0.0,1,0.0104331858776395,0,0.0,0.0531,0.1391910666072505,0.3097928436911488,0.01645,0.3494410385863685,0.6505589614136315,23.89873685371462,4.124594906506544,0.2990277448423049,0.2682001422812426,0.2160303533317524,0.2167417595447,11.263256048865252,6.07241724364473,17.343787528684942,11588.477056754997,47.84500965958106,13.683739451712652,14.15353871598466,10.162831477565808,9.844900014317943,0.5677021579321793,0.7984084880636605,0.6796193497224425,0.5817782656421515,0.1137855579868709,0.7470588235294118,0.9072847682119204,0.8680981595092024,0.6820083682008368,0.1860465116279069,0.497191939213743,0.7256637168141593,0.613903743315508,0.5461309523809523,0.0970350404312668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022058972335215,0.0045675048865213,0.0069228352203042,0.0090105630587208,0.011255815843475,0.0134445235431709,0.015556596281892,0.0179780551476586,0.0201055823879591,0.022364249923305,0.0246070349700476,0.0264693515470366,0.0287085272751559,0.0306588724450939,0.0328041237113402,0.0348492516810064,0.0367649341376848,0.0388881977274612,0.0407927950387983,0.042641792287832,0.0569622893375604,0.0707444583856127,0.0841628769620889,0.0975076932771785,0.1100090551098195,0.1255478923965737,0.136338105785229,0.1472711613911601,0.1575184600281702,0.1662972599659503,0.1784351042439491,0.1902992731474981,0.2010269548508961,0.2108481090051533,0.2191872597473915,0.2287995046768237,0.2367480145691086,0.2448539568102954,0.2523013168174458,0.2585038677315783,0.2649653470484449,0.2706605795211031,0.2764462468905839,0.2809907490301402,0.285671074760136,0.289721461803808,0.2937841138499115,0.2979986581768928,0.3019840247358928,0.3053908709338929,0.3029446817627917,0.3003460586247931,0.2981682828876481,0.2955045041162019,0.294002983002791,0.2907063536795284,0.2884730586121007,0.2889825799915024,0.2899634571258604,0.2903948374251124,0.29054696678664,0.2907424885952493,0.2916675348488321,0.2917915584271409,0.2935170641153791,0.2934275326818451,0.294426118582424,0.2992123542545274,0.3036814061310636,0.3072399423608677,0.3114469109387536,0.3164977916341907,0.3213867127259268,0.3256213150235092,0.3269478725363787,0.3311740890688259,0.336069243396508,0.3366647070350774,0.3407328162610323,0.3354453969437197,0.0,2.0969532126881645,51.8558633457066,155.00204600106863,224.19074603635272,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95732,47551,454.2681652947813,5084,51.97843981113943,3988,41.02076630593741,1532,15.658296076547026,77.31288813594676,79.6718433437842,63.318020272784125,65.062429443954,77.1175660945061,79.47959892826452,63.24495040676476,64.99271872612566,0.1953220414406615,192.2444155196814,0.0730698660193667,69.71071782834315,210.5741,148.2072591611773,219962.08164459115,154814.7528111575,499.82361,335.5886498034798,521455.9081602807,349898.89462612284,454.23526,222.59059678326244,470215.3511887352,229257.44034915217,2274.43472,1064.674108840764,2343032.1313667325,1079337.0125357923,933.48649,424.1369232394676,958979.1083441272,426921.3149620476,1485.50228,630.1512215947685,1519797.559854594,630604.0119175669,0.37994,100000,0,957155,9998.276438390509,0,0.0,0,0.0,43365,452.314795470689,0,0.0,41152,425.6361509213221,1240074,0,44517,0,0,0,0,0,88,0.8983412025237121,0,0.0,2,0.0208916558726444,0,0.0,0.05084,0.1338106016739485,0.3013375295043273,0.01532,0.3540642722117202,0.6459357277882798,23.495685207393397,4.166481995652592,0.3109327983951855,0.272567703109328,0.2138916750250752,0.2026078234704112,11.491740955572524,6.284687566901832,16.467009412775333,11526.119595858512,45.60713128040487,13.171570781638536,14.037324044202837,9.47900442266629,8.9192320318972,0.5797392176529589,0.7994480220791168,0.7032258064516129,0.5486518171160609,0.1274752475247524,0.7534013605442177,0.9352678571428572,0.8647058823529412,0.7512953367875648,0.1435897435897435,0.5071123755334281,0.704225352112676,0.6422222222222222,0.4893939393939394,0.1223491027732463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0042368156985171,0.006503718584807,0.0085219193109332,0.0109030624179981,0.0129429735234215,0.0149383093708575,0.0172433155353186,0.0193837283006522,0.0214619960885102,0.02396161220535,0.0259896287929352,0.0279226188639659,0.0299943348612041,0.0319615388583396,0.0337963537144983,0.0357131762878591,0.0377268435415088,0.039712993292778,0.0416970555752359,0.0566274116762716,0.0705526607654801,0.0837667785234899,0.0965188043443976,0.1089356318203384,0.1241035730151678,0.134983711972496,0.1450818014412381,0.1551024331887804,0.1649957646655158,0.1768911091492431,0.1885286675173562,0.1986628254606729,0.2083169312863578,0.2179456153473841,0.2271332853424885,0.2348300564618715,0.2430909397671672,0.2519328360750655,0.2585027779368807,0.2654521042640863,0.271381463551533,0.277510320436238,0.2818183996740875,0.2867467537988752,0.2905900762700378,0.2940580054826071,0.2969308454484171,0.3015289411338244,0.304314533164343,0.3017675747042815,0.2993904871974794,0.2977359500697389,0.2956874990964421,0.2931824266040037,0.2903240641383328,0.2874443229191434,0.2879342915811088,0.2875235002563664,0.2885704586467509,0.2892967506320816,0.2899828073434381,0.2899859900048094,0.2901945924258297,0.2918126409751884,0.29278951201748,0.2926440899655947,0.2953788116944357,0.3003648866746193,0.3050732986373207,0.3085464640029125,0.3137285986049461,0.3205440139746709,0.324461247637051,0.3221671189295406,0.3262428017393348,0.3318049824239645,0.3351394742123219,0.3339763020115734,0.3344620015048909,0.0,2.529162787945651,50.9293347610955,146.9085463831031,205.6647359617456,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95791,47823,455.7630675115616,5120,52.30136442880856,4056,41.86197033124198,1564,15.993151757471995,77.37208356525132,79.70862143565284,63.35007434272507,65.0785728188524,77.17416233131635,79.5143567514967,63.27553056703312,65.00769452078555,0.1979212339349629,194.2646841561384,0.07454377569195,70.87829806684454,211.11662,148.59029839999116,220392.9596726206,155119.26840725244,502.34395,336.38024841994627,523978.69319664687,350722.6445281355,453.54291,221.5010668638085,470823.5324821748,229154.5629343976,2315.33504,1075.8239927921338,2390269.8583374224,1096295.427328385,969.01089,438.891027185054,1000654.602206888,447241.58551957295,1529.88988,646.8837793896552,1565617.500600265,647438.5679415858,0.38391,100000,0,959621,10017.861803300935,0,0.0,0,0.0,43669,455.3976887181468,0,0.0,41201,427.3887943543757,1239900,0,44519,0,0,0,0,0,83,0.866469710098026,0,0.0,1,0.0104393940975665,0,0.0,0.0512,0.1333645906592691,0.30546875,0.01564,0.3518103770063456,0.6481896229936543,23.650921587239612,4.1131549340372935,0.2990631163708087,0.2736686390532544,0.2152366863905325,0.2120315581854043,11.254145100885282,5.977295354867545,16.631605342568662,11599.081150129636,46.08835506469244,13.34924019877133,13.763497581155528,9.58902191212342,9.38659537264216,0.5808678500986193,0.8117117117117117,0.7015663643858203,0.5715922107674685,0.1220930232558139,0.7462946817785527,0.9363207547169812,0.8348909657320872,0.7836538461538461,0.1443298969072164,0.5156411137848058,0.7346938775510204,0.6535874439461884,0.5052631578947369,0.1156156156156156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020257267294641,0.0041259478528851,0.0064338048750786,0.0089088895886876,0.0111766500559341,0.0134183091708747,0.0155235503368702,0.0176745515031532,0.0200498691955526,0.0221471701975232,0.0240210696754491,0.026385738769897,0.0283702523513388,0.0307248764415156,0.0327304225874976,0.0346747946479309,0.0367353276058379,0.0389397600356731,0.0407609825028053,0.0426010369167343,0.0571544851191718,0.0708705065316752,0.0849424492106421,0.0977293503273055,0.1107341894838866,0.1264539029569296,0.1373496529433582,0.1474519143868752,0.1570411941062874,0.1657900656647349,0.1779329188270476,0.1895821173011652,0.2003042816778961,0.2101155405922412,0.2189829986583676,0.2282154919439676,0.2376660606128208,0.2465043611186044,0.2546017137416693,0.2605057408106963,0.26566456610973,0.272392551985319,0.2772781526607499,0.2826024511681348,0.2871025270845718,0.2911615198099622,0.2949617785784884,0.2985920504218766,0.302620183296493,0.3061208361322954,0.3040436189785531,0.3016654776930253,0.2993033565547815,0.2961717238790888,0.2936472612901311,0.2902589659705873,0.2871498317296298,0.2864674580433893,0.2876452818596078,0.2881443482597698,0.2884105589366389,0.2895663983309386,0.2900796796128655,0.2905944888019038,0.2911471172486418,0.2923820160515311,0.2928528767668724,0.2976354741595584,0.3020509416162957,0.3075735992402659,0.3108493771234428,0.3163254537779654,0.3203125,0.3217825527729439,0.3251028806584362,0.3327460653042048,0.3383594692400482,0.3399960807368214,0.3431793770139635,0.3404255319148936,0.0,1.89556963652082,50.1260299410573,150.17726666002633,214.55689696734103,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95645,47690,455.4968895394428,5147,52.53803126143552,4086,42.114067645982544,1568,15.975743635318103,77.25911226955019,79.65564385134455,63.27736057920528,65.04597281273391,77.05803645647332,79.45912502712308,63.20077288522579,64.97376307420765,0.2010758130768692,196.5188242214708,0.0765876939794907,72.20973852625434,208.8757,147.04185764856496,218386.1989649224,153736.87871667626,499.61798,333.99637666971,521755.9516963773,348593.10645586275,454.29995,222.6478107886776,471444.7592660359,230029.13720480056,2347.78992,1092.8966102988993,2421915.8345966856,1110104.1504183465,952.63414,427.7876072135288,977605.7817972712,429094.69197742734,1529.6439,655.1086213432043,1560880.5687699304,652642.5619308872,0.38155,100000,0,949435,9926.645407496471,0,0.0,0,0.0,43427,453.384912959381,0,0.0,41115,426.3369752731455,1245145,0,44713,0,0,0,0,0,83,0.8677923571540593,0,0.0,2,0.0209106592085315,0,0.0,0.05147,0.1348971301271131,0.3046434816397901,0.01568,0.3374187558031569,0.662581244196843,24.132521614073127,4.122877929518339,0.3127753303964757,0.2577092511013216,0.2158590308370044,0.2136563876651982,11.184230683053766,6.080405189441222,16.874462868532024,11581.252470408408,46.42567372283219,12.754397852840343,14.425114956564396,9.762510156422346,9.483650757005108,0.5658345570239843,0.7910731244064577,0.6979655712050078,0.5578231292517006,0.1088201603665521,0.7416309012875536,0.9212410501193318,0.8633720930232558,0.7162790697674418,0.1443850267379679,0.4957206436152003,0.7050473186119873,0.6370449678800857,0.5067466266866567,0.0991253644314868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021676812900742,0.0043906346647197,0.006343503237724,0.00861648512437,0.010804211811384,0.0130568512822602,0.0152639843383567,0.0174260134548832,0.0194641232455198,0.0215673429279177,0.0236013000194797,0.0258750808596276,0.0278220622267935,0.0297199015174147,0.031980764070917,0.0339754128022994,0.0359573608478105,0.0380323648781905,0.040190969513527,0.0421075676859082,0.0563486257707179,0.0703639696255564,0.0844814550342336,0.0974685143843983,0.1094507397746353,0.1251813800773182,0.1360980687926236,0.1466400971846294,0.1569080389703444,0.1660133807278858,0.1780620941120628,0.1905701065224694,0.2005076142131979,0.2099398481412089,0.2191673559415494,0.2288309698053282,0.238182611516989,0.2461965286627795,0.2535393852556886,0.2602906542592911,0.2660780378006474,0.272236817414149,0.277940600638371,0.2817966505163687,0.2868933399978056,0.2915291936978684,0.2958449935372143,0.2989504023670148,0.3016529997924019,0.3050641279915377,0.3024833744756046,0.2989820128007062,0.2971876766534765,0.2954512467705884,0.2926410929483355,0.2891103705637545,0.2867341434781229,0.2861465596632022,0.2873140078420629,0.2883336907570233,0.2889038735296321,0.28982388248302,0.2913423717465896,0.2941215720290919,0.296068531501998,0.2975487147595356,0.2982784007248839,0.304455290657656,0.3076815593670311,0.3112305382122817,0.3133130864421377,0.3170307059195948,0.3225806451612903,0.3235892413169592,0.3247823671050194,0.3320427079666784,0.3338377723970944,0.3377271819452766,0.3345284059569773,0.3324303405572755,0.0,2.281671284729314,50.61619385616627,146.5833343031285,220.4107980102149,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95636,47756,454.81826927098587,5125,52.54297544857585,4009,41.51156468275545,1511,15.54853820736961,77.28554750318864,79.71749834107742,63.27381344368565,65.0720591107774,77.09238682194719,79.52072496539071,63.20235217129369,65.00007721754596,0.1931606812414514,196.7733756867034,0.0714612723919572,71.98189323143822,209.81466,147.6001548152138,219388.7866493789,154335.34946590595,498.01514,334.13183871588546,520342.52791835705,348981.00999193336,455.36682,223.20875939040957,472747.5427663223,230809.32665904143,2299.5934,1080.0745210471473,2382626.709607261,1107619.9548271506,910.28761,410.5039991549826,941496.9049311976,418971.2538983946,1474.89828,627.1143056956806,1519668.5557739765,639491.8366230524,0.38147,100000,0,953703,9972.217574971768,0,0.0,0,0.0,43306,452.40286084737966,0,0.0,41211,427.54820360533694,1241697,0,44584,0,0,0,0,0,94,0.9828934710778368,0,0.0,2,0.0209126270442092,0,0.0,0.05125,0.1343487036988492,0.2948292682926829,0.01511,0.346067415730337,0.6539325842696629,23.569833391679595,4.229348081587296,0.3130456472935894,0.2698927413320029,0.2027937141431778,0.2142678972312297,11.272883482031077,5.865976931696667,16.25305386972721,11560.826350753989,45.86620485735294,13.227709032194264,14.146285097249068,9.112184957271827,9.380025770637785,0.575704664504864,0.7939001848428835,0.7107569721115538,0.5867158671586716,0.0931315483119906,0.7472245943637916,0.908675799086758,0.8816901408450705,0.7164179104477612,0.1129943502824858,0.5049330514446794,0.7158385093167702,0.6433333333333333,0.5441176470588235,0.0879765395894428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713011755168,0.0046455486920447,0.0069954920196564,0.0093510189561416,0.0115268790949416,0.0137619818883761,0.0160765472146565,0.0182351258581235,0.0205173313150116,0.0225310570138156,0.0248148376110461,0.0273116799046454,0.0294795783926218,0.0314597012771484,0.0334021683014971,0.0353736993442419,0.0372941773830865,0.0391613184622094,0.0412785312086928,0.0433689700130378,0.0581588602368583,0.0723327116122136,0.0854750246916174,0.0985473353769659,0.1111850443599493,0.1264269225067242,0.1371349036857595,0.1472061739186049,0.156890648405735,0.1663819867435839,0.1772378599402302,0.1877310323147134,0.198638047504903,0.2084437920382096,0.2171823502827349,0.2270886272595124,0.2361336179438751,0.2445916711736073,0.2521500062483669,0.2588153054559206,0.2649997105979047,0.2707821242128426,0.2763597582651973,0.280742598615128,0.2859141223695414,0.2902931306750888,0.293990234130462,0.297519608841805,0.3007634775169481,0.304216390326328,0.301405454888129,0.2983821083451319,0.2967761925552441,0.2942833208157606,0.2922547230013504,0.2899116561787087,0.2867680813005556,0.2857049072706384,0.2857752004093467,0.2866370465535392,0.2872841444270015,0.2880728889938406,0.2889176819711186,0.2898944461764575,0.2909299710505538,0.2929094342551155,0.2933382199543289,0.2985706723133933,0.2995983657641438,0.3044962335216573,0.3064930383454242,0.3105642320029447,0.3130033085710718,0.312471791785768,0.3149591685226429,0.3186953989516599,0.3179626280892104,0.3200239568776203,0.3205818965517241,0.3308550185873606,0.0,1.6293966236975814,51.52850364493662,151.02157042825735,205.2044727464961,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95810,47202,449.4311658490763,5003,50.97588978185993,3919,40.34025675816721,1556,15.896044254253209,77.35864855579545,79.66396164813085,63.35358995694328,65.05451502192007,77.16168839436264,79.46817874503462,63.28032486565671,64.98356608849052,0.1969601614328127,195.78290309623011,0.0732650912865651,70.94893342954833,210.41042,148.0835048398758,219611.71067738236,154559.13065176655,499.16554,334.9019979106038,520378.7182966288,348936.4317071014,451.71185,221.07473568511475,467781.51549942594,227940.77810948336,2267.21392,1069.8475300698956,2334705.563093623,1085209.581547807,917.77094,419.3639313581046,941804.508923912,421836.2578794973,1517.43622,642.1649157799549,1551038.2841039556,643757.0617663995,0.37865,100000,0,956411,9982.35048533556,0,0.0,0,0.0,43319,451.4977559753679,0,0.0,40990,424.0789061684584,1243751,0,44692,0,0,0,0,0,90,0.9393591483143722,0,0.0,0,0.0,0,0.0,0.05003,0.1321272943351379,0.3110133919648211,0.01556,0.3585916570991198,0.6414083429008802,23.7940746461583,4.160892091651236,0.3197244194947691,0.2561878030109721,0.2122990558816024,0.2117887216126563,11.618180068378043,6.271727401342367,16.64537840194143,11473.221180054468,45.08888069558182,12.213233037539576,14.366154326849612,9.33488819797639,9.174605133216238,0.5805052309262567,0.7908366533864541,0.7166799680766162,0.5889423076923077,0.1120481927710843,0.7595486111111112,0.9242053789731052,0.883008356545961,0.7183098591549296,0.1578947368421052,0.5059631369714492,0.6991596638655462,0.6498881431767338,0.5444264943457189,0.1001517450682852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0042236830110707,0.0066202337865101,0.0087470952946309,0.0109219108772072,0.0131529423732261,0.0152283746893207,0.0172696948986565,0.0195329260568416,0.0215123058982385,0.023465666994428,0.0256323466059449,0.0278317152103559,0.0298527429329985,0.0322407695718071,0.0343299767621998,0.0362859419135221,0.0382625822837298,0.0403518976297804,0.042410110137203,0.0570722191506452,0.0718728764831948,0.0855989938161618,0.098330163200538,0.1097622660596863,0.1252892631845895,0.1361713855645187,0.1460631135597366,0.1557536293766012,0.1647763818018095,0.1767232562896298,0.189219885773624,0.1990017290314161,0.208894819740987,0.2176670042714342,0.2275628948243378,0.2362217906649702,0.2431739174457457,0.2502070780996471,0.2572992909751097,0.2635001446340758,0.2688760941815288,0.2741971757631712,0.2781746697672188,0.2830129062051867,0.2878533928175297,0.2913285401688028,0.2962181670309561,0.2997956174165007,0.303064654320174,0.300217812197483,0.2979793123342995,0.2953922684541123,0.2921693258961387,0.290229799851742,0.2869732561513906,0.283815814423867,0.2836153745244654,0.2839192119235825,0.2838897522462176,0.2842399040982992,0.2860105468981454,0.2869235443250152,0.2863866520934175,0.2867117765620501,0.2884114583333333,0.2901482176893972,0.2935154655361909,0.2963416768772974,0.3008081768481103,0.3047278326238565,0.3088850082023601,0.312813126252505,0.3139146285887893,0.3160048358597601,0.3172863970159692,0.3186779866585809,0.3270046455261563,0.3190899001109878,0.3145760062524423,0.0,1.9452714200457493,50.30146675481514,152.83775762291182,195.49295341503725,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95863,47318,448.9740567267872,5130,52.2203561332318,4052,41.70535034371969,1617,16.50271741965096,77.41454581429173,79.70188235449174,63.37712166936033,65.06749736613277,77.20756546195082,79.49789780497345,63.29857471367588,64.9923777021403,0.2069803523409064,203.98454951829592,0.0785469556844447,75.11966399246717,212.03512,149.16604096861693,221185.56690276752,155603.351625358,499.96486,335.2636073268799,520981.473561228,349172.4829463713,454.00401,222.43725696253185,470059.9710002817,229343.0701299872,2336.47652,1105.6757313923554,2406437.436758708,1122608.1443204267,949.65408,434.4275941218331,976467.8655998664,439072.1232252082,1575.07632,673.1966171491335,1608501.3195915003,672425.7539615157,0.3791,100000,0,963796,10053.88940467125,0,0.0,0,0.0,43450,452.67725817051416,0,0.0,41196,426.1811126294817,1236997,0,44402,0,0,0,0,0,82,0.8553873757341206,0,0.0,4,0.0417262134504449,0,0.0,0.0513,0.135320495911369,0.3152046783625731,0.01617,0.3601274124039723,0.6398725875960277,23.593448203157305,4.114836487140237,0.31071076011846,0.2618460019743336,0.2105133267522211,0.2169299111549852,11.27631717421528,6.093438336601053,17.230435279214817,11499.256770675784,46.36807697433077,12.933343618691746,14.313589900994664,9.512708900451484,9.608434554192876,0.5831688055281342,0.7992459943449576,0.7291501191421763,0.5861664712778429,0.1103526734926052,0.7561576354679803,0.9248291571753986,0.8701657458563536,0.748898678414097,0.1578947368421052,0.5088214537755822,0.7106109324758842,0.6722408026755853,0.5271565495207667,0.0972423802612481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002318165713418,0.0049440251253735,0.0073111126884817,0.0096643859257304,0.0117491615001524,0.0138992053236194,0.0163101059494702,0.0185340079154596,0.0207567214186483,0.0229113820472956,0.0253515933092279,0.0276957163958641,0.0297260639937527,0.0318881752305665,0.0337653232707515,0.0357253516762719,0.037668894452606,0.039535317526115,0.0414815429971349,0.0436342833368005,0.057221503941277,0.0710105549169192,0.0841539557492457,0.0967911294048469,0.1083099021683042,0.1232572877059569,0.1338679435163508,0.1449269200106298,0.1556378302249157,0.1650493755756913,0.1766344984884184,0.1873918685121107,0.1974068881571082,0.2073615877248584,0.2162869170486145,0.2251953168226988,0.2339376909524765,0.2424341181097938,0.2497618507598094,0.2567863071727059,0.2624603927191988,0.2681498281465547,0.273246532089261,0.2774669653660465,0.2827433735817886,0.2883935282737545,0.2924335890088715,0.2961818274318274,0.3003044633024551,0.3033182862120852,0.3006190283945633,0.2985591728992521,0.2966839713558153,0.2937315155449758,0.2920850079342716,0.2892670556964345,0.2858607688788629,0.2858801786035557,0.2862930682282446,0.286612886030065,0.2876898704687354,0.2878460207612456,0.2883758691036263,0.2892721582206832,0.2890498040340312,0.2902349410060029,0.2900856101488995,0.2948402948402948,0.2981344841988027,0.3023805770140312,0.3065976131501914,0.3114030478192328,0.3142130720575468,0.3200119518936281,0.3217785172860048,0.3275781614559029,0.3318744340476909,0.3357444243520193,0.3401950162513543,0.3530734632683658,0.0,2.222399974216477,52.933572291154654,149.15539698328203,205.9018806926237,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95706,47688,455.57227342068416,5112,52.27467452406327,4040,41.59613817315529,1544,15.808831212254194,77.36002699221102,79.73149119347299,63.33690834044432,65.08818267680867,77.16513927681497,79.53853067636052,63.26396422409149,65.01826962364854,0.1948877153960495,192.96051711246776,0.0729441163528363,69.91305316013552,211.3386,148.6816630822551,220820.63820450127,155352.49940678236,500.29916,335.3465916824815,522157.0016508891,349803.577291373,455.4886,222.61954104264692,471136.0520761499,229097.7071014896,2290.49864,1072.3227036119515,2359982.404446952,1087151.0914801073,940.45337,424.4367926357682,967424.5815309384,428256.1099991307,1498.92738,637.1292713876878,1535754.121998621,638695.4127394445,0.38115,100000,0,960630,10037.30173656824,0,0.0,0,0.0,43527,454.18260088186736,0,0.0,41311,426.9324807222118,1238434,0,44438,0,0,0,0,0,78,0.8149959250203749,0,0.0,2,0.0208973314107788,0,0.0,0.05112,0.1341204250295159,0.3020344287949921,0.01544,0.3422868867748554,0.6577131132251446,23.894571520432,4.080433388289056,0.3096534653465346,0.275,0.2091584158415841,0.2061881188118811,11.078098592962643,5.921194983497145,16.491670299151373,11589.521441578234,46.465521826962345,13.591775124917255,14.254278903606444,9.450387495396502,9.169080303042142,0.5801980198019802,0.8082808280828083,0.6938449240607514,0.5633136094674556,0.1224489795918367,0.7577796467619848,0.9292035398230089,0.8664772727272727,0.704225352112676,0.1511627906976744,0.5061381971238162,0.7253414264036419,0.6262513904338154,0.5158227848101266,0.1149773071104387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295621436023,0.004521079787935,0.0069208365891032,0.0092139214530973,0.0115138939745311,0.0136043338356889,0.0158817533129459,0.0181061054522443,0.0201073345259391,0.0221441880464382,0.0240931739424634,0.0262514886452301,0.0282485294722553,0.0300960973951735,0.0320360702420503,0.0340143087548074,0.0358533957651348,0.0378216239218657,0.0398044620105049,0.0418251346761,0.0564762889397119,0.070960584430536,0.0844164699711513,0.0969163458909152,0.1092871978155211,0.1256633613125568,0.1370184147997284,0.1484488905443516,0.1587474501511219,0.1682058542759382,0.1796294301411181,0.1909260100846155,0.200971654638727,0.2102904364745362,0.2186544678792144,0.2280031451764732,0.2372437027286316,0.2451343055352545,0.2531259564916736,0.2587424594498689,0.2640370854190028,0.2701259551795854,0.2761857473873362,0.2808067508528338,0.2858131235889593,0.290546528803545,0.2943353294910423,0.2980566493077607,0.3016870273414776,0.3053198777403035,0.3032633687862204,0.3012920962199312,0.2995255459037858,0.2974608585129124,0.2945646688633597,0.2921392973981105,0.2887899737980238,0.2888423737960131,0.288307000817216,0.2887494221811328,0.2898410091811599,0.2908271682669605,0.2917655384871571,0.2927982945082276,0.2934167482509133,0.2934016987777087,0.2945679292356543,0.3000125344697919,0.3026444662095984,0.3074755971748274,0.3125540337625699,0.3159621184064335,0.319827693844425,0.3197797223898612,0.3264397662988036,0.3310312536579656,0.3307680700165987,0.3403445512820512,0.3373362445414847,0.3473122378955394,0.0,2.4321760962896333,51.71014268984405,152.64547043331726,206.8317177682957,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95752,47382,451.11329267273794,5230,53.38791879020804,4199,43.27846937922968,1714,17.482663547497705,77.33346816806463,79.69610845064342,63.32120940122799,65.07056850218864,77.11847250170501,79.48429605273392,63.24057582765237,64.99360612085663,0.2149956663596128,211.81239790949743,0.0806335735756249,76.9623813320095,210.11144,147.7434276582144,219432.9517921297,154298.00699537803,498.08169,333.92694915676043,519609.17787618015,348172.2172912287,454.31634,222.6743914798984,471086.5360514663,229905.60431954067,2414.92812,1132.76134216757,2489587.4759796136,1150576.5622455245,1026.66051,459.83227305090696,1055042.1401119558,463066.7903029777,1670.12576,704.5237733825822,1705637.1250731056,703421.1485783192,0.37858,100000,0,955052,9974.22508146044,0,0.0,0,0.0,43307,451.6981368535383,0,0.0,41119,426.0172111287493,1246824,0,44736,0,0,0,0,0,92,0.9608154398863732,0,0.0,0,0.0,0,0.0,0.0523,0.138147815521158,0.3277246653919694,0.01714,0.3540827535701208,0.6459172464298791,23.405072760149668,4.233337677623552,0.3005477494641581,0.258633007859014,0.2169564181948083,0.2238628244820195,11.5811443255059,6.336860010223957,18.169920434471702,11536.933106319007,47.977592229610366,13.3220138734325,14.328201355168693,10.026485695708866,10.300891305300304,0.56799237913789,0.8047882136279927,0.694136291600634,0.575192096597146,0.1180851063829787,0.7473338802296965,0.9340909090909092,0.8756756756756757,0.7230046948356808,0.1122448979591836,0.4946308724832214,0.7167182662538699,0.6188340807174888,0.5300859598853869,0.1196236559139785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405441005116,0.004583620654687,0.0068103850760205,0.0090024182568229,0.0114419967047049,0.0136851001435713,0.0157199363862496,0.0180033067298075,0.0199399043375168,0.0221510241266006,0.0245635258296341,0.0265386787125917,0.0287629957940417,0.0309368595586039,0.0329117058374429,0.0349043927648578,0.0367804665900406,0.0387261463748715,0.0408587617611893,0.0428284259095312,0.0567977786128857,0.0712738233539514,0.0845714765382355,0.0969258437365249,0.108791023369611,0.1240536310958846,0.1347210728457147,0.1461459863337378,0.1565450506258811,0.1651598511416406,0.1774110143928294,0.1890865415828085,0.200232752901254,0.2092015882912742,0.2181370122226256,0.2278370267007763,0.2361925176675486,0.2434333430867226,0.2512653487369209,0.2572445930319094,0.2635443769875686,0.2689937437876395,0.2744091414511817,0.2800642008432349,0.2843711710400213,0.2890693239835148,0.292914527031248,0.296639231824417,0.2999418115988879,0.3034614623854421,0.3011321567518813,0.2988936988936989,0.2967199966229051,0.2947403385130842,0.2931733467975467,0.2902202886117834,0.2873992685591248,0.2877957536179569,0.2887716962777124,0.2894877648569594,0.2897385058546257,0.2910955527068336,0.2922852072241361,0.2932783413220377,0.2930757230289211,0.2950956376713399,0.2959557258407833,0.3011761016151795,0.3034424735329173,0.3053039591820591,0.3079225431953199,0.311847889412637,0.3144563167818981,0.3159698423577793,0.3171441991545326,0.3175247879584279,0.3226499003220365,0.3285655905190028,0.3278367803242035,0.326915671929149,0.0,2.2423888815830866,53.06133696135226,155.8123685243647,218.86772375537896,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95793,47305,449.1351142567828,5267,53.709561241426826,4149,42.685791237355545,1621,16.546094182247135,77.34149214859087,79.68102006351603,63.33904717832892,65.07255315788207,77.13389399224705,79.47593631003822,63.26184982680882,64.99865106036633,0.2075981563438205,205.08375347780827,0.0771973515200983,73.90209751574162,210.59654,148.1099485252228,219845.4375580679,154614.5840773572,500.91086,335.32494500250533,522183.9069660622,349325.8536662442,453.06909,222.4792025940343,468394.07889929326,228736.6469632697,2389.61504,1123.9941338714864,2461738.9579614378,1140535.0013795237,955.03947,430.20451970300513,984865.3346277912,436980.88555844856,1583.37768,669.1347981399542,1618821.4587704735,670566.1538916937,0.37954,100000,0,957257,9992.974434457632,0,0.0,0,0.0,43588,454.3547023268923,0,0.0,41038,423.9245038781539,1245973,0,44710,0,0,0,0,0,96,0.9917217333208064,0,0.0,1,0.010439176140219,0,0.0,0.05267,0.138773251831164,0.307765331308145,0.01621,0.3517003091471176,0.6482996908528823,23.42006521909278,4.148830677513607,0.3179079296215956,0.2581344902386117,0.2111352133044107,0.212822366835382,11.229951543972428,6.0263261988765375,17.419418248965606,11521.223431289573,47.58969944426058,13.052662234422549,14.95188526483654,9.849274316607012,9.735877628394482,0.5760424198602073,0.7917833800186741,0.7012888551933283,0.5970319634703196,0.1064552661381653,0.7502040816326531,0.9187358916478556,0.8607242339832869,0.782051282051282,0.1058201058201058,0.503077975376197,0.7022292993630573,0.6416666666666667,0.5295950155763239,0.1066282420749279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020462534315264,0.0043692912827063,0.0066264143284793,0.0089115148559118,0.0110800223838836,0.013221827219851,0.0154618146214099,0.0177577632774765,0.0199400775106602,0.02230209197309,0.0245260384090885,0.0267297857920354,0.0289234946822735,0.031028834564391,0.0332046969478094,0.0354436921804744,0.037608466046762,0.0397933567086454,0.0418757858204225,0.043827687438839,0.0582306480389804,0.0718527812630698,0.0848711580579919,0.0974033480102142,0.1092692899445697,0.1249907519949268,0.1359352971729613,0.1460517641053997,0.1548460077262928,0.1650610285371368,0.1771935299878391,0.1883890354100912,0.1996849880512709,0.2087216862072356,0.2177698624715543,0.2272204020189498,0.2352285644237413,0.2430906355941716,0.2514887354239782,0.2580611976636529,0.2647198014659202,0.2696532162991841,0.2753426275992439,0.2803402850066406,0.2843404761038551,0.2892366750332201,0.2932270717265846,0.2976238830219334,0.3005786319487497,0.3028640591493337,0.3001397624039133,0.2973113997748057,0.2950427638982669,0.2925259405711977,0.2904877831547071,0.2873134328358209,0.2841076258719688,0.2845656525877063,0.285777717057176,0.2860636569735268,0.2873978865322641,0.2877619612495057,0.2891720279134097,0.2885548770940974,0.289469250210615,0.2899835710746603,0.2914758415388138,0.2972682433286961,0.3011385667453911,0.3059300799427276,0.3087257554220735,0.3125200128081972,0.3177386680172195,0.3191489361702128,0.3241965973534971,0.3278981194953582,0.3257434944237918,0.3232510288065843,0.3260869565217391,0.3305247031788587,0.0,2.4495631155730746,53.12910723200245,151.53042631375007,218.06281745743016,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95708,47304,450.1400091946337,5060,51.75115977765704,3983,41.08329502235968,1538,15.69356793580474,77.3419109081298,79.71106493511374,63.33255108723839,65.08122774415511,77.13948389839928,79.51059107923128,63.25617774778886,65.0077681013493,0.2024270097305276,200.4738558824641,0.0763733394495247,73.4596428058154,211.2121,148.53189929327232,220683.85087975927,155192.77311538465,497.7856,333.8897732463027,519588.0490659088,348342.3572181038,450.40423,220.5565695367877,467396.7902369708,228004.1256552717,2279.63992,1069.3078053636482,2352702.261044009,1088093.1221670571,907.40252,413.1580427790144,933723.3042169934,417316.9906932651,1490.00582,641.4754306673836,1522040.5608726544,640911.5990285228,0.37795,100000,0,960055,10031.084130898147,0,0.0,0,0.0,43303,451.895348351235,0,0.0,40820,423.2770510302169,1241348,0,44558,0,0,0,0,0,72,0.7522882099719982,0,0.0,0,0.0,0,0.0,0.0506,0.1338801428760418,0.3039525691699605,0.01538,0.3558108871727256,0.6441891128272744,23.79608648388098,4.149197295772481,0.3068039166457444,0.2638714536781321,0.2244539291990961,0.2048707004770273,11.350705435758506,6.131660552346879,16.554357299370864,11488.29910382089,45.62413292624423,12.795859975617477,13.79826601919222,10.028015933871908,9.001990997562617,0.5676625659050967,0.7878211227402474,0.6914893617021277,0.5715883668903803,0.0943627450980392,0.7394305435720449,0.9195402298850576,0.8498498498498499,0.729064039408867,0.1382978723404255,0.4971671388101983,0.6948051948051948,0.6321709786276716,0.5253256150506512,0.0812101910828025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.004773487382183,0.0070298234936092,0.0094052165434305,0.0114999796640501,0.0134601286959354,0.0156070012334729,0.0175655262513268,0.0198793949304987,0.0222194929738913,0.0244592516658124,0.0267586688435038,0.0288346838879519,0.0308971400313195,0.0328349276125024,0.0348046309696092,0.0370332014664153,0.0392893464228637,0.0412897456693077,0.0432159233013755,0.0574818280558108,0.07172315615383,0.084734025810513,0.0977438864054693,0.109692935728526,0.1252711209860868,0.136652486181984,0.147568908430836,0.1568629545745908,0.1661195150734899,0.1783187032150358,0.1894635455558802,0.1999369112624273,0.2084217202090668,0.2167476849306029,0.2260706892925536,0.234779214986619,0.2420444454436114,0.2499517971169005,0.256757066025861,0.2632455501197044,0.269330213512723,0.2744332434095319,0.2788187372708757,0.2836183443451224,0.2877252668688213,0.2913285241959723,0.2949645777953016,0.2980081021963941,0.3015519603709949,0.2992263706693575,0.2974769602659012,0.2946258006517586,0.2918041289095702,0.2904482564512784,0.2866759269152687,0.2840107888137037,0.28366659030664,0.2833969465648855,0.2837009585575312,0.2849611127729584,0.2849142181029382,0.2857142857142857,0.2868795673452969,0.2881710099675753,0.2890177921132036,0.290878580164396,0.2944754499278861,0.2976791473846585,0.3013453982616978,0.3060650081714182,0.3099904650916411,0.3141656737944441,0.3182129017551858,0.3189452941728441,0.3209847319209374,0.3243531202435312,0.3319053447572419,0.3345383759733036,0.3256792958285495,0.0,2.015255882520334,50.67149859735438,149.5397513936742,205.80965079162357,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95703,47463,452.410060290691,5220,53.2585185417385,4141,42.6318924171656,1564,15.913816703760592,77.33810060160408,79.71962899768135,63.31256206328344,65.07445484110954,77.13611592751603,79.52203635338283,63.236735815371816,65.00295564191471,0.2019846740880524,197.59264429852408,0.0758262479116211,71.49919919483239,211.01366,148.47094237196256,220488.03067824413,155137.1873107035,498.89477,332.9612825894635,520623.4600796213,347240.06441358646,455.1611,222.61903595473237,471065.0867788888,229172.95779632853,2372.61212,1111.9820772155465,2444463.977095807,1127247.5102061538,953.86393,430.73724814318814,979351.3682956648,432854.8355037729,1532.09262,650.3906732134319,1561232.228874748,647182.5755182315,0.3814,100000,0,959153,10022.183212647462,0,0.0,0,0.0,43385,452.65038713519954,0,0.0,41274,426.81002685391263,1241906,0,44618,0,0,0,0,0,79,0.8254704659206086,0,0.0,1,0.0104489932395013,0,0.0,0.0522,0.1368641845831148,0.2996168582375479,0.01564,0.3493887976646597,0.6506112023353403,23.641125115891988,4.172566252957227,0.3033083796184496,0.2748128471383724,0.2113016179666747,0.2105771552765032,11.44362506884779,6.081982391912893,16.697453703773572,11570.151434710077,47.33092105380794,13.91316050632054,14.324416044789585,9.56627400312367,9.527070499574153,0.5829509780246317,0.8101933216168717,0.7085987261146497,0.5794285714285714,0.1089449541284403,0.7545605306799337,0.9067796610169492,0.8967551622418879,0.7342995169082126,0.1382978723404255,0.5124361158432709,0.7417417417417418,0.6390403489640131,0.531437125748503,0.1008771929824561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021588858932517,0.0043416514505984,0.0068735151379779,0.0091265727585015,0.0112737965629165,0.0133633465405025,0.0155437243742733,0.0174757678204827,0.0195837807434678,0.0218297240567245,0.0240158328120673,0.0263795617439878,0.0284095582791807,0.0303279954688224,0.0324647189898489,0.0345055649136585,0.0365699612764283,0.0384284187701661,0.0405148304864482,0.0425139594966247,0.0568987665667526,0.0710195450310396,0.0842707240293809,0.0970517391898856,0.1090216841039487,0.1249801643974737,0.1359396389799751,0.145916530888257,0.1556030566985518,0.1659299156670457,0.1781996853651703,0.1896002944742768,0.2002351097178683,0.2096595944896105,0.2185463990139109,0.2275850604011969,0.2363248531415425,0.2442263539368838,0.2521062790961735,0.2595495960116898,0.2659542444310656,0.2726942883895131,0.2785802235271832,0.2834305983295186,0.2869430001457796,0.2910216718266253,0.2948764512129447,0.2986298578923241,0.3015498957672437,0.3054526274147821,0.3040046258942499,0.3007545665709141,0.2981878552535314,0.2943595515345656,0.2918156329273539,0.2879763780732218,0.285445697854457,0.285845287220803,0.2869999488656701,0.2879240984015095,0.2892322639711515,0.2893757018183251,0.2905538140020898,0.2913904328221612,0.2921875748431288,0.2957440760743172,0.296951374565592,0.3003776175763817,0.3054444251174117,0.3085958984835389,0.3124971934078764,0.3155550898517315,0.3163119687286715,0.319880418535127,0.3234481488303555,0.3239026662009547,0.3224794622852875,0.3285827395091053,0.3370937416062315,0.3343305908750935,0.0,2.447351378234084,52.4483000814913,152.5329381185243,215.9982950344248,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95661,47600,454.2708104661252,5155,52.93693354658638,4100,42.38927044459079,1590,16.359854068010996,77.27782633283482,79.68580216105505,63.2892740309558,65.07098387333106,77.07626877361172,79.48450309017294,63.21437031963615,64.99785484772221,0.2015575592231044,201.29907088211496,0.0749037113196493,73.12902560884993,210.41658,148.05876583290393,219960.6736287515,154774.42827579047,499.68335,334.4589322178045,521877.6303822874,349158.949015591,455.39222,223.00729413494736,472319.074649021,230369.1339470505,2355.61772,1095.0881617194732,2438653.955112324,1120949.1869408365,948.57327,425.62657088878376,980826.1778572252,434159.61665546393,1552.50732,659.0901522308714,1599294.3832909963,668858.4250334173,0.38094,100000,0,956439,9998.212437670523,0,0.0,0,0.0,43413,453.3404417683277,0,0.0,41218,427.1855824212584,1241253,0,44616,0,0,0,0,0,90,0.9408222786715588,0,0.0,1,0.0104535808741284,0,0.0,0.05155,0.13532314800231,0.3084384093113482,0.0159,0.3500186081131373,0.6499813918868627,23.888491511035443,4.116637199254311,0.3214634146341463,0.2595121951219512,0.2029268292682927,0.2160975609756097,10.948621026821083,5.7217465547417055,17.130864259745294,11596.119248654675,46.73390121531468,12.910358293434678,14.831091870833616,9.331197065799593,9.661253985246796,0.5717073170731707,0.8110902255639098,0.6790591805766313,0.5865384615384616,0.110609480812641,0.7517123287671232,0.9390519187358916,0.8511904761904762,0.7317073170731707,0.1413043478260869,0.5,0.7198067632850241,0.620162932790224,0.5390749601275917,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0045331007626156,0.0068320711428745,0.009085642854965,0.0112416704817132,0.0132027994824828,0.0152983171851096,0.0175574780148508,0.0196088459728728,0.0217883447209104,0.0240410256410256,0.026203071234143,0.0281010443998559,0.0302183928184938,0.0321594862741454,0.0343372497104087,0.0364325903820448,0.0383337486502201,0.0404977940564388,0.0424546990011885,0.0568535662786566,0.0713881791144808,0.0854551942735993,0.0978943713104145,0.1100148782829828,0.1254935168033871,0.1364843053136813,0.1476861124131759,0.1578474569020832,0.1677867479709709,0.1798090599543123,0.191074251315476,0.2017762491973138,0.2115174194677871,0.220002421600678,0.2292504570383912,0.2379049362595164,0.2458850398838923,0.2531287939818229,0.2604600595101854,0.2665317919075144,0.2722651959524199,0.2774539133725124,0.2824198861934711,0.286850702583223,0.2904112628827851,0.2938975244674726,0.2979086098107062,0.3014443940669732,0.3047160477541059,0.3022622849212444,0.2997243660418963,0.2981773037638959,0.295552180516381,0.2927145025445671,0.2895386455282808,0.2868466526102189,0.2857847651624786,0.2864622544658134,0.2861942632472523,0.2882410252566889,0.2901669171742742,0.2913735343383584,0.2919996428411983,0.2935907595514252,0.295817846281808,0.2976810357092047,0.3019449864669226,0.3069767441860465,0.3102268205332272,0.3129416055066782,0.3149952345652864,0.3175281040005024,0.3213904558621741,0.3250727494602459,0.327069457659372,0.3291896869244936,0.3279492946227765,0.3320366768546818,0.3343523118074131,0.0,1.863097382856237,51.07033200074088,151.13432625331197,218.3797826159468,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95816,47858,457.2305251732488,5198,53.070468397762376,4098,42.164147950237954,1578,16.072472238457042,77.39792083527668,79.70061633529444,63.37134666233783,65.07111578229613,77.19554223080709,79.504259165055,63.29465557597062,64.99960029701946,0.2023786044695867,196.35717023943755,0.0766910863672052,71.51548527667728,210.36202,147.99871073920133,219547.90431660684,154461.37465475634,501.40514,337.1939121453973,522698.6515821992,351316.8073655729,460.02052,225.61249658295495,476723.19863070885,232844.9008647269,2369.09408,1106.6220907145132,2439758.829423061,1122281.6346600463,955.64163,426.8998493356624,982632.6813893296,430830.0301936207,1548.38836,659.8810618426153,1579404.6297069383,655969.0910511202,0.38205,100000,0,956191,9979.450196209402,0,0.0,0,0.0,43525,453.6194372547382,0,0.0,41653,431.27452617516906,1243130,0,44470,0,0,0,0,0,91,0.9497369959088252,0,0.0,0,0.0,0,0.0,0.05198,0.1360554901190943,0.3035782993459022,0.01578,0.3586715867158672,0.6413284132841328,23.568576678592542,4.144207813461192,0.3177159590043923,0.2613469985358712,0.2030258662762323,0.2179111761835041,10.904702668907786,5.63608020587861,16.874103099267717,11514.41680045796,46.729590231740985,12.977658637303776,14.70547264192076,9.253002513813575,9.793456438702876,0.5690580771107857,0.8020541549953315,0.6712749615975423,0.6081730769230769,0.1041433370660694,0.7322635135135135,0.9211136890951276,0.8104395604395604,0.755,0.1269841269841269,0.502745367192862,0.721875,0.6172707889125799,0.5617088607594937,0.0980113636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020956507653681,0.0044381846001074,0.0065824838987778,0.008691855447133,0.0107148666232921,0.0128737457002707,0.0149273501660858,0.0170772762050497,0.0191981527269755,0.0213930551861021,0.0235641251562403,0.0255655296229802,0.0276056916833615,0.0293999608960968,0.0313434066500381,0.0332042744308502,0.0353082358296349,0.0373425921127636,0.0394080996884735,0.0413392587658586,0.0564045858065323,0.0710191615764371,0.0855581887963759,0.0987719224460613,0.1111954459203036,0.1270564601395644,0.1377302662976042,0.1477081603542611,0.1575010951673736,0.1664842945417095,0.1780932582212216,0.1889549978364344,0.1996281638688353,0.2082485949834897,0.2169523956145463,0.2269768162795332,0.2363435656701939,0.243850892576105,0.2512100293580893,0.256791846352707,0.2630623967085418,0.2683049323164251,0.2735825640904417,0.2785965499916262,0.2832509330618971,0.2878445160179972,0.292715496262277,0.2968813438895655,0.3002351238922047,0.3043003682272488,0.3018771788683293,0.2988776670823455,0.2959495873800034,0.2945723045036487,0.2926749848289744,0.2907472875777154,0.2870128233403698,0.2871591261866248,0.2875514578300956,0.2880143749221655,0.2879610455028824,0.288770369204125,0.2903245994659546,0.2913896944010707,0.292012871619999,0.2930622009569378,0.2949814656401482,0.299990557426584,0.3029177904655154,0.3070074783365647,0.3098174866869965,0.3139868309260832,0.3175092866586916,0.3200091192339843,0.3220498354489892,0.3268074065337893,0.3276887871853547,0.3315271924543447,0.3350515463917525,0.3330807123910572,0.0,2.351467050734614,51.430636742961056,148.66502447048623,217.8530123645505,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95569,47032,449.5076855465685,5043,51.73225627557053,3939,40.79774822379642,1477,15.151356611453505,77.19945181010942,79.67195069359404,63.224607941291474,65.054372233554,77.01138571961617,79.48241461582053,63.15439274167656,64.9853397446167,0.1880660904932511,189.53607777351067,0.070215199614914,69.03248893731018,208.92278,147.0620541800181,218609.36077598383,153880.4990949137,497.09557,333.01408106895474,519756.1970931997,348067.1672497932,448.88733,219.0735615826381,467228.7247956974,227329.13639885196,2251.93752,1055.469409670458,2334182.381316117,1082240.736714267,916.04725,413.5035832583329,949564.8588977596,423721.0531221761,1432.21548,605.1973141909681,1471347.6336468938,612049.8610720778,0.37735,100000,0,949649,9936.789126181084,0,0.0,0,0.0,43291,452.563069614624,0,0.0,40726,423.6206301206458,1245086,0,44681,0,0,0,0,0,73,0.7638460170138852,0,0.0,0,0.0,0,0.0,0.05043,0.1336425069564065,0.2928812214951418,0.01477,0.3566818526955201,0.6433181473044799,23.576381646549617,4.117741259588914,0.3241939578573242,0.2670728611322671,0.2074130489972074,0.2013201320132013,11.7293235957308,6.410886117990734,15.75393081221571,11445.899996901206,45.28853583118314,12.921529843121192,14.54699564879084,9.165722291773225,8.65428804749788,0.594059405940594,0.80893536121673,0.7086922474549726,0.591187270501836,0.1273644388398487,0.7793345008756567,0.9328703703703703,0.8753623188405797,0.7572815533980582,0.1823899371069182,0.5184125849124062,0.7225806451612903,0.6469957081545065,0.5351882160392799,0.113564668769716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002148989873392,0.0043322984517359,0.0064485335933057,0.008601756954612,0.0109846479618845,0.0129564313237782,0.0153696994437924,0.0175045984058859,0.0196582071223905,0.0216644974840898,0.0236201073734563,0.0256444531274099,0.0274556651768243,0.0295843949537357,0.0314156685646966,0.0332381011531374,0.0354583450006741,0.0378407591016327,0.0398004249822924,0.0417053794197784,0.056588182379214,0.0698137740122473,0.0827114297126279,0.0961216297373328,0.1084431574386235,0.1245150210952572,0.1357544038805208,0.1461881589618816,0.1561863952865559,0.1648332741916406,0.17634417891429,0.1870042212407626,0.1973711480774475,0.2065678779436443,0.2161318089520614,0.2257752799004798,0.2342739499183207,0.2421613205311911,0.2499061401413017,0.255838787461247,0.2619831644366115,0.2676850570939529,0.2738506053814318,0.2787302502041012,0.2826102833771545,0.2873463842401037,0.2911767289520248,0.294913309535951,0.2980371297725769,0.3020206959440707,0.2994064481316606,0.2962105872143477,0.2947932079193969,0.2929850681545511,0.2901738574339297,0.2877373672352752,0.2846598558644175,0.2848012880542823,0.2850201043716314,0.2862787870118724,0.2879521236680174,0.2884178053748343,0.2891561208000168,0.2891369513668292,0.290404891435174,0.2916438391902116,0.2928546989051095,0.2976773383553044,0.3010560291899098,0.3053230137419049,0.3104038946988821,0.3141402477430191,0.3187667060359296,0.3213935600633436,0.3239632618981353,0.3312551464533584,0.3297150610583446,0.3319444444444444,0.3331529093369418,0.3273967411898446,0.0,1.6584923680078747,50.41391659334792,148.4872949420273,205.35182552043952,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95687,47408,451.242070500695,5138,52.47316772393325,4061,41.90746914418887,1558,15.90602694200884,77.33990302576841,79.7319929973905,63.32261558699434,65.08981798161508,77.14573272932213,79.54120720255983,63.24918825096304,65.02006449339753,0.1941702964462734,190.78579483067412,0.0734273360313011,69.75348821755745,211.46906,148.71429775111218,221000.5956922048,155417.22256013064,498.12566,334.60466947214525,520006.74072758056,349115.1979601673,453.78676,222.654425666387,471561.7795520813,230496.73689676495,2313.76656,1100.7950223985256,2385926.614900666,1118281.545453955,938.6893,427.900461174764,967743.486576024,433941.5665396166,1510.73386,647.5298447368071,1541681.1270078486,643516.3800448118,0.38101,100000,0,961223,10045.481622372943,0,0.0,0,0.0,43333,452.276693803756,0,0.0,41196,427.8951163689948,1238202,0,44469,0,0,0,0,0,82,0.8465099752317452,0,0.0,1,0.0104507404349598,0,0.0,0.05138,0.1348521036193276,0.3032308291163877,0.01558,0.3346339650687476,0.6653660349312523,23.799644782765217,4.128159034806114,0.3245506032996799,0.2588032504309283,0.212262989411475,0.2043831568579167,11.63178052770846,6.450300539119472,16.76489141351983,11585.36710953637,46.72248025344776,12.87452803930188,15.117792615286,9.644277027917846,9.085882570942038,0.5732578182713617,0.7925784966698383,0.6858877086494689,0.5881670533642691,0.1012048192771084,0.7402390438247012,0.9103448275862068,0.8313253012048193,0.7557603686635944,0.1276595744680851,0.4985744832501781,0.7094155844155844,0.6190476190476191,0.5317829457364341,0.0934579439252336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0047742131670974,0.0070724802386581,0.0092227684556941,0.0113988794321914,0.0134163969136179,0.015696986993925,0.018188127704744,0.0202097644749754,0.0221805973510204,0.0242862268696499,0.0264530168962614,0.0286689700559394,0.0306326349834167,0.0328506703270618,0.0349048800661703,0.0371513820396999,0.0392563913598571,0.0410286284953395,0.0433350360169712,0.0574556546810688,0.0715699104852641,0.0844043434926297,0.0975530213768725,0.1099319584366264,0.1257206935584542,0.1370117332541215,0.1482746876130872,0.1582741496235382,0.1674993567201303,0.1792279114844128,0.1904308497976672,0.2009199451947543,0.210090740133377,0.2190612447036813,0.2285508610665042,0.2373153643625329,0.2456436389816971,0.2526968930430935,0.259670216420474,0.2652449954319945,0.2711822804044182,0.276620151371807,0.280487512870244,0.2857298844996603,0.2903253603830955,0.2945493186648331,0.2984839435259432,0.3014001759925462,0.3044928854953779,0.3016968767241263,0.2994694303936661,0.2967810947374347,0.2950223107914915,0.2921633537698737,0.2894330802487053,0.2870380602080604,0.2873868120711958,0.2876493210359732,0.2879181032950627,0.2891330299186749,0.289092626111592,0.2902708333333333,0.2908329248183965,0.2915328187179364,0.2918343502531481,0.2926967727285629,0.2974023125372105,0.3015972877564573,0.3065842811602188,0.3101348608542691,0.3131227922180629,0.3144854271984023,0.3203531808920081,0.3255576208178438,0.3289134006101854,0.3320158102766798,0.332792865828942,0.3383894098179812,0.3423457730388423,0.0,2.014852765298868,54.82768175610544,148.34163205022804,204.6565690831052,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95782,47831,454.8244972959429,5170,52.81785721743125,4047,41.62577519784511,1560,15.963333402935834,77.331780499572,79.67172805952869,63.32970022966426,65.0624293278628,77.13169353902909,79.47427126538784,63.25394045974856,64.990080034742,0.2000869605429187,197.45679414084805,0.0757597699157059,72.34929312080851,212.10376,149.23304774197857,221444.27971852748,155804.89835457454,505.03321,338.52349789622764,526623.5722787163,352781.18842394976,461.13294,225.68057353640063,476970.2240504479,232255.01252951988,2312.1516,1091.5396525372137,2380229.145350901,1105864.4970215836,946.63114,426.5158633044931,976248.2303564344,433231.8719430371,1522.77412,652.9711192777437,1558510.6178613934,654404.8451550613,0.38164,100000,0,964108,10065.649078114886,0,0.0,0,0.0,43893,457.5807563007663,0,0.0,41723,431.1874882545781,1231949,0,44239,0,0,0,0,0,97,1.0127163767722538,0,0.0,0,0.0,0,0.0,0.0517,0.1354679802955665,0.3017408123791102,0.0156,0.3548863846295954,0.6451136153704046,23.646362544983777,4.080447031922644,0.3076352853965901,0.2678527304175933,0.2115147022485791,0.2129972819372374,11.184586592812815,6.020642405470603,16.78266883888778,11619.130912787936,46.37621571912914,13.272475875211027,14.110647285662328,9.578638683747462,9.414453874508329,0.5767234988880652,0.801660516605166,0.6843373493975904,0.5922897196261683,0.1229698375870069,0.7568922305764411,0.9406593406593406,0.8629737609329446,0.705607476635514,0.1675675675675675,0.5010526315789474,0.7011128775834659,0.6164079822616408,0.5545171339563862,0.1107828655834564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777665231704,0.0045922711974372,0.0070118826549768,0.0094782396684139,0.0117569285532672,0.0139614456359026,0.0159866234375318,0.0183041365511045,0.0205884156938112,0.0229717971029328,0.0251263493495443,0.026880781986385,0.0290273821887242,0.0312319736299958,0.0332741609214383,0.0350046521244701,0.0375847962301279,0.0397253453926897,0.0415887267739119,0.0436711233287517,0.0577081615828524,0.0719979079497908,0.0857085949702808,0.0982870954182429,0.1102341461358511,0.1251426639049752,0.1365549113341742,0.1470697704095196,0.1572718347135661,0.1670309185575625,0.1790969269684086,0.1907785156503493,0.2021203718806067,0.2114236346536602,0.2195138055882644,0.2289497008641701,0.2371436541143654,0.2458863357739762,0.2533310653739298,0.2596052571323899,0.2665487298669164,0.2719293119367921,0.2777258585404517,0.2818303817489036,0.2864291092812553,0.2915357023998817,0.2946824224519941,0.2983354347355417,0.3015677636693444,0.3049429155942718,0.3026698245236301,0.3009864805451747,0.2990109874650047,0.2954250064985703,0.2938477983313043,0.2911531925967883,0.2878984520907853,0.2877999967191063,0.2883732049246111,0.2888164457745475,0.2895864120166856,0.290471967681545,0.2913919758899981,0.2926078028747433,0.2933173076923077,0.2927927927927928,0.2926045929968167,0.2973015276734285,0.3034213371464443,0.3067499209611128,0.3109476456431912,0.3128379094667656,0.3173010162216751,0.3216512087577923,0.3218638664916557,0.3233207190160833,0.3265306122448979,0.3312537733950493,0.3350814242340602,0.3350393700787402,0.0,2.4018894636106287,51.737961167831486,150.0444298488216,209.24213998564,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95681,47243,449.4727270827019,5216,53.18715314430242,4137,42.59988921520469,1618,16.481851151221246,77.34192318165195,79.71780311534609,63.32298576779221,65.07522763345419,77.13371098956128,79.51394119097849,63.24358446521503,65.00015973592575,0.2082121920906701,203.86192436760095,0.0794013025771818,75.06789752844156,211.35048,148.6733755254427,220890.7515598708,155384.4290145825,499.31029,334.4792040064736,521187.8324850284,348917.92472934385,453.66742,222.26250495925703,470259.81124779215,229278.47674748203,2374.06972,1113.4028163606604,2446596.7956020525,1129162.8637632506,982.75888,447.8615098668751,1008118.9055298334,449076.49362660816,1578.1916,678.5235008873155,1609596.053552952,674954.1245216917,0.37915,100000,0,960684,10040.488707266855,0,0.0,0,0.0,43485,453.7996049372394,0,0.0,41121,425.9257323815596,1236505,0,44367,0,0,0,0,0,82,0.8570144542803692,0,0.0,1,0.0104513957839069,0,0.0,0.05216,0.1375708822365818,0.3101993865030675,0.01618,0.3455976569650375,0.6544023430349625,23.664675217013805,4.151084138905864,0.3185883490452018,0.2627507855934252,0.2037708484408992,0.2148900169204737,11.020034515595734,5.763969915308021,17.393654321229064,11519.811874930185,47.16660415292817,13.207027249741431,14.893646655051649,9.305541084013818,9.760389164121271,0.571912013536379,0.8068077276908924,0.6767830045523521,0.5848161328588375,0.1169853768278965,0.7395744680851064,0.9244851258581236,0.8450704225352113,0.7471264367816092,0.1674641148325359,0.5054017555705604,0.7276923076923076,0.6147455867082036,0.5426008968609866,0.1014705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024908113362291,0.004844872847427,0.0074053785365754,0.009679647348,0.0119695321001088,0.0140498055425464,0.0160879228432192,0.018420757048186,0.0205427624851732,0.0227102851584498,0.0247926257831004,0.0270586664749797,0.0290974543584469,0.0310758039421759,0.0332903225806451,0.0355624954758383,0.0375392328489004,0.0395362354943845,0.0414422096965411,0.0434012400354295,0.0581095338075689,0.0720717890724801,0.0851657867391601,0.0979280009260331,0.1104932148660912,0.125437863122136,0.1362453946041217,0.1458109187749667,0.1555203968186094,0.1641744581727621,0.1756162256582778,0.187130385806815,0.1975985979121082,0.2066693662241581,0.2157764959711153,0.2257985884125735,0.2340180864128614,0.2429079610951008,0.2505019795578042,0.2568754796513293,0.2626572390728247,0.2689935995694043,0.2743932757191902,0.2790934708315846,0.2834799727785339,0.2872690520503371,0.2914381589161846,0.2956167695146001,0.2998911324814018,0.3034933632701578,0.301943541534602,0.2988099998621089,0.2964473164399797,0.2940692046521708,0.2916147409649279,0.2890601112945637,0.2866034755134281,0.2870986783852031,0.2876258747226489,0.2881564186121053,0.2888403034719886,0.2888296822577462,0.2903596581053687,0.2897838899803536,0.2914670371789958,0.2915424690910033,0.2926567096628196,0.2978099457166032,0.303112502173535,0.3071021050560693,0.3117485477552123,0.3145576943304933,0.3158389766741911,0.3184823441021788,0.3208105857314703,0.3275762142111974,0.3341764618360363,0.3336618052818289,0.3310829057520928,0.3367684946632315,0.0,2.463629863620948,50.769104946700274,155.8786559619823,216.3489753008363,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95735,47491,452.4050765132919,5266,53.67942758656709,4220,43.47417349976498,1632,16.608345954979892,77.32392886815877,79.68834975105277,63.31606620966248,65.06528261835096,77.12133172353572,79.49052342136146,63.23952911899059,64.99345931315108,0.2025971446230556,197.8263296913099,0.0765370906718914,71.82330519988511,210.68982,148.19931182764378,220076.0641353737,154801.60007065732,506.05103,339.35756436892086,527993.0850786023,353873.4155417776,457.771,224.0788395752301,474850.9009244268,231456.43336556025,2427.02276,1122.480217831312,2500771.2122003445,1138217.034941996,960.02967,429.70727398145976,987954.1651433646,434052.5313623762,1579.2351,667.0958084460564,1608728.1349558677,661821.6383649266,0.38113,100000,0,957681,10003.457460698804,0,0.0,0,0.0,44060,459.5915809265159,0,0.0,41520,430.3128427429885,1235407,0,44413,0,0,0,0,0,73,0.7625215438449888,0,0.0,2,0.0208910012012325,0,0.0,0.05266,0.1381680791331042,0.3099126471705279,0.01632,0.3446337926033357,0.6553662073966643,23.590683312133063,4.1787401044651045,0.3170616113744076,0.2623222748815166,0.2149289099526066,0.2056872037914691,11.489367168685948,6.247923590130728,17.393697303759332,11584.179346724704,47.89996258454656,13.405372229051844,15.123195437312347,9.93578695178776,9.43560796639461,0.5765402843601896,0.8048780487804879,0.6980568011958147,0.5667034178610805,0.108294930875576,0.7512820512820513,0.9248291571753986,0.8679775280898876,0.7064676616915423,0.1264367816091954,0.5095081967213114,0.7260479041916168,0.6364562118126272,0.5269121813031161,0.1037463976945245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024917195903856,0.0046842206653215,0.0068707248259484,0.0089516145420553,0.0113012165846116,0.0136048879837067,0.0158330444711783,0.018220421162228,0.0202946559110102,0.0224941128289136,0.0246162994555912,0.0267459290745189,0.0288070074433523,0.0309113757158749,0.033093243075907,0.0352687016114861,0.0373922770964534,0.0391086385668469,0.040981646129049,0.0429346863507079,0.057913364863595,0.0720959186449189,0.0853397651006711,0.0977443609022556,0.1102405382319754,0.125374207948547,0.1364480427839263,0.1461186242146736,0.1564295938641656,0.1653425964641429,0.1777383066903493,0.1893850096785007,0.1992238033635187,0.2079283691742557,0.2172516934987244,0.2276628021570386,0.2362163428813729,0.2448552493896058,0.2516403678056533,0.2588278455470971,0.2653434831473693,0.2710903361098419,0.2769263592077658,0.2817242744538158,0.2869133639880301,0.2919970894022174,0.2956791902083359,0.2991210191082802,0.3030471919432815,0.3060989947292638,0.3031001482679606,0.3001899936668777,0.2982577316681232,0.2954239861201475,0.2937392286206691,0.2907867573973545,0.2867525080970061,0.2870640248894711,0.2879157220053526,0.288767386774475,0.2894191065189365,0.2897067234680394,0.2904283536266995,0.2909581225344892,0.2912861081145871,0.2916125344281037,0.2925445934832544,0.2959183673469387,0.3008212831672048,0.3067700708265738,0.3109609541517391,0.3166912695065373,0.32007007007007,0.3260278113663845,0.328711943793911,0.3308545797922568,0.3326821938392186,0.3307225376933621,0.3350026357406431,0.3410794602698651,0.0,2.356863751073316,50.76891873289809,154.60515883836138,229.14319796084547,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95780,47512,452.1820839423679,5147,52.43265817498434,4094,42.01294633535185,1660,16.85111714345375,77.4066300966336,79.74492466961726,63.35719594835807,65.08726651412036,77.19723113669296,79.5421232876842,63.27877691596387,65.0147359435659,0.2093989599406427,202.80138193305677,0.0784190323942013,72.53057055446277,210.04104,147.77228736087477,219295.30173313845,154283.03128093,500.28009,335.9162979813396,521601.0440593026,349995.4979968048,459.16968,224.7782512123161,474736.4167884736,231069.08038265887,2353.08644,1101.4035540215111,2416754.729588641,1109998.146171698,981.207,438.8341262715063,1003651.3990394656,437390.57522451767,1612.24624,676.702539406747,1638164.627270829,667385.1875046114,0.38027,100000,0,954732,9967.9682605972,0,0.0,0,0.0,43390,452.2551680935477,0,0.0,41585,429.5155564836082,1245729,0,44743,0,0,0,0,0,94,0.9709751513885988,0,0.0,0,0.0,0,0.0,0.05147,0.1353511978331185,0.3225179716339615,0.0166,0.3609765188222139,0.6390234811777861,23.81330695613017,4.247942672725627,0.3136297020029311,0.2586712261846605,0.2100635075720566,0.2176355642403517,11.593691357455691,6.2739606479417525,17.477686521750556,11574.857452901138,46.73187762439719,12.768523141736344,14.632979861089996,9.665120038116244,9.6652545834546,0.5852467024914509,0.789423984891407,0.7118380062305296,0.6174418604651163,0.1290684624017957,0.7443609022556391,0.9026128266033254,0.8509485094850948,0.7521739130434782,0.135593220338983,0.5195029340697273,0.7147335423197492,0.6557377049180327,0.5682539682539682,0.1274509803921568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024114941131173,0.0049786051793717,0.007306603342771,0.0095404529429096,0.0120625298766285,0.0144498075395613,0.0166391386798801,0.0186188945031388,0.0207492206265651,0.022893107506524,0.0249761716868395,0.0270996870350418,0.0292712005508905,0.0310077519379844,0.0331622134256968,0.035119422558627,0.0370991102834678,0.039020546951131,0.0411220779220779,0.0430921395106715,0.0577426726071849,0.0712799221944511,0.0848173575808395,0.097667868290786,0.1098572256466993,0.1250779359392997,0.136575644504749,0.1478197071676927,0.1579879636348115,0.1675860960848374,0.1795958769985582,0.1911228847921284,0.2016604003216482,0.2111073499383046,0.2197517301988355,0.2296875691463468,0.2376168067976538,0.2453158894471232,0.2532654542156107,0.2597042936922091,0.2665741864632102,0.2727347062740196,0.2783998864832267,0.28277628806742,0.2871571995678195,0.2914033726272741,0.2951371508659525,0.2984091458219413,0.3020426126802495,0.3044355902686158,0.3017546694676739,0.3,0.2965455108533461,0.293991973900742,0.2910012899782038,0.2881863306605575,0.2849417440522175,0.2844102614347066,0.2848494098494099,0.2846543419747839,0.2851769087523277,0.2861375453742765,0.285779635289959,0.2850609417667562,0.2860652023562519,0.2859651841520739,0.285028655317467,0.2887733823025927,0.2930350681881436,0.2953840109998035,0.2971413112093065,0.3001836788244555,0.305301758965753,0.3060002992667963,0.3057090239410681,0.3074164063403911,0.3119891008174387,0.3138224243622701,0.3197278911564626,0.3203809523809524,0.0,2.854694636532943,51.509858052530745,150.3866837570828,212.69605778343964,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95700,47525,453.5736677115987,5068,51.901776384535005,3997,41.30616509926855,1494,15.370950888192269,77.29491858535671,79.69810215102541,63.29396199958445,65.07446993592174,77.11645340565975,79.51944662571485,63.228016119019166,65.01012007692842,0.1784651796969569,178.6555253105604,0.0659458805652875,64.34985899332446,210.74834,148.2997094631101,220217.7011494253,154963.12378590397,500.76964,335.3276186918058,522813.4169278997,349937.7415797344,451.97878,220.7722798292976,469094.9843260188,228245.22435978503,2274.07832,1049.2740123185724,2352044.597701149,1072207.2855993444,943.73644,415.20661299038215,975215.2142110764,422947.526387109,1459.44052,602.2913588155242,1502907.5862068965,609881.8070439757,0.38062,100000,0,957947,10009.895506792058,0,0.0,0,0.0,43594,455.0574712643678,0,0.0,40927,424.503657262278,1241403,0,44537,0,0,0,0,0,74,0.7628004179728317,0,0.0,0,0.0,0,0.0,0.05068,0.1331511743996637,0.2947908445146014,0.01494,0.3452583759227711,0.6547416240772288,23.73653405908756,4.189232942346757,0.315986990242682,0.2626970227670753,0.2139104328246184,0.2074055541656242,11.631639623629558,6.275589446587373,15.65922322457457,11564.275773581126,45.34093775505696,12.641552766184772,14.194877418861031,9.504369089926485,9.000138480084676,0.5799349512134101,0.7904761904761904,0.6785431512272367,0.6222222222222222,0.1194209891435464,0.758744394618834,0.9142857142857144,0.8419452887537994,0.8118811881188119,0.1280487804878048,0.5107564191533657,0.707936507936508,0.6209850107066381,0.5635528330781011,0.1172932330827067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022707228805741,0.004282220666281,0.0065505509571929,0.008723501601342,0.0108818469619389,0.0128932965050502,0.0147965223070329,0.0170613595962485,0.0189876007693252,0.021307327466989,0.0232033317604579,0.0252200980039653,0.0275262399670714,0.0294238895187055,0.0314209624476145,0.0335477465924838,0.0356776473270261,0.0377595514950166,0.0399779460719041,0.0422125637097026,0.057438007896551,0.0711361899477601,0.0844080210705254,0.0970392660241572,0.1090726869922987,0.1242104594940592,0.1359159414137125,0.1467507026658717,0.1564399807682034,0.1657619190662146,0.1776585775681003,0.1888061961836355,0.1996021652644622,0.2088578547075793,0.2180490808338464,0.2276219363694732,0.2363983135916482,0.2443159446050692,0.2526337299064571,0.2591599335281646,0.265353364661219,0.2716552014600589,0.2773603436239069,0.282695212294119,0.2868107845518581,0.29222100292221,0.2958573216520651,0.2996300392844883,0.3030201212183869,0.3058510638297872,0.3039209101777103,0.3009820595819388,0.2983887960218573,0.2967221381744831,0.2947948615370938,0.291599156247134,0.2893014136175326,0.2899731218041169,0.2899420388680532,0.2902978556531969,0.2907314150925735,0.2916312952835962,0.2920613017207134,0.2909537088678193,0.2918560196205727,0.2931909907564119,0.2922512165277027,0.2956942003514938,0.3010692571109092,0.3052019922523519,0.3087098827166106,0.3136394863393754,0.315934237669563,0.3170068027210884,0.3227434124462717,0.3282965411403612,0.3303140096618358,0.329121540312876,0.3274979800700242,0.3274962742175857,0.0,1.7896978326934605,48.89591313348246,147.2258139494195,214.02670477977765,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95727,47464,452.06681500517095,5112,52.37811693670542,4051,41.806386912783225,1602,16.348574592330273,77.3593554540744,79.73006180493267,63.33143217950936,65.0835823111477,77.16059999037718,79.53415742935091,63.25711125759577,65.01285967052465,0.1987554636972248,195.90437558176177,0.0743209219135963,70.72264062304612,209.29216,147.20909421596505,218634.4082651708,153780.11868748115,497.18929,332.95264992287343,518864.7925872533,347297.0634438282,449.71615,220.09817067670429,466669.4349556552,227524.0004316666,2312.37732,1077.1171214071658,2387032.456882593,1097007.361520683,957.67556,431.9162653767454,987257.6075715316,438160.7461988527,1558.0846,656.3539590694288,1592096.608062511,656466.5033019678,0.38168,100000,0,951328,9937.927648416851,0,0.0,0,0.0,43303,451.82654841371817,0,0.0,40715,422.2006330502366,1251766,0,44871,0,0,0,0,0,77,0.8043707626897322,0,0.0,1,0.010446373541425,0,0.0,0.05112,0.1339341857053028,0.3133802816901408,0.01602,0.354790137398833,0.645209862601167,23.62987480112521,4.12053839009276,0.3056035546778573,0.263885460380153,0.2206862503085657,0.2098247346334238,11.351584174030776,6.214940206110779,17.163613296897548,11573.6967548319,46.15237823065769,13.034424752693832,13.976687833057484,9.79493137351297,9.346334271393408,0.5801036781041718,0.7970065481758652,0.7075928917609047,0.5727069351230425,0.1294117647058823,0.7722513089005235,0.9126436781609196,0.8794117647058823,0.7378640776699029,0.2242424242424242,0.504302925989673,0.7176656151419558,0.6425389755011136,0.5232558139534884,0.1065693430656934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573552647571,0.0044197998925461,0.0066059849614904,0.0088562084865227,0.011205678085883,0.0134688018569232,0.0156379020337428,0.0175877345201396,0.0197910490482713,0.0222360998781723,0.0243449725683228,0.0265512176583572,0.0287874890683677,0.0311357009653921,0.0329900524208527,0.0349600471371422,0.0369400242263611,0.0390619327670079,0.0410320917322466,0.0427898837548435,0.057034855794332,0.0712117723400247,0.0842345980761363,0.0962050074133271,0.1082768293068722,0.1241471232268096,0.135133701188455,0.1452905918299992,0.1551079290446676,0.1646725542166089,0.1764465036095248,0.1880845167994458,0.1991993298739162,0.20905370508163,0.2186670484959963,0.2276089198389904,0.2361664824058874,0.2441907546957597,0.2517271500039704,0.2582455336692625,0.2637191067112309,0.2701489921121823,0.2756445095583544,0.2809416155309147,0.2862201096182761,0.2906932398351479,0.2947669766976697,0.2989127673626988,0.3030060120240481,0.3067045948401881,0.3045148121290253,0.3011710759345954,0.2989965616447969,0.2965365474786411,0.2938860686429766,0.2915485228208177,0.288469713907827,0.2888094305120167,0.289689284742997,0.2892578125,0.2904496164542078,0.2920070069084968,0.2931668966670848,0.2936195880434297,0.2946578429962115,0.2948265115312695,0.2952462040584646,0.3004106196909381,0.3045332214882388,0.3097491717936583,0.3135769998186105,0.3182226924094155,0.3236054207374724,0.3303632107528506,0.3342325581395349,0.3374736348722756,0.3387291981845688,0.337910447761194,0.3475215517241379,0.353051291651067,0.0,1.99026192124648,50.14137992237893,153.52819877898187,210.22681124377323,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95886,47633,452.81897252987926,5200,52.87528940616983,4081,41.945643785328414,1580,16.123313100974073,77.4394230829848,79.71978547453904,63.39129033748679,65.07739800390978,77.23675522823712,79.51907453405383,63.31489811145053,65.00395322330377,0.2026678547476876,200.7109404852088,0.0763922260362548,73.44478060601034,209.94908,147.66556694656035,218956.96973489356,154001.1752983338,499.77618,335.24908058187685,520608.7020002921,349022.5482154609,451.98831,221.8599663459166,467321.1939177773,228371.5091478954,2342.88848,1100.238401943419,2410659.366330852,1114693.2419158374,958.17166,435.3025247843868,984391.3501449638,439089.4528217135,1537.52242,657.6188124827663,1570294.7667021253,657843.5649586307,0.38223,100000,0,954314,9952.58953340425,0,0.0,0,0.0,43350,451.4527668272741,0,0.0,40877,422.2722816678139,1251908,0,44856,0,0,0,0,0,99,1.0324760653275766,0,0.0,0,0.0,0,0.0,0.052,0.1360437432959213,0.3038461538461538,0.0158,0.3450367647058823,0.6549632352941176,23.9060047531169,4.126227692248883,0.3026219063954913,0.267826513109532,0.2195540308747856,0.2099975496201911,11.09652402220386,5.958715866944405,17.00914141851703,11624.230968847192,46.39743310530101,13.006629835371273,13.963128289523072,10.03971276946756,9.3879622109391,0.5809850526831659,0.7941445562671546,0.7101214574898785,0.5859375,0.1178529754959159,0.7559322033898305,0.9221698113207548,0.875,0.7446808510638298,0.1412429378531073,0.5098241985522234,0.7130044843049327,0.6464646464646465,0.529500756429652,0.1117647058823529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021664304515084,0.0043982325996189,0.006796579393177,0.0091989968422869,0.0114649293097665,0.0137563338149406,0.0158390628978864,0.0178702570379436,0.0202178088349474,0.0224943227152765,0.0246418983995573,0.0269640786760103,0.029163027282536,0.0313963662566266,0.0334436437489046,0.0353038360266405,0.0372853300227601,0.03921832744454,0.0412873085907085,0.0431820073235685,0.0583195221864348,0.0728771588878788,0.0867521099034575,0.098762191729047,0.1105181161708667,0.1257614628532818,0.1372542789357736,0.1469525671540292,0.1563922438145593,0.1660709317009482,0.1773090815273477,0.1880091622188128,0.1988941874232828,0.2079440528875047,0.2171876546196219,0.2269256308100929,0.2362617155720988,0.2443136506082287,0.2522060239462625,0.2588215122592444,0.2648767249841214,0.2711820877401882,0.2776477817958354,0.2825355787760183,0.28737515321416,0.2909690762261178,0.2958866099216318,0.2996279412324923,0.3035933482356285,0.3073998052682824,0.3053313095222104,0.302482853223594,0.3007133428820175,0.2978591508685936,0.294883762279415,0.2923417576544246,0.2886503551696922,0.2887090180688414,0.2887527650161647,0.2895082782633411,0.2910545156238347,0.2917821957406643,0.2923368614051171,0.2935576218903264,0.2952514831669486,0.2958785024967012,0.2986954439153588,0.3038634600465477,0.3074848746758859,0.3131016670579948,0.318028813787532,0.3230680446985992,0.3268872030841935,0.3284402288467329,0.3310596150252289,0.3358841535201318,0.3399571996331397,0.3415721231766612,0.3433040614709111,0.3378480060195636,0.0,2.2978504877078203,51.052688460957285,148.40135721995617,215.4184295774888,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95734,47811,455.4390289761213,5112,52.0818100152506,4053,41.70931957298348,1569,15.992228466375582,77.34647984393533,79.69747319423658,63.33814763576003,65.07478453889169,77.14240636587354,79.49742188516859,63.26002698599219,65.00075112818236,0.2040734780617867,200.0513090679874,0.0781206497678397,74.03341070933322,210.0758,147.8371877522876,219436.9816366181,154424.956391969,501.00426,336.2665023305535,522695.7925084088,350617.1603929153,462.97345,226.8348021541497,478981.4068147158,233505.43317929129,2321.35272,1097.2699102374706,2389769.528067353,1111224.4319758504,945.25586,431.3920208460491,967249.3993774416,430530.8868971856,1527.74408,662.622872339929,1558160.1520880775,659820.0826463514,0.38156,100000,0,954890,9974.408256209916,0,0.0,0,0.0,43449,453.2141141078405,0,0.0,41842,432.5631437106984,1242891,0,44648,0,0,0,0,0,103,1.0758978001545951,0,0.0,2,0.0208912194204775,0,0.0,0.05112,0.1339763077890764,0.306924882629108,0.01569,0.3542835765057987,0.6457164234942012,23.507179316687708,4.146604535447817,0.3214902541327412,0.2553663952627683,0.2146558105107328,0.2084875400937577,11.511527122988502,6.244964636242851,16.891189806802306,11587.576551919989,46.5662716824355,12.70593993483324,14.841673547826783,9.637536351686528,9.381121848088952,0.5849987663459166,0.81256038647343,0.7145049884881044,0.5804597701149425,0.1112426035502958,0.7491638795986622,0.9282296650717704,0.8753387533875339,0.7419354838709677,0.125,0.5162758137906895,0.7341977309562399,0.6509635974304069,0.5267993874425727,0.1071975497702909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027850921612315,0.0050482011981875,0.0073370475233659,0.0095792446313565,0.0116744971220534,0.013784818374328,0.0160856269113149,0.0182181896120597,0.0205660782369596,0.02252413666008,0.024662252198692,0.026615345137285,0.0287462088109803,0.0306416726748377,0.0328817721283905,0.0349974160206718,0.0369515250657445,0.0390090052703656,0.0410078897308759,0.0430897103396556,0.0585883261820497,0.0719257297761217,0.0849795944060346,0.0981198342762203,0.1103812576441314,0.125733498271323,0.1369210531899094,0.147120808940926,0.1562633467156402,0.1652838521567618,0.1774377638039452,0.1894110648423557,0.2001630434782608,0.2099585787822817,0.2189523443082504,0.2283556972676143,0.2363431554058575,0.2446516545564978,0.2526011232767913,0.2598357557640106,0.2657227793779135,0.2706886472582719,0.2764081381448912,0.2816421935870542,0.2861826925412284,0.2903336985019879,0.2942279797929275,0.297770032183791,0.3011322416830759,0.3051493876689189,0.3016751501440844,0.2994828202800473,0.2975830177789665,0.2950367514332337,0.2924214527528657,0.2895405430224371,0.2867368221463784,0.2865400360242345,0.2875782435912742,0.2887650055213194,0.2895956349502952,0.2895986444151084,0.2907147041593438,0.2912807694882725,0.2925582957489684,0.2946603080290829,0.2968656588948672,0.3021609771374882,0.3052635255492298,0.3082617941245963,0.3108493771234428,0.3138508693124768,0.3172525554724507,0.3222752404756495,0.3276185122728124,0.3304964539007092,0.3354093878171046,0.3371857258718572,0.3431126012852752,0.3442043222003929,0.0,2.472053181548784,51.637680793595926,154.91428918899422,205.20661920921208,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95747,47719,454.9803126990924,5233,53.46381609867672,4146,42.78985242357463,1584,16.230273533374415,77.41222784566315,79.76842417272596,63.350809200748486,65.08993723999068,77.21401513019342,79.57132967834266,63.27756435016535,65.01927325920863,0.1982127154697366,197.0944943832933,0.0732448505831371,70.66398078204372,209.4356,147.41833457489088,218737.86123847225,153965.87588007032,501.17884,335.7473279787098,522890.08532904426,350111.6794152399,458.83143,225.0269864457285,476129.4975299487,232674.169508348,2363.5106,1101.9387881024825,2440308.396085517,1122797.4015921983,963.2082,431.1747757083854,993033.4109684898,437382.1364370008,1543.79394,643.3767575631512,1582922.8487576633,647916.6944197293,0.3818,100000,0,951980,9942.630056294192,0,0.0,0,0.0,43541,454.1865541479106,0,0.0,41687,432.2433078843201,1246450,0,44678,0,0,0,0,0,74,0.7728701682559245,0,0.0,2,0.0208883829258357,0,0.0,0.05233,0.137061288632792,0.3026944391362507,0.01584,0.3401061687717371,0.6598938312282628,23.917284115905133,4.224547160813427,0.3205499276410998,0.2571152918475639,0.2122527737578388,0.2100820067534973,11.499673993925814,6.083225684774253,16.77472865595801,11612.686460413302,47.04741131210712,13.00846801374897,15.069151859265476,9.616193029602062,9.353598409490598,0.5735648818137964,0.8039399624765479,0.7035364936042137,0.5681818181818182,0.0987370838117106,0.7590652699435939,0.9287257019438444,0.8730964467005076,0.69377990430622,0.1314285714285714,0.4943201376936316,0.7081260364842454,0.6320855614973262,0.5290611028315947,0.0905172413793103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496050232934,0.0046926468352505,0.0068274966521933,0.0087232919002356,0.0108175154281763,0.0129180027485112,0.0150233401960984,0.0171729436853973,0.0194581557674423,0.0218628454452405,0.0238685742395671,0.025930032027593,0.0279936672423719,0.0301429395287526,0.0320903068700084,0.0342339734976123,0.0361994698475811,0.0383358406391035,0.0406196392368872,0.0425538564106837,0.057420264133215,0.0720100449931987,0.0851559303899046,0.0983001283318957,0.1114053597805444,0.1274033628562056,0.1388549901841141,0.149165859319273,0.1586865697158793,0.1677290580130062,0.1797102386650281,0.1911196284145905,0.2024097172337229,0.2112982847885813,0.2198348017621145,0.2292415169660678,0.2384889554306656,0.2457414350209973,0.2529994665092679,0.2600320843359688,0.2656349472758209,0.2711065358024402,0.2772251463717546,0.2824304100568692,0.2863731249089761,0.2907748169118099,0.2943844087700668,0.297935252985444,0.3013705701675141,0.3050352904065297,0.3030839129910337,0.3003067148647168,0.2981416078035654,0.2962052608883139,0.2940855457227138,0.2910121236060891,0.2887454454077145,0.288977531748616,0.2886199532187531,0.2884734540690778,0.2896412198155056,0.2903408868537435,0.2914042199355576,0.2917275909433293,0.2935342361243563,0.2946308724832214,0.2956975595993793,0.3012936127868648,0.3056519927787807,0.3098249598621608,0.3131512756018685,0.3176741991296597,0.3224824501459899,0.3266361796236599,0.328667464775762,0.3331388564760793,0.3305859433538138,0.3336639555643721,0.3349553933495539,0.3301815431164902,0.0,1.8957481515840324,54.47591454348044,142.8191347917909,219.2283561892672,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95730,47674,454.40300846129736,5130,52.41825968870782,4110,42.358717225530135,1562,15.867544134545074,77.32373385663094,79.69359963999764,63.321321634088775,65.07512805617199,77.12085100937024,79.49602533999847,63.24453808437608,65.00322303897451,0.202882847260696,197.5742999991752,0.0767835497126938,71.90501719747999,211.00618,148.5244692484184,220417.80006267625,155149.14288519818,501.54275,335.55973851988034,523349.3993523452,349963.871983133,452.19076,221.14225762210745,469370.32278282667,228578.8942827044,2356.16344,1098.8651565417897,2428396.7408335945,1115414.473867702,899.14201,407.0749989823251,925821.6546537136,411914.076998948,1521.8206,651.2828273024007,1548395.6126606078,645301.2989868018,0.38222,100000,0,959119,10018.99091193983,0,0.0,0,0.0,43669,455.5729656325081,0,0.0,40979,425.0078345346286,1241191,0,44521,0,0,0,0,0,72,0.7521153243497336,0,0.0,1,0.010446046171524,0,0.0,0.0513,0.13421589660405,0.3044834307992203,0.01562,0.3590841399851079,0.640915860014892,23.573109754672696,4.17372635439663,0.3182481751824818,0.2591240875912409,0.2143552311435523,0.208272506082725,11.20806226541139,6.021999493692901,16.77115711975623,11594.00229705096,46.85191839243338,13.165816807600514,14.755450313388014,9.693150488420743,9.23750078302411,0.5661800486618005,0.8028169014084507,0.6788990825688074,0.5698070374574348,0.0957943925233644,0.751892346509672,0.9048672566371682,0.876010781671159,0.7046632124352331,0.1387283236994219,0.4905854159534406,0.7275693311582382,0.6008537886872999,0.5319767441860465,0.0849194729136164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025430597771023,0.0047968196983986,0.0068818514007308,0.0092677275775867,0.0115985674751749,0.013598997646915,0.0157773426345204,0.018026206938813,0.0200525599991819,0.0221823954119514,0.0244795405599425,0.0263536274751458,0.0283527426854861,0.0303074021785055,0.0323396436755506,0.0343954180795633,0.0364570386941751,0.0385022410358565,0.0406658764322997,0.042659164322184,0.0569483455325724,0.0709837455386579,0.0845756008518405,0.0976479498453705,0.1102217722800468,0.1252167660618365,0.1365931804196991,0.147589303765815,0.157253930280246,0.1668257219142388,0.178523359857009,0.1894654853470937,0.2004501565762004,0.2104762529519811,0.2198534750181506,0.2295366966381715,0.2388087990991292,0.246082297037711,0.2535398079604584,0.2601304198604278,0.2663608633359523,0.271992336269539,0.2775867163032559,0.2826883471430624,0.2876439676201803,0.2919611851341034,0.2955119705801416,0.2990026460411154,0.3026963323663489,0.3051973736255043,0.3026469836228822,0.3012164244826067,0.2989096748746267,0.2962507771721057,0.2935573979970877,0.2895296692532562,0.2853893898952888,0.2864301036532446,0.2864609046492228,0.2863802982312537,0.2871533228676086,0.2880703900254493,0.2886455476225372,0.2888640679101977,0.2893358323721645,0.2920466982852973,0.2927302284459401,0.2967254408060453,0.299620466685409,0.3056086679413639,0.3097555403244231,0.3144838623632969,0.3165308571789527,0.3219769307157589,0.3240333302125269,0.3275657738800663,0.332476176070186,0.3350753768844221,0.3336049986416735,0.341964965727342,0.0,2.2428912612690626,51.71652348260412,149.0483697402177,218.30567834287535,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95763,47313,450.194751626411,5165,52.525505675469645,4099,42.03084698683208,1612,16.34242870419682,77.38153749659537,79.72237702972052,63.350937847410606,65.08251874148834,77.17350216433147,79.5192740704456,63.272671186991744,65.00859590018844,0.2080353322639041,203.10295927491492,0.0782666604188619,73.92284129990401,211.28646,148.6642734479676,220634.524816474,155241.65538879062,500.90678,335.76355671140107,522270.1565322724,349820.792689662,459.0396,225.1119010477769,473337.96977955993,230509.71882706563,2348.42992,1107.1945584383614,2410570.094921838,1114466.0865244,946.85261,431.79210039905706,968799.1708697514,430951.4557746321,1568.1489,670.6512416155412,1592237.83716049,664503.6628362434,0.3796,100000,0,960393,10028.842037112454,0,0.0,0,0.0,43669,455.1862410325491,0,0.0,41636,428.9548155341833,1238510,0,44463,0,0,0,0,0,73,0.7518561448576172,0,0.0,0,0.0,0,0.0,0.05165,0.1360642781875658,0.3121006776379477,0.01612,0.3504983388704319,0.6495016611295681,23.47540057657628,4.140806621774855,0.3071480848987558,0.2671383264210783,0.2168821663820444,0.2088314222981215,11.515248073413396,6.292003004824163,17.244471608132514,11536.554274164951,46.86224500775803,13.328417344842656,14.068672075305397,10.0195547546082,9.445600833001771,0.5767260307392047,0.7990867579908676,0.6862589356632248,0.5883014623172104,0.1191588785046729,0.758563074352548,0.9230769230769232,0.8773006134969326,0.7573221757322176,0.1736842105263158,0.5017229496898691,0.7151607963246555,0.6195069667738478,0.5261538461538462,0.1036036036036036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218254370151,0.0048148073063433,0.0071425672659388,0.0094248600997328,0.0116416210830266,0.0138237120433237,0.0161148937905165,0.0180446830443258,0.0202640560812606,0.0225203102298074,0.0246756706904678,0.0269754264950421,0.0290767016245116,0.031083975124583,0.0330060235993068,0.0348401095211034,0.0369220580322033,0.0388199562562842,0.0409291116097398,0.0429373119410288,0.0571875815288285,0.0706912239967368,0.0839466566018745,0.0971457396275589,0.1090713653416515,0.1253117734094271,0.136112170927127,0.1467636301777664,0.1560659096730129,0.1658216586453431,0.1775368949073725,0.1891304347826087,0.1992674470420729,0.2084389753453401,0.2179604228311205,0.2277095095759991,0.2363987109579723,0.2442783273381295,0.2512303540244483,0.2576773455377574,0.2645344803663105,0.2709219692365234,0.2766823198211519,0.2814516804961864,0.2857766937274746,0.2903011432861169,0.29363503540254,0.2979391136409839,0.301828243386517,0.3047945205479452,0.3013735451442088,0.2990248592226343,0.2956080130549772,0.2934206918447751,0.2908769794743169,0.2875066860242989,0.2843752958626566,0.2846778542133041,0.284581153610979,0.2857016017331392,0.2864283183199985,0.2860686233980984,0.2876134822080768,0.2883735464143026,0.2896464162514373,0.2898539425126046,0.2919857069933639,0.2949141965678627,0.2999617218220413,0.3047071788413098,0.3094603748024385,0.3119096617592739,0.3136848713119899,0.3176157934700075,0.3185824114007125,0.3251179245283019,0.3257863546573469,0.324438202247191,0.3169052863436123,0.3111449220235831,0.0,2.96763818458089,51.22573182876977,153.82485077643844,210.4410062172023,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95864,47285,449.3866310606693,5189,52.99173829591922,4111,42.37252774764249,1585,16.179170491529668,77.37299817448195,79.67475355335452,63.35320242165369,65.05710769829194,77.175087341227,79.47885781617968,63.27876945528384,64.98568016899941,0.1979108332549515,195.89573717483688,0.074432966369855,71.42752929253504,209.48708,147.3768466967812,218525.2858215806,153735.34037467788,499.00718,334.6043216041495,519928.3985646332,348435.9359604411,452.32455,221.5136047327558,468588.4586497538,228541.18609941515,2359.50288,1105.0333884605811,2431914.3369773845,1123625.6064346244,969.02569,436.5598790676043,995182.2060418926,439884.6736224559,1543.39002,653.289958332774,1576593.298840023,652382.8843870328,0.37977,100000,0,952214,9932.967537344572,0,0.0,0,0.0,43481,453.01677376283067,0,0.0,40989,424.3615955937578,1249152,0,44835,0,0,0,0,0,88,0.9075356755403488,0,0.0,0,0.0,0,0.0,0.05189,0.13663533191142,0.3054538446714203,0.01585,0.3485967503692762,0.6514032496307238,23.622017499031365,4.147543525525355,0.3108732668450498,0.2634395524203357,0.2172220870834346,0.2084650936511797,11.493323913820674,6.176960352861487,16.930480454784938,11574.15985099608,47.02751575859829,13.074277420220914,14.653279649971402,9.881090416955416,9.418868271450563,0.576015567988324,0.8060941828254847,0.7065727699530516,0.555431131019037,0.1120186697782963,0.736753574432296,0.9219858156028368,0.8484848484848485,0.7136150234741784,0.1368421052631579,0.5106091718001369,0.7318181818181818,0.6502732240437158,0.5058823529411764,0.1049475262368815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0043580933848196,0.0069078847265755,0.0089149726864732,0.0111827257385682,0.0136807817589576,0.0160733032319876,0.0184204349467797,0.020486568780717,0.022806802136411,0.0247118487782388,0.0269732319656909,0.0290738304694565,0.0311782688804026,0.0331845406843087,0.0350902556900326,0.0370998779200893,0.0390338424553913,0.0409544973105439,0.0430403978401772,0.0579617967218584,0.0719316210737497,0.0850408548082966,0.097994329518009,0.1102814958349568,0.1259863313228195,0.1373486060631748,0.1472539388913695,0.1568240279215719,0.1660469551986112,0.1772739012526365,0.1889145895933764,0.2000847770797556,0.209446236265238,0.2180619890633424,0.2281904466569944,0.2369706840390879,0.2450079310616373,0.2525522936612369,0.259368237866801,0.2648048568950564,0.2708547768316646,0.2769336362775726,0.2814438669189681,0.2862135922330097,0.2903988474183895,0.2937290425904609,0.2966066138608826,0.2998033482547158,0.303277283217936,0.3016755265459929,0.2990551376033228,0.2967997295546102,0.2942961165048544,0.2922875972213976,0.2891321296989895,0.2863938053097345,0.2863646039725556,0.28677510005961,0.287057650180769,0.2879749197581548,0.2885705289672544,0.2897695275836896,0.2914332710945141,0.2923620562041878,0.2941039384758797,0.2957123411978221,0.3003783259856799,0.305018496544985,0.3073260937991816,0.3111061151079137,0.3166333718851856,0.3196230183497691,0.3211557370849406,0.3248878085265519,0.3315039701074264,0.3346988317402518,0.3356289244480454,0.3329639889196676,0.3332063975628332,0.0,1.9114751747744936,52.23784927768168,151.82933327956374,216.1561278863096,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95791,47753,454.9487947719514,5023,51.1634704721738,3996,41.12077335031475,1516,15.4294244762034,77.39816222968327,79.72748824787863,63.35848721039546,65.07942000580044,77.20407848630411,79.53818709666551,63.28455050165098,65.0101186430826,0.1940837433791529,189.3011512131153,0.0739367087444762,69.30136271783738,211.64594,148.8543604341452,220945.537680993,155394.93317132632,504.40331,338.1973413954121,525953.9205144533,352444.9597513462,458.61236,224.9866940730972,475197.085321168,232115.8094728427,2297.12388,1086.3612861600063,2363604.3469637022,1099825.0601928208,937.99181,431.5873422286283,960558.7268114958,431984.60044905567,1478.32934,636.6690277188768,1504533.6409474793,630804.5819824331,0.3807,100000,0,962027,10042.978985499682,0,0.0,0,0.0,43836,456.9844766209769,0,0.0,41455,429.2156883214498,1236107,0,44376,0,0,0,0,0,98,1.0230606215615246,0,0.0,1,0.0104393940975665,0,0.0,0.05023,0.1319411610191752,0.3018116663348596,0.01516,0.3552027543993879,0.6447972456006121,23.43887405831328,4.240136627575288,0.3018018018018018,0.2675175175175175,0.2237237237237237,0.2069569569569569,11.14232315988568,5.840749568497753,16.306660294098748,11540.855253501262,45.65895459408296,12.9704107522236,13.679819113147124,9.9735263894627,9.035198339249533,0.5708208208208209,0.764265668849392,0.7089552238805971,0.5671140939597316,0.1233373639661426,0.7565359477124183,0.9096774193548388,0.872093023255814,0.7130434782608696,0.2108108108108108,0.4888167388167388,0.652317880794702,0.6438515081206496,0.516566265060241,0.0981308411214953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584108079641,0.0047936598021728,0.0070709735016028,0.0094239987001381,0.0115081583896711,0.0137500763327701,0.0159983695929077,0.0182018528343468,0.020341441984491,0.0223961530591364,0.024526426866375,0.0264953669023406,0.0285394228397599,0.0305993268765631,0.0327336460642301,0.0347744360902255,0.0368703640482914,0.0388950528313234,0.0409037058591233,0.0426017140655427,0.0575989982782908,0.0718723199531449,0.084682323338226,0.097649927479873,0.1098190942059542,0.1250171784978064,0.1357345127111903,0.1461621138436326,0.156007689842999,0.1655497056584351,0.1780321795506924,0.1888559624494387,0.2010842404884514,0.210534939864326,0.2194296389911533,0.2287930252370467,0.2370445524684475,0.2448362323892193,0.2519877051504531,0.2591142255198314,0.2646997618442045,0.2707763517778245,0.2766423271281317,0.2815656111849908,0.286289882158764,0.2897655240322481,0.2938912217556488,0.2976839323601529,0.3000219919535323,0.3031197690817308,0.300653682681444,0.2977829061237946,0.296029033210955,0.2934113611139138,0.2905073407530192,0.2870912640312347,0.2840002522624791,0.2839169294619369,0.2840266902703071,0.2851354233312007,0.2864542574995342,0.2868615293770298,0.2873608737337946,0.28898756660746,0.2880314397999285,0.2902224521469219,0.291226885079794,0.2953303527074019,0.2978178925891344,0.3035693342194769,0.3083742069027584,0.3127711851116106,0.3146213292117465,0.3159795365633464,0.3187691735614019,0.3206502532689362,0.3236002408187838,0.3288,0.3313384113166485,0.336838152459632,0.0,2.2291174464001235,53.2347430146539,142.73597049476618,203.43447712632292,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95871,47170,448.7697009523214,5157,52.518488385434594,4116,42.27555778076791,1564,15.906791417634114,77.3584022892406,79.63929344503251,63.35300198276878,65.04119129599245,77.16001636777446,79.44494779339922,63.2776842053518,64.96967460321791,0.1983859214661407,194.34565163328443,0.0753177774169842,71.5166927745372,211.25104,148.6493506834634,220349.2609861168,155051.4239795803,498.89624,334.00139089056074,519733.4126065233,347736.8243687462,449.22125,219.9678056646942,463600.5778598325,225786.51004724615,2333.62952,1095.5257872314762,2402742.2265335717,1111315.4835471362,951.18437,428.88723106577487,978548.0385100812,433785.25858090445,1515.37708,648.9904834564038,1545191.5177686682,647452.3381408801,0.37932,100000,0,960232,10015.875499368944,0,0.0,0,0.0,43414,452.1596728937844,0,0.0,40883,421.5247572258556,1241429,0,44518,0,0,0,0,0,70,0.7301478027766478,0,0.0,1,0.0104306828968092,0,0.0,0.05157,0.1359538120847833,0.3032770990886174,0.01564,0.351517408303854,0.648482591696146,23.669492988027823,4.114951536417256,0.3085519922254616,0.2687074829931973,0.2264334305150631,0.1963070942662779,11.387397911907808,6.230430416426714,16.77864531497422,11506.809255601716,47.10444311356576,13.581194361067396,14.25512663688538,10.341230254110158,8.926891861502828,0.5840621963070942,0.8155515370705244,0.6976377952755906,0.5525751072961373,0.125,0.7373653686826843,0.9006479481641468,0.834319526627219,0.7333333333333333,0.143646408839779,0.5204537641801307,0.7542768273716952,0.648068669527897,0.495049504950495,0.1196172248803827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780427057072,0.0047218084729103,0.0068870383706423,0.0092802241874727,0.0113437690587517,0.0136476047995603,0.0158625045845388,0.0179611402927227,0.0201341596642945,0.0222656130199654,0.024476132955255,0.0265424124992311,0.0286747185933777,0.0306334478573045,0.0327909397252651,0.0347629470554224,0.0369079267220423,0.038874494766297,0.0406052361023127,0.0423645935204644,0.0562632917726533,0.0700196414392578,0.0835052518038349,0.0965286236297198,0.1089530229618706,0.1244771200405628,0.1350761372908476,0.1451432824711574,0.1551532746990009,0.1642600632470386,0.1760911469831253,0.1873864128083081,0.1985497162488313,0.2080290374775878,0.2174448525368932,0.2271731190650109,0.2353866229464315,0.2444566879553836,0.2512280064888657,0.257561176794061,0.2638765143538178,0.2692213215426185,0.274649805217103,0.279566411261796,0.2832835022727825,0.2870953819594303,0.291199639319215,0.2954568605480289,0.299441108964301,0.3028653711507721,0.3005469634100339,0.2982463385089748,0.2968252626834559,0.2947908388122245,0.2914728221287475,0.2883693137420136,0.2850378487948564,0.2853532037815126,0.2859558333760311,0.2875191560640079,0.2882224258175495,0.2888315067413072,0.2898865606785468,0.2906114266622118,0.2919699291323501,0.2937432075764632,0.2957638869237952,0.2998036220816059,0.3046488969308929,0.3079831436335709,0.3141797122432359,0.3178306794892007,0.3207075442215138,0.3249923710711016,0.3255112618980303,0.3288422558721831,0.335800185013876,0.3385858585858586,0.3384237796563948,0.332955832389581,0.0,2.53999284604772,52.31545585856968,152.65336077167044,212.739329630292,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95724,47681,453.8464752831056,5186,52.8707534160712,4109,42.2464585683841,1601,16.255066649951946,77.38965647392791,79.75515052962791,63.34469261111818,65.0934036169835,77.18626823218227,79.55958984505492,63.2665958454925,65.0213838328497,0.2033882417456425,195.560684572996,0.0780967656256805,72.01978413380061,210.05908,147.74312032672333,219442.43867786555,154342.81927909754,504.0093,338.5464365929742,525842.892064686,352989.29602502653,461.12801,226.4071807433472,477703.41816054494,233374.07518637023,2337.53764,1105.5040105885898,2402864.443608708,1115840.3970197304,965.46958,441.52711366413695,985696.951652668,438415.1351713336,1551.9466,668.3269010784924,1576994.1080606745,658296.6083178687,0.38129,100000,0,954814,9974.65630353934,0,0.0,0,0.0,43876,457.6595211232293,0,0.0,41786,432.556098784004,1241095,0,44565,0,0,0,0,0,81,0.8357360745476579,0,0.0,0,0.0,0,0.0,0.05186,0.1360119594009808,0.3087157732356344,0.01601,0.3385724852071006,0.6614275147928994,23.4442784841064,4.110976873655325,0.3185689948892675,0.2652713555609637,0.212217084448771,0.2039425651009978,11.365944447587456,6.27058012902753,17.10682475278157,11653.66690873829,46.93191673188156,13.253522135231826,14.771460083017848,9.7099623369715,9.19697217666038,0.5870041372596739,0.8174311926605504,0.6913674560733384,0.5848623853211009,0.1264916467780429,0.7526358475263585,0.9264367816091954,0.8677248677248677,0.755656108597285,0.1507537688442211,0.5159944367176634,0.7450381679389313,0.6197636949516648,0.5268817204301075,0.1189358372456964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0047139685532678,0.0070226001887577,0.0091838185992644,0.0114844314240084,0.0138589059508777,0.0162518734515349,0.0183542430150774,0.0205454248098781,0.0227959014463677,0.0247852559503064,0.0270822425493034,0.029165038962107,0.0312107420145396,0.0331191402019535,0.0353654881615526,0.0374523691186216,0.0393302140285717,0.0412418280273975,0.0433550403750976,0.0582063061181875,0.0719392080720962,0.085493043460013,0.0985838436125665,0.1110196761090889,0.1266130738311825,0.1373229349037084,0.1476967942441142,0.1570256760798052,0.1670742433017997,0.1783241258251758,0.1891871422852629,0.2003305857021683,0.2102080097989895,0.2194748888595449,0.2287698236909719,0.2383703422816546,0.2469320327249842,0.2548817272582949,0.2619227424596091,0.267377452964372,0.2733712041517638,0.2787042180279626,0.2837839455196103,0.2884029656954944,0.2923355327949576,0.2960833093723043,0.2999110320284697,0.30382611169298,0.3058263940128597,0.3033223127167164,0.3008888461485623,0.2987615446251599,0.2974477289113194,0.2946306935971095,0.2924626182483979,0.2902559737721455,0.2895901010463768,0.2891141472014103,0.2894601633506369,0.2906113050583079,0.2919672259683236,0.2928550670486154,0.2935336613039046,0.2955535973707399,0.2962723773604402,0.2963882618510158,0.2996067661194682,0.305006633614971,0.3085379839443192,0.3124914861735458,0.3164382106046116,0.3185208398621122,0.3185085354896675,0.3224294771662225,0.329346185112066,0.3307899461400359,0.3304347826086956,0.329225823734262,0.3300751879699248,0.0,2.65960837103572,53.25388269095749,148.51658603096433,211.34266725405132,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95758,47500,452.4112867854384,5110,52.17318657448986,4066,41.83462478330792,1554,15.862904404853904,77.34687979821054,79.70812665019987,63.33382307926016,65.08217053065634,77.15129184658666,79.51518654470809,63.26043145287745,65.01208589874533,0.1955879516238781,192.94010549178608,0.0733916263827083,70.08463191101555,210.58752,148.15835219114274,219916.37252240023,154721.64434422477,500.40578,335.4835407165745,521976.806115416,349748.648380892,453.82577,222.1137195402341,469973.8716347459,228825.4881107616,2341.5672,1103.5964180638384,2412213.6218383843,1119401.760755068,930.78005,424.1306736465773,956875.2271350696,427782.09970772057,1517.7938,643.1437856438582,1551408.5298356274,643039.9639820609,0.3822,100000,0,957216,9996.198751018192,0,0.0,0,0.0,43594,454.6147580358821,0,0.0,41171,426.0531757137785,1243967,0,44659,0,0,0,0,0,86,0.8876542952024896,0,0.0,0,0.0,0,0.0,0.0511,0.1336996336996337,0.3041095890410959,0.01554,0.3440617353660832,0.6559382646339168,23.608862446578247,4.194481863133802,0.3093949827840629,0.26463354648303,0.2169208066896212,0.2090506640432858,11.405201899578625,6.02879307794381,16.64227095794617,11630.758991872068,46.50559550934864,13.164302745727674,14.260986787658345,9.707507276276589,9.372798699686038,0.5764879488440728,0.8234200743494424,0.6796502384737679,0.5952380952380952,0.0917647058823529,0.7512315270935961,0.9363057324840764,0.8392370572207084,0.7192118226600985,0.1129943502824858,0.5017556179775281,0.7355371900826446,0.6139169472502806,0.5581737849779087,0.0861812778603269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394714442057,0.0045126353790613,0.0067614213197969,0.008841732979664,0.0108447953121184,0.0132278365002749,0.0154755836476705,0.0176806859942833,0.0199955020343072,0.0223512306999221,0.0245650368578078,0.0265727516351277,0.0286913062257049,0.0307185166108678,0.0327987285074411,0.0348987460847452,0.0368859249440808,0.0389024326987914,0.0407605305833922,0.0427058492746982,0.0575218929723297,0.0713942005941671,0.0850004193927193,0.0974722791528719,0.1102270092532091,0.1258083604547952,0.1371850721273596,0.1473649517855814,0.1583876438651321,0.1675341644175984,0.1787634986877769,0.1905369047747679,0.2008190043774372,0.2100866944729544,0.2193589490103034,0.2285711124878307,0.2372097171588793,0.2454815214459131,0.2531371258707935,0.2592469596683691,0.2668864595985887,0.272980338491409,0.2781859700185757,0.2830903056517415,0.2878480859066917,0.2914857768321629,0.2953309581848866,0.2986404066073697,0.3031020080944438,0.3075261737011918,0.3048567435359888,0.302121403643758,0.2994602799797605,0.2970904846310147,0.2958754333461732,0.2928043491539918,0.2892115855102202,0.2896512199115769,0.2909320113797039,0.2915221065741482,0.2918681729063579,0.2919787150177375,0.2933684122609204,0.2931161441481646,0.2951992318771003,0.2949422831383381,0.2953115659426684,0.2978087022227819,0.3039012934207298,0.3095606006577123,0.314879679752536,0.317451084082496,0.3211440757699303,0.3245243128964059,0.3222757598220904,0.3251023990637799,0.3268181818181818,0.3329283110571081,0.3332407664537628,0.3233463035019455,0.0,2.4439216932163665,52.86099360197654,142.23297957690562,216.890367429863,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95745,47924,456.754921928038,5201,53.109822967256775,4094,42.09097080787508,1586,16.073946420178597,77.36211040614715,79.72306309897448,63.32787542470121,65.07521633971479,77.1553329805344,79.5237797778672,63.24962859935434,65.00287999728987,0.2067774256127563,199.28332110727357,0.0782468253468735,72.3363424249186,212.33696,149.34003951028814,221773.41897749229,155976.85467678535,502.54413,336.6246122452852,524159.8516893832,350867.93629512633,460.3056,224.7056513183408,477235.8347694397,231901.21646114663,2337.98916,1085.504097988052,2404351.0992741133,1096311.895499777,944.23308,419.9769738862232,965539.0464254008,418242.04956841154,1536.07554,654.4320602363938,1558382.0982818946,643517.090405408,0.38193,100000,0,965168,10080.609953522377,0,0.0,0,0.0,43583,454.457151809494,0,0.0,41590,430.9363413233067,1232678,0,44319,0,0,0,0,0,96,0.9922189148258396,0,0.0,0,0.0,0,0.0,0.05201,0.1361767863221009,0.3049413574312632,0.01586,0.353189924618496,0.6468100753815039,23.8040164641576,4.173225790927841,0.3146067415730337,0.2696629213483146,0.2100635075720566,0.205666829506595,11.08546178225189,5.909687095469123,16.872552257097485,11580.04248527743,46.60502247773452,13.527713255719206,14.429658198592175,9.591084110545632,9.056566912877502,0.5701025891548608,0.7989130434782609,0.6777950310559007,0.5651162790697675,0.1104513064133016,0.7401709401709402,0.8991228070175439,0.8496932515337423,0.7136363636363636,0.1309523809523809,0.5020519835841313,0.7283950617283951,0.6195426195426196,0.5140625,0.1053412462908011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694345663252,0.0044922627618796,0.006963760024363,0.0090126705752055,0.0110167336351152,0.0132297225730231,0.0155507515346807,0.0176835742873478,0.0200509197247471,0.0222003768329646,0.0243457215522192,0.0261108942621772,0.0279832512011193,0.0301006790944033,0.0322527376123685,0.034561902300336,0.0366776775636578,0.0385345659414199,0.0407380457380457,0.0428011916418408,0.0585711601494812,0.0726892294816132,0.0862871764755233,0.0990744636095919,0.1110700912399135,0.126675057377656,0.1374693669704331,0.1475538993878094,0.1573525954736819,0.1671992622300384,0.1791441834415759,0.1899602783760674,0.2007506935755861,0.2096684206495936,0.2183186951066499,0.2285242595813989,0.2363766303376809,0.244196905766526,0.2517557892825941,0.2586917685859558,0.2653958774579586,0.2715555555555555,0.2768633668989835,0.2817602071396035,0.2865277676598431,0.2910540650456601,0.2942273512403935,0.2987863830653368,0.3023180565082898,0.3057061096385383,0.3032925909972001,0.3006175471412656,0.2980995118657419,0.2954699608907105,0.2929740791268758,0.2897134819435525,0.2871230798406979,0.2874078925822826,0.2874357490553834,0.2878007178138659,0.2884572365968235,0.2878317889115753,0.2889004581424406,0.2876550896073286,0.2890710905005498,0.2899515581690542,0.2916065518119324,0.2958989552471542,0.2991794729156526,0.3042743773080851,0.3076507650765076,0.3105018052430537,0.3148505004040529,0.3155848040682022,0.3204098587648851,0.3247863247863248,0.3255709134615384,0.3311688311688311,0.3374265883609183,0.347577260587562,0.0,2.4259974417880867,50.69253626902978,149.57870525602806,217.7212659762376,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95745,48023,457.1204762650791,5122,52.12804846206068,4027,41.3180844952739,1571,15.92772468536216,77.32840490063373,79.68807011347502,63.31625382636724,65.06433056090796,77.13043859609412,79.49716373620288,63.24157497611773,64.99544634816264,0.1979663045396051,190.90637727214244,0.074678850249505,68.88421274531709,210.22606,147.98464274684963,219568.0192177137,154560.60622481932,501.41573,336.67758283368124,522943.2033004334,350886.7149068476,464.60362,227.7377157439388,480649.7153898376,234349.9829337391,2318.67116,1082.0616538458348,2381973.3249778054,1090566.749723737,934.6251,420.9433984611467,958086.0619353493,421609.17025228566,1534.36716,646.1795037636764,1558428.5550159276,638107.2656888339,0.38235,100000,0,955573,9980.364509896075,0,0.0,0,0.0,43571,454.290041255418,0,0.0,42062,434.6963287900151,1238725,0,44500,0,0,0,0,0,74,0.7728863126011802,0,0.0,1,0.0104444096297456,0,0.0,0.05122,0.1339610304694651,0.3067161265130808,0.01571,0.3414634146341463,0.6585365853658537,23.73700046500649,4.2291640934478645,0.3071765582319344,0.2662031288800596,0.2128135088154954,0.2138068040725105,11.360156117276183,6.014371384092223,16.642409085252332,11595.151628051151,45.93932840029539,13.034096719897084,13.990375646182915,9.518536658912195,9.39631937530319,0.5803327539111001,0.8003731343283582,0.6936135812449474,0.5904317386231038,0.1335656213704994,0.747457627118644,0.9345372460496614,0.8490028490028491,0.7319587628865979,0.1458333333333333,0.5110642781875658,0.7058823529411765,0.6320541760722348,0.5490196078431373,0.1300448430493273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0044828495507008,0.0068736547130731,0.0092989694912498,0.0116376065593782,0.0136998859191655,0.0161527165932452,0.0184179360476987,0.0204154654562554,0.0226728355886748,0.0249602788170775,0.0270550547261638,0.029226956262405,0.0310546211130223,0.0332703837858477,0.0353720682633368,0.0375760838060535,0.0394511682897234,0.0414748459372109,0.0434941101725808,0.0587983549403979,0.0734546595544399,0.0861705585672493,0.0987354545741225,0.1106533192834562,0.1262723957507531,0.1377880526421837,0.1481071531199778,0.1577800563957959,0.16753881787767,0.1804864387427562,0.19159272884657,0.2019409659134181,0.2112250924123449,0.219921625608172,0.2294647999645563,0.2380702615837871,0.245804774285039,0.2530537644174008,0.2604974622778777,0.2672660164069099,0.2729834654692579,0.2777975049120564,0.2825771477230477,0.2859694528487588,0.2904875764149083,0.2949853986238359,0.2978707146859559,0.3006105544248992,0.3032474301624375,0.3004929425708436,0.2977983140118542,0.2944622838149963,0.2924608614097107,0.2901200670832158,0.2872682210391041,0.2835726484913656,0.2837542874961022,0.2841735212805897,0.2837269030463009,0.2846011547732496,0.2862459387614453,0.2866958151155527,0.2873174207338796,0.2882848392036753,0.291066058280618,0.2919797011878774,0.2973580663293985,0.3008529155787641,0.3053486263844547,0.3086514569686017,0.3144805876180482,0.3185654008438818,0.3254522254747429,0.3267317526731753,0.3307270393278095,0.330662231629876,0.3361667678607569,0.3412348401323043,0.3395784543325527,0.0,2.7960935484339133,50.79895921345042,146.92327617698749,209.69844770279693,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95729,47488,453.1855550564615,5084,51.844268716898746,4064,41.84729810193358,1519,15.5125406094287,77.31464774318667,79.67998813189536,63.30648041847581,65.05590494601144,77.11155298557419,79.47949720928102,63.229507443038486,64.98197930359511,0.2030947576124759,200.49092261433543,0.0769729754373216,73.92564241632726,209.92334,147.7008497496966,219289.18091696352,154290.60133261248,499.87914,335.22532227829936,521613.3773464676,349613.4424033461,457.98511,224.32251735619337,474782.58416989626,231468.6302934985,2307.65952,1092.047567931227,2378503.985208244,1108656.8625298778,953.53207,435.67893405597545,983918.9691733957,442961.5414931468,1472.9566,640.3395990871976,1505886.2831534855,641854.6129656886,0.38126,100000,0,954197,9967.69004168016,0,0.0,0,0.0,43459,453.3735858517273,0,0.0,41546,430.2980288104963,1241668,0,44594,0,0,0,0,0,79,0.8148001128184772,0,0.0,1,0.0104461552925445,0,0.0,0.05084,0.1333473220374547,0.298780487804878,0.01519,0.3558584137800492,0.6441415862199508,23.527189114570035,4.124337558408885,0.3252952755905511,0.2731299212598425,0.203001968503937,0.1985728346456693,11.565563439455774,6.3936308750470445,16.480601690525393,11570.044416673323,46.39718018008589,13.45271673099147,14.809695383701111,9.147481728769463,8.98728633662385,0.5856299212598425,0.8063063063063063,0.6822995461422088,0.5975757575757575,0.1115241635687732,0.7325769854132901,0.9364035087719298,0.8181818181818182,0.7038834951456311,0.1313131313131313,0.5215547703180212,0.7155963302752294,0.6286919831223629,0.5621970920840065,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0046232928795206,0.0068819911082238,0.0089421806726958,0.0112314970242636,0.0133766657157993,0.0154762754919864,0.0176635151416144,0.0199231288205589,0.0218971377093485,0.0238688443911291,0.0256594551857974,0.0277626341072034,0.0298811964843226,0.0321538429777658,0.0341159321403095,0.036047511054501,0.0380420683428974,0.0403136080523234,0.0421202871222144,0.0565480230117877,0.070796089677838,0.0842416676283295,0.0978210575022083,0.1102089879584132,0.1254429482636428,0.1368499257057949,0.1471706148522757,0.1573552517662651,0.166371586458501,0.17869119375465,0.1906474820143885,0.201106850270176,0.2108971759832553,0.2192502756339581,0.2281438056536318,0.2362139549450795,0.2441233531853456,0.2518002798539299,0.2587185260062488,0.2654303806276529,0.2707156419211927,0.2763497972636521,0.2810342964839201,0.2845105358510755,0.2890692453807632,0.2937326358471204,0.297026050676707,0.3016361637457155,0.3052971405982342,0.3036713286713287,0.3000906742869704,0.2973812132962432,0.2953470940959409,0.2937354437703045,0.2921922059655399,0.2892207997471155,0.2896673825019262,0.2888407478165939,0.2897590683262995,0.2900170026718484,0.2908936941195005,0.2918055324112648,0.2921583005577406,0.2928561182039879,0.2936834744775076,0.2941710653272036,0.29753125,0.3015402843601896,0.3072248747188573,0.3132338940019041,0.3138747884940778,0.3168061410683949,0.3192395437262357,0.3239264954059628,0.3256582831503129,0.3294656488549618,0.338989981598855,0.3383977900552486,0.3476744186046511,0.0,2.398212611481822,53.61841520488208,139.4585555626129,216.08932336665168,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95799,47405,451.8314387415317,5093,51.98384116744433,4004,41.06514681781647,1559,15.84567688598002,77.3504688262772,79.68349757448665,63.33176974345843,65.06028954042083,77.15622715278899,79.49310040273487,63.2589749406213,64.9914143746298,0.1942416734882073,190.3971717517834,0.0727948028371301,68.87516579102737,210.34354,147.9822084564597,219567.3441267654,154471.34904163898,501.16042,336.0218398331621,522427.76020626526,350048.3160110252,451.55286,221.3848056318791,466341.0787168968,227224.6373781165,2296.0642,1067.5059601896144,2357710.163989186,1075372.7773667926,930.1043,418.3400713213381,952384.158498523,418249.731132737,1518.49782,637.806205499169,1545891.7525235128,633275.4026934681,0.38035,100000,0,956107,9980.333823943882,0,0.0,0,0.0,43608,454.430630799904,0,0.0,40848,421.3613920813369,1241509,0,44654,0,0,0,0,0,101,1.0542907546007787,0,0.0,1,0.0104385223227799,0,0.0,0.05093,0.133902984093598,0.3061064205772629,0.01559,0.346211552888222,0.653788447111778,23.88149070090557,4.234512196291674,0.3184315684315684,0.2597402597402597,0.2145354645354645,0.2072927072927073,11.290016130388752,5.869048800932485,16.584455439148385,11466.096949006598,45.56016151084771,12.731182380667248,14.357357627718784,9.456966977948095,9.01465452451359,0.5746753246753247,0.8028846153846154,0.6956862745098039,0.5669383003492433,0.1108433734939759,0.7413494809688581,0.9200913242009132,0.8475073313782991,0.69,0.1525423728813559,0.5070224719101124,0.717607973421927,0.6402569593147751,0.5295902883156297,0.0995405819295559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004441154700222,0.0066578706992794,0.0087885961614663,0.0109750391602416,0.0132305310545721,0.0154913058997501,0.0176149824360754,0.0198253650157457,0.02205024261409,0.0239433153544841,0.0261028505709356,0.0280234471410942,0.0302786875115862,0.0321363008188775,0.0340559194891612,0.0361168907797894,0.038044662026905,0.0399787999085486,0.0421815304858371,0.056852558886733,0.0710521913683506,0.0847008278319186,0.0968429899669065,0.1093600210692652,0.1247437496037365,0.1360913495690157,0.1461027910142954,0.1552872606161532,0.1646753747736356,0.1762250102218683,0.1874621637983222,0.1985487410111017,0.2074739591872424,0.2162649740944041,0.2257599929096871,0.2350578047582913,0.2436911445383256,0.2518986910667862,0.2580730120923415,0.263822205768363,0.2695756895483298,0.2753962621244381,0.2785502976297414,0.282290489899542,0.2856473605049683,0.2902179764870854,0.2938458012934766,0.2979445401442837,0.3009226870124213,0.2981295313047462,0.2963957636105717,0.294206329078254,0.291456560373351,0.2885945897793746,0.2857995044204472,0.2831635880566802,0.2840510314519038,0.2842040649297503,0.2855946249398514,0.286493147615669,0.2880121276553856,0.2892958451526781,0.2896014250723669,0.2903643026514335,0.2913283702108895,0.2929873217115689,0.2976777576627754,0.3020087579064433,0.306977476767995,0.3127533099162388,0.3159163565850846,0.319617105917454,0.3242412888722368,0.3237723939478325,0.3267303658820787,0.3293620871663399,0.3306114319856602,0.336742934051144,0.3425226586102719,0.0,2.7270839301692487,49.79589321444251,143.4418294018282,213.9915042331036,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95712,47648,454.22726512871947,5192,53.00275827482447,4071,41.90697091273821,1535,15.651120026746907,77.30949638025908,79.67032278776233,63.31695901961641,65.05969938140193,77.11635425350673,79.48119065131773,63.24319366150524,64.99051457421498,0.1931421267523489,189.1321364445986,0.0737653581111743,69.18480718694298,209.90596,147.74512135752352,219309.9715814109,154364.2608633437,498.79539,334.868150816955,520534.0709628887,349262.7160825759,461.50791,226.25178036721,477980.05474757607,233214.92607783023,2348.90468,1109.6556126277785,2418493.146104981,1123724.3946712837,946.18379,434.2460561302466,965489.8654296222,430616.77337245794,1499.48448,641.2928533276094,1528990.0325977933,636811.7934502977,0.3818,100000,0,954118,9968.635071882314,0,0.0,0,0.0,43350,452.2839351387496,0,0.0,41796,432.4954028752925,1241777,0,44591,0,0,0,0,0,79,0.8253928452022734,0,0.0,0,0.0,0,0.0,0.05192,0.1359874279727606,0.2956471494607088,0.01535,0.3521594684385382,0.6478405315614618,23.401712947201887,4.201435736626525,0.3166298206828789,0.2647998034880864,0.2041267501842299,0.2144436256448047,11.318843642947613,5.985569744730305,16.42754159402266,11615.052420807571,46.710784900314906,13.150030657316242,14.630592668783946,9.363882430419537,9.566279143795184,0.5787275853598625,0.7959183673469388,0.6997672614429791,0.592057761732852,0.1191294387170675,0.7617866004962779,0.9290465631929048,0.8717201166180758,0.7467248908296943,0.1720430107526881,0.5013976240391335,0.7001594896331739,0.6374207188160677,0.5332225913621262,0.1048034934497816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204737646975,0.0043893439299326,0.0068277737196656,0.0089684732266189,0.0111726732069333,0.0134355247488472,0.0156754828517555,0.0179652331907683,0.0201749724050529,0.0221060064885222,0.0242007400649863,0.026202846171222,0.0283190572653703,0.0303080234390286,0.0324247393335602,0.034343455216093,0.0365552002152741,0.0385915785106824,0.0405259328552125,0.0427010302834581,0.0574695838337423,0.0720566069335119,0.0848053201309054,0.097253186387919,0.1105498491974774,0.1263908279392478,0.137066395016925,0.1482758987789169,0.1580347413627331,0.1667667495925195,0.1790562378797673,0.1904272134768204,0.201033844814452,0.2106507321557554,0.2194756719260963,0.229496203513828,0.2375037698124588,0.2456183825185852,0.253055568176655,0.2600279636930411,0.2661997916425512,0.2720604578795287,0.2784433973433097,0.28366710636767,0.2885568513119533,0.2920560171601864,0.2955517750369018,0.2989656620144781,0.3016345879853897,0.304726811680336,0.3027220051206037,0.2993338655068953,0.2970417036629881,0.2951915993817977,0.2938161179127541,0.2914937600490008,0.2889888637191693,0.2889100428367444,0.2889386276653909,0.290122685143847,0.2911672160623314,0.2915463428141936,0.2927355349402132,0.2932844823734417,0.2947062077590975,0.2958043048767807,0.2965010257579211,0.2999028426364121,0.3030175880275534,0.3085718791893383,0.3116096060784225,0.3151566290475688,0.3191369606003752,0.3215528984410474,0.3238291109656913,0.3260206475832942,0.3279284740112138,0.3363083164300203,0.3350585671479161,0.3287671232876712,0.0,2.489872354692422,52.311186559223984,148.850357764082,212.7300802929548,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95750,47451,452.3759791122715,5147,52.81462140992167,4049,41.869451697127936,1583,16.2088772845953,77.40440741590693,79.76165461964996,63.3594678928421,65.09925943233972,77.21136917390463,79.57020702874523,63.286774559640655,65.02934935809546,0.1930382420023022,191.4475909047297,0.0726933332014425,69.91007424426243,209.21384,147.17364855109932,218500.0939947781,153706.16036668335,501.78906,336.24730768755404,523675.49869451695,350785.9401436595,453.62551,222.2047718697781,471476.10443864233,230190.7375305696,2318.43076,1085.2354369502193,2398249.190600522,1110316.7383292108,960.8229,430.5300657177294,989583.5195822456,435752.8832561139,1541.13526,650.658890905759,1579384.731070496,653126.3569708056,0.38032,100000,0,950972,9931.822454308094,0,0.0,0,0.0,43817,457.20104438642295,0,0.0,41022,426.1723237597912,1250261,0,44757,0,0,0,0,0,76,0.783289817232376,0,0.0,0,0.0,0,0.0,0.05147,0.1353334034497265,0.307557800660579,0.01583,0.3407988055244494,0.6592011944755506,23.80876304252408,4.085381364498527,0.3114349222030131,0.2635218572487033,0.2136329958014324,0.211410224746851,11.270877814060617,6.120145830161728,16.73447141290755,11562.62981012843,45.94112580786238,12.88340065683836,14.182780302794216,9.609393955457792,9.265550892772008,0.575697703136577,0.7985004686035614,0.6986518636003172,0.584971098265896,0.1074766355140186,0.7487179487179487,0.9285714285714286,0.8668639053254438,0.7281553398058253,0.15625,0.5053838138242446,0.7093206951026856,0.6370530877573131,0.5402124430955993,0.0933734939759036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679639960715,0.0046719027109196,0.0068375027897822,0.0090285888386736,0.0111028641729281,0.0134161237785016,0.0156127388535031,0.0176627246104711,0.0201181134543076,0.0220619084164748,0.0243002531489889,0.0266644771278724,0.0290017477125526,0.0310337013843111,0.0330798518319799,0.0348670133038381,0.0368560037280588,0.0386821713467702,0.0405512138343864,0.0422759655043119,0.0571082551183404,0.0711482717845146,0.0843962406645967,0.0970994228282467,0.1095535224925165,0.1247488738976885,0.1358934917519758,0.1457951884181392,0.1555175729088772,0.1642272761390077,0.1766650514187261,0.1886894522163437,0.1997476917053648,0.2086636126083771,0.2177744043297472,0.2273547615620536,0.2361636377835045,0.2437968677976772,0.2516046358667301,0.258428895145231,0.2642895931784307,0.2704734335605565,0.2752706196215457,0.280369812943453,0.2853856399079791,0.2898855149371069,0.2940633113640902,0.2976839755460287,0.3019357336430507,0.3060564639083118,0.3037725225225225,0.3022146694441399,0.2996422307962118,0.2967497805850107,0.2942315652533854,0.2904494125177159,0.288702203448602,0.2886254531204075,0.288764693891418,0.2893144266775516,0.2895144002236928,0.2894690213218356,0.2901006816334188,0.2904659275223854,0.292039836641112,0.2941953874060637,0.2955212922173275,0.2996073787859902,0.3042707101620644,0.3099638251022334,0.3118018018018018,0.3164064553435315,0.3194228496797064,0.3229659679963939,0.325609305760709,0.3266821345707656,0.3350437669785692,0.3340637450199203,0.3393590797041906,0.338006230529595,0.0,1.6588055066694278,51.28141731256986,148.89166861098067,210.24039503968064,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95735,47583,452.1961665012796,5186,52.74977803311224,4089,41.97002141327623,1601,16.232307933357706,77.33232137485312,79.69932708885334,63.31916690730778,65.07165568489428,77.13396513990304,79.50747701745337,63.243434841223824,65.00151555506665,0.1983562349500829,191.85007139996912,0.0757320660839582,70.14012982763518,210.93732,148.46054942210867,220334.59027523897,155074.47581564597,502.45447,336.9492089527947,524123.5180446023,351245.4488739328,460.28396,225.91066313064053,476589.7320729096,232621.80384835665,2342.84016,1103.3407152797806,2406351.407531206,1111657.473009385,937.96226,430.0421384385128,957339.2071865044,426843.9337196954,1552.6539,660.2938502201281,1575568.1621141694,650179.3804867439,0.38054,100000,0,958806,10015.208648874495,0,0.0,0,0.0,43714,455.8416462108947,0,0.0,41649,430.814226771818,1237692,0,44363,0,0,0,0,0,88,0.919204052854233,0,0.0,0,0.0,0,0.0,0.05186,0.1362800231250328,0.3087157732356344,0.01601,0.3509713228492137,0.6490286771507863,23.652132679024497,4.177557003313777,0.3105893861579848,0.2609439960870628,0.2196135974565908,0.2088530202983614,11.32308796120434,6.210100659159345,17.029752988486923,11503.761778901537,46.72057763397646,12.950993784724163,14.467667287313732,9.978142712934238,9.323773849004326,0.5739789679628271,0.7825679475164011,0.7070866141732284,0.5824053452115813,0.1065573770491803,0.7315875613747954,0.890625,0.8611111111111112,0.7535545023696683,0.1280788177339901,0.5068015347052668,0.7043618739903069,0.6461538461538462,0.529839883551674,0.0998463901689708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046658349308746,0.0070973113475753,0.0093401902593706,0.0116993570440302,0.0140381617954177,0.0162152239536591,0.0183973292223504,0.0203875057512397,0.0225839475839475,0.0247062924158858,0.0268877367691596,0.0288334978611385,0.0306816075143675,0.0332421975754449,0.0354614327204324,0.037638361100469,0.0397344122834318,0.0418909650198491,0.0438993907201999,0.0577206151019428,0.0718336681734471,0.0856321718517275,0.0980567414666975,0.1100332155849633,0.1253649248995134,0.1355036555214821,0.1463713196942924,0.1558591371778302,0.1645720290818624,0.176436373036903,0.1877232094543408,0.1981700683232516,0.2076082557668959,0.2160645310385051,0.2253549201568071,0.2343443135154436,0.242351617440225,0.2497787259151669,0.2562845723055075,0.2626591066882666,0.2682550264921576,0.2736253075903842,0.2783894193331975,0.2838774692519699,0.288420793298842,0.2916942856785522,0.2953407386695813,0.2984344675895976,0.301578725423014,0.2994098113816329,0.2978238171127109,0.2956510735225883,0.293259318001586,0.2912261451089132,0.2884015892420538,0.2863919547136396,0.2868904784508863,0.2869875829222656,0.2878604485582057,0.2876914732451793,0.2880593481177492,0.28830071918381,0.2896134618818068,0.2907895052689695,0.2920098739768741,0.2922810798548094,0.2970337388686818,0.3028218202137319,0.3063391442155309,0.3099529070820503,0.3126491646778043,0.312842131756119,0.3165554881746513,0.3196020085549563,0.3207238762405137,0.3196401799100449,0.3279143536875495,0.3330636461704422,0.3329554043839758,0.0,2.807780960456201,52.63664863712163,148.1292999287834,210.91204979617703,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95719,47849,456.47154692380826,5230,53.30185229682717,4155,42.76058044902266,1611,16.43351894608176,77.41699606751023,79.77068769958741,63.36600846061516,65.10079874599867,77.21292456914264,79.56982805410951,63.28944207401761,65.02800245960077,0.2040714983675826,200.85964547790525,0.0765663865975554,72.79628639790303,211.5597,148.82090887178362,221021.6362477669,155476.8738409131,505.75659,339.1905249750441,527719.1884578819,353704.3928361611,467.37513,229.407910867913,483954.63805514056,236378.5561767988,2393.70084,1134.5251019251791,2466414.149750833,1151054.339290626,957.7249,435.3442492815781,988477.230225974,442765.7922482813,1566.54196,669.1932708861681,1600156.4579655032,667984.0671938882,0.38291,100000,0,961635,10046.438011262131,0,0.0,0,0.0,43921,458.1848953708251,0,0.0,42357,438.2306543110564,1234532,0,44339,0,0,0,0,0,87,0.898463210020999,0,0.0,1,0.0104472466281511,0,0.0,0.0523,0.1365856206419263,0.3080305927342256,0.01611,0.3561217008797654,0.6438782991202346,23.36767946645943,4.175745576816765,0.317208182912154,0.257280385078219,0.2223826714801444,0.2031287605294825,11.67032968992074,6.339872811188196,17.215924873982285,11530.786410673589,47.73248245295101,13.14974485783456,14.924129844538772,10.451916467774003,9.20669128280367,0.5809867629362214,0.8353601496725912,0.6904400606980273,0.5562770562770563,0.1149289099526066,0.7624309392265194,0.9471458773784356,0.848404255319149,0.7203389830508474,0.1593406593406593,0.5013850415512465,0.7466442953020134,0.6273885350318471,0.5,0.1027190332326284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026215105568938,0.0047412090082971,0.0069376825705939,0.0090882320088546,0.0111029770619814,0.013080478022761,0.0153300444408203,0.0175137783221065,0.0198458928607926,0.0221285563751317,0.0240298400401692,0.0262836499481716,0.0283414543884537,0.0302253254242873,0.0322996616324172,0.0343897574736755,0.0365354950254164,0.0385608645598896,0.0406165230676491,0.0425152882101074,0.0568561523682232,0.0702319789890027,0.0842137289255851,0.0969774094484876,0.1092993576830181,0.1247474907721758,0.1359484889308483,0.145963724613616,0.1565818430442493,0.1655746319074326,0.1773377266658052,0.1891944522578272,0.2000760786870992,0.2097364368180179,0.2186198789290383,0.2284529011560374,0.237203133880908,0.2449995505213952,0.252128371101765,0.2591071346849114,0.2656703306864547,0.271153576601411,0.2775480303424156,0.281945125818147,0.2858546288098386,0.2902348365498227,0.2946158650843223,0.2973518765479139,0.3011836460433142,0.3041725936462778,0.3011891165602956,0.2984515278807347,0.2960552212787494,0.2927424126535148,0.2911822280223039,0.2884392180818571,0.2857300483914188,0.2850565705049713,0.2851344925961147,0.2852456690958739,0.2859030919007465,0.2863535553767345,0.2873266419557703,0.2881874404273712,0.2884197972570065,0.2884630304911164,0.2901166567804988,0.2950141519703897,0.2991559862457018,0.3024131842260153,0.306175611947002,0.3081242783667471,0.3122902945196967,0.3136514648142555,0.3169555946973209,0.3191390343222804,0.3240030097817908,0.3241529621557361,0.3286096256684492,0.3270159791898922,0.0,2.5137211548242666,55.01813911278475,151.07287549313796,212.01113078728108,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95683,47456,452.1179310849367,5132,52.21408191632787,4123,42.37952405338461,1658,16.84729784810259,77.3508434030137,79.74209410946385,63.31502979323547,65.0830310223198,77.1435978053935,79.54152952954287,63.23525912462325,65.00940983653396,0.2072455976202007,200.5645799209788,0.0797706686122197,73.62118578583932,210.75912,148.24730323278405,220268.0936007441,154935.8854057503,498.63545,333.9735626990577,520438.7195217541,348347.6612345534,454.23487,222.06331279876727,470658.0479290992,228950.7145162245,2359.01888,1109.3232834830171,2425084.7904016385,1119005.7622388687,976.08328,442.7574084052515,998327.2054596952,440938.8798483019,1616.0797,690.5843299146034,1643773.418475591,680456.5994134659,0.38044,100000,0,957996,10012.186072761097,0,0.0,0,0.0,43377,452.6195875965427,0,0.0,41220,426.6902166529059,1241745,0,44525,0,0,0,0,0,72,0.7524847674090486,0,0.0,0,0.0,0,0.0,0.05132,0.1348964357060246,0.3230709275136399,0.01658,0.3566772210840007,0.6433227789159992,23.66372445488908,4.225169905071172,0.3165170991996119,0.2534562211981567,0.218287654620422,0.2117390249818093,11.14800308707971,5.812908248380071,17.519537484529096,11528.423752926958,46.99085932845174,12.72569729984275,14.762921048880411,10.00901208450268,9.493228895225904,0.5782197429056513,0.8181818181818182,0.7003831417624521,0.5611111111111111,0.1260022909507445,0.7521222410865874,0.9241379310344828,0.8863636363636364,0.6966824644549763,0.1388888888888889,0.5086587436332768,0.7426229508196721,0.6316894018887723,0.5195936139332366,0.1226551226551226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0047256391274807,0.0071059497101787,0.0095028051061061,0.0116380801237054,0.0138037122308021,0.0159748645808893,0.0179953837040668,0.0202288788210388,0.0223369281346975,0.0246031094884522,0.0266639276910435,0.0290783789343756,0.0309814749943332,0.0330973414795244,0.0349515165298654,0.0370167005097177,0.0388503695092584,0.0409411471010422,0.0429140260173449,0.0572401474873873,0.071392670157068,0.0850286578068904,0.0974360053447241,0.1096880373890934,0.1255184526832571,0.1367380735016241,0.1478108991767575,0.1576781228285851,0.1664931580359538,0.1778575587036677,0.1896800043315826,0.2004549857952999,0.2095179707257261,0.2179180755801786,0.2273836461244953,0.2361514406968952,0.2440647806108658,0.2508009725283465,0.2578629332782957,0.2646214068978296,0.2697100295123436,0.2761129477563305,0.280468346989455,0.2845231004849826,0.2881944872284584,0.2922772970539689,0.2958254944831444,0.2989346848011584,0.302471821237888,0.3002812655604451,0.2978395910065416,0.294890182513569,0.2920776374228528,0.2895216097365966,0.2869615654669231,0.2840215213240979,0.2848475928833072,0.2849019340779079,0.2847032044670484,0.2848238280083607,0.2853240040095127,0.2857559046925398,0.2871614866816253,0.2897892875913804,0.2916407706650093,0.2921797942792729,0.2972981376115412,0.3031407253166753,0.3064743138634764,0.3111340021497671,0.3148245154531168,0.3180240485930333,0.3230051891404076,0.3260849363442059,0.3316889828517735,0.3304164152082076,0.3382701421800947,0.3420911528150134,0.3334600760456274,0.0,2.8079903555881875,50.518192110623865,154.70186792803037,214.966110899447,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95709,47771,455.0460249297349,5200,52.84769457417798,4081,41.90828448735228,1564,15.839680698784855,77.26691653433518,79.62618408401468,63.2951211478972,65.03876068694571,77.06760707803697,79.4339095784995,63.21898807023428,64.96821973699865,0.1993094562982094,192.27450551518643,0.0761330776629236,70.54094994705906,209.82544,147.65024808950955,219232.71583654615,154269.9726143932,501.50197,336.813027112504,523269.1596401593,351196.5824661254,465.81402,228.8917886837866,482154.56226687145,235591.5673589336,2306.8758,1095.556638151654,2370647.734277863,1105020.5081566556,910.37461,420.1341347978143,932569.3090513954,420358.3463837819,1519.864,654.2231153786395,1541461.2418894777,644952.0506364541,0.38082,100000,0,953752,9965.123447115737,0,0.0,0,0.0,43594,454.7221264457888,0,0.0,42120,435.5180808492409,1238903,0,44480,0,0,0,0,0,91,0.950798775454764,0,0.0,0,0.0,0,0.0,0.052,0.136547450238958,0.3007692307692308,0.01564,0.3402688271036641,0.6597311728963359,23.63515538799344,4.162898826531908,0.3170791472678265,0.2661112472433227,0.2144082332761578,0.2024013722126929,11.6100701494715,6.3268329029848,16.82877092041446,11576.57767945132,46.78923878748973,13.22908220088478,14.63804832332155,9.751828624784036,9.170279638499354,0.5834354324920362,0.8047882136279927,0.705564142194745,0.5897142857142857,0.0944309927360774,0.7473598700243704,0.9186813186813186,0.8497267759562842,0.7603686635944701,0.1347150259067357,0.5126315789473684,0.722662440570523,0.6487068965517241,0.5334346504559271,0.0821484992101105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409512620021,0.0048058887345506,0.0068798960912448,0.0092136406578559,0.0114822122327766,0.0136947247309419,0.0159845048167592,0.0179969579730709,0.0198726270917882,0.0221912872584343,0.0243457402642666,0.0267237485113547,0.0287415420685683,0.0310333817425249,0.0331476323119777,0.0354547615848175,0.0374861497996251,0.0395688304682069,0.04130805371918,0.0432608152038009,0.0579113891006296,0.0722345503265784,0.0851322845718723,0.0975586656845206,0.1102751867640231,0.1259379994284686,0.1369959013782412,0.1474529688731704,0.1569873152366895,0.1653192471629035,0.1769545106580266,0.1883486308124099,0.199840998442656,0.2092587725062426,0.2191160427984264,0.2294168571999378,0.2380025940337224,0.2457243290745623,0.2535640044074381,0.260056170115206,0.2655602620188413,0.2722442004728575,0.2771594999052851,0.2819599803378532,0.2860059301025616,0.290001602900016,0.2940948038282307,0.2971517335336584,0.3009749014727235,0.3047945205479452,0.3024379707875482,0.2991405829689202,0.2972648583007385,0.2950485310497461,0.2922802320392682,0.2893175301675892,0.2858638079228646,0.2853218855883417,0.2857069523108776,0.2863754132046815,0.2872322482712093,0.288270299124177,0.2884538721386459,0.2895902299364767,0.2904491407115005,0.2906940391829929,0.2919957797484958,0.2958181131124827,0.2993565266581813,0.3036565341022868,0.3088006586771567,0.3125200128081972,0.317285273174113,0.3214204243023344,0.3265421087221857,0.3277895730125029,0.3310030395136778,0.3299879566439181,0.3336070060207991,0.3351330505206324,0.0,2.758563961190077,52.93186308060294,146.44839729647146,213.1814417274155,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95702,47129,447.3678710998725,5201,53.16503312365468,4123,42.5069486531107,1620,16.520030929343168,77.288290147924,79.65719521629505,63.294707477804174,65.04411718836472,77.07854503018135,79.45166783150215,63.216033059076295,64.96971322095804,0.2097451177426563,205.5273847929016,0.0786744187278785,74.4039674066812,208.6293,146.76798342217702,217998.43263463667,153358.91624226977,500.03556,335.2448134211137,521870.284842532,349679.0318082315,450.38547,220.3514184640921,466899.3124490606,227452.2387380612,2376.88328,1109.5646202655655,2449536.7285950137,1125327.5587402207,1000.30044,448.9084360581165,1027386.8153225638,451252.6442323048,1582.73508,670.1738837948853,1615451.4430210446,667428.9059411405,0.37965,100000,0,948315,9909.01966521076,0,0.0,0,0.0,43491,453.7940690894652,0,0.0,40920,423.9305343670979,1246720,0,44770,0,0,0,0,0,72,0.7523353743913398,0,0.0,0,0.0,0,0.0,0.05201,0.1369946002897405,0.3114785618150356,0.0162,0.3469237832874196,0.6530762167125803,23.71931280026332,4.196381036081373,0.3080281348532622,0.2636429784137764,0.2068881882124666,0.2214406985204947,11.377974916352107,6.063927265157384,17.39598439141475,11574.208786342731,47.166333415622304,13.24713205473825,14.269146414063655,9.64789914796462,10.002155798855776,0.5765219500363813,0.7865685372585096,0.6976377952755906,0.5978898007033998,0.1380065717415115,0.7519247219846023,0.9061784897025172,0.8769230769230769,0.7685185185185185,0.1675392670157068,0.5071090047393365,0.7061538461538461,0.635978835978836,0.5400313971742543,0.1301939058171745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787348464132,0.0046937885868959,0.0071437269148029,0.0093866189886019,0.0114412985111056,0.013552729383254,0.015782712424298,0.0181595467769101,0.0205153890973024,0.0229954459397226,0.0251193965605591,0.0272320420438915,0.0296627596134073,0.0317819956951152,0.0339254033089903,0.0360582885489871,0.0381859598260509,0.0403071814030718,0.0421355911048241,0.0441067650522673,0.0590305701484119,0.0718660677827684,0.0850728881332451,0.0976194986424196,0.1098079785493354,0.1256273426084747,0.1372015971455271,0.1472622079208976,0.1568912604125453,0.1656089939760976,0.1778058143547274,0.1885149115490028,0.198275017151818,0.2078849122499698,0.2173482086807123,0.2264381205968824,0.2352730728380569,0.2430074069063482,0.2504492822857663,0.2570841370441811,0.2632689743143735,0.2688479619230724,0.2745907473309608,0.2794960183528112,0.2845332456685052,0.2897304775315595,0.2943265972135057,0.2982440479985718,0.3026344832958957,0.3045681249917316,0.3015614044549916,0.2992458189138138,0.2976484711531671,0.2962383580295195,0.2937083774079647,0.2905798101547285,0.2873528619635304,0.2875227821289591,0.2882981451406103,0.2892452762796014,0.2891446566817253,0.2900760343635825,0.2917312445021572,0.2928698752228164,0.2943019057411348,0.2967084152779215,0.2955060636971551,0.2998904366880576,0.3029783961406698,0.3073606771348336,0.312326523183328,0.3176345796870856,0.3227562898986106,0.3252802181157225,0.3288559518295507,0.3308419946280509,0.3337839867808322,0.3339307048984468,0.337620578778135,0.3380703066566941,0.0,2.165673505707475,51.05118445361143,154.665854424616,218.2221546586124,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95826,47426,451.27627157556407,5121,52.07354997599817,4085,42.01364974015403,1552,15.75772754784714,77.36488025655099,79.67925753043573,63.35773544642036,65.07094740191957,77.16454502898199,79.48202698895577,63.28186493157176,64.99869451444061,0.2003352275689991,197.23054147996777,0.0758705148485958,72.2528874789532,211.5608,148.8267020928871,220775.9898148728,155309.31280955806,501.76458,336.6049515150816,523028.0404065702,350674.3697066367,460.67745,226.70085748858497,476504.35163734265,233384.7113336722,2330.77408,1108.0001421285626,2399572.600338113,1123536.933742996,942.35048,432.300031059187,967566.5685722036,435299.4253781098,1517.18662,650.7669255014149,1543121.8041032704,645848.7812397671,0.38032,100000,0,961640,10035.2722643124,0,0.0,0,0.0,43602,454.38607476050345,0,0.0,41807,432.1374157326822,1238932,0,44486,0,0,0,0,0,89,0.9183311418612904,0,0.0,0,0.0,0,0.0,0.05121,0.1346497686159024,0.3030658074594806,0.01552,0.3642830400599026,0.6357169599400974,23.51678901032569,4.136175730944972,0.3194614443084455,0.2619339045287637,0.2090575275397797,0.209547123623011,11.373064666457346,6.204404197543577,16.77374155481702,11509.453463472615,46.94037019670941,13.24229263322116,14.762918126586715,9.571846752749796,9.363312684151742,0.5818849449204406,0.814018691588785,0.6942528735632184,0.5936768149882904,0.1086448598130841,0.7647058823529411,0.9316239316239316,0.8583333333333333,0.771689497716895,0.1242937853107344,0.5036700454386578,0.7225913621262459,0.6317460317460317,0.5322834645669291,0.1045655375552282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0044304310799302,0.0066969721568309,0.0088672652663226,0.0111347250892303,0.013358856351566,0.0156883932394136,0.0178246932233497,0.0200053156689564,0.0220072675162495,0.0240027876849915,0.026045996120809,0.0281095192090279,0.0302490736928777,0.0321396911785927,0.0343346753380819,0.0365321362818311,0.0387086078992084,0.0406499844252933,0.0427599409059697,0.0572099087353324,0.0716503088645699,0.0847693774290533,0.0973327732857292,0.1102089388769535,0.1256018753167765,0.1363467833345692,0.146804009737326,0.1574214332956412,0.1663578428747389,0.179319470292716,0.1903444100923183,0.200280294635291,0.2100119033318408,0.2182847096313389,0.2284709628908841,0.2365469228627123,0.2444077617571755,0.251123818150937,0.2576647842886211,0.2635820929990878,0.2699365020076571,0.2760759388991931,0.2795441772590847,0.2845285766290498,0.2879787338781136,0.2911272181954511,0.2951234073904704,0.2983830315250688,0.3016163424329375,0.2988084203173068,0.2961421724142666,0.2937923075840522,0.2911980828364781,0.2895061269959153,0.2865406687581299,0.283701639967074,0.2844755382568852,0.2840405698941283,0.2848313803943984,0.2855212029058963,0.2859915628527856,0.2870349020018866,0.2887164926557714,0.2896949948486954,0.2908051948051948,0.2917303879920702,0.2961525216792411,0.3007481994266135,0.305016245344322,0.3101847638117775,0.3130245405290555,0.3185203888397929,0.322302706824247,0.3262037124281541,0.3307737743650324,0.3335881363705855,0.3440357650883967,0.3473366282262493,0.3547892720306513,0.0,2.3743694447230594,52.89891024837111,153.15660391879408,207.8723960626793,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95630,47269,451.0613824113772,5127,52.38941754679494,4046,41.65010979818049,1590,16.197845864268537,77.2563444549925,79.66676954088814,63.27473565930678,65.0558296382672,77.06139745045334,79.47645694810463,63.20099249003375,64.98670457513975,0.1949470045391592,190.31259278351345,0.0737431692730297,69.12506312744426,209.89166,147.67064333898244,219483.0701662658,154418.7423810336,499.16809,334.309370490756,521321.7818676147,348929.52053827874,449.56688,220.04211945788705,466344.1702394646,227215.8036451953,2343.59432,1084.7709366100607,2415190.5050716307,1098842.723632815,944.16341,423.7619054349462,973036.202028652,428874.9293736583,1552.50902,653.1656928790198,1583670.5427167208,648268.8895370084,0.37974,100000,0,954053,9976.50318937572,0,0.0,0,0.0,43374,452.870438147025,0,0.0,40758,422.33608700198687,1242687,0,44648,0,0,0,0,0,83,0.8679284743281398,0,0.0,2,0.0209139391404371,0,0.0,0.05127,0.1350134302417443,0.310122878876536,0.0159,0.3562768140272337,0.6437231859727662,23.88271477103555,4.164104503959636,0.3096885813148789,0.263964409293129,0.2093425605536332,0.2170044488383588,10.99285140643751,5.754262231174498,16.863776641182987,11507.132487864208,45.98903500469566,12.938187287113172,14.05880762291864,9.514573062301045,9.477467032362808,0.5687098368759268,0.800561797752809,0.6927374301675978,0.5619834710743802,0.1161731207289293,0.7457777777777778,0.9214285714285714,0.8459214501510574,0.6941747572815534,0.1726190476190476,0.500513522766176,0.7222222222222222,0.6377440347071583,0.5195007800312013,0.1028169014084507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0045305737713225,0.0066674108728523,0.0088689768675139,0.0109980669447553,0.0132330918981693,0.0153113269136608,0.0173280477338673,0.0195671296769838,0.0216977072960845,0.0237953538006895,0.0259485345500883,0.0280119830754501,0.0302702256863897,0.0324666604687677,0.0345919433780693,0.0365421297064189,0.0386537163039526,0.0406564132448125,0.0424641959340349,0.0569705584180767,0.0713036008004106,0.0851995338435856,0.0979535549613659,0.1104298363181612,0.125922006455368,0.1365054767767682,0.147196336333138,0.1580832050624251,0.1667328475300228,0.1784532114246282,0.1893446885970615,0.1994770957023803,0.2090329227127263,0.2183546746958718,0.2277611277611277,0.2361151497528351,0.2442102890629402,0.2515398777189354,0.2586042777682206,0.264602580301151,0.2694660603787737,0.2741101704963126,0.2787550094790141,0.2827380590203833,0.2875537010517999,0.2915324753443025,0.2954380422181739,0.2988033345866124,0.3014355330753688,0.2997573469937988,0.2970864687560297,0.2956698527439326,0.2924815297696653,0.2910123074172304,0.2874633239627018,0.2842185417856463,0.2851904229428402,0.2860719982163376,0.2864895846393581,0.2866459919180528,0.2876335030812214,0.2893980403264723,0.2904449502387646,0.2913676834097291,0.2921584940980708,0.2937224199288256,0.297925753914708,0.3021098517872711,0.3047468977742761,0.3090826931766832,0.3114425762926263,0.3133103664265581,0.3135586840322216,0.3139630955659598,0.3139602464256654,0.3114754098360656,0.3083778966131907,0.3100133511348464,0.3180778032036613,0.0,2.5186793467952207,48.634162163018935,148.72879015487987,218.85425270955955,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95697,47630,454.4447579338955,5117,52.29004044013919,4065,41.94488855450014,1584,16.196954972465175,77.32722884548278,79.7019388733306,63.32110870231941,65.0750775945265,77.1255275128348,79.50317603755003,63.24576615089502,65.00312718876405,0.2017013326479855,198.7628357805704,0.0753425514243915,71.95040576245049,209.47036,147.3527278051538,218888.9306874824,153978.20936611787,500.00896,335.45010041912155,521966.7701181856,350009.3804835695,455.90351,223.3875874621021,472985.5481363053,230820.52413120237,2339.37584,1098.2610708180675,2414645.5165783674,1117758.1705404222,953.36123,426.8432001151557,980354.232630072,430185.9426255854,1549.77842,659.3278654762274,1585246.914741319,659520.8199015729,0.38105,100000,0,952138,9949.496849431016,0,0.0,0,0.0,43467,453.65058465782624,0,0.0,41268,427.76680564699,1246011,0,44692,0,0,0,0,0,79,0.8255222211772574,0,0.0,0,0.0,0,0.0,0.05117,0.1342868389975069,0.3095563806918116,0.01584,0.3539473684210526,0.6460526315789473,23.604385686994284,4.205835277971585,0.3198031980319803,0.259040590405904,0.2083640836408364,0.2127921279212792,11.312870633092947,5.995649427863523,16.959693685671134,11568.212127403072,46.38658833619072,12.741080016212631,14.762106332809037,9.35805009158365,9.525351895585388,0.5781057810578106,0.8024691358024691,0.7007692307692308,0.5879574970484062,0.1109826589595375,0.7504288164665524,0.9290780141843972,0.8708791208791209,0.7566137566137566,0.1157894736842105,0.5087961365988272,0.7174603174603175,0.6346153846153846,0.5395136778115501,0.1096296296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024601615809828,0.0046315533439409,0.0067971999594197,0.0090394791634926,0.0112364120763465,0.0135419954588496,0.0156221320335284,0.0176483204477444,0.0196449389483157,0.0218430942847487,0.0239565172802789,0.0259128023417038,0.0281623500853716,0.0302730551262235,0.0323645970937912,0.0344884642033526,0.0366732968672302,0.0386927317463118,0.0404618265030164,0.0424644826400108,0.0569348554955557,0.0708828700602813,0.0842415532921443,0.0976443729023977,0.1096004556577504,0.1253385240352065,0.1365546664402606,0.1472107163012575,0.1576619408327012,0.1670599845533339,0.1786279768636701,0.1898880782802589,0.201002784303489,0.2104595463592817,0.2188817114370921,0.2284267895518089,0.2363522742489845,0.2446036691675196,0.2521303997549047,0.2594149447931461,0.2660400726910745,0.2719518901147758,0.2774141624551727,0.2813799384084455,0.285837525212024,0.2900147928994083,0.2932104946925696,0.2978720696413572,0.3014245014245014,0.3043633149054637,0.3023697576353618,0.2992051267946531,0.2976688499190084,0.2960712429998268,0.2946619534220532,0.2906015671721896,0.2863497490937297,0.286486132486329,0.2869209809264305,0.2875017773354187,0.287589988436719,0.2882723337268791,0.288733569789276,0.2901106731689937,0.2902196853415196,0.2915452653485952,0.2933466022177992,0.2990876884973508,0.3029223839949722,0.3089872064007605,0.3124374032595829,0.316995544239338,0.3165901804237128,0.3179530201342282,0.3210074521271578,0.3233242700082752,0.3261533761075466,0.3321890145395799,0.3324198410523431,0.3315569090216977,0.0,2.0667482816469085,50.83933618045187,152.31681551810215,211.8023413631721,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95769,47094,446.7416387348724,5201,52.93988660213639,4139,42.53986154183504,1622,16.50847351439401,77.38146625236273,79.7042873870886,63.35451413110488,65.06761923236633,77.16810580577149,79.49546845916946,63.27378088374899,64.99168470438049,0.2133604465912384,208.8189279191397,0.0807332473558872,75.93452798583655,210.49732,147.99343283238997,219796.92802472616,154531.66769245785,498.46854,334.66058469137874,519834.6751036348,348790.63876574667,458.45846,225.20817616373373,474201.6727751151,231755.4212784931,2395.35644,1129.344916269492,2465553.9475195524,1143654.0149351829,978.49951,443.6520306710988,1006038.7494909626,447562.1241436149,1584.64172,678.4971627155078,1614979.6698305295,674079.9644121805,0.3772,100000,0,956806,9990.769455669371,0,0.0,0,0.0,43267,451.0958660944564,0,0.0,41490,428.76087251615866,1242320,0,44668,0,0,0,0,0,91,0.93976130062964,0,0.0,0,0.0,0,0.0,0.05201,0.1378844114528102,0.3118631032493751,0.01622,0.3588192152548588,0.6411807847451412,23.83255910564106,4.219396045772627,0.3181928001932834,0.24812756704518,0.2213094950471128,0.2123701377144237,11.148658665442566,5.833235963117121,17.40665423683886,11477.05290433828,47.41742059148934,12.57882332677912,14.946486147482188,10.234472480463198,9.657638636764837,0.5798502053636144,0.8081791626095424,0.7061503416856492,0.5698689956331878,0.1342434584755404,0.7413509060955519,0.927765237020316,0.8818443804034583,0.6666666666666666,0.1421052631578947,0.5128205128205128,0.7174657534246576,0.643298969072165,0.5366568914956011,0.1320754716981132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0046921237180266,0.0069891764133047,0.0094341538711511,0.0117237943201114,0.013925931958385,0.016216161121983,0.0183369218053245,0.0207601144258275,0.0229170076935668,0.025130106954063,0.0272910083309393,0.0293603814691495,0.0316443968623252,0.0338567172180582,0.0361554031725049,0.0380706982904921,0.0399469171513586,0.0419800540203615,0.0440744674205035,0.0586301541415764,0.0723905195416732,0.0862036415505957,0.0991222076215505,0.1114964946497285,0.1270769653830289,0.1372078962163079,0.1472278998467041,0.1571599478732722,0.1666595188060213,0.1776859059246579,0.1883192731992213,0.1971637992909498,0.2069968931868901,0.2157932962123379,0.2255884047692921,0.2345028521673122,0.242964363276283,0.2504144430566595,0.2574526366459983,0.2629811478067534,0.2687025045958572,0.2742697467350249,0.2777531482524353,0.2819326557623887,0.2863494722321439,0.290256833470878,0.293246370178249,0.2967082772195172,0.2989083142156475,0.2966763958196027,0.294646292530094,0.2932973079466937,0.2908610075435706,0.2882963227206516,0.2848546097661812,0.2820046782146921,0.2828952755260788,0.283788619825838,0.2843654984797568,0.2845199216198563,0.2850852188955945,0.2854699071659539,0.2858480262131377,0.2853209471592405,0.2874448767833982,0.288258948799275,0.2913457040386714,0.295472763391768,0.298151366724601,0.3039757290345952,0.308449074074074,0.3098906560636182,0.3106686701728024,0.3127340823970037,0.3151151857075693,0.318557475582269,0.3220675944333996,0.3335132218024824,0.3455438066465257,0.0,2.645491206820863,52.377748815793325,157.20362795207586,210.0173444341608,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95760,47225,449.9269005847953,5169,52.7360066833751,4133,42.606516290726816,1676,17.094820384294067,77.31912755708531,79.66738230192732,63.32066847763053,65.05760641697408,77.10718611986188,79.46022783304556,63.23972003392493,64.98109308024263,0.2119414372234302,207.15446888175396,0.0809484437056013,76.51333673145189,210.59742,148.1150095618874,219921.888053467,154672.92143054245,500.74954,335.93541439515514,522376.8379281537,350265.50362263544,451.66428,220.98425131450475,468711.90476190473,228426.0277156327,2375.87624,1120.228023289533,2450546.9089390147,1139438.8993228253,981.96253,445.4969876557908,1012063.1996658312,451936.7085124544,1627.2704,697.9078296939216,1661880.4511278195,697004.5745683052,0.37947,100000,0,957261,9996.449456975772,0,0.0,0,0.0,43518,453.8742690058479,0,0.0,40981,424.9582289055973,1241064,0,44587,0,0,0,0,0,97,1.0129490392648286,0,0.0,1,0.0104427736006683,0,0.0,0.05169,0.1362163016839276,0.3242406655059006,0.01676,0.3678737233054782,0.6321262766945218,23.632216861748844,4.210959128566938,0.3121219453181708,0.2596177111057343,0.2141301717880474,0.2141301717880474,11.626727007195178,6.323638339699343,17.972669525671257,11492.286790345144,47.5248242373783,13.158138842718891,14.765035930990472,9.93271805880964,9.668931404859302,0.5739172513912413,0.8117427772600186,0.689922480620155,0.5728813559322034,0.1175141242937853,0.7260726072607261,0.8967889908256881,0.8469945355191257,0.714975845410628,0.1527093596059113,0.5107839780896953,0.7535321821036107,0.6277056277056277,0.5294985250737463,0.1070381231671554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0043575634126815,0.0065236800454527,0.0091104836580064,0.0111460271938656,0.0131577607365087,0.0153250063726739,0.0175529959563778,0.0197848714750209,0.0220716201551974,0.0241969384721068,0.0263166000965181,0.0284873915010901,0.030554639854953,0.032511685015322,0.0344150475403059,0.0365021688044142,0.0383586083853702,0.0404825486549112,0.0424200133311114,0.0566683715541267,0.0706537089535844,0.0839626599538493,0.0965340287709262,0.1088679921566973,0.1241884661746357,0.1351294017819261,0.1456876828943868,0.1555021624219125,0.1637987413292163,0.1757490253516272,0.1874492656370071,0.1970107365466827,0.2062815086994083,0.2155896171917122,0.2259522200932561,0.2346026323721491,0.2431666010240252,0.2502639196322152,0.2574053286293555,0.2632742850526803,0.2688845446989827,0.2742951907131011,0.279163266285824,0.2840950550920633,0.2879977288997506,0.292432026061897,0.2959612689514588,0.300103734439834,0.3037053665751109,0.3009512517179121,0.2990158970476911,0.2972675746552745,0.295236855051075,0.2931769881254923,0.2898353121409421,0.2867664528391542,0.286837741548868,0.2871091082889526,0.2874216195937617,0.288857651579046,0.2897823768711244,0.2910885693926311,0.2913105731800081,0.2918689028785621,0.2929032593981047,0.295369211514393,0.2986866438892894,0.3025227750525578,0.3057485786481364,0.3092480318523211,0.3105162928480744,0.3109813524204181,0.313962321482832,0.3169542385596399,0.3195550351288056,0.323805202661827,0.326915363016446,0.3322448979591836,0.332579185520362,0.0,2.1080348438913035,52.92952711761429,156.3310154733639,212.8934921117521,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95683,47373,452.2746987448136,5116,52.224533093652994,4060,41.867416364453454,1544,15.812631292915146,77.34181859432726,79.7252819620004,63.3271521787835,65.08602727637997,77.15083365288822,79.53537139844691,63.25571899367196,65.01692894069251,0.1909849414390407,189.91056355348235,0.0714331851115375,69.09833568745682,209.08536,147.14860392067135,218518.81734477388,153787.61527196196,497.72168,334.1140354464357,519618.019919944,348628.76942240074,455.66311,223.4613224893299,472639.4970893471,230742.4239539655,2314.73288,1090.6786263907957,2388495.7202428854,1109214.9142384704,966.03184,432.6407181298949,993270.204738564,435873.8909460767,1503.53876,635.3554403607653,1541001.0555689095,637792.5588571934,0.37935,100000,0,950388,9932.67351567154,0,0.0,0,0.0,43228,451.1982274803256,0,0.0,41333,428.34150267027576,1250484,0,44827,0,0,0,0,0,84,0.8778988953105566,0,0.0,0,0.0,0,0.0,0.05116,0.1348622643996309,0.3017982799061767,0.01544,0.3474766355140187,0.6525233644859814,23.628485324175895,4.142260230145347,0.3051724137931034,0.2763546798029556,0.2118226600985221,0.2066502463054187,11.566119577532705,6.264455410925055,16.417322368145406,11519.08836988477,46.27553426375032,13.516110274008454,14.051412827632392,9.61287799706783,9.095133165041643,0.5894088669950739,0.803921568627451,0.7134786117836965,0.5802325581395349,0.1287246722288438,0.7561779242174629,0.9225941422594144,0.8609467455621301,0.6902654867256637,0.1744186046511628,0.5182712579058327,0.7158385093167702,0.658157602663707,0.5410094637223974,0.1169415292353823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020151694666383,0.004165948690919,0.0062295181761918,0.0084601165932034,0.0106357017936307,0.0129917732345035,0.0152381534823512,0.0172412033114543,0.0196240762885965,0.0218857803846901,0.0240751373964399,0.0259425484497119,0.0280752651667129,0.0299030366729522,0.0322853663067935,0.0344335377900061,0.0364037678366027,0.0383321566510237,0.0400407793856044,0.0420219752726059,0.0564817716494306,0.0697735291962014,0.0834890115656682,0.0961500015782994,0.1086568990432792,0.1247527684643616,0.1353103448275862,0.1468897688082769,0.1570439539306395,0.1657104250002681,0.1778629735725516,0.1884206883125311,0.1985905843202505,0.2080149542517955,0.2169451257740576,0.2258925407512402,0.2339043580157357,0.2422200978462576,0.2506410692808677,0.2576142713199597,0.264410346542095,0.269404311030065,0.2749926118564927,0.2807639346225229,0.2855114153588464,0.2899964286154111,0.2939102163311242,0.2976591605528501,0.3007092565748602,0.3040342781806196,0.3014606983375477,0.2991947452316825,0.2971204188481675,0.2943595515345656,0.2929574540655169,0.2898448734816265,0.2868785141196538,0.2878477737566934,0.2886968674370249,0.2888580526943125,0.2890620630511382,0.2903847667007632,0.2910141179905324,0.291322452069741,0.2926350558893223,0.2933516997608899,0.2953183999091502,0.2994739478957915,0.3035195237261425,0.3058763049667826,0.3108420623044484,0.3150250858199102,0.3189649810287989,0.3235404896421845,0.3264776727811747,0.3292998120300752,0.3334341906202723,0.3389796731765643,0.3404663923182441,0.3406928054815378,0.0,2.19261033040785,52.69952462586243,144.09536589397206,212.89886039450505,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95667,47558,453.88692025463325,5126,52.29598503141104,4016,41.26814889146728,1584,16.149769512998212,77.38307130315455,79.76038193660082,63.34642469116329,65.0979213431342,77.18046067984399,79.5615659672085,63.27012213736411,65.0255696702352,0.2026106233105622,198.81596939232796,0.0763025537991808,72.35167289900346,209.81268,147.64089487191816,219315.16614924688,154327.51034258417,498.44279,333.8506266193246,520315.69924843474,348269.8346858346,457.53341,223.8980755167385,473515.9877491716,230426.61162956705,2318.272,1086.9393481374782,2384914.672771175,1098027.0336090531,931.07047,425.8922873623689,956185.5498761327,428282.6688617918,1536.6684,652.7910025890733,1568110.9055369145,650208.0763884856,0.37993,100000,0,953694,9968.87118860213,0,0.0,0,0.0,43326,452.1412817376943,0,0.0,41359,427.5769073975352,1245992,0,44811,0,0,0,0,0,93,0.9721220483552322,0,0.0,1,0.0104529252511315,0,0.0,0.05126,0.1349195904508725,0.3090128755364807,0.01584,0.3505811773528309,0.6494188226471691,23.626122810481466,4.11418215677264,0.3296812749003984,0.250996015936255,0.2121513944223107,0.2071713147410358,11.5061176138179,6.3539394308905095,16.869467481130606,11506.255752325176,45.95551238750859,12.274086237274055,15.195938615078084,9.489183442002776,8.99630409315368,0.5804282868525896,0.7986111111111112,0.702416918429003,0.5915492957746479,0.110576923076923,0.756138865368332,0.9318734793187348,0.851063829787234,0.7363636363636363,0.160919540229885,0.5072310405643738,0.7068676716917923,0.6434599156118144,0.5411392405063291,0.0972644376899696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0043968958320669,0.0065516576910984,0.0088854137048621,0.010970464135021,0.0131722263505603,0.0153418010560867,0.0174442936030785,0.0197377163124916,0.0218969135486512,0.0238781180475101,0.0260104329253265,0.028076887476474,0.0301182481150344,0.0323109776856179,0.0341887408662939,0.0362673904260719,0.0382882882882882,0.040328618968386,0.0422398699349674,0.0571115173674588,0.0717022613065326,0.0851657574485942,0.0977456258411843,0.1093468290368496,0.1247925234435293,0.1353758083324499,0.1456330298647153,0.1558128367924025,0.1641539961640254,0.1766509586211348,0.1885103208157174,0.1991609242875464,0.2090455996152669,0.2180522251798403,0.2277164098075495,0.236970529442639,0.2455713593927722,0.2528243616091197,0.2591400190190305,0.2645963020387383,0.2697195955434884,0.2756252368321333,0.2799227567677785,0.2842573571419889,0.2880026636084495,0.291765766216859,0.2953356665606109,0.2987317502882385,0.30231913517509,0.3004641151543687,0.2971335128895729,0.2957415689252665,0.293197494877197,0.2909684116861931,0.2879214342531971,0.2847363844755355,0.2848438191020622,0.2848661651056861,0.2853070605212991,0.2861214605067064,0.2878073689999214,0.2878267208164115,0.2884534204270257,0.289663232207594,0.291520256304258,0.2923810060906835,0.2973603208655909,0.3024420788979336,0.3053366270634827,0.3073938737763342,0.3123266160690918,0.3157372371440977,0.3202394313505424,0.3281853281853282,0.3346415791296317,0.3341239252890602,0.3362369337979094,0.3343007915567282,0.3355263157894737,0.0,2.7364805606311786,50.838676151375886,149.83263192137372,205.936684327894,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95702,47719,454.4419134396355,5128,52.485841466218055,4066,41.9949426344277,1554,15.882635681594952,77.3960056150407,79.78101226633297,63.35197710932333,65.11321653873125,77.19239852485828,79.57953584492452,63.27407593715198,65.03863388682429,0.2036070901824302,201.47642140844368,0.0779011721713516,74.58265190696522,210.68212,148.201641457574,220143.9050385572,154857.41307138198,504.23391,338.8288428788799,526386.2615201354,353552.8127718124,460.43008,225.70615564622167,478144.6051284194,233499.9875301788,2323.3988,1093.3398273528326,2400634.4277026607,1115333.2086610862,913.22783,414.8338036241415,944359.7312490856,423589.314637904,1518.99902,652.3114469812726,1554839.6480742304,653546.4919419491,0.38111,100000,0,957646,10006.541138116236,0,0.0,0,0.0,43907,458.27673402854697,0,0.0,41652,432.2793672023573,1239480,0,44414,0,0,0,0,0,82,0.8568263986123592,0,0.0,1,0.0104491024221019,0,0.0,0.05128,0.1345543281467293,0.3030421216848674,0.01554,0.3502698678578075,0.6497301321421924,23.407918968303047,4.134159507453644,0.3128381701918347,0.2656173143138219,0.2080668962124938,0.2134776192818495,11.039616376761312,5.753987093979306,16.480789155657767,11553.645672540426,46.31610414104838,13.215719517009362,14.319747714032012,9.3778091779317,9.402827732075298,0.572798819478603,0.8037037037037037,0.6831761006289309,0.5839243498817966,0.1129032258064516,0.7545909849749582,0.9157667386609072,0.8821752265861027,0.7677725118483413,0.1347150259067357,0.4968619246861924,0.7196110210696921,0.6131774707757705,0.5228346456692914,0.1066666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678130413201,0.0044614791831437,0.0067802115263595,0.0093472186944373,0.0117592008626126,0.0138985052743045,0.0159466541594869,0.0184585855904603,0.0206608190721544,0.0227844991709144,0.0250256305105597,0.0270647665201856,0.0292184752090339,0.0316742547537133,0.0334812216260833,0.0357656009344538,0.0378177373578339,0.0395897776578297,0.0413095931441883,0.0433146775891358,0.0579799456862335,0.0718337275257969,0.0842030186383612,0.0962569656187572,0.1084254798823616,0.1242848229110483,0.1355784738137679,0.1459324794787441,0.1559845724847487,0.1648163046393135,0.1775800596744832,0.1893432868116412,0.1998978283080802,0.2087369088484159,0.2175046186328846,0.2271750924511171,0.2355860930476392,0.2439046313565987,0.2517137062509206,0.2587515719675317,0.264740178025099,0.2712277916559662,0.2761027457927369,0.2806702788044063,0.28525893517228,0.2897799186522321,0.2930972126956413,0.2974422023930237,0.3010214609987618,0.3041495248485167,0.3018432870835847,0.2988414450439594,0.2961357130830106,0.2940439683842266,0.2924750277469478,0.2900613160062231,0.2866354506613694,0.2869566638876628,0.2881583646536623,0.2885158539834799,0.2893819334389857,0.2912869264613451,0.2913261380414665,0.2922937121833374,0.2927108692539023,0.2945026516621394,0.2936776742873271,0.2973614363778298,0.3012862969289225,0.3030159482078004,0.3054786437292905,0.3069197018554739,0.308484582051121,0.311880063602635,0.3154677950164551,0.3183654074602043,0.3220313212710962,0.3262797259169689,0.3332424325061358,0.3363879343260786,0.0,1.8593699788069225,52.34071680838772,146.74534053390155,212.94012088055456,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95828,47346,449.7641607880786,5175,52.85511541511875,4059,41.81450098092415,1589,16.247860750511332,77.38566316619061,79.70732495277754,63.36611244363343,65.08437990218428,77.17777956258368,79.50257726034839,63.286639659904765,65.0088589528844,0.2078836036069304,204.7476924291516,0.0794727837286615,75.52094929988584,210.25774,148.01398996584498,219411.5916016196,154457.9767561099,501.60437,336.3165471550423,522922.42350878654,350438.57448245015,453.19751,222.69051917203828,469942.125474809,229971.21944427,2345.23972,1106.121487671026,2416495.387569395,1123430.487614294,944.60552,431.3785904513393,972212.1405017322,436641.1909372413,1557.4033,671.1913005977083,1592888.717285136,670772.6898315937,0.37957,100000,0,955717,9973.25416370998,0,0.0,0,0.0,43658,455.03401928455145,0,0.0,41120,426.1176274157866,1246534,0,44692,0,0,0,0,0,79,0.8243937053888216,0,0.0,2,0.0208707267187043,0,0.0,0.05175,0.13633848828938,0.3070531400966184,0.01589,0.3598596750369276,0.6401403249630724,23.59183347254193,4.288213811039353,0.3104212860310421,0.2638580931263858,0.2005420054200542,0.2251786154225178,11.05590135234718,5.682647338140807,17.093218315947478,11501.996687321578,46.531878893520776,13.103804286261912,14.334976137810964,9.154015385119768,9.939083084328123,0.5659029317565903,0.8197945845004668,0.6746031746031746,0.5675675675675675,0.1170678336980306,0.7332242225859247,0.9292035398230089,0.8696883852691218,0.6682692307692307,0.1435406698564593,0.4938315121607332,0.7399030694668821,0.5986769570011026,0.533003300330033,0.1092198581560283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002228231695583,0.0044098415498312,0.0068201885700946,0.0089712067949525,0.0113002970015053,0.0136544140107931,0.0159414528738443,0.0185427084396366,0.0207266595124942,0.0227289008053869,0.0249748918813667,0.0268916533234799,0.0289828261338759,0.0308804002099867,0.0331315672788393,0.0352015204412584,0.0372696514118389,0.0393258426966292,0.0414217773254968,0.043280087413497,0.0571649124271095,0.0710231133505472,0.0848374316080749,0.0976076152852054,0.1095438744337933,0.1254198618416883,0.1362885112514302,0.1465167201683709,0.1555749927999232,0.1645226593545484,0.1766527925660633,0.1880887563736928,0.1985127286543994,0.207876267504939,0.217084742784343,0.2259976337641946,0.2336512109801475,0.2423922445265723,0.2499263622974963,0.2564392770175258,0.26309041133867,0.269000933706816,0.2736825947835122,0.2774762713080068,0.283022067194729,0.2879597224780499,0.2925937936539612,0.2967813090272936,0.3000232246077622,0.3032945354113237,0.3008139909735654,0.2981249656838522,0.2960095545876071,0.293183751748403,0.2895879972127915,0.2853911289089964,0.2833718098731855,0.2849624553234744,0.284777149495191,0.2861043689320388,0.2874369040942232,0.2884065120868278,0.2902988987939171,0.2911604805691657,0.2923039865108996,0.2929345696748073,0.2945521962350256,0.299519185443575,0.3004990160247399,0.3037592791076178,0.3076398362892223,0.3103685295828266,0.3161524956107349,0.3191312244589072,0.324037558685446,0.3246308328411104,0.3285127112193636,0.3323281061519904,0.3414434117003827,0.3406261788004526,0.0,2.1154603485262475,53.32016857733432,148.2275054152508,208.3387349127931,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95748,47330,449.84751639720935,5200,52.92016543426495,4095,42.006099344111625,1620,16.37632117642144,77.37657405990127,79.72340861571867,63.3458979718325,65.08006748105763,77.16503487336497,79.51764592227514,63.26541197132054,65.00475753946415,0.2115391865362994,205.76269344353196,0.0804860005119607,75.30994159347415,210.31428,147.99571930782585,219653.96666248905,154567.9484770709,497.8624,333.30246147020216,519215.0123240173,347347.256830641,456.63455,224.1794872312043,472239.2948155576,230421.31423049013,2352.89152,1116.4553025040707,2417649.41304257,1126305.2413669955,980.82588,444.92036819083137,1008114.7595772236,448410.6280975381,1583.15722,680.1286394453602,1604839.9339933994,671754.9540074838,0.38007,100000,0,955974,9984.27121193132,0,0.0,0,0.0,43414,452.63608639344943,0,0.0,41425,427.9462756402222,1244540,0,44698,0,0,0,0,0,82,0.8459706730166687,0,0.0,1,0.0104440823829218,0,0.0,0.052,0.136816902149604,0.3115384615384615,0.0162,0.345246868091378,0.6547531319086219,23.678346840530757,4.143207604098174,0.2984126984126984,0.2761904761904762,0.2112332112332112,0.2141636141636141,11.42776619816489,6.275593873073916,17.38068811421465,11566.129314834914,46.85478485074332,13.718522446446595,13.8990794573045,9.555267788836137,9.681915158156093,0.578021978021978,0.8072502210433244,0.7103109656301145,0.5549132947976878,0.1208665906499429,0.7556109725685786,0.9366515837104072,0.8642659279778393,0.7285714285714285,0.1578947368421052,0.504149377593361,0.7242380261248186,0.645760743321719,0.499236641221374,0.1106259097525473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002714473817482,0.0050988859491733,0.0073662209054566,0.0096407818277865,0.0116752095028882,0.0137676805735175,0.0158150727534133,0.0183362600563564,0.0205992700804547,0.0224590281403228,0.0245577352766332,0.026894137693879,0.0293204482368664,0.0315354748344439,0.0336015681419581,0.0357017344386331,0.0377231495671623,0.0394530723185293,0.0415332473905268,0.0435339575283543,0.0580026303154291,0.072162145202786,0.0858922075335213,0.0984845300151336,0.1105408481578281,0.1258997748580971,0.1370942091982782,0.1477651164522753,0.1569167681168706,0.166162688455682,0.1783306408185245,0.1887172163074526,0.1997389175958662,0.2096435370577036,0.2182993152343836,0.227858203826457,0.2368265311819552,0.2448540914052916,0.2522528657360118,0.2581794029064507,0.2641740800296149,0.269488453668518,0.2752296832322372,0.2803740555814983,0.285153973188265,0.2894396472080905,0.2924491759443215,0.296318870392239,0.3000943408418304,0.3031900175246729,0.3012452814980991,0.2988687223701914,0.2969342737516509,0.2939649578195976,0.2917845766353063,0.2885990102034582,0.2852630914029436,0.2851414824149387,0.285901762279715,0.2858261132558843,0.2867479340388139,0.2889427434290893,0.2892686289665545,0.2909822401031363,0.2922458549656674,0.2940733821163527,0.2958125566636446,0.2998409083819446,0.3051551429269484,0.3073581105098937,0.309504394310048,0.3124372854502245,0.31586835695997,0.3204557458688599,0.3239043453987159,0.3273389750822755,0.3311107743597515,0.3375619425173439,0.3338722716248989,0.3385767790262172,0.0,3.0379053999628587,51.39282840898266,151.4583863193688,212.5881300389348,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95751,47396,451.1075602343578,5143,52.45898215162244,4078,42.00478323986172,1618,16.490689392277886,77.3313489084019,79.69738010650057,63.31030609897547,65.06310173826611,77.12430692291248,79.49570733202607,63.23152680009402,64.98913001953372,0.2070419854894254,201.6727744745026,0.0787792988814501,73.97171873239472,210.25554,148.02776676968804,219585.73800795813,154596.575252152,502.91895,336.192175961455,524638.8027279088,350513.4421170067,458.7827,224.26197416641637,475612.9544338963,231396.4180276109,2355.0366,1104.0467846713884,2427428.601267872,1120925.4677981313,976.84726,436.8330700928303,1006739.511858884,442774.1965325674,1579.38304,674.1371467126113,1612591.7640546835,672248.6395371152,0.37974,100000,0,955707,9981.169909452645,0,0.0,0,0.0,43703,455.7968062996731,0,0.0,41597,430.9197815166421,1240738,0,44514,0,0,0,0,0,77,0.8041691470585163,0,0.0,1,0.0104437551566041,0,0.0,0.05143,0.1354347711592142,0.3146023721563289,0.01618,0.3495995529893835,0.6504004470106165,23.73008706468934,4.166940859106679,0.3138793526238352,0.2506130456105934,0.2236390387444826,0.2118685630210887,11.41241814004479,6.124328597881412,17.263399975086735,11523.13893344042,46.44868721317665,12.475149075793396,14.420491992001317,10.119332667751792,9.433713477630132,0.5738106915154487,0.7827788649706457,0.69140625,0.6096491228070176,0.1145833333333333,0.7551724137931034,0.9298245614035088,0.8859649122807017,0.7668161434977578,0.1581632653061224,0.5017135023989033,0.6886035313001605,0.6204690831556503,0.5587808417997098,0.1017964071856287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023607128744972,0.0045833882596306,0.007064196904339,0.0094797805324121,0.0118313699159698,0.0140847939220498,0.0165798248207931,0.0187977985848045,0.0206302611257146,0.022748222955118,0.0247271906793567,0.0269070735090152,0.0290618696743918,0.0310319595172577,0.0330718414533443,0.0351071310390469,0.0370305170396296,0.0388933856339372,0.0409156115511757,0.0429651695692025,0.057551778854184,0.0716834625728607,0.0840834225047733,0.0973308934881373,0.1094603429005251,0.1252445976962863,0.1366429306703738,0.1468702062382819,0.1572393595416746,0.1667239010989011,0.178925584202811,0.189942923981675,0.2003375251782895,0.2098820850257836,0.2188491014799154,0.2279147634041421,0.2367583503634962,0.2442423287331997,0.2514753279767579,0.2585195370688667,0.263933420531756,0.2699139394649025,0.2753765747401605,0.2806320314094637,0.2847620090257757,0.2890456400833631,0.2929213286275687,0.2963962129695612,0.2998095336814418,0.3023639289765981,0.3002557889068389,0.2969830252216343,0.2938421289524023,0.2921024161557879,0.2902896081771721,0.2864580947582184,0.2836056266952627,0.283734929904631,0.2839956376525117,0.2848222862632084,0.2845727301581374,0.2861476039471352,0.2863342374295848,0.2868056483585015,0.2875098757451698,0.2885798064198043,0.2886968838526912,0.292477363160698,0.297699214365881,0.3008291347641528,0.3046003085019508,0.3096644861785186,0.3139265837033331,0.3133720491741458,0.3133154436939021,0.3162155910247513,0.3168993168993169,0.3246551389158733,0.3205399682371625,0.3192350128723795,0.0,2.237740885709252,50.42949259285586,152.10601945210306,213.99819921632,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95496,47576,455.0661807824412,5103,52.52576024126665,3993,41.279215883387785,1545,15.85406718606015,77.22623088476638,79.71342443239473,63.24095407219974,65.076069098777,77.03221777603808,79.51966428778796,63.169196912339295,65.00642907780394,0.1940131087282992,193.76014460677027,0.0717571598604465,69.6400209730541,210.44188,148.03773802822133,220367.21956940604,155019.83122667056,500.49498,336.1218961963517,523583.0401273352,351464.2280361217,454.31642,222.1318826816327,471869.9736114602,229664.45776662367,2288.55988,1062.002787022232,2367836.4748261706,1083816.3419789788,924.68429,408.3512922782474,956225.6010722962,415540.129720876,1507.88586,632.567861160341,1548834.3804976123,637674.2101460736,0.37938,100000,0,956554,10016.691798609369,0,0.0,0,0.0,43571,455.7154226355031,0,0.0,41150,427.0754796012399,1234085,0,44314,0,0,0,0,0,76,0.7958448521404038,0,0.0,0,0.0,0,0.0,0.05103,0.1345089356318203,0.3027630805408583,0.01545,0.3439609902475619,0.6560390097524381,23.87276854170793,4.025953090084473,0.304282494365139,0.2807412972702229,0.2023541197094916,0.2126220886551465,11.089272287941627,6.006129745919736,16.488016014611286,11540.45566554388,45.77568230273114,13.68815928212675,13.815511866615887,8.993067051287246,9.27894410270126,0.5755071374906086,0.776092774308653,0.6888888888888889,0.6113861386138614,0.1142520612485276,0.7618213660245184,0.9212253829321664,0.8757763975155279,0.7538461538461538,0.119047619047619,0.5008768853034024,0.6762048192771084,0.6215005599104143,0.566068515497553,0.1130690161527166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381162284035,0.0043210565287512,0.0063760229049485,0.0085917641077783,0.010740755823424,0.0128828415634714,0.0151736242206553,0.0173298183230131,0.0195709331232672,0.0215876723837626,0.023751847594022,0.0256940160394818,0.0279768524239054,0.0298070278577101,0.0320710853954641,0.0341457354067877,0.0363900414937759,0.0383260049271837,0.0404954889254682,0.0421748391947205,0.0572855064423952,0.0715514708968064,0.0842928799015741,0.0970522832421722,0.1088966617704557,0.1254557402068848,0.136950767039112,0.1468150250168023,0.1568644249303919,0.1653412144008597,0.1778027244662248,0.1888846716911565,0.1999367702689443,0.20863112202394,0.2170445143140824,0.227060117546413,0.2357368944960798,0.2443109453016692,0.2526237989652624,0.2590859030837004,0.2651750521678646,0.2700611857373936,0.2748135058527734,0.2806861590947312,0.284986843387584,0.2894544915139004,0.2933376861455011,0.2966769222913022,0.3008905852417303,0.3042173056323313,0.302291992872955,0.2991198710797074,0.2971007343302936,0.2950580555716018,0.293085762706825,0.2896911167318157,0.2872450030908716,0.28811414106547,0.2884125164667841,0.2895324930723161,0.289311475409836,0.2898954566115294,0.2916867192567638,0.2915932067218639,0.2932305630026809,0.2946032240479713,0.2941059734074221,0.2983345855246682,0.3018940452893486,0.305873047261222,0.3087266615181938,0.3140578791719476,0.3177680798004987,0.3238717428850342,0.3285740604274134,0.3304770727188513,0.3327283726557773,0.3350912778904665,0.3444596443228454,0.3418640183346065,0.0,2.0652620354085163,50.03367904544016,151.37631570344095,207.99521557885652,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95705,48141,458.5758319836999,5213,53.17381537014785,4142,42.641450289953504,1635,16.665795935426573,77.36399481233721,79.74872447244837,63.33329461681414,65.0973539276948,77.16199226019081,79.55086864415054,63.25731941069336,65.02554563761923,0.2020025521463964,197.85582829783263,0.0759752061207876,71.8082900755661,210.16292,147.93725110429864,219594.5039444125,154576.30333242632,507.89628,340.3331807731802,530000.4910924195,354917.5808716161,459.47928,224.89769717710345,476479.212162374,232203.08719155888,2388.0192,1108.9053015117274,2461650.0705292304,1125132.753264435,978.96448,443.0744635050744,1008918.0711561568,449066.0985811096,1585.8682,668.2984454813306,1619150.869860509,666034.2938016537,0.38531,100000,0,955286,9981.56836110966,0,0.0,0,0.0,44212,461.3029622276788,0,0.0,41652,431.5761976908208,1239658,0,44471,0,0,0,0,0,84,0.8672483151350504,0,0.0,0,0.0,0,0.0,0.05213,0.1352936596506709,0.3136389794743909,0.01635,0.3523582308680492,0.6476417691319508,23.598058634184436,4.261880144993832,0.3242394978271366,0.251569290197972,0.2168034765813616,0.2073877353935297,11.482364208260844,6.19938835618205,17.3314970938482,11653.293860791524,46.87686189806662,12.738447804040186,15.047912713782486,9.707418822745588,9.383082557498367,0.5729116368903912,0.8157389635316699,0.6939687267311988,0.544543429844098,0.1187427240977881,0.7597623089983022,0.9157175398633256,0.8622589531680441,0.7463414634146341,0.1578947368421052,0.4986504723346828,0.7429519071310116,0.6316326530612245,0.4848484848484848,0.1090116279069767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021377696274607,0.0045230054661433,0.0069946398115812,0.0092180417505132,0.0114267689615173,0.0137029565784379,0.0160451262801419,0.0183320397075043,0.0204657727593507,0.0227423995740279,0.0250528129294255,0.0271855229644236,0.0293358294160606,0.0313855601693954,0.0334172721268163,0.0353812113567278,0.0373742710048996,0.039359946869779,0.041486055238511,0.0436037425243284,0.0580248976522683,0.0714883818296001,0.0849331738738171,0.0975876501146234,0.1100406855408225,0.1257757900635434,0.136300977668441,0.1471623849795223,0.1571160169093471,0.1657396392630936,0.1783777385615288,0.1898647917793401,0.2003827584707059,0.2104779713282813,0.2188599964801126,0.2292704527842355,0.2379428036048898,0.2460924322500843,0.2539538472011073,0.2616360264658073,0.2673311978907686,0.2731715301159745,0.2785837691998201,0.2839359739295042,0.2883452713366517,0.2920425872361376,0.2970199254981374,0.301238173852308,0.3044528555373267,0.3074908880380005,0.3053821472203203,0.3031296286137473,0.3009279407016411,0.2987108390349298,0.2963922102521605,0.2932860037477719,0.2893113433211632,0.289157608252799,0.2894794864401893,0.2901513941394671,0.2900387712496272,0.2906967599874174,0.2924954697881735,0.2936537990332568,0.2944552040743132,0.2959324236517219,0.296444709693921,0.3004596479159501,0.3039479665699199,0.3074554998618621,0.3134490238611713,0.3161381921438713,0.3169155477475216,0.3187656760659725,0.3198719759013461,0.3229857819905213,0.3230911046243662,0.3178026449643947,0.3187086092715231,0.3176379776148205,0.0,2.424661885393283,50.909694171742906,149.1147363699361,221.2997766689664,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95671,47080,448.652151644699,5149,52.65963562626083,4074,42.00855013535972,1537,15.710089786873764,77.31725194233033,79.72486210483078,63.30264576078415,65.08466330545258,77.11962269238292,79.53061579944591,63.2272546404032,65.01316550862403,0.1976292499474112,194.24630538486556,0.0753911203809494,71.4977968285524,210.71336,148.20833124274864,220247.89121050268,154914.58356529006,499.57556,335.0345917833515,521646.0787490462,349659.82563509484,455.05352,223.5578339784644,472450.53359952336,231242.9518119149,2343.14692,1105.8545050313448,2417931.076292712,1124652.637718164,946.11049,425.8410473259398,975187.8834756614,431376.8616675264,1493.45754,639.7143683176507,1527398.9819276475,638825.1445843106,0.37754,100000,0,957788,10011.267782295576,0,0.0,0,0.0,43480,453.8993007285384,0,0.0,41287,428.2697996258009,1240580,0,44568,0,0,0,0,0,83,0.8675565218300216,0,0.0,0,0.0,0,0.0,0.05149,0.1363828998251841,0.2985045639930083,0.01537,0.3594358879198367,0.6405641120801633,23.617928451316804,4.1525300393207445,0.3134511536573392,0.2700049091801669,0.2093765341188021,0.2071674030436917,11.134229563025697,5.9924214499916575,16.475663421668784,11505.519857517163,46.669789630185456,13.375468788111302,14.45492654213595,9.612079115387504,9.2273151845507,0.5844378988708886,0.8063636363636364,0.696945967110415,0.5908558030480656,0.1184834123222748,0.7479541734860884,0.9,0.8554913294797688,0.7522522522522522,0.1521739130434782,0.5143758765778401,0.7365079365079366,0.6380236305048335,0.5340729001584786,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026239273810368,0.0050195203569436,0.0072967514740655,0.0097247202999725,0.0118125858472808,0.0139553835183864,0.0160467631036663,0.0181329682902909,0.0201857952569008,0.0222832378825289,0.0242946547655688,0.0265521280749707,0.028904649654647,0.0308063468497726,0.032853424770718,0.0348060010346611,0.03694565961064,0.0389124858504771,0.0407437079271274,0.0425114931145558,0.0569410633874186,0.070978281357991,0.0841477624631276,0.0974821922708668,0.109117187829683,0.1249536992941126,0.1355410497266889,0.1463580884623987,0.1561845311898755,0.1653397995751164,0.1769851444084156,0.1887090663058186,0.1987941317313133,0.2078439528443359,0.2163966206615484,0.2260595850328072,0.2343600044637875,0.2421600827859264,0.2497504650424209,0.255872790548585,0.2622804784932552,0.2678335496392952,0.2740582060052312,0.2791957245907925,0.2833626920974306,0.2884259829902625,0.2915769981482408,0.2955787760913228,0.2994929766924489,0.3032981217565396,0.3012925590519442,0.2979246163559996,0.2957730655806769,0.2933419801124081,0.291328999317244,0.289308946200352,0.2860799494390899,0.2869872886908662,0.2869106382978723,0.2862221590202108,0.2871677120669056,0.2886273274810061,0.2897293908682478,0.2901658345221112,0.2914735755276491,0.2931343749187615,0.2932569613792321,0.2976863271614575,0.303586380128384,0.307607410327158,0.3113327289211242,0.3152007597741782,0.3189903545033195,0.3217833042687087,0.3223875011694265,0.3288330594036158,0.330030487804878,0.3344064386317907,0.3345844504021448,0.3349496456546065,0.0,2.2782839370948693,52.99393833100546,147.2437086649807,212.37431266261947,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95870,47122,449.3793678940231,5136,52.414728277876286,4023,41.52498174611453,1568,16.042557630124126,77.4717338221379,79.7592415259262,63.40399372213196,65.09101691519581,77.2727335562741,79.56044870799603,63.32859155454539,65.01788608185477,0.1990002658638019,198.792817930169,0.0754021675865672,73.13083334103965,210.25532,147.80694753820765,219312.9446124961,154174.34811537253,497.7935,334.32396431796656,518808.2403254407,348297.0591810261,450.20412,220.6894978892886,467008.3759257328,228177.8052794356,2312.02184,1083.311021682775,2387397.308855742,1105797.3159987105,959.47451,431.032103475119,990115.667049129,438908.4004121401,1533.20334,653.5278560853179,1569637.884635444,656219.8932189693,0.37803,100000,0,955706,9968.770209658913,0,0.0,0,0.0,43333,451.5489725670178,0,0.0,40729,422.26974027328674,1249803,0,44766,0,0,0,0,0,79,0.8240325440700949,0,0.0,1,0.0104307916970898,0,0.0,0.05136,0.1358622331560987,0.3052959501557632,0.01568,0.3593574897273067,0.6406425102726934,23.66755161412971,4.195266990906718,0.3114591101168282,0.2622421078796917,0.2087994034302759,0.2174993785732041,10.992636763398949,5.821042224951027,16.758499631559335,11439.18236960354,45.8929182064973,12.888079893233884,14.215649033213555,9.283284577471896,9.50590470257797,0.5781754909271688,0.7838862559241706,0.6983240223463687,0.6059523809523809,0.1314285714285714,0.7453151618398637,0.9279475982532752,0.8357771260997068,0.703125,0.1639344262295081,0.5093015093015093,0.6733668341708543,0.6469298245614035,0.5771604938271605,0.1228323699421965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021965786010729,0.0044169342829066,0.0065403881644324,0.0086175395858708,0.0109848792781074,0.0132876168771048,0.0152697416673457,0.0174726384398045,0.0194636766537998,0.02173157162726,0.0237302717151957,0.0256394478288515,0.0278083106476963,0.0299513329423506,0.0318101697710616,0.0336537965076054,0.0353873366917339,0.0372281989096863,0.0391472747474118,0.0411181300669171,0.0566840458811261,0.0710328245870792,0.0839953050659177,0.0967280980099607,0.1088672702551724,0.1236639284468267,0.1348588636990223,0.145025905082077,0.1549991992740084,0.1643963346015755,0.1761021855394978,0.187408808430154,0.1981475247847284,0.2075617957900253,0.2168369028006589,0.2257679426101758,0.23499994431017,0.2425681440567605,0.2503510281728417,0.2573708458610085,0.2628334622355101,0.2688795325456899,0.2740945365254758,0.2794309283280531,0.2829149993937189,0.2866227935297373,0.290440992858213,0.2949492385786802,0.2988790743323519,0.3022858195018018,0.3000255078067314,0.2966367559421878,0.2939823579732705,0.2917631158972295,0.2888803465558792,0.2858883743602242,0.2822413141993957,0.282992398290431,0.2842023135113131,0.2857446431733664,0.2857514735687324,0.2870834966679733,0.2875064908090144,0.2871320027468267,0.2891279512566641,0.2902934420729346,0.2910882725608897,0.29722187771301,0.3001928507472966,0.3037501460337241,0.30649478097957,0.3096022162981548,0.3140120654269544,0.3151853809559767,0.3157302316855829,0.3180905116388987,0.322015995171269,0.317794088474509,0.315676257058349,0.3204647676161919,0.0,1.6997642425528423,51.49261307785496,151.26336651214586,205.0689413183248,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95741,47220,449.3372745218872,5138,52.391347489581264,4088,42.103174188696585,1534,15.688158678100292,77.34438518034166,79.69868988129087,63.33412346583962,65.07292144956469,77.14801656311417,79.5025601468231,63.26000485895101,65.00070773641403,0.1963686172274918,196.1297344677746,0.0741186068886108,72.21371315065994,210.25796,147.88416364933224,219610.97126622868,154462.50848573988,500.52676,335.7112309559895,522173.7291233641,350028.41578670155,451.85007,221.56485377227293,467641.3971025997,228143.25749552328,2326.55644,1091.4445283180212,2398761.3666036497,1108964.6589386328,933.25432,423.7393553572557,959653.1788888772,427625.26504572,1492.24548,637.859470114699,1528451.488912796,641172.5129983171,0.38011,100000,0,955718,9982.316875737668,0,0.0,0,0.0,43608,454.8417083590102,0,0.0,40962,423.5802843087079,1243221,0,44633,0,0,0,0,0,77,0.8042531412874317,0,0.0,0,0.0,0,0.0,0.05138,0.1351713977532819,0.2985597508758271,0.01534,0.341576794347341,0.658423205652659,23.930235698407188,4.177613597725823,0.3231409001956947,0.2654109589041096,0.2081702544031311,0.2032778864970645,11.31516499971025,5.997582163758996,16.37421035227878,11540.415167978865,46.45180131924651,13.129139870565073,14.78768626509334,9.339623964113144,9.19535121947495,0.5758317025440313,0.7972350230414746,0.6934140802422407,0.5769682726204466,0.098676293622142,0.7281067556296914,0.905829596412556,0.8480662983425414,0.6896551724137931,0.1170212765957446,0.5126341294565594,0.7214397496087637,0.635036496350365,0.5416666666666666,0.093312597200622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0046637535104883,0.0068791282379082,0.0090693966261438,0.0116721231469996,0.0139260737226797,0.0161533601027292,0.018266238073371,0.0203635397615228,0.0225930890523795,0.0245821848326177,0.0266447706045365,0.0286251889324161,0.0309165808444902,0.033011130940714,0.035177281511259,0.0374598902805092,0.0393661592068693,0.0411656499101027,0.0429868966522925,0.0568848522810314,0.0708029426230365,0.0836873184187617,0.096630702252508,0.1087199493884436,0.1242228801015013,0.13532917621108,0.1464558887671407,0.1566474790948022,0.1664397585840935,0.1785741197239954,0.1894712932116125,0.2002565858856018,0.2091790449333814,0.2188620318032859,0.2284351060532258,0.2370532376669605,0.245214907446976,0.2521952215642229,0.2594225132808206,0.2657320007403294,0.2711840612094481,0.2765280160937222,0.2806927071465406,0.284909075448549,0.2881861795937496,0.292590040714062,0.2955442896084376,0.2991282496340721,0.3018462066326194,0.2989761459496549,0.2960916886543535,0.2951239413634957,0.2931967390520164,0.2908060303893637,0.2874584984470387,0.285416007592534,0.2855504775009419,0.2871071112020181,0.2871489876956498,0.2884888324493912,0.289397040302267,0.289455015857119,0.2903685876008379,0.2919303797468354,0.2923975090814737,0.2940309506263817,0.2991546649968691,0.3035215204024595,0.3054434686288472,0.3085476653256792,0.3118171742228321,0.3168125,0.3232247410298754,0.3230941077911198,0.3208631406121731,0.3251636474349216,0.3283551554828151,0.3287292817679558,0.3364269141531322,0.0,2.272454326904942,52.0138261219782,144.34110514494077,217.7513260381588,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95657,47636,455.356116123232,5126,52.20736590108408,4010,41.19928494516868,1531,15.534670750703034,77.28108161739658,79.66876582216818,63.29287913429015,65.05589086938592,77.09041924733583,79.48628030846817,63.22013488283133,64.98968210909996,0.1906623700607497,182.48551370001564,0.0727442514588219,66.20876028596001,211.12322,148.56628961160558,220708.59424819928,155311.46660631796,501.82421,336.57706053891053,523898.9828240484,351149.3153024981,461.19127,226.12337926598883,478075.2584755951,233153.16393427897,2304.49444,1087.2696917842595,2369551.041742894,1097062.0987321998,954.03391,431.2771941789461,979652.2261831335,433161.4144066246,1496.17008,634.5957878924481,1520269.567308195,624641.490078686,0.38135,100000,0,959651,10032.208829463603,0,0.0,0,0.0,43629,455.3665701412338,0,0.0,41727,432.1900122312011,1233394,0,44286,0,0,0,0,0,77,0.794505368138244,0,0.0,1,0.0104540180018189,0,0.0,0.05126,0.1344172020453651,0.2986734295747171,0.01531,0.3498791596951106,0.6501208403048894,23.752720460009076,4.174903669400617,0.3206982543640898,0.2630922693266833,0.2029925187032419,0.213216957605985,11.632306837476984,6.304173482965002,16.25413346076607,11562.249420171298,45.8371152379524,12.733815443235276,14.792692379085786,9.088178079943782,9.222429335687549,0.5925187032418953,0.8113744075829384,0.7216174183514774,0.6044226044226044,0.1169590643274853,0.7552565180824222,0.9305210918114144,0.8883248730964467,0.7281553398058253,0.1236559139784946,0.5239276852180078,0.7377300613496932,0.647982062780269,0.5625,0.1150971599402092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779871346806,0.0044100203773355,0.0064950221744116,0.0086456502524611,0.0105567194841649,0.0128508003747301,0.0148663254277382,0.0169069302078654,0.0190339892665474,0.0211977604683773,0.0233054105874029,0.0254222496021356,0.0275609580518104,0.0296223790634176,0.031881186075074,0.0338313601819779,0.0359136911236106,0.0381437734830714,0.0399654645127063,0.0418807784112821,0.0573288336763799,0.0714465224402605,0.0843331758778145,0.0981091574860317,0.1105260936543777,0.126346304407626,0.136903118962186,0.1474936622568756,0.1579594542577306,0.1673020134228187,0.1802679264820088,0.1916337036033595,0.2018470519047722,0.2117867349955652,0.2196882058062028,0.2292285853701814,0.2373347340657375,0.2451678305924758,0.2532807653414836,0.2594418583319957,0.2654990269669168,0.2708008761962773,0.276282720030349,0.2820149585219155,0.2868366006713042,0.2907530276496559,0.2948093419322522,0.2979636539612597,0.3016588906168999,0.3045408304818274,0.3017402909022282,0.2984945110948885,0.2964280672031625,0.294505876223007,0.2918309943000015,0.2885299166257969,0.2852101531839473,0.2852920894493153,0.2867025365103766,0.2871966765917236,0.2877581977190584,0.2883801005263783,0.290051828692532,0.2898271693382287,0.2908006158583526,0.2912724815469383,0.2933883122422863,0.2983992467043314,0.3025658928259731,0.3058939483540311,0.3099005424954792,0.3121378147718892,0.3157927629523154,0.3211229545113346,0.3228018159918465,0.3244239631336406,0.3237237237237237,0.3234772324068598,0.3309428950863213,0.3333333333333333,0.0,2.8669150140027075,50.98442932967743,142.6845385819343,213.0452767471572,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95732,47467,451.2702126770568,5095,52.1978021978022,4072,42.023565787824346,1564,16.00300839844566,77.3612597271838,79.72720665525891,63.34108899169471,65.08919369749557,77.16771044096862,79.536213189463,63.26895897673951,65.02049463966148,0.1935492862151875,190.9934657959127,0.0721300149551993,68.69905783409536,210.83238,148.3568172812848,220231.87648853048,154970.9786500698,503.87137,338.02073573897286,525809.6874608282,352564.96859876823,457.88339,223.91326435716977,475201.2493210212,231470.76891762644,2369.3144,1104.4666987115222,2446515.606066937,1125277.4607357224,964.17971,430.07986679685047,996644.6433794342,438733.1370877556,1537.86232,641.7796954025778,1575586.4078886893,643245.918009964,0.37948,100000,0,958329,10010.53984038775,0,0.0,0,0.0,43734,456.2842100864914,0,0.0,41410,429.4906614298249,1241862,0,44505,0,0,0,0,0,112,1.16993272886809,0,0.0,0,0.0,0,0.0,0.05095,0.1342626752398018,0.3069676153091266,0.01564,0.360913515537252,0.6390864844627481,23.66188795846074,4.222100059287101,0.3143418467583497,0.2541748526522593,0.2067779960707269,0.224705304518664,11.444612415784157,6.010428096167368,16.499568032544367,11567.781390526969,46.35886832880243,12.716244241633683,14.413567590087206,9.2934662093977,9.93559028768384,0.5724459724950884,0.8106280193236715,0.69609375,0.5795724465558195,0.1234972677595628,0.7514792899408284,0.9292237442922374,0.8693181818181818,0.7676767676767676,0.123076923076923,0.4991346486673589,0.7236180904522613,0.6303879310344828,0.5217391304347826,0.1236111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0048361586503366,0.0070629782224838,0.0092450549115624,0.0114410657988406,0.0135435123520905,0.0156221320335284,0.0182059529279624,0.0203359677732677,0.0225634725634725,0.0248021162285198,0.0267963518343535,0.0287157123903362,0.0309155154474559,0.0326298952582426,0.0347162632977348,0.037135608139595,0.0395587518030779,0.0419166658001185,0.0437405574368325,0.0584304389591947,0.0726404923643747,0.0864443581970566,0.1003185885371213,0.1128185670018339,0.127957125642164,0.1382491411121007,0.1488669007341206,0.158045946321197,0.1665505525246787,0.1779954785229841,0.1889641149877787,0.1990239024337221,0.2084653887346724,0.2177889160016707,0.227365765686025,0.235522311525299,0.2436106274223445,0.2512211430579009,0.2583608883193556,0.2642133123750303,0.26977749226187,0.2759501152550387,0.2804657675231268,0.2850338157224929,0.2902095753180505,0.2937688053235452,0.2971730461507201,0.3006917059926304,0.3039312589781099,0.3008895936357773,0.2989026063100137,0.2966380182002022,0.2935342031283788,0.2926858193246168,0.2892039291770421,0.28650754839015,0.2858544402112595,0.2859815309263447,0.2869443011403056,0.2882289255581274,0.290050889581443,0.2896930695138003,0.289534080527641,0.2905058738911532,0.2923661539262382,0.2946250640551158,0.2984689867647521,0.3006412277935457,0.3046890483174125,0.3088388528972047,0.3099947396107312,0.3114171756200922,0.3158926417370326,0.3200891199405867,0.3253689388615601,0.3268240993036633,0.3277699577719686,0.3325948490722791,0.3444312326595323,0.0,1.9778451661306533,51.62437490906405,148.9972894467015,213.00718450255903,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95645,47456,452.92487845679335,5111,52.19300538449475,4032,41.47629254012233,1523,15.49479847352188,77.2430810454354,79.6472586570052,63.27207635196621,65.04997588429455,77.04771967763483,79.45691215928423,63.19762357036373,64.97982761202131,0.1953613678005723,190.34649772096657,0.0744527816024884,70.1482722732436,209.24728,147.22160376822796,218774.928119609,153925.03922654397,495.70185,331.9543448215172,517587.85090699984,346384.43705527444,448.96664,219.84087442502303,465324.6798055309,226671.58339884743,2311.9868,1076.917381472168,2380988.028647603,1089827.0751213157,911.32381,411.5096299053436,937005.9909038632,414492.6733105128,1482.99026,634.7085356637638,1511616.7076167075,631137.7931734697,0.37971,100000,0,951124,9944.31491452768,0,0.0,0,0.0,43128,450.2064927596843,0,0.0,40776,422.2071200794605,1246957,0,44744,0,0,0,0,0,66,0.6900517538815412,0,0.0,1,0.0104553296042657,0,0.0,0.05111,0.1346027231308103,0.2979847387986695,0.01523,0.3470996808710344,0.6529003191289656,23.6923126862212,4.16264734299284,0.3127480158730158,0.2646329365079365,0.2175099206349206,0.2051091269841269,11.367031669223634,6.129179698616483,16.333832577355746,11537.082354809469,45.84818759985585,12.835610500229327,14.246388881472395,9.736351905414203,9.02983631273992,0.5729166666666666,0.7910028116213683,0.6946867565424266,0.5758266818700114,0.1027811366384522,0.750886524822695,0.921760391198044,0.8562874251497006,0.7149532710280374,0.1812865497076023,0.5037878787878788,0.709726443768997,0.6364617044228694,0.530920060331825,0.0823170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0049905666118921,0.0071672943971249,0.0093071459779107,0.011473558939306,0.0137990732725698,0.0158756054040275,0.0180321842836137,0.0200323134816753,0.0222929936305732,0.0242436673161727,0.0264849654945777,0.0283942491618503,0.0302571393250092,0.0325966907856029,0.0345259021817805,0.0366081047484876,0.0385369853345649,0.0406170040148946,0.042440290649792,0.0569801462904911,0.0713492678635021,0.0844601688153529,0.097026472290932,0.1087275529702395,0.1244137668194666,0.1360203116866561,0.146969147779365,0.156614130260328,0.1647799282538182,0.1763709346742344,0.1874525704126103,0.1979870158163043,0.206928274940585,0.2158563602896601,0.2252781999933431,0.2339300289589319,0.242377791052851,0.2500682035193016,0.2568938829329817,0.2633298953540925,0.2696797611381066,0.2761119795367344,0.2808725999304414,0.2856656369341538,0.2909638331215064,0.2941913496717285,0.2978997272704101,0.3016449587463027,0.3049306014540647,0.3025220273219626,0.2996917487752518,0.2980193134559808,0.2950855226060176,0.2932591457518187,0.289800423066311,0.2872586627777954,0.2868438789433019,0.2877866247479753,0.2881283269622378,0.2889447707696061,0.2898677018141488,0.2915723744866315,0.2926878354203935,0.2940568847890842,0.2959860110658732,0.2966680966680967,0.3014435324087178,0.3049311604383253,0.3095162190164979,0.3115646881149604,0.3154058942440685,0.3193044354838709,0.3208222306813856,0.3244720965309201,0.3290885508784341,0.3318972149561471,0.3366457108091665,0.338070511068598,0.3478095238095238,0.0,2.607798663784721,48.54490391192189,150.0729831973699,214.91698482189108,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95816,47569,453.11847708107206,5232,53.52968189028972,4167,42.89471487016782,1585,16.155965600734742,77.44904619750217,79.7748976742287,63.38601454967061,65.10667873299421,77.2494957142529,79.57958688589292,63.31120305560804,65.03612234008646,0.1995504832492685,195.31078833577453,0.0748114940625725,70.55639290774707,211.64924,148.88301061038675,220891.1037822493,155384.07323660635,504.32884,337.18803695046256,525753.4962845454,351314.71355771745,457.8034,223.6527958702129,473780.75686732907,230334.4131535825,2348.29972,1092.4772865106977,2419209.610085998,1108598.487215806,953.50635,426.3228309878513,978953.0976037404,428922.9495475178,1537.1128,650.9893296787693,1568160.3490022544,648244.0329648162,0.38065,100000,0,962042,10040.504717374968,0,0.0,0,0.0,43922,457.7836686983385,0,0.0,41560,429.8655756867329,1240618,0,44534,0,0,0,0,0,75,0.772313601068715,0,0.0,0,0.0,0,0.0,0.05232,0.1374491002233022,0.3029434250764526,0.01585,0.360655737704918,0.639344262295082,23.731376990736905,4.135569263567126,0.3045356371490281,0.2795776337892968,0.2179025677945764,0.1979841612670986,11.00198674906644,5.791765696248741,16.84840283252994,11508.138625319749,47.32155415455412,14.125703835083549,14.150722608575444,10.014216879845408,9.030910831049722,0.5872330213582914,0.7957081545064377,0.6926713947990544,0.5958149779735683,0.1212121212121212,0.7575496117342536,0.9320594479830148,0.83125,0.7386934673366834,0.1538461538461538,0.5216090425531915,0.7031700288184438,0.6459430979978925,0.5557122708039492,0.1128048780487804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268515236523,0.0044499407012457,0.0065447018355605,0.008888572850743,0.0110436559992678,0.0133587203323388,0.0158233332993485,0.0178711764765919,0.0200306591722023,0.0221321791447954,0.0242967669211456,0.0263957307060755,0.0283717105263157,0.0301563931759448,0.0322500799290436,0.0342369519401628,0.0362661588300437,0.0384479790962443,0.0404991220688007,0.0423502956608645,0.0571237821034403,0.0704577295443615,0.0844434196597947,0.0970402513212225,0.1093583704780872,0.1246763403472802,0.1350173846675712,0.1450523741160206,0.1551781160981959,0.1651996059282104,0.1779899778480332,0.18925137733607,0.2005558329895564,0.2096182806259412,0.2185081508315494,0.2278795782586591,0.2369414410903381,0.2446948188214698,0.2520201905882885,0.2586153723142997,0.2648742210939303,0.2695156229953697,0.2752621459996933,0.2787494325376914,0.2829909892452282,0.2874184552256226,0.2910562212441241,0.2951964512040557,0.2985759983489836,0.3027380702123187,0.3003766604560138,0.2985352753380924,0.2961524439832861,0.2931418952941346,0.2907076377603781,0.2878382079922086,0.2839946570283649,0.2839685203591156,0.285160153801853,0.2852842750146077,0.2851912426123481,0.2867749329049699,0.2873419827012641,0.28897921108742,0.2904357371259485,0.2923902665600082,0.294192382619498,0.2980041722452284,0.3020459377505141,0.3064421151807796,0.310030257869304,0.3147277815915932,0.3207157604955264,0.3246831623415812,0.3271264152708898,0.3330200869258781,0.3376347350842568,0.3407482305358948,0.3416301969365427,0.3415187004155648,0.0,2.3113214354292086,50.22075563632145,157.0535107154251,220.08516719691443,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95811,47488,452.1714625669286,5179,52.83318199371679,4122,42.479464779618205,1644,16.793478828109507,77.3497797498425,79.68280987800922,63.33168066437421,65.05995358146272,77.13638499295415,79.47193309745583,63.25036884906194,64.98213386372531,0.2133947568883485,210.87678055339157,0.0813118153122687,77.81971773741247,211.5575,148.79667796523896,220807.10983081275,155302.2909323971,499.51068,334.88133776674664,520815.2717328908,348988.0888068663,456.52132,224.06540193649155,473067.9149575727,231254.2043653422,2371.69712,1123.8030726577108,2445153.854985336,1142837.0443834874,972.59721,443.09299982951353,999901.7336214004,447312.8790073114,1600.583,696.0869526203954,1636820.886954525,698134.9001888861,0.37865,100000,0,961625,10036.686810491488,0,0.0,0,0.0,43467,453.1108119109496,0,0.0,41307,427.6857563327801,1237810,0,44462,0,0,0,0,0,77,0.8036655498846688,0,0.0,0,0.0,0,0.0,0.05179,0.1367753862405915,0.3174357984166827,0.01644,0.3427935447968837,0.6572064552031163,23.35720931206241,4.0920300825904405,0.309315866084425,0.2617661329451722,0.2108199902959728,0.2180980106744298,10.988398294459545,5.961494073775408,17.8695124656218,11458.054399503297,47.3907324152319,13.254746650662169,14.470622685329335,9.74035269667101,9.925010382569388,0.5638039786511402,0.7979610750695088,0.6870588235294117,0.5638665132336018,0.1078976640711902,0.7306772908366533,0.9274725274725276,0.8543956043956044,0.6832579185520362,0.1534883720930232,0.4907568887338681,0.7035256410256411,0.6201975850713501,0.5231481481481481,0.0935672514619883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361853435176,0.0041976335080657,0.0063429882071163,0.0086255067104207,0.0108635947512969,0.0131867012881217,0.0153955954323001,0.0178230556434572,0.0201253104653658,0.022149663763191,0.0241412184395854,0.0262128446018789,0.0281633660312172,0.0300995767729711,0.0322670490298222,0.0343266925684053,0.0363649538321394,0.0383997012665055,0.0404708962822884,0.0425529699619969,0.0569228682615363,0.0707197456891593,0.0839150577531811,0.0966948662708212,0.1082804561839914,0.1239558441009156,0.1349089327576879,0.1456532845161565,0.1555133039233489,0.1642050390964378,0.1769662618665345,0.1877462227802069,0.1981876135461201,0.2068064544341437,0.2160193640664539,0.2246221020435303,0.2335078066582592,0.2406626404399608,0.2490185399505299,0.2561944673445085,0.263061687259938,0.2684752104770814,0.2742200716930685,0.2789672845715381,0.2831633891721291,0.2875841942593983,0.2913515743159631,0.2957923782154801,0.2993427011360401,0.3027556821929373,0.3007430740650997,0.298449719132063,0.2955547728073265,0.2932015226736528,0.2904966478869052,0.2872852023156798,0.2840570994492625,0.2841535433070866,0.2850946843570172,0.2848292238747344,0.2848449670461354,0.2870372198637575,0.2895303388165458,0.290907875086374,0.2916417123829145,0.2926044181398126,0.2930077062556663,0.296894991418318,0.3019989570658786,0.3066991091401436,0.307841720119252,0.3088103638948865,0.3128404182057221,0.3141966390388563,0.313159615205006,0.3133575700715375,0.3133444663731592,0.3185540243658877,0.3185983827493261,0.3256704980842911,0.0,2.1644464632419678,54.79697645394166,150.25098018390486,210.9418955440978,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95803,47549,451.94826884335566,5167,52.76452720687244,4136,42.61870713860735,1596,16.262538751396093,77.41775944651599,79.74689313589579,63.37436231324406,65.0955730481305,77.2060096593674,79.5376018036601,63.29446553671478,65.01906051930109,0.2117497871485909,209.29133223569352,0.0798967765292815,76.51252882941151,212.47556,149.42498076810267,221783.8272287924,155971.08730217497,500.67822,335.4303648073623,522049.4765299625,349562.3360514414,454.78375,222.7521949646617,471646.0444871247,230049.18537084773,2366.4798,1110.4240993825713,2438210.995480309,1127129.1915520085,945.59961,430.4423340784972,971859.1797751636,434142.0396338158,1550.15288,664.6388046529443,1580439.4016888824,662203.3847301832,0.38203,100000,0,965798,10081.0830558542,0,0.0,0,0.0,43593,454.463847687442,0,0.0,41226,427.230880035072,1237478,0,44443,0,0,0,0,0,78,0.8141707462188031,0,0.0,2,0.0208761729799693,0,0.0,0.05167,0.1352511582859984,0.3088832978517515,0.01596,0.3500371195248701,0.64996288047513,23.57368657424616,4.125198894079441,0.3116537717601547,0.2674081237911025,0.2183268858800773,0.2026112185686653,11.014691834964092,5.858965365511756,17.1995741517202,11562.703903433414,47.26473420319385,13.516642591158607,14.51032661263814,10.090745116846191,9.147019882550923,0.5759187620889749,0.7965641952983725,0.6889061287820015,0.5780730897009967,0.1085918854415274,0.7383100902379,0.9171974522292994,0.8141592920353983,0.7074235807860262,0.1666666666666666,0.5080562221460404,0.7070866141732284,0.6442105263157895,0.5341246290801187,0.0927051671732522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521289198959,0.004875675346923,0.007031892116772,0.0094858930348763,0.0118665093955909,0.014027444114174,0.0163184181021302,0.0187596962521433,0.0209938878554344,0.0229254513448233,0.025010250102501,0.0270894495883717,0.0292037581464196,0.0312249058002347,0.0332948382174011,0.0352513452937956,0.0372666307902471,0.0393124468680669,0.0413558829029108,0.0434438602883764,0.057874693515572,0.0714233443102817,0.0845833726427455,0.0974326112990314,0.1104218231607773,0.1261515382014875,0.1384128127449526,0.1488683116634596,0.1579480832630938,0.1670915907873594,0.1786006194614127,0.1897646982563038,0.2005733148019458,0.2104424160370354,0.2192742493655449,0.2286545567183662,0.236832424840317,0.2449123989218329,0.2516426499909371,0.2583341910545396,0.2645380403391631,0.2701674099325223,0.2751299008030231,0.279943523105272,0.2843627189364902,0.2886082804115591,0.2931094788387548,0.2968372920106694,0.3001693097075207,0.3029433445661331,0.3005143079670735,0.2977183125678256,0.2963770051596395,0.2934621206660419,0.2910279597948231,0.2883560283037611,0.2847468863948477,0.2848237950328851,0.2849735647620828,0.2866306549628629,0.2866633077683853,0.2881372568265248,0.2890008536153734,0.2904628766697732,0.2913027874147625,0.2927113551595524,0.2937464629315223,0.2989050753345603,0.3025976739327251,0.3043888998228695,0.3065179095713446,0.3084550872936336,0.3126446849777889,0.3167622208811104,0.3207264557199026,0.3259303012404017,0.322406894429055,0.3297679112008073,0.3332430969139144,0.3316755929609793,0.0,2.129415940675245,53.05992267887854,152.17237760948532,214.35226050992964,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95727,47763,455.0126923438528,5044,51.52151430630856,3977,41.01246252363492,1545,15.763577674010468,77.3893283971574,79.7487752244985,63.35181630130408,65.09303942956464,77.18702704190247,79.55164356187079,63.27521492483981,65.02108933279857,0.2023013552549315,197.13166262771156,0.0766013764642679,71.95009676607356,210.9943,148.46656177601616,220412.06765071503,155093.26352650364,497.96025,334.0244955579703,519642.26393807394,348389.4940218234,456.73275,224.0447313112074,474296.9590606621,231855.70181709708,2278.67324,1071.648899966919,2350168.750718188,1089310.683653823,920.01148,414.02385314420417,945227.480230238,416773.966250708,1507.5758,643.1368584588214,1539292.0074796034,639891.0447940445,0.38185,100000,0,959065,10018.730347759774,0,0.0,0,0.0,43257,451.3146761101883,0,0.0,41323,428.9072048638315,1242223,0,44507,0,0,0,0,0,83,0.8670490039382828,0,0.0,3,0.0313391206242752,0,0.0,0.05044,0.1320937540919209,0.306304520222046,0.01545,0.3462194428652643,0.6537805571347356,23.783380338169717,4.183389728231664,0.3087754588886095,0.2602464168971586,0.2210208700025144,0.2099572542117173,11.276264818466949,5.994795401884638,16.46651294480474,11563.88001401008,45.36671496585313,12.658025233902384,13.935521454359446,9.669056876454484,9.104111401136814,0.5743022378677395,0.8106280193236715,0.6921824104234527,0.5824800910125142,0.0994011976047904,0.7495755517826825,0.927570093457944,0.8825214899713467,0.7303921568627451,0.1472081218274111,0.5005359056806002,0.728171334431631,0.6166097838452788,0.5377777777777778,0.0846394984326018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496764130974,0.004733092117932,0.006928172200075,0.0092097113207355,0.011650603879468,0.013934409543391,0.0162033262677319,0.0183261566090487,0.0205687310329324,0.0226851804479734,0.0249718208832872,0.0270755530020109,0.0293461842767748,0.0314668039114771,0.0335994059773528,0.0351765544750901,0.037124459076133,0.0392287027144768,0.0410248414925683,0.0430633971541073,0.0583278513924129,0.0718134921050153,0.0846810563631405,0.097858201814798,0.1095052865711605,0.1243614827349161,0.1349266967941781,0.1453089732123844,0.1555087824265994,0.1646399004847081,0.1775329542517446,0.1886588347288029,0.1992954913621587,0.2086736869730669,0.2174788473599084,0.226904160574239,0.2361239773653135,0.2444949279111091,0.2518408423059032,0.2587358125365065,0.2646249537550869,0.2712121920433827,0.2768027042040445,0.2814273060257116,0.2866018663463055,0.2902396101258968,0.2937410917456428,0.2974968233799238,0.3016700516150731,0.3058640633440048,0.3029623462426814,0.3005285194591255,0.2979729919425026,0.2953840829451887,0.2933718432940828,0.2904013056542762,0.2871251260080645,0.2872276177262711,0.2880005436536926,0.2884980904165556,0.2885916044046133,0.2901570701212919,0.2902923147491764,0.2902020112129572,0.2901897901060239,0.2919370266008324,0.2923768337149156,0.2959272636691991,0.3003057254030016,0.3062897027684103,0.3074980837729383,0.3103739254258741,0.3148148148148148,0.3148162068706306,0.3168574885972261,0.3187083187083187,0.3197893152746426,0.3191701575902653,0.3227865667499306,0.3292021688613478,0.0,1.9747576794216517,51.332629601150806,144.31813108127034,206.732498561566,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95670,48079,457.5101912825337,5283,53.94585554510296,4172,43.00198599351939,1638,16.765966342636144,77.35982293729873,79.73653739334387,63.33991942654043,65.09015656492959,77.14655949869795,79.5239440717198,63.26047690198177,65.01330454798719,0.2132634386007765,212.59332162406963,0.0794425245586651,76.85201694239652,208.8207,146.99518897920652,218271.87206020692,153648.15404955213,502.40525,337.1820545100747,524559.9142887007,351858.75876458123,463.07457,226.98298840183548,480175.8858576357,234280.94147072727,2401.82084,1124.57004675576,2478027.8039092715,1143371.3844225693,990.63483,449.5585125357185,1018177.5269154386,452657.6417409697,1597.99,678.3397488368678,1637449.0017769416,681348.029542779,0.38546,100000,0,949185,9921.448730009408,0,0.0,0,0.0,43632,455.4614821783213,0,0.0,41999,435.03710672102017,1246724,0,44742,0,0,0,0,0,88,0.9198285774014844,0,0.0,1,0.0104525974704714,0,0.0,0.05283,0.1370570227779795,0.3100511073253833,0.01638,0.3367254224968199,0.6632745775031801,23.842567557644404,4.10465469800795,0.3149568552253116,0.2567114093959731,0.2157238734419942,0.212607861936721,10.980841463007057,5.803570808239631,17.52702554235683,11756.582329735833,47.69951993172529,12.95540695242889,14.917753820161304,10.105729569627526,9.720629589507574,0.5745445829338447,0.8132586367880486,0.6894977168949772,0.5666666666666667,0.1240135287485907,0.7619439868204283,0.9380530973451328,0.8659217877094972,0.7222222222222222,0.1861702127659574,0.4976335361730899,0.7221324717285945,0.6234309623430963,0.5175438596491229,0.1072961373390558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582735852878,0.0044698513090278,0.0068584183026429,0.0093437062013771,0.0118655441678867,0.0140159804570207,0.0164562508279073,0.0188650369342529,0.0208890886432817,0.0230685817169981,0.0251910586596184,0.0273403436778661,0.0296112812711986,0.0316612096126521,0.0338112429087158,0.0358331438493499,0.0375588798592059,0.0396614669764354,0.0417507017361472,0.0440836234028805,0.0594343860675518,0.0742571147362469,0.0880352644836272,0.1008553662924658,0.1138439470964203,0.1292920101156528,0.140376389168993,0.1511317036800341,0.1607371931925083,0.1704929645490549,0.182840887049848,0.1938774405232438,0.2041109454739339,0.2127035545438627,0.2214258188824663,0.2308612440191387,0.2397866380993829,0.2476564080660027,0.2549548732368815,0.26164673570979,0.2678598268067936,0.2732332444693887,0.2790571148091639,0.2843272235325104,0.2891998738813029,0.292770847174036,0.2968949064475031,0.300358204405152,0.3046114465229926,0.3084082579692567,0.3064683035654289,0.3035238173772024,0.3008713768881005,0.2988142634585425,0.2970625722500519,0.29351713176636,0.2903154434540742,0.2907197901295294,0.2915165075406924,0.2922890233238753,0.2939382029831752,0.2943603308395349,0.2953632407097422,0.295111230113573,0.2964641016420952,0.2978016558955592,0.299847103459992,0.3043056814983896,0.3065522892910695,0.3107777339123569,0.3139682539682539,0.3178031308039267,0.3228739188080055,0.3274322777565814,0.3317963677425425,0.337230108553024,0.3349700782568666,0.3396530859217426,0.3446145581520279,0.3567877629063097,0.0,2.3514566371406094,52.82721786119206,154.06086276830356,217.88319323287715,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95856,47706,452.9815556668336,5195,52.8292438657987,4158,42.824653647137374,1637,16.702136538140547,77.34109898624328,79.63219920332004,63.34986309044478,65.04415874981957,77.12631712761132,79.42036556930158,63.2693645031989,64.96695920184705,0.2147818586319658,211.83363401846125,0.0804985872458772,77.19954797252626,209.77044,147.6539315739737,218838.90418961772,154037.03139037246,502.83883,337.1118931762752,523985.9789684526,351109.6522216049,460.32089,225.9110621173736,477090.8550325488,233160.01279066916,2388.27736,1121.6597947590487,2460438.2824236355,1139787.675778347,942.66794,431.6307416179586,968393.5903855785,435601.2029648849,1584.81696,677.8331496795959,1618514.7095643466,678226.2160760803,0.38118,100000,0,953502,9947.222917709898,0,0.0,0,0.0,43669,454.9532632281756,0,0.0,41745,432.3255716908697,1243644,0,44676,0,0,0,0,0,96,1.0015022533800702,0,0.0,1,0.0104323151393757,0,0.0,0.05195,0.1362873183272994,0.3151106833493744,0.01637,0.3504053058216654,0.6495946941783346,23.37485999011217,4.162670793394347,0.3179413179413179,0.2585377585377585,0.2190957190957191,0.2044252044252044,11.261002625257422,6.103303732181102,17.580791946940035,11616.208818301726,47.555364813823545,13.141167269363269,14.887461450245148,10.17100630977192,9.3557297844432,0.5788840788840789,0.8037209302325582,0.708018154311649,0.5718990120746432,0.1011764705882353,0.7514498757249378,0.933774834437086,0.863768115942029,0.75,0.1243523316062176,0.5083022704168079,0.7090032154340836,0.6530194472876152,0.516546762589928,0.0943683409436834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0044279620228794,0.0068567487245027,0.0092899059841208,0.0116378346512715,0.0138300903688024,0.0160253471479364,0.0181994389186432,0.0204379711151512,0.0226173061775627,0.0247984676370266,0.0268196875993559,0.0289637747398909,0.0311435773445136,0.0334264134612412,0.035297760346785,0.0372763933409161,0.0394019768333367,0.0416614758523317,0.0437894693036756,0.0577875561765533,0.0719839478304489,0.084979574735519,0.0979280215914222,0.1096790497851908,0.1249234278954817,0.1359408436976926,0.1460300246661563,0.1558721519662771,0.1654233654876741,0.1778538296796134,0.1899143487476748,0.2008805304924448,0.2098549520696929,0.2184866553719553,0.228195726107523,0.2376548030793261,0.2456183769433257,0.2532936917717281,0.2611140376995488,0.2669774328247718,0.2732832103644633,0.2792766153736974,0.2833682697490567,0.2880627458598416,0.2926047789813548,0.2964473355016262,0.2997151142086788,0.3030103103452736,0.3055020451246866,0.303377441544281,0.3012225476848605,0.2991082120567476,0.296678336853679,0.293646897823791,0.2908010050867193,0.2872146625057424,0.2871020233731652,0.2874378748928877,0.288362586729297,0.28890184937821,0.2883601031132262,0.2890879650074653,0.2906893142805787,0.2919699204487753,0.2938434545787833,0.2934434663313136,0.2990913679959616,0.3038094569945278,0.3085275003962593,0.313320910784893,0.3149618805590851,0.3168721690991444,0.3185713202396299,0.320573260418631,0.3237145232157701,0.3266585142158361,0.3265060240963855,0.3302452316076294,0.3396801218583397,0.0,2.016873451604249,52.61217800558313,152.15935683218902,221.06383087101636,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95658,47406,451.3161471074034,5152,52.79223901816889,4100,42.43241548014802,1603,16.485814045871752,77.31769350596971,79.73873383412213,63.289715480586615,65.08084282483189,77.11657519346448,79.53764711838606,63.21504585663548,65.00789784560943,0.2011183125052298,201.08671573606784,0.0746696239511379,72.94497922245569,209.75174,147.54346603210763,219272.324322064,154240.3761672914,496.99819,332.8845209989006,519126.6281962826,347564.26016736764,450.90278,220.3801387508934,468614.9825419724,228342.39976586247,2346.25044,1087.69422343944,2428517.9702690835,1113267.3784504393,934.7583,419.0905151627881,963595.9564281084,424738.5785302208,1561.21554,656.2426420089253,1606246.5658909867,664137.2785161326,0.38039,100000,0,953417,9966.923832821092,0,0.0,0,0.0,43358,452.8110560538585,0,0.0,40882,424.6064103368249,1245466,0,44645,0,0,0,0,0,67,0.7004118840034289,0,0.0,0,0.0,0,0.0,0.05152,0.1354399432161728,0.3111413043478261,0.01603,0.3606313834726091,0.6393686165273909,23.919906637150643,4.128843025231818,0.3129268292682927,0.2585365853658536,0.2190243902439024,0.2095121951219512,11.07299169686374,5.832825378804764,16.904952234130835,11562.23938043124,46.54713672718892,12.8100539926996,14.317763244257314,10.062108140826094,9.357211349405906,0.5673170731707317,0.7943396226415095,0.6812159002338269,0.5556792873051225,0.129220023282887,0.7416520210896309,0.927400468384075,0.8652037617554859,0.6866359447004609,0.1314285714285714,0.50033760972316,0.7045813586097947,0.6203319502074689,0.5139500734214391,0.1286549707602339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0045227761327221,0.0069035532994923,0.008922854907062,0.0113545026300528,0.0135391198044009,0.0159243466019219,0.018114202229283,0.0203145947826798,0.0226224399844195,0.0246984550633885,0.0266615941432919,0.0288432824293849,0.0307709764601514,0.0332585987787616,0.0354618735707116,0.0376986801314684,0.0394706774414691,0.0414498605503059,0.043319116098151,0.0578307713207862,0.0722338642078792,0.0856020502478783,0.0979578510568831,0.1096573208722741,0.1250569258957223,0.1355806119087344,0.1461220312966358,0.156471972614463,0.1654457572502685,0.1775663635677226,0.1886579842676663,0.1991221764795573,0.2094456976413131,0.2183202574047955,0.2275368747920594,0.2365389557425222,0.2449639113152946,0.2523725196385596,0.2588217771871133,0.2644886429414897,0.2704584279128542,0.2764410552740018,0.2814729546626377,0.2856014100771896,0.2901393526447431,0.2942603779720585,0.2972069311839713,0.3008140603362367,0.3037351734329028,0.3007727309442395,0.2986543510233255,0.2960810525575177,0.2939284684164984,0.2920420865441612,0.288466831819433,0.2850524917783961,0.2860042892457803,0.2865532914560033,0.2874185588240515,0.2879320935946836,0.2885090852007378,0.2895479054334301,0.2911829862649535,0.2922057807324802,0.2945129358248688,0.295831098817353,0.3012463867217853,0.3056018904642757,0.3087512291052114,0.3132246376811594,0.3153972197262011,0.3186151530356247,0.3204449152542373,0.3252944475602916,0.3281562536769031,0.3298906439854192,0.3335985677342351,0.3272727272727272,0.3339636913767019,0.0,1.645243832585879,50.02512506914488,152.13494394332184,220.0064870418987,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95714,47489,452.0655285538166,5076,51.94642372066782,4037,41.634452640157136,1585,16.183630398896714,77.34880342590687,79.70712566940597,63.338894218876014,65.07755532012769,77.14857625613882,79.5111128381402,63.263443616562405,65.00637914249721,0.2002271697680413,196.01283126576163,0.0754506023136087,71.1761776304769,210.16732,147.92326498934466,219578.45247299247,154547.15609978128,502.95694,336.80698249026835,524938.650563136,351349.7350091017,451.28592,220.4235202778508,468641.212361828,228053.15216593293,2322.32552,1075.387603868384,2397952.3580667404,1095240.562205135,939.22606,416.1149158799303,971049.2195499092,424550.5679161106,1544.32278,654.7401972770398,1579143.3437114735,653963.6918297979,0.38021,100000,0,955306,9980.838748772385,0,0.0,0,0.0,43657,455.5446434168461,0,0.0,40919,424.6714169296028,1243737,0,44567,0,0,0,0,0,94,0.9820924838581608,0,0.0,0,0.0,0,0.0,0.05076,0.1335051681965229,0.3122537431048069,0.01585,0.346609055044148,0.6533909449558519,23.932361464911192,4.174136998888739,0.3153331681942036,0.2543968293287094,0.2103046816943274,0.2199653207827595,11.181005388613764,6.0043833136621885,16.930950790211106,11578.005289944327,45.9086465961912,12.53529412665594,14.328594535638768,9.33188696128672,9.712870972609764,0.5687391627446123,0.7945472249269717,0.6881382560879812,0.5948174322732627,0.1114864864864864,0.724910394265233,0.908433734939759,0.8348348348348348,0.7180851063829787,0.1055555555555555,0.5090722355357754,0.7173202614379085,0.6361702127659574,0.5597579425113465,0.1129943502824858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025720737597845,0.0048047682763654,0.0072446857084876,0.0095592194150692,0.0117333658695298,0.013752735786634,0.0162067946221982,0.0185567010309278,0.0203975269531449,0.0224655851798782,0.0247217268310682,0.0267460358187509,0.0287047889293278,0.0308549190791912,0.0331129243560516,0.0351629502572898,0.0370888081259901,0.0390960592666376,0.0412161038096822,0.0431697405439199,0.057793930279675,0.0718292759508509,0.0848161826422696,0.0979694897422409,0.1104055693265123,0.1256571640133284,0.1373166953163133,0.1471825063078217,0.1564389649793807,0.1656475939155993,0.1777239187806323,0.1887774423561744,0.1991907941963411,0.207979264411562,0.2163651967256403,0.2259733640614266,0.2356199879375432,0.2439106748908198,0.2528576455497917,0.2598043707334952,0.2657392833996852,0.271469504707327,0.2772631006045978,0.281780726758809,0.2870077067783239,0.2913542859253241,0.2959201519012642,0.2993890279065632,0.3019028795101345,0.3056466158484405,0.302645374626986,0.3000453365206281,0.2972064367298711,0.2949759695180914,0.2932193579983081,0.2905321734876397,0.2879058377438976,0.2871548069210496,0.2870479208190661,0.2872177505520336,0.287009739896257,0.2879992130631517,0.2884651492708572,0.2888472853704198,0.2908411394072974,0.2912568447823943,0.2923876907339527,0.2962138782674105,0.3011879804332634,0.30613858255267,0.3101334786161809,0.3135836613126263,0.3165927802406586,0.3211963589076723,0.3238984809887725,0.3280114381031812,0.3328192473781616,0.3338785524432631,0.3342556723851688,0.3353822512485593,0.0,2.0264892103046166,48.57506478323312,152.35321724498462,215.21535002294016,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95623,47838,456.0409106595693,5016,51.02328937598695,3965,40.73287807326689,1484,15.01730755153049,77.26744378178137,79.68424515136336,63.28338998351626,65.06994828717384,77.08112554562823,79.50680792773177,63.210711198215314,65.00436059249854,0.1863182361531414,177.43722363158554,0.072678785300944,65.58769467530112,210.51404,148.1442806628221,220149.7756815829,154925.16015854347,497.64868,334.0031420355476,519662.999487571,348532.4747666102,455.81401,223.66923662953428,473027.3678926618,230938.0786254165,2277.88808,1068.8610971880132,2341063.9281344446,1076979.3894772402,897.46314,411.9955095670889,913074.2290034824,405909.911015798,1451.11572,626.6698603820072,1469654.8947428963,612090.2607589082,0.38203,100000,0,956882,10006.807985526497,0,0.0,0,0.0,43215,451.1466906497391,0,0.0,41200,427.15664641351975,1240727,0,44470,0,0,0,0,0,90,0.9411961557365904,0,0.0,0,0.0,0,0.0,0.05016,0.131298589116038,0.2958532695374801,0.01484,0.3387497610399541,0.6612502389600459,23.752243261267235,4.170940563877082,0.3185372005044136,0.2673392181588903,0.2022698612862547,0.2118537200504413,11.20600265031609,5.863087947214527,15.939738017540378,11605.577857564633,45.20700185328828,12.852636612929413,14.35831188395824,8.792345211005038,9.203708145395598,0.5715006305170239,0.7981132075471699,0.7070467141726049,0.5349127182044888,0.1166666666666666,0.742437337942956,0.9149425287356322,0.8376811594202899,0.7580645161290323,0.1623036649214659,0.5010683760683761,0.7168,0.6579520697167756,0.4675324675324675,0.1032357473035439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025229497233874,0.0048975866964104,0.0073302469135802,0.0094809365092268,0.0115769234681939,0.0138713488409989,0.0162428370414177,0.0182339789073905,0.0204707662733389,0.0224577572964669,0.0247477026583524,0.0270372995572539,0.0290411184379725,0.03086038124678,0.0327828241123038,0.0350880820444959,0.0369959917556524,0.0390691494882813,0.0410889080752707,0.0432588545630845,0.0584675522852932,0.0727430791951651,0.0855072463768115,0.0982855578255649,0.1101983930060922,0.1257108967094881,0.1371786700658593,0.1471647836282242,0.1575017117425539,0.1668743286788399,0.1792863922685305,0.1898813715400032,0.200426694532432,0.2103339206952029,0.2187097413536814,0.2277673130193905,0.2371299727642095,0.2444296903132877,0.2527476270493664,0.2591539933758896,0.2656510464900907,0.2712334214404341,0.276942014747831,0.2818117497511662,0.2855614843265713,0.2907435732964918,0.2941367915081113,0.2981329331264467,0.3020780734123131,0.3054682755525044,0.304147465437788,0.3014156589211276,0.299281588956191,0.296136222373195,0.2939199738301637,0.2913547359879974,0.2882788753799392,0.2887290482198155,0.2894996932724422,0.2892160353175733,0.2897294064882643,0.2904588895031988,0.2913017120638836,0.290643574274838,0.2921439869625653,0.2931070333212039,0.2942644098551217,0.2977991746905089,0.3033150522234254,0.3051685926864018,0.3074290407958382,0.3122700367941129,0.3158427108357567,0.318588127435251,0.3225199811941702,0.32357491372129,0.3239133773613884,0.3296725645718934,0.3198871650211565,0.3258964143426295,0.0,2.768889284334884,49.664647136553526,142.78551728448753,210.2521783126787,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95825,47451,450.79050352204536,5176,52.68979911296634,4100,42.06626663188104,1546,15.674406470127836,77.40182060844235,79.71540660199327,63.36325590393732,65.07555125195583,77.20295737098907,79.5219513583501,63.28851455347802,65.00592483107869,0.1988632374532812,193.4552436431716,0.0747413504592984,69.62642087714244,209.6798,147.5200161134382,218814.88129402557,153946.8778663587,500.31346,335.73322822741744,521414.2864596921,349664.0200567884,455.75639,223.2948373932061,470899.9634750848,229458.13080965853,2331.80792,1097.7431597665045,2396075.971823637,1108293.5765890994,960.94088,430.0262370235176,986520.5426558832,432543.3187865751,1498.8834,638.7891402457892,1522774.599530394,631051.9767412575,0.37921,100000,0,953090,9946.130967910252,0,0.0,0,0.0,43485,453.0654839551265,0,0.0,41308,426.4022958518132,1249828,0,44819,0,0,0,0,0,84,0.8661622749804331,0,0.0,1,0.0104356900600052,0,0.0,0.05176,0.1364942907623744,0.2986862442040185,0.01546,0.3606951377334073,0.6393048622665927,23.608017077982822,4.110936199736858,0.3209756097560975,0.2719512195121951,0.2026829268292683,0.204390243902439,11.462429491514824,6.306929152005242,16.5281508706279,11534.923270714184,46.99456447357648,13.637125001081062,14.982873532870691,9.288818781110471,9.085747158514245,0.5846341463414634,0.7946188340807175,0.6983282674772037,0.592057761732852,0.1193317422434367,0.7421746293245469,0.9052631578947368,0.8611111111111112,0.6746411483253588,0.1176470588235294,0.5183645183645184,0.7125,0.6370292887029289,0.5643086816720257,0.1197604790419161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0045302982699733,0.0069695248143489,0.0093543374264907,0.0116204593283923,0.0138442118978785,0.0159914386179483,0.0181159420289855,0.0206472187583048,0.0230289755688156,0.0250525344677361,0.0270353491809336,0.0291919783732667,0.0313825624974259,0.0335097001763668,0.0357821864021492,0.0375960085294909,0.0396113524891898,0.0415052400884946,0.0436063151102646,0.0584057321054223,0.0718198544785481,0.0849121851029048,0.0973580545196701,0.1094446141369031,0.1244534105071928,0.135527681844185,0.1465748182166092,0.1567162586181135,0.1658418493047967,0.1781169662353308,0.1901339961097903,0.2006518550708892,0.2103095261507533,0.2184480427398344,0.2277250738899897,0.2357224904928124,0.2436649803260258,0.2510291332599993,0.2577326665827507,0.2632217931225863,0.2683924501840706,0.2742879438158408,0.2787937580090779,0.2829801694215879,0.2872900970108829,0.2911193050434348,0.2957778681028351,0.299387343604591,0.3032637901058954,0.3008746120672282,0.2984459941793421,0.295857738822637,0.2927809219337279,0.2905780475168381,0.2872322559960916,0.2846619767185084,0.2847593364386696,0.2850993602831087,0.2857625131038894,0.286472889882616,0.2889229499498909,0.2895640412027884,0.2911240499577759,0.293351463536821,0.2927043732381617,0.2947707432833291,0.2973250388802488,0.3004412633334491,0.3049260308467107,0.3092718227046585,0.3141543826279918,0.3189520415181642,0.3225490196078431,0.3278794601589943,0.3299065420560748,0.3345432546884452,0.3425291985501409,0.349480021893815,0.3603053435114504,0.0,2.8110053667821098,52.22566927889919,153.76804116181103,208.70005453850237,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95708,47212,449.7534166422869,5080,52.12730388264304,3971,41.04150123291679,1574,16.101057382872906,77.32145341825886,79.70827276542755,63.3143933609397,65.07992933366269,77.12524878315915,79.51450992084212,63.2408459588036,65.00973099157274,0.1962046350997042,193.7628445854358,0.0735474021360929,70.19834208995235,210.22672,147.84249535631184,219654.28177372843,154472.453040824,502.13729,337.3454809375259,524200.7355706942,352018.8813239498,454.23419,222.3791285217386,471917.58264721866,230252.9199375565,2267.42576,1058.8311857115227,2344175.9518535547,1081382.2728627946,929.32929,417.75820614602446,959517.4593555398,425005.1052639521,1534.4235,646.6468831275967,1571041.5430267062,647435.54652426,0.37846,100000,0,955576,9984.285535169474,0,0.0,0,0.0,43688,456.00158816399886,0,0.0,41186,427.6653989217202,1241818,0,44569,0,0,0,0,0,83,0.8672211309399424,0,0.0,1,0.0104484473607221,0,0.0,0.0508,0.1342281879194631,0.3098425196850394,0.01574,0.3476702508960573,0.6523297491039427,23.68311130289861,4.206356223736765,0.311760261898766,0.2593805086879879,0.2178292621505917,0.2110299672626542,11.5072280469053,6.213222218054632,16.847919380481134,11494.168170112242,45.56819790450814,12.577055409878808,14.155888952714976,9.67461818878166,9.1606353531327,0.5769327625283304,0.8038834951456311,0.6825525040387722,0.5976878612716763,0.1205250596658711,0.7437229437229437,0.9170616113744076,0.8342857142857143,0.7453703703703703,0.1137724550898203,0.5085227272727273,0.725328947368421,0.6227477477477478,0.5485362095531587,0.1222056631892697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088027883602,0.0045837136193083,0.0068316550267987,0.0092580359955691,0.0113543871072765,0.0134768967484312,0.0155521788347593,0.0178068205023483,0.0199041086087569,0.0219563125678137,0.0240519176944606,0.026186344078292,0.0283092622310002,0.0303564252372561,0.0325660611065235,0.0346360628618693,0.036739724892277,0.0385645198115361,0.0406214900786222,0.0428660760812923,0.0576432987967914,0.0712423979148566,0.0846687445560348,0.0974208416201029,0.1096879022557977,0.1251587637595258,0.1359048114379119,0.1462380708929788,0.1560773333048338,0.1648147750917008,0.1777404343329886,0.1886974216872686,0.1993670541919065,0.2092097347552639,0.2187283465865971,0.2274855808083603,0.2356910242683797,0.2439065502477834,0.2513915813579113,0.2569083541289865,0.2633720594185307,0.2694945953841659,0.2751404743597326,0.2795266158784917,0.2843109875299003,0.2884343191916208,0.291745849169834,0.2956586921444816,0.2989612134680482,0.3013050979152674,0.2984153864763517,0.2956491902278342,0.2936166624504596,0.2905477515936427,0.289292497625831,0.2860181161637799,0.2824729227606925,0.2829656822576945,0.2837980638123807,0.2836530754021268,0.2847614065244199,0.2856495527798574,0.2880404150053232,0.2895764091811469,0.2910557008807506,0.2931398348141007,0.2942517598107669,0.2992343416593448,0.3030981970943462,0.3071143275200696,0.3116335960858929,0.314991518235793,0.3177257525083612,0.3198136266422242,0.323598459949291,0.3271428571428571,0.3315958914609842,0.332725430597771,0.3365305563167991,0.3297791317593297,0.0,1.7249327297080432,50.87044801989161,150.3166559186033,204.41644499012293,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95693,47145,449.22826121032887,5176,52.68932941803476,4044,41.53908854357163,1517,15.382525367581746,77.3455376358958,79.7313808595379,63.32130932583449,65.08677866671182,77.15199999313228,79.54465783461069,63.24711567164744,65.01788159530412,0.1935376427635162,186.72302492720405,0.0741936541870558,68.8970714077044,211.48732,148.74688532671115,221006.0505993124,155441.7620167736,500.75497,335.0657511640097,522581.04563552194,349434.40080675675,449.87342,219.96306071440344,465176.87814155687,226080.64741884623,2319.04304,1085.2987234326572,2382134.325394752,1093409.5063736115,916.95267,418.93845452081615,940230.7692307692,420020.6721048402,1479.21812,636.3117413285102,1501741.4439927686,628365.43456551,0.38005,100000,0,961306,10045.729572696018,0,0.0,0,0.0,43675,455.65506358876826,0,0.0,40717,420.6054779346452,1240928,0,44401,0,0,0,0,0,81,0.8464568986237238,0,0.0,0,0.0,0,0.0,0.05176,0.1361926062360215,0.2930834621329212,0.01517,0.3635690485005553,0.6364309514994446,23.5174540400998,4.188727815066688,0.3229475766567755,0.2601384767556874,0.2087042532146389,0.2082096933728981,11.458464389997443,6.297242307370229,16.170611402033167,11513.872969689157,45.83952178008098,12.755128842711676,14.615542544068914,9.25719583184386,9.211654561456536,0.5682492581602374,0.7709125475285171,0.6937212863705973,0.5675355450236966,0.1211401425178147,0.7298701298701299,0.916256157635468,0.8546511627906976,0.725,0.1560975609756097,0.5036344755970924,0.6795665634674922,0.6361746361746362,0.5186335403726708,0.1098901098901098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097285686785,0.0042192808965971,0.006243971775217,0.0087603406573304,0.0108956620818751,0.0129252393562843,0.0152046664355203,0.0176567302880834,0.0196437336387434,0.021760947036415,0.0238654427978052,0.0260887428101889,0.0282155200789993,0.03016095459885,0.032156862745098,0.0342610205938301,0.0362762464132923,0.0384008635004981,0.0404330327894424,0.0424277155509247,0.0574221646631226,0.0706271456083061,0.0840583969185235,0.0963584137372292,0.1091187173672274,0.124151134993336,0.1351423053250419,0.1460905130635764,0.1558945522962456,0.1652586493768584,0.177442652638841,0.1889945416738866,0.1995602338162778,0.2086811900254943,0.2175760310838626,0.2274918278020943,0.2363269041878739,0.2442029230094171,0.2522263945454752,0.2585449051074838,0.2645112781954887,0.270980410491374,0.276182931731656,0.2801541518060176,0.2846887051005312,0.2886956735617483,0.2926835360827317,0.2963930932112,0.300059348712391,0.3032281798951531,0.3005254973457021,0.2980301972540484,0.295930102098059,0.2942724814452563,0.2922578928698119,0.2891685584995353,0.2862190812720848,0.2862502252584328,0.2866655313351499,0.2867499064887875,0.287512154985414,0.2885218729651335,0.2885021648643561,0.2894132852017737,0.2901239005919429,0.2919243361222263,0.2928786074729262,0.2963878029710711,0.300690521029504,0.3048265519554836,0.3066570318851052,0.3098317560462671,0.3158255025203809,0.3210387655250282,0.3247287691732136,0.3232779097387173,0.3277837177333129,0.3321197411003236,0.3362326719217178,0.3362730061349693,0.0,2.780346567088059,49.59460100196632,144.1724580719696,217.59984811023045,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95621,46850,446.701038474812,5106,52.41526442936176,4024,41.58082429591826,1535,15.73922046412399,77.23812690061078,79.66873570027167,63.25655152000609,65.05405065901596,77.0489847210993,79.4812192970297,63.1865979028722,64.98719018906098,0.189142179511478,187.51640324197183,0.0699536171338905,66.86046995497463,211.1032,148.4864686281234,220770.75119482123,155286.46283569862,499.39411,334.219126032108,521762.0397193085,349022.8046476276,448.13707,218.9541269598932,465842.1476453917,226826.4595033564,2325.52496,1075.2178432294982,2404448.6043860656,1096883.1984914378,929.14661,411.89740503229865,957008.5127743904,416071.6840780769,1506.1096,624.4325288352716,1545052.3002269375,626107.2766437939,0.37648,100000,0,959560,10035.034145219148,0,0.0,0,0.0,43567,455.0883174198137,0,0.0,40670,422.42812771253176,1236045,0,44416,0,0,0,0,0,70,0.7320567657732089,0,0.0,2,0.0209159075935202,0,0.0,0.05106,0.1356247343816404,0.3006267136701919,0.01535,0.3471726470035694,0.6528273529964306,23.82104141019402,4.1599380019973164,0.30889662027833,0.2726143141153082,0.202534791252485,0.2159542743538767,11.242695817742105,6.001397158038341,16.232719298168426,11467.624586826729,45.86278216244706,13.390514070337796,14.008495116759422,9.027587316826162,9.436185658523694,0.5787773359840954,0.8085688240656336,0.7071600965406275,0.5840490797546012,0.1001150747986191,0.7596412556053812,0.9389671361502347,0.8881789137380192,0.7183098591549296,0.0981595092024539,0.5094534204193881,0.7257824143070045,0.646236559139785,0.5365448504983389,0.1005665722379603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024627047186638,0.0048786424999746,0.006955162050199,0.0090462783204415,0.0109815176681322,0.0131523987081919,0.0149829160079555,0.0170494013811138,0.0193523310762432,0.0215503113733202,0.0233729723074397,0.0255235198619017,0.0279124340012968,0.0300096905218449,0.0324056384571694,0.0342387086760825,0.0361589417704197,0.0382797486106061,0.040379330446369,0.0423864964112835,0.0568304182827511,0.0708492266420757,0.0843077310977339,0.096156884222056,0.1087397300779352,0.1235859848324365,0.1343163083198776,0.1452781922830953,0.155891258064171,0.1650233077699727,0.1765454741611824,0.1876388783506942,0.1983396341529846,0.2075980150514312,0.216151600286454,0.2257581471703973,0.2351967799642218,0.2426817859034908,0.2510628140132311,0.258269252840583,0.2644817868698466,0.2703576953729314,0.2748467276198608,0.2794248372294164,0.2838319999025804,0.287642641900904,0.2913228840125392,0.2954568631450132,0.2992577597840756,0.3025327834179357,0.3003829970870644,0.2972809084770055,0.2946077394798054,0.2919349005424955,0.2892307692307692,0.2858610170011191,0.2824722662440571,0.2838550653192014,0.2844923445385339,0.2851836639939999,0.2861957274718691,0.2864734585827456,0.2874672809129934,0.2881658920271719,0.2890724421927149,0.2903133458255257,0.2922634471368774,0.2964590657960824,0.3016028557429831,0.3052063216805265,0.3094719651605879,0.3120840815464244,0.3143910977744436,0.3178487801193443,0.3240171417924352,0.3265377855887522,0.3289295901516288,0.3319411296738265,0.3398479913137893,0.3511161558834658,0.0,1.997558922569112,48.707579590202506,150.97484959809432,216.04960598976777,fqhc3_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95714,47538,453.3715026015003,5044,51.35089955492405,4035,41.51952692396097,1503,15.28512025409031,77.33641368994157,79.71027462722006,63.332022412709286,65.08884726082843,77.14156514375537,79.52092337838465,63.25815840092161,65.01997689538109,0.1948485461861935,189.3512488354077,0.0738640117876769,68.8703654473386,211.2891,148.70387181234997,220750.46492676096,155362.71790161313,502.54265,336.6468233069393,524433.9177131872,351109.4022890479,456.86834,224.4598023646503,472768.4351296571,231070.8683685244,2610.88584,1214.953754634457,2689437.271454541,1230996.410801406,907.42748,416.0317131960342,927854.5562822575,414458.990095934,1459.21802,624.8871470680195,1485718.1603527174,618830.2435690899,0.38053,100000,0,960405,10034.112042125498,0,0.0,0,0.0,43771,456.6625572016633,0,0.0,41329,427.3356039868776,1238024,0,44454,0,0,0,0,0,95,0.9925402762396306,0,0.0,0,0.0,0,0.0,0.05044,0.1325519669934039,0.2979777954004758,0.01503,0.3463294028147584,0.6536705971852416,23.51642102343289,4.127449486777473,0.3231722428748451,0.2646840148698884,0.2158612143742255,0.1962825278810409,10.95420652979158,5.762189442373303,16.099255440880693,11552.18485791216,46.01118773966257,12.966513161971132,14.741931838377662,9.69215174595525,8.61059099335852,0.5771995043370508,0.802434456928839,0.6993865030674846,0.5373134328358209,0.1161616161616161,0.7575236457437661,0.9271070615034168,0.8693181818181818,0.6682692307692307,0.1768292682926829,0.5041782729805014,0.7154213036565977,0.6365546218487395,0.4962292609351433,0.1003184713375796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0044320936317812,0.0066703893598659,0.0091165948451093,0.0112916187705359,0.0134947955920395,0.0157354245913174,0.0179191341637737,0.0202018136648502,0.0224290072272382,0.0244169955409768,0.0264570906440253,0.0283307967586689,0.0304050922349596,0.0324314842331187,0.03450200520941,0.0364790424121935,0.0383641795999668,0.0402336482595907,0.0424066917363722,0.0581638193893321,0.0713560793914854,0.0850077603926339,0.0978586521176952,0.1093837284062523,0.1247767314541784,0.1354245068003773,0.1456859971711457,0.1550227896203153,0.164000814218832,0.1757070902750871,0.1879379704126654,0.1991893331015072,0.208533601328323,0.2179574524196738,0.227755724853216,0.2358505280984001,0.2439377935591163,0.2518022306855277,0.2580932886596759,0.2647024841132293,0.2706628215157211,0.2757948693721359,0.2807116194486983,0.2856051604141911,0.2901999852409416,0.2939846618870375,0.2980357800378369,0.3015210452178183,0.30482629553482,0.3024463063329612,0.2998390181482959,0.2968296871920489,0.2945662535748332,0.2929482036195061,0.2896771329281548,0.2871858978416355,0.2879501271429743,0.2886988581084541,0.2893362098168916,0.2900422382536538,0.2909205523708212,0.2912115400650379,0.2916740753911807,0.2926770937963361,0.2948950505312257,0.2973688706646164,0.3018197818776126,0.3069917332212414,0.310255901606824,0.3141447368421052,0.3167094291212315,0.3201659221442246,0.3236967553436875,0.3239409984871407,0.3271375464684015,0.3306637917757585,0.3333333333333333,0.338411316648531,0.3358433734939759,0.0,2.478218935801029,50.15873519703352,148.112196947945,213.42928044756087,fqhc3_100Compliance_baseline_low_initial_treat_cost,0 -100000,95602,47373,451.936151963348,5168,52.7604025020397,4096,42.17484989853769,1544,15.690048325348842,77.26635035352784,79.70363007065163,63.26822878755484,65.07178338238043,77.06589872036801,79.50776817230977,63.19237118497284,65.00032178237505,0.2004516331598296,195.8618983418603,0.0758576025820048,71.46160000537805,210.2804,147.8281084225368,219953.74573753687,154628.4475455918,500.19099,335.74673673869535,522514.7695654903,350505.550865772,454.93768,223.31747187112387,471315.1712307274,230082.6874273149,2643.48278,1240.5939875676286,2722745.277295454,1255361.3183485996,935.0556,426.95116313428775,960920.5142151838,429485.4167783079,1504.61744,643.2821907425458,1531267.274743206,637851.5347228956,0.37851,100000,0,955820,9997.897533524403,0,0.0,0,0.0,43515,454.46747975983766,0,0.0,41214,426.612413966235,1240755,0,44555,0,0,0,0,0,88,0.920482835087132,0,0.0,0,0.0,0,0.0,0.05168,0.1365353623418139,0.2987616099071207,0.01544,0.3450129773822766,0.6549870226177233,23.58393218821769,4.125627151382467,0.310791015625,0.27783203125,0.20849609375,0.202880859375,11.657131132201098,6.320436429738608,16.50248959620334,11532.493353131636,47.04231927463325,14.024515180036774,14.460593117571548,9.615132236805758,8.942078740219172,0.58984375,0.8101933216168717,0.6834249803613511,0.6147540983606558,0.1191335740072202,0.7708674304418985,0.934959349593496,0.83008356545961,0.7560975609756098,0.1746987951807229,0.5128740431454419,0.7151702786377709,0.6258205689277899,0.5701078582434514,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024626048887267,0.0048085214303829,0.007119136360405,0.0093541564991052,0.0115938193440687,0.0138100431117951,0.0156862344872632,0.0177493025964869,0.0200028648604403,0.0222973665334562,0.0243544480479494,0.0265094669325493,0.0284940757440062,0.0306017239246092,0.0326912152042555,0.0346426058524067,0.0364635157545605,0.03849069929271,0.0407247824819949,0.0427799678785224,0.0578211735680608,0.071425577398667,0.0845360391588412,0.0974510216979144,0.1088520157585103,0.1243194000127115,0.1352302198035797,0.1457282143733398,0.15610649025338,0.1653252237827614,0.1778051069613903,0.1886409956203113,0.199529493770149,0.2093372338910254,0.2187365659549608,0.2277986709710342,0.2360235956562542,0.2439076576576576,0.252485202394883,0.2587881776788889,0.2646840837502316,0.2708816297857394,0.2765733230714581,0.2815881880610251,0.2855806381065779,0.2902911543821139,0.2940027300164051,0.2973014256619145,0.3007653160327881,0.303202152352817,0.3003618655582011,0.2971215703524495,0.2952070023359883,0.2931922816031405,0.2902995932183259,0.2875292390955373,0.2850323253718603,0.284594315330239,0.2854656816747138,0.2862419700214133,0.286801079298456,0.2873036261239008,0.2884450306722777,0.2897256757661659,0.2911921579933689,0.2930513595166163,0.294080783911582,0.2972037869971377,0.3016663743202947,0.3049724195404579,0.3084400835831743,0.3123013350286077,0.3147611244169923,0.3162903103995166,0.3220921590486807,0.3233504913430042,0.326336454243431,0.3274935297630897,0.3315349339088211,0.3324656005950167,0.0,2.5316393987595527,52.90573790192667,153.04248965061572,208.70777648224595,fqhc3_100Compliance_baseline_low_initial_treat_cost,1 -100000,95716,47573,453.362029336788,5204,53.29307534790422,4062,41.97835262652013,1539,15.796731998829872,77.34534288058313,79.71362987968814,63.32656324425341,65.07435467370544,77.14162406158785,79.51167877988006,63.24798345526115,64.99870905363935,0.2037188189952843,201.95109980808468,0.0785797889922577,75.64562006609776,211.13532,148.48176728609488,220584.72982573445,155127.02536690942,501.83222,336.6168416411026,523824.3344895316,351215.69015294005,456.35403,222.84489270138877,474031.9382339421,230738.05565855064,2631.92013,1229.3367335204168,2719898.000334322,1254683.1425275905,950.82741,435.5223087722143,981835.5969743824,443527.023447437,1496.85794,654.4990053935077,1536533.0979146643,658410.4366064658,0.38159,100000,0,959706,10026.578628442476,0,0.0,0,0.0,43603,455.0545363366626,0,0.0,41233,428.0789000794016,1236080,0,44401,0,0,0,0,0,104,1.0865477036232187,0,0.0,0,0.0,0,0.0,0.05204,0.136376739432375,0.2957340507302075,0.01539,0.3466764597869996,0.6533235402130003,23.782118403508072,4.088316365982584,0.3008370260955194,0.2732644017725258,0.2223042836041359,0.2035942885278188,10.919013070945097,5.715463369481265,16.55297040170002,11560.075677891144,46.23669209612403,13.49458760727782,13.633019302303088,9.87542155666771,9.233663629875416,0.5753323485967504,0.7891891891891892,0.676759410801964,0.584717607973422,0.1281741233373639,0.729059829059829,0.9149888143176734,0.8552631578947368,0.7330097087378641,0.1549295774647887,0.5131396957123098,0.7043740573152338,0.6176470588235294,0.5408895265423243,0.1188925081433224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.004804086514098,0.0068787792703218,0.0087345114767418,0.0109011775712339,0.0129099257781081,0.014933284405166,0.016873717628084,0.0191360170097928,0.0212302054436949,0.0232403173887191,0.0252721298007804,0.0274629199152455,0.0298450570733918,0.0322497420020639,0.034267816163245,0.0362069679771324,0.0381913094014965,0.0404986691066378,0.0427474233787346,0.0576089567515065,0.0717350804847926,0.0850498966389288,0.0980324074074074,0.1111568372956831,0.1269354104710601,0.1376473086314895,0.1474178703822063,0.157907113462669,0.1679414699035583,0.180092896940436,0.191165163148832,0.2019764480529374,0.2105856718967272,0.219773320556455,0.228875855110707,0.2369114331003996,0.2447930145941871,0.252120111256173,0.258394528520203,0.2647698609214819,0.2706160250713317,0.275447046710612,0.2809302437037214,0.2859745875950535,0.2903110519570147,0.2942221777271646,0.2980029745636671,0.3005584131220605,0.3032676458157227,0.3013802027172741,0.2983243607925209,0.2960365724605985,0.2939764610624331,0.2925161980621767,0.2890184913054127,0.2858993192121183,0.2866657938663961,0.2871977022824221,0.2872703365435872,0.2877082479221796,0.2890268825656343,0.289334389196849,0.2912692753364827,0.2920485627909209,0.2917164372890158,0.2922568060385039,0.2968638076551745,0.3007785346865008,0.3044910766817023,0.3084221941080788,0.3153433024431339,0.3181818181818182,0.3230315853105637,0.3279679940454038,0.3283319657718908,0.3334340078526125,0.3332000799520287,0.3298969072164948,0.3224191063174114,0.0,1.7333480866345246,51.39399852025002,146.85358372326158,216.4807386755587,fqhc3_100Compliance_baseline_low_initial_treat_cost,2 -100000,95671,47138,449.1956810318696,5019,51.24854971726019,3921,40.49293934421089,1560,15.908687062955336,77.2498286400838,79.6478958213699,63.26585613190741,65.03861806438627,77.04566465416409,79.447545187873,63.18881496430365,64.96573310079692,0.2041639859197204,200.35063349689608,0.0770411676037596,72.88496358934538,210.90674,148.23624071596802,220449.5615181194,154943.3424585191,499.11874,334.83793674006546,521176.4066436015,349463.78000059846,444.11046,216.82375799091432,461614.3136373613,224605.07066023472,2551.79843,1189.480620479094,2634690.104629407,1210846.4366185504,889.64953,400.8061313510814,919907.213262117,408992.4402556776,1512.82952,646.9087690893246,1543793.646977663,643626.2097297687,0.37863,100000,0,958667,10020.434614459971,0,0.0,0,0.0,43454,453.6588934995975,0,0.0,40198,417.5664516938257,1235459,0,44458,0,0,0,0,0,81,0.8466515454003825,0,0.0,1,0.0104524882148195,0,0.0,0.05019,0.1325568496949528,0.3108188882247459,0.0156,0.3474446987032799,0.65255530129672,23.906618441634127,4.158290901283307,0.306044376434583,0.2662586074980872,0.2216271359347105,0.2060698801326192,11.22211898492191,5.933778056813043,16.710301395722333,11495.376000939204,44.831205810658375,12.670444216944736,13.552991920750063,9.794817394338518,8.81295227862506,0.5814843152257078,0.7998084291187739,0.715,0.570771001150748,0.1126237623762376,0.7341092211280215,0.9075,0.8792569659442725,0.7067307692307693,0.1397849462365591,0.5206847360912982,0.7329192546583851,0.6545039908779932,0.5279878971255674,0.1045016077170418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387454921188,0.004381027716085,0.0066178784218592,0.0089819142450721,0.0112906999216771,0.0136170126087222,0.0158155565525961,0.017879205595548,0.0198200040908161,0.0218248481682899,0.0237250235916793,0.025845155060658,0.0280190154757984,0.0301175015460729,0.0321611464442058,0.0343479475006981,0.0364855342783718,0.0388197306809805,0.0406908390989959,0.0426463688024607,0.056642216788916,0.0707837634048257,0.083922836331577,0.0967738541184393,0.1089195635197028,0.1238027706928848,0.1351959816071447,0.1453204595349233,0.1549702597458171,0.1643641363900049,0.1763436451330966,0.1878212775187073,0.1983599049093803,0.2080902031325407,0.2172958057395143,0.2275530271885868,0.2358939344757726,0.2441233531853456,0.2516074700413105,0.2586533711673004,0.2645774795067691,0.2705822939421699,0.2768058757814171,0.2812913469171738,0.2854322552341027,0.2893952694766256,0.2927420164691705,0.2962045361667347,0.2997038422570337,0.3020882960139749,0.2992655397742615,0.2964127167948824,0.2938976016713485,0.2912811156001564,0.2886973864380544,0.2857230392156862,0.2828584995251662,0.2832271204257276,0.2840977077314918,0.2862020881006865,0.2870351268730894,0.2885756089844986,0.2889735432016075,0.2893765519092678,0.2910079645804759,0.2922273601080687,0.2935610889209937,0.2995164560910934,0.3025724927768302,0.3081897401522022,0.3107120296002166,0.3131859475922911,0.3179720628585682,0.3224760612229511,0.3270124558468116,0.3254617722702829,0.3275261324041811,0.3270084779975777,0.3293282359366466,0.3313298271975958,0.0,1.8682480713068803,48.978806177612775,149.8614572539396,202.27606125521376,fqhc3_100Compliance_baseline_low_initial_treat_cost,3 -100000,95730,47565,452.5436122427661,5189,52.86743967408336,4128,42.37960931787318,1540,15.585500887913923,77.32698317968122,79.6842656033428,63.31555014592704,65.06038417737848,77.12259715171342,79.48661094802044,63.23783386348461,64.98809438655807,0.2043860279678,197.6546553223528,0.0777162824424309,72.2897908204061,210.23992,147.9533559807327,219617.59114175284,154552.7587806672,502.59835,336.844849257154,524299.4776976914,351152.6055125395,461.34156,226.29896143666943,476649.0337407292,232455.94402866537,2708.65504,1264.6367092311918,2783263.626867231,1274835.41129342,966.09886,435.18203040508064,989724.6317768724,435126.4602581014,1501.91884,647.2605937991151,1521942.504961872,637535.0771781304,0.38091,100000,0,955636,9982.617779170583,0,0.0,0,0.0,43745,456.21017444897103,0,0.0,41784,431.2963543298861,1238640,0,44495,0,0,0,0,0,92,0.9505902016086912,0,0.0,0,0.0,0,0.0,0.05189,0.1362264051875771,0.2967816534977838,0.0154,0.3501565665868484,0.6498434334131515,23.632040107041817,4.189518707278357,0.3015988372093023,0.2725290697674418,0.2148740310077519,0.2109980620155038,11.401474972634771,6.132793018741781,16.61019610929043,11609.407815503351,47.20605820844583,13.733847588284313,14.153090025665268,9.910146108688473,9.40897448580778,0.5864825581395349,0.816,0.7076305220883534,0.5907553551296505,0.1125143513203214,0.7674609695973705,0.9339019189765458,0.8898305084745762,0.7511737089201878,0.1160220994475138,0.5108210237031948,0.7317073170731707,0.6352413019079686,0.5400593471810089,0.1115942028985507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002127551795755,0.0040863093427429,0.0063942512636258,0.0085541287386215,0.0109534706331045,0.0132477979736265,0.0156524044540522,0.0178531327195149,0.0201238706512407,0.0222003868947093,0.024433489458958,0.0267099171602492,0.0286275235393281,0.0308600024712714,0.0330922932505338,0.0350909823615115,0.0370738474599082,0.0391477532052611,0.0410967446888122,0.0433604900714687,0.058316890601021,0.0729418411223753,0.0863694027112318,0.0981529954692148,0.111056065604874,0.1262990960511709,0.1380648856176224,0.1482230692247088,0.158920860233443,0.1684609357390492,0.1804669311028714,0.192306026079799,0.202010859511866,0.2110877699730847,0.219851832282069,0.228763023719796,0.2369446957765043,0.245168701292851,0.2538191565485047,0.2603742880390561,0.2662451947570747,0.2713654943021444,0.2766196982804593,0.2816032641305652,0.2858098411694598,0.2894409018587269,0.2935590162496711,0.2969066388191995,0.3007022908676272,0.3037523749208359,0.3014924569690608,0.2995006946259336,0.2970846178751918,0.2946954813359528,0.2927278397362598,0.289358053799164,0.2865549807792701,0.2872387509220556,0.2873927797957061,0.2879221726216942,0.2890241397979949,0.2907210401891253,0.2909673098656398,0.2900082502731509,0.2916067491132202,0.292823563024337,0.2959172100935639,0.3001657337627818,0.3060164528722811,0.3115947732997481,0.3181674708030843,0.320454187036745,0.3236850295673825,0.3276938115647793,0.3281090605582862,0.3321670165616981,0.33398761890382,0.3438624550179928,0.3492717779609783,0.3446023818670764,0.0,2.921634004443032,52.16482533142251,152.88002696931608,212.71821037751545,fqhc3_100Compliance_baseline_low_initial_treat_cost,4 -100000,95760,47876,456.234335839599,5227,53.38345864661654,4153,42.784043441938174,1562,15.94611528822055,77.39144353273707,79.72998348447445,63.36142006586866,65.08697355764653,77.19640389455444,79.53805411167414,63.28779650145169,65.0169226217943,0.1950396381826351,191.92937280030264,0.0736235644169696,70.05093585223676,210.18492,147.90194813351775,219491.35338345863,154450.65594561168,506.79843,339.86456554461586,528659.7953216374,354334.6691626836,459.3492,224.79223174944784,476077.1929824562,231914.2119584097,2682.0439,1239.0734808787029,2765235.380116959,1258381.509336964,960.89663,431.186730337572,985284.8266499582,432136.643953368,1522.35128,640.9887296266783,1555847.8070175438,640543.6028525698,0.38206,100000,0,955386,9976.87969924812,0,0.0,0,0.0,44039,459.2836257309941,0,0.0,41648,431.296992481203,1241512,0,44502,0,0,0,0,0,89,0.929406850459482,0,0.0,3,0.031328320802005,0,0.0,0.05227,0.1368109720986232,0.298832982590396,0.01562,0.3397880891487029,0.660211910851297,23.88631090987256,4.116054961194388,0.3262701661449554,0.2547555983626294,0.2152660727185167,0.2037081627738984,11.154018463096545,5.935414291277684,16.547093234287683,11575.382357829074,47.09755843693903,12.869480023517273,15.22262368191239,9.837898919816263,9.1675558116931,0.5730797014206598,0.7835538752362949,0.6811808118081181,0.5973154362416108,0.1111111111111111,0.7478632478632479,0.910958904109589,0.8535911602209945,0.6859903381642513,0.1533742331288343,0.5045256453234999,0.6935483870967742,0.6183282980866063,0.5705967976710334,0.1010248901903367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207192612992,0.0043981880276052,0.0067774598729733,0.0092219254324047,0.011499628880235,0.0135778845370898,0.0156613001834114,0.0179770236904931,0.0203904422355933,0.0227449455676516,0.0247131147540983,0.0268692547603414,0.0290379260385733,0.0310817903934625,0.0329453968188518,0.035089350273732,0.0371742595160722,0.0390471054323702,0.0407879008367548,0.0427712788674882,0.0575648452585981,0.0716542848174113,0.0854550222921584,0.0985687394180311,0.1108041711038242,0.1264169697995093,0.1364094297803747,0.1465516324294422,0.1569544556570025,0.1664272851997942,0.1784068891280947,0.1890538655362221,0.2002130041188041,0.2089623981297384,0.217826679563841,0.2271706296956084,0.2364742860964355,0.2441479085231612,0.2518361517885478,0.2589952749779766,0.2641012307158953,0.2696055521802122,0.2753194859851753,0.2806838998575208,0.2853002873737435,0.290320199771198,0.2950707040423724,0.2981947622679888,0.3021598551474392,0.305876000842815,0.3025972979506325,0.3001385592580906,0.2981985650299771,0.2955297774963299,0.2931863579196567,0.2897791317593298,0.2866301231767634,0.2871673469387755,0.2870661388695401,0.2871506990460287,0.2882913165266106,0.2895778753914945,0.2905563444992064,0.2919371027099364,0.2924240605114659,0.2932549794581101,0.2942026521591295,0.2986508905374526,0.3033228401539,0.307655823880479,0.3105263157894737,0.3138481106576925,0.3160901500408061,0.3197881195611048,0.3212956068503351,0.3307665383269163,0.3354665872897752,0.3407202216066482,0.3395772009633396,0.349420127197905,0.0,2.262079387147779,50.7554671104155,152.69018469000332,220.8821295475496,fqhc3_100Compliance_baseline_low_initial_treat_cost,5 -100000,95728,47027,447.8000167140231,5127,52.30444593013539,4028,41.49256225973592,1533,15.638057830519807,77.37264048070351,79.73333034160497,63.34029949113111,65.08257284595919,77.17318415783208,79.53725199712989,63.26509910218249,65.01128148865341,0.199456322871427,196.0783444750831,0.0752003889486232,71.29135730578184,210.24542,147.8948951183897,219627.92495403645,154494.9180160347,497.90164,334.0524123198733,519527.9750961056,348367.6912153288,449.56361,220.7142071687436,466483.8082901554,228068.6762010477,2624.86335,1237.0924262303022,2706086.8293498247,1256486.83087377,955.2433,435.3512618615748,984201.6233494902,441167.8660912831,1496.60718,642.4040621069665,1528812.3641985627,641312.8314438787,0.37772,100000,0,955661,9983.087497910748,0,0.0,0,0.0,43332,452.0412000668561,0,0.0,40836,423.3662042453618,1245898,0,44685,0,0,0,0,0,82,0.8565936820992813,0,0.0,1,0.0104462644158448,0,0.0,0.05127,0.1357354654241236,0.2990052662375658,0.01533,0.3515625,0.6484375,23.50124215322413,4.218448268018014,0.3152929493545183,0.2651439920556107,0.2058093346573982,0.2137537239324727,11.742173279482518,6.347326496573428,16.463815125496527,11523.779095747685,46.17178955386391,12.985180239903393,14.4570413845308,9.204018443841532,9.52554948558818,0.5841608738828202,0.8108614232209738,0.7086614173228346,0.5886610373944512,0.1149825783972125,0.7621753246753247,0.9452954048140044,0.8602150537634409,0.7162790697674418,0.175531914893617,0.505722460658083,0.7103109656301145,0.6458797327394209,0.5439739413680782,0.0980683506686478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088607594936,0.0043476938980268,0.0066952737453969,0.0090083685407864,0.0111744908438316,0.0134576623165095,0.0157995596509826,0.0181990772873882,0.0203009363372449,0.0224590281403228,0.0246990792954251,0.0267043121149897,0.0286989336870572,0.0306085666910409,0.032725659516956,0.0347992351816443,0.0367866313260995,0.0387424019251913,0.0404427814156532,0.0424756270310807,0.0571571770160069,0.0710683268808203,0.0844255247761444,0.0977486283660213,0.1097395136041154,0.124779313042467,0.135461632285093,0.1454551258858833,0.1550717054470511,0.1643164294982467,0.1763838035752746,0.188664344288898,0.1996411288130063,0.2092346726743804,0.2184604889641969,0.2282210084312921,0.2366499977675581,0.2435825264580049,0.2510960677858295,0.257986103148577,0.2638687947777173,0.2699107278662439,0.2758122401601383,0.2805460259578245,0.2846569848696603,0.288788906009245,0.2918340026773762,0.294881084035643,0.2987311975374109,0.3018082134008119,0.3008159589197618,0.2972739133420312,0.2950116694317127,0.2932892781392933,0.2909271680417878,0.2875581110839246,0.2848002274989336,0.2847590953785644,0.2855708182266932,0.2870743707703511,0.2884217973302552,0.28900883218842,0.2902835948406993,0.2914399911180193,0.2932553420078787,0.294978160295676,0.296359017781541,0.3024340203301315,0.3066948653052734,0.311123261990314,0.3146693008845584,0.3184629901446844,0.3198054984103235,0.3247484607298393,0.3274459034584797,0.3268332554880896,0.329062405788363,0.3316683316683316,0.3322475570032573,0.3253878168747635,0.0,2.238783714675719,53.65598313260836,145.5624505165666,204.8571443218798,fqhc3_100Compliance_baseline_low_initial_treat_cost,6 -100000,95746,47516,452.1859921041088,5166,52.75416205376726,4129,42.57096902220459,1559,15.958891233054125,77.33281654085012,79.69915572099667,63.319784280511655,65.07120040215746,77.1349142062043,79.50302224833032,63.2449567894606,64.99912579306906,0.1979023346458177,196.13347266634665,0.0748274910510602,72.07460908840346,211.48754,148.80857508659378,220883.25360850585,155419.4994052324,500.43391,335.41134020928314,522016.85710108,349664.3146731003,456.33567,223.8727438900791,473377.55102040817,231288.95463800605,2673.76936,1243.032884937945,2757678.7750924323,1263954.401631622,937.1065,424.2699041803856,964426.858563282,429095.94848100486,1521.19242,647.636899543342,1558674.1378229898,650849.4249736251,0.38201,100000,0,961307,10040.14789129572,0,0.0,0,0.0,43505,453.7735257869781,0,0.0,41317,428.18498945125646,1237196,0,44401,0,0,0,0,0,88,0.9086541474317466,0,0.0,1,0.0104443005451924,0,0.0,0.05166,0.135232061987906,0.3017808749516066,0.01559,0.3543510324483775,0.6456489675516224,23.822012989160783,4.190956258890186,0.3274400581254541,0.2593848389440542,0.2056187938968273,0.2075563090336643,11.212039700405668,5.935769886459993,16.752255779529776,11634.271079664446,47.04350518700053,13.12407601631168,15.15065794846167,9.444418916086535,9.324352306140645,0.5730201017195447,0.8207282913165266,0.6723372781065089,0.558303886925795,0.1213535589264877,0.75,0.9406593406593406,0.8489010989010989,0.7424242424242424,0.1407035175879397,0.499141778235496,0.7321428571428571,0.6072874493927125,0.5023041474654378,0.1155015197568389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0042802227338654,0.006487968321657,0.0091379433020603,0.0112216660562405,0.0133841264667535,0.0152663192567739,0.0174068402246043,0.0198359951739228,0.0221685217231033,0.0244212512046586,0.0265019663411678,0.0288925218750321,0.0312876548677123,0.0332019562122118,0.0349781903127777,0.037096490228772,0.0391448733914487,0.0411138377074408,0.0433364932859687,0.0584298987368201,0.0728708934923624,0.0862634885013475,0.0991063919259882,0.1111485881125293,0.1262993158434582,0.1368423285361275,0.1475462179507647,0.1580971097771986,0.167124227865477,0.1792527993109388,0.1902304446608244,0.2008286301503931,0.2112260293442372,0.2195140729660467,0.2292319445520876,0.2384411121524523,0.2465229328892289,0.2542470976747353,0.2610174149005599,0.2678255233950953,0.2739382872126235,0.2795200985385034,0.2838783926345066,0.2880422894640904,0.2919184942151615,0.2961520642115676,0.2996793648370104,0.3029310054527322,0.3061752514718694,0.3037238482457793,0.3006891997853989,0.298208551630894,0.2957122019554323,0.2936543319958389,0.2909508146561615,0.2877623925139099,0.2874250516038137,0.2877440457937238,0.287857219118118,0.2887154301506974,0.2896479678322229,0.2911685547975214,0.2919696666444281,0.2933081231152171,0.293565370749799,0.2954906409529211,0.2995589201363906,0.3019935062668016,0.3060942375291283,0.3073651827723489,0.3106068601583113,0.3153658993075051,0.3196955997588909,0.3215147577501392,0.328335480848073,0.3314182038100998,0.3302605210420841,0.3331523214770567,0.3391304347826087,0.0,2.096367553134985,53.1341083139488,148.04608206189332,216.83259780675516,fqhc3_100Compliance_baseline_low_initial_treat_cost,7 -100000,95778,47164,448.2971037190169,5139,52.45463467602163,4049,41.679717680469416,1547,15.776065484766857,77.34910350822409,79.67809915318686,63.34642956891118,65.06705319184923,77.15172883737634,79.4856358032345,63.272175548799446,64.99747637799835,0.1973746708477506,192.46334995236225,0.0742540201117307,69.57681385087255,210.11782,147.8965717845317,219379.8158240932,154415.7862813294,498.14986,334.0383167920053,519521.9674664328,348177.15322423534,453.59516,222.50246277156708,470173.421871411,229706.29324830015,2637.53516,1232.349963556799,2717704.1909415526,1250678.5693323922,930.80716,420.5222668503558,956975.9443713588,424322.6700552281,1502.06134,637.3573155606476,1533028.0231368372,633621.7602734943,0.37847,100000,0,955081,9971.809810186054,0,0.0,0,0.0,43372,452.2124078598425,0,0.0,41053,425.222911315751,1244914,0,44716,0,0,0,0,0,101,1.044081104220176,0,0.0,1,0.0104408110422017,0,0.0,0.05139,0.1357835495547864,0.3010313290523448,0.01547,0.3670083876980429,0.6329916123019571,23.544545940109103,4.174778853961949,0.298345270437145,0.2775994072610521,0.2148678686095332,0.2091874536922697,11.390262974189298,6.099739687274827,16.45213248091385,11491.088177102993,46.38425864423034,13.701860384172,13.79787568555212,9.565094987251449,9.31942758725477,0.5848357619165226,0.7838078291814946,0.7201986754966887,0.5942528735632184,0.1180637544273908,0.7542955326460481,0.9090909090909092,0.8678678678678678,0.7681159420289855,0.1156069364161849,0.5164644714038128,0.6998514115898959,0.664,0.5399698340874811,0.1186943620178041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521467919637,0.0047841555255982,0.0071420600379421,0.00961899828341,0.0114898116891039,0.0135490044382914,0.0158278807150573,0.0180435780986885,0.0202311252797106,0.0223343086902252,0.0246181270553523,0.0266082441432104,0.0285905143620574,0.0304976583809376,0.032941540364986,0.03516980664353,0.0373352097518574,0.039258790713108,0.0411176690635521,0.0432378393576806,0.0582845454640326,0.0720927070586635,0.0849384010484927,0.0975691780605971,0.1094894356920807,0.1242180235015639,0.1349939053473952,0.1455688126076692,0.1554559521903847,0.1643633091212958,0.1761502448474412,0.1870302886123036,0.198014850570214,0.2076494964846867,0.2165111776095757,0.226125477601196,0.2341729067392784,0.2427427877588649,0.2498043263722676,0.2566362564531084,0.263306390999179,0.2693216374269006,0.2738941664990713,0.2775795171488791,0.2813679445637795,0.2865643325284581,0.2908094993934695,0.2946120881496458,0.299291900218773,0.3029627479949345,0.3007523856952501,0.2986879022941079,0.2975706508742562,0.2947913511330362,0.2929519009856963,0.2890673915367347,0.2855519608616744,0.2856207759904433,0.285957388877544,0.2868051476477812,0.2879458037063994,0.2881509672076193,0.2890396659707724,0.2892829262852682,0.2910571449160481,0.2919498919186394,0.2926718122525704,0.2947882223271926,0.298117448721551,0.3013671409267944,0.3062468720141953,0.3098823030431555,0.3124050632911392,0.3149192319414812,0.3165739081218753,0.3206398472006685,0.3234704885190322,0.3251221498371335,0.3217247097844112,0.324377716317661,0.0,2.244508664577987,50.54725719586032,151.33153875947605,213.6106316560632,fqhc3_100Compliance_baseline_low_initial_treat_cost,8 -100000,95667,47388,451.56637084888206,5080,51.83605632036125,4019,41.424942770234246,1541,15.700293727199556,77.31532774038504,79.70852228579572,63.31028192710126,65.07670850903408,77.11575364083347,79.51124230601464,63.23447940372101,65.00425508684245,0.1995740995515689,197.27997978108647,0.0758025233802541,72.45342219162865,210.86736,148.26624588014158,220418.07519834428,154981.5985451008,497.91012,334.19806553360326,519907.0944003679,348780.1075957261,452.36662,222.2175603668509,469462.6464716151,229631.1065568373,2616.88608,1229.5228979160645,2698848.9656830467,1248648.60183351,948.47481,431.4798667037383,977344.517963352,436933.5682144712,1502.60782,643.9395167233315,1532665.8722443476,641736.5472747011,0.38059,100000,0,958488,10019.003418106557,0,0.0,0,0.0,43274,451.7545235034024,0,0.0,41007,425.1936404402772,1240585,0,44532,0,0,0,0,0,76,0.7944223190859963,0,0.0,1,0.0104529252511315,0,0.0,0.0508,0.1334769699676817,0.3033464566929134,0.01541,0.3579481397970688,0.6420518602029313,23.517454620043985,4.12767717410595,0.3065439163971137,0.2739487434685245,0.2050261259019656,0.2144812142323961,11.222062202050504,6.034556503795198,16.480995995063786,11526.267479897995,45.91837545502665,13.300272181662978,14.057144331972838,9.082221183986707,9.478737757404124,0.575018661358547,0.8010899182561307,0.6915584415584416,0.5606796116504854,0.1334106728538283,0.7464435146443514,0.9237472766884532,0.8558282208588958,0.7368421052631579,0.1741293532338308,0.5024787535410765,0.7133956386292835,0.6324503311258278,0.5008130081300813,0.1210287443267776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0048155883128206,0.0070632649333252,0.0094284030642309,0.01165771484375,0.013903743315508,0.0161866100934274,0.0184055972626525,0.0206473385488571,0.0227538042476498,0.0248807753448541,0.0269748330765279,0.0292368783819928,0.0312007336500118,0.0331850414425945,0.035401799565622,0.0373206237372429,0.0392008303061754,0.041243654822335,0.0429612181725327,0.0579539043400129,0.0723006366225498,0.0855733403306218,0.0986551332238919,0.1109094171160807,0.1260996136135076,0.1365769745364962,0.1463905665803853,0.1561541339319117,0.1650387480411309,0.1772276053848392,0.1880887926367081,0.198393172069934,0.2070546775817537,0.215981056225563,0.2257789017180758,0.2348184468296605,0.2433408730292697,0.2513906232262459,0.2581887363330047,0.2641878669275929,0.2698938448754111,0.2749937848492382,0.2790892951393887,0.2839929062507592,0.2886293065207748,0.2927323689874368,0.2959351040699818,0.2998641743742319,0.3035094892051224,0.3000094198705441,0.2978448335144205,0.2948919891989199,0.292852707132851,0.2910588409883505,0.2886170782050302,0.2854999447225863,0.2858917770148765,0.2866137980327422,0.2871876944963101,0.2883339545285128,0.2888329465444676,0.2890540202053936,0.2885386053967406,0.2909543647943303,0.2918492777676927,0.2938985556692823,0.2975089639554633,0.3013732307800372,0.3053083280356007,0.3072440012748714,0.3122517082472588,0.3147821707378494,0.3149238889313853,0.3200641448919913,0.3203987184051264,0.3207204480096867,0.3210023866348448,0.3255051884216275,0.3218608169440242,0.0,2.3102967620208386,51.91645435052509,145.89636327244352,208.18432982584804,fqhc3_100Compliance_baseline_low_initial_treat_cost,9 -100000,95629,47648,454.2345941084817,5166,52.83961978061048,4075,42.05837141452906,1533,15.601961748005312,77.3146043072854,79.73330686547507,63.296484254502126,65.08277841800037,77.11224680079971,79.5353836875901,63.21885762159236,65.00966003328121,0.202357506485697,197.9231778849737,0.0776266329097694,73.11838471916587,209.64086,147.5019333509595,219223.10177874911,154243.9357840817,497.78374,333.59561468931,519991.06965460273,348298.2795529208,453.23191,221.94220080860663,470926.2357653013,229741.4515406475,2675.43319,1242.6884062378424,2761991.278796181,1263760.3883923062,951.04128,432.3584279268413,976134.6035198529,433752.4553202861,1496.31244,650.3206515628042,1524741.7624360812,645710.8297670092,0.38358,100000,0,952913,9964.686444488596,0,0.0,0,0.0,43235,451.5366677472315,0,0.0,41059,426.3246504721371,1245635,0,44645,0,0,0,0,0,86,0.8993087870834161,0,0.0,1,0.0104570789195746,0,0.0,0.05166,0.1346785546691694,0.2967479674796748,0.01533,0.351572678205844,0.648427321794156,23.941571546516208,4.17961865580551,0.3094478527607362,0.2593865030674847,0.2215950920245398,0.2095705521472392,11.199347523773492,5.8436126390122585,16.61977549035576,11598.870406204978,46.31302468817582,12.8615132688856,14.173416321808904,9.891414972324116,9.3866801251572,0.5720245398773006,0.7899716177861873,0.6938937351308485,0.5658914728682171,0.1288056206088993,0.7297527706734868,0.9113082039911308,0.8466257668711656,0.6893203883495146,0.1421052631578947,0.5082701585113715,0.6996699669966997,0.6406417112299465,0.5294117647058824,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002006221312555,0.0044923994280556,0.0066390546960652,0.0088909210994259,0.0112101236979166,0.013750254634345,0.0158301118919635,0.0180713045254877,0.0201900359002158,0.0223551218113485,0.0245230769230769,0.0265844889573703,0.0287639524715806,0.0306012055020349,0.0327115827286146,0.0348243273983084,0.0369276677753256,0.0390992431399827,0.0411091457704713,0.0432211433160546,0.057863765116595,0.0725307187077716,0.0857205863821565,0.0991441474634973,0.1109035057161858,0.1269088213491475,0.1378442121366649,0.1488989789175246,0.1579183874350031,0.1666988997765171,0.1786330873149467,0.1895677058491957,0.2011724709061587,0.2110014351603326,0.2198243080891024,0.2295245705153815,0.2382937350528598,0.2467327625056331,0.254314311357517,0.2608032478554062,0.2662499276494762,0.2712746669162114,0.2767198835461614,0.2813260304181598,0.2856431797212645,0.2886633492634379,0.2927643506420435,0.2964007930456001,0.3006156393077938,0.3039540126834285,0.3010989897902907,0.2987168214540858,0.2966482255725889,0.2940165260603259,0.2921720775359733,0.2892394883970284,0.2866508313539192,0.2875755783385909,0.287894862931654,0.2886691770920707,0.289062791826977,0.2905672240014146,0.291407533747946,0.2930302828323224,0.2933406451920555,0.2930509698720594,0.2937210876678325,0.2991490154667992,0.3037008775276612,0.3079338907863228,0.3136400395363465,0.3160572837433772,0.3201976605992369,0.3223084457168688,0.3260546366846311,0.3286018452803406,0.3335895465026902,0.3373080032336297,0.3326086956521739,0.3425712086220169,0.0,2.111108320505113,51.19658402215394,147.888843285841,215.18559959398576,fqhc3_100Compliance_baseline_low_initial_treat_cost,10 -100000,95651,47241,450.86826065592624,5165,52.785647823859655,4036,41.66187494119246,1541,15.776102706715038,77.29129418892526,79.6907719846767,63.29829466637945,65.06962067178182,77.0870017824551,79.48815466396798,63.2220333043392,64.99610368764475,0.2042924064701594,202.6173207087254,0.076261362040249,73.51698413707197,210.79938,148.19132581685267,220383.4147055441,154928.7830387287,497.81702,334.287269231832,519928.9918558092,348965.66210090753,454.11421,222.4626786266883,471071.53087787895,229819.54298911805,2620.24498,1227.0176734567588,2707594.850027705,1251138.5948447976,946.15176,425.9752383640637,976735.8731220792,432908.2898914424,1497.396,640.1906295790768,1534814.2518112722,643587.9864085268,0.37807,100000,0,958179,10017.427941161097,0,0.0,0,0.0,43346,452.62464584792633,0,0.0,41030,425.3484020031155,1240116,0,44516,0,0,0,0,0,96,0.9931940073809996,0,0.0,1,0.0104546737619052,0,0.0,0.05165,0.136614912582326,0.2983543078412391,0.01541,0.356652440155873,0.643347559844127,23.73187819893816,4.180607980921465,0.3136769078295341,0.2621407333994053,0.2187809712586719,0.2054013875123885,11.6522797654085,6.319171872662106,16.514144959654658,11476.4119481897,46.182436462883146,13.02881280071188,14.26156177383565,9.811419126222528,9.080642762113092,0.5832507433102081,0.8119092627599244,0.7187993680884676,0.5549263873159683,0.1145958986731001,0.7666941467436109,0.9348314606741572,0.8923512747875354,0.7511111111111111,0.1578947368421052,0.5044279135671271,0.7226753670473083,0.651697699890471,0.4878419452887538,0.1017214397496087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0042988948595761,0.0064959451092638,0.0088304034142871,0.0108659158196746,0.0131588328156031,0.0153863409262393,0.0173586292809443,0.0192929003762473,0.0215632871214138,0.0237304126671589,0.0258098309471478,0.0279718121495807,0.0299448709361636,0.0318477913014752,0.0338732365231062,0.0358886136818214,0.0380326439073012,0.0399650396945135,0.0421805444063343,0.0563044704997178,0.0695199488839309,0.0829177122817333,0.0956425639406378,0.1076072272880783,0.1225828985108432,0.1335534277403876,0.1436118655802311,0.153280379726537,0.1624656475437993,0.175216163184337,0.1875162407968817,0.197999651734796,0.2072117437138071,0.2167234178540337,0.2264217904356312,0.2350411118062382,0.2429168026835665,0.250771850170261,0.2578878628875192,0.2647446877459377,0.2705067614992279,0.2761115386892428,0.280047486000024,0.284559172209185,0.2893538795602877,0.2933440216438288,0.2967377186950874,0.2998133941530168,0.3043162810331636,0.3015262038706899,0.298497192557525,0.2957546039931803,0.2931570200158971,0.2916004219848145,0.2877243535704979,0.2849067359153814,0.2847425322861556,0.2845955234854573,0.2856964196383906,0.2856446502559103,0.2864803894407725,0.2871461522331726,0.2889579189666346,0.2917376184194747,0.2932817208770654,0.2943291526287477,0.2996966759435879,0.3053563306860721,0.3087314792805641,0.3139835700993963,0.3160561596115275,0.3204572577099428,0.3264280274181264,0.3308221113099162,0.3296808003811339,0.3329734731647131,0.3393739703459638,0.3422074320576816,0.3510840623811335,0.0,2.0609411147849834,53.05225743353856,142.99027814171546,212.18136703160607,fqhc3_100Compliance_baseline_low_initial_treat_cost,11 -100000,95638,47505,453.85725339300274,5053,51.62174031242811,3996,41.270206403312486,1530,15.7155105711119,77.27514686010801,79.6881638324911,63.27600815666828,65.05713801264473,77.08138229046108,79.49451079391952,63.20371887999045,64.98692336970396,0.1937645696469303,193.65303857158267,0.0722892766778287,70.21464294076907,210.7281,148.15618610201403,220339.3002781321,154913.51356366093,502.46479,337.2037358827813,524851.4188920722,352054.03509761207,453.56492,221.841025272792,471206.978397708,229629.38375060807,2595.21407,1199.3172329658385,2682274.7025241014,1222834.3590880814,942.33223,421.78426694579775,973957.5168865932,429784.9985722782,1487.42486,630.2461934067151,1528596.8338944772,635965.6689196734,0.37971,100000,0,957855,10015.422739915097,0,0.0,0,0.0,43668,456.0321211234028,0,0.0,41035,425.9603923126791,1235515,0,44315,0,0,0,0,0,77,0.8051193040423262,0,0.0,3,0.0313682845730776,0,0.0,0.05053,0.1330752416317716,0.3027904215317633,0.0153,0.3439575033200531,0.6560424966799469,23.832938255604635,4.193766441573655,0.3163163163163163,0.2602602602602603,0.2184684684684684,0.2049549549549549,11.314243132368428,6.114981447117825,16.281040765773835,11542.042251151568,45.32603506021859,12.5722110162983,14.245143356531742,9.580486084689667,8.928194602698875,0.5813313313313313,0.8076923076923077,0.6882911392405063,0.5784650630011455,0.1318681318681318,0.7531194295900179,0.9318734793187348,0.8563049853372434,0.7114427860696517,0.1597633136094674,0.5142658315935977,0.7265500794912559,0.6262188515709642,0.5386904761904762,0.1246153846153846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0043582700708472,0.0067272081578813,0.0087252412392077,0.0108931132334543,0.0126792406713377,0.014755067912061,0.0169982950659002,0.0192510198030936,0.0215739678899082,0.0235709230406285,0.0254977296542088,0.0276143051154368,0.029840746276349,0.0316817778144943,0.033611619751094,0.0358434827675563,0.0377728849469289,0.0399816846004953,0.0419447688970465,0.0563046113967975,0.0703732422407108,0.0841106769191982,0.0974337905315719,0.1100208084670391,0.1249682284165042,0.135359996599796,0.1457960262641766,0.1562951468778425,0.1653089736700698,0.1772757202534515,0.1884975711311589,0.1990147353736158,0.2089053111705626,0.2178561970338983,0.2280547811309438,0.2369010049463954,0.2452530038923675,0.2528220300409649,0.2601471989712147,0.2663929673184422,0.2726409453803678,0.2771195787526239,0.2817834761939062,0.2855614192952163,0.2895992895992896,0.2939311934651332,0.2974926816851215,0.3011876361373301,0.3044064035504834,0.3022635408245755,0.2991714152008148,0.2973696068491607,0.2943257291365868,0.2925996824407544,0.289434648968544,0.2858857720495324,0.2861308129535291,0.2869364083201524,0.2872884970851699,0.287478514311337,0.288575813624021,0.2904161622907709,0.291299117882919,0.2937697538549947,0.2962329211065308,0.2974717590102205,0.3005507228237061,0.303681946921221,0.3076344936708861,0.3118299027369373,0.3169234026785241,0.3179801262421098,0.3188689178010077,0.3257356375525455,0.3295494856332032,0.3325709057639524,0.3399273314493338,0.3389086920756786,0.3347312237895539,0.0,1.8524209577311936,49.231309820673815,143.95555993985195,216.6264060646303,fqhc3_100Compliance_baseline_low_initial_treat_cost,12 -100000,95673,47306,450.3046836620572,5140,52.38677578836244,4052,41.65229479581491,1506,15.23940923771597,77.28391542799022,79.6800111720141,63.28504443165552,65.05886064230596,77.09478495897348,79.49811846699731,63.21340171920116,64.99268831750953,0.1891304690167459,181.8927050167929,0.0716427124543628,66.1723247964261,211.09638,148.51608333520954,220643.62986422505,155233.0159347042,502.40551,337.0960697128865,524444.0751309147,351659.0782782916,458.66566,225.11808496048135,474754.1835209516,231647.8289608864,2632.90279,1227.8969436556422,2711417.609984008,1242910.053235299,969.27015,437.6279143659055,997655.075099558,442005.3933076591,1464.03314,619.5396618356189,1485744.7555736727,612199.6348571038,0.38086,100000,0,959529,10029.255902919318,0,0.0,0,0.0,43678,455.8130297994209,0,0.0,41664,430.8321051916424,1233960,0,44315,0,0,0,0,0,94,0.982513352774555,0,0.0,1,0.0104522697103676,0,0.0,0.0514,0.1349577272488578,0.2929961089494163,0.01506,0.3636532738095238,0.6363467261904762,23.7188855522429,4.152754011430438,0.305528134254689,0.2680157946692991,0.2253208292201382,0.2011352418558736,11.888774824126315,6.688634584721697,16.079009783529003,11561.10872638818,46.33757075899609,13.299899592838871,14.101546664603209,10.095352273897095,8.840772227656911,0.5856367226061204,0.8075506445672191,0.6938610662358643,0.5848849945235487,0.1263803680981595,0.7713338856669428,0.9261744966442952,0.8825136612021858,0.7546296296296297,0.1741573033707865,0.5068541300527241,0.7245696400625978,0.6146788990825688,0.5322812051649928,0.1130298273155416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813866763948,0.004817835118468,0.0072387991512431,0.0094511234641924,0.0118128262263056,0.0141695868307391,0.0160946504156254,0.0184561016464436,0.0207210432114548,0.0228953676576041,0.0249810205798469,0.0270339697088017,0.0292141306249292,0.0312168276117941,0.0335487334062803,0.0353789195002895,0.0372101216504673,0.0391654123631079,0.0413585062672283,0.0433880852128236,0.0579018290835779,0.0715788812462702,0.0847955671228276,0.0979523548970916,0.1102280762857655,0.1262067067490896,0.1364693389965489,0.1462300319488818,0.1556534194155247,0.1651176268567012,0.1765320859649501,0.1878615221300288,0.1990723602552098,0.2087188865405884,0.2174665270813819,0.2270921198668146,0.2362679126332968,0.2441604975830713,0.2514202608735172,0.2581888246628131,0.2646823603046003,0.2710714160132212,0.2767572311231811,0.2812064909501176,0.2853544571804045,0.2899480561142025,0.2930794764201165,0.2970923204173824,0.3019178224104217,0.3054570385117407,0.3032811154177433,0.2998777018949335,0.2973698637839661,0.2951096121416526,0.2925243770314192,0.2890867642783923,0.2861253399102004,0.286324716360243,0.2866522280393594,0.2870281253341888,0.2878512721622077,0.2888998715034101,0.2900436534586971,0.2905458373462942,0.2914103770171503,0.2919154261282164,0.2926670072081276,0.2959468355223974,0.2998360598555931,0.3052966851480476,0.3109444871042052,0.3112057184904867,0.3134457950880674,0.3159342702059632,0.3185198787990083,0.3212748633244155,0.3271224643125469,0.3286197968532165,0.3311511183851609,0.3348399246704331,0.0,2.743826193246391,52.08712751632342,148.7284305248036,207.3493084906761,fqhc3_100Compliance_baseline_low_initial_treat_cost,13 -100000,95656,47770,455.28769758300575,5225,53.41013632181985,4161,42.91419252320816,1617,16.548883499205484,77.35161970545354,79.75776643801385,63.31721993396855,65.09436364019042,77.14670194966989,79.55486641234471,63.240751074840894,65.0207477062104,0.2049177557836543,202.9000256691376,0.0764688591276581,73.61593398002242,209.88,147.54407422032975,219410.9935602576,154244.23017931942,504.3647,338.7097512344458,526666.9105963034,353489.99185807543,458.41495,224.7670920079161,475721.96203060966,232215.0810246333,2718.16643,1271.9527693784332,2804801.716567701,1292985.5988069293,973.97495,441.0398196473129,1005623.9964037802,448501.7387514749,1573.00534,666.0549186190633,1610804.5914527057,668023.8259379714,0.38316,100000,0,954000,9973.226980011708,0,0.0,0,0.0,43848,457.7548716233168,0,0.0,41644,431.8181818181818,1242668,0,44544,0,0,0,0,0,89,0.9199632014719412,0,0.0,2,0.0104541272894538,0,0.0,0.05225,0.1363660089779726,0.3094736842105263,0.01617,0.3536562902928716,0.6463437097071284,23.33533007453794,4.194928393356627,0.3141071857726508,0.2641192021148762,0.2141312184571016,0.2076423936553713,11.524878811433604,6.284030037222701,17.185542550246073,11661.107708480076,47.52713090716835,13.553607239385926,14.773360437519324,9.725841129533048,9.47432210073006,0.5849555395337659,0.818926296633303,0.7016067329762815,0.5791245791245792,0.1168981481481481,0.761519805982215,0.9245283018867924,0.889196675900277,0.7101449275362319,0.171875,0.5102599179206566,0.7379421221864951,0.6300211416490487,0.5394736842105263,0.1011904761904761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019857954833284,0.004167722963038,0.006545963829744,0.0089002682272616,0.0110976614552075,0.0131798737013648,0.0154591342476928,0.0177165555339984,0.0197137014314928,0.0219502202191949,0.0242526212118103,0.026224387035781,0.0287116791701398,0.0306810449699993,0.0327948437209494,0.0349379765562763,0.0370001865555624,0.0393119627953328,0.0410316164001622,0.0432710855307746,0.0581166931371729,0.0721801677293714,0.0858768210252319,0.0984017087721882,0.1107218235542423,0.1268719110160971,0.1376202305879355,0.147852499200682,0.1574809045978732,0.16672035736529,0.1784116029546557,0.1896424702058504,0.2007120072289419,0.2094558351851649,0.2188962676622504,0.2288999013314708,0.237486033519553,0.2460286187136214,0.2543252202343111,0.2613878392305049,0.2668972057735011,0.2731596723112342,0.2796292574509085,0.2849686972551742,0.289289180009704,0.2926109101646121,0.296692594858477,0.3011803528366544,0.3045919882263332,0.3078410481038633,0.3053510986944608,0.3026357312404813,0.2999353678412859,0.2973140436323813,0.2958122165910909,0.2929636810527762,0.2909779179810725,0.2916837093633939,0.2920356996866058,0.291818748330811,0.2919548394332498,0.2924164271370634,0.2940537605213141,0.2946722405052032,0.2950459591739286,0.2953858084528887,0.2963172484018781,0.3002622377622377,0.305500400599157,0.3092170075265004,0.3128133327311322,0.3155967142782399,0.3218147917961467,0.3272288793428291,0.3310101291701515,0.3352266004023193,0.3397092578423871,0.3451185214945761,0.3426951120712935,0.3480044759418128,0.0,2.102384613965181,54.07332583481224,146.56196168183334,221.6197764592379,fqhc3_100Compliance_baseline_low_initial_treat_cost,14 -100000,95798,47794,456.3873984843107,5005,51.10753877951523,3984,41.08645274431616,1493,15.282156203678571,77.3507064425629,79.67758046238899,63.34838135415546,65.0693875789864,77.15370363373677,79.48250337474434,63.27425021800347,64.99795220031689,0.1970028088261273,195.0770876446484,0.0741311361519834,71.43537866950567,210.4608,148.05878310574062,219692.2691496691,154553.10455932337,497.35984,334.160341439394,518663.63598404976,348310.6454654065,458.66232,225.03873238347197,475030.0110649492,232091.3985697407,2591.16933,1218.1499102998866,2675684.335789891,1242725.5726152782,939.77426,422.71032142796406,971098.8851541786,431440.0519019273,1463.41348,624.5508887964357,1500054.0512328022,629073.2718577331,0.38141,100000,0,956640,9986.012234075868,0,0.0,0,0.0,43201,450.416501388338,0,0.0,41593,430.5935405749598,1243984,0,44676,0,0,0,0,0,80,0.814213240359924,0,0.0,2,0.0208772625733313,0,0.0,0.05005,0.1312236176293227,0.2983016983016983,0.01493,0.3553435114503817,0.6446564885496183,23.492683246151262,4.173687308727261,0.3185240963855422,0.2678212851405622,0.2023092369477911,0.2113453815261044,11.203127485337784,5.884384749638896,16.098127173777,11493.57628120963,45.75065458017458,13.058972371594976,14.438636139376412,8.95550236435442,9.297543704848785,0.5763052208835341,0.8153701968134958,0.7013396375098503,0.5471464019851117,0.1128266033254156,0.7585917854149203,0.9385964912280702,0.8469945355191257,0.7263681592039801,0.1235294117647058,0.4983876746685776,0.723404255319149,0.6423034330011074,0.4876033057851239,0.1101190476190476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0043694241686942,0.0063928886724101,0.008359743214692,0.0105844314299658,0.0125118348315636,0.0149606620194855,0.0168792733952444,0.019150588620013,0.0215413583847562,0.023547012050168,0.0256731242817271,0.0277172572556112,0.0298429103786209,0.0318635538689985,0.0338126820802082,0.0358536055379075,0.0376840140991084,0.0397540813359365,0.0417260944250689,0.0561161138182539,0.0705742127054493,0.0837010870134907,0.0969179197797463,0.1086532685558916,0.1243208963111721,0.1360223947067056,0.1466378640673385,0.1562389914279919,0.1652502866695958,0.1778703344956735,0.1888649945427234,0.1997631438846576,0.208745712350615,0.2173621493272359,0.2265864368909487,0.2349644584085388,0.2428789648665648,0.2510792100522326,0.257389613360787,0.2628917165092488,0.2696865331854532,0.2753655739836629,0.279766821081864,0.2837195195923814,0.2880231413096996,0.2920201401816614,0.2958383633013533,0.3000931243209685,0.3036069373296285,0.3006017946375799,0.297276510417382,0.2956894733141129,0.2937338510616799,0.2915622265399047,0.2886673597945079,0.2868232987604351,0.2870016250020518,0.2872850825522033,0.2871439019604345,0.2886039405357778,0.2894039996838194,0.2907162026165716,0.2919290853262209,0.2936313386205239,0.2942219440967876,0.294766861542849,0.2990930847713818,0.3032206006174572,0.3065338550930866,0.3086644240385489,0.3138328990054778,0.3154049628416677,0.3168664579674735,0.3173518119674127,0.3219437219200756,0.3269525267993874,0.3210354667753771,0.3319467554076539,0.3386100386100386,0.0,1.851566426314449,52.08653714110152,147.88039556716825,204.42594480402184,fqhc3_100Compliance_baseline_low_initial_treat_cost,15 -100000,95737,47428,450.755716180787,5163,52.59199682463416,4071,41.95869935343702,1602,16.31553109038303,77.31652017658898,79.67816710308458,63.31665033110207,65.06270603451136,77.11002729273922,79.47492091489323,63.2378211297358,64.98786632223835,0.2064928838497621,203.24618819134344,0.0788292013662683,74.83971227301822,209.43362,147.3769002443041,218759.3302484933,153939.3340550718,500.49371,336.266096662875,522217.5021151697,350677.1223903767,457.48164,224.2649818537848,474341.81142087176,231556.16189217023,2658.726,1247.045250517276,2740700.262176588,1266159.855141978,959.30013,441.3634637096171,981876.3278565236,440881.9527640775,1566.37278,673.027268214206,1597151.8848512068,669116.7815342904,0.37893,100000,0,951971,9943.60592038606,0,0.0,0,0.0,43475,453.5341612960507,0,0.0,41464,429.7084721685451,1245230,0,44666,0,0,0,0,0,88,0.9087395677742148,0,0.0,0,0.0,0,0.0,0.05163,0.1362520782202517,0.3102847181871005,0.01602,0.3508057047601408,0.6491942952398593,23.68368491694612,4.126604242023467,0.3178580201424711,0.2593957258658806,0.2095308278064357,0.2132154261852124,11.493556794109324,6.203675935490212,17.205154504311487,11523.10829767506,46.76585254271892,12.968186663803296,14.66113918854719,9.529572840975929,9.606953849392498,0.5738147875214935,0.7945075757575758,0.6908809891808346,0.5814771395076201,0.1232718894009216,0.7397034596375618,0.9248291571753986,0.8469945355191257,0.7087378640776699,0.1773399014778325,0.5033251662583129,0.7017828200972447,0.6293103448275862,0.5409582689335394,0.106766917293233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0045417220020072,0.0068612027404212,0.009144761575744,0.0116170247395833,0.0139123703990385,0.0163584999949007,0.0183307292464487,0.0206646216768916,0.022923193480353,0.0252237841828416,0.0273028781484561,0.0294404968790811,0.0315405764418769,0.0335234715875684,0.0356353191577294,0.0375542144979142,0.0397792691402076,0.041953389742417,0.0437455072041005,0.058821686973408,0.0728614032334013,0.0863564379280328,0.098255318701427,0.1109611288043363,0.126331489258174,0.1370836825854916,0.1481942847408543,0.1573896968466495,0.1663376110562685,0.1788249997306528,0.1897221650990876,0.2005394705357725,0.2093976904907707,0.2176679767920643,0.2265834571130866,0.2347587192745384,0.2430178913019016,0.2504369538077403,0.2573398856776292,0.2626019552264708,0.2677347678634078,0.2729650715494691,0.2775486222691191,0.2822581625089614,0.2863326386405396,0.2904368506696708,0.2940899548317323,0.2985182788741508,0.3015290842645487,0.2991061813482662,0.2964681583476764,0.2948421319940182,0.29169862101897,0.2901901887016907,0.2875503607592028,0.2851695987849639,0.2849868593955322,0.2855702001812059,0.2850859155685089,0.2871097778194431,0.2879299784640309,0.2887166055526454,0.2891248463172013,0.2905689377746824,0.2915833484820941,0.2936979447966116,0.2980859448301745,0.3024708592168633,0.3065578295674119,0.3086112493777999,0.3143083840253901,0.3195566409919218,0.3244993223912061,0.3284834918858422,0.3270231897775674,0.3241136919315403,0.3270971635485817,0.3223774308408655,0.3309187952725886,0.0,2.187743267416248,53.0194970515277,147.48423326748443,213.7283082204281,fqhc3_100Compliance_baseline_low_initial_treat_cost,16 -100000,95685,47432,451.397815749595,5255,53.770183414328265,4165,43.01614673146261,1565,16.00041803835502,77.40264542862671,79.7830668310357,63.35728834693722,65.11222862185859,77.20616780920926,79.58934411231866,63.28334735166096,65.04160719007706,0.1964776194174504,193.72271871704072,0.0739409952762528,70.62143178153235,210.122,147.844873322366,219597.6380832941,154512.0691042128,498.58488,333.3687099822664,520565.6163452997,347898.87650338764,451.83078,220.99031501920416,469027.7577467733,228533.07591530724,2692.27767,1256.0647714692625,2781064.9318074933,1280118.6885230306,981.75779,441.96497462504567,1011598.6204734284,447487.909311068,1523.61638,648.3575101943954,1559318.325756388,650085.648708567,0.38005,100000,0,955100,9981.710821967916,0,0.0,0,0.0,43422,453.2894393060563,0,0.0,41090,426.2423577363223,1248968,0,44777,0,0,0,0,0,70,0.7315671212833778,0,0.0,1,0.0104509588754768,0,0.0,0.05255,0.1382712800947244,0.2978116079923882,0.01565,0.3534655266509005,0.6465344733490995,23.95301774727331,4.212523943036537,0.3164465786314526,0.2703481392557023,0.2122448979591836,0.2009603841536614,11.213941046301835,5.860820702424579,16.758296902883355,11522.39609579832,47.5406624323176,13.767122956102984,14.605816205547542,9.891044405965348,9.276678864701733,0.5786314525810324,0.8134991119005328,0.6722306525037937,0.5667420814479638,0.1278375149342891,0.7465475223395613,0.9341825902335456,0.8391812865497076,0.6991150442477876,0.1770833333333333,0.5081799591002045,0.7267175572519083,0.6137295081967213,0.5212765957446809,0.1131782945736434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468137031523,0.0043479582839247,0.0065429093122337,0.0086733087555731,0.0110025320059791,0.0130032788220678,0.0153129364747622,0.0174117166768728,0.019917428004987,0.0222381415340531,0.0243549924659429,0.0263738745675362,0.0285831791075467,0.0309378154029949,0.0329856274697949,0.0350480088472708,0.037132147368857,0.0394334042442795,0.0413633148895452,0.0434723698747211,0.0580738171599302,0.0719984921781742,0.0854330419451994,0.0983894551919293,0.1112540871216116,0.1268012442074525,0.1373554069829141,0.1472598364844149,0.1582170260969927,0.1673316173316173,0.1791052812957698,0.1901778080798242,0.2007438178298788,0.2102109981414671,0.219408911424706,0.2286846591538069,0.2373935529894333,0.2448445502740587,0.2521856314549737,0.2583491439412988,0.2648793380036239,0.2706797611271811,0.276168108484498,0.2807011251001351,0.2840765874939409,0.2877908406709626,0.2910785219976516,0.2951872200581137,0.2993390478157596,0.302770873607659,0.3000684260663062,0.296471329552615,0.2932139002200821,0.290796963946869,0.2892499667341839,0.2862434265680969,0.2829456753134116,0.2838165041554872,0.2840078839161314,0.2830909123199602,0.2833516678164562,0.2838743824982357,0.285717252263477,0.2870454595877798,0.2871923536439665,0.2888163349917081,0.2895154434684046,0.2927103153560622,0.2970473265391595,0.3007569187100843,0.3052312426463933,0.3107150412523799,0.3121481296134117,0.3166553467662817,0.3164190262592281,0.3214868329060825,0.3247953925431949,0.3241845664280032,0.3287486515641855,0.3338289962825279,0.0,2.024339752882512,53.9297800627588,147.97646900543776,220.83356135422267,fqhc3_100Compliance_baseline_low_initial_treat_cost,17 -100000,95726,47354,450.51501159559575,5223,53.2666151306855,4075,41.99486033052671,1530,15.63838455592002,77.33907921770925,79.70600135339969,63.32552877917672,65.07554930081172,77.1463899808314,79.5159199810525,63.25256765479235,65.00589541109615,0.1926892368778539,190.08137234717992,0.0729611243843635,69.65388971556763,210.397,147.99161622039725,219790.8614169609,154599.1854045894,500.64216,335.174700274161,522415.7491172722,349560.45408160903,452.43586,221.11101727947397,468739.19311367866,227977.13229608265,2676.96344,1234.9064936462823,2760642.7616321584,1254200.4718115062,942.15701,421.4107445626142,966749.3262018678,422752.64250320016,1493.06068,639.7094683245085,1526838.5391638635,639299.5658816629,0.37978,100000,0,956350,9990.49370077095,0,0.0,0,0.0,43488,453.6907423270585,0,0.0,41040,424.8480036771619,1244257,0,44631,0,0,0,0,0,87,0.9088439922278168,0,0.0,1,0.0104464826692852,0,0.0,0.05223,0.1375269893096003,0.2929350947731189,0.0153,0.3403713141609028,0.6596286858390972,23.676170911227658,4.219849515177875,0.3101840490797546,0.2647852760736196,0.211042944785276,0.2139877300613497,10.760534758648063,5.572108981388947,16.389865726093934,11580.071801978773,46.41418912426402,13.144804282999427,14.36824058054167,9.321054450631026,9.580089810091884,0.5685889570552147,0.7747914735866543,0.7001582278481012,0.5802325581395349,0.1112385321100917,0.733275412684622,0.8860465116279069,0.8662952646239555,0.6896551724137931,0.1702127659574468,0.5037619699042407,0.7010785824345146,0.6342541436464089,0.5524781341107872,0.0950292397660818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.004359816684917,0.006506095023497,0.0085453584782962,0.0107219515172476,0.0128833168684883,0.0153367664304287,0.0176009964369212,0.019407349843555,0.0217743091829001,0.0241421040756466,0.0262114582691399,0.0286428336350172,0.030794749747584,0.032866078985941,0.0351078571280842,0.0370558375634517,0.0389900163971854,0.0410132689987937,0.0431729627237305,0.0571240628980725,0.0716594996704228,0.0845906245740587,0.0971944730698858,0.1091802518084231,0.1257192418344897,0.1369476420349053,0.1468787598087754,0.1573069730162971,0.1658708272080521,0.1778505770660689,0.1897806267189293,0.2002241152343962,0.2090272458693511,0.2189753696750823,0.2283006318589956,0.2362229344172594,0.2447665781299239,0.252687134668861,0.2599294112254486,0.2658350882877045,0.2717885751037829,0.2775236136231986,0.2816689008042895,0.2862444064466838,0.2900263112597437,0.2941411418158217,0.2984775437706166,0.3015930391675918,0.3050169161302213,0.3032271921817108,0.3004311291739894,0.2986775464265616,0.2958027115609524,0.2935660018993352,0.290646492434663,0.2868243990270714,0.2866089579644567,0.2874408917871592,0.2879852983157294,0.2888909668973256,0.2889064039408867,0.2899910355035753,0.2916378868563534,0.2929959136855689,0.2946442432082794,0.2957303243365842,0.2984990619136961,0.3023101619207147,0.3071177330751294,0.3103573372029748,0.3147019867549669,0.3188651946908221,0.3254860267314702,0.3307284398548702,0.3357672830055352,0.3363455353040281,0.340016200891049,0.3451131971286582,0.351434034416826,0.0,2.279861195146425,50.05562483327302,150.74491356418667,216.8906733854732,fqhc3_100Compliance_baseline_low_initial_treat_cost,18 -100000,95682,47019,447.6599569406994,5025,51.33671955017663,3979,40.96904328922891,1526,15.54106310486821,77.30793472821749,79.68465036153043,63.31631099018998,65.07053784950314,77.11712216313315,79.49677174101465,63.24472747108872,65.00257082329634,0.190812565084343,187.8786205157752,0.0715835191012601,67.9670262068015,209.99506,147.71786705446166,219471.6247570076,154383.96591459378,497.70968,333.4024171131276,519533.7994607136,347812.8567029928,446.3308,218.5859789346709,462408.4362785058,225352.29481859648,2567.95431,1197.599568202318,2645913.7141782152,1213778.1288782826,923.65817,417.74781711391375,952768.5144541294,424071.4396930153,1482.45622,627.4353642365365,1512608.8083443071,625614.5830975146,0.37717,100000,0,954523,9975.982943500345,0,0.0,0,0.0,43283,451.7046048368554,0,0.0,40561,419.9013398549361,1247396,0,44794,0,0,0,0,0,88,0.9092619301436008,0,0.0,0,0.0,0,0.0,0.05025,0.1332290479094307,0.303681592039801,0.01526,0.3484877306448545,0.6515122693551455,23.853788743816143,4.152735556540019,0.3277205327971852,0.2663985926112088,0.2028147775823071,0.2030660970092988,11.303036900008886,6.126505597421111,16.33041803846963,11493.053519715351,45.56357228196557,12.85096696868358,14.844242753292946,9.017326096950551,8.851036463038488,0.5890927368685599,0.7858490566037736,0.7093558282208589,0.5997521685254027,0.1262376237623762,0.7552921253175275,0.8960739030023095,0.8590425531914894,0.7766497461928934,0.16,0.5189421015010722,0.7097288676236044,0.6487068965517241,0.5426229508196722,0.1169036334913112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502359111435,0.004965343926067,0.0070197506568336,0.0091512960104005,0.0113294280367748,0.0135737851818663,0.0159680231668892,0.0182337927514037,0.0200167658304197,0.0223869138405789,0.0243472377418065,0.026304171500734,0.0283742646756345,0.0305658861222429,0.0324954079210781,0.0346642130510296,0.0368869869755779,0.0387981602799032,0.0410702396804261,0.0428776948417497,0.0561788363104564,0.0703511801957397,0.082947761585513,0.095667813081753,0.1076940918483532,0.1231229643416099,0.1349748573125968,0.1447229762094842,0.1553936389568487,0.1645319774302203,0.1767879642891758,0.1876724035351513,0.1983018232026179,0.2075147857837831,0.2169551923626845,0.2266867496566694,0.2351753299639633,0.244055251850352,0.251525877521385,0.2579134218964727,0.2639412949373828,0.2698815467907716,0.2758726777896107,0.2810828957149365,0.2851465172526952,0.2885464184440883,0.2921801422703136,0.2962198787508278,0.3004031474015788,0.3035525620707871,0.3011676610416021,0.2987978683851778,0.2958985200845666,0.2937322843755423,0.2904305152799464,0.2869436065473365,0.2835000949908176,0.2845479037981337,0.284092463411298,0.283691868249576,0.2841669321439949,0.2854968471406827,0.2865511758306134,0.2873798961143188,0.2890878110825793,0.2925145254162216,0.2944724189923473,0.2983106198580669,0.3016096155197863,0.3042119833893613,0.3084124892060174,0.3120274914089347,0.3136873785190294,0.3209119139589487,0.3213084112149533,0.3248295320949917,0.3238610735227785,0.322060871295007,0.330833110099116,0.3322160148975791,0.0,2.310679512760507,51.35357391671906,143.38923736448578,209.15540670958617,fqhc3_100Compliance_baseline_low_initial_treat_cost,19 -100000,95710,47457,451.7500783617177,5207,53.108348134991125,4133,42.63922265176053,1626,16.549994775885487,77.38171245272493,79.75299433197796,63.34258245905804,65.09403664492054,77.16626564475614,79.5423520082226,63.26044608449087,65.01632448077463,0.2154468079687888,210.6423237553656,0.0821363745671774,77.71216414590754,209.59136,147.3663832097627,218985.8530978999,153971.77223880752,500.88846,336.3541828671628,522726.2459513113,350817.06495367544,457.0664,224.89353842477647,474192.10113885696,232359.2994404361,2712.81148,1272.253875065274,2799584.275415317,1294456.697383004,960.9455,435.8312912821467,988431.950684359,439799.5147257677,1577.36178,682.062850564489,1607426.454915892,678955.6236428153,0.37984,100000,0,952688,9953.902413540904,0,0.0,0,0.0,43524,454.1845157245847,0,0.0,41379,428.9729390868248,1246583,0,44715,0,0,0,0,0,108,1.117960505694285,0,0.0,0,0.0,0,0.0,0.05207,0.1370840353833192,0.3122719416170539,0.01626,0.3556454578889297,0.6443545421110702,23.49112390183233,4.249950233040507,0.3201064601984031,0.2489716912654246,0.221146866682797,0.2097749818533752,11.58308346919247,6.354359510268089,17.56213682365039,11521.43517420144,47.36372922414029,12.563031202176925,15.075050751855288,10.190048471372494,9.535598798735572,0.5877086861843697,0.8046647230320699,0.7195767195767195,0.5908096280087527,0.1257208765859284,0.7554655870445344,0.9243119266055044,0.8929503916449086,0.7476635514018691,0.1386138613861386,0.5162180814354728,0.7166947723440135,0.648936170212766,0.5428571428571428,0.1218045112781954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0044805319871463,0.0066262126070544,0.0088576478475509,0.0109445246862094,0.0131670061099796,0.0154575579913331,0.0176507819837478,0.0196783987405824,0.021936738663118,0.0239894200506443,0.0262830977094691,0.0282699684289548,0.0307072663219266,0.0327547419041918,0.0349152191894127,0.0372951923276094,0.0392765233272455,0.0412372206217304,0.0433214877497212,0.0573779908303829,0.0709492352306871,0.084525957946867,0.0973626350505486,0.1096589770365916,0.1248215399909051,0.1362363127069009,0.1463658720948801,0.1556170412785232,0.1648842023964043,0.1769998276010688,0.1882699343999653,0.1987753947883586,0.2073730703634057,0.2152812152812152,0.2251536119568226,0.2347705828556133,0.2433359577100438,0.2499035822046779,0.2576977247483711,0.2639575113106465,0.2698900841908325,0.2751334651215095,0.2798724801649129,0.283538029811582,0.2881696318564881,0.2923519479707335,0.2959348559068643,0.3003715162263272,0.3033738974514483,0.3006912132540814,0.2974962574336295,0.2957358235823582,0.2934336229628669,0.2922273043504004,0.2890258036966998,0.2860365334258762,0.2863609622172833,0.2876942675159236,0.2887590359305898,0.2903610862429125,0.2898884363378785,0.2908413781624501,0.2921131018539101,0.2928822306644685,0.2946906084485208,0.295612400474335,0.3014589230721373,0.3064213814647691,0.3095678162727594,0.3146224710982659,0.3187496705497865,0.3250832338714743,0.329228430254656,0.3307123467190864,0.3350667769767167,0.3391581826470141,0.3413945989520354,0.347515783694757,0.3522205206738131,0.0,2.082996082800636,53.85399006152371,153.13051315445986,211.09525612371917,fqhc3_100Compliance_baseline_low_initial_treat_cost,20 -100000,95858,47579,452.5861169646769,5189,53.02635147822821,4094,42.13524171169856,1591,16.232343675019298,77.44506122741345,79.72524704378286,63.40474875222951,65.08525669611701,77.24415034468026,79.5249933935031,63.33021384164481,65.01307107945406,0.2009108827331829,200.2536502797625,0.0745349105846955,72.18561666294931,210.80906,148.32823980514144,219918.06630641155,154737.46563160242,500.49891,335.87595242267,521571.8145590352,349835.5405106199,460.60383,225.28194966842364,476915.2913684825,232207.9086502342,2655.34627,1245.8832751865978,2734605.061653696,1264239.5263687938,958.65175,433.4154078816911,985746.5521917838,437824.11260184296,1548.57444,654.2105361859096,1581934.2986500864,654679.9132744754,0.38101,100000,0,958223,9996.275741200525,0,0.0,0,0.0,43519,453.4102526654009,0,0.0,41783,432.2539589809927,1243298,0,44683,0,0,0,0,0,79,0.8241357007239876,0,0.0,3,0.0312962924325564,0,0.0,0.05189,0.1361906511640114,0.3066101368279051,0.01591,0.3574060427413412,0.6425939572586588,23.23178610218891,4.220429711943408,0.3070346849047386,0.2691744015632633,0.2178798241328773,0.2059110893991206,11.528051513074864,6.146375172167801,16.919612755233178,11545.824981264532,47.07602117817625,13.531682369679316,14.217097227135236,9.961993697307358,9.36524788405433,0.5854909623839766,0.8103448275862069,0.6992840095465394,0.5908071748878924,0.1162514827995255,0.7487479131886478,0.9276315789473684,0.8640483383685801,0.7685185185185185,0.1128205128205128,0.5179558011049724,0.7275541795665634,0.6403887688984882,0.5340236686390533,0.1172839506172839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0045077442032435,0.0067732678989688,0.0089927327351711,0.0113500111772715,0.0137347264754657,0.0159089057280208,0.0177837600823926,0.0199328084632744,0.0222597137014314,0.0245443374974401,0.0266550433311112,0.0285626251733169,0.0307450189777718,0.0327831695205126,0.0347020086290539,0.0366402266874877,0.0387959173099839,0.0406747988580327,0.0429417212065718,0.0572974776597186,0.0710703913415933,0.0847109817511752,0.0980262536594579,0.1101209889531825,0.1254445863368196,0.1363164693674424,0.1461795078832178,0.1559590961921924,0.1653325057254767,0.1770465023804662,0.1885710583433217,0.1990555796786799,0.2081877729257641,0.2177632807266097,0.2273033993738868,0.2362124876026611,0.2443238628065563,0.2512919896640826,0.2579065963603921,0.2634133937446543,0.2695917437090195,0.2750490694539693,0.279799502344722,0.2851425106124924,0.2895057399136244,0.2935341430769423,0.2971090035342876,0.3007349516070596,0.3037662748405461,0.3019060676936312,0.3000700039806185,0.2975530316856425,0.2951211092572349,0.2934845281568325,0.2904448707408422,0.2865053645030362,0.2864062627415804,0.2865804983270207,0.2874669787068064,0.2884823191861981,0.2898696088264794,0.2909807027049556,0.291442542787286,0.2938548286902088,0.2952393272962484,0.2963224494407411,0.299582528506449,0.3027287542040844,0.3058888320679753,0.3097826086956521,0.3113991007669928,0.3159146379623255,0.3198139818556072,0.3240950226244344,0.3298454221165279,0.3353302611367127,0.3353909465020576,0.3461644973691498,0.3588349514563106,0.0,2.231201785545052,52.04213836660863,160.7784286789837,203.57717761002743,fqhc3_100Compliance_baseline_low_initial_treat_cost,21 -100000,95692,47666,454.9074112778498,5207,53.10788780671321,4082,42.14563390879071,1543,15.80069389290641,77.29747507811412,79.70012537813302,63.28577397120039,65.06548759732244,77.0942407279573,79.49992100425237,63.20841507141038,64.99164469712342,0.2032343501568192,200.20437388065204,0.0773588997900134,73.84290019902551,209.26972,147.27334166368266,218690.4652426535,153903.18067555752,501.708,335.6125547394455,523768.7162981232,350199.0377268815,452.40499,221.1946005892104,469878.6105421561,228913.35364960128,2661.67572,1234.661043668371,2749563.48493082,1258623.9644202995,928.37269,421.60920432485335,956616.8227229026,427256.51098284335,1508.50008,645.1479567975033,1545567.0066463237,646921.5522558566,0.38262,100000,0,951226,9940.475692847887,0,0.0,0,0.0,43622,455.3045186640472,0,0.0,40976,425.2497596455294,1244931,0,44686,0,0,0,0,0,84,0.8778163273836894,0,0.0,3,0.031350583120846,0,0.0,0.05207,0.1360880246719983,0.2963318609564048,0.01543,0.3381109886071297,0.6618890113928703,24.05583040068285,4.1484882932323055,0.3236158745712886,0.2601665850073493,0.2040666340029397,0.2121509064184223,10.965013037170086,5.726445967249428,16.44715030255415,11619.82304432688,46.234772116623546,12.796139467013951,14.917164550123903,9.100468029545183,9.421000069940495,0.5764331210191083,0.8163841807909604,0.691900075700227,0.56062424969988,0.1212471131639722,0.7464788732394366,0.9182692307692308,0.8497109826589595,0.7391304347826086,0.1894736842105263,0.5108621860149355,0.7507739938080495,0.6358974358974359,0.5100154083204931,0.1020710059171597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021180428878349,0.0044225346398068,0.0065993197624244,0.0092775124479219,0.011444091796875,0.0137097924178532,0.0158704255232344,0.0179122158452646,0.0199128620520373,0.0218228366615463,0.0240532556517457,0.0261965667087866,0.0283333333333333,0.0303679812042084,0.032523515017604,0.0341546163553238,0.0360892592477431,0.0381799869168388,0.0403349979192675,0.042323686048087,0.0567539617043947,0.0712573408565117,0.0850822699798522,0.098315818264062,0.1099789029535865,0.1256836960316536,0.1371071318635828,0.1474384918521674,0.157489493214702,0.1665467664522779,0.1787031644340904,0.189825253664036,0.2005294290663093,0.2100586205007396,0.2194172830796027,0.2289905243769833,0.2375209567452777,0.245902562658406,0.253206694009248,0.2601070597540147,0.2658070943676003,0.2719777967749113,0.2781955777680401,0.2833417332661339,0.2879366546657584,0.2914301929625426,0.2946445349201378,0.2989144284185311,0.3019303616833584,0.3053885092716195,0.3029195603802845,0.300610705965067,0.298780487804878,0.2960743442765329,0.2946384799370107,0.2925388664463214,0.2889485741369776,0.2887634012603323,0.2894696570369489,0.2914060278646573,0.2922503725782414,0.2933377852849904,0.2934139224676949,0.2945777777777777,0.2966097642614642,0.2998135391308851,0.2999179237539977,0.3046299762885311,0.3080486190923971,0.3125738130855838,0.316504854368932,0.3203112676796887,0.3240850427083983,0.3231867718902668,0.3245980856797695,0.330333138515488,0.3329277566539924,0.3344064386317907,0.3356986899563319,0.3259541984732824,0.0,1.919012425582493,49.477984213950485,149.51032824169897,220.37105299565815,fqhc3_100Compliance_baseline_low_initial_treat_cost,22 -100000,95831,47720,454.2475816802496,5042,51.465600901587166,4024,41.416660579561935,1541,15.683860128768352,77.32864418348662,79.63911923166326,63.32870225298407,65.03845112389148,77.13998187248107,79.45575715778652,63.258001263996,64.97238438705345,0.1886623110055438,183.36207387673653,0.0707009889880652,66.06673683802455,210.22782,148.0338903661224,219373.50126785695,154473.90757283385,500.45028,335.2603891250952,521627.5631058843,349257.9566200465,454.7016,222.32421341508055,471247.6964656531,229452.0058960029,2606.07323,1201.4154420233117,2684581.57589924,1219530.1606747787,913.17269,409.06187998743394,940421.053730004,415377.8598986913,1498.52386,623.6248665275706,1527165.0927153009,620391.3072206893,0.38218,100000,0,955581,9971.522784902589,0,0.0,0,0.0,43566,454.007575836629,0,0.0,41274,427.4921476348989,1241592,0,44579,0,0,0,0,0,64,0.6678423474658514,0,0.0,2,0.0208700733583078,0,0.0,0.05042,0.1319273640692867,0.3056326854422848,0.01541,0.3486692015209126,0.6513307984790875,23.60046489510893,4.157377389186348,0.3098906560636182,0.2664015904572565,0.2184393638170974,0.2052683896620278,11.586218555171364,6.244988262553353,16.211688873895273,11597.79409557336,45.68399455647713,12.966300061209347,14.010453415418043,9.884306872789848,8.822934207059888,0.5760437375745527,0.8013059701492538,0.6920609462710505,0.5858930602957907,0.0980629539951573,0.7451327433628319,0.9253012048192772,0.8477611940298507,0.7072072072072072,0.1075949367088607,0.5100207325501037,0.7229832572298326,0.6348684210526315,0.5449010654490106,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020965209905302,0.004480395734501,0.006655506518541,0.0089387290752478,0.0109314622737441,0.0133374058236611,0.0153399245744572,0.0174206782532376,0.019876550779733,0.0221742422692016,0.0243857456095411,0.026487007922499,0.0285696668242451,0.030790928463336,0.0330195002732719,0.0350099689052799,0.0367672168468981,0.0388806519507719,0.040873349744996,0.0428831641946396,0.056961365153538,0.0702807255998745,0.0840827620904345,0.0967108028583438,0.1093965744400527,0.1253065279891763,0.1371906609835231,0.1480326857191496,0.1580936922699072,0.1681477590661078,0.1807737447912741,0.1922673330520667,0.2021004794572674,0.2113753606715047,0.2196860527792139,0.2293413372614604,0.2384848958449619,0.2463107419038935,0.2537406625343414,0.2607394668959587,0.2661597839566986,0.2717405319236224,0.2776604328839946,0.2819696933310919,0.2859158355631233,0.2887935286573937,0.2937308198158702,0.2968443572829381,0.3004251788862387,0.3036591809775429,0.3012121212121212,0.2982924814100798,0.2969144598541176,0.2949360125079622,0.2928842293107294,0.2900467397134319,0.2870082979666814,0.2879630085100103,0.2886943786931866,0.2894226837117508,0.288912540144895,0.2891798759476223,0.2897511774267495,0.2912422719387982,0.2925778819926305,0.2941772546574168,0.2964872521246459,0.3012894564301102,0.3063260340632603,0.3092694422623723,0.3121640543836668,0.3178388645597003,0.3222166499498495,0.3278364617372141,0.3299934450791272,0.3325426944971537,0.3369105199516324,0.3388263665594855,0.339469409853817,0.3388208269525268,0.0,2.151753963788795,49.16514085822232,147.36536591230433,215.80080574454792,fqhc3_100Compliance_baseline_low_initial_treat_cost,23 -100000,95747,47606,453.8523400210973,5107,52.17918054873782,4034,41.5469936394874,1562,15.843838449246451,77.35098256499538,79.69991595713307,63.33757887846742,65.07122262402436,77.15286088963819,79.50564754659105,63.26284561157632,65.00070587844982,0.1981216753571857,194.2684105420227,0.0747332668911013,70.5167455745368,212.5332,149.4202204258657,221973.5135304501,156057.1092837015,500.89402,335.7411418979327,522579.1095282359,350090.2815732428,452.00956,221.39910713557703,469052.2836224634,228768.9321517028,2632.1217,1223.7789032444982,2710750.895589418,1239850.7141158453,948.83537,428.7004317991792,974609.011248394,431383.6601599183,1520.20206,650.600604280763,1543892.69637691,640587.8065205414,0.38105,100000,0,966060,10089.705160475,0,0.0,0,0.0,43578,454.53121246618696,0,0.0,40961,424.77571098833386,1233137,0,44262,0,0,0,0,0,86,0.8982004658109393,0,0.0,1,0.0104441914629178,0,0.0,0.05107,0.1340244062458994,0.3058547092226356,0.01562,0.359143018229656,0.6408569817703439,23.701290748691253,4.200464514185826,0.3262270699058007,0.2550818046603867,0.2074863658899355,0.211204759543877,11.145510261035282,5.984958687985248,16.81379417528223,11544.63013156684,46.01279377714911,12.613889968744214,14.91179086992416,9.33296783433224,9.154145104148483,0.5770946950917204,0.7988338192419825,0.6968085106382979,0.5806451612903226,0.1208920187793427,0.762384550797649,0.9152941176470588,0.8912466843501327,0.7311320754716981,0.1581920903954802,0.4994723883221948,0.7168874172185431,0.6187433439829606,0.5296,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771490486364,0.0044495798745198,0.0068694002212007,0.0090497277971885,0.011499628880235,0.0135904144312895,0.0158815914210864,0.0177479766898339,0.0200942364496775,0.022300913938327,0.0241609775098919,0.0263395606651611,0.0284277841750287,0.0305735763567088,0.0324647189898489,0.0344492563384357,0.036438001553197,0.038487480413826,0.0404736656062212,0.0425773518074799,0.0571330145938158,0.0713022920088291,0.0845094050789523,0.0973673696826965,0.1096153237963714,0.1254637900233612,0.1362074451161311,0.1459053903049007,0.1558133572618895,0.1655224937249265,0.177310770490214,0.189025974025974,0.199693281561001,0.2086921317825216,0.2169763550702302,0.2259154992019861,0.2358998414081172,0.2447069411632354,0.2528937812074444,0.2594867798241894,0.2654008145885402,0.2703458442530887,0.275845347778264,0.2804435556300669,0.2848891531470313,0.2894989417728995,0.2939030028866701,0.2977282545168094,0.3014645001034982,0.3042841691508164,0.3022350881917329,0.2991783536795167,0.2969302509051463,0.2941763149906769,0.292120311919792,0.2890504246690642,0.2860058539672494,0.286933403354449,0.2878614689072763,0.2884560603902578,0.2888785133999439,0.2900222427809381,0.2895895499029693,0.2903441214441526,0.2912215291221529,0.2925747198007472,0.2937445133520233,0.2965430940090724,0.3012954450480568,0.3055610294407441,0.3093502377179081,0.3138177014531043,0.3151276276276276,0.3192211908535204,0.3225896599906847,0.3303866100895803,0.3328206705629037,0.3387746876259572,0.3432876712328767,0.3442873519296905,0.0,2.266700030853315,51.8818999591407,144.8055138219472,211.4352129272956,fqhc3_100Compliance_baseline_low_initial_treat_cost,24 -100000,95848,47547,452.5707370002504,5310,54.31516567899174,4217,43.46465236624656,1645,16.80786244887739,77.51248185563044,79.79888247939117,63.42745123530996,65.11142832577089,77.30491961622145,79.59293000346344,63.35070614131371,65.03758679657749,0.2075622394089862,205.9524759277309,0.0767450939962515,73.84152919340181,212.3693,149.32159286673345,221568.83816042065,155789.99339238528,505.56458,338.2042250170065,526933.8431683499,352323.6739598181,457.02413,223.0422028828631,473579.5634755029,230299.8049507572,2772.60611,1276.039250458286,2858467.636257408,1297071.6138660018,987.40661,441.0787489656263,1015411.7352474752,445417.7228169872,1604.42336,669.5720580485588,1640671.9597696357,671705.4940976992,0.38149,100000,0,965315,10071.310825473667,0,0.0,0,0.0,43989,458.40288790585095,0,0.0,41336,428.18838160420665,1239791,0,44427,0,0,0,0,0,92,0.928553543109924,0,0.0,1,0.0104331858776395,0,0.0,0.0531,0.1391910666072505,0.3097928436911488,0.01645,0.3494410385863685,0.6505589614136315,23.89873685371462,4.124594906506544,0.2990277448423049,0.2682001422812426,0.2160303533317524,0.2167417595447,11.263256048865252,6.07241724364473,17.343787528684942,11588.477056754997,47.84500965958106,13.683739451712652,14.15353871598466,10.162831477565808,9.844900014317943,0.5677021579321793,0.7984084880636605,0.6796193497224425,0.5817782656421515,0.1137855579868709,0.7470588235294118,0.9072847682119204,0.8680981595092024,0.6820083682008368,0.1860465116279069,0.497191939213743,0.7256637168141593,0.613903743315508,0.5461309523809523,0.0970350404312668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022058972335215,0.0045675048865213,0.0069228352203042,0.0090105630587208,0.011255815843475,0.0134445235431709,0.015556596281892,0.0179780551476586,0.0201055823879591,0.022364249923305,0.0246070349700476,0.0264693515470366,0.0287085272751559,0.0306588724450939,0.0328041237113402,0.0348492516810064,0.0367649341376848,0.0388881977274612,0.0407927950387983,0.042641792287832,0.0569622893375604,0.0707444583856127,0.0841628769620889,0.0975076932771785,0.1100090551098195,0.1255478923965737,0.136338105785229,0.1472711613911601,0.1575184600281702,0.1662972599659503,0.1784351042439491,0.1902992731474981,0.2010269548508961,0.2108481090051533,0.2191872597473915,0.2287995046768237,0.2367480145691086,0.2448539568102954,0.2523013168174458,0.2585038677315783,0.2649653470484449,0.2706605795211031,0.2764462468905839,0.2809907490301402,0.285671074760136,0.289721461803808,0.2937841138499115,0.2979986581768928,0.3019840247358928,0.3053908709338929,0.3029446817627917,0.3003460586247931,0.2981682828876481,0.2955045041162019,0.294002983002791,0.2907063536795284,0.2884730586121007,0.2889825799915024,0.2899634571258604,0.2903948374251124,0.29054696678664,0.2907424885952493,0.2916675348488321,0.2917915584271409,0.2935170641153791,0.2934275326818451,0.294426118582424,0.2992123542545274,0.3036814061310636,0.3072399423608677,0.3114469109387536,0.3164977916341907,0.3213867127259268,0.3256213150235092,0.3269478725363787,0.3311740890688259,0.336069243396508,0.3366647070350774,0.3407328162610323,0.3354453969437197,0.0,2.0969532126881645,51.8558633457066,155.00204600106863,224.19074603635272,fqhc3_100Compliance_baseline_low_initial_treat_cost,25 -100000,95732,47551,454.2681652947813,5084,51.97843981113943,3988,41.02076630593741,1532,15.658296076547026,77.31288813594676,79.6718433437842,63.318020272784125,65.062429443954,77.1175660945061,79.47959892826452,63.24495040676476,64.99271872612566,0.1953220414406615,192.2444155196814,0.0730698660193667,69.71071782834315,210.5741,148.20725916117726,219962.08164459115,154814.75281115746,499.82361,335.5886498034798,521455.9081602807,349898.8946261228,454.23526,222.59059678326244,470215.3511887352,229257.44034915217,2585.89201,1204.5699381214106,2663804.506330172,1220899.2375813844,933.48649,424.1369232394676,958979.1083441272,426921.3149620476,1485.50228,630.1512215947685,1519797.559854594,630604.0119175669,0.37994,100000,0,957155,9998.276438390509,0,0.0,0,0.0,43365,452.314795470689,0,0.0,41152,425.6361509213221,1240074,0,44517,0,0,0,0,0,88,0.8983412025237121,0,0.0,2,0.0208916558726444,0,0.0,0.05084,0.1338106016739485,0.3013375295043273,0.01532,0.3540642722117202,0.6459357277882798,23.495685207393397,4.166481995652592,0.3109327983951855,0.272567703109328,0.2138916750250752,0.2026078234704112,11.491740955572524,6.284687566901832,16.467009412775333,11526.119595858512,45.60713128040487,13.171570781638536,14.037324044202837,9.47900442266629,8.9192320318972,0.5797392176529589,0.7994480220791168,0.7032258064516129,0.5486518171160609,0.1274752475247524,0.7534013605442177,0.9352678571428572,0.8647058823529412,0.7512953367875648,0.1435897435897435,0.5071123755334281,0.704225352112676,0.6422222222222222,0.4893939393939394,0.1223491027732463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0042368156985171,0.006503718584807,0.0085219193109332,0.0109030624179981,0.0129429735234215,0.0149383093708575,0.0172433155353186,0.0193837283006522,0.0214619960885102,0.02396161220535,0.0259896287929352,0.0279226188639659,0.0299943348612041,0.0319615388583396,0.0337963537144983,0.0357131762878591,0.0377268435415088,0.039712993292778,0.0416970555752359,0.0566274116762716,0.0705526607654801,0.0837667785234899,0.0965188043443976,0.1089356318203384,0.1241035730151678,0.134983711972496,0.1450818014412381,0.1551024331887804,0.1649957646655158,0.1768911091492431,0.1885286675173562,0.1986628254606729,0.2083169312863578,0.2179456153473841,0.2271332853424885,0.2348300564618715,0.2430909397671672,0.2519328360750655,0.2585027779368807,0.2654521042640863,0.271381463551533,0.277510320436238,0.2818183996740875,0.2867467537988752,0.2905900762700378,0.2940580054826071,0.2969308454484171,0.3015289411338244,0.304314533164343,0.3017675747042815,0.2993904871974794,0.2977359500697389,0.2956874990964421,0.2931824266040037,0.2903240641383328,0.2874443229191434,0.2879342915811088,0.2875235002563664,0.2885704586467509,0.2892967506320816,0.2899828073434381,0.2899859900048094,0.2901945924258297,0.2918126409751884,0.29278951201748,0.2926440899655947,0.2953788116944357,0.3003648866746193,0.3050732986373207,0.3085464640029125,0.3137285986049461,0.3205440139746709,0.324461247637051,0.3221671189295406,0.3262428017393348,0.3318049824239645,0.3351394742123219,0.3339763020115734,0.3344620015048909,0.0,2.529162787945651,50.9293347610955,146.9085463831031,205.6647359617456,fqhc3_100Compliance_baseline_low_initial_treat_cost,26 -100000,95791,47823,455.7630675115616,5120,52.30136442880856,4056,41.86197033124198,1564,15.993151757471995,77.37208356525132,79.70862143565284,63.35007434272507,65.0785728188524,77.17416233131635,79.5143567514967,63.27553056703312,65.00769452078555,0.1979212339349629,194.2646841561384,0.07454377569195,70.87829806684454,211.11662,148.59029839999116,220392.9596726206,155119.26840725244,502.34395,336.38024841994627,523978.69319664687,350722.6445281355,453.54291,221.5010668638085,470823.5324821748,229154.5629343976,2638.32128,1219.4232141041607,2724124.6359261307,1242881.0265099648,969.01089,438.891027185054,1000654.602206888,447241.58551957295,1529.88988,646.8837793896552,1565617.500600265,647438.5679415858,0.38391,100000,0,959621,10017.861803300935,0,0.0,0,0.0,43669,455.3976887181468,0,0.0,41201,427.3887943543757,1239900,0,44519,0,0,0,0,0,83,0.866469710098026,0,0.0,1,0.0104393940975665,0,0.0,0.0512,0.1333645906592691,0.30546875,0.01564,0.3518103770063456,0.6481896229936543,23.650921587239612,4.1131549340372935,0.2990631163708087,0.2736686390532544,0.2152366863905325,0.2120315581854043,11.254145100885282,5.977295354867545,16.631605342568662,11599.081150129636,46.08835506469244,13.34924019877133,13.763497581155528,9.58902191212342,9.38659537264216,0.5808678500986193,0.8117117117117117,0.7015663643858203,0.5715922107674685,0.1220930232558139,0.7462946817785527,0.9363207547169812,0.8348909657320872,0.7836538461538461,0.1443298969072164,0.5156411137848058,0.7346938775510204,0.6535874439461884,0.5052631578947369,0.1156156156156156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020257267294641,0.0041259478528851,0.0064338048750786,0.0089088895886876,0.0111766500559341,0.0134183091708747,0.0155235503368702,0.0176745515031532,0.0200498691955526,0.0221471701975232,0.0240210696754491,0.026385738769897,0.0283702523513388,0.0307248764415156,0.0327304225874976,0.0346747946479309,0.0367353276058379,0.0389397600356731,0.0407609825028053,0.0426010369167343,0.0571544851191718,0.0708705065316752,0.0849424492106421,0.0977293503273055,0.1107341894838866,0.1264539029569296,0.1373496529433582,0.1474519143868752,0.1570411941062874,0.1657900656647349,0.1779329188270476,0.1895821173011652,0.2003042816778961,0.2101155405922412,0.2189829986583676,0.2282154919439676,0.2376660606128208,0.2465043611186044,0.2546017137416693,0.2605057408106963,0.26566456610973,0.272392551985319,0.2772781526607499,0.2826024511681348,0.2871025270845718,0.2911615198099622,0.2949617785784884,0.2985920504218766,0.302620183296493,0.3061208361322954,0.3040436189785531,0.3016654776930253,0.2993033565547815,0.2961717238790888,0.2936472612901311,0.2902589659705873,0.2871498317296298,0.2864674580433893,0.2876452818596078,0.2881443482597698,0.2884105589366389,0.2895663983309386,0.2900796796128655,0.2905944888019038,0.2911471172486418,0.2923820160515311,0.2928528767668724,0.2976354741595584,0.3020509416162957,0.3075735992402659,0.3108493771234428,0.3163254537779654,0.3203125,0.3217825527729439,0.3251028806584362,0.3327460653042048,0.3383594692400482,0.3399960807368214,0.3431793770139635,0.3404255319148936,0.0,1.89556963652082,50.1260299410573,150.17726666002633,214.55689696734103,fqhc3_100Compliance_baseline_low_initial_treat_cost,27 -100000,95645,47690,455.4968895394428,5147,52.53803126143552,4086,42.114067645982544,1568,15.975743635318103,77.25911226955019,79.65564385134455,63.27736057920528,65.04597281273391,77.05803645647332,79.45912502712308,63.20077288522579,64.97376307420765,0.2010758130768692,196.5188242214708,0.0765876939794907,72.20973852625434,208.8757,147.04185764856496,218386.1989649224,153736.87871667626,499.61798,333.99637666971,521755.9516963773,348593.10645586275,454.29995,222.6478107886776,471444.7592660359,230029.13720480056,2678.61532,1240.1977127283349,2762848.4395420565,1259232.3922093606,952.63414,427.7876072135288,977605.7817972712,429094.69197742734,1529.6439,655.1086213432043,1560880.5687699304,652642.5619308872,0.38155,100000,0,949435,9926.645407496471,0,0.0,0,0.0,43427,453.384912959381,0,0.0,41115,426.3369752731455,1245145,0,44713,0,0,0,0,0,83,0.8677923571540593,0,0.0,2,0.0209106592085315,0,0.0,0.05147,0.1348971301271131,0.3046434816397901,0.01568,0.3374187558031569,0.662581244196843,24.132521614073127,4.122877929518339,0.3127753303964757,0.2577092511013216,0.2158590308370044,0.2136563876651982,11.184230683053766,6.080405189441222,16.874462868532024,11581.252470408408,46.42567372283219,12.754397852840343,14.425114956564396,9.762510156422346,9.483650757005108,0.5658345570239843,0.7910731244064577,0.6979655712050078,0.5578231292517006,0.1088201603665521,0.7416309012875536,0.9212410501193318,0.8633720930232558,0.7162790697674418,0.1443850267379679,0.4957206436152003,0.7050473186119873,0.6370449678800857,0.5067466266866567,0.0991253644314868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021676812900742,0.0043906346647197,0.006343503237724,0.00861648512437,0.010804211811384,0.0130568512822602,0.0152639843383567,0.0174260134548832,0.0194641232455198,0.0215673429279177,0.0236013000194797,0.0258750808596276,0.0278220622267935,0.0297199015174147,0.031980764070917,0.0339754128022994,0.0359573608478105,0.0380323648781905,0.040190969513527,0.0421075676859082,0.0563486257707179,0.0703639696255564,0.0844814550342336,0.0974685143843983,0.1094507397746353,0.1251813800773182,0.1360980687926236,0.1466400971846294,0.1569080389703444,0.1660133807278858,0.1780620941120628,0.1905701065224694,0.2005076142131979,0.2099398481412089,0.2191673559415494,0.2288309698053282,0.238182611516989,0.2461965286627795,0.2535393852556886,0.2602906542592911,0.2660780378006474,0.272236817414149,0.277940600638371,0.2817966505163687,0.2868933399978056,0.2915291936978684,0.2958449935372143,0.2989504023670148,0.3016529997924019,0.3050641279915377,0.3024833744756046,0.2989820128007062,0.2971876766534765,0.2954512467705884,0.2926410929483355,0.2891103705637545,0.2867341434781229,0.2861465596632022,0.2873140078420629,0.2883336907570233,0.2889038735296321,0.28982388248302,0.2913423717465896,0.2941215720290919,0.296068531501998,0.2975487147595356,0.2982784007248839,0.304455290657656,0.3076815593670311,0.3112305382122817,0.3133130864421377,0.3170307059195948,0.3225806451612903,0.3235892413169592,0.3247823671050194,0.3320427079666784,0.3338377723970944,0.3377271819452766,0.3345284059569773,0.3324303405572755,0.0,2.281671284729314,50.61619385616627,146.5833343031285,220.4107980102149,fqhc3_100Compliance_baseline_low_initial_treat_cost,28 -100000,95636,47756,454.81826927098587,5125,52.54297544857585,4009,41.51156468275545,1511,15.54853820736961,77.28554750318864,79.71749834107742,63.27381344368565,65.0720591107774,77.09238682194719,79.52072496539071,63.20235217129369,65.00007721754596,0.1931606812414514,196.7733756867034,0.0714612723919572,71.98189323143822,209.81466,147.6001548152138,219388.7866493789,154335.34946590595,498.01514,334.13183871588546,520342.52791835705,348981.00999193336,455.36682,223.20875939040957,472747.5427663223,230809.32665904143,2612.13391,1219.1217234038236,2706682.462670961,1250265.6660202958,910.28761,410.5039991549826,941496.9049311976,418971.2538983946,1474.89828,627.1143056956806,1519668.5557739765,639491.8366230524,0.38147,100000,0,953703,9972.217574971768,0,0.0,0,0.0,43306,452.40286084737966,0,0.0,41211,427.54820360533694,1241697,0,44584,0,0,0,0,0,94,0.9828934710778368,0,0.0,2,0.0209126270442092,0,0.0,0.05125,0.1343487036988492,0.2948292682926829,0.01511,0.346067415730337,0.6539325842696629,23.569833391679595,4.229348081587296,0.3130456472935894,0.2698927413320029,0.2027937141431778,0.2142678972312297,11.272883482031077,5.865976931696667,16.25305386972721,11560.826350753989,45.86620485735294,13.227709032194264,14.146285097249068,9.112184957271827,9.380025770637785,0.575704664504864,0.7939001848428835,0.7107569721115538,0.5867158671586716,0.0931315483119906,0.7472245943637916,0.908675799086758,0.8816901408450705,0.7164179104477612,0.1129943502824858,0.5049330514446794,0.7158385093167702,0.6433333333333333,0.5441176470588235,0.0879765395894428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713011755168,0.0046455486920447,0.0069954920196564,0.0093510189561416,0.0115268790949416,0.0137619818883761,0.0160765472146565,0.0182351258581235,0.0205173313150116,0.0225310570138156,0.0248148376110461,0.0273116799046454,0.0294795783926218,0.0314597012771484,0.0334021683014971,0.0353736993442419,0.0372941773830865,0.0391613184622094,0.0412785312086928,0.0433689700130378,0.0581588602368583,0.0723327116122136,0.0854750246916174,0.0985473353769659,0.1111850443599493,0.1264269225067242,0.1371349036857595,0.1472061739186049,0.156890648405735,0.1663819867435839,0.1772378599402302,0.1877310323147134,0.198638047504903,0.2084437920382096,0.2171823502827349,0.2270886272595124,0.2361336179438751,0.2445916711736073,0.2521500062483669,0.2588153054559206,0.2649997105979047,0.2707821242128426,0.2763597582651973,0.280742598615128,0.2859141223695414,0.2902931306750888,0.293990234130462,0.297519608841805,0.3007634775169481,0.304216390326328,0.301405454888129,0.2983821083451319,0.2967761925552441,0.2942833208157606,0.2922547230013504,0.2899116561787087,0.2867680813005556,0.2857049072706384,0.2857752004093467,0.2866370465535392,0.2872841444270015,0.2880728889938406,0.2889176819711186,0.2898944461764575,0.2909299710505538,0.2929094342551155,0.2933382199543289,0.2985706723133933,0.2995983657641438,0.3044962335216573,0.3064930383454242,0.3105642320029447,0.3130033085710718,0.312471791785768,0.3149591685226429,0.3186953989516599,0.3179626280892104,0.3200239568776203,0.3205818965517241,0.3308550185873606,0.0,1.6293966236975814,51.52850364493662,151.02157042825735,205.2044727464961,fqhc3_100Compliance_baseline_low_initial_treat_cost,29 -100000,95810,47202,449.4311658490763,5003,50.97588978185993,3919,40.34025675816721,1556,15.896044254253209,77.35864855579545,79.66396164813085,63.35358995694328,65.05451502192007,77.16168839436264,79.46817874503462,63.28032486565671,64.98356608849052,0.1969601614328127,195.78290309623011,0.0732650912865651,70.94893342954833,210.41042,148.08350483987576,219611.71067738236,154559.13065176652,499.16554,334.9019979106038,520378.7182966288,348936.4317071014,451.71185,221.07473568511475,467781.51549942594,227940.77810948336,2578.40461,1210.567779774387,2654725.039139964,1227369.855556239,917.77094,419.3639313581046,941804.508923912,421836.2578794973,1517.43622,642.1649157799549,1551038.2841039556,643757.0617663995,0.37865,100000,0,956411,9982.35048533556,0,0.0,0,0.0,43319,451.4977559753679,0,0.0,40990,424.0789061684584,1243751,0,44692,0,0,0,0,0,90,0.9393591483143722,0,0.0,0,0.0,0,0.0,0.05003,0.1321272943351379,0.3110133919648211,0.01556,0.3585916570991198,0.6414083429008802,23.7940746461583,4.160892091651236,0.3197244194947691,0.2561878030109721,0.2122990558816024,0.2117887216126563,11.618180068378043,6.271727401342367,16.64537840194143,11473.221180054468,45.08888069558182,12.213233037539576,14.366154326849612,9.33488819797639,9.174605133216238,0.5805052309262567,0.7908366533864541,0.7166799680766162,0.5889423076923077,0.1120481927710843,0.7595486111111112,0.9242053789731052,0.883008356545961,0.7183098591549296,0.1578947368421052,0.5059631369714492,0.6991596638655462,0.6498881431767338,0.5444264943457189,0.1001517450682852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0042236830110707,0.0066202337865101,0.0087470952946309,0.0109219108772072,0.0131529423732261,0.0152283746893207,0.0172696948986565,0.0195329260568416,0.0215123058982385,0.023465666994428,0.0256323466059449,0.0278317152103559,0.0298527429329985,0.0322407695718071,0.0343299767621998,0.0362859419135221,0.0382625822837298,0.0403518976297804,0.042410110137203,0.0570722191506452,0.0718728764831948,0.0855989938161618,0.098330163200538,0.1097622660596863,0.1252892631845895,0.1361713855645187,0.1460631135597366,0.1557536293766012,0.1647763818018095,0.1767232562896298,0.189219885773624,0.1990017290314161,0.208894819740987,0.2176670042714342,0.2275628948243378,0.2362217906649702,0.2431739174457457,0.2502070780996471,0.2572992909751097,0.2635001446340758,0.2688760941815288,0.2741971757631712,0.2781746697672188,0.2830129062051867,0.2878533928175297,0.2913285401688028,0.2962181670309561,0.2997956174165007,0.303064654320174,0.300217812197483,0.2979793123342995,0.2953922684541123,0.2921693258961387,0.290229799851742,0.2869732561513906,0.283815814423867,0.2836153745244654,0.2839192119235825,0.2838897522462176,0.2842399040982992,0.2860105468981454,0.2869235443250152,0.2863866520934175,0.2867117765620501,0.2884114583333333,0.2901482176893972,0.2935154655361909,0.2963416768772974,0.3008081768481103,0.3047278326238565,0.3088850082023601,0.312813126252505,0.3139146285887893,0.3160048358597601,0.3172863970159692,0.3186779866585809,0.3270046455261563,0.3190899001109878,0.3145760062524423,0.0,1.9452714200457493,50.30146675481514,152.83775762291182,195.49295341503725,fqhc3_100Compliance_baseline_low_initial_treat_cost,30 -100000,95863,47318,448.9740567267872,5130,52.2203561332318,4052,41.70535034371969,1617,16.50271741965096,77.41454581429173,79.70188235449174,63.37712166936033,65.06749736613277,77.20756546195082,79.49789780497345,63.29857471367588,64.9923777021403,0.2069803523409064,203.98454951829592,0.0785469556844447,75.11966399246717,212.03512,149.16604096861693,221185.56690276752,155603.351625358,499.96486,335.2636073268799,520981.473561228,349172.4829463713,454.00401,222.43725696253185,470059.9710002817,229343.0701299872,2662.32278,1253.6654320747848,2741755.067127046,1272423.8986005725,949.65408,434.4275941218333,976467.8655998664,439072.1232252082,1575.07632,673.1966171491335,1608501.3195915003,672425.7539615157,0.3791,100000,0,963796,10053.88940467125,0,0.0,0,0.0,43450,452.67725817051416,0,0.0,41196,426.1811126294817,1236997,0,44402,0,0,0,0,0,82,0.8553873757341206,0,0.0,4,0.0417262134504449,0,0.0,0.0513,0.135320495911369,0.3152046783625731,0.01617,0.3601274124039723,0.6398725875960277,23.593448203157305,4.114836487140237,0.31071076011846,0.2618460019743336,0.2105133267522211,0.2169299111549852,11.27631717421528,6.093438336601053,17.230435279214817,11499.256770675784,46.36807697433077,12.933343618691746,14.313589900994664,9.512708900451484,9.608434554192876,0.5831688055281342,0.7992459943449576,0.7291501191421763,0.5861664712778429,0.1103526734926052,0.7561576354679803,0.9248291571753986,0.8701657458563536,0.748898678414097,0.1578947368421052,0.5088214537755822,0.7106109324758842,0.6722408026755853,0.5271565495207667,0.0972423802612481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002318165713418,0.0049440251253735,0.0073111126884817,0.0096643859257304,0.0117491615001524,0.0138992053236194,0.0163101059494702,0.0185340079154596,0.0207567214186483,0.0229113820472956,0.0253515933092279,0.0276957163958641,0.0297260639937527,0.0318881752305665,0.0337653232707515,0.0357253516762719,0.037668894452606,0.039535317526115,0.0414815429971349,0.0436342833368005,0.057221503941277,0.0710105549169192,0.0841539557492457,0.0967911294048469,0.1083099021683042,0.1232572877059569,0.1338679435163508,0.1449269200106298,0.1556378302249157,0.1650493755756913,0.1766344984884184,0.1873918685121107,0.1974068881571082,0.2073615877248584,0.2162869170486145,0.2251953168226988,0.2339376909524765,0.2424341181097938,0.2497618507598094,0.2567863071727059,0.2624603927191988,0.2681498281465547,0.273246532089261,0.2774669653660465,0.2827433735817886,0.2883935282737545,0.2924335890088715,0.2961818274318274,0.3003044633024551,0.3033182862120852,0.3006190283945633,0.2985591728992521,0.2966839713558153,0.2937315155449758,0.2920850079342716,0.2892670556964345,0.2858607688788629,0.2858801786035557,0.2862930682282446,0.286612886030065,0.2876898704687354,0.2878460207612456,0.2883758691036263,0.2892721582206832,0.2890498040340312,0.2902349410060029,0.2900856101488995,0.2948402948402948,0.2981344841988027,0.3023805770140312,0.3065976131501914,0.3114030478192328,0.3142130720575468,0.3200119518936281,0.3217785172860048,0.3275781614559029,0.3318744340476909,0.3357444243520193,0.3401950162513543,0.3530734632683658,0.0,2.222399974216477,52.933572291154654,149.15539698328203,205.9018806926237,fqhc3_100Compliance_baseline_low_initial_treat_cost,31 -100000,95706,47688,455.57227342068416,5112,52.27467452406327,4040,41.59613817315529,1544,15.808831212254194,77.36002699221102,79.73149119347299,63.33690834044432,65.08818267680867,77.16513927681497,79.53853067636052,63.26396422409149,65.01826962364854,0.1948877153960495,192.96051711246776,0.0729441163528363,69.91305316013552,211.3386,148.6816630822551,220820.63820450127,155352.49940678236,500.29916,335.3465916824815,522157.0016508891,349803.577291373,455.4886,222.61954104264692,471136.0520761499,229097.7071014896,2604.20861,1212.4295815073483,2683001.7240298414,1228778.3435807042,940.45337,424.4367926357682,967424.5815309384,428256.1099991307,1498.92738,637.1292713876878,1535754.121998621,638695.4127394445,0.38115,100000,0,960630,10037.30173656824,0,0.0,0,0.0,43527,454.18260088186736,0,0.0,41311,426.9324807222118,1238434,0,44438,0,0,0,0,0,78,0.8149959250203749,0,0.0,2,0.0208973314107788,0,0.0,0.05112,0.1341204250295159,0.3020344287949921,0.01544,0.3422868867748554,0.6577131132251446,23.894571520432,4.080433388289056,0.3096534653465346,0.275,0.2091584158415841,0.2061881188118811,11.078098592962643,5.921194983497145,16.491670299151373,11589.521441578234,46.465521826962345,13.591775124917255,14.254278903606444,9.450387495396502,9.169080303042142,0.5801980198019802,0.8082808280828083,0.6938449240607514,0.5633136094674556,0.1224489795918367,0.7577796467619848,0.9292035398230089,0.8664772727272727,0.704225352112676,0.1511627906976744,0.5061381971238162,0.7253414264036419,0.6262513904338154,0.5158227848101266,0.1149773071104387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295621436023,0.004521079787935,0.0069208365891032,0.0092139214530973,0.0115138939745311,0.0136043338356889,0.0158817533129459,0.0181061054522443,0.0201073345259391,0.0221441880464382,0.0240931739424634,0.0262514886452301,0.0282485294722553,0.0300960973951735,0.0320360702420503,0.0340143087548074,0.0358533957651348,0.0378216239218657,0.0398044620105049,0.0418251346761,0.0564762889397119,0.070960584430536,0.0844164699711513,0.0969163458909152,0.1092871978155211,0.1256633613125568,0.1370184147997284,0.1484488905443516,0.1587474501511219,0.1682058542759382,0.1796294301411181,0.1909260100846155,0.200971654638727,0.2102904364745362,0.2186544678792144,0.2280031451764732,0.2372437027286316,0.2451343055352545,0.2531259564916736,0.2587424594498689,0.2640370854190028,0.2701259551795854,0.2761857473873362,0.2808067508528338,0.2858131235889593,0.290546528803545,0.2943353294910423,0.2980566493077607,0.3016870273414776,0.3053198777403035,0.3032633687862204,0.3012920962199312,0.2995255459037858,0.2974608585129124,0.2945646688633597,0.2921392973981105,0.2887899737980238,0.2888423737960131,0.288307000817216,0.2887494221811328,0.2898410091811599,0.2908271682669605,0.2917655384871571,0.2927982945082276,0.2934167482509133,0.2934016987777087,0.2945679292356543,0.3000125344697919,0.3026444662095984,0.3074755971748274,0.3125540337625699,0.3159621184064335,0.319827693844425,0.3197797223898612,0.3264397662988036,0.3310312536579656,0.3307680700165987,0.3403445512820512,0.3373362445414847,0.3473122378955394,0.0,2.4321760962896333,51.71014268984405,152.64547043331726,206.8317177682957,fqhc3_100Compliance_baseline_low_initial_treat_cost,32 -100000,95752,47382,451.11329267273794,5230,53.38791879020804,4199,43.27846937922968,1714,17.482663547497705,77.33346816806463,79.69610845064342,63.32120940122799,65.07056850218864,77.11847250170501,79.48429605273392,63.24057582765237,64.99360612085663,0.2149956663596128,211.81239790949743,0.0806335735756249,76.9623813320095,210.11144,147.7434276582144,219432.9517921297,154298.00699537803,498.08169,333.92694915676043,519609.17787618015,348172.2172912287,454.31634,222.6743914798984,471086.5360514663,229905.60431954067,2757.16626,1284.3608704595297,2842767.6810928234,1304669.2204395083,1026.66051,459.83227305090696,1055042.1401119558,463066.7903029777,1670.12576,704.5237733825822,1705637.1250731056,703421.1485783192,0.37858,100000,0,955052,9974.22508146044,0,0.0,0,0.0,43307,451.6981368535383,0,0.0,41119,426.0172111287493,1246824,0,44736,0,0,0,0,0,92,0.9608154398863732,0,0.0,0,0.0,0,0.0,0.0523,0.138147815521158,0.3277246653919694,0.01714,0.3540827535701208,0.6459172464298791,23.405072760149668,4.233337677623552,0.3005477494641581,0.258633007859014,0.2169564181948083,0.2238628244820195,11.5811443255059,6.336860010223957,18.169920434471702,11536.933106319007,47.977592229610366,13.3220138734325,14.328201355168693,10.026485695708866,10.300891305300304,0.56799237913789,0.8047882136279927,0.694136291600634,0.575192096597146,0.1180851063829787,0.7473338802296965,0.9340909090909092,0.8756756756756757,0.7230046948356808,0.1122448979591836,0.4946308724832214,0.7167182662538699,0.6188340807174888,0.5300859598853869,0.1196236559139785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405441005116,0.004583620654687,0.0068103850760205,0.0090024182568229,0.0114419967047049,0.0136851001435713,0.0157199363862496,0.0180033067298075,0.0199399043375168,0.0221510241266006,0.0245635258296341,0.0265386787125917,0.0287629957940417,0.0309368595586039,0.0329117058374429,0.0349043927648578,0.0367804665900406,0.0387261463748715,0.0408587617611893,0.0428284259095312,0.0567977786128857,0.0712738233539514,0.0845714765382355,0.0969258437365249,0.108791023369611,0.1240536310958846,0.1347210728457147,0.1461459863337378,0.1565450506258811,0.1651598511416406,0.1774110143928294,0.1890865415828085,0.200232752901254,0.2092015882912742,0.2181370122226256,0.2278370267007763,0.2361925176675486,0.2434333430867226,0.2512653487369209,0.2572445930319094,0.2635443769875686,0.2689937437876395,0.2744091414511817,0.2800642008432349,0.2843711710400213,0.2890693239835148,0.292914527031248,0.296639231824417,0.2999418115988879,0.3034614623854421,0.3011321567518813,0.2988936988936989,0.2967199966229051,0.2947403385130842,0.2931733467975467,0.2902202886117834,0.2873992685591248,0.2877957536179569,0.2887716962777124,0.2894877648569594,0.2897385058546257,0.2910955527068336,0.2922852072241361,0.2932783413220377,0.2930757230289211,0.2950956376713399,0.2959557258407833,0.3011761016151795,0.3034424735329173,0.3053039591820591,0.3079225431953199,0.311847889412637,0.3144563167818981,0.3159698423577793,0.3171441991545326,0.3175247879584279,0.3226499003220365,0.3285655905190028,0.3278367803242035,0.326915671929149,0.0,2.2423888815830866,53.06133696135226,155.8123685243647,218.86772375537896,fqhc3_100Compliance_baseline_low_initial_treat_cost,33 -100000,95793,47305,449.1351142567828,5267,53.709561241426826,4149,42.685791237355545,1621,16.546094182247135,77.34149214859087,79.68102006351603,63.33904717832892,65.07255315788207,77.13389399224705,79.47593631003822,63.26184982680882,64.99865106036633,0.2075981563438205,205.08375347780827,0.0771973515200983,73.90209751574162,210.59654,148.10994852522273,219845.4375580679,154614.58407735717,500.91086,335.32494500250533,522183.9069660622,349325.8536662442,453.06909,222.47920259403423,468394.07889929326,228736.6469632697,2720.29899,1273.5576753142675,2803093.921267733,1292815.1799340951,955.03947,430.204519703005,984865.3346277912,436980.8855584485,1583.37768,669.1347981399542,1618821.4587704735,670566.1538916937,0.37954,100000,0,957257,9992.974434457632,0,0.0,0,0.0,43588,454.3547023268923,0,0.0,41038,423.9245038781539,1245973,0,44710,0,0,0,0,0,96,0.9917217333208064,0,0.0,1,0.010439176140219,0,0.0,0.05267,0.138773251831164,0.307765331308145,0.01621,0.3517003091471176,0.6482996908528823,23.42006521909278,4.148830677513607,0.3179079296215956,0.2581344902386117,0.2111352133044107,0.212822366835382,11.229951543972428,6.0263261988765375,17.419418248965606,11521.223431289573,47.58969944426058,13.052662234422549,14.95188526483654,9.849274316607012,9.735877628394482,0.5760424198602073,0.7917833800186741,0.7012888551933283,0.5970319634703196,0.1064552661381653,0.7502040816326531,0.9187358916478556,0.8607242339832869,0.782051282051282,0.1058201058201058,0.503077975376197,0.7022292993630573,0.6416666666666667,0.5295950155763239,0.1066282420749279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020462534315264,0.0043692912827063,0.0066264143284793,0.0089115148559118,0.0110800223838836,0.013221827219851,0.0154618146214099,0.0177577632774765,0.0199400775106602,0.02230209197309,0.0245260384090885,0.0267297857920354,0.0289234946822735,0.031028834564391,0.0332046969478094,0.0354436921804744,0.037608466046762,0.0397933567086454,0.0418757858204225,0.043827687438839,0.0582306480389804,0.0718527812630698,0.0848711580579919,0.0974033480102142,0.1092692899445697,0.1249907519949268,0.1359352971729613,0.1460517641053997,0.1548460077262928,0.1650610285371368,0.1771935299878391,0.1883890354100912,0.1996849880512709,0.2087216862072356,0.2177698624715543,0.2272204020189498,0.2352285644237413,0.2430906355941716,0.2514887354239782,0.2580611976636529,0.2647198014659202,0.2696532162991841,0.2753426275992439,0.2803402850066406,0.2843404761038551,0.2892366750332201,0.2932270717265846,0.2976238830219334,0.3005786319487497,0.3028640591493337,0.3001397624039133,0.2973113997748057,0.2950427638982669,0.2925259405711977,0.2904877831547071,0.2873134328358209,0.2841076258719688,0.2845656525877063,0.285777717057176,0.2860636569735268,0.2873978865322641,0.2877619612495057,0.2891720279134097,0.2885548770940974,0.289469250210615,0.2899835710746603,0.2914758415388138,0.2972682433286961,0.3011385667453911,0.3059300799427276,0.3087257554220735,0.3125200128081972,0.3177386680172195,0.3191489361702128,0.3241965973534971,0.3278981194953582,0.3257434944237918,0.3232510288065843,0.3260869565217391,0.3305247031788587,0.0,2.4495631155730746,53.12910723200245,151.53042631375007,218.06281745743016,fqhc3_100Compliance_baseline_low_initial_treat_cost,34 -100000,95708,47304,450.1400091946337,5060,51.75115977765704,3983,41.08329502235968,1538,15.69356793580474,77.3419109081298,79.71106493511374,63.33255108723839,65.08122774415511,77.13948389839928,79.51059107923128,63.25617774778886,65.0077681013493,0.2024270097305276,200.4738558824641,0.0763733394495247,73.4596428058154,211.2121,148.53189929327232,220683.85087975927,155192.77311538465,497.7856,333.8897732463027,519588.0490659088,348342.3572181038,450.40423,220.5565695367877,467396.7902369708,228004.1256552717,2601.79534,1213.719568278846,2685436.2122288626,1235112.5488766318,907.40252,413.1580427790144,933723.3042169934,417316.9906932651,1490.00582,641.4754306673836,1522040.5608726544,640911.5990285228,0.37795,100000,0,960055,10031.084130898147,0,0.0,0,0.0,43303,451.895348351235,0,0.0,40820,423.2770510302169,1241348,0,44558,0,0,0,0,0,72,0.7522882099719982,0,0.0,0,0.0,0,0.0,0.0506,0.1338801428760418,0.3039525691699605,0.01538,0.3558108871727256,0.6441891128272744,23.79608648388098,4.149197295772481,0.3068039166457444,0.2638714536781321,0.2244539291990961,0.2048707004770273,11.350705435758506,6.131660552346879,16.554357299370864,11488.29910382089,45.62413292624423,12.795859975617477,13.79826601919222,10.028015933871908,9.001990997562617,0.5676625659050967,0.7878211227402474,0.6914893617021277,0.5715883668903803,0.0943627450980392,0.7394305435720449,0.9195402298850576,0.8498498498498499,0.729064039408867,0.1382978723404255,0.4971671388101983,0.6948051948051948,0.6321709786276716,0.5253256150506512,0.0812101910828025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.004773487382183,0.0070298234936092,0.0094052165434305,0.0114999796640501,0.0134601286959354,0.0156070012334729,0.0175655262513268,0.0198793949304987,0.0222194929738913,0.0244592516658124,0.0267586688435038,0.0288346838879519,0.0308971400313195,0.0328349276125024,0.0348046309696092,0.0370332014664153,0.0392893464228637,0.0412897456693077,0.0432159233013755,0.0574818280558108,0.07172315615383,0.084734025810513,0.0977438864054693,0.109692935728526,0.1252711209860868,0.136652486181984,0.147568908430836,0.1568629545745908,0.1661195150734899,0.1783187032150358,0.1894635455558802,0.1999369112624273,0.2084217202090668,0.2167476849306029,0.2260706892925536,0.234779214986619,0.2420444454436114,0.2499517971169005,0.256757066025861,0.2632455501197044,0.269330213512723,0.2744332434095319,0.2788187372708757,0.2836183443451224,0.2877252668688213,0.2913285241959723,0.2949645777953016,0.2980081021963941,0.3015519603709949,0.2992263706693575,0.2974769602659012,0.2946258006517586,0.2918041289095702,0.2904482564512784,0.2866759269152687,0.2840107888137037,0.28366659030664,0.2833969465648855,0.2837009585575312,0.2849611127729584,0.2849142181029382,0.2857142857142857,0.2868795673452969,0.2881710099675753,0.2890177921132036,0.290878580164396,0.2944754499278861,0.2976791473846585,0.3013453982616978,0.3060650081714182,0.3099904650916411,0.3141656737944441,0.3182129017551858,0.3189452941728441,0.3209847319209374,0.3243531202435312,0.3319053447572419,0.3345383759733036,0.3256792958285495,0.0,2.015255882520334,50.67149859735438,149.5397513936742,205.80965079162357,fqhc3_100Compliance_baseline_low_initial_treat_cost,35 -100000,95703,47463,452.410060290691,5220,53.2585185417385,4141,42.6318924171656,1564,15.913816703760592,77.33810060160408,79.71962899768135,63.31256206328344,65.07445484110954,77.13611592751603,79.52203635338283,63.236735815371816,65.00295564191471,0.2019846740880524,197.59264429852408,0.0758262479116211,71.49919919483239,211.01366,148.47094237196256,220488.03067824413,155137.1873107035,498.89477,332.9612825894635,520623.4600796213,347240.06441358646,455.1611,222.61903595473237,471065.0867788888,229172.95779632853,2699.6189,1256.740756335729,2781367.4701942466,1273720.20016508,953.86393,430.73724814318814,979351.3682956648,432854.8355037729,1532.09262,650.3906732134319,1561232.228874748,647182.5755182315,0.3814,100000,0,959153,10022.183212647462,0,0.0,0,0.0,43385,452.65038713519954,0,0.0,41274,426.81002685391263,1241906,0,44618,0,0,0,0,0,79,0.8254704659206086,0,0.0,1,0.0104489932395013,0,0.0,0.0522,0.1368641845831148,0.2996168582375479,0.01564,0.3493887976646597,0.6506112023353403,23.641125115891988,4.172566252957227,0.3033083796184496,0.2748128471383724,0.2113016179666747,0.2105771552765032,11.44362506884779,6.081982391912893,16.697453703773572,11570.151434710077,47.33092105380794,13.91316050632054,14.324416044789585,9.56627400312367,9.527070499574153,0.5829509780246317,0.8101933216168717,0.7085987261146497,0.5794285714285714,0.1089449541284403,0.7545605306799337,0.9067796610169492,0.8967551622418879,0.7342995169082126,0.1382978723404255,0.5124361158432709,0.7417417417417418,0.6390403489640131,0.531437125748503,0.1008771929824561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021588858932517,0.0043416514505984,0.0068735151379779,0.0091265727585015,0.0112737965629165,0.0133633465405025,0.0155437243742733,0.0174757678204827,0.0195837807434678,0.0218297240567245,0.0240158328120673,0.0263795617439878,0.0284095582791807,0.0303279954688224,0.0324647189898489,0.0345055649136585,0.0365699612764283,0.0384284187701661,0.0405148304864482,0.0425139594966247,0.0568987665667526,0.0710195450310396,0.0842707240293809,0.0970517391898856,0.1090216841039487,0.1249801643974737,0.1359396389799751,0.145916530888257,0.1556030566985518,0.1659299156670457,0.1781996853651703,0.1896002944742768,0.2002351097178683,0.2096595944896105,0.2185463990139109,0.2275850604011969,0.2363248531415425,0.2442263539368838,0.2521062790961735,0.2595495960116898,0.2659542444310656,0.2726942883895131,0.2785802235271832,0.2834305983295186,0.2869430001457796,0.2910216718266253,0.2948764512129447,0.2986298578923241,0.3015498957672437,0.3054526274147821,0.3040046258942499,0.3007545665709141,0.2981878552535314,0.2943595515345656,0.2918156329273539,0.2879763780732218,0.285445697854457,0.285845287220803,0.2869999488656701,0.2879240984015095,0.2892322639711515,0.2893757018183251,0.2905538140020898,0.2913904328221612,0.2921875748431288,0.2957440760743172,0.296951374565592,0.3003776175763817,0.3054444251174117,0.3085958984835389,0.3124971934078764,0.3155550898517315,0.3163119687286715,0.319880418535127,0.3234481488303555,0.3239026662009547,0.3224794622852875,0.3285827395091053,0.3370937416062315,0.3343305908750935,0.0,2.447351378234084,52.4483000814913,152.5329381185243,215.9982950344248,fqhc3_100Compliance_baseline_low_initial_treat_cost,36 -100000,95661,47600,454.2708104661252,5155,52.93693354658638,4100,42.38927044459079,1590,16.359854068010996,77.27782633283482,79.68580216105505,63.2892740309558,65.07098387333106,77.07626877361172,79.48450309017294,63.21437031963615,64.99785484772221,0.2015575592231044,201.29907088211496,0.0749037113196493,73.12902560884993,210.41658,148.05876583290393,219960.6736287515,154774.42827579047,499.68335,334.4589322178045,521877.6303822874,349158.94901559094,455.39222,223.00729413494736,472319.074649021,230369.13394705043,2675.92167,1237.6492694259057,2770559.7474414865,1267050.0615986716,948.57327,425.62657088878376,980826.1778572252,434159.61665546393,1552.50732,659.0901522308714,1599294.3832909963,668858.4250334172,0.38094,100000,0,956439,9998.212437670523,0,0.0,0,0.0,43413,453.3404417683277,0,0.0,41218,427.1855824212584,1241253,0,44616,0,0,0,0,0,90,0.9408222786715588,0,0.0,1,0.0104535808741284,0,0.0,0.05155,0.13532314800231,0.3084384093113482,0.0159,0.3500186081131373,0.6499813918868627,23.888491511035443,4.116637199254311,0.3214634146341463,0.2595121951219512,0.2029268292682927,0.2160975609756097,10.948621026821083,5.7217465547417055,17.130864259745294,11596.119248654675,46.73390121531468,12.910358293434678,14.831091870833616,9.331197065799593,9.661253985246796,0.5717073170731707,0.8110902255639098,0.6790591805766313,0.5865384615384616,0.110609480812641,0.7517123287671232,0.9390519187358916,0.8511904761904762,0.7317073170731707,0.1413043478260869,0.5,0.7198067632850241,0.620162932790224,0.5390749601275917,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0045331007626156,0.0068320711428745,0.009085642854965,0.0112416704817132,0.0132027994824828,0.0152983171851096,0.0175574780148508,0.0196088459728728,0.0217883447209104,0.0240410256410256,0.026203071234143,0.0281010443998559,0.0302183928184938,0.0321594862741454,0.0343372497104087,0.0364325903820448,0.0383337486502201,0.0404977940564388,0.0424546990011885,0.0568535662786566,0.0713881791144808,0.0854551942735993,0.0978943713104145,0.1100148782829828,0.1254935168033871,0.1364843053136813,0.1476861124131759,0.1578474569020832,0.1677867479709709,0.1798090599543123,0.191074251315476,0.2017762491973138,0.2115174194677871,0.220002421600678,0.2292504570383912,0.2379049362595164,0.2458850398838923,0.2531287939818229,0.2604600595101854,0.2665317919075144,0.2722651959524199,0.2774539133725124,0.2824198861934711,0.286850702583223,0.2904112628827851,0.2938975244674726,0.2979086098107062,0.3014443940669732,0.3047160477541059,0.3022622849212444,0.2997243660418963,0.2981773037638959,0.295552180516381,0.2927145025445671,0.2895386455282808,0.2868466526102189,0.2857847651624786,0.2864622544658134,0.2861942632472523,0.2882410252566889,0.2901669171742742,0.2913735343383584,0.2919996428411983,0.2935907595514252,0.295817846281808,0.2976810357092047,0.3019449864669226,0.3069767441860465,0.3102268205332272,0.3129416055066782,0.3149952345652864,0.3175281040005024,0.3213904558621741,0.3250727494602459,0.327069457659372,0.3291896869244936,0.3279492946227765,0.3320366768546818,0.3343523118074131,0.0,1.863097382856237,51.07033200074088,151.13432625331197,218.3797826159468,fqhc3_100Compliance_baseline_low_initial_treat_cost,37 -100000,95816,47858,457.2305251732488,5198,53.070468397762376,4098,42.164147950237954,1578,16.072472238457042,77.39792083527668,79.70061633529444,63.37134666233783,65.07111578229613,77.19554223080709,79.504259165055,63.29465557597062,64.99960029701946,0.2023786044695867,196.35717023943755,0.0766910863672052,71.51548527667728,210.36202,147.99871073920133,219547.90431660684,154461.37465475634,501.40514,337.1939121453973,522698.6515821992,351316.8073655729,460.02052,225.61249658295495,476723.19863070885,232844.9008647269,2692.94637,1251.126445765574,2773173.0713033318,1268516.3502097046,955.64163,426.8998493356624,982632.6813893296,430830.0301936207,1548.38836,659.8810618426153,1579404.6297069383,655969.0910511202,0.38205,100000,0,956191,9979.450196209402,0,0.0,0,0.0,43525,453.6194372547382,0,0.0,41653,431.27452617516906,1243130,0,44470,0,0,0,0,0,91,0.9497369959088252,0,0.0,0,0.0,0,0.0,0.05198,0.1360554901190943,0.3035782993459022,0.01578,0.3586715867158672,0.6413284132841328,23.568576678592542,4.144207813461192,0.3177159590043923,0.2613469985358712,0.2030258662762323,0.2179111761835041,10.904702668907786,5.63608020587861,16.874103099267717,11514.41680045796,46.729590231740985,12.977658637303776,14.70547264192076,9.253002513813575,9.793456438702876,0.5690580771107857,0.8020541549953315,0.6712749615975423,0.6081730769230769,0.1041433370660694,0.7322635135135135,0.9211136890951276,0.8104395604395604,0.755,0.1269841269841269,0.502745367192862,0.721875,0.6172707889125799,0.5617088607594937,0.0980113636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020956507653681,0.0044381846001074,0.0065824838987778,0.008691855447133,0.0107148666232921,0.0128737457002707,0.0149273501660858,0.0170772762050497,0.0191981527269755,0.0213930551861021,0.0235641251562403,0.0255655296229802,0.0276056916833615,0.0293999608960968,0.0313434066500381,0.0332042744308502,0.0353082358296349,0.0373425921127636,0.0394080996884735,0.0413392587658586,0.0564045858065323,0.0710191615764371,0.0855581887963759,0.0987719224460613,0.1111954459203036,0.1270564601395644,0.1377302662976042,0.1477081603542611,0.1575010951673736,0.1664842945417095,0.1780932582212216,0.1889549978364344,0.1996281638688353,0.2082485949834897,0.2169523956145463,0.2269768162795332,0.2363435656701939,0.243850892576105,0.2512100293580893,0.256791846352707,0.2630623967085418,0.2683049323164251,0.2735825640904417,0.2785965499916262,0.2832509330618971,0.2878445160179972,0.292715496262277,0.2968813438895655,0.3002351238922047,0.3043003682272488,0.3018771788683293,0.2988776670823455,0.2959495873800034,0.2945723045036487,0.2926749848289744,0.2907472875777154,0.2870128233403698,0.2871591261866248,0.2875514578300956,0.2880143749221655,0.2879610455028824,0.288770369204125,0.2903245994659546,0.2913896944010707,0.292012871619999,0.2930622009569378,0.2949814656401482,0.299990557426584,0.3029177904655154,0.3070074783365647,0.3098174866869965,0.3139868309260832,0.3175092866586916,0.3200091192339843,0.3220498354489892,0.3268074065337893,0.3276887871853547,0.3315271924543447,0.3350515463917525,0.3330807123910572,0.0,2.351467050734614,51.430636742961056,148.66502447048623,217.8530123645505,fqhc3_100Compliance_baseline_low_initial_treat_cost,38 -100000,95569,47032,449.5076855465685,5043,51.73225627557053,3939,40.79774822379642,1477,15.151356611453505,77.19945181010942,79.67195069359404,63.224607941291474,65.054372233554,77.01138571961617,79.48241461582053,63.15439274167656,64.9853397446167,0.1880660904932511,189.53607777351067,0.070215199614914,69.03248893731018,208.92278,147.0620541800181,218609.36077598383,153880.4990949137,497.09557,333.01408106895474,519756.1970931997,348067.1672497932,448.88733,219.0735615826381,467228.7247956974,227329.13639885196,2555.44312,1190.9438506844135,2649554.57313564,1221791.1045259584,916.04725,413.5035832583329,949564.8588977596,423721.0531221761,1432.21548,605.1973141909681,1471347.6336468938,612049.8610720778,0.37735,100000,0,949649,9936.789126181084,0,0.0,0,0.0,43291,452.563069614624,0,0.0,40726,423.6206301206458,1245086,0,44681,0,0,0,0,0,73,0.7638460170138852,0,0.0,0,0.0,0,0.0,0.05043,0.1336425069564065,0.2928812214951418,0.01477,0.3566818526955201,0.6433181473044799,23.576381646549617,4.117741259588914,0.3241939578573242,0.2670728611322671,0.2074130489972074,0.2013201320132013,11.7293235957308,6.410886117990734,15.75393081221571,11445.899996901206,45.28853583118314,12.921529843121192,14.54699564879084,9.165722291773225,8.65428804749788,0.594059405940594,0.80893536121673,0.7086922474549726,0.591187270501836,0.1273644388398487,0.7793345008756567,0.9328703703703703,0.8753623188405797,0.7572815533980582,0.1823899371069182,0.5184125849124062,0.7225806451612903,0.6469957081545065,0.5351882160392799,0.113564668769716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002148989873392,0.0043322984517359,0.0064485335933057,0.008601756954612,0.0109846479618845,0.0129564313237782,0.0153696994437924,0.0175045984058859,0.0196582071223905,0.0216644974840898,0.0236201073734563,0.0256444531274099,0.0274556651768243,0.0295843949537357,0.0314156685646966,0.0332381011531374,0.0354583450006741,0.0378407591016327,0.0398004249822924,0.0417053794197784,0.056588182379214,0.0698137740122473,0.0827114297126279,0.0961216297373328,0.1084431574386235,0.1245150210952572,0.1357544038805208,0.1461881589618816,0.1561863952865559,0.1648332741916406,0.17634417891429,0.1870042212407626,0.1973711480774475,0.2065678779436443,0.2161318089520614,0.2257752799004798,0.2342739499183207,0.2421613205311911,0.2499061401413017,0.255838787461247,0.2619831644366115,0.2676850570939529,0.2738506053814318,0.2787302502041012,0.2826102833771545,0.2873463842401037,0.2911767289520248,0.294913309535951,0.2980371297725769,0.3020206959440707,0.2994064481316606,0.2962105872143477,0.2947932079193969,0.2929850681545511,0.2901738574339297,0.2877373672352752,0.2846598558644175,0.2848012880542823,0.2850201043716314,0.2862787870118724,0.2879521236680174,0.2884178053748343,0.2891561208000168,0.2891369513668292,0.290404891435174,0.2916438391902116,0.2928546989051095,0.2976773383553044,0.3010560291899098,0.3053230137419049,0.3104038946988821,0.3141402477430191,0.3187667060359296,0.3213935600633436,0.3239632618981353,0.3312551464533584,0.3297150610583446,0.3319444444444444,0.3331529093369418,0.3273967411898446,0.0,1.6584923680078747,50.41391659334792,148.4872949420273,205.35182552043952,fqhc3_100Compliance_baseline_low_initial_treat_cost,39 -100000,95687,47408,451.242070500695,5138,52.47316772393325,4061,41.90746914418887,1558,15.90602694200884,77.33990302576841,79.7319929973905,63.32261558699434,65.08981798161508,77.14573272932213,79.54120720255983,63.24918825096304,65.02006449339753,0.1941702964462734,190.78579483067412,0.0734273360313011,69.75348821755745,211.46906,148.71429775111218,221000.5956922048,155417.22256013064,498.12566,334.60466947214525,520006.74072758056,349115.1979601673,453.78676,222.654425666387,471561.7795520813,230496.73689676495,2628.50822,1242.4705629282157,2709667.3215797343,1261155.3428660275,938.6893,427.900461174764,967743.486576024,433941.5665396166,1510.73386,647.5298447368071,1541681.1270078486,643516.3800448118,0.38101,100000,0,961223,10045.481622372943,0,0.0,0,0.0,43333,452.276693803756,0,0.0,41196,427.8951163689948,1238202,0,44469,0,0,0,0,0,82,0.8465099752317452,0,0.0,1,0.0104507404349598,0,0.0,0.05138,0.1348521036193276,0.3032308291163877,0.01558,0.3346339650687476,0.6653660349312523,23.799644782765217,4.128159034806114,0.3245506032996799,0.2588032504309283,0.212262989411475,0.2043831568579167,11.63178052770846,6.450300539119472,16.76489141351983,11585.36710953637,46.72248025344776,12.87452803930188,15.117792615286,9.644277027917846,9.085882570942038,0.5732578182713617,0.7925784966698383,0.6858877086494689,0.5881670533642691,0.1012048192771084,0.7402390438247012,0.9103448275862068,0.8313253012048193,0.7557603686635944,0.1276595744680851,0.4985744832501781,0.7094155844155844,0.6190476190476191,0.5317829457364341,0.0934579439252336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0047742131670974,0.0070724802386581,0.0092227684556941,0.0113988794321914,0.0134163969136179,0.015696986993925,0.018188127704744,0.0202097644749754,0.0221805973510204,0.0242862268696499,0.0264530168962614,0.0286689700559394,0.0306326349834167,0.0328506703270618,0.0349048800661703,0.0371513820396999,0.0392563913598571,0.0410286284953395,0.0433350360169712,0.0574556546810688,0.0715699104852641,0.0844043434926297,0.0975530213768725,0.1099319584366264,0.1257206935584542,0.1370117332541215,0.1482746876130872,0.1582741496235382,0.1674993567201303,0.1792279114844128,0.1904308497976672,0.2009199451947543,0.210090740133377,0.2190612447036813,0.2285508610665042,0.2373153643625329,0.2456436389816971,0.2526968930430935,0.259670216420474,0.2652449954319945,0.2711822804044182,0.276620151371807,0.280487512870244,0.2857298844996603,0.2903253603830955,0.2945493186648331,0.2984839435259432,0.3014001759925462,0.3044928854953779,0.3016968767241263,0.2994694303936661,0.2967810947374347,0.2950223107914915,0.2921633537698737,0.2894330802487053,0.2870380602080604,0.2873868120711958,0.2876493210359732,0.2879181032950627,0.2891330299186749,0.289092626111592,0.2902708333333333,0.2908329248183965,0.2915328187179364,0.2918343502531481,0.2926967727285629,0.2974023125372105,0.3015972877564573,0.3065842811602188,0.3101348608542691,0.3131227922180629,0.3144854271984023,0.3203531808920081,0.3255576208178438,0.3289134006101854,0.3320158102766798,0.332792865828942,0.3383894098179812,0.3423457730388423,0.0,2.014852765298868,54.82768175610544,148.34163205022804,204.6565690831052,fqhc3_100Compliance_baseline_low_initial_treat_cost,40 -100000,95782,47831,454.8244972959429,5170,52.81785721743125,4047,41.62577519784511,1560,15.963333402935834,77.331780499572,79.67172805952869,63.32970022966426,65.0624293278628,77.13169353902909,79.47427126538784,63.25394045974856,64.990080034742,0.2000869605429187,197.45679414084805,0.0757597699157059,72.34929312080851,212.10376,149.23304774197857,221444.27971852748,155804.8983545745,505.03321,338.52349789622764,526623.5722787163,352781.18842394976,461.13294,225.6805735364006,476970.2240504479,232255.01252951985,2631.24087,1235.5574591722986,2708407.968094214,1251262.146512183,946.63114,426.5158633044931,976248.2303564344,433231.8719430371,1522.77412,652.9711192777437,1558510.6178613934,654404.8451550613,0.38164,100000,0,964108,10065.649078114886,0,0.0,0,0.0,43893,457.5807563007663,0,0.0,41723,431.1874882545781,1231949,0,44239,0,0,0,0,0,97,1.0127163767722538,0,0.0,0,0.0,0,0.0,0.0517,0.1354679802955665,0.3017408123791102,0.0156,0.3548863846295954,0.6451136153704046,23.646362544983777,4.080447031922644,0.3076352853965901,0.2678527304175933,0.2115147022485791,0.2129972819372374,11.184586592812815,6.020642405470603,16.78266883888778,11619.130912787936,46.37621571912914,13.272475875211027,14.110647285662328,9.578638683747462,9.414453874508329,0.5767234988880652,0.801660516605166,0.6843373493975904,0.5922897196261683,0.1229698375870069,0.7568922305764411,0.9406593406593406,0.8629737609329446,0.705607476635514,0.1675675675675675,0.5010526315789474,0.7011128775834659,0.6164079822616408,0.5545171339563862,0.1107828655834564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777665231704,0.0045922711974372,0.0070118826549768,0.0094782396684139,0.0117569285532672,0.0139614456359026,0.0159866234375318,0.0183041365511045,0.0205884156938112,0.0229717971029328,0.0251263493495443,0.026880781986385,0.0290273821887242,0.0312319736299958,0.0332741609214383,0.0350046521244701,0.0375847962301279,0.0397253453926897,0.0415887267739119,0.0436711233287517,0.0577081615828524,0.0719979079497908,0.0857085949702808,0.0982870954182429,0.1102341461358511,0.1251426639049752,0.1365549113341742,0.1470697704095196,0.1572718347135661,0.1670309185575625,0.1790969269684086,0.1907785156503493,0.2021203718806067,0.2114236346536602,0.2195138055882644,0.2289497008641701,0.2371436541143654,0.2458863357739762,0.2533310653739298,0.2596052571323899,0.2665487298669164,0.2719293119367921,0.2777258585404517,0.2818303817489036,0.2864291092812553,0.2915357023998817,0.2946824224519941,0.2983354347355417,0.3015677636693444,0.3049429155942718,0.3026698245236301,0.3009864805451747,0.2990109874650047,0.2954250064985703,0.2938477983313043,0.2911531925967883,0.2878984520907853,0.2877999967191063,0.2883732049246111,0.2888164457745475,0.2895864120166856,0.290471967681545,0.2913919758899981,0.2926078028747433,0.2933173076923077,0.2927927927927928,0.2926045929968167,0.2973015276734285,0.3034213371464443,0.3067499209611128,0.3109476456431912,0.3128379094667656,0.3173010162216751,0.3216512087577923,0.3218638664916557,0.3233207190160833,0.3265306122448979,0.3312537733950493,0.3350814242340602,0.3350393700787402,0.0,2.4018894636106287,51.737961167831486,150.0444298488216,209.24213998564,fqhc3_100Compliance_baseline_low_initial_treat_cost,41 -100000,95681,47243,449.4727270827019,5216,53.18715314430242,4137,42.59988921520469,1618,16.481851151221246,77.34192318165195,79.71780311534609,63.32298576779221,65.07522763345419,77.13371098956128,79.51394119097849,63.24358446521503,65.00015973592575,0.2082121920906701,203.86192436760095,0.0794013025771818,75.06789752844156,211.35048,148.6733755254427,220890.7515598708,155384.4290145825,499.31029,334.4792040064736,521187.8324850284,348917.92472934385,453.66742,222.26250495925703,470259.81124779215,229278.47674748203,2698.69867,1258.6480229271426,2781815.825503496,1276931.9863153966,982.75888,447.8615098668751,1008118.9055298334,449076.49362660816,1578.1916,678.5235008873155,1609596.053552952,674954.1245216917,0.37915,100000,0,960684,10040.488707266855,0,0.0,0,0.0,43485,453.7996049372394,0,0.0,41121,425.9257323815596,1236505,0,44367,0,0,0,0,0,82,0.8570144542803692,0,0.0,1,0.0104513957839069,0,0.0,0.05216,0.1375708822365818,0.3101993865030675,0.01618,0.3455976569650375,0.6544023430349625,23.664675217013805,4.151084138905864,0.3185883490452018,0.2627507855934252,0.2037708484408992,0.2148900169204737,11.020034515595734,5.763969915308021,17.393654321229064,11519.811874930185,47.16660415292817,13.207027249741431,14.893646655051649,9.305541084013818,9.760389164121271,0.571912013536379,0.8068077276908924,0.6767830045523521,0.5848161328588375,0.1169853768278965,0.7395744680851064,0.9244851258581236,0.8450704225352113,0.7471264367816092,0.1674641148325359,0.5054017555705604,0.7276923076923076,0.6147455867082036,0.5426008968609866,0.1014705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024908113362291,0.004844872847427,0.0074053785365754,0.009679647348,0.0119695321001088,0.0140498055425464,0.0160879228432192,0.018420757048186,0.0205427624851732,0.0227102851584498,0.0247926257831004,0.0270586664749797,0.0290974543584469,0.0310758039421759,0.0332903225806451,0.0355624954758383,0.0375392328489004,0.0395362354943845,0.0414422096965411,0.0434012400354295,0.0581095338075689,0.0720717890724801,0.0851657867391601,0.0979280009260331,0.1104932148660912,0.125437863122136,0.1362453946041217,0.1458109187749667,0.1555203968186094,0.1641744581727621,0.1756162256582778,0.187130385806815,0.1975985979121082,0.2066693662241581,0.2157764959711153,0.2257985884125735,0.2340180864128614,0.2429079610951008,0.2505019795578042,0.2568754796513293,0.2626572390728247,0.2689935995694043,0.2743932757191902,0.2790934708315846,0.2834799727785339,0.2872690520503371,0.2914381589161846,0.2956167695146001,0.2998911324814018,0.3034933632701578,0.301943541534602,0.2988099998621089,0.2964473164399797,0.2940692046521708,0.2916147409649279,0.2890601112945637,0.2866034755134281,0.2870986783852031,0.2876258747226489,0.2881564186121053,0.2888403034719886,0.2888296822577462,0.2903596581053687,0.2897838899803536,0.2914670371789958,0.2915424690910033,0.2926567096628196,0.2978099457166032,0.303112502173535,0.3071021050560693,0.3117485477552123,0.3145576943304933,0.3158389766741911,0.3184823441021788,0.3208105857314703,0.3275762142111974,0.3341764618360363,0.3336618052818289,0.3310829057520928,0.3367684946632315,0.0,2.463629863620948,50.769104946700274,155.8786559619823,216.3489753008363,fqhc3_100Compliance_baseline_low_initial_treat_cost,42 -100000,95735,47491,452.4050765132919,5266,53.67942758656709,4220,43.47417349976498,1632,16.608345954979892,77.32392886815877,79.68834975105277,63.31606620966248,65.06528261835096,77.12133172353572,79.49052342136146,63.23952911899059,64.99345931315108,0.2025971446230556,197.8263296913099,0.0765370906718914,71.82330519988511,210.68982,148.19931182764378,220076.0641353737,154801.60007065732,506.05103,339.35756436892086,527993.0850786023,353873.4155417776,457.771,224.0788395752301,474850.9009244268,231456.43336556025,2758.31037,1267.3241773382274,2842033.634511934,1284729.730932923,960.02967,429.70727398145976,987954.1651433646,434052.5313623762,1579.2351,667.0958084460564,1608728.1349558677,661821.6383649266,0.38113,100000,0,957681,10003.457460698804,0,0.0,0,0.0,44060,459.5915809265159,0,0.0,41520,430.3128427429885,1235407,0,44413,0,0,0,0,0,73,0.7625215438449888,0,0.0,2,0.0208910012012325,0,0.0,0.05266,0.1381680791331042,0.3099126471705279,0.01632,0.3446337926033357,0.6553662073966643,23.590683312133063,4.1787401044651045,0.3170616113744076,0.2623222748815166,0.2149289099526066,0.2056872037914691,11.489367168685948,6.247923590130728,17.393697303759332,11584.179346724704,47.89996258454656,13.405372229051844,15.123195437312347,9.93578695178776,9.43560796639461,0.5765402843601896,0.8048780487804879,0.6980568011958147,0.5667034178610805,0.108294930875576,0.7512820512820513,0.9248291571753986,0.8679775280898876,0.7064676616915423,0.1264367816091954,0.5095081967213114,0.7260479041916168,0.6364562118126272,0.5269121813031161,0.1037463976945245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024917195903856,0.0046842206653215,0.0068707248259484,0.0089516145420553,0.0113012165846116,0.0136048879837067,0.0158330444711783,0.018220421162228,0.0202946559110102,0.0224941128289136,0.0246162994555912,0.0267459290745189,0.0288070074433523,0.0309113757158749,0.033093243075907,0.0352687016114861,0.0373922770964534,0.0391086385668469,0.040981646129049,0.0429346863507079,0.057913364863595,0.0720959186449189,0.0853397651006711,0.0977443609022556,0.1102405382319754,0.125374207948547,0.1364480427839263,0.1461186242146736,0.1564295938641656,0.1653425964641429,0.1777383066903493,0.1893850096785007,0.1992238033635187,0.2079283691742557,0.2172516934987244,0.2276628021570386,0.2362163428813729,0.2448552493896058,0.2516403678056533,0.2588278455470971,0.2653434831473693,0.2710903361098419,0.2769263592077658,0.2817242744538158,0.2869133639880301,0.2919970894022174,0.2956791902083359,0.2991210191082802,0.3030471919432815,0.3060989947292638,0.3031001482679606,0.3001899936668777,0.2982577316681232,0.2954239861201475,0.2937392286206691,0.2907867573973545,0.2867525080970061,0.2870640248894711,0.2879157220053526,0.288767386774475,0.2894191065189365,0.2897067234680394,0.2904283536266995,0.2909581225344892,0.2912861081145871,0.2916125344281037,0.2925445934832544,0.2959183673469387,0.3008212831672048,0.3067700708265738,0.3109609541517391,0.3166912695065373,0.32007007007007,0.3260278113663845,0.328711943793911,0.3308545797922568,0.3326821938392186,0.3307225376933621,0.3350026357406431,0.3410794602698651,0.0,2.356863751073316,50.76891873289809,154.60515883836138,229.14319796084547,fqhc3_100Compliance_baseline_low_initial_treat_cost,43 -100000,95780,47512,452.1820839423679,5147,52.43265817498434,4094,42.01294633535185,1660,16.85111714345375,77.4066300966336,79.74492466961726,63.35719594835807,65.08726651412036,77.19723113669296,79.5421232876842,63.27877691596387,65.0147359435659,0.2093989599406427,202.80138193305677,0.0784190323942013,72.53057055446277,210.04104,147.77228736087477,219295.30173313845,154283.03128093,500.28009,335.9162979813396,521601.0440593026,349995.4979968048,459.16968,224.7782512123161,474736.4167884736,231069.08038265887,2679.25977,1247.0713035796978,2751774.953017332,1256559.8391746068,981.207,438.8341262715063,1003651.3990394656,437390.57522451767,1612.24624,676.702539406747,1638164.627270829,667385.1875046114,0.38027,100000,0,954732,9967.9682605972,0,0.0,0,0.0,43390,452.2551680935477,0,0.0,41585,429.5155564836082,1245729,0,44743,0,0,0,0,0,94,0.9709751513885988,0,0.0,0,0.0,0,0.0,0.05147,0.1353511978331185,0.3225179716339615,0.0166,0.3609765188222139,0.6390234811777861,23.81330695613017,4.247942672725627,0.3136297020029311,0.2586712261846605,0.2100635075720566,0.2176355642403517,11.593691357455691,6.2739606479417525,17.477686521750556,11574.857452901138,46.73187762439719,12.768523141736344,14.632979861089996,9.665120038116244,9.6652545834546,0.5852467024914509,0.789423984891407,0.7118380062305296,0.6174418604651163,0.1290684624017957,0.7443609022556391,0.9026128266033254,0.8509485094850948,0.7521739130434782,0.135593220338983,0.5195029340697273,0.7147335423197492,0.6557377049180327,0.5682539682539682,0.1274509803921568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024114941131173,0.0049786051793717,0.007306603342771,0.0095404529429096,0.0120625298766285,0.0144498075395613,0.0166391386798801,0.0186188945031388,0.0207492206265651,0.022893107506524,0.0249761716868395,0.0270996870350418,0.0292712005508905,0.0310077519379844,0.0331622134256968,0.035119422558627,0.0370991102834678,0.039020546951131,0.0411220779220779,0.0430921395106715,0.0577426726071849,0.0712799221944511,0.0848173575808395,0.097667868290786,0.1098572256466993,0.1250779359392997,0.136575644504749,0.1478197071676927,0.1579879636348115,0.1675860960848374,0.1795958769985582,0.1911228847921284,0.2016604003216482,0.2111073499383046,0.2197517301988355,0.2296875691463468,0.2376168067976538,0.2453158894471232,0.2532654542156107,0.2597042936922091,0.2665741864632102,0.2727347062740196,0.2783998864832267,0.28277628806742,0.2871571995678195,0.2914033726272741,0.2951371508659525,0.2984091458219413,0.3020426126802495,0.3044355902686158,0.3017546694676739,0.3,0.2965455108533461,0.293991973900742,0.2910012899782038,0.2881863306605575,0.2849417440522175,0.2844102614347066,0.2848494098494099,0.2846543419747839,0.2851769087523277,0.2861375453742765,0.285779635289959,0.2850609417667562,0.2860652023562519,0.2859651841520739,0.285028655317467,0.2887733823025927,0.2930350681881436,0.2953840109998035,0.2971413112093065,0.3001836788244555,0.305301758965753,0.3060002992667963,0.3057090239410681,0.3074164063403911,0.3119891008174387,0.3138224243622701,0.3197278911564626,0.3203809523809524,0.0,2.854694636532943,51.509858052530745,150.3866837570828,212.69605778343964,fqhc3_100Compliance_baseline_low_initial_treat_cost,44 -100000,95700,47525,453.5736677115987,5068,51.901776384535005,3997,41.30616509926855,1494,15.370950888192269,77.29491858535671,79.69810215102541,63.29396199958445,65.07446993592174,77.11645340565975,79.51944662571485,63.228016119019166,65.01012007692842,0.1784651796969569,178.6555253105604,0.0659458805652875,64.34985899332446,210.74834,148.2997094631101,220217.7011494253,154963.12378590397,500.76964,335.3276186918058,522813.4169278997,349937.7415797344,451.97878,220.7722798292976,469094.9843260188,228245.22435978503,2587.9676,1186.827379497847,2677105.642633229,1213009.2784721493,943.73644,415.20661299038215,975215.2142110764,422947.526387109,1459.44052,602.2913588155242,1502907.5862068965,609881.8070439758,0.38062,100000,0,957947,10009.895506792058,0,0.0,0,0.0,43594,455.0574712643678,0,0.0,40927,424.503657262278,1241403,0,44537,0,0,0,0,0,74,0.7628004179728317,0,0.0,0,0.0,0,0.0,0.05068,0.1331511743996637,0.2947908445146014,0.01494,0.3452583759227711,0.6547416240772288,23.73653405908756,4.189232942346757,0.315986990242682,0.2626970227670753,0.2139104328246184,0.2074055541656242,11.631639623629558,6.275589446587373,15.65922322457457,11564.275773581126,45.34093775505696,12.641552766184772,14.194877418861031,9.504369089926485,9.000138480084676,0.5799349512134101,0.7904761904761904,0.6785431512272367,0.6222222222222222,0.1194209891435464,0.758744394618834,0.9142857142857144,0.8419452887537994,0.8118811881188119,0.1280487804878048,0.5107564191533657,0.707936507936508,0.6209850107066381,0.5635528330781011,0.1172932330827067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022707228805741,0.004282220666281,0.0065505509571929,0.008723501601342,0.0108818469619389,0.0128932965050502,0.0147965223070329,0.0170613595962485,0.0189876007693252,0.021307327466989,0.0232033317604579,0.0252200980039653,0.0275262399670714,0.0294238895187055,0.0314209624476145,0.0335477465924838,0.0356776473270261,0.0377595514950166,0.0399779460719041,0.0422125637097026,0.057438007896551,0.0711361899477601,0.0844080210705254,0.0970392660241572,0.1090726869922987,0.1242104594940592,0.1359159414137125,0.1467507026658717,0.1564399807682034,0.1657619190662146,0.1776585775681003,0.1888061961836355,0.1996021652644622,0.2088578547075793,0.2180490808338464,0.2276219363694732,0.2363983135916482,0.2443159446050692,0.2526337299064571,0.2591599335281646,0.265353364661219,0.2716552014600589,0.2773603436239069,0.282695212294119,0.2868107845518581,0.29222100292221,0.2958573216520651,0.2996300392844883,0.3030201212183869,0.3058510638297872,0.3039209101777103,0.3009820595819388,0.2983887960218573,0.2967221381744831,0.2947948615370938,0.291599156247134,0.2893014136175326,0.2899731218041169,0.2899420388680532,0.2902978556531969,0.2907314150925735,0.2916312952835962,0.2920613017207134,0.2909537088678193,0.2918560196205727,0.2931909907564119,0.2922512165277027,0.2956942003514938,0.3010692571109092,0.3052019922523519,0.3087098827166106,0.3136394863393754,0.315934237669563,0.3170068027210884,0.3227434124462717,0.3282965411403612,0.3303140096618358,0.329121540312876,0.3274979800700242,0.3274962742175857,0.0,1.7896978326934605,48.89591313348246,147.2258139494195,214.02670477977765,fqhc3_100Compliance_baseline_low_initial_treat_cost,45 -100000,95727,47464,452.06681500517095,5112,52.37811693670542,4051,41.806386912783225,1602,16.348574592330273,77.3593554540744,79.73006180493267,63.33143217950936,65.0835823111477,77.16059999037718,79.53415742935091,63.25711125759577,65.01285967052465,0.1987554636972248,195.90437558176177,0.0743209219135963,70.72264062304612,209.29216,147.20909421596505,218634.4082651708,153780.11868748115,497.18929,332.95264992287343,518864.7925872533,347297.0634438282,449.71615,220.09817067670429,466669.4349556552,227524.0004316666,2638.00904,1220.339555849791,2724054.728550983,1243478.079753391,957.67556,431.9162653767454,987257.6075715316,438160.7461988527,1558.0846,656.3539590694288,1592096.608062511,656466.5033019678,0.38168,100000,0,951328,9937.927648416851,0,0.0,0,0.0,43303,451.82654841371817,0,0.0,40715,422.2006330502366,1251766,0,44871,0,0,0,0,0,77,0.8043707626897322,0,0.0,1,0.010446373541425,0,0.0,0.05112,0.1339341857053028,0.3133802816901408,0.01602,0.354790137398833,0.645209862601167,23.62987480112521,4.12053839009276,0.3056035546778573,0.263885460380153,0.2206862503085657,0.2098247346334238,11.351584174030776,6.214940206110779,17.163613296897548,11573.6967548319,46.15237823065769,13.034424752693832,13.976687833057484,9.79493137351297,9.346334271393408,0.5801036781041718,0.7970065481758652,0.7075928917609047,0.5727069351230425,0.1294117647058823,0.7722513089005235,0.9126436781609196,0.8794117647058823,0.7378640776699029,0.2242424242424242,0.504302925989673,0.7176656151419558,0.6425389755011136,0.5232558139534884,0.1065693430656934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573552647571,0.0044197998925461,0.0066059849614904,0.0088562084865227,0.011205678085883,0.0134688018569232,0.0156379020337428,0.0175877345201396,0.0197910490482713,0.0222360998781723,0.0243449725683228,0.0265512176583572,0.0287874890683677,0.0311357009653921,0.0329900524208527,0.0349600471371422,0.0369400242263611,0.0390619327670079,0.0410320917322466,0.0427898837548435,0.057034855794332,0.0712117723400247,0.0842345980761363,0.0962050074133271,0.1082768293068722,0.1241471232268096,0.135133701188455,0.1452905918299992,0.1551079290446676,0.1646725542166089,0.1764465036095248,0.1880845167994458,0.1991993298739162,0.20905370508163,0.2186670484959963,0.2276089198389904,0.2361664824058874,0.2441907546957597,0.2517271500039704,0.2582455336692625,0.2637191067112309,0.2701489921121823,0.2756445095583544,0.2809416155309147,0.2862201096182761,0.2906932398351479,0.2947669766976697,0.2989127673626988,0.3030060120240481,0.3067045948401881,0.3045148121290253,0.3011710759345954,0.2989965616447969,0.2965365474786411,0.2938860686429766,0.2915485228208177,0.288469713907827,0.2888094305120167,0.289689284742997,0.2892578125,0.2904496164542078,0.2920070069084968,0.2931668966670848,0.2936195880434297,0.2946578429962115,0.2948265115312695,0.2952462040584646,0.3004106196909381,0.3045332214882388,0.3097491717936583,0.3135769998186105,0.3182226924094155,0.3236054207374724,0.3303632107528506,0.3342325581395349,0.3374736348722756,0.3387291981845688,0.337910447761194,0.3475215517241379,0.353051291651067,0.0,1.99026192124648,50.14137992237893,153.52819877898187,210.22681124377323,fqhc3_100Compliance_baseline_low_initial_treat_cost,46 -100000,95886,47633,452.81897252987926,5200,52.87528940616983,4081,41.945643785328414,1580,16.123313100974073,77.4394230829848,79.71978547453904,63.39129033748679,65.07739800390978,77.23675522823712,79.51907453405383,63.31489811145053,65.00395322330377,0.2026678547476876,200.7109404852088,0.0763922260362548,73.44478060601034,209.94908,147.66556694656035,218956.96973489356,154001.1752983338,499.77618,335.24908058187685,520608.7020002921,349022.5482154609,451.98831,221.8599663459166,467321.1939177773,228371.5091478954,2671.17199,1249.0979624886345,2748444.9658970023,1265356.6865743014,958.17166,435.3025247843868,984391.3501449638,439089.4528217135,1537.52242,657.6188124827663,1570294.7667021253,657843.5649586307,0.38223,100000,0,954314,9952.58953340425,0,0.0,0,0.0,43350,451.4527668272741,0,0.0,40877,422.2722816678139,1251908,0,44856,0,0,0,0,0,99,1.0324760653275766,0,0.0,0,0.0,0,0.0,0.052,0.1360437432959213,0.3038461538461538,0.0158,0.3450367647058823,0.6549632352941176,23.9060047531169,4.126227692248883,0.3026219063954913,0.267826513109532,0.2195540308747856,0.2099975496201911,11.09652402220386,5.958715866944405,17.00914141851703,11624.230968847192,46.39743310530101,13.006629835371273,13.963128289523072,10.03971276946756,9.3879622109391,0.5809850526831659,0.7941445562671546,0.7101214574898785,0.5859375,0.1178529754959159,0.7559322033898305,0.9221698113207548,0.875,0.7446808510638298,0.1412429378531073,0.5098241985522234,0.7130044843049327,0.6464646464646465,0.529500756429652,0.1117647058823529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021664304515084,0.0043982325996189,0.006796579393177,0.0091989968422869,0.0114649293097665,0.0137563338149406,0.0158390628978864,0.0178702570379436,0.0202178088349474,0.0224943227152765,0.0246418983995573,0.0269640786760103,0.029163027282536,0.0313963662566266,0.0334436437489046,0.0353038360266405,0.0372853300227601,0.03921832744454,0.0412873085907085,0.0431820073235685,0.0583195221864348,0.0728771588878788,0.0867521099034575,0.098762191729047,0.1105181161708667,0.1257614628532818,0.1372542789357736,0.1469525671540292,0.1563922438145593,0.1660709317009482,0.1773090815273477,0.1880091622188128,0.1988941874232828,0.2079440528875047,0.2171876546196219,0.2269256308100929,0.2362617155720988,0.2443136506082287,0.2522060239462625,0.2588215122592444,0.2648767249841214,0.2711820877401882,0.2776477817958354,0.2825355787760183,0.28737515321416,0.2909690762261178,0.2958866099216318,0.2996279412324923,0.3035933482356285,0.3073998052682824,0.3053313095222104,0.302482853223594,0.3007133428820175,0.2978591508685936,0.294883762279415,0.2923417576544246,0.2886503551696922,0.2887090180688414,0.2887527650161647,0.2895082782633411,0.2910545156238347,0.2917821957406643,0.2923368614051171,0.2935576218903264,0.2952514831669486,0.2958785024967012,0.2986954439153588,0.3038634600465477,0.3074848746758859,0.3131016670579948,0.318028813787532,0.3230680446985992,0.3268872030841935,0.3284402288467329,0.3310596150252289,0.3358841535201318,0.3399571996331397,0.3415721231766612,0.3433040614709111,0.3378480060195636,0.0,2.2978504877078203,51.052688460957285,148.40135721995617,215.4184295774888,fqhc3_100Compliance_baseline_low_initial_treat_cost,47 -100000,95734,47811,455.4390289761213,5112,52.0818100152506,4053,41.70931957298348,1569,15.992228466375582,77.34647984393533,79.69747319423658,63.33814763576003,65.07478453889169,77.14240636587354,79.49742188516859,63.26002698599219,65.00075112818236,0.2040734780617867,200.0513090679874,0.0781206497678397,74.03341070933322,210.0758,147.8371877522876,219436.9816366181,154424.956391969,501.00426,336.2665023305535,522695.7925084088,350617.1603929153,462.97345,226.8348021541497,478981.4068147158,233505.43317929129,2643.09641,1242.0151193274671,2721414.5444669607,1257983.7432863524,945.25586,431.3920208460491,967249.3993774416,430530.8868971856,1527.74408,662.622872339929,1558160.1520880775,659820.0826463514,0.38156,100000,0,954890,9974.408256209916,0,0.0,0,0.0,43449,453.2141141078405,0,0.0,41842,432.5631437106984,1242891,0,44648,0,0,0,0,0,103,1.0758978001545951,0,0.0,2,0.0208912194204775,0,0.0,0.05112,0.1339763077890764,0.306924882629108,0.01569,0.3542835765057987,0.6457164234942012,23.507179316687708,4.146604535447817,0.3214902541327412,0.2553663952627683,0.2146558105107328,0.2084875400937577,11.511527122988502,6.244964636242851,16.891189806802306,11587.576551919989,46.5662716824355,12.70593993483324,14.841673547826783,9.637536351686528,9.381121848088952,0.5849987663459166,0.81256038647343,0.7145049884881044,0.5804597701149425,0.1112426035502958,0.7491638795986622,0.9282296650717704,0.8753387533875339,0.7419354838709677,0.125,0.5162758137906895,0.7341977309562399,0.6509635974304069,0.5267993874425727,0.1071975497702909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027850921612315,0.0050482011981875,0.0073370475233659,0.0095792446313565,0.0116744971220534,0.013784818374328,0.0160856269113149,0.0182181896120597,0.0205660782369596,0.02252413666008,0.024662252198692,0.026615345137285,0.0287462088109803,0.0306416726748377,0.0328817721283905,0.0349974160206718,0.0369515250657445,0.0390090052703656,0.0410078897308759,0.0430897103396556,0.0585883261820497,0.0719257297761217,0.0849795944060346,0.0981198342762203,0.1103812576441314,0.125733498271323,0.1369210531899094,0.147120808940926,0.1562633467156402,0.1652838521567618,0.1774377638039452,0.1894110648423557,0.2001630434782608,0.2099585787822817,0.2189523443082504,0.2283556972676143,0.2363431554058575,0.2446516545564978,0.2526011232767913,0.2598357557640106,0.2657227793779135,0.2706886472582719,0.2764081381448912,0.2816421935870542,0.2861826925412284,0.2903336985019879,0.2942279797929275,0.297770032183791,0.3011322416830759,0.3051493876689189,0.3016751501440844,0.2994828202800473,0.2975830177789665,0.2950367514332337,0.2924214527528657,0.2895405430224371,0.2867368221463784,0.2865400360242345,0.2875782435912742,0.2887650055213194,0.2895956349502952,0.2895986444151084,0.2907147041593438,0.2912807694882725,0.2925582957489684,0.2946603080290829,0.2968656588948672,0.3021609771374882,0.3052635255492298,0.3082617941245963,0.3108493771234428,0.3138508693124768,0.3172525554724507,0.3222752404756495,0.3276185122728124,0.3304964539007092,0.3354093878171046,0.3371857258718572,0.3431126012852752,0.3442043222003929,0.0,2.472053181548784,51.637680793595926,154.91428918899422,205.20661920921208,fqhc3_100Compliance_baseline_low_initial_treat_cost,48 -100000,95747,47719,454.9803126990924,5233,53.46381609867672,4146,42.78985242357463,1584,16.230273533374415,77.41222784566315,79.76842417272596,63.350809200748486,65.08993723999068,77.21401513019342,79.57132967834266,63.27756435016535,65.01927325920863,0.1982127154697366,197.0944943832933,0.0732448505831371,70.66398078204372,209.4356,147.41833457489088,218737.86123847225,153965.87588007032,501.17884,335.7473279787098,522890.08532904426,350111.6794152399,458.83143,225.0269864457285,476129.4975299487,232674.169508348,2687.99442,1243.2266296931589,2775157.957951685,1266335.7119650303,963.2082,431.1747757083854,993033.4109684898,437382.1364370008,1543.79394,643.3767575631512,1582922.8487576633,647916.6944197293,0.3818,100000,0,951980,9942.630056294192,0,0.0,0,0.0,43541,454.1865541479106,0,0.0,41687,432.2433078843201,1246450,0,44678,0,0,0,0,0,74,0.7728701682559245,0,0.0,2,0.0208883829258357,0,0.0,0.05233,0.137061288632792,0.3026944391362507,0.01584,0.3401061687717371,0.6598938312282628,23.917284115905133,4.224547160813427,0.3205499276410998,0.2571152918475639,0.2122527737578388,0.2100820067534973,11.499673993925814,6.083225684774253,16.77472865595801,11612.686460413302,47.04741131210712,13.00846801374897,15.069151859265476,9.616193029602062,9.353598409490598,0.5735648818137964,0.8039399624765479,0.7035364936042137,0.5681818181818182,0.0987370838117106,0.7590652699435939,0.9287257019438444,0.8730964467005076,0.69377990430622,0.1314285714285714,0.4943201376936316,0.7081260364842454,0.6320855614973262,0.5290611028315947,0.0905172413793103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496050232934,0.0046926468352505,0.0068274966521933,0.0087232919002356,0.0108175154281763,0.0129180027485112,0.0150233401960984,0.0171729436853973,0.0194581557674423,0.0218628454452405,0.0238685742395671,0.025930032027593,0.0279936672423719,0.0301429395287526,0.0320903068700084,0.0342339734976123,0.0361994698475811,0.0383358406391035,0.0406196392368872,0.0425538564106837,0.057420264133215,0.0720100449931987,0.0851559303899046,0.0983001283318957,0.1114053597805444,0.1274033628562056,0.1388549901841141,0.149165859319273,0.1586865697158793,0.1677290580130062,0.1797102386650281,0.1911196284145905,0.2024097172337229,0.2112982847885813,0.2198348017621145,0.2292415169660678,0.2384889554306656,0.2457414350209973,0.2529994665092679,0.2600320843359688,0.2656349472758209,0.2711065358024402,0.2772251463717546,0.2824304100568692,0.2863731249089761,0.2907748169118099,0.2943844087700668,0.297935252985444,0.3013705701675141,0.3050352904065297,0.3030839129910337,0.3003067148647168,0.2981416078035654,0.2962052608883139,0.2940855457227138,0.2910121236060891,0.2887454454077145,0.288977531748616,0.2886199532187531,0.2884734540690778,0.2896412198155056,0.2903408868537435,0.2914042199355576,0.2917275909433293,0.2935342361243563,0.2946308724832214,0.2956975595993793,0.3012936127868648,0.3056519927787807,0.3098249598621608,0.3131512756018685,0.3176741991296597,0.3224824501459899,0.3266361796236599,0.328667464775762,0.3331388564760793,0.3305859433538138,0.3336639555643721,0.3349553933495539,0.3301815431164902,0.0,1.8957481515840324,54.47591454348044,142.8191347917909,219.2283561892672,fqhc3_100Compliance_baseline_low_initial_treat_cost,49 -100000,95730,47674,454.40300846129736,5130,52.41825968870782,4110,42.358717225530135,1562,15.867544134545074,77.32373385663094,79.69359963999764,63.321321634088775,65.07512805617199,77.12085100937024,79.49602533999847,63.24453808437608,65.00322303897451,0.202882847260696,197.5742999991752,0.0767835497126938,71.90501719747999,211.00618,148.52446924841843,220417.80006267625,155149.14288519818,501.54275,335.55973851988034,523349.3993523452,349963.871983133,452.19076,221.14225762210745,469370.32278282667,228578.8942827044,2680.9554,1242.036573155091,2763627.650684216,1260945.211107375,899.14201,407.0749989823251,925821.6546537136,411914.076998948,1521.8206,651.2828273024007,1548395.6126606078,645301.2989868018,0.38222,100000,0,959119,10018.99091193983,0,0.0,0,0.0,43669,455.5729656325081,0,0.0,40979,425.0078345346286,1241191,0,44521,0,0,0,0,0,72,0.7521153243497336,0,0.0,1,0.010446046171524,0,0.0,0.0513,0.13421589660405,0.3044834307992203,0.01562,0.3590841399851079,0.640915860014892,23.573109754672696,4.17372635439663,0.3182481751824818,0.2591240875912409,0.2143552311435523,0.208272506082725,11.20806226541139,6.021999493692901,16.77115711975623,11594.00229705096,46.85191839243338,13.165816807600514,14.755450313388014,9.693150488420743,9.23750078302411,0.5661800486618005,0.8028169014084507,0.6788990825688074,0.5698070374574348,0.0957943925233644,0.751892346509672,0.9048672566371682,0.876010781671159,0.7046632124352331,0.1387283236994219,0.4905854159534406,0.7275693311582382,0.6008537886872999,0.5319767441860465,0.0849194729136164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025430597771023,0.0047968196983986,0.0068818514007308,0.0092677275775867,0.0115985674751749,0.013598997646915,0.0157773426345204,0.018026206938813,0.0200525599991819,0.0221823954119514,0.0244795405599425,0.0263536274751458,0.0283527426854861,0.0303074021785055,0.0323396436755506,0.0343954180795633,0.0364570386941751,0.0385022410358565,0.0406658764322997,0.042659164322184,0.0569483455325724,0.0709837455386579,0.0845756008518405,0.0976479498453705,0.1102217722800468,0.1252167660618365,0.1365931804196991,0.147589303765815,0.157253930280246,0.1668257219142388,0.178523359857009,0.1894654853470937,0.2004501565762004,0.2104762529519811,0.2198534750181506,0.2295366966381715,0.2388087990991292,0.246082297037711,0.2535398079604584,0.2601304198604278,0.2663608633359523,0.271992336269539,0.2775867163032559,0.2826883471430624,0.2876439676201803,0.2919611851341034,0.2955119705801416,0.2990026460411154,0.3026963323663489,0.3051973736255043,0.3026469836228822,0.3012164244826067,0.2989096748746267,0.2962507771721057,0.2935573979970877,0.2895296692532562,0.2853893898952888,0.2864301036532446,0.2864609046492228,0.2863802982312537,0.2871533228676086,0.2880703900254493,0.2886455476225372,0.2888640679101977,0.2893358323721645,0.2920466982852973,0.2927302284459401,0.2967254408060453,0.299620466685409,0.3056086679413639,0.3097555403244231,0.3144838623632969,0.3165308571789527,0.3219769307157589,0.3240333302125269,0.3275657738800663,0.332476176070186,0.3350753768844221,0.3336049986416735,0.341964965727342,0.0,2.2428912612690626,51.71652348260412,149.0483697402177,218.30567834287535,fqhc3_100Compliance_baseline_low_initial_treat_cost,50 -100000,95763,47313,450.194751626411,5165,52.525505675469645,4099,42.03084698683208,1612,16.34242870419682,77.38153749659537,79.72237702972052,63.350937847410606,65.08251874148834,77.17350216433147,79.5192740704456,63.272671186991744,65.00859590018844,0.2080353322639041,203.10295927491492,0.0782666604188619,73.92284129990401,211.28646,148.6642734479676,220634.524816474,155241.65538879062,500.90678,335.76355671140107,522270.1565322724,349820.7926896621,459.0396,225.11190104777705,473337.96977955993,230509.7188270657,2673.19664,1255.326159064119,2744200.7142633377,1263657.494319433,946.85261,431.79210039905706,968799.1708697514,430951.4557746321,1568.1489,670.6512416155412,1592237.83716049,664503.6628362434,0.3796,100000,0,960393,10028.842037112454,0,0.0,0,0.0,43669,455.1862410325491,0,0.0,41636,428.9548155341833,1238510,0,44463,0,0,0,0,0,73,0.7518561448576172,0,0.0,0,0.0,0,0.0,0.05165,0.1360642781875658,0.3121006776379477,0.01612,0.3504983388704319,0.6495016611295681,23.47540057657628,4.140806621774855,0.3071480848987558,0.2671383264210783,0.2168821663820444,0.2088314222981215,11.515248073413396,6.292003004824163,17.244471608132514,11536.554274164951,46.86224500775803,13.328417344842656,14.068672075305397,10.0195547546082,9.445600833001771,0.5767260307392047,0.7990867579908676,0.6862589356632248,0.5883014623172104,0.1191588785046729,0.758563074352548,0.9230769230769232,0.8773006134969326,0.7573221757322176,0.1736842105263158,0.5017229496898691,0.7151607963246555,0.6195069667738478,0.5261538461538462,0.1036036036036036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218254370151,0.0048148073063433,0.0071425672659388,0.0094248600997328,0.0116416210830266,0.0138237120433237,0.0161148937905165,0.0180446830443258,0.0202640560812606,0.0225203102298074,0.0246756706904678,0.0269754264950421,0.0290767016245116,0.031083975124583,0.0330060235993068,0.0348401095211034,0.0369220580322033,0.0388199562562842,0.0409291116097398,0.0429373119410288,0.0571875815288285,0.0706912239967368,0.0839466566018745,0.0971457396275589,0.1090713653416515,0.1253117734094271,0.136112170927127,0.1467636301777664,0.1560659096730129,0.1658216586453431,0.1775368949073725,0.1891304347826087,0.1992674470420729,0.2084389753453401,0.2179604228311205,0.2277095095759991,0.2363987109579723,0.2442783273381295,0.2512303540244483,0.2576773455377574,0.2645344803663105,0.2709219692365234,0.2766823198211519,0.2814516804961864,0.2857766937274746,0.2903011432861169,0.29363503540254,0.2979391136409839,0.301828243386517,0.3047945205479452,0.3013735451442088,0.2990248592226343,0.2956080130549772,0.2934206918447751,0.2908769794743169,0.2875066860242989,0.2843752958626566,0.2846778542133041,0.284581153610979,0.2857016017331392,0.2864283183199985,0.2860686233980984,0.2876134822080768,0.2883735464143026,0.2896464162514373,0.2898539425126046,0.2919857069933639,0.2949141965678627,0.2999617218220413,0.3047071788413098,0.3094603748024385,0.3119096617592739,0.3136848713119899,0.3176157934700075,0.3185824114007125,0.3251179245283019,0.3257863546573469,0.324438202247191,0.3169052863436123,0.3111449220235831,0.0,2.96763818458089,51.22573182876977,153.82485077643844,210.4410062172023,fqhc3_100Compliance_baseline_low_initial_treat_cost,51 -100000,95864,47285,449.3866310606693,5189,52.99173829591922,4111,42.37252774764249,1585,16.179170491529668,77.37299817448195,79.67475355335452,63.35320242165369,65.05710769829194,77.175087341227,79.47885781617968,63.27876945528384,64.98568016899941,0.1979108332549515,195.89573717483688,0.074432966369855,71.42752929253504,209.48708,147.3768466967812,218525.2858215806,153735.34037467788,499.00718,334.6043216041495,519928.3985646332,348435.9359604411,452.32455,221.5136047327558,468588.4586497538,228541.1860994152,2686.74839,1251.355074492038,2768507.625385964,1271557.3855090349,969.02569,436.55987906760447,995182.2060418926,439884.6736224561,1543.39002,653.289958332774,1576593.298840023,652382.8843870328,0.37977,100000,0,952214,9932.967537344572,0,0.0,0,0.0,43481,453.01677376283067,0,0.0,40989,424.3615955937578,1249152,0,44835,0,0,0,0,0,88,0.9075356755403488,0,0.0,0,0.0,0,0.0,0.05189,0.13663533191142,0.3054538446714203,0.01585,0.3485967503692762,0.6514032496307238,23.622017499031365,4.147543525525355,0.3108732668450498,0.2634395524203357,0.2172220870834346,0.2084650936511797,11.493323913820674,6.176960352861487,16.930480454784938,11574.15985099608,47.02751575859829,13.074277420220914,14.653279649971402,9.881090416955416,9.418868271450563,0.576015567988324,0.8060941828254847,0.7065727699530516,0.555431131019037,0.1120186697782963,0.736753574432296,0.9219858156028368,0.8484848484848485,0.7136150234741784,0.1368421052631579,0.5106091718001369,0.7318181818181818,0.6502732240437158,0.5058823529411764,0.1049475262368815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0043580933848196,0.0069078847265755,0.0089149726864732,0.0111827257385682,0.0136807817589576,0.0160733032319876,0.0184204349467797,0.020486568780717,0.022806802136411,0.0247118487782388,0.0269732319656909,0.0290738304694565,0.0311782688804026,0.0331845406843087,0.0350902556900326,0.0370998779200893,0.0390338424553913,0.0409544973105439,0.0430403978401772,0.0579617967218584,0.0719316210737497,0.0850408548082966,0.097994329518009,0.1102814958349568,0.1259863313228195,0.1373486060631748,0.1472539388913695,0.1568240279215719,0.1660469551986112,0.1772739012526365,0.1889145895933764,0.2000847770797556,0.209446236265238,0.2180619890633424,0.2281904466569944,0.2369706840390879,0.2450079310616373,0.2525522936612369,0.259368237866801,0.2648048568950564,0.2708547768316646,0.2769336362775726,0.2814438669189681,0.2862135922330097,0.2903988474183895,0.2937290425904609,0.2966066138608826,0.2998033482547158,0.303277283217936,0.3016755265459929,0.2990551376033228,0.2967997295546102,0.2942961165048544,0.2922875972213976,0.2891321296989895,0.2863938053097345,0.2863646039725556,0.28677510005961,0.287057650180769,0.2879749197581548,0.2885705289672544,0.2897695275836896,0.2914332710945141,0.2923620562041878,0.2941039384758797,0.2957123411978221,0.3003783259856799,0.305018496544985,0.3073260937991816,0.3111061151079137,0.3166333718851856,0.3196230183497691,0.3211557370849406,0.3248878085265519,0.3315039701074264,0.3346988317402518,0.3356289244480454,0.3329639889196676,0.3332063975628332,0.0,1.9114751747744936,52.23784927768168,151.82933327956374,216.1561278863096,fqhc3_100Compliance_baseline_low_initial_treat_cost,52 -100000,95791,47753,454.9487947719514,5023,51.1634704721738,3996,41.12077335031475,1516,15.4294244762034,77.39816222968327,79.72748824787863,63.35848721039546,65.07942000580044,77.20407848630411,79.53818709666551,63.28455050165098,65.0101186430826,0.1940837433791529,189.3011512131153,0.0739367087444762,69.30136271783738,211.64594,148.8543604341452,220945.537680993,155394.93317132632,504.40331,338.1973413954121,525953.9205144533,352444.9597513462,458.61236,224.9866940730972,475197.085321168,232115.8094728427,2621.61664,1232.0191678405554,2697902.120240941,1247430.0561533482,937.99181,431.5873422286283,960558.7268114958,431984.60044905567,1478.32934,636.6690277188768,1504533.6409474793,630804.5819824331,0.3807,100000,0,962027,10042.978985499682,0,0.0,0,0.0,43836,456.9844766209769,0,0.0,41455,429.2156883214498,1236107,0,44376,0,0,0,0,0,98,1.0230606215615246,0,0.0,1,0.0104393940975665,0,0.0,0.05023,0.1319411610191752,0.3018116663348596,0.01516,0.3552027543993879,0.6447972456006121,23.43887405831328,4.240136627575288,0.3018018018018018,0.2675175175175175,0.2237237237237237,0.2069569569569569,11.14232315988568,5.840749568497753,16.306660294098748,11540.855253501262,45.65895459408296,12.9704107522236,13.679819113147124,9.9735263894627,9.035198339249533,0.5708208208208209,0.764265668849392,0.7089552238805971,0.5671140939597316,0.1233373639661426,0.7565359477124183,0.9096774193548388,0.872093023255814,0.7130434782608696,0.2108108108108108,0.4888167388167388,0.652317880794702,0.6438515081206496,0.516566265060241,0.0981308411214953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584108079641,0.0047936598021728,0.0070709735016028,0.0094239987001381,0.0115081583896711,0.0137500763327701,0.0159983695929077,0.0182018528343468,0.020341441984491,0.0223961530591364,0.024526426866375,0.0264953669023406,0.0285394228397599,0.0305993268765631,0.0327336460642301,0.0347744360902255,0.0368703640482914,0.0388950528313234,0.0409037058591233,0.0426017140655427,0.0575989982782908,0.0718723199531449,0.084682323338226,0.097649927479873,0.1098190942059542,0.1250171784978064,0.1357345127111903,0.1461621138436326,0.156007689842999,0.1655497056584351,0.1780321795506924,0.1888559624494387,0.2010842404884514,0.210534939864326,0.2194296389911533,0.2287930252370467,0.2370445524684475,0.2448362323892193,0.2519877051504531,0.2591142255198314,0.2646997618442045,0.2707763517778245,0.2766423271281317,0.2815656111849908,0.286289882158764,0.2897655240322481,0.2938912217556488,0.2976839323601529,0.3000219919535323,0.3031197690817308,0.300653682681444,0.2977829061237946,0.296029033210955,0.2934113611139138,0.2905073407530192,0.2870912640312347,0.2840002522624791,0.2839169294619369,0.2840266902703071,0.2851354233312007,0.2864542574995342,0.2868615293770298,0.2873608737337946,0.28898756660746,0.2880314397999285,0.2902224521469219,0.291226885079794,0.2953303527074019,0.2978178925891344,0.3035693342194769,0.3083742069027584,0.3127711851116106,0.3146213292117465,0.3159795365633464,0.3187691735614019,0.3206502532689362,0.3236002408187838,0.3288,0.3313384113166485,0.336838152459632,0.0,2.2291174464001235,53.2347430146539,142.73597049476618,203.43447712632292,fqhc3_100Compliance_baseline_low_initial_treat_cost,53 -100000,95871,47170,448.7697009523214,5157,52.518488385434594,4116,42.27555778076791,1564,15.906791417634114,77.3584022892406,79.63929344503251,63.35300198276878,65.04119129599245,77.16001636777446,79.44494779339922,63.2776842053518,64.96967460321791,0.1983859214661407,194.34565163328443,0.0753177774169842,71.5166927745372,211.25104,148.6493506834634,220349.2609861168,155051.4239795803,498.89624,334.00139089056074,519733.4126065233,347736.8243687462,449.22125,219.9678056646942,463600.5778598325,225786.51004724615,2657.54912,1240.3560188469455,2736616.244745544,1258387.060578221,951.18437,428.88723106577487,978548.0385100812,433785.25858090445,1515.37708,648.9904834564038,1545191.5177686682,647452.3381408801,0.37932,100000,0,960232,10015.875499368944,0,0.0,0,0.0,43414,452.1596728937844,0,0.0,40883,421.5247572258556,1241429,0,44518,0,0,0,0,0,70,0.7301478027766478,0,0.0,1,0.0104306828968092,0,0.0,0.05157,0.1359538120847833,0.3032770990886174,0.01564,0.351517408303854,0.648482591696146,23.669492988027823,4.114951536417256,0.3085519922254616,0.2687074829931973,0.2264334305150631,0.1963070942662779,11.387397911907808,6.230430416426714,16.77864531497422,11506.809255601716,47.10444311356576,13.581194361067396,14.25512663688538,10.341230254110158,8.926891861502828,0.5840621963070942,0.8155515370705244,0.6976377952755906,0.5525751072961373,0.125,0.7373653686826843,0.9006479481641468,0.834319526627219,0.7333333333333333,0.143646408839779,0.5204537641801307,0.7542768273716952,0.648068669527897,0.495049504950495,0.1196172248803827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780427057072,0.0047218084729103,0.0068870383706423,0.0092802241874727,0.0113437690587517,0.0136476047995603,0.0158625045845388,0.0179611402927227,0.0201341596642945,0.0222656130199654,0.024476132955255,0.0265424124992311,0.0286747185933777,0.0306334478573045,0.0327909397252651,0.0347629470554224,0.0369079267220423,0.038874494766297,0.0406052361023127,0.0423645935204644,0.0562632917726533,0.0700196414392578,0.0835052518038349,0.0965286236297198,0.1089530229618706,0.1244771200405628,0.1350761372908476,0.1451432824711574,0.1551532746990009,0.1642600632470386,0.1760911469831253,0.1873864128083081,0.1985497162488313,0.2080290374775878,0.2174448525368932,0.2271731190650109,0.2353866229464315,0.2444566879553836,0.2512280064888657,0.257561176794061,0.2638765143538178,0.2692213215426185,0.274649805217103,0.279566411261796,0.2832835022727825,0.2870953819594303,0.291199639319215,0.2954568605480289,0.299441108964301,0.3028653711507721,0.3005469634100339,0.2982463385089748,0.2968252626834559,0.2947908388122245,0.2914728221287475,0.2883693137420136,0.2850378487948564,0.2853532037815126,0.2859558333760311,0.2875191560640079,0.2882224258175495,0.2888315067413072,0.2898865606785468,0.2906114266622118,0.2919699291323501,0.2937432075764632,0.2957638869237952,0.2998036220816059,0.3046488969308929,0.3079831436335709,0.3141797122432359,0.3178306794892007,0.3207075442215138,0.3249923710711016,0.3255112618980303,0.3288422558721831,0.335800185013876,0.3385858585858586,0.3384237796563948,0.332955832389581,0.0,2.53999284604772,52.31545585856968,152.65336077167044,212.739329630292,fqhc3_100Compliance_baseline_low_initial_treat_cost,54 -100000,95724,47681,453.8464752831056,5186,52.8707534160712,4109,42.2464585683841,1601,16.255066649951946,77.38965647392791,79.75515052962791,63.34469261111818,65.0934036169835,77.18626823218227,79.55958984505492,63.2665958454925,65.0213838328497,0.2033882417456425,195.560684572996,0.0780967656256805,72.01978413380061,210.05908,147.74312032672333,219442.43867786555,154342.81927909754,504.0093,338.5464365929742,525842.892064686,352989.29602502653,461.12801,226.4071807433472,477703.41816054494,233374.07518637023,2656.62954,1249.9633533895003,2730863.628766036,1261416.1778402738,965.46958,441.52711366413695,985696.951652668,438415.1351713336,1551.9466,668.3269010784924,1576994.1080606745,658296.6083178687,0.38129,100000,0,954814,9974.65630353934,0,0.0,0,0.0,43876,457.6595211232293,0,0.0,41786,432.556098784004,1241095,0,44565,0,0,0,0,0,81,0.8357360745476579,0,0.0,0,0.0,0,0.0,0.05186,0.1360119594009808,0.3087157732356344,0.01601,0.3385724852071006,0.6614275147928994,23.4442784841064,4.110976873655325,0.3185689948892675,0.2652713555609637,0.212217084448771,0.2039425651009978,11.365944447587456,6.27058012902753,17.10682475278157,11653.66690873829,46.93191673188156,13.253522135231826,14.771460083017848,9.7099623369715,9.19697217666038,0.5870041372596739,0.8174311926605504,0.6913674560733384,0.5848623853211009,0.1264916467780429,0.7526358475263585,0.9264367816091954,0.8677248677248677,0.755656108597285,0.1507537688442211,0.5159944367176634,0.7450381679389313,0.6197636949516648,0.5268817204301075,0.1189358372456964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0047139685532678,0.0070226001887577,0.0091838185992644,0.0114844314240084,0.0138589059508777,0.0162518734515349,0.0183542430150774,0.0205454248098781,0.0227959014463677,0.0247852559503064,0.0270822425493034,0.029165038962107,0.0312107420145396,0.0331191402019535,0.0353654881615526,0.0374523691186216,0.0393302140285717,0.0412418280273975,0.0433550403750976,0.0582063061181875,0.0719392080720962,0.085493043460013,0.0985838436125665,0.1110196761090889,0.1266130738311825,0.1373229349037084,0.1476967942441142,0.1570256760798052,0.1670742433017997,0.1783241258251758,0.1891871422852629,0.2003305857021683,0.2102080097989895,0.2194748888595449,0.2287698236909719,0.2383703422816546,0.2469320327249842,0.2548817272582949,0.2619227424596091,0.267377452964372,0.2733712041517638,0.2787042180279626,0.2837839455196103,0.2884029656954944,0.2923355327949576,0.2960833093723043,0.2999110320284697,0.30382611169298,0.3058263940128597,0.3033223127167164,0.3008888461485623,0.2987615446251599,0.2974477289113194,0.2946306935971095,0.2924626182483979,0.2902559737721455,0.2895901010463768,0.2891141472014103,0.2894601633506369,0.2906113050583079,0.2919672259683236,0.2928550670486154,0.2935336613039046,0.2955535973707399,0.2962723773604402,0.2963882618510158,0.2996067661194682,0.305006633614971,0.3085379839443192,0.3124914861735458,0.3164382106046116,0.3185208398621122,0.3185085354896675,0.3224294771662225,0.329346185112066,0.3307899461400359,0.3304347826086956,0.329225823734262,0.3300751879699248,0.0,2.65960837103572,53.25388269095749,148.51658603096433,211.34266725405132,fqhc3_100Compliance_baseline_low_initial_treat_cost,55 -100000,95758,47500,452.4112867854384,5110,52.17318657448986,4066,41.83462478330792,1554,15.862904404853904,77.34687979821054,79.70812665019987,63.33382307926016,65.08217053065634,77.15129184658666,79.51518654470809,63.26043145287745,65.01208589874533,0.1955879516238781,192.94010549178608,0.0733916263827083,70.08463191101555,210.58752,148.1583521911427,219916.37252240023,154721.64434422474,500.40578,335.4835407165745,521976.806115416,349748.648380892,453.82577,222.1137195402341,469973.8716347459,228825.4881107616,2668.67757,1248.852245684176,2750503.456630256,1267781.0477288328,930.78005,424.1306736465773,956875.2271350696,427782.09970772057,1517.7938,643.1437856438582,1551408.5298356274,643039.9639820609,0.3822,100000,0,957216,9996.198751018192,0,0.0,0,0.0,43594,454.6147580358821,0,0.0,41171,426.0531757137785,1243967,0,44659,0,0,0,0,0,86,0.8876542952024896,0,0.0,0,0.0,0,0.0,0.0511,0.1336996336996337,0.3041095890410959,0.01554,0.3440617353660832,0.6559382646339168,23.608862446578247,4.194481863133802,0.3093949827840629,0.26463354648303,0.2169208066896212,0.2090506640432858,11.405201899578625,6.02879307794381,16.64227095794617,11630.758991872068,46.50559550934864,13.164302745727674,14.260986787658345,9.707507276276589,9.372798699686038,0.5764879488440728,0.8234200743494424,0.6796502384737679,0.5952380952380952,0.0917647058823529,0.7512315270935961,0.9363057324840764,0.8392370572207084,0.7192118226600985,0.1129943502824858,0.5017556179775281,0.7355371900826446,0.6139169472502806,0.5581737849779087,0.0861812778603269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394714442057,0.0045126353790613,0.0067614213197969,0.008841732979664,0.0108447953121184,0.0132278365002749,0.0154755836476705,0.0176806859942833,0.0199955020343072,0.0223512306999221,0.0245650368578078,0.0265727516351277,0.0286913062257049,0.0307185166108678,0.0327987285074411,0.0348987460847452,0.0368859249440808,0.0389024326987914,0.0407605305833922,0.0427058492746982,0.0575218929723297,0.0713942005941671,0.0850004193927193,0.0974722791528719,0.1102270092532091,0.1258083604547952,0.1371850721273596,0.1473649517855814,0.1583876438651321,0.1675341644175984,0.1787634986877769,0.1905369047747679,0.2008190043774372,0.2100866944729544,0.2193589490103034,0.2285711124878307,0.2372097171588793,0.2454815214459131,0.2531371258707935,0.2592469596683691,0.2668864595985887,0.272980338491409,0.2781859700185757,0.2830903056517415,0.2878480859066917,0.2914857768321629,0.2953309581848866,0.2986404066073697,0.3031020080944438,0.3075261737011918,0.3048567435359888,0.302121403643758,0.2994602799797605,0.2970904846310147,0.2958754333461732,0.2928043491539918,0.2892115855102202,0.2896512199115769,0.2909320113797039,0.2915221065741482,0.2918681729063579,0.2919787150177375,0.2933684122609204,0.2931161441481646,0.2951992318771003,0.2949422831383381,0.2953115659426684,0.2978087022227819,0.3039012934207298,0.3095606006577123,0.314879679752536,0.317451084082496,0.3211440757699303,0.3245243128964059,0.3222757598220904,0.3251023990637799,0.3268181818181818,0.3329283110571081,0.3332407664537628,0.3233463035019455,0.0,2.4439216932163665,52.86099360197654,142.23297957690562,216.890367429863,fqhc3_100Compliance_baseline_low_initial_treat_cost,56 -100000,95745,47924,456.754921928038,5201,53.109822967256775,4094,42.09097080787508,1586,16.073946420178597,77.36211040614715,79.72306309897448,63.32787542470121,65.07521633971479,77.1553329805344,79.5237797778672,63.24962859935434,65.00287999728987,0.2067774256127563,199.28332110727357,0.0782468253468735,72.3363424249186,212.33696,149.34003951028816,221773.41897749229,155976.85467678538,502.54413,336.6246122452852,524159.8516893832,350867.93629512633,460.3056,224.7056513183408,477235.8347694397,231901.2164611467,2654.86361,1225.4278427074016,2729239.5947569064,1236409.9208545887,944.23308,419.9769738862232,965539.0464254008,418242.04956841154,1536.07554,654.4320602363938,1558382.0982818946,643517.090405408,0.38193,100000,0,965168,10080.609953522377,0,0.0,0,0.0,43583,454.457151809494,0,0.0,41590,430.9363413233067,1232678,0,44319,0,0,0,0,0,96,0.9922189148258396,0,0.0,0,0.0,0,0.0,0.05201,0.1361767863221009,0.3049413574312632,0.01586,0.353189924618496,0.6468100753815039,23.8040164641576,4.173225790927841,0.3146067415730337,0.2696629213483146,0.2100635075720566,0.205666829506595,11.08546178225189,5.909687095469123,16.872552257097485,11580.04248527743,46.60502247773452,13.527713255719206,14.429658198592175,9.591084110545632,9.056566912877502,0.5701025891548608,0.7989130434782609,0.6777950310559007,0.5651162790697675,0.1104513064133016,0.7401709401709402,0.8991228070175439,0.8496932515337423,0.7136363636363636,0.1309523809523809,0.5020519835841313,0.7283950617283951,0.6195426195426196,0.5140625,0.1053412462908011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694345663252,0.0044922627618796,0.006963760024363,0.0090126705752055,0.0110167336351152,0.0132297225730231,0.0155507515346807,0.0176835742873478,0.0200509197247471,0.0222003768329646,0.0243457215522192,0.0261108942621772,0.0279832512011193,0.0301006790944033,0.0322527376123685,0.034561902300336,0.0366776775636578,0.0385345659414199,0.0407380457380457,0.0428011916418408,0.0585711601494812,0.0726892294816132,0.0862871764755233,0.0990744636095919,0.1110700912399135,0.126675057377656,0.1374693669704331,0.1475538993878094,0.1573525954736819,0.1671992622300384,0.1791441834415759,0.1899602783760674,0.2007506935755861,0.2096684206495936,0.2183186951066499,0.2285242595813989,0.2363766303376809,0.244196905766526,0.2517557892825941,0.2586917685859558,0.2653958774579586,0.2715555555555555,0.2768633668989835,0.2817602071396035,0.2865277676598431,0.2910540650456601,0.2942273512403935,0.2987863830653368,0.3023180565082898,0.3057061096385383,0.3032925909972001,0.3006175471412656,0.2980995118657419,0.2954699608907105,0.2929740791268758,0.2897134819435525,0.2871230798406979,0.2874078925822826,0.2874357490553834,0.2878007178138659,0.2884572365968235,0.2878317889115753,0.2889004581424406,0.2876550896073286,0.2890710905005498,0.2899515581690542,0.2916065518119324,0.2958989552471542,0.2991794729156526,0.3042743773080851,0.3076507650765076,0.3105018052430537,0.3148505004040529,0.3155848040682022,0.3204098587648851,0.3247863247863248,0.3255709134615384,0.3311688311688311,0.3374265883609183,0.347577260587562,0.0,2.4259974417880867,50.69253626902978,149.57870525602806,217.7212659762376,fqhc3_100Compliance_baseline_low_initial_treat_cost,57 -100000,95745,48023,457.1204762650791,5122,52.12804846206068,4027,41.3180844952739,1571,15.92772468536216,77.32840490063373,79.68807011347502,63.31625382636724,65.06433056090796,77.13043859609412,79.49716373620288,63.24157497611773,64.99544634816264,0.1979663045396051,190.90637727214244,0.074678850249505,68.88421274531709,210.22606,147.98464274684963,219568.0192177137,154560.60622481932,501.41573,336.67758283368124,522943.2033004334,350886.7149068476,464.60362,227.7377157439388,480649.7153898376,234349.9829337391,2640.75822,1224.6277095817345,2713952.04971539,1235067.866108026,934.6251,420.9433984611467,958086.0619353493,421609.17025228566,1534.36716,646.1795037636764,1558428.5550159276,638107.2656888339,0.38235,100000,0,955573,9980.364509896075,0,0.0,0,0.0,43571,454.290041255418,0,0.0,42062,434.6963287900151,1238725,0,44500,0,0,0,0,0,74,0.7728863126011802,0,0.0,1,0.0104444096297456,0,0.0,0.05122,0.1339610304694651,0.3067161265130808,0.01571,0.3414634146341463,0.6585365853658537,23.73700046500649,4.2291640934478645,0.3071765582319344,0.2662031288800596,0.2128135088154954,0.2138068040725105,11.360156117276183,6.014371384092223,16.642409085252332,11595.151628051151,45.93932840029539,13.034096719897084,13.990375646182915,9.518536658912195,9.39631937530319,0.5803327539111001,0.8003731343283582,0.6936135812449474,0.5904317386231038,0.1335656213704994,0.747457627118644,0.9345372460496614,0.8490028490028491,0.7319587628865979,0.1458333333333333,0.5110642781875658,0.7058823529411765,0.6320541760722348,0.5490196078431373,0.1300448430493273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0044828495507008,0.0068736547130731,0.0092989694912498,0.0116376065593782,0.0136998859191655,0.0161527165932452,0.0184179360476987,0.0204154654562554,0.0226728355886748,0.0249602788170775,0.0270550547261638,0.029226956262405,0.0310546211130223,0.0332703837858477,0.0353720682633368,0.0375760838060535,0.0394511682897234,0.0414748459372109,0.0434941101725808,0.0587983549403979,0.0734546595544399,0.0861705585672493,0.0987354545741225,0.1106533192834562,0.1262723957507531,0.1377880526421837,0.1481071531199778,0.1577800563957959,0.16753881787767,0.1804864387427562,0.19159272884657,0.2019409659134181,0.2112250924123449,0.219921625608172,0.2294647999645563,0.2380702615837871,0.245804774285039,0.2530537644174008,0.2604974622778777,0.2672660164069099,0.2729834654692579,0.2777975049120564,0.2825771477230477,0.2859694528487588,0.2904875764149083,0.2949853986238359,0.2978707146859559,0.3006105544248992,0.3032474301624375,0.3004929425708436,0.2977983140118542,0.2944622838149963,0.2924608614097107,0.2901200670832158,0.2872682210391041,0.2835726484913656,0.2837542874961022,0.2841735212805897,0.2837269030463009,0.2846011547732496,0.2862459387614453,0.2866958151155527,0.2873174207338796,0.2882848392036753,0.291066058280618,0.2919797011878774,0.2973580663293985,0.3008529155787641,0.3053486263844547,0.3086514569686017,0.3144805876180482,0.3185654008438818,0.3254522254747429,0.3267317526731753,0.3307270393278095,0.330662231629876,0.3361667678607569,0.3412348401323043,0.3395784543325527,0.0,2.7960935484339133,50.79895921345042,146.92327617698749,209.69844770279693,fqhc3_100Compliance_baseline_low_initial_treat_cost,58 -100000,95729,47488,453.1855550564615,5084,51.844268716898746,4064,41.84729810193358,1519,15.5125406094287,77.31464774318667,79.67998813189536,63.30648041847581,65.05590494601144,77.11155298557419,79.47949720928102,63.229507443038486,64.98197930359511,0.2030947576124759,200.49092261433543,0.0769729754373216,73.92564241632726,209.92334,147.7008497496966,219289.18091696352,154290.60133261248,499.87914,335.22532227829936,521613.3773464676,349613.4424033461,457.98511,224.32251735619337,474782.58416989626,231468.6302934985,2611.50481,1229.678750464295,2692405.927148513,1248928.9666290204,953.53207,435.67893405597545,983918.9691733957,442961.5414931468,1472.9566,640.3395990871976,1505886.2831534855,641854.6129656886,0.38126,100000,0,954197,9967.69004168016,0,0.0,0,0.0,43459,453.3735858517273,0,0.0,41546,430.2980288104963,1241668,0,44594,0,0,0,0,0,79,0.8148001128184772,0,0.0,1,0.0104461552925445,0,0.0,0.05084,0.1333473220374547,0.298780487804878,0.01519,0.3558584137800492,0.6441415862199508,23.527189114570035,4.124337558408885,0.3252952755905511,0.2731299212598425,0.203001968503937,0.1985728346456693,11.565563439455774,6.3936308750470445,16.480601690525393,11570.044416673323,46.39718018008589,13.45271673099147,14.809695383701111,9.147481728769463,8.98728633662385,0.5856299212598425,0.8063063063063063,0.6822995461422088,0.5975757575757575,0.1115241635687732,0.7325769854132901,0.9364035087719298,0.8181818181818182,0.7038834951456311,0.1313131313131313,0.5215547703180212,0.7155963302752294,0.6286919831223629,0.5621970920840065,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0046232928795206,0.0068819911082238,0.0089421806726958,0.0112314970242636,0.0133766657157993,0.0154762754919864,0.0176635151416144,0.0199231288205589,0.0218971377093485,0.0238688443911291,0.0256594551857974,0.0277626341072034,0.0298811964843226,0.0321538429777658,0.0341159321403095,0.036047511054501,0.0380420683428974,0.0403136080523234,0.0421202871222144,0.0565480230117877,0.070796089677838,0.0842416676283295,0.0978210575022083,0.1102089879584132,0.1254429482636428,0.1368499257057949,0.1471706148522757,0.1573552517662651,0.166371586458501,0.17869119375465,0.1906474820143885,0.201106850270176,0.2108971759832553,0.2192502756339581,0.2281438056536318,0.2362139549450795,0.2441233531853456,0.2518002798539299,0.2587185260062488,0.2654303806276529,0.2707156419211927,0.2763497972636521,0.2810342964839201,0.2845105358510755,0.2890692453807632,0.2937326358471204,0.297026050676707,0.3016361637457155,0.3052971405982342,0.3036713286713287,0.3000906742869704,0.2973812132962432,0.2953470940959409,0.2937354437703045,0.2921922059655399,0.2892207997471155,0.2896673825019262,0.2888407478165939,0.2897590683262995,0.2900170026718484,0.2908936941195005,0.2918055324112648,0.2921583005577406,0.2928561182039879,0.2936834744775076,0.2941710653272036,0.29753125,0.3015402843601896,0.3072248747188573,0.3132338940019041,0.3138747884940778,0.3168061410683949,0.3192395437262357,0.3239264954059628,0.3256582831503129,0.3294656488549618,0.338989981598855,0.3383977900552486,0.3476744186046511,0.0,2.398212611481822,53.61841520488208,139.4585555626129,216.08932336665168,fqhc3_100Compliance_baseline_low_initial_treat_cost,59 -100000,95799,47405,451.8314387415317,5093,51.98384116744433,4004,41.06514681781647,1559,15.84567688598002,77.3504688262772,79.68349757448665,63.33176974345843,65.06028954042083,77.15622715278899,79.49310040273487,63.2589749406213,64.9914143746298,0.1942416734882073,190.3971717517834,0.0727948028371301,68.87516579102737,210.34354,147.9822084564597,219567.3441267654,154471.34904163898,501.16042,336.0218398331621,522427.76020626526,350048.3160110252,451.55286,221.3848056318791,466341.0787168968,227224.6373781165,2611.98531,1206.5964368017108,2682356.245889832,1215450.1531394706,930.1043,418.3400713213381,952384.158498523,418249.731132737,1518.49782,637.806205499169,1545891.7525235128,633275.4026934681,0.38035,100000,0,956107,9980.333823943882,0,0.0,0,0.0,43608,454.430630799904,0,0.0,40848,421.3613920813369,1241509,0,44654,0,0,0,0,0,101,1.0542907546007787,0,0.0,1,0.0104385223227799,0,0.0,0.05093,0.133902984093598,0.3061064205772629,0.01559,0.346211552888222,0.653788447111778,23.88149070090557,4.234512196291674,0.3184315684315684,0.2597402597402597,0.2145354645354645,0.2072927072927073,11.290016130388752,5.869048800932485,16.584455439148385,11466.096949006598,45.56016151084771,12.731182380667248,14.357357627718784,9.456966977948095,9.01465452451359,0.5746753246753247,0.8028846153846154,0.6956862745098039,0.5669383003492433,0.1108433734939759,0.7413494809688581,0.9200913242009132,0.8475073313782991,0.69,0.1525423728813559,0.5070224719101124,0.717607973421927,0.6402569593147751,0.5295902883156297,0.0995405819295559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004441154700222,0.0066578706992794,0.0087885961614663,0.0109750391602416,0.0132305310545721,0.0154913058997501,0.0176149824360754,0.0198253650157457,0.02205024261409,0.0239433153544841,0.0261028505709356,0.0280234471410942,0.0302786875115862,0.0321363008188775,0.0340559194891612,0.0361168907797894,0.038044662026905,0.0399787999085486,0.0421815304858371,0.056852558886733,0.0710521913683506,0.0847008278319186,0.0968429899669065,0.1093600210692652,0.1247437496037365,0.1360913495690157,0.1461027910142954,0.1552872606161532,0.1646753747736356,0.1762250102218683,0.1874621637983222,0.1985487410111017,0.2074739591872424,0.2162649740944041,0.2257599929096871,0.2350578047582913,0.2436911445383256,0.2518986910667862,0.2580730120923415,0.263822205768363,0.2695756895483298,0.2753962621244381,0.2785502976297414,0.282290489899542,0.2856473605049683,0.2902179764870854,0.2938458012934766,0.2979445401442837,0.3009226870124213,0.2981295313047462,0.2963957636105717,0.294206329078254,0.291456560373351,0.2885945897793746,0.2857995044204472,0.2831635880566802,0.2840510314519038,0.2842040649297503,0.2855946249398514,0.286493147615669,0.2880121276553856,0.2892958451526781,0.2896014250723669,0.2903643026514335,0.2913283702108895,0.2929873217115689,0.2976777576627754,0.3020087579064433,0.306977476767995,0.3127533099162388,0.3159163565850846,0.319617105917454,0.3242412888722368,0.3237723939478325,0.3267303658820787,0.3293620871663399,0.3306114319856602,0.336742934051144,0.3425226586102719,0.0,2.7270839301692487,49.79589321444251,143.4418294018282,213.9915042331036,fqhc3_100Compliance_baseline_low_initial_treat_cost,60 -100000,95712,47648,454.22726512871947,5192,53.00275827482447,4071,41.90697091273821,1535,15.651120026746907,77.30949638025908,79.67032278776233,63.31695901961641,65.05969938140193,77.11635425350673,79.48119065131773,63.24319366150524,64.99051457421498,0.1931421267523489,189.1321364445986,0.0737653581111743,69.18480718694298,209.90596,147.74512135752352,219309.9715814109,154364.2608633437,498.79539,334.868150816955,520534.0709628887,349262.7160825759,461.50791,226.25178036721,477980.05474757607,233214.92607783023,2671.09901,1256.2594081749555,2748871.123788031,1270645.1940978726,946.18379,434.2460561302466,965489.8654296222,430616.77337245794,1499.48448,641.2928533276094,1528990.0325977933,636811.7934502977,0.3818,100000,0,954118,9968.635071882314,0,0.0,0,0.0,43350,452.2839351387496,0,0.0,41796,432.4954028752925,1241777,0,44591,0,0,0,0,0,79,0.8253928452022734,0,0.0,0,0.0,0,0.0,0.05192,0.1359874279727606,0.2956471494607088,0.01535,0.3521594684385382,0.6478405315614618,23.401712947201887,4.201435736626525,0.3166298206828789,0.2647998034880864,0.2041267501842299,0.2144436256448047,11.318843642947613,5.985569744730305,16.42754159402266,11615.052420807571,46.710784900314906,13.150030657316242,14.630592668783946,9.363882430419537,9.566279143795184,0.5787275853598625,0.7959183673469388,0.6997672614429791,0.592057761732852,0.1191294387170675,0.7617866004962779,0.9290465631929048,0.8717201166180758,0.7467248908296943,0.1720430107526881,0.5013976240391335,0.7001594896331739,0.6374207188160677,0.5332225913621262,0.1048034934497816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204737646975,0.0043893439299326,0.0068277737196656,0.0089684732266189,0.0111726732069333,0.0134355247488472,0.0156754828517555,0.0179652331907683,0.0201749724050529,0.0221060064885222,0.0242007400649863,0.026202846171222,0.0283190572653703,0.0303080234390286,0.0324247393335602,0.034343455216093,0.0365552002152741,0.0385915785106824,0.0405259328552125,0.0427010302834581,0.0574695838337423,0.0720566069335119,0.0848053201309054,0.097253186387919,0.1105498491974774,0.1263908279392478,0.137066395016925,0.1482758987789169,0.1580347413627331,0.1667667495925195,0.1790562378797673,0.1904272134768204,0.201033844814452,0.2106507321557554,0.2194756719260963,0.229496203513828,0.2375037698124588,0.2456183825185852,0.253055568176655,0.2600279636930411,0.2661997916425512,0.2720604578795287,0.2784433973433097,0.28366710636767,0.2885568513119533,0.2920560171601864,0.2955517750369018,0.2989656620144781,0.3016345879853897,0.304726811680336,0.3027220051206037,0.2993338655068953,0.2970417036629881,0.2951915993817977,0.2938161179127541,0.2914937600490008,0.2889888637191693,0.2889100428367444,0.2889386276653909,0.290122685143847,0.2911672160623314,0.2915463428141936,0.2927355349402132,0.2932844823734417,0.2947062077590975,0.2958043048767807,0.2965010257579211,0.2999028426364121,0.3030175880275534,0.3085718791893383,0.3116096060784225,0.3151566290475688,0.3191369606003752,0.3215528984410474,0.3238291109656913,0.3260206475832942,0.3279284740112138,0.3363083164300203,0.3350585671479161,0.3287671232876712,0.0,2.489872354692422,52.311186559223984,148.850357764082,212.7300802929548,fqhc3_100Compliance_baseline_low_initial_treat_cost,61 -100000,95750,47451,452.3759791122715,5147,52.81462140992167,4049,41.869451697127936,1583,16.2088772845953,77.40440741590693,79.76165461964996,63.3594678928421,65.09925943233972,77.21136917390463,79.57020702874523,63.286774559640655,65.02934935809546,0.1930382420023022,191.4475909047297,0.0726933332014425,69.91007424426243,209.21384,147.1736485510993,218500.0939947781,153706.16036668333,501.78906,336.24730768755404,523675.49869451695,350785.9401436595,453.62551,222.2047718697781,471476.10443864233,230190.7375305696,2640.26279,1228.675007479815,2730331.947780679,1256088.8328770911,960.8229,430.5300657177294,989583.5195822456,435752.88325611386,1541.13526,650.658890905759,1579384.731070496,653126.3569708056,0.38032,100000,0,950972,9931.822454308094,0,0.0,0,0.0,43817,457.20104438642295,0,0.0,41022,426.1723237597912,1250261,0,44757,0,0,0,0,0,76,0.783289817232376,0,0.0,0,0.0,0,0.0,0.05147,0.1353334034497265,0.307557800660579,0.01583,0.3407988055244494,0.6592011944755506,23.80876304252408,4.085381364498527,0.3114349222030131,0.2635218572487033,0.2136329958014324,0.211410224746851,11.270877814060617,6.120145830161728,16.73447141290755,11562.62981012843,45.94112580786238,12.88340065683836,14.182780302794216,9.609393955457792,9.265550892772008,0.575697703136577,0.7985004686035614,0.6986518636003172,0.584971098265896,0.1074766355140186,0.7487179487179487,0.9285714285714286,0.8668639053254438,0.7281553398058253,0.15625,0.5053838138242446,0.7093206951026856,0.6370530877573131,0.5402124430955993,0.0933734939759036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679639960715,0.0046719027109196,0.0068375027897822,0.0090285888386736,0.0111028641729281,0.0134161237785016,0.0156127388535031,0.0176627246104711,0.0201181134543076,0.0220619084164748,0.0243002531489889,0.0266644771278724,0.0290017477125526,0.0310337013843111,0.0330798518319799,0.0348670133038381,0.0368560037280588,0.0386821713467702,0.0405512138343864,0.0422759655043119,0.0571082551183404,0.0711482717845146,0.0843962406645967,0.0970994228282467,0.1095535224925165,0.1247488738976885,0.1358934917519758,0.1457951884181392,0.1555175729088772,0.1642272761390077,0.1766650514187261,0.1886894522163437,0.1997476917053648,0.2086636126083771,0.2177744043297472,0.2273547615620536,0.2361636377835045,0.2437968677976772,0.2516046358667301,0.258428895145231,0.2642895931784307,0.2704734335605565,0.2752706196215457,0.280369812943453,0.2853856399079791,0.2898855149371069,0.2940633113640902,0.2976839755460287,0.3019357336430507,0.3060564639083118,0.3037725225225225,0.3022146694441399,0.2996422307962118,0.2967497805850107,0.2942315652533854,0.2904494125177159,0.288702203448602,0.2886254531204075,0.288764693891418,0.2893144266775516,0.2895144002236928,0.2894690213218356,0.2901006816334188,0.2904659275223854,0.292039836641112,0.2941953874060637,0.2955212922173275,0.2996073787859902,0.3042707101620644,0.3099638251022334,0.3118018018018018,0.3164064553435315,0.3194228496797064,0.3229659679963939,0.325609305760709,0.3266821345707656,0.3350437669785692,0.3340637450199203,0.3393590797041906,0.338006230529595,0.0,1.6588055066694278,51.28141731256986,148.89166861098067,210.24039503968064,fqhc3_100Compliance_baseline_low_initial_treat_cost,62 -100000,95735,47583,452.1961665012796,5186,52.74977803311224,4089,41.97002141327623,1601,16.232307933357706,77.33232137485312,79.69932708885334,63.31916690730778,65.07165568489428,77.13396513990304,79.50747701745337,63.243434841223824,65.00151555506665,0.1983562349500829,191.85007139996912,0.0757320660839582,70.14012982763518,210.93732,148.46054942210867,220334.59027523897,155074.47581564597,502.45447,336.9492089527947,524123.5180446023,351245.4488739328,460.28396,225.91066313064053,476589.7320729096,232621.80384835665,2671.08581,1250.1796309814788,2742957.7375045703,1258784.1363537076,937.96226,430.0421384385128,957339.2071865044,426843.9337196954,1552.6539,660.2938502201281,1575568.1621141694,650179.3804867439,0.38054,100000,0,958806,10015.208648874495,0,0.0,0,0.0,43714,455.8416462108947,0,0.0,41649,430.814226771818,1237692,0,44363,0,0,0,0,0,88,0.919204052854233,0,0.0,0,0.0,0,0.0,0.05186,0.1362800231250328,0.3087157732356344,0.01601,0.3509713228492137,0.6490286771507863,23.652132679024497,4.177557003313777,0.3105893861579848,0.2609439960870628,0.2196135974565908,0.2088530202983614,11.32308796120434,6.210100659159345,17.029752988486923,11503.761778901537,46.72057763397646,12.950993784724163,14.467667287313732,9.978142712934238,9.323773849004326,0.5739789679628271,0.7825679475164011,0.7070866141732284,0.5824053452115813,0.1065573770491803,0.7315875613747954,0.890625,0.8611111111111112,0.7535545023696683,0.1280788177339901,0.5068015347052668,0.7043618739903069,0.6461538461538462,0.529839883551674,0.0998463901689708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046658349308746,0.0070973113475753,0.0093401902593706,0.0116993570440302,0.0140381617954177,0.0162152239536591,0.0183973292223504,0.0203875057512397,0.0225839475839475,0.0247062924158858,0.0268877367691596,0.0288334978611385,0.0306816075143675,0.0332421975754449,0.0354614327204324,0.037638361100469,0.0397344122834318,0.0418909650198491,0.0438993907201999,0.0577206151019428,0.0718336681734471,0.0856321718517275,0.0980567414666975,0.1100332155849633,0.1253649248995134,0.1355036555214821,0.1463713196942924,0.1558591371778302,0.1645720290818624,0.176436373036903,0.1877232094543408,0.1981700683232516,0.2076082557668959,0.2160645310385051,0.2253549201568071,0.2343443135154436,0.242351617440225,0.2497787259151669,0.2562845723055075,0.2626591066882666,0.2682550264921576,0.2736253075903842,0.2783894193331975,0.2838774692519699,0.288420793298842,0.2916942856785522,0.2953407386695813,0.2984344675895976,0.301578725423014,0.2994098113816329,0.2978238171127109,0.2956510735225883,0.293259318001586,0.2912261451089132,0.2884015892420538,0.2863919547136396,0.2868904784508863,0.2869875829222656,0.2878604485582057,0.2876914732451793,0.2880593481177492,0.28830071918381,0.2896134618818068,0.2907895052689695,0.2920098739768741,0.2922810798548094,0.2970337388686818,0.3028218202137319,0.3063391442155309,0.3099529070820503,0.3126491646778043,0.312842131756119,0.3165554881746513,0.3196020085549563,0.3207238762405137,0.3196401799100449,0.3279143536875495,0.3330636461704422,0.3329554043839758,0.0,2.807780960456201,52.63664863712163,148.1292999287834,210.91204979617703,fqhc3_100Compliance_baseline_low_initial_treat_cost,63 -100000,95719,47849,456.47154692380826,5230,53.30185229682717,4155,42.76058044902266,1611,16.43351894608176,77.41699606751023,79.77068769958741,63.36600846061516,65.10079874599867,77.21292456914264,79.56982805410951,63.28944207401761,65.02800245960077,0.2040714983675826,200.85964547790525,0.0765663865975554,72.79628639790303,211.5597,148.8209088717836,221021.6362477669,155476.87384091306,505.75659,339.1905249750441,527719.1884578819,353704.3928361611,467.37513,229.407910867913,483954.63805514056,236378.5561767988,2726.45711,1284.6498837664503,2810365.570054012,1304223.4513394916,957.7249,435.3442492815781,988477.230225974,442765.7922482813,1566.54196,669.193270886168,1600156.4579655032,667984.0671938882,0.38291,100000,0,961635,10046.438011262131,0,0.0,0,0.0,43921,458.1848953708251,0,0.0,42357,438.2306543110564,1234532,0,44339,0,0,0,0,0,87,0.898463210020999,0,0.0,1,0.0104472466281511,0,0.0,0.0523,0.1365856206419263,0.3080305927342256,0.01611,0.3561217008797654,0.6438782991202346,23.36767946645943,4.175745576816765,0.317208182912154,0.257280385078219,0.2223826714801444,0.2031287605294825,11.67032968992074,6.339872811188196,17.215924873982285,11530.786410673589,47.73248245295101,13.14974485783456,14.924129844538772,10.451916467774003,9.20669128280367,0.5809867629362214,0.8353601496725912,0.6904400606980273,0.5562770562770563,0.1149289099526066,0.7624309392265194,0.9471458773784356,0.848404255319149,0.7203389830508474,0.1593406593406593,0.5013850415512465,0.7466442953020134,0.6273885350318471,0.5,0.1027190332326284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026215105568938,0.0047412090082971,0.0069376825705939,0.0090882320088546,0.0111029770619814,0.013080478022761,0.0153300444408203,0.0175137783221065,0.0198458928607926,0.0221285563751317,0.0240298400401692,0.0262836499481716,0.0283414543884537,0.0302253254242873,0.0322996616324172,0.0343897574736755,0.0365354950254164,0.0385608645598896,0.0406165230676491,0.0425152882101074,0.0568561523682232,0.0702319789890027,0.0842137289255851,0.0969774094484876,0.1092993576830181,0.1247474907721758,0.1359484889308483,0.145963724613616,0.1565818430442493,0.1655746319074326,0.1773377266658052,0.1891944522578272,0.2000760786870992,0.2097364368180179,0.2186198789290383,0.2284529011560374,0.237203133880908,0.2449995505213952,0.252128371101765,0.2591071346849114,0.2656703306864547,0.271153576601411,0.2775480303424156,0.281945125818147,0.2858546288098386,0.2902348365498227,0.2946158650843223,0.2973518765479139,0.3011836460433142,0.3041725936462778,0.3011891165602956,0.2984515278807347,0.2960552212787494,0.2927424126535148,0.2911822280223039,0.2884392180818571,0.2857300483914188,0.2850565705049713,0.2851344925961147,0.2852456690958739,0.2859030919007465,0.2863535553767345,0.2873266419557703,0.2881874404273712,0.2884197972570065,0.2884630304911164,0.2901166567804988,0.2950141519703897,0.2991559862457018,0.3024131842260153,0.306175611947002,0.3081242783667471,0.3122902945196967,0.3136514648142555,0.3169555946973209,0.3191390343222804,0.3240030097817908,0.3241529621557361,0.3286096256684492,0.3270159791898922,0.0,2.5137211548242666,55.01813911278475,151.07287549313796,212.01113078728108,fqhc3_100Compliance_baseline_low_initial_treat_cost,64 -100000,95683,47456,452.1179310849367,5132,52.21408191632787,4123,42.37952405338461,1658,16.84729784810259,77.3508434030137,79.74209410946385,63.31502979323547,65.0830310223198,77.1435978053935,79.54152952954287,63.23525912462325,65.00940983653396,0.2072455976202007,200.5645799209788,0.0797706686122197,73.62118578583932,210.75912,148.24730323278405,220268.0936007441,154935.8854057503,498.63545,333.9735626990577,520438.7195217541,348347.6612345534,454.23487,222.06331279876727,470658.0479290992,228950.7145162245,2693.3169,1259.4897021655922,2768748.5028688484,1270230.2730533043,976.08328,442.7574084052515,998327.2054596952,440938.8798483019,1616.0797,690.5843299146034,1643773.418475591,680456.5994134659,0.38044,100000,0,957996,10012.186072761097,0,0.0,0,0.0,43377,452.6195875965427,0,0.0,41220,426.6902166529059,1241745,0,44525,0,0,0,0,0,72,0.7524847674090486,0,0.0,0,0.0,0,0.0,0.05132,0.1348964357060246,0.3230709275136399,0.01658,0.3566772210840007,0.6433227789159992,23.66372445488908,4.225169905071172,0.3165170991996119,0.2534562211981567,0.218287654620422,0.2117390249818093,11.14800308707971,5.812908248380071,17.519537484529096,11528.423752926958,46.99085932845174,12.72569729984275,14.762921048880411,10.00901208450268,9.493228895225904,0.5782197429056513,0.8181818181818182,0.7003831417624521,0.5611111111111111,0.1260022909507445,0.7521222410865874,0.9241379310344828,0.8863636363636364,0.6966824644549763,0.1388888888888889,0.5086587436332768,0.7426229508196721,0.6316894018887723,0.5195936139332366,0.1226551226551226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0047256391274807,0.0071059497101787,0.0095028051061061,0.0116380801237054,0.0138037122308021,0.0159748645808893,0.0179953837040668,0.0202288788210388,0.0223369281346975,0.0246031094884522,0.0266639276910435,0.0290783789343756,0.0309814749943332,0.0330973414795244,0.0349515165298654,0.0370167005097177,0.0388503695092584,0.0409411471010422,0.0429140260173449,0.0572401474873873,0.071392670157068,0.0850286578068904,0.0974360053447241,0.1096880373890934,0.1255184526832571,0.1367380735016241,0.1478108991767575,0.1576781228285851,0.1664931580359538,0.1778575587036677,0.1896800043315826,0.2004549857952999,0.2095179707257261,0.2179180755801786,0.2273836461244953,0.2361514406968952,0.2440647806108658,0.2508009725283465,0.2578629332782957,0.2646214068978296,0.2697100295123436,0.2761129477563305,0.280468346989455,0.2845231004849826,0.2881944872284584,0.2922772970539689,0.2958254944831444,0.2989346848011584,0.302471821237888,0.3002812655604451,0.2978395910065416,0.294890182513569,0.2920776374228528,0.2895216097365966,0.2869615654669231,0.2840215213240979,0.2848475928833072,0.2849019340779079,0.2847032044670484,0.2848238280083607,0.2853240040095127,0.2857559046925398,0.2871614866816253,0.2897892875913804,0.2916407706650093,0.2921797942792729,0.2972981376115412,0.3031407253166753,0.3064743138634764,0.3111340021497671,0.3148245154531168,0.3180240485930333,0.3230051891404076,0.3260849363442059,0.3316889828517735,0.3304164152082076,0.3382701421800947,0.3420911528150134,0.3334600760456274,0.0,2.8079903555881875,50.518192110623865,154.70186792803037,214.966110899447,fqhc3_100Compliance_baseline_low_initial_treat_cost,65 -100000,95709,47771,455.0460249297349,5200,52.84769457417798,4081,41.90828448735228,1564,15.839680698784855,77.26691653433518,79.62618408401468,63.2951211478972,65.03876068694571,77.06760707803697,79.4339095784995,63.21898807023428,64.96821973699865,0.1993094562982094,192.27450551518643,0.0761330776629236,70.54094994705906,209.82544,147.65024808950955,219232.71583654615,154269.97261439316,501.50197,336.813027112504,523269.1596401593,351196.5824661254,465.81402,228.8917886837866,482154.56226687145,235591.5673589336,2620.99119,1238.108172469441,2693156.965384656,1248274.0206975737,910.37461,420.1341347978141,932569.3090513954,420358.3463837819,1519.864,654.2231153786395,1541461.2418894777,644952.0506364541,0.38082,100000,0,953752,9965.123447115737,0,0.0,0,0.0,43594,454.7221264457888,0,0.0,42120,435.5180808492409,1238903,0,44480,0,0,0,0,0,91,0.950798775454764,0,0.0,0,0.0,0,0.0,0.052,0.136547450238958,0.3007692307692308,0.01564,0.3402688271036641,0.6597311728963359,23.63515538799344,4.162898826531908,0.3170791472678265,0.2661112472433227,0.2144082332761578,0.2024013722126929,11.6100701494715,6.3268329029848,16.82877092041446,11576.57767945132,46.78923878748973,13.22908220088478,14.63804832332155,9.751828624784036,9.170279638499354,0.5834354324920362,0.8047882136279927,0.705564142194745,0.5897142857142857,0.0944309927360774,0.7473598700243704,0.9186813186813186,0.8497267759562842,0.7603686635944701,0.1347150259067357,0.5126315789473684,0.722662440570523,0.6487068965517241,0.5334346504559271,0.0821484992101105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409512620021,0.0048058887345506,0.0068798960912448,0.0092136406578559,0.0114822122327766,0.0136947247309419,0.0159845048167592,0.0179969579730709,0.0198726270917882,0.0221912872584343,0.0243457402642666,0.0267237485113547,0.0287415420685683,0.0310333817425249,0.0331476323119777,0.0354547615848175,0.0374861497996251,0.0395688304682069,0.04130805371918,0.0432608152038009,0.0579113891006296,0.0722345503265784,0.0851322845718723,0.0975586656845206,0.1102751867640231,0.1259379994284686,0.1369959013782412,0.1474529688731704,0.1569873152366895,0.1653192471629035,0.1769545106580266,0.1883486308124099,0.199840998442656,0.2092587725062426,0.2191160427984264,0.2294168571999378,0.2380025940337224,0.2457243290745623,0.2535640044074381,0.260056170115206,0.2655602620188413,0.2722442004728575,0.2771594999052851,0.2819599803378532,0.2860059301025616,0.290001602900016,0.2940948038282307,0.2971517335336584,0.3009749014727235,0.3047945205479452,0.3024379707875482,0.2991405829689202,0.2972648583007385,0.2950485310497461,0.2922802320392682,0.2893175301675892,0.2858638079228646,0.2853218855883417,0.2857069523108776,0.2863754132046815,0.2872322482712093,0.288270299124177,0.2884538721386459,0.2895902299364767,0.2904491407115005,0.2906940391829929,0.2919957797484958,0.2958181131124827,0.2993565266581813,0.3036565341022868,0.3088006586771567,0.3125200128081972,0.317285273174113,0.3214204243023344,0.3265421087221857,0.3277895730125029,0.3310030395136778,0.3299879566439181,0.3336070060207991,0.3351330505206324,0.0,2.758563961190077,52.93186308060294,146.44839729647146,213.1814417274155,fqhc3_100Compliance_baseline_low_initial_treat_cost,66 -100000,95702,47129,447.3678710998725,5201,53.16503312365468,4123,42.5069486531107,1620,16.520030929343168,77.288290147924,79.65719521629505,63.294707477804174,65.04411718836472,77.07854503018135,79.45166783150215,63.216033059076295,64.96971322095804,0.2097451177426563,205.5273847929016,0.0786744187278785,74.4039674066812,208.6293,146.767983422177,217998.43263463667,153358.91624226977,500.03556,335.2448134211137,521870.284842532,349679.0318082315,450.38547,220.3514184640921,466899.3124490606,227452.2387380612,2707.05822,1258.1865897965931,2788837.1507387515,1274927.04342291,1000.30044,448.9084360581165,1027386.8153225638,451252.6442323048,1582.73508,670.1738837948853,1615451.4430210446,667428.9059411405,0.37965,100000,0,948315,9909.01966521076,0,0.0,0,0.0,43491,453.7940690894652,0,0.0,40920,423.9305343670979,1246720,0,44770,0,0,0,0,0,72,0.7523353743913398,0,0.0,0,0.0,0,0.0,0.05201,0.1369946002897405,0.3114785618150356,0.0162,0.3469237832874196,0.6530762167125803,23.71931280026332,4.196381036081373,0.3080281348532622,0.2636429784137764,0.2068881882124666,0.2214406985204947,11.377974916352107,6.063927265157384,17.39598439141475,11574.208786342731,47.166333415622304,13.24713205473825,14.269146414063655,9.64789914796462,10.002155798855776,0.5765219500363813,0.7865685372585096,0.6976377952755906,0.5978898007033998,0.1380065717415115,0.7519247219846023,0.9061784897025172,0.8769230769230769,0.7685185185185185,0.1675392670157068,0.5071090047393365,0.7061538461538461,0.635978835978836,0.5400313971742543,0.1301939058171745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787348464132,0.0046937885868959,0.0071437269148029,0.0093866189886019,0.0114412985111056,0.013552729383254,0.015782712424298,0.0181595467769101,0.0205153890973024,0.0229954459397226,0.0251193965605591,0.0272320420438915,0.0296627596134073,0.0317819956951152,0.0339254033089903,0.0360582885489871,0.0381859598260509,0.0403071814030718,0.0421355911048241,0.0441067650522673,0.0590305701484119,0.0718660677827684,0.0850728881332451,0.0976194986424196,0.1098079785493354,0.1256273426084747,0.1372015971455271,0.1472622079208976,0.1568912604125453,0.1656089939760976,0.1778058143547274,0.1885149115490028,0.198275017151818,0.2078849122499698,0.2173482086807123,0.2264381205968824,0.2352730728380569,0.2430074069063482,0.2504492822857663,0.2570841370441811,0.2632689743143735,0.2688479619230724,0.2745907473309608,0.2794960183528112,0.2845332456685052,0.2897304775315595,0.2943265972135057,0.2982440479985718,0.3026344832958957,0.3045681249917316,0.3015614044549916,0.2992458189138138,0.2976484711531671,0.2962383580295195,0.2937083774079647,0.2905798101547285,0.2873528619635304,0.2875227821289591,0.2882981451406103,0.2892452762796014,0.2891446566817253,0.2900760343635825,0.2917312445021572,0.2928698752228164,0.2943019057411348,0.2967084152779215,0.2955060636971551,0.2998904366880576,0.3029783961406698,0.3073606771348336,0.312326523183328,0.3176345796870856,0.3227562898986106,0.3252802181157225,0.3288559518295507,0.3308419946280509,0.3337839867808322,0.3339307048984468,0.337620578778135,0.3380703066566941,0.0,2.165673505707475,51.05118445361143,154.665854424616,218.2221546586124,fqhc3_100Compliance_baseline_low_initial_treat_cost,67 -100000,95826,47426,451.27627157556407,5121,52.07354997599817,4085,42.01364974015403,1552,15.75772754784714,77.36488025655099,79.67925753043573,63.35773544642036,65.07094740191957,77.16454502898199,79.48202698895577,63.28186493157176,64.99869451444061,0.2003352275689991,197.23054147996777,0.0758705148485958,72.2528874789532,211.5608,148.8267020928871,220775.9898148728,155309.31280955806,501.76458,336.6049515150816,523028.0404065702,350674.3697066367,460.67745,226.70085748858497,476504.35163734265,233384.7113336722,2650.35711,1252.91433592793,2728135.756475278,1269823.0082941265,942.35048,432.300031059187,967566.5685722036,435299.4253781098,1517.18662,650.7669255014149,1543121.8041032704,645848.7812397671,0.38032,100000,0,961640,10035.2722643124,0,0.0,0,0.0,43602,454.38607476050345,0,0.0,41807,432.1374157326822,1238932,0,44486,0,0,0,0,0,89,0.9183311418612904,0,0.0,0,0.0,0,0.0,0.05121,0.1346497686159024,0.3030658074594806,0.01552,0.3642830400599026,0.6357169599400974,23.51678901032569,4.136175730944972,0.3194614443084455,0.2619339045287637,0.2090575275397797,0.209547123623011,11.373064666457346,6.204404197543577,16.77374155481702,11509.453463472615,46.94037019670941,13.24229263322116,14.762918126586715,9.571846752749796,9.363312684151742,0.5818849449204406,0.814018691588785,0.6942528735632184,0.5936768149882904,0.1086448598130841,0.7647058823529411,0.9316239316239316,0.8583333333333333,0.771689497716895,0.1242937853107344,0.5036700454386578,0.7225913621262459,0.6317460317460317,0.5322834645669291,0.1045655375552282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0044304310799302,0.0066969721568309,0.0088672652663226,0.0111347250892303,0.013358856351566,0.0156883932394136,0.0178246932233497,0.0200053156689564,0.0220072675162495,0.0240027876849915,0.026045996120809,0.0281095192090279,0.0302490736928777,0.0321396911785927,0.0343346753380819,0.0365321362818311,0.0387086078992084,0.0406499844252933,0.0427599409059697,0.0572099087353324,0.0716503088645699,0.0847693774290533,0.0973327732857292,0.1102089388769535,0.1256018753167765,0.1363467833345692,0.146804009737326,0.1574214332956412,0.1663578428747389,0.179319470292716,0.1903444100923183,0.200280294635291,0.2100119033318408,0.2182847096313389,0.2284709628908841,0.2365469228627123,0.2444077617571755,0.251123818150937,0.2576647842886211,0.2635820929990878,0.2699365020076571,0.2760759388991931,0.2795441772590847,0.2845285766290498,0.2879787338781136,0.2911272181954511,0.2951234073904704,0.2983830315250688,0.3016163424329375,0.2988084203173068,0.2961421724142666,0.2937923075840522,0.2911980828364781,0.2895061269959153,0.2865406687581299,0.283701639967074,0.2844755382568852,0.2840405698941283,0.2848313803943984,0.2855212029058963,0.2859915628527856,0.2870349020018866,0.2887164926557714,0.2896949948486954,0.2908051948051948,0.2917303879920702,0.2961525216792411,0.3007481994266135,0.305016245344322,0.3101847638117775,0.3130245405290555,0.3185203888397929,0.322302706824247,0.3262037124281541,0.3307737743650324,0.3335881363705855,0.3440357650883967,0.3473366282262493,0.3547892720306513,0.0,2.3743694447230594,52.89891024837111,153.15660391879408,207.8723960626793,fqhc3_100Compliance_baseline_low_initial_treat_cost,68 -100000,95630,47269,451.0613824113772,5127,52.38941754679494,4046,41.65010979818049,1590,16.197845864268537,77.2563444549925,79.66676954088814,63.27473565930678,65.0558296382672,77.06139745045334,79.47645694810463,63.20099249003375,64.98670457513975,0.1949470045391592,190.31259278351345,0.0737431692730297,69.12506312744426,209.89166,147.67064333898247,219483.0701662658,154418.74238103363,499.16809,334.309370490756,521321.7818676147,348929.52053827874,449.56688,220.04211945788705,466344.1702394646,227215.8036451953,2669.25496,1229.1511504179916,2750588.3091080203,1244676.1376325334,944.16341,423.7619054349462,973036.202028652,428874.9293736583,1552.50902,653.1656928790198,1583670.5427167208,648268.8895370084,0.37974,100000,0,954053,9976.50318937572,0,0.0,0,0.0,43374,452.870438147025,0,0.0,40758,422.33608700198687,1242687,0,44648,0,0,0,0,0,83,0.8679284743281398,0,0.0,2,0.0209139391404371,0,0.0,0.05127,0.1350134302417443,0.310122878876536,0.0159,0.3562768140272337,0.6437231859727662,23.88271477103555,4.164104503959636,0.3096885813148789,0.263964409293129,0.2093425605536332,0.2170044488383588,10.99285140643751,5.754262231174498,16.863776641182987,11507.132487864208,45.98903500469566,12.938187287113172,14.05880762291864,9.514573062301045,9.477467032362808,0.5687098368759268,0.800561797752809,0.6927374301675978,0.5619834710743802,0.1161731207289293,0.7457777777777778,0.9214285714285714,0.8459214501510574,0.6941747572815534,0.1726190476190476,0.500513522766176,0.7222222222222222,0.6377440347071583,0.5195007800312013,0.1028169014084507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0045305737713225,0.0066674108728523,0.0088689768675139,0.0109980669447553,0.0132330918981693,0.0153113269136608,0.0173280477338673,0.0195671296769838,0.0216977072960845,0.0237953538006895,0.0259485345500883,0.0280119830754501,0.0302702256863897,0.0324666604687677,0.0345919433780693,0.0365421297064189,0.0386537163039526,0.0406564132448125,0.0424641959340349,0.0569705584180767,0.0713036008004106,0.0851995338435856,0.0979535549613659,0.1104298363181612,0.125922006455368,0.1365054767767682,0.147196336333138,0.1580832050624251,0.1667328475300228,0.1784532114246282,0.1893446885970615,0.1994770957023803,0.2090329227127263,0.2183546746958718,0.2277611277611277,0.2361151497528351,0.2442102890629402,0.2515398777189354,0.2586042777682206,0.264602580301151,0.2694660603787737,0.2741101704963126,0.2787550094790141,0.2827380590203833,0.2875537010517999,0.2915324753443025,0.2954380422181739,0.2988033345866124,0.3014355330753688,0.2997573469937988,0.2970864687560297,0.2956698527439326,0.2924815297696653,0.2910123074172304,0.2874633239627018,0.2842185417856463,0.2851904229428402,0.2860719982163376,0.2864895846393581,0.2866459919180528,0.2876335030812214,0.2893980403264723,0.2904449502387646,0.2913676834097291,0.2921584940980708,0.2937224199288256,0.297925753914708,0.3021098517872711,0.3047468977742761,0.3090826931766832,0.3114425762926263,0.3133103664265581,0.3135586840322216,0.3139630955659598,0.3139602464256654,0.3114754098360656,0.3083778966131907,0.3100133511348464,0.3180778032036613,0.0,2.5186793467952207,48.634162163018935,148.72879015487987,218.85425270955955,fqhc3_100Compliance_baseline_low_initial_treat_cost,69 -100000,95697,47630,454.4447579338955,5117,52.29004044013919,4065,41.94488855450014,1584,16.196954972465175,77.32722884548278,79.7019388733306,63.32110870231941,65.0750775945265,77.1255275128348,79.50317603755003,63.24576615089502,65.00312718876405,0.2017013326479855,198.7628357805704,0.0753425514243915,71.95040576245049,209.47036,147.3527278051538,218888.9306874824,153978.20936611787,500.00896,335.45010041912155,521966.7701181856,350009.3804835695,455.90351,223.38758746210215,472985.5481363053,230820.52413120237,2660.84031,1241.5415211368947,2746495.135688684,1263411.754580493,953.36123,426.8432001151557,980354.232630072,430185.9426255853,1549.77842,659.3278654762274,1585246.914741319,659520.8199015729,0.38105,100000,0,952138,9949.496849431016,0,0.0,0,0.0,43467,453.65058465782624,0,0.0,41268,427.76680564699,1246011,0,44692,0,0,0,0,0,79,0.8255222211772574,0,0.0,0,0.0,0,0.0,0.05117,0.1342868389975069,0.3095563806918116,0.01584,0.3539473684210526,0.6460526315789473,23.604385686994284,4.205835277971585,0.3198031980319803,0.259040590405904,0.2083640836408364,0.2127921279212792,11.312870633092947,5.995649427863523,16.959693685671134,11568.212127403072,46.38658833619072,12.741080016212631,14.762106332809037,9.35805009158365,9.525351895585388,0.5781057810578106,0.8024691358024691,0.7007692307692308,0.5879574970484062,0.1109826589595375,0.7504288164665524,0.9290780141843972,0.8708791208791209,0.7566137566137566,0.1157894736842105,0.5087961365988272,0.7174603174603175,0.6346153846153846,0.5395136778115501,0.1096296296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024601615809828,0.0046315533439409,0.0067971999594197,0.0090394791634926,0.0112364120763465,0.0135419954588496,0.0156221320335284,0.0176483204477444,0.0196449389483157,0.0218430942847487,0.0239565172802789,0.0259128023417038,0.0281623500853716,0.0302730551262235,0.0323645970937912,0.0344884642033526,0.0366732968672302,0.0386927317463118,0.0404618265030164,0.0424644826400108,0.0569348554955557,0.0708828700602813,0.0842415532921443,0.0976443729023977,0.1096004556577504,0.1253385240352065,0.1365546664402606,0.1472107163012575,0.1576619408327012,0.1670599845533339,0.1786279768636701,0.1898880782802589,0.201002784303489,0.2104595463592817,0.2188817114370921,0.2284267895518089,0.2363522742489845,0.2446036691675196,0.2521303997549047,0.2594149447931461,0.2660400726910745,0.2719518901147758,0.2774141624551727,0.2813799384084455,0.285837525212024,0.2900147928994083,0.2932104946925696,0.2978720696413572,0.3014245014245014,0.3043633149054637,0.3023697576353618,0.2992051267946531,0.2976688499190084,0.2960712429998268,0.2946619534220532,0.2906015671721896,0.2863497490937297,0.286486132486329,0.2869209809264305,0.2875017773354187,0.287589988436719,0.2882723337268791,0.288733569789276,0.2901106731689937,0.2902196853415196,0.2915452653485952,0.2933466022177992,0.2990876884973508,0.3029223839949722,0.3089872064007605,0.3124374032595829,0.316995544239338,0.3165901804237128,0.3179530201342282,0.3210074521271578,0.3233242700082752,0.3261533761075466,0.3321890145395799,0.3324198410523431,0.3315569090216977,0.0,2.0667482816469085,50.83933618045187,152.31681551810215,211.8023413631721,fqhc3_100Compliance_baseline_low_initial_treat_cost,70 -100000,95769,47094,446.7416387348724,5201,52.93988660213639,4139,42.53986154183504,1622,16.50847351439401,77.38146625236273,79.7042873870886,63.35451413110488,65.06761923236633,77.16810580577149,79.49546845916946,63.27378088374899,64.99168470438049,0.2133604465912384,208.8189279191397,0.0807332473558872,75.93452798583655,210.49732,147.99343283238997,219796.92802472616,154531.66769245785,498.46854,334.66058469137874,519834.6751036348,348790.63876574667,458.45846,225.20817616373373,474201.6727751151,231755.4212784931,2732.24315,1281.1507296629577,2811832.2839332144,1296684.3616748916,978.49951,443.6520306710988,1006038.7494909626,447562.1241436149,1584.64172,678.4971627155078,1614979.6698305295,674079.9644121805,0.3772,100000,0,956806,9990.769455669371,0,0.0,0,0.0,43267,451.0958660944564,0,0.0,41490,428.76087251615866,1242320,0,44668,0,0,0,0,0,91,0.93976130062964,0,0.0,0,0.0,0,0.0,0.05201,0.1378844114528102,0.3118631032493751,0.01622,0.3588192152548588,0.6411807847451412,23.83255910564106,4.219396045772627,0.3181928001932834,0.24812756704518,0.2213094950471128,0.2123701377144237,11.148658665442566,5.833235963117121,17.40665423683886,11477.05290433828,47.41742059148934,12.57882332677912,14.946486147482188,10.234472480463198,9.657638636764837,0.5798502053636144,0.8081791626095424,0.7061503416856492,0.5698689956331878,0.1342434584755404,0.7413509060955519,0.927765237020316,0.8818443804034583,0.6666666666666666,0.1421052631578947,0.5128205128205128,0.7174657534246576,0.643298969072165,0.5366568914956011,0.1320754716981132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0046921237180266,0.0069891764133047,0.0094341538711511,0.0117237943201114,0.013925931958385,0.016216161121983,0.0183369218053245,0.0207601144258275,0.0229170076935668,0.025130106954063,0.0272910083309393,0.0293603814691495,0.0316443968623252,0.0338567172180582,0.0361554031725049,0.0380706982904921,0.0399469171513586,0.0419800540203615,0.0440744674205035,0.0586301541415764,0.0723905195416732,0.0862036415505957,0.0991222076215505,0.1114964946497285,0.1270769653830289,0.1372078962163079,0.1472278998467041,0.1571599478732722,0.1666595188060213,0.1776859059246579,0.1883192731992213,0.1971637992909498,0.2069968931868901,0.2157932962123379,0.2255884047692921,0.2345028521673122,0.242964363276283,0.2504144430566595,0.2574526366459983,0.2629811478067534,0.2687025045958572,0.2742697467350249,0.2777531482524353,0.2819326557623887,0.2863494722321439,0.290256833470878,0.293246370178249,0.2967082772195172,0.2989083142156475,0.2966763958196027,0.294646292530094,0.2932973079466937,0.2908610075435706,0.2882963227206516,0.2848546097661812,0.2820046782146921,0.2828952755260788,0.283788619825838,0.2843654984797568,0.2845199216198563,0.2850852188955945,0.2854699071659539,0.2858480262131377,0.2853209471592405,0.2874448767833982,0.288258948799275,0.2913457040386714,0.295472763391768,0.298151366724601,0.3039757290345952,0.308449074074074,0.3098906560636182,0.3106686701728024,0.3127340823970037,0.3151151857075693,0.318557475582269,0.3220675944333996,0.3335132218024824,0.3455438066465257,0.0,2.645491206820863,52.377748815793325,157.20362795207586,210.0173444341608,fqhc3_100Compliance_baseline_low_initial_treat_cost,71 -100000,95760,47225,449.9269005847953,5169,52.7360066833751,4133,42.606516290726816,1676,17.094820384294067,77.31912755708531,79.66738230192732,63.32066847763053,65.05760641697408,77.10718611986188,79.46022783304556,63.23972003392493,64.98109308024263,0.2119414372234302,207.15446888175396,0.0809484437056013,76.51333673145189,210.59742,148.11500956188743,219921.888053467,154672.92143054248,500.74954,335.93541439515514,522376.8379281537,350265.50362263544,451.66428,220.98425131450475,468711.90476190473,228426.0277156327,2707.06026,1268.9705406841356,2791805.9001670843,1290184.537818289,981.96253,445.4969876557908,1012063.1996658312,451936.7085124544,1627.2704,697.9078296939216,1661880.4511278195,697004.5745683052,0.37947,100000,0,957261,9996.449456975772,0,0.0,0,0.0,43518,453.8742690058479,0,0.0,40981,424.9582289055973,1241064,0,44587,0,0,0,0,0,97,1.0129490392648286,0,0.0,1,0.0104427736006683,0,0.0,0.05169,0.1362163016839276,0.3242406655059006,0.01676,0.3678737233054782,0.6321262766945218,23.632216861748844,4.210959128566938,0.3121219453181708,0.2596177111057343,0.2141301717880474,0.2141301717880474,11.626727007195178,6.323638339699343,17.972669525671257,11492.286790345144,47.5248242373783,13.158138842718891,14.765035930990472,9.93271805880964,9.668931404859302,0.5739172513912413,0.8117427772600186,0.689922480620155,0.5728813559322034,0.1175141242937853,0.7260726072607261,0.8967889908256881,0.8469945355191257,0.714975845410628,0.1527093596059113,0.5107839780896953,0.7535321821036107,0.6277056277056277,0.5294985250737463,0.1070381231671554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0043575634126815,0.0065236800454527,0.0091104836580064,0.0111460271938656,0.0131577607365087,0.0153250063726739,0.0175529959563778,0.0197848714750209,0.0220716201551974,0.0241969384721068,0.0263166000965181,0.0284873915010901,0.030554639854953,0.032511685015322,0.0344150475403059,0.0365021688044142,0.0383586083853702,0.0404825486549112,0.0424200133311114,0.0566683715541267,0.0706537089535844,0.0839626599538493,0.0965340287709262,0.1088679921566973,0.1241884661746357,0.1351294017819261,0.1456876828943868,0.1555021624219125,0.1637987413292163,0.1757490253516272,0.1874492656370071,0.1970107365466827,0.2062815086994083,0.2155896171917122,0.2259522200932561,0.2346026323721491,0.2431666010240252,0.2502639196322152,0.2574053286293555,0.2632742850526803,0.2688845446989827,0.2742951907131011,0.279163266285824,0.2840950550920633,0.2879977288997506,0.292432026061897,0.2959612689514588,0.300103734439834,0.3037053665751109,0.3009512517179121,0.2990158970476911,0.2972675746552745,0.295236855051075,0.2931769881254923,0.2898353121409421,0.2867664528391542,0.286837741548868,0.2871091082889526,0.2874216195937617,0.288857651579046,0.2897823768711244,0.2910885693926311,0.2913105731800081,0.2918689028785621,0.2929032593981047,0.295369211514393,0.2986866438892894,0.3025227750525578,0.3057485786481364,0.3092480318523211,0.3105162928480744,0.3109813524204181,0.313962321482832,0.3169542385596399,0.3195550351288056,0.323805202661827,0.326915363016446,0.3322448979591836,0.332579185520362,0.0,2.1080348438913035,52.92952711761429,156.3310154733639,212.8934921117521,fqhc3_100Compliance_baseline_low_initial_treat_cost,72 -100000,95683,47373,452.2746987448136,5116,52.224533093652994,4060,41.867416364453454,1544,15.812631292915146,77.34181859432726,79.7252819620004,63.3271521787835,65.08602727637997,77.15083365288822,79.53537139844691,63.25571899367196,65.01692894069251,0.1909849414390407,189.91056355348235,0.0714331851115375,69.09833568745682,209.08536,147.14860392067135,218518.81734477388,153787.61527196196,497.72168,334.1140354464357,519618.019919944,348628.76942240074,455.66311,223.4613224893299,472639.4970893471,230742.4239539655,2634.49522,1233.9780736720206,2718453.946887117,1254748.6425718474,966.03184,432.6407181298949,993270.204738564,435873.8909460767,1503.53876,635.3554403607653,1541001.0555689095,637792.5588571934,0.37935,100000,0,950388,9932.67351567154,0,0.0,0,0.0,43228,451.1982274803256,0,0.0,41333,428.34150267027576,1250484,0,44827,0,0,0,0,0,84,0.8778988953105566,0,0.0,0,0.0,0,0.0,0.05116,0.1348622643996309,0.3017982799061767,0.01544,0.3474766355140187,0.6525233644859814,23.628485324175895,4.142260230145347,0.3051724137931034,0.2763546798029556,0.2118226600985221,0.2066502463054187,11.566119577532705,6.264455410925055,16.417322368145406,11519.08836988477,46.27553426375032,13.516110274008454,14.051412827632392,9.61287799706783,9.095133165041643,0.5894088669950739,0.803921568627451,0.7134786117836965,0.5802325581395349,0.1287246722288438,0.7561779242174629,0.9225941422594144,0.8609467455621301,0.6902654867256637,0.1744186046511628,0.5182712579058327,0.7158385093167702,0.658157602663707,0.5410094637223974,0.1169415292353823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020151694666383,0.004165948690919,0.0062295181761918,0.0084601165932034,0.0106357017936307,0.0129917732345035,0.0152381534823512,0.0172412033114543,0.0196240762885965,0.0218857803846901,0.0240751373964399,0.0259425484497119,0.0280752651667129,0.0299030366729522,0.0322853663067935,0.0344335377900061,0.0364037678366027,0.0383321566510237,0.0400407793856044,0.0420219752726059,0.0564817716494306,0.0697735291962014,0.0834890115656682,0.0961500015782994,0.1086568990432792,0.1247527684643616,0.1353103448275862,0.1468897688082769,0.1570439539306395,0.1657104250002681,0.1778629735725516,0.1884206883125311,0.1985905843202505,0.2080149542517955,0.2169451257740576,0.2258925407512402,0.2339043580157357,0.2422200978462576,0.2506410692808677,0.2576142713199597,0.264410346542095,0.269404311030065,0.2749926118564927,0.2807639346225229,0.2855114153588464,0.2899964286154111,0.2939102163311242,0.2976591605528501,0.3007092565748602,0.3040342781806196,0.3014606983375477,0.2991947452316825,0.2971204188481675,0.2943595515345656,0.2929574540655169,0.2898448734816265,0.2868785141196538,0.2878477737566934,0.2886968674370249,0.2888580526943125,0.2890620630511382,0.2903847667007632,0.2910141179905324,0.291322452069741,0.2926350558893223,0.2933516997608899,0.2953183999091502,0.2994739478957915,0.3035195237261425,0.3058763049667826,0.3108420623044484,0.3150250858199102,0.3189649810287989,0.3235404896421845,0.3264776727811747,0.3292998120300752,0.3334341906202723,0.3389796731765643,0.3404663923182441,0.3406928054815378,0.0,2.19261033040785,52.69952462586243,144.09536589397206,212.89886039450505,fqhc3_100Compliance_baseline_low_initial_treat_cost,73 -100000,95667,47558,453.88692025463325,5126,52.29598503141104,4016,41.26814889146728,1584,16.149769512998212,77.38307130315455,79.76038193660082,63.34642469116329,65.0979213431342,77.18046067984399,79.5615659672085,63.27012213736411,65.0255696702352,0.2026106233105622,198.81596939232796,0.0763025537991808,72.35167289900346,209.81268,147.64089487191816,219315.16614924688,154327.51034258417,498.44279,333.8506266193246,520315.69924843474,348269.8346858346,457.53341,223.8980755167385,473515.9877491716,230426.6116295671,2635.005,1228.3840976825766,2711574.106013568,1241480.4686402937,931.07047,425.8922873623689,956185.5498761327,428282.66886179184,1536.6684,652.7910025890733,1568110.9055369145,650208.0763884856,0.37993,100000,0,953694,9968.87118860213,0,0.0,0,0.0,43326,452.1412817376943,0,0.0,41359,427.5769073975352,1245992,0,44811,0,0,0,0,0,93,0.9721220483552322,0,0.0,1,0.0104529252511315,0,0.0,0.05126,0.1349195904508725,0.3090128755364807,0.01584,0.3505811773528309,0.6494188226471691,23.626122810481466,4.11418215677264,0.3296812749003984,0.250996015936255,0.2121513944223107,0.2071713147410358,11.5061176138179,6.3539394308905095,16.869467481130606,11506.255752325176,45.95551238750859,12.274086237274055,15.195938615078084,9.489183442002776,8.99630409315368,0.5804282868525896,0.7986111111111112,0.702416918429003,0.5915492957746479,0.110576923076923,0.756138865368332,0.9318734793187348,0.851063829787234,0.7363636363636363,0.160919540229885,0.5072310405643738,0.7068676716917923,0.6434599156118144,0.5411392405063291,0.0972644376899696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0043968958320669,0.0065516576910984,0.0088854137048621,0.010970464135021,0.0131722263505603,0.0153418010560867,0.0174442936030785,0.0197377163124916,0.0218969135486512,0.0238781180475101,0.0260104329253265,0.028076887476474,0.0301182481150344,0.0323109776856179,0.0341887408662939,0.0362673904260719,0.0382882882882882,0.040328618968386,0.0422398699349674,0.0571115173674588,0.0717022613065326,0.0851657574485942,0.0977456258411843,0.1093468290368496,0.1247925234435293,0.1353758083324499,0.1456330298647153,0.1558128367924025,0.1641539961640254,0.1766509586211348,0.1885103208157174,0.1991609242875464,0.2090455996152669,0.2180522251798403,0.2277164098075495,0.236970529442639,0.2455713593927722,0.2528243616091197,0.2591400190190305,0.2645963020387383,0.2697195955434884,0.2756252368321333,0.2799227567677785,0.2842573571419889,0.2880026636084495,0.291765766216859,0.2953356665606109,0.2987317502882385,0.30231913517509,0.3004641151543687,0.2971335128895729,0.2957415689252665,0.293197494877197,0.2909684116861931,0.2879214342531971,0.2847363844755355,0.2848438191020622,0.2848661651056861,0.2853070605212991,0.2861214605067064,0.2878073689999214,0.2878267208164115,0.2884534204270257,0.289663232207594,0.291520256304258,0.2923810060906835,0.2973603208655909,0.3024420788979336,0.3053366270634827,0.3073938737763342,0.3123266160690918,0.3157372371440977,0.3202394313505424,0.3281853281853282,0.3346415791296317,0.3341239252890602,0.3362369337979094,0.3343007915567282,0.3355263157894737,0.0,2.7364805606311786,50.838676151375886,149.83263192137372,205.936684327894,fqhc3_100Compliance_baseline_low_initial_treat_cost,74 -100000,95702,47719,454.4419134396355,5128,52.485841466218055,4066,41.9949426344277,1554,15.882635681594952,77.3960056150407,79.78101226633297,63.35197710932333,65.11321653873125,77.19239852485828,79.57953584492452,63.27407593715198,65.03863388682429,0.2036070901824302,201.47642140844368,0.0779011721713516,74.58265190696522,210.68212,148.201641457574,220143.9050385572,154857.41307138198,504.23391,338.8288428788799,526386.2615201354,353552.8127718124,460.43008,225.70615564622167,478144.6051284194,233499.98753017889,2643.04493,1236.9623447502115,2731141.9824037114,1261911.887682818,913.22783,414.8338036241415,944359.7312490856,423589.314637904,1518.99902,652.3114469812728,1554839.6480742304,653546.4919419491,0.38111,100000,0,957646,10006.541138116236,0,0.0,0,0.0,43907,458.27673402854697,0,0.0,41652,432.2793672023573,1239480,0,44414,0,0,0,0,0,82,0.8568263986123592,0,0.0,1,0.0104491024221019,0,0.0,0.05128,0.1345543281467293,0.3030421216848674,0.01554,0.3502698678578075,0.6497301321421924,23.407918968303047,4.134159507453644,0.3128381701918347,0.2656173143138219,0.2080668962124938,0.2134776192818495,11.039616376761312,5.753987093979306,16.480789155657767,11553.645672540426,46.31610414104838,13.215719517009362,14.319747714032012,9.3778091779317,9.402827732075298,0.572798819478603,0.8037037037037037,0.6831761006289309,0.5839243498817966,0.1129032258064516,0.7545909849749582,0.9157667386609072,0.8821752265861027,0.7677725118483413,0.1347150259067357,0.4968619246861924,0.7196110210696921,0.6131774707757705,0.5228346456692914,0.1066666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678130413201,0.0044614791831437,0.0067802115263595,0.0093472186944373,0.0117592008626126,0.0138985052743045,0.0159466541594869,0.0184585855904603,0.0206608190721544,0.0227844991709144,0.0250256305105597,0.0270647665201856,0.0292184752090339,0.0316742547537133,0.0334812216260833,0.0357656009344538,0.0378177373578339,0.0395897776578297,0.0413095931441883,0.0433146775891358,0.0579799456862335,0.0718337275257969,0.0842030186383612,0.0962569656187572,0.1084254798823616,0.1242848229110483,0.1355784738137679,0.1459324794787441,0.1559845724847487,0.1648163046393135,0.1775800596744832,0.1893432868116412,0.1998978283080802,0.2087369088484159,0.2175046186328846,0.2271750924511171,0.2355860930476392,0.2439046313565987,0.2517137062509206,0.2587515719675317,0.264740178025099,0.2712277916559662,0.2761027457927369,0.2806702788044063,0.28525893517228,0.2897799186522321,0.2930972126956413,0.2974422023930237,0.3010214609987618,0.3041495248485167,0.3018432870835847,0.2988414450439594,0.2961357130830106,0.2940439683842266,0.2924750277469478,0.2900613160062231,0.2866354506613694,0.2869566638876628,0.2881583646536623,0.2885158539834799,0.2893819334389857,0.2912869264613451,0.2913261380414665,0.2922937121833374,0.2927108692539023,0.2945026516621394,0.2936776742873271,0.2973614363778298,0.3012862969289225,0.3030159482078004,0.3054786437292905,0.3069197018554739,0.308484582051121,0.311880063602635,0.3154677950164551,0.3183654074602043,0.3220313212710962,0.3262797259169689,0.3332424325061358,0.3363879343260786,0.0,1.8593699788069225,52.34071680838772,146.74534053390155,212.94012088055456,fqhc3_100Compliance_baseline_low_initial_treat_cost,75 -100000,95828,47346,449.7641607880786,5175,52.85511541511875,4059,41.81450098092415,1589,16.247860750511332,77.38566316619061,79.70732495277754,63.36611244363343,65.08437990218428,77.17777956258368,79.50257726034839,63.286639659904765,65.0088589528844,0.2078836036069304,204.7476924291516,0.0794727837286615,75.52094929988584,210.25774,148.01398996584498,219411.5916016196,154457.9767561099,501.60437,336.3165471550423,522922.42350878654,350438.57448245,453.19751,222.69051917203825,469942.125474809,229971.21944427,2668.15497,1251.7850326935113,2749037.6507910006,1271004.156085393,944.60552,431.3785904513393,972212.1405017322,436641.1909372413,1557.4033,671.191300597708,1592888.717285136,670772.6898315937,0.37957,100000,0,955717,9973.25416370998,0,0.0,0,0.0,43658,455.03401928455145,0,0.0,41120,426.1176274157866,1246534,0,44692,0,0,0,0,0,79,0.8243937053888216,0,0.0,2,0.0208707267187043,0,0.0,0.05175,0.13633848828938,0.3070531400966184,0.01589,0.3598596750369276,0.6401403249630724,23.59183347254193,4.288213811039353,0.3104212860310421,0.2638580931263858,0.2005420054200542,0.2251786154225178,11.05590135234718,5.682647338140807,17.093218315947478,11501.996687321578,46.531878893520776,13.103804286261912,14.334976137810964,9.154015385119768,9.939083084328123,0.5659029317565903,0.8197945845004668,0.6746031746031746,0.5675675675675675,0.1170678336980306,0.7332242225859247,0.9292035398230089,0.8696883852691218,0.6682692307692307,0.1435406698564593,0.4938315121607332,0.7399030694668821,0.5986769570011026,0.533003300330033,0.1092198581560283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002228231695583,0.0044098415498312,0.0068201885700946,0.0089712067949525,0.0113002970015053,0.0136544140107931,0.0159414528738443,0.0185427084396366,0.0207266595124942,0.0227289008053869,0.0249748918813667,0.0268916533234799,0.0289828261338759,0.0308804002099867,0.0331315672788393,0.0352015204412584,0.0372696514118389,0.0393258426966292,0.0414217773254968,0.043280087413497,0.0571649124271095,0.0710231133505472,0.0848374316080749,0.0976076152852054,0.1095438744337933,0.1254198618416883,0.1362885112514302,0.1465167201683709,0.1555749927999232,0.1645226593545484,0.1766527925660633,0.1880887563736928,0.1985127286543994,0.207876267504939,0.217084742784343,0.2259976337641946,0.2336512109801475,0.2423922445265723,0.2499263622974963,0.2564392770175258,0.26309041133867,0.269000933706816,0.2736825947835122,0.2774762713080068,0.283022067194729,0.2879597224780499,0.2925937936539612,0.2967813090272936,0.3000232246077622,0.3032945354113237,0.3008139909735654,0.2981249656838522,0.2960095545876071,0.293183751748403,0.2895879972127915,0.2853911289089964,0.2833718098731855,0.2849624553234744,0.284777149495191,0.2861043689320388,0.2874369040942232,0.2884065120868278,0.2902988987939171,0.2911604805691657,0.2923039865108996,0.2929345696748073,0.2945521962350256,0.299519185443575,0.3004990160247399,0.3037592791076178,0.3076398362892223,0.3103685295828266,0.3161524956107349,0.3191312244589072,0.324037558685446,0.3246308328411104,0.3285127112193636,0.3323281061519904,0.3414434117003827,0.3406261788004526,0.0,2.1154603485262475,53.32016857733432,148.2275054152508,208.3387349127931,fqhc3_100Compliance_baseline_low_initial_treat_cost,76 -100000,95748,47330,449.84751639720935,5200,52.92016543426495,4095,42.006099344111625,1620,16.37632117642144,77.37657405990127,79.72340861571867,63.3458979718325,65.08006748105763,77.16503487336497,79.51764592227514,63.26541197132054,65.00475753946415,0.2115391865362994,205.76269344353196,0.0804860005119607,75.30994159347415,210.31428,147.99571930782585,219653.96666248905,154567.9484770709,497.8624,333.30246147020216,519215.0123240173,347347.256830641,456.63455,224.1794872312043,472239.2948155576,230421.31423049013,2679.2063,1264.0149116822934,2752968.876634499,1274931.3319153327,980.82588,444.92036819083137,1008114.7595772236,448410.6280975381,1583.15722,680.1286394453602,1604839.9339933994,671754.9540074838,0.38007,100000,0,955974,9984.27121193132,0,0.0,0,0.0,43414,452.63608639344943,0,0.0,41425,427.9462756402222,1244540,0,44698,0,0,0,0,0,82,0.8459706730166687,0,0.0,1,0.0104440823829218,0,0.0,0.052,0.136816902149604,0.3115384615384615,0.0162,0.345246868091378,0.6547531319086219,23.678346840530757,4.143207604098174,0.2984126984126984,0.2761904761904762,0.2112332112332112,0.2141636141636141,11.42776619816489,6.275593873073916,17.38068811421465,11566.129314834914,46.85478485074332,13.718522446446595,13.8990794573045,9.555267788836137,9.681915158156093,0.578021978021978,0.8072502210433244,0.7103109656301145,0.5549132947976878,0.1208665906499429,0.7556109725685786,0.9366515837104072,0.8642659279778393,0.7285714285714285,0.1578947368421052,0.504149377593361,0.7242380261248186,0.645760743321719,0.499236641221374,0.1106259097525473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002714473817482,0.0050988859491733,0.0073662209054566,0.0096407818277865,0.0116752095028882,0.0137676805735175,0.0158150727534133,0.0183362600563564,0.0205992700804547,0.0224590281403228,0.0245577352766332,0.026894137693879,0.0293204482368664,0.0315354748344439,0.0336015681419581,0.0357017344386331,0.0377231495671623,0.0394530723185293,0.0415332473905268,0.0435339575283543,0.0580026303154291,0.072162145202786,0.0858922075335213,0.0984845300151336,0.1105408481578281,0.1258997748580971,0.1370942091982782,0.1477651164522753,0.1569167681168706,0.166162688455682,0.1783306408185245,0.1887172163074526,0.1997389175958662,0.2096435370577036,0.2182993152343836,0.227858203826457,0.2368265311819552,0.2448540914052916,0.2522528657360118,0.2581794029064507,0.2641740800296149,0.269488453668518,0.2752296832322372,0.2803740555814983,0.285153973188265,0.2894396472080905,0.2924491759443215,0.296318870392239,0.3000943408418304,0.3031900175246729,0.3012452814980991,0.2988687223701914,0.2969342737516509,0.2939649578195976,0.2917845766353063,0.2885990102034582,0.2852630914029436,0.2851414824149387,0.285901762279715,0.2858261132558843,0.2867479340388139,0.2889427434290893,0.2892686289665545,0.2909822401031363,0.2922458549656674,0.2940733821163527,0.2958125566636446,0.2998409083819446,0.3051551429269484,0.3073581105098937,0.309504394310048,0.3124372854502245,0.31586835695997,0.3204557458688599,0.3239043453987159,0.3273389750822755,0.3311107743597515,0.3375619425173439,0.3338722716248989,0.3385767790262172,0.0,3.0379053999628587,51.39282840898266,151.4583863193688,212.5881300389348,fqhc3_100Compliance_baseline_low_initial_treat_cost,77 -100000,95751,47396,451.1075602343578,5143,52.45898215162244,4078,42.00478323986172,1618,16.490689392277886,77.3313489084019,79.69738010650057,63.31030609897547,65.06310173826611,77.12430692291248,79.49570733202607,63.23152680009402,64.98913001953372,0.2070419854894254,201.6727744745026,0.0787792988814501,73.97171873239472,210.25554,148.02776676968804,219585.73800795813,154596.575252152,502.91895,336.192175961455,524638.8027279088,350513.4421170067,458.7827,224.26197416641637,475612.9544338963,231396.4180276109,2689.495,1255.595543480907,2771443.003206233,1273913.5188989232,976.84726,436.8330700928303,1006739.511858884,442774.1965325674,1579.38304,674.1371467126113,1612591.7640546835,672248.6395371152,0.37974,100000,0,955707,9981.169909452645,0,0.0,0,0.0,43703,455.7968062996731,0,0.0,41597,430.9197815166421,1240738,0,44514,0,0,0,0,0,77,0.8041691470585163,0,0.0,1,0.0104437551566041,0,0.0,0.05143,0.1354347711592142,0.3146023721563289,0.01618,0.3495995529893835,0.6504004470106165,23.73008706468934,4.166940859106679,0.3138793526238352,0.2506130456105934,0.2236390387444826,0.2118685630210887,11.41241814004479,6.124328597881412,17.263399975086735,11523.13893344042,46.44868721317665,12.475149075793396,14.420491992001317,10.119332667751792,9.433713477630132,0.5738106915154487,0.7827788649706457,0.69140625,0.6096491228070176,0.1145833333333333,0.7551724137931034,0.9298245614035088,0.8859649122807017,0.7668161434977578,0.1581632653061224,0.5017135023989033,0.6886035313001605,0.6204690831556503,0.5587808417997098,0.1017964071856287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023607128744972,0.0045833882596306,0.007064196904339,0.0094797805324121,0.0118313699159698,0.0140847939220498,0.0165798248207931,0.0187977985848045,0.0206302611257146,0.022748222955118,0.0247271906793567,0.0269070735090152,0.0290618696743918,0.0310319595172577,0.0330718414533443,0.0351071310390469,0.0370305170396296,0.0388933856339372,0.0409156115511757,0.0429651695692025,0.057551778854184,0.0716834625728607,0.0840834225047733,0.0973308934881373,0.1094603429005251,0.1252445976962863,0.1366429306703738,0.1468702062382819,0.1572393595416746,0.1667239010989011,0.178925584202811,0.189942923981675,0.2003375251782895,0.2098820850257836,0.2188491014799154,0.2279147634041421,0.2367583503634962,0.2442423287331997,0.2514753279767579,0.2585195370688667,0.263933420531756,0.2699139394649025,0.2753765747401605,0.2806320314094637,0.2847620090257757,0.2890456400833631,0.2929213286275687,0.2963962129695612,0.2998095336814418,0.3023639289765981,0.3002557889068389,0.2969830252216343,0.2938421289524023,0.2921024161557879,0.2902896081771721,0.2864580947582184,0.2836056266952627,0.283734929904631,0.2839956376525117,0.2848222862632084,0.2845727301581374,0.2861476039471352,0.2863342374295848,0.2868056483585015,0.2875098757451698,0.2885798064198043,0.2886968838526912,0.292477363160698,0.297699214365881,0.3008291347641528,0.3046003085019508,0.3096644861785186,0.3139265837033331,0.3133720491741458,0.3133154436939021,0.3162155910247513,0.3168993168993169,0.3246551389158733,0.3205399682371625,0.3192350128723795,0.0,2.237740885709252,50.42949259285586,152.10601945210306,213.99819921632,fqhc3_100Compliance_baseline_low_initial_treat_cost,78 -100000,95496,47576,455.0661807824412,5103,52.52576024126665,3993,41.279215883387785,1545,15.85406718606015,77.22623088476638,79.71342443239473,63.24095407219974,65.076069098777,77.03221777603808,79.51966428778796,63.169196912339295,65.00642907780394,0.1940131087282992,193.76014460677027,0.0717571598604465,69.6400209730541,210.44188,148.03773802822133,220367.21956940604,155019.83122667056,500.49498,336.1218961963517,523583.0401273352,351464.2280361217,454.31642,222.13188268163267,471869.9736114602,229664.45776662367,2600.03084,1199.2144526171078,2690496.2406802378,1224084.660225099,924.68429,408.3512922782474,956225.6010722962,415540.129720876,1507.88586,632.567861160341,1548834.3804976123,637674.2101460736,0.37938,100000,0,956554,10016.691798609369,0,0.0,0,0.0,43571,455.7154226355031,0,0.0,41150,427.0754796012399,1234085,0,44314,0,0,0,0,0,76,0.7958448521404038,0,0.0,0,0.0,0,0.0,0.05103,0.1345089356318203,0.3027630805408583,0.01545,0.3439609902475619,0.6560390097524381,23.87276854170793,4.025953090084473,0.304282494365139,0.2807412972702229,0.2023541197094916,0.2126220886551465,11.089272287941627,6.006129745919736,16.488016014611286,11540.45566554388,45.77568230273114,13.68815928212675,13.815511866615887,8.993067051287246,9.27894410270126,0.5755071374906086,0.776092774308653,0.6888888888888889,0.6113861386138614,0.1142520612485276,0.7618213660245184,0.9212253829321664,0.8757763975155279,0.7538461538461538,0.119047619047619,0.5008768853034024,0.6762048192771084,0.6215005599104143,0.566068515497553,0.1130690161527166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381162284035,0.0043210565287512,0.0063760229049485,0.0085917641077783,0.010740755823424,0.0128828415634714,0.0151736242206553,0.0173298183230131,0.0195709331232672,0.0215876723837626,0.023751847594022,0.0256940160394818,0.0279768524239054,0.0298070278577101,0.0320710853954641,0.0341457354067877,0.0363900414937759,0.0383260049271837,0.0404954889254682,0.0421748391947205,0.0572855064423952,0.0715514708968064,0.0842928799015741,0.0970522832421722,0.1088966617704557,0.1254557402068848,0.136950767039112,0.1468150250168023,0.1568644249303919,0.1653412144008597,0.1778027244662248,0.1888846716911565,0.1999367702689443,0.20863112202394,0.2170445143140824,0.227060117546413,0.2357368944960798,0.2443109453016692,0.2526237989652624,0.2590859030837004,0.2651750521678646,0.2700611857373936,0.2748135058527734,0.2806861590947312,0.284986843387584,0.2894544915139004,0.2933376861455011,0.2966769222913022,0.3008905852417303,0.3042173056323313,0.302291992872955,0.2991198710797074,0.2971007343302936,0.2950580555716018,0.293085762706825,0.2896911167318157,0.2872450030908716,0.28811414106547,0.2884125164667841,0.2895324930723161,0.289311475409836,0.2898954566115294,0.2916867192567638,0.2915932067218639,0.2932305630026809,0.2946032240479713,0.2941059734074221,0.2983345855246682,0.3018940452893486,0.305873047261222,0.3087266615181938,0.3140578791719476,0.3177680798004987,0.3238717428850342,0.3285740604274134,0.3304770727188513,0.3327283726557773,0.3350912778904665,0.3444596443228454,0.3418640183346065,0.0,2.0652620354085163,50.03367904544016,151.37631570344095,207.99521557885652,fqhc3_100Compliance_baseline_low_initial_treat_cost,79 -100000,95705,48141,458.5758319836999,5213,53.17381537014785,4142,42.641450289953504,1635,16.665795935426573,77.36399481233721,79.74872447244837,63.33329461681414,65.0973539276948,77.16199226019081,79.55086864415054,63.25731941069336,65.02554563761923,0.2020025521463964,197.85582829783263,0.0759752061207876,71.8082900755661,210.16292,147.93725110429864,219594.5039444125,154576.30333242632,507.89628,340.3331807731801,530000.4910924195,354917.580871616,459.47928,224.89769717710345,476479.212162374,232203.08719155888,2717.35964,1253.576359110869,2801734.339898647,1272260.1422191828,978.96448,443.0744635050744,1008918.0711561568,449066.0985811096,1585.8682,668.2984454813306,1619150.869860509,666034.2938016537,0.38531,100000,0,955286,9981.56836110966,0,0.0,0,0.0,44212,461.3029622276788,0,0.0,41652,431.5761976908208,1239658,0,44471,0,0,0,0,0,84,0.8672483151350504,0,0.0,0,0.0,0,0.0,0.05213,0.1352936596506709,0.3136389794743909,0.01635,0.3523582308680492,0.6476417691319508,23.598058634184436,4.261880144993832,0.3242394978271366,0.251569290197972,0.2168034765813616,0.2073877353935297,11.482364208260844,6.19938835618205,17.3314970938482,11653.293860791524,46.87686189806662,12.738447804040186,15.047912713782486,9.707418822745588,9.383082557498367,0.5729116368903912,0.8157389635316699,0.6939687267311988,0.544543429844098,0.1187427240977881,0.7597623089983022,0.9157175398633256,0.8622589531680441,0.7463414634146341,0.1578947368421052,0.4986504723346828,0.7429519071310116,0.6316326530612245,0.4848484848484848,0.1090116279069767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021377696274607,0.0045230054661433,0.0069946398115812,0.0092180417505132,0.0114267689615173,0.0137029565784379,0.0160451262801419,0.0183320397075043,0.0204657727593507,0.0227423995740279,0.0250528129294255,0.0271855229644236,0.0293358294160606,0.0313855601693954,0.0334172721268163,0.0353812113567278,0.0373742710048996,0.039359946869779,0.041486055238511,0.0436037425243284,0.0580248976522683,0.0714883818296001,0.0849331738738171,0.0975876501146234,0.1100406855408225,0.1257757900635434,0.136300977668441,0.1471623849795223,0.1571160169093471,0.1657396392630936,0.1783777385615288,0.1898647917793401,0.2003827584707059,0.2104779713282813,0.2188599964801126,0.2292704527842355,0.2379428036048898,0.2460924322500843,0.2539538472011073,0.2616360264658073,0.2673311978907686,0.2731715301159745,0.2785837691998201,0.2839359739295042,0.2883452713366517,0.2920425872361376,0.2970199254981374,0.301238173852308,0.3044528555373267,0.3074908880380005,0.3053821472203203,0.3031296286137473,0.3009279407016411,0.2987108390349298,0.2963922102521605,0.2932860037477719,0.2893113433211632,0.289157608252799,0.2894794864401893,0.2901513941394671,0.2900387712496272,0.2906967599874174,0.2924954697881735,0.2936537990332568,0.2944552040743132,0.2959324236517219,0.296444709693921,0.3004596479159501,0.3039479665699199,0.3074554998618621,0.3134490238611713,0.3161381921438713,0.3169155477475216,0.3187656760659725,0.3198719759013461,0.3229857819905213,0.3230911046243662,0.3178026449643947,0.3187086092715231,0.3176379776148205,0.0,2.424661885393283,50.909694171742906,149.1147363699361,221.2997766689664,fqhc3_100Compliance_baseline_low_initial_treat_cost,80 -100000,95671,47080,448.652151644699,5149,52.65963562626083,4074,42.00855013535972,1537,15.710089786873764,77.31725194233033,79.72486210483078,63.30264576078415,65.08466330545258,77.11962269238292,79.53061579944591,63.2272546404032,65.01316550862403,0.1976292499474112,194.24630538486556,0.0753911203809494,71.4977968285524,210.71336,148.20833124274864,220247.89121050268,154914.58356529006,499.57556,335.0345917833515,521646.0787490462,349659.82563509484,455.05352,223.5578339784644,472450.53359952336,231242.9518119149,2661.84602,1249.2841939607465,2746276.855055346,1269798.2711174188,946.11049,425.8410473259398,975187.8834756614,431376.8616675264,1493.45754,639.7143683176507,1527398.9819276475,638825.1445843106,0.37754,100000,0,957788,10011.267782295576,0,0.0,0,0.0,43480,453.8993007285384,0,0.0,41287,428.2697996258009,1240580,0,44568,0,0,0,0,0,83,0.8675565218300216,0,0.0,0,0.0,0,0.0,0.05149,0.1363828998251841,0.2985045639930083,0.01537,0.3594358879198367,0.6405641120801633,23.617928451316804,4.1525300393207445,0.3134511536573392,0.2700049091801669,0.2093765341188021,0.2071674030436917,11.134229563025697,5.9924214499916575,16.475663421668784,11505.519857517163,46.669789630185456,13.375468788111302,14.45492654213595,9.612079115387504,9.2273151845507,0.5844378988708886,0.8063636363636364,0.696945967110415,0.5908558030480656,0.1184834123222748,0.7479541734860884,0.9,0.8554913294797688,0.7522522522522522,0.1521739130434782,0.5143758765778401,0.7365079365079366,0.6380236305048335,0.5340729001584786,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026239273810368,0.0050195203569436,0.0072967514740655,0.0097247202999725,0.0118125858472808,0.0139553835183864,0.0160467631036663,0.0181329682902909,0.0201857952569008,0.0222832378825289,0.0242946547655688,0.0265521280749707,0.028904649654647,0.0308063468497726,0.032853424770718,0.0348060010346611,0.03694565961064,0.0389124858504771,0.0407437079271274,0.0425114931145558,0.0569410633874186,0.070978281357991,0.0841477624631276,0.0974821922708668,0.109117187829683,0.1249536992941126,0.1355410497266889,0.1463580884623987,0.1561845311898755,0.1653397995751164,0.1769851444084156,0.1887090663058186,0.1987941317313133,0.2078439528443359,0.2163966206615484,0.2260595850328072,0.2343600044637875,0.2421600827859264,0.2497504650424209,0.255872790548585,0.2622804784932552,0.2678335496392952,0.2740582060052312,0.2791957245907925,0.2833626920974306,0.2884259829902625,0.2915769981482408,0.2955787760913228,0.2994929766924489,0.3032981217565396,0.3012925590519442,0.2979246163559996,0.2957730655806769,0.2933419801124081,0.291328999317244,0.289308946200352,0.2860799494390899,0.2869872886908662,0.2869106382978723,0.2862221590202108,0.2871677120669056,0.2886273274810061,0.2897293908682478,0.2901658345221112,0.2914735755276491,0.2931343749187615,0.2932569613792321,0.2976863271614575,0.303586380128384,0.307607410327158,0.3113327289211242,0.3152007597741782,0.3189903545033195,0.3217833042687087,0.3223875011694265,0.3288330594036158,0.330030487804878,0.3344064386317907,0.3345844504021448,0.3349496456546065,0.0,2.2782839370948693,52.99393833100546,147.2437086649807,212.37431266261947,fqhc3_100Compliance_baseline_low_initial_treat_cost,81 -100000,95870,47122,449.3793678940231,5136,52.414728277876286,4023,41.52498174611453,1568,16.042557630124126,77.4717338221379,79.7592415259262,63.40399372213196,65.09101691519581,77.2727335562741,79.56044870799603,63.32859155454539,65.01788608185477,0.1990002658638019,198.792817930169,0.0754021675865672,73.13083334103965,210.25532,147.80694753820765,219312.9446124961,154174.34811537253,497.7935,334.32396431796656,518808.2403254407,348297.0591810261,450.20412,220.6894978892886,467008.3759257328,228177.8052794356,2631.54545,1224.9333893540688,2716108.5949723586,1248953.0853246264,959.47451,431.032103475119,990115.667049129,438908.4004121401,1533.20334,653.5278560853179,1569637.884635444,656219.8932189693,0.37803,100000,0,955706,9968.770209658913,0,0.0,0,0.0,43333,451.5489725670178,0,0.0,40729,422.26974027328674,1249803,0,44766,0,0,0,0,0,79,0.8240325440700949,0,0.0,1,0.0104307916970898,0,0.0,0.05136,0.1358622331560987,0.3052959501557632,0.01568,0.3593574897273067,0.6406425102726934,23.66755161412971,4.195266990906718,0.3114591101168282,0.2622421078796917,0.2087994034302759,0.2174993785732041,10.992636763398949,5.821042224951027,16.758499631559335,11439.18236960354,45.8929182064973,12.888079893233884,14.215649033213555,9.283284577471896,9.50590470257797,0.5781754909271688,0.7838862559241706,0.6983240223463687,0.6059523809523809,0.1314285714285714,0.7453151618398637,0.9279475982532752,0.8357771260997068,0.703125,0.1639344262295081,0.5093015093015093,0.6733668341708543,0.6469298245614035,0.5771604938271605,0.1228323699421965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021965786010729,0.0044169342829066,0.0065403881644324,0.0086175395858708,0.0109848792781074,0.0132876168771048,0.0152697416673457,0.0174726384398045,0.0194636766537998,0.02173157162726,0.0237302717151957,0.0256394478288515,0.0278083106476963,0.0299513329423506,0.0318101697710616,0.0336537965076054,0.0353873366917339,0.0372281989096863,0.0391472747474118,0.0411181300669171,0.0566840458811261,0.0710328245870792,0.0839953050659177,0.0967280980099607,0.1088672702551724,0.1236639284468267,0.1348588636990223,0.145025905082077,0.1549991992740084,0.1643963346015755,0.1761021855394978,0.187408808430154,0.1981475247847284,0.2075617957900253,0.2168369028006589,0.2257679426101758,0.23499994431017,0.2425681440567605,0.2503510281728417,0.2573708458610085,0.2628334622355101,0.2688795325456899,0.2740945365254758,0.2794309283280531,0.2829149993937189,0.2866227935297373,0.290440992858213,0.2949492385786802,0.2988790743323519,0.3022858195018018,0.3000255078067314,0.2966367559421878,0.2939823579732705,0.2917631158972295,0.2888803465558792,0.2858883743602242,0.2822413141993957,0.282992398290431,0.2842023135113131,0.2857446431733664,0.2857514735687324,0.2870834966679733,0.2875064908090144,0.2871320027468267,0.2891279512566641,0.2902934420729346,0.2910882725608897,0.29722187771301,0.3001928507472966,0.3037501460337241,0.30649478097957,0.3096022162981548,0.3140120654269544,0.3151853809559767,0.3157302316855829,0.3180905116388987,0.322015995171269,0.317794088474509,0.315676257058349,0.3204647676161919,0.0,1.6997642425528423,51.49261307785496,151.26336651214586,205.0689413183248,fqhc3_100Compliance_baseline_low_initial_treat_cost,82 -100000,95741,47220,449.3372745218872,5138,52.391347489581264,4088,42.103174188696585,1534,15.688158678100292,77.34438518034166,79.69868988129087,63.33412346583962,65.07292144956469,77.14801656311417,79.5025601468231,63.26000485895101,65.00070773641403,0.1963686172274918,196.1297344677746,0.0741186068886108,72.21371315065994,210.25796,147.88416364933224,219610.97126622868,154462.50848573988,500.52676,335.7112309559895,522173.7291233641,350028.41578670155,451.85007,221.56485377227293,467641.3971025997,228143.25749552328,2638.85717,1230.510330355735,2721288.0270730406,1250584.688601491,933.25432,423.7393553572557,959653.1788888772,427625.26504572,1492.24548,637.859470114699,1528451.488912796,641172.5129983171,0.38011,100000,0,955718,9982.316875737668,0,0.0,0,0.0,43608,454.8417083590102,0,0.0,40962,423.5802843087079,1243221,0,44633,0,0,0,0,0,77,0.8042531412874317,0,0.0,0,0.0,0,0.0,0.05138,0.1351713977532819,0.2985597508758271,0.01534,0.341576794347341,0.658423205652659,23.930235698407188,4.177613597725823,0.3231409001956947,0.2654109589041096,0.2081702544031311,0.2032778864970645,11.31516499971025,5.997582163758996,16.37421035227878,11540.415167978865,46.45180131924651,13.129139870565073,14.78768626509334,9.339623964113144,9.19535121947495,0.5758317025440313,0.7972350230414746,0.6934140802422407,0.5769682726204466,0.098676293622142,0.7281067556296914,0.905829596412556,0.8480662983425414,0.6896551724137931,0.1170212765957446,0.5126341294565594,0.7214397496087637,0.635036496350365,0.5416666666666666,0.093312597200622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0046637535104883,0.0068791282379082,0.0090693966261438,0.0116721231469996,0.0139260737226797,0.0161533601027292,0.018266238073371,0.0203635397615228,0.0225930890523795,0.0245821848326177,0.0266447706045365,0.0286251889324161,0.0309165808444902,0.033011130940714,0.035177281511259,0.0374598902805092,0.0393661592068693,0.0411656499101027,0.0429868966522925,0.0568848522810314,0.0708029426230365,0.0836873184187617,0.096630702252508,0.1087199493884436,0.1242228801015013,0.13532917621108,0.1464558887671407,0.1566474790948022,0.1664397585840935,0.1785741197239954,0.1894712932116125,0.2002565858856018,0.2091790449333814,0.2188620318032859,0.2284351060532258,0.2370532376669605,0.245214907446976,0.2521952215642229,0.2594225132808206,0.2657320007403294,0.2711840612094481,0.2765280160937222,0.2806927071465406,0.284909075448549,0.2881861795937496,0.292590040714062,0.2955442896084376,0.2991282496340721,0.3018462066326194,0.2989761459496549,0.2960916886543535,0.2951239413634957,0.2931967390520164,0.2908060303893637,0.2874584984470387,0.285416007592534,0.2855504775009419,0.2871071112020181,0.2871489876956498,0.2884888324493912,0.289397040302267,0.289455015857119,0.2903685876008379,0.2919303797468354,0.2923975090814737,0.2940309506263817,0.2991546649968691,0.3035215204024595,0.3054434686288472,0.3085476653256792,0.3118171742228321,0.3168125,0.3232247410298754,0.3230941077911198,0.3208631406121731,0.3251636474349216,0.3283551554828151,0.3287292817679558,0.3364269141531322,0.0,2.272454326904942,52.0138261219782,144.34110514494077,217.7513260381588,fqhc3_100Compliance_baseline_low_initial_treat_cost,83 -100000,95657,47636,455.356116123232,5126,52.20736590108408,4010,41.19928494516868,1531,15.534670750703034,77.28108161739658,79.66876582216818,63.29287913429015,65.05589086938592,77.09041924733583,79.48628030846817,63.22013488283133,64.98968210909996,0.1906623700607497,182.48551370001564,0.0727442514588219,66.20876028596001,211.12322,148.56628961160558,220708.59424819928,155311.46660631796,501.82421,336.57706053891053,523898.9828240484,351149.3153024981,461.19127,226.12337926598883,478075.2584755951,233153.16393427897,2617.22057,1227.469842337794,2690595.8058479778,1237747.8933458012,954.03391,431.2771941789461,979652.2261831335,433161.4144066246,1496.17008,634.5957878924481,1520269.567308195,624641.490078686,0.38135,100000,0,959651,10032.208829463603,0,0.0,0,0.0,43629,455.3665701412338,0,0.0,41727,432.1900122312011,1233394,0,44286,0,0,0,0,0,77,0.794505368138244,0,0.0,1,0.0104540180018189,0,0.0,0.05126,0.1344172020453651,0.2986734295747171,0.01531,0.3498791596951106,0.6501208403048894,23.752720460009076,4.174903669400617,0.3206982543640898,0.2630922693266833,0.2029925187032419,0.213216957605985,11.632306837476984,6.304173482965002,16.25413346076607,11562.249420171298,45.8371152379524,12.733815443235276,14.792692379085786,9.088178079943782,9.222429335687549,0.5925187032418953,0.8113744075829384,0.7216174183514774,0.6044226044226044,0.1169590643274853,0.7552565180824222,0.9305210918114144,0.8883248730964467,0.7281553398058253,0.1236559139784946,0.5239276852180078,0.7377300613496932,0.647982062780269,0.5625,0.1150971599402092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779871346806,0.0044100203773355,0.0064950221744116,0.0086456502524611,0.0105567194841649,0.0128508003747301,0.0148663254277382,0.0169069302078654,0.0190339892665474,0.0211977604683773,0.0233054105874029,0.0254222496021356,0.0275609580518104,0.0296223790634176,0.031881186075074,0.0338313601819779,0.0359136911236106,0.0381437734830714,0.0399654645127063,0.0418807784112821,0.0573288336763799,0.0714465224402605,0.0843331758778145,0.0981091574860317,0.1105260936543777,0.126346304407626,0.136903118962186,0.1474936622568756,0.1579594542577306,0.1673020134228187,0.1802679264820088,0.1916337036033595,0.2018470519047722,0.2117867349955652,0.2196882058062028,0.2292285853701814,0.2373347340657375,0.2451678305924758,0.2532807653414836,0.2594418583319957,0.2654990269669168,0.2708008761962773,0.276282720030349,0.2820149585219155,0.2868366006713042,0.2907530276496559,0.2948093419322522,0.2979636539612597,0.3016588906168999,0.3045408304818274,0.3017402909022282,0.2984945110948885,0.2964280672031625,0.294505876223007,0.2918309943000015,0.2885299166257969,0.2852101531839473,0.2852920894493153,0.2867025365103766,0.2871966765917236,0.2877581977190584,0.2883801005263783,0.290051828692532,0.2898271693382287,0.2908006158583526,0.2912724815469383,0.2933883122422863,0.2983992467043314,0.3025658928259731,0.3058939483540311,0.3099005424954792,0.3121378147718892,0.3157927629523154,0.3211229545113346,0.3228018159918465,0.3244239631336406,0.3237237237237237,0.3234772324068598,0.3309428950863213,0.3333333333333333,0.0,2.8669150140027075,50.98442932967743,142.6845385819343,213.0452767471572,fqhc3_100Compliance_baseline_low_initial_treat_cost,84 -100000,95732,47467,451.2702126770568,5095,52.1978021978022,4072,42.023565787824346,1564,16.00300839844566,77.3612597271838,79.72720665525891,63.34108899169471,65.08919369749557,77.16771044096862,79.536213189463,63.26895897673951,65.02049463966148,0.1935492862151875,190.9934657959127,0.0721300149551993,68.69905783409536,210.83238,148.3568172812848,220231.87648853048,154970.9786500698,503.87137,338.0207357389728,525809.6874608282,352564.96859876823,457.88339,223.91326435716977,475201.2493210212,231470.76891762644,2700.44899,1250.1560120130753,2788371.505870555,1273420.4153397777,964.17971,430.07986679685047,996644.6433794342,438733.1370877556,1537.86232,641.7796954025778,1575586.4078886893,643245.918009964,0.37948,100000,0,958329,10010.53984038775,0,0.0,0,0.0,43734,456.2842100864914,0,0.0,41410,429.4906614298249,1241862,0,44505,0,0,0,0,0,112,1.16993272886809,0,0.0,0,0.0,0,0.0,0.05095,0.1342626752398018,0.3069676153091266,0.01564,0.360913515537252,0.6390864844627481,23.66188795846074,4.222100059287101,0.3143418467583497,0.2541748526522593,0.2067779960707269,0.224705304518664,11.444612415784157,6.010428096167368,16.499568032544367,11567.781390526969,46.35886832880243,12.716244241633683,14.413567590087206,9.2934662093977,9.93559028768384,0.5724459724950884,0.8106280193236715,0.69609375,0.5795724465558195,0.1234972677595628,0.7514792899408284,0.9292237442922374,0.8693181818181818,0.7676767676767676,0.123076923076923,0.4991346486673589,0.7236180904522613,0.6303879310344828,0.5217391304347826,0.1236111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0048361586503366,0.0070629782224838,0.0092450549115624,0.0114410657988406,0.0135435123520905,0.0156221320335284,0.0182059529279624,0.0203359677732677,0.0225634725634725,0.0248021162285198,0.0267963518343535,0.0287157123903362,0.0309155154474559,0.0326298952582426,0.0347162632977348,0.037135608139595,0.0395587518030779,0.0419166658001185,0.0437405574368325,0.0584304389591947,0.0726404923643747,0.0864443581970566,0.1003185885371213,0.1128185670018339,0.127957125642164,0.1382491411121007,0.1488669007341206,0.158045946321197,0.1665505525246787,0.1779954785229841,0.1889641149877787,0.1990239024337221,0.2084653887346724,0.2177889160016707,0.227365765686025,0.235522311525299,0.2436106274223445,0.2512211430579009,0.2583608883193556,0.2642133123750303,0.26977749226187,0.2759501152550387,0.2804657675231268,0.2850338157224929,0.2902095753180505,0.2937688053235452,0.2971730461507201,0.3006917059926304,0.3039312589781099,0.3008895936357773,0.2989026063100137,0.2966380182002022,0.2935342031283788,0.2926858193246168,0.2892039291770421,0.28650754839015,0.2858544402112595,0.2859815309263447,0.2869443011403056,0.2882289255581274,0.290050889581443,0.2896930695138003,0.289534080527641,0.2905058738911532,0.2923661539262382,0.2946250640551158,0.2984689867647521,0.3006412277935457,0.3046890483174125,0.3088388528972047,0.3099947396107312,0.3114171756200922,0.3158926417370326,0.3200891199405867,0.3253689388615601,0.3268240993036633,0.3277699577719686,0.3325948490722791,0.3444312326595323,0.0,1.9778451661306533,51.62437490906405,148.9972894467015,213.00718450255903,fqhc3_100Compliance_baseline_low_initial_treat_cost,85 -100000,95645,47456,452.92487845679335,5111,52.19300538449475,4032,41.47629254012233,1523,15.49479847352188,77.2430810454354,79.6472586570052,63.27207635196621,65.04997588429455,77.04771967763483,79.45691215928423,63.19762357036373,64.97982761202131,0.1953613678005723,190.34649772096657,0.0744527816024884,70.1482722732436,209.24728,147.22160376822796,218774.928119609,153925.03922654397,495.70185,331.9543448215172,517587.85090699984,346384.43705527444,448.96664,219.84087442502303,465324.6798055309,226671.58339884743,2630.87415,1218.6660195025534,2710001.432380156,1233636.1169221273,911.32381,411.5096299053436,937005.9909038632,414492.6733105128,1482.99026,634.7085356637638,1511616.7076167075,631137.7931734697,0.37971,100000,0,951124,9944.31491452768,0,0.0,0,0.0,43128,450.2064927596843,0,0.0,40776,422.2071200794605,1246957,0,44744,0,0,0,0,0,66,0.6900517538815412,0,0.0,1,0.0104553296042657,0,0.0,0.05111,0.1346027231308103,0.2979847387986695,0.01523,0.3470996808710344,0.6529003191289656,23.6923126862212,4.16264734299284,0.3127480158730158,0.2646329365079365,0.2175099206349206,0.2051091269841269,11.367031669223634,6.129179698616483,16.333832577355746,11537.082354809469,45.84818759985585,12.835610500229327,14.246388881472395,9.736351905414203,9.02983631273992,0.5729166666666666,0.7910028116213683,0.6946867565424266,0.5758266818700114,0.1027811366384522,0.750886524822695,0.921760391198044,0.8562874251497006,0.7149532710280374,0.1812865497076023,0.5037878787878788,0.709726443768997,0.6364617044228694,0.530920060331825,0.0823170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0049905666118921,0.0071672943971249,0.0093071459779107,0.011473558939306,0.0137990732725698,0.0158756054040275,0.0180321842836137,0.0200323134816753,0.0222929936305732,0.0242436673161727,0.0264849654945777,0.0283942491618503,0.0302571393250092,0.0325966907856029,0.0345259021817805,0.0366081047484876,0.0385369853345649,0.0406170040148946,0.042440290649792,0.0569801462904911,0.0713492678635021,0.0844601688153529,0.097026472290932,0.1087275529702395,0.1244137668194666,0.1360203116866561,0.146969147779365,0.156614130260328,0.1647799282538182,0.1763709346742344,0.1874525704126103,0.1979870158163043,0.206928274940585,0.2158563602896601,0.2252781999933431,0.2339300289589319,0.242377791052851,0.2500682035193016,0.2568938829329817,0.2633298953540925,0.2696797611381066,0.2761119795367344,0.2808725999304414,0.2856656369341538,0.2909638331215064,0.2941913496717285,0.2978997272704101,0.3016449587463027,0.3049306014540647,0.3025220273219626,0.2996917487752518,0.2980193134559808,0.2950855226060176,0.2932591457518187,0.289800423066311,0.2872586627777954,0.2868438789433019,0.2877866247479753,0.2881283269622378,0.2889447707696061,0.2898677018141488,0.2915723744866315,0.2926878354203935,0.2940568847890842,0.2959860110658732,0.2966680966680967,0.3014435324087178,0.3049311604383253,0.3095162190164979,0.3115646881149604,0.3154058942440685,0.3193044354838709,0.3208222306813856,0.3244720965309201,0.3290885508784341,0.3318972149561471,0.3366457108091665,0.338070511068598,0.3478095238095238,0.0,2.607798663784721,48.54490391192189,150.0729831973699,214.91698482189108,fqhc3_100Compliance_baseline_low_initial_treat_cost,86 -100000,95816,47569,453.11847708107206,5232,53.52968189028972,4167,42.89471487016782,1585,16.155965600734742,77.44904619750217,79.7748976742287,63.38601454967061,65.10667873299421,77.2494957142529,79.57958688589292,63.31120305560804,65.03612234008646,0.1995504832492685,195.31078833577453,0.0748114940625725,70.55639290774707,211.64924,148.88301061038672,220891.1037822493,155384.07323660635,504.32884,337.18803695046245,525753.4962845454,351314.71355771745,457.8034,223.6527958702129,473780.75686732907,230334.4131535825,2668.50797,1234.953313386124,2748626.9620940136,1252533.6380219636,953.50635,426.3228309878513,978953.0976037404,428922.9495475178,1537.1128,650.9893296787693,1568160.3490022544,648244.0329648162,0.38065,100000,0,962042,10040.504717374968,0,0.0,0,0.0,43922,457.7836686983385,0,0.0,41560,429.8655756867329,1240618,0,44534,0,0,0,0,0,75,0.772313601068715,0,0.0,0,0.0,0,0.0,0.05232,0.1374491002233022,0.3029434250764526,0.01585,0.360655737704918,0.639344262295082,23.731376990736905,4.135569263567126,0.3045356371490281,0.2795776337892968,0.2179025677945764,0.1979841612670986,11.00198674906644,5.791765696248741,16.84840283252994,11508.138625319749,47.32155415455412,14.125703835083549,14.150722608575444,10.014216879845408,9.030910831049722,0.5872330213582914,0.7957081545064377,0.6926713947990544,0.5958149779735683,0.1212121212121212,0.7575496117342536,0.9320594479830148,0.83125,0.7386934673366834,0.1538461538461538,0.5216090425531915,0.7031700288184438,0.6459430979978925,0.5557122708039492,0.1128048780487804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268515236523,0.0044499407012457,0.0065447018355605,0.008888572850743,0.0110436559992678,0.0133587203323388,0.0158233332993485,0.0178711764765919,0.0200306591722023,0.0221321791447954,0.0242967669211456,0.0263957307060755,0.0283717105263157,0.0301563931759448,0.0322500799290436,0.0342369519401628,0.0362661588300437,0.0384479790962443,0.0404991220688007,0.0423502956608645,0.0571237821034403,0.0704577295443615,0.0844434196597947,0.0970402513212225,0.1093583704780872,0.1246763403472802,0.1350173846675712,0.1450523741160206,0.1551781160981959,0.1651996059282104,0.1779899778480332,0.18925137733607,0.2005558329895564,0.2096182806259412,0.2185081508315494,0.2278795782586591,0.2369414410903381,0.2446948188214698,0.2520201905882885,0.2586153723142997,0.2648742210939303,0.2695156229953697,0.2752621459996933,0.2787494325376914,0.2829909892452282,0.2874184552256226,0.2910562212441241,0.2951964512040557,0.2985759983489836,0.3027380702123187,0.3003766604560138,0.2985352753380924,0.2961524439832861,0.2931418952941346,0.2907076377603781,0.2878382079922086,0.2839946570283649,0.2839685203591156,0.285160153801853,0.2852842750146077,0.2851912426123481,0.2867749329049699,0.2873419827012641,0.28897921108742,0.2904357371259485,0.2923902665600082,0.294192382619498,0.2980041722452284,0.3020459377505141,0.3064421151807796,0.310030257869304,0.3147277815915932,0.3207157604955264,0.3246831623415812,0.3271264152708898,0.3330200869258781,0.3376347350842568,0.3407482305358948,0.3416301969365427,0.3415187004155648,0.0,2.3113214354292086,50.22075563632145,157.0535107154251,220.08516719691443,fqhc3_100Compliance_baseline_low_initial_treat_cost,87 -100000,95811,47488,452.1714625669286,5179,52.83318199371679,4122,42.479464779618205,1644,16.793478828109507,77.3497797498425,79.68280987800922,63.33168066437421,65.05995358146272,77.13638499295415,79.47193309745583,63.25036884906194,64.98213386372531,0.2133947568883485,210.87678055339157,0.0813118153122687,77.81971773741247,211.5575,148.79667796523896,220807.10983081275,155302.2909323971,499.51068,334.88133776674664,520815.2717328908,348988.0888068663,456.52132,224.06540193649155,473067.9149575727,231254.2043653422,2702.62348,1274.1632531708551,2786684.524741418,1295954.3233380876,972.59721,443.09299982951353,999901.7336214004,447312.8790073114,1600.583,696.0869526203954,1636820.886954525,698134.9001888861,0.37865,100000,0,961625,10036.686810491488,0,0.0,0,0.0,43467,453.1108119109496,0,0.0,41307,427.6857563327801,1237810,0,44462,0,0,0,0,0,77,0.8036655498846688,0,0.0,0,0.0,0,0.0,0.05179,0.1367753862405915,0.3174357984166827,0.01644,0.3427935447968837,0.6572064552031163,23.35720931206241,4.0920300825904405,0.309315866084425,0.2617661329451722,0.2108199902959728,0.2180980106744298,10.988398294459545,5.961494073775408,17.8695124656218,11458.054399503297,47.3907324152319,13.254746650662169,14.470622685329335,9.74035269667101,9.925010382569388,0.5638039786511402,0.7979610750695088,0.6870588235294117,0.5638665132336018,0.1078976640711902,0.7306772908366533,0.9274725274725276,0.8543956043956044,0.6832579185520362,0.1534883720930232,0.4907568887338681,0.7035256410256411,0.6201975850713501,0.5231481481481481,0.0935672514619883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361853435176,0.0041976335080657,0.0063429882071163,0.0086255067104207,0.0108635947512969,0.0131867012881217,0.0153955954323001,0.0178230556434572,0.0201253104653658,0.022149663763191,0.0241412184395854,0.0262128446018789,0.0281633660312172,0.0300995767729711,0.0322670490298222,0.0343266925684053,0.0363649538321394,0.0383997012665055,0.0404708962822884,0.0425529699619969,0.0569228682615363,0.0707197456891593,0.0839150577531811,0.0966948662708212,0.1082804561839914,0.1239558441009156,0.1349089327576879,0.1456532845161565,0.1555133039233489,0.1642050390964378,0.1769662618665345,0.1877462227802069,0.1981876135461201,0.2068064544341437,0.2160193640664539,0.2246221020435303,0.2335078066582592,0.2406626404399608,0.2490185399505299,0.2561944673445085,0.263061687259938,0.2684752104770814,0.2742200716930685,0.2789672845715381,0.2831633891721291,0.2875841942593983,0.2913515743159631,0.2957923782154801,0.2993427011360401,0.3027556821929373,0.3007430740650997,0.298449719132063,0.2955547728073265,0.2932015226736528,0.2904966478869052,0.2872852023156798,0.2840570994492625,0.2841535433070866,0.2850946843570172,0.2848292238747344,0.2848449670461354,0.2870372198637575,0.2895303388165458,0.290907875086374,0.2916417123829145,0.2926044181398126,0.2930077062556663,0.296894991418318,0.3019989570658786,0.3066991091401436,0.307841720119252,0.3088103638948865,0.3128404182057221,0.3141966390388563,0.313159615205006,0.3133575700715375,0.3133444663731592,0.3185540243658877,0.3185983827493261,0.3256704980842911,0.0,2.1644464632419678,54.79697645394166,150.25098018390486,210.9418955440978,fqhc3_100Compliance_baseline_low_initial_treat_cost,88 -100000,95803,47549,451.94826884335566,5167,52.76452720687244,4136,42.61870713860735,1596,16.262538751396093,77.41775944651599,79.74689313589579,63.37436231324406,65.0955730481305,77.2060096593674,79.5376018036601,63.29446553671478,65.01906051930109,0.2117497871485909,209.29133223569352,0.0798967765292815,76.51252882941151,212.47556,149.42498076810267,221783.8272287924,155971.08730217497,500.67822,335.4303648073623,522049.4765299625,349562.3360514414,454.78375,222.7521949646617,471646.0444871247,230049.18537084773,2694.27218,1257.922426209459,2774679.947392044,1275405.6513986608,945.59961,430.4423340784972,971859.1797751636,434142.0396338158,1550.15288,664.6388046529443,1580439.4016888824,662203.3847301832,0.38203,100000,0,965798,10081.0830558542,0,0.0,0,0.0,43593,454.463847687442,0,0.0,41226,427.230880035072,1237478,0,44443,0,0,0,0,0,78,0.8141707462188031,0,0.0,2,0.0208761729799693,0,0.0,0.05167,0.1352511582859984,0.3088832978517515,0.01596,0.3500371195248701,0.64996288047513,23.57368657424616,4.125198894079441,0.3116537717601547,0.2674081237911025,0.2183268858800773,0.2026112185686653,11.014691834964092,5.858965365511756,17.1995741517202,11562.703903433414,47.26473420319385,13.516642591158607,14.51032661263814,10.090745116846191,9.147019882550923,0.5759187620889749,0.7965641952983725,0.6889061287820015,0.5780730897009967,0.1085918854415274,0.7383100902379,0.9171974522292994,0.8141592920353983,0.7074235807860262,0.1666666666666666,0.5080562221460404,0.7070866141732284,0.6442105263157895,0.5341246290801187,0.0927051671732522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002521289198959,0.004875675346923,0.007031892116772,0.0094858930348763,0.0118665093955909,0.014027444114174,0.0163184181021302,0.0187596962521433,0.0209938878554344,0.0229254513448233,0.025010250102501,0.0270894495883717,0.0292037581464196,0.0312249058002347,0.0332948382174011,0.0352513452937956,0.0372666307902471,0.0393124468680669,0.0413558829029108,0.0434438602883764,0.057874693515572,0.0714233443102817,0.0845833726427455,0.0974326112990314,0.1104218231607773,0.1261515382014875,0.1384128127449526,0.1488683116634596,0.1579480832630938,0.1670915907873594,0.1786006194614127,0.1897646982563038,0.2005733148019458,0.2104424160370354,0.2192742493655449,0.2286545567183662,0.236832424840317,0.2449123989218329,0.2516426499909371,0.2583341910545396,0.2645380403391631,0.2701674099325223,0.2751299008030231,0.279943523105272,0.2843627189364902,0.2886082804115591,0.2931094788387548,0.2968372920106694,0.3001693097075207,0.3029433445661331,0.3005143079670735,0.2977183125678256,0.2963770051596395,0.2934621206660419,0.2910279597948231,0.2883560283037611,0.2847468863948477,0.2848237950328851,0.2849735647620828,0.2866306549628629,0.2866633077683853,0.2881372568265248,0.2890008536153734,0.2904628766697732,0.2913027874147625,0.2927113551595524,0.2937464629315223,0.2989050753345603,0.3025976739327251,0.3043888998228695,0.3065179095713446,0.3084550872936336,0.3126446849777889,0.3167622208811104,0.3207264557199026,0.3259303012404017,0.322406894429055,0.3297679112008073,0.3332430969139144,0.3316755929609793,0.0,2.129415940675245,53.05992267887854,152.17237760948532,214.35226050992964,fqhc3_100Compliance_baseline_low_initial_treat_cost,89 -100000,95727,47763,455.0126923438528,5044,51.52151430630856,3977,41.01246252363492,1545,15.763577674010468,77.3893283971574,79.7487752244985,63.35181630130408,65.09303942956464,77.18702704190247,79.55164356187079,63.27521492483981,65.02108933279857,0.2023013552549315,197.13166262771156,0.0766013764642679,71.95009676607356,210.9943,148.46656177601616,220412.06765071503,155093.26352650364,497.96025,334.0244955579702,519642.26393807394,348389.4940218234,456.73275,224.04473131120733,474296.9590606621,231855.70181709708,2599.68076,1214.9554118671165,2681262.893436544,1234784.1076705914,920.01148,414.02385314420417,945227.480230238,416773.966250708,1507.5758,643.1368584588215,1539292.0074796034,639891.0447940443,0.38185,100000,0,959065,10018.730347759774,0,0.0,0,0.0,43257,451.3146761101883,0,0.0,41323,428.9072048638315,1242223,0,44507,0,0,0,0,0,83,0.8670490039382828,0,0.0,3,0.0313391206242752,0,0.0,0.05044,0.1320937540919209,0.306304520222046,0.01545,0.3462194428652643,0.6537805571347356,23.783380338169717,4.183389728231664,0.3087754588886095,0.2602464168971586,0.2210208700025144,0.2099572542117173,11.276264818466949,5.994795401884638,16.46651294480474,11563.88001401008,45.36671496585313,12.658025233902384,13.935521454359446,9.669056876454484,9.104111401136814,0.5743022378677395,0.8106280193236715,0.6921824104234527,0.5824800910125142,0.0994011976047904,0.7495755517826825,0.927570093457944,0.8825214899713467,0.7303921568627451,0.1472081218274111,0.5005359056806002,0.728171334431631,0.6166097838452788,0.5377777777777778,0.0846394984326018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023496764130974,0.004733092117932,0.006928172200075,0.0092097113207355,0.011650603879468,0.013934409543391,0.0162033262677319,0.0183261566090487,0.0205687310329324,0.0226851804479734,0.0249718208832872,0.0270755530020109,0.0293461842767748,0.0314668039114771,0.0335994059773528,0.0351765544750901,0.037124459076133,0.0392287027144768,0.0410248414925683,0.0430633971541073,0.0583278513924129,0.0718134921050153,0.0846810563631405,0.097858201814798,0.1095052865711605,0.1243614827349161,0.1349266967941781,0.1453089732123844,0.1555087824265994,0.1646399004847081,0.1775329542517446,0.1886588347288029,0.1992954913621587,0.2086736869730669,0.2174788473599084,0.226904160574239,0.2361239773653135,0.2444949279111091,0.2518408423059032,0.2587358125365065,0.2646249537550869,0.2712121920433827,0.2768027042040445,0.2814273060257116,0.2866018663463055,0.2902396101258968,0.2937410917456428,0.2974968233799238,0.3016700516150731,0.3058640633440048,0.3029623462426814,0.3005285194591255,0.2979729919425026,0.2953840829451887,0.2933718432940828,0.2904013056542762,0.2871251260080645,0.2872276177262711,0.2880005436536926,0.2884980904165556,0.2885916044046133,0.2901570701212919,0.2902923147491764,0.2902020112129572,0.2901897901060239,0.2919370266008324,0.2923768337149156,0.2959272636691991,0.3003057254030016,0.3062897027684103,0.3074980837729383,0.3103739254258741,0.3148148148148148,0.3148162068706306,0.3168574885972261,0.3187083187083187,0.3197893152746426,0.3191701575902653,0.3227865667499306,0.3292021688613478,0.0,1.9747576794216517,51.332629601150806,144.31813108127034,206.732498561566,fqhc3_100Compliance_baseline_low_initial_treat_cost,90 -100000,95670,48079,457.5101912825337,5283,53.94585554510296,4172,43.00198599351939,1638,16.765966342636144,77.35982293729873,79.73653739334387,63.33991942654043,65.09015656492959,77.14655949869795,79.5239440717198,63.26047690198177,65.01330454798719,0.2132634386007765,212.59332162406963,0.0794425245586651,76.85201694239652,208.8207,146.99518897920652,218271.87206020692,153648.15404955213,502.40525,337.1820545100747,524559.9142887007,351858.75876458123,463.07457,226.98298840183548,480175.8858576357,234280.94147072727,2736.00265,1273.6044341757463,2823290.3836103277,1295106.8160312097,990.63483,449.5585125357185,1018177.5269154386,452657.6417409697,1597.99,678.3397488368678,1637449.0017769416,681348.029542779,0.38546,100000,0,949185,9921.448730009408,0,0.0,0,0.0,43632,455.4614821783213,0,0.0,41999,435.03710672102017,1246724,0,44742,0,0,0,0,0,88,0.9198285774014844,0,0.0,1,0.0104525974704714,0,0.0,0.05283,0.1370570227779795,0.3100511073253833,0.01638,0.3367254224968199,0.6632745775031801,23.842567557644404,4.10465469800795,0.3149568552253116,0.2567114093959731,0.2157238734419942,0.212607861936721,10.980841463007057,5.803570808239631,17.52702554235683,11756.582329735833,47.69951993172529,12.95540695242889,14.917753820161304,10.105729569627526,9.720629589507574,0.5745445829338447,0.8132586367880486,0.6894977168949772,0.5666666666666667,0.1240135287485907,0.7619439868204283,0.9380530973451328,0.8659217877094972,0.7222222222222222,0.1861702127659574,0.4976335361730899,0.7221324717285945,0.6234309623430963,0.5175438596491229,0.1072961373390558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582735852878,0.0044698513090278,0.0068584183026429,0.0093437062013771,0.0118655441678867,0.0140159804570207,0.0164562508279073,0.0188650369342529,0.0208890886432817,0.0230685817169981,0.0251910586596184,0.0273403436778661,0.0296112812711986,0.0316612096126521,0.0338112429087158,0.0358331438493499,0.0375588798592059,0.0396614669764354,0.0417507017361472,0.0440836234028805,0.0594343860675518,0.0742571147362469,0.0880352644836272,0.1008553662924658,0.1138439470964203,0.1292920101156528,0.140376389168993,0.1511317036800341,0.1607371931925083,0.1704929645490549,0.182840887049848,0.1938774405232438,0.2041109454739339,0.2127035545438627,0.2214258188824663,0.2308612440191387,0.2397866380993829,0.2476564080660027,0.2549548732368815,0.26164673570979,0.2678598268067936,0.2732332444693887,0.2790571148091639,0.2843272235325104,0.2891998738813029,0.292770847174036,0.2968949064475031,0.300358204405152,0.3046114465229926,0.3084082579692567,0.3064683035654289,0.3035238173772024,0.3008713768881005,0.2988142634585425,0.2970625722500519,0.29351713176636,0.2903154434540742,0.2907197901295294,0.2915165075406924,0.2922890233238753,0.2939382029831752,0.2943603308395349,0.2953632407097422,0.295111230113573,0.2964641016420952,0.2978016558955592,0.299847103459992,0.3043056814983896,0.3065522892910695,0.3107777339123569,0.3139682539682539,0.3178031308039267,0.3228739188080055,0.3274322777565814,0.3317963677425425,0.337230108553024,0.3349700782568666,0.3396530859217426,0.3446145581520279,0.3567877629063097,0.0,2.3514566371406094,52.82721786119206,154.06086276830356,217.88319323287715,fqhc3_100Compliance_baseline_low_initial_treat_cost,91 -100000,95856,47706,452.9815556668336,5195,52.8292438657987,4158,42.824653647137374,1637,16.702136538140547,77.34109898624328,79.63219920332004,63.34986309044478,65.04415874981957,77.12631712761132,79.42036556930158,63.2693645031989,64.96695920184705,0.2147818586319658,211.83363401846125,0.0804985872458772,77.19954797252626,209.77044,147.6539315739737,218838.90418961772,154037.03139037246,502.83883,337.1118931762752,523985.9789684526,351109.6522216049,460.32089,225.9110621173736,477090.8550325488,233160.01279066916,2718.05477,1270.2798316437422,2799527.1240193625,1290049.881200341,942.66794,431.6307416179586,968393.5903855785,435601.2029648849,1584.81696,677.8331496795959,1618514.7095643466,678226.2160760803,0.38118,100000,0,953502,9947.222917709898,0,0.0,0,0.0,43669,454.9532632281756,0,0.0,41745,432.3255716908697,1243644,0,44676,0,0,0,0,0,96,1.0015022533800702,0,0.0,1,0.0104323151393757,0,0.0,0.05195,0.1362873183272994,0.3151106833493744,0.01637,0.3504053058216654,0.6495946941783346,23.37485999011217,4.162670793394347,0.3179413179413179,0.2585377585377585,0.2190957190957191,0.2044252044252044,11.261002625257422,6.103303732181102,17.580791946940035,11616.208818301726,47.555364813823545,13.141167269363269,14.887461450245148,10.17100630977192,9.3557297844432,0.5788840788840789,0.8037209302325582,0.708018154311649,0.5718990120746432,0.1011764705882353,0.7514498757249378,0.933774834437086,0.863768115942029,0.75,0.1243523316062176,0.5083022704168079,0.7090032154340836,0.6530194472876152,0.516546762589928,0.0943683409436834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0044279620228794,0.0068567487245027,0.0092899059841208,0.0116378346512715,0.0138300903688024,0.0160253471479364,0.0181994389186432,0.0204379711151512,0.0226173061775627,0.0247984676370266,0.0268196875993559,0.0289637747398909,0.0311435773445136,0.0334264134612412,0.035297760346785,0.0372763933409161,0.0394019768333367,0.0416614758523317,0.0437894693036756,0.0577875561765533,0.0719839478304489,0.084979574735519,0.0979280215914222,0.1096790497851908,0.1249234278954817,0.1359408436976926,0.1460300246661563,0.1558721519662771,0.1654233654876741,0.1778538296796134,0.1899143487476748,0.2008805304924448,0.2098549520696929,0.2184866553719553,0.228195726107523,0.2376548030793261,0.2456183769433257,0.2532936917717281,0.2611140376995488,0.2669774328247718,0.2732832103644633,0.2792766153736974,0.2833682697490567,0.2880627458598416,0.2926047789813548,0.2964473355016262,0.2997151142086788,0.3030103103452736,0.3055020451246866,0.303377441544281,0.3012225476848605,0.2991082120567476,0.296678336853679,0.293646897823791,0.2908010050867193,0.2872146625057424,0.2871020233731652,0.2874378748928877,0.288362586729297,0.28890184937821,0.2883601031132262,0.2890879650074653,0.2906893142805787,0.2919699204487753,0.2938434545787833,0.2934434663313136,0.2990913679959616,0.3038094569945278,0.3085275003962593,0.313320910784893,0.3149618805590851,0.3168721690991444,0.3185713202396299,0.320573260418631,0.3237145232157701,0.3266585142158361,0.3265060240963855,0.3302452316076294,0.3396801218583397,0.0,2.016873451604249,52.61217800558313,152.15935683218902,221.06383087101636,fqhc3_100Compliance_baseline_low_initial_treat_cost,92 -100000,95658,47406,451.3161471074034,5152,52.79223901816889,4100,42.43241548014802,1603,16.485814045871752,77.31769350596971,79.73873383412213,63.289715480586615,65.08084282483189,77.11657519346448,79.53764711838606,63.21504585663548,65.00789784560943,0.2011183125052298,201.08671573606784,0.0746696239511379,72.94497922245569,209.75174,147.54346603210763,219272.324322064,154240.3761672914,496.99819,332.8845209989006,519126.6281962826,347564.26016736764,450.90278,220.3801387508934,468614.9825419724,228342.39976586247,2674.65647,1234.4510511328765,2767966.76702419,1262965.409682767,934.7583,419.0905151627881,963595.9564281084,424738.5785302208,1561.21554,656.2426420089253,1606246.5658909867,664137.2785161326,0.38039,100000,0,953417,9966.923832821092,0,0.0,0,0.0,43358,452.8110560538585,0,0.0,40882,424.6064103368249,1245466,0,44645,0,0,0,0,0,67,0.7004118840034289,0,0.0,0,0.0,0,0.0,0.05152,0.1354399432161728,0.3111413043478261,0.01603,0.3606313834726091,0.6393686165273909,23.919906637150643,4.128843025231818,0.3129268292682927,0.2585365853658536,0.2190243902439024,0.2095121951219512,11.07299169686374,5.832825378804764,16.904952234130835,11562.23938043124,46.54713672718892,12.8100539926996,14.317763244257314,10.062108140826094,9.357211349405906,0.5673170731707317,0.7943396226415095,0.6812159002338269,0.5556792873051225,0.129220023282887,0.7416520210896309,0.927400468384075,0.8652037617554859,0.6866359447004609,0.1314285714285714,0.50033760972316,0.7045813586097947,0.6203319502074689,0.5139500734214391,0.1286549707602339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0045227761327221,0.0069035532994923,0.008922854907062,0.0113545026300528,0.0135391198044009,0.0159243466019219,0.018114202229283,0.0203145947826798,0.0226224399844195,0.0246984550633885,0.0266615941432919,0.0288432824293849,0.0307709764601514,0.0332585987787616,0.0354618735707116,0.0376986801314684,0.0394706774414691,0.0414498605503059,0.043319116098151,0.0578307713207862,0.0722338642078792,0.0856020502478783,0.0979578510568831,0.1096573208722741,0.1250569258957223,0.1355806119087344,0.1461220312966358,0.156471972614463,0.1654457572502685,0.1775663635677226,0.1886579842676663,0.1991221764795573,0.2094456976413131,0.2183202574047955,0.2275368747920594,0.2365389557425222,0.2449639113152946,0.2523725196385596,0.2588217771871133,0.2644886429414897,0.2704584279128542,0.2764410552740018,0.2814729546626377,0.2856014100771896,0.2901393526447431,0.2942603779720585,0.2972069311839713,0.3008140603362367,0.3037351734329028,0.3007727309442395,0.2986543510233255,0.2960810525575177,0.2939284684164984,0.2920420865441612,0.288466831819433,0.2850524917783961,0.2860042892457803,0.2865532914560033,0.2874185588240515,0.2879320935946836,0.2885090852007378,0.2895479054334301,0.2911829862649535,0.2922057807324802,0.2945129358248688,0.295831098817353,0.3012463867217853,0.3056018904642757,0.3087512291052114,0.3132246376811594,0.3153972197262011,0.3186151530356247,0.3204449152542373,0.3252944475602916,0.3281562536769031,0.3298906439854192,0.3335985677342351,0.3272727272727272,0.3339636913767019,0.0,1.645243832585879,50.02512506914488,152.13494394332184,220.0064870418987,fqhc3_100Compliance_baseline_low_initial_treat_cost,93 -100000,95714,47489,452.0655285538166,5076,51.94642372066782,4037,41.634452640157136,1585,16.183630398896714,77.34880342590687,79.70712566940597,63.338894218876014,65.07755532012769,77.14857625613882,79.5111128381402,63.263443616562405,65.00637914249722,0.2002271697680413,196.01283126576163,0.0754506023136087,71.17617763046269,210.16732,147.9232649893447,219578.45247299247,154547.1560997813,502.95694,336.80698249026835,524938.650563136,351349.73500910174,451.28592,220.4235202778508,468641.212361828,228053.15216593293,2645.67406,1217.548785264467,2731389.535491151,1239391.0810531755,939.22606,416.1149158799303,971049.2195499092,424550.56791611057,1544.32278,654.7401972770398,1579143.3437114735,653963.6918297979,0.38021,100000,0,955306,9980.838748772385,0,0.0,0,0.0,43657,455.5446434168461,0,0.0,40919,424.6714169296028,1243737,0,44567,0,0,0,0,0,94,0.9820924838581608,0,0.0,0,0.0,0,0.0,0.05076,0.1335051681965229,0.3122537431048069,0.01585,0.346609055044148,0.6533909449558519,23.932361464911192,4.174136998888739,0.3153331681942036,0.2543968293287094,0.2103046816943274,0.2199653207827595,11.181005388613764,6.0043833136621885,16.930950790211106,11578.005289944327,45.9086465961912,12.53529412665594,14.328594535638768,9.33188696128672,9.712870972609764,0.5687391627446123,0.7945472249269717,0.6881382560879812,0.5948174322732627,0.1114864864864864,0.724910394265233,0.908433734939759,0.8348348348348348,0.7180851063829787,0.1055555555555555,0.5090722355357754,0.7173202614379085,0.6361702127659574,0.5597579425113465,0.1129943502824858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025720737597845,0.0048047682763654,0.0072446857084876,0.0095592194150692,0.0117333658695298,0.013752735786634,0.0162067946221982,0.0185567010309278,0.0203975269531449,0.0224655851798782,0.0247217268310682,0.0267460358187509,0.0287047889293278,0.0308549190791912,0.0331129243560516,0.0351629502572898,0.0370888081259901,0.0390960592666376,0.0412161038096822,0.0431697405439199,0.057793930279675,0.0718292759508509,0.0848161826422696,0.0979694897422409,0.1104055693265123,0.1256571640133284,0.1373166953163133,0.1471825063078217,0.1564389649793807,0.1656475939155993,0.1777239187806323,0.1887774423561744,0.1991907941963411,0.207979264411562,0.2163651967256403,0.2259733640614266,0.2356199879375432,0.2439106748908198,0.2528576455497917,0.2598043707334952,0.2657392833996852,0.271469504707327,0.2772631006045978,0.281780726758809,0.2870077067783239,0.2913542859253241,0.2959201519012642,0.2993890279065632,0.3019028795101345,0.3056466158484405,0.302645374626986,0.3000453365206281,0.2972064367298711,0.2949759695180914,0.2932193579983081,0.2905321734876397,0.2879058377438976,0.2871548069210496,0.2870479208190661,0.2872177505520336,0.287009739896257,0.2879992130631517,0.2884651492708572,0.2888472853704198,0.2908411394072974,0.2912568447823943,0.2923876907339527,0.2962138782674105,0.3011879804332634,0.30613858255267,0.3101334786161809,0.3135836613126263,0.3165927802406586,0.3211963589076723,0.3238984809887725,0.3280114381031812,0.3328192473781616,0.3338785524432631,0.3342556723851688,0.3353822512485593,0.0,2.0264892103046166,48.57506478323312,152.35321724498462,215.21535002294016,fqhc3_100Compliance_baseline_low_initial_treat_cost,94 -100000,95623,47838,456.0409106595693,5016,51.02328937598695,3965,40.73287807326689,1484,15.01730755153049,77.26744378178137,79.68424515136336,63.28338998351626,65.06994828717384,77.08112554562823,79.50680792773177,63.210711198215314,65.00436059249854,0.1863182361531414,177.43722363158554,0.072678785300944,65.58769467530112,210.51404,148.1442806628221,220149.7756815829,154925.16015854347,497.64868,334.0031420355476,519662.999487571,348532.4747666102,455.81401,223.66923662953428,473027.3678926618,230938.0786254165,2587.56594,1206.9170181174115,2658271.7756188363,1214773.1810530114,897.46314,411.9955095670889,913074.2290034824,405909.911015798,1451.11572,626.6698603820072,1469654.8947428963,612090.2607589082,0.38203,100000,0,956882,10006.807985526497,0,0.0,0,0.0,43215,451.1466906497391,0,0.0,41200,427.15664641351975,1240727,0,44470,0,0,0,0,0,90,0.9411961557365904,0,0.0,0,0.0,0,0.0,0.05016,0.131298589116038,0.2958532695374801,0.01484,0.3387497610399541,0.6612502389600459,23.752243261267235,4.170940563877082,0.3185372005044136,0.2673392181588903,0.2022698612862547,0.2118537200504413,11.20600265031609,5.863087947214527,15.939738017540378,11605.577857564633,45.20700185328828,12.852636612929413,14.35831188395824,8.792345211005038,9.203708145395598,0.5715006305170239,0.7981132075471699,0.7070467141726049,0.5349127182044888,0.1166666666666666,0.742437337942956,0.9149425287356322,0.8376811594202899,0.7580645161290323,0.1623036649214659,0.5010683760683761,0.7168,0.6579520697167756,0.4675324675324675,0.1032357473035439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025229497233874,0.0048975866964104,0.0073302469135802,0.0094809365092268,0.0115769234681939,0.0138713488409989,0.0162428370414177,0.0182339789073905,0.0204707662733389,0.0224577572964669,0.0247477026583524,0.0270372995572539,0.0290411184379725,0.03086038124678,0.0327828241123038,0.0350880820444959,0.0369959917556524,0.0390691494882813,0.0410889080752707,0.0432588545630845,0.0584675522852932,0.0727430791951651,0.0855072463768115,0.0982855578255649,0.1101983930060922,0.1257108967094881,0.1371786700658593,0.1471647836282242,0.1575017117425539,0.1668743286788399,0.1792863922685305,0.1898813715400032,0.200426694532432,0.2103339206952029,0.2187097413536814,0.2277673130193905,0.2371299727642095,0.2444296903132877,0.2527476270493664,0.2591539933758896,0.2656510464900907,0.2712334214404341,0.276942014747831,0.2818117497511662,0.2855614843265713,0.2907435732964918,0.2941367915081113,0.2981329331264467,0.3020780734123131,0.3054682755525044,0.304147465437788,0.3014156589211276,0.299281588956191,0.296136222373195,0.2939199738301637,0.2913547359879974,0.2882788753799392,0.2887290482198155,0.2894996932724422,0.2892160353175733,0.2897294064882643,0.2904588895031988,0.2913017120638836,0.290643574274838,0.2921439869625653,0.2931070333212039,0.2942644098551217,0.2977991746905089,0.3033150522234254,0.3051685926864018,0.3074290407958382,0.3122700367941129,0.3158427108357567,0.318588127435251,0.3225199811941702,0.32357491372129,0.3239133773613884,0.3296725645718934,0.3198871650211565,0.3258964143426295,0.0,2.768889284334884,49.664647136553526,142.78551728448753,210.2521783126787,fqhc3_100Compliance_baseline_low_initial_treat_cost,95 -100000,95825,47451,450.79050352204536,5176,52.68979911296634,4100,42.06626663188104,1546,15.674406470127836,77.40182060844235,79.71540660199327,63.36325590393732,65.07555125195583,77.20295737098907,79.5219513583501,63.28851455347802,65.00592483107869,0.1988632374532812,193.4552436431716,0.0747413504592984,69.62642087714244,209.6798,147.5200161134382,218814.88129402557,153946.87786635876,500.31346,335.73322822741744,521414.2864596921,349664.0200567884,455.75639,223.2948373932061,470899.9634750848,229458.13080965856,2643.64644,1236.6594995819169,2716928.285937908,1248700.7219440823,960.94088,430.0262370235176,986520.5426558832,432543.3187865751,1498.8834,638.7891402457892,1522774.599530394,631051.9767412575,0.37921,100000,0,953090,9946.130967910252,0,0.0,0,0.0,43485,453.0654839551265,0,0.0,41308,426.4022958518132,1249828,0,44819,0,0,0,0,0,84,0.8661622749804331,0,0.0,1,0.0104356900600052,0,0.0,0.05176,0.1364942907623744,0.2986862442040185,0.01546,0.3606951377334073,0.6393048622665927,23.608017077982822,4.110936199736858,0.3209756097560975,0.2719512195121951,0.2026829268292683,0.204390243902439,11.462429491514824,6.306929152005242,16.5281508706279,11534.923270714184,46.99456447357648,13.637125001081062,14.982873532870691,9.288818781110471,9.085747158514245,0.5846341463414634,0.7946188340807175,0.6983282674772037,0.592057761732852,0.1193317422434367,0.7421746293245469,0.9052631578947368,0.8611111111111112,0.6746411483253588,0.1176470588235294,0.5183645183645184,0.7125,0.6370292887029289,0.5643086816720257,0.1197604790419161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0045302982699733,0.0069695248143489,0.0093543374264907,0.0116204593283923,0.0138442118978785,0.0159914386179483,0.0181159420289855,0.0206472187583048,0.0230289755688156,0.0250525344677361,0.0270353491809336,0.0291919783732667,0.0313825624974259,0.0335097001763668,0.0357821864021492,0.0375960085294909,0.0396113524891898,0.0415052400884946,0.0436063151102646,0.0584057321054223,0.0718198544785481,0.0849121851029048,0.0973580545196701,0.1094446141369031,0.1244534105071928,0.135527681844185,0.1465748182166092,0.1567162586181135,0.1658418493047967,0.1781169662353308,0.1901339961097903,0.2006518550708892,0.2103095261507533,0.2184480427398344,0.2277250738899897,0.2357224904928124,0.2436649803260258,0.2510291332599993,0.2577326665827507,0.2632217931225863,0.2683924501840706,0.2742879438158408,0.2787937580090779,0.2829801694215879,0.2872900970108829,0.2911193050434348,0.2957778681028351,0.299387343604591,0.3032637901058954,0.3008746120672282,0.2984459941793421,0.295857738822637,0.2927809219337279,0.2905780475168381,0.2872322559960916,0.2846619767185084,0.2847593364386696,0.2850993602831087,0.2857625131038894,0.286472889882616,0.2889229499498909,0.2895640412027884,0.2911240499577759,0.293351463536821,0.2927043732381617,0.2947707432833291,0.2973250388802488,0.3004412633334491,0.3049260308467107,0.3092718227046585,0.3141543826279918,0.3189520415181642,0.3225490196078431,0.3278794601589943,0.3299065420560748,0.3345432546884452,0.3425291985501409,0.349480021893815,0.3603053435114504,0.0,2.8110053667821098,52.22566927889919,153.76804116181103,208.70005453850237,fqhc3_100Compliance_baseline_low_initial_treat_cost,96 -100000,95708,47212,449.7534166422869,5080,52.12730388264304,3971,41.04150123291679,1574,16.101057382872906,77.32145341825886,79.70827276542755,63.3143933609397,65.07992933366269,77.12524878315915,79.51450992084212,63.2408459588036,65.00973099157274,0.1962046350997042,193.7628445854358,0.0735474021360929,70.19834208995235,210.22672,147.84249535631184,219654.28177372843,154472.453040824,502.13729,337.3454809375259,524200.7355706942,352018.88132394984,454.23419,222.3791285217386,471917.58264721866,230252.9199375565,2584.65252,1199.5766672728744,2671766.811551804,1224577.597769125,929.32929,417.75820614602446,959517.4593555398,425005.1052639521,1534.4235,646.6468831275967,1571041.5430267062,647435.54652426,0.37846,100000,0,955576,9984.285535169474,0,0.0,0,0.0,43688,456.00158816399886,0,0.0,41186,427.6653989217202,1241818,0,44569,0,0,0,0,0,83,0.8672211309399424,0,0.0,1,0.0104484473607221,0,0.0,0.0508,0.1342281879194631,0.3098425196850394,0.01574,0.3476702508960573,0.6523297491039427,23.68311130289861,4.206356223736765,0.311760261898766,0.2593805086879879,0.2178292621505917,0.2110299672626542,11.5072280469053,6.213222218054632,16.847919380481134,11494.168170112242,45.56819790450814,12.577055409878808,14.155888952714976,9.67461818878166,9.1606353531327,0.5769327625283304,0.8038834951456311,0.6825525040387722,0.5976878612716763,0.1205250596658711,0.7437229437229437,0.9170616113744076,0.8342857142857143,0.7453703703703703,0.1137724550898203,0.5085227272727273,0.725328947368421,0.6227477477477478,0.5485362095531587,0.1222056631892697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088027883602,0.0045837136193083,0.0068316550267987,0.0092580359955691,0.0113543871072765,0.0134768967484312,0.0155521788347593,0.0178068205023483,0.0199041086087569,0.0219563125678137,0.0240519176944606,0.026186344078292,0.0283092622310002,0.0303564252372561,0.0325660611065235,0.0346360628618693,0.036739724892277,0.0385645198115361,0.0406214900786222,0.0428660760812923,0.0576432987967914,0.0712423979148566,0.0846687445560348,0.0974208416201029,0.1096879022557977,0.1251587637595258,0.1359048114379119,0.1462380708929788,0.1560773333048338,0.1648147750917008,0.1777404343329886,0.1886974216872686,0.1993670541919065,0.2092097347552639,0.2187283465865971,0.2274855808083603,0.2356910242683797,0.2439065502477834,0.2513915813579113,0.2569083541289865,0.2633720594185307,0.2694945953841659,0.2751404743597326,0.2795266158784917,0.2843109875299003,0.2884343191916208,0.291745849169834,0.2956586921444816,0.2989612134680482,0.3013050979152674,0.2984153864763517,0.2956491902278342,0.2936166624504596,0.2905477515936427,0.289292497625831,0.2860181161637799,0.2824729227606925,0.2829656822576945,0.2837980638123807,0.2836530754021268,0.2847614065244199,0.2856495527798574,0.2880404150053232,0.2895764091811469,0.2910557008807506,0.2931398348141007,0.2942517598107669,0.2992343416593448,0.3030981970943462,0.3071143275200696,0.3116335960858929,0.314991518235793,0.3177257525083612,0.3198136266422242,0.323598459949291,0.3271428571428571,0.3315958914609842,0.332725430597771,0.3365305563167991,0.3297791317593297,0.0,1.7249327297080432,50.87044801989161,150.3166559186033,204.41644499012293,fqhc3_100Compliance_baseline_low_initial_treat_cost,97 -100000,95693,47145,449.22826121032887,5176,52.68932941803476,4044,41.53908854357163,1517,15.382525367581746,77.3455376358958,79.7313808595379,63.32130932583449,65.08677866671182,77.15199999313228,79.54465783461069,63.24711567164744,65.01788159530412,0.1935376427635162,186.72302492720405,0.0741936541870558,68.8970714077044,211.48732,148.74688532671112,221006.0505993124,155441.76201677357,500.75497,335.0657511640097,522581.04563552194,349434.40080675675,449.87342,219.96306071440335,465176.87814155687,226080.64741884623,2633.82256,1226.6300680180027,2705739.8869300787,1235822.8429446656,916.95267,418.93845452081615,940230.7692307692,420020.6721048402,1479.21812,636.3117413285102,1501741.4439927686,628365.43456551,0.38005,100000,0,961306,10045.729572696018,0,0.0,0,0.0,43675,455.65506358876826,0,0.0,40717,420.6054779346452,1240928,0,44401,0,0,0,0,0,81,0.8464568986237238,0,0.0,0,0.0,0,0.0,0.05176,0.1361926062360215,0.2930834621329212,0.01517,0.3635690485005553,0.6364309514994446,23.5174540400998,4.188727815066688,0.3229475766567755,0.2601384767556874,0.2087042532146389,0.2082096933728981,11.458464389997443,6.297242307370229,16.170611402033167,11513.872969689157,45.83952178008098,12.755128842711676,14.615542544068914,9.25719583184386,9.211654561456536,0.5682492581602374,0.7709125475285171,0.6937212863705973,0.5675355450236966,0.1211401425178147,0.7298701298701299,0.916256157635468,0.8546511627906976,0.725,0.1560975609756097,0.5036344755970924,0.6795665634674922,0.6361746361746362,0.5186335403726708,0.1098901098901098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097285686785,0.0042192808965971,0.006243971775217,0.0087603406573304,0.0108956620818751,0.0129252393562843,0.0152046664355203,0.0176567302880834,0.0196437336387434,0.021760947036415,0.0238654427978052,0.0260887428101889,0.0282155200789993,0.03016095459885,0.032156862745098,0.0342610205938301,0.0362762464132923,0.0384008635004981,0.0404330327894424,0.0424277155509247,0.0574221646631226,0.0706271456083061,0.0840583969185235,0.0963584137372292,0.1091187173672274,0.124151134993336,0.1351423053250419,0.1460905130635764,0.1558945522962456,0.1652586493768584,0.177442652638841,0.1889945416738866,0.1995602338162778,0.2086811900254943,0.2175760310838626,0.2274918278020943,0.2363269041878739,0.2442029230094171,0.2522263945454752,0.2585449051074838,0.2645112781954887,0.270980410491374,0.276182931731656,0.2801541518060176,0.2846887051005312,0.2886956735617483,0.2926835360827317,0.2963930932112,0.300059348712391,0.3032281798951531,0.3005254973457021,0.2980301972540484,0.295930102098059,0.2942724814452563,0.2922578928698119,0.2891685584995353,0.2862190812720848,0.2862502252584328,0.2866655313351499,0.2867499064887875,0.287512154985414,0.2885218729651335,0.2885021648643561,0.2894132852017737,0.2901239005919429,0.2919243361222263,0.2928786074729262,0.2963878029710711,0.300690521029504,0.3048265519554836,0.3066570318851052,0.3098317560462671,0.3158255025203809,0.3210387655250282,0.3247287691732136,0.3232779097387173,0.3277837177333129,0.3321197411003236,0.3362326719217178,0.3362730061349693,0.0,2.780346567088059,49.59460100196632,144.1724580719696,217.59984811023045,fqhc3_100Compliance_baseline_low_initial_treat_cost,98 -100000,95621,46850,446.701038474812,5106,52.41526442936176,4024,41.58082429591826,1535,15.73922046412399,77.23812690061078,79.66873570027167,63.25655152000609,65.05405065901596,77.0489847210993,79.4812192970297,63.1865979028722,64.98719018906098,0.189142179511478,187.51640324197183,0.0699536171338905,66.86046995497463,211.1032,148.4864686281234,220770.75119482123,155286.46283569862,499.39411,334.219126032108,521762.0397193085,349022.8046476276,448.13707,218.9541269598932,465842.1476453917,226826.4595033564,2643.90698,1215.4643542290453,2732808.797230734,1238950.0990671986,929.14661,411.89740503229865,957008.5127743904,416071.6840780769,1506.1096,624.4325288352716,1545052.3002269375,626107.2766437939,0.37648,100000,0,959560,10035.034145219148,0,0.0,0,0.0,43567,455.0883174198137,0,0.0,40670,422.42812771253176,1236045,0,44416,0,0,0,0,0,70,0.7320567657732089,0,0.0,2,0.0209159075935202,0,0.0,0.05106,0.1356247343816404,0.3006267136701919,0.01535,0.3471726470035694,0.6528273529964306,23.82104141019402,4.1599380019973164,0.30889662027833,0.2726143141153082,0.202534791252485,0.2159542743538767,11.242695817742105,6.001397158038341,16.232719298168426,11467.624586826729,45.86278216244706,13.390514070337796,14.008495116759422,9.027587316826162,9.436185658523694,0.5787773359840954,0.8085688240656336,0.7071600965406275,0.5840490797546012,0.1001150747986191,0.7596412556053812,0.9389671361502347,0.8881789137380192,0.7183098591549296,0.0981595092024539,0.5094534204193881,0.7257824143070045,0.646236559139785,0.5365448504983389,0.1005665722379603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024627047186638,0.0048786424999746,0.006955162050199,0.0090462783204415,0.0109815176681322,0.0131523987081919,0.0149829160079555,0.0170494013811138,0.0193523310762432,0.0215503113733202,0.0233729723074397,0.0255235198619017,0.0279124340012968,0.0300096905218449,0.0324056384571694,0.0342387086760825,0.0361589417704197,0.0382797486106061,0.040379330446369,0.0423864964112835,0.0568304182827511,0.0708492266420757,0.0843077310977339,0.096156884222056,0.1087397300779352,0.1235859848324365,0.1343163083198776,0.1452781922830953,0.155891258064171,0.1650233077699727,0.1765454741611824,0.1876388783506942,0.1983396341529846,0.2075980150514312,0.216151600286454,0.2257581471703973,0.2351967799642218,0.2426817859034908,0.2510628140132311,0.258269252840583,0.2644817868698466,0.2703576953729314,0.2748467276198608,0.2794248372294164,0.2838319999025804,0.287642641900904,0.2913228840125392,0.2954568631450132,0.2992577597840756,0.3025327834179357,0.3003829970870644,0.2972809084770055,0.2946077394798054,0.2919349005424955,0.2892307692307692,0.2858610170011191,0.2824722662440571,0.2838550653192014,0.2844923445385339,0.2851836639939999,0.2861957274718691,0.2864734585827456,0.2874672809129934,0.2881658920271719,0.2890724421927149,0.2903133458255257,0.2922634471368774,0.2964590657960824,0.3016028557429831,0.3052063216805265,0.3094719651605879,0.3120840815464244,0.3143910977744436,0.3178487801193443,0.3240171417924352,0.3265377855887522,0.3289295901516288,0.3319411296738265,0.3398479913137893,0.3511161558834658,0.0,1.997558922569112,48.707579590202506,150.97484959809432,216.04960598976777,fqhc3_100Compliance_baseline_low_initial_treat_cost,99 -100000,95723,48390,461.6236432205426,4734,48.22247526717717,3732,38.44426104488994,1432,14.625534093164651,77.33641368994157,79.71363813466779,63.332022412709286,65.09038792489432,77.15497530015666,79.53335802082259,63.26302684829166,65.02389792068665,0.1814383897849012,180.2801138451997,0.0689955644176265,66.49000420766527,231.6303,162.86782963416812,241979.7749757112,170144.9282138756,539.47818,364.2985507141557,563031.1001535681,380026.1082432945,481.05849,236.64520005013512,498530.5934832799,244151.1810492649,2621.0678,1232.7730998255254,2701573.164234301,1251477.7801098947,859.51344,391.7599393632922,883632.3140728979,395053.23460634,1392.91482,597.709396819931,1423532.5052495222,596846.6154767856,0.37891,100000,0,1052865,10999.080680714143,0,0.0,0,0.0,47043,490.88515821693846,0,0.0,43372,449.2964073420181,1111869,0,39876,0,0,0,0,0,88,0.9088724757895176,0,0.0,2,0.0208936201330923,0,0.0,0.04734,0.1249373202079649,0.3024926066751162,0.01432,0.3681340872374798,0.6318659127625202,23.21424771386912,4.194521718207937,0.3057341907824223,0.2840300107181136,0.2055198285101822,0.2047159699892818,11.74106434804788,6.318856010342095,15.319571693216794,11212.244414090012,42.760902323980666,13.163531371104868,12.71489028634983,8.466706612631803,8.41577405389416,0.5769024651661308,0.8009433962264151,0.6836108676599474,0.5775749674054759,0.1060209424083769,0.7396021699819169,0.8717391304347826,0.872852233676976,0.8089887640449438,0.1073446327683615,0.5083777608530083,0.7466666666666667,0.6188235294117647,0.5076400679117148,0.1056218057921635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002128004539743,0.0045030882666152,0.0067313061576729,0.0089539799983738,0.0109254041077078,0.0130772207850406,0.0154702780978798,0.0179089238309168,0.0201200249455593,0.0222549802428188,0.0244477474245297,0.0264878905167192,0.0286390045760707,0.0306831875907672,0.0327819797137638,0.0347807212477648,0.0370577454726182,0.038996607637484,0.0410647099174756,0.0429266361808731,0.0576306583824988,0.0713568259814179,0.08481117531698,0.0969861343256909,0.1088390918481354,0.1247661625289324,0.1356167578340329,0.1448396873504546,0.1542870561111763,0.1627939364722266,0.1738213359448145,0.1840104679203659,0.1948537401660364,0.2037269658871205,0.212548071640479,0.2214727996461742,0.2298196160574019,0.2384799487623178,0.2460159136762405,0.2523755617303008,0.2575020510035474,0.2630829227284403,0.2683563439666473,0.2729208281999449,0.2769117005285361,0.2807431726240977,0.2839142325511695,0.2877875971354563,0.2913963766055876,0.2945927428917758,0.2909205785879443,0.2873014781711928,0.284156465456592,0.2813059292188672,0.2790480149657036,0.2751426342597549,0.272018841679312,0.2725529718302935,0.2727458736870822,0.2738513068110959,0.2743106763492449,0.2752223184071771,0.2753674480576258,0.2756615166045107,0.2777711433279992,0.2780985423193434,0.2796133067955644,0.2827560240963855,0.2858541703094946,0.2902625430641904,0.2923989956630906,0.2980507343124166,0.3003502069404648,0.3031372248216614,0.3065535124941065,0.3104273913563989,0.3128362797847809,0.3151490569864125,0.3133678192213449,0.3184210526315789,0.0,2.1158448856864074,47.69968710918347,140.6379584364615,190.19683466916487,fqhc3_100Compliance_implementation,0 -100000,95610,48542,464.459784541366,4843,49.46135341491476,3836,39.54607258654953,1473,15.029808597427047,77.26635035352784,79.70548199910223,63.26822878755484,65.07262016588079,77.08511336380973,79.52840909211582,63.19930487711281,65.00786630128586,0.1812369897181156,177.07290698641032,0.0689239104420309,64.75386459493393,230.82444,162.43345226708217,241422.9055538124,169891.69780052523,544.37936,366.8814285014111,568794.822717289,383146.9495883392,486.13343,238.81242140489252,505043.4264198305,247036.9651253166,2669.15717,1246.9189940438912,2753362.399330614,1265821.1631041637,885.38731,401.9002485843196,912838.782554126,407152.07466197945,1433.11136,603.9191256426695,1463769.2500784437,600913.0649639901,0.38037,100000,0,1049202,10973.7684342642,0,0.0,0,0.0,47469,495.88955130216505,0,0.0,44049,457.25342537391487,1106555,0,39719,0,0,0,0,0,80,0.8367325593557159,0,0.0,0,0.0,0,0.0,0.04843,0.1273233956410863,0.304150320049556,0.01473,0.3576642335766423,0.6423357664233577,23.10394997972892,3.99514793036463,0.3115224191866527,0.2825860271115745,0.2035974973931178,0.2022940563086548,11.415803855540917,6.170525911974118,15.619056451471767,11276.850266111644,43.93211595575976,13.396765145483164,13.409067482217845,8.733061666265604,8.39322166179315,0.585245046923879,0.7998154981549815,0.703765690376569,0.586427656850192,0.1018041237113402,0.7572304995617879,0.9240780911062908,0.8773006134969326,0.7061855670103093,0.09375,0.512430426716141,0.7078651685393258,0.6386651323360184,0.5468483816013628,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023004580647776,0.0042404260715191,0.0062762143662343,0.0084187408491947,0.0108202194580729,0.0129437304442655,0.0150330666231221,0.0172996944708418,0.0192968813947777,0.0215288451685623,0.023328133338807,0.0253685011204078,0.0275779006207343,0.029807196618208,0.0319262113058657,0.034011423368238,0.0362769485903814,0.0382837735378735,0.0403838547846541,0.042343714148641,0.0574588869954313,0.0712736190146823,0.0842997604941384,0.0967072554141737,0.1086853195601888,0.1239672047794585,0.1341722642632429,0.1444937491999829,0.1544537923062102,0.1637959749427831,0.1743886257969169,0.1859789478248615,0.195944106211268,0.2044456129972283,0.2129104074592485,0.2224810328763476,0.2314995811225914,0.2395780562216443,0.2474840409823031,0.2548160719200073,0.2598089725036179,0.2652956117659452,0.270069017769412,0.2752405718599829,0.279309381189021,0.2831314900229386,0.2867803570981393,0.2907228302367014,0.2942737321701312,0.2964789010902092,0.2939436316695353,0.2912013187718936,0.2883460602736644,0.2844886011333977,0.281539716680264,0.2785738290916867,0.2751018603329017,0.2751388638560731,0.2759419894681232,0.2761072988147224,0.276896306552408,0.2782864359288054,0.2780716241925031,0.2791210750339848,0.280436346199952,0.2816908727168801,0.2837388909395497,0.2881377191057038,0.2926419649417445,0.2975186988009023,0.3012375900992792,0.302906976744186,0.3069375432417133,0.3110541782834752,0.3138652350981118,0.3123543123543124,0.316518596596898,0.3205741626794258,0.3204851752021563,0.3253909158600149,0.0,2.3013598429931355,49.39822719446968,140.51341820001804,198.6515412988029,fqhc3_100Compliance_implementation,1 -100000,95714,48363,462.7640679524417,4864,49.73149173579623,3867,39.91056689721462,1443,14.8045218045427,77.34534288058313,79.71471880696708,63.32656324425341,65.07475505889973,77.16389500362297,79.53435795791252,63.25867285929176,65.00911296888185,0.1814478769601635,180.3608490545656,0.0678903849616432,65.64209001787447,229.87976,161.73868955113574,240173.6005182105,168981.22484812647,537.48057,361.54478434169664,561059.1658482563,377245.1097453838,480.42648,235.46485395418807,498524.4060430032,243341.24150892856,2726.65931,1267.9049967562642,2818399.231042481,1294323.01100807,903.72489,412.5694879674282,932091.0316150198,418947.0199558205,1410.29272,594.8921771309031,1448825.1457467035,600526.9679221873,0.37997,100000,0,1044908,10916.98184173684,0,0.0,0,0.0,46853,489.01937020707527,0,0.0,43424,450.3729861880185,1120286,0,40176,0,0,0,0,0,84,0.8671667676619931,0,0.0,0,0.0,0,0.0,0.04864,0.1280101060610048,0.2966694078947368,0.01443,0.3388332351208014,0.6611667648791986,23.436373115179716,4.048562839807939,0.3154900439617274,0.2679079389707783,0.2097232997155417,0.2068787173519524,11.306879001233908,6.156325919216168,15.348114690158516,11318.71303974839,44.177015137648766,12.584770657831015,13.882116862289973,9.03410933173805,8.676018285789723,0.5761572278251875,0.7963320463320464,0.690983606557377,0.5869297163995068,0.105,0.7579948141745895,0.9245283018867924,0.8753709198813057,0.7522935779816514,0.146067415730337,0.4985239852398524,0.7075163398692811,0.6206115515288788,0.5261382799325464,0.0932475884244373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.004591247238157,0.0065946998904265,0.0087040422506601,0.0108808395533771,0.0130015577434101,0.0154429528148986,0.0178843032573522,0.0200049066710281,0.0219876958982915,0.0238144055112459,0.0258471965495995,0.027997778280636,0.0298756554615788,0.0316202270381836,0.0336882365102336,0.0359465617232808,0.0379506444449056,0.0398939488459139,0.0417969238464424,0.055892058983249,0.0695014233087742,0.0835230790216467,0.0965322054584096,0.1087346473642004,0.1236970485835529,0.1337338910001911,0.1439891787110311,0.1536735239113011,0.1631845384928891,0.1754064624567679,0.1869437165688546,0.1975320732543335,0.2065311395010235,0.2152028366295203,0.2248811252369182,0.2334114496149983,0.2409948927936643,0.2487006060055834,0.2544174062410535,0.2606347297078485,0.2661228115284823,0.2710713694320251,0.2751200469410482,0.2799184208609512,0.2836137040959582,0.2869540208325518,0.2901497161868722,0.2945469603250601,0.2978260296018785,0.2951883464821346,0.2924061081304168,0.2898082886946715,0.2869587829931088,0.2847956516573601,0.2810339553380238,0.2779768010731476,0.2774353860489447,0.2775674436766778,0.2780133789946236,0.2776754655207694,0.2795190648046446,0.281126502766338,0.2809386120996441,0.2814333964117182,0.2821516526247569,0.2843990058743786,0.2883191237787043,0.2938155063510793,0.2986951921946632,0.3027924392114404,0.3080887766908594,0.3106324701195219,0.3152255922740304,0.3205617037105924,0.3243021346469622,0.3210717529518619,0.3261044176706827,0.3282401091405184,0.3391676390509529,0.0,1.900413414663332,50.692363286856185,141.20106329289922,197.3275059390012,fqhc3_100Compliance_implementation,2 -100000,95666,48416,462.0554847072105,4802,49.11880919030795,3810,39.28250371082726,1400,14.32065728681036,77.2498286400838,79.64924500857913,63.26585613190741,65.03938123245196,77.0737263757582,79.47534426654755,63.20010703409863,64.97670290142771,0.1761022643256069,173.90074203157724,0.0657490978087835,62.67833102424447,228.86336,161.11786162458097,239231.43018418248,168416.84698484413,535.90901,361.6705300564599,559651.2867685489,377520.6563241519,486.58356,238.6999385106556,504997.2090397842,246798.86965701915,2685.79203,1237.7844059474362,2770967.606046035,1257477.7683194163,882.40647,395.10478776896025,908521.3660025503,399143.23559985776,1356.78444,568.3603153297445,1388559.8227165346,567524.6162373025,0.37961,100000,0,1040288,10874.15591746284,0,0.0,0,0.0,46776,488.3866786528129,0,0.0,43979,456.107708067652,1115041,0,40022,0,0,0,0,0,69,0.721259381598478,0,0.0,1,0.0104530345159199,0,0.0,0.04802,0.1264982482021021,0.2915451895043732,0.014,0.3707618667730355,0.6292381332269645,23.150953464743704,4.089940626538051,0.3115485564304462,0.2769028871391076,0.215748031496063,0.1958005249343832,11.19682628166899,6.046094183719833,14.668493142304746,11337.23407876264,43.47205984921949,13.001929596810983,13.450249314505111,9.00458168670974,8.015299251193653,0.5984251968503937,0.842654028436019,0.7127211457455771,0.5535279805352799,0.1206434316353887,0.782051282051282,0.9391891891891893,0.8966565349544073,0.7052023121387283,0.136986301369863,0.5246504782928624,0.7725040916530278,0.6421911421911422,0.5130970724191063,0.1166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655091373232,0.0051619053414057,0.0073994376833365,0.0093476935582198,0.0115348231632269,0.0136883058684537,0.0160908757188889,0.0184101700107213,0.0205665780323174,0.0226749009125265,0.0245350948273209,0.02653312788906,0.0286875546637855,0.0306943857515383,0.0327799459001837,0.0350305625368457,0.0369107696133798,0.0387262892324304,0.040877264167629,0.0430725278391792,0.0578315518916716,0.0716597028054412,0.0851664497712102,0.0980650048927282,0.1094003925624195,0.1249312111078186,0.1353056110096419,0.145137571663008,0.1548516842634489,0.1640043399327525,0.1757407047754688,0.1869551073519844,0.1972284007152514,0.2066151956483593,0.2149715269500728,0.2239737821474198,0.2327647954158832,0.2407628800866191,0.2476986971610627,0.2549704243955665,0.2603951431291064,0.2664803878981415,0.2711711390660822,0.2757215497241221,0.2791422622164314,0.2832631279878448,0.2862015776075043,0.2903118821353402,0.2939222935720308,0.2970379475792061,0.2939637501348581,0.2906135941050892,0.2875273214411619,0.2849082807707887,0.2824629472714028,0.2791487538821657,0.275619547351119,0.2766728426437554,0.2775408549691242,0.2769359818671806,0.2786378868150588,0.27900138148806,0.2793942558746736,0.2808165635539276,0.2818671022918368,0.2832459918020028,0.2830338191594736,0.2871836429372896,0.2900208623087622,0.2945623498838445,0.2995993337234952,0.30676227363132,0.311910084451068,0.3175569078205995,0.3203991130820399,0.3255138775984206,0.3265306122448979,0.3283911039871769,0.3340546388964024,0.3378277153558052,0.0,2.112280797220308,47.54018134141855,138.61070035941165,203.95320127298268,fqhc3_100Compliance_implementation,3 -100000,95756,48356,462.00760265675257,4861,49.772338025815614,3817,39.39178745979364,1450,14.82935795145996,77.32698317968122,79.68789722183737,63.31555014592704,65.06152956570149,77.14283657071522,79.50323096901398,63.24721785013763,64.99465541566332,0.1841466089660031,184.66625282339064,0.0683322957894105,66.87415003817421,230.42514,162.06959043094747,240637.11934500188,169252.00513069413,537.95521,362.6040070778723,561294.0390158319,378171.9681240573,484.79377,237.59932153980824,502962.0598187059,245540.92718523915,2683.62268,1251.2140545639677,2771395.2441622457,1275571.1526828269,876.87163,395.9639383563714,906014.5682777058,403804.1997956997,1409.29298,592.1684031209662,1444006.8298592255,596178.3547179712,0.37926,100000,0,1047387,10938.050879318267,0,0.0,0,0.0,46909,489.3792556080037,0,0.0,43771,453.8410125736247,1115145,0,40043,0,0,0,0,0,97,1.012991353022265,0,0.0,0,0.0,0,0.0,0.04861,0.1281706481042029,0.2982925324007406,0.0145,0.3623358808543994,0.6376641191456006,23.142112565565885,4.049319620593675,0.3004977731202515,0.2847786219544144,0.2122085407388001,0.2025150641865339,11.387139860764862,6.2004663080796405,15.34605811825228,11270.37814499551,43.79798489585027,13.331123617565355,13.13223798244392,8.997929735023625,8.336693560817373,0.590778097982709,0.8150873965041399,0.7175239755884917,0.5604938271604938,0.1190168175937904,0.7625772285966461,0.9177489177489178,0.8584615384615385,0.7061855670103093,0.1578947368421052,0.5182563338301043,0.7392,0.6618004866180048,0.5146103896103896,0.109500805152979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020363710045083,0.0041268682444079,0.0064551488947079,0.0086049252275682,0.0108721078057462,0.0129932284506898,0.0150201900721948,0.0171796049609554,0.0189793853418231,0.0213408393039918,0.0236650609818591,0.0259813582984314,0.0278565848443731,0.0299229787058775,0.0321638935022333,0.034243319762756,0.036069239688587,0.0381914551546017,0.0401583886758332,0.0422105317985311,0.0573915948140879,0.071645257123729,0.0850508439039731,0.0980375668772401,0.1102655986509274,0.1256343031123139,0.134956573379853,0.1451003353382658,0.1545646923027595,0.1636580235253713,0.1759931883339441,0.1868556701030927,0.1970799743246624,0.2062021439509954,0.2143108685125676,0.2231136623042741,0.231016651961715,0.2391676425547248,0.2457694491766042,0.2526093880684227,0.2587019180682726,0.2648184787571561,0.2700781805259417,0.2757979584737732,0.2795740749744737,0.2836363636363636,0.2874760551389115,0.2899703475571732,0.2931701948598433,0.2954072082048037,0.292687189138325,0.2898138608420908,0.2870536969356199,0.2836283888095341,0.2811971642986385,0.2778398054540171,0.2738621997471555,0.2740298018667103,0.2735156316551665,0.2742491558556957,0.2748013282095288,0.2761091209699641,0.2767696617468746,0.2772843628269338,0.2779825737265415,0.2796440893408389,0.2810969914810517,0.2852995348546811,0.2899080651901379,0.2944392008809187,0.2972339850436976,0.303343656500971,0.3068894825122694,0.3103939962476548,0.313531047265987,0.3203453103126458,0.3208943949237045,0.3231817271087958,0.3216052776250687,0.3273146369573569,0.0,1.649907797744672,49.748570248859245,145.65078132346972,191.0462962027412,fqhc3_100Compliance_implementation,4 -100000,95746,48674,464.75048565997537,4869,49.56865038748355,3874,39.74056357445742,1514,15.26956739707142,77.39144353273707,79.72924991233451,63.36142006586866,65.08681445029069,77.19811257835406,79.54493377034973,63.28771241313324,65.0199505447015,0.1933309543830148,184.3161419847803,0.0737076527354148,66.86390558918731,229.22108,161.32240843177794,239405.38508136108,168489.97183357837,543.81403,367.0121955666645,567253.5667286362,382596.41715232434,489.62111,240.27900610068983,507178.9213126397,247632.66020823448,2759.43382,1290.3693536280948,2832213.063731122,1298315.851759934,910.6846,414.84646015998726,931003.5928393876,413317.0359517458,1467.36348,627.5822871557964,1482696.6139577632,612921.276539289,0.38072,100000,0,1041914,10882.062958243689,0,0.0,0,0.0,47251,492.7516554216364,0,0.0,44155,457.04259185762334,1119689,0,40167,0,0,0,0,0,134,1.389091972510601,0,0.0,0,0.0,0,0.0,0.04869,0.1278892624500945,0.3109468063257342,0.01514,0.3512185534591195,0.6487814465408805,23.20258051881171,4.008267728777748,0.2950438822922044,0.2839442436757873,0.216313887454827,0.2046979865771812,11.523515800023524,6.428074043590894,16.198495919241147,11397.225476946844,44.608991850944776,13.557586579608438,13.077414233141305,9.34215918942727,8.631831848767769,0.5849251419721219,0.8036363636363636,0.689413823272091,0.5847255369928401,0.1311475409836065,0.7567567567567568,0.907725321888412,0.8425655976676385,0.7428571428571429,0.1696969696969697,0.5092936802973977,0.7271293375394322,0.62375,0.5318471337579618,0.1210191082802547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679410335331,0.0045096628393647,0.0067774598729733,0.0089273925716781,0.0111844312716698,0.0132318215129061,0.0154065620542082,0.0177831738323096,0.0202882857113669,0.0221924367684374,0.0242213114754098,0.0263152495075508,0.0285552815454171,0.0307839565257665,0.032822711997196,0.0348118918248868,0.0367096860995829,0.0384882647610948,0.0407272273676988,0.0426168029584874,0.056795407098121,0.0714465092918131,0.0847889717684826,0.0976725597635749,0.1097391230993103,0.1256265995473677,0.1365632225356892,0.1464229476103332,0.1568554157677766,0.1659537975022779,0.1780074277409979,0.1895028281582903,0.2000260832708421,0.2095281792460044,0.2182247870294036,0.2271309081253319,0.2355917657679747,0.2439772229522558,0.2515130221909921,0.2587080611766321,0.2638208375704909,0.2696914106773541,0.2755375867409062,0.2798299706639526,0.2835902349103169,0.2873257802216727,0.2900187382885696,0.29277189593157,0.2950257955236038,0.2974456879526004,0.2949256777624105,0.2913328577699736,0.288470178591486,0.2853544802970553,0.2836622385277671,0.2801991959064328,0.275692617851349,0.2759403160506726,0.2760864394685875,0.2764305636980582,0.2759540916301203,0.2768839966130398,0.2770958583834335,0.2783836221315314,0.2782525204032645,0.2778933139232609,0.2786750538365635,0.2821050654310938,0.2866335594880044,0.2931511177818153,0.297955297637938,0.3007940709370037,0.3033193198217983,0.307109865980162,0.3109415705247488,0.3106060606060606,0.3104988830975428,0.3091701326995444,0.3192287091590787,0.3217358772914328,0.0,2.81730968860896,50.93715174068049,143.37057060352888,194.96448498630173,fqhc3_100Compliance_implementation,5 -100000,95731,48433,462.9012545570401,4861,49.71221443419582,3825,39.412520500151466,1486,15.157054663588598,77.37264048070351,79.73229119665494,63.34029949113111,65.08218397798952,77.18087318000323,79.54530850268058,63.26751517454193,65.0139181081133,0.1917673007002776,186.98269397435752,0.0727843165891855,68.26586987621397,229.26816,161.41628553194042,239492.07675674543,168614.43579607483,540.95925,364.92212284855617,564540.6921477892,380653.4172301096,484.27664,237.6650080863431,502649.2149878305,245748.8246082027,2717.82889,1273.876947463301,2803760.2448527645,1295417.1349545086,872.99037,399.4598183573756,902604.5481609928,407957.5146581303,1440.34658,617.4574573814677,1471493.9152416668,615281.012586028,0.38121,100000,0,1042128,10886.003488942975,0,0.0,0,0.0,47134,491.8051623820915,0,0.0,43769,454.0639918103854,1117462,0,40129,0,0,0,0,0,92,0.9505802718032822,0,0.0,0,0.0,0,0.0,0.04861,0.1275150179690984,0.3056984159637934,0.01486,0.3668837576475232,0.6331162423524768,23.024017919472072,4.040661973421015,0.316078431372549,0.2700653594771242,0.2104575163398692,0.2033986928104575,11.469932766727004,6.296361212446421,15.902856720262555,11376.27985421755,43.762872672573245,12.526341393294055,13.856804721608851,8.85561856231016,8.524107995360175,0.5968627450980392,0.8286544046466602,0.7080231596360629,0.6012422360248447,0.1118251928020565,0.7731520815632965,0.9403669724770642,0.8847184986595175,0.7386934673366834,0.136094674556213,0.5185045317220544,0.7470686767169179,0.6291866028708134,0.5561056105610561,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683544303797,0.0044997111671885,0.0065938302038,0.0088458726031849,0.0107576081098943,0.0127247185292261,0.0149230910369713,0.0168415465643245,0.0191969579261561,0.0214456080009008,0.0235917731252691,0.0256673511293634,0.027722079978612,0.0297740427197264,0.0318180880259166,0.0341071170184178,0.0362885274415811,0.0380973125473234,0.0400665176947461,0.0421731296024331,0.0570527612742897,0.0710279591495061,0.0843425288079435,0.097241053129434,0.1093483165018658,0.1250462527355189,0.1364629515708194,0.1470090563708536,0.1570606264483815,0.1651921200227348,0.1767949256399487,0.1882464947204431,0.1994062183941796,0.2079728769070924,0.2171368217224838,0.2265551431894976,0.2347905668590051,0.2425757064054936,0.2490431464298288,0.2561418794208348,0.2616796472671303,0.2678934930625424,0.2726282127205969,0.2771153707746563,0.2815648432847611,0.2844955123779465,0.2880276314307525,0.2914992625743782,0.2955186421382183,0.2985963756177924,0.2952651107765111,0.2930601145431322,0.2897674549391221,0.2875236213089451,0.2855320348311106,0.2809935040122277,0.2775910231523129,0.2776022137442077,0.2776171689000748,0.2775421096537158,0.2780858110371004,0.2799992155786088,0.2815479412132062,0.2808874098724348,0.2823411562678878,0.2847440995713474,0.2870798556282427,0.2913317401694547,0.2955922578858073,0.2994028336130518,0.303575434031672,0.309326479227864,0.3135044225738134,0.3182466411468888,0.3211975605248567,0.3203125,0.3269607105223543,0.3320047827819848,0.3340528872099298,0.3217358772914328,0.0,2.128518781487264,51.30446070137223,133.86930340263885,197.916834499504,fqhc3_100Compliance_implementation,6 -100000,95746,48075,458.818122950306,4695,47.94978380297872,3754,38.66480061830259,1371,13.984918430012742,77.33281654085012,79.7005582646102,63.319784280511655,65.07172581307023,77.15869798405632,79.52877302589764,63.2528138130847,65.00804254476103,0.1741185567938004,171.7852387125589,0.0669704674269553,63.68326830920523,231.63734,162.9415640958387,241928.9996448938,170181.0666720685,538.7535,362.4696821855837,562189.84605101,378073.7286002379,478.19602,234.38384123562423,495695.2666429929,241933.5371744549,2642.11588,1241.663847929446,2722374.3028429383,1259700.1106358962,849.07299,388.2107937985508,872284.7847429657,390946.4560384254,1332.88614,578.6165340785539,1360547.2813485682,575936.7833177223,0.37967,100000,0,1052897,10996.772711131536,0,0.0,0,0.0,46992,490.25546759133545,0,0.0,43251,448.2067135963905,1112164,0,39940,0,0,0,0,0,96,0.981764251248094,0,0.0,1,0.0104443005451924,0,0.0,0.04695,0.1236600205441567,0.2920127795527156,0.01371,0.3584214808787632,0.6415785191212368,23.12828290736016,4.04113550412111,0.3079381992541289,0.2783697389451252,0.2152370804475226,0.1984549813532232,11.081558575282864,5.856197147615935,14.815881643338615,11303.73498898942,43.1523668279915,13.033975174104125,13.111800275999189,8.865578182851168,8.14101319503702,0.566595631326585,0.8038277511961722,0.6920415224913494,0.5074257425742574,0.1033557046979865,0.7424111014744146,0.920335429769392,0.8432601880877743,0.671957671957672,0.125,0.4886582083813918,0.7059859154929577,0.6344086021505376,0.4571890145395799,0.097053726169844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582952507371,0.004381649812867,0.0064372017463701,0.0083451072869761,0.0106315875147519,0.0129563233376792,0.0150113707053916,0.0170801429300663,0.0193861066235864,0.021359601069004,0.0235497959769525,0.0255162287321976,0.0275455751256978,0.0298043254376931,0.0320151047738926,0.0340785760798784,0.0362365368682684,0.0384284098338539,0.0405319690967131,0.042431061245325,0.0568756002839604,0.0711767229203067,0.0848651992911296,0.0979594411328728,0.1101589510076734,0.126045532891328,0.1371026758726017,0.1468547099521021,0.1564606231507888,0.1649864870661919,0.1762831210499682,0.1869401531870699,0.1971098957257336,0.2067231484012025,0.215050925009349,0.2239483562356745,0.2326292415670784,0.2411887828592006,0.2488679566475628,0.2560136473443779,0.2623252476622535,0.266998244587478,0.2722826794870276,0.2767184035476718,0.2802317953203586,0.2845095428317798,0.2882658489267163,0.2911987995472869,0.2938595355820756,0.2960901224145209,0.2927603697175993,0.2890370472197401,0.2861264354875028,0.2832837888539352,0.2808510006532454,0.2777845702408607,0.2741754685107122,0.2728923942924466,0.2729995065761489,0.2747557292591934,0.276040113331345,0.2764760274646363,0.2769621623872889,0.2760297546352837,0.2780180137133574,0.2799792799792799,0.2801812004530011,0.2843495363866254,0.2880925016543029,0.2913896865043464,0.292267483777938,0.2978030064122779,0.3009509602834234,0.3066666666666666,0.3087068806493266,0.3106773556407575,0.3168361244019139,0.3239659608153572,0.3267727150175249,0.3388182498130142,0.0,2.1467289729475563,49.989996059577926,138.5884158748516,188.31378181981287,fqhc3_100Compliance_implementation,7 -100000,95773,48447,461.3617616656052,4765,48.58363004186984,3775,38.758313929813205,1450,14.690988065529952,77.34910350822409,79.67844457656653,63.34642956891118,65.06693317027145,77.16256737960391,79.49750736556359,63.27612930571857,65.00144889079832,0.1865361286201761,180.93721100294147,0.0703002631926068,65.4842794731394,230.1926,162.06183619804344,240352.29135560128,169214.53457450788,538.03473,363.05993608136737,561134.275839746,378437.230440832,487.12799,239.53268022850932,504329.2577239932,246728.99240662265,2629.29377,1233.7068036636758,2703209.547576039,1246045.8311228156,852.30264,395.1392258821958,872831.862842346,395518.3470546811,1400.95164,594.2852239209648,1421571.9043989433,586384.7423723442,0.38088,100000,0,1046330,10925.10415252733,0,0.0,0,0.0,46863,488.6345838597517,0,0.0,43945,454.5644388293152,1116376,0,40061,0,0,0,0,0,104,1.085901036826663,0,0.0,0,0.0,0,0.0,0.04765,0.1251050199537912,0.304302203567681,0.0145,0.3595890410958904,0.6404109589041096,23.27847330659256,4.020056131305905,0.3086092715231788,0.2916556291390728,0.2034437086092715,0.1962913907284768,11.620781424808673,6.604414723066619,15.342077980686469,11348.71423775779,43.26190279100859,13.4491508266507,13.183887364113929,8.598638994039732,8.030225606204228,0.5994701986754967,0.8138056312443234,0.6935622317596567,0.61328125,0.1187584345479082,0.768760907504363,0.9372384937238494,0.8426229508196721,0.7241379310344828,0.18125,0.5256751616584252,0.7191011235955056,0.6406976744186047,0.5734513274336284,0.1015490533562822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.0045611652256763,0.0069290156334013,0.0092533341459203,0.0115203156139423,0.0135795431410073,0.0158176889051957,0.0181558401796193,0.0203537381601937,0.0227026252787951,0.0247717982604419,0.0270700146740413,0.0289910180256099,0.0310431784262261,0.0331996411964243,0.0351598409337396,0.0373141278365877,0.0391750225531164,0.0412622872462021,0.0436321982713735,0.0582937646751891,0.0727209973643475,0.0855980540177822,0.0988292662420917,0.1107340822391299,0.126087094353978,0.1369292406834273,0.1466897769081899,0.1561642958520526,0.1651989458121746,0.1762306549861167,0.1863538062283737,0.1975343538006609,0.2062148745872422,0.2149724972497249,0.2242818860319358,0.2326017339686011,0.2406920275192229,0.2474026857816895,0.2538908724709329,0.2593855866063893,0.2646965958392291,0.2700848229601675,0.2747263276403094,0.2802607302388813,0.2836883801732316,0.2871866713363686,0.2911373087634962,0.2947778583264291,0.296780405449965,0.2933595221438949,0.2909478314660801,0.288566166650265,0.2858522383327088,0.2833091479847188,0.2804295760682196,0.2772311573636077,0.2768956551600085,0.2770031288260101,0.2777866709353823,0.2776772556846798,0.2795523064493881,0.2798940253671562,0.2792678304684191,0.2809657522739818,0.2815435455751867,0.2827825690945834,0.2878082536487166,0.2927282936758615,0.2968197879858657,0.2997908330301927,0.3048264182895851,0.3076971648670834,0.3104470802919708,0.3131294117647059,0.3145036348468597,0.3178044280442804,0.3221816707218167,0.3228736581337737,0.3326817826426896,0.0,2.5790335321549342,49.153475407873735,136.31645735983346,194.747041678981,fqhc3_100Compliance_implementation,8 -100000,95672,48073,458.6085793126516,4822,49.053014466092485,3855,39.76084956936199,1457,14.90509239903002,77.31532774038504,79.70644410659581,63.31028192710126,65.07601594229327,77.12551063654601,79.52040985584497,63.23863137470339,65.00803620409822,0.189817103839033,186.03425075083635,0.0716505523978696,67.97973819504932,231.06072,162.44763960463916,241513.42085458653,169796.42905410062,537.23881,362.4853641816549,561040.6179446442,378381.6938933595,484.12894,237.62034242662503,503017.2673300443,245947.03155543053,2698.24535,1274.854045011106,2786331.5703654154,1298549.037347506,884.63814,409.51760028452753,911293.4714441006,414679.47809654486,1415.73668,607.5145894649529,1450160.903921733,608173.9590052629,0.37825,100000,0,1050276,10977.88276611757,0,0.0,0,0.0,46826,488.91002592189983,0,0.0,43789,454.6262229283385,1111465,0,39943,0,0,0,0,0,88,0.9198093486077432,0,0.0,0,0.0,0,0.0,0.04822,0.1274818241903502,0.3021567814184985,0.01457,0.3545036948272418,0.6454963051727581,23.018187287076877,4.063005797369203,0.3089494163424124,0.2830090791180285,0.2077821011673152,0.2002594033722438,11.379236967040637,6.246309837450154,15.69669151568837,11270.439026551914,44.281274055374006,13.326951429078044,13.39458184406219,9.074340527785148,8.485400254448626,0.590402075226978,0.7910174152153987,0.6985726280436608,0.6017478152309613,0.1282383419689119,0.7749576988155669,0.9195652173913044,0.9088145896656536,0.7727272727272727,0.1387283236994219,0.508791619902731,0.6973058637083994,0.6183294663573086,0.5370051635111877,0.1252086811352253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0046432409416249,0.0068501491810266,0.0090016865462377,0.0111796061197916,0.0137000254647313,0.0157684305005915,0.0176701904907818,0.0199519353684102,0.0220472279681323,0.0243472196582774,0.0264609505808877,0.028557614163589,0.0306027820710973,0.0326892508412295,0.0346978033342985,0.0370401069241688,0.0390750677197388,0.0410347625288647,0.0430233042898236,0.0568046471780512,0.0708302795518793,0.0843609953715851,0.0964822745783043,0.1083753720159571,0.1242524002582857,0.1351164815562021,0.1447364216401614,0.154482493266641,0.1631069419997424,0.1752152872832307,0.1869694213444213,0.197546453024481,0.2059026295919372,0.2144571944585159,0.2233484524192385,0.2323111627283691,0.2398208881338388,0.2470577553822932,0.252729626616867,0.2580394971407403,0.264518318297235,0.2698758388864559,0.2739058995670372,0.2768533812670035,0.2815718157181572,0.2852853604223484,0.2885713195936582,0.2924971222370242,0.2961258505195421,0.2931656128077492,0.2894255497641412,0.2863854387914422,0.284032982425739,0.2808610381711098,0.2778813533420948,0.2750134183689577,0.2750314578464857,0.2754103938079442,0.2762954404052973,0.2757637853949329,0.2758234195261036,0.2766321589580898,0.2781625064018348,0.2777445229258949,0.2788262131895479,0.2807660614326712,0.2848976002010303,0.2890750999228665,0.2916765849400936,0.2961312906305405,0.3010422728956139,0.3073345484256174,0.3077569094518247,0.3133006782215524,0.3161564826852618,0.3184761331124831,0.3245216018938646,0.3229931972789115,0.3327074727750657,0.0,2.128897772027042,51.42122792436937,138.23422282604832,198.65379096648792,fqhc3_100Compliance_implementation,9 -100000,95628,48751,465.7736227883047,4807,49.03375580373949,3822,39.39222821767683,1418,14.525034508721294,77.3146043072854,79.7344776584436,63.296484254502126,65.08334072027608,77.12579903374679,79.54708169193412,63.224287343168754,65.01376685690524,0.1888052735386196,187.3959665094702,0.0721969113333713,69.5738633708487,230.63942,162.26663388440744,241183.9837704438,169685.27406659917,539.965,364.6104474790127,564089.9736478856,380718.41665517713,489.26329,239.82324011625155,507774.8149077677,247857.50567729567,2679.31026,1264.28161373249,2765966.3487681434,1286244.2524495854,871.51685,397.1287862359353,897796.4090015476,401723.8645734773,1373.73492,598.1314510676715,1408825.4276990003,602155.4768896612,0.3816,100000,0,1048361,10962.90835320199,0,0.0,0,0.0,47046,491.3937340527879,0,0.0,44146,457.7738737608232,1110108,0,39834,0,0,0,0,0,74,0.773831932070105,0,0.0,2,0.0209143765424352,0,0.0,0.04807,0.1259696016771488,0.2949864780528396,0.01418,0.3683473389355742,0.6316526610644257,22.96658950585628,4.006377386864412,0.3069073783359498,0.2893772893772894,0.205651491365777,0.1980638409209837,11.152778162326516,6.09663710174207,15.496616747838877,11418.193087837471,44.198625366699694,13.654659231071916,13.299305389392575,8.864066466839027,8.380594279396187,0.5923600209314495,0.7884267631103075,0.7084398976982097,0.6094147582697201,0.1083223249669749,0.7415824915824916,0.8789808917197452,0.8632218844984803,0.7630331753554502,0.1242937853107344,0.5250569476082004,0.721259842519685,0.6481042654028436,0.5530434782608695,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024824455635151,0.0049588788269057,0.0072785966622,0.0093684905756236,0.0118204752604166,0.013933591362803,0.0161769055803184,0.0185310041883747,0.02064006709556,0.022816180235535,0.0248617934542918,0.0269237485747157,0.0290523023743878,0.0311063943783872,0.0328870629767643,0.0349074064500118,0.036969879081141,0.0391208197929752,0.0410475714820826,0.0431372549019607,0.0579479889622878,0.0712849091785213,0.0843536700619552,0.0970831885980147,0.1096380582442288,0.1251138264755087,0.1359455325657475,0.1465335350908974,0.1572360680286661,0.1657876362855148,0.1783140588590662,0.1895441836270238,0.2003595162871772,0.2093553157692939,0.2180080682494544,0.2275108201087559,0.2366547843869079,0.2440433945047146,0.2513602853475401,0.2574586648932511,0.2644304779101126,0.2696387430268867,0.2740504082357117,0.2777564717162032,0.2818038358824957,0.284987684729064,0.2885610701337667,0.2917519092214443,0.2939784584750255,0.2977461447212337,0.294944575979337,0.2912596012476469,0.2884355465450245,0.2853180393233267,0.2837761531145982,0.2815409113179813,0.2783343620910688,0.2781964763640543,0.2775061542669584,0.2775875597403524,0.2777383840268707,0.2783675071127244,0.2792418322387563,0.2798224195338513,0.2804114383675802,0.2820393974507532,0.2837757946003772,0.2882600880183474,0.2914271864829305,0.2949079514296905,0.2997400967915397,0.3048965697826656,0.3101162936101038,0.3154726068633353,0.3230113109586501,0.3253481236724097,0.328424605000767,0.3248035462421922,0.3337837837837837,0.3368943151468905,0.0,2.2370508576866337,51.76537354503287,142.90025382680156,188.84044670313432,fqhc3_100Compliance_implementation,10 -100000,95644,48195,460.69800510225417,4876,49.71561206139433,3863,39.79340052695412,1479,15.07674292166785,77.29129418892526,79.69297890814572,63.29829466637945,65.07073771159874,77.0951002237688,79.50046945660466,63.22444512305714,65.00112452987715,0.1961939651564677,192.5094515410564,0.0738495433223036,69.61318172159281,230.07974,161.79272080093773,240558.23679478065,169161.18735782636,535.9913,361.5370235525465,559828.0916732885,377429.5822865203,482.10632,236.65596660036744,500825.6032788256,244916.22007823628,2721.88262,1280.1702595240183,2806256.053699134,1299019.0899540351,908.75664,417.3747809866967,936400.1505583205,422809.6509714122,1438.24894,616.6004723295948,1468143.239513195,613374.8132353801,0.37989,100000,0,1045817,10934.465308853663,0,0.0,0,0.0,46710,487.7566810254695,0,0.0,43503,451.54949604784406,1118041,0,40086,0,0,0,0,0,107,1.1187319643678642,0,0.0,2,0.0209108778386516,0,0.0,0.04876,0.1283529442733423,0.3033223954060705,0.01479,0.3797668444971349,0.6202331555028651,23.06454707192266,4.124330043457144,0.3119337302614548,0.2793165933212529,0.1995858141340926,0.2091638622831995,11.692609756309404,6.235692111622241,15.849458409965852,11316.002628031842,44.52243638178965,13.164882282932194,13.733894538521753,8.712997738575417,8.910661821760293,0.5878850634222107,0.8081556997219648,0.7178423236514523,0.569390402075227,0.1175742574257425,0.7555746140651801,0.926829268292683,0.8430769230769231,0.7522935779816514,0.1453488372093023,0.5153874675565443,0.7229299363057324,0.6715909090909091,0.4972875226039783,0.110062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803976783525,0.0044002838892831,0.0066481938227621,0.008992988517427,0.0112525308020226,0.0134236390487345,0.0156106613373575,0.0176751689913615,0.0198961230165221,0.0221571478303606,0.0243149561079662,0.0264363330115235,0.0285270456556179,0.0305009995259979,0.032724945286369,0.034493101379724,0.0365518742292187,0.0383353407816588,0.040455751521773,0.0421210667889984,0.0569141376139118,0.0705284659299219,0.0836360963521431,0.0963317720119993,0.1085639499292846,0.1235141571844403,0.1346051765505234,0.1452904957709269,0.1557715336583696,0.1649327363889157,0.1765232298618823,0.1876928740809719,0.1983803905348629,0.206728558603928,0.2157813533171699,0.225525968480708,0.2337656534512997,0.2424835939170859,0.2495686523792226,0.2556594262670699,0.2604735672622905,0.2660763994479403,0.2711936640977377,0.2751969117523647,0.2799285288862418,0.2838804350506819,0.2869216803355662,0.2901271493846173,0.2938685110351259,0.2964462319509461,0.2931916038751345,0.2897274690806036,0.2866903333051587,0.2841025641025641,0.2818089974445831,0.2792986113239937,0.2761535417491096,0.2767648894582963,0.2763789891116694,0.2764422218253259,0.2769931065487787,0.277163922436797,0.2780825933992293,0.2797240270614241,0.2794195124287562,0.279168720649664,0.2801119656186383,0.2855358481139146,0.2911073825503356,0.2938034188034188,0.2963819368879216,0.2995046896406365,0.3030531473803242,0.3043378821376839,0.3105689525244913,0.3123062246601478,0.3194937490353449,0.3213404605263157,0.3260448380846941,0.3243448537789594,0.0,2.314228869611757,50.53296439591229,145.38022010246024,195.10612095176668,fqhc3_100Compliance_implementation,11 -100000,95628,48321,461.9776634458527,4830,49.148784874722885,3819,39.31902789977831,1472,14.94332203957,77.27514686010801,79.68580830495321,63.27600815666828,65.05603135918379,77.08248453437592,79.49940107840966,63.20131778833733,64.98707075344696,0.1926623257320869,186.40722654355105,0.0746903683309554,68.96060573683371,228.90494,161.00587476507542,239370.20537917764,168366.8745190482,535.88903,361.4784205047434,559755.0194503701,377371.7345472082,480.8312,236.16904813878745,498894.17325469526,243965.5569604203,2718.73526,1274.5876972202857,2801412.055046639,1291326.5708825346,907.37682,413.41488972885526,932295.8756849458,415804.9176259027,1435.18544,622.4860538146975,1458872.1085874431,614534.7654982861,0.38071,100000,0,1040477,10880.463880871712,0,0.0,0,0.0,46763,488.3611494541348,0,0.0,43432,450.3074413351738,1119216,0,40160,0,0,0,0,0,94,0.9829756974944576,0,0.0,0,0.0,0,0.0,0.0483,0.1268682199049145,0.3047619047619048,0.01472,0.3622843545508626,0.6377156454491374,23.68528356536732,4.015442240950141,0.3045299816705944,0.2725844461901021,0.2152395915161037,0.2076459806231997,11.231991949896695,6.061398133763356,15.817835611084387,11356.615880591462,43.53079699045743,12.600338056889704,13.150972164767946,9.048956666727603,8.730530102072171,0.5826132495417649,0.8117195004803074,0.705073086844368,0.5754257907542579,0.1097099621689785,0.7389418907198613,0.930715935334873,0.8840125391849529,0.7055837563451777,0.1372549019607843,0.5150037509377344,0.7269736842105263,0.6374407582938388,0.5344,0.100169779286927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047738260543466,0.0069199939120288,0.0092229558151345,0.0114830297297572,0.0134736027374938,0.0156524044540522,0.0179069126399934,0.0198951059675094,0.0222395150720838,0.0242789151930414,0.0265047616112429,0.0285302741910592,0.0307896879799614,0.0327664012722409,0.0349675670642761,0.0367990048719809,0.0386472928199748,0.0404312668463611,0.0423532601893955,0.0565171945228389,0.0704105799258063,0.0838682565530283,0.0976884337400172,0.1102648342013247,0.1265755746213324,0.1370056647288263,0.1469283749493571,0.1561088394596561,0.1653570392028292,0.1769145226244588,0.1874261173229798,0.1979899059267253,0.2076826914641635,0.2158511553995895,0.2244993168716051,0.2326107150451589,0.2405746075809381,0.247874435174541,0.2544761292249032,0.2604292343387471,0.2652766865626136,0.2699525504151838,0.2748015515605673,0.2791806548922298,0.2826934465061192,0.285886171932771,0.2899069252218643,0.2937468383983813,0.2967558638916419,0.2946623534169025,0.2917183067559007,0.2890347664393982,0.2866097606770946,0.2840413215780568,0.2811238223418573,0.2783962606786994,0.2787712058688675,0.2792500297472335,0.2797413946218607,0.2797529067054849,0.2807724832346752,0.282083359396176,0.2826676747909624,0.2848261680455263,0.2847858733364404,0.2862719583604424,0.290817602200275,0.2943497695208828,0.2995539062808416,0.3038883620105677,0.3081956831495065,0.3121531458502213,0.3192639879834772,0.319608756404285,0.3272384098147929,0.3345471096950387,0.3417186556651237,0.3364307187756217,0.3431297709923664,0.0,2.381724728662688,49.915849924323005,133.94952210242366,199.47072838275977,fqhc3_100Compliance_implementation,12 -100000,95685,48425,461.9010294194492,4840,49.380780686628,3872,39.88085906881956,1455,14.819459685426136,77.28391542799022,79.68016565493755,63.28504443165552,65.05908252583859,77.0957211334268,79.49579357176421,63.214329312644296,64.99203301185182,0.1881942945634165,184.37208317334355,0.0707151190112256,67.04951398677395,229.8065,161.60908823226472,240169.8280817265,168896.99350187043,538.6205,362.8324422677466,562351.2044730104,378635.8282570378,479.90017,235.75219709826516,497872.5296545958,243570.9264584353,2724.21312,1265.7624189324674,2808748.6021842505,1284719.1812989812,910.95928,416.2589896735302,937016.4602602288,420061.0383889485,1419.46008,603.5922814863982,1448119.266342687,601626.1551373649,0.38249,100000,0,1044575,10916.810367351203,0,0.0,0,0.0,46893,489.48110989183255,0,0.0,43438,450.2377593144171,1117044,0,40141,0,0,0,0,0,88,0.9196843810419606,0,0.0,1,0.0104509588754768,0,0.0,0.0484,0.1265392559282595,0.3006198347107438,0.01455,0.3666468372000793,0.6333531627999207,23.5442899547124,4.097848751350275,0.3081095041322314,0.277892561983471,0.2084194214876033,0.2055785123966942,11.482491328358488,6.268218057408343,15.528050883737254,11401.426552515348,44.24447069850407,13.14947519740933,13.49234481760684,8.930464777482317,8.672185906005572,0.5800619834710744,0.7983271375464684,0.6906957250628667,0.5824039653035935,0.1168341708542713,0.7554776511831727,0.91415313225058,0.8786127167630058,0.7258064516129032,0.1629213483146067,0.5067740754302453,0.7209302325581395,0.6139315230224321,0.5394524959742351,0.1035598705501618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104517541192,0.0045338364167478,0.007025594688163,0.009461285962541,0.0116500310328337,0.01388436150273,0.0158192666632668,0.0181701188871185,0.0203733060598312,0.0226085353111106,0.024683505345015,0.0271464386996013,0.0296868729484158,0.0318139189760184,0.0337441678021388,0.0357301674302201,0.0378306686423027,0.0397139268624337,0.0415756516673947,0.0433137747391897,0.0587270581107478,0.0733706747631262,0.0857103876749994,0.0978997432551875,0.1101940876613439,0.1251667125346656,0.1356324524054745,0.1449976039614504,0.154395340137872,0.1637530450833306,0.1755132833971008,0.1871039719246558,0.1990244752199285,0.2084423761292088,0.2169533738139581,0.226163784491753,0.2341709890896083,0.2417504395257629,0.2493067866721214,0.256067627087539,0.2624617453398868,0.267994466847979,0.2741904874866563,0.2782406184725456,0.2820238254584393,0.285305437678871,0.288405179971445,0.2912807856706697,0.2946978718997566,0.2979873202493772,0.2950808643470305,0.2917353781882146,0.2885334382818429,0.2866879935442965,0.2839059137790309,0.2807242919190065,0.2781201605511836,0.2776623419119451,0.2774633481077395,0.2786724623223002,0.2791698635776709,0.2786120771419538,0.28040951621701,0.2808219178082192,0.2826553495213523,0.2829322975051487,0.285024566186703,0.2909450301204819,0.2954886431038693,0.2996656833824975,0.3026553468208092,0.305993690851735,0.3105844397567937,0.3130441253069425,0.3175874769797421,0.3224565901410092,0.3256305694003927,0.3295295295295295,0.3348952590959206,0.3389185072353389,0.0,2.3214846176414228,49.56378430502512,140.17277274125374,202.76314884797668,fqhc3_100Compliance_implementation,13 -100000,95658,48435,462.0523113592172,4919,50.28330092621631,3921,40.42526500658596,1544,15.6913169834201,77.35161970545354,79.75768375573797,63.31721993396855,65.09448731684982,77.1579955453288,79.57026054631928,63.244214406823694,65.0268098894289,0.1936241601247417,187.4232094186965,0.0730055271448577,67.67742742091798,229.58914,161.4301492425337,240009.93121328065,168757.16494651118,538.53566,363.1849128216319,562407.9533337515,379098.96169584594,488.55531,239.83743912877551,508257.6365803173,248703.7197793185,2776.98884,1300.561637429627,2859797.863221058,1316440.6865894936,911.35978,415.1532875307798,935125.3423655104,416434.7729019624,1498.32044,631.7749402150606,1523272.8052018648,623420.0397558018,0.37872,100000,0,1043587,10909.542327876392,0,0.0,0,0.0,46944,490.1628718978026,0,0.0,44078,458.2261807689896,1119059,0,40127,0,0,0,0,0,97,1.0140291454975014,0,0.0,0,0.0,0,0.0,0.04919,0.1298848753696662,0.313884935962594,0.01544,0.351934668481431,0.6480653315185689,23.164098759847768,4.083180440971422,0.3170109665901556,0.2665136444784494,0.2093853608773272,0.2070900280540678,11.419831450681691,6.327115876109195,16.284098013734216,11332.33911457089,44.9752957814155,12.858043192703017,14.190484068993644,9.03222711583523,8.894541403883617,0.5934710533027289,0.815311004784689,0.7240547063555913,0.5688185140073082,0.1330049261083744,0.7796754910333049,0.9162995594713657,0.9077809798270894,0.7587939698492462,0.1812865497076023,0.5141818181818182,0.7377326565143824,0.6529017857142857,0.5080385852090032,0.1201248049921996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188225043312,0.0041373016275414,0.0064343272372988,0.0086564252621311,0.0107416411518782,0.0131798737013648,0.015795645745169,0.0179820485852283,0.0200920245398773,0.022380415855782,0.0244475449863553,0.0266765316398462,0.0288560490676326,0.0311865315422126,0.0333529587968557,0.0354245985763946,0.0372504715905557,0.0393667272255385,0.0412942828902876,0.0434619395203336,0.0581522931753346,0.0718825586630786,0.0853049228508449,0.0978091590201195,0.1097836411609498,0.1247089207841144,0.1357010139618835,0.1459146042506022,0.1556344884400175,0.1642861745312399,0.1756459474615019,0.187106628679139,0.1975770901135262,0.2064096670388126,0.2152272301813657,0.2246350304279871,0.2337340244883367,0.2412030887683198,0.248388048858012,0.255075517284813,0.2596310645926097,0.2650182871966253,0.2696459183070284,0.2740788623141564,0.2780844018001189,0.2836158748123908,0.2875099860195726,0.2919135653652409,0.2953337118670314,0.2980499927680109,0.2948814351317238,0.2921610314793224,0.2902587005982978,0.2872099889108112,0.2840596024528246,0.2802990996490157,0.2758359740812562,0.2761987309478642,0.276543966236109,0.2760399068129679,0.2759058410647949,0.2762518923382419,0.2765114387604012,0.2780456373453018,0.2780521556557631,0.279136430545154,0.280225988700565,0.2847739963190567,0.2891578837524783,0.2936688950058985,0.2979394923125479,0.3028007106280698,0.3046472668610783,0.3062175776257424,0.3082420642286987,0.3143228244184674,0.3175985334555454,0.3161264505802321,0.318010752688172,0.3212956068503351,0.0,2.148657703343949,50.95999917275828,144.67772083089156,201.4589586837758,fqhc3_100Compliance_implementation,14 -100000,95805,48705,465.0592349042325,4864,49.66337873806168,3893,40.20666979802724,1515,15.479359114868744,77.3507064425629,79.68052988289077,63.34838135415546,65.07065125585007,77.14833285763433,79.47954963611215,63.27189150394793,64.99704614001357,0.2023735849285657,200.98024677861304,0.0764898502075297,73.60511583650009,229.98558,161.86562277378664,240055.9260998904,168953.2099303655,539.75924,363.8524619998995,562967.1729032932,379357.98966640537,485.24533,237.71462205096185,504400.657585721,246442.96943498836,2751.12045,1283.059359694615,2840404.5091592297,1308061.6352952512,906.57043,409.8296139663453,932930.0871562028,414438.5511887111,1478.72306,636.4753461312539,1511776.963624028,636292.5690446966,0.3832,100000,0,1045389,10911.633004540472,0,0.0,0,0.0,46964,489.76566985021657,0,0.0,43924,456.3749282396535,1118608,0,40165,0,0,0,0,0,88,0.9185324356766348,0,0.0,1,0.0104378685872344,0,0.0,0.04864,0.1269311064718163,0.3114720394736842,0.01515,0.3600867678958785,0.6399132321041214,23.48880181532461,4.02394417069432,0.3133829951194452,0.2753660416131518,0.1954790649884407,0.2157718982789622,11.246558634952493,6.079645462312948,16.35827094020434,11418.860149142516,44.65723792284655,13.142956744357855,13.78041014282032,8.367669927223677,9.3662011084447,0.5789879270485486,0.8152985074626866,0.6942622950819672,0.5755584756898817,0.1130952380952381,0.741424802110818,0.92018779342723,0.8610271903323263,0.7237569060773481,0.1758793969849246,0.5119738751814223,0.7461300309597523,0.6321709786276716,0.5293103448275862,0.093603744149766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790810745107,0.0045721816707218,0.0070524724243254,0.0094466114090687,0.0114893443956401,0.0137334948639376,0.0159492071256777,0.018113908420161,0.0202438251734674,0.0224314367580843,0.0246326618439658,0.026596345054742,0.0285391295411335,0.0303161318880413,0.032285673039246,0.0342871900826446,0.0364215797860232,0.038573975783712,0.0403343891167765,0.0426191963356235,0.0570963500907781,0.0714450020911752,0.0848909249106328,0.0981272069951235,0.1104014502376661,0.1256672903519064,0.1365125823179461,0.1466140207107204,0.155997095940723,0.1655430390465063,0.1774716107852107,0.1894880191952271,0.1999478453614968,0.2090302282137277,0.2180628847845206,0.2267146017699115,0.2347736946493437,0.2430862893986026,0.2507308450608471,0.2567440796247568,0.2629822515271539,0.2693286631640397,0.2744727135155585,0.2792512447338184,0.2826611680514282,0.2867269706479601,0.2897583889263673,0.293068174598132,0.2962306617685104,0.2988384649827482,0.2956175941102184,0.2927020233238554,0.2894836776888563,0.2860855628871338,0.2839738833654845,0.2811864225291787,0.2777988674828383,0.2769122161842688,0.2767817505037052,0.2773485591935052,0.2784643948913186,0.2791437719887734,0.2798221886729152,0.2800349791470469,0.2825219856792734,0.2846867507557594,0.2859342915811088,0.2899823699785921,0.2950940482874789,0.2996758124456393,0.3042449610992311,0.3078316462440064,0.3139916656143452,0.3161236040997399,0.3211939177773606,0.3244460244104751,0.3298557839828168,0.3364083640836408,0.3422445001392369,0.3471741637831603,0.0,1.6957721891541295,49.9062759355667,148.69758152390708,198.1151127620132,fqhc3_100Compliance_implementation,15 -100000,95740,48638,463.4008773762273,4882,49.83288071861291,3904,40.254856904115314,1492,15.239189471485274,77.31652017658898,79.67733304509032,63.31665033110207,65.06249226181882,77.11780256624375,79.48188766283184,63.24123824555634,64.99055798305194,0.198717610345227,195.44538225848385,0.0754120855457287,71.93427876687508,229.33504,161.4125678989381,239539.4192604972,168594.70221322135,538.70635,363.061501221774,562148.5168163776,378688.2611466201,484.15192,237.12362646688752,502606.6638813453,245245.18875547865,2789.93755,1314.124404742155,2880506.2878629626,1339026.0860060106,910.15451,418.7259811127556,936020.4616670148,422725.570412321,1452.51518,631.2301540108774,1485528.8489659494,631860.4687865227,0.38233,100000,0,1042432,10888.155420931693,0,0.0,0,0.0,46908,489.4088155420932,0,0.0,43800,454.3868811364112,1119789,0,40189,0,0,0,0,0,81,0.8460413620221433,0,0.0,0,0.0,0,0.0,0.04882,0.1276907383673789,0.305612453912331,0.01492,0.3652071470645984,0.6347928529354016,23.168359767617574,4.229295945490497,0.3012295081967213,0.2715163934426229,0.2146516393442623,0.2126024590163934,11.57533996862727,6.207890392074139,16.147751139088392,11386.793864943163,45.090426384180354,13.038679567771462,13.515095367504372,9.396733076562905,9.13991837234162,0.5706967213114754,0.7886792452830189,0.7066326530612245,0.5584725536992841,0.1120481927710843,0.7344013490725126,0.91196388261851,0.846820809248555,0.7222222222222222,0.1557788944723618,0.4992641648270787,0.700162074554295,0.6481927710843374,0.5078125,0.098256735340729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023399276749627,0.0051094372522581,0.0073179396092362,0.0095918388083359,0.0117696126302083,0.0140956959240624,0.0163890956931455,0.0185860318821931,0.0206235110070449,0.0228820066547222,0.0251209908949224,0.0270869699147756,0.0291111385324119,0.0312207177058126,0.0335227800183601,0.0354796049096995,0.0378030350081775,0.039800014521767,0.0418589663631449,0.0436512897445514,0.0582775649123539,0.0720847982588314,0.0857085928815621,0.0982398216689098,0.1101410767381539,0.125378090826406,0.1359175922684404,0.1461389427068918,0.1566750360596185,0.1659961161715321,0.1776884876819166,0.1884381053383401,0.1995280402796959,0.2080408493516149,0.2161689105139749,0.2248514807589998,0.233877901977644,0.2413843540093835,0.2487062508511507,0.2553408401012612,0.2617841027421034,0.2672171797510995,0.2729833698289637,0.2771101676620853,0.2807452510300069,0.2851750891172153,0.288761752150127,0.2915489372534046,0.294928549238894,0.2974927421483241,0.2940250090856474,0.290621945006678,0.287378531232811,0.2843277645186953,0.2815458937198067,0.2777650175325769,0.275387998544511,0.2744991789819376,0.2758626583035669,0.2767820446382302,0.2777444735856126,0.2791418308135633,0.2803466393150943,0.2822179049150309,0.2821097066653875,0.2838135747075758,0.2856251064071278,0.2901573819635273,0.2939905939731754,0.2982310995548201,0.3029576700434153,0.3062076988155668,0.3089451265347031,0.3131351147911178,0.3125582261971306,0.3148542999289268,0.3214067278287462,0.3272361809045226,0.3258549931600547,0.3285060975609756,0.0,2.066372415876513,51.80918591774948,147.23185534412272,196.1085011017558,fqhc3_100Compliance_implementation,16 -100000,95675,48362,462.09563626861774,4814,48.89469558400836,3838,39.4878494904625,1457,14.831460674157304,77.40264542862671,79.78571299371474,63.35728834693722,65.11303735699136,77.21901497517472,79.60435161570432,63.28611392162674,65.04514849575301,0.1836304534519968,181.361378010422,0.071174425310474,67.88886123834459,232.27028,163.3042380530817,242770.0862294225,170686.42597656828,539.6394,364.3625289431731,563435.9550561798,380235.67174619617,487.4513,240.0459753921882,505338.6778155213,247702.12405273344,2676.0172,1270.0199530101931,2754302.837731905,1284747.3143560945,886.50342,408.4457651342466,910470.7499346748,410805.1326138252,1402.68296,610.0837578686695,1429820.0365821791,607519.2483581074,0.37966,100000,0,1055774,11035.003919519206,0,0.0,0,0.0,47059,491.23595505617976,0,0.0,44105,456.8487065586622,1108540,0,39729,0,0,0,0,0,91,0.9511366605696367,0,0.0,2,0.0209041024301019,0,0.0,0.04814,0.1267976610651635,0.3026589115081013,0.01457,0.3653158522050059,0.634684147794994,23.02174436468389,4.01216772336748,0.3223032829598749,0.2782699322563835,0.2040125065138092,0.1954142782699322,11.665927806410124,6.665628741851414,15.668575398678168,11268.313118372223,43.91141568861918,13.17213352180267,13.915415620203795,8.638055223503951,8.18581132310877,0.5943199583116207,0.8258426966292135,0.7146321746160065,0.5287356321839081,0.1346666666666666,0.7750836120401338,0.9300847457627118,0.8947368421052632,0.6981132075471698,0.2,0.5124905374716124,0.7432885906040269,0.6458100558659218,0.4658493870402802,0.1155172413793103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708610545715,0.0045303901000334,0.0067457902211401,0.0089881478321806,0.0111550624866535,0.0133698552023297,0.0156085923720778,0.0176054541186556,0.0199378666176139,0.0221871993777759,0.0242527368895813,0.026292014865614,0.0285012183962409,0.030546772814814,0.0325938918695831,0.0346342270087024,0.036780085737362,0.0386136045244642,0.0404892406577291,0.0425035176403147,0.0567169168729954,0.0706896190655693,0.0836376610838265,0.0964959341896256,0.108906609286332,0.125193101259126,0.1364210436942148,0.14626096584618,0.1558702506279057,0.1647432322278948,0.177047767785018,0.1879187366734855,0.1988428116197374,0.2088199273936054,0.2165418000594079,0.2255550019376626,0.2322939543594831,0.2401788422436163,0.2465621531002922,0.2531438631790744,0.2591887149651383,0.2647144607128274,0.2700667020837022,0.2738623452729773,0.2772438034058542,0.2805554530583127,0.2840152414266975,0.287610226479731,0.2903446495417581,0.2931199957928505,0.2905254969285656,0.2878993276643525,0.2841393029250252,0.2820033907071635,0.2799030689894646,0.2767857142857143,0.273526630948629,0.2734048117154811,0.2733335595981537,0.2747202071619872,0.2751899016979446,0.2763796477495107,0.277170871250596,0.2769459088291321,0.2776837034033724,0.2784024815820085,0.2805560264451602,0.2867448151487827,0.2895505774314735,0.2948088183282901,0.2984825219040737,0.3020151930787086,0.30475419029223,0.3084330098548108,0.3092332060001863,0.3106852497096399,0.3140957848617616,0.3160508541914978,0.3186724230976794,0.319537658463833,0.0,2.454825954096353,51.39127022804168,135.97103164754154,195.12864350887065,fqhc3_100Compliance_implementation,17 -100000,95732,48157,460.0238164876948,4825,49.26252454769565,3886,40.04930430785944,1419,14.436134207997323,77.33907921770925,79.70587450006306,63.32552877917672,65.07546902187859,77.15874212270883,79.52939720298318,63.25775553694956,65.01148481709977,0.180337095000425,176.4772970798845,0.0677732422271546,63.98420477881928,231.52756,162.8349236504485,241849.7054276522,170094.5594476753,540.69597,363.8072434104428,564252.6427944679,379477.7226115016,477.42924,232.8982314643198,495755.84966364433,240911.1902194148,2730.4767,1267.3843065765757,2813285.097981866,1284963.9583175704,896.12427,405.465940969448,920311.1603225672,407823.2227677917,1379.63432,586.6986807439413,1404837.3793506874,581681.184178183,0.38006,100000,0,1052398,10993.168428529643,0,0.0,0,0.0,47175,492.1969665315673,0,0.0,43275,448.99302218693856,1111435,0,39875,0,0,0,0,0,89,0.9296786863326788,0,0.0,1,0.0104458279363222,0,0.0,0.04825,0.1269536388991212,0.2940932642487047,0.01419,0.3550378335324572,0.6449621664675428,23.41162320650235,4.0455257108558325,0.319094184251158,0.2745753988677303,0.2068965517241379,0.1994338651569737,11.50665628005946,6.305274735315328,15.120172343573955,11283.883472918817,44.481217177404666,13.016463727797936,13.917049294218115,9.029862588113412,8.517841567275198,0.5869788986103963,0.8050609184629803,0.6838709677419355,0.6082089552238806,0.1096774193548387,0.7526978417266187,0.9205607476635514,0.8478964401294499,0.7524271844660194,0.1538461538461538,0.5205479452054794,0.7276995305164319,0.6294307196562836,0.5585284280936454,0.0973597359735973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0045625988563085,0.0066989433939283,0.0089924402536172,0.0111085114391218,0.0133518011182515,0.0155305154744302,0.0175091118847563,0.0196118530031289,0.0216411643007845,0.0240598110904858,0.0260879389501145,0.0284574167206606,0.030547170394486,0.0325350949628406,0.0344449614807921,0.0365056509173028,0.0386359626819979,0.0404825040295325,0.0420686350092721,0.0559442019754839,0.0691491587846321,0.0826500870221644,0.0955560696559266,0.1074400210914843,0.1228513703629266,0.1339847438386538,0.1442746872504658,0.154422372062705,0.1631188171927641,0.175401922330934,0.1861175171338552,0.1975241493342616,0.2065075874443387,0.2152474266527219,0.2250570788907853,0.2327847988210601,0.2408722166589781,0.2491631395599532,0.2552501632620327,0.2608524620510922,0.2663369462275071,0.2719589602959776,0.2760832366068758,0.2795586808923375,0.2830242019740157,0.2858943322768225,0.2889520210027014,0.2917268786127168,0.2950634177148571,0.2924868832440991,0.2890608917617028,0.2860939257592801,0.282661086658489,0.2802016906421474,0.2776844099492758,0.2739974739501105,0.2741074353095316,0.2749761157363177,0.2760477013850514,0.2776957991669312,0.2785343198992443,0.2798258768641173,0.2808681135225375,0.2819380104111944,0.2829275864745298,0.2837064324171153,0.2876331490332052,0.2913369356806693,0.2955307482939529,0.3003759228225916,0.3032466159052453,0.3088807938701168,0.308995593374867,0.3150939884608226,0.3161799340555817,0.3144827586206896,0.3143839773416953,0.3247863247863248,0.3224458792252184,0.0,2.0267337964928105,48.525695538349886,148.5563925790307,200.3746350991298,fqhc3_100Compliance_implementation,18 -100000,95692,47918,457.4990594825064,4806,49.03231200100322,3832,39.50173473226602,1490,15.205032813610334,77.30793472821749,79.68359559048857,63.31631099018998,65.07015733539524,77.11131798520215,79.48976248734752,63.241697991419706,64.99867171911491,0.1966167430153405,193.83310314104563,0.0746129987702772,71.48561628032724,229.65888,161.52138646781412,239997.9935626803,168792.98840845015,537.01422,363.21663575411714,560655.7287965557,379033.8750931292,476.73085,234.15208950905856,494916.5447477323,242152.68691407875,2694.01669,1279.2607708303333,2780575.042845797,1302127.6081912108,880.03244,403.5111664597965,909695.9933954772,411722.0002296916,1436.15952,621.6151424535087,1467385.6748735528,622428.5776327433,0.37832,100000,0,1043904,10908.999707394558,0,0.0,0,0.0,46880,489.3303515445388,0,0.0,43180,448.08343435187896,1118788,0,40161,0,0,0,0,0,96,0.9823182711198428,0,0.0,0,0.0,0,0.0,0.04806,0.1270353140198773,0.3100291302538493,0.0149,0.3641107988759534,0.6358892011240466,23.079717088144207,4.045639946774681,0.3055845511482254,0.2818371607515658,0.2160751565762004,0.1965031315240083,11.364352726437044,6.246819276662823,16.11333932008368,11271.120276976166,44.41438421851657,13.373124451764289,13.379010773721772,9.239190191304628,8.423058801725873,0.5887265135699373,0.8027777777777778,0.7079419299743809,0.5410628019323671,0.148738379814077,0.7580101180438449,0.9275053304904052,0.8801169590643275,0.6782178217821783,0.1502890173410404,0.5128495842781557,0.707037643207856,0.6369119420989143,0.4968051118210863,0.1482758620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020249883563169,0.0041648088849256,0.0066951379096967,0.0088262777281222,0.0108616060532096,0.0132784815282473,0.0157742859764864,0.0180398162327718,0.019955427426445,0.022090059473237,0.0239984417927584,0.0261190965092402,0.0283534045682199,0.0304210320281031,0.032824608653479,0.0348381627779558,0.0367814662853827,0.0386615865369641,0.0406120941651322,0.0423985905361592,0.0566384623420035,0.0713246454179096,0.0844070001678697,0.096898368724955,0.1093598448108632,0.1243866328257191,0.1347153557257739,0.1445830583526706,0.154395111320029,0.163571804031367,0.1752985902447955,0.1860963261067116,0.1958923173940461,0.2048963435969209,0.2131659717714876,0.2219883921846617,0.2303152022315202,0.2387535856909837,0.246375002836461,0.2527315207183269,0.2593501487457894,0.2647416555563352,0.2696103957583791,0.2743190894808169,0.2783526464901935,0.2823112887507247,0.2859308633931816,0.2895424253621988,0.292883827115654,0.2961935338961777,0.2938243656600773,0.2909669509154279,0.2880686864699496,0.2857287522603978,0.2831940023205307,0.279662964381463,0.2763187074291145,0.2753377823071107,0.2751967157030448,0.2754754039817873,0.2752501592774425,0.2761108475648324,0.2780741949657899,0.2790573231366078,0.2799558255107675,0.2804503048939386,0.2823094425483504,0.2868397099902702,0.2895180553604046,0.2923539416953443,0.2974496522253034,0.2995238095238095,0.2993658567212909,0.3041135397692774,0.3076059500420993,0.312235294117647,0.3175078628126404,0.3198340576847096,0.3216187433439829,0.3279112754158965,0.0,2.08943323434984,51.60094914034283,145.660900954511,189.4746860127809,fqhc3_100Compliance_implementation,19 -100000,95700,48418,461.7554858934169,4904,50.020898641588296,3897,40.06269592476489,1456,14.743991640543364,77.38171245272493,79.75587259417003,63.34258245905804,65.09524798177578,77.19280244762373,79.57392341977578,63.26995352485486,65.02866163489601,0.1889100051011922,181.94917439424785,0.0726289342031805,66.58634687977383,230.45242,162.0930779206693,240807.1264367816,169376.25697039632,537.71377,362.1145029051461,561218.578892372,377729.2715832248,485.69373,238.05104229106604,503747.59665621736,245852.75559935128,2744.80151,1290.0749173036554,2821747.3458725186,1301656.8623862644,918.78305,421.2759325604918,940726.0083594568,420870.4288099808,1415.6905,607.6815304108721,1434914.2737722048,596566.1619902086,0.38081,100000,0,1047511,10945.778474399163,0,0.0,0,0.0,46836,488.7251828631139,0,0.0,44064,456.6980146290491,1117416,0,40097,0,0,0,0,0,83,0.8672936259143156,0,0.0,1,0.0104493207941483,0,0.0,0.04904,0.1287781308263963,0.2969004893964111,0.01456,0.3561270212351451,0.6438729787648548,23.100155948784156,4.067623124838778,0.3184500898126764,0.2766230433666923,0.201693610469592,0.2032332563510392,11.339533196747558,6.2669520302565855,15.482984001250916,11333.089996846182,44.75023104986019,13.172059334443928,14.090690606198384,8.78599605855976,8.701485050658112,0.5948165255324609,0.8061224489795918,0.7099113618049959,0.5903307888040712,0.1313131313131313,0.7543713572023314,0.9105145413870246,0.8888888888888888,0.7487684729064039,0.1413612565445026,0.5237388724035609,0.7321711568938193,0.6367763904653803,0.5351629502572899,0.1281198003327787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0046224492899066,0.0067276860007306,0.0087662271702253,0.0109343531948654,0.0132077393075356,0.0154371654346163,0.0180182939278859,0.0204041994214039,0.0224792711638857,0.0247070522743815,0.0268375068017782,0.0289078568490333,0.0306660623416222,0.0328899163046058,0.0349273639042547,0.0370700280692305,0.0391967621419676,0.0412614542920441,0.0432435249361613,0.0576555498689171,0.0713104112572242,0.084816369359916,0.0975212002609262,0.1095029116381129,0.1245068694539339,0.1351216561793699,0.1447994633902239,0.1539661342876983,0.1627527758407981,0.174680488803638,0.1857725909646967,0.1964870302898471,0.2055052089596292,0.2139667385278718,0.2237155287892039,0.2326367204924614,0.2406828456399991,0.2477034046317508,0.2546162211665045,0.2605542575585833,0.2665825122432997,0.2727337261304749,0.2767909544969996,0.2795765499993929,0.2838423645320197,0.2869141357330333,0.290325451309433,0.2939236380568058,0.2974482604170783,0.2952704608647762,0.2911928895716461,0.2886154883289795,0.2859445147922183,0.2841053533950161,0.2801784517936537,0.2759407967249252,0.2761241498540276,0.2770375644155139,0.2775591946689352,0.2790494268274527,0.2797362016173353,0.2806762783943574,0.2800709377078253,0.2810571217501132,0.2813635309577181,0.2834206523576136,0.2888847502871155,0.2917677222645693,0.2967817896389325,0.3020448608233492,0.3043318069372072,0.3086528204806425,0.3137373890616703,0.3194133034379671,0.3271677662582469,0.3339410513521726,0.3364259782170229,0.3347084708470847,0.3338449731389102,0.0,2.584478992967997,51.9098251739423,141.1825381400865,196.8419244136091,fqhc3_100Compliance_implementation,20 -100000,95858,48392,460.410190072816,4885,49.64635189551211,3897,40.08011850862734,1455,14.824010515554257,77.44506122741345,79.722098389892,63.40474875222951,65.0838492296579,77.25922969746787,79.53848106701946,63.33417999049245,65.01615436683169,0.1858315299455739,183.6173228725357,0.0705687617370571,67.69486282621529,229.60652,161.5651881403607,239527.7598113877,168546.3791653912,541.00007,364.0853549896777,563813.5053933944,379254.35017388,483.08085,237.31274429945452,499755.0021907405,244410.8427404294,2744.16325,1285.049687799317,2825802.77076509,1303641.2796003644,897.19,412.19265155825786,919177.3560892154,413223.394560973,1412.14654,605.7680804560223,1440994.7630870664,606630.6292299158,0.38079,100000,0,1043666,10887.625445972166,0,0.0,0,0.0,47178,491.5708652381648,0,0.0,43781,452.5652527697218,1122818,0,40351,0,0,0,0,0,73,0.7615431158588746,0,0.0,0,0.0,0,0.0,0.04885,0.1282859318784631,0.2978505629477994,0.01455,0.3528605015673981,0.6471394984326019,23.36667871329993,4.132275474473968,0.2938157557095201,0.2802155504234026,0.2265845522196561,0.1993841416474211,11.29942972631009,6.048067634018672,15.545939266667324,11316.50185515378,44.62870643395548,13.53030834114586,12.86811507664589,9.775777152429235,8.454505863734502,0.5868616884783167,0.8040293040293041,0.7013100436681222,0.5753114382785957,0.1261261261261261,0.7645079899074853,0.9146341463414634,0.8598726114649682,0.7511961722488039,0.1839080459770115,0.5088626292466765,0.7133333333333334,0.641395908543923,0.5207715133531158,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022874956982934,0.0047305989728421,0.0071788528030986,0.009388575372498,0.0116751681671306,0.0136329877608326,0.0159496455634319,0.0178857311837825,0.0201268265784394,0.0224744376278118,0.0246874392029571,0.026767583533321,0.0291374812562906,0.0312590002057189,0.0334937102706489,0.0355380772486117,0.0375920410358236,0.0394901818558623,0.0416506618219569,0.0434827848127607,0.0586941107774441,0.0725225131108836,0.0853200154955973,0.098121720881427,0.1097013119548864,0.1254723154539505,0.1362741153300438,0.1462251120885659,0.1553529537214757,0.1643693414096445,0.1756222327300864,0.186642911132707,0.1973838471558836,0.20605253389812,0.2146473799246543,0.2240721278831793,0.2327838889074637,0.2403860197054296,0.2476140820166391,0.253795028426965,0.2597940051094131,0.2647137897579165,0.2689687795648061,0.2740499664975591,0.2783775260182916,0.282233652449979,0.2856499493351014,0.2890544543755483,0.2921977922430862,0.2947898406505779,0.291579838937363,0.2889044442614401,0.287109813608803,0.2843069577472891,0.2823616345230178,0.2787481362018075,0.2750039301996541,0.2739775134430503,0.2735461762909683,0.2746583587056574,0.2754747159143744,0.2767098003023936,0.2772505930827819,0.2790914333880484,0.2808536003814973,0.282860092927207,0.2845152931898834,0.2896731701255126,0.2949980987935981,0.2990236442771438,0.3030795629007495,0.3064592670709201,0.3108116538773473,0.3147431519842173,0.3205728191688506,0.3237690400283387,0.3287503819126184,0.3311488838828589,0.3311367380560132,0.336687306501548,0.0,2.2731281519612043,51.60441899034901,141.97033264894478,196.8471996957346,fqhc3_100Compliance_implementation,21 -100000,95687,48088,459.70717025301246,4725,48.30332229038427,3777,38.9081066393554,1470,14.93410808155758,77.29747507811412,79.69973461836625,63.28577397120039,65.06540965916996,77.11193383496557,79.52112866122008,63.21449538966687,64.99979195204965,0.185541243148549,178.6059571461749,0.0712785815335195,65.61770712031034,230.96194,162.47137054300669,241372.3285294763,169794.61216571394,540.52806,364.8672585902577,564357.2481110287,380778.7040980047,482.59169,236.9242123793616,501283.01650171913,245197.7119580317,2639.72684,1245.5861360043814,2718159.0289171985,1261178.7661901622,875.51101,397.72431562133806,901578.9919215776,402256.5192986903,1416.84606,611.4260474173284,1440275.7741385975,602851.7070531859,0.37859,100000,0,1049827,10971.46947861256,0,0.0,0,0.0,47163,492.3134804100871,0,0.0,43659,453.2904156259471,1107386,0,39782,0,0,0,0,0,84,0.8674114561016648,0,0.0,0,0.0,0,0.0,0.04725,0.1248051982355582,0.3111111111111111,0.0147,0.3682604272634791,0.6317395727365208,23.11125857882462,3.9870910714825447,0.3198305533492189,0.2782631718294943,0.2054540640720148,0.1964522107492719,11.439076784624731,6.4888390435856,15.804712271594138,11232.482906074923,43.39706110193725,12.765343665832631,13.83848217279083,8.64555814483061,8.147677118483177,0.5896213926396611,0.8039961941008563,0.7243377483443708,0.5489690721649485,0.1091644204851752,0.7660668380462725,0.9196428571428572,0.8653846153846154,0.7591623036649214,0.1341463414634146,0.510727969348659,0.7180762852404643,0.6635071090047393,0.4803418803418803,0.102076124567474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024727390652235,0.0048587020469437,0.0069648205492664,0.0092571893100294,0.0115458170572916,0.0134755240481574,0.0155950389620986,0.0176262739731623,0.0199842498747149,0.0225189706198605,0.0245350948273209,0.0266996774259826,0.0290223351611608,0.0307386340216808,0.0326783888986402,0.0344132067274871,0.0362143841792684,0.0381903703780618,0.0400345412362017,0.0419793229948307,0.0562629924056451,0.070193253910094,0.0835099796419501,0.096637771418953,0.1091442315807241,0.1253002105441349,0.135964586363202,0.1455823613995846,0.1544647631269383,0.1634633968260785,0.1749568593615185,0.1862981029810298,0.1966123849463537,0.2053529366653154,0.2132078175464897,0.2223085029674413,0.2301864020383532,0.2379906515740271,0.2450896863533608,0.2516502406600963,0.2561902114747643,0.2624355971896955,0.2674158367772264,0.2717554321091341,0.2761178602264297,0.2795608733193536,0.2830644757276689,0.287166552014064,0.2917909479963688,0.2940873356675695,0.2918475769261886,0.2891431722616668,0.2861780355958279,0.2830791933103787,0.2808700170737139,0.2775535168195718,0.2742757913016023,0.2753625557935353,0.2765982743392893,0.2774297730378152,0.2778376971139542,0.2786139855754155,0.278282565755276,0.2781791587252338,0.2789367028251281,0.2798212532933822,0.280938532343225,0.2847488243171696,0.2887297005946378,0.2929352529305326,0.2955920874356427,0.2982870954182429,0.300080850799179,0.3034415535727675,0.3046462023555596,0.3097819750495511,0.3143549364021805,0.3146336594130565,0.3201837341259119,0.3274034822104466,0.0,2.194689740960831,50.72744348030697,135.23158462502113,193.02396033101377,fqhc3_100Compliance_implementation,22 -100000,95830,48292,459.6368569341543,4901,49.9739121360743,3895,40.05008869873735,1436,14.630074089533547,77.32864418348662,79.6387801947012,63.32870225298407,65.03839627239579,77.1379182570007,79.45144959141875,63.25578190901607,64.96876089933863,0.1907259264859107,187.33060328244733,0.0729203439679935,69.63537305715306,229.9341,161.97932973411068,239939.5805071481,169027.7885151943,542.50107,364.8165401395855,565513.6178649692,380097.2243969378,484.71253,237.4528710622301,501934.7072941667,244840.753896743,2732.28162,1289.329156961146,2812084.7751226127,1306817.652368946,892.79519,408.0771949309628,918225.8791610145,412518.8869054381,1395.81726,608.8279373731195,1424057.915057915,608676.5718303891,0.37962,100000,0,1045155,10906.34456850673,0,0.0,0,0.0,47261,492.57017635396016,0,0.0,43957,454.83668997182514,1114076,0,40016,0,0,0,0,0,90,0.9391631013252636,0,0.0,1,0.0104351455702807,0,0.0,0.04901,0.1291027869975238,0.2930014282799428,0.01436,0.350942655145326,0.649057344854674,23.31010582709113,3.999487493081945,0.3086007702182285,0.2880616174582798,0.2051347881899871,0.1982028241335044,11.1160489018803,6.035744884919854,15.621860339163907,11350.644102957269,44.98084333188334,13.738718688587769,13.79030745450306,8.852729613305716,8.599087575486807,0.5894736842105263,0.7878787878787878,0.7063227953410982,0.5882352941176471,0.1204663212435233,0.7371575342465754,0.8839285714285714,0.8717201166180758,0.7526881720430108,0.1361256544502617,0.5262192885955262,0.7240356083086054,0.640279394644936,0.5383360522022839,0.1153184165232358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699802501645,0.0047034018570328,0.0067975447674123,0.0091926702421582,0.0116636160260321,0.0140195479535736,0.0160636020792987,0.0182064967801851,0.0205919022216771,0.0226347133823138,0.0247443595155638,0.0270411723656664,0.0292582163484266,0.031253860407659,0.0333178654292343,0.0352781967314724,0.0372643169070927,0.0394301651650094,0.0415268761360685,0.0433606028435229,0.0575749674054758,0.0715749414519906,0.0851491997610288,0.0976355611601513,0.1099188363023084,0.1259394720986036,0.1367309282942037,0.1466544649697795,0.155825154586328,0.164829863419027,0.1777272874110286,0.1889584888513842,0.199173643579428,0.2078218763321564,0.2167484433100838,0.2261973328607505,0.2350058056448731,0.2415788525623705,0.249165436584535,0.2551342177986217,0.2611512959614225,0.2672309694362053,0.2712222446388094,0.2752305696992987,0.2792978016764194,0.2829548678351609,0.2864516775664637,0.2898249815300741,0.2927964728003631,0.296011418602807,0.2935516474631089,0.2905190349559778,0.2875894482787822,0.2847109592215014,0.2814387290631601,0.2781303654648026,0.2744439515873518,0.2743959450814428,0.2748649615758174,0.2750649073514244,0.2751685372275859,0.2769815332519589,0.2775438742757097,0.2786586315017011,0.2804545454545454,0.2807400478120777,0.2816721896507774,0.2853130266525185,0.2915306051552838,0.2963747645951036,0.2997250642267994,0.3027513283181651,0.3055312773130229,0.3085709962932143,0.3111525898273448,0.3169347209082308,0.3207717817304793,0.3196082350589646,0.3227899432278994,0.3362595419847328,0.0,2.315033813424156,50.667090484089925,149.90592281949412,194.6789833937289,fqhc3_100Compliance_implementation,23 -100000,95751,47908,458.1570949650656,4802,49.00209919478648,3830,39.46695073680692,1490,15.20610750801558,77.35098256499538,79.69826063640845,63.33757887846742,65.07056998972126,77.16469965342152,79.51441670938526,63.26703844388632,65.00293246496629,0.1862829115738549,183.8439270231902,0.0705404345811047,67.63752475497142,229.90286,161.60396702765445,240104.91796430323,168775.22639727464,535.99462,361.76514345965205,559245.4178024251,377284.4183973558,472.6095,231.8169367100039,490138.2857620286,239432.2885968765,2726.13119,1268.0114507149945,2808513.435891009,1286025.5371584482,861.15683,388.79182756302737,883010.9554991593,389894.1831626216,1446.12914,616.1406110091764,1476456.016125158,615392.9710294281,0.37918,100000,0,1045013,10913.859907468328,0,0.0,0,0.0,46768,487.8591346304477,0,0.0,42841,443.98491921755385,1121365,0,40213,0,0,0,0,0,91,0.9503817192509738,0,0.0,0,0.0,0,0.0,0.04802,0.1266417005116303,0.3102873802582257,0.0149,0.356971634039153,0.643028365960847,23.163319974908152,4.1061564220601685,0.3112271540469974,0.2624020887728459,0.2242819843342036,0.202088772845953,11.49726098286641,6.238971971891973,15.89974028022624,11249.782947944635,43.65220039861443,12.19071552280374,13.51461131321902,9.562186015294069,8.384687547297608,0.5715404699738903,0.7830845771144279,0.6862416107382551,0.5890570430733411,0.1007751937984496,0.7504488330341114,0.9225,0.8827160493827161,0.7333333333333333,0.0969696969696969,0.4981590574374079,0.6909090909090909,0.6129032258064516,0.5378548895899053,0.1018062397372742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860125768331,0.0041759155086609,0.0061083883798565,0.0081457706996018,0.0100456528149179,0.0123179037167492,0.0144239100518853,0.0162885398487492,0.0187041977125686,0.0209909015546162,0.02302314615495,0.0250769862451242,0.0271526242738909,0.0291830997518303,0.0310926797061979,0.0332189515462212,0.0353818275951333,0.0374290487604935,0.0392792905191146,0.041338069987186,0.0563912521530351,0.0707359171504785,0.0837536041939711,0.0966934763181412,0.1087531758330961,0.1239878221526882,0.1349135645349453,0.1451451557977183,0.1542693544424147,0.1633198172105297,0.1754238566104397,0.1861431570745222,0.1967783687364723,0.2055888660335244,0.2135521579764224,0.2222443868164993,0.2301326722058429,0.2388274597586079,0.2466073616847456,0.2524695743851848,0.2587609186093596,0.2631431178493718,0.2693935953833782,0.2744774082321672,0.2786855416863787,0.2825988019532836,0.2862818590704648,0.2892126354295004,0.292431474510717,0.2960266909311495,0.2928799321513671,0.2898357317777839,0.2881265227371949,0.2856151811651804,0.2838204949304514,0.2791544297601566,0.2760829340038905,0.276425431402139,0.2765961075954765,0.2772023491724506,0.2770580548814635,0.2776892665368501,0.2788345221707755,0.2798006984451809,0.2812059533194773,0.2828138775086864,0.282526934931991,0.286593557659262,0.291316137106306,0.29736107287529,0.3004247243809868,0.3046455282839987,0.3086858854361662,0.3121569806781445,0.3180300500834724,0.3226563416637334,0.3256170473708416,0.3266948300140816,0.3350670681631535,0.3363705391040243,0.0,2.0267603528398843,48.50450114620834,139.5670786506358,201.2863481218361,fqhc3_100Compliance_implementation,24 -100000,95848,48257,459.9261330439864,4899,49.974960353893664,3980,41.002420499123616,1541,15.712377931725232,77.51248185563044,79.7964571469516,63.42745123530996,65.11000308815856,77.31871059915666,79.60639799684684,63.35461661587313,65.04102822937293,0.1937712564737808,190.0591501047586,0.0728346194368327,68.97485878563714,230.9846,162.44212635549152,240990.52666722308,169478.8898625861,543.14788,365.3257699437834,566077.5185710709,380552.4058340116,484.40038,237.59411471802457,502073.14706618816,245370.9642842318,2802.16196,1298.5945179221742,2886780.840497454,1318115.930600986,924.62453,418.5816066740663,950633.3778482598,422696.1718284803,1489.30144,628.4612286117351,1520161.923044821,627432.916204135,0.38098,100000,0,1049930,10954.11484851014,0,0.0,0,0.0,47316,493.1140973207579,0,0.0,43949,455.158167097905,1118301,0,40152,0,0,0,0,0,80,0.824221684333528,0,0.0,0,0.0,0,0.0,0.04899,0.1285894272665231,0.3145539906103286,0.01541,0.3603498542274052,0.6396501457725947,23.268098901225613,4.026614406325053,0.3103015075376884,0.2801507537688442,0.2040201005025125,0.2055276381909547,11.276547614977904,6.107820262263068,16.305432005123798,11294.690597291315,45.12933082912388,13.581431765660229,13.81357004952591,8.978332846168474,8.755996167769272,0.5836683417085428,0.7838565022421524,0.7263157894736842,0.5738916256157636,0.1051344743276283,0.7660119555935099,0.8958333333333334,0.9080118694362018,0.7305699481865285,0.124223602484472,0.5076539693841224,0.6992125984251969,0.6581291759465479,0.5250403877221325,0.1004566210045662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023070851800133,0.0046991624553123,0.0068518837612382,0.0090308571196639,0.0118247018427842,0.0141259025729685,0.0160961902628739,0.0181718061674008,0.0204833917065749,0.0226608037631659,0.0244534330039424,0.0266436944282066,0.0287085272751559,0.0308441224296564,0.0327213121514211,0.0348699092101593,0.03684809602649,0.0389508060753719,0.0406382448267265,0.0425797720056217,0.0565341175734442,0.0704405014585794,0.083808366166485,0.096416418098559,0.1092017563256151,0.1249617119258109,0.1360076307561867,0.1462460259232086,0.1553836303489489,0.1639591788655322,0.1753459714620587,0.186116841457224,0.1967040482885152,0.2052233917107044,0.2137122019265621,0.2238992458922134,0.2323141186299081,0.2405304944468775,0.2478401177602898,0.2534680165459241,0.259075603118225,0.2641105080481725,0.268507492601719,0.2730691178226095,0.2770989595935156,0.2811019175526038,0.2851162442999178,0.2885325976918405,0.2925230515633854,0.2955385946966716,0.2924207539087599,0.289487715844305,0.2879817642781227,0.2848567530695771,0.2824206642066421,0.2790304654314033,0.2754915553314847,0.2750559156286222,0.2763046209214681,0.2765893234390811,0.2772188687681645,0.278698829260627,0.279596085779721,0.2799982256132724,0.281760467936372,0.284195350513606,0.2835031237687848,0.2892144715648618,0.292895118414693,0.2992309484968539,0.3027865428203191,0.3065576315925676,0.3115389346783122,0.3136292661164399,0.3162142333088775,0.3168259818035241,0.319619783157582,0.3209202573601092,0.3221243661595943,0.3281539030706622,0.0,1.991909071007824,50.7287388786286,145.6974594750635,204.00671951341732,fqhc3_100Compliance_implementation,25 -100000,95736,48196,459.6494526614857,4811,48.93665914598479,3869,39.80738698086404,1442,14.61310269908916,77.31288813594676,79.66995695211082,63.318020272784125,65.06136840819184,77.12006106004216,79.48383064573058,63.244120532063086,64.99321047005017,0.1928270759046029,186.1263063802454,0.0738997407210391,68.15793814166682,230.39368,162.11091710287002,240655.21851759005,169331.19944730302,537.14858,362.0225956642258,560384.0457090333,377458.0990058346,482.41594,236.82983613614095,500299.1455669758,244638.95511543055,2714.82756,1280.3608272617482,2795465.007938497,1297108.3471857486,885.94117,406.9748878525884,910076.1991309434,409790.8370679151,1398.89312,606.6865621244946,1420212.250355143,597160.8191953277,0.38048,100000,0,1047244,10938.873568981366,0,0.0,0,0.0,46805,488.2384891785744,0,0.0,43618,452.0138714799031,1116288,0,40118,0,0,0,0,0,95,0.9818668003676776,0,0.0,2,0.0208907829865463,0,0.0,0.04811,0.1264455424726661,0.2997297859072957,0.01442,0.3634914308489438,0.6365085691510562,23.089361706017737,4.154164828762063,0.3070560868441457,0.2835357973636598,0.2101318170069785,0.1992762987852158,11.558344434030024,6.382335689680814,15.580652911347304,11386.25083148578,44.536499780425984,13.535960753072109,13.51270419141957,8.923306902654236,8.564527933280079,0.589041095890411,0.8012762078395624,0.7138047138047138,0.5608856088560885,0.1245136186770428,0.7599660729431722,0.9235668789808916,0.8676470588235294,0.7291666666666666,0.1477272727272727,0.5141263940520446,0.7092651757188498,0.652122641509434,0.5088566827697263,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349652616014,0.0046726603756372,0.0070008827199951,0.0093040263275504,0.0115234792160372,0.0140835030549898,0.0163964515142245,0.018407162765056,0.0208356762393546,0.0229981568707761,0.0251307290064595,0.0270273045603442,0.0288594055332716,0.0308807927237518,0.0326640942574747,0.0344585236786076,0.0367394275773516,0.0386930084877664,0.0406921725023658,0.0428354103280123,0.0577788450495411,0.0721871697481453,0.0858458214918674,0.0980410712595817,0.109916065629086,0.1263474130726836,0.1369261138114745,0.1471320899335718,0.1570091660790974,0.1661947965596379,0.1770685273721841,0.1876250527249326,0.1981929086342434,0.208198442558404,0.2162111609893495,0.2251625552466298,0.2337894243432066,0.2413769827877151,0.2496281409317482,0.2563044947811043,0.2615142430520991,0.2674048782769346,0.2720078544559843,0.2755608283002588,0.2791765348879577,0.28331875361926,0.287325389275522,0.2911208891827962,0.2947222617768514,0.2966605068637803,0.2935122319215432,0.2907162314613543,0.2892605063326806,0.2866414199814986,0.2834711235353595,0.2805793991416309,0.2766230677764566,0.2764293109398366,0.2778062619633579,0.2784993300580616,0.2795962698026291,0.281183932346723,0.2817184070241455,0.2830436720142602,0.2835509263703561,0.2837939731156236,0.2852515839418132,0.290742950449036,0.2956010086859064,0.299056154822335,0.3040065338717728,0.3076072068275208,0.3134597451041342,0.3169683257918552,0.322676857116227,0.3221610219149186,0.3233185908189721,0.328643216080402,0.3347141673570837,0.3387400980761976,0.0,2.2874934342328697,51.10261383933177,144.03427108873652,194.7900661802942,fqhc3_100Compliance_implementation,26 -100000,95785,48472,462.4001670407684,4911,50.03915018009083,3894,40.100224461032525,1498,15.315550451532078,77.37208356525132,79.71002331804414,63.35007434272507,65.07920498240988,77.17526569943922,79.51410507459151,63.27478663697495,65.00594762019908,0.1968178658120933,195.9182434526241,0.075287705750128,73.25736221079637,230.4577,162.19678515768004,240598.94555514955,169334.22264204212,540.65374,364.5577863539736,563898.4600929165,380053.4387993669,482.91312,236.65060844670649,500251.719997912,244122.39955844264,2739.75736,1287.0725426646943,2825890.118494545,1309280.192790828,892.43313,412.5185543731125,918351.0779349584,417317.9562281273,1451.42144,631.3383142791033,1485732.776530772,635114.3755526644,0.38233,100000,0,1047535,10936.315707052252,0,0.0,0,0.0,47194,492.1438638617738,0,0.0,43751,452.83708305058207,1114604,0,39994,0,0,0,0,0,81,0.8456438899618939,0,0.0,0,0.0,0,0.0,0.04911,0.1284492454162634,0.3050295255548768,0.01498,0.3585828929340379,0.641417107065962,23.43370739583738,4.017992678500268,0.3186954288649204,0.2768361581920904,0.2046738572162301,0.1997945557267591,11.343824749294727,6.310317874933491,16.209760486028912,11382.214614382994,44.594881168050506,13.238877376981154,13.91057850866577,8.802596875890597,8.642828406512987,0.5868002054442732,0.8237476808905381,0.684931506849315,0.560853199498118,0.1285347043701799,0.7517064846416383,0.9227467811158798,0.8563049853372434,0.6864864864864865,0.1777777777777777,0.5157972079353417,0.7483660130718954,0.62,0.5228758169934641,0.1137123745819397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019953408285222,0.0044402092372572,0.0067077997199163,0.0091323737060777,0.0114919149801688,0.0136830102622576,0.0160026093426698,0.0183480621262526,0.0206221386527141,0.0226998260157609,0.0247794140252713,0.026960457311754,0.0288533689674667,0.0311679485991412,0.0332876161405752,0.0351504380889403,0.0371186949456054,0.0390957171004874,0.0410726902456257,0.0428726106692208,0.0577161878724003,0.0719231091030789,0.0860509240332505,0.0987296283453645,0.1106288387185132,0.1252971316887644,0.1362080476457933,0.1469703252421507,0.1567637927171466,0.1661364098938415,0.1774273359006906,0.1887261525158082,0.1989219266214571,0.208029476400293,0.2154429962052466,0.2249786805178696,0.2328647925033467,0.2406151978144288,0.2476250935225701,0.2538128606760099,0.2595265355214007,0.2657097437815597,0.2711295488659599,0.2753597165361871,0.279195884793633,0.2827285707252228,0.2872191362658259,0.2897268717987824,0.2935517656033825,0.2973724436010963,0.2939635366984187,0.2915597513618837,0.2893847669998592,0.2874384627600445,0.2855765093401783,0.2820798997049245,0.2781499857788452,0.2782963254077422,0.2792928086282808,0.280135339684801,0.2804427355532328,0.2808957808564232,0.2820042519488098,0.2836792746344282,0.2848158775705404,0.2850690478662652,0.2855964737665292,0.2912301612194969,0.294955987145452,0.2990783592421185,0.3047765514745793,0.3115323854660347,0.3163436974266309,0.3211002260738508,0.3265933656354827,0.3322014051522248,0.3357961399276236,0.333268063442334,0.3385889898450027,0.3387937453462397,0.0,2.1445317572194744,50.79301111564461,142.72731343732465,199.5335776293391,fqhc3_100Compliance_implementation,27 -100000,95643,48245,461.8320211620296,4693,47.949144213376826,3702,38.08956222619533,1442,14.658678627813847,77.25911226955019,79.6557257105013,63.27736057920528,65.04594675936437,77.07871965322688,79.47979756514292,63.21011666231926,64.98257780676245,0.1803926163233029,175.92814535838386,0.0672439168860208,63.36895260191966,230.78418,162.3883875001818,241297.0525809521,169785.53549566813,536.35029,362.174038370146,560153.8429367543,378043.8555800069,480.75242,235.8669893146813,498794.5589326976,243566.6682123567,2650.19736,1225.8022328259003,2730714.7935552,1241535.5840708993,876.6594,395.67832357822215,901764.1751095218,398872.0905640994,1403.20838,586.3274034865684,1429272.168376149,582570.3384843332,0.37901,100000,0,1049019,10968.047844588731,0,0.0,0,0.0,46762,488.2845582008093,0,0.0,43462,450.5504846146608,1109206,0,39797,0,0,0,0,0,80,0.8364438589337432,0,0.0,0,0.0,0,0.0,0.04693,0.1238225904329701,0.3072661410611549,0.01442,0.3715390879478827,0.6284609120521173,23.2677404789948,4.116287160165695,0.3028092922744462,0.2766072393300918,0.2133981631550513,0.2071853052404106,11.759261065070197,6.451390807283497,15.2180228311433,11276.488117244233,42.38745681403172,12.670202578720255,12.750644944054738,8.72223670064842,8.24437259060829,0.5764451647757969,0.78125,0.6940231935771632,0.5620253164556962,0.1460234680573663,0.7495412844036697,0.908883826879271,0.8473520249221184,0.6988636363636364,0.1493506493506493,0.5042113323124043,0.6854700854700855,0.6325,0.5228013029315961,0.1451876019575856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020258703645553,0.0043500745292489,0.006597243367233,0.0089213136075434,0.0110788951625209,0.0131383292933819,0.0151926096620918,0.0172524679195973,0.0191472178775518,0.0211067209859356,0.0232219567958825,0.0253411506196671,0.0274209308305477,0.0295344740556076,0.0316199007234187,0.0337486429199193,0.0357505438723712,0.0377624845597317,0.0397749139285008,0.0417101038322004,0.0572345183606077,0.0713971512358609,0.0852033476493998,0.0981909695897565,0.1097711648732272,0.1244108831721756,0.1350504514073287,0.1451585407432662,0.1550931371500673,0.1635598316295851,0.1748495372867096,0.1869264191217102,0.1971703661750931,0.2067613163314491,0.215707245002591,0.2253086419753086,0.2342295991410164,0.2425503128699475,0.2495565763143533,0.2553897752202428,0.2608504024681621,0.266611957796014,0.2716037668714567,0.276419833201144,0.2799663689424495,0.2836338932806324,0.2865294656182199,0.2896088502568155,0.2916936801431498,0.2942909614596958,0.2909708463062553,0.2877008737837316,0.2852706613028442,0.2824883323187523,0.2795663698364952,0.2762923897712638,0.2722997260534275,0.2730451627731354,0.2733333333333333,0.274154697118387,0.2755705200149644,0.276959769775097,0.2779101358411703,0.2785668244760063,0.2781284368574571,0.2795587549847221,0.2800079210161532,0.2838733892155636,0.287985186737938,0.291961287774047,0.2959927552637537,0.3000843970883005,0.3035379422427803,0.3075822603719599,0.3075998520710059,0.3088735201031532,0.3149071137290439,0.3182997405707443,0.3189084895259096,0.3267822736030829,0.0,2.3937640333489125,47.11748223308577,135.95283554928406,192.72926277060404,fqhc3_100Compliance_implementation,28 -100000,95629,48197,459.1912495163601,4755,48.55221742358489,3769,38.952618975415405,1414,14.451683066852103,77.28554750318864,79.71630523606717,63.27381344368566,65.07148168320207,77.0989467281599,79.53287235667185,63.2014257073361,65.00266011941088,0.1866007750287366,183.43287939532613,0.0723877363495617,68.82156379118953,228.82838,160.9911011766537,239287.64286984075,168349.66503534876,536.82325,361.8361800129274,560905.1647512784,377919.8046752841,479.32038,234.59950392533932,498641.6045341894,243337.21914308565,2662.55794,1261.828200010711,2751041.765573205,1286456.5210707465,857.54286,393.9168962408107,885000.2091415784,400252.2364620964,1379.56908,605.8372356463625,1411153.269405724,605828.0168680062,0.38065,100000,0,1040129,10876.711039538215,0,0.0,0,0.0,46787,488.7847828587562,0,0.0,43438,451.6412385364272,1121578,0,40211,0,0,0,0,0,79,0.8261092346463939,0,0.0,2,0.0209141578391492,0,0.0,0.04755,0.1249179035859713,0.2973711882229232,0.01414,0.359775641025641,0.6402243589743589,23.466320684304858,4.0887218688040745,0.3069779782435659,0.2791191297426373,0.2050941894401698,0.2088087025736269,11.263232327567538,5.982894904033129,15.255353959088517,11397.561647589522,43.209341833777806,12.718942172163633,13.17319619964007,8.655100592543025,8.662102869431092,0.5760148580525338,0.8051330798479087,0.6732929991356957,0.6080206985769728,0.0952986022871664,0.7480519480519481,0.9376443418013856,0.8615384615384616,0.7718446601941747,0.0994764397905759,0.5,0.7124394184168013,0.5997596153846154,0.5485008818342152,0.0939597315436241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026550466153222,0.0048484110803436,0.007218860415059,0.0093611831071809,0.0116184430065519,0.0136601167374629,0.0159031326825187,0.0181840470742072,0.0203025436990518,0.0225822639615743,0.0246096715291028,0.0270650733140843,0.0291913702239789,0.031325698617711,0.03345379452762,0.0354985519238725,0.0377098445595854,0.0396817978834989,0.0417898330488363,0.0437889202974892,0.0581649400474602,0.0720386497731107,0.0856575379894491,0.098524918343694,0.1108070990914853,0.1265411176545354,0.1376056113502311,0.1488853588067848,0.1582067828897379,0.1664553425599587,0.1784916532680126,0.1891223733003708,0.1999498653994964,0.209110434153718,0.218342392802408,0.2279866360316561,0.2353099007244432,0.2421072801253367,0.2494573801975022,0.2551874355153044,0.2609642265689237,0.2670234317364778,0.2716658171429926,0.2756596480276584,0.2807660019709708,0.2846268675129847,0.2886117788461538,0.2914215873500878,0.2947679467074482,0.2969968978945284,0.2948705869685182,0.2911134933069459,0.2882787750791974,0.2845303069681481,0.2827199501579814,0.2792726604830563,0.2754528913851752,0.2763151419713597,0.2765714480501772,0.2770476309360344,0.2768555690411726,0.2780574125049154,0.2796585406578727,0.2796691200996197,0.279838536317386,0.2816930506417374,0.2827609484431693,0.2878166915052161,0.2911300624935262,0.2944422700587084,0.297881908530827,0.3013224181360202,0.3055970149253731,0.3087706146926536,0.3138976159674737,0.313451924194861,0.3187641296156744,0.3268924302788845,0.327350656308599,0.3263041065482797,0.0,1.7671411359307452,50.47490063449196,138.35853194496212,189.1054759120589,fqhc3_100Compliance_implementation,29 -100000,95820,48615,463.5984136923398,4766,48.61198079732833,3717,38.33228970987268,1406,14.339386349405135,77.35864855579545,79.66121089228594,63.35358995694328,65.05337164646184,77.17719946762797,79.48181626895175,63.28531117939907,64.98761275292375,0.1814490881674828,179.39462333418987,0.0682787775442008,65.75889353808861,229.2664,161.3814803323278,239267.5641828428,168421.26939295328,540.03113,363.9909031411015,563105.6877478606,379385.976978816,483.80847,237.7873143752354,501612.9931120852,245647.15919745897,2616.12809,1230.8326603485084,2698801.7532874136,1253074.9429644211,832.31976,385.39163588271225,854251.617616364,387936.321053141,1366.21624,583.9918578234674,1395105.2598622416,585357.8445993218,0.38224,100000,0,1042120,10875.7983719474,0,0.0,0,0.0,47131,491.36923398037993,0,0.0,43703,452.7864746399499,1119474,0,40223,0,0,0,0,0,82,0.8557712377374244,0,0.0,1,0.0104362346065539,0,0.0,0.04766,0.1246860611134365,0.2950062945866554,0.01406,0.3565076798706548,0.6434923201293452,23.047394046997383,4.050038941909204,0.3048157115953726,0.2867904223836427,0.2050040355125101,0.2033898305084746,11.28355732877442,6.13486542434736,15.121579812875622,11363.77442352795,42.805521190362334,13.226518367434698,12.80699136537192,8.397243366854905,8.374768090700806,0.5722356739305892,0.7908067542213884,0.6919682259488085,0.5538057742782152,0.1031746031746031,0.7437446074201898,0.9066937119675456,0.842443729903537,0.7134831460674157,0.1468926553672316,0.4945269741985926,0.6910994764397905,0.635036496350365,0.5051369863013698,0.0898100172711571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023075521729449,0.0048212784490879,0.0069953465738009,0.0093153520655118,0.0115823054883872,0.0136920807690351,0.0159821537709326,0.0179531382289637,0.0202582596081155,0.0223715706131467,0.0244694362504097,0.0264836810470387,0.0283768095096216,0.0302338025850004,0.0324060708541262,0.0346504998760637,0.0367005701159891,0.0387195090345521,0.0408409157006938,0.0429523214657505,0.0575747459784264,0.0708931427794795,0.0842382190172731,0.0967138518448458,0.1091439832232093,0.1245007079907855,0.1352987321375567,0.1458218099817044,0.155693864696651,0.1647869808529342,0.1768081303963999,0.1876947040498442,0.1982623635335566,0.2076018594476346,0.2158684381432518,0.2250382322303242,0.2338920257995402,0.2414324436796346,0.2495519205027565,0.2560155757888106,0.2618433382307007,0.267140918238405,0.2728961787434468,0.2772611800795667,0.2816615638820042,0.2855417826954828,0.2893614893164797,0.2917635695858274,0.2958932822689162,0.2985985682456394,0.2957913137017615,0.2916214471171678,0.2879000758704021,0.2852222782621226,0.2827675118177911,0.2795927090648185,0.2755108486245776,0.2750356306210376,0.2754292924986784,0.2758946729938987,0.2768448217825485,0.2785408824862542,0.2801605216955104,0.2805865859628822,0.2823225312335455,0.2837728985318955,0.2840228285868423,0.2891528504716833,0.2924620655898189,0.2961879152167035,0.2990603541741958,0.3049585467603105,0.3081780667750406,0.3111026904130352,0.3152768759855301,0.3179648387472348,0.3249621785173979,0.3280370072405471,0.3359977949283351,0.3445736434108527,0.0,1.7421221543927248,50.85071517939579,133.54594813340685,188.5575027592166,fqhc3_100Compliance_implementation,30 -100000,95861,48245,460.3436225367981,4919,50.12465966347106,3867,39.74504751671691,1456,14.813114822503415,77.41454581429173,79.70328988732228,63.37712166936033,65.06800221728761,77.2285206466581,79.52139266511514,63.30685658324286,65.0019357386917,0.1860251676336304,181.89722220714089,0.070265086117466,66.06647859591419,231.06226,162.58834236027195,241038.85834698155,169608.43550585947,542.65275,365.9959763081744,565500.1929877636,381215.8920814246,481.87219,236.7173781763283,498941.3421516571,244091.62780904493,2723.51727,1278.1307186981594,2799575.4895108542,1291914.8739146288,861.96855,394.6349746999921,887007.6151928313,399561.4484154544,1413.0333,605.6066488380865,1439108.0418522651,601035.9742922026,0.38027,100000,0,1050283,10956.311743044616,0,0.0,0,0.0,47248,492.26484180219273,0,0.0,43660,451.7061161473383,1111968,0,39900,0,0,0,0,0,80,0.8345416801410375,0,0.0,1,0.0104317710017629,0,0.0,0.04919,0.1293554579640781,0.2959951209595446,0.01456,0.3538371411833626,0.6461628588166374,23.20329747640048,4.071422150339496,0.3105766744246185,0.278251874838376,0.21722265321955,0.1939487975174554,11.187465496271765,5.969481327560863,15.553705548401544,11264.993061095096,44.22063830056013,13.065107926394168,13.501539669950589,9.43722741954551,8.216763284669865,0.5743470390483579,0.7797397769516728,0.6952539550374688,0.5714285714285714,0.0893333333333333,0.748471615720524,0.8823529411764706,0.8693009118541033,0.7616822429906542,0.1125,0.5011021307861866,0.7082018927444795,0.6295871559633027,0.5063897763578274,0.0830508474576271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026218555448701,0.0046704827516336,0.0071590090957948,0.0092481676243071,0.0111393434292102,0.0130241455448264,0.0153830480847595,0.0176161574947722,0.0197558608713417,0.0220321993331014,0.024112676056338,0.0262906849118343,0.0281748029716094,0.0303445152391637,0.0322913229957109,0.0341871514149969,0.0362833140208574,0.0380952380952381,0.0400705906778781,0.0420961752499037,0.0563891350815911,0.0706902858337252,0.0836319064680369,0.0963091300467265,0.1083591331269349,0.1237088358927779,0.1343446434813928,0.144281462585034,0.1537181265336605,0.1633643218233227,0.1748891948879039,0.185996475332735,0.1968598902591405,0.2063634277722539,0.2147825800283519,0.2241106500691563,0.2327598702181984,0.2406570934178296,0.2474092383047234,0.2542464060067759,0.2602829992370118,0.2657480775074212,0.2703328919992434,0.274776986170149,0.2790937678326433,0.2826443024100688,0.2857571589346004,0.2890405561698504,0.2927138769115229,0.295470135078092,0.2926068364575209,0.2901799203406126,0.287553587743341,0.2835749906315759,0.2810203839772457,0.2770740492033453,0.2738689904035549,0.2737700364373131,0.2739933342402394,0.2740063875088715,0.2745710989542629,0.2747181521781828,0.2766329098130549,0.2769353551476456,0.277966020807483,0.2780046523649522,0.2788735573802872,0.2831806181084019,0.2875460421155049,0.2919877339204277,0.2949685534591195,0.2998167059439643,0.3041517360682071,0.3063747393506106,0.3092935433360965,0.3113207547169811,0.318065390989905,0.3232464929859719,0.3299972951041385,0.3423120089786756,0.0,2.3559217137944617,49.36601288733837,144.57255525708334,196.93785140560308,fqhc3_100Compliance_implementation,31 -100000,95693,48607,463.2000250802044,4808,48.83324799097113,3826,39.22961972140073,1503,15.23622417522703,77.36002699221102,79.73059630000829,63.33690834044432,65.08797392250749,77.16445927658329,79.54233468919108,63.26224190564948,65.01913545372412,0.1955677156277318,188.26161081720727,0.0746664347948424,68.83846878336897,231.08976,162.53357734346167,241490.7673497539,169848.9725930441,540.67551,364.2104973437332,564274.0952838766,379866.65413743234,482.55241,237.61318894632768,499488.4578809317,244643.30592549092,2707.03032,1275.0872172211343,2777283.6675618906,1280925.5665734536,896.54187,408.0780723275244,920821.1467923464,410408.7344893788,1466.24244,628.1116700252502,1488162.833227091,619260.8871642591,0.38191,100000,0,1050408,10976.85306135245,0,0.0,0,0.0,47150,491.9482093779064,0,0.0,43559,450.4300210046712,1111948,0,39876,0,0,0,0,0,89,0.9196074948010826,0,0.0,1,0.0104500851681941,0,0.0,0.04808,0.1258935351260768,0.3126039933444259,0.01503,0.362657091561939,0.6373429084380611,23.38723870959705,4.090262969915548,0.3175640355462624,0.2660742289597491,0.1975953998954521,0.2187663355985363,11.43023545260715,6.269931826853924,16.035098194542986,11386.221390422676,43.75651218635983,12.5211594679567,13.66229113363632,8.366096975577717,9.206964609189088,0.5718766335598536,0.8104125736738703,0.6831275720164609,0.5674603174603174,0.1242532855436081,0.7461273666092944,0.9186813186813186,0.8772455089820359,0.6906077348066298,0.1614583333333333,0.4958708708708709,0.7229129662522202,0.6095346197502838,0.528695652173913,0.1131782945736434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0048860099950328,0.0070629065484103,0.0093561429529246,0.0118800602140038,0.0139505519123457,0.0164220183486238,0.0187797260609524,0.0209660107334525,0.0234648539077376,0.0254567450634624,0.0274424048293704,0.0298019374344419,0.0319304534124384,0.033894282854755,0.0360732009925558,0.0380718547986076,0.0402100805447147,0.0421052631578947,0.0438910019277861,0.058257091531938,0.0720334104397157,0.0851351776665722,0.0979868313103477,0.1100367984310582,0.1254982396413732,0.1353369898473387,0.1448854263120363,0.1553998483278681,0.1644657090444876,0.1765859334597483,0.1878726881161867,0.1991303875210609,0.2077511752487154,0.2169824808366967,0.2263891811667238,0.2339506861541894,0.2413723307357554,0.2491156863634302,0.2555724736402248,0.2616853763714348,0.2677221475725886,0.2739879882720136,0.2779805862428036,0.2814195380675542,0.2850038773525682,0.2881667458551101,0.2909933943089431,0.2948021722265322,0.2979505766062603,0.2943209942967825,0.2915698433869127,0.2875732311852185,0.2848000693401132,0.2813794332031888,0.2782797474353682,0.2744751381215469,0.2748626912514711,0.2757364829217651,0.2769504176292873,0.2777881387541961,0.2783020722739963,0.280563872255489,0.2808056609214525,0.2821143061687149,0.2816154403394391,0.2825945333522164,0.2871724224302577,0.2911963093698668,0.2976742343199017,0.3013269108424975,0.3022911265146304,0.3058558840072495,0.3079307477130112,0.3116931364354044,0.3164126611957796,0.3214177521963041,0.324432844810279,0.3281463281463281,0.3287619047619047,0.0,2.929158809103712,49.633930533949474,138.20526991101568,195.33676227301484,fqhc3_100Compliance_implementation,32 -100000,95735,48384,461.85825455684966,4699,47.74638324541704,3744,38.355878205463,1442,14.540136836057869,77.33346816806463,79.69556310282309,63.32120940122799,65.070418852067,77.14008033238481,79.51020797157328,63.24678419365987,65.0022129294091,0.1933878356798146,185.35513124980696,0.0744252075681188,68.20592265789571,230.4489,162.2277639061331,240715.4123361362,169455.020531815,540.56086,364.9882790430133,563892.9231733431,380501.1597138344,483.56518,238.00322954396125,500861.095733013,245345.5172966745,2627.42184,1253.407925216672,2689728.322974879,1254712.1903874327,882.40444,409.0569514526505,899735.6766073015,405485.4511890174,1399.21954,609.9740063364384,1411125.2311067008,594864.6408484103,0.37972,100000,0,1047495,10941.609651642557,0,0.0,0,0.0,47133,491.5339217632005,0,0.0,43661,451.7574554760537,1112592,0,39907,0,0,0,0,0,88,0.919204052854233,0,0.0,0,0.0,0,0.0,0.04699,0.1237490782681976,0.306873802936795,0.01442,0.3542518397383483,0.6457481602616517,22.781258783399537,4.017039398044312,0.3028846153846153,0.2873931623931623,0.2077991452991453,0.2019230769230769,11.25924973620009,6.16362462060086,15.561669402313791,11273.980933448302,43.303768332931895,13.265264922176565,13.06501084324016,8.562076836213814,8.411415731301359,0.5881410256410257,0.8020446096654275,0.699294532627866,0.5719794344473008,0.1335978835978836,0.7376623376623377,0.8828828828828829,0.841642228739003,0.7551020408163265,0.1436781609195402,0.5214368482039398,0.745253164556962,0.6380832282471627,0.5103092783505154,0.1305841924398625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277673641015,0.0044619316107573,0.006597243367233,0.0088906500843341,0.0109944875002542,0.0129316050463806,0.0151694327773926,0.01758486252577,0.0197559380237929,0.0218848842803476,0.0242662210512286,0.0262922847903085,0.0283516551319889,0.0305455144643206,0.0327263347949445,0.0349051143176086,0.036738666721892,0.0387253426860777,0.040744398814784,0.0426214482126489,0.0572618699628345,0.0713007253582306,0.0839717086070476,0.0964732363552217,0.1088563804541571,0.1242703045685279,0.1346504817282797,0.1447456652936105,0.1549208519365106,0.1636332435997812,0.1764845298629664,0.1870455332409972,0.1965608379286716,0.2053116317735337,0.213909331925239,0.223013377037562,0.2317670830681983,0.2401395375007033,0.2475601452564684,0.254382048199668,0.2603300528500885,0.2653039746483155,0.2703572273480009,0.2750377272618391,0.2783627717391304,0.2820046006421217,0.2854519332875257,0.2894045033718139,0.2923399084822005,0.295406313846965,0.293171880255634,0.2900244445054794,0.28751985828565,0.2832214765100671,0.2803953284758188,0.2770431588613407,0.2735092740468999,0.2733515808106469,0.273883612678818,0.2751852379595326,0.2763759968623349,0.2771454452365011,0.2769926629981658,0.2780732005784848,0.2785946929782546,0.2803837953091684,0.2810315056472386,0.2856740782437377,0.2909707177300999,0.2947293783975419,0.2987317777677483,0.3020130691399663,0.3024826464886498,0.3038108947647549,0.3066280265494998,0.3102098897189612,0.3115501519756838,0.3199353665926076,0.3277101769911504,0.3290076335877863,0.0,2.7977288493930854,49.440482862007656,143.2639594935166,183.22390974202585,fqhc3_100Compliance_implementation,33 -100000,95795,48033,457.74831671799154,4804,48.92739704577483,3814,39.19828801085652,1414,14.41620126311394,77.34149214859087,79.67925875471889,63.33904717832892,65.07192744241638,77.16786596878856,79.50791616053012,63.27441762061961,65.00997530289398,0.1736261798023122,171.34259418877207,0.0646295577093098,61.95213952240408,230.38774,162.02630369389922,240500.7985803017,169138.58102604438,536.36816,361.510643918434,559299.9321467718,376766.90215401,479.28286,234.60047081361503,495687.57242027245,241455.2686460749,2687.52157,1248.8757956292968,2770337.53327418,1268541.2241028207,866.68659,390.0689971353885,892779.988517146,395242.7382326958,1370.34258,576.2098126837716,1400089.6706508691,576915.668339068,0.3798,100000,0,1047217,10931.854480922804,0,0.0,0,0.0,46721,487.0817892374341,0,0.0,43352,447.9043791429616,1122052,0,40225,0,0,0,0,0,98,1.0230179028132993,0,0.0,1,0.0104389581919724,0,0.0,0.04804,0.1264876250658241,0.2943380516236469,0.01414,0.3608617594254937,0.6391382405745063,23.718479567983845,4.009843214082944,0.3057157839538542,0.2826428945988463,0.2155217619297325,0.1961195595175668,11.137657875457515,6.089933016610042,15.000806538402738,11353.425458243046,43.786385402615736,13.240560205064028,13.212908694905227,9.177943354055492,8.154973148590976,0.5930781331934977,0.8153988868274582,0.7006861063464837,0.5802919708029197,0.1189839572192513,0.7702205882352942,0.9123595505617976,0.8584905660377359,0.7433155080213903,0.144927536231884,0.5223771093176816,0.7472353870458136,0.6415094339622641,0.5322834645669291,0.1131147540983606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0042983283152377,0.006819219645847,0.0091350648294923,0.0115582235336012,0.0139246824418616,0.0160023661879895,0.0183091831837351,0.0204513615493951,0.0225273656293838,0.0249156661095674,0.0271205586362702,0.0292223822258794,0.0312245675845515,0.0332249909714698,0.035215562239656,0.0371317628785917,0.0390041493775933,0.040981306954561,0.0429618371468426,0.0575402207708198,0.07191175701814,0.0853163999874257,0.0979741089441829,0.1100526870389884,0.1252602542829664,0.1354313515576142,0.1453634884685317,0.1548000170743159,0.1636108402361791,0.1753115382132019,0.1864657753374909,0.1966675356273896,0.205854074252125,0.214336752080379,0.2247385024074381,0.2328515228850675,0.2403650774049417,0.2482649306538352,0.2552889945481353,0.2612353715116681,0.2663127187864644,0.2720239993386009,0.2777013693715242,0.2817579114499375,0.2852752062356311,0.2881070354330217,0.2914204559864066,0.2950663157351499,0.2979833147211456,0.2956466893904828,0.2936805012819986,0.2893324717649042,0.2864882779290768,0.2835462548537214,0.2802222968640264,0.2768101065929728,0.276969696969697,0.2773536028359125,0.2768359569769926,0.2773167358229599,0.2764992407659389,0.2773063578982569,0.2780318069279325,0.2796054999640054,0.2817132157902949,0.2829182002339582,0.2858673726676752,0.2898316403641348,0.2948057097541633,0.2986479079115658,0.3032961190855928,0.3064709218070695,0.3092728383745799,0.313410393759985,0.3171337353671514,0.3179581795817958,0.3222516826432796,0.3213495575221239,0.3218216318785579,0.0,2.401790474093384,46.7859761506775,152.73086719082957,190.52324098072415,fqhc3_100Compliance_implementation,34 -100000,95700,48846,465.0783699059561,4817,48.975966562173454,3771,38.79832810867293,1433,14.618599791013583,77.3419109081298,79.7101607189137,63.33255108723839,65.08069501306296,77.15621419398475,79.52828027983797,63.26209293357367,65.0137826940158,0.1856967141450525,181.88043907572649,0.0704581536647168,66.91231904716233,231.09152,162.61105608920238,241474.9425287356,169917.5089751331,540.53649,364.483180562692,564220.1149425288,380256.36422433873,489.93932,241.7271581473957,507742.34064785787,249347.39731936064,2660.89969,1250.734465513039,2741715.6635318706,1268188.7831902185,859.18132,392.8911534226596,881046.3427377221,393804.7893653711,1387.13732,594.3589158645735,1416284.6812957155,593204.1201692624,0.38221,100000,0,1050416,10976.133751306164,0,0.0,0,0.0,46982,490.3134796238244,0,0.0,44247,458.1086729362592,1110797,0,39838,0,0,0,0,0,87,0.9090909090909092,0,0.0,0,0.0,0,0.0,0.04817,0.1260301928259334,0.2974880631098194,0.01433,0.3485361481776538,0.6514638518223461,23.92264190211174,4.0260682870897,0.3099973481835057,0.2824184566428003,0.2068416865552903,0.2007425086184036,11.07802497626821,5.953100175612701,15.334793119175757,11432.669826315436,43.120871244965045,13.101936856774408,13.196847257419169,8.611241830950615,8.21084529982085,0.5751789976133651,0.7887323943661971,0.6869118905047049,0.5820512820512821,0.095112285336856,0.7647569444444444,0.9083333333333332,0.8858024691358025,0.7301587301587301,0.1257861635220125,0.4917907598319969,0.6905982905982906,0.6106508875739645,0.5346869712351946,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026632372002592,0.0048241613459004,0.0071616960843984,0.0096591370764605,0.0117541790377028,0.0141117536857538,0.0164429085497008,0.0186576304401077,0.0209934587080948,0.0231715554827748,0.0253513618796707,0.0276214728714009,0.0298530485484816,0.0320722836949578,0.034125501769738,0.036098246774727,0.0384121460676484,0.0405462904347284,0.0424854950402395,0.0444356443897914,0.0593426563201704,0.0730114201375441,0.0862029167978176,0.0993405345141306,0.1117017910258844,0.127306390181972,0.1377119093590206,0.1477010209404575,0.1573690282881805,0.1660623484734708,0.1780886835331243,0.1895506882520994,0.1997977007493773,0.2083210322016292,0.2171120642252282,0.2257511014678858,0.2340012712006155,0.2415669083347383,0.2494386354873097,0.2559842555723374,0.261932021880674,0.267310054395508,0.2727627702246991,0.2773698144399056,0.2814636693749165,0.2855012447928221,0.2900532081377152,0.2947069967324001,0.297591016120268,0.2998222631821473,0.2959217974748221,0.2915757251300636,0.2886221660700498,0.2860639216815433,0.283356523283697,0.2801897730046375,0.2769914573022728,0.276875786857638,0.2764620754235123,0.277290439671892,0.2772208844337421,0.2784613264562868,0.2801203560533244,0.2803442432890395,0.279014594167126,0.2795037504217602,0.2813404460586799,0.2856383311440545,0.2923383571703326,0.29614226869455,0.3019860342794958,0.3060641337707694,0.3090578346506084,0.3120960997491067,0.3172355588897224,0.315335538752363,0.312623423970834,0.3183665176757416,0.3194137168141593,0.3257229832572298,0.0,2.416242319683122,49.54545073285186,135.74468440448268,192.56611943762476,fqhc3_100Compliance_implementation,35 -100000,95703,48390,461.37529649018313,4810,49.13116621213546,3827,39.35090853996218,1448,14.712182481217932,77.33810060160408,79.71969393922107,63.31256206328344,65.07447695180493,77.14853294187756,79.53528980306153,63.24175928865272,65.00822626782353,0.1895676597265208,184.404136159543,0.0708027746307138,66.25068398139433,230.17258,161.8611320289826,240507.1732338589,169128.58743088788,533.18394,359.2036102445964,556477.2995621873,374685.611744562,476.45206,233.77533624392933,493516.1384700585,240976.76361531683,2715.33818,1268.313347909359,2795774.0196232093,1283918.224323104,871.09217,398.7796818916784,894831.9697397156,401391.5689636799,1408.76996,598.6597787506366,1434151.6775858644,593840.7843700656,0.38097,100000,0,1046239,10932.144237902678,0,0.0,0,0.0,46511,485.32438899512033,0,0.0,43033,445.346540860788,1120522,0,40232,0,0,0,0,0,85,0.8881644253576167,0,0.0,0,0.0,0,0.0,0.0481,0.1262566606294458,0.301039501039501,0.01448,0.3590203106332139,0.6409796893667862,23.454144395378428,4.121415361382877,0.320616671021688,0.2722759341520773,0.1978050692448393,0.2093023255813953,11.197653995055656,5.99899865382887,15.428338893274065,11352.56196306821,44.01482325343567,12.93443790027696,13.84080728996232,8.426599922213644,8.812978140982732,0.5853148680428534,0.8214971209213052,0.6976365118174409,0.5865257595772787,0.1048689138576779,0.7573333333333333,0.917995444191344,0.8899082568807339,0.7272727272727273,0.1639344262295081,0.5136935603256847,0.7512437810945274,0.6277777777777778,0.5438898450946644,0.087378640776699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022805132675194,0.004422803814161,0.0066603041809653,0.0090046141024859,0.0112636216562713,0.0136077980016093,0.0160128919078799,0.0182213733440918,0.0201155596461625,0.0223109609378999,0.0244465181144187,0.0266462669555484,0.0286968681239589,0.0307804792651405,0.0328869999381047,0.0349189289737203,0.0373568573854341,0.0394048804780876,0.0412222152912066,0.0433147559768737,0.0580230797347397,0.0717276609999162,0.0850016788382439,0.0979585826821341,0.1099147930990846,0.1253596513497503,0.1356146214653297,0.1450795408565283,0.1538683479375935,0.1627545218529405,0.17450843074934,0.1852144542836729,0.196160167176395,0.2046108564113225,0.2139272823311911,0.2239669329905475,0.2326134536358763,0.2407351137220477,0.2485580634906217,0.2553345098668378,0.2605031315481772,0.2663771813808682,0.2714992659942226,0.2770309130122214,0.2806578563793606,0.2843629367438304,0.2887750757594731,0.2923202281523732,0.2955175181914701,0.2981593312412647,0.2956235294117647,0.2923410920882684,0.2890192107557731,0.2854217440837575,0.2836004566548549,0.2810431539202348,0.2775198938992042,0.277763235390354,0.2778449435523694,0.2787453966446654,0.2799477221807319,0.2811392803716243,0.2815422511690046,0.2811817168338907,0.282175255511142,0.2830568904045884,0.2850285197944315,0.2899956340048649,0.2943200778642936,0.2979090659448433,0.3022046961821115,0.3067885117493472,0.3103576060774504,0.3124766947572526,0.3145406051687667,0.3190747413692897,0.3243283582089552,0.3263697280252266,0.3297701763762694,0.3277404921700224,0.0,2.4708623733347266,48.58435333769249,148.27142093783678,191.7189706406672,fqhc3_100Compliance_implementation,36 -100000,95657,48161,458.35641928975406,4800,49.03979844653293,3813,39.33846974084489,1482,15.137418066633913,77.27782633283482,79.6867376498433,63.2892740309558,65.07142639087375,77.08907468367171,79.50194116335194,63.21825376675031,65.00454042244341,0.1887516491631089,184.79648649135072,0.0710202642054866,66.88596843034134,228.86644,161.03420888756864,239257.3883772228,168345.45186193235,533.66922,359.7908649603926,557411.6687748936,375638.92340382055,484.70116,238.2286447241405,503569.6498949371,246691.3447732681,2727.63087,1276.1602284755977,2816459.150924658,1299089.1293638707,895.35078,403.2040906544297,924675.1309365756,410184.0959411535,1445.32098,611.3439130852786,1477888.0792832724,610269.1858828695,0.37833,100000,0,1040302,10875.33583532831,0,0.0,0,0.0,46322,483.7283209801688,0,0.0,43853,455.3247540692265,1123879,0,40338,0,0,0,0,0,104,1.076763854187357,0,0.0,0,0.0,0,0.0,0.048,0.1268733645230354,0.30875,0.01482,0.344034879112168,0.655965120887832,23.5294802914681,4.188031643406192,0.2976658798846053,0.2690794649881983,0.2250196695515342,0.2082349855756622,11.46870588617478,6.180815882461235,15.800048469590228,11337.727054008148,43.990531082370126,12.62163034243338,13.090236087551103,9.584512763355551,8.694151889030094,0.5908733280881195,0.8138401559454191,0.7242290748898679,0.6002331002331003,0.1020151133501259,0.7690956979806848,0.9434389140271492,0.8629737609329446,0.7712765957446809,0.108433734939759,0.5149588631264024,0.7157534246575342,0.6641414141414141,0.5522388059701493,0.1003184713375796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026852846401718,0.00520241765374,0.0073599577690699,0.0098986757726353,0.0121369347372704,0.0142826580821303,0.0167465578786333,0.0188137722532607,0.0209590638489392,0.0232839245654111,0.0253028236187037,0.0273229656716724,0.0296447974975304,0.0320329811904148,0.0341940346276546,0.0363865789582557,0.0382789993989761,0.0401636450480759,0.0421973859473859,0.0441786749525577,0.0590423642025623,0.0731357352325094,0.0864202714476156,0.0991570284463434,0.1119553402771182,0.1270138668360326,0.1380222160864855,0.1488536606153584,0.1577151779603011,0.166115596015115,0.176862905658751,0.187623821329205,0.198376248830072,0.2080114668358973,0.2163518689737155,0.2248025083927008,0.233244027684751,0.2408082444534449,0.2477081915135012,0.2538908724709329,0.2593602977724861,0.2644529606954245,0.2693167173108528,0.2741516236838637,0.2775450228909371,0.2807030518167924,0.2847972972972973,0.2884564014501049,0.291799966324297,0.2950664011499861,0.2916066112585369,0.287861255751164,0.2853174267422512,0.2827438618814887,0.2808201864600835,0.2766100864023531,0.2732830714647744,0.2733217231294976,0.2733687573681423,0.273823970304804,0.2743513478122603,0.2752635943608577,0.276257187663356,0.2771586502028262,0.2775101267946597,0.2799034994422683,0.2811683145812024,0.2859744418977047,0.2895384831855916,0.2918274010737721,0.2948274291958838,0.3008521674694331,0.3073256397390868,0.311363117436639,0.3143499437991757,0.3226074566611256,0.3291934989267095,0.3327892266884309,0.3308333333333333,0.3333333333333333,0.0,2.06358787588873,49.655655268356426,144.62121262521785,193.68542122415948,fqhc3_100Compliance_implementation,37 -100000,95822,48165,459.80046335914506,4923,50.28072885141199,3861,39.750787919266976,1475,15.05917221514892,77.39792083527668,79.70312002963418,63.37134666233784,65.07221123996459,77.21260532158878,79.51905334826994,63.30167756185213,65.0048661256101,0.1853155136878967,184.06668136424287,0.0696691004857115,67.34511435448098,230.9879,162.39660331649034,241058.44169397425,169476.5089307821,536.7208,361.8286545763305,559559.4748596356,377045.02575384616,480.62297,235.86169823992944,497871.5326334245,243281.14097129903,2721.64442,1256.2268426825162,2805473.2107449225,1276521.4016611776,867.96402,388.8634381577914,894386.5604975893,394568.8054313114,1438.798,609.7003665395983,1470778.2137713677,611250.6599318312,0.37938,100000,0,1049945,10957.201895180648,0,0.0,0,0.0,46851,488.34296925549455,0,0.0,43427,449.5522948800901,1117879,0,40025,0,0,0,0,0,96,0.9914215942059236,0,0.0,2,0.0208720335622299,0,0.0,0.04923,0.129764352364384,0.2996140564696323,0.01475,0.34050804731433,0.65949195268567,23.34586071647275,4.1111554903764524,0.3108003108003108,0.2727272727272727,0.2069412069412069,0.2095312095312095,11.12340808690245,5.971617293832473,15.796582805505736,11217.10026085066,43.97093921279084,12.965978257527768,13.464399030622484,8.782078902782493,8.758483021858094,0.5822325822325822,0.811965811965812,0.7116666666666667,0.5782227784730913,0.0951792336217552,0.74235807860262,0.9206008583690988,0.8571428571428571,0.6722222222222223,0.135593220338983,0.5147275405007363,0.7257240204429302,0.6583143507972665,0.5508885298869144,0.0838607594936708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002318376933668,0.0044685831247656,0.0068259039505045,0.0088644740716671,0.0109080188679245,0.0130467525594838,0.0152126510566322,0.017209895434838,0.0193309765617017,0.0213112070553088,0.0235743704280474,0.0256578609899974,0.0276776082601325,0.0295337374069995,0.0315698339568968,0.0335140157968096,0.0355871886120996,0.0376750308344475,0.0399160972773151,0.0419212155903627,0.0558812484352833,0.0700218589522345,0.0837055677886127,0.0959565162538374,0.1084408466143857,0.1240525598063363,0.1345986639804898,0.1445386915848064,0.153665388436108,0.162682453374516,0.1743873024077185,0.1852781172602502,0.1960191757889358,0.2053633898898023,0.2135443010137884,0.2224509901592889,0.2305488355500061,0.2391367876812408,0.2452964910689999,0.2510579892485416,0.2569569638977488,0.2629206134152466,0.2676327702982234,0.2727109601167548,0.2773119426134161,0.2817083215519467,0.2852899699234983,0.2877946063881066,0.2921272858766401,0.2954261598937722,0.2932014369202724,0.2896946617169628,0.2873034354089806,0.2842860841796369,0.2813258001538188,0.2789036924248191,0.273778981001999,0.2733980899518407,0.2736278674596432,0.2735155111758644,0.2751238961135745,0.2751783363137933,0.2764029496312961,0.2760088237260188,0.2775512162356666,0.2784645751090795,0.28,0.2860644147682639,0.2899615250087443,0.2942870669928193,0.2996184939594877,0.3027250556674796,0.3059814023624026,0.3081470253884047,0.3109527381845461,0.3144876325088339,0.3172843256379101,0.3207509486718594,0.3229026166711626,0.3228346456692913,0.0,2.037065128538176,49.86522905322075,137.89516044444093,202.07851724590117,fqhc3_100Compliance_implementation,38 -100000,95545,48294,461.2590925741797,4808,49.04495264011722,3831,39.43691454288555,1468,15.05049976450887,77.19945181010942,79.67064453055862,63.224607941291474,65.05369176602733,77.00828125716626,79.48065909924694,63.15161910407766,64.9833583911663,0.1911705529431628,189.98543131168333,0.0729888372138134,70.33337486102198,228.48188,160.7521765787752,239135.13004343503,168247.40364682296,535.5311,361.00505203121736,559835.0410801193,377172.41944716114,481.19827,235.8731969284799,498382.68878538907,243087.256718778,2726.80368,1278.3624603738965,2814026.144748548,1298092.76408873,905.19059,413.790404195412,933277.9109320216,418993.7231175729,1428.70676,618.5134154850974,1466815.4272855725,622990.4368532436,0.37992,100000,0,1038554,10869.778638337955,0,0.0,0,0.0,46673,487.8015594745931,0,0.0,43486,449.9659846145795,1119888,0,40215,0,0,0,0,0,84,0.8791668847140091,0,0.0,0,0.0,0,0.0,0.04808,0.1265529585175826,0.305324459234609,0.01468,0.3652766639935846,0.6347233360064154,23.320810223424758,4.090899299350901,0.3014878621769773,0.2785173583920647,0.2101279039415296,0.2098668754894283,11.45944175889807,6.412931975320536,15.763351928190072,11337.933716969408,43.99589981908986,13.049493288068794,13.022976132568225,8.927947689289557,8.995482709163284,0.5815713912816497,0.795688847235239,0.7038961038961039,0.5850931677018634,0.1181592039800995,0.7312013828867762,0.90625,0.8679245283018868,0.7419354838709677,0.1268292682926829,0.5168287210172027,0.715670436187399,0.6415770609318996,0.5379644588045234,0.1151919866444073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024936391927096,0.0045555082080314,0.0068852059468681,0.0089576216040344,0.0112696990674756,0.0132622479561255,0.0154309333061182,0.0174432863274065,0.0198117069177241,0.0219719406839586,0.0243899935329562,0.0263230954315033,0.0283928240406994,0.0308016050668949,0.0328517691798941,0.0350388688190296,0.0370239774330042,0.0391914362918312,0.0412070456131579,0.0431469166605768,0.0580968420171759,0.072364833689862,0.0851124215571883,0.0978357076624799,0.1094129832794301,0.1253670896812018,0.136633473764841,0.1464354322305229,0.1557846015385604,0.164187612256531,0.1751503958353584,0.1866053114248814,0.1974690448917253,0.2067085677931707,0.215893162628994,0.2246278604754499,0.2329994964471549,0.2412547957571654,0.2485718187404693,0.2548810180080852,0.2607419949667737,0.2660741921868405,0.2711542794796077,0.2742717863746608,0.278434475622375,0.2826879130381076,0.2860371105029251,0.2897791041730436,0.2933380065944907,0.2958603359344002,0.2933619421615859,0.2900821208112875,0.2871541139820414,0.2849873509215757,0.2830118528873752,0.2795616522338877,0.2765300304105423,0.2765272255266011,0.2772256905841102,0.279032344579735,0.279906191369606,0.2808797642358432,0.2817966108812968,0.2826427420798281,0.2827033659745446,0.2843165392543116,0.284504391468005,0.2883993849822712,0.2915351707693386,0.2958358002762976,0.3032281302057539,0.3051549635534113,0.3094025586883617,0.313342876516236,0.3164181868691545,0.3200375410605349,0.3299263490154817,0.3307616221562809,0.3320744537361748,0.3386183465458663,0.0,2.516792729710388,50.202853237433565,135.7190379684205,201.69963966209133,fqhc3_100Compliance_implementation,39 -100000,95673,48678,465.596354248325,4933,50.21270368860598,3938,40.4920928579641,1484,15.14533881032266,77.33990302576841,79.73014613490365,63.32261558699434,65.08883550536022,77.15294437896651,79.54615041126272,63.253110715301226,65.02286502939808,0.186958646801898,183.9957236409333,0.0695048716931125,65.97047596214622,229.61114,161.6341010863308,239995.7563784976,168944.3218947151,540.41141,363.89691665903774,564197.4642793683,379699.7550605059,490.46872,240.79236124366895,507829.56529010274,248095.9292143981,2780.34562,1296.7577197412118,2863564.5375393266,1313228.0569657695,938.15584,422.406529781124,963576.8189562364,424501.7296218614,1454.08044,612.0388502398113,1485890.1884544229,610397.0905624883,0.38133,100000,0,1043687,10908.898017204436,0,0.0,0,0.0,47143,492.0615011549758,0,0.0,44358,458.7814743971653,1117583,0,40099,0,0,0,0,0,80,0.8361815768294085,0,0.0,0,0.0,0,0.0,0.04933,0.1293630189075079,0.3008311372390026,0.01484,0.3522550544323484,0.6477449455676516,23.224753581085043,4.162653918028024,0.3039614017267648,0.2841543930929406,0.1934992381919756,0.2183849669883189,11.430786109853036,6.084931141384153,15.7585875097455,11373.116050709656,45.09082037581074,13.7856465618304,13.498109899985993,8.557576681650424,9.249487232343924,0.5733875063484002,0.8105451295799821,0.6875522138680034,0.5551181102362205,0.1220930232558139,0.7521815008726004,0.9108695652173912,0.8359621451104101,0.7416267942583732,0.14375,0.5,0.7405159332321699,0.634090909090909,0.484629294755877,0.1171428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0044599868227662,0.0066665990197968,0.0087961646284483,0.0107989384094444,0.013080478022761,0.0153708158356097,0.0175246999265126,0.0196475302584232,0.0218837642531065,0.024183710082526,0.0263195713317867,0.0286792530437643,0.0306944358609892,0.0327474636970679,0.0345840096773193,0.0365182798595211,0.0384978669960453,0.0404552121584088,0.0423329511101845,0.0576744283222079,0.0724897138729231,0.0856948014478308,0.0987954342222923,0.1110747742425521,0.1259600939463828,0.1374539821976086,0.1478915213828043,0.1575923275733174,0.1676333422674886,0.1794071090914964,0.1902072785494828,0.2002805079585979,0.2079986009552852,0.2168392328598307,0.2260129112270094,0.2346346904629113,0.2415360043191685,0.2484378366731308,0.2553323029366306,0.2610998057533993,0.2663939694968737,0.2720188259779575,0.2763025572263193,0.2808632988790216,0.285141155332398,0.2896627556821731,0.2922080396265955,0.2946791174112108,0.296990945156911,0.2937339448307398,0.2904684043474079,0.2882543255028836,0.2853616640443437,0.2827722302179622,0.2784997632973443,0.2750355057598233,0.2752933091159,0.2756047393203801,0.2766671401178893,0.2778461194363677,0.2783075440907571,0.2795419052576783,0.2800561047288271,0.2805970864481503,0.2812573000752719,0.2829781800641262,0.2878849588019674,0.291885091214091,0.2961489998424949,0.3006279080272846,0.3034857353794231,0.3065967016491754,0.3078959310240508,0.3089688607122879,0.3144743045733145,0.3200670936261055,0.3242694805194805,0.3307522123893805,0.3349961627014581,0.0,2.606256270686863,49.157142522094645,151.26888223344577,199.6755359574378,fqhc3_100Compliance_implementation,40 -100000,95786,48425,461.9464222328942,4834,49.172112834861046,3858,39.713528072996056,1475,15.00219238719646,77.331780499572,79.67368374550408,63.32970022966426,65.06337454452137,77.13764371883761,79.4842811915725,63.25504893534702,64.99338553779444,0.1941367807343965,189.402553931572,0.0746512943172419,69.98900672692798,227.97082,160.4375868794054,238000.1461591464,167495.86252626206,541.79973,365.9576144550376,565075.8043973023,381497.7078644453,489.77696,240.72333889027965,508134.7900528261,248754.78988775867,2670.26453,1266.2969040278747,2749934.6668615453,1284201.0252311134,838.44777,390.13408228448856,860864.8027895518,392828.0461492157,1421.61948,620.102596847957,1447256.9686593032,614595.1654766563,0.37983,100000,0,1036231,10818.188461779384,0,0.0,0,0.0,47229,492.4832438978556,0,0.0,44301,459.37819723132816,1123019,0,40362,0,0,0,0,0,85,0.8769548785835091,0,0.0,1,0.010439939030756,0,0.0,0.04834,0.127267461759208,0.3051303268514687,0.01475,0.3644101346001583,0.6355898653998416,22.747779687149027,4.008107873939811,0.324779678589943,0.2840850181441161,0.1990668740279937,0.1920684292379471,11.152322570857727,6.168205637219086,15.983331355584024,11286.10748889444,44.7029276441865,13.469562629464944,14.414980381388183,8.683452905379772,8.1349317279536,0.5813893208916537,0.7974452554744526,0.6911412609736632,0.5703125,0.087719298245614,0.761400651465798,0.9085239085239084,0.8706199460916442,0.7572815533980582,0.1117647058823529,0.4973384030418251,0.7105691056910569,0.6156462585034014,0.501779359430605,0.0805604203152364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024309951886553,0.0049166700458213,0.007093062193674,0.0094376041285708,0.0116653953724891,0.01374759417102,0.0157725168736363,0.0178855812813916,0.0198626075933839,0.0219071505348825,0.0240702013367777,0.0262236505703695,0.028338748817505,0.0303567197849174,0.0324584851330849,0.03449808745994,0.0365487385558639,0.038636269344065,0.0405919398083678,0.042683244301438,0.0574374386909607,0.0708614467283853,0.0844341007254581,0.0965992685695069,0.1080141208704357,0.1238256274768824,0.1339347233853101,0.1440087632538897,0.1541400730036075,0.1626912691269127,0.174895037140704,0.1855826229933797,0.1957086772590345,0.206247470714981,0.2156441920359242,0.2250451508537112,0.2331380753138075,0.2411097865449065,0.2481459642120064,0.2541177817203686,0.2596950747286535,0.2651389440717975,0.2710477136706645,0.2761603527184721,0.2800437131928844,0.2836981708820194,0.2861256118476233,0.2891642996344368,0.2929209158880926,0.2965895892725161,0.2934558813634589,0.2898550724637681,0.2864818487418597,0.2836519027545187,0.280502827290402,0.2766358001071401,0.2739416000633061,0.2735311971911863,0.2731107505763812,0.2734398660324586,0.2744434050514499,0.2758940005910748,0.2766375865603883,0.2778459410623062,0.2787944284341979,0.280506842899516,0.2825907942187012,0.2865851752274361,0.2915708812260536,0.2965854427884236,0.2996829710144927,0.3024707687423946,0.3061803061803061,0.3120394986707178,0.3146813886029755,0.3212392507951466,0.3204462102689486,0.3231878253904686,0.3272976680384087,0.3273577552611068,0.0,2.2394640734748235,53.65743629003133,141.09514897510022,190.1401895538307,fqhc3_100Compliance_implementation,41 -100000,95674,48662,464.2222547400547,4915,50.01358780860004,3909,40.13629617241884,1478,14.936137299579825,77.34192318165195,79.71753761338837,63.32298576779221,65.07508567851863,77.14426396115611,79.52667204528738,63.24714710455629,65.0048027825449,0.1976592204958365,190.86556810098895,0.0758386632359204,70.28289597373316,229.83862,161.76371787697428,240231.01365052155,169078.0336109855,540.81869,364.3848367665311,564558.5320985848,380148.4414531324,488.21824,239.18415317230637,505708.4996968874,246386.11676777812,2750.05117,1286.5472656950983,2826518.11359408,1296958.319432125,896.19991,408.5816244386706,916754.144281623,407148.05056161183,1432.96602,620.5777447916205,1451353.011267429,610447.9339798103,0.38245,100000,0,1044721,10919.59152956916,0,0.0,0,0.0,47147,492.0459058887472,0,0.0,44103,456.4144908752639,1113877,0,39947,0,0,0,0,0,87,0.9093379601563644,0,0.0,1,0.0104521604615674,0,0.0,0.04915,0.1285135311805464,0.3007121057985757,0.01478,0.3534449202024134,0.6465550797975866,23.602853988771955,4.047047475084458,0.3054489639293937,0.2824251726784343,0.2092606804809414,0.2028651829112304,11.272555417048196,6.169766492522755,15.873598497964734,11389.003795166687,44.76412453524743,13.46922583191052,13.504487648200616,9.14541096751177,8.645000087624522,0.5712458429265797,0.7753623188405797,0.6800670016750419,0.5794621026894865,0.1147540983606557,0.7271952259164536,0.8955555555555555,0.8299120234604106,0.7336683417085427,0.1147540983606557,0.5043859649122807,0.6926605504587156,0.6201641266119577,0.529886914378029,0.1147540983606557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024604355882263,0.0046827013713625,0.0068880164744311,0.0092327381315131,0.0113491910142068,0.0135102115615646,0.0159451909548763,0.0181042141055619,0.0203282376399611,0.0226490825688073,0.0249466819785087,0.0270381285877121,0.0290871689380303,0.0312097513729611,0.0332899789421528,0.0352840198136523,0.0373121186695256,0.0394436371185385,0.0414422096965411,0.0434234384443842,0.0577973697130501,0.0719573617030188,0.0855883279101501,0.0982342046554699,0.1104896580835795,0.1257157372225691,0.1360460424320937,0.1458901482870291,0.1553526758033824,0.164924107430387,0.1763906709940373,0.1877416629661319,0.1981797596237589,0.2069697699363001,0.2158654322482634,0.2249786710691057,0.2341021747867637,0.2427135282396514,0.2494356275028076,0.2549877453787479,0.2605641951309821,0.2656994091148423,0.2709442984636507,0.2764830000479547,0.2809758705319174,0.2851984669796789,0.2888101557413992,0.2926965791850598,0.2966820837705831,0.2998996858583458,0.296906799649572,0.2942327298779311,0.2911240768927222,0.2878731020148952,0.284117856295945,0.2807808037146217,0.2763149586411568,0.2783277065783867,0.2779588145974442,0.2782475566553326,0.2777850430623797,0.2778808208366219,0.2787005118562624,0.2805087582282717,0.2806110233204041,0.2817218783185267,0.2835850444029639,0.2887967322503196,0.2932550300587274,0.2978740126537509,0.2994025425632272,0.3054347256433101,0.3066217312613118,0.310809798486778,0.3165926748057713,0.3179552567520575,0.3222833358109112,0.3234946871310508,0.3351264120494889,0.3451066961000736,0.0,2.814858531874607,50.52515070547839,141.07100202583328,202.27520272602908,fqhc3_100Compliance_implementation,42 -100000,95732,48565,463.61718129778967,4841,49.36698282705887,3850,39.56879622278862,1463,14.843521497513892,77.32392886815877,79.68882103889324,63.31606620966248,65.06520567200057,77.13552812501221,79.50611636713624,63.24437414191531,64.99868910205905,0.188400743146559,182.70467175699423,0.0716920677471719,66.51656994152688,230.43658,162.17970681583688,240710.08649145527,169410.13121614183,541.09464,364.5442373332852,564597.2088747754,380175.69604028447,483.74622,237.0040246966283,501456.9527430744,244435.18008739653,2663.52338,1243.2953472318552,2740342.1113107423,1256796.3452469977,882.97375,399.2886394463805,904813.6986587556,399564.5546383443,1416.42118,606.5840830596541,1438833.3681527595,598760.2623806731,0.38096,100000,0,1047439,10941.367567793422,0,0.0,0,0.0,47223,492.6252454769565,0,0.0,43699,452.6595077925877,1112584,0,39985,0,0,0,0,0,89,0.9192328583963564,0,0.0,1,0.0104458279363222,0,0.0,0.04841,0.1270737085258294,0.3022102871307581,0.01463,0.3725994852504454,0.6274005147495545,23.439495093555426,4.015250969347065,0.3194805194805195,0.2862337662337662,0.1961038961038961,0.1981818181818181,11.4054874744245,6.231700018661976,15.652460123064918,11377.080209937096,44.30742619635423,13.517245054049551,14.053480909047964,8.401813223937118,8.334887009319596,0.592987012987013,0.8112522686025408,0.691869918699187,0.5814569536423841,0.1297509829619921,0.7513089005235603,0.9235807860262008,0.8314285714285714,0.7028571428571428,0.147239263803681,0.525887573964497,0.7313664596273292,0.6363636363636364,0.5448275862068965,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022182381719286,0.0045118575672469,0.0067793857957659,0.0092970798024751,0.0114029377059852,0.0136048879837067,0.0158534347409416,0.0180571008604938,0.020407119999182,0.0226272140882563,0.024749582209828,0.0271155465204624,0.0292693458347469,0.0313024669104393,0.0334743576514291,0.0354030782588921,0.0370918959231024,0.0390156311626844,0.0408776581916497,0.0427059240274218,0.0581012935759701,0.0717514124293785,0.0848897324846107,0.0977517928873372,0.1102299929346507,0.1256148516422489,0.1374744012817928,0.147473779481446,0.1571616266276424,0.1666970421432936,0.1782980784756983,0.1890585461859549,0.1996238639822585,0.2082741127850786,0.216822286009656,0.2264572997873848,0.2348858488250128,0.2431580842635938,0.2503689576096088,0.2570075779288523,0.2623036285277353,0.2680738415405519,0.2718653709409813,0.2762289772318322,0.2809622845745004,0.2846325551568069,0.2875629494149775,0.2906726445975723,0.2945217019401495,0.2976531649916137,0.2948911403319681,0.2921741045012316,0.2888622754491018,0.2855470443705737,0.2830903097437116,0.2786471864779778,0.2744881367704864,0.2743278844108455,0.2744009401025257,0.2749519812193213,0.2759488948988156,0.2774211334724902,0.2778044153515812,0.2785018460032916,0.2789607158237236,0.2797240878562352,0.280511616061575,0.2840635079698118,0.2877110628459329,0.2920749051833122,0.2951940934003714,0.2997944447372582,0.3025897035881435,0.3068806993744818,0.3116226838854576,0.3159136486964728,0.3196511802736431,0.3186899392037654,0.3170924414011061,0.317910447761194,0.0,2.5610785744114053,49.555398323707806,146.95169693074922,192.99763640454137,fqhc3_100Compliance_implementation,43 -100000,95789,48549,462.94459697877625,4885,49.70299303677875,3850,39.54525049849148,1427,14.50062115691781,77.4066300966336,79.74668417589973,63.35719594835807,65.08824088481948,77.21950059733533,79.56429873634944,63.28548237386715,65.02098943203382,0.1871294992982797,182.3854395502877,0.0717135744909214,67.25145278566913,230.48234,162.15335852191487,240614.62172065687,169281.81578460455,540.59893,364.66654999755934,563708.2754804832,380041.6958080356,487.84329,239.33313069234435,505611.3958805291,246928.5487450849,2726.77501,1294.115453855121,2804796.3858063035,1309155.3872105577,878.06326,409.26421983965867,903223.1571474804,413815.1456217925,1391.56226,606.1651564772687,1416018.7077848187,600914.4292646338,0.38132,100000,0,1047647,10937.028260029858,0,0.0,0,0.0,47048,490.4947332157137,0,0.0,44104,456.75390702481496,1115261,0,40046,0,0,0,0,0,94,0.9708839219534602,0,0.0,0,0.0,0,0.0,0.04885,0.1281076261407741,0.2921187308085977,0.01427,0.3624042427813789,0.637595757218621,23.055926710209597,4.045532846107941,0.327012987012987,0.2690909090909091,0.1968831168831168,0.207012987012987,11.147924141473233,5.975795908637972,15.410896686660308,11332.124179812892,44.25019328384854,12.68724611637217,14.363179728197755,8.380509848060717,8.819257591217886,0.5867532467532468,0.8011583011583011,0.7148530579825259,0.5725593667546174,0.1191969887076537,0.7664172901080631,0.9106382978723404,0.8704225352112676,0.7938144329896907,0.1684782608695652,0.5051001133358519,0.7102473498233216,0.6537610619469026,0.4964539007092198,0.1044045676998368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0048467887489606,0.0069818654164256,0.0092762870467268,0.0115234792160372,0.0137675403759597,0.0160681878428253,0.0182207931404072,0.0203094975264728,0.0223914200335666,0.0243712464386004,0.0265971637900958,0.0287267719125143,0.0307191830179744,0.0325849414481279,0.0347893432465923,0.0371198013656114,0.0392486160353299,0.0411831319543287,0.0430296720458094,0.0572337872384828,0.0714390294917381,0.0855091452229967,0.0984130320546505,0.1105690714263136,0.1260949965657526,0.1363005204413682,0.1463461313542652,0.1555911224925309,0.1647600685518423,0.1759680664493291,0.1873520094281482,0.1984440025643533,0.2074074882893113,0.2156195079086116,0.2248343308515228,0.2332344610718348,0.2408700050581689,0.2483813541064281,0.2544459957428303,0.2603604332597362,0.2661191396894751,0.27125439042562,0.2754318962730614,0.2797561952866041,0.2851107333776759,0.2880912764440219,0.2914447001385834,0.2947335723438127,0.2974348829541708,0.2946719435694478,0.2908781044269437,0.2888360443518883,0.2855493665040838,0.2828454983327158,0.2789079310818441,0.275028750571073,0.2742727554533144,0.2742410895785336,0.2745056422229297,0.2738431780984972,0.2740313951437474,0.274488228210771,0.2743990251467819,0.2751053245424035,0.2758451865594722,0.2772430485196442,0.2824853501999814,0.2873563218390804,0.292786808377618,0.2978399211257506,0.3017245870890429,0.3054254007398274,0.3096654275092936,0.3147843567251462,0.3189754192510912,0.3170548459804658,0.3228593872741555,0.3299108349094839,0.3304314912944738,0.0,2.57287576411576,51.77672274013826,138.49756885057755,194.12599206854864,fqhc3_100Compliance_implementation,44 -100000,95691,48069,458.9877835951134,4771,48.64616317104012,3792,39.07368509055188,1441,14.672226228171928,77.29491858535671,79.6991670457109,63.29396199958445,65.07495812526135,77.11186441463676,79.51862956078321,63.2248708094724,65.00919425041131,0.1830541707199557,180.53748492768307,0.0690911901120543,65.76387485003465,229.4886,161.3690652688231,239822.09403183163,168635.14592047647,538.29075,363.7200128901375,561965.2945418064,379535.91965189285,479.97978,236.44496975343435,498198.1064049911,244426.7382039633,2651.89773,1250.4245920860908,2733360.4623214304,1268865.9941396387,880.7119,405.8694960363113,906105.7884231536,409881.0609527653,1390.81142,596.0970103598505,1417499.451359062,592119.0724996389,0.37896,100000,0,1043130,10901.004274174164,0,0.0,0,0.0,47054,491.1433677148321,0,0.0,43321,449.3839546038813,1118937,0,40133,0,0,0,0,0,77,0.7942230721802468,0,0.0,0,0.0,0,0.0,0.04771,0.1258971923158117,0.3020331167470132,0.01441,0.3509197493430361,0.6490802506569638,23.33105989496905,4.033290862554195,0.3201476793248945,0.2805907172995781,0.202795358649789,0.1964662447257384,11.467720995667769,6.265904516612037,15.495748430738846,11338.293988597925,43.61888119631724,13.149783070564496,13.769572034798692,8.588597241740535,8.110928849213526,0.5933544303797469,0.8139097744360902,0.6985172981878089,0.5851755526657998,0.1154362416107382,0.7665827036104114,0.9216494845360824,0.8727272727272727,0.7162790697674418,0.1490683229813664,0.5140330642060746,0.7236614853195165,0.6334841628959276,0.5342960288808665,0.1061643835616438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024937403063448,0.0047692978984646,0.0069974102472959,0.0091810279091047,0.0114009996233598,0.0136271442112666,0.0158373811175966,0.0179399685335403,0.0198571837786962,0.0217580593941753,0.0240549828178694,0.0261654784163054,0.0284835201020796,0.0306503143357724,0.0326906005491442,0.0347990651306128,0.0368079087263344,0.0388920035715027,0.0408621837549933,0.0426516572858036,0.0573875802997858,0.0717262029398216,0.0850219848257479,0.0975789396155343,0.1094676429008503,0.1245318153924286,0.1355941198322984,0.1451994123033026,0.1543705191627579,0.1641257818451008,0.1758173102816825,0.1866480591977151,0.1971823330543205,0.2060170260198673,0.2148637653112836,0.2246050286195099,0.2330046183708529,0.2410386804977385,0.2483027179219363,0.2546707012355867,0.2604392169574328,0.2662570943771575,0.2712197431496715,0.2746816623102563,0.2789965986394558,0.2832615908334053,0.2871539992738836,0.2903660739270904,0.2945382606222038,0.2968422716673912,0.2931801384129543,0.290078640736725,0.2878027523580596,0.2855124693671615,0.2830843116328708,0.279367020869964,0.2771328251035966,0.276786153316615,0.2773960340329758,0.2776856852574728,0.2782644504342617,0.27938187057175,0.2808194836416849,0.2826106352605282,0.2839345839345839,0.2865215353367012,0.2884270462633452,0.293386874137282,0.2968073215034232,0.3008024032570457,0.3049584147616234,0.3088615611970233,0.3116258741258741,0.3147085472666868,0.3206491326245103,0.3207902163687676,0.3254766551568833,0.3265469061876248,0.323481998925309,0.3327130628954224,0.0,2.111167109910101,51.88513844615682,134.77309127264155,192.0750040534988,fqhc3_100Compliance_implementation,45 -100000,95713,48172,459.4255743733871,4882,49.53350119628473,3901,40.09904610658949,1506,15.358415262294567,77.3593554540744,79.73056787029,63.33143217950936,65.08378222906717,77.16836792019274,79.54224324044736,63.25867772342581,65.01405206251188,0.1909875338816675,188.32462984264,0.0727544560835511,69.73016655528852,230.92696,162.34408886391392,241270.21407750252,169615.50558849258,538.7379,363.0140886431063,562242.6525132427,378648.1446022028,482.45068,236.9094347464115,499272.7947091827,243860.5358595782,2750.0083,1291.5409978416662,2830636.810046702,1306987.2416164284,908.74789,416.66266778603534,931749.5742480124,417623.7792003544,1457.7708,628.3254418153841,1488099.3386478326,627819.7904353129,0.38053,100000,0,1049668,10966.827912613751,0,0.0,0,0.0,46996,490.3409150272168,0,0.0,43680,451.57920031761626,1114521,0,39960,0,0,0,0,0,96,1.002998547741686,0,0.0,0,0.0,0,0.0,0.04882,0.128294746800515,0.308480131093814,0.01506,0.3701081612586037,0.6298918387413963,23.166797613906247,4.043884952202358,0.3096641886695719,0.2801845680594719,0.2073827223788772,0.2027685208920789,11.424037530200128,6.317337363240489,16.196586035712134,11331.211036119288,44.681517911671854,13.550583191984549,13.608941640474374,8.910864621989527,8.611128457223412,0.5847218661881569,0.8151875571820677,0.6928807947019867,0.5624227441285538,0.1238938053097345,0.7620660457239627,0.9230769230769232,0.8803680981595092,0.6926829268292682,0.1597633136094674,0.5077205882352941,0.7303921568627451,0.6235827664399093,0.5182119205298014,0.1141479099678456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801806911639,0.0045921315397325,0.0070220300973139,0.0091507383559139,0.0117242711733422,0.0137843973652865,0.0159233396197563,0.0179450013269909,0.0203532947598699,0.0225432283295283,0.0246731272111982,0.0266539302992019,0.0285196921684019,0.0308056872037914,0.032700781145198,0.0346702501550547,0.0368660254883894,0.038997676734152,0.04111354823955,0.0431431368872778,0.0585581822738284,0.0725700949251169,0.0856996003482529,0.098473218228849,0.1106998618624318,0.1264531962383506,0.1374344716344419,0.1476043441226575,0.1563411740817133,0.1643682725019049,0.1768141554774887,0.1874377516996492,0.1980286348405065,0.2072905153262784,0.2156940497433525,0.2245189908511228,0.2323989278534733,0.2401493762865145,0.2478187367393943,0.2540746085741447,0.2603067740144364,0.2661819202038741,0.2710876836345156,0.2754008135917684,0.2796361431170406,0.2835571089260002,0.286530622452297,0.2888903004509941,0.292260942652098,0.2961899619391289,0.2925024839549934,0.2900989691287697,0.2872713500168331,0.2843630509156772,0.2816307819708979,0.2788136367790878,0.2758354836679463,0.2751244186995186,0.2754772742713499,0.2751658801405102,0.2749808807893902,0.2760418716303963,0.2776523702031602,0.2780531368609064,0.2795449101796407,0.2802344580750577,0.2806664588705335,0.2855622339093413,0.2917989325705515,0.2963370972183971,0.300216958958597,0.3030414843708818,0.3049378062570674,0.309353600722402,0.311092577147623,0.3154636767110488,0.3171799516908212,0.327438903238625,0.3341456810181424,0.3328307576328684,0.0,2.5865718263362742,50.83698248670289,140.3956525926654,201.74701637401117,fqhc3_100Compliance_implementation,46 -100000,95890,48295,459.99582855355095,4876,49.50464073417457,3920,40.30660131400563,1442,14.714777349045782,77.4394230829848,79.71873790955436,63.39129033748679,65.07680669361447,77.25228086716632,79.53471232666149,63.32039883528712,65.00940371186212,0.1871422158184827,184.02558289287185,0.0708915021996645,67.40298175235182,231.34628,162.75462623816634,241262.1545520909,169730.55192216742,540.05412,364.006318976148,562628.4909792471,379035.4088961767,487.89288,239.3754163078293,504831.8281364063,246640.99938385648,2763.7159,1294.4943812631857,2844316.299927,1312446.3467109564,904.831,413.2644137174332,928109.7611846908,415602.5200561334,1404.5894,602.920479475771,1434132.5894253831,602749.3714724433,0.3795,100000,0,1051574,10966.461570549587,0,0.0,0,0.0,47068,490.25967254145377,0,0.0,44204,457.0236729585984,1113527,0,40002,0,0,0,0,0,94,0.9802899155282094,0,0.0,0,0.0,0,0.0,0.04876,0.1284848484848484,0.2957342083675143,0.01442,0.3674628034455756,0.6325371965544244,23.05341476392477,4.114707032453127,0.3214285714285714,0.275765306122449,0.2017857142857143,0.2010204081632653,11.682864711629955,6.442947524507664,15.38417614487453,11296.5907881353,44.84691881095694,13.31162543596034,14.260047152912096,8.756347813828555,8.518898408255946,0.6020408163265306,0.8371877890841813,0.7095238095238096,0.5916561314791403,0.1180203045685279,0.7619047619047619,0.9346846846846848,0.8434065934065934,0.7096774193548387,0.1614906832298136,0.5352622061482821,0.7692307692307693,0.6551339285714286,0.5553719008264463,0.1068580542264752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020449483701154,0.0042462199521666,0.0066951379096967,0.0090568489882118,0.0114649293097665,0.013654585783765,0.0159918512859689,0.018359853121175,0.0202382411834416,0.0221772131181079,0.0243140228283366,0.0266975846996778,0.0286598022894958,0.0304084657827555,0.0325779912987896,0.0344062038557252,0.0364787552116202,0.0385659517148482,0.0408106059819565,0.0429232769830949,0.0572789626201346,0.0715241060792877,0.085227808203399,0.0972639270940512,0.1093180909071769,0.1245262302178021,0.135282279419553,0.1450764538992019,0.1547752299934973,0.16470109800732,0.1756807602584362,0.1868659038604907,0.1968801599026679,0.205542321393448,0.2141184232228269,0.2236425614803993,0.2318743660904359,0.2402269152999326,0.2475900270732564,0.253374478541631,0.2596808829981296,0.2646863145608404,0.2694234404536862,0.273916216960023,0.2785918773351448,0.2833552769198587,0.2866942386265665,0.2900969740048741,0.2927241962774958,0.2956449682349691,0.2926825993555317,0.2895649670263377,0.2871073197423989,0.2848151402111449,0.2818816774689988,0.2784063186142961,0.2746414499605989,0.2744829162381442,0.2749927803353322,0.2753530622383081,0.2769035958362041,0.278545897325111,0.2801804798935418,0.2812216242553097,0.281177897766466,0.282254729659878,0.2841062584421431,0.2878059372770419,0.2921561852107809,0.2960819582388363,0.2983455140564049,0.3010279001468429,0.3046423466534087,0.3080343684051854,0.3106578085524469,0.3152558358877623,0.319259599204528,0.3234523089332526,0.3206877729257641,0.319045844204249,0.0,2.242982854022555,49.8854519826432,146.43586611735836,201.4892104425,fqhc3_100Compliance_implementation,47 -100000,95738,48458,462.428711692327,4803,49.11320478806744,3805,39.16939982034302,1446,14.7799201988761,77.34647984393533,79.69827668311444,63.33814763576003,65.07511555949397,77.15841132114365,79.51258313453857,63.26723252933509,65.00717323811682,0.1880685227916814,185.69354857586973,0.0709151064249411,67.94232137714573,229.48156,161.4190882953652,239697.46600096097,168605.03488203764,532.96628,359.3251848884311,556114.9073513129,374743.7745601862,481.06337,236.13551015840176,498277.0895569157,243480.2310084148,2664.33156,1245.8420216518532,2746973.3543629493,1265468.5748130835,879.69421,396.6788904926157,902794.2927573168,398331.3126700521,1397.17754,598.7884561964621,1429246.8821157743,599181.4116560984,0.38054,100000,0,1043098,10895.339363680045,0,0.0,0,0.0,46445,484.509808017715,0,0.0,43423,449.4035806054022,1124807,0,40402,0,0,0,0,0,94,0.9818462888299316,0,0.0,2,0.0208903465708496,0,0.0,0.04803,0.1262153781468439,0.3010618363522798,0.01446,0.352025543803632,0.647974456196368,23.120105500121443,4.077383395308496,0.319053876478318,0.2804204993429697,0.2042049934296977,0.1963206307490144,11.172530189572417,5.946603692875282,15.579398369702531,11328.11565131778,43.71051652686116,13.027296897539026,13.789251117200946,8.656074080579828,8.237894431541358,0.5837056504599212,0.7966260543580131,0.6902800658978583,0.5855855855855856,0.1044176706827309,0.7394366197183099,0.92,0.8478260869565217,0.7354497354497355,0.08,0.5174222555264144,0.706645056726094,0.6334080717488789,0.5374149659863946,0.1118881118881118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875632975491,0.0045717645389208,0.0068296445134512,0.0092846549237114,0.0115931417414119,0.013774637563121,0.0158919469928644,0.0181467457312281,0.0203105355153274,0.0224934219282708,0.0246107483676544,0.0267177139572598,0.0287976147637896,0.030930064888248,0.0327373275693076,0.0348527131782945,0.0368165488109165,0.0388011080102501,0.0408619363422797,0.0430267680449953,0.0578053389290822,0.0714726783677143,0.0844322747825722,0.0978948918003827,0.1103321033210332,0.1251770875182373,0.1348458813296845,0.1448578239400647,0.1538190552441953,0.162554924445397,0.174578570044565,0.1859280724897818,0.1967945235249375,0.2061426511079061,0.21435322562919,0.2237495987869531,0.2316517085679246,0.2400908549132493,0.2471472970213924,0.2531229604863917,0.2584360617064088,0.2639687660728479,0.2702296579386395,0.275107861936721,0.2787458561523236,0.2827441035993894,0.2863538592366565,0.2896109513752831,0.2931818476247231,0.2965020386082045,0.2944018951987401,0.2920481728944981,0.2899168530789685,0.2877408182408543,0.2855659089560211,0.2818924375917768,0.277998800164188,0.277442366530866,0.2776433707022864,0.2784607447205963,0.2792017473444471,0.2816441374968026,0.2817990014831526,0.2818941504178273,0.2827919900354508,0.2837658450245972,0.283789545493306,0.287332227888496,0.2921450256481837,0.2965134582087202,0.3026655202063628,0.3083095766022595,0.313627878033603,0.319385593220339,0.3222877468875784,0.3253808905161214,0.326797385620915,0.3330638641875505,0.3343524180100055,0.3347622759158223,0.0,2.276996510207263,49.17497700676391,141.49359727827445,195.21398201194933,fqhc3_100Compliance_implementation,48 -100000,95745,48428,461.60112799624,4887,49.8929448012951,3900,40.20053266489112,1527,15.572614757950806,77.41222784566315,79.76917118381613,63.350809200748486,65.09013356715738,77.22043339091405,79.58106034128406,63.27879441484775,65.02217355152708,0.1917944547491004,188.110842532069,0.072014785900734,67.96001563030529,229.52842,161.3992396626875,239728.42446080732,168571.5382157685,537.19091,362.219459097108,560523.1918115828,377776.4040828325,485.95257,237.97203007555072,504588.59470468434,246247.77340567368,2797.50464,1294.4141491847845,2884957.439030759,1315138.4590148665,928.95862,421.1205880418229,957412.1572928092,427097.215695678,1491.0866,628.0671998450528,1521921.9384824273,625389.4673137943,0.37999,100000,0,1043311,10896.746566400334,0,0.0,0,0.0,46770,487.9210402631991,0,0.0,43907,455.689592145804,1123040,0,40209,0,0,0,0,0,95,0.9817745051960938,0,0.0,0,0.0,0,0.0,0.04887,0.1286086475959893,0.3124616329036218,0.01527,0.3620892018779342,0.6379107981220657,23.41078668947953,4.174293909478323,0.3071794871794872,0.272051282051282,0.202051282051282,0.2187179487179487,11.42927507724634,6.14833703696304,16.159650563176186,11335.807403160556,44.33359179184202,12.943993378529008,13.499392899453223,8.732615366733251,9.15759014712654,0.5756410256410256,0.8011310084825636,0.6953255425709516,0.5888324873096447,0.1148886283704572,0.7714033539276258,0.9337899543378996,0.8593272171253823,0.7916666666666666,0.1818181818181818,0.4954824719913263,0.7078651685393258,0.6337543053960965,0.5234899328859061,0.0974889217134416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0042973698880048,0.0064318467719027,0.008784222926314,0.0108886832928354,0.0133150099251794,0.0154717981123998,0.0177647623031948,0.0199997956076074,0.0220777891504605,0.0244014921702057,0.0264740904984807,0.0285488115798996,0.0304933936129676,0.0326375202501212,0.0348345616737128,0.0368222673238619,0.0390944367205494,0.0413690569019473,0.0432631206117049,0.0573785039411181,0.0714674367989285,0.0848744873018703,0.0974185811663721,0.1092798733843313,0.1251785770976856,0.1366699565941821,0.1464923394695655,0.156093391034888,0.1648333959328218,0.176632924765262,0.1879425712986422,0.1984456127747118,0.2076983709931686,0.2159813176766063,0.2249035177216874,0.2340183031075056,0.2422068561646921,0.2496991166519063,0.2556225498062771,0.2618909781400518,0.2669303130996396,0.2713129687906679,0.2760429139326596,0.279352865499915,0.2836133161036244,0.2867706758934259,0.2893484742752014,0.2934391329591639,0.2964145415369253,0.293321541512569,0.2900969225714598,0.2873216938037721,0.285295554469956,0.2828077314343845,0.2797655205928805,0.2758387997865729,0.2754386820835569,0.2752560738169813,0.2740358260685045,0.2738501483679525,0.27606162508798,0.2778931196279533,0.2782560584264689,0.2786326822296331,0.2799432477750548,0.2822846515821804,0.2870278330019881,0.2919905607995558,0.2947277779952248,0.2982929020664869,0.3033943654582656,0.3073291925465838,0.3128182090446241,0.3135468433646236,0.317493594223154,0.3203651054915457,0.3261428854146052,0.3301912200377053,0.3383458646616541,0.0,2.0156474042266312,49.39769873114583,141.38843015746167,204.52927695468696,fqhc3_100Compliance_implementation,49 -100000,95729,48765,465.9194183580733,4859,49.50432993136876,3838,39.49691316111105,1473,14.969340534216382,77.32373385663094,79.69480781143274,63.321321634088775,65.0757169618332,77.13446272335389,79.50922444322438,63.24960223841877,65.00796791309352,0.189271133277046,185.58336820835564,0.0717193956700015,67.74904873967103,229.03144,161.21962265542732,239249.79891151065,168412.5214464032,540.9783,364.9428540229947,564531.4794889741,380642.1189221602,486.31616,238.9361802902066,504258.4378819376,246616.3793085769,2700.56382,1252.8912474327717,2780322.45192157,1268061.2013420926,887.94243,398.5313681958893,913832.2347460018,402585.8393965141,1426.577,605.9017260902698,1451562.974647181,601635.1283189805,0.3825,100000,0,1041052,10874.99085961412,0,0.0,0,0.0,47114,491.5438372906852,0,0.0,43966,455.5672784631616,1119778,0,40185,0,0,0,0,0,84,0.8774770445737446,0,0.0,1,0.0104461552925445,0,0.0,0.04859,0.127032679738562,0.3031487960485696,0.01473,0.3669220192496563,0.6330779807503437,23.29161911834136,4.084166343661952,0.3150078165711308,0.2759249609171443,0.2071391349661281,0.2019280875455966,11.723091446366263,6.5507729540849695,15.711765933573997,11396.951148776903,43.91355552901369,13.06270437404658,13.603763171618423,8.91330560243474,8.333782380913947,0.585461177696717,0.8158640226628895,0.685690653432589,0.5849056603773585,0.1148387096774193,0.7544169611307421,0.934065934065934,0.8398692810457516,0.7302325581395349,0.0961538461538461,0.5147819660014782,0.7268211920529801,0.6334440753045404,0.5310344827586206,0.1195476575121163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316109422492,0.0046751244840629,0.0068717011774259,0.0088714102798609,0.0111102067393781,0.0133952673450885,0.0154917798719047,0.0175768284088936,0.0197151125336169,0.0217625070408111,0.0238642190544559,0.026076061169366,0.0282807291880992,0.0302761747732893,0.0323905862923203,0.034415738816694,0.0364466815809097,0.038597219340112,0.0406766972019173,0.0425762485802707,0.0571780601643503,0.071089154507965,0.0849934434828219,0.0987660814407287,0.1108123213852594,0.1263045478096285,0.1367219410759943,0.1464507273056173,0.1554473316031741,0.1645239805710732,0.176328086306768,0.1873154268035438,0.1976013395963813,0.2069772272573221,0.2158154678751746,0.2252992437244632,0.234661225764012,0.2424620292981037,0.2493368098855005,0.2569036125283122,0.2626350141512159,0.2682698933647905,0.2736477705049741,0.2783637212531874,0.2825559384555647,0.2860660682845147,0.2893285476669877,0.2932124279845858,0.2959764906920746,0.2983510617264423,0.295823525455646,0.2928815051160743,0.290150480721857,0.2879718037238729,0.2861236488894167,0.2823288383328746,0.2793277576140129,0.278560327198364,0.2795918367346939,0.279209117903309,0.279228298222023,0.2801868569401191,0.2817584807796879,0.2826717863999642,0.2832825142253487,0.2847664888773253,0.286576512455516,0.2907861635220126,0.2951394981575715,0.2986765231906522,0.3015460391298399,0.3053780617678381,0.3071590622636753,0.3093821510297483,0.3141869804800598,0.3142823334516625,0.3151368516558294,0.3231572604940751,0.32627003531649,0.3305407463823305,0.0,2.3744712007232702,49.02183573552663,139.88647594850138,200.59988039999595,fqhc3_100Compliance_implementation,50 -100000,95788,48380,461.3834718336326,4895,49.8705474589719,3930,40.52699711863699,1524,15.5447446444231,77.38153749659537,79.72271165180116,63.350937847410606,65.08260148281703,77.17887209739523,79.52233715892007,63.27500008048976,65.00959767601123,0.2026653992001428,200.374492881096,0.0759377669208447,73.00380680580076,230.39302,162.1152717439332,240523.8860817639,169243.82150575562,540.77895,364.4964112918081,564045.9452123439,380012.5608022818,486.03004,238.30315878193207,504172.5685889673,246246.08822579007,2788.81182,1305.0325198183043,2877644.151668268,1328673.9958410908,921.20426,419.3042340220459,948038.95059924,424069.3239466791,1489.0304,638.300960762158,1521110.7654403474,639038.1709004978,0.38123,100000,0,1047241,10932.903912807453,0,0.0,0,0.0,47132,491.5125067858187,0,0.0,43952,455.6625046978745,1116140,0,40059,0,0,0,0,0,81,0.8456174051029357,0,0.0,0,0.0,0,0.0,0.04895,0.1284001783700128,0.311338100102145,0.01524,0.3624213836477987,0.6375786163522013,23.17080986572127,4.030547966767594,0.3216284987277353,0.2748091603053435,0.1908396946564885,0.2127226463104325,11.493609950073012,6.281280979249138,16.45032984369542,11318.28706950256,45.15376639335166,13.217958866465812,14.4262070995394,8.325604726637101,9.183995700709348,0.573027989821883,0.8064814814814815,0.689873417721519,0.5426666666666666,0.1220095693779904,0.7482993197278912,0.9390519187358916,0.8478260869565217,0.7158469945355191,0.1153846153846153,0.4981844589687726,0.7142857142857143,0.625,0.4867724867724867,0.1238532110091743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027243816970163,0.0048654894885154,0.0070512560366868,0.009404547901242,0.0117941314028915,0.0139458656107169,0.0159620010600562,0.0181263331938476,0.02034580719001,0.022469150960771,0.0244912180025823,0.0268317217876865,0.028963900513063,0.0309504442819929,0.0331610813710018,0.0351707392674484,0.0372531975661244,0.0389032859956463,0.0409503132044503,0.0428644309556779,0.0572907426925605,0.0722159471218206,0.0854291375315812,0.098067648078681,0.1104425711275026,0.1253447747471651,0.1355361041052921,0.1457396481156647,0.1557357805997225,0.164580296664666,0.1759197468408929,0.186470556426756,0.196248274662812,0.2050354602178973,0.2129494187389329,0.2230191937304908,0.2312366214769889,0.2395032591593616,0.2466071813244748,0.2530600105241483,0.2590434571497936,0.2646876643487407,0.2706436123660619,0.2759078989906247,0.2802529218296782,0.2836904747252206,0.2876055352949992,0.2909042390972857,0.293469546101125,0.2966969261782105,0.2943493634126994,0.2912075834592664,0.2877606731770467,0.2853389916136203,0.2837867925368482,0.2805017800663132,0.2765527901328033,0.276225946617008,0.2761337204366797,0.2757941087693755,0.2762220813602297,0.2766736195836121,0.2776143688591276,0.2769659788064696,0.2783337323437874,0.2804111936036551,0.2825206131527498,0.2885797173784197,0.2912202588006122,0.2953453571709852,0.2973339358337099,0.3017664118112312,0.3058742398595699,0.3108804364297621,0.3148355754857997,0.3152888680131517,0.3153439153439153,0.3142628525705141,0.3158472946992584,0.319787314849981,0.0,1.9369958319396212,51.37145235778517,147.10404785794887,199.76753254604196,fqhc3_100Compliance_implementation,51 -100000,95851,48049,457.5330460819397,4868,49.51435039801358,3857,39.5927011716101,1426,14.428644458586763,77.37299817448195,79.67391398907279,63.35320242165369,65.05675046252938,77.1878050535265,79.49658741216044,63.28184676041506,64.99153368426407,0.1851931209554465,177.32657691234976,0.071355661238627,65.21677826530947,230.10372,161.8398380657692,240062.8266789079,168844.26969594415,539.83994,364.2602586675175,562527.0889192601,379350.4561492138,478.27914,235.00149932821336,495457.2930903172,242414.2536917361,2743.40664,1289.81604362087,2815023.901680733,1298770.2331183176,898.1515,413.8027569048373,915420.3294696978,410293.8909751782,1389.7616,601.3097909999391,1407088.8775286642,589351.882129723,0.37955,100000,0,1045926,10911.946667223086,0,0.0,0,0.0,47204,491.7736904153321,0,0.0,43298,448.2060698375604,1116911,0,40137,0,0,0,0,0,74,0.7720315906980626,0,0.0,0,0.0,0,0.0,0.04868,0.1282571466209985,0.2929334428923582,0.01426,0.3588884509262909,0.6411115490737092,23.2484874604882,3.987215535773288,0.3038631060409645,0.2797511018926626,0.2107855846512834,0.2056002074150894,11.291304554837174,6.123077497252491,15.312168329370548,11263.181137323749,44.13360894602421,13.29283242141061,13.063878551797048,9.091912966377794,8.68498500643875,0.5771324863883848,0.809082483781279,0.6732081911262798,0.5756457564575646,0.1210592686002522,0.7508650519031141,0.9329004329004328,0.8193979933110368,0.7377777777777778,0.1529411764705882,0.5027767493520918,0.7163695299837926,0.6231386025200458,0.5136054421768708,0.1123595505617977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0044999847973486,0.0070397533043222,0.0093109680563734,0.0116605331110343,0.0139047231270358,0.0161548418660116,0.0181755094959638,0.0200369882189457,0.0222031227617819,0.024435223605348,0.0267372546605517,0.0286316222187965,0.030673583662714,0.0326175479108893,0.0345846026746527,0.0366963934697593,0.0388995388839956,0.0408934672218818,0.0428761678839711,0.0581850032846372,0.0719085389430563,0.08474327679591,0.0972338906158111,0.1095945234333859,0.1251307296563526,0.136105459477789,0.1454543521481654,0.1554111029278341,0.1639609519829406,0.175294345551992,0.1860555615609123,0.1957240059998695,0.2048439123065988,0.2132623192552325,0.2218518108317643,0.2299694326067069,0.2374893119121551,0.2453551416710147,0.2518862847917931,0.2579619307537525,0.2632293080054274,0.2678051551516012,0.2721468953622077,0.2759591693065822,0.280940243557066,0.2838664481667271,0.2875591031572525,0.2915001228866726,0.2945590252136301,0.2915949203616014,0.2898724082934609,0.2866697644292372,0.2839094400646856,0.2818938281493348,0.2792012345113138,0.275204574894948,0.2761549413324169,0.2758339006126616,0.2767831719817767,0.2769239377774461,0.2779362300595999,0.2794598762216341,0.27976375505129,0.2813066285169289,0.2822215904685602,0.283866402490801,0.2889415876185721,0.2918277098784776,0.2960536638945552,0.3004661168877734,0.3024765694538981,0.305883816395074,0.3088855421686747,0.3131811830461108,0.3170391061452514,0.3176737160120846,0.3158742949234488,0.3149671052631579,0.3124291650925576,0.0,2.311276581487255,50.03594136748471,143.02840759142762,195.09372865519012,fqhc3_100Compliance_implementation,52 -100000,95800,48267,460.6471816283925,4859,49.50939457202505,3914,40.36534446764092,1501,15.35490605427975,77.39816222968327,79.72792532287826,63.35848721039546,65.07975996574181,77.20107534090145,79.53245630111698,63.28450011277443,65.00850303968731,0.1970868887818113,195.4690217612836,0.0739870976210284,71.2569260545024,232.02674,163.23357209811437,242199.10229645093,170389.9499980317,542.3735,364.4937521813765,565635.2400835073,379957.0064523764,482.21111,236.03825784724197,500374.05010438414,244093.42035008248,2757.28518,1288.3077071186813,2843555.4801670145,1310176.0721489366,902.73093,410.7163168605644,929196.8580375784,415611.66686906415,1459.59066,622.0951001718062,1493416.2212943633,623670.4052616168,0.37988,100000,0,1054667,11009.050104384134,0,0.0,0,0.0,47199,492.1503131524008,0,0.0,43619,452.3799582463466,1110179,0,39843,0,0,0,0,0,101,1.0438413361169103,0,0.0,0,0.0,0,0.0,0.04859,0.1279088133094661,0.3089112986211154,0.01501,0.3410700236034618,0.6589299763965382,23.242735526894432,4.162939821604621,0.2984159427695452,0.2833418497700562,0.2110373019928462,0.2072049054675523,11.363675542256152,6.054725655974016,16.075610986529885,11324.002837572732,44.75484908415218,13.602174816794074,13.17523464503469,9.062121366843138,8.91531825548028,0.5784363822176801,0.8142470694319206,0.708904109589041,0.5290556900726392,0.1183723797780517,0.7607573149741824,0.919831223628692,0.8679245283018868,0.7539267015706806,0.1564245810055866,0.501453488372093,0.7354330708661417,0.6494117647058824,0.4614173228346456,0.1075949367088607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217901197059,0.0046619101670179,0.0070912632390536,0.009159964253798,0.0110811772480048,0.0132513689010116,0.0153767768889794,0.0174570460759906,0.0197386569131274,0.0219050542254962,0.0239629542357774,0.0259515038326954,0.028014716461472,0.0301461506792918,0.0319597513325154,0.0344432280585793,0.0365174932240912,0.0384898539003121,0.0405599201895498,0.0423400533155614,0.0570012520868113,0.0710961439911312,0.0836740684825229,0.0966589244237984,0.1087192570024984,0.1251678100654327,0.1363573693644009,0.1459231121184069,0.1557240495514737,0.1652335206072822,0.1773510946468377,0.1882123932086082,0.1983464789344458,0.2075176964082845,0.2165298519763953,0.2257721922294008,0.23479375696767,0.2426528455467362,0.2505869143615392,0.2565946143982414,0.2608977100648487,0.266497610227525,0.2720044488091153,0.2757786296118831,0.2798184620238572,0.2847683749323093,0.28805088028389,0.2904196941212337,0.2939662419970251,0.2963958621598471,0.2934237251657856,0.2899498523047331,0.2860016882386044,0.2841962599305045,0.2817741720579744,0.2777065787867692,0.2743520577981796,0.2747387528823038,0.2744710572041838,0.2750426863972681,0.2755688176053711,0.2766011938769479,0.2777951573546893,0.2778246580209628,0.2778505585594169,0.2788959023178808,0.280001126538429,0.2842088902704383,0.2896048169423489,0.2928490351872871,0.2985168822972546,0.3019242836226731,0.3055401148786363,0.3067037426724786,0.3084285847040238,0.3108124041976182,0.310823032861019,0.3166533226581265,0.3220616307608399,0.3238380809595202,0.0,1.856911098482636,50.80849704423912,142.65795050632187,203.2266852188191,fqhc3_100Compliance_implementation,53 -100000,95879,48472,462.7394945712825,4717,47.99799747598536,3738,38.423429530971326,1435,14.591307794198938,77.3584022892406,79.64016800280936,63.35300198276878,65.04131188463785,77.16897025432299,79.45558224598365,63.28049114597852,64.9736429045753,0.1894320349176155,184.58575682571168,0.0725108367902578,67.66898006254962,232.55782,163.73997162850955,242553.44757454708,170777.7215328795,542.34299,365.3331506382295,565090.6559309129,380472.71106105566,478.38951,234.9390983275542,495586.0407388479,242457.06472019505,2648.26238,1250.6546400555949,2724180.060284317,1266501.3820081507,875.08442,405.1929557115418,896977.7740693999,406889.7836977234,1395.6874,604.1353721010748,1420333.8791601916,597840.980331214,0.38186,100000,0,1057081,11025.156707933958,0,0.0,0,0.0,47255,492.2662939746973,0,0.0,43302,448.24205509027,1103742,0,39592,0,0,0,0,0,101,1.0534110702030683,0,0.0,0,0.0,0,0.0,0.04717,0.1235269470486565,0.3042187831248675,0.01435,0.3645430490535314,0.6354569509464686,23.256670347171177,4.043799527890096,0.3119315141787052,0.2696629213483146,0.2075976457998929,0.2108079186730872,11.183227931460804,6.154486199885647,15.426027206236046,11338.094119618452,43.00189985206954,12.475059853686432,13.231892748821044,8.603916069738005,8.691031179824058,0.5823970037453183,0.808531746031746,0.7032590051457976,0.586340206185567,0.1104060913705583,0.75,0.9153674832962138,0.8713450292397661,0.7446808510638298,0.1160220994475138,0.5069821567106284,0.7227191413237924,0.633495145631068,0.5357142857142857,0.1087314662273476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881673399548,0.0047218084729103,0.0067856092341085,0.0088233203708028,0.0110998170359829,0.0130776824514802,0.0152919841884347,0.0176347595491866,0.0199095392217922,0.0220815996892219,0.0239031181540855,0.0259380766864875,0.0278742066018938,0.0299345759782742,0.0320183845503823,0.0339173799469298,0.036071916249431,0.0380999761616036,0.0401188090020666,0.042032544009322,0.0562957402889848,0.0704293042742365,0.0832460623324396,0.0960686309511309,0.1084753618303242,0.1234734840481724,0.1346905899933232,0.1453379556765494,0.1551755425326373,0.1642957452054501,0.1768658403954041,0.188201062207271,0.1986867995086369,0.2081046809068847,0.2163817272277499,0.2250132790368272,0.2333102848348315,0.2407097158662873,0.2475583334278616,0.2545046335009565,0.2597875885047896,0.2648297155688622,0.2698719011199773,0.2757735975734033,0.2804501592085754,0.2848829324226022,0.2882542226451475,0.2912857470269169,0.2947979876562419,0.2979996829087834,0.2951939530308951,0.2927225426365125,0.2909953808021631,0.2873261004608428,0.2846108140225787,0.2807538619348714,0.2763863618384621,0.2771108049596536,0.2775133493696368,0.2783839102963424,0.2793606930803988,0.2798928564394461,0.2799624099404824,0.2809306467772459,0.2828955245324585,0.2847051517582218,0.2863245445286862,0.2898650123141191,0.2946863263318959,0.2986711747130052,0.3032287198013095,0.3074260541220893,0.3131388681126901,0.3159936116814967,0.321401728673431,0.3189696106362773,0.3196986006458557,0.3210399032648126,0.3198910081743869,0.3285498489425982,0.0,2.2010781576833893,50.26589258855722,133.72364190755292,191.52835554461348,fqhc3_100Compliance_implementation,54 -100000,95738,47878,456.1511625477866,4907,50.00104451732855,3881,39.99456850989158,1503,15.375295076145314,77.38965647392791,79.75605049083522,63.34469261111818,65.09363359743698,77.1923087071423,79.56146401576302,63.270225931559885,65.02285557115515,0.1973477667856116,194.5864750721995,0.0744666795582986,70.77802628182894,230.18732,161.89491619360803,240434.6445507531,169102.04536715624,539.5851,363.72498435236713,563090.7267751573,379401.78858172,480.29357,235.6869469110858,498396.947920366,243658.89162068124,2767.04381,1301.5633678987683,2854304.153000898,1323584.436586066,882.71278,410.7576742692576,907033.6856838455,414068.3994539866,1463.71546,628.1761427279723,1498461.3424136706,628161.0324885251,0.37807,100000,0,1046306,10928.847479579686,0,0.0,0,0.0,47137,491.8005389709416,0,0.0,43536,451.4194990494892,1118436,0,40126,0,0,0,0,0,90,0.9400655956882324,0,0.0,0,0.0,0,0.0,0.04907,0.1297907794852805,0.3062971265539025,0.01503,0.3644349014249463,0.6355650985750537,22.87964015536082,4.120087427736179,0.306364339087864,0.2795671218758052,0.2027827879412522,0.2112857510950785,11.1542752773794,5.885755066193625,16.13644418999624,11242.322886647367,44.58168413304249,13.287130384122763,13.601634783950988,8.73627063070526,8.95664833426347,0.5776861633599588,0.8276497695852535,0.6963835155592936,0.5400254129606099,0.1109756097560975,0.763396537510305,0.9486081370449678,0.8690807799442897,0.695,0.1711229946524064,0.4932533733133433,0.7362459546925566,0.6216867469879518,0.4872231686541737,0.0932069510268562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701482862004,0.0048254817878612,0.0070327484549264,0.0094682731576487,0.0116777035206038,0.0139098203739155,0.0162824604153709,0.0185175733199946,0.0206476408537083,0.0226935399670396,0.0250210131409007,0.0272875666019895,0.0291647391416088,0.0313137137796816,0.0332948263058008,0.03518055354596,0.0370090399809466,0.0390098147033801,0.0410235623044702,0.043042458973691,0.0576633952808519,0.0713410996326184,0.0845730952430912,0.0970721597424594,0.1092673664222796,0.123831281465499,0.1344756246352978,0.1437480710492427,0.1536498104341325,0.1627522896424511,0.1740258621617838,0.1849632193855473,0.1952333318836167,0.2049117589170511,0.2143996655334411,0.2225617858091947,0.2310462873136408,0.2382220424489612,0.245417549905347,0.2517788098560937,0.2571791907514451,0.2628048566720811,0.2677664074870607,0.2725901992460958,0.2763063707945598,0.2803978776575445,0.2840390553701133,0.2876371077415829,0.2907083478778006,0.2944136359445183,0.292296945108681,0.2893804580655791,0.2879741500421466,0.2844048596999438,0.2813739418694134,0.2773651379504934,0.2741696603012541,0.2740059066359913,0.2748254592286314,0.2751199985830425,0.2754177497215002,0.2755910142313875,0.2754447512091835,0.2752586225992955,0.2766732541250982,0.2771607170532624,0.2770567656020765,0.2817424407900895,0.2872885789014821,0.2925971305481997,0.2965166447159271,0.3013276686139139,0.3036754116836767,0.3093794445692043,0.3099926389400073,0.3131031275433089,0.3125656808287044,0.3185155784877952,0.3170995670995671,0.3173040514956456,0.0,2.146313321736642,52.750676140530594,138.44121871270798,196.64073279913532,fqhc3_100Compliance_implementation,55 -100000,95762,48298,461.60272341847497,4866,49.54992585785593,3832,39.44153213174328,1458,14.891084146112236,77.34687979821054,79.70621283386082,63.33382307926016,65.0811791079057,77.16590860010004,79.52837382147314,63.26496085983125,65.0157144811361,0.1809711981104982,177.83901238767896,0.0688622194289081,65.46462676959663,230.08392,161.89723013150748,240266.41047597167,169062.0811297879,537.98058,362.51166464140624,561239.4582402206,378005.0694862327,481.65611,236.74482137069515,499294.6158183831,244376.07968105449,2723.29246,1266.610121281487,2803079.948204925,1282138.391732767,897.96733,408.3900117059531,917369.9484137758,406216.5430837688,1426.76598,603.462240453884,1457219.0221591026,600956.6713110765,0.37951,100000,0,1045836,10921.200476180533,0,0.0,0,0.0,46996,490.1839978279485,0,0.0,43563,451.191495582799,1118610,0,40161,0,0,0,0,0,77,0.8040767736680521,0,0.0,1,0.0104425555021824,0,0.0,0.04866,0.1282179652710073,0.2996300863131936,0.01458,0.3558052434456928,0.6441947565543071,23.29847697319664,4.112582236296063,0.3003653444676409,0.2854906054279749,0.1993736951983298,0.2147703549060542,11.228524749655168,5.921315111675204,15.40962659808828,11265.279022971505,43.61201602555799,13.422810306786165,12.842231365727512,8.467973994946073,8.879000358098237,0.5858559498956158,0.7943327239488117,0.687228496959166,0.6020942408376964,0.1518833535844471,0.7584708948740226,0.8824786324786325,0.8785046728971962,0.7604166666666666,0.188235294117647,0.5117493472584856,0.7284345047923323,0.6132530120481928,0.548951048951049,0.1424196018376722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0041070052326288,0.0062131979695431,0.008170980822586,0.0104989012777732,0.0127390480845603,0.0151697420736058,0.0172111065741118,0.0196888225552534,0.0219416799770651,0.0238883705670668,0.0257924080786093,0.0280537216429115,0.0305124903425186,0.032375251560968,0.0345262461493932,0.0363677784796363,0.0383414421610631,0.0402187132922379,0.0419864418781435,0.0572812291249165,0.0708898628646743,0.0834783702740673,0.0958211590608118,0.1077210067029214,0.1228865500042269,0.134159397093584,0.1443638760711931,0.1546101409232016,0.1638852588958632,0.1760915633101341,0.1875918561424742,0.1974990765486821,0.2065022715359077,0.2157892423976094,0.2245518920115069,0.2323465462451915,0.239536844471924,0.2472824236922727,0.2535270944986487,0.2591247209079025,0.2645558960443519,0.2692885623350962,0.2739015301292881,0.2780966015942538,0.282564588123901,0.2859214078592141,0.2883672484312679,0.2917059804314389,0.2951419508535478,0.2913986436580944,0.2887931034482758,0.2875796804358204,0.2851405044339514,0.2821472973773015,0.2784626651612706,0.2752574230884463,0.2757103364794792,0.2754143552394241,0.2744076924444128,0.2762453607862884,0.2768658478979688,0.2775946938094443,0.2790241728862649,0.2792235801581596,0.2809257573787544,0.2826957484876885,0.2864275844743122,0.2903924789431377,0.2951202151217969,0.2986918604651162,0.3006491107710169,0.3036094748715378,0.3073965166251979,0.3114996761957628,0.3149882903981265,0.3189172841373053,0.3206631621512333,0.3254716981132075,0.3230709275136399,0.0,2.2748117798451126,49.84308916847482,132.3377684456669,203.74081340456212,fqhc3_100Compliance_implementation,56 -100000,95758,48755,465.7052152300592,4856,49.46845172204934,3883,40.00710123436162,1433,14.536644457904302,77.36211040614715,79.7228738482275,63.32787542470121,65.07511378551852,77.17247156508813,79.53904025501092,63.255331684258245,65.0075920318659,0.1896388410590219,183.83359321657625,0.0725437404429669,67.52175365262758,231.25212,162.66011173497358,241496.39716786065,169865.81981137197,540.50598,364.7703779150368,563900.1754422607,380379.6319002452,487.36803,239.14784714678927,506188.0469516907,247544.72650560935,2734.04098,1280.0860909952223,2813486.079492053,1295122.194485288,902.50935,408.9156607513366,927351.5111009002,411892.0306933475,1394.46248,605.4354445592713,1415148.8544038096,595789.387979288,0.38323,100000,0,1051146,10977.108962175484,0,0.0,0,0.0,46994,490.1835877942313,0,0.0,44065,457.371707846864,1110052,0,39839,0,0,0,0,0,88,0.9189832703272834,0,0.0,2,0.0208859834165291,0,0.0,0.04856,0.1267124181301046,0.2950988467874794,0.01433,0.3634208967015603,0.6365791032984397,23.05148306682,4.116938160521668,0.3229461756373937,0.2786505279423126,0.1879989698686582,0.2104043265516353,11.498609650968843,6.212007823747038,15.56867130024387,11389.368943061208,44.62663956405996,13.332351293108935,14.187445386107882,8.078835764569948,9.028007120273204,0.58949266031419,0.8160813308687616,0.7105263157894737,0.5616438356164384,0.1285189718482252,0.7525951557093425,0.9356223175965666,0.8593272171253823,0.7142857142857143,0.1692307692307692,0.5203520352035204,0.7256493506493507,0.6580366774541532,0.5160142348754448,0.1157556270096463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022187775447554,0.0045328249538605,0.0069739112780428,0.0091549224219392,0.0111896648186765,0.0132806452927037,0.0155507515346807,0.0179388221841052,0.0200815942577274,0.0223130171213238,0.024612355402412,0.0265217659264128,0.0283430382090903,0.0303067775476345,0.0322117865620807,0.0343244696249121,0.0363048948442078,0.0382129257841275,0.0405089344185611,0.042612807799675,0.0579239650097079,0.0721668898560428,0.0853067645516518,0.0977733836784921,0.1100410333224333,0.1251758384718711,0.1366963717377466,0.1468891065496976,0.1567638605451262,0.165821332446894,0.1769875288086673,0.1881053121381653,0.1979332100511258,0.2065563370267875,0.2152171759967426,0.2248119551129377,0.2334323226008127,0.2419848358719373,0.2488486058488554,0.2555764210140613,0.2619579432221926,0.2668280758389183,0.2722044728434505,0.2773428602256243,0.2818324206845473,0.2863357405170926,0.2889951314752005,0.2921489810975144,0.2950645720644944,0.2990890754973173,0.2956940761579152,0.292908318321209,0.2895147789141964,0.2866913897346358,0.2845067916246515,0.2811277506112469,0.2778927088103848,0.2782476402362218,0.2791630547481855,0.2799261717571477,0.2800089370496564,0.2819396221973754,0.2827285016117292,0.2828132629055883,0.2841879322680658,0.2857844404238821,0.285823127716011,0.290205223880597,0.2939157566302652,0.2980923655450664,0.3046931083991385,0.308439016752779,0.3103106206212412,0.3120160810005956,0.3131535498073748,0.3211211909746452,0.3228217007921088,0.3286219081272085,0.3278251599147121,0.3330804248861912,0.0,2.072183422507346,50.48428764494845,146.50900207643605,196.3809729053453,fqhc3_100Compliance_implementation,57 -100000,95770,48445,461.344888796074,4853,49.46225331523442,3896,40.20048031742717,1446,14.764540043855073,77.32840490063373,79.68899616955821,63.31625382636724,65.06469689304319,77.13740791411259,79.49859364501418,63.243770182103134,64.9946486189547,0.1909969865211422,190.40252454402665,0.0724836442641034,70.04827408849224,229.73016,161.6932941524724,239876.95520517908,168835.01529964746,538.02078,362.3940892402127,561309.8778323065,377926.0512062365,487.81843,239.4465600089544,505880.21301033726,247458.6765039402,2745.91629,1298.757763513447,2836544.2309700325,1325467.1436916008,887.28409,405.9847878534081,916870.3873864468,414312.9036790304,1407.56528,608.5434058703753,1439330.1242560302,609964.3721072377,0.37987,100000,0,1044228,10903.497963871776,0,0.0,0,0.0,46926,489.5061083846716,0,0.0,44103,457.0742403675473,1117810,0,40148,0,0,0,0,0,94,0.9815182207371828,0,0.0,1,0.0104416831993317,0,0.0,0.04853,0.1277542317108484,0.297960024726973,0.01446,0.3556081214271634,0.6443918785728366,23.28723695470681,4.0114829156007685,0.3103182751540041,0.2846509240246406,0.204312114989733,0.2007186858316221,11.498344707657251,6.279448685896028,15.5820663873974,11376.237896484316,44.70909221035461,13.608107890616695,13.612958882790767,8.847845957466108,8.640179479481029,0.6029260780287474,0.8268710550045085,0.71712158808933,0.6005025125628141,0.1112531969309462,0.7554076539101497,0.9330543933054394,0.8802395209580839,0.7272727272727273,0.125,0.5348923533778768,0.7464342313787639,0.6548571428571428,0.5585284280936454,0.1067796610169491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020570919003273,0.0042394369054139,0.0066705925354343,0.0091363645602552,0.0113629427682041,0.0136183996088657,0.0158977810409528,0.0182239555682607,0.0205996912602103,0.022775429150502,0.0249195317465198,0.0272709537646442,0.0292886598998344,0.031497522840339,0.0334760848253444,0.0355880346474272,0.0376167111773595,0.0395859908942887,0.0418584834093672,0.0436494297765974,0.0578669394401185,0.071371794335439,0.0848808312973817,0.0976432746079132,0.109786938104571,0.1253567276186449,0.1362778366914104,0.1466171415191732,0.1566445218208617,0.1652547825340996,0.1768108137217943,0.1877332871717751,0.198198394220936,0.2074074884087131,0.2156198065133888,0.2257907327013378,0.2341073680216923,0.2417926237718478,0.2479396072198887,0.2544717030857902,0.2606431604892555,0.2662417402491082,0.2720147751758104,0.2763328374682086,0.2810544097808782,0.2852722924832976,0.2888941807562635,0.2918433619866284,0.295060080106809,0.2972013669890614,0.2952963197371433,0.2919990098465262,0.2887583798095882,0.2852690809407012,0.2821749844135023,0.279017822993957,0.2752193502489922,0.275876207501681,0.2754245958665848,0.2764266752187004,0.2781792042420508,0.2791988037147804,0.2804469506231923,0.2814086011931261,0.28223471707142,0.2835225211216503,0.2841756186049148,0.2875288683602771,0.2921707690168266,0.2974705951772157,0.3005947017480627,0.3085462924172601,0.3128602417105671,0.3180659670164917,0.3217003898273621,0.3240881016198578,0.3293178738141846,0.3284994964753273,0.3355209187858901,0.3356562137049942,0.0,1.907420394923088,52.47383059890964,140.22468565855004,198.32780732153083,fqhc3_100Compliance_implementation,58 -100000,95721,48431,461.7377586945393,4952,50.34422958389486,3875,39.80317798602187,1457,14.740756991673718,77.31464774318667,79.68073217228871,63.30648041847581,65.05603866371442,77.11987127768158,79.49192347222137,63.230292918915154,64.98514242023063,0.1947764655050861,188.80870006734085,0.0761874995606533,70.8962434837872,230.73314,162.32663079189606,241047.56532004476,169583.09126722044,540.25477,364.52495499634927,563715.590100396,380130.1542987947,486.89557,239.03781442571437,504419.16611819767,246483.13819953025,2701.66593,1280.9858586730024,2776658.3926202194,1292469.8955015123,871.84742,399.1902228078457,893740.5480511069,399956.5188949807,1404.10726,616.7396931019206,1422722.6836326406,606611.4212138938,0.38059,100000,0,1048787,10956.707514547486,0,0.0,0,0.0,47108,491.4282132447425,0,0.0,44103,456.5873737215449,1108607,0,39774,0,0,0,0,0,89,0.9193384941653346,0,0.0,0,0.0,0,0.0,0.04952,0.1301137707244015,0.2942245557350565,0.01457,0.3588201047933242,0.6411798952066757,23.18455343771137,4.046084342995551,0.3076129032258065,0.288258064516129,0.2095483870967742,0.1945806451612903,11.497259787187636,6.35547555499289,15.715890256753722,11355.449850051817,44.59482600126484,13.734673895942455,13.579559644437824,9.04724767671235,8.233344784172218,0.5873548387096774,0.7815577439570277,0.6996644295302014,0.5923645320197044,0.1167108753315649,0.7588477366255144,0.9096385542168676,0.861271676300578,0.7711442786069652,0.0941176470588235,0.5090225563909775,0.678513731825525,0.6335697399527187,0.5335515548281505,0.1232876712328767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0045523212782999,0.0070037962605818,0.0089015343969108,0.0109364667582277,0.0133257263947186,0.0155068811785229,0.0177656163852075,0.0198515732013984,0.0219995086196306,0.0240226384915874,0.0263063322072881,0.0285443903843977,0.0308600632657056,0.0330728655924522,0.0351918285483887,0.0374152125511313,0.0393296321278472,0.0411987355461276,0.043288464744124,0.0583137561994257,0.0718248236303879,0.0850653097623668,0.0977472076733766,0.1106962812968001,0.1261571992340002,0.1372143137692005,0.1476357827476038,0.1575734248537918,0.1665503955008425,0.1781030242892273,0.1890333766796705,0.1988929808886661,0.2073157363967203,0.2161816437480012,0.2253747917823431,0.2335790922211158,0.2422950227877803,0.2501734945790054,0.2560423654827,0.261592169051982,0.2676511954992968,0.2727736153262519,0.277478364201606,0.2809585759966929,0.2847593088222597,0.2877058617410021,0.2900875006359057,0.2924204999547377,0.2954264035619253,0.2927393227311223,0.2903522625832589,0.2871789110009409,0.2843681108885783,0.281718963165075,0.2784663111083943,0.274876349098494,0.2755473256423702,0.2758220964524983,0.2751944192337124,0.2755626108880381,0.2766179335314142,0.2767799537971654,0.2774693551252443,0.2781613589124878,0.2785858481287851,0.2813678509654918,0.2849786211416622,0.2883866481223922,0.2926493169022402,0.2992631436191854,0.3024395384372201,0.3031634446397188,0.3064724182411412,0.3111567931227808,0.3169014084507042,0.3194592131247152,0.3197969543147208,0.3238356164383562,0.3275928052047455,0.0,2.5626442416914057,52.454969605215325,139.53490437790188,194.6136651182673,fqhc3_100Compliance_implementation,59 -100000,95813,48460,461.10653042906495,4904,49.87840898416707,3894,40.036320749793866,1532,15.5615626272009,77.3504688262772,79.68224755151702,63.33176974345843,65.05967657404074,77.15301750676458,79.49018824342883,63.256019011301696,64.98862819666974,0.1974513195126093,192.05930808819005,0.0757507321567345,71.04837737099956,230.34176,162.09736825760746,240407.62735745672,169180.97571061074,540.0601,363.629207966684,563078.2252930187,378937.3550214313,482.94163,237.0770393411939,500693.9454980013,244765.7285950233,2760.60494,1303.271123912613,2838711.730141004,1317692.8536969018,885.7177,407.0590072241513,905859.5388934696,406312.28763514507,1489.18776,647.5043332804432,1514274.9731247325,641216.4581352068,0.38196,100000,0,1047008,10927.61942533894,0,0.0,0,0.0,47060,490.5492991556469,0,0.0,43605,451.6923590744471,1115270,0,40109,0,0,0,0,0,99,1.0332627096531786,0,0.0,0,0.0,0,0.0,0.04904,0.1283904073724997,0.3123980424143556,0.01532,0.3568221745071247,0.6431778254928753,23.36696198387432,4.092735410684391,0.3050847457627119,0.2750385208012326,0.2116076014381099,0.2082691319979455,11.094622259948297,5.976416259264444,16.609380412307445,11447.3936022381,44.69249773535633,13.076644784490703,13.360453408015522,9.26461763055454,8.99078191229557,0.5821777092963534,0.8104575163398693,0.6835016835016835,0.6007281553398058,0.1134401972872996,0.7564102564102564,0.9230769230769232,0.8762214983713354,0.74235807860262,0.1452513966480447,0.5073421439060205,0.7272727272727273,0.6163450624290578,0.5462184873949579,0.1044303797468354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024515266324938,0.0045425509262545,0.0067593626306708,0.0089613200166627,0.0109140102121773,0.0130268277280968,0.0155830911223293,0.0178704545222461,0.020234553132317,0.0225213697087577,0.0249482168126166,0.0271913250636654,0.0292472233648704,0.0314321613215514,0.0337761184794043,0.0357401169638982,0.0377938573336231,0.0397668340040658,0.0417052056161208,0.0437136283664907,0.0582730885988796,0.0727280331228305,0.0863687806513811,0.0990123975625131,0.1109401997555733,0.1265416116248348,0.137049486263241,0.1472337166381226,0.1577789877120498,0.1667863304649742,0.1775195049771321,0.1890594594594594,0.2002194364177548,0.2090829598863263,0.2177997799779978,0.2274862613011877,0.236484375,0.2439032624720062,0.2507494549418604,0.2566689956131811,0.2631451052996991,0.2692761996093887,0.2753019673721444,0.2793717729086051,0.2833519634525661,0.2869967322276343,0.290666800260508,0.2938269718157388,0.2981667422426637,0.3008477933602725,0.2968370813784177,0.2935164396203804,0.2904708204116154,0.2876862813118829,0.2847636871342423,0.2815379434903725,0.2781478961277356,0.2777868906239748,0.2778516850866421,0.2781836974730013,0.2776833890330651,0.2780982380155527,0.2793467378608376,0.2794700512135382,0.2796322015229155,0.2814486211637741,0.2816514799932084,0.2857945500515029,0.289661875998056,0.2926829268292683,0.2982235214751518,0.3012880929940308,0.3043262367326671,0.3088488293814047,0.3137273064097814,0.316974126928878,0.3184818481848185,0.3232502965599051,0.3247794707297514,0.3259481787457754,0.0,2.3468673576937715,50.45384726306015,145.1279460076167,198.09050800577717,fqhc3_100Compliance_implementation,60 -100000,95712,48539,463.3379304580408,4807,48.82355399531929,3802,39.06511200267469,1458,14.794383149448343,77.30949638025908,79.67021471312552,63.31695901961641,65.059884091892,77.1102132573695,79.47506408219566,63.24073847644755,64.98773848661632,0.1992831228895824,195.1506309298594,0.0762205431688656,72.14560527567926,228.67614,161.03411563817886,238920.84587094616,168248.38644911704,537.00967,362.1473800790101,560408.4127382147,377713.1978126161,482.08947,237.0679501974465,499722.1351554664,244630.9278385636,2717.4668,1283.1284810723691,2794867.6968405214,1296483.2230770022,901.4081,413.187737307976,924923.5205616852,414945.18805739086,1427.6065,624.5831469317977,1451227.9129053827,617818.5296155779,0.38147,100000,0,1039437,10860.038448679372,0,0.0,0,0.0,46731,487.5459712470745,0,0.0,43523,450.810765630224,1122780,0,40230,0,0,0,0,0,105,1.0865931126713473,0,0.0,1,0.0104480106987629,0,0.0,0.04807,0.1260125304742181,0.3033076763053879,0.01458,0.3682946357085668,0.6317053642914331,23.217740627896266,4.097458578008499,0.2958968963703314,0.2795896896370331,0.2085744345081536,0.2159389794844818,11.186947825414013,5.8265790178164,15.78949207917568,11352.03294318906,43.75332645845442,12.989824333515916,12.876941779446554,8.871138337017136,9.015422008474824,0.567859021567596,0.7968015051740357,0.6702222222222223,0.5737704918032787,0.125456760048721,0.736013986013986,0.92183908045977,0.8313253012048193,0.693069306930693,0.1428571428571428,0.4954853273137697,0.7101910828025477,0.6027742749054225,0.5329949238578681,0.1207430340557275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179236588651,0.0046833184656556,0.00690893596299,0.0089786300479401,0.0111421745539572,0.0132930267590867,0.0154410640574835,0.0176692151438749,0.0197661583745554,0.0218603841942053,0.0241494890271528,0.0260796352958087,0.0281131105398457,0.0302665183720547,0.0321971845511267,0.0342811092284167,0.0364095505210974,0.0386721423682409,0.040658095762703,0.0429479166666666,0.0580581834889209,0.0720094617083407,0.0848533159920705,0.0969746679705984,0.1092680663496114,0.1249854569684918,0.1357534726275242,0.1464951878034239,0.1560239741028407,0.1649937802942564,0.1764750247812782,0.1869782248546338,0.1966149659863945,0.206197528431791,0.2151941945359042,0.2247228381374723,0.2335895258948121,0.2417565086124348,0.2490684358811233,0.2564475825863689,0.2621500845122601,0.2669435507458321,0.2720006630985648,0.2758798550968021,0.2808106827377553,0.2849780539527543,0.2896527569298509,0.2921994478160744,0.2956155689398355,0.2973901098901099,0.2946455037861435,0.2912979452526114,0.2885935363842652,0.2866098512205691,0.2843003210082035,0.2815339124572934,0.2778226893020749,0.2780769735977932,0.2784935579781962,0.2787892865438562,0.2793412276099827,0.2795924423780789,0.2797879695782438,0.2805868014401682,0.2821401911916973,0.2819478423819687,0.2820051927301777,0.2855395615768181,0.2883223166509285,0.290981505579873,0.2958357824298051,0.2982807720704567,0.3005003126954346,0.3029271613342409,0.3071035190889573,0.3143259415698697,0.3165478537843167,0.3149350649350649,0.3192360163710777,0.3176291793313069,0.0,2.4656702425821315,49.32460003641231,144.2348363224842,190.39081514814396,fqhc3_100Compliance_implementation,61 -100000,95737,48104,459.0701609618016,4687,47.90206503232815,3724,38.35507692950479,1442,14.696512320210578,77.40440741590693,79.7618537174278,63.3594678928421,65.09928086318016,77.21911793392837,79.57986854184286,63.289243830106585,65.032909162457,0.1852894819785575,181.9851755849413,0.0702240627355124,66.37170072315257,230.1563,161.82678153496917,240404.75469254312,169032.6431107818,539.15813,363.03261876818135,562629.8609732914,378661.79091488273,481.25614,235.6803433695211,499558.2376719554,243756.79165047087,2628.44166,1230.1477077437987,2708544.460344485,1247986.9410403485,861.80135,394.6458287568629,886154.3917189802,398201.4012229981,1402.8306,595.3964914889903,1431248.3574793444,592150.848234634,0.37844,100000,0,1046165,10927.488849661053,0,0.0,0,0.0,46969,490.0508685252306,0,0.0,43509,451.2675350178092,1121346,0,40234,0,0,0,0,0,78,0.8147320262803305,0,0.0,1,0.0104452823882093,0,0.0,0.04687,0.1238505443399217,0.307659483678259,0.01442,0.3734099302421009,0.6265900697578991,23.11613922823621,4.057520383577467,0.3152524167561761,0.2795381310418904,0.1989795918367347,0.2062298603651987,11.524908274134388,6.341749843391448,15.275483034065312,11215.295405492565,42.73012695109009,12.82405081607386,13.30443237297177,8.209044698863744,8.392599063180716,0.5899570354457573,0.8261287223823247,0.6882453151618398,0.5964912280701754,0.11328125,0.7605760576057605,0.930957683741648,0.8535825545171339,0.7,0.1677018633540372,0.5174129353233831,0.7466216216216216,0.6260257913247362,0.5632798573975044,0.0988467874794069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025210849777759,0.0048137826197111,0.0069389494187108,0.00917077134007,0.011052026882759,0.0130903908794788,0.0154191082802547,0.0176933359182882,0.0195459375510871,0.0212739831158864,0.0234495905545705,0.0258536635431527,0.027757502236021,0.0298801087673038,0.0319448600348752,0.0340820988866721,0.0362975466793699,0.0386103590286206,0.0405533210696432,0.0426110324139655,0.0567034527401622,0.0700516963519537,0.0832249402089539,0.096431650440524,0.108546251791888,0.1237588689978957,0.1337711387892804,0.1440145643471595,0.1543055555555555,0.1626951784488675,0.1745845404904737,0.1860749494096895,0.1965303458777463,0.2058321852653677,0.2140656971243757,0.2237845857460778,0.2319147749456188,0.2391658703839019,0.2465332501842508,0.2525573838020917,0.2580600445887095,0.263974140546596,0.2688617454416711,0.2733428069882136,0.2778201450170074,0.280998231479662,0.2842666200751289,0.2886651534940339,0.291790842590084,0.2946354666211191,0.2913388992374801,0.2881153940987918,0.2858485009955969,0.2823614007334435,0.2804604154969118,0.2761504364118265,0.272459429651804,0.2722629285725942,0.2725960885508624,0.2739415009667063,0.2741517765646252,0.274968518810011,0.2751041666666666,0.2749900084373196,0.2764901057455899,0.2765549743642861,0.2774031543605225,0.282061663033323,0.2855454355836752,0.2888591870430065,0.2913268754223924,0.2941516777111602,0.2967565552379769,0.2972445378782191,0.2976684176573587,0.3031145073520898,0.3078658444878929,0.3097362680943882,0.3131120783460283,0.3269902912621359,0.0,2.1068986627037485,48.1462701718734,142.23538634140473,185.55444378944588,fqhc3_100Compliance_implementation,62 -100000,95740,48658,465.0720701900982,4887,49.82243576352622,3853,39.57593482348026,1450,14.69605180697723,77.33232137485312,79.69938431946379,63.31916690730778,65.0713953335224,77.14583860031588,79.51791855220532,63.24763483430349,65.00488537192588,0.1864827745372395,181.46576725847297,0.0715320730042918,66.50996159652323,230.49312,162.16115723622926,240749.0286191769,169376.60041385968,541.34954,364.95730520896507,564782.6822644663,380541.78526108735,492.62008,241.8601780279654,510378.2431585544,249410.16815827863,2694.63091,1271.9335243177445,2767799.7702109884,1281798.7406702992,895.4712,407.1343374745855,915135.9515354084,405070.2919099496,1406.80562,607.7538426869505,1426284.4161270107,596715.322184946,0.38142,100000,0,1047696,10943.137664508044,0,0.0,0,0.0,47159,491.8738249425528,0,0.0,44503,460.73741382912056,1112914,0,39964,0,0,0,0,0,92,0.9504909128890746,0,0.0,0,0.0,0,0.0,0.04887,0.1281264747522416,0.2967055453243298,0.0145,0.35553819105294,0.64446180894706,23.125660595399832,4.079345004053135,0.3124837788736049,0.2886062808201401,0.1995847391642875,0.1993252011419673,11.479352934644265,6.299998813487537,15.537130378399567,11314.052375588026,44.33526970203679,13.627058637164996,13.684504146858789,8.631648235828806,8.392058682184198,0.5912276148455748,0.795863309352518,0.71843853820598,0.5630689206762028,0.1236979166666666,0.7536231884057971,0.9234042553191488,0.8630952380952381,0.7150259067357513,0.1264367816091954,0.5201492537313432,0.7024922118380063,0.6624423963133641,0.5121527777777778,0.1228956228956228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023004580647776,0.0045745468561401,0.0067216310616521,0.0090047971379786,0.0114043297794416,0.0135899186031112,0.0156645182344782,0.0180297910136908,0.0201421195235417,0.0222256347256347,0.0242857289306693,0.0263638790218261,0.0282982005141388,0.0303823020515778,0.0324470993634384,0.0341794654484569,0.0360848226304127,0.0382293136359863,0.0400619375220834,0.0423471088151974,0.0567288519558613,0.0715302193202745,0.0843997818151302,0.097253186387919,0.1096183656898206,0.1248122368671589,0.1354104762713303,0.1458135945068398,0.1556488394697771,0.1643753351206434,0.1761582127815418,0.1874161291718973,0.1981875149589851,0.2070285583033458,0.2155952197548253,0.2242794024826425,0.2331938633193863,0.2409517916408843,0.2489051757391482,0.2546942981451797,0.2608600085607524,0.2664990351441436,0.2710110126687091,0.2748909970772842,0.2785607633198587,0.283129933623142,0.2867680152022803,0.2892406591033247,0.2934033390665614,0.296125522020367,0.2934709566432814,0.2896920245061677,0.2867986056448892,0.2845778027584418,0.2817256250277872,0.2783445326817348,0.2749415186192072,0.27443184607078,0.274418130196025,0.2748007401081697,0.2755578813590999,0.277748211223464,0.2799072546111587,0.2813663626836719,0.2809875713805845,0.2823327882893405,0.2821580288870008,0.2881977071978951,0.2925459555617566,0.2984696903792163,0.298838102988381,0.3039054634094643,0.30571608040201,0.3101960487472561,0.3131378734459083,0.318997668997669,0.3214232321722231,0.3298480962714539,0.3252336448598131,0.3360778443113772,0.0,2.604085485995169,50.600335632822,143.47465397780346,193.42759698329647,fqhc3_100Compliance_implementation,63 -100000,95729,48349,460.91570997294446,4891,49.932622298363086,3899,40.17591325512645,1457,14.85443282599839,77.41699606751023,79.76953190784175,63.36600846061516,65.10026075346674,77.22730835704594,79.58440847371517,63.29382025279533,65.03201876655221,0.189687710464284,185.12343412658083,0.0721882078198348,68.2419869145292,230.67154,162.3019118618679,240962.613210208,169542.65799685346,542.03882,364.9904032878479,565626.7170867763,380684.78398884577,483.15299,237.0487494570091,501298.67647212447,244917.8603972624,2750.90944,1281.3990254916948,2835112.337954016,1300707.813152498,902.77365,407.26934597561217,929303.1369804344,411970.2324416101,1414.72002,608.7296617808545,1443408.2461949878,607194.7450814537,0.3812,100000,0,1048507,10952.846055009451,0,0.0,0,0.0,47260,493.0794221186892,0,0.0,43682,452.9244011741479,1116002,0,40024,0,0,0,0,0,88,0.919261665743923,0,0.0,2,0.0208923105850891,0,0.0,0.04891,0.128305351521511,0.2978940911878961,0.01457,0.3688620420888542,0.6311379579111458,23.083844534374112,4.040196463068608,0.3044370351372146,0.287509617850731,0.2008207232623749,0.2072326237496794,10.92351320188832,5.912100942425275,15.582930046107425,11354.9327502869,44.54827835175736,13.680996731114156,13.485385843870128,8.658345211244404,8.723550565528674,0.5842523724031803,0.8010704727921498,0.7177759056444819,0.5555555555555556,0.1150990099009901,0.7457337883959044,0.9136363636363636,0.8760563380281691,0.6714975845410628,0.1294117647058823,0.5148514851485149,0.7283406754772394,0.6502403846153846,0.5138888888888888,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.004396762200002,0.0064305420318078,0.008519582855228,0.0110724743777452,0.013243347788025,0.0155848656582541,0.0180547050418452,0.0204488319332883,0.0227219249695642,0.0250440627946058,0.0271454668609782,0.0290507617344106,0.0311521667490525,0.0333415862012049,0.0355367716201833,0.037674707526659,0.0396399012632496,0.0415198661387044,0.0433681973497791,0.0575005481711964,0.071390455463363,0.0846534757338593,0.0981268602559922,0.1101946969856772,0.1246166211900078,0.1354547865287722,0.1452110787047878,0.1545356452250462,0.1631528150134048,0.1750263820989382,0.1858872407413418,0.1970130110109892,0.2068336482899494,0.2150430129972863,0.2245909437886515,0.2333147570218457,0.2408522880517846,0.2476532740794485,0.2548680868590257,0.2614198529751722,0.2667344220929417,0.2717474798804051,0.2766543017829365,0.2802629663771772,0.2842971951804856,0.2878787878787879,0.2900210804358316,0.2933994806402852,0.2967112538838274,0.294162681996454,0.2918519128382458,0.2890184781845008,0.2856236115518883,0.2829167778469566,0.2798198748282705,0.277236925015753,0.276730072759307,0.2775760865877243,0.2788424072827742,0.2799145299145299,0.2800587659157688,0.2816409659586849,0.2824008498583569,0.2828597966133988,0.2827849801146635,0.2845141101181246,0.2883050742189926,0.2930861202564547,0.2972602202798573,0.3029745614428641,0.3084175789639097,0.3121125712868832,0.3192707548591231,0.3202995008319467,0.3255329008341056,0.3308911483253589,0.3371383585908286,0.3383878691141261,0.3428991905813098,0.0,2.028177153617707,51.16668219201042,140.09105482252397,201.47267919156369,fqhc3_100Compliance_implementation,64 -100000,95706,48632,464.1192819676927,4936,50.39391469709318,3937,40.666206925375626,1474,15.129667941403882,77.3508434030137,79.74196102053634,63.31502979323547,65.0829139333875,77.16289395257111,79.55425027310156,63.24538993433963,65.01506686360179,0.1879494504425878,187.7107474347781,0.0696398588958402,67.84706978571364,230.95754,162.38201216288994,241319.35301861956,169667.1825951253,540.51717,364.1239958113765,564296.1987754165,379993.269046976,489.58632,240.4552151104469,508149.85476354667,248610.38538738064,2738.98487,1273.384418757698,2831587.350845297,1300643.5542700156,890.3386,405.8736514251558,919128.7902534849,412927.5608897618,1424.2387,598.3523694024792,1462919.6497607257,604042.1818821895,0.38133,100000,0,1049807,10969.06150084634,0,0.0,0,0.0,47064,491.2440181388836,0,0.0,44272,459.22930641757046,1111005,0,39941,0,0,0,0,0,80,0.8358932564311538,0,0.0,0,0.0,0,0.0,0.04936,0.1294416909238717,0.2986223662884927,0.01474,0.3498932660586066,0.6501067339413934,23.187345865500397,3.951180817744762,0.3246126492252985,0.2839725679451358,0.1976123952247904,0.1938023876047752,11.298018090279696,6.312120643250072,15.553284081684083,11389.527909015123,44.91761765567008,13.821752340443345,14.3093547507066,8.562127863641168,8.22438270087897,0.58750317500635,0.8193202146690519,0.6784037558685446,0.5629820051413882,0.1205766710353866,0.7741393786733837,0.9217221135029354,0.8550295857988166,0.7243243243243244,0.1783439490445859,0.5065549890750182,0.7331136738056013,0.6148936170212767,0.5126475548060708,0.1056105610561056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.00463437141901,0.0067506522246698,0.0091369217009512,0.0114651366253636,0.0135184694688372,0.0156382295035142,0.0178013358661682,0.0199629784927542,0.0221625939657114,0.0242026458824735,0.0262730839547256,0.0284400650058628,0.0305481145683082,0.0327560940370286,0.0347650798573422,0.0370055736278308,0.0390882859693189,0.0413247209827232,0.0433400389831038,0.0583959140616024,0.0719827450816153,0.0859712834291951,0.0988933538111969,0.1113478618594544,0.1269134339726433,0.1370786278339135,0.1470162286493163,0.155853178844756,0.1646045049202142,0.1766354435018809,0.1878017624006755,0.1981415389972144,0.2077455926286646,0.2165455746367239,0.2257156160617281,0.2344510425503415,0.2430296822413075,0.2500794840350638,0.2561284481474266,0.2615544881069506,0.2674445822897404,0.2727509562210617,0.2760013907372106,0.2795529097315029,0.2834795033504139,0.2867570776826448,0.2915628970775095,0.2952425252603561,0.2983029408664488,0.2945282866596723,0.2919053309707284,0.2889201152251809,0.2859880412074058,0.2840638452093904,0.2813114754098361,0.2773897551515916,0.2770822437238494,0.2774629431085244,0.2786296842516746,0.2788065268065268,0.2803486933815012,0.2815812445442075,0.2812943577004968,0.2834902848968887,0.2858508110341977,0.2872810100953291,0.2891764413827344,0.2932044218040683,0.2985319381539903,0.3038325656276553,0.3069104626185361,0.3113318845079168,0.3167257104092862,0.3173390477965154,0.3218241810040066,0.3274818401937046,0.3325410972469796,0.3370846730975348,0.3397947548460661,0.0,1.790776106013061,52.27893465910149,139.6857801827028,203.49770116474303,fqhc3_100Compliance_implementation,65 -100000,95727,48490,463.4638085388657,4711,47.99064004930688,3757,38.70381397097997,1391,14.165282522172427,77.26691653433518,79.6259171912747,63.2951211478972,65.0388127273071,77.08372137040782,79.44616164900468,63.22617914547092,64.9730195466182,0.1831951639273654,179.75554227001567,0.0689420024262759,65.79318068889961,230.29468,162.03414350754875,240573.7357276421,169266.32470831525,537.01889,361.71798080532017,560427.0373039999,377305.1064177273,482.75796,236.8725910756464,500862.2227793621,244722.42577579417,2673.03192,1241.9318841029212,2758015.1054561413,1263701.498099303,888.94879,404.45520775329607,915129.1380697192,409405.9282866737,1363.20512,581.0799410928958,1391414.2718355325,580904.4867541877,0.38055,100000,0,1046794,10935.169805801916,0,0.0,0,0.0,46770,487.971000867049,0,0.0,43587,451.847441160801,1114158,0,40012,0,0,0,0,0,84,0.8774953774797078,0,0.0,2,0.0208927470828501,0,0.0,0.04711,0.1237945079490211,0.2952663977924007,0.01391,0.3680470970361348,0.6319529029638652,23.218626856426585,4.0675223343936215,0.3074261378759648,0.27495342028214,0.2070801171147192,0.2105403247271759,11.516765938907724,6.172121623180981,14.932894777983234,11267.717805950144,42.92048256276059,12.636478577616783,12.9560932740929,8.751304195280577,8.576606515770315,0.5805163694437051,0.8034849951597289,0.6952380952380952,0.5861182519280206,0.1163084702907711,0.7506726457399103,0.9022222222222224,0.8480565371024735,0.7534883720930232,0.1736526946107784,0.5087055261165784,0.7272727272727273,0.6456422018348624,0.522202486678508,0.1009615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295385487987,0.0048160277403197,0.0070118115030239,0.0091831655509391,0.0113805097329292,0.0136132691191593,0.0156480962332432,0.0179050846765549,0.0200566328981936,0.0222731739272846,0.0241307200262424,0.0262825580320934,0.0284744716952028,0.0305805042847725,0.032539281329633,0.0341837051125674,0.0362128241239333,0.0381890049694467,0.040226599449093,0.0423629922900604,0.0574170173222098,0.071160931089341,0.0839157170139981,0.0962491451417749,0.1091687854075895,0.1249338610340959,0.1354805834518779,0.1451971925489653,0.1547920743378351,0.1642335766423357,0.175874521640705,0.1867009058206561,0.1968180679726889,0.2049473834057883,0.2141479808275026,0.2229263312099083,0.2318407960199004,0.239822470543177,0.2468994184990005,0.2532433299715779,0.2586859185727673,0.2647244647244647,0.2704753112720731,0.2747758546291413,0.2788090089652324,0.281738744623424,0.2855390008764242,0.2889208413391187,0.2919343973468753,0.294640025372661,0.2912461546764531,0.2880743560041922,0.2855045664356394,0.2829312738632419,0.2806232437816863,0.2770522959965667,0.273992581084937,0.2748183223175824,0.2751278411520241,0.274871868135793,0.2756431861588586,0.2762360005530646,0.2776927752509903,0.2782643667888104,0.2792090640109692,0.2795998645374736,0.2818759438128615,0.2881366596407336,0.2923652536091207,0.2954818072770891,0.2983963083108694,0.3019612023022809,0.3056271612700408,0.3074068464101787,0.3098156638907083,0.3074209102669646,0.3162031438935913,0.3184357541899441,0.3156750882912252,0.3258469737342976,0.0,2.0306657545409807,48.50537027225954,135.6148115785569,196.37169016618196,fqhc3_100Compliance_implementation,66 -100000,95708,48000,458.8226689513938,4817,49.191290174280105,3852,39.74589376018724,1473,15.056212646800686,77.288290147924,79.65824063270856,63.294707477804174,65.0441605722259,77.10017479629497,79.47159567492847,63.22348841799487,64.97573335752934,0.1881153516290368,186.64495778008927,0.0712190598093087,68.42721469656965,230.8372,162.41755714411192,241189.0333096502,169701.12962773428,540.75992,364.1037245228092,564489.5411041919,379911.9598637039,477.47559,234.1621046062536,495796.9971162285,242285.32635919444,2733.87798,1278.7354982205889,2823430.580515736,1303073.9609881733,912.03271,412.12448030257127,942469.3024616544,420169.30238425976,1432.12326,611.574997676419,1465752.81063234,612853.3784559836,0.37799,100000,0,1049260,10963.137877711371,0,0.0,0,0.0,47205,492.665189952773,0,0.0,43237,448.7190203535754,1109371,0,39877,0,0,0,0,0,81,0.846324236218498,0,0.0,0,0.0,0,0.0,0.04817,0.1274372337892536,0.3057919867137222,0.01473,0.3585506669321123,0.6414493330678878,22.869565458521027,4.10238130969431,0.3185358255451713,0.2684319833852544,0.2058670820353063,0.2071651090342679,11.275321740751792,6.0983266457489,15.70686979187634,11230.262028864625,44.26776223161311,12.77471238905298,14.002299648720898,8.817792009608828,8.672958184230408,0.5815160955347871,0.7959381044487428,0.6919315403422983,0.5863808322824716,0.1290726817042606,0.756872852233677,0.90990990990991,0.877906976744186,0.72,0.1761363636363636,0.5055803571428571,0.7101694915254237,0.6194790486976217,0.5413153456998314,0.1157556270096463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875854525567,0.0043085532385113,0.0063319397653935,0.0084317032040472,0.0106887153201529,0.0127788695537068,0.0147019840541587,0.0168121267799724,0.0189309918326876,0.02101008033567,0.0228237030356447,0.0249840898359713,0.0272257122587676,0.0291758066343292,0.0313357400722021,0.0334225566085509,0.0356384796181443,0.0376089663760896,0.0396288822782966,0.0417821782178217,0.0564693841317584,0.0690684088196494,0.0823336796700355,0.0952526283663611,0.1080744423683904,0.1232609846479618,0.1343137775418104,0.1443943703987811,0.1535500427715996,0.1629173064739549,0.1742979769658801,0.1853617316317465,0.1955565236331954,0.2046925123443949,0.2126665932371406,0.2220459336513924,0.2315191628281382,0.2400505084669327,0.2473695585408301,0.2535767596739006,0.259497634288895,0.2641555883801083,0.2690364360945061,0.273466300027618,0.2779021932280129,0.2826594234211988,0.286474278544542,0.2901790835510802,0.2945481915984271,0.2976374621557662,0.2937355988842925,0.2904817019400352,0.2884742940205196,0.2848853194414297,0.282113845329842,0.2786779795999632,0.2749351306879311,0.2745278069254984,0.2735667104746624,0.2737452081661763,0.274573289414583,0.2756588413852916,0.2761576251698547,0.2768573906468901,0.2772300861719141,0.2778696573466329,0.2774022006618957,0.2831786506671666,0.2877080353093053,0.2925213000946671,0.2949532540619043,0.2999630001585707,0.3058258483033932,0.310908543016423,0.3113424859485856,0.3162661093695576,0.3242152466367713,0.3285742613523696,0.3331555081355028,0.3313521545319465,0.0,1.892461207329212,50.91630996675365,142.05011051606175,196.46681584068335,fqhc3_100Compliance_implementation,67 -100000,95823,48877,466.1406969099277,4931,50.196716863383536,3929,40.355655740271125,1487,15.132066414117697,77.36488025655099,79.68131017229594,63.35773544642036,65.07178892434939,77.16829638503953,79.48824291981448,63.28334939405642,65.0012863205561,0.1965838715114642,193.0672524814554,0.0743860523639341,70.50260379328677,231.75306,163.01646127664478,241853.9807770577,170121.1470008086,541.08366,365.1638746356652,563980.380493201,380393.6828038104,490.47098,241.17709606537932,507790.2799954082,248476.097500406,2776.05398,1304.548865545045,2854283.8984377445,1318774.164962561,901.75197,411.917741130664,924711.17581374,413572.7876791114,1447.86468,624.5696935815408,1475087.0459075589,620472.9991958359,0.38319,100000,0,1053423,10993.362762593531,0,0.0,0,0.0,47053,490.3415672646442,0,0.0,44297,458.26158646671473,1110930,0,39888,0,0,0,0,0,99,1.0331548793087255,0,0.0,0,0.0,0,0.0,0.04931,0.1286828988230381,0.3015615493814642,0.01487,0.3575745759407291,0.6424254240592708,22.793443668538117,4.062858526175011,0.3005853906846525,0.2886230593026215,0.200814456604734,0.2099770934079918,11.078302649844671,5.863947455430041,16.107848009403913,11395.503925153494,45.45135838116498,14.080109698484948,13.520269268842595,8.844649502548824,9.006329911288606,0.5848816492746246,0.8201058201058201,0.7138018628281118,0.5665399239543726,0.0945454545454545,0.7422258592471358,0.9094488188976378,0.844311377245509,0.7064676616915423,0.1173184357541899,0.513852973771703,0.7476038338658147,0.6623376623376623,0.5187074829931972,0.088235294117647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0050590048258242,0.0074174040100657,0.0097204729208142,0.0120499079732766,0.0140308719912027,0.016422353157047,0.0183861812687588,0.0207515538109257,0.022959209785557,0.0250071741893166,0.0269285633652494,0.0287258861858806,0.030835734870317,0.0330265016028779,0.0349028068835231,0.0368638808440215,0.0392270631508055,0.0411911906714984,0.0431041657996587,0.0579087353324641,0.0726641790264756,0.0857846218311334,0.0987860458278201,0.1110537734060703,0.1260532595611682,0.1369053293926971,0.1454918468439739,0.1544911457222103,0.1630856237012917,0.1757320825354476,0.1883141451813415,0.1986442003715412,0.2080507595365243,0.2166230797969364,0.2259548399938076,0.2342857142857143,0.2428165598086661,0.2504699141698938,0.2559591178790685,0.2618475750577367,0.2682807246918192,0.2727659373375549,0.276657060518732,0.2809561366256142,0.2853240472997084,0.2889127664359429,0.2928387285219003,0.296065637315072,0.2994579232671964,0.2963539918082321,0.2935304940000549,0.29094694199066,0.2876046176046176,0.2846134430075277,0.2807436309387193,0.2763205799946179,0.2759973731735347,0.2756033362958912,0.2752468882261549,0.2765066911916515,0.2767220902612826,0.2778778862674433,0.2782260768491405,0.280334427329133,0.2821598317014259,0.2830973952434881,0.2872653316645807,0.2896043064876957,0.2941596006022664,0.2990798943244966,0.3036340452661779,0.3092757466691924,0.3134908536585366,0.3174408743993215,0.3191866650904362,0.3215050474151116,0.3269776876267748,0.3338824821526633,0.3411538461538461,0.0,2.405362639943207,52.93166445581508,146.84205629119535,195.18653097463385,fqhc3_100Compliance_implementation,68 -100000,95633,48153,459.8726381060931,4891,49.8781801261071,3854,39.65158470402476,1490,15.151673585477816,77.2563444549925,79.66551333810418,63.27473565930678,65.05536400116476,77.06301534008435,79.47777115737321,63.20073302749629,64.98635772996653,0.1933291149081526,187.7421807309645,0.0740026318104938,69.00627119823355,229.83686,161.67396865880067,240332.1656750285,169056.67359468035,537.26881,362.9639112503273,561187.2052534167,378922.8208362461,480.54094,235.9550243382202,498802.6204343688,243853.8179297192,2742.57091,1291.678877509957,2826244.0161868813,1309098.227086839,890.21998,407.3984736111267,917139.6484477116,412270.50663591706,1446.2428,624.5441963954711,1473383.790114291,619281.4439874621,0.3787,100000,0,1044713,10924.189348864931,0,0.0,0,0.0,46915,489.90411259711607,0,0.0,43420,450.2838978176989,1114430,0,40013,0,0,0,0,0,75,0.7842481151903632,0,0.0,1,0.0104566415358715,0,0.0,0.04891,0.1291523633482968,0.3046411776732775,0.0149,0.3583905789990186,0.6416094210009814,23.037349825602195,4.088182113181624,0.3098079916969382,0.2667358588479502,0.2244421380384016,0.1990140114167099,11.322024484633904,6.162167781321786,16.052179711819672,11300.667305374149,44.23011632964592,12.711745508785368,13.53116020480089,9.497714640708052,8.489495975351605,0.5910742086144266,0.8103112840466926,0.6892797319932998,0.6069364161849711,0.1264667535853976,0.768313458262351,0.9324618736383442,0.8605341246290801,0.7794871794871795,0.174863387978142,0.5134328358208955,0.7117750439367311,0.6219369894982497,0.5567164179104478,0.1113013698630137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104927330733,0.0048751811722732,0.0069820071240828,0.0091432751211483,0.011343982093804,0.0135183317543269,0.0155255426799412,0.0174608688544689,0.019638729210564,0.0218513737783514,0.0239697914956493,0.0261540674970197,0.0283414147029453,0.0303323985483338,0.0324153461562299,0.0344677724775198,0.0365935831648784,0.0388407001506258,0.0408428720083246,0.0427979847500234,0.0567922911310382,0.070737865501671,0.0838635170603674,0.0963619520821929,0.1084834478319139,0.1240436406734462,0.1349592978210802,0.1445169810115123,0.1540821343822818,0.1625633210268738,0.1748754663273888,0.1870083432657926,0.1971043859075756,0.2064113102087785,0.2145835171622694,0.2240033748154397,0.2326588140541629,0.2401379559082097,0.2472267685033642,0.2532664930655134,0.2594765709249875,0.2647907140344706,0.2697618143860315,0.2739581332821202,0.2787731256085686,0.2831265049083163,0.2865414985085102,0.2904080618653892,0.2941954388103048,0.2978094093724004,0.2943912006146629,0.2909609580640271,0.288436833858012,0.2857536032447309,0.2837751255345462,0.2800639232920495,0.2755759345052992,0.2761807656887252,0.2767209290357994,0.2773896531957581,0.2777422870241629,0.2788210125980508,0.2806609213478434,0.2807866396129234,0.2820076257164097,0.2818221956730644,0.2837526652452025,0.2885193536264562,0.2931550727665204,0.2967378900562704,0.3005193045834274,0.304677623261694,0.3053468569997495,0.3073912388980882,0.3104049958673891,0.3150238566274875,0.311848764513248,0.310365251727542,0.3159861222311182,0.3158694001518602,0.0,2.529463628309421,50.521801400741296,139.94660316224162,197.60513367458336,fqhc3_100Compliance_implementation,69 -100000,95706,48256,461.256347564416,4833,49.50577811213508,3804,39.297431717969616,1442,14.847553967358367,77.32722884548278,79.70382858011043,63.32110870231941,65.07601796750888,77.14110474662502,79.51637155825932,63.252098207364085,65.00754204747389,0.1861240988577606,187.45702185110247,0.0690104949553287,68.47592003498448,229.33878,161.34006192836452,239628.42455018492,168578.83719763078,535.68481,361.2579123672373,559263.51534909,377018.13207224617,480.31001,235.73015640290663,498404.0603514931,243697.17485234988,2696.7944,1270.1053256470489,2785976.8771027937,1296306.2571359824,884.32565,403.95831113536826,911035.2642467556,409278.9363091026,1396.94648,596.6285820374537,1438665.8934654044,607189.0897612212,0.38048,100000,0,1042449,10892.201115917496,0,0.0,0,0.0,46759,488.1094184272668,0,0.0,43434,450.43152989363256,1121620,0,40303,0,0,0,0,0,82,0.8463419221365431,0,0.0,1,0.0104486657053894,0,0.0,0.04833,0.1270237594617325,0.2983654045106559,0.01442,0.3611662038873462,0.6388337961126537,23.0816255314914,4.07957434619046,0.3083596214511041,0.2762881177707676,0.2166140904311251,0.1987381703470031,11.489176102001686,6.331122771097465,15.602251531901144,11338.312977360472,43.85164329508976,12.82616974259926,13.532510481698058,9.202832505521318,8.290130565271111,0.5912197686645636,0.8106565176022835,0.711849957374254,0.5788834951456311,0.1124338624338624,0.7647058823529411,0.9333333333333332,0.8559077809798271,0.7647058823529411,0.1470588235294117,0.5154833836858006,0.724025974025974,0.6513317191283293,0.5177419354838709,0.1023890784982935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0045504758236969,0.0065131378715633,0.0087652477731395,0.0109923633072675,0.0129514422734261,0.0152244406828054,0.0172193682146395,0.0194097314544004,0.0215461183193208,0.0238539636960311,0.0261182149643095,0.0281520643475756,0.0300460582580292,0.0320137054161162,0.0338266166144427,0.0358859605503066,0.0378933380397205,0.0401797322738004,0.0421917179992287,0.0569324768917436,0.0714427735744409,0.0844616917510095,0.0972512965086311,0.1090535196414447,0.1242106599253234,0.1349186137815411,0.1454231838073233,0.1551626515677581,0.1633487074975866,0.1756596661281637,0.1868134246782904,0.1976009483105499,0.2065609622744669,0.2159818657981029,0.2249324294386104,0.2325931711671502,0.2413230762309647,0.2485789814047946,0.2548211259218542,0.2606154593956508,0.2665949259003661,0.2715494290954268,0.2766031361932029,0.2806039404319413,0.284253074704853,0.2873233795977623,0.2911778925672409,0.2946515271178321,0.2979180959417383,0.2952117987743282,0.2921966311447233,0.289530004787249,0.2867078379314325,0.2845941370400071,0.2807888567094194,0.2779025624802277,0.2781394131693435,0.2779167304714749,0.278570921230201,0.2784765312016695,0.27963669248614,0.2814740703685175,0.2822440717177559,0.2844208105777522,0.2845156765462244,0.2853451458102621,0.2897775274570544,0.2946979468051731,0.2983156729400601,0.3011911256592107,0.3038014951487195,0.307330532388537,0.3127421928424891,0.3169953051643192,0.3201083117494702,0.3211845102505695,0.3210124548011249,0.3257844474761255,0.32701062215478,0.0,1.7433585599973689,50.629066229737965,145.1080124312133,188.2014462014101,fqhc3_100Compliance_implementation,70 -100000,95774,48516,463.9359325077787,4843,49.32445131246476,3809,39.14423538747468,1442,14.58642220226784,77.38146625236273,79.70417911417921,63.35451413110488,65.06752978907095,77.1940755730416,79.52454412810211,63.28290849829807,65.00226626578562,0.1873906793211261,179.6349860771045,0.0716056328068077,65.26352328532425,231.22264,162.66523831610826,241425.27199448703,169842.794825431,542.05034,365.03302262749975,565348.3408858355,380520.4987925337,479.82369,235.24081574564,497681.6672583373,243000.45189345584,2708.94578,1252.0045009398202,2786108.484557396,1264898.206503064,862.7105,388.3763347486072,885366.5086557938,390121.6880533876,1398.55836,599.8386277562188,1416476.7682251967,588754.9832262225,0.38106,100000,0,1051012,10973.87599974941,0,0.0,0,0.0,47258,492.7642157579301,0,0.0,43328,449.05715538663935,1110388,0,39864,0,0,0,0,0,87,0.9083884979221918,0,0.0,1,0.0104412471025539,0,0.0,0.04843,0.1270928462709284,0.2977493289283502,0.01442,0.3485058381159707,0.6514941618840293,23.528463783567563,4.117007307734542,0.3113678130742977,0.2740876870569703,0.2110790233657128,0.2034654765030191,11.174924509374293,5.914114134106396,15.41185864285458,11350.427777417925,43.18280972066698,12.566701874814582,13.478243995881144,8.762935848932331,8.374928001038926,0.5767918088737202,0.7816091954022989,0.7107925801011804,0.5783582089552238,0.0941935483870967,0.7470210815765352,0.9137529137529138,0.8689024390243902,0.711764705882353,0.1036585365853658,0.5084621044885945,0.6894308943089431,0.6503496503496503,0.5425867507886435,0.0916530278232405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0046313186590457,0.0068370172751341,0.0092615159639288,0.0114187519700651,0.0133151454689822,0.0154721135029354,0.0176328329880917,0.0197793216183081,0.0220985431330823,0.0239522184999641,0.0260498425107985,0.0280355582960793,0.0300394280361132,0.0320950996463662,0.0338851766552717,0.0357856174519564,0.0377800586814303,0.0398312832446808,0.0417642832599256,0.0562727642743088,0.0704045541114669,0.0836899517516257,0.0972855911355942,0.10944072531759,0.1248902662168022,0.135319762816501,0.1452037003523638,0.154175657487128,0.1628996633285441,0.1750102275908102,0.1869788568647596,0.1973575467594606,0.2071956769055745,0.2160014964953399,0.2249711930508775,0.2338181290531415,0.2417413024888609,0.2495317023329738,0.2551830840639505,0.2614308705871455,0.266569896752745,0.2717845516424977,0.2762949829891226,0.2807560638065409,0.2854240793863807,0.2876178095547611,0.2914591380361862,0.2952525134893832,0.2984878023078139,0.2949967074760452,0.2913458238967812,0.2878385405686497,0.2855844024648954,0.2839669274273754,0.2810837257660082,0.2776971379887034,0.2776152098216475,0.2783240337506804,0.2794603230960412,0.2800633501024781,0.2811542991755006,0.2825136384458418,0.2828954686005383,0.2839812780590314,0.2864828513786147,0.287210615471485,0.2927876092433054,0.2970324553478352,0.3006026231832683,0.3029113067027759,0.3047284546026421,0.3097624350408314,0.3154116503402377,0.3202085078655869,0.325415399017084,0.3332333533293341,0.335583796664019,0.332973556395035,0.3362264150943396,0.0,2.435236983897257,46.9547541004392,136.68045818707552,203.60486225735312,fqhc3_100Compliance_implementation,71 -100000,95736,48167,459.9210328403108,4826,48.95754992897134,3877,39.692487674438034,1448,14.571321133116069,77.31912755708531,79.6664842561145,63.32066847763053,65.05730570764275,77.12880507770613,79.4857779296592,63.248188101594046,64.99185508800956,0.1903224793791764,180.7063264552937,0.0724803760364878,65.45061963319654,231.781,163.00332604005104,242104.09877162197,170263.15208033848,540.36262,363.2733940389531,563631.6537143812,378656.1169972904,478.01089,234.38350687017493,494213.3157850756,240874.9470239896,2709.38045,1262.0594573909948,2778916.562212752,1267373.601174669,875.52207,397.5533677254567,898139.5295395671,398994.918941843,1403.07706,599.9124688023974,1415280.4378708114,585339.3189521404,0.37923,100000,0,1053550,11004.731762346451,0,0.0,0,0.0,47150,491.65413219687474,0,0.0,43145,445.6421826690064,1110566,0,39894,0,0,0,0,0,101,1.0445391493273168,0,0.0,0,0.0,0,0.0,0.04826,0.127257864620415,0.3000414421881475,0.01448,0.364141213804046,0.635858786195954,23.328844389821366,4.057041578498865,0.3030693835439773,0.2844983234459634,0.2174361619809131,0.1949961310291462,11.63082421806584,6.528015951555413,15.512417040569876,11320.264479140313,44.15740108770368,13.354764098521269,13.273580369736637,9.311644575302129,8.217412044143655,0.6002063451122002,0.8014505893019039,0.7080851063829787,0.6215895610913404,0.115079365079365,0.7672790901137357,0.9186046511627908,0.8690476190476191,0.7453703703703703,0.1801242236024844,0.5303584491587418,0.7265973254086181,0.6436233611442194,0.5789473684210527,0.0974789915966386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0045602407807132,0.0065946998904265,0.008866724897926,0.0111256877281833,0.0131984968378601,0.0155391282182003,0.0176551076256994,0.0197235230363387,0.0220716201551974,0.0240226384915874,0.0259369545127836,0.0280660256080629,0.030059851864061,0.0320480411073392,0.0342614411509363,0.0364208586543538,0.0383801502012364,0.0402560425629195,0.0422768461618581,0.0567873397636644,0.070812846532064,0.0840693112924542,0.0964960249021999,0.1084286542617679,0.1239796134162331,0.1346555655724664,0.1443589661740139,0.1548055054296178,0.1637811819945756,0.1758105678012641,0.1868926260199554,0.1975181084549627,0.2064094293617905,0.2147391117809485,0.2243322850688754,0.2325695599281242,0.240654284460744,0.2476480134366807,0.25425106777662,0.2601402972635088,0.2648239383052672,0.2700328008620588,0.2742270267676101,0.2783775897286256,0.2828586940427422,0.2870739098855411,0.2913149216292957,0.2946215655780197,0.2973986036137104,0.2944432473199375,0.2912292770172663,0.2885208935240645,0.2862616390029495,0.2842292842292842,0.2809181331293037,0.2762231678187829,0.2770675582653161,0.277984121034518,0.2785990691370794,0.2796236016013769,0.2809444970040997,0.2826446280991735,0.2830858546388299,0.2843301837018562,0.2847305233615716,0.2848866927926393,0.2908999874827888,0.2953282784164366,0.2997873848334514,0.3019558245629884,0.3060040097077134,0.3104376682737462,0.3132347364429275,0.3207406022068449,0.3198224506482887,0.3255392970282094,0.3350030054097375,0.329520697167756,0.3316981132075471,0.0,3.0921733135893823,48.63141913235453,139.10712158273972,203.4922871771254,fqhc3_100Compliance_implementation,72 -100000,95690,48549,462.4621172536315,4842,49.39910126449995,3868,39.931027275577385,1461,14.996342355523044,77.34181859432726,79.72433232992279,63.3271521787835,65.08546445636414,77.15878168656945,79.54129115700545,63.25891674191297,65.01875813713973,0.1830369077578097,183.041172917342,0.0682354368705304,66.70631922440862,229.42304,161.41957854031062,239755.39763820672,168689.0402234638,536.49813,361.7276590509917,560155.8470059567,377515.416033864,482.06391,236.4029622458199,500319.3541644895,244390.53200047548,2735.1496,1269.4744044204783,2826393.7506531505,1294898.4749826028,897.5052,409.9363511588506,927216.1876894135,417882.6012918491,1423.24974,598.5593560884221,1462424.537569234,605283.5243746554,0.3808,100000,0,1042832,10897.972619918488,0,0.0,0,0.0,46742,487.94022363883374,0,0.0,43693,453.15079945657857,1122024,0,40238,0,0,0,0,0,78,0.81513219772181,0,0.0,0,0.0,0,0.0,0.04842,0.1271533613445378,0.3017348203221809,0.01461,0.3572989076464746,0.6427010923535253,23.534025189701723,4.057435724217146,0.2926577042399172,0.2867114788004136,0.2145811789038262,0.2060496380558428,11.42396990141408,6.096006623015534,15.459839491059473,11382.456897940485,44.19592399628924,13.61196371384406,12.751644301843562,9.139819380376466,8.692496600225157,0.5700620475698035,0.7989179440937781,0.6837455830388692,0.5433734939759036,0.1179422835633626,0.76,0.9191011235955056,0.8867924528301887,0.7210526315789474,0.1569767441860465,0.4921618665694495,0.7183734939759037,0.6044226044226044,0.490625,0.1072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022176990612753,0.0045105770497785,0.0065744752087497,0.0091405821535211,0.011591491438565,0.0140201189215606,0.0162880061971888,0.01828241274767,0.0207177097067631,0.0229299102253068,0.0251722582232794,0.0271852437634154,0.029546413176548,0.0315208095046729,0.0337200421113473,0.035767110393976,0.0377808173754455,0.0397848792541373,0.0419965254299,0.0441277651523049,0.0595738013162018,0.0735831474908649,0.0861958586526452,0.0991740754379504,0.1108368668649663,0.1263008714781284,0.137099084379277,0.1472394597068622,0.1571710912878585,0.1658892284596,0.1774511387497981,0.1889532997339447,0.198982144022271,0.2080122424441165,0.2163871322518559,0.2257214360064669,0.2341263641841676,0.2420074892889673,0.2493363584798638,0.2557609753305477,0.2619694534691471,0.2662637503945384,0.2714407320706533,0.2752104613984456,0.2797285979584157,0.2834470191336896,0.2865250709437075,0.2903578465645459,0.2944998058755015,0.2976810409608058,0.2943154157533049,0.2908543873387462,0.2879958349163465,0.2856194817935253,0.2836170591375526,0.2797723761300882,0.276737207833228,0.276324405736363,0.275863831527295,0.2762128325508607,0.2777270610153702,0.277584478386507,0.2775115629817909,0.2782918149466192,0.2794409270099152,0.2808802159020137,0.283171796179788,0.2878977308245296,0.2903316076675528,0.2929276965626234,0.2976147288227825,0.3009503695881731,0.3041962395716598,0.3062825250773059,0.3080700453997961,0.3148605718319802,0.3180442022403875,0.3172235481304694,0.3198800109080992,0.3256342294585384,0.0,1.8638652450998845,49.17017145672212,143.76858582908113,200.9474720732765,fqhc3_100Compliance_implementation,73 -100000,95674,48579,464.1595417772853,4825,49.20877145305934,3828,39.37328845872442,1486,15.113824027426467,77.38307130315455,79.75829578423689,63.34642469116329,65.09692630597158,77.18716296367751,79.56795257344193,63.27163148313934,65.02744089231457,0.1959083394770431,190.34321079496408,0.074793208023955,69.48541365700578,230.52172,162.21015914399442,240945.0007316512,169544.66118694152,540.89398,365.0724050608621,564714.1647678575,380942.6333809206,486.10208,239.49068152983665,503973.5769383532,247263.22422773007,2723.53152,1278.480583749356,2805370.215523549,1294979.789440554,909.65061,411.2222395362723,938365.355268934,417400.0246004886,1446.80026,619.7963767791518,1473718.0634237097,613951.3934533839,0.3814,100000,0,1047826,10952.045487802328,0,0.0,0,0.0,47098,491.6173673098229,0,0.0,44001,455.7873612475698,1112587,0,39979,0,0,0,0,0,96,1.0034074043104708,0,0.0,4,0.0418086418462696,0,0.0,0.04825,0.1265076035658101,0.3079792746113989,0.01486,0.3550307600714427,0.6449692399285573,22.72995511389728,4.152634273031122,0.304858934169279,0.2761233019853709,0.2084639498432602,0.2105538140020898,11.540269317638597,6.238626938197483,15.929108128966252,11377.329002727924,43.85988841188939,13.005127198173431,13.249972035558118,8.814034407733667,8.79075477042418,0.5888192267502612,0.8278145695364238,0.7069408740359897,0.5714285714285714,0.1215880893300248,0.75809199318569,0.9136069114470844,0.8833819241982507,0.7311827956989247,0.1538461538461538,0.5139412207987942,0.7609427609427609,0.633495145631068,0.5228758169934641,0.1121794871794871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020246398671836,0.0041942739043219,0.0063792456465958,0.0087635566026239,0.0109501296324538,0.0131111495668638,0.0153723827193214,0.0175055374659331,0.019656145228555,0.0219585602555177,0.0240526574803149,0.0262366121396958,0.0283345846489288,0.0305717787872233,0.0326104898279206,0.0347782049692008,0.0369422660547607,0.0387158382030868,0.040798710415475,0.0426902352340354,0.0578476132766384,0.0720425491817867,0.0853923389254351,0.0981660251961217,0.1105416890744783,0.1260679242091016,0.1366672320936347,0.1459142106550664,0.1558548271777524,0.1653665645157833,0.1781529423157622,0.1896816471300662,0.2001695707468722,0.2090524543934243,0.2169169004014739,0.2264222012961834,0.234801447268504,0.2422495242170696,0.2496338431145475,0.2556623552189902,0.2607095743942234,0.266665886428538,0.2715742352648594,0.2761764247244113,0.2810205669276024,0.2846837737524199,0.2882511951543063,0.2917991908602834,0.2945419229524117,0.2967498449479421,0.293835229565077,0.2914503145690815,0.2891647569908195,0.285817331967627,0.2834862793352408,0.2800880962941437,0.2758855047495614,0.2757547463429816,0.2765844920242258,0.2780519087233019,0.2776225599761585,0.2790076935154655,0.2803917084225627,0.2823748586129654,0.2832214445555396,0.2836328940921633,0.2840937878233456,0.2886722751684102,0.2937172229361303,0.2984221447868133,0.3021391578473317,0.3080179803470625,0.3112295488349033,0.3170877560173419,0.3218982801434746,0.3213418160786582,0.3271028037383177,0.3364413364413364,0.3405491024287223,0.3406352683461117,0.0,2.532757298875931,50.56890239287984,139.74972185559977,192.36241749684,fqhc3_100Compliance_implementation,74 -100000,95698,47936,457.1568893811783,4910,50.07419172814479,3929,40.51286338272482,1471,15.07868502999018,77.3960056150407,79.7801143247286,63.35197710932333,65.11292185443139,77.2034627941268,79.5887519995891,63.27952667378048,65.04274194559379,0.1925428209138999,191.3623251394938,0.072450435542855,70.17990883760206,229.70024,161.43749132529786,240026.165646095,168694.7389969465,535.89166,361.3224832337602,559426.9577211646,377013.273387643,479.63285,235.16490715695352,497433.3841877573,242906.4375223863,2745.54401,1289.8686164969472,2832654.172500993,1311989.300597395,878.96386,404.1414142559818,906443.9382223244,410545.8137891941,1418.88266,608.6385830555502,1455155.4264456937,613389.8239450492,0.37933,100000,0,1044092,10910.280256640684,0,0.0,0,0.0,46790,488.3487638195156,0,0.0,43501,450.7722209450564,1124282,0,40328,0,0,0,0,0,83,0.8673117515517567,0,0.0,2,0.0208990783506447,0,0.0,0.0491,0.1294387472649144,0.2995926680244399,0.01471,0.3569753810082063,0.6430246189917936,23.229123183193938,4.0216179141012285,0.3168745227793331,0.2873504708577246,0.2043777042504454,0.1913973021124968,11.552585046766271,6.483369419086411,15.872571932013075,11311.590762285869,45.117586483673264,13.859723666460726,14.051849381921024,8.942144390927872,8.263869044363647,0.5899720030542123,0.8086802480070859,0.7116465863453815,0.5579078455790785,0.0944148936170212,0.7668308702791461,0.9224489795918368,0.8626373626373627,0.7067307692307693,0.1346153846153846,0.5105127259313906,0.7214397496087637,0.6492622020431328,0.5058823529411764,0.0838926174496644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.004562876437306,0.0067599114918495,0.0089001778003556,0.0111081724411531,0.0132875819655439,0.0155388113421087,0.017805184330621,0.0199860966284323,0.0220782411103604,0.0240721755177363,0.0259864266866535,0.0280663142522163,0.0305411919820358,0.0327280231118448,0.0348352818350027,0.036740105445242,0.0391214540019306,0.0409443086682959,0.0428760513178601,0.0577495534828338,0.0714876249280519,0.0843996475918778,0.0977312390924956,0.109483203862005,0.1253185572134042,0.135808624622076,0.1451077237503193,0.1548066652424695,0.1635710455764075,0.1755850141609502,0.1874932404663537,0.1980614384908776,0.2072549619655504,0.2150184157000714,0.2246081643495971,0.2326125985481227,0.2406178039876439,0.2477712706306143,0.2537606876686022,0.2595867482396398,0.2645987956868786,0.2694428374086449,0.2738959377204836,0.2778720310227823,0.2814266057300113,0.2848985799952624,0.288111108295106,0.2917821820479426,0.2958660744789887,0.2930438279051066,0.2905094494658997,0.2880418765875633,0.2846590254578965,0.2824741657537086,0.2797949594190517,0.2766091645904948,0.2766799065038657,0.2775340882042912,0.2783657090095529,0.2782777187785292,0.279472382522671,0.2802950036356081,0.2805820726926399,0.2816159110962726,0.28466983569288,0.2843015720966924,0.2877523050087217,0.2931562108777298,0.2974591294071302,0.3024890057578093,0.3059886886199059,0.3112894126496583,0.3143440762596459,0.3174275803881128,0.3248369887374037,0.329069590376123,0.3325933400605449,0.3327868852459016,0.3369189396849789,0.0,2.062134817883557,53.14091305198373,141.3137847974626,198.9159291229995,fqhc3_100Compliance_implementation,75 -100000,95820,48546,462.0225422667502,4903,49.96869129618034,3894,40.02295971613442,1455,14.819453141306616,77.38566316619061,79.70609703119527,63.36611244363343,65.08403192526137,77.20108341532806,79.52509413519854,63.29719445857154,65.01882387890663,0.1845797508625537,181.0028959967269,0.068917985061887,65.20804635474065,231.40282,162.8117696562677,241497.4118138176,169914.18248410322,544.60041,367.35150885483057,567755.5729492799,382774.46133879217,487.12322,239.532597537114,504242.2250052181,246795.24931269835,2785.66444,1285.857399701467,2866372.991024838,1301349.1914264828,926.30966,414.1935093683799,951374.8069296598,417009.4301048895,1423.915,596.9141176185652,1451636.443331246,594208.4897767946,0.38211,100000,0,1051831,10977.155082446254,0,0.0,0,0.0,47482,494.9071175120017,0,0.0,44085,455.9069087873096,1111380,0,39815,0,0,0,0,0,99,1.0331872260488415,0,0.0,0,0.0,0,0.0,0.04903,0.1283138363298526,0.2967570874974505,0.01455,0.3687998443882513,0.6312001556117487,23.49204502407768,4.1714152673257,0.2963533641499743,0.2847971237801746,0.2062146892655367,0.2126348228043143,11.292827460705135,5.951755352549077,15.42911711912827,11353.573686145104,44.42793160044469,13.734633199571292,12.94928523204281,8.806899172552914,8.937113996277668,0.5850025680534156,0.8277727682596934,0.7036395147313691,0.5591531755915318,0.1195652173913043,0.7797356828193832,0.945121951219512,0.8925081433224755,0.6857142857142857,0.1614906832298136,0.5048930772018847,0.7341977309562399,0.6351829988193625,0.5238853503184714,0.1094452773613193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801565839182,0.0046125928854556,0.0070536176431782,0.009164245219759,0.0113308108547947,0.0135831381733021,0.0159006818946274,0.0182059393815695,0.0204915938474117,0.0228617040872715,0.0250566207893091,0.0273121965739153,0.0296810926917503,0.0318682449819866,0.0340183754910958,0.0359038981965418,0.0376524879199561,0.0398009950248756,0.0418877524531436,0.0436845719994172,0.0584253019840193,0.0720244193096527,0.0853064176335565,0.0974279770535207,0.1087854208364057,0.124959072233547,0.1366400406805517,0.1460472333822247,0.1550407440590469,0.1640123807177817,0.175622345287381,0.1869477868268129,0.1975252360794529,0.2056772419212258,0.2142221831797867,0.2235659566000818,0.2316508141581092,0.2403984367981313,0.2481739425853575,0.2545907465176602,0.2601045959893326,0.2662872337944065,0.271622705610343,0.2756364331088504,0.2802027631929153,0.2841756624141315,0.2876188340248445,0.291487260017223,0.2946075208518647,0.2973249947445869,0.2950040928060546,0.2925448038503201,0.2894060837462626,0.286535552193646,0.2838959191536022,0.2799963335268416,0.2760762374359947,0.2763429582773426,0.2760516252390057,0.2767346065372064,0.2778919444029293,0.2788584717869883,0.2797302391823398,0.2815299716258183,0.2821851246030982,0.28324724787395,0.2847133213705887,0.2888316744638764,0.2924253587341683,0.29625520110957,0.2985928279618702,0.3007542591908856,0.3025871766029246,0.3077734257306417,0.3115996258185219,0.310893657156331,0.3147950632332774,0.3204664254121431,0.318045318045318,0.3277945619335347,0.0,2.4384923858780194,48.872684806798965,142.5710668348588,204.5302352916605,fqhc3_100Compliance_implementation,76 -100000,95759,48306,461.3665556240144,4904,49.80210737371944,3864,39.682954082644976,1495,15.1212940820184,77.37657405990127,79.72224658247694,63.3458979718325,65.07939654461104,77.17596285149261,79.52637849775073,63.26894903695101,65.00695369512084,0.2006112084086595,195.8680847262144,0.0769489348814929,72.44284949020141,229.75128,161.56360590417958,239926.10616234507,168718.52515604757,534.56958,360.0270511844566,557517.4552783549,375246.6161837245,476.80677,234.33799437945092,493905.40836892615,241564.61540930867,2728.02848,1290.2705084938782,2805088.806274084,1303819.2136896544,881.34405,407.2272206932018,904548.4288683048,409548.10683211865,1449.8647,634.2088215413332,1469800.4782840256,626692.7287574107,0.38074,100000,0,1044324,10905.732098288412,0,0.0,0,0.0,46522,485.1241136603348,0,0.0,43132,446.3496903685293,1124883,0,40324,0,0,0,0,0,99,1.023402500026107,0,0.0,1,0.0104428826533276,0,0.0,0.04904,0.1288018070074066,0.3048531810766721,0.01495,0.3497749070268154,0.6502250929731845,23.32777380962377,4.1046394592475695,0.3136645962732919,0.2675983436853002,0.2171325051759834,0.2016045548654244,11.576654840890445,6.367666405632079,16.159549668686513,11352.34042240407,44.17336936985604,12.568669340663831,13.586306717869048,9.450014563390315,8.568378747932838,0.5804865424430642,0.7940038684719536,0.6806930693069307,0.6054827175208581,0.1142490372272143,0.7526690391459074,0.9201995012468828,0.8593272171253823,0.7465437788018433,0.1899441340782122,0.5098540145985402,0.7140600315955766,0.6146892655367232,0.5562700964630225,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025524156791248,0.0047136818416811,0.0068893443454615,0.0089906131902962,0.0111056870881132,0.0131465056363988,0.0153868115956806,0.0175399191407685,0.0199245545343951,0.0223971501980735,0.0244649885208265,0.0265035259338335,0.0284971163632251,0.0305863936891104,0.0324863565555589,0.0344709968164716,0.0365112402017126,0.0382588489148927,0.0403260180266345,0.0422507342067442,0.0576656125079583,0.0719701327086579,0.0857322570500052,0.098538113104434,0.1105478383676566,0.125338266384778,0.1356715721616692,0.1461436962628756,0.1545839029391661,0.1637354152367879,0.1754669424158211,0.1863570454693011,0.1971952042126335,0.2062456915888873,0.2145916131802318,0.2229809120535615,0.2320156337241764,0.2403637304883127,0.2479118434790503,0.2540047862778102,0.2600770307313293,0.2663611494306624,0.2713934406847793,0.2768094428615893,0.2807746008620166,0.2849911321312444,0.2888233677319407,0.2925760865424904,0.2957937584803256,0.2983625561512824,0.295245769540693,0.2926353929345887,0.2896048990828265,0.2866737770603326,0.2832644719889822,0.2795792494885652,0.2770685056890811,0.2767756390338038,0.2773207990599295,0.2774616834394225,0.278572762936671,0.2789800897143307,0.2812232722114441,0.2817648887507217,0.2838874680306905,0.2870432754599637,0.2869796530548716,0.2922170987038883,0.2956485384802982,0.3008005047517647,0.3023403195871622,0.3051615964570042,0.3075532843076156,0.3120300751879699,0.316935334445062,0.3221649484536082,0.3276930049856473,0.331682187438082,0.3305473173362092,0.3251787730523146,0.0,2.581296759746218,48.17982106520338,145.22061672854872,199.5637709941967,fqhc3_100Compliance_implementation,77 -100000,95756,48204,460.1278248882576,4875,49.772338025815614,3911,40.31078992439116,1499,15.257529554283805,77.3313489084019,79.69936945239326,63.31030609897547,65.06400246258535,77.14484262531182,79.5163035879909,63.23943102037138,64.99702325510223,0.1865062830900825,183.0658644023515,0.0708750786040894,66.97920748311503,230.1684,161.95877718996,240369.689627804,169136.94931906092,541.72214,364.6328983906856,565205.3970508375,380267.3862637177,486.1341,238.44230911861573,504738.4706963532,246701.85934784825,2732.70394,1271.563667008571,2815392.779564727,1289493.3341081203,890.96678,405.9353042524368,911713.9918125236,405185.4445177705,1448.71616,615.6736413190278,1475407.1389782364,610145.5946546622,0.37918,100000,0,1046220,10925.894983082,0,0.0,0,0.0,47248,492.8777308993692,0,0.0,43914,455.6476878733448,1112719,0,39955,0,0,0,0,0,92,0.960775303897406,0,0.0,1,0.0104432098249718,0,0.0,0.04875,0.1285669075373173,0.3074871794871794,0.01499,0.347962999409565,0.6520370005904349,23.324389642861803,4.095048232230468,0.3152646381999489,0.2787010994630529,0.2106878036307849,0.1953464587062132,11.515657878210636,6.403731327947355,15.945733231811705,11271.946598268472,44.63950064063103,13.236661040069375,14.004935536935257,9.028583655665168,8.369320407961228,0.5888519560214779,0.7862385321100918,0.7055961070559611,0.5764563106796117,0.1321989528795811,0.7599293909973521,0.8948545861297539,0.8765060240963856,0.7611111111111111,0.1896551724137931,0.5190784737221023,0.7107309486780715,0.6426193118756937,0.5248447204968945,0.1152542372881356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809765043212,0.0043197420323068,0.0065465617863486,0.0088396667344035,0.0110887301877962,0.0132904237659255,0.0155499587033883,0.0176542062754627,0.0196381266045474,0.0218468975971485,0.0239579914670167,0.0262084553346689,0.0284861582793043,0.030445133828728,0.0324015772414789,0.0344239240584865,0.0364609760896353,0.0386343589477507,0.0406253898290989,0.0424652112323973,0.0569758338117855,0.0706340319998325,0.0840466599530043,0.0967243283032756,0.1083357935135591,0.1240587190117607,0.1343951950932224,0.1440379187303616,0.1534491049959925,0.1625052308550704,0.1745128470425935,0.1855317305609703,0.1959983889052175,0.2049191094375971,0.2136070897781692,0.2234082646093819,0.2320704786788597,0.2401012943162633,0.2476397966594045,0.2536006874820968,0.2590221995879534,0.2652576112412177,0.2707958100293867,0.274716700278498,0.2781196789102408,0.2819820486265226,0.2851439798766065,0.2884718157526403,0.2920796569103795,0.2955088043263206,0.2933828676035104,0.289992855965269,0.2872364351982007,0.2845776880945517,0.2824333723012267,0.278164986502768,0.2745385245385245,0.274301584708381,0.2748838554872964,0.2761627390740708,0.2766131887379581,0.2768813506023859,0.2773359427048634,0.277057816702603,0.2789635968162153,0.280511811023622,0.2831920903954802,0.2877264209868832,0.2923459035891695,0.297442799461642,0.3025339366515837,0.3080444046930078,0.3126869391824526,0.3157222305726739,0.3189273866568374,0.3238347946469774,0.3287914691943128,0.3336573984055998,0.3319205298013245,0.3455555555555555,0.0,2.1169262190563014,49.18381769820334,148.02552024366656,200.01727848839784,fqhc3_100Compliance_implementation,78 -100000,95485,48081,460.5749594177096,4804,49.10718961093365,3812,39.2836571189192,1490,15.164685552704611,77.22623088476638,79.71249293850974,63.24095407219974,65.07574107867222,77.03470286965877,79.52429284225862,63.16893406691892,65.00738754797257,0.1915280151076075,188.2000962511228,0.0720200052808195,68.35353069965322,229.53832,161.52070298588362,240391.7892862753,169157.9651106284,538.66913,363.2288718920235,563497.5441168769,379768.4190197901,481.84759,237.082020349577,500505.6605749594,245134.6512641369,2711.11253,1272.8650552573831,2797417.133581191,1291712.7415903122,897.18426,411.3981231674578,925628.2871655234,416895.6276499936,1452.15064,618.6054648940055,1481085.3432476306,615209.8257288026,0.37875,100000,0,1043356,10926.899513012517,0,0.0,0,0.0,46979,491.3337173378018,0,0.0,43563,452.15478871026863,1113057,0,39933,0,0,0,0,0,80,0.8168822328114363,0,0.0,0,0.0,0,0.0,0.04804,0.1268382838283828,0.310158201498751,0.0149,0.3513351933041052,0.6486648066958948,23.093645494585147,4.148692956501706,0.3061385099685205,0.2751836306400839,0.2051416579223504,0.2135362014690451,11.427298525803444,6.069300039267022,15.980386597147994,11239.186689969436,43.98964796738644,12.965593574616342,13.399575814233325,8.72461891153919,8.899859666997585,0.5873557187827911,0.8169685414680649,0.7189374464438731,0.578005115089514,0.1117936117936117,0.7547332185886403,0.918141592920354,0.8487654320987654,0.7511737089201878,0.1560693641618497,0.5139622641509434,0.7403685092127303,0.6690391459074733,0.5131810193321616,0.0998439937597504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001996250696661,0.0043311998539361,0.0064572461266676,0.0085714285714285,0.0108832871803225,0.0130051470213524,0.0151430116633843,0.0172889461099871,0.0197346210113865,0.0220077457429151,0.0243471834455575,0.0263212009047912,0.0284505127888298,0.0303020926802603,0.0324637082192488,0.0342906839500548,0.0363381742738589,0.0383152117419596,0.0400687607438662,0.0420804226837494,0.0565115451443404,0.0706799416683277,0.0841237460304107,0.0969047393215087,0.1088215402823569,0.1242792945565541,0.1348897535667963,0.1451234343994708,0.1545348426271994,0.1637217600653468,0.1750367043786164,0.1849425748587417,0.1953514232450641,0.2050464196069404,0.213454389003497,0.2238728028266038,0.232443678829504,0.2399278548078007,0.246926637326146,0.2526850874374627,0.2579833491802138,0.2637132038311391,0.2686476868327402,0.2728911319394376,0.2771718599578362,0.2813778948279486,0.2854864233503303,0.2885474931678288,0.2922088040514219,0.294648289727785,0.2918297918297918,0.2889118457300275,0.2860465116279069,0.2834738909426987,0.2810953039290014,0.2770378998023018,0.2734360144514166,0.2743319199290011,0.2747421887024781,0.2744278286970038,0.2748178804846533,0.2764675673540333,0.2763394537621816,0.2770751076312208,0.2779759197644637,0.2791717480993279,0.2794964130773811,0.2849677701983854,0.2897026450959153,0.2937946834143066,0.2983984392722653,0.3010542962572483,0.3023140084598159,0.3045464759194068,0.3039603050629422,0.304383023013762,0.3124905603383174,0.3113131313131313,0.3158038147138964,0.3259315016936394,0.0,2.3938207299317598,50.424266891596616,140.88052419120973,193.93456806310007,fqhc3_100Compliance_implementation,79 -100000,95700,48491,461.8704284221525,4991,50.79414838035528,3950,40.616509926854754,1534,15.621734587251828,77.36399481233721,79.7476427793325,63.33329461681414,65.09686708314509,77.16858226511813,79.55708540485143,63.25817930717228,65.02623572440328,0.1954125472190782,190.5573744810596,0.0751153096418661,70.6313587418066,231.49764,162.84898358872994,241899.0804597701,170165.8971669069,542.68382,366.2380054659112,566394.5977011494,382021.29180788365,486.52186,239.46914837246456,504252.079414838,247084.35496976585,2781.68161,1308.3232362619815,2865179.644723093,1325662.8892507264,905.86185,411.4259541610457,934266.4785788924,417709.7632541087,1495.0423,643.808006889954,1524977.4294670846,640871.3998980243,0.38075,100000,0,1052262,10995.412748171368,0,0.0,0,0.0,47294,493.46917450365726,0,0.0,43948,455.067920585162,1108910,0,39779,0,0,0,0,0,94,0.9822361546499476,0,0.0,1,0.0,0,0.0,0.04991,0.1310833880499015,0.3073532358244841,0.01534,0.3697318007662835,0.6302681992337165,23.27183361782802,4.054483210561622,0.310126582278481,0.2820253164556962,0.2040506329113924,0.2037974683544303,11.328750670397492,6.051492731156216,16.540999457177172,11380.939278020294,45.356563658265735,13.55390273192537,13.947125481664674,8.997587345099653,8.857948099576037,0.5729113924050633,0.77737881508079,0.6930612244897959,0.5620347394540943,0.1180124223602484,0.7447873227689742,0.9054945054945056,0.8626373626373627,0.6844660194174758,0.1494252873563218,0.4980007270083606,0.6889226100151745,0.6213704994192799,0.52,0.109350237717908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417179157252,0.0048171022341213,0.0070555510436124,0.0093196739638595,0.0114674698304808,0.0139576583735762,0.0162287323024195,0.0183524653784876,0.0206601004367258,0.0230086320769207,0.0251348524314457,0.0272365948094362,0.0296338202016046,0.0316743946419371,0.0340674537648613,0.0358978070492871,0.037912924578141,0.0401490152128344,0.041984574125278,0.0439679513226851,0.0585157490182972,0.0731324380619432,0.0863722198908938,0.0990240619215884,0.110776139226496,0.1263718835247097,0.1372611397425293,0.1473085106382978,0.1569422943468745,0.1654947693363059,0.1775290572535514,0.1880571181306793,0.198458008460292,0.2072001137320516,0.2158415841584158,0.2251561046897834,0.2341386695221523,0.2415665902037511,0.2491066060104144,0.2548622319905674,0.260751413670687,0.2662216194729581,0.2716966842591058,0.2763678193975124,0.2806052436640072,0.2842915179121014,0.2880129022578951,0.2905892811785623,0.2943661425969228,0.2966325845801587,0.2941903086776138,0.2907265420330009,0.2883354624963149,0.284298473062518,0.2819571684402149,0.2778954425635009,0.2739835990744967,0.2738149572928213,0.274257022662505,0.275118004045853,0.276015654118524,0.2771228731973751,0.2787629037629037,0.2787250144682366,0.2805894575939239,0.2828597379006098,0.2845069623663537,0.2902370555208983,0.2934862161502805,0.298674741436942,0.3034740683999459,0.3066267904926806,0.3118514814351794,0.3153828675301068,0.3182287268974575,0.3263905325443787,0.3290401717264642,0.3284701114488348,0.3304874690167997,0.330635838150289,0.0,2.4759463100484904,51.84218381291165,147.12282807922836,197.95996436886156,fqhc3_100Compliance_implementation,80 -100000,95661,47942,457.0828237212657,4789,48.63005822644547,3771,38.7514243003941,1430,14.499116672416136,77.31725194233033,79.72531922020916,63.30264576078415,65.08482153559733,77.12752058047687,79.54241631776763,63.22894101195092,65.01696683813367,0.189731361853461,182.9029024415263,0.0737047488332294,67.85469746365891,230.4049,162.00244608403833,240855.6255945474,169350.56719461258,538.25401,362.8263646231544,562022.6947240777,378637.98687359993,478.68526,235.32976167535983,496580.2991814846,243079.36904470943,2660.61425,1262.9644567762405,2734184.7252276265,1273140.210510281,871.32401,402.691318004359,894225.6405431681,404336.665939472,1387.09396,607.3968368581786,1407627.2671203522,597127.7993588686,0.37803,100000,0,1047295,10947.982981570336,0,0.0,0,0.0,47072,491.38102256928113,0,0.0,43189,447.6850545154242,1115618,0,40106,0,0,0,0,0,101,1.0558116682869716,0,0.0,0,0.0,0,0.0,0.04789,0.1266830674814168,0.2986009605345583,0.0143,0.3648946840521564,0.6351053159478436,23.03728077992356,4.050274878248032,0.3054892601431981,0.2802970034473614,0.2129408644921771,0.2012728719172633,11.542848523237376,6.384971582985038,15.409149589957634,11302.54264766758,43.45998603503064,12.932561198687404,13.13850492887439,8.98801862509506,8.40090128237378,0.5873773534871387,0.8060548722800378,0.6961805555555556,0.5865504358655044,0.1185770750988142,0.7715481171548118,0.9341825902335456,0.875,0.7627906976744186,0.1712707182320442,0.5019409937888198,0.7030716723549488,0.625,0.5221088435374149,0.102076124567474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0047660092278051,0.0069415549489024,0.0092979300673718,0.0114971765783181,0.0136294183559132,0.0158121314753228,0.0180614579928081,0.0205336498127724,0.0227035223244472,0.0247360699299264,0.0268401204311682,0.0291108228851419,0.0309812978122358,0.0329054047075591,0.0349194524629853,0.0372455114649417,0.0389739861882756,0.0411065795497107,0.0431664425472475,0.0577455518059197,0.0715677034244423,0.0847628446049509,0.0971305912434104,0.1093140047688379,0.1243980143735645,0.134739501507367,0.1447379633574776,0.1543625595963483,0.1627804663440387,0.1747670096428379,0.1868341273278475,0.1973397770811563,0.2063537242194684,0.2149175470097709,0.2244698892669896,0.2329419904917081,0.2410825768568825,0.2479695085983937,0.2544705208929593,0.2596341844349063,0.2648668241236583,0.2705443786982248,0.2745713566815638,0.2779235291259777,0.2819378373715215,0.2854122357062429,0.2886863911341569,0.2917410310131657,0.294377938445735,0.2925079595373393,0.2891020626621104,0.28678318242437,0.2845495664198669,0.2820957977207977,0.2785395115382261,0.2755495199595755,0.2759179530833074,0.2756626178081726,0.2760899690864513,0.2776326591536682,0.2790098191621244,0.2794612091469144,0.2798948751642575,0.2801132546309626,0.2812475653777235,0.2815181985554454,0.2845779524611641,0.2900931059734282,0.2956692913385826,0.2985202950359745,0.3040729227040413,0.3072545340838024,0.3118190072639225,0.314118085304526,0.3185954269715352,0.3232307925443249,0.3267306922769107,0.3312068048910154,0.3214152700186219,0.0,2.6029145130943965,51.3812172309734,137.3623395178079,186.04781054890745,fqhc3_100Compliance_implementation,81 -100000,95865,48183,459.4899076826788,4843,49.4653940437073,3798,39.11750899702707,1505,15.427945548427475,77.4717338221379,79.7572303389768,63.40399372213196,65.09038536761601,77.28108640332061,79.56710662176279,63.33298634859717,65.02112614832592,0.1906474188172922,190.12371721400712,0.0710073735347833,69.25921929008894,231.066,162.50135559325858,241032.7022375215,169510.61971862367,538.84255,362.2894044226715,561597.0062066448,377428.4925913228,479.86172,235.1098324364093,496668.36697439104,242357.109921352,2694.01943,1239.3227586825765,2779244.6878422783,1261801.7510901536,872.95984,390.36095260163614,897662.8592291243,394247.7573688378,1457.44824,614.1345668517514,1495060.2618265268,619653.5034651749,0.37946,100000,0,1050300,10956.031919887342,0,0.0,0,0.0,46892,488.6454910551296,0,0.0,43374,448.6308871851041,1120011,0,40186,0,0,0,0,0,89,0.9283888801961092,0,0.0,0,0.0,0,0.0,0.04843,0.1276287355716017,0.3107577947553169,0.01505,0.3497926130752518,0.6502073869247482,23.64688749104603,4.106197890373564,0.3088467614533965,0.2701421800947867,0.2180094786729857,0.2030015797788309,11.189209431353234,6.010133418137723,15.8976472181285,11237.926912180435,42.99303669556007,12.524419178840446,13.1553871693714,9.012299202891972,8.300931144456248,0.5724065297525013,0.7923976608187134,0.6879795396419437,0.5688405797101449,0.1076523994811932,0.7483811285846439,0.9333333333333332,0.8488372093023255,0.7294117647058823,0.0925925925925925,0.5023923444976076,0.7004830917874396,0.6212303980699638,0.5273556231003039,0.1116584564860427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023180483854641,0.0045587624479541,0.0067533310349023,0.0089930978481526,0.0113100560930005,0.0133690111611912,0.0157586993725042,0.0177174389783657,0.0198925719420787,0.0219156508222204,0.0239965587521379,0.0260394232149816,0.0284041296419949,0.0303114485909189,0.0320369435024172,0.0341174283885091,0.0360578414944454,0.0379716663384908,0.0399642823768832,0.0422186378063374,0.0566393827224857,0.070464642241154,0.0836564458323727,0.096180719726819,0.1079668215975801,0.1231512511761161,0.1341398761557384,0.1443752991862135,0.1543380555347973,0.1639249391818756,0.1753623344344139,0.1855514129788728,0.1956396642888939,0.2048054670101742,0.2134252802881395,0.2228276487101836,0.2312121347113328,0.2383143998922365,0.2461108217658114,0.2529832662765179,0.2584316350792954,0.2638275045770993,0.2696025778732546,0.2743593421304264,0.2786809722979936,0.2810228404855909,0.2847868967066989,0.2887411504986171,0.2903825545814881,0.2932986234370686,0.2902693345142719,0.2871380655760148,0.2832698021189528,0.2813819853469329,0.2787633495324894,0.2756710694503622,0.2722641509433962,0.2730695877549024,0.2731387306753458,0.2744605144364389,0.2744441965945423,0.2762235022138631,0.2777858522102028,0.2790265075182142,0.2814647485435739,0.2831794501470057,0.2856901598739023,0.2909750876430987,0.2961712099803563,0.3006276069075742,0.3040878257765084,0.3083716555183946,0.3144759770973363,0.3190685014365643,0.3195760247631554,0.3212429111531191,0.3303638834365091,0.331013916500994,0.3327952649986548,0.3399327605528576,0.0,1.9760438777974416,46.9392113892194,136.74682942208418,203.06517064718423,fqhc3_100Compliance_implementation,82 -100000,95732,48387,462.63527347177535,4714,47.93590439978273,3742,38.4302009777295,1506,15.292692098775747,77.34438518034166,79.6958096290098,63.33412346583962,65.0718946375707,77.15470420426917,79.51229163238332,63.26299137047987,65.00568302671698,0.1896809760724949,183.5179966264775,0.0711320953597507,66.21161085371341,230.53338,162.24233841611112,240811.2021058789,169475.5551081259,541.4508,365.2734198767177,564920.7579492751,380892.0280223349,481.92284,236.97438472004683,498780.1675510801,244046.3471460556,2692.44967,1261.2894737639654,2770228.99344002,1275516.6725209658,899.41965,407.29739588619856,923619.6882964944,409557.24928571255,1465.3339,618.2498663030441,1490772.009359462,613218.6702877928,0.3791,100000,0,1047879,10945.963732085404,0,0.0,0,0.0,47337,493.774286549952,0,0.0,43476,449.6302176910542,1111260,0,39913,0,0,0,0,0,78,0.8147745790331342,0,0.0,2,0.0208916558726444,0,0.0,0.04714,0.1243471379583223,0.319473907509546,0.01506,0.3681753602597929,0.631824639740207,23.015978080115687,4.139415884231996,0.3099946552645644,0.2653661143773383,0.2068412613575628,0.2177979690005344,11.887864851149844,6.630095559211966,15.998149009120088,11206.074753974828,42.91395033180024,12.18455316436461,13.097406469897164,8.776111190192186,8.855879507346284,0.5900587920897915,0.8197381671701913,0.7137931034482758,0.603359173126615,0.1214723926380368,0.7670157068062827,0.9382151029748284,0.8823529411764706,0.7307692307692307,0.1797752808988764,0.5119414483821263,0.7266187050359713,0.6487455197132617,0.5565371024734982,0.1051805337519623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0040858536189713,0.006077577897503,0.0082365964880208,0.0102995302682148,0.012439811468651,0.0147163734942214,0.0171233226185009,0.0191578710751908,0.0213752174357924,0.023547012050168,0.0256386571009227,0.0277712088341438,0.0298552038063067,0.0317935175060347,0.0341641865079365,0.0359800846712004,0.0379665446399867,0.0398977354215815,0.0419973751640522,0.0571586661933894,0.071255899620122,0.0839941262848751,0.0964023934967557,0.1081574118986861,0.1238210041026942,0.1341733753354334,0.1435471858708373,0.1532579325665096,0.1628502819407817,0.1749547920433996,0.1856971348843246,0.1958733747880158,0.2046383527508798,0.2130046075854712,0.2224448232351183,0.2311193921610193,0.2386151528099489,0.2461152825352176,0.2523780634379185,0.2577914493541337,0.2627707349019975,0.2690237641798459,0.273120728929385,0.2767564417028924,0.2808866861461454,0.2849862258953168,0.2886752816856579,0.2914352301417751,0.2944303730673843,0.2925323758421753,0.2890543436452552,0.2865399218156762,0.2835424780037501,0.2806603773584906,0.27718788249694,0.2723303965454516,0.2719216341507363,0.2723460115587227,0.2724650583103356,0.2737797363408896,0.2746811525743977,0.2750996057489726,0.2751242561347984,0.2764044405015944,0.2774663968031553,0.2786643612347289,0.2834073981348188,0.289447972642892,0.2930182938875499,0.2954072868637555,0.2984846084798563,0.3023808035993251,0.3048798798798798,0.3095171643873848,0.3132022471910112,0.3202911737943585,0.3199592668024439,0.3271825943266317,0.3266563944530046,0.0,2.503217344095462,49.4695719443182,134.0569987514013,191.90857327818776,fqhc3_100Compliance_implementation,83 -100000,95675,48470,462.3882937026392,4862,49.55317481055657,3842,39.60282205382806,1450,14.779200418082048,77.28108161739658,79.66879326450494,63.29287913429015,65.05583028093395,77.0915145424178,79.48317074609642,63.22012621448841,64.9874476373063,0.1895670749787825,185.62251840852184,0.0727529198017435,68.38264362764335,229.62698,161.67167666787807,240007.2955317481,168980.06445558197,541.99488,365.5381043396771,565970.013065064,381536.4874206189,487.27757,239.21037478643183,506262.2942252417,247708.171554374,2728.07256,1280.1716133516718,2809718.933890776,1296365.4490218677,878.91883,401.0193345664965,902362.529396394,402861.1739154368,1405.77932,607.7104550575384,1432962.8847661354,602634.8994558706,0.38089,100000,0,1043759,10909.422524170368,0,0.0,0,0.0,47152,492.27070812646986,0,0.0,43946,456.2738437418344,1113108,0,39899,0,0,0,0,0,106,1.1079174287954012,0,0.0,1,0.0104520512150509,0,0.0,0.04862,0.1276484024258972,0.2982311805841217,0.0145,0.3618239242005527,0.6381760757994474,23.322795722090305,4.043936549972809,0.3086933888599688,0.2787610619469026,0.2116085372201978,0.2009370119729307,11.282940934818283,6.03898710550988,15.577480633270063,11341.816193565175,44.22153146751856,13.193434529436542,13.479898033044536,9.079664082911677,8.468534822125806,0.5812077043206664,0.7973856209150327,0.693929173693086,0.5891758917589176,0.099740932642487,0.7470288624787776,0.9190371991247264,0.8579710144927536,0.7323232323232324,0.1067415730337078,0.5078828828828829,0.7068403908794788,0.6266349583828775,0.5430894308943089,0.0976430976430976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374664438028,0.0041565709303622,0.0063630920364939,0.0086862878564679,0.010831316233753,0.0130239094130585,0.0153863409262393,0.0177032711234532,0.019923332481472,0.0221189572052938,0.024464267404901,0.0267056830432773,0.0288567344378284,0.0310748433893834,0.0329751989348855,0.035226849745647,0.0370945854957166,0.0391617537158515,0.0412778662006262,0.0434025787218962,0.0584560091105701,0.07282722513089,0.085823754789272,0.0981302019213569,0.1104381864798421,0.1261492884727292,0.1363703923900119,0.1465350120363861,0.1569543646550618,0.1657807986771038,0.1769026663215117,0.1875433500953702,0.1981071455798908,0.2080417857494826,0.2163656996793847,0.2251538845450008,0.2338042652121429,0.2415626548911819,0.2493721947616612,0.2560430235758187,0.2606217856646434,0.2663941147529461,0.2719039320981068,0.2760289103395284,0.2796399902700073,0.2839242769932786,0.2874245498033912,0.2904762511304436,0.2936891630915194,0.296807695356888,0.2934514419771063,0.2901243921590236,0.2877331187440882,0.2837564039480159,0.2809030568205494,0.2779650628256206,0.2743931385891066,0.2741975207290041,0.2744448240519303,0.2750401141023355,0.27535010858983,0.2761963165911653,0.2764623225184036,0.2764329500201351,0.2772498737039621,0.2788496541681834,0.2815387677347815,0.2862116554795809,0.2910897994768962,0.2958628841607565,0.3003567074547342,0.3041418872690911,0.3087298613713001,0.3103965219998501,0.3147273905396649,0.3176158635001153,0.3221204385042799,0.3209974272709281,0.3227696404793608,0.3248865355521936,0.0,2.149401051630503,51.38923859777434,141.0920548716702,193.8154233816336,fqhc3_100Compliance_implementation,84 -100000,95742,48132,457.7405945144242,4863,49.61250026111842,3872,40.02423178960122,1499,15.395542186292326,77.3612597271838,79.72795259797309,63.34108899169471,65.08974381295704,77.16895059516136,79.5354692522492,63.26895337133844,65.01926466907922,0.1923091320224443,192.48334572388612,0.0721356203562706,70.47914387781873,231.14762,162.58636573611156,241426.22882329597,169815.9470371484,539.09615,363.647348575448,562602.4210900128,379355.2339508216,482.33197,237.1942906158001,501602.1077479058,246019.85291144883,2742.00963,1289.5025609522836,2834295.418938397,1317717.550226154,919.24428,420.8419925477963,946683.7124772829,426590.2275745745,1459.6114,624.1213591354816,1499639.865471789,629417.7466339862,0.37896,100000,0,1050671,10973.919491967998,0,0.0,0,0.0,47031,490.7459631091892,0,0.0,43756,454.8265129201395,1113589,0,39940,0,0,0,0,0,89,0.9295815838399032,0,0.0,1,0.0104447368970775,0,0.0,0.04863,0.128324889170361,0.3082459387209541,0.01499,0.3579980372914622,0.6420019627085378,23.52425361733972,4.077401353839439,0.3070764462809917,0.2732438016528926,0.2117768595041322,0.2079028925619834,11.439683110797722,6.202952538252184,15.94967320157614,11272.704822271442,44.40875627269977,12.950209115133076,13.562525422827315,9.053395468453935,8.84262626628545,0.5898760330578512,0.8119092627599244,0.7064760302775441,0.6097560975609756,0.1055900621118012,0.7591178965224766,0.9304347826086956,0.8554913294797688,0.796875,0.0994475138121546,0.5157816561455626,0.7207357859531772,0.6453143534994069,0.552547770700637,0.1073717948717948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.0046536620974937,0.0071644577946459,0.0094177647285916,0.0117766703956066,0.014022117675811,0.0161014010972202,0.0183284831776178,0.0204995552465569,0.022594185094185,0.0247095854736345,0.0268679710368202,0.0291470827205315,0.0313681456223666,0.0337849690940798,0.0358730486922361,0.0380771899303074,0.0401178839009609,0.0422896953311843,0.044145533351393,0.0592325763508222,0.0732549742000983,0.0867658936194761,0.0991914540159185,0.1117130029719874,0.1265551174860211,0.1359636101450504,0.1462496010213852,0.1553906124846478,0.1640978370383073,0.1753490725489563,0.1865063055657704,0.1970759280395673,0.2058974611189438,0.214893476683596,0.2234050794002102,0.2311045701352421,0.2388336423394572,0.2463758259943101,0.2530698190723596,0.2579041673891682,0.2625578244007289,0.2681672557897599,0.2719527080391546,0.2765173550513864,0.2807552365030976,0.2843339200778997,0.2873163235499562,0.2906996289160988,0.2929841441393945,0.2898768883393366,0.2864708384211176,0.2842554745550826,0.2813009067712312,0.2797260842498443,0.2760833689872257,0.2724102564102564,0.2727391659852821,0.2734198309725033,0.2740352125200071,0.2747396319384822,0.275102105242389,0.2764125710464727,0.2769830659536542,0.2788205681409565,0.2791787024748224,0.282240382698824,0.2861858651911468,0.2901824804735385,0.2943949296890473,0.2985189546628017,0.3004206098843323,0.3028304821150855,0.3060088741821463,0.308319436724106,0.3073866292660122,0.3088279602289846,0.3169366126774645,0.3248758963044677,0.3338582677165354,0.0,1.437850817005069,51.85993436598699,140.92069944379992,198.0397781954716,fqhc3_100Compliance_implementation,85 -100000,95668,48233,460.0388844754777,4756,48.84600911485554,3755,38.84266421373918,1447,14.842998703850816,77.2430810454354,79.6484871150047,63.27207635196621,65.05036818184668,77.0606444616079,79.4659681584289,63.2037910997846,64.98387820430767,0.1824365838275099,182.5189565758052,0.0682852521816173,66.48997753900687,230.1376,161.87575716009266,240558.59848643225,169205.75026141724,540.38609,363.83151054769047,564458.732282477,379909.4791860293,475.1984,232.45182048106912,494293.8286574403,241064.3203540986,2665.98378,1236.735572614703,2758924.4574988503,1264957.6061114506,862.97429,387.25869116864806,890785.2573483296,393528.49559795,1411.28734,599.698919684511,1449158.5065016516,604633.3085906643,0.37951,100000,0,1046080,10934.481749383283,0,0.0,0,0.0,47142,492.3485386963248,0,0.0,42941,446.397959610319,1113977,0,39955,0,0,0,0,0,92,0.9616590709537148,0,0.0,0,0.0,0,0.0,0.04756,0.1253194909225053,0.3042472666105971,0.01447,0.3459753883397216,0.6540246116602784,23.42750985808372,4.0446910629133495,0.3057256990679095,0.2758988015978695,0.2077230359520639,0.2106524633821571,11.262948941519165,6.057164990729654,15.566271978511358,11340.676138944027,43.12243897144107,12.639962236823155,13.067787994132246,8.740565065118265,8.674123675367403,0.5762982689747004,0.8243243243243243,0.6942508710801394,0.55,0.1061946902654867,0.7630878438331854,0.931924882629108,0.8640483383685801,0.7188940092165899,0.1372549019607843,0.4961948249619482,0.7491803278688525,0.6254589963280294,0.4849023090586146,0.0987460815047022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.0044935386363175,0.006639391693654,0.0089413629482112,0.0112192690691973,0.0134731910993431,0.0156716798368595,0.0178381800359418,0.0202470549738219,0.0224158764617936,0.0246843945811241,0.0269365455908479,0.0289904256522588,0.0309570413103945,0.0334523760373229,0.0353734321845498,0.0373949884500243,0.0395121951219512,0.0412818272591113,0.0432203654862551,0.057521707783455,0.0708360391310723,0.0841539462909694,0.096683541905674,0.1084544658031689,0.1239679044755896,0.1348664294439428,0.1457260720795625,0.1559875466732285,0.165311798627592,0.1776293787017358,0.1883332249463484,0.1985559959925077,0.2071982305536089,0.2163338622939257,0.2253552373240452,0.23326961984284,0.2411007065345999,0.2481361941994727,0.2542211625534451,0.260113531047266,0.2660712613540594,0.2727972342591935,0.2762574053198379,0.2802904084933539,0.2842266311321686,0.28763999899777,0.2909350391192436,0.2944701716153636,0.29771123503449,0.2937856911970692,0.2908253094910591,0.2890338763316611,0.2859599930623807,0.2833885907137866,0.2792029773482609,0.2760548656867714,0.2751002036927524,0.2752522234930606,0.2751387921955051,0.2754979556622529,0.2761589928342373,0.2762722513089005,0.2774277159583501,0.2793147299469731,0.2800333559180695,0.2816282256222882,0.285678391959799,0.2898759026852696,0.2951778467414657,0.2977109699821812,0.303134962805526,0.3071113908118313,0.3113731456827691,0.3156951518581399,0.3151235662764574,0.3191489361702128,0.3236548223350254,0.332145793368046,0.3374327440430438,0.0,1.609075816482922,49.75902757735093,136.3833658918357,194.5990099141591,fqhc3_100Compliance_implementation,86 -100000,95822,48315,460.8440650372565,4754,48.59009413287136,3734,38.43584980484648,1412,14.380831124376448,77.44904619750217,79.7751182554412,63.38601454967061,65.10668982325203,77.27363237866808,79.6024027885686,63.320875117991285,65.04461301793829,0.1754138188340874,172.71546687260297,0.0651394316793272,62.07680531373683,231.74426,162.9979160414871,241848.69862870735,170104.89870957306,543.66982,366.31717149416863,566859.9277827638,381774.40618455946,481.91562,236.1637337183973,499370.6768800485,243698.65550973968,2629.39245,1225.9011653582625,2711338.2104318426,1246652.3505648617,831.29828,376.4257092009108,856125.1800212895,381421.5560676568,1370.99518,574.230938680638,1398911.4817056626,574834.2698388804,0.3805,100000,0,1053383,10993.122664941246,0,0.0,0,0.0,47311,493.1852810419319,0,0.0,43578,451.2742376489741,1113536,0,39911,0,0,0,0,0,97,0.9914215942059236,0,0.0,1,0.0104360167811149,0,0.0,0.04754,0.1249408672798948,0.2970130416491375,0.01412,0.354317998385795,0.645682001614205,23.49264995520701,4.116797875323912,0.3034279592929834,0.2771826459560793,0.2220139260846277,0.1973754686663096,11.595674029269764,6.442903944007658,15.052789944061107,11281.85093849736,42.78051678500142,12.655803789746129,12.797118015115434,9.238878778266333,8.08871620187353,0.5886448848419925,0.8144927536231884,0.6990291262135923,0.5958986731001207,0.0936227951153324,0.7595978062157221,0.918032786885246,0.8745980707395499,0.7602040816326531,0.1125,0.5178030303030303,0.7417763157894737,0.6326034063260341,0.5450236966824644,0.0883882149046793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022178787357078,0.0046526714849016,0.0070013089403671,0.0092949076096341,0.011663971851897,0.0137863622941973,0.0160680240204724,0.0182488084181304,0.0202452733776188,0.0226130910355977,0.0247886457959727,0.0266625615763546,0.0288345891713525,0.0307960009472524,0.0329218106995884,0.0349925613687081,0.0369185865987704,0.0388842803815844,0.0405514919790541,0.042516422540783,0.0566740382208128,0.0702904460196976,0.0839071424828381,0.0966999716329939,0.1089077613638758,0.1240595147518809,0.1344837089012782,0.1451539156786644,0.1548119386427154,0.1643039167398333,0.1762821202021288,0.1869437483798496,0.1970629416170101,0.2062988174717458,0.2149449632905696,0.2253477554718315,0.2333459500378501,0.2408090916230073,0.2483736296061638,0.2546639873952458,0.2607331533900847,0.2662345232821134,0.2701826370957282,0.2739443011369065,0.2776506760600888,0.2821762726848554,0.2846123171248411,0.2882459496092117,0.2917279079961837,0.2954655881078383,0.2921489817792068,0.2894351249572064,0.2866850681649409,0.2827736890524379,0.279577194484632,0.2762705678396545,0.2722248390642173,0.272332041554043,0.2738645404838081,0.2735184857597735,0.2745520378794912,0.275523380943064,0.276296403892843,0.2775943448489817,0.2781204601205077,0.2793110550435096,0.2805262861328675,0.2851729921113112,0.2882369299221357,0.2937216220447785,0.2986539413856751,0.3016415868673051,0.3045051790839885,0.306507363991584,0.3099524298106519,0.3145830896971114,0.3214339508962193,0.3248445959494686,0.3246612466124661,0.3269876819708847,0.0,2.026253778132228,47.50543094628376,143.69366027804912,187.4656323542388,fqhc3_100Compliance_implementation,87 -100000,95803,48083,457.2299406072879,4842,49.24689205974761,3852,39.57078588353183,1460,14.811644729288227,77.3497797498425,79.68274211537047,63.33168066437421,65.0598371389884,77.15966063019965,79.4971360247533,63.25861645504537,64.99082639315732,0.1901191196428442,185.6060906171706,0.0730642093288409,69.01074583107913,230.9879,162.55983566446167,241107.16783399263,169681.3624463343,539.68862,363.9136157469262,562686.9409099923,379211.4711928919,486.10067,238.8477022569273,503180.7041533146,246077.15213989603,2701.71121,1282.5877755950798,2771891.7152907527,1290810.8200553833,865.88995,400.866503961994,883478.847217728,398138.02945039934,1417.1374,614.7966572902668,1437886.7467615835,607944.3768521699,0.37807,100000,0,1049945,10959.41671972694,0,0.0,0,0.0,47112,491.0806550943081,0,0.0,43884,453.8480005845329,1111562,0,39878,0,0,0,0,0,88,0.9185516111186498,0,0.0,3,0.0313142594699539,0,0.0,0.04842,0.1280715211468775,0.3015282940933498,0.0146,0.3658055610333268,0.6341944389666733,23.317052477141843,3.991666751428901,0.3063343717549325,0.2793354101765317,0.2095015576323987,0.204828660436137,11.39469670234415,6.267296634036756,15.675385662532074,11331.8970237021,44.3622610215191,13.332925507312066,13.367984238832396,8.99220520747389,8.669146067900753,0.5916407061266874,0.8113382899628253,0.7254237288135593,0.5935563816604709,0.0899873257287705,0.7482993197278912,0.8938053097345132,0.9115853658536586,0.7536231884057971,0.1111111111111111,0.522795216741405,0.7516025641025641,0.653755868544601,0.5383333333333333,0.0833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025528293859027,0.004876960669999,0.0073477175391235,0.0097837019577563,0.012155426711423,0.0143169899699607,0.0164151712887438,0.0185069873319518,0.0208918916156464,0.023009447384313,0.0250945659193652,0.0272809413310881,0.0293872682590768,0.0314791168959551,0.0335664624208289,0.0356279319680092,0.0377620205993478,0.0396332292628281,0.0417367994514057,0.0438530734632683,0.0582350056857897,0.0719207804837242,0.0849605383139955,0.0972928664508806,0.1093367906231554,0.1243034628601638,0.1350935630330547,0.1458952006897212,0.1550886113811411,0.1639275676371516,0.1754817017974912,0.1870873471154887,0.1964730583870932,0.2059231887702113,0.214143481082984,0.223465667970438,0.2316036156678942,0.2393382518331908,0.2473280537339172,0.2545138133565369,0.2599266704449507,0.2655904803095302,0.2710609715718272,0.2757642496349317,0.279368584532505,0.2831017635403719,0.2871259916297083,0.2913399834805261,0.2938430906081919,0.2962821357943309,0.2932359154455792,0.2911564813031395,0.2883191123877108,0.2850180766449747,0.282546707458342,0.2789431006257554,0.2753856853818917,0.2762681604507559,0.2766846269267494,0.2765031998146068,0.2762796434377978,0.2763059333727577,0.278107002754361,0.2792425961773802,0.279771302808478,0.282100461355036,0.2831325301204819,0.287142278827889,0.2921710777342259,0.2943546809592739,0.298640496983884,0.3017869307760834,0.3075724524774073,0.3091239219246482,0.3120639940470653,0.3118956075964115,0.3106106408706167,0.3153617443012884,0.3241434689507494,0.3333333333333333,0.0,2.443269638114341,50.75325854746291,142.52167260360662,195.24430289818235,fqhc3_100Compliance_implementation,88 -100000,95811,48659,463.37059419064616,4812,49.32627777603824,3856,39.78666332675788,1493,15.269645447808706,77.41775944651599,79.74686654394361,63.37436231324406,65.09560997964464,77.22401572977951,79.55529630329403,63.301414661589504,65.02586916258544,0.1937437167364777,191.5702406495825,0.0729476516545588,69.74081705919843,230.38554,162.13901381427442,240458.33985659265,169227.97362961917,540.60468,363.9997792108012,563766.5508135809,379440.24058579694,484.86611,237.44449687773005,503504.1070440764,245798.1818962437,2755.98845,1277.7124644701294,2844625.2831094554,1301719.4311507968,900.06823,405.4706836024661,926143.584765841,409953.2664305858,1457.5196,622.2249422962352,1492229.0342445022,623725.9760312347,0.38142,100000,0,1047207,10929.92453893603,0,0.0,0,0.0,46958,489.630626963501,0,0.0,43827,454.86426401978895,1119400,0,40165,0,0,0,0,0,91,0.9497865589546084,0,0.0,1,0.0104372149335671,0,0.0,0.04812,0.1261601384300771,0.3102660016625104,0.01493,0.3607733705401634,0.6392266294598365,23.390576797044723,4.058410629263509,0.3073132780082988,0.2697095435684647,0.2074688796680498,0.2155082987551867,11.278853317273947,6.064936722577673,15.939915939004964,11337.753693796514,43.93671624998814,12.614554288414189,13.445033681424684,8.869026120852883,9.008102159296383,0.5718360995850622,0.7875,0.7088607594936709,0.58125,0.0974729241877256,0.7393238434163701,0.9105504587155964,0.8501529051987767,0.7037037037037037,0.1337209302325581,0.5029282576866764,0.6986754966887417,0.655011655011655,0.5433715220949263,0.0880121396054628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681477131198,0.0045513060930737,0.0070623332081866,0.0093132375941987,0.0115004474090946,0.0136609796815831,0.0157170522882478,0.0180554421490977,0.020237742367407,0.0222708943155998,0.0244674962586358,0.026597273548493,0.0289576480263157,0.0311222756426755,0.0332955248504846,0.035366055197488,0.0373808562824055,0.0398623220709746,0.0416679652195593,0.0435814679854242,0.0578132988324655,0.0717578798808217,0.0847274633123689,0.0970103785873356,0.1093076898770841,0.1249115170468352,0.1355903476621258,0.1457017711722055,0.1554728093292221,0.1645367583259241,0.1757936849350425,0.1876714992545859,0.1977241633911702,0.2068152289030342,0.2158189607821597,0.2248523328097692,0.2336911091048918,0.2416933355791365,0.2486635861194165,0.2559913103132861,0.2613963157590807,0.2668580631608431,0.2716272370968504,0.2758785674983852,0.2798438238896096,0.2833802886212369,0.2868699983770084,0.2893063400393476,0.2931838437592839,0.2964838663001012,0.2937348201226467,0.2911394142351294,0.2887662228215068,0.2852246050149064,0.2821997748681794,0.2780271111925261,0.2756522424529045,0.2748324889687857,0.2754791939016315,0.2758412608263524,0.2765195996197506,0.2766153544465143,0.2770798668885191,0.2783674192905098,0.2786799121215015,0.2794828700711053,0.2811229100768188,0.2864706615173788,0.2918462393994161,0.2962264150943396,0.2982218611788067,0.3012422360248447,0.3062433730430986,0.3102046959662853,0.3155875748502994,0.3177083333333333,0.3216320246343341,0.3169993950393224,0.3171127331711273,0.3160106992739778,0.0,1.79066596138597,49.0983448641832,145.55140305491065,195.39857420181613,fqhc3_100Compliance_implementation,89 -100000,95732,48469,463.4604938787448,4888,49.95194919149292,3853,39.76726695357874,1405,14.352567584506748,77.3893283971574,79.7507963664068,63.35181630130408,65.0939756731334,77.21164829739848,79.57474542241981,63.28434823301132,65.0289276487054,0.1776800997589163,176.0509439869935,0.0674680682927544,65.04802442799473,228.93134,161.04678953423877,239137.50887895373,168226.47550896122,538.92917,363.7957923745934,562472.9035223331,379531.5906641389,486.02161,238.30807878432023,504457.0572013538,246396.0353099022,2692.93096,1263.065895279557,2782839.94902436,1289227.5052015602,888.37183,404.31540493117296,917261.3963982784,411634.6159394687,1366.07662,584.1906737227685,1398062.0273262858,586950.091655423,0.38165,100000,0,1040597,10869.88676722517,0,0.0,0,0.0,46971,490.1495842560481,0,0.0,43960,456.0544018718924,1122766,0,40285,0,0,0,0,0,83,0.8670037187147454,0,0.0,1,0.0104458279363222,0,0.0,0.04888,0.1280754618105594,0.2874386252045826,0.01405,0.3619140625,0.6380859375,23.28356100319473,4.025447669220057,0.3158577731637685,0.2810796781728523,0.2094471840124578,0.1936153646509213,11.102967743317826,5.986012395956959,14.97126554178115,11344.770428632768,44.14879159203154,13.220606603707989,13.79974763084146,8.951994059803877,8.176443297678217,0.5878536205554113,0.7903970452446907,0.686113393590797,0.5923172242874845,0.128686327077748,0.755632582322357,0.9146608315098468,0.8434782608695652,0.7374301675977654,0.1791907514450867,0.5161170804001483,0.6996805111821086,0.6238532110091743,0.5509554140127388,0.1134380453752181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0046114709071928,0.007009322094073,0.0093620218717951,0.0113557805701272,0.0136697677259125,0.0159791293005054,0.0180710597742903,0.0203132823117087,0.0223372796201741,0.0243877446459678,0.0263060696844092,0.0282672804430698,0.0303342219843336,0.0323508786403762,0.0342668182287899,0.0361616663560883,0.0382333416313998,0.0400162143621831,0.0418554746502494,0.0559581488597443,0.0707768290641218,0.0844616917510095,0.0972853057448061,0.109603769408342,0.1247501718394755,0.1358323256751309,0.1460857161106261,0.1556030338639034,0.164776016983681,0.1761709917088403,0.1871389940508382,0.1975932689799113,0.2074021430133391,0.2159964794543154,0.2253101462117855,0.233586661756336,0.2417065874997188,0.2489364839877029,0.2552365464560978,0.2616969374660393,0.2672447036002664,0.2721815173717797,0.2769494040495907,0.2811650815217391,0.2850254025660897,0.2883781385524852,0.2916507912316797,0.2953390652272286,0.2979827241125039,0.2951919593134821,0.2918455524312461,0.2894947200134629,0.2861813677478827,0.2826733332347154,0.2795051873067138,0.275531077891424,0.2752649600521767,0.2754658701333967,0.2764224757376293,0.276392197736748,0.2771190765969141,0.2788301415487094,0.2798525689417825,0.2816389917572572,0.2833337632522506,0.2837323407495136,0.2880081995216945,0.2912251540965441,0.2955824863174355,0.2970021124544923,0.2983312342569269,0.301250544391215,0.3052915200958012,0.3089174923604037,0.3141062914292359,0.319377990430622,0.323104335775094,0.3179571663920922,0.3255278310940499,0.0,1.8652589328402995,50.43193796709879,144.2760382917932,193.9197844414234,fqhc3_100Compliance_implementation,90 -100000,95682,48240,460.91218829037854,4663,47.699671829602224,3656,37.72914445768274,1402,14.318262578123369,77.35982293729873,79.7343489842649,63.33991942654043,65.0893911798831,77.1734035543413,79.54936342702918,63.2683597453988,65.02023460755134,0.1864193829574247,184.98555723572,0.071559681141629,69.15657233174954,230.01396,161.73514542795462,240393.9507953429,169033.8051336245,537.37516,362.6377768331837,561157.4172780669,378534.3709717435,475.2243,232.7735249895902,493449.3321627893,240819.31977187825,2579.99538,1213.1132127907906,2665082.5442611985,1236514.8228410685,836.42936,377.0582139062452,864097.5732112624,384009.1712133768,1364.77506,594.1655590404198,1395949.4157730816,596536.6614365336,0.3799,100000,0,1045518,10926.997763424675,0,0.0,0,0.0,46898,489.653226312159,0,0.0,43009,446.2281306828871,1118630,0,40138,0,0,0,0,0,79,0.8256516377166029,0,0.0,0,0.0,0,0.0,0.04663,0.1227428270597525,0.3006648080634784,0.01402,0.3609115171422706,0.6390884828577295,23.43661019678021,4.023459550669969,0.3178336980306345,0.2666849015317287,0.2051422319474836,0.2103391684901531,11.2279247476811,6.138874442221067,15.168099569952046,11267.79729647661,41.93525920650559,12.024223189930929,13.142948904886294,8.25782982725772,8.510257284430658,0.5768599562363238,0.798974358974359,0.6867469879518072,0.5813333333333334,0.1248374512353706,0.7302452316076294,0.9148418491484184,0.8612903225806452,0.7010309278350515,0.1344086021505376,0.5107632093933464,0.7145390070921985,0.6232394366197183,0.539568345323741,0.1217838765008576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873860736419,0.0044394441572657,0.0066453609293359,0.0086632406410594,0.0109809663250366,0.0131609751132373,0.015345581267386,0.0174672489082969,0.0194998876381539,0.021513626319666,0.0238900157764255,0.0258938189279302,0.0281623549484546,0.0301894563426688,0.0321409415356686,0.0341894475737687,0.0363265559650503,0.0383749753674144,0.0402852717046647,0.0422602732587829,0.0567912326706296,0.0706657173371306,0.0836901763224181,0.0958628816733654,0.107487527818502,0.1226880264104626,0.1336772385683352,0.1440622902974979,0.1539752621844966,0.1629135092201017,0.174612582710089,0.1856171355554111,0.1958364619720762,0.2053628105505089,0.2139663943271157,0.2239599486066191,0.2328114363512593,0.2409711684370258,0.2484096656045538,0.2545544010619307,0.2603221218883326,0.2656089233935085,0.2705576252143575,0.2744706065430517,0.2791298337516825,0.2823433886127651,0.2859248341930729,0.2885714285714286,0.291754429038469,0.2947353165924481,0.2921266822467563,0.2893164682130938,0.2858047181622519,0.2832429938876715,0.2809714201095809,0.2765843753339745,0.2739979152847531,0.2741702978082102,0.2744997697149583,0.2752414555044727,0.2762582670104248,0.2768551898035971,0.2774854899995824,0.2789724411201638,0.2812395389986131,0.2832238373596813,0.2839450447146444,0.2890023982309154,0.2936951316839585,0.2971210871529005,0.3040577096483318,0.308621144213024,0.3138287864534337,0.317300409028935,0.321025641025641,0.3246753246753247,0.3288834951456311,0.3279569892473118,0.3304140127388535,0.3310657596371882,0.0,1.871837271631367,48.05003380108906,136.60440268791288,183.6806188490088,fqhc3_100Compliance_implementation,91 -100000,95843,48099,458.91718748369726,4789,48.55858017799943,3827,39.25169287271893,1481,14.888932942416243,77.34109898624328,79.63107118874922,63.34986309044478,65.04377878964836,77.14163338957357,79.4395583641214,63.27401887271844,64.97380874515274,0.1994655966697109,191.5128246278215,0.0758442177263418,69.97004449561928,230.6909,162.25044314153126,240696.66016297488,169287.73425449044,536.78532,362.2766641525621,559390.002399758,377312.3797800174,481.02789,236.3041060020199,497678.9958578092,243175.1286583093,2700.06326,1285.3865591453068,2768998.71665119,1292963.2202094127,918.86658,429.4736245887555,940026.1677952486,429408.0626291234,1437.76118,624.6783039658369,1447871.3938420124,610794.7753759735,0.3786,100000,0,1048595,10940.75728013522,0,0.0,0,0.0,46741,486.9630541614932,0,0.0,43519,449.8398422419999,1117346,0,40113,0,0,0,0,0,95,0.9912043654727,0,0.0,0,0.0,0,0.0,0.04789,0.1264923402007395,0.3092503654207559,0.01481,0.36312625250501,0.6368737474949899,23.039329359635268,4.034921215812438,0.2960543506663182,0.2863862032923961,0.2111314345440292,0.2064280114972563,11.627344571083045,6.606604355062278,15.988817487695515,11278.223699179494,44.130665256604246,13.457236936953318,12.88922641402142,9.05415082778403,8.73005107784549,0.594460412856023,0.8184306569343066,0.6990291262135923,0.6051980198019802,0.1227848101265822,0.7743288590604027,0.9385593220338984,0.8934169278996865,0.7383177570093458,0.1978609625668449,0.5130929791271347,0.7275641025641025,0.6228501228501229,0.5572390572390572,0.099502487562189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0046407473832466,0.0069683230380671,0.0093711292058399,0.0116784908421929,0.0137690303671741,0.0160559104292103,0.0179137975006375,0.0202541213000224,0.0220649160673915,0.0242146127608141,0.0263376511491954,0.0282756283187658,0.0303825339012696,0.0321490396504822,0.0338321808236144,0.0359727851766068,0.0380646498135101,0.0400631209576113,0.0420949685796329,0.0571637122002085,0.0711844566841901,0.084523123657885,0.096884977314737,0.1089570784718419,0.1245022760638354,0.1349040712764717,0.1450760676582217,0.1545012165450121,0.1636708575838451,0.1756247712938846,0.1871471523436655,0.1974582536093233,0.2066571928290336,0.2141819782154252,0.2235159867939997,0.2315297320820826,0.2391297010878736,0.2463605314815445,0.2533809703757143,0.2591324465008675,0.264692126002666,0.2692553342480011,0.2739794940590264,0.2781218126183885,0.2823391668720729,0.2851388541406054,0.2881375329018475,0.2916709777547853,0.2957896958345424,0.2933697494820116,0.2897275900931856,0.2866133528567003,0.2840252081406105,0.2818634371052827,0.2788526296455029,0.2755391016817757,0.2755105391030271,0.2759476341233849,0.2769908493454864,0.2776817259264827,0.2776150130651674,0.2784355712306335,0.2794813701518652,0.2803918729791033,0.2811666928022581,0.2823861530126322,0.286753132279796,0.2898743481152217,0.2941199746755302,0.296358517980385,0.29987300243412,0.3073832245102963,0.3099795717636377,0.3122180451127819,0.3158330377202317,0.3163996948893974,0.3203125,0.3272727272727272,0.3258810155361879,0.0,2.610515474468204,51.198708450512285,137.3909978795163,196.376341179464,fqhc3_100Compliance_implementation,92 -100000,95631,47936,457.759513128588,4833,49.30409595214941,3828,39.328251299264885,1458,14.765086635086949,77.31769350596971,79.73991257021186,63.289715480586615,65.0814064878907,77.12479038973794,79.55409243132432,63.2162300516576,65.01367291515315,0.1929031162317755,185.8201388875358,0.0734854289290112,67.7335727375521,229.61026,161.37892532076478,240100.2394620991,168751.68650413022,539.32544,363.5669721570645,563296.6506676705,379509.3967114287,472.61306,231.7404889818836,489725.2355407765,238896.5891654493,2704.56499,1262.6648003737594,2779078.520563416,1271418.431150952,882.92015,401.4966017297571,905333.3333333334,401915.4580938788,1421.8761,613.8789207532284,1441946.481789378,603270.1674844048,0.37738,100000,0,1043683,10913.647248277231,0,0.0,0,0.0,47141,492.2253244240884,0,0.0,42793,443.05716765483993,1118160,0,40105,0,0,0,0,0,78,0.815635097405653,0,0.0,1,0.0104568602231493,0,0.0,0.04833,0.1280672001695903,0.3016759776536313,0.01458,0.3616600790513834,0.6383399209486166,23.42438696269705,4.05964480682849,0.3079937304075235,0.2763845350052246,0.2055903866248694,0.2100313479623824,11.27682473312455,6.082881102629598,15.623301989999488,11272.752719875736,43.75207376118092,12.936428656376275,13.344221830124065,8.670256892179465,8.801166382501112,0.5760188087774295,0.8071833648393195,0.6946564885496184,0.5667090216010165,0.1069651741293532,0.7402482269503546,0.9244851258581236,0.8380952380952381,0.7382198952879581,0.1405405405405405,0.5074074074074074,0.7246376811594203,0.6423611111111112,0.511744966442953,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907934192398,0.0047661542205816,0.0069441624365482,0.0092378987591337,0.0115376397692472,0.0138447432762836,0.0162915961071552,0.0182470192789055,0.0204681055744885,0.022765944361303,0.0247703125801981,0.026723561770603,0.0287200082380805,0.0308128739426449,0.032691016169861,0.0345833850738855,0.036714464939293,0.0385678078776799,0.0406081861607468,0.0425491975096204,0.0567057176000919,0.0703544969663945,0.0841386554621848,0.0968506425110596,0.1085448151316414,0.1240943947803245,0.1348183257702158,0.1446723233701445,0.154658365159344,0.1634012202457678,0.1749946062567421,0.185575276856728,0.1963270374485327,0.2052787208410907,0.2136693739461997,0.2225216831924757,0.2321153201475025,0.2402702702702702,0.2473775032923119,0.253944428530507,0.2601507415511792,0.2654341212263047,0.2704859795377037,0.2745206202256892,0.2781634911177851,0.2821457619599241,0.2844649626543557,0.2877051994455959,0.2908403665924506,0.2940276054999868,0.2916902280744271,0.2888427593412334,0.2866891796820036,0.2830732846883742,0.2803929412810597,0.2773718164307335,0.2742271951450787,0.2742500081787549,0.2749940470115998,0.2753751729520701,0.2754652438230865,0.2764735852014422,0.2783012030729091,0.2786526297164595,0.2788187178999429,0.2805692335455928,0.2813811361140056,0.2855414210363016,0.2910144726338805,0.2955715352273174,0.2999186109603907,0.3038522427440633,0.3062233909341347,0.3095148268316607,0.3152842497670083,0.3202016649079611,0.3234403391883707,0.3308196070648938,0.3368621064060803,0.3406427221172022,0.0,2.74255913867469,48.406506167509534,140.4881445818918,198.4268159651197,fqhc3_100Compliance_implementation,93 -100000,95719,48229,459.79377135156034,4791,49.0393756725415,3763,38.82196847020968,1451,14.80374847209018,77.34880342590687,79.70690807853771,63.338894218876014,65.07758319298212,77.15930465547699,79.51822895413115,63.26755872338264,65.00835547836273,0.1894987704298785,188.679124406562,0.0713354954933791,69.22771461938737,230.4467,162.0424439619372,240753.350954356,169289.73762987205,540.84055,365.1449212820938,564565.3945402689,381011.8380698647,481.34664,236.45873223913557,499807.5512698628,244672.18608062243,2669.83026,1246.9769036244636,2757082.063122264,1270592.070147477,885.12435,403.4974341629614,914464.7144245134,411304.8519044126,1413.49458,605.3797575671856,1445074.958994557,607319.385291875,0.37863,100000,0,1047485,10943.334134288909,0,0.0,0,0.0,47079,491.35490341520494,0,0.0,43446,450.7673502648377,1113012,0,40000,0,0,0,0,0,105,1.096960895955871,0,0.0,0,0.0,0,0.0,0.04791,0.1265351398462879,0.3028595282821958,0.01451,0.3536561067941821,0.6463438932058179,23.240892846852542,4.070092507103055,0.31198511825671,0.2753122508636726,0.2027637523252723,0.2099388785543449,11.081944845064132,5.962323667148282,15.61050952557214,11285.089348327489,43.0805027587737,12.62829777945211,13.2283936526899,8.540417387801236,8.683393938830445,0.5732128620781292,0.7886100386100386,0.692504258943782,0.581913499344692,0.1050632911392405,0.7456445993031359,0.8956916099773242,0.8694362017804155,0.7171717171717171,0.1511627906976744,0.4975143403441682,0.7092436974789916,0.6212664277180406,0.5345132743362832,0.0922330097087378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556337528986,0.004672991931233,0.0069098472933894,0.0092036692774205,0.0115198470798763,0.0136000407186847,0.0159519708073837,0.018097376747984,0.0200500740892136,0.0223939409446804,0.0245167373880245,0.0265920870323805,0.0284994602374955,0.0306384030144235,0.0329269047471684,0.0351208927464352,0.0370151788117868,0.0390740913665556,0.0411212426829141,0.0430845854085481,0.057759583955555,0.0715616300730477,0.0846927749394152,0.0980043552815679,0.1104325538714679,0.1258766408919259,0.1369602818366069,0.1467278476295925,0.1560897435897436,0.1643603441247774,0.1751691154293593,0.1863572433192686,0.1966612289287656,0.2056559205634049,0.2144829634845367,0.223960468440121,0.2319196702818018,0.2379735722486099,0.2453605439088339,0.2510651944838961,0.2570823496736564,0.2632391286554494,0.2686210486466023,0.2722842226266884,0.2769215833798509,0.2803352945520789,0.2835358619225437,0.288092758629448,0.2921612440747581,0.2960676154241103,0.293377599161279,0.2906074464724705,0.2871303834310541,0.2840432129927449,0.2826973557371457,0.27974335472044,0.275990020842544,0.2758823721827876,0.2757645936925277,0.2754735118199943,0.2757115678740627,0.2766384175236447,0.2772564230897564,0.2770577231427044,0.2778761909321587,0.2804757955841194,0.2823656280152108,0.2874221512846994,0.2934691599218532,0.2970851575750404,0.3027913721225304,0.3081089692528277,0.3112080409633984,0.3147088008548965,0.3211225162444674,0.32537703360646,0.32823838196696,0.3256431196406696,0.324660946581788,0.3303947872748179,0.0,1.89367980565117,50.17602514908567,135.6731419473881,191.7768664025413,fqhc3_100Compliance_implementation,94 -100000,95626,48508,462.9598644720055,4833,49.21255725430322,3841,39.466253947671134,1468,14.880890134482254,77.26744378178137,79.68318831436365,63.28338998351626,65.06957081337032,77.07993787944878,79.50257202970646,63.211478826309495,65.00341864703913,0.1875059023325889,180.6162846571908,0.0719111572067632,66.15216633119303,229.0618,161.1771430341837,239539.24664840108,168549.4980802122,533.96398,359.7517179448444,557698.7953067158,375518.1692294512,483.49669,237.96081930032383,501739.2759291406,245845.28507278723,2697.07123,1272.7925699126315,2773403.666366888,1284005.7869915245,876.25866,403.14422466300783,897900.6023466422,403145.5824388839,1424.72004,614.5482850964432,1446624.05621902,605603.532984143,0.38103,100000,0,1041190,10888.14757492732,0,0.0,0,0.0,46535,485.9034153891201,0,0.0,43709,453.1194445025411,1122708,0,40257,0,0,0,0,0,88,0.9202518143601112,0,0.0,0,0.0,0,0.0,0.04833,0.126840406267223,0.3037450858679908,0.01468,0.3556660039761431,0.6443339960238569,23.281772155359644,4.043992629662973,0.3204894558708669,0.2806560791460557,0.1968237438167143,0.2020307211663629,11.555901591877992,6.470700613419383,15.759039958141358,11377.243389603973,44.20079260835231,13.196681035052338,13.94558068904104,8.470093238752776,8.58843764550616,0.5977609997396511,0.8237476808905381,0.7156783103168156,0.5859788359788359,0.1082474226804123,0.7527801539777588,0.9360341151385928,0.849112426035503,0.7262569832402235,0.1311475409836065,0.5299401197604791,0.7372742200328407,0.6651735722284434,0.5424610051993067,0.1011804384485666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797738464344,0.0048468870411681,0.0072084145549057,0.0094707747337614,0.0117295191202352,0.0140546706318491,0.0164263719232416,0.0188057050097499,0.0209002229084439,0.0229188214933076,0.0247992369465554,0.027037577301584,0.0290619920581034,0.0310461725520098,0.0331131296449215,0.0351501116532958,0.0372852215881433,0.0392663635797471,0.0414421536605155,0.0433513355714494,0.0582038231205777,0.0718206003728763,0.0849323125072203,0.0976305812973883,0.1093185801465464,0.1239674672766552,0.1350498709410152,0.1442761678408134,0.1541917608925878,0.1630237478921194,0.1759097478375288,0.187370678915382,0.1978928579202856,0.2079708479695348,0.2165551103086881,0.2255148500592673,0.2341026270562239,0.2417478568053461,0.2489244565525852,0.2554747034893714,0.2600201386558026,0.2653982435419176,0.2705031543314356,0.275547401491714,0.2797826694704087,0.2839484851475377,0.2873358947724115,0.2910096642929807,0.2941542046999417,0.2979630631938852,0.2954475027956293,0.293070478339226,0.290397994535673,0.2881583700599667,0.2862896633722226,0.282802001867185,0.2792199569456756,0.2790674814462884,0.2799372880489426,0.2800925925925926,0.2803560076287349,0.2812913678303993,0.2816703977237065,0.2825248991778258,0.283271375464684,0.2846329917286583,0.2846806458020032,0.2896637998436278,0.2940662260918213,0.2961436328326265,0.3017670426007945,0.3045777469152289,0.3082039911308204,0.312308868501529,0.315824093215561,0.3163471841885938,0.3155548724254534,0.3161554192229039,0.3200339558573854,0.3218986836856801,0.0,2.637419440369765,50.332566389321,142.10820994393873,194.46640561406215,fqhc3_100Compliance_implementation,95 -100000,95841,48700,464.4880583466367,4772,48.68480086810447,3778,38.86645590091924,1426,14.492753623188406,77.40182060844235,79.71623327518662,63.36325590393732,65.07603640005306,77.225878092841,79.54464931382338,63.296945886637744,65.01381207965503,0.1759425156013492,171.58396136323972,0.0663100172995783,62.22432039803039,230.5303,162.26574195874312,240534.1137926357,169307.22963944773,542.28653,365.761553839326,565274.8301874981,381089.5898825408,489.44593,240.29400659711027,507796.4441105581,248354.8069351123,2681.35979,1248.638883061572,2756872.1006667293,1261978.5718654564,866.53587,395.8385171730852,888931.9393578948,397808.77408737794,1389.09098,586.0763078177143,1412713.6611679762,580357.5956045388,0.38152,100000,0,1047865,10933.36880875617,0,0.0,0,0.0,47236,492.28409553322695,0,0.0,44105,457.3095021963461,1112856,0,40011,0,0,0,0,0,98,1.0016589977149657,0,0.0,1,0.0104339478928642,0,0.0,0.04772,0.1250786328370727,0.298826487845767,0.01426,0.360553772070626,0.639446227929374,23.48283296108276,4.10942162649963,0.307305452620434,0.2797776601376389,0.2088406564319745,0.2040762308099523,11.542152158875409,6.288361395555293,15.040365731546856,11347.08439699787,43.05557985955196,12.9429446512522,13.160122066773432,8.65581326626887,8.296699875257453,0.5839068290100582,0.8088930936613056,0.7002583979328165,0.5830164765525983,0.1011673151750972,0.7695004382120947,0.9157427937915744,0.8676470588235294,0.8021390374331551,0.1226993865030674,0.5036025786879029,0.7293729372937293,0.630937880633374,0.5149501661129569,0.0953947368421052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021972903460985,0.0043174654653437,0.0066144544089599,0.0089988522908477,0.0112747938715547,0.0134879270328596,0.0156347143657952,0.0177485201061441,0.0200645992190853,0.0223022834508664,0.0244784993080826,0.0263681898427556,0.0285855253014277,0.0307133149376055,0.0327770787351224,0.034717199479242,0.0366318186523134,0.0386665284114475,0.0407881343609131,0.0427425145961472,0.0574965583413291,0.0712000836295212,0.0849897836223607,0.0976975273628705,0.1102814171967813,0.1251161808196028,0.1359365234064642,0.1456056805136272,0.1548886944272512,0.1638441680859496,0.1753014186304139,0.1871177576556523,0.1978445793996545,0.2071165590552041,0.2154782971894613,0.2249095115282866,0.2333125181203862,0.2416925221457799,0.2491636710023474,0.2555090272533809,0.2611475277170834,0.2667562514606216,0.2720449172576832,0.2760024424994911,0.2798432305190865,0.2845626515365965,0.287922524211184,0.2913867760409391,0.2952228352866686,0.2980684406641298,0.2943862476497448,0.2913162191457542,0.2885071505761161,0.2862835359274976,0.2835536237026523,0.2788874996187978,0.2758832516893222,0.275519362893092,0.2751303875099808,0.2762877820349084,0.2773736208532569,0.2778714890946179,0.2785628195004364,0.2793090449475575,0.2804218947167924,0.2814684863651608,0.2830656522964215,0.2878144093291567,0.2933430363516651,0.2986462625073572,0.3009336520680167,0.3064201822299468,0.311751497005988,0.315935925396706,0.317871634083364,0.3213744903902155,0.3243935513032996,0.3306709265175719,0.333965844402277,0.3364910951117847,0.0,2.143756897567581,49.51402263491492,133.80846286905015,195.8066544903852,fqhc3_100Compliance_implementation,96 -100000,95690,48076,458.3551050266486,4835,49.26324589821298,3892,40.02508099069913,1467,15.02769359389696,77.32145341825886,79.70994721230774,63.3143933609397,65.08078658996529,77.13345617620679,79.52369323111171,63.24320695992871,65.01238291310396,0.187997242052063,186.25398119603176,0.0711864010109906,68.40367686132254,230.35848,161.99912235273416,240734.12059776363,169295.77004152385,540.81144,364.2675525115574,564532.8038457519,380037.1538421542,483.80921,237.3928951278769,500962.5666213816,244615.31380203372,2720.93447,1273.3622800335074,2802623.785139513,1289995.8559526834,876.34228,399.46676109231794,899640.9656181419,401345.2174467694,1421.01978,606.7906573125086,1456989.027066569,609334.8214450509,0.3793,100000,0,1047084,10942.460027171071,0,0.0,0,0.0,47114,491.7023722437036,0,0.0,43884,454.0704357822134,1115387,0,40063,0,0,0,0,0,85,0.8673842616783363,0,0.0,0,0.0,0,0.0,0.04835,0.1274716583179541,0.3034126163391933,0.01467,0.3652432969215491,0.6347567030784509,23.096848870752893,4.088309721390526,0.3052415210688592,0.2890544707091469,0.2081192189105858,0.197584789311408,11.497361975889072,6.219524393616197,15.705482448894816,11319.094824558557,44.66653830209919,13.803856983617266,13.52510097052644,8.899532066806074,8.43804828114942,0.5853031860226104,0.808,0.696969696969697,0.5703703703703704,0.1027308192457737,0.7604690117252931,0.9216494845360824,0.8628571428571429,0.7472527472527473,0.1299435028248587,0.507783543365456,0.721875,0.6276849642004774,0.5191082802547771,0.0945945945945946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797276485369,0.0047561099279991,0.006862108169563,0.0092072235038261,0.0113238645612892,0.013538016461576,0.0156235658851484,0.0177557688380641,0.0199450004600333,0.0221610334309169,0.0243082254277776,0.0264533420963452,0.0287515944533596,0.0310574366795128,0.0332476594514807,0.0352047146401985,0.0372990553529996,0.0393744097470863,0.0413282444335825,0.043335973652395,0.0584161931818181,0.0718943985595997,0.0850300155325133,0.0979280009260331,0.1101404319522257,0.1252196185516818,0.1354859939071638,0.1465867089888478,0.155922022957057,0.1647735195374929,0.1764737567870378,0.1873585988157481,0.1977485316510767,0.2063492063492063,0.2145992145992146,0.2233342928633112,0.2322372677181163,0.2396933866834509,0.2473582766439909,0.2537892664163385,0.2604895307026164,0.2664820074097448,0.2713368111004648,0.276311849465199,0.2801277226039871,0.2837802911892484,0.2869215191139335,0.2911088530420424,0.2944762298363662,0.2969784740965045,0.2939959426598417,0.2903920546517051,0.2868138659475251,0.2835672497766506,0.2816086840466233,0.2780555682982399,0.2741334091699055,0.2736009692524313,0.274024381938296,0.2749190420269741,0.2755427782029981,0.2766326068552753,0.2768691588785046,0.275844387470739,0.2772046828519336,0.2785472533194481,0.2819504970235552,0.2853511579740161,0.290618329425762,0.2947148048664876,0.2980330092697264,0.3008142978003384,0.3047805000944762,0.3098817245326211,0.3150131529500188,0.3170210238745694,0.315894141043292,0.3199513381995134,0.3192539769610532,0.3180778032036613,0.0,2.519578040824717,51.66623746437689,142.13719093622376,195.6972521306742,fqhc3_100Compliance_implementation,97 -100000,95703,48184,459.32729381524086,4832,49.225207151290974,3777,38.85980585770561,1433,14.565896575864915,77.3455376358958,79.73063759949146,63.32130932583449,65.08656389335576,77.15563053626352,79.54517293618999,63.248415105034944,65.01787901121747,0.1899070996322791,185.46466330147385,0.0728942207995473,68.68488213828527,230.88978,162.3251051755783,241256.57502899595,169613.39265809674,537.55407,362.4417177385096,561081.9410049842,378107.1625116345,479.64599,236.2235695943062,497410.0080457248,243993.11747003585,2661.88248,1253.5470960520404,2741640.5546325613,1270294.6637663844,884.46881,403.9115025674333,910003.4377187758,407956.3317411726,1387.60046,603.5065156574202,1412184.1739548396,598276.3722809718,0.37929,100000,0,1049499,10966.207955863452,0,0.0,0,0.0,46923,489.66072118951337,0,0.0,43388,449.5052401701096,1115695,0,39993,0,0,0,0,0,86,0.8986134185971182,0,0.0,0,0.0,0,0.0,0.04832,0.1273959239631943,0.2965645695364238,0.01433,0.3573412698412698,0.6426587301587302,23.59183733432471,4.03917381132078,0.3079163357161769,0.2758803283028859,0.2173682817050569,0.1988350542758803,11.413978014943387,6.219619465287361,15.416500228944711,11320.069639505691,43.19431834136974,12.904113352182383,13.076744599593198,8.970672533648878,8.242787855945279,0.5978289647868679,0.8051823416506718,0.709372312983663,0.5980511571254568,0.1371504660452729,0.7640067911714771,0.9117043121149896,0.8746177370030581,0.7582417582417582,0.1758241758241758,0.5225086571758368,0.7117117117117117,0.6447368421052632,0.5524256651017214,0.1247803163444639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0048176885237588,0.0068226813543834,0.0091973414093782,0.011322942947831,0.0136382155225096,0.0161938365523852,0.0184226381953167,0.0208094731675392,0.0229078769508049,0.0250243577252448,0.0270539538418874,0.0290998487918779,0.0309028708035364,0.0329721362229102,0.0353878918203622,0.0376742837017547,0.0396259509501717,0.0415865059639562,0.0433745233282627,0.0581188904670398,0.0722882739565454,0.0865239294710327,0.0989972959607756,0.1109118717367227,0.1263909456314787,0.1370403777789568,0.1467843980998232,0.1557802912060892,0.1637093571206217,0.1756260038158476,0.186571932978804,0.1969017396416207,0.2059113192681432,0.2146025735577399,0.2237193480115682,0.2321875,0.2400661506615066,0.2471159408782059,0.2542493161033342,0.2600277585010409,0.2645024073295003,0.2699095691234706,0.2742699856390617,0.2780054810467344,0.2818198585920689,0.285084597615034,0.2886083978180895,0.2924944527581402,0.2955265059449517,0.2927264195213515,0.289278037159248,0.286066999607205,0.2837062081864614,0.2809927128139181,0.2776330423389247,0.2736334100873734,0.2729014822700844,0.2744256543878472,0.2748383879757092,0.2765519820493642,0.2783259007853506,0.2788003011796202,0.2799643612874485,0.281490355816461,0.2827656039048707,0.2851436342002379,0.28890625,0.2938487840619657,0.3001301826502031,0.3056997156911413,0.3082785808147175,0.3136889220440134,0.3177028451001054,0.3197723243444993,0.3239336492890995,0.3176703163017031,0.3213134568896051,0.3183662428996484,0.3237767584097859,0.0,2.266440045868896,50.904654985440224,132.324311835189,193.0886691326422,fqhc3_100Compliance_implementation,98 -100000,95612,48260,460.9463247291136,4941,50.52713048571309,3956,40.82123582813873,1476,14.998117391122454,77.23812690061078,79.66846336694024,63.25655152000609,65.05387099858841,77.05060492381782,79.485680572009,63.18464870458457,64.98645907203677,0.187521976792965,182.78279493124217,0.0719028154215237,67.41192655164241,229.32932,161.3732310199345,239854.11872986652,168779.26517585083,540.52097,363.6024896367666,564782.1298581767,379744.1844504525,484.13094,237.4851387380942,503394.4693134753,246029.38483193528,2760.77458,1300.7984428269494,2848818.851190227,1321838.8307188947,877.74138,404.1503585971888,903381.573442664,408055.6505430156,1430.31942,619.3312211380908,1455704.9533531356,614207.9098308316,0.37976,100000,0,1042406,10902.459942266662,0,0.0,0,0.0,47071,491.73743881521153,0,0.0,43761,454.6709618039577,1115773,0,40085,0,0,0,0,0,89,0.9308455005647828,0,0.0,0,0.0,0,0.0,0.04941,0.1301084895723614,0.2987249544626594,0.01476,0.3488596830305373,0.6511403169694627,23.45891590864627,4.012710368298118,0.3106673407482305,0.2833670374115268,0.2093023255813953,0.1966632962588473,11.433976608097668,6.312388262025691,15.907493522961484,11362.625634725286,45.56618223088071,13.648103146378784,14.099621344104715,9.242431855151862,8.576025885245349,0.5861981799797775,0.7814451382694023,0.7192839707078926,0.5966183574879227,0.0835475578406169,0.7563667232597623,0.9076923076923076,0.8831908831908832,0.729064039408867,0.1183431952662721,0.5140388768898488,0.6951951951951952,0.6537585421412301,0.5536,0.0738916256157635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0044627914760682,0.0065997888067581,0.008985292174461,0.0110934701188731,0.0134682192813553,0.0157682696720893,0.0179892126016426,0.0201092404312337,0.0227382135138733,0.0246552573257818,0.0269309412985625,0.0291986579115292,0.0314113996474335,0.033489611301582,0.0353454876559816,0.0373503343181464,0.0393488942212804,0.0409514391297558,0.0430636983871977,0.0577184435569866,0.0718043300567979,0.0854975626155656,0.0983149025803054,0.1100984285231497,0.1250926887142221,0.1357309817254568,0.1458451042055327,0.1556825356061335,0.1647580783774493,0.175964692679558,0.1869416254662156,0.1966786169621549,0.2054962635050733,0.215835583227726,0.2252130303568258,0.2329534652247335,0.2406701693462917,0.2481267126792272,0.2538833335246777,0.2592721493288785,0.2647996623918598,0.2709749356487906,0.2760199483266238,0.2798094727609395,0.2841629294688855,0.2886480247889303,0.2918319199132819,0.2957554517133956,0.2988443433648913,0.295560322149824,0.2933579590092759,0.2899333211159197,0.2871257051931144,0.2845168385696876,0.2805664975552933,0.277801549945324,0.2777887300804994,0.2774594160009579,0.2770456087717418,0.2788987047989818,0.2791887194881112,0.2801130416579443,0.2807718937752663,0.2819429778247096,0.28344205629337,0.2856493063452354,0.2892634481030107,0.2938936631034723,0.2998347367592665,0.3012866980790141,0.3030095398724503,0.3063782031298709,0.3115248360593955,0.3163416898792943,0.3172180801491146,0.3229368750932697,0.3289915137162029,0.336302294197031,0.3419475655430711,0.0,2.194131616705272,51.19089485091245,149.99030991400372,201.17125607560425,fqhc3_100Compliance_implementation,99 -100000,95723,48390,461.6236432205426,4734,48.22247526717717,3732,38.44426104488994,1432,14.625534093164651,77.33641368994157,79.71363813466779,63.332022412709286,65.09038792489432,77.15497530015666,79.53335802082259,63.26302684829166,65.02389792068665,0.1814383897849012,180.2801138451997,0.0689955644176265,66.49000420766527,231.6303,162.86782963416812,241979.7749757112,170144.9282138756,539.47818,364.2985507141557,563031.1001535681,380026.1082432945,481.05849,236.64520005013512,498530.5934832799,244151.1810492649,2126.86932,1009.0320943112692,2192400.4471234707,1024778.49360313,859.51344,391.7599393632922,883632.3140728979,395053.23460634,1392.91482,597.709396819931,1423532.5052495222,596846.6154767856,0.37891,100000,0,1052865,10999.080680714143,0,0.0,0,0.0,47043,490.88515821693846,0,0.0,43372,449.2964073420181,1111869,0,39876,0,0,0,0,0,88,0.9088724757895176,0,0.0,2,0.0208936201330923,0,0.0,0.04734,0.1249373202079649,0.3024926066751162,0.01432,0.3681340872374798,0.6318659127625202,23.21424771386912,4.194521718207937,0.3057341907824223,0.2840300107181136,0.2055198285101822,0.2047159699892818,11.74106434804788,6.318856010342095,15.319571693216794,11212.244414090012,42.760902323980666,13.163531371104868,12.71489028634983,8.466706612631803,8.41577405389416,0.5769024651661308,0.8009433962264151,0.6836108676599474,0.5775749674054759,0.1060209424083769,0.7396021699819169,0.8717391304347826,0.872852233676976,0.8089887640449438,0.1073446327683615,0.5083777608530083,0.7466666666666667,0.6188235294117647,0.5076400679117148,0.1056218057921635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002128004539743,0.0045030882666152,0.0067313061576729,0.0089539799983738,0.0109254041077078,0.0130772207850406,0.0154702780978798,0.0179089238309168,0.0201200249455593,0.0222549802428188,0.0244477474245297,0.0264878905167192,0.0286390045760707,0.0306831875907672,0.0327819797137638,0.0347807212477648,0.0370577454726182,0.038996607637484,0.0410647099174756,0.0429266361808731,0.0576306583824988,0.0713568259814179,0.08481117531698,0.0969861343256909,0.1088390918481354,0.1247661625289324,0.1356167578340329,0.1448396873504546,0.1542870561111763,0.1627939364722266,0.1738213359448145,0.1840104679203659,0.1948537401660364,0.2037269658871205,0.212548071640479,0.2214727996461742,0.2298196160574019,0.2384799487623178,0.2460159136762405,0.2523755617303008,0.2575020510035474,0.2630829227284403,0.2683563439666473,0.2729208281999449,0.2769117005285361,0.2807431726240977,0.2839142325511695,0.2877875971354563,0.2913963766055876,0.2945927428917758,0.2909205785879443,0.2873014781711928,0.284156465456592,0.2813059292188672,0.2790480149657036,0.2751426342597549,0.272018841679312,0.2725529718302935,0.2727458736870822,0.2738513068110959,0.2743106763492449,0.2752223184071771,0.2753674480576258,0.2756615166045107,0.2777711433279992,0.2780985423193434,0.2796133067955644,0.2827560240963855,0.2858541703094946,0.2902625430641904,0.2923989956630906,0.2980507343124166,0.3003502069404648,0.3031372248216614,0.3065535124941065,0.3104273913563989,0.3128362797847809,0.3151490569864125,0.3133678192213449,0.3184210526315789,0.0,2.1158448856864074,47.69968710918347,140.6379584364615,190.19683466916487,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95610,48542,464.459784541366,4843,49.46135341491476,3836,39.54607258654953,1473,15.029808597427047,77.26635035352784,79.70548199910223,63.26822878755484,65.07262016588079,77.08511336380973,79.52840909211582,63.19930487711281,65.00786630128586,0.1812369897181156,177.07290698641032,0.0689239104420309,64.75386459493393,230.82444,162.43345226708217,241422.9055538124,169891.69780052523,544.37936,366.8814285014111,568794.822717289,383146.9495883392,486.13343,238.81242140489252,505043.4264198305,247036.9651253166,2173.23896,1025.7151181644745,2242194.791339818,1041981.5899638887,885.38731,401.9002485843196,912838.782554126,407152.07466197945,1433.11136,603.9191256426695,1463769.2500784437,600913.0649639901,0.38037,100000,0,1049202,10973.7684342642,0,0.0,0,0.0,47469,495.88955130216505,0,0.0,44049,457.25342537391487,1106555,0,39719,0,0,0,0,0,80,0.8367325593557159,0,0.0,0,0.0,0,0.0,0.04843,0.1273233956410863,0.304150320049556,0.01473,0.3576642335766423,0.6423357664233577,23.10394997972892,3.99514793036463,0.3115224191866527,0.2825860271115745,0.2035974973931178,0.2022940563086548,11.415803855540917,6.170525911974118,15.619056451471767,11276.850266111644,43.93211595575976,13.396765145483164,13.409067482217845,8.733061666265604,8.39322166179315,0.585245046923879,0.7998154981549815,0.703765690376569,0.586427656850192,0.1018041237113402,0.7572304995617879,0.9240780911062908,0.8773006134969326,0.7061855670103093,0.09375,0.512430426716141,0.7078651685393258,0.6386651323360184,0.5468483816013628,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023004580647776,0.0042404260715191,0.0062762143662343,0.0084187408491947,0.0108202194580729,0.0129437304442655,0.0150330666231221,0.0172996944708418,0.0192968813947777,0.0215288451685623,0.023328133338807,0.0253685011204078,0.0275779006207343,0.029807196618208,0.0319262113058657,0.034011423368238,0.0362769485903814,0.0382837735378735,0.0403838547846541,0.042343714148641,0.0574588869954313,0.0712736190146823,0.0842997604941384,0.0967072554141737,0.1086853195601888,0.1239672047794585,0.1341722642632429,0.1444937491999829,0.1544537923062102,0.1637959749427831,0.1743886257969169,0.1859789478248615,0.195944106211268,0.2044456129972283,0.2129104074592485,0.2224810328763476,0.2314995811225914,0.2395780562216443,0.2474840409823031,0.2548160719200073,0.2598089725036179,0.2652956117659452,0.270069017769412,0.2752405718599829,0.279309381189021,0.2831314900229386,0.2867803570981393,0.2907228302367014,0.2942737321701312,0.2964789010902092,0.2939436316695353,0.2912013187718936,0.2883460602736644,0.2844886011333977,0.281539716680264,0.2785738290916867,0.2751018603329017,0.2751388638560731,0.2759419894681232,0.2761072988147224,0.276896306552408,0.2782864359288054,0.2780716241925031,0.2791210750339848,0.280436346199952,0.2816908727168801,0.2837388909395497,0.2881377191057038,0.2926419649417445,0.2975186988009023,0.3012375900992792,0.302906976744186,0.3069375432417133,0.3110541782834752,0.3138652350981118,0.3123543123543124,0.316518596596898,0.3205741626794258,0.3204851752021563,0.3253909158600149,0.0,2.3013598429931355,49.39822719446968,140.51341820001804,198.6515412988029,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95714,48363,462.7640679524417,4864,49.73149173579623,3867,39.91056689721462,1443,14.8045218045427,77.34534288058313,79.71471880696708,63.32656324425341,65.07475505889973,77.16389500362297,79.53435795791252,63.25867285929176,65.00911296888185,0.1814478769601635,180.3608490545656,0.0678903849616432,65.64209001787447,229.87976,161.73868955113574,240173.6005182105,168981.22484812647,537.48057,361.54478434169664,561059.1658482563,377245.1097453838,480.42648,235.46485395418807,498524.4060430032,243341.24150892856,2206.72212,1035.3390612995745,2279733.163382577,1055896.463735268,903.72489,412.5694879674282,932091.0316150198,418947.0199558205,1410.29272,594.892177130903,1448825.1457467035,600526.9679221872,0.37997,100000,0,1044908,10916.98184173684,0,0.0,0,0.0,46853,489.01937020707527,0,0.0,43424,450.3729861880185,1120286,0,40176,0,0,0,0,0,84,0.8671667676619931,0,0.0,0,0.0,0,0.0,0.04864,0.1280101060610048,0.2966694078947368,0.01443,0.3388332351208014,0.6611667648791986,23.436373115179716,4.048562839807939,0.3154900439617274,0.2679079389707783,0.2097232997155417,0.2068787173519524,11.306879001233908,6.156325919216168,15.348114690158516,11318.71303974839,44.177015137648766,12.584770657831015,13.882116862289973,9.03410933173805,8.676018285789723,0.5761572278251875,0.7963320463320464,0.690983606557377,0.5869297163995068,0.105,0.7579948141745895,0.9245283018867924,0.8753709198813057,0.7522935779816514,0.146067415730337,0.4985239852398524,0.7075163398692811,0.6206115515288788,0.5261382799325464,0.0932475884244373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.004591247238157,0.0065946998904265,0.0087040422506601,0.0108808395533771,0.0130015577434101,0.0154429528148986,0.0178843032573522,0.0200049066710281,0.0219876958982915,0.0238144055112459,0.0258471965495995,0.027997778280636,0.0298756554615788,0.0316202270381836,0.0336882365102336,0.0359465617232808,0.0379506444449056,0.0398939488459139,0.0417969238464424,0.055892058983249,0.0695014233087742,0.0835230790216467,0.0965322054584096,0.1087346473642004,0.1236970485835529,0.1337338910001911,0.1439891787110311,0.1536735239113011,0.1631845384928891,0.1754064624567679,0.1869437165688546,0.1975320732543335,0.2065311395010235,0.2152028366295203,0.2248811252369182,0.2334114496149983,0.2409948927936643,0.2487006060055834,0.2544174062410535,0.2606347297078485,0.2661228115284823,0.2710713694320251,0.2751200469410482,0.2799184208609512,0.2836137040959582,0.2869540208325518,0.2901497161868722,0.2945469603250601,0.2978260296018785,0.2951883464821346,0.2924061081304168,0.2898082886946715,0.2869587829931088,0.2847956516573601,0.2810339553380238,0.2779768010731476,0.2774353860489447,0.2775674436766778,0.2780133789946236,0.2776754655207694,0.2795190648046446,0.281126502766338,0.2809386120996441,0.2814333964117182,0.2821516526247569,0.2843990058743786,0.2883191237787043,0.2938155063510793,0.2986951921946632,0.3027924392114404,0.3080887766908594,0.3106324701195219,0.3152255922740304,0.3205617037105924,0.3243021346469622,0.3210717529518619,0.3261044176706827,0.3282401091405184,0.3391676390509529,0.0,1.900413414663332,50.692363286856185,141.20106329289922,197.3275059390012,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95666,48416,462.0554847072105,4802,49.11880919030795,3810,39.28250371082726,1400,14.32065728681036,77.2498286400838,79.64924500857913,63.26585613190741,65.03938123245196,77.0737263757582,79.47534426654755,63.20010703409863,64.97670290142771,0.1761022643256069,173.90074203157724,0.0657490978087835,62.67833102424447,228.86336,161.11786162458097,239231.43018418248,168416.84698484413,535.90901,361.6705300564599,559651.2867685489,377520.6563241519,486.58356,238.6999385106556,504997.2090397842,246798.86965701915,2180.16072,1017.2795023613168,2249389.166475028,1033907.9732018284,882.40647,395.10478776896025,908521.3660025503,399143.23559985776,1356.78444,568.3603153297445,1388559.8227165346,567524.6162373025,0.37961,100000,0,1040288,10874.15591746284,0,0.0,0,0.0,46776,488.3866786528129,0,0.0,43979,456.107708067652,1115041,0,40022,0,0,0,0,0,69,0.721259381598478,0,0.0,1,0.0104530345159199,0,0.0,0.04802,0.1264982482021021,0.2915451895043732,0.014,0.3707618667730355,0.6292381332269645,23.150953464743704,4.089940626538051,0.3115485564304462,0.2769028871391076,0.215748031496063,0.1958005249343832,11.19682628166899,6.046094183719833,14.668493142304746,11337.23407876264,43.47205984921949,13.001929596810983,13.450249314505111,9.00458168670974,8.015299251193653,0.5984251968503937,0.842654028436019,0.7127211457455771,0.5535279805352799,0.1206434316353887,0.782051282051282,0.9391891891891893,0.8966565349544073,0.7052023121387283,0.136986301369863,0.5246504782928624,0.7725040916530278,0.6421911421911422,0.5130970724191063,0.1166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655091373232,0.0051619053414057,0.0073994376833365,0.0093476935582198,0.0115348231632269,0.0136883058684537,0.0160908757188889,0.0184101700107213,0.0205665780323174,0.0226749009125265,0.0245350948273209,0.02653312788906,0.0286875546637855,0.0306943857515383,0.0327799459001837,0.0350305625368457,0.0369107696133798,0.0387262892324304,0.040877264167629,0.0430725278391792,0.0578315518916716,0.0716597028054412,0.0851664497712102,0.0980650048927282,0.1094003925624195,0.1249312111078186,0.1353056110096419,0.145137571663008,0.1548516842634489,0.1640043399327525,0.1757407047754688,0.1869551073519844,0.1972284007152514,0.2066151956483593,0.2149715269500728,0.2239737821474198,0.2327647954158832,0.2407628800866191,0.2476986971610627,0.2549704243955665,0.2603951431291064,0.2664803878981415,0.2711711390660822,0.2757215497241221,0.2791422622164314,0.2832631279878448,0.2862015776075043,0.2903118821353402,0.2939222935720308,0.2970379475792061,0.2939637501348581,0.2906135941050892,0.2875273214411619,0.2849082807707887,0.2824629472714028,0.2791487538821657,0.275619547351119,0.2766728426437554,0.2775408549691242,0.2769359818671806,0.2786378868150588,0.27900138148806,0.2793942558746736,0.2808165635539276,0.2818671022918368,0.2832459918020028,0.2830338191594736,0.2871836429372896,0.2900208623087622,0.2945623498838445,0.2995993337234952,0.30676227363132,0.311910084451068,0.3175569078205995,0.3203991130820399,0.3255138775984206,0.3265306122448979,0.3283911039871769,0.3340546388964024,0.3378277153558052,0.0,2.112280797220308,47.54018134141855,138.61070035941165,203.95320127298268,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95756,48356,462.00760265675257,4861,49.772338025815614,3817,39.39178745979364,1450,14.82935795145996,77.32698317968122,79.68789722183737,63.31555014592704,65.06152956570149,77.14283657071522,79.50323096901398,63.24721785013763,64.99465541566332,0.1841466089660031,184.66625282339064,0.0683322957894105,66.87415003817421,230.42514,162.06959043094747,240637.11934500188,169252.00513069413,537.95521,362.6040070778723,561294.0390158319,378171.9681240573,484.79377,237.59932153980824,502962.0598187059,245540.92718523915,2173.20136,1025.4113148677372,2243459.4594594594,1044847.6073225038,876.87163,395.9639383563714,906014.5682777058,403804.1997956997,1409.29298,592.1684031209662,1444006.8298592255,596178.3547179712,0.37926,100000,0,1047387,10938.050879318267,0,0.0,0,0.0,46909,489.3792556080037,0,0.0,43771,453.8410125736247,1115145,0,40043,0,0,0,0,0,97,1.012991353022265,0,0.0,0,0.0,0,0.0,0.04861,0.1281706481042029,0.2982925324007406,0.0145,0.3623358808543994,0.6376641191456006,23.142112565565885,4.049319620593675,0.3004977731202515,0.2847786219544144,0.2122085407388001,0.2025150641865339,11.387139860764862,6.2004663080796405,15.34605811825228,11270.37814499551,43.79798489585027,13.331123617565355,13.13223798244392,8.997929735023625,8.336693560817373,0.590778097982709,0.8150873965041399,0.7175239755884917,0.5604938271604938,0.1190168175937904,0.7625772285966461,0.9177489177489178,0.8584615384615385,0.7061855670103093,0.1578947368421052,0.5182563338301043,0.7392,0.6618004866180048,0.5146103896103896,0.109500805152979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020363710045083,0.0041268682444079,0.0064551488947079,0.0086049252275682,0.0108721078057462,0.0129932284506898,0.0150201900721948,0.0171796049609554,0.0189793853418231,0.0213408393039918,0.0236650609818591,0.0259813582984314,0.0278565848443731,0.0299229787058775,0.0321638935022333,0.034243319762756,0.036069239688587,0.0381914551546017,0.0401583886758332,0.0422105317985311,0.0573915948140879,0.071645257123729,0.0850508439039731,0.0980375668772401,0.1102655986509274,0.1256343031123139,0.134956573379853,0.1451003353382658,0.1545646923027595,0.1636580235253713,0.1759931883339441,0.1868556701030927,0.1970799743246624,0.2062021439509954,0.2143108685125676,0.2231136623042741,0.231016651961715,0.2391676425547248,0.2457694491766042,0.2526093880684227,0.2587019180682726,0.2648184787571561,0.2700781805259417,0.2757979584737732,0.2795740749744737,0.2836363636363636,0.2874760551389115,0.2899703475571732,0.2931701948598433,0.2954072082048037,0.292687189138325,0.2898138608420908,0.2870536969356199,0.2836283888095341,0.2811971642986385,0.2778398054540171,0.2738621997471555,0.2740298018667103,0.2735156316551665,0.2742491558556957,0.2748013282095288,0.2761091209699641,0.2767696617468746,0.2772843628269338,0.2779825737265415,0.2796440893408389,0.2810969914810517,0.2852995348546811,0.2899080651901379,0.2944392008809187,0.2972339850436976,0.303343656500971,0.3068894825122694,0.3103939962476548,0.313531047265987,0.3203453103126458,0.3208943949237045,0.3231817271087958,0.3216052776250687,0.3273146369573569,0.0,1.649907797744672,49.748570248859245,145.65078132346972,191.0462962027412,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95746,48674,464.75048565997537,4869,49.56865038748355,3874,39.74056357445742,1514,15.26956739707142,77.39144353273707,79.72924991233451,63.36142006586866,65.08681445029069,77.19811257835406,79.54493377034973,63.28771241313324,65.0199505447015,0.1933309543830148,184.3161419847803,0.0737076527354148,66.86390558918731,229.22108,161.32240843177794,239405.38508136108,168489.97183357837,543.81403,367.0121955666645,567253.5667286362,382596.41715232434,489.62111,240.27900610068983,507178.9213126397,247632.66020823448,2227.58492,1053.3757591976062,2286621.6865456523,1060528.0183668854,910.6846,414.84646015998726,931003.5928393876,413317.0359517458,1467.36348,627.5822871557964,1482696.6139577632,612921.276539289,0.38072,100000,0,1041914,10882.062958243689,0,0.0,0,0.0,47251,492.7516554216364,0,0.0,44155,457.04259185762334,1119689,0,40167,0,0,0,0,0,134,1.389091972510601,0,0.0,0,0.0,0,0.0,0.04869,0.1278892624500945,0.3109468063257342,0.01514,0.3512185534591195,0.6487814465408805,23.20258051881171,4.008267728777748,0.2950438822922044,0.2839442436757873,0.216313887454827,0.2046979865771812,11.523515800023524,6.428074043590894,16.198495919241147,11397.225476946844,44.608991850944776,13.557586579608438,13.077414233141305,9.34215918942727,8.631831848767769,0.5849251419721219,0.8036363636363636,0.689413823272091,0.5847255369928401,0.1311475409836065,0.7567567567567568,0.907725321888412,0.8425655976676385,0.7428571428571429,0.1696969696969697,0.5092936802973977,0.7271293375394322,0.62375,0.5318471337579618,0.1210191082802547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679410335331,0.0045096628393647,0.0067774598729733,0.0089273925716781,0.0111844312716698,0.0132318215129061,0.0154065620542082,0.0177831738323096,0.0202882857113669,0.0221924367684374,0.0242213114754098,0.0263152495075508,0.0285552815454171,0.0307839565257665,0.032822711997196,0.0348118918248868,0.0367096860995829,0.0384882647610948,0.0407272273676988,0.0426168029584874,0.056795407098121,0.0714465092918131,0.0847889717684826,0.0976725597635749,0.1097391230993103,0.1256265995473677,0.1365632225356892,0.1464229476103332,0.1568554157677766,0.1659537975022779,0.1780074277409979,0.1895028281582903,0.2000260832708421,0.2095281792460044,0.2182247870294036,0.2271309081253319,0.2355917657679747,0.2439772229522558,0.2515130221909921,0.2587080611766321,0.2638208375704909,0.2696914106773541,0.2755375867409062,0.2798299706639526,0.2835902349103169,0.2873257802216727,0.2900187382885696,0.29277189593157,0.2950257955236038,0.2974456879526004,0.2949256777624105,0.2913328577699736,0.288470178591486,0.2853544802970553,0.2836622385277671,0.2801991959064328,0.275692617851349,0.2759403160506726,0.2760864394685875,0.2764305636980582,0.2759540916301203,0.2768839966130398,0.2770958583834335,0.2783836221315314,0.2782525204032645,0.2778933139232609,0.2786750538365635,0.2821050654310938,0.2866335594880044,0.2931511177818153,0.297955297637938,0.3007940709370037,0.3033193198217983,0.307109865980162,0.3109415705247488,0.3106060606060606,0.3104988830975428,0.3091701326995444,0.3192287091590787,0.3217358772914328,0.0,2.81730968860896,50.93715174068049,143.37057060352888,194.96448498630173,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95731,48433,462.9012545570401,4861,49.71221443419582,3825,39.412520500151466,1486,15.157054663588598,77.37264048070351,79.73229119665494,63.34029949113111,65.08218397798952,77.18087318000323,79.54530850268058,63.26751517454193,65.0139181081133,0.1917673007002776,186.98269397435752,0.0727843165891855,68.26586987621397,229.26816,161.41628553194042,239492.07675674543,168614.43579607483,540.95925,364.92212284855617,564540.6921477892,380653.4172301096,484.27664,237.6650080863431,502649.2149878305,245748.8246082027,2204.47728,1044.6271521467288,2274370.977008492,1062798.8343866966,872.99037,399.4598183573756,902604.5481609928,407957.5146581303,1440.34658,617.4574573814677,1471493.9152416668,615281.012586028,0.38121,100000,0,1042128,10886.003488942975,0,0.0,0,0.0,47134,491.8051623820915,0,0.0,43769,454.0639918103854,1117462,0,40129,0,0,0,0,0,92,0.9505802718032822,0,0.0,0,0.0,0,0.0,0.04861,0.1275150179690984,0.3056984159637934,0.01486,0.3668837576475232,0.6331162423524768,23.024017919472072,4.040661973421015,0.316078431372549,0.2700653594771242,0.2104575163398692,0.2033986928104575,11.469932766727004,6.296361212446421,15.902856720262555,11376.27985421755,43.762872672573245,12.526341393294055,13.856804721608851,8.85561856231016,8.524107995360175,0.5968627450980392,0.8286544046466602,0.7080231596360629,0.6012422360248447,0.1118251928020565,0.7731520815632965,0.9403669724770642,0.8847184986595175,0.7386934673366834,0.136094674556213,0.5185045317220544,0.7470686767169179,0.6291866028708134,0.5561056105610561,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683544303797,0.0044997111671885,0.0065938302038,0.0088458726031849,0.0107576081098943,0.0127247185292261,0.0149230910369713,0.0168415465643245,0.0191969579261561,0.0214456080009008,0.0235917731252691,0.0256673511293634,0.027722079978612,0.0297740427197264,0.0318180880259166,0.0341071170184178,0.0362885274415811,0.0380973125473234,0.0400665176947461,0.0421731296024331,0.0570527612742897,0.0710279591495061,0.0843425288079435,0.097241053129434,0.1093483165018658,0.1250462527355189,0.1364629515708194,0.1470090563708536,0.1570606264483815,0.1651921200227348,0.1767949256399487,0.1882464947204431,0.1994062183941796,0.2079728769070924,0.2171368217224838,0.2265551431894976,0.2347905668590051,0.2425757064054936,0.2490431464298288,0.2561418794208348,0.2616796472671303,0.2678934930625424,0.2726282127205969,0.2771153707746563,0.2815648432847611,0.2844955123779465,0.2880276314307525,0.2914992625743782,0.2955186421382183,0.2985963756177924,0.2952651107765111,0.2930601145431322,0.2897674549391221,0.2875236213089451,0.2855320348311106,0.2809935040122277,0.2775910231523129,0.2776022137442077,0.2776171689000748,0.2775421096537158,0.2780858110371004,0.2799992155786088,0.2815479412132062,0.2808874098724348,0.2823411562678878,0.2847440995713474,0.2870798556282427,0.2913317401694547,0.2955922578858073,0.2994028336130518,0.303575434031672,0.309326479227864,0.3135044225738134,0.3182466411468888,0.3211975605248567,0.3203125,0.3269607105223543,0.3320047827819848,0.3340528872099298,0.3217358772914328,0.0,2.128518781487264,51.30446070137223,133.86930340263885,197.916834499504,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95746,48075,458.818122950306,4695,47.94978380297872,3754,38.66480061830259,1371,13.984918430012742,77.33281654085012,79.7005582646102,63.319784280511655,65.07172581307023,77.15869798405632,79.52877302589764,63.2528138130847,65.00804254476103,0.1741185567938004,171.7852387125589,0.0669704674269553,63.68326830920523,231.63734,162.94156409583871,241928.9996448938,170181.0666720685,538.7535,362.4696821855837,562189.84605101,378073.7286002379,478.19602,234.3838412356243,495695.2666429929,241933.53717445492,2142.07876,1018.8866419204264,2207630.8566415305,1034535.2515200912,849.07299,388.2107937985508,872284.7847429657,390946.4560384254,1332.88614,578.6165340785539,1360547.2813485682,575936.7833177223,0.37967,100000,0,1052897,10996.772711131536,0,0.0,0,0.0,46992,490.25546759133545,0,0.0,43251,448.2067135963905,1112164,0,39940,0,0,0,0,0,96,0.981764251248094,0,0.0,1,0.0104443005451924,0,0.0,0.04695,0.1236600205441567,0.2920127795527156,0.01371,0.3584214808787632,0.6415785191212368,23.12828290736016,4.04113550412111,0.3079381992541289,0.2783697389451252,0.2152370804475226,0.1984549813532232,11.081558575282864,5.856197147615935,14.815881643338615,11303.73498898942,43.1523668279915,13.033975174104125,13.111800275999189,8.865578182851168,8.14101319503702,0.566595631326585,0.8038277511961722,0.6920415224913494,0.5074257425742574,0.1033557046979865,0.7424111014744146,0.920335429769392,0.8432601880877743,0.671957671957672,0.125,0.4886582083813918,0.7059859154929577,0.6344086021505376,0.4571890145395799,0.097053726169844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582952507371,0.004381649812867,0.0064372017463701,0.0083451072869761,0.0106315875147519,0.0129563233376792,0.0150113707053916,0.0170801429300663,0.0193861066235864,0.021359601069004,0.0235497959769525,0.0255162287321976,0.0275455751256978,0.0298043254376931,0.0320151047738926,0.0340785760798784,0.0362365368682684,0.0384284098338539,0.0405319690967131,0.042431061245325,0.0568756002839604,0.0711767229203067,0.0848651992911296,0.0979594411328728,0.1101589510076734,0.126045532891328,0.1371026758726017,0.1468547099521021,0.1564606231507888,0.1649864870661919,0.1762831210499682,0.1869401531870699,0.1971098957257336,0.2067231484012025,0.215050925009349,0.2239483562356745,0.2326292415670784,0.2411887828592006,0.2488679566475628,0.2560136473443779,0.2623252476622535,0.266998244587478,0.2722826794870276,0.2767184035476718,0.2802317953203586,0.2845095428317798,0.2882658489267163,0.2911987995472869,0.2938595355820756,0.2960901224145209,0.2927603697175993,0.2890370472197401,0.2861264354875028,0.2832837888539352,0.2808510006532454,0.2777845702408607,0.2741754685107122,0.2728923942924466,0.2729995065761489,0.2747557292591934,0.276040113331345,0.2764760274646363,0.2769621623872889,0.2760297546352837,0.2780180137133574,0.2799792799792799,0.2801812004530011,0.2843495363866254,0.2880925016543029,0.2913896865043464,0.292267483777938,0.2978030064122779,0.3009509602834234,0.3066666666666666,0.3087068806493266,0.3106773556407575,0.3168361244019139,0.3239659608153572,0.3267727150175249,0.3388182498130142,0.0,2.1467289729475563,49.989996059577926,138.5884158748516,188.31378181981287,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95773,48447,461.3617616656052,4765,48.58363004186984,3775,38.758313929813205,1450,14.690988065529952,77.34910350822409,79.67844457656653,63.34642956891118,65.06693317027145,77.16256737960391,79.49750736556359,63.27612930571857,65.00144889079832,0.1865361286201761,180.93721100294147,0.0703002631926068,65.4842794731394,230.1926,162.06183619804344,240352.29135560128,169214.53457450788,538.03473,363.05993608136737,561134.275839746,378437.230440832,487.12799,239.53268022850932,504329.2577239932,246728.99240662265,2144.5606,1014.8906756403012,2204868.762594886,1025352.1264493136,852.30264,395.1392258821958,872831.862842346,395518.3470546811,1400.95164,594.2852239209648,1421571.9043989433,586384.7423723442,0.38088,100000,0,1046330,10925.10415252733,0,0.0,0,0.0,46863,488.6345838597517,0,0.0,43945,454.5644388293152,1116376,0,40061,0,0,0,0,0,104,1.085901036826663,0,0.0,0,0.0,0,0.0,0.04765,0.1251050199537912,0.304302203567681,0.0145,0.3595890410958904,0.6404109589041096,23.27847330659256,4.020056131305905,0.3086092715231788,0.2916556291390728,0.2034437086092715,0.1962913907284768,11.620781424808673,6.604414723066619,15.342077980686469,11348.71423775779,43.26190279100859,13.4491508266507,13.183887364113929,8.598638994039732,8.030225606204228,0.5994701986754967,0.8138056312443234,0.6935622317596567,0.61328125,0.1187584345479082,0.768760907504363,0.9372384937238494,0.8426229508196721,0.7241379310344828,0.18125,0.5256751616584252,0.7191011235955056,0.6406976744186047,0.5734513274336284,0.1015490533562822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.0045611652256763,0.0069290156334013,0.0092533341459203,0.0115203156139423,0.0135795431410073,0.0158176889051957,0.0181558401796193,0.0203537381601937,0.0227026252787951,0.0247717982604419,0.0270700146740413,0.0289910180256099,0.0310431784262261,0.0331996411964243,0.0351598409337396,0.0373141278365877,0.0391750225531164,0.0412622872462021,0.0436321982713735,0.0582937646751891,0.0727209973643475,0.0855980540177822,0.0988292662420917,0.1107340822391299,0.126087094353978,0.1369292406834273,0.1466897769081899,0.1561642958520526,0.1651989458121746,0.1762306549861167,0.1863538062283737,0.1975343538006609,0.2062148745872422,0.2149724972497249,0.2242818860319358,0.2326017339686011,0.2406920275192229,0.2474026857816895,0.2538908724709329,0.2593855866063893,0.2646965958392291,0.2700848229601675,0.2747263276403094,0.2802607302388813,0.2836883801732316,0.2871866713363686,0.2911373087634962,0.2947778583264291,0.296780405449965,0.2933595221438949,0.2909478314660801,0.288566166650265,0.2858522383327088,0.2833091479847188,0.2804295760682196,0.2772311573636077,0.2768956551600085,0.2770031288260101,0.2777866709353823,0.2776772556846798,0.2795523064493881,0.2798940253671562,0.2792678304684191,0.2809657522739818,0.2815435455751867,0.2827825690945834,0.2878082536487166,0.2927282936758615,0.2968197879858657,0.2997908330301927,0.3048264182895851,0.3076971648670834,0.3104470802919708,0.3131294117647059,0.3145036348468597,0.3178044280442804,0.3221816707218167,0.3228736581337737,0.3326817826426896,0.0,2.5790335321549342,49.153475407873735,136.31645735983346,194.747041678981,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95672,48073,458.6085793126516,4822,49.053014466092485,3855,39.76084956936199,1457,14.90509239903002,77.31532774038504,79.70644410659581,63.31028192710126,65.07601594229327,77.12551063654601,79.52040985584497,63.23863137470339,65.00803620409822,0.189817103839033,186.03425075083635,0.0716505523978696,67.97973819504932,231.06072,162.44763960463916,241513.42085458653,169796.42905410062,537.23881,362.4853641816549,561040.6179446442,378381.6938933595,484.12894,237.62034242662503,503017.2673300443,245947.03155543053,2195.71628,1045.8287483402305,2267446.86010536,1065540.835709748,884.63814,409.51760028452753,911293.4714441006,414679.47809654486,1415.73668,607.5145894649529,1450160.903921733,608173.9590052629,0.37825,100000,0,1050276,10977.88276611757,0,0.0,0,0.0,46826,488.91002592189983,0,0.0,43789,454.6262229283385,1111465,0,39943,0,0,0,0,0,88,0.9198093486077432,0,0.0,0,0.0,0,0.0,0.04822,0.1274818241903502,0.3021567814184985,0.01457,0.3545036948272418,0.6454963051727581,23.018187287076877,4.063005797369203,0.3089494163424124,0.2830090791180285,0.2077821011673152,0.2002594033722438,11.379236967040637,6.246309837450154,15.69669151568837,11270.439026551914,44.281274055374006,13.326951429078044,13.39458184406219,9.074340527785148,8.485400254448626,0.590402075226978,0.7910174152153987,0.6985726280436608,0.6017478152309613,0.1282383419689119,0.7749576988155669,0.9195652173913044,0.9088145896656536,0.7727272727272727,0.1387283236994219,0.508791619902731,0.6973058637083994,0.6183294663573086,0.5370051635111877,0.1252086811352253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0046432409416249,0.0068501491810266,0.0090016865462377,0.0111796061197916,0.0137000254647313,0.0157684305005915,0.0176701904907818,0.0199519353684102,0.0220472279681323,0.0243472196582774,0.0264609505808877,0.028557614163589,0.0306027820710973,0.0326892508412295,0.0346978033342985,0.0370401069241688,0.0390750677197388,0.0410347625288647,0.0430233042898236,0.0568046471780512,0.0708302795518793,0.0843609953715851,0.0964822745783043,0.1083753720159571,0.1242524002582857,0.1351164815562021,0.1447364216401614,0.154482493266641,0.1631069419997424,0.1752152872832307,0.1869694213444213,0.197546453024481,0.2059026295919372,0.2144571944585159,0.2233484524192385,0.2323111627283691,0.2398208881338388,0.2470577553822932,0.252729626616867,0.2580394971407403,0.264518318297235,0.2698758388864559,0.2739058995670372,0.2768533812670035,0.2815718157181572,0.2852853604223484,0.2885713195936582,0.2924971222370242,0.2961258505195421,0.2931656128077492,0.2894255497641412,0.2863854387914422,0.284032982425739,0.2808610381711098,0.2778813533420948,0.2750134183689577,0.2750314578464857,0.2754103938079442,0.2762954404052973,0.2757637853949329,0.2758234195261036,0.2766321589580898,0.2781625064018348,0.2777445229258949,0.2788262131895479,0.2807660614326712,0.2848976002010303,0.2890750999228665,0.2916765849400936,0.2961312906305405,0.3010422728956139,0.3073345484256174,0.3077569094518247,0.3133006782215524,0.3161564826852618,0.3184761331124831,0.3245216018938646,0.3229931972789115,0.3327074727750657,0.0,2.128897772027042,51.42122792436937,138.23422282604832,198.65379096648792,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95628,48751,465.7736227883047,4807,49.03375580373949,3822,39.39222821767683,1418,14.525034508721294,77.3146043072854,79.7344776584436,63.296484254502126,65.08334072027608,77.12579903374679,79.54708169193412,63.224287343168754,65.01376685690524,0.1888052735386196,187.3959665094702,0.0721969113333713,69.5738633708487,230.63942,162.26663388440744,241183.9837704438,169685.27406659917,539.965,364.6104474790127,564089.9736478856,380718.41665517713,489.26329,239.8232401162515,507774.8149077677,247857.50567729565,2180.75176,1038.1180598792755,2250159.2838917472,1055285.7111717025,871.51685,397.1287862359353,897796.4090015476,401723.8645734773,1373.73492,598.1314510676716,1408825.4276990003,602155.4768896612,0.3816,100000,0,1048361,10962.90835320199,0,0.0,0,0.0,47046,491.3937340527879,0,0.0,44146,457.7738737608232,1110108,0,39834,0,0,0,0,0,74,0.773831932070105,0,0.0,2,0.0209143765424352,0,0.0,0.04807,0.1259696016771488,0.2949864780528396,0.01418,0.3683473389355742,0.6316526610644257,22.96658950585628,4.006377386864412,0.3069073783359498,0.2893772893772894,0.205651491365777,0.1980638409209837,11.152778162326516,6.09663710174207,15.496616747838877,11418.193087837471,44.198625366699694,13.654659231071916,13.299305389392575,8.864066466839027,8.380594279396187,0.5923600209314495,0.7884267631103075,0.7084398976982097,0.6094147582697201,0.1083223249669749,0.7415824915824916,0.8789808917197452,0.8632218844984803,0.7630331753554502,0.1242937853107344,0.5250569476082004,0.721259842519685,0.6481042654028436,0.5530434782608695,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024824455635151,0.0049588788269057,0.0072785966622,0.0093684905756236,0.0118204752604166,0.013933591362803,0.0161769055803184,0.0185310041883747,0.02064006709556,0.022816180235535,0.0248617934542918,0.0269237485747157,0.0290523023743878,0.0311063943783872,0.0328870629767643,0.0349074064500118,0.036969879081141,0.0391208197929752,0.0410475714820826,0.0431372549019607,0.0579479889622878,0.0712849091785213,0.0843536700619552,0.0970831885980147,0.1096380582442288,0.1251138264755087,0.1359455325657475,0.1465335350908974,0.1572360680286661,0.1657876362855148,0.1783140588590662,0.1895441836270238,0.2003595162871772,0.2093553157692939,0.2180080682494544,0.2275108201087559,0.2366547843869079,0.2440433945047146,0.2513602853475401,0.2574586648932511,0.2644304779101126,0.2696387430268867,0.2740504082357117,0.2777564717162032,0.2818038358824957,0.284987684729064,0.2885610701337667,0.2917519092214443,0.2939784584750255,0.2977461447212337,0.294944575979337,0.2912596012476469,0.2884355465450245,0.2853180393233267,0.2837761531145982,0.2815409113179813,0.2783343620910688,0.2781964763640543,0.2775061542669584,0.2775875597403524,0.2777383840268707,0.2783675071127244,0.2792418322387563,0.2798224195338513,0.2804114383675802,0.2820393974507532,0.2837757946003772,0.2882600880183474,0.2914271864829305,0.2949079514296905,0.2997400967915397,0.3048965697826656,0.3101162936101038,0.3154726068633353,0.3230113109586501,0.3253481236724097,0.328424605000767,0.3248035462421922,0.3337837837837837,0.3368943151468905,0.0,2.2370508576866337,51.76537354503287,142.90025382680156,188.84044670313432,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95644,48195,460.69800510225417,4876,49.71561206139433,3863,39.79340052695412,1479,15.07674292166785,77.29129418892526,79.69297890814572,63.29829466637945,65.07073771159874,77.0951002237688,79.50046945660466,63.22444512305714,65.00112452987715,0.1961939651564677,192.5094515410564,0.0738495433223036,69.61318172159281,230.07974,161.79272080093773,240558.23679478065,169161.18735782636,535.9913,361.5370235525465,559828.0916732885,377429.5822865203,482.10632,236.65596660036744,500825.6032788256,244916.22007823628,2209.67408,1048.3915348614405,2277680.8581824265,1063604.931426374,908.75664,417.3747809866967,936400.1505583205,422809.6509714122,1438.24894,616.6004723295948,1468143.239513195,613374.8132353802,0.37989,100000,0,1045817,10934.465308853663,0,0.0,0,0.0,46710,487.7566810254695,0,0.0,43503,451.54949604784406,1118041,0,40086,0,0,0,0,0,107,1.1187319643678642,0,0.0,2,0.0209108778386516,0,0.0,0.04876,0.1283529442733423,0.3033223954060705,0.01479,0.3797668444971349,0.6202331555028651,23.06454707192266,4.124330043457144,0.3119337302614548,0.2793165933212529,0.1995858141340926,0.2091638622831995,11.692609756309404,6.235692111622241,15.849458409965852,11316.002628031842,44.52243638178965,13.164882282932194,13.733894538521753,8.712997738575417,8.910661821760293,0.5878850634222107,0.8081556997219648,0.7178423236514523,0.569390402075227,0.1175742574257425,0.7555746140651801,0.926829268292683,0.8430769230769231,0.7522935779816514,0.1453488372093023,0.5153874675565443,0.7229299363057324,0.6715909090909091,0.4972875226039783,0.110062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803976783525,0.0044002838892831,0.0066481938227621,0.008992988517427,0.0112525308020226,0.0134236390487345,0.0156106613373575,0.0176751689913615,0.0198961230165221,0.0221571478303606,0.0243149561079662,0.0264363330115235,0.0285270456556179,0.0305009995259979,0.032724945286369,0.034493101379724,0.0365518742292187,0.0383353407816588,0.040455751521773,0.0421210667889984,0.0569141376139118,0.0705284659299219,0.0836360963521431,0.0963317720119993,0.1085639499292846,0.1235141571844403,0.1346051765505234,0.1452904957709269,0.1557715336583696,0.1649327363889157,0.1765232298618823,0.1876928740809719,0.1983803905348629,0.206728558603928,0.2157813533171699,0.225525968480708,0.2337656534512997,0.2424835939170859,0.2495686523792226,0.2556594262670699,0.2604735672622905,0.2660763994479403,0.2711936640977377,0.2751969117523647,0.2799285288862418,0.2838804350506819,0.2869216803355662,0.2901271493846173,0.2938685110351259,0.2964462319509461,0.2931916038751345,0.2897274690806036,0.2866903333051587,0.2841025641025641,0.2818089974445831,0.2792986113239937,0.2761535417491096,0.2767648894582963,0.2763789891116694,0.2764422218253259,0.2769931065487787,0.277163922436797,0.2780825933992293,0.2797240270614241,0.2794195124287562,0.279168720649664,0.2801119656186383,0.2855358481139146,0.2911073825503356,0.2938034188034188,0.2963819368879216,0.2995046896406365,0.3030531473803242,0.3043378821376839,0.3105689525244913,0.3123062246601478,0.3194937490353449,0.3213404605263157,0.3260448380846941,0.3243448537789594,0.0,2.314228869611757,50.53296439591229,145.38022010246024,195.10612095176668,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95628,48321,461.9776634458527,4830,49.148784874722885,3819,39.31902789977831,1472,14.94332203957,77.27514686010801,79.68580830495321,63.27600815666828,65.05603135918379,77.08248453437592,79.49940107840966,63.20131778833733,64.98707075344696,0.1926623257320869,186.40722654355105,0.0746903683309554,68.96060573683371,228.90494,161.00587476507536,239370.20537917764,168366.87451904817,535.88903,361.4784205047434,559755.0194503701,377371.7345472082,480.8312,236.16904813878736,498894.17325469526,243965.55696042025,2198.5064,1040.285674313468,2265221.8178776093,1054109.5787037984,907.37682,413.41488972885526,932295.8756849458,415804.9176259027,1435.18544,622.4860538146975,1458872.1085874431,614534.7654982861,0.38071,100000,0,1040477,10880.463880871712,0,0.0,0,0.0,46763,488.3611494541348,0,0.0,43432,450.3074413351738,1119216,0,40160,0,0,0,0,0,94,0.9829756974944576,0,0.0,0,0.0,0,0.0,0.0483,0.1268682199049145,0.3047619047619048,0.01472,0.3622843545508626,0.6377156454491374,23.68528356536732,4.015442240950141,0.3045299816705944,0.2725844461901021,0.2152395915161037,0.2076459806231997,11.231991949896695,6.061398133763356,15.817835611084387,11356.615880591462,43.53079699045743,12.600338056889704,13.150972164767946,9.048956666727603,8.730530102072171,0.5826132495417649,0.8117195004803074,0.705073086844368,0.5754257907542579,0.1097099621689785,0.7389418907198613,0.930715935334873,0.8840125391849529,0.7055837563451777,0.1372549019607843,0.5150037509377344,0.7269736842105263,0.6374407582938388,0.5344,0.100169779286927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047738260543466,0.0069199939120288,0.0092229558151345,0.0114830297297572,0.0134736027374938,0.0156524044540522,0.0179069126399934,0.0198951059675094,0.0222395150720838,0.0242789151930414,0.0265047616112429,0.0285302741910592,0.0307896879799614,0.0327664012722409,0.0349675670642761,0.0367990048719809,0.0386472928199748,0.0404312668463611,0.0423532601893955,0.0565171945228389,0.0704105799258063,0.0838682565530283,0.0976884337400172,0.1102648342013247,0.1265755746213324,0.1370056647288263,0.1469283749493571,0.1561088394596561,0.1653570392028292,0.1769145226244588,0.1874261173229798,0.1979899059267253,0.2076826914641635,0.2158511553995895,0.2244993168716051,0.2326107150451589,0.2405746075809381,0.247874435174541,0.2544761292249032,0.2604292343387471,0.2652766865626136,0.2699525504151838,0.2748015515605673,0.2791806548922298,0.2826934465061192,0.285886171932771,0.2899069252218643,0.2937468383983813,0.2967558638916419,0.2946623534169025,0.2917183067559007,0.2890347664393982,0.2866097606770946,0.2840413215780568,0.2811238223418573,0.2783962606786994,0.2787712058688675,0.2792500297472335,0.2797413946218607,0.2797529067054849,0.2807724832346752,0.282083359396176,0.2826676747909624,0.2848261680455263,0.2847858733364404,0.2862719583604424,0.290817602200275,0.2943497695208828,0.2995539062808416,0.3038883620105677,0.3081956831495065,0.3121531458502213,0.3192639879834772,0.319608756404285,0.3272384098147929,0.3345471096950387,0.3417186556651237,0.3364307187756217,0.3431297709923664,0.0,2.381724728662688,49.915849924323005,133.94952210242366,199.47072838275977,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95685,48425,461.9010294194492,4840,49.380780686628,3872,39.88085906881956,1455,14.819459685426136,77.28391542799022,79.68016565493755,63.28504443165552,65.05908252583859,77.0957211334268,79.49579357176421,63.214329312644296,64.99203301185182,0.1881942945634165,184.37208317334355,0.0707151190112256,67.04951398677395,229.8065,161.60908823226472,240169.8280817265,168896.99350187043,538.6205,362.8324422677466,562351.2044730104,378635.8282570378,479.90017,235.75219709826516,497872.5296545958,243570.9264584353,2209.11984,1036.528633376329,2276347.222657678,1051068.3838321487,910.95928,416.2589896735302,937016.4602602288,420061.0383889485,1419.46008,603.5922814863982,1448119.266342687,601626.1551373649,0.38249,100000,0,1044575,10916.810367351203,0,0.0,0,0.0,46893,489.48110989183255,0,0.0,43438,450.2377593144171,1117044,0,40141,0,0,0,0,0,88,0.9196843810419606,0,0.0,1,0.0104509588754768,0,0.0,0.0484,0.1265392559282595,0.3006198347107438,0.01455,0.3666468372000793,0.6333531627999207,23.5442899547124,4.097848751350275,0.3081095041322314,0.277892561983471,0.2084194214876033,0.2055785123966942,11.482491328358488,6.268218057408343,15.528050883737254,11401.426552515348,44.24447069850407,13.14947519740933,13.49234481760684,8.930464777482317,8.672185906005572,0.5800619834710744,0.7983271375464684,0.6906957250628667,0.5824039653035935,0.1168341708542713,0.7554776511831727,0.91415313225058,0.8786127167630058,0.7258064516129032,0.1629213483146067,0.5067740754302453,0.7209302325581395,0.6139315230224321,0.5394524959742351,0.1035598705501618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104517541192,0.0045338364167478,0.007025594688163,0.009461285962541,0.0116500310328337,0.01388436150273,0.0158192666632668,0.0181701188871185,0.0203733060598312,0.0226085353111106,0.024683505345015,0.0271464386996013,0.0296868729484158,0.0318139189760184,0.0337441678021388,0.0357301674302201,0.0378306686423027,0.0397139268624337,0.0415756516673947,0.0433137747391897,0.0587270581107478,0.0733706747631262,0.0857103876749994,0.0978997432551875,0.1101940876613439,0.1251667125346656,0.1356324524054745,0.1449976039614504,0.154395340137872,0.1637530450833306,0.1755132833971008,0.1871039719246558,0.1990244752199285,0.2084423761292088,0.2169533738139581,0.226163784491753,0.2341709890896083,0.2417504395257629,0.2493067866721214,0.256067627087539,0.2624617453398868,0.267994466847979,0.2741904874866563,0.2782406184725456,0.2820238254584393,0.285305437678871,0.288405179971445,0.2912807856706697,0.2946978718997566,0.2979873202493772,0.2950808643470305,0.2917353781882146,0.2885334382818429,0.2866879935442965,0.2839059137790309,0.2807242919190065,0.2781201605511836,0.2776623419119451,0.2774633481077395,0.2786724623223002,0.2791698635776709,0.2786120771419538,0.28040951621701,0.2808219178082192,0.2826553495213523,0.2829322975051487,0.285024566186703,0.2909450301204819,0.2954886431038693,0.2996656833824975,0.3026553468208092,0.305993690851735,0.3105844397567937,0.3130441253069425,0.3175874769797421,0.3224565901410092,0.3256305694003927,0.3295295295295295,0.3348952590959206,0.3389185072353389,0.0,2.3214846176414228,49.56378430502512,140.17277274125374,202.76314884797668,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95658,48435,462.0523113592172,4919,50.28330092621631,3921,40.42526500658596,1544,15.6913169834201,77.35161970545354,79.75768375573797,63.31721993396855,65.09448731684982,77.1579955453288,79.57026054631928,63.244214406823694,65.0268098894289,0.1936241601247417,187.4232094186965,0.0730055271448577,67.67742742091798,229.58914,161.4301492425337,240009.93121328065,168757.1649465112,538.53566,363.18491282163205,562407.9533337515,379098.96169584594,488.55531,239.83743912877551,508257.6365803173,248703.7197793185,2248.89468,1064.513923599973,2317375.9434652617,1079295.7632160338,911.35978,415.1532875307798,935125.3423655104,416434.7729019624,1498.32044,631.7749402150605,1523272.8052018648,623420.0397558018,0.37872,100000,0,1043587,10909.542327876392,0,0.0,0,0.0,46944,490.1628718978026,0,0.0,44078,458.2261807689896,1119059,0,40127,0,0,0,0,0,97,1.0140291454975014,0,0.0,0,0.0,0,0.0,0.04919,0.1298848753696662,0.313884935962594,0.01544,0.351934668481431,0.6480653315185689,23.164098759847768,4.083180440971422,0.3170109665901556,0.2665136444784494,0.2093853608773272,0.2070900280540678,11.419831450681691,6.327115876109195,16.284098013734216,11332.33911457089,44.9752957814155,12.858043192703017,14.190484068993644,9.03222711583523,8.894541403883617,0.5934710533027289,0.815311004784689,0.7240547063555913,0.5688185140073082,0.1330049261083744,0.7796754910333049,0.9162995594713657,0.9077809798270894,0.7587939698492462,0.1812865497076023,0.5141818181818182,0.7377326565143824,0.6529017857142857,0.5080385852090032,0.1201248049921996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188225043312,0.0041373016275414,0.0064343272372988,0.0086564252621311,0.0107416411518782,0.0131798737013648,0.015795645745169,0.0179820485852283,0.0200920245398773,0.022380415855782,0.0244475449863553,0.0266765316398462,0.0288560490676326,0.0311865315422126,0.0333529587968557,0.0354245985763946,0.0372504715905557,0.0393667272255385,0.0412942828902876,0.0434619395203336,0.0581522931753346,0.0718825586630786,0.0853049228508449,0.0978091590201195,0.1097836411609498,0.1247089207841144,0.1357010139618835,0.1459146042506022,0.1556344884400175,0.1642861745312399,0.1756459474615019,0.187106628679139,0.1975770901135262,0.2064096670388126,0.2152272301813657,0.2246350304279871,0.2337340244883367,0.2412030887683198,0.248388048858012,0.255075517284813,0.2596310645926097,0.2650182871966253,0.2696459183070284,0.2740788623141564,0.2780844018001189,0.2836158748123908,0.2875099860195726,0.2919135653652409,0.2953337118670314,0.2980499927680109,0.2948814351317238,0.2921610314793224,0.2902587005982978,0.2872099889108112,0.2840596024528246,0.2802990996490157,0.2758359740812562,0.2761987309478642,0.276543966236109,0.2760399068129679,0.2759058410647949,0.2762518923382419,0.2765114387604012,0.2780456373453018,0.2780521556557631,0.279136430545154,0.280225988700565,0.2847739963190567,0.2891578837524783,0.2936688950058985,0.2979394923125479,0.3028007106280698,0.3046472668610783,0.3062175776257424,0.3082420642286987,0.3143228244184674,0.3175985334555454,0.3161264505802321,0.318010752688172,0.3212956068503351,0.0,2.148657703343949,50.95999917275828,144.67772083089156,201.4589586837758,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95805,48705,465.0592349042325,4864,49.66337873806168,3893,40.20666979802724,1515,15.479359114868744,77.3507064425629,79.68052988289077,63.34838135415546,65.07065125585007,77.14833285763433,79.47954963611215,63.27189150394793,64.99704614001357,0.2023735849285657,200.98024677861304,0.0764898502075297,73.60511583650009,229.98558,161.86562277378664,240055.9260998904,168953.2099303655,539.75924,363.8524619998996,562967.1729032932,379357.98966640537,485.24533,237.71462205096185,504400.657585721,246442.96943498836,2233.70884,1051.267190649429,2307084.306664579,1072867.2518651732,906.57043,409.8296139663453,932930.0871562028,414438.5511887111,1478.72306,636.475346131254,1511776.963624028,636292.5690446966,0.3832,100000,0,1045389,10911.633004540472,0,0.0,0,0.0,46964,489.76566985021657,0,0.0,43924,456.3749282396535,1118608,0,40165,0,0,0,0,0,88,0.9185324356766348,0,0.0,1,0.0104378685872344,0,0.0,0.04864,0.1269311064718163,0.3114720394736842,0.01515,0.3600867678958785,0.6399132321041214,23.48880181532461,4.02394417069432,0.3133829951194452,0.2753660416131518,0.1954790649884407,0.2157718982789622,11.246558634952493,6.079645462312948,16.35827094020434,11418.860149142516,44.65723792284655,13.142956744357855,13.78041014282032,8.367669927223677,9.3662011084447,0.5789879270485486,0.8152985074626866,0.6942622950819672,0.5755584756898817,0.1130952380952381,0.741424802110818,0.92018779342723,0.8610271903323263,0.7237569060773481,0.1758793969849246,0.5119738751814223,0.7461300309597523,0.6321709786276716,0.5293103448275862,0.093603744149766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790810745107,0.0045721816707218,0.0070524724243254,0.0094466114090687,0.0114893443956401,0.0137334948639376,0.0159492071256777,0.018113908420161,0.0202438251734674,0.0224314367580843,0.0246326618439658,0.026596345054742,0.0285391295411335,0.0303161318880413,0.032285673039246,0.0342871900826446,0.0364215797860232,0.038573975783712,0.0403343891167765,0.0426191963356235,0.0570963500907781,0.0714450020911752,0.0848909249106328,0.0981272069951235,0.1104014502376661,0.1256672903519064,0.1365125823179461,0.1466140207107204,0.155997095940723,0.1655430390465063,0.1774716107852107,0.1894880191952271,0.1999478453614968,0.2090302282137277,0.2180628847845206,0.2267146017699115,0.2347736946493437,0.2430862893986026,0.2507308450608471,0.2567440796247568,0.2629822515271539,0.2693286631640397,0.2744727135155585,0.2792512447338184,0.2826611680514282,0.2867269706479601,0.2897583889263673,0.293068174598132,0.2962306617685104,0.2988384649827482,0.2956175941102184,0.2927020233238554,0.2894836776888563,0.2860855628871338,0.2839738833654845,0.2811864225291787,0.2777988674828383,0.2769122161842688,0.2767817505037052,0.2773485591935052,0.2784643948913186,0.2791437719887734,0.2798221886729152,0.2800349791470469,0.2825219856792734,0.2846867507557594,0.2859342915811088,0.2899823699785921,0.2950940482874789,0.2996758124456393,0.3042449610992311,0.3078316462440064,0.3139916656143452,0.3161236040997399,0.3211939177773606,0.3244460244104751,0.3298557839828168,0.3364083640836408,0.3422445001392369,0.3471741637831603,0.0,1.6957721891541295,49.9062759355667,148.69758152390708,198.1151127620132,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95740,48638,463.4008773762273,4882,49.83288071861291,3904,40.254856904115314,1492,15.239189471485274,77.31652017658898,79.67733304509032,63.31665033110207,65.06249226181882,77.11780256624375,79.48188766283184,63.24123824555634,64.99055798305194,0.198717610345227,195.44538225848385,0.0754120855457287,71.93427876687508,229.33504,161.41256789893814,239539.4192604972,168594.70221322135,538.70635,363.061501221774,562148.5168163776,378688.2611466201,484.15192,237.12362646688752,502606.6638813453,245245.18875547865,2252.7878,1070.4208771599367,2324943.1794443284,1089966.2389387276,910.15451,418.7259811127557,936020.4616670148,422725.570412321,1452.51518,631.2301540108774,1485528.8489659494,631860.4687865227,0.38233,100000,0,1042432,10888.155420931693,0,0.0,0,0.0,46908,489.4088155420932,0,0.0,43800,454.3868811364112,1119789,0,40189,0,0,0,0,0,81,0.8460413620221433,0,0.0,0,0.0,0,0.0,0.04882,0.1276907383673789,0.305612453912331,0.01492,0.3652071470645984,0.6347928529354016,23.168359767617574,4.229295945490497,0.3012295081967213,0.2715163934426229,0.2146516393442623,0.2126024590163934,11.57533996862727,6.207890392074139,16.147751139088392,11386.793864943163,45.090426384180354,13.038679567771462,13.515095367504372,9.396733076562905,9.13991837234162,0.5706967213114754,0.7886792452830189,0.7066326530612245,0.5584725536992841,0.1120481927710843,0.7344013490725126,0.91196388261851,0.846820809248555,0.7222222222222222,0.1557788944723618,0.4992641648270787,0.700162074554295,0.6481927710843374,0.5078125,0.098256735340729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023399276749627,0.0051094372522581,0.0073179396092362,0.0095918388083359,0.0117696126302083,0.0140956959240624,0.0163890956931455,0.0185860318821931,0.0206235110070449,0.0228820066547222,0.0251209908949224,0.0270869699147756,0.0291111385324119,0.0312207177058126,0.0335227800183601,0.0354796049096995,0.0378030350081775,0.039800014521767,0.0418589663631449,0.0436512897445514,0.0582775649123539,0.0720847982588314,0.0857085928815621,0.0982398216689098,0.1101410767381539,0.125378090826406,0.1359175922684404,0.1461389427068918,0.1566750360596185,0.1659961161715321,0.1776884876819166,0.1884381053383401,0.1995280402796959,0.2080408493516149,0.2161689105139749,0.2248514807589998,0.233877901977644,0.2413843540093835,0.2487062508511507,0.2553408401012612,0.2617841027421034,0.2672171797510995,0.2729833698289637,0.2771101676620853,0.2807452510300069,0.2851750891172153,0.288761752150127,0.2915489372534046,0.294928549238894,0.2974927421483241,0.2940250090856474,0.290621945006678,0.287378531232811,0.2843277645186953,0.2815458937198067,0.2777650175325769,0.275387998544511,0.2744991789819376,0.2758626583035669,0.2767820446382302,0.2777444735856126,0.2791418308135633,0.2803466393150943,0.2822179049150309,0.2821097066653875,0.2838135747075758,0.2856251064071278,0.2901573819635273,0.2939905939731754,0.2982310995548201,0.3029576700434153,0.3062076988155668,0.3089451265347031,0.3131351147911178,0.3125582261971306,0.3148542999289268,0.3214067278287462,0.3272361809045226,0.3258549931600547,0.3285060975609756,0.0,2.066372415876513,51.80918591774948,147.23185534412272,196.1085011017558,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95675,48362,462.09563626861774,4814,48.89469558400836,3838,39.4878494904625,1457,14.831460674157304,77.40264542862671,79.78571299371474,63.35728834693722,65.11303735699136,77.21901497517472,79.60435161570432,63.28611392162674,65.04514849575301,0.1836304534519968,181.361378010422,0.071174425310474,67.88886123834459,232.27028,163.30423805308172,242770.0862294225,170686.4259765683,539.6394,364.3625289431732,563435.9550561798,380235.67174619617,487.4513,240.0459753921882,505338.6778155213,247702.12405273344,2180.8476,1045.2651855993513,2244821.8238829374,1057905.268460258,886.50342,408.4457651342466,910470.7499346748,410805.1326138252,1402.68296,610.0837578686695,1429820.0365821791,607519.2483581074,0.37966,100000,0,1055774,11035.003919519206,0,0.0,0,0.0,47059,491.23595505617976,0,0.0,44105,456.8487065586622,1108540,0,39729,0,0,0,0,0,91,0.9511366605696367,0,0.0,2,0.0209041024301019,0,0.0,0.04814,0.1267976610651635,0.3026589115081013,0.01457,0.3653158522050059,0.634684147794994,23.02174436468389,4.01216772336748,0.3223032829598749,0.2782699322563835,0.2040125065138092,0.1954142782699322,11.665927806410124,6.665628741851414,15.668575398678168,11268.313118372223,43.91141568861918,13.17213352180267,13.915415620203795,8.638055223503951,8.18581132310877,0.5943199583116207,0.8258426966292135,0.7146321746160065,0.5287356321839081,0.1346666666666666,0.7750836120401338,0.9300847457627118,0.8947368421052632,0.6981132075471698,0.2,0.5124905374716124,0.7432885906040269,0.6458100558659218,0.4658493870402802,0.1155172413793103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708610545715,0.0045303901000334,0.0067457902211401,0.0089881478321806,0.0111550624866535,0.0133698552023297,0.0156085923720778,0.0176054541186556,0.0199378666176139,0.0221871993777759,0.0242527368895813,0.026292014865614,0.0285012183962409,0.030546772814814,0.0325938918695831,0.0346342270087024,0.036780085737362,0.0386136045244642,0.0404892406577291,0.0425035176403147,0.0567169168729954,0.0706896190655693,0.0836376610838265,0.0964959341896256,0.108906609286332,0.125193101259126,0.1364210436942148,0.14626096584618,0.1558702506279057,0.1647432322278948,0.177047767785018,0.1879187366734855,0.1988428116197374,0.2088199273936054,0.2165418000594079,0.2255550019376626,0.2322939543594831,0.2401788422436163,0.2465621531002922,0.2531438631790744,0.2591887149651383,0.2647144607128274,0.2700667020837022,0.2738623452729773,0.2772438034058542,0.2805554530583127,0.2840152414266975,0.287610226479731,0.2903446495417581,0.2931199957928505,0.2905254969285656,0.2878993276643525,0.2841393029250252,0.2820033907071635,0.2799030689894646,0.2767857142857143,0.273526630948629,0.2734048117154811,0.2733335595981537,0.2747202071619872,0.2751899016979446,0.2763796477495107,0.277170871250596,0.2769459088291321,0.2776837034033724,0.2784024815820085,0.2805560264451602,0.2867448151487827,0.2895505774314735,0.2948088183282901,0.2984825219040737,0.3020151930787086,0.30475419029223,0.3084330098548108,0.3092332060001863,0.3106852497096399,0.3140957848617616,0.3160508541914978,0.3186724230976794,0.319537658463833,0.0,2.454825954096353,51.39127022804168,135.97103164754154,195.12864350887065,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95732,48157,460.0238164876948,4825,49.26252454769565,3886,40.04930430785944,1419,14.436134207997323,77.33907921770925,79.70587450006306,63.32552877917672,65.07546902187859,77.15874212270883,79.52939720298318,63.25775553694956,65.01148481709977,0.180337095000425,176.4772970798845,0.0677732422271546,63.98420477881928,231.52756,162.8349236504485,241849.7054276522,170094.5594476753,540.69597,363.8072434104428,564252.6427944679,379477.7226115016,477.42924,232.8982314643198,495755.84966364433,240911.1902194148,2222.37872,1038.6900383851105,2290956.6707057203,1054495.8408735949,896.12427,405.465940969448,920311.1603225672,407823.2227677917,1379.63432,586.6986807439414,1404837.3793506874,581681.184178183,0.38006,100000,0,1052398,10993.168428529643,0,0.0,0,0.0,47175,492.1969665315673,0,0.0,43275,448.99302218693856,1111435,0,39875,0,0,0,0,0,89,0.9296786863326788,0,0.0,1,0.0104458279363222,0,0.0,0.04825,0.1269536388991212,0.2940932642487047,0.01419,0.3550378335324572,0.6449621664675428,23.41162320650235,4.0455257108558325,0.319094184251158,0.2745753988677303,0.2068965517241379,0.1994338651569737,11.50665628005946,6.305274735315328,15.120172343573955,11283.883472918817,44.481217177404666,13.016463727797936,13.917049294218115,9.029862588113412,8.517841567275198,0.5869788986103963,0.8050609184629803,0.6838709677419355,0.6082089552238806,0.1096774193548387,0.7526978417266187,0.9205607476635514,0.8478964401294499,0.7524271844660194,0.1538461538461538,0.5205479452054794,0.7276995305164319,0.6294307196562836,0.5585284280936454,0.0973597359735973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0045625988563085,0.0066989433939283,0.0089924402536172,0.0111085114391218,0.0133518011182515,0.0155305154744302,0.0175091118847563,0.0196118530031289,0.0216411643007845,0.0240598110904858,0.0260879389501145,0.0284574167206606,0.030547170394486,0.0325350949628406,0.0344449614807921,0.0365056509173028,0.0386359626819979,0.0404825040295325,0.0420686350092721,0.0559442019754839,0.0691491587846321,0.0826500870221644,0.0955560696559266,0.1074400210914843,0.1228513703629266,0.1339847438386538,0.1442746872504658,0.154422372062705,0.1631188171927641,0.175401922330934,0.1861175171338552,0.1975241493342616,0.2065075874443387,0.2152474266527219,0.2250570788907853,0.2327847988210601,0.2408722166589781,0.2491631395599532,0.2552501632620327,0.2608524620510922,0.2663369462275071,0.2719589602959776,0.2760832366068758,0.2795586808923375,0.2830242019740157,0.2858943322768225,0.2889520210027014,0.2917268786127168,0.2950634177148571,0.2924868832440991,0.2890608917617028,0.2860939257592801,0.282661086658489,0.2802016906421474,0.2776844099492758,0.2739974739501105,0.2741074353095316,0.2749761157363177,0.2760477013850514,0.2776957991669312,0.2785343198992443,0.2798258768641173,0.2808681135225375,0.2819380104111944,0.2829275864745298,0.2837064324171153,0.2876331490332052,0.2913369356806693,0.2955307482939529,0.3003759228225916,0.3032466159052453,0.3088807938701168,0.308995593374867,0.3150939884608226,0.3161799340555817,0.3144827586206896,0.3143839773416953,0.3247863247863248,0.3224458792252184,0.0,2.0267337964928105,48.525695538349886,148.5563925790307,200.3746350991298,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95692,47918,457.4990594825064,4806,49.03231200100322,3832,39.50173473226602,1490,15.205032813610334,77.30793472821749,79.68359559048857,63.31631099018998,65.07015733539524,77.11131798520215,79.48976248734752,63.241697991419706,64.99867171911491,0.1966167430153405,193.83310314104563,0.0746129987702772,71.48561628032724,229.65888,161.5213864678141,239997.9935626803,168792.98840845012,537.01422,363.21663575411714,560655.7287965557,379033.8750931292,476.73085,234.15208950905853,494916.5447477323,242152.68691407875,2186.64204,1049.086022349117,2256608.2013125443,1067840.0517797903,880.03244,403.5111664597965,909695.9933954772,411722.0002296916,1436.15952,621.6151424535087,1467385.6748735528,622428.5776327433,0.37832,100000,0,1043904,10908.999707394558,0,0.0,0,0.0,46880,489.3303515445388,0,0.0,43180,448.08343435187896,1118788,0,40161,0,0,0,0,0,96,0.9823182711198428,0,0.0,0,0.0,0,0.0,0.04806,0.1270353140198773,0.3100291302538493,0.0149,0.3641107988759534,0.6358892011240466,23.079717088144207,4.045639946774681,0.3055845511482254,0.2818371607515658,0.2160751565762004,0.1965031315240083,11.364352726437044,6.246819276662823,16.11333932008368,11271.120276976166,44.41438421851657,13.373124451764289,13.379010773721772,9.239190191304628,8.423058801725873,0.5887265135699373,0.8027777777777778,0.7079419299743809,0.5410628019323671,0.148738379814077,0.7580101180438449,0.9275053304904052,0.8801169590643275,0.6782178217821783,0.1502890173410404,0.5128495842781557,0.707037643207856,0.6369119420989143,0.4968051118210863,0.1482758620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020249883563169,0.0041648088849256,0.0066951379096967,0.0088262777281222,0.0108616060532096,0.0132784815282473,0.0157742859764864,0.0180398162327718,0.019955427426445,0.022090059473237,0.0239984417927584,0.0261190965092402,0.0283534045682199,0.0304210320281031,0.032824608653479,0.0348381627779558,0.0367814662853827,0.0386615865369641,0.0406120941651322,0.0423985905361592,0.0566384623420035,0.0713246454179096,0.0844070001678697,0.096898368724955,0.1093598448108632,0.1243866328257191,0.1347153557257739,0.1445830583526706,0.154395111320029,0.163571804031367,0.1752985902447955,0.1860963261067116,0.1958923173940461,0.2048963435969209,0.2131659717714876,0.2219883921846617,0.2303152022315202,0.2387535856909837,0.246375002836461,0.2527315207183269,0.2593501487457894,0.2647416555563352,0.2696103957583791,0.2743190894808169,0.2783526464901935,0.2823112887507247,0.2859308633931816,0.2895424253621988,0.292883827115654,0.2961935338961777,0.2938243656600773,0.2909669509154279,0.2880686864699496,0.2857287522603978,0.2831940023205307,0.279662964381463,0.2763187074291145,0.2753377823071107,0.2751967157030448,0.2754754039817873,0.2752501592774425,0.2761108475648324,0.2780741949657899,0.2790573231366078,0.2799558255107675,0.2804503048939386,0.2823094425483504,0.2868397099902702,0.2895180553604046,0.2923539416953443,0.2974496522253034,0.2995238095238095,0.2993658567212909,0.3041135397692774,0.3076059500420993,0.312235294117647,0.3175078628126404,0.3198340576847096,0.3216187433439829,0.3279112754158965,0.0,2.08943323434984,51.60094914034283,145.660900954511,189.4746860127809,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95700,48418,461.7554858934169,4904,50.020898641588296,3897,40.06269592476489,1456,14.743991640543364,77.38171245272493,79.75587259417003,63.34258245905804,65.09524798177578,77.19280244762373,79.57392341977578,63.26995352485486,65.02866163489601,0.1889100051011922,181.94917439424785,0.0726289342031805,66.58634687977383,230.45242,162.0930779206693,240807.1264367816,169376.25697039632,537.71377,362.1145029051461,561218.578892372,377729.2715832248,485.69373,238.05104229106604,503747.59665621736,245852.75559935128,2236.58548,1061.160053620339,2299778.0564263323,1071538.32144236,918.78305,421.2759325604918,940726.0083594568,420870.4288099808,1415.6905,607.6815304108721,1434914.2737722048,596566.1619902086,0.38081,100000,0,1047511,10945.778474399163,0,0.0,0,0.0,46836,488.7251828631139,0,0.0,44064,456.6980146290491,1117416,0,40097,0,0,0,0,0,83,0.8672936259143156,0,0.0,1,0.0104493207941483,0,0.0,0.04904,0.1287781308263963,0.2969004893964111,0.01456,0.3561270212351451,0.6438729787648548,23.100155948784156,4.067623124838778,0.3184500898126764,0.2766230433666923,0.201693610469592,0.2032332563510392,11.339533196747558,6.2669520302565855,15.482984001250916,11333.089996846182,44.75023104986019,13.172059334443928,14.090690606198384,8.78599605855976,8.701485050658112,0.5948165255324609,0.8061224489795918,0.7099113618049959,0.5903307888040712,0.1313131313131313,0.7543713572023314,0.9105145413870246,0.8888888888888888,0.7487684729064039,0.1413612565445026,0.5237388724035609,0.7321711568938193,0.6367763904653803,0.5351629502572899,0.1281198003327787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0046224492899066,0.0067276860007306,0.0087662271702253,0.0109343531948654,0.0132077393075356,0.0154371654346163,0.0180182939278859,0.0204041994214039,0.0224792711638857,0.0247070522743815,0.0268375068017782,0.0289078568490333,0.0306660623416222,0.0328899163046058,0.0349273639042547,0.0370700280692305,0.0391967621419676,0.0412614542920441,0.0432435249361613,0.0576555498689171,0.0713104112572242,0.084816369359916,0.0975212002609262,0.1095029116381129,0.1245068694539339,0.1351216561793699,0.1447994633902239,0.1539661342876983,0.1627527758407981,0.174680488803638,0.1857725909646967,0.1964870302898471,0.2055052089596292,0.2139667385278718,0.2237155287892039,0.2326367204924614,0.2406828456399991,0.2477034046317508,0.2546162211665045,0.2605542575585833,0.2665825122432997,0.2727337261304749,0.2767909544969996,0.2795765499993929,0.2838423645320197,0.2869141357330333,0.290325451309433,0.2939236380568058,0.2974482604170783,0.2952704608647762,0.2911928895716461,0.2886154883289795,0.2859445147922183,0.2841053533950161,0.2801784517936537,0.2759407967249252,0.2761241498540276,0.2770375644155139,0.2775591946689352,0.2790494268274527,0.2797362016173353,0.2806762783943574,0.2800709377078253,0.2810571217501132,0.2813635309577181,0.2834206523576136,0.2888847502871155,0.2917677222645693,0.2967817896389325,0.3020448608233492,0.3043318069372072,0.3086528204806425,0.3137373890616703,0.3194133034379671,0.3271677662582469,0.3339410513521726,0.3364259782170229,0.3347084708470847,0.3338449731389102,0.0,2.584478992967997,51.9098251739423,141.1825381400865,196.8419244136091,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95858,48392,460.410190072816,4885,49.64635189551211,3897,40.08011850862734,1455,14.824010515554257,77.44506122741345,79.722098389892,63.40474875222951,65.0838492296579,77.25922969746787,79.53848106701946,63.33417999049245,65.01615436683169,0.1858315299455739,183.6173228725357,0.0705687617370571,67.69486282621529,229.60652,161.5651881403607,239527.7598113877,168546.3791653912,541.00007,364.0853549896777,563813.5053933944,379254.35017388,483.08085,237.31274429945452,499755.0021907405,244410.8427404294,2215.86852,1048.119991562364,2281601.702518308,1063395.05472925,897.19,412.19265155825786,919177.3560892154,413223.394560973,1412.14654,605.7680804560223,1440994.7630870664,606630.6292299158,0.38079,100000,0,1043666,10887.625445972166,0,0.0,0,0.0,47178,491.5708652381648,0,0.0,43781,452.5652527697218,1122818,0,40351,0,0,0,0,0,73,0.7615431158588746,0,0.0,0,0.0,0,0.0,0.04885,0.1282859318784631,0.2978505629477994,0.01455,0.3528605015673981,0.6471394984326019,23.36667871329993,4.132275474473968,0.2938157557095201,0.2802155504234026,0.2265845522196561,0.1993841416474211,11.29942972631009,6.048067634018672,15.545939266667324,11316.50185515378,44.62870643395548,13.53030834114586,12.86811507664589,9.775777152429235,8.454505863734502,0.5868616884783167,0.8040293040293041,0.7013100436681222,0.5753114382785957,0.1261261261261261,0.7645079899074853,0.9146341463414634,0.8598726114649682,0.7511961722488039,0.1839080459770115,0.5088626292466765,0.7133333333333334,0.641395908543923,0.5207715133531158,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022874956982934,0.0047305989728421,0.0071788528030986,0.009388575372498,0.0116751681671306,0.0136329877608326,0.0159496455634319,0.0178857311837825,0.0201268265784394,0.0224744376278118,0.0246874392029571,0.026767583533321,0.0291374812562906,0.0312590002057189,0.0334937102706489,0.0355380772486117,0.0375920410358236,0.0394901818558623,0.0416506618219569,0.0434827848127607,0.0586941107774441,0.0725225131108836,0.0853200154955973,0.098121720881427,0.1097013119548864,0.1254723154539505,0.1362741153300438,0.1462251120885659,0.1553529537214757,0.1643693414096445,0.1756222327300864,0.186642911132707,0.1973838471558836,0.20605253389812,0.2146473799246543,0.2240721278831793,0.2327838889074637,0.2403860197054296,0.2476140820166391,0.253795028426965,0.2597940051094131,0.2647137897579165,0.2689687795648061,0.2740499664975591,0.2783775260182916,0.282233652449979,0.2856499493351014,0.2890544543755483,0.2921977922430862,0.2947898406505779,0.291579838937363,0.2889044442614401,0.287109813608803,0.2843069577472891,0.2823616345230178,0.2787481362018075,0.2750039301996541,0.2739775134430503,0.2735461762909683,0.2746583587056574,0.2754747159143744,0.2767098003023936,0.2772505930827819,0.2790914333880484,0.2808536003814973,0.282860092927207,0.2845152931898834,0.2896731701255126,0.2949980987935981,0.2990236442771438,0.3030795629007495,0.3064592670709201,0.3108116538773473,0.3147431519842173,0.3205728191688506,0.3237690400283387,0.3287503819126184,0.3311488838828589,0.3311367380560132,0.336687306501548,0.0,2.2731281519612043,51.60441899034901,141.97033264894478,196.8471996957346,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95687,48088,459.70717025301246,4725,48.30332229038427,3777,38.9081066393554,1470,14.93410808155758,77.29747507811412,79.69973461836625,63.28577397120039,65.06540965916997,77.11193383496557,79.52112866122008,63.21449538966687,64.99979195204965,0.185541243148549,178.6059571461749,0.0712785815335195,65.61770712032455,230.96194,162.47137054300669,241372.3285294763,169794.61216571394,540.52806,364.8672585902577,564357.2481110287,380778.7040980047,482.59169,236.9242123793616,501283.01650171913,245197.7119580317,2153.66172,1027.4462512607854,2218281.4384399136,1041302.8846768998,875.51101,397.72431562133806,901578.9919215776,402256.5192986903,1416.84606,611.4260474173284,1440275.7741385975,602851.7070531859,0.37859,100000,0,1049827,10971.46947861256,0,0.0,0,0.0,47163,492.3134804100871,0,0.0,43659,453.2904156259471,1107386,0,39782,0,0,0,0,0,84,0.8674114561016648,0,0.0,0,0.0,0,0.0,0.04725,0.1248051982355582,0.3111111111111111,0.0147,0.3682604272634791,0.6317395727365208,23.11125857882462,3.9870910714825447,0.3198305533492189,0.2782631718294943,0.2054540640720148,0.1964522107492719,11.439076784624731,6.4888390435856,15.804712271594138,11232.482906074923,43.39706110193725,12.765343665832631,13.83848217279083,8.64555814483061,8.147677118483177,0.5896213926396611,0.8039961941008563,0.7243377483443708,0.5489690721649485,0.1091644204851752,0.7660668380462725,0.9196428571428572,0.8653846153846154,0.7591623036649214,0.1341463414634146,0.510727969348659,0.7180762852404643,0.6635071090047393,0.4803418803418803,0.102076124567474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024727390652235,0.0048587020469437,0.0069648205492664,0.0092571893100294,0.0115458170572916,0.0134755240481574,0.0155950389620986,0.0176262739731623,0.0199842498747149,0.0225189706198605,0.0245350948273209,0.0266996774259826,0.0290223351611608,0.0307386340216808,0.0326783888986402,0.0344132067274871,0.0362143841792684,0.0381903703780618,0.0400345412362017,0.0419793229948307,0.0562629924056451,0.070193253910094,0.0835099796419501,0.096637771418953,0.1091442315807241,0.1253002105441349,0.135964586363202,0.1455823613995846,0.1544647631269383,0.1634633968260785,0.1749568593615185,0.1862981029810298,0.1966123849463537,0.2053529366653154,0.2132078175464897,0.2223085029674413,0.2301864020383532,0.2379906515740271,0.2450896863533608,0.2516502406600963,0.2561902114747643,0.2624355971896955,0.2674158367772264,0.2717554321091341,0.2761178602264297,0.2795608733193536,0.2830644757276689,0.287166552014064,0.2917909479963688,0.2940873356675695,0.2918475769261886,0.2891431722616668,0.2861780355958279,0.2830791933103787,0.2808700170737139,0.2775535168195718,0.2742757913016023,0.2753625557935353,0.2765982743392893,0.2774297730378152,0.2778376971139542,0.2786139855754155,0.278282565755276,0.2781791587252338,0.2789367028251281,0.2798212532933822,0.280938532343225,0.2847488243171696,0.2887297005946378,0.2929352529305326,0.2955920874356427,0.2982870954182429,0.300080850799179,0.3034415535727675,0.3046462023555596,0.3097819750495511,0.3143549364021805,0.3146336594130565,0.3201837341259119,0.3274034822104466,0.0,2.194689740960831,50.72744348030697,135.23158462502113,193.02396033101377,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95830,48292,459.6368569341543,4901,49.9739121360743,3895,40.05008869873735,1436,14.630074089533547,77.32864418348662,79.6387801947012,63.32870225298407,65.03839627239579,77.1379182570007,79.45144959141875,63.25578190901607,64.96876089933863,0.1907259264859107,187.33060328244733,0.0729203439679935,69.63537305715306,229.9341,161.97932973411068,239939.5805071481,169027.7885151943,542.50107,364.8165401395855,565513.6178649692,380097.22439693793,484.71253,237.4528710622301,501934.7072941667,244840.753896743,2222.53808,1058.5274794361692,2287032.1193780657,1072726.7562409304,892.79519,408.0771949309628,918225.8791610145,412518.8869054381,1395.81726,608.8279373731195,1424057.915057915,608676.5718303891,0.37962,100000,0,1045155,10906.34456850673,0,0.0,0,0.0,47261,492.57017635396016,0,0.0,43957,454.83668997182514,1114076,0,40016,0,0,0,0,0,90,0.9391631013252636,0,0.0,1,0.0104351455702807,0,0.0,0.04901,0.1291027869975238,0.2930014282799428,0.01436,0.350942655145326,0.649057344854674,23.31010582709113,3.999487493081945,0.3086007702182285,0.2880616174582798,0.2051347881899871,0.1982028241335044,11.1160489018803,6.035744884919854,15.621860339163907,11350.644102957269,44.98084333188334,13.738718688587769,13.79030745450306,8.852729613305716,8.599087575486807,0.5894736842105263,0.7878787878787878,0.7063227953410982,0.5882352941176471,0.1204663212435233,0.7371575342465754,0.8839285714285714,0.8717201166180758,0.7526881720430108,0.1361256544502617,0.5262192885955262,0.7240356083086054,0.640279394644936,0.5383360522022839,0.1153184165232358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699802501645,0.0047034018570328,0.0067975447674123,0.0091926702421582,0.0116636160260321,0.0140195479535736,0.0160636020792987,0.0182064967801851,0.0205919022216771,0.0226347133823138,0.0247443595155638,0.0270411723656664,0.0292582163484266,0.031253860407659,0.0333178654292343,0.0352781967314724,0.0372643169070927,0.0394301651650094,0.0415268761360685,0.0433606028435229,0.0575749674054758,0.0715749414519906,0.0851491997610288,0.0976355611601513,0.1099188363023084,0.1259394720986036,0.1367309282942037,0.1466544649697795,0.155825154586328,0.164829863419027,0.1777272874110286,0.1889584888513842,0.199173643579428,0.2078218763321564,0.2167484433100838,0.2261973328607505,0.2350058056448731,0.2415788525623705,0.249165436584535,0.2551342177986217,0.2611512959614225,0.2672309694362053,0.2712222446388094,0.2752305696992987,0.2792978016764194,0.2829548678351609,0.2864516775664637,0.2898249815300741,0.2927964728003631,0.296011418602807,0.2935516474631089,0.2905190349559778,0.2875894482787822,0.2847109592215014,0.2814387290631601,0.2781303654648026,0.2744439515873518,0.2743959450814428,0.2748649615758174,0.2750649073514244,0.2751685372275859,0.2769815332519589,0.2775438742757097,0.2786586315017011,0.2804545454545454,0.2807400478120777,0.2816721896507774,0.2853130266525185,0.2915306051552838,0.2963747645951036,0.2997250642267994,0.3027513283181651,0.3055312773130229,0.3085709962932143,0.3111525898273448,0.3169347209082308,0.3207717817304793,0.3196082350589646,0.3227899432278994,0.3362595419847328,0.0,2.315033813424156,50.667090484089925,149.90592281949412,194.6789833937289,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95751,47908,458.1570949650656,4802,49.00209919478648,3830,39.46695073680692,1490,15.20610750801558,77.35098256499538,79.69826063640845,63.33757887846742,65.07056998972126,77.16469965342152,79.51441670938526,63.26703844388632,65.00293246496629,0.1862829115738549,183.8439270231902,0.0705404345811047,67.63752475497142,229.90286,161.60396702765445,240104.91796430323,168775.22639727464,535.99462,361.76514345965205,559245.4178024251,377284.4183973558,472.6095,231.8169367100039,490138.2857620286,239432.2885968765,2199.5798,1031.56809646083,2267016.3653643304,1047510.1960610552,861.15683,388.79182756302737,883010.9554991593,389894.1831626216,1446.12914,616.1406110091764,1476456.016125158,615392.9710294281,0.37918,100000,0,1045013,10913.859907468328,0,0.0,0,0.0,46768,487.8591346304477,0,0.0,42841,443.98491921755385,1121365,0,40213,0,0,0,0,0,91,0.9503817192509738,0,0.0,0,0.0,0,0.0,0.04802,0.1266417005116303,0.3102873802582257,0.0149,0.356971634039153,0.643028365960847,23.163319974908152,4.1061564220601685,0.3112271540469974,0.2624020887728459,0.2242819843342036,0.202088772845953,11.49726098286641,6.238971971891973,15.89974028022624,11249.782947944635,43.65220039861443,12.19071552280374,13.51461131321902,9.562186015294069,8.384687547297608,0.5715404699738903,0.7830845771144279,0.6862416107382551,0.5890570430733411,0.1007751937984496,0.7504488330341114,0.9225,0.8827160493827161,0.7333333333333333,0.0969696969696969,0.4981590574374079,0.6909090909090909,0.6129032258064516,0.5378548895899053,0.1018062397372742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860125768331,0.0041759155086609,0.0061083883798565,0.0081457706996018,0.0100456528149179,0.0123179037167492,0.0144239100518853,0.0162885398487492,0.0187041977125686,0.0209909015546162,0.02302314615495,0.0250769862451242,0.0271526242738909,0.0291830997518303,0.0310926797061979,0.0332189515462212,0.0353818275951333,0.0374290487604935,0.0392792905191146,0.041338069987186,0.0563912521530351,0.0707359171504785,0.0837536041939711,0.0966934763181412,0.1087531758330961,0.1239878221526882,0.1349135645349453,0.1451451557977183,0.1542693544424147,0.1633198172105297,0.1754238566104397,0.1861431570745222,0.1967783687364723,0.2055888660335244,0.2135521579764224,0.2222443868164993,0.2301326722058429,0.2388274597586079,0.2466073616847456,0.2524695743851848,0.2587609186093596,0.2631431178493718,0.2693935953833782,0.2744774082321672,0.2786855416863787,0.2825988019532836,0.2862818590704648,0.2892126354295004,0.292431474510717,0.2960266909311495,0.2928799321513671,0.2898357317777839,0.2881265227371949,0.2856151811651804,0.2838204949304514,0.2791544297601566,0.2760829340038905,0.276425431402139,0.2765961075954765,0.2772023491724506,0.2770580548814635,0.2776892665368501,0.2788345221707755,0.2798006984451809,0.2812059533194773,0.2828138775086864,0.282526934931991,0.286593557659262,0.291316137106306,0.29736107287529,0.3004247243809868,0.3046455282839987,0.3086858854361662,0.3121569806781445,0.3180300500834724,0.3226563416637334,0.3256170473708416,0.3266948300140816,0.3350670681631535,0.3363705391040243,0.0,2.0267603528398843,48.50450114620834,139.5670786506358,201.2863481218361,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95848,48257,459.9261330439864,4899,49.974960353893664,3980,41.002420499123616,1541,15.712377931725232,77.51248185563044,79.7964571469516,63.42745123530996,65.11000308815856,77.31871059915666,79.60639799684684,63.35461661587313,65.04102822937293,0.1937712564737808,190.0591501047586,0.0728346194368327,68.97485878563714,230.9846,162.4421263554915,240990.52666722308,169478.88986258607,543.14788,365.32576994378337,566077.5185710709,380552.4058340115,484.40038,237.59411471802457,502073.14706618816,245370.9642842318,2278.59476,1068.2229521471977,2348035.806693932,1085255.2034102783,924.62453,418.5816066740663,950633.3778482598,422696.1718284803,1489.30144,628.4612286117351,1520161.923044821,627432.916204135,0.38098,100000,0,1049930,10954.11484851014,0,0.0,0,0.0,47316,493.1140973207579,0,0.0,43949,455.158167097905,1118301,0,40152,0,0,0,0,0,80,0.824221684333528,0,0.0,0,0.0,0,0.0,0.04899,0.1285894272665231,0.3145539906103286,0.01541,0.3603498542274052,0.6396501457725947,23.268098901225613,4.026614406325053,0.3103015075376884,0.2801507537688442,0.2040201005025125,0.2055276381909547,11.276547614977904,6.107820262263068,16.305432005123798,11294.690597291315,45.12933082912388,13.581431765660229,13.81357004952591,8.978332846168474,8.755996167769272,0.5836683417085428,0.7838565022421524,0.7263157894736842,0.5738916256157636,0.1051344743276283,0.7660119555935099,0.8958333333333334,0.9080118694362018,0.7305699481865285,0.124223602484472,0.5076539693841224,0.6992125984251969,0.6581291759465479,0.5250403877221325,0.1004566210045662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023070851800133,0.0046991624553123,0.0068518837612382,0.0090308571196639,0.0118247018427842,0.0141259025729685,0.0160961902628739,0.0181718061674008,0.0204833917065749,0.0226608037631659,0.0244534330039424,0.0266436944282066,0.0287085272751559,0.0308441224296564,0.0327213121514211,0.0348699092101593,0.03684809602649,0.0389508060753719,0.0406382448267265,0.0425797720056217,0.0565341175734442,0.0704405014585794,0.083808366166485,0.096416418098559,0.1092017563256151,0.1249617119258109,0.1360076307561867,0.1462460259232086,0.1553836303489489,0.1639591788655322,0.1753459714620587,0.186116841457224,0.1967040482885152,0.2052233917107044,0.2137122019265621,0.2238992458922134,0.2323141186299081,0.2405304944468775,0.2478401177602898,0.2534680165459241,0.259075603118225,0.2641105080481725,0.268507492601719,0.2730691178226095,0.2770989595935156,0.2811019175526038,0.2851162442999178,0.2885325976918405,0.2925230515633854,0.2955385946966716,0.2924207539087599,0.289487715844305,0.2879817642781227,0.2848567530695771,0.2824206642066421,0.2790304654314033,0.2754915553314847,0.2750559156286222,0.2763046209214681,0.2765893234390811,0.2772188687681645,0.278698829260627,0.279596085779721,0.2799982256132724,0.281760467936372,0.284195350513606,0.2835031237687848,0.2892144715648618,0.292895118414693,0.2992309484968539,0.3027865428203191,0.3065576315925676,0.3115389346783122,0.3136292661164399,0.3162142333088775,0.3168259818035241,0.319619783157582,0.3209202573601092,0.3221243661595943,0.3281539030706622,0.0,1.991909071007824,50.7287388786286,145.6974594750635,204.00671951341732,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95736,48196,459.6494526614857,4811,48.93665914598479,3869,39.80738698086404,1442,14.61310269908916,77.31288813594676,79.66995695211082,63.318020272784125,65.06136840819184,77.12006106004216,79.48383064573058,63.244120532063086,64.99321047005017,0.1928270759046029,186.1263063802454,0.0738997407210391,68.15793814166682,230.39368,162.11091710287002,240655.21851759005,169331.19944730302,537.14858,362.0225956642258,560384.0457090333,377458.0990058346,482.41594,236.82983613614095,500299.1455669758,244638.9551154305,2203.92068,1050.1746428203824,2269313.904905156,1064181.0006897957,885.94117,406.9748878525885,910076.1991309434,409790.8370679151,1398.89312,606.6865621244946,1420212.250355143,597160.8191953277,0.38048,100000,0,1047244,10938.873568981366,0,0.0,0,0.0,46805,488.2384891785744,0,0.0,43618,452.0138714799031,1116288,0,40118,0,0,0,0,0,95,0.9818668003676776,0,0.0,2,0.0208907829865463,0,0.0,0.04811,0.1264455424726661,0.2997297859072957,0.01442,0.3634914308489438,0.6365085691510562,23.089361706017737,4.154164828762063,0.3070560868441457,0.2835357973636598,0.2101318170069785,0.1992762987852158,11.558344434030024,6.382335689680814,15.580652911347304,11386.25083148578,44.536499780425984,13.535960753072109,13.51270419141957,8.923306902654236,8.564527933280079,0.589041095890411,0.8012762078395624,0.7138047138047138,0.5608856088560885,0.1245136186770428,0.7599660729431722,0.9235668789808916,0.8676470588235294,0.7291666666666666,0.1477272727272727,0.5141263940520446,0.7092651757188498,0.652122641509434,0.5088566827697263,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349652616014,0.0046726603756372,0.0070008827199951,0.0093040263275504,0.0115234792160372,0.0140835030549898,0.0163964515142245,0.018407162765056,0.0208356762393546,0.0229981568707761,0.0251307290064595,0.0270273045603442,0.0288594055332716,0.0308807927237518,0.0326640942574747,0.0344585236786076,0.0367394275773516,0.0386930084877664,0.0406921725023658,0.0428354103280123,0.0577788450495411,0.0721871697481453,0.0858458214918674,0.0980410712595817,0.109916065629086,0.1263474130726836,0.1369261138114745,0.1471320899335718,0.1570091660790974,0.1661947965596379,0.1770685273721841,0.1876250527249326,0.1981929086342434,0.208198442558404,0.2162111609893495,0.2251625552466298,0.2337894243432066,0.2413769827877151,0.2496281409317482,0.2563044947811043,0.2615142430520991,0.2674048782769346,0.2720078544559843,0.2755608283002588,0.2791765348879577,0.28331875361926,0.287325389275522,0.2911208891827962,0.2947222617768514,0.2966605068637803,0.2935122319215432,0.2907162314613543,0.2892605063326806,0.2866414199814986,0.2834711235353595,0.2805793991416309,0.2766230677764566,0.2764293109398366,0.2778062619633579,0.2784993300580616,0.2795962698026291,0.281183932346723,0.2817184070241455,0.2830436720142602,0.2835509263703561,0.2837939731156236,0.2852515839418132,0.290742950449036,0.2956010086859064,0.299056154822335,0.3040065338717728,0.3076072068275208,0.3134597451041342,0.3169683257918552,0.322676857116227,0.3221610219149186,0.3233185908189721,0.328643216080402,0.3347141673570837,0.3387400980761976,0.0,2.2874934342328697,51.10261383933177,144.03427108873652,194.7900661802942,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95785,48472,462.4001670407684,4911,50.03915018009083,3894,40.100224461032525,1498,15.315550451532078,77.37208356525132,79.71002331804414,63.35007434272507,65.07920498240988,77.17526569943922,79.51410507459151,63.27478663697495,65.00594762019908,0.1968178658120933,195.9182434526241,0.075287705750128,73.25736221079637,230.4577,162.19678515768004,240598.94555514955,169334.22264204212,540.65374,364.5577863539736,563898.4600929165,380053.4387993669,482.91312,236.65060844670649,500251.719997912,244122.39955844264,2227.98048,1057.5711204912866,2296926.0322597483,1075013.0401328888,892.43313,412.5185543731125,918351.0779349584,417317.9562281273,1451.42144,631.3383142791033,1485732.776530772,635114.3755526643,0.38233,100000,0,1047535,10936.315707052252,0,0.0,0,0.0,47194,492.1438638617738,0,0.0,43751,452.83708305058207,1114604,0,39994,0,0,0,0,0,81,0.8456438899618939,0,0.0,0,0.0,0,0.0,0.04911,0.1284492454162634,0.3050295255548768,0.01498,0.3585828929340379,0.641417107065962,23.43370739583738,4.017992678500268,0.3186954288649204,0.2768361581920904,0.2046738572162301,0.1997945557267591,11.343824749294727,6.310317874933491,16.209760486028912,11382.214614382994,44.594881168050506,13.238877376981154,13.91057850866577,8.802596875890597,8.642828406512987,0.5868002054442732,0.8237476808905381,0.684931506849315,0.560853199498118,0.1285347043701799,0.7517064846416383,0.9227467811158798,0.8563049853372434,0.6864864864864865,0.1777777777777777,0.5157972079353417,0.7483660130718954,0.62,0.5228758169934641,0.1137123745819397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019953408285222,0.0044402092372572,0.0067077997199163,0.0091323737060777,0.0114919149801688,0.0136830102622576,0.0160026093426698,0.0183480621262526,0.0206221386527141,0.0226998260157609,0.0247794140252713,0.026960457311754,0.0288533689674667,0.0311679485991412,0.0332876161405752,0.0351504380889403,0.0371186949456054,0.0390957171004874,0.0410726902456257,0.0428726106692208,0.0577161878724003,0.0719231091030789,0.0860509240332505,0.0987296283453645,0.1106288387185132,0.1252971316887644,0.1362080476457933,0.1469703252421507,0.1567637927171466,0.1661364098938415,0.1774273359006906,0.1887261525158082,0.1989219266214571,0.208029476400293,0.2154429962052466,0.2249786805178696,0.2328647925033467,0.2406151978144288,0.2476250935225701,0.2538128606760099,0.2595265355214007,0.2657097437815597,0.2711295488659599,0.2753597165361871,0.279195884793633,0.2827285707252228,0.2872191362658259,0.2897268717987824,0.2935517656033825,0.2973724436010963,0.2939635366984187,0.2915597513618837,0.2893847669998592,0.2874384627600445,0.2855765093401783,0.2820798997049245,0.2781499857788452,0.2782963254077422,0.2792928086282808,0.280135339684801,0.2804427355532328,0.2808957808564232,0.2820042519488098,0.2836792746344282,0.2848158775705404,0.2850690478662652,0.2855964737665292,0.2912301612194969,0.294955987145452,0.2990783592421185,0.3047765514745793,0.3115323854660347,0.3163436974266309,0.3211002260738508,0.3265933656354827,0.3322014051522248,0.3357961399276236,0.333268063442334,0.3385889898450027,0.3387937453462397,0.0,2.1445317572194744,50.79301111564461,142.72731343732465,199.5335776293391,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95643,48245,461.8320211620296,4693,47.949144213376826,3702,38.08956222619533,1442,14.658678627813847,77.25911226955019,79.6557257105013,63.27736057920528,65.04594675936437,77.07871965322688,79.47979756514292,63.21011666231926,64.98257780676245,0.1803926163233029,175.92814535838386,0.0672439168860208,63.36895260191966,230.78418,162.3883875001818,241297.0525809521,169785.53549566813,536.35029,362.174038370146,560153.8429367543,378043.8555800069,480.75242,235.8669893146813,498794.5589326976,243566.6682123567,2142.34216,1003.3102655943236,2207218.0922806687,1016370.8449069188,876.6594,395.6783235782221,901764.1751095218,398872.0905640994,1403.20838,586.3274034865683,1429272.168376149,582570.3384843332,0.37901,100000,0,1049019,10968.047844588731,0,0.0,0,0.0,46762,488.2845582008093,0,0.0,43462,450.5504846146608,1109206,0,39797,0,0,0,0,0,80,0.8364438589337432,0,0.0,0,0.0,0,0.0,0.04693,0.1238225904329701,0.3072661410611549,0.01442,0.3715390879478827,0.6284609120521173,23.2677404789948,4.116287160165695,0.3028092922744462,0.2766072393300918,0.2133981631550513,0.2071853052404106,11.759261065070197,6.451390807283497,15.2180228311433,11276.488117244233,42.38745681403172,12.670202578720255,12.750644944054738,8.72223670064842,8.24437259060829,0.5764451647757969,0.78125,0.6940231935771632,0.5620253164556962,0.1460234680573663,0.7495412844036697,0.908883826879271,0.8473520249221184,0.6988636363636364,0.1493506493506493,0.5042113323124043,0.6854700854700855,0.6325,0.5228013029315961,0.1451876019575856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020258703645553,0.0043500745292489,0.006597243367233,0.0089213136075434,0.0110788951625209,0.0131383292933819,0.0151926096620918,0.0172524679195973,0.0191472178775518,0.0211067209859356,0.0232219567958825,0.0253411506196671,0.0274209308305477,0.0295344740556076,0.0316199007234187,0.0337486429199193,0.0357505438723712,0.0377624845597317,0.0397749139285008,0.0417101038322004,0.0572345183606077,0.0713971512358609,0.0852033476493998,0.0981909695897565,0.1097711648732272,0.1244108831721756,0.1350504514073287,0.1451585407432662,0.1550931371500673,0.1635598316295851,0.1748495372867096,0.1869264191217102,0.1971703661750931,0.2067613163314491,0.215707245002591,0.2253086419753086,0.2342295991410164,0.2425503128699475,0.2495565763143533,0.2553897752202428,0.2608504024681621,0.266611957796014,0.2716037668714567,0.276419833201144,0.2799663689424495,0.2836338932806324,0.2865294656182199,0.2896088502568155,0.2916936801431498,0.2942909614596958,0.2909708463062553,0.2877008737837316,0.2852706613028442,0.2824883323187523,0.2795663698364952,0.2762923897712638,0.2722997260534275,0.2730451627731354,0.2733333333333333,0.274154697118387,0.2755705200149644,0.276959769775097,0.2779101358411703,0.2785668244760063,0.2781284368574571,0.2795587549847221,0.2800079210161532,0.2838733892155636,0.287985186737938,0.291961287774047,0.2959927552637537,0.3000843970883005,0.3035379422427803,0.3075822603719599,0.3075998520710059,0.3088735201031532,0.3149071137290439,0.3182997405707443,0.3189084895259096,0.3267822736030829,0.0,2.3937640333489125,47.11748223308577,135.95283554928406,192.72926277060404,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95629,48197,459.1912495163601,4755,48.55221742358489,3769,38.952618975415405,1414,14.451683066852103,77.28554750318864,79.71630523606717,63.27381344368565,65.07148168320207,77.0989467281599,79.53287235667185,63.2014257073361,65.00266011941088,0.1866007750287366,183.43287939532613,0.0723877363495475,68.82156379118953,228.82838,160.99110117665367,239287.64286984075,168349.66503534876,536.82325,361.8361800129274,560905.1647512784,377919.8046752841,479.32038,234.59950392533932,498641.6045341894,243337.21914308565,2161.94416,1032.7840362484512,2234229.8256804943,1053627.0720937003,857.54286,393.9168962408107,885000.2091415784,400252.2364620964,1379.56908,605.8372356463625,1411153.269405724,605828.0168680062,0.38065,100000,0,1040129,10876.711039538215,0,0.0,0,0.0,46787,488.7847828587562,0,0.0,43438,451.6412385364272,1121578,0,40211,0,0,0,0,0,79,0.8261092346463939,0,0.0,2,0.0209141578391492,0,0.0,0.04755,0.1249179035859713,0.2973711882229232,0.01414,0.359775641025641,0.6402243589743589,23.466320684304858,4.0887218688040745,0.3069779782435659,0.2791191297426373,0.2050941894401698,0.2088087025736269,11.263232327567538,5.982894904033129,15.255353959088517,11397.561647589522,43.209341833777806,12.718942172163633,13.17319619964007,8.655100592543025,8.662102869431092,0.5760148580525338,0.8051330798479087,0.6732929991356957,0.6080206985769728,0.0952986022871664,0.7480519480519481,0.9376443418013856,0.8615384615384616,0.7718446601941747,0.0994764397905759,0.5,0.7124394184168013,0.5997596153846154,0.5485008818342152,0.0939597315436241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026550466153222,0.0048484110803436,0.007218860415059,0.0093611831071809,0.0116184430065519,0.0136601167374629,0.0159031326825187,0.0181840470742072,0.0203025436990518,0.0225822639615743,0.0246096715291028,0.0270650733140843,0.0291913702239789,0.031325698617711,0.03345379452762,0.0354985519238725,0.0377098445595854,0.0396817978834989,0.0417898330488363,0.0437889202974892,0.0581649400474602,0.0720386497731107,0.0856575379894491,0.098524918343694,0.1108070990914853,0.1265411176545354,0.1376056113502311,0.1488853588067848,0.1582067828897379,0.1664553425599587,0.1784916532680126,0.1891223733003708,0.1999498653994964,0.209110434153718,0.218342392802408,0.2279866360316561,0.2353099007244432,0.2421072801253367,0.2494573801975022,0.2551874355153044,0.2609642265689237,0.2670234317364778,0.2716658171429926,0.2756596480276584,0.2807660019709708,0.2846268675129847,0.2886117788461538,0.2914215873500878,0.2947679467074482,0.2969968978945284,0.2948705869685182,0.2911134933069459,0.2882787750791974,0.2845303069681481,0.2827199501579814,0.2792726604830563,0.2754528913851752,0.2763151419713597,0.2765714480501772,0.2770476309360344,0.2768555690411726,0.2780574125049154,0.2796585406578727,0.2796691200996197,0.279838536317386,0.2816930506417374,0.2827609484431693,0.2878166915052161,0.2911300624935262,0.2944422700587084,0.297881908530827,0.3013224181360202,0.3055970149253731,0.3087706146926536,0.3138976159674737,0.313451924194861,0.3187641296156744,0.3268924302788845,0.327350656308599,0.3263041065482797,0.0,1.7671411359307452,50.47490063449196,138.35853194496212,189.1054759120589,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95820,48615,463.5984136923398,4766,48.61198079732833,3717,38.33228970987268,1406,14.339386349405135,77.35864855579545,79.66121089228594,63.35358995694328,65.05337164646184,77.17719946762797,79.48181626895175,63.28531117939907,64.98761275292375,0.1814490881674828,179.39462333418987,0.0682787775442008,65.75889353808861,229.2664,161.3814803323278,239267.5641828428,168421.26939295325,540.03113,363.9909031411014,563105.6877478606,379385.976978816,483.80847,237.78731437523533,501612.9931120852,245647.15919745897,2125.68268,1011.6020954145208,2193000.2504696306,1030319.6153355464,832.31976,385.39163588271225,854251.617616364,387936.321053141,1366.21624,583.9918578234674,1395105.2598622416,585357.8445993218,0.38224,100000,0,1042120,10875.7983719474,0,0.0,0,0.0,47131,491.36923398037993,0,0.0,43703,452.7864746399499,1119474,0,40223,0,0,0,0,0,82,0.8557712377374244,0,0.0,1,0.0104362346065539,0,0.0,0.04766,0.1246860611134365,0.2950062945866554,0.01406,0.3565076798706548,0.6434923201293452,23.047394046997383,4.050038941909204,0.3048157115953726,0.2867904223836427,0.2050040355125101,0.2033898305084746,11.28355732877442,6.13486542434736,15.121579812875622,11363.77442352795,42.805521190362334,13.226518367434698,12.80699136537192,8.397243366854905,8.374768090700806,0.5722356739305892,0.7908067542213884,0.6919682259488085,0.5538057742782152,0.1031746031746031,0.7437446074201898,0.9066937119675456,0.842443729903537,0.7134831460674157,0.1468926553672316,0.4945269741985926,0.6910994764397905,0.635036496350365,0.5051369863013698,0.0898100172711571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023075521729449,0.0048212784490879,0.0069953465738009,0.0093153520655118,0.0115823054883872,0.0136920807690351,0.0159821537709326,0.0179531382289637,0.0202582596081155,0.0223715706131467,0.0244694362504097,0.0264836810470387,0.0283768095096216,0.0302338025850004,0.0324060708541262,0.0346504998760637,0.0367005701159891,0.0387195090345521,0.0408409157006938,0.0429523214657505,0.0575747459784264,0.0708931427794795,0.0842382190172731,0.0967138518448458,0.1091439832232093,0.1245007079907855,0.1352987321375567,0.1458218099817044,0.155693864696651,0.1647869808529342,0.1768081303963999,0.1876947040498442,0.1982623635335566,0.2076018594476346,0.2158684381432518,0.2250382322303242,0.2338920257995402,0.2414324436796346,0.2495519205027565,0.2560155757888106,0.2618433382307007,0.267140918238405,0.2728961787434468,0.2772611800795667,0.2816615638820042,0.2855417826954828,0.2893614893164797,0.2917635695858274,0.2958932822689162,0.2985985682456394,0.2957913137017615,0.2916214471171678,0.2879000758704021,0.2852222782621226,0.2827675118177911,0.2795927090648185,0.2755108486245776,0.2750356306210376,0.2754292924986784,0.2758946729938987,0.2768448217825485,0.2785408824862542,0.2801605216955104,0.2805865859628822,0.2823225312335455,0.2837728985318955,0.2840228285868423,0.2891528504716833,0.2924620655898189,0.2961879152167035,0.2990603541741958,0.3049585467603105,0.3081780667750406,0.3111026904130352,0.3152768759855301,0.3179648387472348,0.3249621785173979,0.3280370072405471,0.3359977949283351,0.3445736434108527,0.0,1.7421221543927248,50.85071517939579,133.54594813340685,188.5575027592166,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95861,48245,460.3436225367981,4919,50.12465966347106,3867,39.74504751671691,1456,14.813114822503415,77.41454581429173,79.70328988732228,63.37712166936033,65.06800221728761,77.2285206466581,79.52139266511514,63.30685658324286,65.0019357386917,0.1860251676336304,181.89722220714089,0.070265086117466,66.06647859591419,231.06226,162.58834236027195,241038.85834698155,169608.43550585947,542.65275,365.9959763081744,565500.1929877636,381215.8920814247,481.87219,236.7173781763283,498941.3421516571,244091.62780904493,2213.91372,1047.275889241812,2276859.536203461,1059936.7868469418,861.96855,394.63497469999214,887007.6151928313,399561.4484154545,1413.0333,605.6066488380865,1439108.0418522651,601035.9742922026,0.38027,100000,0,1050283,10956.311743044616,0,0.0,0,0.0,47248,492.26484180219273,0,0.0,43660,451.7061161473383,1111968,0,39900,0,0,0,0,0,80,0.8345416801410375,0,0.0,1,0.0104317710017629,0,0.0,0.04919,0.1293554579640781,0.2959951209595446,0.01456,0.3538371411833626,0.6461628588166374,23.20329747640048,4.071422150339496,0.3105766744246185,0.278251874838376,0.21722265321955,0.1939487975174554,11.187465496271765,5.969481327560863,15.553705548401544,11264.993061095096,44.22063830056013,13.065107926394168,13.501539669950589,9.43722741954551,8.216763284669865,0.5743470390483579,0.7797397769516728,0.6952539550374688,0.5714285714285714,0.0893333333333333,0.748471615720524,0.8823529411764706,0.8693009118541033,0.7616822429906542,0.1125,0.5011021307861866,0.7082018927444795,0.6295871559633027,0.5063897763578274,0.0830508474576271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026218555448701,0.0046704827516336,0.0071590090957948,0.0092481676243071,0.0111393434292102,0.0130241455448264,0.0153830480847595,0.0176161574947722,0.0197558608713417,0.0220321993331014,0.024112676056338,0.0262906849118343,0.0281748029716094,0.0303445152391637,0.0322913229957109,0.0341871514149969,0.0362833140208574,0.0380952380952381,0.0400705906778781,0.0420961752499037,0.0563891350815911,0.0706902858337252,0.0836319064680369,0.0963091300467265,0.1083591331269349,0.1237088358927779,0.1343446434813928,0.144281462585034,0.1537181265336605,0.1633643218233227,0.1748891948879039,0.185996475332735,0.1968598902591405,0.2063634277722539,0.2147825800283519,0.2241106500691563,0.2327598702181984,0.2406570934178296,0.2474092383047234,0.2542464060067759,0.2602829992370118,0.2657480775074212,0.2703328919992434,0.274776986170149,0.2790937678326433,0.2826443024100688,0.2857571589346004,0.2890405561698504,0.2927138769115229,0.295470135078092,0.2926068364575209,0.2901799203406126,0.287553587743341,0.2835749906315759,0.2810203839772457,0.2770740492033453,0.2738689904035549,0.2737700364373131,0.2739933342402394,0.2740063875088715,0.2745710989542629,0.2747181521781828,0.2766329098130549,0.2769353551476456,0.277966020807483,0.2780046523649522,0.2788735573802872,0.2831806181084019,0.2875460421155049,0.2919877339204277,0.2949685534591195,0.2998167059439643,0.3041517360682071,0.3063747393506106,0.3092935433360965,0.3113207547169811,0.318065390989905,0.3232464929859719,0.3299972951041385,0.3423120089786756,0.0,2.3559217137944617,49.36601288733837,144.57255525708334,196.93785140560308,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95693,48607,463.2000250802044,4808,48.83324799097113,3826,39.22961972140073,1503,15.23622417522703,77.36002699221102,79.73059630000829,63.33690834044432,65.08797392250749,77.16445927658329,79.54233468919108,63.26224190564948,65.01913545372412,0.1955677156277318,188.26161081720727,0.0746664347948424,68.83846878336897,231.08976,162.53357734346167,241490.7673497539,169848.9725930441,540.67551,364.2104973437332,564274.0952838766,379866.65413743234,482.55241,237.61318894632768,499488.4578809317,244643.30592549092,2192.839,1042.7549895618504,2249512.963330651,1047700.01438125,896.54187,408.0780723275244,920821.1467923464,410408.7344893788,1466.24244,628.1116700252502,1488162.833227091,619260.8871642591,0.38191,100000,0,1050408,10976.85306135245,0,0.0,0,0.0,47150,491.9482093779064,0,0.0,43559,450.4300210046712,1111948,0,39876,0,0,0,0,0,89,0.9196074948010826,0,0.0,1,0.0104500851681941,0,0.0,0.04808,0.1258935351260768,0.3126039933444259,0.01503,0.362657091561939,0.6373429084380611,23.38723870959705,4.090262969915548,0.3175640355462624,0.2660742289597491,0.1975953998954521,0.2187663355985363,11.43023545260715,6.269931826853924,16.035098194542986,11386.221390422676,43.75651218635983,12.5211594679567,13.66229113363632,8.366096975577717,9.206964609189088,0.5718766335598536,0.8104125736738703,0.6831275720164609,0.5674603174603174,0.1242532855436081,0.7461273666092944,0.9186813186813186,0.8772455089820359,0.6906077348066298,0.1614583333333333,0.4958708708708709,0.7229129662522202,0.6095346197502838,0.528695652173913,0.1131782945736434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0048860099950328,0.0070629065484103,0.0093561429529246,0.0118800602140038,0.0139505519123457,0.0164220183486238,0.0187797260609524,0.0209660107334525,0.0234648539077376,0.0254567450634624,0.0274424048293704,0.0298019374344419,0.0319304534124384,0.033894282854755,0.0360732009925558,0.0380718547986076,0.0402100805447147,0.0421052631578947,0.0438910019277861,0.058257091531938,0.0720334104397157,0.0851351776665722,0.0979868313103477,0.1100367984310582,0.1254982396413732,0.1353369898473387,0.1448854263120363,0.1553998483278681,0.1644657090444876,0.1765859334597483,0.1878726881161867,0.1991303875210609,0.2077511752487154,0.2169824808366967,0.2263891811667238,0.2339506861541894,0.2413723307357554,0.2491156863634302,0.2555724736402248,0.2616853763714348,0.2677221475725886,0.2739879882720136,0.2779805862428036,0.2814195380675542,0.2850038773525682,0.2881667458551101,0.2909933943089431,0.2948021722265322,0.2979505766062603,0.2943209942967825,0.2915698433869127,0.2875732311852185,0.2848000693401132,0.2813794332031888,0.2782797474353682,0.2744751381215469,0.2748626912514711,0.2757364829217651,0.2769504176292873,0.2777881387541961,0.2783020722739963,0.280563872255489,0.2808056609214525,0.2821143061687149,0.2816154403394391,0.2825945333522164,0.2871724224302577,0.2911963093698668,0.2976742343199017,0.3013269108424975,0.3022911265146304,0.3058558840072495,0.3079307477130112,0.3116931364354044,0.3164126611957796,0.3214177521963041,0.324432844810279,0.3281463281463281,0.3287619047619047,0.0,2.929158809103712,49.633930533949474,138.20526991101568,195.33676227301484,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95735,48384,461.85825455684966,4699,47.74638324541704,3744,38.355878205463,1442,14.540136836057869,77.33346816806463,79.69556310282309,63.32120940122799,65.070418852067,77.14008033238481,79.51020797157328,63.24678419365987,65.0022129294091,0.1933878356798146,185.35513124980696,0.0744252075681188,68.20592265789571,230.4489,162.2277639061331,240715.4123361362,169455.020531815,540.56086,364.9882790430133,563892.9231733431,380501.1597138344,483.56518,238.00322954396125,500861.095733013,245345.5172966745,2131.21196,1027.2754913771062,2182260.824149997,1029291.561284613,882.40444,409.0569514526505,899735.6766073015,405485.4511890174,1399.21954,609.9740063364384,1411125.2311067008,594864.6408484103,0.37972,100000,0,1047495,10941.609651642557,0,0.0,0,0.0,47133,491.5339217632005,0,0.0,43661,451.7574554760537,1112592,0,39907,0,0,0,0,0,88,0.919204052854233,0,0.0,0,0.0,0,0.0,0.04699,0.1237490782681976,0.306873802936795,0.01442,0.3542518397383483,0.6457481602616517,22.781258783399537,4.017039398044312,0.3028846153846153,0.2873931623931623,0.2077991452991453,0.2019230769230769,11.25924973620009,6.16362462060086,15.561669402313791,11273.980933448302,43.303768332931895,13.265264922176565,13.06501084324016,8.562076836213814,8.411415731301359,0.5881410256410257,0.8020446096654275,0.699294532627866,0.5719794344473008,0.1335978835978836,0.7376623376623377,0.8828828828828829,0.841642228739003,0.7551020408163265,0.1436781609195402,0.5214368482039398,0.745253164556962,0.6380832282471627,0.5103092783505154,0.1305841924398625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277673641015,0.0044619316107573,0.006597243367233,0.0088906500843341,0.0109944875002542,0.0129316050463806,0.0151694327773926,0.01758486252577,0.0197559380237929,0.0218848842803476,0.0242662210512286,0.0262922847903085,0.0283516551319889,0.0305455144643206,0.0327263347949445,0.0349051143176086,0.036738666721892,0.0387253426860777,0.040744398814784,0.0426214482126489,0.0572618699628345,0.0713007253582306,0.0839717086070476,0.0964732363552217,0.1088563804541571,0.1242703045685279,0.1346504817282797,0.1447456652936105,0.1549208519365106,0.1636332435997812,0.1764845298629664,0.1870455332409972,0.1965608379286716,0.2053116317735337,0.213909331925239,0.223013377037562,0.2317670830681983,0.2401395375007033,0.2475601452564684,0.254382048199668,0.2603300528500885,0.2653039746483155,0.2703572273480009,0.2750377272618391,0.2783627717391304,0.2820046006421217,0.2854519332875257,0.2894045033718139,0.2923399084822005,0.295406313846965,0.293171880255634,0.2900244445054794,0.28751985828565,0.2832214765100671,0.2803953284758188,0.2770431588613407,0.2735092740468999,0.2733515808106469,0.273883612678818,0.2751852379595326,0.2763759968623349,0.2771454452365011,0.2769926629981658,0.2780732005784848,0.2785946929782546,0.2803837953091684,0.2810315056472386,0.2856740782437377,0.2909707177300999,0.2947293783975419,0.2987317777677483,0.3020130691399663,0.3024826464886498,0.3038108947647549,0.3066280265494998,0.3102098897189612,0.3115501519756838,0.3199353665926076,0.3277101769911504,0.3290076335877863,0.0,2.7977288493930854,49.440482862007656,143.2639594935166,183.22390974202585,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95795,48033,457.74831671799154,4804,48.92739704577483,3814,39.19828801085652,1414,14.41620126311394,77.34149214859087,79.67925875471889,63.33904717832892,65.07192744241638,77.16786596878856,79.50791616053012,63.27441762061961,65.00997530289398,0.1736261798023122,171.34259418877207,0.0646295577093098,61.95213952240408,230.38774,162.02630369389922,240500.7985803017,169138.58102604438,536.36816,361.510643918434,559299.9321467718,376766.9021540101,479.28286,234.60047081361515,495687.57242027245,241455.2686460749,2178.64636,1023.4440577532348,2243750.1748525496,1037839.3212101208,866.68659,390.0689971353885,892779.988517146,395242.7382326958,1370.34258,576.2098126837716,1400089.6706508691,576915.668339068,0.3798,100000,0,1047217,10931.854480922804,0,0.0,0,0.0,46721,487.0817892374341,0,0.0,43352,447.9043791429616,1122052,0,40225,0,0,0,0,0,98,1.0230179028132993,0,0.0,1,0.0104389581919724,0,0.0,0.04804,0.1264876250658241,0.2943380516236469,0.01414,0.3608617594254937,0.6391382405745063,23.718479567983845,4.009843214082944,0.3057157839538542,0.2826428945988463,0.2155217619297325,0.1961195595175668,11.137657875457515,6.089933016610042,15.000806538402738,11353.425458243046,43.786385402615736,13.240560205064028,13.212908694905227,9.177943354055492,8.154973148590976,0.5930781331934977,0.8153988868274582,0.7006861063464837,0.5802919708029197,0.1189839572192513,0.7702205882352942,0.9123595505617976,0.8584905660377359,0.7433155080213903,0.144927536231884,0.5223771093176816,0.7472353870458136,0.6415094339622641,0.5322834645669291,0.1131147540983606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0042983283152377,0.006819219645847,0.0091350648294923,0.0115582235336012,0.0139246824418616,0.0160023661879895,0.0183091831837351,0.0204513615493951,0.0225273656293838,0.0249156661095674,0.0271205586362702,0.0292223822258794,0.0312245675845515,0.0332249909714698,0.035215562239656,0.0371317628785917,0.0390041493775933,0.040981306954561,0.0429618371468426,0.0575402207708198,0.07191175701814,0.0853163999874257,0.0979741089441829,0.1100526870389884,0.1252602542829664,0.1354313515576142,0.1453634884685317,0.1548000170743159,0.1636108402361791,0.1753115382132019,0.1864657753374909,0.1966675356273896,0.205854074252125,0.214336752080379,0.2247385024074381,0.2328515228850675,0.2403650774049417,0.2482649306538352,0.2552889945481353,0.2612353715116681,0.2663127187864644,0.2720239993386009,0.2777013693715242,0.2817579114499375,0.2852752062356311,0.2881070354330217,0.2914204559864066,0.2950663157351499,0.2979833147211456,0.2956466893904828,0.2936805012819986,0.2893324717649042,0.2864882779290768,0.2835462548537214,0.2802222968640264,0.2768101065929728,0.276969696969697,0.2773536028359125,0.2768359569769926,0.2773167358229599,0.2764992407659389,0.2773063578982569,0.2780318069279325,0.2796054999640054,0.2817132157902949,0.2829182002339582,0.2858673726676752,0.2898316403641348,0.2948057097541633,0.2986479079115658,0.3032961190855928,0.3064709218070695,0.3092728383745799,0.313410393759985,0.3171337353671514,0.3179581795817958,0.3222516826432796,0.3213495575221239,0.3218216318785579,0.0,2.401790474093384,46.7859761506775,152.73086719082957,190.52324098072415,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95700,48846,465.0783699059561,4817,48.975966562173454,3771,38.79832810867293,1433,14.618599791013583,77.3419109081298,79.7101607189137,63.33255108723839,65.08069501306296,77.15621419398475,79.52828027983797,63.26209293357367,65.0137826940158,0.1856967141450525,181.88043907572649,0.0704581536647168,66.91231904716233,231.09152,162.61105608920238,241474.9425287356,169917.5089751331,540.53649,364.483180562692,564220.1149425288,380256.36422433873,489.93932,241.72715814739576,507742.34064785787,249347.39731936064,2161.46952,1028.6993721229535,2226169.8223615466,1042501.9562413308,859.18132,392.8911534226597,881046.3427377221,393804.7893653711,1387.13732,594.3589158645735,1416284.6812957155,593204.1201692624,0.38221,100000,0,1050416,10976.133751306164,0,0.0,0,0.0,46982,490.3134796238244,0,0.0,44247,458.1086729362592,1110797,0,39838,0,0,0,0,0,87,0.9090909090909092,0,0.0,0,0.0,0,0.0,0.04817,0.1260301928259334,0.2974880631098194,0.01433,0.3485361481776538,0.6514638518223461,23.92264190211174,4.0260682870897,0.3099973481835057,0.2824184566428003,0.2068416865552903,0.2007425086184036,11.07802497626821,5.953100175612701,15.334793119175757,11432.669826315436,43.120871244965045,13.101936856774408,13.196847257419169,8.611241830950615,8.21084529982085,0.5751789976133651,0.7887323943661971,0.6869118905047049,0.5820512820512821,0.095112285336856,0.7647569444444444,0.9083333333333332,0.8858024691358025,0.7301587301587301,0.1257861635220125,0.4917907598319969,0.6905982905982906,0.6106508875739645,0.5346869712351946,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026632372002592,0.0048241613459004,0.0071616960843984,0.0096591370764605,0.0117541790377028,0.0141117536857538,0.0164429085497008,0.0186576304401077,0.0209934587080948,0.0231715554827748,0.0253513618796707,0.0276214728714009,0.0298530485484816,0.0320722836949578,0.034125501769738,0.036098246774727,0.0384121460676484,0.0405462904347284,0.0424854950402395,0.0444356443897914,0.0593426563201704,0.0730114201375441,0.0862029167978176,0.0993405345141306,0.1117017910258844,0.127306390181972,0.1377119093590206,0.1477010209404575,0.1573690282881805,0.1660623484734708,0.1780886835331243,0.1895506882520994,0.1997977007493773,0.2083210322016292,0.2171120642252282,0.2257511014678858,0.2340012712006155,0.2415669083347383,0.2494386354873097,0.2559842555723374,0.261932021880674,0.267310054395508,0.2727627702246991,0.2773698144399056,0.2814636693749165,0.2855012447928221,0.2900532081377152,0.2947069967324001,0.297591016120268,0.2998222631821473,0.2959217974748221,0.2915757251300636,0.2886221660700498,0.2860639216815433,0.283356523283697,0.2801897730046375,0.2769914573022728,0.276875786857638,0.2764620754235123,0.277290439671892,0.2772208844337421,0.2784613264562868,0.2801203560533244,0.2803442432890395,0.279014594167126,0.2795037504217602,0.2813404460586799,0.2856383311440545,0.2923383571703326,0.29614226869455,0.3019860342794958,0.3060641337707694,0.3090578346506084,0.3120960997491067,0.3172355588897224,0.315335538752363,0.312623423970834,0.3183665176757416,0.3194137168141593,0.3257229832572298,0.0,2.416242319683122,49.54545073285186,135.74468440448268,192.56611943762476,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95703,48390,461.37529649018313,4810,49.13116621213546,3827,39.35090853996218,1448,14.712182481217932,77.33810060160408,79.71969393922107,63.31256206328344,65.07447695180493,77.14853294187756,79.53528980306153,63.24175928865272,65.00822626782353,0.1895676597265208,184.404136159543,0.0708027746307138,66.25068398139433,230.17258,161.8611320289826,240507.1732338589,169128.58743088788,533.18394,359.2036102445964,556477.2995621873,374685.611744562,476.45206,233.77533624392933,493516.1384700585,240976.7636153169,2206.18132,1040.1597032387651,2271396.9259061893,1053154.1572248256,871.09217,398.7796818916784,894831.9697397156,401391.5689636799,1408.76996,598.6597787506366,1434151.6775858644,593840.7843700656,0.38097,100000,0,1046239,10932.144237902678,0,0.0,0,0.0,46511,485.32438899512033,0,0.0,43033,445.346540860788,1120522,0,40232,0,0,0,0,0,85,0.8881644253576167,0,0.0,0,0.0,0,0.0,0.0481,0.1262566606294458,0.301039501039501,0.01448,0.3590203106332139,0.6409796893667862,23.454144395378428,4.121415361382877,0.320616671021688,0.2722759341520773,0.1978050692448393,0.2093023255813953,11.197653995055656,5.99899865382887,15.428338893274065,11352.56196306821,44.01482325343567,12.93443790027696,13.84080728996232,8.426599922213644,8.812978140982732,0.5853148680428534,0.8214971209213052,0.6976365118174409,0.5865257595772787,0.1048689138576779,0.7573333333333333,0.917995444191344,0.8899082568807339,0.7272727272727273,0.1639344262295081,0.5136935603256847,0.7512437810945274,0.6277777777777778,0.5438898450946644,0.087378640776699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022805132675194,0.004422803814161,0.0066603041809653,0.0090046141024859,0.0112636216562713,0.0136077980016093,0.0160128919078799,0.0182213733440918,0.0201155596461625,0.0223109609378999,0.0244465181144187,0.0266462669555484,0.0286968681239589,0.0307804792651405,0.0328869999381047,0.0349189289737203,0.0373568573854341,0.0394048804780876,0.0412222152912066,0.0433147559768737,0.0580230797347397,0.0717276609999162,0.0850016788382439,0.0979585826821341,0.1099147930990846,0.1253596513497503,0.1356146214653297,0.1450795408565283,0.1538683479375935,0.1627545218529405,0.17450843074934,0.1852144542836729,0.196160167176395,0.2046108564113225,0.2139272823311911,0.2239669329905475,0.2326134536358763,0.2407351137220477,0.2485580634906217,0.2553345098668378,0.2605031315481772,0.2663771813808682,0.2714992659942226,0.2770309130122214,0.2806578563793606,0.2843629367438304,0.2887750757594731,0.2923202281523732,0.2955175181914701,0.2981593312412647,0.2956235294117647,0.2923410920882684,0.2890192107557731,0.2854217440837575,0.2836004566548549,0.2810431539202348,0.2775198938992042,0.277763235390354,0.2778449435523694,0.2787453966446654,0.2799477221807319,0.2811392803716243,0.2815422511690046,0.2811817168338907,0.282175255511142,0.2830568904045884,0.2850285197944315,0.2899956340048649,0.2943200778642936,0.2979090659448433,0.3022046961821115,0.3067885117493472,0.3103576060774504,0.3124766947572526,0.3145406051687667,0.3190747413692897,0.3243283582089552,0.3263697280252266,0.3297701763762694,0.3277404921700224,0.0,2.4708623733347266,48.58435333769249,148.27142093783678,191.7189706406672,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95657,48161,458.35641928975406,4800,49.03979844653293,3813,39.33846974084489,1482,15.137418066633913,77.27782633283482,79.6867376498433,63.2892740309558,65.07142639087375,77.08907468367171,79.50194116335194,63.21825376675031,65.00454042244341,0.1887516491631089,184.79648649135072,0.0710202642054866,66.88596843034134,228.86644,161.03420888756864,239257.3883772228,168345.45186193235,533.66922,359.7908649603926,557411.6687748936,375638.92340382055,484.70116,238.2286447241405,503569.6498949371,246691.3447732681,2196.77336,1040.105769519644,2268384.331517819,1059201.9502175937,895.35078,403.2040906544297,924675.1309365756,410184.0959411535,1445.32098,611.3439130852786,1477888.0792832724,610269.1858828695,0.37833,100000,0,1040302,10875.33583532831,0,0.0,0,0.0,46322,483.7283209801688,0,0.0,43853,455.3247540692265,1123879,0,40338,0,0,0,0,0,104,1.076763854187357,0,0.0,0,0.0,0,0.0,0.048,0.1268733645230354,0.30875,0.01482,0.344034879112168,0.655965120887832,23.5294802914681,4.188031643406192,0.2976658798846053,0.2690794649881983,0.2250196695515342,0.2082349855756622,11.46870588617478,6.180815882461235,15.800048469590228,11337.727054008148,43.990531082370126,12.62163034243338,13.090236087551103,9.584512763355551,8.694151889030094,0.5908733280881195,0.8138401559454191,0.7242290748898679,0.6002331002331003,0.1020151133501259,0.7690956979806848,0.9434389140271492,0.8629737609329446,0.7712765957446809,0.108433734939759,0.5149588631264024,0.7157534246575342,0.6641414141414141,0.5522388059701493,0.1003184713375796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026852846401718,0.00520241765374,0.0073599577690699,0.0098986757726353,0.0121369347372704,0.0142826580821303,0.0167465578786333,0.0188137722532607,0.0209590638489392,0.0232839245654111,0.0253028236187037,0.0273229656716724,0.0296447974975304,0.0320329811904148,0.0341940346276546,0.0363865789582557,0.0382789993989761,0.0401636450480759,0.0421973859473859,0.0441786749525577,0.0590423642025623,0.0731357352325094,0.0864202714476156,0.0991570284463434,0.1119553402771182,0.1270138668360326,0.1380222160864855,0.1488536606153584,0.1577151779603011,0.166115596015115,0.176862905658751,0.187623821329205,0.198376248830072,0.2080114668358973,0.2163518689737155,0.2248025083927008,0.233244027684751,0.2408082444534449,0.2477081915135012,0.2538908724709329,0.2593602977724861,0.2644529606954245,0.2693167173108528,0.2741516236838637,0.2775450228909371,0.2807030518167924,0.2847972972972973,0.2884564014501049,0.291799966324297,0.2950664011499861,0.2916066112585369,0.287861255751164,0.2853174267422512,0.2827438618814887,0.2808201864600835,0.2766100864023531,0.2732830714647744,0.2733217231294976,0.2733687573681423,0.273823970304804,0.2743513478122603,0.2752635943608577,0.276257187663356,0.2771586502028262,0.2775101267946597,0.2799034994422683,0.2811683145812024,0.2859744418977047,0.2895384831855916,0.2918274010737721,0.2948274291958838,0.3008521674694331,0.3073256397390868,0.311363117436639,0.3143499437991757,0.3226074566611256,0.3291934989267095,0.3327892266884309,0.3308333333333333,0.3333333333333333,0.0,2.06358787588873,49.655655268356426,144.62121262521785,193.68542122415948,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95822,48165,459.80046335914506,4923,50.28072885141199,3861,39.750787919266976,1475,15.05917221514892,77.39792083527668,79.70312002963418,63.37134666233784,65.07221123996459,77.21260532158878,79.51905334826994,63.30167756185213,65.0048661256101,0.1853155136878967,184.06668136424287,0.0696691004857115,67.34511435448098,230.9879,162.39660331649034,241058.44169397425,169476.5089307821,536.7208,361.8286545763305,559559.4748596356,377045.02575384616,480.62297,235.86169823992944,497871.5326334245,243281.14097129903,2206.33364,1030.443971811903,2273859.405981925,1046980.4266782984,867.96402,388.8634381577914,894386.5604975893,394568.8054313114,1438.798,609.7003665395983,1470778.2137713677,611250.6599318312,0.37938,100000,0,1049945,10957.201895180648,0,0.0,0,0.0,46851,488.34296925549455,0,0.0,43427,449.5522948800901,1117879,0,40025,0,0,0,0,0,96,0.9914215942059236,0,0.0,2,0.0208720335622299,0,0.0,0.04923,0.129764352364384,0.2996140564696323,0.01475,0.34050804731433,0.65949195268567,23.34586071647275,4.1111554903764524,0.3108003108003108,0.2727272727272727,0.2069412069412069,0.2095312095312095,11.12340808690245,5.971617293832473,15.796582805505736,11217.10026085066,43.97093921279084,12.965978257527768,13.464399030622484,8.782078902782493,8.758483021858094,0.5822325822325822,0.811965811965812,0.7116666666666667,0.5782227784730913,0.0951792336217552,0.74235807860262,0.9206008583690988,0.8571428571428571,0.6722222222222223,0.135593220338983,0.5147275405007363,0.7257240204429302,0.6583143507972665,0.5508885298869144,0.0838607594936708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002318376933668,0.0044685831247656,0.0068259039505045,0.0088644740716671,0.0109080188679245,0.0130467525594838,0.0152126510566322,0.017209895434838,0.0193309765617017,0.0213112070553088,0.0235743704280474,0.0256578609899974,0.0276776082601325,0.0295337374069995,0.0315698339568968,0.0335140157968096,0.0355871886120996,0.0376750308344475,0.0399160972773151,0.0419212155903627,0.0558812484352833,0.0700218589522345,0.0837055677886127,0.0959565162538374,0.1084408466143857,0.1240525598063363,0.1345986639804898,0.1445386915848064,0.153665388436108,0.162682453374516,0.1743873024077185,0.1852781172602502,0.1960191757889358,0.2053633898898023,0.2135443010137884,0.2224509901592889,0.2305488355500061,0.2391367876812408,0.2452964910689999,0.2510579892485416,0.2569569638977488,0.2629206134152466,0.2676327702982234,0.2727109601167548,0.2773119426134161,0.2817083215519467,0.2852899699234983,0.2877946063881066,0.2921272858766401,0.2954261598937722,0.2932014369202724,0.2896946617169628,0.2873034354089806,0.2842860841796369,0.2813258001538188,0.2789036924248191,0.273778981001999,0.2733980899518407,0.2736278674596432,0.2735155111758644,0.2751238961135745,0.2751783363137933,0.2764029496312961,0.2760088237260188,0.2775512162356666,0.2784645751090795,0.28,0.2860644147682639,0.2899615250087443,0.2942870669928193,0.2996184939594877,0.3027250556674796,0.3059814023624026,0.3081470253884047,0.3109527381845461,0.3144876325088339,0.3172843256379101,0.3207509486718594,0.3229026166711626,0.3228346456692913,0.0,2.037065128538176,49.86522905322075,137.89516044444093,202.07851724590117,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95545,48294,461.2590925741797,4808,49.04495264011722,3831,39.43691454288555,1468,15.05049976450887,77.19945181010942,79.67064453055862,63.224607941291474,65.05369176602733,77.00828125716626,79.48065909924694,63.15161910407766,64.9833583911663,0.1911705529431628,189.98543131168333,0.0729888372138134,70.33337486102198,228.48188,160.7521765787752,239135.13004343503,168247.40364682296,535.5311,361.0050520312174,559835.0410801193,377172.41944716114,481.19827,235.8731969284799,498382.68878538907,243087.2567187781,2205.53788,1042.2928418909316,2275120.16327385,1057680.87599101,905.19059,413.790404195412,933277.9109320216,418993.723117573,1428.70676,618.5134154850974,1466815.4272855725,622990.4368532434,0.37992,100000,0,1038554,10869.778638337955,0,0.0,0,0.0,46673,487.8015594745931,0,0.0,43486,449.9659846145795,1119888,0,40215,0,0,0,0,0,84,0.8791668847140091,0,0.0,0,0.0,0,0.0,0.04808,0.1265529585175826,0.305324459234609,0.01468,0.3652766639935846,0.6347233360064154,23.320810223424758,4.090899299350901,0.3014878621769773,0.2785173583920647,0.2101279039415296,0.2098668754894283,11.45944175889807,6.412931975320536,15.763351928190072,11337.933716969408,43.99589981908986,13.049493288068794,13.022976132568225,8.927947689289557,8.995482709163284,0.5815713912816497,0.795688847235239,0.7038961038961039,0.5850931677018634,0.1181592039800995,0.7312013828867762,0.90625,0.8679245283018868,0.7419354838709677,0.1268292682926829,0.5168287210172027,0.715670436187399,0.6415770609318996,0.5379644588045234,0.1151919866444073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024936391927096,0.0045555082080314,0.0068852059468681,0.0089576216040344,0.0112696990674756,0.0132622479561255,0.0154309333061182,0.0174432863274065,0.0198117069177241,0.0219719406839586,0.0243899935329562,0.0263230954315033,0.0283928240406994,0.0308016050668949,0.0328517691798941,0.0350388688190296,0.0370239774330042,0.0391914362918312,0.0412070456131579,0.0431469166605768,0.0580968420171759,0.072364833689862,0.0851124215571883,0.0978357076624799,0.1094129832794301,0.1253670896812018,0.136633473764841,0.1464354322305229,0.1557846015385604,0.164187612256531,0.1751503958353584,0.1866053114248814,0.1974690448917253,0.2067085677931707,0.215893162628994,0.2246278604754499,0.2329994964471549,0.2412547957571654,0.2485718187404693,0.2548810180080852,0.2607419949667737,0.2660741921868405,0.2711542794796077,0.2742717863746608,0.278434475622375,0.2826879130381076,0.2860371105029251,0.2897791041730436,0.2933380065944907,0.2958603359344002,0.2933619421615859,0.2900821208112875,0.2871541139820414,0.2849873509215757,0.2830118528873752,0.2795616522338877,0.2765300304105423,0.2765272255266011,0.2772256905841102,0.279032344579735,0.279906191369606,0.2808797642358432,0.2817966108812968,0.2826427420798281,0.2827033659745446,0.2843165392543116,0.284504391468005,0.2883993849822712,0.2915351707693386,0.2958358002762976,0.3032281302057539,0.3051549635534113,0.3094025586883617,0.313342876516236,0.3164181868691545,0.3200375410605349,0.3299263490154817,0.3307616221562809,0.3320744537361748,0.3386183465458663,0.0,2.516792729710388,50.202853237433565,135.7190379684205,201.69963966209133,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95673,48678,465.596354248325,4933,50.21270368860598,3938,40.4920928579641,1484,15.14533881032266,77.33990302576841,79.73014613490365,63.32261558699434,65.08883550536022,77.15294437896651,79.54615041126272,63.253110715301226,65.02286502939808,0.186958646801898,183.9957236409333,0.0695048716931125,65.97047596214622,229.61114,161.6341010863308,239995.7563784976,168944.3218947151,540.41141,363.89691665903774,564197.4642793683,379699.7550605059,490.46872,240.79236124366895,507829.56529010274,248095.9292143981,2254.17176,1062.9143915963125,2320552.6324041267,1075767.9081830415,938.15584,422.406529781124,963576.8189562364,424501.7296218614,1454.08044,612.0388502398113,1485890.1884544229,610397.0905624883,0.38133,100000,0,1043687,10908.898017204436,0,0.0,0,0.0,47143,492.0615011549758,0,0.0,44358,458.7814743971653,1117583,0,40099,0,0,0,0,0,80,0.8361815768294085,0,0.0,0,0.0,0,0.0,0.04933,0.1293630189075079,0.3008311372390026,0.01484,0.3522550544323484,0.6477449455676516,23.224753581085043,4.162653918028024,0.3039614017267648,0.2841543930929406,0.1934992381919756,0.2183849669883189,11.430786109853036,6.084931141384153,15.7585875097455,11373.116050709656,45.09082037581074,13.7856465618304,13.498109899985993,8.557576681650424,9.249487232343924,0.5733875063484002,0.8105451295799821,0.6875522138680034,0.5551181102362205,0.1220930232558139,0.7521815008726004,0.9108695652173912,0.8359621451104101,0.7416267942583732,0.14375,0.5,0.7405159332321699,0.634090909090909,0.484629294755877,0.1171428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0044599868227662,0.0066665990197968,0.0087961646284483,0.0107989384094444,0.013080478022761,0.0153708158356097,0.0175246999265126,0.0196475302584232,0.0218837642531065,0.024183710082526,0.0263195713317867,0.0286792530437643,0.0306944358609892,0.0327474636970679,0.0345840096773193,0.0365182798595211,0.0384978669960453,0.0404552121584088,0.0423329511101845,0.0576744283222079,0.0724897138729231,0.0856948014478308,0.0987954342222923,0.1110747742425521,0.1259600939463828,0.1374539821976086,0.1478915213828043,0.1575923275733174,0.1676333422674886,0.1794071090914964,0.1902072785494828,0.2002805079585979,0.2079986009552852,0.2168392328598307,0.2260129112270094,0.2346346904629113,0.2415360043191685,0.2484378366731308,0.2553323029366306,0.2610998057533993,0.2663939694968737,0.2720188259779575,0.2763025572263193,0.2808632988790216,0.285141155332398,0.2896627556821731,0.2922080396265955,0.2946791174112108,0.296990945156911,0.2937339448307398,0.2904684043474079,0.2882543255028836,0.2853616640443437,0.2827722302179622,0.2784997632973443,0.2750355057598233,0.2752933091159,0.2756047393203801,0.2766671401178893,0.2778461194363677,0.2783075440907571,0.2795419052576783,0.2800561047288271,0.2805970864481503,0.2812573000752719,0.2829781800641262,0.2878849588019674,0.291885091214091,0.2961489998424949,0.3006279080272846,0.3034857353794231,0.3065967016491754,0.3078959310240508,0.3089688607122879,0.3144743045733145,0.3200670936261055,0.3242694805194805,0.3307522123893805,0.3349961627014581,0.0,2.606256270686863,49.157142522094645,151.26888223344577,199.6755359574378,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95786,48425,461.9464222328942,4834,49.172112834861046,3858,39.713528072996056,1475,15.00219238719646,77.331780499572,79.67368374550408,63.32970022966426,65.06337454452137,77.13764371883761,79.4842811915725,63.25504893534702,64.99338553779444,0.1941367807343965,189.402553931572,0.0746512943172419,69.98900672692798,227.97082,160.4375868794054,238000.1461591464,167495.86252626206,541.79973,365.9576144550376,565075.8043973023,381497.7078644453,489.77696,240.72333889027965,508134.7900528261,248754.78988775867,2185.96636,1046.051869753282,2251559.4345729025,1061495.656727791,838.44777,390.13408228448856,860864.8027895518,392828.0461492157,1421.61948,620.102596847957,1447256.9686593032,614595.1654766563,0.37983,100000,0,1036231,10818.188461779384,0,0.0,0,0.0,47229,492.4832438978556,0,0.0,44301,459.37819723132816,1123019,0,40362,0,0,0,0,0,85,0.8769548785835091,0,0.0,1,0.010439939030756,0,0.0,0.04834,0.127267461759208,0.3051303268514687,0.01475,0.3644101346001583,0.6355898653998416,22.747779687149027,4.008107873939811,0.324779678589943,0.2840850181441161,0.1990668740279937,0.1920684292379471,11.152322570857727,6.168205637219086,15.983331355584024,11286.10748889444,44.7029276441865,13.469562629464944,14.414980381388183,8.683452905379772,8.1349317279536,0.5813893208916537,0.7974452554744526,0.6911412609736632,0.5703125,0.087719298245614,0.761400651465798,0.9085239085239084,0.8706199460916442,0.7572815533980582,0.1117647058823529,0.4973384030418251,0.7105691056910569,0.6156462585034014,0.501779359430605,0.0805604203152364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024309951886553,0.0049166700458213,0.007093062193674,0.0094376041285708,0.0116653953724891,0.01374759417102,0.0157725168736363,0.0178855812813916,0.0198626075933839,0.0219071505348825,0.0240702013367777,0.0262236505703695,0.028338748817505,0.0303567197849174,0.0324584851330849,0.03449808745994,0.0365487385558639,0.038636269344065,0.0405919398083678,0.042683244301438,0.0574374386909607,0.0708614467283853,0.0844341007254581,0.0965992685695069,0.1080141208704357,0.1238256274768824,0.1339347233853101,0.1440087632538897,0.1541400730036075,0.1626912691269127,0.174895037140704,0.1855826229933797,0.1957086772590345,0.206247470714981,0.2156441920359242,0.2250451508537112,0.2331380753138075,0.2411097865449065,0.2481459642120064,0.2541177817203686,0.2596950747286535,0.2651389440717975,0.2710477136706645,0.2761603527184721,0.2800437131928844,0.2836981708820194,0.2861256118476233,0.2891642996344368,0.2929209158880926,0.2965895892725161,0.2934558813634589,0.2898550724637681,0.2864818487418597,0.2836519027545187,0.280502827290402,0.2766358001071401,0.2739416000633061,0.2735311971911863,0.2731107505763812,0.2734398660324586,0.2744434050514499,0.2758940005910748,0.2766375865603883,0.2778459410623062,0.2787944284341979,0.280506842899516,0.2825907942187012,0.2865851752274361,0.2915708812260536,0.2965854427884236,0.2996829710144927,0.3024707687423946,0.3061803061803061,0.3120394986707178,0.3146813886029755,0.3212392507951466,0.3204462102689486,0.3231878253904686,0.3272976680384087,0.3273577552611068,0.0,2.2394640734748235,53.65743629003133,141.09514897510022,190.1401895538307,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95674,48662,464.2222547400547,4915,50.01358780860004,3909,40.13629617241884,1478,14.936137299579825,77.34192318165195,79.71753761338837,63.32298576779221,65.07508567851863,77.14426396115611,79.52667204528738,63.24714710455629,65.0048027825449,0.1976592204958365,190.86556810098895,0.0758386632359275,70.28289597373316,229.83862,161.76371787697428,240231.01365052155,169078.0336109855,540.81869,364.3848367665311,564558.5320985848,380148.4414531324,488.21824,239.18415317230637,505708.4996968874,246386.11676777812,2228.83092,1052.47330049194,2290562.744319251,1061091.8492718565,896.19991,408.5816244386706,916754.144281623,407148.05056161183,1432.96602,620.5777447916205,1451353.011267429,610447.9339798103,0.38245,100000,0,1044721,10919.59152956916,0,0.0,0,0.0,47147,492.0459058887472,0,0.0,44103,456.4144908752639,1113877,0,39947,0,0,0,0,0,87,0.9093379601563644,0,0.0,1,0.0104521604615674,0,0.0,0.04915,0.1285135311805464,0.3007121057985757,0.01478,0.3534449202024134,0.6465550797975866,23.602853988771955,4.047047475084458,0.3054489639293937,0.2824251726784343,0.2092606804809414,0.2028651829112304,11.272555417048196,6.169766492522755,15.873598497964734,11389.003795166687,44.76412453524743,13.46922583191052,13.504487648200616,9.14541096751177,8.645000087624522,0.5712458429265797,0.7753623188405797,0.6800670016750419,0.5794621026894865,0.1147540983606557,0.7271952259164536,0.8955555555555555,0.8299120234604106,0.7336683417085427,0.1147540983606557,0.5043859649122807,0.6926605504587156,0.6201641266119577,0.529886914378029,0.1147540983606557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024604355882263,0.0046827013713625,0.0068880164744311,0.0092327381315131,0.0113491910142068,0.0135102115615646,0.0159451909548763,0.0181042141055619,0.0203282376399611,0.0226490825688073,0.0249466819785087,0.0270381285877121,0.0290871689380303,0.0312097513729611,0.0332899789421528,0.0352840198136523,0.0373121186695256,0.0394436371185385,0.0414422096965411,0.0434234384443842,0.0577973697130501,0.0719573617030188,0.0855883279101501,0.0982342046554699,0.1104896580835795,0.1257157372225691,0.1360460424320937,0.1458901482870291,0.1553526758033824,0.164924107430387,0.1763906709940373,0.1877416629661319,0.1981797596237589,0.2069697699363001,0.2158654322482634,0.2249786710691057,0.2341021747867637,0.2427135282396514,0.2494356275028076,0.2549877453787479,0.2605641951309821,0.2656994091148423,0.2709442984636507,0.2764830000479547,0.2809758705319174,0.2851984669796789,0.2888101557413992,0.2926965791850598,0.2966820837705831,0.2998996858583458,0.296906799649572,0.2942327298779311,0.2911240768927222,0.2878731020148952,0.284117856295945,0.2807808037146217,0.2763149586411568,0.2783277065783867,0.2779588145974442,0.2782475566553326,0.2777850430623797,0.2778808208366219,0.2787005118562624,0.2805087582282717,0.2806110233204041,0.2817218783185267,0.2835850444029639,0.2887967322503196,0.2932550300587274,0.2978740126537509,0.2994025425632272,0.3054347256433101,0.3066217312613118,0.310809798486778,0.3165926748057713,0.3179552567520575,0.3222833358109112,0.3234946871310508,0.3351264120494889,0.3451066961000736,0.0,2.814858531874607,50.52515070547839,141.07100202583328,202.27520272602908,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95732,48565,463.61718129778967,4841,49.36698282705887,3850,39.56879622278862,1463,14.843521497513892,77.32392886815877,79.68882103889324,63.31606620966248,65.06520567200057,77.13552812501221,79.50611636713624,63.24437414191531,64.99868910205905,0.188400743146559,182.70467175699423,0.0716920677471719,66.51656994152688,230.43658,162.17970681583688,240710.08649145527,169410.13121614183,541.09464,364.5442373332852,564597.2088747754,380175.69604028447,483.74622,237.0040246966283,501456.9527430744,244435.18008739653,2177.00132,1027.6337054809856,2239033.3848660844,1038423.751181408,882.97375,399.2886394463805,904813.6986587556,399564.5546383443,1416.42118,606.5840830596541,1438833.3681527595,598760.2623806731,0.38096,100000,0,1047439,10941.367567793422,0,0.0,0,0.0,47223,492.6252454769565,0,0.0,43699,452.6595077925877,1112584,0,39985,0,0,0,0,0,89,0.9192328583963564,0,0.0,1,0.0104458279363222,0,0.0,0.04841,0.1270737085258294,0.3022102871307581,0.01463,0.3725994852504454,0.6274005147495545,23.439495093555426,4.015250969347065,0.3194805194805195,0.2862337662337662,0.1961038961038961,0.1981818181818181,11.4054874744245,6.231700018661976,15.652460123064918,11377.080209937096,44.30742619635423,13.517245054049551,14.053480909047964,8.401813223937118,8.334887009319596,0.592987012987013,0.8112522686025408,0.691869918699187,0.5814569536423841,0.1297509829619921,0.7513089005235603,0.9235807860262008,0.8314285714285714,0.7028571428571428,0.147239263803681,0.525887573964497,0.7313664596273292,0.6363636363636364,0.5448275862068965,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022182381719286,0.0045118575672469,0.0067793857957659,0.0092970798024751,0.0114029377059852,0.0136048879837067,0.0158534347409416,0.0180571008604938,0.020407119999182,0.0226272140882563,0.024749582209828,0.0271155465204624,0.0292693458347469,0.0313024669104393,0.0334743576514291,0.0354030782588921,0.0370918959231024,0.0390156311626844,0.0408776581916497,0.0427059240274218,0.0581012935759701,0.0717514124293785,0.0848897324846107,0.0977517928873372,0.1102299929346507,0.1256148516422489,0.1374744012817928,0.147473779481446,0.1571616266276424,0.1666970421432936,0.1782980784756983,0.1890585461859549,0.1996238639822585,0.2082741127850786,0.216822286009656,0.2264572997873848,0.2348858488250128,0.2431580842635938,0.2503689576096088,0.2570075779288523,0.2623036285277353,0.2680738415405519,0.2718653709409813,0.2762289772318322,0.2809622845745004,0.2846325551568069,0.2875629494149775,0.2906726445975723,0.2945217019401495,0.2976531649916137,0.2948911403319681,0.2921741045012316,0.2888622754491018,0.2855470443705737,0.2830903097437116,0.2786471864779778,0.2744881367704864,0.2743278844108455,0.2744009401025257,0.2749519812193213,0.2759488948988156,0.2774211334724902,0.2778044153515812,0.2785018460032916,0.2789607158237236,0.2797240878562352,0.280511616061575,0.2840635079698118,0.2877110628459329,0.2920749051833122,0.2951940934003714,0.2997944447372582,0.3025897035881435,0.3068806993744818,0.3116226838854576,0.3159136486964728,0.3196511802736431,0.3186899392037654,0.3170924414011061,0.317910447761194,0.0,2.5610785744114053,49.555398323707806,146.95169693074922,192.99763640454137,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95789,48549,462.94459697877625,4885,49.70299303677875,3850,39.54525049849148,1427,14.50062115691781,77.4066300966336,79.74668417589973,63.35719594835807,65.08824088481948,77.21950059733533,79.56429873634944,63.28548237386715,65.02098943203382,0.1871294992982797,182.3854395502877,0.0717135744909214,67.25145278566913,230.48234,162.15335852191487,240614.62172065687,169281.81578460455,540.59893,364.66654999755934,563708.2754804832,380041.6958080357,487.84329,239.33313069234435,505611.3958805291,246928.5487450849,2221.24816,1064.2703389583603,2283516.228376954,1075676.2665424645,878.06326,409.2642198396587,903223.1571474804,413815.1456217925,1391.56226,606.1651564772687,1416018.7077848187,600914.4292646338,0.38132,100000,0,1047647,10937.028260029858,0,0.0,0,0.0,47048,490.4947332157137,0,0.0,44104,456.75390702481496,1115261,0,40046,0,0,0,0,0,94,0.9708839219534602,0,0.0,0,0.0,0,0.0,0.04885,0.1281076261407741,0.2921187308085977,0.01427,0.3624042427813789,0.637595757218621,23.055926710209597,4.045532846107941,0.327012987012987,0.2690909090909091,0.1968831168831168,0.207012987012987,11.147924141473233,5.975795908637972,15.410896686660308,11332.124179812892,44.25019328384854,12.68724611637217,14.363179728197755,8.380509848060717,8.819257591217886,0.5867532467532468,0.8011583011583011,0.7148530579825259,0.5725593667546174,0.1191969887076537,0.7664172901080631,0.9106382978723404,0.8704225352112676,0.7938144329896907,0.1684782608695652,0.5051001133358519,0.7102473498233216,0.6537610619469026,0.4964539007092198,0.1044045676998368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0048467887489606,0.0069818654164256,0.0092762870467268,0.0115234792160372,0.0137675403759597,0.0160681878428253,0.0182207931404072,0.0203094975264728,0.0223914200335666,0.0243712464386004,0.0265971637900958,0.0287267719125143,0.0307191830179744,0.0325849414481279,0.0347893432465923,0.0371198013656114,0.0392486160353299,0.0411831319543287,0.0430296720458094,0.0572337872384828,0.0714390294917381,0.0855091452229967,0.0984130320546505,0.1105690714263136,0.1260949965657526,0.1363005204413682,0.1463461313542652,0.1555911224925309,0.1647600685518423,0.1759680664493291,0.1873520094281482,0.1984440025643533,0.2074074882893113,0.2156195079086116,0.2248343308515228,0.2332344610718348,0.2408700050581689,0.2483813541064281,0.2544459957428303,0.2603604332597362,0.2661191396894751,0.27125439042562,0.2754318962730614,0.2797561952866041,0.2851107333776759,0.2880912764440219,0.2914447001385834,0.2947335723438127,0.2974348829541708,0.2946719435694478,0.2908781044269437,0.2888360443518883,0.2855493665040838,0.2828454983327158,0.2789079310818441,0.275028750571073,0.2742727554533144,0.2742410895785336,0.2745056422229297,0.2738431780984972,0.2740313951437474,0.274488228210771,0.2743990251467819,0.2751053245424035,0.2758451865594722,0.2772430485196442,0.2824853501999814,0.2873563218390804,0.292786808377618,0.2978399211257506,0.3017245870890429,0.3054254007398274,0.3096654275092936,0.3147843567251462,0.3189754192510912,0.3170548459804658,0.3228593872741555,0.3299108349094839,0.3304314912944738,0.0,2.57287576411576,51.77672274013826,138.49756885057755,194.12599206854864,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95691,48069,458.9877835951134,4771,48.64616317104012,3792,39.07368509055188,1441,14.672226228171928,77.29491858535671,79.6991670457109,63.29396199958445,65.07495812526135,77.11186441463676,79.51862956078321,63.2248708094724,65.00919425041131,0.1830541707199557,180.53748492768307,0.0690911901120543,65.76387485003465,229.4886,161.3690652688231,239822.09403183163,168635.14592047647,538.29075,363.7200128901375,561965.2945418064,379535.91965189285,479.97978,236.44496975343435,498198.1064049911,244426.7382039634,2162.7826,1030.6293066346225,2230013.355487977,1046966.3009067652,880.7119,405.8694960363113,906105.7884231536,409881.0609527653,1390.81142,596.0970103598505,1417499.451359062,592119.0724996389,0.37896,100000,0,1043130,10901.004274174164,0,0.0,0,0.0,47054,491.1433677148321,0,0.0,43321,449.3839546038813,1118937,0,40133,0,0,0,0,0,77,0.7942230721802468,0,0.0,0,0.0,0,0.0,0.04771,0.1258971923158117,0.3020331167470132,0.01441,0.3509197493430361,0.6490802506569638,23.33105989496905,4.033290862554195,0.3201476793248945,0.2805907172995781,0.202795358649789,0.1964662447257384,11.467720995667769,6.265904516612037,15.495748430738846,11338.293988597925,43.61888119631724,13.149783070564496,13.769572034798692,8.588597241740535,8.110928849213526,0.5933544303797469,0.8139097744360902,0.6985172981878089,0.5851755526657998,0.1154362416107382,0.7665827036104114,0.9216494845360824,0.8727272727272727,0.7162790697674418,0.1490683229813664,0.5140330642060746,0.7236614853195165,0.6334841628959276,0.5342960288808665,0.1061643835616438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024937403063448,0.0047692978984646,0.0069974102472959,0.0091810279091047,0.0114009996233598,0.0136271442112666,0.0158373811175966,0.0179399685335403,0.0198571837786962,0.0217580593941753,0.0240549828178694,0.0261654784163054,0.0284835201020796,0.0306503143357724,0.0326906005491442,0.0347990651306128,0.0368079087263344,0.0388920035715027,0.0408621837549933,0.0426516572858036,0.0573875802997858,0.0717262029398216,0.0850219848257479,0.0975789396155343,0.1094676429008503,0.1245318153924286,0.1355941198322984,0.1451994123033026,0.1543705191627579,0.1641257818451008,0.1758173102816825,0.1866480591977151,0.1971823330543205,0.2060170260198673,0.2148637653112836,0.2246050286195099,0.2330046183708529,0.2410386804977385,0.2483027179219363,0.2546707012355867,0.2604392169574328,0.2662570943771575,0.2712197431496715,0.2746816623102563,0.2789965986394558,0.2832615908334053,0.2871539992738836,0.2903660739270904,0.2945382606222038,0.2968422716673912,0.2931801384129543,0.290078640736725,0.2878027523580596,0.2855124693671615,0.2830843116328708,0.279367020869964,0.2771328251035966,0.276786153316615,0.2773960340329758,0.2776856852574728,0.2782644504342617,0.27938187057175,0.2808194836416849,0.2826106352605282,0.2839345839345839,0.2865215353367012,0.2884270462633452,0.293386874137282,0.2968073215034232,0.3008024032570457,0.3049584147616234,0.3088615611970233,0.3116258741258741,0.3147085472666868,0.3206491326245103,0.3207902163687676,0.3254766551568833,0.3265469061876248,0.323481998925309,0.3327130628954224,0.0,2.111167109910101,51.88513844615682,134.77309127264155,192.0750040534988,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95713,48172,459.4255743733871,4882,49.53350119628473,3901,40.09904610658949,1506,15.358415262294567,77.3593554540744,79.73056787029,63.33143217950936,65.08378222906717,77.16836792019274,79.54224324044736,63.25867772342581,65.01405206251188,0.1909875338816675,188.32462984264,0.0727544560835511,69.73016655528852,230.92696,162.34408886391392,241270.21407750252,169615.50558849258,538.7379,363.0140886431063,562242.6525132427,378648.1446022028,482.45068,236.9094347464115,499272.7947091827,243860.5358595782,2233.4364,1060.3600149023198,2298718.8365216847,1073242.8882481863,908.74789,416.66266778603534,931749.5742480124,417623.7792003544,1457.7708,628.3254418153841,1488099.3386478326,627819.7904353129,0.38053,100000,0,1049668,10966.827912613751,0,0.0,0,0.0,46996,490.3409150272168,0,0.0,43680,451.57920031761626,1114521,0,39960,0,0,0,0,0,96,1.002998547741686,0,0.0,0,0.0,0,0.0,0.04882,0.128294746800515,0.308480131093814,0.01506,0.3701081612586037,0.6298918387413963,23.166797613906247,4.043884952202358,0.3096641886695719,0.2801845680594719,0.2073827223788772,0.2027685208920789,11.424037530200128,6.317337363240489,16.196586035712134,11331.211036119288,44.681517911671854,13.550583191984549,13.608941640474374,8.910864621989527,8.611128457223412,0.5847218661881569,0.8151875571820677,0.6928807947019867,0.5624227441285538,0.1238938053097345,0.7620660457239627,0.9230769230769232,0.8803680981595092,0.6926829268292682,0.1597633136094674,0.5077205882352941,0.7303921568627451,0.6235827664399093,0.5182119205298014,0.1141479099678456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801806911639,0.0045921315397325,0.0070220300973139,0.0091507383559139,0.0117242711733422,0.0137843973652865,0.0159233396197563,0.0179450013269909,0.0203532947598699,0.0225432283295283,0.0246731272111982,0.0266539302992019,0.0285196921684019,0.0308056872037914,0.032700781145198,0.0346702501550547,0.0368660254883894,0.038997676734152,0.04111354823955,0.0431431368872778,0.0585581822738284,0.0725700949251169,0.0856996003482529,0.098473218228849,0.1106998618624318,0.1264531962383506,0.1374344716344419,0.1476043441226575,0.1563411740817133,0.1643682725019049,0.1768141554774887,0.1874377516996492,0.1980286348405065,0.2072905153262784,0.2156940497433525,0.2245189908511228,0.2323989278534733,0.2401493762865145,0.2478187367393943,0.2540746085741447,0.2603067740144364,0.2661819202038741,0.2710876836345156,0.2754008135917684,0.2796361431170406,0.2835571089260002,0.286530622452297,0.2888903004509941,0.292260942652098,0.2961899619391289,0.2925024839549934,0.2900989691287697,0.2872713500168331,0.2843630509156772,0.2816307819708979,0.2788136367790878,0.2758354836679463,0.2751244186995186,0.2754772742713499,0.2751658801405102,0.2749808807893902,0.2760418716303963,0.2776523702031602,0.2780531368609064,0.2795449101796407,0.2802344580750577,0.2806664588705335,0.2855622339093413,0.2917989325705515,0.2963370972183971,0.300216958958597,0.3030414843708818,0.3049378062570674,0.309353600722402,0.311092577147623,0.3154636767110488,0.3171799516908212,0.327438903238625,0.3341456810181424,0.3328307576328684,0.0,2.5865718263362742,50.83698248670289,140.3956525926654,201.74701637401117,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95890,48295,459.99582855355095,4876,49.50464073417457,3920,40.30660131400563,1442,14.714777349045782,77.4394230829848,79.71873790955436,63.39129033748679,65.07680669361447,77.25228086716632,79.53471232666149,63.32039883528712,65.00940371186212,0.1871422158184827,184.02558289287185,0.0708915021996645,67.40298175235182,231.34628,162.75462623816634,241262.1545520909,169730.55192216742,540.05412,364.006318976148,562628.4909792471,379035.4088961767,487.89288,239.3754163078294,504831.8281364063,246640.99938385648,2252.49708,1065.7510163938036,2317649.264782564,1080362.1201290584,904.831,413.2644137174332,928109.7611846908,415602.5200561334,1404.5894,602.920479475771,1434132.5894253831,602749.3714724433,0.3795,100000,0,1051574,10966.461570549587,0,0.0,0,0.0,47068,490.25967254145377,0,0.0,44204,457.0236729585984,1113527,0,40002,0,0,0,0,0,94,0.9802899155282094,0,0.0,0,0.0,0,0.0,0.04876,0.1284848484848484,0.2957342083675143,0.01442,0.3674628034455756,0.6325371965544244,23.05341476392477,4.114707032453127,0.3214285714285714,0.275765306122449,0.2017857142857143,0.2010204081632653,11.682864711629955,6.442947524507664,15.38417614487453,11296.5907881353,44.84691881095694,13.31162543596034,14.260047152912096,8.756347813828555,8.518898408255946,0.6020408163265306,0.8371877890841813,0.7095238095238096,0.5916561314791403,0.1180203045685279,0.7619047619047619,0.9346846846846848,0.8434065934065934,0.7096774193548387,0.1614906832298136,0.5352622061482821,0.7692307692307693,0.6551339285714286,0.5553719008264463,0.1068580542264752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020449483701154,0.0042462199521666,0.0066951379096967,0.0090568489882118,0.0114649293097665,0.013654585783765,0.0159918512859689,0.018359853121175,0.0202382411834416,0.0221772131181079,0.0243140228283366,0.0266975846996778,0.0286598022894958,0.0304084657827555,0.0325779912987896,0.0344062038557252,0.0364787552116202,0.0385659517148482,0.0408106059819565,0.0429232769830949,0.0572789626201346,0.0715241060792877,0.085227808203399,0.0972639270940512,0.1093180909071769,0.1245262302178021,0.135282279419553,0.1450764538992019,0.1547752299934973,0.16470109800732,0.1756807602584362,0.1868659038604907,0.1968801599026679,0.205542321393448,0.2141184232228269,0.2236425614803993,0.2318743660904359,0.2402269152999326,0.2475900270732564,0.253374478541631,0.2596808829981296,0.2646863145608404,0.2694234404536862,0.273916216960023,0.2785918773351448,0.2833552769198587,0.2866942386265665,0.2900969740048741,0.2927241962774958,0.2956449682349691,0.2926825993555317,0.2895649670263377,0.2871073197423989,0.2848151402111449,0.2818816774689988,0.2784063186142961,0.2746414499605989,0.2744829162381442,0.2749927803353322,0.2753530622383081,0.2769035958362041,0.278545897325111,0.2801804798935418,0.2812216242553097,0.281177897766466,0.282254729659878,0.2841062584421431,0.2878059372770419,0.2921561852107809,0.2960819582388363,0.2983455140564049,0.3010279001468429,0.3046423466534087,0.3080343684051854,0.3106578085524469,0.3152558358877623,0.319259599204528,0.3234523089332526,0.3206877729257641,0.319045844204249,0.0,2.242982854022555,49.8854519826432,146.43586611735836,201.4892104425,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95738,48458,462.428711692327,4803,49.11320478806744,3805,39.16939982034302,1446,14.7799201988761,77.34647984393533,79.69827668311444,63.33814763576003,65.07511555949397,77.15841132114365,79.51258313453857,63.26723252933509,65.00717323811682,0.1880685227916814,185.69354857586973,0.0709151064249411,67.94232137714573,229.48156,161.4190882953652,239697.46600096097,168605.03488203764,532.96628,359.3251848884311,556114.9073513129,374743.7745601862,481.06337,236.13551015840176,498277.0895569157,243480.2310084148,2172.35864,1025.8540873473548,2238662.3493283754,1041250.6004408394,879.69421,396.6788904926157,902794.2927573168,398331.3126700521,1397.17754,598.7884561964621,1429246.8821157743,599181.4116560984,0.38054,100000,0,1043098,10895.339363680045,0,0.0,0,0.0,46445,484.509808017715,0,0.0,43423,449.4035806054022,1124807,0,40402,0,0,0,0,0,94,0.9818462888299316,0,0.0,2,0.0208903465708496,0,0.0,0.04803,0.1262153781468439,0.3010618363522798,0.01446,0.352025543803632,0.647974456196368,23.120105500121443,4.077383395308496,0.319053876478318,0.2804204993429697,0.2042049934296977,0.1963206307490144,11.172530189572417,5.946603692875282,15.579398369702531,11328.11565131778,43.71051652686116,13.027296897539026,13.789251117200946,8.656074080579828,8.237894431541358,0.5837056504599212,0.7966260543580131,0.6902800658978583,0.5855855855855856,0.1044176706827309,0.7394366197183099,0.92,0.8478260869565217,0.7354497354497355,0.08,0.5174222555264144,0.706645056726094,0.6334080717488789,0.5374149659863946,0.1118881118881118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875632975491,0.0045717645389208,0.0068296445134512,0.0092846549237114,0.0115931417414119,0.013774637563121,0.0158919469928644,0.0181467457312281,0.0203105355153274,0.0224934219282708,0.0246107483676544,0.0267177139572598,0.0287976147637896,0.030930064888248,0.0327373275693076,0.0348527131782945,0.0368165488109165,0.0388011080102501,0.0408619363422797,0.0430267680449953,0.0578053389290822,0.0714726783677143,0.0844322747825722,0.0978948918003827,0.1103321033210332,0.1251770875182373,0.1348458813296845,0.1448578239400647,0.1538190552441953,0.162554924445397,0.174578570044565,0.1859280724897818,0.1967945235249375,0.2061426511079061,0.21435322562919,0.2237495987869531,0.2316517085679246,0.2400908549132493,0.2471472970213924,0.2531229604863917,0.2584360617064088,0.2639687660728479,0.2702296579386395,0.275107861936721,0.2787458561523236,0.2827441035993894,0.2863538592366565,0.2896109513752831,0.2931818476247231,0.2965020386082045,0.2944018951987401,0.2920481728944981,0.2899168530789685,0.2877408182408543,0.2855659089560211,0.2818924375917768,0.277998800164188,0.277442366530866,0.2776433707022864,0.2784607447205963,0.2792017473444471,0.2816441374968026,0.2817990014831526,0.2818941504178273,0.2827919900354508,0.2837658450245972,0.283789545493306,0.287332227888496,0.2921450256481837,0.2965134582087202,0.3026655202063628,0.3083095766022595,0.313627878033603,0.319385593220339,0.3222877468875784,0.3253808905161214,0.326797385620915,0.3330638641875505,0.3343524180100055,0.3347622759158223,0.0,2.276996510207263,49.17497700676391,141.49359727827445,195.21398201194933,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95745,48428,461.60112799624,4887,49.8929448012951,3900,40.20053266489112,1527,15.572614757950806,77.41222784566315,79.76917118381613,63.350809200748486,65.09013356715738,77.22043339091405,79.58106034128406,63.27879441484775,65.02217355152708,0.1917944547491004,188.110842532069,0.072014785900734,67.96001563030529,229.52842,161.3992396626875,239728.42446080732,168571.5382157685,537.19091,362.219459097108,560523.1918115828,377776.4040828325,485.95257,237.97203007555072,504588.59470468434,246247.77340567368,2263.7488,1058.3192956453497,2335142.848190506,1076192.2770331083,928.95862,421.1205880418229,957412.1572928092,427097.215695678,1491.0866,628.0671998450528,1521921.9384824273,625389.4673137943,0.37999,100000,0,1043311,10896.746566400334,0,0.0,0,0.0,46770,487.9210402631991,0,0.0,43907,455.689592145804,1123040,0,40209,0,0,0,0,0,95,0.9817745051960938,0,0.0,0,0.0,0,0.0,0.04887,0.1286086475959893,0.3124616329036218,0.01527,0.3620892018779342,0.6379107981220657,23.41078668947953,4.174293909478323,0.3071794871794872,0.272051282051282,0.202051282051282,0.2187179487179487,11.42927507724634,6.14833703696304,16.159650563176186,11335.807403160556,44.33359179184202,12.943993378529008,13.499392899453223,8.732615366733251,9.15759014712654,0.5756410256410256,0.8011310084825636,0.6953255425709516,0.5888324873096447,0.1148886283704572,0.7714033539276258,0.9337899543378996,0.8593272171253823,0.7916666666666666,0.1818181818181818,0.4954824719913263,0.7078651685393258,0.6337543053960965,0.5234899328859061,0.0974889217134416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0042973698880048,0.0064318467719027,0.008784222926314,0.0108886832928354,0.0133150099251794,0.0154717981123998,0.0177647623031948,0.0199997956076074,0.0220777891504605,0.0244014921702057,0.0264740904984807,0.0285488115798996,0.0304933936129676,0.0326375202501212,0.0348345616737128,0.0368222673238619,0.0390944367205494,0.0413690569019473,0.0432631206117049,0.0573785039411181,0.0714674367989285,0.0848744873018703,0.0974185811663721,0.1092798733843313,0.1251785770976856,0.1366699565941821,0.1464923394695655,0.156093391034888,0.1648333959328218,0.176632924765262,0.1879425712986422,0.1984456127747118,0.2076983709931686,0.2159813176766063,0.2249035177216874,0.2340183031075056,0.2422068561646921,0.2496991166519063,0.2556225498062771,0.2618909781400518,0.2669303130996396,0.2713129687906679,0.2760429139326596,0.279352865499915,0.2836133161036244,0.2867706758934259,0.2893484742752014,0.2934391329591639,0.2964145415369253,0.293321541512569,0.2900969225714598,0.2873216938037721,0.285295554469956,0.2828077314343845,0.2797655205928805,0.2758387997865729,0.2754386820835569,0.2752560738169813,0.2740358260685045,0.2738501483679525,0.27606162508798,0.2778931196279533,0.2782560584264689,0.2786326822296331,0.2799432477750548,0.2822846515821804,0.2870278330019881,0.2919905607995558,0.2947277779952248,0.2982929020664869,0.3033943654582656,0.3073291925465838,0.3128182090446241,0.3135468433646236,0.317493594223154,0.3203651054915457,0.3261428854146052,0.3301912200377053,0.3383458646616541,0.0,2.0156474042266312,49.39769873114583,141.38843015746167,204.52927695468696,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95729,48765,465.9194183580733,4859,49.50432993136876,3838,39.49691316111105,1473,14.969340534216382,77.32373385663094,79.69480781143274,63.321321634088775,65.0757169618332,77.13446272335389,79.50922444322438,63.24960223841877,65.00796791309352,0.189271133277046,185.58336820835564,0.0717193956700015,67.74904873967103,229.03144,161.21962265542732,239249.79891151065,168412.5214464032,540.9783,364.9428540229947,564531.4794889741,380642.1189221602,486.31616,238.9361802902066,504258.4378819376,246616.3793085769,2195.63724,1027.1006037174764,2261493.089868274,1040821.5731047807,887.94243,398.5313681958893,913832.2347460018,402585.8393965141,1426.577,605.9017260902698,1451562.974647181,601635.1283189805,0.3825,100000,0,1041052,10874.99085961412,0,0.0,0,0.0,47114,491.5438372906852,0,0.0,43966,455.5672784631616,1119778,0,40185,0,0,0,0,0,84,0.8774770445737446,0,0.0,1,0.0104461552925445,0,0.0,0.04859,0.127032679738562,0.3031487960485696,0.01473,0.3669220192496563,0.6330779807503437,23.29161911834136,4.084166343661952,0.3150078165711308,0.2759249609171443,0.2071391349661281,0.2019280875455966,11.723091446366263,6.5507729540849695,15.711765933573997,11396.951148776903,43.91355552901369,13.06270437404658,13.603763171618423,8.91330560243474,8.333782380913947,0.585461177696717,0.8158640226628895,0.685690653432589,0.5849056603773585,0.1148387096774193,0.7544169611307421,0.934065934065934,0.8398692810457516,0.7302325581395349,0.0961538461538461,0.5147819660014782,0.7268211920529801,0.6334440753045404,0.5310344827586206,0.1195476575121163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316109422492,0.0046751244840629,0.0068717011774259,0.0088714102798609,0.0111102067393781,0.0133952673450885,0.0154917798719047,0.0175768284088936,0.0197151125336169,0.0217625070408111,0.0238642190544559,0.026076061169366,0.0282807291880992,0.0302761747732893,0.0323905862923203,0.034415738816694,0.0364466815809097,0.038597219340112,0.0406766972019173,0.0425762485802707,0.0571780601643503,0.071089154507965,0.0849934434828219,0.0987660814407287,0.1108123213852594,0.1263045478096285,0.1367219410759943,0.1464507273056173,0.1554473316031741,0.1645239805710732,0.176328086306768,0.1873154268035438,0.1976013395963813,0.2069772272573221,0.2158154678751746,0.2252992437244632,0.234661225764012,0.2424620292981037,0.2493368098855005,0.2569036125283122,0.2626350141512159,0.2682698933647905,0.2736477705049741,0.2783637212531874,0.2825559384555647,0.2860660682845147,0.2893285476669877,0.2932124279845858,0.2959764906920746,0.2983510617264423,0.295823525455646,0.2928815051160743,0.290150480721857,0.2879718037238729,0.2861236488894167,0.2823288383328746,0.2793277576140129,0.278560327198364,0.2795918367346939,0.279209117903309,0.279228298222023,0.2801868569401191,0.2817584807796879,0.2826717863999642,0.2832825142253487,0.2847664888773253,0.286576512455516,0.2907861635220126,0.2951394981575715,0.2986765231906522,0.3015460391298399,0.3053780617678381,0.3071590622636753,0.3093821510297483,0.3141869804800598,0.3142823334516625,0.3151368516558294,0.3231572604940751,0.32627003531649,0.3305407463823305,0.0,2.3744712007232702,49.02183573552663,139.88647594850138,200.59988039999595,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95788,48380,461.3834718336326,4895,49.8705474589719,3930,40.52699711863699,1524,15.5447446444231,77.38153749659537,79.72271165180116,63.350937847410606,65.08260148281703,77.17887209739523,79.52233715892007,63.27500008048976,65.00959767601123,0.2026653992001428,200.374492881096,0.0759377669208447,73.00380680580076,230.39302,162.1152717439332,240523.8860817639,169243.82150575562,540.77895,364.4964112918081,564045.9452123439,380012.5608022818,486.03004,238.30315878193207,504172.5685889673,246246.08822579007,2270.77132,1073.113478347432,2343623.794212219,1093340.3784360024,921.20426,419.3042340220459,948038.95059924,424069.3239466791,1489.0304,638.300960762158,1521110.7654403474,639038.1709004978,0.38123,100000,0,1047241,10932.903912807453,0,0.0,0,0.0,47132,491.5125067858187,0,0.0,43952,455.6625046978745,1116140,0,40059,0,0,0,0,0,81,0.8456174051029357,0,0.0,0,0.0,0,0.0,0.04895,0.1284001783700128,0.311338100102145,0.01524,0.3624213836477987,0.6375786163522013,23.17080986572127,4.030547966767594,0.3216284987277353,0.2748091603053435,0.1908396946564885,0.2127226463104325,11.493609950073012,6.281280979249138,16.45032984369542,11318.28706950256,45.15376639335166,13.217958866465812,14.4262070995394,8.325604726637101,9.183995700709348,0.573027989821883,0.8064814814814815,0.689873417721519,0.5426666666666666,0.1220095693779904,0.7482993197278912,0.9390519187358916,0.8478260869565217,0.7158469945355191,0.1153846153846153,0.4981844589687726,0.7142857142857143,0.625,0.4867724867724867,0.1238532110091743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027243816970163,0.0048654894885154,0.0070512560366868,0.009404547901242,0.0117941314028915,0.0139458656107169,0.0159620010600562,0.0181263331938476,0.02034580719001,0.022469150960771,0.0244912180025823,0.0268317217876865,0.028963900513063,0.0309504442819929,0.0331610813710018,0.0351707392674484,0.0372531975661244,0.0389032859956463,0.0409503132044503,0.0428644309556779,0.0572907426925605,0.0722159471218206,0.0854291375315812,0.098067648078681,0.1104425711275026,0.1253447747471651,0.1355361041052921,0.1457396481156647,0.1557357805997225,0.164580296664666,0.1759197468408929,0.186470556426756,0.196248274662812,0.2050354602178973,0.2129494187389329,0.2230191937304908,0.2312366214769889,0.2395032591593616,0.2466071813244748,0.2530600105241483,0.2590434571497936,0.2646876643487407,0.2706436123660619,0.2759078989906247,0.2802529218296782,0.2836904747252206,0.2876055352949992,0.2909042390972857,0.293469546101125,0.2966969261782105,0.2943493634126994,0.2912075834592664,0.2877606731770467,0.2853389916136203,0.2837867925368482,0.2805017800663132,0.2765527901328033,0.276225946617008,0.2761337204366797,0.2757941087693755,0.2762220813602297,0.2766736195836121,0.2776143688591276,0.2769659788064696,0.2783337323437874,0.2804111936036551,0.2825206131527498,0.2885797173784197,0.2912202588006122,0.2953453571709852,0.2973339358337099,0.3017664118112312,0.3058742398595699,0.3108804364297621,0.3148355754857997,0.3152888680131517,0.3153439153439153,0.3142628525705141,0.3158472946992584,0.319787314849981,0.0,1.9369958319396212,51.37145235778517,147.10404785794887,199.76753254604196,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95851,48049,457.5330460819397,4868,49.51435039801358,3857,39.5927011716101,1426,14.428644458586763,77.37299817448195,79.67391398907279,63.35320242165369,65.05675046252938,77.1878050535265,79.49658741216044,63.28184676041506,64.99153368426407,0.1851931209554465,177.32657691234976,0.071355661238627,65.21677826530947,230.10372,161.83983806576924,240062.8266789079,168844.26969594418,539.83994,364.2602586675175,562527.0889192601,379350.456149214,478.27914,235.0014993282134,495457.2930903172,242414.2536917361,2221.63,1051.844207312177,2280285.15091131,1060044.5823461686,898.1515,413.8027569048373,915420.3294696978,410293.8909751782,1389.7616,601.3097909999392,1407088.8775286642,589351.8821297231,0.37955,100000,0,1045926,10911.946667223086,0,0.0,0,0.0,47204,491.7736904153321,0,0.0,43298,448.2060698375604,1116911,0,40137,0,0,0,0,0,74,0.7720315906980626,0,0.0,0,0.0,0,0.0,0.04868,0.1282571466209985,0.2929334428923582,0.01426,0.3588884509262909,0.6411115490737092,23.2484874604882,3.987215535773288,0.3038631060409645,0.2797511018926626,0.2107855846512834,0.2056002074150894,11.291304554837174,6.123077497252491,15.312168329370548,11263.181137323749,44.13360894602421,13.29283242141061,13.063878551797048,9.091912966377794,8.68498500643875,0.5771324863883848,0.809082483781279,0.6732081911262798,0.5756457564575646,0.1210592686002522,0.7508650519031141,0.9329004329004328,0.8193979933110368,0.7377777777777778,0.1529411764705882,0.5027767493520918,0.7163695299837926,0.6231386025200458,0.5136054421768708,0.1123595505617977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0044999847973486,0.0070397533043222,0.0093109680563734,0.0116605331110343,0.0139047231270358,0.0161548418660116,0.0181755094959638,0.0200369882189457,0.0222031227617819,0.024435223605348,0.0267372546605517,0.0286316222187965,0.030673583662714,0.0326175479108893,0.0345846026746527,0.0366963934697593,0.0388995388839956,0.0408934672218818,0.0428761678839711,0.0581850032846372,0.0719085389430563,0.08474327679591,0.0972338906158111,0.1095945234333859,0.1251307296563526,0.136105459477789,0.1454543521481654,0.1554111029278341,0.1639609519829406,0.175294345551992,0.1860555615609123,0.1957240059998695,0.2048439123065988,0.2132623192552325,0.2218518108317643,0.2299694326067069,0.2374893119121551,0.2453551416710147,0.2518862847917931,0.2579619307537525,0.2632293080054274,0.2678051551516012,0.2721468953622077,0.2759591693065822,0.280940243557066,0.2838664481667271,0.2875591031572525,0.2915001228866726,0.2945590252136301,0.2915949203616014,0.2898724082934609,0.2866697644292372,0.2839094400646856,0.2818938281493348,0.2792012345113138,0.275204574894948,0.2761549413324169,0.2758339006126616,0.2767831719817767,0.2769239377774461,0.2779362300595999,0.2794598762216341,0.27976375505129,0.2813066285169289,0.2822215904685602,0.283866402490801,0.2889415876185721,0.2918277098784776,0.2960536638945552,0.3004661168877734,0.3024765694538981,0.305883816395074,0.3088855421686747,0.3131811830461108,0.3170391061452514,0.3176737160120846,0.3158742949234488,0.3149671052631579,0.3124291650925576,0.0,2.311276581487255,50.03594136748471,143.02840759142762,195.09372865519012,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95800,48267,460.6471816283925,4859,49.50939457202505,3914,40.36534446764092,1501,15.35490605427975,77.39816222968327,79.72792532287826,63.35848721039546,65.07975996574181,77.20107534090145,79.53245630111698,63.28450011277443,65.00850303968731,0.1970868887818113,195.4690217612836,0.0739870976210284,71.2569260545024,232.02674,163.23357209811437,242199.10229645093,170389.9499980317,542.3735,364.4937521813765,565635.2400835073,379957.0064523764,482.21111,236.03825784724197,500374.05010438414,244093.42035008248,2229.40852,1053.300515333055,2299434.947807933,1071764.7967985962,902.73093,410.7163168605644,929196.8580375784,415611.66686906415,1459.59066,622.0951001718062,1493416.2212943633,623670.4052616168,0.37988,100000,0,1054667,11009.050104384134,0,0.0,0,0.0,47199,492.1503131524008,0,0.0,43619,452.3799582463466,1110179,0,39843,0,0,0,0,0,101,1.0438413361169103,0,0.0,0,0.0,0,0.0,0.04859,0.1279088133094661,0.3089112986211154,0.01501,0.3410700236034618,0.6589299763965382,23.242735526894432,4.162939821604621,0.2984159427695452,0.2833418497700562,0.2110373019928462,0.2072049054675523,11.363675542256152,6.054725655974016,16.075610986529885,11324.002837572732,44.75484908415218,13.602174816794074,13.17523464503469,9.062121366843138,8.91531825548028,0.5784363822176801,0.8142470694319206,0.708904109589041,0.5290556900726392,0.1183723797780517,0.7607573149741824,0.919831223628692,0.8679245283018868,0.7539267015706806,0.1564245810055866,0.501453488372093,0.7354330708661417,0.6494117647058824,0.4614173228346456,0.1075949367088607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217901197059,0.0046619101670179,0.0070912632390536,0.009159964253798,0.0110811772480048,0.0132513689010116,0.0153767768889794,0.0174570460759906,0.0197386569131274,0.0219050542254962,0.0239629542357774,0.0259515038326954,0.028014716461472,0.0301461506792918,0.0319597513325154,0.0344432280585793,0.0365174932240912,0.0384898539003121,0.0405599201895498,0.0423400533155614,0.0570012520868113,0.0710961439911312,0.0836740684825229,0.0966589244237984,0.1087192570024984,0.1251678100654327,0.1363573693644009,0.1459231121184069,0.1557240495514737,0.1652335206072822,0.1773510946468377,0.1882123932086082,0.1983464789344458,0.2075176964082845,0.2165298519763953,0.2257721922294008,0.23479375696767,0.2426528455467362,0.2505869143615392,0.2565946143982414,0.2608977100648487,0.266497610227525,0.2720044488091153,0.2757786296118831,0.2798184620238572,0.2847683749323093,0.28805088028389,0.2904196941212337,0.2939662419970251,0.2963958621598471,0.2934237251657856,0.2899498523047331,0.2860016882386044,0.2841962599305045,0.2817741720579744,0.2777065787867692,0.2743520577981796,0.2747387528823038,0.2744710572041838,0.2750426863972681,0.2755688176053711,0.2766011938769479,0.2777951573546893,0.2778246580209628,0.2778505585594169,0.2788959023178808,0.280001126538429,0.2842088902704383,0.2896048169423489,0.2928490351872871,0.2985168822972546,0.3019242836226731,0.3055401148786363,0.3067037426724786,0.3084285847040238,0.3108124041976182,0.310823032861019,0.3166533226581265,0.3220616307608399,0.3238380809595202,0.0,1.856911098482636,50.80849704423912,142.65795050632187,203.2266852188191,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95879,48472,462.7394945712825,4717,47.99799747598536,3738,38.423429530971326,1435,14.591307794198938,77.3584022892406,79.64016800280936,63.35300198276878,65.04131188463785,77.16897025432299,79.45558224598365,63.28049114597852,64.9736429045753,0.1894320349176155,184.58575682571168,0.0725108367902578,67.66898006254962,232.55782,163.73997162850955,242553.44757454708,170777.7215328795,542.34299,365.3331506382294,565090.6559309129,380472.7110610556,478.38951,234.93909832755415,495586.0407388479,242457.064720195,2142.05608,1022.5216317088498,2203236.245684665,1035582.7988494348,875.08442,405.1929557115418,896977.7740693999,406889.7836977234,1395.6874,604.1353721010747,1420333.8791601916,597840.9803312138,0.38186,100000,0,1057081,11025.156707933958,0,0.0,0,0.0,47255,492.2662939746973,0,0.0,43302,448.24205509027,1103742,0,39592,0,0,0,0,0,101,1.0534110702030683,0,0.0,0,0.0,0,0.0,0.04717,0.1235269470486565,0.3042187831248675,0.01435,0.3645430490535314,0.6354569509464686,23.256670347171177,4.043799527890096,0.3119315141787052,0.2696629213483146,0.2075976457998929,0.2108079186730872,11.183227931460804,6.154486199885647,15.426027206236046,11338.094119618452,43.00189985206954,12.475059853686432,13.231892748821044,8.603916069738005,8.691031179824058,0.5823970037453183,0.808531746031746,0.7032590051457976,0.586340206185567,0.1104060913705583,0.75,0.9153674832962138,0.8713450292397661,0.7446808510638298,0.1160220994475138,0.5069821567106284,0.7227191413237924,0.633495145631068,0.5357142857142857,0.1087314662273476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881673399548,0.0047218084729103,0.0067856092341085,0.0088233203708028,0.0110998170359829,0.0130776824514802,0.0152919841884347,0.0176347595491866,0.0199095392217922,0.0220815996892219,0.0239031181540855,0.0259380766864875,0.0278742066018938,0.0299345759782742,0.0320183845503823,0.0339173799469298,0.036071916249431,0.0380999761616036,0.0401188090020666,0.042032544009322,0.0562957402889848,0.0704293042742365,0.0832460623324396,0.0960686309511309,0.1084753618303242,0.1234734840481724,0.1346905899933232,0.1453379556765494,0.1551755425326373,0.1642957452054501,0.1768658403954041,0.188201062207271,0.1986867995086369,0.2081046809068847,0.2163817272277499,0.2250132790368272,0.2333102848348315,0.2407097158662873,0.2475583334278616,0.2545046335009565,0.2597875885047896,0.2648297155688622,0.2698719011199773,0.2757735975734033,0.2804501592085754,0.2848829324226022,0.2882542226451475,0.2912857470269169,0.2947979876562419,0.2979996829087834,0.2951939530308951,0.2927225426365125,0.2909953808021631,0.2873261004608428,0.2846108140225787,0.2807538619348714,0.2763863618384621,0.2771108049596536,0.2775133493696368,0.2783839102963424,0.2793606930803988,0.2798928564394461,0.2799624099404824,0.2809306467772459,0.2828955245324585,0.2847051517582218,0.2863245445286862,0.2898650123141191,0.2946863263318959,0.2986711747130052,0.3032287198013095,0.3074260541220893,0.3131388681126901,0.3159936116814967,0.321401728673431,0.3189696106362773,0.3196986006458557,0.3210399032648126,0.3198910081743869,0.3285498489425982,0.0,2.2010781576833893,50.26589258855722,133.72364190755292,191.52835554461348,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95738,47878,456.1511625477866,4907,50.00104451732855,3881,39.99456850989158,1503,15.375295076145314,77.38965647392791,79.75605049083522,63.34469261111818,65.09363359743698,77.1923087071423,79.56146401576302,63.270225931559885,65.02285557115515,0.1973477667856116,194.5864750721995,0.0744666795582986,70.77802628182894,230.18732,161.89491619360803,240434.6445507531,169102.04536715624,539.5851,363.72498435236713,563090.7267751573,379401.78858172,480.29357,235.6869469110858,498396.947920366,243658.89162068124,2242.60828,1067.4279978566797,2313400.9066410414,1085904.7377809018,882.71278,410.7576742692576,907033.6856838455,414068.3994539866,1463.71546,628.1761427279723,1498461.3424136706,628161.0324885251,0.37807,100000,0,1046306,10928.847479579686,0,0.0,0,0.0,47137,491.8005389709416,0,0.0,43536,451.4194990494892,1118436,0,40126,0,0,0,0,0,90,0.9400655956882324,0,0.0,0,0.0,0,0.0,0.04907,0.1297907794852805,0.3062971265539025,0.01503,0.3644349014249463,0.6355650985750537,22.87964015536082,4.120087427736179,0.306364339087864,0.2795671218758052,0.2027827879412522,0.2112857510950785,11.1542752773794,5.885755066193625,16.13644418999624,11242.322886647367,44.58168413304249,13.287130384122763,13.601634783950988,8.73627063070526,8.95664833426347,0.5776861633599588,0.8276497695852535,0.6963835155592936,0.5400254129606099,0.1109756097560975,0.763396537510305,0.9486081370449678,0.8690807799442897,0.695,0.1711229946524064,0.4932533733133433,0.7362459546925566,0.6216867469879518,0.4872231686541737,0.0932069510268562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701482862004,0.0048254817878612,0.0070327484549264,0.0094682731576487,0.0116777035206038,0.0139098203739155,0.0162824604153709,0.0185175733199946,0.0206476408537083,0.0226935399670396,0.0250210131409007,0.0272875666019895,0.0291647391416088,0.0313137137796816,0.0332948263058008,0.03518055354596,0.0370090399809466,0.0390098147033801,0.0410235623044702,0.043042458973691,0.0576633952808519,0.0713410996326184,0.0845730952430912,0.0970721597424594,0.1092673664222796,0.123831281465499,0.1344756246352978,0.1437480710492427,0.1536498104341325,0.1627522896424511,0.1740258621617838,0.1849632193855473,0.1952333318836167,0.2049117589170511,0.2143996655334411,0.2225617858091947,0.2310462873136408,0.2382220424489612,0.245417549905347,0.2517788098560937,0.2571791907514451,0.2628048566720811,0.2677664074870607,0.2725901992460958,0.2763063707945598,0.2803978776575445,0.2840390553701133,0.2876371077415829,0.2907083478778006,0.2944136359445183,0.292296945108681,0.2893804580655791,0.2879741500421466,0.2844048596999438,0.2813739418694134,0.2773651379504934,0.2741696603012541,0.2740059066359913,0.2748254592286314,0.2751199985830425,0.2754177497215002,0.2755910142313875,0.2754447512091835,0.2752586225992955,0.2766732541250982,0.2771607170532624,0.2770567656020765,0.2817424407900895,0.2872885789014821,0.2925971305481997,0.2965166447159271,0.3013276686139139,0.3036754116836767,0.3093794445692043,0.3099926389400073,0.3131031275433089,0.3125656808287044,0.3185155784877952,0.3170995670995671,0.3173040514956456,0.0,2.146313321736642,52.750676140530594,138.44121871270798,196.64073279913532,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95762,48298,461.60272341847497,4866,49.54992585785593,3832,39.44153213174328,1458,14.891084146112236,77.34687979821054,79.70621283386082,63.33382307926016,65.0811791079057,77.16590860010004,79.52837382147314,63.26496085983125,65.0157144811361,0.1809711981104982,177.83901238767896,0.0688622194289081,65.46462676959663,230.08392,161.89723013150748,240266.41047597167,169062.0811297879,537.98058,362.51166464140624,561239.4582402206,378005.0694862327,481.65611,236.74482137069515,499294.6158183831,244376.07968105449,2208.85836,1037.9745480718932,2274247.572105846,1051752.7134787692,897.96733,408.3900117059531,917369.9484137758,406216.5430837688,1426.76598,603.462240453884,1457219.0221591026,600956.6713110765,0.37951,100000,0,1045836,10921.200476180533,0,0.0,0,0.0,46996,490.1839978279485,0,0.0,43563,451.191495582799,1118610,0,40161,0,0,0,0,0,77,0.8040767736680521,0,0.0,1,0.0104425555021824,0,0.0,0.04866,0.1282179652710073,0.2996300863131936,0.01458,0.3558052434456928,0.6441947565543071,23.29847697319664,4.112582236296063,0.3003653444676409,0.2854906054279749,0.1993736951983298,0.2147703549060542,11.228524749655168,5.921315111675204,15.40962659808828,11265.279022971505,43.61201602555799,13.422810306786165,12.842231365727512,8.467973994946073,8.879000358098237,0.5858559498956158,0.7943327239488117,0.687228496959166,0.6020942408376964,0.1518833535844471,0.7584708948740226,0.8824786324786325,0.8785046728971962,0.7604166666666666,0.188235294117647,0.5117493472584856,0.7284345047923323,0.6132530120481928,0.548951048951049,0.1424196018376722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0041070052326288,0.0062131979695431,0.008170980822586,0.0104989012777732,0.0127390480845603,0.0151697420736058,0.0172111065741118,0.0196888225552534,0.0219416799770651,0.0238883705670668,0.0257924080786093,0.0280537216429115,0.0305124903425186,0.032375251560968,0.0345262461493932,0.0363677784796363,0.0383414421610631,0.0402187132922379,0.0419864418781435,0.0572812291249165,0.0708898628646743,0.0834783702740673,0.0958211590608118,0.1077210067029214,0.1228865500042269,0.134159397093584,0.1443638760711931,0.1546101409232016,0.1638852588958632,0.1760915633101341,0.1875918561424742,0.1974990765486821,0.2065022715359077,0.2157892423976094,0.2245518920115069,0.2323465462451915,0.239536844471924,0.2472824236922727,0.2535270944986487,0.2591247209079025,0.2645558960443519,0.2692885623350962,0.2739015301292881,0.2780966015942538,0.282564588123901,0.2859214078592141,0.2883672484312679,0.2917059804314389,0.2951419508535478,0.2913986436580944,0.2887931034482758,0.2875796804358204,0.2851405044339514,0.2821472973773015,0.2784626651612706,0.2752574230884463,0.2757103364794792,0.2754143552394241,0.2744076924444128,0.2762453607862884,0.2768658478979688,0.2775946938094443,0.2790241728862649,0.2792235801581596,0.2809257573787544,0.2826957484876885,0.2864275844743122,0.2903924789431377,0.2951202151217969,0.2986918604651162,0.3006491107710169,0.3036094748715378,0.3073965166251979,0.3114996761957628,0.3149882903981265,0.3189172841373053,0.3206631621512333,0.3254716981132075,0.3230709275136399,0.0,2.2748117798451126,49.84308916847482,132.3377684456669,203.74081340456212,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95758,48755,465.7052152300592,4856,49.46845172204934,3883,40.00710123436162,1433,14.536644457904302,77.36211040614715,79.7228738482275,63.32787542470121,65.07511378551852,77.17247156508813,79.53904025501092,63.255331684258245,65.0075920318659,0.1896388410590219,183.83359321657625,0.0725437404429669,67.52175365262758,231.25212,162.66011173497358,241496.39716786065,169865.81981137197,540.50598,364.7703779150368,563900.1754422607,380379.6319002452,487.36803,239.14784714678927,506188.0469516907,247544.72650560935,2234.15888,1055.3758965592117,2301168.1530524865,1070166.060860933,902.50935,408.9156607513366,927351.5111009002,411892.0306933475,1394.46248,605.4354445592713,1415148.8544038096,595789.387979288,0.38323,100000,0,1051146,10977.108962175484,0,0.0,0,0.0,46994,490.1835877942313,0,0.0,44065,457.371707846864,1110052,0,39839,0,0,0,0,0,88,0.9189832703272834,0,0.0,2,0.0208859834165291,0,0.0,0.04856,0.1267124181301046,0.2950988467874794,0.01433,0.3634208967015603,0.6365791032984397,23.05148306682,4.116938160521668,0.3229461756373937,0.2786505279423126,0.1879989698686582,0.2104043265516353,11.498609650968843,6.212007823747038,15.56867130024387,11389.368943061208,44.62663956405996,13.332351293108935,14.187445386107882,8.078835764569948,9.028007120273204,0.58949266031419,0.8160813308687616,0.7105263157894737,0.5616438356164384,0.1285189718482252,0.7525951557093425,0.9356223175965666,0.8593272171253823,0.7142857142857143,0.1692307692307692,0.5203520352035204,0.7256493506493507,0.6580366774541532,0.5160142348754448,0.1157556270096463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022187775447554,0.0045328249538605,0.0069739112780428,0.0091549224219392,0.0111896648186765,0.0132806452927037,0.0155507515346807,0.0179388221841052,0.0200815942577274,0.0223130171213238,0.024612355402412,0.0265217659264128,0.0283430382090903,0.0303067775476345,0.0322117865620807,0.0343244696249121,0.0363048948442078,0.0382129257841275,0.0405089344185611,0.042612807799675,0.0579239650097079,0.0721668898560428,0.0853067645516518,0.0977733836784921,0.1100410333224333,0.1251758384718711,0.1366963717377466,0.1468891065496976,0.1567638605451262,0.165821332446894,0.1769875288086673,0.1881053121381653,0.1979332100511258,0.2065563370267875,0.2152171759967426,0.2248119551129377,0.2334323226008127,0.2419848358719373,0.2488486058488554,0.2555764210140613,0.2619579432221926,0.2668280758389183,0.2722044728434505,0.2773428602256243,0.2818324206845473,0.2863357405170926,0.2889951314752005,0.2921489810975144,0.2950645720644944,0.2990890754973173,0.2956940761579152,0.292908318321209,0.2895147789141964,0.2866913897346358,0.2845067916246515,0.2811277506112469,0.2778927088103848,0.2782476402362218,0.2791630547481855,0.2799261717571477,0.2800089370496564,0.2819396221973754,0.2827285016117292,0.2828132629055883,0.2841879322680658,0.2857844404238821,0.285823127716011,0.290205223880597,0.2939157566302652,0.2980923655450664,0.3046931083991385,0.308439016752779,0.3103106206212412,0.3120160810005956,0.3131535498073748,0.3211211909746452,0.3228217007921088,0.3286219081272085,0.3278251599147121,0.3330804248861912,0.0,2.072183422507346,50.48428764494845,146.50900207643605,196.3809729053453,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95770,48445,461.344888796074,4853,49.46225331523442,3896,40.20048031742717,1446,14.764540043855073,77.32840490063373,79.68899616955821,63.31625382636724,65.06469689304319,77.13740791411259,79.49859364501418,63.243770182103134,64.9946486189547,0.1909969865211422,190.40252454402665,0.0724836442641034,70.04827408849224,229.73016,161.6932941524724,239876.95520517908,168835.01529964746,538.02078,362.3940892402127,561309.8778323065,377926.0512062365,487.81843,239.4465600089544,505880.21301033726,247458.6765039402,2234.43108,1066.5797955143412,2307523.6921791798,1088090.378525991,887.28409,405.9847878534081,916870.3873864468,414312.9036790304,1407.56528,608.5434058703753,1439330.1242560302,609964.3721072377,0.37987,100000,0,1044228,10903.497963871776,0,0.0,0,0.0,46926,489.5061083846716,0,0.0,44103,457.0742403675473,1117810,0,40148,0,0,0,0,0,94,0.9815182207371828,0,0.0,1,0.0104416831993317,0,0.0,0.04853,0.1277542317108484,0.297960024726973,0.01446,0.3556081214271634,0.6443918785728366,23.28723695470681,4.0114829156007685,0.3103182751540041,0.2846509240246406,0.204312114989733,0.2007186858316221,11.498344707657251,6.279448685896028,15.5820663873974,11376.237896484316,44.70909221035461,13.608107890616695,13.612958882790767,8.847845957466108,8.640179479481029,0.6029260780287474,0.8268710550045085,0.71712158808933,0.6005025125628141,0.1112531969309462,0.7554076539101497,0.9330543933054394,0.8802395209580839,0.7272727272727273,0.125,0.5348923533778768,0.7464342313787639,0.6548571428571428,0.5585284280936454,0.1067796610169491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020570919003273,0.0042394369054139,0.0066705925354343,0.0091363645602552,0.0113629427682041,0.0136183996088657,0.0158977810409528,0.0182239555682607,0.0205996912602103,0.022775429150502,0.0249195317465198,0.0272709537646442,0.0292886598998344,0.031497522840339,0.0334760848253444,0.0355880346474272,0.0376167111773595,0.0395859908942887,0.0418584834093672,0.0436494297765974,0.0578669394401185,0.071371794335439,0.0848808312973817,0.0976432746079132,0.109786938104571,0.1253567276186449,0.1362778366914104,0.1466171415191732,0.1566445218208617,0.1652547825340996,0.1768108137217943,0.1877332871717751,0.198198394220936,0.2074074884087131,0.2156198065133888,0.2257907327013378,0.2341073680216923,0.2417926237718478,0.2479396072198887,0.2544717030857902,0.2606431604892555,0.2662417402491082,0.2720147751758104,0.2763328374682086,0.2810544097808782,0.2852722924832976,0.2888941807562635,0.2918433619866284,0.295060080106809,0.2972013669890614,0.2952963197371433,0.2919990098465262,0.2887583798095882,0.2852690809407012,0.2821749844135023,0.279017822993957,0.2752193502489922,0.275876207501681,0.2754245958665848,0.2764266752187004,0.2781792042420508,0.2791988037147804,0.2804469506231923,0.2814086011931261,0.28223471707142,0.2835225211216503,0.2841756186049148,0.2875288683602771,0.2921707690168266,0.2974705951772157,0.3005947017480627,0.3085462924172601,0.3128602417105671,0.3180659670164917,0.3217003898273621,0.3240881016198578,0.3293178738141846,0.3284994964753273,0.3355209187858901,0.3356562137049942,0.0,1.907420394923088,52.47383059890964,140.22468565855004,198.32780732153083,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95721,48431,461.7377586945393,4952,50.34422958389486,3875,39.80317798602187,1457,14.740756991673718,77.31464774318667,79.68073217228871,63.30648041847581,65.05603866371442,77.11987127768158,79.49192347222137,63.230292918915154,64.98514242023063,0.1947764655050861,188.80870006734085,0.0761874995606533,70.8962434837872,230.73314,162.32663079189606,241047.56532004476,169583.09126722044,540.25477,364.52495499634927,563715.590100396,380130.1542987947,486.89557,239.03781442571437,504419.16611819767,246483.13819953025,2199.47408,1052.972853546044,2260996.688292016,1063243.607511459,871.84742,399.1902228078457,893740.5480511069,399956.5188949807,1404.10726,616.7396931019206,1422722.6836326406,606611.4212138938,0.38059,100000,0,1048787,10956.707514547486,0,0.0,0,0.0,47108,491.4282132447425,0,0.0,44103,456.5873737215449,1108607,0,39774,0,0,0,0,0,89,0.9193384941653346,0,0.0,0,0.0,0,0.0,0.04952,0.1301137707244015,0.2942245557350565,0.01457,0.3588201047933242,0.6411798952066757,23.18455343771137,4.046084342995551,0.3076129032258065,0.288258064516129,0.2095483870967742,0.1945806451612903,11.497259787187636,6.35547555499289,15.715890256753722,11355.449850051817,44.59482600126484,13.734673895942455,13.579559644437824,9.04724767671235,8.233344784172218,0.5873548387096774,0.7815577439570277,0.6996644295302014,0.5923645320197044,0.1167108753315649,0.7588477366255144,0.9096385542168676,0.861271676300578,0.7711442786069652,0.0941176470588235,0.5090225563909775,0.678513731825525,0.6335697399527187,0.5335515548281505,0.1232876712328767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0045523212782999,0.0070037962605818,0.0089015343969108,0.0109364667582277,0.0133257263947186,0.0155068811785229,0.0177656163852075,0.0198515732013984,0.0219995086196306,0.0240226384915874,0.0263063322072881,0.0285443903843977,0.0308600632657056,0.0330728655924522,0.0351918285483887,0.0374152125511313,0.0393296321278472,0.0411987355461276,0.043288464744124,0.0583137561994257,0.0718248236303879,0.0850653097623668,0.0977472076733766,0.1106962812968001,0.1261571992340002,0.1372143137692005,0.1476357827476038,0.1575734248537918,0.1665503955008425,0.1781030242892273,0.1890333766796705,0.1988929808886661,0.2073157363967203,0.2161816437480012,0.2253747917823431,0.2335790922211158,0.2422950227877803,0.2501734945790054,0.2560423654827,0.261592169051982,0.2676511954992968,0.2727736153262519,0.277478364201606,0.2809585759966929,0.2847593088222597,0.2877058617410021,0.2900875006359057,0.2924204999547377,0.2954264035619253,0.2927393227311223,0.2903522625832589,0.2871789110009409,0.2843681108885783,0.281718963165075,0.2784663111083943,0.274876349098494,0.2755473256423702,0.2758220964524983,0.2751944192337124,0.2755626108880381,0.2766179335314142,0.2767799537971654,0.2774693551252443,0.2781613589124878,0.2785858481287851,0.2813678509654918,0.2849786211416622,0.2883866481223922,0.2926493169022402,0.2992631436191854,0.3024395384372201,0.3031634446397188,0.3064724182411412,0.3111567931227808,0.3169014084507042,0.3194592131247152,0.3197969543147208,0.3238356164383562,0.3275928052047455,0.0,2.5626442416914057,52.454969605215325,139.53490437790188,194.6136651182673,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95813,48460,461.10653042906495,4904,49.87840898416707,3894,40.036320749793866,1532,15.5615626272009,77.3504688262772,79.68224755151702,63.33176974345843,65.05967657404074,77.15301750676458,79.49018824342883,63.256019011301696,64.98862819666974,0.1974513195126093,192.05930808819005,0.0757507321567345,71.04837737099956,230.34176,162.0973682576075,240407.62735745672,169180.97571061077,540.0601,363.629207966684,563078.2252930187,378937.3550214313,482.94163,237.0770393411939,500693.9454980013,244765.7285950233,2231.978,1061.253249610456,2295954.8704246813,1074069.7917928214,885.7177,407.0590072241513,905859.5388934696,406312.28763514507,1489.18776,647.5043332804432,1514274.9731247325,641216.4581352068,0.38196,100000,0,1047008,10927.61942533894,0,0.0,0,0.0,47060,490.5492991556469,0,0.0,43605,451.6923590744471,1115270,0,40109,0,0,0,0,0,99,1.0332627096531786,0,0.0,0,0.0,0,0.0,0.04904,0.1283904073724997,0.3123980424143556,0.01532,0.3568221745071247,0.6431778254928753,23.36696198387432,4.092735410684391,0.3050847457627119,0.2750385208012326,0.2116076014381099,0.2082691319979455,11.094622259948297,5.976416259264444,16.609380412307445,11447.3936022381,44.69249773535633,13.076644784490703,13.360453408015522,9.26461763055454,8.99078191229557,0.5821777092963534,0.8104575163398693,0.6835016835016835,0.6007281553398058,0.1134401972872996,0.7564102564102564,0.9230769230769232,0.8762214983713354,0.74235807860262,0.1452513966480447,0.5073421439060205,0.7272727272727273,0.6163450624290578,0.5462184873949579,0.1044303797468354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024515266324938,0.0045425509262545,0.0067593626306708,0.0089613200166627,0.0109140102121773,0.0130268277280968,0.0155830911223293,0.0178704545222461,0.020234553132317,0.0225213697087577,0.0249482168126166,0.0271913250636654,0.0292472233648704,0.0314321613215514,0.0337761184794043,0.0357401169638982,0.0377938573336231,0.0397668340040658,0.0417052056161208,0.0437136283664907,0.0582730885988796,0.0727280331228305,0.0863687806513811,0.0990123975625131,0.1109401997555733,0.1265416116248348,0.137049486263241,0.1472337166381226,0.1577789877120498,0.1667863304649742,0.1775195049771321,0.1890594594594594,0.2002194364177548,0.2090829598863263,0.2177997799779978,0.2274862613011877,0.236484375,0.2439032624720062,0.2507494549418604,0.2566689956131811,0.2631451052996991,0.2692761996093887,0.2753019673721444,0.2793717729086051,0.2833519634525661,0.2869967322276343,0.290666800260508,0.2938269718157388,0.2981667422426637,0.3008477933602725,0.2968370813784177,0.2935164396203804,0.2904708204116154,0.2876862813118829,0.2847636871342423,0.2815379434903725,0.2781478961277356,0.2777868906239748,0.2778516850866421,0.2781836974730013,0.2776833890330651,0.2780982380155527,0.2793467378608376,0.2794700512135382,0.2796322015229155,0.2814486211637741,0.2816514799932084,0.2857945500515029,0.289661875998056,0.2926829268292683,0.2982235214751518,0.3012880929940308,0.3043262367326671,0.3088488293814047,0.3137273064097814,0.316974126928878,0.3184818481848185,0.3232502965599051,0.3247794707297514,0.3259481787457754,0.0,2.3468673576937715,50.45384726306015,145.1279460076167,198.09050800577717,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95712,48539,463.3379304580408,4807,48.82355399531929,3802,39.06511200267469,1458,14.794383149448343,77.30949638025908,79.67021471312552,63.31695901961641,65.059884091892,77.1102132573695,79.47506408219566,63.24073847644755,64.98773848661632,0.1992831228895824,195.1506309298594,0.0762205431688656,72.14560527567926,228.67614,161.0341156381789,238920.84587094616,168248.38644911707,537.00967,362.1473800790101,560408.4127382147,377713.1978126161,482.08947,237.0679501974465,499722.1351554664,244630.9278385637,2193.95016,1046.3522210249146,2256244.943162822,1057427.3778645073,901.4081,413.187737307976,924923.5205616852,414945.18805739086,1427.6065,624.5831469317977,1451227.9129053827,617818.5296155779,0.38147,100000,0,1039437,10860.038448679372,0,0.0,0,0.0,46731,487.5459712470745,0,0.0,43523,450.810765630224,1122780,0,40230,0,0,0,0,0,105,1.0865931126713473,0,0.0,1,0.0104480106987629,0,0.0,0.04807,0.1260125304742181,0.3033076763053879,0.01458,0.3682946357085668,0.6317053642914331,23.217740627896266,4.097458578008499,0.2958968963703314,0.2795896896370331,0.2085744345081536,0.2159389794844818,11.186947825414013,5.8265790178164,15.78949207917568,11352.03294318906,43.75332645845442,12.989824333515916,12.876941779446554,8.871138337017136,9.015422008474824,0.567859021567596,0.7968015051740357,0.6702222222222223,0.5737704918032787,0.125456760048721,0.736013986013986,0.92183908045977,0.8313253012048193,0.693069306930693,0.1428571428571428,0.4954853273137697,0.7101910828025477,0.6027742749054225,0.5329949238578681,0.1207430340557275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179236588651,0.0046833184656556,0.00690893596299,0.0089786300479401,0.0111421745539572,0.0132930267590867,0.0154410640574835,0.0176692151438749,0.0197661583745554,0.0218603841942053,0.0241494890271528,0.0260796352958087,0.0281131105398457,0.0302665183720547,0.0321971845511267,0.0342811092284167,0.0364095505210974,0.0386721423682409,0.040658095762703,0.0429479166666666,0.0580581834889209,0.0720094617083407,0.0848533159920705,0.0969746679705984,0.1092680663496114,0.1249854569684918,0.1357534726275242,0.1464951878034239,0.1560239741028407,0.1649937802942564,0.1764750247812782,0.1869782248546338,0.1966149659863945,0.206197528431791,0.2151941945359042,0.2247228381374723,0.2335895258948121,0.2417565086124348,0.2490684358811233,0.2564475825863689,0.2621500845122601,0.2669435507458321,0.2720006630985648,0.2758798550968021,0.2808106827377553,0.2849780539527543,0.2896527569298509,0.2921994478160744,0.2956155689398355,0.2973901098901099,0.2946455037861435,0.2912979452526114,0.2885935363842652,0.2866098512205691,0.2843003210082035,0.2815339124572934,0.2778226893020749,0.2780769735977932,0.2784935579781962,0.2787892865438562,0.2793412276099827,0.2795924423780789,0.2797879695782438,0.2805868014401682,0.2821401911916973,0.2819478423819687,0.2820051927301777,0.2855395615768181,0.2883223166509285,0.290981505579873,0.2958357824298051,0.2982807720704567,0.3005003126954346,0.3029271613342409,0.3071035190889573,0.3143259415698697,0.3165478537843167,0.3149350649350649,0.3192360163710777,0.3176291793313069,0.0,2.4656702425821315,49.32460003641231,144.2348363224842,190.39081514814396,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95737,48104,459.0701609618016,4687,47.90206503232815,3724,38.35507692950479,1442,14.696512320210578,77.40440741590693,79.7618537174278,63.3594678928421,65.09928086318016,77.21911793392837,79.57986854184286,63.289243830106585,65.032909162457,0.1852894819785575,181.9851755849413,0.0702240627355124,66.37170072315257,230.1563,161.82678153496917,240404.75469254312,169032.6431107818,539.15813,363.03261876818135,562629.8609732914,378661.79091488273,481.25614,235.6803433695211,499558.2376719554,243756.79165047087,2137.39264,1011.3059931683696,2202306.193007928,1026076.8910331113,861.80135,394.6458287568629,886154.3917189802,398201.4012229981,1402.8306,595.3964914889903,1431248.3574793444,592150.848234634,0.37844,100000,0,1046165,10927.488849661053,0,0.0,0,0.0,46969,490.0508685252306,0,0.0,43509,451.2675350178092,1121346,0,40234,0,0,0,0,0,78,0.8147320262803305,0,0.0,1,0.0104452823882093,0,0.0,0.04687,0.1238505443399217,0.307659483678259,0.01442,0.3734099302421009,0.6265900697578991,23.11613922823621,4.057520383577467,0.3152524167561761,0.2795381310418904,0.1989795918367347,0.2062298603651987,11.524908274134388,6.341749843391448,15.275483034065312,11215.295405492565,42.73012695109009,12.82405081607386,13.30443237297177,8.209044698863744,8.392599063180716,0.5899570354457573,0.8261287223823247,0.6882453151618398,0.5964912280701754,0.11328125,0.7605760576057605,0.930957683741648,0.8535825545171339,0.7,0.1677018633540372,0.5174129353233831,0.7466216216216216,0.6260257913247362,0.5632798573975044,0.0988467874794069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025210849777759,0.0048137826197111,0.0069389494187108,0.00917077134007,0.011052026882759,0.0130903908794788,0.0154191082802547,0.0176933359182882,0.0195459375510871,0.0212739831158864,0.0234495905545705,0.0258536635431527,0.027757502236021,0.0298801087673038,0.0319448600348752,0.0340820988866721,0.0362975466793699,0.0386103590286206,0.0405533210696432,0.0426110324139655,0.0567034527401622,0.0700516963519537,0.0832249402089539,0.096431650440524,0.108546251791888,0.1237588689978957,0.1337711387892804,0.1440145643471595,0.1543055555555555,0.1626951784488675,0.1745845404904737,0.1860749494096895,0.1965303458777463,0.2058321852653677,0.2140656971243757,0.2237845857460778,0.2319147749456188,0.2391658703839019,0.2465332501842508,0.2525573838020917,0.2580600445887095,0.263974140546596,0.2688617454416711,0.2733428069882136,0.2778201450170074,0.280998231479662,0.2842666200751289,0.2886651534940339,0.291790842590084,0.2946354666211191,0.2913388992374801,0.2881153940987918,0.2858485009955969,0.2823614007334435,0.2804604154969118,0.2761504364118265,0.272459429651804,0.2722629285725942,0.2725960885508624,0.2739415009667063,0.2741517765646252,0.274968518810011,0.2751041666666666,0.2749900084373196,0.2764901057455899,0.2765549743642861,0.2774031543605225,0.282061663033323,0.2855454355836752,0.2888591870430065,0.2913268754223924,0.2941516777111602,0.2967565552379769,0.2972445378782191,0.2976684176573587,0.3031145073520898,0.3078658444878929,0.3097362680943882,0.3131120783460283,0.3269902912621359,0.0,2.1068986627037485,48.1462701718734,142.23538634140473,185.55444378944588,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95740,48658,465.0720701900982,4887,49.82243576352622,3853,39.57593482348026,1450,14.69605180697723,77.33232137485312,79.69938431946379,63.31916690730778,65.0713953335224,77.14583860031588,79.51791855220532,63.24763483430349,65.00488537192588,0.1864827745372395,181.46576725847297,0.0715320730042918,66.50996159652323,230.49312,162.16115723622926,240749.0286191769,169376.60041385968,541.34954,364.957305208965,564782.6822644663,380541.78526108735,492.62008,241.8601780279653,510378.2431585544,249410.16815827863,2201.06132,1048.1313287226317,2261144.1821600166,1056913.9844606542,895.4712,407.1343374745855,915135.9515354084,405070.2919099498,1406.80562,607.7538426869505,1426284.4161270107,596715.322184946,0.38142,100000,0,1047696,10943.137664508044,0,0.0,0,0.0,47159,491.8738249425528,0,0.0,44503,460.73741382912056,1112914,0,39964,0,0,0,0,0,92,0.9504909128890746,0,0.0,0,0.0,0,0.0,0.04887,0.1281264747522416,0.2967055453243298,0.0145,0.35553819105294,0.64446180894706,23.125660595399832,4.079345004053135,0.3124837788736049,0.2886062808201401,0.1995847391642875,0.1993252011419673,11.479352934644265,6.299998813487537,15.537130378399567,11314.052375588026,44.33526970203679,13.627058637164996,13.684504146858789,8.631648235828806,8.392058682184198,0.5912276148455748,0.795863309352518,0.71843853820598,0.5630689206762028,0.1236979166666666,0.7536231884057971,0.9234042553191488,0.8630952380952381,0.7150259067357513,0.1264367816091954,0.5201492537313432,0.7024922118380063,0.6624423963133641,0.5121527777777778,0.1228956228956228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023004580647776,0.0045745468561401,0.0067216310616521,0.0090047971379786,0.0114043297794416,0.0135899186031112,0.0156645182344782,0.0180297910136908,0.0201421195235417,0.0222256347256347,0.0242857289306693,0.0263638790218261,0.0282982005141388,0.0303823020515778,0.0324470993634384,0.0341794654484569,0.0360848226304127,0.0382293136359863,0.0400619375220834,0.0423471088151974,0.0567288519558613,0.0715302193202745,0.0843997818151302,0.097253186387919,0.1096183656898206,0.1248122368671589,0.1354104762713303,0.1458135945068398,0.1556488394697771,0.1643753351206434,0.1761582127815418,0.1874161291718973,0.1981875149589851,0.2070285583033458,0.2155952197548253,0.2242794024826425,0.2331938633193863,0.2409517916408843,0.2489051757391482,0.2546942981451797,0.2608600085607524,0.2664990351441436,0.2710110126687091,0.2748909970772842,0.2785607633198587,0.283129933623142,0.2867680152022803,0.2892406591033247,0.2934033390665614,0.296125522020367,0.2934709566432814,0.2896920245061677,0.2867986056448892,0.2845778027584418,0.2817256250277872,0.2783445326817348,0.2749415186192072,0.27443184607078,0.274418130196025,0.2748007401081697,0.2755578813590999,0.277748211223464,0.2799072546111587,0.2813663626836719,0.2809875713805845,0.2823327882893405,0.2821580288870008,0.2881977071978951,0.2925459555617566,0.2984696903792163,0.298838102988381,0.3039054634094643,0.30571608040201,0.3101960487472561,0.3131378734459083,0.318997668997669,0.3214232321722231,0.3298480962714539,0.3252336448598131,0.3360778443113772,0.0,2.604085485995169,50.600335632822,143.47465397780346,193.42759698329647,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95729,48349,460.91570997294446,4891,49.932622298363086,3899,40.17591325512645,1457,14.85443282599839,77.41699606751023,79.76953190784175,63.36600846061516,65.10026075346674,77.22730835704594,79.58440847371517,63.29382025279533,65.03201876655221,0.189687710464284,185.12343412658083,0.0721882078198348,68.2419869145292,230.67154,162.3019118618679,240962.613210208,169542.65799685346,542.03882,364.9904032878479,565626.7170867763,380684.78398884577,483.15299,237.0487494570091,501298.67647212447,244917.8603972624,2234.80116,1052.0855807704402,2302730.20714726,1067770.6083516686,902.77365,407.26934597561217,929303.1369804344,411970.2324416101,1414.72002,608.7296617808545,1443408.2461949878,607194.7450814537,0.3812,100000,0,1048507,10952.846055009451,0,0.0,0,0.0,47260,493.0794221186892,0,0.0,43682,452.9244011741479,1116002,0,40024,0,0,0,0,0,88,0.919261665743923,0,0.0,2,0.0208923105850891,0,0.0,0.04891,0.128305351521511,0.2978940911878961,0.01457,0.3688620420888542,0.6311379579111458,23.083844534374112,4.040196463068608,0.3044370351372146,0.287509617850731,0.2008207232623749,0.2072326237496794,10.92351320188832,5.912100942425275,15.582930046107425,11354.9327502869,44.54827835175736,13.680996731114156,13.485385843870128,8.658345211244404,8.723550565528674,0.5842523724031803,0.8010704727921498,0.7177759056444819,0.5555555555555556,0.1150990099009901,0.7457337883959044,0.9136363636363636,0.8760563380281691,0.6714975845410628,0.1294117647058823,0.5148514851485149,0.7283406754772394,0.6502403846153846,0.5138888888888888,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.004396762200002,0.0064305420318078,0.008519582855228,0.0110724743777452,0.013243347788025,0.0155848656582541,0.0180547050418452,0.0204488319332883,0.0227219249695642,0.0250440627946058,0.0271454668609782,0.0290507617344106,0.0311521667490525,0.0333415862012049,0.0355367716201833,0.037674707526659,0.0396399012632496,0.0415198661387044,0.0433681973497791,0.0575005481711964,0.071390455463363,0.0846534757338593,0.0981268602559922,0.1101946969856772,0.1246166211900078,0.1354547865287722,0.1452110787047878,0.1545356452250462,0.1631528150134048,0.1750263820989382,0.1858872407413418,0.1970130110109892,0.2068336482899494,0.2150430129972863,0.2245909437886515,0.2333147570218457,0.2408522880517846,0.2476532740794485,0.2548680868590257,0.2614198529751722,0.2667344220929417,0.2717474798804051,0.2766543017829365,0.2802629663771772,0.2842971951804856,0.2878787878787879,0.2900210804358316,0.2933994806402852,0.2967112538838274,0.294162681996454,0.2918519128382458,0.2890184781845008,0.2856236115518883,0.2829167778469566,0.2798198748282705,0.277236925015753,0.276730072759307,0.2775760865877243,0.2788424072827742,0.2799145299145299,0.2800587659157688,0.2816409659586849,0.2824008498583569,0.2828597966133988,0.2827849801146635,0.2845141101181246,0.2883050742189926,0.2930861202564547,0.2972602202798573,0.3029745614428641,0.3084175789639097,0.3121125712868832,0.3192707548591231,0.3202995008319467,0.3255329008341056,0.3308911483253589,0.3371383585908286,0.3383878691141261,0.3428991905813098,0.0,2.028177153617707,51.16668219201042,140.09105482252397,201.47267919156369,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95706,48632,464.1192819676927,4936,50.39391469709318,3937,40.666206925375626,1474,15.129667941403882,77.3508434030137,79.74196102053634,63.31502979323547,65.0829139333875,77.16289395257111,79.55425027310156,63.24538993433963,65.01506686360179,0.1879494504425878,187.7107474347781,0.0696398588958402,67.84706978571364,230.95754,162.38201216288994,241319.35301861956,169667.1825951253,540.51717,364.1239958113765,564296.1987754165,379993.269046976,489.58632,240.4552151104469,508149.85476354667,248610.38538738064,2237.83664,1052.0298796354184,2313013.8131360626,1074294.161926577,890.3386,405.8736514251558,919128.7902534849,412927.5608897618,1424.2387,598.3523694024792,1462919.6497607257,604042.1818821895,0.38133,100000,0,1049807,10969.06150084634,0,0.0,0,0.0,47064,491.2440181388836,0,0.0,44272,459.22930641757046,1111005,0,39941,0,0,0,0,0,80,0.8358932564311538,0,0.0,0,0.0,0,0.0,0.04936,0.1294416909238717,0.2986223662884927,0.01474,0.3498932660586066,0.6501067339413934,23.187345865500397,3.951180817744762,0.3246126492252985,0.2839725679451358,0.1976123952247904,0.1938023876047752,11.298018090279696,6.312120643250072,15.553284081684083,11389.527909015123,44.91761765567008,13.821752340443345,14.3093547507066,8.562127863641168,8.22438270087897,0.58750317500635,0.8193202146690519,0.6784037558685446,0.5629820051413882,0.1205766710353866,0.7741393786733837,0.9217221135029354,0.8550295857988166,0.7243243243243244,0.1783439490445859,0.5065549890750182,0.7331136738056013,0.6148936170212767,0.5126475548060708,0.1056105610561056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.00463437141901,0.0067506522246698,0.0091369217009512,0.0114651366253636,0.0135184694688372,0.0156382295035142,0.0178013358661682,0.0199629784927542,0.0221625939657114,0.0242026458824735,0.0262730839547256,0.0284400650058628,0.0305481145683082,0.0327560940370286,0.0347650798573422,0.0370055736278308,0.0390882859693189,0.0413247209827232,0.0433400389831038,0.0583959140616024,0.0719827450816153,0.0859712834291951,0.0988933538111969,0.1113478618594544,0.1269134339726433,0.1370786278339135,0.1470162286493163,0.155853178844756,0.1646045049202142,0.1766354435018809,0.1878017624006755,0.1981415389972144,0.2077455926286646,0.2165455746367239,0.2257156160617281,0.2344510425503415,0.2430296822413075,0.2500794840350638,0.2561284481474266,0.2615544881069506,0.2674445822897404,0.2727509562210617,0.2760013907372106,0.2795529097315029,0.2834795033504139,0.2867570776826448,0.2915628970775095,0.2952425252603561,0.2983029408664488,0.2945282866596723,0.2919053309707284,0.2889201152251809,0.2859880412074058,0.2840638452093904,0.2813114754098361,0.2773897551515916,0.2770822437238494,0.2774629431085244,0.2786296842516746,0.2788065268065268,0.2803486933815012,0.2815812445442075,0.2812943577004968,0.2834902848968887,0.2858508110341977,0.2872810100953291,0.2891764413827344,0.2932044218040683,0.2985319381539903,0.3038325656276553,0.3069104626185361,0.3113318845079168,0.3167257104092862,0.3173390477965154,0.3218241810040066,0.3274818401937046,0.3325410972469796,0.3370846730975348,0.3397947548460661,0.0,1.790776106013061,52.27893465910149,139.6857801827028,203.49770116474303,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95727,48490,463.4638085388657,4711,47.99064004930688,3757,38.70381397097997,1391,14.165282522172427,77.26691653433518,79.6259171912747,63.2951211478972,65.0388127273071,77.08372137040782,79.44616164900468,63.22617914547092,64.9730195466182,0.1831951639273654,179.75554227001567,0.0689420024262759,65.79318068889961,230.29468,162.03414350754875,240573.7357276421,169266.32470831525,537.01889,361.71798080532017,560427.0373039999,377305.1064177273,482.75796,236.8725910756464,500862.2227793621,244722.42577579417,2165.83256,1014.761667571418,2234828.0422451342,1032830.9753366914,888.94879,404.45520775329607,915129.1380697192,409405.9282866737,1363.20512,581.0799410928958,1391414.2718355325,580904.4867541877,0.38055,100000,0,1046794,10935.169805801916,0,0.0,0,0.0,46770,487.971000867049,0,0.0,43587,451.847441160801,1114158,0,40012,0,0,0,0,0,84,0.8774953774797078,0,0.0,2,0.0208927470828501,0,0.0,0.04711,0.1237945079490211,0.2952663977924007,0.01391,0.3680470970361348,0.6319529029638652,23.218626856426585,4.0675223343936215,0.3074261378759648,0.27495342028214,0.2070801171147192,0.2105403247271759,11.516765938907724,6.172121623180981,14.932894777983234,11267.717805950144,42.92048256276059,12.636478577616783,12.9560932740929,8.751304195280577,8.576606515770315,0.5805163694437051,0.8034849951597289,0.6952380952380952,0.5861182519280206,0.1163084702907711,0.7506726457399103,0.9022222222222224,0.8480565371024735,0.7534883720930232,0.1736526946107784,0.5087055261165784,0.7272727272727273,0.6456422018348624,0.522202486678508,0.1009615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295385487987,0.0048160277403197,0.0070118115030239,0.0091831655509391,0.0113805097329292,0.0136132691191593,0.0156480962332432,0.0179050846765549,0.0200566328981936,0.0222731739272846,0.0241307200262424,0.0262825580320934,0.0284744716952028,0.0305805042847725,0.032539281329633,0.0341837051125674,0.0362128241239333,0.0381890049694467,0.040226599449093,0.0423629922900604,0.0574170173222098,0.071160931089341,0.0839157170139981,0.0962491451417749,0.1091687854075895,0.1249338610340959,0.1354805834518779,0.1451971925489653,0.1547920743378351,0.1642335766423357,0.175874521640705,0.1867009058206561,0.1968180679726889,0.2049473834057883,0.2141479808275026,0.2229263312099083,0.2318407960199004,0.239822470543177,0.2468994184990005,0.2532433299715779,0.2586859185727673,0.2647244647244647,0.2704753112720731,0.2747758546291413,0.2788090089652324,0.281738744623424,0.2855390008764242,0.2889208413391187,0.2919343973468753,0.294640025372661,0.2912461546764531,0.2880743560041922,0.2855045664356394,0.2829312738632419,0.2806232437816863,0.2770522959965667,0.273992581084937,0.2748183223175824,0.2751278411520241,0.274871868135793,0.2756431861588586,0.2762360005530646,0.2776927752509903,0.2782643667888104,0.2792090640109692,0.2795998645374736,0.2818759438128615,0.2881366596407336,0.2923652536091207,0.2954818072770891,0.2983963083108694,0.3019612023022809,0.3056271612700408,0.3074068464101787,0.3098156638907083,0.3074209102669646,0.3162031438935913,0.3184357541899441,0.3156750882912252,0.3258469737342976,0.0,2.0306657545409807,48.50537027225954,135.6148115785569,196.37169016618196,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95708,48000,458.8226689513938,4817,49.191290174280105,3852,39.74589376018724,1473,15.056212646800686,77.288290147924,79.65824063270856,63.294707477804174,65.0441605722259,77.10017479629497,79.47159567492847,63.22348841799487,64.97573335752934,0.1881153516290368,186.64495778008927,0.0712190598093087,68.42721469656965,230.8372,162.41755714411192,241189.0333096502,169701.12962773428,540.75992,364.1037245228092,564489.5411041919,379911.959863704,477.47559,234.1621046062536,495796.9971162285,242285.32635919447,2217.8422,1047.9143379081463,2290906.9670247,1068555.3415285223,912.03271,412.12448030257127,942469.3024616544,420169.30238425976,1432.12326,611.574997676419,1465752.81063234,612853.3784559836,0.37799,100000,0,1049260,10963.137877711371,0,0.0,0,0.0,47205,492.665189952773,0,0.0,43237,448.7190203535754,1109371,0,39877,0,0,0,0,0,81,0.846324236218498,0,0.0,0,0.0,0,0.0,0.04817,0.1274372337892536,0.3057919867137222,0.01473,0.3585506669321123,0.6414493330678878,22.869565458521027,4.10238130969431,0.3185358255451713,0.2684319833852544,0.2058670820353063,0.2071651090342679,11.275321740751792,6.0983266457489,15.70686979187634,11230.262028864625,44.26776223161311,12.77471238905298,14.002299648720898,8.817792009608828,8.672958184230408,0.5815160955347871,0.7959381044487428,0.6919315403422983,0.5863808322824716,0.1290726817042606,0.756872852233677,0.90990990990991,0.877906976744186,0.72,0.1761363636363636,0.5055803571428571,0.7101694915254237,0.6194790486976217,0.5413153456998314,0.1157556270096463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875854525567,0.0043085532385113,0.0063319397653935,0.0084317032040472,0.0106887153201529,0.0127788695537068,0.0147019840541587,0.0168121267799724,0.0189309918326876,0.02101008033567,0.0228237030356447,0.0249840898359713,0.0272257122587676,0.0291758066343292,0.0313357400722021,0.0334225566085509,0.0356384796181443,0.0376089663760896,0.0396288822782966,0.0417821782178217,0.0564693841317584,0.0690684088196494,0.0823336796700355,0.0952526283663611,0.1080744423683904,0.1232609846479618,0.1343137775418104,0.1443943703987811,0.1535500427715996,0.1629173064739549,0.1742979769658801,0.1853617316317465,0.1955565236331954,0.2046925123443949,0.2126665932371406,0.2220459336513924,0.2315191628281382,0.2400505084669327,0.2473695585408301,0.2535767596739006,0.259497634288895,0.2641555883801083,0.2690364360945061,0.273466300027618,0.2779021932280129,0.2826594234211988,0.286474278544542,0.2901790835510802,0.2945481915984271,0.2976374621557662,0.2937355988842925,0.2904817019400352,0.2884742940205196,0.2848853194414297,0.282113845329842,0.2786779795999632,0.2749351306879311,0.2745278069254984,0.2735667104746624,0.2737452081661763,0.274573289414583,0.2756588413852916,0.2761576251698547,0.2768573906468901,0.2772300861719141,0.2778696573466329,0.2774022006618957,0.2831786506671666,0.2877080353093053,0.2925213000946671,0.2949532540619043,0.2999630001585707,0.3058258483033932,0.310908543016423,0.3113424859485856,0.3162661093695576,0.3242152466367713,0.3285742613523696,0.3331555081355028,0.3313521545319465,0.0,1.892461207329212,50.91630996675365,142.05011051606175,196.46681584068335,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95823,48877,466.1406969099277,4931,50.196716863383536,3929,40.355655740271125,1487,15.132066414117697,77.36488025655099,79.68131017229594,63.35773544642036,65.07178892434939,77.16829638503953,79.48824291981448,63.28334939405642,65.0012863205561,0.1965838715114642,193.0672524814554,0.0743860523639341,70.50260379328677,231.75306,163.01646127664478,241853.9807770577,170121.1470008086,541.08366,365.1638746356652,563980.380493201,380393.6828038104,490.47098,241.17709606537932,507790.2799954082,248476.097500406,2252.34512,1071.2565064196697,2315806.476524425,1083331.2336491963,901.75197,411.917741130664,924711.17581374,413572.7876791114,1447.86468,624.5696935815408,1475087.0459075589,620472.9991958359,0.38319,100000,0,1053423,10993.362762593531,0,0.0,0,0.0,47053,490.3415672646442,0,0.0,44297,458.26158646671473,1110930,0,39888,0,0,0,0,0,99,1.0331548793087255,0,0.0,0,0.0,0,0.0,0.04931,0.1286828988230381,0.3015615493814642,0.01487,0.3575745759407291,0.6424254240592708,22.793443668538117,4.062858526175011,0.3005853906846525,0.2886230593026215,0.200814456604734,0.2099770934079918,11.078302649844671,5.863947455430041,16.107848009403913,11395.503925153494,45.45135838116498,14.080109698484948,13.520269268842595,8.844649502548824,9.006329911288606,0.5848816492746246,0.8201058201058201,0.7138018628281118,0.5665399239543726,0.0945454545454545,0.7422258592471358,0.9094488188976378,0.844311377245509,0.7064676616915423,0.1173184357541899,0.513852973771703,0.7476038338658147,0.6623376623376623,0.5187074829931972,0.088235294117647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0050590048258242,0.0074174040100657,0.0097204729208142,0.0120499079732766,0.0140308719912027,0.016422353157047,0.0183861812687588,0.0207515538109257,0.022959209785557,0.0250071741893166,0.0269285633652494,0.0287258861858806,0.030835734870317,0.0330265016028779,0.0349028068835231,0.0368638808440215,0.0392270631508055,0.0411911906714984,0.0431041657996587,0.0579087353324641,0.0726641790264756,0.0857846218311334,0.0987860458278201,0.1110537734060703,0.1260532595611682,0.1369053293926971,0.1454918468439739,0.1544911457222103,0.1630856237012917,0.1757320825354476,0.1883141451813415,0.1986442003715412,0.2080507595365243,0.2166230797969364,0.2259548399938076,0.2342857142857143,0.2428165598086661,0.2504699141698938,0.2559591178790685,0.2618475750577367,0.2682807246918192,0.2727659373375549,0.276657060518732,0.2809561366256142,0.2853240472997084,0.2889127664359429,0.2928387285219003,0.296065637315072,0.2994579232671964,0.2963539918082321,0.2935304940000549,0.29094694199066,0.2876046176046176,0.2846134430075277,0.2807436309387193,0.2763205799946179,0.2759973731735347,0.2756033362958912,0.2752468882261549,0.2765066911916515,0.2767220902612826,0.2778778862674433,0.2782260768491405,0.280334427329133,0.2821598317014259,0.2830973952434881,0.2872653316645807,0.2896043064876957,0.2941596006022664,0.2990798943244966,0.3036340452661779,0.3092757466691924,0.3134908536585366,0.3174408743993215,0.3191866650904362,0.3215050474151116,0.3269776876267748,0.3338824821526633,0.3411538461538461,0.0,2.405362639943207,52.93166445581508,146.84205629119535,195.18653097463385,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95633,48153,459.8726381060931,4891,49.8781801261071,3854,39.65158470402476,1490,15.151673585477816,77.2563444549925,79.66551333810418,63.27473565930678,65.05536400116476,77.06301534008435,79.47777115737321,63.20073302749629,64.98635772996653,0.1933291149081526,187.7421807309645,0.0740026318104938,69.00627119823355,229.83686,161.67396865880067,240332.1656750285,169056.67359468035,537.26881,362.9639112503273,561187.2052534167,378922.8208362461,480.54094,235.9550243382202,498802.6204343688,243853.8179297192,2217.23008,1055.0877667858606,2284078.801250614,1068868.2429557384,890.21998,407.3984736111267,917139.6484477116,412270.50663591706,1446.2428,624.5441963954711,1473383.790114291,619281.4439874621,0.3787,100000,0,1044713,10924.189348864931,0,0.0,0,0.0,46915,489.90411259711607,0,0.0,43420,450.2838978176989,1114430,0,40013,0,0,0,0,0,75,0.7842481151903632,0,0.0,1,0.0104566415358715,0,0.0,0.04891,0.1291523633482968,0.3046411776732775,0.0149,0.3583905789990186,0.6416094210009814,23.037349825602195,4.088182113181624,0.3098079916969382,0.2667358588479502,0.2244421380384016,0.1990140114167099,11.322024484633904,6.162167781321786,16.052179711819672,11300.667305374149,44.23011632964592,12.711745508785368,13.53116020480089,9.497714640708052,8.489495975351605,0.5910742086144266,0.8103112840466926,0.6892797319932998,0.6069364161849711,0.1264667535853976,0.768313458262351,0.9324618736383442,0.8605341246290801,0.7794871794871795,0.174863387978142,0.5134328358208955,0.7117750439367311,0.6219369894982497,0.5567164179104478,0.1113013698630137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104927330733,0.0048751811722732,0.0069820071240828,0.0091432751211483,0.011343982093804,0.0135183317543269,0.0155255426799412,0.0174608688544689,0.019638729210564,0.0218513737783514,0.0239697914956493,0.0261540674970197,0.0283414147029453,0.0303323985483338,0.0324153461562299,0.0344677724775198,0.0365935831648784,0.0388407001506258,0.0408428720083246,0.0427979847500234,0.0567922911310382,0.070737865501671,0.0838635170603674,0.0963619520821929,0.1084834478319139,0.1240436406734462,0.1349592978210802,0.1445169810115123,0.1540821343822818,0.1625633210268738,0.1748754663273888,0.1870083432657926,0.1971043859075756,0.2064113102087785,0.2145835171622694,0.2240033748154397,0.2326588140541629,0.2401379559082097,0.2472267685033642,0.2532664930655134,0.2594765709249875,0.2647907140344706,0.2697618143860315,0.2739581332821202,0.2787731256085686,0.2831265049083163,0.2865414985085102,0.2904080618653892,0.2941954388103048,0.2978094093724004,0.2943912006146629,0.2909609580640271,0.288436833858012,0.2857536032447309,0.2837751255345462,0.2800639232920495,0.2755759345052992,0.2761807656887252,0.2767209290357994,0.2773896531957581,0.2777422870241629,0.2788210125980508,0.2806609213478434,0.2807866396129234,0.2820076257164097,0.2818221956730644,0.2837526652452025,0.2885193536264562,0.2931550727665204,0.2967378900562704,0.3005193045834274,0.304677623261694,0.3053468569997495,0.3073912388980882,0.3104049958673891,0.3150238566274875,0.311848764513248,0.310365251727542,0.3159861222311182,0.3158694001518602,0.0,2.529463628309421,50.521801400741296,139.94660316224162,197.60513367458336,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95706,48256,461.256347564416,4833,49.50577811213508,3804,39.297431717969616,1442,14.847553967358367,77.32722884548278,79.70382858011043,63.32110870231941,65.07601796750888,77.14110474662502,79.51637155825932,63.252098207364085,65.00754204747389,0.1861240988577606,187.45702185110247,0.0690104949553287,68.47592003498448,229.33878,161.34006192836452,239628.42455018492,168578.83719763078,535.68481,361.2579123672373,559263.51534909,377018.13207224617,480.31001,235.73015640290663,498404.0603514931,243697.17485234988,2186.15224,1040.5144456011749,2258469.980983428,1062132.8731814567,884.32565,403.95831113536826,911035.2642467556,409278.9363091026,1396.94648,596.6285820374537,1438665.8934654044,607189.0897612212,0.38048,100000,0,1042449,10892.201115917496,0,0.0,0,0.0,46759,488.1094184272668,0,0.0,43434,450.43152989363256,1121620,0,40303,0,0,0,0,0,82,0.8463419221365431,0,0.0,1,0.0104486657053894,0,0.0,0.04833,0.1270237594617325,0.2983654045106559,0.01442,0.3611662038873462,0.6388337961126537,23.0816255314914,4.07957434619046,0.3083596214511041,0.2762881177707676,0.2166140904311251,0.1987381703470031,11.489176102001686,6.331122771097465,15.602251531901144,11338.312977360472,43.85164329508976,12.82616974259926,13.532510481698058,9.202832505521318,8.290130565271111,0.5912197686645636,0.8106565176022835,0.711849957374254,0.5788834951456311,0.1124338624338624,0.7647058823529411,0.9333333333333332,0.8559077809798271,0.7647058823529411,0.1470588235294117,0.5154833836858006,0.724025974025974,0.6513317191283293,0.5177419354838709,0.1023890784982935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0045504758236969,0.0065131378715633,0.0087652477731395,0.0109923633072675,0.0129514422734261,0.0152244406828054,0.0172193682146395,0.0194097314544004,0.0215461183193208,0.0238539636960311,0.0261182149643095,0.0281520643475756,0.0300460582580292,0.0320137054161162,0.0338266166144427,0.0358859605503066,0.0378933380397205,0.0401797322738004,0.0421917179992287,0.0569324768917436,0.0714427735744409,0.0844616917510095,0.0972512965086311,0.1090535196414447,0.1242106599253234,0.1349186137815411,0.1454231838073233,0.1551626515677581,0.1633487074975866,0.1756596661281637,0.1868134246782904,0.1976009483105499,0.2065609622744669,0.2159818657981029,0.2249324294386104,0.2325931711671502,0.2413230762309647,0.2485789814047946,0.2548211259218542,0.2606154593956508,0.2665949259003661,0.2715494290954268,0.2766031361932029,0.2806039404319413,0.284253074704853,0.2873233795977623,0.2911778925672409,0.2946515271178321,0.2979180959417383,0.2952117987743282,0.2921966311447233,0.289530004787249,0.2867078379314325,0.2845941370400071,0.2807888567094194,0.2779025624802277,0.2781394131693435,0.2779167304714749,0.278570921230201,0.2784765312016695,0.27963669248614,0.2814740703685175,0.2822440717177559,0.2844208105777522,0.2845156765462244,0.2853451458102621,0.2897775274570544,0.2946979468051731,0.2983156729400601,0.3011911256592107,0.3038014951487195,0.307330532388537,0.3127421928424891,0.3169953051643192,0.3201083117494702,0.3211845102505695,0.3210124548011249,0.3257844474761255,0.32701062215478,0.0,1.7433585599973689,50.629066229737965,145.1080124312133,188.2014462014101,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95774,48516,463.9359325077787,4843,49.32445131246476,3809,39.14423538747468,1442,14.58642220226784,77.38146625236273,79.70417911417921,63.35451413110488,65.06752978907095,77.1940755730416,79.52454412810211,63.28290849829807,65.00226626578562,0.1873906793211261,179.6349860771045,0.0716056328068077,65.26352328532425,231.22264,162.66523831610826,241425.27199448703,169842.794825431,542.05034,365.03302262749975,565348.3408858355,380520.4987925337,479.82369,235.24081574564,497681.6672583373,243000.45189345584,2193.29444,1025.1040026240175,2255439.430325558,1035721.0411807402,862.7105,388.3763347486072,885366.5086557938,390121.6880533876,1398.55836,599.8386277562188,1416476.7682251967,588754.9832262225,0.38106,100000,0,1051012,10973.87599974941,0,0.0,0,0.0,47258,492.7642157579301,0,0.0,43328,449.05715538663935,1110388,0,39864,0,0,0,0,0,87,0.9083884979221918,0,0.0,1,0.0104412471025539,0,0.0,0.04843,0.1270928462709284,0.2977493289283502,0.01442,0.3485058381159707,0.6514941618840293,23.528463783567563,4.117007307734542,0.3113678130742977,0.2740876870569703,0.2110790233657128,0.2034654765030191,11.174924509374293,5.914114134106396,15.41185864285458,11350.427777417925,43.18280972066698,12.566701874814582,13.478243995881144,8.762935848932331,8.374928001038926,0.5767918088737202,0.7816091954022989,0.7107925801011804,0.5783582089552238,0.0941935483870967,0.7470210815765352,0.9137529137529138,0.8689024390243902,0.711764705882353,0.1036585365853658,0.5084621044885945,0.6894308943089431,0.6503496503496503,0.5425867507886435,0.0916530278232405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0046313186590457,0.0068370172751341,0.0092615159639288,0.0114187519700651,0.0133151454689822,0.0154721135029354,0.0176328329880917,0.0197793216183081,0.0220985431330823,0.0239522184999641,0.0260498425107985,0.0280355582960793,0.0300394280361132,0.0320950996463662,0.0338851766552717,0.0357856174519564,0.0377800586814303,0.0398312832446808,0.0417642832599256,0.0562727642743088,0.0704045541114669,0.0836899517516257,0.0972855911355942,0.10944072531759,0.1248902662168022,0.135319762816501,0.1452037003523638,0.154175657487128,0.1628996633285441,0.1750102275908102,0.1869788568647596,0.1973575467594606,0.2071956769055745,0.2160014964953399,0.2249711930508775,0.2338181290531415,0.2417413024888609,0.2495317023329738,0.2551830840639505,0.2614308705871455,0.266569896752745,0.2717845516424977,0.2762949829891226,0.2807560638065409,0.2854240793863807,0.2876178095547611,0.2914591380361862,0.2952525134893832,0.2984878023078139,0.2949967074760452,0.2913458238967812,0.2878385405686497,0.2855844024648954,0.2839669274273754,0.2810837257660082,0.2776971379887034,0.2776152098216475,0.2783240337506804,0.2794603230960412,0.2800633501024781,0.2811542991755006,0.2825136384458418,0.2828954686005383,0.2839812780590314,0.2864828513786147,0.287210615471485,0.2927876092433054,0.2970324553478352,0.3006026231832683,0.3029113067027759,0.3047284546026421,0.3097624350408314,0.3154116503402377,0.3202085078655869,0.325415399017084,0.3332333533293341,0.335583796664019,0.332973556395035,0.3362264150943396,0.0,2.435236983897257,46.9547541004392,136.68045818707552,203.60486225735312,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95736,48167,459.9210328403108,4826,48.95754992897134,3877,39.692487674438034,1448,14.571321133116069,77.31912755708531,79.6664842561145,63.32066847763053,65.05730570764275,77.12880507770613,79.4857779296592,63.248188101594046,64.99185508800956,0.1903224793791764,180.7063264552937,0.0724803760364878,65.45061963319654,231.781,163.00332604005104,242104.09877162197,170263.15208033848,540.36262,363.2733940389531,563631.6537143812,378656.1169972904,478.01089,234.38350687017493,494213.3157850756,240874.9470239896,2197.28328,1034.1891804185348,2252432.648115651,1037775.804136503,875.52207,397.5533677254567,898139.5295395671,398994.918941843,1403.07706,599.9124688023974,1415280.4378708114,585339.3189521404,0.37923,100000,0,1053550,11004.731762346451,0,0.0,0,0.0,47150,491.65413219687474,0,0.0,43145,445.6421826690064,1110566,0,39894,0,0,0,0,0,101,1.0445391493273168,0,0.0,0,0.0,0,0.0,0.04826,0.127257864620415,0.3000414421881475,0.01448,0.364141213804046,0.635858786195954,23.328844389821366,4.057041578498865,0.3030693835439773,0.2844983234459634,0.2174361619809131,0.1949961310291462,11.63082421806584,6.528015951555413,15.512417040569876,11320.264479140313,44.15740108770368,13.354764098521269,13.273580369736637,9.311644575302129,8.217412044143655,0.6002063451122002,0.8014505893019039,0.7080851063829787,0.6215895610913404,0.115079365079365,0.7672790901137357,0.9186046511627908,0.8690476190476191,0.7453703703703703,0.1801242236024844,0.5303584491587418,0.7265973254086181,0.6436233611442194,0.5789473684210527,0.0974789915966386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0045602407807132,0.0065946998904265,0.008866724897926,0.0111256877281833,0.0131984968378601,0.0155391282182003,0.0176551076256994,0.0197235230363387,0.0220716201551974,0.0240226384915874,0.0259369545127836,0.0280660256080629,0.030059851864061,0.0320480411073392,0.0342614411509363,0.0364208586543538,0.0383801502012364,0.0402560425629195,0.0422768461618581,0.0567873397636644,0.070812846532064,0.0840693112924542,0.0964960249021999,0.1084286542617679,0.1239796134162331,0.1346555655724664,0.1443589661740139,0.1548055054296178,0.1637811819945756,0.1758105678012641,0.1868926260199554,0.1975181084549627,0.2064094293617905,0.2147391117809485,0.2243322850688754,0.2325695599281242,0.240654284460744,0.2476480134366807,0.25425106777662,0.2601402972635088,0.2648239383052672,0.2700328008620588,0.2742270267676101,0.2783775897286256,0.2828586940427422,0.2870739098855411,0.2913149216292957,0.2946215655780197,0.2973986036137104,0.2944432473199375,0.2912292770172663,0.2885208935240645,0.2862616390029495,0.2842292842292842,0.2809181331293037,0.2762231678187829,0.2770675582653161,0.277984121034518,0.2785990691370794,0.2796236016013769,0.2809444970040997,0.2826446280991735,0.2830858546388299,0.2843301837018562,0.2847305233615716,0.2848866927926393,0.2908999874827888,0.2953282784164366,0.2997873848334514,0.3019558245629884,0.3060040097077134,0.3104376682737462,0.3132347364429275,0.3207406022068449,0.3198224506482887,0.3255392970282094,0.3350030054097375,0.329520697167756,0.3316981132075471,0.0,3.0921733135893823,48.63141913235453,139.10712158273972,203.4922871771254,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95690,48549,462.4621172536315,4842,49.39910126449995,3868,39.931027275577385,1461,14.996342355523044,77.34181859432726,79.72433232992279,63.3271521787835,65.08546445636414,77.15878168656945,79.54129115700545,63.25891674191297,65.01875813713973,0.1830369077578097,183.041172917342,0.0682354368705304,66.70631922440862,229.42304,161.41957854031062,239755.39763820672,168689.0402234638,536.49813,361.7276590509917,560155.8470059567,377515.416033864,482.06391,236.4029622458199,500319.3541644895,244390.53200047548,2209.74128,1036.278207345315,2283899.5088305986,1057715.1035012177,897.5052,409.9363511588506,927216.1876894135,417882.6012918491,1423.24974,598.5593560884221,1462424.537569234,605283.5243746554,0.3808,100000,0,1042832,10897.972619918488,0,0.0,0,0.0,46742,487.94022363883374,0,0.0,43693,453.15079945657857,1122024,0,40238,0,0,0,0,0,78,0.81513219772181,0,0.0,0,0.0,0,0.0,0.04842,0.1271533613445378,0.3017348203221809,0.01461,0.3572989076464746,0.6427010923535253,23.534025189701723,4.057435724217146,0.2926577042399172,0.2867114788004136,0.2145811789038262,0.2060496380558428,11.42396990141408,6.096006623015534,15.459839491059473,11382.456897940485,44.19592399628924,13.61196371384406,12.751644301843562,9.139819380376466,8.692496600225157,0.5700620475698035,0.7989179440937781,0.6837455830388692,0.5433734939759036,0.1179422835633626,0.76,0.9191011235955056,0.8867924528301887,0.7210526315789474,0.1569767441860465,0.4921618665694495,0.7183734939759037,0.6044226044226044,0.490625,0.1072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022176990612753,0.0045105770497785,0.0065744752087497,0.0091405821535211,0.011591491438565,0.0140201189215606,0.0162880061971888,0.01828241274767,0.0207177097067631,0.0229299102253068,0.0251722582232794,0.0271852437634154,0.029546413176548,0.0315208095046729,0.0337200421113473,0.035767110393976,0.0377808173754455,0.0397848792541373,0.0419965254299,0.0441277651523049,0.0595738013162018,0.0735831474908649,0.0861958586526452,0.0991740754379504,0.1108368668649663,0.1263008714781284,0.137099084379277,0.1472394597068622,0.1571710912878585,0.1658892284596,0.1774511387497981,0.1889532997339447,0.198982144022271,0.2080122424441165,0.2163871322518559,0.2257214360064669,0.2341263641841676,0.2420074892889673,0.2493363584798638,0.2557609753305477,0.2619694534691471,0.2662637503945384,0.2714407320706533,0.2752104613984456,0.2797285979584157,0.2834470191336896,0.2865250709437075,0.2903578465645459,0.2944998058755015,0.2976810409608058,0.2943154157533049,0.2908543873387462,0.2879958349163465,0.2856194817935253,0.2836170591375526,0.2797723761300882,0.276737207833228,0.276324405736363,0.275863831527295,0.2762128325508607,0.2777270610153702,0.277584478386507,0.2775115629817909,0.2782918149466192,0.2794409270099152,0.2808802159020137,0.283171796179788,0.2878977308245296,0.2903316076675528,0.2929276965626234,0.2976147288227825,0.3009503695881731,0.3041962395716598,0.3062825250773059,0.3080700453997961,0.3148605718319802,0.3180442022403875,0.3172235481304694,0.3198800109080992,0.3256342294585384,0.0,1.8638652450998845,49.17017145672212,143.76858582908113,200.9474720732765,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95674,48579,464.1595417772853,4825,49.20877145305934,3828,39.37328845872442,1486,15.113824027426467,77.38307130315455,79.75829578423689,63.34642469116329,65.09692630597158,77.18716296367751,79.56795257344193,63.27163148313934,65.02744089231457,0.1959083394770431,190.34321079496408,0.074793208023955,69.48541365700578,230.52172,162.21015914399442,240945.0007316512,169544.66118694152,540.89398,365.0724050608621,564714.1647678575,380942.6333809206,486.10208,239.49068152983665,503973.5769383532,247263.22422773007,2204.68684,1048.0640519870608,2270581.4327821564,1061660.735400486,909.65061,411.2222395362723,938365.355268934,417400.0246004886,1446.80026,619.7963767791518,1473718.0634237097,613951.3934533839,0.3814,100000,0,1047826,10952.045487802328,0,0.0,0,0.0,47098,491.6173673098229,0,0.0,44001,455.7873612475698,1112587,0,39979,0,0,0,0,0,96,1.0034074043104708,0,0.0,4,0.0418086418462696,0,0.0,0.04825,0.1265076035658101,0.3079792746113989,0.01486,0.3550307600714427,0.6449692399285573,22.72995511389728,4.152634273031122,0.304858934169279,0.2761233019853709,0.2084639498432602,0.2105538140020898,11.540269317638597,6.238626938197483,15.929108128966252,11377.329002727924,43.85988841188939,13.005127198173431,13.249972035558118,8.814034407733667,8.79075477042418,0.5888192267502612,0.8278145695364238,0.7069408740359897,0.5714285714285714,0.1215880893300248,0.75809199318569,0.9136069114470844,0.8833819241982507,0.7311827956989247,0.1538461538461538,0.5139412207987942,0.7609427609427609,0.633495145631068,0.5228758169934641,0.1121794871794871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020246398671836,0.0041942739043219,0.0063792456465958,0.0087635566026239,0.0109501296324538,0.0131111495668638,0.0153723827193214,0.0175055374659331,0.019656145228555,0.0219585602555177,0.0240526574803149,0.0262366121396958,0.0283345846489288,0.0305717787872233,0.0326104898279206,0.0347782049692008,0.0369422660547607,0.0387158382030868,0.040798710415475,0.0426902352340354,0.0578476132766384,0.0720425491817867,0.0853923389254351,0.0981660251961217,0.1105416890744783,0.1260679242091016,0.1366672320936347,0.1459142106550664,0.1558548271777524,0.1653665645157833,0.1781529423157622,0.1896816471300662,0.2001695707468722,0.2090524543934243,0.2169169004014739,0.2264222012961834,0.234801447268504,0.2422495242170696,0.2496338431145475,0.2556623552189902,0.2607095743942234,0.266665886428538,0.2715742352648594,0.2761764247244113,0.2810205669276024,0.2846837737524199,0.2882511951543063,0.2917991908602834,0.2945419229524117,0.2967498449479421,0.293835229565077,0.2914503145690815,0.2891647569908195,0.285817331967627,0.2834862793352408,0.2800880962941437,0.2758855047495614,0.2757547463429816,0.2765844920242258,0.2780519087233019,0.2776225599761585,0.2790076935154655,0.2803917084225627,0.2823748586129654,0.2832214445555396,0.2836328940921633,0.2840937878233456,0.2886722751684102,0.2937172229361303,0.2984221447868133,0.3021391578473317,0.3080179803470625,0.3112295488349033,0.3170877560173419,0.3218982801434746,0.3213418160786582,0.3271028037383177,0.3364413364413364,0.3405491024287223,0.3406352683461117,0.0,2.532757298875931,50.56890239287984,139.74972185559977,192.36241749684,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95698,47936,457.1568893811783,4910,50.07419172814479,3929,40.51286338272482,1471,15.07868502999018,77.3960056150407,79.7801143247286,63.35197710932333,65.11292185443139,77.2034627941268,79.5887519995891,63.27952667378048,65.04274194559379,0.1925428209138999,191.3623251394938,0.072450435542855,70.17990883760206,229.70024,161.43749132529786,240026.165646095,168694.7389969465,535.89166,361.3224832337602,559426.9577211646,377013.273387643,479.63285,235.16490715695352,497433.3841877573,242906.4375223863,2241.24632,1063.2751749615936,2311935.463646053,1081313.771997647,878.96386,404.1414142559818,906443.9382223244,410545.8137891941,1418.88266,608.6385830555502,1455155.4264456937,613389.8239450492,0.37933,100000,0,1044092,10910.280256640684,0,0.0,0,0.0,46790,488.3487638195156,0,0.0,43501,450.7722209450564,1124282,0,40328,0,0,0,0,0,83,0.8673117515517567,0,0.0,2,0.0208990783506447,0,0.0,0.0491,0.1294387472649144,0.2995926680244399,0.01471,0.3569753810082063,0.6430246189917936,23.229123183193938,4.0216179141012285,0.3168745227793331,0.2873504708577246,0.2043777042504454,0.1913973021124968,11.552585046766271,6.483369419086411,15.872571932013075,11311.590762285869,45.117586483673264,13.859723666460726,14.051849381921024,8.942144390927872,8.263869044363647,0.5899720030542123,0.8086802480070859,0.7116465863453815,0.5579078455790785,0.0944148936170212,0.7668308702791461,0.9224489795918368,0.8626373626373627,0.7067307692307693,0.1346153846153846,0.5105127259313906,0.7214397496087637,0.6492622020431328,0.5058823529411764,0.0838926174496644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.004562876437306,0.0067599114918495,0.0089001778003556,0.0111081724411531,0.0132875819655439,0.0155388113421087,0.017805184330621,0.0199860966284323,0.0220782411103604,0.0240721755177363,0.0259864266866535,0.0280663142522163,0.0305411919820358,0.0327280231118448,0.0348352818350027,0.036740105445242,0.0391214540019306,0.0409443086682959,0.0428760513178601,0.0577495534828338,0.0714876249280519,0.0843996475918778,0.0977312390924956,0.109483203862005,0.1253185572134042,0.135808624622076,0.1451077237503193,0.1548066652424695,0.1635710455764075,0.1755850141609502,0.1874932404663537,0.1980614384908776,0.2072549619655504,0.2150184157000714,0.2246081643495971,0.2326125985481227,0.2406178039876439,0.2477712706306143,0.2537606876686022,0.2595867482396398,0.2645987956868786,0.2694428374086449,0.2738959377204836,0.2778720310227823,0.2814266057300113,0.2848985799952624,0.288111108295106,0.2917821820479426,0.2958660744789887,0.2930438279051066,0.2905094494658997,0.2880418765875633,0.2846590254578965,0.2824741657537086,0.2797949594190517,0.2766091645904948,0.2766799065038657,0.2775340882042912,0.2783657090095529,0.2782777187785292,0.279472382522671,0.2802950036356081,0.2805820726926399,0.2816159110962726,0.28466983569288,0.2843015720966924,0.2877523050087217,0.2931562108777298,0.2974591294071302,0.3024890057578093,0.3059886886199059,0.3112894126496583,0.3143440762596459,0.3174275803881128,0.3248369887374037,0.329069590376123,0.3325933400605449,0.3327868852459016,0.3369189396849789,0.0,2.062134817883557,53.14091305198373,141.3137847974626,198.9159291229995,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95820,48546,462.0225422667502,4903,49.96869129618034,3894,40.02295971613442,1455,14.819453141306616,77.38566316619061,79.70609703119527,63.36611244363343,65.08403192526137,77.20108341532806,79.52509413519854,63.29719445857154,65.01882387890663,0.1845797508625537,181.0028959967269,0.068917985061887,65.20804635474065,231.40282,162.8117696562677,241497.4118138176,169914.18248410322,544.60041,367.35150885483057,567755.5729492799,382774.46133879217,487.12322,239.532597537114,504242.2250052181,246795.24931269835,2252.4886,1053.0830655514312,2317038.029638906,1065447.2902191435,926.30966,414.1935093683799,951374.8069296598,417009.4301048895,1423.915,596.9141176185652,1451636.443331246,594208.4897767946,0.38211,100000,0,1051831,10977.155082446254,0,0.0,0,0.0,47482,494.9071175120017,0,0.0,44085,455.9069087873096,1111380,0,39815,0,0,0,0,0,99,1.0331872260488415,0,0.0,0,0.0,0,0.0,0.04903,0.1283138363298526,0.2967570874974505,0.01455,0.3687998443882513,0.6312001556117487,23.49204502407768,4.1714152673257,0.2963533641499743,0.2847971237801746,0.2062146892655367,0.2126348228043143,11.292827460705135,5.951755352549077,15.42911711912827,11353.573686145104,44.42793160044469,13.734633199571292,12.94928523204281,8.806899172552914,8.937113996277668,0.5850025680534156,0.8277727682596934,0.7036395147313691,0.5591531755915318,0.1195652173913043,0.7797356828193832,0.945121951219512,0.8925081433224755,0.6857142857142857,0.1614906832298136,0.5048930772018847,0.7341977309562399,0.6351829988193625,0.5238853503184714,0.1094452773613193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801565839182,0.0046125928854556,0.0070536176431782,0.009164245219759,0.0113308108547947,0.0135831381733021,0.0159006818946274,0.0182059393815695,0.0204915938474117,0.0228617040872715,0.0250566207893091,0.0273121965739153,0.0296810926917503,0.0318682449819866,0.0340183754910958,0.0359038981965418,0.0376524879199561,0.0398009950248756,0.0418877524531436,0.0436845719994172,0.0584253019840193,0.0720244193096527,0.0853064176335565,0.0974279770535207,0.1087854208364057,0.124959072233547,0.1366400406805517,0.1460472333822247,0.1550407440590469,0.1640123807177817,0.175622345287381,0.1869477868268129,0.1975252360794529,0.2056772419212258,0.2142221831797867,0.2235659566000818,0.2316508141581092,0.2403984367981313,0.2481739425853575,0.2545907465176602,0.2601045959893326,0.2662872337944065,0.271622705610343,0.2756364331088504,0.2802027631929153,0.2841756624141315,0.2876188340248445,0.291487260017223,0.2946075208518647,0.2973249947445869,0.2950040928060546,0.2925448038503201,0.2894060837462626,0.286535552193646,0.2838959191536022,0.2799963335268416,0.2760762374359947,0.2763429582773426,0.2760516252390057,0.2767346065372064,0.2778919444029293,0.2788584717869883,0.2797302391823398,0.2815299716258183,0.2821851246030982,0.28324724787395,0.2847133213705887,0.2888316744638764,0.2924253587341683,0.29625520110957,0.2985928279618702,0.3007542591908856,0.3025871766029246,0.3077734257306417,0.3115996258185219,0.310893657156331,0.3147950632332774,0.3204664254121431,0.318045318045318,0.3277945619335347,0.0,2.4384923858780194,48.872684806798965,142.5710668348588,204.5302352916605,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95759,48306,461.3665556240144,4904,49.80210737371944,3864,39.682954082644976,1495,15.1212940820184,77.37657405990127,79.72224658247694,63.3458979718325,65.07939654461104,77.17596285149261,79.52637849775073,63.26894903695101,65.00695369512084,0.2006112084086595,195.8680847262144,0.0769489348814929,72.44284949020141,229.75128,161.56360590417958,239926.10616234507,168718.52515604757,534.56958,360.0270511844566,557517.4552783549,375246.6161837245,476.80677,234.33799437945092,493905.40836892615,241564.61540930867,2206.05628,1050.227476329174,2267635.4598523374,1060732.33359872,881.34405,407.2272206932018,904548.4288683048,409548.10683211865,1449.8647,634.2088215413332,1469800.4782840256,626692.7287574107,0.38074,100000,0,1044324,10905.732098288412,0,0.0,0,0.0,46522,485.1241136603348,0,0.0,43132,446.3496903685293,1124883,0,40324,0,0,0,0,0,99,1.023402500026107,0,0.0,1,0.0104428826533276,0,0.0,0.04904,0.1288018070074066,0.3048531810766721,0.01495,0.3497749070268154,0.6502250929731845,23.32777380962377,4.1046394592475695,0.3136645962732919,0.2675983436853002,0.2171325051759834,0.2016045548654244,11.576654840890445,6.367666405632079,16.159549668686513,11352.34042240407,44.17336936985604,12.568669340663831,13.586306717869048,9.450014563390315,8.568378747932838,0.5804865424430642,0.7940038684719536,0.6806930693069307,0.6054827175208581,0.1142490372272143,0.7526690391459074,0.9201995012468828,0.8593272171253823,0.7465437788018433,0.1899441340782122,0.5098540145985402,0.7140600315955766,0.6146892655367232,0.5562700964630225,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025524156791248,0.0047136818416811,0.0068893443454615,0.0089906131902962,0.0111056870881132,0.0131465056363988,0.0153868115956806,0.0175399191407685,0.0199245545343951,0.0223971501980735,0.0244649885208265,0.0265035259338335,0.0284971163632251,0.0305863936891104,0.0324863565555589,0.0344709968164716,0.0365112402017126,0.0382588489148927,0.0403260180266345,0.0422507342067442,0.0576656125079583,0.0719701327086579,0.0857322570500052,0.098538113104434,0.1105478383676566,0.125338266384778,0.1356715721616692,0.1461436962628756,0.1545839029391661,0.1637354152367879,0.1754669424158211,0.1863570454693011,0.1971952042126335,0.2062456915888873,0.2145916131802318,0.2229809120535615,0.2320156337241764,0.2403637304883127,0.2479118434790503,0.2540047862778102,0.2600770307313293,0.2663611494306624,0.2713934406847793,0.2768094428615893,0.2807746008620166,0.2849911321312444,0.2888233677319407,0.2925760865424904,0.2957937584803256,0.2983625561512824,0.295245769540693,0.2926353929345887,0.2896048990828265,0.2866737770603326,0.2832644719889822,0.2795792494885652,0.2770685056890811,0.2767756390338038,0.2773207990599295,0.2774616834394225,0.278572762936671,0.2789800897143307,0.2812232722114441,0.2817648887507217,0.2838874680306905,0.2870432754599637,0.2869796530548716,0.2922170987038883,0.2956485384802982,0.3008005047517647,0.3023403195871622,0.3051615964570042,0.3075532843076156,0.3120300751879699,0.316935334445062,0.3221649484536082,0.3276930049856473,0.331682187438082,0.3305473173362092,0.3251787730523146,0.0,2.581296759746218,48.17982106520338,145.22061672854872,199.5637709941967,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95756,48204,460.1278248882576,4875,49.772338025815614,3911,40.31078992439116,1499,15.257529554283805,77.3313489084019,79.69936945239326,63.31030609897547,65.06400246258535,77.14484262531182,79.5163035879909,63.23943102037138,64.99702325510223,0.1865062830900825,183.0658644023515,0.0708750786040894,66.97920748311503,230.1684,161.95877718996,240369.689627804,169136.94931906092,541.72214,364.6328983906856,565205.3970508375,380267.3862637177,486.1341,238.44230911861573,504738.4706963532,246701.85934784825,2222.73956,1044.4175574540036,2291321.8597268057,1060775.4683299258,890.96678,405.9353042524368,911713.9918125236,405185.4445177705,1448.71616,615.6736413190278,1475407.1389782364,610145.5946546622,0.37918,100000,0,1046220,10925.894983082,0,0.0,0,0.0,47248,492.8777308993692,0,0.0,43914,455.6476878733448,1112719,0,39955,0,0,0,0,0,92,0.960775303897406,0,0.0,1,0.0104432098249718,0,0.0,0.04875,0.1285669075373173,0.3074871794871794,0.01499,0.347962999409565,0.6520370005904349,23.324389642861803,4.095048232230468,0.3152646381999489,0.2787010994630529,0.2106878036307849,0.1953464587062132,11.515657878210636,6.403731327947355,15.945733231811705,11271.946598268472,44.63950064063103,13.236661040069375,14.004935536935257,9.028583655665168,8.369320407961228,0.5888519560214779,0.7862385321100918,0.7055961070559611,0.5764563106796117,0.1321989528795811,0.7599293909973521,0.8948545861297539,0.8765060240963856,0.7611111111111111,0.1896551724137931,0.5190784737221023,0.7107309486780715,0.6426193118756937,0.5248447204968945,0.1152542372881356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809765043212,0.0043197420323068,0.0065465617863486,0.0088396667344035,0.0110887301877962,0.0132904237659255,0.0155499587033883,0.0176542062754627,0.0196381266045474,0.0218468975971485,0.0239579914670167,0.0262084553346689,0.0284861582793043,0.030445133828728,0.0324015772414789,0.0344239240584865,0.0364609760896353,0.0386343589477507,0.0406253898290989,0.0424652112323973,0.0569758338117855,0.0706340319998325,0.0840466599530043,0.0967243283032756,0.1083357935135591,0.1240587190117607,0.1343951950932224,0.1440379187303616,0.1534491049959925,0.1625052308550704,0.1745128470425935,0.1855317305609703,0.1959983889052175,0.2049191094375971,0.2136070897781692,0.2234082646093819,0.2320704786788597,0.2401012943162633,0.2476397966594045,0.2536006874820968,0.2590221995879534,0.2652576112412177,0.2707958100293867,0.274716700278498,0.2781196789102408,0.2819820486265226,0.2851439798766065,0.2884718157526403,0.2920796569103795,0.2955088043263206,0.2933828676035104,0.289992855965269,0.2872364351982007,0.2845776880945517,0.2824333723012267,0.278164986502768,0.2745385245385245,0.274301584708381,0.2748838554872964,0.2761627390740708,0.2766131887379581,0.2768813506023859,0.2773359427048634,0.277057816702603,0.2789635968162153,0.280511811023622,0.2831920903954802,0.2877264209868832,0.2923459035891695,0.297442799461642,0.3025339366515837,0.3080444046930078,0.3126869391824526,0.3157222305726739,0.3189273866568374,0.3238347946469774,0.3287914691943128,0.3336573984055998,0.3319205298013245,0.3455555555555555,0.0,2.1169262190563014,49.18381769820334,148.02552024366656,200.01727848839784,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95485,48081,460.5749594177096,4804,49.10718961093365,3812,39.2836571189192,1490,15.164685552704611,77.22623088476638,79.71249293850974,63.24095407219974,65.07574107867222,77.03470286965877,79.52429284225862,63.16893406691892,65.00738754797257,0.1915280151076075,188.2000962511228,0.0720200052808195,68.35353069965322,229.53832,161.52070298588362,240391.7892862753,169157.9651106284,538.66913,363.2288718920235,563497.5441168769,379768.4190197901,481.84759,237.082020349577,500505.6605749594,245134.6512641369,2195.7562,1041.7432433977087,2265705.1474053515,1057511.473332693,897.18426,411.3981231674578,925628.2871655234,416895.6276499936,1452.15064,618.6054648940055,1481085.3432476306,615209.8257288026,0.37875,100000,0,1043356,10926.899513012517,0,0.0,0,0.0,46979,491.3337173378018,0,0.0,43563,452.15478871026863,1113057,0,39933,0,0,0,0,0,80,0.8168822328114363,0,0.0,0,0.0,0,0.0,0.04804,0.1268382838283828,0.310158201498751,0.0149,0.3513351933041052,0.6486648066958948,23.093645494585147,4.148692956501706,0.3061385099685205,0.2751836306400839,0.2051416579223504,0.2135362014690451,11.427298525803444,6.069300039267022,15.980386597147994,11239.186689969436,43.98964796738644,12.965593574616342,13.399575814233325,8.72461891153919,8.899859666997585,0.5873557187827911,0.8169685414680649,0.7189374464438731,0.578005115089514,0.1117936117936117,0.7547332185886403,0.918141592920354,0.8487654320987654,0.7511737089201878,0.1560693641618497,0.5139622641509434,0.7403685092127303,0.6690391459074733,0.5131810193321616,0.0998439937597504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001996250696661,0.0043311998539361,0.0064572461266676,0.0085714285714285,0.0108832871803225,0.0130051470213524,0.0151430116633843,0.0172889461099871,0.0197346210113865,0.0220077457429151,0.0243471834455575,0.0263212009047912,0.0284505127888298,0.0303020926802603,0.0324637082192488,0.0342906839500548,0.0363381742738589,0.0383152117419596,0.0400687607438662,0.0420804226837494,0.0565115451443404,0.0706799416683277,0.0841237460304107,0.0969047393215087,0.1088215402823569,0.1242792945565541,0.1348897535667963,0.1451234343994708,0.1545348426271994,0.1637217600653468,0.1750367043786164,0.1849425748587417,0.1953514232450641,0.2050464196069404,0.213454389003497,0.2238728028266038,0.232443678829504,0.2399278548078007,0.246926637326146,0.2526850874374627,0.2579833491802138,0.2637132038311391,0.2686476868327402,0.2728911319394376,0.2771718599578362,0.2813778948279486,0.2854864233503303,0.2885474931678288,0.2922088040514219,0.294648289727785,0.2918297918297918,0.2889118457300275,0.2860465116279069,0.2834738909426987,0.2810953039290014,0.2770378998023018,0.2734360144514166,0.2743319199290011,0.2747421887024781,0.2744278286970038,0.2748178804846533,0.2764675673540333,0.2763394537621816,0.2770751076312208,0.2779759197644637,0.2791717480993279,0.2794964130773811,0.2849677701983854,0.2897026450959153,0.2937946834143066,0.2983984392722653,0.3010542962572483,0.3023140084598159,0.3045464759194068,0.3039603050629422,0.304383023013762,0.3124905603383174,0.3113131313131313,0.3158038147138964,0.3259315016936394,0.0,2.3938207299317598,50.424266891596616,140.88052419120973,193.93456806310007,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95700,48491,461.8704284221525,4991,50.79414838035528,3950,40.616509926854754,1534,15.621734587251828,77.36399481233721,79.7476427793325,63.33329461681414,65.09686708314509,77.16858226511813,79.55708540485143,63.25817930717228,65.02623572440328,0.1954125472190782,190.5573744810596,0.0751153096418661,70.6313587418066,231.49764,162.84898358872994,241899.0804597701,170165.8971669069,542.68382,366.2380054659112,566394.5977011494,382021.29180788365,486.52186,239.46914837246456,504252.079414838,247084.35496976587,2263.36804,1075.302282272232,2330256.05015674,1088845.8361280914,905.86185,411.42595416104575,934266.4785788924,417709.7632541087,1495.0423,643.808006889954,1524977.4294670846,640871.3998980244,0.38075,100000,0,1052262,10995.412748171368,0,0.0,0,0.0,47294,493.46917450365726,0,0.0,43948,455.067920585162,1108910,0,39779,0,0,0,0,0,94,0.9822361546499476,0,0.0,1,0.0,0,0.0,0.04991,0.1310833880499015,0.3073532358244841,0.01534,0.3697318007662835,0.6302681992337165,23.27183361782802,4.054483210561622,0.310126582278481,0.2820253164556962,0.2040506329113924,0.2037974683544303,11.328750670397492,6.051492731156216,16.540999457177172,11380.939278020294,45.356563658265735,13.55390273192537,13.947125481664674,8.997587345099653,8.857948099576037,0.5729113924050633,0.77737881508079,0.6930612244897959,0.5620347394540943,0.1180124223602484,0.7447873227689742,0.9054945054945056,0.8626373626373627,0.6844660194174758,0.1494252873563218,0.4980007270083606,0.6889226100151745,0.6213704994192799,0.52,0.109350237717908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417179157252,0.0048171022341213,0.0070555510436124,0.0093196739638595,0.0114674698304808,0.0139576583735762,0.0162287323024195,0.0183524653784876,0.0206601004367258,0.0230086320769207,0.0251348524314457,0.0272365948094362,0.0296338202016046,0.0316743946419371,0.0340674537648613,0.0358978070492871,0.037912924578141,0.0401490152128344,0.041984574125278,0.0439679513226851,0.0585157490182972,0.0731324380619432,0.0863722198908938,0.0990240619215884,0.110776139226496,0.1263718835247097,0.1372611397425293,0.1473085106382978,0.1569422943468745,0.1654947693363059,0.1775290572535514,0.1880571181306793,0.198458008460292,0.2072001137320516,0.2158415841584158,0.2251561046897834,0.2341386695221523,0.2415665902037511,0.2491066060104144,0.2548622319905674,0.260751413670687,0.2662216194729581,0.2716966842591058,0.2763678193975124,0.2806052436640072,0.2842915179121014,0.2880129022578951,0.2905892811785623,0.2943661425969228,0.2966325845801587,0.2941903086776138,0.2907265420330009,0.2883354624963149,0.284298473062518,0.2819571684402149,0.2778954425635009,0.2739835990744967,0.2738149572928213,0.274257022662505,0.275118004045853,0.276015654118524,0.2771228731973751,0.2787629037629037,0.2787250144682366,0.2805894575939239,0.2828597379006098,0.2845069623663537,0.2902370555208983,0.2934862161502805,0.298674741436942,0.3034740683999459,0.3066267904926806,0.3118514814351794,0.3153828675301068,0.3182287268974575,0.3263905325443787,0.3290401717264642,0.3284701114488348,0.3304874690167997,0.330635838150289,0.0,2.4759463100484904,51.84218381291165,147.12282807922836,197.95996436886156,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95661,47942,457.0828237212657,4789,48.63005822644547,3771,38.7514243003941,1430,14.499116672416136,77.31725194233033,79.72531922020916,63.30264576078415,65.08482153559733,77.12752058047687,79.54241631776763,63.22894101195092,65.01696683813367,0.189731361853461,182.9029024415263,0.0737047488332294,67.85469746365891,230.4049,162.00244608403833,240855.6255945474,169350.56719461258,538.25401,362.8263646231544,562022.6947240777,378637.98687359993,478.68526,235.32976167535983,496580.2991814846,243079.36904470943,2154.381,1033.0115202769914,2214961.875790552,1042729.2211841734,871.32401,402.691318004359,894225.6405431681,404336.665939472,1387.09396,607.3968368581786,1407627.2671203522,597127.7993588686,0.37803,100000,0,1047295,10947.982981570336,0,0.0,0,0.0,47072,491.38102256928113,0,0.0,43189,447.6850545154242,1115618,0,40106,0,0,0,0,0,101,1.0558116682869716,0,0.0,0,0.0,0,0.0,0.04789,0.1266830674814168,0.2986009605345583,0.0143,0.3648946840521564,0.6351053159478436,23.03728077992356,4.050274878248032,0.3054892601431981,0.2802970034473614,0.2129408644921771,0.2012728719172633,11.542848523237376,6.384971582985038,15.409149589957634,11302.54264766758,43.45998603503064,12.932561198687404,13.13850492887439,8.98801862509506,8.40090128237378,0.5873773534871387,0.8060548722800378,0.6961805555555556,0.5865504358655044,0.1185770750988142,0.7715481171548118,0.9341825902335456,0.875,0.7627906976744186,0.1712707182320442,0.5019409937888198,0.7030716723549488,0.625,0.5221088435374149,0.102076124567474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0047660092278051,0.0069415549489024,0.0092979300673718,0.0114971765783181,0.0136294183559132,0.0158121314753228,0.0180614579928081,0.0205336498127724,0.0227035223244472,0.0247360699299264,0.0268401204311682,0.0291108228851419,0.0309812978122358,0.0329054047075591,0.0349194524629853,0.0372455114649417,0.0389739861882756,0.0411065795497107,0.0431664425472475,0.0577455518059197,0.0715677034244423,0.0847628446049509,0.0971305912434104,0.1093140047688379,0.1243980143735645,0.134739501507367,0.1447379633574776,0.1543625595963483,0.1627804663440387,0.1747670096428379,0.1868341273278475,0.1973397770811563,0.2063537242194684,0.2149175470097709,0.2244698892669896,0.2329419904917081,0.2410825768568825,0.2479695085983937,0.2544705208929593,0.2596341844349063,0.2648668241236583,0.2705443786982248,0.2745713566815638,0.2779235291259777,0.2819378373715215,0.2854122357062429,0.2886863911341569,0.2917410310131657,0.294377938445735,0.2925079595373393,0.2891020626621104,0.28678318242437,0.2845495664198669,0.2820957977207977,0.2785395115382261,0.2755495199595755,0.2759179530833074,0.2756626178081726,0.2760899690864513,0.2776326591536682,0.2790098191621244,0.2794612091469144,0.2798948751642575,0.2801132546309626,0.2812475653777235,0.2815181985554454,0.2845779524611641,0.2900931059734282,0.2956692913385826,0.2985202950359745,0.3040729227040413,0.3072545340838024,0.3118190072639225,0.314118085304526,0.3185954269715352,0.3232307925443249,0.3267306922769107,0.3312068048910154,0.3214152700186219,0.0,2.6029145130943965,51.3812172309734,137.3623395178079,186.04781054890745,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95865,48183,459.4899076826788,4843,49.4653940437073,3798,39.11750899702707,1505,15.427945548427475,77.4717338221379,79.7572303389768,63.40399372213196,65.09038536761601,77.28108640332061,79.56710662176279,63.33298634859717,65.02112614832592,0.1906474188172922,190.12371721400712,0.0710073735347833,69.25921929008894,231.066,162.50135559325858,241032.7022375215,169510.61971862367,538.84255,362.2894044226715,561597.0062066448,377428.4925913228,479.86172,235.1098324364093,496668.36697439104,242357.10992135195,2177.51836,1014.6517833020062,2244682.543159652,1031657.375790962,872.95984,390.36095260163614,897662.8592291243,394247.7573688378,1457.44824,614.1345668517514,1495060.2618265268,619653.503465175,0.37946,100000,0,1050300,10956.031919887342,0,0.0,0,0.0,46892,488.6454910551296,0,0.0,43374,448.6308871851041,1120011,0,40186,0,0,0,0,0,89,0.9283888801961092,0,0.0,0,0.0,0,0.0,0.04843,0.1276287355716017,0.3107577947553169,0.01505,0.3497926130752518,0.6502073869247482,23.64688749104603,4.106197890373564,0.3088467614533965,0.2701421800947867,0.2180094786729857,0.2030015797788309,11.189209431353234,6.010133418137723,15.8976472181285,11237.926912180435,42.99303669556007,12.524419178840446,13.1553871693714,9.012299202891972,8.300931144456248,0.5724065297525013,0.7923976608187134,0.6879795396419437,0.5688405797101449,0.1076523994811932,0.7483811285846439,0.9333333333333332,0.8488372093023255,0.7294117647058823,0.0925925925925925,0.5023923444976076,0.7004830917874396,0.6212303980699638,0.5273556231003039,0.1116584564860427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023180483854641,0.0045587624479541,0.0067533310349023,0.0089930978481526,0.0113100560930005,0.0133690111611912,0.0157586993725042,0.0177174389783657,0.0198925719420787,0.0219156508222204,0.0239965587521379,0.0260394232149816,0.0284041296419949,0.0303114485909189,0.0320369435024172,0.0341174283885091,0.0360578414944454,0.0379716663384908,0.0399642823768832,0.0422186378063374,0.0566393827224857,0.070464642241154,0.0836564458323727,0.096180719726819,0.1079668215975801,0.1231512511761161,0.1341398761557384,0.1443752991862135,0.1543380555347973,0.1639249391818756,0.1753623344344139,0.1855514129788728,0.1956396642888939,0.2048054670101742,0.2134252802881395,0.2228276487101836,0.2312121347113328,0.2383143998922365,0.2461108217658114,0.2529832662765179,0.2584316350792954,0.2638275045770993,0.2696025778732546,0.2743593421304264,0.2786809722979936,0.2810228404855909,0.2847868967066989,0.2887411504986171,0.2903825545814881,0.2932986234370686,0.2902693345142719,0.2871380655760148,0.2832698021189528,0.2813819853469329,0.2787633495324894,0.2756710694503622,0.2722641509433962,0.2730695877549024,0.2731387306753458,0.2744605144364389,0.2744441965945423,0.2762235022138631,0.2777858522102028,0.2790265075182142,0.2814647485435739,0.2831794501470057,0.2856901598739023,0.2909750876430987,0.2961712099803563,0.3006276069075742,0.3040878257765084,0.3083716555183946,0.3144759770973363,0.3190685014365643,0.3195760247631554,0.3212429111531191,0.3303638834365091,0.331013916500994,0.3327952649986548,0.3399327605528576,0.0,1.9760438777974416,46.9392113892194,136.74682942208418,203.06517064718423,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95732,48387,462.63527347177535,4714,47.93590439978273,3742,38.4302009777295,1506,15.292692098775747,77.34438518034166,79.6958096290098,63.33412346583962,65.0718946375707,77.15470420426917,79.51229163238332,63.26299137047987,65.00568302671698,0.1896809760724949,183.5179966264775,0.0711320953597507,66.21161085371341,230.53338,162.24233841611112,240811.2021058789,169475.5551081259,541.4508,365.2734198767177,564920.7579492751,380892.0280223349,481.92284,236.97438472004683,498780.1675510801,244046.3471460556,2173.84944,1027.6679816074657,2236778.632014374,1039674.9155851392,899.41965,407.29739588619856,923619.6882964944,409557.24928571255,1465.3339,618.2498663030441,1490772.009359462,613218.6702877928,0.3791,100000,0,1047879,10945.963732085404,0,0.0,0,0.0,47337,493.774286549952,0,0.0,43476,449.6302176910542,1111260,0,39913,0,0,0,0,0,78,0.8147745790331342,0,0.0,2,0.0208916558726444,0,0.0,0.04714,0.1243471379583223,0.319473907509546,0.01506,0.3681753602597929,0.631824639740207,23.015978080115687,4.139415884231996,0.3099946552645644,0.2653661143773383,0.2068412613575628,0.2177979690005344,11.887864851149844,6.630095559211966,15.998149009120088,11206.074753974828,42.91395033180024,12.18455316436461,13.097406469897164,8.776111190192186,8.855879507346284,0.5900587920897915,0.8197381671701913,0.7137931034482758,0.603359173126615,0.1214723926380368,0.7670157068062827,0.9382151029748284,0.8823529411764706,0.7307692307692307,0.1797752808988764,0.5119414483821263,0.7266187050359713,0.6487455197132617,0.5565371024734982,0.1051805337519623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0040858536189713,0.006077577897503,0.0082365964880208,0.0102995302682148,0.012439811468651,0.0147163734942214,0.0171233226185009,0.0191578710751908,0.0213752174357924,0.023547012050168,0.0256386571009227,0.0277712088341438,0.0298552038063067,0.0317935175060347,0.0341641865079365,0.0359800846712004,0.0379665446399867,0.0398977354215815,0.0419973751640522,0.0571586661933894,0.071255899620122,0.0839941262848751,0.0964023934967557,0.1081574118986861,0.1238210041026942,0.1341733753354334,0.1435471858708373,0.1532579325665096,0.1628502819407817,0.1749547920433996,0.1856971348843246,0.1958733747880158,0.2046383527508798,0.2130046075854712,0.2224448232351183,0.2311193921610193,0.2386151528099489,0.2461152825352176,0.2523780634379185,0.2577914493541337,0.2627707349019975,0.2690237641798459,0.273120728929385,0.2767564417028924,0.2808866861461454,0.2849862258953168,0.2886752816856579,0.2914352301417751,0.2944303730673843,0.2925323758421753,0.2890543436452552,0.2865399218156762,0.2835424780037501,0.2806603773584906,0.27718788249694,0.2723303965454516,0.2719216341507363,0.2723460115587227,0.2724650583103356,0.2737797363408896,0.2746811525743977,0.2750996057489726,0.2751242561347984,0.2764044405015944,0.2774663968031553,0.2786643612347289,0.2834073981348188,0.289447972642892,0.2930182938875499,0.2954072868637555,0.2984846084798563,0.3023808035993251,0.3048798798798798,0.3095171643873848,0.3132022471910112,0.3202911737943585,0.3199592668024439,0.3271825943266317,0.3266563944530046,0.0,2.503217344095462,49.4695719443182,134.0569987514013,191.90857327818776,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95675,48470,462.3882937026392,4862,49.55317481055657,3842,39.60282205382806,1450,14.779200418082048,77.28108161739658,79.66879326450494,63.29287913429015,65.05583028093395,77.0915145424178,79.48317074609642,63.22012621448841,64.9874476373063,0.1895670749787825,185.62251840852184,0.0727529198017435,68.38264362764335,229.62698,161.67167666787807,240007.2955317481,168980.06445558197,541.99488,365.5381043396771,565970.013065064,381536.4874206189,487.27757,239.21037478643183,506262.2942252417,247708.171554374,2213.50872,1048.571348838632,2282219.09589757,1064620.5893270257,878.91883,401.0193345664965,902362.529396394,402861.1739154368,1405.77932,607.7104550575384,1432962.8847661354,602634.8994558706,0.38089,100000,0,1043759,10909.422524170368,0,0.0,0,0.0,47152,492.27070812646986,0,0.0,43946,456.2738437418344,1113108,0,39899,0,0,0,0,0,106,1.1079174287954012,0,0.0,1,0.0104520512150509,0,0.0,0.04862,0.1276484024258972,0.2982311805841217,0.0145,0.3618239242005527,0.6381760757994474,23.322795722090305,4.043936549972809,0.3086933888599688,0.2787610619469026,0.2116085372201978,0.2009370119729307,11.282940934818283,6.03898710550988,15.577480633270063,11341.816193565175,44.22153146751856,13.193434529436542,13.479898033044536,9.079664082911677,8.468534822125806,0.5812077043206664,0.7973856209150327,0.693929173693086,0.5891758917589176,0.099740932642487,0.7470288624787776,0.9190371991247264,0.8579710144927536,0.7323232323232324,0.1067415730337078,0.5078828828828829,0.7068403908794788,0.6266349583828775,0.5430894308943089,0.0976430976430976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374664438028,0.0041565709303622,0.0063630920364939,0.0086862878564679,0.010831316233753,0.0130239094130585,0.0153863409262393,0.0177032711234532,0.019923332481472,0.0221189572052938,0.024464267404901,0.0267056830432773,0.0288567344378284,0.0310748433893834,0.0329751989348855,0.035226849745647,0.0370945854957166,0.0391617537158515,0.0412778662006262,0.0434025787218962,0.0584560091105701,0.07282722513089,0.085823754789272,0.0981302019213569,0.1104381864798421,0.1261492884727292,0.1363703923900119,0.1465350120363861,0.1569543646550618,0.1657807986771038,0.1769026663215117,0.1875433500953702,0.1981071455798908,0.2080417857494826,0.2163656996793847,0.2251538845450008,0.2338042652121429,0.2415626548911819,0.2493721947616612,0.2560430235758187,0.2606217856646434,0.2663941147529461,0.2719039320981068,0.2760289103395284,0.2796399902700073,0.2839242769932786,0.2874245498033912,0.2904762511304436,0.2936891630915194,0.296807695356888,0.2934514419771063,0.2901243921590236,0.2877331187440882,0.2837564039480159,0.2809030568205494,0.2779650628256206,0.2743931385891066,0.2741975207290041,0.2744448240519303,0.2750401141023355,0.27535010858983,0.2761963165911653,0.2764623225184036,0.2764329500201351,0.2772498737039621,0.2788496541681834,0.2815387677347815,0.2862116554795809,0.2910897994768962,0.2958628841607565,0.3003567074547342,0.3041418872690911,0.3087298613713001,0.3103965219998501,0.3147273905396649,0.3176158635001153,0.3221204385042799,0.3209974272709281,0.3227696404793608,0.3248865355521936,0.0,2.149401051630503,51.38923859777434,141.0920548716702,193.8154233816336,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95742,48132,457.7405945144242,4863,49.61250026111842,3872,40.02423178960122,1499,15.395542186292326,77.3612597271838,79.72795259797309,63.34108899169471,65.08974381295704,77.16895059516136,79.5354692522492,63.26895337133844,65.01926466907922,0.1923091320224443,192.48334572388612,0.0721356203562706,70.47914387781873,231.14762,162.58636573611156,241426.22882329597,169815.9470371484,539.09615,363.647348575448,562602.4210900128,379355.2339508216,482.33197,237.1942906158001,501602.1077479058,246019.85291144883,2219.8216,1055.0121016423652,2295003.237868438,1078760.933971437,919.24428,420.8419925477963,946683.7124772829,426590.2275745745,1459.6114,624.1213591354816,1499639.865471789,629417.7466339862,0.37896,100000,0,1050671,10973.919491967998,0,0.0,0,0.0,47031,490.7459631091892,0,0.0,43756,454.8265129201395,1113589,0,39940,0,0,0,0,0,89,0.9295815838399032,0,0.0,1,0.0104447368970775,0,0.0,0.04863,0.128324889170361,0.3082459387209541,0.01499,0.3579980372914622,0.6420019627085378,23.52425361733972,4.077401353839439,0.3070764462809917,0.2732438016528926,0.2117768595041322,0.2079028925619834,11.439683110797722,6.202952538252184,15.94967320157614,11272.704822271442,44.40875627269977,12.950209115133076,13.562525422827315,9.053395468453935,8.84262626628545,0.5898760330578512,0.8119092627599244,0.7064760302775441,0.6097560975609756,0.1055900621118012,0.7591178965224766,0.9304347826086956,0.8554913294797688,0.796875,0.0994475138121546,0.5157816561455626,0.7207357859531772,0.6453143534994069,0.552547770700637,0.1073717948717948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.0046536620974937,0.0071644577946459,0.0094177647285916,0.0117766703956066,0.014022117675811,0.0161014010972202,0.0183284831776178,0.0204995552465569,0.022594185094185,0.0247095854736345,0.0268679710368202,0.0291470827205315,0.0313681456223666,0.0337849690940798,0.0358730486922361,0.0380771899303074,0.0401178839009609,0.0422896953311843,0.044145533351393,0.0592325763508222,0.0732549742000983,0.0867658936194761,0.0991914540159185,0.1117130029719874,0.1265551174860211,0.1359636101450504,0.1462496010213852,0.1553906124846478,0.1640978370383073,0.1753490725489563,0.1865063055657704,0.1970759280395673,0.2058974611189438,0.214893476683596,0.2234050794002102,0.2311045701352421,0.2388336423394572,0.2463758259943101,0.2530698190723596,0.2579041673891682,0.2625578244007289,0.2681672557897599,0.2719527080391546,0.2765173550513864,0.2807552365030976,0.2843339200778997,0.2873163235499562,0.2906996289160988,0.2929841441393945,0.2898768883393366,0.2864708384211176,0.2842554745550826,0.2813009067712312,0.2797260842498443,0.2760833689872257,0.2724102564102564,0.2727391659852821,0.2734198309725033,0.2740352125200071,0.2747396319384822,0.275102105242389,0.2764125710464727,0.2769830659536542,0.2788205681409565,0.2791787024748224,0.282240382698824,0.2861858651911468,0.2901824804735385,0.2943949296890473,0.2985189546628017,0.3004206098843323,0.3028304821150855,0.3060088741821463,0.308319436724106,0.3073866292660122,0.3088279602289846,0.3169366126774645,0.3248758963044677,0.3338582677165354,0.0,1.437850817005069,51.85993436598699,140.92069944379992,198.0397781954716,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95668,48233,460.0388844754777,4756,48.84600911485554,3755,38.84266421373918,1447,14.842998703850816,77.2430810454354,79.6484871150047,63.27207635196621,65.05036818184668,77.0606444616079,79.4659681584289,63.2037910997846,64.98387820430767,0.1824365838275099,182.5189565758052,0.0682852521816173,66.48997753900687,230.1376,161.87575716009266,240558.59848643225,169205.75026141724,540.38609,363.83151054769047,564458.732282477,379909.4791860293,475.1984,232.45182048106912,494293.8286574403,241064.3203540986,2158.85692,1010.7056139594844,2233617.1342559685,1033475.7013416028,862.97429,387.25869116864806,890785.2573483296,393528.49559795,1411.28734,599.698919684511,1449158.5065016516,604633.3085906643,0.37951,100000,0,1046080,10934.481749383283,0,0.0,0,0.0,47142,492.3485386963248,0,0.0,42941,446.397959610319,1113977,0,39955,0,0,0,0,0,92,0.9616590709537148,0,0.0,0,0.0,0,0.0,0.04756,0.1253194909225053,0.3042472666105971,0.01447,0.3459753883397216,0.6540246116602784,23.42750985808372,4.0446910629133495,0.3057256990679095,0.2758988015978695,0.2077230359520639,0.2106524633821571,11.262948941519165,6.057164990729654,15.566271978511358,11340.676138944027,43.12243897144107,12.639962236823155,13.067787994132246,8.740565065118265,8.674123675367403,0.5762982689747004,0.8243243243243243,0.6942508710801394,0.55,0.1061946902654867,0.7630878438331854,0.931924882629108,0.8640483383685801,0.7188940092165899,0.1372549019607843,0.4961948249619482,0.7491803278688525,0.6254589963280294,0.4849023090586146,0.0987460815047022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.0044935386363175,0.006639391693654,0.0089413629482112,0.0112192690691973,0.0134731910993431,0.0156716798368595,0.0178381800359418,0.0202470549738219,0.0224158764617936,0.0246843945811241,0.0269365455908479,0.0289904256522588,0.0309570413103945,0.0334523760373229,0.0353734321845498,0.0373949884500243,0.0395121951219512,0.0412818272591113,0.0432203654862551,0.057521707783455,0.0708360391310723,0.0841539462909694,0.096683541905674,0.1084544658031689,0.1239679044755896,0.1348664294439428,0.1457260720795625,0.1559875466732285,0.165311798627592,0.1776293787017358,0.1883332249463484,0.1985559959925077,0.2071982305536089,0.2163338622939257,0.2253552373240452,0.23326961984284,0.2411007065345999,0.2481361941994727,0.2542211625534451,0.260113531047266,0.2660712613540594,0.2727972342591935,0.2762574053198379,0.2802904084933539,0.2842266311321686,0.28763999899777,0.2909350391192436,0.2944701716153636,0.29771123503449,0.2937856911970692,0.2908253094910591,0.2890338763316611,0.2859599930623807,0.2833885907137866,0.2792029773482609,0.2760548656867714,0.2751002036927524,0.2752522234930606,0.2751387921955051,0.2754979556622529,0.2761589928342373,0.2762722513089005,0.2774277159583501,0.2793147299469731,0.2800333559180695,0.2816282256222882,0.285678391959799,0.2898759026852696,0.2951778467414657,0.2977109699821812,0.303134962805526,0.3071113908118313,0.3113731456827691,0.3156951518581399,0.3151235662764574,0.3191489361702128,0.3236548223350254,0.332145793368046,0.3374327440430438,0.0,1.609075816482922,49.75902757735093,136.3833658918357,194.5990099141591,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95822,48315,460.8440650372565,4754,48.59009413287136,3734,38.43584980484648,1412,14.380831124376448,77.44904619750217,79.7751182554412,63.38601454967061,65.10668982325203,77.27363237866808,79.6024027885686,63.320875117991285,65.04461301793829,0.1754138188340874,172.71546687260297,0.0651394316793272,62.07680531373683,231.74426,162.9979160414871,241848.69862870735,170104.89870957306,543.66982,366.31717149416863,566859.9277827638,381774.40618455946,481.91562,236.1637337183973,499370.6768800485,243698.65550973968,2128.7956,1002.937738155098,2194094.550312037,1019147.396375674,831.29828,376.4257092009108,856125.1800212895,381421.5560676568,1370.99518,574.230938680638,1398911.4817056626,574834.2698388804,0.3805,100000,0,1053383,10993.122664941246,0,0.0,0,0.0,47311,493.1852810419319,0,0.0,43578,451.2742376489741,1113536,0,39911,0,0,0,0,0,97,0.9914215942059236,0,0.0,1,0.0104360167811149,0,0.0,0.04754,0.1249408672798948,0.2970130416491375,0.01412,0.354317998385795,0.645682001614205,23.49264995520701,4.116797875323912,0.3034279592929834,0.2771826459560793,0.2220139260846277,0.1973754686663096,11.595674029269764,6.442903944007658,15.052789944061107,11281.85093849736,42.78051678500142,12.655803789746129,12.797118015115434,9.238878778266333,8.08871620187353,0.5886448848419925,0.8144927536231884,0.6990291262135923,0.5958986731001207,0.0936227951153324,0.7595978062157221,0.918032786885246,0.8745980707395499,0.7602040816326531,0.1125,0.5178030303030303,0.7417763157894737,0.6326034063260341,0.5450236966824644,0.0883882149046793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022178787357078,0.0046526714849016,0.0070013089403671,0.0092949076096341,0.011663971851897,0.0137863622941973,0.0160680240204724,0.0182488084181304,0.0202452733776188,0.0226130910355977,0.0247886457959727,0.0266625615763546,0.0288345891713525,0.0307960009472524,0.0329218106995884,0.0349925613687081,0.0369185865987704,0.0388842803815844,0.0405514919790541,0.042516422540783,0.0566740382208128,0.0702904460196976,0.0839071424828381,0.0966999716329939,0.1089077613638758,0.1240595147518809,0.1344837089012782,0.1451539156786644,0.1548119386427154,0.1643039167398333,0.1762821202021288,0.1869437483798496,0.1970629416170101,0.2062988174717458,0.2149449632905696,0.2253477554718315,0.2333459500378501,0.2408090916230073,0.2483736296061638,0.2546639873952458,0.2607331533900847,0.2662345232821134,0.2701826370957282,0.2739443011369065,0.2776506760600888,0.2821762726848554,0.2846123171248411,0.2882459496092117,0.2917279079961837,0.2954655881078383,0.2921489817792068,0.2894351249572064,0.2866850681649409,0.2827736890524379,0.279577194484632,0.2762705678396545,0.2722248390642173,0.272332041554043,0.2738645404838081,0.2735184857597735,0.2745520378794912,0.275523380943064,0.276296403892843,0.2775943448489817,0.2781204601205077,0.2793110550435096,0.2805262861328675,0.2851729921113112,0.2882369299221357,0.2937216220447785,0.2986539413856751,0.3016415868673051,0.3045051790839885,0.306507363991584,0.3099524298106519,0.3145830896971114,0.3214339508962193,0.3248445959494686,0.3246612466124661,0.3269876819708847,0.0,2.026253778132228,47.50543094628376,143.69366027804912,187.4656323542388,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95803,48083,457.2299406072879,4842,49.24689205974761,3852,39.57078588353183,1460,14.811644729288227,77.3497797498425,79.68274211537047,63.33168066437421,65.0598371389884,77.15966063019965,79.4971360247533,63.25861645504537,64.99082639315732,0.1901191196428442,185.6060906171706,0.0730642093288409,69.01074583107913,230.9879,162.55983566446167,241107.16783399263,169681.3624463343,539.68862,363.9136157469262,562686.9409099923,379211.4711928919,486.10067,238.8477022569273,503180.7041533146,246077.15213989603,2192.74156,1050.3327792159516,2251643.393213156,1059399.646731868,865.88995,400.866503961994,883478.847217728,398138.02945039934,1417.1374,614.7966572902668,1437886.7467615835,607944.3768521699,0.37807,100000,0,1049945,10959.41671972694,0,0.0,0,0.0,47112,491.0806550943081,0,0.0,43884,453.8480005845329,1111562,0,39878,0,0,0,0,0,88,0.9185516111186498,0,0.0,3,0.0313142594699539,0,0.0,0.04842,0.1280715211468775,0.3015282940933498,0.0146,0.3658055610333268,0.6341944389666733,23.317052477141843,3.991666751428901,0.3063343717549325,0.2793354101765317,0.2095015576323987,0.204828660436137,11.39469670234415,6.267296634036756,15.675385662532074,11331.8970237021,44.3622610215191,13.332925507312066,13.367984238832396,8.99220520747389,8.669146067900753,0.5916407061266874,0.8113382899628253,0.7254237288135593,0.5935563816604709,0.0899873257287705,0.7482993197278912,0.8938053097345132,0.9115853658536586,0.7536231884057971,0.1111111111111111,0.522795216741405,0.7516025641025641,0.653755868544601,0.5383333333333333,0.0833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025528293859027,0.004876960669999,0.0073477175391235,0.0097837019577563,0.012155426711423,0.0143169899699607,0.0164151712887438,0.0185069873319518,0.0208918916156464,0.023009447384313,0.0250945659193652,0.0272809413310881,0.0293872682590768,0.0314791168959551,0.0335664624208289,0.0356279319680092,0.0377620205993478,0.0396332292628281,0.0417367994514057,0.0438530734632683,0.0582350056857897,0.0719207804837242,0.0849605383139955,0.0972928664508806,0.1093367906231554,0.1243034628601638,0.1350935630330547,0.1458952006897212,0.1550886113811411,0.1639275676371516,0.1754817017974912,0.1870873471154887,0.1964730583870932,0.2059231887702113,0.214143481082984,0.223465667970438,0.2316036156678942,0.2393382518331908,0.2473280537339172,0.2545138133565369,0.2599266704449507,0.2655904803095302,0.2710609715718272,0.2757642496349317,0.279368584532505,0.2831017635403719,0.2871259916297083,0.2913399834805261,0.2938430906081919,0.2962821357943309,0.2932359154455792,0.2911564813031395,0.2883191123877108,0.2850180766449747,0.282546707458342,0.2789431006257554,0.2753856853818917,0.2762681604507559,0.2766846269267494,0.2765031998146068,0.2762796434377978,0.2763059333727577,0.278107002754361,0.2792425961773802,0.279771302808478,0.282100461355036,0.2831325301204819,0.287142278827889,0.2921710777342259,0.2943546809592739,0.298640496983884,0.3017869307760834,0.3075724524774073,0.3091239219246482,0.3120639940470653,0.3118956075964115,0.3106106408706167,0.3153617443012884,0.3241434689507494,0.3333333333333333,0.0,2.443269638114341,50.75325854746291,142.52167260360662,195.24430289818235,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95811,48659,463.37059419064616,4812,49.32627777603824,3856,39.78666332675788,1493,15.269645447808706,77.41775944651599,79.74686654394361,63.37436231324406,65.09560997964464,77.22401572977951,79.55529630329403,63.301414661589504,65.02586916258544,0.1937437167364777,191.5702406495825,0.0729476516545588,69.74081705919843,230.38554,162.13901381427436,240458.33985659265,169227.97362961914,540.60468,363.9997792108012,563766.5508135809,379440.2405857968,484.86611,237.44449687773,503504.1070440764,245798.18189624365,2228.52652,1043.8039562070242,2301380.175553955,1064861.5753947487,900.06823,405.4706836024661,926143.584765841,409953.2664305858,1457.5196,622.2249422962352,1492229.0342445022,623725.9760312347,0.38142,100000,0,1047207,10929.92453893603,0,0.0,0,0.0,46958,489.630626963501,0,0.0,43827,454.86426401978895,1119400,0,40165,0,0,0,0,0,91,0.9497865589546084,0,0.0,1,0.0104372149335671,0,0.0,0.04812,0.1261601384300771,0.3102660016625104,0.01493,0.3607733705401634,0.6392266294598365,23.390576797044723,4.058410629263509,0.3073132780082988,0.2697095435684647,0.2074688796680498,0.2155082987551867,11.278853317273947,6.064936722577673,15.939915939004964,11337.753693796514,43.93671624998814,12.614554288414189,13.445033681424684,8.869026120852883,9.008102159296383,0.5718360995850622,0.7875,0.7088607594936709,0.58125,0.0974729241877256,0.7393238434163701,0.9105504587155964,0.8501529051987767,0.7037037037037037,0.1337209302325581,0.5029282576866764,0.6986754966887417,0.655011655011655,0.5433715220949263,0.0880121396054628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681477131198,0.0045513060930737,0.0070623332081866,0.0093132375941987,0.0115004474090946,0.0136609796815831,0.0157170522882478,0.0180554421490977,0.020237742367407,0.0222708943155998,0.0244674962586358,0.026597273548493,0.0289576480263157,0.0311222756426755,0.0332955248504846,0.035366055197488,0.0373808562824055,0.0398623220709746,0.0416679652195593,0.0435814679854242,0.0578132988324655,0.0717578798808217,0.0847274633123689,0.0970103785873356,0.1093076898770841,0.1249115170468352,0.1355903476621258,0.1457017711722055,0.1554728093292221,0.1645367583259241,0.1757936849350425,0.1876714992545859,0.1977241633911702,0.2068152289030342,0.2158189607821597,0.2248523328097692,0.2336911091048918,0.2416933355791365,0.2486635861194165,0.2559913103132861,0.2613963157590807,0.2668580631608431,0.2716272370968504,0.2758785674983852,0.2798438238896096,0.2833802886212369,0.2868699983770084,0.2893063400393476,0.2931838437592839,0.2964838663001012,0.2937348201226467,0.2911394142351294,0.2887662228215068,0.2852246050149064,0.2821997748681794,0.2780271111925261,0.2756522424529045,0.2748324889687857,0.2754791939016315,0.2758412608263524,0.2765195996197506,0.2766153544465143,0.2770798668885191,0.2783674192905098,0.2786799121215015,0.2794828700711053,0.2811229100768188,0.2864706615173788,0.2918462393994161,0.2962264150943396,0.2982218611788067,0.3012422360248447,0.3062433730430986,0.3102046959662853,0.3155875748502994,0.3177083333333333,0.3216320246343341,0.3169993950393224,0.3171127331711273,0.3160106992739778,0.0,1.79066596138597,49.0983448641832,145.55140305491065,195.39857420181613,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95732,48469,463.4604938787448,4888,49.95194919149292,3853,39.76726695357874,1405,14.352567584506748,77.3893283971574,79.7507963664068,63.35181630130408,65.0939756731334,77.21164829739848,79.57474542241981,63.28434823301132,65.0289276487054,0.1776800997589163,176.0509439869935,0.0674680682927544,65.04802442799473,228.93134,161.04678953423877,239137.50887895373,168226.47550896122,538.92917,363.7957923745934,562472.9035223331,379531.5906641389,486.02161,238.30807878432023,504457.0572013538,246396.0353099022,2194.6844,1040.198028613941,2267211.0892909374,1061254.490258159,888.37183,404.31540493117296,917261.3963982784,411634.6159394687,1366.07662,584.1906737227685,1398062.0273262858,586950.091655423,0.38165,100000,0,1040597,10869.88676722517,0,0.0,0,0.0,46971,490.1495842560481,0,0.0,43960,456.0544018718924,1122766,0,40285,0,0,0,0,0,83,0.8670037187147454,0,0.0,1,0.0104458279363222,0,0.0,0.04888,0.1280754618105594,0.2874386252045826,0.01405,0.3619140625,0.6380859375,23.28356100319473,4.025447669220057,0.3158577731637685,0.2810796781728523,0.2094471840124578,0.1936153646509213,11.102967743317826,5.986012395956959,14.97126554178115,11344.770428632768,44.14879159203154,13.220606603707989,13.79974763084146,8.951994059803877,8.176443297678217,0.5878536205554113,0.7903970452446907,0.686113393590797,0.5923172242874845,0.128686327077748,0.755632582322357,0.9146608315098468,0.8434782608695652,0.7374301675977654,0.1791907514450867,0.5161170804001483,0.6996805111821086,0.6238532110091743,0.5509554140127388,0.1134380453752181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0046114709071928,0.007009322094073,0.0093620218717951,0.0113557805701272,0.0136697677259125,0.0159791293005054,0.0180710597742903,0.0203132823117087,0.0223372796201741,0.0243877446459678,0.0263060696844092,0.0282672804430698,0.0303342219843336,0.0323508786403762,0.0342668182287899,0.0361616663560883,0.0382333416313998,0.0400162143621831,0.0418554746502494,0.0559581488597443,0.0707768290641218,0.0844616917510095,0.0972853057448061,0.109603769408342,0.1247501718394755,0.1358323256751309,0.1460857161106261,0.1556030338639034,0.164776016983681,0.1761709917088403,0.1871389940508382,0.1975932689799113,0.2074021430133391,0.2159964794543154,0.2253101462117855,0.233586661756336,0.2417065874997188,0.2489364839877029,0.2552365464560978,0.2616969374660393,0.2672447036002664,0.2721815173717797,0.2769494040495907,0.2811650815217391,0.2850254025660897,0.2883781385524852,0.2916507912316797,0.2953390652272286,0.2979827241125039,0.2951919593134821,0.2918455524312461,0.2894947200134629,0.2861813677478827,0.2826733332347154,0.2795051873067138,0.275531077891424,0.2752649600521767,0.2754658701333967,0.2764224757376293,0.276392197736748,0.2771190765969141,0.2788301415487094,0.2798525689417825,0.2816389917572572,0.2833337632522506,0.2837323407495136,0.2880081995216945,0.2912251540965441,0.2955824863174355,0.2970021124544923,0.2983312342569269,0.301250544391215,0.3052915200958012,0.3089174923604037,0.3141062914292359,0.319377990430622,0.323104335775094,0.3179571663920922,0.3255278310940499,0.0,1.8652589328402995,50.43193796709879,144.2760382917932,193.9197844414234,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95682,48240,460.91218829037854,4663,47.699671829602224,3656,37.72914445768274,1402,14.318262578123369,77.35982293729873,79.7343489842649,63.33991942654043,65.0893911798831,77.1734035543413,79.54936342702918,63.2683597453988,65.02023460755134,0.1864193829574247,184.98555723572,0.071559681141629,69.15657233174954,230.01396,161.73514542795462,240393.9507953429,169033.8051336245,537.37516,362.6377768331837,561157.4172780669,378534.3709717435,475.2243,232.7735249895902,493449.3321627893,240819.31977187825,2092.26276,991.510839809945,2160956.794381388,1010529.4201730158,836.42936,377.0582139062452,864097.5732112624,384009.1712133768,1364.77506,594.1655590404198,1395949.4157730816,596536.6614365336,0.3799,100000,0,1045518,10926.997763424675,0,0.0,0,0.0,46898,489.653226312159,0,0.0,43009,446.2281306828871,1118630,0,40138,0,0,0,0,0,79,0.8256516377166029,0,0.0,0,0.0,0,0.0,0.04663,0.1227428270597525,0.3006648080634784,0.01402,0.3609115171422706,0.6390884828577295,23.43661019678021,4.023459550669969,0.3178336980306345,0.2666849015317287,0.2051422319474836,0.2103391684901531,11.2279247476811,6.138874442221067,15.168099569952046,11267.79729647661,41.93525920650559,12.024223189930929,13.142948904886294,8.25782982725772,8.510257284430658,0.5768599562363238,0.798974358974359,0.6867469879518072,0.5813333333333334,0.1248374512353706,0.7302452316076294,0.9148418491484184,0.8612903225806452,0.7010309278350515,0.1344086021505376,0.5107632093933464,0.7145390070921985,0.6232394366197183,0.539568345323741,0.1217838765008576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873860736419,0.0044394441572657,0.0066453609293359,0.0086632406410594,0.0109809663250366,0.0131609751132373,0.015345581267386,0.0174672489082969,0.0194998876381539,0.021513626319666,0.0238900157764255,0.0258938189279302,0.0281623549484546,0.0301894563426688,0.0321409415356686,0.0341894475737687,0.0363265559650503,0.0383749753674144,0.0402852717046647,0.0422602732587829,0.0567912326706296,0.0706657173371306,0.0836901763224181,0.0958628816733654,0.107487527818502,0.1226880264104626,0.1336772385683352,0.1440622902974979,0.1539752621844966,0.1629135092201017,0.174612582710089,0.1856171355554111,0.1958364619720762,0.2053628105505089,0.2139663943271157,0.2239599486066191,0.2328114363512593,0.2409711684370258,0.2484096656045538,0.2545544010619307,0.2603221218883326,0.2656089233935085,0.2705576252143575,0.2744706065430517,0.2791298337516825,0.2823433886127651,0.2859248341930729,0.2885714285714286,0.291754429038469,0.2947353165924481,0.2921266822467563,0.2893164682130938,0.2858047181622519,0.2832429938876715,0.2809714201095809,0.2765843753339745,0.2739979152847531,0.2741702978082102,0.2744997697149583,0.2752414555044727,0.2762582670104248,0.2768551898035971,0.2774854899995824,0.2789724411201638,0.2812395389986131,0.2832238373596813,0.2839450447146444,0.2890023982309154,0.2936951316839585,0.2971210871529005,0.3040577096483318,0.308621144213024,0.3138287864534337,0.317300409028935,0.321025641025641,0.3246753246753247,0.3288834951456311,0.3279569892473118,0.3304140127388535,0.3310657596371882,0.0,1.871837271631367,48.05003380108906,136.60440268791288,183.6806188490088,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95843,48099,458.91718748369726,4789,48.55858017799943,3827,39.25169287271893,1481,14.888932942416243,77.34109898624328,79.63107118874922,63.34986309044478,65.04377878964836,77.14163338957357,79.4395583641214,63.27401887271844,64.97380874515274,0.1994655966697109,191.5128246278215,0.0758442177263418,69.97004449561928,230.6909,162.25044314153124,240696.66016297488,169287.7342544904,536.78532,362.2766641525621,559390.002399758,377312.3797800174,481.02789,236.30410600201984,497678.9958578092,243175.1286583092,2183.80664,1049.3114115107437,2239899.126696785,1056197.4181846818,918.86658,429.4736245887555,940026.1677952486,429408.0626291234,1437.76118,624.6783039658369,1447871.3938420124,610794.7753759735,0.3786,100000,0,1048595,10940.75728013522,0,0.0,0,0.0,46741,486.9630541614932,0,0.0,43519,449.8398422419999,1117346,0,40113,0,0,0,0,0,95,0.9912043654727,0,0.0,0,0.0,0,0.0,0.04789,0.1264923402007395,0.3092503654207559,0.01481,0.36312625250501,0.6368737474949899,23.039329359635268,4.034921215812438,0.2960543506663182,0.2863862032923961,0.2111314345440292,0.2064280114972563,11.627344571083045,6.606604355062278,15.988817487695515,11278.223699179494,44.130665256604246,13.457236936953318,12.88922641402142,9.05415082778403,8.73005107784549,0.594460412856023,0.8184306569343066,0.6990291262135923,0.6051980198019802,0.1227848101265822,0.7743288590604027,0.9385593220338984,0.8934169278996865,0.7383177570093458,0.1978609625668449,0.5130929791271347,0.7275641025641025,0.6228501228501229,0.5572390572390572,0.099502487562189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0046407473832466,0.0069683230380671,0.0093711292058399,0.0116784908421929,0.0137690303671741,0.0160559104292103,0.0179137975006375,0.0202541213000224,0.0220649160673915,0.0242146127608141,0.0263376511491954,0.0282756283187658,0.0303825339012696,0.0321490396504822,0.0338321808236144,0.0359727851766068,0.0380646498135101,0.0400631209576113,0.0420949685796329,0.0571637122002085,0.0711844566841901,0.084523123657885,0.096884977314737,0.1089570784718419,0.1245022760638354,0.1349040712764717,0.1450760676582217,0.1545012165450121,0.1636708575838451,0.1756247712938846,0.1871471523436655,0.1974582536093233,0.2066571928290336,0.2141819782154252,0.2235159867939997,0.2315297320820826,0.2391297010878736,0.2463605314815445,0.2533809703757143,0.2591324465008675,0.264692126002666,0.2692553342480011,0.2739794940590264,0.2781218126183885,0.2823391668720729,0.2851388541406054,0.2881375329018475,0.2916709777547853,0.2957896958345424,0.2933697494820116,0.2897275900931856,0.2866133528567003,0.2840252081406105,0.2818634371052827,0.2788526296455029,0.2755391016817757,0.2755105391030271,0.2759476341233849,0.2769908493454864,0.2776817259264827,0.2776150130651674,0.2784355712306335,0.2794813701518652,0.2803918729791033,0.2811666928022581,0.2823861530126322,0.286753132279796,0.2898743481152217,0.2941199746755302,0.296358517980385,0.29987300243412,0.3073832245102963,0.3099795717636377,0.3122180451127819,0.3158330377202317,0.3163996948893974,0.3203125,0.3272727272727272,0.3258810155361879,0.0,2.610515474468204,51.198708450512285,137.3909978795163,196.376341179464,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95631,47936,457.759513128588,4833,49.30409595214941,3828,39.328251299264885,1458,14.765086635086949,77.31769350596971,79.73991257021186,63.289715480586615,65.0814064878907,77.12479038973794,79.55409243132432,63.2162300516576,65.01367291515315,0.1929031162317755,185.8201388875358,0.0734854289290112,67.7335727375521,229.61026,161.37892532076478,240100.2394620991,168751.68650413022,539.32544,363.5669721570645,563296.6506676705,379509.3967114287,472.61306,231.7404889818836,489725.2355407765,238896.58916544923,2191.07172,1032.6142163836023,2251974.1506415284,1040671.96066449,882.92015,401.49660172975706,905333.3333333334,401915.4580938788,1421.8761,613.8789207532284,1441946.481789378,603270.1674844048,0.37738,100000,0,1043683,10913.647248277231,0,0.0,0,0.0,47141,492.2253244240884,0,0.0,42793,443.05716765483993,1118160,0,40105,0,0,0,0,0,78,0.815635097405653,0,0.0,1,0.0104568602231493,0,0.0,0.04833,0.1280672001695903,0.3016759776536313,0.01458,0.3616600790513834,0.6383399209486166,23.42438696269705,4.05964480682849,0.3079937304075235,0.2763845350052246,0.2055903866248694,0.2100313479623824,11.27682473312455,6.082881102629598,15.623301989999488,11272.752719875736,43.75207376118092,12.936428656376275,13.344221830124065,8.670256892179465,8.801166382501112,0.5760188087774295,0.8071833648393195,0.6946564885496184,0.5667090216010165,0.1069651741293532,0.7402482269503546,0.9244851258581236,0.8380952380952381,0.7382198952879581,0.1405405405405405,0.5074074074074074,0.7246376811594203,0.6423611111111112,0.511744966442953,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907934192398,0.0047661542205816,0.0069441624365482,0.0092378987591337,0.0115376397692472,0.0138447432762836,0.0162915961071552,0.0182470192789055,0.0204681055744885,0.022765944361303,0.0247703125801981,0.026723561770603,0.0287200082380805,0.0308128739426449,0.032691016169861,0.0345833850738855,0.036714464939293,0.0385678078776799,0.0406081861607468,0.0425491975096204,0.0567057176000919,0.0703544969663945,0.0841386554621848,0.0968506425110596,0.1085448151316414,0.1240943947803245,0.1348183257702158,0.1446723233701445,0.154658365159344,0.1634012202457678,0.1749946062567421,0.185575276856728,0.1963270374485327,0.2052787208410907,0.2136693739461997,0.2225216831924757,0.2321153201475025,0.2402702702702702,0.2473775032923119,0.253944428530507,0.2601507415511792,0.2654341212263047,0.2704859795377037,0.2745206202256892,0.2781634911177851,0.2821457619599241,0.2844649626543557,0.2877051994455959,0.2908403665924506,0.2940276054999868,0.2916902280744271,0.2888427593412334,0.2866891796820036,0.2830732846883742,0.2803929412810597,0.2773718164307335,0.2742271951450787,0.2742500081787549,0.2749940470115998,0.2753751729520701,0.2754652438230865,0.2764735852014422,0.2783012030729091,0.2786526297164595,0.2788187178999429,0.2805692335455928,0.2813811361140056,0.2855414210363016,0.2910144726338805,0.2955715352273174,0.2999186109603907,0.3038522427440633,0.3062233909341347,0.3095148268316607,0.3152842497670083,0.3202016649079611,0.3234403391883707,0.3308196070648938,0.3368621064060803,0.3406427221172022,0.0,2.74255913867469,48.406506167509534,140.4881445818918,198.4268159651197,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95719,48229,459.79377135156034,4791,49.0393756725415,3763,38.82196847020968,1451,14.80374847209018,77.34880342590687,79.70690807853771,63.338894218876014,65.07758319298212,77.15930465547699,79.51822895413115,63.26755872338264,65.00835547836273,0.1894987704298785,188.679124406562,0.0713354954933791,69.22771461938737,230.4467,162.0424439619372,240753.350954356,169289.73762987205,540.84055,365.1449212820938,564565.3945402689,381011.8380698647,481.34664,236.45873223913551,499807.5512698628,244672.1860806224,2165.46508,1021.5289681704428,2236179.85979795,1041081.5910847818,885.12435,403.4974341629614,914464.7144245134,411304.8519044126,1413.49458,605.3797575671855,1445074.958994557,607319.3852918749,0.37863,100000,0,1047485,10943.334134288909,0,0.0,0,0.0,47079,491.35490341520494,0,0.0,43446,450.7673502648377,1113012,0,40000,0,0,0,0,0,105,1.096960895955871,0,0.0,0,0.0,0,0.0,0.04791,0.1265351398462879,0.3028595282821958,0.01451,0.3536561067941821,0.6463438932058179,23.240892846852542,4.070092507103055,0.31198511825671,0.2753122508636726,0.2027637523252723,0.2099388785543449,11.081944845064132,5.962323667148282,15.61050952557214,11285.089348327489,43.0805027587737,12.62829777945211,13.2283936526899,8.540417387801236,8.683393938830445,0.5732128620781292,0.7886100386100386,0.692504258943782,0.581913499344692,0.1050632911392405,0.7456445993031359,0.8956916099773242,0.8694362017804155,0.7171717171717171,0.1511627906976744,0.4975143403441682,0.7092436974789916,0.6212664277180406,0.5345132743362832,0.0922330097087378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556337528986,0.004672991931233,0.0069098472933894,0.0092036692774205,0.0115198470798763,0.0136000407186847,0.0159519708073837,0.018097376747984,0.0200500740892136,0.0223939409446804,0.0245167373880245,0.0265920870323805,0.0284994602374955,0.0306384030144235,0.0329269047471684,0.0351208927464352,0.0370151788117868,0.0390740913665556,0.0411212426829141,0.0430845854085481,0.057759583955555,0.0715616300730477,0.0846927749394152,0.0980043552815679,0.1104325538714679,0.1258766408919259,0.1369602818366069,0.1467278476295925,0.1560897435897436,0.1643603441247774,0.1751691154293593,0.1863572433192686,0.1966612289287656,0.2056559205634049,0.2144829634845367,0.223960468440121,0.2319196702818018,0.2379735722486099,0.2453605439088339,0.2510651944838961,0.2570823496736564,0.2632391286554494,0.2686210486466023,0.2722842226266884,0.2769215833798509,0.2803352945520789,0.2835358619225437,0.288092758629448,0.2921612440747581,0.2960676154241103,0.293377599161279,0.2906074464724705,0.2871303834310541,0.2840432129927449,0.2826973557371457,0.27974335472044,0.275990020842544,0.2758823721827876,0.2757645936925277,0.2754735118199943,0.2757115678740627,0.2766384175236447,0.2772564230897564,0.2770577231427044,0.2778761909321587,0.2804757955841194,0.2823656280152108,0.2874221512846994,0.2934691599218532,0.2970851575750404,0.3027913721225304,0.3081089692528277,0.3112080409633984,0.3147088008548965,0.3211225162444674,0.32537703360646,0.32823838196696,0.3256431196406696,0.324660946581788,0.3303947872748179,0.0,1.89367980565117,50.17602514908567,135.6731419473881,191.7768664025413,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95626,48508,462.9598644720055,4833,49.21255725430322,3841,39.466253947671134,1468,14.880890134482254,77.26744378178137,79.68318831436365,63.28338998351626,65.06957081337032,77.07993787944878,79.50257202970646,63.211478826309495,65.00341864703913,0.1875059023325889,180.6162846571908,0.0719111572067632,66.15216633119303,229.0618,161.1771430341837,239539.24664840108,168549.4980802122,533.96398,359.7517179448444,557698.7953067158,375518.1692294512,483.49669,237.96081930032383,501739.2759291406,245845.28507278723,2199.17024,1046.9083755636054,2261589.860498191,1056642.5995807194,876.25866,403.1442246630078,897900.6023466422,403145.58243888384,1424.72004,614.5482850964431,1446624.05621902,605603.532984143,0.38103,100000,0,1041190,10888.14757492732,0,0.0,0,0.0,46535,485.9034153891201,0,0.0,43709,453.1194445025411,1122708,0,40257,0,0,0,0,0,88,0.9202518143601112,0,0.0,0,0.0,0,0.0,0.04833,0.126840406267223,0.3037450858679908,0.01468,0.3556660039761431,0.6443339960238569,23.281772155359644,4.043992629662973,0.3204894558708669,0.2806560791460557,0.1968237438167143,0.2020307211663629,11.555901591877992,6.470700613419383,15.759039958141358,11377.243389603973,44.20079260835231,13.196681035052338,13.94558068904104,8.470093238752776,8.58843764550616,0.5977609997396511,0.8237476808905381,0.7156783103168156,0.5859788359788359,0.1082474226804123,0.7527801539777588,0.9360341151385928,0.849112426035503,0.7262569832402235,0.1311475409836065,0.5299401197604791,0.7372742200328407,0.6651735722284434,0.5424610051993067,0.1011804384485666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797738464344,0.0048468870411681,0.0072084145549057,0.0094707747337614,0.0117295191202352,0.0140546706318491,0.0164263719232416,0.0188057050097499,0.0209002229084439,0.0229188214933076,0.0247992369465554,0.027037577301584,0.0290619920581034,0.0310461725520098,0.0331131296449215,0.0351501116532958,0.0372852215881433,0.0392663635797471,0.0414421536605155,0.0433513355714494,0.0582038231205777,0.0718206003728763,0.0849323125072203,0.0976305812973883,0.1093185801465464,0.1239674672766552,0.1350498709410152,0.1442761678408134,0.1541917608925878,0.1630237478921194,0.1759097478375288,0.187370678915382,0.1978928579202856,0.2079708479695348,0.2165551103086881,0.2255148500592673,0.2341026270562239,0.2417478568053461,0.2489244565525852,0.2554747034893714,0.2600201386558026,0.2653982435419176,0.2705031543314356,0.275547401491714,0.2797826694704087,0.2839484851475377,0.2873358947724115,0.2910096642929807,0.2941542046999417,0.2979630631938852,0.2954475027956293,0.293070478339226,0.290397994535673,0.2881583700599667,0.2862896633722226,0.282802001867185,0.2792199569456756,0.2790674814462884,0.2799372880489426,0.2800925925925926,0.2803560076287349,0.2812913678303993,0.2816703977237065,0.2825248991778258,0.283271375464684,0.2846329917286583,0.2846806458020032,0.2896637998436278,0.2940662260918213,0.2961436328326265,0.3017670426007945,0.3045777469152289,0.3082039911308204,0.312308868501529,0.315824093215561,0.3163471841885938,0.3155548724254534,0.3161554192229039,0.3200339558573854,0.3218986836856801,0.0,2.637419440369765,50.332566389321,142.10820994393873,194.46640561406215,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95841,48700,464.4880583466367,4772,48.68480086810447,3778,38.86645590091924,1426,14.492753623188406,77.40182060844235,79.71623327518662,63.36325590393732,65.07603640005306,77.225878092841,79.54464931382338,63.296945886637744,65.01381207965503,0.1759425156013492,171.58396136323972,0.0663100172995783,62.22432039803039,230.5303,162.26574195874312,240534.1137926357,169307.22963944773,542.28653,365.761553839326,565274.8301874981,381089.5898825408,489.44593,240.29400659711027,507796.4441105581,248354.8069351123,2174.90904,1024.2768565064905,2237285.671059359,1036722.0464169718,866.53587,395.8385171730852,888931.9393578948,397808.77408737794,1389.09098,586.0763078177143,1412713.6611679762,580357.5956045388,0.38152,100000,0,1047865,10933.36880875617,0,0.0,0,0.0,47236,492.28409553322695,0,0.0,44105,457.3095021963461,1112856,0,40011,0,0,0,0,0,98,1.0016589977149657,0,0.0,1,0.0104339478928642,0,0.0,0.04772,0.1250786328370727,0.298826487845767,0.01426,0.360553772070626,0.639446227929374,23.48283296108276,4.10942162649963,0.307305452620434,0.2797776601376389,0.2088406564319745,0.2040762308099523,11.542152158875409,6.288361395555293,15.040365731546856,11347.08439699787,43.05557985955196,12.9429446512522,13.160122066773432,8.65581326626887,8.296699875257453,0.5839068290100582,0.8088930936613056,0.7002583979328165,0.5830164765525983,0.1011673151750972,0.7695004382120947,0.9157427937915744,0.8676470588235294,0.8021390374331551,0.1226993865030674,0.5036025786879029,0.7293729372937293,0.630937880633374,0.5149501661129569,0.0953947368421052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021972903460985,0.0043174654653437,0.0066144544089599,0.0089988522908477,0.0112747938715547,0.0134879270328596,0.0156347143657952,0.0177485201061441,0.0200645992190853,0.0223022834508664,0.0244784993080826,0.0263681898427556,0.0285855253014277,0.0307133149376055,0.0327770787351224,0.034717199479242,0.0366318186523134,0.0386665284114475,0.0407881343609131,0.0427425145961472,0.0574965583413291,0.0712000836295212,0.0849897836223607,0.0976975273628705,0.1102814171967813,0.1251161808196028,0.1359365234064642,0.1456056805136272,0.1548886944272512,0.1638441680859496,0.1753014186304139,0.1871177576556523,0.1978445793996545,0.2071165590552041,0.2154782971894613,0.2249095115282866,0.2333125181203862,0.2416925221457799,0.2491636710023474,0.2555090272533809,0.2611475277170834,0.2667562514606216,0.2720449172576832,0.2760024424994911,0.2798432305190865,0.2845626515365965,0.287922524211184,0.2913867760409391,0.2952228352866686,0.2980684406641298,0.2943862476497448,0.2913162191457542,0.2885071505761161,0.2862835359274976,0.2835536237026523,0.2788874996187978,0.2758832516893222,0.275519362893092,0.2751303875099808,0.2762877820349084,0.2773736208532569,0.2778714890946179,0.2785628195004364,0.2793090449475575,0.2804218947167924,0.2814684863651608,0.2830656522964215,0.2878144093291567,0.2933430363516651,0.2986462625073572,0.3009336520680167,0.3064201822299468,0.311751497005988,0.315935925396706,0.317871634083364,0.3213744903902155,0.3243935513032996,0.3306709265175719,0.333965844402277,0.3364910951117847,0.0,2.143756897567581,49.51402263491492,133.80846286905015,195.8066544903852,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95690,48076,458.3551050266486,4835,49.26324589821298,3892,40.02508099069913,1467,15.02769359389696,77.32145341825886,79.70994721230774,63.3143933609397,65.08078658996529,77.13345617620679,79.52369323111171,63.24320695992871,65.01238291310396,0.187997242052063,186.25398119603176,0.0711864010109906,68.40367686132254,230.35848,161.99912235273416,240734.12059776363,169295.77004152385,540.81144,364.2675525115574,564532.8038457519,380037.1538421542,483.80921,237.3928951278769,500962.5666213816,244615.31380203372,2214.45844,1048.837776396697,2279230.933221862,1061253.9877984254,876.34228,399.46676109231794,899640.9656181419,401345.2174467694,1421.01978,606.7906573125086,1456989.027066569,609334.8214450509,0.3793,100000,0,1047084,10942.460027171071,0,0.0,0,0.0,47114,491.7023722437036,0,0.0,43884,454.0704357822134,1115387,0,40063,0,0,0,0,0,85,0.8673842616783363,0,0.0,0,0.0,0,0.0,0.04835,0.1274716583179541,0.3034126163391933,0.01467,0.3652432969215491,0.6347567030784509,23.096848870752893,4.088309721390526,0.3052415210688592,0.2890544707091469,0.2081192189105858,0.197584789311408,11.497361975889072,6.219524393616197,15.705482448894816,11319.094824558557,44.66653830209919,13.803856983617266,13.52510097052644,8.899532066806074,8.43804828114942,0.5853031860226104,0.808,0.696969696969697,0.5703703703703704,0.1027308192457737,0.7604690117252931,0.9216494845360824,0.8628571428571429,0.7472527472527473,0.1299435028248587,0.507783543365456,0.721875,0.6276849642004774,0.5191082802547771,0.0945945945945946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797276485369,0.0047561099279991,0.006862108169563,0.0092072235038261,0.0113238645612892,0.013538016461576,0.0156235658851484,0.0177557688380641,0.0199450004600333,0.0221610334309169,0.0243082254277776,0.0264533420963452,0.0287515944533596,0.0310574366795128,0.0332476594514807,0.0352047146401985,0.0372990553529996,0.0393744097470863,0.0413282444335825,0.043335973652395,0.0584161931818181,0.0718943985595997,0.0850300155325133,0.0979280009260331,0.1101404319522257,0.1252196185516818,0.1354859939071638,0.1465867089888478,0.155922022957057,0.1647735195374929,0.1764737567870378,0.1873585988157481,0.1977485316510767,0.2063492063492063,0.2145992145992146,0.2233342928633112,0.2322372677181163,0.2396933866834509,0.2473582766439909,0.2537892664163385,0.2604895307026164,0.2664820074097448,0.2713368111004648,0.276311849465199,0.2801277226039871,0.2837802911892484,0.2869215191139335,0.2911088530420424,0.2944762298363662,0.2969784740965045,0.2939959426598417,0.2903920546517051,0.2868138659475251,0.2835672497766506,0.2816086840466233,0.2780555682982399,0.2741334091699055,0.2736009692524313,0.274024381938296,0.2749190420269741,0.2755427782029981,0.2766326068552753,0.2768691588785046,0.275844387470739,0.2772046828519336,0.2785472533194481,0.2819504970235552,0.2853511579740161,0.290618329425762,0.2947148048664876,0.2980330092697264,0.3008142978003384,0.3047805000944762,0.3098817245326211,0.3150131529500188,0.3170210238745694,0.315894141043292,0.3199513381995134,0.3192539769610532,0.3180778032036613,0.0,2.519578040824717,51.66623746437689,142.13719093622376,195.6972521306742,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95703,48184,459.32729381524086,4832,49.225207151290974,3777,38.85980585770561,1433,14.565896575864915,77.3455376358958,79.73063759949146,63.32130932583449,65.08656389335576,77.15563053626352,79.54517293618999,63.248415105034944,65.01787901121747,0.1899070996322791,185.46466330147385,0.0728942207995473,68.68488213828527,230.88978,162.3251051755783,241256.57502899595,169613.39265809674,537.55407,362.4417177385096,561081.9410049842,378107.1625116345,479.64599,236.2235695943062,497410.0080457248,243993.11747003585,2154.437,1026.6904649486246,2218443.8941308004,1040285.1017846116,884.46881,403.9115025674333,910003.4377187758,407956.3317411726,1387.60046,603.5065156574202,1412184.1739548396,598276.3722809718,0.37929,100000,0,1049499,10966.207955863452,0,0.0,0,0.0,46923,489.66072118951337,0,0.0,43388,449.5052401701096,1115695,0,39993,0,0,0,0,0,86,0.8986134185971182,0,0.0,0,0.0,0,0.0,0.04832,0.1273959239631943,0.2965645695364238,0.01433,0.3573412698412698,0.6426587301587302,23.59183733432471,4.03917381132078,0.3079163357161769,0.2758803283028859,0.2173682817050569,0.1988350542758803,11.413978014943387,6.219619465287361,15.416500228944711,11320.069639505691,43.19431834136974,12.904113352182383,13.076744599593198,8.970672533648878,8.242787855945279,0.5978289647868679,0.8051823416506718,0.709372312983663,0.5980511571254568,0.1371504660452729,0.7640067911714771,0.9117043121149896,0.8746177370030581,0.7582417582417582,0.1758241758241758,0.5225086571758368,0.7117117117117117,0.6447368421052632,0.5524256651017214,0.1247803163444639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0048176885237588,0.0068226813543834,0.0091973414093782,0.011322942947831,0.0136382155225096,0.0161938365523852,0.0184226381953167,0.0208094731675392,0.0229078769508049,0.0250243577252448,0.0270539538418874,0.0290998487918779,0.0309028708035364,0.0329721362229102,0.0353878918203622,0.0376742837017547,0.0396259509501717,0.0415865059639562,0.0433745233282627,0.0581188904670398,0.0722882739565454,0.0865239294710327,0.0989972959607756,0.1109118717367227,0.1263909456314787,0.1370403777789568,0.1467843980998232,0.1557802912060892,0.1637093571206217,0.1756260038158476,0.186571932978804,0.1969017396416207,0.2059113192681432,0.2146025735577399,0.2237193480115682,0.2321875,0.2400661506615066,0.2471159408782059,0.2542493161033342,0.2600277585010409,0.2645024073295003,0.2699095691234706,0.2742699856390617,0.2780054810467344,0.2818198585920689,0.285084597615034,0.2886083978180895,0.2924944527581402,0.2955265059449517,0.2927264195213515,0.289278037159248,0.286066999607205,0.2837062081864614,0.2809927128139181,0.2776330423389247,0.2736334100873734,0.2729014822700844,0.2744256543878472,0.2748383879757092,0.2765519820493642,0.2783259007853506,0.2788003011796202,0.2799643612874485,0.281490355816461,0.2827656039048707,0.2851436342002379,0.28890625,0.2938487840619657,0.3001301826502031,0.3056997156911413,0.3082785808147175,0.3136889220440134,0.3177028451001054,0.3197723243444993,0.3239336492890995,0.3176703163017031,0.3213134568896051,0.3183662428996484,0.3237767584097859,0.0,2.266440045868896,50.904654985440224,132.324311835189,193.0886691326422,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95612,48260,460.9463247291136,4941,50.52713048571309,3956,40.82123582813873,1476,14.998117391122454,77.23812690061078,79.66846336694024,63.25655152000609,65.05387099858841,77.05060492381782,79.485680572009,63.18464870458457,64.98645907203677,0.187521976792965,182.78279493124217,0.0719028154215237,67.41192655164241,229.32932,161.3732310199345,239854.11872986652,168779.26517585083,540.52097,363.6024896367666,564782.1298581767,379744.1844504525,484.13094,237.4851387380942,503394.4693134753,246029.38483193528,2242.67684,1067.1847867792571,2314945.9063715856,1085506.031438791,877.74138,404.1503585971888,903381.573442664,408055.6505430156,1430.31942,619.3312211380908,1455704.9533531356,614207.9098308316,0.37976,100000,0,1042406,10902.459942266662,0,0.0,0,0.0,47071,491.73743881521153,0,0.0,43761,454.6709618039577,1115773,0,40085,0,0,0,0,0,89,0.9308455005647828,0,0.0,0,0.0,0,0.0,0.04941,0.1301084895723614,0.2987249544626594,0.01476,0.3488596830305373,0.6511403169694627,23.45891590864627,4.012710368298118,0.3106673407482305,0.2833670374115268,0.2093023255813953,0.1966632962588473,11.433976608097668,6.312388262025691,15.907493522961484,11362.625634725286,45.56618223088071,13.648103146378784,14.099621344104715,9.242431855151862,8.576025885245349,0.5861981799797775,0.7814451382694023,0.7192839707078926,0.5966183574879227,0.0835475578406169,0.7563667232597623,0.9076923076923076,0.8831908831908832,0.729064039408867,0.1183431952662721,0.5140388768898488,0.6951951951951952,0.6537585421412301,0.5536,0.0738916256157635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0044627914760682,0.0065997888067581,0.008985292174461,0.0110934701188731,0.0134682192813553,0.0157682696720893,0.0179892126016426,0.0201092404312337,0.0227382135138733,0.0246552573257818,0.0269309412985625,0.0291986579115292,0.0314113996474335,0.033489611301582,0.0353454876559816,0.0373503343181464,0.0393488942212804,0.0409514391297558,0.0430636983871977,0.0577184435569866,0.0718043300567979,0.0854975626155656,0.0983149025803054,0.1100984285231497,0.1250926887142221,0.1357309817254568,0.1458451042055327,0.1556825356061335,0.1647580783774493,0.175964692679558,0.1869416254662156,0.1966786169621549,0.2054962635050733,0.215835583227726,0.2252130303568258,0.2329534652247335,0.2406701693462917,0.2481267126792272,0.2538833335246777,0.2592721493288785,0.2647996623918598,0.2709749356487906,0.2760199483266238,0.2798094727609395,0.2841629294688855,0.2886480247889303,0.2918319199132819,0.2957554517133956,0.2988443433648913,0.295560322149824,0.2933579590092759,0.2899333211159197,0.2871257051931144,0.2845168385696876,0.2805664975552933,0.277801549945324,0.2777887300804994,0.2774594160009579,0.2770456087717418,0.2788987047989818,0.2791887194881112,0.2801130416579443,0.2807718937752663,0.2819429778247096,0.28344205629337,0.2856493063452354,0.2892634481030107,0.2938936631034723,0.2998347367592665,0.3012866980790141,0.3030095398724503,0.3063782031298709,0.3115248360593955,0.3163416898792943,0.3172180801491146,0.3229368750932697,0.3289915137162029,0.336302294197031,0.3419475655430711,0.0,2.194131616705272,51.19089485091245,149.99030991400372,201.17125607560425,fqhc3_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95723,48390,461.6236432205426,4734,48.22247526717717,3732,38.44426104488994,1432,14.625534093164651,77.33641368994157,79.71363813466779,63.332022412709286,65.09038792489432,77.15497530015666,79.53335802082259,63.26302684829166,65.02389792068665,0.1814383897849012,180.2801138451997,0.0689955644176265,66.49000420766527,231.6303,162.86782963416812,241979.7749757112,170144.9282138756,539.47818,364.2985507141557,563031.1001535681,380026.1082432945,481.05849,236.64520005013512,498530.5934832799,244151.1810492649,2414.37952,1139.2811804250146,2488695.141188638,1156821.656783773,859.51344,391.7599393632922,883632.3140728979,395053.23460634,1392.91482,597.709396819931,1423532.5052495222,596846.6154767856,0.37891,100000,0,1052865,10999.080680714143,0,0.0,0,0.0,47043,490.88515821693846,0,0.0,43372,449.2964073420181,1111869,0,39876,0,0,0,0,0,88,0.9088724757895176,0,0.0,2,0.0208936201330923,0,0.0,0.04734,0.1249373202079649,0.3024926066751162,0.01432,0.3681340872374798,0.6318659127625202,23.21424771386912,4.194521718207937,0.3057341907824223,0.2840300107181136,0.2055198285101822,0.2047159699892818,11.74106434804788,6.318856010342095,15.319571693216794,11212.244414090012,42.760902323980666,13.163531371104868,12.71489028634983,8.466706612631803,8.41577405389416,0.5769024651661308,0.8009433962264151,0.6836108676599474,0.5775749674054759,0.1060209424083769,0.7396021699819169,0.8717391304347826,0.872852233676976,0.8089887640449438,0.1073446327683615,0.5083777608530083,0.7466666666666667,0.6188235294117647,0.5076400679117148,0.1056218057921635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002128004539743,0.0045030882666152,0.0067313061576729,0.0089539799983738,0.0109254041077078,0.0130772207850406,0.0154702780978798,0.0179089238309168,0.0201200249455593,0.0222549802428188,0.0244477474245297,0.0264878905167192,0.0286390045760707,0.0306831875907672,0.0327819797137638,0.0347807212477648,0.0370577454726182,0.038996607637484,0.0410647099174756,0.0429266361808731,0.0576306583824988,0.0713568259814179,0.08481117531698,0.0969861343256909,0.1088390918481354,0.1247661625289324,0.1356167578340329,0.1448396873504546,0.1542870561111763,0.1627939364722266,0.1738213359448145,0.1840104679203659,0.1948537401660364,0.2037269658871205,0.212548071640479,0.2214727996461742,0.2298196160574019,0.2384799487623178,0.2460159136762405,0.2523755617303008,0.2575020510035474,0.2630829227284403,0.2683563439666473,0.2729208281999449,0.2769117005285361,0.2807431726240977,0.2839142325511695,0.2877875971354563,0.2913963766055876,0.2945927428917758,0.2909205785879443,0.2873014781711928,0.284156465456592,0.2813059292188672,0.2790480149657036,0.2751426342597549,0.272018841679312,0.2725529718302935,0.2727458736870822,0.2738513068110959,0.2743106763492449,0.2752223184071771,0.2753674480576258,0.2756615166045107,0.2777711433279992,0.2780985423193434,0.2796133067955644,0.2827560240963855,0.2858541703094946,0.2902625430641904,0.2923989956630906,0.2980507343124166,0.3003502069404648,0.3031372248216614,0.3065535124941065,0.3104273913563989,0.3128362797847809,0.3151490569864125,0.3133678192213449,0.3184210526315789,0.0,2.1158448856864074,47.69968710918347,140.6379584364615,190.19683466916487,fqhc3_100Compliance_implementation_low_initial_treat_cost,0 -100000,95610,48542,464.459784541366,4843,49.46135341491476,3836,39.54607258654953,1473,15.029808597427047,77.26635035352784,79.70548199910223,63.26822878755484,65.07262016588079,77.08511336380973,79.52840909211582,63.19930487711281,65.00786630128586,0.1812369897181156,177.07290698641032,0.0689239104420309,64.75386459493393,230.82444,162.43345226708217,241422.9055538124,169891.69780052523,544.37936,366.8814285014111,568794.822717289,383146.9495883392,486.13343,238.81242140489252,505043.4264198305,247036.9651253166,2461.94754,1154.9316326797073,2539744.388662273,1172715.9320988469,885.38731,401.9002485843196,912838.782554126,407152.07466197945,1433.11136,603.9191256426695,1463769.2500784437,600913.0649639901,0.38037,100000,0,1049202,10973.7684342642,0,0.0,0,0.0,47469,495.88955130216505,0,0.0,44049,457.25342537391487,1106555,0,39719,0,0,0,0,0,80,0.8367325593557159,0,0.0,0,0.0,0,0.0,0.04843,0.1273233956410863,0.304150320049556,0.01473,0.3576642335766423,0.6423357664233577,23.10394997972892,3.99514793036463,0.3115224191866527,0.2825860271115745,0.2035974973931178,0.2022940563086548,11.415803855540917,6.170525911974118,15.619056451471767,11276.850266111644,43.93211595575976,13.396765145483164,13.409067482217845,8.733061666265604,8.39322166179315,0.585245046923879,0.7998154981549815,0.703765690376569,0.586427656850192,0.1018041237113402,0.7572304995617879,0.9240780911062908,0.8773006134969326,0.7061855670103093,0.09375,0.512430426716141,0.7078651685393258,0.6386651323360184,0.5468483816013628,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023004580647776,0.0042404260715191,0.0062762143662343,0.0084187408491947,0.0108202194580729,0.0129437304442655,0.0150330666231221,0.0172996944708418,0.0192968813947777,0.0215288451685623,0.023328133338807,0.0253685011204078,0.0275779006207343,0.029807196618208,0.0319262113058657,0.034011423368238,0.0362769485903814,0.0382837735378735,0.0403838547846541,0.042343714148641,0.0574588869954313,0.0712736190146823,0.0842997604941384,0.0967072554141737,0.1086853195601888,0.1239672047794585,0.1341722642632429,0.1444937491999829,0.1544537923062102,0.1637959749427831,0.1743886257969169,0.1859789478248615,0.195944106211268,0.2044456129972283,0.2129104074592485,0.2224810328763476,0.2314995811225914,0.2395780562216443,0.2474840409823031,0.2548160719200073,0.2598089725036179,0.2652956117659452,0.270069017769412,0.2752405718599829,0.279309381189021,0.2831314900229386,0.2867803570981393,0.2907228302367014,0.2942737321701312,0.2964789010902092,0.2939436316695353,0.2912013187718936,0.2883460602736644,0.2844886011333977,0.281539716680264,0.2785738290916867,0.2751018603329017,0.2751388638560731,0.2759419894681232,0.2761072988147224,0.276896306552408,0.2782864359288054,0.2780716241925031,0.2791210750339848,0.280436346199952,0.2816908727168801,0.2837388909395497,0.2881377191057038,0.2926419649417445,0.2975186988009023,0.3012375900992792,0.302906976744186,0.3069375432417133,0.3110541782834752,0.3138652350981118,0.3123543123543124,0.316518596596898,0.3205741626794258,0.3204851752021563,0.3253909158600149,0.0,2.3013598429931355,49.39822719446968,140.51341820001804,198.6515412988029,fqhc3_100Compliance_implementation_low_initial_treat_cost,1 -100000,95714,48363,462.7640679524417,4864,49.73149173579623,3867,39.91056689721462,1443,14.8045218045427,77.34534288058313,79.71471880696708,63.32656324425341,65.07475505889973,77.16389500362297,79.53435795791252,63.25867285929176,65.00911296888185,0.1814478769601635,180.3608490545656,0.0678903849616432,65.64209001787447,229.87976,161.73868955113574,240173.6005182105,168981.22484812647,537.48057,361.54478434169664,561059.1658482563,377245.1097453838,480.42648,235.46485395418807,498524.4060430032,243341.24150892856,2509.806,1171.2549713732965,2593644.743715653,1195154.4198061903,903.72489,412.5694879674282,932091.0316150198,418947.0199558205,1410.29272,594.892177130903,1448825.1457467035,600526.9679221872,0.37997,100000,0,1044908,10916.98184173684,0,0.0,0,0.0,46853,489.01937020707527,0,0.0,43424,450.3729861880185,1120286,0,40176,0,0,0,0,0,84,0.8671667676619931,0,0.0,0,0.0,0,0.0,0.04864,0.1280101060610048,0.2966694078947368,0.01443,0.3388332351208014,0.6611667648791986,23.436373115179716,4.048562839807939,0.3154900439617274,0.2679079389707783,0.2097232997155417,0.2068787173519524,11.306879001233908,6.156325919216168,15.348114690158516,11318.71303974839,44.177015137648766,12.584770657831015,13.882116862289973,9.03410933173805,8.676018285789723,0.5761572278251875,0.7963320463320464,0.690983606557377,0.5869297163995068,0.105,0.7579948141745895,0.9245283018867924,0.8753709198813057,0.7522935779816514,0.146067415730337,0.4985239852398524,0.7075163398692811,0.6206115515288788,0.5261382799325464,0.0932475884244373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.004591247238157,0.0065946998904265,0.0087040422506601,0.0108808395533771,0.0130015577434101,0.0154429528148986,0.0178843032573522,0.0200049066710281,0.0219876958982915,0.0238144055112459,0.0258471965495995,0.027997778280636,0.0298756554615788,0.0316202270381836,0.0336882365102336,0.0359465617232808,0.0379506444449056,0.0398939488459139,0.0417969238464424,0.055892058983249,0.0695014233087742,0.0835230790216467,0.0965322054584096,0.1087346473642004,0.1236970485835529,0.1337338910001911,0.1439891787110311,0.1536735239113011,0.1631845384928891,0.1754064624567679,0.1869437165688546,0.1975320732543335,0.2065311395010235,0.2152028366295203,0.2248811252369182,0.2334114496149983,0.2409948927936643,0.2487006060055834,0.2544174062410535,0.2606347297078485,0.2661228115284823,0.2710713694320251,0.2751200469410482,0.2799184208609512,0.2836137040959582,0.2869540208325518,0.2901497161868722,0.2945469603250601,0.2978260296018785,0.2951883464821346,0.2924061081304168,0.2898082886946715,0.2869587829931088,0.2847956516573601,0.2810339553380238,0.2779768010731476,0.2774353860489447,0.2775674436766778,0.2780133789946236,0.2776754655207694,0.2795190648046446,0.281126502766338,0.2809386120996441,0.2814333964117182,0.2821516526247569,0.2843990058743786,0.2883191237787043,0.2938155063510793,0.2986951921946632,0.3027924392114404,0.3080887766908594,0.3106324701195219,0.3152255922740304,0.3205617037105924,0.3243021346469622,0.3210717529518619,0.3261044176706827,0.3282401091405184,0.3391676390509529,0.0,1.900413414663332,50.692363286856185,141.20106329289922,197.3275059390012,fqhc3_100Compliance_implementation_low_initial_treat_cost,2 -100000,95666,48416,462.0554847072105,4802,49.11880919030795,3810,39.28250371082726,1400,14.32065728681036,77.2498286400838,79.64924500857913,63.26585613190741,65.03938123245196,77.0737263757582,79.47534426654755,63.20010703409863,64.97670290142771,0.1761022643256069,173.90074203157724,0.0657490978087835,62.67833102424447,228.86336,161.11786162458097,239231.43018418248,168416.84698484413,535.90901,361.6705300564599,559651.2867685489,377520.6563241519,486.58356,238.6999385106556,504997.2090397842,246798.86965701915,2475.70727,1146.3261505552396,2554274.0158468005,1164768.404716399,882.40647,395.10478776896025,908521.3660025503,399143.23559985776,1356.78444,568.3603153297445,1388559.8227165346,567524.6162373025,0.37961,100000,0,1040288,10874.15591746284,0,0.0,0,0.0,46776,488.3866786528129,0,0.0,43979,456.107708067652,1115041,0,40022,0,0,0,0,0,69,0.721259381598478,0,0.0,1,0.0104530345159199,0,0.0,0.04802,0.1264982482021021,0.2915451895043732,0.014,0.3707618667730355,0.6292381332269645,23.150953464743704,4.089940626538051,0.3115485564304462,0.2769028871391076,0.215748031496063,0.1958005249343832,11.19682628166899,6.046094183719833,14.668493142304746,11337.23407876264,43.47205984921949,13.001929596810983,13.450249314505111,9.00458168670974,8.015299251193653,0.5984251968503937,0.842654028436019,0.7127211457455771,0.5535279805352799,0.1206434316353887,0.782051282051282,0.9391891891891893,0.8966565349544073,0.7052023121387283,0.136986301369863,0.5246504782928624,0.7725040916530278,0.6421911421911422,0.5130970724191063,0.1166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655091373232,0.0051619053414057,0.0073994376833365,0.0093476935582198,0.0115348231632269,0.0136883058684537,0.0160908757188889,0.0184101700107213,0.0205665780323174,0.0226749009125265,0.0245350948273209,0.02653312788906,0.0286875546637855,0.0306943857515383,0.0327799459001837,0.0350305625368457,0.0369107696133798,0.0387262892324304,0.040877264167629,0.0430725278391792,0.0578315518916716,0.0716597028054412,0.0851664497712102,0.0980650048927282,0.1094003925624195,0.1249312111078186,0.1353056110096419,0.145137571663008,0.1548516842634489,0.1640043399327525,0.1757407047754688,0.1869551073519844,0.1972284007152514,0.2066151956483593,0.2149715269500728,0.2239737821474198,0.2327647954158832,0.2407628800866191,0.2476986971610627,0.2549704243955665,0.2603951431291064,0.2664803878981415,0.2711711390660822,0.2757215497241221,0.2791422622164314,0.2832631279878448,0.2862015776075043,0.2903118821353402,0.2939222935720308,0.2970379475792061,0.2939637501348581,0.2906135941050892,0.2875273214411619,0.2849082807707887,0.2824629472714028,0.2791487538821657,0.275619547351119,0.2766728426437554,0.2775408549691242,0.2769359818671806,0.2786378868150588,0.27900138148806,0.2793942558746736,0.2808165635539276,0.2818671022918368,0.2832459918020028,0.2830338191594736,0.2871836429372896,0.2900208623087622,0.2945623498838445,0.2995993337234952,0.30676227363132,0.311910084451068,0.3175569078205995,0.3203991130820399,0.3255138775984206,0.3265306122448979,0.3283911039871769,0.3340546388964024,0.3378277153558052,0.0,2.112280797220308,47.54018134141855,138.61070035941165,203.95320127298268,fqhc3_100Compliance_implementation_low_initial_treat_cost,3 -100000,95756,48356,462.00760265675257,4861,49.772338025815614,3817,39.39178745979364,1450,14.82935795145996,77.32698317968122,79.68789722183737,63.31555014592704,65.06152956570149,77.14283657071522,79.50323096901398,63.24721785013763,64.99465541566332,0.1841466089660031,184.66625282339064,0.0683322957894105,66.87415003817421,230.42514,162.0695904309475,240637.11934500188,169252.00513069416,537.95521,362.6040070778724,561294.0390158319,378171.9681240573,484.79377,237.5993215398083,502962.0598187059,245540.92718523915,2470.51314,1157.2793095372303,2550844.093320523,1179466.891639407,876.87163,395.9639383563714,906014.5682777058,403804.1997956997,1409.29298,592.1684031209662,1444006.8298592255,596178.3547179713,0.37926,100000,0,1047387,10938.050879318267,0,0.0,0,0.0,46909,489.3792556080037,0,0.0,43771,453.8410125736247,1115145,0,40043,0,0,0,0,0,97,1.012991353022265,0,0.0,0,0.0,0,0.0,0.04861,0.1281706481042029,0.2982925324007406,0.0145,0.3623358808543994,0.6376641191456006,23.142112565565885,4.049319620593675,0.3004977731202515,0.2847786219544144,0.2122085407388001,0.2025150641865339,11.387139860764862,6.2004663080796405,15.34605811825228,11270.37814499551,43.79798489585027,13.331123617565355,13.13223798244392,8.997929735023625,8.336693560817373,0.590778097982709,0.8150873965041399,0.7175239755884917,0.5604938271604938,0.1190168175937904,0.7625772285966461,0.9177489177489178,0.8584615384615385,0.7061855670103093,0.1578947368421052,0.5182563338301043,0.7392,0.6618004866180048,0.5146103896103896,0.109500805152979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020363710045083,0.0041268682444079,0.0064551488947079,0.0086049252275682,0.0108721078057462,0.0129932284506898,0.0150201900721948,0.0171796049609554,0.0189793853418231,0.0213408393039918,0.0236650609818591,0.0259813582984314,0.0278565848443731,0.0299229787058775,0.0321638935022333,0.034243319762756,0.036069239688587,0.0381914551546017,0.0401583886758332,0.0422105317985311,0.0573915948140879,0.071645257123729,0.0850508439039731,0.0980375668772401,0.1102655986509274,0.1256343031123139,0.134956573379853,0.1451003353382658,0.1545646923027595,0.1636580235253713,0.1759931883339441,0.1868556701030927,0.1970799743246624,0.2062021439509954,0.2143108685125676,0.2231136623042741,0.231016651961715,0.2391676425547248,0.2457694491766042,0.2526093880684227,0.2587019180682726,0.2648184787571561,0.2700781805259417,0.2757979584737732,0.2795740749744737,0.2836363636363636,0.2874760551389115,0.2899703475571732,0.2931701948598433,0.2954072082048037,0.292687189138325,0.2898138608420908,0.2870536969356199,0.2836283888095341,0.2811971642986385,0.2778398054540171,0.2738621997471555,0.2740298018667103,0.2735156316551665,0.2742491558556957,0.2748013282095288,0.2761091209699641,0.2767696617468746,0.2772843628269338,0.2779825737265415,0.2796440893408389,0.2810969914810517,0.2852995348546811,0.2899080651901379,0.2944392008809187,0.2972339850436976,0.303343656500971,0.3068894825122694,0.3103939962476548,0.313531047265987,0.3203453103126458,0.3208943949237045,0.3231817271087958,0.3216052776250687,0.3273146369573569,0.0,1.649907797744672,49.748570248859245,145.65078132346972,191.0462962027412,fqhc3_100Compliance_implementation_low_initial_treat_cost,4 -100000,95746,48674,464.75048565997537,4869,49.56865038748355,3874,39.74056357445742,1514,15.26956739707142,77.39144353273707,79.72924991233451,63.36142006586866,65.08681445029069,77.19811257835406,79.54493377034973,63.28771241313324,65.0199505447015,0.1933309543830148,184.3161419847803,0.0737076527354148,66.86390558918731,229.22108,161.32240843177794,239405.38508136108,168489.97183357837,543.81403,367.0121955666645,567253.5667286362,382596.41715232434,489.62111,240.27900610068983,507178.9213126397,247632.66020823448,2537.54831,1191.7403628040136,2604489.1274831323,1199271.371176526,910.6846,414.84646015998726,931003.5928393876,413317.0359517458,1467.36348,627.5822871557964,1482696.6139577632,612921.276539289,0.38072,100000,0,1041914,10882.062958243689,0,0.0,0,0.0,47251,492.7516554216364,0,0.0,44155,457.04259185762334,1119689,0,40167,0,0,0,0,0,134,1.389091972510601,0,0.0,0,0.0,0,0.0,0.04869,0.1278892624500945,0.3109468063257342,0.01514,0.3512185534591195,0.6487814465408805,23.20258051881171,4.008267728777748,0.2950438822922044,0.2839442436757873,0.216313887454827,0.2046979865771812,11.523515800023524,6.428074043590894,16.198495919241147,11397.225476946844,44.608991850944776,13.557586579608438,13.077414233141305,9.34215918942727,8.631831848767769,0.5849251419721219,0.8036363636363636,0.689413823272091,0.5847255369928401,0.1311475409836065,0.7567567567567568,0.907725321888412,0.8425655976676385,0.7428571428571429,0.1696969696969697,0.5092936802973977,0.7271293375394322,0.62375,0.5318471337579618,0.1210191082802547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679410335331,0.0045096628393647,0.0067774598729733,0.0089273925716781,0.0111844312716698,0.0132318215129061,0.0154065620542082,0.0177831738323096,0.0202882857113669,0.0221924367684374,0.0242213114754098,0.0263152495075508,0.0285552815454171,0.0307839565257665,0.032822711997196,0.0348118918248868,0.0367096860995829,0.0384882647610948,0.0407272273676988,0.0426168029584874,0.056795407098121,0.0714465092918131,0.0847889717684826,0.0976725597635749,0.1097391230993103,0.1256265995473677,0.1365632225356892,0.1464229476103332,0.1568554157677766,0.1659537975022779,0.1780074277409979,0.1895028281582903,0.2000260832708421,0.2095281792460044,0.2182247870294036,0.2271309081253319,0.2355917657679747,0.2439772229522558,0.2515130221909921,0.2587080611766321,0.2638208375704909,0.2696914106773541,0.2755375867409062,0.2798299706639526,0.2835902349103169,0.2873257802216727,0.2900187382885696,0.29277189593157,0.2950257955236038,0.2974456879526004,0.2949256777624105,0.2913328577699736,0.288470178591486,0.2853544802970553,0.2836622385277671,0.2801991959064328,0.275692617851349,0.2759403160506726,0.2760864394685875,0.2764305636980582,0.2759540916301203,0.2768839966130398,0.2770958583834335,0.2783836221315314,0.2782525204032645,0.2778933139232609,0.2786750538365635,0.2821050654310938,0.2866335594880044,0.2931511177818153,0.297955297637938,0.3007940709370037,0.3033193198217983,0.307109865980162,0.3109415705247488,0.3106060606060606,0.3104988830975428,0.3091701326995444,0.3192287091590787,0.3217358772914328,0.0,2.81730968860896,50.93715174068049,143.37057060352888,194.96448498630173,fqhc3_100Compliance_implementation_low_initial_treat_cost,5 -100000,95731,48433,462.9012545570401,4861,49.71221443419582,3825,39.412520500151466,1486,15.157054663588598,77.37264048070351,79.73229119665494,63.34029949113111,65.08218397798952,77.18087318000323,79.54530850268058,63.26751517454193,65.0139181081133,0.1917673007002776,186.98269397435752,0.0727843165891855,68.26586987621397,229.26816,161.4162855319404,239492.07675674543,168614.4357960748,540.95925,364.92212284855617,564540.6921477892,380653.4172301096,484.27664,237.6650080863431,502649.2149878305,245748.8246082027,2503.69206,1178.3515854171387,2582732.8660517493,1198290.5489518945,872.99037,399.4598183573756,902604.5481609928,407957.5146581303,1440.34658,617.4574573814676,1471493.9152416668,615281.012586028,0.38121,100000,0,1042128,10886.003488942975,0,0.0,0,0.0,47134,491.8051623820915,0,0.0,43769,454.0639918103854,1117462,0,40129,0,0,0,0,0,92,0.9505802718032822,0,0.0,0,0.0,0,0.0,0.04861,0.1275150179690984,0.3056984159637934,0.01486,0.3668837576475232,0.6331162423524768,23.024017919472072,4.040661973421015,0.316078431372549,0.2700653594771242,0.2104575163398692,0.2033986928104575,11.469932766727004,6.296361212446421,15.902856720262555,11376.27985421755,43.762872672573245,12.526341393294055,13.856804721608851,8.85561856231016,8.524107995360175,0.5968627450980392,0.8286544046466602,0.7080231596360629,0.6012422360248447,0.1118251928020565,0.7731520815632965,0.9403669724770642,0.8847184986595175,0.7386934673366834,0.136094674556213,0.5185045317220544,0.7470686767169179,0.6291866028708134,0.5561056105610561,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683544303797,0.0044997111671885,0.0065938302038,0.0088458726031849,0.0107576081098943,0.0127247185292261,0.0149230910369713,0.0168415465643245,0.0191969579261561,0.0214456080009008,0.0235917731252691,0.0256673511293634,0.027722079978612,0.0297740427197264,0.0318180880259166,0.0341071170184178,0.0362885274415811,0.0380973125473234,0.0400665176947461,0.0421731296024331,0.0570527612742897,0.0710279591495061,0.0843425288079435,0.097241053129434,0.1093483165018658,0.1250462527355189,0.1364629515708194,0.1470090563708536,0.1570606264483815,0.1651921200227348,0.1767949256399487,0.1882464947204431,0.1994062183941796,0.2079728769070924,0.2171368217224838,0.2265551431894976,0.2347905668590051,0.2425757064054936,0.2490431464298288,0.2561418794208348,0.2616796472671303,0.2678934930625424,0.2726282127205969,0.2771153707746563,0.2815648432847611,0.2844955123779465,0.2880276314307525,0.2914992625743782,0.2955186421382183,0.2985963756177924,0.2952651107765111,0.2930601145431322,0.2897674549391221,0.2875236213089451,0.2855320348311106,0.2809935040122277,0.2775910231523129,0.2776022137442077,0.2776171689000748,0.2775421096537158,0.2780858110371004,0.2799992155786088,0.2815479412132062,0.2808874098724348,0.2823411562678878,0.2847440995713474,0.2870798556282427,0.2913317401694547,0.2955922578858073,0.2994028336130518,0.303575434031672,0.309326479227864,0.3135044225738134,0.3182466411468888,0.3211975605248567,0.3203125,0.3269607105223543,0.3320047827819848,0.3340528872099298,0.3217358772914328,0.0,2.128518781487264,51.30446070137223,133.86930340263885,197.916834499504,fqhc3_100Compliance_implementation_low_initial_treat_cost,6 -100000,95746,48075,458.818122950306,4695,47.94978380297872,3754,38.66480061830259,1371,13.984918430012742,77.33281654085012,79.7005582646102,63.319784280511655,65.07172581307023,77.15869798405632,79.52877302589764,63.2528138130847,65.00804254476103,0.1741185567938004,171.7852387125589,0.0669704674269553,63.68326830920523,231.63734,162.9415640958387,241928.9996448938,170181.0666720685,538.7535,362.4696821855837,562189.84605101,378073.7286002379,478.19602,234.38384123562423,495695.2666429929,241933.5371744549,2433.99231,1149.061975777191,2508105.1741064903,1166085.3150807251,849.07299,388.2107937985508,872284.7847429657,390946.4560384254,1332.88614,578.6165340785539,1360547.2813485682,575936.7833177223,0.37967,100000,0,1052897,10996.772711131536,0,0.0,0,0.0,46992,490.25546759133545,0,0.0,43251,448.2067135963905,1112164,0,39940,0,0,0,0,0,96,0.981764251248094,0,0.0,1,0.0104443005451924,0,0.0,0.04695,0.1236600205441567,0.2920127795527156,0.01371,0.3584214808787632,0.6415785191212368,23.12828290736016,4.04113550412111,0.3079381992541289,0.2783697389451252,0.2152370804475226,0.1984549813532232,11.081558575282864,5.856197147615935,14.815881643338615,11303.73498898942,43.1523668279915,13.033975174104125,13.111800275999189,8.865578182851168,8.14101319503702,0.566595631326585,0.8038277511961722,0.6920415224913494,0.5074257425742574,0.1033557046979865,0.7424111014744146,0.920335429769392,0.8432601880877743,0.671957671957672,0.125,0.4886582083813918,0.7059859154929577,0.6344086021505376,0.4571890145395799,0.097053726169844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582952507371,0.004381649812867,0.0064372017463701,0.0083451072869761,0.0106315875147519,0.0129563233376792,0.0150113707053916,0.0170801429300663,0.0193861066235864,0.021359601069004,0.0235497959769525,0.0255162287321976,0.0275455751256978,0.0298043254376931,0.0320151047738926,0.0340785760798784,0.0362365368682684,0.0384284098338539,0.0405319690967131,0.042431061245325,0.0568756002839604,0.0711767229203067,0.0848651992911296,0.0979594411328728,0.1101589510076734,0.126045532891328,0.1371026758726017,0.1468547099521021,0.1564606231507888,0.1649864870661919,0.1762831210499682,0.1869401531870699,0.1971098957257336,0.2067231484012025,0.215050925009349,0.2239483562356745,0.2326292415670784,0.2411887828592006,0.2488679566475628,0.2560136473443779,0.2623252476622535,0.266998244587478,0.2722826794870276,0.2767184035476718,0.2802317953203586,0.2845095428317798,0.2882658489267163,0.2911987995472869,0.2938595355820756,0.2960901224145209,0.2927603697175993,0.2890370472197401,0.2861264354875028,0.2832837888539352,0.2808510006532454,0.2777845702408607,0.2741754685107122,0.2728923942924466,0.2729995065761489,0.2747557292591934,0.276040113331345,0.2764760274646363,0.2769621623872889,0.2760297546352837,0.2780180137133574,0.2799792799792799,0.2801812004530011,0.2843495363866254,0.2880925016543029,0.2913896865043464,0.292267483777938,0.2978030064122779,0.3009509602834234,0.3066666666666666,0.3087068806493266,0.3106773556407575,0.3168361244019139,0.3239659608153572,0.3267727150175249,0.3388182498130142,0.0,2.1467289729475563,49.989996059577926,138.5884158748516,188.31378181981287,fqhc3_100Compliance_implementation_low_initial_treat_cost,7 -100000,95773,48447,461.3617616656052,4765,48.58363004186984,3775,38.758313929813205,1450,14.690988065529952,77.34910350822409,79.67844457656653,63.34642956891118,65.06693317027145,77.16256737960391,79.49750736556359,63.27612930571857,65.00144889079832,0.1865361286201761,180.93721100294147,0.0703002631926068,65.4842794731394,230.1926,162.06183619804344,240352.29135560128,169214.53457450788,538.03473,363.05993608136737,561134.275839746,378437.230440832,487.12799,239.53268022850932,504329.2577239932,246728.99240662265,2426.90236,1142.6805545463665,2495083.489083562,1154197.8688075657,852.30264,395.1392258821958,872831.862842346,395518.3470546811,1400.95164,594.2852239209648,1421571.9043989433,586384.7423723442,0.38088,100000,0,1046330,10925.10415252733,0,0.0,0,0.0,46863,488.6345838597517,0,0.0,43945,454.5644388293152,1116376,0,40061,0,0,0,0,0,104,1.085901036826663,0,0.0,0,0.0,0,0.0,0.04765,0.1251050199537912,0.304302203567681,0.0145,0.3595890410958904,0.6404109589041096,23.27847330659256,4.020056131305905,0.3086092715231788,0.2916556291390728,0.2034437086092715,0.1962913907284768,11.620781424808673,6.604414723066619,15.342077980686469,11348.71423775779,43.26190279100859,13.4491508266507,13.183887364113929,8.598638994039732,8.030225606204228,0.5994701986754967,0.8138056312443234,0.6935622317596567,0.61328125,0.1187584345479082,0.768760907504363,0.9372384937238494,0.8426229508196721,0.7241379310344828,0.18125,0.5256751616584252,0.7191011235955056,0.6406976744186047,0.5734513274336284,0.1015490533562822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.0045611652256763,0.0069290156334013,0.0092533341459203,0.0115203156139423,0.0135795431410073,0.0158176889051957,0.0181558401796193,0.0203537381601937,0.0227026252787951,0.0247717982604419,0.0270700146740413,0.0289910180256099,0.0310431784262261,0.0331996411964243,0.0351598409337396,0.0373141278365877,0.0391750225531164,0.0412622872462021,0.0436321982713735,0.0582937646751891,0.0727209973643475,0.0855980540177822,0.0988292662420917,0.1107340822391299,0.126087094353978,0.1369292406834273,0.1466897769081899,0.1561642958520526,0.1651989458121746,0.1762306549861167,0.1863538062283737,0.1975343538006609,0.2062148745872422,0.2149724972497249,0.2242818860319358,0.2326017339686011,0.2406920275192229,0.2474026857816895,0.2538908724709329,0.2593855866063893,0.2646965958392291,0.2700848229601675,0.2747263276403094,0.2802607302388813,0.2836883801732316,0.2871866713363686,0.2911373087634962,0.2947778583264291,0.296780405449965,0.2933595221438949,0.2909478314660801,0.288566166650265,0.2858522383327088,0.2833091479847188,0.2804295760682196,0.2772311573636077,0.2768956551600085,0.2770031288260101,0.2777866709353823,0.2776772556846798,0.2795523064493881,0.2798940253671562,0.2792678304684191,0.2809657522739818,0.2815435455751867,0.2827825690945834,0.2878082536487166,0.2927282936758615,0.2968197879858657,0.2997908330301927,0.3048264182895851,0.3076971648670834,0.3104470802919708,0.3131294117647059,0.3145036348468597,0.3178044280442804,0.3221816707218167,0.3228736581337737,0.3326817826426896,0.0,2.5790335321549342,49.153475407873735,136.31645735983346,194.747041678981,fqhc3_100Compliance_implementation_low_initial_treat_cost,8 -100000,95672,48073,458.6085793126516,4822,49.053014466092485,3855,39.76084956936199,1457,14.90509239903002,77.31532774038504,79.70644410659581,63.31028192710126,65.07601594229327,77.12551063654601,79.52040985584497,63.23863137470339,65.00803620409822,0.189817103839033,186.03425075083635,0.0716505523978696,67.97973819504932,231.06072,162.44763960463914,241513.42085458653,169796.4290541006,537.23881,362.4853641816549,561040.6179446442,378381.6938933594,484.12894,237.62034242662503,503017.2673300443,245947.03155543047,2488.59579,1179.6550909535797,2569732.1055272184,1201577.6830771598,884.63814,409.51760028452753,911293.4714441006,414679.47809654486,1415.73668,607.5145894649529,1450160.903921733,608173.9590052629,0.37825,100000,0,1050276,10977.88276611757,0,0.0,0,0.0,46826,488.91002592189983,0,0.0,43789,454.6262229283385,1111465,0,39943,0,0,0,0,0,88,0.9198093486077432,0,0.0,0,0.0,0,0.0,0.04822,0.1274818241903502,0.3021567814184985,0.01457,0.3545036948272418,0.6454963051727581,23.018187287076877,4.063005797369203,0.3089494163424124,0.2830090791180285,0.2077821011673152,0.2002594033722438,11.379236967040637,6.246309837450154,15.69669151568837,11270.439026551914,44.281274055374006,13.326951429078044,13.39458184406219,9.074340527785148,8.485400254448626,0.590402075226978,0.7910174152153987,0.6985726280436608,0.6017478152309613,0.1282383419689119,0.7749576988155669,0.9195652173913044,0.9088145896656536,0.7727272727272727,0.1387283236994219,0.508791619902731,0.6973058637083994,0.6183294663573086,0.5370051635111877,0.1252086811352253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0046432409416249,0.0068501491810266,0.0090016865462377,0.0111796061197916,0.0137000254647313,0.0157684305005915,0.0176701904907818,0.0199519353684102,0.0220472279681323,0.0243472196582774,0.0264609505808877,0.028557614163589,0.0306027820710973,0.0326892508412295,0.0346978033342985,0.0370401069241688,0.0390750677197388,0.0410347625288647,0.0430233042898236,0.0568046471780512,0.0708302795518793,0.0843609953715851,0.0964822745783043,0.1083753720159571,0.1242524002582857,0.1351164815562021,0.1447364216401614,0.154482493266641,0.1631069419997424,0.1752152872832307,0.1869694213444213,0.197546453024481,0.2059026295919372,0.2144571944585159,0.2233484524192385,0.2323111627283691,0.2398208881338388,0.2470577553822932,0.252729626616867,0.2580394971407403,0.264518318297235,0.2698758388864559,0.2739058995670372,0.2768533812670035,0.2815718157181572,0.2852853604223484,0.2885713195936582,0.2924971222370242,0.2961258505195421,0.2931656128077492,0.2894255497641412,0.2863854387914422,0.284032982425739,0.2808610381711098,0.2778813533420948,0.2750134183689577,0.2750314578464857,0.2754103938079442,0.2762954404052973,0.2757637853949329,0.2758234195261036,0.2766321589580898,0.2781625064018348,0.2777445229258949,0.2788262131895479,0.2807660614326712,0.2848976002010303,0.2890750999228665,0.2916765849400936,0.2961312906305405,0.3010422728956139,0.3073345484256174,0.3077569094518247,0.3133006782215524,0.3161564826852618,0.3184761331124831,0.3245216018938646,0.3229931972789115,0.3327074727750657,0.0,2.128897772027042,51.42122792436937,138.23422282604832,198.65379096648792,fqhc3_100Compliance_implementation_low_initial_treat_cost,9 -100000,95628,48751,465.7736227883047,4807,49.03375580373949,3822,39.39222821767683,1418,14.525034508721294,77.3146043072854,79.7344776584436,63.296484254502126,65.08334072027608,77.12579903374679,79.54708169193412,63.224287343168754,65.01376685690524,0.1888052735386196,187.3959665094702,0.0721969113333713,69.5738633708487,230.63942,162.26663388440744,241183.9837704438,169685.27406659917,539.965,364.6104474790127,564089.9736478856,380718.41665517713,489.26329,239.8232401162515,507774.8149077677,247857.50567729565,2471.3381,1170.2610345153432,2550728.3327059024,1190167.5497922602,871.51685,397.1287862359353,897796.4090015476,401723.8645734773,1373.73492,598.1314510676716,1408825.4276990003,602155.4768896612,0.3816,100000,0,1048361,10962.90835320199,0,0.0,0,0.0,47046,491.3937340527879,0,0.0,44146,457.7738737608232,1110108,0,39834,0,0,0,0,0,74,0.773831932070105,0,0.0,2,0.0209143765424352,0,0.0,0.04807,0.1259696016771488,0.2949864780528396,0.01418,0.3683473389355742,0.6316526610644257,22.96658950585628,4.006377386864412,0.3069073783359498,0.2893772893772894,0.205651491365777,0.1980638409209837,11.152778162326516,6.09663710174207,15.496616747838877,11418.193087837471,44.198625366699694,13.654659231071916,13.299305389392575,8.864066466839027,8.380594279396187,0.5923600209314495,0.7884267631103075,0.7084398976982097,0.6094147582697201,0.1083223249669749,0.7415824915824916,0.8789808917197452,0.8632218844984803,0.7630331753554502,0.1242937853107344,0.5250569476082004,0.721259842519685,0.6481042654028436,0.5530434782608695,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024824455635151,0.0049588788269057,0.0072785966622,0.0093684905756236,0.0118204752604166,0.013933591362803,0.0161769055803184,0.0185310041883747,0.02064006709556,0.022816180235535,0.0248617934542918,0.0269237485747157,0.0290523023743878,0.0311063943783872,0.0328870629767643,0.0349074064500118,0.036969879081141,0.0391208197929752,0.0410475714820826,0.0431372549019607,0.0579479889622878,0.0712849091785213,0.0843536700619552,0.0970831885980147,0.1096380582442288,0.1251138264755087,0.1359455325657475,0.1465335350908974,0.1572360680286661,0.1657876362855148,0.1783140588590662,0.1895441836270238,0.2003595162871772,0.2093553157692939,0.2180080682494544,0.2275108201087559,0.2366547843869079,0.2440433945047146,0.2513602853475401,0.2574586648932511,0.2644304779101126,0.2696387430268867,0.2740504082357117,0.2777564717162032,0.2818038358824957,0.284987684729064,0.2885610701337667,0.2917519092214443,0.2939784584750255,0.2977461447212337,0.294944575979337,0.2912596012476469,0.2884355465450245,0.2853180393233267,0.2837761531145982,0.2815409113179813,0.2783343620910688,0.2781964763640543,0.2775061542669584,0.2775875597403524,0.2777383840268707,0.2783675071127244,0.2792418322387563,0.2798224195338513,0.2804114383675802,0.2820393974507532,0.2837757946003772,0.2882600880183474,0.2914271864829305,0.2949079514296905,0.2997400967915397,0.3048965697826656,0.3101162936101038,0.3154726068633353,0.3230113109586501,0.3253481236724097,0.328424605000767,0.3248035462421922,0.3337837837837837,0.3368943151468905,0.0,2.2370508576866337,51.76537354503287,142.90025382680156,188.84044670313432,fqhc3_100Compliance_implementation_low_initial_treat_cost,10 -100000,95644,48195,460.69800510225417,4876,49.71561206139433,3863,39.79340052695412,1479,15.07674292166785,77.29129418892526,79.69297890814572,63.29829466637945,65.07073771159874,77.0951002237688,79.50046945660466,63.22444512305714,65.00112452987715,0.1961939651564677,192.5094515410564,0.0738495433223036,69.61318172159281,230.07974,161.79272080093773,240558.23679478065,169161.18735782636,535.9913,361.5370235525465,559828.0916732885,377429.5822865203,482.10632,236.65596660036744,500825.6032788256,244916.22007823628,2506.84178,1183.2290457439096,2584330.820542847,1200553.0609783651,908.75664,417.3747809866967,936400.1505583205,422809.6509714122,1438.24894,616.6004723295948,1468143.239513195,613374.8132353801,0.37989,100000,0,1045817,10934.465308853663,0,0.0,0,0.0,46710,487.7566810254695,0,0.0,43503,451.54949604784406,1118041,0,40086,0,0,0,0,0,107,1.1187319643678642,0,0.0,2,0.0209108778386516,0,0.0,0.04876,0.1283529442733423,0.3033223954060705,0.01479,0.3797668444971349,0.6202331555028651,23.06454707192266,4.124330043457144,0.3119337302614548,0.2793165933212529,0.1995858141340926,0.2091638622831995,11.692609756309404,6.235692111622241,15.849458409965852,11316.002628031842,44.52243638178965,13.164882282932194,13.733894538521753,8.712997738575417,8.910661821760293,0.5878850634222107,0.8081556997219648,0.7178423236514523,0.569390402075227,0.1175742574257425,0.7555746140651801,0.926829268292683,0.8430769230769231,0.7522935779816514,0.1453488372093023,0.5153874675565443,0.7229299363057324,0.6715909090909091,0.4972875226039783,0.110062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803976783525,0.0044002838892831,0.0066481938227621,0.008992988517427,0.0112525308020226,0.0134236390487345,0.0156106613373575,0.0176751689913615,0.0198961230165221,0.0221571478303606,0.0243149561079662,0.0264363330115235,0.0285270456556179,0.0305009995259979,0.032724945286369,0.034493101379724,0.0365518742292187,0.0383353407816588,0.040455751521773,0.0421210667889984,0.0569141376139118,0.0705284659299219,0.0836360963521431,0.0963317720119993,0.1085639499292846,0.1235141571844403,0.1346051765505234,0.1452904957709269,0.1557715336583696,0.1649327363889157,0.1765232298618823,0.1876928740809719,0.1983803905348629,0.206728558603928,0.2157813533171699,0.225525968480708,0.2337656534512997,0.2424835939170859,0.2495686523792226,0.2556594262670699,0.2604735672622905,0.2660763994479403,0.2711936640977377,0.2751969117523647,0.2799285288862418,0.2838804350506819,0.2869216803355662,0.2901271493846173,0.2938685110351259,0.2964462319509461,0.2931916038751345,0.2897274690806036,0.2866903333051587,0.2841025641025641,0.2818089974445831,0.2792986113239937,0.2761535417491096,0.2767648894582963,0.2763789891116694,0.2764422218253259,0.2769931065487787,0.277163922436797,0.2780825933992293,0.2797240270614241,0.2794195124287562,0.279168720649664,0.2801119656186383,0.2855358481139146,0.2911073825503356,0.2938034188034188,0.2963819368879216,0.2995046896406365,0.3030531473803242,0.3043378821376839,0.3105689525244913,0.3123062246601478,0.3194937490353449,0.3213404605263157,0.3260448380846941,0.3243448537789594,0.0,2.314228869611757,50.53296439591229,145.38022010246024,195.10612095176668,fqhc3_100Compliance_implementation_low_initial_treat_cost,11 -100000,95628,48321,461.9776634458527,4830,49.148784874722885,3819,39.31902789977831,1472,14.94332203957,77.27514686010801,79.68580830495321,63.27600815666828,65.05603135918379,77.08248453437592,79.49940107840966,63.20131778833733,64.98707075344696,0.1926623257320869,186.40722654355105,0.0746903683309554,68.96060573683371,228.90494,161.00587476507536,239370.20537917764,168366.87451904817,535.88903,361.4784205047434,559755.0194503701,377371.7345472082,480.8312,236.16904813878736,498894.17325469526,243965.55696042025,2502.06511,1176.951666220137,2578218.074204208,1192596.6454345644,907.37682,413.41488972885526,932295.8756849458,415804.9176259027,1435.18544,622.4860538146975,1458872.1085874431,614534.7654982861,0.38071,100000,0,1040477,10880.463880871712,0,0.0,0,0.0,46763,488.3611494541348,0,0.0,43432,450.3074413351738,1119216,0,40160,0,0,0,0,0,94,0.9829756974944576,0,0.0,0,0.0,0,0.0,0.0483,0.1268682199049145,0.3047619047619048,0.01472,0.3622843545508626,0.6377156454491374,23.68528356536732,4.015442240950141,0.3045299816705944,0.2725844461901021,0.2152395915161037,0.2076459806231997,11.231991949896695,6.061398133763356,15.817835611084387,11356.615880591462,43.53079699045743,12.600338056889704,13.150972164767946,9.048956666727603,8.730530102072171,0.5826132495417649,0.8117195004803074,0.705073086844368,0.5754257907542579,0.1097099621689785,0.7389418907198613,0.930715935334873,0.8840125391849529,0.7055837563451777,0.1372549019607843,0.5150037509377344,0.7269736842105263,0.6374407582938388,0.5344,0.100169779286927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047738260543466,0.0069199939120288,0.0092229558151345,0.0114830297297572,0.0134736027374938,0.0156524044540522,0.0179069126399934,0.0198951059675094,0.0222395150720838,0.0242789151930414,0.0265047616112429,0.0285302741910592,0.0307896879799614,0.0327664012722409,0.0349675670642761,0.0367990048719809,0.0386472928199748,0.0404312668463611,0.0423532601893955,0.0565171945228389,0.0704105799258063,0.0838682565530283,0.0976884337400172,0.1102648342013247,0.1265755746213324,0.1370056647288263,0.1469283749493571,0.1561088394596561,0.1653570392028292,0.1769145226244588,0.1874261173229798,0.1979899059267253,0.2076826914641635,0.2158511553995895,0.2244993168716051,0.2326107150451589,0.2405746075809381,0.247874435174541,0.2544761292249032,0.2604292343387471,0.2652766865626136,0.2699525504151838,0.2748015515605673,0.2791806548922298,0.2826934465061192,0.285886171932771,0.2899069252218643,0.2937468383983813,0.2967558638916419,0.2946623534169025,0.2917183067559007,0.2890347664393982,0.2866097606770946,0.2840413215780568,0.2811238223418573,0.2783962606786994,0.2787712058688675,0.2792500297472335,0.2797413946218607,0.2797529067054849,0.2807724832346752,0.282083359396176,0.2826676747909624,0.2848261680455263,0.2847858733364404,0.2862719583604424,0.290817602200275,0.2943497695208828,0.2995539062808416,0.3038883620105677,0.3081956831495065,0.3121531458502213,0.3192639879834772,0.319608756404285,0.3272384098147929,0.3345471096950387,0.3417186556651237,0.3364307187756217,0.3431297709923664,0.0,2.381724728662688,49.915849924323005,133.94952210242366,199.47072838275977,fqhc3_100Compliance_implementation_low_initial_treat_cost,12 -100000,95685,48425,461.9010294194492,4840,49.380780686628,3872,39.88085906881956,1455,14.819459685426136,77.28391542799022,79.68016565493755,63.28504443165552,65.05908252583859,77.0957211334268,79.49579357176421,63.214329312644296,64.99203301185182,0.1881942945634165,184.37208317334355,0.0707151190112256,67.04951398677395,229.8065,161.60908823226472,240169.8280817265,168896.99350187043,538.6205,362.8324422677466,562351.2044730104,378635.8282570378,479.90017,235.75219709826516,497872.5296545958,243570.9264584353,2508.93565,1170.0418024075582,2586349.929456027,1187268.884465717,910.95928,416.2589896735302,937016.4602602288,420061.0383889485,1419.46008,603.5922814863982,1448119.266342687,601626.1551373649,0.38249,100000,0,1044575,10916.810367351203,0,0.0,0,0.0,46893,489.48110989183255,0,0.0,43438,450.2377593144171,1117044,0,40141,0,0,0,0,0,88,0.9196843810419606,0,0.0,1,0.0104509588754768,0,0.0,0.0484,0.1265392559282595,0.3006198347107438,0.01455,0.3666468372000793,0.6333531627999207,23.5442899547124,4.097848751350275,0.3081095041322314,0.277892561983471,0.2084194214876033,0.2055785123966942,11.482491328358488,6.268218057408343,15.528050883737254,11401.426552515348,44.24447069850407,13.14947519740933,13.49234481760684,8.930464777482317,8.672185906005572,0.5800619834710744,0.7983271375464684,0.6906957250628667,0.5824039653035935,0.1168341708542713,0.7554776511831727,0.91415313225058,0.8786127167630058,0.7258064516129032,0.1629213483146067,0.5067740754302453,0.7209302325581395,0.6139315230224321,0.5394524959742351,0.1035598705501618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104517541192,0.0045338364167478,0.007025594688163,0.009461285962541,0.0116500310328337,0.01388436150273,0.0158192666632668,0.0181701188871185,0.0203733060598312,0.0226085353111106,0.024683505345015,0.0271464386996013,0.0296868729484158,0.0318139189760184,0.0337441678021388,0.0357301674302201,0.0378306686423027,0.0397139268624337,0.0415756516673947,0.0433137747391897,0.0587270581107478,0.0733706747631262,0.0857103876749994,0.0978997432551875,0.1101940876613439,0.1251667125346656,0.1356324524054745,0.1449976039614504,0.154395340137872,0.1637530450833306,0.1755132833971008,0.1871039719246558,0.1990244752199285,0.2084423761292088,0.2169533738139581,0.226163784491753,0.2341709890896083,0.2417504395257629,0.2493067866721214,0.256067627087539,0.2624617453398868,0.267994466847979,0.2741904874866563,0.2782406184725456,0.2820238254584393,0.285305437678871,0.288405179971445,0.2912807856706697,0.2946978718997566,0.2979873202493772,0.2950808643470305,0.2917353781882146,0.2885334382818429,0.2866879935442965,0.2839059137790309,0.2807242919190065,0.2781201605511836,0.2776623419119451,0.2774633481077395,0.2786724623223002,0.2791698635776709,0.2786120771419538,0.28040951621701,0.2808219178082192,0.2826553495213523,0.2829322975051487,0.285024566186703,0.2909450301204819,0.2954886431038693,0.2996656833824975,0.3026553468208092,0.305993690851735,0.3105844397567937,0.3130441253069425,0.3175874769797421,0.3224565901410092,0.3256305694003927,0.3295295295295295,0.3348952590959206,0.3389185072353389,0.0,2.3214846176414228,49.56378430502512,140.17277274125374,202.76314884797668,fqhc3_100Compliance_implementation_low_initial_treat_cost,13 -100000,95658,48435,462.0523113592172,4919,50.28330092621631,3921,40.42526500658596,1544,15.6913169834201,77.35161970545354,79.75768375573797,63.31721993396855,65.09448731684982,77.1579955453288,79.57026054631928,63.244214406823694,65.0268098894289,0.1936241601247417,187.4232094186965,0.0730055271448577,67.67742742091798,229.58914,161.4301492425337,240009.93121328065,168757.16494651118,538.53566,363.1849128216319,562407.9533337515,379098.96169584594,488.55531,239.83743912877551,508257.6365803173,248703.7197793185,2556.13424,1202.0083358617362,2633023.6571954256,1217507.0431680258,911.35978,415.1532875307798,935125.3423655104,416434.7729019624,1498.32044,631.7749402150606,1523272.8052018648,623420.0397558018,0.37872,100000,0,1043587,10909.542327876392,0,0.0,0,0.0,46944,490.1628718978026,0,0.0,44078,458.2261807689896,1119059,0,40127,0,0,0,0,0,97,1.0140291454975014,0,0.0,0,0.0,0,0.0,0.04919,0.1298848753696662,0.313884935962594,0.01544,0.351934668481431,0.6480653315185689,23.164098759847768,4.083180440971422,0.3170109665901556,0.2665136444784494,0.2093853608773272,0.2070900280540678,11.419831450681691,6.327115876109195,16.284098013734216,11332.33911457089,44.9752957814155,12.858043192703017,14.190484068993644,9.03222711583523,8.894541403883617,0.5934710533027289,0.815311004784689,0.7240547063555913,0.5688185140073082,0.1330049261083744,0.7796754910333049,0.9162995594713657,0.9077809798270894,0.7587939698492462,0.1812865497076023,0.5141818181818182,0.7377326565143824,0.6529017857142857,0.5080385852090032,0.1201248049921996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188225043312,0.0041373016275414,0.0064343272372988,0.0086564252621311,0.0107416411518782,0.0131798737013648,0.015795645745169,0.0179820485852283,0.0200920245398773,0.022380415855782,0.0244475449863553,0.0266765316398462,0.0288560490676326,0.0311865315422126,0.0333529587968557,0.0354245985763946,0.0372504715905557,0.0393667272255385,0.0412942828902876,0.0434619395203336,0.0581522931753346,0.0718825586630786,0.0853049228508449,0.0978091590201195,0.1097836411609498,0.1247089207841144,0.1357010139618835,0.1459146042506022,0.1556344884400175,0.1642861745312399,0.1756459474615019,0.187106628679139,0.1975770901135262,0.2064096670388126,0.2152272301813657,0.2246350304279871,0.2337340244883367,0.2412030887683198,0.248388048858012,0.255075517284813,0.2596310645926097,0.2650182871966253,0.2696459183070284,0.2740788623141564,0.2780844018001189,0.2836158748123908,0.2875099860195726,0.2919135653652409,0.2953337118670314,0.2980499927680109,0.2948814351317238,0.2921610314793224,0.2902587005982978,0.2872099889108112,0.2840596024528246,0.2802990996490157,0.2758359740812562,0.2761987309478642,0.276543966236109,0.2760399068129679,0.2759058410647949,0.2762518923382419,0.2765114387604012,0.2780456373453018,0.2780521556557631,0.279136430545154,0.280225988700565,0.2847739963190567,0.2891578837524783,0.2936688950058985,0.2979394923125479,0.3028007106280698,0.3046472668610783,0.3062175776257424,0.3082420642286987,0.3143228244184674,0.3175985334555454,0.3161264505802321,0.318010752688172,0.3212956068503351,0.0,2.148657703343949,50.95999917275828,144.67772083089156,201.4589586837758,fqhc3_100Compliance_implementation_low_initial_treat_cost,14 -100000,95805,48705,465.0592349042325,4864,49.66337873806168,3893,40.20666979802724,1515,15.479359114868744,77.3507064425629,79.68052988289077,63.34838135415546,65.07065125585007,77.14833285763433,79.47954963611215,63.27189150394793,64.99704614001357,0.2023735849285657,200.98024677861304,0.0764898502075297,73.60511583650009,229.98558,161.86562277378664,240055.9260998904,168953.2099303655,539.75924,363.8524619998995,562967.1729032932,379357.98966640537,485.24533,237.71462205096185,504400.657585721,246442.96943498836,2533.27698,1185.465655967051,2615898.48129012,1209070.7332258767,906.57043,409.8296139663453,932930.0871562028,414438.5511887111,1478.72306,636.4753461312539,1511776.963624028,636292.5690446966,0.3832,100000,0,1045389,10911.633004540472,0,0.0,0,0.0,46964,489.76566985021657,0,0.0,43924,456.3749282396535,1118608,0,40165,0,0,0,0,0,88,0.9185324356766348,0,0.0,1,0.0104378685872344,0,0.0,0.04864,0.1269311064718163,0.3114720394736842,0.01515,0.3600867678958785,0.6399132321041214,23.48880181532461,4.02394417069432,0.3133829951194452,0.2753660416131518,0.1954790649884407,0.2157718982789622,11.246558634952493,6.079645462312948,16.35827094020434,11418.860149142516,44.65723792284655,13.142956744357855,13.78041014282032,8.367669927223677,9.3662011084447,0.5789879270485486,0.8152985074626866,0.6942622950819672,0.5755584756898817,0.1130952380952381,0.741424802110818,0.92018779342723,0.8610271903323263,0.7237569060773481,0.1758793969849246,0.5119738751814223,0.7461300309597523,0.6321709786276716,0.5293103448275862,0.093603744149766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790810745107,0.0045721816707218,0.0070524724243254,0.0094466114090687,0.0114893443956401,0.0137334948639376,0.0159492071256777,0.018113908420161,0.0202438251734674,0.0224314367580843,0.0246326618439658,0.026596345054742,0.0285391295411335,0.0303161318880413,0.032285673039246,0.0342871900826446,0.0364215797860232,0.038573975783712,0.0403343891167765,0.0426191963356235,0.0570963500907781,0.0714450020911752,0.0848909249106328,0.0981272069951235,0.1104014502376661,0.1256672903519064,0.1365125823179461,0.1466140207107204,0.155997095940723,0.1655430390465063,0.1774716107852107,0.1894880191952271,0.1999478453614968,0.2090302282137277,0.2180628847845206,0.2267146017699115,0.2347736946493437,0.2430862893986026,0.2507308450608471,0.2567440796247568,0.2629822515271539,0.2693286631640397,0.2744727135155585,0.2792512447338184,0.2826611680514282,0.2867269706479601,0.2897583889263673,0.293068174598132,0.2962306617685104,0.2988384649827482,0.2956175941102184,0.2927020233238554,0.2894836776888563,0.2860855628871338,0.2839738833654845,0.2811864225291787,0.2777988674828383,0.2769122161842688,0.2767817505037052,0.2773485591935052,0.2784643948913186,0.2791437719887734,0.2798221886729152,0.2800349791470469,0.2825219856792734,0.2846867507557594,0.2859342915811088,0.2899823699785921,0.2950940482874789,0.2996758124456393,0.3042449610992311,0.3078316462440064,0.3139916656143452,0.3161236040997399,0.3211939177773606,0.3244460244104751,0.3298557839828168,0.3364083640836408,0.3422445001392369,0.3471741637831603,0.0,1.6957721891541295,49.9062759355667,148.69758152390708,198.1151127620132,fqhc3_100Compliance_implementation_low_initial_treat_cost,15 -100000,95740,48638,463.4008773762273,4882,49.83288071861291,3904,40.254856904115314,1492,15.239189471485274,77.31652017658898,79.67733304509032,63.31665033110207,65.06249226181882,77.11780256624375,79.48188766283184,63.24123824555634,64.99055798305194,0.198717610345227,195.44538225848385,0.0754120855457287,71.93427876687508,229.33504,161.41256789893814,239539.4192604972,168594.70221322135,538.70635,363.061501221774,562148.5168163776,378688.2611466201,484.15192,237.12362646688752,502606.6638813453,245245.18875547865,2565.45977,1212.4379415815313,2648389.878838521,1235164.655923889,910.15451,418.7259811127557,936020.4616670148,422725.570412321,1452.51518,631.2301540108774,1485528.8489659494,631860.4687865227,0.38233,100000,0,1042432,10888.155420931693,0,0.0,0,0.0,46908,489.4088155420932,0,0.0,43800,454.3868811364112,1119789,0,40189,0,0,0,0,0,81,0.8460413620221433,0,0.0,0,0.0,0,0.0,0.04882,0.1276907383673789,0.305612453912331,0.01492,0.3652071470645984,0.6347928529354016,23.168359767617574,4.229295945490497,0.3012295081967213,0.2715163934426229,0.2146516393442623,0.2126024590163934,11.57533996862727,6.207890392074139,16.147751139088392,11386.793864943163,45.090426384180354,13.038679567771462,13.515095367504372,9.396733076562905,9.13991837234162,0.5706967213114754,0.7886792452830189,0.7066326530612245,0.5584725536992841,0.1120481927710843,0.7344013490725126,0.91196388261851,0.846820809248555,0.7222222222222222,0.1557788944723618,0.4992641648270787,0.700162074554295,0.6481927710843374,0.5078125,0.098256735340729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023399276749627,0.0051094372522581,0.0073179396092362,0.0095918388083359,0.0117696126302083,0.0140956959240624,0.0163890956931455,0.0185860318821931,0.0206235110070449,0.0228820066547222,0.0251209908949224,0.0270869699147756,0.0291111385324119,0.0312207177058126,0.0335227800183601,0.0354796049096995,0.0378030350081775,0.039800014521767,0.0418589663631449,0.0436512897445514,0.0582775649123539,0.0720847982588314,0.0857085928815621,0.0982398216689098,0.1101410767381539,0.125378090826406,0.1359175922684404,0.1461389427068918,0.1566750360596185,0.1659961161715321,0.1776884876819166,0.1884381053383401,0.1995280402796959,0.2080408493516149,0.2161689105139749,0.2248514807589998,0.233877901977644,0.2413843540093835,0.2487062508511507,0.2553408401012612,0.2617841027421034,0.2672171797510995,0.2729833698289637,0.2771101676620853,0.2807452510300069,0.2851750891172153,0.288761752150127,0.2915489372534046,0.294928549238894,0.2974927421483241,0.2940250090856474,0.290621945006678,0.287378531232811,0.2843277645186953,0.2815458937198067,0.2777650175325769,0.275387998544511,0.2744991789819376,0.2758626583035669,0.2767820446382302,0.2777444735856126,0.2791418308135633,0.2803466393150943,0.2822179049150309,0.2821097066653875,0.2838135747075758,0.2856251064071278,0.2901573819635273,0.2939905939731754,0.2982310995548201,0.3029576700434153,0.3062076988155668,0.3089451265347031,0.3131351147911178,0.3125582261971306,0.3148542999289268,0.3214067278287462,0.3272361809045226,0.3258549931600547,0.3285060975609756,0.0,2.066372415876513,51.80918591774948,147.23185534412272,196.1085011017558,fqhc3_100Compliance_implementation_low_initial_treat_cost,16 -100000,95675,48362,462.09563626861774,4814,48.89469558400836,3838,39.4878494904625,1457,14.831460674157304,77.40264542862671,79.78571299371474,63.35728834693722,65.11303735699136,77.21901497517472,79.60435161570432,63.28611392162674,65.04514849575301,0.1836304534519968,181.361378010422,0.071174425310474,67.88886123834459,232.27028,163.3042380530817,242770.0862294225,170686.42597656828,539.6394,364.3625289431731,563435.9550561798,380235.67174619617,487.4513,240.0459753921882,505338.6778155213,247702.12405273344,2469.64084,1176.5871620312423,2541896.117062974,1190389.7904690283,886.50342,408.4457651342466,910470.7499346748,410805.1326138252,1402.68296,610.0837578686695,1429820.0365821791,607519.2483581074,0.37966,100000,0,1055774,11035.003919519206,0,0.0,0,0.0,47059,491.23595505617976,0,0.0,44105,456.8487065586622,1108540,0,39729,0,0,0,0,0,91,0.9511366605696367,0,0.0,2,0.0209041024301019,0,0.0,0.04814,0.1267976610651635,0.3026589115081013,0.01457,0.3653158522050059,0.634684147794994,23.02174436468389,4.01216772336748,0.3223032829598749,0.2782699322563835,0.2040125065138092,0.1954142782699322,11.665927806410124,6.665628741851414,15.668575398678168,11268.313118372223,43.91141568861918,13.17213352180267,13.915415620203795,8.638055223503951,8.18581132310877,0.5943199583116207,0.8258426966292135,0.7146321746160065,0.5287356321839081,0.1346666666666666,0.7750836120401338,0.9300847457627118,0.8947368421052632,0.6981132075471698,0.2,0.5124905374716124,0.7432885906040269,0.6458100558659218,0.4658493870402802,0.1155172413793103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708610545715,0.0045303901000334,0.0067457902211401,0.0089881478321806,0.0111550624866535,0.0133698552023297,0.0156085923720778,0.0176054541186556,0.0199378666176139,0.0221871993777759,0.0242527368895813,0.026292014865614,0.0285012183962409,0.030546772814814,0.0325938918695831,0.0346342270087024,0.036780085737362,0.0386136045244642,0.0404892406577291,0.0425035176403147,0.0567169168729954,0.0706896190655693,0.0836376610838265,0.0964959341896256,0.108906609286332,0.125193101259126,0.1364210436942148,0.14626096584618,0.1558702506279057,0.1647432322278948,0.177047767785018,0.1879187366734855,0.1988428116197374,0.2088199273936054,0.2165418000594079,0.2255550019376626,0.2322939543594831,0.2401788422436163,0.2465621531002922,0.2531438631790744,0.2591887149651383,0.2647144607128274,0.2700667020837022,0.2738623452729773,0.2772438034058542,0.2805554530583127,0.2840152414266975,0.287610226479731,0.2903446495417581,0.2931199957928505,0.2905254969285656,0.2878993276643525,0.2841393029250252,0.2820033907071635,0.2799030689894646,0.2767857142857143,0.273526630948629,0.2734048117154811,0.2733335595981537,0.2747202071619872,0.2751899016979446,0.2763796477495107,0.277170871250596,0.2769459088291321,0.2776837034033724,0.2784024815820085,0.2805560264451602,0.2867448151487827,0.2895505774314735,0.2948088183282901,0.2984825219040737,0.3020151930787086,0.30475419029223,0.3084330098548108,0.3092332060001863,0.3106852497096399,0.3140957848617616,0.3160508541914978,0.3186724230976794,0.319537658463833,0.0,2.454825954096353,51.39127022804168,135.97103164754154,195.12864350887065,fqhc3_100Compliance_implementation_low_initial_treat_cost,17 -100000,95732,48157,460.0238164876948,4825,49.26252454769565,3886,40.04930430785944,1419,14.436134207997323,77.33907921770925,79.70587450006306,63.32552877917672,65.07546902187859,77.15874212270883,79.52939720298318,63.25775553694956,65.01148481709977,0.180337095000425,176.4772970798845,0.0677732422271546,63.98420477881928,231.52756,162.8349236504485,241849.7054276522,170094.5594476753,540.69597,363.8072434104428,564252.6427944679,379477.7226115016,477.42924,232.8982314643198,495755.84966364433,240911.1902194148,2518.5894,1172.2723379354852,2595414.908285631,1189075.270479552,896.12427,405.465940969448,920311.1603225672,407823.2227677917,1379.63432,586.6986807439414,1404837.3793506874,581681.184178183,0.38006,100000,0,1052398,10993.168428529643,0,0.0,0,0.0,47175,492.1969665315673,0,0.0,43275,448.99302218693856,1111435,0,39875,0,0,0,0,0,89,0.9296786863326788,0,0.0,1,0.0104458279363222,0,0.0,0.04825,0.1269536388991212,0.2940932642487047,0.01419,0.3550378335324572,0.6449621664675428,23.41162320650235,4.0455257108558325,0.319094184251158,0.2745753988677303,0.2068965517241379,0.1994338651569737,11.50665628005946,6.305274735315328,15.120172343573955,11283.883472918817,44.481217177404666,13.016463727797936,13.917049294218115,9.029862588113412,8.517841567275198,0.5869788986103963,0.8050609184629803,0.6838709677419355,0.6082089552238806,0.1096774193548387,0.7526978417266187,0.9205607476635514,0.8478964401294499,0.7524271844660194,0.1538461538461538,0.5205479452054794,0.7276995305164319,0.6294307196562836,0.5585284280936454,0.0973597359735973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0045625988563085,0.0066989433939283,0.0089924402536172,0.0111085114391218,0.0133518011182515,0.0155305154744302,0.0175091118847563,0.0196118530031289,0.0216411643007845,0.0240598110904858,0.0260879389501145,0.0284574167206606,0.030547170394486,0.0325350949628406,0.0344449614807921,0.0365056509173028,0.0386359626819979,0.0404825040295325,0.0420686350092721,0.0559442019754839,0.0691491587846321,0.0826500870221644,0.0955560696559266,0.1074400210914843,0.1228513703629266,0.1339847438386538,0.1442746872504658,0.154422372062705,0.1631188171927641,0.175401922330934,0.1861175171338552,0.1975241493342616,0.2065075874443387,0.2152474266527219,0.2250570788907853,0.2327847988210601,0.2408722166589781,0.2491631395599532,0.2552501632620327,0.2608524620510922,0.2663369462275071,0.2719589602959776,0.2760832366068758,0.2795586808923375,0.2830242019740157,0.2858943322768225,0.2889520210027014,0.2917268786127168,0.2950634177148571,0.2924868832440991,0.2890608917617028,0.2860939257592801,0.282661086658489,0.2802016906421474,0.2776844099492758,0.2739974739501105,0.2741074353095316,0.2749761157363177,0.2760477013850514,0.2776957991669312,0.2785343198992443,0.2798258768641173,0.2808681135225375,0.2819380104111944,0.2829275864745298,0.2837064324171153,0.2876331490332052,0.2913369356806693,0.2955307482939529,0.3003759228225916,0.3032466159052453,0.3088807938701168,0.308995593374867,0.3150939884608226,0.3161799340555817,0.3144827586206896,0.3143839773416953,0.3247863247863248,0.3224458792252184,0.0,2.0267337964928105,48.525695538349886,148.5563925790307,200.3746350991298,fqhc3_100Compliance_implementation_low_initial_treat_cost,18 -100000,95692,47918,457.4990594825064,4806,49.03231200100322,3832,39.50173473226602,1490,15.205032813610334,77.30793472821749,79.68359559048857,63.31631099018998,65.07015733539524,77.11131798520215,79.48976248734752,63.241697991419706,64.99867171911491,0.1966167430153405,193.83310314104563,0.0746129987702772,71.48561628032724,229.65888,161.52138646781412,239997.9935626803,168792.98840845015,537.01422,363.21663575411714,560655.7287965557,379033.8750931292,476.73085,234.15208950905856,494916.5447477323,242152.68691407875,2483.23921,1183.671205055175,2562882.895121849,1204809.0697813567,880.03244,403.5111664597965,909695.9933954772,411722.0002296916,1436.15952,621.6151424535087,1467385.6748735528,622428.5776327433,0.37832,100000,0,1043904,10908.999707394558,0,0.0,0,0.0,46880,489.3303515445388,0,0.0,43180,448.08343435187896,1118788,0,40161,0,0,0,0,0,96,0.9823182711198428,0,0.0,0,0.0,0,0.0,0.04806,0.1270353140198773,0.3100291302538493,0.0149,0.3641107988759534,0.6358892011240466,23.079717088144207,4.045639946774681,0.3055845511482254,0.2818371607515658,0.2160751565762004,0.1965031315240083,11.364352726437044,6.246819276662823,16.11333932008368,11271.120276976166,44.41438421851657,13.373124451764289,13.379010773721772,9.239190191304628,8.423058801725873,0.5887265135699373,0.8027777777777778,0.7079419299743809,0.5410628019323671,0.148738379814077,0.7580101180438449,0.9275053304904052,0.8801169590643275,0.6782178217821783,0.1502890173410404,0.5128495842781557,0.707037643207856,0.6369119420989143,0.4968051118210863,0.1482758620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020249883563169,0.0041648088849256,0.0066951379096967,0.0088262777281222,0.0108616060532096,0.0132784815282473,0.0157742859764864,0.0180398162327718,0.019955427426445,0.022090059473237,0.0239984417927584,0.0261190965092402,0.0283534045682199,0.0304210320281031,0.032824608653479,0.0348381627779558,0.0367814662853827,0.0386615865369641,0.0406120941651322,0.0423985905361592,0.0566384623420035,0.0713246454179096,0.0844070001678697,0.096898368724955,0.1093598448108632,0.1243866328257191,0.1347153557257739,0.1445830583526706,0.154395111320029,0.163571804031367,0.1752985902447955,0.1860963261067116,0.1958923173940461,0.2048963435969209,0.2131659717714876,0.2219883921846617,0.2303152022315202,0.2387535856909837,0.246375002836461,0.2527315207183269,0.2593501487457894,0.2647416555563352,0.2696103957583791,0.2743190894808169,0.2783526464901935,0.2823112887507247,0.2859308633931816,0.2895424253621988,0.292883827115654,0.2961935338961777,0.2938243656600773,0.2909669509154279,0.2880686864699496,0.2857287522603978,0.2831940023205307,0.279662964381463,0.2763187074291145,0.2753377823071107,0.2751967157030448,0.2754754039817873,0.2752501592774425,0.2761108475648324,0.2780741949657899,0.2790573231366078,0.2799558255107675,0.2804503048939386,0.2823094425483504,0.2868397099902702,0.2895180553604046,0.2923539416953443,0.2974496522253034,0.2995238095238095,0.2993658567212909,0.3041135397692774,0.3076059500420993,0.312235294117647,0.3175078628126404,0.3198340576847096,0.3216187433439829,0.3279112754158965,0.0,2.08943323434984,51.60094914034283,145.660900954511,189.4746860127809,fqhc3_100Compliance_implementation_low_initial_treat_cost,19 -100000,95700,48418,461.7554858934169,4904,50.020898641588296,3897,40.06269592476489,1456,14.743991640543364,77.38171245272493,79.75587259417003,63.34258245905804,65.09524798177578,77.19280244762373,79.57392341977578,63.26995352485486,65.02866163489601,0.1889100051011922,181.94917439424785,0.0726289342031805,66.58634687977383,230.45242,162.0930779206693,240807.1264367816,169376.25697039632,537.71377,362.1145029051461,561218.578892372,377729.2715832248,485.69373,238.05104229106604,503747.59665621736,245852.75559935128,2532.05736,1194.343116618024,2603352.3615465,1205531.8355465257,918.78305,421.2759325604918,940726.0083594568,420870.4288099808,1415.6905,607.6815304108723,1434914.2737722048,596566.1619902086,0.38081,100000,0,1047511,10945.778474399163,0,0.0,0,0.0,46836,488.7251828631139,0,0.0,44064,456.6980146290491,1117416,0,40097,0,0,0,0,0,83,0.8672936259143156,0,0.0,1,0.0104493207941483,0,0.0,0.04904,0.1287781308263963,0.2969004893964111,0.01456,0.3561270212351451,0.6438729787648548,23.100155948784156,4.067623124838778,0.3184500898126764,0.2766230433666923,0.201693610469592,0.2032332563510392,11.339533196747558,6.2669520302565855,15.482984001250916,11333.089996846182,44.75023104986019,13.172059334443928,14.090690606198384,8.78599605855976,8.701485050658112,0.5948165255324609,0.8061224489795918,0.7099113618049959,0.5903307888040712,0.1313131313131313,0.7543713572023314,0.9105145413870246,0.8888888888888888,0.7487684729064039,0.1413612565445026,0.5237388724035609,0.7321711568938193,0.6367763904653803,0.5351629502572899,0.1281198003327787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0046224492899066,0.0067276860007306,0.0087662271702253,0.0109343531948654,0.0132077393075356,0.0154371654346163,0.0180182939278859,0.0204041994214039,0.0224792711638857,0.0247070522743815,0.0268375068017782,0.0289078568490333,0.0306660623416222,0.0328899163046058,0.0349273639042547,0.0370700280692305,0.0391967621419676,0.0412614542920441,0.0432435249361613,0.0576555498689171,0.0713104112572242,0.084816369359916,0.0975212002609262,0.1095029116381129,0.1245068694539339,0.1351216561793699,0.1447994633902239,0.1539661342876983,0.1627527758407981,0.174680488803638,0.1857725909646967,0.1964870302898471,0.2055052089596292,0.2139667385278718,0.2237155287892039,0.2326367204924614,0.2406828456399991,0.2477034046317508,0.2546162211665045,0.2605542575585833,0.2665825122432997,0.2727337261304749,0.2767909544969996,0.2795765499993929,0.2838423645320197,0.2869141357330333,0.290325451309433,0.2939236380568058,0.2974482604170783,0.2952704608647762,0.2911928895716461,0.2886154883289795,0.2859445147922183,0.2841053533950161,0.2801784517936537,0.2759407967249252,0.2761241498540276,0.2770375644155139,0.2775591946689352,0.2790494268274527,0.2797362016173353,0.2806762783943574,0.2800709377078253,0.2810571217501132,0.2813635309577181,0.2834206523576136,0.2888847502871155,0.2917677222645693,0.2967817896389325,0.3020448608233492,0.3043318069372072,0.3086528204806425,0.3137373890616703,0.3194133034379671,0.3271677662582469,0.3339410513521726,0.3364259782170229,0.3347084708470847,0.3338449731389102,0.0,2.584478992967997,51.9098251739423,141.1825381400865,196.8419244136091,fqhc3_100Compliance_implementation_low_initial_treat_cost,20 -100000,95858,48392,460.410190072816,4885,49.64635189551211,3897,40.08011850862734,1455,14.824010515554257,77.44506122741345,79.722098389892,63.40474875222951,65.0838492296579,77.25922969746787,79.53848106701946,63.33417999049245,65.01615436683169,0.1858315299455739,183.6173228725357,0.0705687617370571,67.69486282621529,229.60652,161.5651881403607,239527.7598113877,168546.3791653912,541.00007,364.0853549896777,563813.5053933944,379254.35017388,483.08085,237.31274429945452,499755.0021907405,244410.8427404294,2525.07313,1186.9184128710413,2599969.955559265,1203993.910650172,897.19,412.19265155825786,919177.3560892154,413223.394560973,1412.14654,605.7680804560223,1440994.7630870664,606630.6292299158,0.38079,100000,0,1043666,10887.625445972166,0,0.0,0,0.0,47178,491.5708652381648,0,0.0,43781,452.5652527697218,1122818,0,40351,0,0,0,0,0,73,0.7615431158588746,0,0.0,0,0.0,0,0.0,0.04885,0.1282859318784631,0.2978505629477994,0.01455,0.3528605015673981,0.6471394984326019,23.36667871329993,4.132275474473968,0.2938157557095201,0.2802155504234026,0.2265845522196561,0.1993841416474211,11.29942972631009,6.048067634018672,15.545939266667324,11316.50185515378,44.62870643395548,13.53030834114586,12.86811507664589,9.775777152429235,8.454505863734502,0.5868616884783167,0.8040293040293041,0.7013100436681222,0.5753114382785957,0.1261261261261261,0.7645079899074853,0.9146341463414634,0.8598726114649682,0.7511961722488039,0.1839080459770115,0.5088626292466765,0.7133333333333334,0.641395908543923,0.5207715133531158,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022874956982934,0.0047305989728421,0.0071788528030986,0.009388575372498,0.0116751681671306,0.0136329877608326,0.0159496455634319,0.0178857311837825,0.0201268265784394,0.0224744376278118,0.0246874392029571,0.026767583533321,0.0291374812562906,0.0312590002057189,0.0334937102706489,0.0355380772486117,0.0375920410358236,0.0394901818558623,0.0416506618219569,0.0434827848127607,0.0586941107774441,0.0725225131108836,0.0853200154955973,0.098121720881427,0.1097013119548864,0.1254723154539505,0.1362741153300438,0.1462251120885659,0.1553529537214757,0.1643693414096445,0.1756222327300864,0.186642911132707,0.1973838471558836,0.20605253389812,0.2146473799246543,0.2240721278831793,0.2327838889074637,0.2403860197054296,0.2476140820166391,0.253795028426965,0.2597940051094131,0.2647137897579165,0.2689687795648061,0.2740499664975591,0.2783775260182916,0.282233652449979,0.2856499493351014,0.2890544543755483,0.2921977922430862,0.2947898406505779,0.291579838937363,0.2889044442614401,0.287109813608803,0.2843069577472891,0.2823616345230178,0.2787481362018075,0.2750039301996541,0.2739775134430503,0.2735461762909683,0.2746583587056574,0.2754747159143744,0.2767098003023936,0.2772505930827819,0.2790914333880484,0.2808536003814973,0.282860092927207,0.2845152931898834,0.2896731701255126,0.2949980987935981,0.2990236442771438,0.3030795629007495,0.3064592670709201,0.3108116538773473,0.3147431519842173,0.3205728191688506,0.3237690400283387,0.3287503819126184,0.3311488838828589,0.3311367380560132,0.336687306501548,0.0,2.2731281519612043,51.60441899034901,141.97033264894478,196.8471996957346,fqhc3_100Compliance_implementation_low_initial_treat_cost,21 -100000,95687,48088,459.70717025301246,4725,48.30332229038427,3777,38.9081066393554,1470,14.93410808155758,77.29747507811412,79.69973461836625,63.28577397120039,65.06540965916996,77.11193383496557,79.52112866122008,63.21449538966687,64.99979195204965,0.185541243148549,178.6059571461749,0.0712785815335195,65.61770712031034,230.96194,162.47137054300669,241372.3285294763,169794.61216571394,540.52806,364.8672585902577,564357.2481110287,380778.7040980047,482.59169,236.9242123793616,501283.01650171913,245197.7119580317,2436.86848,1154.6558952595915,2509634.6107621724,1169627.5202060803,875.51101,397.72431562133806,901578.9919215776,402256.5192986903,1416.84606,611.4260474173284,1440275.7741385975,602851.7070531859,0.37859,100000,0,1049827,10971.46947861256,0,0.0,0,0.0,47163,492.3134804100871,0,0.0,43659,453.2904156259471,1107386,0,39782,0,0,0,0,0,84,0.8674114561016648,0,0.0,0,0.0,0,0.0,0.04725,0.1248051982355582,0.3111111111111111,0.0147,0.3682604272634791,0.6317395727365208,23.11125857882462,3.9870910714825447,0.3198305533492189,0.2782631718294943,0.2054540640720148,0.1964522107492719,11.439076784624731,6.4888390435856,15.804712271594138,11232.482906074923,43.39706110193725,12.765343665832631,13.83848217279083,8.64555814483061,8.147677118483177,0.5896213926396611,0.8039961941008563,0.7243377483443708,0.5489690721649485,0.1091644204851752,0.7660668380462725,0.9196428571428572,0.8653846153846154,0.7591623036649214,0.1341463414634146,0.510727969348659,0.7180762852404643,0.6635071090047393,0.4803418803418803,0.102076124567474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024727390652235,0.0048587020469437,0.0069648205492664,0.0092571893100294,0.0115458170572916,0.0134755240481574,0.0155950389620986,0.0176262739731623,0.0199842498747149,0.0225189706198605,0.0245350948273209,0.0266996774259826,0.0290223351611608,0.0307386340216808,0.0326783888986402,0.0344132067274871,0.0362143841792684,0.0381903703780618,0.0400345412362017,0.0419793229948307,0.0562629924056451,0.070193253910094,0.0835099796419501,0.096637771418953,0.1091442315807241,0.1253002105441349,0.135964586363202,0.1455823613995846,0.1544647631269383,0.1634633968260785,0.1749568593615185,0.1862981029810298,0.1966123849463537,0.2053529366653154,0.2132078175464897,0.2223085029674413,0.2301864020383532,0.2379906515740271,0.2450896863533608,0.2516502406600963,0.2561902114747643,0.2624355971896955,0.2674158367772264,0.2717554321091341,0.2761178602264297,0.2795608733193536,0.2830644757276689,0.287166552014064,0.2917909479963688,0.2940873356675695,0.2918475769261886,0.2891431722616668,0.2861780355958279,0.2830791933103787,0.2808700170737139,0.2775535168195718,0.2742757913016023,0.2753625557935353,0.2765982743392893,0.2774297730378152,0.2778376971139542,0.2786139855754155,0.278282565755276,0.2781791587252338,0.2789367028251281,0.2798212532933822,0.280938532343225,0.2847488243171696,0.2887297005946378,0.2929352529305326,0.2955920874356427,0.2982870954182429,0.300080850799179,0.3034415535727675,0.3046462023555596,0.3097819750495511,0.3143549364021805,0.3146336594130565,0.3201837341259119,0.3274034822104466,0.0,2.194689740960831,50.72744348030697,135.23158462502113,193.02396033101377,fqhc3_100Compliance_implementation_low_initial_treat_cost,22 -100000,95830,48292,459.6368569341543,4901,49.9739121360743,3895,40.05008869873735,1436,14.630074089533547,77.32864418348662,79.6387801947012,63.32870225298407,65.03839627239579,77.1379182570007,79.45144959141875,63.25578190901607,64.96876089933863,0.1907259264859107,187.33060328244733,0.0729203439679935,69.63537305715306,229.9341,161.97932973411068,239939.5805071481,169027.7885151943,542.50107,364.8165401395855,565513.6178649692,380097.2243969378,484.71253,237.4528710622301,501934.7072941667,244840.753896743,2519.49124,1192.902035278965,2592869.602420954,1208973.6052677375,892.79519,408.0771949309628,918225.8791610145,412518.8869054381,1395.81726,608.8279373731195,1424057.915057915,608676.5718303891,0.37962,100000,0,1045155,10906.34456850673,0,0.0,0,0.0,47261,492.57017635396016,0,0.0,43957,454.83668997182514,1114076,0,40016,0,0,0,0,0,90,0.9391631013252636,0,0.0,1,0.0104351455702807,0,0.0,0.04901,0.1291027869975238,0.2930014282799428,0.01436,0.350942655145326,0.649057344854674,23.31010582709113,3.999487493081945,0.3086007702182285,0.2880616174582798,0.2051347881899871,0.1982028241335044,11.1160489018803,6.035744884919854,15.621860339163907,11350.644102957269,44.98084333188334,13.738718688587769,13.79030745450306,8.852729613305716,8.599087575486807,0.5894736842105263,0.7878787878787878,0.7063227953410982,0.5882352941176471,0.1204663212435233,0.7371575342465754,0.8839285714285714,0.8717201166180758,0.7526881720430108,0.1361256544502617,0.5262192885955262,0.7240356083086054,0.640279394644936,0.5383360522022839,0.1153184165232358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699802501645,0.0047034018570328,0.0067975447674123,0.0091926702421582,0.0116636160260321,0.0140195479535736,0.0160636020792987,0.0182064967801851,0.0205919022216771,0.0226347133823138,0.0247443595155638,0.0270411723656664,0.0292582163484266,0.031253860407659,0.0333178654292343,0.0352781967314724,0.0372643169070927,0.0394301651650094,0.0415268761360685,0.0433606028435229,0.0575749674054758,0.0715749414519906,0.0851491997610288,0.0976355611601513,0.1099188363023084,0.1259394720986036,0.1367309282942037,0.1466544649697795,0.155825154586328,0.164829863419027,0.1777272874110286,0.1889584888513842,0.199173643579428,0.2078218763321564,0.2167484433100838,0.2261973328607505,0.2350058056448731,0.2415788525623705,0.249165436584535,0.2551342177986217,0.2611512959614225,0.2672309694362053,0.2712222446388094,0.2752305696992987,0.2792978016764194,0.2829548678351609,0.2864516775664637,0.2898249815300741,0.2927964728003631,0.296011418602807,0.2935516474631089,0.2905190349559778,0.2875894482787822,0.2847109592215014,0.2814387290631601,0.2781303654648026,0.2744439515873518,0.2743959450814428,0.2748649615758174,0.2750649073514244,0.2751685372275859,0.2769815332519589,0.2775438742757097,0.2786586315017011,0.2804545454545454,0.2807400478120777,0.2816721896507774,0.2853130266525185,0.2915306051552838,0.2963747645951036,0.2997250642267994,0.3027513283181651,0.3055312773130229,0.3085709962932143,0.3111525898273448,0.3169347209082308,0.3207717817304793,0.3196082350589646,0.3227899432278994,0.3362595419847328,0.0,2.315033813424156,50.667090484089925,149.90592281949412,194.6789833937289,fqhc3_100Compliance_implementation_low_initial_treat_cost,23 -100000,95751,47908,458.1570949650656,4802,49.00209919478648,3830,39.46695073680692,1490,15.20610750801558,77.35098256499538,79.69826063640845,63.33757887846742,65.07056998972126,77.16469965342152,79.51441670938526,63.26703844388632,65.00293246496629,0.1862829115738549,183.8439270231902,0.0705404345811047,67.63752475497142,229.90286,161.60396702765445,240104.91796430323,168775.22639727464,535.99462,361.76514345965205,559245.4178024251,377284.4183973558,472.6095,231.8169367100039,490138.2857620286,239432.2885968765,2507.73379,1170.2616393170686,2583887.489425698,1187400.9782526137,861.15683,388.79182756302737,883010.9554991593,389894.1831626216,1446.12914,616.1406110091764,1476456.016125158,615392.9710294281,0.37918,100000,0,1045013,10913.859907468328,0,0.0,0,0.0,46768,487.8591346304477,0,0.0,42841,443.98491921755385,1121365,0,40213,0,0,0,0,0,91,0.9503817192509738,0,0.0,0,0.0,0,0.0,0.04802,0.1266417005116303,0.3102873802582257,0.0149,0.356971634039153,0.643028365960847,23.163319974908152,4.1061564220601685,0.3112271540469974,0.2624020887728459,0.2242819843342036,0.202088772845953,11.49726098286641,6.238971971891973,15.89974028022624,11249.782947944635,43.65220039861443,12.19071552280374,13.51461131321902,9.562186015294069,8.384687547297608,0.5715404699738903,0.7830845771144279,0.6862416107382551,0.5890570430733411,0.1007751937984496,0.7504488330341114,0.9225,0.8827160493827161,0.7333333333333333,0.0969696969696969,0.4981590574374079,0.6909090909090909,0.6129032258064516,0.5378548895899053,0.1018062397372742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860125768331,0.0041759155086609,0.0061083883798565,0.0081457706996018,0.0100456528149179,0.0123179037167492,0.0144239100518853,0.0162885398487492,0.0187041977125686,0.0209909015546162,0.02302314615495,0.0250769862451242,0.0271526242738909,0.0291830997518303,0.0310926797061979,0.0332189515462212,0.0353818275951333,0.0374290487604935,0.0392792905191146,0.041338069987186,0.0563912521530351,0.0707359171504785,0.0837536041939711,0.0966934763181412,0.1087531758330961,0.1239878221526882,0.1349135645349453,0.1451451557977183,0.1542693544424147,0.1633198172105297,0.1754238566104397,0.1861431570745222,0.1967783687364723,0.2055888660335244,0.2135521579764224,0.2222443868164993,0.2301326722058429,0.2388274597586079,0.2466073616847456,0.2524695743851848,0.2587609186093596,0.2631431178493718,0.2693935953833782,0.2744774082321672,0.2786855416863787,0.2825988019532836,0.2862818590704648,0.2892126354295004,0.292431474510717,0.2960266909311495,0.2928799321513671,0.2898357317777839,0.2881265227371949,0.2856151811651804,0.2838204949304514,0.2791544297601566,0.2760829340038905,0.276425431402139,0.2765961075954765,0.2772023491724506,0.2770580548814635,0.2776892665368501,0.2788345221707755,0.2798006984451809,0.2812059533194773,0.2828138775086864,0.282526934931991,0.286593557659262,0.291316137106306,0.29736107287529,0.3004247243809868,0.3046455282839987,0.3086858854361662,0.3121569806781445,0.3180300500834724,0.3226563416637334,0.3256170473708416,0.3266948300140816,0.3350670681631535,0.3363705391040243,0.0,2.0267603528398843,48.50450114620834,139.5670786506358,201.2863481218361,fqhc3_100Compliance_implementation_low_initial_treat_cost,24 -100000,95848,48257,459.9261330439864,4899,49.974960353893664,3980,41.002420499123616,1541,15.712377931725232,77.51248185563044,79.7964571469516,63.42745123530996,65.11000308815856,77.31871059915666,79.60639799684684,63.35461661587313,65.04102822937293,0.1937712564737808,190.0591501047586,0.0728346194368327,68.97485878563714,230.9846,162.4421263554915,240990.52666722308,169478.88986258607,543.14788,365.32576994378337,566077.5185710709,380552.4058340115,484.40038,237.59411471802457,502073.14706618816,245370.9642842318,2583.34291,1202.656984957296,2661580.940656039,1221116.3426258585,924.62453,418.5816066740663,950633.3778482598,422696.1718284803,1489.30144,628.4612286117351,1520161.923044821,627432.916204135,0.38098,100000,0,1049930,10954.11484851014,0,0.0,0,0.0,47316,493.1140973207579,0,0.0,43949,455.158167097905,1118301,0,40152,0,0,0,0,0,80,0.824221684333528,0,0.0,0,0.0,0,0.0,0.04899,0.1285894272665231,0.3145539906103286,0.01541,0.3603498542274052,0.6396501457725947,23.268098901225613,4.026614406325053,0.3103015075376884,0.2801507537688442,0.2040201005025125,0.2055276381909547,11.276547614977904,6.107820262263068,16.305432005123798,11294.690597291315,45.12933082912388,13.581431765660229,13.81357004952591,8.978332846168474,8.755996167769272,0.5836683417085428,0.7838565022421524,0.7263157894736842,0.5738916256157636,0.1051344743276283,0.7660119555935099,0.8958333333333334,0.9080118694362018,0.7305699481865285,0.124223602484472,0.5076539693841224,0.6992125984251969,0.6581291759465479,0.5250403877221325,0.1004566210045662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023070851800133,0.0046991624553123,0.0068518837612382,0.0090308571196639,0.0118247018427842,0.0141259025729685,0.0160961902628739,0.0181718061674008,0.0204833917065749,0.0226608037631659,0.0244534330039424,0.0266436944282066,0.0287085272751559,0.0308441224296564,0.0327213121514211,0.0348699092101593,0.03684809602649,0.0389508060753719,0.0406382448267265,0.0425797720056217,0.0565341175734442,0.0704405014585794,0.083808366166485,0.096416418098559,0.1092017563256151,0.1249617119258109,0.1360076307561867,0.1462460259232086,0.1553836303489489,0.1639591788655322,0.1753459714620587,0.186116841457224,0.1967040482885152,0.2052233917107044,0.2137122019265621,0.2238992458922134,0.2323141186299081,0.2405304944468775,0.2478401177602898,0.2534680165459241,0.259075603118225,0.2641105080481725,0.268507492601719,0.2730691178226095,0.2770989595935156,0.2811019175526038,0.2851162442999178,0.2885325976918405,0.2925230515633854,0.2955385946966716,0.2924207539087599,0.289487715844305,0.2879817642781227,0.2848567530695771,0.2824206642066421,0.2790304654314033,0.2754915553314847,0.2750559156286222,0.2763046209214681,0.2765893234390811,0.2772188687681645,0.278698829260627,0.279596085779721,0.2799982256132724,0.281760467936372,0.284195350513606,0.2835031237687848,0.2892144715648618,0.292895118414693,0.2992309484968539,0.3027865428203191,0.3065576315925676,0.3115389346783122,0.3136292661164399,0.3162142333088775,0.3168259818035241,0.319619783157582,0.3209202573601092,0.3221243661595943,0.3281539030706622,0.0,1.991909071007824,50.7287388786286,145.6974594750635,204.00671951341732,fqhc3_100Compliance_implementation_low_initial_treat_cost,25 -100000,95736,48196,459.6494526614857,4811,48.93665914598479,3869,39.80738698086404,1442,14.61310269908916,77.31288813594676,79.66995695211082,63.318020272784125,65.06136840819184,77.12006106004216,79.48383064573058,63.244120532063086,64.99321047005017,0.1928270759046029,186.1263063802454,0.0738997407210391,68.15793814166682,230.39368,162.11091710287002,240655.21851759005,169331.19944730302,537.14858,362.0225956642258,560384.0457090333,377458.0990058346,482.41594,236.82983613614095,500299.1455669758,244638.9551154305,2501.87398,1184.4654700799847,2576128.363416061,1200043.5991476404,885.94117,406.9748878525885,910076.1991309434,409790.8370679151,1398.89312,606.6865621244946,1420212.250355143,597160.8191953277,0.38048,100000,0,1047244,10938.873568981366,0,0.0,0,0.0,46805,488.2384891785744,0,0.0,43618,452.0138714799031,1116288,0,40118,0,0,0,0,0,95,0.9818668003676776,0,0.0,2,0.0208907829865463,0,0.0,0.04811,0.1264455424726661,0.2997297859072957,0.01442,0.3634914308489438,0.6365085691510562,23.089361706017737,4.154164828762063,0.3070560868441457,0.2835357973636598,0.2101318170069785,0.1992762987852158,11.558344434030024,6.382335689680814,15.580652911347304,11386.25083148578,44.536499780425984,13.535960753072109,13.51270419141957,8.923306902654236,8.564527933280079,0.589041095890411,0.8012762078395624,0.7138047138047138,0.5608856088560885,0.1245136186770428,0.7599660729431722,0.9235668789808916,0.8676470588235294,0.7291666666666666,0.1477272727272727,0.5141263940520446,0.7092651757188498,0.652122641509434,0.5088566827697263,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349652616014,0.0046726603756372,0.0070008827199951,0.0093040263275504,0.0115234792160372,0.0140835030549898,0.0163964515142245,0.018407162765056,0.0208356762393546,0.0229981568707761,0.0251307290064595,0.0270273045603442,0.0288594055332716,0.0308807927237518,0.0326640942574747,0.0344585236786076,0.0367394275773516,0.0386930084877664,0.0406921725023658,0.0428354103280123,0.0577788450495411,0.0721871697481453,0.0858458214918674,0.0980410712595817,0.109916065629086,0.1263474130726836,0.1369261138114745,0.1471320899335718,0.1570091660790974,0.1661947965596379,0.1770685273721841,0.1876250527249326,0.1981929086342434,0.208198442558404,0.2162111609893495,0.2251625552466298,0.2337894243432066,0.2413769827877151,0.2496281409317482,0.2563044947811043,0.2615142430520991,0.2674048782769346,0.2720078544559843,0.2755608283002588,0.2791765348879577,0.28331875361926,0.287325389275522,0.2911208891827962,0.2947222617768514,0.2966605068637803,0.2935122319215432,0.2907162314613543,0.2892605063326806,0.2866414199814986,0.2834711235353595,0.2805793991416309,0.2766230677764566,0.2764293109398366,0.2778062619633579,0.2784993300580616,0.2795962698026291,0.281183932346723,0.2817184070241455,0.2830436720142602,0.2835509263703561,0.2837939731156236,0.2852515839418132,0.290742950449036,0.2956010086859064,0.299056154822335,0.3040065338717728,0.3076072068275208,0.3134597451041342,0.3169683257918552,0.322676857116227,0.3221610219149186,0.3233185908189721,0.328643216080402,0.3347141673570837,0.3387400980761976,0.0,2.2874934342328697,51.10261383933177,144.03427108873652,194.7900661802942,fqhc3_100Compliance_implementation_low_initial_treat_cost,26 -100000,95785,48472,462.4001670407684,4911,50.03915018009083,3894,40.100224461032525,1498,15.315550451532078,77.37208356525132,79.71002331804414,63.35007434272507,65.07920498240988,77.17526569943922,79.51410507459151,63.27478663697495,65.00594762019908,0.1968178658120933,195.9182434526241,0.075287705750128,73.25736221079637,230.4577,162.19678515768004,240598.94555514955,169334.22264204212,540.65374,364.5577863539736,563898.4600929165,380053.4387993669,482.91312,236.65060844670649,500251.719997912,244122.39955844264,2526.0095,1191.1359929659668,2604946.6409145487,1211332.2889449988,892.43313,412.5185543731125,918351.0779349584,417317.9562281273,1451.42144,631.3383142791033,1485732.776530772,635114.3755526643,0.38233,100000,0,1047535,10936.315707052252,0,0.0,0,0.0,47194,492.1438638617738,0,0.0,43751,452.83708305058207,1114604,0,39994,0,0,0,0,0,81,0.8456438899618939,0,0.0,0,0.0,0,0.0,0.04911,0.1284492454162634,0.3050295255548768,0.01498,0.3585828929340379,0.641417107065962,23.43370739583738,4.017992678500268,0.3186954288649204,0.2768361581920904,0.2046738572162301,0.1997945557267591,11.343824749294727,6.310317874933491,16.209760486028912,11382.214614382994,44.594881168050506,13.238877376981154,13.91057850866577,8.802596875890597,8.642828406512987,0.5868002054442732,0.8237476808905381,0.684931506849315,0.560853199498118,0.1285347043701799,0.7517064846416383,0.9227467811158798,0.8563049853372434,0.6864864864864865,0.1777777777777777,0.5157972079353417,0.7483660130718954,0.62,0.5228758169934641,0.1137123745819397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019953408285222,0.0044402092372572,0.0067077997199163,0.0091323737060777,0.0114919149801688,0.0136830102622576,0.0160026093426698,0.0183480621262526,0.0206221386527141,0.0226998260157609,0.0247794140252713,0.026960457311754,0.0288533689674667,0.0311679485991412,0.0332876161405752,0.0351504380889403,0.0371186949456054,0.0390957171004874,0.0410726902456257,0.0428726106692208,0.0577161878724003,0.0719231091030789,0.0860509240332505,0.0987296283453645,0.1106288387185132,0.1252971316887644,0.1362080476457933,0.1469703252421507,0.1567637927171466,0.1661364098938415,0.1774273359006906,0.1887261525158082,0.1989219266214571,0.208029476400293,0.2154429962052466,0.2249786805178696,0.2328647925033467,0.2406151978144288,0.2476250935225701,0.2538128606760099,0.2595265355214007,0.2657097437815597,0.2711295488659599,0.2753597165361871,0.279195884793633,0.2827285707252228,0.2872191362658259,0.2897268717987824,0.2935517656033825,0.2973724436010963,0.2939635366984187,0.2915597513618837,0.2893847669998592,0.2874384627600445,0.2855765093401783,0.2820798997049245,0.2781499857788452,0.2782963254077422,0.2792928086282808,0.280135339684801,0.2804427355532328,0.2808957808564232,0.2820042519488098,0.2836792746344282,0.2848158775705404,0.2850690478662652,0.2855964737665292,0.2912301612194969,0.294955987145452,0.2990783592421185,0.3047765514745793,0.3115323854660347,0.3163436974266309,0.3211002260738508,0.3265933656354827,0.3322014051522248,0.3357961399276236,0.333268063442334,0.3385889898450027,0.3387937453462397,0.0,2.1445317572194744,50.79301111564461,142.72731343732465,199.5335776293391,fqhc3_100Compliance_implementation_low_initial_treat_cost,27 -100000,95643,48245,461.8320211620296,4693,47.949144213376826,3702,38.08956222619533,1442,14.658678627813847,77.25911226955019,79.6557257105013,63.27736057920528,65.04594675936437,77.07871965322688,79.47979756514292,63.21011666231926,64.98257780676245,0.1803926163233029,175.92814535838386,0.0672439168860208,63.36895260191966,230.78418,162.3883875001818,241297.0525809521,169785.53549566813,536.35029,362.174038370146,560153.8429367543,378043.8555800069,480.75242,235.8669893146813,498794.5589326976,243566.6682123567,2438.23208,1133.1265079757295,2512019.0186422425,1147549.0084795535,876.6594,395.6783235782221,901764.1751095218,398872.0905640994,1403.20838,586.3274034865683,1429272.168376149,582570.3384843332,0.37901,100000,0,1049019,10968.047844588731,0,0.0,0,0.0,46762,488.2845582008093,0,0.0,43462,450.5504846146608,1109206,0,39797,0,0,0,0,0,80,0.8364438589337432,0,0.0,0,0.0,0,0.0,0.04693,0.1238225904329701,0.3072661410611549,0.01442,0.3715390879478827,0.6284609120521173,23.2677404789948,4.116287160165695,0.3028092922744462,0.2766072393300918,0.2133981631550513,0.2071853052404106,11.759261065070197,6.451390807283497,15.2180228311433,11276.488117244233,42.38745681403172,12.670202578720255,12.750644944054738,8.72223670064842,8.24437259060829,0.5764451647757969,0.78125,0.6940231935771632,0.5620253164556962,0.1460234680573663,0.7495412844036697,0.908883826879271,0.8473520249221184,0.6988636363636364,0.1493506493506493,0.5042113323124043,0.6854700854700855,0.6325,0.5228013029315961,0.1451876019575856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020258703645553,0.0043500745292489,0.006597243367233,0.0089213136075434,0.0110788951625209,0.0131383292933819,0.0151926096620918,0.0172524679195973,0.0191472178775518,0.0211067209859356,0.0232219567958825,0.0253411506196671,0.0274209308305477,0.0295344740556076,0.0316199007234187,0.0337486429199193,0.0357505438723712,0.0377624845597317,0.0397749139285008,0.0417101038322004,0.0572345183606077,0.0713971512358609,0.0852033476493998,0.0981909695897565,0.1097711648732272,0.1244108831721756,0.1350504514073287,0.1451585407432662,0.1550931371500673,0.1635598316295851,0.1748495372867096,0.1869264191217102,0.1971703661750931,0.2067613163314491,0.215707245002591,0.2253086419753086,0.2342295991410164,0.2425503128699475,0.2495565763143533,0.2553897752202428,0.2608504024681621,0.266611957796014,0.2716037668714567,0.276419833201144,0.2799663689424495,0.2836338932806324,0.2865294656182199,0.2896088502568155,0.2916936801431498,0.2942909614596958,0.2909708463062553,0.2877008737837316,0.2852706613028442,0.2824883323187523,0.2795663698364952,0.2762923897712638,0.2722997260534275,0.2730451627731354,0.2733333333333333,0.274154697118387,0.2755705200149644,0.276959769775097,0.2779101358411703,0.2785668244760063,0.2781284368574571,0.2795587549847221,0.2800079210161532,0.2838733892155636,0.287985186737938,0.291961287774047,0.2959927552637537,0.3000843970883005,0.3035379422427803,0.3075822603719599,0.3075998520710059,0.3088735201031532,0.3149071137290439,0.3182997405707443,0.3189084895259096,0.3267822736030829,0.0,2.3937640333489125,47.11748223308577,135.95283554928406,192.72926277060404,fqhc3_100Compliance_implementation_low_initial_treat_cost,28 -100000,95629,48197,459.1912495163601,4755,48.55221742358489,3769,38.952618975415405,1414,14.451683066852103,77.28554750318864,79.71630523606717,63.27381344368565,65.07148168320207,77.0989467281599,79.53287235667185,63.2014257073361,65.00266011941088,0.1866007750287366,183.43287939532613,0.0723877363495475,68.82156379118953,228.82838,160.99110117665367,239287.64286984075,168349.66503534876,536.82325,361.8361800129274,560905.1647512784,377919.8046752841,479.32038,234.59950392533932,498641.6045341894,243337.21914308565,2453.00901,1166.0677316651495,2534726.997040647,1189131.244903933,857.54286,393.9168962408107,885000.2091415784,400252.2364620964,1379.56908,605.8372356463625,1411153.269405724,605828.0168680062,0.38065,100000,0,1040129,10876.711039538215,0,0.0,0,0.0,46787,488.7847828587562,0,0.0,43438,451.6412385364272,1121578,0,40211,0,0,0,0,0,79,0.8261092346463939,0,0.0,2,0.0209141578391492,0,0.0,0.04755,0.1249179035859713,0.2973711882229232,0.01414,0.359775641025641,0.6402243589743589,23.466320684304858,4.0887218688040745,0.3069779782435659,0.2791191297426373,0.2050941894401698,0.2088087025736269,11.263232327567538,5.982894904033129,15.255353959088517,11397.561647589522,43.209341833777806,12.718942172163633,13.17319619964007,8.655100592543025,8.662102869431092,0.5760148580525338,0.8051330798479087,0.6732929991356957,0.6080206985769728,0.0952986022871664,0.7480519480519481,0.9376443418013856,0.8615384615384616,0.7718446601941747,0.0994764397905759,0.5,0.7124394184168013,0.5997596153846154,0.5485008818342152,0.0939597315436241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026550466153222,0.0048484110803436,0.007218860415059,0.0093611831071809,0.0116184430065519,0.0136601167374629,0.0159031326825187,0.0181840470742072,0.0203025436990518,0.0225822639615743,0.0246096715291028,0.0270650733140843,0.0291913702239789,0.031325698617711,0.03345379452762,0.0354985519238725,0.0377098445595854,0.0396817978834989,0.0417898330488363,0.0437889202974892,0.0581649400474602,0.0720386497731107,0.0856575379894491,0.098524918343694,0.1108070990914853,0.1265411176545354,0.1376056113502311,0.1488853588067848,0.1582067828897379,0.1664553425599587,0.1784916532680126,0.1891223733003708,0.1999498653994964,0.209110434153718,0.218342392802408,0.2279866360316561,0.2353099007244432,0.2421072801253367,0.2494573801975022,0.2551874355153044,0.2609642265689237,0.2670234317364778,0.2716658171429926,0.2756596480276584,0.2807660019709708,0.2846268675129847,0.2886117788461538,0.2914215873500878,0.2947679467074482,0.2969968978945284,0.2948705869685182,0.2911134933069459,0.2882787750791974,0.2845303069681481,0.2827199501579814,0.2792726604830563,0.2754528913851752,0.2763151419713597,0.2765714480501772,0.2770476309360344,0.2768555690411726,0.2780574125049154,0.2796585406578727,0.2796691200996197,0.279838536317386,0.2816930506417374,0.2827609484431693,0.2878166915052161,0.2911300624935262,0.2944422700587084,0.297881908530827,0.3013224181360202,0.3055970149253731,0.3087706146926536,0.3138976159674737,0.313451924194861,0.3187641296156744,0.3268924302788845,0.327350656308599,0.3263041065482797,0.0,1.7671411359307452,50.47490063449196,138.35853194496212,189.1054759120589,fqhc3_100Compliance_implementation_low_initial_treat_cost,29 -100000,95820,48615,463.5984136923398,4766,48.61198079732833,3717,38.33228970987268,1406,14.339386349405135,77.35864855579545,79.66121089228594,63.35358995694328,65.05337164646184,77.17719946762797,79.48181626895175,63.28531117939907,64.98761275292375,0.1814490881674828,179.39462333418987,0.0682787775442008,65.75889353808861,229.2664,161.3814803323278,239267.5641828428,168421.26939295325,540.03113,363.9909031411014,563105.6877478606,379385.976978816,483.80847,237.78731437523533,501612.9931120852,245647.15919745897,2410.91864,1139.0867455692628,2487182.947192653,1159869.3441549398,832.31976,385.39163588271225,854251.617616364,387936.321053141,1366.21624,583.9918578234674,1395105.2598622416,585357.8445993218,0.38224,100000,0,1042120,10875.7983719474,0,0.0,0,0.0,47131,491.36923398037993,0,0.0,43703,452.7864746399499,1119474,0,40223,0,0,0,0,0,82,0.8557712377374244,0,0.0,1,0.0104362346065539,0,0.0,0.04766,0.1246860611134365,0.2950062945866554,0.01406,0.3565076798706548,0.6434923201293452,23.047394046997383,4.050038941909204,0.3048157115953726,0.2867904223836427,0.2050040355125101,0.2033898305084746,11.28355732877442,6.13486542434736,15.121579812875622,11363.77442352795,42.805521190362334,13.226518367434698,12.80699136537192,8.397243366854905,8.374768090700806,0.5722356739305892,0.7908067542213884,0.6919682259488085,0.5538057742782152,0.1031746031746031,0.7437446074201898,0.9066937119675456,0.842443729903537,0.7134831460674157,0.1468926553672316,0.4945269741985926,0.6910994764397905,0.635036496350365,0.5051369863013698,0.0898100172711571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023075521729449,0.0048212784490879,0.0069953465738009,0.0093153520655118,0.0115823054883872,0.0136920807690351,0.0159821537709326,0.0179531382289637,0.0202582596081155,0.0223715706131467,0.0244694362504097,0.0264836810470387,0.0283768095096216,0.0302338025850004,0.0324060708541262,0.0346504998760637,0.0367005701159891,0.0387195090345521,0.0408409157006938,0.0429523214657505,0.0575747459784264,0.0708931427794795,0.0842382190172731,0.0967138518448458,0.1091439832232093,0.1245007079907855,0.1352987321375567,0.1458218099817044,0.155693864696651,0.1647869808529342,0.1768081303963999,0.1876947040498442,0.1982623635335566,0.2076018594476346,0.2158684381432518,0.2250382322303242,0.2338920257995402,0.2414324436796346,0.2495519205027565,0.2560155757888106,0.2618433382307007,0.267140918238405,0.2728961787434468,0.2772611800795667,0.2816615638820042,0.2855417826954828,0.2893614893164797,0.2917635695858274,0.2958932822689162,0.2985985682456394,0.2957913137017615,0.2916214471171678,0.2879000758704021,0.2852222782621226,0.2827675118177911,0.2795927090648185,0.2755108486245776,0.2750356306210376,0.2754292924986784,0.2758946729938987,0.2768448217825485,0.2785408824862542,0.2801605216955104,0.2805865859628822,0.2823225312335455,0.2837728985318955,0.2840228285868423,0.2891528504716833,0.2924620655898189,0.2961879152167035,0.2990603541741958,0.3049585467603105,0.3081780667750406,0.3111026904130352,0.3152768759855301,0.3179648387472348,0.3249621785173979,0.3280370072405471,0.3359977949283351,0.3445736434108527,0.0,1.7421221543927248,50.85071517939579,133.54594813340685,188.5575027592166,fqhc3_100Compliance_implementation_low_initial_treat_cost,30 -100000,95861,48245,460.3436225367981,4919,50.12465966347106,3867,39.74504751671691,1456,14.813114822503415,77.41454581429173,79.70328988732228,63.37712166936033,65.06800221728761,77.2285206466581,79.52139266511514,63.30685658324286,65.0019357386917,0.1860251676336304,181.89722220714089,0.070265086117466,66.06647859591419,231.06226,162.58834236027195,241038.85834698155,169608.43550585947,542.65275,365.9959763081744,565500.1929877636,381215.8920814246,481.87219,236.7173781763283,498941.3421516571,244091.62780904493,2512.20303,1182.6929737355586,2582722.087188742,1195924.905411212,861.96855,394.6349746999921,887007.6151928313,399561.4484154544,1413.0333,605.6066488380865,1439108.0418522651,601035.9742922026,0.38027,100000,0,1050283,10956.311743044616,0,0.0,0,0.0,47248,492.26484180219273,0,0.0,43660,451.7061161473383,1111968,0,39900,0,0,0,0,0,80,0.8345416801410375,0,0.0,1,0.0104317710017629,0,0.0,0.04919,0.1293554579640781,0.2959951209595446,0.01456,0.3538371411833626,0.6461628588166374,23.20329747640048,4.071422150339496,0.3105766744246185,0.278251874838376,0.21722265321955,0.1939487975174554,11.187465496271765,5.969481327560863,15.553705548401544,11264.993061095096,44.22063830056013,13.065107926394168,13.501539669950589,9.43722741954551,8.216763284669865,0.5743470390483579,0.7797397769516728,0.6952539550374688,0.5714285714285714,0.0893333333333333,0.748471615720524,0.8823529411764706,0.8693009118541033,0.7616822429906542,0.1125,0.5011021307861866,0.7082018927444795,0.6295871559633027,0.5063897763578274,0.0830508474576271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026218555448701,0.0046704827516336,0.0071590090957948,0.0092481676243071,0.0111393434292102,0.0130241455448264,0.0153830480847595,0.0176161574947722,0.0197558608713417,0.0220321993331014,0.024112676056338,0.0262906849118343,0.0281748029716094,0.0303445152391637,0.0322913229957109,0.0341871514149969,0.0362833140208574,0.0380952380952381,0.0400705906778781,0.0420961752499037,0.0563891350815911,0.0706902858337252,0.0836319064680369,0.0963091300467265,0.1083591331269349,0.1237088358927779,0.1343446434813928,0.144281462585034,0.1537181265336605,0.1633643218233227,0.1748891948879039,0.185996475332735,0.1968598902591405,0.2063634277722539,0.2147825800283519,0.2241106500691563,0.2327598702181984,0.2406570934178296,0.2474092383047234,0.2542464060067759,0.2602829992370118,0.2657480775074212,0.2703328919992434,0.274776986170149,0.2790937678326433,0.2826443024100688,0.2857571589346004,0.2890405561698504,0.2927138769115229,0.295470135078092,0.2926068364575209,0.2901799203406126,0.287553587743341,0.2835749906315759,0.2810203839772457,0.2770740492033453,0.2738689904035549,0.2737700364373131,0.2739933342402394,0.2740063875088715,0.2745710989542629,0.2747181521781828,0.2766329098130549,0.2769353551476456,0.277966020807483,0.2780046523649522,0.2788735573802872,0.2831806181084019,0.2875460421155049,0.2919877339204277,0.2949685534591195,0.2998167059439643,0.3041517360682071,0.3063747393506106,0.3092935433360965,0.3113207547169811,0.318065390989905,0.3232464929859719,0.3299972951041385,0.3423120089786756,0.0,2.3559217137944617,49.36601288733837,144.57255525708334,196.93785140560308,fqhc3_100Compliance_implementation_low_initial_treat_cost,31 -100000,95693,48607,463.2000250802044,4808,48.83324799097113,3826,39.22961972140073,1503,15.23622417522703,77.36002699221102,79.73059630000829,63.33690834044432,65.08797392250749,77.16445927658329,79.54233468919108,63.26224190564948,65.01913545372412,0.1955677156277318,188.26161081720727,0.0746664347948424,68.83846878336897,231.08976,162.53357734346164,241490.7673497539,169848.97259304405,540.67551,364.2104973437332,564274.0952838766,379866.65413743234,482.55241,237.61318894632768,499488.4578809317,244643.3059254909,2490.4789,1177.403113139161,2555020.0955137783,1182879.3520311427,896.54187,408.0780723275244,920821.1467923464,410408.7344893788,1466.24244,628.1116700252502,1488162.833227091,619260.8871642591,0.38191,100000,0,1050408,10976.85306135245,0,0.0,0,0.0,47150,491.9482093779064,0,0.0,43559,450.4300210046712,1111948,0,39876,0,0,0,0,0,89,0.9196074948010826,0,0.0,1,0.0104500851681941,0,0.0,0.04808,0.1258935351260768,0.3126039933444259,0.01503,0.362657091561939,0.6373429084380611,23.38723870959705,4.090262969915548,0.3175640355462624,0.2660742289597491,0.1975953998954521,0.2187663355985363,11.43023545260715,6.269931826853924,16.035098194542986,11386.221390422676,43.75651218635983,12.5211594679567,13.66229113363632,8.366096975577717,9.206964609189088,0.5718766335598536,0.8104125736738703,0.6831275720164609,0.5674603174603174,0.1242532855436081,0.7461273666092944,0.9186813186813186,0.8772455089820359,0.6906077348066298,0.1614583333333333,0.4958708708708709,0.7229129662522202,0.6095346197502838,0.528695652173913,0.1131782945736434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0048860099950328,0.0070629065484103,0.0093561429529246,0.0118800602140038,0.0139505519123457,0.0164220183486238,0.0187797260609524,0.0209660107334525,0.0234648539077376,0.0254567450634624,0.0274424048293704,0.0298019374344419,0.0319304534124384,0.033894282854755,0.0360732009925558,0.0380718547986076,0.0402100805447147,0.0421052631578947,0.0438910019277861,0.058257091531938,0.0720334104397157,0.0851351776665722,0.0979868313103477,0.1100367984310582,0.1254982396413732,0.1353369898473387,0.1448854263120363,0.1553998483278681,0.1644657090444876,0.1765859334597483,0.1878726881161867,0.1991303875210609,0.2077511752487154,0.2169824808366967,0.2263891811667238,0.2339506861541894,0.2413723307357554,0.2491156863634302,0.2555724736402248,0.2616853763714348,0.2677221475725886,0.2739879882720136,0.2779805862428036,0.2814195380675542,0.2850038773525682,0.2881667458551101,0.2909933943089431,0.2948021722265322,0.2979505766062603,0.2943209942967825,0.2915698433869127,0.2875732311852185,0.2848000693401132,0.2813794332031888,0.2782797474353682,0.2744751381215469,0.2748626912514711,0.2757364829217651,0.2769504176292873,0.2777881387541961,0.2783020722739963,0.280563872255489,0.2808056609214525,0.2821143061687149,0.2816154403394391,0.2825945333522164,0.2871724224302577,0.2911963093698668,0.2976742343199017,0.3013269108424975,0.3022911265146304,0.3058558840072495,0.3079307477130112,0.3116931364354044,0.3164126611957796,0.3214177521963041,0.324432844810279,0.3281463281463281,0.3287619047619047,0.0,2.929158809103712,49.633930533949474,138.20526991101568,195.33676227301484,fqhc3_100Compliance_implementation_low_initial_treat_cost,32 -100000,95735,48384,461.85825455684966,4699,47.74638324541704,3744,38.355878205463,1442,14.540136836057869,77.33346816806463,79.69556310282309,63.32120940122799,65.070418852067,77.14008033238481,79.51020797157328,63.24678419365987,65.0022129294091,0.1933878356798146,185.35513124980696,0.0744252075681188,68.20592265789571,230.4489,162.2277639061331,240715.4123361362,169455.020531815,540.56086,364.9882790430133,563892.9231733431,380501.1597138344,483.56518,238.00322954396125,500861.095733013,245345.5172966745,2420.39537,1159.0903021818706,2478219.0317020947,1160903.4811457607,882.40444,409.0569514526505,899735.6766073015,405485.4511890174,1399.21954,609.9740063364384,1411125.2311067008,594864.6408484103,0.37972,100000,0,1047495,10941.609651642557,0,0.0,0,0.0,47133,491.5339217632005,0,0.0,43661,451.7574554760537,1112592,0,39907,0,0,0,0,0,88,0.919204052854233,0,0.0,0,0.0,0,0.0,0.04699,0.1237490782681976,0.306873802936795,0.01442,0.3542518397383483,0.6457481602616517,22.781258783399537,4.017039398044312,0.3028846153846153,0.2873931623931623,0.2077991452991453,0.2019230769230769,11.25924973620009,6.16362462060086,15.561669402313791,11273.980933448302,43.303768332931895,13.265264922176565,13.06501084324016,8.562076836213814,8.411415731301359,0.5881410256410257,0.8020446096654275,0.699294532627866,0.5719794344473008,0.1335978835978836,0.7376623376623377,0.8828828828828829,0.841642228739003,0.7551020408163265,0.1436781609195402,0.5214368482039398,0.745253164556962,0.6380832282471627,0.5103092783505154,0.1305841924398625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277673641015,0.0044619316107573,0.006597243367233,0.0088906500843341,0.0109944875002542,0.0129316050463806,0.0151694327773926,0.01758486252577,0.0197559380237929,0.0218848842803476,0.0242662210512286,0.0262922847903085,0.0283516551319889,0.0305455144643206,0.0327263347949445,0.0349051143176086,0.036738666721892,0.0387253426860777,0.040744398814784,0.0426214482126489,0.0572618699628345,0.0713007253582306,0.0839717086070476,0.0964732363552217,0.1088563804541571,0.1242703045685279,0.1346504817282797,0.1447456652936105,0.1549208519365106,0.1636332435997812,0.1764845298629664,0.1870455332409972,0.1965608379286716,0.2053116317735337,0.213909331925239,0.223013377037562,0.2317670830681983,0.2401395375007033,0.2475601452564684,0.254382048199668,0.2603300528500885,0.2653039746483155,0.2703572273480009,0.2750377272618391,0.2783627717391304,0.2820046006421217,0.2854519332875257,0.2894045033718139,0.2923399084822005,0.295406313846965,0.293171880255634,0.2900244445054794,0.28751985828565,0.2832214765100671,0.2803953284758188,0.2770431588613407,0.2735092740468999,0.2733515808106469,0.273883612678818,0.2751852379595326,0.2763759968623349,0.2771454452365011,0.2769926629981658,0.2780732005784848,0.2785946929782546,0.2803837953091684,0.2810315056472386,0.2856740782437377,0.2909707177300999,0.2947293783975419,0.2987317777677483,0.3020130691399663,0.3024826464886498,0.3038108947647549,0.3066280265494998,0.3102098897189612,0.3115501519756838,0.3199353665926076,0.3277101769911504,0.3290076335877863,0.0,2.7977288493930854,49.440482862007656,143.2639594935166,183.22390974202585,fqhc3_100Compliance_implementation_low_initial_treat_cost,33 -100000,95795,48033,457.74831671799154,4804,48.92739704577483,3814,39.19828801085652,1414,14.41620126311394,77.34149214859087,79.67925875471889,63.33904717832892,65.07192744241638,77.16786596878856,79.50791616053012,63.27441762061961,65.00997530289398,0.1736261798023122,171.34259418877207,0.0646295577093098,61.95213952240408,230.38774,162.02630369389922,240500.7985803017,169138.58102604438,536.36816,361.510643918434,559299.9321467718,376766.9021540101,479.28286,234.60047081361515,495687.57242027245,241455.2686460749,2475.97339,1155.4777947542984,2551380.186857352,1172920.3557119877,866.68659,390.0689971353885,892779.988517146,395242.7382326958,1370.34258,576.2098126837716,1400089.6706508691,576915.668339068,0.3798,100000,0,1047217,10931.854480922804,0,0.0,0,0.0,46721,487.0817892374341,0,0.0,43352,447.9043791429616,1122052,0,40225,0,0,0,0,0,98,1.0230179028132993,0,0.0,1,0.0104389581919724,0,0.0,0.04804,0.1264876250658241,0.2943380516236469,0.01414,0.3608617594254937,0.6391382405745063,23.718479567983845,4.009843214082944,0.3057157839538542,0.2826428945988463,0.2155217619297325,0.1961195595175668,11.137657875457515,6.089933016610042,15.000806538402738,11353.425458243046,43.786385402615736,13.240560205064028,13.212908694905227,9.177943354055492,8.154973148590976,0.5930781331934977,0.8153988868274582,0.7006861063464837,0.5802919708029197,0.1189839572192513,0.7702205882352942,0.9123595505617976,0.8584905660377359,0.7433155080213903,0.144927536231884,0.5223771093176816,0.7472353870458136,0.6415094339622641,0.5322834645669291,0.1131147540983606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0042983283152377,0.006819219645847,0.0091350648294923,0.0115582235336012,0.0139246824418616,0.0160023661879895,0.0183091831837351,0.0204513615493951,0.0225273656293838,0.0249156661095674,0.0271205586362702,0.0292223822258794,0.0312245675845515,0.0332249909714698,0.035215562239656,0.0371317628785917,0.0390041493775933,0.040981306954561,0.0429618371468426,0.0575402207708198,0.07191175701814,0.0853163999874257,0.0979741089441829,0.1100526870389884,0.1252602542829664,0.1354313515576142,0.1453634884685317,0.1548000170743159,0.1636108402361791,0.1753115382132019,0.1864657753374909,0.1966675356273896,0.205854074252125,0.214336752080379,0.2247385024074381,0.2328515228850675,0.2403650774049417,0.2482649306538352,0.2552889945481353,0.2612353715116681,0.2663127187864644,0.2720239993386009,0.2777013693715242,0.2817579114499375,0.2852752062356311,0.2881070354330217,0.2914204559864066,0.2950663157351499,0.2979833147211456,0.2956466893904828,0.2936805012819986,0.2893324717649042,0.2864882779290768,0.2835462548537214,0.2802222968640264,0.2768101065929728,0.276969696969697,0.2773536028359125,0.2768359569769926,0.2773167358229599,0.2764992407659389,0.2773063578982569,0.2780318069279325,0.2796054999640054,0.2817132157902949,0.2829182002339582,0.2858673726676752,0.2898316403641348,0.2948057097541633,0.2986479079115658,0.3032961190855928,0.3064709218070695,0.3092728383745799,0.313410393759985,0.3171337353671514,0.3179581795817958,0.3222516826432796,0.3213495575221239,0.3218216318785579,0.0,2.401790474093384,46.7859761506775,152.73086719082957,190.52324098072415,fqhc3_100Compliance_implementation_low_initial_treat_cost,34 -100000,95700,48846,465.0783699059561,4817,48.975966562173454,3771,38.79832810867293,1433,14.618599791013583,77.3419109081298,79.7101607189137,63.33255108723839,65.08069501306296,77.15621419398475,79.52828027983797,63.26209293357367,65.0137826940158,0.1856967141450525,181.88043907572649,0.0704581536647168,66.91231904716233,231.09152,162.61105608920238,241474.9425287356,169917.5089751331,540.53649,364.483180562692,564220.1149425288,380256.36422433873,489.93932,241.72715814739576,507742.34064785787,249347.39731936064,2452.58117,1158.2405524274332,2526680.3239289448,1174182.290937757,859.18132,392.8911534226597,881046.3427377221,393804.7893653711,1387.13732,594.3589158645735,1416284.6812957155,593204.1201692624,0.38221,100000,0,1050416,10976.133751306164,0,0.0,0,0.0,46982,490.3134796238244,0,0.0,44247,458.1086729362592,1110797,0,39838,0,0,0,0,0,87,0.9090909090909092,0,0.0,0,0.0,0,0.0,0.04817,0.1260301928259334,0.2974880631098194,0.01433,0.3485361481776538,0.6514638518223461,23.92264190211174,4.0260682870897,0.3099973481835057,0.2824184566428003,0.2068416865552903,0.2007425086184036,11.07802497626821,5.953100175612701,15.334793119175757,11432.669826315436,43.120871244965045,13.101936856774408,13.196847257419169,8.611241830950615,8.21084529982085,0.5751789976133651,0.7887323943661971,0.6869118905047049,0.5820512820512821,0.095112285336856,0.7647569444444444,0.9083333333333332,0.8858024691358025,0.7301587301587301,0.1257861635220125,0.4917907598319969,0.6905982905982906,0.6106508875739645,0.5346869712351946,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026632372002592,0.0048241613459004,0.0071616960843984,0.0096591370764605,0.0117541790377028,0.0141117536857538,0.0164429085497008,0.0186576304401077,0.0209934587080948,0.0231715554827748,0.0253513618796707,0.0276214728714009,0.0298530485484816,0.0320722836949578,0.034125501769738,0.036098246774727,0.0384121460676484,0.0405462904347284,0.0424854950402395,0.0444356443897914,0.0593426563201704,0.0730114201375441,0.0862029167978176,0.0993405345141306,0.1117017910258844,0.127306390181972,0.1377119093590206,0.1477010209404575,0.1573690282881805,0.1660623484734708,0.1780886835331243,0.1895506882520994,0.1997977007493773,0.2083210322016292,0.2171120642252282,0.2257511014678858,0.2340012712006155,0.2415669083347383,0.2494386354873097,0.2559842555723374,0.261932021880674,0.267310054395508,0.2727627702246991,0.2773698144399056,0.2814636693749165,0.2855012447928221,0.2900532081377152,0.2947069967324001,0.297591016120268,0.2998222631821473,0.2959217974748221,0.2915757251300636,0.2886221660700498,0.2860639216815433,0.283356523283697,0.2801897730046375,0.2769914573022728,0.276875786857638,0.2764620754235123,0.277290439671892,0.2772208844337421,0.2784613264562868,0.2801203560533244,0.2803442432890395,0.279014594167126,0.2795037504217602,0.2813404460586799,0.2856383311440545,0.2923383571703326,0.29614226869455,0.3019860342794958,0.3060641337707694,0.3090578346506084,0.3120960997491067,0.3172355588897224,0.315335538752363,0.312623423970834,0.3183665176757416,0.3194137168141593,0.3257229832572298,0.0,2.416242319683122,49.54545073285186,135.74468440448268,192.56611943762476,fqhc3_100Compliance_implementation_low_initial_treat_cost,35 -100000,95703,48390,461.37529649018313,4810,49.13116621213546,3827,39.35090853996218,1448,14.712182481217932,77.33810060160408,79.71969393922107,63.31256206328344,65.07447695180493,77.14853294187756,79.53528980306153,63.24175928865272,65.00822626782353,0.1895676597265208,184.404136159543,0.0708027746307138,66.25068398139433,230.17258,161.8611320289826,240507.1732338589,169128.58743088788,533.18394,359.2036102445964,556477.2995621873,374685.611744562,476.45206,233.77533624392933,493516.1384700585,240976.76361531683,2501.28564,1172.6659902180174,2575172.700960262,1187035.9314608993,871.09217,398.7796818916784,894831.9697397156,401391.5689636799,1408.76996,598.6597787506366,1434151.6775858644,593840.7843700656,0.38097,100000,0,1046239,10932.144237902678,0,0.0,0,0.0,46511,485.32438899512033,0,0.0,43033,445.346540860788,1120522,0,40232,0,0,0,0,0,85,0.8881644253576167,0,0.0,0,0.0,0,0.0,0.0481,0.1262566606294458,0.301039501039501,0.01448,0.3590203106332139,0.6409796893667862,23.454144395378428,4.121415361382877,0.320616671021688,0.2722759341520773,0.1978050692448393,0.2093023255813953,11.197653995055656,5.99899865382887,15.428338893274065,11352.56196306821,44.01482325343567,12.93443790027696,13.84080728996232,8.426599922213644,8.812978140982732,0.5853148680428534,0.8214971209213052,0.6976365118174409,0.5865257595772787,0.1048689138576779,0.7573333333333333,0.917995444191344,0.8899082568807339,0.7272727272727273,0.1639344262295081,0.5136935603256847,0.7512437810945274,0.6277777777777778,0.5438898450946644,0.087378640776699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022805132675194,0.004422803814161,0.0066603041809653,0.0090046141024859,0.0112636216562713,0.0136077980016093,0.0160128919078799,0.0182213733440918,0.0201155596461625,0.0223109609378999,0.0244465181144187,0.0266462669555484,0.0286968681239589,0.0307804792651405,0.0328869999381047,0.0349189289737203,0.0373568573854341,0.0394048804780876,0.0412222152912066,0.0433147559768737,0.0580230797347397,0.0717276609999162,0.0850016788382439,0.0979585826821341,0.1099147930990846,0.1253596513497503,0.1356146214653297,0.1450795408565283,0.1538683479375935,0.1627545218529405,0.17450843074934,0.1852144542836729,0.196160167176395,0.2046108564113225,0.2139272823311911,0.2239669329905475,0.2326134536358763,0.2407351137220477,0.2485580634906217,0.2553345098668378,0.2605031315481772,0.2663771813808682,0.2714992659942226,0.2770309130122214,0.2806578563793606,0.2843629367438304,0.2887750757594731,0.2923202281523732,0.2955175181914701,0.2981593312412647,0.2956235294117647,0.2923410920882684,0.2890192107557731,0.2854217440837575,0.2836004566548549,0.2810431539202348,0.2775198938992042,0.277763235390354,0.2778449435523694,0.2787453966446654,0.2799477221807319,0.2811392803716243,0.2815422511690046,0.2811817168338907,0.282175255511142,0.2830568904045884,0.2850285197944315,0.2899956340048649,0.2943200778642936,0.2979090659448433,0.3022046961821115,0.3067885117493472,0.3103576060774504,0.3124766947572526,0.3145406051687667,0.3190747413692897,0.3243283582089552,0.3263697280252266,0.3297701763762694,0.3277404921700224,0.0,2.4708623733347266,48.58435333769249,148.27142093783678,191.7189706406672,fqhc3_100Compliance_implementation_low_initial_treat_cost,36 -100000,95657,48161,458.35641928975406,4800,49.03979844653293,3813,39.33846974084489,1482,15.137418066633913,77.27782633283482,79.6867376498433,63.2892740309558,65.07142639087375,77.08907468367171,79.50194116335194,63.21825376675031,65.00454042244341,0.1887516491631089,184.79648649135072,0.0710202642054866,66.88596843034134,228.86644,161.03420888756864,239257.3883772228,168345.45186193235,533.66922,359.7908649603926,557411.6687748936,375638.92340382055,484.70116,238.2286447241405,503569.6498949371,246691.3447732681,2506.50065,1177.9712609808366,2588129.0339441965,1199282.0190690025,895.35078,403.2040906544297,924675.1309365756,410184.0959411535,1445.32098,611.3439130852786,1477888.0792832724,610269.1858828695,0.37833,100000,0,1040302,10875.33583532831,0,0.0,0,0.0,46322,483.7283209801688,0,0.0,43853,455.3247540692265,1123879,0,40338,0,0,0,0,0,104,1.076763854187357,0,0.0,0,0.0,0,0.0,0.048,0.1268733645230354,0.30875,0.01482,0.344034879112168,0.655965120887832,23.5294802914681,4.188031643406192,0.2976658798846053,0.2690794649881983,0.2250196695515342,0.2082349855756622,11.46870588617478,6.180815882461235,15.800048469590228,11337.727054008148,43.990531082370126,12.62163034243338,13.090236087551103,9.584512763355551,8.694151889030094,0.5908733280881195,0.8138401559454191,0.7242290748898679,0.6002331002331003,0.1020151133501259,0.7690956979806848,0.9434389140271492,0.8629737609329446,0.7712765957446809,0.108433734939759,0.5149588631264024,0.7157534246575342,0.6641414141414141,0.5522388059701493,0.1003184713375796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026852846401718,0.00520241765374,0.0073599577690699,0.0098986757726353,0.0121369347372704,0.0142826580821303,0.0167465578786333,0.0188137722532607,0.0209590638489392,0.0232839245654111,0.0253028236187037,0.0273229656716724,0.0296447974975304,0.0320329811904148,0.0341940346276546,0.0363865789582557,0.0382789993989761,0.0401636450480759,0.0421973859473859,0.0441786749525577,0.0590423642025623,0.0731357352325094,0.0864202714476156,0.0991570284463434,0.1119553402771182,0.1270138668360326,0.1380222160864855,0.1488536606153584,0.1577151779603011,0.166115596015115,0.176862905658751,0.187623821329205,0.198376248830072,0.2080114668358973,0.2163518689737155,0.2248025083927008,0.233244027684751,0.2408082444534449,0.2477081915135012,0.2538908724709329,0.2593602977724861,0.2644529606954245,0.2693167173108528,0.2741516236838637,0.2775450228909371,0.2807030518167924,0.2847972972972973,0.2884564014501049,0.291799966324297,0.2950664011499861,0.2916066112585369,0.287861255751164,0.2853174267422512,0.2827438618814887,0.2808201864600835,0.2766100864023531,0.2732830714647744,0.2733217231294976,0.2733687573681423,0.273823970304804,0.2743513478122603,0.2752635943608577,0.276257187663356,0.2771586502028262,0.2775101267946597,0.2799034994422683,0.2811683145812024,0.2859744418977047,0.2895384831855916,0.2918274010737721,0.2948274291958838,0.3008521674694331,0.3073256397390868,0.311363117436639,0.3143499437991757,0.3226074566611256,0.3291934989267095,0.3327892266884309,0.3308333333333333,0.3333333333333333,0.0,2.06358787588873,49.655655268356426,144.62121262521785,193.68542122415948,fqhc3_100Compliance_implementation_low_initial_treat_cost,37 -100000,95822,48165,459.80046335914506,4923,50.28072885141199,3861,39.750787919266976,1475,15.05917221514892,77.39792083527668,79.70312002963418,63.37134666233784,65.07221123996459,77.21260532158878,79.51905334826994,63.30167756185213,65.0048661256101,0.1853155136878967,184.06668136424287,0.0696691004857115,67.34511435448098,230.9879,162.39660331649034,241058.44169397425,169476.5089307821,536.7208,361.8286545763305,559559.4748596356,377045.02575384616,480.62297,235.86169823992944,497871.5326334245,243281.14097129903,2506.16838,1162.069537807704,2583103.900983073,1180727.957328287,867.96402,388.8634381577914,894386.5604975893,394568.8054313114,1438.798,609.7003665395983,1470778.2137713677,611250.6599318312,0.37938,100000,0,1049945,10957.201895180648,0,0.0,0,0.0,46851,488.34296925549455,0,0.0,43427,449.5522948800901,1117879,0,40025,0,0,0,0,0,96,0.9914215942059236,0,0.0,2,0.0208720335622299,0,0.0,0.04923,0.129764352364384,0.2996140564696323,0.01475,0.34050804731433,0.65949195268567,23.34586071647275,4.1111554903764524,0.3108003108003108,0.2727272727272727,0.2069412069412069,0.2095312095312095,11.12340808690245,5.971617293832473,15.796582805505736,11217.10026085066,43.97093921279084,12.965978257527768,13.464399030622484,8.782078902782493,8.758483021858094,0.5822325822325822,0.811965811965812,0.7116666666666667,0.5782227784730913,0.0951792336217552,0.74235807860262,0.9206008583690988,0.8571428571428571,0.6722222222222223,0.135593220338983,0.5147275405007363,0.7257240204429302,0.6583143507972665,0.5508885298869144,0.0838607594936708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002318376933668,0.0044685831247656,0.0068259039505045,0.0088644740716671,0.0109080188679245,0.0130467525594838,0.0152126510566322,0.017209895434838,0.0193309765617017,0.0213112070553088,0.0235743704280474,0.0256578609899974,0.0276776082601325,0.0295337374069995,0.0315698339568968,0.0335140157968096,0.0355871886120996,0.0376750308344475,0.0399160972773151,0.0419212155903627,0.0558812484352833,0.0700218589522345,0.0837055677886127,0.0959565162538374,0.1084408466143857,0.1240525598063363,0.1345986639804898,0.1445386915848064,0.153665388436108,0.162682453374516,0.1743873024077185,0.1852781172602502,0.1960191757889358,0.2053633898898023,0.2135443010137884,0.2224509901592889,0.2305488355500061,0.2391367876812408,0.2452964910689999,0.2510579892485416,0.2569569638977488,0.2629206134152466,0.2676327702982234,0.2727109601167548,0.2773119426134161,0.2817083215519467,0.2852899699234983,0.2877946063881066,0.2921272858766401,0.2954261598937722,0.2932014369202724,0.2896946617169628,0.2873034354089806,0.2842860841796369,0.2813258001538188,0.2789036924248191,0.273778981001999,0.2733980899518407,0.2736278674596432,0.2735155111758644,0.2751238961135745,0.2751783363137933,0.2764029496312961,0.2760088237260188,0.2775512162356666,0.2784645751090795,0.28,0.2860644147682639,0.2899615250087443,0.2942870669928193,0.2996184939594877,0.3027250556674796,0.3059814023624026,0.3081470253884047,0.3109527381845461,0.3144876325088339,0.3172843256379101,0.3207509486718594,0.3229026166711626,0.3228346456692913,0.0,2.037065128538176,49.86522905322075,137.89516044444093,202.07851724590117,fqhc3_100Compliance_implementation_low_initial_treat_cost,38 -100000,95545,48294,461.2590925741797,4808,49.04495264011722,3831,39.43691454288555,1468,15.05049976450887,77.19945181010942,79.67064453055862,63.224607941291474,65.05369176602733,77.00828125716626,79.48065909924694,63.15161910407766,64.9833583911663,0.1911705529431628,189.98543131168333,0.0729888372138134,70.33337486102198,228.48188,160.7521765787752,239135.13004343503,168247.40364682296,535.5311,361.0050520312174,559835.0410801193,377172.41944716114,481.19827,235.8731969284799,498382.68878538907,243087.2567187781,2508.58758,1179.4262887813202,2588270.542676226,1197178.7847150555,905.19059,413.790404195412,933277.9109320216,418993.723117573,1428.70676,618.5134154850974,1466815.4272855725,622990.4368532434,0.37992,100000,0,1038554,10869.778638337955,0,0.0,0,0.0,46673,487.8015594745931,0,0.0,43486,449.9659846145795,1119888,0,40215,0,0,0,0,0,84,0.8791668847140091,0,0.0,0,0.0,0,0.0,0.04808,0.1265529585175826,0.305324459234609,0.01468,0.3652766639935846,0.6347233360064154,23.320810223424758,4.090899299350901,0.3014878621769773,0.2785173583920647,0.2101279039415296,0.2098668754894283,11.45944175889807,6.412931975320536,15.763351928190072,11337.933716969408,43.99589981908986,13.049493288068794,13.022976132568225,8.927947689289557,8.995482709163284,0.5815713912816497,0.795688847235239,0.7038961038961039,0.5850931677018634,0.1181592039800995,0.7312013828867762,0.90625,0.8679245283018868,0.7419354838709677,0.1268292682926829,0.5168287210172027,0.715670436187399,0.6415770609318996,0.5379644588045234,0.1151919866444073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024936391927096,0.0045555082080314,0.0068852059468681,0.0089576216040344,0.0112696990674756,0.0132622479561255,0.0154309333061182,0.0174432863274065,0.0198117069177241,0.0219719406839586,0.0243899935329562,0.0263230954315033,0.0283928240406994,0.0308016050668949,0.0328517691798941,0.0350388688190296,0.0370239774330042,0.0391914362918312,0.0412070456131579,0.0431469166605768,0.0580968420171759,0.072364833689862,0.0851124215571883,0.0978357076624799,0.1094129832794301,0.1253670896812018,0.136633473764841,0.1464354322305229,0.1557846015385604,0.164187612256531,0.1751503958353584,0.1866053114248814,0.1974690448917253,0.2067085677931707,0.215893162628994,0.2246278604754499,0.2329994964471549,0.2412547957571654,0.2485718187404693,0.2548810180080852,0.2607419949667737,0.2660741921868405,0.2711542794796077,0.2742717863746608,0.278434475622375,0.2826879130381076,0.2860371105029251,0.2897791041730436,0.2933380065944907,0.2958603359344002,0.2933619421615859,0.2900821208112875,0.2871541139820414,0.2849873509215757,0.2830118528873752,0.2795616522338877,0.2765300304105423,0.2765272255266011,0.2772256905841102,0.279032344579735,0.279906191369606,0.2808797642358432,0.2817966108812968,0.2826427420798281,0.2827033659745446,0.2843165392543116,0.284504391468005,0.2883993849822712,0.2915351707693386,0.2958358002762976,0.3032281302057539,0.3051549635534113,0.3094025586883617,0.313342876516236,0.3164181868691545,0.3200375410605349,0.3299263490154817,0.3307616221562809,0.3320744537361748,0.3386183465458663,0.0,2.516792729710388,50.202853237433565,135.7190379684205,201.69963966209133,fqhc3_100Compliance_implementation_low_initial_treat_cost,39 -100000,95673,48678,465.596354248325,4933,50.21270368860598,3938,40.4920928579641,1484,15.14533881032266,77.33990302576841,79.73014613490365,63.32261558699434,65.08883550536022,77.15294437896651,79.54615041126272,63.253110715301226,65.02286502939808,0.186958646801898,183.9957236409333,0.0695048716931125,65.97047596214622,229.61114,161.6341010863308,239995.7563784976,168944.3218947151,540.41141,363.89691665903786,564197.4642793683,379699.7550605059,490.46872,240.79236124366895,507829.56529010274,248095.9292143981,2558.24789,1198.632642568966,2634330.521672781,1213573.6015057694,938.15584,422.4065297811241,963576.8189562364,424501.7296218614,1454.08044,612.0388502398114,1485890.1884544229,610397.0905624884,0.38133,100000,0,1043687,10908.898017204436,0,0.0,0,0.0,47143,492.0615011549758,0,0.0,44358,458.7814743971653,1117583,0,40099,0,0,0,0,0,80,0.8361815768294085,0,0.0,0,0.0,0,0.0,0.04933,0.1293630189075079,0.3008311372390026,0.01484,0.3522550544323484,0.6477449455676516,23.224753581085043,4.162653918028024,0.3039614017267648,0.2841543930929406,0.1934992381919756,0.2183849669883189,11.430786109853036,6.084931141384153,15.7585875097455,11373.116050709656,45.09082037581074,13.7856465618304,13.498109899985993,8.557576681650424,9.249487232343924,0.5733875063484002,0.8105451295799821,0.6875522138680034,0.5551181102362205,0.1220930232558139,0.7521815008726004,0.9108695652173912,0.8359621451104101,0.7416267942583732,0.14375,0.5,0.7405159332321699,0.634090909090909,0.484629294755877,0.1171428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0044599868227662,0.0066665990197968,0.0087961646284483,0.0107989384094444,0.013080478022761,0.0153708158356097,0.0175246999265126,0.0196475302584232,0.0218837642531065,0.024183710082526,0.0263195713317867,0.0286792530437643,0.0306944358609892,0.0327474636970679,0.0345840096773193,0.0365182798595211,0.0384978669960453,0.0404552121584088,0.0423329511101845,0.0576744283222079,0.0724897138729231,0.0856948014478308,0.0987954342222923,0.1110747742425521,0.1259600939463828,0.1374539821976086,0.1478915213828043,0.1575923275733174,0.1676333422674886,0.1794071090914964,0.1902072785494828,0.2002805079585979,0.2079986009552852,0.2168392328598307,0.2260129112270094,0.2346346904629113,0.2415360043191685,0.2484378366731308,0.2553323029366306,0.2610998057533993,0.2663939694968737,0.2720188259779575,0.2763025572263193,0.2808632988790216,0.285141155332398,0.2896627556821731,0.2922080396265955,0.2946791174112108,0.296990945156911,0.2937339448307398,0.2904684043474079,0.2882543255028836,0.2853616640443437,0.2827722302179622,0.2784997632973443,0.2750355057598233,0.2752933091159,0.2756047393203801,0.2766671401178893,0.2778461194363677,0.2783075440907571,0.2795419052576783,0.2800561047288271,0.2805970864481503,0.2812573000752719,0.2829781800641262,0.2878849588019674,0.291885091214091,0.2961489998424949,0.3006279080272846,0.3034857353794231,0.3065967016491754,0.3078959310240508,0.3089688607122879,0.3144743045733145,0.3200670936261055,0.3242694805194805,0.3307522123893805,0.3349961627014581,0.0,2.606256270686863,49.157142522094645,151.26888223344577,199.6755359574378,fqhc3_100Compliance_implementation_low_initial_treat_cost,40 -100000,95786,48425,461.9464222328942,4834,49.172112834861046,3858,39.713528072996056,1475,15.00219238719646,77.331780499572,79.67368374550408,63.32970022966426,65.06337454452137,77.13764371883761,79.4842811915725,63.25504893534702,64.99338553779444,0.1941367807343965,189.402553931572,0.0746512943172419,69.98900672692798,227.97082,160.4375868794054,238000.1461591464,167495.86252626206,541.79973,365.9576144550376,565075.8043973023,381497.7078644453,489.77696,240.72333889027965,508134.7900528261,248754.78988775867,2468.27026,1174.6680203479325,2542056.469630217,1191543.61842851,838.44777,390.13408228448856,860864.8027895518,392828.0461492157,1421.61948,620.102596847957,1447256.9686593032,614595.1654766563,0.37983,100000,0,1036231,10818.188461779384,0,0.0,0,0.0,47229,492.4832438978556,0,0.0,44301,459.37819723132816,1123019,0,40362,0,0,0,0,0,85,0.8769548785835091,0,0.0,1,0.010439939030756,0,0.0,0.04834,0.127267461759208,0.3051303268514687,0.01475,0.3644101346001583,0.6355898653998416,22.747779687149027,4.008107873939811,0.324779678589943,0.2840850181441161,0.1990668740279937,0.1920684292379471,11.152322570857727,6.168205637219086,15.983331355584024,11286.10748889444,44.7029276441865,13.469562629464944,14.414980381388183,8.683452905379772,8.1349317279536,0.5813893208916537,0.7974452554744526,0.6911412609736632,0.5703125,0.087719298245614,0.761400651465798,0.9085239085239084,0.8706199460916442,0.7572815533980582,0.1117647058823529,0.4973384030418251,0.7105691056910569,0.6156462585034014,0.501779359430605,0.0805604203152364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024309951886553,0.0049166700458213,0.007093062193674,0.0094376041285708,0.0116653953724891,0.01374759417102,0.0157725168736363,0.0178855812813916,0.0198626075933839,0.0219071505348825,0.0240702013367777,0.0262236505703695,0.028338748817505,0.0303567197849174,0.0324584851330849,0.03449808745994,0.0365487385558639,0.038636269344065,0.0405919398083678,0.042683244301438,0.0574374386909607,0.0708614467283853,0.0844341007254581,0.0965992685695069,0.1080141208704357,0.1238256274768824,0.1339347233853101,0.1440087632538897,0.1541400730036075,0.1626912691269127,0.174895037140704,0.1855826229933797,0.1957086772590345,0.206247470714981,0.2156441920359242,0.2250451508537112,0.2331380753138075,0.2411097865449065,0.2481459642120064,0.2541177817203686,0.2596950747286535,0.2651389440717975,0.2710477136706645,0.2761603527184721,0.2800437131928844,0.2836981708820194,0.2861256118476233,0.2891642996344368,0.2929209158880926,0.2965895892725161,0.2934558813634589,0.2898550724637681,0.2864818487418597,0.2836519027545187,0.280502827290402,0.2766358001071401,0.2739416000633061,0.2735311971911863,0.2731107505763812,0.2734398660324586,0.2744434050514499,0.2758940005910748,0.2766375865603883,0.2778459410623062,0.2787944284341979,0.280506842899516,0.2825907942187012,0.2865851752274361,0.2915708812260536,0.2965854427884236,0.2996829710144927,0.3024707687423946,0.3061803061803061,0.3120394986707178,0.3146813886029755,0.3212392507951466,0.3204462102689486,0.3231878253904686,0.3272976680384087,0.3273577552611068,0.0,2.2394640734748235,53.65743629003133,141.09514897510022,190.1401895538307,fqhc3_100Compliance_implementation_low_initial_treat_cost,41 -100000,95674,48662,464.2222547400547,4915,50.01358780860004,3909,40.13629617241884,1478,14.936137299579825,77.34192318165195,79.71753761338837,63.32298576779221,65.07508567851863,77.14426396115611,79.52667204528738,63.24714710455629,65.0048027825449,0.1976592204958365,190.86556810098895,0.0758386632359275,70.28289597373316,229.83862,161.76371787697428,240231.01365052155,169078.0336109855,540.81869,364.3848367665311,564558.5320985848,380148.4414531324,488.21824,239.18415317230637,505708.4996968874,246386.11676777812,2532.62573,1189.0909919054145,2602784.152434308,1198603.6803389138,896.19991,408.5816244386706,916754.144281623,407148.05056161183,1432.96602,620.5777447916205,1451353.011267429,610447.9339798103,0.38245,100000,0,1044721,10919.59152956916,0,0.0,0,0.0,47147,492.0459058887472,0,0.0,44103,456.4144908752639,1113877,0,39947,0,0,0,0,0,87,0.9093379601563644,0,0.0,1,0.0104521604615674,0,0.0,0.04915,0.1285135311805464,0.3007121057985757,0.01478,0.3534449202024134,0.6465550797975866,23.602853988771955,4.047047475084458,0.3054489639293937,0.2824251726784343,0.2092606804809414,0.2028651829112304,11.272555417048196,6.169766492522755,15.873598497964734,11389.003795166687,44.76412453524743,13.46922583191052,13.504487648200616,9.14541096751177,8.645000087624522,0.5712458429265797,0.7753623188405797,0.6800670016750419,0.5794621026894865,0.1147540983606557,0.7271952259164536,0.8955555555555555,0.8299120234604106,0.7336683417085427,0.1147540983606557,0.5043859649122807,0.6926605504587156,0.6201641266119577,0.529886914378029,0.1147540983606557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024604355882263,0.0046827013713625,0.0068880164744311,0.0092327381315131,0.0113491910142068,0.0135102115615646,0.0159451909548763,0.0181042141055619,0.0203282376399611,0.0226490825688073,0.0249466819785087,0.0270381285877121,0.0290871689380303,0.0312097513729611,0.0332899789421528,0.0352840198136523,0.0373121186695256,0.0394436371185385,0.0414422096965411,0.0434234384443842,0.0577973697130501,0.0719573617030188,0.0855883279101501,0.0982342046554699,0.1104896580835795,0.1257157372225691,0.1360460424320937,0.1458901482870291,0.1553526758033824,0.164924107430387,0.1763906709940373,0.1877416629661319,0.1981797596237589,0.2069697699363001,0.2158654322482634,0.2249786710691057,0.2341021747867637,0.2427135282396514,0.2494356275028076,0.2549877453787479,0.2605641951309821,0.2656994091148423,0.2709442984636507,0.2764830000479547,0.2809758705319174,0.2851984669796789,0.2888101557413992,0.2926965791850598,0.2966820837705831,0.2998996858583458,0.296906799649572,0.2942327298779311,0.2911240768927222,0.2878731020148952,0.284117856295945,0.2807808037146217,0.2763149586411568,0.2783277065783867,0.2779588145974442,0.2782475566553326,0.2777850430623797,0.2778808208366219,0.2787005118562624,0.2805087582282717,0.2806110233204041,0.2817218783185267,0.2835850444029639,0.2887967322503196,0.2932550300587274,0.2978740126537509,0.2994025425632272,0.3054347256433101,0.3066217312613118,0.310809798486778,0.3165926748057713,0.3179552567520575,0.3222833358109112,0.3234946871310508,0.3351264120494889,0.3451066961000736,0.0,2.814858531874607,50.52515070547839,141.07100202583328,202.27520272602908,fqhc3_100Compliance_implementation_low_initial_treat_cost,42 -100000,95732,48565,463.61718129778967,4841,49.36698282705887,3850,39.56879622278862,1463,14.843521497513892,77.32392886815877,79.68882103889324,63.31606620966248,65.06520567200057,77.13552812501221,79.50611636713624,63.24437414191531,64.99868910205905,0.188400743146559,182.70467175699423,0.0716920677471719,66.51656994152688,230.43658,162.17970681583688,240710.08649145527,169410.13121614183,541.09464,364.5442373332852,564597.2088747754,380175.69604028447,483.74622,237.0040246966283,501456.9527430744,244435.18008739653,2459.64859,1153.10437111002,2530394.6120419507,1165601.0018698245,882.97375,399.2886394463805,904813.6986587556,399564.5546383443,1416.42118,606.5840830596541,1438833.3681527595,598760.2623806731,0.38096,100000,0,1047439,10941.367567793422,0,0.0,0,0.0,47223,492.6252454769565,0,0.0,43699,452.6595077925877,1112584,0,39985,0,0,0,0,0,89,0.9192328583963564,0,0.0,1,0.0104458279363222,0,0.0,0.04841,0.1270737085258294,0.3022102871307581,0.01463,0.3725994852504454,0.6274005147495545,23.439495093555426,4.015250969347065,0.3194805194805195,0.2862337662337662,0.1961038961038961,0.1981818181818181,11.4054874744245,6.231700018661976,15.652460123064918,11377.080209937096,44.30742619635423,13.517245054049551,14.053480909047964,8.401813223937118,8.334887009319596,0.592987012987013,0.8112522686025408,0.691869918699187,0.5814569536423841,0.1297509829619921,0.7513089005235603,0.9235807860262008,0.8314285714285714,0.7028571428571428,0.147239263803681,0.525887573964497,0.7313664596273292,0.6363636363636364,0.5448275862068965,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022182381719286,0.0045118575672469,0.0067793857957659,0.0092970798024751,0.0114029377059852,0.0136048879837067,0.0158534347409416,0.0180571008604938,0.020407119999182,0.0226272140882563,0.024749582209828,0.0271155465204624,0.0292693458347469,0.0313024669104393,0.0334743576514291,0.0354030782588921,0.0370918959231024,0.0390156311626844,0.0408776581916497,0.0427059240274218,0.0581012935759701,0.0717514124293785,0.0848897324846107,0.0977517928873372,0.1102299929346507,0.1256148516422489,0.1374744012817928,0.147473779481446,0.1571616266276424,0.1666970421432936,0.1782980784756983,0.1890585461859549,0.1996238639822585,0.2082741127850786,0.216822286009656,0.2264572997873848,0.2348858488250128,0.2431580842635938,0.2503689576096088,0.2570075779288523,0.2623036285277353,0.2680738415405519,0.2718653709409813,0.2762289772318322,0.2809622845745004,0.2846325551568069,0.2875629494149775,0.2906726445975723,0.2945217019401495,0.2976531649916137,0.2948911403319681,0.2921741045012316,0.2888622754491018,0.2855470443705737,0.2830903097437116,0.2786471864779778,0.2744881367704864,0.2743278844108455,0.2744009401025257,0.2749519812193213,0.2759488948988156,0.2774211334724902,0.2778044153515812,0.2785018460032916,0.2789607158237236,0.2797240878562352,0.280511616061575,0.2840635079698118,0.2877110628459329,0.2920749051833122,0.2951940934003714,0.2997944447372582,0.3025897035881435,0.3068806993744818,0.3116226838854576,0.3159136486964728,0.3196511802736431,0.3186899392037654,0.3170924414011061,0.317910447761194,0.0,2.5610785744114053,49.555398323707806,146.95169693074922,192.99763640454137,fqhc3_100Compliance_implementation_low_initial_treat_cost,43 -100000,95789,48549,462.94459697877625,4885,49.70299303677875,3850,39.54525049849148,1427,14.50062115691781,77.4066300966336,79.74668417589973,63.35719594835807,65.08824088481948,77.21950059733533,79.56429873634944,63.28548237386715,65.02098943203382,0.1871294992982797,182.3854395502877,0.0717135744909214,67.25145278566913,230.48234,162.15335852191487,240614.62172065687,169281.81578460455,540.59893,364.66654999755934,563708.2754804832,380041.6958080357,487.84329,239.33313069234435,505611.3958805291,246928.5487450849,2514.68821,1197.7719978671664,2586165.1024647923,1211355.664916813,878.06326,409.2642198396587,903223.1571474804,413815.1456217925,1391.56226,606.1651564772687,1416018.7077848187,600914.4292646338,0.38132,100000,0,1047647,10937.028260029858,0,0.0,0,0.0,47048,490.4947332157137,0,0.0,44104,456.75390702481496,1115261,0,40046,0,0,0,0,0,94,0.9708839219534602,0,0.0,0,0.0,0,0.0,0.04885,0.1281076261407741,0.2921187308085977,0.01427,0.3624042427813789,0.637595757218621,23.055926710209597,4.045532846107941,0.327012987012987,0.2690909090909091,0.1968831168831168,0.207012987012987,11.147924141473233,5.975795908637972,15.410896686660308,11332.124179812892,44.25019328384854,12.68724611637217,14.363179728197755,8.380509848060717,8.819257591217886,0.5867532467532468,0.8011583011583011,0.7148530579825259,0.5725593667546174,0.1191969887076537,0.7664172901080631,0.9106382978723404,0.8704225352112676,0.7938144329896907,0.1684782608695652,0.5051001133358519,0.7102473498233216,0.6537610619469026,0.4964539007092198,0.1044045676998368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0048467887489606,0.0069818654164256,0.0092762870467268,0.0115234792160372,0.0137675403759597,0.0160681878428253,0.0182207931404072,0.0203094975264728,0.0223914200335666,0.0243712464386004,0.0265971637900958,0.0287267719125143,0.0307191830179744,0.0325849414481279,0.0347893432465923,0.0371198013656114,0.0392486160353299,0.0411831319543287,0.0430296720458094,0.0572337872384828,0.0714390294917381,0.0855091452229967,0.0984130320546505,0.1105690714263136,0.1260949965657526,0.1363005204413682,0.1463461313542652,0.1555911224925309,0.1647600685518423,0.1759680664493291,0.1873520094281482,0.1984440025643533,0.2074074882893113,0.2156195079086116,0.2248343308515228,0.2332344610718348,0.2408700050581689,0.2483813541064281,0.2544459957428303,0.2603604332597362,0.2661191396894751,0.27125439042562,0.2754318962730614,0.2797561952866041,0.2851107333776759,0.2880912764440219,0.2914447001385834,0.2947335723438127,0.2974348829541708,0.2946719435694478,0.2908781044269437,0.2888360443518883,0.2855493665040838,0.2828454983327158,0.2789079310818441,0.275028750571073,0.2742727554533144,0.2742410895785336,0.2745056422229297,0.2738431780984972,0.2740313951437474,0.274488228210771,0.2743990251467819,0.2751053245424035,0.2758451865594722,0.2772430485196442,0.2824853501999814,0.2873563218390804,0.292786808377618,0.2978399211257506,0.3017245870890429,0.3054254007398274,0.3096654275092936,0.3147843567251462,0.3189754192510912,0.3170548459804658,0.3228593872741555,0.3299108349094839,0.3304314912944738,0.0,2.57287576411576,51.77672274013826,138.49756885057755,194.12599206854864,fqhc3_100Compliance_implementation_low_initial_treat_cost,44 -100000,95691,48069,458.9877835951134,4771,48.64616317104012,3792,39.07368509055188,1441,14.672226228171928,77.29491858535671,79.6991670457109,63.29396199958445,65.07495812526135,77.11186441463676,79.51862956078321,63.2248708094724,65.00919425041131,0.1830541707199557,180.53748492768307,0.0690911901120543,65.76387485003465,229.4886,161.3690652688231,239822.09403183163,168635.14592047647,538.29075,363.7200128901375,561965.2945418064,379535.91965189285,479.97978,236.44496975343435,498198.1064049911,244426.7382039633,2447.60315,1158.9503628265447,2523067.1850017244,1176473.4083587956,880.7119,405.8694960363113,906105.7884231536,409881.0609527653,1390.81142,596.0970103598505,1417499.451359062,592119.0724996389,0.37896,100000,0,1043130,10901.004274174164,0,0.0,0,0.0,47054,491.1433677148321,0,0.0,43321,449.3839546038813,1118937,0,40133,0,0,0,0,0,77,0.7942230721802468,0,0.0,0,0.0,0,0.0,0.04771,0.1258971923158117,0.3020331167470132,0.01441,0.3509197493430361,0.6490802506569638,23.33105989496905,4.033290862554195,0.3201476793248945,0.2805907172995781,0.202795358649789,0.1964662447257384,11.467720995667769,6.265904516612037,15.495748430738846,11338.293988597925,43.61888119631724,13.149783070564496,13.769572034798692,8.588597241740535,8.110928849213526,0.5933544303797469,0.8139097744360902,0.6985172981878089,0.5851755526657998,0.1154362416107382,0.7665827036104114,0.9216494845360824,0.8727272727272727,0.7162790697674418,0.1490683229813664,0.5140330642060746,0.7236614853195165,0.6334841628959276,0.5342960288808665,0.1061643835616438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024937403063448,0.0047692978984646,0.0069974102472959,0.0091810279091047,0.0114009996233598,0.0136271442112666,0.0158373811175966,0.0179399685335403,0.0198571837786962,0.0217580593941753,0.0240549828178694,0.0261654784163054,0.0284835201020796,0.0306503143357724,0.0326906005491442,0.0347990651306128,0.0368079087263344,0.0388920035715027,0.0408621837549933,0.0426516572858036,0.0573875802997858,0.0717262029398216,0.0850219848257479,0.0975789396155343,0.1094676429008503,0.1245318153924286,0.1355941198322984,0.1451994123033026,0.1543705191627579,0.1641257818451008,0.1758173102816825,0.1866480591977151,0.1971823330543205,0.2060170260198673,0.2148637653112836,0.2246050286195099,0.2330046183708529,0.2410386804977385,0.2483027179219363,0.2546707012355867,0.2604392169574328,0.2662570943771575,0.2712197431496715,0.2746816623102563,0.2789965986394558,0.2832615908334053,0.2871539992738836,0.2903660739270904,0.2945382606222038,0.2968422716673912,0.2931801384129543,0.290078640736725,0.2878027523580596,0.2855124693671615,0.2830843116328708,0.279367020869964,0.2771328251035966,0.276786153316615,0.2773960340329758,0.2776856852574728,0.2782644504342617,0.27938187057175,0.2808194836416849,0.2826106352605282,0.2839345839345839,0.2865215353367012,0.2884270462633452,0.293386874137282,0.2968073215034232,0.3008024032570457,0.3049584147616234,0.3088615611970233,0.3116258741258741,0.3147085472666868,0.3206491326245103,0.3207902163687676,0.3254766551568833,0.3265469061876248,0.323481998925309,0.3327130628954224,0.0,2.111167109910101,51.88513844615682,134.77309127264155,192.0750040534988,fqhc3_100Compliance_implementation_low_initial_treat_cost,45 -100000,95713,48172,459.4255743733871,4882,49.53350119628473,3901,40.09904610658949,1506,15.358415262294567,77.3593554540744,79.73056787029,63.33143217950936,65.08378222906717,77.16836792019274,79.54224324044736,63.25867772342581,65.01405206251188,0.1909875338816675,188.32462984264,0.0727544560835511,69.73016655528852,230.92696,162.34408886391392,241270.21407750252,169615.50558849258,538.7379,363.0140886431063,562242.6525132427,378648.1446022028,482.45068,236.9094347464115,499272.7947091827,243860.5358595782,2534.57942,1195.2214657414283,2608758.8624324803,1209553.567925042,908.74789,416.66266778603534,931749.5742480124,417623.7792003544,1457.7708,628.3254418153841,1488099.3386478326,627819.7904353129,0.38053,100000,0,1049668,10966.827912613751,0,0.0,0,0.0,46996,490.3409150272168,0,0.0,43680,451.57920031761626,1114521,0,39960,0,0,0,0,0,96,1.002998547741686,0,0.0,0,0.0,0,0.0,0.04882,0.128294746800515,0.308480131093814,0.01506,0.3701081612586037,0.6298918387413963,23.166797613906247,4.043884952202358,0.3096641886695719,0.2801845680594719,0.2073827223788772,0.2027685208920789,11.424037530200128,6.317337363240489,16.196586035712134,11331.211036119288,44.681517911671854,13.550583191984549,13.608941640474374,8.910864621989527,8.611128457223412,0.5847218661881569,0.8151875571820677,0.6928807947019867,0.5624227441285538,0.1238938053097345,0.7620660457239627,0.9230769230769232,0.8803680981595092,0.6926829268292682,0.1597633136094674,0.5077205882352941,0.7303921568627451,0.6235827664399093,0.5182119205298014,0.1141479099678456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801806911639,0.0045921315397325,0.0070220300973139,0.0091507383559139,0.0117242711733422,0.0137843973652865,0.0159233396197563,0.0179450013269909,0.0203532947598699,0.0225432283295283,0.0246731272111982,0.0266539302992019,0.0285196921684019,0.0308056872037914,0.032700781145198,0.0346702501550547,0.0368660254883894,0.038997676734152,0.04111354823955,0.0431431368872778,0.0585581822738284,0.0725700949251169,0.0856996003482529,0.098473218228849,0.1106998618624318,0.1264531962383506,0.1374344716344419,0.1476043441226575,0.1563411740817133,0.1643682725019049,0.1768141554774887,0.1874377516996492,0.1980286348405065,0.2072905153262784,0.2156940497433525,0.2245189908511228,0.2323989278534733,0.2401493762865145,0.2478187367393943,0.2540746085741447,0.2603067740144364,0.2661819202038741,0.2710876836345156,0.2754008135917684,0.2796361431170406,0.2835571089260002,0.286530622452297,0.2888903004509941,0.292260942652098,0.2961899619391289,0.2925024839549934,0.2900989691287697,0.2872713500168331,0.2843630509156772,0.2816307819708979,0.2788136367790878,0.2758354836679463,0.2751244186995186,0.2754772742713499,0.2751658801405102,0.2749808807893902,0.2760418716303963,0.2776523702031602,0.2780531368609064,0.2795449101796407,0.2802344580750577,0.2806664588705335,0.2855622339093413,0.2917989325705515,0.2963370972183971,0.300216958958597,0.3030414843708818,0.3049378062570674,0.309353600722402,0.311092577147623,0.3154636767110488,0.3171799516908212,0.327438903238625,0.3341456810181424,0.3328307576328684,0.0,2.5865718263362742,50.83698248670289,140.3956525926654,201.74701637401117,fqhc3_100Compliance_implementation_low_initial_treat_cost,46 -100000,95890,48295,459.99582855355095,4876,49.50464073417457,3920,40.30660131400563,1442,14.714777349045782,77.4394230829848,79.71873790955436,63.39129033748679,65.07680669361447,77.25228086716632,79.53471232666149,63.32039883528712,65.00940371186212,0.1871422158184827,184.02558289287185,0.0708915021996645,67.40298175235182,231.34628,162.75462623816634,241262.1545520909,169730.55192216742,540.05412,364.006318976148,562628.4909792471,379035.4088961767,487.89288,239.3754163078294,504831.8281364063,246640.99938385648,2549.87827,1199.0371720960236,2624089.425383252,1215673.8686974396,904.831,413.2644137174332,928109.7611846908,415602.5200561334,1404.5894,602.920479475771,1434132.5894253831,602749.3714724433,0.3795,100000,0,1051574,10966.461570549587,0,0.0,0,0.0,47068,490.25967254145377,0,0.0,44204,457.0236729585984,1113527,0,40002,0,0,0,0,0,94,0.9802899155282094,0,0.0,0,0.0,0,0.0,0.04876,0.1284848484848484,0.2957342083675143,0.01442,0.3674628034455756,0.6325371965544244,23.05341476392477,4.114707032453127,0.3214285714285714,0.275765306122449,0.2017857142857143,0.2010204081632653,11.682864711629955,6.442947524507664,15.38417614487453,11296.5907881353,44.84691881095694,13.31162543596034,14.260047152912096,8.756347813828555,8.518898408255946,0.6020408163265306,0.8371877890841813,0.7095238095238096,0.5916561314791403,0.1180203045685279,0.7619047619047619,0.9346846846846848,0.8434065934065934,0.7096774193548387,0.1614906832298136,0.5352622061482821,0.7692307692307693,0.6551339285714286,0.5553719008264463,0.1068580542264752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020449483701154,0.0042462199521666,0.0066951379096967,0.0090568489882118,0.0114649293097665,0.013654585783765,0.0159918512859689,0.018359853121175,0.0202382411834416,0.0221772131181079,0.0243140228283366,0.0266975846996778,0.0286598022894958,0.0304084657827555,0.0325779912987896,0.0344062038557252,0.0364787552116202,0.0385659517148482,0.0408106059819565,0.0429232769830949,0.0572789626201346,0.0715241060792877,0.085227808203399,0.0972639270940512,0.1093180909071769,0.1245262302178021,0.135282279419553,0.1450764538992019,0.1547752299934973,0.16470109800732,0.1756807602584362,0.1868659038604907,0.1968801599026679,0.205542321393448,0.2141184232228269,0.2236425614803993,0.2318743660904359,0.2402269152999326,0.2475900270732564,0.253374478541631,0.2596808829981296,0.2646863145608404,0.2694234404536862,0.273916216960023,0.2785918773351448,0.2833552769198587,0.2866942386265665,0.2900969740048741,0.2927241962774958,0.2956449682349691,0.2926825993555317,0.2895649670263377,0.2871073197423989,0.2848151402111449,0.2818816774689988,0.2784063186142961,0.2746414499605989,0.2744829162381442,0.2749927803353322,0.2753530622383081,0.2769035958362041,0.278545897325111,0.2801804798935418,0.2812216242553097,0.281177897766466,0.282254729659878,0.2841062584421431,0.2878059372770419,0.2921561852107809,0.2960819582388363,0.2983455140564049,0.3010279001468429,0.3046423466534087,0.3080343684051854,0.3106578085524469,0.3152558358877623,0.319259599204528,0.3234523089332526,0.3206877729257641,0.319045844204249,0.0,2.242982854022555,49.8854519826432,146.43586611735836,201.4892104425,fqhc3_100Compliance_implementation_low_initial_treat_cost,47 -100000,95738,48458,462.428711692327,4803,49.11320478806744,3805,39.16939982034302,1446,14.7799201988761,77.34647984393533,79.69827668311444,63.33814763576003,65.07511555949397,77.15841132114365,79.51258313453857,63.26723252933509,65.00717323811682,0.1880685227916814,185.69354857586973,0.0709151064249411,67.94232137714573,229.48156,161.4190882953652,239697.46600096097,168605.03488203767,532.96628,359.3251848884311,556114.9073513129,374743.7745601862,481.06337,236.13551015840176,498277.0895569157,243480.2310084148,2459.07588,1154.200607868694,2534999.049489231,1172166.3397724938,879.69421,396.6788904926157,902794.2927573168,398331.3126700521,1397.17754,598.7884561964621,1429246.8821157743,599181.4116560984,0.38054,100000,0,1043098,10895.339363680045,0,0.0,0,0.0,46445,484.509808017715,0,0.0,43423,449.4035806054022,1124807,0,40402,0,0,0,0,0,94,0.9818462888299316,0,0.0,2,0.0208903465708496,0,0.0,0.04803,0.1262153781468439,0.3010618363522798,0.01446,0.352025543803632,0.647974456196368,23.120105500121443,4.077383395308496,0.319053876478318,0.2804204993429697,0.2042049934296977,0.1963206307490144,11.172530189572417,5.946603692875282,15.579398369702531,11328.11565131778,43.71051652686116,13.027296897539026,13.789251117200946,8.656074080579828,8.237894431541358,0.5837056504599212,0.7966260543580131,0.6902800658978583,0.5855855855855856,0.1044176706827309,0.7394366197183099,0.92,0.8478260869565217,0.7354497354497355,0.08,0.5174222555264144,0.706645056726094,0.6334080717488789,0.5374149659863946,0.1118881118881118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875632975491,0.0045717645389208,0.0068296445134512,0.0092846549237114,0.0115931417414119,0.013774637563121,0.0158919469928644,0.0181467457312281,0.0203105355153274,0.0224934219282708,0.0246107483676544,0.0267177139572598,0.0287976147637896,0.030930064888248,0.0327373275693076,0.0348527131782945,0.0368165488109165,0.0388011080102501,0.0408619363422797,0.0430267680449953,0.0578053389290822,0.0714726783677143,0.0844322747825722,0.0978948918003827,0.1103321033210332,0.1251770875182373,0.1348458813296845,0.1448578239400647,0.1538190552441953,0.162554924445397,0.174578570044565,0.1859280724897818,0.1967945235249375,0.2061426511079061,0.21435322562919,0.2237495987869531,0.2316517085679246,0.2400908549132493,0.2471472970213924,0.2531229604863917,0.2584360617064088,0.2639687660728479,0.2702296579386395,0.275107861936721,0.2787458561523236,0.2827441035993894,0.2863538592366565,0.2896109513752831,0.2931818476247231,0.2965020386082045,0.2944018951987401,0.2920481728944981,0.2899168530789685,0.2877408182408543,0.2855659089560211,0.2818924375917768,0.277998800164188,0.277442366530866,0.2776433707022864,0.2784607447205963,0.2792017473444471,0.2816441374968026,0.2817990014831526,0.2818941504178273,0.2827919900354508,0.2837658450245972,0.283789545493306,0.287332227888496,0.2921450256481837,0.2965134582087202,0.3026655202063628,0.3083095766022595,0.313627878033603,0.319385593220339,0.3222877468875784,0.3253808905161214,0.326797385620915,0.3330638641875505,0.3343524180100055,0.3347622759158223,0.0,2.276996510207263,49.17497700676391,141.49359727827445,195.21398201194933,fqhc3_100Compliance_implementation_low_initial_treat_cost,48 -100000,95745,48428,461.60112799624,4887,49.8929448012951,3900,40.20053266489112,1527,15.572614757950806,77.41222784566315,79.76917118381613,63.350809200748486,65.09013356715738,77.22043339091405,79.58106034128406,63.27879441484775,65.02217355152708,0.1917944547491004,188.110842532069,0.072014785900734,67.96001563030529,229.52842,161.3992396626875,239728.42446080732,168571.5382157685,537.19091,362.219459097108,560523.1918115828,377776.4040828325,485.95257,237.97203007555072,504588.59470468434,246247.77340567368,2573.2789,1195.6703505459536,2654006.5695336573,1215236.2188803114,928.95862,421.120588041823,957412.1572928092,427097.2156956781,1491.0866,628.0671998450528,1521921.9384824273,625389.4673137943,0.37999,100000,0,1043311,10896.746566400334,0,0.0,0,0.0,46770,487.9210402631991,0,0.0,43907,455.689592145804,1123040,0,40209,0,0,0,0,0,95,0.9817745051960938,0,0.0,0,0.0,0,0.0,0.04887,0.1286086475959893,0.3124616329036218,0.01527,0.3620892018779342,0.6379107981220657,23.41078668947953,4.174293909478323,0.3071794871794872,0.272051282051282,0.202051282051282,0.2187179487179487,11.42927507724634,6.14833703696304,16.159650563176186,11335.807403160556,44.33359179184202,12.943993378529008,13.499392899453223,8.732615366733251,9.15759014712654,0.5756410256410256,0.8011310084825636,0.6953255425709516,0.5888324873096447,0.1148886283704572,0.7714033539276258,0.9337899543378996,0.8593272171253823,0.7916666666666666,0.1818181818181818,0.4954824719913263,0.7078651685393258,0.6337543053960965,0.5234899328859061,0.0974889217134416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0042973698880048,0.0064318467719027,0.008784222926314,0.0108886832928354,0.0133150099251794,0.0154717981123998,0.0177647623031948,0.0199997956076074,0.0220777891504605,0.0244014921702057,0.0264740904984807,0.0285488115798996,0.0304933936129676,0.0326375202501212,0.0348345616737128,0.0368222673238619,0.0390944367205494,0.0413690569019473,0.0432631206117049,0.0573785039411181,0.0714674367989285,0.0848744873018703,0.0974185811663721,0.1092798733843313,0.1251785770976856,0.1366699565941821,0.1464923394695655,0.156093391034888,0.1648333959328218,0.176632924765262,0.1879425712986422,0.1984456127747118,0.2076983709931686,0.2159813176766063,0.2249035177216874,0.2340183031075056,0.2422068561646921,0.2496991166519063,0.2556225498062771,0.2618909781400518,0.2669303130996396,0.2713129687906679,0.2760429139326596,0.279352865499915,0.2836133161036244,0.2867706758934259,0.2893484742752014,0.2934391329591639,0.2964145415369253,0.293321541512569,0.2900969225714598,0.2873216938037721,0.285295554469956,0.2828077314343845,0.2797655205928805,0.2758387997865729,0.2754386820835569,0.2752560738169813,0.2740358260685045,0.2738501483679525,0.27606162508798,0.2778931196279533,0.2782560584264689,0.2786326822296331,0.2799432477750548,0.2822846515821804,0.2870278330019881,0.2919905607995558,0.2947277779952248,0.2982929020664869,0.3033943654582656,0.3073291925465838,0.3128182090446241,0.3135468433646236,0.317493594223154,0.3203651054915457,0.3261428854146052,0.3301912200377053,0.3383458646616541,0.0,2.0156474042266312,49.39769873114583,141.38843015746167,204.52927695468696,fqhc3_100Compliance_implementation_low_initial_treat_cost,49 -100000,95729,48765,465.9194183580733,4859,49.50432993136876,3838,39.49691316111105,1473,14.969340534216382,77.32373385663094,79.69480781143274,63.321321634088775,65.0757169618332,77.13446272335389,79.50922444322438,63.24960223841877,65.00796791309352,0.189271133277046,185.58336820835564,0.0717193956700015,67.74904873967103,229.03144,161.21962265542732,239249.79891151065,168412.5214464032,540.9783,364.9428540229947,564531.4794889741,380642.1189221602,486.31616,238.9361802902066,504258.4378819376,246616.3793085769,2490.07375,1159.3231423229408,2563933.4162061657,1173810.6658619023,887.94243,398.5313681958893,913832.2347460018,402585.8393965141,1426.577,605.9017260902698,1451562.974647181,601635.1283189805,0.3825,100000,0,1041052,10874.99085961412,0,0.0,0,0.0,47114,491.5438372906852,0,0.0,43966,455.5672784631616,1119778,0,40185,0,0,0,0,0,84,0.8774770445737446,0,0.0,1,0.0104461552925445,0,0.0,0.04859,0.127032679738562,0.3031487960485696,0.01473,0.3669220192496563,0.6330779807503437,23.29161911834136,4.084166343661952,0.3150078165711308,0.2759249609171443,0.2071391349661281,0.2019280875455966,11.723091446366263,6.5507729540849695,15.711765933573997,11396.951148776903,43.91355552901369,13.06270437404658,13.603763171618423,8.91330560243474,8.333782380913947,0.585461177696717,0.8158640226628895,0.685690653432589,0.5849056603773585,0.1148387096774193,0.7544169611307421,0.934065934065934,0.8398692810457516,0.7302325581395349,0.0961538461538461,0.5147819660014782,0.7268211920529801,0.6334440753045404,0.5310344827586206,0.1195476575121163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316109422492,0.0046751244840629,0.0068717011774259,0.0088714102798609,0.0111102067393781,0.0133952673450885,0.0154917798719047,0.0175768284088936,0.0197151125336169,0.0217625070408111,0.0238642190544559,0.026076061169366,0.0282807291880992,0.0302761747732893,0.0323905862923203,0.034415738816694,0.0364466815809097,0.038597219340112,0.0406766972019173,0.0425762485802707,0.0571780601643503,0.071089154507965,0.0849934434828219,0.0987660814407287,0.1108123213852594,0.1263045478096285,0.1367219410759943,0.1464507273056173,0.1554473316031741,0.1645239805710732,0.176328086306768,0.1873154268035438,0.1976013395963813,0.2069772272573221,0.2158154678751746,0.2252992437244632,0.234661225764012,0.2424620292981037,0.2493368098855005,0.2569036125283122,0.2626350141512159,0.2682698933647905,0.2736477705049741,0.2783637212531874,0.2825559384555647,0.2860660682845147,0.2893285476669877,0.2932124279845858,0.2959764906920746,0.2983510617264423,0.295823525455646,0.2928815051160743,0.290150480721857,0.2879718037238729,0.2861236488894167,0.2823288383328746,0.2793277576140129,0.278560327198364,0.2795918367346939,0.279209117903309,0.279228298222023,0.2801868569401191,0.2817584807796879,0.2826717863999642,0.2832825142253487,0.2847664888773253,0.286576512455516,0.2907861635220126,0.2951394981575715,0.2986765231906522,0.3015460391298399,0.3053780617678381,0.3071590622636753,0.3093821510297483,0.3141869804800598,0.3142823334516625,0.3151368516558294,0.3231572604940751,0.32627003531649,0.3305407463823305,0.0,2.3744712007232702,49.02183573552663,139.88647594850138,200.59988039999595,fqhc3_100Compliance_implementation_low_initial_treat_cost,50 -100000,95788,48380,461.3834718336326,4895,49.8705474589719,3930,40.52699711863699,1524,15.5447446444231,77.38153749659537,79.72271165180116,63.350937847410606,65.08260148281703,77.17887209739523,79.52233715892007,63.27500008048976,65.00959767601123,0.2026653992001428,200.374492881096,0.0759377669208447,73.00380680580076,230.39302,162.1152717439332,240523.8860817639,169243.82150575562,540.77895,364.4964112918081,564045.9452123439,380012.5608022818,486.03004,238.30315878193213,504172.5685889673,246246.08822579007,2570.54401,1207.5364253075832,2652545.475424897,1229650.0491152655,921.20426,419.3042340220459,948038.95059924,424069.3239466791,1489.0304,638.3009607621581,1521110.7654403474,639038.1709004978,0.38123,100000,0,1047241,10932.903912807453,0,0.0,0,0.0,47132,491.5125067858187,0,0.0,43952,455.6625046978745,1116140,0,40059,0,0,0,0,0,81,0.8456174051029357,0,0.0,0,0.0,0,0.0,0.04895,0.1284001783700128,0.311338100102145,0.01524,0.3624213836477987,0.6375786163522013,23.17080986572127,4.030547966767594,0.3216284987277353,0.2748091603053435,0.1908396946564885,0.2127226463104325,11.493609950073012,6.281280979249138,16.45032984369542,11318.28706950256,45.15376639335166,13.217958866465812,14.4262070995394,8.325604726637101,9.183995700709348,0.573027989821883,0.8064814814814815,0.689873417721519,0.5426666666666666,0.1220095693779904,0.7482993197278912,0.9390519187358916,0.8478260869565217,0.7158469945355191,0.1153846153846153,0.4981844589687726,0.7142857142857143,0.625,0.4867724867724867,0.1238532110091743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027243816970163,0.0048654894885154,0.0070512560366868,0.009404547901242,0.0117941314028915,0.0139458656107169,0.0159620010600562,0.0181263331938476,0.02034580719001,0.022469150960771,0.0244912180025823,0.0268317217876865,0.028963900513063,0.0309504442819929,0.0331610813710018,0.0351707392674484,0.0372531975661244,0.0389032859956463,0.0409503132044503,0.0428644309556779,0.0572907426925605,0.0722159471218206,0.0854291375315812,0.098067648078681,0.1104425711275026,0.1253447747471651,0.1355361041052921,0.1457396481156647,0.1557357805997225,0.164580296664666,0.1759197468408929,0.186470556426756,0.196248274662812,0.2050354602178973,0.2129494187389329,0.2230191937304908,0.2312366214769889,0.2395032591593616,0.2466071813244748,0.2530600105241483,0.2590434571497936,0.2646876643487407,0.2706436123660619,0.2759078989906247,0.2802529218296782,0.2836904747252206,0.2876055352949992,0.2909042390972857,0.293469546101125,0.2966969261782105,0.2943493634126994,0.2912075834592664,0.2877606731770467,0.2853389916136203,0.2837867925368482,0.2805017800663132,0.2765527901328033,0.276225946617008,0.2761337204366797,0.2757941087693755,0.2762220813602297,0.2766736195836121,0.2776143688591276,0.2769659788064696,0.2783337323437874,0.2804111936036551,0.2825206131527498,0.2885797173784197,0.2912202588006122,0.2953453571709852,0.2973339358337099,0.3017664118112312,0.3058742398595699,0.3108804364297621,0.3148355754857997,0.3152888680131517,0.3153439153439153,0.3142628525705141,0.3158472946992584,0.319787314849981,0.0,1.9369958319396212,51.37145235778517,147.10404785794887,199.76753254604196,fqhc3_100Compliance_implementation_low_initial_treat_cost,51 -100000,95851,48049,457.5330460819397,4868,49.51435039801358,3857,39.5927011716101,1426,14.428644458586763,77.37299817448195,79.67391398907279,63.35320242165369,65.05675046252938,77.1878050535265,79.49658741216044,63.28184676041506,64.99153368426407,0.1851931209554465,177.32657691234976,0.071355661238627,65.21677826530947,230.10372,161.83983806576924,240062.8266789079,168844.26969594418,539.83994,364.2602586675175,562527.0889192601,379350.456149214,478.27914,235.0014993282134,495457.2930903172,242414.2536917361,2525.62305,1190.8154926135242,2591910.256544011,1199545.257643836,898.1515,413.8027569048373,915420.3294696978,410293.8909751782,1389.7616,601.3097909999392,1407088.8775286642,589351.8821297231,0.37955,100000,0,1045926,10911.946667223086,0,0.0,0,0.0,47204,491.7736904153321,0,0.0,43298,448.2060698375604,1116911,0,40137,0,0,0,0,0,74,0.7720315906980626,0,0.0,0,0.0,0,0.0,0.04868,0.1282571466209985,0.2929334428923582,0.01426,0.3588884509262909,0.6411115490737092,23.2484874604882,3.987215535773288,0.3038631060409645,0.2797511018926626,0.2107855846512834,0.2056002074150894,11.291304554837174,6.123077497252491,15.312168329370548,11263.181137323749,44.13360894602421,13.29283242141061,13.063878551797048,9.091912966377794,8.68498500643875,0.5771324863883848,0.809082483781279,0.6732081911262798,0.5756457564575646,0.1210592686002522,0.7508650519031141,0.9329004329004328,0.8193979933110368,0.7377777777777778,0.1529411764705882,0.5027767493520918,0.7163695299837926,0.6231386025200458,0.5136054421768708,0.1123595505617977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0044999847973486,0.0070397533043222,0.0093109680563734,0.0116605331110343,0.0139047231270358,0.0161548418660116,0.0181755094959638,0.0200369882189457,0.0222031227617819,0.024435223605348,0.0267372546605517,0.0286316222187965,0.030673583662714,0.0326175479108893,0.0345846026746527,0.0366963934697593,0.0388995388839956,0.0408934672218818,0.0428761678839711,0.0581850032846372,0.0719085389430563,0.08474327679591,0.0972338906158111,0.1095945234333859,0.1251307296563526,0.136105459477789,0.1454543521481654,0.1554111029278341,0.1639609519829406,0.175294345551992,0.1860555615609123,0.1957240059998695,0.2048439123065988,0.2132623192552325,0.2218518108317643,0.2299694326067069,0.2374893119121551,0.2453551416710147,0.2518862847917931,0.2579619307537525,0.2632293080054274,0.2678051551516012,0.2721468953622077,0.2759591693065822,0.280940243557066,0.2838664481667271,0.2875591031572525,0.2915001228866726,0.2945590252136301,0.2915949203616014,0.2898724082934609,0.2866697644292372,0.2839094400646856,0.2818938281493348,0.2792012345113138,0.275204574894948,0.2761549413324169,0.2758339006126616,0.2767831719817767,0.2769239377774461,0.2779362300595999,0.2794598762216341,0.27976375505129,0.2813066285169289,0.2822215904685602,0.283866402490801,0.2889415876185721,0.2918277098784776,0.2960536638945552,0.3004661168877734,0.3024765694538981,0.305883816395074,0.3088855421686747,0.3131811830461108,0.3170391061452514,0.3176737160120846,0.3158742949234488,0.3149671052631579,0.3124291650925576,0.0,2.311276581487255,50.03594136748471,143.02840759142762,195.09372865519012,fqhc3_100Compliance_implementation_low_initial_treat_cost,52 -100000,95800,48267,460.6471816283925,4859,49.50939457202505,3914,40.36534446764092,1501,15.35490605427975,77.39816222968327,79.72792532287826,63.35848721039546,65.07975996574181,77.20107534090145,79.53245630111698,63.28450011277443,65.00850303968731,0.1970868887818113,195.4690217612836,0.0739870976210284,71.2569260545024,232.02674,163.23357209811437,242199.10229645093,170389.9499980317,542.3735,364.4937521813765,565635.2400835073,379957.0064523764,482.21111,236.03825784724197,500374.05010438414,244093.42035008248,2536.62915,1190.061099865666,2616240.052192067,1210636.6595675005,902.73093,410.7163168605644,929196.8580375784,415611.66686906415,1459.59066,622.0951001718062,1493416.2212943633,623670.4052616168,0.37988,100000,0,1054667,11009.050104384134,0,0.0,0,0.0,47199,492.1503131524008,0,0.0,43619,452.3799582463466,1110179,0,39843,0,0,0,0,0,101,1.0438413361169103,0,0.0,0,0.0,0,0.0,0.04859,0.1279088133094661,0.3089112986211154,0.01501,0.3410700236034618,0.6589299763965382,23.242735526894432,4.162939821604621,0.2984159427695452,0.2833418497700562,0.2110373019928462,0.2072049054675523,11.363675542256152,6.054725655974016,16.075610986529885,11324.002837572732,44.75484908415218,13.602174816794074,13.17523464503469,9.062121366843138,8.91531825548028,0.5784363822176801,0.8142470694319206,0.708904109589041,0.5290556900726392,0.1183723797780517,0.7607573149741824,0.919831223628692,0.8679245283018868,0.7539267015706806,0.1564245810055866,0.501453488372093,0.7354330708661417,0.6494117647058824,0.4614173228346456,0.1075949367088607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217901197059,0.0046619101670179,0.0070912632390536,0.009159964253798,0.0110811772480048,0.0132513689010116,0.0153767768889794,0.0174570460759906,0.0197386569131274,0.0219050542254962,0.0239629542357774,0.0259515038326954,0.028014716461472,0.0301461506792918,0.0319597513325154,0.0344432280585793,0.0365174932240912,0.0384898539003121,0.0405599201895498,0.0423400533155614,0.0570012520868113,0.0710961439911312,0.0836740684825229,0.0966589244237984,0.1087192570024984,0.1251678100654327,0.1363573693644009,0.1459231121184069,0.1557240495514737,0.1652335206072822,0.1773510946468377,0.1882123932086082,0.1983464789344458,0.2075176964082845,0.2165298519763953,0.2257721922294008,0.23479375696767,0.2426528455467362,0.2505869143615392,0.2565946143982414,0.2608977100648487,0.266497610227525,0.2720044488091153,0.2757786296118831,0.2798184620238572,0.2847683749323093,0.28805088028389,0.2904196941212337,0.2939662419970251,0.2963958621598471,0.2934237251657856,0.2899498523047331,0.2860016882386044,0.2841962599305045,0.2817741720579744,0.2777065787867692,0.2743520577981796,0.2747387528823038,0.2744710572041838,0.2750426863972681,0.2755688176053711,0.2766011938769479,0.2777951573546893,0.2778246580209628,0.2778505585594169,0.2788959023178808,0.280001126538429,0.2842088902704383,0.2896048169423489,0.2928490351872871,0.2985168822972546,0.3019242836226731,0.3055401148786363,0.3067037426724786,0.3084285847040238,0.3108124041976182,0.310823032861019,0.3166533226581265,0.3220616307608399,0.3238380809595202,0.0,1.856911098482636,50.80849704423912,142.65795050632187,203.2266852188191,fqhc3_100Compliance_implementation_low_initial_treat_cost,53 -100000,95879,48472,462.7394945712825,4717,47.99799747598536,3738,38.423429530971326,1435,14.591307794198938,77.3584022892406,79.64016800280936,63.35300198276878,65.04131188463785,77.16897025432299,79.45558224598365,63.28049114597852,64.9736429045753,0.1894320349176155,184.58575682571168,0.0725108367902578,67.66898006254962,232.55782,163.73997162850955,242553.44757454708,170777.7215328795,542.34299,365.3331506382294,565090.6559309129,380472.7110610556,478.38951,234.93909832755415,495586.0407388479,242457.064720195,2436.30434,1155.276923823386,2506083.104746608,1169995.519168312,875.08442,405.1929557115418,896977.7740693999,406889.7836977234,1395.6874,604.1353721010747,1420333.8791601916,597840.9803312138,0.38186,100000,0,1057081,11025.156707933958,0,0.0,0,0.0,47255,492.2662939746973,0,0.0,43302,448.24205509027,1103742,0,39592,0,0,0,0,0,101,1.0534110702030683,0,0.0,0,0.0,0,0.0,0.04717,0.1235269470486565,0.3042187831248675,0.01435,0.3645430490535314,0.6354569509464686,23.256670347171177,4.043799527890096,0.3119315141787052,0.2696629213483146,0.2075976457998929,0.2108079186730872,11.183227931460804,6.154486199885647,15.426027206236046,11338.094119618452,43.00189985206954,12.475059853686432,13.231892748821044,8.603916069738005,8.691031179824058,0.5823970037453183,0.808531746031746,0.7032590051457976,0.586340206185567,0.1104060913705583,0.75,0.9153674832962138,0.8713450292397661,0.7446808510638298,0.1160220994475138,0.5069821567106284,0.7227191413237924,0.633495145631068,0.5357142857142857,0.1087314662273476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881673399548,0.0047218084729103,0.0067856092341085,0.0088233203708028,0.0110998170359829,0.0130776824514802,0.0152919841884347,0.0176347595491866,0.0199095392217922,0.0220815996892219,0.0239031181540855,0.0259380766864875,0.0278742066018938,0.0299345759782742,0.0320183845503823,0.0339173799469298,0.036071916249431,0.0380999761616036,0.0401188090020666,0.042032544009322,0.0562957402889848,0.0704293042742365,0.0832460623324396,0.0960686309511309,0.1084753618303242,0.1234734840481724,0.1346905899933232,0.1453379556765494,0.1551755425326373,0.1642957452054501,0.1768658403954041,0.188201062207271,0.1986867995086369,0.2081046809068847,0.2163817272277499,0.2250132790368272,0.2333102848348315,0.2407097158662873,0.2475583334278616,0.2545046335009565,0.2597875885047896,0.2648297155688622,0.2698719011199773,0.2757735975734033,0.2804501592085754,0.2848829324226022,0.2882542226451475,0.2912857470269169,0.2947979876562419,0.2979996829087834,0.2951939530308951,0.2927225426365125,0.2909953808021631,0.2873261004608428,0.2846108140225787,0.2807538619348714,0.2763863618384621,0.2771108049596536,0.2775133493696368,0.2783839102963424,0.2793606930803988,0.2798928564394461,0.2799624099404824,0.2809306467772459,0.2828955245324585,0.2847051517582218,0.2863245445286862,0.2898650123141191,0.2946863263318959,0.2986711747130052,0.3032287198013095,0.3074260541220893,0.3131388681126901,0.3159936116814967,0.321401728673431,0.3189696106362773,0.3196986006458557,0.3210399032648126,0.3198910081743869,0.3285498489425982,0.0,2.2010781576833893,50.26589258855722,133.72364190755292,191.52835554461348,fqhc3_100Compliance_implementation_low_initial_treat_cost,54 -100000,95738,47878,456.1511625477866,4907,50.00104451732855,3881,39.99456850989158,1503,15.375295076145314,77.38965647392791,79.75605049083522,63.34469261111818,65.09363359743698,77.1923087071423,79.56146401576302,63.270225931559885,65.02285557115515,0.1973477667856116,194.5864750721995,0.0744666795582986,70.77802628182894,230.18732,161.89491619360803,240434.6445507531,169102.04536715624,539.5851,363.72498435236713,563090.7267751573,379401.78858172,480.29357,235.6869469110858,498396.947920366,243658.89162068124,2546.98256,1203.5940628328228,2627283.7744678184,1224091.2102120605,882.71278,410.7576742692576,907033.6856838455,414068.3994539866,1463.71546,628.1761427279723,1498461.3424136706,628161.0324885251,0.37807,100000,0,1046306,10928.847479579686,0,0.0,0,0.0,47137,491.8005389709416,0,0.0,43536,451.4194990494892,1118436,0,40126,0,0,0,0,0,90,0.9400655956882324,0,0.0,0,0.0,0,0.0,0.04907,0.1297907794852805,0.3062971265539025,0.01503,0.3644349014249463,0.6355650985750537,22.87964015536082,4.120087427736179,0.306364339087864,0.2795671218758052,0.2027827879412522,0.2112857510950785,11.1542752773794,5.885755066193625,16.13644418999624,11242.322886647367,44.58168413304249,13.287130384122763,13.601634783950988,8.73627063070526,8.95664833426347,0.5776861633599588,0.8276497695852535,0.6963835155592936,0.5400254129606099,0.1109756097560975,0.763396537510305,0.9486081370449678,0.8690807799442897,0.695,0.1711229946524064,0.4932533733133433,0.7362459546925566,0.6216867469879518,0.4872231686541737,0.0932069510268562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701482862004,0.0048254817878612,0.0070327484549264,0.0094682731576487,0.0116777035206038,0.0139098203739155,0.0162824604153709,0.0185175733199946,0.0206476408537083,0.0226935399670396,0.0250210131409007,0.0272875666019895,0.0291647391416088,0.0313137137796816,0.0332948263058008,0.03518055354596,0.0370090399809466,0.0390098147033801,0.0410235623044702,0.043042458973691,0.0576633952808519,0.0713410996326184,0.0845730952430912,0.0970721597424594,0.1092673664222796,0.123831281465499,0.1344756246352978,0.1437480710492427,0.1536498104341325,0.1627522896424511,0.1740258621617838,0.1849632193855473,0.1952333318836167,0.2049117589170511,0.2143996655334411,0.2225617858091947,0.2310462873136408,0.2382220424489612,0.245417549905347,0.2517788098560937,0.2571791907514451,0.2628048566720811,0.2677664074870607,0.2725901992460958,0.2763063707945598,0.2803978776575445,0.2840390553701133,0.2876371077415829,0.2907083478778006,0.2944136359445183,0.292296945108681,0.2893804580655791,0.2879741500421466,0.2844048596999438,0.2813739418694134,0.2773651379504934,0.2741696603012541,0.2740059066359913,0.2748254592286314,0.2751199985830425,0.2754177497215002,0.2755910142313875,0.2754447512091835,0.2752586225992955,0.2766732541250982,0.2771607170532624,0.2770567656020765,0.2817424407900895,0.2872885789014821,0.2925971305481997,0.2965166447159271,0.3013276686139139,0.3036754116836767,0.3093794445692043,0.3099926389400073,0.3131031275433089,0.3125656808287044,0.3185155784877952,0.3170995670995671,0.3173040514956456,0.0,2.146313321736642,52.750676140530594,138.44121871270798,196.64073279913532,fqhc3_100Compliance_implementation_low_initial_treat_cost,55 -100000,95762,48298,461.60272341847497,4866,49.54992585785593,3832,39.44153213174328,1458,14.891084146112236,77.34687979821054,79.70621283386082,63.33382307926016,65.0811791079057,77.16590860010004,79.52837382147314,63.26496085983125,65.0157144811361,0.1809711981104982,177.83901238767896,0.0688622194289081,65.46462676959663,230.08392,161.89723013150748,240266.41047597167,169062.0811297879,537.98058,362.51166464140624,561239.4582402206,378005.0694862327,481.65611,236.74482137069515,499294.6158183831,244376.07968105449,2506.81902,1170.700411880374,2580598.7448048284,1185556.533165577,897.96733,408.3900117059531,917369.9484137758,406216.5430837688,1426.76598,603.462240453884,1457219.0221591026,600956.6713110765,0.37951,100000,0,1045836,10921.200476180533,0,0.0,0,0.0,46996,490.1839978279485,0,0.0,43563,451.191495582799,1118610,0,40161,0,0,0,0,0,77,0.8040767736680521,0,0.0,1,0.0104425555021824,0,0.0,0.04866,0.1282179652710073,0.2996300863131936,0.01458,0.3558052434456928,0.6441947565543071,23.29847697319664,4.112582236296063,0.3003653444676409,0.2854906054279749,0.1993736951983298,0.2147703549060542,11.228524749655168,5.921315111675204,15.40962659808828,11265.279022971505,43.61201602555799,13.422810306786165,12.842231365727512,8.467973994946073,8.879000358098237,0.5858559498956158,0.7943327239488117,0.687228496959166,0.6020942408376964,0.1518833535844471,0.7584708948740226,0.8824786324786325,0.8785046728971962,0.7604166666666666,0.188235294117647,0.5117493472584856,0.7284345047923323,0.6132530120481928,0.548951048951049,0.1424196018376722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0041070052326288,0.0062131979695431,0.008170980822586,0.0104989012777732,0.0127390480845603,0.0151697420736058,0.0172111065741118,0.0196888225552534,0.0219416799770651,0.0238883705670668,0.0257924080786093,0.0280537216429115,0.0305124903425186,0.032375251560968,0.0345262461493932,0.0363677784796363,0.0383414421610631,0.0402187132922379,0.0419864418781435,0.0572812291249165,0.0708898628646743,0.0834783702740673,0.0958211590608118,0.1077210067029214,0.1228865500042269,0.134159397093584,0.1443638760711931,0.1546101409232016,0.1638852588958632,0.1760915633101341,0.1875918561424742,0.1974990765486821,0.2065022715359077,0.2157892423976094,0.2245518920115069,0.2323465462451915,0.239536844471924,0.2472824236922727,0.2535270944986487,0.2591247209079025,0.2645558960443519,0.2692885623350962,0.2739015301292881,0.2780966015942538,0.282564588123901,0.2859214078592141,0.2883672484312679,0.2917059804314389,0.2951419508535478,0.2913986436580944,0.2887931034482758,0.2875796804358204,0.2851405044339514,0.2821472973773015,0.2784626651612706,0.2752574230884463,0.2757103364794792,0.2754143552394241,0.2744076924444128,0.2762453607862884,0.2768658478979688,0.2775946938094443,0.2790241728862649,0.2792235801581596,0.2809257573787544,0.2826957484876885,0.2864275844743122,0.2903924789431377,0.2951202151217969,0.2986918604651162,0.3006491107710169,0.3036094748715378,0.3073965166251979,0.3114996761957628,0.3149882903981265,0.3189172841373053,0.3206631621512333,0.3254716981132075,0.3230709275136399,0.0,2.2748117798451126,49.84308916847482,132.3377684456669,203.74081340456212,fqhc3_100Compliance_implementation_low_initial_treat_cost,56 -100000,95758,48755,465.7052152300592,4856,49.46845172204934,3883,40.00710123436162,1433,14.536644457904302,77.36211040614715,79.7228738482275,63.32787542470121,65.07511378551852,77.17247156508813,79.53904025501092,63.255331684258245,65.0075920318659,0.1896388410590219,183.83359321657625,0.0725437404429669,67.52175365262758,231.25212,162.6601117349736,241496.39716786065,169865.819811372,540.50598,364.7703779150369,563900.1754422607,380379.6319002452,487.36803,239.14784714678927,506188.0469516907,247544.7265056094,2523.36227,1185.396839252356,2597644.4892332754,1200408.2993090437,902.50935,408.9156607513366,927351.5111009002,411892.0306933475,1394.46248,605.4354445592713,1415148.8544038096,595789.387979288,0.38323,100000,0,1051146,10977.108962175484,0,0.0,0,0.0,46994,490.1835877942313,0,0.0,44065,457.371707846864,1110052,0,39839,0,0,0,0,0,88,0.9189832703272834,0,0.0,2,0.0208859834165291,0,0.0,0.04856,0.1267124181301046,0.2950988467874794,0.01433,0.3634208967015603,0.6365791032984397,23.05148306682,4.116938160521668,0.3229461756373937,0.2786505279423126,0.1879989698686582,0.2104043265516353,11.498609650968843,6.212007823747038,15.56867130024387,11389.368943061208,44.62663956405996,13.332351293108935,14.187445386107882,8.078835764569948,9.028007120273204,0.58949266031419,0.8160813308687616,0.7105263157894737,0.5616438356164384,0.1285189718482252,0.7525951557093425,0.9356223175965666,0.8593272171253823,0.7142857142857143,0.1692307692307692,0.5203520352035204,0.7256493506493507,0.6580366774541532,0.5160142348754448,0.1157556270096463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022187775447554,0.0045328249538605,0.0069739112780428,0.0091549224219392,0.0111896648186765,0.0132806452927037,0.0155507515346807,0.0179388221841052,0.0200815942577274,0.0223130171213238,0.024612355402412,0.0265217659264128,0.0283430382090903,0.0303067775476345,0.0322117865620807,0.0343244696249121,0.0363048948442078,0.0382129257841275,0.0405089344185611,0.042612807799675,0.0579239650097079,0.0721668898560428,0.0853067645516518,0.0977733836784921,0.1100410333224333,0.1251758384718711,0.1366963717377466,0.1468891065496976,0.1567638605451262,0.165821332446894,0.1769875288086673,0.1881053121381653,0.1979332100511258,0.2065563370267875,0.2152171759967426,0.2248119551129377,0.2334323226008127,0.2419848358719373,0.2488486058488554,0.2555764210140613,0.2619579432221926,0.2668280758389183,0.2722044728434505,0.2773428602256243,0.2818324206845473,0.2863357405170926,0.2889951314752005,0.2921489810975144,0.2950645720644944,0.2990890754973173,0.2956940761579152,0.292908318321209,0.2895147789141964,0.2866913897346358,0.2845067916246515,0.2811277506112469,0.2778927088103848,0.2782476402362218,0.2791630547481855,0.2799261717571477,0.2800089370496564,0.2819396221973754,0.2827285016117292,0.2828132629055883,0.2841879322680658,0.2857844404238821,0.285823127716011,0.290205223880597,0.2939157566302652,0.2980923655450664,0.3046931083991385,0.308439016752779,0.3103106206212412,0.3120160810005956,0.3131535498073748,0.3211211909746452,0.3228217007921088,0.3286219081272085,0.3278251599147121,0.3330804248861912,0.0,2.072183422507346,50.48428764494845,146.50900207643605,196.3809729053453,fqhc3_100Compliance_implementation_low_initial_treat_cost,57 -100000,95770,48445,461.344888796074,4853,49.46225331523442,3896,40.20048031742717,1446,14.764540043855073,77.32840490063373,79.68899616955821,63.31625382636724,65.06469689304319,77.13740791411259,79.49859364501418,63.243770182103134,64.9946486189547,0.1909969865211422,190.40252454402665,0.0724836442641034,70.04827408849224,229.73016,161.6932941524724,239876.95520517908,168835.01529964746,538.02078,362.3940892402127,561309.8778323065,377926.0512062365,487.81843,239.4465600089544,505880.21301033726,247458.6765039402,2531.98527,1201.6974378468783,2615277.38331419,1226232.9725873224,887.28409,405.9847878534081,916870.3873864468,414312.9036790304,1407.56528,608.5434058703753,1439330.1242560302,609964.3721072377,0.37987,100000,0,1044228,10903.497963871776,0,0.0,0,0.0,46926,489.5061083846716,0,0.0,44103,457.0742403675473,1117810,0,40148,0,0,0,0,0,94,0.9815182207371828,0,0.0,1,0.0104416831993317,0,0.0,0.04853,0.1277542317108484,0.297960024726973,0.01446,0.3556081214271634,0.6443918785728366,23.28723695470681,4.0114829156007685,0.3103182751540041,0.2846509240246406,0.204312114989733,0.2007186858316221,11.498344707657251,6.279448685896028,15.5820663873974,11376.237896484316,44.70909221035461,13.608107890616695,13.612958882790767,8.847845957466108,8.640179479481029,0.6029260780287474,0.8268710550045085,0.71712158808933,0.6005025125628141,0.1112531969309462,0.7554076539101497,0.9330543933054394,0.8802395209580839,0.7272727272727273,0.125,0.5348923533778768,0.7464342313787639,0.6548571428571428,0.5585284280936454,0.1067796610169491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020570919003273,0.0042394369054139,0.0066705925354343,0.0091363645602552,0.0113629427682041,0.0136183996088657,0.0158977810409528,0.0182239555682607,0.0205996912602103,0.022775429150502,0.0249195317465198,0.0272709537646442,0.0292886598998344,0.031497522840339,0.0334760848253444,0.0355880346474272,0.0376167111773595,0.0395859908942887,0.0418584834093672,0.0436494297765974,0.0578669394401185,0.071371794335439,0.0848808312973817,0.0976432746079132,0.109786938104571,0.1253567276186449,0.1362778366914104,0.1466171415191732,0.1566445218208617,0.1652547825340996,0.1768108137217943,0.1877332871717751,0.198198394220936,0.2074074884087131,0.2156198065133888,0.2257907327013378,0.2341073680216923,0.2417926237718478,0.2479396072198887,0.2544717030857902,0.2606431604892555,0.2662417402491082,0.2720147751758104,0.2763328374682086,0.2810544097808782,0.2852722924832976,0.2888941807562635,0.2918433619866284,0.295060080106809,0.2972013669890614,0.2952963197371433,0.2919990098465262,0.2887583798095882,0.2852690809407012,0.2821749844135023,0.279017822993957,0.2752193502489922,0.275876207501681,0.2754245958665848,0.2764266752187004,0.2781792042420508,0.2791988037147804,0.2804469506231923,0.2814086011931261,0.28223471707142,0.2835225211216503,0.2841756186049148,0.2875288683602771,0.2921707690168266,0.2974705951772157,0.3005947017480627,0.3085462924172601,0.3128602417105671,0.3180659670164917,0.3217003898273621,0.3240881016198578,0.3293178738141846,0.3284994964753273,0.3355209187858901,0.3356562137049942,0.0,1.907420394923088,52.47383059890964,140.22468565855004,198.32780732153083,fqhc3_100Compliance_implementation_low_initial_treat_cost,58 -100000,95721,48431,461.7377586945393,4952,50.34422958389486,3875,39.80317798602187,1457,14.740756991673718,77.31464774318667,79.68073217228871,63.30648041847581,65.05603866371442,77.11987127768158,79.49192347222137,63.230292918915154,64.98514242023063,0.1947764655050861,188.80870006734085,0.0761874995606533,70.8962434837872,230.73314,162.32663079189606,241047.56532004476,169583.09126722044,540.25477,364.52495499634927,563715.590100396,380130.1542987947,486.89557,239.03781442571437,504419.16611819767,246483.13819953025,2492.62387,1186.3343310188368,2561930.725755059,1197246.3419927044,871.84742,399.1902228078457,893740.5480511069,399956.5188949807,1404.10726,616.7396931019206,1422722.6836326406,606611.4212138938,0.38059,100000,0,1048787,10956.707514547486,0,0.0,0,0.0,47108,491.4282132447425,0,0.0,44103,456.5873737215449,1108607,0,39774,0,0,0,0,0,89,0.9193384941653346,0,0.0,0,0.0,0,0.0,0.04952,0.1301137707244015,0.2942245557350565,0.01457,0.3588201047933242,0.6411798952066757,23.18455343771137,4.046084342995551,0.3076129032258065,0.288258064516129,0.2095483870967742,0.1945806451612903,11.497259787187636,6.35547555499289,15.715890256753722,11355.449850051817,44.59482600126484,13.734673895942455,13.579559644437824,9.04724767671235,8.233344784172218,0.5873548387096774,0.7815577439570277,0.6996644295302014,0.5923645320197044,0.1167108753315649,0.7588477366255144,0.9096385542168676,0.861271676300578,0.7711442786069652,0.0941176470588235,0.5090225563909775,0.678513731825525,0.6335697399527187,0.5335515548281505,0.1232876712328767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0045523212782999,0.0070037962605818,0.0089015343969108,0.0109364667582277,0.0133257263947186,0.0155068811785229,0.0177656163852075,0.0198515732013984,0.0219995086196306,0.0240226384915874,0.0263063322072881,0.0285443903843977,0.0308600632657056,0.0330728655924522,0.0351918285483887,0.0374152125511313,0.0393296321278472,0.0411987355461276,0.043288464744124,0.0583137561994257,0.0718248236303879,0.0850653097623668,0.0977472076733766,0.1106962812968001,0.1261571992340002,0.1372143137692005,0.1476357827476038,0.1575734248537918,0.1665503955008425,0.1781030242892273,0.1890333766796705,0.1988929808886661,0.2073157363967203,0.2161816437480012,0.2253747917823431,0.2335790922211158,0.2422950227877803,0.2501734945790054,0.2560423654827,0.261592169051982,0.2676511954992968,0.2727736153262519,0.277478364201606,0.2809585759966929,0.2847593088222597,0.2877058617410021,0.2900875006359057,0.2924204999547377,0.2954264035619253,0.2927393227311223,0.2903522625832589,0.2871789110009409,0.2843681108885783,0.281718963165075,0.2784663111083943,0.274876349098494,0.2755473256423702,0.2758220964524983,0.2751944192337124,0.2755626108880381,0.2766179335314142,0.2767799537971654,0.2774693551252443,0.2781613589124878,0.2785858481287851,0.2813678509654918,0.2849786211416622,0.2883866481223922,0.2926493169022402,0.2992631436191854,0.3024395384372201,0.3031634446397188,0.3064724182411412,0.3111567931227808,0.3169014084507042,0.3194592131247152,0.3197969543147208,0.3238356164383562,0.3275928052047455,0.0,2.5626442416914057,52.454969605215325,139.53490437790188,194.6136651182673,fqhc3_100Compliance_implementation_low_initial_treat_cost,59 -100000,95813,48460,461.10653042906495,4904,49.87840898416707,3894,40.036320749793866,1532,15.5615626272009,77.3504688262772,79.68224755151702,63.33176974345843,65.05967657404074,77.15301750676458,79.49018824342883,63.256019011301696,64.98862819666974,0.1974513195126093,192.05930808819005,0.0757507321567345,71.04837737099956,230.34176,162.09736825760746,240407.62735745672,169180.97571061074,540.0601,363.629207966684,563078.2252930187,378937.3550214313,482.94163,237.0770393411939,500693.9454980013,244765.7285950233,2539.56356,1202.4301923700425,2611666.558817697,1216100.8551762735,885.7177,407.0590072241513,905859.5388934696,406312.28763514507,1489.18776,647.5043332804432,1514274.9731247325,641216.4581352068,0.38196,100000,0,1047008,10927.61942533894,0,0.0,0,0.0,47060,490.5492991556469,0,0.0,43605,451.6923590744471,1115270,0,40109,0,0,0,0,0,99,1.0332627096531786,0,0.0,0,0.0,0,0.0,0.04904,0.1283904073724997,0.3123980424143556,0.01532,0.3568221745071247,0.6431778254928753,23.36696198387432,4.092735410684391,0.3050847457627119,0.2750385208012326,0.2116076014381099,0.2082691319979455,11.094622259948297,5.976416259264444,16.609380412307445,11447.3936022381,44.69249773535633,13.076644784490703,13.360453408015522,9.26461763055454,8.99078191229557,0.5821777092963534,0.8104575163398693,0.6835016835016835,0.6007281553398058,0.1134401972872996,0.7564102564102564,0.9230769230769232,0.8762214983713354,0.74235807860262,0.1452513966480447,0.5073421439060205,0.7272727272727273,0.6163450624290578,0.5462184873949579,0.1044303797468354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024515266324938,0.0045425509262545,0.0067593626306708,0.0089613200166627,0.0109140102121773,0.0130268277280968,0.0155830911223293,0.0178704545222461,0.020234553132317,0.0225213697087577,0.0249482168126166,0.0271913250636654,0.0292472233648704,0.0314321613215514,0.0337761184794043,0.0357401169638982,0.0377938573336231,0.0397668340040658,0.0417052056161208,0.0437136283664907,0.0582730885988796,0.0727280331228305,0.0863687806513811,0.0990123975625131,0.1109401997555733,0.1265416116248348,0.137049486263241,0.1472337166381226,0.1577789877120498,0.1667863304649742,0.1775195049771321,0.1890594594594594,0.2002194364177548,0.2090829598863263,0.2177997799779978,0.2274862613011877,0.236484375,0.2439032624720062,0.2507494549418604,0.2566689956131811,0.2631451052996991,0.2692761996093887,0.2753019673721444,0.2793717729086051,0.2833519634525661,0.2869967322276343,0.290666800260508,0.2938269718157388,0.2981667422426637,0.3008477933602725,0.2968370813784177,0.2935164396203804,0.2904708204116154,0.2876862813118829,0.2847636871342423,0.2815379434903725,0.2781478961277356,0.2777868906239748,0.2778516850866421,0.2781836974730013,0.2776833890330651,0.2780982380155527,0.2793467378608376,0.2794700512135382,0.2796322015229155,0.2814486211637741,0.2816514799932084,0.2857945500515029,0.289661875998056,0.2926829268292683,0.2982235214751518,0.3012880929940308,0.3043262367326671,0.3088488293814047,0.3137273064097814,0.316974126928878,0.3184818481848185,0.3232502965599051,0.3247794707297514,0.3259481787457754,0.0,2.3468673576937715,50.45384726306015,145.1279460076167,198.09050800577717,fqhc3_100Compliance_implementation_low_initial_treat_cost,60 -100000,95712,48539,463.3379304580408,4807,48.82355399531929,3802,39.06511200267469,1458,14.794383149448343,77.30949638025908,79.67021471312552,63.31695901961641,65.059884091892,77.1102132573695,79.47506408219566,63.24073847644755,64.98773848661632,0.1992831228895824,195.1506309298594,0.0762205431688656,72.14560527567926,228.67614,161.03411563817886,238920.84587094616,168248.38644911704,537.00967,362.1473800790101,560408.4127382147,377713.1978126161,482.08947,237.0679501974465,499722.1351554664,244630.9278385636,2498.09465,1184.2050176683515,2569062.64627215,1196516.1662003878,901.4081,413.187737307976,924923.5205616852,414945.18805739086,1427.6065,624.5831469317977,1451227.9129053827,617818.5296155779,0.38147,100000,0,1039437,10860.038448679372,0,0.0,0,0.0,46731,487.5459712470745,0,0.0,43523,450.810765630224,1122780,0,40230,0,0,0,0,0,105,1.0865931126713473,0,0.0,1,0.0104480106987629,0,0.0,0.04807,0.1260125304742181,0.3033076763053879,0.01458,0.3682946357085668,0.6317053642914331,23.217740627896266,4.097458578008499,0.2958968963703314,0.2795896896370331,0.2085744345081536,0.2159389794844818,11.186947825414013,5.8265790178164,15.78949207917568,11352.03294318906,43.75332645845442,12.989824333515916,12.876941779446554,8.871138337017136,9.015422008474824,0.567859021567596,0.7968015051740357,0.6702222222222223,0.5737704918032787,0.125456760048721,0.736013986013986,0.92183908045977,0.8313253012048193,0.693069306930693,0.1428571428571428,0.4954853273137697,0.7101910828025477,0.6027742749054225,0.5329949238578681,0.1207430340557275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179236588651,0.0046833184656556,0.00690893596299,0.0089786300479401,0.0111421745539572,0.0132930267590867,0.0154410640574835,0.0176692151438749,0.0197661583745554,0.0218603841942053,0.0241494890271528,0.0260796352958087,0.0281131105398457,0.0302665183720547,0.0321971845511267,0.0342811092284167,0.0364095505210974,0.0386721423682409,0.040658095762703,0.0429479166666666,0.0580581834889209,0.0720094617083407,0.0848533159920705,0.0969746679705984,0.1092680663496114,0.1249854569684918,0.1357534726275242,0.1464951878034239,0.1560239741028407,0.1649937802942564,0.1764750247812782,0.1869782248546338,0.1966149659863945,0.206197528431791,0.2151941945359042,0.2247228381374723,0.2335895258948121,0.2417565086124348,0.2490684358811233,0.2564475825863689,0.2621500845122601,0.2669435507458321,0.2720006630985648,0.2758798550968021,0.2808106827377553,0.2849780539527543,0.2896527569298509,0.2921994478160744,0.2956155689398355,0.2973901098901099,0.2946455037861435,0.2912979452526114,0.2885935363842652,0.2866098512205691,0.2843003210082035,0.2815339124572934,0.2778226893020749,0.2780769735977932,0.2784935579781962,0.2787892865438562,0.2793412276099827,0.2795924423780789,0.2797879695782438,0.2805868014401682,0.2821401911916973,0.2819478423819687,0.2820051927301777,0.2855395615768181,0.2883223166509285,0.290981505579873,0.2958357824298051,0.2982807720704567,0.3005003126954346,0.3029271613342409,0.3071035190889573,0.3143259415698697,0.3165478537843167,0.3149350649350649,0.3192360163710777,0.3176291793313069,0.0,2.4656702425821315,49.32460003641231,144.2348363224842,190.39081514814396,fqhc3_100Compliance_implementation_low_initial_treat_cost,61 -100000,95737,48104,459.0701609618016,4687,47.90206503232815,3724,38.35507692950479,1442,14.696512320210578,77.40440741590693,79.7618537174278,63.3594678928421,65.09928086318016,77.21911793392837,79.57986854184286,63.289243830106585,65.032909162457,0.1852894819785575,181.9851755849413,0.0702240627355124,66.37170072315257,230.1563,161.8267815349692,240404.75469254312,169032.64311078182,539.15813,363.03261876818135,562629.8609732914,378661.79091488273,481.25614,235.68034336952115,499558.2376719554,243756.79165047087,2422.53132,1138.631727996004,2496274.324451362,1155204.9447925093,861.80135,394.6458287568629,886154.3917189802,398201.4012229981,1402.8306,595.3964914889903,1431248.3574793444,592150.848234634,0.37844,100000,0,1046165,10927.488849661053,0,0.0,0,0.0,46969,490.0508685252306,0,0.0,43509,451.2675350178092,1121346,0,40234,0,0,0,0,0,78,0.8147320262803305,0,0.0,1,0.0104452823882093,0,0.0,0.04687,0.1238505443399217,0.307659483678259,0.01442,0.3734099302421009,0.6265900697578991,23.11613922823621,4.057520383577467,0.3152524167561761,0.2795381310418904,0.1989795918367347,0.2062298603651987,11.524908274134388,6.341749843391448,15.275483034065312,11215.295405492565,42.73012695109009,12.82405081607386,13.30443237297177,8.209044698863744,8.392599063180716,0.5899570354457573,0.8261287223823247,0.6882453151618398,0.5964912280701754,0.11328125,0.7605760576057605,0.930957683741648,0.8535825545171339,0.7,0.1677018633540372,0.5174129353233831,0.7466216216216216,0.6260257913247362,0.5632798573975044,0.0988467874794069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025210849777759,0.0048137826197111,0.0069389494187108,0.00917077134007,0.011052026882759,0.0130903908794788,0.0154191082802547,0.0176933359182882,0.0195459375510871,0.0212739831158864,0.0234495905545705,0.0258536635431527,0.027757502236021,0.0298801087673038,0.0319448600348752,0.0340820988866721,0.0362975466793699,0.0386103590286206,0.0405533210696432,0.0426110324139655,0.0567034527401622,0.0700516963519537,0.0832249402089539,0.096431650440524,0.108546251791888,0.1237588689978957,0.1337711387892804,0.1440145643471595,0.1543055555555555,0.1626951784488675,0.1745845404904737,0.1860749494096895,0.1965303458777463,0.2058321852653677,0.2140656971243757,0.2237845857460778,0.2319147749456188,0.2391658703839019,0.2465332501842508,0.2525573838020917,0.2580600445887095,0.263974140546596,0.2688617454416711,0.2733428069882136,0.2778201450170074,0.280998231479662,0.2842666200751289,0.2886651534940339,0.291790842590084,0.2946354666211191,0.2913388992374801,0.2881153940987918,0.2858485009955969,0.2823614007334435,0.2804604154969118,0.2761504364118265,0.272459429651804,0.2722629285725942,0.2725960885508624,0.2739415009667063,0.2741517765646252,0.274968518810011,0.2751041666666666,0.2749900084373196,0.2764901057455899,0.2765549743642861,0.2774031543605225,0.282061663033323,0.2855454355836752,0.2888591870430065,0.2913268754223924,0.2941516777111602,0.2967565552379769,0.2972445378782191,0.2976684176573587,0.3031145073520898,0.3078658444878929,0.3097362680943882,0.3131120783460283,0.3269902912621359,0.0,2.1068986627037485,48.1462701718734,142.23538634140473,185.55444378944588,fqhc3_100Compliance_implementation_low_initial_treat_cost,62 -100000,95740,48658,465.0720701900982,4887,49.82243576352622,3853,39.57593482348026,1450,14.69605180697723,77.33232137485312,79.69938431946379,63.31916690730778,65.0713953335224,77.14583860031588,79.51791855220532,63.24763483430349,65.00488537192588,0.1864827745372395,181.46576725847297,0.0715320730042918,66.50996159652323,230.49312,162.16115723622926,240749.0286191769,169376.60041385968,541.34954,364.95730520896507,564782.6822644663,380541.78526108735,492.62008,241.8601780279654,510378.2431585544,249410.16815827863,2488.36697,1178.5654354306375,2556236.170879465,1188154.350773592,895.4712,407.1343374745855,915135.9515354084,405070.2919099496,1406.80562,607.7538426869505,1426284.4161270107,596715.322184946,0.38142,100000,0,1047696,10943.137664508044,0,0.0,0,0.0,47159,491.8738249425528,0,0.0,44503,460.73741382912056,1112914,0,39964,0,0,0,0,0,92,0.9504909128890746,0,0.0,0,0.0,0,0.0,0.04887,0.1281264747522416,0.2967055453243298,0.0145,0.35553819105294,0.64446180894706,23.125660595399832,4.079345004053135,0.3124837788736049,0.2886062808201401,0.1995847391642875,0.1993252011419673,11.479352934644265,6.299998813487537,15.537130378399567,11314.052375588026,44.33526970203679,13.627058637164996,13.684504146858789,8.631648235828806,8.392058682184198,0.5912276148455748,0.795863309352518,0.71843853820598,0.5630689206762028,0.1236979166666666,0.7536231884057971,0.9234042553191488,0.8630952380952381,0.7150259067357513,0.1264367816091954,0.5201492537313432,0.7024922118380063,0.6624423963133641,0.5121527777777778,0.1228956228956228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023004580647776,0.0045745468561401,0.0067216310616521,0.0090047971379786,0.0114043297794416,0.0135899186031112,0.0156645182344782,0.0180297910136908,0.0201421195235417,0.0222256347256347,0.0242857289306693,0.0263638790218261,0.0282982005141388,0.0303823020515778,0.0324470993634384,0.0341794654484569,0.0360848226304127,0.0382293136359863,0.0400619375220834,0.0423471088151974,0.0567288519558613,0.0715302193202745,0.0843997818151302,0.097253186387919,0.1096183656898206,0.1248122368671589,0.1354104762713303,0.1458135945068398,0.1556488394697771,0.1643753351206434,0.1761582127815418,0.1874161291718973,0.1981875149589851,0.2070285583033458,0.2155952197548253,0.2242794024826425,0.2331938633193863,0.2409517916408843,0.2489051757391482,0.2546942981451797,0.2608600085607524,0.2664990351441436,0.2710110126687091,0.2748909970772842,0.2785607633198587,0.283129933623142,0.2867680152022803,0.2892406591033247,0.2934033390665614,0.296125522020367,0.2934709566432814,0.2896920245061677,0.2867986056448892,0.2845778027584418,0.2817256250277872,0.2783445326817348,0.2749415186192072,0.27443184607078,0.274418130196025,0.2748007401081697,0.2755578813590999,0.277748211223464,0.2799072546111587,0.2813663626836719,0.2809875713805845,0.2823327882893405,0.2821580288870008,0.2881977071978951,0.2925459555617566,0.2984696903792163,0.298838102988381,0.3039054634094643,0.30571608040201,0.3101960487472561,0.3131378734459083,0.318997668997669,0.3214232321722231,0.3298480962714539,0.3252336448598131,0.3360778443113772,0.0,2.604085485995169,50.600335632822,143.47465397780346,193.42759698329647,fqhc3_100Compliance_implementation_low_initial_treat_cost,63 -100000,95729,48349,460.91570997294446,4891,49.932622298363086,3899,40.17591325512645,1457,14.85443282599839,77.41699606751023,79.76953190784175,63.36600846061516,65.10026075346674,77.22730835704594,79.58440847371517,63.29382025279533,65.03201876655221,0.189687710464284,185.12343412658083,0.0721882078198348,68.2419869145292,230.67154,162.3019118618679,240962.613210208,169542.65799685346,542.03882,364.9904032878479,565626.7170867763,380684.78398884577,483.15299,237.0487494570091,501298.67647212447,244917.8603972624,2534.70531,1185.5467284783497,2612140.553019461,1203388.948536055,902.77365,407.26934597561217,929303.1369804344,411970.2324416101,1414.72002,608.7296617808545,1443408.2461949878,607194.7450814537,0.3812,100000,0,1048507,10952.846055009451,0,0.0,0,0.0,47260,493.0794221186892,0,0.0,43682,452.9244011741479,1116002,0,40024,0,0,0,0,0,88,0.919261665743923,0,0.0,2,0.0208923105850891,0,0.0,0.04891,0.128305351521511,0.2978940911878961,0.01457,0.3688620420888542,0.6311379579111458,23.083844534374112,4.040196463068608,0.3044370351372146,0.287509617850731,0.2008207232623749,0.2072326237496794,10.92351320188832,5.912100942425275,15.582930046107425,11354.9327502869,44.54827835175736,13.680996731114156,13.485385843870128,8.658345211244404,8.723550565528674,0.5842523724031803,0.8010704727921498,0.7177759056444819,0.5555555555555556,0.1150990099009901,0.7457337883959044,0.9136363636363636,0.8760563380281691,0.6714975845410628,0.1294117647058823,0.5148514851485149,0.7283406754772394,0.6502403846153846,0.5138888888888888,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.004396762200002,0.0064305420318078,0.008519582855228,0.0110724743777452,0.013243347788025,0.0155848656582541,0.0180547050418452,0.0204488319332883,0.0227219249695642,0.0250440627946058,0.0271454668609782,0.0290507617344106,0.0311521667490525,0.0333415862012049,0.0355367716201833,0.037674707526659,0.0396399012632496,0.0415198661387044,0.0433681973497791,0.0575005481711964,0.071390455463363,0.0846534757338593,0.0981268602559922,0.1101946969856772,0.1246166211900078,0.1354547865287722,0.1452110787047878,0.1545356452250462,0.1631528150134048,0.1750263820989382,0.1858872407413418,0.1970130110109892,0.2068336482899494,0.2150430129972863,0.2245909437886515,0.2333147570218457,0.2408522880517846,0.2476532740794485,0.2548680868590257,0.2614198529751722,0.2667344220929417,0.2717474798804051,0.2766543017829365,0.2802629663771772,0.2842971951804856,0.2878787878787879,0.2900210804358316,0.2933994806402852,0.2967112538838274,0.294162681996454,0.2918519128382458,0.2890184781845008,0.2856236115518883,0.2829167778469566,0.2798198748282705,0.277236925015753,0.276730072759307,0.2775760865877243,0.2788424072827742,0.2799145299145299,0.2800587659157688,0.2816409659586849,0.2824008498583569,0.2828597966133988,0.2827849801146635,0.2845141101181246,0.2883050742189926,0.2930861202564547,0.2972602202798573,0.3029745614428641,0.3084175789639097,0.3121125712868832,0.3192707548591231,0.3202995008319467,0.3255329008341056,0.3308911483253589,0.3371383585908286,0.3383878691141261,0.3428991905813098,0.0,2.028177153617707,51.16668219201042,140.09105482252397,201.47267919156369,fqhc3_100Compliance_implementation_low_initial_treat_cost,64 -100000,95706,48632,464.1192819676927,4936,50.39391469709318,3937,40.666206925375626,1474,15.129667941403882,77.3508434030137,79.74196102053634,63.31502979323547,65.0829139333875,77.16289395257111,79.55425027310156,63.24538993433963,65.01506686360179,0.1879494504425878,187.7107474347781,0.0696398588958402,67.84706978571364,230.95754,162.38201216288994,241319.35301861956,169667.1825951253,540.51717,364.1239958113765,564296.1987754165,379993.269046976,489.58632,240.4552151104469,508149.85476354667,248610.38538738064,2529.69708,1181.1278060805091,2615024.0946231163,1206304.3769310485,890.3386,405.8736514251558,919128.7902534849,412927.5608897618,1424.2387,598.3523694024792,1462919.6497607257,604042.1818821895,0.38133,100000,0,1049807,10969.06150084634,0,0.0,0,0.0,47064,491.2440181388836,0,0.0,44272,459.22930641757046,1111005,0,39941,0,0,0,0,0,80,0.8358932564311538,0,0.0,0,0.0,0,0.0,0.04936,0.1294416909238717,0.2986223662884927,0.01474,0.3498932660586066,0.6501067339413934,23.187345865500397,3.951180817744762,0.3246126492252985,0.2839725679451358,0.1976123952247904,0.1938023876047752,11.298018090279696,6.312120643250072,15.553284081684083,11389.527909015123,44.91761765567008,13.821752340443345,14.3093547507066,8.562127863641168,8.22438270087897,0.58750317500635,0.8193202146690519,0.6784037558685446,0.5629820051413882,0.1205766710353866,0.7741393786733837,0.9217221135029354,0.8550295857988166,0.7243243243243244,0.1783439490445859,0.5065549890750182,0.7331136738056013,0.6148936170212767,0.5126475548060708,0.1056105610561056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.00463437141901,0.0067506522246698,0.0091369217009512,0.0114651366253636,0.0135184694688372,0.0156382295035142,0.0178013358661682,0.0199629784927542,0.0221625939657114,0.0242026458824735,0.0262730839547256,0.0284400650058628,0.0305481145683082,0.0327560940370286,0.0347650798573422,0.0370055736278308,0.0390882859693189,0.0413247209827232,0.0433400389831038,0.0583959140616024,0.0719827450816153,0.0859712834291951,0.0988933538111969,0.1113478618594544,0.1269134339726433,0.1370786278339135,0.1470162286493163,0.155853178844756,0.1646045049202142,0.1766354435018809,0.1878017624006755,0.1981415389972144,0.2077455926286646,0.2165455746367239,0.2257156160617281,0.2344510425503415,0.2430296822413075,0.2500794840350638,0.2561284481474266,0.2615544881069506,0.2674445822897404,0.2727509562210617,0.2760013907372106,0.2795529097315029,0.2834795033504139,0.2867570776826448,0.2915628970775095,0.2952425252603561,0.2983029408664488,0.2945282866596723,0.2919053309707284,0.2889201152251809,0.2859880412074058,0.2840638452093904,0.2813114754098361,0.2773897551515916,0.2770822437238494,0.2774629431085244,0.2786296842516746,0.2788065268065268,0.2803486933815012,0.2815812445442075,0.2812943577004968,0.2834902848968887,0.2858508110341977,0.2872810100953291,0.2891764413827344,0.2932044218040683,0.2985319381539903,0.3038325656276553,0.3069104626185361,0.3113318845079168,0.3167257104092862,0.3173390477965154,0.3218241810040066,0.3274818401937046,0.3325410972469796,0.3370846730975348,0.3397947548460661,0.0,1.790776106013061,52.27893465910149,139.6857801827028,203.49770116474303,fqhc3_100Compliance_implementation_low_initial_treat_cost,65 -100000,95727,48490,463.4638085388657,4711,47.99064004930688,3757,38.70381397097997,1391,14.165282522172427,77.26691653433518,79.6259171912747,63.2951211478972,65.0388127273071,77.08372137040782,79.44616164900468,63.22617914547092,64.9730195466182,0.1831951639273654,179.75554227001567,0.0689420024262759,65.79318068889961,230.29468,162.03414350754875,240573.7357276421,169266.32470831525,537.01889,361.71798080532017,560427.0373039999,377305.1064177273,482.75796,236.8725910756464,500862.2227793621,244722.42577579417,2460.76651,1147.341373141407,2538905.032018135,1167430.643566607,888.94879,404.45520775329607,915129.1380697192,409405.9282866737,1363.20512,581.0799410928958,1391414.2718355325,580904.4867541877,0.38055,100000,0,1046794,10935.169805801916,0,0.0,0,0.0,46770,487.971000867049,0,0.0,43587,451.847441160801,1114158,0,40012,0,0,0,0,0,84,0.8774953774797078,0,0.0,2,0.0208927470828501,0,0.0,0.04711,0.1237945079490211,0.2952663977924007,0.01391,0.3680470970361348,0.6319529029638652,23.218626856426585,4.0675223343936215,0.3074261378759648,0.27495342028214,0.2070801171147192,0.2105403247271759,11.516765938907724,6.172121623180981,14.932894777983234,11267.717805950144,42.92048256276059,12.636478577616783,12.9560932740929,8.751304195280577,8.576606515770315,0.5805163694437051,0.8034849951597289,0.6952380952380952,0.5861182519280206,0.1163084702907711,0.7506726457399103,0.9022222222222224,0.8480565371024735,0.7534883720930232,0.1736526946107784,0.5087055261165784,0.7272727272727273,0.6456422018348624,0.522202486678508,0.1009615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295385487987,0.0048160277403197,0.0070118115030239,0.0091831655509391,0.0113805097329292,0.0136132691191593,0.0156480962332432,0.0179050846765549,0.0200566328981936,0.0222731739272846,0.0241307200262424,0.0262825580320934,0.0284744716952028,0.0305805042847725,0.032539281329633,0.0341837051125674,0.0362128241239333,0.0381890049694467,0.040226599449093,0.0423629922900604,0.0574170173222098,0.071160931089341,0.0839157170139981,0.0962491451417749,0.1091687854075895,0.1249338610340959,0.1354805834518779,0.1451971925489653,0.1547920743378351,0.1642335766423357,0.175874521640705,0.1867009058206561,0.1968180679726889,0.2049473834057883,0.2141479808275026,0.2229263312099083,0.2318407960199004,0.239822470543177,0.2468994184990005,0.2532433299715779,0.2586859185727673,0.2647244647244647,0.2704753112720731,0.2747758546291413,0.2788090089652324,0.281738744623424,0.2855390008764242,0.2889208413391187,0.2919343973468753,0.294640025372661,0.2912461546764531,0.2880743560041922,0.2855045664356394,0.2829312738632419,0.2806232437816863,0.2770522959965667,0.273992581084937,0.2748183223175824,0.2751278411520241,0.274871868135793,0.2756431861588586,0.2762360005530646,0.2776927752509903,0.2782643667888104,0.2792090640109692,0.2795998645374736,0.2818759438128615,0.2881366596407336,0.2923652536091207,0.2954818072770891,0.2983963083108694,0.3019612023022809,0.3056271612700408,0.3074068464101787,0.3098156638907083,0.3074209102669646,0.3162031438935913,0.3184357541899441,0.3156750882912252,0.3258469737342976,0.0,2.0306657545409807,48.50537027225954,135.6148115785569,196.37169016618196,fqhc3_100Compliance_implementation_low_initial_treat_cost,66 -100000,95708,48000,458.8226689513938,4817,49.191290174280105,3852,39.74589376018724,1473,15.056212646800686,77.288290147924,79.65824063270856,63.294707477804174,65.0441605722259,77.10017479629497,79.47159567492847,63.22348841799487,64.97573335752934,0.1881153516290368,186.64495778008927,0.0712190598093087,68.42721469656965,230.8372,162.41755714411192,241189.0333096502,169701.12962773428,540.75992,364.1037245228092,564489.5411041919,379911.9598637039,477.47559,234.1621046062536,495796.9971162285,242285.32635919444,2517.74004,1182.2329019517683,2600230.816650646,1204874.556268797,912.03271,412.12448030257127,942469.3024616544,420169.30238425976,1432.12326,611.574997676419,1465752.81063234,612853.3784559836,0.37799,100000,0,1049260,10963.137877711371,0,0.0,0,0.0,47205,492.665189952773,0,0.0,43237,448.7190203535754,1109371,0,39877,0,0,0,0,0,81,0.846324236218498,0,0.0,0,0.0,0,0.0,0.04817,0.1274372337892536,0.3057919867137222,0.01473,0.3585506669321123,0.6414493330678878,22.869565458521027,4.10238130969431,0.3185358255451713,0.2684319833852544,0.2058670820353063,0.2071651090342679,11.275321740751792,6.0983266457489,15.70686979187634,11230.262028864625,44.26776223161311,12.77471238905298,14.002299648720898,8.817792009608828,8.672958184230408,0.5815160955347871,0.7959381044487428,0.6919315403422983,0.5863808322824716,0.1290726817042606,0.756872852233677,0.90990990990991,0.877906976744186,0.72,0.1761363636363636,0.5055803571428571,0.7101694915254237,0.6194790486976217,0.5413153456998314,0.1157556270096463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875854525567,0.0043085532385113,0.0063319397653935,0.0084317032040472,0.0106887153201529,0.0127788695537068,0.0147019840541587,0.0168121267799724,0.0189309918326876,0.02101008033567,0.0228237030356447,0.0249840898359713,0.0272257122587676,0.0291758066343292,0.0313357400722021,0.0334225566085509,0.0356384796181443,0.0376089663760896,0.0396288822782966,0.0417821782178217,0.0564693841317584,0.0690684088196494,0.0823336796700355,0.0952526283663611,0.1080744423683904,0.1232609846479618,0.1343137775418104,0.1443943703987811,0.1535500427715996,0.1629173064739549,0.1742979769658801,0.1853617316317465,0.1955565236331954,0.2046925123443949,0.2126665932371406,0.2220459336513924,0.2315191628281382,0.2400505084669327,0.2473695585408301,0.2535767596739006,0.259497634288895,0.2641555883801083,0.2690364360945061,0.273466300027618,0.2779021932280129,0.2826594234211988,0.286474278544542,0.2901790835510802,0.2945481915984271,0.2976374621557662,0.2937355988842925,0.2904817019400352,0.2884742940205196,0.2848853194414297,0.282113845329842,0.2786779795999632,0.2749351306879311,0.2745278069254984,0.2735667104746624,0.2737452081661763,0.274573289414583,0.2756588413852916,0.2761576251698547,0.2768573906468901,0.2772300861719141,0.2778696573466329,0.2774022006618957,0.2831786506671666,0.2877080353093053,0.2925213000946671,0.2949532540619043,0.2999630001585707,0.3058258483033932,0.310908543016423,0.3113424859485856,0.3162661093695576,0.3242152466367713,0.3285742613523696,0.3331555081355028,0.3313521545319465,0.0,1.892461207329212,50.91630996675365,142.05011051606175,196.46681584068335,fqhc3_100Compliance_implementation_low_initial_treat_cost,67 -100000,95823,48877,466.1406969099277,4931,50.196716863383536,3929,40.355655740271125,1487,15.132066414117697,77.36488025655099,79.68131017229594,63.35773544642036,65.07178892434939,77.16829638503953,79.48824291981448,63.28334939405642,65.0012863205561,0.1965838715114642,193.0672524814554,0.0743860523639341,70.50260379328677,231.75306,163.01646127664478,241853.9807770577,170121.1470008086,541.08366,365.1638746356652,563980.380493201,380393.6828038104,490.47098,241.17709606537932,507790.2799954082,248476.097500406,2556.20671,1206.9197072354896,2628147.1254291767,1220163.5481459138,901.75197,411.917741130664,924711.17581374,413572.7876791114,1447.86468,624.5696935815408,1475087.0459075589,620472.9991958359,0.38319,100000,0,1053423,10993.362762593531,0,0.0,0,0.0,47053,490.3415672646442,0,0.0,44297,458.26158646671473,1110930,0,39888,0,0,0,0,0,99,1.0331548793087255,0,0.0,0,0.0,0,0.0,0.04931,0.1286828988230381,0.3015615493814642,0.01487,0.3575745759407291,0.6424254240592708,22.793443668538117,4.062858526175011,0.3005853906846525,0.2886230593026215,0.200814456604734,0.2099770934079918,11.078302649844671,5.863947455430041,16.107848009403913,11395.503925153494,45.45135838116498,14.080109698484948,13.520269268842595,8.844649502548824,9.006329911288606,0.5848816492746246,0.8201058201058201,0.7138018628281118,0.5665399239543726,0.0945454545454545,0.7422258592471358,0.9094488188976378,0.844311377245509,0.7064676616915423,0.1173184357541899,0.513852973771703,0.7476038338658147,0.6623376623376623,0.5187074829931972,0.088235294117647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0050590048258242,0.0074174040100657,0.0097204729208142,0.0120499079732766,0.0140308719912027,0.016422353157047,0.0183861812687588,0.0207515538109257,0.022959209785557,0.0250071741893166,0.0269285633652494,0.0287258861858806,0.030835734870317,0.0330265016028779,0.0349028068835231,0.0368638808440215,0.0392270631508055,0.0411911906714984,0.0431041657996587,0.0579087353324641,0.0726641790264756,0.0857846218311334,0.0987860458278201,0.1110537734060703,0.1260532595611682,0.1369053293926971,0.1454918468439739,0.1544911457222103,0.1630856237012917,0.1757320825354476,0.1883141451813415,0.1986442003715412,0.2080507595365243,0.2166230797969364,0.2259548399938076,0.2342857142857143,0.2428165598086661,0.2504699141698938,0.2559591178790685,0.2618475750577367,0.2682807246918192,0.2727659373375549,0.276657060518732,0.2809561366256142,0.2853240472997084,0.2889127664359429,0.2928387285219003,0.296065637315072,0.2994579232671964,0.2963539918082321,0.2935304940000549,0.29094694199066,0.2876046176046176,0.2846134430075277,0.2807436309387193,0.2763205799946179,0.2759973731735347,0.2756033362958912,0.2752468882261549,0.2765066911916515,0.2767220902612826,0.2778778862674433,0.2782260768491405,0.280334427329133,0.2821598317014259,0.2830973952434881,0.2872653316645807,0.2896043064876957,0.2941596006022664,0.2990798943244966,0.3036340452661779,0.3092757466691924,0.3134908536585366,0.3174408743993215,0.3191866650904362,0.3215050474151116,0.3269776876267748,0.3338824821526633,0.3411538461538461,0.0,2.405362639943207,52.93166445581508,146.84205629119535,195.18653097463385,fqhc3_100Compliance_implementation_low_initial_treat_cost,68 -100000,95633,48153,459.8726381060931,4891,49.8781801261071,3854,39.65158470402476,1490,15.151673585477816,77.2563444549925,79.66551333810418,63.27473565930678,65.05536400116476,77.06301534008435,79.47777115737321,63.20073302749629,64.98635772996653,0.1933291149081526,187.7421807309645,0.0740026318104938,69.00627119823355,229.83686,161.67396865880067,240332.1656750285,169056.67359468035,537.26881,362.9639112503273,561187.2052534167,378922.8208362461,480.54094,235.9550243382202,498802.6204343688,243853.8179297192,2524.67945,1193.5500595888666,2601340.907427353,1209426.6200881146,890.21998,407.3984736111267,917139.6484477116,412270.50663591706,1446.2428,624.5441963954711,1473383.790114291,619281.4439874621,0.3787,100000,0,1044713,10924.189348864931,0,0.0,0,0.0,46915,489.90411259711607,0,0.0,43420,450.2838978176989,1114430,0,40013,0,0,0,0,0,75,0.7842481151903632,0,0.0,1,0.0104566415358715,0,0.0,0.04891,0.1291523633482968,0.3046411776732775,0.0149,0.3583905789990186,0.6416094210009814,23.037349825602195,4.088182113181624,0.3098079916969382,0.2667358588479502,0.2244421380384016,0.1990140114167099,11.322024484633904,6.162167781321786,16.052179711819672,11300.667305374149,44.23011632964592,12.711745508785368,13.53116020480089,9.497714640708052,8.489495975351605,0.5910742086144266,0.8103112840466926,0.6892797319932998,0.6069364161849711,0.1264667535853976,0.768313458262351,0.9324618736383442,0.8605341246290801,0.7794871794871795,0.174863387978142,0.5134328358208955,0.7117750439367311,0.6219369894982497,0.5567164179104478,0.1113013698630137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104927330733,0.0048751811722732,0.0069820071240828,0.0091432751211483,0.011343982093804,0.0135183317543269,0.0155255426799412,0.0174608688544689,0.019638729210564,0.0218513737783514,0.0239697914956493,0.0261540674970197,0.0283414147029453,0.0303323985483338,0.0324153461562299,0.0344677724775198,0.0365935831648784,0.0388407001506258,0.0408428720083246,0.0427979847500234,0.0567922911310382,0.070737865501671,0.0838635170603674,0.0963619520821929,0.1084834478319139,0.1240436406734462,0.1349592978210802,0.1445169810115123,0.1540821343822818,0.1625633210268738,0.1748754663273888,0.1870083432657926,0.1971043859075756,0.2064113102087785,0.2145835171622694,0.2240033748154397,0.2326588140541629,0.2401379559082097,0.2472267685033642,0.2532664930655134,0.2594765709249875,0.2647907140344706,0.2697618143860315,0.2739581332821202,0.2787731256085686,0.2831265049083163,0.2865414985085102,0.2904080618653892,0.2941954388103048,0.2978094093724004,0.2943912006146629,0.2909609580640271,0.288436833858012,0.2857536032447309,0.2837751255345462,0.2800639232920495,0.2755759345052992,0.2761807656887252,0.2767209290357994,0.2773896531957581,0.2777422870241629,0.2788210125980508,0.2806609213478434,0.2807866396129234,0.2820076257164097,0.2818221956730644,0.2837526652452025,0.2885193536264562,0.2931550727665204,0.2967378900562704,0.3005193045834274,0.304677623261694,0.3053468569997495,0.3073912388980882,0.3104049958673891,0.3150238566274875,0.311848764513248,0.310365251727542,0.3159861222311182,0.3158694001518602,0.0,2.529463628309421,50.521801400741296,139.94660316224162,197.60513367458336,fqhc3_100Compliance_implementation_low_initial_treat_cost,69 -100000,95706,48256,461.256347564416,4833,49.50577811213508,3804,39.297431717969616,1442,14.847553967358367,77.32722884548278,79.70382858011043,63.32110870231941,65.07601796750888,77.14110474662502,79.51637155825932,63.252098207364085,65.00754204747389,0.1861240988577606,187.45702185110247,0.0690104949553287,68.47592003498448,229.33878,161.34006192836455,239628.42455018492,168578.8371976308,535.68481,361.2579123672373,559263.51534909,377018.1320722463,480.31001,235.73015640290663,498404.0603514931,243697.1748523499,2484.38213,1174.8130542348222,2566580.015881972,1199147.76555835,884.32565,403.95831113536826,911035.2642467556,409278.9363091026,1396.94648,596.6285820374538,1438665.8934654044,607189.0897612212,0.38048,100000,0,1042449,10892.201115917496,0,0.0,0,0.0,46759,488.1094184272668,0,0.0,43434,450.43152989363256,1121620,0,40303,0,0,0,0,0,82,0.8463419221365431,0,0.0,1,0.0104486657053894,0,0.0,0.04833,0.1270237594617325,0.2983654045106559,0.01442,0.3611662038873462,0.6388337961126537,23.0816255314914,4.07957434619046,0.3083596214511041,0.2762881177707676,0.2166140904311251,0.1987381703470031,11.489176102001686,6.331122771097465,15.602251531901144,11338.312977360472,43.85164329508976,12.82616974259926,13.532510481698058,9.202832505521318,8.290130565271111,0.5912197686645636,0.8106565176022835,0.711849957374254,0.5788834951456311,0.1124338624338624,0.7647058823529411,0.9333333333333332,0.8559077809798271,0.7647058823529411,0.1470588235294117,0.5154833836858006,0.724025974025974,0.6513317191283293,0.5177419354838709,0.1023890784982935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0045504758236969,0.0065131378715633,0.0087652477731395,0.0109923633072675,0.0129514422734261,0.0152244406828054,0.0172193682146395,0.0194097314544004,0.0215461183193208,0.0238539636960311,0.0261182149643095,0.0281520643475756,0.0300460582580292,0.0320137054161162,0.0338266166144427,0.0358859605503066,0.0378933380397205,0.0401797322738004,0.0421917179992287,0.0569324768917436,0.0714427735744409,0.0844616917510095,0.0972512965086311,0.1090535196414447,0.1242106599253234,0.1349186137815411,0.1454231838073233,0.1551626515677581,0.1633487074975866,0.1756596661281637,0.1868134246782904,0.1976009483105499,0.2065609622744669,0.2159818657981029,0.2249324294386104,0.2325931711671502,0.2413230762309647,0.2485789814047946,0.2548211259218542,0.2606154593956508,0.2665949259003661,0.2715494290954268,0.2766031361932029,0.2806039404319413,0.284253074704853,0.2873233795977623,0.2911778925672409,0.2946515271178321,0.2979180959417383,0.2952117987743282,0.2921966311447233,0.289530004787249,0.2867078379314325,0.2845941370400071,0.2807888567094194,0.2779025624802277,0.2781394131693435,0.2779167304714749,0.278570921230201,0.2784765312016695,0.27963669248614,0.2814740703685175,0.2822440717177559,0.2844208105777522,0.2845156765462244,0.2853451458102621,0.2897775274570544,0.2946979468051731,0.2983156729400601,0.3011911256592107,0.3038014951487195,0.307330532388537,0.3127421928424891,0.3169953051643192,0.3201083117494702,0.3211845102505695,0.3210124548011249,0.3257844474761255,0.32701062215478,0.0,1.7433585599973689,50.629066229737965,145.1080124312133,188.2014462014101,fqhc3_100Compliance_implementation_low_initial_treat_cost,70 -100000,95774,48516,463.9359325077787,4843,49.32445131246476,3809,39.14423538747468,1442,14.58642220226784,77.38146625236273,79.70417911417921,63.35451413110488,65.06752978907095,77.1940755730416,79.52454412810211,63.28290849829807,65.00226626578562,0.1873906793211261,179.6349860771045,0.0716056328068077,65.26352328532425,231.22264,162.66523831610826,241425.27199448703,169842.794825431,542.05034,365.03302262749975,565348.3408858355,380520.4987925337,479.82369,235.24081574564,497681.6672583373,243000.45189345584,2493.75808,1157.3657139889615,2564733.4976089546,1169391.3184636596,862.7105,388.3763347486072,885366.5086557938,390121.6880533876,1398.55836,599.8386277562188,1416476.7682251967,588754.9832262225,0.38106,100000,0,1051012,10973.87599974941,0,0.0,0,0.0,47258,492.7642157579301,0,0.0,43328,449.05715538663935,1110388,0,39864,0,0,0,0,0,87,0.9083884979221918,0,0.0,1,0.0104412471025539,0,0.0,0.04843,0.1270928462709284,0.2977493289283502,0.01442,0.3485058381159707,0.6514941618840293,23.528463783567563,4.117007307734542,0.3113678130742977,0.2740876870569703,0.2110790233657128,0.2034654765030191,11.174924509374293,5.914114134106396,15.41185864285458,11350.427777417925,43.18280972066698,12.566701874814582,13.478243995881144,8.762935848932331,8.374928001038926,0.5767918088737202,0.7816091954022989,0.7107925801011804,0.5783582089552238,0.0941935483870967,0.7470210815765352,0.9137529137529138,0.8689024390243902,0.711764705882353,0.1036585365853658,0.5084621044885945,0.6894308943089431,0.6503496503496503,0.5425867507886435,0.0916530278232405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0046313186590457,0.0068370172751341,0.0092615159639288,0.0114187519700651,0.0133151454689822,0.0154721135029354,0.0176328329880917,0.0197793216183081,0.0220985431330823,0.0239522184999641,0.0260498425107985,0.0280355582960793,0.0300394280361132,0.0320950996463662,0.0338851766552717,0.0357856174519564,0.0377800586814303,0.0398312832446808,0.0417642832599256,0.0562727642743088,0.0704045541114669,0.0836899517516257,0.0972855911355942,0.10944072531759,0.1248902662168022,0.135319762816501,0.1452037003523638,0.154175657487128,0.1628996633285441,0.1750102275908102,0.1869788568647596,0.1973575467594606,0.2071956769055745,0.2160014964953399,0.2249711930508775,0.2338181290531415,0.2417413024888609,0.2495317023329738,0.2551830840639505,0.2614308705871455,0.266569896752745,0.2717845516424977,0.2762949829891226,0.2807560638065409,0.2854240793863807,0.2876178095547611,0.2914591380361862,0.2952525134893832,0.2984878023078139,0.2949967074760452,0.2913458238967812,0.2878385405686497,0.2855844024648954,0.2839669274273754,0.2810837257660082,0.2776971379887034,0.2776152098216475,0.2783240337506804,0.2794603230960412,0.2800633501024781,0.2811542991755006,0.2825136384458418,0.2828954686005383,0.2839812780590314,0.2864828513786147,0.287210615471485,0.2927876092433054,0.2970324553478352,0.3006026231832683,0.3029113067027759,0.3047284546026421,0.3097624350408314,0.3154116503402377,0.3202085078655869,0.325415399017084,0.3332333533293341,0.335583796664019,0.332973556395035,0.3362264150943396,0.0,2.435236983897257,46.9547541004392,136.68045818707552,203.60486225735312,fqhc3_100Compliance_implementation_low_initial_treat_cost,71 -100000,95736,48167,459.9210328403108,4826,48.95754992897134,3877,39.692487674438034,1448,14.571321133116069,77.31912755708531,79.6664842561145,63.32066847763053,65.05730570764275,77.12880507770613,79.4857779296592,63.248188101594046,64.99185508800956,0.1903224793791764,180.7063264552937,0.0724803760364878,65.45061963319654,231.781,163.00332604005106,242104.09877162197,170263.15208033848,540.36262,363.2733940389531,563631.6537143812,378656.1169972904,478.01089,234.38350687017493,494213.3157850756,240874.9470239896,2496.98814,1167.8166983123504,2560527.972758419,1172396.8431331343,875.52207,397.5533677254567,898139.5295395671,398994.918941843,1403.07706,599.9124688023974,1415280.4378708114,585339.3189521402,0.37923,100000,0,1053550,11004.731762346451,0,0.0,0,0.0,47150,491.65413219687474,0,0.0,43145,445.6421826690064,1110566,0,39894,0,0,0,0,0,101,1.0445391493273168,0,0.0,0,0.0,0,0.0,0.04826,0.127257864620415,0.3000414421881475,0.01448,0.364141213804046,0.635858786195954,23.328844389821366,4.057041578498865,0.3030693835439773,0.2844983234459634,0.2174361619809131,0.1949961310291462,11.63082421806584,6.528015951555413,15.512417040569876,11320.264479140313,44.15740108770368,13.354764098521269,13.273580369736637,9.311644575302129,8.217412044143655,0.6002063451122002,0.8014505893019039,0.7080851063829787,0.6215895610913404,0.115079365079365,0.7672790901137357,0.9186046511627908,0.8690476190476191,0.7453703703703703,0.1801242236024844,0.5303584491587418,0.7265973254086181,0.6436233611442194,0.5789473684210527,0.0974789915966386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0045602407807132,0.0065946998904265,0.008866724897926,0.0111256877281833,0.0131984968378601,0.0155391282182003,0.0176551076256994,0.0197235230363387,0.0220716201551974,0.0240226384915874,0.0259369545127836,0.0280660256080629,0.030059851864061,0.0320480411073392,0.0342614411509363,0.0364208586543538,0.0383801502012364,0.0402560425629195,0.0422768461618581,0.0567873397636644,0.070812846532064,0.0840693112924542,0.0964960249021999,0.1084286542617679,0.1239796134162331,0.1346555655724664,0.1443589661740139,0.1548055054296178,0.1637811819945756,0.1758105678012641,0.1868926260199554,0.1975181084549627,0.2064094293617905,0.2147391117809485,0.2243322850688754,0.2325695599281242,0.240654284460744,0.2476480134366807,0.25425106777662,0.2601402972635088,0.2648239383052672,0.2700328008620588,0.2742270267676101,0.2783775897286256,0.2828586940427422,0.2870739098855411,0.2913149216292957,0.2946215655780197,0.2973986036137104,0.2944432473199375,0.2912292770172663,0.2885208935240645,0.2862616390029495,0.2842292842292842,0.2809181331293037,0.2762231678187829,0.2770675582653161,0.277984121034518,0.2785990691370794,0.2796236016013769,0.2809444970040997,0.2826446280991735,0.2830858546388299,0.2843301837018562,0.2847305233615716,0.2848866927926393,0.2908999874827888,0.2953282784164366,0.2997873848334514,0.3019558245629884,0.3060040097077134,0.3104376682737462,0.3132347364429275,0.3207406022068449,0.3198224506482887,0.3255392970282094,0.3350030054097375,0.329520697167756,0.3316981132075471,0.0,3.0921733135893823,48.63141913235453,139.10712158273972,203.4922871771254,fqhc3_100Compliance_implementation_low_initial_treat_cost,72 -100000,95690,48549,462.4621172536315,4842,49.39910126449995,3868,39.931027275577385,1461,14.996342355523044,77.34181859432726,79.72433232992279,63.3271521787835,65.08546445636414,77.15878168656945,79.54129115700545,63.25891674191297,65.01875813713973,0.1830369077578097,183.041172917342,0.0682354368705304,66.70631922440862,229.42304,161.41957854031065,239755.39763820672,168689.04022346385,536.49813,361.7276590509917,560155.8470059567,377515.416033864,482.06391,236.40296224582,500319.3541644895,244390.53200047548,2515.84819,1172.3748194247528,2599776.873236493,1195961.7907492868,897.5052,409.9363511588506,927216.1876894135,417882.6012918491,1423.24974,598.5593560884221,1462424.537569234,605283.5243746554,0.3808,100000,0,1042832,10897.972619918488,0,0.0,0,0.0,46742,487.94022363883374,0,0.0,43693,453.15079945657857,1122024,0,40238,0,0,0,0,0,78,0.81513219772181,0,0.0,0,0.0,0,0.0,0.04842,0.1271533613445378,0.3017348203221809,0.01461,0.3572989076464746,0.6427010923535253,23.534025189701723,4.057435724217146,0.2926577042399172,0.2867114788004136,0.2145811789038262,0.2060496380558428,11.42396990141408,6.096006623015534,15.459839491059473,11382.456897940485,44.19592399628924,13.61196371384406,12.751644301843562,9.139819380376466,8.692496600225157,0.5700620475698035,0.7989179440937781,0.6837455830388692,0.5433734939759036,0.1179422835633626,0.76,0.9191011235955056,0.8867924528301887,0.7210526315789474,0.1569767441860465,0.4921618665694495,0.7183734939759037,0.6044226044226044,0.490625,0.1072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022176990612753,0.0045105770497785,0.0065744752087497,0.0091405821535211,0.011591491438565,0.0140201189215606,0.0162880061971888,0.01828241274767,0.0207177097067631,0.0229299102253068,0.0251722582232794,0.0271852437634154,0.029546413176548,0.0315208095046729,0.0337200421113473,0.035767110393976,0.0377808173754455,0.0397848792541373,0.0419965254299,0.0441277651523049,0.0595738013162018,0.0735831474908649,0.0861958586526452,0.0991740754379504,0.1108368668649663,0.1263008714781284,0.137099084379277,0.1472394597068622,0.1571710912878585,0.1658892284596,0.1774511387497981,0.1889532997339447,0.198982144022271,0.2080122424441165,0.2163871322518559,0.2257214360064669,0.2341263641841676,0.2420074892889673,0.2493363584798638,0.2557609753305477,0.2619694534691471,0.2662637503945384,0.2714407320706533,0.2752104613984456,0.2797285979584157,0.2834470191336896,0.2865250709437075,0.2903578465645459,0.2944998058755015,0.2976810409608058,0.2943154157533049,0.2908543873387462,0.2879958349163465,0.2856194817935253,0.2836170591375526,0.2797723761300882,0.276737207833228,0.276324405736363,0.275863831527295,0.2762128325508607,0.2777270610153702,0.277584478386507,0.2775115629817909,0.2782918149466192,0.2794409270099152,0.2808802159020137,0.283171796179788,0.2878977308245296,0.2903316076675528,0.2929276965626234,0.2976147288227825,0.3009503695881731,0.3041962395716598,0.3062825250773059,0.3080700453997961,0.3148605718319802,0.3180442022403875,0.3172235481304694,0.3198800109080992,0.3256342294585384,0.0,1.8638652450998845,49.17017145672212,143.76858582908113,200.9474720732765,fqhc3_100Compliance_implementation_low_initial_treat_cost,73 -100000,95674,48579,464.1595417772853,4825,49.20877145305934,3828,39.37328845872442,1486,15.113824027426467,77.38307130315455,79.75829578423689,63.34642469116329,65.09692630597158,77.18716296367751,79.56795257344193,63.27163148313934,65.02744089231457,0.1959083394770431,190.34321079496408,0.074793208023955,69.48541365700578,230.52172,162.21015914399442,240945.0007316512,169544.66118694152,540.89398,365.0724050608621,564714.1647678575,380942.6333809206,486.10208,239.49068152983665,503973.5769383532,247263.22422773007,2506.3273,1182.1154960846045,2581448.59627485,1197361.1703123157,909.65061,411.2222395362723,938365.355268934,417400.0246004886,1446.80026,619.7963767791518,1473718.0634237097,613951.3934533839,0.3814,100000,0,1047826,10952.045487802328,0,0.0,0,0.0,47098,491.6173673098229,0,0.0,44001,455.7873612475698,1112587,0,39979,0,0,0,0,0,96,1.0034074043104708,0,0.0,4,0.0418086418462696,0,0.0,0.04825,0.1265076035658101,0.3079792746113989,0.01486,0.3550307600714427,0.6449692399285573,22.72995511389728,4.152634273031122,0.304858934169279,0.2761233019853709,0.2084639498432602,0.2105538140020898,11.540269317638597,6.238626938197483,15.929108128966252,11377.329002727924,43.85988841188939,13.005127198173431,13.249972035558118,8.814034407733667,8.79075477042418,0.5888192267502612,0.8278145695364238,0.7069408740359897,0.5714285714285714,0.1215880893300248,0.75809199318569,0.9136069114470844,0.8833819241982507,0.7311827956989247,0.1538461538461538,0.5139412207987942,0.7609427609427609,0.633495145631068,0.5228758169934641,0.1121794871794871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020246398671836,0.0041942739043219,0.0063792456465958,0.0087635566026239,0.0109501296324538,0.0131111495668638,0.0153723827193214,0.0175055374659331,0.019656145228555,0.0219585602555177,0.0240526574803149,0.0262366121396958,0.0283345846489288,0.0305717787872233,0.0326104898279206,0.0347782049692008,0.0369422660547607,0.0387158382030868,0.040798710415475,0.0426902352340354,0.0578476132766384,0.0720425491817867,0.0853923389254351,0.0981660251961217,0.1105416890744783,0.1260679242091016,0.1366672320936347,0.1459142106550664,0.1558548271777524,0.1653665645157833,0.1781529423157622,0.1896816471300662,0.2001695707468722,0.2090524543934243,0.2169169004014739,0.2264222012961834,0.234801447268504,0.2422495242170696,0.2496338431145475,0.2556623552189902,0.2607095743942234,0.266665886428538,0.2715742352648594,0.2761764247244113,0.2810205669276024,0.2846837737524199,0.2882511951543063,0.2917991908602834,0.2945419229524117,0.2967498449479421,0.293835229565077,0.2914503145690815,0.2891647569908195,0.285817331967627,0.2834862793352408,0.2800880962941437,0.2758855047495614,0.2757547463429816,0.2765844920242258,0.2780519087233019,0.2776225599761585,0.2790076935154655,0.2803917084225627,0.2823748586129654,0.2832214445555396,0.2836328940921633,0.2840937878233456,0.2886722751684102,0.2937172229361303,0.2984221447868133,0.3021391578473317,0.3080179803470625,0.3112295488349033,0.3170877560173419,0.3218982801434746,0.3213418160786582,0.3271028037383177,0.3364413364413364,0.3405491024287223,0.3406352683461117,0.0,2.532757298875931,50.56890239287984,139.74972185559977,192.36241749684,fqhc3_100Compliance_implementation_low_initial_treat_cost,74 -100000,95698,47936,457.1568893811783,4910,50.07419172814479,3929,40.51286338272482,1471,15.07868502999018,77.3960056150407,79.7801143247286,63.35197710932333,65.11292185443139,77.2034627941268,79.5887519995891,63.27952667378048,65.04274194559379,0.1925428209138999,191.3623251394938,0.072450435542855,70.17990883760206,229.70024,161.43749132529788,240026.165646095,168694.73899694651,535.89166,361.3224832337602,559426.9577211646,377013.273387643,479.63285,235.16490715695352,497433.3841877573,242906.4375223863,2535.47828,1195.8576037518776,2615719.4194236035,1216267.6526377485,878.96386,404.1414142559818,906443.9382223244,410545.8137891941,1418.88266,608.6385830555502,1455155.4264456937,613389.8239450492,0.37933,100000,0,1044092,10910.280256640684,0,0.0,0,0.0,46790,488.3487638195156,0,0.0,43501,450.7722209450564,1124282,0,40328,0,0,0,0,0,83,0.8673117515517567,0,0.0,2,0.0208990783506447,0,0.0,0.0491,0.1294387472649144,0.2995926680244399,0.01471,0.3569753810082063,0.6430246189917936,23.229123183193938,4.0216179141012285,0.3168745227793331,0.2873504708577246,0.2043777042504454,0.1913973021124968,11.552585046766271,6.483369419086411,15.872571932013075,11311.590762285869,45.117586483673264,13.859723666460726,14.051849381921024,8.942144390927872,8.263869044363647,0.5899720030542123,0.8086802480070859,0.7116465863453815,0.5579078455790785,0.0944148936170212,0.7668308702791461,0.9224489795918368,0.8626373626373627,0.7067307692307693,0.1346153846153846,0.5105127259313906,0.7214397496087637,0.6492622020431328,0.5058823529411764,0.0838926174496644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.004562876437306,0.0067599114918495,0.0089001778003556,0.0111081724411531,0.0132875819655439,0.0155388113421087,0.017805184330621,0.0199860966284323,0.0220782411103604,0.0240721755177363,0.0259864266866535,0.0280663142522163,0.0305411919820358,0.0327280231118448,0.0348352818350027,0.036740105445242,0.0391214540019306,0.0409443086682959,0.0428760513178601,0.0577495534828338,0.0714876249280519,0.0843996475918778,0.0977312390924956,0.109483203862005,0.1253185572134042,0.135808624622076,0.1451077237503193,0.1548066652424695,0.1635710455764075,0.1755850141609502,0.1874932404663537,0.1980614384908776,0.2072549619655504,0.2150184157000714,0.2246081643495971,0.2326125985481227,0.2406178039876439,0.2477712706306143,0.2537606876686022,0.2595867482396398,0.2645987956868786,0.2694428374086449,0.2738959377204836,0.2778720310227823,0.2814266057300113,0.2848985799952624,0.288111108295106,0.2917821820479426,0.2958660744789887,0.2930438279051066,0.2905094494658997,0.2880418765875633,0.2846590254578965,0.2824741657537086,0.2797949594190517,0.2766091645904948,0.2766799065038657,0.2775340882042912,0.2783657090095529,0.2782777187785292,0.279472382522671,0.2802950036356081,0.2805820726926399,0.2816159110962726,0.28466983569288,0.2843015720966924,0.2877523050087217,0.2931562108777298,0.2974591294071302,0.3024890057578093,0.3059886886199059,0.3112894126496583,0.3143440762596459,0.3174275803881128,0.3248369887374037,0.329069590376123,0.3325933400605449,0.3327868852459016,0.3369189396849789,0.0,2.062134817883557,53.14091305198373,141.3137847974626,198.9159291229995,fqhc3_100Compliance_implementation_low_initial_treat_cost,75 -100000,95820,48546,462.0225422667502,4903,49.96869129618034,3894,40.02295971613442,1455,14.819453141306616,77.38566316619061,79.70609703119527,63.36611244363343,65.08403192526137,77.20108341532806,79.52509413519854,63.29719445857154,65.01882387890663,0.1845797508625537,181.0028959967269,0.068917985061887,65.20804635474065,231.40282,162.81176965626773,241497.4118138176,169914.18248410325,544.60041,367.35150885483074,567755.5729492799,382774.4613387922,487.12322,239.532597537114,504242.2250052181,246795.24931269835,2561.96822,1188.335984150655,2635960.5823418912,1202590.1771167351,926.30966,414.1935093683799,951374.8069296598,417009.4301048895,1423.915,596.9141176185652,1451636.443331246,594208.4897767946,0.38211,100000,0,1051831,10977.155082446254,0,0.0,0,0.0,47482,494.9071175120017,0,0.0,44085,455.9069087873096,1111380,0,39815,0,0,0,0,0,99,1.0331872260488415,0,0.0,0,0.0,0,0.0,0.04903,0.1283138363298526,0.2967570874974505,0.01455,0.3687998443882513,0.6312001556117487,23.49204502407768,4.1714152673257,0.2963533641499743,0.2847971237801746,0.2062146892655367,0.2126348228043143,11.292827460705135,5.951755352549077,15.42911711912827,11353.573686145104,44.42793160044469,13.734633199571292,12.94928523204281,8.806899172552914,8.937113996277668,0.5850025680534156,0.8277727682596934,0.7036395147313691,0.5591531755915318,0.1195652173913043,0.7797356828193832,0.945121951219512,0.8925081433224755,0.6857142857142857,0.1614906832298136,0.5048930772018847,0.7341977309562399,0.6351829988193625,0.5238853503184714,0.1094452773613193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801565839182,0.0046125928854556,0.0070536176431782,0.009164245219759,0.0113308108547947,0.0135831381733021,0.0159006818946274,0.0182059393815695,0.0204915938474117,0.0228617040872715,0.0250566207893091,0.0273121965739153,0.0296810926917503,0.0318682449819866,0.0340183754910958,0.0359038981965418,0.0376524879199561,0.0398009950248756,0.0418877524531436,0.0436845719994172,0.0584253019840193,0.0720244193096527,0.0853064176335565,0.0974279770535207,0.1087854208364057,0.124959072233547,0.1366400406805517,0.1460472333822247,0.1550407440590469,0.1640123807177817,0.175622345287381,0.1869477868268129,0.1975252360794529,0.2056772419212258,0.2142221831797867,0.2235659566000818,0.2316508141581092,0.2403984367981313,0.2481739425853575,0.2545907465176602,0.2601045959893326,0.2662872337944065,0.271622705610343,0.2756364331088504,0.2802027631929153,0.2841756624141315,0.2876188340248445,0.291487260017223,0.2946075208518647,0.2973249947445869,0.2950040928060546,0.2925448038503201,0.2894060837462626,0.286535552193646,0.2838959191536022,0.2799963335268416,0.2760762374359947,0.2763429582773426,0.2760516252390057,0.2767346065372064,0.2778919444029293,0.2788584717869883,0.2797302391823398,0.2815299716258183,0.2821851246030982,0.28324724787395,0.2847133213705887,0.2888316744638764,0.2924253587341683,0.29625520110957,0.2985928279618702,0.3007542591908856,0.3025871766029246,0.3077734257306417,0.3115996258185219,0.310893657156331,0.3147950632332774,0.3204664254121431,0.318045318045318,0.3277945619335347,0.0,2.4384923858780194,48.872684806798965,142.5710668348588,204.5302352916605,fqhc3_100Compliance_implementation_low_initial_treat_cost,76 -100000,95759,48306,461.3665556240144,4904,49.80210737371944,3864,39.682954082644976,1495,15.1212940820184,77.37657405990127,79.72224658247694,63.3458979718325,65.07939654461104,77.17596285149261,79.52637849775073,63.26894903695101,65.00695369512084,0.2006112084086595,195.8680847262144,0.0769489348814929,72.44284949020141,229.75128,161.56360590417958,239926.10616234507,168718.52515604757,534.56958,360.0270511844566,557517.4552783549,375246.6161837245,476.80677,234.33799437945092,493905.40836892615,241564.61540930867,2510.66561,1190.535175640542,2581159.55680406,1202704.0154595303,881.34405,407.2272206932018,904548.4288683048,409548.10683211865,1449.8647,634.2088215413332,1469800.4782840256,626692.7287574107,0.38074,100000,0,1044324,10905.732098288412,0,0.0,0,0.0,46522,485.1241136603348,0,0.0,43132,446.3496903685293,1124883,0,40324,0,0,0,0,0,99,1.023402500026107,0,0.0,1,0.0104428826533276,0,0.0,0.04904,0.1288018070074066,0.3048531810766721,0.01495,0.3497749070268154,0.6502250929731845,23.32777380962377,4.1046394592475695,0.3136645962732919,0.2675983436853002,0.2171325051759834,0.2016045548654244,11.576654840890445,6.367666405632079,16.159549668686513,11352.34042240407,44.17336936985604,12.568669340663831,13.586306717869048,9.450014563390315,8.568378747932838,0.5804865424430642,0.7940038684719536,0.6806930693069307,0.6054827175208581,0.1142490372272143,0.7526690391459074,0.9201995012468828,0.8593272171253823,0.7465437788018433,0.1899441340782122,0.5098540145985402,0.7140600315955766,0.6146892655367232,0.5562700964630225,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025524156791248,0.0047136818416811,0.0068893443454615,0.0089906131902962,0.0111056870881132,0.0131465056363988,0.0153868115956806,0.0175399191407685,0.0199245545343951,0.0223971501980735,0.0244649885208265,0.0265035259338335,0.0284971163632251,0.0305863936891104,0.0324863565555589,0.0344709968164716,0.0365112402017126,0.0382588489148927,0.0403260180266345,0.0422507342067442,0.0576656125079583,0.0719701327086579,0.0857322570500052,0.098538113104434,0.1105478383676566,0.125338266384778,0.1356715721616692,0.1461436962628756,0.1545839029391661,0.1637354152367879,0.1754669424158211,0.1863570454693011,0.1971952042126335,0.2062456915888873,0.2145916131802318,0.2229809120535615,0.2320156337241764,0.2403637304883127,0.2479118434790503,0.2540047862778102,0.2600770307313293,0.2663611494306624,0.2713934406847793,0.2768094428615893,0.2807746008620166,0.2849911321312444,0.2888233677319407,0.2925760865424904,0.2957937584803256,0.2983625561512824,0.295245769540693,0.2926353929345887,0.2896048990828265,0.2866737770603326,0.2832644719889822,0.2795792494885652,0.2770685056890811,0.2767756390338038,0.2773207990599295,0.2774616834394225,0.278572762936671,0.2789800897143307,0.2812232722114441,0.2817648887507217,0.2838874680306905,0.2870432754599637,0.2869796530548716,0.2922170987038883,0.2956485384802982,0.3008005047517647,0.3023403195871622,0.3051615964570042,0.3075532843076156,0.3120300751879699,0.316935334445062,0.3221649484536082,0.3276930049856473,0.331682187438082,0.3305473173362092,0.3251787730523146,0.0,2.581296759746218,48.17982106520338,145.22061672854872,199.5637709941967,fqhc3_100Compliance_implementation_low_initial_treat_cost,77 -100000,95756,48204,460.1278248882576,4875,49.772338025815614,3911,40.31078992439116,1499,15.257529554283805,77.3313489084019,79.69936945239326,63.31030609897547,65.06400246258535,77.14484262531182,79.5163035879909,63.23943102037138,64.99702325510223,0.1865062830900825,183.0658644023515,0.0708750786040894,66.97920748311503,230.1684,161.95877718996,240369.689627804,169136.94931906092,541.72214,364.6328983906856,565205.3970508375,380267.3862637177,486.1341,238.44230911861573,504738.4706963532,246701.85934784825,2520.61083,1177.1779163549902,2597431.38811145,1194456.2078146436,890.96678,405.9353042524368,911713.9918125236,405185.4445177705,1448.71616,615.6736413190278,1475407.1389782364,610145.5946546622,0.37918,100000,0,1046220,10925.894983082,0,0.0,0,0.0,47248,492.8777308993692,0,0.0,43914,455.6476878733448,1112719,0,39955,0,0,0,0,0,92,0.960775303897406,0,0.0,1,0.0104432098249718,0,0.0,0.04875,0.1285669075373173,0.3074871794871794,0.01499,0.347962999409565,0.6520370005904349,23.324389642861803,4.095048232230468,0.3152646381999489,0.2787010994630529,0.2106878036307849,0.1953464587062132,11.515657878210636,6.403731327947355,15.945733231811705,11271.946598268472,44.63950064063103,13.236661040069375,14.004935536935257,9.028583655665168,8.369320407961228,0.5888519560214779,0.7862385321100918,0.7055961070559611,0.5764563106796117,0.1321989528795811,0.7599293909973521,0.8948545861297539,0.8765060240963856,0.7611111111111111,0.1896551724137931,0.5190784737221023,0.7107309486780715,0.6426193118756937,0.5248447204968945,0.1152542372881356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809765043212,0.0043197420323068,0.0065465617863486,0.0088396667344035,0.0110887301877962,0.0132904237659255,0.0155499587033883,0.0176542062754627,0.0196381266045474,0.0218468975971485,0.0239579914670167,0.0262084553346689,0.0284861582793043,0.030445133828728,0.0324015772414789,0.0344239240584865,0.0364609760896353,0.0386343589477507,0.0406253898290989,0.0424652112323973,0.0569758338117855,0.0706340319998325,0.0840466599530043,0.0967243283032756,0.1083357935135591,0.1240587190117607,0.1343951950932224,0.1440379187303616,0.1534491049959925,0.1625052308550704,0.1745128470425935,0.1855317305609703,0.1959983889052175,0.2049191094375971,0.2136070897781692,0.2234082646093819,0.2320704786788597,0.2401012943162633,0.2476397966594045,0.2536006874820968,0.2590221995879534,0.2652576112412177,0.2707958100293867,0.274716700278498,0.2781196789102408,0.2819820486265226,0.2851439798766065,0.2884718157526403,0.2920796569103795,0.2955088043263206,0.2933828676035104,0.289992855965269,0.2872364351982007,0.2845776880945517,0.2824333723012267,0.278164986502768,0.2745385245385245,0.274301584708381,0.2748838554872964,0.2761627390740708,0.2766131887379581,0.2768813506023859,0.2773359427048634,0.277057816702603,0.2789635968162153,0.280511811023622,0.2831920903954802,0.2877264209868832,0.2923459035891695,0.297442799461642,0.3025339366515837,0.3080444046930078,0.3126869391824526,0.3157222305726739,0.3189273866568374,0.3238347946469774,0.3287914691943128,0.3336573984055998,0.3319205298013245,0.3455555555555555,0.0,2.1169262190563014,49.18381769820334,148.02552024366656,200.01727848839784,fqhc3_100Compliance_implementation_low_initial_treat_cost,78 -100000,95485,48081,460.5749594177096,4804,49.10718961093365,3812,39.2836571189192,1490,15.164685552704611,77.22623088476638,79.71249293850974,63.24095407219974,65.07574107867222,77.03470286965877,79.52429284225862,63.16893406691892,65.00738754797257,0.1915280151076075,188.2000962511228,0.0720200052808195,68.35353069965322,229.53832,161.52070298588362,240391.7892862753,169157.96511062843,538.66913,363.2288718920235,563497.5441168769,379768.4190197901,481.84759,237.082020349577,500505.6605749594,245134.6512641369,2494.84583,1176.2749696923431,2574160.4335759543,1193714.4202794114,897.18426,411.3981231674578,925628.2871655234,416895.6276499936,1452.15064,618.6054648940055,1481085.3432476306,615209.8257288026,0.37875,100000,0,1043356,10926.899513012517,0,0.0,0,0.0,46979,491.3337173378018,0,0.0,43563,452.15478871026863,1113057,0,39933,0,0,0,0,0,80,0.8168822328114363,0,0.0,0,0.0,0,0.0,0.04804,0.1268382838283828,0.310158201498751,0.0149,0.3513351933041052,0.6486648066958948,23.093645494585147,4.148692956501706,0.3061385099685205,0.2751836306400839,0.2051416579223504,0.2135362014690451,11.427298525803444,6.069300039267022,15.980386597147994,11239.186689969436,43.98964796738644,12.965593574616342,13.399575814233325,8.72461891153919,8.899859666997585,0.5873557187827911,0.8169685414680649,0.7189374464438731,0.578005115089514,0.1117936117936117,0.7547332185886403,0.918141592920354,0.8487654320987654,0.7511737089201878,0.1560693641618497,0.5139622641509434,0.7403685092127303,0.6690391459074733,0.5131810193321616,0.0998439937597504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001996250696661,0.0043311998539361,0.0064572461266676,0.0085714285714285,0.0108832871803225,0.0130051470213524,0.0151430116633843,0.0172889461099871,0.0197346210113865,0.0220077457429151,0.0243471834455575,0.0263212009047912,0.0284505127888298,0.0303020926802603,0.0324637082192488,0.0342906839500548,0.0363381742738589,0.0383152117419596,0.0400687607438662,0.0420804226837494,0.0565115451443404,0.0706799416683277,0.0841237460304107,0.0969047393215087,0.1088215402823569,0.1242792945565541,0.1348897535667963,0.1451234343994708,0.1545348426271994,0.1637217600653468,0.1750367043786164,0.1849425748587417,0.1953514232450641,0.2050464196069404,0.213454389003497,0.2238728028266038,0.232443678829504,0.2399278548078007,0.246926637326146,0.2526850874374627,0.2579833491802138,0.2637132038311391,0.2686476868327402,0.2728911319394376,0.2771718599578362,0.2813778948279486,0.2854864233503303,0.2885474931678288,0.2922088040514219,0.294648289727785,0.2918297918297918,0.2889118457300275,0.2860465116279069,0.2834738909426987,0.2810953039290014,0.2770378998023018,0.2734360144514166,0.2743319199290011,0.2747421887024781,0.2744278286970038,0.2748178804846533,0.2764675673540333,0.2763394537621816,0.2770751076312208,0.2779759197644637,0.2791717480993279,0.2794964130773811,0.2849677701983854,0.2897026450959153,0.2937946834143066,0.2983984392722653,0.3010542962572483,0.3023140084598159,0.3045464759194068,0.3039603050629422,0.304383023013762,0.3124905603383174,0.3113131313131313,0.3158038147138964,0.3259315016936394,0.0,2.3938207299317598,50.424266891596616,140.88052419120973,193.93456806310007,fqhc3_100Compliance_implementation_low_initial_treat_cost,79 -100000,95700,48491,461.8704284221525,4991,50.79414838035528,3950,40.616509926854754,1534,15.621734587251828,77.36399481233721,79.7476427793325,63.33329461681414,65.09686708314509,77.16858226511813,79.55708540485143,63.25817930717228,65.02623572440328,0.1954125472190782,190.5573744810596,0.0751153096418661,70.6313587418066,231.49764,162.84898358872994,241899.0804597701,170165.8971669069,542.68382,366.2380054659112,566394.5977011494,382021.29180788365,486.52186,239.46914837246456,504252.079414838,247084.35496976585,2565.11209,1211.2022586562437,2641689.3207941484,1226985.8882063185,905.86185,411.4259541610457,934266.4785788924,417709.7632541087,1495.0423,643.808006889954,1524977.4294670846,640871.3998980243,0.38075,100000,0,1052262,10995.412748171368,0,0.0,0,0.0,47294,493.46917450365726,0,0.0,43948,455.067920585162,1108910,0,39779,0,0,0,0,0,94,0.9822361546499476,0,0.0,1,0.0,0,0.0,0.04991,0.1310833880499015,0.3073532358244841,0.01534,0.3697318007662835,0.6302681992337165,23.27183361782802,4.054483210561622,0.310126582278481,0.2820253164556962,0.2040506329113924,0.2037974683544303,11.328750670397492,6.051492731156216,16.540999457177172,11380.939278020294,45.356563658265735,13.55390273192537,13.947125481664674,8.997587345099653,8.857948099576037,0.5729113924050633,0.77737881508079,0.6930612244897959,0.5620347394540943,0.1180124223602484,0.7447873227689742,0.9054945054945056,0.8626373626373627,0.6844660194174758,0.1494252873563218,0.4980007270083606,0.6889226100151745,0.6213704994192799,0.52,0.109350237717908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417179157252,0.0048171022341213,0.0070555510436124,0.0093196739638595,0.0114674698304808,0.0139576583735762,0.0162287323024195,0.0183524653784876,0.0206601004367258,0.0230086320769207,0.0251348524314457,0.0272365948094362,0.0296338202016046,0.0316743946419371,0.0340674537648613,0.0358978070492871,0.037912924578141,0.0401490152128344,0.041984574125278,0.0439679513226851,0.0585157490182972,0.0731324380619432,0.0863722198908938,0.0990240619215884,0.110776139226496,0.1263718835247097,0.1372611397425293,0.1473085106382978,0.1569422943468745,0.1654947693363059,0.1775290572535514,0.1880571181306793,0.198458008460292,0.2072001137320516,0.2158415841584158,0.2251561046897834,0.2341386695221523,0.2415665902037511,0.2491066060104144,0.2548622319905674,0.260751413670687,0.2662216194729581,0.2716966842591058,0.2763678193975124,0.2806052436640072,0.2842915179121014,0.2880129022578951,0.2905892811785623,0.2943661425969228,0.2966325845801587,0.2941903086776138,0.2907265420330009,0.2883354624963149,0.284298473062518,0.2819571684402149,0.2778954425635009,0.2739835990744967,0.2738149572928213,0.274257022662505,0.275118004045853,0.276015654118524,0.2771228731973751,0.2787629037629037,0.2787250144682366,0.2805894575939239,0.2828597379006098,0.2845069623663537,0.2902370555208983,0.2934862161502805,0.298674741436942,0.3034740683999459,0.3066267904926806,0.3118514814351794,0.3153828675301068,0.3182287268974575,0.3263905325443787,0.3290401717264642,0.3284701114488348,0.3304874690167997,0.330635838150289,0.0,2.4759463100484904,51.84218381291165,147.12282807922836,197.95996436886156,fqhc3_100Compliance_implementation_low_initial_treat_cost,80 -100000,95661,47942,457.0828237212657,4789,48.63005822644547,3771,38.7514243003941,1430,14.499116672416136,77.31725194233033,79.72531922020916,63.30264576078415,65.08482153559733,77.12752058047687,79.54241631776763,63.22894101195092,65.01696683813367,0.189731361853461,182.9029024415263,0.0737047488332294,67.85469746365891,230.4049,162.00244608403833,240855.6255945474,169350.56719461258,538.25401,362.8263646231544,562022.6947240777,378637.98687359993,478.68526,235.32976167535983,496580.2991814846,243079.36904470943,2449.38068,1167.2584176736702,2517462.7277573934,1177185.8517825138,871.32401,402.691318004359,894225.6405431681,404336.665939472,1387.09396,607.3968368581786,1407627.2671203522,597127.7993588686,0.37803,100000,0,1047295,10947.982981570336,0,0.0,0,0.0,47072,491.38102256928113,0,0.0,43189,447.6850545154242,1115618,0,40106,0,0,0,0,0,101,1.0558116682869716,0,0.0,0,0.0,0,0.0,0.04789,0.1266830674814168,0.2986009605345583,0.0143,0.3648946840521564,0.6351053159478436,23.03728077992356,4.050274878248032,0.3054892601431981,0.2802970034473614,0.2129408644921771,0.2012728719172633,11.542848523237376,6.384971582985038,15.409149589957634,11302.54264766758,43.45998603503064,12.932561198687404,13.13850492887439,8.98801862509506,8.40090128237378,0.5873773534871387,0.8060548722800378,0.6961805555555556,0.5865504358655044,0.1185770750988142,0.7715481171548118,0.9341825902335456,0.875,0.7627906976744186,0.1712707182320442,0.5019409937888198,0.7030716723549488,0.625,0.5221088435374149,0.102076124567474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0047660092278051,0.0069415549489024,0.0092979300673718,0.0114971765783181,0.0136294183559132,0.0158121314753228,0.0180614579928081,0.0205336498127724,0.0227035223244472,0.0247360699299264,0.0268401204311682,0.0291108228851419,0.0309812978122358,0.0329054047075591,0.0349194524629853,0.0372455114649417,0.0389739861882756,0.0411065795497107,0.0431664425472475,0.0577455518059197,0.0715677034244423,0.0847628446049509,0.0971305912434104,0.1093140047688379,0.1243980143735645,0.134739501507367,0.1447379633574776,0.1543625595963483,0.1627804663440387,0.1747670096428379,0.1868341273278475,0.1973397770811563,0.2063537242194684,0.2149175470097709,0.2244698892669896,0.2329419904917081,0.2410825768568825,0.2479695085983937,0.2544705208929593,0.2596341844349063,0.2648668241236583,0.2705443786982248,0.2745713566815638,0.2779235291259777,0.2819378373715215,0.2854122357062429,0.2886863911341569,0.2917410310131657,0.294377938445735,0.2925079595373393,0.2891020626621104,0.28678318242437,0.2845495664198669,0.2820957977207977,0.2785395115382261,0.2755495199595755,0.2759179530833074,0.2756626178081726,0.2760899690864513,0.2776326591536682,0.2790098191621244,0.2794612091469144,0.2798948751642575,0.2801132546309626,0.2812475653777235,0.2815181985554454,0.2845779524611641,0.2900931059734282,0.2956692913385826,0.2985202950359745,0.3040729227040413,0.3072545340838024,0.3118190072639225,0.314118085304526,0.3185954269715352,0.3232307925443249,0.3267306922769107,0.3312068048910154,0.3214152700186219,0.0,2.6029145130943965,51.3812172309734,137.3623395178079,186.04781054890745,fqhc3_100Compliance_implementation_low_initial_treat_cost,81 -100000,95865,48183,459.4899076826788,4843,49.4653940437073,3798,39.11750899702707,1505,15.427945548427475,77.4717338221379,79.7572303389768,63.40399372213196,65.09038536761601,77.28108640332061,79.56710662176279,63.33298634859717,65.02112614832592,0.1906474188172922,190.12371721400712,0.0710073735347833,69.25921929008894,231.066,162.50135559325858,241032.7022375215,169510.61971862367,538.84255,362.2894044226715,561597.0062066448,377428.4925913228,479.86172,235.1098324364093,496668.36697439104,242357.10992135195,2479.10466,1145.9786720384031,2556878.6731340946,1166250.1977138715,872.95984,390.36095260163614,897662.8592291243,394247.7573688378,1457.44824,614.1345668517514,1495060.2618265268,619653.503465175,0.37946,100000,0,1050300,10956.031919887342,0,0.0,0,0.0,46892,488.6454910551296,0,0.0,43374,448.6308871851041,1120011,0,40186,0,0,0,0,0,89,0.9283888801961092,0,0.0,0,0.0,0,0.0,0.04843,0.1276287355716017,0.3107577947553169,0.01505,0.3497926130752518,0.6502073869247482,23.64688749104603,4.106197890373564,0.3088467614533965,0.2701421800947867,0.2180094786729857,0.2030015797788309,11.189209431353234,6.010133418137723,15.8976472181285,11237.926912180435,42.99303669556007,12.524419178840446,13.1553871693714,9.012299202891972,8.300931144456248,0.5724065297525013,0.7923976608187134,0.6879795396419437,0.5688405797101449,0.1076523994811932,0.7483811285846439,0.9333333333333332,0.8488372093023255,0.7294117647058823,0.0925925925925925,0.5023923444976076,0.7004830917874396,0.6212303980699638,0.5273556231003039,0.1116584564860427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023180483854641,0.0045587624479541,0.0067533310349023,0.0089930978481526,0.0113100560930005,0.0133690111611912,0.0157586993725042,0.0177174389783657,0.0198925719420787,0.0219156508222204,0.0239965587521379,0.0260394232149816,0.0284041296419949,0.0303114485909189,0.0320369435024172,0.0341174283885091,0.0360578414944454,0.0379716663384908,0.0399642823768832,0.0422186378063374,0.0566393827224857,0.070464642241154,0.0836564458323727,0.096180719726819,0.1079668215975801,0.1231512511761161,0.1341398761557384,0.1443752991862135,0.1543380555347973,0.1639249391818756,0.1753623344344139,0.1855514129788728,0.1956396642888939,0.2048054670101742,0.2134252802881395,0.2228276487101836,0.2312121347113328,0.2383143998922365,0.2461108217658114,0.2529832662765179,0.2584316350792954,0.2638275045770993,0.2696025778732546,0.2743593421304264,0.2786809722979936,0.2810228404855909,0.2847868967066989,0.2887411504986171,0.2903825545814881,0.2932986234370686,0.2902693345142719,0.2871380655760148,0.2832698021189528,0.2813819853469329,0.2787633495324894,0.2756710694503622,0.2722641509433962,0.2730695877549024,0.2731387306753458,0.2744605144364389,0.2744441965945423,0.2762235022138631,0.2777858522102028,0.2790265075182142,0.2814647485435739,0.2831794501470057,0.2856901598739023,0.2909750876430987,0.2961712099803563,0.3006276069075742,0.3040878257765084,0.3083716555183946,0.3144759770973363,0.3190685014365643,0.3195760247631554,0.3212429111531191,0.3303638834365091,0.331013916500994,0.3327952649986548,0.3399327605528576,0.0,1.9760438777974416,46.9392113892194,136.74682942208418,203.06517064718423,fqhc3_100Compliance_implementation_low_initial_treat_cost,82 -100000,95732,48387,462.63527347177535,4714,47.93590439978273,3742,38.4302009777295,1506,15.292692098775747,77.34438518034166,79.6958096290098,63.33412346583962,65.0718946375707,77.15470420426917,79.51229163238332,63.26299137047987,65.00568302671698,0.1896809760724949,183.5179966264775,0.0711320953597507,66.21161085371341,230.53338,162.24233841611112,240811.2021058789,169475.5551081259,541.4508,365.2734198767177,564920.7579492751,380892.0280223349,481.92284,236.97438472004683,498780.1675510801,244046.3471460556,2474.71955,1163.7645328031988,2546117.2126352736,1176933.7040680333,899.41965,407.29739588619856,923619.6882964944,409557.24928571255,1465.3339,618.2498663030441,1490772.009359462,613218.6702877928,0.3791,100000,0,1047879,10945.963732085404,0,0.0,0,0.0,47337,493.774286549952,0,0.0,43476,449.6302176910542,1111260,0,39913,0,0,0,0,0,78,0.8147745790331342,0,0.0,2,0.0208916558726444,0,0.0,0.04714,0.1243471379583223,0.319473907509546,0.01506,0.3681753602597929,0.631824639740207,23.015978080115687,4.139415884231996,0.3099946552645644,0.2653661143773383,0.2068412613575628,0.2177979690005344,11.887864851149844,6.630095559211966,15.998149009120088,11206.074753974828,42.91395033180024,12.18455316436461,13.097406469897164,8.776111190192186,8.855879507346284,0.5900587920897915,0.8197381671701913,0.7137931034482758,0.603359173126615,0.1214723926380368,0.7670157068062827,0.9382151029748284,0.8823529411764706,0.7307692307692307,0.1797752808988764,0.5119414483821263,0.7266187050359713,0.6487455197132617,0.5565371024734982,0.1051805337519623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0040858536189713,0.006077577897503,0.0082365964880208,0.0102995302682148,0.012439811468651,0.0147163734942214,0.0171233226185009,0.0191578710751908,0.0213752174357924,0.023547012050168,0.0256386571009227,0.0277712088341438,0.0298552038063067,0.0317935175060347,0.0341641865079365,0.0359800846712004,0.0379665446399867,0.0398977354215815,0.0419973751640522,0.0571586661933894,0.071255899620122,0.0839941262848751,0.0964023934967557,0.1081574118986861,0.1238210041026942,0.1341733753354334,0.1435471858708373,0.1532579325665096,0.1628502819407817,0.1749547920433996,0.1856971348843246,0.1958733747880158,0.2046383527508798,0.2130046075854712,0.2224448232351183,0.2311193921610193,0.2386151528099489,0.2461152825352176,0.2523780634379185,0.2577914493541337,0.2627707349019975,0.2690237641798459,0.273120728929385,0.2767564417028924,0.2808866861461454,0.2849862258953168,0.2886752816856579,0.2914352301417751,0.2944303730673843,0.2925323758421753,0.2890543436452552,0.2865399218156762,0.2835424780037501,0.2806603773584906,0.27718788249694,0.2723303965454516,0.2719216341507363,0.2723460115587227,0.2724650583103356,0.2737797363408896,0.2746811525743977,0.2750996057489726,0.2751242561347984,0.2764044405015944,0.2774663968031553,0.2786643612347289,0.2834073981348188,0.289447972642892,0.2930182938875499,0.2954072868637555,0.2984846084798563,0.3023808035993251,0.3048798798798798,0.3095171643873848,0.3132022471910112,0.3202911737943585,0.3199592668024439,0.3271825943266317,0.3266563944530046,0.0,2.503217344095462,49.4695719443182,134.0569987514013,191.90857327818776,fqhc3_100Compliance_implementation_low_initial_treat_cost,83 -100000,95675,48470,462.3882937026392,4862,49.55317481055657,3842,39.60282205382806,1450,14.779200418082048,77.28108161739658,79.66879326450494,63.29287913429015,65.05583028093395,77.0915145424178,79.48317074609642,63.22012621448841,64.9874476373063,0.1895670749787825,185.62251840852184,0.0727529198017435,68.38264362764335,229.62698,161.67167666787807,240007.2955317481,168980.06445558197,541.99488,365.5381043396771,565970.013065064,381536.4874206189,487.27757,239.21037478643183,506262.2942252417,247708.171554374,2513.87771,1183.9570936421796,2590100.29788346,1200060.4584710528,878.91883,401.0193345664965,902362.529396394,402861.1739154368,1405.77932,607.7104550575384,1432962.8847661354,602634.8994558706,0.38089,100000,0,1043759,10909.422524170368,0,0.0,0,0.0,47152,492.27070812646986,0,0.0,43946,456.2738437418344,1113108,0,39899,0,0,0,0,0,106,1.1079174287954012,0,0.0,1,0.0104520512150509,0,0.0,0.04862,0.1276484024258972,0.2982311805841217,0.0145,0.3618239242005527,0.6381760757994474,23.322795722090305,4.043936549972809,0.3086933888599688,0.2787610619469026,0.2116085372201978,0.2009370119729307,11.282940934818283,6.03898710550988,15.577480633270063,11341.816193565175,44.22153146751856,13.193434529436542,13.479898033044536,9.079664082911677,8.468534822125806,0.5812077043206664,0.7973856209150327,0.693929173693086,0.5891758917589176,0.099740932642487,0.7470288624787776,0.9190371991247264,0.8579710144927536,0.7323232323232324,0.1067415730337078,0.5078828828828829,0.7068403908794788,0.6266349583828775,0.5430894308943089,0.0976430976430976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374664438028,0.0041565709303622,0.0063630920364939,0.0086862878564679,0.010831316233753,0.0130239094130585,0.0153863409262393,0.0177032711234532,0.019923332481472,0.0221189572052938,0.024464267404901,0.0267056830432773,0.0288567344378284,0.0310748433893834,0.0329751989348855,0.035226849745647,0.0370945854957166,0.0391617537158515,0.0412778662006262,0.0434025787218962,0.0584560091105701,0.07282722513089,0.085823754789272,0.0981302019213569,0.1104381864798421,0.1261492884727292,0.1363703923900119,0.1465350120363861,0.1569543646550618,0.1657807986771038,0.1769026663215117,0.1875433500953702,0.1981071455798908,0.2080417857494826,0.2163656996793847,0.2251538845450008,0.2338042652121429,0.2415626548911819,0.2493721947616612,0.2560430235758187,0.2606217856646434,0.2663941147529461,0.2719039320981068,0.2760289103395284,0.2796399902700073,0.2839242769932786,0.2874245498033912,0.2904762511304436,0.2936891630915194,0.296807695356888,0.2934514419771063,0.2901243921590236,0.2877331187440882,0.2837564039480159,0.2809030568205494,0.2779650628256206,0.2743931385891066,0.2741975207290041,0.2744448240519303,0.2750401141023355,0.27535010858983,0.2761963165911653,0.2764623225184036,0.2764329500201351,0.2772498737039621,0.2788496541681834,0.2815387677347815,0.2862116554795809,0.2910897994768962,0.2958628841607565,0.3003567074547342,0.3041418872690911,0.3087298613713001,0.3103965219998501,0.3147273905396649,0.3176158635001153,0.3221204385042799,0.3209974272709281,0.3227696404793608,0.3248865355521936,0.0,2.149401051630503,51.38923859777434,141.0920548716702,193.8154233816336,fqhc3_100Compliance_implementation_low_initial_treat_cost,84 -100000,95742,48132,457.7405945144242,4863,49.61250026111842,3872,40.02423178960122,1499,15.395542186292326,77.3612597271838,79.72795259797309,63.34108899169471,65.08974381295704,77.16895059516136,79.5354692522492,63.26895337133844,65.01926466907922,0.1923091320224443,192.48334572388612,0.0721356203562706,70.47914387781873,231.14762,162.58636573611156,241426.22882329597,169815.9470371484,539.09615,363.647348575448,562602.4210900128,379355.2339508216,482.33197,237.1942906158001,501602.1077479058,246019.8529114488,2524.00027,1191.698292468056,2609204.173716864,1218103.4408795072,919.24428,420.8419925477963,946683.7124772829,426590.2275745745,1459.6114,624.1213591354814,1499639.865471789,629417.746633986,0.37896,100000,0,1050671,10973.919491967998,0,0.0,0,0.0,47031,490.7459631091892,0,0.0,43756,454.8265129201395,1113589,0,39940,0,0,0,0,0,89,0.9295815838399032,0,0.0,1,0.0104447368970775,0,0.0,0.04863,0.128324889170361,0.3082459387209541,0.01499,0.3579980372914622,0.6420019627085378,23.52425361733972,4.077401353839439,0.3070764462809917,0.2732438016528926,0.2117768595041322,0.2079028925619834,11.439683110797722,6.202952538252184,15.94967320157614,11272.704822271442,44.40875627269977,12.950209115133076,13.562525422827315,9.053395468453935,8.84262626628545,0.5898760330578512,0.8119092627599244,0.7064760302775441,0.6097560975609756,0.1055900621118012,0.7591178965224766,0.9304347826086956,0.8554913294797688,0.796875,0.0994475138121546,0.5157816561455626,0.7207357859531772,0.6453143534994069,0.552547770700637,0.1073717948717948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.0046536620974937,0.0071644577946459,0.0094177647285916,0.0117766703956066,0.014022117675811,0.0161014010972202,0.0183284831776178,0.0204995552465569,0.022594185094185,0.0247095854736345,0.0268679710368202,0.0291470827205315,0.0313681456223666,0.0337849690940798,0.0358730486922361,0.0380771899303074,0.0401178839009609,0.0422896953311843,0.044145533351393,0.0592325763508222,0.0732549742000983,0.0867658936194761,0.0991914540159185,0.1117130029719874,0.1265551174860211,0.1359636101450504,0.1462496010213852,0.1553906124846478,0.1640978370383073,0.1753490725489563,0.1865063055657704,0.1970759280395673,0.2058974611189438,0.214893476683596,0.2234050794002102,0.2311045701352421,0.2388336423394572,0.2463758259943101,0.2530698190723596,0.2579041673891682,0.2625578244007289,0.2681672557897599,0.2719527080391546,0.2765173550513864,0.2807552365030976,0.2843339200778997,0.2873163235499562,0.2906996289160988,0.2929841441393945,0.2898768883393366,0.2864708384211176,0.2842554745550826,0.2813009067712312,0.2797260842498443,0.2760833689872257,0.2724102564102564,0.2727391659852821,0.2734198309725033,0.2740352125200071,0.2747396319384822,0.275102105242389,0.2764125710464727,0.2769830659536542,0.2788205681409565,0.2791787024748224,0.282240382698824,0.2861858651911468,0.2901824804735385,0.2943949296890473,0.2985189546628017,0.3004206098843323,0.3028304821150855,0.3060088741821463,0.308319436724106,0.3073866292660122,0.3088279602289846,0.3169366126774645,0.3248758963044677,0.3338582677165354,0.0,1.437850817005069,51.85993436598699,140.92069944379992,198.0397781954716,fqhc3_100Compliance_implementation_low_initial_treat_cost,85 -100000,95668,48233,460.0388844754777,4756,48.84600911485554,3755,38.84266421373918,1447,14.842998703850816,77.2430810454354,79.6484871150047,63.27207635196621,65.05036818184668,77.0606444616079,79.4659681584289,63.2037910997846,64.98387820430767,0.1824365838275099,182.5189565758052,0.0682852521816173,66.48997753900687,230.1376,161.87575716009266,240558.59848643225,169205.75026141724,540.38609,363.8315105476905,564458.732282477,379909.4791860293,475.1984,232.45182048106915,494293.8286574403,241064.3203540987,2453.78456,1142.5675153597458,2539134.297779822,1168543.2489021888,862.97429,387.25869116864806,890785.2573483296,393528.49559795,1411.28734,599.6989196845109,1449158.5065016516,604633.3085906643,0.37951,100000,0,1046080,10934.481749383283,0,0.0,0,0.0,47142,492.3485386963248,0,0.0,42941,446.397959610319,1113977,0,39955,0,0,0,0,0,92,0.9616590709537148,0,0.0,0,0.0,0,0.0,0.04756,0.1253194909225053,0.3042472666105971,0.01447,0.3459753883397216,0.6540246116602784,23.42750985808372,4.0446910629133495,0.3057256990679095,0.2758988015978695,0.2077230359520639,0.2106524633821571,11.262948941519165,6.057164990729654,15.566271978511358,11340.676138944027,43.12243897144107,12.639962236823155,13.067787994132246,8.740565065118265,8.674123675367403,0.5762982689747004,0.8243243243243243,0.6942508710801394,0.55,0.1061946902654867,0.7630878438331854,0.931924882629108,0.8640483383685801,0.7188940092165899,0.1372549019607843,0.4961948249619482,0.7491803278688525,0.6254589963280294,0.4849023090586146,0.0987460815047022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.0044935386363175,0.006639391693654,0.0089413629482112,0.0112192690691973,0.0134731910993431,0.0156716798368595,0.0178381800359418,0.0202470549738219,0.0224158764617936,0.0246843945811241,0.0269365455908479,0.0289904256522588,0.0309570413103945,0.0334523760373229,0.0353734321845498,0.0373949884500243,0.0395121951219512,0.0412818272591113,0.0432203654862551,0.057521707783455,0.0708360391310723,0.0841539462909694,0.096683541905674,0.1084544658031689,0.1239679044755896,0.1348664294439428,0.1457260720795625,0.1559875466732285,0.165311798627592,0.1776293787017358,0.1883332249463484,0.1985559959925077,0.2071982305536089,0.2163338622939257,0.2253552373240452,0.23326961984284,0.2411007065345999,0.2481361941994727,0.2542211625534451,0.260113531047266,0.2660712613540594,0.2727972342591935,0.2762574053198379,0.2802904084933539,0.2842266311321686,0.28763999899777,0.2909350391192436,0.2944701716153636,0.29771123503449,0.2937856911970692,0.2908253094910591,0.2890338763316611,0.2859599930623807,0.2833885907137866,0.2792029773482609,0.2760548656867714,0.2751002036927524,0.2752522234930606,0.2751387921955051,0.2754979556622529,0.2761589928342373,0.2762722513089005,0.2774277159583501,0.2793147299469731,0.2800333559180695,0.2816282256222882,0.285678391959799,0.2898759026852696,0.2951778467414657,0.2977109699821812,0.303134962805526,0.3071113908118313,0.3113731456827691,0.3156951518581399,0.3151235662764574,0.3191489361702128,0.3236548223350254,0.332145793368046,0.3374327440430438,0.0,1.609075816482922,49.75902757735093,136.3833658918357,194.5990099141591,fqhc3_100Compliance_implementation_low_initial_treat_cost,86 -100000,95822,48315,460.8440650372565,4754,48.59009413287136,3734,38.43584980484648,1412,14.380831124376448,77.44904619750217,79.7751182554412,63.38601454967061,65.10668982325203,77.27363237866808,79.6024027885686,63.320875117991285,65.04461301793829,0.1754138188340874,172.71546687260297,0.0651394316793272,62.07680531373683,231.74426,162.9979160414871,241848.69862870735,170104.89870957306,543.66982,366.31717149416863,566859.9277827638,381774.40618455946,481.91562,236.1637337183973,499370.6768800485,243698.65550973968,2421.80657,1133.6708869542772,2496772.5470142555,1152471.9865524392,831.29828,376.4257092009108,856125.1800212895,381421.5560676568,1370.99518,574.230938680638,1398911.4817056626,574834.2698388804,0.3805,100000,0,1053383,10993.122664941246,0,0.0,0,0.0,47311,493.1852810419319,0,0.0,43578,451.2742376489741,1113536,0,39911,0,0,0,0,0,97,0.9914215942059236,0,0.0,1,0.0104360167811149,0,0.0,0.04754,0.1249408672798948,0.2970130416491375,0.01412,0.354317998385795,0.645682001614205,23.49264995520701,4.116797875323912,0.3034279592929834,0.2771826459560793,0.2220139260846277,0.1973754686663096,11.595674029269764,6.442903944007658,15.052789944061107,11281.85093849736,42.78051678500142,12.655803789746129,12.797118015115434,9.238878778266333,8.08871620187353,0.5886448848419925,0.8144927536231884,0.6990291262135923,0.5958986731001207,0.0936227951153324,0.7595978062157221,0.918032786885246,0.8745980707395499,0.7602040816326531,0.1125,0.5178030303030303,0.7417763157894737,0.6326034063260341,0.5450236966824644,0.0883882149046793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022178787357078,0.0046526714849016,0.0070013089403671,0.0092949076096341,0.011663971851897,0.0137863622941973,0.0160680240204724,0.0182488084181304,0.0202452733776188,0.0226130910355977,0.0247886457959727,0.0266625615763546,0.0288345891713525,0.0307960009472524,0.0329218106995884,0.0349925613687081,0.0369185865987704,0.0388842803815844,0.0405514919790541,0.042516422540783,0.0566740382208128,0.0702904460196976,0.0839071424828381,0.0966999716329939,0.1089077613638758,0.1240595147518809,0.1344837089012782,0.1451539156786644,0.1548119386427154,0.1643039167398333,0.1762821202021288,0.1869437483798496,0.1970629416170101,0.2062988174717458,0.2149449632905696,0.2253477554718315,0.2333459500378501,0.2408090916230073,0.2483736296061638,0.2546639873952458,0.2607331533900847,0.2662345232821134,0.2701826370957282,0.2739443011369065,0.2776506760600888,0.2821762726848554,0.2846123171248411,0.2882459496092117,0.2917279079961837,0.2954655881078383,0.2921489817792068,0.2894351249572064,0.2866850681649409,0.2827736890524379,0.279577194484632,0.2762705678396545,0.2722248390642173,0.272332041554043,0.2738645404838081,0.2735184857597735,0.2745520378794912,0.275523380943064,0.276296403892843,0.2775943448489817,0.2781204601205077,0.2793110550435096,0.2805262861328675,0.2851729921113112,0.2882369299221357,0.2937216220447785,0.2986539413856751,0.3016415868673051,0.3045051790839885,0.306507363991584,0.3099524298106519,0.3145830896971114,0.3214339508962193,0.3248445959494686,0.3246612466124661,0.3269876819708847,0.0,2.026253778132228,47.50543094628376,143.69366027804912,187.4656323542388,fqhc3_100Compliance_implementation_low_initial_treat_cost,87 -100000,95803,48083,457.2299406072879,4842,49.24689205974761,3852,39.57078588353183,1460,14.811644729288227,77.3497797498425,79.68274211537047,63.33168066437421,65.0598371389884,77.15966063019965,79.4971360247533,63.25861645504537,64.99082639315732,0.1901191196428442,185.6060906171706,0.0730642093288409,69.01074583107913,230.9879,162.55983566446167,241107.16783399263,169681.3624463343,539.68862,363.9136157469263,562686.9409099923,379211.471192892,486.10067,238.8477022569273,503180.7041533146,246077.15213989612,2489.47755,1185.7753675489469,2554946.7553208144,1194343.5611531225,865.88995,400.866503961994,883478.847217728,398138.02945039934,1417.1374,614.7966572902668,1437886.7467615835,607944.3768521699,0.37807,100000,0,1049945,10959.41671972694,0,0.0,0,0.0,47112,491.0806550943081,0,0.0,43884,453.8480005845329,1111562,0,39878,0,0,0,0,0,88,0.9185516111186498,0,0.0,3,0.0313142594699539,0,0.0,0.04842,0.1280715211468775,0.3015282940933498,0.0146,0.3658055610333268,0.6341944389666733,23.317052477141843,3.991666751428901,0.3063343717549325,0.2793354101765317,0.2095015576323987,0.204828660436137,11.39469670234415,6.267296634036756,15.675385662532074,11331.8970237021,44.3622610215191,13.332925507312066,13.367984238832396,8.99220520747389,8.669146067900753,0.5916407061266874,0.8113382899628253,0.7254237288135593,0.5935563816604709,0.0899873257287705,0.7482993197278912,0.8938053097345132,0.9115853658536586,0.7536231884057971,0.1111111111111111,0.522795216741405,0.7516025641025641,0.653755868544601,0.5383333333333333,0.0833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025528293859027,0.004876960669999,0.0073477175391235,0.0097837019577563,0.012155426711423,0.0143169899699607,0.0164151712887438,0.0185069873319518,0.0208918916156464,0.023009447384313,0.0250945659193652,0.0272809413310881,0.0293872682590768,0.0314791168959551,0.0335664624208289,0.0356279319680092,0.0377620205993478,0.0396332292628281,0.0417367994514057,0.0438530734632683,0.0582350056857897,0.0719207804837242,0.0849605383139955,0.0972928664508806,0.1093367906231554,0.1243034628601638,0.1350935630330547,0.1458952006897212,0.1550886113811411,0.1639275676371516,0.1754817017974912,0.1870873471154887,0.1964730583870932,0.2059231887702113,0.214143481082984,0.223465667970438,0.2316036156678942,0.2393382518331908,0.2473280537339172,0.2545138133565369,0.2599266704449507,0.2655904803095302,0.2710609715718272,0.2757642496349317,0.279368584532505,0.2831017635403719,0.2871259916297083,0.2913399834805261,0.2938430906081919,0.2962821357943309,0.2932359154455792,0.2911564813031395,0.2883191123877108,0.2850180766449747,0.282546707458342,0.2789431006257554,0.2753856853818917,0.2762681604507559,0.2766846269267494,0.2765031998146068,0.2762796434377978,0.2763059333727577,0.278107002754361,0.2792425961773802,0.279771302808478,0.282100461355036,0.2831325301204819,0.287142278827889,0.2921710777342259,0.2943546809592739,0.298640496983884,0.3017869307760834,0.3075724524774073,0.3091239219246482,0.3120639940470653,0.3118956075964115,0.3106106408706167,0.3153617443012884,0.3241434689507494,0.3333333333333333,0.0,2.443269638114341,50.75325854746291,142.52167260360662,195.24430289818235,fqhc3_100Compliance_implementation_low_initial_treat_cost,88 -100000,95811,48659,463.37059419064616,4812,49.32627777603824,3856,39.78666332675788,1493,15.269645447808706,77.41775944651599,79.74686654394361,63.37436231324406,65.09560997964464,77.22401572977951,79.55529630329403,63.301414661589504,65.02586916258544,0.1937437167364777,191.5702406495825,0.0729476516545588,69.74081705919843,230.38554,162.13901381427436,240458.33985659265,169227.97362961914,540.60468,363.9997792108012,563766.5508135809,379440.2405857968,484.86611,237.44449687773,503504.1070440764,245798.18189624365,2534.66235,1179.801006855272,2616514.50251015,1202418.8056833113,900.06823,405.4706836024661,926143.584765841,409953.2664305858,1457.5196,622.2249422962352,1492229.0342445022,623725.9760312347,0.38142,100000,0,1047207,10929.92453893603,0,0.0,0,0.0,46958,489.630626963501,0,0.0,43827,454.86426401978895,1119400,0,40165,0,0,0,0,0,91,0.9497865589546084,0,0.0,1,0.0104372149335671,0,0.0,0.04812,0.1261601384300771,0.3102660016625104,0.01493,0.3607733705401634,0.6392266294598365,23.390576797044723,4.058410629263509,0.3073132780082988,0.2697095435684647,0.2074688796680498,0.2155082987551867,11.278853317273947,6.064936722577673,15.939915939004964,11337.753693796514,43.93671624998814,12.614554288414189,13.445033681424684,8.869026120852883,9.008102159296383,0.5718360995850622,0.7875,0.7088607594936709,0.58125,0.0974729241877256,0.7393238434163701,0.9105504587155964,0.8501529051987767,0.7037037037037037,0.1337209302325581,0.5029282576866764,0.6986754966887417,0.655011655011655,0.5433715220949263,0.0880121396054628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681477131198,0.0045513060930737,0.0070623332081866,0.0093132375941987,0.0115004474090946,0.0136609796815831,0.0157170522882478,0.0180554421490977,0.020237742367407,0.0222708943155998,0.0244674962586358,0.026597273548493,0.0289576480263157,0.0311222756426755,0.0332955248504846,0.035366055197488,0.0373808562824055,0.0398623220709746,0.0416679652195593,0.0435814679854242,0.0578132988324655,0.0717578798808217,0.0847274633123689,0.0970103785873356,0.1093076898770841,0.1249115170468352,0.1355903476621258,0.1457017711722055,0.1554728093292221,0.1645367583259241,0.1757936849350425,0.1876714992545859,0.1977241633911702,0.2068152289030342,0.2158189607821597,0.2248523328097692,0.2336911091048918,0.2416933355791365,0.2486635861194165,0.2559913103132861,0.2613963157590807,0.2668580631608431,0.2716272370968504,0.2758785674983852,0.2798438238896096,0.2833802886212369,0.2868699983770084,0.2893063400393476,0.2931838437592839,0.2964838663001012,0.2937348201226467,0.2911394142351294,0.2887662228215068,0.2852246050149064,0.2821997748681794,0.2780271111925261,0.2756522424529045,0.2748324889687857,0.2754791939016315,0.2758412608263524,0.2765195996197506,0.2766153544465143,0.2770798668885191,0.2783674192905098,0.2786799121215015,0.2794828700711053,0.2811229100768188,0.2864706615173788,0.2918462393994161,0.2962264150943396,0.2982218611788067,0.3012422360248447,0.3062433730430986,0.3102046959662853,0.3155875748502994,0.3177083333333333,0.3216320246343341,0.3169993950393224,0.3171127331711273,0.3160106992739778,0.0,1.79066596138597,49.0983448641832,145.55140305491065,195.39857420181613,fqhc3_100Compliance_implementation_low_initial_treat_cost,89 -100000,95732,48469,463.4604938787448,4888,49.95194919149292,3853,39.76726695357874,1405,14.352567584506748,77.3893283971574,79.7507963664068,63.35181630130408,65.0939756731334,77.21164829739848,79.57474542241981,63.28434823301132,65.0289276487054,0.1776800997589163,176.0509439869935,0.0674680682927544,65.04802442799473,228.93134,161.0467895342387,239137.50887895373,168226.47550896122,538.92917,363.7957923745933,562472.9035223331,379531.5906641388,486.02161,238.3080787843202,504457.0572013538,246396.03530990216,2485.84285,1170.4605450894428,2568425.834621652,1194400.111863789,888.37183,404.31540493117296,917261.3963982784,411634.6159394688,1366.07662,584.1906737227685,1398062.0273262858,586950.0916554229,0.38165,100000,0,1040597,10869.88676722517,0,0.0,0,0.0,46971,490.1495842560481,0,0.0,43960,456.0544018718924,1122766,0,40285,0,0,0,0,0,83,0.8670037187147454,0,0.0,1,0.0104458279363222,0,0.0,0.04888,0.1280754618105594,0.2874386252045826,0.01405,0.3619140625,0.6380859375,23.28356100319473,4.025447669220057,0.3158577731637685,0.2810796781728523,0.2094471840124578,0.1936153646509213,11.102967743317826,5.986012395956959,14.97126554178115,11344.770428632768,44.14879159203154,13.220606603707989,13.79974763084146,8.951994059803877,8.176443297678217,0.5878536205554113,0.7903970452446907,0.686113393590797,0.5923172242874845,0.128686327077748,0.755632582322357,0.9146608315098468,0.8434782608695652,0.7374301675977654,0.1791907514450867,0.5161170804001483,0.6996805111821086,0.6238532110091743,0.5509554140127388,0.1134380453752181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0046114709071928,0.007009322094073,0.0093620218717951,0.0113557805701272,0.0136697677259125,0.0159791293005054,0.0180710597742903,0.0203132823117087,0.0223372796201741,0.0243877446459678,0.0263060696844092,0.0282672804430698,0.0303342219843336,0.0323508786403762,0.0342668182287899,0.0361616663560883,0.0382333416313998,0.0400162143621831,0.0418554746502494,0.0559581488597443,0.0707768290641218,0.0844616917510095,0.0972853057448061,0.109603769408342,0.1247501718394755,0.1358323256751309,0.1460857161106261,0.1556030338639034,0.164776016983681,0.1761709917088403,0.1871389940508382,0.1975932689799113,0.2074021430133391,0.2159964794543154,0.2253101462117855,0.233586661756336,0.2417065874997188,0.2489364839877029,0.2552365464560978,0.2616969374660393,0.2672447036002664,0.2721815173717797,0.2769494040495907,0.2811650815217391,0.2850254025660897,0.2883781385524852,0.2916507912316797,0.2953390652272286,0.2979827241125039,0.2951919593134821,0.2918455524312461,0.2894947200134629,0.2861813677478827,0.2826733332347154,0.2795051873067138,0.275531077891424,0.2752649600521767,0.2754658701333967,0.2764224757376293,0.276392197736748,0.2771190765969141,0.2788301415487094,0.2798525689417825,0.2816389917572572,0.2833337632522506,0.2837323407495136,0.2880081995216945,0.2912251540965441,0.2955824863174355,0.2970021124544923,0.2983312342569269,0.301250544391215,0.3052915200958012,0.3089174923604037,0.3141062914292359,0.319377990430622,0.323104335775094,0.3179571663920922,0.3255278310940499,0.0,1.8652589328402995,50.43193796709879,144.2760382917932,193.9197844414234,fqhc3_100Compliance_implementation_low_initial_treat_cost,90 -100000,95682,48240,460.91218829037854,4663,47.699671829602224,3656,37.72914445768274,1402,14.318262578123369,77.35982293729873,79.7343489842649,63.33991942654043,65.0893911798831,77.1734035543413,79.54936342702918,63.2683597453988,65.02023460755134,0.1864193829574247,184.98555723572,0.071559681141629,69.15657233174954,230.01396,161.73514542795462,240393.9507953429,169033.8051336245,537.37516,362.6377768331837,561157.4172780669,378534.3709717435,475.2243,232.7735249895902,493449.3321627893,240819.31977187825,2375.61465,1120.427274820947,2453788.6854371773,1141956.3918197227,836.42936,377.0582139062452,864097.5732112624,384009.1712133768,1364.77506,594.1655590404198,1395949.4157730816,596536.6614365336,0.3799,100000,0,1045518,10926.997763424675,0,0.0,0,0.0,46898,489.653226312159,0,0.0,43009,446.2281306828871,1118630,0,40138,0,0,0,0,0,79,0.8256516377166029,0,0.0,0,0.0,0,0.0,0.04663,0.1227428270597525,0.3006648080634784,0.01402,0.3609115171422706,0.6390884828577295,23.43661019678021,4.023459550669969,0.3178336980306345,0.2666849015317287,0.2051422319474836,0.2103391684901531,11.2279247476811,6.138874442221067,15.168099569952046,11267.79729647661,41.93525920650559,12.024223189930929,13.142948904886294,8.25782982725772,8.510257284430658,0.5768599562363238,0.798974358974359,0.6867469879518072,0.5813333333333334,0.1248374512353706,0.7302452316076294,0.9148418491484184,0.8612903225806452,0.7010309278350515,0.1344086021505376,0.5107632093933464,0.7145390070921985,0.6232394366197183,0.539568345323741,0.1217838765008576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873860736419,0.0044394441572657,0.0066453609293359,0.0086632406410594,0.0109809663250366,0.0131609751132373,0.015345581267386,0.0174672489082969,0.0194998876381539,0.021513626319666,0.0238900157764255,0.0258938189279302,0.0281623549484546,0.0301894563426688,0.0321409415356686,0.0341894475737687,0.0363265559650503,0.0383749753674144,0.0402852717046647,0.0422602732587829,0.0567912326706296,0.0706657173371306,0.0836901763224181,0.0958628816733654,0.107487527818502,0.1226880264104626,0.1336772385683352,0.1440622902974979,0.1539752621844966,0.1629135092201017,0.174612582710089,0.1856171355554111,0.1958364619720762,0.2053628105505089,0.2139663943271157,0.2239599486066191,0.2328114363512593,0.2409711684370258,0.2484096656045538,0.2545544010619307,0.2603221218883326,0.2656089233935085,0.2705576252143575,0.2744706065430517,0.2791298337516825,0.2823433886127651,0.2859248341930729,0.2885714285714286,0.291754429038469,0.2947353165924481,0.2921266822467563,0.2893164682130938,0.2858047181622519,0.2832429938876715,0.2809714201095809,0.2765843753339745,0.2739979152847531,0.2741702978082102,0.2744997697149583,0.2752414555044727,0.2762582670104248,0.2768551898035971,0.2774854899995824,0.2789724411201638,0.2812395389986131,0.2832238373596813,0.2839450447146444,0.2890023982309154,0.2936951316839585,0.2971210871529005,0.3040577096483318,0.308621144213024,0.3138287864534337,0.317300409028935,0.321025641025641,0.3246753246753247,0.3288834951456311,0.3279569892473118,0.3304140127388535,0.3310657596371882,0.0,1.871837271631367,48.05003380108906,136.60440268791288,183.6806188490088,fqhc3_100Compliance_implementation_low_initial_treat_cost,91 -100000,95843,48099,458.91718748369726,4789,48.55858017799943,3827,39.25169287271893,1481,14.888932942416243,77.34109898624328,79.63107118874922,63.34986309044478,65.04377878964836,77.14163338957357,79.4395583641214,63.27401887271844,64.97380874515274,0.1994655966697109,191.5128246278215,0.0758442177263418,69.97004449561928,230.6909,162.25044314153126,240696.66016297488,169287.73425449044,536.78532,362.2766641525621,559390.002399758,377312.3797800174,481.02789,236.3041060020199,497678.9958578092,243175.1286583093,2484.62259,1187.0747142981784,2548241.9269012865,1194415.4860534184,918.86658,429.4736245887555,940026.1677952486,429408.0626291234,1437.76118,624.6783039658369,1447871.3938420124,610794.7753759735,0.3786,100000,0,1048595,10940.75728013522,0,0.0,0,0.0,46741,486.9630541614932,0,0.0,43519,449.8398422419999,1117346,0,40113,0,0,0,0,0,95,0.9912043654727,0,0.0,0,0.0,0,0.0,0.04789,0.1264923402007395,0.3092503654207559,0.01481,0.36312625250501,0.6368737474949899,23.039329359635268,4.034921215812438,0.2960543506663182,0.2863862032923961,0.2111314345440292,0.2064280114972563,11.627344571083045,6.606604355062278,15.988817487695515,11278.223699179494,44.130665256604246,13.457236936953318,12.88922641402142,9.05415082778403,8.73005107784549,0.594460412856023,0.8184306569343066,0.6990291262135923,0.6051980198019802,0.1227848101265822,0.7743288590604027,0.9385593220338984,0.8934169278996865,0.7383177570093458,0.1978609625668449,0.5130929791271347,0.7275641025641025,0.6228501228501229,0.5572390572390572,0.099502487562189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0046407473832466,0.0069683230380671,0.0093711292058399,0.0116784908421929,0.0137690303671741,0.0160559104292103,0.0179137975006375,0.0202541213000224,0.0220649160673915,0.0242146127608141,0.0263376511491954,0.0282756283187658,0.0303825339012696,0.0321490396504822,0.0338321808236144,0.0359727851766068,0.0380646498135101,0.0400631209576113,0.0420949685796329,0.0571637122002085,0.0711844566841901,0.084523123657885,0.096884977314737,0.1089570784718419,0.1245022760638354,0.1349040712764717,0.1450760676582217,0.1545012165450121,0.1636708575838451,0.1756247712938846,0.1871471523436655,0.1974582536093233,0.2066571928290336,0.2141819782154252,0.2235159867939997,0.2315297320820826,0.2391297010878736,0.2463605314815445,0.2533809703757143,0.2591324465008675,0.264692126002666,0.2692553342480011,0.2739794940590264,0.2781218126183885,0.2823391668720729,0.2851388541406054,0.2881375329018475,0.2916709777547853,0.2957896958345424,0.2933697494820116,0.2897275900931856,0.2866133528567003,0.2840252081406105,0.2818634371052827,0.2788526296455029,0.2755391016817757,0.2755105391030271,0.2759476341233849,0.2769908493454864,0.2776817259264827,0.2776150130651674,0.2784355712306335,0.2794813701518652,0.2803918729791033,0.2811666928022581,0.2823861530126322,0.286753132279796,0.2898743481152217,0.2941199746755302,0.296358517980385,0.29987300243412,0.3073832245102963,0.3099795717636377,0.3122180451127819,0.3158330377202317,0.3163996948893974,0.3203125,0.3272727272727272,0.3258810155361879,0.0,2.610515474468204,51.198708450512285,137.3909978795163,196.376341179464,fqhc3_100Compliance_implementation_low_initial_treat_cost,92 -100000,95631,47936,457.759513128588,4833,49.30409595214941,3828,39.328251299264885,1458,14.765086635086949,77.31769350596971,79.73991257021186,63.289715480586615,65.0814064878907,77.12479038973794,79.55409243132432,63.2162300516576,65.01367291515315,0.1929031162317755,185.8201388875358,0.0734854289290112,67.7335727375521,229.61026,161.37892532076478,240100.2394620991,168751.68650413022,539.32544,363.5669721570645,563296.6506676705,379509.3967114287,472.61306,231.7404889818836,489725.2355407765,238896.5891654493,2489.39994,1166.3582698922792,2558218.213759137,1174830.7333703646,882.92015,401.4966017297571,905333.3333333334,401915.4580938788,1421.8761,613.8789207532284,1441946.481789378,603270.1674844048,0.37738,100000,0,1043683,10913.647248277231,0,0.0,0,0.0,47141,492.2253244240884,0,0.0,42793,443.05716765483993,1118160,0,40105,0,0,0,0,0,78,0.815635097405653,0,0.0,1,0.0104568602231493,0,0.0,0.04833,0.1280672001695903,0.3016759776536313,0.01458,0.3616600790513834,0.6383399209486166,23.42438696269705,4.05964480682849,0.3079937304075235,0.2763845350052246,0.2055903866248694,0.2100313479623824,11.27682473312455,6.082881102629598,15.623301989999488,11272.752719875736,43.75207376118092,12.936428656376275,13.344221830124065,8.670256892179465,8.801166382501112,0.5760188087774295,0.8071833648393195,0.6946564885496184,0.5667090216010165,0.1069651741293532,0.7402482269503546,0.9244851258581236,0.8380952380952381,0.7382198952879581,0.1405405405405405,0.5074074074074074,0.7246376811594203,0.6423611111111112,0.511744966442953,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907934192398,0.0047661542205816,0.0069441624365482,0.0092378987591337,0.0115376397692472,0.0138447432762836,0.0162915961071552,0.0182470192789055,0.0204681055744885,0.022765944361303,0.0247703125801981,0.026723561770603,0.0287200082380805,0.0308128739426449,0.032691016169861,0.0345833850738855,0.036714464939293,0.0385678078776799,0.0406081861607468,0.0425491975096204,0.0567057176000919,0.0703544969663945,0.0841386554621848,0.0968506425110596,0.1085448151316414,0.1240943947803245,0.1348183257702158,0.1446723233701445,0.154658365159344,0.1634012202457678,0.1749946062567421,0.185575276856728,0.1963270374485327,0.2052787208410907,0.2136693739461997,0.2225216831924757,0.2321153201475025,0.2402702702702702,0.2473775032923119,0.253944428530507,0.2601507415511792,0.2654341212263047,0.2704859795377037,0.2745206202256892,0.2781634911177851,0.2821457619599241,0.2844649626543557,0.2877051994455959,0.2908403665924506,0.2940276054999868,0.2916902280744271,0.2888427593412334,0.2866891796820036,0.2830732846883742,0.2803929412810597,0.2773718164307335,0.2742271951450787,0.2742500081787549,0.2749940470115998,0.2753751729520701,0.2754652438230865,0.2764735852014422,0.2783012030729091,0.2786526297164595,0.2788187178999429,0.2805692335455928,0.2813811361140056,0.2855414210363016,0.2910144726338805,0.2955715352273174,0.2999186109603907,0.3038522427440633,0.3062233909341347,0.3095148268316607,0.3152842497670083,0.3202016649079611,0.3234403391883707,0.3308196070648938,0.3368621064060803,0.3406427221172022,0.0,2.74255913867469,48.406506167509534,140.4881445818918,198.4268159651197,fqhc3_100Compliance_implementation_low_initial_treat_cost,93 -100000,95719,48229,459.79377135156034,4791,49.0393756725415,3763,38.82196847020968,1451,14.80374847209018,77.34880342590687,79.70690807853771,63.338894218876014,65.07758319298212,77.15930465547699,79.51822895413115,63.26755872338264,65.00835547836273,0.1894987704298785,188.679124406562,0.0713354954933791,69.22771461938737,230.4467,162.0424439619372,240753.350954356,169289.73762987205,540.84055,365.1449212820938,564565.3945402689,381011.8380698647,481.34664,236.45873223913551,499807.5512698628,244672.1860806224,2458.35458,1152.7711227700834,2538514.4433184634,1174539.2061869462,885.12435,403.4974341629614,914464.7144245134,411304.8519044126,1413.49458,605.3797575671855,1445074.958994557,607319.3852918749,0.37863,100000,0,1047485,10943.334134288909,0,0.0,0,0.0,47079,491.35490341520494,0,0.0,43446,450.7673502648377,1113012,0,40000,0,0,0,0,0,105,1.096960895955871,0,0.0,0,0.0,0,0.0,0.04791,0.1265351398462879,0.3028595282821958,0.01451,0.3536561067941821,0.6463438932058179,23.240892846852542,4.070092507103055,0.31198511825671,0.2753122508636726,0.2027637523252723,0.2099388785543449,11.081944845064132,5.962323667148282,15.61050952557214,11285.089348327489,43.0805027587737,12.62829777945211,13.2283936526899,8.540417387801236,8.683393938830445,0.5732128620781292,0.7886100386100386,0.692504258943782,0.581913499344692,0.1050632911392405,0.7456445993031359,0.8956916099773242,0.8694362017804155,0.7171717171717171,0.1511627906976744,0.4975143403441682,0.7092436974789916,0.6212664277180406,0.5345132743362832,0.0922330097087378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020556337528986,0.004672991931233,0.0069098472933894,0.0092036692774205,0.0115198470798763,0.0136000407186847,0.0159519708073837,0.018097376747984,0.0200500740892136,0.0223939409446804,0.0245167373880245,0.0265920870323805,0.0284994602374955,0.0306384030144235,0.0329269047471684,0.0351208927464352,0.0370151788117868,0.0390740913665556,0.0411212426829141,0.0430845854085481,0.057759583955555,0.0715616300730477,0.0846927749394152,0.0980043552815679,0.1104325538714679,0.1258766408919259,0.1369602818366069,0.1467278476295925,0.1560897435897436,0.1643603441247774,0.1751691154293593,0.1863572433192686,0.1966612289287656,0.2056559205634049,0.2144829634845367,0.223960468440121,0.2319196702818018,0.2379735722486099,0.2453605439088339,0.2510651944838961,0.2570823496736564,0.2632391286554494,0.2686210486466023,0.2722842226266884,0.2769215833798509,0.2803352945520789,0.2835358619225437,0.288092758629448,0.2921612440747581,0.2960676154241103,0.293377599161279,0.2906074464724705,0.2871303834310541,0.2840432129927449,0.2826973557371457,0.27974335472044,0.275990020842544,0.2758823721827876,0.2757645936925277,0.2754735118199943,0.2757115678740627,0.2766384175236447,0.2772564230897564,0.2770577231427044,0.2778761909321587,0.2804757955841194,0.2823656280152108,0.2874221512846994,0.2934691599218532,0.2970851575750404,0.3027913721225304,0.3081089692528277,0.3112080409633984,0.3147088008548965,0.3211225162444674,0.32537703360646,0.32823838196696,0.3256431196406696,0.324660946581788,0.3303947872748179,0.0,1.89367980565117,50.17602514908567,135.6731419473881,191.7768664025413,fqhc3_100Compliance_implementation_low_initial_treat_cost,94 -100000,95626,48508,462.9598644720055,4833,49.21255725430322,3841,39.466253947671134,1468,14.880890134482254,77.26744378178137,79.68318831436365,63.28338998351626,65.06957081337032,77.07993787944878,79.50257202970646,63.211478826309495,65.00341864703913,0.1875059023325889,180.6162846571908,0.0719111572067632,66.15216633119303,229.0618,161.1771430341837,239539.24664840108,168549.4980802122,533.96398,359.7517179448444,557698.7953067158,375518.1692294512,483.49669,237.96081930032383,501739.2759291406,245845.28507278723,2488.35102,1178.2934488648075,2558840.0225879992,1188883.8218179934,876.25866,403.1442246630078,897900.6023466422,403145.58243888384,1424.72004,614.5482850964431,1446624.05621902,605603.532984143,0.38103,100000,0,1041190,10888.14757492732,0,0.0,0,0.0,46535,485.9034153891201,0,0.0,43709,453.1194445025411,1122708,0,40257,0,0,0,0,0,88,0.9202518143601112,0,0.0,0,0.0,0,0.0,0.04833,0.126840406267223,0.3037450858679908,0.01468,0.3556660039761431,0.6443339960238569,23.281772155359644,4.043992629662973,0.3204894558708669,0.2806560791460557,0.1968237438167143,0.2020307211663629,11.555901591877992,6.470700613419383,15.759039958141358,11377.243389603973,44.20079260835231,13.196681035052338,13.94558068904104,8.470093238752776,8.58843764550616,0.5977609997396511,0.8237476808905381,0.7156783103168156,0.5859788359788359,0.1082474226804123,0.7527801539777588,0.9360341151385928,0.849112426035503,0.7262569832402235,0.1311475409836065,0.5299401197604791,0.7372742200328407,0.6651735722284434,0.5424610051993067,0.1011804384485666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797738464344,0.0048468870411681,0.0072084145549057,0.0094707747337614,0.0117295191202352,0.0140546706318491,0.0164263719232416,0.0188057050097499,0.0209002229084439,0.0229188214933076,0.0247992369465554,0.027037577301584,0.0290619920581034,0.0310461725520098,0.0331131296449215,0.0351501116532958,0.0372852215881433,0.0392663635797471,0.0414421536605155,0.0433513355714494,0.0582038231205777,0.0718206003728763,0.0849323125072203,0.0976305812973883,0.1093185801465464,0.1239674672766552,0.1350498709410152,0.1442761678408134,0.1541917608925878,0.1630237478921194,0.1759097478375288,0.187370678915382,0.1978928579202856,0.2079708479695348,0.2165551103086881,0.2255148500592673,0.2341026270562239,0.2417478568053461,0.2489244565525852,0.2554747034893714,0.2600201386558026,0.2653982435419176,0.2705031543314356,0.275547401491714,0.2797826694704087,0.2839484851475377,0.2873358947724115,0.2910096642929807,0.2941542046999417,0.2979630631938852,0.2954475027956293,0.293070478339226,0.290397994535673,0.2881583700599667,0.2862896633722226,0.282802001867185,0.2792199569456756,0.2790674814462884,0.2799372880489426,0.2800925925925926,0.2803560076287349,0.2812913678303993,0.2816703977237065,0.2825248991778258,0.283271375464684,0.2846329917286583,0.2846806458020032,0.2896637998436278,0.2940662260918213,0.2961436328326265,0.3017670426007945,0.3045777469152289,0.3082039911308204,0.312308868501529,0.315824093215561,0.3163471841885938,0.3155548724254534,0.3161554192229039,0.3200339558573854,0.3218986836856801,0.0,2.637419440369765,50.332566389321,142.10820994393873,194.46640561406215,fqhc3_100Compliance_implementation_low_initial_treat_cost,95 -100000,95841,48700,464.4880583466367,4772,48.68480086810447,3778,38.86645590091924,1426,14.492753623188406,77.40182060844235,79.71623327518662,63.36325590393732,65.07603640005306,77.225878092841,79.54464931382338,63.296945886637744,65.01381207965503,0.1759425156013492,171.58396136323972,0.0663100172995783,62.22432039803039,230.5303,162.26574195874312,240534.1137926357,169307.22963944773,542.28653,365.761553839326,565274.8301874981,381089.5898825408,489.44593,240.29400659711027,507796.4441105581,248354.8069351123,2469.92765,1155.201184238386,2539960.1736208927,1168181.4299082714,866.53587,395.8385171730852,888931.9393578948,397808.77408737794,1389.09098,586.0763078177143,1412713.6611679762,580357.5956045388,0.38152,100000,0,1047865,10933.36880875617,0,0.0,0,0.0,47236,492.28409553322695,0,0.0,44105,457.3095021963461,1112856,0,40011,0,0,0,0,0,98,1.0016589977149657,0,0.0,1,0.0104339478928642,0,0.0,0.04772,0.1250786328370727,0.298826487845767,0.01426,0.360553772070626,0.639446227929374,23.48283296108276,4.10942162649963,0.307305452620434,0.2797776601376389,0.2088406564319745,0.2040762308099523,11.542152158875409,6.288361395555293,15.040365731546856,11347.08439699787,43.05557985955196,12.9429446512522,13.160122066773432,8.65581326626887,8.296699875257453,0.5839068290100582,0.8088930936613056,0.7002583979328165,0.5830164765525983,0.1011673151750972,0.7695004382120947,0.9157427937915744,0.8676470588235294,0.8021390374331551,0.1226993865030674,0.5036025786879029,0.7293729372937293,0.630937880633374,0.5149501661129569,0.0953947368421052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021972903460985,0.0043174654653437,0.0066144544089599,0.0089988522908477,0.0112747938715547,0.0134879270328596,0.0156347143657952,0.0177485201061441,0.0200645992190853,0.0223022834508664,0.0244784993080826,0.0263681898427556,0.0285855253014277,0.0307133149376055,0.0327770787351224,0.034717199479242,0.0366318186523134,0.0386665284114475,0.0407881343609131,0.0427425145961472,0.0574965583413291,0.0712000836295212,0.0849897836223607,0.0976975273628705,0.1102814171967813,0.1251161808196028,0.1359365234064642,0.1456056805136272,0.1548886944272512,0.1638441680859496,0.1753014186304139,0.1871177576556523,0.1978445793996545,0.2071165590552041,0.2154782971894613,0.2249095115282866,0.2333125181203862,0.2416925221457799,0.2491636710023474,0.2555090272533809,0.2611475277170834,0.2667562514606216,0.2720449172576832,0.2760024424994911,0.2798432305190865,0.2845626515365965,0.287922524211184,0.2913867760409391,0.2952228352866686,0.2980684406641298,0.2943862476497448,0.2913162191457542,0.2885071505761161,0.2862835359274976,0.2835536237026523,0.2788874996187978,0.2758832516893222,0.275519362893092,0.2751303875099808,0.2762877820349084,0.2773736208532569,0.2778714890946179,0.2785628195004364,0.2793090449475575,0.2804218947167924,0.2814684863651608,0.2830656522964215,0.2878144093291567,0.2933430363516651,0.2986462625073572,0.3009336520680167,0.3064201822299468,0.311751497005988,0.315935925396706,0.317871634083364,0.3213744903902155,0.3243935513032996,0.3306709265175719,0.333965844402277,0.3364910951117847,0.0,2.143756897567581,49.51402263491492,133.80846286905015,195.8066544903852,fqhc3_100Compliance_implementation_low_initial_treat_cost,96 -100000,95690,48076,458.3551050266486,4835,49.26324589821298,3892,40.02508099069913,1467,15.02769359389696,77.32145341825886,79.70994721230774,63.3143933609397,65.08078658996529,77.13345617620679,79.52369323111171,63.24320695992871,65.01238291310396,0.187997242052063,186.25398119603176,0.0711864010109906,68.40367686132254,230.35848,161.99912235273416,240734.12059776363,169295.77004152385,540.81144,364.2675525115574,564532.8038457519,380037.1538421542,483.80921,237.3928951278769,500962.5666213816,244615.31380203372,2509.77888,1179.8389382278913,2584365.179224579,1194667.805157808,876.34228,399.46676109231794,899640.9656181419,401345.2174467694,1421.01978,606.7906573125086,1456989.027066569,609334.8214450509,0.3793,100000,0,1047084,10942.460027171071,0,0.0,0,0.0,47114,491.7023722437036,0,0.0,43884,454.0704357822134,1115387,0,40063,0,0,0,0,0,85,0.8673842616783363,0,0.0,0,0.0,0,0.0,0.04835,0.1274716583179541,0.3034126163391933,0.01467,0.3652432969215491,0.6347567030784509,23.096848870752893,4.088309721390526,0.3052415210688592,0.2890544707091469,0.2081192189105858,0.197584789311408,11.497361975889072,6.219524393616197,15.705482448894816,11319.094824558557,44.66653830209919,13.803856983617266,13.52510097052644,8.899532066806074,8.43804828114942,0.5853031860226104,0.808,0.696969696969697,0.5703703703703704,0.1027308192457737,0.7604690117252931,0.9216494845360824,0.8628571428571429,0.7472527472527473,0.1299435028248587,0.507783543365456,0.721875,0.6276849642004774,0.5191082802547771,0.0945945945945946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797276485369,0.0047561099279991,0.006862108169563,0.0092072235038261,0.0113238645612892,0.013538016461576,0.0156235658851484,0.0177557688380641,0.0199450004600333,0.0221610334309169,0.0243082254277776,0.0264533420963452,0.0287515944533596,0.0310574366795128,0.0332476594514807,0.0352047146401985,0.0372990553529996,0.0393744097470863,0.0413282444335825,0.043335973652395,0.0584161931818181,0.0718943985595997,0.0850300155325133,0.0979280009260331,0.1101404319522257,0.1252196185516818,0.1354859939071638,0.1465867089888478,0.155922022957057,0.1647735195374929,0.1764737567870378,0.1873585988157481,0.1977485316510767,0.2063492063492063,0.2145992145992146,0.2233342928633112,0.2322372677181163,0.2396933866834509,0.2473582766439909,0.2537892664163385,0.2604895307026164,0.2664820074097448,0.2713368111004648,0.276311849465199,0.2801277226039871,0.2837802911892484,0.2869215191139335,0.2911088530420424,0.2944762298363662,0.2969784740965045,0.2939959426598417,0.2903920546517051,0.2868138659475251,0.2835672497766506,0.2816086840466233,0.2780555682982399,0.2741334091699055,0.2736009692524313,0.274024381938296,0.2749190420269741,0.2755427782029981,0.2766326068552753,0.2768691588785046,0.275844387470739,0.2772046828519336,0.2785472533194481,0.2819504970235552,0.2853511579740161,0.290618329425762,0.2947148048664876,0.2980330092697264,0.3008142978003384,0.3047805000944762,0.3098817245326211,0.3150131529500188,0.3170210238745694,0.315894141043292,0.3199513381995134,0.3192539769610532,0.3180778032036613,0.0,2.519578040824717,51.66623746437689,142.13719093622376,195.6972521306742,fqhc3_100Compliance_implementation_low_initial_treat_cost,97 -100000,95703,48184,459.32729381524086,4832,49.225207151290974,3777,38.85980585770561,1433,14.565896575864915,77.3455376358958,79.73063759949146,63.32130932583449,65.08656389335576,77.15563053626352,79.54517293618999,63.248415105034944,65.01787901121747,0.1899070996322791,185.46466330147385,0.0728942207995473,68.68488213828527,230.88978,162.3251051755783,241256.57502899595,169613.39265809674,537.55407,362.4417177385096,561081.9410049842,378107.1625116345,479.64599,236.2235695943062,497410.0080457248,243993.11747003585,2450.59089,1158.9709340528052,2523838.8869732404,1174448.867919613,884.46881,403.9115025674333,910003.4377187758,407956.3317411726,1387.60046,603.5065156574202,1412184.1739548396,598276.3722809718,0.37929,100000,0,1049499,10966.207955863452,0,0.0,0,0.0,46923,489.66072118951337,0,0.0,43388,449.5052401701096,1115695,0,39993,0,0,0,0,0,86,0.8986134185971182,0,0.0,0,0.0,0,0.0,0.04832,0.1273959239631943,0.2965645695364238,0.01433,0.3573412698412698,0.6426587301587302,23.59183733432471,4.03917381132078,0.3079163357161769,0.2758803283028859,0.2173682817050569,0.1988350542758803,11.413978014943387,6.219619465287361,15.416500228944711,11320.069639505691,43.19431834136974,12.904113352182383,13.076744599593198,8.970672533648878,8.242787855945279,0.5978289647868679,0.8051823416506718,0.709372312983663,0.5980511571254568,0.1371504660452729,0.7640067911714771,0.9117043121149896,0.8746177370030581,0.7582417582417582,0.1758241758241758,0.5225086571758368,0.7117117117117117,0.6447368421052632,0.5524256651017214,0.1247803163444639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0048176885237588,0.0068226813543834,0.0091973414093782,0.011322942947831,0.0136382155225096,0.0161938365523852,0.0184226381953167,0.0208094731675392,0.0229078769508049,0.0250243577252448,0.0270539538418874,0.0290998487918779,0.0309028708035364,0.0329721362229102,0.0353878918203622,0.0376742837017547,0.0396259509501717,0.0415865059639562,0.0433745233282627,0.0581188904670398,0.0722882739565454,0.0865239294710327,0.0989972959607756,0.1109118717367227,0.1263909456314787,0.1370403777789568,0.1467843980998232,0.1557802912060892,0.1637093571206217,0.1756260038158476,0.186571932978804,0.1969017396416207,0.2059113192681432,0.2146025735577399,0.2237193480115682,0.2321875,0.2400661506615066,0.2471159408782059,0.2542493161033342,0.2600277585010409,0.2645024073295003,0.2699095691234706,0.2742699856390617,0.2780054810467344,0.2818198585920689,0.285084597615034,0.2886083978180895,0.2924944527581402,0.2955265059449517,0.2927264195213515,0.289278037159248,0.286066999607205,0.2837062081864614,0.2809927128139181,0.2776330423389247,0.2736334100873734,0.2729014822700844,0.2744256543878472,0.2748383879757092,0.2765519820493642,0.2783259007853506,0.2788003011796202,0.2799643612874485,0.281490355816461,0.2827656039048707,0.2851436342002379,0.28890625,0.2938487840619657,0.3001301826502031,0.3056997156911413,0.3082785808147175,0.3136889220440134,0.3177028451001054,0.3197723243444993,0.3239336492890995,0.3176703163017031,0.3213134568896051,0.3183662428996484,0.3237767584097859,0.0,2.266440045868896,50.904654985440224,132.324311835189,193.0886691326422,fqhc3_100Compliance_implementation_low_initial_treat_cost,98 -100000,95612,48260,460.9463247291136,4941,50.52713048571309,3956,40.82123582813873,1476,14.998117391122454,77.23812690061078,79.66846336694024,63.25655152000609,65.05387099858841,77.05060492381782,79.485680572009,63.18464870458457,64.98645907203677,0.187521976792965,182.78279493124217,0.0719028154215237,67.41192655164241,229.32932,161.3732310199345,239854.11872986652,168779.26517585083,540.52097,363.6024896367666,564782.1298581767,379744.1844504525,484.13094,237.4851387380942,503394.4693134753,246029.38483193523,2544.85155,1203.5372910115957,2626218.1420742166,1223345.8467677638,877.74138,404.1503585971888,903381.573442664,408055.6505430156,1430.31942,619.3312211380908,1455704.9533531356,614207.9098308316,0.37976,100000,0,1042406,10902.459942266662,0,0.0,0,0.0,47071,491.73743881521153,0,0.0,43761,454.6709618039577,1115773,0,40085,0,0,0,0,0,89,0.9308455005647828,0,0.0,0,0.0,0,0.0,0.04941,0.1301084895723614,0.2987249544626594,0.01476,0.3488596830305373,0.6511403169694627,23.45891590864627,4.012710368298118,0.3106673407482305,0.2833670374115268,0.2093023255813953,0.1966632962588473,11.433976608097668,6.312388262025691,15.907493522961484,11362.625634725286,45.56618223088071,13.648103146378784,14.099621344104715,9.242431855151862,8.576025885245349,0.5861981799797775,0.7814451382694023,0.7192839707078926,0.5966183574879227,0.0835475578406169,0.7563667232597623,0.9076923076923076,0.8831908831908832,0.729064039408867,0.1183431952662721,0.5140388768898488,0.6951951951951952,0.6537585421412301,0.5536,0.0738916256157635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0044627914760682,0.0065997888067581,0.008985292174461,0.0110934701188731,0.0134682192813553,0.0157682696720893,0.0179892126016426,0.0201092404312337,0.0227382135138733,0.0246552573257818,0.0269309412985625,0.0291986579115292,0.0314113996474335,0.033489611301582,0.0353454876559816,0.0373503343181464,0.0393488942212804,0.0409514391297558,0.0430636983871977,0.0577184435569866,0.0718043300567979,0.0854975626155656,0.0983149025803054,0.1100984285231497,0.1250926887142221,0.1357309817254568,0.1458451042055327,0.1556825356061335,0.1647580783774493,0.175964692679558,0.1869416254662156,0.1966786169621549,0.2054962635050733,0.215835583227726,0.2252130303568258,0.2329534652247335,0.2406701693462917,0.2481267126792272,0.2538833335246777,0.2592721493288785,0.2647996623918598,0.2709749356487906,0.2760199483266238,0.2798094727609395,0.2841629294688855,0.2886480247889303,0.2918319199132819,0.2957554517133956,0.2988443433648913,0.295560322149824,0.2933579590092759,0.2899333211159197,0.2871257051931144,0.2845168385696876,0.2805664975552933,0.277801549945324,0.2777887300804994,0.2774594160009579,0.2770456087717418,0.2788987047989818,0.2791887194881112,0.2801130416579443,0.2807718937752663,0.2819429778247096,0.28344205629337,0.2856493063452354,0.2892634481030107,0.2938936631034723,0.2998347367592665,0.3012866980790141,0.3030095398724503,0.3063782031298709,0.3115248360593955,0.3163416898792943,0.3172180801491146,0.3229368750932697,0.3289915137162029,0.336302294197031,0.3419475655430711,0.0,2.194131616705272,51.19089485091245,149.99030991400372,201.17125607560425,fqhc3_100Compliance_implementation_low_initial_treat_cost,99 -100000,95716,47186,448.40987922604376,5283,54.00351038488864,4206,43.32608968197585,1593,16.24597768398178,77.33641368994157,79.712190271014,63.332022412709286,65.08949324928606,77.13523953311068,79.51486545907237,63.25587993710976,65.01781046639329,0.2011741568308878,197.32481194162688,0.076142475599525,71.68278289277907,220.72138,154.6664546096369,230600.29671110367,161588.92411889014,451.9665,298.9038936253502,471589.0237786786,311675.73198352434,442.89213,215.4676399659537,458691.8801454302,222081.7109301476,2962.5581,1377.4781235982284,3051025.4607380168,1395545.2546769716,973.82285,437.7312285703168,999866.041205232,440064.60144826205,1556.10888,658.3792755957905,1588364.4113836768,655265.09473501,0.38333,100000,0,1003279,10481.831668686533,0,0.0,0,0.0,38816,404.8852856366752,0,0.0,40238,416.3880646913787,1242804,0,44630,0,0,8758,0,0,77,0.8044632036441138,0,0.0,0,0.0,0,0.0,0.05283,0.1378185897268672,0.3015332197614991,0.01593,0.3596666062692517,0.6403333937307484,23.57717982677658,4.174755572134367,0.3181169757489301,0.2646219686162624,0.2089871611982881,0.2082738944365192,11.218829009052383,5.854482151236704,16.968522362522805,11825.057667333887,48.29545812812904,13.782878205050828,15.283537664008431,9.722270249383543,9.506772009686232,0.5936757013789824,0.8131176999101527,0.7257100149476831,0.590443686006826,0.1164383561643835,0.7600950118764845,0.8961864406779662,0.8724489795918368,0.772093023255814,0.1576086956521739,0.5222562011552837,0.7519500780031201,0.6649048625792812,0.5316265060240963,0.1054913294797687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.004604509173521,0.0066500837605969,0.0091064314171883,0.01147472610195,0.0138614466420874,0.0159699772585892,0.018378599142332,0.0205494157218365,0.0228999037733145,0.0247040131208036,0.0266934970534485,0.0289066677635638,0.031105800922874,0.0333601617962687,0.0356906602720469,0.0378147779986746,0.0396302559367575,0.041771033622616,0.0436268177840743,0.0583738852572001,0.0723523133906711,0.0857769108146656,0.097980466984157,0.1100898089977653,0.1257253384912959,0.1374777372572301,0.1485983494980432,0.1583919555076378,0.1686754732748369,0.1804836574577311,0.1920539827410947,0.2033358687384548,0.213465718561239,0.2228656191627293,0.232455800891169,0.2414350175477689,0.2490223840345199,0.257422038836052,0.264647019132901,0.2716411702176827,0.2775209004717201,0.2831951432688446,0.2890877335693949,0.2926320639193007,0.2973076024254947,0.3015064078543056,0.3055693147901187,0.3080264791063302,0.3118713334651638,0.3090273106417328,0.3062746879172,0.3049802171188803,0.303666584834,0.3003997206413362,0.2971371708511941,0.2932687743283015,0.2939516724355714,0.2956073586129219,0.2963676242443696,0.2969638049655997,0.2985527820497654,0.2984517152157583,0.2999399051837343,0.3018800143695366,0.3048837450695453,0.3062829462886451,0.3109174975623565,0.3154425942156003,0.3193390793184255,0.3222603523221231,0.3272853778634125,0.3287373930805566,0.3338200261277184,0.3386837881219903,0.3380535221408856,0.3391921060746222,0.3433441558441558,0.3404197328972472,0.3436206247647723,0.0,2.353695633583336,55.033222718866455,150.6727489661775,221.3245012551976,fqhc3_80Compliance_baseline,0 -100000,95606,47134,448.6747693659394,5184,52.98830617325273,4114,42.41365604669164,1648,16.76673012154049,77.26635035352784,79.7032371978995,63.26822878755484,65.07147733252066,77.05195362440362,79.49576412742188,63.18639514613877,64.99563345440481,0.2143967291242177,207.47307047761865,0.0818336414160683,75.84387811584747,220.31394,154.37236423110556,230439.44940694096,161467.2345157266,451.83548,299.4788402644363,471969.61487772735,312610.74646406743,438.72919,214.1578233691953,455674.9680982365,221422.06294176885,2944.66327,1375.1222247488922,3036857.97962471,1395181.6776655146,979.79019,447.52327529193855,1007178.6289563417,450464.16678875295,1614.9064,697.2396857355873,1645190.7830052509,690311.5945644242,0.38168,100000,0,1001427,10474.520427588228,0,0.0,0,0.0,38788,405.0373407526724,0,0.0,39792,412.9657134489468,1239027,0,44404,0,0,8785,0,0,67,0.7007928372696275,0,0.0,0,0.0,0,0.0,0.05184,0.1358205826870677,0.3179012345679012,0.01648,0.3453674709891324,0.6546325290108675,23.6849500644542,4.178275110791507,0.2999513855128828,0.268595041322314,0.205153135634419,0.226300437530384,10.958087930286926,5.728149259612172,17.809942249128103,11794.434416259324,47.216133766494906,13.468738561293206,14.0566077189472,9.493759429883005,10.19702805637149,0.5561497326203209,0.7800904977375566,0.6782820097244733,0.5734597156398105,0.112781954887218,0.719253604749788,0.8930232558139535,0.8823529411764706,0.7129186602870813,0.1382488479262673,0.4906303236797274,0.7081481481481482,0.605927552140505,0.5275590551181102,0.1050420168067226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004666497590667,0.0070175794936374,0.0091101350252155,0.0113393456973595,0.0137692754568525,0.0159413781841933,0.0179638882928175,0.0203712040599165,0.0226560098370734,0.0247547107845149,0.0269822996114548,0.0291326099936175,0.0311581725762715,0.0332080071064102,0.0354400778129591,0.0373875367967162,0.039302443938969,0.0414554689370205,0.0434075217454788,0.0584201062183749,0.0723829684667218,0.0858658542990703,0.0985706310500647,0.1108282811212742,0.1267544463629333,0.1386284888293688,0.1493946343805003,0.1602102311043555,0.1692635017515205,0.1825400250291287,0.1942107545533391,0.2043459318157063,0.214405451896002,0.2227782247842428,0.2318179801206957,0.2412999519612114,0.2499268034503727,0.2568539453502244,0.263756179813946,0.2710256558753692,0.277758257203092,0.2829725983580339,0.2880837590846945,0.2922021862574628,0.2950469631330149,0.2990713936614158,0.303616912888436,0.3070843698175787,0.3098888918212768,0.3075483636461544,0.3049823924287443,0.3025053867928514,0.3004203197896957,0.2986094604231043,0.2950185122854258,0.2925413272166416,0.2924639774181902,0.2938676588554556,0.2955438120402771,0.2954583794118198,0.2959008127187518,0.2966952366981705,0.2978595048708553,0.2985691956234219,0.2985401459854014,0.3000541356811123,0.30487574709028,0.3099357736988032,0.3122294157365849,0.3167727272727272,0.3193892158422141,0.3242987111448067,0.3288946054323977,0.3328996282527881,0.3345807507893814,0.3345443536179231,0.3336671339875826,0.3402061855670103,0.337593984962406,0.0,2.284480454086341,51.23704942498561,158.95600593424237,211.48816406915904,fqhc3_80Compliance_baseline,1 -100000,95709,46758,445.5798305279545,5174,52.94172961790427,4121,42.50383976428549,1609,16.42478763752625,77.34534288058313,79.71467395715533,63.32656324425341,65.07466217470107,77.14400411578032,79.5148696948587,63.25165269786414,65.0027126734935,0.2013387648028128,199.80426229662385,0.0749105463892689,71.94950120756971,220.82786,154.6162533970023,230728.41634538025,161548.29054425636,447.55315,296.1525002722705,467078.9998850683,308890.48080355086,435.66705,211.4877128167784,451978.87346017617,218423.82262652417,2920.07362,1340.2285745905265,3016726.932681357,1366051.400171902,966.83479,425.24503011134186,999760.3987085854,433889.10145476594,1566.50652,656.9073758399745,1602204.1814249444,658136.485933122,0.3785,100000,0,1003763,10487.655288426377,0,0.0,0,0.0,38455,401.2161865655268,0,0.0,39542,409.86741058834593,1243604,0,44659,0,0,8713,0,0,63,0.6582453060840673,0,0.0,0,0.0,0,0.0,0.05174,0.1366974900924703,0.3109779667568612,0.01609,0.3466468511982166,0.6533531488017834,23.8867145023876,4.141558083735052,0.299927202135404,0.2744479495268139,0.2162096578500364,0.2094151904877457,11.63104877737368,6.350002332310215,17.101093511524084,11691.821848207925,46.950412078874976,13.86175913322729,13.809239889190678,9.88262313994058,9.396789916516438,0.5738898325649114,0.8063660477453581,0.6731391585760518,0.5836139169472503,0.1170336037079953,0.7649572649572649,0.9193205944798302,0.8754098360655738,0.7544642857142857,0.1529411764705882,0.4981362250084717,0.7257575757575757,0.60687432867884,0.5262368815592204,0.1082251082251082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0044594895911458,0.0068179051174871,0.0087852935202112,0.0108096564908784,0.0130219204023661,0.0151269584008643,0.0175066096383328,0.0196266841126081,0.0219467504683133,0.0240504382592649,0.0257550395875907,0.0279054936690632,0.0298141509045205,0.0319195046439628,0.033822617324788,0.0359676467237647,0.0380045040837718,0.0399272160124772,0.0420496467204401,0.0569190600522193,0.0711684179679323,0.083985645631781,0.0970572453628205,0.1101040369721653,0.1259008413143552,0.1374170603535219,0.1480412415056557,0.1591839351935963,0.1678572194692923,0.1796338796047882,0.1908685390095494,0.2012295304934443,0.2113974210215206,0.2206243461983152,0.2297836495832594,0.2389805164371638,0.2475589452843772,0.2556318447483402,0.2621910717148812,0.269761040042564,0.2755496849758618,0.2818610923803102,0.2866073460198081,0.2910510277174111,0.295247949153795,0.2988593441228706,0.3023246951219512,0.3055879230430617,0.3078770920225965,0.3057317976695629,0.3033581062482796,0.3017670535475045,0.2991660524071745,0.2967046028585862,0.2927068187036045,0.2900891220529675,0.2910281597904388,0.2909814458937773,0.2922713045952482,0.2930008765222581,0.2953043888626711,0.2962375907232835,0.2961038381765873,0.296756068864504,0.2997375055227798,0.299547127087461,0.3038815276695245,0.3074434782608695,0.3110639802050194,0.3167156751866093,0.3210612374070362,0.3217988757026858,0.3261643316925407,0.3286367453578426,0.3325502173146952,0.3353999697565401,0.3346007604562737,0.3314285714285714,0.3284218689414502,0.0,2.187841077621582,51.03919055828201,151.57950699036545,219.43269791446303,fqhc3_80Compliance_baseline,2 -100000,95656,46429,441.3941624153216,5255,53.6923977586351,4169,42.91419252320816,1623,16.517521117337125,77.2498286400838,79.64801149886452,63.26585613190741,65.03869335476745,77.04446066051041,79.44774165399306,63.18880175562721,64.96629297804367,0.2053679795733956,200.26984487145685,0.077054376280202,72.40037672377753,219.3367,153.69353188875132,229297.3781048758,160673.17459307445,446.90613,295.73850890108423,466512.3254160743,308479.77011487435,432.36629,210.70687432852472,448114.0231663461,217200.9456894112,2932.54073,1358.535765399035,3017122.072844359,1371637.247427277,975.29973,443.0952076422479,998536.913523459,442169.6557518995,1571.52396,665.7076512208258,1600472.6938195198,660120.8745745961,0.37925,100000,0,996985,10422.608095676173,0,0.0,0,0.0,38455,401.29213013297647,0,0.0,39316,407.06280839675503,1244661,0,44679,0,0,8657,0,0,69,0.7213347829723175,0,0.0,0,0.0,0,0.0,0.05255,0.1385629531970995,0.308848715509039,0.01623,0.3511547554100745,0.6488452445899254,23.634585058357622,4.14675408815966,0.3031902134804509,0.2748860638042696,0.2204365555289038,0.2014871671863756,11.376546903833736,6.20145055039093,17.404730556288833,11768.982305041587,47.9194274085774,14.157361913752586,14.400414713772856,10.222539422860455,9.139111358191492,0.5895898296953705,0.8211169284467714,0.6914556962025317,0.5756256800870512,0.1357142857142857,0.7631147540983606,0.9318181818181818,0.8404558404558404,0.7311320754716981,0.1734104046242774,0.5178026449643948,0.7401812688821753,0.6341730558598029,0.5289957567185289,0.1259370314842578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.0046852657519243,0.0070746338344109,0.0094086567770778,0.0115449949649581,0.0137086753712341,0.0158053595464371,0.0178689947414101,0.0200143178564123,0.0220911297508218,0.0243812376273168,0.0265536723163841,0.0286155270875135,0.0306422188553229,0.0328105803281058,0.0349467369945185,0.0369096221996559,0.0389638704318936,0.0410844890188204,0.0429990928901354,0.0578413958833977,0.0716163149903136,0.0848524920499984,0.0978976830320503,0.1091294758281535,0.1247142494284988,0.1368815639966443,0.1480088236234401,0.1589216944801026,0.1686521790506064,0.1810972649296002,0.1927756571527717,0.2035199441694109,0.2131552104241387,0.2218359215478516,0.2311563930491978,0.2396270552813315,0.2469321001579066,0.2548452810433714,0.2621632488942501,0.2687971016175668,0.2759090482006953,0.2814527822015165,0.286681824196711,0.2920759499841567,0.296033433898808,0.2999384908928862,0.3040802778061485,0.3085892358631435,0.3117780159580802,0.3092583092583092,0.3062147515891948,0.3029973598384842,0.3008964907961244,0.2999389581193145,0.2969556757419295,0.2942163411314065,0.294456857462049,0.2960050599155541,0.2977570294054518,0.2984332488976451,0.2981574207849268,0.2985421641322106,0.2990821580479069,0.2997519924875394,0.3015835868632499,0.3022998610441539,0.3059708480289647,0.3098513075878399,0.3139489039583661,0.3175261449693473,0.3214304441298306,0.3245985310593801,0.3294632086851628,0.3356253484482438,0.3384399485440299,0.3369565217391304,0.3399798590130916,0.3428493746601413,0.3438438438438438,0.0,2.4458085383784414,53.06472663412168,157.56529082998796,214.57593646678345,fqhc3_80Compliance_baseline,3 -100000,95731,46827,445.6759043570004,5224,53.24294115803659,4141,42.51496380482811,1570,15.940499942547348,77.32698317968122,79.68539285015744,63.31555014592704,65.06076008531291,77.12673135539958,79.4909590403859,63.23979913240053,64.98991105144567,0.2002518242816364,194.4338097715388,0.0757510135265135,70.8490338672334,219.82972,154.0608596972481,229632.74174509823,160931.00426951365,450.98741,298.05182483995475,470378.9159206527,310623.3663494112,438.75142,213.9145716395257,453030.48124432,219492.00225060427,2904.26621,1347.2786765928352,2983453.95953244,1357034.582938479,958.79483,430.09166111744287,980022.4483187264,427745.8763162223,1528.42584,650.0857598097739,1553035.0252269378,642354.4958093644,0.38095,100000,0,999226,10437.851897504466,0,0.0,0,0.0,38667,403.1296027410139,0,0.0,39820,410.7760286636513,1245018,0,44721,0,0,8845,0,0,80,0.8252290271698823,0,0.0,1,0.0104459370527833,0,0.0,0.05224,0.1371308570678567,0.3005359877488514,0.0157,0.3494682801613494,0.6505317198386505,23.82017456536325,4.148866540229491,0.3071721806326974,0.2765032600821058,0.2100941801497222,0.2062303791354745,11.34510459113964,6.13334258278961,16.694324391394744,11752.629627625663,47.3237603411442,14.1104598991234,14.410508032146382,9.615008844947864,9.187783564926551,0.578121226756822,0.8087336244541484,0.6863207547169812,0.5643678160919541,0.1217798594847775,0.7520391517128875,0.934959349593496,0.8319327731092437,0.7142857142857143,0.1381215469613259,0.5049742710120069,0.7136294027565084,0.6295081967213115,0.5207715133531158,0.1173848439821693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021883389899194,0.0045324572610573,0.0069930779692669,0.0093668725617685,0.0115636918382913,0.0136347436484904,0.015937920626504,0.0180777004266786,0.0202158538081026,0.0224050930901423,0.0245667257689272,0.0268536292433558,0.0288019735827722,0.0309111690023373,0.0328749883952425,0.0346876356196656,0.0363694715918502,0.0382959743587083,0.0404510731174972,0.0426715561158049,0.0573435917779332,0.0718911171787548,0.0850876457267466,0.0979501734468621,0.1097197187700935,0.1254678480049058,0.1368891057186492,0.1479963376203049,0.158525897265984,0.1687595251894305,0.1806531580081914,0.1925834470509238,0.203932406994331,0.2137550739067167,0.2230588028091495,0.2328079276403298,0.2417861092802163,0.2494086639183618,0.2570120531200654,0.2638287142103936,0.2700396044190193,0.2762441292559234,0.2813651715352254,0.2868030052087084,0.2911574057183164,0.2957390392797681,0.3000776592013628,0.3035557422755223,0.3069001696869211,0.3094952319400662,0.3068666352814581,0.3043854825405554,0.3026935790139953,0.3006641640196361,0.2988555227336826,0.2958841626742993,0.2927654461519003,0.2924072405602424,0.2926941495253838,0.29296,0.2936533114374755,0.2943678613627412,0.2938051616681307,0.2953730312548731,0.2957459556620731,0.2977236110389273,0.2983376829683422,0.3028909329829172,0.3070778246764572,0.3104100200874394,0.313249751961757,0.3182583087925957,0.3207441513190642,0.3248685199098422,0.3269337785197551,0.3333722559551611,0.3407922588448745,0.3398155573376102,0.3363636363636363,0.3399923165578179,0.0,2.855360739138222,52.842993636288085,151.45468523704966,213.70103220472325,fqhc3_80Compliance_baseline,4 -100000,95759,46939,446.8091772052757,5175,52.70522875134452,4122,42.43987510312347,1573,15.988053342244593,77.39144353273707,79.73105757097166,63.36142006586866,65.08749042699789,77.19025434481087,79.53474787150806,63.285013149359386,65.01595822280049,0.2011891879262037,196.30969946359755,0.0764069165092706,71.53220419739625,222.13378,155.52269147524194,231970.780814336,162409.6951756787,452.73189,299.8147423476663,472194.73887571925,312506.501418511,438.11088,213.19870529969148,454382.52279159136,220130.11499309025,2928.51937,1353.2914771429073,3009941.331885253,1365658.3589556976,959.35948,433.20996152970207,981442.0994371286,432314.3055490018,1540.4385,657.2812422277508,1565555.864200754,648470.1346737171,0.38141,100000,0,1009699,10544.126400651636,0,0.0,0,0.0,38746,404.0038012092858,0,0.0,39691,411.37647636253513,1238166,0,44419,0,0,8816,0,0,87,0.9085307908395034,0,0.0,1,0.0104428826533276,0,0.0,0.05175,0.1356807634828662,0.3039613526570048,0.01573,0.3415850729724736,0.6584149270275264,23.53805509787099,4.136794848227326,0.3134400776322174,0.2641921397379912,0.2100921882581271,0.2122755943716642,11.056823794381025,5.749878791127603,16.64718497322869,11687.68489687687,46.73626486794199,13.203078619546195,14.5214697918493,9.536030082920988,9.475686373625503,0.5701115963124697,0.7887970615243343,0.6818885448916409,0.5854503464203233,0.1177142857142857,0.7471763683753258,0.9386363636363636,0.8419452887537994,0.7291666666666666,0.1578947368421052,0.5015146415348367,0.687211093990755,0.6272066458982347,0.5445103857566765,0.1065693430656934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084399805605,0.0046008695035317,0.0067368762809196,0.0087852042940859,0.0111640959420849,0.0133437830795537,0.0153454249031995,0.0179056053216887,0.0201861291871405,0.0220696570352787,0.024108606557377,0.026325508864084,0.0283803084637436,0.0304951473297448,0.0325437077354445,0.0345743032456665,0.0366165405752253,0.0384156649622999,0.0403421966279287,0.0423659072679354,0.0572197983424837,0.071477152633176,0.0841787224221315,0.0972298178452736,0.1099101569090602,0.1251189745976014,0.1368543854067239,0.1483747406501037,0.1585372365989896,0.1688911759345619,0.1813170841990806,0.1927532313017143,0.2030348155958217,0.2126327520650321,0.2219608188034564,0.2311216359773371,0.2401908328874621,0.2484021342319573,0.2554775965451186,0.2617718391067588,0.2676450196440952,0.2734506449803701,0.2791912981792386,0.2841816636133961,0.2887010514316205,0.2927219276989877,0.2967399450412191,0.3023678491084025,0.306713561601324,0.3083243357122165,0.3059166353332975,0.3034621821074867,0.3008424599831508,0.2985794268771859,0.2969286306071724,0.2928642144543447,0.2896365956240253,0.2901198289091324,0.2902047404638518,0.2900330572637116,0.2913522599925289,0.2923531730390225,0.2940893801057184,0.2943540285312437,0.2960640138408305,0.296508299942759,0.2972490073737946,0.299683355801486,0.3044285614182608,0.3096227684756363,0.3136667120861153,0.3180997876857749,0.3213813927156067,0.3261017977698551,0.3315637515134581,0.3380051389862182,0.3414852371011035,0.3471287128712871,0.3527681198181331,0.3525449101796407,0.0,2.355744252446601,49.66029648126681,151.88745171463884,221.2869388930121,fqhc3_80Compliance_baseline,5 -100000,95718,47040,447.2513006957939,5326,54.13819762218182,4222,43.419210597797694,1641,16.736663950354163,77.37264048070351,79.73236417119313,63.34029949113111,65.08203859267782,77.15575871564243,79.51851295094896,63.2587176266821,65.00408423648294,0.2168817650610748,213.85122024416603,0.0815818644490136,77.95435619487989,221.12706,154.88199658938817,231019.0768716438,161810.51588143097,450.58962,298.78806434435023,470078.33427359536,311486.4114757415,442.01341,216.29408079231496,457165.5070101757,222448.2572223985,2971.55253,1395.8138825068943,3061034.14195867,1414874.2356776092,992.40446,452.0687774802937,1022424.288012704,457916.3767319553,1596.0374,683.3541243751494,1630353.2668881505,682389.2301520618,0.3812,100000,0,1005123,10500.867130529265,0,0.0,0,0.0,38608,402.6410915397313,0,0.0,40141,414.8644977956079,1237966,0,44477,0,0,8716,0,0,87,0.8880252408115505,0,0.0,0,0.0,0,0.0,0.05326,0.139716684155299,0.3081111528351483,0.01641,0.3455563583815029,0.6544436416184971,23.448796199174883,4.223432522137566,0.3043581241117953,0.2749881572714353,0.2148270961629559,0.2058266224538133,11.289545471937313,6.090571958991341,17.64405756169099,11740.750778681182,48.28114781280562,14.024002441121686,14.569840357075222,10.202616129986575,9.48468888462214,0.583846518237802,0.788975021533161,0.7042801556420234,0.577728776185226,0.1380897583429229,0.764937106918239,0.9232409381663113,0.8636363636363636,0.75,0.1837837837837838,0.5057627118644068,0.6979768786127167,0.6388583973655324,0.5143288084464555,0.1257309941520467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088607594936,0.004712535344015,0.0072126358075413,0.0092825804354891,0.0113371767887828,0.0138546735346214,0.0163296093941123,0.0184132362997968,0.0204131699189401,0.0227863650322448,0.0248731224688573,0.0270733660499784,0.0293358559633121,0.0315139031925849,0.0335403598547375,0.0355120095911364,0.0374787758313662,0.0393307956395921,0.0413029018042737,0.0432649745346984,0.0577192139829181,0.0711923994475369,0.0847916120576671,0.0984507693601278,0.110569979865701,0.1258682115634679,0.137397778979858,0.1482754584056105,0.1589183300759347,0.1680644331002531,0.1803426995939731,0.1920126378204087,0.2032563653567971,0.2124231619014285,0.2214568661971831,0.2318431111849759,0.2407349526701196,0.2487445107532935,0.2566965807111212,0.264532850147364,0.2713528281354911,0.2765735820790712,0.2816228834145012,0.2867308246136124,0.2912112628110829,0.2957737794275425,0.2991475459085959,0.3020650542966862,0.3046601011996428,0.3083626679323392,0.3057252011084506,0.3036217442100199,0.3010595336926085,0.2987076745361345,0.2967016647608299,0.2931607058139357,0.2907335114033285,0.2905886210854238,0.2920711147440482,0.2939786436401755,0.2938009909473605,0.2944052785578226,0.2947456213511259,0.2939411450924609,0.2958335324191313,0.2973707365043217,0.2974585135555367,0.3011991901572963,0.3046923879040667,0.3094855620420797,0.3125393824826717,0.3171949745045471,0.3193940152748216,0.3224613061532654,0.3291527313266443,0.3285177354944796,0.3336872440467162,0.3410821643286573,0.3475409836065574,0.3361153262518968,0.0,2.674998580152914,54.89688035356901,151.97434461244023,218.3554032643716,fqhc3_80Compliance_baseline,6 -100000,95757,46668,443.9779859435864,5260,53.88639994987312,4206,43.49551468822123,1580,16.23902169032029,77.33281654085012,79.69973286704607,63.319784280511655,65.07132289709556,77.1323929571974,79.49959873441392,63.24492394194552,64.99854970866359,0.2004235836527215,200.13413263214372,0.0748603385661397,72.77318843196667,220.6831,154.54489481290705,230461.58505383416,161392.79093215853,448.25971,295.6643931443048,467697.0247605919,308340.49306042964,434.34577,210.6679613830984,451417.5569410069,218230.5760966803,2967.47446,1369.6129040113178,3070085.163486743,1401459.1194779314,961.71809,434.00367117599865,993225.539647232,442128.0545296936,1534.89574,651.8251540575139,1578698.2048309783,658510.0267506161,0.3796,100000,0,1003105,10475.5265933561,0,0.0,0,0.0,38473,401.32836241736896,0,0.0,39500,410.2467704710882,1246120,0,44755,0,0,8606,0,0,69,0.7205739528180707,0,0.0,0,0.0,0,0.0,0.0526,0.1385669125395152,0.3003802281368821,0.0158,0.3528126706717641,0.647187329328236,23.81907212482271,4.195396189621375,0.3121730860675226,0.2698525915359011,0.2116024726581074,0.2063718497384688,11.128317479120124,5.86583068757564,16.910248486447973,11684.808865132713,48.08703856064929,13.731621055389454,14.974932393710004,9.842226480493109,9.538258631056722,0.572753209700428,0.788546255506608,0.6923076923076923,0.5842696629213483,0.097926267281106,0.7398508699254349,0.9080717488789236,0.8739255014326648,0.7416267942583732,0.1379310344827586,0.5055018339446482,0.7111756168359942,0.6265560165975104,0.5359765051395007,0.0857142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023001550324757,0.0044019352286673,0.0066910346228043,0.0088431709374777,0.0107943678020591,0.0129665091264667,0.0152663192567739,0.0175191424196018,0.0196417251180957,0.0219739711860415,0.0238061063380426,0.0257729312345336,0.0281316511922021,0.0303707518022657,0.0324900435401663,0.0348227852026419,0.0367125444019842,0.0386978269442311,0.0406671449813353,0.0425551863156688,0.0576254554185675,0.0711842063965349,0.0850198183839104,0.0984693984820133,0.1103967283612294,0.1256238369142277,0.1364610065961102,0.1474137931034482,0.1578891155518055,0.1674905901150633,0.1792196886506039,0.1909367258408247,0.2017440848990953,0.2108577300653737,0.2199687644354501,0.2293844109831709,0.2376871750239896,0.2468575929781128,0.2547780098057018,0.262250973208152,0.2693691921354426,0.2751957491134233,0.2811667318009024,0.2860208093594169,0.2905640203154236,0.2946493532117445,0.2979629142721205,0.3021551614462736,0.3057206874668117,0.3081574187756611,0.3063634405127377,0.3037257168014969,0.3018283235202975,0.2989888776541962,0.2970695752964603,0.2945387792565397,0.2909131149614266,0.2902174091125055,0.2906693470076151,0.2908712437952568,0.2914581310226339,0.2930647005480424,0.2938856427378964,0.2947263017356475,0.2970455851369469,0.2991952232606438,0.2993753549119818,0.3032476276972221,0.3071518456375839,0.3116821506226527,0.3142313097882758,0.3197631384159881,0.3206460498309753,0.3241915986702931,0.326141541895285,0.3290277125410991,0.3323790869368691,0.3327359617682198,0.3359501894964807,0.3268145919518616,0.0,1.6193568526905402,53.35878387996957,158.72402705533148,217.98324403465455,fqhc3_80Compliance_baseline,7 -100000,95776,47159,447.4189776144337,5396,55.10775141997996,4272,43.96717340461076,1612,16.43417975275643,77.34910350822409,79.67721805971792,63.34642956891118,65.06640530570395,77.14195461718059,79.47445089124446,63.26839528554862,64.99307055607773,0.2071488910435022,202.7671684734571,0.0780342833625553,73.33474962622688,221.20098,154.99903930795494,230956.586201136,161834.94748992956,448.40609,296.4458231287782,467546.9115436017,308885.08044885943,442.79143,215.21122124026925,458295.5124457066,221635.06941279184,3030.89549,1395.9544139231805,3122604.3267624457,1415584.9297878284,994.91314,450.060468534264,1021439.045272302,452586.8753330005,1583.9665,674.2307584176543,1615948.6301369865,670917.1723186874,0.38275,100000,0,1005459,10498.02664550618,0,0.0,0,0.0,38508,401.3844804543936,0,0.0,40159,415.3545773471433,1241858,0,44561,0,0,8730,0,0,80,0.824841296358169,0,0.0,0,0.0,0,0.0,0.05396,0.1409797517962116,0.2987398072646405,0.01612,0.3551931939028713,0.6448068060971287,23.602891273944817,4.179608609142942,0.3066479400749063,0.2724719101123595,0.2045880149812734,0.2162921348314606,10.957035346630269,5.660506464824419,17.366260420308144,11800.346412796462,48.84694162944626,14.112016911489343,14.82259097683225,9.779655070437164,10.1326786706875,0.5781835205992509,0.7946735395189003,0.7030534351145038,0.5755148741418764,0.1309523809523809,0.7506132461161079,0.9046610169491526,0.850415512465374,0.71,0.2210526315789473,0.5090193506067563,0.7196531791907514,0.6469968387776607,0.5356083086053413,0.1076294277929155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0044902137666102,0.0068275659169532,0.0093244355059877,0.011591491438565,0.0141394193574656,0.0162457449193827,0.0185334489972955,0.0207828832418845,0.0232346381289517,0.0253759783633159,0.0274496926660578,0.0296076295398022,0.0317115596405817,0.0337763297625552,0.035768881176665,0.0378932119205298,0.0397146353097326,0.0418558736426456,0.04398808655989,0.0583483787478736,0.0717602761217445,0.0849602617065447,0.0982133473462953,0.1105584301988597,0.1259775119414972,0.1376466722491335,0.1490248622897126,0.158983224484569,0.1679772030938658,0.1803437476457483,0.1916543215216427,0.2028983931638799,0.2133656979159832,0.2220730929173359,0.2317412152958504,0.2401053348062352,0.2480467652183688,0.2559830320078035,0.2630326058344873,0.27001838511615,0.2767505233734489,0.2827449959778545,0.2874817352145064,0.2916975222463671,0.2960561991619423,0.300904665974299,0.3044662170759639,0.3076793554988537,0.3110330807614119,0.3083801290079317,0.3057478223775646,0.3044182020352724,0.3019164718446041,0.3011270947649414,0.2973105134474327,0.2947383385723537,0.2946977018460581,0.2953213385129148,0.2966586474204758,0.2973412305450197,0.2983699084306915,0.2984743991640543,0.2990508096035734,0.300464065017192,0.3018922018348624,0.3031936127744511,0.3070426973373247,0.3113970329747592,0.3142777578867804,0.3181383487408352,0.3216861081654295,0.324625213485989,0.3282082508753235,0.3293463929176869,0.3335715987610197,0.3337952270977675,0.3341453511977263,0.3412348401323043,0.3440187646598905,0.0,2.397663112023801,53.18479527580061,158.1509834391621,226.70833262574808,fqhc3_80Compliance_baseline,8 -100000,95672,46736,445.6162722635672,5347,54.68684672631491,4291,44.32853917551635,1630,16.7029015803997,77.31532774038504,79.70777961363297,63.31028192710126,65.07650342776073,77.11002785401506,79.50266184479976,63.23426676150344,65.00219021417493,0.2052998863699855,205.11776883320465,0.0760151655978234,74.31321358579623,222.12564,155.5676796246598,232173.67672882348,162604.78115295994,452.17861,299.06948897624096,472102.3392424116,312068.38800459483,443.96297,216.2562629279357,460386.0272598043,223142.3215897185,3029.7367,1395.8586705242965,3131261.4871644787,1423658.1076996643,1012.38574,456.69566430426784,1042933.8782506896,462105.5526217353,1599.83256,669.203260123788,1641267.9989965716,674590.1795851304,0.37817,100000,0,1009662,10553.348942219249,0,0.0,0,0.0,38778,404.7683752822143,0,0.0,40267,417.3112300359562,1233416,0,44297,0,0,8819,0,0,79,0.8152855589932269,0,0.0,1,0.0104523789614516,0,0.0,0.05347,0.1413914377131977,0.3048438376659809,0.0163,0.3488912732474964,0.6511087267525035,23.674135908708493,4.186227266654583,0.3083197389885807,0.2782568165928687,0.1952924726171055,0.2181309718014449,11.44574448616403,6.054956659729259,17.249281681318635,11683.590770914456,48.85206245831387,14.555276013582551,14.897515269592034,9.310605567613322,10.088665607525964,0.576089489629457,0.7998324958123953,0.6923658352229781,0.5835322195704057,0.1196581196581196,0.7678714859437751,0.9366053169734152,0.8781869688385269,0.7440758293838863,0.1614583333333333,0.4977019041365725,0.7049645390070922,0.6247422680412371,0.529505582137161,0.1088709677419354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0047446217482106,0.0071140067791105,0.00930648405909,0.0112202962239583,0.0135472370766488,0.0156257968442418,0.0178337963719562,0.0201055387384439,0.0220679344208575,0.0241526075585867,0.0261222393425783,0.0279509495298644,0.0298715082071943,0.0318122232429475,0.0337880464572711,0.0358075345020514,0.0377881332184778,0.040128561175773,0.0420831031859347,0.0570216678158758,0.071078585338275,0.0848393258191129,0.0970633726496985,0.1090604026845637,0.1247380342513601,0.1364688395795732,0.1476116939134139,0.1580634818852196,0.1685823754789272,0.1814978068521053,0.1935295264081075,0.2047544927126079,0.2140043332676777,0.2235669841969054,0.23225713430121,0.2405678289811691,0.2487622091191429,0.2557492792117868,0.2625680398785309,0.2684737049301808,0.2746199487413545,0.2805771575346519,0.2850734632683658,0.2895801197575698,0.2932674536090096,0.2970318091948845,0.3002225189141076,0.3039929634851444,0.3081640728040095,0.30504164368079,0.3025760222255841,0.2995160927301373,0.2966071093264772,0.2950588514686892,0.2916551956195894,0.2882986791379637,0.2888387233972943,0.2895875200108995,0.2900809536518103,0.2916674435515448,0.2934763357276395,0.2947772881993025,0.2959976836900599,0.2962652420765158,0.2968421598899816,0.2974310830417342,0.3017371601208459,0.3056151330825217,0.3101034208432776,0.312956204379562,0.3172208647615001,0.3232080833596463,0.3240733635177653,0.3282761236487768,0.333691243140062,0.3314050844877454,0.3300019988007195,0.3355371900826446,0.3352315869400152,0.0,1.950184239790168,54.668366067994725,153.27643893900003,229.17370960403505,fqhc3_80Compliance_baseline,9 -100000,95623,47095,448.4485950032941,5246,53.74230049255932,4202,43.31593863401064,1590,16.16765840854188,77.3146043072854,79.73191255570754,63.296484254502126,65.08221169537977,77.10523119952681,79.52847147162198,63.21708878970325,65.00801076374776,0.2093731077585943,203.44108408555428,0.0793954647988783,74.20093163200647,221.59478,155.25569274681075,231737.7200046014,162362.0865088865,447.98035,296.48335093683045,467864.3318030181,309433.87790218176,440.80303,214.45845025475856,457154.0006065486,221312.77274717364,2955.12478,1375.3271042491765,3047747.0169310733,1395773.0808704963,952.21426,432.0559279787845,978311.3790615228,434448.9532927504,1547.8819,664.1793717994609,1576187.6117670436,658234.8849993227,0.38217,100000,0,1007249,10533.53272748188,0,0.0,0,0.0,38526,402.2358637566276,0,0.0,39969,414.1472239942273,1236280,0,44329,0,0,8792,0,0,75,0.7843301297804921,0,0.0,0,0.0,0,0.0,0.05246,0.1372687547426538,0.3030880670987419,0.0159,0.3509316770186335,0.6490683229813664,23.215405747544978,4.124579099356529,0.3060447405997144,0.2774869109947644,0.2113279390766301,0.205140409328891,11.26010617745097,6.025355688850932,17.152178717683594,11763.553840579028,48.27570354122825,14.361286467263678,14.457474006160604,9.975394006933444,9.481549060870528,0.5749643027129938,0.8044596912521441,0.6811819595645412,0.5788288288288288,0.1020881670533642,0.7463414634146341,0.9247967479674796,0.8229813664596274,0.7695652173913043,0.1129032258064516,0.5040376850605652,0.7166172106824926,0.6338174273858921,0.5121580547112462,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020366186051695,0.0040462017421991,0.0061314817070694,0.0083523853071178,0.01043701171875,0.0128743124872682,0.0151569241439805,0.017489018285831,0.0197604606682963,0.0219659808911327,0.0241435897435897,0.0262455059065228,0.0283938932554215,0.030344244897118,0.0324225564375445,0.0346382116343032,0.0368662639491871,0.0389850392965043,0.0410163565988263,0.0432420029412071,0.0582117322406656,0.072010727230824,0.0852900407443189,0.0978356983451934,0.1102666413325733,0.1259768313602575,0.1378010048543173,0.1495417732310315,0.1603769548381576,0.1702008808679772,0.1818986071702143,0.1922522463933058,0.2034934402650045,0.2127433473197559,0.2219576982001344,0.23228534330644,0.2406490618329738,0.2489212847695548,0.2569386850865134,0.2635158382457508,0.2695242395822478,0.2754501526833663,0.2810657891621884,0.2856560570640772,0.2906527757540434,0.2947205045453425,0.2990707970135441,0.3032348268191929,0.3066575260958983,0.3097737222427343,0.3083566508824795,0.3057921635434412,0.3040424513695352,0.3015269932534924,0.2988437416401628,0.2963070749153736,0.2940841145173549,0.2939900409209683,0.2951557685724067,0.2958340029642328,0.2963392072954235,0.2967871328011325,0.2985363619329183,0.2989546263345196,0.2991220536310717,0.2998554913294797,0.2997714253463893,0.3044018900770952,0.3098527982224691,0.3155061301477523,0.3162723756409103,0.3207954126992477,0.3253783834704515,0.3297060379354644,0.3331778316850158,0.339115969581749,0.3435762816553428,0.3484355952864689,0.346793997271487,0.345,0.0,2.4090405425925296,53.6520080305405,156.47265774427677,218.76576135938004,fqhc3_80Compliance_baseline,10 -100000,95639,46680,442.9469149614697,5249,53.566013864636815,4188,43.14139629230753,1628,16.58319304886082,77.29129418892526,79.69176541696741,63.29829466637945,65.07009807894642,77.0793815347297,79.48638149280536,63.217513258119055,64.99504736477738,0.211912654195558,205.38392416204945,0.0807814082603926,75.05071416903775,221.90784,155.4982078986715,232026.51637930132,162588.70115608853,449.15102,296.7558200727057,468988.6447997156,309644.4442881101,437.24932,212.9046204759424,453713.0982130721,219844.1677221536,2977.59352,1378.9244825696137,3064479.3232886163,1392913.2911987903,987.6562,446.2983367226849,1009555.5055991802,443512.5071599283,1587.90532,676.9607513386864,1617750.1437698011,670329.7520718166,0.37886,100000,0,1008672,10546.659835422788,0,0.0,0,0.0,38579,402.7227386317297,0,0.0,39624,410.7738474889951,1235360,0,44315,0,0,8734,0,0,80,0.8364788423132823,0,0.0,1,0.010455985528916,0,0.0,0.05249,0.138547220609196,0.3101543151076396,0.01628,0.3494702228717574,0.6505297771282426,23.80108785313979,4.161217200922343,0.3249761222540592,0.2574021012416428,0.205826170009551,0.2117956064947469,11.428371005953498,6.191016891234259,17.313369122760975,11795.651709255588,47.82298316441659,13.102376111582304,15.544642806523257,9.484995309001873,9.690968937309163,0.5828557784145176,0.8033395176252319,0.7068332108743571,0.5881670533642691,0.1195039458850056,0.7447873227689742,0.9333333333333332,0.8705234159779615,0.7255813953488373,0.1442786069651741,0.5178989628638341,0.7203647416413373,0.6472945891783567,0.5425038639876353,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728553629853,0.0047551454932576,0.0072876384194553,0.0095620363784168,0.0118324532755445,0.0139838060803585,0.0160796949242408,0.0184818347050054,0.0205709144446262,0.0228022034280097,0.0248689891396868,0.0271247368150772,0.0292371791574507,0.0315630023494497,0.0336444159973571,0.0359222598028568,0.0381490309876671,0.0401619769494341,0.0422549866294858,0.0442792501616031,0.0589317253127384,0.0724147322550909,0.0855516701845026,0.0985768720658512,0.1107968039180502,0.1263535613349846,0.1376868523866145,0.1489107856191744,0.1597848864559722,0.1694493058612581,0.1811104281909444,0.1929545282262867,0.2030459063149758,0.2124327934912344,0.2222675367047308,0.2317845536120323,0.2407454998491569,0.2489529385273587,0.2567837598492245,0.2634618690196528,0.270464857857209,0.2763421111124109,0.2821636215083303,0.2869084454678468,0.291563803524304,0.2959686077074001,0.3001027491667293,0.3042209736396183,0.3076823355544608,0.3104444913688434,0.3079232581622349,0.3056721677012649,0.3034262117176159,0.3020378667437491,0.3005825877597122,0.297430314924412,0.2941605030171526,0.2940528634361233,0.2938731527093596,0.2946473236618309,0.2951695439464657,0.2966282797103169,0.297059810418589,0.2967146020173104,0.2978003789968577,0.2991917249265795,0.3006743355811186,0.3044580802704902,0.3065284393387503,0.3105089855992383,0.3152944383860414,0.3190883190883191,0.3214711604845289,0.324431256181998,0.3275343238668422,0.3288894179264373,0.3362600123228589,0.3394947627849661,0.3368333793865709,0.3450891164201744,0.0,2.576523058994305,51.88759853778982,155.14843990480173,221.23194735487985,fqhc3_80Compliance_baseline,11 -100000,95648,46625,444.3271160923386,5299,54.282368685178994,4184,43.32552693208431,1583,16.236617597858817,77.27514686010801,79.68772423088885,63.27600815666828,65.05703946013044,77.07409569866344,79.48420822024191,63.202113669972576,64.98378616302169,0.2010511614445675,203.51601064693625,0.0738944866957069,73.2532971087494,221.55672,155.15113393625802,231637.58782201403,162210.53648404358,447.15688,296.42328124893646,467084.9991635999,309492.9964546426,442.46205,215.0759653716687,459874.2054198728,222793.93502597287,2929.72704,1362.593490479872,3036035.275175644,1397596.8870022078,979.59877,450.888764445052,1012357.236952158,459590.8377018352,1541.0241,645.5714454978979,1582843.7604550018,653195.0680658723,0.37926,100000,0,1007076,10528.981264637005,0,0.0,0,0.0,38326,400.2697390431583,0,0.0,40156,417.0604717296755,1235114,0,44320,0,0,8845,0,0,92,0.9618601538976248,0,0.0,0,0.0,0,0.0,0.05299,0.139719453672942,0.2987356104925457,0.01583,0.352972972972973,0.6470270270270271,23.650249288433585,4.072622707723091,0.3200286806883365,0.2724665391969407,0.1998087954110898,0.2076959847036328,11.468539120799626,6.34362354115441,16.880889207476127,11763.323630608387,48.03152158051781,14.086008159251072,15.166850143814484,9.265741464140769,9.512921813311474,0.5817399617590823,0.8026315789473685,0.6997759522031367,0.5789473684210527,0.1127733026467203,0.7764127764127764,0.9244060475161988,0.8723404255319149,0.7733990147783252,0.1955307262569832,0.5015187310158623,0.7193500738552437,0.632398753894081,0.5165876777251185,0.0913043478260869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045528191834,0.0040846112524451,0.0061792907513571,0.0086033519553072,0.010821916414935,0.0131375264787355,0.0154280703185544,0.0178150299639615,0.0198133172482185,0.0222395150720838,0.0242273804273127,0.0263709395738735,0.0285505576361167,0.0306338064462929,0.0327027529377749,0.034582997124118,0.0365057318766972,0.0384982864264201,0.0405215563441106,0.0423914403704167,0.0571482321464031,0.0718177626891319,0.0851164402987426,0.0979499820913132,0.1106088132155984,0.1262787791498104,0.1381149718414621,0.1486163816995693,0.1589564137960555,0.1684110984547271,0.1809301773359669,0.1931108508977361,0.2035135900956864,0.2133288019645676,0.2220199479235624,0.232309434968017,0.2410432564280439,0.2500141015082973,0.2582638280441041,0.2651235949896095,0.2709971470322176,0.2763969329612868,0.2813904669283774,0.2864568952063099,0.2910313465139466,0.2954329620996287,0.299724379854673,0.3032825486527422,0.3071328562538892,0.3098820390209106,0.3078260400803224,0.3057192422072916,0.3043931433722551,0.3025821731846803,0.3000861121833892,0.2968974696325306,0.2938797434358116,0.2935354362965997,0.2938193451773194,0.2936824132043255,0.2943375768792178,0.2955512648750886,0.2971798621265928,0.296709176848301,0.2970225823464544,0.2973127352979359,0.299548974555357,0.3042333845141478,0.3083062060275123,0.3128931439648692,0.3173991844132306,0.3188006568840388,0.3219203805708562,0.3208842613550626,0.3237774030354131,0.3290973871733966,0.3342490842490842,0.3352869846402587,0.3405479452054794,0.3494664634146341,0.0,1.6572725235290282,53.9570982365577,156.4038642767787,217.6080940342736,fqhc3_80Compliance_baseline,12 -100000,95679,46836,444.7370896434954,5321,54.39020056647749,4260,43.8863282433972,1556,15.886453662768217,77.28391542799022,79.67963714032474,63.28504443165552,65.05881738250537,77.08421475945154,79.48425790227476,63.20924111839204,64.98747827769259,0.1997006685386821,195.3792380499806,0.0758033132634778,71.33910481277894,220.6765,154.57489490017457,230642.56524420195,161555.71745124276,447.22094,296.13486479028643,466776.1891324115,308866.8514410544,444.07161,217.186394790687,459807.7843622947,223847.136808424,2985.90098,1392.3628405766394,3077915.080634204,1412410.4877524243,971.84402,438.677921571042,1002593.965237931,445349.3259451307,1521.75818,647.3887533852322,1554925.7412807408,645803.8585031187,0.37962,100000,0,1003075,10483.752965645544,0,0.0,0,0.0,38448,401.1747614419047,0,0.0,40136,415.1903761535969,1240457,0,44489,0,0,8761,0,0,85,0.8883872114048015,0,0.0,2,0.0209032285036423,0,0.0,0.05321,0.1401664822717454,0.2924262356699868,0.01556,0.3534498288596649,0.6465501711403351,23.449741950529667,4.13066298910778,0.3133802816901408,0.2816901408450704,0.2002347417840375,0.2046948356807511,11.148389425453567,5.965985344652673,16.648147362954973,11809.21692423433,48.63898749644068,14.666316876645036,15.150449953929744,9.29793020159827,9.524290464267636,0.5856807511737089,0.7875,0.7176029962546816,0.5814771395076201,0.110091743119266,0.7707667731629393,0.9256198347107438,0.875,0.7537688442211056,0.135593220338983,0.5086436170212766,0.6941340782122905,0.6521739130434783,0.5290519877675841,0.1035971223021582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025739243225714,0.0046656929568321,0.007015442094683,0.0093494984807064,0.0116805551316097,0.0141492135930242,0.0164414299556326,0.0183846059566123,0.0205574021989261,0.0226290233358601,0.0249810205798469,0.027187538531092,0.0295531019437956,0.0314741528567895,0.0335896774193548,0.0356378302911215,0.0376453277516423,0.0396433242676521,0.0418690772159404,0.0438471239330046,0.0583429962288591,0.0720343419537221,0.0856615100438697,0.0983889467647399,0.1102245020740318,0.1258759765418245,0.1373217376530428,0.1486309466756126,0.1594672310767619,0.1693660044434427,0.1817956456132787,0.1929455861164974,0.2044665120482583,0.2146838825552233,0.2235961866975257,0.23307469446202,0.2416318225521543,0.2494449390841776,0.2577279752704791,0.2646974476627473,0.2707734396735602,0.2766725672016225,0.2825065831613408,0.2871874287223442,0.2914613222356076,0.2967531826704825,0.3010682663527408,0.3044623430163759,0.3075757771936866,0.3107008637172809,0.3079625765632361,0.3056575238880868,0.3040249767952072,0.3018960421022276,0.2995396495396495,0.2967996694063088,0.2942460725529592,0.2941224650263735,0.2942029727469752,0.2943211814225583,0.2951062314984824,0.2951928783382789,0.2965699651538687,0.2976483762597984,0.2983814554839955,0.3012777053455019,0.3007012861645041,0.3054745098039215,0.3096467960351808,0.3139347166988226,0.3164608495046818,0.3202486959270773,0.3234343936381709,0.3245038054021787,0.3313653136531365,0.3348125656895948,0.3398614040373606,0.3407407407407407,0.3493112947658402,0.3472485768500948,0.0,2.518168443002524,54.2442880974528,153.84064173767285,224.50511344630291,fqhc3_80Compliance_baseline,13 -100000,95659,46767,444.8614348885102,5371,54.98698501970541,4246,43.83278102426326,1671,17.060600675315442,77.35161970545354,79.75619933987556,63.31721993396855,65.09360000866972,77.14375947481741,79.55217798124272,63.23975994142855,65.02012558357706,0.207860230636129,204.02135863284343,0.0774599925399996,73.47442509266955,219.7734,153.94305772038888,229746.70443972864,160928.98495738913,450.31557,297.76668854117423,470205.72031905,310734.1792629802,438.55017,214.1689783898012,454790.61039734894,221036.1139197548,3034.46242,1392.978336249267,3134525.596127913,1418551.057662394,1001.28581,445.49667190164587,1031702.5162295236,450692.2912325648,1631.77014,682.9398070779131,1668219.446157706,682933.940743002,0.37932,100000,0,998970,10443.032019987664,0,0.0,0,0.0,38730,404.3006930869024,0,0.0,39744,411.89015147555375,1247195,0,44686,0,0,8736,0,0,76,0.7944887569387094,0,0.0,0,0.0,0,0.0,0.05371,0.1415954866603395,0.3111152485570657,0.01671,0.3435100874843778,0.6564899125156222,23.779401077250974,4.236214840505612,0.2983984926990108,0.2649552520018841,0.218794159208667,0.217852096090438,11.421177678114956,6.057996026086013,17.756078243955574,11719.459607120089,48.26977224747035,13.713121028975912,14.412832164868169,10.222505270714478,9.921313782911785,0.5692416391898257,0.7884444444444444,0.6977111286503551,0.5780409041980624,0.1178378378378378,0.7540453074433657,0.910913140311804,0.8529411764705882,0.74235807860262,0.1847826086956521,0.4933554817275747,0.7071005917159763,0.6326987681970885,0.5242857142857142,0.1012145748987854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451849525334,0.0047660092278051,0.0070229565429191,0.0091949118101276,0.0113926497065375,0.0137400692605418,0.0159282108805384,0.0180228936700329,0.0201840490797546,0.022247260063505,0.0246014321767856,0.0266765316398462,0.0288040010702451,0.0310315676611888,0.0331460325985911,0.0353000817323111,0.0372500855072914,0.0392409268333194,0.0412418327853843,0.0430448383733055,0.0578062466692441,0.0715145803884613,0.0851019165774503,0.0977839976429984,0.1102598197513666,0.1253082434620635,0.137410820451843,0.148054993072578,0.1586739551352681,0.1681127050940641,0.1794725265246269,0.1910807326927868,0.2022595426494117,0.2116731602679157,0.2209119237164029,0.2310480518760738,0.2399195575666164,0.2477933891740971,0.2556732395645313,0.2633121865194787,0.2699029575395861,0.2754639368017575,0.2807585897041784,0.2854646012402135,0.289721100071575,0.2943253685065334,0.297661410145959,0.3009621242891958,0.30474358312245,0.3080798779204378,0.3059757637638713,0.3042070309284009,0.3012635810364457,0.2983366485052898,0.297188338347982,0.2942101566555715,0.2919355602190069,0.2919333977308076,0.2923354803530654,0.2936557397482238,0.2954010095344924,0.2957813053925237,0.2966367244620848,0.2983982202447163,0.2977752288097116,0.2986375035549006,0.2980848114515262,0.301745947465409,0.3068158059795107,0.3112880340532871,0.3146549776311627,0.3161753154945803,0.3213265432865482,0.3250263514530944,0.3302684127426395,0.3352252571833983,0.3407079646017699,0.3380761523046092,0.3421123353937114,0.3399327605528576,0.0,2.104671864052136,54.0645077641942,150.46127961701808,226.7711159664761,fqhc3_80Compliance_baseline,14 -100000,95792,46628,442.4795390011692,5202,53.10464339402038,4075,41.976365458493405,1550,15.878152664105562,77.3507064425629,79.67964502607116,63.34838135415546,65.07043594429318,77.15167448660645,79.48238362049095,63.27291451520305,64.99767785735251,0.1990319559564426,197.26140558020688,0.0754668389524084,72.75808694066654,223.2153,156.32973412555,233020.8159345248,163197.06669194714,449.42042,297.4840695331428,468594.17279104725,309983.4845635781,434.32186,212.13651924854045,449913.6462335059,218803.525498335,2893.75272,1352.0335174037243,2982865.020043428,1373420.3873013658,970.87974,438.3171236771509,1001500.3236178386,445543.0241326525,1511.93002,646.3816275789728,1549757.537163855,649874.9321132406,0.37924,100000,0,1014615,10591.855269751128,0,0.0,0,0.0,38613,402.497077000167,0,0.0,39475,408.5623016535828,1233099,0,44265,0,0,8898,0,0,72,0.7516285284783698,0,0.0,1,0.0104392851177551,0,0.0,0.05202,0.1371690749920894,0.2979623221837755,0.0155,0.3443223443223443,0.6556776556776557,23.765222378521816,4.143240629590535,0.3082208588957055,0.263803680981595,0.2154601226993865,0.2125153374233128,11.27845159246759,6.105118257476705,16.612162668188436,11646.715075318018,46.68217094859405,13.120033827152527,14.350903834174446,9.80263827046358,9.40859501680349,0.5840490797546012,0.7962790697674419,0.7101910828025477,0.5979498861047836,0.1235565819861432,0.7471074380165289,0.9369369369369368,0.8687150837988827,0.7018348623853211,0.1263157894736842,0.5151832460732985,0.6973058637083994,0.6469933184855234,0.5636363636363636,0.1227810650887574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486933268506,0.0042680454176804,0.0066973119425248,0.0089590443686006,0.0113673336586952,0.0135604263593513,0.0157861481390893,0.0180730883448479,0.0199168173968137,0.0220118706508391,0.0242842797712974,0.026401387278492,0.0285905143620574,0.0304602493231627,0.032533487321736,0.0345458114236717,0.0366806353148119,0.0390819373030353,0.0413425690340938,0.0434121762305321,0.0575131209632821,0.0715368610353083,0.084373722444102,0.0968294502769107,0.1091848026558465,0.1242772427935689,0.1361067220920244,0.1470638315986633,0.1575351240551736,0.1667095391211147,0.1787640340584936,0.1899522255128731,0.2013212795549374,0.2108483093898508,0.2192770289584203,0.2287721238938053,0.2384364240107863,0.2470876349461339,0.2540938091406683,0.2609829763866008,0.2676729763128414,0.2738419141259035,0.2797365682936057,0.2848711932579965,0.2880052404289388,0.2924769829156615,0.2966604615134743,0.3005870692284233,0.3040216280543806,0.3066438401264239,0.3049306273756598,0.3019461345126423,0.3000168738399235,0.2973901495467406,0.2958490342106044,0.2918552728162466,0.2892614265380357,0.2890209468776676,0.2891438718710514,0.2906240525067328,0.2914800727013809,0.2927595196713541,0.2943197770653927,0.2953212446832326,0.2973245350929814,0.2977154914168121,0.2996580222285551,0.3038647951155032,0.3073251202134007,0.3099593094457393,0.3118064398762961,0.3151282870222506,0.317236161896356,0.3188837920489296,0.3217399456266991,0.3282768428537568,0.3274349899984613,0.3387528298003704,0.3455717488789238,0.3385274639657187,0.0,2.1804279593367357,52.52891934374547,153.49650717539637,206.28081077829933,fqhc3_80Compliance_baseline,15 -100000,95733,46752,444.09973572331376,5246,53.61787471404845,4162,42.86923004606562,1555,15.877492609653933,77.31652017658898,79.67707080604784,63.31665033110207,65.06232498869514,77.12376991856043,79.4865674509319,63.2450013347711,64.99365223164507,0.1927502580285534,190.5033551159363,0.0716489963309641,68.67275705006648,220.61314,154.6440189686573,230446.28289095717,161536.79396723938,450.6159,297.5637321322131,470092.267034356,310226.9431100574,433.61883,211.0019094328144,448741.8549507485,217228.45302333464,2944.23099,1357.2872801450726,3033526.1926399465,1376490.8000942206,962.63676,429.7721836833009,988234.5272789948,431807.7748138194,1512.81328,636.0638280811642,1545295.3944825712,635797.8874772758,0.38088,100000,0,1002787,10474.831040498051,0,0.0,0,0.0,38705,403.6643581628069,0,0.0,39412,407.4770455328883,1243420,0,44595,0,0,8800,0,0,81,0.8461032245934004,0,0.0,1,0.0104457188221407,0,0.0,0.05246,0.1377336693971854,0.2964163171940526,0.01555,0.3529089914280503,0.6470910085719497,23.882339574490786,4.226729401964749,0.3195579048534358,0.2611725132148005,0.2133589620374819,0.2059106198942815,11.340596991944471,6.129411608459394,16.486310252509433,11749.925728303058,47.50958426449554,13.298006631399176,15.066249263751269,9.814434454421182,9.330893914923928,0.5812109562710236,0.8003679852805887,0.6954887218045113,0.5968468468468469,0.1096849474912485,0.7595258255715496,0.925754060324826,0.8797814207650273,0.736318407960199,0.1530054644808743,0.5105669238510567,0.7179878048780488,0.6255186721991701,0.5560407569141194,0.0979228486646884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.0046025486359627,0.0068713524486171,0.0092768525762825,0.0116984049479166,0.0141160654268429,0.0165828684486961,0.0186473045147718,0.0206950849173321,0.0228820066547222,0.0252337790173078,0.0273439505488299,0.0298106882474523,0.0317153036637354,0.0337397367661014,0.0356559833033703,0.0374403511132733,0.0392498547838353,0.0414007442363262,0.04350407850736,0.0576186250456752,0.0710197247946423,0.0842736691975334,0.0973901705537212,0.1096771472554353,0.1249021723036571,0.1370194347789187,0.1473067915690866,0.1576686788824189,0.1681186164277744,0.1807008283692221,0.1919772323940613,0.2022335069538836,0.2115292111247157,0.2208146688825543,0.2299109121531779,0.2389229378076961,0.2473565804274465,0.2558714742789716,0.2630295118012849,0.2698126301179736,0.2756544410798424,0.2816119833879574,0.2868496763366099,0.291456614958516,0.2955021823292975,0.2997822495870251,0.3027569623796134,0.3068552352362714,0.3091249637270161,0.3072514462531952,0.3049181681785021,0.3026829646547956,0.3003108508638762,0.2991413631231802,0.2960259529602595,0.2927573343449671,0.2925748424369748,0.2933340164984372,0.2939054015432981,0.294723632208882,0.2958680295197127,0.2970705168445281,0.2979996427933559,0.2987477209480856,0.2994210949871498,0.3019398449260132,0.3049390434510785,0.309642545771578,0.3123003509878929,0.3166666666666666,0.3216327827191867,0.3250611017108479,0.326820067898906,0.3298776501354254,0.3337680815745791,0.3333333333333333,0.3356123064548562,0.3385373870172555,0.3393129770992366,0.0,2.353221844286247,51.37789660837977,156.21935998282896,218.58462163833929,fqhc3_80Compliance_baseline,16 -100000,95677,47071,448.60311255578665,5381,55.11251397932627,4197,43.26013566478882,1564,15.907689413338629,77.40264542862671,79.78287694078739,63.35728834693722,65.11190612697708,77.19831238023778,79.58283680263483,63.27956526550312,65.0381379640328,0.204333048388932,200.0401381525592,0.0777230814340939,73.76816294427613,221.2848,154.8856055282541,231283.17150412325,161883.84410909007,451.80676,299.0665100392156,471612.5819162391,311971.02756066294,435.90296,212.0701461332901,452150.9035609394,218836.084645992,2925.38353,1361.9002579020887,3016974.4557208107,1382847.8922855963,990.80054,445.55790801648766,1019792.8551271466,449914.3765131503,1524.18482,657.8872694802594,1553080.6358895032,654376.8535740903,0.38214,100000,0,1005840,10512.8714320056,0,0.0,0,0.0,38855,405.4788507164731,0,0.0,39599,410.3807602663127,1242091,0,44558,0,0,8633,0,0,67,0.7002727928342234,0,0.0,0,0.0,0,0.0,0.05381,0.1408122677552729,0.2906522951124326,0.01564,0.3446989877464038,0.6553010122535962,23.829091984456173,4.086705263056621,0.3104598522754348,0.2816297355253753,0.2022873481057898,0.2056230640934,11.200682316568448,6.012487226530389,16.801198617871133,11803.887117170483,47.90532606128127,14.48201638732947,14.78393414322171,9.280682584548726,9.35869294618137,0.588277340957827,0.7859560067681896,0.7129700690713737,0.5877502944640753,0.1297798377752027,0.7506053268765133,0.9132231404958676,0.8472622478386167,0.7641509433962265,0.1632653061224489,0.5202839756592292,0.6977077363896849,0.6642259414225942,0.5290423861852434,0.1199400299850075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771931423479,0.004439174191979,0.006522621221343,0.0087444014502909,0.0107279771407652,0.0127487118913304,0.0149255252989692,0.0172176238250273,0.0194982371876756,0.0216955258094887,0.0236679718731421,0.0259629599211563,0.0280893677835926,0.0301859976518568,0.0324288072637226,0.0344585236786076,0.0365511457179245,0.0385497410993161,0.0405495351207438,0.042636345634751,0.0576547401410289,0.0717965363432664,0.0849467443202686,0.0980150840985831,0.1102368848482291,0.1262576570285968,0.138371587134838,0.1486252009239842,0.1591314661850977,0.169769237368105,0.182166702562998,0.1941816922444208,0.2048178357803154,0.214932423566461,0.2247244163787982,0.2348473104944969,0.2439905454221112,0.2509465973057088,0.2585484126804287,0.2648104739580356,0.271318545546921,0.2767469542080941,0.2824146237778093,0.2870386984867516,0.2916368574858431,0.29644988617486,0.3005536877101326,0.3043312684066213,0.30801317233809,0.3115405359186519,0.309101401041387,0.3067479619099815,0.3044154970063238,0.3019673828630598,0.299600650791303,0.2970067550052607,0.2945221684200564,0.2948050672689777,0.2947373787150164,0.2950840052569886,0.2970020135729734,0.2980671214616169,0.299071631809591,0.3002508936699305,0.3019336950546167,0.3032636026648003,0.3033214305957036,0.3081766887995261,0.3103460304171899,0.3130859528874182,0.3178463071140696,0.3225533266289102,0.3274795325292169,0.3292581691947777,0.3282549771006636,0.3315065298507462,0.3298421372191864,0.3318733824407724,0.3316257751415475,0.3334573874209155,0.0,2.3455943551510554,53.75923171730916,153.20353613422446,217.90298074201297,fqhc3_80Compliance_baseline,17 -100000,95717,46799,445.3649821870723,5303,54.07607843956664,4197,43.148030130488834,1557,15.848804287639604,77.33907921770925,79.70601526637621,63.32552877917672,65.07556006847837,77.13790200992717,79.50992696376292,63.2483272914653,65.00306439639465,0.2011772077820808,196.08830261329047,0.0772014877114131,72.49567208371843,220.32054,154.32210547972747,230179.11133863367,161227.47837868662,450.36423,297.9332541658955,469821.9856451832,310570.2583301769,438.49304,214.2236144631493,453487.73989991326,220274.7110369446,2928.06796,1370.6909128869024,3016128.3366591097,1389064.1295557742,995.03675,451.0701832020422,1024074.020288977,455783.4583542331,1518.39782,653.6566928627935,1548106.4178777018,650678.4079334353,0.38077,100000,0,1001457,10462.686879028804,0,0.0,0,0.0,38705,403.6482547509847,0,0.0,39788,411.13908710051504,1244840,0,44637,0,0,8660,0,0,83,0.8566921236561948,0,0.0,0,0.0,0,0.0,0.05303,0.1392704257163116,0.2936073920422402,0.01557,0.3503150315031503,0.6496849684968496,23.526147031369877,4.192240204497706,0.3135573028353586,0.272337383845604,0.2111031689301882,0.2030021443888491,11.466121483201588,6.189213700072648,16.676884513851725,11730.79061631546,47.96301501149664,13.894665312000898,14.88579578680775,9.79384301725554,9.388710895432466,0.5856564212532761,0.7839020122484689,0.7006079027355623,0.590293453724605,0.1373239436619718,0.7571428571428571,0.9238900634249472,0.8709677419354839,0.7603686635944701,0.1414141414141414,0.512087163772557,0.6850746268656717,0.6334745762711864,0.5351270553064275,0.1360856269113149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380084265111,0.004623433507726,0.0070643403063244,0.0091854982929604,0.011383172436243,0.0135249366018596,0.0155713047468515,0.0179991628296358,0.0199799586903617,0.0219793725739217,0.0241831271921727,0.0262730839547256,0.0283342932367944,0.0301353773876491,0.0323499659365387,0.0346731745654219,0.0366928758637121,0.0386786774320762,0.0405777810130926,0.0426751127827382,0.0576386931052845,0.0712043528303861,0.0845740888311034,0.0976643425771103,0.1097108266014216,0.1251414849840796,0.1362922564352864,0.1474859978277999,0.1578210499316005,0.1678238380890038,0.1803828163731597,0.1920057179367778,0.2029248865627142,0.2123181982336912,0.2218086512201568,0.2316041553488475,0.2405213137822052,0.2487393066186402,0.256756603366667,0.2633852853541141,0.2688911264655162,0.2750307071416037,0.2811561295205658,0.2870740643183831,0.2925284776727767,0.2970300682530898,0.3005867665418227,0.3036598055886906,0.3065272128607398,0.3094683050825134,0.3074918741773444,0.3043938082876646,0.3016945335810392,0.2996475923625755,0.2979032808535264,0.2942947992784419,0.2907729728022238,0.290864084195341,0.2929265336087825,0.2936632532914689,0.2947842836571728,0.2958709270714313,0.2963186859001084,0.2968193157519601,0.2966334551883975,0.2981102769867978,0.2996738051340235,0.3039151253403436,0.3084255735186284,0.3113412657627387,0.3153161337209302,0.3164409030544489,0.3206607401803165,0.3205548357594695,0.32168877265085,0.3238106480934954,0.3325149608715667,0.3402187120291616,0.3433452741802149,0.3472644376899696,0.0,2.737258332919332,54.46070107275048,151.35753645188916,216.32436832734345,fqhc3_80Compliance_baseline,18 -100000,95702,46790,445.1004158742764,5250,53.959164907734426,4151,42.95626005726108,1600,16.425989007544253,77.30793472821749,79.68447848716426,63.31631099018998,65.07041155312547,77.10957101327148,79.48476360246927,63.24185574642391,64.99716294621025,0.1983637149460122,199.7148846949841,0.0744552437660743,73.24860691521451,222.58654,155.8103927548251,232582.72554387577,162807.6654268094,449.18535,297.0658130229738,468913.1052642578,309963.67209589726,436.67993,212.42834147014244,453517.5126956594,219899.4477029872,2927.67267,1363.2067259974715,3028094.407640384,1393972.5319645274,950.85898,436.7793925999298,980442.0597270696,443702.3049110127,1549.04314,655.0420353028823,1591380.4727173937,663932.0352584176,0.38118,100000,0,1011757,10571.942070176172,0,0.0,0,0.0,38640,403.29355708344656,0,0.0,39565,410.6288269837621,1234155,0,44373,0,0,8821,0,0,78,0.8150299889239514,0,0.0,0,0.0,0,0.0,0.0525,0.1377302062017944,0.3047619047619048,0.016,0.3411829134720701,0.6588170865279299,23.784051945554147,4.053265845480415,0.3158275114430258,0.2683690676945314,0.2134425439653095,0.2023608768971332,11.214917264831348,6.182637922913602,17.116672456725478,11759.350617367962,47.792867873568255,13.54701142347258,15.011378084942798,10.05848649448768,9.175991870665204,0.5894965068658155,0.7881508078994613,0.7154843630816171,0.6027088036117382,0.1154761904761904,0.7645631067961165,0.90990990990991,0.8782383419689119,0.7625570776255708,0.1871657754010695,0.5152658662092624,0.7074626865671642,0.6475675675675676,0.5502248875562219,0.0949464012251148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0046005431478253,0.0069690299150934,0.0091614528317217,0.0111158571312342,0.0134006761435379,0.0157029091168643,0.0178254211332312,0.0198020814165082,0.0219365141108188,0.023926682248739,0.0257084188911704,0.0280448800353774,0.0302977232924693,0.0325979279316465,0.0344563790305072,0.0364096028514293,0.0385793336863197,0.0408201479262241,0.0428359951628372,0.0574520536497722,0.0712169899203466,0.0842871680812446,0.097116173408216,0.1090424129969531,0.1242121737659151,0.1359494181173949,0.1471909394758691,0.157940280967897,0.1674819248675205,0.1795183836991405,0.1910577900863281,0.2021636314215819,0.2123872519542994,0.2213630463954946,0.2314627149992801,0.2404025303180748,0.2497806573530404,0.257814184091399,0.2642103695898663,0.2700450267961524,0.2765576761156328,0.2816083113440853,0.2870317072000767,0.2924634967721542,0.2963913075651809,0.3002004510147832,0.303414447700344,0.3073950647700307,0.3097398908836312,0.307573124233728,0.3053695897732595,0.3032584634039733,0.3008030094769587,0.2990911389768991,0.2962038115080581,0.2939442912824413,0.2951197053406998,0.2956011429158041,0.2954695619564635,0.2962615946781598,0.297524419662277,0.2992318801146947,0.3000446328944432,0.3018718312228176,0.3040235729745235,0.3055120799066617,0.3097339573452272,0.3131306029179118,0.3181026979982593,0.3206224972697488,0.3224766033944906,0.3257418909592822,0.3281309190090158,0.3335203890759446,0.3404705882352941,0.3456158820875319,0.3518997413964591,0.357717041800643,0.3527881040892193,0.0,1.53284945015526,54.56568029412711,156.91219127093092,211.35809973185263,fqhc3_80Compliance_baseline,19 -100000,95713,46868,445.59255273578304,5288,54.05744256266129,4215,43.52595781137359,1623,16.58081974235475,77.38171245272493,79.75585113613685,63.34258245905804,65.09529713476037,77.17773832544472,79.55479211709606,63.2655683051711,65.02199057326273,0.2039741272802047,201.05901904079812,0.0770141538869424,73.30656149764536,221.3189,154.94550274545836,231231.80759144525,161885.53565916684,449.66247,297.1711566742468,469300.5338877687,309979.11117010936,439.74587,214.21298064949096,456489.0244794333,221553.1595297447,2946.80649,1376.2229026101058,3043071.1920010867,1402471.88175225,971.69331,436.6563443421383,1000688.3182012892,441715.4510897771,1576.12438,669.7395390520338,1611122.146416892,668305.983660894,0.3811,100000,0,1005995,10510.53670870206,0,0.0,0,0.0,38601,402.7770522290598,0,0.0,39976,414.7398994911872,1241638,0,44579,0,0,8604,0,0,77,0.804488418501144,0,0.0,0,0.0,0,0.0,0.05288,0.1387562319601154,0.3069213313161876,0.01623,0.3506681112314915,0.6493318887685084,23.541052195680123,4.123299448549523,0.3103202846975089,0.2766310794780545,0.2104389086595492,0.2026097271648873,11.519765492756552,6.200476574568753,17.287324995864818,11739.14870433902,48.30376559359821,14.35886683481889,14.695618709897218,9.967915546692272,9.281364502189824,0.5843416370106762,0.8096054888507719,0.6896024464831805,0.5952649379932357,0.104215456674473,0.7691680261011419,0.9210526315789472,0.9011627906976744,0.7194570135746606,0.1137724550898203,0.508531281365005,0.7276785714285714,0.6141078838174274,0.5540540540540541,0.1018922852983988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045109428377378,0.0070929902179648,0.009030331349166,0.0113106983745956,0.0134928716904277,0.0157940351771603,0.017997876597656,0.020138413256596,0.0222950148428703,0.0242662210512286,0.0264884344103243,0.0286401826390102,0.030809958899453,0.0328369606720122,0.0346464019851116,0.0368498456822089,0.039183131329902,0.0411236726331007,0.0433219392221434,0.0580574412532637,0.0726991006836479,0.0862617126428339,0.0984818995718178,0.1105813352461523,0.1257548357075626,0.1365435426194543,0.148008943781942,0.1581983675911286,0.1676053165127281,0.1801146527014504,0.1915282859555305,0.202468733007069,0.2124905714004613,0.2219313682358117,0.2318761969071366,0.2409674829385789,0.2490047457322147,0.2562404309611568,0.2626704369826786,0.2690203245919465,0.2745909303412809,0.2804902575508417,0.2849647836711226,0.2903311965811966,0.2944486860576805,0.2977266194243435,0.3010666564959253,0.3052142875617515,0.3088485199773418,0.3067847400459572,0.3045143225771031,0.303209210137899,0.3007791684069534,0.2978695073235686,0.2958079268292683,0.2929036530184306,0.2931183744140083,0.2934673708162815,0.2949364391733541,0.295492674197517,0.2960807063774557,0.2962331614834525,0.2968004085529676,0.2976400898103473,0.2990494885835313,0.3009486701677113,0.3062163759057126,0.3113099573405473,0.3153924726958435,0.31812032109678,0.3230582780061123,0.3250783699059561,0.3293358633776091,0.326725266504582,0.329867674858223,0.3384662296081719,0.3434404689710936,0.3492413793103448,0.3458124276341181,0.0,2.018206712765815,53.47964757069859,162.55675597600987,213.23062960795207,fqhc3_80Compliance_baseline,20 -100000,95863,46751,444.4571941207765,5282,53.84767845779915,4177,43.05102072749653,1579,16.200202372135234,77.44506122741345,79.72356009637168,63.40474875222951,65.08459078115037,77.24869860547766,79.52675202518468,63.33160320511343,65.01266156093699,0.1963626219357905,196.80807118700727,0.0731455471160771,71.92922021337722,220.9383,154.71610510259714,230472.9666294608,161392.93064331092,447.39019,295.900896140011,466185.6712183011,308158.8059418243,436.5365,212.3856413618512,451571.8160291249,218664.08143011903,2946.33284,1360.7918556096029,3038750.977958128,1385045.4794762898,970.78459,435.4226216828198,999023.9717096272,440653.9015824724,1533.87334,644.2615653266552,1574903.5811522694,651467.7060409765,0.37952,100000,0,1004265,10476.043937702763,0,0.0,0,0.0,38417,400.2169763099423,0,0.0,39650,409.8140054035446,1247649,0,44821,0,0,8793,0,0,65,0.6780509685697297,0,0.0,0,0.0,0,0.0,0.05282,0.1391758010118043,0.2989397955319954,0.01579,0.3539694100509832,0.6460305899490167,23.61245808566737,4.145424750769593,0.3160162796265262,0.2662197749581039,0.2104381134785731,0.2073258319367967,11.620735689802093,6.332020037351219,16.714858293388964,11684.734615555551,47.41872576216287,13.58822705696704,14.77960901767652,9.61144859834967,9.43944108916963,0.5803208044050754,0.7976618705035972,0.7045454545454546,0.5665529010238908,0.1258660508083141,0.7516666666666667,0.9067245119305856,0.8771929824561403,0.7729468599033816,0.1263157894736842,0.5112529392005375,0.7204301075268817,0.6441717791411042,0.5029761904761905,0.1257396449704142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0045583930145159,0.0068543848797947,0.008911534245463,0.011095982278944,0.0134295103315664,0.0155829870447323,0.0177225774215587,0.0196979444291272,0.0218509391711571,0.0240733155846815,0.0262550638428798,0.0284085657063626,0.0306318723706271,0.0325256021924131,0.0344952158789467,0.0363188864414316,0.0382770161749924,0.0402582841956648,0.042345988575947,0.0566364299864456,0.0703242520474678,0.0828438916632641,0.0965152516762678,0.1085440141400751,0.123914259480111,0.1350704627992419,0.1458727292042919,0.1566724954151917,0.1655341416173527,0.1778871468638175,0.1900299081162205,0.2006707839923587,0.2102476776806278,0.2204311111599152,0.2301294104634443,0.2391507856904045,0.2480816115586414,0.2567098880174094,0.2636648591758757,0.2694628777543989,0.2748942040167403,0.28070631926293,0.2859501758920238,0.2909878325427923,0.2954662925496567,0.2989076713254339,0.3014510447267686,0.3047626445039937,0.3083698117187912,0.3063433789217466,0.3043645400002746,0.3024581303609282,0.2995512986452671,0.2979896526237989,0.2951877844931265,0.2917853265572636,0.2929617429307589,0.2929632459044223,0.2937642868534368,0.2947078423707674,0.2959993712174801,0.2964643206459534,0.2957924637166571,0.2962309160305343,0.2975486270761759,0.2976203902108943,0.3024622271964186,0.3070026653743639,0.3099897822840525,0.3156679942070963,0.3193974630021142,0.3226996935009695,0.3271812080536913,0.3299736247174077,0.330755502676978,0.336874518860662,0.3421323984326665,0.3473800942611588,0.3506998444790046,0.0,2.0263920201299728,52.394407248339824,153.56982468954382,218.04797364989116,fqhc3_80Compliance_baseline,21 -100000,95687,46929,446.8945624797517,5229,53.47643880568938,4162,42.94209244724989,1601,16.397211742451955,77.29747507811412,79.70410578051734,63.28577397120039,65.06729357082035,77.09479894206325,79.50290815398462,63.20903865964544,64.99346474812417,0.2026761360508686,201.19762653271775,0.0767353115549553,73.82882269618563,220.09372,154.1898736861646,230014.2339084724,161139.83475933468,450.02949,298.0373527383745,469764.8165372517,310921.7790696484,437.11779,212.679085276592,453801.0701558205,219882.84838156807,2934.97077,1374.2823842450346,3030497.758316177,1399462.8363780174,986.52044,445.0669183678185,1020685.2445995798,454847.10587115714,1562.08974,665.4748606839327,1601339.3041897018,667210.2834297378,0.38007,100000,0,1000426,10455.19245038511,0,0.0,0,0.0,38609,402.9073959890058,0,0.0,39665,411.51880610741273,1242710,0,44583,0,0,8660,0,0,79,0.8151577539268657,0,0.0,0,0.0,0,0.0,0.05229,0.1375799194885152,0.3061770893096194,0.01601,0.3544001469777696,0.6455998530222304,23.610035089222023,4.168670097352992,0.3015377222489188,0.2748678519942335,0.2123978856319077,0.2111965401249399,11.265479019126866,6.031002798374634,17.138809441049528,11743.003808039715,47.77416286098933,14.033364752358732,14.331732681136932,9.742982742109712,9.666082685383952,0.5898606439211918,0.798951048951049,0.7227091633466135,0.6006787330316742,0.1171786120591581,0.763265306122449,0.9053763440860216,0.8997289972899729,0.7342995169082126,0.1630434782608695,0.5175348995573714,0.7260677466863034,0.6489841986455982,0.5598227474150664,0.1050359712230215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024524707122299,0.0046152597731929,0.0067008477587694,0.0090437963621583,0.0111796061197916,0.013607936604942,0.0157072334870058,0.0181266722493413,0.0202501610808267,0.0223960840134765,0.0243196947473151,0.0264942162684144,0.0284462094011378,0.0304810189192531,0.0328122741445887,0.0346407662549907,0.0367637151356225,0.0388960418656809,0.0408660098419667,0.0426467676209732,0.0577573959552064,0.0724925937169596,0.08569869568411,0.0976920811242952,0.1097433625518179,0.1253398499899499,0.1365402169528944,0.1477742279020234,0.1575334409717395,0.1672911544614195,0.1797073002383443,0.1916660343201552,0.2027080020043136,0.2125146544829022,0.2214113263292506,0.2304423561260831,0.2389158982956133,0.2475810721003841,0.2559951834054687,0.2628707651400541,0.2690815156324209,0.2749045510973696,0.2811474730246716,0.2852359464259997,0.2898654730337898,0.2945886591324088,0.2986557422232244,0.3019053080991525,0.3064798598949212,0.3108274194187844,0.3090168687045752,0.3067971873707431,0.3050014822343624,0.3026864289022695,0.3011366168932471,0.2973845706502609,0.2932429442811542,0.2940955000081848,0.2945827382166904,0.2949674805416356,0.2963749487724004,0.297129055062446,0.2980438722579839,0.29749000444247,0.2973689870241594,0.298886875485374,0.3002263723825693,0.3039653074595201,0.3079736649597659,0.3108459357277883,0.3166101694915254,0.3202483687644706,0.3243951110002494,0.3289691497366441,0.3321229050279329,0.336343379852234,0.3408467864757843,0.3415662650602409,0.3400544959128065,0.3487666034155597,0.0,2.1112905411561527,53.45615382711923,159.10426374110884,210.1835131475407,fqhc3_80Compliance_baseline,22 -100000,95845,46974,446.3978298294121,5282,54.01429391204549,4168,43.05910584798372,1544,15.82763837445876,77.32864418348662,79.63868561682409,63.32870225298407,65.0380599601711,77.12791124019864,79.43929270254904,63.2526114961198,64.96482431338066,0.2007329432879743,199.39291427505168,0.0760907568642679,73.2356467904367,220.70642,154.66992030278288,230274.3179091241,161375.05378766017,447.5936,296.7852475113068,466568.2925556889,309222.56886058435,440.95223,215.324534976386,457637.3728415672,222786.78814318267,2934.65125,1368.4521419231587,3032329.2920861808,1398278.2740277112,957.30318,436.5130940881136,988480.3484793156,445119.7638829505,1497.6416,644.520582954299,1535462.402837915,647826.8842458144,0.38076,100000,0,1003211,10467.014450414732,0,0.0,0,0.0,38466,400.8764150451249,0,0.0,39979,414.6695184934008,1238733,0,44568,0,0,8663,0,0,72,0.7512128958213783,0,0.0,0,0.0,0,0.0,0.05282,0.1387225548902195,0.292313517606967,0.01544,0.3570259952735866,0.6429740047264134,23.376226428281427,4.0822824045229655,0.3111804222648752,0.2797504798464491,0.2120921305182341,0.1969769673704414,11.363246402519913,6.140599867447776,16.64555814874676,11717.938659253372,47.95039366238103,14.360954717531468,14.821802321438335,9.759733608263332,9.007903015147887,0.5844529750479847,0.79073756432247,0.7047031611410949,0.5723981900452488,0.1144945188794153,0.7545671167593329,0.9247967479674796,0.8684931506849315,0.7087378640776699,0.1632653061224489,0.510828463389481,0.6928783382789317,0.6405579399141631,0.5309734513274337,0.0992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0045412155861006,0.0065641962156952,0.008725418495043,0.0109009558673988,0.0131846874363673,0.0154520436245031,0.0174104728178227,0.0194473399145666,0.0217035384646869,0.0236275333510932,0.0255636628593126,0.0278300190123837,0.0299470855895735,0.031833603167892,0.0341532453847663,0.0364471764304119,0.0384762931704838,0.0407582446117891,0.0427048856137721,0.057106797534238,0.0712635265826755,0.0844268824417239,0.0978951903575969,0.1103088436808264,0.1259923256625194,0.1378110982683477,0.1492083085042989,0.159950873070967,0.1697560975609756,0.1814373707787732,0.1932381261495185,0.2036795407098121,0.2131824889326119,0.222165991902834,0.2326421197217422,0.240363571396668,0.2491639737425827,0.2573556966193888,0.2642249386510102,0.2703257215718094,0.2760985789992027,0.2814740090197009,0.28586012658988,0.2894772060881097,0.2932701795934478,0.2977811744365235,0.3010777344645723,0.3051010087912658,0.3082238841468249,0.3059585876140053,0.3027618982023555,0.3006238003838771,0.2985109218378817,0.2972249088609478,0.2949187895891167,0.2914110915632479,0.2914977763920114,0.2911474403777637,0.2920002846873776,0.2916993683895802,0.2933049527976507,0.2953550431555685,0.2956320509111946,0.2960967432950191,0.297263552179794,0.2995518493306104,0.303478233694803,0.3068948723300633,0.3116357636706474,0.3155922715781871,0.3186540794261906,0.3230855926366539,0.3265027322404371,0.3294986906098017,0.3303645647785299,0.3304453564371485,0.3371670702179177,0.3437158469945355,0.3522376543209876,0.0,1.5815957425298517,55.74480110858369,156.2664620483153,209.02484920520857,fqhc3_80Compliance_baseline,23 -100000,95739,46890,447.01741192199626,5294,54.10543247788257,4190,43.11722495534735,1528,15.55270057134501,77.35098256499538,79.69903666920126,63.33757887846742,65.0707481365515,77.15150885760379,79.50195735820604,63.262225291935344,64.9985272418724,0.1994737073915899,197.07931099522116,0.0753535865320742,72.22089467910564,221.33144,155.0182309383746,231182.10969406407,161917.53719839835,446.67483,295.06531341606694,465905.2528227786,307548.1396464,436.33776,212.25164123739648,451585.25783640944,218491.38886120095,2909.30094,1354.0636033782282,2998164.917118416,1373709.536738662,923.48241,418.1049867490705,949215.2832179152,421436.09799688606,1482.43608,636.4342358073931,1511207.8463322157,635051.6778166592,0.38232,100000,0,1006052,10508.277713366548,0,0.0,0,0.0,38374,400.129518795893,0,0.0,39632,409.74942291020375,1243729,0,44622,0,0,8850,0,0,82,0.8564952631633921,0,0.0,1,0.0104450641849194,0,0.0,0.05294,0.13847039129525,0.2886286361919153,0.01528,0.3515850144092219,0.6484149855907781,23.656478524897764,4.0207332321120735,0.3264916467780429,0.2720763723150358,0.2071599045346062,0.194272076372315,11.111108387151726,6.024968967525628,16.493478088136754,11728.845453716862,48.20418795100343,13.96371767504055,15.652796348292949,9.764710118174484,8.822963809495464,0.5892601431980907,0.8026315789473685,0.7002923976608187,0.5806451612903226,0.113022113022113,0.7553444180522565,0.9102296450939458,0.8730964467005076,0.6743119266055045,0.1569767441860465,0.5175948069695935,0.7246596066565809,0.6303901437371663,0.5492307692307692,0.1012461059190031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050023796745,0.0042367298121851,0.0063113248708816,0.0084504753392378,0.0108488983335197,0.0130203296311754,0.0152495897085656,0.0175438596491228,0.019838714623003,0.0218403627096787,0.0238739569879246,0.0259700266885649,0.0280987826945221,0.0300483987230975,0.0322274490385408,0.0343558789482388,0.0363643894054546,0.0382691709038082,0.0399750480844206,0.0418585269298885,0.0563906634932565,0.0701493786350893,0.0837527260526757,0.0962078282536244,0.1079462798591638,0.1238835156704191,0.1360170525043214,0.1464660437993487,0.1575405388082979,0.1671690462654066,0.1798832374674163,0.1908199489155374,0.2018948376008875,0.2111016281512605,0.219989871856973,0.2297954885551183,0.239668036815298,0.2480029702301928,0.2561314705314887,0.2631301437381078,0.2692690491621146,0.2753726628132825,0.2809196054778968,0.2865951485836067,0.2913072490142553,0.2958496880806192,0.2992988989839659,0.3028185122118585,0.3075648955718316,0.3107678507828886,0.3086027441528539,0.306723383166763,0.3042914523289409,0.30275163030119,0.2999925711314167,0.2981019439767335,0.2954311668170093,0.2953806756623658,0.2962956643404371,0.2974537037037037,0.2992434855701877,0.2988956040711065,0.299003946626574,0.2995034624034201,0.2997490139835066,0.2996601551352894,0.3022413402762056,0.307057315280948,0.3105978922472261,0.3146836638338054,0.3173003028796166,0.3214700601964305,0.3224676218482137,0.3269187231152365,0.3326500186358553,0.3349840820657941,0.3422756706753006,0.3453150242326332,0.3496696035242291,0.3590038314176245,0.0,2.47369076588678,54.99883422924725,155.50176702386176,212.79093608555095,fqhc3_80Compliance_baseline,24 -100000,95843,46878,444.2890977953528,5272,53.7754452594347,4178,42.986968271026576,1578,16.057510720657742,77.51248185563044,79.79632644369069,63.42745123530996,65.11008208874667,77.31114907070592,79.60071241497177,63.35086955890357,65.03850917927052,0.2013327849245172,195.61402871892145,0.0765816764063913,71.5729094761457,220.28006,154.269120493432,229834.27063009297,160960.23756918294,449.43094,297.2822997300907,468315.3490604426,309567.5633380536,440.32801,214.10879437973216,456079.1502770155,220847.24377142065,2940.74956,1366.956525060655,3027287.730976701,1385234.5451004822,974.2404,444.3245377236848,1004238.504637793,451341.95665035147,1545.74914,657.8544240881216,1575212.3577100048,653544.2396401883,0.38091,100000,0,1001273,10447.012301367862,0,0.0,0,0.0,38572,401.8342497626326,0,0.0,39933,413.2383168306501,1251634,0,44872,0,0,8751,0,0,85,0.8868670638439948,0,0.0,0,0.0,0,0.0,0.05272,0.138405397600483,0.2993171471927162,0.01578,0.3490995088229943,0.6509004911770057,23.70214148425498,4.101789732024084,0.3061273336524653,0.273336524652944,0.2067975107707036,0.213738630923887,11.146662684233997,5.888620754878995,16.664141626211944,11716.061358277768,47.66654029269654,14.03203713350112,14.441989127637513,9.525535836379262,9.666978195178649,0.5662996649114409,0.7933450087565674,0.6778733385457388,0.5671296296296297,0.1153415453527435,0.7549880287310455,0.9196787148594378,0.855457227138643,0.7441860465116279,0.1890547263681592,0.4854700854700854,0.6956521739130435,0.6138297872340426,0.5084745762711864,0.0939306358381502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024183919211543,0.0046485249288542,0.0069937866793703,0.0093454150642814,0.0117332737357524,0.0142276009356249,0.0162590865590193,0.0182839778104095,0.0206263465838889,0.0230391655588505,0.0250473606062157,0.0270744238993323,0.0291709051303391,0.0312458189677352,0.0332580748255136,0.0353453974549661,0.0374896523178807,0.0396151493473505,0.041749337765543,0.0438191017552626,0.057892266777911,0.0712911455937094,0.0843987089743052,0.0972343308509185,0.109365457110966,0.1255585013678662,0.1375622681505034,0.1476834079477663,0.1581289620285586,0.1683534136546184,0.1813078685034035,0.1932598833441348,0.2043038771809821,0.2141265889136417,0.2230388118072262,0.2324748139383148,0.2412352528324588,0.2488318281888843,0.2557981518391012,0.2616884378464246,0.2674655993725418,0.273306540858524,0.2795302052993408,0.2844690682873825,0.2888539271451046,0.293151290425558,0.2971999651085995,0.3008821556492134,0.3057652180633195,0.3086767810545364,0.3051505536142239,0.3029387230434723,0.3007735455804389,0.298891346181463,0.2955635934155163,0.2920359372620679,0.2898573567657025,0.2907552317318216,0.2911237577507857,0.2917976310976151,0.2922973678323764,0.2940471277243873,0.2947460486037359,0.2945000332793468,0.2965676363549868,0.2982279915520527,0.2993834980153703,0.3027196134308016,0.3068554653773096,0.309824656895144,0.3157215921725594,0.3173121791880541,0.3217471547216241,0.324424923695377,0.3236723837475924,0.3273480662983425,0.3259127337488869,0.3289730573994533,0.3381333333333333,0.3354289940828402,0.0,2.354365425464733,54.44651440800934,150.1446991729441,215.69081735617053,fqhc3_80Compliance_baseline,25 -100000,95728,46620,443.5170483035267,5325,54.36236002005683,4210,43.299766003677085,1555,15.85742938325255,77.31288813594676,79.67282666808698,63.318020272784125,65.06275791631708,77.12145653881097,79.48423206244556,63.24563285049507,64.9937228548466,0.1914315971357894,188.5946056414269,0.0723874222890543,69.03506147048688,221.38182,154.9497441325902,231261.30285809797,161864.59983765482,447.46633,295.4063147959455,466760.8641149925,307915.814729916,436.69029,212.5129262682319,451370.36185859935,218400.49767868756,2962.72752,1371.8782825410578,3052104.3686277787,1390404.52559203,969.83476,437.90860270481454,996174.9540364366,440579.38547886594,1510.69934,638.8575124531327,1542815.435400301,637128.9252323464,0.37996,100000,0,1006281,10511.877402640815,0,0.0,0,0.0,38441,400.8440581648003,0,0.0,39699,409.9218619421695,1242297,0,44723,0,0,8704,0,0,79,0.8252548888517467,0,0.0,0,0.0,0,0.0,0.05325,0.1401463311927571,0.292018779342723,0.01555,0.3462226996061582,0.6537773003938417,23.84011802780035,4.13201008775233,0.3111638954869358,0.27458432304038,0.2114014251781472,0.2028503562945368,11.291574962402056,6.1736329767532245,16.544107266854517,11726.887057627568,48.19510621163391,14.262954001527538,14.90048572409072,9.777813170981668,9.253853315033982,0.5902612826603325,0.8217993079584776,0.716030534351145,0.5696629213483146,0.1053864168618267,0.7644628099173554,0.9225941422594144,0.8682795698924731,0.6818181818181818,0.1604938271604938,0.52,0.7507374631268436,0.6556503198294243,0.5375722543352601,0.0924855491329479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483744860134,0.0046118448392949,0.0068689820310676,0.0092227684556941,0.0114624546129514,0.0136150712830957,0.015682675639849,0.01779461159151,0.0199664669679187,0.0220763662055477,0.0242281941126411,0.0263079529701699,0.0283957092756574,0.0305193333745339,0.0327040132054059,0.0346741354720023,0.0365515241882041,0.0388262881570482,0.0408052909612744,0.0427280967711686,0.0569498674127743,0.071524980381899,0.0843321693354725,0.0975071232559851,0.1092471530999578,0.125144120415913,0.1364900142199206,0.1474999733869851,0.1582326485701161,0.1685434227741672,0.1808569059643153,0.1921500340691549,0.2028682954409542,0.2126428610488325,0.2218261434025371,0.2310572077310738,0.2402883638920197,0.2483491759941504,0.2569566648880008,0.2630071708401109,0.2698401675867736,0.2758491669102602,0.281404122955376,0.2859316591584395,0.2907523225453883,0.2949175925697815,0.2985595755065263,0.302839557980137,0.3053326430235568,0.3085543075115822,0.3066664870617078,0.3043908880818752,0.3015412358062607,0.299895914650013,0.2974335335752097,0.2943764081970479,0.2923303694546146,0.2925247150786613,0.2928079558464193,0.2928576532799771,0.2939182228548952,0.2945083619973905,0.2962699673831228,0.2979766467599608,0.2992755013914212,0.2999064254522769,0.3006482060612953,0.3045445973976994,0.3090832632464255,0.3116465544617339,0.3143636363636363,0.3164283075624043,0.3198829316893953,0.3249018423437028,0.3305607476635514,0.3340759849906191,0.3402830619388221,0.3420052031218731,0.3397260273972602,0.3484904957137532,0.0,2.517525050201804,52.238365909049925,157.86141918011603,221.4456868335385,fqhc3_80Compliance_baseline,26 -100000,95778,46681,444.20430579047377,5407,55.096159869698674,4257,43.84096556620518,1632,16.663534423354005,77.37208356525132,79.71114476051181,63.35007434272507,65.0795540945878,77.16485526518227,79.50728061133512,63.27276273285887,65.00598994564382,0.2072283000690475,203.8641491766953,0.0773116098662072,73.5641489439871,221.05116,154.83199764026185,230795.3392219508,161657.16306486024,449.31118,297.4642464577183,468470.0453131199,309929.5312678468,441.69358,215.7453198291749,457198.0935079037,222151.64407387943,2986.12759,1392.4426735661089,3078484.359665059,1414548.052335726,994.65534,450.4232173535024,1024375.3993610224,456155.492406336,1585.25332,672.2587281294342,1620332.7904111592,671799.9738174562,0.38016,100000,0,1004778,10490.697237361395,0,0.0,0,0.0,38498,401.2925724070246,0,0.0,40087,414.68813297416943,1244839,0,44661,0,0,8722,0,0,97,1.0023178600513687,0,0.0,0,0.0,0,0.0,0.05407,0.1422295875420875,0.3018309598668393,0.01632,0.3711945878582873,0.6288054121417127,23.54448974518053,4.144954632181707,0.3133662203429645,0.2757810664787409,0.2006107587502936,0.2102419544280009,11.376580631593209,6.194166835295897,17.478895822256803,11742.661733308963,48.89606579919008,14.28538209052268,15.246039009601686,9.627905908565232,9.736738790500464,0.5903218228799624,0.7981260647359455,0.7106446776611695,0.6100702576112412,0.1195530726256983,0.7684458398744113,0.9323770491803278,0.871536523929471,0.7241379310344828,0.1666666666666666,0.5142474019443514,0.7026239067055393,0.6424759871931697,0.5745007680491552,0.1071932299012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0046024086614492,0.0069614986503216,0.0092949076096341,0.0115936133428251,0.0136321062062225,0.0157987544465849,0.0181541727044512,0.0203053466317854,0.0226077167127213,0.0245129687131716,0.0266220571029783,0.0286172443567287,0.0305295565234403,0.0327823208521959,0.0347471199049439,0.036600765966256,0.0384419947942051,0.0403661526952329,0.0422596799550229,0.0565399787114144,0.0706837222437218,0.0839885108078076,0.0970453494725339,0.1094969712931261,0.1248243732899504,0.136327992539844,0.1472817939203198,0.1570911884262074,0.1669791008323246,0.1789206458483482,0.1914953412456493,0.2014562051727885,0.2115901786299932,0.2209818973670897,0.2303058490022811,0.2397390140530894,0.2487944697352891,0.2564834965542256,0.2632187460649977,0.2689537155873137,0.2749818844814287,0.2800983091302241,0.2861519314537361,0.2911000861242858,0.2948249338502246,0.2987778180862908,0.3026872498570612,0.3066988985986866,0.3102421543569339,0.3084837739093058,0.3058863885839736,0.303574193730028,0.3007595887245841,0.300482303183201,0.2972047220013456,0.2938675517622886,0.2945079791591572,0.2958003859750995,0.2965471755289756,0.2973018423707911,0.2981201229605107,0.2995699553254561,0.2992497606803357,0.3004360743722445,0.3006447587354409,0.3027031646110462,0.3065950293775725,0.3119333496691987,0.3168991756499683,0.321989291224249,0.3242400211472376,0.3288657856829711,0.3319687665832764,0.3339898705683736,0.337181903864279,0.3439016990291262,0.3513354281225451,0.3572195383789586,0.3535580524344569,0.0,2.318655634422531,55.46952788449922,157.76486804789596,218.13584608870207,fqhc3_80Compliance_baseline,27 -100000,95648,47106,448.5091167614587,5337,54.6169287387086,4203,43.37780194044832,1608,16.424807627969223,77.25911226955019,79.65542402572079,63.27736057920528,65.04563519722588,77.04877161585324,79.44863800721562,63.19798998834313,64.97031502790627,0.2103406536969458,206.78601850517,0.0793705908621476,75.32016931961039,220.33572,154.34646851402766,230361.03211776516,161369.2586504973,445.97997,295.11981287775126,465702.837487454,307979.1653097821,434.51061,211.1697127456898,451193.7730010037,218339.00116917223,2973.94693,1373.7681098518706,3070501.99690532,1397567.0961925015,993.78667,443.4002363771943,1024508.4580963532,449079.34967505257,1574.37952,674.7319404838073,1609998.8290398126,674482.8817724191,0.38076,100000,0,1001526,10470.956005352962,0,0.0,0,0.0,38278,399.59016393442624,0,0.0,39254,407.2536801605888,1242082,0,44580,0,0,8587,0,0,90,0.940950150552024,0,0.0,1,0.0104550016728002,0,0.0,0.05337,0.1401670343523479,0.3012928611579539,0.01608,0.3470895656875112,0.6529104343124887,23.80806407484761,4.168976722292549,0.3123959076849869,0.2612419700214132,0.2146086128955508,0.211753509398049,10.816809627186998,5.5483494029434,17.359431937094588,11816.50121089158,48.00442308370291,13.382982474997448,14.871018133551836,9.959023328204175,9.791399146949455,0.5729241018320247,0.785063752276867,0.7022086824067022,0.5764966740576497,0.1168539325842696,0.7366638441998307,0.9112709832134293,0.8413597733711048,0.7635467980295566,0.1826923076923076,0.5089344804765056,0.7077826725403817,0.6510416666666666,0.5221745350500715,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424673075169,0.0046137154098094,0.0066175425775937,0.0087688993659567,0.0113840988860064,0.0137086753712341,0.0160389093949466,0.018130404156926,0.0204148393494239,0.0224374065961062,0.0245035217404677,0.0266143688841884,0.0286349049617378,0.0308327839129718,0.032961476145757,0.0350931612796492,0.0371383286198216,0.039246826311255,0.0412826860269185,0.0430435961053311,0.0583237537882746,0.0724715099715099,0.086393564850305,0.099035444264263,0.1110852966956374,0.1264113373016713,0.1380346919048681,0.149417694004326,0.1591205594884188,0.1689360422662257,0.181073909479225,0.1930478502080443,0.2033049028898837,0.2131830084694693,0.222245503369027,0.2322495391653896,0.2423866102794746,0.2510292243314271,0.2579133540337348,0.265710641525044,0.2711510340505536,0.2769404009243076,0.2821355674751982,0.2879695089693647,0.2921426394391954,0.2964866969019167,0.3007906626506024,0.3046694641786666,0.3096427598198876,0.3127182308750397,0.3101214574898785,0.3080776715107854,0.3060142509755132,0.303210722739352,0.3010205604129987,0.2976481251056116,0.2939514657101592,0.2931335131933934,0.2936603075658458,0.2938821468785187,0.2948571428571429,0.2957009419617291,0.2967831055484627,0.298292862071268,0.3002034222807227,0.3027908061465108,0.302554806548462,0.3086821753968502,0.3113699157136362,0.3143377260675135,0.3192407247627264,0.3212640940130221,0.3260119234389708,0.3278663744237019,0.3278734295020939,0.3343949044585987,0.3371350364963503,0.3368188216368389,0.3344453711426188,0.3395931142410016,0.0,2.149001657002513,51.782276682620726,159.75527691624853,219.8490262034152,fqhc3_80Compliance_baseline,28 -100000,95620,46911,445.9422714913198,5163,52.61451579167538,4034,41.633549466638776,1540,15.770759255385904,77.28554750318864,79.717803350802,63.27381344368565,65.07191337223934,77.0877647153329,79.52256444301017,63.19909279746157,65.00082243513025,0.1977827878557434,195.23890779183264,0.0747206462240726,71.09093710909065,221.88144,155.32926943434728,232045.0115038695,162444.33113820045,452.63272,299.8124886858343,472778.2995189291,312958.0313018811,435.80148,212.2426869510549,452278.8328801506,219310.05089411893,2845.04897,1323.4541990116063,2938115.2478560973,1346833.6891684528,925.5158,415.9050896002652,953911.482953357,420994.3084262789,1501.6207,639.689486751194,1539264.0033465803,640985.3681755901,0.38079,100000,0,1008552,10547.500522903158,0,0.0,0,0.0,38861,405.7833089311859,0,0.0,39476,409.391340723698,1231554,0,44284,0,0,8746,0,0,89,0.9307676218364358,0,0.0,0,0.0,0,0.0,0.05163,0.1355865437642795,0.2982761960100716,0.0154,0.3484848484848485,0.6515151515151515,23.894404897463957,4.164392492154029,0.3071393158155677,0.2689638076351016,0.2084779375309866,0.215418939018344,11.285220388153922,6.064715137820615,16.46149903342981,11759.73195912586,46.15484442296216,13.25095743400659,14.137358307640634,9.259999303913506,9.506529377401446,0.5790778383738225,0.8165898617511521,0.7134786117836965,0.5576694411414982,0.1116225546605293,0.7459915611814346,0.9362637362637364,0.8680351906158358,0.675,0.1428571428571428,0.5096525096525096,0.7301587301587301,0.6547884187082406,0.5210608424336973,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047976954832689,0.0070970231084758,0.0092697057478274,0.0113030561998941,0.0133443347696319,0.0159133335373504,0.0179593004249754,0.0201082120465168,0.0223569533914361,0.0248253505811388,0.0271783806000822,0.029130211013896,0.0310377173722567,0.033249006143838,0.0352410604383669,0.0375659346922702,0.0397765038218677,0.0416458489466233,0.0436437981787267,0.0576828592634406,0.0712818578135479,0.084644241984805,0.0972829465122894,0.1098353209603988,0.1251337124943073,0.1367408745550183,0.1484893068082475,0.1592436435236709,0.1686633072964232,0.1814150220658847,0.1931646914677914,0.2043004893359634,0.2135985097523559,0.2218571523076583,0.2315948366760269,0.2399789854910465,0.2488758156675795,0.2563263450940287,0.2644011461318051,0.2706823496723702,0.2766039635252666,0.281779937192629,0.2871474858994359,0.2917599260412611,0.2962286729419311,0.2998760532345098,0.3036303210115493,0.3065645173835264,0.3105414609678186,0.3082918293175393,0.3045988070040408,0.302346214511041,0.299695293658931,0.297993886696145,0.2946453173315372,0.2913600177262871,0.2919019170168067,0.2917135741821035,0.2913744177330406,0.2921699136222563,0.2933994959042218,0.294700533082471,0.2952313072142905,0.2955980861244019,0.2963892193885469,0.2984241535815973,0.3033924680983504,0.3090852434041964,0.3132208709297764,0.3162897558338589,0.3192305670888737,0.3239920109848958,0.329698428216891,0.3347874512715797,0.3401749271137026,0.3420893719806763,0.3397513036502206,0.3479793870355302,0.3549232497192063,0.0,2.11813622687627,51.66635762646629,151.0101350873004,206.39315456902716,fqhc3_80Compliance_baseline,29 -100000,95818,46647,442.7873677179653,5304,54.186061074119685,4168,43.00862050971634,1618,16.5939593813271,77.35864855579545,79.6629176655069,63.35358995694328,65.05410157010559,77.1470283624208,79.45163230244131,63.27400476483632,64.97645895001155,0.2116201933746566,211.28536306558487,0.0795851921069541,77.64262009403922,222.66552,155.93869881907045,232383.8109749734,162744.68139500977,448.45087,296.70177009898225,467531.2989208708,309159.0725114094,435.98659,212.3791994406196,451803.2937443904,219138.68523643332,2941.61919,1382.786845130682,3038069.318917114,1411201.355831557,934.67986,427.0557920035069,964130.5808929428,434351.1365333301,1573.41992,673.4946531668564,1615193.8049218308,680561.8916601774,0.37937,100000,0,1012116,10562.900498862427,0,0.0,0,0.0,38569,402.0121480306414,0,0.0,39562,409.64119476507545,1234933,0,44341,0,0,8754,0,0,74,0.7722974806403807,0,0.0,0,0.0,0,0.0,0.05304,0.1398107388565252,0.305052790346908,0.01618,0.3501622791200866,0.6498377208799134,23.670193618844355,4.101794759816841,0.3200575815738963,0.2677543186180422,0.2070537428023032,0.2051343570057581,11.395942731452529,6.164454538444998,17.43537939849655,11722.093618698322,47.891735493173066,13.730825688402524,14.985392541789516,9.69737060404036,9.478146658940666,0.5760556621880998,0.8109318996415771,0.6941529235382309,0.5724217844727694,0.0888888888888888,0.7491961414790996,0.9309623430962344,0.8776119402985074,0.7260869565217392,0.1293532338308457,0.5023939808481532,0.7210031347962382,0.6326326326326326,0.5165876777251185,0.0764525993883792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022771896443535,0.0047199910867121,0.0068229974553159,0.0091935827574659,0.011297827809725,0.0136717359239102,0.0158497331214602,0.0180449440494527,0.0202889075046482,0.0225761574500296,0.0243874959029826,0.0266477937103821,0.0287563569116967,0.0307171450034473,0.0328803563327421,0.0350949671049234,0.037114831446723,0.0392171091506588,0.0412360425863412,0.0431817945221166,0.0578975370074797,0.0720416505493816,0.0855980966555219,0.0980274703910379,0.1100959005163874,0.1254055310739836,0.1372840029683027,0.1487729898201236,0.1595579992526557,0.1684213911999313,0.1814031612041862,0.1921658138704687,0.2030383435916396,0.2133738801317041,0.2228020344804809,0.2321171281005475,0.2408285806761236,0.2489565403264819,0.2570948744425658,0.2639525293255132,0.2701948893620961,0.2755864038578585,0.2813114210613559,0.2860225883029997,0.2900252893687384,0.2937680337369602,0.2973574896151343,0.3014459945822894,0.3052671103400057,0.3085611738625567,0.3053110447118361,0.3023665140326994,0.3005921820713713,0.2985053093259464,0.2971437050226277,0.2942848410757946,0.2920651984886092,0.291903863505865,0.2919890021688269,0.2915185191802605,0.2920609342502201,0.2934033605149367,0.2940474195710456,0.2942422620640442,0.2958510306433422,0.2961553499283201,0.2960430732416033,0.2995090016366612,0.3031632903837377,0.3069346254666772,0.3085685758373422,0.3121218554293599,0.3134928109499592,0.3163940661848611,0.3194224499301351,0.3247223845704266,0.3318671318064614,0.3408080808080808,0.3407079646017699,0.344921875,0.0,1.9532310296217363,54.51205897254818,154.4870588488818,214.4174779572728,fqhc3_80Compliance_baseline,30 -100000,95860,47275,449.0402670561235,5331,54.360525766743166,4265,43.88691842269977,1646,16.743167118714794,77.41454581429173,79.70220944603449,63.37712166936033,65.06749423831998,77.20681234380706,79.49987850137532,63.29928470736865,64.99459838162971,0.2077334704846691,202.3309446591668,0.0778369619916787,72.89585669026621,221.37654,155.19554758985657,230937.34612977257,161898.13017927867,454.55456,300.6226580415807,473608.12643438345,313028.2161919264,447.83732,218.1326707654023,463473.3465470478,224634.0888636526,3025.00789,1401.724316997973,3116428.802420196,1423038.8869163084,984.61116,442.0036983987306,1017029.3135823075,450987.73043890094,1606.40058,683.1656128929396,1637066.2215731274,679285.7578080196,0.38291,100000,0,1006257,10497.152096807846,0,0.0,0,0.0,38938,405.591487586063,0,0.0,40599,419.88316294596285,1238084,0,44446,0,0,8804,0,0,84,0.8762779052785312,0,0.0,1,0.0104318798247444,0,0.0,0.05331,0.1392233161839596,0.3087600825361095,0.01646,0.3445121951219512,0.6554878048780488,23.54239113578805,4.221311231290932,0.3106682297772567,0.263305978898007,0.2124267291910902,0.2135990621336459,11.313294061520354,5.998444568812258,17.545489859756977,11806.20572600206,48.55062359540258,13.588361571267615,15.06079970086008,10.001903609835656,9.89955871343923,0.5758499413833529,0.804986642920748,0.7154716981132075,0.5474613686534217,0.1185510428100987,0.756214915797915,0.9147121535181236,0.9007832898172324,0.6956521739130435,0.1329787234042553,0.501325381047051,0.7262996941896025,0.6401273885350318,0.5035765379113019,0.1147994467496542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002510502606671,0.0048224507370447,0.0073313931675066,0.0092481676243071,0.0115458888098383,0.0137058781631884,0.0158312958435207,0.017993390183198,0.0203583394622865,0.0225227068161361,0.0246758035769159,0.0269263909404234,0.0288835001335771,0.0310647233201581,0.0331367535466842,0.0352506171181871,0.0371834133421618,0.0392567336490729,0.0412752130718682,0.043396854456187,0.057881400998926,0.0721631168614008,0.0852889410384276,0.0978170707378279,0.1104945031801524,0.1265155675721346,0.139397663110838,0.1501684718487261,0.160477099847439,0.1706042367254267,0.1829232871112449,0.1945789906154045,0.2057784876834979,0.2153526744249576,0.2246106843383557,0.2346217259961713,0.2437835909101046,0.2516800395567842,0.2590366228493008,0.2655110429237128,0.27261897877754,0.2778823556922213,0.2836952407985618,0.2882062586859635,0.293135909239982,0.2975900051748355,0.301638729046785,0.3043218431726576,0.3069410804719779,0.3097779478315939,0.3067868433443196,0.3038597359055746,0.3017674104694816,0.299415963659961,0.2983676071582131,0.2954885610434039,0.2931140509941815,0.2934924787442773,0.2933728173184928,0.2936275293574233,0.2931750852415643,0.2932672449401074,0.2936226933810972,0.294788960678523,0.2953437231092838,0.2962560198850396,0.2963319098390791,0.299679337505059,0.3039055151029509,0.305956607495069,0.3098337762962295,0.3151333438535584,0.3191978144790761,0.3209821094393293,0.3245500092781592,0.3291109547267182,0.327019245340203,0.3294331248739157,0.3302427052086173,0.3338380015140045,0.0,2.3880170017951423,53.93903301497182,154.4242232900446,224.40435045253847,fqhc3_80Compliance_baseline,31 -100000,95717,46743,445.14558542369696,5267,53.783549421732815,4143,42.761473928351286,1600,16.350282603926157,77.36002699221102,79.7306118246526,63.33690834044432,65.08818994394771,77.16003406203167,79.53300547328128,63.26258384516591,65.01684190825439,0.1999929301793486,197.60635137132,0.074324495278411,71.34803569331893,221.60864,155.17271358998485,231524.84929531848,162116.14821816902,449.1881,296.5778609430768,468781.84648495045,309342.8345467125,432.55915,210.34222391901045,448906.9966672587,217435.6413521732,2918.56281,1346.5349970504055,3014558.3020780007,1372187.758758011,943.97379,424.8965403855909,974190.9901062509,431886.85435773176,1552.14458,649.1972185976904,1587994.5255283806,651423.2168781193,0.37912,100000,0,1007312,10523.85678615084,0,0.0,0,0.0,38637,403.1154340399302,0,0.0,39289,407.3884471932885,1241536,0,44551,0,0,8847,0,0,71,0.7417700095071931,0,0.0,0,0.0,0,0.0,0.05267,0.1389269888162059,0.3037782418834251,0.016,0.3530050687907313,0.6469949312092687,23.652685745646476,4.100764880283404,0.3101617185614289,0.2671976828385228,0.2172338884866039,0.2054067101134443,11.409240990503104,6.163248162555536,16.95356282392161,11682.007888528797,47.28171296867142,13.489242043243465,14.567697147392538,9.965582712430171,9.259191065605249,0.5788076273231958,0.7976513098464318,0.6856031128404669,0.6022222222222222,0.1081081081081081,0.7512864493996569,0.9387755102040816,0.8168604651162791,0.7572815533980582,0.1428571428571428,0.5112529392005375,0.7042042042042042,0.6376195536663124,0.5561959654178674,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269915224195,0.0042271082322172,0.0060582689790243,0.0083707511326926,0.0106086496602791,0.0127591544132621,0.0149439347604485,0.0170650554206046,0.0191668796319959,0.0213251704580355,0.0236318152925013,0.0258516252233013,0.0278377655745459,0.0299425251838576,0.0319032584246476,0.0341501240694789,0.0362381899552461,0.0384663289877937,0.0403869155962348,0.0423461253920455,0.0569259367559213,0.0702914856873724,0.083398898505114,0.0960464455873536,0.1083500263574064,0.1244053534050785,0.1358501373670085,0.1462519155457177,0.1565653868745661,0.1656548321355787,0.1778785561168981,0.1897146814104714,0.2011302505026354,0.2112971625934508,0.220400668513876,0.2301865898898178,0.238742707996386,0.2471331564509601,0.2552653653449409,0.2618022803241907,0.2684717389042395,0.2748346692216016,0.2806615204567754,0.2853244934838022,0.2903448945413946,0.2946794500990757,0.2983908275922429,0.3021391732933614,0.3047604271714115,0.3079152995743895,0.3066724040556168,0.3045008385801875,0.3029923255650215,0.3005503950998945,0.2984662440052857,0.2958573547627421,0.2933950198165195,0.293446081878997,0.2941146418718708,0.294551857846712,0.29410995986185,0.2961184158727659,0.2969371395256834,0.2982046838199351,0.300131406044678,0.3020148132801574,0.304919892244435,0.3084255746135273,0.3129113569528077,0.3174073632789229,0.3200419248997448,0.3235949098621421,0.3258054426024397,0.3275145469659185,0.3272625905965434,0.3343885566889436,0.3365617433414044,0.3323977546110666,0.3327873327873328,0.34006092916984,0.0,2.028221501832557,50.81041269446979,159.22856243375512,215.17270930338103,fqhc3_80Compliance_baseline,32 -100000,95747,47236,450.3848684554085,5284,53.98602567182262,4207,43.32250618818344,1667,16.99269951016742,77.33346816806463,79.69486027980845,63.32120940122799,65.06996707036383,77.11714155645737,79.48245739980649,63.23968944810046,64.99251394491894,0.2163266116072577,212.40288000196017,0.0815199531275325,77.45312544489025,221.2155,155.00016018138973,231041.70365651144,161885.13497173772,452.67604,299.028667013644,472178.25101569766,311705.99289131147,441.86267,215.2107354604292,457398.57123460784,221690.4571987028,3003.98769,1395.0896971374427,3096215.098123179,1415851.2299470918,1022.74431,460.74812495205566,1052078.3941011208,465118.8182941034,1629.06672,698.2013210187015,1662809.9261595665,696547.3296241561,0.38281,100000,0,1005525,10501.89562075052,0,0.0,0,0.0,38737,403.9186606368868,0,0.0,40033,414.1017473132317,1239582,0,44507,0,0,8683,0,0,92,0.9504214231255288,0,0.0,0,0.0,0,0.0,0.05284,0.1380319218411222,0.3154806964420893,0.01667,0.3611261505143476,0.6388738494856524,23.22172235117198,4.1428989639328,0.3002139291656762,0.2712146422628951,0.2048966009032564,0.2236748276681721,11.12485194616134,5.965790517272734,17.907268012463938,11789.66998016497,48.119295746267646,13.91036620907915,14.350617360769188,9.634297239819048,10.22401493660026,0.5664368908961255,0.7957931638913234,0.6690419635787807,0.5812064965197216,0.1370882040382571,0.7321144674085851,0.9101123595505618,0.8328912466843501,0.7142857142857143,0.1616161616161616,0.4957612750084774,0.7227011494252874,0.5993227990970654,0.530448717948718,0.1305518169582772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0043098203058451,0.0064551488947079,0.0089719360279623,0.0111368767925794,0.0133287173273325,0.015516046160747,0.0177277459125145,0.0198070397776051,0.0219463011679444,0.0239894200506443,0.0262306863097376,0.0282693869995783,0.0305558130194333,0.032437786306797,0.0343469632447182,0.0363551643800155,0.0381646121280039,0.0402441052937996,0.0420350986824975,0.056421391066526,0.0708133170062901,0.0848871494076786,0.0982130649249571,0.1103060600307958,0.1257322927902205,0.1382628809099397,0.1489590429155313,0.1593450607196642,0.1690134803264448,0.1818034923678512,0.1930342768112178,0.2040760840012615,0.2133926911171149,0.2230875849778892,0.2326441567645984,0.2421404010181753,0.2507062226373898,0.2588754710128478,0.265762051986717,0.2719934311718651,0.2774412349432815,0.2815158363010376,0.2867223347030705,0.2912854612080471,0.2957129497465177,0.3002661867806396,0.3047145960641825,0.3080703569580962,0.3111571283485234,0.3088946029267242,0.3063487700975676,0.3041153710868801,0.3013823287255709,0.3003579225639731,0.2974260762984526,0.2945868945868946,0.2948137206630559,0.2950758093156672,0.2962659006975789,0.2974560419004863,0.2990790589441716,0.2996138190168041,0.3007108318292221,0.3026934895333205,0.3022867721832546,0.3028462782712335,0.3053411159229272,0.3094469399213925,0.3121266073194856,0.3146745293717396,0.3203919491525424,0.3241799673243685,0.3279075074161405,0.3298601332957852,0.3245238095238095,0.3285430362329919,0.3248679398618447,0.3296151701059676,0.3271889400921659,0.0,2.429930283407366,54.811044393079584,149.12541828500912,221.6133429827994,fqhc3_80Compliance_baseline,33 -100000,95790,46790,444.5140411316421,5183,52.84476458920555,4096,42.11295542332185,1551,15.83672617183422,77.34149214859087,79.6804199874033,63.33904717832892,65.07245397142201,77.135822340804,79.48009276407313,63.26028379284767,64.99873074088528,0.2056698077868759,200.32722333016292,0.0787633854812455,73.72323053672858,221.14862,154.87432768879722,230868.16995511012,161681.10208664497,450.4716,297.96280173156043,469610.63785363815,310399.5573321102,428.44859,209.238527126992,443721.9647144796,215733.58244465163,2868.05052,1338.9170328472942,2951485.3638166822,1355211.7246944874,942.70696,428.5156023374335,966903.3719594948,430179.5310159178,1510.83384,650.0803155079878,1542996.2626578975,646762.0448857637,0.38039,100000,0,1005221,10494.00772523228,0,0.0,0,0.0,38680,403.100532414657,0,0.0,38957,403.0170163900198,1243931,0,44623,0,0,8572,0,0,79,0.8247207432926192,0,0.0,0,0.0,0,0.0,0.05183,0.136254896290649,0.2992475400347289,0.01551,0.3436982520699172,0.6563017479300828,24.154377053902643,4.089981417944353,0.326416015625,0.2578125,0.208740234375,0.20703125,11.147896974515588,5.928484784684117,16.553483316016756,11757.46041605578,46.78464485901444,12.853470670636192,15.19084440405244,9.428373461599692,9.311956322726122,0.576904296875,0.7916666666666666,0.7068062827225131,0.5555555555555556,0.1261792452830188,0.7449392712550608,0.9183222958057397,0.8701298701298701,0.7014925373134329,0.1428571428571428,0.5043691017126879,0.6965174129353234,0.6407563025210085,0.5107033639143731,0.1211656441717791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025223619032182,0.004906582322111,0.00723527322543,0.0095516806893468,0.0116904919367146,0.0140571044402114,0.0162267460835509,0.0184010865014449,0.0205945210802409,0.0229267143837229,0.0252232669257349,0.027325378406687,0.0293554956697043,0.031400020603688,0.0332562890810409,0.0349582403043082,0.0370707865633931,0.0393169841072243,0.0411916909999688,0.0429237720448914,0.0578058807571109,0.0721799322430883,0.0855235580147552,0.0980779537405815,0.1102352246859455,0.1254135529083471,0.1370156374238006,0.1475155279503105,0.1583424954367387,0.1679476048064657,0.180325751133024,0.191068339100346,0.2020884721120516,0.2112338918582155,0.2209490295265849,0.2310648004606458,0.2401953133709393,0.2484165843140778,0.2568095588651679,0.2637169153375636,0.2697840895970442,0.2760766276368476,0.282133698876192,0.2872066724903371,0.2916762683290682,0.2955708661417323,0.2988956626024385,0.3027329618299293,0.3059107701051435,0.3093377535717104,0.306402193194646,0.3039502409688182,0.301734201606211,0.2999091053368152,0.2973053181386514,0.2952548330404217,0.2924920557127725,0.2927641289730049,0.2934530311305298,0.2940316078627234,0.2943323475461386,0.2967052502666614,0.2977209467802356,0.2998503762924585,0.3001345571627661,0.3015703533946196,0.3020550490182068,0.305154378535537,0.308819902040241,0.3133426128454961,0.3165061898211829,0.3194985329421179,0.3240658644711843,0.3302364864864865,0.3334279765284876,0.3404331270823417,0.3475100525827405,0.3528085280852808,0.3553144129104062,0.3558352402745995,0.0,2.5171094002566834,53.34059916042875,147.87307296449475,210.43896471182032,fqhc3_80Compliance_baseline,34 -100000,95701,46682,443.966102757547,5256,53.677600025078114,4235,43.646356882373226,1610,16.426160646179248,77.3419109081298,79.71035346863793,63.33255108723839,65.08090275271589,77.13282982275717,79.50454659140365,63.253466941705,65.00523200718371,0.209081085372631,205.8068772342807,0.0790841455333861,75.67074553217878,221.89904,155.36886774630352,231867.00243466636,162348.2176218676,450.37547,297.25675758988734,470023.15545292106,310026.1727566977,434.19942,210.96027212335068,449825.3414279893,217434.0964443808,3025.04358,1390.9497473765912,3120552.167688948,1413052.9434139563,981.20842,439.6508888622975,1009605.6781015872,443720.7540802055,1577.14316,670.1632266956778,1611687.2132997564,670151.5499875633,0.37945,100000,0,1008632,10539.40920157574,0,0.0,0,0.0,38574,402.45138504299854,0,0.0,39424,408.125306945591,1241400,0,44522,0,0,8672,0,0,83,0.8463861401657246,0,0.0,0,0.0,0,0.0,0.05256,0.1385162735538279,0.3063165905631659,0.0161,0.3506635157244137,0.6493364842755862,23.812411547043062,4.233362064992754,0.3095631641086186,0.2644628099173554,0.2059031877213695,0.2200708382526564,10.9378310468499,5.608006539874556,17.116377571112523,11740.572110636447,48.23654650032947,13.697618193012044,14.728361988857287,9.726756322665723,10.083809995794418,0.5678866587957497,0.8017857142857143,0.6895499618611747,0.5871559633027523,0.0976394849785407,0.7242524916943521,0.9046563192904656,0.8228228228228228,0.7741935483870968,0.1083743842364532,0.5057736720554272,0.7324364723467862,0.6441717791411042,0.5251908396946565,0.0946502057613168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0045606567345697,0.0068878068573747,0.0092325505809701,0.0114491397893195,0.0139386657978333,0.0162390287164745,0.018188127704744,0.0207379394930498,0.0228335738483424,0.0249513070220399,0.0270872480464939,0.0292254534984163,0.0313607516690018,0.0331448384034341,0.0349810829250139,0.0371893123446561,0.0391859777295793,0.0410189758253184,0.0429549504486197,0.0574713844097251,0.0715227767543125,0.0846579165486345,0.097619723791192,0.1091960085230269,0.1248809700150242,0.1367388075535752,0.14746087511977,0.1587162530314847,0.1684779693383828,0.1800751839205506,0.1921445115483689,0.2037552760976458,0.2129218521029723,0.2220926779370194,0.2314896820476485,0.2396083111205291,0.2472147586873672,0.2545827850628431,0.2616478020531719,0.2678166504697117,0.273357049241715,0.2793007125440901,0.2839167375699545,0.2887720022837429,0.2930224529302245,0.2980887252323339,0.301675124966612,0.3057061876350835,0.3097289180431518,0.3083659550425763,0.3059240339457856,0.3036993342883627,0.3016680110624568,0.2995407407407407,0.2964518000549635,0.2935190736124696,0.2942476789310802,0.2937275160690842,0.29455374964357,0.2954350020563054,0.2961099932930919,0.2977489268139461,0.2972556206141331,0.2986189504023057,0.3010928961748634,0.3042933606650723,0.3064921202988636,0.3119823108240909,0.3153690234887326,0.3208816178141331,0.3256591162272558,0.3262674550257894,0.3307164634146341,0.3349948274240572,0.3385107896608963,0.3419285932255111,0.3480922260763109,0.3536449638286032,0.3671755725190839,0.0,2.3686108106687422,52.33015464406268,158.23036945310798,221.82137810738823,fqhc3_80Compliance_baseline,35 -100000,95706,46856,445.7714249890289,5379,54.85549495329446,4261,43.91574195975174,1583,16.184983177648213,77.33810060160408,79.7209652871128,63.31256206328344,65.07500955434604,77.14197902210795,79.52766787176402,63.23846687706263,65.00459882706716,0.1961215794961361,193.29741534878053,0.0740951862208092,70.4107272788832,219.9241,154.03580885799076,229791.3401458634,160946.8673416408,449.18057,297.1343701945011,468760.2971600527,309892.3058058024,440.97467,215.0171802799496,456825.94612667966,221681.99266342743,2997.93101,1388.907753257589,3094387.9589576414,1413173.346767796,975.68985,440.1673850174466,1006372.7039057112,446823.18247282936,1542.61058,651.3839739305521,1579803.4605980816,652516.6688578004,0.38034,100000,0,999655,10445.060915721062,0,0.0,0,0.0,38563,402.3258729860197,0,0.0,40074,414.77023384113846,1245364,0,44728,0,0,8871,0,0,75,0.7836499279042066,0,0.0,0,0.0,0,0.0,0.05379,0.1414260924436031,0.2942926194459936,0.01583,0.3530144051218211,0.6469855948781789,23.67380750624285,4.196766493243111,0.3194085895329734,0.2668387702417273,0.2102792771649847,0.2034733630603145,11.217282738572852,5.833547472827908,16.79235978631304,11733.73808452018,48.7944809366361,14.031341193028048,15.324005109032177,9.99418100688267,9.44495362769321,0.5770945787373856,0.802990325417766,0.6869948567229978,0.5747767857142857,0.1107266435986159,0.7464788732394366,0.917391304347826,0.856353591160221,0.7004830917874396,0.1348314606741573,0.510150622134905,0.725258493353028,0.6256256256256256,0.5370101596516691,0.104499274310595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021082078206401,0.0045242442686143,0.0068430564298332,0.0090859198731629,0.0114569448825307,0.013404088450687,0.0156151194337351,0.0180477391810595,0.0199212558163317,0.0220447447908667,0.0244362637024579,0.0265949254007208,0.0286146126796767,0.0310485448890902,0.0329079711565243,0.0349705994812281,0.0368598703692199,0.038801913121064,0.0407531006663963,0.0428260393987061,0.0570431949202105,0.0714577335775975,0.0845636457120072,0.0975304486842382,0.110315443107394,0.126126602631913,0.1372241086587436,0.1480929360904657,0.1579464820039326,0.1678628517481467,0.1804018746969778,0.1918459256693118,0.2032610588645071,0.2129969034149971,0.2217269765803838,0.2315944631002648,0.2406387849684516,0.2490292518767797,0.2566798769063057,0.2627000137545275,0.2691826666975473,0.2761381861603119,0.2816492794467667,0.2867792466172082,0.2906729519250629,0.2946524394004811,0.2999862219271766,0.3037697401935813,0.3065646165999715,0.3098127143233975,0.3073167451244116,0.3043579873522133,0.3013619607732785,0.2999293163885002,0.2986115231709488,0.2948249223661868,0.2909926702893972,0.2912430627179411,0.2924481695371458,0.2929988435192598,0.2933773968894116,0.2942125666607631,0.2951257697526354,0.2966704578399233,0.2978789619841042,0.300705262342091,0.3005786873676782,0.3038258863147391,0.3080399040634016,0.3099293563579278,0.3123124468132754,0.3149355730606709,0.3173260909820381,0.3217482100238663,0.3230825890801952,0.3284765124140342,0.3335327550104696,0.336494763880656,0.3436076119002948,0.3453049008604564,0.0,2.3928206857892635,52.3991724350184,167.28097881460388,216.6172996381071,fqhc3_80Compliance_baseline,36 -100000,95658,46660,443.7266093792469,5234,53.57628217190408,4113,42.49513893244684,1574,16.109473332078863,77.27782633283482,79.68736643593515,63.2892740309558,65.071624544123,77.07949111282488,79.49085032594586,63.214403857942166,64.99958325341066,0.1983352200099375,196.5161099892896,0.0748701730136289,72.04129071233467,220.60456,154.54526186126162,230617.9932676828,161560.20600604403,447.66935,296.7301593536799,467505.8437349725,309715.391659537,440.95447,214.84395069695745,457401.51372598216,221947.67169166636,2901.78082,1354.1652790745086,3001958.29935813,1384095.1400557277,951.91855,428.2670587265687,984865.9495285288,437445.4606269925,1527.00604,647.1292506215724,1565425.3695456733,650930.4918581671,0.37955,100000,0,1002748,10482.636057621943,0,0.0,0,0.0,38430,401.2419243555165,0,0.0,39962,414.24658679880406,1242074,0,44578,0,0,8769,0,0,82,0.8572205147504652,0,0.0,1,0.010453908716469,0,0.0,0.05234,0.1379001449084442,0.3007260221627818,0.01574,0.3511785126987027,0.6488214873012973,23.73965222305172,4.215443660101644,0.3146122052030148,0.2652565037685387,0.2178458546073425,0.2022854364211038,11.745424352148762,6.487330981335645,16.797835433231505,11734.340172451974,47.27056117743257,13.25922417424556,14.822211991367146,9.976525675605796,9.212599336214067,0.5827862873814734,0.7919340054995417,0.6986089644513137,0.5904017857142857,0.1201923076923077,0.7545304777594728,0.921875,0.8607954545454546,0.7619047619047619,0.1311475409836065,0.5108658157985512,0.7013996889580093,0.638004246284501,0.530827067669173,0.1171032357473035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001975964169183,0.0044114067824111,0.0066899478204373,0.0089941766517271,0.0113434050562083,0.0135186071861533,0.0158286588475267,0.0180988080525396,0.0203760152206378,0.0226180842236813,0.0245128205128205,0.0266652971085203,0.0288316098163296,0.0309501478969771,0.0329854120853594,0.0351450586957646,0.0373141288016165,0.0392694348399422,0.0412690814871853,0.043227124864459,0.0578683385579937,0.0721250013090787,0.086278378974106,0.0989834361122219,0.1113409242003735,0.1272494389634585,0.1387410923843204,0.1489867240607752,0.1597484411264532,0.1689195718227595,0.1811980732550997,0.1921502815071459,0.2029648011493502,0.2130171687439132,0.2223274040154984,0.2313496504271326,0.2401509316007457,0.2479830769750093,0.2551518315101448,0.26296453137697,0.2682867613905684,0.2743537605758893,0.2794234157531898,0.2850536706919686,0.2899253051557661,0.2939087984023077,0.2979189348149816,0.3010100239149239,0.3054105516767917,0.309011290492772,0.3070684754347914,0.304646164021164,0.3024925589990266,0.3001330710483684,0.2974661885703233,0.2945271648290985,0.2909578094528389,0.2904276315789473,0.2912518389270929,0.2923486527053106,0.2936030720239768,0.2939699982212384,0.295095350735802,0.2961153133855456,0.2972064893923394,0.2981485809249305,0.29830199948804,0.3029083477440654,0.3068469991546914,0.3112896170517358,0.3139815278220119,0.31864764923402,0.3231867718902668,0.3254397319728927,0.3320198892954311,0.3374836950077078,0.3413549969343961,0.3493779318784418,0.3522727272727273,0.3611111111111111,0.0,1.9827453126677783,53.1700504267566,154.19384238303198,211.7965452279739,fqhc3_80Compliance_baseline,37 -100000,95828,47031,446.8005175940226,5298,54.18040656175648,4211,43.4632883917018,1556,15.903493759652712,77.39792083527668,79.70192465505134,63.37134666233783,65.07168258117288,77.1952011951495,79.50088153278199,63.29422723787195,64.99735299321084,0.2027196401271851,201.0431222693541,0.0771194244658772,74.32958796204048,221.18382,154.8865969864839,230813.35309095465,161629.79190475008,451.39341,298.7221101962709,470597.26802187256,311279.21922222193,435.81512,211.92663923489704,452045.44600743,219053.462923527,2957.11294,1371.6124456587431,3052731.581583671,1398416.5614497818,974.3132,436.13327959048144,1004313.6452811288,442795.7774804324,1519.62304,654.5907099866048,1554794.882497809,657732.3360643988,0.38069,100000,0,1005381,10491.516049588849,0,0.0,0,0.0,38839,404.8190507993488,0,0.0,39470,409.0662436866052,1243286,0,44544,0,0,8693,0,0,77,0.8035229786701172,0,0.0,0,0.0,0,0.0,0.05298,0.1391683522025795,0.2936957342393356,0.01556,0.3377280115586057,0.6622719884413942,23.587720812930637,4.119797827586408,0.3049156969840892,0.2821182616955592,0.2063642840180479,0.2066017573023034,11.105271066261684,5.907413493104614,16.783768953885744,11715.823576092103,47.92287124281233,14.418112750992847,14.37129277251858,9.618397524376649,9.515068194924256,0.581334599857516,0.7920875420875421,0.690809968847352,0.6075949367088608,0.1057471264367816,0.7317473338802297,0.9051546391752576,0.8408408408408409,0.746268656716418,0.115,0.5200534759358288,0.7140825035561877,0.6382754994742377,0.5658682634730539,0.1029850746268656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020146594314408,0.004245660610605,0.0063289213448957,0.0082856939776408,0.0106742029928432,0.0129856913150556,0.0152839762792688,0.0174037235399132,0.0194641981363413,0.021536730100266,0.0239846727593131,0.0258533132252008,0.0283357134784708,0.0304296372523797,0.032488146773861,0.0347024325775409,0.036746981719618,0.0388262974057068,0.041006843127278,0.0430664834936097,0.0579049486772928,0.071435295102028,0.0850695718734599,0.0974514792774985,0.1094784331913817,0.1252537212449255,0.1368051578969693,0.1481442058989451,0.1579920090592483,0.1672691387688116,0.179903069466882,0.1913225017848257,0.2021614334174132,0.2115771518544436,0.2204625688739318,0.2302922940655447,0.2397689511362876,0.2477795516380725,0.2555637435519528,0.2619818541697653,0.2679605590169809,0.2740622188993119,0.2796268489069132,0.2836492437296573,0.288483217571548,0.293363174657829,0.2977490917716383,0.3025876619668261,0.3070033730953642,0.3106819108766298,0.3094896385218966,0.3072873827932226,0.3048073549020983,0.3027111034363667,0.3007814812622106,0.2987430486782966,0.2948199014064542,0.2943338287898339,0.2943467464879757,0.2945569642761882,0.2956935123042505,0.296982800982801,0.2976267372325131,0.2980098504602081,0.298620275944811,0.2990855717774198,0.2996268550431538,0.3048062698687482,0.3069591421963697,0.3096718001504414,0.3136960087479497,0.3157334468809878,0.3189264112903225,0.321023376227823,0.3228146194423512,0.3258785942492013,0.3302304288112315,0.3342031312725813,0.330446549391069,0.3329575347613679,0.0,1.8975897799257475,53.37787938774397,153.411442873499,221.7075841443502,fqhc3_80Compliance_baseline,38 -100000,95554,46721,445.96772505598926,5268,53.99041379743391,4162,42.991397534378464,1600,16.336312451598047,77.19945181010942,79.67071350578605,63.224607941291474,65.05361113567679,76.99273735739447,79.46574465790812,63.14645550308119,64.9787212606335,0.206714452714948,204.9688478779359,0.0781524382102816,74.88987504328293,218.51676,153.01992303548937,228684.0529962116,160139.73568399998,442.93059,292.87511724842483,462959.9807438726,305922.8826332966,430.04745,209.78211315660167,446679.25989492855,216933.91162122224,2944.93289,1362.8004039847212,3044659.1665445715,1389046.2831318143,956.34692,433.15186178856464,986866.8187621658,439378.7379034629,1556.9281,670.0694324685763,1592269.8578814075,669803.8060676642,0.37834,100000,0,993258,10394.72968164598,0,0.0,0,0.0,38071,397.8169412060197,0,0.0,38976,404.4623982250874,1251536,0,44946,0,0,8771,0,0,76,0.79536178495929,0,0.0,0,0.0,0,0.0,0.05268,0.1392398371834857,0.3037205770690964,0.016,0.3405600722673893,0.6594399277326106,23.665201839265567,4.183863004141479,0.3212397885631908,0.263094666025949,0.2044690052859202,0.2111965401249399,11.41020551459832,6.190737616778858,17.31675981534981,11709.419824327018,47.63729101735414,13.397744395336192,15.142049779464354,9.336784580376904,9.760712262176677,0.573282075925036,0.7780821917808219,0.706058339566193,0.5875440658049353,0.1023890784982935,0.7384744341994971,0.8820861678004536,0.8932584269662921,0.7409326424870466,0.1527093596059113,0.5069046817110138,0.7079510703363915,0.6381243628950051,0.5425531914893617,0.0872781065088757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023922717458515,0.0042105476755747,0.0065399301324234,0.0086424272002602,0.0110151891517693,0.0133437990580847,0.0156758687554217,0.0178111587982832,0.0200266066311911,0.0220744217505815,0.0239280618372563,0.0259426444428449,0.0278470062408601,0.0299248011718226,0.0319630456349206,0.0337032129844319,0.0358102151931553,0.0379335072385446,0.0400195827213732,0.0421347141604376,0.0565899581589958,0.0700976228674489,0.0837546644242392,0.0965607350585855,0.1085145961485615,0.1232520911297931,0.1352090203169875,0.1467264286857691,0.1572942222603143,0.1668136453583412,0.1797690920283829,0.1909852612385769,0.2025835733612638,0.2118323332272891,0.2212411844559471,0.2311964720127078,0.2393858687137709,0.248075924797436,0.255732444211796,0.262487509619029,0.2688386550528305,0.2751184389511703,0.2809086056580274,0.2860299238694493,0.2910888437047228,0.295247037892734,0.2998870056497175,0.3035532088562391,0.306369335808206,0.3101418993083565,0.3073133200151179,0.3046709129511677,0.3021822234134093,0.3004876213627353,0.2985661321302542,0.2953045880006137,0.2925777347899853,0.2933677665559101,0.2941206692812248,0.2959859634045905,0.2964487034949267,0.2973101453868399,0.2977417048656377,0.2986171810215379,0.2995009522891101,0.3000209128457154,0.3003513382273129,0.3043218607575043,0.3085812638308335,0.3118177503559563,0.3171205347062277,0.3212143533620962,0.3267110917356916,0.3292821016079112,0.3329001113999257,0.3369297525507212,0.3424451787323521,0.3385437277404036,0.3424177010253643,0.3452695062193743,0.0,2.1445771504726614,52.13359814673894,154.22154436718452,220.85303056503915,fqhc3_80Compliance_baseline,39 -100000,95677,47062,446.80539732642114,5323,54.27636736101675,4174,43.00929167929596,1632,16.61841403890172,77.33990302576841,79.73111041040988,63.32261558699434,65.08922192554344,77.13066457384518,79.52613719904967,63.24380970555982,65.0148344367693,0.2092384519232268,204.97321136021185,0.0788058814345191,74.38748877413559,220.32758,154.42831444788507,230281.55147005027,161404.7819871286,448.35417,297.3014237188235,467924.4855085339,310048.0271317073,439.85323,214.1536513665118,456167.804174462,221008.37854663527,2974.30039,1378.7361760476124,3065963.544007441,1398591.1523159302,1001.14287,452.1003212393537,1027179.4370642892,453467.3303984638,1594.93704,677.0085078285532,1626358.9577432403,672879.4771975935,0.38287,100000,0,1001489,10467.343248638648,0,0.0,0,0.0,38503,401.74754643226686,0,0.0,39913,413.59992474680433,1244804,0,44588,0,0,8735,0,0,71,0.7420801237496994,0,0.0,0,0.0,0,0.0,0.05323,0.1390289132081385,0.3065940259252301,0.01632,0.3398493543758967,0.6601506456241033,23.75353163318516,4.1458620992669575,0.3001916626736943,0.2625778629611883,0.2194537613799712,0.2177767129851461,11.284060740122785,6.035572129133474,17.396132698068932,11822.84006284201,47.65767252166151,13.38942131520698,14.197483892097946,10.140699118834034,9.930068195522548,0.5754671777671299,0.8056569343065694,0.704708699122107,0.5796943231441049,0.1155115511551155,0.7429048414023373,0.9155251141552512,0.863768115942029,0.7387387387387387,0.1398963730569948,0.5080645161290323,0.7325227963525835,0.6442731277533039,0.5288184438040345,0.1089385474860335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044194414880137,0.0067782163549837,0.008958680372161,0.0111853411020611,0.0134469349946049,0.0157581440861091,0.0177492447129909,0.0198826463853451,0.0222010685991524,0.0242759751909375,0.026884148719949,0.0291419874958868,0.0312612659010145,0.0332538625878564,0.0354742653901031,0.037649057737534,0.0398173136807141,0.0418625941492239,0.0442632862831766,0.0598165597643273,0.0735568165162587,0.0861851906250655,0.0987271197138649,0.1111486201367204,0.1265816089035588,0.1381146888759217,0.1492256107296822,0.1592681207408515,0.1686753447277562,0.1805091864647726,0.1930247908843994,0.2040392395701918,0.2134266345943581,0.2220632422378022,0.2318291575286325,0.2410607700288956,0.2503768702891213,0.2582782208206187,0.2653061224489796,0.2722772277227723,0.2783305079791898,0.2837777094324445,0.2894777808379935,0.2947971267715006,0.2977557828907683,0.3017639043416299,0.3049858961652817,0.3085283956368153,0.3115398309443118,0.3089044690557253,0.3066338593500852,0.3048857734048393,0.303155066308399,0.3009519849108164,0.2975786480785105,0.2939828714091584,0.293919084995166,0.2944580610021786,0.2943865390772295,0.2945955031000224,0.2954460362188897,0.2963759341989896,0.2980243330728876,0.298647967147763,0.3003435174100869,0.3027277640299229,0.3058801356954391,0.3077973938629676,0.3118932996606424,0.3152468800868149,0.3191680304070105,0.3253079857419799,0.3253722318796765,0.3327428677978743,0.332549388523048,0.3344007319304666,0.3289902280130293,0.3340744858254585,0.3397239263803681,0.0,2.311148346580325,52.02848980451613,155.60538887819044,218.86540706819983,fqhc3_80Compliance_baseline,40 -100000,95796,46827,444.96638690550753,5155,52.76838281347864,4025,41.56749759906467,1540,15.783540022547914,77.331780499572,79.67248382180527,63.32970022966426,65.06271120852595,77.13432111115372,79.47572935929028,63.25671949115544,64.99154878816543,0.1974593884182809,196.7544625149884,0.072980738508825,71.16242036052256,220.69982,154.6080114152781,230385.21441396305,161392.97195632188,446.95901,296.1481834871479,466134.98475928017,308705.8368691259,433.00787,210.6016064787164,448938.0245521734,217382.8747660204,2813.91049,1311.6577117248885,2907906.520105224,1339846.3843653158,921.88175,420.2796856589967,947838.0203766336,424285.3118458344,1494.17522,632.215130151623,1532939.2458975322,637847.4504414952,0.37883,100000,0,1003181,10472.05520063468,0,0.0,0,0.0,38467,401.0814647793227,0,0.0,39216,406.3008893899536,1244949,0,44734,0,0,8726,0,0,81,0.8455467869222096,0,0.0,0,0.0,0,0.0,0.05155,0.1360768682522503,0.2987390882638215,0.0154,0.3538060673739066,0.6461939326260935,23.802919538648812,4.066747335311562,0.3257142857142857,0.2688198757763975,0.2077018633540372,0.1977639751552795,11.239251069977,6.066024790436238,16.531838113343753,11670.037711570669,46.25496898991094,13.182650423663532,14.940256676600669,9.367708816831618,8.764353072815119,0.595527950310559,0.8160813308687616,0.7109077040427155,0.5873205741626795,0.114321608040201,0.7620253164556962,0.9364705882352942,0.8784530386740331,0.7342342342342343,0.1363636363636363,0.526056338028169,0.7382039573820396,0.6469968387776607,0.5342019543973942,0.1080645161290322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575082299316,0.0043591095251611,0.0066871645001877,0.0087975943760412,0.0114111365369946,0.0137577775741097,0.0161905344507656,0.0180897545836906,0.0199137208398928,0.0221835491631263,0.0242854799688358,0.0262439164630264,0.0284101425134184,0.0309741350006695,0.0330873626090097,0.034941901335649,0.0369933097205824,0.0391213258935053,0.0413051384631371,0.0431672653443698,0.0581931633206728,0.0712268591151553,0.0847676149346973,0.0972165305929451,0.1087907109064663,0.1238852022486157,0.1359999152120229,0.1463523557370251,0.1557251093800021,0.1661810078848131,0.1790119470455279,0.1908418411489877,0.2017374097590676,0.211200769752236,0.2201989305283542,0.2290736699859328,0.2370138199502526,0.2456964886045491,0.2538602816134956,0.2610706069519635,0.267609052451513,0.2728547392035894,0.2786030229202639,0.2827110360441298,0.286576260486348,0.2911613920930691,0.2959685595203825,0.2997682532406346,0.3036505427882996,0.3085276227420865,0.306485679307979,0.3046333054025467,0.3025751374766184,0.2997487654855756,0.2985216410378198,0.2960898986496831,0.293267251480508,0.2936937824174381,0.2940462763594108,0.2951547347404449,0.2954039127585884,0.2966278840465391,0.2974896886711471,0.2973226447535895,0.2972459410703548,0.2975219532532506,0.2988904694167852,0.3025915828397731,0.3064679395441376,0.3112349778621125,0.316157443137967,0.3186277109072591,0.322429906542056,0.3268674882093412,0.3260155736935922,0.3330580462482303,0.3416424529744609,0.3398758261566192,0.3475760065735415,0.3524366471734892,0.0,1.7273806223278847,52.13956786759693,152.11493960611702,206.0260418957365,fqhc3_80Compliance_baseline,41 -100000,95689,46790,445.47440144635226,5303,54.1859565885316,4209,43.41146840284672,1616,16.43867111162203,77.34192318165195,79.71654819924476,63.32298576779221,65.07470743875382,77.13309837256125,79.51382216679359,63.243390942251104,65.00072673790181,0.2088248090907001,202.72603245116727,0.0795948255411005,73.98070085200459,221.13322,154.9016588592692,231095.75813311877,161880.31942989185,449.60963,297.2995540681208,469306.6914692389,310134.7752428769,436.08094,212.56117178085688,452640.219878983,219694.6129538137,2944.92264,1364.0162205433553,3038053.558925268,1385929.1849599225,942.58846,423.7319757401738,969032.5951781292,426823.2572240236,1563.84092,666.0418299435972,1592906.227466062,659159.5157240517,0.38052,100000,0,1005151,10504.35264241449,0,0.0,0,0.0,38676,403.58870925602736,0,0.0,39543,410.16208759627546,1240069,0,44438,0,0,8770,0,0,86,0.8987448923073709,0,0.0,0,0.0,0,0.0,0.05303,0.1393619257857668,0.304733169903828,0.01616,0.3576971665764302,0.6423028334235698,23.722209426882863,4.1144318514848575,0.3138512710857686,0.2646709432169161,0.2200047517224994,0.2014730339748158,11.57784673189022,6.357819289530889,17.15484233135482,11714.15154445107,48.03820203796976,13.618395010197805,15.00479543570751,10.305815810348552,9.109195781715885,0.5792349726775956,0.8114901256732495,0.6805450416351249,0.591792656587473,0.1025943396226415,0.7628951747088186,0.9177777777777778,0.877906976744186,0.7850877192982456,0.1277777777777777,0.5058197539075491,0.7394578313253012,0.6110542476970318,0.5286532951289399,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021870538562012,0.0044394441572657,0.0066952737453969,0.0090600686615068,0.0114813948521859,0.0134287634134918,0.0156699223130722,0.017930626040252,0.0201848746369994,0.0221983310295397,0.0244852760232958,0.026555488236925,0.0288197480071997,0.0307776323788523,0.0327642091789334,0.0348293691830403,0.0368260216501786,0.0387390099338779,0.0407254877490744,0.0427773493674579,0.0570458581426929,0.0705340314136125,0.0838546477454026,0.0959381248026938,0.108367366321588,0.1230604771279185,0.1345106242898557,0.1452420523310321,0.1561183690051102,0.1664716302539052,0.178693898677939,0.1908578856152513,0.2025932458031223,0.2126299660720149,0.2214467354330188,0.2306839964985761,0.2393600392997499,0.2478273595100864,0.2551871220973103,0.2617081467398151,0.2687496383729676,0.27502691065662,0.281307338092025,0.2862092529762262,0.2909685180009963,0.294822975587514,0.2992274850066985,0.3024835869509898,0.3059021703919663,0.3092773978931805,0.3067683970721054,0.3051106761860132,0.3034024732441235,0.301663393785376,0.2995211338601355,0.2965243296921549,0.2941390090630625,0.2935515075994819,0.2945302500213329,0.2947838940038823,0.2961848327943623,0.2959373025900189,0.2969514490026345,0.2983184832853219,0.299973638171927,0.3001245330012453,0.3016542972069571,0.3056232427366448,0.3111505780749408,0.3155406736261572,0.317976920302921,0.322336227308603,0.323148206123599,0.3259710014273909,0.3278703703703703,0.3281195689954814,0.3295589988081049,0.3316215682401738,0.333423545331529,0.3360443622920517,0.0,2.2494585455527405,52.284771084593054,159.31163495755106,218.2337634153652,fqhc3_80Compliance_baseline,42 -100000,95735,47023,447.0569802057764,5336,54.53595863581762,4193,43.18169948294772,1610,16.40988144356818,77.32392886815877,79.68906258865088,63.31606620966248,65.06534568224673,77.11720850700975,79.48672454260635,63.23791087387679,64.99200136263322,0.2067203611490242,202.33804604453096,0.0781553357856879,73.34431961351129,221.58158,155.26643426003636,231452.3632945109,162182.88072286666,450.0564,297.80885591186313,469455.2253616754,310425.4400103069,435.59319,211.71302863639016,451577.9391027314,218464.01707986672,2992.21048,1380.666505016382,3083980.8116153968,1400691.9038268572,976.54259,437.4385731664883,1008202.8202851622,445229.164326668,1578.51752,670.8746913856274,1610472.34553716,667362.9976207466,0.38223,100000,0,1007189,10520.561967932314,0,0.0,0,0.0,38613,402.6636026531572,0,0.0,39493,409.1084765237374,1238183,0,44448,0,0,8939,0,0,81,0.846085548649919,0,0.0,0,0.0,0,0.0,0.05336,0.1396018104282761,0.3017241379310345,0.0161,0.3501254930082467,0.6498745069917533,24.087004921775545,4.197209820458788,0.3098020510374433,0.2678273312663963,0.2041497734319103,0.2182208442642499,11.386318492709142,6.054552144978247,17.229034701944137,11854.185285072352,47.84292115812424,13.493897506292347,14.799942083005064,9.522837580915564,10.02624398791126,0.5800143095635583,0.8032056990204809,0.7090069284064665,0.5771028037383178,0.1256830601092896,0.7443280977312391,0.9335038363171356,0.8526912181303116,0.7129186602870813,0.1968911917098445,0.5182146373482114,0.7336065573770492,0.6553911205073996,0.5332302936630603,0.1066481994459833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410748832639,0.0048261667460888,0.0072157833844155,0.0093682050031498,0.0115962078365951,0.0139103869653767,0.0161796790571539,0.0184756091336878,0.0206013761514789,0.0226067369714344,0.0249238750422916,0.0271360808230148,0.0293313319899658,0.0312722103766879,0.0331142229147533,0.0349692997870624,0.0369572422936692,0.0391509678758627,0.0412013061292402,0.0431652427589081,0.0576541585750381,0.0723791588198367,0.0858317341470831,0.0986981850301794,0.1111193132685128,0.1268459357677823,0.138641596723364,0.149848267049992,0.1606742293148753,0.170887297366841,0.1832255008558418,0.1943765545582351,0.2056294234678901,0.2159171668798723,0.2246711539307553,0.2352960719387811,0.2438455529516795,0.2516905766526019,0.2592857467193388,0.2657717043643742,0.2718014667547183,0.2777452381510203,0.2833878537903569,0.2880074863230636,0.2923550451349181,0.2967595505063587,0.3013794745216944,0.3053552775725459,0.3081520470868877,0.3112505780537755,0.3091075736949226,0.3066532646710544,0.303750176230086,0.3016052060737527,0.3002362661039868,0.296842008629395,0.2945481561102065,0.2950263752825923,0.2953274215552524,0.2957784111150695,0.2964257020608733,0.2969193751972231,0.2991354827931841,0.3003677699765965,0.3019989454005081,0.3045104967782165,0.3066216905720278,0.3114527769061813,0.313851446222971,0.3161916072842438,0.3187162376866857,0.3223472244229652,0.3249859137294184,0.3298274818401937,0.3298581760120221,0.3287152161042037,0.3336344474555857,0.3391629003733543,0.3339478535686068,0.3389513108614232,0.0,2.271417318770179,49.69966347191217,164.47551229741094,219.594792180574,fqhc3_80Compliance_baseline,43 -100000,95797,47188,448.709249767738,5313,54.17706191216844,4197,43.26857834796497,1627,16.5975970019938,77.4066300966336,79.74656069320066,63.35719594835807,65.08815895388467,77.19497830329883,79.53854743332481,63.27688950514932,65.01194961595913,0.2116517933347808,208.01325987585528,0.0803064432087481,76.20933792554752,220.87472,154.8913455290405,230565.3830495736,161687.05233884204,451.24698,298.8330081301416,470501.4979592263,311400.5116341238,444.57137,216.94633351288985,461361.7545434617,224229.85620025988,2943.23948,1372.8332574429678,3033443.938745472,1394137.6738759766,969.96485,441.1872581191218,998869.359165736,446892.1658497876,1576.89494,676.3297011118851,1609522.7407956407,673489.4929874523,0.38125,100000,0,1003976,10480.244684071527,0,0.0,0,0.0,38736,403.77047297932086,0,0.0,40256,417.52873263254594,1240857,0,44542,0,0,8795,0,0,83,0.8559767007317557,0,0.0,0,0.0,0,0.0,0.05313,0.1393573770491803,0.3062300018821758,0.01627,0.3524442846872753,0.6475557153127247,23.61208513105298,4.115057262972292,0.3197522039552061,0.2694781987133667,0.2063378603764593,0.2044317369549678,11.130268778397928,5.90153966943271,17.382785564570902,11755.47319686261,47.81794481288896,13.731570723103935,15.18837697538437,9.590665294768405,9.307331819632251,0.5751727424350727,0.784261715296198,0.6810730253353204,0.5842956120092379,0.1247086247086247,0.744408945686901,0.9184100418410042,0.8086253369272237,0.7309417040358744,0.1666666666666666,0.5032258064516129,0.6860643185298622,0.6323377960865088,0.5334370139968896,0.1135693215339233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277889233388,0.0044716189085599,0.0065860910686922,0.0089308393363339,0.0111268192959794,0.0136147939960489,0.0156909524683428,0.0180880926861634,0.0201868432887689,0.0223402513406197,0.0244534861078372,0.0265663800357091,0.0285314915309981,0.030348576252342,0.0326361471616035,0.034705657610772,0.0368918177962156,0.0388750090708354,0.041006088058678,0.043101204543325,0.0570441787182537,0.0710401372069189,0.0847841353359816,0.0981441002143848,0.1107493915736907,0.1262573964497041,0.1378301606817314,0.149631582864616,0.1602146866130306,0.1702407986631817,0.1831132917998214,0.1944681725290053,0.2052424525636288,0.2140571590822221,0.2224443834111507,0.2320084978312826,0.2404055274868672,0.2488054952838143,0.2563709979245347,0.2634729853479853,0.26976050327848,0.2755074614656492,0.2810777564875925,0.286595370115328,0.2914597272649998,0.2956889222921774,0.299589466306198,0.3027231217328263,0.3061803208639241,0.3087540576918001,0.3068788058414614,0.3040990371389271,0.3020547269987466,0.3003163505568637,0.2991440312124493,0.295651775346819,0.2930210551218358,0.2932496691014265,0.2930935007636178,0.2927628665072194,0.2937023860524894,0.294206509583881,0.2953709285164937,0.29605555062561,0.2969010727056019,0.2991276518866463,0.3023039395392121,0.3051885472689402,0.3076549041400389,0.3112130838922226,0.3150290318224782,0.3185344375720725,0.3176543592925845,0.3197101016138673,0.3240562138330118,0.3250462534690101,0.3218442932728647,0.324703557312253,0.3211282885815025,0.3259962049335863,0.0,2.1096746696095106,54.51809076742596,150.98656862839155,217.5210438728436,fqhc3_80Compliance_baseline,44 -100000,95678,46536,442.8186207905684,5274,53.784569075440544,4182,43.02974560505027,1590,16.15836451430841,77.29491858535671,79.69561076217641,63.29396199958445,65.07331237208476,77.09488889742191,79.50410068117434,63.217469821640535,65.00374547351248,0.2000296879348013,191.5100810020789,0.0764921779439191,69.56689857227616,219.89198,153.95441422471794,229825.01724534377,160908.89674190298,444.77663,293.4401241880996,464192.72978114086,306021.22397198074,430.47628,209.57704330499143,445500.1045172349,215760.31572696252,2911.42776,1349.4294524011486,2997793.9024645165,1365389.4941094683,973.96715,437.7361148938109,1001888.4174000293,441579.2204366765,1550.35778,658.5444886925085,1578149.1879010848,650447.6333968499,0.38039,100000,0,999509,10446.59169297017,0,0.0,0,0.0,38195,398.4928614728569,0,0.0,39082,404.2413093919187,1252031,0,44940,0,0,8678,0,0,83,0.846589602625473,0,0.0,1,0.0104517234892033,0,0.0,0.05274,0.1386471778963695,0.3014789533560865,0.0159,0.3514347984017436,0.6485652015982565,23.67183379101438,4.1361473191681695,0.3175514108082257,0.2680535628885701,0.212338593974175,0.2020564323290291,10.849540266686349,5.706445525331342,16.928415144959775,11714.251727324574,47.77897181145894,13.520951055286934,15.063606512321224,9.880531379569728,9.31388286428105,0.5784313725490197,0.7885816235504014,0.6935240963855421,0.5844594594594594,0.1124260355029585,0.7487179487179487,0.9130434782608696,0.8494318181818182,0.75,0.1271676300578034,0.5122841965471447,0.7090643274853801,0.6372950819672131,0.5338235294117647,0.1086309523809523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0047388555714532,0.0069364748895546,0.0089166793757307,0.0110752567769781,0.0130767584316043,0.0154700191844565,0.0173576347030097,0.0196116544584032,0.0215126463628261,0.0238603257970538,0.0255699037404588,0.0276505757535219,0.0297336851218205,0.0319167604281718,0.0339214429023517,0.0360943863539799,0.0383752803388985,0.0405426493690244,0.0425704904362328,0.0572867156243144,0.0709978012773531,0.0839883719709928,0.0967799642218247,0.1089621845192875,0.1244219637887429,0.1359964331588836,0.1463666567278613,0.1570150784915096,0.1657044747290481,0.1778737892321119,0.1905297783933518,0.2020724825209042,0.2122884876043898,0.2211785926398451,0.2321100307855861,0.240345454748329,0.2485989511827327,0.256230909854773,0.2636128115184446,0.2705653517963205,0.2747106122496752,0.2801264369176858,0.2847017341872346,0.2890295614983658,0.293325274155945,0.2974424456378863,0.3010721235167686,0.3054704368850445,0.308823141976447,0.3072880968700023,0.3055769125157889,0.3032808786510849,0.3010532390708411,0.2998041659248709,0.2960395433538396,0.2936837106221308,0.2951040231016604,0.296209703568442,0.2965883948326315,0.2974907707587654,0.2983139293550236,0.2995393634840871,0.2996693919492472,0.3017745780260528,0.3022970823664381,0.3045598425870476,0.3081155865798824,0.3120145546147925,0.3162667300229667,0.3171409059867972,0.3220670686554533,0.3250578450378338,0.3272314674735249,0.3279775805698272,0.3302665723047888,0.3344900422450211,0.3386126704089816,0.3417789757412399,0.3555140186915888,0.0,2.6121883766998035,50.53441755188829,159.26910098288172,220.6626501845172,fqhc3_80Compliance_baseline,45 -100000,95723,46870,445.7444919193924,5257,53.80107184271283,4160,42.89460213323861,1661,17.007406788337182,77.3593554540744,79.73052656920149,63.33143217950936,65.08406671050237,77.15104211632722,79.52464332183344,63.253665272268194,65.00941650441939,0.2083133377471853,205.88324736804964,0.0777669072411697,74.65020608297834,221.58444,155.1861866904562,231484.82600837835,162119.8519712045,448.07097,296.2648149960113,467517.0126301934,308929.1033126741,435.75405,212.5321036623917,451713.4544466847,219293.1947219592,3021.23401,1395.647947260827,3116196.504497352,1418342.7742783015,1000.04296,446.45273459836415,1028204.07843465,450034.7105075764,1629.1824,689.9154202800179,1669522.288269277,693502.2205026842,0.38058,100000,0,1007202,10522.03754583538,0,0.0,0,0.0,38482,401.418676807037,0,0.0,39386,407.9479330986283,1240552,0,44497,0,0,8942,0,0,83,0.8670852355233329,0,0.0,0,0.0,0,0.0,0.05257,0.1381312733196699,0.3159596728171961,0.01661,0.3572602739726027,0.6427397260273973,23.897905598079294,4.215723814711731,0.2980769230769231,0.2637019230769231,0.2067307692307692,0.2314903846153846,10.946385475299342,5.752270809477163,17.773297772190453,11754.481944631449,47.52541610566425,13.464920530039024,14.02546654988343,9.51976000188019,10.515269023861602,0.5677884615384615,0.8012762078395624,0.6975806451612904,0.6023255813953489,0.1038421599169262,0.7430668841761827,0.9312638580931264,0.8660968660968661,0.7149321266968326,0.1428571428571428,0.494546693933197,0.7105263157894737,0.6310461192350956,0.5633802816901409,0.0934210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.004561720072582,0.0068495235775822,0.0091812069630923,0.0116327547461435,0.0136825923625886,0.0156990672307457,0.0178327174734091,0.0200670605794197,0.0222565751082627,0.0244372660616315,0.0265717601865261,0.0285917115930696,0.0307548064044179,0.0326395410032299,0.0347126745712602,0.0366601097422093,0.0389466260086709,0.0409684394361511,0.0430294571059539,0.0577658041476097,0.0719877752658461,0.0854208627056059,0.0985509684746261,0.1109060615008225,0.1262906228842247,0.1374465420818609,0.148906042054831,0.1590258185859622,0.1689255169601562,0.1809620274988147,0.1926083096975339,0.2035270183531152,0.2130171687439132,0.2217351557939488,0.2321254324492149,0.2413346435590495,0.2500843587609385,0.2576751151550907,0.2648365743603839,0.271135272685212,0.277019998363664,0.2827194195294312,0.2869601626988874,0.2911588877975433,0.2950686549534918,0.2989560542601738,0.3023769898237902,0.3054951878298665,0.3095197312075894,0.3072137799454499,0.3042713912924049,0.3027495894563982,0.3006356419696272,0.298693419748154,0.2952314165497896,0.2920484962997953,0.2928211072833842,0.2933276668083298,0.2935243878620004,0.293572842364716,0.2946008233695117,0.2949152542372881,0.295355912487137,0.2971720760514691,0.2985885472173845,0.297640704945992,0.3000628338045868,0.3045838148264874,0.3063770977295162,0.3090372388737511,0.3136423841059603,0.3181215678848703,0.3223540077056735,0.3270897400055912,0.3304816594398219,0.3308578357077902,0.3374551256481851,0.3384865744507729,0.3378633446583616,0.0,2.12256702246751,53.675676282186274,150.59883141150016,217.58271788661705,fqhc3_80Compliance_baseline,46 -100000,95876,46938,446.316074930118,5352,54.53919646209688,4245,43.5666903083149,1609,16.4066085360257,77.4394230829848,79.71800069409656,63.39129033748679,65.07646075096187,77.23580724943032,79.51723736078972,63.3151368606276,65.00340983715971,0.2036158335544797,200.7633333068384,0.0761534768591829,73.05091380216311,221.12376,154.78831506342212,230634.92427719137,161446.15993471138,445.22662,294.7320078900957,463640.149776795,306674.1245695363,436.23413,212.66955024572465,449346.4474946806,217528.7727255636,3008.45738,1390.1469456217894,3094465.6744127832,1407057.922990997,979.77053,439.8977289948906,1004878.9999582794,441998.60910848377,1569.70764,664.0244202504643,1603114.7523885018,665108.9510950857,0.38152,100000,0,1005108,10483.405648963244,0,0.0,0,0.0,38210,397.7846384913847,0,0.0,39659,407.9853143643873,1248282,0,44810,0,0,8886,0,0,82,0.8552713922149443,0,0.0,0,0.0,0,0.0,0.05352,0.1402809813378066,0.3006352765321375,0.01609,0.3444822035414058,0.6555177964585942,23.469331629395658,4.139766686188204,0.3085983510011778,0.271849234393404,0.2131919905771495,0.2063604240282685,11.27233756709784,6.054132869393389,17.16780495187398,11746.047236997649,48.61475889492692,14.146214700379536,14.93046137952178,10.022108688653184,9.515974126372418,0.5931684334511189,0.7980935875216638,0.7175572519083969,0.6176795580110497,0.1118721461187214,0.750201450443191,0.913978494623656,0.8432432432432433,0.7703349282296651,0.1675126903553299,0.5282956058588548,0.7198838896952104,0.6680851063829787,0.5718390804597702,0.0957290132547864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0045198427175807,0.0069081650250053,0.0090873092426565,0.0114344374764958,0.0137563338149406,0.0160020371785077,0.018094655242758,0.0200237015242531,0.022392029296835,0.0246009139531547,0.0264923765159754,0.028444006001192,0.0305011117516264,0.032588300789707,0.0345190768754194,0.0368297451919595,0.0384097314323607,0.040602128211783,0.0425361489649433,0.057401655235673,0.0715494723644342,0.0847904843674743,0.097477244811187,0.1096912729071713,0.1252190620975063,0.1367261558015146,0.1476188452302526,0.158436740437508,0.168466337767409,0.1799496914841012,0.1921610146602854,0.2025763286230979,0.2119523653446957,0.22074409604644,0.2304976704551742,0.2397918245441982,0.2484162997573906,0.2565075553340432,0.2639719246904971,0.2694719338560492,0.2754365894658199,0.2812271040627733,0.2863965527559997,0.2903445012073924,0.2936622232069224,0.2981936371023189,0.3019454956442232,0.3059212651326244,0.3096061997552728,0.3072076308188352,0.3053428830163826,0.3028341104432335,0.3011865799679926,0.3002844613014104,0.2977368517500458,0.2944565457587524,0.2945398070949812,0.2948981848493612,0.295921267675691,0.2966477738832128,0.2980175431695708,0.2990794351647436,0.299294681275784,0.3002976544826765,0.3015536540599229,0.3024926066751162,0.3076803579195923,0.3118964383371984,0.3161646625670753,0.3168703936724789,0.3195860039928549,0.3205455564551286,0.3247714738989197,0.3303044496487119,0.3346317280453257,0.3403342020542695,0.3449257677445597,0.3462809917355371,0.3538692712246431,0.0,2.690305201532768,53.61935915687678,159.97446859871982,217.4770188489005,fqhc3_80Compliance_baseline,47 -100000,95733,46865,446.50225105240617,5367,54.84002381623891,4241,43.652658957726175,1585,16.180418455496014,77.34647984393533,79.69795653100958,63.33814763576003,65.0749640031143,77.14336531551359,79.49819834638163,63.26160706361291,65.00179565497733,0.2031145284217359,199.75818462795303,0.0765405721471239,73.16834813697426,221.51844,155.09554370680638,231391.47420429735,162007.99129538034,448.15952,296.48960713185585,467488.79696656327,309058.9564015082,438.80961,214.37573460276664,454122.5909560967,220639.44607208832,2946.80142,1380.9040877802074,3035718.811695027,1400062.1775983267,954.17187,433.3566076546285,978581.3982639216,434641.485371132,1540.70702,656.7010382536007,1573764.8668693136,656287.9464302217,0.38101,100000,0,1006902,10517.794282013516,0,0.0,0,0.0,38492,401.4080828972246,0,0.0,39864,412.12539040874094,1241142,0,44603,0,0,8748,0,0,75,0.7834289116605558,0,0.0,2,0.0208914376442814,0,0.0,0.05367,0.140862444555261,0.2953232718464691,0.01585,0.3421944692239072,0.6578055307760928,23.67815052431721,4.096565862791293,0.3187927375618958,0.2780004715868899,0.2072624381042207,0.1959443527469936,11.420426875506166,6.184091513946106,16.9458783778028,11781.006609577791,48.57624289805292,14.274360685768064,15.317250535831947,9.907691657896606,9.076940018556291,0.5894836123555766,0.806615776081425,0.6863905325443787,0.5893060295790671,0.1239470517448856,0.7801587301587302,0.9314775160599572,0.8900523560209425,0.7711864406779662,0.1485714285714285,0.508889634350889,0.7247191011235955,0.6061855670103092,0.5225505443234837,0.1173780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.004399436385569,0.0064643143463127,0.008858007760915,0.0109728069640205,0.0131027040234565,0.015137614678899,0.0173812755794609,0.0196665678568143,0.0218688890481504,0.0240264865363523,0.0262866175353601,0.0283141077046449,0.0302705709077051,0.0323965168585696,0.0343982883544016,0.036372107470104,0.0382520464377976,0.0401455301455301,0.0421314668416502,0.057430104608189,0.072038599208758,0.085732270247587,0.09872350269179,0.110696438737428,0.1255312400888043,0.1373838516695659,0.1489533782417605,0.1592774865756407,0.1690279712785339,0.1813895407668956,0.1931391739755804,0.2030105423323552,0.2133576650311977,0.2219400934322616,0.2315330374043858,0.2410536058791386,0.2493055165045268,0.2567960063535284,0.2639065452671362,0.2698407190200229,0.2766136576239476,0.2820112207939777,0.2870294893310957,0.2915001882370086,0.2959128400837129,0.2994910527829534,0.3038826552680457,0.30743921553388,0.3113735321282491,0.3095097062545435,0.3071961935670182,0.3053459827712403,0.3035549266489546,0.3013598978592001,0.2989869000979432,0.2954039151248953,0.2954497077268187,0.2962400886691107,0.2968068244554861,0.2975654416023617,0.2991744330384411,0.2991883863950131,0.2986256748917942,0.2993644321861134,0.3007532514921677,0.3019082882369695,0.3062907676869041,0.3080772730454259,0.3118907612770827,0.316407489685814,0.3178138722818898,0.3232632170276512,0.3284771226951969,0.3309548399211341,0.331363743795793,0.338908316861791,0.3379226564081798,0.339543937708565,0.3424443576727841,0.0,2.521448870417981,54.58563474652505,156.05305911723292,218.9497865700108,fqhc3_80Compliance_baseline,48 -100000,95740,46930,446.0831418424901,5254,53.69751410068937,4121,42.45874242740757,1590,16.2627950699812,77.41222784566315,79.76698501268345,63.350809200748486,65.08918364456866,77.21453691651178,79.57149297647865,63.27697648325724,65.01825703730515,0.1976909291513777,195.4920362047972,0.0738327174912427,70.92660726351596,220.64614,154.44003481083686,230463.67244620848,161311.72539100822,449.39369,297.6154283448041,468797.5558805097,310268.01817972143,435.38873,212.4452283607994,450595.57133904326,218761.3614967638,2901.82216,1347.2033973879368,2992456.4758721534,1368832.2057587293,938.11333,421.6411993700703,966787.1840401086,427350.5019685165,1546.56426,650.1292766354327,1583269.6051806975,652727.6742457132,0.38214,100000,0,1002937,10475.621474827658,0,0.0,0,0.0,38622,402.7679130979737,0,0.0,39509,408.4499686651348,1245031,0,44651,0,0,8801,0,0,82,0.8564863171088365,0,0.0,0,0.0,0,0.0,0.05254,0.1374888784215209,0.302626570232204,0.0159,0.3598173515981735,0.6401826484018265,23.923593944598775,4.14299128182103,0.317156030089784,0.2647415675806843,0.2111138073283183,0.2069885950012133,11.531723531809028,6.321211670842158,16.84597375063289,11813.694796106382,46.89643099563591,13.31064308373254,14.775712957470256,9.631407000020369,9.178667954412752,0.5882067459354525,0.8258478460128322,0.6985462892119357,0.5850574712643678,0.1184056271981242,0.7646090534979424,0.9465478841870824,0.8575197889182058,0.7323943661971831,0.132183908045977,0.5144528561596696,0.7414330218068536,0.6336206896551724,0.5372907153729072,0.1148748159057437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.0046825115289109,0.0070912632390536,0.0092716711349419,0.0112445226161307,0.0134677049931287,0.0160323705077766,0.0183055620746303,0.0205312158281468,0.0225486182190378,0.0248626711486431,0.0269257616818592,0.0291759190722921,0.0313887029504145,0.0335555234537837,0.0354329894776011,0.0373081781846045,0.0393210632249496,0.0413166431007236,0.0433143047626984,0.058672457352849,0.0725324627763652,0.0859303703859104,0.0991290444734295,0.1113502563777932,0.1263174603174603,0.1377919748697322,0.149032216851564,0.1592349201260885,0.1694138604511407,0.181911281194416,0.1933521004763967,0.2049437272786642,0.2143795428671512,0.2233310202777869,0.232949630713953,0.2413927968800634,0.2489977477477477,0.2564058898992995,0.2636989833927405,0.2699476706492544,0.2758342303552206,0.2820503720528563,0.2877224071457649,0.292063646183535,0.296375161548403,0.3004785167230975,0.3034318204893897,0.3070509428361233,0.3104644744105354,0.3086573645904539,0.3060425112304152,0.3035701770370474,0.3016475459328905,0.3004617268288365,0.2981384393283185,0.2952374968585071,0.2960593778993114,0.2966174901336404,0.2966331098175899,0.2970019665318541,0.2987521026483589,0.2998836532867946,0.3001882405049275,0.301139343090051,0.3017065551338652,0.302101847933418,0.3063432835820895,0.3120269425734324,0.3162326218915214,0.3181307571332284,0.32066558185922,0.3237503880782366,0.3269836508174591,0.3317675232568849,0.3335272896543698,0.3361695775488879,0.3426090388790211,0.3475462590506838,0.3480373831775701,0.0,2.229962441650866,52.83690854208073,148.7732196631773,214.3913424924096,fqhc3_80Compliance_baseline,49 -100000,95737,46963,445.9822221293753,5316,54.38858539540617,4226,43.65083510032694,1591,16.336421655159448,77.32373385663094,79.69432710713167,63.321321634088775,65.07531754409564,77.11966986562575,79.49136352989288,63.243601322575685,65.0001213499342,0.2040639910051851,202.96357723879052,0.0777203115130902,75.19619416143541,222.72558,156.0411528033203,232643.1578177716,162989.3905212408,451.84922,298.9062833411292,471457.4824780388,311705.6523084733,442.11073,215.08725707945376,458612.5113592446,222199.9580501349,2937.94166,1371.858746383047,3037483.2509896904,1401903.418182555,966.90158,439.597581082772,998677.7839288884,447930.1821670934,1540.89318,667.9336794066948,1583269.5822931572,673458.2410831421,0.38038,100000,0,1012389,10574.688991716892,0,0.0,0,0.0,38872,405.4963075926758,0,0.0,40002,414.71949194146464,1232278,0,44213,0,0,8902,0,0,72,0.741615049562865,0,0.0,1,0.0104452823882093,0,0.0,0.05316,0.139754981860245,0.2992851768246802,0.01591,0.3395750810226863,0.6604249189773137,23.68764563964401,4.090731626977193,0.3182678655939422,0.2744912446758163,0.2082347373402744,0.1990061523899668,11.1887963288633,6.034689729628767,17.168775775523528,11755.45150775658,48.48826798005938,14.240092800622673,15.12840412283026,9.733892365905092,9.385878690701368,0.575958353052532,0.803448275862069,0.6973977695167286,0.5409090909090909,0.1046373365041617,0.724,0.9192546583850932,0.8444444444444444,0.6822916666666666,0.1209302325581395,0.5137768817204301,0.7208271787296898,0.6436548223350254,0.501453488372093,0.0990415335463258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884498480243,0.0042390499660267,0.0066585464880227,0.0087901144239172,0.0112119485593358,0.0135582515865497,0.0157059519438665,0.0181998304617364,0.0206558751648891,0.0229709662553126,0.0251869019905446,0.0273287460203348,0.0293500401209801,0.0318415547746875,0.0338969055139241,0.0358516313112517,0.03791621355704,0.0400062250350158,0.0419634223687083,0.043876466543022,0.0587719389832632,0.0725297497566642,0.0859549559945032,0.0993173379335009,0.1118468919702641,0.1267392683442588,0.1385364508189765,0.1494482809989465,0.1590605675470731,0.1681732882955337,0.1801677631933153,0.1923792625930413,0.2037735849056604,0.2134148341734918,0.2227429753339054,0.2325462921945601,0.2404183904457107,0.2481067841172108,0.2556749892282922,0.2621804700551525,0.2684130248896489,0.2745732612073699,0.2806689911943738,0.2852318451810691,0.2896733390791342,0.2936401374705904,0.2972935774076901,0.3010639110183511,0.3054645304182263,0.3088466052190883,0.3069397531993917,0.3039996697899038,0.3023887996844981,0.2999204915070473,0.2980029124193883,0.2951331496786042,0.2923110949620057,0.292450821417457,0.2932032553546497,0.293440142412105,0.2945300231810364,0.2950729098837782,0.2961900173847475,0.2974235212620947,0.2989133048035774,0.2992807255290315,0.3015687393040502,0.306418089059646,0.310827443119879,0.3134554140127388,0.3178269801415202,0.3215751052379176,0.3231584258324924,0.3219188529591214,0.3260381593714927,0.3286845526533506,0.3323777911888956,0.3346661335465813,0.3410748042128004,0.3541430192962542,0.0,1.9078604580755645,54.93581477760127,156.60930881536933,218.28201577442317,fqhc3_80Compliance_baseline,50 -100000,95782,46735,444.2797185274896,5305,54.237748219916064,4230,43.63032720135308,1647,16.86120565450711,77.38153749659537,79.72262970520016,63.350937847410606,65.08268271108778,77.1730522154198,79.51520346024284,63.27256878758412,65.00701533896668,0.2084852811755695,207.42624495731832,0.0783690598264854,75.66737212110297,221.45992,155.16958825873087,231212.46163162185,162002.86928517974,448.54055,296.2823798925404,467691.3616337099,308729.581646324,439.00783,213.6314884320915,454635.83971936273,220291.27977998173,2979.5878,1380.8595022353763,3074658.4431312773,1405526.1450328615,991.70309,445.05369384849416,1021463.2185588104,450740.74862551823,1602.1309,679.1268184705082,1641062.4752041094,682385.293340218,0.37935,100000,0,1006636,10509.6573468919,0,0.0,0,0.0,38493,401.3071349522875,0,0.0,39816,412.0607212211063,1242709,0,44573,0,0,8824,0,0,79,0.8039088764068406,0,0.0,0,0.0,0,0.0,0.05305,0.1398444708053249,0.3104618284637134,0.01647,0.3616639770485924,0.6383360229514076,23.673429591368286,4.154782879597469,0.3137115839243499,0.2588652482269503,0.2198581560283688,0.2075650118203309,11.424368328682544,6.190658670334548,17.5178021882915,11660.303590068035,48.3553808955372,13.328523132090982,15.1519574183125,10.312660521649551,9.562239823484155,0.567612293144208,0.7963470319634703,0.678975131876413,0.5698924731182796,0.1116173120728929,0.7293729372937293,0.9297052154195012,0.8567415730337079,0.6915887850467289,0.1044776119402985,0.5026507620941021,0.7064220183486238,0.6138002059732235,0.5335195530726257,0.1137370753323486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787579250136,0.004683033632696,0.0069700904995738,0.009201425916334,0.011204424832747,0.0132536620621558,0.0153096587434256,0.0175139570724338,0.01965092276564,0.0218040804632983,0.0238866230811796,0.0261542567387243,0.0282952909726506,0.0303117664017132,0.0324390671576363,0.0345714728521981,0.0367258239768199,0.0386557060963852,0.0407537839831292,0.0426987349679837,0.0575945734411688,0.0715368927469539,0.0842349142449784,0.0968538522970871,0.1094520547945205,0.1246644827221811,0.1365428226267935,0.147268938830183,0.1573988112388086,0.1668024265289061,0.1789639101467058,0.1910236305629156,0.2019237039452233,0.2114678498054815,0.2203902503409741,0.2300036533117825,0.238514719000892,0.2470407050597479,0.2551430061920207,0.2623431010217742,0.268653092372264,0.2745654943487967,0.2796006718554091,0.2847563166087893,0.2894506881569046,0.2934283569045948,0.2961958898119807,0.3002796491674082,0.3034469378516458,0.3060229533685584,0.3046886555243307,0.3022680752270136,0.29990290305785,0.2977783552033259,0.2959625946266884,0.293020199859426,0.2905531189852648,0.2904137795790299,0.2912540553394595,0.2919382626147807,0.2924436819334626,0.2932446264073695,0.2940881868074539,0.2943668881851835,0.2955932690236254,0.297145081754477,0.2979682053897815,0.3025519435951831,0.3066671306284362,0.310524036379385,0.3142624728850325,0.3188581680033769,0.3182874003390043,0.3241169768325104,0.3304559954963408,0.3294784045315081,0.3307050796057619,0.3305868167202572,0.3372862658576944,0.3446177253708634,0.0,2.101415516512705,52.928715028784765,160.8082704394514,218.4942111878852,fqhc3_80Compliance_baseline,51 -100000,95856,46876,444.85478217325993,5387,54.8948422633951,4288,44.15998998497747,1669,17.004673677182442,77.37299817448195,79.67455318066045,63.35320242165369,65.05714359067706,77.16755795592894,79.47209900475018,63.275656920661646,64.98302220061977,0.2054402185530079,202.45417591027604,0.0775455009920449,74.12139005728591,221.71292,155.2954350016413,231297.90519112,162009.0917643562,448.57778,296.28707423584143,467389.2505424804,308514.7870095158,439.85748,214.11793715658516,455194.23927558,220513.5149372048,3032.7883,1410.3771557437417,3125323.193123018,1432772.7588713702,1005.58087,456.2271160714855,1034289.1629110333,461192.5455408043,1619.38772,688.3747387417375,1651851.4646970455,686964.5379805806,0.38107,100000,0,1007786,10513.541145050913,0,0.0,0,0.0,38506,401.08078784843934,0,0.0,39961,413.1927057252546,1240524,0,44571,0,0,8698,0,0,75,0.7824236354531798,0,0.0,0,0.0,0,0.0,0.05387,0.1413651035242868,0.3098199368850937,0.01669,0.3474772686753432,0.6525227313246568,23.563953760288943,4.1188849712063,0.3125,0.2679570895522388,0.2091884328358209,0.2103544776119403,11.47636134962962,6.256310224247278,17.85395088849803,11808.420419724504,49.023715078885125,14.065992187154745,15.271808901246857,9.808750373541876,9.877163616941647,0.5869869402985075,0.825065274151436,0.7104477611940299,0.5841694537346711,0.1031042128603104,0.754581673306773,0.9333333333333332,0.8636363636363636,0.7867298578199052,0.1170731707317073,0.5176393010220903,0.7514619883040936,0.6511387163561076,0.521865889212828,0.0989956958393113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0046925517143523,0.0067861598855786,0.0090977397802733,0.0115995364251875,0.0138538273615635,0.0159102259639395,0.0182367408586678,0.0208339719420858,0.0230012073587492,0.0251933814866041,0.0272912883334872,0.029402394532655,0.0313632246376811,0.03331821368191,0.0354513254231337,0.0374727127885202,0.0394391884190128,0.0412781158487196,0.0434162886512131,0.0584015431937855,0.072675785535899,0.0860806436405921,0.0989740304745502,0.1105459370655882,0.1259638745114608,0.1380976602238046,0.1489144533991111,0.1593429464943271,0.1695383824096695,0.1823073611708997,0.1946255039941196,0.2051588638759959,0.2148441344019594,0.2240525551300673,0.2336789171706431,0.2428593743026732,0.2500787578757876,0.2579715734428349,0.2643654473639018,0.2705406186759179,0.275360284484372,0.2814962959456581,0.2862960700468336,0.2908797397679273,0.2950839860105413,0.2989088269890131,0.304254399348998,0.3075907761588032,0.3113309589763883,0.3098993378909404,0.3071050278561111,0.3043300596034888,0.3013411567476949,0.2993421541111655,0.2961297231145786,0.2930778231034374,0.2937466210127951,0.2948263522034013,0.2962613158457481,0.2961489616016733,0.2953628039775524,0.2964346066384328,0.2982280619844816,0.2984618324257189,0.2991377747857383,0.30002269246043,0.3063063063063063,0.3098070683459512,0.3145744848198836,0.317733879314224,0.3198548743295825,0.3218620948567138,0.3223799043788419,0.321119879744457,0.3278246601031411,0.3350586086162277,0.3344169036976838,0.33719646799117,0.3419452887537993,0.0,2.2385508342707805,54.66681814450844,157.50604840569312,224.2923192478062,fqhc3_80Compliance_baseline,52 -100000,95798,46749,444.8527109125452,5206,53.1848264055617,4180,43.111547213929306,1613,16.440844276498463,77.39816222968327,79.72800629820061,63.35848721039546,65.07982892411599,77.18575223123726,79.51831726269828,63.279107485899885,65.00390341267867,0.2124099984460059,209.6890355023362,0.079379724495574,75.92551143731896,220.96272,154.71780129702515,230654.8362178751,161504.20812232528,448.60318,296.68200555074657,467760.1933234514,309175.3197637856,436.74671,212.49293463379576,453068.31040314,219584.45684155825,2962.08691,1366.501432323321,3056306.3738282635,1391190.0824225298,965.54395,432.4950279311032,996168.813545168,439983.6277147683,1571.36318,666.8301556205874,1604160.128603937,665736.3022115253,0.37959,100000,0,1004376,10484.310737176142,0,0.0,0,0.0,38577,402.1378316875091,0,0.0,39596,410.509613979415,1245072,0,44706,0,0,8562,0,0,73,0.7620200839265955,0,0.0,0,0.0,0,0.0,0.05206,0.137147975447193,0.3098348059930849,0.01613,0.3698252069917203,0.6301747930082797,23.36542938523495,4.135674039999528,0.3062200956937799,0.2705741626794258,0.2119617224880382,0.2112440191387559,11.279095657347344,5.985031290336326,17.20403948730829,11709.082962508226,47.63640678646168,13.886876404135316,14.489391177061078,9.75176441736168,9.508374787903607,0.5844497607655502,0.7984084880636605,0.70859375,0.600451467268623,0.1143827859569649,0.740495867768595,0.911062906724512,0.8587257617728532,0.6681818181818182,0.1130952380952381,0.5208754208754208,0.7208955223880597,0.6496191512513602,0.5780780780780781,0.1146853146853146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470093779749,0.0043984108967082,0.0065637300653329,0.0084287919408562,0.0105423677120927,0.0128137276853868,0.0150710755591786,0.0174468432436844,0.0195854064712553,0.0218232044198895,0.0238505040570445,0.0259517701385325,0.0282102666872205,0.0306401811445039,0.0329185438724909,0.0347737178030694,0.0367243912026979,0.0385839753626644,0.0405092231748506,0.0423626442287666,0.0574105764013523,0.0716608971208048,0.0851487639695552,0.0974756179586346,0.1096095462978579,0.1252391573205923,0.1358468554459646,0.1475845924664822,0.1580318904659682,0.1674458503109586,0.179809162771663,0.1909932514275826,0.2017643927294851,0.2110161899975966,0.2207214138128105,0.2304245361303813,0.2396962397966011,0.2479645540011695,0.2555300950609161,0.2629770861245663,0.2687661129030393,0.2749970777323203,0.2798665104554975,0.2851100540385099,0.2891213846172519,0.2948048750461652,0.2984225788710564,0.3031180910269116,0.3060313599668806,0.309738128813738,0.3072981115833647,0.3043358795405836,0.3008132369080113,0.2984398881102748,0.2971364269004116,0.2945781385908959,0.2916653517215262,0.2913334314639452,0.2921126184470652,0.2926395216400911,0.2938519541602897,0.2962013332807384,0.2975569012319899,0.29786997509783,0.3000262323229914,0.3019948186528497,0.3021982673476874,0.3071099202392821,0.3113348377017879,0.3159692235220224,0.3211270149455908,0.3253984899328859,0.3299832495812395,0.3346923367308418,0.3375944760660632,0.3408767772511848,0.3417663990304499,0.3487716472009666,0.3504390779363337,0.3525398028809704,0.0,1.9785398545529531,52.92660514070639,152.71898838448388,220.21394434281845,fqhc3_80Compliance_baseline,53 -100000,95875,46880,445.4758800521512,5216,52.99608865710561,4094,42.09647979139505,1590,16.198174706649283,77.3584022892406,79.64122988617987,63.35300198276878,65.04178619098954,77.15424335800441,79.44202983596722,63.27507825027095,64.96888997740182,0.2041589312361935,199.20005021265297,0.0779237324978296,72.89621358772536,221.08856,154.91721302879827,230600.6153846154,161582.26130774274,449.72439,297.5225518511114,468467.50456323335,309717.2170546143,433.88118,211.0290327123436,449101.0169491526,217501.8415005268,2916.18088,1360.3468703105211,2997632.5736636245,1374859.160688941,955.35364,433.377032805018,980172.370273794,435737.838649301,1557.56358,665.8112040018518,1587023.812255541,659730.768646458,0.38115,100000,0,1004948,10481.846153846154,0,0.0,0,0.0,38560,401.5541069100392,0,0.0,39418,407.7183833116037,1241666,0,44590,0,0,8721,0,0,89,0.9282920469361148,0,0.0,0,0.0,0,0.0,0.05216,0.1368490095762823,0.3048312883435582,0.0159,0.344619326500732,0.655380673499268,23.73786480739828,4.211740776109998,0.3028822667318026,0.2684416218856864,0.2125061064973131,0.2161700048851978,11.433840665680972,5.980800210799026,16.87980174289005,11737.031976407045,46.94852151757392,13.409534155506137,14.281960979589352,9.696541409466253,9.560484973012182,0.574743527112848,0.8007279344858963,0.6911290322580645,0.5747126436781609,0.1310734463276836,0.7493670886075949,0.9370786516853932,0.8688046647230321,0.7156398104265402,0.1182795698924731,0.5036094877964936,0.7079510703363915,0.6231884057971014,0.5295902883156297,0.1344778254649499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025311585618969,0.0048737980160298,0.0072521832621638,0.0095543664774746,0.011516568408213,0.013698490723496,0.0158421288561066,0.0180427354786067,0.0201647897246357,0.0224291804250707,0.024609211051624,0.0265936724692952,0.0286747185933777,0.0309729051371201,0.0329252457800037,0.034763664897681,0.0368776572084699,0.0390518930011296,0.0407510488929506,0.0427287292702719,0.0569328607172643,0.0707136140424198,0.0846328665835803,0.0971393766277409,0.1094946643210045,0.1253710844646347,0.1365389914577018,0.1478539220690828,0.1588342051884274,0.1688055493015127,0.1811475586379202,0.1929380456300912,0.2036118903168286,0.2135000983972186,0.2222112254772587,0.2316248492025721,0.2403854733648612,0.2492410101873299,0.2562336925694838,0.2628678787045629,0.268360699367052,0.2743896018812078,0.2794291804831833,0.2849057508753417,0.2898462660266148,0.2944955485955264,0.2986298968039275,0.3023421679381535,0.3060962483627922,0.3092249557381814,0.306963645673323,0.3044579673431175,0.3023042902616975,0.3010070653508835,0.2994115199429352,0.2956745496875383,0.2927319644751215,0.2937093916125221,0.2949389775539814,0.2952711728559978,0.2953708721897251,0.2958829560690906,0.2967223744483256,0.2966572263229489,0.2965928980746637,0.2981955822876698,0.2993765939359591,0.3048784294141515,0.3087451676940758,0.3117466320018908,0.3151559035163144,0.3191478169384534,0.3222840702983301,0.3258812757515641,0.3298735610492546,0.3286412978647262,0.3281805534085639,0.3317823184301032,0.3398351648351648,0.3424761904761905,0.0,2.346570656108667,51.40702555201997,153.44645053100493,214.37220292271527,fqhc3_80Compliance_baseline,54 -100000,95727,47063,446.8122891138341,5306,54.17489318583053,4241,43.64494865607404,1656,16.808215028152976,77.38965647392791,79.75625201215624,63.34469261111818,65.09385660781057,77.18041670547262,79.55346041674595,63.26538064457041,65.02015676227336,0.2092397684552907,202.79159541028943,0.0793119665477704,73.69984553720599,222.44046,155.75033707457973,232369.3837684248,162702.41027768524,453.10637,299.5899507034831,472585.93709193857,312218.4278910946,441.696,214.88872021287852,458053.464539785,221764.38255185488,2958.17598,1377.5548981565937,3043578.572398592,1392919.5579529162,956.97991,435.8600787328997,984263.290398738,440021.61902301526,1604.72888,681.7579377495431,1630570.0168186612,673045.5754320038,0.38138,100000,0,1011093,10562.244716746582,0,0.0,0,0.0,38901,405.6535773606192,0,0.0,40060,415.0762062949847,1235064,0,44357,0,0,8846,0,0,82,0.8461562568554326,0,0.0,0,0.0,0,0.0,0.05306,0.1391263306937962,0.312099509988692,0.01656,0.3497031840259039,0.650296815974096,23.52501556951395,4.165434330436056,0.3206790851214336,0.2713982551285074,0.2039613298750294,0.2039613298750294,11.26929409886415,5.975073298022866,17.767908003936885,11807.023679191465,48.668995072405394,14.143076653870397,15.501087984335422,9.62864839019419,9.39618204400538,0.5743928318792737,0.7801911381407471,0.6919117647058823,0.5815028901734104,0.1086705202312138,0.7525937749401437,0.9018036072144288,0.8583106267029973,0.6995515695067265,0.1341463414634146,0.499665327978581,0.6871165644171779,0.6304128902316214,0.5404984423676013,0.1027104136947218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498906085406,0.0045821801851119,0.0069921553902515,0.0093565231525692,0.0114132259147364,0.0136348824895116,0.0159460038131748,0.0180786231255295,0.0201978902608553,0.0223762193811224,0.0245907520731469,0.0268155965751596,0.0291550584437613,0.0312522525305571,0.0334598564237973,0.0357072727084818,0.0378673348934495,0.0399522772071791,0.0419585507306628,0.0439707000927344,0.0585968905641464,0.0724962317869703,0.0859100399752384,0.0988353130556461,0.1106164347431609,0.1260180660447208,0.138026525198939,0.1488686915987314,0.1591481908667606,0.1680304573971794,0.1803684680901465,0.1928040588050756,0.2044947973861894,0.2136897927942704,0.2231916906894351,0.2322828542321832,0.241435835675097,0.2497668303536312,0.2578684807256236,0.2643976661709186,0.2712452306625043,0.2768784843561903,0.2825840306339526,0.2872223286097281,0.2912673185645306,0.2960838144951802,0.3000737619863228,0.3033619319987289,0.3068557980759284,0.309753172647365,0.3076209677419355,0.3059581541674108,0.3031180588747997,0.3009907558298842,0.2994387097729662,0.2972997725642239,0.2948754336171554,0.2955332636256698,0.2958009436844427,0.29641127530113,0.2979253420582986,0.2990973312401884,0.3000311688311688,0.3000399254724514,0.302104435282061,0.303750032305585,0.3027950310559006,0.3063594642689894,0.3111033519553072,0.314710769961225,0.3176695146337029,0.3201253518882456,0.3254326561324304,0.3279598110519607,0.3293716602174313,0.3307361321083847,0.3364850667867327,0.3355811186037287,0.3391749797789161,0.3427389014296463,0.0,2.445051813315241,54.35545010533478,162.4521338760298,212.6485146930607,fqhc3_80Compliance_baseline,55 -100000,95762,46894,444.8006516154633,5289,54.01933961279004,4205,43.33660533405735,1591,16.259058916898145,77.34687979821054,79.70652397794422,63.33382307926016,65.08146103944989,77.1420741968905,79.5055515932817,63.25724902898104,65.00862613983068,0.2048056013200323,200.97238466252065,0.0765740502791203,72.83489961920964,220.67606,154.53281076960317,230441.7409828533,161371.31950412813,446.50921,295.6150289152251,465692.2578893507,308121.0034642813,435.96554,212.9119375599992,452107.631419561,219770.21498787933,2943.41854,1373.2034040917447,3033981.662872538,1394379.6494839033,966.57094,441.0529787677237,993044.3704183288,444310.6268646924,1548.7945,658.7051699483499,1584112.9257952007,659052.2362169323,0.38197,100000,0,1003073,10474.624590129695,0,0.0,0,0.0,38340,399.75146717904806,0,0.0,39650,410.92500156638334,1246612,0,44785,0,0,8919,0,0,75,0.7727491071615046,0,0.0,1,0.0104425555021824,0,0.0,0.05289,0.1384663717045841,0.3008130081300813,0.01591,0.349264037797565,0.650735962202435,23.658731536644,4.091711019726201,0.310820451843044,0.2787158145065398,0.2064209274673008,0.2040428061831153,11.609513681441053,6.371035875952971,17.15710689854022,11775.186871591592,48.08424294618384,14.17616433563145,14.664625102110437,9.763781811560024,9.479671696881937,0.5854934601664685,0.7977815699658704,0.6977811782708493,0.5783410138248848,0.1317016317016317,0.75390625,0.9245689655172412,0.8917525773195877,0.6872246696035242,0.1691542288557214,0.5117948717948718,0.7146892655367232,0.6158868335146899,0.5397815912636506,0.1202435312024353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914717684731,0.0049993915547803,0.0075939086294416,0.0096649288088051,0.0117502238137869,0.014022117675811,0.0161790192680191,0.0180481829318089,0.0204452986035861,0.0226379162059221,0.0249546326009616,0.027219615372768,0.0294937320677492,0.0316874929177011,0.033779529997007,0.035984535229904,0.038035374036948,0.040042739919292,0.0420885220681482,0.0440672671421877,0.0587308214173885,0.0725201619229924,0.0852712365535029,0.0986999064605295,0.1106895570520724,0.1262878699819302,0.1379558871848138,0.149462068378976,0.1599185101435672,0.1691032355492722,0.1815835045336717,0.1929307009865897,0.2035542423880337,0.2129388000218376,0.2221026153626467,0.2317742328030621,0.2408392138501499,0.2489490839608857,0.2563765090314968,0.2634640709991411,0.2692316590704023,0.2749953214185459,0.2802006673134717,0.2850705845696618,0.2902380114332876,0.2944678861838625,0.2983741870935468,0.3023938773694046,0.3060324195655829,0.3095865503702337,0.3072869050820113,0.305706745835395,0.302826209223847,0.3007049461559531,0.2979366773390252,0.2953173936292109,0.2928208205678911,0.2934266146737884,0.2938820039888856,0.294343855151418,0.295067264573991,0.2958610218287224,0.2972069606634774,0.2987636136404213,0.2991955817024853,0.3003571335470921,0.3019335364638209,0.30564302808918,0.3098818663020997,0.3124578590409709,0.31697099403488,0.3190102786902617,0.3222396980182447,0.3248542660307366,0.3263372956909361,0.3308676764118821,0.3362173649058895,0.337525354969574,0.3435326842837274,0.3401413982717989,0.0,2.1093199116772645,56.17030195713989,146.3292504143311,220.521861384876,fqhc3_80Compliance_baseline,56 -100000,95755,46969,447.558874210224,5172,52.75964701582163,4078,42.0134718813639,1614,16.46911388439246,77.36211040614715,79.72251959476334,63.32787542470121,65.07495006244312,77.15302573988083,79.51713735578944,63.248285485503,64.99933782595,0.209084666266321,205.38223897389685,0.0795899391982146,75.61223649312865,221.9129,155.47493327351506,231750.71797817343,162367.43070702843,449.49291,296.95588905465104,468881.2281343011,309581.9529577056,433.99653,211.5968317298635,449572.3774215446,218203.65991793043,2882.36017,1353.0215694890792,2970333.95645136,1373407.044031609,946.46468,431.6018509009136,973751.68920683,436155.1328484559,1577.4936,678.4602525267427,1611490.4913581535,678138.5116398577,0.3817,100000,0,1008695,10534.12354446243,0,0.0,0,0.0,38624,402.77792282387344,0,0.0,39449,408.2919951960733,1238734,0,44387,0,0,8784,0,0,73,0.7623622787321811,0,0.0,1,0.0104433188867422,0,0.0,0.05172,0.1354990830495153,0.3120649651972157,0.01614,0.3586232420429311,0.6413767579570688,23.292993646361225,4.212799972413758,0.303825404610103,0.2709661598822952,0.2096615988229524,0.2155468366846493,11.401739752796257,5.993806412324716,17.35759268878976,11794.777324756498,46.66183232407509,13.44743272702242,14.10133576915766,9.405767508412222,9.707296319482786,0.5689063266307013,0.7963800904977375,0.6973365617433414,0.5614035087719298,0.1092150170648464,0.7510170870626526,0.9384288747346072,0.8476454293628809,0.7450980392156863,0.1191709844559585,0.4903474903474903,0.6908517350157729,0.6355353075170843,0.5038402457757296,0.1064139941690962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021377263102438,0.004603808789827,0.0068013399654857,0.009032992267596,0.0113117338894257,0.0138306106652544,0.0158770623865559,0.0180817610062893,0.0199895706587867,0.0221491767018923,0.0242126529314641,0.0265836697379639,0.0286108167611444,0.0303479972382807,0.0323046754050985,0.0341280344071791,0.0359953607820396,0.0380991907034654,0.0401043669892618,0.0421340999760424,0.0570163992609371,0.0704525956770103,0.0843418982695333,0.0977408022886472,0.1100926140798717,0.1262308432664544,0.1384014767350576,0.1493846612443043,0.1598940023721243,0.1695942178183846,0.1812375464483817,0.1927722579388271,0.2030398311446694,0.213025260647434,0.2226832946252655,0.2329794778600239,0.2421379433574555,0.25,0.2573629515338537,0.264713629648293,0.2712666828720584,0.2771181583164692,0.2834861842494527,0.2882920688208141,0.2927211346966532,0.2970704593352148,0.3018473553781071,0.304983397157797,0.3079601796833534,0.3115420129270544,0.3091477127351567,0.3065039755688227,0.3044554803674681,0.3013032371660725,0.3002699255480082,0.2970154730597517,0.2948697686180301,0.2940945333093207,0.2936309310996476,0.2945725409326056,0.2959322602905795,0.2968136099324218,0.2973423310838957,0.2982190897569869,0.298723953354999,0.3003341362965265,0.3027030083691472,0.3067842013456267,0.310089639357932,0.3153308736949525,0.3183923031965112,0.3219221105527638,0.3267782687161615,0.3309109979023074,0.3358257177143912,0.335672514619883,0.3422121896162528,0.3443852378133017,0.3442184154175589,0.3457588436667934,0.0,2.2032284770966792,53.45334910573049,146.28147377733632,211.92579034673267,fqhc3_80Compliance_baseline,57 -100000,95765,46996,447.3659478932804,5310,54.351798673837,4197,43.29347882838198,1581,16.164569519135384,77.32840490063373,79.68850067082496,63.31625382636724,65.06448680173808,77.13213820940489,79.49551132874431,63.24326618409879,64.9955829065463,0.1962666912288426,192.9893420806508,0.0729876422684512,68.90389519178086,221.09868,154.89330148041086,230876.2909204824,161743.1227279391,449.04281,296.70526063329714,468351.0259489375,309276.6779442355,437.3539,212.8653646846899,453565.0289771837,219872.24199471317,2931.99801,1345.78576709422,3020966.386466872,1364607.3378522636,963.33169,430.3787487205977,991298.146504464,434776.51409241074,1535.83478,645.8393591337725,1569843.8678013887,643538.8915967512,0.3813,100000,0,1004994,10494.376860021928,0,0.0,0,0.0,38634,402.8507283454289,0,0.0,39577,410.1185192920169,1240666,0,44553,0,0,8734,0,0,79,0.8249360413512243,0,0.0,1,0.0104422283715344,0,0.0,0.0531,0.1392604248623131,0.2977401129943502,0.01581,0.357528818443804,0.642471181556196,23.514339627124148,4.194665970227217,0.3083154634262569,0.2785322849654515,0.207767452942578,0.2053847986657136,11.068475153773798,5.801806900356846,16.86477601902094,11767.738367317388,47.84937211260853,14.239461101184272,14.67258015592051,9.641649457041774,9.295681398461966,0.5794615201334287,0.7938408896492729,0.6993817619783617,0.5642201834862385,0.1241299303944315,0.7673060884070059,0.906183368869936,0.8833333333333333,0.7437185929648241,0.1695906432748538,0.5043362241494329,0.7185714285714285,0.6284796573875803,0.5111441307578009,0.1128798842257597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.0044422807764863,0.0065893676643788,0.0087501778491432,0.010976378913959,0.0132007822685788,0.015489884157285,0.017662433127782,0.0198838659551411,0.0220689090425205,0.0243657424017221,0.0263568597654886,0.0282908268202385,0.0303336183011113,0.0323619252043259,0.0344831150574201,0.0364684692145252,0.0382684808761304,0.04042398420451,0.0425472081324014,0.0568771332839263,0.0714472486899768,0.0845138357327852,0.0971482030420569,0.1095984236204044,0.1257359080867975,0.1364658225700409,0.1481174041674648,0.1580976589200273,0.1680712815234174,0.179504577275175,0.191230404725585,0.2022887477156035,0.2116755598320504,0.2213038980476745,0.2312650195461743,0.2410907549148684,0.2493614627285513,0.2577807541258995,0.2646091807861062,0.2705185459425689,0.2757653001566848,0.2819590252216212,0.2867199117378999,0.29185242775058,0.2960197165742452,0.2999511296567798,0.3045991647142712,0.3081976985278872,0.3116787165549633,0.3090470868622672,0.3065032935902196,0.3040183664558655,0.3029975032832547,0.3009130725261673,0.2970230351266549,0.2947801328693451,0.2953243726716229,0.296138291155441,0.2964759594806677,0.2972609394267778,0.2984404536862003,0.2995813110588039,0.3010134758881835,0.3016591251885369,0.3028110575177636,0.3033749290981282,0.3081633290637008,0.3100661790316962,0.3139420232695721,0.3171525423728814,0.3184706685573236,0.3205590062111801,0.3232050416385325,0.3280959464484939,0.3351256575102279,0.335548172757475,0.344368187323375,0.3460482985729967,0.3445605884630275,0.0,1.974318537616595,52.632913577643045,156.98618410360243,218.5749532530178,fqhc3_80Compliance_baseline,58 -100000,95724,46702,444.4131043416489,5230,53.4871087710501,4174,42.95683423174961,1568,15.983452425723955,77.31464774318667,79.67938928674135,63.30648041847581,65.05554891935722,77.11195274883426,79.47978449123576,63.23023295516088,64.98275954928667,0.202694994352413,199.60479550559285,0.0762474633149281,72.7893700705522,221.1814,154.84038581795008,231061.5937486941,161757.12028117303,445.78013,295.09479935697044,465087.0732522669,307670.65985756536,436.47454,212.8162322397964,451571.8106222056,219005.4467628808,2937.51881,1371.857673681401,3027829.25911997,1392233.6762913044,953.52003,431.5368300425751,982087.1359324724,436789.3894933391,1518.61864,654.0997740744709,1550241.277004722,653663.818027213,0.37912,100000,0,1005370,10502.799715849736,0,0.0,0,0.0,38232,398.7401278676194,0,0.0,39670,410.0121181730809,1241717,0,44540,0,0,8654,0,0,87,0.8984162801387322,0,0.0,0,0.0,0,0.0,0.0523,0.1379510445241612,0.2998087954110898,0.01568,0.3598533455545371,0.6401466544454629,23.58370114325003,4.036534962101654,0.3092956396741734,0.2793483469094394,0.2156205079060852,0.1957355055103018,11.652666325829514,6.47253286626844,16.98112654085355,11702.62060694085,47.92420346906165,14.287332887640204,14.667394865066454,9.974136089394598,8.9953396269604,0.5860086248203162,0.7941680960548885,0.7048799380325329,0.5788888888888889,0.1089351285189718,0.7491883116883117,0.9191489361702128,0.8701657458563536,0.7285714285714285,0.1210526315789473,0.517675050985724,0.7097701149425287,0.6404736275565124,0.5333333333333333,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982474801195,0.0046841256805669,0.0068616902494975,0.0089320191037496,0.0110382013327229,0.0132034720241248,0.0157109190887666,0.0180923403647056,0.0202502402224357,0.0222963842594488,0.0246275619533901,0.0266451725518785,0.0287809745209171,0.0304073200136013,0.0324428662854311,0.0343330335266569,0.0365023972496349,0.0387257445263048,0.0406554786116829,0.0426403025346654,0.0575607922570136,0.0712670867262565,0.0843736231458364,0.0973111664931596,0.108994095318431,0.1242013962343981,0.1353906888391294,0.1467886001426579,0.1571420937316304,0.1669670829578129,0.1800802225528886,0.1923531132514978,0.2026341017037779,0.2123078271732103,0.2211135611907387,0.2307905809732106,0.2397185965618673,0.2472367590002706,0.2548029346527896,0.2618043990122322,0.2678579711489401,0.2730170635664729,0.2789396310523071,0.2834765700019205,0.2887732396250045,0.2927506198423565,0.2971528690319754,0.301432241980208,0.3060406157030138,0.3096715544840125,0.3080646462473445,0.3062435606841129,0.3034969161386402,0.3015120284820617,0.2983054871353533,0.2955588181317673,0.2920118904560116,0.2925009429166462,0.2924520255863539,0.2932096567440535,0.2935976977126626,0.2944304395777533,0.2966126411399525,0.2973657885961987,0.2989071952940051,0.301367733913584,0.3015471965933286,0.3046767537826685,0.3093853386731673,0.3152851171228015,0.3180170382454232,0.3217041970610001,0.3232183329136238,0.3280773918342474,0.3336780744640842,0.3350692389631909,0.3342499236174763,0.3387821822639967,0.3372797356828194,0.3448408131952435,0.0,2.5138893296418163,53.41707686907234,156.95769812798093,213.60218539033664,fqhc3_80Compliance_baseline,59 -100000,95821,47072,446.8540299099362,5361,54.88358501789796,4236,43.69605827532587,1590,16.269919954915938,77.3504688262772,79.68351678643342,63.33176974345843,65.06036319986343,77.14770274618256,79.4812235317108,63.255715027845966,64.98645955161537,0.2027660800946336,202.29325472261905,0.0760547156124644,73.90364824806284,220.03476,154.17194266855162,229631.04121226037,160895.77719764103,449.04804,296.86256829206025,468155.43565606704,309332.76452141005,439.10688,213.6287915749691,454517.89273750014,220106.0018552456,2993.05488,1383.189511053499,3089676.219200384,1409600.485335678,966.71605,437.2447452761043,995040.7635069556,442477.8548294254,1557.08998,663.6440353425754,1594972.6469145594,667739.5382664807,0.38274,100000,0,1000158,10437.77460055729,0,0.0,0,0.0,38521,401.4986276494714,0,0.0,39792,411.6425418227737,1247408,0,44804,0,0,8682,0,0,89,0.928815186650108,0,0.0,2,0.0208722513853956,0,0.0,0.05361,0.1400689763285781,0.2965864577504197,0.0159,0.3556231003039514,0.6443768996960486,23.549562245554245,4.159793191850871,0.3045325779036827,0.2724268177525968,0.2070349386213409,0.2160056657223796,10.971495565490756,5.6869938261812365,17.023956763815892,11807.330138386822,48.48398750551684,14.182328804448682,14.598691105603375,9.727056426591997,9.975911168872791,0.5613786591123702,0.7859618717504333,0.6798449612403101,0.5575826681870011,0.1147540983606557,0.740501212611156,0.9163265306122448,0.8477011494252874,0.7409326424870466,0.1407766990291262,0.4874958319439813,0.6897590361445783,0.6178343949044586,0.5058479532163743,0.1071932299012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603541544259,0.0047859018687324,0.0072160763219324,0.0093677290877132,0.0114937852187887,0.013668493206494,0.0159400336545816,0.0181153500531002,0.0203672651425299,0.0225518498044755,0.02488643704562,0.0268111105406376,0.0291032496914849,0.031246459798762,0.0333323020121077,0.035357449138795,0.0373997205113606,0.0396523290427639,0.0416103755741691,0.0435977514053716,0.0585105828108863,0.0725352848928384,0.0852265582428637,0.0981298592141206,0.1108114372405655,0.1262430384562545,0.1381964692784816,0.1493410485783881,0.1590943057838888,0.1688186445218323,0.1805113196178015,0.1919725861547109,0.203506561223603,0.2135261265396679,0.2224055617891008,0.2325537595692587,0.241844581096615,0.2503882074940925,0.2580901555580788,0.26484567371013,0.2719226185655278,0.2779447361343358,0.2837826647581418,0.2883205558217537,0.2931128740296186,0.2965378640297881,0.2996068020736808,0.3033551919526326,0.306939156111586,0.3105764662408277,0.3087153367289191,0.3065482338359843,0.3041394765401474,0.3015710135711292,0.2995113111418089,0.2969233124138987,0.2935999113517278,0.2929854787103125,0.2934854920423724,0.2943956063550935,0.2951386293998954,0.2964210443380803,0.2974846049472915,0.297570759973256,0.2993215219006976,0.3009996105413475,0.3037354041491894,0.3080411597285209,0.3122932841277025,0.3164661802405837,0.3177473171611507,0.3202120400986721,0.3205869551700553,0.3273068267066766,0.3319073746861341,0.3380314502038439,0.3352409638554217,0.3324711500198965,0.3387787895018747,0.3415823022122234,0.0,2.031357512686744,54.34916086264226,156.2121395942686,220.80790992912625,fqhc3_80Compliance_baseline,60 -100000,95727,46890,446.1228284601,5341,54.57185538040469,4217,43.57182404128407,1620,16.682858545655876,77.30949638025908,79.67006962332857,63.31695901961641,65.05978795215178,77.1032300464215,79.46227309382436,63.24064945293312,64.9844396668982,0.2062663338375756,207.79652950420768,0.0763095666832924,75.3482852535825,220.9669,154.80542695611064,230830.27776907248,161715.53162233293,449.43096,296.6593008317939,469018.6363303979,309427.65450896183,435.6754,212.4452071154357,451437.8597469888,219161.7358195209,2966.30854,1372.9681428180345,3069360.3894408057,1404897.49268026,964.42286,438.4693128939264,995253.5125931032,445822.7907423466,1568.21852,659.3078711726675,1616017.424551067,669854.8527656144,0.38178,100000,0,1004395,10492.285353139658,0,0.0,0,0.0,38598,402.7181463954788,0,0.0,39539,409.3620399678251,1242628,0,44607,0,0,8836,0,0,74,0.7730316420654569,0,0.0,1,0.010446373541425,0,0.0,0.05341,0.1398973230656399,0.3033139861449166,0.0162,0.3480286738351254,0.6519713261648745,23.75572472567161,4.082283628700631,0.3106473796537823,0.2729428503675599,0.2153189471188048,0.2010908228598529,11.419364717272192,6.162877739091964,17.245090582046103,11776.84438571686,48.24217850733678,13.954231080314454,14.836132535950126,10.257835826072178,9.193979065000027,0.5795589281479725,0.790616854908775,0.6824427480916031,0.5881057268722467,0.125,0.7676348547717843,0.935632183908046,0.862533692722372,0.7012987012987013,0.2142857142857142,0.5043160690571049,0.702513966480447,0.6112886048988285,0.5494830132939439,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065211006572,0.0043792068769767,0.0067161756350945,0.0088872186560494,0.0110405123773699,0.013364275753967,0.0155837537583447,0.0177508752947421,0.0200625485466661,0.0221264750130486,0.024139238819586,0.0265211409327063,0.0285347043701799,0.0304727969269744,0.0324759704632647,0.034622060586023,0.0366479683715923,0.0386629746014954,0.040720878024445,0.0429583333333333,0.0578382950285588,0.0717963745970611,0.0858110730054851,0.0985026917900403,0.1108111812900028,0.1264474783473102,0.1383027255270165,0.1489440967343636,0.1591147001644982,0.1680856082863331,0.1807144550018314,0.1921073999891734,0.2029947548262128,0.2128723706962593,0.2218490910892615,0.2318734550452817,0.2412768619041236,0.249667740409524,0.2570166172578685,0.2640698593873551,0.2696242968587236,0.2763658054480169,0.28198937139746,0.2865981606494082,0.2916990574288213,0.2955845372516148,0.2994509274198592,0.3041343340541916,0.3084523639942502,0.3111002535389816,0.3089101173553942,0.306271335755974,0.3042062529954047,0.3015416624525003,0.2999494634204346,0.2969961685823755,0.2936997510347124,0.293797749116898,0.2944898587406369,0.2959108870174686,0.2960330113476507,0.2956909361069836,0.2969621952754584,0.2984710438539544,0.2998457385268029,0.2998383901574392,0.301185544922154,0.3058871575772807,0.309504610314483,0.3131868131868132,0.317066533629643,0.3203344092280015,0.3274413940077723,0.3318168031543828,0.3352080989876265,0.3354937544190431,0.3420651842826683,0.343494271685761,0.3483516483516483,0.3527384144006127,0.0,1.8683824017547168,52.79432503427969,161.60176573860528,217.47223415544505,fqhc3_80Compliance_baseline,61 -100000,95742,46780,444.0370997054584,5315,54.43796870756825,4245,43.836560757034526,1619,16.6175764032504,77.40440741590693,79.76086453744253,63.3594678928421,65.09902333368355,77.19954882010278,79.55662617149392,63.28223283292239,65.0240505547385,0.2048585958041542,204.238365948612,0.0772350599197082,74.97277894505316,221.50634,155.13670706258492,231357.5442334608,162036.20883476938,448.34524,295.9065668140992,467801.800672641,308583.61723600834,441.02201,214.70338422332796,457171.4816903762,221617.93766457416,2958.92278,1383.5032872912032,3055729.261974891,1410808.8157248269,972.69231,438.4140251796466,1003841.1773307428,446023.0156569751,1564.4445,664.9324905914882,1606677.403856197,670872.8710525709,0.38017,100000,0,1006847,10516.252010611852,0,0.0,0,0.0,38418,400.754110003969,0,0.0,40075,415.0738442898624,1244659,0,44645,0,0,8822,0,0,80,0.835578951766205,0,0.0,0,0.0,0,0.0,0.05315,0.1398058763184891,0.3046095954844779,0.01619,0.3400108283703302,0.6599891716296697,23.5660987337738,4.087576845161937,0.3142520612485276,0.2760895170789164,0.2157832744405182,0.1938751472320377,11.293494351415893,6.155185438079612,17.236756848913323,11727.204115695582,48.51439694997927,14.26000897518597,15.06837652187476,10.208638979167093,8.977372473751437,0.5872791519434629,0.7952218430034129,0.7061469265367316,0.5665938864628821,0.1215066828675577,0.7624309392265194,0.9109730848861284,0.8975069252077562,0.7113821138211383,0.1525423728813559,0.5127602417730021,0.714078374455733,0.6351490236382322,0.5134328358208955,0.1130030959752322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0045908284773245,0.0069490940816036,0.0094348245569491,0.0117942513192276,0.0138945439739413,0.0161528662420382,0.0183463771517198,0.0204042014059179,0.0225530826298286,0.0246899661781285,0.0269316035799326,0.0289503444021795,0.0310852010547132,0.0332968756448883,0.035374627853126,0.037478511215592,0.0397211531479195,0.041778821670945,0.0437662743464222,0.0584028481045697,0.071818001067381,0.0853717378534866,0.0980361235517988,0.1101531456517385,0.1254427609249606,0.1372407574391343,0.1479289310921149,0.1584406982458389,0.1684878770656172,0.1809987399980615,0.1919127433264442,0.2025733614670118,0.2120178430858042,0.220586779314214,0.2303161158168632,0.2392007675487527,0.2475716148761073,0.255043603497352,0.2617633256647094,0.2684854577599057,0.2744942390530334,0.2800240830155713,0.285029925812656,0.2901225597054692,0.2940504276024771,0.2980806453627043,0.3025687887095136,0.3059174424459967,0.3085622608261115,0.3072713371695304,0.3052920208390458,0.3030077615124423,0.300256247840608,0.2977046173869317,0.295227931087056,0.2927756054490413,0.2931425865138079,0.2934799231932573,0.2932528409090909,0.2939047370286759,0.294679802955665,0.2952573621423208,0.2959809718579113,0.2971913469582885,0.2982415188297541,0.2988327068200446,0.3009360374414976,0.3043660057841736,0.3082801544158197,0.3126522876996661,0.3161997050768906,0.3201096095160989,0.3251372283630348,0.3296997690531177,0.3301919720767888,0.333030303030303,0.3332665330661322,0.3320547945205479,0.3328112764291308,0.0,1.9017656841930932,55.4901002471012,154.16143004948816,219.66164719688496,fqhc3_80Compliance_baseline,62 -100000,95756,46783,444.828522494674,5218,53.39613183508083,4142,42.7440578136096,1575,16.16608880905635,77.33232137485312,79.69862065267012,63.31916690730778,65.071285097556,77.13319058500261,79.4992744441405,63.24468334895051,64.99868843658372,0.1991307898505141,199.3462085296187,0.0744835583572722,72.59666097228035,221.33298,155.00705279830166,231142.6751326288,161877.11767231472,448.42164,296.96162622297777,467774.23869000375,309601.3682933474,437.77595,213.1263658460993,454026.1602406115,220169.8504732656,2918.58644,1362.6147008057535,3013819.697982372,1388885.7625691902,960.96593,434.0438146478118,993816.1786206608,443545.8076592919,1534.52228,653.4318576468766,1576360.4578303187,659802.3203268957,0.38008,100000,0,1006059,10506.485233301308,0,0.0,0,0.0,38483,401.3429967834914,0,0.0,39692,411.27448932703953,1240809,0,44564,0,0,8684,0,0,86,0.8981160449475751,0,0.0,0,0.0,0,0.0,0.05218,0.1372868869711639,0.3018397853583748,0.01575,0.352185089974293,0.6478149100257069,23.517774916478757,4.091550764587719,0.3078223080637373,0.2723322066634476,0.2172863351038146,0.2025591501690004,11.311330536722147,6.141246036016118,16.90801585816809,11733.418376317835,47.48421788277516,13.74032933576941,14.465128562818856,10.14527310003678,9.133486884150116,0.5849830999517142,0.775709219858156,0.7105882352941176,0.6122222222222222,0.1084624553039332,0.7636511817440913,0.908695652173913,0.8846153846153846,0.76,0.146067415730337,0.5097770154373928,0.6841317365269461,0.6410537870472008,0.562962962962963,0.0983358547655068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021079087113381,0.0045136881396504,0.0065388676793111,0.0086694040165867,0.0111194758688044,0.0134371084239158,0.0156237252182426,0.0181523037499106,0.0204181790297019,0.0227067977067977,0.0247880508882897,0.0270006673168728,0.028740950970714,0.0305892288836476,0.0325306425653089,0.0344898866185027,0.036675398904501,0.0387899285202975,0.0409552412524551,0.0428773771584494,0.0572773677672578,0.0713545862584877,0.0846478164198514,0.0971096321063201,0.1091781327428963,0.1243389601049202,0.1364547856256167,0.1470096750502911,0.157900919469036,0.1679907368691904,0.1797564048719025,0.1911712199080335,0.2021341397089216,0.2123734114919399,0.2219593776819312,0.2305103136729519,0.2393118529096751,0.2476937269372693,0.2554403322063128,0.2629445576751322,0.2699788265512733,0.2752684147739234,0.2807409773235388,0.2860788307176231,0.2916459261597484,0.295642105781785,0.3002413435206142,0.3034230388046047,0.30722065557654,0.3105506581808119,0.3084182507461081,0.3062918229660469,0.3036563071297989,0.3012110726643598,0.2995595366978599,0.2958054358127732,0.2929962505339429,0.2941398060796645,0.2935598644898793,0.2936062565692195,0.294732112770976,0.2943499812390149,0.2942222780254044,0.2958190020994327,0.2972537901540087,0.2978137104531156,0.2989421740733388,0.3036341953301532,0.3078347777467151,0.3103448275862069,0.3164069577822069,0.3215669621529805,0.3243940824677369,0.3279496511980588,0.3301422065247699,0.3342274052478134,0.3358309605874419,0.334850583811597,0.3281417830290011,0.3318250377073906,0.0,1.941304780006944,53.69869579665402,154.6300122577402,212.07584357432492,fqhc3_80Compliance_baseline,63 -100000,95725,46786,445.4740141028989,5171,52.71350221990076,4141,42.663880908853486,1539,15.680334290937582,77.41699606751023,79.76845393669791,63.36600846061516,65.0997513722009,77.21707219881267,79.57403008493381,63.28960397913961,65.0282258908923,0.199923868697553,194.4238517640997,0.0764044814755493,71.5254813085977,221.86516,155.44932850919835,231773.47610342124,162391.56804303822,450.31211,298.3387145489922,469854.5207626012,311094.8724289405,442.23202,215.636236462778,458004.7218594933,222236.33632893217,2911.1428,1351.4454207025594,3004031.6113867853,1374773.625770467,973.19189,436.7666070252983,1003448.8482632542,443103.6819472368,1501.78956,640.0702597914492,1532996.249673544,638510.747864478,0.38011,100000,0,1008478,10535.158004700968,0,0.0,0,0.0,38639,403.0399582136328,0,0.0,40190,415.9519456777227,1237866,0,44389,0,0,8701,0,0,76,0.7834943849569078,0,0.0,1,0.0104465917994254,0,0.0,0.05171,0.1360395674936202,0.2976213498356217,0.01539,0.3531273268801191,0.6468726731198808,23.48700763062211,4.144006311640303,0.3158657329147549,0.2755373098285438,0.2006761651774933,0.2079207920792079,11.30562812039223,5.98892756748178,16.426626902295524,11679.66745485142,47.30821398848139,13.975405207032908,14.761075417370536,9.162336397749476,9.40939696632847,0.5749818884327457,0.8080631025416302,0.6697247706422018,0.5800240673886883,0.1173054587688734,0.7487844408427877,0.9149377593360996,0.8545454545454545,0.6983240223463687,0.1542553191489361,0.5012039903680771,0.7298937784522003,0.5926327193932828,0.5475460122699386,0.1069836552748885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048222553161312,0.0069478253813696,0.0090273053138232,0.0112046526761021,0.0133146033103279,0.0155542871121621,0.0176568448340971,0.0196519268698966,0.0216686275512813,0.0237843930932008,0.0258428696053779,0.0281470059110768,0.0302677651905252,0.0322906780010729,0.0344428484328658,0.0364131447621808,0.0385840083806125,0.0404406797276931,0.0424636412884944,0.0571061617015944,0.0707850707850707,0.0841507810778769,0.097054090722647,0.1090941692684161,0.1246906267848454,0.1369075402045232,0.1485778761815549,0.1584221885083014,0.1677426965810132,0.1794344417643004,0.1914870596381892,0.2021195652173913,0.2119785465389362,0.2216948482151686,0.2317232375979112,0.2411306412242669,0.2496740987143756,0.2574933115675872,0.2630573321281878,0.2697220135236664,0.2750987126469008,0.2796029307492318,0.2854732357622392,0.2897947797399573,0.2935471563426912,0.2974289783374559,0.3007455767105714,0.3044596358373286,0.3074511663439628,0.3049840762191435,0.3028481229840093,0.3012764641381055,0.2985565819861432,0.2960320403471038,0.2931929974641777,0.2900001576516214,0.2905911740216486,0.2911267725227137,0.2912034328067096,0.2916069734124695,0.2915865856050206,0.292094861660079,0.2927455975191051,0.292581206358285,0.2942499030882542,0.2952238637645201,0.2979040521658128,0.3023336454107285,0.3071347412138071,0.3131562415866463,0.3149069950222688,0.3177842565597668,0.3211618257261411,0.3273148148148148,0.3315147997678467,0.3370281605751947,0.337664894664304,0.3367916999201915,0.341930729550479,0.0,2.327433864036516,53.66509426477814,151.97954164466526,211.59683278370125,fqhc3_80Compliance_baseline,64 -100000,95686,46953,446.7738227117864,5314,54.23990970465898,4222,43.42328031268942,1570,15.968898271429468,77.3508434030137,79.74202051476753,63.31502979323547,65.08301572786,77.14841235948053,79.54588999719924,63.237184988169474,65.01084716309862,0.2024310435331671,196.1305175682924,0.0778448050659932,72.16856476138389,220.61204,154.56148705126407,230558.096273227,161529.67650774829,450.08457,298.11367753100257,469671.54024622205,310850.390580631,442.64412,215.08165788417045,458777.1983362247,221798.73175150584,2974.64454,1378.344410088718,3060980.1015822585,1392744.7857917745,994.31445,442.4236417958574,1025004.0653805154,448255.8192369922,1538.96342,662.7339968968419,1567001.7975461406,655271.4113553733,0.38105,100000,0,1002782,10479.913466964865,0,0.0,0,0.0,38642,403.1206237067073,0,0.0,40169,416.0587755784545,1240852,0,44493,0,0,8695,0,0,69,0.7002069268231507,0,0.0,1,0.0104508496540768,0,0.0,0.05314,0.1394567642041727,0.2954459917199849,0.0157,0.3482721382289417,0.6517278617710583,23.95031787726092,4.066992338502515,0.3095689246802463,0.2745144481288489,0.2046423495973472,0.2112742775935575,11.051052481782838,5.735966646821101,16.70021584460906,11766.804731841245,48.15583053193588,14.188798351199724,14.67192344638788,9.566049111394015,9.729059622954251,0.5776882993841781,0.808455565142364,0.6809487375669472,0.5914351851851852,0.1132286995515695,0.7510477787091366,0.9310344827586208,0.8757763975155279,0.7188940092165899,0.1368421052631579,0.5094090458897326,0.7266187050359713,0.617258883248731,0.5486862442040186,0.1068376068376068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380542358459,0.0045228219975459,0.0066288359439239,0.0088015285795593,0.0110989033347575,0.0133554736048572,0.0154648114333513,0.0177809097779684,0.0200243401069737,0.0222445259212224,0.0244897959183673,0.0265095880280605,0.0287283611565402,0.0308684587407399,0.0330151194592084,0.0350349419013356,0.0371621271614019,0.0390487954245855,0.0411396355163518,0.0430404553177738,0.0574072720055986,0.0719379260515817,0.0856042156533423,0.0985165702261967,0.110315216473964,0.126162538486769,0.1380210821311423,0.1500154424529005,0.160092360977487,0.1693603777634685,0.1809656242925977,0.1925945975207059,0.2035608179433882,0.2138588503130336,0.222994251987579,0.2319311515043973,0.2409822884327608,0.2495664316763891,0.2568075704045349,0.2637130801687763,0.2698164553297435,0.2752418202684029,0.2806549840637922,0.2854006717850288,0.2904111920070983,0.2947207571351111,0.2990995497748874,0.3028430475027973,0.3061681130928515,0.3108200786051542,0.3088510466446793,0.3067427314592068,0.3046804680468046,0.3025133743817503,0.2999703923019985,0.2971125083938709,0.2937260407957217,0.2941445787072616,0.2946042553191489,0.2944041524459613,0.2946508504923903,0.2955813040062843,0.2959951759128337,0.2975281796396556,0.2998544395924308,0.3006542708629651,0.301377193229504,0.3043896983441548,0.3081189766345421,0.3086082373609213,0.3096719330439064,0.3138147566718995,0.3180860295029131,0.3214957490030848,0.3248721524872152,0.3265546020923945,0.3307669082125604,0.3326748320821809,0.331456154465004,0.332703213610586,0.0,2.677569463876349,51.55372601693882,160.70802844878312,219.160792129644,fqhc3_80Compliance_baseline,65 -100000,95725,46560,442.75790023504834,5273,53.852180726038135,4175,43.05040480543223,1533,15.628101331940456,77.26691653433518,79.6260496826721,63.2951211478972,65.03863000215728,77.06277564983209,79.42617593385651,63.21750361672356,64.9652953784289,0.2041408845030901,199.87374881559103,0.0776175311736437,73.33462372837118,220.50094,154.37103947795853,230347.87150692084,161264.6774405417,446.96452,296.079942288808,466332.5045703839,308710.5695533311,433.23434,211.4670857998101,449483.2593366414,218476.25549109036,2901.06499,1369.2986150583413,2989306.9939932097,1389217.759646217,957.55947,432.076246820668,985685.6411595716,436879.0213947566,1490.7266,648.3343694262411,1520389.6996604858,644236.7313567012,0.38065,100000,0,1002277,10470.35779576913,0,0.0,0,0.0,38406,400.5850091407679,0,0.0,39375,408.2214677461478,1241793,0,44644,0,0,8722,0,0,76,0.7939409767563332,0,0.0,0,0.0,0,0.0,0.05273,0.1385262051753579,0.2907263417409444,0.01533,0.3566357181867832,0.6433642818132168,23.33754571320245,4.118390461308182,0.3223952095808383,0.2706586826347305,0.2071856287425149,0.1997604790419161,11.60991973515121,6.265012022147985,16.631364626431054,11747.505706039425,48.19960221712772,13.903992903652616,15.407839745153924,9.65552389924149,9.23224566907969,0.595688622754491,0.8132743362831858,0.7265973254086181,0.5745664739884393,0.1115107913669064,0.7567567567567568,0.9207708779443254,0.8847184986595175,0.7777777777777778,0.0880829015544041,0.5262255742200891,0.7375565610859729,0.6659815005138746,0.503125,0.1185647425897035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067131223919,0.0041367143537904,0.0064841498559077,0.0088276226369094,0.0111974452332038,0.0131550813028825,0.0153218818492277,0.0173334286093445,0.0196783987405824,0.0220070422535211,0.0241202218281344,0.0264260194653196,0.0284536124879172,0.0304977906868955,0.0327452800990405,0.0347105216914918,0.0365338414381575,0.0385940158525957,0.040715562762463,0.0427915021307188,0.0573672065073249,0.0711212987094545,0.084505120886501,0.0975673912586014,0.109502758933564,0.1244192814434626,0.136139717592101,0.1466976258693962,0.1569424245016682,0.1671104049469661,0.1799764962102834,0.1913240425670257,0.2030691818419447,0.2121172295965304,0.2214360500358186,0.231157787226484,0.2406200024603272,0.2498957781708787,0.2568526996171803,0.2635349679608423,0.2693260195343239,0.2745871420044241,0.2807486947565321,0.286121969351783,0.2911050885359065,0.2964040842499876,0.300503658414353,0.3041008660213958,0.3078020253886749,0.3106134758339726,0.3076008699058502,0.3054761806159495,0.3038865264258367,0.3018684960849869,0.2996488199755959,0.2967048139170987,0.2931515978547174,0.2936434822662367,0.2940431575885141,0.2941197491378848,0.2948153422398771,0.2962084371169889,0.2969009001447785,0.2998323085522638,0.3015544540160739,0.3031148181936661,0.3038404473864414,0.3079371081072565,0.3112383780535228,0.3160277210271201,0.3193808389814984,0.3226495726495726,0.3267095634620237,0.330974663318877,0.3340853543899229,0.3394082840236686,0.3441024078024992,0.3501006036217304,0.3504390779363337,0.3500959692898273,0.0,2.061764976331673,55.1585693990634,157.95254262925445,210.52954129520367,fqhc3_80Compliance_baseline,66 -100000,95696,46697,444.4595385387059,5386,55.05977261327537,4266,43.930780805885306,1580,16.082176893496072,77.288290147924,79.65809048976597,63.294707477804174,65.04398995805926,77.08024883834396,79.4545591965626,63.21626756208198,64.97012667882943,0.2080413095800395,203.53129320336905,0.0784399157221926,73.86327922982616,220.06468,154.14439700529292,229962.25547567295,161077.15788046826,449.72636,297.4866357779503,469310.69219194114,310223.87119414634,437.33308,213.00154336489956,452971.0855208159,219402.1211003192,3000.27495,1400.6656859768188,3089792.258819595,1418239.35794267,974.12143,444.2727327052457,999215.7979434876,445536.75462427415,1540.8626,662.8637491623922,1569257.9209162348,658068.5652165099,0.38045,100000,0,1000294,10452.82979434877,0,0.0,0,0.0,38617,402.8695034275205,0,0.0,39748,411.3756060859389,1241940,0,44645,0,0,8535,0,0,68,0.7105835144624645,0,0.0,4,0.0417990302624979,0,0.0,0.05386,0.1415691943750821,0.2933531377645748,0.0158,0.3583362957696409,0.641663704230359,23.730648989271803,4.088995093554338,0.3293483356774496,0.263947491795593,0.1999531176746366,0.2067510548523206,11.4727309014721,6.258059307282323,17.153098694375455,11757.547711784362,48.99447119817149,13.797372078913511,15.977496910577498,9.473373837981557,9.746228370698915,0.5761837787154243,0.8010657193605684,0.696085409252669,0.5638921453692849,0.1099773242630385,0.7523659305993691,0.9136842105263158,0.8759894459102903,0.7511961722488039,0.1512195121951219,0.5016677785190127,0.7188940092165899,0.6296296296296297,0.5031055900621118,0.0974889217134416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509059236978,0.0046329619529404,0.0068291593944067,0.0089701131676791,0.0111565373037181,0.0133592644258672,0.0154054770498154,0.0176389526871841,0.0198714082736202,0.0218901908611779,0.024145776538832,0.0261953152265402,0.02837696119759,0.0303701262589853,0.0324700106239234,0.0345903824888126,0.0365910479286816,0.0384292074429996,0.0403478297049064,0.0425139402782844,0.0567346256684491,0.070518391322102,0.0837120456763819,0.0967670644692808,0.1098877898937012,0.1258060076021472,0.1377146315823006,0.1492995259148777,0.1598678371702612,0.1701922044453989,0.1820583604718873,0.1929777045912508,0.2037137878457852,0.212767820974611,0.222147577092511,0.231399915681097,0.2407759391771019,0.2491346750098652,0.2569446024343078,0.2639737289303265,0.2705301123777935,0.27658776218447,0.2826419615425677,0.2872741687487988,0.291685945985437,0.295670434191835,0.2994075859125938,0.3039852069119428,0.3073817313184815,0.3107425336613496,0.3079132228619197,0.3049496759961395,0.3022726951706993,0.2999579971901568,0.2986057319907049,0.2953726284145462,0.2923018413463062,0.291543513957307,0.2921916941647147,0.2938549481957842,0.295856213805124,0.2973703952303865,0.2976317607889943,0.2992115461713217,0.2999139209028741,0.3005593246672536,0.3015531118920757,0.3058790383170548,0.3089109603413303,0.3124604179860671,0.3154447880662179,0.3197289714678947,0.3234834759792591,0.3264659270998415,0.3261913557443665,0.3318181818181818,0.3340339288395136,0.3334655822257488,0.3407091442282058,0.3454545454545454,0.0,2.559306633901269,55.11090657044312,158.86751538481298,218.437241397666,fqhc3_80Compliance_baseline,67 -100000,95837,46923,445.3081795131317,5253,53.66403372392708,4156,42.85401254212882,1568,16.00634410509511,77.36488025655099,79.67841223910293,63.35773544642036,65.07064059088505,77.16619371168896,79.48288988042187,63.28237565425378,64.99888204766775,0.1986865448620278,195.5223586810604,0.0753597921665729,71.75854321729958,222.0757,155.50656898782813,231722.06976428727,162261.28633808254,448.11785,296.93531973586545,467065.5487963939,309315.9006812249,438.40765,213.82452281985132,454340.3069795591,220787.4345217152,2929.94934,1372.5405353917065,3021110.1140478104,1396506.4309478814,962.152,435.2715642072664,990894.2788275926,441127.0325732917,1537.36074,659.2536234138812,1570732.4102382169,659252.5222144459,0.38065,100000,0,1009435,10532.821352922148,0,0.0,0,0.0,38368,399.814267975834,0,0.0,39846,412.7424689837954,1242009,0,44560,0,0,8708,0,0,79,0.8138819036489039,0,0.0,2,0.0208687667602283,0,0.0,0.05253,0.1380007881255746,0.2984960974681134,0.01568,0.3558304529743496,0.6441695470256503,23.554418659391185,4.195422183931793,0.316410009624639,0.2663618864292589,0.2038017324350337,0.2134263715110683,11.268710016173902,5.899418744168099,16.83250851244371,11746.574989950195,48.04551883025955,13.708783724469257,15.190157436567429,9.458491718536871,9.688085950685998,0.5878248315688162,0.8048780487804879,0.714828897338403,0.5974025974025974,0.1195039458850056,0.7409783480352847,0.9057815845824412,0.8544474393530997,0.7475728155339806,0.1477832512315271,0.5221725678927467,0.73125,0.659957627118644,0.5491419656786272,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.0043594630763615,0.0065752090267067,0.0090399382440173,0.0112567494737698,0.0135930436199242,0.0159024648820567,0.0179369908324315,0.0198417566241413,0.0220379753313885,0.024125773787562,0.0261999322680951,0.0284997790316447,0.0310624852046645,0.0332951933285916,0.0354506694746404,0.037629681730262,0.0398499668435013,0.0414416846652267,0.0435008791734728,0.0588382547745454,0.0726223699476341,0.0862646917097902,0.099275438412265,0.1107787899531357,0.1266090115204697,0.1386999724570435,0.1498336362959892,0.1603584382334115,0.1698638647001489,0.1819140238392357,0.1928349044365649,0.2030377436387736,0.2126997302344885,0.2213576868550328,0.2307037237748703,0.2396114168579131,0.247473159336957,0.2558913789393819,0.2621475773443395,0.2680586190569676,0.2740549627588783,0.280155963844745,0.2857382048675477,0.291206990715456,0.2959015384615384,0.2998425629748101,0.3030830180054346,0.3063547224411229,0.3097637339507472,0.3072750221553831,0.3049172226340499,0.3026965438663122,0.3004558700481837,0.2984901794860375,0.2952316847435328,0.2917115007278941,0.2926088811578982,0.2920155860136035,0.2930726655954294,0.2936616678240958,0.2947510094212651,0.2953045445973977,0.2966232373119986,0.2972850028730128,0.2979198587269847,0.2970126008778139,0.2995181175292571,0.3055244755244755,0.3104624415007535,0.312685172523816,0.3163134916409328,0.3210759493670886,0.3216879443467624,0.3255220636870453,0.3302165936797254,0.3335375191424196,0.3357723577235772,0.339917695473251,0.3408742331288343,0.0,1.9809812949072505,54.69934957604752,157.80758260813127,210.9668702842545,fqhc3_80Compliance_baseline,68 -100000,95645,46667,445.07292592398977,5153,52.83078049035496,4102,42.38590621569345,1571,16.143028908986356,77.2563444549925,79.66678565219519,63.27473565930678,65.05576777826519,77.05874081763794,79.46999940769402,63.2019220815847,64.98528292199433,0.1976036373545611,196.786244501169,0.0728135777220799,70.4848562708662,220.89254,154.77786801431816,230950.2012650949,161825.15262298938,444.14985,293.67169587141274,463886.1519159391,306557.11463605275,431.25286,210.3276281289456,447460.14951121336,217257.9933122636,2871.0685,1327.389499479012,2969302.535417429,1355439.2444205575,951.50648,430.61884345510384,982203.9730252496,437686.16635758313,1528.32592,638.1421081386627,1571567.023890428,644702.2993025527,0.37897,100000,0,1004057,10497.736421140677,0,0.0,0,0.0,38168,398.5362538554028,0,0.0,39178,406.2000104553296,1241406,0,44577,0,0,8672,0,0,68,0.7109624130900727,0,0.0,0,0.0,0,0.0,0.05153,0.1359738237855239,0.3048709489617698,0.01571,0.3545809329120981,0.6454190670879019,23.92086640775763,4.132183191972149,0.311311555338859,0.2749878108239883,0.2113603120429059,0.2023403217942467,11.423259774700272,6.198932912219584,16.761048046680397,11741.950304186046,46.81576139426736,13.803121154486105,14.321495311986498,9.663813288631143,9.027331639163611,0.576060458313018,0.7969858156028369,0.6664056382145653,0.5986159169550173,0.1132530120481927,0.7781569965870307,0.9192139737991266,0.8840579710144928,0.7644230769230769,0.1677018633540372,0.495221843003413,0.7134328358208956,0.5858369098712446,0.5462822458270106,0.1001494768310911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281865599837,0.0044089476298105,0.0065253351464902,0.0087165889488281,0.0110387628446434,0.0131923433472897,0.0153113269136608,0.0172360946503739,0.0196489577153611,0.0216977072960845,0.0238569200459694,0.0259385244638104,0.0279096103361301,0.0299615428235609,0.0319301688962347,0.0339503937252304,0.0361785499554247,0.0382581777763927,0.040124034879607,0.0420873664886515,0.0571562940899827,0.0713836741535367,0.0849719174846464,0.0979874107913517,0.1102259177579166,0.1249563515157928,0.1365942182790678,0.1485800083059131,0.1588662184838023,0.1687161988153489,0.1815104671970334,0.1929389333651106,0.2037966825315573,0.2137730783980715,0.2228715720759959,0.2324714238153368,0.2412921693819816,0.2487887869842486,0.2566753777979775,0.2631295294009724,0.2693301806970571,0.2745010722698136,0.2803751615542407,0.2861411087113031,0.2907991287099797,0.2954696950993704,0.2996077743386674,0.3033448820502369,0.3065835353286583,0.3104727455147922,0.308429351121892,0.3062040073863793,0.3032608695652174,0.3012093562169599,0.2997228513529622,0.2958255202729704,0.2931521635607479,0.2935086737548965,0.293537035447601,0.2941113202473783,0.2949509010873246,0.2956501050795035,0.2966368560272074,0.2977649764440574,0.2989121298720011,0.3003458228243064,0.3013776613913241,0.3056035159315649,0.3087768277787471,0.3121722329561137,0.3147419369430497,0.3176538908246225,0.3209760381382511,0.3242611580217129,0.3315552285477789,0.3306470450829245,0.3309417040358744,0.331547619047619,0.333243751679656,0.333843797856049,0.0,1.91108278715812,51.20095921728952,153.4632834814295,215.45451641799943,fqhc3_80Compliance_baseline,69 -100000,95693,46943,446.97104281399896,5220,53.504436061153896,4095,42.20789399433605,1577,16.10358124418714,77.32722884548278,79.70471003205209,63.32110870231941,65.07619288181027,77.1270972043728,79.5076655569147,63.24600596925072,65.00472293556587,0.2001316411099765,197.04447513738896,0.0751027330686966,71.46994624440595,220.2959,154.33075853613158,230211.09172039756,161276.9570774577,449.71829,298.17867961541043,469365.1259757767,311004.9424883852,433.92174,211.5960848099484,450083.87238356,218479.68151845067,2924.79052,1358.4686899674398,3018979.350631708,1382159.6981675152,973.24922,438.2739986596582,1004299.5725915168,445245.9100035096,1540.44208,651.7840984546341,1575600.6395452125,652693.7563400986,0.38055,100000,0,1001345,10464.14053274534,0,0.0,0,0.0,38780,404.6481978828128,0,0.0,39390,408.21167692516696,1241588,0,44577,0,0,8786,0,0,58,0.606104939755259,0,0.0,0,0.0,0,0.0,0.0522,0.1371698856917619,0.3021072796934866,0.01577,0.3514851485148514,0.6485148514851485,23.73483910828483,4.206482319418026,0.3162393162393162,0.252991452991453,0.2173382173382173,0.2134310134310134,11.409238954650403,6.110461746056293,16.739016112267095,11749.688809887482,46.8869263746888,12.57904222415246,14.730455711433024,10.031649604735732,9.545778834367574,0.5687423687423687,0.7847490347490348,0.6725868725868726,0.6033707865168539,0.1235697940503432,0.7288851351351351,0.914004914004914,0.8310249307479224,0.7192982456140351,0.1436170212765957,0.5036070079010649,0.7011128775834659,0.6113490364025695,0.5634441087613293,0.1180758017492711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0045606105137274,0.0067566196611545,0.0086738373096884,0.0107686519356118,0.0130023520307902,0.0151938490404421,0.0169946789496798,0.019327920152169,0.0214027506118728,0.0238437083376064,0.0259128023417038,0.0279774945742175,0.0298196805770221,0.0318176188903566,0.0340862083229916,0.0360743035338727,0.0384140200791121,0.0406811042459797,0.0425795826471262,0.0572923738993283,0.0712738233539514,0.0847318956113115,0.0977434117090105,0.1097353905862749,0.1250846238470001,0.1369371663854488,0.1491396200698526,0.1604414624244108,0.1690231500354009,0.1811278074002262,0.1928405966530276,0.2040028280850601,0.2130740542254984,0.2227443815896634,0.2316274637978218,0.2406388464156966,0.2497637688984881,0.2569593390755683,0.2643413516609393,0.2697236660839768,0.2766505183832994,0.2819065203754335,0.2866317593069651,0.2909594566683271,0.2951763415145277,0.2986694371080597,0.3020287125184544,0.3048044548044548,0.3090047768599404,0.3063729452977634,0.3044961282957624,0.3028459577823779,0.3010187884210222,0.2998500304393662,0.2965448555887535,0.2937547456340167,0.2942793109653356,0.2946031962149191,0.2959152852548727,0.2967348537117497,0.2980619773733399,0.299213419850195,0.3000178157847853,0.3016310865915088,0.3015786325453174,0.3026667424802411,0.3057278937143573,0.310016397446185,0.3122304435563645,0.3165536388876246,0.3213755041392486,0.3218282409153779,0.324643646619407,0.3270790118800679,0.3310059171597633,0.3323655256723716,0.3364976772369218,0.3469780219780219,0.3463451970914658,0.0,2.270968337469862,51.500598301329255,152.79911168419872,214.34822154604333,fqhc3_80Compliance_baseline,70 -100000,95777,46732,444.3655574929263,5139,52.50738695093811,4088,42.08734873717072,1573,15.98504860248285,77.38146625236273,79.70539810158913,63.35451413110488,65.0681155885219,77.18423831395529,79.51414619563563,63.27926534014882,64.99843902393854,0.1972279384074369,191.25190595349292,0.0752487909560599,69.6765645833608,222.00508,155.46136985293376,231793.72918341565,162315.97341003973,448.01319,296.6692600730672,467155.00589911983,309138.5557198316,430.60784,209.7909092299816,446799.5447758857,216797.48056705465,2878.69058,1331.5919286557685,2959925.2847760944,1344821.4722117826,938.47932,419.7101876371776,962513.1294569676,421003.3774350583,1536.14318,656.0960311590218,1561053.6558881567,647450.0836237691,0.37919,100000,0,1009114,10536.078599246166,0,0.0,0,0.0,38471,401.0357392693444,0,0.0,39034,404.6587385280391,1238460,0,44428,0,0,8805,0,0,79,0.8248326842561367,0,0.0,2,0.0208818401077502,0,0.0,0.05139,0.1355257258893958,0.3060906791204514,0.01573,0.3436687708874861,0.656331229112514,23.895074735007487,4.090507090344564,0.3131115459882583,0.273972602739726,0.2013209393346379,0.2115949119373777,11.241909632338915,6.014602247401404,16.805704215792307,11671.796309346544,46.398769147596845,13.544641420928002,14.44454241803569,8.950201245534968,9.459384063098176,0.5807240704500979,0.8098214285714286,0.70390625,0.5771567436208992,0.1052023121387283,0.7457627118644068,0.925925925925926,0.8575498575498576,0.7311827956989247,0.0978260869565217,0.5137551581843192,0.7291981845688351,0.6458557588805167,0.5321821036106751,0.1071953010279001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363627159143,0.0043272933641412,0.0068775930453129,0.0092513607929157,0.0117034581634416,0.0137935948856811,0.0160836594911937,0.0180920213471566,0.0200756027789129,0.0226205457168288,0.0246283718023583,0.026532057003909,0.0286515872444942,0.0307288449660284,0.0325487406307671,0.0346804093899428,0.0366648729199437,0.0388591098070522,0.0407243109592029,0.042701847185489,0.0570769584003005,0.0718807881876497,0.08609368772158,0.0990117746005046,0.1107631970142644,0.1257946119755032,0.1379109164005897,0.1481796891632957,0.1577654347361675,0.1671223183557942,0.1790562726754013,0.1913980122638346,0.202548989756193,0.2119103876783057,0.2208015141178283,0.2298111869515114,0.2394565872608336,0.2474628141947388,0.2539082456319607,0.2605068020583819,0.2671274908240416,0.2727762298344611,0.2786768797281779,0.283709783715775,0.2880909300659389,0.2917328604327533,0.2963481565754435,0.300341904241392,0.3033550792171481,0.3064363090060884,0.3042215649368109,0.3008034058916432,0.3000379741494494,0.2987984518514239,0.2968281310326394,0.293927806668706,0.2913016714806572,0.2908169106222912,0.2915305010893246,0.2916341030195382,0.2919742041303213,0.2933411903358868,0.2940171296392773,0.2952374590875693,0.2969026337173175,0.2977296849517202,0.2997767920210211,0.303171786970461,0.3077163712200209,0.3119020433875349,0.3164522681110359,0.3197271773347324,0.3206168328482071,0.3227040816326531,0.3238397609487347,0.3274221961244862,0.3321783669780054,0.3370540163444289,0.3328826392644672,0.3354814253222138,0.0,2.2779323579391795,51.28211511863896,145.66685305660016,218.36370065751896,fqhc3_80Compliance_baseline,71 -100000,95760,47132,448.3709273182957,5260,53.7280701754386,4158,42.87802840434419,1532,15.6328320802005,77.31912755708531,79.6698116404072,63.32066847763053,65.0586832028075,77.11818697291734,79.47056345321609,63.244780286107314,64.98589715772552,0.2009405841679665,199.2481871911167,0.0758881915232194,72.78604508198327,220.32098,154.4655165261885,230076.2113617377,161304.84181932802,452.02674,299.2349539766758,471520.95864661655,311963.955698283,441.75248,215.3376336849104,457972.9845446951,222271.40937653463,2905.50715,1353.8643572502,2996727.7986633247,1376382.359283834,962.1426,439.8123295797497,989548.0785296574,444090.40265220153,1486.98736,639.6831140433096,1518707.497911445,639383.2654405333,0.38315,100000,0,1001459,10458.009607351712,0,0.0,0,0.0,38811,404.7410192147034,0,0.0,40145,415.90434419381785,1240977,0,44554,0,0,8724,0,0,87,0.898078529657477,0,0.0,1,0.0104427736006683,0,0.0,0.0526,0.1372830484144591,0.291254752851711,0.01532,0.3573508005822416,0.6426491994177583,23.4350201484076,4.136841547684656,0.316017316017316,0.2722462722462722,0.2147667147667147,0.1969696969696969,11.679350399951025,6.396286695439894,16.544239130076445,11805.503382953946,47.65136230335767,13.809382255729233,14.94728339071564,9.794250260563604,9.100446396349192,0.5848965848965849,0.8012367491166078,0.700152207001522,0.5643896976483762,0.1233211233211233,0.7611697806661251,0.9326315789473684,0.859375,0.702020202020202,0.1436781609195402,0.5107618722241203,0.7062404870624048,0.6344086021505376,0.5251798561151079,0.117829457364341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369644249562,0.0048034536223512,0.0071831500344953,0.009415182108107,0.0116240046373981,0.0135753057753607,0.0161203160846291,0.0183494669770861,0.0205721764381096,0.0227577522752633,0.0248738875446007,0.026932949994866,0.029053324420219,0.0312245675845515,0.0330585334145007,0.0353042094275467,0.036978756884343,0.0391361623118653,0.0410341136984735,0.0430054889543906,0.0576304801670146,0.0711446325083164,0.0843813259772815,0.0972480730201793,0.1092580488730523,0.1254150189269778,0.1375173686611016,0.1488571550183025,0.1591401753393061,0.1692020712057376,0.1822645776126635,0.1936517212644611,0.2049357740289968,0.2151940256076626,0.2243418374643827,0.2342623658771551,0.2428909423686442,0.25043313907702,0.2581223544898491,0.2652582159624413,0.2719864805426302,0.2771601759970043,0.2824274718768502,0.2872705458908218,0.2925557136083452,0.2970275039176733,0.3013125594910075,0.3039680114099429,0.3066982917282319,0.3099069368358524,0.3077979797979798,0.3054531447752159,0.3043251546711388,0.3021244594848656,0.2994548344449561,0.2961579100500742,0.2923871049464817,0.2929418908052579,0.293492355992356,0.2945712908581323,0.2948823617563315,0.2964468206838045,0.2975180647188187,0.2994030718325918,0.3012077120699176,0.3032921275211451,0.3033921919872615,0.3073283829933891,0.310754043268221,0.3131822660098522,0.3169243287225387,0.3178888419273035,0.3199172465676133,0.3236142748671222,0.325836378971043,0.3301698886936145,0.3362121212121212,0.3364805142627561,0.3358778625954198,0.3368540173519426,0.0,2.1235706082324364,53.6987499084463,150.84839056296786,218.9241585545268,fqhc3_80Compliance_baseline,72 -100000,95679,46908,447.02599316464426,5201,53.04194232799256,4137,42.63213453317865,1586,16.147744019063744,77.34181859432726,79.72448898968304,63.3271521787835,65.0854808954605,77.13995027091714,79.52602960803347,63.25101421252628,65.01326782632539,0.2018683234101246,198.45938164957036,0.076137966257221,72.21306913511683,222.78762,156.0733453724494,232849.02643213244,163121.84008241037,453.62759,300.02113998929224,473515.3168406861,312971.78063032875,439.23993,214.19550080160792,455210.9971885158,220873.31700901885,2944.73117,1356.8143569617598,3034872.490306128,1375243.0909204308,983.25205,440.75631915246936,1013596.0973672384,446600.48615941766,1553.794,657.9817447612609,1583329.1526876325,654284.964630479,0.38049,100000,0,1012671,10584.04665600602,0,0.0,0,0.0,38867,405.60624588467687,0,0.0,39784,411.9921821925397,1231645,0,44180,0,0,8762,0,0,85,0.8779355971529803,0,0.0,1,0.0104516142518211,0,0.0,0.05201,0.1366921601093327,0.3049413574312632,0.01586,0.3448085419734904,0.6551914580265096,23.712524278842817,4.16008287563584,0.2990089436789944,0.2772540488276528,0.2025622431713802,0.2211747643219724,11.446027826874042,6.168730873698708,16.904715053626237,11710.626085350605,47.00461535291791,14.028201963033355,13.899838842479278,9.13228991363943,9.94428463376585,0.5690113608895335,0.7942458587619878,0.692805173807599,0.5596658711217184,0.1278688524590163,0.7433554817275747,0.8972746331236897,0.8260869565217391,0.7715736040609137,0.1621621621621621,0.4974428912376406,0.7208955223880597,0.6412556053811659,0.4945397815912636,0.1191780821917808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607345748397,0.0047437079984187,0.0070208901920599,0.0091507383559139,0.0114491397893195,0.0135314001791968,0.0155948995504999,0.0177209762869654,0.0196854015269984,0.0218550706834955,0.0236649987695841,0.025757684684037,0.0280238264251103,0.0301503395262089,0.0322647234894618,0.0343094156952388,0.0360203521207034,0.0382494938483102,0.0401556290701787,0.0422947811763724,0.056944371898668,0.071348544024795,0.0846383139510474,0.0970579569847215,0.1097397596970368,0.1259334475682765,0.1375973516117395,0.1493501655188563,0.1604504321627367,0.1691368881643859,0.1818602797850458,0.193586068898383,0.2041957129340627,0.213266722782776,0.2217529039070749,0.2314004739861348,0.2401062476284011,0.2483774815814633,0.2559802097045073,0.2619729277845216,0.2677522320395984,0.274153756211634,0.2794289836903171,0.285069065903128,0.2899868855644064,0.2939683634750899,0.2975981986489867,0.3011588414129978,0.3052609770940968,0.3079002901609074,0.3062421787747083,0.3043149545685732,0.3016217129342868,0.3000245377520532,0.2972046648268495,0.2938511227785516,0.2907232132981497,0.2906544352526825,0.2910734077926507,0.2923534228044569,0.2929999254120982,0.2931523022432113,0.2949346234854962,0.2965882772136112,0.2978331138513109,0.3003328652415873,0.3021451910782781,0.3062260956799799,0.3094060274357085,0.3123069612734616,0.3162699854651162,0.3175165125495376,0.3226890756302521,0.3257986738999397,0.3282711362163163,0.3282667609284788,0.3307528840315725,0.3377298161470823,0.3408528198074277,0.3431635388739946,0.0,2.400455119655516,52.290556448143455,148.03901546174802,218.59574388241347,fqhc3_80Compliance_baseline,73 -100000,95675,47183,448.8737914815783,5269,53.984844525738175,4152,42.7697935719885,1626,16.65011758557617,77.38307130315455,79.76034735257906,63.34642469116329,65.0978062767598,77.17754169808728,79.55620091600707,63.26897556037101,65.02314129536039,0.2055296050672694,204.14643657198891,0.0774491307922815,74.66498139940825,221.5906,155.21319041204384,231607.629997387,162229.62154381382,450.77471,298.7217269623419,470526.3862032924,311599.9261594349,438.47978,214.54917381009471,454153.488372093,221087.5053782831,2922.61354,1369.3837115141505,3014699.8484452576,1391268.135987895,977.84026,446.9873888532516,1005159.9895479488,450426.5132372399,1579.44748,678.4374516010447,1618784.1337862555,682112.2501815225,0.38315,100000,0,1007230,10527.619545335772,0,0.0,0,0.0,38662,403.4282727985368,0,0.0,39806,411.88398223151296,1237700,0,44479,0,0,8829,0,0,78,0.8152599947739744,0,0.0,0,0.0,0,0.0,0.05269,0.1375179433642176,0.3085974568229265,0.01626,0.3558148013124316,0.6441851986875684,23.49326739812044,4.077681193332624,0.3184007707129094,0.2719171483622351,0.1972543352601156,0.2124277456647398,11.080811246234788,6.030323608864798,17.581980995797608,11766.434853217565,47.6365165266926,13.8000031233106,15.155779503257946,9.00845454405791,9.672279356066149,0.5857418111753372,0.8104517271922055,0.6906202723146747,0.5995115995115995,0.1281179138321995,0.7434052757793765,0.9210526315789472,0.8402061855670103,0.7438423645320197,0.1617647058823529,0.5177524991382282,0.7355126300148589,0.6284796573875803,0.551948051948052,0.1179941002949852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182126479252,0.0045792555670374,0.0067747791604547,0.0089971160485803,0.0113568196837984,0.0136608406201329,0.0158514954433321,0.0180056956792454,0.0202489982827704,0.0223682728826919,0.0244014968985492,0.0266476350865663,0.0286945521490059,0.0308601917946499,0.0331569228229808,0.0352015874820426,0.0371490728271003,0.0392850841230136,0.0413065859669921,0.0434275113857826,0.0586668338086433,0.0722032620757521,0.0846508114686165,0.0974807057388598,0.1093656098769597,0.1245890200970494,0.137295016801467,0.1482336176276666,0.1589167964832163,0.1690862144701458,0.1806278779532641,0.1925247588980668,0.2035801234675245,0.2129359432549701,0.2218018236012274,0.2319691564556513,0.2402506030554811,0.247882787512951,0.2552256599489071,0.2626025388387333,0.2694159029899102,0.2761288359354884,0.2807125598142796,0.2855891738848765,0.2903759179108107,0.2945268845057913,0.2983760908487649,0.3028910417170573,0.3075358262717355,0.3116385911179173,0.3091662629850907,0.3061653721905286,0.3041661390401418,0.3015329984410185,0.2992360750574798,0.2961160591313929,0.2937204484716226,0.2927888792354474,0.2933000956153531,0.2949042541810791,0.2959615348776533,0.2969741001826143,0.2980955354355292,0.2996780282002886,0.3021327296556654,0.3030592487414483,0.3042939253916376,0.3082017162044522,0.3122565386755704,0.3154740923510751,0.3205948625506985,0.3248980445466903,0.3287467460022313,0.3282442748091603,0.3318298969072165,0.3342602247711737,0.3340273646638905,0.3364413364413364,0.3469981486379265,0.3538236370289059,0.0,2.396406451600692,54.35922329873485,151.43011673646035,213.63777856440515,fqhc3_80Compliance_baseline,74 -100000,95698,47098,448.91220297184896,5404,55.2153650024034,4291,44.306046103366846,1641,16.813308533093693,77.3960056150407,79.77970659198222,63.35197710932333,65.11294052303347,77.18391559630037,79.570394376394,63.27161684840104,65.03622120077073,0.2120900187403407,209.3122155882128,0.0803602609222906,76.71932226274691,221.45398,155.13789844597514,231408.74417438192,162111.52862119905,450.05743,296.820060327605,469711.8330581621,309587.1883713192,440.44435,214.00436715412195,456651.48696942464,220894.46834688785,3044.17638,1410.9309903057956,3141969.518694225,1435407.2772187763,1019.05738,458.45578824470624,1050507.628163598,464750.074549244,1603.26482,686.5531905110662,1643169.637818972,689011.1588680631,0.38266,100000,0,1006609,10518.579280653725,0,0.0,0,0.0,38653,403.3313130890928,0,0.0,39958,414.0211916654476,1244391,0,44602,0,0,8819,0,0,70,0.7314677422725658,0,0.0,0,0.0,0,0.0,0.05404,0.1412219725082318,0.3036639526276832,0.01641,0.3483026874115983,0.6516973125884017,23.72357907551097,4.196251752285915,0.3057562339780937,0.2726637147518061,0.2055464926590538,0.2160335586110463,11.274902246002345,5.989919772814849,17.606504480981748,11777.556064064083,49.07007861085895,14.212058619862358,15.012730361397628,9.735246984841131,10.110042644757836,0.576089489629457,0.7965811965811965,0.7103658536585366,0.5668934240362812,0.116504854368932,0.736053288925895,0.9128540305010894,0.838150289017341,0.7715736040609137,0.1155778894472361,0.513915857605178,0.7215189873417721,0.6645962732919255,0.5080291970802919,0.1167582417582417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0045425969864736,0.0067802115263595,0.0089509779019558,0.0112811018656033,0.0136643180059463,0.0160282227229625,0.0184687949851453,0.0208243881494203,0.0228459129153104,0.0247283165880664,0.02681807447868,0.0286422444823827,0.0306853999711584,0.0325632744869427,0.0344332113543798,0.0364519671010379,0.038396860986547,0.0403544535507758,0.0422438322754135,0.0564468956296482,0.070694490957803,0.083993245298455,0.0970570608459767,0.1090297689323663,0.1245399551588476,0.1361866465788887,0.1471170634075714,0.1576181014037561,0.1674317830787712,0.1801869722557298,0.1917855636202364,0.202738535101065,0.2129889718339108,0.2218044286122655,0.2314836338679861,0.2403006546152044,0.2485453687686743,0.2565020389669234,0.2642486454356325,0.2711613945970907,0.2772966032450099,0.2829188218899832,0.2869922977563029,0.2923867464915045,0.2964005259729886,0.301703496782561,0.3054935861684328,0.3086567857281065,0.3124884950166987,0.3095404179969415,0.3071893633061476,0.3046788307839254,0.3027093241101023,0.300749540795165,0.2973616709417369,0.2941399343268502,0.2948107418135401,0.2952223660014983,0.2968488814596152,0.29827377064477,0.2985455974842767,0.2989658544705466,0.2989757006030507,0.30054931932171,0.3021739130434782,0.3049713463004262,0.3082375718211341,0.311451978385916,0.3157457908465734,0.3166075811289883,0.3196235990695707,0.3210968875502008,0.3229324447137231,0.3224746526473901,0.3249376262326244,0.3298293723339427,0.3360307505563423,0.3433982981059566,0.3478428351309707,0.0,1.9807779166610069,52.54957100027302,167.34794938497942,221.76520287032545,fqhc3_80Compliance_baseline,75 -100000,95831,46796,443.79167492773735,5326,54.56480679529589,4205,43.37844747524287,1645,16.82127912679613,77.38566316619061,79.70631173153853,63.36611244363343,65.08422387578123,77.17109618217941,79.49337101410954,63.28600386208145,65.00681534448002,0.2145669840111992,212.94071742899237,0.0801085815519755,77.4085313012165,220.57794,154.54451317915846,230173.43030960756,161267.3072170368,452.83439,299.02786716769606,472034.2895305277,311536.6188057058,437.39114,212.95807971722388,453738.0701443166,220104.73846219893,2962.6558,1375.9246689624963,3058601.225073306,1402841.4698401298,968.03853,434.3164588905182,999352.5685842786,442478.15535845206,1593.0749,678.7699030296203,1631238.3049326418,682704.5735949605,0.37913,100000,0,1002627,10462.428650436706,0,0.0,0,0.0,38889,405.26551950830105,0,0.0,39668,411.2134904154188,1247392,0,44771,0,0,8746,0,0,76,0.7930627876156985,0,0.0,0,0.0,0,0.0,0.05326,0.1404795188985308,0.3088621855050695,0.01645,0.3545881502890173,0.6454118497109826,23.591866276826693,4.167365201837415,0.3110582639714625,0.2665873959571938,0.2149821640903686,0.207372175980975,11.577845457794492,6.357561902939263,17.688602146858127,11736.603364634908,48.25154180546581,13.744098346076694,14.922334829707657,10.072940738001147,9.512167891680312,0.5824019024970274,0.8117752007136485,0.7025993883792049,0.584070796460177,0.1055045871559633,0.7538337368845843,0.9323144104803494,0.8699186991869918,0.7112068965517241,0.1166666666666666,0.5107889413351315,0.7285067873303167,0.6368477103301384,0.5401785714285714,0.1026011560693641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219531463644,0.0045619050515495,0.0066781013082177,0.0090220063804279,0.0111680703039179,0.0132980348233377,0.0155439358264787,0.0175936320032656,0.0197763787253178,0.0220125464351136,0.0242677652749595,0.0263373978733013,0.0283353374649276,0.0305410301807551,0.0327916185447945,0.0350465841717107,0.0373524268730534,0.0395621935925208,0.0417929974664617,0.0435574331706606,0.0586621606116552,0.0724925521350546,0.0861727437560919,0.0983988905698436,0.1106043689831686,0.1257445190723609,0.1374912611486558,0.1481300415546321,0.1588809965657729,0.1684944417075417,0.1804798313815315,0.191680349118562,0.2022972034045509,0.2120401702870865,0.2208469699299317,0.2302436651483659,0.2389810307762567,0.2478125596702272,0.2560715903942003,0.262668175531246,0.2691543667567505,0.2746335884988797,0.2804683719118497,0.2853831078820324,0.29075652637187,0.2949740970807041,0.2985173269487362,0.3020635282784495,0.3056279513844089,0.3089165691136044,0.306273261047738,0.3046541329634563,0.302125804909597,0.3002842671822917,0.2977495586642733,0.2940996543602606,0.2921214997626958,0.2928514003511132,0.2936298981057239,0.2943634804972139,0.2953979750341549,0.2963226431126128,0.2971860562788744,0.2988485147184013,0.301138281965948,0.3015063549348815,0.3022531913070794,0.3056805664830841,0.3092130720793611,0.3120353067472466,0.3167175468173326,0.321125715497138,0.3254382107181001,0.3259455370650529,0.3292671483531951,0.3338852749852158,0.3394495412844037,0.3421900161030596,0.347469220246238,0.3558165971959075,0.0,1.854623045604282,54.41432382441189,157.24882376483487,216.5777470281138,fqhc3_80Compliance_baseline,76 -100000,95759,47145,448.74111049614135,5311,54.08368926158376,4198,43.1708768888564,1609,16.39532576572437,77.37657405990127,79.72214836781191,63.3458979718325,65.07947290121345,77.16634421315077,79.51653071974586,63.26502487593911,65.00306010404728,0.2102298467505079,205.6176480660525,0.0808730958933949,76.41279716617078,222.4453,155.7344293924699,232297.01646842595,162631.63712284996,451.07046,298.5147147658796,470395.8583527397,311083.6837956533,441.27955,215.37352568884364,456776.42832527496,221739.4829374109,2964.04819,1400.335977598579,3049564.2498355247,1416669.2958349371,982.9411,454.7167946659916,1007175.440428576,455556.9969047206,1569.60206,685.9326043199613,1600761.3070311928,683060.3110371073,0.38197,100000,0,1011115,10558.95529401936,0,0.0,0,0.0,38632,402.76109817353984,0,0.0,40056,414.2587119748536,1234788,0,44382,0,0,8884,0,0,79,0.8249877296128824,0,0.0,0,0.0,0,0.0,0.05311,0.1390423331675262,0.3029561287893052,0.01609,0.3552941176470588,0.6447058823529411,23.71857897021305,4.083133801390324,0.3134826107670319,0.266793711291091,0.2105764649833253,0.2091472129585516,11.08657890121996,5.8639152500478495,17.445642397008157,11747.934208965196,48.22210322240832,13.676247427835316,14.958498603145353,9.872279458418085,9.715077733009554,0.5828966174368747,0.7955357142857142,0.709726443768997,0.5882352941176471,0.1161731207289293,0.7300955414012739,0.909297052154195,0.860655737704918,0.7292576419213974,0.1545454545454545,0.5200543847722637,0.7216494845360825,0.651578947368421,0.5389312977099237,0.1033434650455927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220297781829,0.0047440926922726,0.0070212463726942,0.0094477630135316,0.0115633390285574,0.0139815276830174,0.0160699901092065,0.0179380895985625,0.020159682679234,0.0224585683430408,0.0244239914726139,0.0263498254978443,0.0283843243687803,0.030669412976313,0.0327758921294529,0.0348848026295389,0.0369146975376395,0.0390265156230549,0.040940232251089,0.0427211564498323,0.0582206078824315,0.0720874294080736,0.0857942573198729,0.0986001345216075,0.1110830066186079,0.1269529185429483,0.1387068727866488,0.1495386776490119,0.1599982910729925,0.170284415083008,0.1818074105988797,0.1932373945033542,0.2042012967233802,0.2138191367142622,0.2229035702883313,0.2316875803662484,0.2403993255240031,0.2482189684084949,0.2557909909091941,0.2628770354762613,0.2693882744898431,0.2750339086104485,0.2807799640525967,0.2849376092735851,0.2897098650732927,0.2938994787880281,0.2983300417489563,0.3020095013083352,0.3052973196622748,0.3090741350906095,0.305940367897021,0.3035508320975449,0.3016553313473104,0.2994201978827127,0.2977458986024868,0.294978759817854,0.2913935526669088,0.2912194004450844,0.2912677591904875,0.2920163584637268,0.2919679390168712,0.294033140473098,0.2932685287552932,0.2954358689616879,0.2976770863206194,0.3003990464344942,0.3016129032258065,0.3058794189163913,0.3090953477017507,0.3139181563474211,0.318445370538141,0.3234082990180551,0.3281727948061677,0.3297599275252906,0.3346050060481995,0.3388555986370579,0.3408506129862267,0.346505162827641,0.3484602917341977,0.3458364591147786,0.0,2.607691922346677,54.44619106978475,156.48440276972698,213.4870386933134,fqhc3_80Compliance_baseline,77 -100000,95764,46628,443.9559751054677,5306,54.49855895743704,4241,43.84737479637442,1629,16.71818219790318,77.3313489084019,79.69828285082473,63.31030609897547,65.06351705558968,77.12780468962579,79.4943419167747,63.23453044476673,64.98941856508073,0.2035442187761162,203.94093405002425,0.0757756542087335,74.098490508959,221.94282,155.31114909685408,231760.18127897748,162181.14228400448,447.46839,295.7352610417,466816.6116703563,308371.7587420116,433.63993,210.5346684993036,449945.25082494464,217647.9272137661,2997.83775,1385.0063309596053,3102303.9137880625,1418130.9270285347,1006.68474,445.916314734112,1038753.6026064074,453180.2918989521,1583.8223,666.0725880541581,1627288.271166618,673293.377547314,0.38056,100000,0,1008831,10534.553694498976,0,0.0,0,0.0,38427,400.80823691575125,0,0.0,39497,409.5693580050959,1238573,0,44494,0,0,8651,0,0,67,0.6996366066580344,0,0.0,0,0.0,0,0.0,0.05306,0.1394261088921589,0.3070109310214851,0.01629,0.3485066570708888,0.6514933429291112,23.87559156390258,4.104344873594565,0.3074746522046687,0.2676255600094317,0.2152794152322565,0.209620372553643,11.182559782575488,6.028721764762486,17.37163447388097,11732.829880008903,48.434366539364326,13.923484666452698,14.751033911612922,10.094350878405391,9.66549708289332,0.574628625324216,0.798237885462555,0.6878834355828221,0.56078860898138,0.1372328458942632,0.7510204081632653,0.9237113402061856,0.8898809523809523,0.7177033492822966,0.1179487179487179,0.5029840848806366,0.7046153846153846,0.6177685950413223,0.5142045454545454,0.1426512968299711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107417501697,0.0042994615532818,0.0064552144125856,0.008605974395448,0.0106716311623837,0.0130154494811133,0.0150095339091066,0.0172968336787935,0.0192699117307121,0.0215293852551365,0.023629799803085,0.025900241434222,0.0279092742765405,0.0301762341543852,0.0322041246051898,0.0341853828018364,0.0362730783966533,0.0382484175573311,0.0402685959003783,0.0422542545878726,0.0572958528616611,0.0709748977178792,0.0847240724617918,0.0976435579015993,0.1098998418555614,0.1251877234173065,0.1371030209140201,0.1477793162211098,0.1577951847141926,0.1675518503020354,0.1797088016898554,0.1913280776228016,0.2022577098505383,0.212048904893773,0.2205354587287258,0.2305415770688776,0.2396918439122425,0.2479431857829399,0.2557983841684822,0.2631765892112379,0.2698094863307021,0.2759702628343968,0.2812503703001505,0.2863916832729106,0.2905344588512905,0.294892347152687,0.29966081329712,0.3031444459997709,0.3066784172941588,0.309662352056367,0.3081004646151774,0.3054070031207467,0.3030021665119158,0.3004097414589104,0.2985362095531587,0.2954181107531642,0.2931668007128101,0.294139775273548,0.2949923352069494,0.2961652651602695,0.2986942734564446,0.299785487965678,0.3007465487759102,0.2999977736714384,0.3006417009864955,0.3023642073028313,0.3043502888863713,0.3067284801403332,0.3108406691684495,0.3142834464420367,0.3187641980917765,0.3205913410770855,0.3246996996996997,0.3288053731793827,0.3338878107383791,0.3384935304990757,0.340352958623758,0.3434087363494539,0.3499334221038615,0.3486988847583643,0.0,1.7414561585666744,54.0313793676241,156.26718743613156,222.8269097023349,fqhc3_80Compliance_baseline,78 -100000,95485,46586,443.79745509765934,5233,53.54767764570352,4110,42.42551186050165,1549,15.845420746714144,77.22623088476638,79.71436870133665,63.24095407219974,65.07655233973281,77.02650732428172,79.5171989550966,63.16518590975037,65.00432756339553,0.1997235604846565,197.1697462400499,0.0757681624493713,72.2247763372792,219.66758,153.8874858652202,230054.54259831388,161164.04237861463,445.07027,294.5459216114999,465507.5875792009,307865.70834319526,432.80722,210.82362171633667,449504.3619416662,217827.11225655724,2881.00793,1343.2824878485103,2975303.1680368646,1364866.510811657,943.78583,429.806320629788,969869.4768811855,431586.4906841786,1506.81984,642.271416545476,1542387.6001466198,641574.4019917595,0.37932,100000,0,998489,10457.02466355972,0,0.0,0,0.0,38367,401.1624862543855,0,0.0,39300,407.78132690998586,1243093,0,44618,0,0,8856,0,0,70,0.7330994397025711,0,0.0,0,0.0,0,0.0,0.05233,0.1379573974480649,0.2960061150391744,0.01549,0.346435100548446,0.6535648994515539,23.65300433533822,4.046280267376037,0.3177615571776155,0.2800486618004866,0.1992700729927007,0.2029197080291971,11.17396773155924,6.005942997553804,16.539791763269758,11751.148305184886,47.38666416167188,14.252264021208829,14.895215230000252,9.150978821550286,9.088206088912516,0.5800486618004866,0.8166811468288445,0.6753445635528331,0.5848595848595849,0.0995203836930455,0.7593032462391133,0.9270216962524654,0.8284960422163589,0.7107843137254902,0.1734104046242774,0.5005268703898841,0.7298136645962733,0.6127292340884574,0.5430894308943089,0.0801815431164901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293154988093,0.0047876494872549,0.0069851970678416,0.0093340111845449,0.0114941358527447,0.0137389797686388,0.0160103674527291,0.0179429015184027,0.0201438407316848,0.0222433966517079,0.0245319428477582,0.0266604976352046,0.0287800156513859,0.0308387309707496,0.032949320659193,0.0347669434493611,0.036752730780801,0.0388249602394985,0.0411314267854352,0.0431772617158132,0.0578728660100275,0.0715739555574207,0.0842342152862491,0.0972365675259796,0.10969023789645,0.1255061587059297,0.1367430485405922,0.147630023262266,0.1572418668923334,0.1668852529509148,0.1783716661267681,0.1898966231681256,0.2008745052284944,0.2112706940028505,0.2199982345412014,0.2296562989632296,0.2393001767456428,0.2467055202967004,0.2548109731131431,0.2622350740702491,0.2689332884956573,0.2746606016553729,0.2806357867267659,0.2860146329156505,0.2910488675544292,0.2955124242798863,0.3000339063932388,0.3039497375780561,0.3074525692469516,0.3115970789014129,0.3096903096903097,0.30734899097734,0.3056362252234471,0.3032255268745756,0.3009515313707999,0.297622514830541,0.2949858118926459,0.295568122041031,0.2962956625887586,0.2965697227535169,0.2977491238263021,0.298889415856454,0.2993805198610355,0.3000870788398419,0.3000646846026688,0.3005243212376057,0.3010606318416425,0.3065101721439749,0.3092466352036357,0.3141377811153709,0.318249897880452,0.3205527134644797,0.3245870987846681,0.3291025159594442,0.3356366316565322,0.3423736671302735,0.3434282253179891,0.3476941747572815,0.352089593007375,0.3567096285064443,0.0,2.4412852211683806,55.14249101102264,149.9831370293672,208.3938676600305,fqhc3_80Compliance_baseline,79 -100000,95699,46738,444.8322344016134,5371,54.70276596411666,4235,43.56367360160503,1611,16.468301654144767,77.36399481233721,79.74998141240597,63.33329461681414,65.09782215917363,77.15833652792924,79.54663742769942,63.25575701839794,65.0237684647299,0.2056582844079741,203.34398470654943,0.0775375984161996,74.05369444373378,220.55462,154.43489079874234,230467.0059248268,161375.65784255043,451.08507,298.3449277025911,470662.7341978495,311057.9919357476,437.76264,213.13658885999328,452643.4027523799,219100.1791986347,2975.42355,1391.3635837835157,3063857.992246523,1408605.6215671173,945.83572,433.1256886174814,972972.2672128236,437229.7455746456,1562.30498,665.8763224480439,1598585.96223576,666650.6909896989,0.37983,100000,0,1002521,10475.772996583037,0,0.0,0,0.0,38746,404.163052905464,0,0.0,39744,410.59990177535815,1245491,0,44749,0,0,8737,0,0,89,0.9299992685399012,0,0.0,0,0.0,0,0.0,0.05371,0.141405365558276,0.2999441444796127,0.01611,0.3323766816143498,0.6676233183856503,23.41751959528724,4.10483776309273,0.3173553719008264,0.2703659976387249,0.2148760330578512,0.1974025974025974,11.276843772786904,6.002209434335477,17.176116776758274,11760.387958934514,48.48771131428492,13.956960412553842,15.3016969018363,10.055524091266232,9.173529908628543,0.5782762691853601,0.7921397379912664,0.7001488095238095,0.5637362637362637,0.1052631578947368,0.7446300715990454,0.9034334763948498,0.8530183727034121,0.7420814479638009,0.1375661375661375,0.5080591000671592,0.7157584683357879,0.6396677050882659,0.5065312046444121,0.0958268933539412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0046345594126177,0.0067002355234305,0.0089131451104742,0.0110197602718818,0.0131528007009393,0.0155249092170223,0.0175967155521058,0.0197907397747844,0.0218310652372029,0.0240888487806879,0.0264355184915116,0.028430656558903,0.0306130860381246,0.032632926023778,0.0347715499860417,0.0366909753874202,0.0385198098914554,0.0405821205821205,0.0426243514138656,0.0574290100571261,0.0709867174661656,0.0844409941146232,0.097470950102529,0.1102104919207783,0.1255418578587891,0.1374900588515985,0.1488266207101976,0.1590673741072477,0.1690442760527754,0.1809573002754821,0.1929908058409951,0.2035579139663346,0.2133648262966243,0.2220731076814766,0.2313730265925647,0.2405692997523813,0.2483666010683159,0.2558997050147493,0.2632217592380603,0.2697373746718629,0.2759656752712308,0.281036625051772,0.2866693824734609,0.2912644934134644,0.2948018857473443,0.2997087172306884,0.3036079397533749,0.3069807103450949,0.3109833131547086,0.308631200150388,0.3067047075606277,0.304236740882163,0.3017038989471258,0.2998860424159008,0.2967138439037767,0.2936927580020772,0.2943947321239385,0.2955108411658919,0.2967179341455617,0.2966438445609387,0.2972462627852085,0.297863470557582,0.2981474463294469,0.3005813536209,0.3013627379590138,0.302171565004832,0.3057988239709746,0.3086575093495509,0.310701048813185,0.3139681966028189,0.3192362316553574,0.3220115519839276,0.323171658811008,0.3262771662432966,0.330449211805144,0.333384497313891,0.3375407166123778,0.3430858404637041,0.348900038595137,0.0,2.686424336483717,54.421150881625024,152.2239183678616,223.0260768380332,fqhc3_80Compliance_baseline,80 -100000,95671,47159,448.2967670453952,5352,54.75013326922473,4242,43.7645681554494,1650,16.870315978718732,77.31725194233033,79.72556713743701,63.30264576078415,65.08485796889364,77.11004678882051,79.522558960226,63.22402060786597,65.01075324869058,0.2072051535098182,203.00817721101797,0.0786251529181853,74.10472020306713,222.33244,155.67370002910477,232392.4909324665,162717.54161767388,451.68485,298.82594159770804,471532.26160487504,311757.5002037692,441.16279,215.20596962347096,458046.3881426973,222519.5390618564,3026.82643,1405.9016991761166,3120912.8367007766,1426747.1282030586,999.16105,452.9003966469757,1027118.5103113796,456179.35512188025,1605.78686,683.408353666341,1642731.318790438,682208.9057807516,0.38189,100000,0,1010602,10563.29504238484,0,0.0,0,0.0,38818,405.1488956946201,0,0.0,40037,415.3923341451432,1233587,0,44260,0,0,8880,0,0,73,0.7630316396818262,0,0.0,1,0.0104524882148195,0,0.0,0.05352,0.1401450679515043,0.3082959641255605,0.0165,0.3454610951008645,0.6545389048991355,23.73316974090431,4.208719073755184,0.305987741631306,0.2703913248467703,0.2069778406412069,0.2166430928807166,11.190228747800893,5.94826659751535,17.5675206667264,11787.405873517837,48.27690968165231,14.027296726229208,14.572008773764288,9.712425155084512,9.9651790265743,0.5742574257425742,0.8081952920662598,0.6833590138674884,0.5820045558086561,0.1207834602829162,0.7657873701039168,0.9171597633136096,0.8705234159779615,0.7192118226600985,0.1741573033707865,0.4941491140086927,0.721875,0.6106951871657754,0.5407407407407407,0.1079622132253711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022794735935647,0.0047558687826395,0.007012594253935,0.0094910018392626,0.0117922368621864,0.0137822145258225,0.0159447493522126,0.0183270676691729,0.0204824947310265,0.02257010255412,0.0244485482712629,0.0268603958157791,0.0290902353159162,0.0311978060498587,0.0332145623547637,0.0353226006704465,0.0374839324957498,0.0394520946268718,0.0414707228765242,0.0436155906972865,0.0583619779967193,0.072478034579175,0.0859692404598183,0.0988941614671562,0.1109036239911378,0.1264287528575057,0.1374940296131189,0.1488684168486075,0.1595057928263007,0.1689964061578072,0.1807820747603145,0.1928335588633288,0.2038832838127578,0.2134639592797329,0.2227705322523792,0.2335864324114615,0.2418841857402716,0.2496287964004499,0.2576799165078501,0.2646264111195072,0.270212421325435,0.2762016138463337,0.2821329230040835,0.2869126511438398,0.2919602507410467,0.296198599743615,0.3000838432756441,0.3030815387353487,0.3073301341335644,0.3107531413819446,0.3077253853286211,0.3043937937663051,0.3024644523127072,0.3006040336182911,0.2982729689193805,0.2956122214564668,0.2927087615012489,0.2930446753417024,0.2933004171277773,0.293949203187251,0.2943318703893921,0.2962962962962963,0.2965029995192408,0.2974250362278453,0.2991590581451225,0.299815185985371,0.3009256630132318,0.3043967727812871,0.3105099437279368,0.3134829684659764,0.3188649262202043,0.3215835715041812,0.3244550537094038,0.327741935483871,0.3274038011422151,0.3284723038927437,0.3276335877862595,0.3232567513099557,0.3202789699570815,0.3284807764091079,0.0,2.240069056805026,54.42966197604269,147.45488565142998,228.83330530566676,fqhc3_80Compliance_baseline,81 -100000,95849,47558,451.3766445137665,5337,54.33546515873927,4211,43.27640350968711,1615,16.348631701947856,77.4717338221379,79.75661380501508,63.40399372213196,65.09014107245261,77.26441535259691,79.55879563393205,63.32416605365461,65.01737697967873,0.2073184695409935,197.8181710830285,0.0798276684773497,72.7640927738804,221.34794,155.148237125858,230934.01078780164,161867.35086005906,453.44915,300.2364921307449,472462.4774384709,312614.5313260909,454.13128,221.34609232982856,470640.84132333146,228434.47898082508,2909.66423,1362.4464990332392,2988936.003505514,1374711.826970796,968.68656,439.1415237594306,995390.9899946792,442917.8666825111,1564.97656,669.3410006148092,1586392.4923577711,657465.2057964521,0.385,100000,0,1006127,10497.00049035462,0,0.0,0,0.0,38832,404.4695301985415,0,0.0,41073,425.314818099302,1239600,0,44434,0,0,8942,0,0,97,1.0120084716585462,0,0.0,1,0.0104330770274076,0,0.0,0.05337,0.1386233766233766,0.302604459434139,0.01615,0.3489836301493074,0.6510163698506926,23.46613266177317,4.111938069671279,0.3084777962479221,0.2830681548325813,0.2061268107337924,0.2023272381857041,11.50703835578834,6.2715859383295856,17.129459868500504,11882.763232897796,48.35860268675528,14.693298688422612,14.850999041548384,9.658616088373671,9.155688868410609,0.591308477796248,0.8095637583892618,0.7274826789838337,0.565668202764977,0.1044600938967136,0.757976653696498,0.92,0.8723958333333334,0.7129629629629629,0.1351351351351351,0.5181134654818865,0.7297687861271677,0.6666666666666666,0.5168711656441718,0.095952023988006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023281708674967,0.0045891541976071,0.0068750126751708,0.0090946000812017,0.0115437769287049,0.014091385432458,0.0161865373645179,0.0185844408857699,0.0208831158221514,0.0231939785650004,0.0253382357459621,0.027413697618608,0.0297498587498073,0.0317930672593141,0.033851831235633,0.0359355638166047,0.037993276441686,0.0400460156079967,0.0419491833407748,0.0438126359388496,0.0587922458471067,0.0729720970591617,0.0860556516271026,0.0994073389096717,0.1118372509750184,0.1279275088023515,0.1397876830729746,0.1509144881738963,0.1612159261987892,0.1707290929748965,0.1831116277067458,0.1950125389138706,0.2054888246921088,0.2157301653163285,0.2244472027856805,0.2351627454448965,0.2436334469621014,0.2519005109202178,0.2599447263501268,0.2659637727563809,0.2721141854127211,0.2785030156674716,0.2843800550222569,0.2888336163394159,0.2932979187891136,0.2977226029504041,0.3016673952413664,0.3055227650635289,0.3100143375657138,0.3116958294961189,0.3094908744174803,0.3078957103125128,0.3059019935186094,0.3038076613367076,0.3014685221609311,0.2985727124556352,0.2947398243460195,0.2943048302872063,0.2952115926290427,0.2960673162090345,0.2963417582621956,0.2976554536187564,0.2983560903630733,0.299159701128528,0.2993522884221555,0.3007254795652286,0.3026275028865921,0.3066443223784253,0.3111026904130352,0.3138919171468619,0.3161489019817889,0.3184316599486991,0.3221288515406162,0.3261066626378607,0.3290818718934634,0.3343565525383707,0.3399578440228846,0.3417922283901665,0.3420134228187919,0.3460246360582307,0.0,2.553908697051273,55.74626324721997,158.09790361908745,207.61927139641764,fqhc3_80Compliance_baseline,82 -100000,95752,46921,445.71392764642,5385,55.038014871752026,4246,43.88420085220152,1651,16.981368535383073,77.34438518034166,79.69865756666731,63.33412346583962,65.07299003931026,77.13227824720563,79.4851949250109,63.25494607684007,64.99514145828111,0.2121069331360274,213.46264165640605,0.0791773889995468,77.84858102914427,220.99946,154.90918662900535,230804.01453755537,161781.67205803047,453.13365,299.4245516223845,472791.7119224664,312263.3695613506,440.60964,214.6110914566145,457215.4210878102,221898.81671256383,3017.96829,1405.343610429277,3123351.2093742164,1439183.0671205593,1011.39932,457.4094726183153,1047543.7171025148,468976.3269887994,1614.7268,688.9108613786549,1662460.6901161333,699089.8947609215,0.38112,100000,0,1004543,10491.09156988888,0,0.0,0,0.0,38863,405.4118974016209,0,0.0,39955,414.3203275127413,1240165,0,44545,0,0,8820,0,0,99,1.0339209624864234,0,0.0,0,0.0,0,0.0,0.05385,0.141294080604534,0.3065923862581244,0.01651,0.3501599715606114,0.6498400284393886,23.75589822990204,4.170848973003575,0.3184173339613754,0.2621290626471974,0.1999528968440885,0.2195007065473386,11.444534820002731,6.23438752044835,17.72789687989283,11747.284688773085,48.637534019700375,13.612086938297422,15.235362642468392,9.50402365758168,10.286060781352884,0.5727743758831841,0.8032345013477089,0.7159763313609467,0.5547703180212014,0.1062231759656652,0.7361222847948512,0.9327548806941433,0.8598382749326146,0.7,0.1232227488151658,0.5051615051615052,0.7116564417177914,0.6615698267074414,0.5100154083204931,0.1012482662968099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046333377267243,0.0068182509968648,0.008896742938972,0.0112755963153506,0.0135188785845897,0.0158068526935855,0.018266238073371,0.0203737572927629,0.0228077355980763,0.0250327895729158,0.0272911085794049,0.0294060189802486,0.0313796974284507,0.033413454099054,0.0355386078042328,0.0373352930825682,0.0394491226614676,0.0416233631261692,0.0434669388775467,0.0586626298480973,0.0724272169781703,0.0854275046148682,0.0979726177206671,0.1103929652161994,0.1257361570750378,0.1377105162686124,0.1489164778348705,0.1590542604201151,0.1679673262869026,0.1805528644319576,0.1918725392636179,0.2026157291644017,0.2124183006535947,0.2218275786232681,0.2313669924836999,0.2405101425989154,0.2496120369745631,0.2571182249245638,0.2639532886828095,0.2704106419895893,0.2760347207599261,0.281785803031558,0.286683935338418,0.2910248311385393,0.2947038654135523,0.2982937462417318,0.3017771832600802,0.3052413346290897,0.3082091423894821,0.3071270926414383,0.3043819004276031,0.3023917113616847,0.2998397273921769,0.2974040632054176,0.2946339670041819,0.2922046034185055,0.2930177631255228,0.2937320770176157,0.2942120752697761,0.2943212001047472,0.2949536763256455,0.2944704505558806,0.2952825344377218,0.2959928890597222,0.2968404628786893,0.2968781069795188,0.3008188749097982,0.3050159263537401,0.3076343745045188,0.3088402050165555,0.3126322471434617,0.3177891837756635,0.3253383458646616,0.3283902257041596,0.332316715542522,0.3340438489646772,0.3409883124871847,0.3413554633471646,0.34375,0.0,1.81172665754835,54.56086751735468,156.18538256995512,223.1478521848991,fqhc3_80Compliance_baseline,83 -100000,95667,46541,443.1517660217212,5229,53.61305361305361,4117,42.40751774384061,1629,16.59924529879687,77.28108161739658,79.66921458147986,63.29287913429015,65.05600200410436,77.07075848300799,79.46225211740511,63.2140416907348,64.98109187248586,0.210323134388588,206.9624640747492,0.0788374435553507,74.9101316184948,221.07558,154.82704871523575,231087.96136598827,161838.9140781833,444.28304,294.08763403611584,463749.9033104414,306753.7871226144,429.24983,209.08200634179516,445259.96425099566,215873.3870700209,2930.29168,1367.684674117078,3021438.7615374164,1388252.8105504191,987.27256,449.6104890597793,1015431.799889199,453528.2674508666,1582.50316,673.7581272027321,1614773.7255270889,670562.5407680955,0.37991,100000,0,1004889,10503.998243908558,0,0.0,0,0.0,38250,399.1344977892063,0,0.0,38952,403.6606144229463,1241382,0,44582,0,0,8751,0,0,72,0.7526106180814701,0,0.0,2,0.020905850502263,0,0.0,0.05229,0.1376378615987997,0.3115318416523235,0.01629,0.3482796486090776,0.6517203513909224,23.44401126948361,4.092053085664472,0.3116346854505708,0.2620840417779936,0.2188486762205489,0.2074325965508865,11.180444829688438,6.071160356951825,17.53812949278228,11702.912051980387,47.43690440873517,13.135871688181613,14.700477089870716,10.156193786809744,9.444361843873091,0.5746903084770464,0.8007414272474513,0.6819953234606392,0.564927857935627,0.1381733021077283,0.7459415584415584,0.903448275862069,0.8502673796791443,0.7288135593220338,0.1925133689839572,0.5015597920277296,0.7313664596273292,0.6127612761276128,0.5067669172932331,0.1229385307346326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0040450531736939,0.0063630920364939,0.0085440562424439,0.0106685922339971,0.0128609832593377,0.0151722168974447,0.017366357659166,0.0196577526987242,0.0217916436365125,0.0238798318466113,0.0260896349915293,0.0283014017009636,0.0303536102868447,0.0324791264590837,0.0342749022932649,0.0363690981789554,0.0384435749203416,0.0403915368131982,0.0425157127818138,0.0570025596823904,0.0710441447478639,0.0843593538432471,0.0969971802533563,0.1090807423272105,0.1250449611747032,0.1370265794836956,0.1482049479749086,0.1590138872555832,0.1689410451046285,0.1812083432195164,0.1924143909839618,0.2031864266501138,0.2126119615443575,0.2218427402029371,0.2306685740266365,0.2394336291097651,0.2478993489671329,0.2556186796954891,0.2630921120526551,0.2689874884151992,0.2754568884723524,0.2805026972553204,0.2853008981316939,0.2900585079855494,0.294266400217107,0.2987211443315756,0.3028920881640973,0.3068943608096368,0.3095489874689367,0.3068954354159922,0.3046583123095799,0.3015345919059461,0.2985974266836675,0.2966626936829559,0.294239472271228,0.2913392064900494,0.2913892040316349,0.2917850419305151,0.2928062309080191,0.2929455909943715,0.2943789035392088,0.2950095686736346,0.2960561737257717,0.2967125732616194,0.2984802273141993,0.2999543925659882,0.3035096546952638,0.3081202113144176,0.3114896644401407,0.3148785791953606,0.3196729957805907,0.3199724431640258,0.3218822821919868,0.3231639465875371,0.3216888374783112,0.3269578313253012,0.3299683293745051,0.3213141025641026,0.3273832130649449,0.0,2.2703669951577536,53.779075148472,156.37907154840877,206.99956872848531,fqhc3_80Compliance_baseline,84 -100000,95723,46895,445.7653855395255,5327,54.33385915610668,4231,43.58409159763066,1565,15.983619401815655,77.3612597271838,79.72600449243025,63.34108899169471,65.08885135740903,77.17068643918597,79.53741023478219,63.26941998473884,65.01990192716933,0.1905732879978359,188.59425764806304,0.0716690069558723,68.94943023969802,222.21012,155.6573133926844,232138.462020622,162612.02260134392,453.79435,299.53140520018025,473431.5472770389,312278.14539087564,442.85019,215.6287047736532,457944.6632470776,221816.7371697293,2948.83247,1369.4975666992584,3042017.832704784,1392318.417294833,966.84289,431.2050950824181,995903.4192409348,436485.3622474861,1518.53646,641.3038430507078,1553330.9027088578,644278.276361365,0.38099,100000,0,1010046,10551.748273664636,0,0.0,0,0.0,38910,405.837677465186,0,0.0,40213,415.4696363465416,1237503,0,44380,0,0,8830,0,0,78,0.8148511851906021,0,0.0,0,0.0,0,0.0,0.05327,0.1398199427806504,0.2937863713159376,0.01565,0.3476464247215235,0.6523535752784765,23.50410089719007,4.060380165733839,0.3176554006145119,0.2715670054360671,0.212242968565351,0.1985346253840699,11.507548063672418,6.375112502907658,16.56907930795596,11754.567370561335,48.32496648521006,14.01455152058724,15.268560055660735,9.915172203193045,9.12668270576905,0.583077286693453,0.8120104438642297,0.6941964285714286,0.5723830734966593,0.1035714285714285,0.7647540983606558,0.941304347826087,0.8657894736842106,0.7614213197969543,0.1147540983606557,0.5094652939222849,0.7256894049346879,0.6265560165975104,0.5192582025677603,0.1004566210045662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0046435234001135,0.0066672078910515,0.0089504322825126,0.0110546120207464,0.0135536954440846,0.0159178512430404,0.0179506815745137,0.020039465477931,0.0222358722358722,0.024422503152779,0.026426333898218,0.0287462717268332,0.0309151969671996,0.0327846860327124,0.0347675957323629,0.0366281779112514,0.039008343364742,0.0412403294235088,0.0433745233282627,0.0580330573334864,0.0721986142220175,0.085728371234371,0.0983523820538972,0.1113078487789968,0.1275765840045665,0.13955633787882,0.150526651771465,0.1603900542572734,0.1691892123654761,0.1810841362975722,0.1930365370887143,0.2032568049395599,0.212655737704918,0.2218069494674127,0.2306143223864742,0.2398363561372022,0.247376581354066,0.2551455254329495,0.2618232998821388,0.2680899759570926,0.2738466570871155,0.279970682460309,0.2852988691437803,0.2897298214567096,0.294828455174618,0.2987079458211097,0.3033446769605851,0.3069822760591056,0.3108074272234888,0.3085553808736781,0.306204209313174,0.302762089409649,0.3005233639470004,0.2987604163577592,0.296162721396152,0.2933806706114398,0.294067630322454,0.2940026518886207,0.2943874557769916,0.2956958152204332,0.2962612399432087,0.2965910515102143,0.2973249883065684,0.299079754601227,0.3004371129728886,0.3015940791346427,0.3053243285691848,0.3080585311209129,0.312265009696442,0.314411072914782,0.3184278282801744,0.3214641434262948,0.3257005122024706,0.3279814385150812,0.333918744877649,0.3340374170187085,0.337597441535079,0.3383043358188345,0.3370253164556962,0.0,2.31269225448468,52.980958247998416,157.7608868439229,221.1105617866015,fqhc3_80Compliance_baseline,85 -100000,95649,46662,444.249286453596,5221,53.34086085583749,4087,42.112306453805054,1622,16.55009461677592,77.2430810454354,79.64623623410806,63.27207635196621,65.04956667602742,77.04059255434234,79.44791295984702,63.19642404942993,64.97792171783453,0.2024884910930637,198.32327426104257,0.0756523025362838,71.6449581928913,221.01948,154.76365020621617,231073.4874384468,161803.7305211933,448.96065,296.8436316176703,468785.4551537392,309748.74971789605,430.98405,209.50468544450865,446502.0439314577,215956.0719138688,2894.25178,1326.8364536944405,2984629.896810212,1345914.0437374576,954.00328,423.7683127915679,981070.2882413825,426728.120968234,1576.48578,663.3443528049345,1610173.19574695,660848.135381412,0.37808,100000,0,1004634,10503.340338111218,0,0.0,0,0.0,38548,402.3878974165961,0,0.0,39023,403.8934019174272,1239013,0,44441,0,0,8690,0,0,77,0.8050267122499973,0,0.0,0,0.0,0,0.0,0.05221,0.1380924672027084,0.3106684543190959,0.01622,0.348390636430139,0.651609363569861,23.96840498717144,4.191798381124872,0.3239540004893565,0.2539760215316858,0.2123807193540494,0.2096892586249082,11.113599145790795,5.953240821481544,17.27050368150134,11691.869463258736,46.483602086167394,12.675131289058651,14.893392343004662,9.576195520264037,9.338882933840036,0.5637386836310252,0.789980732177264,0.68202416918429,0.5610599078341014,0.1096849474912485,0.74,0.9044117647058824,0.848314606741573,0.7163461538461539,0.1741573033707865,0.494722505958461,0.7158730158730159,0.6208677685950413,0.5121212121212121,0.0927835051546391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021282633371169,0.0043515306432962,0.0066089357684537,0.0089616842276389,0.0112192690691973,0.0134222720097764,0.0156308947234259,0.0178281513248583,0.0198484523115624,0.0217607241969012,0.0238334529791816,0.0260333761232349,0.0285179509857358,0.0305868051263032,0.0327818089860966,0.0347116667183671,0.0365973668127246,0.0387341850979252,0.0404701232513391,0.0426066469288186,0.0575972580695723,0.0712467660336646,0.08523795025774,0.0977211725698647,0.109600320925617,0.1242218928647046,0.1360975661578013,0.1464285714285714,0.1562322779460072,0.1657018891024883,0.1788068751955632,0.1911699348530671,0.2021063408046352,0.2113931535951291,0.2204478829156472,0.2301190251694417,0.2392205962907895,0.2476645518982206,0.2547678039688132,0.2617617388114453,0.267785141585948,0.2741744799896993,0.2802258950558818,0.2851061278330735,0.2895399321390784,0.2952520790662093,0.2986869800541245,0.3023054277594402,0.3069428949484991,0.3100230018771647,0.3077534630517975,0.3037943325855686,0.3022786880622691,0.2997758009691184,0.2980357142857143,0.2946011009399389,0.292015474378488,0.291127997631501,0.2910156917712215,0.2921603316714022,0.2926041392780678,0.2934834311082924,0.2944741532976827,0.2961984507231451,0.2976179018286814,0.2989518258096557,0.3014954449091847,0.3052946738102742,0.3107223317375387,0.3137176620887895,0.3180109990834097,0.319876438005965,0.3214961523905639,0.3228190476190476,0.3263724841727298,0.3300970873786408,0.3321981424148607,0.3406033428454953,0.3413897280966767,0.3399846508058327,0.0,2.3930708788339747,49.95736812998607,147.01015698444758,223.0447409095101,fqhc3_80Compliance_baseline,86 -100000,95823,46791,445.21670162695807,5223,53.29618150130971,4165,42.93332498460704,1587,16.21740083278545,77.44904619750217,79.77451535544182,63.38601454967061,65.10647175229354,77.2519711130938,79.5792992469373,63.31227515018301,65.0355266755265,0.1970750844083681,195.21610850452475,0.0737393994876001,70.94507676704609,221.97824,155.41619733061944,231653.9870386024,162190.45942061863,451.06376,298.1382978930871,470191.2901912902,310599.9723376299,436.68335,212.2859056896214,452214.7918558175,218925.17120346025,2951.10421,1363.8819582806298,3043530.77027436,1387155.907225435,962.79068,432.2980563312492,991891.2056604364,438284.0554255866,1546.75116,651.0416174229623,1582062.594575415,652992.3273552136,0.37994,100000,0,1008992,10529.72668357284,0,0.0,0,0.0,38721,403.5252496790959,0,0.0,39627,410.0998716383332,1243964,0,44613,0,0,8813,0,0,70,0.7200776431545662,0,0.0,0,0.0,0,0.0,0.05223,0.1374690740643259,0.3038483630097645,0.01587,0.3489612061040632,0.6510387938959368,23.493606163295976,4.171238141755019,0.3164465786314526,0.2679471788715486,0.202641056422569,0.2129651860744297,11.370285193093942,6.066419542903296,16.80850182503576,11704.393223159334,47.43129650140413,13.595523377949196,14.989365288444002,9.27662048172769,9.569787353283225,0.5853541416566627,0.8046594982078853,0.7025796661608498,0.6042654028436019,0.117249154453213,0.7568692756036636,0.9229024943310656,0.85,0.7853881278538812,0.1325966850828729,0.5158569500674763,0.7274074074074074,0.6471816283924844,0.5408,0.1133144475920679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019343143311424,0.0042674829959555,0.0063011780463304,0.0086752471023252,0.0106470606180786,0.0129616242248989,0.0152829746235331,0.0172281815491074,0.0193868165559529,0.0216614994218825,0.0238356304759952,0.0258518062397372,0.0278577302631578,0.0299610814817865,0.0320338283828382,0.0341236634123663,0.0362761333057338,0.0383757945272239,0.0401242584492628,0.0422231706936217,0.0562463489944087,0.0708348580689006,0.0849980086779717,0.0974164469053047,0.1095457371365949,0.1248705429797307,0.1365274538901844,0.1478535501228214,0.1583562696025091,0.168119418328229,0.1805150814559922,0.1917185204390286,0.2024621129879716,0.212089470812875,0.2208964071264695,0.2309911144511736,0.2403256160981748,0.2482633238690563,0.2562108813509445,0.2631398576634414,0.2691024916042515,0.2752997713805813,0.2816765167333168,0.2864738282136755,0.2913048217724646,0.2952853598014888,0.2983370315889201,0.3019372331394833,0.3055548392088093,0.3089624190518725,0.3065975153781208,0.3037414546600359,0.3016754293725902,0.2997712987069028,0.2975356794610407,0.2944713368039699,0.2906587447540906,0.2905360256849036,0.2910495814552479,0.2912977261457817,0.2922713842380094,0.2937777864823048,0.2945710664644408,0.2953839325343986,0.296415539815411,0.2975460122699386,0.3000395011568196,0.3051095344784665,0.3093512647202285,0.3150394535390413,0.3176316502574293,0.3195397445371054,0.3263632379640643,0.3325026431052711,0.3375152139312798,0.3433904672458323,0.34958238420653,0.3521809369951534,0.3555616288603443,0.3584405753217259,0.0,2.0118684097133475,52.375965574343006,158.24247619505977,211.79255878037236,fqhc3_80Compliance_baseline,87 -100000,95798,46653,443.08858222509866,5347,54.42702352867492,4256,43.75874235370258,1635,16.64961690223178,77.3497797498425,79.68222641332777,63.33168066437421,65.05975846399454,77.1429956979258,79.47976478609132,63.25304316589097,64.98538731612008,0.2067840519166992,202.46162723644545,0.0786374984832392,74.37114787445864,221.86274,155.3952505071732,231594.3339109376,162211.37237434307,446.70361,294.8089130216728,465632.96728532953,307076.43090642814,435.0357,211.93604719770883,449653.9384955844,217804.1420544171,3038.57793,1412.0924920715424,3128911.501283952,1431175.388182334,994.09125,450.1286638588855,1022324.015115138,454545.55555375526,1597.3091,680.6352186871461,1628807.4907618114,677189.0905698602,0.37953,100000,0,1008467,10527.01517776989,0,0.0,0,0.0,38394,400.081421324036,0,0.0,39412,406.8665316603687,1241500,0,44551,0,0,8610,0,0,88,0.9185995532265808,0,0.0,0,0.0,0,0.0,0.05347,0.1408847785418807,0.3057789414625023,0.01635,0.3426108816663674,0.6573891183336326,23.58649610626954,4.240204292804762,0.325187969924812,0.2589285714285714,0.1985432330827067,0.2173402255639097,11.25226244120732,5.819417916026835,17.404774813787014,11723.800292520766,48.60686298391151,13.485254232103769,15.600520327505643,9.345297794148095,10.175790630154,0.5740131578947368,0.7976406533575318,0.7109826589595376,0.5680473372781065,0.1081081081081081,0.741988496302383,0.9117647058823528,0.8763736263736264,0.7537688442211056,0.1462264150943396,0.5067456400131622,0.7212121212121212,0.6519607843137255,0.5108359133126935,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0045727843288349,0.0069823614183936,0.0088490180739416,0.0110568609500559,0.0132172496308741,0.0154975530179445,0.0178332635791063,0.0200128785633247,0.0223748451877706,0.0247050260889175,0.0269007649263309,0.0287800113104724,0.0307988549539716,0.0327199207790064,0.0346463039120461,0.0366440660421303,0.0385748366352038,0.0407813392903527,0.0430210524123857,0.0578489979447695,0.0719947297975573,0.0849982180667072,0.0975071464604002,0.1097946620567525,0.1245968552062515,0.1357237574921763,0.1468014901543374,0.1577131381325243,0.1667417562377979,0.1789204857706274,0.190542164110446,0.2011052849154718,0.211155204267926,0.2200646893152614,0.2296969361183445,0.2381398774649302,0.2460806585843136,0.2542690191183979,0.2610910756196691,0.267895765623012,0.2749707739069441,0.2808104943163672,0.2856715238448736,0.290278334122331,0.2953661299059437,0.2992614069510229,0.3032518051459371,0.3062884784520668,0.3095385670389956,0.3081955737440094,0.3057757956172228,0.3039130067329633,0.3016160067128658,0.2996999138366462,0.2968262226847034,0.2950747094631987,0.2952206123385563,0.2960137879253268,0.295735950044603,0.2964701921098412,0.2974332669126206,0.2988030331515949,0.299623549328403,0.2996168582375479,0.3011009555463232,0.3014797596099331,0.3057698915997626,0.3090251200334006,0.3109200816454702,0.3167283894860446,0.3221970852843689,0.3261345852895149,0.3309768148992778,0.334576998414327,0.3317347058135454,0.3343451206556382,0.3325354079393576,0.337466307277628,0.3493098159509202,0.0,2.537754946246358,52.772031645705496,159.11729593262675,223.0846447913724,fqhc3_80Compliance_baseline,88 -100000,95795,46763,444.0106477373558,5317,54.33477738921656,4175,42.94587400177462,1611,16.37872540320476,77.41775944651599,79.74607263723307,63.37436231324406,65.095216557015,77.211386134554,79.54491516927735,63.296497179251865,65.02226665525373,0.2063733119619826,201.1574679557242,0.0778651339921978,72.94990176126248,220.33044,154.36106038620233,230002.0251578893,161136.86558400997,446.00775,295.3003522903777,464987.9638812047,307665.1414900336,436.19038,212.53577911460496,451456.74617673154,218839.17759496765,2947.94728,1367.9956914614809,3031355.185552482,1382413.890640525,978.88378,441.5768126477625,1005423.706874054,444682.5509401863,1567.66802,665.0685338957359,1595042.1629521374,659244.4186692635,0.38018,100000,0,1001502,10454.637507176783,0,0.0,0,0.0,38259,398.7473250169633,0,0.0,39581,409.4368182055431,1251551,0,44857,0,0,8656,0,0,77,0.7829218643979331,0,0.0,1,0.0104389581919724,0,0.0,0.05317,0.1398548056183912,0.3029904081248824,0.01611,0.3558834112990284,0.6441165887009715,23.80003259924977,4.006067437968579,0.3183233532934131,0.2723353293413174,0.1997604790419161,0.2095808383233532,11.14869693341436,6.046051349740998,17.20647441267311,11722.046424885431,47.809502915711576,13.9261685999816,15.081074879606708,9.300818908903672,9.501440527219582,0.5846706586826347,0.8170624450307827,0.6937547027840482,0.5851318944844125,0.1165714285714285,0.7475490196078431,0.9235807860262008,0.8361111111111111,0.7534246575342466,0.1390374331550802,0.5171128431040325,0.7452135493372607,0.6408668730650154,0.5252032520325203,0.1104651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491529885883,0.004581715710622,0.0070115980558289,0.0094046434157339,0.0115919629057187,0.0137322366545869,0.0158087860564672,0.0179533763370621,0.020206872585294,0.0223113767552298,0.0243542435424354,0.0264119567225769,0.0285455835037981,0.0305663368783008,0.032779616625937,0.0347876384068749,0.0371742595160722,0.0392303226341544,0.0411498265079266,0.043175878978438,0.058325768721111,0.0716033120060218,0.0852970774455952,0.0977172691269316,0.1098869848224724,0.1256153992435607,0.1375544232460089,0.1490782283272023,0.1594788954803465,0.1693660689418771,0.1815708540335935,0.1931473260097,0.2044553971752087,0.2147387957857961,0.223025376249588,0.2320022123893805,0.240049044195508,0.2488938301552007,0.2562638756739613,0.263010440370959,0.2698101002633646,0.275673277844577,0.2805592291706026,0.2852031780979275,0.289594022536783,0.293274911382434,0.2969185225895902,0.3005193848654552,0.3037119342627166,0.3077267224590768,0.3058479218129095,0.3032808272793441,0.3015449063075474,0.2988770847447854,0.2975059646418992,0.2941526990481138,0.2909894271737415,0.2916100960201528,0.2915668382865202,0.2908722614118943,0.2917755056347488,0.2937089017567965,0.2946369087275149,0.2953940362087326,0.2957948619815337,0.2972832983710149,0.2979427827612552,0.301103766525318,0.3059060729307887,0.3093030564940677,0.3130328867235079,0.3162249038309532,0.3184685528699019,0.321555036540345,0.3231416549789621,0.3234112922277344,0.3270236995998768,0.3329295376539471,0.3344173441734417,0.341733486063383,0.0,2.51929206138975,53.028877188217606,155.9769314975568,215.05134359079784,fqhc3_80Compliance_baseline,89 -100000,95726,46855,445.70962956772456,5300,54.21724505359045,4163,42.95593673610095,1589,16.21294110273071,77.3893283971574,79.74897148794906,63.35181630130408,65.09294743757948,77.1833899406132,79.54696370391557,63.27319055814532,65.01857762534289,0.205938456544203,202.00778403349773,0.0786257431587529,74.369812236597,222.88134,156.06221857830607,232832.60556170737,163030.12617084812,450.17025,298.15832060259913,469732.1208449115,310933.1222474554,439.91944,214.4347847927544,456462.2255186679,221625.92754319735,2901.51709,1366.226934591878,2993612.498171865,1389774.298092345,956.84895,439.0561205069194,983524.4238764808,442669.695691263,1536.1068,659.1187829912568,1568666.8198817458,657159.1382506739,0.38087,100000,0,1013097,10583.30025280488,0,0.0,0,0.0,38671,403.4222677224578,0,0.0,39938,414.119465975806,1233012,0,44267,0,0,8795,0,0,75,0.7834862001963939,0,0.0,0,0.0,0,0.0,0.053,0.1391550922887074,0.299811320754717,0.01589,0.353143063583815,0.646856936416185,23.55566054668248,4.030086499773328,0.3228441028104732,0.2743214028344943,0.2065817919769397,0.1962527023780927,11.580497963145609,6.5157690252160965,16.951999102526656,11733.743059377492,47.93555518759612,14.021932244007797,15.44323407888981,9.579236808425716,8.891152056272789,0.606293538313716,0.8257443082311734,0.7254464285714286,0.5918604651162791,0.1187270501835985,0.7572663000785546,0.941908713692946,0.8556701030927835,0.6930232558139535,0.1542553191489361,0.5397923875432526,0.740909090909091,0.6725941422594143,0.5581395348837209,0.1081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901880753922,0.0047229570170371,0.0070296095675725,0.0092503274676847,0.0117217681265503,0.0139649451377155,0.0161931354964943,0.0183465643558294,0.0204256797490471,0.022378209129327,0.0242955220821805,0.0265728239011778,0.0286166397796981,0.0308488847258391,0.0329496937070725,0.0350732155959036,0.0370420216785895,0.0391876192847066,0.0409321470148012,0.0427422547242536,0.0571601612263224,0.0712932829651643,0.0845491446492065,0.0974165939415605,0.1103989880356295,0.1260773468977697,0.1378732431715725,0.1477633231843635,0.1584991934019208,0.1684199238646721,0.1806394641337942,0.1928298661820227,0.2035269303529104,0.2125695788633356,0.2218529929577465,0.2312515926036715,0.2395905427429617,0.2480594865795216,0.2558989433542544,0.262946244443426,0.2691680449692918,0.2749348204786456,0.2809817691707455,0.2861486890937387,0.2916171152585977,0.2950414138554884,0.2989621107915468,0.3024553287751315,0.3055623843595947,0.309537301827862,0.3059201246624843,0.3043543935295167,0.3017945909512174,0.2990798430829584,0.2969661955974284,0.2934500747429757,0.2911797133406836,0.2924010967489228,0.2925081101278937,0.2926686321173587,0.2939028706618729,0.2942540481056437,0.2951551034022682,0.2949236997819994,0.2968851006775684,0.2987533623008483,0.300890963088672,0.3058973799806848,0.3099854075463831,0.3125539427226363,0.3153689911983751,0.3190378224402595,0.3244527829893683,0.3284748309541698,0.3309124767225326,0.3355578972017328,0.3363431151241535,0.3357896833300139,0.3457402812241522,0.3444572305331799,0.0,2.0190871464798037,55.641713061792906,154.66481809909212,209.4362381597849,fqhc3_80Compliance_baseline,90 -100000,95665,46483,442.14707573302667,5149,52.44342235927455,4108,42.272513458422615,1655,16.77729577170334,77.35982293729873,79.73539141217653,63.33991942654043,65.08983923652114,77.14896647817123,79.53184986314582,63.26016217984906,65.01613657997662,0.2108564591274984,203.5415490307031,0.079757246691372,73.70265654452623,221.5884,155.10407738711308,231629.54058433077,162132.52222559252,447.10464,295.8658909797029,466714.93231589405,308624.0849036831,428.91227,209.443808967247,444938.4309831182,216175.93016066123,2944.74596,1366.48571909987,3032745.330058015,1383115.9993671873,960.44183,432.3344941312384,988187.7489154864,436330.2246139427,1609.65838,676.9243503628073,1635500.8832906496,667986.8986765577,0.37902,100000,0,1007220,10528.615481105942,0,0.0,0,0.0,38455,401.28573668530805,0,0.0,38945,403.66905346783045,1242618,0,44567,0,0,8754,0,0,75,0.783985783724455,0,0.0,2,0.0209062875659854,0,0.0,0.05149,0.1358503509049654,0.3214216352689842,0.01655,0.368087879352076,0.631912120647924,23.412799947489265,4.145643784111616,0.2984420642648491,0.2650925024342745,0.2195715676728335,0.2168938656280428,11.405093746232524,6.305437557763183,17.54769994343409,11684.30292012707,46.9348593936427,13.17216975595984,14.027805026165344,10.071475006369832,9.66340960514768,0.5754625121713729,0.8071625344352618,0.7014681892332789,0.5776053215077606,0.11672278338945,0.7333333333333333,0.8910675381263616,0.8563685636856369,0.7311320754716981,0.1157894736842105,0.5079916608756081,0.746031746031746,0.6347724620770129,0.5304347826086957,0.1169757489300998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0045002584607899,0.0065844873941054,0.0087648026649875,0.0110216365706848,0.0132118682884625,0.0154372879283465,0.0177223197159531,0.0198574026027089,0.0220148948359112,0.0241053957976908,0.0262329055225549,0.0283168194712823,0.0304365733113673,0.0325748354754193,0.0346973157900176,0.036824614620107,0.0388325346941315,0.0409934917763499,0.0429286086503387,0.0575771822598338,0.07194613725367,0.0850275518236683,0.0974326599326599,0.1092523837650831,0.124533093487117,0.1360118889655538,0.1469779927139479,0.1569556106739651,0.1667471690012343,0.1792426397689555,0.1909903080838161,0.2020328432599492,0.211188214176262,0.2195766613070196,0.2285144566301096,0.2376195631550163,0.2458964788415703,0.2539066929758907,0.261584591263347,0.2679570787660145,0.2733480665567521,0.2791071787653328,0.2844572673618177,0.2892570001091398,0.293384515065392,0.2977436845656031,0.3014911344815323,0.3050514451165917,0.3093609562593076,0.3062557102165851,0.3040873806416157,0.302288271552816,0.2991332189163073,0.2970866305088764,0.2945634568957614,0.2913551364936851,0.2927805294059763,0.2929299830893531,0.2936054810162717,0.2944962023422007,0.2962064271764218,0.2972526553483315,0.2991973244147157,0.2990130318129551,0.2998288914238307,0.3028192934782608,0.3072763643183097,0.310439751899087,0.3144413308600071,0.3178831951429477,0.3218561288272062,0.3271764483389018,0.3280237786754058,0.3305164319248826,0.3349196906603212,0.3370030581039755,0.3337363966142684,0.3334231805929919,0.3362628964463126,0.0,2.603067474886326,53.18618012680368,147.68481441672165,213.1301436965053,fqhc3_80Compliance_baseline,91 -100000,95859,46825,445.1851156385942,5335,54.63232456003088,4195,43.21972897693488,1603,16.409518146444256,77.34109898624328,79.63166613378404,63.34986309044478,65.04391512038268,77.14455674356566,79.43448854242311,63.27691597791979,64.97251630270975,0.1965422426776228,197.1775913609264,0.0729471125249858,71.39881767292877,221.38072,155.0772118572245,230944.115836802,161776.37139676453,448.79039,296.90257344817394,467571.13051461,309121.9326804723,433.28304,210.86894983158663,447965.8352371712,217020.11916437172,2984.28339,1383.108514205184,3076752.146381665,1406408.3332865825,984.73081,443.7379781780721,1015010.6197644456,450647.5116348717,1567.50294,659.388979327294,1606761.2222117905,665304.3078110148,0.38055,100000,0,1006276,10497.459810763728,0,0.0,0,0.0,38544,401.5168111497095,0,0.0,39241,405.3244870069582,1243591,0,44637,0,0,8916,0,0,85,0.865855057949697,0,0.0,0,0.0,0,0.0,0.05335,0.1401918276179214,0.300468603561387,0.01603,0.3548271538599319,0.6451728461400681,23.63360299672438,4.189851554750035,0.3082240762812872,0.2688915375446961,0.2078665077473182,0.2150178784266984,11.218882156048055,5.878938157933298,17.147208324548483,11712.27311083492,48.134095892907865,13.85967188887214,14.781346137994158,9.628819197256854,9.864258668784718,0.5754469606674613,0.8182624113475178,0.6921887084300077,0.5711009174311926,0.1086474501108647,0.7466243050039714,0.9260042283298098,0.8594164456233422,0.7184466019417476,0.1477832512315271,0.5020435967302452,0.7404580152671756,0.6233624454148472,0.5255255255255256,0.0972818311874105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024707609741278,0.0047116758367024,0.006795890008013,0.0090157776108189,0.0113024210761693,0.0135451436945371,0.0158929062624163,0.0179342004590665,0.0199374910628562,0.0219217038166064,0.0241838835568029,0.0261632975395628,0.0282242741082341,0.030341066927311,0.0323338485316847,0.0345229740329438,0.036333933039684,0.0383754662246166,0.0403114456267843,0.0424460581344541,0.056869962357799,0.0701125521219784,0.0832294623498235,0.0952891017159179,0.1076610440752205,0.1232005745487574,0.1350678517325762,0.1465673038079646,0.1569995731967563,0.1671899613154877,0.1793150198521579,0.1909478191293817,0.2023432999663069,0.212283481776952,0.2220144533785047,0.2320259628058438,0.2402311287605831,0.2485099970762206,0.2557089539540107,0.2626963410724916,0.2686503301608595,0.2745648183869346,0.2805212620027434,0.2856903344790008,0.2907576695681733,0.2946634301415774,0.2983917360746354,0.3021792198545491,0.3055275342075993,0.30962337576677,0.3076467659683257,0.3058812210508954,0.3036292479657628,0.3012864989881468,0.2988109393579072,0.2958954024220341,0.2932584269662921,0.2926705095991197,0.293118794933242,0.2938153559661939,0.2956526640114225,0.295808667762181,0.2963810403459423,0.2976393501481016,0.2983989761174567,0.2999843104440144,0.3006507963692413,0.30414644905161,0.3091826367235399,0.3147129801796099,0.3204662977410868,0.3249656484515379,0.3283741368487131,0.3314168999167864,0.3357719002063403,0.3356156297957738,0.338163514338011,0.3400080096115338,0.3369594778351917,0.3384204502098435,0.0,2.067598934688012,55.09465455584121,151.67125004030183,218.70485326183683,fqhc3_80Compliance_baseline,92 -100000,95643,46766,445.1658772727748,5418,55.351672364940455,4276,44.13286910699163,1604,16.457032924521396,77.31769350596971,79.74079942813407,63.289715480586615,65.0814778385933,77.11158180912633,79.53512487219497,63.21222731226673,65.0063431881413,0.2061116968433793,205.6745559390976,0.0774881683198884,75.13465045200007,220.6831,154.53726450184303,230735.819662704,161576.76227159842,449.84301,297.0069586221395,469775.0593352362,309978.9592090869,437.72515,213.00193765785008,454040.77663812303,219912.76196996987,2983.83551,1396.0880262213695,3083185.230492561,1423320.0586547004,1003.78394,457.35269968544526,1033917.0143136455,462958.9981215517,1563.28342,669.9816181169627,1604785.8390054682,674924.9986899488,0.37984,100000,0,1003105,10487.991802850182,0,0.0,0,0.0,38718,404.2219503779681,0,0.0,39764,412.0322449107619,1242188,0,44524,0,0,8710,0,0,76,0.7946216659870561,0,0.0,0,0.0,0,0.0,0.05418,0.1426390058972199,0.2960502030269472,0.01604,0.3557913351016799,0.6442086648983201,23.403103897976447,4.021074371631823,0.3061272217025257,0.2740879326473339,0.2123479887745556,0.2074368568755846,11.37361072153492,6.3560937784699965,17.235187486356473,11755.758915071045,49.226500513487,14.327836099269248,14.948682652708747,10.145558533138892,9.80442322837012,0.5802151543498597,0.802901023890785,0.7051184110007639,0.5561674008810573,0.1262683201803833,0.7480376766091051,0.928,0.8512396694214877,0.7023255813953488,0.1479591836734693,0.5089940039973351,0.7098214285714286,0.6490486257928119,0.5108225108225108,0.1201157742402315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793581327498,0.004421368596114,0.0066192893401015,0.0086281364648014,0.0106219540732752,0.0128769356153219,0.0151082365902923,0.0172968665392985,0.0194651684013386,0.0216691609094077,0.0236205923112457,0.0259726906309122,0.0282772114097415,0.0303483562166678,0.032587020984223,0.0344895382768683,0.0366822187662001,0.0389097783409851,0.0408774924031136,0.0429341648329874,0.0571951092068136,0.0707916382878399,0.0835346511774468,0.0960440671539612,0.1083489978245717,0.1237674620574248,0.1355444092580391,0.147212125734142,0.1579409058815978,0.1674812292555077,0.1797911587668011,0.1916387633692012,0.2026249863849253,0.2127165604398011,0.2227683491293806,0.2327853942055991,0.2408135896289673,0.2492313929524646,0.2578564940962761,0.2651884954738169,0.2710284702041194,0.2779129905689078,0.282789408866995,0.2876143873157509,0.2925290011916632,0.2964638309935538,0.3001301105940049,0.3040946083418108,0.3067422712443685,0.3106192587899904,0.3088771896753692,0.3066589668495373,0.3042395067984123,0.3010935741697204,0.2996648972450402,0.2969801737853384,0.2942292790157038,0.2937420178799489,0.2944050943267725,0.2953996447602131,0.2962666418396797,0.2970633269208119,0.2973589759548557,0.2979279778393351,0.2988012678439503,0.2986324742134787,0.3016236058167443,0.3066637644205354,0.3107929668496768,0.3150523251239279,0.316468883051001,0.3210476291055021,0.325508607198748,0.3273948818600438,0.3289805055498554,0.3284388582168448,0.3324730529831486,0.3401509134233518,0.3429347826086956,0.3444360333080999,0.0,2.1896057212144973,55.72151658034697,160.5410296460383,218.44060844604147,fqhc3_80Compliance_baseline,93 -100000,95722,46286,439.8257453876852,5148,52.74649505860722,4024,41.578738430036985,1531,15.680825724493848,77.34880342590687,79.70576028575269,63.338894218876014,65.07692275836317,77.14872626557109,79.50676683967563,63.26297812308714,65.00361557380954,0.2000771603357805,198.99344607705416,0.0759160957888696,73.30718455362728,221.21484,154.80714182131544,231101.35601011265,161725.77027362096,445.90968,295.62241155589027,465388.05081381503,308384.155738378,427.14361,208.09767712882055,443435.5425085143,215296.38462761373,2808.41728,1316.8160733443483,2902738.503165417,1344474.7741839376,907.99188,418.0817150686192,936137.6799481832,424340.14343624655,1481.34646,642.59232935531,1518615.95035624,645801.9493761804,0.37647,100000,0,1005522,10504.607091368756,0,0.0,0,0.0,38322,399.8767263533984,0,0.0,38615,400.6080106976453,1245061,0,44695,0,0,8817,0,0,94,0.971563485928,0,0.0,0,0.0,0,0.0,0.05148,0.1367439636624432,0.2973970473970474,0.01531,0.3572490706319702,0.6427509293680297,23.469714601212104,4.077830854566009,0.3223161033797216,0.2738568588469185,0.2070079522862823,0.1968190854870775,11.055323541123578,5.915655377579149,16.59354700497397,11654.837457889702,46.09295551468793,13.335770075082753,14.597702499464296,9.258203297360437,8.90127964278045,0.5675944333996024,0.779491833030853,0.6854279105628374,0.5414165666266506,0.1073232323232323,0.7325102880658436,0.8948497854077253,0.869942196531792,0.7254901960784313,0.1206030150753768,0.4962620149519401,0.6949685534591195,0.6182965299684543,0.4817170111287758,0.102866779089376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0046425820054332,0.0070316067170615,0.0092036692774205,0.0112656580445745,0.0136712984170611,0.0158296553762728,0.0179034398285189,0.0199172244647693,0.0221687733483445,0.0242297521677633,0.0261920890038384,0.0282424304734488,0.0303604336322362,0.0325864950176394,0.0346466619134711,0.0365818302304872,0.0386806254474522,0.0405710304958566,0.0426890896397945,0.0572171515695816,0.071406145344943,0.0843807045888499,0.0966072273946662,0.1081847906338993,0.122992955511836,0.1340244471796613,0.1453544698655367,0.1556460142953299,0.1655366989208092,0.1779400833791164,0.1897363210456271,0.2001000554655298,0.2093503937007874,0.2189617991373998,0.2287347788993163,0.2384478772241396,0.2471631844380403,0.2548420789718671,0.262478376923165,0.2683048218708766,0.2743116476010012,0.2803465129764849,0.2854746930218628,0.2897359635811836,0.2938771992465003,0.2984308238174958,0.3024109547279102,0.3055394038066442,0.3094375897077995,0.3066311713455953,0.3037731182500206,0.3013168631644109,0.2991237061311698,0.2973843595985986,0.2953256165996422,0.2916416495496919,0.2919170254915765,0.2913230181991684,0.292332894127702,0.2929973138337561,0.2935577755053882,0.294959979989995,0.2952520933547122,0.2952563488260661,0.2960819927348209,0.2971413957717663,0.2985832497492477,0.3037572456177107,0.3081415999052843,0.311369098907079,0.3136264554202775,0.3150009482268158,0.3161590718265781,0.3173049778865154,0.318127821335234,0.3194080468629567,0.3250255362614913,0.3286228872263785,0.3277928102048705,0.0,1.7879106923770314,53.49445998409716,143.55549306476854,209.4383711660172,fqhc3_80Compliance_baseline,94 -100000,95640,47352,451.1187787536596,5264,53.743203680468426,4134,42.67043078209954,1496,15.296946884148891,77.26744378178137,79.68282976099258,63.28338998351626,65.06938875738729,77.07828129222258,79.49490222309421,63.2117785766693,64.99979573369058,0.1891624895587824,187.9275378983607,0.0716114068469551,69.5930236967115,221.59324,155.27767690218926,231695.14847344207,162356.4166689557,452.88858,299.4521754559422,472968.1514010874,312545.3057650039,442.19139,215.8577933019017,458922.1350899205,223041.8278840055,2857.1428,1329.955031312318,2951633.3437892096,1355514.7831947233,932.51628,421.1553217311408,962427.938101213,428515.1083086586,1449.4835,616.1270112130609,1484569.280635717,620555.1273538561,0.38369,100000,0,1007242,10531.59765788373,0,0.0,0,0.0,38859,405.7193642827269,0,0.0,40067,415.422417398578,1234003,0,44256,0,0,8763,0,0,85,0.8887494772061899,0,0.0,0,0.0,0,0.0,0.05264,0.1371940889780812,0.2841945288753799,0.01496,0.3585112205801861,0.6414887794198139,23.80119724000556,4.064265599762233,0.3217223028543783,0.2762457668118045,0.212385099177552,0.1896468311562651,11.411688977929732,6.252451448157376,16.006853208870236,11828.040746964532,47.25657566394967,13.94333730450922,15.11456184539355,9.712855123716077,8.485821390330813,0.5924044508950169,0.8266199649737302,0.7075187969924812,0.5432801822323462,0.110969387755102,0.764367816091954,0.936082474226804,0.8429752066115702,0.7024390243902439,0.1636363636363636,0.5205761316872428,0.745814307458143,0.656670113753878,0.4947994056463596,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189798771961,0.0045224092476171,0.0070155133203378,0.0092573774489878,0.0115260582508469,0.0136065506986597,0.0157839998368578,0.0180808379871157,0.0202047055695866,0.0223858434629445,0.0242346546330957,0.0265542178575831,0.0283721504402929,0.0305303397182924,0.0327821473545137,0.0347155454930786,0.0367562529128476,0.0387349891537878,0.0408778864156438,0.0431296914095079,0.0578749908557932,0.0731229642973094,0.0870962322006132,0.0998283722742253,0.1120013511944347,0.1279792471808989,0.1394010195412064,0.1498049913684704,0.1599726176851247,0.1696628006872852,0.1818270049929365,0.1937541974479516,0.2052521031266664,0.2152923669467787,0.2245216970123951,0.2348210428367285,0.2425142015334308,0.2507482503319306,0.2587984196902956,0.2661066672778529,0.2721085285674599,0.278465172849324,0.2836432062676781,0.2880766509575374,0.293204662299306,0.296821226362728,0.3007810544234717,0.3046840224344707,0.308695201843652,0.3111269539501479,0.3082033039588218,0.3053181974544203,0.3035216227637695,0.3002457002457002,0.2981060831301659,0.2956038403233956,0.2929254544302996,0.2927648832939942,0.2928043934303208,0.2935243593855803,0.2943047447986828,0.2948748368727014,0.2967205562070699,0.2991635998661759,0.3015488053787969,0.3007056740358826,0.3022655007949125,0.3073671686652681,0.3100430566737844,0.3131693772312574,0.3188505116959064,0.3229800405592913,0.3280844874470372,0.3335621662852784,0.3367720153802869,0.3393471810089021,0.342918323646375,0.3505572441742654,0.3498460677301987,0.3495260663507109,0.0,2.0189767038063646,53.18866955327737,149.98296609604216,217.2760545416793,fqhc3_80Compliance_baseline,95 -100000,95830,46894,444.7459042053637,5350,54.534070750286965,4196,43.12845664197015,1560,15.913596994678077,77.40182060844235,79.71618265465243,63.36325590393732,65.0761545256558,77.19262696778615,79.50955041871848,63.28449054313833,65.00071518204616,0.2091936406561956,206.6322359339523,0.0787653607989895,75.43934360963078,220.58784,154.45528142501357,230186.6221433789,161176.334576869,448.24112,296.4511529013772,467102.7235729938,308720.06737555563,438.27319,213.50435868393205,453318.699780862,219684.27499437917,2974.72278,1384.534739604269,3062874.11040384,1404345.0457219705,982.52469,442.28384595352446,1010928.9679641032,447179.7829004738,1524.96442,655.7784281920318,1557880.6219346758,656454.6449344858,0.38059,100000,0,1002672,10463.028279244496,0,0.0,0,0.0,38422,400.260878639257,0,0.0,39763,410.80037566524055,1247907,0,44813,0,0,8691,0,0,81,0.8452467911927372,0,0.0,1,0.0104351455702807,0,0.0,0.0535,0.1405712183714758,0.2915887850467289,0.0156,0.3524575513851653,0.6475424486148347,23.79256821541191,4.137105335068353,0.3067206863679695,0.2778836987607245,0.2056720686367969,0.209723546234509,11.01920143887884,5.726161005652467,16.724536362925573,11733.072445695632,47.95808019561792,14.403457034229625,14.37394381550438,9.62382515657696,9.556854189306955,0.5872259294566253,0.8336192109777015,0.6783216783216783,0.5828505214368482,0.1318181818181818,0.7493995196156925,0.9285714285714286,0.8189910979228486,0.7013574660633484,0.1978609625668449,0.5184933831014591,0.7613293051359517,0.628421052631579,0.5420560747663551,0.113997113997114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023795540614431,0.0045404331654318,0.0070202491579758,0.00910041947246,0.0112341273472209,0.0135795431410073,0.0160933598328492,0.0182384160032659,0.0202588057321585,0.0224251046539,0.0248070279745369,0.0267895633609098,0.0290178341984889,0.0312496782364267,0.0332222829618474,0.0351216185496703,0.0370477718544588,0.039072950692176,0.0413399117112438,0.0437112972888588,0.0579143330934576,0.0714726267261836,0.0849164352700791,0.097498975851094,0.1098227544153423,0.1255755988340163,0.1368581628653453,0.1474615188366357,0.1575694829868078,0.1676950764879804,0.1801196136221844,0.1912748414147854,0.2021992111525213,0.2117967153643585,0.2214489885664028,0.2302642503680907,0.2394749461897911,0.2477119920847293,0.2551463666367998,0.2629428728371326,0.2684489257880252,0.2746780112666838,0.2803059861194859,0.2852898897939626,0.2904420244989134,0.2939575662795995,0.2977419919481883,0.3015832676815166,0.305882048695967,0.3103221131677755,0.3081493030820306,0.3055166350723921,0.3033794702452048,0.3007736525910878,0.2987087985311102,0.2959415906765034,0.2932691548962361,0.2933904568793538,0.2942097825901901,0.2943288888888888,0.2942163865938042,0.2950593973723546,0.2953877576540714,0.2974037242207835,0.2985787650782276,0.3004557460251696,0.3008681881168519,0.3061002178649237,0.309681905092995,0.3141540642722117,0.3187992393371366,0.3222310335712398,0.325806855141356,0.3296852592648501,0.3301537321726245,0.3303299789375146,0.3303044070876874,0.3360193392425463,0.3333333333333333,0.34080547112462,0.0,2.533710858610024,54.20846246556422,153.3154576911978,215.5939752256665,fqhc3_80Compliance_baseline,96 -100000,95694,47026,448.1263193094656,5199,53.12767780634104,4067,41.89395364390662,1551,15.789913683198527,77.32145341825886,79.70756250872778,63.3143933609397,65.07968203227708,77.1186720392432,79.51039162671258,63.23769451505069,65.00764397285785,0.2027813790156614,197.17088201520028,0.0766988458890125,72.0380594192278,221.57432,155.20668099351414,231544.63184734675,162190.6085998225,449.17298,297.30548996913967,468772.16962400987,310071.00755443366,439.24409,213.7887767032,455560.2127615106,220661.38826657063,2858.47554,1326.0830709380873,2948731.644617217,1347385.1975443468,940.08079,425.86202600279023,968248.9079775116,430891.5355223844,1511.31198,648.9399583906625,1541725.50003135,646405.2068031837,0.37976,100000,0,1007156,10524.755993061215,0,0.0,0,0.0,38514,401.8329257842707,0,0.0,39717,411.5932033356323,1239237,0,44450,0,0,8985,0,0,93,0.9613977887850856,0,0.0,1,0.0104499759650552,0,0.0,0.05199,0.1369022540551927,0.2983266012694749,0.01551,0.3443075225308074,0.6556924774691926,23.98242324171537,4.149468501916663,0.3171871158101795,0.2662896483894763,0.2060486845340546,0.2104745512662896,11.070522457678704,5.793257191762987,16.706916498065663,11728.813227841105,46.406478634026776,13.22007768047303,14.466196595790525,9.391516705458011,9.328687652305211,0.5775756085566757,0.8088642659279779,0.6937984496124031,0.568019093078759,0.1191588785046729,0.7411167512690355,0.9277389277389276,0.8605341246290801,0.7022222222222222,0.1570680628272251,0.5105719237435009,0.7308868501529052,0.6348373557187827,0.5187601957585645,0.1082706766917293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360784631596,0.0045634317006388,0.0067301445509176,0.0088921860550197,0.0113238645612892,0.0135074566050036,0.0154298010340924,0.0175413518480702,0.0198427708318424,0.0216594673163142,0.0240929269317913,0.0262376898509945,0.0282989754351314,0.0303258248665581,0.0324318744838976,0.0346977388571251,0.0366257872058336,0.0385234077441182,0.0406002683111993,0.0425429911412193,0.0571634479805312,0.0713268852321735,0.0842542741097572,0.0975217048145224,0.109753524098928,0.1259658333156925,0.1384171195652173,0.149856736576377,0.1603783668234288,0.1698989552270825,0.1821149598664009,0.1926529021361367,0.2027218136721639,0.2121450845232233,0.2213518746699525,0.2317402666430438,0.240046851469686,0.2478222262187103,0.2560602281230867,0.2636260603770993,0.2696012117428052,0.2752083406384048,0.2804595253306831,0.2860206551170536,0.2906085668136165,0.2949748310790021,0.2984033308743545,0.3024966647608157,0.3070720645052914,0.3093224803751119,0.3063844086021505,0.3034361620375453,0.3012562884685646,0.2995372439344357,0.296863873724187,0.2941149481540391,0.2908901218760373,0.2913499344692005,0.2916531728851693,0.2922665716322167,0.293128914648967,0.2943217665615142,0.2951114081065842,0.2958431932848149,0.2979224210399904,0.2993351583887368,0.3006360706238056,0.3064429994031351,0.3106432174887892,0.3152440471481686,0.3174301119115582,0.3199363732767762,0.3229699842022117,0.327343630524545,0.3311376682036323,0.3342455973346026,0.3377361388419597,0.3332654308413119,0.3349821379499862,0.3360153256704981,0.0,2.350668502153626,51.30611056000161,149.02245960300604,213.28826031615563,fqhc3_80Compliance_baseline,97 -100000,95711,46650,444.3898820407268,5361,54.66456311186802,4295,44.36271692908861,1647,16.831921095798812,77.3455376358958,79.73280480459435,63.32130932583449,65.08744691505179,77.13982823296773,79.53120737048394,63.24288429232406,65.01348366277357,0.2057094029280648,201.5974341104112,0.0784250335104346,73.96325227821876,219.62094,153.7705542482096,229462.3606482013,160661.10191118013,448.64407,296.1990930089976,468217.2164119067,308941.44037884625,439.29581,214.12963355741437,456521.7059690109,221728.9294231153,3035.67635,1415.694503455937,3129542.685793692,1437036.559909455,1026.33708,467.46210580617935,1056518.5192924533,472599.2475328631,1601.92866,685.4027981956672,1636254.6206810083,681585.6382723578,0.37793,100000,0,998277,10430.10730219097,0,0.0,0,0.0,38545,402.1585815632477,0,0.0,39911,414.5500517181933,1250866,0,44886,0,0,8554,0,0,67,0.6895759108148489,0,0.0,0,0.0,0,0.0,0.05361,0.1418516656523694,0.3072188024622272,0.01647,0.357449088960343,0.642550911039657,23.77843310148105,4.173566681075195,0.3215366705471478,0.2633294528521536,0.2069848661233993,0.2081490104772992,11.355664955904206,6.111201605363803,17.603215146093394,11666.722378265433,48.98010695267809,13.819964234715917,15.546124202396811,9.80667407656816,9.80734443899721,0.580209545983702,0.8037135278514589,0.6690803765387401,0.6006749156355455,0.139821029082774,0.7414750198255353,0.9314775160599572,0.8579234972677595,0.7246376811594203,0.1628959276018099,0.51318391562294,0.713855421686747,0.6009852216748769,0.5630498533724341,0.1322436849925705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0044221309397028,0.0063962637697345,0.008668875383646,0.0108346219581671,0.0131085760847423,0.0153066427362281,0.017493336601207,0.0197255399214659,0.0219759963953631,0.0241731193272139,0.0264787748687872,0.028451813983151,0.030243389732704,0.0325386996904024,0.0345091390290298,0.0366491604255363,0.0387433576884755,0.0405569825604975,0.0422288673327984,0.0565964824330534,0.0708783387758519,0.0842892977466178,0.0976020370584707,0.1098394548638214,0.1246866438899525,0.1357944778114985,0.1463354884062756,0.1564126960370319,0.1663678814878428,0.1789075385660231,0.1901223870897866,0.2006357292925334,0.2105378344367237,0.2204035356148249,0.2303012842532161,0.2388504464285714,0.2473054161697531,0.254897956868484,0.2616763588076377,0.2688165824205059,0.274923447324747,0.281421055742744,0.2853825806992136,0.2898898753213991,0.2944222372547814,0.2982999612775897,0.3016473335533162,0.3056046664687891,0.3082918238332435,0.3055928111587982,0.3034308018900226,0.3014957624740416,0.2989392478302796,0.2959342138346176,0.2930908314784889,0.2897859983586894,0.2899978687476433,0.2900294904795186,0.2907855792889491,0.2912875809652177,0.2918107280450459,0.2930976713017256,0.2943551085041372,0.2951393887049566,0.2961344362936371,0.2989693648675506,0.3024639178485332,0.3059485137448042,0.3093317516805061,0.31415508578154,0.3185672899657624,0.3235385863123089,0.327544548474781,0.3311779589541748,0.3374955404923296,0.3385321100917431,0.3401498279003846,0.3420195439739413,0.3480429777436684,0.0,1.9407681704014776,55.23964378325796,157.11686924752857,223.08619196655172,fqhc3_80Compliance_baseline,98 -100000,95613,47030,447.1986027004696,5349,54.66829824396264,4263,44.02121050484767,1636,16.755043770198615,77.23812690061078,79.66731439411303,63.25655152000609,65.05331003312423,77.0358158600878,79.46858698987035,63.18000711981586,64.9804952709436,0.2023110405229857,198.72740424268895,0.0765444001902295,72.81476218062721,219.80772,154.12664759908577,229893.13168711367,161198.42238930456,451.86462,298.6060893486396,472052.92167383095,311762.44793975673,445.06758,216.74858168342,461833.5372804953,223874.8577809957,2997.32233,1405.6097864597418,3098537.343248303,1433792.4408393644,992.36691,453.98573482663153,1021058.8204532856,457975.1653296419,1593.49778,675.2754221927305,1633463.5457521467,677654.0913156419,0.38086,100000,0,999126,10449.687803959712,0,0.0,0,0.0,38688,404.04547498771086,0,0.0,40367,418.5623293903549,1240104,0,44474,0,0,8694,0,0,81,0.8367063056278958,0,0.0,0,0.0,0,0.0,0.05349,0.1404453079871868,0.3058515610394466,0.01636,0.3580224879528824,0.6419775120471176,23.524600075995085,4.0434797394196655,0.3084682148721557,0.2758620689655172,0.208773164438189,0.2068965517241379,11.189435663352324,6.05078743623015,17.384429069812924,11795.57553456863,49.02129554305706,14.460129365321272,14.826557577294285,10.03751059565104,9.697098004790464,0.5810462115880836,0.810374149659864,0.6980988593155893,0.5910112359550562,0.0907029478458049,0.7623211446740858,0.9244897959183672,0.9026548672566372,0.7608695652173914,0.1256281407035175,0.5051580698835274,0.7288629737609329,0.6270491803278688,0.5318181818181819,0.0805270863836017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002482973893303,0.004969926871076,0.007259767687434,0.0094020308386611,0.0115005699397492,0.013967419542162,0.016145647406803,0.0182956727822498,0.0205183806231205,0.0228201530220314,0.0252606090453911,0.0276193705496131,0.0298882279080298,0.0319168676934496,0.0338307430164713,0.0361939449123605,0.0380560422130765,0.0401076184738121,0.0418475375534805,0.0437213766339443,0.0587423553395013,0.072798340109821,0.0863800638762817,0.0992027130925674,0.1117095425167912,0.1268020379844714,0.138469220798538,0.1488023537187263,0.1585739048556571,0.1681992007906157,0.1809971838888229,0.1921096282483548,0.2028658603029312,0.2131023601341134,0.2217557083663933,0.2310432061780174,0.2399534722455233,0.2491346359833579,0.2574453326662194,0.26427939977727,0.2705389666133036,0.277352496395203,0.282818097701013,0.2885796349040391,0.2932088988523112,0.2973804522426788,0.2996963765933955,0.3032409474127265,0.3067725980449429,0.3103119916414278,0.3078802110746724,0.3046962278463554,0.3027100997418281,0.3009828187647459,0.2991731358377205,0.2960611080434382,0.2930449399004154,0.2929665016691608,0.2940280108208061,0.294701099097489,0.2950058072009291,0.2953615684104429,0.2961303291732975,0.2961944369913246,0.2978339784119047,0.2992965085982282,0.3004900843400957,0.303519798868636,0.3064436965362502,0.3093950992384485,0.3141092593433541,0.3176750330250991,0.3231634885901844,0.3292563231408078,0.3293953488372093,0.3339558772032217,0.3357784431137725,0.3351158645276292,0.3427255486318071,0.3455299886835156,0.0,2.235483925528712,54.85683102420893,161.05850390428952,218.4164332210333,fqhc3_80Compliance_baseline,99 -100000,95716,47186,448.40987922604376,5283,54.00351038488864,4206,43.32608968197585,1593,16.24597768398178,77.33641368994157,79.712190271014,63.332022412709286,65.08949324928606,77.13523953311068,79.51486545907237,63.25587993710976,65.01781046639329,0.2011741568308878,197.32481194162688,0.076142475599525,71.68278289277907,220.72138,154.6664546096369,230600.29671110367,161588.92411889014,451.9665,298.9038936253502,471589.0237786786,311675.73198352434,442.89213,215.4676399659537,458691.8801454302,222081.7109301476,2400.18048,1128.498490614431,2472533.03522922,1144325.4507634975,973.82285,437.7312285703167,999866.041205232,440064.601448262,1556.10888,658.3792755957905,1588364.4113836768,655265.09473501,0.38333,100000,0,1003279,10481.831668686533,0,0.0,0,0.0,38816,404.8852856366752,0,0.0,40238,416.3880646913787,1242804,0,44630,0,0,8758,0,0,77,0.8044632036441138,0,0.0,0,0.0,0,0.0,0.05283,0.1378185897268672,0.3015332197614991,0.01593,0.3596666062692517,0.6403333937307484,23.57717982677658,4.174755572134367,0.3181169757489301,0.2646219686162624,0.2089871611982881,0.2082738944365192,11.218829009052383,5.854482151236704,16.968522362522805,11825.057667333887,48.29545812812904,13.782878205050828,15.283537664008431,9.722270249383543,9.506772009686232,0.5936757013789824,0.8131176999101527,0.7257100149476831,0.590443686006826,0.1164383561643835,0.7600950118764845,0.8961864406779662,0.8724489795918368,0.772093023255814,0.1576086956521739,0.5222562011552837,0.7519500780031201,0.6649048625792812,0.5316265060240963,0.1054913294797687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.004604509173521,0.0066500837605969,0.0091064314171883,0.01147472610195,0.0138614466420874,0.0159699772585892,0.018378599142332,0.0205494157218365,0.0228999037733145,0.0247040131208036,0.0266934970534485,0.0289066677635638,0.031105800922874,0.0333601617962687,0.0356906602720469,0.0378147779986746,0.0396302559367575,0.041771033622616,0.0436268177840743,0.0583738852572001,0.0723523133906711,0.0857769108146656,0.097980466984157,0.1100898089977653,0.1257253384912959,0.1374777372572301,0.1485983494980432,0.1583919555076378,0.1686754732748369,0.1804836574577311,0.1920539827410947,0.2033358687384548,0.213465718561239,0.2228656191627293,0.232455800891169,0.2414350175477689,0.2490223840345199,0.257422038836052,0.264647019132901,0.2716411702176827,0.2775209004717201,0.2831951432688446,0.2890877335693949,0.2926320639193007,0.2973076024254947,0.3015064078543056,0.3055693147901187,0.3080264791063302,0.3118713334651638,0.3090273106417328,0.3062746879172,0.3049802171188803,0.303666584834,0.3003997206413362,0.2971371708511941,0.2932687743283015,0.2939516724355714,0.2956073586129219,0.2963676242443696,0.2969638049655997,0.2985527820497654,0.2984517152157583,0.2999399051837343,0.3018800143695366,0.3048837450695453,0.3062829462886451,0.3109174975623565,0.3154425942156003,0.3193390793184255,0.3222603523221231,0.3272853778634125,0.3287373930805566,0.3338200261277184,0.3386837881219903,0.3380535221408856,0.3391921060746222,0.3433441558441558,0.3404197328972472,0.3436206247647723,0.0,2.353695633583336,55.033222718866455,150.6727489661775,221.3245012551976,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95606,47134,448.6747693659394,5184,52.98830617325273,4114,42.41365604669164,1648,16.76673012154049,77.26635035352784,79.7032371978995,63.26822878755484,65.07147733252066,77.05195362440362,79.49576412742188,63.18639514613877,64.99563345440481,0.2143967291242177,207.47307047761865,0.0818336414160683,75.84387811584747,220.31394,154.37236423110556,230439.44940694096,161467.2345157266,451.83548,299.4788402644363,471969.61487772735,312610.74646406743,438.72919,214.1578233691953,455674.9680982365,221422.06294176885,2368.63728,1114.7764213779665,2443500.1568939188,1132012.5320356116,979.79019,447.52327529193855,1007178.6289563417,450464.16678875295,1614.9064,697.2396857355873,1645190.7830052509,690311.5945644242,0.38168,100000,0,1001427,10474.520427588228,0,0.0,0,0.0,38788,405.0373407526724,0,0.0,39792,412.9657134489468,1239027,0,44404,0,0,8785,0,0,67,0.7007928372696275,0,0.0,0,0.0,0,0.0,0.05184,0.1358205826870677,0.3179012345679012,0.01648,0.3453674709891324,0.6546325290108675,23.6849500644542,4.178275110791507,0.2999513855128828,0.268595041322314,0.205153135634419,0.226300437530384,10.958087930286926,5.728149259612172,17.809942249128103,11794.434416259324,47.216133766494906,13.468738561293206,14.0566077189472,9.493759429883005,10.19702805637149,0.5561497326203209,0.7800904977375566,0.6782820097244733,0.5734597156398105,0.112781954887218,0.719253604749788,0.8930232558139535,0.8823529411764706,0.7129186602870813,0.1382488479262673,0.4906303236797274,0.7081481481481482,0.605927552140505,0.5275590551181102,0.1050420168067226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004666497590667,0.0070175794936374,0.0091101350252155,0.0113393456973595,0.0137692754568525,0.0159413781841933,0.0179638882928175,0.0203712040599165,0.0226560098370734,0.0247547107845149,0.0269822996114548,0.0291326099936175,0.0311581725762715,0.0332080071064102,0.0354400778129591,0.0373875367967162,0.039302443938969,0.0414554689370205,0.0434075217454788,0.0584201062183749,0.0723829684667218,0.0858658542990703,0.0985706310500647,0.1108282811212742,0.1267544463629333,0.1386284888293688,0.1493946343805003,0.1602102311043555,0.1692635017515205,0.1825400250291287,0.1942107545533391,0.2043459318157063,0.214405451896002,0.2227782247842428,0.2318179801206957,0.2412999519612114,0.2499268034503727,0.2568539453502244,0.263756179813946,0.2710256558753692,0.277758257203092,0.2829725983580339,0.2880837590846945,0.2922021862574628,0.2950469631330149,0.2990713936614158,0.303616912888436,0.3070843698175787,0.3098888918212768,0.3075483636461544,0.3049823924287443,0.3025053867928514,0.3004203197896957,0.2986094604231043,0.2950185122854258,0.2925413272166416,0.2924639774181902,0.2938676588554556,0.2955438120402771,0.2954583794118198,0.2959008127187518,0.2966952366981705,0.2978595048708553,0.2985691956234219,0.2985401459854014,0.3000541356811123,0.30487574709028,0.3099357736988032,0.3122294157365849,0.3167727272727272,0.3193892158422141,0.3242987111448067,0.3288946054323977,0.3328996282527881,0.3345807507893814,0.3345443536179231,0.3336671339875826,0.3402061855670103,0.337593984962406,0.0,2.284480454086341,51.23704942498561,158.95600593424237,211.48816406915904,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95709,46758,445.5798305279545,5174,52.94172961790427,4121,42.50383976428549,1609,16.42478763752625,77.34534288058313,79.71467395715533,63.32656324425341,65.07466217470107,77.14400411578032,79.5148696948587,63.25165269786414,65.0027126734935,0.2013387648028128,199.80426229662385,0.0749105463892689,71.94950120756971,220.82786,154.6162533970023,230728.41634538025,161548.29054425636,447.55315,296.1525002722705,467078.9998850683,308890.48080355086,435.66705,211.4877128167784,451978.87346017617,218423.82262652417,2356.31516,1091.5853376488706,2433714.196157101,1112281.7056377889,966.83479,425.24503011134186,999760.3987085854,433889.10145476594,1566.50652,656.9073758399745,1602204.1814249444,658136.485933122,0.3785,100000,0,1003763,10487.655288426377,0,0.0,0,0.0,38455,401.2161865655268,0,0.0,39542,409.86741058834593,1243604,0,44659,0,0,8713,0,0,63,0.6582453060840673,0,0.0,0,0.0,0,0.0,0.05174,0.1366974900924703,0.3109779667568612,0.01609,0.3466468511982166,0.6533531488017834,23.8867145023876,4.141558083735052,0.299927202135404,0.2744479495268139,0.2162096578500364,0.2094151904877457,11.63104877737368,6.350002332310215,17.101093511524084,11691.821848207925,46.950412078874976,13.86175913322729,13.809239889190678,9.88262313994058,9.396789916516438,0.5738898325649114,0.8063660477453581,0.6731391585760518,0.5836139169472503,0.1170336037079953,0.7649572649572649,0.9193205944798302,0.8754098360655738,0.7544642857142857,0.1529411764705882,0.4981362250084717,0.7257575757575757,0.60687432867884,0.5262368815592204,0.1082251082251082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0044594895911458,0.0068179051174871,0.0087852935202112,0.0108096564908784,0.0130219204023661,0.0151269584008643,0.0175066096383328,0.0196266841126081,0.0219467504683133,0.0240504382592649,0.0257550395875907,0.0279054936690632,0.0298141509045205,0.0319195046439628,0.033822617324788,0.0359676467237647,0.0380045040837718,0.0399272160124772,0.0420496467204401,0.0569190600522193,0.0711684179679323,0.083985645631781,0.0970572453628205,0.1101040369721653,0.1259008413143552,0.1374170603535219,0.1480412415056557,0.1591839351935963,0.1678572194692923,0.1796338796047882,0.1908685390095494,0.2012295304934443,0.2113974210215206,0.2206243461983152,0.2297836495832594,0.2389805164371638,0.2475589452843772,0.2556318447483402,0.2621910717148812,0.269761040042564,0.2755496849758618,0.2818610923803102,0.2866073460198081,0.2910510277174111,0.295247949153795,0.2988593441228706,0.3023246951219512,0.3055879230430617,0.3078770920225965,0.3057317976695629,0.3033581062482796,0.3017670535475045,0.2991660524071745,0.2967046028585862,0.2927068187036045,0.2900891220529675,0.2910281597904388,0.2909814458937773,0.2922713045952482,0.2930008765222581,0.2953043888626711,0.2962375907232835,0.2961038381765873,0.296756068864504,0.2997375055227798,0.299547127087461,0.3038815276695245,0.3074434782608695,0.3110639802050194,0.3167156751866093,0.3210612374070362,0.3217988757026858,0.3261643316925407,0.3286367453578426,0.3325502173146952,0.3353999697565401,0.3346007604562737,0.3314285714285714,0.3284218689414502,0.0,2.187841077621582,51.03919055828201,151.57950699036545,219.43269791446303,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95656,46429,441.3941624153216,5255,53.6923977586351,4169,42.91419252320816,1623,16.517521117337125,77.2498286400838,79.64801149886452,63.26585613190741,65.03869335476745,77.04446066051041,79.44774165399306,63.18880175562721,64.96629297804367,0.2053679795733956,200.26984487145685,0.077054376280202,72.40037672377753,219.3367,153.69353188875132,229297.3781048758,160673.17459307445,446.90613,295.7385089010842,466512.3254160743,308479.77011487423,432.36629,210.70687432852472,448114.0231663461,217200.9456894112,2367.0592,1109.266654201288,2435451.994647487,1120539.656896889,975.29973,443.0952076422478,998536.913523459,442169.6557518995,1571.52396,665.7076512208258,1600472.6938195198,660120.8745745961,0.37925,100000,0,996985,10422.608095676173,0,0.0,0,0.0,38455,401.29213013297647,0,0.0,39316,407.06280839675503,1244661,0,44679,0,0,8657,0,0,69,0.7213347829723175,0,0.0,0,0.0,0,0.0,0.05255,0.1385629531970995,0.308848715509039,0.01623,0.3511547554100745,0.6488452445899254,23.634585058357622,4.14675408815966,0.3031902134804509,0.2748860638042696,0.2204365555289038,0.2014871671863756,11.376546903833736,6.20145055039093,17.404730556288833,11768.982305041587,47.9194274085774,14.157361913752586,14.400414713772856,10.222539422860455,9.139111358191492,0.5895898296953705,0.8211169284467714,0.6914556962025317,0.5756256800870512,0.1357142857142857,0.7631147540983606,0.9318181818181818,0.8404558404558404,0.7311320754716981,0.1734104046242774,0.5178026449643948,0.7401812688821753,0.6341730558598029,0.5289957567185289,0.1259370314842578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.0046852657519243,0.0070746338344109,0.0094086567770778,0.0115449949649581,0.0137086753712341,0.0158053595464371,0.0178689947414101,0.0200143178564123,0.0220911297508218,0.0243812376273168,0.0265536723163841,0.0286155270875135,0.0306422188553229,0.0328105803281058,0.0349467369945185,0.0369096221996559,0.0389638704318936,0.0410844890188204,0.0429990928901354,0.0578413958833977,0.0716163149903136,0.0848524920499984,0.0978976830320503,0.1091294758281535,0.1247142494284988,0.1368815639966443,0.1480088236234401,0.1589216944801026,0.1686521790506064,0.1810972649296002,0.1927756571527717,0.2035199441694109,0.2131552104241387,0.2218359215478516,0.2311563930491978,0.2396270552813315,0.2469321001579066,0.2548452810433714,0.2621632488942501,0.2687971016175668,0.2759090482006953,0.2814527822015165,0.286681824196711,0.2920759499841567,0.296033433898808,0.2999384908928862,0.3040802778061485,0.3085892358631435,0.3117780159580802,0.3092583092583092,0.3062147515891948,0.3029973598384842,0.3008964907961244,0.2999389581193145,0.2969556757419295,0.2942163411314065,0.294456857462049,0.2960050599155541,0.2977570294054518,0.2984332488976451,0.2981574207849268,0.2985421641322106,0.2990821580479069,0.2997519924875394,0.3015835868632499,0.3022998610441539,0.3059708480289647,0.3098513075878399,0.3139489039583661,0.3175261449693473,0.3214304441298306,0.3245985310593801,0.3294632086851628,0.3356253484482438,0.3384399485440299,0.3369565217391304,0.3399798590130916,0.3428493746601413,0.3438438438438438,0.0,2.4458085383784414,53.06472663412168,157.56529082998796,214.57593646678345,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95731,46827,445.6759043570004,5224,53.24294115803659,4141,42.51496380482811,1570,15.940499942547348,77.32698317968122,79.68539285015744,63.31555014592704,65.06076008531291,77.12673135539958,79.4909590403859,63.23979913240053,64.98991105144567,0.2002518242816364,194.4338097715388,0.0757510135265135,70.8490338672334,219.82972,154.06085969724816,229632.74174509823,160931.00426951368,450.98741,298.0518248399548,470378.9159206527,310623.3663494112,438.75142,213.9145716395257,453030.48124432,219492.0022506043,2349.32056,1102.1177315689326,2412688.7633055123,1109868.5395210874,958.79483,430.09166111744287,980022.4483187264,427745.8763162223,1528.42584,650.0857598097739,1553035.0252269378,642354.4958093644,0.38095,100000,0,999226,10437.851897504466,0,0.0,0,0.0,38667,403.1296027410139,0,0.0,39820,410.7760286636513,1245018,0,44721,0,0,8845,0,0,80,0.8252290271698823,0,0.0,1,0.0104459370527833,0,0.0,0.05224,0.1371308570678567,0.3005359877488514,0.0157,0.3494682801613494,0.6505317198386505,23.82017456536325,4.148866540229491,0.3071721806326974,0.2765032600821058,0.2100941801497222,0.2062303791354745,11.34510459113964,6.13334258278961,16.694324391394744,11752.629627625663,47.3237603411442,14.1104598991234,14.410508032146382,9.615008844947864,9.187783564926551,0.578121226756822,0.8087336244541484,0.6863207547169812,0.5643678160919541,0.1217798594847775,0.7520391517128875,0.934959349593496,0.8319327731092437,0.7142857142857143,0.1381215469613259,0.5049742710120069,0.7136294027565084,0.6295081967213115,0.5207715133531158,0.1173848439821693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021883389899194,0.0045324572610573,0.0069930779692669,0.0093668725617685,0.0115636918382913,0.0136347436484904,0.015937920626504,0.0180777004266786,0.0202158538081026,0.0224050930901423,0.0245667257689272,0.0268536292433558,0.0288019735827722,0.0309111690023373,0.0328749883952425,0.0346876356196656,0.0363694715918502,0.0382959743587083,0.0404510731174972,0.0426715561158049,0.0573435917779332,0.0718911171787548,0.0850876457267466,0.0979501734468621,0.1097197187700935,0.1254678480049058,0.1368891057186492,0.1479963376203049,0.158525897265984,0.1687595251894305,0.1806531580081914,0.1925834470509238,0.203932406994331,0.2137550739067167,0.2230588028091495,0.2328079276403298,0.2417861092802163,0.2494086639183618,0.2570120531200654,0.2638287142103936,0.2700396044190193,0.2762441292559234,0.2813651715352254,0.2868030052087084,0.2911574057183164,0.2957390392797681,0.3000776592013628,0.3035557422755223,0.3069001696869211,0.3094952319400662,0.3068666352814581,0.3043854825405554,0.3026935790139953,0.3006641640196361,0.2988555227336826,0.2958841626742993,0.2927654461519003,0.2924072405602424,0.2926941495253838,0.29296,0.2936533114374755,0.2943678613627412,0.2938051616681307,0.2953730312548731,0.2957459556620731,0.2977236110389273,0.2983376829683422,0.3028909329829172,0.3070778246764572,0.3104100200874394,0.313249751961757,0.3182583087925957,0.3207441513190642,0.3248685199098422,0.3269337785197551,0.3333722559551611,0.3407922588448745,0.3398155573376102,0.3363636363636363,0.3399923165578179,0.0,2.855360739138222,52.842993636288085,151.45468523704966,213.70103220472325,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95759,46939,446.8091772052757,5175,52.70522875134452,4122,42.43987510312347,1573,15.988053342244593,77.39144353273707,79.73105757097166,63.36142006586866,65.08749042699789,77.19025434481087,79.53474787150806,63.285013149359386,65.01595822280049,0.2011891879262037,196.30969946359755,0.0764069165092706,71.53220419739625,222.13378,155.52269147524194,231970.780814336,162409.6951756787,452.73189,299.8147423476663,472194.73887571925,312506.501418511,438.11088,213.19870529969148,454382.52279159136,220130.11499309025,2366.65092,1103.253327323252,2435071.5859605884,1116191.2892643851,959.35948,433.20996152970207,981442.0994371286,432314.3055490018,1540.4385,657.2812422277508,1565555.864200754,648470.1346737171,0.38141,100000,0,1009699,10544.126400651636,0,0.0,0,0.0,38746,404.0038012092858,0,0.0,39691,411.37647636253513,1238166,0,44419,0,0,8816,0,0,87,0.9085307908395034,0,0.0,1,0.0104428826533276,0,0.0,0.05175,0.1356807634828662,0.3039613526570048,0.01573,0.3415850729724736,0.6584149270275264,23.53805509787099,4.136794848227326,0.3134400776322174,0.2641921397379912,0.2100921882581271,0.2122755943716642,11.056823794381025,5.749878791127603,16.64718497322869,11687.68489687687,46.73626486794199,13.203078619546195,14.5214697918493,9.536030082920988,9.475686373625503,0.5701115963124697,0.7887970615243343,0.6818885448916409,0.5854503464203233,0.1177142857142857,0.7471763683753258,0.9386363636363636,0.8419452887537994,0.7291666666666666,0.1578947368421052,0.5015146415348367,0.687211093990755,0.6272066458982347,0.5445103857566765,0.1065693430656934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084399805605,0.0046008695035317,0.0067368762809196,0.0087852042940859,0.0111640959420849,0.0133437830795537,0.0153454249031995,0.0179056053216887,0.0201861291871405,0.0220696570352787,0.024108606557377,0.026325508864084,0.0283803084637436,0.0304951473297448,0.0325437077354445,0.0345743032456665,0.0366165405752253,0.0384156649622999,0.0403421966279287,0.0423659072679354,0.0572197983424837,0.071477152633176,0.0841787224221315,0.0972298178452736,0.1099101569090602,0.1251189745976014,0.1368543854067239,0.1483747406501037,0.1585372365989896,0.1688911759345619,0.1813170841990806,0.1927532313017143,0.2030348155958217,0.2126327520650321,0.2219608188034564,0.2311216359773371,0.2401908328874621,0.2484021342319573,0.2554775965451186,0.2617718391067588,0.2676450196440952,0.2734506449803701,0.2791912981792386,0.2841816636133961,0.2887010514316205,0.2927219276989877,0.2967399450412191,0.3023678491084025,0.306713561601324,0.3083243357122165,0.3059166353332975,0.3034621821074867,0.3008424599831508,0.2985794268771859,0.2969286306071724,0.2928642144543447,0.2896365956240253,0.2901198289091324,0.2902047404638518,0.2900330572637116,0.2913522599925289,0.2923531730390225,0.2940893801057184,0.2943540285312437,0.2960640138408305,0.296508299942759,0.2972490073737946,0.299683355801486,0.3044285614182608,0.3096227684756363,0.3136667120861153,0.3180997876857749,0.3213813927156067,0.3261017977698551,0.3315637515134581,0.3380051389862182,0.3414852371011035,0.3471287128712871,0.3527681198181331,0.3525449101796407,0.0,2.355744252446601,49.66029648126681,151.88745171463884,221.2869388930121,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95718,47040,447.2513006957939,5326,54.13819762218182,4222,43.419210597797694,1641,16.736663950354163,77.37264048070351,79.73236417119313,63.34029949113111,65.08203859267782,77.15575871564243,79.51851295094896,63.2587176266821,65.00408423648294,0.2168817650610748,213.85122024416603,0.0815818644490136,77.95435619487989,221.12706,154.88199658938817,231019.0768716438,161810.51588143097,450.58962,298.78806434435023,470078.33427359536,311486.4114757415,442.01341,216.29408079231496,457165.5070101757,222448.2572223985,2399.92376,1136.9697166026097,2471396.8532564407,1151993.226564085,992.40446,452.0687774802937,1022424.288012704,457916.3767319553,1596.0374,683.3541243751494,1630353.2668881505,682389.2301520618,0.3812,100000,0,1005123,10500.867130529265,0,0.0,0,0.0,38608,402.6410915397313,0,0.0,40141,414.8644977956079,1237966,0,44477,0,0,8716,0,0,87,0.8880252408115505,0,0.0,0,0.0,0,0.0,0.05326,0.139716684155299,0.3081111528351483,0.01641,0.3455563583815029,0.6544436416184971,23.448796199174883,4.223432522137566,0.3043581241117953,0.2749881572714353,0.2148270961629559,0.2058266224538133,11.289545471937313,6.090571958991341,17.64405756169099,11740.750778681182,48.28114781280562,14.024002441121686,14.569840357075222,10.202616129986575,9.48468888462214,0.583846518237802,0.788975021533161,0.7042801556420234,0.577728776185226,0.1380897583429229,0.764937106918239,0.9232409381663113,0.8636363636363636,0.75,0.1837837837837838,0.5057627118644068,0.6979768786127167,0.6388583973655324,0.5143288084464555,0.1257309941520467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088607594936,0.004712535344015,0.0072126358075413,0.0092825804354891,0.0113371767887828,0.0138546735346214,0.0163296093941123,0.0184132362997968,0.0204131699189401,0.0227863650322448,0.0248731224688573,0.0270733660499784,0.0293358559633121,0.0315139031925849,0.0335403598547375,0.0355120095911364,0.0374787758313662,0.0393307956395921,0.0413029018042737,0.0432649745346984,0.0577192139829181,0.0711923994475369,0.0847916120576671,0.0984507693601278,0.110569979865701,0.1258682115634679,0.137397778979858,0.1482754584056105,0.1589183300759347,0.1680644331002531,0.1803426995939731,0.1920126378204087,0.2032563653567971,0.2124231619014285,0.2214568661971831,0.2318431111849759,0.2407349526701196,0.2487445107532935,0.2566965807111212,0.264532850147364,0.2713528281354911,0.2765735820790712,0.2816228834145012,0.2867308246136124,0.2912112628110829,0.2957737794275425,0.2991475459085959,0.3020650542966862,0.3046601011996428,0.3083626679323392,0.3057252011084506,0.3036217442100199,0.3010595336926085,0.2987076745361345,0.2967016647608299,0.2931607058139357,0.2907335114033285,0.2905886210854238,0.2920711147440482,0.2939786436401755,0.2938009909473605,0.2944052785578226,0.2947456213511259,0.2939411450924609,0.2958335324191313,0.2973707365043217,0.2974585135555367,0.3011991901572963,0.3046923879040667,0.3094855620420797,0.3125393824826717,0.3171949745045471,0.3193940152748216,0.3224613061532654,0.3291527313266443,0.3285177354944796,0.3336872440467162,0.3410821643286573,0.3475409836065574,0.3361153262518968,0.0,2.674998580152914,54.89688035356901,151.97434461244023,218.3554032643716,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95757,46668,443.9779859435864,5260,53.88639994987312,4206,43.49551468822123,1580,16.23902169032029,77.33281654085012,79.69973286704607,63.319784280511655,65.07132289709556,77.1323929571974,79.49959873441392,63.24492394194552,64.99854970866359,0.2004235836527215,200.13413263214372,0.0748603385661397,72.77318843196667,220.6831,154.54489481290705,230461.58505383416,161392.79093215853,448.25971,295.6643931443048,467697.0247605919,308340.49306042964,434.34577,210.6679613830984,451417.5569410069,218230.5760966803,2400.85988,1118.5721362507918,2484255.229382708,1145175.1233641591,961.71809,434.00367117599865,993225.539647232,442128.0545296936,1534.89574,651.8251540575139,1578698.2048309783,658510.0267506161,0.3796,100000,0,1003105,10475.5265933561,0,0.0,0,0.0,38473,401.32836241736896,0,0.0,39500,410.2467704710882,1246120,0,44755,0,0,8606,0,0,69,0.7205739528180707,0,0.0,0,0.0,0,0.0,0.0526,0.1385669125395152,0.3003802281368821,0.0158,0.3528126706717641,0.647187329328236,23.81907212482271,4.195396189621375,0.3121730860675226,0.2698525915359011,0.2116024726581074,0.2063718497384688,11.128317479120124,5.86583068757564,16.910248486447973,11684.808865132713,48.08703856064929,13.731621055389454,14.974932393710004,9.842226480493109,9.538258631056722,0.572753209700428,0.788546255506608,0.6923076923076923,0.5842696629213483,0.097926267281106,0.7398508699254349,0.9080717488789236,0.8739255014326648,0.7416267942583732,0.1379310344827586,0.5055018339446482,0.7111756168359942,0.6265560165975104,0.5359765051395007,0.0857142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023001550324757,0.0044019352286673,0.0066910346228043,0.0088431709374777,0.0107943678020591,0.0129665091264667,0.0152663192567739,0.0175191424196018,0.0196417251180957,0.0219739711860415,0.0238061063380426,0.0257729312345336,0.0281316511922021,0.0303707518022657,0.0324900435401663,0.0348227852026419,0.0367125444019842,0.0386978269442311,0.0406671449813353,0.0425551863156688,0.0576254554185675,0.0711842063965349,0.0850198183839104,0.0984693984820133,0.1103967283612294,0.1256238369142277,0.1364610065961102,0.1474137931034482,0.1578891155518055,0.1674905901150633,0.1792196886506039,0.1909367258408247,0.2017440848990953,0.2108577300653737,0.2199687644354501,0.2293844109831709,0.2376871750239896,0.2468575929781128,0.2547780098057018,0.262250973208152,0.2693691921354426,0.2751957491134233,0.2811667318009024,0.2860208093594169,0.2905640203154236,0.2946493532117445,0.2979629142721205,0.3021551614462736,0.3057206874668117,0.3081574187756611,0.3063634405127377,0.3037257168014969,0.3018283235202975,0.2989888776541962,0.2970695752964603,0.2945387792565397,0.2909131149614266,0.2902174091125055,0.2906693470076151,0.2908712437952568,0.2914581310226339,0.2930647005480424,0.2938856427378964,0.2947263017356475,0.2970455851369469,0.2991952232606438,0.2993753549119818,0.3032476276972221,0.3071518456375839,0.3116821506226527,0.3142313097882758,0.3197631384159881,0.3206460498309753,0.3241915986702931,0.326141541895285,0.3290277125410991,0.3323790869368691,0.3327359617682198,0.3359501894964807,0.3268145919518616,0.0,1.6193568526905402,53.35878387996957,158.72402705533148,217.98324403465455,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95776,47159,447.4189776144337,5396,55.10775141997996,4272,43.96717340461076,1612,16.43417975275643,77.34910350822409,79.67721805971792,63.34642956891118,65.06640530570395,77.14195461718059,79.47445089124446,63.26839528554862,64.99307055607773,0.2071488910435022,202.7671684734571,0.0780342833625553,73.33474962622688,221.20098,154.99903930795492,230956.586201136,161834.94748992953,448.40609,296.4458231287782,467546.9115436017,308885.0804488593,442.79143,215.2112212402692,458295.5124457066,221635.06941279175,2450.21948,1139.8781611075085,2522814.609087872,1154701.2614435928,994.91314,450.060468534264,1021439.045272302,452586.8753330005,1583.9665,674.2307584176543,1615948.6301369865,670917.1723186874,0.38275,100000,0,1005459,10498.02664550618,0,0.0,0,0.0,38508,401.3844804543936,0,0.0,40159,415.3545773471433,1241858,0,44561,0,0,8730,0,0,80,0.824841296358169,0,0.0,0,0.0,0,0.0,0.05396,0.1409797517962116,0.2987398072646405,0.01612,0.3551931939028713,0.6448068060971287,23.602891273944817,4.179608609142942,0.3066479400749063,0.2724719101123595,0.2045880149812734,0.2162921348314606,10.957035346630269,5.660506464824419,17.366260420308144,11800.346412796462,48.84694162944626,14.112016911489343,14.82259097683225,9.779655070437164,10.1326786706875,0.5781835205992509,0.7946735395189003,0.7030534351145038,0.5755148741418764,0.1309523809523809,0.7506132461161079,0.9046610169491526,0.850415512465374,0.71,0.2210526315789473,0.5090193506067563,0.7196531791907514,0.6469968387776607,0.5356083086053413,0.1076294277929155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0044902137666102,0.0068275659169532,0.0093244355059877,0.011591491438565,0.0141394193574656,0.0162457449193827,0.0185334489972955,0.0207828832418845,0.0232346381289517,0.0253759783633159,0.0274496926660578,0.0296076295398022,0.0317115596405817,0.0337763297625552,0.035768881176665,0.0378932119205298,0.0397146353097326,0.0418558736426456,0.04398808655989,0.0583483787478736,0.0717602761217445,0.0849602617065447,0.0982133473462953,0.1105584301988597,0.1259775119414972,0.1376466722491335,0.1490248622897126,0.158983224484569,0.1679772030938658,0.1803437476457483,0.1916543215216427,0.2028983931638799,0.2133656979159832,0.2220730929173359,0.2317412152958504,0.2401053348062352,0.2480467652183688,0.2559830320078035,0.2630326058344873,0.27001838511615,0.2767505233734489,0.2827449959778545,0.2874817352145064,0.2916975222463671,0.2960561991619423,0.300904665974299,0.3044662170759639,0.3076793554988537,0.3110330807614119,0.3083801290079317,0.3057478223775646,0.3044182020352724,0.3019164718446041,0.3011270947649414,0.2973105134474327,0.2947383385723537,0.2946977018460581,0.2953213385129148,0.2966586474204758,0.2973412305450197,0.2983699084306915,0.2984743991640543,0.2990508096035734,0.300464065017192,0.3018922018348624,0.3031936127744511,0.3070426973373247,0.3113970329747592,0.3142777578867804,0.3181383487408352,0.3216861081654295,0.324625213485989,0.3282082508753235,0.3293463929176869,0.3335715987610197,0.3337952270977675,0.3341453511977263,0.3412348401323043,0.3440187646598905,0.0,2.397663112023801,53.18479527580061,158.1509834391621,226.70833262574808,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95672,46736,445.6162722635672,5347,54.68684672631491,4291,44.32853917551635,1630,16.7029015803997,77.31532774038504,79.70777961363297,63.31028192710126,65.07650342776073,77.11002785401506,79.50266184479976,63.23426676150344,65.00219021417493,0.2052998863699855,205.11776883320465,0.0760151655978234,74.31321358579623,222.12564,155.5676796246598,232173.67672882348,162604.78115295994,452.17861,299.06948897624096,472102.3392424116,312068.38800459483,443.96297,216.2562629279357,460386.0272598043,223142.3215897185,2454.39016,1141.2880724041197,2536568.316748892,1164196.209575144,1012.38574,456.69566430426784,1042933.8782506896,462105.5526217353,1599.83256,669.203260123788,1641267.9989965716,674590.1795851304,0.37817,100000,0,1009662,10553.348942219249,0,0.0,0,0.0,38778,404.7683752822143,0,0.0,40267,417.3112300359562,1233416,0,44297,0,0,8819,0,0,79,0.8152855589932269,0,0.0,1,0.0104523789614516,0,0.0,0.05347,0.1413914377131977,0.3048438376659809,0.0163,0.3488912732474964,0.6511087267525035,23.674135908708493,4.186227266654583,0.3083197389885807,0.2782568165928687,0.1952924726171055,0.2181309718014449,11.44574448616403,6.054956659729259,17.249281681318635,11683.590770914456,48.85206245831387,14.555276013582551,14.897515269592034,9.310605567613322,10.088665607525964,0.576089489629457,0.7998324958123953,0.6923658352229781,0.5835322195704057,0.1196581196581196,0.7678714859437751,0.9366053169734152,0.8781869688385269,0.7440758293838863,0.1614583333333333,0.4977019041365725,0.7049645390070922,0.6247422680412371,0.529505582137161,0.1088709677419354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0047446217482106,0.0071140067791105,0.00930648405909,0.0112202962239583,0.0135472370766488,0.0156257968442418,0.0178337963719562,0.0201055387384439,0.0220679344208575,0.0241526075585867,0.0261222393425783,0.0279509495298644,0.0298715082071943,0.0318122232429475,0.0337880464572711,0.0358075345020514,0.0377881332184778,0.040128561175773,0.0420831031859347,0.0570216678158758,0.071078585338275,0.0848393258191129,0.0970633726496985,0.1090604026845637,0.1247380342513601,0.1364688395795732,0.1476116939134139,0.1580634818852196,0.1685823754789272,0.1814978068521053,0.1935295264081075,0.2047544927126079,0.2140043332676777,0.2235669841969054,0.23225713430121,0.2405678289811691,0.2487622091191429,0.2557492792117868,0.2625680398785309,0.2684737049301808,0.2746199487413545,0.2805771575346519,0.2850734632683658,0.2895801197575698,0.2932674536090096,0.2970318091948845,0.3002225189141076,0.3039929634851444,0.3081640728040095,0.30504164368079,0.3025760222255841,0.2995160927301373,0.2966071093264772,0.2950588514686892,0.2916551956195894,0.2882986791379637,0.2888387233972943,0.2895875200108995,0.2900809536518103,0.2916674435515448,0.2934763357276395,0.2947772881993025,0.2959976836900599,0.2962652420765158,0.2968421598899816,0.2974310830417342,0.3017371601208459,0.3056151330825217,0.3101034208432776,0.312956204379562,0.3172208647615001,0.3232080833596463,0.3240733635177653,0.3282761236487768,0.333691243140062,0.3314050844877454,0.3300019988007195,0.3355371900826446,0.3352315869400152,0.0,1.950184239790168,54.668366067994725,153.27643893900003,229.17370960403505,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95623,47095,448.4485950032941,5246,53.74230049255932,4202,43.31593863401064,1590,16.16765840854188,77.3146043072854,79.73191255570754,63.296484254502126,65.08221169537977,77.10523119952681,79.52847147162198,63.21708878970325,65.00801076374776,0.2093731077585943,203.44108408555428,0.0793954647988783,74.20093163200647,221.59478,155.25569274681078,231737.7200046014,162362.08650888654,447.98035,296.48335093683045,467864.3318030181,309433.87790218176,440.80303,214.45845025475856,457154.0006065486,221312.77274717367,2392.86688,1122.1411190281972,2468817.1674178806,1140021.7989188768,952.21426,432.0559279787845,978311.3790615228,434448.9532927504,1547.8819,664.1793717994609,1576187.6117670436,658234.8849993227,0.38217,100000,0,1007249,10533.53272748188,0,0.0,0,0.0,38526,402.2358637566276,0,0.0,39969,414.1472239942273,1236280,0,44329,0,0,8792,0,0,75,0.7843301297804921,0,0.0,0,0.0,0,0.0,0.05246,0.1372687547426538,0.3030880670987419,0.0159,0.3509316770186335,0.6490683229813664,23.215405747544978,4.124579099356529,0.3060447405997144,0.2774869109947644,0.2113279390766301,0.205140409328891,11.26010617745097,6.025355688850932,17.152178717683594,11763.553840579028,48.27570354122825,14.361286467263678,14.457474006160604,9.975394006933444,9.481549060870528,0.5749643027129938,0.8044596912521441,0.6811819595645412,0.5788288288288288,0.1020881670533642,0.7463414634146341,0.9247967479674796,0.8229813664596274,0.7695652173913043,0.1129032258064516,0.5040376850605652,0.7166172106824926,0.6338174273858921,0.5121580547112462,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020366186051695,0.0040462017421991,0.0061314817070694,0.0083523853071178,0.01043701171875,0.0128743124872682,0.0151569241439805,0.017489018285831,0.0197604606682963,0.0219659808911327,0.0241435897435897,0.0262455059065228,0.0283938932554215,0.030344244897118,0.0324225564375445,0.0346382116343032,0.0368662639491871,0.0389850392965043,0.0410163565988263,0.0432420029412071,0.0582117322406656,0.072010727230824,0.0852900407443189,0.0978356983451934,0.1102666413325733,0.1259768313602575,0.1378010048543173,0.1495417732310315,0.1603769548381576,0.1702008808679772,0.1818986071702143,0.1922522463933058,0.2034934402650045,0.2127433473197559,0.2219576982001344,0.23228534330644,0.2406490618329738,0.2489212847695548,0.2569386850865134,0.2635158382457508,0.2695242395822478,0.2754501526833663,0.2810657891621884,0.2856560570640772,0.2906527757540434,0.2947205045453425,0.2990707970135441,0.3032348268191929,0.3066575260958983,0.3097737222427343,0.3083566508824795,0.3057921635434412,0.3040424513695352,0.3015269932534924,0.2988437416401628,0.2963070749153736,0.2940841145173549,0.2939900409209683,0.2951557685724067,0.2958340029642328,0.2963392072954235,0.2967871328011325,0.2985363619329183,0.2989546263345196,0.2991220536310717,0.2998554913294797,0.2997714253463893,0.3044018900770952,0.3098527982224691,0.3155061301477523,0.3162723756409103,0.3207954126992477,0.3253783834704515,0.3297060379354644,0.3331778316850158,0.339115969581749,0.3435762816553428,0.3484355952864689,0.346793997271487,0.345,0.0,2.4090405425925296,53.6520080305405,156.47265774427677,218.76576135938004,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95639,46680,442.9469149614697,5249,53.566013864636815,4188,43.14139629230753,1628,16.58319304886082,77.29129418892526,79.69176541696741,63.29829466637945,65.07009807894642,77.0793815347297,79.48638149280536,63.217513258119055,64.99504736477738,0.211912654195558,205.38392416204945,0.0807814082603926,75.05071416903775,221.90784,155.4982078986715,232026.51637930132,162588.70115608853,449.15102,296.7558200727057,468988.6447997156,309644.4442881101,437.24932,212.9046204759424,453713.0982130721,219844.1677221536,2413.2584,1127.185823738521,2485246.102531394,1140530.4778788155,987.6562,446.2983367226849,1009555.5055991802,443512.5071599283,1587.90532,676.9607513386864,1617750.1437698011,670329.7520718166,0.37886,100000,0,1008672,10546.659835422788,0,0.0,0,0.0,38579,402.7227386317297,0,0.0,39624,410.7738474889951,1235360,0,44315,0,0,8734,0,0,80,0.8364788423132823,0,0.0,1,0.010455985528916,0,0.0,0.05249,0.138547220609196,0.3101543151076396,0.01628,0.3494702228717574,0.6505297771282426,23.80108785313979,4.161217200922343,0.3249761222540592,0.2574021012416428,0.205826170009551,0.2117956064947469,11.428371005953498,6.191016891234259,17.313369122760975,11795.651709255588,47.82298316441659,13.102376111582304,15.544642806523257,9.484995309001873,9.690968937309163,0.5828557784145176,0.8033395176252319,0.7068332108743571,0.5881670533642691,0.1195039458850056,0.7447873227689742,0.9333333333333332,0.8705234159779615,0.7255813953488373,0.1442786069651741,0.5178989628638341,0.7203647416413373,0.6472945891783567,0.5425038639876353,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728553629853,0.0047551454932576,0.0072876384194553,0.0095620363784168,0.0118324532755445,0.0139838060803585,0.0160796949242408,0.0184818347050054,0.0205709144446262,0.0228022034280097,0.0248689891396868,0.0271247368150772,0.0292371791574507,0.0315630023494497,0.0336444159973571,0.0359222598028568,0.0381490309876671,0.0401619769494341,0.0422549866294858,0.0442792501616031,0.0589317253127384,0.0724147322550909,0.0855516701845026,0.0985768720658512,0.1107968039180502,0.1263535613349846,0.1376868523866145,0.1489107856191744,0.1597848864559722,0.1694493058612581,0.1811104281909444,0.1929545282262867,0.2030459063149758,0.2124327934912344,0.2222675367047308,0.2317845536120323,0.2407454998491569,0.2489529385273587,0.2567837598492245,0.2634618690196528,0.270464857857209,0.2763421111124109,0.2821636215083303,0.2869084454678468,0.291563803524304,0.2959686077074001,0.3001027491667293,0.3042209736396183,0.3076823355544608,0.3104444913688434,0.3079232581622349,0.3056721677012649,0.3034262117176159,0.3020378667437491,0.3005825877597122,0.297430314924412,0.2941605030171526,0.2940528634361233,0.2938731527093596,0.2946473236618309,0.2951695439464657,0.2966282797103169,0.297059810418589,0.2967146020173104,0.2978003789968577,0.2991917249265795,0.3006743355811186,0.3044580802704902,0.3065284393387503,0.3105089855992383,0.3152944383860414,0.3190883190883191,0.3214711604845289,0.324431256181998,0.3275343238668422,0.3288894179264373,0.3362600123228589,0.3394947627849661,0.3368333793865709,0.3450891164201744,0.0,2.576523058994305,51.88759853778982,155.14843990480173,221.23194735487985,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95648,46625,444.3271160923386,5299,54.282368685178994,4184,43.32552693208431,1583,16.236617597858817,77.27514686010801,79.68772423088885,63.27600815666828,65.05703946013044,77.07409569866344,79.48420822024191,63.202113669972576,64.98378616302169,0.2010511614445675,203.51601064693625,0.0738944866957069,73.2532971087494,221.55672,155.15113393625802,231637.58782201403,162210.53648404358,447.15688,296.42328124893646,467084.9991635999,309492.9964546426,442.46205,215.0759653716687,459874.2054198728,222793.93502597287,2382.02448,1118.8257526298075,2468398.921043827,1147724.4402703734,979.59877,450.888764445052,1012357.236952158,459590.8377018352,1541.0241,645.5714454978979,1582843.7604550018,653195.0680658723,0.37926,100000,0,1007076,10528.981264637005,0,0.0,0,0.0,38326,400.2697390431583,0,0.0,40156,417.0604717296755,1235114,0,44320,0,0,8845,0,0,92,0.9618601538976248,0,0.0,0,0.0,0,0.0,0.05299,0.139719453672942,0.2987356104925457,0.01583,0.352972972972973,0.6470270270270271,23.650249288433585,4.072622707723091,0.3200286806883365,0.2724665391969407,0.1998087954110898,0.2076959847036328,11.468539120799626,6.34362354115441,16.880889207476127,11763.323630608387,48.03152158051781,14.086008159251072,15.166850143814484,9.265741464140769,9.512921813311474,0.5817399617590823,0.8026315789473685,0.6997759522031367,0.5789473684210527,0.1127733026467203,0.7764127764127764,0.9244060475161988,0.8723404255319149,0.7733990147783252,0.1955307262569832,0.5015187310158623,0.7193500738552437,0.632398753894081,0.5165876777251185,0.0913043478260869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045528191834,0.0040846112524451,0.0061792907513571,0.0086033519553072,0.010821916414935,0.0131375264787355,0.0154280703185544,0.0178150299639615,0.0198133172482185,0.0222395150720838,0.0242273804273127,0.0263709395738735,0.0285505576361167,0.0306338064462929,0.0327027529377749,0.034582997124118,0.0365057318766972,0.0384982864264201,0.0405215563441106,0.0423914403704167,0.0571482321464031,0.0718177626891319,0.0851164402987426,0.0979499820913132,0.1106088132155984,0.1262787791498104,0.1381149718414621,0.1486163816995693,0.1589564137960555,0.1684110984547271,0.1809301773359669,0.1931108508977361,0.2035135900956864,0.2133288019645676,0.2220199479235624,0.232309434968017,0.2410432564280439,0.2500141015082973,0.2582638280441041,0.2651235949896095,0.2709971470322176,0.2763969329612868,0.2813904669283774,0.2864568952063099,0.2910313465139466,0.2954329620996287,0.299724379854673,0.3032825486527422,0.3071328562538892,0.3098820390209106,0.3078260400803224,0.3057192422072916,0.3043931433722551,0.3025821731846803,0.3000861121833892,0.2968974696325306,0.2938797434358116,0.2935354362965997,0.2938193451773194,0.2936824132043255,0.2943375768792178,0.2955512648750886,0.2971798621265928,0.296709176848301,0.2970225823464544,0.2973127352979359,0.299548974555357,0.3042333845141478,0.3083062060275123,0.3128931439648692,0.3173991844132306,0.3188006568840388,0.3219203805708562,0.3208842613550626,0.3237774030354131,0.3290973871733966,0.3342490842490842,0.3352869846402587,0.3405479452054794,0.3494664634146341,0.0,1.6572725235290282,53.9570982365577,156.4038642767787,217.6080940342736,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95679,46836,444.7370896434954,5321,54.39020056647749,4260,43.8863282433972,1556,15.886453662768217,77.28391542799022,79.67963714032474,63.28504443165552,65.05881738250537,77.08421475945154,79.48425790227476,63.20924111839204,64.98747827769259,0.1997006685386821,195.3792380499806,0.0758033132634778,71.33910481277894,220.6765,154.57489490017457,230642.56524420195,161555.71745124276,447.22094,296.13486479028643,466776.1891324115,308866.8514410544,444.07161,217.186394790687,459807.7843622947,223847.13680842397,2427.52088,1143.4235610762173,2502744.3848702437,1160655.4009513238,971.84402,438.677921571042,1002593.965237931,445349.32594513067,1521.75818,647.3887533852323,1554925.7412807408,645803.8585031189,0.37962,100000,0,1003075,10483.752965645544,0,0.0,0,0.0,38448,401.1747614419047,0,0.0,40136,415.1903761535969,1240457,0,44489,0,0,8761,0,0,85,0.8883872114048015,0,0.0,2,0.0209032285036423,0,0.0,0.05321,0.1401664822717454,0.2924262356699868,0.01556,0.3534498288596649,0.6465501711403351,23.449741950529667,4.13066298910778,0.3133802816901408,0.2816901408450704,0.2002347417840375,0.2046948356807511,11.148389425453567,5.965985344652673,16.648147362954973,11809.21692423433,48.63898749644068,14.666316876645036,15.150449953929744,9.29793020159827,9.524290464267636,0.5856807511737089,0.7875,0.7176029962546816,0.5814771395076201,0.110091743119266,0.7707667731629393,0.9256198347107438,0.875,0.7537688442211056,0.135593220338983,0.5086436170212766,0.6941340782122905,0.6521739130434783,0.5290519877675841,0.1035971223021582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025739243225714,0.0046656929568321,0.007015442094683,0.0093494984807064,0.0116805551316097,0.0141492135930242,0.0164414299556326,0.0183846059566123,0.0205574021989261,0.0226290233358601,0.0249810205798469,0.027187538531092,0.0295531019437956,0.0314741528567895,0.0335896774193548,0.0356378302911215,0.0376453277516423,0.0396433242676521,0.0418690772159404,0.0438471239330046,0.0583429962288591,0.0720343419537221,0.0856615100438697,0.0983889467647399,0.1102245020740318,0.1258759765418245,0.1373217376530428,0.1486309466756126,0.1594672310767619,0.1693660044434427,0.1817956456132787,0.1929455861164974,0.2044665120482583,0.2146838825552233,0.2235961866975257,0.23307469446202,0.2416318225521543,0.2494449390841776,0.2577279752704791,0.2646974476627473,0.2707734396735602,0.2766725672016225,0.2825065831613408,0.2871874287223442,0.2914613222356076,0.2967531826704825,0.3010682663527408,0.3044623430163759,0.3075757771936866,0.3107008637172809,0.3079625765632361,0.3056575238880868,0.3040249767952072,0.3018960421022276,0.2995396495396495,0.2967996694063088,0.2942460725529592,0.2941224650263735,0.2942029727469752,0.2943211814225583,0.2951062314984824,0.2951928783382789,0.2965699651538687,0.2976483762597984,0.2983814554839955,0.3012777053455019,0.3007012861645041,0.3054745098039215,0.3096467960351808,0.3139347166988226,0.3164608495046818,0.3202486959270773,0.3234343936381709,0.3245038054021787,0.3313653136531365,0.3348125656895948,0.3398614040373606,0.3407407407407407,0.3493112947658402,0.3472485768500948,0.0,2.518168443002524,54.2442880974528,153.84064173767285,224.50511344630291,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95659,46767,444.8614348885102,5371,54.98698501970541,4246,43.83278102426326,1671,17.060600675315442,77.35161970545354,79.75619933987556,63.31721993396855,65.09360000866972,77.14375947481741,79.55217798124272,63.23975994142855,65.02012558357706,0.207860230636129,204.02135863284343,0.0774599925399996,73.47442509266955,219.7734,153.9430577203889,229746.70443972864,160928.98495738916,450.31557,297.76668854117423,470205.72031905,310734.17926298024,438.55017,214.1689783898012,454790.61039734894,221036.11391975483,2440.75524,1133.6435919549365,2520760.451185984,1154332.1506130488,1001.28581,445.49667190164587,1031702.5162295236,450692.2912325648,1631.77014,682.9398070779131,1668219.446157706,682933.940743002,0.37932,100000,0,998970,10443.032019987664,0,0.0,0,0.0,38730,404.3006930869024,0,0.0,39744,411.89015147555375,1247195,0,44686,0,0,8736,0,0,76,0.7944887569387094,0,0.0,0,0.0,0,0.0,0.05371,0.1415954866603395,0.3111152485570657,0.01671,0.3435100874843778,0.6564899125156222,23.779401077250974,4.236214840505612,0.2983984926990108,0.2649552520018841,0.218794159208667,0.217852096090438,11.421177678114956,6.057996026086013,17.756078243955574,11719.459607120089,48.26977224747035,13.713121028975912,14.412832164868169,10.222505270714478,9.921313782911785,0.5692416391898257,0.7884444444444444,0.6977111286503551,0.5780409041980624,0.1178378378378378,0.7540453074433657,0.910913140311804,0.8529411764705882,0.74235807860262,0.1847826086956521,0.4933554817275747,0.7071005917159763,0.6326987681970885,0.5242857142857142,0.1012145748987854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451849525334,0.0047660092278051,0.0070229565429191,0.0091949118101276,0.0113926497065375,0.0137400692605418,0.0159282108805384,0.0180228936700329,0.0201840490797546,0.022247260063505,0.0246014321767856,0.0266765316398462,0.0288040010702451,0.0310315676611888,0.0331460325985911,0.0353000817323111,0.0372500855072914,0.0392409268333194,0.0412418327853843,0.0430448383733055,0.0578062466692441,0.0715145803884613,0.0851019165774503,0.0977839976429984,0.1102598197513666,0.1253082434620635,0.137410820451843,0.148054993072578,0.1586739551352681,0.1681127050940641,0.1794725265246269,0.1910807326927868,0.2022595426494117,0.2116731602679157,0.2209119237164029,0.2310480518760738,0.2399195575666164,0.2477933891740971,0.2556732395645313,0.2633121865194787,0.2699029575395861,0.2754639368017575,0.2807585897041784,0.2854646012402135,0.289721100071575,0.2943253685065334,0.297661410145959,0.3009621242891958,0.30474358312245,0.3080798779204378,0.3059757637638713,0.3042070309284009,0.3012635810364457,0.2983366485052898,0.297188338347982,0.2942101566555715,0.2919355602190069,0.2919333977308076,0.2923354803530654,0.2936557397482238,0.2954010095344924,0.2957813053925237,0.2966367244620848,0.2983982202447163,0.2977752288097116,0.2986375035549006,0.2980848114515262,0.301745947465409,0.3068158059795107,0.3112880340532871,0.3146549776311627,0.3161753154945803,0.3213265432865482,0.3250263514530944,0.3302684127426395,0.3352252571833983,0.3407079646017699,0.3380761523046092,0.3421123353937114,0.3399327605528576,0.0,2.104671864052136,54.0645077641942,150.46127961701808,226.7711159664761,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95792,46628,442.4795390011692,5202,53.10464339402038,4075,41.976365458493405,1550,15.878152664105562,77.3507064425629,79.67964502607116,63.34838135415546,65.07043594429318,77.15167448660645,79.48238362049095,63.27291451520305,64.99767785735251,0.1990319559564426,197.26140558020688,0.0754668389524084,72.75808694066654,223.2153,156.32973412555,233020.8159345248,163197.06669194714,449.42042,297.4840695331428,468594.17279104725,309983.4845635781,434.32186,212.13651924854045,449913.6462335059,218803.525498335,2336.46012,1102.4304061198968,2408117.629864707,1119878.8271670877,970.87974,438.3171236771509,1001500.3236178386,445543.0241326525,1511.93002,646.3816275789728,1549757.537163855,649874.9321132406,0.37924,100000,0,1014615,10591.855269751128,0,0.0,0,0.0,38613,402.497077000167,0,0.0,39475,408.5623016535828,1233099,0,44265,0,0,8898,0,0,72,0.7516285284783698,0,0.0,1,0.0104392851177551,0,0.0,0.05202,0.1371690749920894,0.2979623221837755,0.0155,0.3443223443223443,0.6556776556776557,23.765222378521816,4.143240629590535,0.3082208588957055,0.263803680981595,0.2154601226993865,0.2125153374233128,11.27845159246759,6.105118257476705,16.612162668188436,11646.715075318018,46.68217094859405,13.120033827152527,14.350903834174446,9.80263827046358,9.40859501680349,0.5840490797546012,0.7962790697674419,0.7101910828025477,0.5979498861047836,0.1235565819861432,0.7471074380165289,0.9369369369369368,0.8687150837988827,0.7018348623853211,0.1263157894736842,0.5151832460732985,0.6973058637083994,0.6469933184855234,0.5636363636363636,0.1227810650887574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486933268506,0.0042680454176804,0.0066973119425248,0.0089590443686006,0.0113673336586952,0.0135604263593513,0.0157861481390893,0.0180730883448479,0.0199168173968137,0.0220118706508391,0.0242842797712974,0.026401387278492,0.0285905143620574,0.0304602493231627,0.032533487321736,0.0345458114236717,0.0366806353148119,0.0390819373030353,0.0413425690340938,0.0434121762305321,0.0575131209632821,0.0715368610353083,0.084373722444102,0.0968294502769107,0.1091848026558465,0.1242772427935689,0.1361067220920244,0.1470638315986633,0.1575351240551736,0.1667095391211147,0.1787640340584936,0.1899522255128731,0.2013212795549374,0.2108483093898508,0.2192770289584203,0.2287721238938053,0.2384364240107863,0.2470876349461339,0.2540938091406683,0.2609829763866008,0.2676729763128414,0.2738419141259035,0.2797365682936057,0.2848711932579965,0.2880052404289388,0.2924769829156615,0.2966604615134743,0.3005870692284233,0.3040216280543806,0.3066438401264239,0.3049306273756598,0.3019461345126423,0.3000168738399235,0.2973901495467406,0.2958490342106044,0.2918552728162466,0.2892614265380357,0.2890209468776676,0.2891438718710514,0.2906240525067328,0.2914800727013809,0.2927595196713541,0.2943197770653927,0.2953212446832326,0.2973245350929814,0.2977154914168121,0.2996580222285551,0.3038647951155032,0.3073251202134007,0.3099593094457393,0.3118064398762961,0.3151282870222506,0.317236161896356,0.3188837920489296,0.3217399456266991,0.3282768428537568,0.3274349899984613,0.3387528298003704,0.3455717488789238,0.3385274639657187,0.0,2.1804279593367357,52.52891934374547,153.49650717539637,206.28081077829933,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95733,46752,444.09973572331376,5246,53.61787471404845,4162,42.86923004606562,1555,15.877492609653933,77.31652017658898,79.67707080604784,63.31665033110207,65.06232498869514,77.12376991856043,79.4865674509319,63.2450013347711,64.99365223164507,0.1927502580285534,190.5033551159363,0.0716489963309641,68.67275705006648,220.61314,154.6440189686573,230446.28289095717,161536.79396723938,450.6159,297.5637321322131,470092.267034356,310226.9431100574,433.61883,211.0019094328144,448741.8549507485,217228.45302333464,2381.6342,1109.6054023754732,2453591.9693313693,1125316.9876790163,962.63676,429.7721836833009,988234.5272789948,431807.7748138194,1512.81328,636.0638280811642,1545295.3944825712,635797.8874772758,0.38088,100000,0,1002787,10474.831040498051,0,0.0,0,0.0,38705,403.6643581628069,0,0.0,39412,407.4770455328883,1243420,0,44595,0,0,8800,0,0,81,0.8461032245934004,0,0.0,1,0.0104457188221407,0,0.0,0.05246,0.1377336693971854,0.2964163171940526,0.01555,0.3529089914280503,0.6470910085719497,23.882339574490786,4.226729401964749,0.3195579048534358,0.2611725132148005,0.2133589620374819,0.2059106198942815,11.340596991944471,6.129411608459394,16.486310252509433,11749.925728303058,47.50958426449554,13.298006631399176,15.066249263751269,9.814434454421182,9.330893914923928,0.5812109562710236,0.8003679852805887,0.6954887218045113,0.5968468468468469,0.1096849474912485,0.7595258255715496,0.925754060324826,0.8797814207650273,0.736318407960199,0.1530054644808743,0.5105669238510567,0.7179878048780488,0.6255186721991701,0.5560407569141194,0.0979228486646884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.0046025486359627,0.0068713524486171,0.0092768525762825,0.0116984049479166,0.0141160654268429,0.0165828684486961,0.0186473045147718,0.0206950849173321,0.0228820066547222,0.0252337790173078,0.0273439505488299,0.0298106882474523,0.0317153036637354,0.0337397367661014,0.0356559833033703,0.0374403511132733,0.0392498547838353,0.0414007442363262,0.04350407850736,0.0576186250456752,0.0710197247946423,0.0842736691975334,0.0973901705537212,0.1096771472554353,0.1249021723036571,0.1370194347789187,0.1473067915690866,0.1576686788824189,0.1681186164277744,0.1807008283692221,0.1919772323940613,0.2022335069538836,0.2115292111247157,0.2208146688825543,0.2299109121531779,0.2389229378076961,0.2473565804274465,0.2558714742789716,0.2630295118012849,0.2698126301179736,0.2756544410798424,0.2816119833879574,0.2868496763366099,0.291456614958516,0.2955021823292975,0.2997822495870251,0.3027569623796134,0.3068552352362714,0.3091249637270161,0.3072514462531952,0.3049181681785021,0.3026829646547956,0.3003108508638762,0.2991413631231802,0.2960259529602595,0.2927573343449671,0.2925748424369748,0.2933340164984372,0.2939054015432981,0.294723632208882,0.2958680295197127,0.2970705168445281,0.2979996427933559,0.2987477209480856,0.2994210949871498,0.3019398449260132,0.3049390434510785,0.309642545771578,0.3123003509878929,0.3166666666666666,0.3216327827191867,0.3250611017108479,0.326820067898906,0.3298776501354254,0.3337680815745791,0.3333333333333333,0.3356123064548562,0.3385373870172555,0.3393129770992366,0.0,2.353221844286247,51.37789660837977,156.21935998282896,218.58462163833929,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95677,47071,448.60311255578665,5381,55.11251397932627,4197,43.26013566478882,1564,15.907689413338629,77.40264542862671,79.78287694078739,63.35728834693722,65.11190612697708,77.19831238023778,79.58283680263483,63.27956526550312,65.0381379640328,0.204333048388932,200.0401381525592,0.0777230814340939,73.76816294427613,221.2848,154.8856055282541,231283.17150412325,161883.84410909007,451.80676,299.0665100392155,471612.5819162391,311971.02756066294,435.90296,212.07014613329008,452150.9035609394,218836.08464599197,2377.92208,1117.1538959298828,2453330.6019210466,1135596.7849429678,990.80054,445.55790801648766,1019792.8551271466,449914.3765131503,1524.18482,657.8872694802594,1553080.6358895032,654376.8535740903,0.38214,100000,0,1005840,10512.8714320056,0,0.0,0,0.0,38855,405.4788507164731,0,0.0,39599,410.3807602663127,1242091,0,44558,0,0,8633,0,0,67,0.7002727928342234,0,0.0,0,0.0,0,0.0,0.05381,0.1408122677552729,0.2906522951124326,0.01564,0.3446989877464038,0.6553010122535962,23.829091984456173,4.086705263056621,0.3104598522754348,0.2816297355253753,0.2022873481057898,0.2056230640934,11.200682316568448,6.012487226530389,16.801198617871133,11803.887117170483,47.90532606128127,14.48201638732947,14.78393414322171,9.280682584548726,9.35869294618137,0.588277340957827,0.7859560067681896,0.7129700690713737,0.5877502944640753,0.1297798377752027,0.7506053268765133,0.9132231404958676,0.8472622478386167,0.7641509433962265,0.1632653061224489,0.5202839756592292,0.6977077363896849,0.6642259414225942,0.5290423861852434,0.1199400299850075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771931423479,0.004439174191979,0.006522621221343,0.0087444014502909,0.0107279771407652,0.0127487118913304,0.0149255252989692,0.0172176238250273,0.0194982371876756,0.0216955258094887,0.0236679718731421,0.0259629599211563,0.0280893677835926,0.0301859976518568,0.0324288072637226,0.0344585236786076,0.0365511457179245,0.0385497410993161,0.0405495351207438,0.042636345634751,0.0576547401410289,0.0717965363432664,0.0849467443202686,0.0980150840985831,0.1102368848482291,0.1262576570285968,0.138371587134838,0.1486252009239842,0.1591314661850977,0.169769237368105,0.182166702562998,0.1941816922444208,0.2048178357803154,0.214932423566461,0.2247244163787982,0.2348473104944969,0.2439905454221112,0.2509465973057088,0.2585484126804287,0.2648104739580356,0.271318545546921,0.2767469542080941,0.2824146237778093,0.2870386984867516,0.2916368574858431,0.29644988617486,0.3005536877101326,0.3043312684066213,0.30801317233809,0.3115405359186519,0.309101401041387,0.3067479619099815,0.3044154970063238,0.3019673828630598,0.299600650791303,0.2970067550052607,0.2945221684200564,0.2948050672689777,0.2947373787150164,0.2950840052569886,0.2970020135729734,0.2980671214616169,0.299071631809591,0.3002508936699305,0.3019336950546167,0.3032636026648003,0.3033214305957036,0.3081766887995261,0.3103460304171899,0.3130859528874182,0.3178463071140696,0.3225533266289102,0.3274795325292169,0.3292581691947777,0.3282549771006636,0.3315065298507462,0.3298421372191864,0.3318733824407724,0.3316257751415475,0.3334573874209155,0.0,2.3455943551510554,53.75923171730916,153.20353613422446,217.90298074201297,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95717,46799,445.3649821870723,5303,54.07607843956664,4197,43.148030130488834,1557,15.848804287639604,77.33907921770925,79.70601526637621,63.32552877917672,65.07556006847837,77.13790200992717,79.50992696376292,63.2483272914653,65.00306439639465,0.2011772077820808,196.08830261329047,0.0772014877114131,72.49567208371843,220.32054,154.32210547972747,230179.11133863367,161227.47837868665,450.36423,297.9332541658955,469821.9856451832,310570.2583301769,438.49304,214.2236144631493,453487.73989991326,220274.7110369446,2371.33008,1121.0443465108017,2441434.3951440183,1135202.7607538912,995.03675,451.0701832020422,1024074.020288977,455783.4583542331,1518.39782,653.6566928627935,1548106.4178777018,650678.4079334353,0.38077,100000,0,1001457,10462.686879028804,0,0.0,0,0.0,38705,403.6482547509847,0,0.0,39788,411.13908710051504,1244840,0,44637,0,0,8660,0,0,83,0.8566921236561948,0,0.0,0,0.0,0,0.0,0.05303,0.1392704257163116,0.2936073920422402,0.01557,0.3503150315031503,0.6496849684968496,23.526147031369877,4.192240204497706,0.3135573028353586,0.272337383845604,0.2111031689301882,0.2030021443888491,11.466121483201588,6.189213700072648,16.676884513851725,11730.79061631546,47.96301501149664,13.894665312000898,14.88579578680775,9.79384301725554,9.388710895432466,0.5856564212532761,0.7839020122484689,0.7006079027355623,0.590293453724605,0.1373239436619718,0.7571428571428571,0.9238900634249472,0.8709677419354839,0.7603686635944701,0.1414141414141414,0.512087163772557,0.6850746268656717,0.6334745762711864,0.5351270553064275,0.1360856269113149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380084265111,0.004623433507726,0.0070643403063244,0.0091854982929604,0.011383172436243,0.0135249366018596,0.0155713047468515,0.0179991628296358,0.0199799586903617,0.0219793725739217,0.0241831271921727,0.0262730839547256,0.0283342932367944,0.0301353773876491,0.0323499659365387,0.0346731745654219,0.0366928758637121,0.0386786774320762,0.0405777810130926,0.0426751127827382,0.0576386931052845,0.0712043528303861,0.0845740888311034,0.0976643425771103,0.1097108266014216,0.1251414849840796,0.1362922564352864,0.1474859978277999,0.1578210499316005,0.1678238380890038,0.1803828163731597,0.1920057179367778,0.2029248865627142,0.2123181982336912,0.2218086512201568,0.2316041553488475,0.2405213137822052,0.2487393066186402,0.256756603366667,0.2633852853541141,0.2688911264655162,0.2750307071416037,0.2811561295205658,0.2870740643183831,0.2925284776727767,0.2970300682530898,0.3005867665418227,0.3036598055886906,0.3065272128607398,0.3094683050825134,0.3074918741773444,0.3043938082876646,0.3016945335810392,0.2996475923625755,0.2979032808535264,0.2942947992784419,0.2907729728022238,0.290864084195341,0.2929265336087825,0.2936632532914689,0.2947842836571728,0.2958709270714313,0.2963186859001084,0.2968193157519601,0.2966334551883975,0.2981102769867978,0.2996738051340235,0.3039151253403436,0.3084255735186284,0.3113412657627387,0.3153161337209302,0.3164409030544489,0.3206607401803165,0.3205548357594695,0.32168877265085,0.3238106480934954,0.3325149608715667,0.3402187120291616,0.3433452741802149,0.3472644376899696,0.0,2.737258332919332,54.46070107275048,151.35753645188916,216.32436832734345,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95702,46790,445.1004158742764,5250,53.959164907734426,4151,42.95626005726108,1600,16.425989007544253,77.30793472821749,79.68447848716426,63.31631099018998,65.07041155312547,77.10957101327148,79.48476360246927,63.24185574642391,64.99716294621025,0.1983637149460122,199.7148846949841,0.0744552437660743,73.24860691521451,222.58654,155.8103927548251,232582.72554387577,162807.6654268094,449.18535,297.0658130229738,468913.1052642578,309963.67209589726,436.67993,212.42834147014244,453517.5126956594,219899.4477029872,2370.49812,1115.1488335077868,2452221.646360577,1140929.123171867,950.85898,436.7793925999298,980442.0597270696,443702.3049110127,1549.04314,655.0420353028823,1591380.4727173937,663932.0352584176,0.38118,100000,0,1011757,10571.942070176172,0,0.0,0,0.0,38640,403.29355708344656,0,0.0,39565,410.6288269837621,1234155,0,44373,0,0,8821,0,0,78,0.8150299889239514,0,0.0,0,0.0,0,0.0,0.0525,0.1377302062017944,0.3047619047619048,0.016,0.3411829134720701,0.6588170865279299,23.784051945554147,4.053265845480415,0.3158275114430258,0.2683690676945314,0.2134425439653095,0.2023608768971332,11.214917264831348,6.182637922913602,17.116672456725478,11759.350617367962,47.792867873568255,13.54701142347258,15.011378084942798,10.05848649448768,9.175991870665204,0.5894965068658155,0.7881508078994613,0.7154843630816171,0.6027088036117382,0.1154761904761904,0.7645631067961165,0.90990990990991,0.8782383419689119,0.7625570776255708,0.1871657754010695,0.5152658662092624,0.7074626865671642,0.6475675675675676,0.5502248875562219,0.0949464012251148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0046005431478253,0.0069690299150934,0.0091614528317217,0.0111158571312342,0.0134006761435379,0.0157029091168643,0.0178254211332312,0.0198020814165082,0.0219365141108188,0.023926682248739,0.0257084188911704,0.0280448800353774,0.0302977232924693,0.0325979279316465,0.0344563790305072,0.0364096028514293,0.0385793336863197,0.0408201479262241,0.0428359951628372,0.0574520536497722,0.0712169899203466,0.0842871680812446,0.097116173408216,0.1090424129969531,0.1242121737659151,0.1359494181173949,0.1471909394758691,0.157940280967897,0.1674819248675205,0.1795183836991405,0.1910577900863281,0.2021636314215819,0.2123872519542994,0.2213630463954946,0.2314627149992801,0.2404025303180748,0.2497806573530404,0.257814184091399,0.2642103695898663,0.2700450267961524,0.2765576761156328,0.2816083113440853,0.2870317072000767,0.2924634967721542,0.2963913075651809,0.3002004510147832,0.303414447700344,0.3073950647700307,0.3097398908836312,0.307573124233728,0.3053695897732595,0.3032584634039733,0.3008030094769587,0.2990911389768991,0.2962038115080581,0.2939442912824413,0.2951197053406998,0.2956011429158041,0.2954695619564635,0.2962615946781598,0.297524419662277,0.2992318801146947,0.3000446328944432,0.3018718312228176,0.3040235729745235,0.3055120799066617,0.3097339573452272,0.3131306029179118,0.3181026979982593,0.3206224972697488,0.3224766033944906,0.3257418909592822,0.3281309190090158,0.3335203890759446,0.3404705882352941,0.3456158820875319,0.3518997413964591,0.357717041800643,0.3527881040892193,0.0,1.53284945015526,54.56568029412711,156.91219127093092,211.35809973185263,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95713,46868,445.59255273578304,5288,54.05744256266129,4215,43.52595781137359,1623,16.58081974235475,77.38171245272493,79.75585113613685,63.34258245905804,65.09529713476037,77.17773832544472,79.55479211709606,63.2655683051711,65.02199057326273,0.2039741272802047,201.05901904079812,0.0770141538869424,73.30656149764536,221.3189,154.94550274545836,231231.80759144525,161885.53565916684,449.66247,297.1711566742468,469300.5338877687,309979.11117010936,439.74587,214.21298064949096,456489.0244794333,221553.1595297447,2388.80916,1126.5871877182556,2466707.970704084,1148281.839760203,971.69331,436.6563443421383,1000688.3182012892,441715.4510897771,1576.12438,669.7395390520338,1611122.146416892,668305.983660894,0.3811,100000,0,1005995,10510.53670870206,0,0.0,0,0.0,38601,402.7770522290598,0,0.0,39976,414.7398994911872,1241638,0,44579,0,0,8604,0,0,77,0.804488418501144,0,0.0,0,0.0,0,0.0,0.05288,0.1387562319601154,0.3069213313161876,0.01623,0.3506681112314915,0.6493318887685084,23.541052195680123,4.123299448549523,0.3103202846975089,0.2766310794780545,0.2104389086595492,0.2026097271648873,11.519765492756552,6.200476574568753,17.287324995864818,11739.14870433902,48.30376559359821,14.35886683481889,14.695618709897218,9.967915546692272,9.281364502189824,0.5843416370106762,0.8096054888507719,0.6896024464831805,0.5952649379932357,0.104215456674473,0.7691680261011419,0.9210526315789472,0.9011627906976744,0.7194570135746606,0.1137724550898203,0.508531281365005,0.7276785714285714,0.6141078838174274,0.5540540540540541,0.1018922852983988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045109428377378,0.0070929902179648,0.009030331349166,0.0113106983745956,0.0134928716904277,0.0157940351771603,0.017997876597656,0.020138413256596,0.0222950148428703,0.0242662210512286,0.0264884344103243,0.0286401826390102,0.030809958899453,0.0328369606720122,0.0346464019851116,0.0368498456822089,0.039183131329902,0.0411236726331007,0.0433219392221434,0.0580574412532637,0.0726991006836479,0.0862617126428339,0.0984818995718178,0.1105813352461523,0.1257548357075626,0.1365435426194543,0.148008943781942,0.1581983675911286,0.1676053165127281,0.1801146527014504,0.1915282859555305,0.202468733007069,0.2124905714004613,0.2219313682358117,0.2318761969071366,0.2409674829385789,0.2490047457322147,0.2562404309611568,0.2626704369826786,0.2690203245919465,0.2745909303412809,0.2804902575508417,0.2849647836711226,0.2903311965811966,0.2944486860576805,0.2977266194243435,0.3010666564959253,0.3052142875617515,0.3088485199773418,0.3067847400459572,0.3045143225771031,0.303209210137899,0.3007791684069534,0.2978695073235686,0.2958079268292683,0.2929036530184306,0.2931183744140083,0.2934673708162815,0.2949364391733541,0.295492674197517,0.2960807063774557,0.2962331614834525,0.2968004085529676,0.2976400898103473,0.2990494885835313,0.3009486701677113,0.3062163759057126,0.3113099573405473,0.3153924726958435,0.31812032109678,0.3230582780061123,0.3250783699059561,0.3293358633776091,0.326725266504582,0.329867674858223,0.3384662296081719,0.3434404689710936,0.3492413793103448,0.3458124276341181,0.0,2.018206712765815,53.47964757069859,162.55675597600987,213.23062960795207,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95863,46751,444.4571941207765,5282,53.84767845779915,4177,43.05102072749653,1579,16.200202372135234,77.44506122741345,79.72356009637168,63.40474875222951,65.08459078115037,77.24869860547766,79.52675202518468,63.33160320511343,65.01266156093699,0.1963626219357905,196.80807118700727,0.0731455471160771,71.92922021337722,220.9383,154.71610510259714,230472.9666294608,161392.93064331092,447.39019,295.900896140011,466185.6712183011,308158.8059418243,436.5365,212.3856413618512,451571.8160291249,218664.08143011903,2385.67328,1112.298810309735,2460816.7489020787,1132749.4160317194,970.78459,435.4226216828198,999023.9717096272,440653.9015824724,1533.87334,644.261565326655,1574903.5811522694,651467.7060409765,0.37952,100000,0,1004265,10476.043937702763,0,0.0,0,0.0,38417,400.2169763099423,0,0.0,39650,409.8140054035446,1247649,0,44821,0,0,8793,0,0,65,0.6780509685697297,0,0.0,0,0.0,0,0.0,0.05282,0.1391758010118043,0.2989397955319954,0.01579,0.3539694100509832,0.6460305899490167,23.61245808566737,4.145424750769593,0.3160162796265262,0.2662197749581039,0.2104381134785731,0.2073258319367967,11.620735689802093,6.332020037351219,16.714858293388964,11684.734615555551,47.41872576216287,13.58822705696704,14.77960901767652,9.61144859834967,9.43944108916963,0.5803208044050754,0.7976618705035972,0.7045454545454546,0.5665529010238908,0.1258660508083141,0.7516666666666667,0.9067245119305856,0.8771929824561403,0.7729468599033816,0.1263157894736842,0.5112529392005375,0.7204301075268817,0.6441717791411042,0.5029761904761905,0.1257396449704142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0045583930145159,0.0068543848797947,0.008911534245463,0.011095982278944,0.0134295103315664,0.0155829870447323,0.0177225774215587,0.0196979444291272,0.0218509391711571,0.0240733155846815,0.0262550638428798,0.0284085657063626,0.0306318723706271,0.0325256021924131,0.0344952158789467,0.0363188864414316,0.0382770161749924,0.0402582841956648,0.042345988575947,0.0566364299864456,0.0703242520474678,0.0828438916632641,0.0965152516762678,0.1085440141400751,0.123914259480111,0.1350704627992419,0.1458727292042919,0.1566724954151917,0.1655341416173527,0.1778871468638175,0.1900299081162205,0.2006707839923587,0.2102476776806278,0.2204311111599152,0.2301294104634443,0.2391507856904045,0.2480816115586414,0.2567098880174094,0.2636648591758757,0.2694628777543989,0.2748942040167403,0.28070631926293,0.2859501758920238,0.2909878325427923,0.2954662925496567,0.2989076713254339,0.3014510447267686,0.3047626445039937,0.3083698117187912,0.3063433789217466,0.3043645400002746,0.3024581303609282,0.2995512986452671,0.2979896526237989,0.2951877844931265,0.2917853265572636,0.2929617429307589,0.2929632459044223,0.2937642868534368,0.2947078423707674,0.2959993712174801,0.2964643206459534,0.2957924637166571,0.2962309160305343,0.2975486270761759,0.2976203902108943,0.3024622271964186,0.3070026653743639,0.3099897822840525,0.3156679942070963,0.3193974630021142,0.3226996935009695,0.3271812080536913,0.3299736247174077,0.330755502676978,0.336874518860662,0.3421323984326665,0.3473800942611588,0.3506998444790046,0.0,2.0263920201299728,52.394407248339824,153.56982468954382,218.04797364989116,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95687,46929,446.8945624797517,5229,53.47643880568938,4162,42.94209244724989,1601,16.397211742451955,77.29747507811412,79.70410578051734,63.28577397120039,65.06729357082035,77.09479894206325,79.50290815398462,63.20903865964544,64.99346474812417,0.2026761360508686,201.19762653271775,0.0767353115549553,73.82882269618563,220.09372,154.1898736861646,230014.2339084724,161139.83475933468,450.02949,298.0373527383745,469764.8165372517,310921.7790696484,437.11779,212.679085276592,453801.0701558205,219882.84838156807,2368.0898,1119.8569093570386,2445428.616217459,1140932.8219685412,986.52044,445.0669183678185,1020685.2445995798,454847.10587115714,1562.08974,665.4748606839327,1601339.3041897018,667210.2834297378,0.38007,100000,0,1000426,10455.19245038511,0,0.0,0,0.0,38609,402.9073959890058,0,0.0,39665,411.51880610741273,1242710,0,44583,0,0,8660,0,0,79,0.8151577539268657,0,0.0,0,0.0,0,0.0,0.05229,0.1375799194885152,0.3061770893096194,0.01601,0.3544001469777696,0.6455998530222304,23.610035089222023,4.168670097352992,0.3015377222489188,0.2748678519942335,0.2123978856319077,0.2111965401249399,11.265479019126866,6.031002798374634,17.138809441049528,11743.003808039715,47.77416286098933,14.033364752358732,14.331732681136932,9.742982742109712,9.666082685383952,0.5898606439211918,0.798951048951049,0.7227091633466135,0.6006787330316742,0.1171786120591581,0.763265306122449,0.9053763440860216,0.8997289972899729,0.7342995169082126,0.1630434782608695,0.5175348995573714,0.7260677466863034,0.6489841986455982,0.5598227474150664,0.1050359712230215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024524707122299,0.0046152597731929,0.0067008477587694,0.0090437963621583,0.0111796061197916,0.013607936604942,0.0157072334870058,0.0181266722493413,0.0202501610808267,0.0223960840134765,0.0243196947473151,0.0264942162684144,0.0284462094011378,0.0304810189192531,0.0328122741445887,0.0346407662549907,0.0367637151356225,0.0388960418656809,0.0408660098419667,0.0426467676209732,0.0577573959552064,0.0724925937169596,0.08569869568411,0.0976920811242952,0.1097433625518179,0.1253398499899499,0.1365402169528944,0.1477742279020234,0.1575334409717395,0.1672911544614195,0.1797073002383443,0.1916660343201552,0.2027080020043136,0.2125146544829022,0.2214113263292506,0.2304423561260831,0.2389158982956133,0.2475810721003841,0.2559951834054687,0.2628707651400541,0.2690815156324209,0.2749045510973696,0.2811474730246716,0.2852359464259997,0.2898654730337898,0.2945886591324088,0.2986557422232244,0.3019053080991525,0.3064798598949212,0.3108274194187844,0.3090168687045752,0.3067971873707431,0.3050014822343624,0.3026864289022695,0.3011366168932471,0.2973845706502609,0.2932429442811542,0.2940955000081848,0.2945827382166904,0.2949674805416356,0.2963749487724004,0.297129055062446,0.2980438722579839,0.29749000444247,0.2973689870241594,0.298886875485374,0.3002263723825693,0.3039653074595201,0.3079736649597659,0.3108459357277883,0.3166101694915254,0.3202483687644706,0.3243951110002494,0.3289691497366441,0.3321229050279329,0.336343379852234,0.3408467864757843,0.3415662650602409,0.3400544959128065,0.3487666034155597,0.0,2.1112905411561527,53.45615382711923,159.10426374110884,210.1835131475407,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95845,46974,446.3978298294121,5282,54.01429391204549,4168,43.05910584798372,1544,15.82763837445876,77.32864418348662,79.63868561682409,63.32870225298407,65.0380599601711,77.12791124019864,79.43929270254904,63.2526114961198,64.96482431338066,0.2007329432879743,199.39291427505168,0.0760907568642679,73.2356467904367,220.70642,154.66992030278288,230274.3179091241,161375.05378766017,447.5936,296.7852475113068,466568.2925556889,309222.56886058435,440.95223,215.324534976386,457637.3728415672,222786.78814318267,2382.97144,1122.4124035868035,2462568.438624863,1147394.047773574,957.30318,436.5130940881136,988480.3484793156,445119.7638829505,1497.6416,644.520582954299,1535462.402837915,647826.8842458144,0.38076,100000,0,1003211,10467.014450414732,0,0.0,0,0.0,38466,400.8764150451249,0,0.0,39979,414.6695184934008,1238733,0,44568,0,0,8663,0,0,72,0.7512128958213783,0,0.0,0,0.0,0,0.0,0.05282,0.1387225548902195,0.292313517606967,0.01544,0.3570259952735866,0.6429740047264134,23.376226428281427,4.0822824045229655,0.3111804222648752,0.2797504798464491,0.2120921305182341,0.1969769673704414,11.363246402519913,6.140599867447776,16.64555814874676,11717.938659253372,47.95039366238103,14.360954717531468,14.821802321438335,9.759733608263332,9.007903015147887,0.5844529750479847,0.79073756432247,0.7047031611410949,0.5723981900452488,0.1144945188794153,0.7545671167593329,0.9247967479674796,0.8684931506849315,0.7087378640776699,0.1632653061224489,0.510828463389481,0.6928783382789317,0.6405579399141631,0.5309734513274337,0.0992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0045412155861006,0.0065641962156952,0.008725418495043,0.0109009558673988,0.0131846874363673,0.0154520436245031,0.0174104728178227,0.0194473399145666,0.0217035384646869,0.0236275333510932,0.0255636628593126,0.0278300190123837,0.0299470855895735,0.031833603167892,0.0341532453847663,0.0364471764304119,0.0384762931704838,0.0407582446117891,0.0427048856137721,0.057106797534238,0.0712635265826755,0.0844268824417239,0.0978951903575969,0.1103088436808264,0.1259923256625194,0.1378110982683477,0.1492083085042989,0.159950873070967,0.1697560975609756,0.1814373707787732,0.1932381261495185,0.2036795407098121,0.2131824889326119,0.222165991902834,0.2326421197217422,0.240363571396668,0.2491639737425827,0.2573556966193888,0.2642249386510102,0.2703257215718094,0.2760985789992027,0.2814740090197009,0.28586012658988,0.2894772060881097,0.2932701795934478,0.2977811744365235,0.3010777344645723,0.3051010087912658,0.3082238841468249,0.3059585876140053,0.3027618982023555,0.3006238003838771,0.2985109218378817,0.2972249088609478,0.2949187895891167,0.2914110915632479,0.2914977763920114,0.2911474403777637,0.2920002846873776,0.2916993683895802,0.2933049527976507,0.2953550431555685,0.2956320509111946,0.2960967432950191,0.297263552179794,0.2995518493306104,0.303478233694803,0.3068948723300633,0.3116357636706474,0.3155922715781871,0.3186540794261906,0.3230855926366539,0.3265027322404371,0.3294986906098017,0.3303645647785299,0.3304453564371485,0.3371670702179177,0.3437158469945355,0.3522376543209876,0.0,1.5815957425298517,55.74480110858369,156.2664620483153,209.02484920520857,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95739,46890,447.01741192199626,5294,54.10543247788257,4190,43.11722495534735,1528,15.55270057134501,77.35098256499538,79.69903666920126,63.33757887846742,65.0707481365515,77.15150885760379,79.50195735820604,63.262225291935344,64.9985272418724,0.1994737073915899,197.07931099522116,0.0753535865320742,72.22089467910564,221.33144,155.0182309383746,231182.10969406407,161917.53719839835,446.67483,295.06531341606694,465905.2528227786,307548.1396464,436.33776,212.25164123739648,451585.25783640944,218491.38886120095,2370.62368,1114.6100802467952,2441481.2772224485,1129567.0105670574,923.48241,418.1049867490705,949215.2832179152,421436.09799688606,1482.43608,636.4342358073931,1511207.8463322157,635051.6778166592,0.38232,100000,0,1006052,10508.277713366548,0,0.0,0,0.0,38374,400.129518795893,0,0.0,39632,409.74942291020375,1243729,0,44622,0,0,8850,0,0,82,0.8564952631633921,0,0.0,1,0.0104450641849194,0,0.0,0.05294,0.13847039129525,0.2886286361919153,0.01528,0.3515850144092219,0.6484149855907781,23.656478524897764,4.0207332321120735,0.3264916467780429,0.2720763723150358,0.2071599045346062,0.194272076372315,11.111108387151726,6.024968967525628,16.493478088136754,11728.845453716862,48.20418795100343,13.96371767504055,15.652796348292949,9.764710118174484,8.822963809495464,0.5892601431980907,0.8026315789473685,0.7002923976608187,0.5806451612903226,0.113022113022113,0.7553444180522565,0.9102296450939458,0.8730964467005076,0.6743119266055045,0.1569767441860465,0.5175948069695935,0.7246596066565809,0.6303901437371663,0.5492307692307692,0.1012461059190031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050023796745,0.0042367298121851,0.0063113248708816,0.0084504753392378,0.0108488983335197,0.0130203296311754,0.0152495897085656,0.0175438596491228,0.019838714623003,0.0218403627096787,0.0238739569879246,0.0259700266885649,0.0280987826945221,0.0300483987230975,0.0322274490385408,0.0343558789482388,0.0363643894054546,0.0382691709038082,0.0399750480844206,0.0418585269298885,0.0563906634932565,0.0701493786350893,0.0837527260526757,0.0962078282536244,0.1079462798591638,0.1238835156704191,0.1360170525043214,0.1464660437993487,0.1575405388082979,0.1671690462654066,0.1798832374674163,0.1908199489155374,0.2018948376008875,0.2111016281512605,0.219989871856973,0.2297954885551183,0.239668036815298,0.2480029702301928,0.2561314705314887,0.2631301437381078,0.2692690491621146,0.2753726628132825,0.2809196054778968,0.2865951485836067,0.2913072490142553,0.2958496880806192,0.2992988989839659,0.3028185122118585,0.3075648955718316,0.3107678507828886,0.3086027441528539,0.306723383166763,0.3042914523289409,0.30275163030119,0.2999925711314167,0.2981019439767335,0.2954311668170093,0.2953806756623658,0.2962956643404371,0.2974537037037037,0.2992434855701877,0.2988956040711065,0.299003946626574,0.2995034624034201,0.2997490139835066,0.2996601551352894,0.3022413402762056,0.307057315280948,0.3105978922472261,0.3146836638338054,0.3173003028796166,0.3214700601964305,0.3224676218482137,0.3269187231152365,0.3326500186358553,0.3349840820657941,0.3422756706753006,0.3453150242326332,0.3496696035242291,0.3590038314176245,0.0,2.47369076588678,54.99883422924725,155.50176702386176,212.79093608555095,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95843,46878,444.2890977953528,5272,53.7754452594347,4178,42.986968271026576,1578,16.057510720657742,77.51248185563044,79.79632644369069,63.42745123530996,65.11008208874667,77.31114907070592,79.60071241497177,63.35086955890357,65.03850917927052,0.2013327849245172,195.61402871892145,0.0765816764063913,71.5729094761457,220.28006,154.269120493432,229834.27063009297,160960.23756918294,449.43094,297.2822997300907,468315.3490604426,309567.5633380536,440.32801,214.10879437973216,456079.1502770155,220847.24377142065,2382.00696,1118.2389523421866,2451964.817461891,1133383.3794248796,974.2404,444.3245377236848,1004238.504637793,451341.95665035147,1545.74914,657.8544240881216,1575212.3577100048,653544.2396401883,0.38091,100000,0,1001273,10447.012301367862,0,0.0,0,0.0,38572,401.8342497626326,0,0.0,39933,413.2383168306501,1251634,0,44872,0,0,8751,0,0,85,0.8868670638439948,0,0.0,0,0.0,0,0.0,0.05272,0.138405397600483,0.2993171471927162,0.01578,0.3490995088229943,0.6509004911770057,23.70214148425498,4.101789732024084,0.3061273336524653,0.273336524652944,0.2067975107707036,0.213738630923887,11.146662684233997,5.888620754878995,16.664141626211944,11716.061358277768,47.66654029269654,14.03203713350112,14.441989127637513,9.525535836379262,9.666978195178649,0.5662996649114409,0.7933450087565674,0.6778733385457388,0.5671296296296297,0.1153415453527435,0.7549880287310455,0.9196787148594378,0.855457227138643,0.7441860465116279,0.1890547263681592,0.4854700854700854,0.6956521739130435,0.6138297872340426,0.5084745762711864,0.0939306358381502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024183919211543,0.0046485249288542,0.0069937866793703,0.0093454150642814,0.0117332737357524,0.0142276009356249,0.0162590865590193,0.0182839778104095,0.0206263465838889,0.0230391655588505,0.0250473606062157,0.0270744238993323,0.0291709051303391,0.0312458189677352,0.0332580748255136,0.0353453974549661,0.0374896523178807,0.0396151493473505,0.041749337765543,0.0438191017552626,0.057892266777911,0.0712911455937094,0.0843987089743052,0.0972343308509185,0.109365457110966,0.1255585013678662,0.1375622681505034,0.1476834079477663,0.1581289620285586,0.1683534136546184,0.1813078685034035,0.1932598833441348,0.2043038771809821,0.2141265889136417,0.2230388118072262,0.2324748139383148,0.2412352528324588,0.2488318281888843,0.2557981518391012,0.2616884378464246,0.2674655993725418,0.273306540858524,0.2795302052993408,0.2844690682873825,0.2888539271451046,0.293151290425558,0.2971999651085995,0.3008821556492134,0.3057652180633195,0.3086767810545364,0.3051505536142239,0.3029387230434723,0.3007735455804389,0.298891346181463,0.2955635934155163,0.2920359372620679,0.2898573567657025,0.2907552317318216,0.2911237577507857,0.2917976310976151,0.2922973678323764,0.2940471277243873,0.2947460486037359,0.2945000332793468,0.2965676363549868,0.2982279915520527,0.2993834980153703,0.3027196134308016,0.3068554653773096,0.309824656895144,0.3157215921725594,0.3173121791880541,0.3217471547216241,0.324424923695377,0.3236723837475924,0.3273480662983425,0.3259127337488869,0.3289730573994533,0.3381333333333333,0.3354289940828402,0.0,2.354365425464733,54.44651440800934,150.1446991729441,215.69081735617053,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95728,46620,443.5170483035267,5325,54.36236002005683,4210,43.299766003677085,1555,15.85742938325255,77.31288813594676,79.67282666808698,63.318020272784125,65.06275791631708,77.12145653881097,79.48423206244556,63.24563285049507,64.9937228548466,0.1914315971357894,188.5946056414269,0.0723874222890543,69.03506147048688,221.38182,154.9497441325902,231261.30285809797,161864.59983765482,447.46633,295.4063147959455,466760.8641149925,307915.814729916,436.69029,212.51292626823195,451370.36185859935,218400.49767868756,2401.2924,1126.3064068674985,2472139.854587999,1140372.4192925764,969.83476,437.90860270481454,996174.9540364366,440579.38547886594,1510.69934,638.8575124531327,1542815.435400301,637128.9252323464,0.37996,100000,0,1006281,10511.877402640815,0,0.0,0,0.0,38441,400.8440581648003,0,0.0,39699,409.9218619421695,1242297,0,44723,0,0,8704,0,0,79,0.8252548888517467,0,0.0,0,0.0,0,0.0,0.05325,0.1401463311927571,0.292018779342723,0.01555,0.3462226996061582,0.6537773003938417,23.84011802780035,4.13201008775233,0.3111638954869358,0.27458432304038,0.2114014251781472,0.2028503562945368,11.291574962402056,6.1736329767532245,16.544107266854517,11726.887057627568,48.19510621163391,14.262954001527538,14.90048572409072,9.777813170981668,9.253853315033982,0.5902612826603325,0.8217993079584776,0.716030534351145,0.5696629213483146,0.1053864168618267,0.7644628099173554,0.9225941422594144,0.8682795698924731,0.6818181818181818,0.1604938271604938,0.52,0.7507374631268436,0.6556503198294243,0.5375722543352601,0.0924855491329479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483744860134,0.0046118448392949,0.0068689820310676,0.0092227684556941,0.0114624546129514,0.0136150712830957,0.015682675639849,0.01779461159151,0.0199664669679187,0.0220763662055477,0.0242281941126411,0.0263079529701699,0.0283957092756574,0.0305193333745339,0.0327040132054059,0.0346741354720023,0.0365515241882041,0.0388262881570482,0.0408052909612744,0.0427280967711686,0.0569498674127743,0.071524980381899,0.0843321693354725,0.0975071232559851,0.1092471530999578,0.125144120415913,0.1364900142199206,0.1474999733869851,0.1582326485701161,0.1685434227741672,0.1808569059643153,0.1921500340691549,0.2028682954409542,0.2126428610488325,0.2218261434025371,0.2310572077310738,0.2402883638920197,0.2483491759941504,0.2569566648880008,0.2630071708401109,0.2698401675867736,0.2758491669102602,0.281404122955376,0.2859316591584395,0.2907523225453883,0.2949175925697815,0.2985595755065263,0.302839557980137,0.3053326430235568,0.3085543075115822,0.3066664870617078,0.3043908880818752,0.3015412358062607,0.299895914650013,0.2974335335752097,0.2943764081970479,0.2923303694546146,0.2925247150786613,0.2928079558464193,0.2928576532799771,0.2939182228548952,0.2945083619973905,0.2962699673831228,0.2979766467599608,0.2992755013914212,0.2999064254522769,0.3006482060612953,0.3045445973976994,0.3090832632464255,0.3116465544617339,0.3143636363636363,0.3164283075624043,0.3198829316893953,0.3249018423437028,0.3305607476635514,0.3340759849906191,0.3402830619388221,0.3420052031218731,0.3397260273972602,0.3484904957137532,0.0,2.517525050201804,52.238365909049925,157.86141918011603,221.4456868335385,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95778,46681,444.20430579047377,5407,55.096159869698674,4257,43.84096556620518,1632,16.663534423354005,77.37208356525132,79.71114476051181,63.35007434272507,65.0795540945878,77.16485526518227,79.50728061133512,63.27276273285887,65.00598994564382,0.2072283000690475,203.8641491766953,0.0773116098662072,73.5641489439871,221.05116,154.83199764026187,230795.3392219508,161657.16306486027,449.31118,297.4642464577183,468470.0453131199,309929.5312678468,441.69358,215.7453198291749,457198.0935079037,222151.64407387943,2424.57776,1143.3865661441257,2499132.3686023927,1161464.8522041857,994.65534,450.4232173535024,1024375.3993610224,456155.492406336,1585.25332,672.2587281294342,1620332.7904111592,671799.9738174562,0.38016,100000,0,1004778,10490.697237361395,0,0.0,0,0.0,38498,401.2925724070246,0,0.0,40087,414.68813297416943,1244839,0,44661,0,0,8722,0,0,97,1.0023178600513687,0,0.0,0,0.0,0,0.0,0.05407,0.1422295875420875,0.3018309598668393,0.01632,0.3711945878582873,0.6288054121417127,23.54448974518053,4.144954632181707,0.3133662203429645,0.2757810664787409,0.2006107587502936,0.2102419544280009,11.376580631593209,6.194166835295897,17.478895822256803,11742.661733308963,48.89606579919008,14.28538209052268,15.246039009601686,9.627905908565232,9.736738790500464,0.5903218228799624,0.7981260647359455,0.7106446776611695,0.6100702576112412,0.1195530726256983,0.7684458398744113,0.9323770491803278,0.871536523929471,0.7241379310344828,0.1666666666666666,0.5142474019443514,0.7026239067055393,0.6424759871931697,0.5745007680491552,0.1071932299012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0046024086614492,0.0069614986503216,0.0092949076096341,0.0115936133428251,0.0136321062062225,0.0157987544465849,0.0181541727044512,0.0203053466317854,0.0226077167127213,0.0245129687131716,0.0266220571029783,0.0286172443567287,0.0305295565234403,0.0327823208521959,0.0347471199049439,0.036600765966256,0.0384419947942051,0.0403661526952329,0.0422596799550229,0.0565399787114144,0.0706837222437218,0.0839885108078076,0.0970453494725339,0.1094969712931261,0.1248243732899504,0.136327992539844,0.1472817939203198,0.1570911884262074,0.1669791008323246,0.1789206458483482,0.1914953412456493,0.2014562051727885,0.2115901786299932,0.2209818973670897,0.2303058490022811,0.2397390140530894,0.2487944697352891,0.2564834965542256,0.2632187460649977,0.2689537155873137,0.2749818844814287,0.2800983091302241,0.2861519314537361,0.2911000861242858,0.2948249338502246,0.2987778180862908,0.3026872498570612,0.3066988985986866,0.3102421543569339,0.3084837739093058,0.3058863885839736,0.303574193730028,0.3007595887245841,0.300482303183201,0.2972047220013456,0.2938675517622886,0.2945079791591572,0.2958003859750995,0.2965471755289756,0.2973018423707911,0.2981201229605107,0.2995699553254561,0.2992497606803357,0.3004360743722445,0.3006447587354409,0.3027031646110462,0.3065950293775725,0.3119333496691987,0.3168991756499683,0.321989291224249,0.3242400211472376,0.3288657856829711,0.3319687665832764,0.3339898705683736,0.337181903864279,0.3439016990291262,0.3513354281225451,0.3572195383789586,0.3535580524344569,0.0,2.318655634422531,55.46952788449922,157.76486804789596,218.13584608870207,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95648,47106,448.5091167614587,5337,54.6169287387086,4203,43.37780194044832,1608,16.424807627969223,77.25911226955019,79.65542402572079,63.27736057920528,65.04563519722588,77.04877161585324,79.44863800721562,63.19798998834313,64.97031502790627,0.2103406536969458,206.78601850517,0.0793705908621476,75.32016931961039,220.33572,154.34646851402766,230361.03211776516,161369.2586504973,445.97997,295.11981287775126,465702.837487454,307979.1653097821,434.51061,211.1697127456898,451193.7730010037,218339.00116917223,2400.40788,1117.8177058370984,2478384.8695215792,1137473.3818658174,993.78667,443.4002363771943,1024508.4580963532,449079.34967505257,1574.37952,674.7319404838073,1609998.8290398126,674482.8817724191,0.38076,100000,0,1001526,10470.956005352962,0,0.0,0,0.0,38278,399.59016393442624,0,0.0,39254,407.2536801605888,1242082,0,44580,0,0,8587,0,0,90,0.940950150552024,0,0.0,1,0.0104550016728002,0,0.0,0.05337,0.1401670343523479,0.3012928611579539,0.01608,0.3470895656875112,0.6529104343124887,23.80806407484761,4.168976722292549,0.3123959076849869,0.2612419700214132,0.2146086128955508,0.211753509398049,10.816809627186998,5.5483494029434,17.359431937094588,11816.50121089158,48.00442308370291,13.382982474997448,14.871018133551836,9.959023328204175,9.791399146949455,0.5729241018320247,0.785063752276867,0.7022086824067022,0.5764966740576497,0.1168539325842696,0.7366638441998307,0.9112709832134293,0.8413597733711048,0.7635467980295566,0.1826923076923076,0.5089344804765056,0.7077826725403817,0.6510416666666666,0.5221745350500715,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424673075169,0.0046137154098094,0.0066175425775937,0.0087688993659567,0.0113840988860064,0.0137086753712341,0.0160389093949466,0.018130404156926,0.0204148393494239,0.0224374065961062,0.0245035217404677,0.0266143688841884,0.0286349049617378,0.0308327839129718,0.032961476145757,0.0350931612796492,0.0371383286198216,0.039246826311255,0.0412826860269185,0.0430435961053311,0.0583237537882746,0.0724715099715099,0.086393564850305,0.099035444264263,0.1110852966956374,0.1264113373016713,0.1380346919048681,0.149417694004326,0.1591205594884188,0.1689360422662257,0.181073909479225,0.1930478502080443,0.2033049028898837,0.2131830084694693,0.222245503369027,0.2322495391653896,0.2423866102794746,0.2510292243314271,0.2579133540337348,0.265710641525044,0.2711510340505536,0.2769404009243076,0.2821355674751982,0.2879695089693647,0.2921426394391954,0.2964866969019167,0.3007906626506024,0.3046694641786666,0.3096427598198876,0.3127182308750397,0.3101214574898785,0.3080776715107854,0.3060142509755132,0.303210722739352,0.3010205604129987,0.2976481251056116,0.2939514657101592,0.2931335131933934,0.2936603075658458,0.2938821468785187,0.2948571428571429,0.2957009419617291,0.2967831055484627,0.298292862071268,0.3002034222807227,0.3027908061465108,0.302554806548462,0.3086821753968502,0.3113699157136362,0.3143377260675135,0.3192407247627264,0.3212640940130221,0.3260119234389708,0.3278663744237019,0.3278734295020939,0.3343949044585987,0.3371350364963503,0.3368188216368389,0.3344453711426188,0.3395931142410016,0.0,2.149001657002513,51.782276682620726,159.75527691624853,219.8490262034152,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95620,46911,445.9422714913198,5163,52.61451579167538,4034,41.633549466638776,1540,15.770759255385904,77.28554750318864,79.717803350802,63.27381344368566,65.07191337223934,77.0877647153329,79.52256444301017,63.19909279746157,65.00082243513025,0.1977827878557434,195.23890779183264,0.0747206462240868,71.09093710909065,221.88144,155.32926943434728,232045.0115038695,162444.33113820045,452.63272,299.8124886858343,472778.2995189291,312958.0313018812,435.80148,212.2426869510549,452278.8328801506,219310.05089411893,2296.23196,1079.46840867989,2371324.785609705,1098834.1116311336,925.5158,415.9050896002652,953911.482953357,420994.3084262789,1501.6207,639.689486751194,1539264.0033465803,640985.3681755902,0.38079,100000,0,1008552,10547.500522903158,0,0.0,0,0.0,38861,405.7833089311859,0,0.0,39476,409.391340723698,1231554,0,44284,0,0,8746,0,0,89,0.9307676218364358,0,0.0,0,0.0,0,0.0,0.05163,0.1355865437642795,0.2982761960100716,0.0154,0.3484848484848485,0.6515151515151515,23.894404897463957,4.164392492154029,0.3071393158155677,0.2689638076351016,0.2084779375309866,0.215418939018344,11.285220388153922,6.064715137820615,16.46149903342981,11759.73195912586,46.15484442296216,13.25095743400659,14.137358307640634,9.259999303913506,9.506529377401446,0.5790778383738225,0.8165898617511521,0.7134786117836965,0.5576694411414982,0.1116225546605293,0.7459915611814346,0.9362637362637364,0.8680351906158358,0.675,0.1428571428571428,0.5096525096525096,0.7301587301587301,0.6547884187082406,0.5210608424336973,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047976954832689,0.0070970231084758,0.0092697057478274,0.0113030561998941,0.0133443347696319,0.0159133335373504,0.0179593004249754,0.0201082120465168,0.0223569533914361,0.0248253505811388,0.0271783806000822,0.029130211013896,0.0310377173722567,0.033249006143838,0.0352410604383669,0.0375659346922702,0.0397765038218677,0.0416458489466233,0.0436437981787267,0.0576828592634406,0.0712818578135479,0.084644241984805,0.0972829465122894,0.1098353209603988,0.1251337124943073,0.1367408745550183,0.1484893068082475,0.1592436435236709,0.1686633072964232,0.1814150220658847,0.1931646914677914,0.2043004893359634,0.2135985097523559,0.2218571523076583,0.2315948366760269,0.2399789854910465,0.2488758156675795,0.2563263450940287,0.2644011461318051,0.2706823496723702,0.2766039635252666,0.281779937192629,0.2871474858994359,0.2917599260412611,0.2962286729419311,0.2998760532345098,0.3036303210115493,0.3065645173835264,0.3105414609678186,0.3082918293175393,0.3045988070040408,0.302346214511041,0.299695293658931,0.297993886696145,0.2946453173315372,0.2913600177262871,0.2919019170168067,0.2917135741821035,0.2913744177330406,0.2921699136222563,0.2933994959042218,0.294700533082471,0.2952313072142905,0.2955980861244019,0.2963892193885469,0.2984241535815973,0.3033924680983504,0.3090852434041964,0.3132208709297764,0.3162897558338589,0.3192305670888737,0.3239920109848958,0.329698428216891,0.3347874512715797,0.3401749271137026,0.3420893719806763,0.3397513036502206,0.3479793870355302,0.3549232497192063,0.0,2.11813622687627,51.66635762646629,151.0101350873004,206.39315456902716,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95818,46647,442.7873677179653,5304,54.186061074119685,4168,43.00862050971634,1618,16.5939593813271,77.35864855579545,79.6629176655069,63.35358995694328,65.05410157010559,77.1470283624208,79.45163230244131,63.27400476483632,64.97645895001155,0.2116201933746566,211.28536306558487,0.0795851921069541,77.64262009403922,222.66552,155.93869881907045,232383.8109749734,162744.68139500977,448.45087,296.70177009898225,467531.2989208708,309159.0725114094,435.98659,212.3791994406196,451803.2937443904,219138.68523643332,2385.12576,1129.5262238812095,2463175.2280364856,1152774.743661117,934.67986,427.0557920035069,964130.5808929428,434351.1365333301,1573.41992,673.4946531668564,1615193.8049218308,680561.8916601774,0.37937,100000,0,1012116,10562.900498862427,0,0.0,0,0.0,38569,402.0121480306414,0,0.0,39562,409.64119476507545,1234933,0,44341,0,0,8754,0,0,74,0.7722974806403807,0,0.0,0,0.0,0,0.0,0.05304,0.1398107388565252,0.305052790346908,0.01618,0.3501622791200866,0.6498377208799134,23.670193618844355,4.101794759816841,0.3200575815738963,0.2677543186180422,0.2070537428023032,0.2051343570057581,11.395942731452529,6.164454538444998,17.43537939849655,11722.093618698322,47.891735493173066,13.730825688402524,14.985392541789516,9.69737060404036,9.478146658940666,0.5760556621880998,0.8109318996415771,0.6941529235382309,0.5724217844727694,0.0888888888888888,0.7491961414790996,0.9309623430962344,0.8776119402985074,0.7260869565217392,0.1293532338308457,0.5023939808481532,0.7210031347962382,0.6326326326326326,0.5165876777251185,0.0764525993883792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022771896443535,0.0047199910867121,0.0068229974553159,0.0091935827574659,0.011297827809725,0.0136717359239102,0.0158497331214602,0.0180449440494527,0.0202889075046482,0.0225761574500296,0.0243874959029826,0.0266477937103821,0.0287563569116967,0.0307171450034473,0.0328803563327421,0.0350949671049234,0.037114831446723,0.0392171091506588,0.0412360425863412,0.0431817945221166,0.0578975370074797,0.0720416505493816,0.0855980966555219,0.0980274703910379,0.1100959005163874,0.1254055310739836,0.1372840029683027,0.1487729898201236,0.1595579992526557,0.1684213911999313,0.1814031612041862,0.1921658138704687,0.2030383435916396,0.2133738801317041,0.2228020344804809,0.2321171281005475,0.2408285806761236,0.2489565403264819,0.2570948744425658,0.2639525293255132,0.2701948893620961,0.2755864038578585,0.2813114210613559,0.2860225883029997,0.2900252893687384,0.2937680337369602,0.2973574896151343,0.3014459945822894,0.3052671103400057,0.3085611738625567,0.3053110447118361,0.3023665140326994,0.3005921820713713,0.2985053093259464,0.2971437050226277,0.2942848410757946,0.2920651984886092,0.291903863505865,0.2919890021688269,0.2915185191802605,0.2920609342502201,0.2934033605149367,0.2940474195710456,0.2942422620640442,0.2958510306433422,0.2961553499283201,0.2960430732416033,0.2995090016366612,0.3031632903837377,0.3069346254666772,0.3085685758373422,0.3121218554293599,0.3134928109499592,0.3163940661848611,0.3194224499301351,0.3247223845704266,0.3318671318064614,0.3408080808080808,0.3407079646017699,0.344921875,0.0,1.9532310296217363,54.51205897254818,154.4870588488818,214.4174779572728,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95860,47275,449.0402670561235,5331,54.360525766743166,4265,43.88691842269977,1646,16.743167118714794,77.41454581429173,79.70220944603449,63.37712166936033,65.06749423831998,77.20681234380706,79.49987850137532,63.29928470736865,64.99459838162971,0.2077334704846691,202.3309446591668,0.0778369619916787,72.89585669026621,221.37654,155.19554758985657,230937.34612977257,161898.13017927867,454.55456,300.6226580415807,473608.12643438345,313028.2161919264,447.83732,218.13267076540228,463473.3465470478,224634.08886365252,2439.82352,1143.417270386787,2513246.025453787,1160850.6054525212,984.61116,442.0036983987305,1017029.3135823075,450987.7304389009,1606.40058,683.1656128929394,1637066.2215731274,679285.7578080196,0.38291,100000,0,1006257,10497.152096807846,0,0.0,0,0.0,38938,405.591487586063,0,0.0,40599,419.88316294596285,1238084,0,44446,0,0,8804,0,0,84,0.8762779052785312,0,0.0,1,0.0104318798247444,0,0.0,0.05331,0.1392233161839596,0.3087600825361095,0.01646,0.3445121951219512,0.6554878048780488,23.54239113578805,4.221311231290932,0.3106682297772567,0.263305978898007,0.2124267291910902,0.2135990621336459,11.313294061520354,5.998444568812258,17.545489859756977,11806.20572600206,48.55062359540258,13.588361571267615,15.06079970086008,10.001903609835656,9.89955871343923,0.5758499413833529,0.804986642920748,0.7154716981132075,0.5474613686534217,0.1185510428100987,0.756214915797915,0.9147121535181236,0.9007832898172324,0.6956521739130435,0.1329787234042553,0.501325381047051,0.7262996941896025,0.6401273885350318,0.5035765379113019,0.1147994467496542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002510502606671,0.0048224507370447,0.0073313931675066,0.0092481676243071,0.0115458888098383,0.0137058781631884,0.0158312958435207,0.017993390183198,0.0203583394622865,0.0225227068161361,0.0246758035769159,0.0269263909404234,0.0288835001335771,0.0310647233201581,0.0331367535466842,0.0352506171181871,0.0371834133421618,0.0392567336490729,0.0412752130718682,0.043396854456187,0.057881400998926,0.0721631168614008,0.0852889410384276,0.0978170707378279,0.1104945031801524,0.1265155675721346,0.139397663110838,0.1501684718487261,0.160477099847439,0.1706042367254267,0.1829232871112449,0.1945789906154045,0.2057784876834979,0.2153526744249576,0.2246106843383557,0.2346217259961713,0.2437835909101046,0.2516800395567842,0.2590366228493008,0.2655110429237128,0.27261897877754,0.2778823556922213,0.2836952407985618,0.2882062586859635,0.293135909239982,0.2975900051748355,0.301638729046785,0.3043218431726576,0.3069410804719779,0.3097779478315939,0.3067868433443196,0.3038597359055746,0.3017674104694816,0.299415963659961,0.2983676071582131,0.2954885610434039,0.2931140509941815,0.2934924787442773,0.2933728173184928,0.2936275293574233,0.2931750852415643,0.2932672449401074,0.2936226933810972,0.294788960678523,0.2953437231092838,0.2962560198850396,0.2963319098390791,0.299679337505059,0.3039055151029509,0.305956607495069,0.3098337762962295,0.3151333438535584,0.3191978144790761,0.3209821094393293,0.3245500092781592,0.3291109547267182,0.327019245340203,0.3294331248739157,0.3302427052086173,0.3338380015140045,0.0,2.3880170017951423,53.93903301497182,154.4242232900446,224.40435045253847,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95717,46743,445.14558542369696,5267,53.783549421732815,4143,42.761473928351286,1600,16.350282603926157,77.36002699221102,79.7306118246526,63.33690834044432,65.08818994394771,77.16003406203167,79.53300547328128,63.26258384516591,65.01684190825439,0.1999929301793486,197.60635137132,0.074324495278411,71.34803569331893,221.60864,155.17271358998482,231524.84929531848,162116.148218169,449.1881,296.5778609430768,468781.84648495045,309342.8345467125,432.55915,210.34222391901045,448906.9966672587,217435.6413521732,2357.82908,1099.09242232097,2435538.2220504195,1120477.5142565798,943.97379,424.8965403855909,974190.9901062509,431886.85435773176,1552.14458,649.1972185976904,1587994.5255283806,651423.2168781193,0.37912,100000,0,1007312,10523.85678615084,0,0.0,0,0.0,38637,403.1154340399302,0,0.0,39289,407.3884471932885,1241536,0,44551,0,0,8847,0,0,71,0.7417700095071931,0,0.0,0,0.0,0,0.0,0.05267,0.1389269888162059,0.3037782418834251,0.016,0.3530050687907313,0.6469949312092687,23.652685745646476,4.100764880283404,0.3101617185614289,0.2671976828385228,0.2172338884866039,0.2054067101134443,11.409240990503104,6.163248162555536,16.95356282392161,11682.007888528797,47.28171296867142,13.489242043243465,14.567697147392538,9.965582712430171,9.259191065605249,0.5788076273231958,0.7976513098464318,0.6856031128404669,0.6022222222222222,0.1081081081081081,0.7512864493996569,0.9387755102040816,0.8168604651162791,0.7572815533980582,0.1428571428571428,0.5112529392005375,0.7042042042042042,0.6376195536663124,0.5561959654178674,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269915224195,0.0042271082322172,0.0060582689790243,0.0083707511326926,0.0106086496602791,0.0127591544132621,0.0149439347604485,0.0170650554206046,0.0191668796319959,0.0213251704580355,0.0236318152925013,0.0258516252233013,0.0278377655745459,0.0299425251838576,0.0319032584246476,0.0341501240694789,0.0362381899552461,0.0384663289877937,0.0403869155962348,0.0423461253920455,0.0569259367559213,0.0702914856873724,0.083398898505114,0.0960464455873536,0.1083500263574064,0.1244053534050785,0.1358501373670085,0.1462519155457177,0.1565653868745661,0.1656548321355787,0.1778785561168981,0.1897146814104714,0.2011302505026354,0.2112971625934508,0.220400668513876,0.2301865898898178,0.238742707996386,0.2471331564509601,0.2552653653449409,0.2618022803241907,0.2684717389042395,0.2748346692216016,0.2806615204567754,0.2853244934838022,0.2903448945413946,0.2946794500990757,0.2983908275922429,0.3021391732933614,0.3047604271714115,0.3079152995743895,0.3066724040556168,0.3045008385801875,0.3029923255650215,0.3005503950998945,0.2984662440052857,0.2958573547627421,0.2933950198165195,0.293446081878997,0.2941146418718708,0.294551857846712,0.29410995986185,0.2961184158727659,0.2969371395256834,0.2982046838199351,0.300131406044678,0.3020148132801574,0.304919892244435,0.3084255746135273,0.3129113569528077,0.3174073632789229,0.3200419248997448,0.3235949098621421,0.3258054426024397,0.3275145469659185,0.3272625905965434,0.3343885566889436,0.3365617433414044,0.3323977546110666,0.3327873327873328,0.34006092916984,0.0,2.028221501832557,50.81041269446979,159.22856243375512,215.17270930338103,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95747,47236,450.3848684554085,5284,53.98602567182262,4207,43.32250618818344,1667,16.99269951016742,77.33346816806463,79.69486027980845,63.32120940122799,65.06996707036383,77.11714155645737,79.48245739980649,63.23968944810046,64.99251394491894,0.2163266116072577,212.40288000196017,0.0815199531275325,77.45312544489025,221.2155,155.00016018138973,231041.70365651144,161885.13497173772,452.67604,299.028667013644,472178.25101569766,311705.99289131147,441.86267,215.2107354604292,457398.57123460784,221690.4571987028,2420.02056,1133.273762903609,2494780.369097726,1150877.3777806184,1022.74431,460.74812495205566,1052078.3941011208,465118.8182941034,1629.06672,698.2013210187015,1662809.9261595665,696547.3296241561,0.38281,100000,0,1005525,10501.89562075052,0,0.0,0,0.0,38737,403.9186606368868,0,0.0,40033,414.1017473132317,1239582,0,44507,0,0,8683,0,0,92,0.9504214231255288,0,0.0,0,0.0,0,0.0,0.05284,0.1380319218411222,0.3154806964420893,0.01667,0.3611261505143476,0.6388738494856524,23.22172235117198,4.1428989639328,0.3002139291656762,0.2712146422628951,0.2048966009032564,0.2236748276681721,11.12485194616134,5.965790517272734,17.907268012463938,11789.66998016497,48.119295746267646,13.91036620907915,14.350617360769188,9.634297239819048,10.22401493660026,0.5664368908961255,0.7957931638913234,0.6690419635787807,0.5812064965197216,0.1370882040382571,0.7321144674085851,0.9101123595505618,0.8328912466843501,0.7142857142857143,0.1616161616161616,0.4957612750084774,0.7227011494252874,0.5993227990970654,0.530448717948718,0.1305518169582772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0043098203058451,0.0064551488947079,0.0089719360279623,0.0111368767925794,0.0133287173273325,0.015516046160747,0.0177277459125145,0.0198070397776051,0.0219463011679444,0.0239894200506443,0.0262306863097376,0.0282693869995783,0.0305558130194333,0.032437786306797,0.0343469632447182,0.0363551643800155,0.0381646121280039,0.0402441052937996,0.0420350986824975,0.056421391066526,0.0708133170062901,0.0848871494076786,0.0982130649249571,0.1103060600307958,0.1257322927902205,0.1382628809099397,0.1489590429155313,0.1593450607196642,0.1690134803264448,0.1818034923678512,0.1930342768112178,0.2040760840012615,0.2133926911171149,0.2230875849778892,0.2326441567645984,0.2421404010181753,0.2507062226373898,0.2588754710128478,0.265762051986717,0.2719934311718651,0.2774412349432815,0.2815158363010376,0.2867223347030705,0.2912854612080471,0.2957129497465177,0.3002661867806396,0.3047145960641825,0.3080703569580962,0.3111571283485234,0.3088946029267242,0.3063487700975676,0.3041153710868801,0.3013823287255709,0.3003579225639731,0.2974260762984526,0.2945868945868946,0.2948137206630559,0.2950758093156672,0.2962659006975789,0.2974560419004863,0.2990790589441716,0.2996138190168041,0.3007108318292221,0.3026934895333205,0.3022867721832546,0.3028462782712335,0.3053411159229272,0.3094469399213925,0.3121266073194856,0.3146745293717396,0.3203919491525424,0.3241799673243685,0.3279075074161405,0.3298601332957852,0.3245238095238095,0.3285430362329919,0.3248679398618447,0.3296151701059676,0.3271889400921659,0.0,2.429930283407366,54.811044393079584,149.12541828500912,221.6133429827994,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95790,46790,444.5140411316421,5183,52.84476458920555,4096,42.11295542332185,1551,15.83672617183422,77.34149214859087,79.6804199874033,63.33904717832892,65.07245397142201,77.135822340804,79.48009276407313,63.26028379284767,64.99873074088528,0.2056698077868759,200.32722333016292,0.0787633854812455,73.72323053672858,221.14862,154.87432768879722,230868.16995511012,161681.10208664497,450.4716,297.96280173156043,469610.63785363815,310399.5573321102,428.44859,209.238527126992,443721.9647144796,215733.58244465163,2324.79908,1095.9646818142292,2391333.2080592965,1108537.334918501,942.70696,428.5156023374335,966903.3719594948,430179.5310159178,1510.83384,650.0803155079878,1542996.2626578975,646762.0448857637,0.38039,100000,0,1005221,10494.00772523228,0,0.0,0,0.0,38680,403.100532414657,0,0.0,38957,403.0170163900198,1243931,0,44623,0,0,8572,0,0,79,0.8247207432926192,0,0.0,0,0.0,0,0.0,0.05183,0.136254896290649,0.2992475400347289,0.01551,0.3436982520699172,0.6563017479300828,24.154377053902643,4.089981417944353,0.326416015625,0.2578125,0.208740234375,0.20703125,11.147896974515588,5.928484784684117,16.553483316016756,11757.46041605578,46.78464485901444,12.853470670636192,15.19084440405244,9.428373461599692,9.311956322726122,0.576904296875,0.7916666666666666,0.7068062827225131,0.5555555555555556,0.1261792452830188,0.7449392712550608,0.9183222958057397,0.8701298701298701,0.7014925373134329,0.1428571428571428,0.5043691017126879,0.6965174129353234,0.6407563025210085,0.5107033639143731,0.1211656441717791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025223619032182,0.004906582322111,0.00723527322543,0.0095516806893468,0.0116904919367146,0.0140571044402114,0.0162267460835509,0.0184010865014449,0.0205945210802409,0.0229267143837229,0.0252232669257349,0.027325378406687,0.0293554956697043,0.031400020603688,0.0332562890810409,0.0349582403043082,0.0370707865633931,0.0393169841072243,0.0411916909999688,0.0429237720448914,0.0578058807571109,0.0721799322430883,0.0855235580147552,0.0980779537405815,0.1102352246859455,0.1254135529083471,0.1370156374238006,0.1475155279503105,0.1583424954367387,0.1679476048064657,0.180325751133024,0.191068339100346,0.2020884721120516,0.2112338918582155,0.2209490295265849,0.2310648004606458,0.2401953133709393,0.2484165843140778,0.2568095588651679,0.2637169153375636,0.2697840895970442,0.2760766276368476,0.282133698876192,0.2872066724903371,0.2916762683290682,0.2955708661417323,0.2988956626024385,0.3027329618299293,0.3059107701051435,0.3093377535717104,0.306402193194646,0.3039502409688182,0.301734201606211,0.2999091053368152,0.2973053181386514,0.2952548330404217,0.2924920557127725,0.2927641289730049,0.2934530311305298,0.2940316078627234,0.2943323475461386,0.2967052502666614,0.2977209467802356,0.2998503762924585,0.3001345571627661,0.3015703533946196,0.3020550490182068,0.305154378535537,0.308819902040241,0.3133426128454961,0.3165061898211829,0.3194985329421179,0.3240658644711843,0.3302364864864865,0.3334279765284876,0.3404331270823417,0.3475100525827405,0.3528085280852808,0.3553144129104062,0.3558352402745995,0.0,2.5171094002566834,53.34059916042875,147.87307296449475,210.43896471182032,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95701,46682,443.966102757547,5256,53.677600025078114,4235,43.646356882373226,1610,16.426160646179248,77.3419109081298,79.71035346863793,63.33255108723839,65.08090275271589,77.13282982275717,79.50454659140365,63.253466941705,65.00523200718371,0.209081085372631,205.8068772342807,0.0790841455333861,75.67074553217878,221.89904,155.36886774630352,231867.00243466636,162348.2176218676,450.37547,297.2567575898873,470023.15545292106,310026.1727566977,434.19942,210.96027212335068,449825.3414279893,217434.0964443808,2439.33144,1131.6424195974532,2516245.640066457,1149813.7110348411,981.20842,439.6508888622975,1009605.6781015872,443720.7540802055,1577.14316,670.1632266956778,1611687.2132997564,670151.5499875633,0.37945,100000,0,1008632,10539.40920157574,0,0.0,0,0.0,38574,402.45138504299854,0,0.0,39424,408.125306945591,1241400,0,44522,0,0,8672,0,0,83,0.8463861401657246,0,0.0,0,0.0,0,0.0,0.05256,0.1385162735538279,0.3063165905631659,0.0161,0.3506635157244137,0.6493364842755862,23.812411547043062,4.233362064992754,0.3095631641086186,0.2644628099173554,0.2059031877213695,0.2200708382526564,10.9378310468499,5.608006539874556,17.116377571112523,11740.572110636447,48.23654650032947,13.697618193012044,14.728361988857287,9.726756322665723,10.083809995794418,0.5678866587957497,0.8017857142857143,0.6895499618611747,0.5871559633027523,0.0976394849785407,0.7242524916943521,0.9046563192904656,0.8228228228228228,0.7741935483870968,0.1083743842364532,0.5057736720554272,0.7324364723467862,0.6441717791411042,0.5251908396946565,0.0946502057613168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0045606567345697,0.0068878068573747,0.0092325505809701,0.0114491397893195,0.0139386657978333,0.0162390287164745,0.018188127704744,0.0207379394930498,0.0228335738483424,0.0249513070220399,0.0270872480464939,0.0292254534984163,0.0313607516690018,0.0331448384034341,0.0349810829250139,0.0371893123446561,0.0391859777295793,0.0410189758253184,0.0429549504486197,0.0574713844097251,0.0715227767543125,0.0846579165486345,0.097619723791192,0.1091960085230269,0.1248809700150242,0.1367388075535752,0.14746087511977,0.1587162530314847,0.1684779693383828,0.1800751839205506,0.1921445115483689,0.2037552760976458,0.2129218521029723,0.2220926779370194,0.2314896820476485,0.2396083111205291,0.2472147586873672,0.2545827850628431,0.2616478020531719,0.2678166504697117,0.273357049241715,0.2793007125440901,0.2839167375699545,0.2887720022837429,0.2930224529302245,0.2980887252323339,0.301675124966612,0.3057061876350835,0.3097289180431518,0.3083659550425763,0.3059240339457856,0.3036993342883627,0.3016680110624568,0.2995407407407407,0.2964518000549635,0.2935190736124696,0.2942476789310802,0.2937275160690842,0.29455374964357,0.2954350020563054,0.2961099932930919,0.2977489268139461,0.2972556206141331,0.2986189504023057,0.3010928961748634,0.3042933606650723,0.3064921202988636,0.3119823108240909,0.3153690234887326,0.3208816178141331,0.3256591162272558,0.3262674550257894,0.3307164634146341,0.3349948274240572,0.3385107896608963,0.3419285932255111,0.3480922260763109,0.3536449638286032,0.3671755725190839,0.0,2.3686108106687422,52.33015464406268,158.23036945310798,221.82137810738823,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95706,46856,445.7714249890289,5379,54.85549495329446,4261,43.91574195975174,1583,16.184983177648213,77.33810060160408,79.7209652871128,63.31256206328344,65.07500955434604,77.14197902210795,79.52766787176402,63.23846687706263,65.00459882706716,0.1961215794961361,193.29741534878053,0.0740951862208092,70.4107272788832,219.9241,154.03580885799076,229791.3401458634,160946.86734164078,449.18057,297.1343701945011,468760.2971600527,309892.30580580235,440.97467,215.01718027994957,456825.94612667966,221681.99266342743,2432.23532,1137.5915306162142,2509762.6481098365,1157032.63182686,975.68985,440.1673850174466,1006372.7039057112,446823.1824728294,1542.61058,651.3839739305521,1579803.4605980816,652516.6688578004,0.38034,100000,0,999655,10445.060915721062,0,0.0,0,0.0,38563,402.3258729860197,0,0.0,40074,414.77023384113846,1245364,0,44728,0,0,8871,0,0,75,0.7836499279042066,0,0.0,0,0.0,0,0.0,0.05379,0.1414260924436031,0.2942926194459936,0.01583,0.3530144051218211,0.6469855948781789,23.67380750624285,4.196766493243111,0.3194085895329734,0.2668387702417273,0.2102792771649847,0.2034733630603145,11.217282738572852,5.833547472827908,16.79235978631304,11733.73808452018,48.7944809366361,14.031341193028048,15.324005109032177,9.99418100688267,9.44495362769321,0.5770945787373856,0.802990325417766,0.6869948567229978,0.5747767857142857,0.1107266435986159,0.7464788732394366,0.917391304347826,0.856353591160221,0.7004830917874396,0.1348314606741573,0.510150622134905,0.725258493353028,0.6256256256256256,0.5370101596516691,0.104499274310595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021082078206401,0.0045242442686143,0.0068430564298332,0.0090859198731629,0.0114569448825307,0.013404088450687,0.0156151194337351,0.0180477391810595,0.0199212558163317,0.0220447447908667,0.0244362637024579,0.0265949254007208,0.0286146126796767,0.0310485448890902,0.0329079711565243,0.0349705994812281,0.0368598703692199,0.038801913121064,0.0407531006663963,0.0428260393987061,0.0570431949202105,0.0714577335775975,0.0845636457120072,0.0975304486842382,0.110315443107394,0.126126602631913,0.1372241086587436,0.1480929360904657,0.1579464820039326,0.1678628517481467,0.1804018746969778,0.1918459256693118,0.2032610588645071,0.2129969034149971,0.2217269765803838,0.2315944631002648,0.2406387849684516,0.2490292518767797,0.2566798769063057,0.2627000137545275,0.2691826666975473,0.2761381861603119,0.2816492794467667,0.2867792466172082,0.2906729519250629,0.2946524394004811,0.2999862219271766,0.3037697401935813,0.3065646165999715,0.3098127143233975,0.3073167451244116,0.3043579873522133,0.3013619607732785,0.2999293163885002,0.2986115231709488,0.2948249223661868,0.2909926702893972,0.2912430627179411,0.2924481695371458,0.2929988435192598,0.2933773968894116,0.2942125666607631,0.2951257697526354,0.2966704578399233,0.2978789619841042,0.300705262342091,0.3005786873676782,0.3038258863147391,0.3080399040634016,0.3099293563579278,0.3123124468132754,0.3149355730606709,0.3173260909820381,0.3217482100238663,0.3230825890801952,0.3284765124140342,0.3335327550104696,0.336494763880656,0.3436076119002948,0.3453049008604564,0.0,2.3928206857892635,52.3991724350184,167.28097881460388,216.6172996381071,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95658,46660,443.7266093792469,5234,53.57628217190408,4113,42.49513893244684,1574,16.109473332078863,77.27782633283482,79.68736643593515,63.2892740309558,65.071624544123,77.07949111282488,79.49085032594586,63.214403857942166,64.99958325341066,0.1983352200099375,196.5161099892896,0.0748701730136289,72.04129071233467,220.60456,154.54526186126162,230617.9932676828,161560.20600604403,447.66935,296.7301593536799,467505.8437349725,309715.391659537,440.95447,214.84395069695745,457401.51372598216,221947.67169166636,2347.46072,1104.8246145050175,2428147.232850363,1129106.7913870427,951.91855,428.2670587265687,984865.9495285288,437445.4606269925,1527.00604,647.1292506215724,1565425.3695456733,650930.4918581671,0.37955,100000,0,1002748,10482.636057621943,0,0.0,0,0.0,38430,401.2419243555165,0,0.0,39962,414.24658679880406,1242074,0,44578,0,0,8769,0,0,82,0.8572205147504652,0,0.0,1,0.010453908716469,0,0.0,0.05234,0.1379001449084442,0.3007260221627818,0.01574,0.3511785126987027,0.6488214873012973,23.73965222305172,4.215443660101644,0.3146122052030148,0.2652565037685387,0.2178458546073425,0.2022854364211038,11.745424352148762,6.487330981335645,16.797835433231505,11734.340172451974,47.27056117743257,13.25922417424556,14.822211991367146,9.976525675605796,9.212599336214067,0.5827862873814734,0.7919340054995417,0.6986089644513137,0.5904017857142857,0.1201923076923077,0.7545304777594728,0.921875,0.8607954545454546,0.7619047619047619,0.1311475409836065,0.5108658157985512,0.7013996889580093,0.638004246284501,0.530827067669173,0.1171032357473035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001975964169183,0.0044114067824111,0.0066899478204373,0.0089941766517271,0.0113434050562083,0.0135186071861533,0.0158286588475267,0.0180988080525396,0.0203760152206378,0.0226180842236813,0.0245128205128205,0.0266652971085203,0.0288316098163296,0.0309501478969771,0.0329854120853594,0.0351450586957646,0.0373141288016165,0.0392694348399422,0.0412690814871853,0.043227124864459,0.0578683385579937,0.0721250013090787,0.086278378974106,0.0989834361122219,0.1113409242003735,0.1272494389634585,0.1387410923843204,0.1489867240607752,0.1597484411264532,0.1689195718227595,0.1811980732550997,0.1921502815071459,0.2029648011493502,0.2130171687439132,0.2223274040154984,0.2313496504271326,0.2401509316007457,0.2479830769750093,0.2551518315101448,0.26296453137697,0.2682867613905684,0.2743537605758893,0.2794234157531898,0.2850536706919686,0.2899253051557661,0.2939087984023077,0.2979189348149816,0.3010100239149239,0.3054105516767917,0.309011290492772,0.3070684754347914,0.304646164021164,0.3024925589990266,0.3001330710483684,0.2974661885703233,0.2945271648290985,0.2909578094528389,0.2904276315789473,0.2912518389270929,0.2923486527053106,0.2936030720239768,0.2939699982212384,0.295095350735802,0.2961153133855456,0.2972064893923394,0.2981485809249305,0.29830199948804,0.3029083477440654,0.3068469991546914,0.3112896170517358,0.3139815278220119,0.31864764923402,0.3231867718902668,0.3254397319728927,0.3320198892954311,0.3374836950077078,0.3413549969343961,0.3493779318784418,0.3522727272727273,0.3611111111111111,0.0,1.9827453126677783,53.1700504267566,154.19384238303198,211.7965452279739,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95828,47031,446.8005175940226,5298,54.18040656175648,4211,43.4632883917018,1556,15.903493759652712,77.39792083527668,79.70192465505134,63.37134666233783,65.07168258117288,77.1952011951495,79.50088153278199,63.29422723787195,64.99735299321084,0.2027196401271851,201.0431222693541,0.0771194244658772,74.32958796204048,221.18382,154.8865969864839,230813.35309095465,161629.79190475008,451.39341,298.7221101962709,470597.26802187256,311279.21922222193,435.81512,211.92663923489704,452045.44600743,219053.462923527,2394.7606,1119.9993449805122,2472212.797929624,1142165.465028873,974.3132,436.13327959048144,1004313.6452811288,442795.7774804324,1519.62304,654.5907099866048,1554794.882497809,657732.3360643988,0.38069,100000,0,1005381,10491.516049588849,0,0.0,0,0.0,38839,404.8190507993488,0,0.0,39470,409.0662436866052,1243286,0,44544,0,0,8693,0,0,77,0.8035229786701172,0,0.0,0,0.0,0,0.0,0.05298,0.1391683522025795,0.2936957342393356,0.01556,0.3377280115586057,0.6622719884413942,23.587720812930637,4.119797827586408,0.3049156969840892,0.2821182616955592,0.2063642840180479,0.2066017573023034,11.105271066261684,5.907413493104614,16.783768953885744,11715.823576092103,47.92287124281233,14.418112750992847,14.37129277251858,9.618397524376649,9.515068194924256,0.581334599857516,0.7920875420875421,0.690809968847352,0.6075949367088608,0.1057471264367816,0.7317473338802297,0.9051546391752576,0.8408408408408409,0.746268656716418,0.115,0.5200534759358288,0.7140825035561877,0.6382754994742377,0.5658682634730539,0.1029850746268656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020146594314408,0.004245660610605,0.0063289213448957,0.0082856939776408,0.0106742029928432,0.0129856913150556,0.0152839762792688,0.0174037235399132,0.0194641981363413,0.021536730100266,0.0239846727593131,0.0258533132252008,0.0283357134784708,0.0304296372523797,0.032488146773861,0.0347024325775409,0.036746981719618,0.0388262974057068,0.041006843127278,0.0430664834936097,0.0579049486772928,0.071435295102028,0.0850695718734599,0.0974514792774985,0.1094784331913817,0.1252537212449255,0.1368051578969693,0.1481442058989451,0.1579920090592483,0.1672691387688116,0.179903069466882,0.1913225017848257,0.2021614334174132,0.2115771518544436,0.2204625688739318,0.2302922940655447,0.2397689511362876,0.2477795516380725,0.2555637435519528,0.2619818541697653,0.2679605590169809,0.2740622188993119,0.2796268489069132,0.2836492437296573,0.288483217571548,0.293363174657829,0.2977490917716383,0.3025876619668261,0.3070033730953642,0.3106819108766298,0.3094896385218966,0.3072873827932226,0.3048073549020983,0.3027111034363667,0.3007814812622106,0.2987430486782966,0.2948199014064542,0.2943338287898339,0.2943467464879757,0.2945569642761882,0.2956935123042505,0.296982800982801,0.2976267372325131,0.2980098504602081,0.298620275944811,0.2990855717774198,0.2996268550431538,0.3048062698687482,0.3069591421963697,0.3096718001504414,0.3136960087479497,0.3157334468809878,0.3189264112903225,0.321023376227823,0.3228146194423512,0.3258785942492013,0.3302304288112315,0.3342031312725813,0.330446549391069,0.3329575347613679,0.0,1.8975897799257475,53.37787938774397,153.411442873499,221.7075841443502,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95554,46721,445.96772505598926,5268,53.99041379743391,4162,42.991397534378464,1600,16.336312451598047,77.19945181010942,79.67071350578605,63.224607941291474,65.05361113567679,76.99273735739447,79.46574465790812,63.14645550308119,64.9787212606335,0.206714452714948,204.9688478779359,0.0781524382102816,74.88987504328293,218.51676,153.01992303548937,228684.0529962116,160139.73568399998,442.93059,292.87511724842483,462959.9807438726,305922.8826332966,430.04745,209.78211315660167,446679.25989492855,216933.91162122227,2384.81112,1113.8191384578963,2465088.892144756,1135083.9757713992,956.34692,433.15186178856464,986866.8187621658,439378.7379034629,1556.9281,670.0694324685763,1592269.8578814075,669803.8060676642,0.37834,100000,0,993258,10394.72968164598,0,0.0,0,0.0,38071,397.8169412060197,0,0.0,38976,404.4623982250874,1251536,0,44946,0,0,8771,0,0,76,0.79536178495929,0,0.0,0,0.0,0,0.0,0.05268,0.1392398371834857,0.3037205770690964,0.016,0.3405600722673893,0.6594399277326106,23.665201839265567,4.183863004141479,0.3212397885631908,0.263094666025949,0.2044690052859202,0.2111965401249399,11.41020551459832,6.190737616778858,17.31675981534981,11709.419824327018,47.63729101735414,13.397744395336192,15.142049779464354,9.336784580376904,9.760712262176677,0.573282075925036,0.7780821917808219,0.706058339566193,0.5875440658049353,0.1023890784982935,0.7384744341994971,0.8820861678004536,0.8932584269662921,0.7409326424870466,0.1527093596059113,0.5069046817110138,0.7079510703363915,0.6381243628950051,0.5425531914893617,0.0872781065088757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023922717458515,0.0042105476755747,0.0065399301324234,0.0086424272002602,0.0110151891517693,0.0133437990580847,0.0156758687554217,0.0178111587982832,0.0200266066311911,0.0220744217505815,0.0239280618372563,0.0259426444428449,0.0278470062408601,0.0299248011718226,0.0319630456349206,0.0337032129844319,0.0358102151931553,0.0379335072385446,0.0400195827213732,0.0421347141604376,0.0565899581589958,0.0700976228674489,0.0837546644242392,0.0965607350585855,0.1085145961485615,0.1232520911297931,0.1352090203169875,0.1467264286857691,0.1572942222603143,0.1668136453583412,0.1797690920283829,0.1909852612385769,0.2025835733612638,0.2118323332272891,0.2212411844559471,0.2311964720127078,0.2393858687137709,0.248075924797436,0.255732444211796,0.262487509619029,0.2688386550528305,0.2751184389511703,0.2809086056580274,0.2860299238694493,0.2910888437047228,0.295247037892734,0.2998870056497175,0.3035532088562391,0.306369335808206,0.3101418993083565,0.3073133200151179,0.3046709129511677,0.3021822234134093,0.3004876213627353,0.2985661321302542,0.2953045880006137,0.2925777347899853,0.2933677665559101,0.2941206692812248,0.2959859634045905,0.2964487034949267,0.2973101453868399,0.2977417048656377,0.2986171810215379,0.2995009522891101,0.3000209128457154,0.3003513382273129,0.3043218607575043,0.3085812638308335,0.3118177503559563,0.3171205347062277,0.3212143533620962,0.3267110917356916,0.3292821016079112,0.3329001113999257,0.3369297525507212,0.3424451787323521,0.3385437277404036,0.3424177010253643,0.3452695062193743,0.0,2.1445771504726614,52.13359814673894,154.22154436718452,220.85303056503915,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95677,47062,446.80539732642114,5323,54.27636736101675,4174,43.00929167929596,1632,16.61841403890172,77.33990302576841,79.73111041040988,63.32261558699434,65.08922192554344,77.13066457384518,79.52613719904967,63.24380970555982,65.0148344367693,0.2092384519232268,204.97321136021185,0.0788058814345191,74.38748877413559,220.32758,154.42831444788507,230281.55147005027,161404.7819871286,448.35417,297.3014237188235,467924.4855085339,310048.0271317073,439.85323,214.1536513665118,456167.804174462,221008.37854663527,2389.98936,1119.150379514965,2463348.7253989987,1135342.7845998877,1001.14287,452.1003212393537,1027179.4370642892,453467.3303984638,1594.93704,677.0085078285532,1626358.9577432403,672879.4771975935,0.38287,100000,0,1001489,10467.343248638648,0,0.0,0,0.0,38503,401.74754643226686,0,0.0,39913,413.59992474680433,1244804,0,44588,0,0,8735,0,0,71,0.7420801237496994,0,0.0,0,0.0,0,0.0,0.05323,0.1390289132081385,0.3065940259252301,0.01632,0.3398493543758967,0.6601506456241033,23.75353163318516,4.1458620992669575,0.3001916626736943,0.2625778629611883,0.2194537613799712,0.2177767129851461,11.284060740122785,6.035572129133474,17.396132698068932,11822.84006284201,47.65767252166151,13.38942131520698,14.197483892097946,10.140699118834034,9.930068195522548,0.5754671777671299,0.8056569343065694,0.704708699122107,0.5796943231441049,0.1155115511551155,0.7429048414023373,0.9155251141552512,0.863768115942029,0.7387387387387387,0.1398963730569948,0.5080645161290323,0.7325227963525835,0.6442731277533039,0.5288184438040345,0.1089385474860335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044194414880137,0.0067782163549837,0.008958680372161,0.0111853411020611,0.0134469349946049,0.0157581440861091,0.0177492447129909,0.0198826463853451,0.0222010685991524,0.0242759751909375,0.026884148719949,0.0291419874958868,0.0312612659010145,0.0332538625878564,0.0354742653901031,0.037649057737534,0.0398173136807141,0.0418625941492239,0.0442632862831766,0.0598165597643273,0.0735568165162587,0.0861851906250655,0.0987271197138649,0.1111486201367204,0.1265816089035588,0.1381146888759217,0.1492256107296822,0.1592681207408515,0.1686753447277562,0.1805091864647726,0.1930247908843994,0.2040392395701918,0.2134266345943581,0.2220632422378022,0.2318291575286325,0.2410607700288956,0.2503768702891213,0.2582782208206187,0.2653061224489796,0.2722772277227723,0.2783305079791898,0.2837777094324445,0.2894777808379935,0.2947971267715006,0.2977557828907683,0.3017639043416299,0.3049858961652817,0.3085283956368153,0.3115398309443118,0.3089044690557253,0.3066338593500852,0.3048857734048393,0.303155066308399,0.3009519849108164,0.2975786480785105,0.2939828714091584,0.293919084995166,0.2944580610021786,0.2943865390772295,0.2945955031000224,0.2954460362188897,0.2963759341989896,0.2980243330728876,0.298647967147763,0.3003435174100869,0.3027277640299229,0.3058801356954391,0.3077973938629676,0.3118932996606424,0.3152468800868149,0.3191680304070105,0.3253079857419799,0.3253722318796765,0.3327428677978743,0.332549388523048,0.3344007319304666,0.3289902280130293,0.3340744858254585,0.3397239263803681,0.0,2.311148346580325,52.02848980451613,155.60538887819044,218.86540706819983,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95796,46827,444.96638690550753,5155,52.76838281347864,4025,41.56749759906467,1540,15.783540022547914,77.331780499572,79.67248382180527,63.32970022966426,65.06271120852595,77.13432111115372,79.47572935929028,63.25671949115544,64.99154878816543,0.1974593884182809,196.7544625149884,0.072980738508825,71.16242036052256,220.69982,154.6080114152781,230385.21441396305,161392.97195632188,446.95901,296.1481834871479,466134.98475928017,308705.8368691259,433.00787,210.6016064787164,448938.0245521734,217382.8747660204,2290.41412,1076.367188238852,2366971.773351706,1099765.3752563377,921.88175,420.2796856589967,947838.0203766336,424285.3118458344,1494.17522,632.215130151623,1532939.2458975322,637847.4504414952,0.37883,100000,0,1003181,10472.05520063468,0,0.0,0,0.0,38467,401.0814647793227,0,0.0,39216,406.3008893899536,1244949,0,44734,0,0,8726,0,0,81,0.8455467869222096,0,0.0,0,0.0,0,0.0,0.05155,0.1360768682522503,0.2987390882638215,0.0154,0.3538060673739066,0.6461939326260935,23.802919538648812,4.066747335311562,0.3257142857142857,0.2688198757763975,0.2077018633540372,0.1977639751552795,11.239251069977,6.066024790436238,16.531838113343753,11670.037711570669,46.25496898991094,13.182650423663532,14.940256676600669,9.367708816831618,8.764353072815119,0.595527950310559,0.8160813308687616,0.7109077040427155,0.5873205741626795,0.114321608040201,0.7620253164556962,0.9364705882352942,0.8784530386740331,0.7342342342342343,0.1363636363636363,0.526056338028169,0.7382039573820396,0.6469968387776607,0.5342019543973942,0.1080645161290322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575082299316,0.0043591095251611,0.0066871645001877,0.0087975943760412,0.0114111365369946,0.0137577775741097,0.0161905344507656,0.0180897545836906,0.0199137208398928,0.0221835491631263,0.0242854799688358,0.0262439164630264,0.0284101425134184,0.0309741350006695,0.0330873626090097,0.034941901335649,0.0369933097205824,0.0391213258935053,0.0413051384631371,0.0431672653443698,0.0581931633206728,0.0712268591151553,0.0847676149346973,0.0972165305929451,0.1087907109064663,0.1238852022486157,0.1359999152120229,0.1463523557370251,0.1557251093800021,0.1661810078848131,0.1790119470455279,0.1908418411489877,0.2017374097590676,0.211200769752236,0.2201989305283542,0.2290736699859328,0.2370138199502526,0.2456964886045491,0.2538602816134956,0.2610706069519635,0.267609052451513,0.2728547392035894,0.2786030229202639,0.2827110360441298,0.286576260486348,0.2911613920930691,0.2959685595203825,0.2997682532406346,0.3036505427882996,0.3085276227420865,0.306485679307979,0.3046333054025467,0.3025751374766184,0.2997487654855756,0.2985216410378198,0.2960898986496831,0.293267251480508,0.2936937824174381,0.2940462763594108,0.2951547347404449,0.2954039127585884,0.2966278840465391,0.2974896886711471,0.2973226447535895,0.2972459410703548,0.2975219532532506,0.2988904694167852,0.3025915828397731,0.3064679395441376,0.3112349778621125,0.316157443137967,0.3186277109072591,0.322429906542056,0.3268674882093412,0.3260155736935922,0.3330580462482303,0.3416424529744609,0.3398758261566192,0.3475760065735415,0.3524366471734892,0.0,1.7273806223278847,52.13956786759693,152.11493960611702,206.0260418957365,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95689,46790,445.47440144635226,5303,54.1859565885316,4209,43.41146840284672,1616,16.43867111162203,77.34192318165195,79.71654819924476,63.32298576779221,65.07470743875382,77.13309837256125,79.51382216679359,63.243390942251104,65.00072673790181,0.2088248090907001,202.72603245116727,0.0795948255411076,73.98070085200459,221.13322,154.90165885926922,231095.75813311877,161880.31942989185,449.60963,297.2995540681208,469306.6914692389,310134.7752428769,436.08094,212.5611717808569,452640.219878983,219694.6129538137,2382.34612,1114.4569687333787,2457924.9443509704,1132918.092780914,942.58846,423.7319757401738,969032.5951781292,426823.2572240236,1563.84092,666.0418299435971,1592906.227466062,659159.5157240517,0.38052,100000,0,1005151,10504.35264241449,0,0.0,0,0.0,38676,403.58870925602736,0,0.0,39543,410.16208759627546,1240069,0,44438,0,0,8770,0,0,86,0.8987448923073709,0,0.0,0,0.0,0,0.0,0.05303,0.1393619257857668,0.304733169903828,0.01616,0.3576971665764302,0.6423028334235698,23.722209426882863,4.1144318514848575,0.3138512710857686,0.2646709432169161,0.2200047517224994,0.2014730339748158,11.57784673189022,6.357819289530889,17.15484233135482,11714.15154445107,48.03820203796976,13.618395010197805,15.00479543570751,10.305815810348552,9.109195781715885,0.5792349726775956,0.8114901256732495,0.6805450416351249,0.591792656587473,0.1025943396226415,0.7628951747088186,0.9177777777777778,0.877906976744186,0.7850877192982456,0.1277777777777777,0.5058197539075491,0.7394578313253012,0.6110542476970318,0.5286532951289399,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021870538562012,0.0044394441572657,0.0066952737453969,0.0090600686615068,0.0114813948521859,0.0134287634134918,0.0156699223130722,0.017930626040252,0.0201848746369994,0.0221983310295397,0.0244852760232958,0.026555488236925,0.0288197480071997,0.0307776323788523,0.0327642091789334,0.0348293691830403,0.0368260216501786,0.0387390099338779,0.0407254877490744,0.0427773493674579,0.0570458581426929,0.0705340314136125,0.0838546477454026,0.0959381248026938,0.108367366321588,0.1230604771279185,0.1345106242898557,0.1452420523310321,0.1561183690051102,0.1664716302539052,0.178693898677939,0.1908578856152513,0.2025932458031223,0.2126299660720149,0.2214467354330188,0.2306839964985761,0.2393600392997499,0.2478273595100864,0.2551871220973103,0.2617081467398151,0.2687496383729676,0.27502691065662,0.281307338092025,0.2862092529762262,0.2909685180009963,0.294822975587514,0.2992274850066985,0.3024835869509898,0.3059021703919663,0.3092773978931805,0.3067683970721054,0.3051106761860132,0.3034024732441235,0.301663393785376,0.2995211338601355,0.2965243296921549,0.2941390090630625,0.2935515075994819,0.2945302500213329,0.2947838940038823,0.2961848327943623,0.2959373025900189,0.2969514490026345,0.2983184832853219,0.299973638171927,0.3001245330012453,0.3016542972069571,0.3056232427366448,0.3111505780749408,0.3155406736261572,0.317976920302921,0.322336227308603,0.323148206123599,0.3259710014273909,0.3278703703703703,0.3281195689954814,0.3295589988081049,0.3316215682401738,0.333423545331529,0.3360443622920517,0.0,2.2494585455527405,52.284771084593054,159.31163495755106,218.2337634153652,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95735,47023,447.0569802057764,5336,54.53595863581762,4193,43.18169948294772,1610,16.40988144356818,77.32392886815877,79.68906258865088,63.31606620966248,65.06534568224673,77.11720850700975,79.48672454260635,63.23791087387679,64.99200136263322,0.2067203611490242,202.33804604453096,0.0781553357856879,73.34431961351129,221.58158,155.26643426003636,231452.3632945109,162182.88072286666,450.0564,297.80885591186313,469455.2253616754,310425.4400103069,435.59319,211.71302863639016,451577.9391027314,218464.01707986672,2419.887,1125.0757150299148,2494101.21690082,1141640.7456387994,976.54259,437.4385731664883,1008202.8202851622,445229.164326668,1578.51752,670.8746913856274,1610472.34553716,667362.9976207466,0.38223,100000,0,1007189,10520.561967932314,0,0.0,0,0.0,38613,402.6636026531572,0,0.0,39493,409.1084765237374,1238183,0,44448,0,0,8939,0,0,81,0.846085548649919,0,0.0,0,0.0,0,0.0,0.05336,0.1396018104282761,0.3017241379310345,0.0161,0.3501254930082467,0.6498745069917533,24.087004921775545,4.197209820458788,0.3098020510374433,0.2678273312663963,0.2041497734319103,0.2182208442642499,11.386318492709142,6.054552144978247,17.229034701944137,11854.185285072352,47.84292115812424,13.493897506292347,14.799942083005064,9.522837580915564,10.02624398791126,0.5800143095635583,0.8032056990204809,0.7090069284064665,0.5771028037383178,0.1256830601092896,0.7443280977312391,0.9335038363171356,0.8526912181303116,0.7129186602870813,0.1968911917098445,0.5182146373482114,0.7336065573770492,0.6553911205073996,0.5332302936630603,0.1066481994459833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410748832639,0.0048261667460888,0.0072157833844155,0.0093682050031498,0.0115962078365951,0.0139103869653767,0.0161796790571539,0.0184756091336878,0.0206013761514789,0.0226067369714344,0.0249238750422916,0.0271360808230148,0.0293313319899658,0.0312722103766879,0.0331142229147533,0.0349692997870624,0.0369572422936692,0.0391509678758627,0.0412013061292402,0.0431652427589081,0.0576541585750381,0.0723791588198367,0.0858317341470831,0.0986981850301794,0.1111193132685128,0.1268459357677823,0.138641596723364,0.149848267049992,0.1606742293148753,0.170887297366841,0.1832255008558418,0.1943765545582351,0.2056294234678901,0.2159171668798723,0.2246711539307553,0.2352960719387811,0.2438455529516795,0.2516905766526019,0.2592857467193388,0.2657717043643742,0.2718014667547183,0.2777452381510203,0.2833878537903569,0.2880074863230636,0.2923550451349181,0.2967595505063587,0.3013794745216944,0.3053552775725459,0.3081520470868877,0.3112505780537755,0.3091075736949226,0.3066532646710544,0.303750176230086,0.3016052060737527,0.3002362661039868,0.296842008629395,0.2945481561102065,0.2950263752825923,0.2953274215552524,0.2957784111150695,0.2964257020608733,0.2969193751972231,0.2991354827931841,0.3003677699765965,0.3019989454005081,0.3045104967782165,0.3066216905720278,0.3114527769061813,0.313851446222971,0.3161916072842438,0.3187162376866857,0.3223472244229652,0.3249859137294184,0.3298274818401937,0.3298581760120221,0.3287152161042037,0.3336344474555857,0.3391629003733543,0.3339478535686068,0.3389513108614232,0.0,2.271417318770179,49.69966347191217,164.47551229741094,219.594792180574,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95797,47188,448.709249767738,5313,54.17706191216844,4197,43.26857834796497,1627,16.5975970019938,77.4066300966336,79.74656069320066,63.35719594835807,65.08815895388467,77.19497830329883,79.53854743332481,63.27688950514932,65.01194961595913,0.2116517933347808,208.01325987585528,0.0803064432087481,76.20933792554752,220.87472,154.8913455290405,230565.3830495736,161687.05233884204,451.24698,298.8330081301416,470501.4979592263,311400.5116341238,444.57137,216.94633351288985,461361.7545434617,224229.85620025988,2388.948,1125.1856813052325,2463476.768583568,1144268.1099671512,969.96485,441.1872581191218,998869.359165736,446892.1658497876,1576.89494,676.3297011118851,1609522.7407956407,673489.4929874523,0.38125,100000,0,1003976,10480.244684071527,0,0.0,0,0.0,38736,403.77047297932086,0,0.0,40256,417.52873263254594,1240857,0,44542,0,0,8795,0,0,83,0.8559767007317557,0,0.0,0,0.0,0,0.0,0.05313,0.1393573770491803,0.3062300018821758,0.01627,0.3524442846872753,0.6475557153127247,23.61208513105298,4.115057262972292,0.3197522039552061,0.2694781987133667,0.2063378603764593,0.2044317369549678,11.130268778397928,5.90153966943271,17.382785564570902,11755.47319686261,47.81794481288896,13.731570723103935,15.18837697538437,9.590665294768405,9.307331819632251,0.5751727424350727,0.784261715296198,0.6810730253353204,0.5842956120092379,0.1247086247086247,0.744408945686901,0.9184100418410042,0.8086253369272237,0.7309417040358744,0.1666666666666666,0.5032258064516129,0.6860643185298622,0.6323377960865088,0.5334370139968896,0.1135693215339233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277889233388,0.0044716189085599,0.0065860910686922,0.0089308393363339,0.0111268192959794,0.0136147939960489,0.0156909524683428,0.0180880926861634,0.0201868432887689,0.0223402513406197,0.0244534861078372,0.0265663800357091,0.0285314915309981,0.030348576252342,0.0326361471616035,0.034705657610772,0.0368918177962156,0.0388750090708354,0.041006088058678,0.043101204543325,0.0570441787182537,0.0710401372069189,0.0847841353359816,0.0981441002143848,0.1107493915736907,0.1262573964497041,0.1378301606817314,0.149631582864616,0.1602146866130306,0.1702407986631817,0.1831132917998214,0.1944681725290053,0.2052424525636288,0.2140571590822221,0.2224443834111507,0.2320084978312826,0.2404055274868672,0.2488054952838143,0.2563709979245347,0.2634729853479853,0.26976050327848,0.2755074614656492,0.2810777564875925,0.286595370115328,0.2914597272649998,0.2956889222921774,0.299589466306198,0.3027231217328263,0.3061803208639241,0.3087540576918001,0.3068788058414614,0.3040990371389271,0.3020547269987466,0.3003163505568637,0.2991440312124493,0.295651775346819,0.2930210551218358,0.2932496691014265,0.2930935007636178,0.2927628665072194,0.2937023860524894,0.294206509583881,0.2953709285164937,0.29605555062561,0.2969010727056019,0.2991276518866463,0.3023039395392121,0.3051885472689402,0.3076549041400389,0.3112130838922226,0.3150290318224782,0.3185344375720725,0.3176543592925845,0.3197101016138673,0.3240562138330118,0.3250462534690101,0.3218442932728647,0.324703557312253,0.3211282885815025,0.3259962049335863,0.0,2.1096746696095106,54.51809076742596,150.98656862839155,217.5210438728436,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95678,46536,442.8186207905684,5274,53.784569075440544,4182,43.02974560505027,1590,16.15836451430841,77.29491858535671,79.69561076217641,63.29396199958445,65.07331237208476,77.09488889742191,79.50410068117434,63.217469821640535,65.00374547351248,0.2000296879348013,191.5100810020789,0.0764921779439191,69.56689857227616,219.89198,153.95441422471794,229825.01724534377,160908.89674190298,444.77663,293.4401241880996,464192.72978114086,306021.22397198074,430.47628,209.5770433049915,445500.1045172349,215760.31572696252,2361.92796,1103.6203354833708,2432455.4861096595,1117414.6459380265,973.96715,437.7361148938109,1001888.4174000293,441579.2204366765,1550.35778,658.5444886925085,1578149.1879010848,650447.6333968499,0.38039,100000,0,999509,10446.59169297017,0,0.0,0,0.0,38195,398.4928614728569,0,0.0,39082,404.2413093919187,1252031,0,44940,0,0,8678,0,0,83,0.846589602625473,0,0.0,1,0.0104517234892033,0,0.0,0.05274,0.1386471778963695,0.3014789533560865,0.0159,0.3514347984017436,0.6485652015982565,23.67183379101438,4.1361473191681695,0.3175514108082257,0.2680535628885701,0.212338593974175,0.2020564323290291,10.849540266686349,5.706445525331342,16.928415144959775,11714.251727324574,47.77897181145894,13.520951055286934,15.063606512321224,9.880531379569728,9.31388286428105,0.5784313725490197,0.7885816235504014,0.6935240963855421,0.5844594594594594,0.1124260355029585,0.7487179487179487,0.9130434782608696,0.8494318181818182,0.75,0.1271676300578034,0.5122841965471447,0.7090643274853801,0.6372950819672131,0.5338235294117647,0.1086309523809523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0047388555714532,0.0069364748895546,0.0089166793757307,0.0110752567769781,0.0130767584316043,0.0154700191844565,0.0173576347030097,0.0196116544584032,0.0215126463628261,0.0238603257970538,0.0255699037404588,0.0276505757535219,0.0297336851218205,0.0319167604281718,0.0339214429023517,0.0360943863539799,0.0383752803388985,0.0405426493690244,0.0425704904362328,0.0572867156243144,0.0709978012773531,0.0839883719709928,0.0967799642218247,0.1089621845192875,0.1244219637887429,0.1359964331588836,0.1463666567278613,0.1570150784915096,0.1657044747290481,0.1778737892321119,0.1905297783933518,0.2020724825209042,0.2122884876043898,0.2211785926398451,0.2321100307855861,0.240345454748329,0.2485989511827327,0.256230909854773,0.2636128115184446,0.2705653517963205,0.2747106122496752,0.2801264369176858,0.2847017341872346,0.2890295614983658,0.293325274155945,0.2974424456378863,0.3010721235167686,0.3054704368850445,0.308823141976447,0.3072880968700023,0.3055769125157889,0.3032808786510849,0.3010532390708411,0.2998041659248709,0.2960395433538396,0.2936837106221308,0.2951040231016604,0.296209703568442,0.2965883948326315,0.2974907707587654,0.2983139293550236,0.2995393634840871,0.2996693919492472,0.3017745780260528,0.3022970823664381,0.3045598425870476,0.3081155865798824,0.3120145546147925,0.3162667300229667,0.3171409059867972,0.3220670686554533,0.3250578450378338,0.3272314674735249,0.3279775805698272,0.3302665723047888,0.3344900422450211,0.3386126704089816,0.3417789757412399,0.3555140186915888,0.0,2.6121883766998035,50.53441755188829,159.26910098288172,220.6626501845172,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95723,46870,445.7444919193924,5257,53.80107184271283,4160,42.89460213323861,1661,17.007406788337182,77.3593554540744,79.73052656920149,63.33143217950936,65.08406671050237,77.15104211632722,79.52464332183344,63.253665272268194,65.00941650441939,0.2083133377471853,205.88324736804964,0.0777669072411697,74.65020608297834,221.58444,155.1861866904562,231484.82600837835,162119.8519712045,448.07097,296.2648149960113,467517.0126301934,308929.1033126741,435.75405,212.5321036623917,451713.4544466847,219293.1947219592,2426.8574,1131.0972386415,2503609.581814193,1150280.0345830263,1000.04296,446.45273459836415,1028204.07843465,450034.7105075764,1629.1824,689.9154202800179,1669522.288269277,693502.2205026842,0.38058,100000,0,1007202,10522.03754583538,0,0.0,0,0.0,38482,401.418676807037,0,0.0,39386,407.9479330986283,1240552,0,44497,0,0,8942,0,0,83,0.8670852355233329,0,0.0,0,0.0,0,0.0,0.05257,0.1381312733196699,0.3159596728171961,0.01661,0.3572602739726027,0.6427397260273973,23.897905598079294,4.215723814711731,0.2980769230769231,0.2637019230769231,0.2067307692307692,0.2314903846153846,10.946385475299342,5.752270809477163,17.773297772190453,11754.481944631449,47.52541610566425,13.464920530039024,14.02546654988343,9.51976000188019,10.515269023861602,0.5677884615384615,0.8012762078395624,0.6975806451612904,0.6023255813953489,0.1038421599169262,0.7430668841761827,0.9312638580931264,0.8660968660968661,0.7149321266968326,0.1428571428571428,0.494546693933197,0.7105263157894737,0.6310461192350956,0.5633802816901409,0.0934210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.004561720072582,0.0068495235775822,0.0091812069630923,0.0116327547461435,0.0136825923625886,0.0156990672307457,0.0178327174734091,0.0200670605794197,0.0222565751082627,0.0244372660616315,0.0265717601865261,0.0285917115930696,0.0307548064044179,0.0326395410032299,0.0347126745712602,0.0366601097422093,0.0389466260086709,0.0409684394361511,0.0430294571059539,0.0577658041476097,0.0719877752658461,0.0854208627056059,0.0985509684746261,0.1109060615008225,0.1262906228842247,0.1374465420818609,0.148906042054831,0.1590258185859622,0.1689255169601562,0.1809620274988147,0.1926083096975339,0.2035270183531152,0.2130171687439132,0.2217351557939488,0.2321254324492149,0.2413346435590495,0.2500843587609385,0.2576751151550907,0.2648365743603839,0.271135272685212,0.277019998363664,0.2827194195294312,0.2869601626988874,0.2911588877975433,0.2950686549534918,0.2989560542601738,0.3023769898237902,0.3054951878298665,0.3095197312075894,0.3072137799454499,0.3042713912924049,0.3027495894563982,0.3006356419696272,0.298693419748154,0.2952314165497896,0.2920484962997953,0.2928211072833842,0.2933276668083298,0.2935243878620004,0.293572842364716,0.2946008233695117,0.2949152542372881,0.295355912487137,0.2971720760514691,0.2985885472173845,0.297640704945992,0.3000628338045868,0.3045838148264874,0.3063770977295162,0.3090372388737511,0.3136423841059603,0.3181215678848703,0.3223540077056735,0.3270897400055912,0.3304816594398219,0.3308578357077902,0.3374551256481851,0.3384865744507729,0.3378633446583616,0.0,2.12256702246751,53.675676282186274,150.59883141150016,217.58271788661705,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95876,46938,446.316074930118,5352,54.53919646209688,4245,43.5666903083149,1609,16.4066085360257,77.4394230829848,79.71800069409656,63.39129033748679,65.07646075096187,77.23580724943032,79.51723736078972,63.3151368606276,65.00340983715971,0.2036158335544797,200.7633333068384,0.0761534768591829,73.05091380216311,221.12376,154.78831506342212,230634.92427719137,161446.15993471138,445.22662,294.73200789009564,463640.149776795,306674.1245695363,436.23413,212.6695502457246,449346.4474946806,217528.77272556355,2430.3172,1135.5134960758594,2498377.278985356,1148354.749501639,979.77053,439.8977289948904,1004878.9999582794,441998.60910848377,1569.70764,664.0244202504641,1603114.7523885018,665108.9510950856,0.38152,100000,0,1005108,10483.405648963244,0,0.0,0,0.0,38210,397.7846384913847,0,0.0,39659,407.9853143643873,1248282,0,44810,0,0,8886,0,0,82,0.8552713922149443,0,0.0,0,0.0,0,0.0,0.05352,0.1402809813378066,0.3006352765321375,0.01609,0.3444822035414058,0.6555177964585942,23.469331629395658,4.139766686188204,0.3085983510011778,0.271849234393404,0.2131919905771495,0.2063604240282685,11.27233756709784,6.054132869393389,17.16780495187398,11746.047236997649,48.61475889492692,14.146214700379536,14.93046137952178,10.022108688653184,9.515974126372418,0.5931684334511189,0.7980935875216638,0.7175572519083969,0.6176795580110497,0.1118721461187214,0.750201450443191,0.913978494623656,0.8432432432432433,0.7703349282296651,0.1675126903553299,0.5282956058588548,0.7198838896952104,0.6680851063829787,0.5718390804597702,0.0957290132547864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0045198427175807,0.0069081650250053,0.0090873092426565,0.0114344374764958,0.0137563338149406,0.0160020371785077,0.018094655242758,0.0200237015242531,0.022392029296835,0.0246009139531547,0.0264923765159754,0.028444006001192,0.0305011117516264,0.032588300789707,0.0345190768754194,0.0368297451919595,0.0384097314323607,0.040602128211783,0.0425361489649433,0.057401655235673,0.0715494723644342,0.0847904843674743,0.097477244811187,0.1096912729071713,0.1252190620975063,0.1367261558015146,0.1476188452302526,0.158436740437508,0.168466337767409,0.1799496914841012,0.1921610146602854,0.2025763286230979,0.2119523653446957,0.22074409604644,0.2304976704551742,0.2397918245441982,0.2484162997573906,0.2565075553340432,0.2639719246904971,0.2694719338560492,0.2754365894658199,0.2812271040627733,0.2863965527559997,0.2903445012073924,0.2936622232069224,0.2981936371023189,0.3019454956442232,0.3059212651326244,0.3096061997552728,0.3072076308188352,0.3053428830163826,0.3028341104432335,0.3011865799679926,0.3002844613014104,0.2977368517500458,0.2944565457587524,0.2945398070949812,0.2948981848493612,0.295921267675691,0.2966477738832128,0.2980175431695708,0.2990794351647436,0.299294681275784,0.3002976544826765,0.3015536540599229,0.3024926066751162,0.3076803579195923,0.3118964383371984,0.3161646625670753,0.3168703936724789,0.3195860039928549,0.3205455564551286,0.3247714738989197,0.3303044496487119,0.3346317280453257,0.3403342020542695,0.3449257677445597,0.3462809917355371,0.3538692712246431,0.0,2.690305201532768,53.61935915687678,159.97446859871982,217.4770188489005,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95733,46865,446.50225105240617,5367,54.84002381623891,4241,43.652658957726175,1585,16.180418455496014,77.34647984393533,79.69795653100958,63.33814763576003,65.0749640031143,77.14336531551359,79.49819834638163,63.26160706361291,65.00179565497733,0.2031145284217359,199.75818462795303,0.0765405721471239,73.16834813697426,221.51844,155.09554370680638,231391.47420429735,162007.99129538034,448.15952,296.48960713185585,467488.79696656327,309058.9564015082,438.80961,214.37573460276664,454122.5909560967,220639.44607208832,2399.04496,1133.8503596976586,2471008.116323525,1149446.481043798,954.17187,433.3566076546285,978581.3982639216,434641.485371132,1540.70702,656.7010382536007,1573764.8668693136,656287.9464302217,0.38101,100000,0,1006902,10517.794282013516,0,0.0,0,0.0,38492,401.4080828972246,0,0.0,39864,412.12539040874094,1241142,0,44603,0,0,8748,0,0,75,0.7834289116605558,0,0.0,2,0.0208914376442814,0,0.0,0.05367,0.140862444555261,0.2953232718464691,0.01585,0.3421944692239072,0.6578055307760928,23.67815052431721,4.096565862791293,0.3187927375618958,0.2780004715868899,0.2072624381042207,0.1959443527469936,11.420426875506166,6.184091513946106,16.9458783778028,11781.006609577791,48.57624289805292,14.274360685768064,15.317250535831947,9.907691657896606,9.076940018556291,0.5894836123555766,0.806615776081425,0.6863905325443787,0.5893060295790671,0.1239470517448856,0.7801587301587302,0.9314775160599572,0.8900523560209425,0.7711864406779662,0.1485714285714285,0.508889634350889,0.7247191011235955,0.6061855670103092,0.5225505443234837,0.1173780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.004399436385569,0.0064643143463127,0.008858007760915,0.0109728069640205,0.0131027040234565,0.015137614678899,0.0173812755794609,0.0196665678568143,0.0218688890481504,0.0240264865363523,0.0262866175353601,0.0283141077046449,0.0302705709077051,0.0323965168585696,0.0343982883544016,0.036372107470104,0.0382520464377976,0.0401455301455301,0.0421314668416502,0.057430104608189,0.072038599208758,0.085732270247587,0.09872350269179,0.110696438737428,0.1255312400888043,0.1373838516695659,0.1489533782417605,0.1592774865756407,0.1690279712785339,0.1813895407668956,0.1931391739755804,0.2030105423323552,0.2133576650311977,0.2219400934322616,0.2315330374043858,0.2410536058791386,0.2493055165045268,0.2567960063535284,0.2639065452671362,0.2698407190200229,0.2766136576239476,0.2820112207939777,0.2870294893310957,0.2915001882370086,0.2959128400837129,0.2994910527829534,0.3038826552680457,0.30743921553388,0.3113735321282491,0.3095097062545435,0.3071961935670182,0.3053459827712403,0.3035549266489546,0.3013598978592001,0.2989869000979432,0.2954039151248953,0.2954497077268187,0.2962400886691107,0.2968068244554861,0.2975654416023617,0.2991744330384411,0.2991883863950131,0.2986256748917942,0.2993644321861134,0.3007532514921677,0.3019082882369695,0.3062907676869041,0.3080772730454259,0.3118907612770827,0.316407489685814,0.3178138722818898,0.3232632170276512,0.3284771226951969,0.3309548399211341,0.331363743795793,0.338908316861791,0.3379226564081798,0.339543937708565,0.3424443576727841,0.0,2.521448870417981,54.58563474652505,156.05305911723292,218.9497865700108,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95740,46930,446.0831418424901,5254,53.69751410068937,4121,42.45874242740757,1590,16.2627950699812,77.41222784566315,79.76698501268345,63.350809200748486,65.08918364456866,77.21453691651178,79.57149297647865,63.27697648325724,65.01825703730515,0.1976909291513777,195.4920362047972,0.0738327174912427,70.92660726351596,220.64614,154.44003481083686,230463.67244620848,161311.72539100822,449.39369,297.6154283448041,468797.5558805097,310268.01817972143,435.38873,212.4452283607994,450595.57133904326,218761.3614967638,2347.99096,1101.5400824820847,2421619.8871944854,1119825.585190646,938.11333,421.6411993700703,966787.1840401086,427350.5019685165,1546.56426,650.1292766354328,1583269.6051806975,652727.6742457132,0.38214,100000,0,1002937,10475.621474827658,0,0.0,0,0.0,38622,402.7679130979737,0,0.0,39509,408.4499686651348,1245031,0,44651,0,0,8801,0,0,82,0.8564863171088365,0,0.0,0,0.0,0,0.0,0.05254,0.1374888784215209,0.302626570232204,0.0159,0.3598173515981735,0.6401826484018265,23.923593944598775,4.14299128182103,0.317156030089784,0.2647415675806843,0.2111138073283183,0.2069885950012133,11.531723531809028,6.321211670842158,16.84597375063289,11813.694796106382,46.89643099563591,13.31064308373254,14.775712957470256,9.631407000020369,9.178667954412752,0.5882067459354525,0.8258478460128322,0.6985462892119357,0.5850574712643678,0.1184056271981242,0.7646090534979424,0.9465478841870824,0.8575197889182058,0.7323943661971831,0.132183908045977,0.5144528561596696,0.7414330218068536,0.6336206896551724,0.5372907153729072,0.1148748159057437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.0046825115289109,0.0070912632390536,0.0092716711349419,0.0112445226161307,0.0134677049931287,0.0160323705077766,0.0183055620746303,0.0205312158281468,0.0225486182190378,0.0248626711486431,0.0269257616818592,0.0291759190722921,0.0313887029504145,0.0335555234537837,0.0354329894776011,0.0373081781846045,0.0393210632249496,0.0413166431007236,0.0433143047626984,0.058672457352849,0.0725324627763652,0.0859303703859104,0.0991290444734295,0.1113502563777932,0.1263174603174603,0.1377919748697322,0.149032216851564,0.1592349201260885,0.1694138604511407,0.181911281194416,0.1933521004763967,0.2049437272786642,0.2143795428671512,0.2233310202777869,0.232949630713953,0.2413927968800634,0.2489977477477477,0.2564058898992995,0.2636989833927405,0.2699476706492544,0.2758342303552206,0.2820503720528563,0.2877224071457649,0.292063646183535,0.296375161548403,0.3004785167230975,0.3034318204893897,0.3070509428361233,0.3104644744105354,0.3086573645904539,0.3060425112304152,0.3035701770370474,0.3016475459328905,0.3004617268288365,0.2981384393283185,0.2952374968585071,0.2960593778993114,0.2966174901336404,0.2966331098175899,0.2970019665318541,0.2987521026483589,0.2998836532867946,0.3001882405049275,0.301139343090051,0.3017065551338652,0.302101847933418,0.3063432835820895,0.3120269425734324,0.3162326218915214,0.3181307571332284,0.32066558185922,0.3237503880782366,0.3269836508174591,0.3317675232568849,0.3335272896543698,0.3361695775488879,0.3426090388790211,0.3475462590506838,0.3480373831775701,0.0,2.229962441650866,52.83690854208073,148.7732196631773,214.3913424924096,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95737,46963,445.9822221293753,5316,54.38858539540617,4226,43.65083510032694,1591,16.336421655159448,77.32373385663094,79.69432710713167,63.321321634088775,65.07531754409564,77.11966986562575,79.49136352989288,63.243601322575685,65.0001213499342,0.2040639910051851,202.96357723879052,0.0777203115130902,75.19619416143541,222.72558,156.0411528033203,232643.1578177716,162989.39052124077,451.84922,298.9062833411292,471457.4824780388,311705.6523084733,442.11073,215.0872570794537,458612.5113592446,222199.9580501349,2388.36936,1124.4153281802949,2468497.3207850675,1148448.1307444011,966.90158,439.597581082772,998677.7839288884,447930.1821670934,1540.89318,667.9336794066948,1583269.5822931572,673458.2410831421,0.38038,100000,0,1012389,10574.688991716892,0,0.0,0,0.0,38872,405.4963075926758,0,0.0,40002,414.71949194146464,1232278,0,44213,0,0,8902,0,0,72,0.741615049562865,0,0.0,1,0.0104452823882093,0,0.0,0.05316,0.139754981860245,0.2992851768246802,0.01591,0.3395750810226863,0.6604249189773137,23.68764563964401,4.090731626977193,0.3182678655939422,0.2744912446758163,0.2082347373402744,0.1990061523899668,11.1887963288633,6.034689729628767,17.168775775523528,11755.45150775658,48.48826798005938,14.240092800622673,15.12840412283026,9.733892365905092,9.385878690701368,0.575958353052532,0.803448275862069,0.6973977695167286,0.5409090909090909,0.1046373365041617,0.724,0.9192546583850932,0.8444444444444444,0.6822916666666666,0.1209302325581395,0.5137768817204301,0.7208271787296898,0.6436548223350254,0.501453488372093,0.0990415335463258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884498480243,0.0042390499660267,0.0066585464880227,0.0087901144239172,0.0112119485593358,0.0135582515865497,0.0157059519438665,0.0181998304617364,0.0206558751648891,0.0229709662553126,0.0251869019905446,0.0273287460203348,0.0293500401209801,0.0318415547746875,0.0338969055139241,0.0358516313112517,0.03791621355704,0.0400062250350158,0.0419634223687083,0.043876466543022,0.0587719389832632,0.0725297497566642,0.0859549559945032,0.0993173379335009,0.1118468919702641,0.1267392683442588,0.1385364508189765,0.1494482809989465,0.1590605675470731,0.1681732882955337,0.1801677631933153,0.1923792625930413,0.2037735849056604,0.2134148341734918,0.2227429753339054,0.2325462921945601,0.2404183904457107,0.2481067841172108,0.2556749892282922,0.2621804700551525,0.2684130248896489,0.2745732612073699,0.2806689911943738,0.2852318451810691,0.2896733390791342,0.2936401374705904,0.2972935774076901,0.3010639110183511,0.3054645304182263,0.3088466052190883,0.3069397531993917,0.3039996697899038,0.3023887996844981,0.2999204915070473,0.2980029124193883,0.2951331496786042,0.2923110949620057,0.292450821417457,0.2932032553546497,0.293440142412105,0.2945300231810364,0.2950729098837782,0.2961900173847475,0.2974235212620947,0.2989133048035774,0.2992807255290315,0.3015687393040502,0.306418089059646,0.310827443119879,0.3134554140127388,0.3178269801415202,0.3215751052379176,0.3231584258324924,0.3219188529591214,0.3260381593714927,0.3286845526533506,0.3323777911888956,0.3346661335465813,0.3410748042128004,0.3541430192962542,0.0,1.9078604580755645,54.93581477760127,156.60930881536933,218.28201577442317,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95782,46735,444.2797185274896,5305,54.237748219916064,4230,43.63032720135308,1647,16.86120565450711,77.38153749659537,79.72262970520016,63.350937847410606,65.08268271108778,77.1730522154198,79.51520346024284,63.27256878758412,65.00701533896668,0.2084852811755695,207.42624495731832,0.0783690598264854,75.66737212110297,221.45992,155.16958825873087,231212.46163162185,162002.86928517974,448.54055,296.2823798925404,467691.3616337099,308729.581646324,439.00783,213.6314884320915,454635.83971936273,220291.27977998173,2404.49596,1124.6667812117764,2480914.1592366,1144724.500649158,991.70309,445.05369384849416,1021463.2185588104,450740.74862551823,1602.1309,679.1268184705082,1641062.4752041094,682385.293340218,0.37935,100000,0,1006636,10509.6573468919,0,0.0,0,0.0,38493,401.3071349522875,0,0.0,39816,412.0607212211063,1242709,0,44573,0,0,8824,0,0,79,0.8039088764068406,0,0.0,0,0.0,0,0.0,0.05305,0.1398444708053249,0.3104618284637134,0.01647,0.3616639770485924,0.6383360229514076,23.673429591368286,4.154782879597469,0.3137115839243499,0.2588652482269503,0.2198581560283688,0.2075650118203309,11.424368328682544,6.190658670334548,17.5178021882915,11660.303590068035,48.3553808955372,13.328523132090982,15.1519574183125,10.312660521649551,9.562239823484155,0.567612293144208,0.7963470319634703,0.678975131876413,0.5698924731182796,0.1116173120728929,0.7293729372937293,0.9297052154195012,0.8567415730337079,0.6915887850467289,0.1044776119402985,0.5026507620941021,0.7064220183486238,0.6138002059732235,0.5335195530726257,0.1137370753323486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787579250136,0.004683033632696,0.0069700904995738,0.009201425916334,0.011204424832747,0.0132536620621558,0.0153096587434256,0.0175139570724338,0.01965092276564,0.0218040804632983,0.0238866230811796,0.0261542567387243,0.0282952909726506,0.0303117664017132,0.0324390671576363,0.0345714728521981,0.0367258239768199,0.0386557060963852,0.0407537839831292,0.0426987349679837,0.0575945734411688,0.0715368927469539,0.0842349142449784,0.0968538522970871,0.1094520547945205,0.1246644827221811,0.1365428226267935,0.147268938830183,0.1573988112388086,0.1668024265289061,0.1789639101467058,0.1910236305629156,0.2019237039452233,0.2114678498054815,0.2203902503409741,0.2300036533117825,0.238514719000892,0.2470407050597479,0.2551430061920207,0.2623431010217742,0.268653092372264,0.2745654943487967,0.2796006718554091,0.2847563166087893,0.2894506881569046,0.2934283569045948,0.2961958898119807,0.3002796491674082,0.3034469378516458,0.3060229533685584,0.3046886555243307,0.3022680752270136,0.29990290305785,0.2977783552033259,0.2959625946266884,0.293020199859426,0.2905531189852648,0.2904137795790299,0.2912540553394595,0.2919382626147807,0.2924436819334626,0.2932446264073695,0.2940881868074539,0.2943668881851835,0.2955932690236254,0.297145081754477,0.2979682053897815,0.3025519435951831,0.3066671306284362,0.310524036379385,0.3142624728850325,0.3188581680033769,0.3182874003390043,0.3241169768325104,0.3304559954963408,0.3294784045315081,0.3307050796057619,0.3305868167202572,0.3372862658576944,0.3446177253708634,0.0,2.101415516512705,52.928715028784765,160.8082704394514,218.4942111878852,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95856,46876,444.85478217325993,5387,54.8948422633951,4288,44.15998998497747,1669,17.004673677182442,77.37299817448195,79.67455318066045,63.35320242165369,65.05714359067706,77.16755795592894,79.47209900475018,63.275656920661646,64.98302220061977,0.2054402185530079,202.45417591027604,0.0775455009920449,74.12139005728591,221.71292,155.2954350016413,231297.90519112,162009.0917643562,448.57778,296.28707423584143,467389.2505424804,308514.7870095158,439.85748,214.11793715658516,455194.23927558,220513.5149372048,2453.34312,1153.4902120028878,2528329.4525121013,1172281.9354061177,1005.58087,456.2271160714855,1034289.1629110333,461192.5455408043,1619.38772,688.3747387417375,1651851.4646970455,686964.5379805806,0.38107,100000,0,1007786,10513.541145050913,0,0.0,0,0.0,38506,401.08078784843934,0,0.0,39961,413.1927057252546,1240524,0,44571,0,0,8698,0,0,75,0.7824236354531798,0,0.0,0,0.0,0,0.0,0.05387,0.1413651035242868,0.3098199368850937,0.01669,0.3474772686753432,0.6525227313246568,23.563953760288943,4.1188849712063,0.3125,0.2679570895522388,0.2091884328358209,0.2103544776119403,11.47636134962962,6.256310224247278,17.85395088849803,11808.420419724504,49.023715078885125,14.065992187154745,15.271808901246857,9.808750373541876,9.877163616941647,0.5869869402985075,0.825065274151436,0.7104477611940299,0.5841694537346711,0.1031042128603104,0.754581673306773,0.9333333333333332,0.8636363636363636,0.7867298578199052,0.1170731707317073,0.5176393010220903,0.7514619883040936,0.6511387163561076,0.521865889212828,0.0989956958393113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0046925517143523,0.0067861598855786,0.0090977397802733,0.0115995364251875,0.0138538273615635,0.0159102259639395,0.0182367408586678,0.0208339719420858,0.0230012073587492,0.0251933814866041,0.0272912883334872,0.029402394532655,0.0313632246376811,0.03331821368191,0.0354513254231337,0.0374727127885202,0.0394391884190128,0.0412781158487196,0.0434162886512131,0.0584015431937855,0.072675785535899,0.0860806436405921,0.0989740304745502,0.1105459370655882,0.1259638745114608,0.1380976602238046,0.1489144533991111,0.1593429464943271,0.1695383824096695,0.1823073611708997,0.1946255039941196,0.2051588638759959,0.2148441344019594,0.2240525551300673,0.2336789171706431,0.2428593743026732,0.2500787578757876,0.2579715734428349,0.2643654473639018,0.2705406186759179,0.275360284484372,0.2814962959456581,0.2862960700468336,0.2908797397679273,0.2950839860105413,0.2989088269890131,0.304254399348998,0.3075907761588032,0.3113309589763883,0.3098993378909404,0.3071050278561111,0.3043300596034888,0.3013411567476949,0.2993421541111655,0.2961297231145786,0.2930778231034374,0.2937466210127951,0.2948263522034013,0.2962613158457481,0.2961489616016733,0.2953628039775524,0.2964346066384328,0.2982280619844816,0.2984618324257189,0.2991377747857383,0.30002269246043,0.3063063063063063,0.3098070683459512,0.3145744848198836,0.317733879314224,0.3198548743295825,0.3218620948567138,0.3223799043788419,0.321119879744457,0.3278246601031411,0.3350586086162277,0.3344169036976838,0.33719646799117,0.3419452887537993,0.0,2.2385508342707805,54.66681814450844,157.50604840569312,224.2923192478062,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95798,46749,444.8527109125452,5206,53.1848264055617,4180,43.111547213929306,1613,16.440844276498463,77.39816222968327,79.72800629820061,63.35848721039546,65.07982892411599,77.18575223123726,79.51831726269828,63.279107485899885,65.00390341267867,0.2124099984460059,209.6890355023362,0.079379724495574,75.92551143731896,220.96272,154.7178012970252,230654.8362178751,161504.2081223253,448.60318,296.68200555074657,467760.1933234514,309175.3197637856,436.74671,212.49293463379576,453068.31040314,219584.45684155825,2390.63176,1115.4022376090777,2467418.401219232,1136574.0256137168,965.54395,432.4950279311032,996168.813545168,439983.6277147683,1571.36318,666.8301556205874,1604160.128603937,665736.3022115253,0.37959,100000,0,1004376,10484.310737176142,0,0.0,0,0.0,38577,402.1378316875091,0,0.0,39596,410.509613979415,1245072,0,44706,0,0,8562,0,0,73,0.7620200839265955,0,0.0,0,0.0,0,0.0,0.05206,0.137147975447193,0.3098348059930849,0.01613,0.3698252069917203,0.6301747930082797,23.36542938523495,4.135674039999528,0.3062200956937799,0.2705741626794258,0.2119617224880382,0.2112440191387559,11.279095657347344,5.985031290336326,17.20403948730829,11709.082962508226,47.63640678646168,13.886876404135316,14.489391177061078,9.75176441736168,9.508374787903607,0.5844497607655502,0.7984084880636605,0.70859375,0.600451467268623,0.1143827859569649,0.740495867768595,0.911062906724512,0.8587257617728532,0.6681818181818182,0.1130952380952381,0.5208754208754208,0.7208955223880597,0.6496191512513602,0.5780780780780781,0.1146853146853146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470093779749,0.0043984108967082,0.0065637300653329,0.0084287919408562,0.0105423677120927,0.0128137276853868,0.0150710755591786,0.0174468432436844,0.0195854064712553,0.0218232044198895,0.0238505040570445,0.0259517701385325,0.0282102666872205,0.0306401811445039,0.0329185438724909,0.0347737178030694,0.0367243912026979,0.0385839753626644,0.0405092231748506,0.0423626442287666,0.0574105764013523,0.0716608971208048,0.0851487639695552,0.0974756179586346,0.1096095462978579,0.1252391573205923,0.1358468554459646,0.1475845924664822,0.1580318904659682,0.1674458503109586,0.179809162771663,0.1909932514275826,0.2017643927294851,0.2110161899975966,0.2207214138128105,0.2304245361303813,0.2396962397966011,0.2479645540011695,0.2555300950609161,0.2629770861245663,0.2687661129030393,0.2749970777323203,0.2798665104554975,0.2851100540385099,0.2891213846172519,0.2948048750461652,0.2984225788710564,0.3031180910269116,0.3060313599668806,0.309738128813738,0.3072981115833647,0.3043358795405836,0.3008132369080113,0.2984398881102748,0.2971364269004116,0.2945781385908959,0.2916653517215262,0.2913334314639452,0.2921126184470652,0.2926395216400911,0.2938519541602897,0.2962013332807384,0.2975569012319899,0.29786997509783,0.3000262323229914,0.3019948186528497,0.3021982673476874,0.3071099202392821,0.3113348377017879,0.3159692235220224,0.3211270149455908,0.3253984899328859,0.3299832495812395,0.3346923367308418,0.3375944760660632,0.3408767772511848,0.3417663990304499,0.3487716472009666,0.3504390779363337,0.3525398028809704,0.0,1.9785398545529531,52.92660514070639,152.71898838448388,220.21394434281845,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95875,46880,445.4758800521512,5216,52.99608865710561,4094,42.09647979139505,1590,16.198174706649283,77.3584022892406,79.64122988617987,63.35300198276878,65.04178619098954,77.15424335800441,79.44202983596722,63.27507825027095,64.96888997740182,0.2041589312361935,199.20005021265297,0.0779237324978296,72.89621358772536,221.08856,154.9172130287983,230600.6153846154,161582.26130774274,449.72439,297.5225518511114,468467.50456323335,309717.21705461433,433.88118,211.0290327123436,449101.0169491526,217501.8415005268,2351.82048,1107.1229430730398,2419294.0808344195,1121043.7163734438,955.35364,433.377032805018,980172.370273794,435737.838649301,1557.56358,665.8112040018518,1587023.812255541,659730.768646458,0.38115,100000,0,1004948,10481.846153846154,0,0.0,0,0.0,38560,401.5541069100392,0,0.0,39418,407.7183833116037,1241666,0,44590,0,0,8721,0,0,89,0.9282920469361148,0,0.0,0,0.0,0,0.0,0.05216,0.1368490095762823,0.3048312883435582,0.0159,0.344619326500732,0.655380673499268,23.73786480739828,4.211740776109998,0.3028822667318026,0.2684416218856864,0.2125061064973131,0.2161700048851978,11.433840665680972,5.980800210799026,16.87980174289005,11737.031976407045,46.94852151757392,13.409534155506137,14.281960979589352,9.696541409466253,9.560484973012182,0.574743527112848,0.8007279344858963,0.6911290322580645,0.5747126436781609,0.1310734463276836,0.7493670886075949,0.9370786516853932,0.8688046647230321,0.7156398104265402,0.1182795698924731,0.5036094877964936,0.7079510703363915,0.6231884057971014,0.5295902883156297,0.1344778254649499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025311585618969,0.0048737980160298,0.0072521832621638,0.0095543664774746,0.011516568408213,0.013698490723496,0.0158421288561066,0.0180427354786067,0.0201647897246357,0.0224291804250707,0.024609211051624,0.0265936724692952,0.0286747185933777,0.0309729051371201,0.0329252457800037,0.034763664897681,0.0368776572084699,0.0390518930011296,0.0407510488929506,0.0427287292702719,0.0569328607172643,0.0707136140424198,0.0846328665835803,0.0971393766277409,0.1094946643210045,0.1253710844646347,0.1365389914577018,0.1478539220690828,0.1588342051884274,0.1688055493015127,0.1811475586379202,0.1929380456300912,0.2036118903168286,0.2135000983972186,0.2222112254772587,0.2316248492025721,0.2403854733648612,0.2492410101873299,0.2562336925694838,0.2628678787045629,0.268360699367052,0.2743896018812078,0.2794291804831833,0.2849057508753417,0.2898462660266148,0.2944955485955264,0.2986298968039275,0.3023421679381535,0.3060962483627922,0.3092249557381814,0.306963645673323,0.3044579673431175,0.3023042902616975,0.3010070653508835,0.2994115199429352,0.2956745496875383,0.2927319644751215,0.2937093916125221,0.2949389775539814,0.2952711728559978,0.2953708721897251,0.2958829560690906,0.2967223744483256,0.2966572263229489,0.2965928980746637,0.2981955822876698,0.2993765939359591,0.3048784294141515,0.3087451676940758,0.3117466320018908,0.3151559035163144,0.3191478169384534,0.3222840702983301,0.3258812757515641,0.3298735610492546,0.3286412978647262,0.3281805534085639,0.3317823184301032,0.3398351648351648,0.3424761904761905,0.0,2.346570656108667,51.40702555201997,153.44645053100493,214.37220292271527,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95727,47063,446.8122891138341,5306,54.17489318583053,4241,43.64494865607404,1656,16.808215028152976,77.38965647392791,79.75625201215624,63.34469261111818,65.09385660781057,77.18041670547262,79.55346041674595,63.26538064457041,65.02015676227336,0.2092397684552907,202.79159541028943,0.0793119665477704,73.69984553720599,222.44046,155.75033707457976,232369.3837684248,162702.41027768527,453.10637,299.5899507034832,472585.93709193857,312218.4278910946,441.696,214.88872021287852,458053.464539785,221764.3825518549,2402.62672,1130.4748518081792,2472715.534802093,1144141.200580885,956.97991,435.86007873289975,984263.290398738,440021.61902301526,1604.72888,681.7579377495431,1630570.0168186612,673045.5754320038,0.38138,100000,0,1011093,10562.244716746582,0,0.0,0,0.0,38901,405.6535773606192,0,0.0,40060,415.0762062949847,1235064,0,44357,0,0,8846,0,0,82,0.8461562568554326,0,0.0,0,0.0,0,0.0,0.05306,0.1391263306937962,0.312099509988692,0.01656,0.3497031840259039,0.650296815974096,23.52501556951395,4.165434330436056,0.3206790851214336,0.2713982551285074,0.2039613298750294,0.2039613298750294,11.26929409886415,5.975073298022866,17.767908003936885,11807.023679191465,48.668995072405394,14.143076653870397,15.501087984335422,9.62864839019419,9.39618204400538,0.5743928318792737,0.7801911381407471,0.6919117647058823,0.5815028901734104,0.1086705202312138,0.7525937749401437,0.9018036072144288,0.8583106267029973,0.6995515695067265,0.1341463414634146,0.499665327978581,0.6871165644171779,0.6304128902316214,0.5404984423676013,0.1027104136947218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498906085406,0.0045821801851119,0.0069921553902515,0.0093565231525692,0.0114132259147364,0.0136348824895116,0.0159460038131748,0.0180786231255295,0.0201978902608553,0.0223762193811224,0.0245907520731469,0.0268155965751596,0.0291550584437613,0.0312522525305571,0.0334598564237973,0.0357072727084818,0.0378673348934495,0.0399522772071791,0.0419585507306628,0.0439707000927344,0.0585968905641464,0.0724962317869703,0.0859100399752384,0.0988353130556461,0.1106164347431609,0.1260180660447208,0.138026525198939,0.1488686915987314,0.1591481908667606,0.1680304573971794,0.1803684680901465,0.1928040588050756,0.2044947973861894,0.2136897927942704,0.2231916906894351,0.2322828542321832,0.241435835675097,0.2497668303536312,0.2578684807256236,0.2643976661709186,0.2712452306625043,0.2768784843561903,0.2825840306339526,0.2872223286097281,0.2912673185645306,0.2960838144951802,0.3000737619863228,0.3033619319987289,0.3068557980759284,0.309753172647365,0.3076209677419355,0.3059581541674108,0.3031180588747997,0.3009907558298842,0.2994387097729662,0.2972997725642239,0.2948754336171554,0.2955332636256698,0.2958009436844427,0.29641127530113,0.2979253420582986,0.2990973312401884,0.3000311688311688,0.3000399254724514,0.302104435282061,0.303750032305585,0.3027950310559006,0.3063594642689894,0.3111033519553072,0.314710769961225,0.3176695146337029,0.3201253518882456,0.3254326561324304,0.3279598110519607,0.3293716602174313,0.3307361321083847,0.3364850667867327,0.3355811186037287,0.3391749797789161,0.3427389014296463,0.0,2.445051813315241,54.35545010533478,162.4521338760298,212.6485146930607,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95762,46894,444.8006516154633,5289,54.01933961279004,4205,43.33660533405735,1591,16.259058916898145,77.34687979821054,79.70652397794422,63.33382307926016,65.08146103944989,77.1420741968905,79.5055515932817,63.25724902898104,65.00862613983068,0.2048056013200323,200.97238466252065,0.0765740502791203,72.83489961920964,220.67606,154.5328107696032,230441.7409828533,161371.31950412816,446.50921,295.61502891522514,465692.2578893507,308121.0034642813,435.96554,212.9119375599993,452107.631419561,219770.21498787933,2386.94872,1122.5862719870431,2460874.7102190848,1140630.159757569,966.57094,441.0529787677238,993044.3704183288,444310.6268646924,1548.7945,658.7051699483499,1584112.9257952007,659052.2362169323,0.38197,100000,0,1003073,10474.624590129695,0,0.0,0,0.0,38340,399.75146717904806,0,0.0,39650,410.92500156638334,1246612,0,44785,0,0,8919,0,0,75,0.7727491071615046,0,0.0,1,0.0104425555021824,0,0.0,0.05289,0.1384663717045841,0.3008130081300813,0.01591,0.349264037797565,0.650735962202435,23.658731536644,4.091711019726201,0.310820451843044,0.2787158145065398,0.2064209274673008,0.2040428061831153,11.609513681441053,6.371035875952971,17.15710689854022,11775.186871591592,48.08424294618384,14.17616433563145,14.664625102110437,9.763781811560024,9.479671696881937,0.5854934601664685,0.7977815699658704,0.6977811782708493,0.5783410138248848,0.1317016317016317,0.75390625,0.9245689655172412,0.8917525773195877,0.6872246696035242,0.1691542288557214,0.5117948717948718,0.7146892655367232,0.6158868335146899,0.5397815912636506,0.1202435312024353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914717684731,0.0049993915547803,0.0075939086294416,0.0096649288088051,0.0117502238137869,0.014022117675811,0.0161790192680191,0.0180481829318089,0.0204452986035861,0.0226379162059221,0.0249546326009616,0.027219615372768,0.0294937320677492,0.0316874929177011,0.033779529997007,0.035984535229904,0.038035374036948,0.040042739919292,0.0420885220681482,0.0440672671421877,0.0587308214173885,0.0725201619229924,0.0852712365535029,0.0986999064605295,0.1106895570520724,0.1262878699819302,0.1379558871848138,0.149462068378976,0.1599185101435672,0.1691032355492722,0.1815835045336717,0.1929307009865897,0.2035542423880337,0.2129388000218376,0.2221026153626467,0.2317742328030621,0.2408392138501499,0.2489490839608857,0.2563765090314968,0.2634640709991411,0.2692316590704023,0.2749953214185459,0.2802006673134717,0.2850705845696618,0.2902380114332876,0.2944678861838625,0.2983741870935468,0.3023938773694046,0.3060324195655829,0.3095865503702337,0.3072869050820113,0.305706745835395,0.302826209223847,0.3007049461559531,0.2979366773390252,0.2953173936292109,0.2928208205678911,0.2934266146737884,0.2938820039888856,0.294343855151418,0.295067264573991,0.2958610218287224,0.2972069606634774,0.2987636136404213,0.2991955817024853,0.3003571335470921,0.3019335364638209,0.30564302808918,0.3098818663020997,0.3124578590409709,0.31697099403488,0.3190102786902617,0.3222396980182447,0.3248542660307366,0.3263372956909361,0.3308676764118821,0.3362173649058895,0.337525354969574,0.3435326842837274,0.3401413982717989,0.0,2.1093199116772645,56.17030195713989,146.3292504143311,220.521861384876,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95755,46969,447.558874210224,5172,52.75964701582163,4078,42.0134718813639,1614,16.46911388439246,77.36211040614715,79.72251959476334,63.32787542470121,65.07495006244312,77.15302573988083,79.51713735578944,63.248285485503,64.99933782595,0.209084666266321,205.38223897389685,0.0795899391982146,75.61223649312865,221.9129,155.47493327351506,231750.71797817343,162367.43070702843,449.49291,296.95588905465104,468881.2281343011,309581.9529577056,433.99653,211.5968317298635,449572.3774215446,218203.65991793043,2327.1498,1102.53244008367,2398297.906114564,1119528.0539086445,946.46468,431.6018509009136,973751.68920683,436155.1328484559,1577.4936,678.4602525267427,1611490.4913581535,678138.5116398577,0.3817,100000,0,1008695,10534.12354446243,0,0.0,0,0.0,38624,402.77792282387344,0,0.0,39449,408.2919951960733,1238734,0,44387,0,0,8784,0,0,73,0.7623622787321811,0,0.0,1,0.0104433188867422,0,0.0,0.05172,0.1354990830495153,0.3120649651972157,0.01614,0.3586232420429311,0.6413767579570688,23.292993646361225,4.212799972413758,0.303825404610103,0.2709661598822952,0.2096615988229524,0.2155468366846493,11.401739752796257,5.993806412324716,17.35759268878976,11794.777324756498,46.66183232407509,13.44743272702242,14.10133576915766,9.405767508412222,9.707296319482786,0.5689063266307013,0.7963800904977375,0.6973365617433414,0.5614035087719298,0.1092150170648464,0.7510170870626526,0.9384288747346072,0.8476454293628809,0.7450980392156863,0.1191709844559585,0.4903474903474903,0.6908517350157729,0.6355353075170843,0.5038402457757296,0.1064139941690962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021377263102438,0.004603808789827,0.0068013399654857,0.009032992267596,0.0113117338894257,0.0138306106652544,0.0158770623865559,0.0180817610062893,0.0199895706587867,0.0221491767018923,0.0242126529314641,0.0265836697379639,0.0286108167611444,0.0303479972382807,0.0323046754050985,0.0341280344071791,0.0359953607820396,0.0380991907034654,0.0401043669892618,0.0421340999760424,0.0570163992609371,0.0704525956770103,0.0843418982695333,0.0977408022886472,0.1100926140798717,0.1262308432664544,0.1384014767350576,0.1493846612443043,0.1598940023721243,0.1695942178183846,0.1812375464483817,0.1927722579388271,0.2030398311446694,0.213025260647434,0.2226832946252655,0.2329794778600239,0.2421379433574555,0.25,0.2573629515338537,0.264713629648293,0.2712666828720584,0.2771181583164692,0.2834861842494527,0.2882920688208141,0.2927211346966532,0.2970704593352148,0.3018473553781071,0.304983397157797,0.3079601796833534,0.3115420129270544,0.3091477127351567,0.3065039755688227,0.3044554803674681,0.3013032371660725,0.3002699255480082,0.2970154730597517,0.2948697686180301,0.2940945333093207,0.2936309310996476,0.2945725409326056,0.2959322602905795,0.2968136099324218,0.2973423310838957,0.2982190897569869,0.298723953354999,0.3003341362965265,0.3027030083691472,0.3067842013456267,0.310089639357932,0.3153308736949525,0.3183923031965112,0.3219221105527638,0.3267782687161615,0.3309109979023074,0.3358257177143912,0.335672514619883,0.3422121896162528,0.3443852378133017,0.3442184154175589,0.3457588436667934,0.0,2.2032284770966792,53.45334910573049,146.28147377733632,211.92579034673267,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95765,46996,447.3659478932804,5310,54.351798673837,4197,43.29347882838198,1581,16.164569519135384,77.32840490063373,79.68850067082496,63.31625382636724,65.06448680173808,77.13213820940489,79.49551132874431,63.24326618409879,64.9955829065463,0.1962666912288426,192.9893420806508,0.0729876422684512,68.90389519178086,221.09868,154.89330148041086,230876.2909204824,161743.1227279391,449.04281,296.70526063329714,468351.0259489375,309276.6779442355,437.3539,212.8653646846899,453565.0289771837,219872.24199471317,2376.90736,1101.7819132241195,2450125.6617762228,1118610.5500173548,963.33169,430.3787487205977,991298.146504464,434776.51409241074,1535.83478,645.8393591337725,1569843.8678013887,643538.8915967512,0.3813,100000,0,1004994,10494.376860021928,0,0.0,0,0.0,38634,402.8507283454289,0,0.0,39577,410.1185192920169,1240666,0,44553,0,0,8734,0,0,79,0.8249360413512243,0,0.0,1,0.0104422283715344,0,0.0,0.0531,0.1392604248623131,0.2977401129943502,0.01581,0.357528818443804,0.642471181556196,23.514339627124148,4.194665970227217,0.3083154634262569,0.2785322849654515,0.207767452942578,0.2053847986657136,11.068475153773798,5.801806900356846,16.86477601902094,11767.738367317388,47.84937211260853,14.239461101184272,14.67258015592051,9.641649457041774,9.295681398461966,0.5794615201334287,0.7938408896492729,0.6993817619783617,0.5642201834862385,0.1241299303944315,0.7673060884070059,0.906183368869936,0.8833333333333333,0.7437185929648241,0.1695906432748538,0.5043362241494329,0.7185714285714285,0.6284796573875803,0.5111441307578009,0.1128798842257597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.0044422807764863,0.0065893676643788,0.0087501778491432,0.010976378913959,0.0132007822685788,0.015489884157285,0.017662433127782,0.0198838659551411,0.0220689090425205,0.0243657424017221,0.0263568597654886,0.0282908268202385,0.0303336183011113,0.0323619252043259,0.0344831150574201,0.0364684692145252,0.0382684808761304,0.04042398420451,0.0425472081324014,0.0568771332839263,0.0714472486899768,0.0845138357327852,0.0971482030420569,0.1095984236204044,0.1257359080867975,0.1364658225700409,0.1481174041674648,0.1580976589200273,0.1680712815234174,0.179504577275175,0.191230404725585,0.2022887477156035,0.2116755598320504,0.2213038980476745,0.2312650195461743,0.2410907549148684,0.2493614627285513,0.2577807541258995,0.2646091807861062,0.2705185459425689,0.2757653001566848,0.2819590252216212,0.2867199117378999,0.29185242775058,0.2960197165742452,0.2999511296567798,0.3045991647142712,0.3081976985278872,0.3116787165549633,0.3090470868622672,0.3065032935902196,0.3040183664558655,0.3029975032832547,0.3009130725261673,0.2970230351266549,0.2947801328693451,0.2953243726716229,0.296138291155441,0.2964759594806677,0.2972609394267778,0.2984404536862003,0.2995813110588039,0.3010134758881835,0.3016591251885369,0.3028110575177636,0.3033749290981282,0.3081633290637008,0.3100661790316962,0.3139420232695721,0.3171525423728814,0.3184706685573236,0.3205590062111801,0.3232050416385325,0.3280959464484939,0.3351256575102279,0.335548172757475,0.344368187323375,0.3460482985729967,0.3445605884630275,0.0,1.974318537616595,52.632913577643045,156.98618410360243,218.5749532530178,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95724,46702,444.4131043416489,5230,53.4871087710501,4174,42.95683423174961,1568,15.983452425723955,77.31464774318667,79.67938928674135,63.30648041847581,65.05554891935722,77.11195274883426,79.47978449123576,63.23023295516088,64.98275954928667,0.202694994352413,199.60479550559285,0.0762474633149281,72.7893700705522,221.1814,154.84038581795008,231061.5937486941,161757.12028117303,445.78013,295.09479935697044,465087.0732522669,307670.65985756536,436.47454,212.8162322397964,451571.8106222056,219005.4467628808,2381.57676,1123.7648846946593,2454059.796916134,1140063.8155693128,953.52003,431.5368300425751,982087.1359324724,436789.3894933391,1518.61864,654.0997740744709,1550241.277004722,653663.818027213,0.37912,100000,0,1005370,10502.799715849736,0,0.0,0,0.0,38232,398.7401278676194,0,0.0,39670,410.0121181730809,1241717,0,44540,0,0,8654,0,0,87,0.8984162801387322,0,0.0,0,0.0,0,0.0,0.0523,0.1379510445241612,0.2998087954110898,0.01568,0.3598533455545371,0.6401466544454629,23.58370114325003,4.036534962101654,0.3092956396741734,0.2793483469094394,0.2156205079060852,0.1957355055103018,11.652666325829514,6.47253286626844,16.98112654085355,11702.62060694085,47.92420346906165,14.287332887640204,14.667394865066454,9.974136089394598,8.9953396269604,0.5860086248203162,0.7941680960548885,0.7048799380325329,0.5788888888888889,0.1089351285189718,0.7491883116883117,0.9191489361702128,0.8701657458563536,0.7285714285714285,0.1210526315789473,0.517675050985724,0.7097701149425287,0.6404736275565124,0.5333333333333333,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982474801195,0.0046841256805669,0.0068616902494975,0.0089320191037496,0.0110382013327229,0.0132034720241248,0.0157109190887666,0.0180923403647056,0.0202502402224357,0.0222963842594488,0.0246275619533901,0.0266451725518785,0.0287809745209171,0.0304073200136013,0.0324428662854311,0.0343330335266569,0.0365023972496349,0.0387257445263048,0.0406554786116829,0.0426403025346654,0.0575607922570136,0.0712670867262565,0.0843736231458364,0.0973111664931596,0.108994095318431,0.1242013962343981,0.1353906888391294,0.1467886001426579,0.1571420937316304,0.1669670829578129,0.1800802225528886,0.1923531132514978,0.2026341017037779,0.2123078271732103,0.2211135611907387,0.2307905809732106,0.2397185965618673,0.2472367590002706,0.2548029346527896,0.2618043990122322,0.2678579711489401,0.2730170635664729,0.2789396310523071,0.2834765700019205,0.2887732396250045,0.2927506198423565,0.2971528690319754,0.301432241980208,0.3060406157030138,0.3096715544840125,0.3080646462473445,0.3062435606841129,0.3034969161386402,0.3015120284820617,0.2983054871353533,0.2955588181317673,0.2920118904560116,0.2925009429166462,0.2924520255863539,0.2932096567440535,0.2935976977126626,0.2944304395777533,0.2966126411399525,0.2973657885961987,0.2989071952940051,0.301367733913584,0.3015471965933286,0.3046767537826685,0.3093853386731673,0.3152851171228015,0.3180170382454232,0.3217041970610001,0.3232183329136238,0.3280773918342474,0.3336780744640842,0.3350692389631909,0.3342499236174763,0.3387821822639967,0.3372797356828194,0.3448408131952435,0.0,2.5138893296418163,53.41707686907234,156.95769812798093,213.60218539033664,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95821,47072,446.8540299099362,5361,54.88358501789796,4236,43.69605827532587,1590,16.269919954915938,77.3504688262772,79.68351678643342,63.33176974345843,65.06036319986343,77.14770274618256,79.4812235317108,63.255715027845966,64.98645955161537,0.2027660800946336,202.29325472261905,0.0760547156124644,73.90364824806284,220.03476,154.17194266855162,229631.04121226037,160895.77719764103,449.04804,296.86256829206025,468155.43565606704,309332.76452141005,439.10688,213.6287915749691,454517.89273750014,220106.0018552456,2418.40472,1128.1014517444494,2495927.197587168,1149350.488665793,966.71605,437.2447452761043,995040.7635069556,442477.8548294254,1557.08998,663.6440353425754,1594972.6469145594,667739.5382664807,0.38274,100000,0,1000158,10437.77460055729,0,0.0,0,0.0,38521,401.4986276494714,0,0.0,39792,411.6425418227737,1247408,0,44804,0,0,8682,0,0,89,0.928815186650108,0,0.0,2,0.0208722513853956,0,0.0,0.05361,0.1400689763285781,0.2965864577504197,0.0159,0.3556231003039514,0.6443768996960486,23.549562245554245,4.159793191850871,0.3045325779036827,0.2724268177525968,0.2070349386213409,0.2160056657223796,10.971495565490756,5.6869938261812365,17.023956763815892,11807.330138386822,48.48398750551684,14.182328804448682,14.598691105603375,9.727056426591997,9.975911168872791,0.5613786591123702,0.7859618717504333,0.6798449612403101,0.5575826681870011,0.1147540983606557,0.740501212611156,0.9163265306122448,0.8477011494252874,0.7409326424870466,0.1407766990291262,0.4874958319439813,0.6897590361445783,0.6178343949044586,0.5058479532163743,0.1071932299012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603541544259,0.0047859018687324,0.0072160763219324,0.0093677290877132,0.0114937852187887,0.013668493206494,0.0159400336545816,0.0181153500531002,0.0203672651425299,0.0225518498044755,0.02488643704562,0.0268111105406376,0.0291032496914849,0.031246459798762,0.0333323020121077,0.035357449138795,0.0373997205113606,0.0396523290427639,0.0416103755741691,0.0435977514053716,0.0585105828108863,0.0725352848928384,0.0852265582428637,0.0981298592141206,0.1108114372405655,0.1262430384562545,0.1381964692784816,0.1493410485783881,0.1590943057838888,0.1688186445218323,0.1805113196178015,0.1919725861547109,0.203506561223603,0.2135261265396679,0.2224055617891008,0.2325537595692587,0.241844581096615,0.2503882074940925,0.2580901555580788,0.26484567371013,0.2719226185655278,0.2779447361343358,0.2837826647581418,0.2883205558217537,0.2931128740296186,0.2965378640297881,0.2996068020736808,0.3033551919526326,0.306939156111586,0.3105764662408277,0.3087153367289191,0.3065482338359843,0.3041394765401474,0.3015710135711292,0.2995113111418089,0.2969233124138987,0.2935999113517278,0.2929854787103125,0.2934854920423724,0.2943956063550935,0.2951386293998954,0.2964210443380803,0.2974846049472915,0.297570759973256,0.2993215219006976,0.3009996105413475,0.3037354041491894,0.3080411597285209,0.3122932841277025,0.3164661802405837,0.3177473171611507,0.3202120400986721,0.3205869551700553,0.3273068267066766,0.3319073746861341,0.3380314502038439,0.3352409638554217,0.3324711500198965,0.3387787895018747,0.3415823022122234,0.0,2.031357512686744,54.34916086264226,156.2121395942686,220.80790992912625,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95727,46890,446.1228284601,5341,54.57185538040469,4217,43.57182404128407,1620,16.682858545655876,77.30949638025908,79.67006962332857,63.31695901961641,65.05978795215178,77.1032300464215,79.46227309382436,63.24064945293312,64.9844396668982,0.2062663338375756,207.79652950420768,0.0763095666832924,75.3482852535825,220.9669,154.8054269561106,230830.27776907248,161715.5316223329,449.43096,296.6593008317939,469018.6363303979,309427.65450896183,435.6754,212.44520711543564,451437.8597469888,219161.7358195209,2400.2234,1121.7102212350903,2482432.7932558213,1146850.168954517,964.42286,438.4693128939264,995253.5125931032,445822.7907423465,1568.21852,659.3078711726677,1616017.424551067,669854.8527656145,0.38178,100000,0,1004395,10492.285353139658,0,0.0,0,0.0,38598,402.7181463954788,0,0.0,39539,409.3620399678251,1242628,0,44607,0,0,8836,0,0,74,0.7730316420654569,0,0.0,1,0.010446373541425,0,0.0,0.05341,0.1398973230656399,0.3033139861449166,0.0162,0.3480286738351254,0.6519713261648745,23.75572472567161,4.082283628700631,0.3106473796537823,0.2729428503675599,0.2153189471188048,0.2010908228598529,11.419364717272192,6.162877739091964,17.245090582046103,11776.84438571686,48.24217850733678,13.954231080314454,14.836132535950126,10.257835826072178,9.193979065000027,0.5795589281479725,0.790616854908775,0.6824427480916031,0.5881057268722467,0.125,0.7676348547717843,0.935632183908046,0.862533692722372,0.7012987012987013,0.2142857142857142,0.5043160690571049,0.702513966480447,0.6112886048988285,0.5494830132939439,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065211006572,0.0043792068769767,0.0067161756350945,0.0088872186560494,0.0110405123773699,0.013364275753967,0.0155837537583447,0.0177508752947421,0.0200625485466661,0.0221264750130486,0.024139238819586,0.0265211409327063,0.0285347043701799,0.0304727969269744,0.0324759704632647,0.034622060586023,0.0366479683715923,0.0386629746014954,0.040720878024445,0.0429583333333333,0.0578382950285588,0.0717963745970611,0.0858110730054851,0.0985026917900403,0.1108111812900028,0.1264474783473102,0.1383027255270165,0.1489440967343636,0.1591147001644982,0.1680856082863331,0.1807144550018314,0.1921073999891734,0.2029947548262128,0.2128723706962593,0.2218490910892615,0.2318734550452817,0.2412768619041236,0.249667740409524,0.2570166172578685,0.2640698593873551,0.2696242968587236,0.2763658054480169,0.28198937139746,0.2865981606494082,0.2916990574288213,0.2955845372516148,0.2994509274198592,0.3041343340541916,0.3084523639942502,0.3111002535389816,0.3089101173553942,0.306271335755974,0.3042062529954047,0.3015416624525003,0.2999494634204346,0.2969961685823755,0.2936997510347124,0.293797749116898,0.2944898587406369,0.2959108870174686,0.2960330113476507,0.2956909361069836,0.2969621952754584,0.2984710438539544,0.2998457385268029,0.2998383901574392,0.301185544922154,0.3058871575772807,0.309504610314483,0.3131868131868132,0.317066533629643,0.3203344092280015,0.3274413940077723,0.3318168031543828,0.3352080989876265,0.3354937544190431,0.3420651842826683,0.343494271685761,0.3483516483516483,0.3527384144006127,0.0,1.8683824017547168,52.79432503427969,161.60176573860528,217.47223415544505,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95742,46780,444.0370997054584,5315,54.43796870756825,4245,43.836560757034526,1619,16.6175764032504,77.40440741590693,79.76086453744253,63.3594678928421,65.09902333368355,77.19954882010278,79.55662617149392,63.28223283292239,65.0240505547385,0.2048585958041542,204.238365948612,0.0772350599197082,74.97277894505316,221.50634,155.13670706258492,231357.5442334608,162036.20883476938,448.34524,295.9065668140992,467801.800672641,308583.61723600834,441.02201,214.70338422332796,457171.4816903762,221617.93766457416,2401.696,1132.7941346443845,2481282.2794593805,1156315.471267245,972.69231,438.4140251796466,1003841.1773307428,446023.0156569751,1564.4445,664.9324905914882,1606677.403856197,670872.8710525709,0.38017,100000,0,1006847,10516.252010611852,0,0.0,0,0.0,38418,400.754110003969,0,0.0,40075,415.0738442898624,1244659,0,44645,0,0,8822,0,0,80,0.835578951766205,0,0.0,0,0.0,0,0.0,0.05315,0.1398058763184891,0.3046095954844779,0.01619,0.3400108283703302,0.6599891716296697,23.5660987337738,4.087576845161937,0.3142520612485276,0.2760895170789164,0.2157832744405182,0.1938751472320377,11.293494351415893,6.155185438079612,17.236756848913323,11727.204115695582,48.51439694997927,14.26000897518597,15.06837652187476,10.208638979167093,8.977372473751437,0.5872791519434629,0.7952218430034129,0.7061469265367316,0.5665938864628821,0.1215066828675577,0.7624309392265194,0.9109730848861284,0.8975069252077562,0.7113821138211383,0.1525423728813559,0.5127602417730021,0.714078374455733,0.6351490236382322,0.5134328358208955,0.1130030959752322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0045908284773245,0.0069490940816036,0.0094348245569491,0.0117942513192276,0.0138945439739413,0.0161528662420382,0.0183463771517198,0.0204042014059179,0.0225530826298286,0.0246899661781285,0.0269316035799326,0.0289503444021795,0.0310852010547132,0.0332968756448883,0.035374627853126,0.037478511215592,0.0397211531479195,0.041778821670945,0.0437662743464222,0.0584028481045697,0.071818001067381,0.0853717378534866,0.0980361235517988,0.1101531456517385,0.1254427609249606,0.1372407574391343,0.1479289310921149,0.1584406982458389,0.1684878770656172,0.1809987399980615,0.1919127433264442,0.2025733614670118,0.2120178430858042,0.220586779314214,0.2303161158168632,0.2392007675487527,0.2475716148761073,0.255043603497352,0.2617633256647094,0.2684854577599057,0.2744942390530334,0.2800240830155713,0.285029925812656,0.2901225597054692,0.2940504276024771,0.2980806453627043,0.3025687887095136,0.3059174424459967,0.3085622608261115,0.3072713371695304,0.3052920208390458,0.3030077615124423,0.300256247840608,0.2977046173869317,0.295227931087056,0.2927756054490413,0.2931425865138079,0.2934799231932573,0.2932528409090909,0.2939047370286759,0.294679802955665,0.2952573621423208,0.2959809718579113,0.2971913469582885,0.2982415188297541,0.2988327068200446,0.3009360374414976,0.3043660057841736,0.3082801544158197,0.3126522876996661,0.3161997050768906,0.3201096095160989,0.3251372283630348,0.3296997690531177,0.3301919720767888,0.333030303030303,0.3332665330661322,0.3320547945205479,0.3328112764291308,0.0,1.9017656841930932,55.4901002471012,154.16143004948816,219.66164719688496,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95756,46783,444.828522494674,5218,53.39613183508083,4142,42.7440578136096,1575,16.16608880905635,77.33232137485312,79.69862065267012,63.31916690730778,65.071285097556,77.13319058500261,79.4992744441405,63.24468334895051,64.99868843658372,0.1991307898505141,199.3462085296187,0.0744835583572722,72.59666097228035,221.33298,155.00705279830166,231142.6751326288,161877.11767231472,448.42164,296.96162622297777,467774.23869000375,309601.3682933474,437.77595,213.1263658460993,454026.1602406115,220169.8504732656,2361.02244,1112.6056807872292,2438548.143197293,1134800.3266502663,960.96593,434.0438146478118,993816.1786206608,443545.8076592919,1534.52228,653.4318576468766,1576360.4578303187,659802.3203268957,0.38008,100000,0,1006059,10506.485233301308,0,0.0,0,0.0,38483,401.3429967834914,0,0.0,39692,411.27448932703953,1240809,0,44564,0,0,8684,0,0,86,0.8981160449475751,0,0.0,0,0.0,0,0.0,0.05218,0.1372868869711639,0.3018397853583748,0.01575,0.352185089974293,0.6478149100257069,23.517774916478757,4.091550764587719,0.3078223080637373,0.2723322066634476,0.2172863351038146,0.2025591501690004,11.311330536722147,6.141246036016118,16.90801585816809,11733.418376317835,47.48421788277516,13.74032933576941,14.465128562818856,10.14527310003678,9.133486884150116,0.5849830999517142,0.775709219858156,0.7105882352941176,0.6122222222222222,0.1084624553039332,0.7636511817440913,0.908695652173913,0.8846153846153846,0.76,0.146067415730337,0.5097770154373928,0.6841317365269461,0.6410537870472008,0.562962962962963,0.0983358547655068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021079087113381,0.0045136881396504,0.0065388676793111,0.0086694040165867,0.0111194758688044,0.0134371084239158,0.0156237252182426,0.0181523037499106,0.0204181790297019,0.0227067977067977,0.0247880508882897,0.0270006673168728,0.028740950970714,0.0305892288836476,0.0325306425653089,0.0344898866185027,0.036675398904501,0.0387899285202975,0.0409552412524551,0.0428773771584494,0.0572773677672578,0.0713545862584877,0.0846478164198514,0.0971096321063201,0.1091781327428963,0.1243389601049202,0.1364547856256167,0.1470096750502911,0.157900919469036,0.1679907368691904,0.1797564048719025,0.1911712199080335,0.2021341397089216,0.2123734114919399,0.2219593776819312,0.2305103136729519,0.2393118529096751,0.2476937269372693,0.2554403322063128,0.2629445576751322,0.2699788265512733,0.2752684147739234,0.2807409773235388,0.2860788307176231,0.2916459261597484,0.295642105781785,0.3002413435206142,0.3034230388046047,0.30722065557654,0.3105506581808119,0.3084182507461081,0.3062918229660469,0.3036563071297989,0.3012110726643598,0.2995595366978599,0.2958054358127732,0.2929962505339429,0.2941398060796645,0.2935598644898793,0.2936062565692195,0.294732112770976,0.2943499812390149,0.2942222780254044,0.2958190020994327,0.2972537901540087,0.2978137104531156,0.2989421740733388,0.3036341953301532,0.3078347777467151,0.3103448275862069,0.3164069577822069,0.3215669621529805,0.3243940824677369,0.3279496511980588,0.3301422065247699,0.3342274052478134,0.3358309605874419,0.334850583811597,0.3281417830290011,0.3318250377073906,0.0,1.941304780006944,53.69869579665402,154.6300122577402,212.07584357432492,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95725,46786,445.4740141028989,5171,52.71350221990076,4141,42.663880908853486,1539,15.680334290937582,77.41699606751023,79.76845393669791,63.36600846061516,65.0997513722009,77.21707219881267,79.57403008493381,63.28960397913961,65.0282258908923,0.199923868697553,194.4238517640997,0.0764044814755493,71.5254813085977,221.86516,155.44932850919835,231773.47610342124,162391.56804303822,450.31211,298.3387145489922,469854.5207626012,311094.8724289405,442.23202,215.636236462778,458004.7218594933,222236.33632893217,2364.9408,1110.7230198928376,2438570.906241839,1128406.9580156533,973.19189,436.7666070252983,1003448.8482632542,443103.6819472368,1501.78956,640.0702597914492,1532996.249673544,638510.747864478,0.38011,100000,0,1008478,10535.158004700968,0,0.0,0,0.0,38639,403.0399582136328,0,0.0,40190,415.9519456777227,1237866,0,44389,0,0,8701,0,0,76,0.7834943849569078,0,0.0,1,0.0104465917994254,0,0.0,0.05171,0.1360395674936202,0.2976213498356217,0.01539,0.3531273268801191,0.6468726731198808,23.48700763062211,4.144006311640303,0.3158657329147549,0.2755373098285438,0.2006761651774933,0.2079207920792079,11.30562812039223,5.98892756748178,16.426626902295524,11679.66745485142,47.30821398848139,13.975405207032908,14.761075417370536,9.162336397749476,9.40939696632847,0.5749818884327457,0.8080631025416302,0.6697247706422018,0.5800240673886883,0.1173054587688734,0.7487844408427877,0.9149377593360996,0.8545454545454545,0.6983240223463687,0.1542553191489361,0.5012039903680771,0.7298937784522003,0.5926327193932828,0.5475460122699386,0.1069836552748885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048222553161312,0.0069478253813696,0.0090273053138232,0.0112046526761021,0.0133146033103279,0.0155542871121621,0.0176568448340971,0.0196519268698966,0.0216686275512813,0.0237843930932008,0.0258428696053779,0.0281470059110768,0.0302677651905252,0.0322906780010729,0.0344428484328658,0.0364131447621808,0.0385840083806125,0.0404406797276931,0.0424636412884944,0.0571061617015944,0.0707850707850707,0.0841507810778769,0.097054090722647,0.1090941692684161,0.1246906267848454,0.1369075402045232,0.1485778761815549,0.1584221885083014,0.1677426965810132,0.1794344417643004,0.1914870596381892,0.2021195652173913,0.2119785465389362,0.2216948482151686,0.2317232375979112,0.2411306412242669,0.2496740987143756,0.2574933115675872,0.2630573321281878,0.2697220135236664,0.2750987126469008,0.2796029307492318,0.2854732357622392,0.2897947797399573,0.2935471563426912,0.2974289783374559,0.3007455767105714,0.3044596358373286,0.3074511663439628,0.3049840762191435,0.3028481229840093,0.3012764641381055,0.2985565819861432,0.2960320403471038,0.2931929974641777,0.2900001576516214,0.2905911740216486,0.2911267725227137,0.2912034328067096,0.2916069734124695,0.2915865856050206,0.292094861660079,0.2927455975191051,0.292581206358285,0.2942499030882542,0.2952238637645201,0.2979040521658128,0.3023336454107285,0.3071347412138071,0.3131562415866463,0.3149069950222688,0.3177842565597668,0.3211618257261411,0.3273148148148148,0.3315147997678467,0.3370281605751947,0.337664894664304,0.3367916999201915,0.341930729550479,0.0,2.327433864036516,53.66509426477814,151.97954164466526,211.59683278370125,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95686,46953,446.7738227117864,5314,54.23990970465898,4222,43.42328031268942,1570,15.968898271429468,77.3508434030137,79.74202051476753,63.31502979323547,65.08301572786,77.14841235948053,79.54588999719924,63.237184988169474,65.01084716309862,0.2024310435331671,196.1305175682924,0.0778448050659932,72.16856476138389,220.61204,154.56148705126407,230558.096273227,161529.67650774829,450.08457,298.11367753100257,469671.54024622205,310850.390580631,442.64412,215.08165788417045,458777.1983362247,221798.73175150584,2407.79052,1124.940813729073,2478539.054825157,1137886.06418188,994.31445,442.4236417958574,1025004.0653805154,448255.8192369922,1538.96342,662.7339968968419,1567001.7975461406,655271.4113553733,0.38105,100000,0,1002782,10479.913466964865,0,0.0,0,0.0,38642,403.1206237067073,0,0.0,40169,416.0587755784545,1240852,0,44493,0,0,8695,0,0,69,0.7002069268231507,0,0.0,1,0.0104508496540768,0,0.0,0.05314,0.1394567642041727,0.2954459917199849,0.0157,0.3482721382289417,0.6517278617710583,23.95031787726092,4.066992338502515,0.3095689246802463,0.2745144481288489,0.2046423495973472,0.2112742775935575,11.051052481782838,5.735966646821101,16.70021584460906,11766.804731841245,48.15583053193588,14.188798351199724,14.67192344638788,9.566049111394015,9.729059622954251,0.5776882993841781,0.808455565142364,0.6809487375669472,0.5914351851851852,0.1132286995515695,0.7510477787091366,0.9310344827586208,0.8757763975155279,0.7188940092165899,0.1368421052631579,0.5094090458897326,0.7266187050359713,0.617258883248731,0.5486862442040186,0.1068376068376068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380542358459,0.0045228219975459,0.0066288359439239,0.0088015285795593,0.0110989033347575,0.0133554736048572,0.0154648114333513,0.0177809097779684,0.0200243401069737,0.0222445259212224,0.0244897959183673,0.0265095880280605,0.0287283611565402,0.0308684587407399,0.0330151194592084,0.0350349419013356,0.0371621271614019,0.0390487954245855,0.0411396355163518,0.0430404553177738,0.0574072720055986,0.0719379260515817,0.0856042156533423,0.0985165702261967,0.110315216473964,0.126162538486769,0.1380210821311423,0.1500154424529005,0.160092360977487,0.1693603777634685,0.1809656242925977,0.1925945975207059,0.2035608179433882,0.2138588503130336,0.222994251987579,0.2319311515043973,0.2409822884327608,0.2495664316763891,0.2568075704045349,0.2637130801687763,0.2698164553297435,0.2752418202684029,0.2806549840637922,0.2854006717850288,0.2904111920070983,0.2947207571351111,0.2990995497748874,0.3028430475027973,0.3061681130928515,0.3108200786051542,0.3088510466446793,0.3067427314592068,0.3046804680468046,0.3025133743817503,0.2999703923019985,0.2971125083938709,0.2937260407957217,0.2941445787072616,0.2946042553191489,0.2944041524459613,0.2946508504923903,0.2955813040062843,0.2959951759128337,0.2975281796396556,0.2998544395924308,0.3006542708629651,0.301377193229504,0.3043896983441548,0.3081189766345421,0.3086082373609213,0.3096719330439064,0.3138147566718995,0.3180860295029131,0.3214957490030848,0.3248721524872152,0.3265546020923945,0.3307669082125604,0.3326748320821809,0.331456154465004,0.332703213610586,0.0,2.677569463876349,51.55372601693882,160.70802844878312,219.160792129644,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95725,46560,442.75790023504834,5273,53.852180726038135,4175,43.05040480543223,1533,15.628101331940456,77.26691653433518,79.6260496826721,63.2951211478972,65.03863000215728,77.06277564983209,79.42617593385651,63.21750361672356,64.9652953784289,0.2041408845030901,199.87374881559103,0.0776175311736437,73.33462372837118,220.50094,154.37103947795853,230347.87150692084,161264.6774405417,446.96452,296.079942288808,466332.5045703839,308710.5695533311,433.23434,211.4670857998101,449483.2593366414,218476.25549109036,2359.48272,1122.7839216463578,2433149.584747976,1141280.237970313,957.55947,432.076246820668,985685.6411595716,436879.0213947566,1490.7266,648.3343694262411,1520389.6996604858,644236.7313567012,0.38065,100000,0,1002277,10470.35779576913,0,0.0,0,0.0,38406,400.5850091407679,0,0.0,39375,408.2214677461478,1241793,0,44644,0,0,8722,0,0,76,0.7939409767563332,0,0.0,0,0.0,0,0.0,0.05273,0.1385262051753579,0.2907263417409444,0.01533,0.3566357181867832,0.6433642818132168,23.33754571320245,4.118390461308182,0.3223952095808383,0.2706586826347305,0.2071856287425149,0.1997604790419161,11.60991973515121,6.265012022147985,16.631364626431054,11747.505706039425,48.19960221712772,13.903992903652616,15.407839745153924,9.65552389924149,9.23224566907969,0.595688622754491,0.8132743362831858,0.7265973254086181,0.5745664739884393,0.1115107913669064,0.7567567567567568,0.9207708779443254,0.8847184986595175,0.7777777777777778,0.0880829015544041,0.5262255742200891,0.7375565610859729,0.6659815005138746,0.503125,0.1185647425897035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067131223919,0.0041367143537904,0.0064841498559077,0.0088276226369094,0.0111974452332038,0.0131550813028825,0.0153218818492277,0.0173334286093445,0.0196783987405824,0.0220070422535211,0.0241202218281344,0.0264260194653196,0.0284536124879172,0.0304977906868955,0.0327452800990405,0.0347105216914918,0.0365338414381575,0.0385940158525957,0.040715562762463,0.0427915021307188,0.0573672065073249,0.0711212987094545,0.084505120886501,0.0975673912586014,0.109502758933564,0.1244192814434626,0.136139717592101,0.1466976258693962,0.1569424245016682,0.1671104049469661,0.1799764962102834,0.1913240425670257,0.2030691818419447,0.2121172295965304,0.2214360500358186,0.231157787226484,0.2406200024603272,0.2498957781708787,0.2568526996171803,0.2635349679608423,0.2693260195343239,0.2745871420044241,0.2807486947565321,0.286121969351783,0.2911050885359065,0.2964040842499876,0.300503658414353,0.3041008660213958,0.3078020253886749,0.3106134758339726,0.3076008699058502,0.3054761806159495,0.3038865264258367,0.3018684960849869,0.2996488199755959,0.2967048139170987,0.2931515978547174,0.2936434822662367,0.2940431575885141,0.2941197491378848,0.2948153422398771,0.2962084371169889,0.2969009001447785,0.2998323085522638,0.3015544540160739,0.3031148181936661,0.3038404473864414,0.3079371081072565,0.3112383780535228,0.3160277210271201,0.3193808389814984,0.3226495726495726,0.3267095634620237,0.330974663318877,0.3340853543899229,0.3394082840236686,0.3441024078024992,0.3501006036217304,0.3504390779363337,0.3500959692898273,0.0,2.061764976331673,55.1585693990634,157.95254262925445,210.52954129520367,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95696,46697,444.4595385387059,5386,55.05977261327537,4266,43.930780805885306,1580,16.082176893496072,77.288290147924,79.65809048976597,63.294707477804174,65.04398995805926,77.08024883834396,79.4545591965626,63.21626756208198,64.97012667882943,0.2080413095800395,203.53129320336905,0.0784399157221926,73.86327922982616,220.06468,154.14439700529292,229962.25547567295,161077.15788046826,449.72636,297.4866357779503,469310.69219194114,310223.87119414634,437.33308,213.00154336489956,452971.0855208159,219402.1211003192,2440.80568,1149.5616848089353,2513964.3872262165,1164645.716444716,974.12143,444.2727327052457,999215.7979434876,445536.75462427415,1540.8626,662.8637491623922,1569257.9209162348,658068.5652165099,0.38045,100000,0,1000294,10452.82979434877,0,0.0,0,0.0,38617,402.8695034275205,0,0.0,39748,411.3756060859389,1241940,0,44645,0,0,8535,0,0,68,0.7105835144624645,0,0.0,4,0.0417990302624979,0,0.0,0.05386,0.1415691943750821,0.2933531377645748,0.0158,0.3583362957696409,0.641663704230359,23.730648989271803,4.088995093554338,0.3293483356774496,0.263947491795593,0.1999531176746366,0.2067510548523206,11.4727309014721,6.258059307282323,17.153098694375455,11757.547711784362,48.99447119817149,13.797372078913511,15.977496910577498,9.473373837981557,9.746228370698915,0.5761837787154243,0.8010657193605684,0.696085409252669,0.5638921453692849,0.1099773242630385,0.7523659305993691,0.9136842105263158,0.8759894459102903,0.7511961722488039,0.1512195121951219,0.5016677785190127,0.7188940092165899,0.6296296296296297,0.5031055900621118,0.0974889217134416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509059236978,0.0046329619529404,0.0068291593944067,0.0089701131676791,0.0111565373037181,0.0133592644258672,0.0154054770498154,0.0176389526871841,0.0198714082736202,0.0218901908611779,0.024145776538832,0.0261953152265402,0.02837696119759,0.0303701262589853,0.0324700106239234,0.0345903824888126,0.0365910479286816,0.0384292074429996,0.0403478297049064,0.0425139402782844,0.0567346256684491,0.070518391322102,0.0837120456763819,0.0967670644692808,0.1098877898937012,0.1258060076021472,0.1377146315823006,0.1492995259148777,0.1598678371702612,0.1701922044453989,0.1820583604718873,0.1929777045912508,0.2037137878457852,0.212767820974611,0.222147577092511,0.231399915681097,0.2407759391771019,0.2491346750098652,0.2569446024343078,0.2639737289303265,0.2705301123777935,0.27658776218447,0.2826419615425677,0.2872741687487988,0.291685945985437,0.295670434191835,0.2994075859125938,0.3039852069119428,0.3073817313184815,0.3107425336613496,0.3079132228619197,0.3049496759961395,0.3022726951706993,0.2999579971901568,0.2986057319907049,0.2953726284145462,0.2923018413463062,0.291543513957307,0.2921916941647147,0.2938549481957842,0.295856213805124,0.2973703952303865,0.2976317607889943,0.2992115461713217,0.2999139209028741,0.3005593246672536,0.3015531118920757,0.3058790383170548,0.3089109603413303,0.3124604179860671,0.3154447880662179,0.3197289714678947,0.3234834759792591,0.3264659270998415,0.3261913557443665,0.3318181818181818,0.3340339288395136,0.3334655822257488,0.3407091442282058,0.3454545454545454,0.0,2.559306633901269,55.11090657044312,158.86751538481298,218.437241397666,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95837,46923,445.3081795131317,5253,53.66403372392708,4156,42.85401254212882,1568,16.00634410509511,77.36488025655099,79.67841223910293,63.35773544642036,65.07064059088505,77.16619371168896,79.48288988042187,63.28237565425378,64.99888204766775,0.1986865448620278,195.5223586810604,0.0753597921665729,71.75854321729958,222.0757,155.50656898782813,231722.06976428727,162261.28633808254,448.11785,296.93531973586545,467065.5487963939,309315.9006812249,438.40765,213.82452281985132,454340.3069795591,220787.4345217152,2374.47592,1123.6137332397484,2448606.446362052,1143729.458025708,962.152,435.2715642072664,990894.2788275926,441127.0325732917,1537.36074,659.2536234138812,1570732.4102382169,659252.5222144459,0.38065,100000,0,1009435,10532.821352922148,0,0.0,0,0.0,38368,399.814267975834,0,0.0,39846,412.7424689837954,1242009,0,44560,0,0,8708,0,0,79,0.8138819036489039,0,0.0,2,0.0208687667602283,0,0.0,0.05253,0.1380007881255746,0.2984960974681134,0.01568,0.3558304529743496,0.6441695470256503,23.554418659391185,4.195422183931793,0.316410009624639,0.2663618864292589,0.2038017324350337,0.2134263715110683,11.268710016173902,5.899418744168099,16.83250851244371,11746.574989950195,48.04551883025955,13.708783724469257,15.190157436567429,9.458491718536871,9.688085950685998,0.5878248315688162,0.8048780487804879,0.714828897338403,0.5974025974025974,0.1195039458850056,0.7409783480352847,0.9057815845824412,0.8544474393530997,0.7475728155339806,0.1477832512315271,0.5221725678927467,0.73125,0.659957627118644,0.5491419656786272,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.0043594630763615,0.0065752090267067,0.0090399382440173,0.0112567494737698,0.0135930436199242,0.0159024648820567,0.0179369908324315,0.0198417566241413,0.0220379753313885,0.024125773787562,0.0261999322680951,0.0284997790316447,0.0310624852046645,0.0332951933285916,0.0354506694746404,0.037629681730262,0.0398499668435013,0.0414416846652267,0.0435008791734728,0.0588382547745454,0.0726223699476341,0.0862646917097902,0.099275438412265,0.1107787899531357,0.1266090115204697,0.1386999724570435,0.1498336362959892,0.1603584382334115,0.1698638647001489,0.1819140238392357,0.1928349044365649,0.2030377436387736,0.2126997302344885,0.2213576868550328,0.2307037237748703,0.2396114168579131,0.247473159336957,0.2558913789393819,0.2621475773443395,0.2680586190569676,0.2740549627588783,0.280155963844745,0.2857382048675477,0.291206990715456,0.2959015384615384,0.2998425629748101,0.3030830180054346,0.3063547224411229,0.3097637339507472,0.3072750221553831,0.3049172226340499,0.3026965438663122,0.3004558700481837,0.2984901794860375,0.2952316847435328,0.2917115007278941,0.2926088811578982,0.2920155860136035,0.2930726655954294,0.2936616678240958,0.2947510094212651,0.2953045445973977,0.2966232373119986,0.2972850028730128,0.2979198587269847,0.2970126008778139,0.2995181175292571,0.3055244755244755,0.3104624415007535,0.312685172523816,0.3163134916409328,0.3210759493670886,0.3216879443467624,0.3255220636870453,0.3302165936797254,0.3335375191424196,0.3357723577235772,0.339917695473251,0.3408742331288343,0.0,1.9809812949072505,54.69934957604752,157.80758260813127,210.9668702842545,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95645,46667,445.07292592398977,5153,52.83078049035496,4102,42.38590621569345,1571,16.143028908986356,77.2563444549925,79.66678565219519,63.27473565930678,65.05576777826519,77.05874081763794,79.46999940769402,63.2019220815847,64.98528292199433,0.1976036373545611,196.786244501169,0.0728135777220799,70.4848562708662,220.89254,154.77786801431816,230950.2012650949,161825.15262298938,444.14985,293.67169587141274,463886.1519159391,306557.11463605275,431.25286,210.3276281289456,447460.14951121336,217257.9933122636,2327.71928,1087.087255015247,2407592.5348946624,1110543.903617802,951.50648,430.61884345510384,982203.9730252496,437686.16635758313,1528.32592,638.1421081386627,1571567.023890428,644702.2993025527,0.37897,100000,0,1004057,10497.736421140677,0,0.0,0,0.0,38168,398.5362538554028,0,0.0,39178,406.2000104553296,1241406,0,44577,0,0,8672,0,0,68,0.7109624130900727,0,0.0,0,0.0,0,0.0,0.05153,0.1359738237855239,0.3048709489617698,0.01571,0.3545809329120981,0.6454190670879019,23.92086640775763,4.132183191972149,0.311311555338859,0.2749878108239883,0.2113603120429059,0.2023403217942467,11.423259774700272,6.198932912219584,16.761048046680397,11741.950304186046,46.81576139426736,13.803121154486105,14.321495311986498,9.663813288631143,9.027331639163611,0.576060458313018,0.7969858156028369,0.6664056382145653,0.5986159169550173,0.1132530120481927,0.7781569965870307,0.9192139737991266,0.8840579710144928,0.7644230769230769,0.1677018633540372,0.495221843003413,0.7134328358208956,0.5858369098712446,0.5462822458270106,0.1001494768310911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281865599837,0.0044089476298105,0.0065253351464902,0.0087165889488281,0.0110387628446434,0.0131923433472897,0.0153113269136608,0.0172360946503739,0.0196489577153611,0.0216977072960845,0.0238569200459694,0.0259385244638104,0.0279096103361301,0.0299615428235609,0.0319301688962347,0.0339503937252304,0.0361785499554247,0.0382581777763927,0.040124034879607,0.0420873664886515,0.0571562940899827,0.0713836741535367,0.0849719174846464,0.0979874107913517,0.1102259177579166,0.1249563515157928,0.1365942182790678,0.1485800083059131,0.1588662184838023,0.1687161988153489,0.1815104671970334,0.1929389333651106,0.2037966825315573,0.2137730783980715,0.2228715720759959,0.2324714238153368,0.2412921693819816,0.2487887869842486,0.2566753777979775,0.2631295294009724,0.2693301806970571,0.2745010722698136,0.2803751615542407,0.2861411087113031,0.2907991287099797,0.2954696950993704,0.2996077743386674,0.3033448820502369,0.3065835353286583,0.3104727455147922,0.308429351121892,0.3062040073863793,0.3032608695652174,0.3012093562169599,0.2997228513529622,0.2958255202729704,0.2931521635607479,0.2935086737548965,0.293537035447601,0.2941113202473783,0.2949509010873246,0.2956501050795035,0.2966368560272074,0.2977649764440574,0.2989121298720011,0.3003458228243064,0.3013776613913241,0.3056035159315649,0.3087768277787471,0.3121722329561137,0.3147419369430497,0.3176538908246225,0.3209760381382511,0.3242611580217129,0.3315552285477789,0.3306470450829245,0.3309417040358744,0.331547619047619,0.333243751679656,0.333843797856049,0.0,1.91108278715812,51.20095921728952,153.4632834814295,215.45451641799943,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95693,46943,446.97104281399896,5220,53.504436061153896,4095,42.20789399433605,1577,16.10358124418714,77.32722884548278,79.70471003205209,63.32110870231941,65.07619288181027,77.1270972043728,79.5076655569147,63.24600596925072,65.00472293556587,0.2001316411099765,197.04447513738896,0.0751027330686966,71.46994624440595,220.2959,154.33075853613158,230211.09172039756,161276.9570774577,449.71829,298.17867961541043,469365.1259757767,311004.94248838513,433.92174,211.5960848099484,450083.87238356,218479.68151845055,2353.6962,1102.5167765043109,2429189.763096569,1121696.6094743728,973.24922,438.2739986596582,1004299.5725915168,445245.9100035096,1540.44208,651.7840984546341,1575600.6395452125,652693.7563400986,0.38055,100000,0,1001345,10464.14053274534,0,0.0,0,0.0,38780,404.6481978828128,0,0.0,39390,408.21167692516696,1241588,0,44577,0,0,8786,0,0,58,0.606104939755259,0,0.0,0,0.0,0,0.0,0.0522,0.1371698856917619,0.3021072796934866,0.01577,0.3514851485148514,0.6485148514851485,23.73483910828483,4.206482319418026,0.3162393162393162,0.252991452991453,0.2173382173382173,0.2134310134310134,11.409238954650403,6.110461746056293,16.739016112267095,11749.688809887482,46.8869263746888,12.57904222415246,14.730455711433024,10.031649604735732,9.545778834367574,0.5687423687423687,0.7847490347490348,0.6725868725868726,0.6033707865168539,0.1235697940503432,0.7288851351351351,0.914004914004914,0.8310249307479224,0.7192982456140351,0.1436170212765957,0.5036070079010649,0.7011128775834659,0.6113490364025695,0.5634441087613293,0.1180758017492711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0045606105137274,0.0067566196611545,0.0086738373096884,0.0107686519356118,0.0130023520307902,0.0151938490404421,0.0169946789496798,0.019327920152169,0.0214027506118728,0.0238437083376064,0.0259128023417038,0.0279774945742175,0.0298196805770221,0.0318176188903566,0.0340862083229916,0.0360743035338727,0.0384140200791121,0.0406811042459797,0.0425795826471262,0.0572923738993283,0.0712738233539514,0.0847318956113115,0.0977434117090105,0.1097353905862749,0.1250846238470001,0.1369371663854488,0.1491396200698526,0.1604414624244108,0.1690231500354009,0.1811278074002262,0.1928405966530276,0.2040028280850601,0.2130740542254984,0.2227443815896634,0.2316274637978218,0.2406388464156966,0.2497637688984881,0.2569593390755683,0.2643413516609393,0.2697236660839768,0.2766505183832994,0.2819065203754335,0.2866317593069651,0.2909594566683271,0.2951763415145277,0.2986694371080597,0.3020287125184544,0.3048044548044548,0.3090047768599404,0.3063729452977634,0.3044961282957624,0.3028459577823779,0.3010187884210222,0.2998500304393662,0.2965448555887535,0.2937547456340167,0.2942793109653356,0.2946031962149191,0.2959152852548727,0.2967348537117497,0.2980619773733399,0.299213419850195,0.3000178157847853,0.3016310865915088,0.3015786325453174,0.3026667424802411,0.3057278937143573,0.310016397446185,0.3122304435563645,0.3165536388876246,0.3213755041392486,0.3218282409153779,0.324643646619407,0.3270790118800679,0.3310059171597633,0.3323655256723716,0.3364976772369218,0.3469780219780219,0.3463451970914658,0.0,2.270968337469862,51.500598301329255,152.79911168419872,214.34822154604333,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95777,46732,444.3655574929263,5139,52.50738695093811,4088,42.08734873717072,1573,15.98504860248285,77.38146625236273,79.70539810158913,63.35451413110488,65.0681155885219,77.18423831395529,79.51414619563563,63.27926534014882,64.99843902393854,0.1972279384074369,191.25190595349292,0.0752487909560599,69.6765645833608,222.00508,155.46136985293373,231793.72918341565,162315.9734100397,448.01319,296.6692600730672,467155.00589911983,309138.5557198315,430.60784,209.7909092299816,446799.5447758857,216797.48056705465,2334.13748,1089.7710886701173,2401700.3247126136,1102656.885714628,938.47932,419.7101876371776,962513.1294569676,421003.37743505824,1536.14318,656.0960311590218,1561053.6558881567,647450.083623769,0.37919,100000,0,1009114,10536.078599246166,0,0.0,0,0.0,38471,401.0357392693444,0,0.0,39034,404.6587385280391,1238460,0,44428,0,0,8805,0,0,79,0.8248326842561367,0,0.0,2,0.0208818401077502,0,0.0,0.05139,0.1355257258893958,0.3060906791204514,0.01573,0.3436687708874861,0.656331229112514,23.895074735007487,4.090507090344564,0.3131115459882583,0.273972602739726,0.2013209393346379,0.2115949119373777,11.241909632338915,6.014602247401404,16.805704215792307,11671.796309346544,46.398769147596845,13.544641420928002,14.44454241803569,8.950201245534968,9.459384063098176,0.5807240704500979,0.8098214285714286,0.70390625,0.5771567436208992,0.1052023121387283,0.7457627118644068,0.925925925925926,0.8575498575498576,0.7311827956989247,0.0978260869565217,0.5137551581843192,0.7291981845688351,0.6458557588805167,0.5321821036106751,0.1071953010279001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363627159143,0.0043272933641412,0.0068775930453129,0.0092513607929157,0.0117034581634416,0.0137935948856811,0.0160836594911937,0.0180920213471566,0.0200756027789129,0.0226205457168288,0.0246283718023583,0.026532057003909,0.0286515872444942,0.0307288449660284,0.0325487406307671,0.0346804093899428,0.0366648729199437,0.0388591098070522,0.0407243109592029,0.042701847185489,0.0570769584003005,0.0718807881876497,0.08609368772158,0.0990117746005046,0.1107631970142644,0.1257946119755032,0.1379109164005897,0.1481796891632957,0.1577654347361675,0.1671223183557942,0.1790562726754013,0.1913980122638346,0.202548989756193,0.2119103876783057,0.2208015141178283,0.2298111869515114,0.2394565872608336,0.2474628141947388,0.2539082456319607,0.2605068020583819,0.2671274908240416,0.2727762298344611,0.2786768797281779,0.283709783715775,0.2880909300659389,0.2917328604327533,0.2963481565754435,0.300341904241392,0.3033550792171481,0.3064363090060884,0.3042215649368109,0.3008034058916432,0.3000379741494494,0.2987984518514239,0.2968281310326394,0.293927806668706,0.2913016714806572,0.2908169106222912,0.2915305010893246,0.2916341030195382,0.2919742041303213,0.2933411903358868,0.2940171296392773,0.2952374590875693,0.2969026337173175,0.2977296849517202,0.2997767920210211,0.303171786970461,0.3077163712200209,0.3119020433875349,0.3164522681110359,0.3197271773347324,0.3206168328482071,0.3227040816326531,0.3238397609487347,0.3274221961244862,0.3321783669780054,0.3370540163444289,0.3328826392644672,0.3354814253222138,0.0,2.2779323579391795,51.28211511863896,145.66685305660016,218.36370065751896,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95760,47132,448.3709273182957,5260,53.7280701754386,4158,42.87802840434419,1532,15.6328320802005,77.31912755708531,79.6698116404072,63.32066847763053,65.0586832028075,77.11818697291734,79.47056345321609,63.244780286107314,64.98589715772552,0.2009405841679665,199.2481871911167,0.0758881915232194,72.78604508198327,220.32098,154.4655165261885,230076.2113617377,161304.84181932802,452.02674,299.2349539766758,471520.95864661655,311963.955698283,441.75248,215.33763368491043,457972.9845446951,222271.40937653463,2358.1368,1110.7045521953569,2432428.111946533,1129762.8573468635,962.1426,439.8123295797497,989548.0785296574,444090.4026522017,1486.98736,639.6831140433096,1518707.497911445,639383.2654405333,0.38315,100000,0,1001459,10458.009607351712,0,0.0,0,0.0,38811,404.7410192147034,0,0.0,40145,415.90434419381785,1240977,0,44554,0,0,8724,0,0,87,0.898078529657477,0,0.0,1,0.0104427736006683,0,0.0,0.0526,0.1372830484144591,0.291254752851711,0.01532,0.3573508005822416,0.6426491994177583,23.4350201484076,4.136841547684656,0.316017316017316,0.2722462722462722,0.2147667147667147,0.1969696969696969,11.679350399951025,6.396286695439894,16.544239130076445,11805.503382953946,47.65136230335767,13.809382255729233,14.94728339071564,9.794250260563604,9.100446396349192,0.5848965848965849,0.8012367491166078,0.700152207001522,0.5643896976483762,0.1233211233211233,0.7611697806661251,0.9326315789473684,0.859375,0.702020202020202,0.1436781609195402,0.5107618722241203,0.7062404870624048,0.6344086021505376,0.5251798561151079,0.117829457364341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369644249562,0.0048034536223512,0.0071831500344953,0.009415182108107,0.0116240046373981,0.0135753057753607,0.0161203160846291,0.0183494669770861,0.0205721764381096,0.0227577522752633,0.0248738875446007,0.026932949994866,0.029053324420219,0.0312245675845515,0.0330585334145007,0.0353042094275467,0.036978756884343,0.0391361623118653,0.0410341136984735,0.0430054889543906,0.0576304801670146,0.0711446325083164,0.0843813259772815,0.0972480730201793,0.1092580488730523,0.1254150189269778,0.1375173686611016,0.1488571550183025,0.1591401753393061,0.1692020712057376,0.1822645776126635,0.1936517212644611,0.2049357740289968,0.2151940256076626,0.2243418374643827,0.2342623658771551,0.2428909423686442,0.25043313907702,0.2581223544898491,0.2652582159624413,0.2719864805426302,0.2771601759970043,0.2824274718768502,0.2872705458908218,0.2925557136083452,0.2970275039176733,0.3013125594910075,0.3039680114099429,0.3066982917282319,0.3099069368358524,0.3077979797979798,0.3054531447752159,0.3043251546711388,0.3021244594848656,0.2994548344449561,0.2961579100500742,0.2923871049464817,0.2929418908052579,0.293492355992356,0.2945712908581323,0.2948823617563315,0.2964468206838045,0.2975180647188187,0.2994030718325918,0.3012077120699176,0.3032921275211451,0.3033921919872615,0.3073283829933891,0.310754043268221,0.3131822660098522,0.3169243287225387,0.3178888419273035,0.3199172465676133,0.3236142748671222,0.325836378971043,0.3301698886936145,0.3362121212121212,0.3364805142627561,0.3358778625954198,0.3368540173519426,0.0,2.1235706082324364,53.6987499084463,150.84839056296786,218.9241585545268,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95679,46908,447.02599316464426,5201,53.04194232799256,4137,42.63213453317865,1586,16.147744019063744,77.34181859432726,79.72448898968304,63.3271521787835,65.0854808954605,77.13995027091714,79.52602960803347,63.251014212526286,65.01326782632539,0.2018683234101246,198.45938164957036,0.0761379662572139,72.21306913511683,222.78762,156.0733453724494,232849.02643213244,163121.84008241037,453.62759,300.02113998929224,473515.3168406861,312971.78063032875,439.23993,214.195500801608,455210.9971885158,220873.3170090189,2376.50132,1106.0778044686042,2449356.1178524024,1121558.4657747308,983.25205,440.75631915246936,1013596.0973672384,446600.48615941766,1553.794,657.9817447612609,1583329.1526876325,654284.964630479,0.38049,100000,0,1012671,10584.04665600602,0,0.0,0,0.0,38867,405.60624588467687,0,0.0,39784,411.9921821925397,1231645,0,44180,0,0,8762,0,0,85,0.8779355971529803,0,0.0,1,0.0104516142518211,0,0.0,0.05201,0.1366921601093327,0.3049413574312632,0.01586,0.3448085419734904,0.6551914580265096,23.712524278842817,4.16008287563584,0.2990089436789944,0.2772540488276528,0.2025622431713802,0.2211747643219724,11.446027826874042,6.168730873698708,16.904715053626237,11710.626085350605,47.00461535291791,14.028201963033355,13.899838842479278,9.13228991363943,9.94428463376585,0.5690113608895335,0.7942458587619878,0.692805173807599,0.5596658711217184,0.1278688524590163,0.7433554817275747,0.8972746331236897,0.8260869565217391,0.7715736040609137,0.1621621621621621,0.4974428912376406,0.7208955223880597,0.6412556053811659,0.4945397815912636,0.1191780821917808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607345748397,0.0047437079984187,0.0070208901920599,0.0091507383559139,0.0114491397893195,0.0135314001791968,0.0155948995504999,0.0177209762869654,0.0196854015269984,0.0218550706834955,0.0236649987695841,0.025757684684037,0.0280238264251103,0.0301503395262089,0.0322647234894618,0.0343094156952388,0.0360203521207034,0.0382494938483102,0.0401556290701787,0.0422947811763724,0.056944371898668,0.071348544024795,0.0846383139510474,0.0970579569847215,0.1097397596970368,0.1259334475682765,0.1375973516117395,0.1493501655188563,0.1604504321627367,0.1691368881643859,0.1818602797850458,0.193586068898383,0.2041957129340627,0.213266722782776,0.2217529039070749,0.2314004739861348,0.2401062476284011,0.2483774815814633,0.2559802097045073,0.2619729277845216,0.2677522320395984,0.274153756211634,0.2794289836903171,0.285069065903128,0.2899868855644064,0.2939683634750899,0.2975981986489867,0.3011588414129978,0.3052609770940968,0.3079002901609074,0.3062421787747083,0.3043149545685732,0.3016217129342868,0.3000245377520532,0.2972046648268495,0.2938511227785516,0.2907232132981497,0.2906544352526825,0.2910734077926507,0.2923534228044569,0.2929999254120982,0.2931523022432113,0.2949346234854962,0.2965882772136112,0.2978331138513109,0.3003328652415873,0.3021451910782781,0.3062260956799799,0.3094060274357085,0.3123069612734616,0.3162699854651162,0.3175165125495376,0.3226890756302521,0.3257986738999397,0.3282711362163163,0.3282667609284788,0.3307528840315725,0.3377298161470823,0.3408528198074277,0.3431635388739946,0.0,2.400455119655516,52.290556448143455,148.03901546174802,218.59574388241347,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95675,47183,448.8737914815783,5269,53.984844525738175,4152,42.7697935719885,1626,16.65011758557617,77.38307130315455,79.76034735257906,63.34642469116329,65.0978062767598,77.17754169808728,79.55620091600707,63.26897556037101,65.02314129536039,0.2055296050672694,204.14643657198891,0.0774491307922815,74.66498139940825,221.5906,155.21319041204384,231607.629997387,162229.62154381382,450.77471,298.7217269623419,470526.3862032924,311599.9261594349,438.47978,214.54917381009471,454153.488372093,221087.5053782831,2374.57376,1124.7131830395083,2448769.145544813,1142416.9401480623,977.84026,446.9873888532516,1005159.9895479488,450426.5132372399,1579.44748,678.4374516010447,1618784.1337862555,682112.2501815225,0.38315,100000,0,1007230,10527.619545335772,0,0.0,0,0.0,38662,403.4282727985368,0,0.0,39806,411.88398223151296,1237700,0,44479,0,0,8829,0,0,78,0.8152599947739744,0,0.0,0,0.0,0,0.0,0.05269,0.1375179433642176,0.3085974568229265,0.01626,0.3558148013124316,0.6441851986875684,23.49326739812044,4.077681193332624,0.3184007707129094,0.2719171483622351,0.1972543352601156,0.2124277456647398,11.080811246234788,6.030323608864798,17.581980995797608,11766.434853217565,47.6365165266926,13.8000031233106,15.155779503257946,9.00845454405791,9.672279356066149,0.5857418111753372,0.8104517271922055,0.6906202723146747,0.5995115995115995,0.1281179138321995,0.7434052757793765,0.9210526315789472,0.8402061855670103,0.7438423645320197,0.1617647058823529,0.5177524991382282,0.7355126300148589,0.6284796573875803,0.551948051948052,0.1179941002949852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182126479252,0.0045792555670374,0.0067747791604547,0.0089971160485803,0.0113568196837984,0.0136608406201329,0.0158514954433321,0.0180056956792454,0.0202489982827704,0.0223682728826919,0.0244014968985492,0.0266476350865663,0.0286945521490059,0.0308601917946499,0.0331569228229808,0.0352015874820426,0.0371490728271003,0.0392850841230136,0.0413065859669921,0.0434275113857826,0.0586668338086433,0.0722032620757521,0.0846508114686165,0.0974807057388598,0.1093656098769597,0.1245890200970494,0.137295016801467,0.1482336176276666,0.1589167964832163,0.1690862144701458,0.1806278779532641,0.1925247588980668,0.2035801234675245,0.2129359432549701,0.2218018236012274,0.2319691564556513,0.2402506030554811,0.247882787512951,0.2552256599489071,0.2626025388387333,0.2694159029899102,0.2761288359354884,0.2807125598142796,0.2855891738848765,0.2903759179108107,0.2945268845057913,0.2983760908487649,0.3028910417170573,0.3075358262717355,0.3116385911179173,0.3091662629850907,0.3061653721905286,0.3041661390401418,0.3015329984410185,0.2992360750574798,0.2961160591313929,0.2937204484716226,0.2927888792354474,0.2933000956153531,0.2949042541810791,0.2959615348776533,0.2969741001826143,0.2980955354355292,0.2996780282002886,0.3021327296556654,0.3030592487414483,0.3042939253916376,0.3082017162044522,0.3122565386755704,0.3154740923510751,0.3205948625506985,0.3248980445466903,0.3287467460022313,0.3282442748091603,0.3318298969072165,0.3342602247711737,0.3340273646638905,0.3364413364413364,0.3469981486379265,0.3538236370289059,0.0,2.396406451600692,54.35922329873485,151.43011673646035,213.63777856440515,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95698,47098,448.91220297184896,5404,55.2153650024034,4291,44.306046103366846,1641,16.813308533093693,77.3960056150407,79.77970659198222,63.35197710932333,65.11294052303347,77.18391559630037,79.570394376394,63.27161684840104,65.03622120077073,0.2120900187403407,209.3122155882128,0.0803602609222906,76.71932226274691,221.45398,155.13789844597514,231408.74417438192,162111.52862119905,450.05743,296.820060327605,469711.8330581621,309587.1883713192,440.44435,214.00436715412195,456651.48696942464,220894.46834688785,2461.32036,1151.5228746206894,2540931.5973165585,1172326.5859481792,1019.05738,458.45578824470624,1050507.628163598,464750.074549244,1603.26482,686.5531905110662,1643169.637818972,689011.1588680631,0.38266,100000,0,1006609,10518.579280653725,0,0.0,0,0.0,38653,403.3313130890928,0,0.0,39958,414.0211916654476,1244391,0,44602,0,0,8819,0,0,70,0.7314677422725658,0,0.0,0,0.0,0,0.0,0.05404,0.1412219725082318,0.3036639526276832,0.01641,0.3483026874115983,0.6516973125884017,23.72357907551097,4.196251752285915,0.3057562339780937,0.2726637147518061,0.2055464926590538,0.2160335586110463,11.274902246002345,5.989919772814849,17.606504480981748,11777.556064064083,49.07007861085895,14.212058619862358,15.012730361397628,9.735246984841131,10.110042644757836,0.576089489629457,0.7965811965811965,0.7103658536585366,0.5668934240362812,0.116504854368932,0.736053288925895,0.9128540305010894,0.838150289017341,0.7715736040609137,0.1155778894472361,0.513915857605178,0.7215189873417721,0.6645962732919255,0.5080291970802919,0.1167582417582417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0045425969864736,0.0067802115263595,0.0089509779019558,0.0112811018656033,0.0136643180059463,0.0160282227229625,0.0184687949851453,0.0208243881494203,0.0228459129153104,0.0247283165880664,0.02681807447868,0.0286422444823827,0.0306853999711584,0.0325632744869427,0.0344332113543798,0.0364519671010379,0.038396860986547,0.0403544535507758,0.0422438322754135,0.0564468956296482,0.070694490957803,0.083993245298455,0.0970570608459767,0.1090297689323663,0.1245399551588476,0.1361866465788887,0.1471170634075714,0.1576181014037561,0.1674317830787712,0.1801869722557298,0.1917855636202364,0.202738535101065,0.2129889718339108,0.2218044286122655,0.2314836338679861,0.2403006546152044,0.2485453687686743,0.2565020389669234,0.2642486454356325,0.2711613945970907,0.2772966032450099,0.2829188218899832,0.2869922977563029,0.2923867464915045,0.2964005259729886,0.301703496782561,0.3054935861684328,0.3086567857281065,0.3124884950166987,0.3095404179969415,0.3071893633061476,0.3046788307839254,0.3027093241101023,0.300749540795165,0.2973616709417369,0.2941399343268502,0.2948107418135401,0.2952223660014983,0.2968488814596152,0.29827377064477,0.2985455974842767,0.2989658544705466,0.2989757006030507,0.30054931932171,0.3021739130434782,0.3049713463004262,0.3082375718211341,0.311451978385916,0.3157457908465734,0.3166075811289883,0.3196235990695707,0.3210968875502008,0.3229324447137231,0.3224746526473901,0.3249376262326244,0.3298293723339427,0.3360307505563423,0.3433982981059566,0.3478428351309707,0.0,1.9807779166610069,52.54957100027302,167.34794938497942,221.76520287032545,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95831,46796,443.79167492773735,5326,54.56480679529589,4205,43.37844747524287,1645,16.82127912679613,77.38566316619061,79.70631173153853,63.36611244363343,65.08422387578123,77.17109618217941,79.49337101410954,63.28600386208145,65.00681534448002,0.2145669840111992,212.94071742899237,0.0801085815519755,77.4085313012165,220.57794,154.54451317915846,230173.43030960756,161267.3072170368,452.83439,299.02786716769606,472034.2895305277,311536.6188057058,437.39114,212.95807971722388,453738.0701443166,220104.73846219893,2393.8376,1123.3555610122753,2471606.8078179294,1145854.140113612,968.03853,434.3164588905182,999352.5685842786,442478.15535845206,1593.0749,678.7699030296203,1631238.3049326418,682704.5735949605,0.37913,100000,0,1002627,10462.428650436706,0,0.0,0,0.0,38889,405.26551950830105,0,0.0,39668,411.2134904154188,1247392,0,44771,0,0,8746,0,0,76,0.7930627876156985,0,0.0,0,0.0,0,0.0,0.05326,0.1404795188985308,0.3088621855050695,0.01645,0.3545881502890173,0.6454118497109826,23.591866276826693,4.167365201837415,0.3110582639714625,0.2665873959571938,0.2149821640903686,0.207372175980975,11.577845457794492,6.357561902939263,17.688602146858127,11736.603364634908,48.25154180546581,13.744098346076694,14.922334829707657,10.072940738001147,9.512167891680312,0.5824019024970274,0.8117752007136485,0.7025993883792049,0.584070796460177,0.1055045871559633,0.7538337368845843,0.9323144104803494,0.8699186991869918,0.7112068965517241,0.1166666666666666,0.5107889413351315,0.7285067873303167,0.6368477103301384,0.5401785714285714,0.1026011560693641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219531463644,0.0045619050515495,0.0066781013082177,0.0090220063804279,0.0111680703039179,0.0132980348233377,0.0155439358264787,0.0175936320032656,0.0197763787253178,0.0220125464351136,0.0242677652749595,0.0263373978733013,0.0283353374649276,0.0305410301807551,0.0327916185447945,0.0350465841717107,0.0373524268730534,0.0395621935925208,0.0417929974664617,0.0435574331706606,0.0586621606116552,0.0724925521350546,0.0861727437560919,0.0983988905698436,0.1106043689831686,0.1257445190723609,0.1374912611486558,0.1481300415546321,0.1588809965657729,0.1684944417075417,0.1804798313815315,0.191680349118562,0.2022972034045509,0.2120401702870865,0.2208469699299317,0.2302436651483659,0.2389810307762567,0.2478125596702272,0.2560715903942003,0.262668175531246,0.2691543667567505,0.2746335884988797,0.2804683719118497,0.2853831078820324,0.29075652637187,0.2949740970807041,0.2985173269487362,0.3020635282784495,0.3056279513844089,0.3089165691136044,0.306273261047738,0.3046541329634563,0.302125804909597,0.3002842671822917,0.2977495586642733,0.2940996543602606,0.2921214997626958,0.2928514003511132,0.2936298981057239,0.2943634804972139,0.2953979750341549,0.2963226431126128,0.2971860562788744,0.2988485147184013,0.301138281965948,0.3015063549348815,0.3022531913070794,0.3056805664830841,0.3092130720793611,0.3120353067472466,0.3167175468173326,0.321125715497138,0.3254382107181001,0.3259455370650529,0.3292671483531951,0.3338852749852158,0.3394495412844037,0.3421900161030596,0.347469220246238,0.3558165971959075,0.0,1.854623045604282,54.41432382441189,157.24882376483487,216.5777470281138,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95759,47145,448.74111049614135,5311,54.08368926158376,4198,43.1708768888564,1609,16.39532576572437,77.37657405990127,79.72214836781191,63.3458979718325,65.07947290121345,77.16634421315077,79.51653071974586,63.26502487593911,65.00306010404728,0.2102298467505079,205.6176480660525,0.0808730958933949,76.41279716617078,222.4453,155.7344293924699,232297.01646842595,162631.63712284996,451.07046,298.5147147658796,470395.8583527397,311083.6837956533,441.27955,215.3735256888436,456776.42832527496,221739.48293741088,2396.975,1139.8025249048912,2465744.9221483096,1152944.5847438804,982.9411,454.7167946659916,1007175.440428576,455556.9969047206,1569.60206,685.9326043199613,1600761.3070311928,683060.3110371073,0.38197,100000,0,1011115,10558.95529401936,0,0.0,0,0.0,38632,402.76109817353984,0,0.0,40056,414.2587119748536,1234788,0,44382,0,0,8884,0,0,79,0.8249877296128824,0,0.0,0,0.0,0,0.0,0.05311,0.1390423331675262,0.3029561287893052,0.01609,0.3552941176470588,0.6447058823529411,23.71857897021305,4.083133801390324,0.3134826107670319,0.266793711291091,0.2105764649833253,0.2091472129585516,11.08657890121996,5.8639152500478495,17.445642397008157,11747.934208965196,48.22210322240832,13.676247427835316,14.958498603145353,9.872279458418085,9.715077733009554,0.5828966174368747,0.7955357142857142,0.709726443768997,0.5882352941176471,0.1161731207289293,0.7300955414012739,0.909297052154195,0.860655737704918,0.7292576419213974,0.1545454545454545,0.5200543847722637,0.7216494845360825,0.651578947368421,0.5389312977099237,0.1033434650455927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220297781829,0.0047440926922726,0.0070212463726942,0.0094477630135316,0.0115633390285574,0.0139815276830174,0.0160699901092065,0.0179380895985625,0.020159682679234,0.0224585683430408,0.0244239914726139,0.0263498254978443,0.0283843243687803,0.030669412976313,0.0327758921294529,0.0348848026295389,0.0369146975376395,0.0390265156230549,0.040940232251089,0.0427211564498323,0.0582206078824315,0.0720874294080736,0.0857942573198729,0.0986001345216075,0.1110830066186079,0.1269529185429483,0.1387068727866488,0.1495386776490119,0.1599982910729925,0.170284415083008,0.1818074105988797,0.1932373945033542,0.2042012967233802,0.2138191367142622,0.2229035702883313,0.2316875803662484,0.2403993255240031,0.2482189684084949,0.2557909909091941,0.2628770354762613,0.2693882744898431,0.2750339086104485,0.2807799640525967,0.2849376092735851,0.2897098650732927,0.2938994787880281,0.2983300417489563,0.3020095013083352,0.3052973196622748,0.3090741350906095,0.305940367897021,0.3035508320975449,0.3016553313473104,0.2994201978827127,0.2977458986024868,0.294978759817854,0.2913935526669088,0.2912194004450844,0.2912677591904875,0.2920163584637268,0.2919679390168712,0.294033140473098,0.2932685287552932,0.2954358689616879,0.2976770863206194,0.3003990464344942,0.3016129032258065,0.3058794189163913,0.3090953477017507,0.3139181563474211,0.318445370538141,0.3234082990180551,0.3281727948061677,0.3297599275252906,0.3346050060481995,0.3388555986370579,0.3408506129862267,0.346505162827641,0.3484602917341977,0.3458364591147786,0.0,2.607691922346677,54.44619106978475,156.48440276972698,213.4870386933134,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95764,46628,443.9559751054677,5306,54.49855895743704,4241,43.84737479637442,1629,16.71818219790318,77.3313489084019,79.69828285082473,63.31030609897547,65.06351705558968,77.12780468962579,79.4943419167747,63.23453044476673,64.98941856508073,0.2035442187761162,203.94093405002425,0.0757756542087335,74.098490508959,221.94282,155.31114909685408,231760.18127897748,162181.14228400448,447.46839,295.7352610417,466816.6116703563,308371.7587420116,433.63993,210.5346684993036,449945.25082494464,217647.9272137661,2420.59452,1130.2903918088125,2504229.606115033,1156850.4989440837,1006.68474,445.916314734112,1038753.6026064074,453180.2918989521,1583.8223,666.0725880541581,1627288.271166618,673293.377547314,0.38056,100000,0,1008831,10534.553694498976,0,0.0,0,0.0,38427,400.80823691575125,0,0.0,39497,409.5693580050959,1238573,0,44494,0,0,8651,0,0,67,0.6996366066580344,0,0.0,0,0.0,0,0.0,0.05306,0.1394261088921589,0.3070109310214851,0.01629,0.3485066570708888,0.6514933429291112,23.87559156390258,4.104344873594565,0.3074746522046687,0.2676255600094317,0.2152794152322565,0.209620372553643,11.182559782575488,6.028721764762486,17.37163447388097,11732.829880008903,48.434366539364326,13.923484666452698,14.751033911612922,10.094350878405391,9.66549708289332,0.574628625324216,0.798237885462555,0.6878834355828221,0.56078860898138,0.1372328458942632,0.7510204081632653,0.9237113402061856,0.8898809523809523,0.7177033492822966,0.1179487179487179,0.5029840848806366,0.7046153846153846,0.6177685950413223,0.5142045454545454,0.1426512968299711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107417501697,0.0042994615532818,0.0064552144125856,0.008605974395448,0.0106716311623837,0.0130154494811133,0.0150095339091066,0.0172968336787935,0.0192699117307121,0.0215293852551365,0.023629799803085,0.025900241434222,0.0279092742765405,0.0301762341543852,0.0322041246051898,0.0341853828018364,0.0362730783966533,0.0382484175573311,0.0402685959003783,0.0422542545878726,0.0572958528616611,0.0709748977178792,0.0847240724617918,0.0976435579015993,0.1098998418555614,0.1251877234173065,0.1371030209140201,0.1477793162211098,0.1577951847141926,0.1675518503020354,0.1797088016898554,0.1913280776228016,0.2022577098505383,0.212048904893773,0.2205354587287258,0.2305415770688776,0.2396918439122425,0.2479431857829399,0.2557983841684822,0.2631765892112379,0.2698094863307021,0.2759702628343968,0.2812503703001505,0.2863916832729106,0.2905344588512905,0.294892347152687,0.29966081329712,0.3031444459997709,0.3066784172941588,0.309662352056367,0.3081004646151774,0.3054070031207467,0.3030021665119158,0.3004097414589104,0.2985362095531587,0.2954181107531642,0.2931668007128101,0.294139775273548,0.2949923352069494,0.2961652651602695,0.2986942734564446,0.299785487965678,0.3007465487759102,0.2999977736714384,0.3006417009864955,0.3023642073028313,0.3043502888863713,0.3067284801403332,0.3108406691684495,0.3142834464420367,0.3187641980917765,0.3205913410770855,0.3246996996996997,0.3288053731793827,0.3338878107383791,0.3384935304990757,0.340352958623758,0.3434087363494539,0.3499334221038615,0.3486988847583643,0.0,1.7414561585666744,54.0313793676241,156.26718743613156,222.8269097023349,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95485,46586,443.79745509765934,5233,53.54767764570352,4110,42.42551186050165,1549,15.845420746714144,77.22623088476638,79.71436870133665,63.24095407219974,65.07655233973281,77.02650732428172,79.5171989550966,63.16518590975037,65.00432756339553,0.1997235604846565,197.1697462400499,0.0757681624493713,72.2247763372792,219.66758,153.8874858652202,230054.54259831388,161164.04237861463,445.07027,294.5459216114999,465507.5875792009,307865.70834319526,432.80722,210.82362171633665,449504.3619416662,217827.11225655724,2344.7568,1104.9062178577356,2420896.1407550923,1122419.3306359483,943.78583,429.806320629788,969869.4768811855,431586.4906841786,1506.81984,642.271416545476,1542387.6001466198,641574.4019917595,0.37932,100000,0,998489,10457.02466355972,0,0.0,0,0.0,38367,401.1624862543855,0,0.0,39300,407.78132690998586,1243093,0,44618,0,0,8856,0,0,70,0.7330994397025711,0,0.0,0,0.0,0,0.0,0.05233,0.1379573974480649,0.2960061150391744,0.01549,0.346435100548446,0.6535648994515539,23.65300433533822,4.046280267376037,0.3177615571776155,0.2800486618004866,0.1992700729927007,0.2029197080291971,11.17396773155924,6.005942997553804,16.539791763269758,11751.148305184886,47.38666416167188,14.252264021208829,14.895215230000252,9.150978821550286,9.088206088912516,0.5800486618004866,0.8166811468288445,0.6753445635528331,0.5848595848595849,0.0995203836930455,0.7593032462391133,0.9270216962524654,0.8284960422163589,0.7107843137254902,0.1734104046242774,0.5005268703898841,0.7298136645962733,0.6127292340884574,0.5430894308943089,0.0801815431164901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293154988093,0.0047876494872549,0.0069851970678416,0.0093340111845449,0.0114941358527447,0.0137389797686388,0.0160103674527291,0.0179429015184027,0.0201438407316848,0.0222433966517079,0.0245319428477582,0.0266604976352046,0.0287800156513859,0.0308387309707496,0.032949320659193,0.0347669434493611,0.036752730780801,0.0388249602394985,0.0411314267854352,0.0431772617158132,0.0578728660100275,0.0715739555574207,0.0842342152862491,0.0972365675259796,0.10969023789645,0.1255061587059297,0.1367430485405922,0.147630023262266,0.1572418668923334,0.1668852529509148,0.1783716661267681,0.1898966231681256,0.2008745052284944,0.2112706940028505,0.2199982345412014,0.2296562989632296,0.2393001767456428,0.2467055202967004,0.2548109731131431,0.2622350740702491,0.2689332884956573,0.2746606016553729,0.2806357867267659,0.2860146329156505,0.2910488675544292,0.2955124242798863,0.3000339063932388,0.3039497375780561,0.3074525692469516,0.3115970789014129,0.3096903096903097,0.30734899097734,0.3056362252234471,0.3032255268745756,0.3009515313707999,0.297622514830541,0.2949858118926459,0.295568122041031,0.2962956625887586,0.2965697227535169,0.2977491238263021,0.298889415856454,0.2993805198610355,0.3000870788398419,0.3000646846026688,0.3005243212376057,0.3010606318416425,0.3065101721439749,0.3092466352036357,0.3141377811153709,0.318249897880452,0.3205527134644797,0.3245870987846681,0.3291025159594442,0.3356366316565322,0.3423736671302735,0.3434282253179891,0.3476941747572815,0.352089593007375,0.3567096285064443,0.0,2.4412852211683806,55.14249101102264,149.9831370293672,208.3938676600305,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95699,46738,444.8322344016134,5371,54.70276596411666,4235,43.56367360160503,1611,16.468301654144767,77.36399481233721,79.74998141240597,63.33329461681414,65.09782215917363,77.15833652792924,79.54663742769942,63.25575701839794,65.0237684647299,0.2056582844079741,203.34398470654943,0.0775375984161996,74.05369444373378,220.55462,154.43489079874234,230467.0059248268,161375.65784255043,451.08507,298.3449277025911,470662.7341978495,311057.9919357476,437.76264,213.13658885999328,452643.4027523799,219100.1791986347,2413.98676,1139.4043428718894,2485461.9170524245,1153595.9444423548,945.83572,433.1256886174814,972972.2672128236,437229.7455746456,1562.30498,665.8763224480439,1598585.96223576,666650.6909896989,0.37983,100000,0,1002521,10475.772996583037,0,0.0,0,0.0,38746,404.163052905464,0,0.0,39744,410.59990177535815,1245491,0,44749,0,0,8737,0,0,89,0.9299992685399012,0,0.0,0,0.0,0,0.0,0.05371,0.141405365558276,0.2999441444796127,0.01611,0.3323766816143498,0.6676233183856503,23.41751959528724,4.10483776309273,0.3173553719008264,0.2703659976387249,0.2148760330578512,0.1974025974025974,11.276843772786904,6.002209434335477,17.176116776758274,11760.387958934514,48.48771131428492,13.956960412553842,15.3016969018363,10.055524091266232,9.173529908628543,0.5782762691853601,0.7921397379912664,0.7001488095238095,0.5637362637362637,0.1052631578947368,0.7446300715990454,0.9034334763948498,0.8530183727034121,0.7420814479638009,0.1375661375661375,0.5080591000671592,0.7157584683357879,0.6396677050882659,0.5065312046444121,0.0958268933539412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0046345594126177,0.0067002355234305,0.0089131451104742,0.0110197602718818,0.0131528007009393,0.0155249092170223,0.0175967155521058,0.0197907397747844,0.0218310652372029,0.0240888487806879,0.0264355184915116,0.028430656558903,0.0306130860381246,0.032632926023778,0.0347715499860417,0.0366909753874202,0.0385198098914554,0.0405821205821205,0.0426243514138656,0.0574290100571261,0.0709867174661656,0.0844409941146232,0.097470950102529,0.1102104919207783,0.1255418578587891,0.1374900588515985,0.1488266207101976,0.1590673741072477,0.1690442760527754,0.1809573002754821,0.1929908058409951,0.2035579139663346,0.2133648262966243,0.2220731076814766,0.2313730265925647,0.2405692997523813,0.2483666010683159,0.2558997050147493,0.2632217592380603,0.2697373746718629,0.2759656752712308,0.281036625051772,0.2866693824734609,0.2912644934134644,0.2948018857473443,0.2997087172306884,0.3036079397533749,0.3069807103450949,0.3109833131547086,0.308631200150388,0.3067047075606277,0.304236740882163,0.3017038989471258,0.2998860424159008,0.2967138439037767,0.2936927580020772,0.2943947321239385,0.2955108411658919,0.2967179341455617,0.2966438445609387,0.2972462627852085,0.297863470557582,0.2981474463294469,0.3005813536209,0.3013627379590138,0.302171565004832,0.3057988239709746,0.3086575093495509,0.310701048813185,0.3139681966028189,0.3192362316553574,0.3220115519839276,0.323171658811008,0.3262771662432966,0.330449211805144,0.333384497313891,0.3375407166123778,0.3430858404637041,0.348900038595137,0.0,2.686424336483717,54.421150881625024,152.2239183678616,223.0260768380332,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95671,47159,448.2967670453952,5352,54.75013326922473,4242,43.7645681554494,1650,16.870315978718732,77.31725194233033,79.72556713743701,63.30264576078415,65.08485796889364,77.11004678882051,79.522558960226,63.22402060786597,65.01075324869058,0.2072051535098182,203.00817721101797,0.0786251529181853,74.10472020306713,222.33244,155.67370002910477,232392.4909324665,162717.54161767388,451.68485,298.82594159770804,471532.26160487504,311757.5002037692,441.16279,215.20596962347096,458046.3881426973,222519.5390618564,2439.82956,1145.1346895259842,2516009.7417190163,1162804.4769323862,999.16105,452.9003966469757,1027118.5103113796,456179.35512188025,1605.78686,683.408353666341,1642731.318790438,682208.9057807516,0.38189,100000,0,1010602,10563.29504238484,0,0.0,0,0.0,38818,405.1488956946201,0,0.0,40037,415.3923341451432,1233587,0,44260,0,0,8880,0,0,73,0.7630316396818262,0,0.0,1,0.0104524882148195,0,0.0,0.05352,0.1401450679515043,0.3082959641255605,0.0165,0.3454610951008645,0.6545389048991355,23.73316974090431,4.208719073755184,0.305987741631306,0.2703913248467703,0.2069778406412069,0.2166430928807166,11.190228747800893,5.94826659751535,17.5675206667264,11787.405873517837,48.27690968165231,14.027296726229208,14.572008773764288,9.712425155084512,9.9651790265743,0.5742574257425742,0.8081952920662598,0.6833590138674884,0.5820045558086561,0.1207834602829162,0.7657873701039168,0.9171597633136096,0.8705234159779615,0.7192118226600985,0.1741573033707865,0.4941491140086927,0.721875,0.6106951871657754,0.5407407407407407,0.1079622132253711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022794735935647,0.0047558687826395,0.007012594253935,0.0094910018392626,0.0117922368621864,0.0137822145258225,0.0159447493522126,0.0183270676691729,0.0204824947310265,0.02257010255412,0.0244485482712629,0.0268603958157791,0.0290902353159162,0.0311978060498587,0.0332145623547637,0.0353226006704465,0.0374839324957498,0.0394520946268718,0.0414707228765242,0.0436155906972865,0.0583619779967193,0.072478034579175,0.0859692404598183,0.0988941614671562,0.1109036239911378,0.1264287528575057,0.1374940296131189,0.1488684168486075,0.1595057928263007,0.1689964061578072,0.1807820747603145,0.1928335588633288,0.2038832838127578,0.2134639592797329,0.2227705322523792,0.2335864324114615,0.2418841857402716,0.2496287964004499,0.2576799165078501,0.2646264111195072,0.270212421325435,0.2762016138463337,0.2821329230040835,0.2869126511438398,0.2919602507410467,0.296198599743615,0.3000838432756441,0.3030815387353487,0.3073301341335644,0.3107531413819446,0.3077253853286211,0.3043937937663051,0.3024644523127072,0.3006040336182911,0.2982729689193805,0.2956122214564668,0.2927087615012489,0.2930446753417024,0.2933004171277773,0.293949203187251,0.2943318703893921,0.2962962962962963,0.2965029995192408,0.2974250362278453,0.2991590581451225,0.299815185985371,0.3009256630132318,0.3043967727812871,0.3105099437279368,0.3134829684659764,0.3188649262202043,0.3215835715041812,0.3244550537094038,0.327741935483871,0.3274038011422151,0.3284723038927437,0.3276335877862595,0.3232567513099557,0.3202789699570815,0.3284807764091079,0.0,2.240069056805026,54.42966197604269,147.45488565142998,228.83330530566676,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95849,47558,451.3766445137665,5337,54.33546515873927,4211,43.27640350968711,1615,16.348631701947856,77.4717338221379,79.75661380501508,63.40399372213196,65.09014107245261,77.26441535259691,79.55879563393205,63.32416605365461,65.01737697967873,0.2073184695409935,197.8181710830285,0.0798276684773497,72.7640927738804,221.34794,155.148237125858,230934.01078780164,161867.35086005906,453.44915,300.2364921307449,472462.4774384709,312614.5313260909,454.13128,221.34609232982856,470640.84132333146,228434.47898082508,2364.18556,1118.620417841357,2430266.732047283,1130759.0249677696,968.68656,439.1415237594306,995390.9899946792,442917.8666825111,1564.97656,669.3410006148092,1586392.4923577711,657465.2057964521,0.385,100000,0,1006127,10497.00049035462,0,0.0,0,0.0,38832,404.4695301985415,0,0.0,41073,425.314818099302,1239600,0,44434,0,0,8942,0,0,97,1.0120084716585462,0,0.0,1,0.0104330770274076,0,0.0,0.05337,0.1386233766233766,0.302604459434139,0.01615,0.3489836301493074,0.6510163698506926,23.46613266177317,4.111938069671279,0.3084777962479221,0.2830681548325813,0.2061268107337924,0.2023272381857041,11.50703835578834,6.2715859383295856,17.129459868500504,11882.763232897796,48.35860268675528,14.693298688422612,14.850999041548384,9.658616088373671,9.155688868410609,0.591308477796248,0.8095637583892618,0.7274826789838337,0.565668202764977,0.1044600938967136,0.757976653696498,0.92,0.8723958333333334,0.7129629629629629,0.1351351351351351,0.5181134654818865,0.7297687861271677,0.6666666666666666,0.5168711656441718,0.095952023988006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023281708674967,0.0045891541976071,0.0068750126751708,0.0090946000812017,0.0115437769287049,0.014091385432458,0.0161865373645179,0.0185844408857699,0.0208831158221514,0.0231939785650004,0.0253382357459621,0.027413697618608,0.0297498587498073,0.0317930672593141,0.033851831235633,0.0359355638166047,0.037993276441686,0.0400460156079967,0.0419491833407748,0.0438126359388496,0.0587922458471067,0.0729720970591617,0.0860556516271026,0.0994073389096717,0.1118372509750184,0.1279275088023515,0.1397876830729746,0.1509144881738963,0.1612159261987892,0.1707290929748965,0.1831116277067458,0.1950125389138706,0.2054888246921088,0.2157301653163285,0.2244472027856805,0.2351627454448965,0.2436334469621014,0.2519005109202178,0.2599447263501268,0.2659637727563809,0.2721141854127211,0.2785030156674716,0.2843800550222569,0.2888336163394159,0.2932979187891136,0.2977226029504041,0.3016673952413664,0.3055227650635289,0.3100143375657138,0.3116958294961189,0.3094908744174803,0.3078957103125128,0.3059019935186094,0.3038076613367076,0.3014685221609311,0.2985727124556352,0.2947398243460195,0.2943048302872063,0.2952115926290427,0.2960673162090345,0.2963417582621956,0.2976554536187564,0.2983560903630733,0.299159701128528,0.2993522884221555,0.3007254795652286,0.3026275028865921,0.3066443223784253,0.3111026904130352,0.3138919171468619,0.3161489019817889,0.3184316599486991,0.3221288515406162,0.3261066626378607,0.3290818718934634,0.3343565525383707,0.3399578440228846,0.3417922283901665,0.3420134228187919,0.3460246360582307,0.0,2.553908697051273,55.74626324721997,158.09790361908745,207.61927139641764,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95752,46921,445.71392764642,5385,55.038014871752026,4246,43.88420085220152,1651,16.981368535383073,77.34438518034166,79.69865756666731,63.33412346583962,65.07299003931026,77.13227824720563,79.4851949250109,63.25494607684007,64.99514145828111,0.2121069331360274,213.46264165640605,0.0791773889995468,77.84858102914427,220.99946,154.90918662900535,230804.01453755537,161781.67205803047,453.13365,299.4245516223845,472791.7119224664,312263.3695613506,440.60964,214.6110914566145,457215.4210878102,221898.81671256383,2441.84452,1147.4884350354305,2526092.864900994,1174313.178873998,1011.39932,457.4094726183153,1047543.7171025148,468976.3269887994,1614.7268,688.9108613786549,1662460.6901161333,699089.8947609215,0.38112,100000,0,1004543,10491.09156988888,0,0.0,0,0.0,38863,405.4118974016209,0,0.0,39955,414.3203275127413,1240165,0,44545,0,0,8820,0,0,99,1.0339209624864234,0,0.0,0,0.0,0,0.0,0.05385,0.141294080604534,0.3065923862581244,0.01651,0.3501599715606114,0.6498400284393886,23.75589822990204,4.170848973003575,0.3184173339613754,0.2621290626471974,0.1999528968440885,0.2195007065473386,11.444534820002731,6.23438752044835,17.72789687989283,11747.284688773085,48.637534019700375,13.612086938297422,15.235362642468392,9.50402365758168,10.286060781352884,0.5727743758831841,0.8032345013477089,0.7159763313609467,0.5547703180212014,0.1062231759656652,0.7361222847948512,0.9327548806941433,0.8598382749326146,0.7,0.1232227488151658,0.5051615051615052,0.7116564417177914,0.6615698267074414,0.5100154083204931,0.1012482662968099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046333377267243,0.0068182509968648,0.008896742938972,0.0112755963153506,0.0135188785845897,0.0158068526935855,0.018266238073371,0.0203737572927629,0.0228077355980763,0.0250327895729158,0.0272911085794049,0.0294060189802486,0.0313796974284507,0.033413454099054,0.0355386078042328,0.0373352930825682,0.0394491226614676,0.0416233631261692,0.0434669388775467,0.0586626298480973,0.0724272169781703,0.0854275046148682,0.0979726177206671,0.1103929652161994,0.1257361570750378,0.1377105162686124,0.1489164778348705,0.1590542604201151,0.1679673262869026,0.1805528644319576,0.1918725392636179,0.2026157291644017,0.2124183006535947,0.2218275786232681,0.2313669924836999,0.2405101425989154,0.2496120369745631,0.2571182249245638,0.2639532886828095,0.2704106419895893,0.2760347207599261,0.281785803031558,0.286683935338418,0.2910248311385393,0.2947038654135523,0.2982937462417318,0.3017771832600802,0.3052413346290897,0.3082091423894821,0.3071270926414383,0.3043819004276031,0.3023917113616847,0.2998397273921769,0.2974040632054176,0.2946339670041819,0.2922046034185055,0.2930177631255228,0.2937320770176157,0.2942120752697761,0.2943212001047472,0.2949536763256455,0.2944704505558806,0.2952825344377218,0.2959928890597222,0.2968404628786893,0.2968781069795188,0.3008188749097982,0.3050159263537401,0.3076343745045188,0.3088402050165555,0.3126322471434617,0.3177891837756635,0.3253383458646616,0.3283902257041596,0.332316715542522,0.3340438489646772,0.3409883124871847,0.3413554633471646,0.34375,0.0,1.81172665754835,54.56086751735468,156.18538256995512,223.1478521848991,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95667,46541,443.1517660217212,5229,53.61305361305361,4117,42.40751774384061,1629,16.59924529879687,77.28108161739658,79.66921458147986,63.29287913429015,65.05600200410436,77.07075848300799,79.46225211740511,63.2140416907348,64.98109187248586,0.210323134388588,206.9624640747492,0.0788374435553507,74.9101316184948,221.07558,154.82704871523575,231087.96136598827,161838.9140781833,444.28304,294.08763403611584,463749.9033104414,306753.7871226144,429.24983,209.08200634179516,445259.96425099566,215873.3870700209,2363.38376,1112.6457347987478,2436370.7025411064,1129120.9009166572,987.27256,449.6104890597793,1015431.799889199,453528.2674508666,1582.50316,673.7581272027321,1614773.7255270889,670562.5407680955,0.37991,100000,0,1004889,10503.998243908558,0,0.0,0,0.0,38250,399.1344977892063,0,0.0,38952,403.6606144229463,1241382,0,44582,0,0,8751,0,0,72,0.7526106180814701,0,0.0,2,0.020905850502263,0,0.0,0.05229,0.1376378615987997,0.3115318416523235,0.01629,0.3482796486090776,0.6517203513909224,23.44401126948361,4.092053085664472,0.3116346854505708,0.2620840417779936,0.2188486762205489,0.2074325965508865,11.180444829688438,6.071160356951825,17.53812949278228,11702.912051980387,47.43690440873517,13.135871688181613,14.700477089870716,10.156193786809744,9.444361843873091,0.5746903084770464,0.8007414272474513,0.6819953234606392,0.564927857935627,0.1381733021077283,0.7459415584415584,0.903448275862069,0.8502673796791443,0.7288135593220338,0.1925133689839572,0.5015597920277296,0.7313664596273292,0.6127612761276128,0.5067669172932331,0.1229385307346326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0040450531736939,0.0063630920364939,0.0085440562424439,0.0106685922339971,0.0128609832593377,0.0151722168974447,0.017366357659166,0.0196577526987242,0.0217916436365125,0.0238798318466113,0.0260896349915293,0.0283014017009636,0.0303536102868447,0.0324791264590837,0.0342749022932649,0.0363690981789554,0.0384435749203416,0.0403915368131982,0.0425157127818138,0.0570025596823904,0.0710441447478639,0.0843593538432471,0.0969971802533563,0.1090807423272105,0.1250449611747032,0.1370265794836956,0.1482049479749086,0.1590138872555832,0.1689410451046285,0.1812083432195164,0.1924143909839618,0.2031864266501138,0.2126119615443575,0.2218427402029371,0.2306685740266365,0.2394336291097651,0.2478993489671329,0.2556186796954891,0.2630921120526551,0.2689874884151992,0.2754568884723524,0.2805026972553204,0.2853008981316939,0.2900585079855494,0.294266400217107,0.2987211443315756,0.3028920881640973,0.3068943608096368,0.3095489874689367,0.3068954354159922,0.3046583123095799,0.3015345919059461,0.2985974266836675,0.2966626936829559,0.294239472271228,0.2913392064900494,0.2913892040316349,0.2917850419305151,0.2928062309080191,0.2929455909943715,0.2943789035392088,0.2950095686736346,0.2960561737257717,0.2967125732616194,0.2984802273141993,0.2999543925659882,0.3035096546952638,0.3081202113144176,0.3114896644401407,0.3148785791953606,0.3196729957805907,0.3199724431640258,0.3218822821919868,0.3231639465875371,0.3216888374783112,0.3269578313253012,0.3299683293745051,0.3213141025641026,0.3273832130649449,0.0,2.2703669951577536,53.779075148472,156.37907154840877,206.99956872848531,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95723,46895,445.7653855395255,5327,54.33385915610668,4231,43.58409159763066,1565,15.983619401815655,77.3612597271838,79.72600449243025,63.34108899169471,65.08885135740903,77.17068643918597,79.53741023478219,63.26941998473884,65.01990192716933,0.1905732879978359,188.59425764806304,0.0716690069558723,68.94943023969802,222.21012,155.6573133926844,232138.462020622,162612.02260134392,453.79435,299.53140520018025,473431.5472770389,312278.14539087564,442.85019,215.6287047736532,457944.6632470776,221816.7371697293,2394.80404,1122.8688080342415,2469482.3605612027,1140855.0994622456,966.84289,431.2050950824181,995903.4192409348,436485.3622474861,1518.53646,641.3038430507078,1553330.9027088578,644278.276361365,0.38099,100000,0,1010046,10551.748273664636,0,0.0,0,0.0,38910,405.837677465186,0,0.0,40213,415.4696363465416,1237503,0,44380,0,0,8830,0,0,78,0.8148511851906021,0,0.0,0,0.0,0,0.0,0.05327,0.1398199427806504,0.2937863713159376,0.01565,0.3476464247215235,0.6523535752784765,23.50410089719007,4.060380165733839,0.3176554006145119,0.2715670054360671,0.212242968565351,0.1985346253840699,11.507548063672418,6.375112502907658,16.56907930795596,11754.567370561335,48.32496648521006,14.01455152058724,15.268560055660735,9.915172203193045,9.12668270576905,0.583077286693453,0.8120104438642297,0.6941964285714286,0.5723830734966593,0.1035714285714285,0.7647540983606558,0.941304347826087,0.8657894736842106,0.7614213197969543,0.1147540983606557,0.5094652939222849,0.7256894049346879,0.6265560165975104,0.5192582025677603,0.1004566210045662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0046435234001135,0.0066672078910515,0.0089504322825126,0.0110546120207464,0.0135536954440846,0.0159178512430404,0.0179506815745137,0.020039465477931,0.0222358722358722,0.024422503152779,0.026426333898218,0.0287462717268332,0.0309151969671996,0.0327846860327124,0.0347675957323629,0.0366281779112514,0.039008343364742,0.0412403294235088,0.0433745233282627,0.0580330573334864,0.0721986142220175,0.085728371234371,0.0983523820538972,0.1113078487789968,0.1275765840045665,0.13955633787882,0.150526651771465,0.1603900542572734,0.1691892123654761,0.1810841362975722,0.1930365370887143,0.2032568049395599,0.212655737704918,0.2218069494674127,0.2306143223864742,0.2398363561372022,0.247376581354066,0.2551455254329495,0.2618232998821388,0.2680899759570926,0.2738466570871155,0.279970682460309,0.2852988691437803,0.2897298214567096,0.294828455174618,0.2987079458211097,0.3033446769605851,0.3069822760591056,0.3108074272234888,0.3085553808736781,0.306204209313174,0.302762089409649,0.3005233639470004,0.2987604163577592,0.296162721396152,0.2933806706114398,0.294067630322454,0.2940026518886207,0.2943874557769916,0.2956958152204332,0.2962612399432087,0.2965910515102143,0.2973249883065684,0.299079754601227,0.3004371129728886,0.3015940791346427,0.3053243285691848,0.3080585311209129,0.312265009696442,0.314411072914782,0.3184278282801744,0.3214641434262948,0.3257005122024706,0.3279814385150812,0.333918744877649,0.3340374170187085,0.337597441535079,0.3383043358188345,0.3370253164556962,0.0,2.31269225448468,52.980958247998416,157.7608868439229,221.1105617866015,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95649,46662,444.249286453596,5221,53.34086085583749,4087,42.112306453805054,1622,16.55009461677592,77.2430810454354,79.64623623410806,63.27207635196621,65.04956667602742,77.04059255434234,79.44791295984702,63.19642404942993,64.97792171783453,0.2024884910930637,198.32327426104257,0.0756523025362838,71.6449581928913,221.01948,154.76365020621617,231073.4874384468,161803.7305211933,448.96065,296.8436316176703,468785.4551537392,309748.74971789605,430.98405,209.50468544450865,446502.0439314577,215956.0719138688,2342.3342,1083.9093355308596,2415402.481991448,1099732.8310080178,954.00328,423.7683127915679,981070.2882413825,426728.120968234,1576.48578,663.3443528049345,1610173.19574695,660848.135381412,0.37808,100000,0,1004634,10503.340338111218,0,0.0,0,0.0,38548,402.3878974165961,0,0.0,39023,403.8934019174272,1239013,0,44441,0,0,8690,0,0,77,0.8050267122499973,0,0.0,0,0.0,0,0.0,0.05221,0.1380924672027084,0.3106684543190959,0.01622,0.348390636430139,0.651609363569861,23.96840498717144,4.191798381124872,0.3239540004893565,0.2539760215316858,0.2123807193540494,0.2096892586249082,11.113599145790795,5.953240821481544,17.27050368150134,11691.869463258736,46.483602086167394,12.675131289058651,14.893392343004662,9.576195520264037,9.338882933840036,0.5637386836310252,0.789980732177264,0.68202416918429,0.5610599078341014,0.1096849474912485,0.74,0.9044117647058824,0.848314606741573,0.7163461538461539,0.1741573033707865,0.494722505958461,0.7158730158730159,0.6208677685950413,0.5121212121212121,0.0927835051546391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021282633371169,0.0043515306432962,0.0066089357684537,0.0089616842276389,0.0112192690691973,0.0134222720097764,0.0156308947234259,0.0178281513248583,0.0198484523115624,0.0217607241969012,0.0238334529791816,0.0260333761232349,0.0285179509857358,0.0305868051263032,0.0327818089860966,0.0347116667183671,0.0365973668127246,0.0387341850979252,0.0404701232513391,0.0426066469288186,0.0575972580695723,0.0712467660336646,0.08523795025774,0.0977211725698647,0.109600320925617,0.1242218928647046,0.1360975661578013,0.1464285714285714,0.1562322779460072,0.1657018891024883,0.1788068751955632,0.1911699348530671,0.2021063408046352,0.2113931535951291,0.2204478829156472,0.2301190251694417,0.2392205962907895,0.2476645518982206,0.2547678039688132,0.2617617388114453,0.267785141585948,0.2741744799896993,0.2802258950558818,0.2851061278330735,0.2895399321390784,0.2952520790662093,0.2986869800541245,0.3023054277594402,0.3069428949484991,0.3100230018771647,0.3077534630517975,0.3037943325855686,0.3022786880622691,0.2997758009691184,0.2980357142857143,0.2946011009399389,0.292015474378488,0.291127997631501,0.2910156917712215,0.2921603316714022,0.2926041392780678,0.2934834311082924,0.2944741532976827,0.2961984507231451,0.2976179018286814,0.2989518258096557,0.3014954449091847,0.3052946738102742,0.3107223317375387,0.3137176620887895,0.3180109990834097,0.319876438005965,0.3214961523905639,0.3228190476190476,0.3263724841727298,0.3300970873786408,0.3321981424148607,0.3406033428454953,0.3413897280966767,0.3399846508058327,0.0,2.3930708788339747,49.95736812998607,147.01015698444758,223.0447409095101,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95823,46791,445.21670162695807,5223,53.29618150130971,4165,42.93332498460704,1587,16.21740083278545,77.44904619750217,79.77451535544182,63.38601454967061,65.10647175229354,77.2519711130938,79.5792992469373,63.31227515018301,65.0355266755265,0.1970750844083681,195.21610850452475,0.0737393994876001,70.94507676704609,221.97824,155.41619733061944,231653.9870386024,162190.45942061863,451.06376,298.1382978930871,470191.2901912902,310599.9723376299,436.68335,212.2859056896214,452214.7918558175,218925.17120346025,2392.45772,1116.7573020579728,2467480.7509679305,1136196.593780171,962.79068,432.2980563312492,991891.2056604364,438284.0554255866,1546.75116,651.0416174229623,1582062.594575415,652992.3273552136,0.37994,100000,0,1008992,10529.72668357284,0,0.0,0,0.0,38721,403.5252496790959,0,0.0,39627,410.0998716383332,1243964,0,44613,0,0,8813,0,0,70,0.7200776431545662,0,0.0,0,0.0,0,0.0,0.05223,0.1374690740643259,0.3038483630097645,0.01587,0.3489612061040632,0.6510387938959368,23.493606163295976,4.171238141755019,0.3164465786314526,0.2679471788715486,0.202641056422569,0.2129651860744297,11.370285193093942,6.066419542903296,16.80850182503576,11704.393223159334,47.43129650140413,13.595523377949196,14.989365288444002,9.27662048172769,9.569787353283225,0.5853541416566627,0.8046594982078853,0.7025796661608498,0.6042654028436019,0.117249154453213,0.7568692756036636,0.9229024943310656,0.85,0.7853881278538812,0.1325966850828729,0.5158569500674763,0.7274074074074074,0.6471816283924844,0.5408,0.1133144475920679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019343143311424,0.0042674829959555,0.0063011780463304,0.0086752471023252,0.0106470606180786,0.0129616242248989,0.0152829746235331,0.0172281815491074,0.0193868165559529,0.0216614994218825,0.0238356304759952,0.0258518062397372,0.0278577302631578,0.0299610814817865,0.0320338283828382,0.0341236634123663,0.0362761333057338,0.0383757945272239,0.0401242584492628,0.0422231706936217,0.0562463489944087,0.0708348580689006,0.0849980086779717,0.0974164469053047,0.1095457371365949,0.1248705429797307,0.1365274538901844,0.1478535501228214,0.1583562696025091,0.168119418328229,0.1805150814559922,0.1917185204390286,0.2024621129879716,0.212089470812875,0.2208964071264695,0.2309911144511736,0.2403256160981748,0.2482633238690563,0.2562108813509445,0.2631398576634414,0.2691024916042515,0.2752997713805813,0.2816765167333168,0.2864738282136755,0.2913048217724646,0.2952853598014888,0.2983370315889201,0.3019372331394833,0.3055548392088093,0.3089624190518725,0.3065975153781208,0.3037414546600359,0.3016754293725902,0.2997712987069028,0.2975356794610407,0.2944713368039699,0.2906587447540906,0.2905360256849036,0.2910495814552479,0.2912977261457817,0.2922713842380094,0.2937777864823048,0.2945710664644408,0.2953839325343986,0.296415539815411,0.2975460122699386,0.3000395011568196,0.3051095344784665,0.3093512647202285,0.3150394535390413,0.3176316502574293,0.3195397445371054,0.3263632379640643,0.3325026431052711,0.3375152139312798,0.3433904672458323,0.34958238420653,0.3521809369951534,0.3555616288603443,0.3584405753217259,0.0,2.0118684097133475,52.375965574343006,158.24247619505977,211.79255878037236,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95798,46653,443.08858222509866,5347,54.42702352867492,4256,43.75874235370258,1635,16.64961690223178,77.3497797498425,79.68222641332777,63.33168066437421,65.05975846399454,77.1429956979258,79.47976478609132,63.25304316589097,64.98538731612008,0.2067840519166992,202.46162723644545,0.0786374984832392,74.37114787445864,221.86274,155.3952505071732,231594.3339109376,162211.37237434307,446.70361,294.8089130216727,465632.96728532953,307076.43090642814,435.0357,211.93604719770883,449653.9384955844,217804.1420544171,2462.30916,1152.9856935882867,2534669.6590743023,1167979.8388800712,994.09125,450.1286638588854,1022324.015115138,454545.5555537552,1597.3091,680.6352186871461,1628807.4907618114,677189.0905698602,0.37953,100000,0,1008467,10527.01517776989,0,0.0,0,0.0,38394,400.081421324036,0,0.0,39412,406.8665316603687,1241500,0,44551,0,0,8610,0,0,88,0.9185995532265808,0,0.0,0,0.0,0,0.0,0.05347,0.1408847785418807,0.3057789414625023,0.01635,0.3426108816663674,0.6573891183336326,23.58649610626954,4.240204292804762,0.325187969924812,0.2589285714285714,0.1985432330827067,0.2173402255639097,11.25226244120732,5.819417916026835,17.404774813787014,11723.800292520766,48.60686298391151,13.485254232103769,15.600520327505643,9.345297794148095,10.175790630154,0.5740131578947368,0.7976406533575318,0.7109826589595376,0.5680473372781065,0.1081081081081081,0.741988496302383,0.9117647058823528,0.8763736263736264,0.7537688442211056,0.1462264150943396,0.5067456400131622,0.7212121212121212,0.6519607843137255,0.5108359133126935,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0045727843288349,0.0069823614183936,0.0088490180739416,0.0110568609500559,0.0132172496308741,0.0154975530179445,0.0178332635791063,0.0200128785633247,0.0223748451877706,0.0247050260889175,0.0269007649263309,0.0287800113104724,0.0307988549539716,0.0327199207790064,0.0346463039120461,0.0366440660421303,0.0385748366352038,0.0407813392903527,0.0430210524123857,0.0578489979447695,0.0719947297975573,0.0849982180667072,0.0975071464604002,0.1097946620567525,0.1245968552062515,0.1357237574921763,0.1468014901543374,0.1577131381325243,0.1667417562377979,0.1789204857706274,0.190542164110446,0.2011052849154718,0.211155204267926,0.2200646893152614,0.2296969361183445,0.2381398774649302,0.2460806585843136,0.2542690191183979,0.2610910756196691,0.267895765623012,0.2749707739069441,0.2808104943163672,0.2856715238448736,0.290278334122331,0.2953661299059437,0.2992614069510229,0.3032518051459371,0.3062884784520668,0.3095385670389956,0.3081955737440094,0.3057757956172228,0.3039130067329633,0.3016160067128658,0.2996999138366462,0.2968262226847034,0.2950747094631987,0.2952206123385563,0.2960137879253268,0.295735950044603,0.2964701921098412,0.2974332669126206,0.2988030331515949,0.299623549328403,0.2996168582375479,0.3011009555463232,0.3014797596099331,0.3057698915997626,0.3090251200334006,0.3109200816454702,0.3167283894860446,0.3221970852843689,0.3261345852895149,0.3309768148992778,0.334576998414327,0.3317347058135454,0.3343451206556382,0.3325354079393576,0.337466307277628,0.3493098159509202,0.0,2.537754946246358,52.772031645705496,159.11729593262675,223.0846447913724,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95795,46763,444.0106477373558,5317,54.33477738921656,4175,42.94587400177462,1611,16.37872540320476,77.41775944651599,79.74607263723307,63.37436231324406,65.095216557015,77.211386134554,79.54491516927735,63.296497179251865,65.02226665525373,0.2063733119619826,201.1574679557242,0.0778651339921978,72.94990176126248,220.33044,154.3610603862023,230002.0251578893,161136.8655840099,446.00775,295.3003522903776,464987.9638812047,307665.14149003354,436.19038,212.53577911460496,451456.74617673154,218839.17759496765,2395.11248,1121.9960907718423,2463655.305600501,1135017.9924311845,978.88378,441.5768126477624,1005423.706874054,444682.5509401862,1567.66802,665.0685338957359,1595042.1629521374,659244.4186692635,0.38018,100000,0,1001502,10454.637507176783,0,0.0,0,0.0,38259,398.7473250169633,0,0.0,39581,409.4368182055431,1251551,0,44857,0,0,8656,0,0,77,0.7829218643979331,0,0.0,1,0.0104389581919724,0,0.0,0.05317,0.1398548056183912,0.3029904081248824,0.01611,0.3558834112990284,0.6441165887009715,23.80003259924977,4.006067437968579,0.3183233532934131,0.2723353293413174,0.1997604790419161,0.2095808383233532,11.14869693341436,6.046051349740998,17.20647441267311,11722.046424885431,47.809502915711576,13.9261685999816,15.081074879606708,9.300818908903672,9.501440527219582,0.5846706586826347,0.8170624450307827,0.6937547027840482,0.5851318944844125,0.1165714285714285,0.7475490196078431,0.9235807860262008,0.8361111111111111,0.7534246575342466,0.1390374331550802,0.5171128431040325,0.7452135493372607,0.6408668730650154,0.5252032520325203,0.1104651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491529885883,0.004581715710622,0.0070115980558289,0.0094046434157339,0.0115919629057187,0.0137322366545869,0.0158087860564672,0.0179533763370621,0.020206872585294,0.0223113767552298,0.0243542435424354,0.0264119567225769,0.0285455835037981,0.0305663368783008,0.032779616625937,0.0347876384068749,0.0371742595160722,0.0392303226341544,0.0411498265079266,0.043175878978438,0.058325768721111,0.0716033120060218,0.0852970774455952,0.0977172691269316,0.1098869848224724,0.1256153992435607,0.1375544232460089,0.1490782283272023,0.1594788954803465,0.1693660689418771,0.1815708540335935,0.1931473260097,0.2044553971752087,0.2147387957857961,0.223025376249588,0.2320022123893805,0.240049044195508,0.2488938301552007,0.2562638756739613,0.263010440370959,0.2698101002633646,0.275673277844577,0.2805592291706026,0.2852031780979275,0.289594022536783,0.293274911382434,0.2969185225895902,0.3005193848654552,0.3037119342627166,0.3077267224590768,0.3058479218129095,0.3032808272793441,0.3015449063075474,0.2988770847447854,0.2975059646418992,0.2941526990481138,0.2909894271737415,0.2916100960201528,0.2915668382865202,0.2908722614118943,0.2917755056347488,0.2937089017567965,0.2946369087275149,0.2953940362087326,0.2957948619815337,0.2972832983710149,0.2979427827612552,0.301103766525318,0.3059060729307887,0.3093030564940677,0.3130328867235079,0.3162249038309532,0.3184685528699019,0.321555036540345,0.3231416549789621,0.3234112922277344,0.3270236995998768,0.3329295376539471,0.3344173441734417,0.341733486063383,0.0,2.51929206138975,53.028877188217606,155.9769314975568,215.05134359079784,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95726,46855,445.70962956772456,5300,54.21724505359045,4163,42.95593673610095,1589,16.21294110273071,77.3893283971574,79.74897148794906,63.35181630130408,65.09294743757948,77.1833899406132,79.54696370391557,63.27319055814532,65.01857762534289,0.205938456544203,202.00778403349773,0.0786257431587529,74.369812236597,222.88134,156.06221857830607,232832.60556170737,163030.12617084812,450.17025,298.15832060259913,469732.1208449115,310933.1222474554,439.91944,214.4347847927544,456462.2255186679,221625.92754319735,2361.82316,1124.7936303415656,2437688.1098134257,1145427.355516334,956.84895,439.0561205069194,983524.4238764808,442669.695691263,1536.1068,659.1187829912568,1568666.8198817458,657159.1382506739,0.38087,100000,0,1013097,10583.30025280488,0,0.0,0,0.0,38671,403.4222677224578,0,0.0,39938,414.119465975806,1233012,0,44267,0,0,8795,0,0,75,0.7834862001963939,0,0.0,0,0.0,0,0.0,0.053,0.1391550922887074,0.299811320754717,0.01589,0.353143063583815,0.646856936416185,23.55566054668248,4.030086499773328,0.3228441028104732,0.2743214028344943,0.2065817919769397,0.1962527023780927,11.580497963145609,6.5157690252160965,16.951999102526656,11733.743059377492,47.93555518759612,14.021932244007797,15.44323407888981,9.579236808425716,8.891152056272789,0.606293538313716,0.8257443082311734,0.7254464285714286,0.5918604651162791,0.1187270501835985,0.7572663000785546,0.941908713692946,0.8556701030927835,0.6930232558139535,0.1542553191489361,0.5397923875432526,0.740909090909091,0.6725941422594143,0.5581395348837209,0.1081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901880753922,0.0047229570170371,0.0070296095675725,0.0092503274676847,0.0117217681265503,0.0139649451377155,0.0161931354964943,0.0183465643558294,0.0204256797490471,0.022378209129327,0.0242955220821805,0.0265728239011778,0.0286166397796981,0.0308488847258391,0.0329496937070725,0.0350732155959036,0.0370420216785895,0.0391876192847066,0.0409321470148012,0.0427422547242536,0.0571601612263224,0.0712932829651643,0.0845491446492065,0.0974165939415605,0.1103989880356295,0.1260773468977697,0.1378732431715725,0.1477633231843635,0.1584991934019208,0.1684199238646721,0.1806394641337942,0.1928298661820227,0.2035269303529104,0.2125695788633356,0.2218529929577465,0.2312515926036715,0.2395905427429617,0.2480594865795216,0.2558989433542544,0.262946244443426,0.2691680449692918,0.2749348204786456,0.2809817691707455,0.2861486890937387,0.2916171152585977,0.2950414138554884,0.2989621107915468,0.3024553287751315,0.3055623843595947,0.309537301827862,0.3059201246624843,0.3043543935295167,0.3017945909512174,0.2990798430829584,0.2969661955974284,0.2934500747429757,0.2911797133406836,0.2924010967489228,0.2925081101278937,0.2926686321173587,0.2939028706618729,0.2942540481056437,0.2951551034022682,0.2949236997819994,0.2968851006775684,0.2987533623008483,0.300890963088672,0.3058973799806848,0.3099854075463831,0.3125539427226363,0.3153689911983751,0.3190378224402595,0.3244527829893683,0.3284748309541698,0.3309124767225326,0.3355578972017328,0.3363431151241535,0.3357896833300139,0.3457402812241522,0.3444572305331799,0.0,2.0190871464798037,55.641713061792906,154.66481809909212,209.4362381597849,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95665,46483,442.14707573302667,5149,52.44342235927455,4108,42.272513458422615,1655,16.77729577170334,77.35982293729873,79.73539141217653,63.33991942654043,65.08983923652114,77.14896647817123,79.53184986314582,63.26016217984906,65.01613657997662,0.2108564591274984,203.5415490307031,0.079757246691372,73.70265654452623,221.5884,155.10407738711308,231629.54058433077,162132.52222559252,447.10464,295.8658909797029,466714.93231589405,308624.0849036831,428.91227,209.443808967247,444938.4309831182,216175.93016066117,2365.37328,1110.407233102085,2436230.429101552,1124500.8930807805,960.44183,432.33449413123833,988187.7489154864,436330.22461394256,1609.65838,676.9243503628073,1635500.8832906496,667986.8986765577,0.37902,100000,0,1007220,10528.615481105942,0,0.0,0,0.0,38455,401.28573668530805,0,0.0,38945,403.66905346783045,1242618,0,44567,0,0,8754,0,0,75,0.783985783724455,0,0.0,2,0.0209062875659854,0,0.0,0.05149,0.1358503509049654,0.3214216352689842,0.01655,0.368087879352076,0.631912120647924,23.412799947489265,4.145643784111616,0.2984420642648491,0.2650925024342745,0.2195715676728335,0.2168938656280428,11.405093746232524,6.305437557763183,17.54769994343409,11684.30292012707,46.9348593936427,13.17216975595984,14.027805026165344,10.071475006369832,9.66340960514768,0.5754625121713729,0.8071625344352618,0.7014681892332789,0.5776053215077606,0.11672278338945,0.7333333333333333,0.8910675381263616,0.8563685636856369,0.7311320754716981,0.1157894736842105,0.5079916608756081,0.746031746031746,0.6347724620770129,0.5304347826086957,0.1169757489300998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0045002584607899,0.0065844873941054,0.0087648026649875,0.0110216365706848,0.0132118682884625,0.0154372879283465,0.0177223197159531,0.0198574026027089,0.0220148948359112,0.0241053957976908,0.0262329055225549,0.0283168194712823,0.0304365733113673,0.0325748354754193,0.0346973157900176,0.036824614620107,0.0388325346941315,0.0409934917763499,0.0429286086503387,0.0575771822598338,0.07194613725367,0.0850275518236683,0.0974326599326599,0.1092523837650831,0.124533093487117,0.1360118889655538,0.1469779927139479,0.1569556106739651,0.1667471690012343,0.1792426397689555,0.1909903080838161,0.2020328432599492,0.211188214176262,0.2195766613070196,0.2285144566301096,0.2376195631550163,0.2458964788415703,0.2539066929758907,0.261584591263347,0.2679570787660145,0.2733480665567521,0.2791071787653328,0.2844572673618177,0.2892570001091398,0.293384515065392,0.2977436845656031,0.3014911344815323,0.3050514451165917,0.3093609562593076,0.3062557102165851,0.3040873806416157,0.302288271552816,0.2991332189163073,0.2970866305088764,0.2945634568957614,0.2913551364936851,0.2927805294059763,0.2929299830893531,0.2936054810162717,0.2944962023422007,0.2962064271764218,0.2972526553483315,0.2991973244147157,0.2990130318129551,0.2998288914238307,0.3028192934782608,0.3072763643183097,0.310439751899087,0.3144413308600071,0.3178831951429477,0.3218561288272062,0.3271764483389018,0.3280237786754058,0.3305164319248826,0.3349196906603212,0.3370030581039755,0.3337363966142684,0.3334231805929919,0.3362628964463126,0.0,2.603067474886326,53.18618012680368,147.68481441672165,213.1301436965053,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95859,46825,445.1851156385942,5335,54.63232456003088,4195,43.21972897693488,1603,16.409518146444256,77.34109898624328,79.63166613378404,63.34986309044478,65.04391512038268,77.14455674356566,79.43448854242311,63.27691597791979,64.97251630270975,0.1965422426776228,197.1775913609264,0.0729471125249858,71.39881767292877,221.38072,155.0772118572245,230944.115836802,161776.37139676453,448.79039,296.90257344817394,467571.13051461,309121.9326804723,433.28304,210.86894983158663,447965.8352371712,217020.11916437172,2406.826,1127.920777263838,2481421.587957312,1147269.1111568438,984.73081,443.7379781780721,1015010.6197644456,450647.5116348717,1567.50294,659.388979327294,1606761.2222117905,665304.3078110148,0.38055,100000,0,1006276,10497.459810763728,0,0.0,0,0.0,38544,401.5168111497095,0,0.0,39241,405.3244870069582,1243591,0,44637,0,0,8916,0,0,85,0.865855057949697,0,0.0,0,0.0,0,0.0,0.05335,0.1401918276179214,0.300468603561387,0.01603,0.3548271538599319,0.6451728461400681,23.63360299672438,4.189851554750035,0.3082240762812872,0.2688915375446961,0.2078665077473182,0.2150178784266984,11.218882156048055,5.878938157933298,17.147208324548483,11712.27311083492,48.134095892907865,13.85967188887214,14.781346137994158,9.628819197256854,9.864258668784718,0.5754469606674613,0.8182624113475178,0.6921887084300077,0.5711009174311926,0.1086474501108647,0.7466243050039714,0.9260042283298098,0.8594164456233422,0.7184466019417476,0.1477832512315271,0.5020435967302452,0.7404580152671756,0.6233624454148472,0.5255255255255256,0.0972818311874105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024707609741278,0.0047116758367024,0.006795890008013,0.0090157776108189,0.0113024210761693,0.0135451436945371,0.0158929062624163,0.0179342004590665,0.0199374910628562,0.0219217038166064,0.0241838835568029,0.0261632975395628,0.0282242741082341,0.030341066927311,0.0323338485316847,0.0345229740329438,0.036333933039684,0.0383754662246166,0.0403114456267843,0.0424460581344541,0.056869962357799,0.0701125521219784,0.0832294623498235,0.0952891017159179,0.1076610440752205,0.1232005745487574,0.1350678517325762,0.1465673038079646,0.1569995731967563,0.1671899613154877,0.1793150198521579,0.1909478191293817,0.2023432999663069,0.212283481776952,0.2220144533785047,0.2320259628058438,0.2402311287605831,0.2485099970762206,0.2557089539540107,0.2626963410724916,0.2686503301608595,0.2745648183869346,0.2805212620027434,0.2856903344790008,0.2907576695681733,0.2946634301415774,0.2983917360746354,0.3021792198545491,0.3055275342075993,0.30962337576677,0.3076467659683257,0.3058812210508954,0.3036292479657628,0.3012864989881468,0.2988109393579072,0.2958954024220341,0.2932584269662921,0.2926705095991197,0.293118794933242,0.2938153559661939,0.2956526640114225,0.295808667762181,0.2963810403459423,0.2976393501481016,0.2983989761174567,0.2999843104440144,0.3006507963692413,0.30414644905161,0.3091826367235399,0.3147129801796099,0.3204662977410868,0.3249656484515379,0.3283741368487131,0.3314168999167864,0.3357719002063403,0.3356156297957738,0.338163514338011,0.3400080096115338,0.3369594778351917,0.3384204502098435,0.0,2.067598934688012,55.09465455584121,151.67125004030183,218.70485326183683,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95643,46766,445.1658772727748,5418,55.351672364940455,4276,44.13286910699163,1604,16.457032924521396,77.31769350596971,79.74079942813407,63.289715480586615,65.0814778385933,77.11158180912633,79.53512487219497,63.21222731226673,65.00634318814129,0.2061116968433793,205.6745559390976,0.0774881683198884,75.13465045201428,220.6831,154.53726450184303,230735.819662704,161576.7622715984,449.84301,297.0069586221395,469775.0593352362,309978.9592090869,437.72515,213.00193765785005,454040.77663812303,219912.76196996987,2414.72564,1141.9549887579335,2494072.749704631,1163470.08049856,1003.78394,457.35269968544526,1033917.0143136455,462958.9981215517,1563.28342,669.9816181169627,1604785.8390054682,674924.9986899488,0.37984,100000,0,1003105,10487.991802850182,0,0.0,0,0.0,38718,404.2219503779681,0,0.0,39764,412.0322449107619,1242188,0,44524,0,0,8710,0,0,76,0.7946216659870561,0,0.0,0,0.0,0,0.0,0.05418,0.1426390058972199,0.2960502030269472,0.01604,0.3557913351016799,0.6442086648983201,23.403103897976447,4.021074371631823,0.3061272217025257,0.2740879326473339,0.2123479887745556,0.2074368568755846,11.37361072153492,6.3560937784699965,17.235187486356473,11755.758915071045,49.226500513487,14.327836099269248,14.948682652708747,10.145558533138892,9.80442322837012,0.5802151543498597,0.802901023890785,0.7051184110007639,0.5561674008810573,0.1262683201803833,0.7480376766091051,0.928,0.8512396694214877,0.7023255813953488,0.1479591836734693,0.5089940039973351,0.7098214285714286,0.6490486257928119,0.5108225108225108,0.1201157742402315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793581327498,0.004421368596114,0.0066192893401015,0.0086281364648014,0.0106219540732752,0.0128769356153219,0.0151082365902923,0.0172968665392985,0.0194651684013386,0.0216691609094077,0.0236205923112457,0.0259726906309122,0.0282772114097415,0.0303483562166678,0.032587020984223,0.0344895382768683,0.0366822187662001,0.0389097783409851,0.0408774924031136,0.0429341648329874,0.0571951092068136,0.0707916382878399,0.0835346511774468,0.0960440671539612,0.1083489978245717,0.1237674620574248,0.1355444092580391,0.147212125734142,0.1579409058815978,0.1674812292555077,0.1797911587668011,0.1916387633692012,0.2026249863849253,0.2127165604398011,0.2227683491293806,0.2327853942055991,0.2408135896289673,0.2492313929524646,0.2578564940962761,0.2651884954738169,0.2710284702041194,0.2779129905689078,0.282789408866995,0.2876143873157509,0.2925290011916632,0.2964638309935538,0.3001301105940049,0.3040946083418108,0.3067422712443685,0.3106192587899904,0.3088771896753692,0.3066589668495373,0.3042395067984123,0.3010935741697204,0.2996648972450402,0.2969801737853384,0.2942292790157038,0.2937420178799489,0.2944050943267725,0.2953996447602131,0.2962666418396797,0.2970633269208119,0.2973589759548557,0.2979279778393351,0.2988012678439503,0.2986324742134787,0.3016236058167443,0.3066637644205354,0.3107929668496768,0.3150523251239279,0.316468883051001,0.3210476291055021,0.325508607198748,0.3273948818600438,0.3289805055498554,0.3284388582168448,0.3324730529831486,0.3401509134233518,0.3429347826086956,0.3444360333080999,0.0,2.1896057212144973,55.72151658034697,160.5410296460383,218.44060844604147,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95722,46286,439.8257453876852,5148,52.74649505860722,4024,41.578738430036985,1531,15.680825724493848,77.34880342590687,79.70576028575269,63.338894218876014,65.07692275836317,77.14872626557109,79.50676683967563,63.26297812308714,65.00361557380954,0.2000771603357805,198.99344607705416,0.0759160957888696,73.30718455362728,221.21484,154.80714182131544,231101.35601011265,161725.77027362096,445.90968,295.62241155589027,465388.05081381503,308384.155738378,427.14361,208.09767712882055,443435.5425085143,215296.38462761373,2286.78564,1079.1020806346764,2363687.6789034912,1102030.422091762,907.99188,418.0817150686192,936137.6799481832,424340.14343624655,1481.34646,642.59232935531,1518615.95035624,645801.9493761804,0.37647,100000,0,1005522,10504.607091368756,0,0.0,0,0.0,38322,399.8767263533984,0,0.0,38615,400.6080106976453,1245061,0,44695,0,0,8817,0,0,94,0.971563485928,0,0.0,0,0.0,0,0.0,0.05148,0.1367439636624432,0.2973970473970474,0.01531,0.3572490706319702,0.6427509293680297,23.469714601212104,4.077830854566009,0.3223161033797216,0.2738568588469185,0.2070079522862823,0.1968190854870775,11.055323541123578,5.915655377579149,16.59354700497397,11654.837457889702,46.09295551468793,13.335770075082753,14.597702499464296,9.258203297360437,8.90127964278045,0.5675944333996024,0.779491833030853,0.6854279105628374,0.5414165666266506,0.1073232323232323,0.7325102880658436,0.8948497854077253,0.869942196531792,0.7254901960784313,0.1206030150753768,0.4962620149519401,0.6949685534591195,0.6182965299684543,0.4817170111287758,0.102866779089376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0046425820054332,0.0070316067170615,0.0092036692774205,0.0112656580445745,0.0136712984170611,0.0158296553762728,0.0179034398285189,0.0199172244647693,0.0221687733483445,0.0242297521677633,0.0261920890038384,0.0282424304734488,0.0303604336322362,0.0325864950176394,0.0346466619134711,0.0365818302304872,0.0386806254474522,0.0405710304958566,0.0426890896397945,0.0572171515695816,0.071406145344943,0.0843807045888499,0.0966072273946662,0.1081847906338993,0.122992955511836,0.1340244471796613,0.1453544698655367,0.1556460142953299,0.1655366989208092,0.1779400833791164,0.1897363210456271,0.2001000554655298,0.2093503937007874,0.2189617991373998,0.2287347788993163,0.2384478772241396,0.2471631844380403,0.2548420789718671,0.262478376923165,0.2683048218708766,0.2743116476010012,0.2803465129764849,0.2854746930218628,0.2897359635811836,0.2938771992465003,0.2984308238174958,0.3024109547279102,0.3055394038066442,0.3094375897077995,0.3066311713455953,0.3037731182500206,0.3013168631644109,0.2991237061311698,0.2973843595985986,0.2953256165996422,0.2916416495496919,0.2919170254915765,0.2913230181991684,0.292332894127702,0.2929973138337561,0.2935577755053882,0.294959979989995,0.2952520933547122,0.2952563488260661,0.2960819927348209,0.2971413957717663,0.2985832497492477,0.3037572456177107,0.3081415999052843,0.311369098907079,0.3136264554202775,0.3150009482268158,0.3161590718265781,0.3173049778865154,0.318127821335234,0.3194080468629567,0.3250255362614913,0.3286228872263785,0.3277928102048705,0.0,1.7879106923770314,53.49445998409716,143.55549306476854,209.4383711660172,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95640,47352,451.1187787536596,5264,53.743203680468426,4134,42.67043078209954,1496,15.296946884148891,77.26744378178137,79.68282976099258,63.28338998351626,65.06938875738729,77.07828129222258,79.49490222309421,63.2117785766693,64.99979573369058,0.1891624895587824,187.9275378983607,0.0716114068469551,69.5930236967115,221.59324,155.27767690218928,231695.14847344207,162356.41666895573,452.88858,299.4521754559422,472968.1514010874,312545.305765004,442.19139,215.8577933019017,458922.1350899205,223041.82788400556,2328.75196,1095.1884352388486,2405128.816394814,1115814.7936239662,932.51628,421.1553217311408,962427.938101213,428515.1083086586,1449.4835,616.1270112130609,1484569.280635717,620555.1273538561,0.38369,100000,0,1007242,10531.59765788373,0,0.0,0,0.0,38859,405.7193642827269,0,0.0,40067,415.422417398578,1234003,0,44256,0,0,8763,0,0,85,0.8887494772061899,0,0.0,0,0.0,0,0.0,0.05264,0.1371940889780812,0.2841945288753799,0.01496,0.3585112205801861,0.6414887794198139,23.80119724000556,4.064265599762233,0.3217223028543783,0.2762457668118045,0.212385099177552,0.1896468311562651,11.411688977929732,6.252451448157376,16.006853208870236,11828.040746964532,47.25657566394967,13.94333730450922,15.11456184539355,9.712855123716077,8.485821390330813,0.5924044508950169,0.8266199649737302,0.7075187969924812,0.5432801822323462,0.110969387755102,0.764367816091954,0.936082474226804,0.8429752066115702,0.7024390243902439,0.1636363636363636,0.5205761316872428,0.745814307458143,0.656670113753878,0.4947994056463596,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189798771961,0.0045224092476171,0.0070155133203378,0.0092573774489878,0.0115260582508469,0.0136065506986597,0.0157839998368578,0.0180808379871157,0.0202047055695866,0.0223858434629445,0.0242346546330957,0.0265542178575831,0.0283721504402929,0.0305303397182924,0.0327821473545137,0.0347155454930786,0.0367562529128476,0.0387349891537878,0.0408778864156438,0.0431296914095079,0.0578749908557932,0.0731229642973094,0.0870962322006132,0.0998283722742253,0.1120013511944347,0.1279792471808989,0.1394010195412064,0.1498049913684704,0.1599726176851247,0.1696628006872852,0.1818270049929365,0.1937541974479516,0.2052521031266664,0.2152923669467787,0.2245216970123951,0.2348210428367285,0.2425142015334308,0.2507482503319306,0.2587984196902956,0.2661066672778529,0.2721085285674599,0.278465172849324,0.2836432062676781,0.2880766509575374,0.293204662299306,0.296821226362728,0.3007810544234717,0.3046840224344707,0.308695201843652,0.3111269539501479,0.3082033039588218,0.3053181974544203,0.3035216227637695,0.3002457002457002,0.2981060831301659,0.2956038403233956,0.2929254544302996,0.2927648832939942,0.2928043934303208,0.2935243593855803,0.2943047447986828,0.2948748368727014,0.2967205562070699,0.2991635998661759,0.3015488053787969,0.3007056740358826,0.3022655007949125,0.3073671686652681,0.3100430566737844,0.3131693772312574,0.3188505116959064,0.3229800405592913,0.3280844874470372,0.3335621662852784,0.3367720153802869,0.3393471810089021,0.342918323646375,0.3505572441742654,0.3498460677301987,0.3495260663507109,0.0,2.0189767038063646,53.18866955327737,149.98296609604216,217.2760545416793,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95830,46894,444.7459042053637,5350,54.534070750286965,4196,43.12845664197015,1560,15.913596994678077,77.40182060844235,79.71618265465243,63.36325590393732,65.0761545256558,77.19262696778615,79.50955041871848,63.28449054313833,65.00071518204616,0.2091936406561956,206.6322359339523,0.0787653607989895,75.43934360963078,220.58784,154.45528142501357,230186.6221433789,161176.334576869,448.24112,296.4511529013772,467102.7235729938,308720.06737555563,438.27319,213.50435868393205,453318.699780862,219684.27499437917,2408.30376,1130.9609256555648,2478604.111447355,1146279.067732439,982.52469,442.28384595352446,1010928.9679641032,447179.7829004738,1524.96442,655.7784281920318,1557880.6219346758,656454.6449344858,0.38059,100000,0,1002672,10463.028279244496,0,0.0,0,0.0,38422,400.260878639257,0,0.0,39763,410.80037566524055,1247907,0,44813,0,0,8691,0,0,81,0.8452467911927372,0,0.0,1,0.0104351455702807,0,0.0,0.0535,0.1405712183714758,0.2915887850467289,0.0156,0.3524575513851653,0.6475424486148347,23.79256821541191,4.137105335068353,0.3067206863679695,0.2778836987607245,0.2056720686367969,0.209723546234509,11.01920143887884,5.726161005652467,16.724536362925573,11733.072445695632,47.95808019561792,14.403457034229625,14.37394381550438,9.62382515657696,9.556854189306955,0.5872259294566253,0.8336192109777015,0.6783216783216783,0.5828505214368482,0.1318181818181818,0.7493995196156925,0.9285714285714286,0.8189910979228486,0.7013574660633484,0.1978609625668449,0.5184933831014591,0.7613293051359517,0.628421052631579,0.5420560747663551,0.113997113997114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023795540614431,0.0045404331654318,0.0070202491579758,0.00910041947246,0.0112341273472209,0.0135795431410073,0.0160933598328492,0.0182384160032659,0.0202588057321585,0.0224251046539,0.0248070279745369,0.0267895633609098,0.0290178341984889,0.0312496782364267,0.0332222829618474,0.0351216185496703,0.0370477718544588,0.039072950692176,0.0413399117112438,0.0437112972888588,0.0579143330934576,0.0714726267261836,0.0849164352700791,0.097498975851094,0.1098227544153423,0.1255755988340163,0.1368581628653453,0.1474615188366357,0.1575694829868078,0.1676950764879804,0.1801196136221844,0.1912748414147854,0.2021992111525213,0.2117967153643585,0.2214489885664028,0.2302642503680907,0.2394749461897911,0.2477119920847293,0.2551463666367998,0.2629428728371326,0.2684489257880252,0.2746780112666838,0.2803059861194859,0.2852898897939626,0.2904420244989134,0.2939575662795995,0.2977419919481883,0.3015832676815166,0.305882048695967,0.3103221131677755,0.3081493030820306,0.3055166350723921,0.3033794702452048,0.3007736525910878,0.2987087985311102,0.2959415906765034,0.2932691548962361,0.2933904568793538,0.2942097825901901,0.2943288888888888,0.2942163865938042,0.2950593973723546,0.2953877576540714,0.2974037242207835,0.2985787650782276,0.3004557460251696,0.3008681881168519,0.3061002178649237,0.309681905092995,0.3141540642722117,0.3187992393371366,0.3222310335712398,0.325806855141356,0.3296852592648501,0.3301537321726245,0.3303299789375146,0.3303044070876874,0.3360193392425463,0.3333333333333333,0.34080547112462,0.0,2.533710858610024,54.20846246556422,153.3154576911978,215.5939752256665,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95694,47026,448.1263193094656,5199,53.12767780634104,4067,41.89395364390662,1551,15.789913683198527,77.32145341825886,79.70756250872778,63.3143933609397,65.07968203227708,77.1186720392432,79.51039162671258,63.23769451505069,65.00764397285785,0.2027813790156614,197.17088201520028,0.0766988458890125,72.0380594192278,221.57432,155.20668099351414,231544.63184734675,162190.6085998225,449.17298,297.30548996913967,468772.16962400987,310071.00755443366,439.24409,213.7887767032,455560.2127615106,220661.38826657063,2315.66244,1082.6541400861604,2388299.4127113507,1099808.7028300203,940.08079,425.86202600279023,968248.9079775116,430891.5355223844,1511.31198,648.9399583906625,1541725.50003135,646405.2068031837,0.37976,100000,0,1007156,10524.755993061215,0,0.0,0,0.0,38514,401.8329257842707,0,0.0,39717,411.5932033356323,1239237,0,44450,0,0,8985,0,0,93,0.9613977887850856,0,0.0,1,0.0104499759650552,0,0.0,0.05199,0.1369022540551927,0.2983266012694749,0.01551,0.3443075225308074,0.6556924774691926,23.98242324171537,4.149468501916663,0.3171871158101795,0.2662896483894763,0.2060486845340546,0.2104745512662896,11.070522457678704,5.793257191762987,16.706916498065663,11728.813227841105,46.406478634026776,13.22007768047303,14.466196595790525,9.391516705458011,9.328687652305211,0.5775756085566757,0.8088642659279779,0.6937984496124031,0.568019093078759,0.1191588785046729,0.7411167512690355,0.9277389277389276,0.8605341246290801,0.7022222222222222,0.1570680628272251,0.5105719237435009,0.7308868501529052,0.6348373557187827,0.5187601957585645,0.1082706766917293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360784631596,0.0045634317006388,0.0067301445509176,0.0088921860550197,0.0113238645612892,0.0135074566050036,0.0154298010340924,0.0175413518480702,0.0198427708318424,0.0216594673163142,0.0240929269317913,0.0262376898509945,0.0282989754351314,0.0303258248665581,0.0324318744838976,0.0346977388571251,0.0366257872058336,0.0385234077441182,0.0406002683111993,0.0425429911412193,0.0571634479805312,0.0713268852321735,0.0842542741097572,0.0975217048145224,0.109753524098928,0.1259658333156925,0.1384171195652173,0.149856736576377,0.1603783668234288,0.1698989552270825,0.1821149598664009,0.1926529021361367,0.2027218136721639,0.2121450845232233,0.2213518746699525,0.2317402666430438,0.240046851469686,0.2478222262187103,0.2560602281230867,0.2636260603770993,0.2696012117428052,0.2752083406384048,0.2804595253306831,0.2860206551170536,0.2906085668136165,0.2949748310790021,0.2984033308743545,0.3024966647608157,0.3070720645052914,0.3093224803751119,0.3063844086021505,0.3034361620375453,0.3012562884685646,0.2995372439344357,0.296863873724187,0.2941149481540391,0.2908901218760373,0.2913499344692005,0.2916531728851693,0.2922665716322167,0.293128914648967,0.2943217665615142,0.2951114081065842,0.2958431932848149,0.2979224210399904,0.2993351583887368,0.3006360706238056,0.3064429994031351,0.3106432174887892,0.3152440471481686,0.3174301119115582,0.3199363732767762,0.3229699842022117,0.327343630524545,0.3311376682036323,0.3342455973346026,0.3377361388419597,0.3332654308413119,0.3349821379499862,0.3360153256704981,0.0,2.350668502153626,51.30611056000161,149.02245960300604,213.28826031615563,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95711,46650,444.3898820407268,5361,54.66456311186802,4295,44.36271692908861,1647,16.831921095798812,77.3455376358958,79.73280480459435,63.32130932583449,65.08744691505179,77.13982823296773,79.53120737048394,63.24288429232406,65.01348366277357,0.2057094029280648,201.5974341104112,0.0784250335104346,73.96325227821876,219.62094,153.77055424820963,229462.3606482013,160661.10191118013,448.64407,296.1990930089976,468217.2164119067,308941.44037884625,439.29581,214.12963355741437,456521.7059690109,221728.9294231153,2459.78868,1156.094188604108,2538067.2232031845,1176000.9911129428,1026.33708,467.46210580617935,1056518.5192924533,472599.2475328631,1601.92866,685.4027981956672,1636254.6206810083,681585.6382723578,0.37793,100000,0,998277,10430.10730219097,0,0.0,0,0.0,38545,402.1585815632477,0,0.0,39911,414.5500517181933,1250866,0,44886,0,0,8554,0,0,67,0.6895759108148489,0,0.0,0,0.0,0,0.0,0.05361,0.1418516656523694,0.3072188024622272,0.01647,0.357449088960343,0.642550911039657,23.77843310148105,4.173566681075195,0.3215366705471478,0.2633294528521536,0.2069848661233993,0.2081490104772992,11.355664955904206,6.111201605363803,17.603215146093394,11666.722378265433,48.98010695267809,13.819964234715917,15.546124202396811,9.80667407656816,9.80734443899721,0.580209545983702,0.8037135278514589,0.6690803765387401,0.6006749156355455,0.139821029082774,0.7414750198255353,0.9314775160599572,0.8579234972677595,0.7246376811594203,0.1628959276018099,0.51318391562294,0.713855421686747,0.6009852216748769,0.5630498533724341,0.1322436849925705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0044221309397028,0.0063962637697345,0.008668875383646,0.0108346219581671,0.0131085760847423,0.0153066427362281,0.017493336601207,0.0197255399214659,0.0219759963953631,0.0241731193272139,0.0264787748687872,0.028451813983151,0.030243389732704,0.0325386996904024,0.0345091390290298,0.0366491604255363,0.0387433576884755,0.0405569825604975,0.0422288673327984,0.0565964824330534,0.0708783387758519,0.0842892977466178,0.0976020370584707,0.1098394548638214,0.1246866438899525,0.1357944778114985,0.1463354884062756,0.1564126960370319,0.1663678814878428,0.1789075385660231,0.1901223870897866,0.2006357292925334,0.2105378344367237,0.2204035356148249,0.2303012842532161,0.2388504464285714,0.2473054161697531,0.254897956868484,0.2616763588076377,0.2688165824205059,0.274923447324747,0.281421055742744,0.2853825806992136,0.2898898753213991,0.2944222372547814,0.2982999612775897,0.3016473335533162,0.3056046664687891,0.3082918238332435,0.3055928111587982,0.3034308018900226,0.3014957624740416,0.2989392478302796,0.2959342138346176,0.2930908314784889,0.2897859983586894,0.2899978687476433,0.2900294904795186,0.2907855792889491,0.2912875809652177,0.2918107280450459,0.2930976713017256,0.2943551085041372,0.2951393887049566,0.2961344362936371,0.2989693648675506,0.3024639178485332,0.3059485137448042,0.3093317516805061,0.31415508578154,0.3185672899657624,0.3235385863123089,0.327544548474781,0.3311779589541748,0.3374955404923296,0.3385321100917431,0.3401498279003846,0.3420195439739413,0.3480429777436684,0.0,1.9407681704014776,55.23964378325796,157.11686924752857,223.08619196655172,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95613,47030,447.1986027004696,5349,54.66829824396264,4263,44.02121050484767,1636,16.755043770198615,77.23812690061078,79.66731439411303,63.25655152000609,65.05331003312423,77.0358158600878,79.46858698987035,63.18000711981586,64.9804952709436,0.2023110405229857,198.72740424268895,0.0765444001902295,72.81476218062721,219.80772,154.12664759908577,229893.13168711367,161198.42238930456,451.86462,298.6060893486396,472052.92167383095,311762.44793975673,445.06758,216.74858168342,461833.5372804953,223874.8577809957,2428.9408,1147.7005453075412,2510483.1769738426,1170455.9268170034,992.36691,453.98573482663153,1021058.8204532856,457975.165329642,1593.49778,675.2754221927305,1633463.5457521467,677654.0913156419,0.38086,100000,0,999126,10449.687803959712,0,0.0,0,0.0,38688,404.04547498771086,0,0.0,40367,418.5623293903549,1240104,0,44474,0,0,8694,0,0,81,0.8367063056278958,0,0.0,0,0.0,0,0.0,0.05349,0.1404453079871868,0.3058515610394466,0.01636,0.3580224879528824,0.6419775120471176,23.524600075995085,4.0434797394196655,0.3084682148721557,0.2758620689655172,0.208773164438189,0.2068965517241379,11.189435663352324,6.05078743623015,17.384429069812924,11795.57553456863,49.02129554305706,14.460129365321272,14.826557577294285,10.03751059565104,9.697098004790464,0.5810462115880836,0.810374149659864,0.6980988593155893,0.5910112359550562,0.0907029478458049,0.7623211446740858,0.9244897959183672,0.9026548672566372,0.7608695652173914,0.1256281407035175,0.5051580698835274,0.7288629737609329,0.6270491803278688,0.5318181818181819,0.0805270863836017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002482973893303,0.004969926871076,0.007259767687434,0.0094020308386611,0.0115005699397492,0.013967419542162,0.016145647406803,0.0182956727822498,0.0205183806231205,0.0228201530220314,0.0252606090453911,0.0276193705496131,0.0298882279080298,0.0319168676934496,0.0338307430164713,0.0361939449123605,0.0380560422130765,0.0401076184738121,0.0418475375534805,0.0437213766339443,0.0587423553395013,0.072798340109821,0.0863800638762817,0.0992027130925674,0.1117095425167912,0.1268020379844714,0.138469220798538,0.1488023537187263,0.1585739048556571,0.1681992007906157,0.1809971838888229,0.1921096282483548,0.2028658603029312,0.2131023601341134,0.2217557083663933,0.2310432061780174,0.2399534722455233,0.2491346359833579,0.2574453326662194,0.26427939977727,0.2705389666133036,0.277352496395203,0.282818097701013,0.2885796349040391,0.2932088988523112,0.2973804522426788,0.2996963765933955,0.3032409474127265,0.3067725980449429,0.3103119916414278,0.3078802110746724,0.3046962278463554,0.3027100997418281,0.3009828187647459,0.2991731358377205,0.2960611080434382,0.2930449399004154,0.2929665016691608,0.2940280108208061,0.294701099097489,0.2950058072009291,0.2953615684104429,0.2961303291732975,0.2961944369913246,0.2978339784119047,0.2992965085982282,0.3004900843400957,0.303519798868636,0.3064436965362502,0.3093950992384485,0.3141092593433541,0.3176750330250991,0.3231634885901844,0.3292563231408078,0.3293953488372093,0.3339558772032217,0.3357784431137725,0.3351158645276292,0.3427255486318071,0.3455299886835156,0.0,2.235483925528712,54.85683102420893,161.05850390428952,218.4164332210333,fqhc3_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95716,47186,448.40987922604376,5283,54.00351038488864,4206,43.32608968197585,1593,16.24597768398178,77.33641368994157,79.712190271014,63.332022412709286,65.08949324928606,77.13523953311068,79.51486545907237,63.25587993710976,65.01781046639329,0.2011741568308878,197.32481194162688,0.076142475599525,71.68278289277907,220.72138,154.6664546096369,230600.29671110367,161588.92411889014,451.9665,298.9038936253502,471589.0237786786,311675.73198352434,442.89213,215.4676399659537,458691.8801454302,222081.7109301476,2727.48278,1273.676071278056,2809157.2882276736,1290772.4268577104,973.82285,437.7312285703167,999866.041205232,440064.601448262,1556.10888,658.3792755957905,1588364.4113836768,655265.09473501,0.38333,100000,0,1003279,10481.831668686533,0,0.0,0,0.0,38816,404.8852856366752,0,0.0,40238,416.3880646913787,1242804,0,44630,0,0,8758,0,0,77,0.8044632036441138,0,0.0,0,0.0,0,0.0,0.05283,0.1378185897268672,0.3015332197614991,0.01593,0.3596666062692517,0.6403333937307484,23.57717982677658,4.174755572134367,0.3181169757489301,0.2646219686162624,0.2089871611982881,0.2082738944365192,11.218829009052383,5.854482151236704,16.968522362522805,11825.057667333887,48.29545812812904,13.782878205050828,15.283537664008431,9.722270249383543,9.506772009686232,0.5936757013789824,0.8131176999101527,0.7257100149476831,0.590443686006826,0.1164383561643835,0.7600950118764845,0.8961864406779662,0.8724489795918368,0.772093023255814,0.1576086956521739,0.5222562011552837,0.7519500780031201,0.6649048625792812,0.5316265060240963,0.1054913294797687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.004604509173521,0.0066500837605969,0.0091064314171883,0.01147472610195,0.0138614466420874,0.0159699772585892,0.018378599142332,0.0205494157218365,0.0228999037733145,0.0247040131208036,0.0266934970534485,0.0289066677635638,0.031105800922874,0.0333601617962687,0.0356906602720469,0.0378147779986746,0.0396302559367575,0.041771033622616,0.0436268177840743,0.0583738852572001,0.0723523133906711,0.0857769108146656,0.097980466984157,0.1100898089977653,0.1257253384912959,0.1374777372572301,0.1485983494980432,0.1583919555076378,0.1686754732748369,0.1804836574577311,0.1920539827410947,0.2033358687384548,0.213465718561239,0.2228656191627293,0.232455800891169,0.2414350175477689,0.2490223840345199,0.257422038836052,0.264647019132901,0.2716411702176827,0.2775209004717201,0.2831951432688446,0.2890877335693949,0.2926320639193007,0.2973076024254947,0.3015064078543056,0.3055693147901187,0.3080264791063302,0.3118713334651638,0.3090273106417328,0.3062746879172,0.3049802171188803,0.303666584834,0.3003997206413362,0.2971371708511941,0.2932687743283015,0.2939516724355714,0.2956073586129219,0.2963676242443696,0.2969638049655997,0.2985527820497654,0.2984517152157583,0.2999399051837343,0.3018800143695366,0.3048837450695453,0.3062829462886451,0.3109174975623565,0.3154425942156003,0.3193390793184255,0.3222603523221231,0.3272853778634125,0.3287373930805566,0.3338200261277184,0.3386837881219903,0.3380535221408856,0.3391921060746222,0.3433441558441558,0.3404197328972472,0.3436206247647723,0.0,2.353695633583336,55.033222718866455,150.6727489661775,221.3245012551976,fqhc3_80Compliance_baseline_low_initial_treat_cost,0 -100000,95606,47134,448.6747693659394,5184,52.98830617325273,4114,42.41365604669164,1648,16.76673012154049,77.26635035352784,79.7032371978995,63.26822878755484,65.07147733252066,77.05195362440362,79.49576412742188,63.18639514613877,64.99563345440481,0.2143967291242177,207.47307047761865,0.0818336414160683,75.84387811584747,220.31394,154.37236423110556,230439.44940694096,161467.2345157266,451.83548,299.4788402644363,471969.61487772735,312610.74646406755,438.72919,214.1578233691953,455674.9680982365,221422.06294176888,2702.07135,1265.8053459971234,2786918.6975712823,1284642.6856024966,979.79019,447.52327529193866,1007178.6289563417,450464.16678875295,1614.9064,697.2396857355875,1645190.7830052509,690311.5945644242,0.38168,100000,0,1001427,10474.520427588228,0,0.0,0,0.0,38788,405.0373407526724,0,0.0,39792,412.9657134489468,1239027,0,44404,0,0,8785,0,0,67,0.7007928372696275,0,0.0,0,0.0,0,0.0,0.05184,0.1358205826870677,0.3179012345679012,0.01648,0.3453674709891324,0.6546325290108675,23.6849500644542,4.178275110791507,0.2999513855128828,0.268595041322314,0.205153135634419,0.226300437530384,10.958087930286926,5.728149259612172,17.809942249128103,11794.434416259324,47.216133766494906,13.468738561293206,14.0566077189472,9.493759429883005,10.19702805637149,0.5561497326203209,0.7800904977375566,0.6782820097244733,0.5734597156398105,0.112781954887218,0.719253604749788,0.8930232558139535,0.8823529411764706,0.7129186602870813,0.1382488479262673,0.4906303236797274,0.7081481481481482,0.605927552140505,0.5275590551181102,0.1050420168067226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004666497590667,0.0070175794936374,0.0091101350252155,0.0113393456973595,0.0137692754568525,0.0159413781841933,0.0179638882928175,0.0203712040599165,0.0226560098370734,0.0247547107845149,0.0269822996114548,0.0291326099936175,0.0311581725762715,0.0332080071064102,0.0354400778129591,0.0373875367967162,0.039302443938969,0.0414554689370205,0.0434075217454788,0.0584201062183749,0.0723829684667218,0.0858658542990703,0.0985706310500647,0.1108282811212742,0.1267544463629333,0.1386284888293688,0.1493946343805003,0.1602102311043555,0.1692635017515205,0.1825400250291287,0.1942107545533391,0.2043459318157063,0.214405451896002,0.2227782247842428,0.2318179801206957,0.2412999519612114,0.2499268034503727,0.2568539453502244,0.263756179813946,0.2710256558753692,0.277758257203092,0.2829725983580339,0.2880837590846945,0.2922021862574628,0.2950469631330149,0.2990713936614158,0.303616912888436,0.3070843698175787,0.3098888918212768,0.3075483636461544,0.3049823924287443,0.3025053867928514,0.3004203197896957,0.2986094604231043,0.2950185122854258,0.2925413272166416,0.2924639774181902,0.2938676588554556,0.2955438120402771,0.2954583794118198,0.2959008127187518,0.2966952366981705,0.2978595048708553,0.2985691956234219,0.2985401459854014,0.3000541356811123,0.30487574709028,0.3099357736988032,0.3122294157365849,0.3167727272727272,0.3193892158422141,0.3242987111448067,0.3288946054323977,0.3328996282527881,0.3345807507893814,0.3345443536179231,0.3336671339875826,0.3402061855670103,0.337593984962406,0.0,2.284480454086341,51.23704942498561,158.95600593424237,211.48816406915904,fqhc3_80Compliance_baseline_low_initial_treat_cost,1 -100000,95709,46758,445.5798305279545,5174,52.94172961790427,4121,42.50383976428549,1609,16.42478763752625,77.34534288058313,79.71467395715533,63.32656324425341,65.07466217470107,77.14400411578032,79.5148696948587,63.25165269786414,65.0027126734935,0.2013387648028128,199.80426229662385,0.0749105463892689,71.94950120756971,220.82786,154.6162533970023,230728.41634538025,161548.29054425636,447.55315,296.1525002722705,467078.9998850683,308890.48080355086,435.66705,211.4877128167784,451978.87346017617,218423.82262652417,2684.63653,1236.7716043944226,2773100.7846701983,1260322.544791422,966.83479,425.24503011134186,999760.3987085854,433889.10145476594,1566.50652,656.9073758399745,1602204.1814249444,658136.485933122,0.3785,100000,0,1003763,10487.655288426377,0,0.0,0,0.0,38455,401.2161865655268,0,0.0,39542,409.86741058834593,1243604,0,44659,0,0,8713,0,0,63,0.6582453060840673,0,0.0,0,0.0,0,0.0,0.05174,0.1366974900924703,0.3109779667568612,0.01609,0.3466468511982166,0.6533531488017834,23.8867145023876,4.141558083735052,0.299927202135404,0.2744479495268139,0.2162096578500364,0.2094151904877457,11.63104877737368,6.350002332310215,17.101093511524084,11691.821848207925,46.950412078874976,13.86175913322729,13.809239889190678,9.88262313994058,9.396789916516438,0.5738898325649114,0.8063660477453581,0.6731391585760518,0.5836139169472503,0.1170336037079953,0.7649572649572649,0.9193205944798302,0.8754098360655738,0.7544642857142857,0.1529411764705882,0.4981362250084717,0.7257575757575757,0.60687432867884,0.5262368815592204,0.1082251082251082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0044594895911458,0.0068179051174871,0.0087852935202112,0.0108096564908784,0.0130219204023661,0.0151269584008643,0.0175066096383328,0.0196266841126081,0.0219467504683133,0.0240504382592649,0.0257550395875907,0.0279054936690632,0.0298141509045205,0.0319195046439628,0.033822617324788,0.0359676467237647,0.0380045040837718,0.0399272160124772,0.0420496467204401,0.0569190600522193,0.0711684179679323,0.083985645631781,0.0970572453628205,0.1101040369721653,0.1259008413143552,0.1374170603535219,0.1480412415056557,0.1591839351935963,0.1678572194692923,0.1796338796047882,0.1908685390095494,0.2012295304934443,0.2113974210215206,0.2206243461983152,0.2297836495832594,0.2389805164371638,0.2475589452843772,0.2556318447483402,0.2621910717148812,0.269761040042564,0.2755496849758618,0.2818610923803102,0.2866073460198081,0.2910510277174111,0.295247949153795,0.2988593441228706,0.3023246951219512,0.3055879230430617,0.3078770920225965,0.3057317976695629,0.3033581062482796,0.3017670535475045,0.2991660524071745,0.2967046028585862,0.2927068187036045,0.2900891220529675,0.2910281597904388,0.2909814458937773,0.2922713045952482,0.2930008765222581,0.2953043888626711,0.2962375907232835,0.2961038381765873,0.296756068864504,0.2997375055227798,0.299547127087461,0.3038815276695245,0.3074434782608695,0.3110639802050194,0.3167156751866093,0.3210612374070362,0.3217988757026858,0.3261643316925407,0.3286367453578426,0.3325502173146952,0.3353999697565401,0.3346007604562737,0.3314285714285714,0.3284218689414502,0.0,2.187841077621582,51.03919055828201,151.57950699036545,219.43269791446303,fqhc3_80Compliance_baseline_low_initial_treat_cost,2 -100000,95656,46429,441.3941624153216,5255,53.6923977586351,4169,42.91419252320816,1623,16.517521117337125,77.2498286400838,79.64801149886452,63.26585613190741,65.03869335476745,77.04446066051041,79.44774165399306,63.18880175562721,64.96629297804367,0.2053679795733956,200.26984487145685,0.077054376280202,72.40037672377753,219.3367,153.69353188875132,229297.3781048758,160673.17459307445,446.90613,295.73850890108423,466512.3254160743,308479.77011487435,432.36629,210.70687432852472,448114.0231663461,217200.9456894112,2697.47813,1255.111043913401,2775351.5095759807,1267482.5979691823,975.29973,443.0952076422479,998536.913523459,442169.6557518995,1571.52396,665.7076512208258,1600472.6938195198,660120.8745745961,0.37925,100000,0,996985,10422.608095676173,0,0.0,0,0.0,38455,401.29213013297647,0,0.0,39316,407.06280839675503,1244661,0,44679,0,0,8657,0,0,69,0.7213347829723175,0,0.0,0,0.0,0,0.0,0.05255,0.1385629531970995,0.308848715509039,0.01623,0.3511547554100745,0.6488452445899254,23.634585058357622,4.14675408815966,0.3031902134804509,0.2748860638042696,0.2204365555289038,0.2014871671863756,11.376546903833736,6.20145055039093,17.404730556288833,11768.982305041587,47.9194274085774,14.157361913752586,14.400414713772856,10.222539422860455,9.139111358191492,0.5895898296953705,0.8211169284467714,0.6914556962025317,0.5756256800870512,0.1357142857142857,0.7631147540983606,0.9318181818181818,0.8404558404558404,0.7311320754716981,0.1734104046242774,0.5178026449643948,0.7401812688821753,0.6341730558598029,0.5289957567185289,0.1259370314842578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.0046852657519243,0.0070746338344109,0.0094086567770778,0.0115449949649581,0.0137086753712341,0.0158053595464371,0.0178689947414101,0.0200143178564123,0.0220911297508218,0.0243812376273168,0.0265536723163841,0.0286155270875135,0.0306422188553229,0.0328105803281058,0.0349467369945185,0.0369096221996559,0.0389638704318936,0.0410844890188204,0.0429990928901354,0.0578413958833977,0.0716163149903136,0.0848524920499984,0.0978976830320503,0.1091294758281535,0.1247142494284988,0.1368815639966443,0.1480088236234401,0.1589216944801026,0.1686521790506064,0.1810972649296002,0.1927756571527717,0.2035199441694109,0.2131552104241387,0.2218359215478516,0.2311563930491978,0.2396270552813315,0.2469321001579066,0.2548452810433714,0.2621632488942501,0.2687971016175668,0.2759090482006953,0.2814527822015165,0.286681824196711,0.2920759499841567,0.296033433898808,0.2999384908928862,0.3040802778061485,0.3085892358631435,0.3117780159580802,0.3092583092583092,0.3062147515891948,0.3029973598384842,0.3008964907961244,0.2999389581193145,0.2969556757419295,0.2942163411314065,0.294456857462049,0.2960050599155541,0.2977570294054518,0.2984332488976451,0.2981574207849268,0.2985421641322106,0.2990821580479069,0.2997519924875394,0.3015835868632499,0.3022998610441539,0.3059708480289647,0.3098513075878399,0.3139489039583661,0.3175261449693473,0.3214304441298306,0.3245985310593801,0.3294632086851628,0.3356253484482438,0.3384399485440299,0.3369565217391304,0.3399798590130916,0.3428493746601413,0.3438438438438438,0.0,2.4458085383784414,53.06472663412168,157.56529082998796,214.57593646678345,fqhc3_80Compliance_baseline_low_initial_treat_cost,3 -100000,95731,46827,445.6759043570004,5224,53.24294115803659,4141,42.51496380482811,1570,15.940499942547348,77.32698317968122,79.68539285015744,63.31555014592704,65.06076008531291,77.12673135539958,79.4909590403859,63.23979913240053,64.98991105144567,0.2002518242816364,194.4338097715388,0.0757510135265135,70.8490338672334,219.82972,154.06085969724816,229632.74174509823,160931.00426951368,450.98741,298.0518248399548,470378.9159206527,310623.3663494112,438.75142,213.9145716395257,453030.48124432,219492.0022506043,2672.53028,1245.1324299700664,2745152.719599712,1254101.9105306189,958.79483,430.09166111744287,980022.4483187264,427745.8763162223,1528.42584,650.0857598097739,1553035.0252269378,642354.4958093644,0.38095,100000,0,999226,10437.851897504466,0,0.0,0,0.0,38667,403.1296027410139,0,0.0,39820,410.7760286636513,1245018,0,44721,0,0,8845,0,0,80,0.8252290271698823,0,0.0,1,0.0104459370527833,0,0.0,0.05224,0.1371308570678567,0.3005359877488514,0.0157,0.3494682801613494,0.6505317198386505,23.82017456536325,4.148866540229491,0.3071721806326974,0.2765032600821058,0.2100941801497222,0.2062303791354745,11.34510459113964,6.13334258278961,16.694324391394744,11752.629627625663,47.3237603411442,14.1104598991234,14.410508032146382,9.615008844947864,9.187783564926551,0.578121226756822,0.8087336244541484,0.6863207547169812,0.5643678160919541,0.1217798594847775,0.7520391517128875,0.934959349593496,0.8319327731092437,0.7142857142857143,0.1381215469613259,0.5049742710120069,0.7136294027565084,0.6295081967213115,0.5207715133531158,0.1173848439821693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021883389899194,0.0045324572610573,0.0069930779692669,0.0093668725617685,0.0115636918382913,0.0136347436484904,0.015937920626504,0.0180777004266786,0.0202158538081026,0.0224050930901423,0.0245667257689272,0.0268536292433558,0.0288019735827722,0.0309111690023373,0.0328749883952425,0.0346876356196656,0.0363694715918502,0.0382959743587083,0.0404510731174972,0.0426715561158049,0.0573435917779332,0.0718911171787548,0.0850876457267466,0.0979501734468621,0.1097197187700935,0.1254678480049058,0.1368891057186492,0.1479963376203049,0.158525897265984,0.1687595251894305,0.1806531580081914,0.1925834470509238,0.203932406994331,0.2137550739067167,0.2230588028091495,0.2328079276403298,0.2417861092802163,0.2494086639183618,0.2570120531200654,0.2638287142103936,0.2700396044190193,0.2762441292559234,0.2813651715352254,0.2868030052087084,0.2911574057183164,0.2957390392797681,0.3000776592013628,0.3035557422755223,0.3069001696869211,0.3094952319400662,0.3068666352814581,0.3043854825405554,0.3026935790139953,0.3006641640196361,0.2988555227336826,0.2958841626742993,0.2927654461519003,0.2924072405602424,0.2926941495253838,0.29296,0.2936533114374755,0.2943678613627412,0.2938051616681307,0.2953730312548731,0.2957459556620731,0.2977236110389273,0.2983376829683422,0.3028909329829172,0.3070778246764572,0.3104100200874394,0.313249751961757,0.3182583087925957,0.3207441513190642,0.3248685199098422,0.3269337785197551,0.3333722559551611,0.3407922588448745,0.3398155573376102,0.3363636363636363,0.3399923165578179,0.0,2.855360739138222,52.842993636288085,151.45468523704966,213.70103220472325,fqhc3_80Compliance_baseline_low_initial_treat_cost,4 -100000,95759,46939,446.8091772052757,5175,52.70522875134452,4122,42.43987510312347,1573,15.988053342244593,77.39144353273707,79.73105757097166,63.36142006586866,65.08749042699789,77.19025434481087,79.53474787150806,63.285013149359386,65.01595822280049,0.2011891879262037,196.30969946359755,0.0764069165092706,71.53220419739625,222.13378,155.52269147524194,231970.780814336,162409.6951756787,452.73189,299.8147423476663,472194.73887571925,312506.501418511,438.11088,213.19870529969148,454382.52279159136,220130.11499309025,2693.45946,1248.7387961880836,2769531.041468687,1261445.767783108,959.35948,433.20996152970207,981442.0994371286,432314.3055490018,1540.4385,657.2812422277508,1565555.864200754,648470.1346737171,0.38141,100000,0,1009699,10544.126400651636,0,0.0,0,0.0,38746,404.0038012092858,0,0.0,39691,411.37647636253513,1238166,0,44419,0,0,8816,0,0,87,0.9085307908395034,0,0.0,1,0.0104428826533276,0,0.0,0.05175,0.1356807634828662,0.3039613526570048,0.01573,0.3415850729724736,0.6584149270275264,23.53805509787099,4.136794848227326,0.3134400776322174,0.2641921397379912,0.2100921882581271,0.2122755943716642,11.056823794381025,5.749878791127603,16.64718497322869,11687.68489687687,46.73626486794199,13.203078619546195,14.5214697918493,9.536030082920988,9.475686373625503,0.5701115963124697,0.7887970615243343,0.6818885448916409,0.5854503464203233,0.1177142857142857,0.7471763683753258,0.9386363636363636,0.8419452887537994,0.7291666666666666,0.1578947368421052,0.5015146415348367,0.687211093990755,0.6272066458982347,0.5445103857566765,0.1065693430656934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084399805605,0.0046008695035317,0.0067368762809196,0.0087852042940859,0.0111640959420849,0.0133437830795537,0.0153454249031995,0.0179056053216887,0.0201861291871405,0.0220696570352787,0.024108606557377,0.026325508864084,0.0283803084637436,0.0304951473297448,0.0325437077354445,0.0345743032456665,0.0366165405752253,0.0384156649622999,0.0403421966279287,0.0423659072679354,0.0572197983424837,0.071477152633176,0.0841787224221315,0.0972298178452736,0.1099101569090602,0.1251189745976014,0.1368543854067239,0.1483747406501037,0.1585372365989896,0.1688911759345619,0.1813170841990806,0.1927532313017143,0.2030348155958217,0.2126327520650321,0.2219608188034564,0.2311216359773371,0.2401908328874621,0.2484021342319573,0.2554775965451186,0.2617718391067588,0.2676450196440952,0.2734506449803701,0.2791912981792386,0.2841816636133961,0.2887010514316205,0.2927219276989877,0.2967399450412191,0.3023678491084025,0.306713561601324,0.3083243357122165,0.3059166353332975,0.3034621821074867,0.3008424599831508,0.2985794268771859,0.2969286306071724,0.2928642144543447,0.2896365956240253,0.2901198289091324,0.2902047404638518,0.2900330572637116,0.2913522599925289,0.2923531730390225,0.2940893801057184,0.2943540285312437,0.2960640138408305,0.296508299942759,0.2972490073737946,0.299683355801486,0.3044285614182608,0.3096227684756363,0.3136667120861153,0.3180997876857749,0.3213813927156067,0.3261017977698551,0.3315637515134581,0.3380051389862182,0.3414852371011035,0.3471287128712871,0.3527681198181331,0.3525449101796407,0.0,2.355744252446601,49.66029648126681,151.88745171463884,221.2869388930121,fqhc3_80Compliance_baseline_low_initial_treat_cost,5 -100000,95718,47040,447.2513006957939,5326,54.13819762218182,4222,43.419210597797694,1641,16.736663950354163,77.37264048070351,79.73236417119313,63.34029949113111,65.08203859267782,77.15575871564243,79.51851295094896,63.2587176266821,65.00408423648294,0.2168817650610748,213.85122024416603,0.0815818644490136,77.95435619487989,221.12706,154.88199658938817,231019.0768716438,161810.51588143097,450.58962,298.78806434435023,470078.33427359536,311486.4114757415,442.01341,216.2940807923149,457165.5070101757,222448.2572223985,2733.27475,1288.4660402791392,2815089.272655091,1305706.677427589,992.40446,452.0687774802937,1022424.288012704,457916.3767319553,1596.0374,683.3541243751494,1630353.2668881505,682389.2301520618,0.3812,100000,0,1005123,10500.867130529265,0,0.0,0,0.0,38608,402.6410915397313,0,0.0,40141,414.8644977956079,1237966,0,44477,0,0,8716,0,0,87,0.8880252408115505,0,0.0,0,0.0,0,0.0,0.05326,0.139716684155299,0.3081111528351483,0.01641,0.3455563583815029,0.6544436416184971,23.448796199174883,4.223432522137566,0.3043581241117953,0.2749881572714353,0.2148270961629559,0.2058266224538133,11.289545471937313,6.090571958991341,17.64405756169099,11740.750778681182,48.28114781280562,14.024002441121686,14.569840357075222,10.202616129986575,9.48468888462214,0.583846518237802,0.788975021533161,0.7042801556420234,0.577728776185226,0.1380897583429229,0.764937106918239,0.9232409381663113,0.8636363636363636,0.75,0.1837837837837838,0.5057627118644068,0.6979768786127167,0.6388583973655324,0.5143288084464555,0.1257309941520467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088607594936,0.004712535344015,0.0072126358075413,0.0092825804354891,0.0113371767887828,0.0138546735346214,0.0163296093941123,0.0184132362997968,0.0204131699189401,0.0227863650322448,0.0248731224688573,0.0270733660499784,0.0293358559633121,0.0315139031925849,0.0335403598547375,0.0355120095911364,0.0374787758313662,0.0393307956395921,0.0413029018042737,0.0432649745346984,0.0577192139829181,0.0711923994475369,0.0847916120576671,0.0984507693601278,0.110569979865701,0.1258682115634679,0.137397778979858,0.1482754584056105,0.1589183300759347,0.1680644331002531,0.1803426995939731,0.1920126378204087,0.2032563653567971,0.2124231619014285,0.2214568661971831,0.2318431111849759,0.2407349526701196,0.2487445107532935,0.2566965807111212,0.264532850147364,0.2713528281354911,0.2765735820790712,0.2816228834145012,0.2867308246136124,0.2912112628110829,0.2957737794275425,0.2991475459085959,0.3020650542966862,0.3046601011996428,0.3083626679323392,0.3057252011084506,0.3036217442100199,0.3010595336926085,0.2987076745361345,0.2967016647608299,0.2931607058139357,0.2907335114033285,0.2905886210854238,0.2920711147440482,0.2939786436401755,0.2938009909473605,0.2944052785578226,0.2947456213511259,0.2939411450924609,0.2958335324191313,0.2973707365043217,0.2974585135555367,0.3011991901572963,0.3046923879040667,0.3094855620420797,0.3125393824826717,0.3171949745045471,0.3193940152748216,0.3224613061532654,0.3291527313266443,0.3285177354944796,0.3336872440467162,0.3410821643286573,0.3475409836065574,0.3361153262518968,0.0,2.674998580152914,54.89688035356901,151.97434461244023,218.3554032643716,fqhc3_80Compliance_baseline_low_initial_treat_cost,6 -100000,95757,46668,443.9779859435864,5260,53.88639994987312,4206,43.49551468822123,1580,16.23902169032029,77.33281654085012,79.69973286704607,63.319784280511655,65.07132289709556,77.1323929571974,79.49959873441392,63.24492394194552,64.99854970866359,0.2004235836527215,200.13413263214372,0.0748603385661397,72.77318843196667,220.6831,154.54489481290705,230461.58505383416,161392.79093215853,448.25971,295.6643931443048,467697.0247605919,308340.49306042964,434.34577,210.6679613830984,451417.5569410069,218230.5760966803,2730.62835,1264.767169084198,2825150.401537224,1294368.5117631482,961.71809,434.00367117599865,993225.539647232,442128.0545296936,1534.89574,651.8251540575139,1578698.2048309783,658510.0267506161,0.3796,100000,0,1003105,10475.5265933561,0,0.0,0,0.0,38473,401.32836241736896,0,0.0,39500,410.2467704710882,1246120,0,44755,0,0,8606,0,0,69,0.7205739528180707,0,0.0,0,0.0,0,0.0,0.0526,0.1385669125395152,0.3003802281368821,0.0158,0.3528126706717641,0.647187329328236,23.81907212482271,4.195396189621375,0.3121730860675226,0.2698525915359011,0.2116024726581074,0.2063718497384688,11.128317479120124,5.86583068757564,16.910248486447973,11684.808865132713,48.08703856064929,13.731621055389454,14.974932393710004,9.842226480493109,9.538258631056722,0.572753209700428,0.788546255506608,0.6923076923076923,0.5842696629213483,0.097926267281106,0.7398508699254349,0.9080717488789236,0.8739255014326648,0.7416267942583732,0.1379310344827586,0.5055018339446482,0.7111756168359942,0.6265560165975104,0.5359765051395007,0.0857142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023001550324757,0.0044019352286673,0.0066910346228043,0.0088431709374777,0.0107943678020591,0.0129665091264667,0.0152663192567739,0.0175191424196018,0.0196417251180957,0.0219739711860415,0.0238061063380426,0.0257729312345336,0.0281316511922021,0.0303707518022657,0.0324900435401663,0.0348227852026419,0.0367125444019842,0.0386978269442311,0.0406671449813353,0.0425551863156688,0.0576254554185675,0.0711842063965349,0.0850198183839104,0.0984693984820133,0.1103967283612294,0.1256238369142277,0.1364610065961102,0.1474137931034482,0.1578891155518055,0.1674905901150633,0.1792196886506039,0.1909367258408247,0.2017440848990953,0.2108577300653737,0.2199687644354501,0.2293844109831709,0.2376871750239896,0.2468575929781128,0.2547780098057018,0.262250973208152,0.2693691921354426,0.2751957491134233,0.2811667318009024,0.2860208093594169,0.2905640203154236,0.2946493532117445,0.2979629142721205,0.3021551614462736,0.3057206874668117,0.3081574187756611,0.3063634405127377,0.3037257168014969,0.3018283235202975,0.2989888776541962,0.2970695752964603,0.2945387792565397,0.2909131149614266,0.2902174091125055,0.2906693470076151,0.2908712437952568,0.2914581310226339,0.2930647005480424,0.2938856427378964,0.2947263017356475,0.2970455851369469,0.2991952232606438,0.2993753549119818,0.3032476276972221,0.3071518456375839,0.3116821506226527,0.3142313097882758,0.3197631384159881,0.3206460498309753,0.3241915986702931,0.326141541895285,0.3290277125410991,0.3323790869368691,0.3327359617682198,0.3359501894964807,0.3268145919518616,0.0,1.6193568526905402,53.35878387996957,158.72402705533148,217.98324403465455,fqhc3_80Compliance_baseline_low_initial_treat_cost,7 -100000,95776,47159,447.4189776144337,5396,55.10775141997996,4272,43.96717340461076,1612,16.43417975275643,77.34910350822409,79.67721805971792,63.34642956891118,65.06640530570395,77.14195461718059,79.47445089124446,63.26839528554862,64.99307055607773,0.2071488910435022,202.7671684734571,0.0780342833625553,73.33474962622688,221.20098,154.99903930795492,230956.586201136,161834.94748992953,448.40609,296.4458231287782,467546.9115436017,308885.0804488593,442.79143,215.2112212402692,458295.5124457066,221635.06941279175,2786.75493,1288.4459839546037,2870654.8717841627,1306290.148220376,994.91314,450.060468534264,1021439.045272302,452586.8753330005,1583.9665,674.2307584176543,1615948.6301369865,670917.1723186874,0.38275,100000,0,1005459,10498.02664550618,0,0.0,0,0.0,38508,401.3844804543936,0,0.0,40159,415.3545773471433,1241858,0,44561,0,0,8730,0,0,80,0.824841296358169,0,0.0,0,0.0,0,0.0,0.05396,0.1409797517962116,0.2987398072646405,0.01612,0.3551931939028713,0.6448068060971287,23.602891273944817,4.179608609142942,0.3066479400749063,0.2724719101123595,0.2045880149812734,0.2162921348314606,10.957035346630269,5.660506464824419,17.366260420308144,11800.346412796462,48.84694162944626,14.112016911489343,14.82259097683225,9.779655070437164,10.1326786706875,0.5781835205992509,0.7946735395189003,0.7030534351145038,0.5755148741418764,0.1309523809523809,0.7506132461161079,0.9046610169491526,0.850415512465374,0.71,0.2210526315789473,0.5090193506067563,0.7196531791907514,0.6469968387776607,0.5356083086053413,0.1076294277929155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0044902137666102,0.0068275659169532,0.0093244355059877,0.011591491438565,0.0141394193574656,0.0162457449193827,0.0185334489972955,0.0207828832418845,0.0232346381289517,0.0253759783633159,0.0274496926660578,0.0296076295398022,0.0317115596405817,0.0337763297625552,0.035768881176665,0.0378932119205298,0.0397146353097326,0.0418558736426456,0.04398808655989,0.0583483787478736,0.0717602761217445,0.0849602617065447,0.0982133473462953,0.1105584301988597,0.1259775119414972,0.1376466722491335,0.1490248622897126,0.158983224484569,0.1679772030938658,0.1803437476457483,0.1916543215216427,0.2028983931638799,0.2133656979159832,0.2220730929173359,0.2317412152958504,0.2401053348062352,0.2480467652183688,0.2559830320078035,0.2630326058344873,0.27001838511615,0.2767505233734489,0.2827449959778545,0.2874817352145064,0.2916975222463671,0.2960561991619423,0.300904665974299,0.3044662170759639,0.3076793554988537,0.3110330807614119,0.3083801290079317,0.3057478223775646,0.3044182020352724,0.3019164718446041,0.3011270947649414,0.2973105134474327,0.2947383385723537,0.2946977018460581,0.2953213385129148,0.2966586474204758,0.2973412305450197,0.2983699084306915,0.2984743991640543,0.2990508096035734,0.300464065017192,0.3018922018348624,0.3031936127744511,0.3070426973373247,0.3113970329747592,0.3142777578867804,0.3181383487408352,0.3216861081654295,0.324625213485989,0.3282082508753235,0.3293463929176869,0.3335715987610197,0.3337952270977675,0.3341453511977263,0.3412348401323043,0.3440187646598905,0.0,2.397663112023801,53.18479527580061,158.1509834391621,226.70833262574808,fqhc3_80Compliance_baseline_low_initial_treat_cost,8 -100000,95672,46736,445.6162722635672,5347,54.68684672631491,4291,44.32853917551635,1630,16.7029015803997,77.31532774038504,79.70777961363297,63.31028192710126,65.07650342776073,77.11002785401506,79.50266184479976,63.23426676150344,65.00219021417493,0.2052998863699855,205.11776883320465,0.0760151655978234,74.31321358579623,222.12564,155.5676796246598,232173.67672882348,162604.78115295994,452.17861,299.06948897624096,472102.3392424116,312068.38800459483,443.96297,216.2562629279357,460386.0272598043,223142.3215897185,2787.01602,1288.8149110750244,2880371.5716197006,1314556.5291660794,1012.38574,456.69566430426784,1042933.8782506896,462105.5526217353,1599.83256,669.2032601237881,1641267.9989965716,674590.1795851304,0.37817,100000,0,1009662,10553.348942219249,0,0.0,0,0.0,38778,404.7683752822143,0,0.0,40267,417.3112300359562,1233416,0,44297,0,0,8819,0,0,79,0.8152855589932269,0,0.0,1,0.0104523789614516,0,0.0,0.05347,0.1413914377131977,0.3048438376659809,0.0163,0.3488912732474964,0.6511087267525035,23.674135908708493,4.186227266654583,0.3083197389885807,0.2782568165928687,0.1952924726171055,0.2181309718014449,11.44574448616403,6.054956659729259,17.249281681318635,11683.590770914456,48.85206245831387,14.555276013582551,14.897515269592034,9.310605567613322,10.088665607525964,0.576089489629457,0.7998324958123953,0.6923658352229781,0.5835322195704057,0.1196581196581196,0.7678714859437751,0.9366053169734152,0.8781869688385269,0.7440758293838863,0.1614583333333333,0.4977019041365725,0.7049645390070922,0.6247422680412371,0.529505582137161,0.1088709677419354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0047446217482106,0.0071140067791105,0.00930648405909,0.0112202962239583,0.0135472370766488,0.0156257968442418,0.0178337963719562,0.0201055387384439,0.0220679344208575,0.0241526075585867,0.0261222393425783,0.0279509495298644,0.0298715082071943,0.0318122232429475,0.0337880464572711,0.0358075345020514,0.0377881332184778,0.040128561175773,0.0420831031859347,0.0570216678158758,0.071078585338275,0.0848393258191129,0.0970633726496985,0.1090604026845637,0.1247380342513601,0.1364688395795732,0.1476116939134139,0.1580634818852196,0.1685823754789272,0.1814978068521053,0.1935295264081075,0.2047544927126079,0.2140043332676777,0.2235669841969054,0.23225713430121,0.2405678289811691,0.2487622091191429,0.2557492792117868,0.2625680398785309,0.2684737049301808,0.2746199487413545,0.2805771575346519,0.2850734632683658,0.2895801197575698,0.2932674536090096,0.2970318091948845,0.3002225189141076,0.3039929634851444,0.3081640728040095,0.30504164368079,0.3025760222255841,0.2995160927301373,0.2966071093264772,0.2950588514686892,0.2916551956195894,0.2882986791379637,0.2888387233972943,0.2895875200108995,0.2900809536518103,0.2916674435515448,0.2934763357276395,0.2947772881993025,0.2959976836900599,0.2962652420765158,0.2968421598899816,0.2974310830417342,0.3017371601208459,0.3056151330825217,0.3101034208432776,0.312956204379562,0.3172208647615001,0.3232080833596463,0.3240733635177653,0.3282761236487768,0.333691243140062,0.3314050844877454,0.3300019988007195,0.3355371900826446,0.3352315869400152,0.0,1.950184239790168,54.668366067994725,153.27643893900003,229.17370960403505,fqhc3_80Compliance_baseline_low_initial_treat_cost,9 -100000,95623,47095,448.4485950032941,5246,53.74230049255932,4202,43.31593863401064,1590,16.16765840854188,77.3146043072854,79.73191255570754,63.296484254502126,65.08221169537977,77.10523119952681,79.52847147162198,63.21708878970325,65.00801076374776,0.2093731077585943,203.44108408555428,0.0793954647988783,74.20093163200647,221.59478,155.25569274681075,231737.7200046014,162362.0865088865,447.98035,296.48335093683045,467864.3318030181,309433.87790218176,440.80303,214.45845025475856,457154.0006065486,221312.77274717364,2720.45839,1270.006100943956,2806071.259006724,1289344.158667052,952.21426,432.0559279787845,978311.3790615228,434448.9532927504,1547.8819,664.1793717994609,1576187.6117670436,658234.8849993227,0.38217,100000,0,1007249,10533.53272748188,0,0.0,0,0.0,38526,402.2358637566276,0,0.0,39969,414.1472239942273,1236280,0,44329,0,0,8792,0,0,75,0.7843301297804921,0,0.0,0,0.0,0,0.0,0.05246,0.1372687547426538,0.3030880670987419,0.0159,0.3509316770186335,0.6490683229813664,23.215405747544978,4.124579099356529,0.3060447405997144,0.2774869109947644,0.2113279390766301,0.205140409328891,11.26010617745097,6.025355688850932,17.152178717683594,11763.553840579028,48.27570354122825,14.361286467263678,14.457474006160604,9.975394006933444,9.481549060870528,0.5749643027129938,0.8044596912521441,0.6811819595645412,0.5788288288288288,0.1020881670533642,0.7463414634146341,0.9247967479674796,0.8229813664596274,0.7695652173913043,0.1129032258064516,0.5040376850605652,0.7166172106824926,0.6338174273858921,0.5121580547112462,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020366186051695,0.0040462017421991,0.0061314817070694,0.0083523853071178,0.01043701171875,0.0128743124872682,0.0151569241439805,0.017489018285831,0.0197604606682963,0.0219659808911327,0.0241435897435897,0.0262455059065228,0.0283938932554215,0.030344244897118,0.0324225564375445,0.0346382116343032,0.0368662639491871,0.0389850392965043,0.0410163565988263,0.0432420029412071,0.0582117322406656,0.072010727230824,0.0852900407443189,0.0978356983451934,0.1102666413325733,0.1259768313602575,0.1378010048543173,0.1495417732310315,0.1603769548381576,0.1702008808679772,0.1818986071702143,0.1922522463933058,0.2034934402650045,0.2127433473197559,0.2219576982001344,0.23228534330644,0.2406490618329738,0.2489212847695548,0.2569386850865134,0.2635158382457508,0.2695242395822478,0.2754501526833663,0.2810657891621884,0.2856560570640772,0.2906527757540434,0.2947205045453425,0.2990707970135441,0.3032348268191929,0.3066575260958983,0.3097737222427343,0.3083566508824795,0.3057921635434412,0.3040424513695352,0.3015269932534924,0.2988437416401628,0.2963070749153736,0.2940841145173549,0.2939900409209683,0.2951557685724067,0.2958340029642328,0.2963392072954235,0.2967871328011325,0.2985363619329183,0.2989546263345196,0.2991220536310717,0.2998554913294797,0.2997714253463893,0.3044018900770952,0.3098527982224691,0.3155061301477523,0.3162723756409103,0.3207954126992477,0.3253783834704515,0.3297060379354644,0.3331778316850158,0.339115969581749,0.3435762816553428,0.3484355952864689,0.346793997271487,0.345,0.0,2.4090405425925296,53.6520080305405,156.47265774427677,218.76576135938004,fqhc3_80Compliance_baseline_low_initial_treat_cost,10 -100000,95639,46680,442.9469149614697,5249,53.566013864636815,4188,43.14139629230753,1628,16.58319304886082,77.29129418892526,79.69176541696741,63.29829466637945,65.07009807894642,77.0793815347297,79.48638149280536,63.217513258119055,64.99504736477738,0.211912654195558,205.38392416204945,0.0807814082603926,75.05071416903775,221.90784,155.4982078986715,232026.51637930132,162588.70115608853,449.15102,296.7558200727057,468988.6447997156,309644.4442881101,437.24932,212.9046204759424,453713.0982130721,219844.1677221536,2740.73107,1273.4682396735348,2821382.0826231977,1287214.1905222086,987.6562,446.2983367226849,1009555.5055991802,443512.5071599283,1587.90532,676.9607513386864,1617750.1437698011,670329.7520718166,0.37886,100000,0,1008672,10546.659835422788,0,0.0,0,0.0,38579,402.7227386317297,0,0.0,39624,410.7738474889951,1235360,0,44315,0,0,8734,0,0,80,0.8364788423132823,0,0.0,1,0.010455985528916,0,0.0,0.05249,0.138547220609196,0.3101543151076396,0.01628,0.3494702228717574,0.6505297771282426,23.80108785313979,4.161217200922343,0.3249761222540592,0.2574021012416428,0.205826170009551,0.2117956064947469,11.428371005953498,6.191016891234259,17.313369122760975,11795.651709255588,47.82298316441659,13.102376111582304,15.544642806523257,9.484995309001873,9.690968937309163,0.5828557784145176,0.8033395176252319,0.7068332108743571,0.5881670533642691,0.1195039458850056,0.7447873227689742,0.9333333333333332,0.8705234159779615,0.7255813953488373,0.1442786069651741,0.5178989628638341,0.7203647416413373,0.6472945891783567,0.5425038639876353,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728553629853,0.0047551454932576,0.0072876384194553,0.0095620363784168,0.0118324532755445,0.0139838060803585,0.0160796949242408,0.0184818347050054,0.0205709144446262,0.0228022034280097,0.0248689891396868,0.0271247368150772,0.0292371791574507,0.0315630023494497,0.0336444159973571,0.0359222598028568,0.0381490309876671,0.0401619769494341,0.0422549866294858,0.0442792501616031,0.0589317253127384,0.0724147322550909,0.0855516701845026,0.0985768720658512,0.1107968039180502,0.1263535613349846,0.1376868523866145,0.1489107856191744,0.1597848864559722,0.1694493058612581,0.1811104281909444,0.1929545282262867,0.2030459063149758,0.2124327934912344,0.2222675367047308,0.2317845536120323,0.2407454998491569,0.2489529385273587,0.2567837598492245,0.2634618690196528,0.270464857857209,0.2763421111124109,0.2821636215083303,0.2869084454678468,0.291563803524304,0.2959686077074001,0.3001027491667293,0.3042209736396183,0.3076823355544608,0.3104444913688434,0.3079232581622349,0.3056721677012649,0.3034262117176159,0.3020378667437491,0.3005825877597122,0.297430314924412,0.2941605030171526,0.2940528634361233,0.2938731527093596,0.2946473236618309,0.2951695439464657,0.2966282797103169,0.297059810418589,0.2967146020173104,0.2978003789968577,0.2991917249265795,0.3006743355811186,0.3044580802704902,0.3065284393387503,0.3105089855992383,0.3152944383860414,0.3190883190883191,0.3214711604845289,0.324431256181998,0.3275343238668422,0.3288894179264373,0.3362600123228589,0.3394947627849661,0.3368333793865709,0.3450891164201744,0.0,2.576523058994305,51.88759853778982,155.14843990480173,221.23194735487985,fqhc3_80Compliance_baseline_low_initial_treat_cost,11 -100000,95648,46625,444.3271160923386,5299,54.282368685178994,4184,43.32552693208431,1583,16.236617597858817,77.27514686010801,79.68772423088885,63.27600815666828,65.05703946013044,77.07409569866344,79.48420822024191,63.202113669972576,64.98378616302169,0.2010511614445675,203.51601064693625,0.0738944866957069,73.2532971087494,221.55672,155.15113393625802,231637.58782201403,162210.53648404358,447.15688,296.42328124893646,467084.9991635999,309492.9964546426,442.46205,215.0759653716687,459874.2054198728,222793.93502597287,2699.95954,1260.535484569578,2797859.955252593,1292941.8645131926,979.59877,450.888764445052,1012357.236952158,459590.8377018352,1541.0241,645.5714454978979,1582843.7604550018,653195.0680658723,0.37926,100000,0,1007076,10528.981264637005,0,0.0,0,0.0,38326,400.2697390431583,0,0.0,40156,417.0604717296755,1235114,0,44320,0,0,8845,0,0,92,0.9618601538976248,0,0.0,0,0.0,0,0.0,0.05299,0.139719453672942,0.2987356104925457,0.01583,0.352972972972973,0.6470270270270271,23.650249288433585,4.072622707723091,0.3200286806883365,0.2724665391969407,0.1998087954110898,0.2076959847036328,11.468539120799626,6.34362354115441,16.880889207476127,11763.323630608387,48.03152158051781,14.086008159251072,15.166850143814484,9.265741464140769,9.512921813311474,0.5817399617590823,0.8026315789473685,0.6997759522031367,0.5789473684210527,0.1127733026467203,0.7764127764127764,0.9244060475161988,0.8723404255319149,0.7733990147783252,0.1955307262569832,0.5015187310158623,0.7193500738552437,0.632398753894081,0.5165876777251185,0.0913043478260869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045528191834,0.0040846112524451,0.0061792907513571,0.0086033519553072,0.010821916414935,0.0131375264787355,0.0154280703185544,0.0178150299639615,0.0198133172482185,0.0222395150720838,0.0242273804273127,0.0263709395738735,0.0285505576361167,0.0306338064462929,0.0327027529377749,0.034582997124118,0.0365057318766972,0.0384982864264201,0.0405215563441106,0.0423914403704167,0.0571482321464031,0.0718177626891319,0.0851164402987426,0.0979499820913132,0.1106088132155984,0.1262787791498104,0.1381149718414621,0.1486163816995693,0.1589564137960555,0.1684110984547271,0.1809301773359669,0.1931108508977361,0.2035135900956864,0.2133288019645676,0.2220199479235624,0.232309434968017,0.2410432564280439,0.2500141015082973,0.2582638280441041,0.2651235949896095,0.2709971470322176,0.2763969329612868,0.2813904669283774,0.2864568952063099,0.2910313465139466,0.2954329620996287,0.299724379854673,0.3032825486527422,0.3071328562538892,0.3098820390209106,0.3078260400803224,0.3057192422072916,0.3043931433722551,0.3025821731846803,0.3000861121833892,0.2968974696325306,0.2938797434358116,0.2935354362965997,0.2938193451773194,0.2936824132043255,0.2943375768792178,0.2955512648750886,0.2971798621265928,0.296709176848301,0.2970225823464544,0.2973127352979359,0.299548974555357,0.3042333845141478,0.3083062060275123,0.3128931439648692,0.3173991844132306,0.3188006568840388,0.3219203805708562,0.3208842613550626,0.3237774030354131,0.3290973871733966,0.3342490842490842,0.3352869846402587,0.3405479452054794,0.3494664634146341,0.0,1.6572725235290282,53.9570982365577,156.4038642767787,217.6080940342736,fqhc3_80Compliance_baseline_low_initial_treat_cost,12 -100000,95679,46836,444.7370896434954,5321,54.39020056647749,4260,43.8863282433972,1556,15.886453662768217,77.28391542799022,79.67963714032474,63.28504443165552,65.05881738250537,77.08421475945154,79.48425790227476,63.20924111839204,64.98747827769259,0.1997006685386821,195.3792380499806,0.0758033132634778,71.33910481277894,220.6765,154.57489490017457,230642.56524420195,161555.71745124276,447.22094,296.13486479028643,466776.1891324115,308866.8514410544,444.07161,217.186394790687,459807.7843622947,223847.13680842397,2751.77859,1288.085837596066,2836684.9465399934,1306889.743408759,971.84402,438.677921571042,1002593.965237931,445349.32594513067,1521.75818,647.3887533852323,1554925.7412807408,645803.8585031189,0.37962,100000,0,1003075,10483.752965645544,0,0.0,0,0.0,38448,401.1747614419047,0,0.0,40136,415.1903761535969,1240457,0,44489,0,0,8761,0,0,85,0.8883872114048015,0,0.0,2,0.0209032285036423,0,0.0,0.05321,0.1401664822717454,0.2924262356699868,0.01556,0.3534498288596649,0.6465501711403351,23.449741950529667,4.13066298910778,0.3133802816901408,0.2816901408450704,0.2002347417840375,0.2046948356807511,11.148389425453567,5.965985344652673,16.648147362954973,11809.21692423433,48.63898749644068,14.666316876645036,15.150449953929744,9.29793020159827,9.524290464267636,0.5856807511737089,0.7875,0.7176029962546816,0.5814771395076201,0.110091743119266,0.7707667731629393,0.9256198347107438,0.875,0.7537688442211056,0.135593220338983,0.5086436170212766,0.6941340782122905,0.6521739130434783,0.5290519877675841,0.1035971223021582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025739243225714,0.0046656929568321,0.007015442094683,0.0093494984807064,0.0116805551316097,0.0141492135930242,0.0164414299556326,0.0183846059566123,0.0205574021989261,0.0226290233358601,0.0249810205798469,0.027187538531092,0.0295531019437956,0.0314741528567895,0.0335896774193548,0.0356378302911215,0.0376453277516423,0.0396433242676521,0.0418690772159404,0.0438471239330046,0.0583429962288591,0.0720343419537221,0.0856615100438697,0.0983889467647399,0.1102245020740318,0.1258759765418245,0.1373217376530428,0.1486309466756126,0.1594672310767619,0.1693660044434427,0.1817956456132787,0.1929455861164974,0.2044665120482583,0.2146838825552233,0.2235961866975257,0.23307469446202,0.2416318225521543,0.2494449390841776,0.2577279752704791,0.2646974476627473,0.2707734396735602,0.2766725672016225,0.2825065831613408,0.2871874287223442,0.2914613222356076,0.2967531826704825,0.3010682663527408,0.3044623430163759,0.3075757771936866,0.3107008637172809,0.3079625765632361,0.3056575238880868,0.3040249767952072,0.3018960421022276,0.2995396495396495,0.2967996694063088,0.2942460725529592,0.2941224650263735,0.2942029727469752,0.2943211814225583,0.2951062314984824,0.2951928783382789,0.2965699651538687,0.2976483762597984,0.2983814554839955,0.3012777053455019,0.3007012861645041,0.3054745098039215,0.3096467960351808,0.3139347166988226,0.3164608495046818,0.3202486959270773,0.3234343936381709,0.3245038054021787,0.3313653136531365,0.3348125656895948,0.3398614040373606,0.3407407407407407,0.3493112947658402,0.3472485768500948,0.0,2.518168443002524,54.2442880974528,153.84064173767285,224.50511344630291,fqhc3_80Compliance_baseline_low_initial_treat_cost,13 -100000,95659,46767,444.8614348885102,5371,54.98698501970541,4246,43.83278102426326,1671,17.060600675315442,77.35161970545354,79.75619933987556,63.31721993396855,65.09360000866972,77.14375947481741,79.55217798124272,63.23975994142855,65.02012558357706,0.207860230636129,204.02135863284343,0.0774599925399996,73.47442509266955,219.7734,153.9430577203889,229746.70443972864,160928.98495738916,450.31557,297.76668854117423,470205.72031905,310734.17926298024,438.55017,214.1689783898012,454790.61039734894,221036.11391975483,2786.36504,1285.0661067608678,2878009.3247890947,1308581.5310225566,1001.28581,445.49667190164587,1031702.5162295236,450692.2912325648,1631.77014,682.9398070779131,1668219.446157706,682933.940743002,0.37932,100000,0,998970,10443.032019987664,0,0.0,0,0.0,38730,404.3006930869024,0,0.0,39744,411.89015147555375,1247195,0,44686,0,0,8736,0,0,76,0.7944887569387094,0,0.0,0,0.0,0,0.0,0.05371,0.1415954866603395,0.3111152485570657,0.01671,0.3435100874843778,0.6564899125156222,23.779401077250974,4.236214840505612,0.2983984926990108,0.2649552520018841,0.218794159208667,0.217852096090438,11.421177678114956,6.057996026086013,17.756078243955574,11719.459607120089,48.26977224747035,13.713121028975912,14.412832164868169,10.222505270714478,9.921313782911785,0.5692416391898257,0.7884444444444444,0.6977111286503551,0.5780409041980624,0.1178378378378378,0.7540453074433657,0.910913140311804,0.8529411764705882,0.74235807860262,0.1847826086956521,0.4933554817275747,0.7071005917159763,0.6326987681970885,0.5242857142857142,0.1012145748987854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451849525334,0.0047660092278051,0.0070229565429191,0.0091949118101276,0.0113926497065375,0.0137400692605418,0.0159282108805384,0.0180228936700329,0.0201840490797546,0.022247260063505,0.0246014321767856,0.0266765316398462,0.0288040010702451,0.0310315676611888,0.0331460325985911,0.0353000817323111,0.0372500855072914,0.0392409268333194,0.0412418327853843,0.0430448383733055,0.0578062466692441,0.0715145803884613,0.0851019165774503,0.0977839976429984,0.1102598197513666,0.1253082434620635,0.137410820451843,0.148054993072578,0.1586739551352681,0.1681127050940641,0.1794725265246269,0.1910807326927868,0.2022595426494117,0.2116731602679157,0.2209119237164029,0.2310480518760738,0.2399195575666164,0.2477933891740971,0.2556732395645313,0.2633121865194787,0.2699029575395861,0.2754639368017575,0.2807585897041784,0.2854646012402135,0.289721100071575,0.2943253685065334,0.297661410145959,0.3009621242891958,0.30474358312245,0.3080798779204378,0.3059757637638713,0.3042070309284009,0.3012635810364457,0.2983366485052898,0.297188338347982,0.2942101566555715,0.2919355602190069,0.2919333977308076,0.2923354803530654,0.2936557397482238,0.2954010095344924,0.2957813053925237,0.2966367244620848,0.2983982202447163,0.2977752288097116,0.2986375035549006,0.2980848114515262,0.301745947465409,0.3068158059795107,0.3112880340532871,0.3146549776311627,0.3161753154945803,0.3213265432865482,0.3250263514530944,0.3302684127426395,0.3352252571833983,0.3407079646017699,0.3380761523046092,0.3421123353937114,0.3399327605528576,0.0,2.104671864052136,54.0645077641942,150.46127961701808,226.7711159664761,fqhc3_80Compliance_baseline_low_initial_treat_cost,14 -100000,95792,46628,442.4795390011692,5202,53.10464339402038,4075,41.976365458493405,1550,15.878152664105562,77.3507064425629,79.67964502607116,63.34838135415546,65.07043594429318,77.15167448660645,79.48238362049095,63.27291451520305,64.99767785735251,0.1990319559564426,197.26140558020688,0.0754668389524084,72.75808694066654,223.2153,156.32973412555,233020.8159345248,163197.06669194714,449.42042,297.4840695331428,468594.17279104725,309983.4845635781,434.32186,212.1365192485404,449913.6462335059,218803.52549833496,2660.62318,1247.9922520685773,2742468.4524803744,1267782.750196862,970.87974,438.3171236771509,1001500.3236178386,445543.0241326525,1511.93002,646.3816275789726,1549757.537163855,649874.9321132406,0.37924,100000,0,1014615,10591.855269751128,0,0.0,0,0.0,38613,402.497077000167,0,0.0,39475,408.5623016535828,1233099,0,44265,0,0,8898,0,0,72,0.7516285284783698,0,0.0,1,0.0104392851177551,0,0.0,0.05202,0.1371690749920894,0.2979623221837755,0.0155,0.3443223443223443,0.6556776556776557,23.765222378521816,4.143240629590535,0.3082208588957055,0.263803680981595,0.2154601226993865,0.2125153374233128,11.27845159246759,6.105118257476705,16.612162668188436,11646.715075318018,46.68217094859405,13.120033827152527,14.350903834174446,9.80263827046358,9.40859501680349,0.5840490797546012,0.7962790697674419,0.7101910828025477,0.5979498861047836,0.1235565819861432,0.7471074380165289,0.9369369369369368,0.8687150837988827,0.7018348623853211,0.1263157894736842,0.5151832460732985,0.6973058637083994,0.6469933184855234,0.5636363636363636,0.1227810650887574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486933268506,0.0042680454176804,0.0066973119425248,0.0089590443686006,0.0113673336586952,0.0135604263593513,0.0157861481390893,0.0180730883448479,0.0199168173968137,0.0220118706508391,0.0242842797712974,0.026401387278492,0.0285905143620574,0.0304602493231627,0.032533487321736,0.0345458114236717,0.0366806353148119,0.0390819373030353,0.0413425690340938,0.0434121762305321,0.0575131209632821,0.0715368610353083,0.084373722444102,0.0968294502769107,0.1091848026558465,0.1242772427935689,0.1361067220920244,0.1470638315986633,0.1575351240551736,0.1667095391211147,0.1787640340584936,0.1899522255128731,0.2013212795549374,0.2108483093898508,0.2192770289584203,0.2287721238938053,0.2384364240107863,0.2470876349461339,0.2540938091406683,0.2609829763866008,0.2676729763128414,0.2738419141259035,0.2797365682936057,0.2848711932579965,0.2880052404289388,0.2924769829156615,0.2966604615134743,0.3005870692284233,0.3040216280543806,0.3066438401264239,0.3049306273756598,0.3019461345126423,0.3000168738399235,0.2973901495467406,0.2958490342106044,0.2918552728162466,0.2892614265380357,0.2890209468776676,0.2891438718710514,0.2906240525067328,0.2914800727013809,0.2927595196713541,0.2943197770653927,0.2953212446832326,0.2973245350929814,0.2977154914168121,0.2996580222285551,0.3038647951155032,0.3073251202134007,0.3099593094457393,0.3118064398762961,0.3151282870222506,0.317236161896356,0.3188837920489296,0.3217399456266991,0.3282768428537568,0.3274349899984613,0.3387528298003704,0.3455717488789238,0.3385274639657187,0.0,2.1804279593367357,52.52891934374547,153.49650717539637,206.28081077829933,fqhc3_80Compliance_baseline_low_initial_treat_cost,15 -100000,95733,46752,444.09973572331376,5246,53.61787471404845,4162,42.86923004606562,1555,15.877492609653933,77.31652017658898,79.67707080604784,63.31665033110207,65.06232498869514,77.12376991856043,79.4865674509319,63.2450013347711,64.99365223164507,0.1927502580285534,190.5033551159363,0.0716489963309641,68.67275705006648,220.61314,154.6440189686573,230446.28289095717,161536.79396723938,450.6159,297.5637321322131,470092.267034356,310226.9431100574,433.61883,211.0019094328144,448741.8549507485,217228.45302333464,2709.40502,1253.9172088231735,2791542.811778593,1271732.6845308314,962.63676,429.7721836833009,988234.5272789948,431807.7748138194,1512.81328,636.0638280811642,1545295.3944825712,635797.8874772758,0.38088,100000,0,1002787,10474.831040498051,0,0.0,0,0.0,38705,403.6643581628069,0,0.0,39412,407.4770455328883,1243420,0,44595,0,0,8800,0,0,81,0.8461032245934004,0,0.0,1,0.0104457188221407,0,0.0,0.05246,0.1377336693971854,0.2964163171940526,0.01555,0.3529089914280503,0.6470910085719497,23.882339574490786,4.226729401964749,0.3195579048534358,0.2611725132148005,0.2133589620374819,0.2059106198942815,11.340596991944471,6.129411608459394,16.486310252509433,11749.925728303058,47.50958426449554,13.298006631399176,15.066249263751269,9.814434454421182,9.330893914923928,0.5812109562710236,0.8003679852805887,0.6954887218045113,0.5968468468468469,0.1096849474912485,0.7595258255715496,0.925754060324826,0.8797814207650273,0.736318407960199,0.1530054644808743,0.5105669238510567,0.7179878048780488,0.6255186721991701,0.5560407569141194,0.0979228486646884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024412232453074,0.0046025486359627,0.0068713524486171,0.0092768525762825,0.0116984049479166,0.0141160654268429,0.0165828684486961,0.0186473045147718,0.0206950849173321,0.0228820066547222,0.0252337790173078,0.0273439505488299,0.0298106882474523,0.0317153036637354,0.0337397367661014,0.0356559833033703,0.0374403511132733,0.0392498547838353,0.0414007442363262,0.04350407850736,0.0576186250456752,0.0710197247946423,0.0842736691975334,0.0973901705537212,0.1096771472554353,0.1249021723036571,0.1370194347789187,0.1473067915690866,0.1576686788824189,0.1681186164277744,0.1807008283692221,0.1919772323940613,0.2022335069538836,0.2115292111247157,0.2208146688825543,0.2299109121531779,0.2389229378076961,0.2473565804274465,0.2558714742789716,0.2630295118012849,0.2698126301179736,0.2756544410798424,0.2816119833879574,0.2868496763366099,0.291456614958516,0.2955021823292975,0.2997822495870251,0.3027569623796134,0.3068552352362714,0.3091249637270161,0.3072514462531952,0.3049181681785021,0.3026829646547956,0.3003108508638762,0.2991413631231802,0.2960259529602595,0.2927573343449671,0.2925748424369748,0.2933340164984372,0.2939054015432981,0.294723632208882,0.2958680295197127,0.2970705168445281,0.2979996427933559,0.2987477209480856,0.2994210949871498,0.3019398449260132,0.3049390434510785,0.309642545771578,0.3123003509878929,0.3166666666666666,0.3216327827191867,0.3250611017108479,0.326820067898906,0.3298776501354254,0.3337680815745791,0.3333333333333333,0.3356123064548562,0.3385373870172555,0.3393129770992366,0.0,2.353221844286247,51.37789660837977,156.21935998282896,218.58462163833929,fqhc3_80Compliance_baseline_low_initial_treat_cost,16 -100000,95677,47071,448.60311255578665,5381,55.11251397932627,4197,43.26013566478882,1564,15.907689413338629,77.40264542862671,79.78287694078739,63.35728834693722,65.11190612697708,77.19831238023778,79.58283680263483,63.27956526550312,65.0381379640328,0.204333048388932,200.0401381525592,0.0777230814340939,73.76816294427613,221.2848,154.8856055282541,231283.17150412325,161883.84410909007,451.80676,299.0665100392155,471612.5819162391,311971.02756066294,435.90296,212.07014613329008,452150.9035609394,218836.08464599197,2695.98597,1259.637496779949,2780636.8406200027,1279389.4423737673,990.80054,445.55790801648766,1019792.8551271466,449914.3765131503,1524.18482,657.8872694802594,1553080.6358895032,654376.8535740903,0.38214,100000,0,1005840,10512.8714320056,0,0.0,0,0.0,38855,405.4788507164731,0,0.0,39599,410.3807602663127,1242091,0,44558,0,0,8633,0,0,67,0.7002727928342234,0,0.0,0,0.0,0,0.0,0.05381,0.1408122677552729,0.2906522951124326,0.01564,0.3446989877464038,0.6553010122535962,23.829091984456173,4.086705263056621,0.3104598522754348,0.2816297355253753,0.2022873481057898,0.2056230640934,11.200682316568448,6.012487226530389,16.801198617871133,11803.887117170483,47.90532606128127,14.48201638732947,14.78393414322171,9.280682584548726,9.35869294618137,0.588277340957827,0.7859560067681896,0.7129700690713737,0.5877502944640753,0.1297798377752027,0.7506053268765133,0.9132231404958676,0.8472622478386167,0.7641509433962265,0.1632653061224489,0.5202839756592292,0.6977077363896849,0.6642259414225942,0.5290423861852434,0.1199400299850075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771931423479,0.004439174191979,0.006522621221343,0.0087444014502909,0.0107279771407652,0.0127487118913304,0.0149255252989692,0.0172176238250273,0.0194982371876756,0.0216955258094887,0.0236679718731421,0.0259629599211563,0.0280893677835926,0.0301859976518568,0.0324288072637226,0.0344585236786076,0.0365511457179245,0.0385497410993161,0.0405495351207438,0.042636345634751,0.0576547401410289,0.0717965363432664,0.0849467443202686,0.0980150840985831,0.1102368848482291,0.1262576570285968,0.138371587134838,0.1486252009239842,0.1591314661850977,0.169769237368105,0.182166702562998,0.1941816922444208,0.2048178357803154,0.214932423566461,0.2247244163787982,0.2348473104944969,0.2439905454221112,0.2509465973057088,0.2585484126804287,0.2648104739580356,0.271318545546921,0.2767469542080941,0.2824146237778093,0.2870386984867516,0.2916368574858431,0.29644988617486,0.3005536877101326,0.3043312684066213,0.30801317233809,0.3115405359186519,0.309101401041387,0.3067479619099815,0.3044154970063238,0.3019673828630598,0.299600650791303,0.2970067550052607,0.2945221684200564,0.2948050672689777,0.2947373787150164,0.2950840052569886,0.2970020135729734,0.2980671214616169,0.299071631809591,0.3002508936699305,0.3019336950546167,0.3032636026648003,0.3033214305957036,0.3081766887995261,0.3103460304171899,0.3130859528874182,0.3178463071140696,0.3225533266289102,0.3274795325292169,0.3292581691947777,0.3282549771006636,0.3315065298507462,0.3298421372191864,0.3318733824407724,0.3316257751415475,0.3334573874209155,0.0,2.3455943551510554,53.75923171730916,153.20353613422446,217.90298074201297,fqhc3_80Compliance_baseline_low_initial_treat_cost,17 -100000,95717,46799,445.3649821870723,5303,54.07607843956664,4197,43.148030130488834,1557,15.848804287639604,77.33907921770925,79.70601526637621,63.32552877917672,65.07556006847837,77.13790200992717,79.50992696376292,63.2483272914653,65.00306439639465,0.2011772077820808,196.08830261329047,0.0772014877114131,72.49567208371843,220.32054,154.32210547972747,230179.11133863367,161227.47837868665,450.36423,297.9332541658955,469821.9856451832,310570.2583301769,438.49304,214.2236144631493,453487.73989991326,220274.7110369446,2695.74449,1266.512830624205,2776316.391027717,1283131.6282626966,995.03675,451.0701832020422,1024074.020288977,455783.4583542331,1518.39782,653.6566928627935,1548106.4178777018,650678.4079334353,0.38077,100000,0,1001457,10462.686879028804,0,0.0,0,0.0,38705,403.6482547509847,0,0.0,39788,411.13908710051504,1244840,0,44637,0,0,8660,0,0,83,0.8566921236561948,0,0.0,0,0.0,0,0.0,0.05303,0.1392704257163116,0.2936073920422402,0.01557,0.3503150315031503,0.6496849684968496,23.526147031369877,4.192240204497706,0.3135573028353586,0.272337383845604,0.2111031689301882,0.2030021443888491,11.466121483201588,6.189213700072648,16.676884513851725,11730.79061631546,47.96301501149664,13.894665312000898,14.88579578680775,9.79384301725554,9.388710895432466,0.5856564212532761,0.7839020122484689,0.7006079027355623,0.590293453724605,0.1373239436619718,0.7571428571428571,0.9238900634249472,0.8709677419354839,0.7603686635944701,0.1414141414141414,0.512087163772557,0.6850746268656717,0.6334745762711864,0.5351270553064275,0.1360856269113149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380084265111,0.004623433507726,0.0070643403063244,0.0091854982929604,0.011383172436243,0.0135249366018596,0.0155713047468515,0.0179991628296358,0.0199799586903617,0.0219793725739217,0.0241831271921727,0.0262730839547256,0.0283342932367944,0.0301353773876491,0.0323499659365387,0.0346731745654219,0.0366928758637121,0.0386786774320762,0.0405777810130926,0.0426751127827382,0.0576386931052845,0.0712043528303861,0.0845740888311034,0.0976643425771103,0.1097108266014216,0.1251414849840796,0.1362922564352864,0.1474859978277999,0.1578210499316005,0.1678238380890038,0.1803828163731597,0.1920057179367778,0.2029248865627142,0.2123181982336912,0.2218086512201568,0.2316041553488475,0.2405213137822052,0.2487393066186402,0.256756603366667,0.2633852853541141,0.2688911264655162,0.2750307071416037,0.2811561295205658,0.2870740643183831,0.2925284776727767,0.2970300682530898,0.3005867665418227,0.3036598055886906,0.3065272128607398,0.3094683050825134,0.3074918741773444,0.3043938082876646,0.3016945335810392,0.2996475923625755,0.2979032808535264,0.2942947992784419,0.2907729728022238,0.290864084195341,0.2929265336087825,0.2936632532914689,0.2947842836571728,0.2958709270714313,0.2963186859001084,0.2968193157519601,0.2966334551883975,0.2981102769867978,0.2996738051340235,0.3039151253403436,0.3084255735186284,0.3113412657627387,0.3153161337209302,0.3164409030544489,0.3206607401803165,0.3205548357594695,0.32168877265085,0.3238106480934954,0.3325149608715667,0.3402187120291616,0.3433452741802149,0.3472644376899696,0.0,2.737258332919332,54.46070107275048,151.35753645188916,216.32436832734345,fqhc3_80Compliance_baseline_low_initial_treat_cost,18 -100000,95702,46790,445.1004158742764,5250,53.959164907734426,4151,42.95626005726108,1600,16.425989007544253,77.30793472821749,79.68447848716426,63.31631099018998,65.07041155312547,77.10957101327148,79.48476360246927,63.24185574642391,64.99716294621025,0.1983637149460122,199.7148846949841,0.0744552437660743,73.24860691521451,222.58654,155.8103927548251,232582.72554387577,162807.6654268094,449.18535,297.0658130229738,468913.1052642578,309963.67209589726,436.67993,212.42834147014244,453517.5126956594,219899.4477029872,2695.39998,1260.1997612455382,2788033.6043133894,1288902.8475198385,950.85898,436.7793925999298,980442.0597270696,443702.3049110127,1549.04314,655.0420353028823,1591380.4727173937,663932.0352584176,0.38118,100000,0,1011757,10571.942070176172,0,0.0,0,0.0,38640,403.29355708344656,0,0.0,39565,410.6288269837621,1234155,0,44373,0,0,8821,0,0,78,0.8150299889239514,0,0.0,0,0.0,0,0.0,0.0525,0.1377302062017944,0.3047619047619048,0.016,0.3411829134720701,0.6588170865279299,23.784051945554147,4.053265845480415,0.3158275114430258,0.2683690676945314,0.2134425439653095,0.2023608768971332,11.214917264831348,6.182637922913602,17.116672456725478,11759.350617367962,47.792867873568255,13.54701142347258,15.011378084942798,10.05848649448768,9.175991870665204,0.5894965068658155,0.7881508078994613,0.7154843630816171,0.6027088036117382,0.1154761904761904,0.7645631067961165,0.90990990990991,0.8782383419689119,0.7625570776255708,0.1871657754010695,0.5152658662092624,0.7074626865671642,0.6475675675675676,0.5502248875562219,0.0949464012251148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0046005431478253,0.0069690299150934,0.0091614528317217,0.0111158571312342,0.0134006761435379,0.0157029091168643,0.0178254211332312,0.0198020814165082,0.0219365141108188,0.023926682248739,0.0257084188911704,0.0280448800353774,0.0302977232924693,0.0325979279316465,0.0344563790305072,0.0364096028514293,0.0385793336863197,0.0408201479262241,0.0428359951628372,0.0574520536497722,0.0712169899203466,0.0842871680812446,0.097116173408216,0.1090424129969531,0.1242121737659151,0.1359494181173949,0.1471909394758691,0.157940280967897,0.1674819248675205,0.1795183836991405,0.1910577900863281,0.2021636314215819,0.2123872519542994,0.2213630463954946,0.2314627149992801,0.2404025303180748,0.2497806573530404,0.257814184091399,0.2642103695898663,0.2700450267961524,0.2765576761156328,0.2816083113440853,0.2870317072000767,0.2924634967721542,0.2963913075651809,0.3002004510147832,0.303414447700344,0.3073950647700307,0.3097398908836312,0.307573124233728,0.3053695897732595,0.3032584634039733,0.3008030094769587,0.2990911389768991,0.2962038115080581,0.2939442912824413,0.2951197053406998,0.2956011429158041,0.2954695619564635,0.2962615946781598,0.297524419662277,0.2992318801146947,0.3000446328944432,0.3018718312228176,0.3040235729745235,0.3055120799066617,0.3097339573452272,0.3131306029179118,0.3181026979982593,0.3206224972697488,0.3224766033944906,0.3257418909592822,0.3281309190090158,0.3335203890759446,0.3404705882352941,0.3456158820875319,0.3518997413964591,0.357717041800643,0.3527881040892193,0.0,1.53284945015526,54.56568029412711,156.91219127093092,211.35809973185263,fqhc3_80Compliance_baseline_low_initial_treat_cost,19 -100000,95713,46868,445.59255273578304,5288,54.05744256266129,4215,43.52595781137359,1623,16.58081974235475,77.38171245272493,79.75585113613685,63.34258245905804,65.09529713476037,77.17773832544472,79.55479211709606,63.2655683051711,65.02199057326273,0.2039741272802047,201.05901904079812,0.0770141538869424,73.30656149764536,221.3189,154.94550274545836,231231.80759144525,161885.53565916684,449.66247,297.1711566742468,469300.5338877687,309979.11117010936,439.74587,214.21298064949096,456489.0244794333,221553.1595297447,2714.08226,1272.41822101178,2802842.832217149,1296937.3967833065,971.69331,436.6563443421383,1000688.3182012892,441715.4510897771,1576.12438,669.7395390520338,1611122.146416892,668305.983660894,0.3811,100000,0,1005995,10510.53670870206,0,0.0,0,0.0,38601,402.7770522290598,0,0.0,39976,414.7398994911872,1241638,0,44579,0,0,8604,0,0,77,0.804488418501144,0,0.0,0,0.0,0,0.0,0.05288,0.1387562319601154,0.3069213313161876,0.01623,0.3506681112314915,0.6493318887685084,23.541052195680123,4.123299448549523,0.3103202846975089,0.2766310794780545,0.2104389086595492,0.2026097271648873,11.519765492756552,6.200476574568753,17.287324995864818,11739.14870433902,48.30376559359821,14.35886683481889,14.695618709897218,9.967915546692272,9.281364502189824,0.5843416370106762,0.8096054888507719,0.6896024464831805,0.5952649379932357,0.104215456674473,0.7691680261011419,0.9210526315789472,0.9011627906976744,0.7194570135746606,0.1137724550898203,0.508531281365005,0.7276785714285714,0.6141078838174274,0.5540540540540541,0.1018922852983988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045109428377378,0.0070929902179648,0.009030331349166,0.0113106983745956,0.0134928716904277,0.0157940351771603,0.017997876597656,0.020138413256596,0.0222950148428703,0.0242662210512286,0.0264884344103243,0.0286401826390102,0.030809958899453,0.0328369606720122,0.0346464019851116,0.0368498456822089,0.039183131329902,0.0411236726331007,0.0433219392221434,0.0580574412532637,0.0726991006836479,0.0862617126428339,0.0984818995718178,0.1105813352461523,0.1257548357075626,0.1365435426194543,0.148008943781942,0.1581983675911286,0.1676053165127281,0.1801146527014504,0.1915282859555305,0.202468733007069,0.2124905714004613,0.2219313682358117,0.2318761969071366,0.2409674829385789,0.2490047457322147,0.2562404309611568,0.2626704369826786,0.2690203245919465,0.2745909303412809,0.2804902575508417,0.2849647836711226,0.2903311965811966,0.2944486860576805,0.2977266194243435,0.3010666564959253,0.3052142875617515,0.3088485199773418,0.3067847400459572,0.3045143225771031,0.303209210137899,0.3007791684069534,0.2978695073235686,0.2958079268292683,0.2929036530184306,0.2931183744140083,0.2934673708162815,0.2949364391733541,0.295492674197517,0.2960807063774557,0.2962331614834525,0.2968004085529676,0.2976400898103473,0.2990494885835313,0.3009486701677113,0.3062163759057126,0.3113099573405473,0.3153924726958435,0.31812032109678,0.3230582780061123,0.3250783699059561,0.3293358633776091,0.326725266504582,0.329867674858223,0.3384662296081719,0.3434404689710936,0.3492413793103448,0.3458124276341181,0.0,2.018206712765815,53.47964757069859,162.55675597600987,213.23062960795207,fqhc3_80Compliance_baseline_low_initial_treat_cost,20 -100000,95863,46751,444.4571941207765,5282,53.84767845779915,4177,43.05102072749653,1579,16.200202372135234,77.44506122741345,79.72356009637168,63.40474875222951,65.08459078115037,77.24869860547766,79.52675202518468,63.33160320511343,65.01266156093699,0.1963626219357905,196.80807118700727,0.0731455471160771,71.92922021337722,220.9383,154.71610510259714,230472.9666294608,161392.93064331092,447.39019,295.900896140011,466185.6712183011,308158.8059418243,436.5365,212.3856413618512,451571.8160291249,218664.08143011903,2712.22679,1257.1636231574798,2797265.994179193,1279669.1273361272,970.78459,435.4226216828198,999023.9717096272,440653.9015824724,1533.87334,644.261565326655,1574903.5811522694,651467.7060409765,0.37952,100000,0,1004265,10476.043937702763,0,0.0,0,0.0,38417,400.2169763099423,0,0.0,39650,409.8140054035446,1247649,0,44821,0,0,8793,0,0,65,0.6780509685697297,0,0.0,0,0.0,0,0.0,0.05282,0.1391758010118043,0.2989397955319954,0.01579,0.3539694100509832,0.6460305899490167,23.61245808566737,4.145424750769593,0.3160162796265262,0.2662197749581039,0.2104381134785731,0.2073258319367967,11.620735689802093,6.332020037351219,16.714858293388964,11684.734615555551,47.41872576216287,13.58822705696704,14.77960901767652,9.61144859834967,9.43944108916963,0.5803208044050754,0.7976618705035972,0.7045454545454546,0.5665529010238908,0.1258660508083141,0.7516666666666667,0.9067245119305856,0.8771929824561403,0.7729468599033816,0.1263157894736842,0.5112529392005375,0.7204301075268817,0.6441717791411042,0.5029761904761905,0.1257396449704142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0045583930145159,0.0068543848797947,0.008911534245463,0.011095982278944,0.0134295103315664,0.0155829870447323,0.0177225774215587,0.0196979444291272,0.0218509391711571,0.0240733155846815,0.0262550638428798,0.0284085657063626,0.0306318723706271,0.0325256021924131,0.0344952158789467,0.0363188864414316,0.0382770161749924,0.0402582841956648,0.042345988575947,0.0566364299864456,0.0703242520474678,0.0828438916632641,0.0965152516762678,0.1085440141400751,0.123914259480111,0.1350704627992419,0.1458727292042919,0.1566724954151917,0.1655341416173527,0.1778871468638175,0.1900299081162205,0.2006707839923587,0.2102476776806278,0.2204311111599152,0.2301294104634443,0.2391507856904045,0.2480816115586414,0.2567098880174094,0.2636648591758757,0.2694628777543989,0.2748942040167403,0.28070631926293,0.2859501758920238,0.2909878325427923,0.2954662925496567,0.2989076713254339,0.3014510447267686,0.3047626445039937,0.3083698117187912,0.3063433789217466,0.3043645400002746,0.3024581303609282,0.2995512986452671,0.2979896526237989,0.2951877844931265,0.2917853265572636,0.2929617429307589,0.2929632459044223,0.2937642868534368,0.2947078423707674,0.2959993712174801,0.2964643206459534,0.2957924637166571,0.2962309160305343,0.2975486270761759,0.2976203902108943,0.3024622271964186,0.3070026653743639,0.3099897822840525,0.3156679942070963,0.3193974630021142,0.3226996935009695,0.3271812080536913,0.3299736247174077,0.330755502676978,0.336874518860662,0.3421323984326665,0.3473800942611588,0.3506998444790046,0.0,2.0263920201299728,52.394407248339824,153.56982468954382,218.04797364989116,fqhc3_80Compliance_baseline_low_initial_treat_cost,21 -100000,95687,46929,446.8945624797517,5229,53.47643880568938,4162,42.94209244724989,1601,16.397211742451955,77.29747507811412,79.70410578051734,63.28577397120039,65.06729357082035,77.09479894206325,79.50290815398462,63.20903865964544,64.99346474812417,0.2026761360508686,201.19762653271775,0.0767353115549553,73.82882269618563,220.09372,154.1898736861646,230014.2339084724,161139.83475933468,450.02949,298.0373527383745,469764.8165372517,310921.7790696484,437.11779,212.679085276592,453801.0701558205,219882.84838156807,2698.03127,1268.2743919819302,2785843.3852038416,1291641.5834773066,986.52044,445.0669183678185,1020685.2445995798,454847.10587115714,1562.08974,665.4748606839327,1601339.3041897018,667210.2834297378,0.38007,100000,0,1000426,10455.19245038511,0,0.0,0,0.0,38609,402.9073959890058,0,0.0,39665,411.51880610741273,1242710,0,44583,0,0,8660,0,0,79,0.8151577539268657,0,0.0,0,0.0,0,0.0,0.05229,0.1375799194885152,0.3061770893096194,0.01601,0.3544001469777696,0.6455998530222304,23.610035089222023,4.168670097352992,0.3015377222489188,0.2748678519942335,0.2123978856319077,0.2111965401249399,11.265479019126866,6.031002798374634,17.138809441049528,11743.003808039715,47.77416286098933,14.033364752358732,14.331732681136932,9.742982742109712,9.666082685383952,0.5898606439211918,0.798951048951049,0.7227091633466135,0.6006787330316742,0.1171786120591581,0.763265306122449,0.9053763440860216,0.8997289972899729,0.7342995169082126,0.1630434782608695,0.5175348995573714,0.7260677466863034,0.6489841986455982,0.5598227474150664,0.1050359712230215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024524707122299,0.0046152597731929,0.0067008477587694,0.0090437963621583,0.0111796061197916,0.013607936604942,0.0157072334870058,0.0181266722493413,0.0202501610808267,0.0223960840134765,0.0243196947473151,0.0264942162684144,0.0284462094011378,0.0304810189192531,0.0328122741445887,0.0346407662549907,0.0367637151356225,0.0388960418656809,0.0408660098419667,0.0426467676209732,0.0577573959552064,0.0724925937169596,0.08569869568411,0.0976920811242952,0.1097433625518179,0.1253398499899499,0.1365402169528944,0.1477742279020234,0.1575334409717395,0.1672911544614195,0.1797073002383443,0.1916660343201552,0.2027080020043136,0.2125146544829022,0.2214113263292506,0.2304423561260831,0.2389158982956133,0.2475810721003841,0.2559951834054687,0.2628707651400541,0.2690815156324209,0.2749045510973696,0.2811474730246716,0.2852359464259997,0.2898654730337898,0.2945886591324088,0.2986557422232244,0.3019053080991525,0.3064798598949212,0.3108274194187844,0.3090168687045752,0.3067971873707431,0.3050014822343624,0.3026864289022695,0.3011366168932471,0.2973845706502609,0.2932429442811542,0.2940955000081848,0.2945827382166904,0.2949674805416356,0.2963749487724004,0.297129055062446,0.2980438722579839,0.29749000444247,0.2973689870241594,0.298886875485374,0.3002263723825693,0.3039653074595201,0.3079736649597659,0.3108459357277883,0.3166101694915254,0.3202483687644706,0.3243951110002494,0.3289691497366441,0.3321229050279329,0.336343379852234,0.3408467864757843,0.3415662650602409,0.3400544959128065,0.3487666034155597,0.0,2.1112905411561527,53.45615382711923,159.10426374110884,210.1835131475407,fqhc3_80Compliance_baseline_low_initial_treat_cost,22 -100000,95845,46974,446.3978298294121,5282,54.01429391204549,4168,43.05910584798372,1544,15.82763837445876,77.32864418348662,79.63868561682409,63.32870225298407,65.0380599601711,77.12791124019864,79.43929270254904,63.2526114961198,64.96482431338066,0.2007329432879743,199.39291427505168,0.0760907568642679,73.2356467904367,220.70642,154.66992030278288,230274.3179091241,161375.05378766017,447.5936,296.7852475113068,466568.2925556889,309222.56886058435,440.95223,215.324534976386,457637.3728415672,222786.78814318267,2704.99803,1266.0876630060827,2795233.867181387,1293983.4423795866,957.30318,436.5130940881136,988480.3484793156,445119.7638829505,1497.6416,644.520582954299,1535462.402837915,647826.8842458144,0.38076,100000,0,1003211,10467.014450414732,0,0.0,0,0.0,38466,400.8764150451249,0,0.0,39979,414.6695184934008,1238733,0,44568,0,0,8663,0,0,72,0.7512128958213783,0,0.0,0,0.0,0,0.0,0.05282,0.1387225548902195,0.292313517606967,0.01544,0.3570259952735866,0.6429740047264134,23.376226428281427,4.0822824045229655,0.3111804222648752,0.2797504798464491,0.2120921305182341,0.1969769673704414,11.363246402519913,6.140599867447776,16.64555814874676,11717.938659253372,47.95039366238103,14.360954717531468,14.821802321438335,9.759733608263332,9.007903015147887,0.5844529750479847,0.79073756432247,0.7047031611410949,0.5723981900452488,0.1144945188794153,0.7545671167593329,0.9247967479674796,0.8684931506849315,0.7087378640776699,0.1632653061224489,0.510828463389481,0.6928783382789317,0.6405579399141631,0.5309734513274337,0.0992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0045412155861006,0.0065641962156952,0.008725418495043,0.0109009558673988,0.0131846874363673,0.0154520436245031,0.0174104728178227,0.0194473399145666,0.0217035384646869,0.0236275333510932,0.0255636628593126,0.0278300190123837,0.0299470855895735,0.031833603167892,0.0341532453847663,0.0364471764304119,0.0384762931704838,0.0407582446117891,0.0427048856137721,0.057106797534238,0.0712635265826755,0.0844268824417239,0.0978951903575969,0.1103088436808264,0.1259923256625194,0.1378110982683477,0.1492083085042989,0.159950873070967,0.1697560975609756,0.1814373707787732,0.1932381261495185,0.2036795407098121,0.2131824889326119,0.222165991902834,0.2326421197217422,0.240363571396668,0.2491639737425827,0.2573556966193888,0.2642249386510102,0.2703257215718094,0.2760985789992027,0.2814740090197009,0.28586012658988,0.2894772060881097,0.2932701795934478,0.2977811744365235,0.3010777344645723,0.3051010087912658,0.3082238841468249,0.3059585876140053,0.3027618982023555,0.3006238003838771,0.2985109218378817,0.2972249088609478,0.2949187895891167,0.2914110915632479,0.2914977763920114,0.2911474403777637,0.2920002846873776,0.2916993683895802,0.2933049527976507,0.2953550431555685,0.2956320509111946,0.2960967432950191,0.297263552179794,0.2995518493306104,0.303478233694803,0.3068948723300633,0.3116357636706474,0.3155922715781871,0.3186540794261906,0.3230855926366539,0.3265027322404371,0.3294986906098017,0.3303645647785299,0.3304453564371485,0.3371670702179177,0.3437158469945355,0.3522376543209876,0.0,1.5815957425298517,55.74480110858369,156.2664620483153,209.02484920520857,fqhc3_80Compliance_baseline_low_initial_treat_cost,23 -100000,95739,46890,447.01741192199626,5294,54.10543247788257,4190,43.11722495534735,1528,15.55270057134501,77.35098256499538,79.69903666920126,63.33757887846742,65.0707481365515,77.15150885760379,79.50195735820604,63.262225291935344,64.9985272418724,0.1994737073915899,197.07931099522116,0.0753535865320742,72.22089467910564,221.33144,155.0182309383746,231182.10969406407,161917.53719839835,446.67483,295.06531341606694,465905.2528227786,307548.1396464,436.33776,212.25164123739648,451585.25783640944,218491.38886120095,2684.77693,1254.623278423322,2766123.753120463,1272319.084618935,923.48241,418.1049867490705,949215.2832179152,421436.09799688606,1482.43608,636.4342358073931,1511207.8463322157,635051.6778166592,0.38232,100000,0,1006052,10508.277713366548,0,0.0,0,0.0,38374,400.129518795893,0,0.0,39632,409.74942291020375,1243729,0,44622,0,0,8850,0,0,82,0.8564952631633921,0,0.0,1,0.0104450641849194,0,0.0,0.05294,0.13847039129525,0.2886286361919153,0.01528,0.3515850144092219,0.6484149855907781,23.656478524897764,4.0207332321120735,0.3264916467780429,0.2720763723150358,0.2071599045346062,0.194272076372315,11.111108387151726,6.024968967525628,16.493478088136754,11728.845453716862,48.20418795100343,13.96371767504055,15.652796348292949,9.764710118174484,8.822963809495464,0.5892601431980907,0.8026315789473685,0.7002923976608187,0.5806451612903226,0.113022113022113,0.7553444180522565,0.9102296450939458,0.8730964467005076,0.6743119266055045,0.1569767441860465,0.5175948069695935,0.7246596066565809,0.6303901437371663,0.5492307692307692,0.1012461059190031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050023796745,0.0042367298121851,0.0063113248708816,0.0084504753392378,0.0108488983335197,0.0130203296311754,0.0152495897085656,0.0175438596491228,0.019838714623003,0.0218403627096787,0.0238739569879246,0.0259700266885649,0.0280987826945221,0.0300483987230975,0.0322274490385408,0.0343558789482388,0.0363643894054546,0.0382691709038082,0.0399750480844206,0.0418585269298885,0.0563906634932565,0.0701493786350893,0.0837527260526757,0.0962078282536244,0.1079462798591638,0.1238835156704191,0.1360170525043214,0.1464660437993487,0.1575405388082979,0.1671690462654066,0.1798832374674163,0.1908199489155374,0.2018948376008875,0.2111016281512605,0.219989871856973,0.2297954885551183,0.239668036815298,0.2480029702301928,0.2561314705314887,0.2631301437381078,0.2692690491621146,0.2753726628132825,0.2809196054778968,0.2865951485836067,0.2913072490142553,0.2958496880806192,0.2992988989839659,0.3028185122118585,0.3075648955718316,0.3107678507828886,0.3086027441528539,0.306723383166763,0.3042914523289409,0.30275163030119,0.2999925711314167,0.2981019439767335,0.2954311668170093,0.2953806756623658,0.2962956643404371,0.2974537037037037,0.2992434855701877,0.2988956040711065,0.299003946626574,0.2995034624034201,0.2997490139835066,0.2996601551352894,0.3022413402762056,0.307057315280948,0.3105978922472261,0.3146836638338054,0.3173003028796166,0.3214700601964305,0.3224676218482137,0.3269187231152365,0.3326500186358553,0.3349840820657941,0.3422756706753006,0.3453150242326332,0.3496696035242291,0.3590038314176245,0.0,2.47369076588678,54.99883422924725,155.50176702386176,212.79093608555095,fqhc3_80Compliance_baseline_low_initial_treat_cost,24 -100000,95843,46878,444.2890977953528,5272,53.7754452594347,4178,42.986968271026576,1578,16.057510720657742,77.51248185563044,79.79632644369069,63.42745123530996,65.11008208874667,77.31114907070592,79.60071241497177,63.35086955890357,65.03850917927052,0.2013327849245172,195.61402871892145,0.0765816764063913,71.5729094761457,220.28006,154.269120493432,229834.27063009297,160960.23756918294,449.43094,297.2822997300907,468315.3490604426,309567.5633380536,440.32801,214.10879437973216,456079.1502770155,220847.24377142065,2706.29622,1262.8863823353431,2785901.808165437,1279886.932102859,974.2404,444.3245377236848,1004238.504637793,451341.95665035147,1545.74914,657.8544240881216,1575212.3577100048,653544.2396401883,0.38091,100000,0,1001273,10447.012301367862,0,0.0,0,0.0,38572,401.8342497626326,0,0.0,39933,413.2383168306501,1251634,0,44872,0,0,8751,0,0,85,0.8868670638439948,0,0.0,0,0.0,0,0.0,0.05272,0.138405397600483,0.2993171471927162,0.01578,0.3490995088229943,0.6509004911770057,23.70214148425498,4.101789732024084,0.3061273336524653,0.273336524652944,0.2067975107707036,0.213738630923887,11.146662684233997,5.888620754878995,16.664141626211944,11716.061358277768,47.66654029269654,14.03203713350112,14.441989127637513,9.525535836379262,9.666978195178649,0.5662996649114409,0.7933450087565674,0.6778733385457388,0.5671296296296297,0.1153415453527435,0.7549880287310455,0.9196787148594378,0.855457227138643,0.7441860465116279,0.1890547263681592,0.4854700854700854,0.6956521739130435,0.6138297872340426,0.5084745762711864,0.0939306358381502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024183919211543,0.0046485249288542,0.0069937866793703,0.0093454150642814,0.0117332737357524,0.0142276009356249,0.0162590865590193,0.0182839778104095,0.0206263465838889,0.0230391655588505,0.0250473606062157,0.0270744238993323,0.0291709051303391,0.0312458189677352,0.0332580748255136,0.0353453974549661,0.0374896523178807,0.0396151493473505,0.041749337765543,0.0438191017552626,0.057892266777911,0.0712911455937094,0.0843987089743052,0.0972343308509185,0.109365457110966,0.1255585013678662,0.1375622681505034,0.1476834079477663,0.1581289620285586,0.1683534136546184,0.1813078685034035,0.1932598833441348,0.2043038771809821,0.2141265889136417,0.2230388118072262,0.2324748139383148,0.2412352528324588,0.2488318281888843,0.2557981518391012,0.2616884378464246,0.2674655993725418,0.273306540858524,0.2795302052993408,0.2844690682873825,0.2888539271451046,0.293151290425558,0.2971999651085995,0.3008821556492134,0.3057652180633195,0.3086767810545364,0.3051505536142239,0.3029387230434723,0.3007735455804389,0.298891346181463,0.2955635934155163,0.2920359372620679,0.2898573567657025,0.2907552317318216,0.2911237577507857,0.2917976310976151,0.2922973678323764,0.2940471277243873,0.2947460486037359,0.2945000332793468,0.2965676363549868,0.2982279915520527,0.2993834980153703,0.3027196134308016,0.3068554653773096,0.309824656895144,0.3157215921725594,0.3173121791880541,0.3217471547216241,0.324424923695377,0.3236723837475924,0.3273480662983425,0.3259127337488869,0.3289730573994533,0.3381333333333333,0.3354289940828402,0.0,2.354365425464733,54.44651440800934,150.1446991729441,215.69081735617053,fqhc3_80Compliance_baseline_low_initial_treat_cost,25 -100000,95728,46620,443.5170483035267,5325,54.36236002005683,4210,43.299766003677085,1555,15.85742938325255,77.31288813594676,79.67282666808698,63.318020272784125,65.06275791631708,77.12145653881097,79.48423206244556,63.24563285049507,64.9937228548466,0.1914315971357894,188.5946056414269,0.0723874222890543,69.03506147048688,221.38182,154.9497441325902,231261.30285809797,161864.59983765482,447.46633,295.4063147959455,466760.8641149925,307915.814729916,436.69029,212.5129262682319,451370.36185859935,218400.49767868756,2728.51267,1269.6705922841434,2810108.348654521,1286296.4887650392,969.83476,437.90860270481454,996174.9540364366,440579.38547886594,1510.69934,638.8575124531327,1542815.435400301,637128.9252323464,0.37996,100000,0,1006281,10511.877402640815,0,0.0,0,0.0,38441,400.8440581648003,0,0.0,39699,409.9218619421695,1242297,0,44723,0,0,8704,0,0,79,0.8252548888517467,0,0.0,0,0.0,0,0.0,0.05325,0.1401463311927571,0.292018779342723,0.01555,0.3462226996061582,0.6537773003938417,23.84011802780035,4.13201008775233,0.3111638954869358,0.27458432304038,0.2114014251781472,0.2028503562945368,11.291574962402056,6.1736329767532245,16.544107266854517,11726.887057627568,48.19510621163391,14.262954001527538,14.90048572409072,9.777813170981668,9.253853315033982,0.5902612826603325,0.8217993079584776,0.716030534351145,0.5696629213483146,0.1053864168618267,0.7644628099173554,0.9225941422594144,0.8682795698924731,0.6818181818181818,0.1604938271604938,0.52,0.7507374631268436,0.6556503198294243,0.5375722543352601,0.0924855491329479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483744860134,0.0046118448392949,0.0068689820310676,0.0092227684556941,0.0114624546129514,0.0136150712830957,0.015682675639849,0.01779461159151,0.0199664669679187,0.0220763662055477,0.0242281941126411,0.0263079529701699,0.0283957092756574,0.0305193333745339,0.0327040132054059,0.0346741354720023,0.0365515241882041,0.0388262881570482,0.0408052909612744,0.0427280967711686,0.0569498674127743,0.071524980381899,0.0843321693354725,0.0975071232559851,0.1092471530999578,0.125144120415913,0.1364900142199206,0.1474999733869851,0.1582326485701161,0.1685434227741672,0.1808569059643153,0.1921500340691549,0.2028682954409542,0.2126428610488325,0.2218261434025371,0.2310572077310738,0.2402883638920197,0.2483491759941504,0.2569566648880008,0.2630071708401109,0.2698401675867736,0.2758491669102602,0.281404122955376,0.2859316591584395,0.2907523225453883,0.2949175925697815,0.2985595755065263,0.302839557980137,0.3053326430235568,0.3085543075115822,0.3066664870617078,0.3043908880818752,0.3015412358062607,0.299895914650013,0.2974335335752097,0.2943764081970479,0.2923303694546146,0.2925247150786613,0.2928079558464193,0.2928576532799771,0.2939182228548952,0.2945083619973905,0.2962699673831228,0.2979766467599608,0.2992755013914212,0.2999064254522769,0.3006482060612953,0.3045445973976994,0.3090832632464255,0.3116465544617339,0.3143636363636363,0.3164283075624043,0.3198829316893953,0.3249018423437028,0.3305607476635514,0.3340759849906191,0.3402830619388221,0.3420052031218731,0.3397260273972602,0.3484904957137532,0.0,2.517525050201804,52.238365909049925,157.86141918011603,221.4456868335385,fqhc3_80Compliance_baseline_low_initial_treat_cost,26 -100000,95778,46681,444.20430579047377,5407,55.096159869698674,4257,43.84096556620518,1632,16.663534423354005,77.37208356525132,79.71114476051181,63.35007434272507,65.0795540945878,77.16485526518227,79.50728061133512,63.27276273285887,65.00598994564382,0.2072283000690475,203.8641491766953,0.0773116098662072,73.5641489439871,221.05116,154.83199764026185,230795.3392219508,161657.16306486024,449.31118,297.4642464577183,468470.0453131199,309929.5312678468,441.69358,215.7453198291749,457198.0935079037,222151.64407387943,2750.16005,1288.1055210933089,2835020.4431080204,1308516.9361370136,994.65534,450.4232173535024,1024375.3993610224,456155.492406336,1585.25332,672.2587281294342,1620332.7904111592,671799.9738174562,0.38016,100000,0,1004778,10490.697237361395,0,0.0,0,0.0,38498,401.2925724070246,0,0.0,40087,414.68813297416943,1244839,0,44661,0,0,8722,0,0,97,1.0023178600513687,0,0.0,0,0.0,0,0.0,0.05407,0.1422295875420875,0.3018309598668393,0.01632,0.3711945878582873,0.6288054121417127,23.54448974518053,4.144954632181707,0.3133662203429645,0.2757810664787409,0.2006107587502936,0.2102419544280009,11.376580631593209,6.194166835295897,17.478895822256803,11742.661733308963,48.89606579919008,14.28538209052268,15.246039009601686,9.627905908565232,9.736738790500464,0.5903218228799624,0.7981260647359455,0.7106446776611695,0.6100702576112412,0.1195530726256983,0.7684458398744113,0.9323770491803278,0.871536523929471,0.7241379310344828,0.1666666666666666,0.5142474019443514,0.7026239067055393,0.6424759871931697,0.5745007680491552,0.1071932299012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0046024086614492,0.0069614986503216,0.0092949076096341,0.0115936133428251,0.0136321062062225,0.0157987544465849,0.0181541727044512,0.0203053466317854,0.0226077167127213,0.0245129687131716,0.0266220571029783,0.0286172443567287,0.0305295565234403,0.0327823208521959,0.0347471199049439,0.036600765966256,0.0384419947942051,0.0403661526952329,0.0422596799550229,0.0565399787114144,0.0706837222437218,0.0839885108078076,0.0970453494725339,0.1094969712931261,0.1248243732899504,0.136327992539844,0.1472817939203198,0.1570911884262074,0.1669791008323246,0.1789206458483482,0.1914953412456493,0.2014562051727885,0.2115901786299932,0.2209818973670897,0.2303058490022811,0.2397390140530894,0.2487944697352891,0.2564834965542256,0.2632187460649977,0.2689537155873137,0.2749818844814287,0.2800983091302241,0.2861519314537361,0.2911000861242858,0.2948249338502246,0.2987778180862908,0.3026872498570612,0.3066988985986866,0.3102421543569339,0.3084837739093058,0.3058863885839736,0.303574193730028,0.3007595887245841,0.300482303183201,0.2972047220013456,0.2938675517622886,0.2945079791591572,0.2958003859750995,0.2965471755289756,0.2973018423707911,0.2981201229605107,0.2995699553254561,0.2992497606803357,0.3004360743722445,0.3006447587354409,0.3027031646110462,0.3065950293775725,0.3119333496691987,0.3168991756499683,0.321989291224249,0.3242400211472376,0.3288657856829711,0.3319687665832764,0.3339898705683736,0.337181903864279,0.3439016990291262,0.3513354281225451,0.3572195383789586,0.3535580524344569,0.0,2.318655634422531,55.46952788449922,157.76486804789596,218.13584608870207,fqhc3_80Compliance_baseline_low_initial_treat_cost,27 -100000,95648,47106,448.5091167614587,5337,54.6169287387086,4203,43.37780194044832,1608,16.424807627969223,77.25911226955019,79.65542402572079,63.27736057920528,65.04563519722588,77.04877161585324,79.44863800721562,63.19798998834313,64.97031502790627,0.2103406536969458,206.78601850517,0.0793705908621476,75.32016931961039,220.33572,154.34646851402766,230361.03211776516,161369.2586504973,445.97997,295.11981287775126,465702.837487454,307979.1653097821,434.51061,211.1697127456898,451193.7730010037,218339.00116917223,2734.22476,1266.807935075186,2822976.988541318,1288837.4445420944,993.78667,443.4002363771943,1024508.4580963532,449079.34967505257,1574.37952,674.7319404838073,1609998.8290398126,674482.8817724191,0.38076,100000,0,1001526,10470.956005352962,0,0.0,0,0.0,38278,399.59016393442624,0,0.0,39254,407.2536801605888,1242082,0,44580,0,0,8587,0,0,90,0.940950150552024,0,0.0,1,0.0104550016728002,0,0.0,0.05337,0.1401670343523479,0.3012928611579539,0.01608,0.3470895656875112,0.6529104343124887,23.80806407484761,4.168976722292549,0.3123959076849869,0.2612419700214132,0.2146086128955508,0.211753509398049,10.816809627186998,5.5483494029434,17.359431937094588,11816.50121089158,48.00442308370291,13.382982474997448,14.871018133551836,9.959023328204175,9.791399146949455,0.5729241018320247,0.785063752276867,0.7022086824067022,0.5764966740576497,0.1168539325842696,0.7366638441998307,0.9112709832134293,0.8413597733711048,0.7635467980295566,0.1826923076923076,0.5089344804765056,0.7077826725403817,0.6510416666666666,0.5221745350500715,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424673075169,0.0046137154098094,0.0066175425775937,0.0087688993659567,0.0113840988860064,0.0137086753712341,0.0160389093949466,0.018130404156926,0.0204148393494239,0.0224374065961062,0.0245035217404677,0.0266143688841884,0.0286349049617378,0.0308327839129718,0.032961476145757,0.0350931612796492,0.0371383286198216,0.039246826311255,0.0412826860269185,0.0430435961053311,0.0583237537882746,0.0724715099715099,0.086393564850305,0.099035444264263,0.1110852966956374,0.1264113373016713,0.1380346919048681,0.149417694004326,0.1591205594884188,0.1689360422662257,0.181073909479225,0.1930478502080443,0.2033049028898837,0.2131830084694693,0.222245503369027,0.2322495391653896,0.2423866102794746,0.2510292243314271,0.2579133540337348,0.265710641525044,0.2711510340505536,0.2769404009243076,0.2821355674751982,0.2879695089693647,0.2921426394391954,0.2964866969019167,0.3007906626506024,0.3046694641786666,0.3096427598198876,0.3127182308750397,0.3101214574898785,0.3080776715107854,0.3060142509755132,0.303210722739352,0.3010205604129987,0.2976481251056116,0.2939514657101592,0.2931335131933934,0.2936603075658458,0.2938821468785187,0.2948571428571429,0.2957009419617291,0.2967831055484627,0.298292862071268,0.3002034222807227,0.3027908061465108,0.302554806548462,0.3086821753968502,0.3113699157136362,0.3143377260675135,0.3192407247627264,0.3212640940130221,0.3260119234389708,0.3278663744237019,0.3278734295020939,0.3343949044585987,0.3371350364963503,0.3368188216368389,0.3344453711426188,0.3395931142410016,0.0,2.149001657002513,51.782276682620726,159.75527691624853,219.8490262034152,fqhc3_80Compliance_baseline_low_initial_treat_cost,28 -100000,95620,46911,445.9422714913198,5163,52.61451579167538,4034,41.633549466638776,1540,15.770759255385904,77.28554750318864,79.717803350802,63.27381344368566,65.07191337223934,77.0877647153329,79.52256444301017,63.19909279746157,65.00082243513025,0.1977827878557434,195.23890779183264,0.0747206462240868,71.09093710909065,221.88144,155.32926943434728,232045.0115038695,162444.33113820045,452.63272,299.8124886858343,472778.2995189291,312958.0313018812,435.80148,212.2426869510549,452278.8328801506,219310.05089411893,2615.01309,1221.339991580773,2700480.851286342,1242978.9234086324,925.5158,415.9050896002652,953911.482953357,420994.3084262789,1501.6207,639.689486751194,1539264.0033465803,640985.3681755902,0.38079,100000,0,1008552,10547.500522903158,0,0.0,0,0.0,38861,405.7833089311859,0,0.0,39476,409.391340723698,1231554,0,44284,0,0,8746,0,0,89,0.9307676218364358,0,0.0,0,0.0,0,0.0,0.05163,0.1355865437642795,0.2982761960100716,0.0154,0.3484848484848485,0.6515151515151515,23.894404897463957,4.164392492154029,0.3071393158155677,0.2689638076351016,0.2084779375309866,0.215418939018344,11.285220388153922,6.064715137820615,16.46149903342981,11759.73195912586,46.15484442296216,13.25095743400659,14.137358307640634,9.259999303913506,9.506529377401446,0.5790778383738225,0.8165898617511521,0.7134786117836965,0.5576694411414982,0.1116225546605293,0.7459915611814346,0.9362637362637364,0.8680351906158358,0.675,0.1428571428571428,0.5096525096525096,0.7301587301587301,0.6547884187082406,0.5210608424336973,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047976954832689,0.0070970231084758,0.0092697057478274,0.0113030561998941,0.0133443347696319,0.0159133335373504,0.0179593004249754,0.0201082120465168,0.0223569533914361,0.0248253505811388,0.0271783806000822,0.029130211013896,0.0310377173722567,0.033249006143838,0.0352410604383669,0.0375659346922702,0.0397765038218677,0.0416458489466233,0.0436437981787267,0.0576828592634406,0.0712818578135479,0.084644241984805,0.0972829465122894,0.1098353209603988,0.1251337124943073,0.1367408745550183,0.1484893068082475,0.1592436435236709,0.1686633072964232,0.1814150220658847,0.1931646914677914,0.2043004893359634,0.2135985097523559,0.2218571523076583,0.2315948366760269,0.2399789854910465,0.2488758156675795,0.2563263450940287,0.2644011461318051,0.2706823496723702,0.2766039635252666,0.281779937192629,0.2871474858994359,0.2917599260412611,0.2962286729419311,0.2998760532345098,0.3036303210115493,0.3065645173835264,0.3105414609678186,0.3082918293175393,0.3045988070040408,0.302346214511041,0.299695293658931,0.297993886696145,0.2946453173315372,0.2913600177262871,0.2919019170168067,0.2917135741821035,0.2913744177330406,0.2921699136222563,0.2933994959042218,0.294700533082471,0.2952313072142905,0.2955980861244019,0.2963892193885469,0.2984241535815973,0.3033924680983504,0.3090852434041964,0.3132208709297764,0.3162897558338589,0.3192305670888737,0.3239920109848958,0.329698428216891,0.3347874512715797,0.3401749271137026,0.3420893719806763,0.3397513036502206,0.3479793870355302,0.3549232497192063,0.0,2.11813622687627,51.66635762646629,151.0101350873004,206.39315456902716,fqhc3_80Compliance_baseline_low_initial_treat_cost,29 -100000,95818,46647,442.7873677179653,5304,54.186061074119685,4168,43.00862050971634,1618,16.5939593813271,77.35864855579545,79.6629176655069,63.35358995694328,65.05410157010559,77.1470283624208,79.45163230244131,63.27400476483632,64.97645895001155,0.2116201933746566,211.28536306558487,0.0795851921069541,77.64262009403922,222.66552,155.93869881907045,232383.8109749734,162744.68139500977,448.45087,296.70177009898225,467531.2989208708,309159.0725114094,435.98659,212.3791994406196,451803.2937443904,219138.68523643332,2708.76982,1277.1200861279694,2797461.666910184,1303327.230925264,934.67986,427.0557920035069,964130.5808929428,434351.1365333301,1573.41992,673.4946531668564,1615193.8049218308,680561.8916601774,0.37937,100000,0,1012116,10562.900498862427,0,0.0,0,0.0,38569,402.0121480306414,0,0.0,39562,409.64119476507545,1234933,0,44341,0,0,8754,0,0,74,0.7722974806403807,0,0.0,0,0.0,0,0.0,0.05304,0.1398107388565252,0.305052790346908,0.01618,0.3501622791200866,0.6498377208799134,23.670193618844355,4.101794759816841,0.3200575815738963,0.2677543186180422,0.2070537428023032,0.2051343570057581,11.395942731452529,6.164454538444998,17.43537939849655,11722.093618698322,47.891735493173066,13.730825688402524,14.985392541789516,9.69737060404036,9.478146658940666,0.5760556621880998,0.8109318996415771,0.6941529235382309,0.5724217844727694,0.0888888888888888,0.7491961414790996,0.9309623430962344,0.8776119402985074,0.7260869565217392,0.1293532338308457,0.5023939808481532,0.7210031347962382,0.6326326326326326,0.5165876777251185,0.0764525993883792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022771896443535,0.0047199910867121,0.0068229974553159,0.0091935827574659,0.011297827809725,0.0136717359239102,0.0158497331214602,0.0180449440494527,0.0202889075046482,0.0225761574500296,0.0243874959029826,0.0266477937103821,0.0287563569116967,0.0307171450034473,0.0328803563327421,0.0350949671049234,0.037114831446723,0.0392171091506588,0.0412360425863412,0.0431817945221166,0.0578975370074797,0.0720416505493816,0.0855980966555219,0.0980274703910379,0.1100959005163874,0.1254055310739836,0.1372840029683027,0.1487729898201236,0.1595579992526557,0.1684213911999313,0.1814031612041862,0.1921658138704687,0.2030383435916396,0.2133738801317041,0.2228020344804809,0.2321171281005475,0.2408285806761236,0.2489565403264819,0.2570948744425658,0.2639525293255132,0.2701948893620961,0.2755864038578585,0.2813114210613559,0.2860225883029997,0.2900252893687384,0.2937680337369602,0.2973574896151343,0.3014459945822894,0.3052671103400057,0.3085611738625567,0.3053110447118361,0.3023665140326994,0.3005921820713713,0.2985053093259464,0.2971437050226277,0.2942848410757946,0.2920651984886092,0.291903863505865,0.2919890021688269,0.2915185191802605,0.2920609342502201,0.2934033605149367,0.2940474195710456,0.2942422620640442,0.2958510306433422,0.2961553499283201,0.2960430732416033,0.2995090016366612,0.3031632903837377,0.3069346254666772,0.3085685758373422,0.3121218554293599,0.3134928109499592,0.3163940661848611,0.3194224499301351,0.3247223845704266,0.3318671318064614,0.3408080808080808,0.3407079646017699,0.344921875,0.0,1.9532310296217363,54.51205897254818,154.4870588488818,214.4174779572728,fqhc3_80Compliance_baseline_low_initial_treat_cost,30 -100000,95860,47275,449.0402670561235,5331,54.360525766743166,4265,43.88691842269977,1646,16.743167118714794,77.41454581429173,79.70220944603449,63.37712166936033,65.06749423831998,77.20681234380706,79.49987850137532,63.29928470736865,64.99459838162971,0.2077334704846691,202.3309446591668,0.0778369619916787,72.89585669026621,221.37654,155.19554758985657,230937.34612977257,161898.13017927867,454.55456,300.6226580415807,473608.12643438345,313028.2161919264,447.83732,218.1326707654023,463473.3465470478,224634.0888636526,2780.34691,1293.8772583438429,2864091.9570206557,1313424.6800999828,984.61116,442.0036983987306,1017029.3135823075,450987.73043890094,1606.40058,683.1656128929396,1637066.2215731274,679285.7578080196,0.38291,100000,0,1006257,10497.152096807846,0,0.0,0,0.0,38938,405.591487586063,0,0.0,40599,419.88316294596285,1238084,0,44446,0,0,8804,0,0,84,0.8762779052785312,0,0.0,1,0.0104318798247444,0,0.0,0.05331,0.1392233161839596,0.3087600825361095,0.01646,0.3445121951219512,0.6554878048780488,23.54239113578805,4.221311231290932,0.3106682297772567,0.263305978898007,0.2124267291910902,0.2135990621336459,11.313294061520354,5.998444568812258,17.545489859756977,11806.20572600206,48.55062359540258,13.588361571267615,15.06079970086008,10.001903609835656,9.89955871343923,0.5758499413833529,0.804986642920748,0.7154716981132075,0.5474613686534217,0.1185510428100987,0.756214915797915,0.9147121535181236,0.9007832898172324,0.6956521739130435,0.1329787234042553,0.501325381047051,0.7262996941896025,0.6401273885350318,0.5035765379113019,0.1147994467496542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002510502606671,0.0048224507370447,0.0073313931675066,0.0092481676243071,0.0115458888098383,0.0137058781631884,0.0158312958435207,0.017993390183198,0.0203583394622865,0.0225227068161361,0.0246758035769159,0.0269263909404234,0.0288835001335771,0.0310647233201581,0.0331367535466842,0.0352506171181871,0.0371834133421618,0.0392567336490729,0.0412752130718682,0.043396854456187,0.057881400998926,0.0721631168614008,0.0852889410384276,0.0978170707378279,0.1104945031801524,0.1265155675721346,0.139397663110838,0.1501684718487261,0.160477099847439,0.1706042367254267,0.1829232871112449,0.1945789906154045,0.2057784876834979,0.2153526744249576,0.2246106843383557,0.2346217259961713,0.2437835909101046,0.2516800395567842,0.2590366228493008,0.2655110429237128,0.27261897877754,0.2778823556922213,0.2836952407985618,0.2882062586859635,0.293135909239982,0.2975900051748355,0.301638729046785,0.3043218431726576,0.3069410804719779,0.3097779478315939,0.3067868433443196,0.3038597359055746,0.3017674104694816,0.299415963659961,0.2983676071582131,0.2954885610434039,0.2931140509941815,0.2934924787442773,0.2933728173184928,0.2936275293574233,0.2931750852415643,0.2932672449401074,0.2936226933810972,0.294788960678523,0.2953437231092838,0.2962560198850396,0.2963319098390791,0.299679337505059,0.3039055151029509,0.305956607495069,0.3098337762962295,0.3151333438535584,0.3191978144790761,0.3209821094393293,0.3245500092781592,0.3291109547267182,0.327019245340203,0.3294331248739157,0.3302427052086173,0.3338380015140045,0.0,2.3880170017951423,53.93903301497182,154.4242232900446,224.40435045253847,fqhc3_80Compliance_baseline_low_initial_treat_cost,31 -100000,95717,46743,445.14558542369696,5267,53.783549421732815,4143,42.761473928351286,1600,16.350282603926157,77.36002699221102,79.7306118246526,63.33690834044432,65.08818994394771,77.16003406203167,79.53300547328128,63.26258384516591,65.01684190825439,0.1999929301793486,197.60635137132,0.074324495278411,71.34803569331893,221.60864,155.17271358998482,231524.84929531848,162116.148218169,449.1881,296.5778609430768,468781.84648495045,309342.8345467125,432.55915,210.34222391901045,448906.9966672587,217435.6413521732,2684.83849,1243.592838355138,2773144.519782275,1267408.180736063,943.97379,424.8965403855909,974190.9901062509,431886.85435773176,1552.14458,649.1972185976904,1587994.5255283806,651423.2168781193,0.37912,100000,0,1007312,10523.85678615084,0,0.0,0,0.0,38637,403.1154340399302,0,0.0,39289,407.3884471932885,1241536,0,44551,0,0,8847,0,0,71,0.7417700095071931,0,0.0,0,0.0,0,0.0,0.05267,0.1389269888162059,0.3037782418834251,0.016,0.3530050687907313,0.6469949312092687,23.652685745646476,4.100764880283404,0.3101617185614289,0.2671976828385228,0.2172338884866039,0.2054067101134443,11.409240990503104,6.163248162555536,16.95356282392161,11682.007888528797,47.28171296867142,13.489242043243465,14.567697147392538,9.965582712430171,9.259191065605249,0.5788076273231958,0.7976513098464318,0.6856031128404669,0.6022222222222222,0.1081081081081081,0.7512864493996569,0.9387755102040816,0.8168604651162791,0.7572815533980582,0.1428571428571428,0.5112529392005375,0.7042042042042042,0.6376195536663124,0.5561959654178674,0.0991124260355029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269915224195,0.0042271082322172,0.0060582689790243,0.0083707511326926,0.0106086496602791,0.0127591544132621,0.0149439347604485,0.0170650554206046,0.0191668796319959,0.0213251704580355,0.0236318152925013,0.0258516252233013,0.0278377655745459,0.0299425251838576,0.0319032584246476,0.0341501240694789,0.0362381899552461,0.0384663289877937,0.0403869155962348,0.0423461253920455,0.0569259367559213,0.0702914856873724,0.083398898505114,0.0960464455873536,0.1083500263574064,0.1244053534050785,0.1358501373670085,0.1462519155457177,0.1565653868745661,0.1656548321355787,0.1778785561168981,0.1897146814104714,0.2011302505026354,0.2112971625934508,0.220400668513876,0.2301865898898178,0.238742707996386,0.2471331564509601,0.2552653653449409,0.2618022803241907,0.2684717389042395,0.2748346692216016,0.2806615204567754,0.2853244934838022,0.2903448945413946,0.2946794500990757,0.2983908275922429,0.3021391732933614,0.3047604271714115,0.3079152995743895,0.3066724040556168,0.3045008385801875,0.3029923255650215,0.3005503950998945,0.2984662440052857,0.2958573547627421,0.2933950198165195,0.293446081878997,0.2941146418718708,0.294551857846712,0.29410995986185,0.2961184158727659,0.2969371395256834,0.2982046838199351,0.300131406044678,0.3020148132801574,0.304919892244435,0.3084255746135273,0.3129113569528077,0.3174073632789229,0.3200419248997448,0.3235949098621421,0.3258054426024397,0.3275145469659185,0.3272625905965434,0.3343885566889436,0.3365617433414044,0.3323977546110666,0.3327873327873328,0.34006092916984,0.0,2.028221501832557,50.81041269446979,159.22856243375512,215.17270930338103,fqhc3_80Compliance_baseline_low_initial_treat_cost,32 -100000,95747,47236,450.3848684554085,5284,53.98602567182262,4207,43.32250618818344,1667,16.99269951016742,77.33346816806463,79.69486027980845,63.32120940122799,65.06996707036383,77.11714155645737,79.48245739980649,63.23968944810046,64.99251394491894,0.2163266116072577,212.40288000196017,0.0815199531275325,77.45312544489025,221.2155,155.00016018138973,231041.70365651144,161885.13497173772,452.67604,299.028667013644,472178.25101569766,311705.99289131147,441.86267,215.2107354604292,457398.57123460784,221690.4571987028,2758.04097,1285.327080166164,2842696.878231172,1304566.2946788552,1022.74431,460.74812495205566,1052078.3941011208,465118.8182941034,1629.06672,698.2013210187015,1662809.9261595665,696547.3296241561,0.38281,100000,0,1005525,10501.89562075052,0,0.0,0,0.0,38737,403.9186606368868,0,0.0,40033,414.1017473132317,1239582,0,44507,0,0,8683,0,0,92,0.9504214231255288,0,0.0,0,0.0,0,0.0,0.05284,0.1380319218411222,0.3154806964420893,0.01667,0.3611261505143476,0.6388738494856524,23.22172235117198,4.1428989639328,0.3002139291656762,0.2712146422628951,0.2048966009032564,0.2236748276681721,11.12485194616134,5.965790517272734,17.907268012463938,11789.66998016497,48.119295746267646,13.91036620907915,14.350617360769188,9.634297239819048,10.22401493660026,0.5664368908961255,0.7957931638913234,0.6690419635787807,0.5812064965197216,0.1370882040382571,0.7321144674085851,0.9101123595505618,0.8328912466843501,0.7142857142857143,0.1616161616161616,0.4957612750084774,0.7227011494252874,0.5993227990970654,0.530448717948718,0.1305518169582772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0043098203058451,0.0064551488947079,0.0089719360279623,0.0111368767925794,0.0133287173273325,0.015516046160747,0.0177277459125145,0.0198070397776051,0.0219463011679444,0.0239894200506443,0.0262306863097376,0.0282693869995783,0.0305558130194333,0.032437786306797,0.0343469632447182,0.0363551643800155,0.0381646121280039,0.0402441052937996,0.0420350986824975,0.056421391066526,0.0708133170062901,0.0848871494076786,0.0982130649249571,0.1103060600307958,0.1257322927902205,0.1382628809099397,0.1489590429155313,0.1593450607196642,0.1690134803264448,0.1818034923678512,0.1930342768112178,0.2040760840012615,0.2133926911171149,0.2230875849778892,0.2326441567645984,0.2421404010181753,0.2507062226373898,0.2588754710128478,0.265762051986717,0.2719934311718651,0.2774412349432815,0.2815158363010376,0.2867223347030705,0.2912854612080471,0.2957129497465177,0.3002661867806396,0.3047145960641825,0.3080703569580962,0.3111571283485234,0.3088946029267242,0.3063487700975676,0.3041153710868801,0.3013823287255709,0.3003579225639731,0.2974260762984526,0.2945868945868946,0.2948137206630559,0.2950758093156672,0.2962659006975789,0.2974560419004863,0.2990790589441716,0.2996138190168041,0.3007108318292221,0.3026934895333205,0.3022867721832546,0.3028462782712335,0.3053411159229272,0.3094469399213925,0.3121266073194856,0.3146745293717396,0.3203919491525424,0.3241799673243685,0.3279075074161405,0.3298601332957852,0.3245238095238095,0.3285430362329919,0.3248679398618447,0.3296151701059676,0.3271889400921659,0.0,2.429930283407366,54.811044393079584,149.12541828500912,221.6133429827994,fqhc3_80Compliance_baseline_low_initial_treat_cost,33 -100000,95790,46790,444.5140411316421,5183,52.84476458920555,4096,42.11295542332185,1551,15.83672617183422,77.34149214859087,79.6804199874033,63.33904717832892,65.07245397142201,77.135822340804,79.48009276407313,63.26028379284767,64.99873074088528,0.2056698077868759,200.32722333016292,0.0787633854812455,73.72323053672858,221.14862,154.87432768879722,230868.16995511012,161681.10208664497,450.4716,297.96280173156043,469610.63785363815,310399.5573321102,428.44859,209.238527126992,443721.9647144796,215733.58244465163,2641.14822,1237.4784810224155,2717694.5088213803,1252389.577430384,942.70696,428.5156023374335,966903.3719594948,430179.5310159178,1510.83384,650.0803155079878,1542996.2626578975,646762.0448857637,0.38039,100000,0,1005221,10494.00772523228,0,0.0,0,0.0,38680,403.100532414657,0,0.0,38957,403.0170163900198,1243931,0,44623,0,0,8572,0,0,79,0.8247207432926192,0,0.0,0,0.0,0,0.0,0.05183,0.136254896290649,0.2992475400347289,0.01551,0.3436982520699172,0.6563017479300828,24.154377053902643,4.089981417944353,0.326416015625,0.2578125,0.208740234375,0.20703125,11.147896974515588,5.928484784684117,16.553483316016756,11757.46041605578,46.78464485901444,12.853470670636192,15.19084440405244,9.428373461599692,9.311956322726122,0.576904296875,0.7916666666666666,0.7068062827225131,0.5555555555555556,0.1261792452830188,0.7449392712550608,0.9183222958057397,0.8701298701298701,0.7014925373134329,0.1428571428571428,0.5043691017126879,0.6965174129353234,0.6407563025210085,0.5107033639143731,0.1211656441717791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025223619032182,0.004906582322111,0.00723527322543,0.0095516806893468,0.0116904919367146,0.0140571044402114,0.0162267460835509,0.0184010865014449,0.0205945210802409,0.0229267143837229,0.0252232669257349,0.027325378406687,0.0293554956697043,0.031400020603688,0.0332562890810409,0.0349582403043082,0.0370707865633931,0.0393169841072243,0.0411916909999688,0.0429237720448914,0.0578058807571109,0.0721799322430883,0.0855235580147552,0.0980779537405815,0.1102352246859455,0.1254135529083471,0.1370156374238006,0.1475155279503105,0.1583424954367387,0.1679476048064657,0.180325751133024,0.191068339100346,0.2020884721120516,0.2112338918582155,0.2209490295265849,0.2310648004606458,0.2401953133709393,0.2484165843140778,0.2568095588651679,0.2637169153375636,0.2697840895970442,0.2760766276368476,0.282133698876192,0.2872066724903371,0.2916762683290682,0.2955708661417323,0.2988956626024385,0.3027329618299293,0.3059107701051435,0.3093377535717104,0.306402193194646,0.3039502409688182,0.301734201606211,0.2999091053368152,0.2973053181386514,0.2952548330404217,0.2924920557127725,0.2927641289730049,0.2934530311305298,0.2940316078627234,0.2943323475461386,0.2967052502666614,0.2977209467802356,0.2998503762924585,0.3001345571627661,0.3015703533946196,0.3020550490182068,0.305154378535537,0.308819902040241,0.3133426128454961,0.3165061898211829,0.3194985329421179,0.3240658644711843,0.3302364864864865,0.3334279765284876,0.3404331270823417,0.3475100525827405,0.3528085280852808,0.3553144129104062,0.3558352402745995,0.0,2.5171094002566834,53.34059916042875,147.87307296449475,210.43896471182032,fqhc3_80Compliance_baseline_low_initial_treat_cost,34 -100000,95701,46682,443.966102757547,5256,53.677600025078114,4235,43.646356882373226,1610,16.426160646179248,77.3419109081298,79.71035346863793,63.33255108723839,65.08090275271589,77.13282982275717,79.50454659140365,63.253466941705,65.00523200718371,0.209081085372631,205.8068772342807,0.0790841455333861,75.67074553217878,221.89904,155.36886774630352,231867.00243466636,162348.2176218676,450.37547,297.2567575898873,470023.15545292106,310026.1727566977,434.19942,210.96027212335068,449825.3414279893,217434.0964443808,2778.85206,1282.2230709445407,2866432.7018526453,1302573.4014739038,981.20842,439.6508888622975,1009605.6781015872,443720.7540802055,1577.14316,670.1632266956778,1611687.2132997564,670151.5499875633,0.37945,100000,0,1008632,10539.40920157574,0,0.0,0,0.0,38574,402.45138504299854,0,0.0,39424,408.125306945591,1241400,0,44522,0,0,8672,0,0,83,0.8463861401657246,0,0.0,0,0.0,0,0.0,0.05256,0.1385162735538279,0.3063165905631659,0.0161,0.3506635157244137,0.6493364842755862,23.812411547043062,4.233362064992754,0.3095631641086186,0.2644628099173554,0.2059031877213695,0.2200708382526564,10.9378310468499,5.608006539874556,17.116377571112523,11740.572110636447,48.23654650032947,13.697618193012044,14.728361988857287,9.726756322665723,10.083809995794418,0.5678866587957497,0.8017857142857143,0.6895499618611747,0.5871559633027523,0.0976394849785407,0.7242524916943521,0.9046563192904656,0.8228228228228228,0.7741935483870968,0.1083743842364532,0.5057736720554272,0.7324364723467862,0.6441717791411042,0.5251908396946565,0.0946502057613168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0045606567345697,0.0068878068573747,0.0092325505809701,0.0114491397893195,0.0139386657978333,0.0162390287164745,0.018188127704744,0.0207379394930498,0.0228335738483424,0.0249513070220399,0.0270872480464939,0.0292254534984163,0.0313607516690018,0.0331448384034341,0.0349810829250139,0.0371893123446561,0.0391859777295793,0.0410189758253184,0.0429549504486197,0.0574713844097251,0.0715227767543125,0.0846579165486345,0.097619723791192,0.1091960085230269,0.1248809700150242,0.1367388075535752,0.14746087511977,0.1587162530314847,0.1684779693383828,0.1800751839205506,0.1921445115483689,0.2037552760976458,0.2129218521029723,0.2220926779370194,0.2314896820476485,0.2396083111205291,0.2472147586873672,0.2545827850628431,0.2616478020531719,0.2678166504697117,0.273357049241715,0.2793007125440901,0.2839167375699545,0.2887720022837429,0.2930224529302245,0.2980887252323339,0.301675124966612,0.3057061876350835,0.3097289180431518,0.3083659550425763,0.3059240339457856,0.3036993342883627,0.3016680110624568,0.2995407407407407,0.2964518000549635,0.2935190736124696,0.2942476789310802,0.2937275160690842,0.29455374964357,0.2954350020563054,0.2961099932930919,0.2977489268139461,0.2972556206141331,0.2986189504023057,0.3010928961748634,0.3042933606650723,0.3064921202988636,0.3119823108240909,0.3153690234887326,0.3208816178141331,0.3256591162272558,0.3262674550257894,0.3307164634146341,0.3349948274240572,0.3385107896608963,0.3419285932255111,0.3480922260763109,0.3536449638286032,0.3671755725190839,0.0,2.3686108106687422,52.33015464406268,158.23036945310798,221.82137810738823,fqhc3_80Compliance_baseline_low_initial_treat_cost,35 -100000,95706,46856,445.7714249890289,5379,54.85549495329446,4261,43.91574195975174,1583,16.184983177648213,77.33810060160408,79.7209652871128,63.31256206328344,65.07500955434604,77.14197902210795,79.52766787176402,63.23846687706263,65.00459882706716,0.1961215794961361,193.29741534878053,0.0740951862208092,70.4107272788832,219.9241,154.03580885799076,229791.3401458634,160946.86734164078,449.18057,297.1343701945011,468760.2971600527,309892.30580580235,440.97467,215.01718027994957,456825.94612667966,221681.99266342743,2761.774,1284.270696863173,2850237.853426117,1306444.0441175827,975.68985,440.1673850174466,1006372.7039057112,446823.1824728294,1542.61058,651.3839739305521,1579803.4605980816,652516.6688578004,0.38034,100000,0,999655,10445.060915721062,0,0.0,0,0.0,38563,402.3258729860197,0,0.0,40074,414.77023384113846,1245364,0,44728,0,0,8871,0,0,75,0.7836499279042066,0,0.0,0,0.0,0,0.0,0.05379,0.1414260924436031,0.2942926194459936,0.01583,0.3530144051218211,0.6469855948781789,23.67380750624285,4.196766493243111,0.3194085895329734,0.2668387702417273,0.2102792771649847,0.2034733630603145,11.217282738572852,5.833547472827908,16.79235978631304,11733.73808452018,48.7944809366361,14.031341193028048,15.324005109032177,9.99418100688267,9.44495362769321,0.5770945787373856,0.802990325417766,0.6869948567229978,0.5747767857142857,0.1107266435986159,0.7464788732394366,0.917391304347826,0.856353591160221,0.7004830917874396,0.1348314606741573,0.510150622134905,0.725258493353028,0.6256256256256256,0.5370101596516691,0.104499274310595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021082078206401,0.0045242442686143,0.0068430564298332,0.0090859198731629,0.0114569448825307,0.013404088450687,0.0156151194337351,0.0180477391810595,0.0199212558163317,0.0220447447908667,0.0244362637024579,0.0265949254007208,0.0286146126796767,0.0310485448890902,0.0329079711565243,0.0349705994812281,0.0368598703692199,0.038801913121064,0.0407531006663963,0.0428260393987061,0.0570431949202105,0.0714577335775975,0.0845636457120072,0.0975304486842382,0.110315443107394,0.126126602631913,0.1372241086587436,0.1480929360904657,0.1579464820039326,0.1678628517481467,0.1804018746969778,0.1918459256693118,0.2032610588645071,0.2129969034149971,0.2217269765803838,0.2315944631002648,0.2406387849684516,0.2490292518767797,0.2566798769063057,0.2627000137545275,0.2691826666975473,0.2761381861603119,0.2816492794467667,0.2867792466172082,0.2906729519250629,0.2946524394004811,0.2999862219271766,0.3037697401935813,0.3065646165999715,0.3098127143233975,0.3073167451244116,0.3043579873522133,0.3013619607732785,0.2999293163885002,0.2986115231709488,0.2948249223661868,0.2909926702893972,0.2912430627179411,0.2924481695371458,0.2929988435192598,0.2933773968894116,0.2942125666607631,0.2951257697526354,0.2966704578399233,0.2978789619841042,0.300705262342091,0.3005786873676782,0.3038258863147391,0.3080399040634016,0.3099293563579278,0.3123124468132754,0.3149355730606709,0.3173260909820381,0.3217482100238663,0.3230825890801952,0.3284765124140342,0.3335327550104696,0.336494763880656,0.3436076119002948,0.3453049008604564,0.0,2.3928206857892635,52.3991724350184,167.28097881460388,216.6172996381071,fqhc3_80Compliance_baseline_low_initial_treat_cost,36 -100000,95658,46660,443.7266093792469,5234,53.57628217190408,4113,42.49513893244684,1574,16.109473332078863,77.27782633283482,79.68736643593515,63.2892740309558,65.071624544123,77.07949111282488,79.49085032594586,63.214403857942166,64.99958325341066,0.1983352200099375,196.5161099892896,0.0748701730136289,72.04129071233467,220.60456,154.54526186126162,230617.9932676828,161560.20600604403,447.66935,296.7301593536799,467505.8437349725,309715.391659537,440.95447,214.84395069695745,457401.51372598216,221947.67169166636,2671.36507,1250.7946089273305,2763284.701749984,1278233.3092133747,951.91855,428.2670587265687,984865.9495285288,437445.4606269925,1527.00604,647.1292506215724,1565425.3695456733,650930.4918581671,0.37955,100000,0,1002748,10482.636057621943,0,0.0,0,0.0,38430,401.2419243555165,0,0.0,39962,414.24658679880406,1242074,0,44578,0,0,8769,0,0,82,0.8572205147504652,0,0.0,1,0.010453908716469,0,0.0,0.05234,0.1379001449084442,0.3007260221627818,0.01574,0.3511785126987027,0.6488214873012973,23.73965222305172,4.215443660101644,0.3146122052030148,0.2652565037685387,0.2178458546073425,0.2022854364211038,11.745424352148762,6.487330981335645,16.797835433231505,11734.340172451974,47.27056117743257,13.25922417424556,14.822211991367146,9.976525675605796,9.212599336214067,0.5827862873814734,0.7919340054995417,0.6986089644513137,0.5904017857142857,0.1201923076923077,0.7545304777594728,0.921875,0.8607954545454546,0.7619047619047619,0.1311475409836065,0.5108658157985512,0.7013996889580093,0.638004246284501,0.530827067669173,0.1171032357473035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001975964169183,0.0044114067824111,0.0066899478204373,0.0089941766517271,0.0113434050562083,0.0135186071861533,0.0158286588475267,0.0180988080525396,0.0203760152206378,0.0226180842236813,0.0245128205128205,0.0266652971085203,0.0288316098163296,0.0309501478969771,0.0329854120853594,0.0351450586957646,0.0373141288016165,0.0392694348399422,0.0412690814871853,0.043227124864459,0.0578683385579937,0.0721250013090787,0.086278378974106,0.0989834361122219,0.1113409242003735,0.1272494389634585,0.1387410923843204,0.1489867240607752,0.1597484411264532,0.1689195718227595,0.1811980732550997,0.1921502815071459,0.2029648011493502,0.2130171687439132,0.2223274040154984,0.2313496504271326,0.2401509316007457,0.2479830769750093,0.2551518315101448,0.26296453137697,0.2682867613905684,0.2743537605758893,0.2794234157531898,0.2850536706919686,0.2899253051557661,0.2939087984023077,0.2979189348149816,0.3010100239149239,0.3054105516767917,0.309011290492772,0.3070684754347914,0.304646164021164,0.3024925589990266,0.3001330710483684,0.2974661885703233,0.2945271648290985,0.2909578094528389,0.2904276315789473,0.2912518389270929,0.2923486527053106,0.2936030720239768,0.2939699982212384,0.295095350735802,0.2961153133855456,0.2972064893923394,0.2981485809249305,0.29830199948804,0.3029083477440654,0.3068469991546914,0.3112896170517358,0.3139815278220119,0.31864764923402,0.3231867718902668,0.3254397319728927,0.3320198892954311,0.3374836950077078,0.3413549969343961,0.3493779318784418,0.3522727272727273,0.3611111111111111,0.0,1.9827453126677783,53.1700504267566,154.19384238303198,211.7965452279739,fqhc3_80Compliance_baseline_low_initial_treat_cost,37 -100000,95828,47031,446.8005175940226,5298,54.18040656175648,4211,43.4632883917018,1556,15.903493759652712,77.39792083527668,79.70192465505134,63.37134666233783,65.07168258117288,77.1952011951495,79.50088153278199,63.29422723787195,64.99735299321084,0.2027196401271851,201.0431222693541,0.0771194244658772,74.32958796204048,221.18382,154.8865969864839,230813.35309095465,161629.79190475008,451.39341,298.7221101962709,470597.26802187256,311279.21922222193,435.81512,211.92663923489704,452045.44600743,219053.462923527,2721.76107,1266.4668075251386,2809773.1873773844,1291333.101361288,974.3132,436.13327959048144,1004313.6452811288,442795.7774804324,1519.62304,654.5907099866048,1554794.882497809,657732.3360643988,0.38069,100000,0,1005381,10491.516049588849,0,0.0,0,0.0,38839,404.8190507993488,0,0.0,39470,409.0662436866052,1243286,0,44544,0,0,8693,0,0,77,0.8035229786701172,0,0.0,0,0.0,0,0.0,0.05298,0.1391683522025795,0.2936957342393356,0.01556,0.3377280115586057,0.6622719884413942,23.587720812930637,4.119797827586408,0.3049156969840892,0.2821182616955592,0.2063642840180479,0.2066017573023034,11.105271066261684,5.907413493104614,16.783768953885744,11715.823576092103,47.92287124281233,14.418112750992847,14.37129277251858,9.618397524376649,9.515068194924256,0.581334599857516,0.7920875420875421,0.690809968847352,0.6075949367088608,0.1057471264367816,0.7317473338802297,0.9051546391752576,0.8408408408408409,0.746268656716418,0.115,0.5200534759358288,0.7140825035561877,0.6382754994742377,0.5658682634730539,0.1029850746268656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020146594314408,0.004245660610605,0.0063289213448957,0.0082856939776408,0.0106742029928432,0.0129856913150556,0.0152839762792688,0.0174037235399132,0.0194641981363413,0.021536730100266,0.0239846727593131,0.0258533132252008,0.0283357134784708,0.0304296372523797,0.032488146773861,0.0347024325775409,0.036746981719618,0.0388262974057068,0.041006843127278,0.0430664834936097,0.0579049486772928,0.071435295102028,0.0850695718734599,0.0974514792774985,0.1094784331913817,0.1252537212449255,0.1368051578969693,0.1481442058989451,0.1579920090592483,0.1672691387688116,0.179903069466882,0.1913225017848257,0.2021614334174132,0.2115771518544436,0.2204625688739318,0.2302922940655447,0.2397689511362876,0.2477795516380725,0.2555637435519528,0.2619818541697653,0.2679605590169809,0.2740622188993119,0.2796268489069132,0.2836492437296573,0.288483217571548,0.293363174657829,0.2977490917716383,0.3025876619668261,0.3070033730953642,0.3106819108766298,0.3094896385218966,0.3072873827932226,0.3048073549020983,0.3027111034363667,0.3007814812622106,0.2987430486782966,0.2948199014064542,0.2943338287898339,0.2943467464879757,0.2945569642761882,0.2956935123042505,0.296982800982801,0.2976267372325131,0.2980098504602081,0.298620275944811,0.2990855717774198,0.2996268550431538,0.3048062698687482,0.3069591421963697,0.3096718001504414,0.3136960087479497,0.3157334468809878,0.3189264112903225,0.321023376227823,0.3228146194423512,0.3258785942492013,0.3302304288112315,0.3342031312725813,0.330446549391069,0.3329575347613679,0.0,1.8975897799257475,53.37787938774397,153.411442873499,221.7075841443502,fqhc3_80Compliance_baseline_low_initial_treat_cost,38 -100000,95554,46721,445.96772505598926,5268,53.99041379743391,4162,42.991397534378464,1600,16.336312451598047,77.19945181010942,79.67071350578605,63.224607941291474,65.05361113567679,76.99273735739447,79.46574465790812,63.14645550308119,64.9787212606335,0.206714452714948,204.9688478779359,0.0781524382102816,74.88987504328293,218.51676,153.01992303548937,228684.0529962116,160139.73568399998,442.93059,292.87511724842483,462959.9807438726,305922.8826332966,430.04745,209.78211315660167,446679.25989492855,216933.91162122224,2709.66986,1258.2917654546343,2801194.800845595,1282415.6675664063,956.34692,433.15186178856464,986866.8187621658,439378.7379034629,1556.9281,670.0694324685763,1592269.8578814075,669803.8060676642,0.37834,100000,0,993258,10394.72968164598,0,0.0,0,0.0,38071,397.8169412060197,0,0.0,38976,404.4623982250874,1251536,0,44946,0,0,8771,0,0,76,0.79536178495929,0,0.0,0,0.0,0,0.0,0.05268,0.1392398371834857,0.3037205770690964,0.016,0.3405600722673893,0.6594399277326106,23.665201839265567,4.183863004141479,0.3212397885631908,0.263094666025949,0.2044690052859202,0.2111965401249399,11.41020551459832,6.190737616778858,17.31675981534981,11709.419824327018,47.63729101735414,13.397744395336192,15.142049779464354,9.336784580376904,9.760712262176677,0.573282075925036,0.7780821917808219,0.706058339566193,0.5875440658049353,0.1023890784982935,0.7384744341994971,0.8820861678004536,0.8932584269662921,0.7409326424870466,0.1527093596059113,0.5069046817110138,0.7079510703363915,0.6381243628950051,0.5425531914893617,0.0872781065088757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023922717458515,0.0042105476755747,0.0065399301324234,0.0086424272002602,0.0110151891517693,0.0133437990580847,0.0156758687554217,0.0178111587982832,0.0200266066311911,0.0220744217505815,0.0239280618372563,0.0259426444428449,0.0278470062408601,0.0299248011718226,0.0319630456349206,0.0337032129844319,0.0358102151931553,0.0379335072385446,0.0400195827213732,0.0421347141604376,0.0565899581589958,0.0700976228674489,0.0837546644242392,0.0965607350585855,0.1085145961485615,0.1232520911297931,0.1352090203169875,0.1467264286857691,0.1572942222603143,0.1668136453583412,0.1797690920283829,0.1909852612385769,0.2025835733612638,0.2118323332272891,0.2212411844559471,0.2311964720127078,0.2393858687137709,0.248075924797436,0.255732444211796,0.262487509619029,0.2688386550528305,0.2751184389511703,0.2809086056580274,0.2860299238694493,0.2910888437047228,0.295247037892734,0.2998870056497175,0.3035532088562391,0.306369335808206,0.3101418993083565,0.3073133200151179,0.3046709129511677,0.3021822234134093,0.3004876213627353,0.2985661321302542,0.2953045880006137,0.2925777347899853,0.2933677665559101,0.2941206692812248,0.2959859634045905,0.2964487034949267,0.2973101453868399,0.2977417048656377,0.2986171810215379,0.2995009522891101,0.3000209128457154,0.3003513382273129,0.3043218607575043,0.3085812638308335,0.3118177503559563,0.3171205347062277,0.3212143533620962,0.3267110917356916,0.3292821016079112,0.3329001113999257,0.3369297525507212,0.3424451787323521,0.3385437277404036,0.3424177010253643,0.3452695062193743,0.0,2.1445771504726614,52.13359814673894,154.22154436718452,220.85303056503915,fqhc3_80Compliance_baseline_low_initial_treat_cost,39 -100000,95677,47062,446.80539732642114,5323,54.27636736101675,4174,43.00929167929596,1632,16.61841403890172,77.33990302576841,79.73111041040988,63.32261558699434,65.08922192554344,77.13066457384518,79.52613719904967,63.24380970555982,65.0148344367693,0.2092384519232268,204.97321136021185,0.0788058814345191,74.38748877413559,220.32758,154.42831444788507,230281.55147005027,161404.7819871286,448.35417,297.3014237188235,467924.4855085339,310048.0271317073,439.85323,214.1536513665118,456167.804174462,221008.37854663527,2729.53785,1270.183765765507,2813619.783228989,1288597.3754157708,1001.14287,452.1003212393537,1027179.4370642892,453467.3303984638,1594.93704,677.0085078285532,1626358.9577432403,672879.4771975935,0.38287,100000,0,1001489,10467.343248638648,0,0.0,0,0.0,38503,401.74754643226686,0,0.0,39913,413.59992474680433,1244804,0,44588,0,0,8735,0,0,71,0.7420801237496994,0,0.0,0,0.0,0,0.0,0.05323,0.1390289132081385,0.3065940259252301,0.01632,0.3398493543758967,0.6601506456241033,23.75353163318516,4.1458620992669575,0.3001916626736943,0.2625778629611883,0.2194537613799712,0.2177767129851461,11.284060740122785,6.035572129133474,17.396132698068932,11822.84006284201,47.65767252166151,13.38942131520698,14.197483892097946,10.140699118834034,9.930068195522548,0.5754671777671299,0.8056569343065694,0.704708699122107,0.5796943231441049,0.1155115511551155,0.7429048414023373,0.9155251141552512,0.863768115942029,0.7387387387387387,0.1398963730569948,0.5080645161290323,0.7325227963525835,0.6442731277533039,0.5288184438040345,0.1089385474860335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044194414880137,0.0067782163549837,0.008958680372161,0.0111853411020611,0.0134469349946049,0.0157581440861091,0.0177492447129909,0.0198826463853451,0.0222010685991524,0.0242759751909375,0.026884148719949,0.0291419874958868,0.0312612659010145,0.0332538625878564,0.0354742653901031,0.037649057737534,0.0398173136807141,0.0418625941492239,0.0442632862831766,0.0598165597643273,0.0735568165162587,0.0861851906250655,0.0987271197138649,0.1111486201367204,0.1265816089035588,0.1381146888759217,0.1492256107296822,0.1592681207408515,0.1686753447277562,0.1805091864647726,0.1930247908843994,0.2040392395701918,0.2134266345943581,0.2220632422378022,0.2318291575286325,0.2410607700288956,0.2503768702891213,0.2582782208206187,0.2653061224489796,0.2722772277227723,0.2783305079791898,0.2837777094324445,0.2894777808379935,0.2947971267715006,0.2977557828907683,0.3017639043416299,0.3049858961652817,0.3085283956368153,0.3115398309443118,0.3089044690557253,0.3066338593500852,0.3048857734048393,0.303155066308399,0.3009519849108164,0.2975786480785105,0.2939828714091584,0.293919084995166,0.2944580610021786,0.2943865390772295,0.2945955031000224,0.2954460362188897,0.2963759341989896,0.2980243330728876,0.298647967147763,0.3003435174100869,0.3027277640299229,0.3058801356954391,0.3077973938629676,0.3118932996606424,0.3152468800868149,0.3191680304070105,0.3253079857419799,0.3253722318796765,0.3327428677978743,0.332549388523048,0.3344007319304666,0.3289902280130293,0.3340744858254585,0.3397239263803681,0.0,2.311148346580325,52.02848980451613,155.60538887819044,218.86540706819983,fqhc3_80Compliance_baseline_low_initial_treat_cost,40 -100000,95796,46827,444.96638690550753,5155,52.76838281347864,4025,41.56749759906467,1540,15.783540022547914,77.331780499572,79.67248382180527,63.32970022966426,65.06271120852595,77.13432111115372,79.47572935929028,63.25671949115544,64.99154878816543,0.1974593884182809,196.7544625149884,0.072980738508825,71.16242036052256,220.69982,154.6080114152781,230385.21441396305,161392.97195632188,446.95901,296.1481834871479,466134.98475928017,308705.8368691259,433.00787,210.6016064787164,448938.0245521734,217382.8747660204,2595.60555,1213.9124986865536,2682259.739446324,1240050.084897348,921.88175,420.2796856589967,947838.0203766336,424285.3118458344,1494.17522,632.215130151623,1532939.2458975322,637847.4504414952,0.37883,100000,0,1003181,10472.05520063468,0,0.0,0,0.0,38467,401.0814647793227,0,0.0,39216,406.3008893899536,1244949,0,44734,0,0,8726,0,0,81,0.8455467869222096,0,0.0,0,0.0,0,0.0,0.05155,0.1360768682522503,0.2987390882638215,0.0154,0.3538060673739066,0.6461939326260935,23.802919538648812,4.066747335311562,0.3257142857142857,0.2688198757763975,0.2077018633540372,0.1977639751552795,11.239251069977,6.066024790436238,16.531838113343753,11670.037711570669,46.25496898991094,13.182650423663532,14.940256676600669,9.367708816831618,8.764353072815119,0.595527950310559,0.8160813308687616,0.7109077040427155,0.5873205741626795,0.114321608040201,0.7620253164556962,0.9364705882352942,0.8784530386740331,0.7342342342342343,0.1363636363636363,0.526056338028169,0.7382039573820396,0.6469968387776607,0.5342019543973942,0.1080645161290322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575082299316,0.0043591095251611,0.0066871645001877,0.0087975943760412,0.0114111365369946,0.0137577775741097,0.0161905344507656,0.0180897545836906,0.0199137208398928,0.0221835491631263,0.0242854799688358,0.0262439164630264,0.0284101425134184,0.0309741350006695,0.0330873626090097,0.034941901335649,0.0369933097205824,0.0391213258935053,0.0413051384631371,0.0431672653443698,0.0581931633206728,0.0712268591151553,0.0847676149346973,0.0972165305929451,0.1087907109064663,0.1238852022486157,0.1359999152120229,0.1463523557370251,0.1557251093800021,0.1661810078848131,0.1790119470455279,0.1908418411489877,0.2017374097590676,0.211200769752236,0.2201989305283542,0.2290736699859328,0.2370138199502526,0.2456964886045491,0.2538602816134956,0.2610706069519635,0.267609052451513,0.2728547392035894,0.2786030229202639,0.2827110360441298,0.286576260486348,0.2911613920930691,0.2959685595203825,0.2997682532406346,0.3036505427882996,0.3085276227420865,0.306485679307979,0.3046333054025467,0.3025751374766184,0.2997487654855756,0.2985216410378198,0.2960898986496831,0.293267251480508,0.2936937824174381,0.2940462763594108,0.2951547347404449,0.2954039127585884,0.2966278840465391,0.2974896886711471,0.2973226447535895,0.2972459410703548,0.2975219532532506,0.2988904694167852,0.3025915828397731,0.3064679395441376,0.3112349778621125,0.316157443137967,0.3186277109072591,0.322429906542056,0.3268674882093412,0.3260155736935922,0.3330580462482303,0.3416424529744609,0.3398758261566192,0.3475760065735415,0.3524366471734892,0.0,1.7273806223278847,52.13956786759693,152.11493960611702,206.0260418957365,fqhc3_80Compliance_baseline_low_initial_treat_cost,41 -100000,95689,46790,445.47440144635226,5303,54.1859565885316,4209,43.41146840284672,1616,16.43867111162203,77.34192318165195,79.71654819924476,63.32298576779221,65.07470743875382,77.13309837256125,79.51382216679359,63.243390942251104,65.00072673790181,0.2088248090907001,202.72603245116727,0.0795948255411005,73.98070085200459,221.13322,154.9016588592692,231095.75813311877,161880.31942989185,449.60963,297.2995540681208,469306.6914692389,310134.7752428769,436.08094,212.56117178085688,452640.219878983,219694.6129538137,2711.16388,1260.625033991873,2796964.280115792,1281080.1726980791,942.58846,423.7319757401738,969032.5951781292,426823.2572240236,1563.84092,666.0418299435972,1592906.227466062,659159.5157240517,0.38052,100000,0,1005151,10504.35264241449,0,0.0,0,0.0,38676,403.58870925602736,0,0.0,39543,410.16208759627546,1240069,0,44438,0,0,8770,0,0,86,0.8987448923073709,0,0.0,0,0.0,0,0.0,0.05303,0.1393619257857668,0.304733169903828,0.01616,0.3576971665764302,0.6423028334235698,23.722209426882863,4.1144318514848575,0.3138512710857686,0.2646709432169161,0.2200047517224994,0.2014730339748158,11.57784673189022,6.357819289530889,17.15484233135482,11714.15154445107,48.03820203796976,13.618395010197805,15.00479543570751,10.305815810348552,9.109195781715885,0.5792349726775956,0.8114901256732495,0.6805450416351249,0.591792656587473,0.1025943396226415,0.7628951747088186,0.9177777777777778,0.877906976744186,0.7850877192982456,0.1277777777777777,0.5058197539075491,0.7394578313253012,0.6110542476970318,0.5286532951289399,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021870538562012,0.0044394441572657,0.0066952737453969,0.0090600686615068,0.0114813948521859,0.0134287634134918,0.0156699223130722,0.017930626040252,0.0201848746369994,0.0221983310295397,0.0244852760232958,0.026555488236925,0.0288197480071997,0.0307776323788523,0.0327642091789334,0.0348293691830403,0.0368260216501786,0.0387390099338779,0.0407254877490744,0.0427773493674579,0.0570458581426929,0.0705340314136125,0.0838546477454026,0.0959381248026938,0.108367366321588,0.1230604771279185,0.1345106242898557,0.1452420523310321,0.1561183690051102,0.1664716302539052,0.178693898677939,0.1908578856152513,0.2025932458031223,0.2126299660720149,0.2214467354330188,0.2306839964985761,0.2393600392997499,0.2478273595100864,0.2551871220973103,0.2617081467398151,0.2687496383729676,0.27502691065662,0.281307338092025,0.2862092529762262,0.2909685180009963,0.294822975587514,0.2992274850066985,0.3024835869509898,0.3059021703919663,0.3092773978931805,0.3067683970721054,0.3051106761860132,0.3034024732441235,0.301663393785376,0.2995211338601355,0.2965243296921549,0.2941390090630625,0.2935515075994819,0.2945302500213329,0.2947838940038823,0.2961848327943623,0.2959373025900189,0.2969514490026345,0.2983184832853219,0.299973638171927,0.3001245330012453,0.3016542972069571,0.3056232427366448,0.3111505780749408,0.3155406736261572,0.317976920302921,0.322336227308603,0.323148206123599,0.3259710014273909,0.3278703703703703,0.3281195689954814,0.3295589988081049,0.3316215682401738,0.333423545331529,0.3360443622920517,0.0,2.2494585455527405,52.284771084593054,159.31163495755106,218.2337634153652,fqhc3_80Compliance_baseline_low_initial_treat_cost,42 -100000,95735,47023,447.0569802057764,5336,54.53595863581762,4193,43.18169948294772,1610,16.40988144356818,77.32392886815877,79.68906258865088,63.31606620966248,65.06534568224673,77.11720850700975,79.48672454260635,63.23791087387679,64.99200136263322,0.2067203611490242,202.33804604453096,0.0781553357856879,73.34431961351129,221.58158,155.26643426003636,231452.3632945109,162182.88072286666,450.0564,297.80885591186313,469455.2253616754,310425.4400103069,435.59319,211.71302863639016,451577.9391027314,218464.01707986672,2751.65049,1273.5764684943924,2836041.426855382,1292161.6383797969,976.54259,437.4385731664883,1008202.8202851622,445229.164326668,1578.51752,670.8746913856274,1610472.34553716,667362.9976207466,0.38223,100000,0,1007189,10520.561967932314,0,0.0,0,0.0,38613,402.6636026531572,0,0.0,39493,409.1084765237374,1238183,0,44448,0,0,8939,0,0,81,0.846085548649919,0,0.0,0,0.0,0,0.0,0.05336,0.1396018104282761,0.3017241379310345,0.0161,0.3501254930082467,0.6498745069917533,24.087004921775545,4.197209820458788,0.3098020510374433,0.2678273312663963,0.2041497734319103,0.2182208442642499,11.386318492709142,6.054552144978247,17.229034701944137,11854.185285072352,47.84292115812424,13.493897506292347,14.799942083005064,9.522837580915564,10.02624398791126,0.5800143095635583,0.8032056990204809,0.7090069284064665,0.5771028037383178,0.1256830601092896,0.7443280977312391,0.9335038363171356,0.8526912181303116,0.7129186602870813,0.1968911917098445,0.5182146373482114,0.7336065573770492,0.6553911205073996,0.5332302936630603,0.1066481994459833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410748832639,0.0048261667460888,0.0072157833844155,0.0093682050031498,0.0115962078365951,0.0139103869653767,0.0161796790571539,0.0184756091336878,0.0206013761514789,0.0226067369714344,0.0249238750422916,0.0271360808230148,0.0293313319899658,0.0312722103766879,0.0331142229147533,0.0349692997870624,0.0369572422936692,0.0391509678758627,0.0412013061292402,0.0431652427589081,0.0576541585750381,0.0723791588198367,0.0858317341470831,0.0986981850301794,0.1111193132685128,0.1268459357677823,0.138641596723364,0.149848267049992,0.1606742293148753,0.170887297366841,0.1832255008558418,0.1943765545582351,0.2056294234678901,0.2159171668798723,0.2246711539307553,0.2352960719387811,0.2438455529516795,0.2516905766526019,0.2592857467193388,0.2657717043643742,0.2718014667547183,0.2777452381510203,0.2833878537903569,0.2880074863230636,0.2923550451349181,0.2967595505063587,0.3013794745216944,0.3053552775725459,0.3081520470868877,0.3112505780537755,0.3091075736949226,0.3066532646710544,0.303750176230086,0.3016052060737527,0.3002362661039868,0.296842008629395,0.2945481561102065,0.2950263752825923,0.2953274215552524,0.2957784111150695,0.2964257020608733,0.2969193751972231,0.2991354827931841,0.3003677699765965,0.3019989454005081,0.3045104967782165,0.3066216905720278,0.3114527769061813,0.313851446222971,0.3161916072842438,0.3187162376866857,0.3223472244229652,0.3249859137294184,0.3298274818401937,0.3298581760120221,0.3287152161042037,0.3336344474555857,0.3391629003733543,0.3339478535686068,0.3389513108614232,0.0,2.271417318770179,49.69966347191217,164.47551229741094,219.594792180574,fqhc3_80Compliance_baseline_low_initial_treat_cost,43 -100000,95797,47188,448.709249767738,5313,54.17706191216844,4197,43.26857834796497,1627,16.5975970019938,77.4066300966336,79.74656069320066,63.35719594835807,65.08815895388467,77.19497830329883,79.53854743332481,63.27688950514932,65.01194961595913,0.2116517933347808,208.01325987585528,0.0803064432087481,76.20933792554752,220.87472,154.8913455290405,230565.3830495736,161687.05233884204,451.24698,298.8330081301416,470501.4979592263,311400.5116341238,444.57137,216.94633351288985,461361.7545434617,224229.85620025988,2711.65134,1269.7039017505551,2795363.664832928,1290152.188221505,969.96485,441.1872581191218,998869.359165736,446892.1658497876,1576.89494,676.3297011118851,1609522.7407956407,673489.4929874523,0.38125,100000,0,1003976,10480.244684071527,0,0.0,0,0.0,38736,403.77047297932086,0,0.0,40256,417.52873263254594,1240857,0,44542,0,0,8795,0,0,83,0.8559767007317557,0,0.0,0,0.0,0,0.0,0.05313,0.1393573770491803,0.3062300018821758,0.01627,0.3524442846872753,0.6475557153127247,23.61208513105298,4.115057262972292,0.3197522039552061,0.2694781987133667,0.2063378603764593,0.2044317369549678,11.130268778397928,5.90153966943271,17.382785564570902,11755.47319686261,47.81794481288896,13.731570723103935,15.18837697538437,9.590665294768405,9.307331819632251,0.5751727424350727,0.784261715296198,0.6810730253353204,0.5842956120092379,0.1247086247086247,0.744408945686901,0.9184100418410042,0.8086253369272237,0.7309417040358744,0.1666666666666666,0.5032258064516129,0.6860643185298622,0.6323377960865088,0.5334370139968896,0.1135693215339233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277889233388,0.0044716189085599,0.0065860910686922,0.0089308393363339,0.0111268192959794,0.0136147939960489,0.0156909524683428,0.0180880926861634,0.0201868432887689,0.0223402513406197,0.0244534861078372,0.0265663800357091,0.0285314915309981,0.030348576252342,0.0326361471616035,0.034705657610772,0.0368918177962156,0.0388750090708354,0.041006088058678,0.043101204543325,0.0570441787182537,0.0710401372069189,0.0847841353359816,0.0981441002143848,0.1107493915736907,0.1262573964497041,0.1378301606817314,0.149631582864616,0.1602146866130306,0.1702407986631817,0.1831132917998214,0.1944681725290053,0.2052424525636288,0.2140571590822221,0.2224443834111507,0.2320084978312826,0.2404055274868672,0.2488054952838143,0.2563709979245347,0.2634729853479853,0.26976050327848,0.2755074614656492,0.2810777564875925,0.286595370115328,0.2914597272649998,0.2956889222921774,0.299589466306198,0.3027231217328263,0.3061803208639241,0.3087540576918001,0.3068788058414614,0.3040990371389271,0.3020547269987466,0.3003163505568637,0.2991440312124493,0.295651775346819,0.2930210551218358,0.2932496691014265,0.2930935007636178,0.2927628665072194,0.2937023860524894,0.294206509583881,0.2953709285164937,0.29605555062561,0.2969010727056019,0.2991276518866463,0.3023039395392121,0.3051885472689402,0.3076549041400389,0.3112130838922226,0.3150290318224782,0.3185344375720725,0.3176543592925845,0.3197101016138673,0.3240562138330118,0.3250462534690101,0.3218442932728647,0.324703557312253,0.3211282885815025,0.3259962049335863,0.0,2.1096746696095106,54.51809076742596,150.98656862839155,217.5210438728436,fqhc3_80Compliance_baseline_low_initial_treat_cost,44 -100000,95678,46536,442.8186207905684,5274,53.784569075440544,4182,43.02974560505027,1590,16.15836451430841,77.29491858535671,79.69561076217641,63.29396199958445,65.07331237208476,77.09488889742191,79.50410068117434,63.217469821640535,65.00374547351248,0.2000296879348013,191.5100810020789,0.0764921779439191,69.56689857227616,219.89198,153.95441422471794,229825.01724534377,160908.89674190298,444.77663,293.4401241880996,464192.72978114086,306021.22397198074,430.47628,209.57704330499143,445500.1045172349,215760.31572696252,2682.41648,1247.1327716389758,2762098.4552352685,1262111.1995614525,973.96715,437.7361148938109,1001888.4174000293,441579.2204366765,1550.35778,658.5444886925085,1578149.1879010848,650447.6333968499,0.38039,100000,0,999509,10446.59169297017,0,0.0,0,0.0,38195,398.4928614728569,0,0.0,39082,404.2413093919187,1252031,0,44940,0,0,8678,0,0,83,0.846589602625473,0,0.0,1,0.0104517234892033,0,0.0,0.05274,0.1386471778963695,0.3014789533560865,0.0159,0.3514347984017436,0.6485652015982565,23.67183379101438,4.1361473191681695,0.3175514108082257,0.2680535628885701,0.212338593974175,0.2020564323290291,10.849540266686349,5.706445525331342,16.928415144959775,11714.251727324574,47.77897181145894,13.520951055286934,15.063606512321224,9.880531379569728,9.31388286428105,0.5784313725490197,0.7885816235504014,0.6935240963855421,0.5844594594594594,0.1124260355029585,0.7487179487179487,0.9130434782608696,0.8494318181818182,0.75,0.1271676300578034,0.5122841965471447,0.7090643274853801,0.6372950819672131,0.5338235294117647,0.1086309523809523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0047388555714532,0.0069364748895546,0.0089166793757307,0.0110752567769781,0.0130767584316043,0.0154700191844565,0.0173576347030097,0.0196116544584032,0.0215126463628261,0.0238603257970538,0.0255699037404588,0.0276505757535219,0.0297336851218205,0.0319167604281718,0.0339214429023517,0.0360943863539799,0.0383752803388985,0.0405426493690244,0.0425704904362328,0.0572867156243144,0.0709978012773531,0.0839883719709928,0.0967799642218247,0.1089621845192875,0.1244219637887429,0.1359964331588836,0.1463666567278613,0.1570150784915096,0.1657044747290481,0.1778737892321119,0.1905297783933518,0.2020724825209042,0.2122884876043898,0.2211785926398451,0.2321100307855861,0.240345454748329,0.2485989511827327,0.256230909854773,0.2636128115184446,0.2705653517963205,0.2747106122496752,0.2801264369176858,0.2847017341872346,0.2890295614983658,0.293325274155945,0.2974424456378863,0.3010721235167686,0.3054704368850445,0.308823141976447,0.3072880968700023,0.3055769125157889,0.3032808786510849,0.3010532390708411,0.2998041659248709,0.2960395433538396,0.2936837106221308,0.2951040231016604,0.296209703568442,0.2965883948326315,0.2974907707587654,0.2983139293550236,0.2995393634840871,0.2996693919492472,0.3017745780260528,0.3022970823664381,0.3045598425870476,0.3081155865798824,0.3120145546147925,0.3162667300229667,0.3171409059867972,0.3220670686554533,0.3250578450378338,0.3272314674735249,0.3279775805698272,0.3302665723047888,0.3344900422450211,0.3386126704089816,0.3417789757412399,0.3555140186915888,0.0,2.6121883766998035,50.53441755188829,159.26910098288172,220.6626501845172,fqhc3_80Compliance_baseline_low_initial_treat_cost,45 -100000,95723,46870,445.7444919193924,5257,53.80107184271283,4160,42.89460213323861,1661,17.007406788337182,77.3593554540744,79.73052656920149,63.33143217950936,65.08406671050237,77.15104211632722,79.52464332183344,63.253665272268194,65.00941650441939,0.2083133377471853,205.88324736804964,0.0777669072411697,74.65020608297834,221.58444,155.1861866904562,231484.82600837835,162119.8519712045,448.07097,296.2648149960113,467517.0126301934,308929.1033126741,435.75405,212.5321036623917,451713.4544466847,219293.19472195927,2770.57787,1284.4855155211144,2857735.612130836,1305591.0324104242,1000.04296,446.45273459836415,1028204.07843465,450034.7105075764,1629.1824,689.9154202800179,1669522.288269277,693502.2205026842,0.38058,100000,0,1007202,10522.03754583538,0,0.0,0,0.0,38482,401.418676807037,0,0.0,39386,407.9479330986283,1240552,0,44497,0,0,8942,0,0,83,0.8670852355233329,0,0.0,0,0.0,0,0.0,0.05257,0.1381312733196699,0.3159596728171961,0.01661,0.3572602739726027,0.6427397260273973,23.897905598079294,4.215723814711731,0.2980769230769231,0.2637019230769231,0.2067307692307692,0.2314903846153846,10.946385475299342,5.752270809477163,17.773297772190453,11754.481944631449,47.52541610566425,13.464920530039024,14.02546654988343,9.51976000188019,10.515269023861602,0.5677884615384615,0.8012762078395624,0.6975806451612904,0.6023255813953489,0.1038421599169262,0.7430668841761827,0.9312638580931264,0.8660968660968661,0.7149321266968326,0.1428571428571428,0.494546693933197,0.7105263157894737,0.6310461192350956,0.5633802816901409,0.0934210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.004561720072582,0.0068495235775822,0.0091812069630923,0.0116327547461435,0.0136825923625886,0.0156990672307457,0.0178327174734091,0.0200670605794197,0.0222565751082627,0.0244372660616315,0.0265717601865261,0.0285917115930696,0.0307548064044179,0.0326395410032299,0.0347126745712602,0.0366601097422093,0.0389466260086709,0.0409684394361511,0.0430294571059539,0.0577658041476097,0.0719877752658461,0.0854208627056059,0.0985509684746261,0.1109060615008225,0.1262906228842247,0.1374465420818609,0.148906042054831,0.1590258185859622,0.1689255169601562,0.1809620274988147,0.1926083096975339,0.2035270183531152,0.2130171687439132,0.2217351557939488,0.2321254324492149,0.2413346435590495,0.2500843587609385,0.2576751151550907,0.2648365743603839,0.271135272685212,0.277019998363664,0.2827194195294312,0.2869601626988874,0.2911588877975433,0.2950686549534918,0.2989560542601738,0.3023769898237902,0.3054951878298665,0.3095197312075894,0.3072137799454499,0.3042713912924049,0.3027495894563982,0.3006356419696272,0.298693419748154,0.2952314165497896,0.2920484962997953,0.2928211072833842,0.2933276668083298,0.2935243878620004,0.293572842364716,0.2946008233695117,0.2949152542372881,0.295355912487137,0.2971720760514691,0.2985885472173845,0.297640704945992,0.3000628338045868,0.3045838148264874,0.3063770977295162,0.3090372388737511,0.3136423841059603,0.3181215678848703,0.3223540077056735,0.3270897400055912,0.3304816594398219,0.3308578357077902,0.3374551256481851,0.3384865744507729,0.3378633446583616,0.0,2.12256702246751,53.675676282186274,150.59883141150016,217.58271788661705,fqhc3_80Compliance_baseline_low_initial_treat_cost,46 -100000,95876,46938,446.316074930118,5352,54.53919646209688,4245,43.5666903083149,1609,16.4066085360257,77.4394230829848,79.71800069409656,63.39129033748679,65.07646075096187,77.23580724943032,79.51723736078972,63.3151368606276,65.00340983715971,0.2036158335544797,200.7633333068384,0.0761534768591829,73.05091380216311,221.12376,154.78831506342212,230634.92427719137,161446.15993471138,445.22662,294.7320078900957,463640.149776795,306674.1245695363,436.23413,212.66955024572465,449346.4474946806,217528.7727255636,2767.08139,1284.083441745069,2845430.7855980643,1299142.938555814,979.77053,439.8977289948906,1004878.9999582794,441998.60910848377,1569.70764,664.0244202504643,1603114.7523885018,665108.9510950857,0.38152,100000,0,1005108,10483.405648963244,0,0.0,0,0.0,38210,397.7846384913847,0,0.0,39659,407.9853143643873,1248282,0,44810,0,0,8886,0,0,82,0.8552713922149443,0,0.0,0,0.0,0,0.0,0.05352,0.1402809813378066,0.3006352765321375,0.01609,0.3444822035414058,0.6555177964585942,23.469331629395658,4.139766686188204,0.3085983510011778,0.271849234393404,0.2131919905771495,0.2063604240282685,11.27233756709784,6.054132869393389,17.16780495187398,11746.047236997649,48.61475889492692,14.146214700379536,14.93046137952178,10.022108688653184,9.515974126372418,0.5931684334511189,0.7980935875216638,0.7175572519083969,0.6176795580110497,0.1118721461187214,0.750201450443191,0.913978494623656,0.8432432432432433,0.7703349282296651,0.1675126903553299,0.5282956058588548,0.7198838896952104,0.6680851063829787,0.5718390804597702,0.0957290132547864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0045198427175807,0.0069081650250053,0.0090873092426565,0.0114344374764958,0.0137563338149406,0.0160020371785077,0.018094655242758,0.0200237015242531,0.022392029296835,0.0246009139531547,0.0264923765159754,0.028444006001192,0.0305011117516264,0.032588300789707,0.0345190768754194,0.0368297451919595,0.0384097314323607,0.040602128211783,0.0425361489649433,0.057401655235673,0.0715494723644342,0.0847904843674743,0.097477244811187,0.1096912729071713,0.1252190620975063,0.1367261558015146,0.1476188452302526,0.158436740437508,0.168466337767409,0.1799496914841012,0.1921610146602854,0.2025763286230979,0.2119523653446957,0.22074409604644,0.2304976704551742,0.2397918245441982,0.2484162997573906,0.2565075553340432,0.2639719246904971,0.2694719338560492,0.2754365894658199,0.2812271040627733,0.2863965527559997,0.2903445012073924,0.2936622232069224,0.2981936371023189,0.3019454956442232,0.3059212651326244,0.3096061997552728,0.3072076308188352,0.3053428830163826,0.3028341104432335,0.3011865799679926,0.3002844613014104,0.2977368517500458,0.2944565457587524,0.2945398070949812,0.2948981848493612,0.295921267675691,0.2966477738832128,0.2980175431695708,0.2990794351647436,0.299294681275784,0.3002976544826765,0.3015536540599229,0.3024926066751162,0.3076803579195923,0.3118964383371984,0.3161646625670753,0.3168703936724789,0.3195860039928549,0.3205455564551286,0.3247714738989197,0.3303044496487119,0.3346317280453257,0.3403342020542695,0.3449257677445597,0.3462809917355371,0.3538692712246431,0.0,2.690305201532768,53.61935915687678,159.97446859871982,217.4770188489005,fqhc3_80Compliance_baseline_low_initial_treat_cost,47 -100000,95733,46865,446.50225105240617,5367,54.84002381623891,4241,43.652658957726175,1585,16.180418455496014,77.34647984393533,79.69795653100958,63.33814763576003,65.0749640031143,77.14336531551359,79.49819834638163,63.26160706361291,65.00179565497733,0.2031145284217359,199.75818462795303,0.0765405721471239,73.16834813697426,221.51844,155.09554370680638,231391.47420429735,162007.9912953803,448.15952,296.48960713185585,467488.79696656327,309058.9564015082,438.80961,214.37573460276664,454122.5909560967,220639.4460720883,2718.48286,1278.2684442285954,2800435.335777632,1296058.541494151,954.17187,433.3566076546285,978581.3982639216,434641.485371132,1540.70702,656.7010382536007,1573764.8668693136,656287.9464302217,0.38101,100000,0,1006902,10517.794282013516,0,0.0,0,0.0,38492,401.4080828972246,0,0.0,39864,412.12539040874094,1241142,0,44603,0,0,8748,0,0,75,0.7834289116605558,0,0.0,2,0.0208914376442814,0,0.0,0.05367,0.140862444555261,0.2953232718464691,0.01585,0.3421944692239072,0.6578055307760928,23.67815052431721,4.096565862791293,0.3187927375618958,0.2780004715868899,0.2072624381042207,0.1959443527469936,11.420426875506166,6.184091513946106,16.9458783778028,11781.006609577791,48.57624289805292,14.274360685768064,15.317250535831947,9.907691657896606,9.076940018556291,0.5894836123555766,0.806615776081425,0.6863905325443787,0.5893060295790671,0.1239470517448856,0.7801587301587302,0.9314775160599572,0.8900523560209425,0.7711864406779662,0.1485714285714285,0.508889634350889,0.7247191011235955,0.6061855670103092,0.5225505443234837,0.1173780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.004399436385569,0.0064643143463127,0.008858007760915,0.0109728069640205,0.0131027040234565,0.015137614678899,0.0173812755794609,0.0196665678568143,0.0218688890481504,0.0240264865363523,0.0262866175353601,0.0283141077046449,0.0302705709077051,0.0323965168585696,0.0343982883544016,0.036372107470104,0.0382520464377976,0.0401455301455301,0.0421314668416502,0.057430104608189,0.072038599208758,0.085732270247587,0.09872350269179,0.110696438737428,0.1255312400888043,0.1373838516695659,0.1489533782417605,0.1592774865756407,0.1690279712785339,0.1813895407668956,0.1931391739755804,0.2030105423323552,0.2133576650311977,0.2219400934322616,0.2315330374043858,0.2410536058791386,0.2493055165045268,0.2567960063535284,0.2639065452671362,0.2698407190200229,0.2766136576239476,0.2820112207939777,0.2870294893310957,0.2915001882370086,0.2959128400837129,0.2994910527829534,0.3038826552680457,0.30743921553388,0.3113735321282491,0.3095097062545435,0.3071961935670182,0.3053459827712403,0.3035549266489546,0.3013598978592001,0.2989869000979432,0.2954039151248953,0.2954497077268187,0.2962400886691107,0.2968068244554861,0.2975654416023617,0.2991744330384411,0.2991883863950131,0.2986256748917942,0.2993644321861134,0.3007532514921677,0.3019082882369695,0.3062907676869041,0.3080772730454259,0.3118907612770827,0.316407489685814,0.3178138722818898,0.3232632170276512,0.3284771226951969,0.3309548399211341,0.331363743795793,0.338908316861791,0.3379226564081798,0.339543937708565,0.3424443576727841,0.0,2.521448870417981,54.58563474652505,156.05305911723292,218.9497865700108,fqhc3_80Compliance_baseline_low_initial_treat_cost,48 -100000,95740,46930,446.0831418424901,5254,53.69751410068937,4121,42.45874242740757,1590,16.2627950699812,77.41222784566315,79.76698501268345,63.350809200748486,65.08918364456866,77.21453691651178,79.57149297647865,63.27697648325724,65.01825703730515,0.1976909291513777,195.4920362047972,0.0738327174912427,70.92660726351596,220.64614,154.44003481083686,230463.67244620848,161311.72539100822,449.39369,297.6154283448041,468797.5558805097,310268.01817972143,435.38873,212.4452283607994,450595.57133904326,218761.3614967638,2670.35461,1244.8281132333236,2753750.5118027995,1264938.9872724195,938.11333,421.6411993700703,966787.1840401086,427350.5019685165,1546.56426,650.1292766354328,1583269.6051806975,652727.6742457132,0.38214,100000,0,1002937,10475.621474827658,0,0.0,0,0.0,38622,402.7679130979737,0,0.0,39509,408.4499686651348,1245031,0,44651,0,0,8801,0,0,82,0.8564863171088365,0,0.0,0,0.0,0,0.0,0.05254,0.1374888784215209,0.302626570232204,0.0159,0.3598173515981735,0.6401826484018265,23.923593944598775,4.14299128182103,0.317156030089784,0.2647415675806843,0.2111138073283183,0.2069885950012133,11.531723531809028,6.321211670842158,16.84597375063289,11813.694796106382,46.89643099563591,13.31064308373254,14.775712957470256,9.631407000020369,9.178667954412752,0.5882067459354525,0.8258478460128322,0.6985462892119357,0.5850574712643678,0.1184056271981242,0.7646090534979424,0.9465478841870824,0.8575197889182058,0.7323943661971831,0.132183908045977,0.5144528561596696,0.7414330218068536,0.6336206896551724,0.5372907153729072,0.1148748159057437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.0046825115289109,0.0070912632390536,0.0092716711349419,0.0112445226161307,0.0134677049931287,0.0160323705077766,0.0183055620746303,0.0205312158281468,0.0225486182190378,0.0248626711486431,0.0269257616818592,0.0291759190722921,0.0313887029504145,0.0335555234537837,0.0354329894776011,0.0373081781846045,0.0393210632249496,0.0413166431007236,0.0433143047626984,0.058672457352849,0.0725324627763652,0.0859303703859104,0.0991290444734295,0.1113502563777932,0.1263174603174603,0.1377919748697322,0.149032216851564,0.1592349201260885,0.1694138604511407,0.181911281194416,0.1933521004763967,0.2049437272786642,0.2143795428671512,0.2233310202777869,0.232949630713953,0.2413927968800634,0.2489977477477477,0.2564058898992995,0.2636989833927405,0.2699476706492544,0.2758342303552206,0.2820503720528563,0.2877224071457649,0.292063646183535,0.296375161548403,0.3004785167230975,0.3034318204893897,0.3070509428361233,0.3104644744105354,0.3086573645904539,0.3060425112304152,0.3035701770370474,0.3016475459328905,0.3004617268288365,0.2981384393283185,0.2952374968585071,0.2960593778993114,0.2966174901336404,0.2966331098175899,0.2970019665318541,0.2987521026483589,0.2998836532867946,0.3001882405049275,0.301139343090051,0.3017065551338652,0.302101847933418,0.3063432835820895,0.3120269425734324,0.3162326218915214,0.3181307571332284,0.32066558185922,0.3237503880782366,0.3269836508174591,0.3317675232568849,0.3335272896543698,0.3361695775488879,0.3426090388790211,0.3475462590506838,0.3480373831775701,0.0,2.229962441650866,52.83690854208073,148.7732196631773,214.3913424924096,fqhc3_80Compliance_baseline_low_initial_treat_cost,49 -100000,95737,46963,445.9822221293753,5316,54.38858539540617,4226,43.65083510032694,1591,16.336421655159448,77.32373385663094,79.69432710713167,63.321321634088775,65.07531754409564,77.11966986562575,79.49136352989288,63.243601322575685,65.0001213499342,0.2040639910051851,202.96357723879052,0.0777203115130902,75.19619416143541,222.72558,156.0411528033203,232643.1578177716,162989.39052124077,451.84922,298.9062833411292,471457.4824780388,311705.6523084733,442.11073,215.0872570794537,458612.5113592446,222199.9580501349,2708.86419,1268.5976454707888,2800319.2391656307,1296133.90308678,966.90158,439.597581082772,998677.7839288884,447930.1821670934,1540.89318,667.9336794066948,1583269.5822931572,673458.2410831421,0.38038,100000,0,1012389,10574.688991716892,0,0.0,0,0.0,38872,405.4963075926758,0,0.0,40002,414.71949194146464,1232278,0,44213,0,0,8902,0,0,72,0.741615049562865,0,0.0,1,0.0104452823882093,0,0.0,0.05316,0.139754981860245,0.2992851768246802,0.01591,0.3395750810226863,0.6604249189773137,23.68764563964401,4.090731626977193,0.3182678655939422,0.2744912446758163,0.2082347373402744,0.1990061523899668,11.1887963288633,6.034689729628767,17.168775775523528,11755.45150775658,48.48826798005938,14.240092800622673,15.12840412283026,9.733892365905092,9.385878690701368,0.575958353052532,0.803448275862069,0.6973977695167286,0.5409090909090909,0.1046373365041617,0.724,0.9192546583850932,0.8444444444444444,0.6822916666666666,0.1209302325581395,0.5137768817204301,0.7208271787296898,0.6436548223350254,0.501453488372093,0.0990415335463258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884498480243,0.0042390499660267,0.0066585464880227,0.0087901144239172,0.0112119485593358,0.0135582515865497,0.0157059519438665,0.0181998304617364,0.0206558751648891,0.0229709662553126,0.0251869019905446,0.0273287460203348,0.0293500401209801,0.0318415547746875,0.0338969055139241,0.0358516313112517,0.03791621355704,0.0400062250350158,0.0419634223687083,0.043876466543022,0.0587719389832632,0.0725297497566642,0.0859549559945032,0.0993173379335009,0.1118468919702641,0.1267392683442588,0.1385364508189765,0.1494482809989465,0.1590605675470731,0.1681732882955337,0.1801677631933153,0.1923792625930413,0.2037735849056604,0.2134148341734918,0.2227429753339054,0.2325462921945601,0.2404183904457107,0.2481067841172108,0.2556749892282922,0.2621804700551525,0.2684130248896489,0.2745732612073699,0.2806689911943738,0.2852318451810691,0.2896733390791342,0.2936401374705904,0.2972935774076901,0.3010639110183511,0.3054645304182263,0.3088466052190883,0.3069397531993917,0.3039996697899038,0.3023887996844981,0.2999204915070473,0.2980029124193883,0.2951331496786042,0.2923110949620057,0.292450821417457,0.2932032553546497,0.293440142412105,0.2945300231810364,0.2950729098837782,0.2961900173847475,0.2974235212620947,0.2989133048035774,0.2992807255290315,0.3015687393040502,0.306418089059646,0.310827443119879,0.3134554140127388,0.3178269801415202,0.3215751052379176,0.3231584258324924,0.3219188529591214,0.3260381593714927,0.3286845526533506,0.3323777911888956,0.3346661335465813,0.3410748042128004,0.3541430192962542,0.0,1.9078604580755645,54.93581477760127,156.60930881536933,218.28201577442317,fqhc3_80Compliance_baseline_low_initial_treat_cost,50 -100000,95782,46735,444.2797185274896,5305,54.237748219916064,4230,43.63032720135308,1647,16.86120565450711,77.38153749659537,79.72262970520016,63.350937847410606,65.08268271108778,77.1730522154198,79.51520346024284,63.27256878758412,65.00701533896668,0.2084852811755695,207.42624495731832,0.0783690598264854,75.66737212110297,221.45992,155.16958825873087,231212.46163162185,162002.86928517974,448.54055,296.2823798925404,467691.3616337099,308729.581646324,439.00783,213.6314884320915,454635.83971936273,220291.27977998173,2740.09595,1274.3141033744546,2827427.6795222485,1297096.4621478517,991.70309,445.05369384849416,1021463.2185588104,450740.74862551823,1602.1309,679.1268184705082,1641062.4752041094,682385.293340218,0.37935,100000,0,1006636,10509.6573468919,0,0.0,0,0.0,38493,401.3071349522875,0,0.0,39816,412.0607212211063,1242709,0,44573,0,0,8824,0,0,79,0.8039088764068406,0,0.0,0,0.0,0,0.0,0.05305,0.1398444708053249,0.3104618284637134,0.01647,0.3616639770485924,0.6383360229514076,23.673429591368286,4.154782879597469,0.3137115839243499,0.2588652482269503,0.2198581560283688,0.2075650118203309,11.424368328682544,6.190658670334548,17.5178021882915,11660.303590068035,48.3553808955372,13.328523132090982,15.1519574183125,10.312660521649551,9.562239823484155,0.567612293144208,0.7963470319634703,0.678975131876413,0.5698924731182796,0.1116173120728929,0.7293729372937293,0.9297052154195012,0.8567415730337079,0.6915887850467289,0.1044776119402985,0.5026507620941021,0.7064220183486238,0.6138002059732235,0.5335195530726257,0.1137370753323486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787579250136,0.004683033632696,0.0069700904995738,0.009201425916334,0.011204424832747,0.0132536620621558,0.0153096587434256,0.0175139570724338,0.01965092276564,0.0218040804632983,0.0238866230811796,0.0261542567387243,0.0282952909726506,0.0303117664017132,0.0324390671576363,0.0345714728521981,0.0367258239768199,0.0386557060963852,0.0407537839831292,0.0426987349679837,0.0575945734411688,0.0715368927469539,0.0842349142449784,0.0968538522970871,0.1094520547945205,0.1246644827221811,0.1365428226267935,0.147268938830183,0.1573988112388086,0.1668024265289061,0.1789639101467058,0.1910236305629156,0.2019237039452233,0.2114678498054815,0.2203902503409741,0.2300036533117825,0.238514719000892,0.2470407050597479,0.2551430061920207,0.2623431010217742,0.268653092372264,0.2745654943487967,0.2796006718554091,0.2847563166087893,0.2894506881569046,0.2934283569045948,0.2961958898119807,0.3002796491674082,0.3034469378516458,0.3060229533685584,0.3046886555243307,0.3022680752270136,0.29990290305785,0.2977783552033259,0.2959625946266884,0.293020199859426,0.2905531189852648,0.2904137795790299,0.2912540553394595,0.2919382626147807,0.2924436819334626,0.2932446264073695,0.2940881868074539,0.2943668881851835,0.2955932690236254,0.297145081754477,0.2979682053897815,0.3025519435951831,0.3066671306284362,0.310524036379385,0.3142624728850325,0.3188581680033769,0.3182874003390043,0.3241169768325104,0.3304559954963408,0.3294784045315081,0.3307050796057619,0.3305868167202572,0.3372862658576944,0.3446177253708634,0.0,2.101415516512705,52.928715028784765,160.8082704394514,218.4942111878852,fqhc3_80Compliance_baseline_low_initial_treat_cost,51 -100000,95856,46876,444.85478217325993,5387,54.8948422633951,4288,44.15998998497747,1669,17.004673677182442,77.37299817448195,79.67455318066045,63.35320242165369,65.05714359067706,77.16755795592894,79.47209900475018,63.275656920661646,64.98302220061977,0.2054402185530079,202.45417591027604,0.0775455009920449,74.12139005728591,221.71292,155.2954350016413,231297.90519112,162009.0917643562,448.57778,296.28707423584143,467389.2505424804,308514.7870095158,439.85748,214.11793715658516,455194.23927558,220513.5149372048,2790.22089,1302.863225257183,2875367.050575864,1323708.662219562,1005.58087,456.2271160714855,1034289.1629110333,461192.5455408043,1619.38772,688.3747387417375,1651851.4646970455,686964.5379805806,0.38107,100000,0,1007786,10513.541145050913,0,0.0,0,0.0,38506,401.08078784843934,0,0.0,39961,413.1927057252546,1240524,0,44571,0,0,8698,0,0,75,0.7824236354531798,0,0.0,0,0.0,0,0.0,0.05387,0.1413651035242868,0.3098199368850937,0.01669,0.3474772686753432,0.6525227313246568,23.563953760288943,4.1188849712063,0.3125,0.2679570895522388,0.2091884328358209,0.2103544776119403,11.47636134962962,6.256310224247278,17.85395088849803,11808.420419724504,49.023715078885125,14.065992187154745,15.271808901246857,9.808750373541876,9.877163616941647,0.5869869402985075,0.825065274151436,0.7104477611940299,0.5841694537346711,0.1031042128603104,0.754581673306773,0.9333333333333332,0.8636363636363636,0.7867298578199052,0.1170731707317073,0.5176393010220903,0.7514619883040936,0.6511387163561076,0.521865889212828,0.0989956958393113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0046925517143523,0.0067861598855786,0.0090977397802733,0.0115995364251875,0.0138538273615635,0.0159102259639395,0.0182367408586678,0.0208339719420858,0.0230012073587492,0.0251933814866041,0.0272912883334872,0.029402394532655,0.0313632246376811,0.03331821368191,0.0354513254231337,0.0374727127885202,0.0394391884190128,0.0412781158487196,0.0434162886512131,0.0584015431937855,0.072675785535899,0.0860806436405921,0.0989740304745502,0.1105459370655882,0.1259638745114608,0.1380976602238046,0.1489144533991111,0.1593429464943271,0.1695383824096695,0.1823073611708997,0.1946255039941196,0.2051588638759959,0.2148441344019594,0.2240525551300673,0.2336789171706431,0.2428593743026732,0.2500787578757876,0.2579715734428349,0.2643654473639018,0.2705406186759179,0.275360284484372,0.2814962959456581,0.2862960700468336,0.2908797397679273,0.2950839860105413,0.2989088269890131,0.304254399348998,0.3075907761588032,0.3113309589763883,0.3098993378909404,0.3071050278561111,0.3043300596034888,0.3013411567476949,0.2993421541111655,0.2961297231145786,0.2930778231034374,0.2937466210127951,0.2948263522034013,0.2962613158457481,0.2961489616016733,0.2953628039775524,0.2964346066384328,0.2982280619844816,0.2984618324257189,0.2991377747857383,0.30002269246043,0.3063063063063063,0.3098070683459512,0.3145744848198836,0.317733879314224,0.3198548743295825,0.3218620948567138,0.3223799043788419,0.321119879744457,0.3278246601031411,0.3350586086162277,0.3344169036976838,0.33719646799117,0.3419452887537993,0.0,2.2385508342707805,54.66681814450844,157.50604840569312,224.2923192478062,fqhc3_80Compliance_baseline_low_initial_treat_cost,52 -100000,95798,46749,444.8527109125452,5206,53.1848264055617,4180,43.111547213929306,1613,16.440844276498463,77.39816222968327,79.72800629820061,63.35848721039546,65.07982892411599,77.18575223123726,79.51831726269828,63.279107485899885,65.00390341267867,0.2124099984460059,209.6890355023362,0.079379724495574,75.92551143731896,220.96272,154.71780129702515,230654.8362178751,161504.20812232528,448.60318,296.68200555074657,467760.1933234514,309175.3197637856,436.74671,212.49293463379576,453068.31040314,219584.45684155825,2722.76912,1261.7384762738247,2809550.3559573265,1284826.9221845758,965.54395,432.4950279311032,996168.813545168,439983.6277147683,1571.36318,666.8301556205874,1604160.128603937,665736.3022115253,0.37959,100000,0,1004376,10484.310737176142,0,0.0,0,0.0,38577,402.1378316875091,0,0.0,39596,410.509613979415,1245072,0,44706,0,0,8562,0,0,73,0.7620200839265955,0,0.0,0,0.0,0,0.0,0.05206,0.137147975447193,0.3098348059930849,0.01613,0.3698252069917203,0.6301747930082797,23.36542938523495,4.135674039999528,0.3062200956937799,0.2705741626794258,0.2119617224880382,0.2112440191387559,11.279095657347344,5.985031290336326,17.20403948730829,11709.082962508226,47.63640678646168,13.886876404135316,14.489391177061078,9.75176441736168,9.508374787903607,0.5844497607655502,0.7984084880636605,0.70859375,0.600451467268623,0.1143827859569649,0.740495867768595,0.911062906724512,0.8587257617728532,0.6681818181818182,0.1130952380952381,0.5208754208754208,0.7208955223880597,0.6496191512513602,0.5780780780780781,0.1146853146853146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470093779749,0.0043984108967082,0.0065637300653329,0.0084287919408562,0.0105423677120927,0.0128137276853868,0.0150710755591786,0.0174468432436844,0.0195854064712553,0.0218232044198895,0.0238505040570445,0.0259517701385325,0.0282102666872205,0.0306401811445039,0.0329185438724909,0.0347737178030694,0.0367243912026979,0.0385839753626644,0.0405092231748506,0.0423626442287666,0.0574105764013523,0.0716608971208048,0.0851487639695552,0.0974756179586346,0.1096095462978579,0.1252391573205923,0.1358468554459646,0.1475845924664822,0.1580318904659682,0.1674458503109586,0.179809162771663,0.1909932514275826,0.2017643927294851,0.2110161899975966,0.2207214138128105,0.2304245361303813,0.2396962397966011,0.2479645540011695,0.2555300950609161,0.2629770861245663,0.2687661129030393,0.2749970777323203,0.2798665104554975,0.2851100540385099,0.2891213846172519,0.2948048750461652,0.2984225788710564,0.3031180910269116,0.3060313599668806,0.309738128813738,0.3072981115833647,0.3043358795405836,0.3008132369080113,0.2984398881102748,0.2971364269004116,0.2945781385908959,0.2916653517215262,0.2913334314639452,0.2921126184470652,0.2926395216400911,0.2938519541602897,0.2962013332807384,0.2975569012319899,0.29786997509783,0.3000262323229914,0.3019948186528497,0.3021982673476874,0.3071099202392821,0.3113348377017879,0.3159692235220224,0.3211270149455908,0.3253984899328859,0.3299832495812395,0.3346923367308418,0.3375944760660632,0.3408767772511848,0.3417663990304499,0.3487716472009666,0.3504390779363337,0.3525398028809704,0.0,1.9785398545529531,52.92660514070639,152.71898838448388,220.21394434281845,fqhc3_80Compliance_baseline_low_initial_treat_cost,53 -100000,95875,46880,445.4758800521512,5216,52.99608865710561,4094,42.09647979139505,1590,16.198174706649283,77.3584022892406,79.64122988617987,63.35300198276878,65.04178619098954,77.15424335800441,79.44202983596722,63.27507825027095,64.96888997740182,0.2041589312361935,199.20005021265297,0.0779237324978296,72.89621358772536,221.08856,154.91721302879827,230600.6153846154,161582.26130774274,449.72439,297.5225518511114,468467.50456323335,309717.2170546143,433.88118,211.0290327123436,449101.0169491526,217501.8415005268,2679.59498,1254.5209940472678,2755117.653194263,1268730.184143174,955.35364,433.377032805018,980172.370273794,435737.838649301,1557.56358,665.8112040018518,1587023.812255541,659730.768646458,0.38115,100000,0,1004948,10481.846153846154,0,0.0,0,0.0,38560,401.5541069100392,0,0.0,39418,407.7183833116037,1241666,0,44590,0,0,8721,0,0,89,0.9282920469361148,0,0.0,0,0.0,0,0.0,0.05216,0.1368490095762823,0.3048312883435582,0.0159,0.344619326500732,0.655380673499268,23.73786480739828,4.211740776109998,0.3028822667318026,0.2684416218856864,0.2125061064973131,0.2161700048851978,11.433840665680972,5.980800210799026,16.87980174289005,11737.031976407045,46.94852151757392,13.409534155506137,14.281960979589352,9.696541409466253,9.560484973012182,0.574743527112848,0.8007279344858963,0.6911290322580645,0.5747126436781609,0.1310734463276836,0.7493670886075949,0.9370786516853932,0.8688046647230321,0.7156398104265402,0.1182795698924731,0.5036094877964936,0.7079510703363915,0.6231884057971014,0.5295902883156297,0.1344778254649499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025311585618969,0.0048737980160298,0.0072521832621638,0.0095543664774746,0.011516568408213,0.013698490723496,0.0158421288561066,0.0180427354786067,0.0201647897246357,0.0224291804250707,0.024609211051624,0.0265936724692952,0.0286747185933777,0.0309729051371201,0.0329252457800037,0.034763664897681,0.0368776572084699,0.0390518930011296,0.0407510488929506,0.0427287292702719,0.0569328607172643,0.0707136140424198,0.0846328665835803,0.0971393766277409,0.1094946643210045,0.1253710844646347,0.1365389914577018,0.1478539220690828,0.1588342051884274,0.1688055493015127,0.1811475586379202,0.1929380456300912,0.2036118903168286,0.2135000983972186,0.2222112254772587,0.2316248492025721,0.2403854733648612,0.2492410101873299,0.2562336925694838,0.2628678787045629,0.268360699367052,0.2743896018812078,0.2794291804831833,0.2849057508753417,0.2898462660266148,0.2944955485955264,0.2986298968039275,0.3023421679381535,0.3060962483627922,0.3092249557381814,0.306963645673323,0.3044579673431175,0.3023042902616975,0.3010070653508835,0.2994115199429352,0.2956745496875383,0.2927319644751215,0.2937093916125221,0.2949389775539814,0.2952711728559978,0.2953708721897251,0.2958829560690906,0.2967223744483256,0.2966572263229489,0.2965928980746637,0.2981955822876698,0.2993765939359591,0.3048784294141515,0.3087451676940758,0.3117466320018908,0.3151559035163144,0.3191478169384534,0.3222840702983301,0.3258812757515641,0.3298735610492546,0.3286412978647262,0.3281805534085639,0.3317823184301032,0.3398351648351648,0.3424761904761905,0.0,2.346570656108667,51.40702555201997,153.44645053100493,214.37220292271527,fqhc3_80Compliance_baseline_low_initial_treat_cost,54 -100000,95727,47063,446.8122891138341,5306,54.17489318583053,4241,43.64494865607404,1656,16.808215028152976,77.38965647392791,79.75625201215624,63.34469261111818,65.09385660781057,77.18041670547262,79.55346041674595,63.26538064457041,65.02015676227336,0.2092397684552907,202.79159541028943,0.0793119665477704,73.69984553720599,222.44046,155.75033707457973,232369.3837684248,162702.41027768524,453.10637,299.5899507034831,472585.93709193857,312218.4278910946,441.696,214.88872021287852,458053.464539785,221764.38255185488,2725.73916,1274.5913843474025,2804730.3164206548,1289251.5390888036,956.97991,435.8600787328997,984263.290398738,440021.61902301526,1604.72888,681.7579377495431,1630570.0168186612,673045.5754320038,0.38138,100000,0,1011093,10562.244716746582,0,0.0,0,0.0,38901,405.6535773606192,0,0.0,40060,415.0762062949847,1235064,0,44357,0,0,8846,0,0,82,0.8461562568554326,0,0.0,0,0.0,0,0.0,0.05306,0.1391263306937962,0.312099509988692,0.01656,0.3497031840259039,0.650296815974096,23.52501556951395,4.165434330436056,0.3206790851214336,0.2713982551285074,0.2039613298750294,0.2039613298750294,11.26929409886415,5.975073298022866,17.767908003936885,11807.023679191465,48.668995072405394,14.143076653870397,15.501087984335422,9.62864839019419,9.39618204400538,0.5743928318792737,0.7801911381407471,0.6919117647058823,0.5815028901734104,0.1086705202312138,0.7525937749401437,0.9018036072144288,0.8583106267029973,0.6995515695067265,0.1341463414634146,0.499665327978581,0.6871165644171779,0.6304128902316214,0.5404984423676013,0.1027104136947218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498906085406,0.0045821801851119,0.0069921553902515,0.0093565231525692,0.0114132259147364,0.0136348824895116,0.0159460038131748,0.0180786231255295,0.0201978902608553,0.0223762193811224,0.0245907520731469,0.0268155965751596,0.0291550584437613,0.0312522525305571,0.0334598564237973,0.0357072727084818,0.0378673348934495,0.0399522772071791,0.0419585507306628,0.0439707000927344,0.0585968905641464,0.0724962317869703,0.0859100399752384,0.0988353130556461,0.1106164347431609,0.1260180660447208,0.138026525198939,0.1488686915987314,0.1591481908667606,0.1680304573971794,0.1803684680901465,0.1928040588050756,0.2044947973861894,0.2136897927942704,0.2231916906894351,0.2322828542321832,0.241435835675097,0.2497668303536312,0.2578684807256236,0.2643976661709186,0.2712452306625043,0.2768784843561903,0.2825840306339526,0.2872223286097281,0.2912673185645306,0.2960838144951802,0.3000737619863228,0.3033619319987289,0.3068557980759284,0.309753172647365,0.3076209677419355,0.3059581541674108,0.3031180588747997,0.3009907558298842,0.2994387097729662,0.2972997725642239,0.2948754336171554,0.2955332636256698,0.2958009436844427,0.29641127530113,0.2979253420582986,0.2990973312401884,0.3000311688311688,0.3000399254724514,0.302104435282061,0.303750032305585,0.3027950310559006,0.3063594642689894,0.3111033519553072,0.314710769961225,0.3176695146337029,0.3201253518882456,0.3254326561324304,0.3279598110519607,0.3293716602174313,0.3307361321083847,0.3364850667867327,0.3355811186037287,0.3391749797789161,0.3427389014296463,0.0,2.445051813315241,54.35545010533478,162.4521338760298,212.6485146930607,fqhc3_80Compliance_baseline_low_initial_treat_cost,55 -100000,95762,46894,444.8006516154633,5289,54.01933961279004,4205,43.33660533405735,1591,16.259058916898145,77.34687979821054,79.70652397794422,63.33382307926016,65.08146103944989,77.1420741968905,79.5055515932817,63.25724902898104,65.00862613983068,0.2048056013200323,200.97238466252065,0.0765740502791203,72.83489961920964,220.67606,154.5328107696032,230441.7409828533,161371.31950412816,446.50921,295.61502891522514,465692.2578893507,308121.0034642813,435.96554,212.9119375599993,452107.631419561,219770.21498787933,2710.74054,1268.6628305661718,2794233.161379253,1288424.8144050273,966.57094,441.0529787677238,993044.3704183288,444310.6268646924,1548.7945,658.7051699483499,1584112.9257952007,659052.2362169323,0.38197,100000,0,1003073,10474.624590129695,0,0.0,0,0.0,38340,399.75146717904806,0,0.0,39650,410.92500156638334,1246612,0,44785,0,0,8919,0,0,75,0.7727491071615046,0,0.0,1,0.0104425555021824,0,0.0,0.05289,0.1384663717045841,0.3008130081300813,0.01591,0.349264037797565,0.650735962202435,23.658731536644,4.091711019726201,0.310820451843044,0.2787158145065398,0.2064209274673008,0.2040428061831153,11.609513681441053,6.371035875952971,17.15710689854022,11775.186871591592,48.08424294618384,14.17616433563145,14.664625102110437,9.763781811560024,9.479671696881937,0.5854934601664685,0.7977815699658704,0.6977811782708493,0.5783410138248848,0.1317016317016317,0.75390625,0.9245689655172412,0.8917525773195877,0.6872246696035242,0.1691542288557214,0.5117948717948718,0.7146892655367232,0.6158868335146899,0.5397815912636506,0.1202435312024353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914717684731,0.0049993915547803,0.0075939086294416,0.0096649288088051,0.0117502238137869,0.014022117675811,0.0161790192680191,0.0180481829318089,0.0204452986035861,0.0226379162059221,0.0249546326009616,0.027219615372768,0.0294937320677492,0.0316874929177011,0.033779529997007,0.035984535229904,0.038035374036948,0.040042739919292,0.0420885220681482,0.0440672671421877,0.0587308214173885,0.0725201619229924,0.0852712365535029,0.0986999064605295,0.1106895570520724,0.1262878699819302,0.1379558871848138,0.149462068378976,0.1599185101435672,0.1691032355492722,0.1815835045336717,0.1929307009865897,0.2035542423880337,0.2129388000218376,0.2221026153626467,0.2317742328030621,0.2408392138501499,0.2489490839608857,0.2563765090314968,0.2634640709991411,0.2692316590704023,0.2749953214185459,0.2802006673134717,0.2850705845696618,0.2902380114332876,0.2944678861838625,0.2983741870935468,0.3023938773694046,0.3060324195655829,0.3095865503702337,0.3072869050820113,0.305706745835395,0.302826209223847,0.3007049461559531,0.2979366773390252,0.2953173936292109,0.2928208205678911,0.2934266146737884,0.2938820039888856,0.294343855151418,0.295067264573991,0.2958610218287224,0.2972069606634774,0.2987636136404213,0.2991955817024853,0.3003571335470921,0.3019335364638209,0.30564302808918,0.3098818663020997,0.3124578590409709,0.31697099403488,0.3190102786902617,0.3222396980182447,0.3248542660307366,0.3263372956909361,0.3308676764118821,0.3362173649058895,0.337525354969574,0.3435326842837274,0.3401413982717989,0.0,2.1093199116772645,56.17030195713989,146.3292504143311,220.521861384876,fqhc3_80Compliance_baseline_low_initial_treat_cost,56 -100000,95755,46969,447.558874210224,5172,52.75964701582163,4078,42.0134718813639,1614,16.46911388439246,77.36211040614715,79.72251959476334,63.32787542470121,65.07495006244312,77.15302573988083,79.51713735578944,63.248285485503,64.99933782595,0.209084666266321,205.38223897389685,0.0795899391982146,75.61223649312865,221.9129,155.4749332735151,231750.71797817343,162367.43070702843,449.49291,296.95588905465104,468881.2281343011,309581.95295770565,433.99653,211.59683172986357,449572.3774215446,218203.65991793043,2650.08293,1248.3013194499406,2730958.049188032,1267217.359942082,946.46468,431.6018509009136,973751.68920683,436155.132848456,1577.4936,678.4602525267427,1611490.4913581535,678138.5116398577,0.3817,100000,0,1008695,10534.12354446243,0,0.0,0,0.0,38624,402.77792282387344,0,0.0,39449,408.2919951960733,1238734,0,44387,0,0,8784,0,0,73,0.7623622787321811,0,0.0,1,0.0104433188867422,0,0.0,0.05172,0.1354990830495153,0.3120649651972157,0.01614,0.3586232420429311,0.6413767579570688,23.292993646361225,4.212799972413758,0.303825404610103,0.2709661598822952,0.2096615988229524,0.2155468366846493,11.401739752796257,5.993806412324716,17.35759268878976,11794.777324756498,46.66183232407509,13.44743272702242,14.10133576915766,9.405767508412222,9.707296319482786,0.5689063266307013,0.7963800904977375,0.6973365617433414,0.5614035087719298,0.1092150170648464,0.7510170870626526,0.9384288747346072,0.8476454293628809,0.7450980392156863,0.1191709844559585,0.4903474903474903,0.6908517350157729,0.6355353075170843,0.5038402457757296,0.1064139941690962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021377263102438,0.004603808789827,0.0068013399654857,0.009032992267596,0.0113117338894257,0.0138306106652544,0.0158770623865559,0.0180817610062893,0.0199895706587867,0.0221491767018923,0.0242126529314641,0.0265836697379639,0.0286108167611444,0.0303479972382807,0.0323046754050985,0.0341280344071791,0.0359953607820396,0.0380991907034654,0.0401043669892618,0.0421340999760424,0.0570163992609371,0.0704525956770103,0.0843418982695333,0.0977408022886472,0.1100926140798717,0.1262308432664544,0.1384014767350576,0.1493846612443043,0.1598940023721243,0.1695942178183846,0.1812375464483817,0.1927722579388271,0.2030398311446694,0.213025260647434,0.2226832946252655,0.2329794778600239,0.2421379433574555,0.25,0.2573629515338537,0.264713629648293,0.2712666828720584,0.2771181583164692,0.2834861842494527,0.2882920688208141,0.2927211346966532,0.2970704593352148,0.3018473553781071,0.304983397157797,0.3079601796833534,0.3115420129270544,0.3091477127351567,0.3065039755688227,0.3044554803674681,0.3013032371660725,0.3002699255480082,0.2970154730597517,0.2948697686180301,0.2940945333093207,0.2936309310996476,0.2945725409326056,0.2959322602905795,0.2968136099324218,0.2973423310838957,0.2982190897569869,0.298723953354999,0.3003341362965265,0.3027030083691472,0.3067842013456267,0.310089639357932,0.3153308736949525,0.3183923031965112,0.3219221105527638,0.3267782687161615,0.3309109979023074,0.3358257177143912,0.335672514619883,0.3422121896162528,0.3443852378133017,0.3442184154175589,0.3457588436667934,0.0,2.2032284770966792,53.45334910573049,146.28147377733632,211.92579034673267,fqhc3_80Compliance_baseline_low_initial_treat_cost,57 -100000,95765,46996,447.3659478932804,5310,54.351798673837,4197,43.29347882838198,1581,16.164569519135384,77.32840490063373,79.68850067082496,63.31625382636724,65.06448680173808,77.13213820940489,79.49551132874431,63.24326618409879,64.9955829065463,0.1962666912288426,192.9893420806508,0.0729876422684512,68.90389519178086,221.09868,154.89330148041086,230876.2909204824,161743.1227279391,449.04281,296.70526063329714,468351.0259489375,309276.6779442355,437.3539,212.8653646846899,453565.0289771837,219872.24199471317,2700.1297,1244.1371782614249,2782652.2320263144,1262271.590102255,963.33169,430.3787487205977,991298.146504464,434776.51409241074,1535.83478,645.8393591337725,1569843.8678013887,643538.8915967512,0.3813,100000,0,1004994,10494.376860021928,0,0.0,0,0.0,38634,402.8507283454289,0,0.0,39577,410.1185192920169,1240666,0,44553,0,0,8734,0,0,79,0.8249360413512243,0,0.0,1,0.0104422283715344,0,0.0,0.0531,0.1392604248623131,0.2977401129943502,0.01581,0.357528818443804,0.642471181556196,23.514339627124148,4.194665970227217,0.3083154634262569,0.2785322849654515,0.207767452942578,0.2053847986657136,11.068475153773798,5.801806900356846,16.86477601902094,11767.738367317388,47.84937211260853,14.239461101184272,14.67258015592051,9.641649457041774,9.295681398461966,0.5794615201334287,0.7938408896492729,0.6993817619783617,0.5642201834862385,0.1241299303944315,0.7673060884070059,0.906183368869936,0.8833333333333333,0.7437185929648241,0.1695906432748538,0.5043362241494329,0.7185714285714285,0.6284796573875803,0.5111441307578009,0.1128798842257597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.0044422807764863,0.0065893676643788,0.0087501778491432,0.010976378913959,0.0132007822685788,0.015489884157285,0.017662433127782,0.0198838659551411,0.0220689090425205,0.0243657424017221,0.0263568597654886,0.0282908268202385,0.0303336183011113,0.0323619252043259,0.0344831150574201,0.0364684692145252,0.0382684808761304,0.04042398420451,0.0425472081324014,0.0568771332839263,0.0714472486899768,0.0845138357327852,0.0971482030420569,0.1095984236204044,0.1257359080867975,0.1364658225700409,0.1481174041674648,0.1580976589200273,0.1680712815234174,0.179504577275175,0.191230404725585,0.2022887477156035,0.2116755598320504,0.2213038980476745,0.2312650195461743,0.2410907549148684,0.2493614627285513,0.2577807541258995,0.2646091807861062,0.2705185459425689,0.2757653001566848,0.2819590252216212,0.2867199117378999,0.29185242775058,0.2960197165742452,0.2999511296567798,0.3045991647142712,0.3081976985278872,0.3116787165549633,0.3090470868622672,0.3065032935902196,0.3040183664558655,0.3029975032832547,0.3009130725261673,0.2970230351266549,0.2947801328693451,0.2953243726716229,0.296138291155441,0.2964759594806677,0.2972609394267778,0.2984404536862003,0.2995813110588039,0.3010134758881835,0.3016591251885369,0.3028110575177636,0.3033749290981282,0.3081633290637008,0.3100661790316962,0.3139420232695721,0.3171525423728814,0.3184706685573236,0.3205590062111801,0.3232050416385325,0.3280959464484939,0.3351256575102279,0.335548172757475,0.344368187323375,0.3460482985729967,0.3445605884630275,0.0,1.974318537616595,52.632913577643045,156.98618410360243,218.5749532530178,fqhc3_80Compliance_baseline_low_initial_treat_cost,58 -100000,95724,46702,444.4131043416489,5230,53.4871087710501,4174,42.95683423174961,1568,15.983452425723955,77.31464774318667,79.67938928674135,63.30648041847581,65.05554891935722,77.11195274883426,79.47978449123576,63.23023295516088,64.98275954928667,0.202694994352413,199.60479550559285,0.0762474633149281,72.7893700705522,221.1814,154.84038581795008,231061.5937486941,161757.12028117303,445.78013,295.09479935697044,465087.0732522669,307670.65985756536,436.47454,212.8162322397964,451571.8106222056,219005.4467628808,2706.37135,1268.90803745766,2789153.514270194,1287481.9030466797,953.52003,431.5368300425751,982087.1359324724,436789.3894933391,1518.61864,654.0997740744709,1550241.277004722,653663.818027213,0.37912,100000,0,1005370,10502.799715849736,0,0.0,0,0.0,38232,398.7401278676194,0,0.0,39670,410.0121181730809,1241717,0,44540,0,0,8654,0,0,87,0.8984162801387322,0,0.0,0,0.0,0,0.0,0.0523,0.1379510445241612,0.2998087954110898,0.01568,0.3598533455545371,0.6401466544454629,23.58370114325003,4.036534962101654,0.3092956396741734,0.2793483469094394,0.2156205079060852,0.1957355055103018,11.652666325829514,6.47253286626844,16.98112654085355,11702.62060694085,47.92420346906165,14.287332887640204,14.667394865066454,9.974136089394598,8.9953396269604,0.5860086248203162,0.7941680960548885,0.7048799380325329,0.5788888888888889,0.1089351285189718,0.7491883116883117,0.9191489361702128,0.8701657458563536,0.7285714285714285,0.1210526315789473,0.517675050985724,0.7097701149425287,0.6404736275565124,0.5333333333333333,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982474801195,0.0046841256805669,0.0068616902494975,0.0089320191037496,0.0110382013327229,0.0132034720241248,0.0157109190887666,0.0180923403647056,0.0202502402224357,0.0222963842594488,0.0246275619533901,0.0266451725518785,0.0287809745209171,0.0304073200136013,0.0324428662854311,0.0343330335266569,0.0365023972496349,0.0387257445263048,0.0406554786116829,0.0426403025346654,0.0575607922570136,0.0712670867262565,0.0843736231458364,0.0973111664931596,0.108994095318431,0.1242013962343981,0.1353906888391294,0.1467886001426579,0.1571420937316304,0.1669670829578129,0.1800802225528886,0.1923531132514978,0.2026341017037779,0.2123078271732103,0.2211135611907387,0.2307905809732106,0.2397185965618673,0.2472367590002706,0.2548029346527896,0.2618043990122322,0.2678579711489401,0.2730170635664729,0.2789396310523071,0.2834765700019205,0.2887732396250045,0.2927506198423565,0.2971528690319754,0.301432241980208,0.3060406157030138,0.3096715544840125,0.3080646462473445,0.3062435606841129,0.3034969161386402,0.3015120284820617,0.2983054871353533,0.2955588181317673,0.2920118904560116,0.2925009429166462,0.2924520255863539,0.2932096567440535,0.2935976977126626,0.2944304395777533,0.2966126411399525,0.2973657885961987,0.2989071952940051,0.301367733913584,0.3015471965933286,0.3046767537826685,0.3093853386731673,0.3152851171228015,0.3180170382454232,0.3217041970610001,0.3232183329136238,0.3280773918342474,0.3336780744640842,0.3350692389631909,0.3342499236174763,0.3387821822639967,0.3372797356828194,0.3448408131952435,0.0,2.5138893296418163,53.41707686907234,156.95769812798093,213.60218539033664,fqhc3_80Compliance_baseline_low_initial_treat_cost,59 -100000,95821,47072,446.8540299099362,5361,54.88358501789796,4236,43.69605827532587,1590,16.269919954915938,77.3504688262772,79.68351678643342,63.33176974345843,65.06036319986343,77.14770274618256,79.4812235317108,63.255715027845966,64.98645955161537,0.2027660800946336,202.29325472261905,0.0760547156124644,73.90364824806284,220.03476,154.17194266855162,229631.04121226037,160895.77719764103,449.04804,296.8625682920603,468155.43565606704,309332.76452141005,439.10688,213.6287915749691,454517.89273750014,220106.0018552456,2752.16849,1276.2337810385827,2840757.641853038,1300453.6281593626,966.71605,437.2447452761043,995040.7635069556,442477.8548294254,1557.08998,663.6440353425754,1594972.6469145594,667739.5382664807,0.38274,100000,0,1000158,10437.77460055729,0,0.0,0,0.0,38521,401.4986276494714,0,0.0,39792,411.6425418227737,1247408,0,44804,0,0,8682,0,0,89,0.928815186650108,0,0.0,2,0.0208722513853956,0,0.0,0.05361,0.1400689763285781,0.2965864577504197,0.0159,0.3556231003039514,0.6443768996960486,23.549562245554245,4.159793191850871,0.3045325779036827,0.2724268177525968,0.2070349386213409,0.2160056657223796,10.971495565490756,5.6869938261812365,17.023956763815892,11807.330138386822,48.48398750551684,14.182328804448682,14.598691105603375,9.727056426591997,9.975911168872791,0.5613786591123702,0.7859618717504333,0.6798449612403101,0.5575826681870011,0.1147540983606557,0.740501212611156,0.9163265306122448,0.8477011494252874,0.7409326424870466,0.1407766990291262,0.4874958319439813,0.6897590361445783,0.6178343949044586,0.5058479532163743,0.1071932299012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603541544259,0.0047859018687324,0.0072160763219324,0.0093677290877132,0.0114937852187887,0.013668493206494,0.0159400336545816,0.0181153500531002,0.0203672651425299,0.0225518498044755,0.02488643704562,0.0268111105406376,0.0291032496914849,0.031246459798762,0.0333323020121077,0.035357449138795,0.0373997205113606,0.0396523290427639,0.0416103755741691,0.0435977514053716,0.0585105828108863,0.0725352848928384,0.0852265582428637,0.0981298592141206,0.1108114372405655,0.1262430384562545,0.1381964692784816,0.1493410485783881,0.1590943057838888,0.1688186445218323,0.1805113196178015,0.1919725861547109,0.203506561223603,0.2135261265396679,0.2224055617891008,0.2325537595692587,0.241844581096615,0.2503882074940925,0.2580901555580788,0.26484567371013,0.2719226185655278,0.2779447361343358,0.2837826647581418,0.2883205558217537,0.2931128740296186,0.2965378640297881,0.2996068020736808,0.3033551919526326,0.306939156111586,0.3105764662408277,0.3087153367289191,0.3065482338359843,0.3041394765401474,0.3015710135711292,0.2995113111418089,0.2969233124138987,0.2935999113517278,0.2929854787103125,0.2934854920423724,0.2943956063550935,0.2951386293998954,0.2964210443380803,0.2974846049472915,0.297570759973256,0.2993215219006976,0.3009996105413475,0.3037354041491894,0.3080411597285209,0.3122932841277025,0.3164661802405837,0.3177473171611507,0.3202120400986721,0.3205869551700553,0.3273068267066766,0.3319073746861341,0.3380314502038439,0.3352409638554217,0.3324711500198965,0.3387787895018747,0.3415823022122234,0.0,2.031357512686744,54.34916086264226,156.2121395942686,220.80790992912625,fqhc3_80Compliance_baseline_low_initial_treat_cost,60 -100000,95727,46890,446.1228284601,5341,54.57185538040469,4217,43.57182404128407,1620,16.682858545655876,77.30949638025908,79.67006962332857,63.31695901961641,65.05978795215178,77.1032300464215,79.46227309382436,63.24064945293312,64.9844396668982,0.2062663338375756,207.79652950420768,0.0763095666832924,75.3482852535825,220.9669,154.8054269561106,230830.27776907248,161715.5316223329,449.43096,296.6593008317939,469018.6363303979,309427.65450896183,435.6754,212.44520711543564,451437.8597469888,219161.7358195209,2730.54505,1268.6981077400712,2824922.874424144,1297822.9525004136,964.42286,438.4693128939264,995253.5125931032,445822.7907423465,1568.21852,659.3078711726677,1616017.424551067,669854.8527656145,0.38178,100000,0,1004395,10492.285353139658,0,0.0,0,0.0,38598,402.7181463954788,0,0.0,39539,409.3620399678251,1242628,0,44607,0,0,8836,0,0,74,0.7730316420654569,0,0.0,1,0.010446373541425,0,0.0,0.05341,0.1398973230656399,0.3033139861449166,0.0162,0.3480286738351254,0.6519713261648745,23.75572472567161,4.082283628700631,0.3106473796537823,0.2729428503675599,0.2153189471188048,0.2010908228598529,11.419364717272192,6.162877739091964,17.245090582046103,11776.84438571686,48.24217850733678,13.954231080314454,14.836132535950126,10.257835826072178,9.193979065000027,0.5795589281479725,0.790616854908775,0.6824427480916031,0.5881057268722467,0.125,0.7676348547717843,0.935632183908046,0.862533692722372,0.7012987012987013,0.2142857142857142,0.5043160690571049,0.702513966480447,0.6112886048988285,0.5494830132939439,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065211006572,0.0043792068769767,0.0067161756350945,0.0088872186560494,0.0110405123773699,0.013364275753967,0.0155837537583447,0.0177508752947421,0.0200625485466661,0.0221264750130486,0.024139238819586,0.0265211409327063,0.0285347043701799,0.0304727969269744,0.0324759704632647,0.034622060586023,0.0366479683715923,0.0386629746014954,0.040720878024445,0.0429583333333333,0.0578382950285588,0.0717963745970611,0.0858110730054851,0.0985026917900403,0.1108111812900028,0.1264474783473102,0.1383027255270165,0.1489440967343636,0.1591147001644982,0.1680856082863331,0.1807144550018314,0.1921073999891734,0.2029947548262128,0.2128723706962593,0.2218490910892615,0.2318734550452817,0.2412768619041236,0.249667740409524,0.2570166172578685,0.2640698593873551,0.2696242968587236,0.2763658054480169,0.28198937139746,0.2865981606494082,0.2916990574288213,0.2955845372516148,0.2994509274198592,0.3041343340541916,0.3084523639942502,0.3111002535389816,0.3089101173553942,0.306271335755974,0.3042062529954047,0.3015416624525003,0.2999494634204346,0.2969961685823755,0.2936997510347124,0.293797749116898,0.2944898587406369,0.2959108870174686,0.2960330113476507,0.2956909361069836,0.2969621952754584,0.2984710438539544,0.2998457385268029,0.2998383901574392,0.301185544922154,0.3058871575772807,0.309504610314483,0.3131868131868132,0.317066533629643,0.3203344092280015,0.3274413940077723,0.3318168031543828,0.3352080989876265,0.3354937544190431,0.3420651842826683,0.343494271685761,0.3483516483516483,0.3527384144006127,0.0,1.8683824017547168,52.79432503427969,161.60176573860528,217.47223415544505,fqhc3_80Compliance_baseline_low_initial_treat_cost,61 -100000,95742,46780,444.0370997054584,5315,54.43796870756825,4245,43.836560757034526,1619,16.6175764032504,77.40440741590693,79.76086453744253,63.3594678928421,65.09902333368355,77.19954882010278,79.55662617149392,63.28223283292239,65.0240505547385,0.2048585958041542,204.238365948612,0.0772350599197082,74.97277894505316,221.50634,155.13670706258492,231357.5442334608,162036.20883476938,448.34524,295.9065668140992,467801.800672641,308583.61723600834,441.02201,214.70338422332796,457171.4816903762,221617.93766457416,2727.65111,1279.8222625517772,2817163.7421403355,1305439.6693012032,972.69231,438.4140251796466,1003841.1773307428,446023.0156569751,1564.4445,664.9324905914882,1606677.403856197,670872.8710525709,0.38017,100000,0,1006847,10516.252010611852,0,0.0,0,0.0,38418,400.754110003969,0,0.0,40075,415.0738442898624,1244659,0,44645,0,0,8822,0,0,80,0.835578951766205,0,0.0,0,0.0,0,0.0,0.05315,0.1398058763184891,0.3046095954844779,0.01619,0.3400108283703302,0.6599891716296697,23.5660987337738,4.087576845161937,0.3142520612485276,0.2760895170789164,0.2157832744405182,0.1938751472320377,11.293494351415893,6.155185438079612,17.236756848913323,11727.204115695582,48.51439694997927,14.26000897518597,15.06837652187476,10.208638979167093,8.977372473751437,0.5872791519434629,0.7952218430034129,0.7061469265367316,0.5665938864628821,0.1215066828675577,0.7624309392265194,0.9109730848861284,0.8975069252077562,0.7113821138211383,0.1525423728813559,0.5127602417730021,0.714078374455733,0.6351490236382322,0.5134328358208955,0.1130030959752322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0045908284773245,0.0069490940816036,0.0094348245569491,0.0117942513192276,0.0138945439739413,0.0161528662420382,0.0183463771517198,0.0204042014059179,0.0225530826298286,0.0246899661781285,0.0269316035799326,0.0289503444021795,0.0310852010547132,0.0332968756448883,0.035374627853126,0.037478511215592,0.0397211531479195,0.041778821670945,0.0437662743464222,0.0584028481045697,0.071818001067381,0.0853717378534866,0.0980361235517988,0.1101531456517385,0.1254427609249606,0.1372407574391343,0.1479289310921149,0.1584406982458389,0.1684878770656172,0.1809987399980615,0.1919127433264442,0.2025733614670118,0.2120178430858042,0.220586779314214,0.2303161158168632,0.2392007675487527,0.2475716148761073,0.255043603497352,0.2617633256647094,0.2684854577599057,0.2744942390530334,0.2800240830155713,0.285029925812656,0.2901225597054692,0.2940504276024771,0.2980806453627043,0.3025687887095136,0.3059174424459967,0.3085622608261115,0.3072713371695304,0.3052920208390458,0.3030077615124423,0.300256247840608,0.2977046173869317,0.295227931087056,0.2927756054490413,0.2931425865138079,0.2934799231932573,0.2932528409090909,0.2939047370286759,0.294679802955665,0.2952573621423208,0.2959809718579113,0.2971913469582885,0.2982415188297541,0.2988327068200446,0.3009360374414976,0.3043660057841736,0.3082801544158197,0.3126522876996661,0.3161997050768906,0.3201096095160989,0.3251372283630348,0.3296997690531177,0.3301919720767888,0.333030303030303,0.3332665330661322,0.3320547945205479,0.3328112764291308,0.0,1.9017656841930932,55.4901002471012,154.16143004948816,219.66164719688496,fqhc3_80Compliance_baseline_low_initial_treat_cost,62 -100000,95756,46783,444.828522494674,5218,53.39613183508083,4142,42.7440578136096,1575,16.16608880905635,77.33232137485312,79.69862065267012,63.31916690730778,65.071285097556,77.13319058500261,79.4992744441405,63.24468334895051,64.99868843658372,0.1991307898505141,199.3462085296187,0.0744835583572722,72.59666097228035,221.33298,155.00705279830166,231142.6751326288,161877.11767231472,448.42164,296.96162622297777,467774.23869000375,309601.3682933474,437.77595,213.1263658460993,454026.1602406115,220169.8504732656,2686.70727,1258.9648982206936,2774459.574334768,1283438.2578853483,960.96593,434.0438146478118,993816.1786206608,443545.8076592919,1534.52228,653.4318576468766,1576360.4578303187,659802.3203268957,0.38008,100000,0,1006059,10506.485233301308,0,0.0,0,0.0,38483,401.3429967834914,0,0.0,39692,411.27448932703953,1240809,0,44564,0,0,8684,0,0,86,0.8981160449475751,0,0.0,0,0.0,0,0.0,0.05218,0.1372868869711639,0.3018397853583748,0.01575,0.352185089974293,0.6478149100257069,23.517774916478757,4.091550764587719,0.3078223080637373,0.2723322066634476,0.2172863351038146,0.2025591501690004,11.311330536722147,6.141246036016118,16.90801585816809,11733.418376317835,47.48421788277516,13.74032933576941,14.465128562818856,10.14527310003678,9.133486884150116,0.5849830999517142,0.775709219858156,0.7105882352941176,0.6122222222222222,0.1084624553039332,0.7636511817440913,0.908695652173913,0.8846153846153846,0.76,0.146067415730337,0.5097770154373928,0.6841317365269461,0.6410537870472008,0.562962962962963,0.0983358547655068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021079087113381,0.0045136881396504,0.0065388676793111,0.0086694040165867,0.0111194758688044,0.0134371084239158,0.0156237252182426,0.0181523037499106,0.0204181790297019,0.0227067977067977,0.0247880508882897,0.0270006673168728,0.028740950970714,0.0305892288836476,0.0325306425653089,0.0344898866185027,0.036675398904501,0.0387899285202975,0.0409552412524551,0.0428773771584494,0.0572773677672578,0.0713545862584877,0.0846478164198514,0.0971096321063201,0.1091781327428963,0.1243389601049202,0.1364547856256167,0.1470096750502911,0.157900919469036,0.1679907368691904,0.1797564048719025,0.1911712199080335,0.2021341397089216,0.2123734114919399,0.2219593776819312,0.2305103136729519,0.2393118529096751,0.2476937269372693,0.2554403322063128,0.2629445576751322,0.2699788265512733,0.2752684147739234,0.2807409773235388,0.2860788307176231,0.2916459261597484,0.295642105781785,0.3002413435206142,0.3034230388046047,0.30722065557654,0.3105506581808119,0.3084182507461081,0.3062918229660469,0.3036563071297989,0.3012110726643598,0.2995595366978599,0.2958054358127732,0.2929962505339429,0.2941398060796645,0.2935598644898793,0.2936062565692195,0.294732112770976,0.2943499812390149,0.2942222780254044,0.2958190020994327,0.2972537901540087,0.2978137104531156,0.2989421740733388,0.3036341953301532,0.3078347777467151,0.3103448275862069,0.3164069577822069,0.3215669621529805,0.3243940824677369,0.3279496511980588,0.3301422065247699,0.3342274052478134,0.3358309605874419,0.334850583811597,0.3281417830290011,0.3318250377073906,0.0,1.941304780006944,53.69869579665402,154.6300122577402,212.07584357432492,fqhc3_80Compliance_baseline_low_initial_treat_cost,63 -100000,95725,46786,445.4740141028989,5171,52.71350221990076,4141,42.663880908853486,1539,15.680334290937582,77.41699606751023,79.76845393669791,63.36600846061516,65.0997513722009,77.21707219881267,79.57403008493381,63.28960397913961,65.0282258908923,0.199923868697553,194.4238517640997,0.0764044814755493,71.5254813085977,221.86516,155.44932850919835,231773.47610342124,162391.56804303822,450.31211,298.3387145489922,469854.5207626012,311094.8724289405,442.23202,215.636236462778,458004.7218594933,222236.3363289322,2682.146,1250.544384898391,2766991.287542439,1271536.518762007,973.19189,436.7666070252983,1003448.8482632542,443103.6819472368,1501.78956,640.0702597914492,1532996.249673544,638510.747864478,0.38011,100000,0,1008478,10535.158004700968,0,0.0,0,0.0,38639,403.0399582136328,0,0.0,40190,415.9519456777227,1237866,0,44389,0,0,8701,0,0,76,0.7834943849569078,0,0.0,1,0.0104465917994254,0,0.0,0.05171,0.1360395674936202,0.2976213498356217,0.01539,0.3531273268801191,0.6468726731198808,23.48700763062211,4.144006311640303,0.3158657329147549,0.2755373098285438,0.2006761651774933,0.2079207920792079,11.30562812039223,5.98892756748178,16.426626902295524,11679.66745485142,47.30821398848139,13.975405207032908,14.761075417370536,9.162336397749476,9.40939696632847,0.5749818884327457,0.8080631025416302,0.6697247706422018,0.5800240673886883,0.1173054587688734,0.7487844408427877,0.9149377593360996,0.8545454545454545,0.6983240223463687,0.1542553191489361,0.5012039903680771,0.7298937784522003,0.5926327193932828,0.5475460122699386,0.1069836552748885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048222553161312,0.0069478253813696,0.0090273053138232,0.0112046526761021,0.0133146033103279,0.0155542871121621,0.0176568448340971,0.0196519268698966,0.0216686275512813,0.0237843930932008,0.0258428696053779,0.0281470059110768,0.0302677651905252,0.0322906780010729,0.0344428484328658,0.0364131447621808,0.0385840083806125,0.0404406797276931,0.0424636412884944,0.0571061617015944,0.0707850707850707,0.0841507810778769,0.097054090722647,0.1090941692684161,0.1246906267848454,0.1369075402045232,0.1485778761815549,0.1584221885083014,0.1677426965810132,0.1794344417643004,0.1914870596381892,0.2021195652173913,0.2119785465389362,0.2216948482151686,0.2317232375979112,0.2411306412242669,0.2496740987143756,0.2574933115675872,0.2630573321281878,0.2697220135236664,0.2750987126469008,0.2796029307492318,0.2854732357622392,0.2897947797399573,0.2935471563426912,0.2974289783374559,0.3007455767105714,0.3044596358373286,0.3074511663439628,0.3049840762191435,0.3028481229840093,0.3012764641381055,0.2985565819861432,0.2960320403471038,0.2931929974641777,0.2900001576516214,0.2905911740216486,0.2911267725227137,0.2912034328067096,0.2916069734124695,0.2915865856050206,0.292094861660079,0.2927455975191051,0.292581206358285,0.2942499030882542,0.2952238637645201,0.2979040521658128,0.3023336454107285,0.3071347412138071,0.3131562415866463,0.3149069950222688,0.3177842565597668,0.3211618257261411,0.3273148148148148,0.3315147997678467,0.3370281605751947,0.337664894664304,0.3367916999201915,0.341930729550479,0.0,2.327433864036516,53.66509426477814,151.97954164466526,211.59683278370125,fqhc3_80Compliance_baseline_low_initial_treat_cost,64 -100000,95686,46953,446.7738227117864,5314,54.23990970465898,4222,43.42328031268942,1570,15.968898271429468,77.3508434030137,79.74202051476753,63.31502979323547,65.08301572786,77.14841235948053,79.54588999719924,63.237184988169474,65.01084716309862,0.2024310435331671,196.1305175682924,0.0778448050659932,72.16856476138389,220.61204,154.56148705126407,230558.096273227,161529.67650774829,450.08457,298.1136775310026,469671.54024622205,310850.390580631,442.64412,215.08165788417045,458777.1983362247,221798.73175150584,2736.98057,1272.2301632409642,2816692.7136676214,1285938.0357470938,994.31445,442.4236417958574,1025004.0653805154,448255.8192369922,1538.96342,662.7339968968417,1567001.7975461406,655271.4113553733,0.38105,100000,0,1002782,10479.913466964865,0,0.0,0,0.0,38642,403.1206237067073,0,0.0,40169,416.0587755784545,1240852,0,44493,0,0,8695,0,0,69,0.7002069268231507,0,0.0,1,0.0104508496540768,0,0.0,0.05314,0.1394567642041727,0.2954459917199849,0.0157,0.3482721382289417,0.6517278617710583,23.95031787726092,4.066992338502515,0.3095689246802463,0.2745144481288489,0.2046423495973472,0.2112742775935575,11.051052481782838,5.735966646821101,16.70021584460906,11766.804731841245,48.15583053193588,14.188798351199724,14.67192344638788,9.566049111394015,9.729059622954251,0.5776882993841781,0.808455565142364,0.6809487375669472,0.5914351851851852,0.1132286995515695,0.7510477787091366,0.9310344827586208,0.8757763975155279,0.7188940092165899,0.1368421052631579,0.5094090458897326,0.7266187050359713,0.617258883248731,0.5486862442040186,0.1068376068376068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380542358459,0.0045228219975459,0.0066288359439239,0.0088015285795593,0.0110989033347575,0.0133554736048572,0.0154648114333513,0.0177809097779684,0.0200243401069737,0.0222445259212224,0.0244897959183673,0.0265095880280605,0.0287283611565402,0.0308684587407399,0.0330151194592084,0.0350349419013356,0.0371621271614019,0.0390487954245855,0.0411396355163518,0.0430404553177738,0.0574072720055986,0.0719379260515817,0.0856042156533423,0.0985165702261967,0.110315216473964,0.126162538486769,0.1380210821311423,0.1500154424529005,0.160092360977487,0.1693603777634685,0.1809656242925977,0.1925945975207059,0.2035608179433882,0.2138588503130336,0.222994251987579,0.2319311515043973,0.2409822884327608,0.2495664316763891,0.2568075704045349,0.2637130801687763,0.2698164553297435,0.2752418202684029,0.2806549840637922,0.2854006717850288,0.2904111920070983,0.2947207571351111,0.2990995497748874,0.3028430475027973,0.3061681130928515,0.3108200786051542,0.3088510466446793,0.3067427314592068,0.3046804680468046,0.3025133743817503,0.2999703923019985,0.2971125083938709,0.2937260407957217,0.2941445787072616,0.2946042553191489,0.2944041524459613,0.2946508504923903,0.2955813040062843,0.2959951759128337,0.2975281796396556,0.2998544395924308,0.3006542708629651,0.301377193229504,0.3043896983441548,0.3081189766345421,0.3086082373609213,0.3096719330439064,0.3138147566718995,0.3180860295029131,0.3214957490030848,0.3248721524872152,0.3265546020923945,0.3307669082125604,0.3326748320821809,0.331456154465004,0.332703213610586,0.0,2.677569463876349,51.55372601693882,160.70802844878312,219.160792129644,fqhc3_80Compliance_baseline_low_initial_treat_cost,65 -100000,95725,46560,442.75790023504834,5273,53.852180726038135,4175,43.05040480543223,1533,15.628101331940456,77.26691653433518,79.6260496826721,63.2951211478972,65.03863000215728,77.06277564983209,79.42617593385651,63.21750361672356,64.9652953784289,0.2041408845030901,199.87374881559103,0.0776175311736437,73.33462372837118,220.50094,154.37103947795853,230347.87150692084,161264.6774405417,446.96452,296.079942288808,466332.5045703839,308710.5695533311,433.23434,211.4670857998101,449483.2593366414,218476.25549109036,2675.23714,1266.6404440327951,2757317.137633847,1285886.3891568324,957.55947,432.076246820668,985685.6411595716,436879.0213947566,1490.7266,648.3343694262411,1520389.6996604858,644236.7313567012,0.38065,100000,0,1002277,10470.35779576913,0,0.0,0,0.0,38406,400.5850091407679,0,0.0,39375,408.2214677461478,1241793,0,44644,0,0,8722,0,0,76,0.7939409767563332,0,0.0,0,0.0,0,0.0,0.05273,0.1385262051753579,0.2907263417409444,0.01533,0.3566357181867832,0.6433642818132168,23.33754571320245,4.118390461308182,0.3223952095808383,0.2706586826347305,0.2071856287425149,0.1997604790419161,11.60991973515121,6.265012022147985,16.631364626431054,11747.505706039425,48.19960221712772,13.903992903652616,15.407839745153924,9.65552389924149,9.23224566907969,0.595688622754491,0.8132743362831858,0.7265973254086181,0.5745664739884393,0.1115107913669064,0.7567567567567568,0.9207708779443254,0.8847184986595175,0.7777777777777778,0.0880829015544041,0.5262255742200891,0.7375565610859729,0.6659815005138746,0.503125,0.1185647425897035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067131223919,0.0041367143537904,0.0064841498559077,0.0088276226369094,0.0111974452332038,0.0131550813028825,0.0153218818492277,0.0173334286093445,0.0196783987405824,0.0220070422535211,0.0241202218281344,0.0264260194653196,0.0284536124879172,0.0304977906868955,0.0327452800990405,0.0347105216914918,0.0365338414381575,0.0385940158525957,0.040715562762463,0.0427915021307188,0.0573672065073249,0.0711212987094545,0.084505120886501,0.0975673912586014,0.109502758933564,0.1244192814434626,0.136139717592101,0.1466976258693962,0.1569424245016682,0.1671104049469661,0.1799764962102834,0.1913240425670257,0.2030691818419447,0.2121172295965304,0.2214360500358186,0.231157787226484,0.2406200024603272,0.2498957781708787,0.2568526996171803,0.2635349679608423,0.2693260195343239,0.2745871420044241,0.2807486947565321,0.286121969351783,0.2911050885359065,0.2964040842499876,0.300503658414353,0.3041008660213958,0.3078020253886749,0.3106134758339726,0.3076008699058502,0.3054761806159495,0.3038865264258367,0.3018684960849869,0.2996488199755959,0.2967048139170987,0.2931515978547174,0.2936434822662367,0.2940431575885141,0.2941197491378848,0.2948153422398771,0.2962084371169889,0.2969009001447785,0.2998323085522638,0.3015544540160739,0.3031148181936661,0.3038404473864414,0.3079371081072565,0.3112383780535228,0.3160277210271201,0.3193808389814984,0.3226495726495726,0.3267095634620237,0.330974663318877,0.3340853543899229,0.3394082840236686,0.3441024078024992,0.3501006036217304,0.3504390779363337,0.3500959692898273,0.0,2.061764976331673,55.1585693990634,157.95254262925445,210.52954129520367,fqhc3_80Compliance_baseline_low_initial_treat_cost,66 -100000,95696,46697,444.4595385387059,5386,55.05977261327537,4266,43.930780805885306,1580,16.082176893496072,77.288290147924,79.65809048976597,63.294707477804174,65.04398995805926,77.08024883834396,79.4545591965626,63.21626756208198,64.97012667882943,0.2080413095800395,203.53129320336905,0.0784399157221926,73.86327922982616,220.06468,154.14439700529292,229962.25547567295,161077.15788046826,449.72636,297.4866357779504,469310.69219194114,310223.8711941464,437.33308,213.00154336489956,452971.0855208159,219402.1211003193,2765.60763,1295.383929533458,2848381.374352115,1312033.250641049,974.12143,444.2727327052457,999215.7979434876,445536.75462427415,1540.8626,662.8637491623923,1569257.9209162348,658068.5652165099,0.38045,100000,0,1000294,10452.82979434877,0,0.0,0,0.0,38617,402.8695034275205,0,0.0,39748,411.3756060859389,1241940,0,44645,0,0,8535,0,0,68,0.7105835144624645,0,0.0,4,0.0417990302624979,0,0.0,0.05386,0.1415691943750821,0.2933531377645748,0.0158,0.3583362957696409,0.641663704230359,23.730648989271803,4.088995093554338,0.3293483356774496,0.263947491795593,0.1999531176746366,0.2067510548523206,11.4727309014721,6.258059307282323,17.153098694375455,11757.547711784362,48.99447119817149,13.797372078913511,15.977496910577498,9.473373837981557,9.746228370698915,0.5761837787154243,0.8010657193605684,0.696085409252669,0.5638921453692849,0.1099773242630385,0.7523659305993691,0.9136842105263158,0.8759894459102903,0.7511961722488039,0.1512195121951219,0.5016677785190127,0.7188940092165899,0.6296296296296297,0.5031055900621118,0.0974889217134416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509059236978,0.0046329619529404,0.0068291593944067,0.0089701131676791,0.0111565373037181,0.0133592644258672,0.0154054770498154,0.0176389526871841,0.0198714082736202,0.0218901908611779,0.024145776538832,0.0261953152265402,0.02837696119759,0.0303701262589853,0.0324700106239234,0.0345903824888126,0.0365910479286816,0.0384292074429996,0.0403478297049064,0.0425139402782844,0.0567346256684491,0.070518391322102,0.0837120456763819,0.0967670644692808,0.1098877898937012,0.1258060076021472,0.1377146315823006,0.1492995259148777,0.1598678371702612,0.1701922044453989,0.1820583604718873,0.1929777045912508,0.2037137878457852,0.212767820974611,0.222147577092511,0.231399915681097,0.2407759391771019,0.2491346750098652,0.2569446024343078,0.2639737289303265,0.2705301123777935,0.27658776218447,0.2826419615425677,0.2872741687487988,0.291685945985437,0.295670434191835,0.2994075859125938,0.3039852069119428,0.3073817313184815,0.3107425336613496,0.3079132228619197,0.3049496759961395,0.3022726951706993,0.2999579971901568,0.2986057319907049,0.2953726284145462,0.2923018413463062,0.291543513957307,0.2921916941647147,0.2938549481957842,0.295856213805124,0.2973703952303865,0.2976317607889943,0.2992115461713217,0.2999139209028741,0.3005593246672536,0.3015531118920757,0.3058790383170548,0.3089109603413303,0.3124604179860671,0.3154447880662179,0.3197289714678947,0.3234834759792591,0.3264659270998415,0.3261913557443665,0.3318181818181818,0.3340339288395136,0.3334655822257488,0.3407091442282058,0.3454545454545454,0.0,2.559306633901269,55.11090657044312,158.86751538481298,218.437241397666,fqhc3_80Compliance_baseline_low_initial_treat_cost,67 -100000,95837,46923,445.3081795131317,5253,53.66403372392708,4156,42.85401254212882,1568,16.00634410509511,77.36488025655099,79.67841223910293,63.35773544642036,65.07064059088505,77.16619371168896,79.48288988042187,63.28237565425378,64.99888204766775,0.1986865448620278,195.5223586810604,0.0753597921665729,71.75854321729958,222.0757,155.5065689878281,231722.06976428727,162261.28633808254,448.11785,296.93531973586545,467065.5487963939,309315.9006812249,438.40765,213.8245228198513,454340.3069795591,220787.4345217152,2696.68287,1268.2054399896504,2780752.6112044407,1290616.9210536685,962.152,435.2715642072664,990894.2788275926,441127.0325732917,1537.36074,659.2536234138812,1570732.4102382169,659252.5222144459,0.38065,100000,0,1009435,10532.821352922148,0,0.0,0,0.0,38368,399.814267975834,0,0.0,39846,412.7424689837954,1242009,0,44560,0,0,8708,0,0,79,0.8138819036489039,0,0.0,2,0.0208687667602283,0,0.0,0.05253,0.1380007881255746,0.2984960974681134,0.01568,0.3558304529743496,0.6441695470256503,23.554418659391185,4.195422183931793,0.316410009624639,0.2663618864292589,0.2038017324350337,0.2134263715110683,11.268710016173902,5.899418744168099,16.83250851244371,11746.574989950195,48.04551883025955,13.708783724469257,15.190157436567429,9.458491718536871,9.688085950685998,0.5878248315688162,0.8048780487804879,0.714828897338403,0.5974025974025974,0.1195039458850056,0.7409783480352847,0.9057815845824412,0.8544474393530997,0.7475728155339806,0.1477832512315271,0.5221725678927467,0.73125,0.659957627118644,0.5491419656786272,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.0043594630763615,0.0065752090267067,0.0090399382440173,0.0112567494737698,0.0135930436199242,0.0159024648820567,0.0179369908324315,0.0198417566241413,0.0220379753313885,0.024125773787562,0.0261999322680951,0.0284997790316447,0.0310624852046645,0.0332951933285916,0.0354506694746404,0.037629681730262,0.0398499668435013,0.0414416846652267,0.0435008791734728,0.0588382547745454,0.0726223699476341,0.0862646917097902,0.099275438412265,0.1107787899531357,0.1266090115204697,0.1386999724570435,0.1498336362959892,0.1603584382334115,0.1698638647001489,0.1819140238392357,0.1928349044365649,0.2030377436387736,0.2126997302344885,0.2213576868550328,0.2307037237748703,0.2396114168579131,0.247473159336957,0.2558913789393819,0.2621475773443395,0.2680586190569676,0.2740549627588783,0.280155963844745,0.2857382048675477,0.291206990715456,0.2959015384615384,0.2998425629748101,0.3030830180054346,0.3063547224411229,0.3097637339507472,0.3072750221553831,0.3049172226340499,0.3026965438663122,0.3004558700481837,0.2984901794860375,0.2952316847435328,0.2917115007278941,0.2926088811578982,0.2920155860136035,0.2930726655954294,0.2936616678240958,0.2947510094212651,0.2953045445973977,0.2966232373119986,0.2972850028730128,0.2979198587269847,0.2970126008778139,0.2995181175292571,0.3055244755244755,0.3104624415007535,0.312685172523816,0.3163134916409328,0.3210759493670886,0.3216879443467624,0.3255220636870453,0.3302165936797254,0.3335375191424196,0.3357723577235772,0.339917695473251,0.3408742331288343,0.0,1.9809812949072505,54.69934957604752,157.80758260813127,210.9668702842545,fqhc3_80Compliance_baseline_low_initial_treat_cost,68 -100000,95645,46667,445.07292592398977,5153,52.83078049035496,4102,42.38590621569345,1571,16.143028908986356,77.2563444549925,79.66678565219519,63.27473565930678,65.05576777826519,77.05874081763794,79.46999940769402,63.2019220815847,64.98528292199433,0.1976036373545611,196.786244501169,0.0728135777220799,70.4848562708662,220.89254,154.77786801431816,230950.2012650949,161825.15262298938,444.14985,293.67169587141274,463886.1519159391,306557.11463605275,431.25286,210.3276281289456,447460.14951121336,217257.9933122636,2644.37656,1227.531237407443,2734823.5558575983,1253554.4854533046,951.50648,430.61884345510384,982203.9730252496,437686.16635758313,1528.32592,638.1421081386627,1571567.023890428,644702.2993025527,0.37897,100000,0,1004057,10497.736421140677,0,0.0,0,0.0,38168,398.5362538554028,0,0.0,39178,406.2000104553296,1241406,0,44577,0,0,8672,0,0,68,0.7109624130900727,0,0.0,0,0.0,0,0.0,0.05153,0.1359738237855239,0.3048709489617698,0.01571,0.3545809329120981,0.6454190670879019,23.92086640775763,4.132183191972149,0.311311555338859,0.2749878108239883,0.2113603120429059,0.2023403217942467,11.423259774700272,6.198932912219584,16.761048046680397,11741.950304186046,46.81576139426736,13.803121154486105,14.321495311986498,9.663813288631143,9.027331639163611,0.576060458313018,0.7969858156028369,0.6664056382145653,0.5986159169550173,0.1132530120481927,0.7781569965870307,0.9192139737991266,0.8840579710144928,0.7644230769230769,0.1677018633540372,0.495221843003413,0.7134328358208956,0.5858369098712446,0.5462822458270106,0.1001494768310911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281865599837,0.0044089476298105,0.0065253351464902,0.0087165889488281,0.0110387628446434,0.0131923433472897,0.0153113269136608,0.0172360946503739,0.0196489577153611,0.0216977072960845,0.0238569200459694,0.0259385244638104,0.0279096103361301,0.0299615428235609,0.0319301688962347,0.0339503937252304,0.0361785499554247,0.0382581777763927,0.040124034879607,0.0420873664886515,0.0571562940899827,0.0713836741535367,0.0849719174846464,0.0979874107913517,0.1102259177579166,0.1249563515157928,0.1365942182790678,0.1485800083059131,0.1588662184838023,0.1687161988153489,0.1815104671970334,0.1929389333651106,0.2037966825315573,0.2137730783980715,0.2228715720759959,0.2324714238153368,0.2412921693819816,0.2487887869842486,0.2566753777979775,0.2631295294009724,0.2693301806970571,0.2745010722698136,0.2803751615542407,0.2861411087113031,0.2907991287099797,0.2954696950993704,0.2996077743386674,0.3033448820502369,0.3065835353286583,0.3104727455147922,0.308429351121892,0.3062040073863793,0.3032608695652174,0.3012093562169599,0.2997228513529622,0.2958255202729704,0.2931521635607479,0.2935086737548965,0.293537035447601,0.2941113202473783,0.2949509010873246,0.2956501050795035,0.2966368560272074,0.2977649764440574,0.2989121298720011,0.3003458228243064,0.3013776613913241,0.3056035159315649,0.3087768277787471,0.3121722329561137,0.3147419369430497,0.3176538908246225,0.3209760381382511,0.3242611580217129,0.3315552285477789,0.3306470450829245,0.3309417040358744,0.331547619047619,0.333243751679656,0.333843797856049,0.0,1.91108278715812,51.20095921728952,153.4632834814295,215.45451641799943,fqhc3_80Compliance_baseline_low_initial_treat_cost,69 -100000,95693,46943,446.97104281399896,5220,53.504436061153896,4095,42.20789399433605,1577,16.10358124418714,77.32722884548278,79.70471003205209,63.32110870231941,65.07619288181027,77.1270972043728,79.5076655569147,63.24600596925072,65.00472293556587,0.2001316411099765,197.04447513738896,0.0751027330686966,71.46994624440595,220.2959,154.33075853613158,230211.09172039756,161276.9570774577,449.71829,298.17867961541043,469365.1259757767,311004.9424883852,433.92174,211.5960848099484,450083.87238356,218479.68151845067,2686.2516,1251.833052831914,2772502.147492502,1273522.549018125,973.24922,438.2739986596582,1004299.5725915168,445245.9100035096,1540.44208,651.7840984546341,1575600.6395452125,652693.7563400986,0.38055,100000,0,1001345,10464.14053274534,0,0.0,0,0.0,38780,404.6481978828128,0,0.0,39390,408.21167692516696,1241588,0,44577,0,0,8786,0,0,58,0.606104939755259,0,0.0,0,0.0,0,0.0,0.0522,0.1371698856917619,0.3021072796934866,0.01577,0.3514851485148514,0.6485148514851485,23.73483910828483,4.206482319418026,0.3162393162393162,0.252991452991453,0.2173382173382173,0.2134310134310134,11.409238954650403,6.110461746056293,16.739016112267095,11749.688809887482,46.8869263746888,12.57904222415246,14.730455711433024,10.031649604735732,9.545778834367574,0.5687423687423687,0.7847490347490348,0.6725868725868726,0.6033707865168539,0.1235697940503432,0.7288851351351351,0.914004914004914,0.8310249307479224,0.7192982456140351,0.1436170212765957,0.5036070079010649,0.7011128775834659,0.6113490364025695,0.5634441087613293,0.1180758017492711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0045606105137274,0.0067566196611545,0.0086738373096884,0.0107686519356118,0.0130023520307902,0.0151938490404421,0.0169946789496798,0.019327920152169,0.0214027506118728,0.0238437083376064,0.0259128023417038,0.0279774945742175,0.0298196805770221,0.0318176188903566,0.0340862083229916,0.0360743035338727,0.0384140200791121,0.0406811042459797,0.0425795826471262,0.0572923738993283,0.0712738233539514,0.0847318956113115,0.0977434117090105,0.1097353905862749,0.1250846238470001,0.1369371663854488,0.1491396200698526,0.1604414624244108,0.1690231500354009,0.1811278074002262,0.1928405966530276,0.2040028280850601,0.2130740542254984,0.2227443815896634,0.2316274637978218,0.2406388464156966,0.2497637688984881,0.2569593390755683,0.2643413516609393,0.2697236660839768,0.2766505183832994,0.2819065203754335,0.2866317593069651,0.2909594566683271,0.2951763415145277,0.2986694371080597,0.3020287125184544,0.3048044548044548,0.3090047768599404,0.3063729452977634,0.3044961282957624,0.3028459577823779,0.3010187884210222,0.2998500304393662,0.2965448555887535,0.2937547456340167,0.2942793109653356,0.2946031962149191,0.2959152852548727,0.2967348537117497,0.2980619773733399,0.299213419850195,0.3000178157847853,0.3016310865915088,0.3015786325453174,0.3026667424802411,0.3057278937143573,0.310016397446185,0.3122304435563645,0.3165536388876246,0.3213755041392486,0.3218282409153779,0.324643646619407,0.3270790118800679,0.3310059171597633,0.3323655256723716,0.3364976772369218,0.3469780219780219,0.3463451970914658,0.0,2.270968337469862,51.500598301329255,152.79911168419872,214.34822154604333,fqhc3_80Compliance_baseline_low_initial_treat_cost,70 -100000,95777,46732,444.3655574929263,5139,52.50738695093811,4088,42.08734873717072,1573,15.98504860248285,77.38146625236273,79.70539810158913,63.35451413110488,65.0681155885219,77.18423831395529,79.51414619563563,63.27926534014882,64.99843902393854,0.1972279384074369,191.25190595349292,0.0752487909560599,69.6765645833608,222.00508,155.46136985293373,231793.72918341565,162315.9734100397,448.01319,296.6692600730672,467155.00589911983,309138.5557198315,430.60784,209.7909092299816,446799.5447758857,216797.48056705465,2649.70102,1230.0033753835617,2725272.4244860457,1243177.586078809,938.47932,419.7101876371776,962513.1294569676,421003.37743505824,1536.14318,656.0960311590218,1561053.6558881567,647450.083623769,0.37919,100000,0,1009114,10536.078599246166,0,0.0,0,0.0,38471,401.0357392693444,0,0.0,39034,404.6587385280391,1238460,0,44428,0,0,8805,0,0,79,0.8248326842561367,0,0.0,2,0.0208818401077502,0,0.0,0.05139,0.1355257258893958,0.3060906791204514,0.01573,0.3436687708874861,0.656331229112514,23.895074735007487,4.090507090344564,0.3131115459882583,0.273972602739726,0.2013209393346379,0.2115949119373777,11.241909632338915,6.014602247401404,16.805704215792307,11671.796309346544,46.398769147596845,13.544641420928002,14.44454241803569,8.950201245534968,9.459384063098176,0.5807240704500979,0.8098214285714286,0.70390625,0.5771567436208992,0.1052023121387283,0.7457627118644068,0.925925925925926,0.8575498575498576,0.7311827956989247,0.0978260869565217,0.5137551581843192,0.7291981845688351,0.6458557588805167,0.5321821036106751,0.1071953010279001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363627159143,0.0043272933641412,0.0068775930453129,0.0092513607929157,0.0117034581634416,0.0137935948856811,0.0160836594911937,0.0180920213471566,0.0200756027789129,0.0226205457168288,0.0246283718023583,0.026532057003909,0.0286515872444942,0.0307288449660284,0.0325487406307671,0.0346804093899428,0.0366648729199437,0.0388591098070522,0.0407243109592029,0.042701847185489,0.0570769584003005,0.0718807881876497,0.08609368772158,0.0990117746005046,0.1107631970142644,0.1257946119755032,0.1379109164005897,0.1481796891632957,0.1577654347361675,0.1671223183557942,0.1790562726754013,0.1913980122638346,0.202548989756193,0.2119103876783057,0.2208015141178283,0.2298111869515114,0.2394565872608336,0.2474628141947388,0.2539082456319607,0.2605068020583819,0.2671274908240416,0.2727762298344611,0.2786768797281779,0.283709783715775,0.2880909300659389,0.2917328604327533,0.2963481565754435,0.300341904241392,0.3033550792171481,0.3064363090060884,0.3042215649368109,0.3008034058916432,0.3000379741494494,0.2987984518514239,0.2968281310326394,0.293927806668706,0.2913016714806572,0.2908169106222912,0.2915305010893246,0.2916341030195382,0.2919742041303213,0.2933411903358868,0.2940171296392773,0.2952374590875693,0.2969026337173175,0.2977296849517202,0.2997767920210211,0.303171786970461,0.3077163712200209,0.3119020433875349,0.3164522681110359,0.3197271773347324,0.3206168328482071,0.3227040816326531,0.3238397609487347,0.3274221961244862,0.3321783669780054,0.3370540163444289,0.3328826392644672,0.3354814253222138,0.0,2.2779323579391795,51.28211511863896,145.66685305660016,218.36370065751896,fqhc3_80Compliance_baseline_low_initial_treat_cost,71 -100000,95760,47132,448.3709273182957,5260,53.7280701754386,4158,42.87802840434419,1532,15.6328320802005,77.31912755708531,79.6698116404072,63.32066847763053,65.0586832028075,77.11818697291734,79.47056345321609,63.244780286107314,64.98589715772552,0.2009405841679665,199.2481871911167,0.0758881915232194,72.78604508198327,220.32098,154.4655165261885,230076.2113617377,161304.84181932802,452.02674,299.2349539766758,471520.95864661655,311963.955698283,441.75248,215.3376336849104,457972.9845446951,222271.40937653463,2677.69091,1252.672822247568,2761896.982038429,1273782.8553128317,962.1426,439.8123295797497,989548.0785296574,444090.40265220153,1486.98736,639.6831140433096,1518707.497911445,639383.2654405333,0.38315,100000,0,1001459,10458.009607351712,0,0.0,0,0.0,38811,404.7410192147034,0,0.0,40145,415.90434419381785,1240977,0,44554,0,0,8724,0,0,87,0.898078529657477,0,0.0,1,0.0104427736006683,0,0.0,0.0526,0.1372830484144591,0.291254752851711,0.01532,0.3573508005822416,0.6426491994177583,23.4350201484076,4.136841547684656,0.316017316017316,0.2722462722462722,0.2147667147667147,0.1969696969696969,11.679350399951025,6.396286695439894,16.544239130076445,11805.503382953946,47.65136230335767,13.809382255729233,14.94728339071564,9.794250260563604,9.100446396349192,0.5848965848965849,0.8012367491166078,0.700152207001522,0.5643896976483762,0.1233211233211233,0.7611697806661251,0.9326315789473684,0.859375,0.702020202020202,0.1436781609195402,0.5107618722241203,0.7062404870624048,0.6344086021505376,0.5251798561151079,0.117829457364341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369644249562,0.0048034536223512,0.0071831500344953,0.009415182108107,0.0116240046373981,0.0135753057753607,0.0161203160846291,0.0183494669770861,0.0205721764381096,0.0227577522752633,0.0248738875446007,0.026932949994866,0.029053324420219,0.0312245675845515,0.0330585334145007,0.0353042094275467,0.036978756884343,0.0391361623118653,0.0410341136984735,0.0430054889543906,0.0576304801670146,0.0711446325083164,0.0843813259772815,0.0972480730201793,0.1092580488730523,0.1254150189269778,0.1375173686611016,0.1488571550183025,0.1591401753393061,0.1692020712057376,0.1822645776126635,0.1936517212644611,0.2049357740289968,0.2151940256076626,0.2243418374643827,0.2342623658771551,0.2428909423686442,0.25043313907702,0.2581223544898491,0.2652582159624413,0.2719864805426302,0.2771601759970043,0.2824274718768502,0.2872705458908218,0.2925557136083452,0.2970275039176733,0.3013125594910075,0.3039680114099429,0.3066982917282319,0.3099069368358524,0.3077979797979798,0.3054531447752159,0.3043251546711388,0.3021244594848656,0.2994548344449561,0.2961579100500742,0.2923871049464817,0.2929418908052579,0.293492355992356,0.2945712908581323,0.2948823617563315,0.2964468206838045,0.2975180647188187,0.2994030718325918,0.3012077120699176,0.3032921275211451,0.3033921919872615,0.3073283829933891,0.310754043268221,0.3131822660098522,0.3169243287225387,0.3178888419273035,0.3199172465676133,0.3236142748671222,0.325836378971043,0.3301698886936145,0.3362121212121212,0.3364805142627561,0.3358778625954198,0.3368540173519426,0.0,2.1235706082324364,53.6987499084463,150.84839056296786,218.9241585545268,fqhc3_80Compliance_baseline_low_initial_treat_cost,72 -100000,95679,46908,447.02599316464426,5201,53.04194232799256,4137,42.63213453317865,1586,16.147744019063744,77.34181859432726,79.72448898968304,63.3271521787835,65.0854808954605,77.13995027091714,79.52602960803347,63.25101421252628,65.01326782632539,0.2018683234101246,198.45938164957036,0.076137966257221,72.21306913511683,222.78762,156.0733453724494,232849.02643213244,163121.84008241037,453.62759,300.02113998929224,473515.3168406861,312971.78063032875,439.23993,214.19550080160792,455210.9971885158,220873.31700901885,2705.36167,1251.365400830624,2788268.20932493,1268607.3964303816,983.25205,440.75631915246936,1013596.0973672384,446600.48615941766,1553.794,657.9817447612609,1583329.1526876325,654284.964630479,0.38049,100000,0,1012671,10584.04665600602,0,0.0,0,0.0,38867,405.60624588467687,0,0.0,39784,411.9921821925397,1231645,0,44180,0,0,8762,0,0,85,0.8779355971529803,0,0.0,1,0.0104516142518211,0,0.0,0.05201,0.1366921601093327,0.3049413574312632,0.01586,0.3448085419734904,0.6551914580265096,23.712524278842817,4.16008287563584,0.2990089436789944,0.2772540488276528,0.2025622431713802,0.2211747643219724,11.446027826874042,6.168730873698708,16.904715053626237,11710.626085350605,47.00461535291791,14.028201963033355,13.899838842479278,9.13228991363943,9.94428463376585,0.5690113608895335,0.7942458587619878,0.692805173807599,0.5596658711217184,0.1278688524590163,0.7433554817275747,0.8972746331236897,0.8260869565217391,0.7715736040609137,0.1621621621621621,0.4974428912376406,0.7208955223880597,0.6412556053811659,0.4945397815912636,0.1191780821917808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607345748397,0.0047437079984187,0.0070208901920599,0.0091507383559139,0.0114491397893195,0.0135314001791968,0.0155948995504999,0.0177209762869654,0.0196854015269984,0.0218550706834955,0.0236649987695841,0.025757684684037,0.0280238264251103,0.0301503395262089,0.0322647234894618,0.0343094156952388,0.0360203521207034,0.0382494938483102,0.0401556290701787,0.0422947811763724,0.056944371898668,0.071348544024795,0.0846383139510474,0.0970579569847215,0.1097397596970368,0.1259334475682765,0.1375973516117395,0.1493501655188563,0.1604504321627367,0.1691368881643859,0.1818602797850458,0.193586068898383,0.2041957129340627,0.213266722782776,0.2217529039070749,0.2314004739861348,0.2401062476284011,0.2483774815814633,0.2559802097045073,0.2619729277845216,0.2677522320395984,0.274153756211634,0.2794289836903171,0.285069065903128,0.2899868855644064,0.2939683634750899,0.2975981986489867,0.3011588414129978,0.3052609770940968,0.3079002901609074,0.3062421787747083,0.3043149545685732,0.3016217129342868,0.3000245377520532,0.2972046648268495,0.2938511227785516,0.2907232132981497,0.2906544352526825,0.2910734077926507,0.2923534228044569,0.2929999254120982,0.2931523022432113,0.2949346234854962,0.2965882772136112,0.2978331138513109,0.3003328652415873,0.3021451910782781,0.3062260956799799,0.3094060274357085,0.3123069612734616,0.3162699854651162,0.3175165125495376,0.3226890756302521,0.3257986738999397,0.3282711362163163,0.3282667609284788,0.3307528840315725,0.3377298161470823,0.3408528198074277,0.3431635388739946,0.0,2.400455119655516,52.290556448143455,148.03901546174802,218.59574388241347,fqhc3_80Compliance_baseline_low_initial_treat_cost,73 -100000,95675,47183,448.8737914815783,5269,53.984844525738175,4152,42.7697935719885,1626,16.65011758557617,77.38307130315455,79.76034735257906,63.34642469116329,65.0978062767598,77.17754169808728,79.55620091600707,63.26897556037101,65.02314129536039,0.2055296050672694,204.14643657198891,0.0774491307922815,74.66498139940825,221.5906,155.21319041204384,231607.629997387,162229.62154381382,450.77471,298.7217269623419,470526.3862032924,311599.9261594349,438.47978,214.54917381009471,454153.488372093,221087.5053782831,2692.23854,1266.708043323188,2776749.997386988,1286788.5908344514,977.84026,446.9873888532516,1005159.9895479488,450426.5132372399,1579.44748,678.4374516010447,1618784.1337862555,682112.2501815225,0.38315,100000,0,1007230,10527.619545335772,0,0.0,0,0.0,38662,403.4282727985368,0,0.0,39806,411.88398223151296,1237700,0,44479,0,0,8829,0,0,78,0.8152599947739744,0,0.0,0,0.0,0,0.0,0.05269,0.1375179433642176,0.3085974568229265,0.01626,0.3558148013124316,0.6441851986875684,23.49326739812044,4.077681193332624,0.3184007707129094,0.2719171483622351,0.1972543352601156,0.2124277456647398,11.080811246234788,6.030323608864798,17.581980995797608,11766.434853217565,47.6365165266926,13.8000031233106,15.155779503257946,9.00845454405791,9.672279356066149,0.5857418111753372,0.8104517271922055,0.6906202723146747,0.5995115995115995,0.1281179138321995,0.7434052757793765,0.9210526315789472,0.8402061855670103,0.7438423645320197,0.1617647058823529,0.5177524991382282,0.7355126300148589,0.6284796573875803,0.551948051948052,0.1179941002949852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182126479252,0.0045792555670374,0.0067747791604547,0.0089971160485803,0.0113568196837984,0.0136608406201329,0.0158514954433321,0.0180056956792454,0.0202489982827704,0.0223682728826919,0.0244014968985492,0.0266476350865663,0.0286945521490059,0.0308601917946499,0.0331569228229808,0.0352015874820426,0.0371490728271003,0.0392850841230136,0.0413065859669921,0.0434275113857826,0.0586668338086433,0.0722032620757521,0.0846508114686165,0.0974807057388598,0.1093656098769597,0.1245890200970494,0.137295016801467,0.1482336176276666,0.1589167964832163,0.1690862144701458,0.1806278779532641,0.1925247588980668,0.2035801234675245,0.2129359432549701,0.2218018236012274,0.2319691564556513,0.2402506030554811,0.247882787512951,0.2552256599489071,0.2626025388387333,0.2694159029899102,0.2761288359354884,0.2807125598142796,0.2855891738848765,0.2903759179108107,0.2945268845057913,0.2983760908487649,0.3028910417170573,0.3075358262717355,0.3116385911179173,0.3091662629850907,0.3061653721905286,0.3041661390401418,0.3015329984410185,0.2992360750574798,0.2961160591313929,0.2937204484716226,0.2927888792354474,0.2933000956153531,0.2949042541810791,0.2959615348776533,0.2969741001826143,0.2980955354355292,0.2996780282002886,0.3021327296556654,0.3030592487414483,0.3042939253916376,0.3082017162044522,0.3122565386755704,0.3154740923510751,0.3205948625506985,0.3248980445466903,0.3287467460022313,0.3282442748091603,0.3318298969072165,0.3342602247711737,0.3340273646638905,0.3364413364413364,0.3469981486379265,0.3538236370289059,0.0,2.396406451600692,54.35922329873485,151.43011673646035,213.63777856440515,fqhc3_80Compliance_baseline_low_initial_treat_cost,74 -100000,95698,47098,448.91220297184896,5404,55.2153650024034,4291,44.306046103366846,1641,16.813308533093693,77.3960056150407,79.77970659198222,63.35197710932333,65.11294052303347,77.18391559630037,79.570394376394,63.27161684840104,65.03622120077073,0.2120900187403407,209.3122155882128,0.0803602609222906,76.71932226274691,221.45398,155.13789844597514,231408.74417438192,162111.52862119905,450.05743,296.820060327605,469711.8330581621,309587.1883713192,440.44435,214.00436715412195,456651.48696942464,220894.46834688785,2799.39388,1302.1417626183916,2889591.10953207,1325121.0086133054,1019.05738,458.45578824470624,1050507.628163598,464750.074549244,1603.26482,686.5531905110662,1643169.637818972,689011.1588680631,0.38266,100000,0,1006609,10518.579280653725,0,0.0,0,0.0,38653,403.3313130890928,0,0.0,39958,414.0211916654476,1244391,0,44602,0,0,8819,0,0,70,0.7314677422725658,0,0.0,0,0.0,0,0.0,0.05404,0.1412219725082318,0.3036639526276832,0.01641,0.3483026874115983,0.6516973125884017,23.72357907551097,4.196251752285915,0.3057562339780937,0.2726637147518061,0.2055464926590538,0.2160335586110463,11.274902246002345,5.989919772814849,17.606504480981748,11777.556064064083,49.07007861085895,14.212058619862358,15.012730361397628,9.735246984841131,10.110042644757836,0.576089489629457,0.7965811965811965,0.7103658536585366,0.5668934240362812,0.116504854368932,0.736053288925895,0.9128540305010894,0.838150289017341,0.7715736040609137,0.1155778894472361,0.513915857605178,0.7215189873417721,0.6645962732919255,0.5080291970802919,0.1167582417582417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0045425969864736,0.0067802115263595,0.0089509779019558,0.0112811018656033,0.0136643180059463,0.0160282227229625,0.0184687949851453,0.0208243881494203,0.0228459129153104,0.0247283165880664,0.02681807447868,0.0286422444823827,0.0306853999711584,0.0325632744869427,0.0344332113543798,0.0364519671010379,0.038396860986547,0.0403544535507758,0.0422438322754135,0.0564468956296482,0.070694490957803,0.083993245298455,0.0970570608459767,0.1090297689323663,0.1245399551588476,0.1361866465788887,0.1471170634075714,0.1576181014037561,0.1674317830787712,0.1801869722557298,0.1917855636202364,0.202738535101065,0.2129889718339108,0.2218044286122655,0.2314836338679861,0.2403006546152044,0.2485453687686743,0.2565020389669234,0.2642486454356325,0.2711613945970907,0.2772966032450099,0.2829188218899832,0.2869922977563029,0.2923867464915045,0.2964005259729886,0.301703496782561,0.3054935861684328,0.3086567857281065,0.3124884950166987,0.3095404179969415,0.3071893633061476,0.3046788307839254,0.3027093241101023,0.300749540795165,0.2973616709417369,0.2941399343268502,0.2948107418135401,0.2952223660014983,0.2968488814596152,0.29827377064477,0.2985455974842767,0.2989658544705466,0.2989757006030507,0.30054931932171,0.3021739130434782,0.3049713463004262,0.3082375718211341,0.311451978385916,0.3157457908465734,0.3166075811289883,0.3196235990695707,0.3210968875502008,0.3229324447137231,0.3224746526473901,0.3249376262326244,0.3298293723339427,0.3360307505563423,0.3433982981059566,0.3478428351309707,0.0,1.9807779166610069,52.54957100027302,167.34794938497942,221.76520287032545,fqhc3_80Compliance_baseline_low_initial_treat_cost,75 -100000,95831,46796,443.79167492773735,5326,54.56480679529589,4205,43.37844747524287,1645,16.82127912679613,77.38566316619061,79.70631173153853,63.36611244363343,65.08422387578123,77.17109618217941,79.49337101410954,63.28600386208145,65.00681534448002,0.2145669840111992,212.94071742899237,0.0801085815519755,77.4085313012165,220.57794,154.54451317915846,230173.43030960756,161267.3072170368,452.83439,299.02786716769606,472034.2895305277,311536.6188057058,437.39114,212.95807971722388,453738.0701443166,220104.73846219893,2724.99638,1270.7356352925783,2813161.127401362,1295634.7061937992,968.03853,434.3164588905182,999352.5685842786,442478.15535845206,1593.0749,678.7699030296203,1631238.3049326418,682704.5735949605,0.37913,100000,0,1002627,10462.428650436706,0,0.0,0,0.0,38889,405.26551950830105,0,0.0,39668,411.2134904154188,1247392,0,44771,0,0,8746,0,0,76,0.7930627876156985,0,0.0,0,0.0,0,0.0,0.05326,0.1404795188985308,0.3088621855050695,0.01645,0.3545881502890173,0.6454118497109826,23.591866276826693,4.167365201837415,0.3110582639714625,0.2665873959571938,0.2149821640903686,0.207372175980975,11.577845457794492,6.357561902939263,17.688602146858127,11736.603364634908,48.25154180546581,13.744098346076694,14.922334829707657,10.072940738001147,9.512167891680312,0.5824019024970274,0.8117752007136485,0.7025993883792049,0.584070796460177,0.1055045871559633,0.7538337368845843,0.9323144104803494,0.8699186991869918,0.7112068965517241,0.1166666666666666,0.5107889413351315,0.7285067873303167,0.6368477103301384,0.5401785714285714,0.1026011560693641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219531463644,0.0045619050515495,0.0066781013082177,0.0090220063804279,0.0111680703039179,0.0132980348233377,0.0155439358264787,0.0175936320032656,0.0197763787253178,0.0220125464351136,0.0242677652749595,0.0263373978733013,0.0283353374649276,0.0305410301807551,0.0327916185447945,0.0350465841717107,0.0373524268730534,0.0395621935925208,0.0417929974664617,0.0435574331706606,0.0586621606116552,0.0724925521350546,0.0861727437560919,0.0983988905698436,0.1106043689831686,0.1257445190723609,0.1374912611486558,0.1481300415546321,0.1588809965657729,0.1684944417075417,0.1804798313815315,0.191680349118562,0.2022972034045509,0.2120401702870865,0.2208469699299317,0.2302436651483659,0.2389810307762567,0.2478125596702272,0.2560715903942003,0.262668175531246,0.2691543667567505,0.2746335884988797,0.2804683719118497,0.2853831078820324,0.29075652637187,0.2949740970807041,0.2985173269487362,0.3020635282784495,0.3056279513844089,0.3089165691136044,0.306273261047738,0.3046541329634563,0.302125804909597,0.3002842671822917,0.2977495586642733,0.2940996543602606,0.2921214997626958,0.2928514003511132,0.2936298981057239,0.2943634804972139,0.2953979750341549,0.2963226431126128,0.2971860562788744,0.2988485147184013,0.301138281965948,0.3015063549348815,0.3022531913070794,0.3056805664830841,0.3092130720793611,0.3120353067472466,0.3167175468173326,0.321125715497138,0.3254382107181001,0.3259455370650529,0.3292671483531951,0.3338852749852158,0.3394495412844037,0.3421900161030596,0.347469220246238,0.3558165971959075,0.0,1.854623045604282,54.41432382441189,157.24882376483487,216.5777470281138,fqhc3_80Compliance_baseline_low_initial_treat_cost,76 -100000,95759,47145,448.74111049614135,5311,54.08368926158376,4198,43.1708768888564,1609,16.39532576572437,77.37657405990127,79.72214836781191,63.3458979718325,65.07947290121345,77.16634421315077,79.51653071974586,63.26502487593911,65.00306010404728,0.2102298467505079,205.6176480660525,0.0808730958933949,76.41279716617078,222.4453,155.7344293924699,232297.01646842595,162631.63712284996,451.07046,298.5147147658796,470395.8583527397,311083.6837956533,441.27955,215.37352568884364,456776.42832527496,221739.4829374109,2726.63357,1291.314351256921,2805207.4478639085,1306381.791640389,982.9411,454.7167946659916,1007175.440428576,455556.9969047206,1569.60206,685.9326043199613,1600761.3070311928,683060.3110371073,0.38197,100000,0,1011115,10558.95529401936,0,0.0,0,0.0,38632,402.76109817353984,0,0.0,40056,414.2587119748536,1234788,0,44382,0,0,8884,0,0,79,0.8249877296128824,0,0.0,0,0.0,0,0.0,0.05311,0.1390423331675262,0.3029561287893052,0.01609,0.3552941176470588,0.6447058823529411,23.71857897021305,4.083133801390324,0.3134826107670319,0.266793711291091,0.2105764649833253,0.2091472129585516,11.08657890121996,5.8639152500478495,17.445642397008157,11747.934208965196,48.22210322240832,13.676247427835316,14.958498603145353,9.872279458418085,9.715077733009554,0.5828966174368747,0.7955357142857142,0.709726443768997,0.5882352941176471,0.1161731207289293,0.7300955414012739,0.909297052154195,0.860655737704918,0.7292576419213974,0.1545454545454545,0.5200543847722637,0.7216494845360825,0.651578947368421,0.5389312977099237,0.1033434650455927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220297781829,0.0047440926922726,0.0070212463726942,0.0094477630135316,0.0115633390285574,0.0139815276830174,0.0160699901092065,0.0179380895985625,0.020159682679234,0.0224585683430408,0.0244239914726139,0.0263498254978443,0.0283843243687803,0.030669412976313,0.0327758921294529,0.0348848026295389,0.0369146975376395,0.0390265156230549,0.040940232251089,0.0427211564498323,0.0582206078824315,0.0720874294080736,0.0857942573198729,0.0986001345216075,0.1110830066186079,0.1269529185429483,0.1387068727866488,0.1495386776490119,0.1599982910729925,0.170284415083008,0.1818074105988797,0.1932373945033542,0.2042012967233802,0.2138191367142622,0.2229035702883313,0.2316875803662484,0.2403993255240031,0.2482189684084949,0.2557909909091941,0.2628770354762613,0.2693882744898431,0.2750339086104485,0.2807799640525967,0.2849376092735851,0.2897098650732927,0.2938994787880281,0.2983300417489563,0.3020095013083352,0.3052973196622748,0.3090741350906095,0.305940367897021,0.3035508320975449,0.3016553313473104,0.2994201978827127,0.2977458986024868,0.294978759817854,0.2913935526669088,0.2912194004450844,0.2912677591904875,0.2920163584637268,0.2919679390168712,0.294033140473098,0.2932685287552932,0.2954358689616879,0.2976770863206194,0.3003990464344942,0.3016129032258065,0.3058794189163913,0.3090953477017507,0.3139181563474211,0.318445370538141,0.3234082990180551,0.3281727948061677,0.3297599275252906,0.3346050060481995,0.3388555986370579,0.3408506129862267,0.346505162827641,0.3484602917341977,0.3458364591147786,0.0,2.607691922346677,54.44619106978475,156.48440276972698,213.4870386933134,fqhc3_80Compliance_baseline_low_initial_treat_cost,77 -100000,95764,46628,443.9559751054677,5306,54.49855895743704,4241,43.84737479637442,1629,16.71818219790318,77.3313489084019,79.69828285082473,63.31030609897547,65.06351705558968,77.12780468962579,79.4943419167747,63.23453044476673,64.98941856508073,0.2035442187761162,203.94093405002425,0.0757756542087335,74.098490508959,221.94282,155.31114909685408,231760.18127897748,162181.14228400448,447.46839,295.7352610417,466816.6116703563,308371.7587420116,433.63993,210.5346684993036,449945.25082494464,217647.9272137661,2756.53157,1278.6639164500675,2852270.498308341,1309031.229324242,1006.68474,445.916314734112,1038753.6026064074,453180.2918989521,1583.8223,666.0725880541581,1627288.271166618,673293.377547314,0.38056,100000,0,1008831,10534.553694498976,0,0.0,0,0.0,38427,400.80823691575125,0,0.0,39497,409.5693580050959,1238573,0,44494,0,0,8651,0,0,67,0.6996366066580344,0,0.0,0,0.0,0,0.0,0.05306,0.1394261088921589,0.3070109310214851,0.01629,0.3485066570708888,0.6514933429291112,23.87559156390258,4.104344873594565,0.3074746522046687,0.2676255600094317,0.2152794152322565,0.209620372553643,11.182559782575488,6.028721764762486,17.37163447388097,11732.829880008903,48.434366539364326,13.923484666452698,14.751033911612922,10.094350878405391,9.66549708289332,0.574628625324216,0.798237885462555,0.6878834355828221,0.56078860898138,0.1372328458942632,0.7510204081632653,0.9237113402061856,0.8898809523809523,0.7177033492822966,0.1179487179487179,0.5029840848806366,0.7046153846153846,0.6177685950413223,0.5142045454545454,0.1426512968299711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107417501697,0.0042994615532818,0.0064552144125856,0.008605974395448,0.0106716311623837,0.0130154494811133,0.0150095339091066,0.0172968336787935,0.0192699117307121,0.0215293852551365,0.023629799803085,0.025900241434222,0.0279092742765405,0.0301762341543852,0.0322041246051898,0.0341853828018364,0.0362730783966533,0.0382484175573311,0.0402685959003783,0.0422542545878726,0.0572958528616611,0.0709748977178792,0.0847240724617918,0.0976435579015993,0.1098998418555614,0.1251877234173065,0.1371030209140201,0.1477793162211098,0.1577951847141926,0.1675518503020354,0.1797088016898554,0.1913280776228016,0.2022577098505383,0.212048904893773,0.2205354587287258,0.2305415770688776,0.2396918439122425,0.2479431857829399,0.2557983841684822,0.2631765892112379,0.2698094863307021,0.2759702628343968,0.2812503703001505,0.2863916832729106,0.2905344588512905,0.294892347152687,0.29966081329712,0.3031444459997709,0.3066784172941588,0.309662352056367,0.3081004646151774,0.3054070031207467,0.3030021665119158,0.3004097414589104,0.2985362095531587,0.2954181107531642,0.2931668007128101,0.294139775273548,0.2949923352069494,0.2961652651602695,0.2986942734564446,0.299785487965678,0.3007465487759102,0.2999977736714384,0.3006417009864955,0.3023642073028313,0.3043502888863713,0.3067284801403332,0.3108406691684495,0.3142834464420367,0.3187641980917765,0.3205913410770855,0.3246996996996997,0.3288053731793827,0.3338878107383791,0.3384935304990757,0.340352958623758,0.3434087363494539,0.3499334221038615,0.3486988847583643,0.0,1.7414561585666744,54.0313793676241,156.26718743613156,222.8269097023349,fqhc3_80Compliance_baseline_low_initial_treat_cost,78 -100000,95485,46586,443.79745509765934,5233,53.54767764570352,4110,42.42551186050165,1549,15.845420746714144,77.22623088476638,79.71436870133665,63.24095407219974,65.07655233973281,77.02650732428172,79.5171989550966,63.16518590975037,65.00432756339553,0.1997235604846565,197.1697462400499,0.0757681624493713,72.2247763372792,219.66758,153.8874858652202,230054.54259831388,161164.04237861463,445.07027,294.5459216114999,465507.5875792009,307865.70834319526,432.80722,210.82362171633665,449504.3619416662,217827.11225655724,2656.15204,1243.6056088950063,2742937.194323716,1263598.6268995183,943.78583,429.806320629788,969869.4768811855,431586.4906841786,1506.81984,642.271416545476,1542387.6001466198,641574.4019917595,0.37932,100000,0,998489,10457.02466355972,0,0.0,0,0.0,38367,401.1624862543855,0,0.0,39300,407.78132690998586,1243093,0,44618,0,0,8856,0,0,70,0.7330994397025711,0,0.0,0,0.0,0,0.0,0.05233,0.1379573974480649,0.2960061150391744,0.01549,0.346435100548446,0.6535648994515539,23.65300433533822,4.046280267376037,0.3177615571776155,0.2800486618004866,0.1992700729927007,0.2029197080291971,11.17396773155924,6.005942997553804,16.539791763269758,11751.148305184886,47.38666416167188,14.252264021208829,14.895215230000252,9.150978821550286,9.088206088912516,0.5800486618004866,0.8166811468288445,0.6753445635528331,0.5848595848595849,0.0995203836930455,0.7593032462391133,0.9270216962524654,0.8284960422163589,0.7107843137254902,0.1734104046242774,0.5005268703898841,0.7298136645962733,0.6127292340884574,0.5430894308943089,0.0801815431164901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293154988093,0.0047876494872549,0.0069851970678416,0.0093340111845449,0.0114941358527447,0.0137389797686388,0.0160103674527291,0.0179429015184027,0.0201438407316848,0.0222433966517079,0.0245319428477582,0.0266604976352046,0.0287800156513859,0.0308387309707496,0.032949320659193,0.0347669434493611,0.036752730780801,0.0388249602394985,0.0411314267854352,0.0431772617158132,0.0578728660100275,0.0715739555574207,0.0842342152862491,0.0972365675259796,0.10969023789645,0.1255061587059297,0.1367430485405922,0.147630023262266,0.1572418668923334,0.1668852529509148,0.1783716661267681,0.1898966231681256,0.2008745052284944,0.2112706940028505,0.2199982345412014,0.2296562989632296,0.2393001767456428,0.2467055202967004,0.2548109731131431,0.2622350740702491,0.2689332884956573,0.2746606016553729,0.2806357867267659,0.2860146329156505,0.2910488675544292,0.2955124242798863,0.3000339063932388,0.3039497375780561,0.3074525692469516,0.3115970789014129,0.3096903096903097,0.30734899097734,0.3056362252234471,0.3032255268745756,0.3009515313707999,0.297622514830541,0.2949858118926459,0.295568122041031,0.2962956625887586,0.2965697227535169,0.2977491238263021,0.298889415856454,0.2993805198610355,0.3000870788398419,0.3000646846026688,0.3005243212376057,0.3010606318416425,0.3065101721439749,0.3092466352036357,0.3141377811153709,0.318249897880452,0.3205527134644797,0.3245870987846681,0.3291025159594442,0.3356366316565322,0.3423736671302735,0.3434282253179891,0.3476941747572815,0.352089593007375,0.3567096285064443,0.0,2.4412852211683806,55.14249101102264,149.9831370293672,208.3938676600305,fqhc3_80Compliance_baseline_low_initial_treat_cost,79 -100000,95699,46738,444.8322344016134,5371,54.70276596411666,4235,43.56367360160503,1611,16.468301654144767,77.36399481233721,79.74998141240597,63.33329461681414,65.09782215917363,77.15833652792924,79.54663742769942,63.25575701839794,65.0237684647299,0.2056582844079741,203.34398470654943,0.0775375984161996,74.05369444373378,220.55462,154.43489079874234,230467.0059248268,161375.65784255043,451.08507,298.3449277025911,470662.7341978495,311057.9919357476,437.76264,213.1365888599933,452643.4027523799,219100.1791986347,2741.65662,1286.5816901402636,2822911.378384309,1302441.018339024,945.83572,433.12568861748144,972972.2672128236,437229.7455746456,1562.30498,665.8763224480439,1598585.96223576,666650.6909896989,0.37983,100000,0,1002521,10475.772996583037,0,0.0,0,0.0,38746,404.163052905464,0,0.0,39744,410.59990177535815,1245491,0,44749,0,0,8737,0,0,89,0.9299992685399012,0,0.0,0,0.0,0,0.0,0.05371,0.141405365558276,0.2999441444796127,0.01611,0.3323766816143498,0.6676233183856503,23.41751959528724,4.10483776309273,0.3173553719008264,0.2703659976387249,0.2148760330578512,0.1974025974025974,11.276843772786904,6.002209434335477,17.176116776758274,11760.387958934514,48.48771131428492,13.956960412553842,15.3016969018363,10.055524091266232,9.173529908628543,0.5782762691853601,0.7921397379912664,0.7001488095238095,0.5637362637362637,0.1052631578947368,0.7446300715990454,0.9034334763948498,0.8530183727034121,0.7420814479638009,0.1375661375661375,0.5080591000671592,0.7157584683357879,0.6396677050882659,0.5065312046444121,0.0958268933539412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0046345594126177,0.0067002355234305,0.0089131451104742,0.0110197602718818,0.0131528007009393,0.0155249092170223,0.0175967155521058,0.0197907397747844,0.0218310652372029,0.0240888487806879,0.0264355184915116,0.028430656558903,0.0306130860381246,0.032632926023778,0.0347715499860417,0.0366909753874202,0.0385198098914554,0.0405821205821205,0.0426243514138656,0.0574290100571261,0.0709867174661656,0.0844409941146232,0.097470950102529,0.1102104919207783,0.1255418578587891,0.1374900588515985,0.1488266207101976,0.1590673741072477,0.1690442760527754,0.1809573002754821,0.1929908058409951,0.2035579139663346,0.2133648262966243,0.2220731076814766,0.2313730265925647,0.2405692997523813,0.2483666010683159,0.2558997050147493,0.2632217592380603,0.2697373746718629,0.2759656752712308,0.281036625051772,0.2866693824734609,0.2912644934134644,0.2948018857473443,0.2997087172306884,0.3036079397533749,0.3069807103450949,0.3109833131547086,0.308631200150388,0.3067047075606277,0.304236740882163,0.3017038989471258,0.2998860424159008,0.2967138439037767,0.2936927580020772,0.2943947321239385,0.2955108411658919,0.2967179341455617,0.2966438445609387,0.2972462627852085,0.297863470557582,0.2981474463294469,0.3005813536209,0.3013627379590138,0.302171565004832,0.3057988239709746,0.3086575093495509,0.310701048813185,0.3139681966028189,0.3192362316553574,0.3220115519839276,0.323171658811008,0.3262771662432966,0.330449211805144,0.333384497313891,0.3375407166123778,0.3430858404637041,0.348900038595137,0.0,2.686424336483717,54.421150881625024,152.2239183678616,223.0260768380332,fqhc3_80Compliance_baseline_low_initial_treat_cost,80 -100000,95671,47159,448.2967670453952,5352,54.75013326922473,4242,43.7645681554494,1650,16.870315978718732,77.31725194233033,79.72556713743701,63.30264576078415,65.08485796889364,77.11004678882051,79.522558960226,63.22402060786597,65.01075324869058,0.2072051535098182,203.00817721101797,0.0786251529181853,74.10472020306713,222.33244,155.67370002910477,232392.4909324665,162717.54161767388,451.68485,298.82594159770804,471532.26160487504,311757.5002037692,441.16279,215.20596962347096,458046.3881426973,222519.5390618564,2780.5107,1296.697947136542,2867125.0117590493,1316260.8704214566,999.16105,452.9003966469757,1027118.5103113796,456179.35512188025,1605.78686,683.408353666341,1642731.318790438,682208.9057807516,0.38189,100000,0,1010602,10563.29504238484,0,0.0,0,0.0,38818,405.1488956946201,0,0.0,40037,415.3923341451432,1233587,0,44260,0,0,8880,0,0,73,0.7630316396818262,0,0.0,1,0.0104524882148195,0,0.0,0.05352,0.1401450679515043,0.3082959641255605,0.0165,0.3454610951008645,0.6545389048991355,23.73316974090431,4.208719073755184,0.305987741631306,0.2703913248467703,0.2069778406412069,0.2166430928807166,11.190228747800893,5.94826659751535,17.5675206667264,11787.405873517837,48.27690968165231,14.027296726229208,14.572008773764288,9.712425155084512,9.9651790265743,0.5742574257425742,0.8081952920662598,0.6833590138674884,0.5820045558086561,0.1207834602829162,0.7657873701039168,0.9171597633136096,0.8705234159779615,0.7192118226600985,0.1741573033707865,0.4941491140086927,0.721875,0.6106951871657754,0.5407407407407407,0.1079622132253711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022794735935647,0.0047558687826395,0.007012594253935,0.0094910018392626,0.0117922368621864,0.0137822145258225,0.0159447493522126,0.0183270676691729,0.0204824947310265,0.02257010255412,0.0244485482712629,0.0268603958157791,0.0290902353159162,0.0311978060498587,0.0332145623547637,0.0353226006704465,0.0374839324957498,0.0394520946268718,0.0414707228765242,0.0436155906972865,0.0583619779967193,0.072478034579175,0.0859692404598183,0.0988941614671562,0.1109036239911378,0.1264287528575057,0.1374940296131189,0.1488684168486075,0.1595057928263007,0.1689964061578072,0.1807820747603145,0.1928335588633288,0.2038832838127578,0.2134639592797329,0.2227705322523792,0.2335864324114615,0.2418841857402716,0.2496287964004499,0.2576799165078501,0.2646264111195072,0.270212421325435,0.2762016138463337,0.2821329230040835,0.2869126511438398,0.2919602507410467,0.296198599743615,0.3000838432756441,0.3030815387353487,0.3073301341335644,0.3107531413819446,0.3077253853286211,0.3043937937663051,0.3024644523127072,0.3006040336182911,0.2982729689193805,0.2956122214564668,0.2927087615012489,0.2930446753417024,0.2933004171277773,0.293949203187251,0.2943318703893921,0.2962962962962963,0.2965029995192408,0.2974250362278453,0.2991590581451225,0.299815185985371,0.3009256630132318,0.3043967727812871,0.3105099437279368,0.3134829684659764,0.3188649262202043,0.3215835715041812,0.3244550537094038,0.327741935483871,0.3274038011422151,0.3284723038927437,0.3276335877862595,0.3232567513099557,0.3202789699570815,0.3284807764091079,0.0,2.240069056805026,54.42966197604269,147.45488565142998,228.83330530566676,fqhc3_80Compliance_baseline_low_initial_treat_cost,81 -100000,95849,47558,451.3766445137665,5337,54.33546515873927,4211,43.27640350968711,1615,16.348631701947856,77.4717338221379,79.75661380501508,63.40399372213196,65.09014107245261,77.26441535259691,79.55879563393205,63.32416605365461,65.01737697967873,0.2073184695409935,197.8181710830285,0.0798276684773497,72.7640927738804,221.34794,155.148237125858,230934.01078780164,161867.35086005906,453.44915,300.2364921307449,472462.4774384709,312614.531326091,454.13128,221.3460923298286,470640.84132333146,228434.4789808251,2681.77725,1260.961231069725,2755390.270112364,1273041.973384935,968.68656,439.1415237594306,995390.9899946792,442917.8666825111,1564.97656,669.3410006148093,1586392.4923577711,657465.2057964521,0.385,100000,0,1006127,10497.00049035462,0,0.0,0,0.0,38832,404.4695301985415,0,0.0,41073,425.314818099302,1239600,0,44434,0,0,8942,0,0,97,1.0120084716585462,0,0.0,1,0.0104330770274076,0,0.0,0.05337,0.1386233766233766,0.302604459434139,0.01615,0.3489836301493074,0.6510163698506926,23.46613266177317,4.111938069671279,0.3084777962479221,0.2830681548325813,0.2061268107337924,0.2023272381857041,11.50703835578834,6.2715859383295856,17.129459868500504,11882.763232897796,48.35860268675528,14.693298688422612,14.850999041548384,9.658616088373671,9.155688868410609,0.591308477796248,0.8095637583892618,0.7274826789838337,0.565668202764977,0.1044600938967136,0.757976653696498,0.92,0.8723958333333334,0.7129629629629629,0.1351351351351351,0.5181134654818865,0.7297687861271677,0.6666666666666666,0.5168711656441718,0.095952023988006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023281708674967,0.0045891541976071,0.0068750126751708,0.0090946000812017,0.0115437769287049,0.014091385432458,0.0161865373645179,0.0185844408857699,0.0208831158221514,0.0231939785650004,0.0253382357459621,0.027413697618608,0.0297498587498073,0.0317930672593141,0.033851831235633,0.0359355638166047,0.037993276441686,0.0400460156079967,0.0419491833407748,0.0438126359388496,0.0587922458471067,0.0729720970591617,0.0860556516271026,0.0994073389096717,0.1118372509750184,0.1279275088023515,0.1397876830729746,0.1509144881738963,0.1612159261987892,0.1707290929748965,0.1831116277067458,0.1950125389138706,0.2054888246921088,0.2157301653163285,0.2244472027856805,0.2351627454448965,0.2436334469621014,0.2519005109202178,0.2599447263501268,0.2659637727563809,0.2721141854127211,0.2785030156674716,0.2843800550222569,0.2888336163394159,0.2932979187891136,0.2977226029504041,0.3016673952413664,0.3055227650635289,0.3100143375657138,0.3116958294961189,0.3094908744174803,0.3078957103125128,0.3059019935186094,0.3038076613367076,0.3014685221609311,0.2985727124556352,0.2947398243460195,0.2943048302872063,0.2952115926290427,0.2960673162090345,0.2963417582621956,0.2976554536187564,0.2983560903630733,0.299159701128528,0.2993522884221555,0.3007254795652286,0.3026275028865921,0.3066443223784253,0.3111026904130352,0.3138919171468619,0.3161489019817889,0.3184316599486991,0.3221288515406162,0.3261066626378607,0.3290818718934634,0.3343565525383707,0.3399578440228846,0.3417922283901665,0.3420134228187919,0.3460246360582307,0.0,2.553908697051273,55.74626324721997,158.09790361908745,207.61927139641764,fqhc3_80Compliance_baseline_low_initial_treat_cost,82 -100000,95752,46921,445.71392764642,5385,55.038014871752026,4246,43.88420085220152,1651,16.981368535383073,77.34438518034166,79.69865756666731,63.33412346583962,65.07299003931026,77.13227824720563,79.4851949250109,63.25494607684007,64.99514145828111,0.2121069331360274,213.46264165640605,0.0791773889995468,77.84858102914427,220.99946,154.90918662900535,230804.01453755537,161781.67205803047,453.13365,299.4245516223845,472791.7119224664,312263.3695613506,440.60964,214.6110914566145,457215.4210878102,221898.81671256383,2775.58673,1297.0923562660944,2872065.8367449245,1327978.6388441965,1011.39932,457.4094726183153,1047543.7171025148,468976.3269887994,1614.7268,688.9108613786549,1662460.6901161333,699089.8947609215,0.38112,100000,0,1004543,10491.09156988888,0,0.0,0,0.0,38863,405.4118974016209,0,0.0,39955,414.3203275127413,1240165,0,44545,0,0,8820,0,0,99,1.0339209624864234,0,0.0,0,0.0,0,0.0,0.05385,0.141294080604534,0.3065923862581244,0.01651,0.3501599715606114,0.6498400284393886,23.75589822990204,4.170848973003575,0.3184173339613754,0.2621290626471974,0.1999528968440885,0.2195007065473386,11.444534820002731,6.23438752044835,17.72789687989283,11747.284688773085,48.637534019700375,13.612086938297422,15.235362642468392,9.50402365758168,10.286060781352884,0.5727743758831841,0.8032345013477089,0.7159763313609467,0.5547703180212014,0.1062231759656652,0.7361222847948512,0.9327548806941433,0.8598382749326146,0.7,0.1232227488151658,0.5051615051615052,0.7116564417177914,0.6615698267074414,0.5100154083204931,0.1012482662968099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046333377267243,0.0068182509968648,0.008896742938972,0.0112755963153506,0.0135188785845897,0.0158068526935855,0.018266238073371,0.0203737572927629,0.0228077355980763,0.0250327895729158,0.0272911085794049,0.0294060189802486,0.0313796974284507,0.033413454099054,0.0355386078042328,0.0373352930825682,0.0394491226614676,0.0416233631261692,0.0434669388775467,0.0586626298480973,0.0724272169781703,0.0854275046148682,0.0979726177206671,0.1103929652161994,0.1257361570750378,0.1377105162686124,0.1489164778348705,0.1590542604201151,0.1679673262869026,0.1805528644319576,0.1918725392636179,0.2026157291644017,0.2124183006535947,0.2218275786232681,0.2313669924836999,0.2405101425989154,0.2496120369745631,0.2571182249245638,0.2639532886828095,0.2704106419895893,0.2760347207599261,0.281785803031558,0.286683935338418,0.2910248311385393,0.2947038654135523,0.2982937462417318,0.3017771832600802,0.3052413346290897,0.3082091423894821,0.3071270926414383,0.3043819004276031,0.3023917113616847,0.2998397273921769,0.2974040632054176,0.2946339670041819,0.2922046034185055,0.2930177631255228,0.2937320770176157,0.2942120752697761,0.2943212001047472,0.2949536763256455,0.2944704505558806,0.2952825344377218,0.2959928890597222,0.2968404628786893,0.2968781069795188,0.3008188749097982,0.3050159263537401,0.3076343745045188,0.3088402050165555,0.3126322471434617,0.3177891837756635,0.3253383458646616,0.3283902257041596,0.332316715542522,0.3340438489646772,0.3409883124871847,0.3413554633471646,0.34375,0.0,1.81172665754835,54.56086751735468,156.18538256995512,223.1478521848991,fqhc3_80Compliance_baseline_low_initial_treat_cost,83 -100000,95667,46541,443.1517660217212,5229,53.61305361305361,4117,42.40751774384061,1629,16.59924529879687,77.28108161739658,79.66921458147986,63.29287913429015,65.05600200410436,77.07075848300799,79.46225211740511,63.2140416907348,64.98109187248586,0.210323134388588,206.9624640747492,0.0788374435553507,74.9101316184948,221.07558,154.82704871523575,231087.96136598827,161838.9140781833,444.28304,294.08763403611584,463749.9033104414,306753.7871226144,429.24983,209.0820063417952,445259.96425099566,215873.38707002095,2694.07665,1261.6930839098666,2777628.900247734,1280537.1481581929,987.27256,449.61048905977935,1015431.799889199,453528.2674508666,1582.50316,673.7581272027322,1614773.7255270889,670562.5407680956,0.37991,100000,0,1004889,10503.998243908558,0,0.0,0,0.0,38250,399.1344977892063,0,0.0,38952,403.6606144229463,1241382,0,44582,0,0,8751,0,0,72,0.7526106180814701,0,0.0,2,0.020905850502263,0,0.0,0.05229,0.1376378615987997,0.3115318416523235,0.01629,0.3482796486090776,0.6517203513909224,23.44401126948361,4.092053085664472,0.3116346854505708,0.2620840417779936,0.2188486762205489,0.2074325965508865,11.180444829688438,6.071160356951825,17.53812949278228,11702.912051980387,47.43690440873517,13.135871688181613,14.700477089870716,10.156193786809744,9.444361843873091,0.5746903084770464,0.8007414272474513,0.6819953234606392,0.564927857935627,0.1381733021077283,0.7459415584415584,0.903448275862069,0.8502673796791443,0.7288135593220338,0.1925133689839572,0.5015597920277296,0.7313664596273292,0.6127612761276128,0.5067669172932331,0.1229385307346326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0040450531736939,0.0063630920364939,0.0085440562424439,0.0106685922339971,0.0128609832593377,0.0151722168974447,0.017366357659166,0.0196577526987242,0.0217916436365125,0.0238798318466113,0.0260896349915293,0.0283014017009636,0.0303536102868447,0.0324791264590837,0.0342749022932649,0.0363690981789554,0.0384435749203416,0.0403915368131982,0.0425157127818138,0.0570025596823904,0.0710441447478639,0.0843593538432471,0.0969971802533563,0.1090807423272105,0.1250449611747032,0.1370265794836956,0.1482049479749086,0.1590138872555832,0.1689410451046285,0.1812083432195164,0.1924143909839618,0.2031864266501138,0.2126119615443575,0.2218427402029371,0.2306685740266365,0.2394336291097651,0.2478993489671329,0.2556186796954891,0.2630921120526551,0.2689874884151992,0.2754568884723524,0.2805026972553204,0.2853008981316939,0.2900585079855494,0.294266400217107,0.2987211443315756,0.3028920881640973,0.3068943608096368,0.3095489874689367,0.3068954354159922,0.3046583123095799,0.3015345919059461,0.2985974266836675,0.2966626936829559,0.294239472271228,0.2913392064900494,0.2913892040316349,0.2917850419305151,0.2928062309080191,0.2929455909943715,0.2943789035392088,0.2950095686736346,0.2960561737257717,0.2967125732616194,0.2984802273141993,0.2999543925659882,0.3035096546952638,0.3081202113144176,0.3114896644401407,0.3148785791953606,0.3196729957805907,0.3199724431640258,0.3218822821919868,0.3231639465875371,0.3216888374783112,0.3269578313253012,0.3299683293745051,0.3213141025641026,0.3273832130649449,0.0,2.2703669951577536,53.779075148472,156.37907154840877,206.99956872848531,fqhc3_80Compliance_baseline_low_initial_treat_cost,84 -100000,95723,46895,445.7653855395255,5327,54.33385915610668,4231,43.58409159763066,1565,15.983619401815655,77.3612597271838,79.72600449243025,63.34108899169471,65.08885135740903,77.17068643918597,79.53741023478219,63.26941998473884,65.01990192716933,0.1905732879978359,188.59425764806304,0.0716690069558723,68.94943023969802,222.21012,155.65731339268442,232138.462020622,162612.02260134392,453.79435,299.5314052001802,473431.5472770389,312278.14539087564,442.85019,215.6287047736532,457944.6632470776,221816.7371697293,2718.23356,1266.9664272613195,2803689.11337923,1287752.273639538,966.84289,431.2050950824181,995903.4192409348,436485.3622474861,1518.53646,641.3038430507078,1553330.9027088578,644278.276361365,0.38099,100000,0,1010046,10551.748273664636,0,0.0,0,0.0,38910,405.837677465186,0,0.0,40213,415.4696363465416,1237503,0,44380,0,0,8830,0,0,78,0.8148511851906021,0,0.0,0,0.0,0,0.0,0.05327,0.1398199427806504,0.2937863713159376,0.01565,0.3476464247215235,0.6523535752784765,23.50410089719007,4.060380165733839,0.3176554006145119,0.2715670054360671,0.212242968565351,0.1985346253840699,11.507548063672418,6.375112502907658,16.56907930795596,11754.567370561335,48.32496648521006,14.01455152058724,15.268560055660735,9.915172203193045,9.12668270576905,0.583077286693453,0.8120104438642297,0.6941964285714286,0.5723830734966593,0.1035714285714285,0.7647540983606558,0.941304347826087,0.8657894736842106,0.7614213197969543,0.1147540983606557,0.5094652939222849,0.7256894049346879,0.6265560165975104,0.5192582025677603,0.1004566210045662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0046435234001135,0.0066672078910515,0.0089504322825126,0.0110546120207464,0.0135536954440846,0.0159178512430404,0.0179506815745137,0.020039465477931,0.0222358722358722,0.024422503152779,0.026426333898218,0.0287462717268332,0.0309151969671996,0.0327846860327124,0.0347675957323629,0.0366281779112514,0.039008343364742,0.0412403294235088,0.0433745233282627,0.0580330573334864,0.0721986142220175,0.085728371234371,0.0983523820538972,0.1113078487789968,0.1275765840045665,0.13955633787882,0.150526651771465,0.1603900542572734,0.1691892123654761,0.1810841362975722,0.1930365370887143,0.2032568049395599,0.212655737704918,0.2218069494674127,0.2306143223864742,0.2398363561372022,0.247376581354066,0.2551455254329495,0.2618232998821388,0.2680899759570926,0.2738466570871155,0.279970682460309,0.2852988691437803,0.2897298214567096,0.294828455174618,0.2987079458211097,0.3033446769605851,0.3069822760591056,0.3108074272234888,0.3085553808736781,0.306204209313174,0.302762089409649,0.3005233639470004,0.2987604163577592,0.296162721396152,0.2933806706114398,0.294067630322454,0.2940026518886207,0.2943874557769916,0.2956958152204332,0.2962612399432087,0.2965910515102143,0.2973249883065684,0.299079754601227,0.3004371129728886,0.3015940791346427,0.3053243285691848,0.3080585311209129,0.312265009696442,0.314411072914782,0.3184278282801744,0.3214641434262948,0.3257005122024706,0.3279814385150812,0.333918744877649,0.3340374170187085,0.337597441535079,0.3383043358188345,0.3370253164556962,0.0,2.31269225448468,52.980958247998416,157.7608868439229,221.1105617866015,fqhc3_80Compliance_baseline_low_initial_treat_cost,85 -100000,95649,46662,444.249286453596,5221,53.34086085583749,4087,42.112306453805054,1622,16.55009461677592,77.2430810454354,79.64623623410806,63.27207635196621,65.04956667602742,77.04059255434234,79.44791295984702,63.19642404942993,64.97792171783453,0.2024884910930637,198.32327426104257,0.0756523025362838,71.6449581928913,221.01948,154.76365020621617,231073.4874384468,161803.7305211933,448.96065,296.8436316176703,468785.4551537392,309748.74971789605,430.98405,209.50468544450865,446502.0439314577,215956.0719138688,2663.33278,1225.3698019356182,2746408.734017083,1243033.9176945055,954.00328,423.7683127915679,981070.2882413825,426728.120968234,1576.48578,663.3443528049345,1610173.19574695,660848.135381412,0.37808,100000,0,1004634,10503.340338111218,0,0.0,0,0.0,38548,402.3878974165961,0,0.0,39023,403.8934019174272,1239013,0,44441,0,0,8690,0,0,77,0.8050267122499973,0,0.0,0,0.0,0,0.0,0.05221,0.1380924672027084,0.3106684543190959,0.01622,0.348390636430139,0.651609363569861,23.96840498717144,4.191798381124872,0.3239540004893565,0.2539760215316858,0.2123807193540494,0.2096892586249082,11.113599145790795,5.953240821481544,17.27050368150134,11691.869463258736,46.483602086167394,12.675131289058651,14.893392343004662,9.576195520264037,9.338882933840036,0.5637386836310252,0.789980732177264,0.68202416918429,0.5610599078341014,0.1096849474912485,0.74,0.9044117647058824,0.848314606741573,0.7163461538461539,0.1741573033707865,0.494722505958461,0.7158730158730159,0.6208677685950413,0.5121212121212121,0.0927835051546391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021282633371169,0.0043515306432962,0.0066089357684537,0.0089616842276389,0.0112192690691973,0.0134222720097764,0.0156308947234259,0.0178281513248583,0.0198484523115624,0.0217607241969012,0.0238334529791816,0.0260333761232349,0.0285179509857358,0.0305868051263032,0.0327818089860966,0.0347116667183671,0.0365973668127246,0.0387341850979252,0.0404701232513391,0.0426066469288186,0.0575972580695723,0.0712467660336646,0.08523795025774,0.0977211725698647,0.109600320925617,0.1242218928647046,0.1360975661578013,0.1464285714285714,0.1562322779460072,0.1657018891024883,0.1788068751955632,0.1911699348530671,0.2021063408046352,0.2113931535951291,0.2204478829156472,0.2301190251694417,0.2392205962907895,0.2476645518982206,0.2547678039688132,0.2617617388114453,0.267785141585948,0.2741744799896993,0.2802258950558818,0.2851061278330735,0.2895399321390784,0.2952520790662093,0.2986869800541245,0.3023054277594402,0.3069428949484991,0.3100230018771647,0.3077534630517975,0.3037943325855686,0.3022786880622691,0.2997758009691184,0.2980357142857143,0.2946011009399389,0.292015474378488,0.291127997631501,0.2910156917712215,0.2921603316714022,0.2926041392780678,0.2934834311082924,0.2944741532976827,0.2961984507231451,0.2976179018286814,0.2989518258096557,0.3014954449091847,0.3052946738102742,0.3107223317375387,0.3137176620887895,0.3180109990834097,0.319876438005965,0.3214961523905639,0.3228190476190476,0.3263724841727298,0.3300970873786408,0.3321981424148607,0.3406033428454953,0.3413897280966767,0.3399846508058327,0.0,2.3930708788339747,49.95736812998607,147.01015698444758,223.0447409095101,fqhc3_80Compliance_baseline_low_initial_treat_cost,86 -100000,95823,46791,445.21670162695807,5223,53.29618150130971,4165,42.93332498460704,1587,16.21740083278545,77.44904619750217,79.77451535544182,63.38601454967061,65.10647175229354,77.2519711130938,79.5792992469373,63.31227515018301,65.0355266755265,0.1970750844083681,195.21610850452475,0.0737393994876001,70.94507676704609,221.97824,155.41619733061944,231653.9870386024,162190.45942061863,451.06376,298.1382978930871,470191.2901912902,310599.9723376299,436.68335,212.2859056896214,452214.7918558175,218925.17120346025,2716.88843,1260.5376830862206,2802009.3088298216,1282205.74641393,962.79068,432.2980563312492,991891.2056604364,438284.0554255866,1546.75116,651.0416174229623,1582062.594575415,652992.3273552136,0.37994,100000,0,1008992,10529.72668357284,0,0.0,0,0.0,38721,403.5252496790959,0,0.0,39627,410.0998716383332,1243964,0,44613,0,0,8813,0,0,70,0.7200776431545662,0,0.0,0,0.0,0,0.0,0.05223,0.1374690740643259,0.3038483630097645,0.01587,0.3489612061040632,0.6510387938959368,23.493606163295976,4.171238141755019,0.3164465786314526,0.2679471788715486,0.202641056422569,0.2129651860744297,11.370285193093942,6.066419542903296,16.80850182503576,11704.393223159334,47.43129650140413,13.595523377949196,14.989365288444002,9.27662048172769,9.569787353283225,0.5853541416566627,0.8046594982078853,0.7025796661608498,0.6042654028436019,0.117249154453213,0.7568692756036636,0.9229024943310656,0.85,0.7853881278538812,0.1325966850828729,0.5158569500674763,0.7274074074074074,0.6471816283924844,0.5408,0.1133144475920679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019343143311424,0.0042674829959555,0.0063011780463304,0.0086752471023252,0.0106470606180786,0.0129616242248989,0.0152829746235331,0.0172281815491074,0.0193868165559529,0.0216614994218825,0.0238356304759952,0.0258518062397372,0.0278577302631578,0.0299610814817865,0.0320338283828382,0.0341236634123663,0.0362761333057338,0.0383757945272239,0.0401242584492628,0.0422231706936217,0.0562463489944087,0.0708348580689006,0.0849980086779717,0.0974164469053047,0.1095457371365949,0.1248705429797307,0.1365274538901844,0.1478535501228214,0.1583562696025091,0.168119418328229,0.1805150814559922,0.1917185204390286,0.2024621129879716,0.212089470812875,0.2208964071264695,0.2309911144511736,0.2403256160981748,0.2482633238690563,0.2562108813509445,0.2631398576634414,0.2691024916042515,0.2752997713805813,0.2816765167333168,0.2864738282136755,0.2913048217724646,0.2952853598014888,0.2983370315889201,0.3019372331394833,0.3055548392088093,0.3089624190518725,0.3065975153781208,0.3037414546600359,0.3016754293725902,0.2997712987069028,0.2975356794610407,0.2944713368039699,0.2906587447540906,0.2905360256849036,0.2910495814552479,0.2912977261457817,0.2922713842380094,0.2937777864823048,0.2945710664644408,0.2953839325343986,0.296415539815411,0.2975460122699386,0.3000395011568196,0.3051095344784665,0.3093512647202285,0.3150394535390413,0.3176316502574293,0.3195397445371054,0.3263632379640643,0.3325026431052711,0.3375152139312798,0.3433904672458323,0.34958238420653,0.3521809369951534,0.3555616288603443,0.3584405753217259,0.0,2.0118684097133475,52.375965574343006,158.24247619505977,211.79255878037236,fqhc3_80Compliance_baseline_low_initial_treat_cost,87 -100000,95798,46653,443.08858222509866,5347,54.42702352867492,4256,43.75874235370258,1635,16.64961690223178,77.3497797498425,79.68222641332777,63.33168066437421,65.05975846399454,77.1429956979258,79.47976478609132,63.25304316589097,64.98538731612008,0.2067840519166992,202.46162723644545,0.0786374984832392,74.37114787445864,221.86274,155.3952505071732,231594.3339109376,162211.37237434307,446.70361,294.8089130216727,465632.96728532953,307076.43090642814,435.0357,211.93604719770883,449653.9384955844,217804.1420544171,2796.06399,1303.195983984186,2878831.447420614,1320560.744813244,994.09125,450.1286638588854,1022324.015115138,454545.5555537552,1597.3091,680.6352186871461,1628807.4907618114,677189.0905698602,0.37953,100000,0,1008467,10527.01517776989,0,0.0,0,0.0,38394,400.081421324036,0,0.0,39412,406.8665316603687,1241500,0,44551,0,0,8610,0,0,88,0.9185995532265808,0,0.0,0,0.0,0,0.0,0.05347,0.1408847785418807,0.3057789414625023,0.01635,0.3426108816663674,0.6573891183336326,23.58649610626954,4.240204292804762,0.325187969924812,0.2589285714285714,0.1985432330827067,0.2173402255639097,11.25226244120732,5.819417916026835,17.404774813787014,11723.800292520766,48.60686298391151,13.485254232103769,15.600520327505643,9.345297794148095,10.175790630154,0.5740131578947368,0.7976406533575318,0.7109826589595376,0.5680473372781065,0.1081081081081081,0.741988496302383,0.9117647058823528,0.8763736263736264,0.7537688442211056,0.1462264150943396,0.5067456400131622,0.7212121212121212,0.6519607843137255,0.5108359133126935,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0045727843288349,0.0069823614183936,0.0088490180739416,0.0110568609500559,0.0132172496308741,0.0154975530179445,0.0178332635791063,0.0200128785633247,0.0223748451877706,0.0247050260889175,0.0269007649263309,0.0287800113104724,0.0307988549539716,0.0327199207790064,0.0346463039120461,0.0366440660421303,0.0385748366352038,0.0407813392903527,0.0430210524123857,0.0578489979447695,0.0719947297975573,0.0849982180667072,0.0975071464604002,0.1097946620567525,0.1245968552062515,0.1357237574921763,0.1468014901543374,0.1577131381325243,0.1667417562377979,0.1789204857706274,0.190542164110446,0.2011052849154718,0.211155204267926,0.2200646893152614,0.2296969361183445,0.2381398774649302,0.2460806585843136,0.2542690191183979,0.2610910756196691,0.267895765623012,0.2749707739069441,0.2808104943163672,0.2856715238448736,0.290278334122331,0.2953661299059437,0.2992614069510229,0.3032518051459371,0.3062884784520668,0.3095385670389956,0.3081955737440094,0.3057757956172228,0.3039130067329633,0.3016160067128658,0.2996999138366462,0.2968262226847034,0.2950747094631987,0.2952206123385563,0.2960137879253268,0.295735950044603,0.2964701921098412,0.2974332669126206,0.2988030331515949,0.299623549328403,0.2996168582375479,0.3011009555463232,0.3014797596099331,0.3057698915997626,0.3090251200334006,0.3109200816454702,0.3167283894860446,0.3221970852843689,0.3261345852895149,0.3309768148992778,0.334576998414327,0.3317347058135454,0.3343451206556382,0.3325354079393576,0.337466307277628,0.3493098159509202,0.0,2.537754946246358,52.772031645705496,159.11729593262675,223.0846447913724,fqhc3_80Compliance_baseline_low_initial_treat_cost,88 -100000,95795,46763,444.0106477373558,5317,54.33477738921656,4175,42.94587400177462,1611,16.37872540320476,77.41775944651599,79.74607263723307,63.37436231324406,65.095216557015,77.211386134554,79.54491516927735,63.296497179251865,65.02226665525373,0.2063733119619826,201.1574679557242,0.0778651339921978,72.94990176126248,220.33044,154.3610603862023,230002.0251578893,161136.8655840099,446.00775,295.3003522903776,464987.9638812047,307665.14149003354,436.19038,212.53577911460496,451456.74617673154,218839.17759496765,2715.89126,1265.1195341696264,2793004.895871392,1278913.9195649414,978.88378,441.5768126477624,1005423.706874054,444682.5509401862,1567.66802,665.0685338957359,1595042.1629521374,659244.4186692635,0.38018,100000,0,1001502,10454.637507176783,0,0.0,0,0.0,38259,398.7473250169633,0,0.0,39581,409.4368182055431,1251551,0,44857,0,0,8656,0,0,77,0.7829218643979331,0,0.0,1,0.0104389581919724,0,0.0,0.05317,0.1398548056183912,0.3029904081248824,0.01611,0.3558834112990284,0.6441165887009715,23.80003259924977,4.006067437968579,0.3183233532934131,0.2723353293413174,0.1997604790419161,0.2095808383233532,11.14869693341436,6.046051349740998,17.20647441267311,11722.046424885431,47.809502915711576,13.9261685999816,15.081074879606708,9.300818908903672,9.501440527219582,0.5846706586826347,0.8170624450307827,0.6937547027840482,0.5851318944844125,0.1165714285714285,0.7475490196078431,0.9235807860262008,0.8361111111111111,0.7534246575342466,0.1390374331550802,0.5171128431040325,0.7452135493372607,0.6408668730650154,0.5252032520325203,0.1104651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491529885883,0.004581715710622,0.0070115980558289,0.0094046434157339,0.0115919629057187,0.0137322366545869,0.0158087860564672,0.0179533763370621,0.020206872585294,0.0223113767552298,0.0243542435424354,0.0264119567225769,0.0285455835037981,0.0305663368783008,0.032779616625937,0.0347876384068749,0.0371742595160722,0.0392303226341544,0.0411498265079266,0.043175878978438,0.058325768721111,0.0716033120060218,0.0852970774455952,0.0977172691269316,0.1098869848224724,0.1256153992435607,0.1375544232460089,0.1490782283272023,0.1594788954803465,0.1693660689418771,0.1815708540335935,0.1931473260097,0.2044553971752087,0.2147387957857961,0.223025376249588,0.2320022123893805,0.240049044195508,0.2488938301552007,0.2562638756739613,0.263010440370959,0.2698101002633646,0.275673277844577,0.2805592291706026,0.2852031780979275,0.289594022536783,0.293274911382434,0.2969185225895902,0.3005193848654552,0.3037119342627166,0.3077267224590768,0.3058479218129095,0.3032808272793441,0.3015449063075474,0.2988770847447854,0.2975059646418992,0.2941526990481138,0.2909894271737415,0.2916100960201528,0.2915668382865202,0.2908722614118943,0.2917755056347488,0.2937089017567965,0.2946369087275149,0.2953940362087326,0.2957948619815337,0.2972832983710149,0.2979427827612552,0.301103766525318,0.3059060729307887,0.3093030564940677,0.3130328867235079,0.3162249038309532,0.3184685528699019,0.321555036540345,0.3231416549789621,0.3234112922277344,0.3270236995998768,0.3329295376539471,0.3344173441734417,0.341733486063383,0.0,2.51929206138975,53.028877188217606,155.9769314975568,215.05134359079784,fqhc3_80Compliance_baseline_low_initial_treat_cost,89 -100000,95726,46855,445.70962956772456,5300,54.21724505359045,4163,42.95593673610095,1589,16.21294110273071,77.3893283971574,79.74897148794906,63.35181630130408,65.09294743757948,77.1833899406132,79.54696370391557,63.27319055814532,65.01857762534289,0.205938456544203,202.00778403349773,0.0786257431587529,74.369812236597,222.88134,156.06221857830607,232832.60556170737,163030.12617084812,450.17025,298.15832060259913,469732.1208449115,310933.1222474554,439.91944,214.4347847927544,456462.2255186679,221625.92754319735,2676.51434,1265.7178889687725,2761832.5010968805,1288046.4335381947,956.84895,439.0561205069194,983524.4238764808,442669.695691263,1536.1068,659.1187829912568,1568666.8198817458,657159.1382506739,0.38087,100000,0,1013097,10583.30025280488,0,0.0,0,0.0,38671,403.4222677224578,0,0.0,39938,414.119465975806,1233012,0,44267,0,0,8795,0,0,75,0.7834862001963939,0,0.0,0,0.0,0,0.0,0.053,0.1391550922887074,0.299811320754717,0.01589,0.353143063583815,0.646856936416185,23.55566054668248,4.030086499773328,0.3228441028104732,0.2743214028344943,0.2065817919769397,0.1962527023780927,11.580497963145609,6.5157690252160965,16.951999102526656,11733.743059377492,47.93555518759612,14.021932244007797,15.44323407888981,9.579236808425716,8.891152056272789,0.606293538313716,0.8257443082311734,0.7254464285714286,0.5918604651162791,0.1187270501835985,0.7572663000785546,0.941908713692946,0.8556701030927835,0.6930232558139535,0.1542553191489361,0.5397923875432526,0.740909090909091,0.6725941422594143,0.5581395348837209,0.1081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901880753922,0.0047229570170371,0.0070296095675725,0.0092503274676847,0.0117217681265503,0.0139649451377155,0.0161931354964943,0.0183465643558294,0.0204256797490471,0.022378209129327,0.0242955220821805,0.0265728239011778,0.0286166397796981,0.0308488847258391,0.0329496937070725,0.0350732155959036,0.0370420216785895,0.0391876192847066,0.0409321470148012,0.0427422547242536,0.0571601612263224,0.0712932829651643,0.0845491446492065,0.0974165939415605,0.1103989880356295,0.1260773468977697,0.1378732431715725,0.1477633231843635,0.1584991934019208,0.1684199238646721,0.1806394641337942,0.1928298661820227,0.2035269303529104,0.2125695788633356,0.2218529929577465,0.2312515926036715,0.2395905427429617,0.2480594865795216,0.2558989433542544,0.262946244443426,0.2691680449692918,0.2749348204786456,0.2809817691707455,0.2861486890937387,0.2916171152585977,0.2950414138554884,0.2989621107915468,0.3024553287751315,0.3055623843595947,0.309537301827862,0.3059201246624843,0.3043543935295167,0.3017945909512174,0.2990798430829584,0.2969661955974284,0.2934500747429757,0.2911797133406836,0.2924010967489228,0.2925081101278937,0.2926686321173587,0.2939028706618729,0.2942540481056437,0.2951551034022682,0.2949236997819994,0.2968851006775684,0.2987533623008483,0.300890963088672,0.3058973799806848,0.3099854075463831,0.3125539427226363,0.3153689911983751,0.3190378224402595,0.3244527829893683,0.3284748309541698,0.3309124767225326,0.3355578972017328,0.3363431151241535,0.3357896833300139,0.3457402812241522,0.3444572305331799,0.0,2.0190871464798037,55.641713061792906,154.66481809909212,209.4362381597849,fqhc3_80Compliance_baseline_low_initial_treat_cost,90 -100000,95665,46483,442.14707573302667,5149,52.44342235927455,4108,42.272513458422615,1655,16.77729577170334,77.35982293729873,79.73539141217653,63.33991942654043,65.08983923652114,77.14896647817123,79.53184986314582,63.26016217984906,65.01613657997662,0.2108564591274984,203.5415490307031,0.079757246691372,73.70265654452623,221.5884,155.10407738711308,231629.54058433077,162132.52222559252,447.10464,295.8658909797029,466714.93231589405,308624.0849036831,428.91227,209.443808967247,444938.4309831182,216175.93016066117,2702.24474,1259.6819161809565,2782875.868917577,1275072.1508553463,960.44183,432.33449413123833,988187.7489154864,436330.22461394256,1609.65838,676.9243503628073,1635500.8832906496,667986.8986765577,0.37902,100000,0,1007220,10528.615481105942,0,0.0,0,0.0,38455,401.28573668530805,0,0.0,38945,403.66905346783045,1242618,0,44567,0,0,8754,0,0,75,0.783985783724455,0,0.0,2,0.0209062875659854,0,0.0,0.05149,0.1358503509049654,0.3214216352689842,0.01655,0.368087879352076,0.631912120647924,23.412799947489265,4.145643784111616,0.2984420642648491,0.2650925024342745,0.2195715676728335,0.2168938656280428,11.405093746232524,6.305437557763183,17.54769994343409,11684.30292012707,46.9348593936427,13.17216975595984,14.027805026165344,10.071475006369832,9.66340960514768,0.5754625121713729,0.8071625344352618,0.7014681892332789,0.5776053215077606,0.11672278338945,0.7333333333333333,0.8910675381263616,0.8563685636856369,0.7311320754716981,0.1157894736842105,0.5079916608756081,0.746031746031746,0.6347724620770129,0.5304347826086957,0.1169757489300998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0045002584607899,0.0065844873941054,0.0087648026649875,0.0110216365706848,0.0132118682884625,0.0154372879283465,0.0177223197159531,0.0198574026027089,0.0220148948359112,0.0241053957976908,0.0262329055225549,0.0283168194712823,0.0304365733113673,0.0325748354754193,0.0346973157900176,0.036824614620107,0.0388325346941315,0.0409934917763499,0.0429286086503387,0.0575771822598338,0.07194613725367,0.0850275518236683,0.0974326599326599,0.1092523837650831,0.124533093487117,0.1360118889655538,0.1469779927139479,0.1569556106739651,0.1667471690012343,0.1792426397689555,0.1909903080838161,0.2020328432599492,0.211188214176262,0.2195766613070196,0.2285144566301096,0.2376195631550163,0.2458964788415703,0.2539066929758907,0.261584591263347,0.2679570787660145,0.2733480665567521,0.2791071787653328,0.2844572673618177,0.2892570001091398,0.293384515065392,0.2977436845656031,0.3014911344815323,0.3050514451165917,0.3093609562593076,0.3062557102165851,0.3040873806416157,0.302288271552816,0.2991332189163073,0.2970866305088764,0.2945634568957614,0.2913551364936851,0.2927805294059763,0.2929299830893531,0.2936054810162717,0.2944962023422007,0.2962064271764218,0.2972526553483315,0.2991973244147157,0.2990130318129551,0.2998288914238307,0.3028192934782608,0.3072763643183097,0.310439751899087,0.3144413308600071,0.3178831951429477,0.3218561288272062,0.3271764483389018,0.3280237786754058,0.3305164319248826,0.3349196906603212,0.3370030581039755,0.3337363966142684,0.3334231805929919,0.3362628964463126,0.0,2.603067474886326,53.18618012680368,147.68481441672165,213.1301436965053,fqhc3_80Compliance_baseline_low_initial_treat_cost,91 -100000,95859,46825,445.1851156385942,5335,54.63232456003088,4195,43.21972897693488,1603,16.409518146444256,77.34109898624328,79.63166613378404,63.34986309044478,65.04391512038268,77.14455674356566,79.43448854242311,63.27691597791979,64.97251630270975,0.1965422426776228,197.1775913609264,0.0729471125249858,71.39881767292877,221.38072,155.0772118572245,230944.115836802,161776.37139676453,448.79039,296.90257344817394,467571.13051461,309121.9326804723,433.28304,210.86894983158663,447965.8352371712,217020.11916437172,2741.8828,1276.1751327379702,2826742.329880345,1297717.7549713324,984.73081,443.7379781780721,1015010.6197644456,450647.5116348717,1567.50294,659.388979327294,1606761.2222117905,665304.3078110148,0.38055,100000,0,1006276,10497.459810763728,0,0.0,0,0.0,38544,401.5168111497095,0,0.0,39241,405.3244870069582,1243591,0,44637,0,0,8916,0,0,85,0.865855057949697,0,0.0,0,0.0,0,0.0,0.05335,0.1401918276179214,0.300468603561387,0.01603,0.3548271538599319,0.6451728461400681,23.63360299672438,4.189851554750035,0.3082240762812872,0.2688915375446961,0.2078665077473182,0.2150178784266984,11.218882156048055,5.878938157933298,17.147208324548483,11712.27311083492,48.134095892907865,13.85967188887214,14.781346137994158,9.628819197256854,9.864258668784718,0.5754469606674613,0.8182624113475178,0.6921887084300077,0.5711009174311926,0.1086474501108647,0.7466243050039714,0.9260042283298098,0.8594164456233422,0.7184466019417476,0.1477832512315271,0.5020435967302452,0.7404580152671756,0.6233624454148472,0.5255255255255256,0.0972818311874105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024707609741278,0.0047116758367024,0.006795890008013,0.0090157776108189,0.0113024210761693,0.0135451436945371,0.0158929062624163,0.0179342004590665,0.0199374910628562,0.0219217038166064,0.0241838835568029,0.0261632975395628,0.0282242741082341,0.030341066927311,0.0323338485316847,0.0345229740329438,0.036333933039684,0.0383754662246166,0.0403114456267843,0.0424460581344541,0.056869962357799,0.0701125521219784,0.0832294623498235,0.0952891017159179,0.1076610440752205,0.1232005745487574,0.1350678517325762,0.1465673038079646,0.1569995731967563,0.1671899613154877,0.1793150198521579,0.1909478191293817,0.2023432999663069,0.212283481776952,0.2220144533785047,0.2320259628058438,0.2402311287605831,0.2485099970762206,0.2557089539540107,0.2626963410724916,0.2686503301608595,0.2745648183869346,0.2805212620027434,0.2856903344790008,0.2907576695681733,0.2946634301415774,0.2983917360746354,0.3021792198545491,0.3055275342075993,0.30962337576677,0.3076467659683257,0.3058812210508954,0.3036292479657628,0.3012864989881468,0.2988109393579072,0.2958954024220341,0.2932584269662921,0.2926705095991197,0.293118794933242,0.2938153559661939,0.2956526640114225,0.295808667762181,0.2963810403459423,0.2976393501481016,0.2983989761174567,0.2999843104440144,0.3006507963692413,0.30414644905161,0.3091826367235399,0.3147129801796099,0.3204662977410868,0.3249656484515379,0.3283741368487131,0.3314168999167864,0.3357719002063403,0.3356156297957738,0.338163514338011,0.3400080096115338,0.3369594778351917,0.3384204502098435,0.0,2.067598934688012,55.09465455584121,151.67125004030183,218.70485326183683,fqhc3_80Compliance_baseline_low_initial_treat_cost,92 -100000,95643,46766,445.1658772727748,5418,55.351672364940455,4276,44.13286910699163,1604,16.457032924521396,77.31769350596971,79.74079942813407,63.289715480586615,65.0814778385933,77.11158180912633,79.53512487219497,63.21222731226673,65.00634318814129,0.2061116968433793,205.6745559390976,0.0774881683198884,75.13465045201428,220.6831,154.53726450184303,230735.819662704,161576.7622715984,449.84301,297.0069586221395,469775.0593352362,309978.9592090869,437.72515,213.00193765785005,454040.77663812303,219912.76196996987,2746.35925,1290.1523489009203,2837478.8431981434,1315116.875297387,1003.78394,457.35269968544526,1033917.0143136455,462958.9981215517,1563.28342,669.9816181169627,1604785.8390054682,674924.9986899488,0.37984,100000,0,1003105,10487.991802850182,0,0.0,0,0.0,38718,404.2219503779681,0,0.0,39764,412.0322449107619,1242188,0,44524,0,0,8710,0,0,76,0.7946216659870561,0,0.0,0,0.0,0,0.0,0.05418,0.1426390058972199,0.2960502030269472,0.01604,0.3557913351016799,0.6442086648983201,23.403103897976447,4.021074371631823,0.3061272217025257,0.2740879326473339,0.2123479887745556,0.2074368568755846,11.37361072153492,6.3560937784699965,17.235187486356473,11755.758915071045,49.226500513487,14.327836099269248,14.948682652708747,10.145558533138892,9.80442322837012,0.5802151543498597,0.802901023890785,0.7051184110007639,0.5561674008810573,0.1262683201803833,0.7480376766091051,0.928,0.8512396694214877,0.7023255813953488,0.1479591836734693,0.5089940039973351,0.7098214285714286,0.6490486257928119,0.5108225108225108,0.1201157742402315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793581327498,0.004421368596114,0.0066192893401015,0.0086281364648014,0.0106219540732752,0.0128769356153219,0.0151082365902923,0.0172968665392985,0.0194651684013386,0.0216691609094077,0.0236205923112457,0.0259726906309122,0.0282772114097415,0.0303483562166678,0.032587020984223,0.0344895382768683,0.0366822187662001,0.0389097783409851,0.0408774924031136,0.0429341648329874,0.0571951092068136,0.0707916382878399,0.0835346511774468,0.0960440671539612,0.1083489978245717,0.1237674620574248,0.1355444092580391,0.147212125734142,0.1579409058815978,0.1674812292555077,0.1797911587668011,0.1916387633692012,0.2026249863849253,0.2127165604398011,0.2227683491293806,0.2327853942055991,0.2408135896289673,0.2492313929524646,0.2578564940962761,0.2651884954738169,0.2710284702041194,0.2779129905689078,0.282789408866995,0.2876143873157509,0.2925290011916632,0.2964638309935538,0.3001301105940049,0.3040946083418108,0.3067422712443685,0.3106192587899904,0.3088771896753692,0.3066589668495373,0.3042395067984123,0.3010935741697204,0.2996648972450402,0.2969801737853384,0.2942292790157038,0.2937420178799489,0.2944050943267725,0.2953996447602131,0.2962666418396797,0.2970633269208119,0.2973589759548557,0.2979279778393351,0.2988012678439503,0.2986324742134787,0.3016236058167443,0.3066637644205354,0.3107929668496768,0.3150523251239279,0.316468883051001,0.3210476291055021,0.325508607198748,0.3273948818600438,0.3289805055498554,0.3284388582168448,0.3324730529831486,0.3401509134233518,0.3429347826086956,0.3444360333080999,0.0,2.1896057212144973,55.72151658034697,160.5410296460383,218.44060844604147,fqhc3_80Compliance_baseline_low_initial_treat_cost,93 -100000,95722,46286,439.8257453876852,5148,52.74649505860722,4024,41.578738430036985,1531,15.680825724493848,77.34880342590687,79.70576028575269,63.338894218876014,65.07692275836317,77.14872626557109,79.50676683967563,63.26297812308714,65.00361557380954,0.2000771603357805,198.99344607705416,0.0759160957888696,73.30718455362728,221.21484,154.80714182131544,231101.35601011265,161725.77027362096,445.90968,295.62241155589027,465388.05081381503,308384.155738378,427.14361,208.0976771288206,443435.5425085143,215296.38462761376,2590.76607,1217.64280806864,2677766.9396794885,1243276.162291469,907.99188,418.0817150686192,936137.6799481832,424340.14343624655,1481.34646,642.59232935531,1518615.95035624,645801.9493761804,0.37647,100000,0,1005522,10504.607091368756,0,0.0,0,0.0,38322,399.8767263533984,0,0.0,38615,400.6080106976453,1245061,0,44695,0,0,8817,0,0,94,0.971563485928,0,0.0,0,0.0,0,0.0,0.05148,0.1367439636624432,0.2973970473970474,0.01531,0.3572490706319702,0.6427509293680297,23.469714601212104,4.077830854566009,0.3223161033797216,0.2738568588469185,0.2070079522862823,0.1968190854870775,11.055323541123578,5.915655377579149,16.59354700497397,11654.837457889702,46.09295551468793,13.335770075082753,14.597702499464296,9.258203297360437,8.90127964278045,0.5675944333996024,0.779491833030853,0.6854279105628374,0.5414165666266506,0.1073232323232323,0.7325102880658436,0.8948497854077253,0.869942196531792,0.7254901960784313,0.1206030150753768,0.4962620149519401,0.6949685534591195,0.6182965299684543,0.4817170111287758,0.102866779089376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0046425820054332,0.0070316067170615,0.0092036692774205,0.0112656580445745,0.0136712984170611,0.0158296553762728,0.0179034398285189,0.0199172244647693,0.0221687733483445,0.0242297521677633,0.0261920890038384,0.0282424304734488,0.0303604336322362,0.0325864950176394,0.0346466619134711,0.0365818302304872,0.0386806254474522,0.0405710304958566,0.0426890896397945,0.0572171515695816,0.071406145344943,0.0843807045888499,0.0966072273946662,0.1081847906338993,0.122992955511836,0.1340244471796613,0.1453544698655367,0.1556460142953299,0.1655366989208092,0.1779400833791164,0.1897363210456271,0.2001000554655298,0.2093503937007874,0.2189617991373998,0.2287347788993163,0.2384478772241396,0.2471631844380403,0.2548420789718671,0.262478376923165,0.2683048218708766,0.2743116476010012,0.2803465129764849,0.2854746930218628,0.2897359635811836,0.2938771992465003,0.2984308238174958,0.3024109547279102,0.3055394038066442,0.3094375897077995,0.3066311713455953,0.3037731182500206,0.3013168631644109,0.2991237061311698,0.2973843595985986,0.2953256165996422,0.2916416495496919,0.2919170254915765,0.2913230181991684,0.292332894127702,0.2929973138337561,0.2935577755053882,0.294959979989995,0.2952520933547122,0.2952563488260661,0.2960819927348209,0.2971413957717663,0.2985832497492477,0.3037572456177107,0.3081415999052843,0.311369098907079,0.3136264554202775,0.3150009482268158,0.3161590718265781,0.3173049778865154,0.318127821335234,0.3194080468629567,0.3250255362614913,0.3286228872263785,0.3277928102048705,0.0,1.7879106923770314,53.49445998409716,143.55549306476854,209.4383711660172,fqhc3_80Compliance_baseline_low_initial_treat_cost,94 -100000,95640,47352,451.1187787536596,5264,53.743203680468426,4134,42.67043078209954,1496,15.296946884148891,77.26744378178137,79.68282976099258,63.28338998351626,65.06938875738729,77.07828129222258,79.49490222309421,63.2117785766693,64.99979573369058,0.1891624895587824,187.9275378983607,0.0716114068469551,69.5930236967115,221.59324,155.27767690218928,231695.14847344207,162356.41666895573,452.88858,299.4521754559422,472968.1514010874,312545.305765004,442.19139,215.8577933019017,458922.1350899205,223041.82788400556,2637.81512,1232.7694296056536,2724785.204935173,1256280.1982963968,932.51628,421.1553217311408,962427.938101213,428515.1083086586,1449.4835,616.1270112130609,1484569.280635717,620555.1273538561,0.38369,100000,0,1007242,10531.59765788373,0,0.0,0,0.0,38859,405.7193642827269,0,0.0,40067,415.422417398578,1234003,0,44256,0,0,8763,0,0,85,0.8887494772061899,0,0.0,0,0.0,0,0.0,0.05264,0.1371940889780812,0.2841945288753799,0.01496,0.3585112205801861,0.6414887794198139,23.80119724000556,4.064265599762233,0.3217223028543783,0.2762457668118045,0.212385099177552,0.1896468311562651,11.411688977929732,6.252451448157376,16.006853208870236,11828.040746964532,47.25657566394967,13.94333730450922,15.11456184539355,9.712855123716077,8.485821390330813,0.5924044508950169,0.8266199649737302,0.7075187969924812,0.5432801822323462,0.110969387755102,0.764367816091954,0.936082474226804,0.8429752066115702,0.7024390243902439,0.1636363636363636,0.5205761316872428,0.745814307458143,0.656670113753878,0.4947994056463596,0.0969305331179321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189798771961,0.0045224092476171,0.0070155133203378,0.0092573774489878,0.0115260582508469,0.0136065506986597,0.0157839998368578,0.0180808379871157,0.0202047055695866,0.0223858434629445,0.0242346546330957,0.0265542178575831,0.0283721504402929,0.0305303397182924,0.0327821473545137,0.0347155454930786,0.0367562529128476,0.0387349891537878,0.0408778864156438,0.0431296914095079,0.0578749908557932,0.0731229642973094,0.0870962322006132,0.0998283722742253,0.1120013511944347,0.1279792471808989,0.1394010195412064,0.1498049913684704,0.1599726176851247,0.1696628006872852,0.1818270049929365,0.1937541974479516,0.2052521031266664,0.2152923669467787,0.2245216970123951,0.2348210428367285,0.2425142015334308,0.2507482503319306,0.2587984196902956,0.2661066672778529,0.2721085285674599,0.278465172849324,0.2836432062676781,0.2880766509575374,0.293204662299306,0.296821226362728,0.3007810544234717,0.3046840224344707,0.308695201843652,0.3111269539501479,0.3082033039588218,0.3053181974544203,0.3035216227637695,0.3002457002457002,0.2981060831301659,0.2956038403233956,0.2929254544302996,0.2927648832939942,0.2928043934303208,0.2935243593855803,0.2943047447986828,0.2948748368727014,0.2967205562070699,0.2991635998661759,0.3015488053787969,0.3007056740358826,0.3022655007949125,0.3073671686652681,0.3100430566737844,0.3131693772312574,0.3188505116959064,0.3229800405592913,0.3280844874470372,0.3335621662852784,0.3367720153802869,0.3393471810089021,0.342918323646375,0.3505572441742654,0.3498460677301987,0.3495260663507109,0.0,2.0189767038063646,53.18866955327737,149.98296609604216,217.2760545416793,fqhc3_80Compliance_baseline_low_initial_treat_cost,95 -100000,95830,46894,444.7459042053637,5350,54.534070750286965,4196,43.12845664197015,1560,15.913596994678077,77.40182060844235,79.71618265465243,63.36325590393732,65.0761545256558,77.19262696778615,79.50955041871848,63.28449054313833,65.00071518204616,0.2091936406561956,206.6322359339523,0.0787653607989895,75.43934360963078,220.58784,154.45528142501357,230186.6221433789,161176.334576869,448.24112,296.4511529013772,467102.7235729938,308720.06737555563,438.27319,213.50435868393205,453318.699780862,219684.27499437917,2737.45595,1278.6515923714903,2818048.3355942816,1296500.2122072384,982.52469,442.28384595352446,1010928.9679641032,447179.7829004738,1524.96442,655.7784281920318,1557880.6219346758,656454.6449344858,0.38059,100000,0,1002672,10463.028279244496,0,0.0,0,0.0,38422,400.260878639257,0,0.0,39763,410.80037566524055,1247907,0,44813,0,0,8691,0,0,81,0.8452467911927372,0,0.0,1,0.0104351455702807,0,0.0,0.0535,0.1405712183714758,0.2915887850467289,0.0156,0.3524575513851653,0.6475424486148347,23.79256821541191,4.137105335068353,0.3067206863679695,0.2778836987607245,0.2056720686367969,0.209723546234509,11.01920143887884,5.726161005652467,16.724536362925573,11733.072445695632,47.95808019561792,14.403457034229625,14.37394381550438,9.62382515657696,9.556854189306955,0.5872259294566253,0.8336192109777015,0.6783216783216783,0.5828505214368482,0.1318181818181818,0.7493995196156925,0.9285714285714286,0.8189910979228486,0.7013574660633484,0.1978609625668449,0.5184933831014591,0.7613293051359517,0.628421052631579,0.5420560747663551,0.113997113997114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023795540614431,0.0045404331654318,0.0070202491579758,0.00910041947246,0.0112341273472209,0.0135795431410073,0.0160933598328492,0.0182384160032659,0.0202588057321585,0.0224251046539,0.0248070279745369,0.0267895633609098,0.0290178341984889,0.0312496782364267,0.0332222829618474,0.0351216185496703,0.0370477718544588,0.039072950692176,0.0413399117112438,0.0437112972888588,0.0579143330934576,0.0714726267261836,0.0849164352700791,0.097498975851094,0.1098227544153423,0.1255755988340163,0.1368581628653453,0.1474615188366357,0.1575694829868078,0.1676950764879804,0.1801196136221844,0.1912748414147854,0.2021992111525213,0.2117967153643585,0.2214489885664028,0.2302642503680907,0.2394749461897911,0.2477119920847293,0.2551463666367998,0.2629428728371326,0.2684489257880252,0.2746780112666838,0.2803059861194859,0.2852898897939626,0.2904420244989134,0.2939575662795995,0.2977419919481883,0.3015832676815166,0.305882048695967,0.3103221131677755,0.3081493030820306,0.3055166350723921,0.3033794702452048,0.3007736525910878,0.2987087985311102,0.2959415906765034,0.2932691548962361,0.2933904568793538,0.2942097825901901,0.2943288888888888,0.2942163865938042,0.2950593973723546,0.2953877576540714,0.2974037242207835,0.2985787650782276,0.3004557460251696,0.3008681881168519,0.3061002178649237,0.309681905092995,0.3141540642722117,0.3187992393371366,0.3222310335712398,0.325806855141356,0.3296852592648501,0.3301537321726245,0.3303299789375146,0.3303044070876874,0.3360193392425463,0.3333333333333333,0.34080547112462,0.0,2.533710858610024,54.20846246556422,153.3154576911978,215.5939752256665,fqhc3_80Compliance_baseline_low_initial_treat_cost,96 -100000,95694,47026,448.1263193094656,5199,53.12767780634104,4067,41.89395364390662,1551,15.789913683198527,77.32145341825886,79.70756250872778,63.3143933609397,65.07968203227708,77.1186720392432,79.51039162671258,63.23769451505069,65.00764397285785,0.2027813790156614,197.17088201520028,0.0766988458890125,72.0380594192278,221.57432,155.20668099351414,231544.63184734675,162190.6085998225,449.17298,297.30548996913967,468772.16962400987,310071.00755443366,439.24409,213.7887767032,455560.2127615106,220661.38826657063,2631.07454,1224.3571211502515,2713867.692854306,1243851.3711938595,940.08079,425.86202600279023,968248.9079775116,430891.5355223844,1511.31198,648.9399583906625,1541725.50003135,646405.2068031837,0.37976,100000,0,1007156,10524.755993061215,0,0.0,0,0.0,38514,401.8329257842707,0,0.0,39717,411.5932033356323,1239237,0,44450,0,0,8985,0,0,93,0.9613977887850856,0,0.0,1,0.0104499759650552,0,0.0,0.05199,0.1369022540551927,0.2983266012694749,0.01551,0.3443075225308074,0.6556924774691926,23.98242324171537,4.149468501916663,0.3171871158101795,0.2662896483894763,0.2060486845340546,0.2104745512662896,11.070522457678704,5.793257191762987,16.706916498065663,11728.813227841105,46.406478634026776,13.22007768047303,14.466196595790525,9.391516705458011,9.328687652305211,0.5775756085566757,0.8088642659279779,0.6937984496124031,0.568019093078759,0.1191588785046729,0.7411167512690355,0.9277389277389276,0.8605341246290801,0.7022222222222222,0.1570680628272251,0.5105719237435009,0.7308868501529052,0.6348373557187827,0.5187601957585645,0.1082706766917293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360784631596,0.0045634317006388,0.0067301445509176,0.0088921860550197,0.0113238645612892,0.0135074566050036,0.0154298010340924,0.0175413518480702,0.0198427708318424,0.0216594673163142,0.0240929269317913,0.0262376898509945,0.0282989754351314,0.0303258248665581,0.0324318744838976,0.0346977388571251,0.0366257872058336,0.0385234077441182,0.0406002683111993,0.0425429911412193,0.0571634479805312,0.0713268852321735,0.0842542741097572,0.0975217048145224,0.109753524098928,0.1259658333156925,0.1384171195652173,0.149856736576377,0.1603783668234288,0.1698989552270825,0.1821149598664009,0.1926529021361367,0.2027218136721639,0.2121450845232233,0.2213518746699525,0.2317402666430438,0.240046851469686,0.2478222262187103,0.2560602281230867,0.2636260603770993,0.2696012117428052,0.2752083406384048,0.2804595253306831,0.2860206551170536,0.2906085668136165,0.2949748310790021,0.2984033308743545,0.3024966647608157,0.3070720645052914,0.3093224803751119,0.3063844086021505,0.3034361620375453,0.3012562884685646,0.2995372439344357,0.296863873724187,0.2941149481540391,0.2908901218760373,0.2913499344692005,0.2916531728851693,0.2922665716322167,0.293128914648967,0.2943217665615142,0.2951114081065842,0.2958431932848149,0.2979224210399904,0.2993351583887368,0.3006360706238056,0.3064429994031351,0.3106432174887892,0.3152440471481686,0.3174301119115582,0.3199363732767762,0.3229699842022117,0.327343630524545,0.3311376682036323,0.3342455973346026,0.3377361388419597,0.3332654308413119,0.3349821379499862,0.3360153256704981,0.0,2.350668502153626,51.30611056000161,149.02245960300604,213.28826031615563,fqhc3_80Compliance_baseline_low_initial_treat_cost,97 -100000,95711,46650,444.3898820407268,5361,54.66456311186802,4295,44.36271692908861,1647,16.831921095798812,77.3455376358958,79.73280480459435,63.32130932583449,65.08744691505179,77.13982823296773,79.53120737048394,63.24288429232406,65.01348366277357,0.2057094029280648,201.5974341104112,0.0784250335104346,73.96325227821876,219.62094,153.77055424820963,229462.3606482013,160661.10191118013,448.64407,296.1990930089976,468217.2164119067,308941.44037884625,439.29581,214.12963355741437,456521.7059690109,221728.9294231153,2795.00849,1307.2604345339576,2882567.123946045,1328210.5941375152,1026.33708,467.46210580617935,1056518.5192924533,472599.2475328631,1601.92866,685.4027981956672,1636254.6206810083,681585.6382723578,0.37793,100000,0,998277,10430.10730219097,0,0.0,0,0.0,38545,402.1585815632477,0,0.0,39911,414.5500517181933,1250866,0,44886,0,0,8554,0,0,67,0.6895759108148489,0,0.0,0,0.0,0,0.0,0.05361,0.1418516656523694,0.3072188024622272,0.01647,0.357449088960343,0.642550911039657,23.77843310148105,4.173566681075195,0.3215366705471478,0.2633294528521536,0.2069848661233993,0.2081490104772992,11.355664955904206,6.111201605363803,17.603215146093394,11666.722378265433,48.98010695267809,13.819964234715917,15.546124202396811,9.80667407656816,9.80734443899721,0.580209545983702,0.8037135278514589,0.6690803765387401,0.6006749156355455,0.139821029082774,0.7414750198255353,0.9314775160599572,0.8579234972677595,0.7246376811594203,0.1628959276018099,0.51318391562294,0.713855421686747,0.6009852216748769,0.5630498533724341,0.1322436849925705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0044221309397028,0.0063962637697345,0.008668875383646,0.0108346219581671,0.0131085760847423,0.0153066427362281,0.017493336601207,0.0197255399214659,0.0219759963953631,0.0241731193272139,0.0264787748687872,0.028451813983151,0.030243389732704,0.0325386996904024,0.0345091390290298,0.0366491604255363,0.0387433576884755,0.0405569825604975,0.0422288673327984,0.0565964824330534,0.0708783387758519,0.0842892977466178,0.0976020370584707,0.1098394548638214,0.1246866438899525,0.1357944778114985,0.1463354884062756,0.1564126960370319,0.1663678814878428,0.1789075385660231,0.1901223870897866,0.2006357292925334,0.2105378344367237,0.2204035356148249,0.2303012842532161,0.2388504464285714,0.2473054161697531,0.254897956868484,0.2616763588076377,0.2688165824205059,0.274923447324747,0.281421055742744,0.2853825806992136,0.2898898753213991,0.2944222372547814,0.2982999612775897,0.3016473335533162,0.3056046664687891,0.3082918238332435,0.3055928111587982,0.3034308018900226,0.3014957624740416,0.2989392478302796,0.2959342138346176,0.2930908314784889,0.2897859983586894,0.2899978687476433,0.2900294904795186,0.2907855792889491,0.2912875809652177,0.2918107280450459,0.2930976713017256,0.2943551085041372,0.2951393887049566,0.2961344362936371,0.2989693648675506,0.3024639178485332,0.3059485137448042,0.3093317516805061,0.31415508578154,0.3185672899657624,0.3235385863123089,0.327544548474781,0.3311779589541748,0.3374955404923296,0.3385321100917431,0.3401498279003846,0.3420195439739413,0.3480429777436684,0.0,1.9407681704014776,55.23964378325796,157.11686924752857,223.08619196655172,fqhc3_80Compliance_baseline_low_initial_treat_cost,98 -100000,95613,47030,447.1986027004696,5349,54.66829824396264,4263,44.02121050484767,1636,16.755043770198615,77.23812690061078,79.66731439411303,63.25655152000609,65.05331003312423,77.0358158600878,79.46858698987035,63.18000711981586,64.9804952709436,0.2023110405229857,198.72740424268895,0.0765444001902295,72.81476218062721,219.80772,154.12664759908577,229893.13168711367,161198.42238930456,451.86462,298.6060893486396,472052.92167383095,311762.44793975673,445.06758,216.74858168342,461833.5372804953,223874.8577809957,2759.61213,1297.9763673477282,2852635.311097864,1323935.4871698702,992.36691,453.98573482663153,1021058.8204532856,457975.1653296419,1593.49778,675.2754221927305,1633463.5457521467,677654.0913156419,0.38086,100000,0,999126,10449.687803959712,0,0.0,0,0.0,38688,404.04547498771086,0,0.0,40367,418.5623293903549,1240104,0,44474,0,0,8694,0,0,81,0.8367063056278958,0,0.0,0,0.0,0,0.0,0.05349,0.1404453079871868,0.3058515610394466,0.01636,0.3580224879528824,0.6419775120471176,23.524600075995085,4.0434797394196655,0.3084682148721557,0.2758620689655172,0.208773164438189,0.2068965517241379,11.189435663352324,6.05078743623015,17.384429069812924,11795.57553456863,49.02129554305706,14.460129365321272,14.826557577294285,10.03751059565104,9.697098004790464,0.5810462115880836,0.810374149659864,0.6980988593155893,0.5910112359550562,0.0907029478458049,0.7623211446740858,0.9244897959183672,0.9026548672566372,0.7608695652173914,0.1256281407035175,0.5051580698835274,0.7288629737609329,0.6270491803278688,0.5318181818181819,0.0805270863836017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002482973893303,0.004969926871076,0.007259767687434,0.0094020308386611,0.0115005699397492,0.013967419542162,0.016145647406803,0.0182956727822498,0.0205183806231205,0.0228201530220314,0.0252606090453911,0.0276193705496131,0.0298882279080298,0.0319168676934496,0.0338307430164713,0.0361939449123605,0.0380560422130765,0.0401076184738121,0.0418475375534805,0.0437213766339443,0.0587423553395013,0.072798340109821,0.0863800638762817,0.0992027130925674,0.1117095425167912,0.1268020379844714,0.138469220798538,0.1488023537187263,0.1585739048556571,0.1681992007906157,0.1809971838888229,0.1921096282483548,0.2028658603029312,0.2131023601341134,0.2217557083663933,0.2310432061780174,0.2399534722455233,0.2491346359833579,0.2574453326662194,0.26427939977727,0.2705389666133036,0.277352496395203,0.282818097701013,0.2885796349040391,0.2932088988523112,0.2973804522426788,0.2996963765933955,0.3032409474127265,0.3067725980449429,0.3103119916414278,0.3078802110746724,0.3046962278463554,0.3027100997418281,0.3009828187647459,0.2991731358377205,0.2960611080434382,0.2930449399004154,0.2929665016691608,0.2940280108208061,0.294701099097489,0.2950058072009291,0.2953615684104429,0.2961303291732975,0.2961944369913246,0.2978339784119047,0.2992965085982282,0.3004900843400957,0.303519798868636,0.3064436965362502,0.3093950992384485,0.3141092593433541,0.3176750330250991,0.3231634885901844,0.3292563231408078,0.3293953488372093,0.3339558772032217,0.3357784431137725,0.3351158645276292,0.3427255486318071,0.3455299886835156,0.0,2.235483925528712,54.85683102420893,161.05850390428952,218.4164332210333,fqhc3_80Compliance_baseline_low_initial_treat_cost,99 -100000,95723,47438,451.3962161653939,4919,50.25960323015367,3903,40.23066556626934,1460,14.82402348442903,77.33641368994157,79.71163882622326,63.332022412709286,65.08936558096747,77.14930673240875,79.52971118029652,63.26056960949502,65.02250639268352,0.1871069575328192,181.92764592674848,0.0714528032142638,66.85918828394222,242.51678,169.94437628283757,253351.98437157212,177537.03261740584,480.3153,319.57300660908925,501235.8262904422,333312.4982905488,456.66603,222.3178446944966,474361.689458124,230022.57616857055,2749.79048,1285.3056922654068,2832015.221002267,1302303.6412743295,909.16315,410.9826096819837,936772.0714979682,416380.5102722565,1417.6387,610.7959421881055,1441346.2804132758,603829.4928627318,0.37906,100000,0,1102349,11515.999289616915,0,0.0,0,0.0,41376,431.6830855698213,0,0.0,41359,429.3325533048484,1116716,0,40059,0,0,9417,0,0,92,0.9611065261222486,0,0.0,0,0.0,0,0.0,0.04919,0.1297683743998311,0.2968082943687741,0.0146,0.3542154566744731,0.6457845433255269,23.326182666387183,4.021467453236892,0.3123238534460671,0.2751729438893159,0.2095823725339482,0.2029208301306687,11.294428830901914,6.157072623508756,15.670106738447377,11503.463680094406,44.67544390568879,13.086109567404808,13.826874568712432,9.106794764339044,8.6556650052325,0.5775044837304637,0.7867783985102421,0.6866283839212469,0.58679706601467,0.1161616161616161,0.7397737162750218,0.9192399049881236,0.8623853211009175,0.730593607305936,0.1153846153846153,0.5098039215686274,0.7013782542113323,0.6221973094170403,0.5342237061769616,0.1163934426229508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0047160721711173,0.0070155845474389,0.0094824782502642,0.0117799049876402,0.0140142179129407,0.0161229463894186,0.0182356544823361,0.0206312044411274,0.0228691931290051,0.0249090256778227,0.026590556759032,0.028567021440691,0.0304359917189382,0.0326787943825905,0.0348534336627113,0.0371198707793619,0.0392040915834137,0.0410846428868379,0.0433115976750484,0.0575145927093884,0.070632670356459,0.0842230006082597,0.097070232426125,0.1094774341786294,0.1244213819196381,0.1352717944369063,0.1462784341667287,0.1565705624286156,0.1670166266712375,0.1786667527659391,0.1904447784758794,0.2006867773624271,0.2097041988901996,0.2183324542897327,0.2280748308345495,0.2365714795048633,0.2439235428301738,0.2511675886460506,0.2585824394483452,0.2648897207491363,0.2699115044247787,0.2755264743052192,0.2798808355866095,0.2833757730083667,0.2881443489170141,0.2924276113623304,0.2961438805060204,0.2999586370921875,0.3028841084045133,0.2993328132146027,0.2966428178315905,0.2936522461391184,0.2909747292418773,0.2882118772466653,0.284715315287745,0.2817516170354087,0.2816418864646001,0.2814072065619618,0.2821435570362188,0.2823577752045123,0.2841900112211351,0.2845833333333333,0.284146937325101,0.2851644673933831,0.2863654020458371,0.2887105495318592,0.2920237310481213,0.2979958728271134,0.3023016281741473,0.3083979917845733,0.3103411456943035,0.3169986635270158,0.3201593137254901,0.3259866252236978,0.3313397129186602,0.3366610351712487,0.3433528343756304,0.3427331887201735,0.3499624906226556,0.0,2.0668533855317914,49.98644283816955,142.45307898804737,205.04404879912929,fqhc3_80Compliance_implementation,0 -100000,95620,47530,452.7400125496758,4986,51.07718050617026,3978,41.1211043714704,1558,15.917172139719725,77.26635035352784,79.70334153874855,63.26822878755484,65.0715988500014,77.06903597535275,79.51062194832015,63.19382586020887,65.00160346203116,0.1973143781750934,192.71959042839623,0.0744029273459716,69.99538797023774,240.8615,168.76483749394183,251894.478142648,176495.33308297617,482.77466,320.3527002518452,504385.05542773474,334523.1439571692,460.61252,223.88410318024447,478997.0403681238,231993.0172432389,2815.87261,1302.4493708902853,2910174.952938716,1327427.3696823732,894.15185,404.46984087874085,921465.927630203,409373.8496593848,1517.25138,640.4530792304336,1552128.947918845,640163.8254998027,0.38074,100000,0,1094825,11449.749006484,0,0.0,0,0.0,41517,433.6749633967789,0,0.0,41717,433.66450533361217,1118777,0,40101,0,0,9568,0,0,82,0.8471031165028237,0,0.0,0,0.0,0,0.0,0.04986,0.1309555076955402,0.3124749298034496,0.01558,0.3580601878474219,0.6419398121525781,23.817392975755773,4.075689158860681,0.3139768728004022,0.271744595274007,0.2038712921065862,0.2104072398190045,11.081813264076036,5.933113736690159,16.63163789235201,11572.2026945819,45.554147685108425,13.330201000919214,14.198084331172842,9.058842349997414,8.967020003018954,0.5774258421317244,0.81313598519889,0.6917534027221778,0.5745992601726264,0.1051373954599761,0.7448275862068966,0.9140969162995596,0.8223495702005731,0.6938775510204082,0.1614906832298136,0.5085166784953868,0.7400318979266348,0.6411111111111111,0.5365853658536586,0.0917159763313609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0044128835911742,0.0065910406532137,0.0086627623230844,0.0108100405122045,0.0132189121151278,0.0157372632266492,0.0179025780938659,0.0198698534828517,0.0222771009027656,0.0242931184892492,0.0265919720409107,0.0286284884858092,0.0308388666639171,0.0329811079090618,0.0351196697054045,0.0373979020689083,0.0396036518867042,0.0415803661570166,0.0434388102042093,0.0587534237982729,0.0732279834010982,0.0867331932773109,0.0996102801769538,0.111354034643008,0.1271013187860812,0.1381183172841868,0.1487850148272993,0.158814085411538,0.1681009938221864,0.1797687362471415,0.1914755235658847,0.2019167937268569,0.2110164106833768,0.2203670028103818,0.2292369121561668,0.2375372792565371,0.2450799369511371,0.252865467846554,0.2590048507505476,0.2657380712540669,0.271983328845546,0.276358943392652,0.2810177860875401,0.285323709536308,0.2899514096144834,0.2933169711616724,0.2968813645621181,0.3002084871087629,0.3038168341642267,0.3006552656718828,0.2987007630439265,0.2957984376099655,0.2923265718616906,0.2902746844840386,0.2861402033483678,0.2828509555348308,0.2829405880520162,0.2834604035545549,0.2842007633860093,0.2848876404494382,0.2859230586934197,0.2869732683008519,0.2879616199933058,0.2894882201781983,0.2902310815030707,0.2915801155279857,0.2960437419476479,0.3001962295886187,0.3029366306027821,0.3079891057648661,0.3109417182785453,0.3146350687003655,0.3178113207547169,0.3198327914537854,0.3236189138576779,0.3274349667271627,0.3269923908690428,0.3293510724952484,0.3307057057057057,0.0,1.873183947337138,50.79640307251245,149.63574911258857,204.79617360999288,fqhc3_80Compliance_implementation,1 -100000,95714,47272,450.4774641118332,4789,49.04193743861922,3779,38.99116116764528,1406,14.36571452452097,77.34534288058313,79.71457633258034,63.32656324425341,65.07478065960356,77.16740203177149,79.53725260310843,63.259654135158414,65.00998515003816,0.1779408488116445,177.3237294719081,0.0669091090949933,64.79550956539981,242.23276,169.67713734041584,253079.52859560773,177274.9204300478,479.8532,319.60007334104296,500863.38466682,333434.2450854033,460.81661,224.7796403230761,478156.5288254592,232338.98828297775,2646.08245,1239.3995787817753,2733510.771673945,1263837.7131681629,863.77433,395.8046958833828,888514.6895960884,399649.91832691367,1367.4154,581.7359051779034,1399186.660258687,582650.4937497759,0.37761,100000,0,1101058,11503.61493616399,0,0.0,0,0.0,41301,430.992331320392,0,0.0,41650,431.8803936728169,1114235,0,40012,0,0,9630,0,0,95,0.9925402762396306,0,0.0,0,0.0,0,0.0,0.04789,0.1268239718227801,0.2935894758822301,0.01406,0.3534743202416918,0.6465256797583081,23.226675028738647,4.028024429027083,0.3037840698597512,0.2979624239216724,0.1974067213548558,0.2008467848637205,11.323668121252014,6.101649876599531,15.000833060789247,11406.127721642586,43.552489549104536,13.871505152935484,13.11051397818728,8.28250236741266,8.287968050569107,0.5903678221751786,0.7992895204262878,0.7081881533101045,0.5898123324396782,0.1027667984189723,0.7584670231729055,0.9200913242009132,0.8498498498498499,0.7114427860696517,0.1466666666666666,0.5193827625141136,0.7223837209302325,0.6503067484662577,0.544954128440367,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0046520584598544,0.0070816931131041,0.0094657729027016,0.0115621631515792,0.0136226188415683,0.0159628145928259,0.0180578381633882,0.020035778175313,0.0221517043709693,0.0243579886206366,0.0264738804054262,0.0284712150667036,0.0306795236329171,0.0326522187822497,0.0345462063262352,0.0365990057995029,0.0386986301369863,0.0407789804215144,0.0424864526886202,0.0569897863274641,0.0703192046049188,0.0836787157022191,0.0968553062104809,0.1087862576894263,0.1237698152341848,0.1353580603384216,0.1453980020022578,0.1555978243446853,0.1649024591658355,0.1766195149804462,0.187656994369857,0.1987225522839546,0.2079255610290093,0.2166367510543876,0.2260524507304529,0.2342030667589223,0.2424913946320502,0.2497843849296414,0.256761708462155,0.2630191166776532,0.2684953600897595,0.2740939629068887,0.2792900683824146,0.2834701112028359,0.2869827586206896,0.2902407002188183,0.2923196098849465,0.2968167701863354,0.299500019788135,0.2963052727958205,0.2935561515714187,0.2918469452469875,0.2886812345643351,0.2863122893998545,0.2822394471708786,0.2780416226194796,0.2780992546096508,0.2781230894640309,0.2788555403702454,0.2790615464761479,0.2799089535545395,0.2801223623423648,0.2815121375965111,0.2839071372098037,0.2851291091983822,0.286185974319176,0.2907931570762053,0.2955981392765396,0.2990167273866886,0.3029073698444895,0.3069452464696309,0.3103083809997513,0.3155438464433571,0.3199368850937442,0.3210655450403084,0.317730282962071,0.3192169396723931,0.3296256104177971,0.3268933539412674,0.0,1.898306943332752,48.96681426555029,144.41110906277834,191.58335669544945,fqhc3_80Compliance_implementation,2 -100000,95666,47663,453.8393995776974,4873,49.69372608868355,3884,40.05602826500533,1496,15.27188342775908,77.2498286400838,79.64793171938864,63.26585613190741,65.0385707623526,77.06213156974437,79.46444413572776,63.19450612890293,64.97157781681383,0.1876970703394391,183.48758366087736,0.0713500030044826,66.99294553877166,240.5304,168.48719276263222,251427.2573328037,176120.24414382564,477.35087,317.7028138955719,498460.8638387724,331580.19975286094,462.71543,225.9853856676173,480545.3348106955,233785.09553211727,2761.31031,1289.9616058092672,2846764.7544582197,1308758.8754722336,911.83342,412.4924912298602,936112.5582756674,414149.7619110859,1454.2039,618.7307011711597,1484888.5497459911,615640.5229570493,0.38111,100000,0,1093320,11428.511696945625,0,0.0,0,0.0,41142,429.5047352246357,0,0.0,41748,433.2364685468192,1118713,0,40164,0,0,9452,0,0,79,0.8257897267576778,0,0.0,1,0.0104530345159199,0,0.0,0.04873,0.1278633465403689,0.3069977426636568,0.01496,0.3637618296529968,0.6362381703470031,23.24933326022849,4.119368217070142,0.2999485066941297,0.2778063851699279,0.2149845520082389,0.2072605561277034,11.432355769650073,6.322692710191891,15.907364047108032,11572.68108925688,44.644153735441286,13.249542131667637,13.348730478165288,9.31352465057066,8.732356475037697,0.5821318228630278,0.8044485634847081,0.7072961373390558,0.5568862275449101,0.1291925465838509,0.7459086993970715,0.9088888888888887,0.8481375358166189,0.7164948453608248,0.1309523809523809,0.5123026074182887,0.7297297297297297,0.6470588235294118,0.5085803432137286,0.1287284144427001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024919972446209,0.0050097863234861,0.007054333593853,0.0092156065840276,0.0114941359563019,0.0134642413378689,0.0155708284047803,0.0177770970541685,0.0199120474534669,0.0220708725931995,0.0246584335124933,0.0269442932130787,0.0292643775145858,0.0313031468062956,0.033503691084611,0.035538087604075,0.0376365256678618,0.0396295565684147,0.0415327153365169,0.0433980167460871,0.0585125279501807,0.0717457325374384,0.0851997229277303,0.0988267480401957,0.1111369080912228,0.1260689188045042,0.1372257502707984,0.1484761295822677,0.1587308379422116,0.1681186821214107,0.1805038571505637,0.191626636015658,0.201323694568927,0.2111716770676815,0.2205176314772915,0.2303051178915087,0.2386661293572436,0.2457727493203686,0.2525635335222552,0.2593962506892115,0.2657385690732183,0.2720471654902697,0.2772971431287731,0.2815679953811735,0.2858343995613233,0.2895094694160114,0.2929360100376411,0.2970006381620931,0.3001375944339157,0.3028811810461148,0.2997435897435897,0.2962830248487438,0.2946024130388767,0.2932960893854748,0.2909007079540722,0.2877475436931835,0.284230495612995,0.2853792153260727,0.2852288831594584,0.2857219394588802,0.2859551193196718,0.286346396965866,0.2874675922054027,0.2883214939909753,0.2875955207382131,0.2873897249610794,0.2877231700761112,0.2920508347869424,0.2966620305980528,0.2998976458546571,0.3043125956603943,0.307040041873855,0.3091022056539298,0.3120018047826741,0.3187962962962963,0.3219154141908423,0.3234497290788681,0.3244274809160305,0.3308005427408412,0.3295964125560538,0.0,2.14662087969391,50.5747202648013,144.77914398070027,198.3100208905896,fqhc3_80Compliance_implementation,3 -100000,95745,47719,454.6242623635698,4934,50.30027677685519,3951,40.67053109822968,1487,15.050394276463525,77.32698317968122,79.6863535908112,63.31555014592704,65.06088445156571,77.128679617336,79.49499701268324,63.23850690283824,64.99001721569888,0.1983035623452167,191.3565781279516,0.0770432430888021,70.86723586682808,241.84974,169.4246942646071,252597.7753407489,176954.090829398,484.3837,323.2727201545658,505332.6126690689,337061.7057335274,469.07049,229.29000163851072,487190.1718105384,237278.63221096928,2763.68298,1314.573637518545,2843099.9321113373,1329590.7749945638,920.53638,422.33132260315017,947567.6954410152,427221.925534649,1439.61852,626.9117336142754,1458322.6904799205,615512.6994273454,0.37942,100000,0,1099317,11481.71706094313,0,0.0,0,0.0,41675,434.65455115149615,0,0.0,42396,439.9707556530367,1109851,0,39860,0,0,9591,0,0,85,0.8877748185283827,0,0.0,0,0.0,0,0.0,0.04934,0.1300405882663012,0.3013781921361978,0.01487,0.3678384152262575,0.6321615847737425,23.297681310719096,4.001369445808577,0.3075170842824601,0.2865097443685143,0.2093140976967856,0.1966590736522399,11.52340523475448,6.413804763959591,16.011929812276502,11524.703753700203,45.62322239523917,14.129302535253576,13.76042159777766,9.211352640001342,8.522145622206594,0.5917489243229562,0.8197879858657244,0.6987654320987654,0.5840386940749698,0.1003861003861003,0.7562695924764891,0.9196261682242992,0.85,0.7571428571428571,0.1308900523560209,0.5132710280373832,0.7303182579564489,0.64,0.5251215559157212,0.0904436860068259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178207790892,0.0044411997323112,0.006597243367233,0.008808111183355,0.0113501144164759,0.0136856575530777,0.015927723620345,0.0182103995263662,0.0206657604529705,0.0227635619242579,0.0250691811007481,0.0271926582902192,0.0290386908433041,0.031385794015281,0.0333821617941364,0.0351127368921404,0.0368890223321979,0.0389095775027748,0.0408884454283724,0.0430058237052934,0.0578489100476071,0.0723373090604729,0.0856076412552292,0.0979279023559466,0.1097793660331214,0.1259754266500306,0.1371157640170559,0.1480440384164909,0.1582896846606093,0.1681854773788439,0.1803865348754486,0.1917423938826128,0.201880591167316,0.2105885185266245,0.2197791308369025,0.228692740898408,0.2379717982524749,0.246358690142273,0.2533033391276685,0.2605939731554394,0.2657618010839857,0.2721639824304538,0.2769270882715464,0.2806072242889715,0.2857750915127267,0.2895392432539095,0.2933025982811756,0.2957306977099626,0.2991809652169405,0.3013814305128577,0.2985319644226758,0.2950501856180393,0.2920154766092156,0.2897655076816449,0.2865858184031231,0.2836609110947832,0.2801391524351676,0.2805077805077805,0.2810013121346897,0.2816465820624933,0.2816848860202216,0.2809320449491272,0.2822228262005812,0.2838283093637294,0.2848390570778987,0.2862850915883971,0.2868390495341131,0.2916172153163845,0.2959894165158056,0.2978263433041154,0.3026576576576577,0.3056649341103586,0.3077257753744795,0.3121248499399759,0.3168179292461567,0.316746299965039,0.3145525760771316,0.3160103937637417,0.3130315500685871,0.308457711442786,0.0,2.355612088197581,55.52617653805897,139.6981326497542,196.37297295583485,fqhc3_80Compliance_implementation,4 -100000,95760,47929,457.83208020050125,5118,52.29741019214704,4075,41.97994987468672,1540,15.747702589807853,77.39144353273707,79.7289317762058,63.36142006586866,65.0865617402945,77.18972115085893,79.52962085183326,63.28567602782902,65.01405333470738,0.2017223818781417,199.31092437253997,0.0757440380396374,72.50840558711502,241.72918,169.330774863728,252432.30994152045,176828.29455276526,485.48579,322.3656370773675,506433.77192982455,336091.0892620798,462.80776,225.260309685753,479087.2284878864,232057.81066123047,2864.03255,1335.4020190086092,2954381.6729323305,1358067.4175110792,925.30557,419.4960564607725,951429.9498746868,423224.526379252,1494.56434,637.9601409871559,1530082.581453634,640169.5431657999,0.3835,100000,0,1098769,11474.195906432748,0,0.0,0,0.0,41652,434.3671679197995,0,0.0,41908,433.43776106934,1120172,0,40165,0,0,9531,0,0,85,0.8876357560568087,0,0.0,0,0.0,0,0.0,0.05118,0.1334550195567144,0.3008987885892927,0.0154,0.3693373268438787,0.6306626731561213,23.1842458569214,4.019409447577303,0.3101840490797546,0.2839263803680981,0.2041717791411043,0.2017177914110429,11.269258730339883,6.116595420451836,16.567387805126923,11618.627681453898,46.73461353445939,14.090932165537064,14.483589246872192,9.153857742184451,9.00623437986568,0.5828220858895705,0.8003457216940363,0.7056962025316456,0.5588942307692307,0.1119221411192214,0.7416107382550335,0.9147465437788018,0.8559782608695652,0.715,0.1526315789473684,0.5171696149843913,0.7316735822959889,0.6439732142857143,0.509493670886076,0.0996835443037974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020654462983962,0.0041144339613081,0.0064122075444897,0.0087344227663745,0.0108590659983121,0.0130893249735363,0.0153148563276951,0.0175791213500112,0.0197877187426575,0.0216910861913726,0.0239959016393442,0.0261203217334208,0.028226469379367,0.0305060672492049,0.0327295968332182,0.0345743032456665,0.0362650328082631,0.0380526659683257,0.039905200461524,0.0418967061813787,0.0571160169093471,0.0713269299181785,0.0851900805639476,0.0981901546939247,0.110445683919741,0.1262437745186156,0.1369627689469051,0.1480772299345779,0.1589855846235985,0.1693874269789377,0.1814238353569275,0.1924669903647551,0.2037753483014193,0.2128259183606593,0.2224151764615367,0.2321786176604007,0.2407275320970043,0.2490088835480284,0.2565959472324221,0.2624691132058204,0.2672929811181215,0.2725371285682569,0.2779314747818684,0.2828846522322284,0.2875926397632303,0.292223452688569,0.2958848302320641,0.2993731005455169,0.303049900406136,0.3054468813804913,0.3026061257388501,0.3001001797746641,0.2973420993481681,0.2943573938590932,0.291688873097649,0.287410093868097,0.2839786318725476,0.2847298202067377,0.2860128808605366,0.2860722600366098,0.2868829495153247,0.2876563885331494,0.288455114822547,0.2893774527292187,0.2897705453149001,0.2914391220679253,0.2913559946701443,0.2962359356880935,0.2989983188568226,0.3029044001266223,0.3056540314516862,0.3085665728397684,0.3114846996599924,0.3144806671721001,0.3201228021211275,0.3203271028037383,0.3285970685013461,0.3390268123138034,0.3436158798283262,0.3497370398196844,0.0,2.2758171562455543,51.81297598299806,156.06426518033578,206.14981981656243,fqhc3_80Compliance_implementation,5 -100000,95716,47482,452.7142797442434,5126,52.206527644281,4053,41.63358268210122,1538,15.57733294329057,77.37264048070351,79.73044967296808,63.34029949113111,65.08117167290882,77.16707939706167,79.53239904061493,63.261280456147205,65.00832454629455,0.2055610836418395,198.05063235314435,0.0790190349839079,72.84712661427761,241.35034,169.0698168377653,252152.55547661832,176636.94349718472,483.08872,321.1099413852596,504013.2475239249,334784.7187359058,466.752,227.52015721202372,483309.21684984746,234386.4605930434,2844.5692,1339.3155835244934,2924502.3507041666,1352121.4050228149,949.66152,431.1420717862156,975242.0493961304,433589.7085768252,1502.55688,650.000749174108,1525007.125245518,640273.5895078483,0.38027,100000,0,1097047,11461.479794391744,0,0.0,0,0.0,41531,433.1564210790255,0,0.0,42329,437.9936478749635,1117280,0,40165,0,0,9482,0,0,83,0.8462534999373146,0,0.0,0,0.0,0,0.0,0.05126,0.1347989586346543,0.3000390167772142,0.01538,0.3533595358412876,0.6466404641587123,23.11608472773002,4.067083483656315,0.3044658277818899,0.2849740932642487,0.2013323464100666,0.2092277325437947,11.53792079888975,6.296332851387143,16.454569607518312,11507.269759592318,46.52933878023478,14.006569735014804,14.08117330377521,9.064917627184144,9.37667811426062,0.5886997285961016,0.8034632034632034,0.7171799027552674,0.5857843137254902,0.1120283018867924,0.7493897477624084,0.9209401709401708,0.8825214899713467,0.7373271889400922,0.1128205128205128,0.5187677053824362,0.7234352256186317,0.6519774011299435,0.5308848080133556,0.111791730474732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075949367088,0.0046010560132964,0.006725706807876,0.0090185245368865,0.011296505302545,0.013630718488507,0.0157791731224007,0.017770201994427,0.01995318361631,0.0222131231446412,0.0242579586814989,0.0263546949754625,0.028317892507172,0.0303089598352214,0.0324257962013432,0.0345308721086466,0.0363613774252997,0.0382022238818355,0.0405250904253107,0.0424235480376635,0.0571073543078513,0.0712925369385961,0.0843076600429927,0.0966616212579885,0.1089264440766238,0.1241145249624664,0.1349533820550081,0.1458020710279578,0.1559239124630189,0.1653349064192631,0.1776217299055455,0.189660582322582,0.201002784303489,0.2104871699516549,0.2196337786385545,0.2280765906522172,0.2363264896004287,0.244796828543112,0.2532412194484529,0.2596517789553368,0.2651955449556579,0.2712800824047195,0.2764422222485516,0.2816036094411845,0.2854207947873233,0.2898818771423639,0.294113229274887,0.298386173743848,0.3011723905898186,0.3037465724530689,0.3002084313857325,0.2969125709339232,0.2939364530148951,0.2909474048842445,0.2892979070803028,0.2863828941129686,0.2830364474764702,0.2831845359980342,0.2834274632553075,0.2834437321304896,0.2836826625963292,0.2849992148241206,0.28444324054009,0.2852480127892002,0.2861235110166861,0.2875933534899346,0.2879595925392929,0.2908757650128926,0.2925266657431777,0.2967255980954611,0.3001883745963401,0.3043980266610685,0.3065401897154268,0.3108453670276775,0.3145900880037054,0.3239601640304628,0.3289513448171653,0.3322020363345977,0.3344182262001627,0.3385081408557364,0.0,2.7754878671866754,52.97422815059757,149.69081167523916,204.6239439672116,fqhc3_80Compliance_implementation,6 -100000,95743,47585,453.50573932297925,5039,51.36667954837429,3962,40.807160836823584,1500,15.25960122411038,77.33281654085012,79.69865117671388,63.319784280511655,65.07076810606951,77.13908654920397,79.5073562298106,63.2463270173385,65.00029547418296,0.1937299916461512,191.29494690328383,0.0734572631731538,70.4726318865454,241.5501,169.25901998898055,252290.0890926752,176784.74665404318,479.06472,319.0158961283318,499810.22111277067,332645.1815049996,460.30115,224.83694526456196,476797.73978254286,231741.0364839401,2782.09367,1305.1544805796316,2868866.48632276,1326258.473809711,918.38459,420.3366857763235,947178.571801594,426986.0728996617,1456.4614,624.8973499366568,1485087.5155363835,624576.9260228166,0.38176,100000,0,1097955,11467.731322394327,0,0.0,0,0.0,41250,430.2664424553231,0,0.0,41685,431.4362407695602,1118557,0,40120,0,0,9505,0,0,84,0.8773487356778041,0,0.0,1,0.0104446278056881,0,0.0,0.05039,0.131993922883487,0.2976781107362572,0.015,0.3749524172059383,0.6250475827940617,23.10663526593552,4.034866348475383,0.3109540636042402,0.2859666834931852,0.2019182231196365,0.2011610297829379,11.555707940997117,6.408125269367588,16.17009723938319,11547.029238016235,45.60377396463922,13.875633647288463,14.049590034873924,8.98586541342996,8.692684869046875,0.5971731448763251,0.8014121800529568,0.7118506493506493,0.6025,0.124215809284818,0.7592745259686727,0.9148471615720524,0.8647887323943662,0.7579908675799086,0.1602209944751381,0.5256456893415787,0.7244444444444444,0.6499429874572406,0.5438898450946644,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021278967260788,0.0043715071049668,0.0067011879378617,0.0088939937589575,0.0110792333048467,0.0132822685788787,0.0152765171988292,0.0172741194486983,0.0192634097462219,0.0214107985787571,0.0237548442658246,0.025547033032478,0.0279671386121307,0.029948198267783,0.0319012834798398,0.0342019038956475,0.0363608119304059,0.0383242356945684,0.0406034895085989,0.0426276642290143,0.0573140685680878,0.0714569688853549,0.0840673629461851,0.0971784197468567,0.109691699604743,0.1251850441991287,0.1364831901580231,0.1472272485364555,0.1573578577455912,0.1664432409244463,0.1774073715153277,0.1892371441863484,0.2006198684138981,0.2099468655019351,0.2188015574473701,0.2282003299708784,0.2368550258882342,0.2440948426229139,0.2520087157837396,0.2583703567993404,0.2653210032291292,0.2712598471280917,0.277304057414908,0.2819845845869844,0.2873077203470146,0.2916507392381962,0.2949807819914113,0.2992151025963948,0.3031260521613012,0.3056252144761502,0.3030706891213333,0.2999339806893516,0.2972885460074332,0.2939987584633819,0.2922962632791026,0.2887471512259288,0.2845604274017639,0.2849257178424595,0.2853371934604904,0.286319084974296,0.286959768505554,0.2873692298599208,0.2878595115439964,0.2888241572534021,0.2904128593981725,0.2915164561558212,0.2916134887546442,0.2954630788485607,0.2999266938946486,0.3025983256989417,0.3048631531327754,0.3070994985484296,0.3111818295270186,0.3115074885226161,0.3173719376391982,0.3178158907945397,0.3191521346963319,0.3279569892473118,0.3304418541610192,0.3389894419306184,0.0,2.270486893020288,52.82452396228993,143.2086113824437,203.61200826929183,fqhc3_80Compliance_implementation,7 -100000,95790,47783,453.9304729094895,5027,51.38323415805407,3968,40.92285207224136,1483,15.210355987055015,77.34910350822409,79.67884510219895,63.34642956891118,65.06716728854724,77.15221774804333,79.48081277032917,63.27171155154884,64.9937016532249,0.1968857601807627,198.03233186978275,0.0747180173623363,73.46563532233574,241.1838,168.870874122806,251783.9022862512,176292.80104687964,483.08653,321.79546917014903,503845.7667815012,335465.9141561218,461.39931,225.7337550780986,477809.6878588579,232700.8644293235,2759.00288,1291.4643989843266,2849045.1404113164,1317007.891204016,889.96121,404.28408755470497,916231.2245537112,409208.4430052239,1427.77898,618.267366388034,1465097.4632007517,623671.3927517781,0.38104,100000,0,1096290,11444.722831193234,0,0.0,0,0.0,41478,432.5086125900407,0,0.0,41717,431.7674078713853,1120033,0,40214,0,0,9539,0,0,92,0.94999478024846,0,0.0,1,0.0104395030796534,0,0.0,0.05027,0.1319284064665127,0.2950069624030236,0.01483,0.3580810965162764,0.6419189034837236,23.69658845061686,3.9341044113207326,0.3185483870967742,0.2820060483870967,0.2056451612903226,0.1938004032258064,11.089936929159077,6.12622002282982,16.045840373518406,11557.69058388624,45.34452884639751,13.66195645021054,14.261427683134558,9.09745734624132,8.323687366811086,0.5798891129032258,0.7890974084003575,0.6890822784810127,0.5698529411764706,0.106631989596879,0.7564208782104391,0.8993839835728953,0.8781869688385269,0.6893203883495146,0.1428571428571428,0.5027164070988772,0.7041139240506329,0.6158068057080132,0.5295081967213114,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974238496435,0.0044496700757153,0.0069493055766909,0.0092330194716153,0.0117236751128645,0.0138442118978785,0.0163476630179987,0.0183497474103179,0.0205478752209586,0.0224570808864152,0.0247100766299225,0.0267929523555427,0.0290526791770291,0.0314439515423489,0.0337038106235565,0.0358297441617864,0.0378299514708773,0.0401061756044958,0.0418013112914454,0.0439848801974321,0.0593256597827334,0.0729189545354711,0.0859518342612105,0.0989963743366087,0.1109120606986669,0.1259483906418412,0.1371532746139251,0.1474632325573976,0.1575493041919235,0.1673898370456079,0.1791676084078654,0.1904123365739188,0.2012939001848429,0.2113119648305501,0.2197051380789965,0.2283148008682939,0.2365492997042576,0.2443387528390564,0.2520221902049984,0.2589989813553696,0.2651874291792891,0.2705828694391168,0.2756450448958346,0.279362797939873,0.2843391920761313,0.2887051458990536,0.2930667800935772,0.2960927261854778,0.2997526451429089,0.3031682567330404,0.300607137568488,0.2981468998060229,0.2946432340401581,0.2918704465122989,0.2899979248806806,0.2867549365464791,0.2839919202120944,0.2828755687956264,0.2840947776945598,0.2845292557452338,0.2853782830262642,0.2861283643892339,0.2871905139660139,0.2871775417298938,0.2892897461148608,0.29126314693325,0.2910343649460467,0.2955052999087849,0.3001824177366168,0.303886925795053,0.3068491904675277,0.3092401376754037,0.3124249130572241,0.3162861491628615,0.3220642245032489,0.3276661514683153,0.3264304341156619,0.3321862348178138,0.3370879120879121,0.3307301835220617,0.0,2.0010586407055038,52.57366709383711,141.05354279165445,205.3522554485741,fqhc3_80Compliance_implementation,8 -100000,95674,47191,449.0352655893973,4914,50.13901373413884,3913,40.38714802349645,1469,15.03020674373393,77.31532774038504,79.70691908736528,63.31028192710126,65.07598710672839,77.12645036822937,79.51923346760323,63.23943076435787,65.00761141456408,0.1888773721556731,187.68561976204975,0.0708511627433878,68.3756921643095,242.40436,169.66846618714146,253364.9267303552,177340.20338560262,480.77483,320.09612803347727,501991.2306373727,334047.2730663266,457.57281,223.31825582289773,474906.65175491775,230871.6772396741,2748.65415,1286.561391461698,2836968.413571085,1308765.6013772793,894.5304,408.9662487205246,920810.7427305224,413291.3003747357,1431.041,610.7165818912956,1465270.313773857,612265.054345471,0.37703,100000,0,1101838,11516.587578652508,0,0.0,0,0.0,41498,433.20024249012266,0,0.0,41427,429.64650793318975,1114271,0,39995,0,0,9574,0,0,74,0.7734598741559879,0,0.0,0,0.0,0,0.0,0.04914,0.1303344561440734,0.2989417989417989,0.01469,0.367692907248636,0.632307092751364,23.070157505573963,4.069705906208666,0.3007922310247892,0.2867365192946588,0.2075134168157424,0.2049578328648096,11.38468023663734,6.091877180472616,15.691079153741567,11506.296193175116,44.87431228772135,13.819306742580151,13.269808677491657,9.022632531065918,8.762564336583617,0.5803731152568362,0.8101604278074866,0.6873406966864911,0.5825123152709359,0.0997506234413965,0.7608881298035867,0.9394572025052192,0.8509316770186336,0.72,0.1352941176470588,0.5032822757111597,0.713841368584759,0.6257309941520468,0.5375816993464052,0.0901898734177215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.0049068310387477,0.0072154904706813,0.0094080832300408,0.0116678873697916,0.014087089381207,0.0163396026273917,0.0185792349726775,0.0208007363092498,0.023081491797571,0.0252189608844583,0.0273032634487575,0.0292262902877364,0.0312622359608449,0.033505367464905,0.0356086461888509,0.0378390699794848,0.0397509081473793,0.0415236430963822,0.0433146775891358,0.0576183710142504,0.0722654409532086,0.0851499281058785,0.0980291056790799,0.1097849258110133,0.1254194231278116,0.1366961470266597,0.1471177197392527,0.1573518880730219,0.1672534077492755,0.1795214485880577,0.1908463895535801,0.2008794940732113,0.2105769967281998,0.2188363820578615,0.2283318730799516,0.2371315933482985,0.2441431304152132,0.2516090218736165,0.2578922641487813,0.2640913142632231,0.2696650247458143,0.2751642109000533,0.2794560303164762,0.2835284402778452,0.2876498047765091,0.2912195121951219,0.2941961561928005,0.2979259872249088,0.3011614570287266,0.2983968582725879,0.2963711340206185,0.2935428997202345,0.2908408516780945,0.2878331677073908,0.2841579317299758,0.2813624597512469,0.2815798934536065,0.2815231810605803,0.2817879794623981,0.2826155765327971,0.2830552115887336,0.2835154750980229,0.2845410843051723,0.285266157419602,0.2866035533653223,0.2889603003071322,0.2928739971684757,0.2961662687824744,0.3011469619399134,0.3028373954165151,0.3053144188016091,0.3093484419263456,0.3103553687428353,0.3131074832499764,0.3152586616041765,0.3192197187358234,0.3201346268065729,0.322800326886407,0.3285660519382762,0.0,1.9362569024169267,51.10370348923467,144.9953282093805,199.94257366736127,fqhc3_80Compliance_implementation,9 -100000,95627,47787,455.7081159086869,4963,50.6760642914658,3888,40.07236449956602,1436,14.619302079956498,77.3146043072854,79.73193046508906,63.296484254502126,65.0822242588064,77.12657808041388,79.54816324585367,63.22546385640347,65.01514546737593,0.1880262268715284,183.76721923539208,0.0710203980986534,67.07879143047535,240.79,168.62250780106186,251801.2695159317,176333.57503744954,482.37205,321.55130981157515,503867.265521244,335692.23107655265,466.35293,227.56092071683017,483748.815711044,234951.89669725084,2694.50528,1261.7982273052644,2782600.039737731,1284375.633770028,898.6344,405.64642338692727,927683.3739425058,412151.5616406942,1392.06298,592.9498610038378,1420413.795267027,591193.342326991,0.38229,100000,0,1094500,11445.512250724169,0,0.0,0,0.0,41499,433.3608708837463,0,0.0,42163,436.9895531596725,1118035,0,40104,0,0,9491,0,0,87,0.899327595762703,0,0.0,1,0.0104572976251477,0,0.0,0.04963,0.1298229093096863,0.2893411243199678,0.01436,0.3563151796060255,0.6436848203939745,23.523012161133536,3.9521645988220175,0.3042695473251028,0.2998971193415637,0.199074074074074,0.1967592592592592,11.579906489861475,6.4305408458325966,15.330686470207324,11622.23321389763,44.62471366703966,14.246502510855445,13.49355869121677,8.491097837230262,8.393554627737178,0.6033950617283951,0.8121783876500858,0.7252747252747253,0.599483204134367,0.1006535947712418,0.7757166947723441,0.9284294234592444,0.8738738738738738,0.7486910994764397,0.1194968553459119,0.5277572168763879,0.7239819004524887,0.6670588235294118,0.5506003430531733,0.0957095709570957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304591004427,0.0044923994280556,0.0068014780525439,0.0090738200477569,0.011322021484375,0.0136687716439193,0.0161361063228649,0.018153028910001,0.0204559634247373,0.0225499231950844,0.0246464066298115,0.0267902084253561,0.0286305090325501,0.0305815439146024,0.0327528721987675,0.0348767474563652,0.0371563863186579,0.0392761477605432,0.0410987410259078,0.0430955360867751,0.0572679857431041,0.0715565192797209,0.0851175537891277,0.0982726497615814,0.1102819324670938,0.1266041251958832,0.137720798326022,0.1490579308580928,0.1597205879206692,0.1688599082598373,0.1804774902096167,0.1918845982941182,0.2026539706058592,0.2127645589588536,0.2218756544069832,0.2310432457026178,0.2400683898219853,0.2476878189458031,0.2548959469283897,0.2619214144031553,0.2687299621523397,0.2737308650349078,0.2784187048146439,0.2827683717363433,0.2875101624783099,0.2919929088491653,0.2958570268074736,0.2994041644963348,0.3025453417273162,0.3052634353338077,0.3017652832116592,0.2984222017769111,0.2961926328077751,0.2936855019123908,0.2912038961810299,0.2874934973530402,0.2836085278674005,0.2836675747530114,0.2839341572227065,0.2832967777599458,0.2838130436405719,0.2851393006498733,0.287101132938364,0.2880426335072721,0.2902749321008243,0.2899267965769667,0.291048982582718,0.2952768123138033,0.2994732099535593,0.3051153302997019,0.3102163569440704,0.3152544149242781,0.3182700131438943,0.3208201417156641,0.3262727610553697,0.3318359144106868,0.3301611665387567,0.3322554567502021,0.3386789888556673,0.342681521321552,0.0,2.2877851654932795,51.56967406084582,139.5672836552423,200.2625816757112,fqhc3_80Compliance_implementation,10 -100000,95635,47743,455.55497464317455,4913,50.044439797145394,3912,40.21540231086945,1471,15.004966800857426,77.29129418892526,79.69272817593892,63.29829466637945,65.07074349291084,77.10269395224843,79.50780028654684,63.22654005243204,65.00262202050338,0.1886002366768338,184.92788939208535,0.0717546139474052,68.12147240745503,242.77924,170.0618070022602,253860.23945208345,177823.81659670646,481.99706,320.6380640202311,503346.3271814712,334622.53779498214,465.65506,227.6371784895782,482226.70570397866,234445.1254976296,2684.46438,1272.9849362878226,2762308.9036440635,1287054.619060352,891.82985,413.335565254614,916378.7734615988,416047.7041242496,1418.16642,608.7900873623503,1448838.1659434307,607583.7106179717,0.38059,100000,0,1103542,11539.10179327652,0,0.0,0,0.0,41457,432.8017985047315,0,0.0,42081,435.3322528363047,1110203,0,39837,0,0,9462,0,0,102,1.0665551314895174,0,0.0,2,0.0209128457154807,0,0.0,0.04913,0.1290890459549646,0.2994097292896397,0.01471,0.351953125,0.648046875,23.268635947429225,4.028337048303153,0.3047034764826176,0.2980572597137014,0.2067995910020449,0.1904396728016359,11.56479071385542,6.416675797445961,15.710560926733642,11591.013787934357,45.10918629118422,14.301843705027832,13.588076785076437,9.05036103188652,8.168904769193434,0.5920245398773006,0.7924528301886793,0.6736577181208053,0.6032138442521632,0.1355704697986577,0.7654830718414534,0.910386965376782,0.8476454293628809,0.7360406091370558,0.1790123456790123,0.5142539800074046,0.7066666666666667,0.5980746089049338,0.5604575163398693,0.1234991423670669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023196215674159,0.0043191726655175,0.0064553454523309,0.0087084645869322,0.0110388751538829,0.013342160207771,0.0156004649550339,0.0178079114505687,0.0199472435792573,0.0219216513423299,0.0242329149232914,0.0262928156935243,0.028362738542256,0.0306864785771695,0.0328694718586117,0.0348344124278592,0.0368101974195554,0.0385929209971654,0.0407757696829707,0.0428060591528445,0.0578098711504498,0.0722321148004608,0.0849126933294133,0.0972960456377816,0.1095491388044579,0.1249034197351848,0.1365059818897888,0.1475820195994887,0.1579926445432774,0.1672356780898393,0.1791097884453645,0.1911764705882352,0.2024317499020333,0.2121952020672061,0.2218389030949651,0.231442355681251,0.240068370721244,0.2485112514493487,0.2556362810761721,0.262223902483732,0.2682328434209003,0.2741839276733605,0.2782782664283262,0.2829571200805572,0.2875704978607545,0.2920006906588392,0.2947953714371587,0.2983244633444527,0.3014277200528593,0.3055529914417206,0.3021744395704943,0.2990659348217848,0.2962389068882941,0.2933019399384651,0.291186430608365,0.2872289895043285,0.2832386408596705,0.282711162935834,0.282816718499026,0.2831768360169945,0.2838146608233134,0.2847034174688198,0.28586983834492,0.2866296073047127,0.2878791506068803,0.2890548037538238,0.2895026688130136,0.2929522977568402,0.298185624563852,0.3016781836130306,0.3059073638501899,0.3100367840252233,0.3130826503159607,0.316867744138402,0.3215759849906191,0.3271604938271605,0.3242414955562366,0.3312870881931655,0.336083608360836,0.335469280060309,0.0,2.682007676616117,52.170800342641385,142.43565956634296,198.57676331028344,fqhc3_80Compliance_implementation,11 -100000,95634,47655,455.3401509923249,4961,50.71418114896376,3943,40.68636677332329,1437,14.680971202710332,77.27514686010801,79.68661170440204,63.27600815666828,65.05670758947545,77.09341054111493,79.51011046405785,63.206232441151926,64.99186409943847,0.1817363189930745,176.50124034419434,0.0697757155163572,64.84349003697787,242.077,169.59461624380617,253128.59443294228,177337.1564964408,484.21825,321.9952480905527,505740.9394148525,336112.4126954433,468.06211,228.50954768627537,486706.3492063492,236852.6685778324,2772.8729,1305.9666760650684,2858313.852813853,1324498.2681994687,896.88765,407.5793795519274,923480.8122634208,411888.3728071299,1403.54392,601.9063063885557,1433303.6367818976,597515.5599703068,0.38031,100000,0,1100350,11505.845201497375,0,0.0,0,0.0,41676,435.1695003868917,0,0.0,42386,440.47096221009264,1108178,0,39761,0,0,9659,0,0,78,0.8051529790660226,0,0.0,0,0.0,0,0.0,0.04961,0.1304462149299255,0.2896593428744204,0.01437,0.3598448108632395,0.6401551891367604,23.032494893724355,4.01500217531244,0.3144813593710373,0.2764392594471215,0.2082170935835658,0.2008622875982754,11.511364161636717,6.3012906293719215,15.244111877737572,11569.36983139243,45.284422710423605,13.407656748945165,14.066711641196646,9.173933951697554,8.636120368584239,0.590667004818666,0.810091743119266,0.7040322580645161,0.5919610231425091,0.1098484848484848,0.7671913835956918,0.9063136456211812,0.8895348837209303,0.7688442211055276,0.1271676300578034,0.5127923976608187,0.7312186978297162,0.6328125,0.5353697749196141,0.1050080775444265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0044292186533959,0.0069199939120288,0.0089080751650584,0.0108829422593801,0.0129134756395633,0.0151221601337847,0.0173351982113505,0.0194861623710549,0.0213794233289646,0.0235093801606269,0.0258059213905611,0.0281595950450635,0.0300262845951656,0.0320432061793923,0.0340464712089549,0.0360511640441984,0.0381483558712947,0.0399100852317074,0.0420403821284051,0.0567668701396437,0.0707122572802816,0.0841597680379879,0.0974324936523488,0.1098610891036814,0.1253984897107573,0.1367466870702755,0.1482132958082811,0.1588269920265425,0.1677898515676222,0.1798993781309379,0.1913670625237243,0.2022783016296942,0.2117447088496545,0.2208795453291397,0.2306222646790927,0.2391328677589757,0.247286226896256,0.2547658339498093,0.2611172363101801,0.2666496525642959,0.2732112286297226,0.2784748576850095,0.2830492196878751,0.2871852851429057,0.291705199817507,0.2949487105622425,0.2982302123490718,0.3013363057820175,0.304452895967039,0.3015101100588687,0.2987272101823185,0.2947683992737406,0.2917701056520986,0.2895455084846327,0.2858736854976766,0.2817323779159695,0.2817445380901726,0.2827268711989943,0.283208465007279,0.2843680606094534,0.2855598151970903,0.2863216689939767,0.2867787712976556,0.2887204380783854,0.291436857505373,0.2928367410423913,0.2986668331824284,0.3027724498692241,0.3061361306096695,0.3086781894489823,0.3132949807357365,0.3179835493519442,0.3217717717717718,0.3264489719973951,0.3364353869713747,0.3333839611178615,0.3341375150784077,0.3395918367346939,0.3497350492051476,0.0,2.023670413933752,52.71993347474425,146.38410873772577,196.2171813305994,fqhc3_80Compliance_implementation,12 -100000,95672,47472,453.36148507400287,5052,51.50932352203362,4030,41.41232544527134,1530,15.511330378794217,77.28391542799022,79.68131744690001,63.28504443165552,65.05949165419311,77.08414023312388,79.48881126312209,63.207620396286416,64.98858316830132,0.1997751948663477,192.5061837779225,0.0774240353691055,70.90848589179188,241.1717,168.98502227017843,252081.80031775232,176629.54915772474,482.56034,320.792192693101,503687.56794046325,334601.3699860995,463.23219,226.55537819298576,479998.3171669872,233600.3597453204,2804.4319,1322.5083352872516,2880911.781921565,1331949.1128932724,933.49316,429.3949680841421,950798.7603478552,423900.8335361805,1482.64618,642.0802737141014,1503259.1144744544,629087.2733696133,0.37841,100000,0,1096235,11458.263650806924,0,0.0,0,0.0,41620,434.28589346935365,0,0.0,41974,434.5681077013128,1115943,0,40072,0,0,9563,0,0,68,0.700309390417259,0,0.0,2,0.0209047579229032,0,0.0,0.05052,0.1335059855712058,0.3028503562945368,0.0153,0.3570748428870691,0.6429251571129309,23.37036285054906,3.9336395782678055,0.3193548387096774,0.2816377171215881,0.1967741935483871,0.2022332506203474,11.168164101203354,6.22991711708345,16.416735641847808,11540.382240371457,46.455349635587694,13.951227108650397,14.690193047742824,8.849016132734002,8.964913346460474,0.5863523573200993,0.8044052863436123,0.6884226884226884,0.5838587641866331,0.1239263803680981,0.7585365853658537,0.918200408997955,0.8567567567567568,0.7419354838709677,0.1567567567567567,0.5107142857142857,0.718266253869969,0.6205016357688113,0.5354200988467874,0.1142857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024624551589955,0.0047671210645894,0.0070763576555631,0.0090954360219916,0.0114974105389538,0.0135991361747208,0.0158702636544443,0.0179760591575765,0.0200971618511889,0.0219938945686246,0.0239653651230071,0.0261086679544613,0.0284726438295551,0.0304029681541791,0.0323203336292503,0.0343347639484978,0.0361739166476695,0.0381377484818601,0.040007073533542,0.0419611031205052,0.0569769021029428,0.0714001507790249,0.0839998320633121,0.0966017322851219,0.1091876372234419,0.1247207783271048,0.136627690869893,0.1475484922401763,0.1570832887843472,0.1670316693505099,0.1786299538574324,0.1905257227061934,0.2018513476722025,0.2110093752738105,0.2196417745935519,0.2288794156175758,0.2373902834460781,0.2461874866153447,0.2533018117342183,0.2600580481593227,0.2653032832498608,0.2711713401481759,0.2763168819461742,0.2801334998079139,0.2848276113862892,0.2890174836823078,0.2931516115697303,0.2964113005853906,0.3003574759092322,0.3032297202843314,0.3009422533315385,0.2984631457399719,0.295347790622451,0.292789480513863,0.2896874303957235,0.2863897900471323,0.2833826250612851,0.2828853618986782,0.2830478400327578,0.2842904772942036,0.2853103112476122,0.2864742993888812,0.2875440954140769,0.2891323341622421,0.289254602929466,0.2909854233487183,0.2914845302299176,0.2957163031539306,0.2986033519553072,0.3031353395304868,0.3072575175220439,0.3105116474733133,0.3176776751967284,0.3221586263286999,0.3299660207548902,0.3361637780621146,0.3423586040914561,0.3487118034751348,0.3596924766611751,0.3668683812405446,0.0,2.798855298199221,53.0240727888047,149.40178203613303,203.6390043678796,fqhc3_80Compliance_implementation,13 -100000,95660,47972,457.8925360652311,4942,50.54359188793645,3915,40.36169767928079,1469,14.980137988710014,77.35161970545354,79.75669071068957,63.31721993396855,65.09395208919216,77.16766634225384,79.57609086947453,63.24873516278676,65.02885676547811,0.1839533631997056,180.5998412150416,0.0684847711817937,65.09532371404703,242.65538,169.9215329552481,253664.41563872047,177630.70557730304,484.43581,322.5072647909903,505889.8285594815,336614.744711468,471.15693,229.75417031777803,489336.26385113946,237670.8581613931,2732.29898,1274.532885098448,2819880.7861175,1295977.2790073687,901.01458,414.0863934076632,924003.8051432156,414984.16622168303,1424.97888,598.3603146802444,1455090.2989755385,597012.7325342817,0.38201,100000,0,1102979,11530.200710850932,0,0.0,0,0.0,41710,435.4484633075476,0,0.0,42593,442.0029270332428,1109516,0,39778,0,0,9620,0,0,86,0.8885636629730295,0,0.0,2,0.0209073803052477,0,0.0,0.04942,0.129368341142902,0.2972480777013355,0.01469,0.3471492508270091,0.6528507491729909,23.24877500738423,4.076759632461032,0.3098339719029374,0.2893997445721584,0.2007662835249042,0.2,11.775807688975616,6.486651409171162,15.56861950168724,11592.46049954792,44.84671187202754,13.968742380565152,13.798658185078477,8.604280532532917,8.475030773850994,0.5959131545338442,0.8005295675198588,0.7114591920857378,0.5916030534351145,0.1251596424010217,0.7865646258503401,0.9454926624737946,0.8583815028901735,0.7736842105263158,0.1840490797546012,0.5140562248995983,0.6951219512195121,0.6528258362168397,0.5335570469798657,0.1096774193548387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721127445517,0.0046037621051564,0.0069620638561308,0.0091339510688449,0.0113926497065375,0.013515991036871,0.0157854484270636,0.0179309922292226,0.0204192229038854,0.0224521151285465,0.0244372858403266,0.02664570359866,0.0286702204293329,0.0305985690426606,0.0327122110438572,0.0348034803480348,0.0366896408768202,0.0387210630125609,0.040605493133583,0.0427075947783292,0.0573846716472493,0.0720223636820504,0.0851919100746229,0.0983796296296296,0.110503709488481,0.1259472503280979,0.1369828107912981,0.1490205273591542,0.159418894487414,0.1685636972768662,0.1810702694542984,0.1922510344229977,0.2027666822668945,0.2128309237958696,0.2217218484711685,0.230381290179561,0.2385245260676743,0.2466823497630652,0.2541197566733248,0.2609332783807299,0.2665517919302425,0.2717129705353179,0.2774908098013026,0.2817290776577029,0.2860607824589488,0.2902936147705327,0.2952710208055115,0.2985943724151929,0.3017521676300578,0.3048015878231838,0.3020253130578335,0.2989637021603246,0.2965837637547721,0.2938907122703978,0.2909898571111275,0.2876384270417035,0.2837735611170648,0.2839066178393931,0.2846447046011435,0.2842561968775561,0.2854742972337328,0.2856131658113608,0.2862087660035864,0.2865959241664076,0.2872188333968738,0.2872035713364126,0.2887395527445222,0.2938976500654491,0.2967185761957731,0.2998781302826591,0.3043987741121327,0.3100783289817232,0.3171986365044933,0.3196696696696696,0.3222160459514545,0.3238241188258871,0.3248630553864881,0.3294141092068553,0.335568669527897,0.3322197475872309,0.0,2.2339555792829477,51.07024230761392,145.14195778081492,198.06538446540523,fqhc3_80Compliance_implementation,14 -100000,95781,48173,458.5147367431954,4935,50.1978471721949,3924,40.289827836418496,1468,14.877689729695868,77.3507064425629,79.67840619187113,63.34838135415546,65.06967685367293,77.16092979388422,79.49508497299958,63.27540875796812,65.0017679760253,0.1897766486786736,183.32121887155492,0.0729725961873342,67.90887764762488,242.36014,169.83815800262724,253035.7168958353,177319.2574755194,485.13707,322.87731300685,505857.39342875936,336450.3534175358,467.05569,228.4651108672359,483504.3693425627,235302.967113192,2757.46187,1301.762827936188,2833852.162746265,1314031.9039644485,899.20811,414.0329118029944,923270.51294098,416724.12253264646,1430.45944,619.2999098864137,1452313.2145206253,611860.6471877936,0.3846,100000,0,1101637,11501.62349526524,0,0.0,0,0.0,41600,433.63506332153554,0,0.0,42377,438.31240016287154,1113604,0,39965,0,0,9574,0,0,81,0.8352387216671364,0,0.0,0,0.0,0,0.0,0.04935,0.1283151326053042,0.297467071935157,0.01468,0.3527463965718738,0.6472536034281262,23.26800716298554,4.041251065587828,0.3109072375127421,0.2808358817533129,0.2020897043832823,0.2061671763506626,11.303383678326403,6.232822985823621,15.71660260547788,11608.389664529786,45.32446235818137,13.648824671301451,14.059727395553256,8.844462979426304,8.771447311900367,0.5833333333333334,0.8030852994555354,0.7073770491803278,0.5687263556116016,0.111248454882571,0.7447665056360708,0.9135802469135802,0.8626373626373627,0.698019801980198,0.1368421052631579,0.5085756897837435,0.7159090909090909,0.6413551401869159,0.5245346869712352,0.1033925686591276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892103237308,0.0043491484184914,0.0063827412300729,0.0087863643751015,0.011041971693509,0.0132244698504484,0.0155925155925155,0.0177465277423436,0.0199065984037932,0.0222881702824396,0.0244379777445334,0.0264834747632289,0.0287138379322748,0.0308205429109663,0.0331312256388046,0.0353099173553719,0.0375497956438512,0.0394766851195289,0.0416017612727688,0.0436611214058173,0.0579310920511696,0.0714240903387703,0.0847956894563599,0.0976647889692281,0.1104377246329458,0.1260835553300351,0.1383771860053238,0.1487685987356052,0.1592355327781336,0.169187398840213,0.1814883791028387,0.1928053354663668,0.2038186105647501,0.2126546042568069,0.221323011963406,0.2304126562672862,0.2384773112240349,0.2457056834394976,0.2534424334462867,0.260066134993192,0.2664495339731818,0.2729767284361462,0.2782218018444076,0.2831184687758107,0.2873501868115872,0.2904250212325985,0.294538775816185,0.2989885898706513,0.3019761005638611,0.3050793901572004,0.3017145312227279,0.2982634360628732,0.2953494582097733,0.2924739248979356,0.290227414237851,0.2868910080078244,0.2834186575654152,0.283275387037523,0.2831565665177505,0.2844928930212675,0.2855271774721676,0.2860355473142248,0.2869670775863873,0.2880574638054107,0.2891884113584037,0.2913543618571726,0.2937323803286157,0.2999905633669906,0.3053226202589383,0.3093422871815129,0.3128067624068351,0.3182906710659358,0.3217999621856683,0.3256719609040928,0.3297742811651213,0.3326629598958949,0.3332309582309582,0.3353820938332309,0.3327800829875518,0.3419329996149403,0.0,2.676091460642609,53.55929093894066,144.45343953260254,192.6418027015004,fqhc3_80Compliance_implementation,15 -100000,95726,47787,455.7278064475691,5028,51.27133694085202,3965,40.7308359275432,1480,14.969809665085766,77.31652017658898,79.67688493704756,63.31665033110207,65.06205925159755,77.12904832429716,79.49775675459685,63.24474897669705,64.99681001628642,0.1874718522918215,179.12818245071094,0.0719013544050142,65.24923531112847,242.60192,169.9403570229164,253433.67528153272,177527.89944520444,485.07149,322.036671294909,506005.9336021562,335693.5314442989,463.76157,226.14478798967076,480441.5728224307,233109.27788592968,2765.42148,1292.356077414979,2839295.7294778847,1300592.961242937,925.88733,417.4866361436861,948656.1644694232,417617.3581193721,1435.34556,613.7791757961995,1453064.7055136536,601291.7130207968,0.38128,100000,0,1102736,11519.71251279694,0,0.0,0,0.0,41731,435.2004680024236,0,0.0,42001,434.8243946263293,1111034,0,39940,0,0,9687,0,0,79,0.8148256482042496,0,0.0,0,0.0,0,0.0,0.05028,0.1318715904322283,0.294351630867144,0.0148,0.3598398169336384,0.6401601830663616,23.40188312907788,4.100196303236486,0.3039092055485498,0.2862547288776797,0.2118537200504413,0.1979823455233291,11.35204029308094,6.077755361315962,15.836178611090352,11539.939023774126,45.53394374525895,13.958660011582664,13.812375721756151,9.255039090518846,8.50786892140128,0.5916771752837326,0.8105726872246696,0.7095435684647303,0.5630952380952381,0.1248407643312101,0.7662771285475793,0.9256198347107438,0.8774928774928775,0.69,0.147239263803681,0.5160823997108782,0.7250384024577573,0.6405152224824356,0.5234375,0.1189710610932476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024209641312385,0.004795166310155,0.0070844963207307,0.0092362091915014,0.0113016764322916,0.013280915812845,0.0155528132744536,0.0177077908152323,0.0198361979938855,0.0217765218993795,0.0238805664072513,0.025968025136309,0.0280320013162495,0.0302846198204135,0.0322963299156231,0.0345508084930516,0.0366241214040971,0.0387755313741558,0.0407501351407542,0.0426855315114449,0.0573961346099631,0.0713388727265116,0.0847089669638175,0.0965635449746577,0.1088299801763043,0.1237056701957756,0.135197640618701,0.1446911792884668,0.1556089743589743,0.1655276737724088,0.1779635454819666,0.1901108177135189,0.2008678063421636,0.2099174457383412,0.219018681814679,0.2287801201480792,0.2380378100119482,0.2460196905766526,0.2536969573161735,0.2605299029771246,0.2664784625886545,0.2714312445910228,0.2769736919963549,0.2813638979474391,0.2852734650241757,0.2895661500906165,0.2933748811132802,0.2973234276409526,0.3010763817015111,0.3040204649445521,0.3017608996865625,0.2981628018991261,0.2950565409886918,0.2920094261880322,0.2897555902236089,0.2869542587716612,0.2831802444152846,0.2832220052190182,0.2837452390305556,0.2845407953713459,0.2858079011421082,0.2872951062193029,0.2879998326919859,0.2886821082697371,0.2895651132143285,0.2907238939429282,0.2921759351161274,0.2972542901716068,0.3031874173568098,0.3070051160960252,0.3108541487872081,0.3148724988121007,0.3187925754640335,0.3242735941136722,0.3237723939478325,0.3305034783634005,0.3359173126614987,0.3403445512820512,0.3463427947598253,0.3575503993914036,0.0,2.5610677869351672,51.82905110620906,147.39451848729308,199.76462202887635,fqhc3_80Compliance_implementation,16 -100000,95688,47608,453.8709138031937,4990,51.14538918150656,3934,40.63205417607223,1506,15.477384834043976,77.40264542862671,79.78460991931938,63.35728834693722,65.11266561874584,77.21271946586279,79.59310243255455,63.28667539694194,65.0428844894412,0.1899259627639224,191.5074867648343,0.0706129499952794,69.78112930462999,241.83258,169.37885611709967,252730.31101078505,177011.59614277616,484.4269,321.81479944760434,505787.95669258427,335848.0472448001,462.17124,225.0198268447257,479523.3467101413,232461.35289794195,2744.8648,1284.8623199883264,2836662.5282167043,1310867.778601627,897.38594,411.57120497063033,925821.6913301564,418115.46906058834,1456.5543,617.319039874787,1497429.7926594766,625501.0919610179,0.38125,100000,0,1099239,11487.741409581138,0,0.0,0,0.0,41629,434.5581473120976,0,0.0,41904,434.4118384750439,1119599,0,40143,0,0,9520,0,0,87,0.909204915976925,0,0.0,0,0.0,0,0.0,0.0499,0.1308852459016393,0.3018036072144288,0.01506,0.3573770491803278,0.6426229508196721,23.406106434493815,4.070971477395318,0.3124046771733604,0.2793594306049822,0.2099644128113879,0.1982714794102694,11.415897136709743,6.168968911385646,16.093988619346504,11540.499702672842,45.107904631988,13.561200098522644,13.868631673879468,9.211230895924857,8.466841963661036,0.5940518556176919,0.8298453139217471,0.7013832384052074,0.5847457627118644,0.1025641025641025,0.7690376569037657,0.9414316702819956,0.8436578171091446,0.751131221719457,0.1896551724137931,0.5177071924059876,0.7492163009404389,0.647191011235955,0.5239669421487604,0.0775577557755775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020252959463701,0.0044797145955587,0.0067965104483668,0.0091201771223708,0.0113279303647512,0.0132272977211168,0.0158226880218581,0.018105551076229,0.0200194164835726,0.022401653772156,0.0245187478218085,0.0267431833114323,0.0291483739628422,0.0308963017126849,0.0328824506556886,0.0347069341519126,0.036675398904501,0.0387888095633405,0.0408407346548245,0.0428760513178601,0.0575177327190865,0.0714816715005182,0.0852177927951561,0.0974239762698671,0.1095384745190685,0.1249814865751221,0.1362903225806451,0.1467501224159587,0.1565331680629167,0.1658660032598438,0.1790978884689515,0.1902618480848301,0.2017331173279114,0.2111960121995212,0.2206849525988166,0.2300293320050916,0.2382698437465171,0.2457462460270218,0.2528990759195506,0.2594264684031865,0.2653101267283765,0.2709203312726,0.2769063720803975,0.2810568473907586,0.2859687386404944,0.289388909381532,0.2931450051827707,0.2965316892474755,0.3000787167873227,0.3030665492448638,0.3004842192802436,0.2974890754921165,0.2953551606211806,0.2922566085469102,0.2891438032166509,0.2863957812595257,0.2821192052980132,0.2817827808501587,0.2825052674505539,0.2834463898852861,0.2846596946479503,0.2849637326014507,0.2866542133665421,0.2867025876405242,0.2880368610786162,0.2898340624919102,0.2915333880601239,0.2952980400710435,0.2978137313016493,0.3002993540255239,0.3050525172039116,0.3088079610417107,0.3145933763225443,0.3201810637495285,0.3221113494357922,0.3266969379438817,0.3314155942467827,0.3347255369928401,0.336463643681245,0.3398813936249073,0.0,1.8607001228779445,52.3073988520661,141.38696556222507,203.35886825427045,fqhc3_80Compliance_implementation,17 -100000,95736,47819,455.58619537060247,4925,50.28411464861703,3920,40.45500125344698,1466,14.936909835380629,77.33907921770925,79.7054869446832,63.32552877917672,65.07524685625877,77.15232222215477,79.52325377851069,63.25437426907936,65.008528504527,0.1867569955544894,182.23316617250876,0.0711545100973509,66.71835173176532,243.54462,170.517636016498,254391.89019804465,178112.34646997784,487.36793,323.9770153031609,508571.93741121417,337903.7303659657,466.61282,226.8488316523252,484992.3748642099,235050.59077679197,2755.90871,1283.2479019397206,2843190.241915267,1304938.3742163037,899.51083,406.1473447837223,928880.5360574914,413547.2003394099,1426.83436,607.5956863907289,1455482.911339517,603634.864680383,0.3818,100000,0,1107021,11563.267736274754,0,0.0,0,0.0,41908,437.2231971254282,0,0.0,42277,439.1451491601905,1105854,0,39706,0,0,9664,0,0,85,0.8878582769282193,0,0.0,0,0.0,0,0.0,0.04925,0.1289942378208486,0.2976649746192893,0.01466,0.3548763869963013,0.6451236130036987,23.313046152880528,3.950341583399904,0.3035714285714285,0.2834183673469387,0.2127551020408163,0.2002551020408163,10.88061831590733,5.851323879365991,15.566536570384734,11581.14026523325,44.89118567899357,13.66591468103836,13.390443479688784,9.317409746228948,8.517417772037474,0.5936224489795918,0.8343834383438344,0.7151260504201681,0.5599520383693045,0.1044585987261146,0.7536988685813751,0.9216101694915254,0.8782894736842105,0.72,0.1156069364161849,0.5272464814146518,0.7699530516431925,0.6591422121896162,0.5094637223974764,0.1013071895424836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509803921568,0.0048059374619783,0.0071658394486566,0.0091854982929604,0.011352654547674,0.0135453054822841,0.0157038698822209,0.0179685346455808,0.0198572567946174,0.0221327761732112,0.0244700380485503,0.026611751897538,0.0286014007590015,0.0308974583517921,0.0328244511194376,0.035034745201853,0.0370450943220312,0.0391975757072583,0.0409617004461175,0.0429971974203765,0.0574495410928151,0.0716639984932667,0.0848038753106225,0.0978515768773726,0.1106646841089563,0.126359213031521,0.1382661559844249,0.1494963906220054,0.1597024814585248,0.1689843129680894,0.1802762871489838,0.191768807657326,0.202926457789382,0.2123310903222277,0.2211677144461448,0.2310966754980102,0.2396042699539952,0.2475071465550228,0.254746853400824,0.2610369521627041,0.2664089983336419,0.2720988982713854,0.2780208087018208,0.28204084564369,0.2863432383262583,0.290121483375959,0.2938217673489765,0.2977886603823854,0.3011255098353038,0.3046717653718062,0.3015529992886001,0.2984693527352598,0.2956086308267927,0.292429818864112,0.2894791481283739,0.2854392666157372,0.2822236954257032,0.2817812571653182,0.2822371563075663,0.2828742087902291,0.2835329956828079,0.2848225889024534,0.2859464527554953,0.2864997217584863,0.2877373134328358,0.2889434889434889,0.2893573614416865,0.2928522293790257,0.2969295184926727,0.3019627976778168,0.3046216583597644,0.3053863672474974,0.3088142839180183,0.3110723229870228,0.312627669452182,0.312889935256033,0.3195103289977046,0.3186591276252019,0.324882887847892,0.3338408831366578,0.0,1.862399171339465,50.22810841721808,147.450298986063,200.98473666775416,fqhc3_80Compliance_implementation,18 -100000,95687,47528,452.0676789950568,4935,50.43527333911608,3930,40.49661918546929,1457,14.87140363894782,77.30793472821749,79.68305863330431,63.31631099018998,65.06991409785087,77.12123485528711,79.49850847558879,63.24597988892791,65.00226801093446,0.1866998729303759,184.5501577155204,0.0703311012620773,67.64608691641172,240.91958,168.7877145655446,251778.79962795365,176395.6593534593,482.84255,321.4180942506776,504042.16873765504,335341.66004857246,462.4529,225.7666324387625,478863.3043151107,232577.3213427982,2740.72913,1272.034096936051,2829876.482698799,1294981.4258321936,900.64818,405.0622475501178,929258.5095153992,411346.8998035423,1413.68134,600.6528834416539,1445595.2010199924,602473.719458749,0.37967,100000,0,1095089,11444.49089217971,0,0.0,0,0.0,41489,432.9950777012551,0,0.0,41802,432.4620899390722,1119723,0,40189,0,0,9655,0,0,91,0.9510173795813434,0,0.0,0,0.0,0,0.0,0.04935,0.1299812995496088,0.2952380952380952,0.01457,0.3533747090768037,0.6466252909231963,23.517641437523203,3.9600224646255895,0.3094147582697201,0.2885496183206107,0.2020356234096692,0.2,11.35224756218299,6.36045903115027,15.635556211541177,11526.475149512917,45.08375367014971,13.883095290194351,13.821831845494932,8.822317087850932,8.5565094466095,0.5862595419847328,0.7962962962962963,0.7006578947368421,0.575566750629723,0.1170483460559796,0.7593220338983051,0.908119658119658,0.8789625360230547,0.7435897435897436,0.1235294117647058,0.512,0.7177177177177178,0.6294591484464902,0.5208681135225376,0.1152597402597402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.0043472092740464,0.0066139847229125,0.0088465913707646,0.0109734765275404,0.0131664697975642,0.0152440578764364,0.017590607452782,0.0199145351571285,0.0223152593381171,0.0247265420771525,0.0267664633770714,0.0288787872554867,0.0309164709275971,0.0331455224650692,0.0352631034839243,0.0374457326992218,0.039576001079723,0.0418387408848342,0.043783293546134,0.0577851129170409,0.0711960560608756,0.0845389594720773,0.0971561987295444,0.1097886247430288,0.1248440242793393,0.1363101110722128,0.1470297082397522,0.157185740687327,0.1665844345289171,0.1785122009002606,0.1903901695025257,0.2015654726314072,0.2106569295186452,0.2189187702799318,0.2283173295234298,0.2363579565105822,0.2440772155601052,0.2519941452123495,0.2581779447473313,0.2639663834417614,0.2685285896401296,0.2744937929728642,0.2792161847770036,0.2838315927686528,0.2893266396121918,0.2932827219883744,0.2969261538069578,0.3003241280954233,0.3033212281280951,0.3007164404223227,0.2976965758422712,0.2957456702788777,0.2919600387468012,0.2895746009096584,0.2856596207123505,0.2828471485778502,0.2826990358239845,0.283180093652801,0.2832521543649307,0.2842191975736244,0.2852685624012638,0.2863087023794589,0.2873442827535489,0.2889208633093525,0.2911221036188492,0.2910625959406447,0.2950084655421082,0.3006070388434682,0.3043976451064838,0.3099563953488372,0.3150851581508516,0.3190207156308851,0.3243591688154102,0.3297812675266405,0.3332549111869192,0.3356328734253149,0.3340624378604096,0.3291342803537925,0.3447251114413076,0.0,2.202112988983945,51.35831034970317,143.88911984002857,202.08790282637187,fqhc3_80Compliance_implementation,19 -100000,95705,47269,450.3839924768821,4899,49.91379760723056,3870,39.84117862180659,1542,15.75675252076694,77.38171245272493,79.75614528565028,63.34258245905804,65.09530218724088,77.189127315303,79.5651488883405,63.27066846809193,65.02603822321407,0.1925851374219291,190.99639730977455,0.0719139909661166,69.26396402680268,241.10306,168.83531620811604,251923.15970952407,176412.22110455675,481.35478,320.55058317377075,502358.3720808735,334337.68682281044,458.0904,223.49400757429612,474440.49945143936,230305.6460494648,2750.00923,1284.801470951023,2833315.918708532,1302353.3158675334,906.453,414.0499739856367,931426.9264928688,416933.8134820802,1489.7611,624.1193970933242,1522883.1931456036,624291.4694989378,0.37816,100000,0,1095923,11451.052714069276,0,0.0,0,0.0,41426,432.22402173345176,0,0.0,41521,429.70586698709576,1122299,0,40198,0,0,9438,0,0,70,0.7209654667990179,0,0.0,0,0.0,0,0.0,0.04899,0.1295483393272689,0.314758113900796,0.01542,0.3460038986354776,0.6539961013645225,23.67624007316655,4.081121491933603,0.313953488372093,0.2695090439276486,0.2121447028423772,0.2043927648578811,11.817619978873855,6.626917213085223,16.206607634784792,11535.152845678507,44.15008804461485,12.70925063596742,13.717131674903966,9.226430449701256,8.497275284042203,0.5837209302325581,0.8072866730584851,0.6905349794238683,0.5773447015834349,0.1314791403286978,0.7606112054329371,0.9245283018867924,0.8635097493036211,0.7288888888888889,0.1764705882352941,0.5063150074294205,0.7269789983844911,0.6179906542056075,0.5201342281879194,0.1191626409017713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0044703950369491,0.0065551812314811,0.0088881214066594,0.0110767540736822,0.0131873727087576,0.0153657914861075,0.0174976520070235,0.0197192889197836,0.0221312314464121,0.0241944578288549,0.0262625640393835,0.0284447918059254,0.0309026669001534,0.0328163214761152,0.034749074667604,0.036558716612985,0.038662682106836,0.0407159348545042,0.0426228141478563,0.0575328445809052,0.0716177594455669,0.0847969782813975,0.0978203698638783,0.1096497241881216,0.1254269550044942,0.1363853376478701,0.1482802303671609,0.1575338076011023,0.1670081197910521,0.1798347214291101,0.190929263408562,0.200826536160957,0.2108766943594228,0.2188335184716738,0.2289819457819989,0.2376120601222068,0.2463937577999393,0.2530897793500691,0.2597628530879458,0.2661462850534836,0.2715227145260796,0.2765298035179862,0.2809591682736648,0.284973715839697,0.2896146599179813,0.2928508936382952,0.295978436383517,0.2998848835254097,0.3029336986734465,0.2999153578482084,0.2976677184799012,0.2946340778199185,0.2922824538429437,0.2910206193186017,0.2875594005117582,0.28316869121331,0.282729691350972,0.2832903488529931,0.2843711193897463,0.2846100836266786,0.2854083156488249,0.2856727453994101,0.2863515312916111,0.2881404446140635,0.2890367161716171,0.290004229522064,0.2952342487883683,0.2985234992374879,0.3004123306499116,0.3046906682287207,0.3071451153967752,0.3071850270066574,0.312386018237082,0.3178504672897196,0.3234981706597427,0.3239586500456066,0.3275619085967384,0.3299450549450549,0.3251627728839525,0.0,2.225902310659193,51.27964863962824,135.3972139117209,200.94467964045828,fqhc3_80Compliance_implementation,20 -100000,95843,48245,458.3120311342508,5078,51.63653057604624,4026,41.2445353338272,1515,15.316715879093934,77.44506122741345,79.72350664550457,63.40474875222951,65.0844508896031,77.24502311176691,79.53076365007183,63.328164280364014,65.01380557035338,0.2000381156465351,192.742995432738,0.0765844718654946,70.64531924972073,242.5709,169.95099264647814,253091.93159646503,177322.27981853465,485.31236,322.8608196244291,505632.59705977485,336135.0433776374,469.63653,229.6921363639624,485926.59870830417,236428.8554975917,2816.87078,1323.9766294195474,2884718.2892856025,1327332.910906691,931.6087,427.4666531365765,952393.1116513464,426497.4323470839,1477.8924,642.3628689127437,1495564.5169704622,630254.1831394973,0.38383,100000,0,1102595,11504.178708930229,0,0.0,0,0.0,41764,434.9717767599094,0,0.0,42354,437.7993176340473,1113513,0,39999,0,0,9636,0,0,79,0.8138309527039012,0,0.0,1,0.0104337301628705,0,0.0,0.05078,0.1322981528280749,0.2983458054352107,0.01515,0.3565348969169661,0.6434651030830338,23.20945685804397,4.055271584730641,0.3204172876304024,0.2737208147044213,0.1994535519125683,0.206408345752608,11.420909213487464,6.1875452181264965,16.23444575780542,11670.28581460412,46.03596887078948,13.51640607922845,14.616792889976804,8.728009297706581,9.17476060387763,0.5814704421261798,0.8121597096188747,0.6930232558139535,0.5591531755915318,0.1239470517448856,0.759504132231405,0.934322033898305,0.8649425287356322,0.7577319587628866,0.1530612244897959,0.5049715909090909,0.7206349206349206,0.6295116772823779,0.4958949096880131,0.1149606299212598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021761574120933,0.0044165763429532,0.0069456414832239,0.0094291746173521,0.0118275855061271,0.0138873345474153,0.0164385235883647,0.0187014999949014,0.0208109957213899,0.0228118609406952,0.0250870366577923,0.027189185862854,0.0293132844436227,0.0314248683344305,0.0334641815802759,0.035508211273857,0.0375100833557407,0.0395539942591268,0.0419015583309973,0.0440148172812786,0.0592387904066736,0.0733636316146894,0.0872661019256342,0.0999160457550634,0.1117938573878641,0.1274540848638378,0.1385291470323502,0.1495176165582897,0.1595853596109546,0.1688589684586816,0.180438521066208,0.1921074799663045,0.2026121793131901,0.2112751414033325,0.2209150326797385,0.2299564053198787,0.2394466676327317,0.2477161125032305,0.2551182352007617,0.2616903696754041,0.2683138324931786,0.2748912687649067,0.2804826117814052,0.2846577309717568,0.288797495996506,0.2930266331905676,0.2964288395605495,0.3001233453287725,0.3023981156738148,0.3055354153209328,0.3024688037865748,0.2995799126877351,0.297148953493269,0.2941235690041995,0.2922228628024894,0.2883502831739845,0.285318690309486,0.2848033139800378,0.2849550910912271,0.2862633956248339,0.2870253164556962,0.2879713875842553,0.2888787109131032,0.2899953384092876,0.2911238367931281,0.2917861664470454,0.2924291555054278,0.2975723622782446,0.3029410745834344,0.3067248359077152,0.3102730112735998,0.3162984885318676,0.3230547910933199,0.3252874438437523,0.3291686237670267,0.3349112426035503,0.3376682986536107,0.3438013136288998,0.3446561723280861,0.35202492211838,0.0,2.9701944181708755,51.74274489209179,148.15995432426087,204.2911919406989,fqhc3_80Compliance_implementation,21 -100000,95682,47603,454.25471875587886,5091,51.90108902405886,4066,41.87830521937251,1518,15.467904098994586,77.29747507811412,79.70039028944637,63.28577397120039,65.06566725050686,77.1009629963019,79.5079666151054,63.21067796120497,64.99483383437517,0.1965120818122159,192.42367434097216,0.0750960099954198,70.83341613169125,242.51172,169.85072115085495,253455.94782717756,177515.85580449292,484.83526,321.9172716575621,506097.4373445371,335827.179257919,467.96523,228.08091476276,485370.6862314751,235516.0852265939,2816.2363,1331.8936463419502,2898393.89853891,1347064.856861218,901.29058,418.6726607018998,925456.03143747,421058.2143996779,1471.47544,638.9050473212914,1500115.92567045,634650.8631616036,0.38073,100000,0,1102326,11520.724901235342,0,0.0,0,0.0,41722,435.4110491001442,0,0.0,42454,439.894651031542,1108503,0,39904,0,0,9545,0,0,85,0.8883593570368512,0,0.0,1,0.0104512865533747,0,0.0,0.05091,0.1337168071861949,0.2981732469063052,0.01518,0.3650733910425291,0.6349266089574709,23.12265327640492,3.980923117193967,0.3049680275454993,0.2902115100836203,0.2097884899163797,0.1950319724545007,11.034013207116988,5.9703139319240055,16.533004683357593,11572.159535436418,46.99292603364691,14.63229183149945,14.0944951111847,9.44486859998606,8.821270490976701,0.5848499754058042,0.8152542372881356,0.6774193548387096,0.567409144196952,0.116015132408575,0.7567567567567568,0.9032882011605416,0.8426966292134831,0.7733990147783252,0.1538461538461538,0.5078347578347578,0.746606334841629,0.6108597285067874,0.5030769230769231,0.1047463175122749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.004392104355588,0.0068429869536524,0.0093181587237069,0.0116068522135416,0.0136486789301065,0.0158296275141773,0.0182185821368027,0.0200456139992022,0.0222834379576246,0.0244838090939862,0.0265455815578064,0.0285182251211407,0.0305637706995867,0.0326890513360591,0.0348483594687409,0.0367230174442106,0.0386376615959711,0.0404819126689347,0.0423132640618649,0.0566826149635417,0.0712580868035927,0.0840302626470372,0.0971881804697937,0.1102941952089113,0.1263422943049692,0.1376620068146355,0.1481106756411348,0.158440086400479,0.1680963679503559,0.1801486050750035,0.1922326519109453,0.2034354304635761,0.2120133213557985,0.2213477944580384,0.2315210277004315,0.2399812252743568,0.2471783549978598,0.2543453070683661,0.2610145791307537,0.2671670836808451,0.2729008080571495,0.2776271066001871,0.2825377396980824,0.2862285790734727,0.2901641973328728,0.2939504008016032,0.2972759473027037,0.3011882523868825,0.304211055010706,0.3010965888398818,0.2983784230991975,0.2955944648404405,0.2928121606948968,0.2900109965227212,0.2855764961648575,0.2816456196361682,0.2828773963295843,0.2831096824667925,0.2831556503198294,0.2839848769858268,0.2843092989929526,0.2845777361241279,0.2842743278346396,0.2855335704227033,0.2865785867569873,0.2883990391408789,0.2934559052664381,0.297339593114241,0.3019342663940871,0.3048439473209453,0.3074700567346081,0.3109604379198806,0.3166066606660666,0.3189575217955852,0.319094304388422,0.3208232445520581,0.325809029165002,0.3296376419686317,0.3291713961407491,0.0,2.41852866588259,54.70684861807384,153.56867008070049,199.76224946290188,fqhc3_80Compliance_implementation,22 -100000,95838,47510,452.4718796302093,5036,51.57661887768944,4045,41.71622947056491,1571,16.058348463031365,77.32864418348662,79.63793833507309,63.32870225298407,65.03796179952427,77.12993259172619,79.44307919792664,63.25481506078517,64.9676623013669,0.1987115917604285,194.85913714645164,0.0738871921988959,70.29949815736813,241.8515,169.42357267999213,252354.49404202928,176781.20649428424,481.635,320.1917857060293,502057.430246875,333603.1487573086,462.48573,225.3801269998586,479493.2177215718,232721.0861265348,2841.29131,1311.821035836476,2932211.888812371,1336693.074627043,913.60478,412.7087235115754,938939.491642146,416455.7704404142,1519.65146,636.0183467056121,1555196.519126025,636803.4553147738,0.38007,100000,0,1099325,11470.65882009224,0,0.0,0,0.0,41345,430.9042342285941,0,0.0,41910,434.2849391681797,1116575,0,40111,0,0,9640,0,0,82,0.8556105094012814,0,0.0,0,0.0,0,0.0,0.05036,0.1325019075433472,0.3119539316918189,0.01571,0.3531996179560649,0.6468003820439351,23.217220842069047,3.9974540580050646,0.3129789864029666,0.2813349814585908,0.207416563658838,0.1982694684796044,11.249312858791498,6.153991407889979,16.713691602748042,11556.870259950609,46.48247807686909,13.999309897673738,14.496776323099231,9.394588159143606,8.591803696952528,0.5901112484548826,0.8005272407732865,0.7116903633491312,0.5864123957091776,0.1034912718204488,0.759567387687188,0.9018789144050104,0.8607242339832869,0.7259615384615384,0.1346153846153846,0.5184664087231797,0.7268588770864947,0.6527012127894156,0.5404120443740095,0.0959752321981424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0046121720796334,0.0067569624105919,0.0090707784820412,0.0113992271710392,0.0137650173080838,0.0160024462338191,0.0181452641676957,0.0202342265007051,0.0225119210854839,0.0246009139531547,0.0267025163170641,0.0287029710092799,0.030522642344633,0.0326579015210105,0.0342861274960486,0.0363835797882798,0.0384643297771971,0.0404973098734913,0.0425157677816864,0.0573732021985586,0.0710701292184167,0.0842556491845889,0.0971785845636526,0.1095113621990809,0.1256262816311862,0.137031617787391,0.1487636719581223,0.1589659259575649,0.1692929422862533,0.1812132566703275,0.1928989473911961,0.2027769019168669,0.211406461767149,0.2200257417246955,0.2287891542244473,0.2373961775475573,0.2448754460416268,0.2528153664517301,0.2601373427952354,0.265543335921475,0.2715571810381207,0.276056438310648,0.2806623598069118,0.2847670839568354,0.2885388657276069,0.2926178364697923,0.2960570736989617,0.2989301692277767,0.3028649205803843,0.3001603406227683,0.2988097206149777,0.2960443685525183,0.2930502657379115,0.2904809365842048,0.286410893366455,0.2833652795158965,0.2835676438261783,0.2841759103068718,0.2850206317586796,0.2860053078159458,0.2872686417124948,0.2868110318354404,0.2878700200311596,0.2878533780546238,0.2884259861997136,0.2906485029090393,0.2972516649470031,0.300752141514033,0.3064275037369208,0.3091361374943464,0.3131633137969269,0.3161820005013788,0.3188758070641853,0.317943435100206,0.3217463518804128,0.3225072089846714,0.3331325301204819,0.3325183374083129,0.3328209069946195,0.0,1.9376871736509729,52.811348171496974,148.23470113161983,210.74422583874212,fqhc3_80Compliance_implementation,23 -100000,95736,47886,456.0875741622796,4941,50.38856856354976,3918,40.24609342358151,1464,14.947355226873904,77.35098256499538,79.69760802991256,63.33757887846742,65.07022514657295,77.16560986216281,79.5157083052581,63.2675281956149,65.00412561950071,0.1853727028325664,181.8997246544569,0.0700506828525178,66.09952707223954,241.44692,169.16373621312377,252200.7604245007,176698.14512108688,483.03476,320.8435652652726,503898.5439124258,334483.49133583263,464.15954,226.26583575703955,480163.1883512994,232802.9467632779,2747.129,1275.2643708839812,2824668.442383221,1287620.7255783423,915.66635,412.6851438671312,940939.9598896968,415620.6124624765,1424.4015,604.6287262463172,1455061.6695913763,602329.277380325,0.38192,100000,0,1097486,11463.670928386397,0,0.0,0,0.0,41528,433.086822094092,0,0.0,42025,434.2149243753656,1118001,0,40115,0,0,9542,0,0,77,0.8042951449820339,0,0.0,0,0.0,0,0.0,0.04941,0.1293726434855467,0.2962962962962963,0.01464,0.3674102812803104,0.6325897187196896,23.37338349726916,4.0438590561904,0.3029606942317508,0.2784583971413987,0.2133741704951506,0.2052067381316998,11.229408327686205,6.089347955496769,15.59755338397423,11608.33020097768,44.80647896959066,13.368276261960323,13.53326075028268,9.184054466470943,8.720887490876711,0.5811638591117917,0.8120989917506874,0.6983993260320135,0.5633971291866029,0.11318407960199,0.7353982300884956,0.9061784897025172,0.8654434250764526,0.7111111111111111,0.1290322580645161,0.5186513629842181,0.7492354740061162,0.6348837209302326,0.5228658536585366,0.1084142394822006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0043279512674714,0.0066563169056243,0.0089481595839765,0.0113471139083486,0.0133359122883814,0.0158306235410444,0.0179827112866517,0.0200840155766105,0.022065521088129,0.0243044877708756,0.026288236501745,0.0283969402862312,0.0305014931520955,0.0326613984773144,0.0345946728131556,0.0368939880299045,0.0390171011124024,0.0410571514716737,0.0432037671768051,0.0575720564133078,0.0709802280573281,0.0842892192840816,0.0970319514682535,0.1094044845507542,0.1253501622638717,0.1366408246810406,0.1469558462013259,0.1573465790738663,0.1677840110697544,0.179690445160109,0.1912538146873579,0.2019881234637722,0.210894252018467,0.2198802474299425,0.2299585540459673,0.238554136144363,0.2467858227506383,0.2538524385538887,0.2604928366762177,0.2672351947420796,0.2730920875598142,0.2785313072784249,0.2836825092781037,0.2882721141248969,0.2924534104188449,0.296199590225376,0.2993128151714151,0.3035206166899477,0.3067257360600187,0.3041359910631367,0.3015285555081656,0.2983098591549296,0.2954998699384375,0.2926036425168099,0.289196794518872,0.2854951692730981,0.2858103453931184,0.286242881014903,0.2862201501832805,0.2872421838544097,0.2876022655758338,0.2875046919964966,0.2876075693224522,0.288961038961039,0.2917714137618245,0.2948094538052697,0.2985759790144275,0.3042315175097276,0.305268127631113,0.3077548806941431,0.3106320172895472,0.3136323878545545,0.3180617405087176,0.3205545733693123,0.3191264529764001,0.3236285626723874,0.3258946521913952,0.3314191960623462,0.3337138508371385,0.0,2.686920107882581,48.649841272129656,144.9336250511062,206.41832560674447,fqhc3_80Compliance_implementation,24 -100000,95836,48078,457.6046579573438,5024,51.07683960098502,4014,41.22667890980425,1576,15.99607663091114,77.51248185563044,79.79911434899611,63.42745123530996,65.11105751595315,77.30637441704803,79.59843895706436,63.3486883314641,65.03738204691493,0.2061074385824071,200.6753919317532,0.0787629038458561,73.67546903822131,244.66662,171.2817549663363,255296.9656496515,178723.58504772355,487.12437,324.09206408120014,507639.8743687133,337523.940983764,470.4892,229.92823963373556,487114.142910806,236962.1051135925,2826.26556,1330.36918546192,2902690.085145457,1341872.7052920214,957.21384,437.8643955755856,979164.374556534,437289.56923449214,1525.24366,656.1239101052149,1549530.009599733,648016.7132187239,0.38269,100000,0,1112121,11604.407529529612,0,0.0,0,0.0,41913,436.6626319963271,0,0.0,42551,440.15818690262535,1106369,0,39670,0,0,9764,0,0,84,0.8764973496389665,0,0.0,2,0.0208689845152134,0,0.0,0.05024,0.1312811936554391,0.3136942675159235,0.01576,0.3633947218530473,0.6366052781469528,23.04276531507728,4.050131437318575,0.3066766317887394,0.2787742899850523,0.2115097159940209,0.2030393622321873,11.300561516388486,6.13828306767733,16.728326751641553,11569.45513280308,45.96235324934608,13.923238940185664,14.03248089717452,9.24040778878038,8.766225623205518,0.5817140009965122,0.803395889186774,0.7002437043054427,0.5594817432273262,0.1214723926380368,0.7480314960629921,0.8923679060665362,0.8583106267029973,0.6745283018867925,0.2,0.5047376093294461,0.7286184210526315,0.6331018518518519,0.521193092621664,0.0992125984251968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021451844656264,0.0044358473177302,0.006486990543184,0.0087061521445748,0.0111034356650886,0.0129462015661547,0.0151595365600374,0.017529368575624,0.0198911500719879,0.022354023928827,0.0245046336593108,0.0264385851562419,0.0286471712459669,0.0307932979292742,0.0328048000989711,0.0348086556835201,0.0371589109986651,0.0393049320380296,0.0413238593866866,0.0432465071730484,0.0579425996996495,0.0719259723964868,0.0853592086511861,0.0977198012834651,0.109790253969591,0.124959072233547,0.1367191639994064,0.1469434194995906,0.1575796382263486,0.167121849864516,0.1789378589404401,0.19060994317568,0.2017657215459294,0.2106728994418899,0.2202177567321109,0.2306305509163505,0.2392498579276378,0.2467306309545209,0.254174502118404,0.2606906484688454,0.267141934293097,0.2732440965062501,0.2790612654047998,0.2834336342360414,0.2871718528738971,0.2905558898289475,0.2946345111235745,0.2981250079126945,0.3012006286553474,0.3039857305861214,0.3010725332404965,0.2975431588739022,0.2953391075601326,0.292353887707603,0.2896003780606669,0.2866652449427248,0.2826470773693171,0.2829091384323847,0.2837364952096215,0.2851891315929675,0.2861216198587376,0.2873509009805655,0.2868772251254398,0.2872515086971956,0.2873814560406911,0.2888540031397174,0.2902989902399235,0.2935714506793773,0.2972170430218908,0.3015669349508145,0.3063187424856392,0.3068736372131658,0.3075404171294582,0.3131388495113034,0.314393243987516,0.3153455049688005,0.3216147772977804,0.3263467189030362,0.3260986066452304,0.3364208966283808,0.0,2.528388246511129,54.96497462175606,142.193682529488,199.3822910533692,fqhc3_80Compliance_implementation,25 -100000,95734,47769,454.1855558108927,4986,50.90145611799361,4022,41.39595128167631,1514,15.438611151732928,77.31288813594676,79.67344524134387,63.318020272784125,65.06285334658459,77.12012152617146,79.48255349476763,63.24584487596534,64.99397083630718,0.1927666097753047,190.89174657624145,0.0721753968187854,68.88251027740466,241.52964,169.24869250744405,252292.43528944784,176790.57859009763,482.30201,320.93163341610745,503114.6927946184,334553.4955356587,467.53962,228.497475658092,484399.30432239326,235665.79498427492,2820.39984,1321.6389299717605,2904377.45210688,1339058.2360435447,926.80928,425.8414433147595,950092.422754716,426862.9010082657,1471.98402,625.2649842588766,1501807.8425637705,621926.6278337528,0.38207,100000,0,1097862,11467.837967702177,0,0.0,0,0.0,41474,432.57358932040864,0,0.0,42376,438.7051622203188,1116636,0,40085,0,0,9610,0,0,82,0.835648776819103,0,0.0,0,0.0,0,0.0,0.04986,0.1304996466616065,0.3036502206177296,0.01514,0.3699654775604142,0.6300345224395857,23.298002941759872,3.9361986763844823,0.2973644952759821,0.2951268025857782,0.2048731974142217,0.2026355047240179,11.25467069013104,6.209791385202306,16.239489240524076,11617.273729644196,46.37305576160453,14.611435028617011,13.602745516231945,9.156360867057812,9.002514349697762,0.5957235206364992,0.8264532434709352,0.7232441471571907,0.5546116504854369,0.1141104294478527,0.7760711398544866,0.9262948207171314,0.8746518105849582,0.7598039215686274,0.1511627906976744,0.5156193895870737,0.7532846715328467,0.6583034647550776,0.4870967741935484,0.104199066874028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177479795013,0.0047233399892559,0.0070211751336762,0.0090399382440173,0.0113912592426846,0.0139307535641547,0.0162536963393494,0.0183765352063786,0.020579876091357,0.0228750473576965,0.0251919902390009,0.0274272218514144,0.0293319071910482,0.0314775712004944,0.0336844494423753,0.0357799871845222,0.0377530416774527,0.0398642829720784,0.0419179734620024,0.0439262755394409,0.0585060291277339,0.0730339429958565,0.0865370498542335,0.0988170968929078,0.1114309514018494,0.127604662478052,0.1397631528682697,0.1500574810525419,0.1602200502056294,0.1688542873075108,0.1811682368775235,0.1922636041180032,0.2031528593172429,0.2115986089543098,0.220492623843522,0.2303918311294216,0.2400075877613872,0.2472722773390925,0.253774891578302,0.2603326612903225,0.2666242333063303,0.2719620267963616,0.2775267876150152,0.2819898399309882,0.2860855414956403,0.2898516802995959,0.2937333383396538,0.2977327348329752,0.2999042170390121,0.3032334697109674,0.3013266886659034,0.2982352374795395,0.2951574736604879,0.29307454403561,0.2912429378531073,0.2870017012276426,0.2833956761554555,0.2838699080157687,0.2843056837212481,0.2845400614680866,0.2850213499138512,0.2861716634716101,0.2870110855469567,0.2870680044593088,0.2882889368850492,0.2909653755105226,0.2923457632903831,0.2958481315020272,0.3008238387379491,0.3052535513054519,0.3084511524298768,0.3141319829086881,0.3164446657537657,0.3201148122970013,0.3210176784211018,0.3245913207103375,0.3263367550176191,0.3279580729691594,0.3300220750551876,0.3318250377073906,0.0,2.360549691176297,53.72695353303536,148.35692478106816,202.89621278193545,fqhc3_80Compliance_implementation,26 -100000,95788,47995,456.2471290767111,4907,50.14198020628889,3898,40.17204660291477,1510,15.429907712865912,77.37208356525132,79.71001671429279,63.35007434272507,65.07911404964594,77.18009259306032,79.52033167706604,63.2778100023894,65.0097447221055,0.1919909721909931,189.68503722675223,0.0722643403356713,69.36932754044278,243.12068,170.3408674025938,253811.20808452,177831.11392094396,487.89912,325.1696139308305,508846.06631310814,338961.0013058321,469.90608,229.03966357350583,487042.15559360257,236415.10947473196,2704.1662,1271.651004840739,2787148.400634735,1291844.4866198248,905.62241,411.9072512714786,933108.4687017164,417760.36628245993,1456.63642,621.4683355184707,1489563.4108656617,622833.5336638575,0.3824,100000,0,1105094,11536.873094750908,0,0.0,0,0.0,41866,436.5369357330772,0,0.0,42467,439.8254478640331,1107844,0,39789,0,0,9544,0,0,94,0.9813337787614316,0,0.0,0,0.0,0,0.0,0.04907,0.1283211297071129,0.3077236600774404,0.0151,0.3549707602339181,0.6450292397660818,23.197636417641267,3.983034752521805,0.3029758850692663,0.293227296049256,0.2095946639302206,0.194202154951257,11.338666631354352,6.412102606426468,16.19960926020637,11584.927854606904,44.94053348753755,14.054507813909364,13.365678058061686,9.23643155283558,8.283916062730919,0.5938943047716778,0.8066491688538933,0.6867061812023709,0.5899632802937577,0.1321003963011889,0.7436974789915967,0.9186295503211992,0.8385093167701864,0.7083333333333334,0.0993788819875776,0.5280649926144756,0.7292899408284024,0.629802095459837,0.5407279029462738,0.1409395973154362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0048152954057013,0.0070122384364027,0.0092949076096341,0.0115936133428251,0.0136830102622576,0.0159720311082571,0.0183480621262526,0.02068345323741,0.0228635758878313,0.0248511493016058,0.0271759767649503,0.0292131366603279,0.0314771720999196,0.0336592005939858,0.0358840304182509,0.0380088811601403,0.0402376927624005,0.0422589359933499,0.0441133599866733,0.0591991985724571,0.0731908840848001,0.086418717765944,0.0993012871027055,0.1112656174283125,0.1270810445364658,0.1380022889114954,0.1487624393978055,0.158398412495199,0.1676682627931141,0.1798280999558955,0.1910958830078146,0.2019081356558401,0.2121728864694694,0.2207706518870414,0.2301764797059409,0.2392407463169281,0.2478899515616044,0.2541481548644482,0.260419647660802,0.2672046989177689,0.2733584235255616,0.2781323122739843,0.2825033212451976,0.2853867430124223,0.2896453272293189,0.2927769020991268,0.295034055098099,0.2991740237581273,0.3022630871775957,0.3001813175743738,0.2967393242705661,0.2947832083198469,0.291495287988339,0.2891548397621272,0.2864323911382735,0.283528594435848,0.283736457958302,0.2835892186966905,0.2833843743323125,0.2844610359309379,0.2848706743828983,0.2856755742693959,0.2868664874352878,0.286404284826168,0.2865484934208819,0.287001506494983,0.2912277401555054,0.2954307273108363,0.2993272655322517,0.3007883291047481,0.305065963060686,0.3077355661084728,0.3115969437930252,0.317990457479652,0.3247210804462713,0.3218702865761689,0.3262828045436741,0.3259358288770053,0.329873980726464,0.0,2.030516874136945,51.97581105734688,143.74604262954898,198.30691153929172,fqhc3_80Compliance_implementation,27 -100000,95642,47833,455.41707617992097,5035,51.40001254678907,3983,41.00708893582318,1478,15.003868593295833,77.25911226955019,79.65468183613065,63.27736057920528,65.04545690679069,77.07034993478705,79.4709612798837,63.20584748596082,64.97852990956649,0.1887623347631404,183.7205562469535,0.0715130932444623,66.92699722420059,241.1717,168.9575994367332,252160.87074716127,176656.2801245616,483.78593,322.0911249737795,505105.98900064826,336043.4380019024,468.89833,228.65759081479453,486426.8835867088,236082.66352448583,2773.7109,1307.7867716611568,2856853.1607452794,1324471.284156601,929.41457,427.3402401573683,955792.6120323706,430974.7599903087,1438.54106,615.9163237285848,1463256.623659062,609704.7977357307,0.3809,100000,0,1096235,11461.857761234603,0,0.0,0,0.0,41606,434.3384705464127,0,0.0,42444,439.9427029965915,1111724,0,39992,0,0,9549,0,0,90,0.920097864954727,0,0.0,1,0.0104556575563037,0,0.0,0.05035,0.132186925702284,0.293545183714002,0.01478,0.3626289644631257,0.6373710355368742,23.151612093495583,4.026241232012688,0.3063017825759477,0.2894802912377605,0.2013557619884509,0.2028621641978408,11.61165795902811,6.495543480704656,15.854146254897756,11588.4572498933,46.14921060419593,14.202492075196329,13.999569639333224,9.105616455645729,8.841532434020648,0.5965352749184032,0.821335646140503,0.7,0.6034912718204489,0.1126237623762376,0.7520458265139116,0.9079229122055674,0.855191256830601,0.7476190476190476,0.1396648044692737,0.5277073524085476,0.7623906705539358,0.6334894613583139,0.5523648648648649,0.1049284578696343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024614324929347,0.0048165160871637,0.0071859204676938,0.0097341895626727,0.0119945063329772,0.0141262501782331,0.0163448008646532,0.0185081209101952,0.0205990594970353,0.0231234581802176,0.0253752460629921,0.0273539377759523,0.0295506207378912,0.0314821110321311,0.0336945304437564,0.0357131778938117,0.037707703145071,0.0398687993689083,0.0419370943584623,0.0438041427335369,0.0585604413977595,0.0724362935576107,0.0866656865627756,0.098341494234718,0.1097358777497333,0.1256699218336263,0.1366021541926026,0.1473095364944059,0.1568889554281803,0.1661941580756013,0.178165383038854,0.1903193299164562,0.2014639247124433,0.211633487087903,0.2203890775949534,0.2296971648769003,0.2379924144952506,0.24659712433042,0.2543440684133916,0.2611058139668462,0.2664640441747967,0.2730076457619963,0.2783557743638413,0.2829943747295543,0.2876625513400202,0.2913917920589035,0.2946172083746252,0.2975295107462458,0.3006303665464733,0.3032457577840038,0.2999217970498611,0.2971720876363285,0.2943926553672316,0.2921071330172126,0.290129343744412,0.2870510991455351,0.2841681588413329,0.2837402648614899,0.2849078873094883,0.2854592838527721,0.2851475514137614,0.285728369745248,0.2863053199047181,0.2860413425205601,0.2881724541739359,0.2888175439504958,0.2891982119617495,0.2927691249139926,0.2975105617820607,0.3018227728241142,0.3055907937658572,0.3107195610888373,0.3154799149042673,0.3165662650602409,0.3191371169336172,0.3207370026992137,0.3217036701404621,0.3210715713714514,0.3232211803640375,0.3338485316846986,0.0,2.4381669044125824,53.16078138032616,152.3860205550354,196.1708634186034,fqhc3_80Compliance_implementation,28 -100000,95636,47431,451.97415199297336,4891,50.07528545735916,3862,39.995399222050274,1465,15.057091471830692,77.28554750318864,79.71802795427946,63.27381344368565,65.0722093437942,77.10597534227078,79.53819203481696,63.20686605579595,65.00705082084697,0.1795721609178571,179.835919462505,0.066947387889698,65.1585229472289,241.02496,168.87343471586374,252023.2548412732,176579.35789437423,480.98878,319.40657725872205,502534.7149608934,333579.2978153855,459.87265,223.94061898133944,478689.0815174202,232477.2097483612,2729.95916,1267.907059374444,2830367.539420302,1301600.0244410515,890.02841,403.1968442458805,922331.7474591158,413285.39906089753,1420.70686,592.4469727267156,1462419.1936091012,600334.6990273495,0.37941,100000,0,1095568,11455.602492785143,0,0.0,0,0.0,41368,432.1385252415409,0,0.0,41696,433.748797523945,1119463,0,40138,0,0,9476,0,0,68,0.711029319503116,0,0.0,1,0.0104563135221046,0,0.0,0.04891,0.1289106771039245,0.2995297485176855,0.01465,0.3520906604142243,0.6479093395857757,23.58976725425873,4.047528013447527,0.3166752977731745,0.2767995857068876,0.2009321595028482,0.2055929570170896,11.823250651849868,6.5978041068813225,15.443628634236154,11553.372635235171,44.13279584674592,13.16803708883142,13.870600868262985,8.55619724014207,8.537960649509442,0.5916623511134127,0.8241347053320861,0.7007358953393296,0.5837628865979382,0.1183879093198992,0.7786324786324786,0.9380530973451328,0.8885869565217391,0.7553191489361702,0.1111111111111111,0.5104011887072808,0.7406807131280388,0.6198830409356725,0.5289115646258503,0.120253164556962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047266936473643,0.0072797790683507,0.0095543019769273,0.0118117445977292,0.0140879503712984,0.0164947822627536,0.0185415985616214,0.020445735443025,0.0227870917526089,0.0247430294823659,0.0268801183711634,0.0289343393274387,0.0308315551844636,0.0328559480417565,0.0351682906142038,0.0372749976683696,0.0391218103833252,0.0411553473848555,0.0430569607710199,0.057502743950243,0.0717818669572871,0.0852510350335203,0.0979130013379547,0.1104268556760924,0.1256354316699144,0.1376140939953884,0.1484063532672423,0.1587006066831444,0.1676890517065414,0.179857589815514,0.1914946665510363,0.2021486396670262,0.2115900750397108,0.2202700468448608,0.2297142857142857,0.2381101376720901,0.2459664698724593,0.2531126459762802,0.2605053572451727,0.2665401175980369,0.2720154494382023,0.2770122160740311,0.2818303978499784,0.286211216385507,0.289650579079147,0.2928725215301422,0.2953165378788843,0.2986471076093717,0.3017772558747081,0.2982982444339813,0.296111637617262,0.292910815298455,0.2906488522082907,0.2882195111104523,0.2849299565669542,0.2817618415227977,0.2816889865097448,0.2829770927360981,0.2834684965689332,0.283927104339383,0.2842421977935537,0.2851773745641325,0.2858954393770856,0.2871178256400449,0.2892948502622671,0.2903307529908515,0.2947083696057704,0.2996164080588865,0.3018757097544739,0.3039582113747917,0.3079873883342091,0.3130922693266832,0.3146784855769231,0.3173941247335742,0.3219983696285082,0.3274069609763447,0.3326021934197408,0.3365591397849462,0.3465530022238695,0.0,1.537362580413437,51.54109354932615,137.88099898654443,199.3252963962773,fqhc3_80Compliance_implementation,29 -100000,95815,47587,452.93534415279447,4991,50.97322966132651,3995,41.152220424776914,1497,15.269007984136096,77.35864855579545,79.66356843283249,63.35358995694328,65.05435135542002,77.17118087677777,79.48010979909652,63.2829293694864,64.98777181906239,0.1874676790176863,183.4586337359667,0.0706605874568779,66.57953635763647,243.83722,170.7329053714618,254487.2932213119,178189.96045195806,482.77048,320.888233276867,503317.4033293326,334366.70815518295,465.3492,227.209665960286,482877.3887178417,234883.6896882097,2817.03902,1312.2277405191735,2902652.5283097634,1332250.5655594554,924.32918,421.0527665738518,951365.099410322,426211.6795081466,1458.9483,617.902883841838,1489410.8229400408,615353.8098783232,0.37865,100000,0,1108351,11567.60423733236,0,0.0,0,0.0,41484,432.3957626676408,0,0.0,42160,437.1444972081616,1108013,0,39764,0,0,9589,0,0,81,0.845379116004801,0,0.0,0,0.0,0,0.0,0.04991,0.1318103789779479,0.2999398918052494,0.01497,0.3626564003849856,0.6373435996150144,23.2915371569803,4.097754757077915,0.3031289111389236,0.286107634543179,0.1982478097622027,0.2125156445556946,11.502860924549896,6.293679269059981,15.917714601196565,11473.255741676712,45.817672225514976,14.247000893450307,13.582381895034452,8.814683177461747,9.173606259568468,0.5862327909887359,0.820647419072616,0.6928158546655656,0.5921717171717171,0.1130742049469964,0.7765690376569038,0.9215686274509804,0.8660436137071651,0.8277777777777777,0.1684782608695652,0.505,0.7393364928909952,0.6303370786516854,0.5228758169934641,0.0977443609022556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0047402485591872,0.0068027210884353,0.0092138776421402,0.0113587873122955,0.0135089771629113,0.0155950780263211,0.0178715330551957,0.0199211327462558,0.0221772131181079,0.0243362831858407,0.0264942098407065,0.0287566523516962,0.0306862735009312,0.0326738083700213,0.0343616702642967,0.0362460551502923,0.0384926394360356,0.0405928972816885,0.0427983967518609,0.0567645954179359,0.070456256273001,0.0837700725336463,0.0962365082868283,0.1085279487395666,0.1234809257106625,0.1346076373428323,0.1458160464670964,0.1562853665307168,0.1668006818693512,0.1789786491811751,0.1896777403965772,0.2000413218647035,0.2094440129945418,0.2186591809775429,0.2277744530886362,0.2371854249204843,0.2447411640306868,0.2521783526208305,0.2582067670034133,0.2640555394851027,0.2703796875914117,0.2749201088886259,0.2795513373597929,0.2838604634208576,0.288625750089333,0.2920105026256564,0.2948651155698438,0.2983611222496733,0.3017480028474255,0.2991743760757315,0.2958739231392808,0.2925537147112966,0.2900422293645417,0.2878212919865998,0.2837714076380621,0.2800694608887836,0.279628537735849,0.2799468066969005,0.2812711773727574,0.2813393908800269,0.2826228345060013,0.283996821945304,0.2849162011173184,0.2865928070637218,0.2879276281584694,0.2884129193534642,0.2930342014433637,0.2976823974233301,0.3015451664025356,0.3058296370055218,0.309874060747169,0.3127584910389773,0.3170101132993688,0.3214685054043981,0.3282273152478952,0.334346042837612,0.3391777509068924,0.3446655610834715,0.34609375,0.0,2.0816517305279665,52.12737366271173,148.3169217555302,203.48519464350605,fqhc3_80Compliance_implementation,30 -100000,95858,48015,456.7485238582069,4969,50.57480857101129,3948,40.57042709007073,1497,15.178701829789896,77.41454581429173,79.70283818721249,63.37712166936033,65.06778192335199,77.21628968520508,79.50926478781277,63.30235706821741,64.9973693251452,0.1982561290866442,193.57339939972465,0.0747646011429239,70.41259820678647,242.12276,169.7417761709556,252584.8233845897,177076.27550225917,484.29202,321.9304885713172,504595.4641240168,335218.3318776912,473.78016,230.8899465091704,490468.7975964447,237928.8022558053,2750.49214,1292.9922156081757,2826128.0852928287,1305649.9568196451,898.14198,410.97959367626765,918340.0237851822,410127.4736341944,1447.1591,621.1981670014432,1468698.3246051453,613975.6315117182,0.3827,100000,0,1100558,11481.128335663168,0,0.0,0,0.0,41515,432.4626009305431,0,0.0,42742,442.0809948048154,1115670,0,40058,0,0,9592,0,0,89,0.928456675499176,0,0.0,0,0.0,0,0.0,0.04969,0.1298406062189704,0.3012678607365667,0.01497,0.3497394325419803,0.6502605674580196,23.43160008565728,3.95854126586299,0.3135764944275582,0.2915400202634245,0.1990881458966565,0.1957953394123606,11.211211468951769,6.154914880298484,16.007744692118468,11623.527179165125,45.44613901468609,14.206606518034132,14.107387728576674,8.644767955707824,8.487376812367463,0.5838399189463019,0.8019113814074718,0.691437802907916,0.5572519083969466,0.1138421733505821,0.7693602693602694,0.9054325955734408,0.8839779005524862,0.7,0.1572327044025157,0.5039855072463768,0.7232415902140673,0.6118721461187214,0.5178571428571429,0.1026058631921824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020043528875841,0.0044273339749759,0.0065810154435847,0.0089842243112094,0.0113019615814615,0.0135837767987057,0.0159331703341483,0.0181871965400465,0.0203481245403285,0.0227988707961705,0.025085273541131,0.026967145011232,0.029325332401718,0.0313117588932806,0.0335488128009237,0.0353741918159096,0.0374830586506926,0.0394520036892338,0.04147030124359,0.0433850986592329,0.0578366768152813,0.0717734350506845,0.0849108985574052,0.0976352486559139,0.1097256595229319,0.1253498959554668,0.1368105439366007,0.1482607586324204,0.1591937342609586,0.1687625862290586,0.1820881710479593,0.1929731600233579,0.2032927624429472,0.2132163308126065,0.2229756462106558,0.2320918807674434,0.2400802720330007,0.2480364947920763,0.2553205964056919,0.2623211628705505,0.2681564891673796,0.2735145621990557,0.2793909013525016,0.2843320400440676,0.2875373369921562,0.2918580735741468,0.2953726863431716,0.2997508643481797,0.3033665673960896,0.3063499182187516,0.3035339680490559,0.2996936855262977,0.2967706561318168,0.2938937351308485,0.2913041545005854,0.2870079100876523,0.2830810469883317,0.2823716009614598,0.282108881741291,0.2826287744227354,0.2826961770623742,0.2839195485913139,0.2847297409844257,0.2857967282977826,0.2870284089551526,0.2880386983289358,0.2876034926106982,0.293247108568586,0.298183336813531,0.3025408705928698,0.3047173629536358,0.3075713087248322,0.3112459747337131,0.3146226767186683,0.318194431597447,0.3209487089613272,0.3269870051375038,0.3272325020112631,0.3209441128594683,0.3263157894736842,0.0,2.430579618088116,51.349650319217176,149.48278372698334,198.32958956812024,fqhc3_80Compliance_implementation,31 -100000,95710,47382,451.7187336746422,4905,49.99477588548741,3876,39.901786647163306,1461,14.82603698673075,77.36002699221102,79.731524351579,63.33690834044432,65.0882105572213,77.17145042306697,79.54765161629291,63.26489853651369,65.02082045743046,0.1885765691440468,183.8727352860872,0.0720098039306336,67.39009979084187,242.46486,169.65052502481987,253332.83878382613,177254.75397013882,479.34462,318.6585354676645,500277.56765228295,332389.0664169517,456.25254,222.2370524022923,473404.49273848085,229571.43354425003,2699.86579,1281.6809198988335,2780225.1593354926,1298473.1270492466,919.75467,427.9922842595937,944283.6798662628,430479.0766477829,1417.62088,616.4147219837191,1440176.366105945,609044.2081764871,0.37893,100000,0,1102113,11515.129035628464,0,0.0,0,0.0,41389,431.8357538397242,0,0.0,41274,427.8654268101557,1118286,0,40161,0,0,9693,0,0,80,0.8358583220144186,0,0.0,1,0.0104482290251802,0,0.0,0.04905,0.1294434328240044,0.2978593272171254,0.01461,0.3511659807956104,0.6488340192043895,23.311080055912665,4.052562626406528,0.3170794633642931,0.2763157894736842,0.2058823529411764,0.2007223942208462,11.551024773037684,6.488954059235518,15.82809050592506,11465.688198973428,44.653939540300186,13.034719166257064,13.942862996157483,8.976908527193165,8.699448850692475,0.5879772961816305,0.7936507936507936,0.6981285598047193,0.5989974937343359,0.1195372750642673,0.7579034941763727,0.9447004608294932,0.8591954022988506,0.7477876106194691,0.1701030927835051,0.5115931189229619,0.6907378335949764,0.6345062429057888,0.5402097902097902,0.1027397260273972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409759852528,0.0047542296424697,0.0070426108399378,0.0091123346675064,0.0113918385613735,0.0135839680664738,0.0160448521916411,0.0183714711465839,0.0201788908765652,0.0224003603714282,0.0243907440253442,0.0262928246563247,0.0283419545253545,0.0302106401606839,0.0322540704513093,0.0343055656075848,0.0364354014938825,0.0385098454416176,0.0403578115248595,0.0423895714151739,0.0571145109915931,0.0708028509529341,0.0834714558462539,0.0962222081992385,0.1083300825522672,0.1237022941114282,0.1346967784366348,0.1458583880546184,0.1557974110308882,0.1652918271242075,0.1769693182797552,0.1879044300647088,0.1986305092114559,0.2085701792741582,0.217255522932955,0.2265458894401134,0.2354968601162259,0.2433808897433303,0.250855795606538,0.2575807873258622,0.2634073594524919,0.2694334419946954,0.2745232493527068,0.2798204667863554,0.2832297684353609,0.2879037817608824,0.2915113923417452,0.2951900599654436,0.298860682555899,0.3017013033222197,0.2990934524129768,0.2963059706622307,0.2936215150661785,0.2910690297699008,0.288693303253384,0.2851749384772939,0.2814616052403125,0.2815253101453066,0.2815781859032186,0.2829316840833155,0.2835233315297498,0.2840676632572777,0.2841244747680659,0.2850451730338076,0.2873302627496838,0.2894171818816773,0.2914484671780791,0.296397072621505,0.3003003003003003,0.3060271478887174,0.3094093095000453,0.3139086830298231,0.3170351915291186,0.3222556390977443,0.3272995936461026,0.3265377446411929,0.3325819056206793,0.3385842472582253,0.3431053203040173,0.3424242424242424,0.0,2.361924520749782,52.21312895353559,142.8410172648003,192.83867835760384,fqhc3_80Compliance_implementation,32 -100000,95756,47875,456.0132002172188,5015,51.23438740131167,3986,41.09403066126404,1494,15.309745603408665,77.33346816806463,79.69662956163195,63.32120940122799,65.07090832901103,77.14730116034072,79.51060247663672,63.25202783191703,65.00350829868712,0.1861670077239097,186.02708499523143,0.0691815693109632,67.40003032390973,241.60224,169.2742791838269,252310.2886503196,176776.6815487561,484.10048,321.89450843164707,505020.36425915867,335625.2646639867,465.62046,227.60281590872796,482362.7866661097,234814.12439771608,2802.24275,1298.744298896769,2888774.3013492627,1318639.3217101474,890.48458,402.1459673614546,917024.531099879,407042.3288889938,1452.31858,606.8377364916586,1488987.2592840136,610292.2678702776,0.38125,100000,0,1098192,11468.649484105435,0,0.0,0,0.0,41673,434.6463929153264,0,0.0,42111,435.94135093362297,1116812,0,40060,0,0,9545,0,0,87,0.8981160449475751,0,0.0,2,0.0208864196499436,0,0.0,0.05015,0.1315409836065574,0.2979062811565304,0.01494,0.3697718631178707,0.6302281368821293,23.216613150191836,4.149437773230327,0.3095835423983943,0.2804816859006522,0.2057200200702458,0.2042147516307075,11.181464491506512,5.970944879036495,15.796744896316037,11576.391531446956,45.53395742138402,13.705375749673244,13.984112975053575,9.150603271299424,8.693865425357775,0.5672353236327144,0.7835420393559929,0.686385737439222,0.5573170731707318,0.0995085995085995,0.7601351351351351,0.9010309278350516,0.8571428571428571,0.7055837563451777,0.1578947368421052,0.485724482512491,0.693522906793049,0.6187782805429864,0.5104333868378812,0.0861027190332326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022392218450782,0.0046444651766519,0.0069930779692669,0.0091040256863581,0.0112487540936921,0.0136138235803235,0.0157199363862496,0.0180135126860035,0.0200216671436163,0.0222533856059287,0.0242867248290497,0.0264257481648786,0.0288246968933496,0.0309471581137166,0.0327569485999628,0.0348423772609819,0.03693387728054,0.0390146720069728,0.0409497770061648,0.0431486091004717,0.057964509394572,0.0717948717948717,0.0855359110225066,0.0989430509544092,0.1111380604884633,0.126386465767909,0.1376314198113708,0.1486026265937294,0.1590362989779899,0.1685182405044287,0.1804295839886248,0.1924895327325248,0.2021467488825813,0.2115693801883387,0.2197474647484546,0.2292702370539322,0.2365809828892882,0.2449930239884783,0.2529244244755324,0.2597722199965661,0.265028901734104,0.2705827342334443,0.2758037625190668,0.2802633941933553,0.2840703779602032,0.2888989990900819,0.292343619266456,0.297142566992904,0.3012572846270142,0.3040556565736422,0.3017967131983108,0.2985244664058746,0.29699881976058,0.2935381508726381,0.2909301221971764,0.2872766764561918,0.284345956881836,0.2851221390304241,0.2858092332861841,0.2858770742824585,0.2864421964239053,0.2882499950803865,0.2885833333333333,0.2895404190950749,0.291287479643644,0.2924324745886084,0.2928429985855728,0.298024012006003,0.3020906166969654,0.3056508537402894,0.3076122845899859,0.3113152753577274,0.3164660145472786,0.3201124534609832,0.3219750305078381,0.3255260967780288,0.3222459566676838,0.3224954277585856,0.3284286507495835,0.3340996168582375,0.0,1.9795896501172288,51.7636007769936,143.21851757121243,208.72749403015737,fqhc3_80Compliance_implementation,33 -100000,95803,47155,449.3178710478795,5024,51.34494744423453,3992,41.14693694351951,1530,15.657129734976984,77.34149214859087,79.68186707739616,63.33904717832892,65.07281568642411,77.14507550047871,79.48437001445811,63.2659326240428,65.00074859430175,0.1964166481121623,197.49706293805505,0.0731145542861213,72.06709212235296,242.67936,169.864499504354,253310.81490141223,177306.0337404403,481.6619,319.6801221293709,502213.9807730447,333136.00005153386,454.62793,221.6575201912952,470748.7343820131,228461.2263915313,2810.67142,1314.3020606430937,2903984.6246986003,1342061.3453055683,892.65269,402.1203980289973,922501.1429704708,410479.2939980973,1487.37432,636.1585798409975,1525162.907215849,643262.0489335814,0.37899,100000,0,1103088,11514.127950064194,0,0.0,0,0.0,41486,432.5125517990042,0,0.0,41216,426.4062712023632,1119143,0,40188,0,0,9677,0,0,90,0.9289896976086344,0,0.0,0,0.0,0,0.0,0.05024,0.1325628644555265,0.3045382165605095,0.0153,0.3664180531650411,0.6335819468349588,23.21939730373316,4.074408630095828,0.3231462925851703,0.2773046092184368,0.1943887775551102,0.2051603206412825,11.46562665280555,6.303315413595898,16.516099752633377,11470.276099607505,45.933498621399146,13.568253834673522,14.848070585261626,8.579201016752338,8.937973184711659,0.5826653306613226,0.7958446251129178,0.7023255813953488,0.5747422680412371,0.1135531135531135,0.7530966143682907,0.9166666666666666,0.8402948402948403,0.7348066298342542,0.1137724550898203,0.5084501977705861,0.7112135176651305,0.638731596828992,0.5260504201680672,0.1134969325153374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0046125928854556,0.0070424679080623,0.0092265170914116,0.0112835122348272,0.0134459259862892,0.015706752883821,0.0179111183726819,0.0200936681937172,0.0218005693337975,0.0241058977934541,0.0263603783078834,0.0282243548204606,0.0302249876380418,0.0323063271286474,0.034388307768636,0.0365097279890657,0.0385477178423236,0.0404098130695456,0.0420874018862817,0.0568405896898181,0.0704069256827401,0.0837236595307702,0.0963549054839286,0.1081887058873117,0.1234318688635474,0.1347862033876746,0.145348404453282,0.1552392030477979,0.1648502384396935,0.1775328784519684,0.1882438143828435,0.199050639786231,0.2088350341994274,0.2176403333260042,0.2268933607845741,0.2352685487556145,0.2433030200965532,0.2504557756111922,0.2577326657979562,0.2637970241599428,0.269371272510825,0.2746701005351636,0.2790817303091205,0.2840220185266017,0.2884868461510079,0.2928616913683527,0.2956388229770711,0.2993944714859334,0.3025106198298197,0.3003748639606594,0.2972609322441134,0.2941970689994655,0.2902132202313973,0.2885479874783021,0.2849216660298051,0.2814456459874787,0.2816476452840089,0.2828134598320934,0.2833880288221445,0.2845592363840539,0.2854660004344992,0.2858637647797426,0.2861004982460844,0.2882313350319696,0.2901445124332769,0.2916357195909272,0.2964681374869804,0.3014716237149697,0.3048315321042594,0.3085023579506433,0.3142126026228809,0.3174080870720749,0.3226920420535645,0.3203975390440132,0.3231998092513114,0.3284874729353542,0.3295757327321172,0.3331479421579533,0.3330795584316711,0.0,2.047016507403639,52.89580499576611,147.3173253680489,203.28669119340543,fqhc3_80Compliance_implementation,34 -100000,95709,47483,452.778735542112,5053,51.72972238765424,4019,41.47990262148805,1511,15.453092185687868,77.3419109081298,79.71122872437361,63.33255108723839,65.08124970400867,77.14743428318943,79.51892266745294,63.26011673810167,65.01189627873718,0.1944766249403784,192.30605692067115,0.0724343491367136,69.35342527148691,241.91486,169.36195150681905,252760.59722701105,176954.88482667148,481.21554,320.6611776315223,502273.3180787596,334521.522588014,465.63747,226.99665620320664,483391.8335788693,234792.2351511097,2839.68712,1328.4776201353343,2929077.453531016,1350486.4383137447,910.25288,411.14629987532624,938254.2185165448,416928.39535018086,1473.18958,620.5982370038196,1508032.8077819222,621667.0129283556,0.37917,100000,0,1099613,11489.11805577323,0,0.0,0,0.0,41401,432.0283358931762,0,0.0,42039,436.1031877879823,1117621,0,40063,0,0,9416,0,0,96,1.0030404664138168,0,0.0,0,0.0,0,0.0,0.05053,0.1332647625075823,0.2990302790421532,0.01511,0.3687606756500284,0.6312393243499715,23.27935017870639,4.008678741392502,0.3122667330181637,0.2836526499129136,0.2015426723065439,0.2025379447623787,11.348800179976616,6.165346082296204,16.050738779933898,11545.775831853209,46.267153618916666,14.091293678283275,14.388259784949437,8.923557035167669,8.864043120516294,0.5969146553869121,0.8061403508771929,0.7187250996015936,0.5938271604938271,0.1191646191646191,0.7647534357316087,0.9065040650406504,0.8563829787234043,0.7676767676767676,0.1520467836257309,0.5222861250898634,0.7299382716049383,0.6598407281001137,0.5375816993464052,0.1104199066874028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0046316002837741,0.0067356461756948,0.0089684732266189,0.0109204050921218,0.0131444978414922,0.0153113754752948,0.0175655262513268,0.0196852003270645,0.0216568071561623,0.0236191413457989,0.0258248020783061,0.0279714526644865,0.0300838639220292,0.0322477452376529,0.0344132484287132,0.036537246657484,0.0385226081632229,0.040583115843324,0.0425503089925695,0.0571076460328567,0.0719011032721334,0.0849456498929785,0.0974704180909808,0.1098887189494225,0.1253954315096755,0.1372451252890878,0.1479959546494916,0.1583979659423541,0.1677197198056232,0.1798522411527774,0.1906766364039691,0.2016292171491962,0.2109158894853656,0.2195489383226487,0.2282507637136406,0.2362614696799081,0.2445748064236989,0.2521601088558793,0.2585431706117219,0.2653098982423681,0.2714512959670628,0.2772645002543385,0.2815254886929858,0.2854384494881416,0.2897827399657411,0.2928575899843506,0.2969330145974264,0.3008461419034311,0.3040661540082165,0.3014978755445597,0.2983115991763898,0.2959551855335757,0.2938669737978693,0.2921853951711989,0.2890851407827705,0.285302184810366,0.2846697418784964,0.2844686648501362,0.284299934115636,0.2856582413271311,0.2862631516727745,0.2865959538902487,0.2877015138659402,0.2874633888702165,0.2892957453448455,0.2911547212741752,0.2963427639420362,0.300150776675199,0.3056856984038751,0.3092792874670544,0.3103228885000795,0.3116133082234777,0.3153166869671133,0.3171189783078223,0.3215806909607193,0.3237355271176112,0.3289016158723665,0.3328694684107988,0.3376722817764165,0.0,1.9007377366532543,54.30079459963062,147.79569266898704,201.81295943188624,fqhc3_80Compliance_implementation,35 -100000,95727,47731,454.7201938846929,5044,51.61553166818139,4062,42.03620713069458,1474,15.11590251444211,77.33810060160408,79.71985306876908,63.31256206328344,65.07467547451503,77.14254789125053,79.52654030771593,63.239027466761016,65.00403806933195,0.195552710353553,193.31276105315,0.0735345965224212,70.63740518307782,240.9099,168.74850934983604,251663.48052273653,176280.9963227052,483.73108,321.9367211594556,504922.56103293743,335906.13009856734,469.01569,228.58590284252043,488115.5159986211,237315.7439812919,2811.88975,1317.2793159374917,2908881.8724079933,1347555.983095148,939.09762,429.7601471271592,970438.7372423664,438365.7872148498,1434.3892,611.5598649524064,1471534.3633457643,614037.3221794097,0.38111,100000,0,1095045,11439.24911466984,0,0.0,0,0.0,41556,433.6811975722628,0,0.0,42404,441.0563372925089,1118643,0,40160,0,0,9546,0,0,101,1.0550837276839344,0,0.0,1,0.010446373541425,0,0.0,0.05044,0.1323502400881635,0.2922283901665345,0.01474,0.3473484848484848,0.6526515151515152,23.39553216209823,3.988174679806796,0.3178237321516494,0.2838503200393895,0.2053175775480059,0.1930083702609552,11.182245197008593,6.041918229889919,15.688345964499822,11607.420944718324,46.51486697690792,14.256102472900988,14.448119893510906,9.292952299491866,8.517692311004161,0.5972427375677006,0.805724197745013,0.710302091402014,0.5911270983213429,0.110969387755102,0.7772357723577236,0.9434343434343434,0.8859649122807017,0.7511520737327189,0.1306818181818181,0.5190677966101694,0.7021276595744681,0.6469968387776607,0.5348460291734197,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025034967870101,0.0047271251775207,0.0069953499705565,0.009390816513202,0.0115993935755639,0.0134753867935098,0.0157783081410766,0.0179456014380994,0.0199519353684102,0.0221471356166487,0.0241388857555963,0.0262355345169273,0.0282964547174467,0.0305133618248287,0.0325472476685648,0.0346402662092057,0.0368498980130667,0.0388541904425953,0.040836270259593,0.043021729619367,0.0573326232024812,0.0720409509154288,0.0853662375271491,0.0981794469978229,0.1103389365785754,0.1265272444543175,0.1384443972835314,0.1491092630256306,0.1592159964091438,0.1687301519182902,0.180542835285371,0.1910680452552373,0.2021684228860054,0.2112099624656664,0.2203244337816124,0.2298800895449609,0.238788636769698,0.2472763696934227,0.2548547548206863,0.2617546594530157,0.2679317810788593,0.2733327870579559,0.278462576817875,0.2835142973562474,0.2870819210069128,0.2911773413599131,0.2951359747466523,0.2979124476201393,0.301559343107289,0.3044389935116315,0.3013621266925735,0.297805082532745,0.2956597564062895,0.2927476457609275,0.2911889895739095,0.2873900741760342,0.2848345123799899,0.2843700394390168,0.2850328779257947,0.2863879003558718,0.2881792717086834,0.2885766021099039,0.288580375782881,0.2891144322997992,0.2896312260536398,0.2908442699183631,0.2920678846751193,0.2957974809826661,0.3026859863094617,0.3053899262513729,0.3084304932735426,0.3116415104193868,0.3142186244824816,0.3198956780923994,0.3264310693907601,0.329252652442579,0.326448136506511,0.3327373857767183,0.3323481998925309,0.3397291196388262,0.0,1.542326221339431,54.21070918618789,149.70784148100478,204.7775899242056,fqhc3_80Compliance_implementation,36 -100000,95661,47573,453.9990173633978,5088,52.00656484878896,4026,41.60525187903116,1497,15.33540314234641,77.27782633283482,79.68770516929993,63.2892740309558,65.0717713431433,77.09111698922662,79.5027292974708,63.218833151247445,65.00416052945074,0.1867093436082001,184.97587182913836,0.0704408797083502,67.6108136925535,242.10164,169.57222830293992,253082.9073499127,177263.70025709528,479.42771,318.7100643286807,500720.3562580362,332712.8655655708,462.24287,225.3448770611425,480123.94810842455,233201.8639339464,2811.82215,1307.8892601989376,2906992.609318322,1334844.2000386128,933.65949,421.84683603296025,961877.0763425012,426906.8937036864,1459.74304,613.2959298482298,1496424.2690333575,615515.4292636306,0.38164,100000,0,1100462,11503.768515905123,0,0.0,0,0.0,41276,430.9906858594412,0,0.0,41885,434.7539749741274,1116258,0,40017,0,0,9696,0,0,81,0.8467400508044031,0,0.0,0,0.0,0,0.0,0.05088,0.1333193585578031,0.2942216981132075,0.01497,0.353514526710403,0.646485473289597,23.6472790046599,4.023894814830848,0.2940884252359662,0.2871336313959264,0.2173373075012419,0.2014406358668653,11.529005782535688,6.351937738920467,15.76693376095299,11603.599919592709,46.02098518527383,14.220960092582189,13.315490911769729,9.73095025646236,8.753583924459551,0.587431693989071,0.782871972318339,0.6942567567567568,0.6057142857142858,0.1331689272503082,0.7673434856175972,0.910386965376782,0.8698412698412699,0.7752293577981652,0.1075949367088607,0.5126582278481012,0.6887218045112782,0.6306098964326813,0.5494672754946728,0.1393568147013782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0043404186272919,0.0064564595050047,0.0087299409534843,0.01109924207742,0.0133861716975173,0.0155736868944416,0.0175676917891468,0.0198238561389511,0.0218500307314075,0.0237746028164391,0.0257000225979415,0.0278443760740047,0.0302190157175985,0.0324289165582605,0.0344831152712416,0.0365058805243251,0.0383968435261135,0.0405510868773477,0.0424460431654676,0.0576083094735522,0.0716447609572184,0.0853223334802779,0.0982878550306755,0.1100816748622923,0.1259950038106529,0.1380039080752729,0.1494795384566211,0.1596431932916916,0.1688713279505239,0.1811235761318202,0.191571379071379,0.2025513480565563,0.211076337214392,0.2208278291501541,0.2304555477987212,0.2391117462514932,0.2479889292665639,0.2548167479859299,0.2614248927038626,0.2676986035327846,0.2737544400822583,0.2786809652742471,0.2836164147282179,0.2877336150679442,0.2914545611418569,0.2958148263997497,0.2992852964366559,0.3025095825132083,0.3049783778082481,0.3026096089626198,0.2993211330056044,0.2969410769664505,0.29441264886114,0.2919596271907005,0.288639740231892,0.2848568351704041,0.2846513919684651,0.2848528331539657,0.2853369503141062,0.2869755522717495,0.2875135722041259,0.2872313738606907,0.2872838295596363,0.2891572037755737,0.2901812336332288,0.2898727706463705,0.2937019004240616,0.2974057516984054,0.3018410274762416,0.3046013667425968,0.3078062979624239,0.3113941523403187,0.3163389727175735,0.3178789300797747,0.3204321500652974,0.3209309447251569,0.3198776758409786,0.3244518456841521,0.3248286367098248,0.0,1.87131563166225,51.71251538162642,148.4032806995958,209.12940281685775,fqhc3_80Compliance_implementation,37 -100000,95820,47925,455.7608015028178,5008,51.02275099144229,3969,40.84742225005218,1468,14.944687956585264,77.39792083527668,79.70222861479068,63.37134666233783,65.0718812024811,77.20616941877525,79.51348899602898,63.29855182793797,65.00269319000398,0.1917514165014324,188.73961876170145,0.0727948343998576,69.18801247711315,242.41558,169.70488358384722,252990.3569192236,177107.7946351795,485.1747,322.9233224966137,505752.2124817366,336424.85784521385,465.16594,227.70651109687935,481694.5835942392,234798.5916121785,2773.76538,1299.4194038485955,2857723.084950949,1319255.7577883706,902.89357,415.5807863095632,928894.2600709664,420509.3352974243,1429.0865,615.6482643523294,1456864.45418493,613245.5333275802,0.38304,100000,0,1101889,11499.561678146523,0,0.0,0,0.0,41782,435.43101648925074,0,0.0,42035,435.01356710498857,1114097,0,39969,0,0,9494,0,0,87,0.8975161761636402,0,0.0,0,0.0,0,0.0,0.05008,0.1307435254803675,0.2931309904153354,0.01468,0.3607775871926815,0.6392224128073185,23.24010756808547,4.112869912089916,0.3139329805996472,0.2771478961955152,0.2040816326530612,0.2048374905517762,11.269232140529294,6.012879106961837,15.711663829040914,11575.208953882317,45.39634167664008,13.39250330774073,14.134128552253207,8.955924237641518,8.913785579004623,0.5847820609725372,0.81,0.7110754414125201,0.5851851851851851,0.08610086100861,0.7574215436810857,0.91991341991342,0.887905604719764,0.7577319587628866,0.108695652173913,0.5118279569892473,0.7304075235109718,0.6449834619625138,0.5308441558441559,0.0794912559618442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361464323317,0.0045496458571877,0.0067650489375729,0.0091894032472609,0.0111215029277813,0.0131994056705542,0.0155285198997371,0.0176485590410609,0.0198316202464393,0.0219762231180045,0.0242710489109276,0.0265196204154911,0.0289107608851994,0.0310158886967975,0.0328801574949236,0.0350641707364921,0.0372657955450717,0.0395111889634013,0.0415061423275423,0.0433791617663894,0.0585737831466065,0.0730885890597217,0.0865480397194056,0.0993954686432213,0.1120152628305804,0.1270126547484379,0.1389987593183674,0.1498637602179836,0.1593808089225049,0.1692284589559042,0.180672676165552,0.1927203893996755,0.2032833224614046,0.2125691544029214,0.2213424826251429,0.2308032946594632,0.2392395182872435,0.247141749013524,0.2544123148074678,0.2613196970736953,0.2670033631120921,0.2725456987677393,0.2778230906533329,0.2815475905632387,0.2858181553786308,0.2900858147483341,0.2941183811508654,0.2970428913950804,0.3002609279735455,0.3028589463717419,0.3000549723127254,0.2974239517676075,0.295471126325832,0.2927646720368239,0.2901894662111195,0.2860101417716121,0.2817828297935986,0.2816682990532158,0.2811926293601686,0.2812566635866088,0.2810881311719769,0.2824886513254859,0.283720736482546,0.2845977421006925,0.2852726183343319,0.2857773392875688,0.2864138480810841,0.2898892663898326,0.29422060419365,0.2975471027372911,0.3012546595145013,0.3032203209692847,0.3058564231738035,0.308107696988135,0.3126469205453691,0.3122632575757575,0.3140155558944639,0.3158316633266533,0.3191374663072776,0.3166979362101313,0.0,2.15523310940446,51.2400600557646,149.31101368311587,199.6669099830965,fqhc3_80Compliance_implementation,38 -100000,95562,47447,453.0880475502815,4986,51.11864548669973,3992,41.2820995793307,1473,15.110608819405202,77.19945181010942,79.67048746129475,63.224607941291474,65.05368459160147,77.00958610808833,79.48159509732005,63.153705761172,64.98509908098387,0.1898657020210947,188.892363974702,0.0709021801194751,68.58551061759499,242.11858,169.67289722605028,253362.8220422344,177552.68540429277,483.61729,321.0727937801436,505581.8107615998,335488.5768193881,462.77443,225.0045702892066,481117.6722965195,233047.6223346315,2759.51977,1290.179633122635,2855750.214520416,1318172.3730380647,915.89184,411.2500066651356,947915.353383144,419837.4214281149,1427.46986,604.8801667362932,1465426.780519453,609316.3863754119,0.37869,100000,0,1100539,11516.491911010651,0,0.0,0,0.0,41630,435.1311190640631,0,0.0,41955,435.8845566229255,1109085,0,39773,0,0,9686,0,0,86,0.8999393064188694,0,0.0,1,0.0104644105397542,0,0.0,0.04986,0.1316644220866672,0.2954271961492178,0.01473,0.3676498939656834,0.6323501060343165,23.042657447644235,3.9774414284103305,0.3021042084168336,0.3011022044088176,0.2006513026052104,0.1961422845691382,11.3439151082758,6.168204136263626,15.758458688225405,11501.97420154098,46.142650601002536,15.010566853837169,13.6655289959458,8.860428176045561,8.606126575174,0.595691382765531,0.8169717138103162,0.703150912106136,0.5692883895131086,0.1174968071519795,0.7756622516556292,0.9187145557655956,0.8629283489096573,0.7659574468085106,0.1764705882352941,0.5176005747126436,0.736998514115899,0.6451977401129944,0.5089722675367048,0.1011419249592169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021287163840204,0.0040279215113329,0.0062048094889917,0.0085204164633154,0.0107504988394347,0.0132622479561255,0.015543195387049,0.017719190680564,0.0199140401146131,0.0222383914571782,0.0246466222527895,0.0268991897338872,0.0287123716542569,0.0307400301211033,0.0329137731481481,0.0351320297700994,0.0369509981851179,0.0388892353100122,0.0407170534561059,0.042593617221184,0.0569886399297056,0.0709889165015152,0.0840174488884217,0.0973574408901251,0.1088059354456868,0.1239279542876527,0.1354019296024848,0.1464549451487599,0.1565342217746687,0.1658207157604955,0.1775397142517737,0.189137276180141,0.1994524193900257,0.2092655962095288,0.2184986151418514,0.2283848469030774,0.2372369348504682,0.2455942414874653,0.2528328934194958,0.2590023883887562,0.2646523437952904,0.2703827442705586,0.276652003272585,0.2815861505954667,0.2863037207434184,0.289955296500284,0.293787720993262,0.2969044826355245,0.3003230954883413,0.3038018189509306,0.3011170471102476,0.2976346278361735,0.2948463197057456,0.2920069969496769,0.2883514064289645,0.2850683587762859,0.2818514470370194,0.282155357993854,0.2830837682895525,0.2836781773636868,0.2837381283081197,0.2840016617539417,0.2850784186105104,0.2855736090595765,0.2867873651771956,0.287190999504033,0.2854575536284801,0.2906294145346099,0.2924630870129415,0.2966985230234578,0.3002073192716784,0.3033501365259399,0.3075009329518597,0.3087415222305953,0.3141162294930021,0.3170072821235612,0.3215898825654923,0.323949246629659,0.3225108225108225,0.3251231527093596,0.0,1.8982893904584692,53.11024435383626,151.8995603251717,199.5728891346196,fqhc3_80Compliance_implementation,39 -100000,95665,47685,455.3912089060785,5054,51.5026394188052,4067,41.76030941305597,1514,15.29294935451837,77.33990302576841,79.73018269481528,63.32261558699434,65.08891288282726,77.14076260993902,79.53887487368256,63.246355217081614,65.01891683253955,0.1991404158293903,191.3078211327246,0.076260369912724,69.99605028771327,241.27752,168.96794074286544,252209.94093973763,176623.78895055244,483.7347,321.5552320225127,504762.4627606752,335246.9092941169,461.80899,225.0798533965873,478070.8618617049,231649.373989328,2865.80986,1335.0455983405907,2944349.4904092406,1345172.2112363945,943.59473,428.5374933007407,966218.0421261694,428442.6562829794,1477.27264,637.2330076446065,1494396.487743689,623902.7706773954,0.38147,100000,0,1096716,11464.088224533529,0,0.0,0,0.0,41581,433.8159201379815,0,0.0,41897,433.4291538180107,1120208,0,40192,0,0,9537,0,0,89,0.8989703653373752,0,0.0,0,0.0,0,0.0,0.05054,0.1324874826329724,0.2995647012267511,0.01514,0.3596740572294865,0.6403259427705136,23.25432291585808,4.143863395373602,0.3024342267027293,0.284730759773789,0.1996557659208261,0.2131792476026555,11.50815115822148,6.202050436052835,16.15518903307647,11595.703595964736,46.3593957240446,14.193015557231254,13.918248802191489,8.904741305360757,9.34339005926109,0.5824932382591591,0.8048359240069085,0.6943089430894309,0.6009852216748769,0.1095732410611303,0.7715481171548118,0.94824016563147,0.8604651162790697,0.7248677248677249,0.1731843575418994,0.5038300835654597,0.7022222222222222,0.6297968397291196,0.5634028892455859,0.0930232558139534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044701231564543,0.0066767460502683,0.0090704099459635,0.0111548356263282,0.0134978317962499,0.0156052513556488,0.0177798644566016,0.0199133137062479,0.0222624823435484,0.0244810087651853,0.0266069925475784,0.0285767170195481,0.0305720936939906,0.0323875775371817,0.034523760287853,0.0363447990053874,0.0383026427785505,0.0405405405405405,0.0421475110763617,0.0565891877774875,0.0701348465178608,0.0835151922108443,0.097125783781509,0.109566061424517,0.1246468814473893,0.1363756936560315,0.1474451777730466,0.1578795582234944,0.1675906366278134,0.1799842752054455,0.1918968931597571,0.2030170866732649,0.2129446370187313,0.2219140083217753,0.2313418781641538,0.2401160520002231,0.2474261603375527,0.2556725358504266,0.262246452337048,0.2682782950667977,0.2741631884769621,0.2787366179688886,0.2829736785380691,0.2872432078241982,0.2916287086051951,0.2950846313473511,0.2987953644403782,0.3008928571428571,0.3045604967895896,0.3014948266350927,0.2985156679494227,0.2954842885889985,0.2927773125018049,0.2908850765760418,0.2875758084966621,0.284067946451124,0.2844373137749255,0.28483230151711,0.2848615133156856,0.2857808770883054,0.2871421544515494,0.2884471117779444,0.2888433342988926,0.2907762338284619,0.2916374769725746,0.2916430273459662,0.2973743576889334,0.3030250043713936,0.3056661803556642,0.3111753807221293,0.3127242034184427,0.3138836772983114,0.3158731360230111,0.3165346995808104,0.3244962884411453,0.3283399571996331,0.3286528286528286,0.3238888888888889,0.3247402847248942,0.0,2.7990751586568634,51.20866691220924,146.9537023929853,213.81959437497207,fqhc3_80Compliance_implementation,40 -100000,95789,47783,454.63466577581977,4975,50.75739385524434,3942,40.620530541085095,1455,14.824249130902295,77.331780499572,79.67160505106796,63.32970022966426,65.06212075966623,77.14533694788442,79.48956699382097,63.25795619746615,64.99461670108847,0.1864435516875886,182.0380572469844,0.0717440321981115,67.50405857775377,241.6535,169.2734216169846,252276.1903767656,176714.29357988876,485.89248,323.57086720994846,506707.6386641472,337252.4845167262,464.37642,226.07268369797825,481688.5550532942,233581.3275395225,2725.47087,1287.860276481298,2807556.765390598,1306872.63991119,876.68377,403.6546451352265,900697.5331196693,406940.5288974752,1404.79742,607.4459288344556,1432203.5933144726,603467.3770714581,0.3818,100000,0,1098425,11467.099562580255,0,0.0,0,0.0,41771,435.509296474543,0,0.0,42073,436.0939147501279,1115683,0,40043,0,0,9590,0,0,87,0.908246249569366,0,0.0,0,0.0,0,0.0,0.04975,0.1303038239916186,0.2924623115577889,0.01455,0.3693814829043411,0.6306185170956589,23.451944337190923,4.055031226462659,0.3234398782343988,0.2871638762049721,0.2024353120243531,0.186960933536276,11.597959859790144,6.373222629435585,15.553588737373826,11551.246275354928,45.45743840550144,13.97373307810957,14.483063975093463,8.949235162879566,8.051406189418842,0.6052765093860984,0.8286219081272085,0.7066666666666667,0.5827067669172933,0.1112618724559023,0.7600334448160535,0.9128630705394192,0.8727810650887574,0.7047619047619048,0.1566265060240964,0.5378732702112163,0.7661538461538462,0.6467449306296692,0.5391156462585034,0.0980735551663747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473790833122,0.0043996593812091,0.0067683440388849,0.0088382299158844,0.0113399440630561,0.0133402580474342,0.0157419302216512,0.0180182939278859,0.0201795097217394,0.0222756820392076,0.0244392504203059,0.0265724787974618,0.028728895469595,0.0306651146980356,0.0327061810450703,0.0348178472480668,0.0370554485387021,0.0391017995125239,0.0413384599397277,0.0433990358083695,0.0582692448163955,0.0725388059077026,0.0863881754808952,0.0989323918206082,0.1107750990474584,0.1264015555813879,0.137443822606631,0.1479783907948189,0.1576267930327868,0.1665309446254071,0.1786129532340022,0.1902593117474604,0.2011963673935504,0.2109862944773197,0.2198974200933345,0.2286955269193693,0.237202088726234,0.245984793953572,0.2538044587576259,0.260116996554211,0.2662812879357188,0.2717508181393174,0.2771225438586114,0.2810159947283292,0.2854506380447056,0.2906962415280345,0.2943200730794739,0.2969263286561919,0.2998821197714937,0.3028715458312438,0.2993381225280491,0.2967702955069757,0.2938687137092806,0.2916636603702795,0.2898215318883795,0.2861360542136421,0.2820950754341019,0.2817956747716876,0.2825326393036949,0.282082777036048,0.2832601177680157,0.284141706543786,0.2848510193413486,0.2853288740245262,0.2871277617675312,0.2889322408635713,0.2907128656631639,0.2961248553466988,0.3001847397957405,0.3038658777120315,0.3086889553320648,0.3115551326778729,0.3152563699276502,0.3202515342071369,0.3240317312179188,0.3277320799059929,0.3248746391125969,0.3259789306300934,0.3338771071234366,0.3391270760911549,0.0,1.9824944595536804,52.21444838054412,148.20375412996782,198.5794226313312,fqhc3_80Compliance_implementation,41 -100000,95689,47417,453.52130338910433,4953,50.61187806330926,3915,40.34946545579952,1450,14.80838967906447,77.34192318165195,79.71710981563434,63.32298576779221,65.07486290067774,77.16469048405813,79.54231006627668,63.25718375025798,65.0118196327764,0.1772326975938227,174.79974935766052,0.0658020175342315,63.04326790134951,243.19108,170.3040433217748,254147.3732612944,177976.61520318405,484.87853,322.1194514115442,506193.12564662605,336101.3924396161,459.23466,224.14889557786864,475463.6165076445,230772.5774248091,2764.93022,1273.7348761882934,2855555.246684572,1297379.8754106977,895.79473,401.4192613110744,923387.1291371004,406760.2255398505,1414.91102,590.3996298174519,1447861.9486043327,592762.4070262045,0.37935,100000,0,1105414,11552.153330058838,0,0.0,0,0.0,41737,435.6091086749784,0,0.0,41522,429.5269048688982,1109564,0,39790,0,0,9628,0,0,90,0.9405469803216672,0,0.0,0,0.0,0,0.0,0.04953,0.1305654408857255,0.2927518675550171,0.0145,0.3650455338112768,0.6349544661887231,23.32707141103013,4.020636887689518,0.3151979565772669,0.2758620689655172,0.2017879948914431,0.2071519795657726,11.571960314295008,6.340218116544552,15.314478248124413,11506.909865614987,44.66114913388601,13.383376017283574,13.901889998619389,8.70237097356311,8.673512144419934,0.5795657726692209,0.8027777777777778,0.6952998379254457,0.5658227848101266,0.1196054254007398,0.7793867120954003,0.930379746835443,0.8879551820728291,0.75,0.1349693251533742,0.4939802991608902,0.7029702970297029,0.6168757126567845,0.5114754098360655,0.1157407407407407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023288073468809,0.0044293084400117,0.0067358511620357,0.0088873991915005,0.0110034271302614,0.01322514304331,0.0152417266480435,0.0174200729069874,0.0196942583976685,0.0218913826998689,0.0238803215486834,0.0259085447879976,0.0279043455901259,0.0296638984482865,0.0314209624476145,0.0333491892786234,0.0353950217010741,0.0373042151479609,0.0392882769521947,0.0412012337445815,0.0556414380914579,0.0698258802835335,0.0831759026028547,0.0958764296762381,0.1080219884571151,0.1235013386101734,0.1361291007537955,0.1465059060359794,0.1568264893867168,0.1663572064868577,0.1784674759060822,0.189612977281095,0.2002459810398685,0.2102740850155916,0.2190320024651142,0.2287866201473113,0.237196585011997,0.2459324436843171,0.2532373284952942,0.2606296508299943,0.266029051209696,0.2715546980061977,0.2774011900959411,0.2821440552067858,0.2861808557136613,0.2905085037993078,0.2933646976389184,0.2969767087062652,0.2999417362594678,0.3023577997387552,0.299890875287968,0.2975239616613419,0.2949828817786043,0.2923620627479264,0.2905318345403652,0.2866517114559966,0.2836868248837026,0.2845167733590923,0.2846455351056578,0.2855314383232894,0.2851865671641791,0.2854693781035706,0.2865786234378586,0.2866311590488712,0.2884059010592258,0.289165976821192,0.2896387993895201,0.2931625529793069,0.2964995138213641,0.3010951053891745,0.3029513498944342,0.3076237883154309,0.3089116325511732,0.3120323256510027,0.3172598192882168,0.3223502304147465,0.3220112726194007,0.3281557215886748,0.3341391351060972,0.329654157468727,0.0,2.262151680961523,51.07707098481679,140.7575496984033,201.427055206648,fqhc3_80Compliance_implementation,42 -100000,95738,47769,455.5244521506612,5013,51.139568405439846,3957,40.73617581315674,1488,15.176836783722242,77.32392886815877,79.68815902395582,63.31606620966248,65.06514816543705,77.13474578643135,79.50322690473484,63.24472489391528,64.99808145956008,0.1891830817274211,184.9321192209743,0.0713413157471976,67.06670587696806,241.43768,169.15819464468632,252185.610729282,176688.4493583387,480.68146,319.6005581134432,501481.7418370971,333230.5115058212,461.73421,224.96974652500043,478597.1401115544,232097.6159457142,2766.88111,1289.3673974993203,2852667.9897219497,1309449.6186449695,905.84918,415.1109315909698,931639.4743988804,419084.6535367452,1439.04626,612.8346920934312,1470175.2491173828,610737.0348181046,0.38134,100000,0,1097444,11462.982305876454,0,0.0,0,0.0,41332,431.103637009338,0,0.0,41864,433.5895882512691,1118391,0,40160,0,0,9767,0,0,69,0.7207169566943116,0,0.0,0,0.0,0,0.0,0.05013,0.131457492001888,0.2968282465589467,0.01488,0.3558023745691306,0.6441976254308694,23.177433222722243,4.050097198367068,0.3073035127621936,0.2906242102602982,0.2047005307050796,0.1973717462724286,11.60549940556943,6.478925886150659,15.949050587903972,11556.108817929928,45.36170967498563,14.103728947898272,13.764963776633468,8.963546626181015,8.529470324272872,0.590851655294415,0.7991304347826087,0.7179276315789473,0.5679012345679012,0.1101152368758002,0.7703513281919452,0.9296703296703296,0.8870523415977961,0.712707182320442,0.1488095238095238,0.5157706093189964,0.7136690647482015,0.6459554513481829,0.5262321144674086,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022992697033233,0.0043800504922487,0.0065764101731382,0.0084842203661931,0.0107214061927818,0.0128411405295315,0.0149868482760026,0.0171384241632386,0.0194358392376979,0.0216647895976246,0.0238678655279534,0.0262123063338706,0.0281596019204869,0.0302630765744422,0.0324434767354267,0.0342660450885335,0.0363461219754723,0.0384751110557562,0.0405336549959965,0.0427059240274218,0.0567956400993923,0.0704406595246066,0.0841407659074703,0.0969380244369203,0.1095809519792479,0.1247448089107968,0.1361740957271849,0.1470873217841285,0.1575911644698895,0.1669972233240777,0.1794568177659128,0.1908145168267151,0.2019785834646953,0.2119913410447598,0.220210929166071,0.2294268757197271,0.2383008636272343,0.2470859585958595,0.2543673450855307,0.2606662234347417,0.2665454166328788,0.2725185922585934,0.2772656175940847,0.282235816240854,0.2870258898495738,0.2907418368353556,0.2940763844525447,0.2964076050275701,0.3003745124211126,0.3036318013734812,0.3006535947712418,0.2982864221319937,0.2960671861569461,0.293397508166392,0.2915509482720211,0.2878894426269606,0.2850105003868564,0.2853472540420239,0.2855853554704129,0.2860369171675498,0.287675576862094,0.2884149583505642,0.2887229960797398,0.2885685044275353,0.2895366647520582,0.2900925661835248,0.2908905621921531,0.2954424432263117,0.2982443844833023,0.3012643224022125,0.3039699425105246,0.3066954643628509,0.3117467058015362,0.31335396693591,0.3157204421959902,0.3184939616386455,0.3228962818003913,0.3227326266195524,0.3211275026343519,0.3300825206301575,0.0,2.295268566069425,50.63140632051706,149.62722966286802,200.77214037176103,fqhc3_80Compliance_implementation,43 -100000,95791,47669,454.00924930317046,4977,50.620621979100335,3952,40.651000615924254,1504,15.262394170642336,77.4066300966336,79.74317125040174,63.35719594835807,65.08661697803741,77.20830286003472,79.55031057336777,63.28201354026592,65.01586318423303,0.1983272365988853,192.8606770339769,0.0751824080921537,70.75379380438562,243.10594,170.3195151864308,253787.41217859715,177802.8284498239,483.31484,321.5092677715596,503933.6472111159,335019.2650601828,463.68893,225.92851330361623,479914.5744380996,232694.81599524544,2775.38916,1304.8359343171378,2857192.366715036,1322127.7261581656,914.90956,421.58481771953626,940487.9372801202,425630.9841823271,1466.80758,632.6909105914189,1490682.9451618628,627513.5128024034,0.38032,100000,0,1105027,11535.791462663508,0,0.0,0,0.0,41535,432.9634308024762,0,0.0,41932,433.71506717750106,1111749,0,39915,0,0,9667,0,0,88,0.9082272864882922,0,0.0,1,0.0104393940975665,0,0.0,0.04977,0.1308634833824148,0.3021900743419731,0.01504,0.3644410236675005,0.6355589763324995,23.00071806101615,4.074069050579381,0.3061740890688259,0.2828947368421052,0.2016700404858299,0.2092611336032388,11.249115048276822,6.014501347793435,16.12013011588361,11511.894123633105,45.43176381028813,13.611103494873996,13.895721879746713,8.85148464765934,9.073453788008097,0.5872975708502024,0.7933810375670841,0.7132231404958678,0.5846925972396487,0.1269649334945586,0.7602965403624382,0.9193899782135077,0.8773333333333333,0.75,0.1489361702127659,0.5105916727538349,0.7056145675265554,0.6395209580838324,0.5322314049586777,0.1205007824726134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0046439942406359,0.0069818654164256,0.0090730825112016,0.011259039269332,0.0133500336042035,0.0155278236577557,0.0178022763231766,0.0199824195592624,0.0221253428302427,0.0240945333797938,0.0260630438351666,0.0281197969125778,0.0303064617411803,0.032490825877211,0.0347565697764469,0.0367458412645866,0.0388008334456342,0.040755900930851,0.04275719907552,0.0576365267836647,0.0718222222222222,0.0849177235090661,0.0975450838622893,0.1095167356743259,0.1254503766786767,0.1371748945460711,0.1484163184587413,0.1586444584342556,0.1681484179181216,0.1800370123302705,0.1913761785312689,0.2014191487280906,0.2101406543484908,0.2189704040603783,0.2284908165523345,0.2369996988993097,0.2449020886260932,0.2516102694366325,0.2579574458344302,0.2639295170484108,0.2691080755792893,0.2744337335146963,0.2793371012549094,0.2841565884695711,0.288049772083282,0.2922281867437466,0.295781991123997,0.299042071197411,0.3025777683966122,0.2996565887819002,0.2965381654201496,0.2940472671480653,0.2914405311778291,0.2897744962860828,0.2865518504946867,0.2831256007437404,0.2832446374351105,0.2823924207243699,0.2825286705365992,0.2831186238737062,0.2836716681376875,0.2845565622142798,0.2863482061636085,0.2887385992903579,0.2894207458606282,0.2898824458038508,0.2940482107355864,0.2976206992230855,0.3030563925957813,0.306984468982853,0.3112132929250705,0.3134079248315509,0.3180362065112121,0.3182858712572108,0.3173431734317343,0.3140570738336101,0.319296164491894,0.3193688792165397,0.3272796065077563,0.0,2.3097164315595498,52.71791253394606,145.9477695259398,197.57892264453815,fqhc3_80Compliance_implementation,44 -100000,95691,47798,455.7586397884858,4862,49.61804140410279,3876,39.95151059138268,1437,14.619974710265334,77.29491858535671,79.69765449203592,63.29396199958445,65.07418740740708,77.10892588497454,79.51551139339935,63.22265584875526,65.00684625273098,0.1859927003821724,182.14309863657263,0.0713061508291943,67.34115467610025,241.912,169.4257000834937,252805.1540897263,177054.79650027218,481.0088,320.2526856521168,502108.2546947989,334114.32818309934,458.64624,223.50132221481613,475992.737039011,231037.7219326199,2703.07656,1271.8365911376252,2786251.308900524,1291054.2074311106,881.07456,404.6112369347787,905721.394906522,408032.7956743549,1389.53056,604.3634539748055,1414999.571537553,599298.5090883755,0.38367,100000,0,1099600,11491.143367714832,0,0.0,0,0.0,41444,432.5276149272136,0,0.0,41536,430.7406130148081,1116094,0,40090,0,0,9592,0,0,91,0.9509776259000324,0,0.0,0,0.0,0,0.0,0.04862,0.1267234863293976,0.2955573837926779,0.01437,0.3563650762225302,0.6436349237774698,23.259888061094426,3.9668941465224736,0.3085655314757481,0.2902476780185758,0.2056243550051599,0.195562435500516,11.282190812992312,6.254645356440103,15.47302312958622,11571.637056304218,44.65276287755872,13.95349841508726,13.563760762221104,8.758635650103567,8.376868050146786,0.5985552115583075,0.8355555555555556,0.689799331103679,0.5796737766624843,0.1226912928759894,0.7635593220338983,0.9266802443991852,0.8648648648648649,0.7043010752688172,0.1588235294117647,0.5263353115727003,0.7649842271293376,0.6222479721900348,0.5417348608837971,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025748375520796,0.0049418044181963,0.0072208398923475,0.0094860454476132,0.0115231531907529,0.0134334899554595,0.015816972121311,0.0179501849165321,0.0202561689241723,0.0224546450998268,0.024341956793796,0.0264014875234993,0.028421485902449,0.030608774515361,0.0329586391271586,0.0348928600976255,0.0369533678756476,0.0390796960006644,0.0411439152778644,0.0429013664648064,0.0574183170385226,0.0708662241671726,0.0836376610838265,0.0970980029041015,0.1097055316993912,0.1243439986456746,0.1353302057019126,0.1459174004237513,0.1565708912562642,0.1666344771347024,0.1780143066448332,0.1897275540455735,0.2010764379689029,0.2109860078705728,0.2192012846317132,0.2283815957034494,0.2366016134971378,0.2455125535961467,0.2528161337209302,0.2593034187054319,0.2654415340790662,0.2709589073161597,0.2768347537878788,0.2814384900411305,0.2863703181757438,0.2907256423223515,0.2945764579212259,0.2977005061938799,0.3016535870815933,0.3045940677519625,0.3019456089433516,0.2989941128844122,0.2965493007238737,0.2947952710495963,0.2919329251115691,0.2884297773427942,0.284728923763269,0.285161501885555,0.2861455543995497,0.2873700540289938,0.2878061568421841,0.2884292459353207,0.2891944496766497,0.290967136988748,0.2920996920708237,0.2947302645282232,0.2969928020711826,0.3008530389512638,0.3041793233476484,0.3083968260234495,0.3120715485540473,0.3156590945027144,0.3188758023306537,0.3213396696085087,0.3245409637431261,0.3245407442298634,0.3296257327521419,0.3397358943577431,0.3467094703049759,0.350129677658392,0.0,2.1584053222118027,51.331616965207004,142.77422044574536,197.8247760491904,fqhc3_80Compliance_implementation,45 -100000,95734,48011,457.3087931142541,5027,51.56997513944889,3997,41.3123864039944,1469,15.062569202164331,77.3593554540744,79.73114935585649,63.33143217950936,65.08403378011863,77.180117805788,79.55181011080897,63.26481283118851,65.0194201560969,0.1792376482864028,179.3392450475153,0.0666193483208559,64.61362402173165,242.76032,170.0357639009047,253577.9555852675,177612.72264911598,481.61413,320.5719203685872,502670.0231892536,334451.616320834,469.97463,229.8090407377171,488144.53590156056,237944.95854065675,2800.1537,1300.050461739598,2897368.886706917,1330419.591513567,922.82659,414.664096140174,953982.2738003216,423175.5657761853,1425.202,597.0316002581636,1463054.8185597593,601320.9058262883,0.38181,100000,0,1103456,11526.27070842125,0,0.0,0,0.0,41436,432.38556834562434,0,0.0,42413,440.198884408883,1113089,0,39884,0,0,9594,0,0,103,1.0758978001545951,0,0.0,0,0.0,0,0.0,0.05027,0.1316623451454912,0.2922220011935548,0.01469,0.3652671755725191,0.6347328244274809,23.412217341869862,3.972028720759192,0.2957217913435076,0.2969727295471603,0.2079059294470853,0.1993995496622466,11.50399115349531,6.43398121393056,15.556417502563622,11615.258341269307,45.7761313188632,14.751070177547604,13.16786532889201,9.20744986504864,8.649745947374962,0.5941956467350513,0.8222409435551812,0.6937394247038917,0.5824308062575211,0.1191969887076537,0.7684124386252046,0.9233644859813084,0.8726708074534162,0.7202072538860104,0.1453488372093023,0.5174774774774775,0.7392638036809815,0.6267441860465116,0.5407523510971787,0.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.004490759982564,0.0068799659045937,0.0089882391176291,0.0111751726101501,0.0135604263593513,0.0157194556297466,0.0180266623114141,0.0201181738259287,0.0225841787897091,0.0247859303696867,0.0267874567323,0.029034116630314,0.0311353801772099,0.0330220318868995,0.0350755680525978,0.0371167962562249,0.039217923451924,0.041147300683016,0.0431449344805316,0.0584549840235574,0.0727697073722108,0.0864215660565374,0.0990284320323014,0.1110302723563091,0.1267703959128843,0.1380323833372238,0.1487853173504801,0.1586134678263842,0.1682439537329127,0.1801736769522496,0.1911112073257853,0.2020037202623764,0.2107532058295768,0.2200319365673696,0.2291796008869179,0.2371212290378045,0.2450632000359857,0.2535476479462776,0.2609736266504815,0.2663806462057959,0.2718434122115103,0.2772625784120308,0.2818715688502434,0.2872070892582221,0.2913176635548504,0.2948822095857026,0.2984128999492128,0.3026970444941265,0.3057617393135396,0.3038350061725082,0.3009643479334422,0.2986667040531636,0.2958110670574039,0.2926346278891056,0.2898658831767876,0.2866105825929711,0.2861731092162968,0.2856051604141911,0.2865321894498014,0.2864462040055892,0.2876459258676939,0.2884282165299263,0.2885979390641031,0.2889772074315265,0.2902832853847549,0.2929965166661947,0.2967356264279678,0.2995216313418765,0.3033251910802931,0.3096940622737147,0.3132949807357365,0.3155245107293437,0.3200874679535515,0.3205270972531551,0.3275761465748629,0.3276331719128329,0.3307416267942584,0.3283743575872329,0.3344581927259092,0.0,1.7387984344652505,53.76089628563356,142.0492576421377,206.07703417593876,fqhc3_80Compliance_implementation,46 -100000,95885,47460,450.237263388434,5083,51.65562913907284,4037,41.47676904625333,1463,14.840694582051414,77.4394230829848,79.7208174716397,63.39129033748679,65.07788945204427,77.24367931971025,79.53015302324917,63.31506814198654,65.00654189543364,0.1957437632745495,190.6644483905353,0.0762221955002431,71.34755661063252,242.83358,170.05660127238744,253255.0242477969,177354.74920205187,482.7468,321.05401053407473,502867.9355477916,334235.93944211793,461.31341,225.22653635350497,477771.371955989,232316.98980481215,2815.79216,1332.7735494512574,2895898.6598529485,1349234.8328218772,893.79662,419.4488680417364,916425.144704594,421721.9039759993,1415.57396,623.5764190275994,1438522.6052041508,616090.6033695554,0.3798,100000,0,1103789,11511.592011263492,0,0.0,0,0.0,41450,431.6525003910935,0,0.0,41833,432.9665745424206,1117264,0,40110,0,0,9769,0,0,93,0.959482713667414,0,0.0,1,0.0104291599311675,0,0.0,0.05083,0.1338335966298051,0.2878221522722801,0.01463,0.3618706392607957,0.6381293607392042,23.276012858845792,4.067706384675057,0.3027000247708694,0.2868466683180579,0.2184790686153083,0.1919742382957641,11.095212083858764,6.00909847122836,15.83420607888068,11529.660146327707,46.40521630772536,14.196517978640337,13.897382279727587,9.844710437868706,8.46660561148874,0.579390636611345,0.7815198618307426,0.7144026186579379,0.5453514739229025,0.1032258064516129,0.7360890302066773,0.8875502008032129,0.8826979472140762,0.6577777777777778,0.1804123711340206,0.5084562792371357,0.7015151515151515,0.6492622020431328,0.5068493150684932,0.0774526678141136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023790240939461,0.0047731971300012,0.0071414804370099,0.0090974626608047,0.0113836177543781,0.0135426629494719,0.0156964604023427,0.0179518563851489,0.0203199705774181,0.0226784508684711,0.0248468206315703,0.0271077229307532,0.029153050948476,0.0311393395371819,0.0331347038083259,0.035335907973813,0.0375248303261049,0.0395415829067622,0.0417579451187225,0.0437057844361215,0.0583863233607839,0.072474974399699,0.0860272480705392,0.0988565608626718,0.1109531931021413,0.1259885752901052,0.1379299386672033,0.1485031721909903,0.1582706967322352,0.1679671194168834,0.1797372269052124,0.1911194199202498,0.2009060982366937,0.2103146413700396,0.2191270111845505,0.2277320877101712,0.2366147569308972,0.2447867511572513,0.252356780275562,0.2590098330665447,0.2653806168418621,0.2704788817917489,0.275168737219116,0.279755776367772,0.2843358578502767,0.2884665099159209,0.292553058520611,0.2970261827970643,0.299540063564249,0.302576180201042,0.2999959699627893,0.2972769051375266,0.2949625136888215,0.2919609143054795,0.2895859250044428,0.2851387235601135,0.2806195681319894,0.2808931867557457,0.2804691483936767,0.2815566715763695,0.2816702052370842,0.2823222106565587,0.283373193303525,0.2832528679629711,0.2835366578678271,0.2857179752066116,0.2879887482419128,0.2925604463732176,0.2958549222797927,0.2986952105633252,0.3033954488442931,0.3077124593943204,0.3112076994722136,0.3157894736842105,0.3200448137428811,0.3191864566188572,0.3222357971899817,0.3242369112593491,0.3327859879584017,0.3309648466716529,0.0,2.448548445362133,54.37858187245246,146.87278398551976,202.11860039109212,fqhc3_80Compliance_implementation,47 -100000,95725,47803,454.9699660485767,5047,51.42857142857143,3995,41.0237659963437,1540,15.63854792373988,77.34647984393533,79.70111821824244,63.33814763576003,65.07621478241825,77.14880852811075,79.50923120103892,63.26305272527354,65.00658741528754,0.1976713158245786,191.88701720352697,0.0750949104864915,69.62736713070683,243.1055,170.3406560878792,253962.39226952207,177947.93009963876,483.35012,320.89019430460087,504247.60511883,334532.3523683477,463.77369,226.62410369174845,480689.9764951684,233687.97318825137,2789.06601,1314.284639069186,2865837.952468008,1325692.5926720654,928.95543,426.11124598595296,951179.4828937058,426066.0648057152,1493.4972,635.9213817443014,1517965.8187516322,626831.388165529,0.38302,100000,0,1105025,11543.745103160094,0,0.0,0,0.0,41681,434.7035779576913,0,0.0,42063,435.5184121180465,1110940,0,39901,0,0,9614,0,0,83,0.8670671193523114,0,0.0,0,0.0,0,0.0,0.05047,0.1317685760534697,0.305131761442441,0.0154,0.3627208816264488,0.6372791183735512,22.91647387764868,3.9556385783907952,0.3023779724655819,0.2926157697121401,0.2052565707133917,0.1997496871088861,11.502134938944604,6.362244584700335,16.423424832229195,11607.760027154638,46.180643774907765,14.47744232598976,13.918234579541542,9.095197653213788,8.689769216162675,0.6010012515644556,0.8203592814371258,0.7110927152317881,0.5963414634146341,0.1177944862155388,0.77431906614786,0.9296296296296296,0.8524590163934426,0.7644230769230769,0.1286549707602339,0.5188191881918819,0.7265500794912559,0.649643705463183,0.5392156862745098,0.1148325358851674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407534940247,0.0046224492899066,0.0068803848144427,0.0089697486845045,0.0112778896414261,0.0133470434924254,0.0156065239551478,0.0176364322967166,0.020014105958234,0.0223910394889068,0.0244467450465871,0.0266050808314087,0.0285820036190162,0.0307243869027387,0.0328821113885392,0.0348430975317319,0.0369427015385889,0.0390828448410022,0.0412586540260712,0.0434144054997135,0.0586441987450538,0.0724498126478407,0.0861267613022357,0.0994699981071361,0.11148014592691,0.1265489532670755,0.1383334217365936,0.1486929495912806,0.1589275990561505,0.1684834453412221,0.1794046401464176,0.1904375662405641,0.2008107638134156,0.2115000054637046,0.2203756828348776,0.2297952407304925,0.2376556629541679,0.245935370707684,0.253584229390681,0.2606918347016592,0.2664708399347758,0.2724838962344661,0.2780953057143195,0.2824578434544997,0.2872146673142302,0.2920035938903863,0.2954062367150966,0.2987368180025696,0.3026377157071047,0.3059665052195373,0.302584268149804,0.2988885220644877,0.2971519477411271,0.2948303249097473,0.2922597402597403,0.2890320211740587,0.2846560846560846,0.2849240638910709,0.2855511428522729,0.2850125473864061,0.2858609809376225,0.2870559974797196,0.2873652093956365,0.2884178146315367,0.2894553992860052,0.2916211008696557,0.2908439082683662,0.295915810573791,0.3001258829288761,0.3052880820836622,0.3098866213151927,0.3138157198772876,0.3157271139935146,0.3175900696336663,0.3196851869202661,0.3200520217545519,0.3250228032836728,0.3299636069551152,0.3340738683698973,0.3324186593492748,0.0,2.812886380368419,55.44821341706364,142.84356628454466,198.0689069825184,fqhc3_80Compliance_implementation,48 -100000,95742,48130,458.9626287313822,5121,52.20279501159366,4122,42.48918969731152,1562,15.876000083557894,77.41222784566315,79.76759590953965,63.350809200748486,65.08959826390837,77.20909052649415,79.56976863632838,63.27388594808964,65.01745727719499,0.2031373191690022,197.82727321127425,0.0769232526588439,72.14098671337865,242.81422,170.02045677676503,253613.06427691088,177581.89381542586,489.93532,325.3121017136121,511137.8496375677,339193.22942241863,471.45798,229.9715937645477,489024.9315869733,237539.1315895322,2881.50226,1355.5014258339652,2967070.971987216,1373273.1532383857,960.10749,441.2927847410581,983633.1077270164,441789.10254038486,1522.2446,653.0090355952697,1547794.5102462869,646153.9638765609,0.38433,100000,0,1103701,11527.866558041402,0,0.0,0,0.0,42081,438.9400680996845,0,0.0,42653,442.2197154853669,1108197,0,39772,0,0,9527,0,0,110,1.1384763217814542,0,0.0,1,0.0104447368970775,0,0.0,0.05121,0.1332448676918273,0.3050185510642452,0.01562,0.3639925373134328,0.6360074626865672,23.16056600758297,4.0615359825855695,0.3076176613294517,0.2816593886462882,0.2074235807860262,0.2032993692382338,11.394957083624028,6.157927490423914,16.71408971426937,11664.6918329005,47.38783090942241,14.054840187276897,14.55704110322414,9.486425303798358,9.289524315123016,0.586608442503639,0.7855297157622739,0.7097791798107256,0.5719298245614035,0.139618138424821,0.7665562913907285,0.925601750547046,0.8655913978494624,0.7115384615384616,0.1929824561403508,0.5120109814687714,0.6946022727272727,0.6450892857142857,0.527047913446677,0.1259370314842578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0047737292859676,0.0070405388954266,0.009413843529125,0.0113665246698319,0.0139868682241563,0.0157775648735144,0.0179484301500974,0.0201735291412453,0.0225281473899692,0.024657702713782,0.0266075388026607,0.0287955423965786,0.0308329214038556,0.0332459706543946,0.0352262625844996,0.037141732935719,0.0389890648019421,0.0410562977595259,0.0428976207341972,0.058151674601186,0.07267304975671,0.0865031575855485,0.0988869953081276,0.1109411106773169,0.1262700025400051,0.1374438771719401,0.1489345842162991,0.1598409712722298,0.1698597202992347,0.1824964688884815,0.1935525788601687,0.2037946161298398,0.2132823875890911,0.2225037454833876,0.232212770205073,0.241440193098516,0.2487555465459378,0.2556798183366449,0.262582959846861,0.2684474394155175,0.2736430752670559,0.2790469317496185,0.2836087164750958,0.2882386494653932,0.2926661169433744,0.2957216913372056,0.2998299449224599,0.302253542941222,0.3060076245563297,0.3031074885379521,0.2998986412447951,0.2973007081259202,0.2946623720234672,0.2916254703755626,0.2874648422652984,0.2841875304509092,0.2841160760812923,0.2845641451550026,0.2857395800134565,0.2869768650896803,0.2879520667306299,0.2901676163540324,0.291334219858156,0.2931753712664776,0.293940019614928,0.2945340703971119,0.2991264339229645,0.3029198347394368,0.3067799264072653,0.3084007187780773,0.3150031453134829,0.3176346487962273,0.3226506926244852,0.3259170727222579,0.3312020460358056,0.3329853862212943,0.3356421927567781,0.3425726587728741,0.3407379518072289,0.0,2.2247165234801884,52.59618474171689,162.599130245165,203.02758641075224,fqhc3_80Compliance_implementation,49 -100000,95717,47754,454.5796462488377,5088,51.7462937618187,4079,41.90478180469509,1602,16.245807954699792,77.32373385663094,79.69369392941987,63.321321634088775,65.07515442181922,77.10963621771364,79.4861285303752,63.23829069510033,64.9979178552645,0.2140976389172948,207.5653990446682,0.0830309389884433,77.236566554717,241.67,169.2671637231739,252482.96540844365,176840.49753669996,485.07892,323.35208885446275,506087.236332104,337125.5263442422,467.40569,228.05668707375185,483881.5988800318,234848.1910992527,2911.38537,1377.8781527803094,2993197.2481377395,1391322.402915068,979.00092,446.0984320041351,1005445.3545347222,448753.9549713474,1567.30926,684.3995332959148,1592208.8657187333,675823.7612535419,0.38125,100000,0,1098500,11476.49842765653,0,0.0,0,0.0,41760,435.544365159794,0,0.0,42338,437.9472820920004,1114870,0,40013,0,0,9657,0,0,80,0.8357971938109218,0,0.0,1,0.0104474649226365,0,0.0,0.05088,0.133455737704918,0.3148584905660377,0.01602,0.3631421072365954,0.6368578927634045,23.24486668820322,4.130998988660392,0.3000735474380975,0.2691836234371169,0.2086295660701152,0.2221132630546702,11.251771889697006,6.061985610341988,17.385275139735164,11584.470830801132,47.22418404969347,13.55625680093883,14.009653854851909,9.73616823835246,9.922105155550272,0.5851924491296886,0.7987249544626593,0.7295751633986928,0.5969447708578144,0.1203090507726269,0.7274220032840722,0.9215686274509804,0.8715596330275229,0.6666666666666666,0.1111111111111111,0.5246417336595596,0.7104851330203443,0.6778149386845039,0.5705024311183144,0.1228813559322034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025329280648429,0.0048880911091504,0.0072777101096224,0.0091356218116781,0.0113136903792935,0.0137721684034674,0.0161240974176967,0.0181896173133291,0.020318427699324,0.0227661426596343,0.0247359245205619,0.0269798395793322,0.0290314284244637,0.0312960501231438,0.0334227910817506,0.0354495549421579,0.0376688209462258,0.0397588736369201,0.0415813170016532,0.0434832444148049,0.0579716198014012,0.0715399671345286,0.0858974224478877,0.0993372606774668,0.111596220366152,0.126855728968405,0.138092004753013,0.1484547931210625,0.1584007178183449,0.1687597190197866,0.1809380216466533,0.19179164232076,0.2029389051436278,0.2122716832549491,0.2214824922420054,0.2307743428995492,0.2392036582645549,0.2470585591153764,0.2541819295281082,0.2604715037766079,0.2663022121541342,0.271932592410803,0.2770958968901502,0.2812919302281004,0.2858270393666367,0.2903615348596495,0.2936221871792946,0.2963594704684317,0.2998613612511175,0.3034856720671275,0.3010974213963509,0.2983765473747986,0.2957690898328494,0.2924681109536343,0.2908299020409376,0.287275900607805,0.2836153372197734,0.2829654133368269,0.2827104792713033,0.2821133580176588,0.2829260997177095,0.2835826787194568,0.2839904470607952,0.2846157285286359,0.2853122970730417,0.2866266944734098,0.2875966118130222,0.2913373429480114,0.2963639557351133,0.3007441009112251,0.3044391669711362,0.3052148874906686,0.3079495268138801,0.3129537638517386,0.3217570865402666,0.3251926496739775,0.3295420078859569,0.3272361809045226,0.3263530051672559,0.3260128739113972,0.0,2.722464185568161,52.41522186125694,161.34779075737123,200.8763113698504,fqhc3_80Compliance_implementation,50 -100000,95776,47584,453.26595389241567,4915,50.12738055462746,3898,40.07266956231207,1473,14.951553625125293,77.38153749659537,79.72186248223588,63.350937847410606,65.08238268388988,77.18428307030744,79.53095122081353,63.2755843232234,65.01231007685091,0.1972544262879267,190.9112614223432,0.0753535241872072,70.07260703896634,241.13144,168.9172492757719,251766.03742064815,176366.9909745363,481.65422,320.6918199485134,502276.3531573672,334228.62663122494,466.33335,227.478343206131,483282.2627798196,234731.77448792596,2705.6775,1278.8856103996068,2781153.1698964247,1292265.5369823708,887.12932,407.3351811735308,910883.9479619112,409929.4929559909,1425.46118,616.3352405988425,1447846.5795188774,609328.7030348071,0.38053,100000,0,1096052,11443.910791847646,0,0.0,0,0.0,41417,431.778316070832,0,0.0,42133,436.25751754092886,1121169,0,40251,0,0,9629,0,0,94,0.981456732375543,0,0.0,0,0.0,0,0.0,0.04915,0.1291619583212887,0.2996948118006103,0.01473,0.360390243902439,0.639609756097561,23.38493228447728,3.995576193662108,0.3273473576192919,0.2791174961518727,0.2006157003591585,0.1929194458696767,11.310080726612092,6.232591371668628,15.83138273667531,11560.436764926237,44.851694338237856,13.29685563906765,14.46579789662263,8.786564816927797,8.302475985619779,0.594920472036942,0.8115808823529411,0.6849529780564263,0.5971867007672634,0.1263297872340425,0.7557446808510638,0.90929203539823,0.8440111420612814,0.7708333333333334,0.1511627906976744,0.5255233198677929,0.7421383647798742,0.6226826608505998,0.5406779661016949,0.1189655172413793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025319532500151,0.004906035234253,0.0071019844973824,0.0091100210231254,0.0112145921874046,0.0133249183098018,0.0154421657764912,0.0176262260280264,0.0198246438717325,0.0220291812470583,0.0244194864017379,0.026636693970561,0.0286451639436967,0.0306833743474634,0.0324091265420637,0.0344895281196077,0.0367258239768199,0.0386860027573624,0.0406910307286364,0.0426362642511322,0.0572200828611085,0.0710483103408603,0.0846988520207579,0.0974233412496584,0.1099320301385742,0.1251915496232417,0.1362971598134802,0.1467408061069351,0.1572471346551981,0.1664915966386554,0.1782765487916464,0.1908150904213896,0.2017260681949109,0.2108196721311475,0.2197544716520361,0.2286954307414665,0.2368605934896791,0.2450422699883083,0.2531641262928688,0.2606949577235958,0.2663390379278446,0.2718974263073003,0.2774407190586009,0.2827141129563333,0.2864615571333212,0.2909363922804253,0.2948839649271814,0.2981448538754765,0.3006257110352673,0.3041393933806582,0.302067093167034,0.2986570730233708,0.2959238213120288,0.292861676957701,0.2905255036942524,0.2867617854633222,0.2833262367727996,0.2829513713062938,0.2837156391666808,0.2846974457283845,0.284934111200164,0.2851888276947286,0.2856427901157335,0.2873857811455315,0.288723134667336,0.2901996370235934,0.2913978494623656,0.2943210491884988,0.2991696487509988,0.3065498408706927,0.3100743745774171,0.3155263157894737,0.3205705705705706,0.3226856407539172,0.325981308411215,0.3332158797275076,0.3388754534461911,0.341185865442204,0.3414434117003827,0.3474962063732928,0.0,2.360910449351755,50.74754824212675,147.7018128452251,195.3605445373012,fqhc3_80Compliance_implementation,51 -100000,95857,47757,454.1243727635958,4895,49.897242767872974,3925,40.35177399668256,1476,15.064105907758432,77.37299817448195,79.67564284383144,63.35320242165369,65.05774333813036,77.18692275277797,79.4917098474167,63.28334184369072,64.99089928936027,0.1860754217039755,183.9329964147396,0.0698605779629772,66.84404877009342,240.52688,168.49296465861786,250922.60346140605,175775.336864932,482.64492,321.3687747418725,502855.3887561681,334609.8282862256,458.70077,223.60384735155137,474834.0444620633,230401.56169222808,2755.37539,1276.0202164053685,2834764.680722326,1291558.3655351067,909.7551,408.39072118786805,935847.4915759936,412876.42779740464,1430.75208,602.5310764711188,1461902.8552948665,602170.2698740775,0.38122,100000,0,1093304,11405.572884609366,0,0.0,0,0.0,41584,433.197366911128,0,0.0,41524,429.4209082278811,1123422,0,40331,0,0,9486,0,0,77,0.792847679355707,0,0.0,0,0.0,0,0.0,0.04895,0.1284035465085777,0.301532175689479,0.01476,0.3486274509803921,0.6513725490196078,23.208270627224927,4.094309978890258,0.3156687898089172,0.276687898089172,0.2094267515923566,0.1982165605095541,11.54900623125234,6.194461796618258,15.608503943723086,11580.156723346206,44.821092852787885,13.302543954340576,14.087984778801978,9.036031569513792,8.394532550131547,0.5887898089171975,0.8130755064456722,0.6981436642453591,0.5742092457420924,0.1169665809768637,0.7670995670995671,0.9364035087719298,0.8607954545454546,0.7150259067357513,0.1168831168831168,0.5144404332129964,0.7238095238095238,0.6335963923337091,0.5310015898251192,0.1169871794871794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.004439174191979,0.0068977409898258,0.0090571248705399,0.0112132240814915,0.0134873778501628,0.0156758023911204,0.0178285317739746,0.0198939398583821,0.0220701086622874,0.0244557143588955,0.0267685835941107,0.0289305461347146,0.0308495198097767,0.032866318209466,0.0349991221819458,0.0369569490859052,0.0389426016310711,0.0409674337459499,0.043125871361092,0.0578912245578912,0.0717024900471259,0.0848723562501964,0.0974441901001743,0.1098649986310313,0.1251795673483184,0.1363467794059993,0.1467965004411655,0.1573386270491803,0.1671238454449992,0.1790691417810062,0.1902198586159932,0.2007173913043478,0.2104877595425272,0.2191681338028169,0.2282603880570567,0.2371544588474152,0.2453933898800818,0.2526115213174997,0.2598079058532621,0.2665186778120773,0.2725784383660964,0.2776916797785375,0.2827857074432416,0.2871667940644754,0.2906029198158497,0.2936291553065359,0.2969349632754721,0.3003362213888529,0.3037081954679075,0.3014820592823713,0.2990997182324239,0.2969792517102559,0.2946254565402549,0.2917432825197224,0.2881759853345554,0.2846020214782059,0.2858265010555255,0.2862516168561508,0.2868454297966228,0.2882765306883436,0.288455866449063,0.2892911450413481,0.2906091088757133,0.2915086916088418,0.2933860792222567,0.2951943783293664,0.2987938253859133,0.30264029855952,0.3073747936158503,0.3128930817610063,0.3152888001261365,0.3170487911538702,0.319227857683573,0.3244002998500749,0.3302945301542777,0.3309057806099226,0.3371059013742926,0.3402911288107663,0.354875283446712,0.0,2.290959516303186,50.16052915789107,145.1657319315252,201.45296898247332,fqhc3_80Compliance_implementation,52 -100000,95802,47376,452.45401974906576,4942,50.510427757249325,3941,40.6672094528298,1489,15.260641740255943,77.39816222968327,79.72859683952771,63.35848721039546,65.07989037598617,77.21042736601159,79.5422554180073,63.2874321086224,65.01145470769329,0.1877348636716789,186.34142152041025,0.0710551017730551,68.43566829287795,241.3279,169.06430274463625,251902.5490073276,176472.41389175202,484.31117,322.0620599949139,505005.60531095386,335652.9276148364,462.49244,225.292108476542,480046.3664641657,233056.46378320132,2782.23726,1304.4652101421918,2870208.419448446,1328211.915085151,917.98915,420.6174557747908,942875.0443623308,423935.84845436,1459.97524,623.0367216827593,1496175.8418404628,625530.9859681309,0.37912,100000,0,1096945,11450.115863969437,0,0.0,0,0.0,41623,433.9470992254859,0,0.0,41907,434.75084027473326,1120108,0,40188,0,0,9338,0,0,94,0.9811903718085216,0,0.0,1,0.0104381954447715,0,0.0,0.04942,0.130354505169867,0.301295022258195,0.01489,0.3620622568093385,0.6379377431906614,23.154482609437157,4.031735352455618,0.3006851053032225,0.2821618878457244,0.2009642222786095,0.2161887845724435,11.1965918278881,5.933204136193368,15.871500431448174,11467.16937534391,45.36033699190581,13.66616322797718,13.571379689475426,8.71792880767855,9.40486526677466,0.5874143618370972,0.814748201438849,0.7308016877637131,0.5492424242424242,0.1267605633802817,0.7570093457943925,0.9365079365079364,0.8918128654970761,0.7128205128205128,0.1708542713567839,0.5151953690303908,0.7347242921013413,0.6654804270462633,0.4958123953098827,0.113323124042879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0044085454840278,0.0064622813780789,0.0084795677959216,0.0107253596299496,0.0128137276853868,0.0149182248942782,0.0170693384483532,0.0189826213998917,0.0209228565582156,0.0229487035007017,0.0250177012036818,0.0268123240087969,0.0287769784172661,0.030732909265235,0.0330692885248949,0.0351105869695653,0.0373396654880287,0.0393244998700961,0.0413724877642403,0.0560100166944908,0.070320752151769,0.083627748015977,0.0965402724062552,0.1095286788037233,0.1252418050549148,0.1367560344461884,0.1475692412457572,0.1570055531824006,0.1658214412076895,0.1778237270612561,0.189342648871969,0.1997870560498897,0.2094585736759308,0.218628420705572,0.2286074660883804,0.236841225067731,0.2447127871285458,0.2528353672367645,0.258744060907894,0.2652072907155488,0.2714769806029446,0.2770843439063923,0.2818795965790671,0.285506261528007,0.2894837240785182,0.2920493308842823,0.2963725041914342,0.2988074604858111,0.3020672753863789,0.2999489013796627,0.2971736980883322,0.2940481548154815,0.2907665480119327,0.287593790235456,0.2846858938185367,0.2803109135055024,0.2800934625251221,0.2810245064669843,0.281642589334897,0.2819447291429849,0.2839766173952408,0.2855952157696235,0.2864309338305476,0.2863163408652587,0.2876269740753185,0.2874145353253988,0.2925700441075977,0.2952219610012446,0.2995233257794795,0.3040388594045156,0.3100783289817232,0.3133251079580506,0.3136476054860226,0.3129056183942147,0.3178823529411764,0.3224158653846153,0.3203748006379585,0.3332428765264586,0.3300861745972274,0.0,1.6853638794761416,51.80495432551027,153.58374568856314,192.85685302326272,fqhc3_80Compliance_implementation,53 -100000,95887,47801,455.2546226287192,5053,51.63369382710899,3995,41.18389354135597,1535,15.726845140634287,77.3584022892406,79.64057693173659,63.35300198276878,65.04172347630318,77.16142298549177,79.44354099686305,63.2798127761244,64.9702188870206,0.196979303748833,197.03593487354,0.0731892066443862,71.50458928258274,241.17324,168.8873922441009,251518.1828610761,176131.68859605672,480.53466,320.3840968259237,500654.8645801829,333634.76469795045,459.71487,224.8045211754645,476087.9577002096,231894.2906714973,2844.86627,1321.8073794105253,2935281.1851450144,1346891.8408235998,920.96181,417.804574782433,949797.6680884792,425057.8856178964,1495.42728,634.4177021004041,1533293.7937363773,640659.9918751289,0.38059,100000,0,1096242,11432.644675503458,0,0.0,0,0.0,41394,431.184623567324,0,0.0,41647,430.9447578921021,1119927,0,40238,0,0,9382,0,0,73,0.7613127952694317,0,0.0,0,0.0,0,0.0,0.05053,0.1327675451273023,0.3037799327132396,0.01535,0.3575070821529745,0.6424929178470254,23.57725244296739,4.068532233385434,0.3086357947434293,0.2785982478097622,0.2005006257822278,0.2122653316645807,11.323252560291555,6.132018151455648,16.56916929381314,11543.628641707031,45.812879783168526,13.595816217150515,13.92688337485909,8.972079200058918,9.318100991100003,0.5669586983729662,0.8059299191374663,0.6804541768045418,0.5443196004993758,0.1096698113207547,0.7506361323155216,0.9328859060402684,0.8609467455621301,0.7163461538461539,0.1505376344086021,0.4900568181818182,0.7207207207207207,0.6122905027932961,0.4839797639123103,0.0981873111782477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136297826241,0.0040530544831848,0.0062683206377864,0.0083765699722811,0.0106017483228298,0.0125077601034001,0.0145177065080076,0.0169310010709368,0.0194398782965602,0.0215908974739058,0.0237288482602598,0.0259375448524738,0.0280174184537014,0.030283703993252,0.032471815165193,0.0345571685216924,0.0365983593838896,0.0384611398426731,0.0405636962188321,0.0425821889305035,0.057095499702899,0.0709494755317815,0.0842574848418208,0.0971796379520349,0.1093626568079122,0.1250871448188444,0.1362721203772385,0.1475625963531976,0.1583654390027854,0.1671471902766315,0.1793165816161746,0.1903361162780637,0.2008738370576471,0.2108001180340769,0.2199199771363246,0.2293667300969155,0.2387620406707099,0.2473390205797394,0.2534730491386838,0.2605797533013411,0.2668324849606663,0.2727942552395209,0.2783632101162708,0.2821481241681954,0.2858514413494725,0.2904896363793294,0.2936889556724267,0.2970697976492162,0.300642064984759,0.3031003858962837,0.3002965359212832,0.297568564819914,0.2952637214020061,0.2929776133423901,0.2902137400041618,0.2863247863247863,0.2831655268490375,0.2837704756589961,0.2846581984566004,0.2844193542642423,0.2851458142619612,0.285967678360268,0.2873142904904194,0.2876938157191231,0.2895071046893346,0.2885636575573112,0.2902129587675577,0.2948865940785574,0.2996797103467483,0.304414602449494,0.3060282404055032,0.3086147049542442,0.3095059412132583,0.3148021047815145,0.3205321758822419,0.3208830548926014,0.3273514851485148,0.3308331644030002,0.3279584585952446,0.3262759924385633,0.0,1.8673938836996005,51.65737492267092,151.5702698870698,201.9538862632779,fqhc3_80Compliance_implementation,54 -100000,95731,47391,451.8285612810897,4956,50.54788939841849,3962,40.7704923170133,1457,14.854122489057882,77.38965647392791,79.75705348475286,63.34469261111818,65.09422499005804,77.19495678369262,79.56482588258963,63.26960375463124,65.02231991978056,0.1946996902352964,192.2276021632285,0.0750888564869427,71.90507027748083,242.89166,170.03330867470464,253723.09910060483,177615.7239292441,481.81252,320.77703961334066,502686.9039287169,334470.25479034026,461.68862,225.4190178417848,477918.2709884991,232190.99763877448,2753.6429,1295.2564868278796,2837318.214580439,1313896.9475173969,900.0171,414.7157499128797,922625.3042379168,415682.5687738343,1418.835,618.2938943843375,1448394.229664372,616962.1850321916,0.37837,100000,0,1104053,11532.868140936584,0,0.0,0,0.0,41524,433.109442082502,0,0.0,41819,432.5662533557573,1113470,0,39992,0,0,9551,0,0,85,0.8879046494865822,0,0.0,1,0.0104459370527833,0,0.0,0.04956,0.1309829003356503,0.2939870863599677,0.01457,0.3503381642512077,0.6496618357487922,23.033076552666675,4.005121104482604,0.3197879858657244,0.2847046945986875,0.1968702675416456,0.1986370519939424,11.014515127439026,5.837826167277821,15.677967785850011,11438.964152713195,45.47158769400443,13.919306279453018,14.403156140597506,8.531926636175676,8.617198637778225,0.5906108026249369,0.8182624113475178,0.7032359905288083,0.5653846153846154,0.1080050825921219,0.7410130718954249,0.9054621848739496,0.8559782608695652,0.7040816326530612,0.125,0.5233747260774287,0.754601226993865,0.6407119021134594,0.5188356164383562,0.1028192371475953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701482862004,0.0046835558529241,0.0067384487360334,0.0088282504012841,0.0111894371713102,0.0134006761435379,0.0153750471549025,0.0175784240667204,0.0196050372066399,0.0218337035406835,0.0238524775005637,0.0259532267006139,0.0281678557476818,0.030253104598719,0.0323252743625711,0.0343427035965274,0.0363244765671919,0.0383131030189853,0.040283941507218,0.0424789272429853,0.0565653612854055,0.0705134914487869,0.0837058021193998,0.0961914781693845,0.108415178335953,0.1240374851920798,0.1355500620669899,0.1455360088545491,0.1560477583886883,0.1657962186451038,0.1776215191781707,0.1890728118576219,0.1990060571788988,0.2087311221197904,0.2172042300793415,0.2265785072709351,0.2354338612536248,0.2431663894258868,0.2507882142128065,0.2581793213938319,0.2650977217532092,0.2698219733719856,0.2751932487057655,0.2796490472086565,0.2834294035556094,0.2885124404446797,0.2923886680169029,0.2954117946110828,0.2977928341457738,0.3006732276721605,0.297471245834677,0.2948446812601279,0.2926181475808378,0.2894349956759873,0.287086367134316,0.2832499542431822,0.2801997825710189,0.2801376790316792,0.280532637606519,0.2804489449086532,0.2804436942367976,0.2809092154981694,0.282001825120292,0.283643204957946,0.2836783250059481,0.2856663483131566,0.2865035516969219,0.2906291875720652,0.2956533863153125,0.2990798151731764,0.3047303732595582,0.3090706674442029,0.3112292774476071,0.3163127990430622,0.320752984389348,0.3241547577553154,0.3240532854363119,0.3214920071047957,0.3218976145805414,0.3347091932457786,0.0,2.367569670679364,53.1156999945224,142.1577309400899,201.43879589570565,fqhc3_80Compliance_implementation,55 -100000,95756,47919,456.5144742888174,4973,50.59735160198839,3936,40.46743807176574,1508,15.34107523288358,77.34687979821054,79.7042272099706,63.33382307926016,65.08042119565359,77.15229635662584,79.51400325783916,63.26062879564387,65.0113739384758,0.1945834415846974,190.22395213143284,0.0731942836162886,69.04725717778604,241.73028,169.4168993582269,252443.7737583024,176925.4193928409,483.94873,322.1920157732379,504752.10952838464,335828.65137448604,466.09331,228.2435160244189,482195.00605706166,234956.26847118535,2768.70031,1303.1846192581309,2851393.082417812,1321120.1248833532,922.41208,424.8889682311639,949595.1376415056,430192.2278348857,1467.42676,628.2807011862435,1495940.9749780693,626055.125911803,0.38084,100000,0,1098774,11474.716989013745,0,0.0,0,0.0,41683,434.6255064956765,0,0.0,42080,434.9074731609508,1117386,0,40044,0,0,9510,0,0,75,0.7832407368728852,0,0.0,0,0.0,0,0.0,0.04973,0.1305797710324545,0.3032374824049869,0.01508,0.3511893250821891,0.6488106749178109,23.202307072599943,4.100720284994627,0.3211382113821138,0.2761686991869919,0.1951219512195122,0.2075711382113821,11.52418220274906,6.237841984605849,16.224331330474957,11533.402674320836,45.281160087314845,13.245589716774964,14.460553919577553,8.545474510922594,9.029541940039731,0.586890243902439,0.796688132474701,0.7009493670886076,0.6028645833333334,0.1162790697674418,0.7521008403361344,0.9107551487414188,0.8390501319261213,0.7878787878787878,0.1306818181818181,0.5152949745083758,0.72,0.6418079096045197,0.5385964912280702,0.1123244929797191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901382189615,0.0044517908570964,0.0068121827411167,0.0089840137402563,0.0113331163017823,0.0135740616280727,0.0157406463451931,0.0180073499387505,0.0203737400584735,0.0224331408444935,0.0243602362204724,0.0266551667488089,0.0287638831756478,0.0307291344747306,0.0329225751852539,0.0351265299371485,0.037217297655538,0.0390684164116396,0.0412582251374754,0.043059012193979,0.0580333378563153,0.0723132283102157,0.0857352555701179,0.0982920805086972,0.1105947073887887,0.1260923317518518,0.1372395226082716,0.14751065797727,0.1572906666666666,0.1659579937236925,0.1782061072807649,0.1892309520979436,0.1997392721347094,0.2093785150320516,0.2183599929688873,0.2272863070539419,0.2362235454160255,0.2444579342596339,0.2520365790011118,0.259249081103363,0.2654706549147523,0.2712611685456331,0.2769878634460243,0.2814034835525528,0.2862758419877705,0.29061931231246,0.2942683917744859,0.297563082865347,0.3004887256930079,0.3033635357951851,0.3005455669327313,0.2969054882238162,0.2942863166772085,0.2919662799913538,0.289888139862212,0.2869142892052049,0.2834819666956041,0.282689504969951,0.2827135044890032,0.2846928248728256,0.2852449223416965,0.2866967505468303,0.2866537233043151,0.2861922073287686,0.2874373546267654,0.28700473785599,0.2889129135964038,0.2917322091486818,0.2962898083593175,0.3001822648387352,0.3017880704308658,0.3059389708604368,0.3089471702848538,0.3107199516506761,0.3151942152591082,0.3184161199625117,0.3251477944520236,0.3264479546375051,0.3282208588957055,0.3313656040928768,0.0,2.4029990609115908,51.59699101214289,146.853854374887,198.70445149016257,fqhc3_80Compliance_implementation,56 -100000,95756,47574,452.27453109987886,4984,50.941977526212455,3975,40.958268933539415,1492,15.226199924808888,77.36211040614715,79.72372721325958,63.32787542470121,65.0753670218587,77.16834166593469,79.53414184562578,63.253986958733,65.00574073810702,0.1937687402124623,189.5853676337964,0.073888465968217,69.62628375167412,242.00506,169.41397471969773,252730.96202848907,176922.5685280272,479.66008,319.1613267385731,500384.0177116838,332771.80201613787,461.50075,225.04900137226096,478717.2292075692,232464.23309693244,2797.90609,1303.5577093429808,2885806.5499812025,1325227.1809003935,913.87242,410.68795829112497,940404.1522202264,414918.06079109904,1447.72348,616.8207566038624,1479448.1807928483,614780.2534803506,0.38035,100000,0,1100023,11487.771001294956,0,0.0,0,0.0,41286,430.5944275032374,0,0.0,41745,432.7352855173566,1117886,0,40123,0,0,9486,0,0,75,0.7832407368728852,0,0.0,1,0.0104432098249718,0,0.0,0.04984,0.1310372025765742,0.2993579454253611,0.01492,0.3530888030888031,0.6469111969111969,23.03580274675054,4.150333289300112,0.310440251572327,0.2794968553459119,0.2085534591194968,0.2015094339622641,11.29861864955025,6.046019484166793,15.723915379356464,11559.921000552691,45.35270042334092,13.643353629979346,14.069233367020592,9.061493804745265,8.578619621595712,0.5763522012578617,0.7893789378937894,0.6920583468395461,0.5585042219541616,0.1210986267166042,0.7601351351351351,0.9112554112554112,0.8622589531680441,0.7305699481865285,0.1506024096385542,0.4983876746685776,0.7026194144838213,0.6211251435132032,0.5062893081761006,0.1133858267716535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795659706391,0.0046849331737887,0.0070551213074814,0.0091752441143298,0.0114032856924876,0.0134130443638733,0.0154895682499541,0.017724413950829,0.019897547059846,0.0222106168591791,0.0244380178849782,0.0264395915935657,0.0288577278011543,0.030616240725474,0.0325840145322434,0.0350178863133516,0.0369887128507818,0.0391666580206052,0.0415471290175044,0.0436539763553981,0.0585908141962421,0.0722909212646203,0.0855015468512401,0.0990018826449584,0.1106716032193074,0.1256081567034733,0.1369403776787608,0.1475645461804631,0.1578261241237818,0.1666344937048238,0.1786129782833505,0.1897081745756841,0.200496180714239,0.210376594673844,0.2186911772799823,0.2278081265859252,0.2359733762172786,0.2442361572131018,0.2516819259612221,0.2591706082435264,0.2653162798773077,0.2712651476161512,0.2770191920865182,0.2813713737712778,0.2855772849217621,0.2889649989528022,0.293415570929927,0.2968223490965502,0.3008008072758322,0.3040210942649967,0.3013510603940144,0.2981691728289853,0.2953852208993408,0.29232699323691,0.2913018356371394,0.2878697637482628,0.2856060366873993,0.2851115326748217,0.2854689811115456,0.2864116446258986,0.2865681090340359,0.2872133848537748,0.2886495029738385,0.2885810690818682,0.2894215389022847,0.2907590417550577,0.2927208041563135,0.2976094129365623,0.3029419927837913,0.3055544667006389,0.3081416247304098,0.3122060821402445,0.3177105965609286,0.3215059385971465,0.3243592107689471,0.3278362573099415,0.3336344474555857,0.3380895759017043,0.3375504710632571,0.346743295019157,0.0,2.1808236739581783,51.42064891610636,142.80619813116903,207.2841145508963,fqhc3_80Compliance_implementation,57 -100000,95768,47549,453.5544231893743,4825,49.36930916381255,3852,39.7105504970345,1482,15.140756829003426,77.32840490063373,79.68777960776184,63.31625382636724,65.0643388404995,77.14678163486026,79.50821459928622,63.24895445930841,64.9995858974759,0.1816232657734673,179.5650084756204,0.0672993670588297,64.75294302360624,242.24838,169.67532973407836,252952.9070253112,177172.8514055618,478.36689,318.6272375914824,499009.9302480996,332211.6481408011,458.76911,223.5544393565814,475527.6083869351,230709.506027364,2694.4256,1253.5266765442243,2780953.773703116,1276417.0215982636,868.98392,391.9367830424448,897161.515328711,399053.7552986859,1437.91158,602.127934919547,1471678.97418762,605063.2473926524,0.37921,100000,0,1101129,11497.859410241415,0,0.0,0,0.0,41164,429.2978865591847,0,0.0,41469,429.4962826831509,1116637,0,40026,0,0,9543,0,0,83,0.8666778046946788,0,0.0,0,0.0,0,0.0,0.04825,0.1272382057435194,0.3071502590673575,0.01482,0.35192536720921,0.64807463279079,23.326000738300973,4.054037408635901,0.3177570093457944,0.2827102803738318,0.2030114226375908,0.1965212876427829,11.511904523823397,6.335056653373517,15.757166483026332,11511.238158846954,44.22217857487573,13.361556669259553,13.950448235053486,8.60543818094339,8.304735489619299,0.5955347871235722,0.820018365472911,0.7156862745098039,0.5652173913043478,0.1096433289299868,0.7605633802816901,0.9244444444444444,0.8411764705882353,0.7704918032786885,0.1288343558282208,0.5265095729013255,0.7464788732394366,0.667420814479638,0.5025041736227045,0.1043771043771043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218963752622,0.0049392482606138,0.0071985541972952,0.0094920628468058,0.0116579520253911,0.013689700130378,0.0158467939304943,0.0179176706007269,0.0201496657056983,0.0221712694740721,0.0242222336118087,0.0263363246195864,0.0283425374592498,0.0302718180600904,0.0322064681237487,0.0342026109336723,0.0361871047210922,0.0382976075661885,0.0402244505637242,0.0421270790156114,0.0569141330327415,0.0710109915393384,0.0842979365878208,0.0972125875007882,0.1097742142804463,0.1244253268371046,0.1362947096062691,0.1475486596643574,0.1577789407354402,0.166929370261953,0.1790572194759458,0.1906683398602306,0.2008397328518285,0.2098121542128627,0.2181946232654363,0.2280750321123267,0.2357226529815362,0.2439669235529054,0.2510809737275152,0.2583586277990951,0.2641411220358589,0.2698535171091549,0.2743872853575697,0.2784099766173032,0.2832432432432432,0.2879691466029227,0.2920477037556686,0.2958616036763115,0.299650168437419,0.3028976141174608,0.3000915528987263,0.2983365411053065,0.2955735766176719,0.2933217943170345,0.2902445539265151,0.287501912192137,0.2838489384909657,0.284507781367356,0.2849300121050926,0.2851085058618109,0.286212947061898,0.2872518347992051,0.2885151729592474,0.2879499565904588,0.2883626360483196,0.2900619026651816,0.2908287543193791,0.2929088187601347,0.2958368084514873,0.3000982897582072,0.3051488805802063,0.3105307233329844,0.3145086383057774,0.3172940208037117,0.3233416597280044,0.3269723062601815,0.3285735758304524,0.3257361839451391,0.3270285087719298,0.3238834951456311,0.0,1.9508274529997405,49.748372391886754,145.8695441788686,195.3641986604667,fqhc3_80Compliance_implementation,58 -100000,95739,47779,454.6423087769874,5041,51.61950720187176,4033,41.63402584108879,1496,15.302019030906944,77.31464774318667,79.67973368995474,63.30648041847581,65.05572190814867,77.1266614194096,79.49447307137422,63.234695478558784,64.98733710243768,0.1879863237770678,185.26061858052856,0.0717849399170234,68.38480571099126,241.78968,169.400993338345,252550.87268511264,176940.424840812,482.68556,321.24628292757825,503700.5400098184,335076.1789109749,468.05772,228.28906545830333,485809.7327108075,236125.8313885532,2822.22676,1322.5119995568507,2913501.8435538285,1347088.271017005,928.05452,421.5348792895895,960872.9357941904,431838.51920842536,1463.61564,625.8507519163338,1498144.7059192178,626832.4544497906,0.38023,100000,0,1099044,11479.585122050574,0,0.0,0,0.0,41582,433.825295856443,0,0.0,42338,439.1627236549368,1112564,0,39932,0,0,9622,0,0,80,0.8356051347935533,0,0.0,1,0.0104450641849194,0,0.0,0.05041,0.1325776503695132,0.2967665145804404,0.01496,0.3637228778073848,0.6362771221926151,23.111503642072083,4.043847388564447,0.3101909248698239,0.2851475328539549,0.1978675923630052,0.2067939499132159,11.238064091275795,5.8527525461000005,16.08036415442861,11582.168777412906,46.43805490643817,14.076778333342023,14.413902048394975,8.771231532551084,9.17614299215009,0.5861641457971734,0.802608695652174,0.709832134292566,0.5601503759398496,0.1270983213429256,0.7566909975669099,0.929936305732484,0.8567708333333334,0.7311827956989247,0.15625,0.5110714285714286,0.7142857142857143,0.6447520184544406,0.5081699346405228,0.1183800623052959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044205168760328,0.0067906372439554,0.009155573620567,0.01151635383285,0.0135396715432576,0.0158027361483763,0.0179391884993159,0.0203524625355222,0.0223782809876745,0.0243404796325346,0.0263374063045487,0.0283595292955892,0.0304382322332017,0.0324738330683953,0.0346428202212343,0.0368556220615951,0.0391528132328829,0.0413022907589763,0.0436005625879043,0.0574471417384494,0.0711878244850108,0.0850206676598334,0.0981637675367562,0.1113724084111952,0.1273788995969491,0.1382007684306608,0.1482005962521294,0.1581794082435437,0.1672890376856382,0.1797938188798067,0.1907640965630823,0.20107635824863,0.2101848706343901,0.2180082246452708,0.2279348091569154,0.2366163790693253,0.2448155707664723,0.2532779894240063,0.2595650376630534,0.265702163177297,0.2720893179315354,0.2764182359005961,0.2807228048282978,0.285115227537923,0.2902768358098526,0.294487814642446,0.2980444014953081,0.302067841762903,0.3046730941467783,0.302350901246018,0.2988630434185593,0.2966500456492731,0.2938828445853447,0.2916963332146671,0.2886273310914093,0.2862108739275387,0.2866763891392334,0.287206844832288,0.2869622460235562,0.2877096015236957,0.2879235037185692,0.2887792899654555,0.2900490555148609,0.2909455491633048,0.2924218527807224,0.2928314498541365,0.2969914263445051,0.3012236668288952,0.3056331929299689,0.3110528219971056,0.3131952132426591,0.3173626373626373,0.3177711986639338,0.3224990633195954,0.3274950041142588,0.3300425273390036,0.3321813376702582,0.3366201040810737,0.3430544896392939,0.0,1.94750556698172,54.19232294754658,150.64992161653663,200.4935128905088,fqhc3_80Compliance_implementation,59 -100000,95810,48005,457.1756601607348,4961,50.41227429287131,3941,40.4968166162196,1484,15.102807640121071,77.3504688262772,79.68408302221627,63.33176974345843,65.06062678898073,77.15375545558777,79.490098475987,63.25685222797279,64.98942495030501,0.196713370689423,193.98454622927372,0.0749175154856445,71.20183867571939,241.42272,169.23872488920807,251980.711825488,176639.93830415205,486.15239,323.79614953538373,506795.35539087775,337338.8889838052,469.8963,229.36417515639053,486575.9941550986,236423.38269791604,2759.45965,1301.86341531383,2839729.0575096547,1318388.6601751698,913.90032,421.1729883748051,937382.3922346312,423106.91824945697,1438.17626,624.2488998951715,1466196.367811293,620444.0151118371,0.38291,100000,0,1097376,11453.66871934036,0,0.0,0,0.0,41844,436.1027032668824,0,0.0,42573,440.4341926729986,1113191,0,40014,0,0,9436,0,0,94,0.9811084437950108,0,0.0,0,0.0,0,0.0,0.04961,0.1295604711289859,0.2991332392662769,0.01484,0.3585564610011641,0.6414435389988359,23.24027392445446,3.966181753357439,0.3022075615326059,0.292565338746511,0.2014717076884039,0.203755392032479,11.312323512259908,6.300566793851293,16.00501335551198,11577.26657242331,45.38895312064901,14.32212187028947,13.350402648623326,9.009455605567394,8.706972996168826,0.5922354732301446,0.8308759757155247,0.6994122586062133,0.5768261964735516,0.1058530510585305,0.7749796913078798,0.9274509803921568,0.896969696969697,0.7155963302752294,0.1676300578034682,0.5092250922509225,0.7542768273716952,0.6236933797909407,0.5243055555555556,0.0888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629596612435,0.0048467396043519,0.0071551811630975,0.0094083699948182,0.0113818988140041,0.0133527530504573,0.0156646779868441,0.017819396080754,0.0199584879809412,0.0219071505348825,0.0242001640689089,0.0263293011028732,0.0283736810711861,0.0305364738354429,0.0326629537953795,0.0346658951653733,0.0366965829218554,0.0390407833049827,0.041132334296344,0.0429631788796468,0.0580834950240971,0.0727152968728763,0.0864649047429421,0.0989609052417024,0.1113862168512216,0.1273355596888738,0.1383884547276448,0.1489952448326117,0.1588533603800779,0.1681241426611797,0.1794104669558011,0.1898372885020812,0.1996784111773845,0.2085742706295158,0.2176955321091833,0.2275678670360111,0.2356716334616887,0.2436842401395375,0.2514477120472351,0.2582518267402707,0.2638496783449808,0.2707587980825441,0.2767736746232642,0.2813428188176679,0.2867103137488309,0.2908653846153846,0.2953341929668623,0.2986047459008045,0.3024996762077451,0.3057773788624754,0.3026865349896257,0.3001858608109038,0.2967314736545506,0.2935508104828224,0.2915775718698028,0.2885754066004682,0.2849774543153232,0.2847208554746441,0.2863647215306436,0.2863228060169673,0.2863919913339061,0.2868311703657024,0.2875242647519255,0.2890017598966339,0.2903828645359145,0.2911389119601329,0.2932547997961148,0.2995564440557256,0.3033083124826244,0.3075802323291987,0.3109750607724858,0.3146538179532837,0.3180378764358895,0.3221315769777711,0.3223232510669883,0.3268536840879991,0.3291710546111027,0.3376288659793814,0.3403630539241858,0.347565543071161,0.0,2.531258559280306,53.16058603367757,144.41275695513573,196.09426568411303,fqhc3_80Compliance_implementation,60 -100000,95714,47849,456.07748082830096,5121,52.44791775497838,4113,42.34490252209708,1542,15.734375326493511,77.30949638025908,79.67076952188663,63.31695901961641,65.0600929254689,77.11200347497233,79.47715347399705,63.24309181436831,64.99050455067736,0.1974929052867509,193.6160478895772,0.0738672052480993,69.58837479153601,242.70026,170.02906607796098,253568.19274087384,177642.83811977453,482.59831,320.6330019245189,503591.9719163341,334373.9807389921,473.06497,230.91888744920067,490433.06099421193,238320.35234336817,2862.09499,1349.4040741790243,2945284.430699793,1364856.3681164968,958.417,437.3633176947305,982519.5269239608,438133.4576913829,1498.3649,632.0746562162284,1528517.2702008064,627487.0580783325,0.38165,100000,0,1103183,11525.826942766991,0,0.0,0,0.0,41553,433.4893536995633,0,0.0,42753,442.9237102200305,1109624,0,39900,0,0,9512,0,0,85,0.8776145600434628,0,0.0,0,0.0,0,0.0,0.05121,0.1341805319009563,0.3011130638547158,0.01542,0.3724825898738942,0.6275174101261057,23.00946949073469,4.045937498347406,0.3172866520787746,0.2856795526379771,0.1964502796012643,0.2005835156819839,11.580185350668645,6.447431451089862,16.449012491887302,11579.984507608306,47.65367893651358,14.521424733064997,14.952798569552789,9.14502775388537,9.034427880010435,0.6010211524434719,0.8068085106382978,0.7233716475095785,0.5878712871287128,0.1272727272727272,0.7784911717495987,0.9087221095334684,0.9019073569482288,0.7373271889400922,0.1834319526627219,0.5238925706313219,0.7331378299120235,0.6535181236673774,0.5329949238578681,0.1128048780487804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153735530326,0.0042676992944611,0.0065437058680301,0.0086028276590558,0.0109388502007827,0.0133235620426069,0.0155327931508943,0.0177304602570253,0.0199092432852295,0.0217068702602572,0.0239034840455519,0.0262233813171242,0.0281748071979434,0.0301535482940794,0.0321772222394109,0.0343744511143025,0.0363995777359193,0.0384978376079899,0.0407845093698356,0.0428247010292095,0.0573412698412698,0.0716678180409889,0.085151464294705,0.0983458298718097,0.1107373349643565,0.1268508334038412,0.1386781542118051,0.14931823262052,0.1593322082416526,0.1687555617501688,0.1814646861771453,0.1916194888559335,0.201303505755881,0.2105067349462189,0.2200253206363186,0.2292294733108707,0.2378016774438525,0.2454753297068396,0.2534443396976477,0.2595555453680676,0.2651950968249742,0.2711491671345686,0.2761041205506694,0.2816767989256208,0.2865229961855244,0.2909135741585501,0.2940609911690391,0.2980902578978841,0.3012616253464936,0.304396634837619,0.3025925726297633,0.2991234226423922,0.2977245508982036,0.2957272609128846,0.2930601571901882,0.2892778390297684,0.2856848544397077,0.2857658959537572,0.2856874241465957,0.2861611052528105,0.2876232242587803,0.2884706720493944,0.2892331558425223,0.289201100695765,0.2889723767550514,0.2888339406559084,0.2887798196552905,0.2938943273092369,0.2975357042845141,0.300449668665194,0.3054713309499027,0.3090774673918783,0.3122222917579323,0.315346722243274,0.317781525201424,0.3193040206912767,0.3195500152021891,0.3256003256003256,0.3344262295081967,0.3358720487433358,0.0,2.436451440683832,54.18467055401381,158.7861008108024,204.10088512037987,fqhc3_80Compliance_implementation,61 -100000,95738,47686,453.9367858112766,5028,51.36936221771919,3984,41.08086653157576,1484,15.145501263865969,77.40440741590693,79.76233473895178,63.3594678928421,65.09955893637249,77.21452136965002,79.57558101833169,63.28723174242027,65.03101679544878,0.189886046256916,186.75372062008933,0.0722361504218298,68.5421409237108,242.19778,169.5823188078303,252979.77814451943,177131.67060919417,483.43142,322.016886849163,504400.8961958679,335800.61924122385,462.16828,225.382010708432,479687.07305354194,232999.04345578203,2754.49766,1293.1775716496174,2844577.0331529803,1318202.8783237778,900.63014,412.7343447109501,928832.8772274331,419217.264525005,1441.6112,617.0120773585642,1473984.4575821513,616198.5779358806,0.38137,100000,0,1100899,11499.080824750885,0,0.0,0,0.0,41706,435.0728028577994,0,0.0,41949,435.1041383776557,1115841,0,39973,0,0,9580,0,0,68,0.6998266101234619,0,0.0,1,0.0104451732854248,0,0.0,0.05028,0.1318404698848886,0.2951471758154336,0.01484,0.3588179218303146,0.6411820781696854,22.983594610589986,4.027643592684958,0.3180220883534136,0.2889056224899598,0.198293172690763,0.1947791164658634,11.4544627245487,6.165759153322661,15.75884117774518,11522.695505647014,45.80057457477886,14.200274298892406,14.436174966497235,8.696317869504435,8.46780743988477,0.5928714859437751,0.8053866203301477,0.7087608524072613,0.569620253164557,0.1121134020618556,0.7661157024793388,0.9111570247933884,0.8540540540540541,0.7659574468085106,0.1547619047619047,0.5173035328046143,0.7286356821589205,0.6488294314381271,0.5083056478405316,0.100328947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084633531442,0.004732708386116,0.0069186600929251,0.0092317066978114,0.0111943712952324,0.0135280944625407,0.0157146496815286,0.0179076150730079,0.0200057217590322,0.0220414428242517,0.0244129915651166,0.0265515790337975,0.0286621911977876,0.0308792023731048,0.0330286020884064,0.0351678795898114,0.0374267310121994,0.039533605120385,0.0414246074223418,0.0432654251551889,0.0584028481045697,0.0720272914682768,0.0848262985650751,0.097305310525375,0.1095568392646314,0.1247726407512372,0.1358726790450928,0.1467782462416421,0.1573791158308583,0.1661108549492263,0.1785806590566444,0.1900717353905413,0.2014029363784665,0.2111961513229827,0.2191883299046194,0.228139913412244,0.2362798585310885,0.2435744642576061,0.2510660980810235,0.2577720800329655,0.2647238944802006,0.2710400373526322,0.2763717064878647,0.2802842979155468,0.2845812951034048,0.287949883306719,0.2924354013231806,0.2965993125055494,0.3000167787400457,0.3031019978969506,0.3004075504075504,0.296631769348827,0.2933370739234114,0.2911002747450337,0.2891998935950108,0.2861450829284637,0.2824111263368457,0.2820265970465856,0.2823267814101911,0.2828739668688588,0.2844152940299619,0.2845334855253577,0.2869876707764078,0.2878774422735346,0.289327987781596,0.2910422651862204,0.2923927141487621,0.2966755898649069,0.3015635858234885,0.3053537059586001,0.3093716240547353,0.3131042454812947,0.3184221987183475,0.3186912373072583,0.317748356633645,0.3214659685863874,0.3222440647210041,0.3233007773569862,0.3298630136986301,0.3307271305707584,0.0,2.1116262604199645,52.84361625249776,146.47699953122574,202.49411315687436,fqhc3_80Compliance_implementation,62 -100000,95757,47712,454.4315298098311,4982,50.983217937069874,3955,40.80119469072757,1490,15.299142621427151,77.33232137485312,79.69841621793901,63.31916690730778,65.07118457801401,77.14145731727096,79.50777667575596,63.24724550299185,65.00132190526115,0.1908640575821607,190.6395421830496,0.0719214043159297,69.86267275286195,241.45748,169.0396472391271,252156.47942186997,176529.8069479277,481.20548,320.10815389560594,502044.6233695709,333809.06241382455,459.73058,224.30886699495895,476648.1823783118,231646.8154346733,2786.43267,1298.1739267886096,2879393.015654208,1325189.413607997,907.36219,411.9944296791001,936937.1847488956,419619.6410487997,1450.99476,619.0890083628445,1491159.6645676035,624781.0716299474,0.38092,100000,0,1097534,11461.658155539542,0,0.0,0,0.0,41314,430.9449961882682,0,0.0,41626,431.31050471506,1121209,0,40222,0,0,9405,0,0,75,0.7727894566454672,0,0.0,0,0.0,0,0.0,0.04982,0.1307886170324477,0.2990766760337214,0.0149,0.3595850941221667,0.6404149058778332,23.506917171837923,4.0020985958740525,0.3067003792667509,0.2831858407079646,0.2042983565107459,0.2058154235145385,11.064482385223382,5.969869211426063,15.966799713157227,11577.32903768987,45.39153722058808,13.78447472847306,13.707443860747263,8.947031629896916,8.95258700147084,0.5876106194690266,0.8214285714285714,0.7056883759274526,0.5655940594059405,0.1117936117936117,0.7686375321336761,0.9213709677419356,0.891640866873065,0.6988636363636364,0.1686046511627907,0.5118364418938307,0.7419871794871795,0.6382022471910113,0.5284810126582279,0.0965732087227414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.004777409244439,0.0068739338802696,0.0094723148223432,0.0119129974770082,0.0138242275445441,0.0161030431590111,0.0180195816190058,0.0202852614896988,0.022594185094185,0.024685536203061,0.0268053302671293,0.0288431876606683,0.0308148636401087,0.0327462936024018,0.0350472843780683,0.0372027045216869,0.0389870423587264,0.0407993598470283,0.042898206586265,0.0568395340097707,0.0709472891251124,0.0845228481231711,0.0978802599205097,0.1099595124625701,0.1251229547209324,0.1375322291425721,0.1486231891771067,0.1589503700618371,0.1684983648742829,0.1804885404101326,0.1917741516620498,0.20193625584684,0.2113188976377952,0.220277258224227,0.2297165633303808,0.238720546233488,0.246341106723814,0.2542120968016428,0.2616591286425831,0.2665556018325697,0.2721712180574235,0.2779308957995718,0.2826219767845805,0.2863473024814257,0.2897563499297874,0.2932209536433779,0.2965946632782719,0.3000724281538581,0.3033097923474228,0.3000322615334982,0.2971439561496298,0.2943590896951125,0.2905159988469299,0.288335556543649,0.2857710408899211,0.2829624709398871,0.2837470526591564,0.2838159730493075,0.2850097038975838,0.2854737314773237,0.2865319333701744,0.2869332441023925,0.2870531530325345,0.2887928965682745,0.291388665333991,0.2930785562632696,0.2964854028317253,0.3005756148613291,0.3052369274582707,0.3120224261880002,0.3176526616573182,0.3211995473406261,0.3212309558098992,0.3232482598607888,0.3273934311670161,0.3281928432400059,0.3298969072164948,0.3338714016680118,0.3334590720482837,0.0,1.9923674620272105,50.85178907951871,150.4510247835086,200.5037885695348,fqhc3_80Compliance_implementation,63 -100000,95712,47764,454.6765295887663,4949,50.307171514543626,3949,40.53828151120027,1488,14.99289535272484,77.41699606751023,79.77081554154702,63.36600846061516,65.10085141788971,77.21964186971,79.58320876038619,63.289223894834,65.03159578495443,0.1973541978002231,187.60678116083795,0.0767845657811676,69.25563293528114,241.0738,168.87265100136537,251874.1641591441,176438.3264390728,484.62489,322.4794141782641,505609.8608324975,336200.0942183469,461.68416,225.34180638911675,478627.1000501504,232461.4752931365,2759.19264,1298.587311602348,2828983.732447342,1302941.722670457,912.87452,419.7542873959675,930901.2976429288,415753.3142158156,1443.49616,627.0644105081461,1455502.1313941826,608950.6631006389,0.38234,100000,0,1095790,11448.825643597458,0,0.0,0,0.0,41620,434.0835005015045,0,0.0,41848,433.5088599130725,1120900,0,40198,0,0,9518,0,0,93,0.9716649949849548,0,0.0,0,0.0,0,0.0,0.04949,0.1294397656536067,0.3006668013740149,0.01488,0.3529526029526029,0.647047397047397,23.357475313696057,4.057713873836772,0.3226133198278045,0.275259559382122,0.2038490757153709,0.1982780450747024,11.660882433397536,6.429804075684343,15.914210830021451,11554.545227748344,45.10295201424327,13.321041861163868,14.336865285885628,8.90930597492345,8.53573889227032,0.5885034185869841,0.8150873965041399,0.7001569858712716,0.5577639751552795,0.123882503192848,0.7451146983857264,0.9070796460176992,0.875,0.685,0.1602209944751381,0.522005772005772,0.7496062992125985,0.635483870967742,0.515702479338843,0.1129568106312292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023482256725844,0.0047209474313385,0.0069275397598182,0.0093522476873242,0.0115096795184642,0.0136912396425008,0.0157377583887144,0.0178505817513778,0.0199991824554949,0.0222410917982137,0.0245317047177931,0.0266633824933033,0.0289896788519264,0.0312870104324363,0.0333739116081376,0.0351872519841269,0.037138271988404,0.0392175166734086,0.0413145832683733,0.0434017106483169,0.0587682476035336,0.0729474058726272,0.0860062744604278,0.0985684383250412,0.1103199468337605,0.125743118877864,0.1364157188932269,0.1482274033854998,0.1580685145214027,0.1669973722314581,0.1795214198022787,0.1900176363026519,0.2009109091699639,0.2113128400078652,0.220112517580872,0.2287307611449816,0.2383542709366744,0.2465240701817487,0.2535461998117764,0.2594919327154136,0.2650149716175127,0.2709703803236548,0.2762398940948418,0.2802704805218119,0.2847854040808404,0.2894934449436819,0.2926152692740222,0.2958408496150816,0.3001576716294458,0.3018756091778404,0.2996976822304333,0.2971552469432284,0.2939341128850911,0.2915205817426308,0.2883600237247924,0.2856619331195602,0.2825956749259189,0.2832073654483423,0.2839124751735728,0.2844182997271342,0.2845457418527263,0.2853475474730055,0.2860914760914761,0.2881911383716038,0.2894981301955553,0.2901193120190072,0.2920261659053741,0.29738369386425,0.3014657472538896,0.3060641627543036,0.3084296336110365,0.3136834396903442,0.3164016581080245,0.3187358916478555,0.3210458240946046,0.3242115027829313,0.3278344331133773,0.3326074044743615,0.338337801608579,0.3365599404318689,0.0,2.684443182708637,50.45200478478178,147.9264717000649,198.40711649291308,fqhc3_80Compliance_implementation,64 -100000,95701,47946,457.16345701716807,5056,51.68180060814412,4008,41.35797954044368,1541,15.705165045297331,77.3508434030137,79.74101146390694,63.31502979323547,65.08277104446208,77.14485750275331,79.53762250038119,63.23677440446522,65.00749605293419,0.2059859002603872,203.38896352575372,0.0782553887702448,75.27499152789119,241.47046,169.11652052259558,252317.5933375827,176713.43091774965,483.76718,321.9171062476663,504967.5238503255,335846.9569259112,459.22275,224.297510344912,476830.6287290624,232011.4949903766,2838.59375,1334.627576572104,2931455.1885560234,1359929.108966577,943.35028,428.5300261746108,974137.3653357852,436202.68703023257,1496.22208,652.6895392086745,1527666.043197041,652581.5957777757,0.383,100000,0,1097593,11468.981515344669,0,0.0,0,0.0,41609,434.2274375398376,0,0.0,41604,431.6673806961265,1117301,0,40077,0,0,9520,0,0,85,0.8881829865936616,0,0.0,0,0.0,0,0.0,0.05056,0.1320104438642297,0.3047863924050633,0.01541,0.3613381486409427,0.6386618513590572,23.3937962183442,4.0062567305377925,0.3018962075848303,0.280189620758483,0.2118263473053892,0.2060878243512974,11.271006534021438,6.194146525846058,16.669392583388927,11560.782712582788,46.033823812336585,13.891719422126936,13.645005435082304,9.438562887533626,9.058536067593712,0.5780938123752495,0.792520035618878,0.6983471074380165,0.568904593639576,0.1198547215496368,0.7348111658456487,0.9140461215932912,0.8535825545171339,0.696969696969697,0.1269841269841269,0.5096774193548387,0.7027863777089783,0.6422947131608548,0.5210355987055016,0.1177394034536891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022893726511137,0.004593807993023,0.0067100467977545,0.008892999430848,0.0112515005391767,0.0136203418838246,0.0159748645808893,0.018097514145066,0.0201368363997095,0.0223879068433665,0.0245000512767921,0.026509315749471,0.028748637139742,0.0306820523387595,0.0327973745588144,0.0347543830631822,0.0368298368298368,0.0388703215494156,0.0409086653976971,0.0429752238401484,0.0574854302007394,0.0712288894240333,0.0850197329750608,0.0977677726115587,0.10945740686047,0.1249563625977213,0.1371814331659785,0.1473952121315385,0.1575611163964041,0.1669277987637362,0.1791154181982817,0.1909835000649603,0.2005462815853048,0.2098414122951986,0.2195943714078087,0.2298505145493257,0.2376198930314094,0.2450544377765517,0.2523510971786833,0.2593182834409144,0.2653642606510486,0.2702955918864477,0.2752115279785746,0.28,0.2851255743842844,0.2902347024308466,0.2931515416849083,0.2967758346581876,0.3007179354504883,0.3040759794222398,0.3015107855546279,0.298901310451989,0.2966104078762306,0.2929756238280686,0.2902432884663794,0.2868894993894993,0.2837460347521424,0.2839914254389553,0.2846094881185589,0.2854653437177709,0.2867404242616467,0.2869830042243835,0.2876997336884154,0.2883338883338883,0.2910301699446248,0.2933326436662701,0.2942651118246859,0.2994934899474845,0.3035485101807208,0.3094289508632138,0.3158578080229226,0.3194175265832067,0.3233031393473136,0.3263554216867469,0.3261758691206544,0.3308633262761703,0.3337858220211161,0.3325453112687155,0.3361838588989845,0.3262599469496021,0.0,1.9417774549922864,53.29387338492513,147.53982407391052,203.13478272014697,fqhc3_80Compliance_implementation,65 -100000,95722,47780,454.6603706566934,5036,51.40928940055578,3956,40.732537974551306,1474,15.074904410689289,77.26691653433518,79.62771066118579,63.2951211478972,65.03959756527036,77.07475247652187,79.43717459074769,63.222880607756935,64.97007585654974,0.192164057813315,190.5360704380996,0.0722405401402639,69.52170872061458,240.19908,168.36146242447927,250933.578487704,175885.40672413795,481.94832,320.83274338219366,502888.3642213911,334572.50891351374,468.89067,229.8046980907536,485719.8763084766,236893.99799552732,2767.18268,1308.0351682850942,2852628.392637012,1328304.4702211544,898.94769,416.4916275680796,923710.139779779,419742.1375567996,1436.867,616.5253797523642,1470369.7582582897,617386.5623099646,0.38147,100000,0,1091814,11406.071749441093,0,0.0,0,0.0,41476,432.6800526524728,0,0.0,42470,439.6063600844111,1119274,0,40150,0,0,9776,0,0,63,0.6581559098221935,0,0.0,0,0.0,0,0.0,0.05036,0.1320156237712008,0.2926926131850675,0.01474,0.3511972633979475,0.6488027366020525,23.441091816621064,3.98026604840588,0.314206268958544,0.2848837209302325,0.2007077856420626,0.2002022244691607,11.382622008337556,6.133600767381647,15.894490214727131,11590.433898918294,45.71316244743111,14.012278781777812,14.03512322863133,8.822481191538854,8.843279245483116,0.5874620829120324,0.80301685891748,0.6967015285599356,0.5894206549118388,0.1073232323232323,0.7744299674267101,0.9201596806387226,0.895774647887324,0.7419354838709677,0.1827956989247312,0.5032991202346041,0.7092651757188498,0.6171171171171171,0.5427631578947368,0.0841584158415841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.0047653327114743,0.0071031375573324,0.0094472831442183,0.0117364684823952,0.0139594554692352,0.016147612008767,0.0183542430150774,0.02060865031741,0.0226211922698984,0.0248787838405789,0.0272781405281097,0.0293379676284885,0.0314556746902326,0.0335193801648629,0.0353100482722264,0.0374036948057327,0.0396937378096858,0.0416922197390988,0.0437183521223613,0.0589955100762242,0.0731630730584048,0.0866485471125896,0.0991572058374806,0.1114440353227899,0.1269683372841178,0.1382282996432818,0.1488838239679631,0.1586933276304533,0.1672588314852781,0.1790241904186969,0.189834328374381,0.2016204560799773,0.211174750583159,0.2205522621592436,0.2304302948912886,0.2385174418604651,0.2467977243282825,0.2552079783729753,0.2618886609281694,0.2677311118824482,0.2731559487035477,0.27849120024618,0.2829711491208093,0.2869968776955692,0.2920374707259953,0.2950443962980125,0.2984877030398696,0.3008632757816145,0.3039805401689515,0.2999770546234934,0.2969032347058418,0.2945162929914723,0.2918782093006437,0.2889797739440809,0.2854996473798792,0.2819049430863375,0.2815016930208093,0.2821455440804322,0.2822294051467043,0.2829980143119403,0.2846415303138092,0.2843778840506754,0.2854396279984798,0.2862813973631027,0.2882305427447302,0.2886853817185895,0.2930018590288937,0.2958055054948938,0.3004762476487773,0.3034145001830831,0.3071668712311222,0.3104947998739363,0.3131650957737914,0.3142642783456813,0.3169121979964643,0.3191974464204286,0.3189395460935931,0.3246930422919509,0.3305182341650672,0.0,2.268288676437201,53.27127426929852,147.10582142841065,197.69891957491845,fqhc3_80Compliance_implementation,66 -100000,95702,47248,450.492152724081,4808,49.04808676934651,3866,39.8110802282084,1397,14.189881089214436,77.288290147924,79.65716846242772,63.294707477804174,65.04369151686838,77.10751788942997,79.47978230934193,63.22679483467145,64.9794277444823,0.1807722584940307,177.38615308579142,0.0679126431327219,64.26377238608438,241.18116,168.98870148730387,252012.6643121356,176578.02500188487,479.00347,318.7891445814593,499961.38011744793,332551.79053881764,458.29462,223.8222742759075,474734.5719002737,230688.81349263812,2699.75741,1251.8551374931596,2781957.858769932,1269029.9445081186,876.54752,397.87199391869103,898530.2919479217,398359.3171457957,1361.88344,576.4958239053192,1384950.1577814466,570786.8760287324,0.37681,100000,0,1096278,11455.121105097072,0,0.0,0,0.0,41188,429.782031723475,0,0.0,41443,429.04014545150574,1118662,0,40086,0,0,9394,0,0,87,0.8881737058786651,0,0.0,0,0.0,0,0.0,0.04808,0.127597462912343,0.2905574043261231,0.01397,0.3497909615767469,0.6502090384232531,23.29859533405719,4.008242924531134,0.3264355923435075,0.2785825142265908,0.1950336264873254,0.1999482669425763,11.122863421591672,6.081980709870765,14.759631106013192,11444.5707861284,43.98366442233344,13.134682901146515,14.2525203605337,8.267598962401637,8.328862198251583,0.5944128297982411,0.8022284122562674,0.716323296354992,0.5716180371352785,0.1280724450194049,0.7700440528634361,0.9292035398230089,0.8776119402985074,0.75,0.1488095238095238,0.5214207250091542,0.7104,0.6580366774541532,0.5156794425087108,0.1223140495867768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686071359847,0.004338966555489,0.0066465072857896,0.0087669395964972,0.0109734765275404,0.0131352523699457,0.015517628107094,0.0177206145051804,0.0197794110130942,0.021808320114619,0.0237768257937565,0.0259386996776908,0.0282124570747054,0.030112665032646,0.0320061887570912,0.0340732932349476,0.036218303807167,0.0385533416355334,0.0402833250124812,0.0423445300205313,0.0568372899411992,0.0706627578264056,0.0843181293423731,0.0973068544185899,0.1091030012562416,0.124274702469188,0.1357424260122543,0.1463334079116992,0.1566920798537227,0.1660706807126059,0.178618413958203,0.1891689867726874,0.19960794990471,0.2089509754548838,0.2179563426507191,0.2271577546039494,0.2357156432013057,0.2427125369163829,0.2506852275182822,0.2570316625720387,0.2625684073833596,0.2686122831692452,0.2739389771015902,0.278249384643093,0.282593615752516,0.286617205920476,0.2899143326602029,0.2938650697585526,0.2973603995071016,0.3001017293997965,0.2980152959551893,0.2950343479398119,0.2922677722779258,0.2897282758022299,0.2880234356412086,0.2848503406568169,0.2815094817087636,0.2813503769255981,0.2816312601313881,0.2816595054288719,0.2827177126604543,0.2832163696577827,0.2845615135361137,0.2846884101469574,0.286621012193085,0.286555294482171,0.2871886221619023,0.2923370091531036,0.2967948941512922,0.3022604441989822,0.3075946497392881,0.3128335182543456,0.3196808179041207,0.3220607064848987,0.3258364826251267,0.3300011623852145,0.3330341113105924,0.3335318642048838,0.3417822838847385,0.3438897168405365,0.0,2.2750801679829653,49.18286363775315,137.34247090360407,204.9457980009291,fqhc3_80Compliance_implementation,67 -100000,95815,48042,457.5797109012159,4876,49.57470124719512,3911,40.07723216615353,1485,15.039398841517508,77.36488025655099,79.68048170734932,63.35773544642036,65.07162167484665,77.17467937323569,79.49544230234423,63.285817664349246,65.00416260714468,0.190200883315299,185.0394050050852,0.0719177820711109,67.45906770197507,243.7061,170.72016371431354,254350.2165631686,178176.41320702762,483.86905,321.37290282739065,504307.74930856336,334714.39380826656,471.16789,230.3390647905951,487166.9154099045,236860.69428250636,2744.5019,1294.474373672167,2817395.7522308617,1304069.697199986,901.46953,417.29589252524494,922026.3215571676,416704.9861976137,1443.23262,620.5179548549964,1464137.91160048,612603.1901605746,0.38058,100000,0,1107755,11561.373480144028,0,0.0,0,0.0,41580,433.20983144601576,0,0.0,42493,438.8248186609612,1110488,0,39884,0,0,9782,0,0,78,0.8140687783749935,0,0.0,0,0.0,0,0.0,0.04876,0.1281202375321877,0.3045529122231337,0.01485,0.3588582677165354,0.6411417322834646,23.18886894608653,4.0041552307258526,0.3157760163641012,0.2728202505753004,0.2073638455637944,0.2040398874968038,11.420599427466096,6.300201029822624,15.978949966354689,11560.691645469473,45.15455263509687,13.06140967103017,14.20644465199378,9.06793977435407,8.81875853771885,0.5847609307082587,0.788191190253046,0.7036437246963563,0.5980271270036991,0.1152882205513784,0.7671691792294807,0.9285714285714286,0.8743169398907104,0.7587939698492462,0.1602209944751381,0.5046006624953994,0.6865912762520194,0.6317606444188723,0.545751633986928,0.1021069692058346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384280360579,0.0045520905146194,0.0065447682441756,0.0088469507983585,0.0110737128969605,0.0134810410133181,0.0159024648820567,0.017988035200196,0.0204039908406934,0.0227442550795844,0.0249046857705079,0.0271235491518118,0.0290859010462702,0.0307431041580897,0.0328096975694229,0.0350679784038237,0.0371324251921266,0.038946910356832,0.0409515206263173,0.0430200378701179,0.0576068590024407,0.0718593542587772,0.0847903288322735,0.0977622832901051,0.1101329008614334,0.1258724275924694,0.1371716101694915,0.1477485330385236,0.1581894988372341,0.1671040089110713,0.1794858003442341,0.1908725354548599,0.2018447298090085,0.2111194836680536,0.2194481379325502,0.2281161535739561,0.2370311786394573,0.2453400107797341,0.252012545147813,0.2593214914386302,0.2663210999642119,0.2714532427827954,0.2768434975671973,0.2819130497149073,0.286336398262937,0.2899936029918315,0.2932828642456495,0.2970374979365341,0.3004315691544346,0.3035422916995631,0.3018008944039321,0.2991049365767942,0.2960472640315093,0.2939385632042939,0.2906702293475841,0.287431928042587,0.2834037569830192,0.2831350020517029,0.2829685818256368,0.2832464844028838,0.2841866311464645,0.2851968410426934,0.2866032517599732,0.288287080484426,0.2906770733575943,0.2918267732890227,0.2946835299776476,0.2976108574645068,0.3013555058692007,0.3033520881210872,0.3048564016203177,0.3089297090677426,0.3100398053958425,0.3118189438390611,0.3157349896480331,0.3205097946660373,0.3190062490474013,0.3253231017770597,0.3327904451682953,0.3271488072699735,0.0,2.8862430889968667,51.16959362104189,149.93884795651132,192.1392799033449,fqhc3_80Compliance_implementation,68 -100000,95640,47759,455.4056879966541,4937,50.44960267670431,3888,40.08782936010038,1432,14.60685905478879,77.2563444549925,79.66691519956204,63.27473565930678,65.05578743815542,77.07310933328156,79.4872796725142,63.20572725184808,64.99052523902317,0.1832351217109362,179.6355270478358,0.0690084074587034,65.26219913224907,242.05346,169.622105374488,253088.10121288165,177354.77349904645,481.55454,321.25711884005665,502951.1396905061,335346.14056885894,463.23403,226.74612802633945,480947.6997072355,234418.40533687425,2699.55689,1266.3217601950084,2787003.2308657463,1288430.322244885,883.05331,403.99862638649546,911196.5495608532,410302.9029553472,1395.23334,596.8711268624571,1425671.6227519866,595661.9816616691,0.3797,100000,0,1100243,11504.00460058553,0,0.0,0,0.0,41507,433.4169803429528,0,0.0,41920,434.8808030112924,1108899,0,39787,0,0,9556,0,0,66,0.6900878293601004,0,0.0,0,0.0,0,0.0,0.04937,0.1300237029233605,0.2900546890824387,0.01432,0.3500291205591147,0.6499708794408853,23.37040596561681,3.99434919827958,0.3004115226337449,0.2993827160493827,0.2037037037037037,0.1965020576131687,11.390463557182464,6.103472657341924,15.437339427785318,11554.619384540923,44.746599931867735,14.31381673350617,13.277109624301715,8.712848375769743,8.442825198290103,0.5879629629629629,0.8152920962199313,0.6815068493150684,0.571969696969697,0.1151832460732984,0.7758037225042301,0.940329218106996,0.8688046647230321,0.7277486910994765,0.1419753086419753,0.5059127864005912,0.7256637168141593,0.6036363636363636,0.5224625623960066,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0046521999128345,0.0070327484549264,0.0092143894832017,0.0116593753179367,0.0139054429876837,0.0161273869756814,0.0183088806244636,0.0206002086614978,0.0230499723400331,0.0252116361397568,0.0271511813127524,0.0293197166858837,0.0315077532167601,0.0335103196082887,0.0353576639314576,0.0371848565267871,0.0392254633092329,0.041134663211896,0.0430170336605159,0.0571795863337548,0.070882309803675,0.0847436274303951,0.0979694523100243,0.1098717881074236,0.1251111111111111,0.1364909897480525,0.1478042339310815,0.1586490674931865,0.1680276415610614,0.1798915562646199,0.190711933443106,0.2010259314520959,0.2105384261389783,0.2189901752141935,0.228287648429697,0.2368215060496947,0.2448223018502242,0.2524430707695105,0.2588480858774686,0.26532126256245,0.2712770321748813,0.2766537795593083,0.2805352214088563,0.2849685450408245,0.2893223058881619,0.292226343223737,0.2967671260795353,0.2997291096911332,0.3023958814599696,0.2997951592906043,0.2971479746486635,0.2957307176628325,0.2935579179097992,0.2912557723819455,0.2879809538437908,0.2845295106403222,0.2843264568094025,0.284220630077817,0.2846301168805599,0.2849253310791772,0.2865996119272957,0.2879874213836478,0.2891222437741065,0.290528233151184,0.2917077729892517,0.2938116489951391,0.2967776281589578,0.2989378373672297,0.3023960341503718,0.306512026716007,0.3088018530216888,0.3081151996001749,0.3117916385198528,0.3165553216802416,0.3205157992565056,0.3227913882702301,0.3228284419933031,0.3194777511324274,0.3219567690557451,0.0,2.24277297528458,51.429859388062354,144.4403650541685,195.97551728428087,fqhc3_80Compliance_implementation,69 -100000,95706,47570,452.3018410548973,4934,50.45660669132552,3967,41.01101289365348,1534,15.746139218021858,77.32722884548278,79.70382664033917,63.32110870231941,65.07608301092375,77.12782369337228,79.5039281576574,63.24628735635252,65.00257143366495,0.1994051521105007,199.89848268177468,0.074821345966896,73.51157725879887,242.17006,169.56214319819725,253035.40007940985,177169.8150567334,480.08135,319.6626776574099,501175.7047625018,333559.5967414894,462.33643,225.73194422532453,480114.55917079386,233624.0712641456,2777.4092,1308.5235797899977,2873748.7618331136,1338959.281330322,909.64871,418.5749003127331,940318.7574446744,427212.15003524616,1493.03782,639.8479267362072,1533807.5773723694,647929.8492093142,0.37898,100000,0,1100773,11501.60909451863,0,0.0,0,0.0,41317,431.2477796585376,0,0.0,41923,435.06154264100473,1114997,0,40034,0,0,9527,0,0,72,0.7523039307880384,0,0.0,1,0.0104486657053894,0,0.0,0.04934,0.1301915668373001,0.3109039319010944,0.01534,0.3552018633540372,0.6447981366459627,23.3890400494162,4.081037524710417,0.3103100579783212,0.2803125787748928,0.1998991681371313,0.2094781951096546,11.60405519133094,6.365463536317162,16.449893268977856,11530.17389240341,45.780282929012216,13.704955303298895,14.00457607706312,8.91453130869925,9.156220239950946,0.5787748928661457,0.7985611510791367,0.6904955320877335,0.592686002522068,0.1058965102286401,0.7470288624787776,0.9102844638949672,0.8596491228070176,0.7688172043010753,0.1398963730569948,0.5077088562208677,0.7206106870229008,0.625421822272216,0.5387149917627677,0.0956112852664576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386721201935,0.0048646512146426,0.0072334381657705,0.0094863747625867,0.0116024852299651,0.0139085457118711,0.0163461342361266,0.0182611093521799,0.0203607878428404,0.0225906544735845,0.0246128602194646,0.0266933703076054,0.0288720659932937,0.0310764443436955,0.0333240451200759,0.0356260147467915,0.0377825663551789,0.0399393694002346,0.0420324526731849,0.0439867414371781,0.0593175195061573,0.07275543415696,0.0864931768358559,0.0981578310591156,0.1099345012709495,0.1257312725464682,0.1371629293969076,0.1477794222558216,0.1584423908979221,0.1672566181833784,0.1793457772799241,0.1910679107224038,0.2018751767495486,0.2112435743191512,0.2205529507583261,0.2294388122541687,0.2380102012344163,0.2454105736782902,0.2523120567375886,0.2591570266865193,0.2656557471929621,0.2712360181588431,0.2765008048480257,0.2811590034870762,0.284983536444601,0.2884036887266988,0.2926951384368898,0.2957796670569668,0.298656718351274,0.3018872904843606,0.2986200948684778,0.2961057540201108,0.2933404698856273,0.2897126113252212,0.2875155943682053,0.2842626367899948,0.2800025315254023,0.2795359340227779,0.2808904622506638,0.2811978260097332,0.2812855358574278,0.2827078908032412,0.2842454325519312,0.2853836052438291,0.2856868810397333,0.2872152293768855,0.2883144214088672,0.29181550416745,0.2956734124214933,0.2987937512359106,0.3019065386540474,0.3048534409515718,0.3077213279678068,0.3078271473210883,0.3083521870286576,0.3130095710740872,0.3118131868131868,0.3166163141993958,0.3184188855339006,0.3252965939533104,0.0,1.6956552273482106,51.661494213508014,155.74142012354503,196.41146373307103,fqhc3_80Compliance_implementation,70 -100000,95778,47892,456.7541606632003,4982,50.81542734239596,3977,40.92797928543089,1462,14.919918979306312,77.38146625236273,79.70478013309246,63.35451413110488,65.06789754567063,77.19322936513257,79.51845427261016,63.28440556143131,65.00063140118407,0.1882368872301612,186.3258604822988,0.0701085696735646,67.26614448656676,242.15532,169.6461222808712,252829.79389839,177124.31067768298,483.50671,321.3363128424462,504237.6641817536,334920.23402915354,464.98869,226.80000335432555,480935.8829793898,233374.7565148828,2783.11944,1293.3922412220948,2867206.37307106,1311931.297533451,914.4738,412.4917307770432,939958.3620455638,416007.7397457883,1419.21184,603.0085494230674,1449758.1699346406,603301.7547184451,0.38127,100000,0,1100706,11492.263359017728,0,0.0,0,0.0,41610,433.8261396145252,0,0.0,42012,434.2646536782977,1115511,0,40007,0,0,9725,0,0,83,0.8561465054605442,0,0.0,0,0.0,0,0.0,0.04982,0.1306685550921918,0.2934564431955038,0.01462,0.3511025886864813,0.6488974113135187,23.24642200404244,4.0446499202192765,0.305758109127483,0.2841337691727433,0.2167462911742519,0.1933618305255217,11.227137804893234,6.145945633587686,15.723888508310132,11546.364886213289,45.43878348501114,13.77311348768773,13.719724162497814,9.47234464056349,8.473601194262095,0.5939150113150616,0.8212389380530973,0.7023026315789473,0.5719257540603249,0.1131339401820546,0.7532693984306887,0.9268817204301076,0.8459119496855346,0.7360406091370558,0.1137724550898203,0.5293286219081272,0.7473684210526316,0.6514476614699332,0.5233082706766917,0.1129568106312292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0045198427175807,0.0067862975624106,0.008906084978471,0.0110425330716747,0.0132235274955717,0.015737116764514,0.0179695711180726,0.0201062525541479,0.0219757734490096,0.0238700159816416,0.0259982763573685,0.0279010975459366,0.0302543672729893,0.0324652562992288,0.0343278495523127,0.0365801918519821,0.0384312343196002,0.0403166325587193,0.0422605599341988,0.0567904326591947,0.0708904467929266,0.0843637584033393,0.0978901889053581,0.1103766722540244,0.1259968270756213,0.1374262802834231,0.1485534243075809,0.1580600027769174,0.1678655274808914,0.1800480070611282,0.1909498837649348,0.2015525789336348,0.2112204724409448,0.2192642787996127,0.2284584454856611,0.2374649867758818,0.24556549125471,0.2530134156584114,0.2595456576279341,0.2655385541331975,0.2711025280898876,0.2754914840985217,0.2804441303644791,0.2843512145380385,0.2889050321976926,0.2932368417763445,0.2969844073655183,0.3005591798695247,0.3028110544419404,0.2998521107824684,0.2969020350992832,0.2946561665026016,0.2924209614551754,0.2897550111358574,0.2864375411064715,0.2831481247632277,0.2834995911692559,0.2846303038551839,0.2853642948444823,0.285770176615247,0.2869565217391304,0.2879245361597567,0.2887109331553776,0.2899080377403559,0.2921043100325969,0.2938600209092707,0.2987235367372353,0.3011926701206578,0.3047881773399015,0.310889480572228,0.3138571278716039,0.3187786448656013,0.3252488958754397,0.3254294249439881,0.3276690495722489,0.3347381095725467,0.3410174880763116,0.345228440118951,0.3473167044595616,0.0,2.280667877853199,49.709963582948895,149.54449130393223,206.1735237135788,fqhc3_80Compliance_implementation,71 -100000,95769,47696,454.54165753009846,4989,51.07080579310632,3949,40.78564044732638,1517,15.547828629305933,77.31912755708531,79.6669472235983,63.32066847763053,65.05755038542009,77.12294144813555,79.47291834491878,63.24671030152924,64.98662933316668,0.1961861089497603,194.0288786795179,0.0739581761012928,70.92105225341072,241.26564,169.00473413262185,251924.3387735071,176471.02858775132,480.38807,319.6424487472464,501170.7963954933,333324.6508544719,462.32872,225.3547189424961,479842.8614687425,233182.75695845293,2774.80568,1305.0165567591937,2867406.613831198,1333057.8710697545,931.92438,425.29699646289095,962074.8676502836,433210.45562965615,1470.05626,629.0377793219374,1508228.4037632218,632762.5004605182,0.38222,100000,0,1096662,11451.106307886685,0,0.0,0,0.0,41308,430.8701145464608,0,0.0,41711,432.74963714772,1120318,0,40219,0,0,9517,0,0,90,0.9188777161712036,0,0.0,0,0.0,0,0.0,0.04989,0.1305269216681492,0.3040689516937262,0.01517,0.3715930902111324,0.6284069097888676,23.440796104387,4.063488453442354,0.3137503165358318,0.2709546720688782,0.2180298809825272,0.1972651304127627,11.385925965789658,6.29270163800873,16.31268078953502,11594.2698481883,45.54768255515264,13.222451411061304,14.051865732599373,9.698173069710592,8.575192341781374,0.5902760192453785,0.7897196261682243,0.6933010492332526,0.6167247386759582,0.1232349165596919,0.75,0.9047619047619048,0.8343023255813954,0.7477064220183486,0.1461988304093567,0.5192096597145993,0.6950596252129472,0.6391061452513966,0.5723172628304821,0.1167763157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020253369654376,0.0044082327546894,0.0067164481960959,0.0090292307379796,0.0114104402477346,0.0135956738260364,0.0158450165689523,0.0179716538005963,0.0202143105457966,0.0226756208922831,0.0247095854736345,0.0266965119980285,0.0289090460323337,0.0309351628654428,0.0328934471053147,0.035035138486978,0.0372379522749624,0.0389191431979669,0.0406496461859783,0.0425363496229637,0.0578276027640341,0.0719687856313482,0.0856705334480082,0.0978905527046353,0.1093318433869573,0.1252114701404161,0.1368997115221449,0.1474171410331436,0.1576530884629758,0.1669775319440871,0.1798996489867993,0.1915489909646702,0.2025295806507743,0.2119459447639456,0.2214754026225468,0.230770934378668,0.2389030882730448,0.2472071909910112,0.2543517236683839,0.261506755209526,0.2672469673117881,0.273459260819699,0.2796622213800128,0.2828909474896803,0.2866922833726501,0.2910856635158814,0.2944411042637406,0.2983519702488601,0.3022113340592108,0.3055445544554455,0.3025078792123481,0.2989198486412108,0.2963907718759248,0.2940453467522702,0.2915812613254909,0.2875386641349952,0.2844616090789661,0.2840814050738779,0.2831015204199905,0.2830488218190899,0.2849657547063887,0.2858410220014194,0.2849278941750214,0.2850055865921788,0.2871444004321209,0.288073442213669,0.2889792205577191,0.2934384680371726,0.2993256699626148,0.3049879925987165,0.3076124255011739,0.3097588008655724,0.3141961767471012,0.316928685349738,0.3200825051565723,0.3230913568664243,0.3314103537270381,0.3350141185962081,0.3305921052631579,0.3313115996967399,0.0,1.7431654039938247,53.6017581592523,145.55216256095392,198.5615634339048,fqhc3_80Compliance_implementation,72 -100000,95694,47662,454.2291052730579,4996,51.00633268543482,3985,41.19380525424791,1530,15.685413923547976,77.34181859432726,79.724539233332,63.3271521787835,65.08550900631693,77.14124636319191,79.5243111758038,63.2516441751217,65.01203503229024,0.2005722311353537,200.22805752819292,0.0755080036618025,73.47397402668321,240.96116,168.75403026374076,251803.833051184,176347.55602623022,482.1136,321.016181464649,503352.03879031073,335005.6236176238,463.6769,226.66791399893955,481761.0194996552,234713.41772907192,2802.64445,1318.1477734839598,2896492.277467762,1345196.8184880556,942.81897,431.8574527905572,970581.4889125756,436627.9315218887,1489.27964,638.7031071305139,1528212.970510168,643493.9399993863,0.38031,100000,0,1095278,11445.628775053818,0,0.0,0,0.0,41403,432.19010596275626,0,0.0,41892,435.0220494492863,1120763,0,40213,0,0,9499,0,0,99,1.0240976445754175,0,0.0,1,0.0104499759650552,0,0.0,0.04996,0.1313665167889353,0.3062449959967974,0.0153,0.3573481509867791,0.6426518490132209,23.31426547811245,3.944819257935728,0.3109159347553325,0.2835633626097867,0.1994981179422835,0.2060225846925972,11.165157603910734,6.093117645238816,16.38492743820358,11536.823887782784,45.57039297285069,13.767619266530408,14.024587720763734,8.83268008967898,8.945505895877563,0.594228356336261,0.8061946902654867,0.7239709443099274,0.5723270440251572,0.1278928136419001,0.7605985037406484,0.9310344827586208,0.886685552407932,0.7164948453608248,0.1614583333333333,0.5222861250898634,0.7192192192192193,0.6591422121896162,0.5257903494176372,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873196220797,0.004368671254954,0.0066252041841258,0.0088663646889155,0.0111542685158823,0.0134804919768673,0.0157681762121721,0.017986382613844,0.0203395374032849,0.022602340079231,0.0247008520717339,0.0266206556568893,0.0288677187712187,0.0309134937400175,0.0329359549981937,0.0354158047165908,0.0374814768758873,0.0394945855871756,0.0412678928095872,0.0430635476607455,0.0570342205323193,0.0714592342082945,0.0851691313063464,0.0978335209755995,0.1097690903912488,0.124888935900148,0.1361388765094119,0.1477873939471359,0.1574830913228836,0.1664485961262092,0.17837948452831,0.1897411489826603,0.2010114742509108,0.2092339313632239,0.2178490105272421,0.2277731017985292,0.2371625316681733,0.245352407301191,0.2532903694290642,0.2601396999885492,0.2660452852880635,0.2716973190379871,0.2770926204017925,0.2818574902082909,0.285842631150825,0.2893971867070677,0.2937210756722951,0.297147072665064,0.2998770146935077,0.3030410929999472,0.2998304446119065,0.2976421255241631,0.2944249644431301,0.2917599156788287,0.2906830086210734,0.2871223484036854,0.2835476634332838,0.2831106307722539,0.2835884498687485,0.2841178040750956,0.2848805772565398,0.285795801113669,0.2860510231752852,0.2861471282805329,0.2878345382295207,0.2893943332466857,0.2898966378918673,0.2965283870159168,0.2970623291032742,0.3006331618519984,0.3017942312059959,0.3045524242584466,0.3093888231262849,0.3129292776813344,0.3172452199740115,0.3193902871322226,0.3229040097205346,0.3251902282739287,0.3229881900576765,0.3255902513328256,0.0,1.7372597966031054,52.78011952248505,140.51014267473164,209.6895429788185,fqhc3_80Compliance_implementation,73 -100000,95679,47626,454.0390263276163,4965,50.52310329330365,3932,40.51045684005894,1481,15.123485822385268,77.38307130315455,79.75958982826266,63.34642469116329,65.09745047665902,77.18568550339499,79.56483127985635,63.271278113947936,65.02541180988808,0.1973857997595587,194.75854840631257,0.0751465772153565,72.03866677093629,242.176,169.6880673903211,253113.01330490492,177351.4223500675,485.03281,322.6972251685749,506374.3454676575,336707.4542674723,464.5388,226.6985271263909,481376.069984009,233701.7504187896,2770.10744,1301.5714634928388,2860330.9399136696,1325473.785776229,904.12787,415.27807068056114,931963.7433501604,421036.7903934624,1437.65368,621.7103504254159,1471150.8272452678,623932.9818756657,0.38013,100000,0,1100800,11505.13696840477,0,0.0,0,0.0,41638,434.5781205907252,0,0.0,42062,435.5083142591373,1113698,0,40022,0,0,9619,0,0,96,1.0033549681748346,0,0.0,0,0.0,0,0.0,0.04965,0.1306132112698287,0.2982880161127895,0.01481,0.3472409152086137,0.6527590847913862,23.67429193737189,4.007636735224946,0.314852492370295,0.2713631739572736,0.2133774160732451,0.2004069175991861,11.232717993350288,6.120145092773816,15.860187547513709,11512.09213155234,45.02482486438316,13.147934083125326,13.973161389067975,9.297685937040583,8.606043455149283,0.5877416073245167,0.8163074039362699,0.6922455573505655,0.5792610250297974,0.1230964467005076,0.745819397993311,0.9126637554585152,0.8547008547008547,0.7053140096618358,0.1555555555555555,0.518640350877193,0.7438423645320197,0.6279594137542277,0.5379746835443038,0.1134868421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023688286446048,0.0043563714465179,0.0067747791604547,0.0091697469434176,0.0115296629556199,0.0135285075887903,0.0159024648820567,0.017893415264012,0.0200852473091901,0.0220814053478563,0.0240834153543307,0.0263084932688456,0.0286016949152542,0.0308083721313501,0.0330018363009883,0.034757175191459,0.0365992624207516,0.0385166272263046,0.0406102456373884,0.0426571896071953,0.0574347617157303,0.071732166411926,0.0850485722078848,0.0978823183041722,0.1103062892087089,0.126437875327751,0.1382969700824799,0.1493756514709949,0.1594117835380494,0.1676650556704566,0.1797012869625102,0.1915045472732581,0.2016413935539975,0.2100850440523819,0.2184320239365505,0.2281978837737521,0.236411556458908,0.2435357448533717,0.250749386865292,0.2580541680032995,0.2631036956471432,0.2688689180650144,0.2755497140421299,0.2799793700674071,0.284757505773672,0.2892475372039405,0.2938239159001314,0.2961977960450971,0.2995493162038956,0.3022819961196827,0.3002246405079297,0.2970454857771059,0.2939918991899189,0.2916035380863743,0.2881820877817319,0.285268471776044,0.2810938981979133,0.2806612274320915,0.2809930046067224,0.2815679287305122,0.2819065713008493,0.2830529436014212,0.2835500988450734,0.2830448291167332,0.2843667373335556,0.286742512189459,0.2885378832671678,0.2935771272467637,0.2975929978118162,0.3025914037422688,0.3070376874240172,0.3089740910990388,0.3138202316793657,0.3139804229246058,0.3227912108118047,0.3271028037383177,0.3298313110387689,0.3366221706326175,0.336322869955157,0.3338208409506398,0.0,2.2703198143417667,51.89355732654764,142.1842845795053,200.9330189264448,fqhc3_80Compliance_implementation,74 -100000,95684,48168,459.627523932946,5025,51.24158689018018,4017,41.30262112787927,1461,14.850967768905983,77.3960056150407,79.77935309484268,63.35197710932333,65.11274212381281,77.20520930452923,79.59648951071364,63.27771582594307,65.04477396692053,0.1907963105114731,182.8635841290378,0.0742612833802596,67.96815689227742,241.99648,169.5802212377503,252912.16922369463,177229.4440426302,488.55019,324.97249225007243,509869.0272145813,338913.3151698332,472.4102,231.0107009924764,489588.3533297103,238271.79089940872,2742.91349,1301.096425962383,2817106.8412691774,1310739.537632872,910.73537,419.2206034964756,933229.0456084613,419854.5297532263,1414.43304,614.8457407218646,1438514.4642782493,606209.3561241693,0.38384,100000,0,1099984,11496.007691986122,0,0.0,0,0.0,42067,438.892604824213,0,0.0,42796,443.2611512896618,1113539,0,39931,0,0,9598,0,0,77,0.7838301074369801,0,0.0,1,0.0104510680991597,0,0.0,0.05025,0.1309139224676948,0.2907462686567164,0.01461,0.3535837485626676,0.6464162514373323,23.25540633399536,3.8909717681302554,0.3196415235250187,0.2962409758526263,0.1959173512571571,0.1882001493651979,11.318213779945587,6.218717071879884,15.783293102039964,11646.553458763066,46.2509203891607,14.618267895769687,14.588220869485378,8.7253105342938,8.319121089611828,0.6034353995519044,0.8319327731092437,0.6892523364485982,0.5717916137229987,0.1309523809523809,0.7635350318471338,0.9384920634920636,0.8699186991869918,0.7029702970297029,0.1270718232044199,0.5306048533140166,0.7536443148688047,0.6163934426229508,0.5264957264957265,0.1321739130434782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0049279065522905,0.006952761819695,0.0092252984505969,0.0112404125892621,0.0137254103368223,0.0158548895255768,0.0181625131445956,0.0204154654562554,0.0223750742082744,0.024328480623334,0.0265819275747712,0.0284057017092786,0.0305099759999175,0.0326038732576015,0.0345971759938806,0.0367830617677829,0.0389150698582075,0.041018814156899,0.0429616659370896,0.0583497853404782,0.0726875013082703,0.0856261735180892,0.0984911413700646,0.1110267763019186,0.1268852459016393,0.138989093069643,0.1490317566776319,0.1592317224287484,0.1687205723049862,0.1801204105590798,0.1922573527025711,0.2026147342338915,0.2129896817068905,0.2220365259651013,0.2313499750927104,0.2401133093926349,0.2481098266545336,0.2554240072508922,0.2615206978153259,0.2681730014316723,0.2745187312483218,0.2799508692365835,0.2837083019364407,0.2879706174695144,0.2924931789691026,0.296395609877775,0.2994207050412605,0.3030287394871265,0.3066892753394587,0.3036901952370736,0.3003191824545542,0.2972168811665801,0.294347175027357,0.2918103639673776,0.2884401262907433,0.2856444619629483,0.2851166742924374,0.2853840924541128,0.2854125248508946,0.2855971984203859,0.2862244197225655,0.2875773559828882,0.2890998406797663,0.2911344137273594,0.2930455883112189,0.2927186242224661,0.2970263116923556,0.3014493761078864,0.3060018903591682,0.3083646573977628,0.3122069437858911,0.3138357705286839,0.3176718620585799,0.3239738805970149,0.3292841136926524,0.3324263038548752,0.3307939053728949,0.3352380952380952,0.3359878649981039,0.0,2.5290506560392445,54.29136310005647,149.6576981064138,195.9901897743248,fqhc3_80Compliance_implementation,75 -100000,95816,47618,453.6090005844535,4901,49.908157301494526,3941,40.47340736411455,1555,15.769808800200384,77.38566316619061,79.70625398034424,63.36611244363343,65.08393260451817,77.19363350439333,79.51934099720545,63.29400989269079,65.01640416910456,0.1920296617972781,186.91298313879656,0.0721025509426382,67.52843541360676,242.02024,169.54164825051066,252588.31510394925,176944.82496252452,486.89555,324.4451900325916,507516.5421224013,337973.549472076,467.23752,228.93399979948663,483524.5157384988,235688.3301311802,2768.87276,1301.7126765669193,2844914.8054604656,1313779.9501234277,899.49987,415.06740523999287,918769.5896301244,413219.4118918077,1506.36722,636.9222193948557,1528920.7647991984,629078.476432772,0.37813,100000,0,1100092,11481.28705017951,0,0.0,0,0.0,41789,435.4700676296234,0,0.0,42266,436.98338482090674,1116399,0,40064,0,0,9540,0,0,89,0.9288636553394004,0,0.0,0,0.0,0,0.0,0.04901,0.1296115092692989,0.3172821873087125,0.01555,0.3495696400625978,0.6504303599374022,23.01026410919577,4.068916592344627,0.3202232935803095,0.2770870337477797,0.1994417660492261,0.2032479066226846,11.730112627940365,6.610680420018053,16.603208173125715,11406.553427755463,45.43054083081798,13.416423837736929,14.481396334580166,8.755398667305018,8.777321991195876,0.5861456483126111,0.8012820512820513,0.6996830427892234,0.5814249363867684,0.1186017478152309,0.7710547833197057,0.920570264765784,0.8777777777777778,0.7393617021276596,0.1956521739130435,0.5029433406916851,0.7038269550748752,0.6286031042128604,0.5317725752508361,0.0956239870340356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019243819189126,0.0040854394128321,0.0066476540378155,0.0088391278727165,0.0112189267260669,0.0134405864983199,0.0156254777849127,0.0177058883559546,0.0197557361132403,0.0217053152950326,0.0239088328431322,0.0259265721705036,0.0281497620784986,0.0303136354746734,0.0324915703399705,0.0344884573671435,0.0364832845303009,0.0384539640750836,0.0404967602591792,0.0425390218522372,0.0577571009836544,0.0714599318433651,0.0846182065929458,0.0973364854215918,0.109203332876871,0.1247650028516507,0.1350876077883006,0.1456158996705282,0.1556510702744211,0.1655956817889731,0.177257525083612,0.1889217740715937,0.1996439581433719,0.2085961886883063,0.2176577170153187,0.2270345559461431,0.2349861890760046,0.2428829719137085,0.2510391066514151,0.2571255514159676,0.2624730102647592,0.2677111160365363,0.2734481009073639,0.2774319949347127,0.2817194668732674,0.2860141147591286,0.289464826657691,0.2926031979322403,0.2965432735715207,0.2992691134714481,0.2963460144441163,0.2939538201923473,0.2908766607679559,0.2882220684884123,0.2854686921081882,0.2813903743315508,0.2791895821480498,0.2795045303360477,0.2797904472619921,0.2799850275386343,0.2811787995368468,0.280585892836021,0.2816612186740424,0.2828969434071954,0.2831805164488725,0.2846404802296751,0.2866754090883174,0.2916143216080402,0.2948839495768812,0.2992660186470938,0.3037555061078061,0.305910290237467,0.3066241321073372,0.3128727821819554,0.3127402268679103,0.3139150943396226,0.3167351911070504,0.3216867469879518,0.3225718194254446,0.3225561049828832,0.0,2.5678820545623804,52.751284625363255,146.6007918573006,195.2560265529967,fqhc3_80Compliance_implementation,76 -100000,95755,47886,456.79076810610417,5015,51.026056080622425,3981,40.88559344159574,1484,14.996605921361809,77.37657405990127,79.72097766405493,63.3458979718325,65.07894176178658,77.18215034313047,79.5339254859529,63.27141726516954,65.01036867878607,0.1944237167707996,187.0521781020216,0.0744807066629604,68.57308300051557,241.6062,169.2842586442364,252316.829408386,176788.71979973518,483.81209,322.18330763756563,504561.0150905958,335766.9235419201,467.37385,228.357384375814,483688.8204271318,235121.92157254412,2761.66035,1305.6098744007406,2838089.060623466,1317489.1174358935,876.13354,407.7860639972645,896551.0730510156,407501.02964994457,1441.05038,625.4227827343078,1458809.4407602735,614408.8042704314,0.38272,100000,0,1098210,11468.946791290273,0,0.0,0,0.0,41617,433.8990131063652,0,0.0,42341,437.8048143700068,1116586,0,40031,0,0,9664,0,0,88,0.9190120620333142,0,0.0,1,0.0104433188867422,0,0.0,0.05015,0.1310357441471571,0.2959122632103689,0.01484,0.353796136928667,0.6462038630713329,23.18581818225748,4.010401671620709,0.3029389600602863,0.3019341873901029,0.1956794775182115,0.1994473750313991,11.288825395931594,6.174680671921865,15.945726396323584,11586.58027282724,45.73769547211415,14.645032515905868,13.723546394107318,8.778035350670345,8.591081211430614,0.5890479778950013,0.8011647254575707,0.693200663349917,0.5879332477535302,0.1108312342569269,0.7602905569007264,0.9223107569721116,0.8507042253521127,0.7205882352941176,0.1685393258426966,0.5116703136396791,0.7142857142857143,0.627497062279671,0.5408695652173913,0.0941558441558441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0045514906385264,0.006848759106313,0.0090922020399041,0.0111260271743552,0.0133196199631368,0.0153868115956806,0.0174786621472618,0.0196383115754608,0.0217317869609278,0.0239217776320104,0.0260929368411328,0.0284662753282,0.0304634397528321,0.0324873620138244,0.0344200277014036,0.0363869818686382,0.0383629856320348,0.0404000499022747,0.0424811756006623,0.0576262694792656,0.0720672669657704,0.0855252812228081,0.0982018055511765,0.1107270082839737,0.1263834420354964,0.1374469889737065,0.147934156904055,0.1583758730429953,0.1683537788453289,0.1803319296507307,0.1918203949147957,0.2019495425320119,0.2113619204971934,0.2196166507029538,0.2286955750642901,0.2369711114337081,0.2439845139217142,0.2524682811684332,0.2603025202386269,0.2664538367224188,0.2720014028524666,0.2771807875542315,0.2814116069718445,0.2859848484848485,0.2907604010148533,0.2939816839290846,0.2977272727272727,0.3010206718346253,0.3044073688784714,0.3017517954225115,0.2993606103015834,0.2965349731839496,0.2941557880176363,0.2919399008215528,0.2885260909368324,0.2856782334384858,0.2861977080642788,0.2868230248153317,0.2872801563332741,0.2883456191098255,0.2894995479026614,0.289983743903964,0.2898209968280726,0.2906715705005732,0.2927025067329604,0.2938514621867752,0.2983205060293522,0.3026439544362002,0.308122807708982,0.311801691771837,0.3160864978902953,0.3201297486120641,0.3222573839662447,0.3287861915367483,0.3301278292482702,0.3293975174084166,0.3375694996028594,0.3367595347579118,0.3488546751783702,0.0,2.7045919927763493,53.27306024058519,144.99353424233772,198.93077424268975,fqhc3_80Compliance_implementation,77 -100000,95749,47637,453.5713166717146,5015,51.185913168805946,4022,41.41035415513478,1545,15.759955717553186,77.3313489084019,79.69707658315689,63.31030609897547,65.06307566576442,77.1305863540644,79.50089988191154,63.23386762381147,64.99111757278767,0.2007625543375013,196.17670124534925,0.0764384751639966,71.95809297674316,240.84214,168.7774344099492,251534.65832541333,176270.472182424,480.5922,319.06946569461724,501317.9041034371,332623.99157653574,469.16855,228.3541657642473,486572.4550648048,235848.37252928136,2816.47306,1325.979933745958,2900548.089275084,1343881.0470563232,950.91014,434.7344547181557,977660.4246519546,438581.4536050452,1493.36374,638.9336471839499,1524865.3040762828,636841.3198599214,0.37957,100000,0,1094737,11433.39356024606,0,0.0,0,0.0,41336,431.0645541989995,0,0.0,42426,439.5659484694357,1120572,0,40218,0,0,9407,0,0,84,0.8772937576371556,0,0.0,1,0.0104439733052042,0,0.0,0.05015,0.1321231920330901,0.3080757726819541,0.01545,0.3579773989657154,0.6420226010342847,23.082912062500544,4.006555556161737,0.3142715067130781,0.2779711586275485,0.209845847836897,0.1979114868224764,11.276312901577834,6.239068806849058,16.522134335057917,11589.51952818752,46.252307895528034,13.789208429323088,14.40511240227326,9.3659482888657,8.692038775065987,0.6006961710591745,0.8237924865831843,0.7096518987341772,0.5817535545023697,0.1344221105527638,0.7546862265688672,0.9209401709401708,0.8637602179836512,0.7033492822966507,0.1693989071038251,0.5330948121645797,0.7538461538461538,0.6465997770345596,0.5417322834645669,0.1239804241435562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0047152113732926,0.0069931489469677,0.0092156065840276,0.0115668680949765,0.013667240378446,0.0159272363899623,0.0182157917845145,0.0203029590156389,0.022430710613106,0.0246351394316072,0.0268046109273224,0.0289595554183389,0.031042905582982,0.0332166929881604,0.0353242885506287,0.0372683027855441,0.0389875887260802,0.0412590829235838,0.0430589117573535,0.0582401636862818,0.0717133558669331,0.0853099461829778,0.0981670575121197,0.110324975220903,0.1260392206638319,0.1374996020502371,0.1478147868045717,0.1581023021182908,0.1676485422099174,0.1794979575559651,0.1912043404338267,0.2025191055759977,0.2121527245659741,0.2209635158641037,0.23090566456047,0.2399218313791178,0.2468789751556291,0.2544546589490409,0.2619492350885234,0.268581217950944,0.2744209466263846,0.2794528990660408,0.2831430183831034,0.2871534072244595,0.2905318729030984,0.2935049326456007,0.297947908445146,0.300626142418232,0.3037425110190292,0.3006638032018742,0.2981337437814363,0.295265015680153,0.2916258004961634,0.2892558311736394,0.2861808968527732,0.2828457949817173,0.2834562008598003,0.2835617604494764,0.2840519462061859,0.2843588644285794,0.2857929515418502,0.2867798729034274,0.2864484837697733,0.2877413797229068,0.2888571799195745,0.2893724180861298,0.2933704595939054,0.2974554885742324,0.3010586416081836,0.3039357939602793,0.3063428511221157,0.3108766233766233,0.3136072370900867,0.3168298540550526,0.3188288392547159,0.3176278240190249,0.3220338983050847,0.319403779611392,0.3184023889511012,0.0,2.283832953150905,53.41893511317319,148.43954150143102,202.79509665475496,fqhc3_80Compliance_implementation,78 -100000,95486,47384,452.1500534109712,4999,51.04413212408102,4023,41.4929937373018,1525,15.604381794189724,77.22623088476638,79.71427896820647,63.24095407219974,65.07674875313994,77.02803561852849,79.51980326278937,63.16567022352176,65.00551205376367,0.1981952662378887,194.4757054171049,0.0752838486779836,71.23669937627142,240.45472,168.44738128553004,251821.9634291938,176410.55367858117,482.3869,321.24066637560503,504581.9072953103,335817.6553375416,467.75476,228.60689272517664,485982.4372159269,236419.1983419483,2834.16262,1332.343053240236,2926615.1687158328,1353892.0755780078,910.14988,419.0771241603762,934354.0728483758,420113.5685063734,1475.8927,635.6981842707895,1511179.7750455565,634300.6202254521,0.37655,100000,0,1092976,11446.452883145172,0,0.0,0,0.0,41494,433.9170140125254,0,0.0,42220,438.28414636700666,1115898,0,40016,0,0,9494,0,0,87,0.9111283329493328,0,0.0,0,0.0,0,0.0,0.04999,0.1327579338733236,0.3050610122024405,0.01525,0.3516884113584037,0.6483115886415963,23.08263164160648,4.128596159138582,0.3069848371861794,0.2818791946308724,0.2120308227690778,0.1991051454138702,11.25178674187369,6.047380494193022,16.341006027388904,11525.862973710446,46.31798769315616,13.934284049210962,14.044118159669427,9.590031817277993,8.74955366699778,0.5863783246333582,0.8139329805996472,0.6923076923076923,0.5943728018757327,0.0923845193508114,0.753577106518283,0.9278752436647172,0.8531073446327684,0.6962616822429907,0.1186440677966101,0.5103074141048825,0.7198067632850241,0.6276958002270148,0.5602503912363067,0.0849358974358974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0045847829835576,0.0066907628891099,0.0089679715302491,0.0112803388173969,0.0133516791520154,0.0156022000224492,0.0178815931988637,0.0203382200988265,0.0224483104854408,0.024470356380358,0.0264137363767221,0.0285949647325335,0.0306015099632823,0.0329079919408999,0.0350461242196154,0.0370739196282234,0.0392295458561583,0.0411618239969995,0.0431777125732246,0.0582921621168983,0.0720228290861021,0.0858957641021326,0.0983779340001475,0.110637893134934,0.1256373021845818,0.1370276649584281,0.1479695268987004,0.1584190231362467,0.1676484499290536,0.1797706709278974,0.1911265390247871,0.200822174728486,0.2104772659993202,0.219076203297067,0.2280233824542686,0.2365853658536585,0.2443910798439649,0.2521013182288645,0.2580448953360264,0.2641929499072356,0.270030717283748,0.2746286717600721,0.2796241559128157,0.283886533118877,0.2884344321076189,0.292318705885308,0.2947884608017163,0.2987039970911357,0.3026442848261174,0.2995396681831068,0.2962100651631835,0.2941790139991259,0.2924430193257648,0.290004162454659,0.2865243444544911,0.2824719065506474,0.2828727828645636,0.2836247305573613,0.2836951666219959,0.2845534544092866,0.2854096321307979,0.2867241090848251,0.287903801534892,0.2887197529977741,0.2894873391448734,0.290758018319485,0.2932552238338398,0.2983560685554389,0.3025545713381841,0.307493305496301,0.3102045130264757,0.3133611821185859,0.3135841405722009,0.3176676170330175,0.3227040816326531,0.32778198334595,0.3339408667476711,0.3298743855816494,0.336232980332829,0.0,2.527674102150665,54.67743599039385,143.3184603229952,204.16907041350743,fqhc3_80Compliance_implementation,79 -100000,95716,47776,455.57691504032766,4990,50.911028459191776,3941,40.6201679969911,1438,14.678841572986752,77.36399481233721,79.74941760142363,63.33329461681414,65.09749867981238,77.1794116568246,79.56790457483851,63.262999172740656,65.03102892450113,0.1845831555126125,181.5130265851224,0.070295444073487,66.4697553112461,243.41108,170.38398564874146,254305.5288561996,178009.9310969341,482.15679,320.52381064154883,503169.752183543,334302.4997299812,465.9926,227.31996848986543,483940.20853357855,235179.9008246046,2757.31268,1294.8145006017376,2841872.988841991,1313917.1827089903,909.81201,415.2240316226929,933139.1930293784,416414.7390433082,1395.98758,594.5983226127952,1425020.6026160724,591594.9594329682,0.38156,100000,0,1106414,11559.342220736346,0,0.0,0,0.0,41458,432.5713569309207,0,0.0,42134,437.22052739353927,1112590,0,39923,0,0,9722,0,0,84,0.8775962221572151,0,0.0,0,0.0,0,0.0,0.0499,0.1307789076423105,0.2881763527054108,0.01438,0.3458069468432163,0.6541930531567838,23.41665795188617,4.029947170685667,0.3095660999746257,0.2834306013702106,0.2090839888353209,0.1979193098198426,11.249217723913468,6.193210462943769,15.257343342161198,11570.295243261207,45.09385576136603,13.705234375365844,13.725978932032245,9.221816031337893,8.44082642263005,0.593757929459528,0.7905102954341987,0.7073770491803278,0.5922330097087378,0.1358974358974359,0.7615449202350966,0.9186295503211992,0.8776119402985074,0.7117117117117117,0.155688622754491,0.521090909090909,0.6984615384615385,0.6429378531073446,0.5481727574750831,0.130505709624796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0044013102518076,0.0066088686753837,0.0089944508811512,0.0110706363580862,0.0134991951423273,0.0157289159084417,0.0178930705203492,0.019944360348566,0.0219132073153249,0.0240993508557833,0.0263536274751458,0.0286055194972176,0.0306848976311423,0.0327154887714663,0.0348435658305589,0.0368359990055523,0.038686646465485,0.0404677754677754,0.0426981745436359,0.0570560220579019,0.070979222274559,0.0848012421708614,0.0966557997686402,0.1090661860038579,0.1245942545385339,0.1360430960435202,0.1469208429518206,0.1568878640362114,0.1665059053008381,0.1792228475502803,0.1898673935146126,0.2006654777956591,0.2100123568843155,0.2189418105818942,0.2286308937329097,0.2369257536721651,0.2448729480548684,0.2521809168358839,0.2590824805988599,0.2651527414841708,0.2715244173270683,0.2779683876768728,0.2828394144845595,0.2865258557902403,0.2905190873513992,0.2951622780159216,0.298084369009686,0.3016643640166824,0.3055241352097856,0.3026704240472356,0.3003646933011599,0.2971630608637091,0.2940490585593366,0.2913228639872238,0.2882583944716734,0.2853033185040793,0.2852188919460137,0.2862418893048943,0.2865653646341247,0.2881586296778998,0.2891497673688137,0.2898776834747878,0.2913746690693897,0.294169590224577,0.2942472714074611,0.2963949665570797,0.301577896968941,0.303265832491025,0.3054113575585968,0.3083611136138391,0.3112089755688371,0.3169480925578486,0.3211446740858505,0.3223024280491234,0.3247014307674116,0.3227935533384497,0.3325865580448065,0.3337946305009687,0.3348837209302325,0.0,2.210256366504657,51.67157299585902,141.60427213918166,204.0161265065524,fqhc3_80Compliance_implementation,80 -100000,95682,47779,455.9269246044188,4956,50.76189878974102,3911,40.415125101900045,1478,15.133462929286594,77.31725194233033,79.72592723766829,63.30264576078415,65.08508970273357,77.13022417209153,79.54143235435002,63.23241219933286,65.01838641002713,0.1870277702387994,184.4948833182656,0.070233561451289,66.70329270643549,243.09428,170.22973891453202,254064.56804832676,177911.7550997387,485.95528,323.00215367970856,507411.3312848812,337104.76176721347,462.93751,224.9197513339578,481601.6805668778,233332.4881486042,2742.39191,1274.821141838992,2833441.90129805,1299693.1221409363,900.68735,404.3807496179313,930117.399301854,411486.12687566073,1434.3792,609.6470362415187,1469144.2277544364,608767.3719705021,0.38228,100000,0,1104974,11548.389456742125,0,0.0,0,0.0,41869,437.08325494868416,0,0.0,41783,434.4181768775736,1109204,0,39827,0,0,9550,0,0,99,1.034677368784097,0,0.0,0,0.0,0,0.0,0.04956,0.1296431934707544,0.2982243744955609,0.01478,0.3567014291232136,0.6432985708767864,23.25763047258017,4.010075413153757,0.3178215290207108,0.2807466121196625,0.1971362822807466,0.2042955765788801,11.342690558482774,6.15498141564319,15.80982826171636,11567.564692348002,45.08634057313112,13.613839944281954,14.283996396116798,8.451032394946115,8.737471837786252,0.5855279979544873,0.8087431693989071,0.7127916331456154,0.556420233463035,0.1088861076345431,0.7719449225473322,0.906113537117904,0.8706199460916442,0.7976190476190477,0.1515151515151515,0.5067297198981447,0.7390625,0.6456422018348624,0.4892205638474295,0.0977917981072555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025327484372942,0.0048674136794605,0.0069517034210499,0.0093385767561909,0.0113750826677519,0.0135581134766221,0.0157815273498867,0.0179388689114089,0.0200937161097583,0.022191031380946,0.024489586539448,0.0266551578860836,0.0284931958083709,0.0302808479049818,0.0322440717177559,0.0343300569063631,0.0363440347476339,0.0383305294203169,0.0403683087967538,0.0424276540738887,0.056177779635163,0.0696364245622853,0.0827927190275241,0.0960061443932411,0.1080376829023852,0.1241666137532541,0.1356916186412795,0.1465861529122336,0.1567753588337768,0.1662929785978651,0.1783879272272908,0.1900066030893798,0.2014212336220781,0.2116877004411072,0.2211661306665492,0.2310036457929322,0.2398920028561228,0.2484284862865046,0.2559560933017338,0.2621960290667735,0.2673797409805735,0.2732489510652969,0.2782733166138267,0.2837501197662163,0.2875857463728525,0.2914413138020673,0.2944670952249931,0.2972190108368376,0.3002895852725204,0.303731303981462,0.3016465658492036,0.2981818181818181,0.2957701000968679,0.2930117982626734,0.2902526968676272,0.2871482563922085,0.2835634617207495,0.2842470802142541,0.283863829787234,0.2850465628776569,0.2858795648360671,0.2862060825431797,0.2863826232247284,0.2868565828451789,0.2893460725945842,0.2895940537449971,0.2904890148830616,0.2940882701791622,0.2989399539716856,0.3028177339901478,0.30624349164667,0.3100084370385994,0.3152133116476917,0.3188153310104529,0.3203992164909989,0.3259189885272769,0.329279416235938,0.3281752411575562,0.3424218123496391,0.3517138599105812,0.0,1.7460350803695657,51.002601746127546,152.75069440491976,193.40375944283537,fqhc3_80Compliance_implementation,81 -100000,95857,47949,456.3255682944386,4975,50.76311589137987,3945,40.591714741750735,1465,14.876326194226817,77.4717338221379,79.75873488014132,63.40399372213196,65.09105102118123,77.28964617556868,79.58185447546168,63.33429895400539,65.02626126803632,0.1820876465692293,176.88040467963617,0.0696947681265669,64.78975314490754,243.44782,170.49567096410817,253969.788330534,177864.60140011497,486.73522,323.87307078455405,507229.0599538896,337328.8015344346,467.35662,227.8724356868553,484682.2558602919,235439.01864699964,2750.67562,1278.283229269462,2827384.103404029,1291465.826772481,884.26063,400.6150268616945,904049.3652002462,399541.6161618976,1425.82652,607.7663036033375,1447914.9775185953,598402.1360991419,0.38261,100000,0,1106581,11544.081287751547,0,0.0,0,0.0,41931,436.8486391186872,0,0.0,42407,439.48798731443713,1109649,0,39811,0,0,9384,0,0,69,0.7198222352045234,0,0.0,0,0.0,0,0.0,0.04975,0.1300279658137529,0.2944723618090452,0.01465,0.3672523653214906,0.6327476346785094,23.10696438835442,4.013904916157061,0.2940430925221799,0.294296577946768,0.2136882129277566,0.1979721166032953,11.246054721045638,6.0514665957720855,15.405048031054497,11555.615767563118,44.89498268891042,14.222408943782645,13.09351625290808,9.158691463473406,8.420366028746297,0.5837769328263624,0.8217054263565892,0.6982758620689655,0.5338078291814946,0.1139564660691421,0.7489469250210615,0.93158953722334,0.8823529411764706,0.6820512820512821,0.1216931216931216,0.5126903553299492,0.7394578313253012,0.6323185011709602,0.4891975308641975,0.1114864864864864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022067010831055,0.0044270648661243,0.0068547324017927,0.0092062525375558,0.0113608649703276,0.013582671156918,0.015667019802787,0.017982639561807,0.0204235851561383,0.0226928740898306,0.0248363870994172,0.0270857904722834,0.0291337935568704,0.0310937339232431,0.0330996804453149,0.0350069187715566,0.0371872187684255,0.0393109952636106,0.0411920461035252,0.0429497653217329,0.0573740575826146,0.071383766152302,0.0852076215230469,0.0977985603951032,0.1096330807095951,0.125181057906812,0.1365010020465076,0.1475334843987702,0.158050946981829,0.1673383207219566,0.1789380797623916,0.1916583805282953,0.2020089043327179,0.2107498471482225,0.220658978583196,0.2295634679371676,0.2377637177802036,0.2457950641126406,0.2529018084636552,0.2600146332540698,0.2656008311208588,0.2713787594313769,0.2767265902572032,0.2804771637919699,0.2852865230515584,0.2898965928512584,0.2933526372282269,0.2968187122634329,0.3009009474146165,0.3031183445954828,0.300401196881667,0.2977567304928623,0.2952434325744308,0.292244722102542,0.290139680477217,0.2860727919816271,0.2827149435041566,0.2832980283526153,0.2836713600704857,0.2844434225885183,0.2845046885154582,0.2857729941291585,0.2869172059067529,0.2877018358770183,0.2885990544746157,0.289693377995362,0.2896586627678119,0.2931643529995042,0.2970555861309851,0.3013933213979917,0.3063014918726341,0.3096592391587956,0.3144329896907216,0.3198404935670754,0.3197571228397944,0.3225958147190219,0.3262699128343853,0.3277810826888757,0.3370937416062315,0.3395731935604642,0.0,2.1888636642417163,51.625231412490656,141.19397471079594,202.0598819473099,fqhc3_80Compliance_implementation,82 -100000,95728,47403,452.0098612736086,4940,50.29876316229317,3906,40.0927628280127,1465,14.927711850242352,77.34438518034166,79.69739069305365,63.33412346583962,65.07234535336478,77.1522323189456,79.50962820501057,63.26030661243773,65.00278919729952,0.1921528613960674,187.76248804307727,0.0738168534018939,69.55615606526067,243.23838,170.28584156875078,254093.24335617584,177885.09273018426,481.68599,320.74574565940344,502486.8585993649,334364.42384610925,459.39458,224.16915735817645,474613.770265753,230222.39895567368,2709.99622,1283.5433236129124,2789773.8801604547,1299813.3683497258,895.49111,410.8733823619429,923406.276115661,417230.4563790563,1421.77846,613.0337715617039,1452400.948520809,611510.2039978907,0.37926,100000,0,1105629,11549.692879826174,0,0.0,0,0.0,41543,433.2483703827512,0,0.0,41624,429.6130703660371,1110572,0,39891,0,0,9739,0,0,85,0.8879324753468161,0,0.0,2,0.0208925288316897,0,0.0,0.0494,0.1302536518483362,0.2965587044534413,0.01465,0.3631067961165048,0.6368932038834951,23.066820122651617,4.078854153381413,0.3172043010752688,0.2828981054787506,0.1981566820276497,0.2017409114183307,11.580545351047991,6.298092034283947,15.754590429111042,11528.98703909738,45.20195082772395,13.586658538595415,14.166606569525012,8.795376589281982,8.653309130321537,0.5911418330773169,0.788235294117647,0.7158999192897498,0.5904392764857881,0.1192893401015228,0.761709120788825,0.9148936170212766,0.8783783783783784,0.7185929648241206,0.1629213483146067,0.5139457047229453,0.694488188976378,0.6467203682393556,0.5460869565217391,0.1065573770491803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.0045319517808441,0.0066051806532127,0.0086428404578369,0.010777395937125,0.0130607840542383,0.0155622592283076,0.0177458033573141,0.0198628807307578,0.0221937992428118,0.0244282318222805,0.0265418603935092,0.0284189637976948,0.0304631260234189,0.032515628546081,0.0345978567516456,0.0366210886959041,0.0384639316381134,0.0403770604252842,0.0423745585983479,0.0569823770149503,0.0707124618025032,0.0838140588617818,0.0963182635580654,0.1092070990941589,0.1245030031300228,0.1358945258222934,0.1466510613395754,0.1573280926238438,0.1673385367527232,0.1785845014318627,0.1895391605365642,0.2003827376616033,0.210065478077415,0.2191572903949582,0.2286827712950866,0.2380123419593139,0.2465979891585505,0.2534684015291595,0.2600746439529239,0.2667815507031828,0.2726783625730994,0.2784573524192594,0.2823331934536299,0.2868265073118593,0.2910803911654807,0.2945390781563126,0.2975000318386164,0.3006424204745622,0.3029203341295082,0.3004708731333244,0.2972883825126097,0.2935821126542558,0.2914459726652138,0.2895139146567718,0.2867551392141556,0.2825784192700915,0.282769356820975,0.2834787944906586,0.2836482804067893,0.2838120494528069,0.2851015268377144,0.2851601601601601,0.285914740077509,0.2852484956006809,0.2861294172590939,0.2879002550297534,0.2925478663496433,0.2965779467680608,0.2985186648232273,0.3017572390116095,0.3052365398798862,0.3101814327576532,0.314922915731178,0.3223056250579186,0.3252562907735321,0.32834919196496,0.3247967479674796,0.3246646591842321,0.3273422562141491,0.0,2.7699975592111983,52.37440383687544,145.65947802557469,194.02872122837263,fqhc3_80Compliance_implementation,83 -100000,95677,47855,455.7626179750619,5003,51.13036570962718,3910,40.34407433343437,1468,15.0401872968425,77.28108161739658,79.6675678258874,63.29287913429015,65.05545283586578,77.0910221541196,79.47876064771368,63.22014471789353,64.98520866237669,0.1900594632769809,188.80717817371817,0.0727344163966208,70.24417348908685,241.81894,169.39809500459216,252745.11115524103,177052.0553577058,483.14073,322.1876194323073,504463.0161898889,336237.5173054207,465.84726,227.80245394444364,483220.2932784264,235392.4109179052,2726.49617,1278.8507964702435,2816415.8261651183,1303361.0966797075,888.79707,404.1246424391634,917719.6086833826,411148.0945673079,1417.83452,608.7507608752281,1454309.85503308,613388.4560690302,0.38178,100000,0,1099177,11488.414143420048,0,0.0,0,0.0,41551,433.75105824806377,0,0.0,42164,437.0329337249286,1110230,0,39850,0,0,9447,0,0,85,0.8884057819538655,0,0.0,0,0.0,0,0.0,0.05003,0.131044056786631,0.2934239456326204,0.01468,0.3560229445506692,0.6439770554493308,23.46622439868939,4.023231582043402,0.318158567774936,0.2856777493606138,0.2061381074168798,0.1900255754475703,11.578508931241943,6.444286878374749,15.73770360602724,11586.774250183818,45.04897013983154,13.817678969402175,14.256437685644372,8.868960330059839,8.105893154725152,0.5953964194373401,0.8075201432408237,0.704983922829582,0.5744416873449132,0.1157469717362045,0.7530662305805397,0.9185336048879836,0.8324175824175825,0.7473684210526316,0.1404494382022472,0.5236323036844064,0.7204472843450479,0.6522727272727272,0.5211038961038961,0.1079646017699115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198095527528,0.0045316761118827,0.006697991617362,0.008899635277504,0.011187274983219,0.0135941509510814,0.0156922323959459,0.0175807571364397,0.0199131101456682,0.0218425981842188,0.0243107178377713,0.026500877886501,0.0285488034390201,0.0307869845652935,0.032871990174526,0.0350514397973427,0.0371153029408413,0.039254354098769,0.0413389922190321,0.043380375643618,0.058202827084008,0.0720381131877912,0.0850617180283819,0.0979240975137569,0.1104522962978593,0.1260817129678607,0.1372765487665067,0.1484108725289707,0.1593392494386827,0.1690325351658971,0.181408341332413,0.1916816575998612,0.2023611156489256,0.2116075339465615,0.2208805253184081,0.2304894143219953,0.238448642002906,0.2460096646653975,0.2536587582947004,0.2601302543169674,0.2656526926685741,0.2716461628588166,0.2776934569687196,0.282736594385611,0.286671612565827,0.2909472126295017,0.2941891045710708,0.2975286624203822,0.3010461362958738,0.3042277346795829,0.3019366672061283,0.2980113283995534,0.2945462761600813,0.2923807318202872,0.2900820172370164,0.2867848768601247,0.2840252607587724,0.2847080843238983,0.2854848904149371,0.2854621624030662,0.285553850185303,0.287372918232525,0.2878358819457554,0.2880544242044488,0.2890230410313146,0.2894545265456814,0.2900261720527993,0.2956385315343583,0.2998117023502336,0.3042690611216131,0.3065426468596198,0.3100220843411505,0.3137903074908002,0.3179437294223286,0.3225568076852023,0.3264743073916542,0.3277827782778277,0.3277261033049673,0.3238909673971138,0.3289023927079377,0.0,2.0734114610283347,53.53309011497281,141.64846872268694,195.65851639718707,fqhc3_80Compliance_implementation,84 -100000,95720,47288,450.4492269118261,4907,50.0,3939,40.50355202674467,1457,14.77225240284162,77.3612597271838,79.72737547119624,63.34108899169471,65.08973880098601,77.17404848243866,79.54627269929833,63.26900745408827,65.02283043643345,0.1872112447451428,181.1027718979119,0.0720815376064436,66.90836455256033,242.83336,170.0259200764132,253691.1199331383,177628.20004013088,487.41929,324.0266531850274,508588.2783117425,337890.30733078497,457.81047,223.15973330041788,474737.1604680317,230385.38435305032,2757.74614,1289.5586291052543,2836800.365649812,1303035.005750371,904.40283,407.2191192804307,926350.647722524,406935.9896368894,1415.77162,612.0792535160721,1436960.7605516089,601336.6707226235,0.3779,100000,0,1103788,11531.414542415378,0,0.0,0,0.0,41949,437.5783535311325,0,0.0,41461,429.6071876305893,1112846,0,39934,0,0,9791,0,0,89,0.9297952361053072,0,0.0,1,0.0104471374843292,0,0.0,0.04907,0.1298491664461497,0.2969227633992256,0.01457,0.3562792511700468,0.6437207488299532,23.125981347645737,4.091614055638834,0.3082000507743082,0.2734196496572734,0.2183295252602183,0.2000507743082,11.344759411779693,6.119628399657149,15.60697462608274,11427.08250563039,45.09786523609779,13.268574885395712,13.785977100958064,9.511896821816858,8.53141642792715,0.5844122873825844,0.8161559888579387,0.6886326194398682,0.5790697674418605,0.1129441624365482,0.7405857740585774,0.9021739130434784,0.8470254957507082,0.7233009708737864,0.125,0.516399416909621,0.7520259319286872,0.6236933797909407,0.5336391437308868,0.1094771241830065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025931666008245,0.0049375456241382,0.0072354934951594,0.0091637797035486,0.0116139530153564,0.0136453432720311,0.0156425264617706,0.0177770970541685,0.0198861022217223,0.0218673218673218,0.0238688443911291,0.0260771324397884,0.0283242998632123,0.030471912890299,0.0324434767354267,0.0345291016230745,0.036461731233237,0.0385617184662481,0.0407104308130647,0.0427203484313296,0.0572308656155372,0.0704843048388616,0.0833945242840658,0.0958685159675706,0.1076092799696429,0.1232860782510333,0.1346490344337571,0.1449838256576147,0.1547788187285682,0.1637131615904973,0.1754799668357183,0.1865310758911667,0.1979885838543082,0.2076082203760385,0.2159897974889509,0.2266122159876932,0.2349805985460059,0.242869985391617,0.250943674265181,0.2578648020782074,0.2634493122182406,0.2689405443289335,0.2744724865535788,0.2794251388091135,0.2837787069017754,0.2879828906451652,0.2916994369748948,0.2953434329324816,0.2985506871630444,0.3017711710287024,0.298473569643385,0.2956132768012733,0.2927922232991979,0.2895658818610418,0.2870445884428891,0.2834555453712191,0.2803685240108537,0.2810915988096406,0.2817653258984733,0.2813655761024182,0.2814901872994552,0.2829575021682567,0.2823468002923061,0.2842674620487023,0.2842810966119957,0.2854542617920849,0.2873069594152612,0.2908440315138579,0.2941299863650666,0.2986319784912225,0.3044715447154471,0.3069784512137576,0.3104410943606923,0.3142664367643751,0.3173298864370787,0.3199021777104926,0.3222356131364869,0.3249949969981989,0.322071448352257,0.330151153540175,0.0,2.4742031631657446,51.59932026191397,142.91715170689628,201.2816185864488,fqhc3_80Compliance_implementation,85 -100000,95667,47971,457.7126908965474,4923,50.34128800944944,3916,40.50508534813468,1528,15.700293727199556,77.2430810454354,79.64690073391498,63.27207635196621,65.04990267458705,77.04686472140594,79.45137452266479,63.19857101827738,64.97847333881124,0.1962163240294643,195.5262112501828,0.0735053336888356,71.42933577580379,240.49168,168.54502097213424,251383.69552719328,176178.4495032042,480.6371,320.4535463100232,501965.2753823157,334527.9507622365,467.2319,228.1179387768032,485615.0814805523,236301.6898134024,2721.49674,1280.9069944785913,2817003.982564521,1311334.4631733638,892.84646,406.5602573988442,925914.7877533528,417606.8733264819,1475.78714,626.9130820853971,1517482.3084240125,633709.2638411723,0.38258,100000,0,1093144,11426.53161487242,0,0.0,0,0.0,41292,431.1727136839244,0,0.0,42261,439.0751251737799,1117175,0,40151,0,0,9532,0,0,82,0.8362340200905223,0,0.0,1,0.0104529252511315,0,0.0,0.04923,0.128678969104501,0.3103798496851513,0.01528,0.3514619883040936,0.6485380116959064,23.2135983139926,3.9780610049995326,0.3079673135852911,0.2860061287027579,0.2058222676200204,0.2002042900919305,11.414223452243164,6.377347398486161,16.406551098544938,11584.043588462804,45.40450872992845,13.897166704684386,13.814806460004853,9.064686496342178,8.627849068897037,0.5934627170582226,0.8107142857142857,0.685737976782753,0.6240694789081885,0.1096938775510204,0.7495894909688013,0.8933601609657947,0.8407079646017699,0.7766990291262136,0.1363636363636363,0.5229799851742031,0.7447833065810594,0.6251441753171857,0.5716666666666667,0.1019736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021485325117561,0.004381960927515,0.0068931910703227,0.0092969853381968,0.0117583635938278,0.0139416467233565,0.0159775681876115,0.0185120895278549,0.0205947316753926,0.0226004321423816,0.0242026458824735,0.0264849654945777,0.0288261790657973,0.030937075040178,0.0330711587291756,0.0352497156447109,0.0373228640092815,0.0391497488271681,0.0409494190944738,0.0427942954839247,0.0579648052165189,0.0720218705156539,0.0857514802838785,0.0987695902493448,0.1103885821659681,0.1257198509485095,0.1374973443807095,0.1483119956507371,0.1591380822973059,0.1685370332585186,0.1803704942440687,0.191772803642079,0.2017250579920063,0.2106744341389165,0.2195810052787604,0.2299184646957679,0.2384502744212562,0.2457799012868765,0.2534234899710211,0.2604145172753743,0.2652044445989317,0.2714703816436432,0.2772081458678664,0.2817979037248459,0.2861764491255382,0.2904567387789858,0.2939436849162291,0.2973500057359183,0.3010522491663747,0.3042685103176596,0.301234368262182,0.2985768944920036,0.2956612473385129,0.2928984668787966,0.2903288201160541,0.2866098525489715,0.2848109290310311,0.2846882088031294,0.2851651261724556,0.2852370574154132,0.2860922430292341,0.2867891652146365,0.2876953370480539,0.2883751090043154,0.2891253693338778,0.2898308623929839,0.2895180895180895,0.2933530559577013,0.2979179855103046,0.3007938724219093,0.3065616557534685,0.3095491846957263,0.3118971061093247,0.3174095238095238,0.3209794837855724,0.3290269052980917,0.3343648460467275,0.3425718361524353,0.3464804163242947,0.3525812619502868,0.0,1.628797402254546,53.77687894424184,147.42383332249273,193.6415741250907,fqhc3_80Compliance_implementation,86 -100000,95837,47660,453.7913332011644,4964,50.82588144453603,3911,40.433235597942335,1436,14.785521249621754,77.44904619750217,79.77574320096282,63.38601454967061,65.10699281204724,77.26831025848999,79.59519873978739,63.31770419378503,65.04060340172315,0.1807359390121803,180.5444611754297,0.0683103558855862,66.38941032409207,242.69938,169.94639125268853,253241.8377036009,177328.58003974307,483.53184,321.9924460223397,504187.89194152574,335631.4951661047,464.00651,226.2730600047371,482006.2606300281,234409.84853063463,2695.19634,1270.029892467346,2788279.109321035,1301205.7999179298,882.67401,403.06928599565424,912042.9374876092,411604.98137009074,1391.37722,591.0210697934759,1433074.8667007524,598827.1520072235,0.38167,100000,0,1103179,11510.99262289095,0,0.0,0,0.0,41527,432.93300082431625,0,0.0,42003,436.10505337187095,1118322,0,40118,0,0,9754,0,0,83,0.8660538205494746,0,0.0,2,0.0208687667602283,0,0.0,0.04964,0.1300599994759871,0.2892828364222401,0.01436,0.3560270009643201,0.6439729990356798,23.311877134836088,4.043637828082569,0.3252365124009205,0.2886729736640245,0.1920225006392227,0.1940680132958322,11.3957840292458,6.282416600999454,15.259571870627012,11519.974078571682,44.999583481424,13.87142517217981,14.441766776679088,8.390162924797375,8.296228607767747,0.5983124520582971,0.8148804251550045,0.6973270440251572,0.5885486018641811,0.1198945981554677,0.7713815789473685,0.9051383399209486,0.8810810810810811,0.7383720930232558,0.1607142857142857,0.5202226345083488,0.7415730337078652,0.6219512195121951,0.5440414507772021,0.1082910321489001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023191517373383,0.0045513060930737,0.006920134343957,0.0092949076096341,0.0114605896051333,0.0137965442456701,0.0159864604467644,0.018187570805989,0.0200408788962698,0.0219070714512283,0.0243377568273812,0.026559934318555,0.0287212171052631,0.0309906719107139,0.0329001650165016,0.0347756012893627,0.0365256631855677,0.0385528676157985,0.0405199015054701,0.0425051270573293,0.0574140718719032,0.071397206423553,0.0846276383910792,0.0977600806875249,0.1098256150887729,0.1250673683543099,0.1365501012306681,0.1471260700802892,0.1564920516376827,0.1655814949668023,0.1780633367385343,0.1897497947366146,0.2003647733194372,0.2090521239102207,0.2188656047948889,0.2291906109097339,0.2381943903172287,0.2462941975156255,0.2541927890817735,0.2604385564184559,0.2657704955864536,0.271921538443597,0.277392494043828,0.2817658441031031,0.2857557963557116,0.2896039299969297,0.2933118955030411,0.2968292775617233,0.2994662747524752,0.3016444257644216,0.2988488803720032,0.2958122714009781,0.2934473333800547,0.2912340743723217,0.2879629082747623,0.2847974206107799,0.2811116344795101,0.2816284672483396,0.2830089693687595,0.2828390017863144,0.2834707061706393,0.2845377362181619,0.2853822046034744,0.2859993348852677,0.2867111216956418,0.2891119691119691,0.2903598175572949,0.294679992550748,0.2967262111628553,0.2998746769013863,0.3037803780378038,0.3067578227714962,0.308743680958622,0.3125376279349789,0.314963571828881,0.3181818181818182,0.3188493565480696,0.3215938820688267,0.327637645782479,0.332459752901535,0.0,1.4891707866273245,53.66863785895544,144.0222924119024,193.79781127816764,fqhc3_80Compliance_implementation,87 -100000,95801,47737,454.83867600546967,4852,49.38361812507176,3837,39.40459911691945,1440,14.644941075771651,77.3497797498425,79.6839749668202,63.33168066437421,65.06055905359469,77.1643376000477,79.50412217791762,63.26187966754388,64.99585057881553,0.1854421497947953,179.85278890257916,0.069800996830331,64.70847477915243,242.75174,170.04388648818951,253391.6556194612,177496.98488344537,482.03815,321.0802068419953,502535.4015093788,334522.8072989572,466.41582,227.7175030819727,483121.71062932536,234827.90835272596,2716.98091,1279.128702703416,2791929.865032724,1291067.1917461858,887.81404,410.5942929565352,906832.1520652184,408720.3610621205,1405.28714,595.7482788219322,1429437.0622436092,586993.1683366912,0.37899,100000,0,1103417,11517.802528157326,0,0.0,0,0.0,41505,432.57377271636,0,0.0,42181,436.52989008465465,1112233,0,39884,0,0,9734,0,0,67,0.6993663949228087,0,0.0,3,0.0313149132054988,0,0.0,0.04852,0.1280244861341987,0.2967848309975268,0.0144,0.3508008700810757,0.6491991299189243,23.203865408901432,4.026111525623644,0.3117018504039614,0.2767787333854574,0.2035444357571019,0.2079749804534792,11.180907294441342,6.114557923007187,15.24699327501426,11500.009010082204,44.23718824071282,13.22702713015858,13.612789460071513,8.724973454638109,8.672398195844622,0.5934323690383112,0.827683615819209,0.7090301003344481,0.5787451984635084,0.1228070175438596,0.776282590412111,0.9232409381663113,0.9013698630136986,0.7135416666666666,0.147239263803681,0.5113293051359517,0.7521079258010118,0.6245487364620939,0.534804753820034,0.1165354330708661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046843156539284,0.0070534028863133,0.0093671580530128,0.0114840809683653,0.0137773025813349,0.0159665579119086,0.018047630227739,0.0202070791213957,0.0222827255140789,0.0241924736804338,0.0262333795369372,0.0284201326409953,0.0306032086002018,0.0323894992005776,0.0344699318040917,0.0365290659158661,0.0387092759124996,0.0409155610044988,0.0427399371134664,0.0569106539248007,0.07079442428552,0.0838539264601064,0.0969586144565651,0.109002940897448,0.1243840541397906,0.1359378812147956,0.1469868233390808,0.157364581219223,0.1660695898403981,0.1779638189438752,0.19,0.2011856847601436,0.2100522507159878,0.2180336164033968,0.2267857340704876,0.2354529529250304,0.2435711474672513,0.2516334679431916,0.2582554053590028,0.2639971323512407,0.2690851292599691,0.2741407238374499,0.2789492580181905,0.2839293512543063,0.2883926923786676,0.2922270088031466,0.2958597917195834,0.2993797648274971,0.3020274809964825,0.2993707647628267,0.2961567548985905,0.2933196357956065,0.2905011781372421,0.2888846005403319,0.2862582578908735,0.282625873131262,0.2831616358484695,0.2840387992021956,0.2847672678024093,0.2854072842113131,0.2858691154156896,0.2870256399557715,0.2879677835624972,0.2894478850338347,0.2897499028119735,0.28995756718529,0.2937344139650872,0.2984976232608167,0.3034064212999217,0.307394223403776,0.3130640083945435,0.3191688506177461,0.3247688343186297,0.3317186772240335,0.3389057750759878,0.3379833206974981,0.3457627118644067,0.3517017828200972,0.3563482930571538,0.0,2.5214449959823244,51.29004066258352,143.23630707219868,189.67827050800656,fqhc3_80Compliance_implementation,88 -100000,95804,47749,454.6469875996827,4893,49.9248465617302,3895,40.13402363158114,1484,15.093315519185005,77.41775944651599,79.74388733316214,63.37436231324406,65.0941756659296,77.2248528983869,79.55318068743202,63.30136516600372,65.0238930165014,0.1929065481290877,190.70664573011695,0.0729971472403434,70.28264942819362,242.13816,169.542574665513,252743.26750448832,176968.15860038516,483.06348,321.7704195613758,503700.4822345622,335351.1074989625,463.28812,225.76923221580387,479720.3665817711,232800.50153260343,2707.78993,1271.086792163254,2792326.55212726,1293342.4033564362,894.05703,411.33604244081886,917146.2569412552,413666.00946445786,1440.40696,616.614069947206,1467137.6977996742,616346.9203188021,0.37925,100000,0,1100628,11488.330341113106,0,0.0,0,0.0,41648,434.16767567116193,0,0.0,41858,433.11343993987725,1117871,0,40152,0,0,9556,0,0,92,0.9498559559099828,0,0.0,0,0.0,0,0.0,0.04893,0.1290177982860909,0.3032904148783977,0.01484,0.3565967457361301,0.6434032542638698,23.37135987657328,4.022757854318884,0.3021822849807445,0.2942233632862644,0.2012836970474968,0.2023106546854942,11.51735530872353,6.349705673794292,15.82470536901631,11517.210129780731,44.69363977084577,14.06224531976691,13.331848062193703,8.615130578081066,8.684415810804087,0.5917843388960206,0.8080279232111692,0.703483432455395,0.5778061224489796,0.1243654822335025,0.7679180887372014,0.9109311740890688,0.8674698795180723,0.7696969696969697,0.1933701657458563,0.5159750275431509,0.7300613496932515,0.6390532544378699,0.5266558966074314,0.1037891268533772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365141404833,0.0044904868579769,0.0070217450863004,0.0095265178444476,0.01162246807126,0.0138442118978785,0.0160432167974722,0.0183616395852045,0.020380629203377,0.0227105252384656,0.0248260027265552,0.0267920383505958,0.0289364939043194,0.0311216348381119,0.0330057845189363,0.0350134269778971,0.0371727206871572,0.0388347501555048,0.0409291116097398,0.0429332889147997,0.0571842917953426,0.0707707425178494,0.0847352808611888,0.0978907119897476,0.1104674432811611,0.1259482303222398,0.137466364387567,0.1479181729256156,0.1577992615831145,0.1667345146015897,0.1786924210322539,0.1902189765251115,0.201485325892227,0.210326905858974,0.2183757772846125,0.2282708496963394,0.2367714104178974,0.2445844422733551,0.2517640130021633,0.2580582457664909,0.2635730536916627,0.2697636416690983,0.2753919161393899,0.2800598086124402,0.2845330326507353,0.2884120910891576,0.2923180660306678,0.2962205943962726,0.299571192395123,0.3026596164470049,0.3003073124253526,0.2970290233120075,0.2949912188268352,0.2918101274940575,0.289129855123989,0.2848482997663801,0.2820654316121403,0.2819976467512093,0.2820064505177389,0.2828876151266171,0.2843860629774548,0.2849807948577251,0.2868603732801263,0.2871953921134249,0.2869020882114015,0.2864129169146376,0.286921381337252,0.290663589871523,0.2959563297520948,0.3000314415972331,0.3035456513893901,0.3088421052631579,0.3125701459034792,0.3149233543733092,0.3197837031512213,0.3210662892191555,0.3245358293693417,0.3253713368125251,0.3244695138329304,0.3253787878787879,0.0,2.030754879214477,50.98745647366712,146.45891243680248,195.362211602319,fqhc3_80Compliance_implementation,89 -100000,95721,47597,454.2785804577888,4913,50.08305387532516,3874,39.86586015607861,1477,14.991485671900628,77.3893283971574,79.74935592853436,63.35181630130408,65.0932302463273,77.18841185552202,79.55341624565737,63.27508152406055,65.02112555301211,0.2009165416353795,195.9396828769826,0.0767347772435229,72.10469331518254,242.43472,169.6998275392763,253272.2391115847,177285.89080690368,478.79924,319.0192238445405,499604.444165857,332681.8084271377,461.70497,225.5862938605281,478618.8192768567,232779.7729480275,2727.20593,1295.3645908856506,2808150.9177714395,1312302.212561143,899.59363,417.98600521918473,923732.9739555584,420597.173076297,1442.74238,628.3373957565226,1467280.6803104857,622822.8387253,0.38036,100000,0,1101976,11512.374505072032,0,0.0,0,0.0,41190,429.6967227672088,0,0.0,41788,432.8621723550736,1117341,0,40122,0,0,9600,0,0,80,0.8357622674230315,0,0.0,0,0.0,0,0.0,0.04913,0.1291671048480387,0.3006309790352127,0.01477,0.3477754031474645,0.6522245968525354,23.278164543554716,4.051126532733677,0.3082085699535364,0.2813629323696437,0.2013422818791946,0.2090862157976251,11.142172003528824,5.902389725165613,15.968599683380928,11494.211424062893,44.83185853125746,13.54236406335217,13.61496804464729,8.722077030920746,8.952449392337257,0.5929272070211667,0.8192660550458716,0.7110552763819096,0.5974358974358974,0.1098765432098765,0.7429519071310116,0.903846153846154,0.855072463768116,0.7320574162679426,0.1358695652173913,0.525112443778111,0.7556270096463023,0.6525323910482921,0.5481611208406305,0.1022364217252396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483972573604,0.0044189039901892,0.006613716360833,0.0088137038879806,0.0110101256557277,0.0131710196852798,0.0154390184249143,0.0175608661047733,0.0195367181991886,0.0216721750964401,0.0238753970693718,0.0260598350227767,0.0281237155774763,0.0300463201235203,0.0320421591073159,0.0340914962436317,0.0362038264038429,0.0382441109048098,0.0400278563113254,0.0419609558930766,0.0564402443481438,0.070412808036415,0.0841619467170128,0.0970285786385717,0.1092312071091995,0.1255076142131979,0.1368004582290296,0.14804011327102,0.1592188618372557,0.1684537851168775,0.1792063748452054,0.1907213707016841,0.2009196951743181,0.2103530852587724,0.2200534729939375,0.2291041221238742,0.2378385015515817,0.2460155889729948,0.2527885259108806,0.2594107269686347,0.2646558802780251,0.2702032895736647,0.2760438832931385,0.2797787250347239,0.2840947710831674,0.2881090994129014,0.2918756017956958,0.2957211300181728,0.2990296286712381,0.3016471208327843,0.2980618124672603,0.2949995881044567,0.293271188106302,0.2904393211932465,0.2876416142169566,0.2845964949742995,0.282012507285415,0.2831488555849414,0.2832217729604838,0.2840392268334281,0.2847745061498323,0.2849617705446469,0.2855565048867401,0.2852378835037794,0.2837256027554535,0.2856995220255781,0.2869852567361464,0.2912881144990666,0.2955743618201998,0.2984250117536436,0.2994910139182919,0.3031052631578947,0.3067032829858944,0.3114815649170233,0.3203161320316132,0.3228825456247075,0.3263491106421465,0.3320031923383879,0.3306541019955654,0.326271186440678,0.0,2.358161248399645,52.258579528407104,148.09944924697604,187.7852901609808,fqhc3_80Compliance_implementation,90 -100000,95668,47553,453.5267801145628,5004,50.90521386461512,4048,41.68583016264581,1546,15.794204958815904,77.35982293729873,79.734205287411,63.33991942654043,65.08920866176572,77.15798164415938,79.53543582024992,63.26343711891097,65.01596683510745,0.2018412931393527,198.76946716108532,0.0764823076294618,73.2418266582755,242.1485,169.5542448093639,253113.37124221263,177231.93210829524,483.60829,321.5011839683342,504858.77200317767,335423.3835507855,465.48333,227.45355850133515,482058.817995568,234286.76726737985,2852.454,1346.0144211328277,2942578.051176987,1368620.5234295563,928.8485,423.5786062297192,957651.5658318351,429913.9851170567,1510.62834,650.03693635905,1546131.9563490404,652014.7509934597,0.37775,100000,0,1100675,11505.153238282392,0,0.0,0,0.0,41688,435.0880127106242,0,0.0,42082,435.40159719028304,1114446,0,40021,0,0,9520,0,0,78,0.8048668311243048,0,0.0,2,0.0209056319772546,0,0.0,0.05004,0.13246856386499,0.3089528377298161,0.01546,0.343599615014437,0.6564003849855631,22.998220780881542,4.192715915555388,0.3095355731225296,0.2774209486166007,0.2023221343873517,0.2107213438735178,11.37832520306105,5.987169653995454,16.58209081045433,11475.868138458158,46.534248868080525,13.784916076757664,14.206116935840704,9.17553256187495,9.3676832936072,0.5815217391304348,0.8103294746215495,0.7039106145251397,0.5702075702075702,0.1113716295427901,0.754950495049505,0.9264069264069263,0.8536585365853658,0.7628865979381443,0.1283422459893048,0.5074047954866009,0.7291981845688351,0.6414027149321267,0.5104,0.1066066066066066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392878843115,0.0049766371717294,0.0071120580327702,0.0093640186061627,0.0116825280624694,0.0135782991500839,0.0156512701372543,0.0179773905236093,0.0200310527283499,0.0222399541697356,0.0242075931731104,0.0262323672736599,0.0281623549484546,0.0302406276706376,0.0323159599376992,0.0343754844710867,0.0367820613690007,0.0386346664454032,0.0406699310731996,0.0427174955187794,0.0579601132457872,0.0719206768019432,0.084768531637333,0.097383399791682,0.1094751940600742,0.1247764857744437,0.1362521891418563,0.1472850052190955,0.1566963140340374,0.165364303808338,0.1781973360920729,0.1899053559439499,0.1998890049621311,0.2088609673076712,0.2174353552706929,0.2271458324101564,0.2355784256820109,0.243740373047907,0.2509612658084273,0.2576295244854507,0.2641426522965909,0.2702895500046777,0.2750511610300815,0.2791652698625544,0.2833011992675858,0.2874963094183643,0.2900711877107531,0.2936919091878714,0.2967920311107092,0.3006297428330522,0.2978711973675374,0.2954920059337399,0.2936765843708236,0.2907583621683968,0.2880256022757578,0.2850377341195881,0.2821380029712046,0.28238129590766,0.282850703455812,0.283701100626126,0.284143193805409,0.2837283590330086,0.285290306399699,0.2847589112552665,0.2881161086362983,0.2898092473564171,0.2908334983171649,0.2943324386742401,0.2989525698576747,0.3034588717302238,0.3091492631769279,0.3109079378501215,0.3143846395971041,0.314548634877177,0.3171942311294249,0.3170093902294069,0.3202135774218154,0.3231511254019292,0.3295060080106809,0.3325783314458286,0.0,2.3626531134832343,52.54313872535269,151.90849161446386,205.46832436677823,fqhc3_80Compliance_implementation,91 -100000,95843,47372,450.47629978193504,4860,49.43501351168056,3866,39.65860834907088,1483,15.003703974207818,77.34109898624328,79.632621887595,63.34986309044478,65.04463776972172,77.14484145960522,79.44200082971291,63.27481129905617,64.97451664939841,0.1962575266380639,190.62105788208328,0.0750517913886099,70.1211203233072,243.64868,170.62090028951522,254216.45816595893,178021.24337668397,480.7329,319.5031324693879,500902.94544202497,332680.1565783499,456.73589,222.51752079757384,472612.2825871477,229089.5974032624,2728.49158,1286.673219483873,2802221.9358742945,1297867.5641245297,892.79873,406.1803900899488,915581.5135168976,407858.6821776662,1442.65468,627.8399570451086,1462824.7028995336,619772.7086172062,0.37918,100000,0,1107494,11555.293552998131,0,0.0,0,0.0,41433,431.5599469966508,0,0.0,41297,426.864768423359,1111535,0,39911,0,0,9701,0,0,91,0.949469444821218,0,0.0,1,0.0104337301628705,0,0.0,0.0486,0.1281713170525871,0.3051440329218107,0.01483,0.3716761867244436,0.6283238132755564,23.020958997087224,4.142730319528488,0.3028970512157268,0.276513191929643,0.214692188308329,0.2058975685463011,11.488301688848017,6.226221292359014,16.036609253420963,11431.32477363436,44.42871324653191,13.112539118774686,13.293410812022003,9.194290439911205,8.82847287582403,0.578375581996896,0.7998129092609916,0.6840307429547395,0.5807228915662651,0.1231155778894472,0.7487266553480475,0.9251700680272108,0.8431952662721893,0.7652582159624414,0.1397849462365591,0.5037202380952381,0.7117834394904459,0.6194477791116446,0.5170178282009724,0.1180327868852459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657181914839,0.0040429218469769,0.0062988771566807,0.0084472150587853,0.0104791332100095,0.0129040136774403,0.0151186364701447,0.0173731191022698,0.0195699913181145,0.021768484798887,0.0238768360887468,0.0259686980779881,0.0281632275757233,0.030187669767059,0.0319951363271026,0.0343695813723061,0.0365525798779857,0.0385942372846234,0.0405830504251409,0.0428757217916038,0.0571336211391269,0.0705140934126229,0.0844489137493977,0.097018452199666,0.1088107999957878,0.1243292914783049,0.1353080769556742,0.1459753128422127,0.1560895965168767,0.1639818655348702,0.1755900173265462,0.1870721446570127,0.1975671004141799,0.2078505531021818,0.2169311004995268,0.2260580545091956,0.235339402865176,0.2432924977219803,0.2506354970494779,0.2565564946517327,0.262365815287803,0.268419883300787,0.274458321506292,0.2786694775171885,0.2832372047841661,0.2868780734295468,0.2914488003802757,0.294244046332439,0.2967901298432569,0.3000567140162756,0.2967457253171539,0.294972926916417,0.2915998085747262,0.2894843334489536,0.287466000802604,0.2839971212886827,0.2815407988858644,0.2822171507380104,0.2830392140081817,0.283532655399599,0.2835862949883537,0.283393037385952,0.2848868930205229,0.2861818507890961,0.2868375985913794,0.2886107699945131,0.2894324239573534,0.294748765063084,0.2989157047918853,0.3038440243613066,0.3088428590853465,0.3113013155809161,0.317394578313253,0.3255251624603295,0.3294835680751173,0.3297922568460812,0.3313051414663827,0.3357314148681055,0.341284901057197,0.3444613050075872,0.0,2.5722088311018365,50.79549228102434,141.0234089474549,197.50090363721617,fqhc3_80Compliance_implementation,92 -100000,95642,47937,457.5604859789632,4971,50.720394805629326,3906,40.26473724932561,1472,15.035235565964744,77.31769350596971,79.74021319148349,63.289715480586615,65.08128951380488,77.12924831705509,79.55559919266359,63.21909447751579,65.01479940636082,0.1884451889146277,184.61399881989848,0.0706210030708263,66.49010744405359,240.21162,168.28122937240656,251156.5839275632,175948.63069823562,481.72068,320.2887565130769,503082.06645615946,334294.3753926904,462.66721,225.86720018141224,480207.1683988206,233416.5517939481,2751.90307,1278.8822563440797,2838545.0952510405,1298404.975161624,909.39547,410.4020766129864,931800.6106104013,410101.4426068784,1435.27838,600.9009707244203,1467214.9892306726,598103.9570531736,0.38288,100000,0,1091871,11416.208360343782,0,0.0,0,0.0,41533,433.6379414901404,0,0.0,41867,434.27573660107487,1121526,0,40221,0,0,9495,0,0,79,0.8155412893916899,0,0.0,0,0.0,0,0.0,0.04971,0.1298318010865023,0.296117481392074,0.01472,0.3523606811145511,0.6476393188854489,23.165167064450696,4.09936247694445,0.3046594982078853,0.2785458269329237,0.20942140296979,0.2073732718894009,11.404143562178673,6.0541068743024935,15.402843567108182,11624.6232771717,44.62101505494425,13.489733021997944,13.525479050967515,8.878783431579869,8.727019550398927,0.5816692268305171,0.8106617647058824,0.6915966386554622,0.5647921760391198,0.1296296296296296,0.7566409597257926,0.9106382978723404,0.8599439775910365,0.7094972067039106,0.1304347826086956,0.5071193866374589,0.7346278317152104,0.6194477791116446,0.5242566510172144,0.1294298921417565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021881838074398,0.00437066482781,0.006497461928934,0.0084452077765017,0.010784742641448,0.0128973105134474,0.0151388407157284,0.0172561760559063,0.0195881775012281,0.0219461443053804,0.0242572936128277,0.0264153659489583,0.0283186934269738,0.0304518258716732,0.0325460293844151,0.0345723214470498,0.0366822187662001,0.0387331989945364,0.0407417813992694,0.042870699633967,0.0573297663336538,0.0717848236551478,0.0852161125991282,0.0987508689149622,0.1111193249622456,0.1267872651401216,0.1376012242555633,0.1482357957573819,0.15869144281481,0.1680075620052203,0.1804688089921577,0.1922760175111612,0.2030693489886832,0.2124796040167767,0.2215965442002953,0.2307990905562025,0.2391807180449867,0.2481786345670949,0.2558150094788344,0.2623523616409481,0.2684792925434636,0.2743838965109887,0.2797623274862107,0.2851217377752736,0.2892734741498748,0.293324134872433,0.2970150933486726,0.3001766941665501,0.3023632033959724,0.3060378951812952,0.3030376441770636,0.2996743118635683,0.2962327321835523,0.2937581086925184,0.2905533503169619,0.2878403569354888,0.2849650901968218,0.2854853479853479,0.2854179419166157,0.2857725595913734,0.2860037928085375,0.2870691513334509,0.2874831763122476,0.2884734513274336,0.2895751058666793,0.2903408944285309,0.2911674325505342,0.2956168125659651,0.3001145475372279,0.3032184540417338,0.3060947468440342,0.3095991561181435,0.3136309561079456,0.3150105708245243,0.3157648817867489,0.3219861486089916,0.3253980288097043,0.3279889152810768,0.3273905996758509,0.336838152459632,0.0,2.20195428747083,50.76902420825982,140.42719206633433,202.98193033528307,fqhc3_80Compliance_implementation,93 -100000,95709,47973,456.4147572328621,4934,50.32964506995162,3912,40.27834372942984,1549,15.776990669633994,77.34880342590687,79.7057852194142,63.338894218876014,65.07685245642445,77.15289837635322,79.5151667685108,63.26483857157987,65.00767853229362,0.1959050495536445,190.61845090340057,0.0740556472961415,69.17392413082268,243.02168,170.25810349643837,253917.27005819723,177891.4245227078,486.52925,323.85517070448924,507754.9028826965,337787.5233306055,466.31667,227.2264352137882,483901.3885841457,234754.5376571745,2744.02191,1283.6879266025255,2829444.493203356,1303827.9686699745,912.53682,414.2669291075349,938590.3311078371,418064.9639045821,1501.16102,635.5440742720876,1531606.7454471367,631541.0079957137,0.38163,100000,0,1104644,11541.69409355442,0,0.0,0,0.0,41804,436.15542947894136,0,0.0,42116,436.63605303576463,1108731,0,39792,0,0,9583,0,0,90,0.9403504372629532,0,0.0,1,0.0104483381918105,0,0.0,0.04934,0.1292875298063569,0.3139440616132955,0.01549,0.363054855592169,0.636945144407831,23.648013652386133,4.0606511231892615,0.2957566462167689,0.2934560327198364,0.2062883435582822,0.2044989775051124,11.165677022055648,6.013268527177615,16.482132606816524,11582.141672192569,45.04468138663009,14.19574537643556,13.098420612644,8.906278627681187,8.844236769869354,0.5866564417177914,0.7996515679442509,0.6957649092480553,0.5898389095415117,0.12,0.7721843003412969,0.9238683127572016,0.8722741433021807,0.7743589743589744,0.1470588235294117,0.5072992700729927,0.7084592145015106,0.6279904306220095,0.5310457516339869,0.1126984126984127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391694429536,0.0047743583505656,0.0072954188016843,0.0097217566208514,0.0117435334309419,0.0137730951290273,0.0157583047081248,0.0182811064611615,0.0205610341832302,0.0225474643058185,0.0249267162741118,0.0268999846051213,0.0291780188145787,0.0311431865914425,0.0334842842553718,0.0354319724727982,0.037658290104474,0.0396140278065988,0.041621177620429,0.0437940232567832,0.0583154926635684,0.0720475572487126,0.0853863264363956,0.0988689568099321,0.1114967141696817,0.1259071194329842,0.1372723799821724,0.1480740157144986,0.1579374746244417,0.1674068829385513,0.1797156091780674,0.191835365655735,0.2026494964216571,0.212007874015748,0.2207149222695316,0.2296613080136053,0.2388068035871835,0.246713636159006,0.2540858945839197,0.2609776210000687,0.2668811405691273,0.272553995112083,0.2775661350622308,0.2826110385955668,0.2876509496935494,0.291589728438831,0.2947803604661329,0.2979425958851918,0.3011070778054798,0.3036706427574585,0.3010243863092517,0.2979258241758242,0.2951559818841598,0.2931517127932815,0.2904407946469637,0.2862208093899009,0.2822838004360327,0.2813144372074755,0.281267029972752,0.2823881234647015,0.2829755888331499,0.2845039413418254,0.2846094515436409,0.2846580406654344,0.2847488496932515,0.2857254067519527,0.2880888787861567,0.2920439946103468,0.2958656330749354,0.2988069842774749,0.3026011167097916,0.3063024763524285,0.3104232469993683,0.3110551613641565,0.3145601808250141,0.3213056379821958,0.322381613450563,0.3238075657894737,0.3235048678720445,0.329984544049459,0.0,2.376936917721824,50.7785063201987,148.28199235438578,197.08748771240667,fqhc3_80Compliance_implementation,94 -100000,95640,47545,453.0112923462986,5031,51.547469677959015,4021,41.48891677122543,1509,15.391049769970724,77.26744378178137,79.68327584478524,63.28338998351626,65.0698453051802,77.0771224338631,79.4966025884731,63.21196815837225,65.00214841668827,0.190321347918271,186.67325631214737,0.0714218251440073,67.69688849192335,242.26092,169.56350696197384,253305.0188205772,177293.50372435572,480.66426,319.96606729437275,502025.4705144291,334012.1774744274,463.72477,226.3079777953669,481878.0322040987,234258.3982766508,2821.48684,1309.8368962049626,2913125.763278963,1333393.7312536042,929.06709,421.0259180232737,958174.8536177332,426973.2936253386,1461.5675,615.3942996322173,1492621.9782517776,614313.2982734893,0.37955,100000,0,1101186,11513.864491844415,0,0.0,0,0.0,41282,431.0644081974069,0,0.0,42007,436.1773316603931,1114702,0,39974,0,0,9687,0,0,72,0.7528230865746549,0,0.0,1,0.0104558762024257,0,0.0,0.05031,0.1325517059675932,0.2999403697078115,0.01509,0.3609208523592085,0.6390791476407914,23.13113045255904,3.9996232529962703,0.3118627207162397,0.2822680925142999,0.2049241482218353,0.2009450385476249,11.610361882838276,6.407142504256062,16.16470246814367,11532.983744240037,46.050351347053166,13.858269909126124,14.354043769325592,9.050120642686156,8.78791702591529,0.5859238995274807,0.8,0.6874003189792663,0.5970873786407767,0.1163366336633663,0.7856540084388186,0.9334763948497854,0.8794520547945206,0.75,0.1623376623376623,0.5024682651622003,0.7070254110612855,0.608548931383577,0.5480769230769231,0.1055045871559633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0045021293855201,0.0069545971410006,0.0092675392244532,0.0116583078159492,0.013881533384935,0.0160287130126231,0.0181114661711707,0.0203887565312528,0.0225189706198605,0.0244297669839186,0.0268318489527155,0.0288868085631693,0.0311076764554353,0.0329070283549582,0.0351711517983603,0.0371920085341729,0.0391198297784005,0.04121244903054,0.0433096315449256,0.0586200409681869,0.0723315562910439,0.0861250551343177,0.0995187802078616,0.1116588898507273,0.1265194189149125,0.137007104701422,0.1472167760634217,0.1572282649383429,0.1663570469798657,0.1789723405402491,0.1905030111346995,0.2003264595462212,0.2091689917391542,0.2187768311207978,0.2288103677447939,0.2375016738829621,0.2461550577725774,0.2538368977886754,0.2601989365603227,0.2656805213143975,0.2709412603931566,0.2761089807319036,0.2812125281788095,0.2851743832786487,0.2896145214195871,0.2933338337962615,0.295848960650944,0.2988532525691802,0.3024747574737675,0.29980735811184,0.2968797292463473,0.2934332478801025,0.2904116320749262,0.2874881037354271,0.2832092866550277,0.2802882711649639,0.2801560886032365,0.2804189481943946,0.2806138818580442,0.2816271541642497,0.2823387511369478,0.2847662710125814,0.2862685635285198,0.2875311960069111,0.2892626536138304,0.2900616004769069,0.2942723828014906,0.2976548827441372,0.301609961138869,0.3054031815688425,0.3093532870122928,0.3122504594714494,0.3205236163209063,0.3238813000471031,0.327933293627159,0.3334871558221812,0.3316388775925172,0.3268635724331927,0.3347791798107255,0.0,2.158868865144837,51.603504968696114,148.38142360280207,208.69012022701224,fqhc3_80Compliance_implementation,95 -100000,95840,47442,450.8242904841402,5099,52.065943238731215,4033,41.48580968280467,1520,15.473706176961604,77.40182060844235,79.71579307888285,63.36325590393732,65.07575509406803,77.20554465750656,79.52280122671405,63.28912741908238,65.00530151994313,0.1962759509357852,192.99185216880232,0.0741284848549455,70.4535741248975,242.66462,169.9067268638142,253197.4123539232,177281.45201374494,483.95897,322.43738362792226,504312.1452420701,335783.8775017126,465.65624,227.12516632631872,482482.7942404007,234384.71495302772,2797.67331,1314.2582068433317,2876461.79048414,1328917.503125743,942.32777,431.2236208235945,964350.699081803,431338.1374038965,1473.91374,631.5970170762637,1501963.6686143572,627862.202329143,0.3808,100000,0,1103021,11508.97328881469,0,0.0,0,0.0,41600,433.3994156928214,0,0.0,42197,436.8948247078464,1114068,0,40045,0,0,9537,0,0,91,0.9494991652754592,0,0.0,0,0.0,0,0.0,0.05099,0.1339023109243697,0.2980976662090606,0.0152,0.3671552048102217,0.6328447951897783,23.237310349885345,4.03525757329565,0.3206050086784032,0.2809323084552442,0.2018348623853211,0.1966278204810315,11.310536295836732,6.227691200907064,16.29533894858712,11576.715001260702,46.43817621940423,14.01111864605569,14.658505173759462,9.006970873867036,8.761581525722047,0.5911232333250682,0.8314210061782877,0.6805877803557618,0.5773955773955773,0.116015132408575,0.7530168946098149,0.9278557114228456,0.8637602179836512,0.6935483870967742,0.1413612565445026,0.5189964157706093,0.7555205047318612,0.6079913606911447,0.5429936305732485,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225804491788,0.0045201633745147,0.0067869171772917,0.0090191657271702,0.011569626172975,0.0142004967628975,0.0164398919635122,0.0187283119003878,0.0205656578046262,0.0228552127899121,0.0248887795477376,0.0270972112453426,0.029377299919824,0.0312184674944914,0.0336754164303027,0.035740855548667,0.0377608479629016,0.0396930734135213,0.0415874697493742,0.0433764530799571,0.0582879669607659,0.0726442116707437,0.0861642601169394,0.0991565391846895,0.1113275902015712,0.1265128952537862,0.1378736837644865,0.1487871250292323,0.1584721614497177,0.1681644369704694,0.1797874857499301,0.1912196914033798,0.2019619345587276,0.2115855257407569,0.2201642245501412,0.2293728276991875,0.2372673439573552,0.2458371279837195,0.2530509935577534,0.2598017898423016,0.2655512903524188,0.2709667617222196,0.2766085743337511,0.2810497442715632,0.2852391357125516,0.2900453157324401,0.2930814622193329,0.2968337060378125,0.2994879222055552,0.3030885995888894,0.3003481323171633,0.2979950563032134,0.2959206607855256,0.2930587557603686,0.2904706213267405,0.2875660325506122,0.2830304751088396,0.2830990519777705,0.283248005714966,0.2838214659964833,0.2845722378547602,0.2858630923134372,0.2865055073187998,0.2869744911563416,0.2871416988601135,0.2881404125523445,0.28857828603699,0.2931800528196365,0.2983753384711518,0.3026719056974459,0.3075220239439801,0.3108920286798819,0.3123791705643904,0.316039156626506,0.319209821840672,0.3207459207459207,0.324181626187962,0.3307276007215874,0.3360433604336043,0.3377458396369138,0.0,2.072118911032734,54.24638871453964,150.63826968584948,199.6738095287379,fqhc3_80Compliance_implementation,96 -100000,95716,47684,454.66797609595056,4999,51.402064440636885,3925,40.6306155710644,1403,14.43854736930085,77.32145341825886,79.70813564275963,63.3143933609397,65.08001300545499,77.15439070468409,79.54166166317403,63.2524812270114,65.01989318762348,0.1670627135747651,166.47397958560362,0.0619121339282955,60.11981783150589,242.12628,169.59254803615468,252962.76484600277,177182.61799088411,481.53453,319.9381632822505,502714.3110869656,333885.5958066056,461.07964,224.30652918031413,479380.4379623052,232534.8374711444,2734.54152,1260.3599755705354,2832585.576079234,1292721.9082797286,896.09111,398.68812177840033,928421.7894604872,408859.6680516604,1374.1034,569.2037055722924,1415309.561619792,577108.6226037047,0.38089,100000,0,1100574,11498.307493000126,0,0.0,0,0.0,41419,432.3310627272348,0,0.0,41812,434.4414726900414,1118272,0,40103,0,0,9755,0,0,74,0.7731204814242133,0,0.0,1,0.0104475740733001,0,0.0,0.04999,0.1312452414082806,0.2806561312262453,0.01403,0.3528620822128313,0.6471379177871687,23.52575121855529,4.010351332644992,0.3039490445859872,0.2952866242038217,0.1946496815286624,0.2061146496815286,11.430089647834803,6.102117804233439,14.790258407512908,11573.418969123284,44.80726626018241,14.23227899701063,13.423298824780415,8.353521630032157,8.798166808359198,0.597452229299363,0.813632441760138,0.7015926236378877,0.6047120418848168,0.1273176761433869,0.7765217391304348,0.9225941422594144,0.8955223880597015,0.7976190476190477,0.1065088757396449,0.5232432432432432,0.737151248164464,0.6258741258741258,0.5503355704697986,0.1328125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797276485369,0.0045532907413041,0.0068722592171512,0.0091970610054775,0.0115578707471919,0.0135787629370059,0.015705151085593,0.0178782928323463,0.0198836626831188,0.0217311196184003,0.0239188828969222,0.0260633818727022,0.0280832416084599,0.0303570508526972,0.0324012427873945,0.0346574577638081,0.0366572408149736,0.0386064323297736,0.0407354638767848,0.0425529697449739,0.0567438848620307,0.0710726846424384,0.0841746248294679,0.0968811162320853,0.1093609883211832,0.1253651102738856,0.1370867604139029,0.1486001512198758,0.158499316122414,0.1684450974294079,0.1807352196719192,0.1916920112995573,0.202070510450423,0.2113742002515448,0.2198359285651447,0.2288781891637611,0.2376056557907179,0.2456741573033707,0.2536665533265329,0.2614442664225223,0.2678224687933426,0.2734006261974858,0.2784872995600965,0.281786941580756,0.2864614936530666,0.2911336351111986,0.2949592642575098,0.2979876848854186,0.3004311235026848,0.3030968794400884,0.3009921194302361,0.2981441377230736,0.2948118834112182,0.2920961704578174,0.289648327556069,0.2862291176740066,0.2829420673987126,0.2839389083297903,0.2840597949014472,0.284630014753195,0.2850987633596329,0.2857564430454456,0.2858602285047119,0.287477443357765,0.2903009392371094,0.2917479389352682,0.2928175224007964,0.2959100588751096,0.3018854748603352,0.3074771509612354,0.3109315760967683,0.3142706409918227,0.3174134355558348,0.3220184184488926,0.3255335080494197,0.3317546767700686,0.3329262707983514,0.3385890438649687,0.3483853311439518,0.3581749049429658,0.0,1.411606960001503,50.85143285720572,144.7988892274328,202.89831080725472,fqhc3_80Compliance_implementation,97 -100000,95715,47555,453.565271900956,4843,49.50112312594682,3845,39.69074857650316,1461,14.94018701352975,77.3455376358958,79.73244187003922,63.32130932583449,65.08727279793405,77.16090037684923,79.54904263352442,63.25143297337939,65.01996171470437,0.1846372590465677,183.39923651480208,0.069876352455104,67.31108322968282,241.33868,169.0838410796657,252143.00788800084,176653.4410277027,483.16157,321.4217053848553,504277.7830016194,335297.0959461477,461.7715,224.8720338856552,479341.4616308834,232575.4149029544,2732.68265,1279.8206550076927,2824144.3034007205,1306240.1138877843,941.33301,425.9084274846646,969542.3601316408,431169.0563591836,1431.55258,609.93438532352,1465825.6072715877,612221.6541989103,0.38017,100000,0,1096994,11461.045813090946,0,0.0,0,0.0,41612,434.2266102491772,0,0.0,41745,433.0042313117066,1120321,0,40119,0,0,9560,0,0,71,0.7417855090633652,0,0.0,0,0.0,0,0.0,0.04843,0.1273903779887945,0.3016725170348957,0.01461,0.3669887596134885,0.6330112403865116,23.07500776450576,4.044625564458172,0.2970091027308192,0.2803641092327698,0.2072821846553966,0.2153446033810143,11.509838050592018,6.235435433428416,15.568879377372037,11470.056451601546,44.09765095565783,13.206436489817918,12.916984381965174,8.876540588617278,9.097689495257455,0.5903771131339401,0.8191094619666048,0.7057793345008757,0.5934755332496863,0.1304347826086956,0.747008547008547,0.9195652173913044,0.8623853211009175,0.7377049180327869,0.17,0.5218691588785047,0.7443365695792881,0.6429447852760736,0.5504885993485342,0.1178343949044586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022695265402891,0.0042699934073735,0.0067008477587694,0.0088924571637634,0.011139822576707,0.0134650641678549,0.0155717811180681,0.0177077908152323,0.0198073462041884,0.0220681604063408,0.024163111256974,0.0263660640920295,0.0282052337063857,0.0303567380417533,0.0324871001031991,0.0347886319228343,0.0365252341095549,0.0385465641249182,0.0407874621712407,0.0423973409188,0.0577557755775577,0.0714951070176356,0.0849391267842149,0.0974401060572583,0.1097949453609552,0.1255592574964302,0.1366453036798098,0.1471521683564795,0.1575374681974643,0.1663285568614823,0.178464025869038,0.1890885069794137,0.1992707879843273,0.2082973206568712,0.2166974819510477,0.2268703677032671,0.2356308372108593,0.2442409790335643,0.2515709003470726,0.2581545997665209,0.264473227709032,0.2703785931292358,0.2756770174588352,0.2793725246191952,0.284077545131606,0.2888790538713088,0.2913160720081895,0.2953672115762641,0.2983426839491842,0.3014026055894095,0.298872910998834,0.2958243803632283,0.2926494096530835,0.2899421898817912,0.2869429010521338,0.2831039103423072,0.2803713277014248,0.2803640411183133,0.2796956388520069,0.2816806124265622,0.2815613841580827,0.282233402387294,0.2823386725774748,0.2833143952053116,0.2843585995350955,0.2856363494661367,0.2879002550297534,0.2911625871393291,0.2967845434888749,0.3029610061901194,0.3041751297675468,0.3082018927444795,0.3110405380160657,0.3191873589164785,0.3243697478991597,0.3294592030360531,0.3306918622371228,0.3322548028311425,0.3398639455782313,0.3466257668711656,0.0,1.7488874071665332,51.26577622609792,140.92306140246495,194.75055698006588,fqhc3_80Compliance_implementation,98 -100000,95620,47656,452.9282576866764,5035,51.443212717004805,4022,41.57080108763856,1534,15.728927002719097,77.23812690061078,79.67180354863933,63.25655152000609,65.05547218022404,77.04100415710188,79.47460493579814,63.18204261388386,64.98286575332631,0.1971227435088991,197.19861284119133,0.074508906122233,72.60642689773533,241.5567,169.35208806590623,252621.52269399707,177109.48344060473,486.46083,323.03372250899463,508270.40368123824,337357.3023520128,464.2442,226.46820342060855,482986.54047270445,234766.9591076745,2814.80587,1324.1225881004557,2912737.147040368,1353771.1546752302,898.83362,409.9628507690823,926468.9186362686,415204.7801391777,1484.84182,636.8031399592878,1524437.6281112735,641602.2860922258,0.38124,100000,0,1097985,11482.796486090776,0,0.0,0,0.0,41903,437.7222338422924,0,0.0,42050,437.1470403681238,1109569,0,39825,0,0,9527,0,0,87,0.9098514955030328,0,0.0,1,0.0104580631667015,0,0.0,0.05035,0.1320690378764033,0.3046673286991062,0.01534,0.3608893956670467,0.6391106043329533,23.351537855138204,4.006870729686636,0.3073097961213327,0.2856787667826951,0.2095972153157633,0.1974142217802088,11.266894557321937,6.203389510471705,16.500553610452414,11574.614874333764,46.30840055480628,14.021657531986998,14.269652741962853,9.31620512755874,8.700885153297685,0.5808055693684734,0.793733681462141,0.7071197411003236,0.5504151838671412,0.1083123425692695,0.7534921939194741,0.9288793103448276,0.8567639257294429,0.7079207920792079,0.1149425287356321,0.5058823529411764,0.7021897810218978,0.6414435389988359,0.500780031201248,0.1064516129032258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432300956705,0.0048684997920744,0.0069856226139225,0.0090971001087586,0.0113682624979645,0.0135700968856016,0.0158804630526798,0.0182037347280676,0.0205388376327148,0.022707486198314,0.0250864430604434,0.0275374529911017,0.0297753213738022,0.0316900682460155,0.0339137079951256,0.0361529308293238,0.0382841089329587,0.0403469589154936,0.0422942799146411,0.0444089756830344,0.0584687114512116,0.0732369275909043,0.0865883638350177,0.09926590624243,0.1112448781312043,0.1269489873739513,0.138862624695896,0.1486179659101811,0.1587327063204185,0.1676585596424888,0.1796717348843734,0.1915954724836289,0.2020268061457993,0.2115142284217793,0.2208287414591139,0.230327104877724,0.2386251789549033,0.2457155098543273,0.2534224769181789,0.2602755453501722,0.2665375066706884,0.2727240756804914,0.2784518853265962,0.2820543632387224,0.2860049216675194,0.2903468893610713,0.2937841058771875,0.2971232562291194,0.300018171906233,0.3026917686876966,0.2994847863616746,0.2962850644427596,0.2921437031188314,0.2902987773999855,0.2877771663965022,0.2845598270283532,0.2810483423443421,0.2819020371923247,0.281741005716633,0.281677057467979,0.2823143900383859,0.2835130970724191,0.2846819295783498,0.2848392721419949,0.2850826605151865,0.2854316359470998,0.2865408733325733,0.2917805207449983,0.2952977836910472,0.2998660256915438,0.3033891384238464,0.3072088724584103,0.3072259032379047,0.3125094425139749,0.3175134933928903,0.3234882091991595,0.3296324081020255,0.3376288659793814,0.3424472116946399,0.3542059600150886,0.0,1.949831126346692,53.231169543452346,149.21778897031206,204.93712732794904,fqhc3_80Compliance_implementation,99 -100000,95723,47438,451.3962161653939,4919,50.25960323015367,3903,40.23066556626934,1460,14.82402348442903,77.33641368994157,79.71163882622326,63.332022412709286,65.08936558096747,77.14930673240875,79.52971118029652,63.26056960949502,65.02250639268352,0.1871069575328192,181.92764592674848,0.0714528032142638,66.85918828394222,242.51678,169.94437628283757,253351.98437157212,177537.03261740584,480.3153,319.57300660908913,501235.8262904422,333312.4982905488,456.66603,222.3178446944966,474361.689458124,230022.5761685705,2229.05412,1050.2858653225846,2297472.0391128566,1066181.2428304418,909.16315,410.9826096819837,936772.0714979682,416380.5102722565,1417.6387,610.7959421881055,1441346.2804132758,603829.4928627318,0.37906,100000,0,1102349,11515.999289616915,0,0.0,0,0.0,41376,431.6830855698213,0,0.0,41359,429.3325533048484,1116716,0,40059,0,0,9417,0,0,92,0.9611065261222486,0,0.0,0,0.0,0,0.0,0.04919,0.1297683743998311,0.2968082943687741,0.0146,0.3542154566744731,0.6457845433255269,23.326182666387183,4.021467453236892,0.3123238534460671,0.2751729438893159,0.2095823725339482,0.2029208301306687,11.294428830901914,6.157072623508756,15.670106738447377,11503.463680094406,44.67544390568879,13.086109567404808,13.826874568712432,9.106794764339044,8.6556650052325,0.5775044837304637,0.7867783985102421,0.6866283839212469,0.58679706601467,0.1161616161616161,0.7397737162750218,0.9192399049881236,0.8623853211009175,0.730593607305936,0.1153846153846153,0.5098039215686274,0.7013782542113323,0.6221973094170403,0.5342237061769616,0.1163934426229508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0047160721711173,0.0070155845474389,0.0094824782502642,0.0117799049876402,0.0140142179129407,0.0161229463894186,0.0182356544823361,0.0206312044411274,0.0228691931290051,0.0249090256778227,0.026590556759032,0.028567021440691,0.0304359917189382,0.0326787943825905,0.0348534336627113,0.0371198707793619,0.0392040915834137,0.0410846428868379,0.0433115976750484,0.0575145927093884,0.070632670356459,0.0842230006082597,0.097070232426125,0.1094774341786294,0.1244213819196381,0.1352717944369063,0.1462784341667287,0.1565705624286156,0.1670166266712375,0.1786667527659391,0.1904447784758794,0.2006867773624271,0.2097041988901996,0.2183324542897327,0.2280748308345495,0.2365714795048633,0.2439235428301738,0.2511675886460506,0.2585824394483452,0.2648897207491363,0.2699115044247787,0.2755264743052192,0.2798808355866095,0.2833757730083667,0.2881443489170141,0.2924276113623304,0.2961438805060204,0.2999586370921875,0.3028841084045133,0.2993328132146027,0.2966428178315905,0.2936522461391184,0.2909747292418773,0.2882118772466653,0.284715315287745,0.2817516170354087,0.2816418864646001,0.2814072065619618,0.2821435570362188,0.2823577752045123,0.2841900112211351,0.2845833333333333,0.284146937325101,0.2851644673933831,0.2863654020458371,0.2887105495318592,0.2920237310481213,0.2979958728271134,0.3023016281741473,0.3083979917845733,0.3103411456943035,0.3169986635270158,0.3201593137254901,0.3259866252236978,0.3313397129186602,0.3366610351712487,0.3433528343756304,0.3427331887201735,0.3499624906226556,0.0,2.0668533855317914,49.98644283816955,142.45307898804737,205.04404879912929,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95620,47530,452.7400125496758,4986,51.07718050617026,3978,41.1211043714704,1558,15.917172139719725,77.26635035352784,79.70334153874855,63.26822878755484,65.0715988500014,77.06903597535275,79.51062194832015,63.19382586020887,65.00160346203116,0.1973143781750934,192.71959042839623,0.0744029273459716,69.99538797023774,240.8615,168.76483749394183,251894.478142648,176495.33308297617,482.77466,320.3527002518452,504385.05542773474,334523.1439571692,460.61252,223.88410318024447,478997.0403681238,231993.0172432389,2285.069,1068.8181813273295,2362501.6105417274,1090538.8217186038,894.15185,404.46984087874085,921465.927630203,409373.8496593848,1517.25138,640.4530792304336,1552128.947918845,640163.8254998027,0.38074,100000,0,1094825,11449.749006484,0,0.0,0,0.0,41517,433.6749633967789,0,0.0,41717,433.66450533361217,1118777,0,40101,0,0,9568,0,0,82,0.8471031165028237,0,0.0,0,0.0,0,0.0,0.04986,0.1309555076955402,0.3124749298034496,0.01558,0.3580601878474219,0.6419398121525781,23.817392975755773,4.075689158860681,0.3139768728004022,0.271744595274007,0.2038712921065862,0.2104072398190045,11.081813264076036,5.933113736690159,16.63163789235201,11572.2026945819,45.554147685108425,13.330201000919214,14.198084331172842,9.058842349997414,8.967020003018954,0.5774258421317244,0.81313598519889,0.6917534027221778,0.5745992601726264,0.1051373954599761,0.7448275862068966,0.9140969162995596,0.8223495702005731,0.6938775510204082,0.1614906832298136,0.5085166784953868,0.7400318979266348,0.6411111111111111,0.5365853658536586,0.0917159763313609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0044128835911742,0.0065910406532137,0.0086627623230844,0.0108100405122045,0.0132189121151278,0.0157372632266492,0.0179025780938659,0.0198698534828517,0.0222771009027656,0.0242931184892492,0.0265919720409107,0.0286284884858092,0.0308388666639171,0.0329811079090618,0.0351196697054045,0.0373979020689083,0.0396036518867042,0.0415803661570166,0.0434388102042093,0.0587534237982729,0.0732279834010982,0.0867331932773109,0.0996102801769538,0.111354034643008,0.1271013187860812,0.1381183172841868,0.1487850148272993,0.158814085411538,0.1681009938221864,0.1797687362471415,0.1914755235658847,0.2019167937268569,0.2110164106833768,0.2203670028103818,0.2292369121561668,0.2375372792565371,0.2450799369511371,0.252865467846554,0.2590048507505476,0.2657380712540669,0.271983328845546,0.276358943392652,0.2810177860875401,0.285323709536308,0.2899514096144834,0.2933169711616724,0.2968813645621181,0.3002084871087629,0.3038168341642267,0.3006552656718828,0.2987007630439265,0.2957984376099655,0.2923265718616906,0.2902746844840386,0.2861402033483678,0.2828509555348308,0.2829405880520162,0.2834604035545549,0.2842007633860093,0.2848876404494382,0.2859230586934197,0.2869732683008519,0.2879616199933058,0.2894882201781983,0.2902310815030707,0.2915801155279857,0.2960437419476479,0.3001962295886187,0.3029366306027821,0.3079891057648661,0.3109417182785453,0.3146350687003655,0.3178113207547169,0.3198327914537854,0.3236189138576779,0.3274349667271627,0.3269923908690428,0.3293510724952484,0.3307057057057057,0.0,1.873183947337138,50.79640307251245,149.63574911258857,204.79617360999288,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95714,47272,450.4774641118332,4789,49.04193743861922,3779,38.99116116764528,1406,14.36571452452097,77.34534288058313,79.71457633258034,63.32656324425341,65.07478065960356,77.16740203177149,79.53725260310843,63.259654135158414,65.00998515003816,0.1779408488116445,177.3237294719081,0.0669091090949933,64.79550956539981,242.23276,169.67713734041584,253079.52859560773,177274.9204300478,479.8532,319.60007334104296,500863.38466682,333434.2450854033,460.81661,224.7796403230761,478156.5288254592,232338.98828297775,2154.91204,1020.244944598099,2226315.899450446,1040839.275966002,863.77433,395.8046958833828,888514.6895960884,399649.91832691367,1367.4154,581.7359051779034,1399186.660258687,582650.4937497759,0.37761,100000,0,1101058,11503.61493616399,0,0.0,0,0.0,41301,430.992331320392,0,0.0,41650,431.8803936728169,1114235,0,40012,0,0,9630,0,0,95,0.9925402762396306,0,0.0,0,0.0,0,0.0,0.04789,0.1268239718227801,0.2935894758822301,0.01406,0.3534743202416918,0.6465256797583081,23.226675028738647,4.028024429027083,0.3037840698597512,0.2979624239216724,0.1974067213548558,0.2008467848637205,11.323668121252014,6.101649876599531,15.000833060789247,11406.127721642586,43.552489549104536,13.871505152935484,13.11051397818728,8.28250236741266,8.287968050569107,0.5903678221751786,0.7992895204262878,0.7081881533101045,0.5898123324396782,0.1027667984189723,0.7584670231729055,0.9200913242009132,0.8498498498498499,0.7114427860696517,0.1466666666666666,0.5193827625141136,0.7223837209302325,0.6503067484662577,0.544954128440367,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0046520584598544,0.0070816931131041,0.0094657729027016,0.0115621631515792,0.0136226188415683,0.0159628145928259,0.0180578381633882,0.020035778175313,0.0221517043709693,0.0243579886206366,0.0264738804054262,0.0284712150667036,0.0306795236329171,0.0326522187822497,0.0345462063262352,0.0365990057995029,0.0386986301369863,0.0407789804215144,0.0424864526886202,0.0569897863274641,0.0703192046049188,0.0836787157022191,0.0968553062104809,0.1087862576894263,0.1237698152341848,0.1353580603384216,0.1453980020022578,0.1555978243446853,0.1649024591658355,0.1766195149804462,0.187656994369857,0.1987225522839546,0.2079255610290093,0.2166367510543876,0.2260524507304529,0.2342030667589223,0.2424913946320502,0.2497843849296414,0.256761708462155,0.2630191166776532,0.2684953600897595,0.2740939629068887,0.2792900683824146,0.2834701112028359,0.2869827586206896,0.2902407002188183,0.2923196098849465,0.2968167701863354,0.299500019788135,0.2963052727958205,0.2935561515714187,0.2918469452469875,0.2886812345643351,0.2863122893998545,0.2822394471708786,0.2780416226194796,0.2780992546096508,0.2781230894640309,0.2788555403702454,0.2790615464761479,0.2799089535545395,0.2801223623423648,0.2815121375965111,0.2839071372098037,0.2851291091983822,0.286185974319176,0.2907931570762053,0.2955981392765396,0.2990167273866886,0.3029073698444895,0.3069452464696309,0.3103083809997513,0.3155438464433571,0.3199368850937442,0.3210655450403084,0.317730282962071,0.3192169396723931,0.3296256104177971,0.3268933539412674,0.0,1.898306943332752,48.96681426555029,144.41110906277834,191.58335669544945,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95666,47663,453.8393995776974,4873,49.69372608868355,3884,40.05602826500533,1496,15.27188342775908,77.2498286400838,79.64793171938864,63.26585613190741,65.0385707623526,77.06213156974437,79.46444413572776,63.19450612890293,64.97157781681383,0.1876970703394391,183.48758366087736,0.0713500030044826,66.99294553877166,240.5304,168.48719276263222,251427.2573328037,176120.24414382564,477.35087,317.7028138955719,498460.8638387724,331580.19975286094,462.71543,225.9853856676173,480545.3348106955,233785.09553211727,2231.68864,1054.9739790323172,2301450.295820877,1071426.3991724516,911.83342,412.4924912298602,936112.5582756674,414149.7619110859,1454.2039,618.7307011711597,1484888.5497459911,615640.5229570493,0.38111,100000,0,1093320,11428.511696945625,0,0.0,0,0.0,41142,429.5047352246357,0,0.0,41748,433.2364685468192,1118713,0,40164,0,0,9452,0,0,79,0.8257897267576778,0,0.0,1,0.0104530345159199,0,0.0,0.04873,0.1278633465403689,0.3069977426636568,0.01496,0.3637618296529968,0.6362381703470031,23.24933326022849,4.119368217070142,0.2999485066941297,0.2778063851699279,0.2149845520082389,0.2072605561277034,11.432355769650073,6.322692710191891,15.907364047108032,11572.68108925688,44.644153735441286,13.249542131667637,13.348730478165288,9.31352465057066,8.732356475037697,0.5821318228630278,0.8044485634847081,0.7072961373390558,0.5568862275449101,0.1291925465838509,0.7459086993970715,0.9088888888888887,0.8481375358166189,0.7164948453608248,0.1309523809523809,0.5123026074182887,0.7297297297297297,0.6470588235294118,0.5085803432137286,0.1287284144427001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024919972446209,0.0050097863234861,0.007054333593853,0.0092156065840276,0.0114941359563019,0.0134642413378689,0.0155708284047803,0.0177770970541685,0.0199120474534669,0.0220708725931995,0.0246584335124933,0.0269442932130787,0.0292643775145858,0.0313031468062956,0.033503691084611,0.035538087604075,0.0376365256678618,0.0396295565684147,0.0415327153365169,0.0433980167460871,0.0585125279501807,0.0717457325374384,0.0851997229277303,0.0988267480401957,0.1111369080912228,0.1260689188045042,0.1372257502707984,0.1484761295822677,0.1587308379422116,0.1681186821214107,0.1805038571505637,0.191626636015658,0.201323694568927,0.2111716770676815,0.2205176314772915,0.2303051178915087,0.2386661293572436,0.2457727493203686,0.2525635335222552,0.2593962506892115,0.2657385690732183,0.2720471654902697,0.2772971431287731,0.2815679953811735,0.2858343995613233,0.2895094694160114,0.2929360100376411,0.2970006381620931,0.3001375944339157,0.3028811810461148,0.2997435897435897,0.2962830248487438,0.2946024130388767,0.2932960893854748,0.2909007079540722,0.2877475436931835,0.284230495612995,0.2853792153260727,0.2852288831594584,0.2857219394588802,0.2859551193196718,0.286346396965866,0.2874675922054027,0.2883214939909753,0.2875955207382131,0.2873897249610794,0.2877231700761112,0.2920508347869424,0.2966620305980528,0.2998976458546571,0.3043125956603943,0.307040041873855,0.3091022056539298,0.3120018047826741,0.3187962962962963,0.3219154141908423,0.3234497290788681,0.3244274809160305,0.3308005427408412,0.3295964125560538,0.0,2.14662087969391,50.5747202648013,144.77914398070027,198.3100208905896,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95745,47719,454.6242623635698,4934,50.30027677685519,3951,40.67053109822968,1487,15.050394276463525,77.32698317968122,79.6863535908112,63.31555014592704,65.06088445156571,77.128679617336,79.49499701268324,63.23850690283824,64.99001721569888,0.1983035623452167,191.3565781279516,0.0770432430888021,70.86723586682808,241.84974,169.42469426460713,252597.7753407489,176954.09082939802,484.3837,323.2727201545658,505332.6126690689,337061.70573352743,469.07049,229.29000163851072,487190.1718105384,237278.63221096928,2245.58524,1077.7364472964182,2311257.6113635176,1091508.493703504,920.53638,422.33132260315017,947567.6954410152,427221.925534649,1439.61852,626.9117336142754,1458322.6904799205,615512.6994273454,0.37942,100000,0,1099317,11481.71706094313,0,0.0,0,0.0,41675,434.65455115149615,0,0.0,42396,439.9707556530367,1109851,0,39860,0,0,9591,0,0,85,0.8877748185283827,0,0.0,0,0.0,0,0.0,0.04934,0.1300405882663012,0.3013781921361978,0.01487,0.3678384152262575,0.6321615847737425,23.297681310719096,4.001369445808577,0.3075170842824601,0.2865097443685143,0.2093140976967856,0.1966590736522399,11.52340523475448,6.413804763959591,16.011929812276502,11524.703753700203,45.62322239523917,14.129302535253576,13.76042159777766,9.211352640001342,8.522145622206594,0.5917489243229562,0.8197879858657244,0.6987654320987654,0.5840386940749698,0.1003861003861003,0.7562695924764891,0.9196261682242992,0.85,0.7571428571428571,0.1308900523560209,0.5132710280373832,0.7303182579564489,0.64,0.5251215559157212,0.0904436860068259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178207790892,0.0044411997323112,0.006597243367233,0.008808111183355,0.0113501144164759,0.0136856575530777,0.015927723620345,0.0182103995263662,0.0206657604529705,0.0227635619242579,0.0250691811007481,0.0271926582902192,0.0290386908433041,0.031385794015281,0.0333821617941364,0.0351127368921404,0.0368890223321979,0.0389095775027748,0.0408884454283724,0.0430058237052934,0.0578489100476071,0.0723373090604729,0.0856076412552292,0.0979279023559466,0.1097793660331214,0.1259754266500306,0.1371157640170559,0.1480440384164909,0.1582896846606093,0.1681854773788439,0.1803865348754486,0.1917423938826128,0.201880591167316,0.2105885185266245,0.2197791308369025,0.228692740898408,0.2379717982524749,0.246358690142273,0.2533033391276685,0.2605939731554394,0.2657618010839857,0.2721639824304538,0.2769270882715464,0.2806072242889715,0.2857750915127267,0.2895392432539095,0.2933025982811756,0.2957306977099626,0.2991809652169405,0.3013814305128577,0.2985319644226758,0.2950501856180393,0.2920154766092156,0.2897655076816449,0.2865858184031231,0.2836609110947832,0.2801391524351676,0.2805077805077805,0.2810013121346897,0.2816465820624933,0.2816848860202216,0.2809320449491272,0.2822228262005812,0.2838283093637294,0.2848390570778987,0.2862850915883971,0.2868390495341131,0.2916172153163845,0.2959894165158056,0.2978263433041154,0.3026576576576577,0.3056649341103586,0.3077257753744795,0.3121248499399759,0.3168179292461567,0.316746299965039,0.3145525760771316,0.3160103937637417,0.3130315500685871,0.308457711442786,0.0,2.355612088197581,55.52617653805897,139.6981326497542,196.37297295583485,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95760,47929,457.83208020050125,5118,52.29741019214704,4075,41.97994987468672,1540,15.747702589807853,77.39144353273707,79.7289317762058,63.36142006586866,65.0865617402945,77.18972115085893,79.52962085183326,63.28567602782902,65.01405333470738,0.2017223818781417,199.31092437253997,0.0757440380396374,72.50840558711502,241.72918,169.330774863728,252432.30994152045,176828.29455276526,485.48579,322.3656370773675,506433.77192982455,336091.0892620798,462.80776,225.260309685753,479087.2284878864,232057.81066123047,2326.10724,1095.6622663650255,2399364.2021720973,1114438.373397061,925.30557,419.4960564607725,951429.9498746868,423224.526379252,1494.56434,637.9601409871559,1530082.581453634,640169.5431657999,0.3835,100000,0,1098769,11474.195906432748,0,0.0,0,0.0,41652,434.3671679197995,0,0.0,41908,433.43776106934,1120172,0,40165,0,0,9531,0,0,85,0.8876357560568087,0,0.0,0,0.0,0,0.0,0.05118,0.1334550195567144,0.3008987885892927,0.0154,0.3693373268438787,0.6306626731561213,23.1842458569214,4.019409447577303,0.3101840490797546,0.2839263803680981,0.2041717791411043,0.2017177914110429,11.269258730339883,6.116595420451836,16.567387805126923,11618.627681453898,46.73461353445939,14.090932165537064,14.483589246872192,9.153857742184451,9.00623437986568,0.5828220858895705,0.8003457216940363,0.7056962025316456,0.5588942307692307,0.1119221411192214,0.7416107382550335,0.9147465437788018,0.8559782608695652,0.715,0.1526315789473684,0.5171696149843913,0.7316735822959889,0.6439732142857143,0.509493670886076,0.0996835443037974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020654462983962,0.0041144339613081,0.0064122075444897,0.0087344227663745,0.0108590659983121,0.0130893249735363,0.0153148563276951,0.0175791213500112,0.0197877187426575,0.0216910861913726,0.0239959016393442,0.0261203217334208,0.028226469379367,0.0305060672492049,0.0327295968332182,0.0345743032456665,0.0362650328082631,0.0380526659683257,0.039905200461524,0.0418967061813787,0.0571160169093471,0.0713269299181785,0.0851900805639476,0.0981901546939247,0.110445683919741,0.1262437745186156,0.1369627689469051,0.1480772299345779,0.1589855846235985,0.1693874269789377,0.1814238353569275,0.1924669903647551,0.2037753483014193,0.2128259183606593,0.2224151764615367,0.2321786176604007,0.2407275320970043,0.2490088835480284,0.2565959472324221,0.2624691132058204,0.2672929811181215,0.2725371285682569,0.2779314747818684,0.2828846522322284,0.2875926397632303,0.292223452688569,0.2958848302320641,0.2993731005455169,0.303049900406136,0.3054468813804913,0.3026061257388501,0.3001001797746641,0.2973420993481681,0.2943573938590932,0.291688873097649,0.287410093868097,0.2839786318725476,0.2847298202067377,0.2860128808605366,0.2860722600366098,0.2868829495153247,0.2876563885331494,0.288455114822547,0.2893774527292187,0.2897705453149001,0.2914391220679253,0.2913559946701443,0.2962359356880935,0.2989983188568226,0.3029044001266223,0.3056540314516862,0.3085665728397684,0.3114846996599924,0.3144806671721001,0.3201228021211275,0.3203271028037383,0.3285970685013461,0.3390268123138034,0.3436158798283262,0.3497370398196844,0.0,2.2758171562455543,51.81297598299806,156.06426518033578,206.14981981656243,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95716,47482,452.7142797442434,5126,52.206527644281,4053,41.63358268210122,1538,15.57733294329057,77.37264048070351,79.73044967296808,63.34029949113111,65.08117167290882,77.16707939706167,79.53239904061493,63.261280456147205,65.00832454629455,0.2055610836418395,198.05063235314435,0.0790190349839079,72.84712661427761,241.35034,169.0698168377653,252152.55547661832,176636.94349718472,483.08872,321.1099413852596,504013.2475239249,334784.71873590583,466.752,227.52015721202372,483309.21684984746,234386.4605930434,2308.68224,1095.5802051838236,2374015.629570814,1106777.4285648176,949.66152,431.1420717862156,975242.0493961304,433589.7085768252,1502.55688,650.000749174108,1525007.125245518,640273.5895078483,0.38027,100000,0,1097047,11461.479794391744,0,0.0,0,0.0,41531,433.1564210790255,0,0.0,42329,437.9936478749635,1117280,0,40165,0,0,9482,0,0,83,0.8462534999373146,0,0.0,0,0.0,0,0.0,0.05126,0.1347989586346543,0.3000390167772142,0.01538,0.3533595358412876,0.6466404641587123,23.11608472773002,4.067083483656315,0.3044658277818899,0.2849740932642487,0.2013323464100666,0.2092277325437947,11.53792079888975,6.296332851387143,16.454569607518312,11507.269759592318,46.52933878023478,14.006569735014804,14.08117330377521,9.064917627184144,9.37667811426062,0.5886997285961016,0.8034632034632034,0.7171799027552674,0.5857843137254902,0.1120283018867924,0.7493897477624084,0.9209401709401708,0.8825214899713467,0.7373271889400922,0.1128205128205128,0.5187677053824362,0.7234352256186317,0.6519774011299435,0.5308848080133556,0.111791730474732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075949367088,0.0046010560132964,0.006725706807876,0.0090185245368865,0.011296505302545,0.013630718488507,0.0157791731224007,0.017770201994427,0.01995318361631,0.0222131231446412,0.0242579586814989,0.0263546949754625,0.028317892507172,0.0303089598352214,0.0324257962013432,0.0345308721086466,0.0363613774252997,0.0382022238818355,0.0405250904253107,0.0424235480376635,0.0571073543078513,0.0712925369385961,0.0843076600429927,0.0966616212579885,0.1089264440766238,0.1241145249624664,0.1349533820550081,0.1458020710279578,0.1559239124630189,0.1653349064192631,0.1776217299055455,0.189660582322582,0.201002784303489,0.2104871699516549,0.2196337786385545,0.2280765906522172,0.2363264896004287,0.244796828543112,0.2532412194484529,0.2596517789553368,0.2651955449556579,0.2712800824047195,0.2764422222485516,0.2816036094411845,0.2854207947873233,0.2898818771423639,0.294113229274887,0.298386173743848,0.3011723905898186,0.3037465724530689,0.3002084313857325,0.2969125709339232,0.2939364530148951,0.2909474048842445,0.2892979070803028,0.2863828941129686,0.2830364474764702,0.2831845359980342,0.2834274632553075,0.2834437321304896,0.2836826625963292,0.2849992148241206,0.28444324054009,0.2852480127892002,0.2861235110166861,0.2875933534899346,0.2879595925392929,0.2908757650128926,0.2925266657431777,0.2967255980954611,0.3001883745963401,0.3043980266610685,0.3065401897154268,0.3108453670276775,0.3145900880037054,0.3239601640304628,0.3289513448171653,0.3322020363345977,0.3344182262001627,0.3385081408557364,0.0,2.7754878671866754,52.97422815059757,149.69081167523916,204.6239439672116,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95743,47585,453.50573932297925,5039,51.36667954837429,3962,40.807160836823584,1500,15.25960122411038,77.33281654085012,79.69865117671388,63.319784280511655,65.07076810606951,77.13908654920397,79.5073562298106,63.2463270173385,65.00029547418296,0.1937299916461512,191.29494690328383,0.0734572631731538,70.4726318865454,241.5501,169.25901998898055,252290.0890926752,176784.74665404318,479.06472,319.0158961283318,499810.22111277067,332645.1815049996,460.30115,224.83694526456196,476797.73978254286,231741.0364839401,2262.95732,1071.1995332244596,2334058.093019855,1089311.4412797382,918.38459,420.3366857763235,947178.571801594,426986.0728996617,1456.4614,624.8973499366568,1485087.5155363835,624576.9260228166,0.38176,100000,0,1097955,11467.731322394327,0,0.0,0,0.0,41250,430.2664424553231,0,0.0,41685,431.4362407695602,1118557,0,40120,0,0,9505,0,0,84,0.8773487356778041,0,0.0,1,0.0104446278056881,0,0.0,0.05039,0.131993922883487,0.2976781107362572,0.015,0.3749524172059383,0.6250475827940617,23.10663526593552,4.034866348475383,0.3109540636042402,0.2859666834931852,0.2019182231196365,0.2011610297829379,11.555707940997117,6.408125269367588,16.17009723938319,11547.029238016235,45.60377396463922,13.875633647288463,14.049590034873924,8.98586541342996,8.692684869046875,0.5971731448763251,0.8014121800529568,0.7118506493506493,0.6025,0.124215809284818,0.7592745259686727,0.9148471615720524,0.8647887323943662,0.7579908675799086,0.1602209944751381,0.5256456893415787,0.7244444444444444,0.6499429874572406,0.5438898450946644,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021278967260788,0.0043715071049668,0.0067011879378617,0.0088939937589575,0.0110792333048467,0.0132822685788787,0.0152765171988292,0.0172741194486983,0.0192634097462219,0.0214107985787571,0.0237548442658246,0.025547033032478,0.0279671386121307,0.029948198267783,0.0319012834798398,0.0342019038956475,0.0363608119304059,0.0383242356945684,0.0406034895085989,0.0426276642290143,0.0573140685680878,0.0714569688853549,0.0840673629461851,0.0971784197468567,0.109691699604743,0.1251850441991287,0.1364831901580231,0.1472272485364555,0.1573578577455912,0.1664432409244463,0.1774073715153277,0.1892371441863484,0.2006198684138981,0.2099468655019351,0.2188015574473701,0.2282003299708784,0.2368550258882342,0.2440948426229139,0.2520087157837396,0.2583703567993404,0.2653210032291292,0.2712598471280917,0.277304057414908,0.2819845845869844,0.2873077203470146,0.2916507392381962,0.2949807819914113,0.2992151025963948,0.3031260521613012,0.3056252144761502,0.3030706891213333,0.2999339806893516,0.2972885460074332,0.2939987584633819,0.2922962632791026,0.2887471512259288,0.2845604274017639,0.2849257178424595,0.2853371934604904,0.286319084974296,0.286959768505554,0.2873692298599208,0.2878595115439964,0.2888241572534021,0.2904128593981725,0.2915164561558212,0.2916134887546442,0.2954630788485607,0.2999266938946486,0.3025983256989417,0.3048631531327754,0.3070994985484296,0.3111818295270186,0.3115074885226161,0.3173719376391982,0.3178158907945397,0.3191521346963319,0.3279569892473118,0.3304418541610192,0.3389894419306184,0.0,2.270486893020288,52.82452396228993,143.2086113824437,203.61200826929183,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95790,47783,453.9304729094895,5027,51.38323415805407,3968,40.92285207224136,1483,15.210355987055015,77.34910350822409,79.67884510219895,63.34642956891118,65.06716728854724,77.15221774804333,79.48081277032917,63.27171155154884,64.9937016532249,0.1968857601807627,198.03233186978275,0.0747180173623363,73.46563532233574,241.1838,168.870874122806,251783.9022862512,176292.80104687964,483.08653,321.79546917014903,503845.7667815012,335465.9141561218,461.39931,225.73375507809865,477809.6878588579,232700.86442932356,2246.10988,1061.7753031010466,2318260.5699968683,1081874.1237092044,889.96121,404.28408755470497,916231.2245537112,409208.4430052239,1427.77898,618.267366388034,1465097.4632007517,623671.3927517781,0.38104,100000,0,1096290,11444.722831193234,0,0.0,0,0.0,41478,432.5086125900407,0,0.0,41717,431.7674078713853,1120033,0,40214,0,0,9539,0,0,92,0.94999478024846,0,0.0,1,0.0104395030796534,0,0.0,0.05027,0.1319284064665127,0.2950069624030236,0.01483,0.3580810965162764,0.6419189034837236,23.69658845061686,3.9341044113207326,0.3185483870967742,0.2820060483870967,0.2056451612903226,0.1938004032258064,11.089936929159077,6.12622002282982,16.045840373518406,11557.69058388624,45.34452884639751,13.66195645021054,14.261427683134558,9.09745734624132,8.323687366811086,0.5798891129032258,0.7890974084003575,0.6890822784810127,0.5698529411764706,0.106631989596879,0.7564208782104391,0.8993839835728953,0.8781869688385269,0.6893203883495146,0.1428571428571428,0.5027164070988772,0.7041139240506329,0.6158068057080132,0.5295081967213114,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974238496435,0.0044496700757153,0.0069493055766909,0.0092330194716153,0.0117236751128645,0.0138442118978785,0.0163476630179987,0.0183497474103179,0.0205478752209586,0.0224570808864152,0.0247100766299225,0.0267929523555427,0.0290526791770291,0.0314439515423489,0.0337038106235565,0.0358297441617864,0.0378299514708773,0.0401061756044958,0.0418013112914454,0.0439848801974321,0.0593256597827334,0.0729189545354711,0.0859518342612105,0.0989963743366087,0.1109120606986669,0.1259483906418412,0.1371532746139251,0.1474632325573976,0.1575493041919235,0.1673898370456079,0.1791676084078654,0.1904123365739188,0.2012939001848429,0.2113119648305501,0.2197051380789965,0.2283148008682939,0.2365492997042576,0.2443387528390564,0.2520221902049984,0.2589989813553696,0.2651874291792891,0.2705828694391168,0.2756450448958346,0.279362797939873,0.2843391920761313,0.2887051458990536,0.2930667800935772,0.2960927261854778,0.2997526451429089,0.3031682567330404,0.300607137568488,0.2981468998060229,0.2946432340401581,0.2918704465122989,0.2899979248806806,0.2867549365464791,0.2839919202120944,0.2828755687956264,0.2840947776945598,0.2845292557452338,0.2853782830262642,0.2861283643892339,0.2871905139660139,0.2871775417298938,0.2892897461148608,0.29126314693325,0.2910343649460467,0.2955052999087849,0.3001824177366168,0.303886925795053,0.3068491904675277,0.3092401376754037,0.3124249130572241,0.3162861491628615,0.3220642245032489,0.3276661514683153,0.3264304341156619,0.3321862348178138,0.3370879120879121,0.3307301835220617,0.0,2.0010586407055038,52.57366709383711,141.05354279165445,205.3522554485741,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95674,47191,449.0352655893973,4914,50.13901373413884,3913,40.38714802349645,1469,15.03020674373393,77.31532774038504,79.70691908736528,63.31028192710126,65.0759871067284,77.12645036822937,79.51923346760323,63.23943076435787,65.00761141456408,0.1888773721556731,187.68561976204975,0.0708511627433878,68.37569216432371,242.40436,169.66846618714146,253364.9267303552,177340.20338560262,480.77483,320.09612803347727,501991.2306373727,334047.2730663266,457.57281,223.31825582289775,474906.65175491775,230871.6772396741,2229.63752,1054.1499984264108,2301721.4708280205,1073083.0512222862,894.5304,408.9662487205246,920810.7427305224,413291.3003747357,1431.041,610.7165818912956,1465270.313773857,612265.054345471,0.37703,100000,0,1101838,11516.587578652508,0,0.0,0,0.0,41498,433.20024249012266,0,0.0,41427,429.64650793318975,1114271,0,39995,0,0,9574,0,0,74,0.7734598741559879,0,0.0,0,0.0,0,0.0,0.04914,0.1303344561440734,0.2989417989417989,0.01469,0.367692907248636,0.632307092751364,23.070157505573963,4.069705906208666,0.3007922310247892,0.2867365192946588,0.2075134168157424,0.2049578328648096,11.38468023663734,6.091877180472616,15.691079153741567,11506.296193175116,44.87431228772135,13.819306742580151,13.269808677491657,9.022632531065918,8.762564336583617,0.5803731152568362,0.8101604278074866,0.6873406966864911,0.5825123152709359,0.0997506234413965,0.7608881298035867,0.9394572025052192,0.8509316770186336,0.72,0.1352941176470588,0.5032822757111597,0.713841368584759,0.6257309941520468,0.5375816993464052,0.0901898734177215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.0049068310387477,0.0072154904706813,0.0094080832300408,0.0116678873697916,0.014087089381207,0.0163396026273917,0.0185792349726775,0.0208007363092498,0.023081491797571,0.0252189608844583,0.0273032634487575,0.0292262902877364,0.0312622359608449,0.033505367464905,0.0356086461888509,0.0378390699794848,0.0397509081473793,0.0415236430963822,0.0433146775891358,0.0576183710142504,0.0722654409532086,0.0851499281058785,0.0980291056790799,0.1097849258110133,0.1254194231278116,0.1366961470266597,0.1471177197392527,0.1573518880730219,0.1672534077492755,0.1795214485880577,0.1908463895535801,0.2008794940732113,0.2105769967281998,0.2188363820578615,0.2283318730799516,0.2371315933482985,0.2441431304152132,0.2516090218736165,0.2578922641487813,0.2640913142632231,0.2696650247458143,0.2751642109000533,0.2794560303164762,0.2835284402778452,0.2876498047765091,0.2912195121951219,0.2941961561928005,0.2979259872249088,0.3011614570287266,0.2983968582725879,0.2963711340206185,0.2935428997202345,0.2908408516780945,0.2878331677073908,0.2841579317299758,0.2813624597512469,0.2815798934536065,0.2815231810605803,0.2817879794623981,0.2826155765327971,0.2830552115887336,0.2835154750980229,0.2845410843051723,0.285266157419602,0.2866035533653223,0.2889603003071322,0.2928739971684757,0.2961662687824744,0.3011469619399134,0.3028373954165151,0.3053144188016091,0.3093484419263456,0.3103553687428353,0.3131074832499764,0.3152586616041765,0.3192197187358234,0.3201346268065729,0.322800326886407,0.3285660519382762,0.0,1.9362569024169267,51.10370348923467,144.9953282093805,199.94257366736127,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95627,47787,455.7081159086869,4963,50.6760642914658,3888,40.07236449956602,1436,14.619302079956498,77.3146043072854,79.73193046508906,63.296484254502126,65.0822242588064,77.12657808041388,79.54816324585367,63.22546385640347,65.01514546737593,0.1880262268715284,183.76721923539208,0.0710203980986534,67.07879143047535,240.79,168.62250780106183,251801.2695159317,176333.57503744948,482.37205,321.5513098115751,503867.265521244,335692.23107655265,466.35293,227.56092071683017,483748.815711044,234951.89669725084,2196.21484,1039.8309279066298,2266992.0838256977,1057727.010056396,898.6344,405.6464233869272,927683.3739425058,412151.56164069416,1392.06298,592.9498610038378,1420413.795267027,591193.342326991,0.38229,100000,0,1094500,11445.512250724169,0,0.0,0,0.0,41499,433.3608708837463,0,0.0,42163,436.9895531596725,1118035,0,40104,0,0,9491,0,0,87,0.899327595762703,0,0.0,1,0.0104572976251477,0,0.0,0.04963,0.1298229093096863,0.2893411243199678,0.01436,0.3563151796060255,0.6436848203939745,23.523012161133536,3.9521645988220175,0.3042695473251028,0.2998971193415637,0.199074074074074,0.1967592592592592,11.579906489861475,6.4305408458325966,15.330686470207324,11622.23321389763,44.62471366703966,14.246502510855445,13.49355869121677,8.491097837230262,8.393554627737178,0.6033950617283951,0.8121783876500858,0.7252747252747253,0.599483204134367,0.1006535947712418,0.7757166947723441,0.9284294234592444,0.8738738738738738,0.7486910994764397,0.1194968553459119,0.5277572168763879,0.7239819004524887,0.6670588235294118,0.5506003430531733,0.0957095709570957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304591004427,0.0044923994280556,0.0068014780525439,0.0090738200477569,0.011322021484375,0.0136687716439193,0.0161361063228649,0.018153028910001,0.0204559634247373,0.0225499231950844,0.0246464066298115,0.0267902084253561,0.0286305090325501,0.0305815439146024,0.0327528721987675,0.0348767474563652,0.0371563863186579,0.0392761477605432,0.0410987410259078,0.0430955360867751,0.0572679857431041,0.0715565192797209,0.0851175537891277,0.0982726497615814,0.1102819324670938,0.1266041251958832,0.137720798326022,0.1490579308580928,0.1597205879206692,0.1688599082598373,0.1804774902096167,0.1918845982941182,0.2026539706058592,0.2127645589588536,0.2218756544069832,0.2310432457026178,0.2400683898219853,0.2476878189458031,0.2548959469283897,0.2619214144031553,0.2687299621523397,0.2737308650349078,0.2784187048146439,0.2827683717363433,0.2875101624783099,0.2919929088491653,0.2958570268074736,0.2994041644963348,0.3025453417273162,0.3052634353338077,0.3017652832116592,0.2984222017769111,0.2961926328077751,0.2936855019123908,0.2912038961810299,0.2874934973530402,0.2836085278674005,0.2836675747530114,0.2839341572227065,0.2832967777599458,0.2838130436405719,0.2851393006498733,0.287101132938364,0.2880426335072721,0.2902749321008243,0.2899267965769667,0.291048982582718,0.2952768123138033,0.2994732099535593,0.3051153302997019,0.3102163569440704,0.3152544149242781,0.3182700131438943,0.3208201417156641,0.3262727610553697,0.3318359144106868,0.3301611665387567,0.3322554567502021,0.3386789888556673,0.342681521321552,0.0,2.2877851654932795,51.56967406084582,139.5672836552423,200.2625816757112,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95635,47743,455.55497464317455,4913,50.044439797145394,3912,40.21540231086945,1471,15.004966800857426,77.29129418892526,79.69272817593892,63.29829466637945,65.07074349291084,77.10269395224843,79.50780028654684,63.22654005243204,65.00262202050338,0.1886002366768338,184.92788939208535,0.0717546139474052,68.12147240745503,242.77924,170.0618070022602,253860.23945208345,177823.81659670646,481.99706,320.6380640202311,503346.3271814712,334622.5377949821,465.65506,227.63717848957813,482226.70570397866,234445.1254976296,2188.59172,1048.288089979987,2251652.2193757514,1059725.4869234806,891.82985,413.335565254614,916378.7734615988,416047.7041242496,1418.16642,608.7900873623502,1448838.1659434307,607583.7106179717,0.38059,100000,0,1103542,11539.10179327652,0,0.0,0,0.0,41457,432.8017985047315,0,0.0,42081,435.3322528363047,1110203,0,39837,0,0,9462,0,0,102,1.0665551314895174,0,0.0,2,0.0209128457154807,0,0.0,0.04913,0.1290890459549646,0.2994097292896397,0.01471,0.351953125,0.648046875,23.268635947429225,4.028337048303153,0.3047034764826176,0.2980572597137014,0.2067995910020449,0.1904396728016359,11.56479071385542,6.416675797445961,15.710560926733642,11591.013787934357,45.10918629118422,14.301843705027832,13.588076785076437,9.05036103188652,8.168904769193434,0.5920245398773006,0.7924528301886793,0.6736577181208053,0.6032138442521632,0.1355704697986577,0.7654830718414534,0.910386965376782,0.8476454293628809,0.7360406091370558,0.1790123456790123,0.5142539800074046,0.7066666666666667,0.5980746089049338,0.5604575163398693,0.1234991423670669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023196215674159,0.0043191726655175,0.0064553454523309,0.0087084645869322,0.0110388751538829,0.013342160207771,0.0156004649550339,0.0178079114505687,0.0199472435792573,0.0219216513423299,0.0242329149232914,0.0262928156935243,0.028362738542256,0.0306864785771695,0.0328694718586117,0.0348344124278592,0.0368101974195554,0.0385929209971654,0.0407757696829707,0.0428060591528445,0.0578098711504498,0.0722321148004608,0.0849126933294133,0.0972960456377816,0.1095491388044579,0.1249034197351848,0.1365059818897888,0.1475820195994887,0.1579926445432774,0.1672356780898393,0.1791097884453645,0.1911764705882352,0.2024317499020333,0.2121952020672061,0.2218389030949651,0.231442355681251,0.240068370721244,0.2485112514493487,0.2556362810761721,0.262223902483732,0.2682328434209003,0.2741839276733605,0.2782782664283262,0.2829571200805572,0.2875704978607545,0.2920006906588392,0.2947953714371587,0.2983244633444527,0.3014277200528593,0.3055529914417206,0.3021744395704943,0.2990659348217848,0.2962389068882941,0.2933019399384651,0.291186430608365,0.2872289895043285,0.2832386408596705,0.282711162935834,0.282816718499026,0.2831768360169945,0.2838146608233134,0.2847034174688198,0.28586983834492,0.2866296073047127,0.2878791506068803,0.2890548037538238,0.2895026688130136,0.2929522977568402,0.298185624563852,0.3016781836130306,0.3059073638501899,0.3100367840252233,0.3130826503159607,0.316867744138402,0.3215759849906191,0.3271604938271605,0.3242414955562366,0.3312870881931655,0.336083608360836,0.335469280060309,0.0,2.682007676616117,52.170800342641385,142.43565956634296,198.57676331028344,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95634,47655,455.3401509923249,4961,50.71418114896376,3943,40.68636677332329,1437,14.680971202710332,77.27514686010801,79.68661170440204,63.27600815666828,65.05670758947545,77.09341054111493,79.51011046405785,63.206232441151926,64.99186409943847,0.1817363189930745,176.50124034419434,0.0697757155163572,64.84349003697787,242.077,169.59461624380617,253128.59443294228,177337.1564964408,484.21825,321.9952480905527,505740.9394148525,336112.4126954433,468.06211,228.50954768627537,486706.3492063492,236852.6685778324,2254.94544,1071.7930301560448,2326183.909488257,1089058.670170015,896.88765,407.5793795519274,923480.8122634208,411888.3728071299,1403.54392,601.9063063885557,1433303.6367818976,597515.5599703068,0.38031,100000,0,1100350,11505.845201497375,0,0.0,0,0.0,41676,435.1695003868917,0,0.0,42386,440.47096221009264,1108178,0,39761,0,0,9659,0,0,78,0.8051529790660226,0,0.0,0,0.0,0,0.0,0.04961,0.1304462149299255,0.2896593428744204,0.01437,0.3598448108632395,0.6401551891367604,23.032494893724355,4.01500217531244,0.3144813593710373,0.2764392594471215,0.2082170935835658,0.2008622875982754,11.511364161636717,6.3012906293719215,15.244111877737572,11569.36983139243,45.284422710423605,13.407656748945165,14.066711641196646,9.173933951697554,8.636120368584239,0.590667004818666,0.810091743119266,0.7040322580645161,0.5919610231425091,0.1098484848484848,0.7671913835956918,0.9063136456211812,0.8895348837209303,0.7688442211055276,0.1271676300578034,0.5127923976608187,0.7312186978297162,0.6328125,0.5353697749196141,0.1050080775444265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0044292186533959,0.0069199939120288,0.0089080751650584,0.0108829422593801,0.0129134756395633,0.0151221601337847,0.0173351982113505,0.0194861623710549,0.0213794233289646,0.0235093801606269,0.0258059213905611,0.0281595950450635,0.0300262845951656,0.0320432061793923,0.0340464712089549,0.0360511640441984,0.0381483558712947,0.0399100852317074,0.0420403821284051,0.0567668701396437,0.0707122572802816,0.0841597680379879,0.0974324936523488,0.1098610891036814,0.1253984897107573,0.1367466870702755,0.1482132958082811,0.1588269920265425,0.1677898515676222,0.1798993781309379,0.1913670625237243,0.2022783016296942,0.2117447088496545,0.2208795453291397,0.2306222646790927,0.2391328677589757,0.247286226896256,0.2547658339498093,0.2611172363101801,0.2666496525642959,0.2732112286297226,0.2784748576850095,0.2830492196878751,0.2871852851429057,0.291705199817507,0.2949487105622425,0.2982302123490718,0.3013363057820175,0.304452895967039,0.3015101100588687,0.2987272101823185,0.2947683992737406,0.2917701056520986,0.2895455084846327,0.2858736854976766,0.2817323779159695,0.2817445380901726,0.2827268711989943,0.283208465007279,0.2843680606094534,0.2855598151970903,0.2863216689939767,0.2867787712976556,0.2887204380783854,0.291436857505373,0.2928367410423913,0.2986668331824284,0.3027724498692241,0.3061361306096695,0.3086781894489823,0.3132949807357365,0.3179835493519442,0.3217717717717718,0.3264489719973951,0.3364353869713747,0.3333839611178615,0.3341375150784077,0.3395918367346939,0.3497350492051476,0.0,2.023670413933752,52.71993347474425,146.38410873772577,196.2171813305994,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95672,47472,453.36148507400287,5052,51.50932352203362,4030,41.41232544527134,1530,15.511330378794217,77.28391542799022,79.68131744690001,63.28504443165552,65.05949165419311,77.08414023312388,79.48881126312209,63.207620396286416,64.98858316830132,0.1997751948663477,192.5061837779225,0.0774240353691055,70.90848589179188,241.1717,168.98502227017843,252081.80031775232,176629.54915772474,482.56034,320.792192693101,503687.56794046325,334601.3699860995,463.23219,226.55537819298576,479998.3171669872,233600.3597453204,2287.18556,1090.7092676136958,2349654.026256376,1099051.6636149506,933.49316,429.3949680841421,950798.7603478552,423900.8335361805,1482.64618,642.0802737141014,1503259.1144744544,629087.2733696133,0.37841,100000,0,1096235,11458.263650806924,0,0.0,0,0.0,41620,434.28589346935365,0,0.0,41974,434.5681077013128,1115943,0,40072,0,0,9563,0,0,68,0.700309390417259,0,0.0,2,0.0209047579229032,0,0.0,0.05052,0.1335059855712058,0.3028503562945368,0.0153,0.3570748428870691,0.6429251571129309,23.37036285054906,3.9336395782678055,0.3193548387096774,0.2816377171215881,0.1967741935483871,0.2022332506203474,11.168164101203354,6.22991711708345,16.416735641847808,11540.382240371457,46.455349635587694,13.951227108650397,14.690193047742824,8.849016132734002,8.964913346460474,0.5863523573200993,0.8044052863436123,0.6884226884226884,0.5838587641866331,0.1239263803680981,0.7585365853658537,0.918200408997955,0.8567567567567568,0.7419354838709677,0.1567567567567567,0.5107142857142857,0.718266253869969,0.6205016357688113,0.5354200988467874,0.1142857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024624551589955,0.0047671210645894,0.0070763576555631,0.0090954360219916,0.0114974105389538,0.0135991361747208,0.0158702636544443,0.0179760591575765,0.0200971618511889,0.0219938945686246,0.0239653651230071,0.0261086679544613,0.0284726438295551,0.0304029681541791,0.0323203336292503,0.0343347639484978,0.0361739166476695,0.0381377484818601,0.040007073533542,0.0419611031205052,0.0569769021029428,0.0714001507790249,0.0839998320633121,0.0966017322851219,0.1091876372234419,0.1247207783271048,0.136627690869893,0.1475484922401763,0.1570832887843472,0.1670316693505099,0.1786299538574324,0.1905257227061934,0.2018513476722025,0.2110093752738105,0.2196417745935519,0.2288794156175758,0.2373902834460781,0.2461874866153447,0.2533018117342183,0.2600580481593227,0.2653032832498608,0.2711713401481759,0.2763168819461742,0.2801334998079139,0.2848276113862892,0.2890174836823078,0.2931516115697303,0.2964113005853906,0.3003574759092322,0.3032297202843314,0.3009422533315385,0.2984631457399719,0.295347790622451,0.292789480513863,0.2896874303957235,0.2863897900471323,0.2833826250612851,0.2828853618986782,0.2830478400327578,0.2842904772942036,0.2853103112476122,0.2864742993888812,0.2875440954140769,0.2891323341622421,0.289254602929466,0.2909854233487183,0.2914845302299176,0.2957163031539306,0.2986033519553072,0.3031353395304868,0.3072575175220439,0.3105116474733133,0.3176776751967284,0.3221586263286999,0.3299660207548902,0.3361637780621146,0.3423586040914561,0.3487118034751348,0.3596924766611751,0.3668683812405446,0.0,2.798855298199221,53.0240727888047,149.40178203613303,203.6390043678796,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95660,47972,457.8925360652311,4942,50.54359188793645,3915,40.36169767928079,1469,14.980137988710014,77.35161970545354,79.75669071068957,63.31721993396855,65.09395208919216,77.16766634225384,79.57609086947453,63.24873516278676,65.02885676547811,0.1839533631997056,180.5998412150416,0.0684847711817937,65.09532371404703,242.65538,169.9215329552481,253664.41563872047,177630.70557730304,484.43581,322.5072647909903,505889.8285594815,336614.744711468,471.15693,229.75417031777803,489336.26385113946,237670.8581613931,2225.46212,1050.507825636072,2295819.6947522475,1067558.881074716,901.01458,414.0863934076632,924003.8051432156,414984.16622168303,1424.97888,598.3603146802444,1455090.2989755385,597012.7325342817,0.38201,100000,0,1102979,11530.200710850932,0,0.0,0,0.0,41710,435.4484633075476,0,0.0,42593,442.0029270332428,1109516,0,39778,0,0,9620,0,0,86,0.8885636629730295,0,0.0,2,0.0209073803052477,0,0.0,0.04942,0.129368341142902,0.2972480777013355,0.01469,0.3471492508270091,0.6528507491729909,23.24877500738423,4.076759632461032,0.3098339719029374,0.2893997445721584,0.2007662835249042,0.2,11.775807688975616,6.486651409171162,15.56861950168724,11592.46049954792,44.84671187202754,13.968742380565152,13.798658185078477,8.604280532532917,8.475030773850994,0.5959131545338442,0.8005295675198588,0.7114591920857378,0.5916030534351145,0.1251596424010217,0.7865646258503401,0.9454926624737946,0.8583815028901735,0.7736842105263158,0.1840490797546012,0.5140562248995983,0.6951219512195121,0.6528258362168397,0.5335570469798657,0.1096774193548387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721127445517,0.0046037621051564,0.0069620638561308,0.0091339510688449,0.0113926497065375,0.013515991036871,0.0157854484270636,0.0179309922292226,0.0204192229038854,0.0224521151285465,0.0244372858403266,0.02664570359866,0.0286702204293329,0.0305985690426606,0.0327122110438572,0.0348034803480348,0.0366896408768202,0.0387210630125609,0.040605493133583,0.0427075947783292,0.0573846716472493,0.0720223636820504,0.0851919100746229,0.0983796296296296,0.110503709488481,0.1259472503280979,0.1369828107912981,0.1490205273591542,0.159418894487414,0.1685636972768662,0.1810702694542984,0.1922510344229977,0.2027666822668945,0.2128309237958696,0.2217218484711685,0.230381290179561,0.2385245260676743,0.2466823497630652,0.2541197566733248,0.2609332783807299,0.2665517919302425,0.2717129705353179,0.2774908098013026,0.2817290776577029,0.2860607824589488,0.2902936147705327,0.2952710208055115,0.2985943724151929,0.3017521676300578,0.3048015878231838,0.3020253130578335,0.2989637021603246,0.2965837637547721,0.2938907122703978,0.2909898571111275,0.2876384270417035,0.2837735611170648,0.2839066178393931,0.2846447046011435,0.2842561968775561,0.2854742972337328,0.2856131658113608,0.2862087660035864,0.2865959241664076,0.2872188333968738,0.2872035713364126,0.2887395527445222,0.2938976500654491,0.2967185761957731,0.2998781302826591,0.3043987741121327,0.3100783289817232,0.3171986365044933,0.3196696696696696,0.3222160459514545,0.3238241188258871,0.3248630553864881,0.3294141092068553,0.335568669527897,0.3322197475872309,0.0,2.2339555792829477,51.07024230761392,145.14195778081492,198.06538446540523,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95781,48173,458.5147367431954,4935,50.1978471721949,3924,40.289827836418496,1468,14.877689729695868,77.3507064425629,79.67840619187113,63.34838135415546,65.06967685367293,77.16092979388422,79.49508497299958,63.27540875796812,65.0017679760253,0.1897766486786736,183.32121887155492,0.0729725961873342,67.90887764762488,242.36014,169.83815800262724,253035.7168958353,177319.2574755194,485.13707,322.87731300685,505857.39342875936,336450.35341753584,467.05569,228.46511086723592,483504.3693425627,235302.967113192,2238.0608,1068.435983570212,2300319.144715549,1079174.2240843307,899.20811,414.0329118029944,923270.51294098,416724.12253264646,1430.45944,619.2999098864138,1452313.2145206253,611860.6471877936,0.3846,100000,0,1101637,11501.62349526524,0,0.0,0,0.0,41600,433.63506332153554,0,0.0,42377,438.31240016287154,1113604,0,39965,0,0,9574,0,0,81,0.8352387216671364,0,0.0,0,0.0,0,0.0,0.04935,0.1283151326053042,0.297467071935157,0.01468,0.3527463965718738,0.6472536034281262,23.26800716298554,4.041251065587828,0.3109072375127421,0.2808358817533129,0.2020897043832823,0.2061671763506626,11.303383678326403,6.232822985823621,15.71660260547788,11608.389664529786,45.32446235818137,13.648824671301451,14.059727395553256,8.844462979426304,8.771447311900367,0.5833333333333334,0.8030852994555354,0.7073770491803278,0.5687263556116016,0.111248454882571,0.7447665056360708,0.9135802469135802,0.8626373626373627,0.698019801980198,0.1368421052631579,0.5085756897837435,0.7159090909090909,0.6413551401869159,0.5245346869712352,0.1033925686591276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892103237308,0.0043491484184914,0.0063827412300729,0.0087863643751015,0.011041971693509,0.0132244698504484,0.0155925155925155,0.0177465277423436,0.0199065984037932,0.0222881702824396,0.0244379777445334,0.0264834747632289,0.0287138379322748,0.0308205429109663,0.0331312256388046,0.0353099173553719,0.0375497956438512,0.0394766851195289,0.0416017612727688,0.0436611214058173,0.0579310920511696,0.0714240903387703,0.0847956894563599,0.0976647889692281,0.1104377246329458,0.1260835553300351,0.1383771860053238,0.1487685987356052,0.1592355327781336,0.169187398840213,0.1814883791028387,0.1928053354663668,0.2038186105647501,0.2126546042568069,0.221323011963406,0.2304126562672862,0.2384773112240349,0.2457056834394976,0.2534424334462867,0.260066134993192,0.2664495339731818,0.2729767284361462,0.2782218018444076,0.2831184687758107,0.2873501868115872,0.2904250212325985,0.294538775816185,0.2989885898706513,0.3019761005638611,0.3050793901572004,0.3017145312227279,0.2982634360628732,0.2953494582097733,0.2924739248979356,0.290227414237851,0.2868910080078244,0.2834186575654152,0.283275387037523,0.2831565665177505,0.2844928930212675,0.2855271774721676,0.2860355473142248,0.2869670775863873,0.2880574638054107,0.2891884113584037,0.2913543618571726,0.2937323803286157,0.2999905633669906,0.3053226202589383,0.3093422871815129,0.3128067624068351,0.3182906710659358,0.3217999621856683,0.3256719609040928,0.3297742811651213,0.3326629598958949,0.3332309582309582,0.3353820938332309,0.3327800829875518,0.3419329996149403,0.0,2.676091460642609,53.55929093894066,144.45343953260254,192.6418027015004,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95726,47787,455.7278064475691,5028,51.27133694085202,3965,40.7308359275432,1480,14.969809665085766,77.31652017658898,79.67688493704756,63.31665033110207,65.06205925159755,77.12904832429716,79.49775675459685,63.24474897669705,64.99681001628642,0.1874718522918215,179.12818245071094,0.0719013544050142,65.24923531112847,242.60192,169.9403570229164,253433.67528153272,177527.89944520444,485.07149,322.036671294909,506005.9336021562,335693.5314442989,463.76157,226.14478798967076,480441.5728224307,233109.27788592965,2241.19844,1059.5295398153962,2302137.935357165,1067802.6058115172,925.88733,417.4866361436861,948656.1644694232,417617.3581193721,1435.34556,613.7791757961995,1453064.7055136536,601291.7130207968,0.38128,100000,0,1102736,11519.71251279694,0,0.0,0,0.0,41731,435.2004680024236,0,0.0,42001,434.8243946263293,1111034,0,39940,0,0,9687,0,0,79,0.8148256482042496,0,0.0,0,0.0,0,0.0,0.05028,0.1318715904322283,0.294351630867144,0.0148,0.3598398169336384,0.6401601830663616,23.40188312907788,4.100196303236486,0.3039092055485498,0.2862547288776797,0.2118537200504413,0.1979823455233291,11.35204029308094,6.077755361315962,15.836178611090352,11539.939023774126,45.53394374525895,13.958660011582664,13.812375721756151,9.255039090518846,8.50786892140128,0.5916771752837326,0.8105726872246696,0.7095435684647303,0.5630952380952381,0.1248407643312101,0.7662771285475793,0.9256198347107438,0.8774928774928775,0.69,0.147239263803681,0.5160823997108782,0.7250384024577573,0.6405152224824356,0.5234375,0.1189710610932476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024209641312385,0.004795166310155,0.0070844963207307,0.0092362091915014,0.0113016764322916,0.013280915812845,0.0155528132744536,0.0177077908152323,0.0198361979938855,0.0217765218993795,0.0238805664072513,0.025968025136309,0.0280320013162495,0.0302846198204135,0.0322963299156231,0.0345508084930516,0.0366241214040971,0.0387755313741558,0.0407501351407542,0.0426855315114449,0.0573961346099631,0.0713388727265116,0.0847089669638175,0.0965635449746577,0.1088299801763043,0.1237056701957756,0.135197640618701,0.1446911792884668,0.1556089743589743,0.1655276737724088,0.1779635454819666,0.1901108177135189,0.2008678063421636,0.2099174457383412,0.219018681814679,0.2287801201480792,0.2380378100119482,0.2460196905766526,0.2536969573161735,0.2605299029771246,0.2664784625886545,0.2714312445910228,0.2769736919963549,0.2813638979474391,0.2852734650241757,0.2895661500906165,0.2933748811132802,0.2973234276409526,0.3010763817015111,0.3040204649445521,0.3017608996865625,0.2981628018991261,0.2950565409886918,0.2920094261880322,0.2897555902236089,0.2869542587716612,0.2831802444152846,0.2832220052190182,0.2837452390305556,0.2845407953713459,0.2858079011421082,0.2872951062193029,0.2879998326919859,0.2886821082697371,0.2895651132143285,0.2907238939429282,0.2921759351161274,0.2972542901716068,0.3031874173568098,0.3070051160960252,0.3108541487872081,0.3148724988121007,0.3187925754640335,0.3242735941136722,0.3237723939478325,0.3305034783634005,0.3359173126614987,0.3403445512820512,0.3463427947598253,0.3575503993914036,0.0,2.5610677869351672,51.82905110620906,147.39451848729308,199.76462202887635,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95688,47608,453.8709138031937,4990,51.14538918150656,3934,40.63205417607223,1506,15.477384834043976,77.40264542862671,79.78460991931938,63.35728834693722,65.11266561874584,77.21271946586279,79.59310243255455,63.28667539694194,65.0428844894412,0.1899259627639224,191.5074867648343,0.0706129499952794,69.78112930462999,241.83258,169.37885611709967,252730.31101078505,177011.59614277616,484.4269,321.81479944760434,505787.95669258427,335848.0472448001,462.17124,225.0198268447257,479523.3467101413,232461.35289794195,2229.57596,1054.163651311956,2303846.1667084694,1075466.1099740362,897.38594,411.57120497063033,925821.6913301564,418115.46906058834,1456.5543,617.319039874787,1497429.7926594766,625501.0919610179,0.38125,100000,0,1099239,11487.741409581138,0,0.0,0,0.0,41629,434.5581473120976,0,0.0,41904,434.4118384750439,1119599,0,40143,0,0,9520,0,0,87,0.909204915976925,0,0.0,0,0.0,0,0.0,0.0499,0.1308852459016393,0.3018036072144288,0.01506,0.3573770491803278,0.6426229508196721,23.406106434493815,4.070971477395318,0.3124046771733604,0.2793594306049822,0.2099644128113879,0.1982714794102694,11.415897136709743,6.168968911385646,16.093988619346504,11540.499702672842,45.107904631988,13.561200098522644,13.868631673879468,9.211230895924857,8.466841963661036,0.5940518556176919,0.8298453139217471,0.7013832384052074,0.5847457627118644,0.1025641025641025,0.7690376569037657,0.9414316702819956,0.8436578171091446,0.751131221719457,0.1896551724137931,0.5177071924059876,0.7492163009404389,0.647191011235955,0.5239669421487604,0.0775577557755775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020252959463701,0.0044797145955587,0.0067965104483668,0.0091201771223708,0.0113279303647512,0.0132272977211168,0.0158226880218581,0.018105551076229,0.0200194164835726,0.022401653772156,0.0245187478218085,0.0267431833114323,0.0291483739628422,0.0308963017126849,0.0328824506556886,0.0347069341519126,0.036675398904501,0.0387888095633405,0.0408407346548245,0.0428760513178601,0.0575177327190865,0.0714816715005182,0.0852177927951561,0.0974239762698671,0.1095384745190685,0.1249814865751221,0.1362903225806451,0.1467501224159587,0.1565331680629167,0.1658660032598438,0.1790978884689515,0.1902618480848301,0.2017331173279114,0.2111960121995212,0.2206849525988166,0.2300293320050916,0.2382698437465171,0.2457462460270218,0.2528990759195506,0.2594264684031865,0.2653101267283765,0.2709203312726,0.2769063720803975,0.2810568473907586,0.2859687386404944,0.289388909381532,0.2931450051827707,0.2965316892474755,0.3000787167873227,0.3030665492448638,0.3004842192802436,0.2974890754921165,0.2953551606211806,0.2922566085469102,0.2891438032166509,0.2863957812595257,0.2821192052980132,0.2817827808501587,0.2825052674505539,0.2834463898852861,0.2846596946479503,0.2849637326014507,0.2866542133665421,0.2867025876405242,0.2880368610786162,0.2898340624919102,0.2915333880601239,0.2952980400710435,0.2978137313016493,0.3002993540255239,0.3050525172039116,0.3088079610417107,0.3145933763225443,0.3201810637495285,0.3221113494357922,0.3266969379438817,0.3314155942467827,0.3347255369928401,0.336463643681245,0.3398813936249073,0.0,1.8607001228779445,52.3073988520661,141.38696556222507,203.35886825427045,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95736,47819,455.58619537060247,4925,50.28411464861703,3920,40.45500125344698,1466,14.936909835380629,77.33907921770925,79.7054869446832,63.32552877917672,65.07524685625877,77.15232222215477,79.52325377851069,63.25437426907936,65.008528504527,0.1867569955544894,182.23316617250876,0.0711545100973509,66.71835173176532,243.54462,170.517636016498,254391.89019804465,178112.34646997784,487.36793,323.9770153031609,508571.93741121417,337903.7303659657,466.61282,226.8488316523252,484992.3748642099,235050.590776792,2235.63096,1050.9280502858778,2307731.678783321,1070263.109264935,899.51083,406.1473447837223,928880.5360574914,413547.2003394098,1426.83436,607.5956863907289,1455482.911339517,603634.864680383,0.3818,100000,0,1107021,11563.267736274754,0,0.0,0,0.0,41908,437.2231971254282,0,0.0,42277,439.1451491601905,1105854,0,39706,0,0,9664,0,0,85,0.8878582769282193,0,0.0,0,0.0,0,0.0,0.04925,0.1289942378208486,0.2976649746192893,0.01466,0.3548763869963013,0.6451236130036987,23.313046152880528,3.950341583399904,0.3035714285714285,0.2834183673469387,0.2127551020408163,0.2002551020408163,10.88061831590733,5.851323879365991,15.566536570384734,11581.14026523325,44.89118567899357,13.66591468103836,13.390443479688784,9.317409746228948,8.517417772037474,0.5936224489795918,0.8343834383438344,0.7151260504201681,0.5599520383693045,0.1044585987261146,0.7536988685813751,0.9216101694915254,0.8782894736842105,0.72,0.1156069364161849,0.5272464814146518,0.7699530516431925,0.6591422121896162,0.5094637223974764,0.1013071895424836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509803921568,0.0048059374619783,0.0071658394486566,0.0091854982929604,0.011352654547674,0.0135453054822841,0.0157038698822209,0.0179685346455808,0.0198572567946174,0.0221327761732112,0.0244700380485503,0.026611751897538,0.0286014007590015,0.0308974583517921,0.0328244511194376,0.035034745201853,0.0370450943220312,0.0391975757072583,0.0409617004461175,0.0429971974203765,0.0574495410928151,0.0716639984932667,0.0848038753106225,0.0978515768773726,0.1106646841089563,0.126359213031521,0.1382661559844249,0.1494963906220054,0.1597024814585248,0.1689843129680894,0.1802762871489838,0.191768807657326,0.202926457789382,0.2123310903222277,0.2211677144461448,0.2310966754980102,0.2396042699539952,0.2475071465550228,0.254746853400824,0.2610369521627041,0.2664089983336419,0.2720988982713854,0.2780208087018208,0.28204084564369,0.2863432383262583,0.290121483375959,0.2938217673489765,0.2977886603823854,0.3011255098353038,0.3046717653718062,0.3015529992886001,0.2984693527352598,0.2956086308267927,0.292429818864112,0.2894791481283739,0.2854392666157372,0.2822236954257032,0.2817812571653182,0.2822371563075663,0.2828742087902291,0.2835329956828079,0.2848225889024534,0.2859464527554953,0.2864997217584863,0.2877373134328358,0.2889434889434889,0.2893573614416865,0.2928522293790257,0.2969295184926727,0.3019627976778168,0.3046216583597644,0.3053863672474974,0.3088142839180183,0.3110723229870228,0.312627669452182,0.312889935256033,0.3195103289977046,0.3186591276252019,0.324882887847892,0.3338408831366578,0.0,1.862399171339465,50.22810841721808,147.450298986063,200.98473666775416,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95687,47528,452.0676789950568,4935,50.43527333911608,3930,40.49661918546929,1457,14.87140363894782,77.30793472821749,79.68305863330431,63.31631099018998,65.06991409785087,77.12123485528711,79.49850847558879,63.24597988892791,65.00226801093446,0.1866998729303759,184.5501577155204,0.0703311012620773,67.64608691641172,240.91958,168.7877145655446,251778.79962795365,176395.6593534593,482.84255,321.4180942506776,504042.16873765504,335341.66004857246,462.4529,225.7666324387625,478863.3043151107,232577.3213427982,2232.70532,1047.5611090731925,2304419.743538829,1065856.2908996977,900.64818,405.0622475501178,929258.5095153992,411346.8998035423,1413.68134,600.6528834416539,1445595.2010199924,602473.719458749,0.37967,100000,0,1095089,11444.49089217971,0,0.0,0,0.0,41489,432.9950777012551,0,0.0,41802,432.4620899390722,1119723,0,40189,0,0,9655,0,0,91,0.9510173795813434,0,0.0,0,0.0,0,0.0,0.04935,0.1299812995496088,0.2952380952380952,0.01457,0.3533747090768037,0.6466252909231963,23.517641437523203,3.9600224646255895,0.3094147582697201,0.2885496183206107,0.2020356234096692,0.2,11.35224756218299,6.36045903115027,15.635556211541177,11526.475149512917,45.08375367014971,13.883095290194351,13.821831845494932,8.822317087850932,8.5565094466095,0.5862595419847328,0.7962962962962963,0.7006578947368421,0.575566750629723,0.1170483460559796,0.7593220338983051,0.908119658119658,0.8789625360230547,0.7435897435897436,0.1235294117647058,0.512,0.7177177177177178,0.6294591484464902,0.5208681135225376,0.1152597402597402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.0043472092740464,0.0066139847229125,0.0088465913707646,0.0109734765275404,0.0131664697975642,0.0152440578764364,0.017590607452782,0.0199145351571285,0.0223152593381171,0.0247265420771525,0.0267664633770714,0.0288787872554867,0.0309164709275971,0.0331455224650692,0.0352631034839243,0.0374457326992218,0.039576001079723,0.0418387408848342,0.043783293546134,0.0577851129170409,0.0711960560608756,0.0845389594720773,0.0971561987295444,0.1097886247430288,0.1248440242793393,0.1363101110722128,0.1470297082397522,0.157185740687327,0.1665844345289171,0.1785122009002606,0.1903901695025257,0.2015654726314072,0.2106569295186452,0.2189187702799318,0.2283173295234298,0.2363579565105822,0.2440772155601052,0.2519941452123495,0.2581779447473313,0.2639663834417614,0.2685285896401296,0.2744937929728642,0.2792161847770036,0.2838315927686528,0.2893266396121918,0.2932827219883744,0.2969261538069578,0.3003241280954233,0.3033212281280951,0.3007164404223227,0.2976965758422712,0.2957456702788777,0.2919600387468012,0.2895746009096584,0.2856596207123505,0.2828471485778502,0.2826990358239845,0.283180093652801,0.2832521543649307,0.2842191975736244,0.2852685624012638,0.2863087023794589,0.2873442827535489,0.2889208633093525,0.2911221036188492,0.2910625959406447,0.2950084655421082,0.3006070388434682,0.3043976451064838,0.3099563953488372,0.3150851581508516,0.3190207156308851,0.3243591688154102,0.3297812675266405,0.3332549111869192,0.3356328734253149,0.3340624378604096,0.3291342803537925,0.3447251114413076,0.0,2.202112988983945,51.35831034970317,143.88911984002857,202.08790282637187,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95705,47269,450.3839924768821,4899,49.91379760723056,3870,39.84117862180659,1542,15.75675252076694,77.38171245272493,79.75614528565028,63.34258245905804,65.09530218724088,77.189127315303,79.5651488883405,63.27066846809193,65.02603822321407,0.1925851374219291,190.99639730977455,0.0719139909661166,69.26396402680268,241.10306,168.83531620811604,251923.15970952407,176412.22110455675,481.35478,320.55058317377075,502358.3720808735,334337.68682281044,458.0904,223.49400757429612,474440.49945143936,230305.6460494648,2227.99148,1049.461527460006,2295258.05339324,1063838.6369155284,906.453,414.0499739856367,931426.9264928688,416933.8134820802,1489.7611,624.1193970933242,1522883.1931456036,624291.4694989378,0.37816,100000,0,1095923,11451.052714069276,0,0.0,0,0.0,41426,432.22402173345176,0,0.0,41521,429.70586698709576,1122299,0,40198,0,0,9438,0,0,70,0.7209654667990179,0,0.0,0,0.0,0,0.0,0.04899,0.1295483393272689,0.314758113900796,0.01542,0.3460038986354776,0.6539961013645225,23.67624007316655,4.081121491933603,0.313953488372093,0.2695090439276486,0.2121447028423772,0.2043927648578811,11.817619978873855,6.626917213085223,16.206607634784792,11535.152845678507,44.15008804461485,12.70925063596742,13.717131674903966,9.226430449701256,8.497275284042203,0.5837209302325581,0.8072866730584851,0.6905349794238683,0.5773447015834349,0.1314791403286978,0.7606112054329371,0.9245283018867924,0.8635097493036211,0.7288888888888889,0.1764705882352941,0.5063150074294205,0.7269789983844911,0.6179906542056075,0.5201342281879194,0.1191626409017713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0044703950369491,0.0065551812314811,0.0088881214066594,0.0110767540736822,0.0131873727087576,0.0153657914861075,0.0174976520070235,0.0197192889197836,0.0221312314464121,0.0241944578288549,0.0262625640393835,0.0284447918059254,0.0309026669001534,0.0328163214761152,0.034749074667604,0.036558716612985,0.038662682106836,0.0407159348545042,0.0426228141478563,0.0575328445809052,0.0716177594455669,0.0847969782813975,0.0978203698638783,0.1096497241881216,0.1254269550044942,0.1363853376478701,0.1482802303671609,0.1575338076011023,0.1670081197910521,0.1798347214291101,0.190929263408562,0.200826536160957,0.2108766943594228,0.2188335184716738,0.2289819457819989,0.2376120601222068,0.2463937577999393,0.2530897793500691,0.2597628530879458,0.2661462850534836,0.2715227145260796,0.2765298035179862,0.2809591682736648,0.284973715839697,0.2896146599179813,0.2928508936382952,0.295978436383517,0.2998848835254097,0.3029336986734465,0.2999153578482084,0.2976677184799012,0.2946340778199185,0.2922824538429437,0.2910206193186017,0.2875594005117582,0.28316869121331,0.282729691350972,0.2832903488529931,0.2843711193897463,0.2846100836266786,0.2854083156488249,0.2856727453994101,0.2863515312916111,0.2881404446140635,0.2890367161716171,0.290004229522064,0.2952342487883683,0.2985234992374879,0.3004123306499116,0.3046906682287207,0.3071451153967752,0.3071850270066574,0.312386018237082,0.3178504672897196,0.3234981706597427,0.3239586500456066,0.3275619085967384,0.3299450549450549,0.3251627728839525,0.0,2.225902310659193,51.27964863962824,135.3972139117209,200.94467964045828,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95843,48245,458.3120311342508,5078,51.63653057604624,4026,41.2445353338272,1515,15.316715879093934,77.44506122741345,79.72350664550457,63.40474875222951,65.0844508896031,77.24502311176691,79.53076365007183,63.328164280364014,65.01380557035338,0.2000381156465351,192.742995432738,0.0765844718654946,70.64531924972073,242.5709,169.95099264647814,253091.93159646503,177322.27981853465,485.31236,322.8608196244291,505632.59705977485,336135.0433776374,469.63653,229.6921363639624,485926.59870830417,236428.8554975917,2292.53136,1087.2829391379871,2348170.4454159406,1090906.8596754477,931.6087,427.46665313657655,952393.1116513464,426497.4323470839,1477.8924,642.3628689127438,1495564.5169704622,630254.1831394973,0.38383,100000,0,1102595,11504.178708930229,0,0.0,0,0.0,41764,434.9717767599094,0,0.0,42354,437.7993176340473,1113513,0,39999,0,0,9636,0,0,79,0.8138309527039012,0,0.0,1,0.0104337301628705,0,0.0,0.05078,0.1322981528280749,0.2983458054352107,0.01515,0.3565348969169661,0.6434651030830338,23.20945685804397,4.055271584730641,0.3204172876304024,0.2737208147044213,0.1994535519125683,0.206408345752608,11.420909213487464,6.1875452181264965,16.23444575780542,11670.28581460412,46.03596887078948,13.51640607922845,14.616792889976804,8.728009297706581,9.17476060387763,0.5814704421261798,0.8121597096188747,0.6930232558139535,0.5591531755915318,0.1239470517448856,0.759504132231405,0.934322033898305,0.8649425287356322,0.7577319587628866,0.1530612244897959,0.5049715909090909,0.7206349206349206,0.6295116772823779,0.4958949096880131,0.1149606299212598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021761574120933,0.0044165763429532,0.0069456414832239,0.0094291746173521,0.0118275855061271,0.0138873345474153,0.0164385235883647,0.0187014999949014,0.0208109957213899,0.0228118609406952,0.0250870366577923,0.027189185862854,0.0293132844436227,0.0314248683344305,0.0334641815802759,0.035508211273857,0.0375100833557407,0.0395539942591268,0.0419015583309973,0.0440148172812786,0.0592387904066736,0.0733636316146894,0.0872661019256342,0.0999160457550634,0.1117938573878641,0.1274540848638378,0.1385291470323502,0.1495176165582897,0.1595853596109546,0.1688589684586816,0.180438521066208,0.1921074799663045,0.2026121793131901,0.2112751414033325,0.2209150326797385,0.2299564053198787,0.2394466676327317,0.2477161125032305,0.2551182352007617,0.2616903696754041,0.2683138324931786,0.2748912687649067,0.2804826117814052,0.2846577309717568,0.288797495996506,0.2930266331905676,0.2964288395605495,0.3001233453287725,0.3023981156738148,0.3055354153209328,0.3024688037865748,0.2995799126877351,0.297148953493269,0.2941235690041995,0.2922228628024894,0.2883502831739845,0.285318690309486,0.2848033139800378,0.2849550910912271,0.2862633956248339,0.2870253164556962,0.2879713875842553,0.2888787109131032,0.2899953384092876,0.2911238367931281,0.2917861664470454,0.2924291555054278,0.2975723622782446,0.3029410745834344,0.3067248359077152,0.3102730112735998,0.3162984885318676,0.3230547910933199,0.3252874438437523,0.3291686237670267,0.3349112426035503,0.3376682986536107,0.3438013136288998,0.3446561723280861,0.35202492211838,0.0,2.9701944181708755,51.74274489209179,148.15995432426087,204.2911919406989,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95682,47603,454.25471875587886,5091,51.90108902405886,4066,41.87830521937251,1518,15.467904098994586,77.29747507811412,79.70039028944637,63.28577397120039,65.06566725050686,77.1009629963019,79.5079666151054,63.21067796120497,64.99483383437517,0.1965120818122159,192.42367434097216,0.0750960099954198,70.83341613169125,242.51172,169.85072115085495,253455.94782717756,177515.85580449292,484.83526,321.9172716575621,506097.4373445371,335827.179257919,467.96523,228.08091476276,485370.6862314751,235516.0852265939,2291.28492,1094.7378090504635,2359595.284379507,1109049.611264882,901.29058,418.6726607018998,925456.03143747,421058.2143996779,1471.47544,638.9050473212914,1500115.92567045,634650.8631616036,0.38073,100000,0,1102326,11520.724901235342,0,0.0,0,0.0,41722,435.4110491001442,0,0.0,42454,439.894651031542,1108503,0,39904,0,0,9545,0,0,85,0.8883593570368512,0,0.0,1,0.0104512865533747,0,0.0,0.05091,0.1337168071861949,0.2981732469063052,0.01518,0.3650733910425291,0.6349266089574709,23.12265327640492,3.980923117193967,0.3049680275454993,0.2902115100836203,0.2097884899163797,0.1950319724545007,11.034013207116988,5.9703139319240055,16.533004683357593,11572.159535436418,46.99292603364691,14.63229183149945,14.0944951111847,9.44486859998606,8.821270490976701,0.5848499754058042,0.8152542372881356,0.6774193548387096,0.567409144196952,0.116015132408575,0.7567567567567568,0.9032882011605416,0.8426966292134831,0.7733990147783252,0.1538461538461538,0.5078347578347578,0.746606334841629,0.6108597285067874,0.5030769230769231,0.1047463175122749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.004392104355588,0.0068429869536524,0.0093181587237069,0.0116068522135416,0.0136486789301065,0.0158296275141773,0.0182185821368027,0.0200456139992022,0.0222834379576246,0.0244838090939862,0.0265455815578064,0.0285182251211407,0.0305637706995867,0.0326890513360591,0.0348483594687409,0.0367230174442106,0.0386376615959711,0.0404819126689347,0.0423132640618649,0.0566826149635417,0.0712580868035927,0.0840302626470372,0.0971881804697937,0.1102941952089113,0.1263422943049692,0.1376620068146355,0.1481106756411348,0.158440086400479,0.1680963679503559,0.1801486050750035,0.1922326519109453,0.2034354304635761,0.2120133213557985,0.2213477944580384,0.2315210277004315,0.2399812252743568,0.2471783549978598,0.2543453070683661,0.2610145791307537,0.2671670836808451,0.2729008080571495,0.2776271066001871,0.2825377396980824,0.2862285790734727,0.2901641973328728,0.2939504008016032,0.2972759473027037,0.3011882523868825,0.304211055010706,0.3010965888398818,0.2983784230991975,0.2955944648404405,0.2928121606948968,0.2900109965227212,0.2855764961648575,0.2816456196361682,0.2828773963295843,0.2831096824667925,0.2831556503198294,0.2839848769858268,0.2843092989929526,0.2845777361241279,0.2842743278346396,0.2855335704227033,0.2865785867569873,0.2883990391408789,0.2934559052664381,0.297339593114241,0.3019342663940871,0.3048439473209453,0.3074700567346081,0.3109604379198806,0.3166066606660666,0.3189575217955852,0.319094304388422,0.3208232445520581,0.325809029165002,0.3296376419686317,0.3291713961407491,0.0,2.41852866588259,54.70684861807384,153.56867008070049,199.76224946290188,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95838,47510,452.4718796302093,5036,51.57661887768944,4045,41.71622947056491,1571,16.058348463031365,77.32864418348662,79.63793833507309,63.32870225298407,65.03796179952427,77.12993259172619,79.44307919792664,63.25481506078517,64.9676623013669,0.1987115917604285,194.85913714645164,0.0738871921988959,70.29949815736813,241.8515,169.4235726799921,252354.49404202928,176781.20649428418,481.635,320.1917857060293,502057.430246875,333603.1487573086,462.48573,225.3801269998586,479493.2177215718,232721.0861265348,2312.3002,1080.497683333536,2386412.404265532,1101488.2993782482,913.60478,412.7087235115754,938939.491642146,416455.7704404142,1519.65146,636.0183467056121,1555196.519126025,636803.4553147738,0.38007,100000,0,1099325,11470.65882009224,0,0.0,0,0.0,41345,430.9042342285941,0,0.0,41910,434.2849391681797,1116575,0,40111,0,0,9640,0,0,82,0.8556105094012814,0,0.0,0,0.0,0,0.0,0.05036,0.1325019075433472,0.3119539316918189,0.01571,0.3531996179560649,0.6468003820439351,23.217220842069047,3.9974540580050646,0.3129789864029666,0.2813349814585908,0.207416563658838,0.1982694684796044,11.249312858791498,6.153991407889979,16.713691602748042,11556.870259950609,46.48247807686909,13.999309897673738,14.496776323099231,9.394588159143606,8.591803696952528,0.5901112484548826,0.8005272407732865,0.7116903633491312,0.5864123957091776,0.1034912718204488,0.759567387687188,0.9018789144050104,0.8607242339832869,0.7259615384615384,0.1346153846153846,0.5184664087231797,0.7268588770864947,0.6527012127894156,0.5404120443740095,0.0959752321981424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0046121720796334,0.0067569624105919,0.0090707784820412,0.0113992271710392,0.0137650173080838,0.0160024462338191,0.0181452641676957,0.0202342265007051,0.0225119210854839,0.0246009139531547,0.0267025163170641,0.0287029710092799,0.030522642344633,0.0326579015210105,0.0342861274960486,0.0363835797882798,0.0384643297771971,0.0404973098734913,0.0425157677816864,0.0573732021985586,0.0710701292184167,0.0842556491845889,0.0971785845636526,0.1095113621990809,0.1256262816311862,0.137031617787391,0.1487636719581223,0.1589659259575649,0.1692929422862533,0.1812132566703275,0.1928989473911961,0.2027769019168669,0.211406461767149,0.2200257417246955,0.2287891542244473,0.2373961775475573,0.2448754460416268,0.2528153664517301,0.2601373427952354,0.265543335921475,0.2715571810381207,0.276056438310648,0.2806623598069118,0.2847670839568354,0.2885388657276069,0.2926178364697923,0.2960570736989617,0.2989301692277767,0.3028649205803843,0.3001603406227683,0.2988097206149777,0.2960443685525183,0.2930502657379115,0.2904809365842048,0.286410893366455,0.2833652795158965,0.2835676438261783,0.2841759103068718,0.2850206317586796,0.2860053078159458,0.2872686417124948,0.2868110318354404,0.2878700200311596,0.2878533780546238,0.2884259861997136,0.2906485029090393,0.2972516649470031,0.300752141514033,0.3064275037369208,0.3091361374943464,0.3131633137969269,0.3161820005013788,0.3188758070641853,0.317943435100206,0.3217463518804128,0.3225072089846714,0.3331325301204819,0.3325183374083129,0.3328209069946195,0.0,1.9376871736509729,52.811348171496974,148.23470113161983,210.74422583874212,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95736,47886,456.0875741622796,4941,50.38856856354976,3918,40.24609342358151,1464,14.947355226873904,77.35098256499538,79.69760802991256,63.33757887846742,65.07022514657295,77.16560986216281,79.5157083052581,63.2675281956149,65.00412561950071,0.1853727028325664,181.8997246544569,0.0700506828525178,66.09952707223954,241.44692,169.1637362131237,252200.7604245007,176698.14512108685,483.03476,320.8435652652726,503898.5439124258,334483.4913358326,464.15954,226.26583575703955,480163.1883512994,232802.94676327784,2224.26152,1044.0696140840455,2286175.482577087,1053791.343945586,915.66635,412.6851438671312,940939.9598896968,415620.6124624765,1424.4015,604.6287262463172,1455061.6695913763,602329.277380325,0.38192,100000,0,1097486,11463.670928386397,0,0.0,0,0.0,41528,433.086822094092,0,0.0,42025,434.2149243753656,1118001,0,40115,0,0,9542,0,0,77,0.8042951449820339,0,0.0,0,0.0,0,0.0,0.04941,0.1293726434855467,0.2962962962962963,0.01464,0.3674102812803104,0.6325897187196896,23.37338349726916,4.0438590561904,0.3029606942317508,0.2784583971413987,0.2133741704951506,0.2052067381316998,11.229408327686205,6.089347955496769,15.59755338397423,11608.33020097768,44.80647896959066,13.368276261960323,13.53326075028268,9.184054466470943,8.720887490876711,0.5811638591117917,0.8120989917506874,0.6983993260320135,0.5633971291866029,0.11318407960199,0.7353982300884956,0.9061784897025172,0.8654434250764526,0.7111111111111111,0.1290322580645161,0.5186513629842181,0.7492354740061162,0.6348837209302326,0.5228658536585366,0.1084142394822006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0043279512674714,0.0066563169056243,0.0089481595839765,0.0113471139083486,0.0133359122883814,0.0158306235410444,0.0179827112866517,0.0200840155766105,0.022065521088129,0.0243044877708756,0.026288236501745,0.0283969402862312,0.0305014931520955,0.0326613984773144,0.0345946728131556,0.0368939880299045,0.0390171011124024,0.0410571514716737,0.0432037671768051,0.0575720564133078,0.0709802280573281,0.0842892192840816,0.0970319514682535,0.1094044845507542,0.1253501622638717,0.1366408246810406,0.1469558462013259,0.1573465790738663,0.1677840110697544,0.179690445160109,0.1912538146873579,0.2019881234637722,0.210894252018467,0.2198802474299425,0.2299585540459673,0.238554136144363,0.2467858227506383,0.2538524385538887,0.2604928366762177,0.2672351947420796,0.2730920875598142,0.2785313072784249,0.2836825092781037,0.2882721141248969,0.2924534104188449,0.296199590225376,0.2993128151714151,0.3035206166899477,0.3067257360600187,0.3041359910631367,0.3015285555081656,0.2983098591549296,0.2954998699384375,0.2926036425168099,0.289196794518872,0.2854951692730981,0.2858103453931184,0.286242881014903,0.2862201501832805,0.2872421838544097,0.2876022655758338,0.2875046919964966,0.2876075693224522,0.288961038961039,0.2917714137618245,0.2948094538052697,0.2985759790144275,0.3042315175097276,0.305268127631113,0.3077548806941431,0.3106320172895472,0.3136323878545545,0.3180617405087176,0.3205545733693123,0.3191264529764001,0.3236285626723874,0.3258946521913952,0.3314191960623462,0.3337138508371385,0.0,2.686920107882581,48.649841272129656,144.9336250511062,206.41832560674447,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95836,48078,457.6046579573438,5024,51.07683960098502,4014,41.22667890980425,1576,15.99607663091114,77.51248185563044,79.79911434899611,63.42745123530996,65.11105751595315,77.30637441704803,79.59843895706436,63.3486883314641,65.03738204691493,0.2061074385824071,200.6753919317532,0.0787629038458561,73.67546903822131,244.66662,171.2817549663363,255296.9656496515,178723.58504772355,487.12437,324.09206408120014,507639.8743687133,337523.940983764,470.4892,229.92823963373544,487114.142910806,236962.1051135925,2289.9622,1090.6518691446472,2352129.179014149,1100784.276812877,957.21384,437.8643955755856,979164.374556534,437289.56923449214,1525.24366,656.1239101052149,1549530.009599733,648016.7132187238,0.38269,100000,0,1112121,11604.407529529612,0,0.0,0,0.0,41913,436.6626319963271,0,0.0,42551,440.15818690262535,1106369,0,39670,0,0,9764,0,0,84,0.8764973496389665,0,0.0,2,0.0208689845152134,0,0.0,0.05024,0.1312811936554391,0.3136942675159235,0.01576,0.3633947218530473,0.6366052781469528,23.04276531507728,4.050131437318575,0.3066766317887394,0.2787742899850523,0.2115097159940209,0.2030393622321873,11.300561516388486,6.13828306767733,16.728326751641553,11569.45513280308,45.96235324934608,13.923238940185664,14.03248089717452,9.24040778878038,8.766225623205518,0.5817140009965122,0.803395889186774,0.7002437043054427,0.5594817432273262,0.1214723926380368,0.7480314960629921,0.8923679060665362,0.8583106267029973,0.6745283018867925,0.2,0.5047376093294461,0.7286184210526315,0.6331018518518519,0.521193092621664,0.0992125984251968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021451844656264,0.0044358473177302,0.006486990543184,0.0087061521445748,0.0111034356650886,0.0129462015661547,0.0151595365600374,0.017529368575624,0.0198911500719879,0.022354023928827,0.0245046336593108,0.0264385851562419,0.0286471712459669,0.0307932979292742,0.0328048000989711,0.0348086556835201,0.0371589109986651,0.0393049320380296,0.0413238593866866,0.0432465071730484,0.0579425996996495,0.0719259723964868,0.0853592086511861,0.0977198012834651,0.109790253969591,0.124959072233547,0.1367191639994064,0.1469434194995906,0.1575796382263486,0.167121849864516,0.1789378589404401,0.19060994317568,0.2017657215459294,0.2106728994418899,0.2202177567321109,0.2306305509163505,0.2392498579276378,0.2467306309545209,0.254174502118404,0.2606906484688454,0.267141934293097,0.2732440965062501,0.2790612654047998,0.2834336342360414,0.2871718528738971,0.2905558898289475,0.2946345111235745,0.2981250079126945,0.3012006286553474,0.3039857305861214,0.3010725332404965,0.2975431588739022,0.2953391075601326,0.292353887707603,0.2896003780606669,0.2866652449427248,0.2826470773693171,0.2829091384323847,0.2837364952096215,0.2851891315929675,0.2861216198587376,0.2873509009805655,0.2868772251254398,0.2872515086971956,0.2873814560406911,0.2888540031397174,0.2902989902399235,0.2935714506793773,0.2972170430218908,0.3015669349508145,0.3063187424856392,0.3068736372131658,0.3075404171294582,0.3131388495113034,0.314393243987516,0.3153455049688005,0.3216147772977804,0.3263467189030362,0.3260986066452304,0.3364208966283808,0.0,2.528388246511129,54.96497462175606,142.193682529488,199.3822910533692,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95734,47769,454.1855558108927,4986,50.90145611799361,4022,41.39595128167631,1514,15.438611151732928,77.31288813594676,79.67344524134387,63.318020272784125,65.06285334658459,77.12012152617146,79.48255349476763,63.24584487596534,64.99397083630718,0.1927666097753047,190.89174657624145,0.0721753968187854,68.88251027740466,241.52964,169.24869250744405,252292.43528944784,176790.57859009763,482.30201,320.93163341610745,503114.6927946184,334553.4955356587,467.53962,228.497475658092,484399.30432239326,235665.79498427492,2288.64872,1085.4283722622993,2355910.418451125,1099301.3391109384,926.80928,425.8414433147595,950092.422754716,426862.9010082657,1471.98402,625.2649842588766,1501807.8425637705,621926.6278337528,0.38207,100000,0,1097862,11467.837967702177,0,0.0,0,0.0,41474,432.57358932040864,0,0.0,42376,438.7051622203188,1116636,0,40085,0,0,9610,0,0,82,0.835648776819103,0,0.0,0,0.0,0,0.0,0.04986,0.1304996466616065,0.3036502206177296,0.01514,0.3699654775604142,0.6300345224395857,23.298002941759872,3.9361986763844823,0.2973644952759821,0.2951268025857782,0.2048731974142217,0.2026355047240179,11.25467069013104,6.209791385202306,16.239489240524076,11617.273729644196,46.37305576160453,14.611435028617011,13.602745516231945,9.156360867057812,9.002514349697762,0.5957235206364992,0.8264532434709352,0.7232441471571907,0.5546116504854369,0.1141104294478527,0.7760711398544866,0.9262948207171314,0.8746518105849582,0.7598039215686274,0.1511627906976744,0.5156193895870737,0.7532846715328467,0.6583034647550776,0.4870967741935484,0.104199066874028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177479795013,0.0047233399892559,0.0070211751336762,0.0090399382440173,0.0113912592426846,0.0139307535641547,0.0162536963393494,0.0183765352063786,0.020579876091357,0.0228750473576965,0.0251919902390009,0.0274272218514144,0.0293319071910482,0.0314775712004944,0.0336844494423753,0.0357799871845222,0.0377530416774527,0.0398642829720784,0.0419179734620024,0.0439262755394409,0.0585060291277339,0.0730339429958565,0.0865370498542335,0.0988170968929078,0.1114309514018494,0.127604662478052,0.1397631528682697,0.1500574810525419,0.1602200502056294,0.1688542873075108,0.1811682368775235,0.1922636041180032,0.2031528593172429,0.2115986089543098,0.220492623843522,0.2303918311294216,0.2400075877613872,0.2472722773390925,0.253774891578302,0.2603326612903225,0.2666242333063303,0.2719620267963616,0.2775267876150152,0.2819898399309882,0.2860855414956403,0.2898516802995959,0.2937333383396538,0.2977327348329752,0.2999042170390121,0.3032334697109674,0.3013266886659034,0.2982352374795395,0.2951574736604879,0.29307454403561,0.2912429378531073,0.2870017012276426,0.2833956761554555,0.2838699080157687,0.2843056837212481,0.2845400614680866,0.2850213499138512,0.2861716634716101,0.2870110855469567,0.2870680044593088,0.2882889368850492,0.2909653755105226,0.2923457632903831,0.2958481315020272,0.3008238387379491,0.3052535513054519,0.3084511524298768,0.3141319829086881,0.3164446657537657,0.3201148122970013,0.3210176784211018,0.3245913207103375,0.3263367550176191,0.3279580729691594,0.3300220750551876,0.3318250377073906,0.0,2.360549691176297,53.72695353303536,148.35692478106816,202.89621278193545,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95788,47995,456.2471290767111,4907,50.14198020628889,3898,40.17204660291477,1510,15.429907712865912,77.37208356525132,79.71001671429279,63.35007434272507,65.07911404964594,77.18009259306032,79.52033167706604,63.2778100023894,65.0097447221055,0.1919909721909931,189.68503722675223,0.0722643403356713,69.36932754044278,243.12068,170.3408674025938,253811.20808452,177831.11392094396,487.89912,325.1696139308305,508846.06631310814,338961.00130583206,469.90608,229.0396635735058,487042.15559360257,236415.1094747319,2200.61712,1043.1807118662286,2268610.473128158,1060481.1394630722,905.62241,411.9072512714786,933108.4687017164,417760.36628245993,1456.63642,621.4683355184707,1489563.4108656617,622833.5336638575,0.3824,100000,0,1105094,11536.873094750908,0,0.0,0,0.0,41866,436.5369357330772,0,0.0,42467,439.8254478640331,1107844,0,39789,0,0,9544,0,0,94,0.9813337787614316,0,0.0,0,0.0,0,0.0,0.04907,0.1283211297071129,0.3077236600774404,0.0151,0.3549707602339181,0.6450292397660818,23.197636417641267,3.983034752521805,0.3029758850692663,0.293227296049256,0.2095946639302206,0.194202154951257,11.338666631354352,6.412102606426468,16.19960926020637,11584.927854606904,44.94053348753755,14.054507813909364,13.365678058061686,9.23643155283558,8.283916062730919,0.5938943047716778,0.8066491688538933,0.6867061812023709,0.5899632802937577,0.1321003963011889,0.7436974789915967,0.9186295503211992,0.8385093167701864,0.7083333333333334,0.0993788819875776,0.5280649926144756,0.7292899408284024,0.629802095459837,0.5407279029462738,0.1409395973154362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0048152954057013,0.0070122384364027,0.0092949076096341,0.0115936133428251,0.0136830102622576,0.0159720311082571,0.0183480621262526,0.02068345323741,0.0228635758878313,0.0248511493016058,0.0271759767649503,0.0292131366603279,0.0314771720999196,0.0336592005939858,0.0358840304182509,0.0380088811601403,0.0402376927624005,0.0422589359933499,0.0441133599866733,0.0591991985724571,0.0731908840848001,0.086418717765944,0.0993012871027055,0.1112656174283125,0.1270810445364658,0.1380022889114954,0.1487624393978055,0.158398412495199,0.1676682627931141,0.1798280999558955,0.1910958830078146,0.2019081356558401,0.2121728864694694,0.2207706518870414,0.2301764797059409,0.2392407463169281,0.2478899515616044,0.2541481548644482,0.260419647660802,0.2672046989177689,0.2733584235255616,0.2781323122739843,0.2825033212451976,0.2853867430124223,0.2896453272293189,0.2927769020991268,0.295034055098099,0.2991740237581273,0.3022630871775957,0.3001813175743738,0.2967393242705661,0.2947832083198469,0.291495287988339,0.2891548397621272,0.2864323911382735,0.283528594435848,0.283736457958302,0.2835892186966905,0.2833843743323125,0.2844610359309379,0.2848706743828983,0.2856755742693959,0.2868664874352878,0.286404284826168,0.2865484934208819,0.287001506494983,0.2912277401555054,0.2954307273108363,0.2993272655322517,0.3007883291047481,0.305065963060686,0.3077355661084728,0.3115969437930252,0.317990457479652,0.3247210804462713,0.3218702865761689,0.3262828045436741,0.3259358288770053,0.329873980726464,0.0,2.030516874136945,51.97581105734688,143.74604262954898,198.30691153929172,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95642,47833,455.41707617992097,5035,51.40001254678907,3983,41.00708893582318,1478,15.003868593295833,77.25911226955019,79.65468183613065,63.27736057920528,65.04545690679069,77.07034993478705,79.4709612798837,63.20584748596082,64.97852990956649,0.1887623347631404,183.7205562469535,0.0715130932444623,66.92699722420059,241.1717,168.9575994367332,252160.87074716127,176656.2801245616,483.78593,322.0911249737795,505105.98900064826,336043.4380019024,468.89833,228.65759081479453,486426.8835867088,236082.66352448583,2254.01816,1072.4496301223803,2322518.307856381,1087331.3549393653,929.41457,427.3402401573683,955792.6120323706,430974.7599903087,1438.54106,615.9163237285848,1463256.623659062,609704.7977357307,0.3809,100000,0,1096235,11461.857761234603,0,0.0,0,0.0,41606,434.3384705464127,0,0.0,42444,439.9427029965915,1111724,0,39992,0,0,9549,0,0,90,0.920097864954727,0,0.0,1,0.0104556575563037,0,0.0,0.05035,0.132186925702284,0.293545183714002,0.01478,0.3626289644631257,0.6373710355368742,23.151612093495583,4.026241232012688,0.3063017825759477,0.2894802912377605,0.2013557619884509,0.2028621641978408,11.61165795902811,6.495543480704656,15.854146254897756,11588.4572498933,46.14921060419593,14.202492075196329,13.999569639333224,9.105616455645729,8.841532434020648,0.5965352749184032,0.821335646140503,0.7,0.6034912718204489,0.1126237623762376,0.7520458265139116,0.9079229122055674,0.855191256830601,0.7476190476190476,0.1396648044692737,0.5277073524085476,0.7623906705539358,0.6334894613583139,0.5523648648648649,0.1049284578696343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024614324929347,0.0048165160871637,0.0071859204676938,0.0097341895626727,0.0119945063329772,0.0141262501782331,0.0163448008646532,0.0185081209101952,0.0205990594970353,0.0231234581802176,0.0253752460629921,0.0273539377759523,0.0295506207378912,0.0314821110321311,0.0336945304437564,0.0357131778938117,0.037707703145071,0.0398687993689083,0.0419370943584623,0.0438041427335369,0.0585604413977595,0.0724362935576107,0.0866656865627756,0.098341494234718,0.1097358777497333,0.1256699218336263,0.1366021541926026,0.1473095364944059,0.1568889554281803,0.1661941580756013,0.178165383038854,0.1903193299164562,0.2014639247124433,0.211633487087903,0.2203890775949534,0.2296971648769003,0.2379924144952506,0.24659712433042,0.2543440684133916,0.2611058139668462,0.2664640441747967,0.2730076457619963,0.2783557743638413,0.2829943747295543,0.2876625513400202,0.2913917920589035,0.2946172083746252,0.2975295107462458,0.3006303665464733,0.3032457577840038,0.2999217970498611,0.2971720876363285,0.2943926553672316,0.2921071330172126,0.290129343744412,0.2870510991455351,0.2841681588413329,0.2837402648614899,0.2849078873094883,0.2854592838527721,0.2851475514137614,0.285728369745248,0.2863053199047181,0.2860413425205601,0.2881724541739359,0.2888175439504958,0.2891982119617495,0.2927691249139926,0.2975105617820607,0.3018227728241142,0.3055907937658572,0.3107195610888373,0.3154799149042673,0.3165662650602409,0.3191371169336172,0.3207370026992137,0.3217036701404621,0.3210715713714514,0.3232211803640375,0.3338485316846986,0.0,2.4381669044125824,53.16078138032616,152.3860205550354,196.1708634186034,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95636,47431,451.97415199297336,4891,50.07528545735916,3862,39.995399222050274,1465,15.057091471830692,77.28554750318864,79.71802795427946,63.27381344368566,65.0722093437942,77.10597534227078,79.53819203481696,63.20686605579595,65.00705082084697,0.1795721609178571,179.835919462505,0.0669473878897122,65.1585229472289,241.02496,168.87343471586374,252023.2548412732,176579.35789437423,480.98878,319.40657725872205,502534.7149608934,333579.2978153855,459.87265,223.9406189813395,478689.0815174202,232477.2097483612,2216.87728,1042.350800727783,2298075.9128361708,1069954.2021077662,890.02841,403.1968442458805,922331.7474591158,413285.39906089753,1420.70686,592.4469727267156,1462419.1936091012,600334.6990273495,0.37941,100000,0,1095568,11455.602492785143,0,0.0,0,0.0,41368,432.1385252415409,0,0.0,41696,433.748797523945,1119463,0,40138,0,0,9476,0,0,68,0.711029319503116,0,0.0,1,0.0104563135221046,0,0.0,0.04891,0.1289106771039245,0.2995297485176855,0.01465,0.3520906604142243,0.6479093395857757,23.58976725425873,4.047528013447527,0.3166752977731745,0.2767995857068876,0.2009321595028482,0.2055929570170896,11.823250651849868,6.5978041068813225,15.443628634236154,11553.372635235171,44.13279584674592,13.16803708883142,13.870600868262985,8.55619724014207,8.537960649509442,0.5916623511134127,0.8241347053320861,0.7007358953393296,0.5837628865979382,0.1183879093198992,0.7786324786324786,0.9380530973451328,0.8885869565217391,0.7553191489361702,0.1111111111111111,0.5104011887072808,0.7406807131280388,0.6198830409356725,0.5289115646258503,0.120253164556962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047266936473643,0.0072797790683507,0.0095543019769273,0.0118117445977292,0.0140879503712984,0.0164947822627536,0.0185415985616214,0.020445735443025,0.0227870917526089,0.0247430294823659,0.0268801183711634,0.0289343393274387,0.0308315551844636,0.0328559480417565,0.0351682906142038,0.0372749976683696,0.0391218103833252,0.0411553473848555,0.0430569607710199,0.057502743950243,0.0717818669572871,0.0852510350335203,0.0979130013379547,0.1104268556760924,0.1256354316699144,0.1376140939953884,0.1484063532672423,0.1587006066831444,0.1676890517065414,0.179857589815514,0.1914946665510363,0.2021486396670262,0.2115900750397108,0.2202700468448608,0.2297142857142857,0.2381101376720901,0.2459664698724593,0.2531126459762802,0.2605053572451727,0.2665401175980369,0.2720154494382023,0.2770122160740311,0.2818303978499784,0.286211216385507,0.289650579079147,0.2928725215301422,0.2953165378788843,0.2986471076093717,0.3017772558747081,0.2982982444339813,0.296111637617262,0.292910815298455,0.2906488522082907,0.2882195111104523,0.2849299565669542,0.2817618415227977,0.2816889865097448,0.2829770927360981,0.2834684965689332,0.283927104339383,0.2842421977935537,0.2851773745641325,0.2858954393770856,0.2871178256400449,0.2892948502622671,0.2903307529908515,0.2947083696057704,0.2996164080588865,0.3018757097544739,0.3039582113747917,0.3079873883342091,0.3130922693266832,0.3146784855769231,0.3173941247335742,0.3219983696285082,0.3274069609763447,0.3326021934197408,0.3365591397849462,0.3465530022238695,0.0,1.537362580413437,51.54109354932615,137.88099898654443,199.3252963962773,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95815,47587,452.93534415279447,4991,50.97322966132651,3995,41.152220424776914,1497,15.269007984136096,77.35864855579545,79.66356843283249,63.35358995694328,65.05435135542002,77.17118087677777,79.48010979909652,63.2829293694864,64.98777181906239,0.1874676790176863,183.4586337359667,0.0706605874568779,66.57953635763647,243.83722,170.7329053714618,254487.2932213119,178189.96045195806,482.77048,320.888233276867,503317.4033293326,334366.70815518295,465.3492,227.209665960286,482877.3887178417,234883.6896882097,2285.7768,1075.154420230017,2355690.820852685,1092286.7463153133,924.32918,421.0527665738518,951365.099410322,426211.6795081466,1458.9483,617.902883841838,1489410.8229400408,615353.8098783232,0.37865,100000,0,1108351,11567.60423733236,0,0.0,0,0.0,41484,432.3957626676408,0,0.0,42160,437.1444972081616,1108013,0,39764,0,0,9589,0,0,81,0.845379116004801,0,0.0,0,0.0,0,0.0,0.04991,0.1318103789779479,0.2999398918052494,0.01497,0.3626564003849856,0.6373435996150144,23.2915371569803,4.097754757077915,0.3031289111389236,0.286107634543179,0.1982478097622027,0.2125156445556946,11.502860924549896,6.293679269059981,15.917714601196565,11473.255741676712,45.817672225514976,14.247000893450307,13.582381895034452,8.814683177461747,9.173606259568468,0.5862327909887359,0.820647419072616,0.6928158546655656,0.5921717171717171,0.1130742049469964,0.7765690376569038,0.9215686274509804,0.8660436137071651,0.8277777777777777,0.1684782608695652,0.505,0.7393364928909952,0.6303370786516854,0.5228758169934641,0.0977443609022556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0047402485591872,0.0068027210884353,0.0092138776421402,0.0113587873122955,0.0135089771629113,0.0155950780263211,0.0178715330551957,0.0199211327462558,0.0221772131181079,0.0243362831858407,0.0264942098407065,0.0287566523516962,0.0306862735009312,0.0326738083700213,0.0343616702642967,0.0362460551502923,0.0384926394360356,0.0405928972816885,0.0427983967518609,0.0567645954179359,0.070456256273001,0.0837700725336463,0.0962365082868283,0.1085279487395666,0.1234809257106625,0.1346076373428323,0.1458160464670964,0.1562853665307168,0.1668006818693512,0.1789786491811751,0.1896777403965772,0.2000413218647035,0.2094440129945418,0.2186591809775429,0.2277744530886362,0.2371854249204843,0.2447411640306868,0.2521783526208305,0.2582067670034133,0.2640555394851027,0.2703796875914117,0.2749201088886259,0.2795513373597929,0.2838604634208576,0.288625750089333,0.2920105026256564,0.2948651155698438,0.2983611222496733,0.3017480028474255,0.2991743760757315,0.2958739231392808,0.2925537147112966,0.2900422293645417,0.2878212919865998,0.2837714076380621,0.2800694608887836,0.279628537735849,0.2799468066969005,0.2812711773727574,0.2813393908800269,0.2826228345060013,0.283996821945304,0.2849162011173184,0.2865928070637218,0.2879276281584694,0.2884129193534642,0.2930342014433637,0.2976823974233301,0.3015451664025356,0.3058296370055218,0.309874060747169,0.3127584910389773,0.3170101132993688,0.3214685054043981,0.3282273152478952,0.334346042837612,0.3391777509068924,0.3446655610834715,0.34609375,0.0,2.0816517305279665,52.12737366271173,148.3169217555302,203.48519464350605,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95858,48015,456.7485238582069,4969,50.57480857101129,3948,40.57042709007073,1497,15.178701829789896,77.41454581429173,79.70283818721249,63.37712166936033,65.06778192335199,77.21628968520508,79.50926478781277,63.30235706821741,64.9973693251452,0.1982561290866442,193.57339939972465,0.0747646011429239,70.41259820678647,242.12276,169.7417761709556,252584.8233845897,177076.27550225917,484.29202,321.9304885713172,504595.4641240168,335218.3318776912,473.78016,230.8899465091704,490468.7975964447,237928.8022558053,2244.69556,1067.6673263311152,2307796.4071856285,1079909.0804430663,898.14198,410.97959367626765,918340.0237851822,410127.4736341944,1447.1591,621.1981670014433,1468698.3246051453,613975.6315117182,0.3827,100000,0,1100558,11481.128335663168,0,0.0,0,0.0,41515,432.4626009305431,0,0.0,42742,442.0809948048154,1115670,0,40058,0,0,9592,0,0,89,0.928456675499176,0,0.0,0,0.0,0,0.0,0.04969,0.1298406062189704,0.3012678607365667,0.01497,0.3497394325419803,0.6502605674580196,23.43160008565728,3.95854126586299,0.3135764944275582,0.2915400202634245,0.1990881458966565,0.1957953394123606,11.211211468951769,6.154914880298484,16.007744692118468,11623.527179165125,45.44613901468609,14.206606518034132,14.107387728576674,8.644767955707824,8.487376812367463,0.5838399189463019,0.8019113814074718,0.691437802907916,0.5572519083969466,0.1138421733505821,0.7693602693602694,0.9054325955734408,0.8839779005524862,0.7,0.1572327044025157,0.5039855072463768,0.7232415902140673,0.6118721461187214,0.5178571428571429,0.1026058631921824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020043528875841,0.0044273339749759,0.0065810154435847,0.0089842243112094,0.0113019615814615,0.0135837767987057,0.0159331703341483,0.0181871965400465,0.0203481245403285,0.0227988707961705,0.025085273541131,0.026967145011232,0.029325332401718,0.0313117588932806,0.0335488128009237,0.0353741918159096,0.0374830586506926,0.0394520036892338,0.04147030124359,0.0433850986592329,0.0578366768152813,0.0717734350506845,0.0849108985574052,0.0976352486559139,0.1097256595229319,0.1253498959554668,0.1368105439366007,0.1482607586324204,0.1591937342609586,0.1687625862290586,0.1820881710479593,0.1929731600233579,0.2032927624429472,0.2132163308126065,0.2229756462106558,0.2320918807674434,0.2400802720330007,0.2480364947920763,0.2553205964056919,0.2623211628705505,0.2681564891673796,0.2735145621990557,0.2793909013525016,0.2843320400440676,0.2875373369921562,0.2918580735741468,0.2953726863431716,0.2997508643481797,0.3033665673960896,0.3063499182187516,0.3035339680490559,0.2996936855262977,0.2967706561318168,0.2938937351308485,0.2913041545005854,0.2870079100876523,0.2830810469883317,0.2823716009614598,0.282108881741291,0.2826287744227354,0.2826961770623742,0.2839195485913139,0.2847297409844257,0.2857967282977826,0.2870284089551526,0.2880386983289358,0.2876034926106982,0.293247108568586,0.298183336813531,0.3025408705928698,0.3047173629536358,0.3075713087248322,0.3112459747337131,0.3146226767186683,0.318194431597447,0.3209487089613272,0.3269870051375038,0.3272325020112631,0.3209441128594683,0.3263157894736842,0.0,2.430579618088116,51.349650319217176,149.48278372698334,198.32958956812024,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95710,47382,451.7187336746422,4905,49.99477588548741,3876,39.901786647163306,1461,14.82603698673075,77.36002699221102,79.731524351579,63.33690834044432,65.0882105572213,77.17145042306697,79.54765161629291,63.26489853651369,65.02082045743046,0.1885765691440468,183.8727352860872,0.0720098039306336,67.39009979084187,242.46486,169.65052502481987,253332.83878382613,177254.75397013882,479.34462,318.6585354676645,500277.56765228295,332389.0664169517,456.25254,222.2370524022923,473404.49273848085,229571.43354425003,2197.652,1050.0950001221645,2262962.783408212,1063968.947990978,919.75467,427.9922842595937,944283.6798662628,430479.0766477829,1417.62088,616.4147219837191,1440176.366105945,609044.2081764871,0.37893,100000,0,1102113,11515.129035628464,0,0.0,0,0.0,41389,431.8357538397242,0,0.0,41274,427.8654268101557,1118286,0,40161,0,0,9693,0,0,80,0.8358583220144186,0,0.0,1,0.0104482290251802,0,0.0,0.04905,0.1294434328240044,0.2978593272171254,0.01461,0.3511659807956104,0.6488340192043895,23.311080055912665,4.052562626406528,0.3170794633642931,0.2763157894736842,0.2058823529411764,0.2007223942208462,11.551024773037684,6.488954059235518,15.82809050592506,11465.688198973428,44.653939540300186,13.034719166257064,13.942862996157483,8.976908527193165,8.699448850692475,0.5879772961816305,0.7936507936507936,0.6981285598047193,0.5989974937343359,0.1195372750642673,0.7579034941763727,0.9447004608294932,0.8591954022988506,0.7477876106194691,0.1701030927835051,0.5115931189229619,0.6907378335949764,0.6345062429057888,0.5402097902097902,0.1027397260273972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409759852528,0.0047542296424697,0.0070426108399378,0.0091123346675064,0.0113918385613735,0.0135839680664738,0.0160448521916411,0.0183714711465839,0.0201788908765652,0.0224003603714282,0.0243907440253442,0.0262928246563247,0.0283419545253545,0.0302106401606839,0.0322540704513093,0.0343055656075848,0.0364354014938825,0.0385098454416176,0.0403578115248595,0.0423895714151739,0.0571145109915931,0.0708028509529341,0.0834714558462539,0.0962222081992385,0.1083300825522672,0.1237022941114282,0.1346967784366348,0.1458583880546184,0.1557974110308882,0.1652918271242075,0.1769693182797552,0.1879044300647088,0.1986305092114559,0.2085701792741582,0.217255522932955,0.2265458894401134,0.2354968601162259,0.2433808897433303,0.250855795606538,0.2575807873258622,0.2634073594524919,0.2694334419946954,0.2745232493527068,0.2798204667863554,0.2832297684353609,0.2879037817608824,0.2915113923417452,0.2951900599654436,0.298860682555899,0.3017013033222197,0.2990934524129768,0.2963059706622307,0.2936215150661785,0.2910690297699008,0.288693303253384,0.2851749384772939,0.2814616052403125,0.2815253101453066,0.2815781859032186,0.2829316840833155,0.2835233315297498,0.2840676632572777,0.2841244747680659,0.2850451730338076,0.2873302627496838,0.2894171818816773,0.2914484671780791,0.296397072621505,0.3003003003003003,0.3060271478887174,0.3094093095000453,0.3139086830298231,0.3170351915291186,0.3222556390977443,0.3272995936461026,0.3265377446411929,0.3325819056206793,0.3385842472582253,0.3431053203040173,0.3424242424242424,0.0,2.361924520749782,52.21312895353559,142.8410172648003,192.83867835760384,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95756,47875,456.0132002172188,5015,51.23438740131167,3986,41.09403066126404,1494,15.309745603408665,77.33346816806463,79.69662956163195,63.32120940122799,65.07090832901103,77.14730116034072,79.51060247663672,63.25202783191703,65.00350829868712,0.1861670077239097,186.02708499523143,0.0691815693109632,67.40003032390973,241.60224,169.2742791838269,252310.2886503196,176776.6815487561,484.10048,321.89450843164707,505020.36425915867,335625.2646639867,465.62046,227.60281590872796,482362.7866661097,234814.12439771608,2275.23776,1066.025944550249,2346275.408329504,1083470.1371718217,890.48458,402.1459673614546,917024.531099879,407042.3288889938,1452.31858,606.8377364916586,1488987.2592840136,610292.2678702776,0.38125,100000,0,1098192,11468.649484105435,0,0.0,0,0.0,41673,434.6463929153264,0,0.0,42111,435.94135093362297,1116812,0,40060,0,0,9545,0,0,87,0.8981160449475751,0,0.0,2,0.0208864196499436,0,0.0,0.05015,0.1315409836065574,0.2979062811565304,0.01494,0.3697718631178707,0.6302281368821293,23.216613150191836,4.149437773230327,0.3095835423983943,0.2804816859006522,0.2057200200702458,0.2042147516307075,11.181464491506512,5.970944879036495,15.796744896316037,11576.391531446956,45.53395742138402,13.705375749673244,13.984112975053575,9.150603271299424,8.693865425357775,0.5672353236327144,0.7835420393559929,0.686385737439222,0.5573170731707318,0.0995085995085995,0.7601351351351351,0.9010309278350516,0.8571428571428571,0.7055837563451777,0.1578947368421052,0.485724482512491,0.693522906793049,0.6187782805429864,0.5104333868378812,0.0861027190332326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022392218450782,0.0046444651766519,0.0069930779692669,0.0091040256863581,0.0112487540936921,0.0136138235803235,0.0157199363862496,0.0180135126860035,0.0200216671436163,0.0222533856059287,0.0242867248290497,0.0264257481648786,0.0288246968933496,0.0309471581137166,0.0327569485999628,0.0348423772609819,0.03693387728054,0.0390146720069728,0.0409497770061648,0.0431486091004717,0.057964509394572,0.0717948717948717,0.0855359110225066,0.0989430509544092,0.1111380604884633,0.126386465767909,0.1376314198113708,0.1486026265937294,0.1590362989779899,0.1685182405044287,0.1804295839886248,0.1924895327325248,0.2021467488825813,0.2115693801883387,0.2197474647484546,0.2292702370539322,0.2365809828892882,0.2449930239884783,0.2529244244755324,0.2597722199965661,0.265028901734104,0.2705827342334443,0.2758037625190668,0.2802633941933553,0.2840703779602032,0.2888989990900819,0.292343619266456,0.297142566992904,0.3012572846270142,0.3040556565736422,0.3017967131983108,0.2985244664058746,0.29699881976058,0.2935381508726381,0.2909301221971764,0.2872766764561918,0.284345956881836,0.2851221390304241,0.2858092332861841,0.2858770742824585,0.2864421964239053,0.2882499950803865,0.2885833333333333,0.2895404190950749,0.291287479643644,0.2924324745886084,0.2928429985855728,0.298024012006003,0.3020906166969654,0.3056508537402894,0.3076122845899859,0.3113152753577274,0.3164660145472786,0.3201124534609832,0.3219750305078381,0.3255260967780288,0.3222459566676838,0.3224954277585856,0.3284286507495835,0.3340996168582375,0.0,1.9795896501172288,51.7636007769936,143.21851757121243,208.72749403015737,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95803,47155,449.3178710478795,5024,51.34494744423453,3992,41.14693694351951,1530,15.657129734976984,77.34149214859087,79.68186707739616,63.33904717832892,65.07281568642411,77.14507550047871,79.48437001445811,63.2659326240428,65.00074859430175,0.1964166481121623,197.49706293805505,0.0731145542861213,72.06709212235296,242.67936,169.864499504354,253310.81490141223,177306.0337404403,481.6619,319.6801221293709,502213.9807730447,333136.00005153386,454.62793,221.6575201912952,470748.7343820131,228461.2263915313,2290.27896,1084.8138774631143,2364080.164504243,1105805.2852865933,892.65269,402.1203980289973,922501.1429704708,410479.2939980973,1487.37432,636.1585798409975,1525162.907215849,643262.0489335814,0.37899,100000,0,1103088,11514.127950064194,0,0.0,0,0.0,41486,432.5125517990042,0,0.0,41216,426.4062712023632,1119143,0,40188,0,0,9677,0,0,90,0.9289896976086344,0,0.0,0,0.0,0,0.0,0.05024,0.1325628644555265,0.3045382165605095,0.0153,0.3664180531650411,0.6335819468349588,23.21939730373316,4.074408630095828,0.3231462925851703,0.2773046092184368,0.1943887775551102,0.2051603206412825,11.46562665280555,6.303315413595898,16.516099752633377,11470.276099607505,45.933498621399146,13.568253834673522,14.848070585261626,8.579201016752338,8.937973184711659,0.5826653306613226,0.7958446251129178,0.7023255813953488,0.5747422680412371,0.1135531135531135,0.7530966143682907,0.9166666666666666,0.8402948402948403,0.7348066298342542,0.1137724550898203,0.5084501977705861,0.7112135176651305,0.638731596828992,0.5260504201680672,0.1134969325153374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0046125928854556,0.0070424679080623,0.0092265170914116,0.0112835122348272,0.0134459259862892,0.015706752883821,0.0179111183726819,0.0200936681937172,0.0218005693337975,0.0241058977934541,0.0263603783078834,0.0282243548204606,0.0302249876380418,0.0323063271286474,0.034388307768636,0.0365097279890657,0.0385477178423236,0.0404098130695456,0.0420874018862817,0.0568405896898181,0.0704069256827401,0.0837236595307702,0.0963549054839286,0.1081887058873117,0.1234318688635474,0.1347862033876746,0.145348404453282,0.1552392030477979,0.1648502384396935,0.1775328784519684,0.1882438143828435,0.199050639786231,0.2088350341994274,0.2176403333260042,0.2268933607845741,0.2352685487556145,0.2433030200965532,0.2504557756111922,0.2577326657979562,0.2637970241599428,0.269371272510825,0.2746701005351636,0.2790817303091205,0.2840220185266017,0.2884868461510079,0.2928616913683527,0.2956388229770711,0.2993944714859334,0.3025106198298197,0.3003748639606594,0.2972609322441134,0.2941970689994655,0.2902132202313973,0.2885479874783021,0.2849216660298051,0.2814456459874787,0.2816476452840089,0.2828134598320934,0.2833880288221445,0.2845592363840539,0.2854660004344992,0.2858637647797426,0.2861004982460844,0.2882313350319696,0.2901445124332769,0.2916357195909272,0.2964681374869804,0.3014716237149697,0.3048315321042594,0.3085023579506433,0.3142126026228809,0.3174080870720749,0.3226920420535645,0.3203975390440132,0.3231998092513114,0.3284874729353542,0.3295757327321172,0.3331479421579533,0.3330795584316711,0.0,2.047016507403639,52.89580499576611,147.3173253680489,203.28669119340543,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95709,47483,452.778735542112,5053,51.72972238765424,4019,41.47990262148805,1511,15.453092185687868,77.3419109081298,79.71122872437361,63.33255108723839,65.08124970400867,77.14743428318943,79.51892266745294,63.26011673810167,65.01189627873718,0.1944766249403784,192.30605692067115,0.0724343491367136,69.35342527148691,241.91486,169.36195150681905,252760.59722701105,176954.88482667148,481.21554,320.6611776315223,502273.3180787596,334521.522588014,465.63747,226.99665620320664,483391.8335788693,234792.2351511097,2309.02684,1093.0850584366517,2382290.401111703,1112092.5886247293,910.25288,411.14629987532624,938254.2185165448,416928.39535018086,1473.18958,620.5982370038196,1508032.8077819222,621667.0129283556,0.37917,100000,0,1099613,11489.11805577323,0,0.0,0,0.0,41401,432.0283358931762,0,0.0,42039,436.1031877879823,1117621,0,40063,0,0,9416,0,0,96,1.0030404664138168,0,0.0,0,0.0,0,0.0,0.05053,0.1332647625075823,0.2990302790421532,0.01511,0.3687606756500284,0.6312393243499715,23.27935017870639,4.008678741392502,0.3122667330181637,0.2836526499129136,0.2015426723065439,0.2025379447623787,11.348800179976616,6.165346082296204,16.050738779933898,11545.775831853209,46.267153618916666,14.091293678283275,14.388259784949437,8.923557035167669,8.864043120516294,0.5969146553869121,0.8061403508771929,0.7187250996015936,0.5938271604938271,0.1191646191646191,0.7647534357316087,0.9065040650406504,0.8563829787234043,0.7676767676767676,0.1520467836257309,0.5222861250898634,0.7299382716049383,0.6598407281001137,0.5375816993464052,0.1104199066874028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0046316002837741,0.0067356461756948,0.0089684732266189,0.0109204050921218,0.0131444978414922,0.0153113754752948,0.0175655262513268,0.0196852003270645,0.0216568071561623,0.0236191413457989,0.0258248020783061,0.0279714526644865,0.0300838639220292,0.0322477452376529,0.0344132484287132,0.036537246657484,0.0385226081632229,0.040583115843324,0.0425503089925695,0.0571076460328567,0.0719011032721334,0.0849456498929785,0.0974704180909808,0.1098887189494225,0.1253954315096755,0.1372451252890878,0.1479959546494916,0.1583979659423541,0.1677197198056232,0.1798522411527774,0.1906766364039691,0.2016292171491962,0.2109158894853656,0.2195489383226487,0.2282507637136406,0.2362614696799081,0.2445748064236989,0.2521601088558793,0.2585431706117219,0.2653098982423681,0.2714512959670628,0.2772645002543385,0.2815254886929858,0.2854384494881416,0.2897827399657411,0.2928575899843506,0.2969330145974264,0.3008461419034311,0.3040661540082165,0.3014978755445597,0.2983115991763898,0.2959551855335757,0.2938669737978693,0.2921853951711989,0.2890851407827705,0.285302184810366,0.2846697418784964,0.2844686648501362,0.284299934115636,0.2856582413271311,0.2862631516727745,0.2865959538902487,0.2877015138659402,0.2874633888702165,0.2892957453448455,0.2911547212741752,0.2963427639420362,0.300150776675199,0.3056856984038751,0.3092792874670544,0.3103228885000795,0.3116133082234777,0.3153166869671133,0.3171189783078223,0.3215806909607193,0.3237355271176112,0.3289016158723665,0.3328694684107988,0.3376722817764165,0.0,1.9007377366532543,54.30079459963062,147.79569266898704,201.81295943188624,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95727,47731,454.7201938846929,5044,51.61553166818139,4062,42.03620713069458,1474,15.11590251444211,77.33810060160408,79.71985306876908,63.31256206328344,65.07467547451503,77.14254789125053,79.52654030771593,63.239027466761016,65.00403806933195,0.195552710353553,193.31276105315,0.0735345965224212,70.63740518307782,240.9099,168.74850934983607,251663.48052273653,176280.99632270526,483.73108,321.9367211594556,504922.56103293743,335906.13009856734,469.01569,228.5859028425205,488115.5159986211,237315.7439812919,2293.45312,1083.783173411456,2373626.5839313883,1109960.1715414212,939.09762,429.7601471271592,970438.7372423664,438365.7872148498,1434.3892,611.5598649524064,1471534.3633457643,614037.3221794097,0.38111,100000,0,1095045,11439.24911466984,0,0.0,0,0.0,41556,433.6811975722628,0,0.0,42404,441.0563372925089,1118643,0,40160,0,0,9546,0,0,101,1.0550837276839344,0,0.0,1,0.010446373541425,0,0.0,0.05044,0.1323502400881635,0.2922283901665345,0.01474,0.3473484848484848,0.6526515151515152,23.39553216209823,3.988174679806796,0.3178237321516494,0.2838503200393895,0.2053175775480059,0.1930083702609552,11.182245197008593,6.041918229889919,15.688345964499822,11607.420944718324,46.51486697690792,14.256102472900988,14.448119893510906,9.292952299491866,8.517692311004161,0.5972427375677006,0.805724197745013,0.710302091402014,0.5911270983213429,0.110969387755102,0.7772357723577236,0.9434343434343434,0.8859649122807017,0.7511520737327189,0.1306818181818181,0.5190677966101694,0.7021276595744681,0.6469968387776607,0.5348460291734197,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025034967870101,0.0047271251775207,0.0069953499705565,0.009390816513202,0.0115993935755639,0.0134753867935098,0.0157783081410766,0.0179456014380994,0.0199519353684102,0.0221471356166487,0.0241388857555963,0.0262355345169273,0.0282964547174467,0.0305133618248287,0.0325472476685648,0.0346402662092057,0.0368498980130667,0.0388541904425953,0.040836270259593,0.043021729619367,0.0573326232024812,0.0720409509154288,0.0853662375271491,0.0981794469978229,0.1103389365785754,0.1265272444543175,0.1384443972835314,0.1491092630256306,0.1592159964091438,0.1687301519182902,0.180542835285371,0.1910680452552373,0.2021684228860054,0.2112099624656664,0.2203244337816124,0.2298800895449609,0.238788636769698,0.2472763696934227,0.2548547548206863,0.2617546594530157,0.2679317810788593,0.2733327870579559,0.278462576817875,0.2835142973562474,0.2870819210069128,0.2911773413599131,0.2951359747466523,0.2979124476201393,0.301559343107289,0.3044389935116315,0.3013621266925735,0.297805082532745,0.2956597564062895,0.2927476457609275,0.2911889895739095,0.2873900741760342,0.2848345123799899,0.2843700394390168,0.2850328779257947,0.2863879003558718,0.2881792717086834,0.2885766021099039,0.288580375782881,0.2891144322997992,0.2896312260536398,0.2908442699183631,0.2920678846751193,0.2957974809826661,0.3026859863094617,0.3053899262513729,0.3084304932735426,0.3116415104193868,0.3142186244824816,0.3198956780923994,0.3264310693907601,0.329252652442579,0.326448136506511,0.3327373857767183,0.3323481998925309,0.3397291196388262,0.0,1.542326221339431,54.21070918618789,149.70784148100478,204.7775899242056,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95661,47573,453.9990173633978,5088,52.00656484878896,4026,41.60525187903116,1497,15.33540314234641,77.27782633283482,79.68770516929993,63.2892740309558,65.0717713431433,77.09111698922662,79.5027292974708,63.218833151247445,65.00416052945074,0.1867093436082001,184.97587182913836,0.0704408797083502,67.6108136925535,242.10164,169.57222830293995,253082.9073499127,177263.7002570953,479.42771,318.7100643286807,500720.3562580362,332712.8655655708,462.24287,225.3448770611425,480123.94810842455,233201.8639339464,2276.09712,1069.1239817286466,2352460.041187109,1090740.9098050897,933.65949,421.84683603296025,961877.0763425012,426906.8937036864,1459.74304,613.2959298482298,1496424.2690333575,615515.4292636305,0.38164,100000,0,1100462,11503.768515905123,0,0.0,0,0.0,41276,430.9906858594412,0,0.0,41885,434.7539749741274,1116258,0,40017,0,0,9696,0,0,81,0.8467400508044031,0,0.0,0,0.0,0,0.0,0.05088,0.1333193585578031,0.2942216981132075,0.01497,0.353514526710403,0.646485473289597,23.6472790046599,4.023894814830848,0.2940884252359662,0.2871336313959264,0.2173373075012419,0.2014406358668653,11.529005782535688,6.351937738920467,15.76693376095299,11603.599919592709,46.02098518527383,14.220960092582189,13.315490911769729,9.73095025646236,8.753583924459551,0.587431693989071,0.782871972318339,0.6942567567567568,0.6057142857142858,0.1331689272503082,0.7673434856175972,0.910386965376782,0.8698412698412699,0.7752293577981652,0.1075949367088607,0.5126582278481012,0.6887218045112782,0.6306098964326813,0.5494672754946728,0.1393568147013782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0043404186272919,0.0064564595050047,0.0087299409534843,0.01109924207742,0.0133861716975173,0.0155736868944416,0.0175676917891468,0.0198238561389511,0.0218500307314075,0.0237746028164391,0.0257000225979415,0.0278443760740047,0.0302190157175985,0.0324289165582605,0.0344831152712416,0.0365058805243251,0.0383968435261135,0.0405510868773477,0.0424460431654676,0.0576083094735522,0.0716447609572184,0.0853223334802779,0.0982878550306755,0.1100816748622923,0.1259950038106529,0.1380039080752729,0.1494795384566211,0.1596431932916916,0.1688713279505239,0.1811235761318202,0.191571379071379,0.2025513480565563,0.211076337214392,0.2208278291501541,0.2304555477987212,0.2391117462514932,0.2479889292665639,0.2548167479859299,0.2614248927038626,0.2676986035327846,0.2737544400822583,0.2786809652742471,0.2836164147282179,0.2877336150679442,0.2914545611418569,0.2958148263997497,0.2992852964366559,0.3025095825132083,0.3049783778082481,0.3026096089626198,0.2993211330056044,0.2969410769664505,0.29441264886114,0.2919596271907005,0.288639740231892,0.2848568351704041,0.2846513919684651,0.2848528331539657,0.2853369503141062,0.2869755522717495,0.2875135722041259,0.2872313738606907,0.2872838295596363,0.2891572037755737,0.2901812336332288,0.2898727706463705,0.2937019004240616,0.2974057516984054,0.3018410274762416,0.3046013667425968,0.3078062979624239,0.3113941523403187,0.3163389727175735,0.3178789300797747,0.3204321500652974,0.3209309447251569,0.3198776758409786,0.3244518456841521,0.3248286367098248,0.0,1.87131563166225,51.71251538162642,148.4032806995958,209.12940281685775,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95820,47925,455.7608015028178,5008,51.02275099144229,3969,40.84742225005218,1468,14.944687956585264,77.39792083527668,79.70222861479068,63.37134666233783,65.0718812024811,77.20616941877525,79.51348899602898,63.29855182793797,65.00269319000398,0.1917514165014324,188.73961876170145,0.0727948343998576,69.18801247711315,242.41558,169.70488358384722,252990.3569192236,177107.7946351795,485.1747,322.9233224966137,505752.2124817366,336424.85784521385,465.16594,227.70651109687935,481694.5835942392,234798.5916121785,2256.63876,1067.6353922130895,2324354.456272177,1083613.898450374,902.89357,415.5807863095632,928894.2600709664,420509.3352974243,1429.0865,615.6482643523294,1456864.45418493,613245.5333275802,0.38304,100000,0,1101889,11499.561678146523,0,0.0,0,0.0,41782,435.43101648925074,0,0.0,42035,435.01356710498857,1114097,0,39969,0,0,9494,0,0,87,0.8975161761636402,0,0.0,0,0.0,0,0.0,0.05008,0.1307435254803675,0.2931309904153354,0.01468,0.3607775871926815,0.6392224128073185,23.24010756808547,4.112869912089916,0.3139329805996472,0.2771478961955152,0.2040816326530612,0.2048374905517762,11.269232140529294,6.012879106961837,15.711663829040914,11575.208953882317,45.39634167664008,13.39250330774073,14.134128552253207,8.955924237641518,8.913785579004623,0.5847820609725372,0.81,0.7110754414125201,0.5851851851851851,0.08610086100861,0.7574215436810857,0.91991341991342,0.887905604719764,0.7577319587628866,0.108695652173913,0.5118279569892473,0.7304075235109718,0.6449834619625138,0.5308441558441559,0.0794912559618442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361464323317,0.0045496458571877,0.0067650489375729,0.0091894032472609,0.0111215029277813,0.0131994056705542,0.0155285198997371,0.0176485590410609,0.0198316202464393,0.0219762231180045,0.0242710489109276,0.0265196204154911,0.0289107608851994,0.0310158886967975,0.0328801574949236,0.0350641707364921,0.0372657955450717,0.0395111889634013,0.0415061423275423,0.0433791617663894,0.0585737831466065,0.0730885890597217,0.0865480397194056,0.0993954686432213,0.1120152628305804,0.1270126547484379,0.1389987593183674,0.1498637602179836,0.1593808089225049,0.1692284589559042,0.180672676165552,0.1927203893996755,0.2032833224614046,0.2125691544029214,0.2213424826251429,0.2308032946594632,0.2392395182872435,0.247141749013524,0.2544123148074678,0.2613196970736953,0.2670033631120921,0.2725456987677393,0.2778230906533329,0.2815475905632387,0.2858181553786308,0.2900858147483341,0.2941183811508654,0.2970428913950804,0.3002609279735455,0.3028589463717419,0.3000549723127254,0.2974239517676075,0.295471126325832,0.2927646720368239,0.2901894662111195,0.2860101417716121,0.2817828297935986,0.2816682990532158,0.2811926293601686,0.2812566635866088,0.2810881311719769,0.2824886513254859,0.283720736482546,0.2845977421006925,0.2852726183343319,0.2857773392875688,0.2864138480810841,0.2898892663898326,0.29422060419365,0.2975471027372911,0.3012546595145013,0.3032203209692847,0.3058564231738035,0.308107696988135,0.3126469205453691,0.3122632575757575,0.3140155558944639,0.3158316633266533,0.3191374663072776,0.3166979362101313,0.0,2.15523310940446,51.2400600557646,149.31101368311587,199.6669099830965,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95562,47447,453.0880475502815,4986,51.11864548669973,3992,41.2820995793307,1473,15.110608819405202,77.19945181010942,79.67048746129475,63.224607941291474,65.05368459160147,77.00958610808833,79.48159509732005,63.153705761172,64.98509908098387,0.1898657020210947,188.892363974702,0.0709021801194751,68.58551061759499,242.11858,169.67289722605022,253362.8220422344,177552.68540429277,483.61729,321.0727937801436,505581.8107615998,335488.5768193881,462.77443,225.0045702892066,481117.6722965195,233047.6223346315,2247.86428,1062.031212962251,2326312.174295222,1085407.7697853232,915.89184,411.2500066651356,947915.353383144,419837.4214281149,1427.46986,604.8801667362932,1465426.780519453,609316.3863754119,0.37869,100000,0,1100539,11516.491911010651,0,0.0,0,0.0,41630,435.1311190640631,0,0.0,41955,435.8845566229255,1109085,0,39773,0,0,9686,0,0,86,0.8999393064188694,0,0.0,1,0.0104644105397542,0,0.0,0.04986,0.1316644220866672,0.2954271961492178,0.01473,0.3676498939656834,0.6323501060343165,23.042657447644235,3.9774414284103305,0.3021042084168336,0.3011022044088176,0.2006513026052104,0.1961422845691382,11.3439151082758,6.168204136263626,15.758458688225405,11501.97420154098,46.142650601002536,15.010566853837169,13.6655289959458,8.860428176045561,8.606126575174,0.595691382765531,0.8169717138103162,0.703150912106136,0.5692883895131086,0.1174968071519795,0.7756622516556292,0.9187145557655956,0.8629283489096573,0.7659574468085106,0.1764705882352941,0.5176005747126436,0.736998514115899,0.6451977401129944,0.5089722675367048,0.1011419249592169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021287163840204,0.0040279215113329,0.0062048094889917,0.0085204164633154,0.0107504988394347,0.0132622479561255,0.015543195387049,0.017719190680564,0.0199140401146131,0.0222383914571782,0.0246466222527895,0.0268991897338872,0.0287123716542569,0.0307400301211033,0.0329137731481481,0.0351320297700994,0.0369509981851179,0.0388892353100122,0.0407170534561059,0.042593617221184,0.0569886399297056,0.0709889165015152,0.0840174488884217,0.0973574408901251,0.1088059354456868,0.1239279542876527,0.1354019296024848,0.1464549451487599,0.1565342217746687,0.1658207157604955,0.1775397142517737,0.189137276180141,0.1994524193900257,0.2092655962095288,0.2184986151418514,0.2283848469030774,0.2372369348504682,0.2455942414874653,0.2528328934194958,0.2590023883887562,0.2646523437952904,0.2703827442705586,0.276652003272585,0.2815861505954667,0.2863037207434184,0.289955296500284,0.293787720993262,0.2969044826355245,0.3003230954883413,0.3038018189509306,0.3011170471102476,0.2976346278361735,0.2948463197057456,0.2920069969496769,0.2883514064289645,0.2850683587762859,0.2818514470370194,0.282155357993854,0.2830837682895525,0.2836781773636868,0.2837381283081197,0.2840016617539417,0.2850784186105104,0.2855736090595765,0.2867873651771956,0.287190999504033,0.2854575536284801,0.2906294145346099,0.2924630870129415,0.2966985230234578,0.3002073192716784,0.3033501365259399,0.3075009329518597,0.3087415222305953,0.3141162294930021,0.3170072821235612,0.3215898825654923,0.323949246629659,0.3225108225108225,0.3251231527093596,0.0,1.8982893904584692,53.11024435383626,151.8995603251717,199.5728891346196,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95665,47685,455.3912089060785,5054,51.5026394188052,4067,41.76030941305597,1514,15.29294935451837,77.33990302576841,79.73018269481528,63.32261558699434,65.08891288282726,77.14076260993902,79.53887487368256,63.246355217081614,65.01891683253955,0.1991404158293903,191.3078211327246,0.076260369912724,69.99605028771327,241.27752,168.96794074286544,252209.94093973763,176623.78895055244,483.7347,321.5552320225127,504762.4627606752,335246.9092941169,461.80899,225.0798533965873,478070.8618617049,231649.373989328,2322.58704,1093.8089281550217,2386634.192233314,1102843.916305116,943.59473,428.5374933007407,966218.0421261694,428442.6562829794,1477.27264,637.2330076446065,1494396.487743689,623902.7706773954,0.38147,100000,0,1096716,11464.088224533529,0,0.0,0,0.0,41581,433.8159201379815,0,0.0,41897,433.4291538180107,1120208,0,40192,0,0,9537,0,0,89,0.8989703653373752,0,0.0,0,0.0,0,0.0,0.05054,0.1324874826329724,0.2995647012267511,0.01514,0.3596740572294865,0.6403259427705136,23.25432291585808,4.143863395373602,0.3024342267027293,0.284730759773789,0.1996557659208261,0.2131792476026555,11.50815115822148,6.202050436052835,16.15518903307647,11595.703595964736,46.3593957240446,14.193015557231254,13.918248802191489,8.904741305360757,9.34339005926109,0.5824932382591591,0.8048359240069085,0.6943089430894309,0.6009852216748769,0.1095732410611303,0.7715481171548118,0.94824016563147,0.8604651162790697,0.7248677248677249,0.1731843575418994,0.5038300835654597,0.7022222222222222,0.6297968397291196,0.5634028892455859,0.0930232558139534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044701231564543,0.0066767460502683,0.0090704099459635,0.0111548356263282,0.0134978317962499,0.0156052513556488,0.0177798644566016,0.0199133137062479,0.0222624823435484,0.0244810087651853,0.0266069925475784,0.0285767170195481,0.0305720936939906,0.0323875775371817,0.034523760287853,0.0363447990053874,0.0383026427785505,0.0405405405405405,0.0421475110763617,0.0565891877774875,0.0701348465178608,0.0835151922108443,0.097125783781509,0.109566061424517,0.1246468814473893,0.1363756936560315,0.1474451777730466,0.1578795582234944,0.1675906366278134,0.1799842752054455,0.1918968931597571,0.2030170866732649,0.2129446370187313,0.2219140083217753,0.2313418781641538,0.2401160520002231,0.2474261603375527,0.2556725358504266,0.262246452337048,0.2682782950667977,0.2741631884769621,0.2787366179688886,0.2829736785380691,0.2872432078241982,0.2916287086051951,0.2950846313473511,0.2987953644403782,0.3008928571428571,0.3045604967895896,0.3014948266350927,0.2985156679494227,0.2954842885889985,0.2927773125018049,0.2908850765760418,0.2875758084966621,0.284067946451124,0.2844373137749255,0.28483230151711,0.2848615133156856,0.2857808770883054,0.2871421544515494,0.2884471117779444,0.2888433342988926,0.2907762338284619,0.2916374769725746,0.2916430273459662,0.2973743576889334,0.3030250043713936,0.3056661803556642,0.3111753807221293,0.3127242034184427,0.3138836772983114,0.3158731360230111,0.3165346995808104,0.3244962884411453,0.3283399571996331,0.3286528286528286,0.3238888888888889,0.3247402847248942,0.0,2.7990751586568634,51.20866691220924,146.9537023929853,213.81959437497207,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95789,47783,454.63466577581977,4975,50.75739385524434,3942,40.620530541085095,1455,14.824249130902295,77.331780499572,79.67160505106796,63.32970022966426,65.06212075966623,77.14533694788442,79.48956699382097,63.25795619746615,64.99461670108847,0.1864435516875886,182.0380572469844,0.0717440321981115,67.50405857775377,241.6535,169.2734216169846,252276.1903767656,176714.29357988876,485.89248,323.57086720994846,506707.6386641472,337252.4845167262,464.37642,226.07268369797825,481688.5550532942,233581.3275395225,2230.61488,1061.7086100065371,2298528.975143284,1078340.641307718,876.68377,403.6546451352265,900697.5331196693,406940.5288974752,1404.79742,607.4459288344556,1432203.5933144726,603467.3770714581,0.3818,100000,0,1098425,11467.099562580255,0,0.0,0,0.0,41771,435.509296474543,0,0.0,42073,436.0939147501279,1115683,0,40043,0,0,9590,0,0,87,0.908246249569366,0,0.0,0,0.0,0,0.0,0.04975,0.1303038239916186,0.2924623115577889,0.01455,0.3693814829043411,0.6306185170956589,23.451944337190923,4.055031226462659,0.3234398782343988,0.2871638762049721,0.2024353120243531,0.186960933536276,11.597959859790144,6.373222629435585,15.553588737373826,11551.246275354928,45.45743840550144,13.97373307810957,14.483063975093463,8.949235162879566,8.051406189418842,0.6052765093860984,0.8286219081272085,0.7066666666666667,0.5827067669172933,0.1112618724559023,0.7600334448160535,0.9128630705394192,0.8727810650887574,0.7047619047619048,0.1566265060240964,0.5378732702112163,0.7661538461538462,0.6467449306296692,0.5391156462585034,0.0980735551663747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473790833122,0.0043996593812091,0.0067683440388849,0.0088382299158844,0.0113399440630561,0.0133402580474342,0.0157419302216512,0.0180182939278859,0.0201795097217394,0.0222756820392076,0.0244392504203059,0.0265724787974618,0.028728895469595,0.0306651146980356,0.0327061810450703,0.0348178472480668,0.0370554485387021,0.0391017995125239,0.0413384599397277,0.0433990358083695,0.0582692448163955,0.0725388059077026,0.0863881754808952,0.0989323918206082,0.1107750990474584,0.1264015555813879,0.137443822606631,0.1479783907948189,0.1576267930327868,0.1665309446254071,0.1786129532340022,0.1902593117474604,0.2011963673935504,0.2109862944773197,0.2198974200933345,0.2286955269193693,0.237202088726234,0.245984793953572,0.2538044587576259,0.260116996554211,0.2662812879357188,0.2717508181393174,0.2771225438586114,0.2810159947283292,0.2854506380447056,0.2906962415280345,0.2943200730794739,0.2969263286561919,0.2998821197714937,0.3028715458312438,0.2993381225280491,0.2967702955069757,0.2938687137092806,0.2916636603702795,0.2898215318883795,0.2861360542136421,0.2820950754341019,0.2817956747716876,0.2825326393036949,0.282082777036048,0.2832601177680157,0.284141706543786,0.2848510193413486,0.2853288740245262,0.2871277617675312,0.2889322408635713,0.2907128656631639,0.2961248553466988,0.3001847397957405,0.3038658777120315,0.3086889553320648,0.3115551326778729,0.3152563699276502,0.3202515342071369,0.3240317312179188,0.3277320799059929,0.3248746391125969,0.3259789306300934,0.3338771071234366,0.3391270760911549,0.0,1.9824944595536804,52.21444838054412,148.20375412996782,198.5794226313312,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95689,47417,453.52130338910433,4953,50.61187806330926,3915,40.34946545579952,1450,14.80838967906447,77.34192318165195,79.71710981563434,63.32298576779221,65.07486290067774,77.16469048405813,79.54231006627668,63.25718375025798,65.0118196327764,0.1772326975938227,174.79974935766052,0.0658020175342244,63.04326790134951,243.19108,170.3040433217748,254147.3732612944,177976.61520318405,484.87853,322.1194514115442,506193.12564662605,336101.39243961603,459.23466,224.14889557786864,475463.6165076445,230772.5774248091,2245.28804,1047.7344995717751,2316929.8874478783,1065625.528916828,895.79473,401.4192613110744,923387.1291371004,406760.2255398505,1414.91102,590.3996298174519,1447861.9486043327,592762.4070262045,0.37935,100000,0,1105414,11552.153330058838,0,0.0,0,0.0,41737,435.6091086749784,0,0.0,41522,429.5269048688982,1109564,0,39790,0,0,9628,0,0,90,0.9405469803216672,0,0.0,0,0.0,0,0.0,0.04953,0.1305654408857255,0.2927518675550171,0.0145,0.3650455338112768,0.6349544661887231,23.32707141103013,4.020636887689518,0.3151979565772669,0.2758620689655172,0.2017879948914431,0.2071519795657726,11.571960314295008,6.340218116544552,15.314478248124413,11506.909865614987,44.66114913388601,13.383376017283574,13.901889998619389,8.70237097356311,8.673512144419934,0.5795657726692209,0.8027777777777778,0.6952998379254457,0.5658227848101266,0.1196054254007398,0.7793867120954003,0.930379746835443,0.8879551820728291,0.75,0.1349693251533742,0.4939802991608902,0.7029702970297029,0.6168757126567845,0.5114754098360655,0.1157407407407407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023288073468809,0.0044293084400117,0.0067358511620357,0.0088873991915005,0.0110034271302614,0.01322514304331,0.0152417266480435,0.0174200729069874,0.0196942583976685,0.0218913826998689,0.0238803215486834,0.0259085447879976,0.0279043455901259,0.0296638984482865,0.0314209624476145,0.0333491892786234,0.0353950217010741,0.0373042151479609,0.0392882769521947,0.0412012337445815,0.0556414380914579,0.0698258802835335,0.0831759026028547,0.0958764296762381,0.1080219884571151,0.1235013386101734,0.1361291007537955,0.1465059060359794,0.1568264893867168,0.1663572064868577,0.1784674759060822,0.189612977281095,0.2002459810398685,0.2102740850155916,0.2190320024651142,0.2287866201473113,0.237196585011997,0.2459324436843171,0.2532373284952942,0.2606296508299943,0.266029051209696,0.2715546980061977,0.2774011900959411,0.2821440552067858,0.2861808557136613,0.2905085037993078,0.2933646976389184,0.2969767087062652,0.2999417362594678,0.3023577997387552,0.299890875287968,0.2975239616613419,0.2949828817786043,0.2923620627479264,0.2905318345403652,0.2866517114559966,0.2836868248837026,0.2845167733590923,0.2846455351056578,0.2855314383232894,0.2851865671641791,0.2854693781035706,0.2865786234378586,0.2866311590488712,0.2884059010592258,0.289165976821192,0.2896387993895201,0.2931625529793069,0.2964995138213641,0.3010951053891745,0.3029513498944342,0.3076237883154309,0.3089116325511732,0.3120323256510027,0.3172598192882168,0.3223502304147465,0.3220112726194007,0.3281557215886748,0.3341391351060972,0.329654157468727,0.0,2.262151680961523,51.07707098481679,140.7575496984033,201.427055206648,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95738,47769,455.5244521506612,5013,51.139568405439846,3957,40.73617581315674,1488,15.176836783722242,77.32392886815877,79.68815902395582,63.31606620966248,65.06514816543705,77.13474578643135,79.50322690473484,63.24472489391528,64.99808145956008,0.1891830817274211,184.9321192209743,0.0713413157471976,67.06670587696806,241.43768,169.15819464468632,252185.610729282,176688.4493583387,480.68146,319.6005581134432,501481.7418370971,333230.5115058212,461.73421,224.96974652500043,478597.1401115544,232097.6159457142,2248.90476,1059.2687101289523,2318081.7648164784,1075535.6808466362,905.84918,415.1109315909698,931639.4743988804,419084.6535367452,1439.04626,612.8346920934312,1470175.2491173828,610737.0348181046,0.38134,100000,0,1097444,11462.982305876454,0,0.0,0,0.0,41332,431.103637009338,0,0.0,41864,433.5895882512691,1118391,0,40160,0,0,9767,0,0,69,0.7207169566943116,0,0.0,0,0.0,0,0.0,0.05013,0.131457492001888,0.2968282465589467,0.01488,0.3558023745691306,0.6441976254308694,23.177433222722243,4.050097198367068,0.3073035127621936,0.2906242102602982,0.2047005307050796,0.1973717462724286,11.60549940556943,6.478925886150659,15.949050587903972,11556.108817929928,45.36170967498563,14.103728947898272,13.764963776633468,8.963546626181015,8.529470324272872,0.590851655294415,0.7991304347826087,0.7179276315789473,0.5679012345679012,0.1101152368758002,0.7703513281919452,0.9296703296703296,0.8870523415977961,0.712707182320442,0.1488095238095238,0.5157706093189964,0.7136690647482015,0.6459554513481829,0.5262321144674086,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022992697033233,0.0043800504922487,0.0065764101731382,0.0084842203661931,0.0107214061927818,0.0128411405295315,0.0149868482760026,0.0171384241632386,0.0194358392376979,0.0216647895976246,0.0238678655279534,0.0262123063338706,0.0281596019204869,0.0302630765744422,0.0324434767354267,0.0342660450885335,0.0363461219754723,0.0384751110557562,0.0405336549959965,0.0427059240274218,0.0567956400993923,0.0704406595246066,0.0841407659074703,0.0969380244369203,0.1095809519792479,0.1247448089107968,0.1361740957271849,0.1470873217841285,0.1575911644698895,0.1669972233240777,0.1794568177659128,0.1908145168267151,0.2019785834646953,0.2119913410447598,0.220210929166071,0.2294268757197271,0.2383008636272343,0.2470859585958595,0.2543673450855307,0.2606662234347417,0.2665454166328788,0.2725185922585934,0.2772656175940847,0.282235816240854,0.2870258898495738,0.2907418368353556,0.2940763844525447,0.2964076050275701,0.3003745124211126,0.3036318013734812,0.3006535947712418,0.2982864221319937,0.2960671861569461,0.293397508166392,0.2915509482720211,0.2878894426269606,0.2850105003868564,0.2853472540420239,0.2855853554704129,0.2860369171675498,0.287675576862094,0.2884149583505642,0.2887229960797398,0.2885685044275353,0.2895366647520582,0.2900925661835248,0.2908905621921531,0.2954424432263117,0.2982443844833023,0.3012643224022125,0.3039699425105246,0.3066954643628509,0.3117467058015362,0.31335396693591,0.3157204421959902,0.3184939616386455,0.3228962818003913,0.3227326266195524,0.3211275026343519,0.3300825206301575,0.0,2.295268566069425,50.63140632051706,149.62722966286802,200.77214037176103,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95791,47669,454.00924930317046,4977,50.620621979100335,3952,40.651000615924254,1504,15.262394170642336,77.4066300966336,79.74317125040174,63.35719594835807,65.08661697803741,77.20830286003472,79.55031057336777,63.28201354026592,65.01586318423303,0.1983272365988853,192.8606770339769,0.0751824080921537,70.75379380438562,243.10594,170.3195151864308,253787.41217859715,177802.8284498239,483.31484,321.5092677715596,503933.6472111159,335019.2650601828,463.68893,225.92851330361623,479914.5744380996,232694.81599524544,2250.22696,1069.04965461613,2315981.167333048,1082976.5596101198,914.90956,421.58481771953626,940487.9372801202,425630.9841823271,1466.80758,632.6909105914189,1490682.9451618628,627513.5128024034,0.38032,100000,0,1105027,11535.791462663508,0,0.0,0,0.0,41535,432.9634308024762,0,0.0,41932,433.71506717750106,1111749,0,39915,0,0,9667,0,0,88,0.9082272864882922,0,0.0,1,0.0104393940975665,0,0.0,0.04977,0.1308634833824148,0.3021900743419731,0.01504,0.3644410236675005,0.6355589763324995,23.00071806101615,4.074069050579381,0.3061740890688259,0.2828947368421052,0.2016700404858299,0.2092611336032388,11.249115048276822,6.014501347793435,16.12013011588361,11511.894123633105,45.43176381028813,13.611103494873996,13.895721879746713,8.85148464765934,9.073453788008097,0.5872975708502024,0.7933810375670841,0.7132231404958678,0.5846925972396487,0.1269649334945586,0.7602965403624382,0.9193899782135077,0.8773333333333333,0.75,0.1489361702127659,0.5105916727538349,0.7056145675265554,0.6395209580838324,0.5322314049586777,0.1205007824726134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0046439942406359,0.0069818654164256,0.0090730825112016,0.011259039269332,0.0133500336042035,0.0155278236577557,0.0178022763231766,0.0199824195592624,0.0221253428302427,0.0240945333797938,0.0260630438351666,0.0281197969125778,0.0303064617411803,0.032490825877211,0.0347565697764469,0.0367458412645866,0.0388008334456342,0.040755900930851,0.04275719907552,0.0576365267836647,0.0718222222222222,0.0849177235090661,0.0975450838622893,0.1095167356743259,0.1254503766786767,0.1371748945460711,0.1484163184587413,0.1586444584342556,0.1681484179181216,0.1800370123302705,0.1913761785312689,0.2014191487280906,0.2101406543484908,0.2189704040603783,0.2284908165523345,0.2369996988993097,0.2449020886260932,0.2516102694366325,0.2579574458344302,0.2639295170484108,0.2691080755792893,0.2744337335146963,0.2793371012549094,0.2841565884695711,0.288049772083282,0.2922281867437466,0.295781991123997,0.299042071197411,0.3025777683966122,0.2996565887819002,0.2965381654201496,0.2940472671480653,0.2914405311778291,0.2897744962860828,0.2865518504946867,0.2831256007437404,0.2832446374351105,0.2823924207243699,0.2825286705365992,0.2831186238737062,0.2836716681376875,0.2845565622142798,0.2863482061636085,0.2887385992903579,0.2894207458606282,0.2898824458038508,0.2940482107355864,0.2976206992230855,0.3030563925957813,0.306984468982853,0.3112132929250705,0.3134079248315509,0.3180362065112121,0.3182858712572108,0.3173431734317343,0.3140570738336101,0.319296164491894,0.3193688792165397,0.3272796065077563,0.0,2.3097164315595498,52.71791253394606,145.9477695259398,197.57892264453815,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95691,47798,455.7586397884858,4862,49.61804140410279,3876,39.95151059138268,1437,14.619974710265334,77.29491858535671,79.69765449203592,63.29396199958445,65.07418740740708,77.10892588497454,79.51551139339935,63.22265584875526,65.00684625273098,0.1859927003821724,182.14309863657263,0.0713061508291943,67.34115467610025,241.912,169.4257000834937,252805.1540897263,177054.79650027218,481.0088,320.2526856521168,502108.2546947989,334114.32818309934,458.64624,223.50132221481613,475992.737039011,231037.7219326199,2201.12916,1046.1825905304368,2269367.234118151,1062864.499175572,881.07456,404.6112369347787,905721.394906522,408032.7956743549,1389.53056,604.3634539748055,1414999.571537553,599298.5090883755,0.38367,100000,0,1099600,11491.143367714832,0,0.0,0,0.0,41444,432.5276149272136,0,0.0,41536,430.7406130148081,1116094,0,40090,0,0,9592,0,0,91,0.9509776259000324,0,0.0,0,0.0,0,0.0,0.04862,0.1267234863293976,0.2955573837926779,0.01437,0.3563650762225302,0.6436349237774698,23.259888061094426,3.9668941465224736,0.3085655314757481,0.2902476780185758,0.2056243550051599,0.195562435500516,11.282190812992312,6.254645356440103,15.47302312958622,11571.637056304218,44.65276287755872,13.95349841508726,13.563760762221104,8.758635650103567,8.376868050146786,0.5985552115583075,0.8355555555555556,0.689799331103679,0.5796737766624843,0.1226912928759894,0.7635593220338983,0.9266802443991852,0.8648648648648649,0.7043010752688172,0.1588235294117647,0.5263353115727003,0.7649842271293376,0.6222479721900348,0.5417348608837971,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025748375520796,0.0049418044181963,0.0072208398923475,0.0094860454476132,0.0115231531907529,0.0134334899554595,0.015816972121311,0.0179501849165321,0.0202561689241723,0.0224546450998268,0.024341956793796,0.0264014875234993,0.028421485902449,0.030608774515361,0.0329586391271586,0.0348928600976255,0.0369533678756476,0.0390796960006644,0.0411439152778644,0.0429013664648064,0.0574183170385226,0.0708662241671726,0.0836376610838265,0.0970980029041015,0.1097055316993912,0.1243439986456746,0.1353302057019126,0.1459174004237513,0.1565708912562642,0.1666344771347024,0.1780143066448332,0.1897275540455735,0.2010764379689029,0.2109860078705728,0.2192012846317132,0.2283815957034494,0.2366016134971378,0.2455125535961467,0.2528161337209302,0.2593034187054319,0.2654415340790662,0.2709589073161597,0.2768347537878788,0.2814384900411305,0.2863703181757438,0.2907256423223515,0.2945764579212259,0.2977005061938799,0.3016535870815933,0.3045940677519625,0.3019456089433516,0.2989941128844122,0.2965493007238737,0.2947952710495963,0.2919329251115691,0.2884297773427942,0.284728923763269,0.285161501885555,0.2861455543995497,0.2873700540289938,0.2878061568421841,0.2884292459353207,0.2891944496766497,0.290967136988748,0.2920996920708237,0.2947302645282232,0.2969928020711826,0.3008530389512638,0.3041793233476484,0.3083968260234495,0.3120715485540473,0.3156590945027144,0.3188758023306537,0.3213396696085087,0.3245409637431261,0.3245407442298634,0.3296257327521419,0.3397358943577431,0.3467094703049759,0.350129677658392,0.0,2.1584053222118027,51.331616965207004,142.77422044574536,197.8247760491904,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95734,48011,457.3087931142541,5027,51.56997513944889,3997,41.3123864039944,1469,15.062569202164331,77.3593554540744,79.73114935585649,63.33143217950936,65.08403378011863,77.180117805788,79.55181011080897,63.26481283118851,65.0194201560969,0.1792376482864028,179.3392450475153,0.0666193483208559,64.61362402173165,242.76032,170.0357639009047,253577.9555852675,177612.72264911598,481.61413,320.5719203685872,502670.0231892536,334451.616320834,469.97463,229.8090407377171,488144.53590156056,237944.95854065675,2272.25176,1067.8781972682632,2350722.8779743877,1092681.2598118363,922.82659,414.664096140174,953982.2738003216,423175.5657761853,1425.202,597.0316002581636,1463054.8185597593,601320.9058262883,0.38181,100000,0,1103456,11526.27070842125,0,0.0,0,0.0,41436,432.38556834562434,0,0.0,42413,440.198884408883,1113089,0,39884,0,0,9594,0,0,103,1.0758978001545951,0,0.0,0,0.0,0,0.0,0.05027,0.1316623451454912,0.2922220011935548,0.01469,0.3652671755725191,0.6347328244274809,23.412217341869862,3.972028720759192,0.2957217913435076,0.2969727295471603,0.2079059294470853,0.1993995496622466,11.50399115349531,6.43398121393056,15.556417502563622,11615.258341269307,45.7761313188632,14.751070177547604,13.16786532889201,9.20744986504864,8.649745947374962,0.5941956467350513,0.8222409435551812,0.6937394247038917,0.5824308062575211,0.1191969887076537,0.7684124386252046,0.9233644859813084,0.8726708074534162,0.7202072538860104,0.1453488372093023,0.5174774774774775,0.7392638036809815,0.6267441860465116,0.5407523510971787,0.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.004490759982564,0.0068799659045937,0.0089882391176291,0.0111751726101501,0.0135604263593513,0.0157194556297466,0.0180266623114141,0.0201181738259287,0.0225841787897091,0.0247859303696867,0.0267874567323,0.029034116630314,0.0311353801772099,0.0330220318868995,0.0350755680525978,0.0371167962562249,0.039217923451924,0.041147300683016,0.0431449344805316,0.0584549840235574,0.0727697073722108,0.0864215660565374,0.0990284320323014,0.1110302723563091,0.1267703959128843,0.1380323833372238,0.1487853173504801,0.1586134678263842,0.1682439537329127,0.1801736769522496,0.1911112073257853,0.2020037202623764,0.2107532058295768,0.2200319365673696,0.2291796008869179,0.2371212290378045,0.2450632000359857,0.2535476479462776,0.2609736266504815,0.2663806462057959,0.2718434122115103,0.2772625784120308,0.2818715688502434,0.2872070892582221,0.2913176635548504,0.2948822095857026,0.2984128999492128,0.3026970444941265,0.3057617393135396,0.3038350061725082,0.3009643479334422,0.2986667040531636,0.2958110670574039,0.2926346278891056,0.2898658831767876,0.2866105825929711,0.2861731092162968,0.2856051604141911,0.2865321894498014,0.2864462040055892,0.2876459258676939,0.2884282165299263,0.2885979390641031,0.2889772074315265,0.2902832853847549,0.2929965166661947,0.2967356264279678,0.2995216313418765,0.3033251910802931,0.3096940622737147,0.3132949807357365,0.3155245107293437,0.3200874679535515,0.3205270972531551,0.3275761465748629,0.3276331719128329,0.3307416267942584,0.3283743575872329,0.3344581927259092,0.0,1.7387984344652505,53.76089628563356,142.0492576421377,206.07703417593876,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95885,47460,450.237263388434,5083,51.65562913907284,4037,41.47676904625333,1463,14.840694582051414,77.4394230829848,79.7208174716397,63.39129033748679,65.07788945204427,77.24367931971025,79.53015302324917,63.31506814198654,65.00654189543364,0.1957437632745495,190.6644483905353,0.0762221955002431,71.34755661063252,242.83358,170.05660127238744,253255.0242477969,177354.74920205187,482.7468,321.05401053407473,502867.9355477916,334235.93944211793,461.31341,225.22653635350497,477771.371955989,232316.98980481215,2283.74436,1091.3566349806658,2349123.5959743443,1105563.3675555775,893.79662,419.4488680417364,916425.144704594,421721.9039759993,1415.57396,623.5764190275994,1438522.6052041508,616090.6033695554,0.3798,100000,0,1103789,11511.592011263492,0,0.0,0,0.0,41450,431.6525003910935,0,0.0,41833,432.9665745424206,1117264,0,40110,0,0,9769,0,0,93,0.959482713667414,0,0.0,1,0.0104291599311675,0,0.0,0.05083,0.1338335966298051,0.2878221522722801,0.01463,0.3618706392607957,0.6381293607392042,23.276012858845792,4.067706384675057,0.3027000247708694,0.2868466683180579,0.2184790686153083,0.1919742382957641,11.095212083858764,6.00909847122836,15.83420607888068,11529.660146327707,46.40521630772536,14.196517978640337,13.897382279727587,9.844710437868706,8.46660561148874,0.579390636611345,0.7815198618307426,0.7144026186579379,0.5453514739229025,0.1032258064516129,0.7360890302066773,0.8875502008032129,0.8826979472140762,0.6577777777777778,0.1804123711340206,0.5084562792371357,0.7015151515151515,0.6492622020431328,0.5068493150684932,0.0774526678141136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023790240939461,0.0047731971300012,0.0071414804370099,0.0090974626608047,0.0113836177543781,0.0135426629494719,0.0156964604023427,0.0179518563851489,0.0203199705774181,0.0226784508684711,0.0248468206315703,0.0271077229307532,0.029153050948476,0.0311393395371819,0.0331347038083259,0.035335907973813,0.0375248303261049,0.0395415829067622,0.0417579451187225,0.0437057844361215,0.0583863233607839,0.072474974399699,0.0860272480705392,0.0988565608626718,0.1109531931021413,0.1259885752901052,0.1379299386672033,0.1485031721909903,0.1582706967322352,0.1679671194168834,0.1797372269052124,0.1911194199202498,0.2009060982366937,0.2103146413700396,0.2191270111845505,0.2277320877101712,0.2366147569308972,0.2447867511572513,0.252356780275562,0.2590098330665447,0.2653806168418621,0.2704788817917489,0.275168737219116,0.279755776367772,0.2843358578502767,0.2884665099159209,0.292553058520611,0.2970261827970643,0.299540063564249,0.302576180201042,0.2999959699627893,0.2972769051375266,0.2949625136888215,0.2919609143054795,0.2895859250044428,0.2851387235601135,0.2806195681319894,0.2808931867557457,0.2804691483936767,0.2815566715763695,0.2816702052370842,0.2823222106565587,0.283373193303525,0.2832528679629711,0.2835366578678271,0.2857179752066116,0.2879887482419128,0.2925604463732176,0.2958549222797927,0.2986952105633252,0.3033954488442931,0.3077124593943204,0.3112076994722136,0.3157894736842105,0.3200448137428811,0.3191864566188572,0.3222357971899817,0.3242369112593491,0.3327859879584017,0.3309648466716529,0.0,2.448548445362133,54.37858187245246,146.87278398551976,202.11860039109212,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95725,47803,454.9699660485767,5047,51.42857142857143,3995,41.0237659963437,1540,15.63854792373988,77.34647984393533,79.70111821824244,63.33814763576003,65.07621478241825,77.14880852811075,79.50923120103892,63.26305272527354,65.00658741528754,0.1976713158245786,191.88701720352697,0.0750949104864915,69.62736713070683,243.1055,170.3406560878792,253962.39226952207,177947.93009963876,483.35012,320.89019430460087,504247.60511883,334532.3523683477,463.77369,226.62410369174845,480689.9764951684,233687.97318825137,2266.54076,1082.3122984667452,2329107.798380778,1092317.9155825006,928.95543,426.11124598595296,951179.4828937058,426066.0648057152,1493.4972,635.9213817443014,1517965.8187516322,626831.388165529,0.38302,100000,0,1105025,11543.745103160094,0,0.0,0,0.0,41681,434.7035779576913,0,0.0,42063,435.5184121180465,1110940,0,39901,0,0,9614,0,0,83,0.8670671193523114,0,0.0,0,0.0,0,0.0,0.05047,0.1317685760534697,0.305131761442441,0.0154,0.3627208816264488,0.6372791183735512,22.91647387764868,3.9556385783907952,0.3023779724655819,0.2926157697121401,0.2052565707133917,0.1997496871088861,11.502134938944604,6.362244584700335,16.423424832229195,11607.760027154638,46.180643774907765,14.47744232598976,13.918234579541542,9.095197653213788,8.689769216162675,0.6010012515644556,0.8203592814371258,0.7110927152317881,0.5963414634146341,0.1177944862155388,0.77431906614786,0.9296296296296296,0.8524590163934426,0.7644230769230769,0.1286549707602339,0.5188191881918819,0.7265500794912559,0.649643705463183,0.5392156862745098,0.1148325358851674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407534940247,0.0046224492899066,0.0068803848144427,0.0089697486845045,0.0112778896414261,0.0133470434924254,0.0156065239551478,0.0176364322967166,0.020014105958234,0.0223910394889068,0.0244467450465871,0.0266050808314087,0.0285820036190162,0.0307243869027387,0.0328821113885392,0.0348430975317319,0.0369427015385889,0.0390828448410022,0.0412586540260712,0.0434144054997135,0.0586441987450538,0.0724498126478407,0.0861267613022357,0.0994699981071361,0.11148014592691,0.1265489532670755,0.1383334217365936,0.1486929495912806,0.1589275990561505,0.1684834453412221,0.1794046401464176,0.1904375662405641,0.2008107638134156,0.2115000054637046,0.2203756828348776,0.2297952407304925,0.2376556629541679,0.245935370707684,0.253584229390681,0.2606918347016592,0.2664708399347758,0.2724838962344661,0.2780953057143195,0.2824578434544997,0.2872146673142302,0.2920035938903863,0.2954062367150966,0.2987368180025696,0.3026377157071047,0.3059665052195373,0.302584268149804,0.2988885220644877,0.2971519477411271,0.2948303249097473,0.2922597402597403,0.2890320211740587,0.2846560846560846,0.2849240638910709,0.2855511428522729,0.2850125473864061,0.2858609809376225,0.2870559974797196,0.2873652093956365,0.2884178146315367,0.2894553992860052,0.2916211008696557,0.2908439082683662,0.295915810573791,0.3001258829288761,0.3052880820836622,0.3098866213151927,0.3138157198772876,0.3157271139935146,0.3175900696336663,0.3196851869202661,0.3200520217545519,0.3250228032836728,0.3299636069551152,0.3340738683698973,0.3324186593492748,0.0,2.812886380368419,55.44821341706364,142.84356628454466,198.0689069825184,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95742,48130,458.9626287313822,5121,52.20279501159366,4122,42.48918969731152,1562,15.876000083557894,77.41222784566315,79.76759590953965,63.350809200748486,65.08959826390837,77.20909052649415,79.56976863632838,63.27388594808964,65.01745727719499,0.2031373191690022,197.82727321127425,0.0769232526588439,72.14098671337865,242.81422,170.02045677676503,253613.06427691088,177581.89381542586,489.93532,325.3121017136121,511137.8496375677,339193.22942241863,471.45798,229.9715937645477,489024.9315869733,237539.1315895322,2341.83528,1111.5613936878467,2412278.456685676,1127335.3566750702,960.10749,441.2927847410581,983633.1077270164,441789.10254038486,1522.2446,653.0090355952697,1547794.5102462869,646153.9638765609,0.38433,100000,0,1103701,11527.866558041402,0,0.0,0,0.0,42081,438.9400680996845,0,0.0,42653,442.2197154853669,1108197,0,39772,0,0,9527,0,0,110,1.1384763217814542,0,0.0,1,0.0104447368970775,0,0.0,0.05121,0.1332448676918273,0.3050185510642452,0.01562,0.3639925373134328,0.6360074626865672,23.16056600758297,4.0615359825855695,0.3076176613294517,0.2816593886462882,0.2074235807860262,0.2032993692382338,11.394957083624028,6.157927490423914,16.71408971426937,11664.6918329005,47.38783090942241,14.054840187276897,14.55704110322414,9.486425303798358,9.289524315123016,0.586608442503639,0.7855297157622739,0.7097791798107256,0.5719298245614035,0.139618138424821,0.7665562913907285,0.925601750547046,0.8655913978494624,0.7115384615384616,0.1929824561403508,0.5120109814687714,0.6946022727272727,0.6450892857142857,0.527047913446677,0.1259370314842578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0047737292859676,0.0070405388954266,0.009413843529125,0.0113665246698319,0.0139868682241563,0.0157775648735144,0.0179484301500974,0.0201735291412453,0.0225281473899692,0.024657702713782,0.0266075388026607,0.0287955423965786,0.0308329214038556,0.0332459706543946,0.0352262625844996,0.037141732935719,0.0389890648019421,0.0410562977595259,0.0428976207341972,0.058151674601186,0.07267304975671,0.0865031575855485,0.0988869953081276,0.1109411106773169,0.1262700025400051,0.1374438771719401,0.1489345842162991,0.1598409712722298,0.1698597202992347,0.1824964688884815,0.1935525788601687,0.2037946161298398,0.2132823875890911,0.2225037454833876,0.232212770205073,0.241440193098516,0.2487555465459378,0.2556798183366449,0.262582959846861,0.2684474394155175,0.2736430752670559,0.2790469317496185,0.2836087164750958,0.2882386494653932,0.2926661169433744,0.2957216913372056,0.2998299449224599,0.302253542941222,0.3060076245563297,0.3031074885379521,0.2998986412447951,0.2973007081259202,0.2946623720234672,0.2916254703755626,0.2874648422652984,0.2841875304509092,0.2841160760812923,0.2845641451550026,0.2857395800134565,0.2869768650896803,0.2879520667306299,0.2901676163540324,0.291334219858156,0.2931753712664776,0.293940019614928,0.2945340703971119,0.2991264339229645,0.3029198347394368,0.3067799264072653,0.3084007187780773,0.3150031453134829,0.3176346487962273,0.3226506926244852,0.3259170727222579,0.3312020460358056,0.3329853862212943,0.3356421927567781,0.3425726587728741,0.3407379518072289,0.0,2.2247165234801884,52.59618474171689,162.599130245165,203.02758641075224,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95717,47754,454.5796462488377,5088,51.7462937618187,4079,41.90478180469509,1602,16.245807954699792,77.32373385663094,79.69369392941987,63.321321634088775,65.07515442181922,77.10963621771364,79.4861285303752,63.23829069510033,64.9979178552645,0.2140976389172948,207.5653990446682,0.0830309389884433,77.236566554717,241.67,169.2671637231739,252482.96540844365,176840.49753669996,485.07892,323.35208885446275,506087.236332104,337125.5263442422,467.40569,228.05668707375185,483881.5988800318,234848.1910992527,2347.00136,1119.4794628387674,2412893.0075117275,1130627.2676357825,979.00092,446.0984320041351,1005445.3545347222,448753.9549713474,1567.30926,684.3995332959148,1592208.8657187333,675823.7612535419,0.38125,100000,0,1098500,11476.49842765653,0,0.0,0,0.0,41760,435.544365159794,0,0.0,42338,437.9472820920004,1114870,0,40013,0,0,9657,0,0,80,0.8357971938109218,0,0.0,1,0.0104474649226365,0,0.0,0.05088,0.133455737704918,0.3148584905660377,0.01602,0.3631421072365954,0.6368578927634045,23.24486668820322,4.130998988660392,0.3000735474380975,0.2691836234371169,0.2086295660701152,0.2221132630546702,11.251771889697006,6.061985610341988,17.385275139735164,11584.470830801132,47.22418404969347,13.55625680093883,14.009653854851909,9.73616823835246,9.922105155550272,0.5851924491296886,0.7987249544626593,0.7295751633986928,0.5969447708578144,0.1203090507726269,0.7274220032840722,0.9215686274509804,0.8715596330275229,0.6666666666666666,0.1111111111111111,0.5246417336595596,0.7104851330203443,0.6778149386845039,0.5705024311183144,0.1228813559322034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025329280648429,0.0048880911091504,0.0072777101096224,0.0091356218116781,0.0113136903792935,0.0137721684034674,0.0161240974176967,0.0181896173133291,0.020318427699324,0.0227661426596343,0.0247359245205619,0.0269798395793322,0.0290314284244637,0.0312960501231438,0.0334227910817506,0.0354495549421579,0.0376688209462258,0.0397588736369201,0.0415813170016532,0.0434832444148049,0.0579716198014012,0.0715399671345286,0.0858974224478877,0.0993372606774668,0.111596220366152,0.126855728968405,0.138092004753013,0.1484547931210625,0.1584007178183449,0.1687597190197866,0.1809380216466533,0.19179164232076,0.2029389051436278,0.2122716832549491,0.2214824922420054,0.2307743428995492,0.2392036582645549,0.2470585591153764,0.2541819295281082,0.2604715037766079,0.2663022121541342,0.271932592410803,0.2770958968901502,0.2812919302281004,0.2858270393666367,0.2903615348596495,0.2936221871792946,0.2963594704684317,0.2998613612511175,0.3034856720671275,0.3010974213963509,0.2983765473747986,0.2957690898328494,0.2924681109536343,0.2908299020409376,0.287275900607805,0.2836153372197734,0.2829654133368269,0.2827104792713033,0.2821133580176588,0.2829260997177095,0.2835826787194568,0.2839904470607952,0.2846157285286359,0.2853122970730417,0.2866266944734098,0.2875966118130222,0.2913373429480114,0.2963639557351133,0.3007441009112251,0.3044391669711362,0.3052148874906686,0.3079495268138801,0.3129537638517386,0.3217570865402666,0.3251926496739775,0.3295420078859569,0.3272361809045226,0.3263530051672559,0.3260128739113972,0.0,2.722464185568161,52.41522186125694,161.34779075737123,200.8763113698504,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95776,47584,453.26595389241567,4915,50.12738055462746,3898,40.07266956231207,1473,14.951553625125293,77.38153749659537,79.72186248223588,63.350937847410606,65.08238268388988,77.18428307030744,79.53095122081353,63.2755843232234,65.01231007685091,0.1972544262879267,190.9112614223432,0.0753535241872072,70.07260703896634,241.13144,168.91724927577195,251766.03742064815,176366.99097453634,481.65422,320.6918199485134,502276.3531573672,334228.626631225,466.33335,227.47834320613103,483282.2627798196,234731.77448792596,2211.06596,1053.2945707356328,2273575.4677581023,1065325.9669535095,887.12932,407.3351811735308,910883.9479619112,409929.4929559909,1425.46118,616.3352405988425,1447846.5795188774,609328.7030348071,0.38053,100000,0,1096052,11443.910791847646,0,0.0,0,0.0,41417,431.778316070832,0,0.0,42133,436.25751754092886,1121169,0,40251,0,0,9629,0,0,94,0.981456732375543,0,0.0,0,0.0,0,0.0,0.04915,0.1291619583212887,0.2996948118006103,0.01473,0.360390243902439,0.639609756097561,23.38493228447728,3.995576193662108,0.3273473576192919,0.2791174961518727,0.2006157003591585,0.1929194458696767,11.310080726612092,6.232591371668628,15.83138273667531,11560.436764926237,44.851694338237856,13.29685563906765,14.46579789662263,8.786564816927797,8.302475985619779,0.594920472036942,0.8115808823529411,0.6849529780564263,0.5971867007672634,0.1263297872340425,0.7557446808510638,0.90929203539823,0.8440111420612814,0.7708333333333334,0.1511627906976744,0.5255233198677929,0.7421383647798742,0.6226826608505998,0.5406779661016949,0.1189655172413793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025319532500151,0.004906035234253,0.0071019844973824,0.0091100210231254,0.0112145921874046,0.0133249183098018,0.0154421657764912,0.0176262260280264,0.0198246438717325,0.0220291812470583,0.0244194864017379,0.026636693970561,0.0286451639436967,0.0306833743474634,0.0324091265420637,0.0344895281196077,0.0367258239768199,0.0386860027573624,0.0406910307286364,0.0426362642511322,0.0572200828611085,0.0710483103408603,0.0846988520207579,0.0974233412496584,0.1099320301385742,0.1251915496232417,0.1362971598134802,0.1467408061069351,0.1572471346551981,0.1664915966386554,0.1782765487916464,0.1908150904213896,0.2017260681949109,0.2108196721311475,0.2197544716520361,0.2286954307414665,0.2368605934896791,0.2450422699883083,0.2531641262928688,0.2606949577235958,0.2663390379278446,0.2718974263073003,0.2774407190586009,0.2827141129563333,0.2864615571333212,0.2909363922804253,0.2948839649271814,0.2981448538754765,0.3006257110352673,0.3041393933806582,0.302067093167034,0.2986570730233708,0.2959238213120288,0.292861676957701,0.2905255036942524,0.2867617854633222,0.2833262367727996,0.2829513713062938,0.2837156391666808,0.2846974457283845,0.284934111200164,0.2851888276947286,0.2856427901157335,0.2873857811455315,0.288723134667336,0.2901996370235934,0.2913978494623656,0.2943210491884988,0.2991696487509988,0.3065498408706927,0.3100743745774171,0.3155263157894737,0.3205705705705706,0.3226856407539172,0.325981308411215,0.3332158797275076,0.3388754534461911,0.341185865442204,0.3414434117003827,0.3474962063732928,0.0,2.360910449351755,50.74754824212675,147.7018128452251,195.3605445373012,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95857,47757,454.1243727635958,4895,49.897242767872974,3925,40.35177399668256,1476,15.064105907758432,77.37299817448195,79.67564284383144,63.35320242165369,65.05774333813036,77.18692275277797,79.4917098474167,63.28334184369072,64.99089928936027,0.1860754217039755,183.9329964147396,0.0698605779629772,66.84404877009342,240.52688,168.49296465861786,250922.60346140605,175775.336864932,482.64492,321.3687747418726,502855.3887561681,334609.8282862256,458.70077,223.6038473515514,474834.0444620633,230401.5616922281,2238.3196,1047.7352868935895,2302989.7034123745,1061004.6855816336,909.7551,408.39072118786805,935847.4915759936,412876.42779740464,1430.75208,602.5310764711188,1461902.8552948665,602170.2698740774,0.38122,100000,0,1093304,11405.572884609366,0,0.0,0,0.0,41584,433.197366911128,0,0.0,41524,429.4209082278811,1123422,0,40331,0,0,9486,0,0,77,0.792847679355707,0,0.0,0,0.0,0,0.0,0.04895,0.1284035465085777,0.301532175689479,0.01476,0.3486274509803921,0.6513725490196078,23.208270627224927,4.094309978890258,0.3156687898089172,0.276687898089172,0.2094267515923566,0.1982165605095541,11.54900623125234,6.194461796618258,15.608503943723086,11580.156723346206,44.821092852787885,13.302543954340576,14.087984778801978,9.036031569513792,8.394532550131547,0.5887898089171975,0.8130755064456722,0.6981436642453591,0.5742092457420924,0.1169665809768637,0.7670995670995671,0.9364035087719298,0.8607954545454546,0.7150259067357513,0.1168831168831168,0.5144404332129964,0.7238095238095238,0.6335963923337091,0.5310015898251192,0.1169871794871794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.004439174191979,0.0068977409898258,0.0090571248705399,0.0112132240814915,0.0134873778501628,0.0156758023911204,0.0178285317739746,0.0198939398583821,0.0220701086622874,0.0244557143588955,0.0267685835941107,0.0289305461347146,0.0308495198097767,0.032866318209466,0.0349991221819458,0.0369569490859052,0.0389426016310711,0.0409674337459499,0.043125871361092,0.0578912245578912,0.0717024900471259,0.0848723562501964,0.0974441901001743,0.1098649986310313,0.1251795673483184,0.1363467794059993,0.1467965004411655,0.1573386270491803,0.1671238454449992,0.1790691417810062,0.1902198586159932,0.2007173913043478,0.2104877595425272,0.2191681338028169,0.2282603880570567,0.2371544588474152,0.2453933898800818,0.2526115213174997,0.2598079058532621,0.2665186778120773,0.2725784383660964,0.2776916797785375,0.2827857074432416,0.2871667940644754,0.2906029198158497,0.2936291553065359,0.2969349632754721,0.3003362213888529,0.3037081954679075,0.3014820592823713,0.2990997182324239,0.2969792517102559,0.2946254565402549,0.2917432825197224,0.2881759853345554,0.2846020214782059,0.2858265010555255,0.2862516168561508,0.2868454297966228,0.2882765306883436,0.288455866449063,0.2892911450413481,0.2906091088757133,0.2915086916088418,0.2933860792222567,0.2951943783293664,0.2987938253859133,0.30264029855952,0.3073747936158503,0.3128930817610063,0.3152888001261365,0.3170487911538702,0.319227857683573,0.3244002998500749,0.3302945301542777,0.3309057806099226,0.3371059013742926,0.3402911288107663,0.354875283446712,0.0,2.290959516303186,50.16052915789107,145.1657319315252,201.45296898247332,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95802,47376,452.45401974906576,4942,50.510427757249325,3941,40.6672094528298,1489,15.260641740255943,77.39816222968327,79.72859683952771,63.35848721039546,65.07989037598617,77.21042736601159,79.5422554180073,63.2874321086224,65.01145470769329,0.1877348636716789,186.34142152041025,0.0710551017730551,68.43566829287795,241.3279,169.06430274463625,251902.5490073276,176472.41389175202,484.31117,322.0620599949139,505005.60531095386,335652.92761483643,462.49244,225.292108476542,480046.3664641657,233056.46378320132,2252.98644,1066.9349626481614,2325145.320556982,1087494.4926099794,917.98915,420.6174557747908,942875.0443623308,423935.84845436,1459.97524,623.0367216827593,1496175.8418404628,625530.985968131,0.37912,100000,0,1096945,11450.115863969437,0,0.0,0,0.0,41623,433.9470992254859,0,0.0,41907,434.75084027473326,1120108,0,40188,0,0,9338,0,0,94,0.9811903718085216,0,0.0,1,0.0104381954447715,0,0.0,0.04942,0.130354505169867,0.301295022258195,0.01489,0.3620622568093385,0.6379377431906614,23.154482609437157,4.031735352455618,0.3006851053032225,0.2821618878457244,0.2009642222786095,0.2161887845724435,11.1965918278881,5.933204136193368,15.871500431448174,11467.16937534391,45.36033699190581,13.66616322797718,13.571379689475426,8.71792880767855,9.40486526677466,0.5874143618370972,0.814748201438849,0.7308016877637131,0.5492424242424242,0.1267605633802817,0.7570093457943925,0.9365079365079364,0.8918128654970761,0.7128205128205128,0.1708542713567839,0.5151953690303908,0.7347242921013413,0.6654804270462633,0.4958123953098827,0.113323124042879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0044085454840278,0.0064622813780789,0.0084795677959216,0.0107253596299496,0.0128137276853868,0.0149182248942782,0.0170693384483532,0.0189826213998917,0.0209228565582156,0.0229487035007017,0.0250177012036818,0.0268123240087969,0.0287769784172661,0.030732909265235,0.0330692885248949,0.0351105869695653,0.0373396654880287,0.0393244998700961,0.0413724877642403,0.0560100166944908,0.070320752151769,0.083627748015977,0.0965402724062552,0.1095286788037233,0.1252418050549148,0.1367560344461884,0.1475692412457572,0.1570055531824006,0.1658214412076895,0.1778237270612561,0.189342648871969,0.1997870560498897,0.2094585736759308,0.218628420705572,0.2286074660883804,0.236841225067731,0.2447127871285458,0.2528353672367645,0.258744060907894,0.2652072907155488,0.2714769806029446,0.2770843439063923,0.2818795965790671,0.285506261528007,0.2894837240785182,0.2920493308842823,0.2963725041914342,0.2988074604858111,0.3020672753863789,0.2999489013796627,0.2971736980883322,0.2940481548154815,0.2907665480119327,0.287593790235456,0.2846858938185367,0.2803109135055024,0.2800934625251221,0.2810245064669843,0.281642589334897,0.2819447291429849,0.2839766173952408,0.2855952157696235,0.2864309338305476,0.2863163408652587,0.2876269740753185,0.2874145353253988,0.2925700441075977,0.2952219610012446,0.2995233257794795,0.3040388594045156,0.3100783289817232,0.3133251079580506,0.3136476054860226,0.3129056183942147,0.3178823529411764,0.3224158653846153,0.3203748006379585,0.3332428765264586,0.3300861745972274,0.0,1.6853638794761416,51.80495432551027,153.58374568856314,192.85685302326272,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95887,47801,455.2546226287192,5053,51.63369382710899,3995,41.18389354135597,1535,15.726845140634287,77.3584022892406,79.64057693173659,63.35300198276878,65.04172347630318,77.16142298549177,79.44354099686305,63.2798127761244,64.9702188870206,0.196979303748833,197.03593487354,0.0731892066443862,71.50458928258274,241.17324,168.8873922441009,251518.1828610761,176131.68859605672,480.53466,320.3840968259237,500654.8645801829,333634.76469795045,459.71487,224.8045211754645,476087.9577002096,231894.2906714973,2304.64624,1080.6868147357652,2378050.03806564,1101589.8033474456,920.96181,417.804574782433,949797.6680884792,425057.88561789633,1495.42728,634.4177021004041,1533293.7937363773,640659.9918751288,0.38059,100000,0,1096242,11432.644675503458,0,0.0,0,0.0,41394,431.184623567324,0,0.0,41647,430.9447578921021,1119927,0,40238,0,0,9382,0,0,73,0.7613127952694317,0,0.0,0,0.0,0,0.0,0.05053,0.1327675451273023,0.3037799327132396,0.01535,0.3575070821529745,0.6424929178470254,23.57725244296739,4.068532233385434,0.3086357947434293,0.2785982478097622,0.2005006257822278,0.2122653316645807,11.323252560291555,6.132018151455648,16.56916929381314,11543.628641707031,45.812879783168526,13.595816217150515,13.92688337485909,8.972079200058918,9.318100991100003,0.5669586983729662,0.8059299191374663,0.6804541768045418,0.5443196004993758,0.1096698113207547,0.7506361323155216,0.9328859060402684,0.8609467455621301,0.7163461538461539,0.1505376344086021,0.4900568181818182,0.7207207207207207,0.6122905027932961,0.4839797639123103,0.0981873111782477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136297826241,0.0040530544831848,0.0062683206377864,0.0083765699722811,0.0106017483228298,0.0125077601034001,0.0145177065080076,0.0169310010709368,0.0194398782965602,0.0215908974739058,0.0237288482602598,0.0259375448524738,0.0280174184537014,0.030283703993252,0.032471815165193,0.0345571685216924,0.0365983593838896,0.0384611398426731,0.0405636962188321,0.0425821889305035,0.057095499702899,0.0709494755317815,0.0842574848418208,0.0971796379520349,0.1093626568079122,0.1250871448188444,0.1362721203772385,0.1475625963531976,0.1583654390027854,0.1671471902766315,0.1793165816161746,0.1903361162780637,0.2008738370576471,0.2108001180340769,0.2199199771363246,0.2293667300969155,0.2387620406707099,0.2473390205797394,0.2534730491386838,0.2605797533013411,0.2668324849606663,0.2727942552395209,0.2783632101162708,0.2821481241681954,0.2858514413494725,0.2904896363793294,0.2936889556724267,0.2970697976492162,0.300642064984759,0.3031003858962837,0.3002965359212832,0.297568564819914,0.2952637214020061,0.2929776133423901,0.2902137400041618,0.2863247863247863,0.2831655268490375,0.2837704756589961,0.2846581984566004,0.2844193542642423,0.2851458142619612,0.285967678360268,0.2873142904904194,0.2876938157191231,0.2895071046893346,0.2885636575573112,0.2902129587675577,0.2948865940785574,0.2996797103467483,0.304414602449494,0.3060282404055032,0.3086147049542442,0.3095059412132583,0.3148021047815145,0.3205321758822419,0.3208830548926014,0.3273514851485148,0.3308331644030002,0.3279584585952446,0.3262759924385633,0.0,1.8673938836996005,51.65737492267092,151.5702698870698,201.9538862632779,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95731,47391,451.8285612810897,4956,50.54788939841849,3962,40.7704923170133,1457,14.854122489057882,77.38965647392791,79.75705348475286,63.34469261111818,65.09422499005804,77.19495678369262,79.56482588258963,63.26960375463124,65.02231991978056,0.1946996902352964,192.2276021632285,0.0750888564869427,71.90507027748083,242.89166,170.03330867470464,253723.09910060483,177615.7239292441,481.81252,320.77703961334066,502686.9039287169,334470.25479034026,461.68862,225.4190178417848,477918.2709884991,232190.99763877448,2249.56772,1069.595416103332,2317087.1713447054,1084495.530291475,900.0171,414.7157499128797,922625.3042379168,415682.5687738343,1418.835,618.2938943843375,1448394.229664372,616962.1850321916,0.37837,100000,0,1104053,11532.868140936584,0,0.0,0,0.0,41524,433.109442082502,0,0.0,41819,432.5662533557573,1113470,0,39992,0,0,9551,0,0,85,0.8879046494865822,0,0.0,1,0.0104459370527833,0,0.0,0.04956,0.1309829003356503,0.2939870863599677,0.01457,0.3503381642512077,0.6496618357487922,23.033076552666675,4.005121104482604,0.3197879858657244,0.2847046945986875,0.1968702675416456,0.1986370519939424,11.014515127439026,5.837826167277821,15.677967785850011,11438.964152713195,45.47158769400443,13.919306279453018,14.403156140597506,8.531926636175676,8.617198637778225,0.5906108026249369,0.8182624113475178,0.7032359905288083,0.5653846153846154,0.1080050825921219,0.7410130718954249,0.9054621848739496,0.8559782608695652,0.7040816326530612,0.125,0.5233747260774287,0.754601226993865,0.6407119021134594,0.5188356164383562,0.1028192371475953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701482862004,0.0046835558529241,0.0067384487360334,0.0088282504012841,0.0111894371713102,0.0134006761435379,0.0153750471549025,0.0175784240667204,0.0196050372066399,0.0218337035406835,0.0238524775005637,0.0259532267006139,0.0281678557476818,0.030253104598719,0.0323252743625711,0.0343427035965274,0.0363244765671919,0.0383131030189853,0.040283941507218,0.0424789272429853,0.0565653612854055,0.0705134914487869,0.0837058021193998,0.0961914781693845,0.108415178335953,0.1240374851920798,0.1355500620669899,0.1455360088545491,0.1560477583886883,0.1657962186451038,0.1776215191781707,0.1890728118576219,0.1990060571788988,0.2087311221197904,0.2172042300793415,0.2265785072709351,0.2354338612536248,0.2431663894258868,0.2507882142128065,0.2581793213938319,0.2650977217532092,0.2698219733719856,0.2751932487057655,0.2796490472086565,0.2834294035556094,0.2885124404446797,0.2923886680169029,0.2954117946110828,0.2977928341457738,0.3006732276721605,0.297471245834677,0.2948446812601279,0.2926181475808378,0.2894349956759873,0.287086367134316,0.2832499542431822,0.2801997825710189,0.2801376790316792,0.280532637606519,0.2804489449086532,0.2804436942367976,0.2809092154981694,0.282001825120292,0.283643204957946,0.2836783250059481,0.2856663483131566,0.2865035516969219,0.2906291875720652,0.2956533863153125,0.2990798151731764,0.3047303732595582,0.3090706674442029,0.3112292774476071,0.3163127990430622,0.320752984389348,0.3241547577553154,0.3240532854363119,0.3214920071047957,0.3218976145805414,0.3347091932457786,0.0,2.367569670679364,53.1156999945224,142.1577309400899,201.43879589570565,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95756,47919,456.5144742888174,4973,50.59735160198839,3936,40.46743807176574,1508,15.34107523288358,77.34687979821054,79.7042272099706,63.33382307926016,65.08042119565359,77.15229635662584,79.51400325783916,63.26062879564387,65.0113739384758,0.1945834415846974,190.22395213143284,0.0731942836162886,69.04725717778604,241.73028,169.4168993582269,252443.7737583024,176925.4193928409,483.94873,322.1920157732379,504752.10952838464,335828.65137448604,466.09331,228.2435160244189,482195.00605706166,234956.26847118535,2252.98148,1070.501439103892,2319745.6034086635,1084991.4710526294,922.41208,424.8889682311639,949595.1376415056,430192.2278348857,1467.42676,628.2807011862435,1495940.9749780693,626055.125911803,0.38084,100000,0,1098774,11474.716989013745,0,0.0,0,0.0,41683,434.6255064956765,0,0.0,42080,434.9074731609508,1117386,0,40044,0,0,9510,0,0,75,0.7832407368728852,0,0.0,0,0.0,0,0.0,0.04973,0.1305797710324545,0.3032374824049869,0.01508,0.3511893250821891,0.6488106749178109,23.202307072599943,4.100720284994627,0.3211382113821138,0.2761686991869919,0.1951219512195122,0.2075711382113821,11.52418220274906,6.237841984605849,16.224331330474957,11533.402674320836,45.281160087314845,13.245589716774964,14.460553919577553,8.545474510922594,9.029541940039731,0.586890243902439,0.796688132474701,0.7009493670886076,0.6028645833333334,0.1162790697674418,0.7521008403361344,0.9107551487414188,0.8390501319261213,0.7878787878787878,0.1306818181818181,0.5152949745083758,0.72,0.6418079096045197,0.5385964912280702,0.1123244929797191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901382189615,0.0044517908570964,0.0068121827411167,0.0089840137402563,0.0113331163017823,0.0135740616280727,0.0157406463451931,0.0180073499387505,0.0203737400584735,0.0224331408444935,0.0243602362204724,0.0266551667488089,0.0287638831756478,0.0307291344747306,0.0329225751852539,0.0351265299371485,0.037217297655538,0.0390684164116396,0.0412582251374754,0.043059012193979,0.0580333378563153,0.0723132283102157,0.0857352555701179,0.0982920805086972,0.1105947073887887,0.1260923317518518,0.1372395226082716,0.14751065797727,0.1572906666666666,0.1659579937236925,0.1782061072807649,0.1892309520979436,0.1997392721347094,0.2093785150320516,0.2183599929688873,0.2272863070539419,0.2362235454160255,0.2444579342596339,0.2520365790011118,0.259249081103363,0.2654706549147523,0.2712611685456331,0.2769878634460243,0.2814034835525528,0.2862758419877705,0.29061931231246,0.2942683917744859,0.297563082865347,0.3004887256930079,0.3033635357951851,0.3005455669327313,0.2969054882238162,0.2942863166772085,0.2919662799913538,0.289888139862212,0.2869142892052049,0.2834819666956041,0.282689504969951,0.2827135044890032,0.2846928248728256,0.2852449223416965,0.2866967505468303,0.2866537233043151,0.2861922073287686,0.2874373546267654,0.28700473785599,0.2889129135964038,0.2917322091486818,0.2962898083593175,0.3001822648387352,0.3017880704308658,0.3059389708604368,0.3089471702848538,0.3107199516506761,0.3151942152591082,0.3184161199625117,0.3251477944520236,0.3264479546375051,0.3282208588957055,0.3313656040928768,0.0,2.4029990609115908,51.59699101214289,146.853854374887,198.70445149016257,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95756,47574,452.27453109987886,4984,50.941977526212455,3975,40.958268933539415,1492,15.226199924808888,77.36211040614715,79.72372721325958,63.32787542470121,65.0753670218587,77.16834166593469,79.53414184562578,63.253986958733,65.00574073810702,0.1937687402124623,189.5853676337964,0.073888465968217,69.62628375167412,242.00506,169.41397471969773,252730.96202848907,176922.5685280272,479.66008,319.1613267385731,500384.0177116838,332771.80201613787,461.50075,225.04900137226096,478717.2292075692,232464.23309693244,2270.31776,1070.0130250256454,2340877.8562178877,1087374.4360934512,913.87242,410.68795829112497,940404.1522202264,414918.06079109904,1447.72348,616.8207566038624,1479448.1807928483,614780.2534803506,0.38035,100000,0,1100023,11487.771001294956,0,0.0,0,0.0,41286,430.5944275032374,0,0.0,41745,432.7352855173566,1117886,0,40123,0,0,9486,0,0,75,0.7832407368728852,0,0.0,1,0.0104432098249718,0,0.0,0.04984,0.1310372025765742,0.2993579454253611,0.01492,0.3530888030888031,0.6469111969111969,23.03580274675054,4.150333289300112,0.310440251572327,0.2794968553459119,0.2085534591194968,0.2015094339622641,11.29861864955025,6.046019484166793,15.723915379356464,11559.921000552691,45.35270042334092,13.643353629979346,14.069233367020592,9.061493804745265,8.578619621595712,0.5763522012578617,0.7893789378937894,0.6920583468395461,0.5585042219541616,0.1210986267166042,0.7601351351351351,0.9112554112554112,0.8622589531680441,0.7305699481865285,0.1506024096385542,0.4983876746685776,0.7026194144838213,0.6211251435132032,0.5062893081761006,0.1133858267716535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795659706391,0.0046849331737887,0.0070551213074814,0.0091752441143298,0.0114032856924876,0.0134130443638733,0.0154895682499541,0.017724413950829,0.019897547059846,0.0222106168591791,0.0244380178849782,0.0264395915935657,0.0288577278011543,0.030616240725474,0.0325840145322434,0.0350178863133516,0.0369887128507818,0.0391666580206052,0.0415471290175044,0.0436539763553981,0.0585908141962421,0.0722909212646203,0.0855015468512401,0.0990018826449584,0.1106716032193074,0.1256081567034733,0.1369403776787608,0.1475645461804631,0.1578261241237818,0.1666344937048238,0.1786129782833505,0.1897081745756841,0.200496180714239,0.210376594673844,0.2186911772799823,0.2278081265859252,0.2359733762172786,0.2442361572131018,0.2516819259612221,0.2591706082435264,0.2653162798773077,0.2712651476161512,0.2770191920865182,0.2813713737712778,0.2855772849217621,0.2889649989528022,0.293415570929927,0.2968223490965502,0.3008008072758322,0.3040210942649967,0.3013510603940144,0.2981691728289853,0.2953852208993408,0.29232699323691,0.2913018356371394,0.2878697637482628,0.2856060366873993,0.2851115326748217,0.2854689811115456,0.2864116446258986,0.2865681090340359,0.2872133848537748,0.2886495029738385,0.2885810690818682,0.2894215389022847,0.2907590417550577,0.2927208041563135,0.2976094129365623,0.3029419927837913,0.3055544667006389,0.3081416247304098,0.3122060821402445,0.3177105965609286,0.3215059385971465,0.3243592107689471,0.3278362573099415,0.3336344474555857,0.3380895759017043,0.3375504710632571,0.346743295019157,0.0,2.1808236739581783,51.42064891610636,142.80619813116903,207.2841145508963,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95768,47549,453.5544231893743,4825,49.36930916381255,3852,39.7105504970345,1482,15.140756829003426,77.32840490063373,79.68777960776184,63.31625382636724,65.0643388404995,77.14678163486026,79.50821459928622,63.24895445930841,64.9995858974759,0.1816232657734673,179.5650084756204,0.0672993670588297,64.75294302360624,242.24838,169.67532973407836,252952.9070253112,177172.8514055618,478.36689,318.6272375914824,499009.9302480996,332211.6481408011,458.76911,223.5544393565814,475527.6083869351,230709.506027364,2195.96488,1032.1829961495578,2266129.6048784563,1050945.1133463762,868.98392,391.9367830424448,897161.515328711,399053.7552986859,1437.91158,602.127934919547,1471678.97418762,605063.2473926524,0.37921,100000,0,1101129,11497.859410241415,0,0.0,0,0.0,41164,429.2978865591847,0,0.0,41469,429.4962826831509,1116637,0,40026,0,0,9543,0,0,83,0.8666778046946788,0,0.0,0,0.0,0,0.0,0.04825,0.1272382057435194,0.3071502590673575,0.01482,0.35192536720921,0.64807463279079,23.326000738300973,4.054037408635901,0.3177570093457944,0.2827102803738318,0.2030114226375908,0.1965212876427829,11.511904523823397,6.335056653373517,15.757166483026332,11511.238158846954,44.22217857487573,13.361556669259553,13.950448235053486,8.60543818094339,8.304735489619299,0.5955347871235722,0.820018365472911,0.7156862745098039,0.5652173913043478,0.1096433289299868,0.7605633802816901,0.9244444444444444,0.8411764705882353,0.7704918032786885,0.1288343558282208,0.5265095729013255,0.7464788732394366,0.667420814479638,0.5025041736227045,0.1043771043771043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218963752622,0.0049392482606138,0.0071985541972952,0.0094920628468058,0.0116579520253911,0.013689700130378,0.0158467939304943,0.0179176706007269,0.0201496657056983,0.0221712694740721,0.0242222336118087,0.0263363246195864,0.0283425374592498,0.0302718180600904,0.0322064681237487,0.0342026109336723,0.0361871047210922,0.0382976075661885,0.0402244505637242,0.0421270790156114,0.0569141330327415,0.0710109915393384,0.0842979365878208,0.0972125875007882,0.1097742142804463,0.1244253268371046,0.1362947096062691,0.1475486596643574,0.1577789407354402,0.166929370261953,0.1790572194759458,0.1906683398602306,0.2008397328518285,0.2098121542128627,0.2181946232654363,0.2280750321123267,0.2357226529815362,0.2439669235529054,0.2510809737275152,0.2583586277990951,0.2641411220358589,0.2698535171091549,0.2743872853575697,0.2784099766173032,0.2832432432432432,0.2879691466029227,0.2920477037556686,0.2958616036763115,0.299650168437419,0.3028976141174608,0.3000915528987263,0.2983365411053065,0.2955735766176719,0.2933217943170345,0.2902445539265151,0.287501912192137,0.2838489384909657,0.284507781367356,0.2849300121050926,0.2851085058618109,0.286212947061898,0.2872518347992051,0.2885151729592474,0.2879499565904588,0.2883626360483196,0.2900619026651816,0.2908287543193791,0.2929088187601347,0.2958368084514873,0.3000982897582072,0.3051488805802063,0.3105307233329844,0.3145086383057774,0.3172940208037117,0.3233416597280044,0.3269723062601815,0.3285735758304524,0.3257361839451391,0.3270285087719298,0.3238834951456311,0.0,1.9508274529997405,49.748372391886754,145.8695441788686,195.3641986604667,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95739,47779,454.6423087769874,5041,51.61950720187176,4033,41.63402584108879,1496,15.302019030906944,77.31464774318667,79.67973368995474,63.30648041847581,65.05572190814867,77.1266614194096,79.49447307137422,63.234695478558784,64.98733710243768,0.1879863237770678,185.26061858052856,0.0717849399170234,68.38480571099126,241.78968,169.400993338345,252550.87268511264,176940.424840812,482.68556,321.24628292757825,503700.5400098184,335076.1789109749,468.05772,228.28906545830333,485809.7327108075,236125.8313885532,2296.289,1087.993147405815,2370276.1466069208,1108251.493788252,928.05452,421.5348792895895,960872.9357941904,431838.51920842536,1463.61564,625.8507519163338,1498144.7059192178,626832.4544497906,0.38023,100000,0,1099044,11479.585122050574,0,0.0,0,0.0,41582,433.825295856443,0,0.0,42338,439.1627236549368,1112564,0,39932,0,0,9622,0,0,80,0.8356051347935533,0,0.0,1,0.0104450641849194,0,0.0,0.05041,0.1325776503695132,0.2967665145804404,0.01496,0.3637228778073848,0.6362771221926151,23.111503642072083,4.043847388564447,0.3101909248698239,0.2851475328539549,0.1978675923630052,0.2067939499132159,11.238064091275795,5.8527525461000005,16.08036415442861,11582.168777412906,46.43805490643817,14.076778333342023,14.413902048394975,8.771231532551084,9.17614299215009,0.5861641457971734,0.802608695652174,0.709832134292566,0.5601503759398496,0.1270983213429256,0.7566909975669099,0.929936305732484,0.8567708333333334,0.7311827956989247,0.15625,0.5110714285714286,0.7142857142857143,0.6447520184544406,0.5081699346405228,0.1183800623052959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044205168760328,0.0067906372439554,0.009155573620567,0.01151635383285,0.0135396715432576,0.0158027361483763,0.0179391884993159,0.0203524625355222,0.0223782809876745,0.0243404796325346,0.0263374063045487,0.0283595292955892,0.0304382322332017,0.0324738330683953,0.0346428202212343,0.0368556220615951,0.0391528132328829,0.0413022907589763,0.0436005625879043,0.0574471417384494,0.0711878244850108,0.0850206676598334,0.0981637675367562,0.1113724084111952,0.1273788995969491,0.1382007684306608,0.1482005962521294,0.1581794082435437,0.1672890376856382,0.1797938188798067,0.1907640965630823,0.20107635824863,0.2101848706343901,0.2180082246452708,0.2279348091569154,0.2366163790693253,0.2448155707664723,0.2532779894240063,0.2595650376630534,0.265702163177297,0.2720893179315354,0.2764182359005961,0.2807228048282978,0.285115227537923,0.2902768358098526,0.294487814642446,0.2980444014953081,0.302067841762903,0.3046730941467783,0.302350901246018,0.2988630434185593,0.2966500456492731,0.2938828445853447,0.2916963332146671,0.2886273310914093,0.2862108739275387,0.2866763891392334,0.287206844832288,0.2869622460235562,0.2877096015236957,0.2879235037185692,0.2887792899654555,0.2900490555148609,0.2909455491633048,0.2924218527807224,0.2928314498541365,0.2969914263445051,0.3012236668288952,0.3056331929299689,0.3110528219971056,0.3131952132426591,0.3173626373626373,0.3177711986639338,0.3224990633195954,0.3274950041142588,0.3300425273390036,0.3321813376702582,0.3366201040810737,0.3430544896392939,0.0,1.94750556698172,54.19232294754658,150.64992161653663,200.4935128905088,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95810,48005,457.1756601607348,4961,50.41227429287131,3941,40.4968166162196,1484,15.102807640121071,77.3504688262772,79.68408302221627,63.33176974345843,65.06062678898073,77.15375545558777,79.490098475987,63.25685222797279,64.98942495030501,0.196713370689423,193.98454622927372,0.0749175154856445,71.20183867571939,241.42272,169.23872488920804,251980.711825488,176639.938304152,486.15239,323.79614953538373,506795.35539087775,337338.8889838052,469.8963,229.36417515639053,486575.9941550986,236423.38269791604,2244.07804,1068.520868093515,2309086.901158543,1082119.8080508448,913.90032,421.1729883748051,937382.3922346312,423106.91824945697,1438.17626,624.2488998951715,1466196.367811293,620444.0151118371,0.38291,100000,0,1097376,11453.66871934036,0,0.0,0,0.0,41844,436.1027032668824,0,0.0,42573,440.4341926729986,1113191,0,40014,0,0,9436,0,0,94,0.9811084437950108,0,0.0,0,0.0,0,0.0,0.04961,0.1295604711289859,0.2991332392662769,0.01484,0.3585564610011641,0.6414435389988359,23.24027392445446,3.966181753357439,0.3022075615326059,0.292565338746511,0.2014717076884039,0.203755392032479,11.312323512259908,6.300566793851293,16.00501335551198,11577.26657242331,45.38895312064901,14.32212187028947,13.350402648623326,9.009455605567394,8.706972996168826,0.5922354732301446,0.8308759757155247,0.6994122586062133,0.5768261964735516,0.1058530510585305,0.7749796913078798,0.9274509803921568,0.896969696969697,0.7155963302752294,0.1676300578034682,0.5092250922509225,0.7542768273716952,0.6236933797909407,0.5243055555555556,0.0888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629596612435,0.0048467396043519,0.0071551811630975,0.0094083699948182,0.0113818988140041,0.0133527530504573,0.0156646779868441,0.017819396080754,0.0199584879809412,0.0219071505348825,0.0242001640689089,0.0263293011028732,0.0283736810711861,0.0305364738354429,0.0326629537953795,0.0346658951653733,0.0366965829218554,0.0390407833049827,0.041132334296344,0.0429631788796468,0.0580834950240971,0.0727152968728763,0.0864649047429421,0.0989609052417024,0.1113862168512216,0.1273355596888738,0.1383884547276448,0.1489952448326117,0.1588533603800779,0.1681241426611797,0.1794104669558011,0.1898372885020812,0.1996784111773845,0.2085742706295158,0.2176955321091833,0.2275678670360111,0.2356716334616887,0.2436842401395375,0.2514477120472351,0.2582518267402707,0.2638496783449808,0.2707587980825441,0.2767736746232642,0.2813428188176679,0.2867103137488309,0.2908653846153846,0.2953341929668623,0.2986047459008045,0.3024996762077451,0.3057773788624754,0.3026865349896257,0.3001858608109038,0.2967314736545506,0.2935508104828224,0.2915775718698028,0.2885754066004682,0.2849774543153232,0.2847208554746441,0.2863647215306436,0.2863228060169673,0.2863919913339061,0.2868311703657024,0.2875242647519255,0.2890017598966339,0.2903828645359145,0.2911389119601329,0.2932547997961148,0.2995564440557256,0.3033083124826244,0.3075802323291987,0.3109750607724858,0.3146538179532837,0.3180378764358895,0.3221315769777711,0.3223232510669883,0.3268536840879991,0.3291710546111027,0.3376288659793814,0.3403630539241858,0.347565543071161,0.0,2.531258559280306,53.16058603367757,144.41275695513573,196.09426568411303,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95714,47849,456.07748082830096,5121,52.44791775497838,4113,42.34490252209708,1542,15.734375326493511,77.30949638025908,79.67076952188663,63.31695901961641,65.0600929254689,77.11200347497233,79.47715347399705,63.24309181436831,64.99050455067736,0.1974929052867509,193.6160478895772,0.0738672052480993,69.58837479153601,242.70026,170.02906607796098,253568.19274087384,177642.83811977453,482.59831,320.6330019245189,503591.9719163341,334373.9807389921,473.06497,230.91888744920067,490433.06099421193,238320.35234336817,2338.31196,1113.0824128755387,2407405.729569342,1127311.3367694786,958.417,437.3633176947305,982519.5269239608,438133.4576913829,1498.3649,632.0746562162284,1528517.2702008064,627487.0580783325,0.38165,100000,0,1103183,11525.826942766991,0,0.0,0,0.0,41553,433.4893536995633,0,0.0,42753,442.9237102200305,1109624,0,39900,0,0,9512,0,0,85,0.8776145600434628,0,0.0,0,0.0,0,0.0,0.05121,0.1341805319009563,0.3011130638547158,0.01542,0.3724825898738942,0.6275174101261057,23.00946949073469,4.045937498347406,0.3172866520787746,0.2856795526379771,0.1964502796012643,0.2005835156819839,11.580185350668645,6.447431451089862,16.449012491887302,11579.984507608306,47.65367893651358,14.521424733064997,14.952798569552789,9.14502775388537,9.034427880010435,0.6010211524434719,0.8068085106382978,0.7233716475095785,0.5878712871287128,0.1272727272727272,0.7784911717495987,0.9087221095334684,0.9019073569482288,0.7373271889400922,0.1834319526627219,0.5238925706313219,0.7331378299120235,0.6535181236673774,0.5329949238578681,0.1128048780487804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153735530326,0.0042676992944611,0.0065437058680301,0.0086028276590558,0.0109388502007827,0.0133235620426069,0.0155327931508943,0.0177304602570253,0.0199092432852295,0.0217068702602572,0.0239034840455519,0.0262233813171242,0.0281748071979434,0.0301535482940794,0.0321772222394109,0.0343744511143025,0.0363995777359193,0.0384978376079899,0.0407845093698356,0.0428247010292095,0.0573412698412698,0.0716678180409889,0.085151464294705,0.0983458298718097,0.1107373349643565,0.1268508334038412,0.1386781542118051,0.14931823262052,0.1593322082416526,0.1687555617501688,0.1814646861771453,0.1916194888559335,0.201303505755881,0.2105067349462189,0.2200253206363186,0.2292294733108707,0.2378016774438525,0.2454753297068396,0.2534443396976477,0.2595555453680676,0.2651950968249742,0.2711491671345686,0.2761041205506694,0.2816767989256208,0.2865229961855244,0.2909135741585501,0.2940609911690391,0.2980902578978841,0.3012616253464936,0.304396634837619,0.3025925726297633,0.2991234226423922,0.2977245508982036,0.2957272609128846,0.2930601571901882,0.2892778390297684,0.2856848544397077,0.2857658959537572,0.2856874241465957,0.2861611052528105,0.2876232242587803,0.2884706720493944,0.2892331558425223,0.289201100695765,0.2889723767550514,0.2888339406559084,0.2887798196552905,0.2938943273092369,0.2975357042845141,0.300449668665194,0.3054713309499027,0.3090774673918783,0.3122222917579323,0.315346722243274,0.317781525201424,0.3193040206912767,0.3195500152021891,0.3256003256003256,0.3344262295081967,0.3358720487433358,0.0,2.436451440683832,54.18467055401381,158.7861008108024,204.10088512037987,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95738,47686,453.9367858112766,5028,51.36936221771919,3984,41.08086653157576,1484,15.145501263865969,77.40440741590693,79.76233473895178,63.3594678928421,65.09955893637249,77.21452136965002,79.57558101833169,63.28723174242027,65.03101679544878,0.189886046256916,186.75372062008933,0.0722361504218298,68.5421409237108,242.19778,169.5823188078303,252979.77814451943,177131.67060919417,483.43142,322.016886849163,504400.8961958679,335800.61924122385,462.16828,225.382010708432,479687.07305354194,232999.04345578203,2252.01748,1068.6506922097512,2324709.8539764774,1088662.73810791,900.63014,412.7343447109501,928832.8772274331,419217.264525005,1441.6112,617.0120773585642,1473984.4575821513,616198.5779358806,0.38137,100000,0,1100899,11499.080824750885,0,0.0,0,0.0,41706,435.0728028577994,0,0.0,41949,435.1041383776557,1115841,0,39973,0,0,9580,0,0,68,0.6998266101234619,0,0.0,1,0.0104451732854248,0,0.0,0.05028,0.1318404698848886,0.2951471758154336,0.01484,0.3588179218303146,0.6411820781696854,22.983594610589986,4.027643592684958,0.3180220883534136,0.2889056224899598,0.198293172690763,0.1947791164658634,11.4544627245487,6.165759153322661,15.75884117774518,11522.695505647014,45.80057457477886,14.200274298892406,14.436174966497235,8.696317869504435,8.46780743988477,0.5928714859437751,0.8053866203301477,0.7087608524072613,0.569620253164557,0.1121134020618556,0.7661157024793388,0.9111570247933884,0.8540540540540541,0.7659574468085106,0.1547619047619047,0.5173035328046143,0.7286356821589205,0.6488294314381271,0.5083056478405316,0.100328947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084633531442,0.004732708386116,0.0069186600929251,0.0092317066978114,0.0111943712952324,0.0135280944625407,0.0157146496815286,0.0179076150730079,0.0200057217590322,0.0220414428242517,0.0244129915651166,0.0265515790337975,0.0286621911977876,0.0308792023731048,0.0330286020884064,0.0351678795898114,0.0374267310121994,0.039533605120385,0.0414246074223418,0.0432654251551889,0.0584028481045697,0.0720272914682768,0.0848262985650751,0.097305310525375,0.1095568392646314,0.1247726407512372,0.1358726790450928,0.1467782462416421,0.1573791158308583,0.1661108549492263,0.1785806590566444,0.1900717353905413,0.2014029363784665,0.2111961513229827,0.2191883299046194,0.228139913412244,0.2362798585310885,0.2435744642576061,0.2510660980810235,0.2577720800329655,0.2647238944802006,0.2710400373526322,0.2763717064878647,0.2802842979155468,0.2845812951034048,0.287949883306719,0.2924354013231806,0.2965993125055494,0.3000167787400457,0.3031019978969506,0.3004075504075504,0.296631769348827,0.2933370739234114,0.2911002747450337,0.2891998935950108,0.2861450829284637,0.2824111263368457,0.2820265970465856,0.2823267814101911,0.2828739668688588,0.2844152940299619,0.2845334855253577,0.2869876707764078,0.2878774422735346,0.289327987781596,0.2910422651862204,0.2923927141487621,0.2966755898649069,0.3015635858234885,0.3053537059586001,0.3093716240547353,0.3131042454812947,0.3184221987183475,0.3186912373072583,0.317748356633645,0.3214659685863874,0.3222440647210041,0.3233007773569862,0.3298630136986301,0.3307271305707584,0.0,2.1116262604199645,52.84361625249776,146.47699953122574,202.49411315687436,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95757,47712,454.4315298098311,4982,50.983217937069874,3955,40.80119469072757,1490,15.299142621427151,77.33232137485312,79.69841621793901,63.31916690730778,65.07118457801401,77.14145731727096,79.50777667575596,63.24724550299185,65.00132190526114,0.1908640575821607,190.6395421830496,0.0719214043159297,69.86267275287616,241.45748,169.03964723912705,252156.47942186997,176529.80694792763,481.20548,320.10815389560594,502044.6233695709,333809.0624138245,459.73058,224.3088669949589,476648.1823783118,231646.8154346733,2264.1502,1065.6740862221905,2339429.9320154143,1087849.249895246,907.36219,411.9944296791001,936937.1847488956,419619.6410487997,1450.99476,619.0890083628445,1491159.6645676035,624781.0716299474,0.38092,100000,0,1097534,11461.658155539542,0,0.0,0,0.0,41314,430.9449961882682,0,0.0,41626,431.31050471506,1121209,0,40222,0,0,9405,0,0,75,0.7727894566454672,0,0.0,0,0.0,0,0.0,0.04982,0.1307886170324477,0.2990766760337214,0.0149,0.3595850941221667,0.6404149058778332,23.506917171837923,4.0020985958740525,0.3067003792667509,0.2831858407079646,0.2042983565107459,0.2058154235145385,11.064482385223382,5.969869211426063,15.966799713157227,11577.32903768987,45.39153722058808,13.78447472847306,13.707443860747263,8.947031629896916,8.95258700147084,0.5876106194690266,0.8214285714285714,0.7056883759274526,0.5655940594059405,0.1117936117936117,0.7686375321336761,0.9213709677419356,0.891640866873065,0.6988636363636364,0.1686046511627907,0.5118364418938307,0.7419871794871795,0.6382022471910113,0.5284810126582279,0.0965732087227414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.004777409244439,0.0068739338802696,0.0094723148223432,0.0119129974770082,0.0138242275445441,0.0161030431590111,0.0180195816190058,0.0202852614896988,0.022594185094185,0.024685536203061,0.0268053302671293,0.0288431876606683,0.0308148636401087,0.0327462936024018,0.0350472843780683,0.0372027045216869,0.0389870423587264,0.0407993598470283,0.042898206586265,0.0568395340097707,0.0709472891251124,0.0845228481231711,0.0978802599205097,0.1099595124625701,0.1251229547209324,0.1375322291425721,0.1486231891771067,0.1589503700618371,0.1684983648742829,0.1804885404101326,0.1917741516620498,0.20193625584684,0.2113188976377952,0.220277258224227,0.2297165633303808,0.238720546233488,0.246341106723814,0.2542120968016428,0.2616591286425831,0.2665556018325697,0.2721712180574235,0.2779308957995718,0.2826219767845805,0.2863473024814257,0.2897563499297874,0.2932209536433779,0.2965946632782719,0.3000724281538581,0.3033097923474228,0.3000322615334982,0.2971439561496298,0.2943590896951125,0.2905159988469299,0.288335556543649,0.2857710408899211,0.2829624709398871,0.2837470526591564,0.2838159730493075,0.2850097038975838,0.2854737314773237,0.2865319333701744,0.2869332441023925,0.2870531530325345,0.2887928965682745,0.291388665333991,0.2930785562632696,0.2964854028317253,0.3005756148613291,0.3052369274582707,0.3120224261880002,0.3176526616573182,0.3211995473406261,0.3212309558098992,0.3232482598607888,0.3273934311670161,0.3281928432400059,0.3298969072164948,0.3338714016680118,0.3334590720482837,0.0,1.9923674620272105,50.85178907951871,150.4510247835086,200.5037885695348,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95712,47764,454.6765295887663,4949,50.307171514543626,3949,40.53828151120027,1488,14.99289535272484,77.41699606751023,79.77081554154702,63.36600846061516,65.10085141788971,77.21964186971,79.58320876038619,63.289223894834,65.03159578495443,0.1973541978002231,187.60678116083795,0.0767845657811676,69.25563293528114,241.0738,168.87265100136537,251874.1641591441,176438.3264390728,484.62489,322.4794141782641,505609.8608324975,336200.0942183469,461.68416,225.34180638911675,478627.1000501504,232461.4752931365,2249.54688,1066.8937598353923,2308874.9164159144,1073237.6711753935,912.87452,419.7542873959675,930901.2976429288,415753.3142158156,1443.49616,627.0644105081461,1455502.1313941826,608950.6631006389,0.38234,100000,0,1095790,11448.825643597458,0,0.0,0,0.0,41620,434.0835005015045,0,0.0,41848,433.5088599130725,1120900,0,40198,0,0,9518,0,0,93,0.9716649949849548,0,0.0,0,0.0,0,0.0,0.04949,0.1294397656536067,0.3006668013740149,0.01488,0.3529526029526029,0.647047397047397,23.357475313696057,4.057713873836772,0.3226133198278045,0.275259559382122,0.2038490757153709,0.1982780450747024,11.660882433397536,6.429804075684343,15.914210830021451,11554.545227748344,45.10295201424327,13.321041861163868,14.336865285885628,8.90930597492345,8.53573889227032,0.5885034185869841,0.8150873965041399,0.7001569858712716,0.5577639751552795,0.123882503192848,0.7451146983857264,0.9070796460176992,0.875,0.685,0.1602209944751381,0.522005772005772,0.7496062992125985,0.635483870967742,0.515702479338843,0.1129568106312292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023482256725844,0.0047209474313385,0.0069275397598182,0.0093522476873242,0.0115096795184642,0.0136912396425008,0.0157377583887144,0.0178505817513778,0.0199991824554949,0.0222410917982137,0.0245317047177931,0.0266633824933033,0.0289896788519264,0.0312870104324363,0.0333739116081376,0.0351872519841269,0.037138271988404,0.0392175166734086,0.0413145832683733,0.0434017106483169,0.0587682476035336,0.0729474058726272,0.0860062744604278,0.0985684383250412,0.1103199468337605,0.125743118877864,0.1364157188932269,0.1482274033854998,0.1580685145214027,0.1669973722314581,0.1795214198022787,0.1900176363026519,0.2009109091699639,0.2113128400078652,0.220112517580872,0.2287307611449816,0.2383542709366744,0.2465240701817487,0.2535461998117764,0.2594919327154136,0.2650149716175127,0.2709703803236548,0.2762398940948418,0.2802704805218119,0.2847854040808404,0.2894934449436819,0.2926152692740222,0.2958408496150816,0.3001576716294458,0.3018756091778404,0.2996976822304333,0.2971552469432284,0.2939341128850911,0.2915205817426308,0.2883600237247924,0.2856619331195602,0.2825956749259189,0.2832073654483423,0.2839124751735728,0.2844182997271342,0.2845457418527263,0.2853475474730055,0.2860914760914761,0.2881911383716038,0.2894981301955553,0.2901193120190072,0.2920261659053741,0.29738369386425,0.3014657472538896,0.3060641627543036,0.3084296336110365,0.3136834396903442,0.3164016581080245,0.3187358916478555,0.3210458240946046,0.3242115027829313,0.3278344331133773,0.3326074044743615,0.338337801608579,0.3365599404318689,0.0,2.684443182708637,50.45200478478178,147.9264717000649,198.40711649291308,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95701,47946,457.16345701716807,5056,51.68180060814412,4008,41.35797954044368,1541,15.705165045297331,77.3508434030137,79.74101146390694,63.31502979323547,65.08277104446208,77.14485750275331,79.53762250038119,63.23677440446522,65.00749605293419,0.2059859002603872,203.38896352575372,0.0782553887702448,75.27499152789119,241.47046,169.11652052259558,252317.5933375827,176713.43091774965,483.76718,321.9171062476663,504967.5238503255,335846.9569259112,459.22275,224.29751034491204,476830.6287290624,232011.4949903766,2296.43148,1088.6999111269893,2372149.214741748,1110164.941982831,943.35028,428.5300261746108,974137.3653357852,436202.6870302326,1496.22208,652.6895392086745,1527666.043197041,652581.5957777759,0.383,100000,0,1097593,11468.981515344669,0,0.0,0,0.0,41609,434.2274375398376,0,0.0,41604,431.6673806961265,1117301,0,40077,0,0,9520,0,0,85,0.8881829865936616,0,0.0,0,0.0,0,0.0,0.05056,0.1320104438642297,0.3047863924050633,0.01541,0.3613381486409427,0.6386618513590572,23.3937962183442,4.0062567305377925,0.3018962075848303,0.280189620758483,0.2118263473053892,0.2060878243512974,11.271006534021438,6.194146525846058,16.669392583388927,11560.782712582788,46.033823812336585,13.891719422126936,13.645005435082304,9.438562887533626,9.058536067593712,0.5780938123752495,0.792520035618878,0.6983471074380165,0.568904593639576,0.1198547215496368,0.7348111658456487,0.9140461215932912,0.8535825545171339,0.696969696969697,0.1269841269841269,0.5096774193548387,0.7027863777089783,0.6422947131608548,0.5210355987055016,0.1177394034536891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022893726511137,0.004593807993023,0.0067100467977545,0.008892999430848,0.0112515005391767,0.0136203418838246,0.0159748645808893,0.018097514145066,0.0201368363997095,0.0223879068433665,0.0245000512767921,0.026509315749471,0.028748637139742,0.0306820523387595,0.0327973745588144,0.0347543830631822,0.0368298368298368,0.0388703215494156,0.0409086653976971,0.0429752238401484,0.0574854302007394,0.0712288894240333,0.0850197329750608,0.0977677726115587,0.10945740686047,0.1249563625977213,0.1371814331659785,0.1473952121315385,0.1575611163964041,0.1669277987637362,0.1791154181982817,0.1909835000649603,0.2005462815853048,0.2098414122951986,0.2195943714078087,0.2298505145493257,0.2376198930314094,0.2450544377765517,0.2523510971786833,0.2593182834409144,0.2653642606510486,0.2702955918864477,0.2752115279785746,0.28,0.2851255743842844,0.2902347024308466,0.2931515416849083,0.2967758346581876,0.3007179354504883,0.3040759794222398,0.3015107855546279,0.298901310451989,0.2966104078762306,0.2929756238280686,0.2902432884663794,0.2868894993894993,0.2837460347521424,0.2839914254389553,0.2846094881185589,0.2854653437177709,0.2867404242616467,0.2869830042243835,0.2876997336884154,0.2883338883338883,0.2910301699446248,0.2933326436662701,0.2942651118246859,0.2994934899474845,0.3035485101807208,0.3094289508632138,0.3158578080229226,0.3194175265832067,0.3233031393473136,0.3263554216867469,0.3261758691206544,0.3308633262761703,0.3337858220211161,0.3325453112687155,0.3361838588989845,0.3262599469496021,0.0,1.9417774549922864,53.29387338492513,147.53982407391052,203.13478272014697,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95722,47780,454.6603706566934,5036,51.40928940055578,3956,40.732537974551306,1474,15.074904410689289,77.26691653433518,79.62771066118579,63.2951211478972,65.03959756527036,77.07475247652187,79.43717459074769,63.222880607756935,64.97007585654974,0.192164057813315,190.5360704380996,0.0722405401402639,69.52170872061458,240.19908,168.36146242447927,250933.578487704,175885.40672413795,481.94832,320.83274338219366,502888.3642213911,334572.50891351374,468.89067,229.8046980907536,485719.8763084766,236893.99799552732,2252.86496,1076.4562752893987,2321521.3221620945,1092561.7468182852,898.94769,416.4916275680796,923710.139779779,419742.1375567996,1436.867,616.5253797523642,1470369.7582582897,617386.5623099646,0.38147,100000,0,1091814,11406.071749441093,0,0.0,0,0.0,41476,432.6800526524728,0,0.0,42470,439.6063600844111,1119274,0,40150,0,0,9776,0,0,63,0.6581559098221935,0,0.0,0,0.0,0,0.0,0.05036,0.1320156237712008,0.2926926131850675,0.01474,0.3511972633979475,0.6488027366020525,23.441091816621064,3.98026604840588,0.314206268958544,0.2848837209302325,0.2007077856420626,0.2002022244691607,11.382622008337556,6.133600767381647,15.894490214727131,11590.433898918294,45.71316244743111,14.012278781777812,14.03512322863133,8.822481191538854,8.843279245483116,0.5874620829120324,0.80301685891748,0.6967015285599356,0.5894206549118388,0.1073232323232323,0.7744299674267101,0.9201596806387226,0.895774647887324,0.7419354838709677,0.1827956989247312,0.5032991202346041,0.7092651757188498,0.6171171171171171,0.5427631578947368,0.0841584158415841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.0047653327114743,0.0071031375573324,0.0094472831442183,0.0117364684823952,0.0139594554692352,0.016147612008767,0.0183542430150774,0.02060865031741,0.0226211922698984,0.0248787838405789,0.0272781405281097,0.0293379676284885,0.0314556746902326,0.0335193801648629,0.0353100482722264,0.0374036948057327,0.0396937378096858,0.0416922197390988,0.0437183521223613,0.0589955100762242,0.0731630730584048,0.0866485471125896,0.0991572058374806,0.1114440353227899,0.1269683372841178,0.1382282996432818,0.1488838239679631,0.1586933276304533,0.1672588314852781,0.1790241904186969,0.189834328374381,0.2016204560799773,0.211174750583159,0.2205522621592436,0.2304302948912886,0.2385174418604651,0.2467977243282825,0.2552079783729753,0.2618886609281694,0.2677311118824482,0.2731559487035477,0.27849120024618,0.2829711491208093,0.2869968776955692,0.2920374707259953,0.2950443962980125,0.2984877030398696,0.3008632757816145,0.3039805401689515,0.2999770546234934,0.2969032347058418,0.2945162929914723,0.2918782093006437,0.2889797739440809,0.2854996473798792,0.2819049430863375,0.2815016930208093,0.2821455440804322,0.2822294051467043,0.2829980143119403,0.2846415303138092,0.2843778840506754,0.2854396279984798,0.2862813973631027,0.2882305427447302,0.2886853817185895,0.2930018590288937,0.2958055054948938,0.3004762476487773,0.3034145001830831,0.3071668712311222,0.3104947998739363,0.3131650957737914,0.3142642783456813,0.3169121979964643,0.3191974464204286,0.3189395460935931,0.3246930422919509,0.3305182341650672,0.0,2.268288676437201,53.27127426929852,147.10582142841065,197.69891957491845,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95702,47248,450.492152724081,4808,49.04808676934651,3866,39.8110802282084,1397,14.189881089214436,77.288290147924,79.65716846242772,63.294707477804174,65.04369151686838,77.10751788942997,79.47978230934193,63.22679483467145,64.9794277444823,0.1807722584940307,177.38615308579142,0.0679126431327219,64.26377238608438,241.18116,168.98870148730387,252012.6643121356,176578.02500188487,479.00347,318.78914458145937,499961.38011744793,332551.79053881764,458.29462,223.8222742759075,474734.5719002737,230688.81349263812,2206.1406,1034.488042445783,2273356.962236944,1049085.2045367723,876.54752,397.87199391869103,898530.2919479217,398359.3171457957,1361.88344,576.4958239053192,1384950.1577814466,570786.8760287324,0.37681,100000,0,1096278,11455.121105097072,0,0.0,0,0.0,41188,429.782031723475,0,0.0,41443,429.04014545150574,1118662,0,40086,0,0,9394,0,0,87,0.8881737058786651,0,0.0,0,0.0,0,0.0,0.04808,0.127597462912343,0.2905574043261231,0.01397,0.3497909615767469,0.6502090384232531,23.29859533405719,4.008242924531134,0.3264355923435075,0.2785825142265908,0.1950336264873254,0.1999482669425763,11.122863421591672,6.081980709870765,14.759631106013192,11444.5707861284,43.98366442233344,13.134682901146515,14.2525203605337,8.267598962401637,8.328862198251583,0.5944128297982411,0.8022284122562674,0.716323296354992,0.5716180371352785,0.1280724450194049,0.7700440528634361,0.9292035398230089,0.8776119402985074,0.75,0.1488095238095238,0.5214207250091542,0.7104,0.6580366774541532,0.5156794425087108,0.1223140495867768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686071359847,0.004338966555489,0.0066465072857896,0.0087669395964972,0.0109734765275404,0.0131352523699457,0.015517628107094,0.0177206145051804,0.0197794110130942,0.021808320114619,0.0237768257937565,0.0259386996776908,0.0282124570747054,0.030112665032646,0.0320061887570912,0.0340732932349476,0.036218303807167,0.0385533416355334,0.0402833250124812,0.0423445300205313,0.0568372899411992,0.0706627578264056,0.0843181293423731,0.0973068544185899,0.1091030012562416,0.124274702469188,0.1357424260122543,0.1463334079116992,0.1566920798537227,0.1660706807126059,0.178618413958203,0.1891689867726874,0.19960794990471,0.2089509754548838,0.2179563426507191,0.2271577546039494,0.2357156432013057,0.2427125369163829,0.2506852275182822,0.2570316625720387,0.2625684073833596,0.2686122831692452,0.2739389771015902,0.278249384643093,0.282593615752516,0.286617205920476,0.2899143326602029,0.2938650697585526,0.2973603995071016,0.3001017293997965,0.2980152959551893,0.2950343479398119,0.2922677722779258,0.2897282758022299,0.2880234356412086,0.2848503406568169,0.2815094817087636,0.2813503769255981,0.2816312601313881,0.2816595054288719,0.2827177126604543,0.2832163696577827,0.2845615135361137,0.2846884101469574,0.286621012193085,0.286555294482171,0.2871886221619023,0.2923370091531036,0.2967948941512922,0.3022604441989822,0.3075946497392881,0.3128335182543456,0.3196808179041207,0.3220607064848987,0.3258364826251267,0.3300011623852145,0.3330341113105924,0.3335318642048838,0.3417822838847385,0.3438897168405365,0.0,2.2750801679829653,49.18286363775315,137.34247090360407,204.9457980009291,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95815,48042,457.5797109012159,4876,49.57470124719512,3911,40.07723216615353,1485,15.039398841517508,77.36488025655099,79.68048170734932,63.35773544642036,65.07162167484665,77.17467937323569,79.49544230234423,63.285817664349246,65.00416260714468,0.190200883315299,185.0394050050852,0.0719177820711109,67.45906770197507,243.7061,170.72016371431354,254350.2165631686,178176.41320702762,483.86905,321.37290282739065,504307.74930856336,334714.3938082667,471.16789,230.3390647905951,487166.9154099045,236860.69428250636,2227.06,1061.0507180673712,2284933.674268121,1068020.579311561,901.46953,417.29589252524494,922026.3215571676,416704.9861976137,1443.23262,620.5179548549964,1464137.91160048,612603.1901605746,0.38058,100000,0,1107755,11561.373480144028,0,0.0,0,0.0,41580,433.20983144601576,0,0.0,42493,438.8248186609612,1110488,0,39884,0,0,9782,0,0,78,0.8140687783749935,0,0.0,0,0.0,0,0.0,0.04876,0.1281202375321877,0.3045529122231337,0.01485,0.3588582677165354,0.6411417322834646,23.18886894608653,4.0041552307258526,0.3157760163641012,0.2728202505753004,0.2073638455637944,0.2040398874968038,11.420599427466096,6.300201029822624,15.978949966354689,11560.691645469473,45.15455263509687,13.06140967103017,14.20644465199378,9.06793977435407,8.81875853771885,0.5847609307082587,0.788191190253046,0.7036437246963563,0.5980271270036991,0.1152882205513784,0.7671691792294807,0.9285714285714286,0.8743169398907104,0.7587939698492462,0.1602209944751381,0.5046006624953994,0.6865912762520194,0.6317606444188723,0.545751633986928,0.1021069692058346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384280360579,0.0045520905146194,0.0065447682441756,0.0088469507983585,0.0110737128969605,0.0134810410133181,0.0159024648820567,0.017988035200196,0.0204039908406934,0.0227442550795844,0.0249046857705079,0.0271235491518118,0.0290859010462702,0.0307431041580897,0.0328096975694229,0.0350679784038237,0.0371324251921266,0.038946910356832,0.0409515206263173,0.0430200378701179,0.0576068590024407,0.0718593542587772,0.0847903288322735,0.0977622832901051,0.1101329008614334,0.1258724275924694,0.1371716101694915,0.1477485330385236,0.1581894988372341,0.1671040089110713,0.1794858003442341,0.1908725354548599,0.2018447298090085,0.2111194836680536,0.2194481379325502,0.2281161535739561,0.2370311786394573,0.2453400107797341,0.252012545147813,0.2593214914386302,0.2663210999642119,0.2714532427827954,0.2768434975671973,0.2819130497149073,0.286336398262937,0.2899936029918315,0.2932828642456495,0.2970374979365341,0.3004315691544346,0.3035422916995631,0.3018008944039321,0.2991049365767942,0.2960472640315093,0.2939385632042939,0.2906702293475841,0.287431928042587,0.2834037569830192,0.2831350020517029,0.2829685818256368,0.2832464844028838,0.2841866311464645,0.2851968410426934,0.2866032517599732,0.288287080484426,0.2906770733575943,0.2918267732890227,0.2946835299776476,0.2976108574645068,0.3013555058692007,0.3033520881210872,0.3048564016203177,0.3089297090677426,0.3100398053958425,0.3118189438390611,0.3157349896480331,0.3205097946660373,0.3190062490474013,0.3253231017770597,0.3327904451682953,0.3271488072699735,0.0,2.8862430889968667,51.16959362104189,149.93884795651132,192.1392799033449,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95640,47759,455.4056879966541,4937,50.44960267670431,3888,40.08782936010038,1432,14.60685905478879,77.2563444549925,79.66691519956204,63.27473565930678,65.05578743815542,77.07310933328156,79.4872796725142,63.20572725184808,64.99052523902317,0.1832351217109362,179.6355270478358,0.0690084074587034,65.26219913224907,242.05346,169.622105374488,253088.10121288165,177354.77349904645,481.55454,321.25711884005665,502951.1396905061,335346.14056885894,463.23403,226.74612802633945,480947.6997072355,234418.40533687425,2199.69172,1042.3026931757947,2270527.519866165,1060375.8816141728,883.05331,403.99862638649546,911196.5495608532,410302.9029553472,1395.23334,596.8711268624571,1425671.6227519866,595661.9816616691,0.3797,100000,0,1100243,11504.00460058553,0,0.0,0,0.0,41507,433.4169803429528,0,0.0,41920,434.8808030112924,1108899,0,39787,0,0,9556,0,0,66,0.6900878293601004,0,0.0,0,0.0,0,0.0,0.04937,0.1300237029233605,0.2900546890824387,0.01432,0.3500291205591147,0.6499708794408853,23.37040596561681,3.99434919827958,0.3004115226337449,0.2993827160493827,0.2037037037037037,0.1965020576131687,11.390463557182464,6.103472657341924,15.437339427785318,11554.619384540923,44.746599931867735,14.31381673350617,13.277109624301715,8.712848375769743,8.442825198290103,0.5879629629629629,0.8152920962199313,0.6815068493150684,0.571969696969697,0.1151832460732984,0.7758037225042301,0.940329218106996,0.8688046647230321,0.7277486910994765,0.1419753086419753,0.5059127864005912,0.7256637168141593,0.6036363636363636,0.5224625623960066,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0046521999128345,0.0070327484549264,0.0092143894832017,0.0116593753179367,0.0139054429876837,0.0161273869756814,0.0183088806244636,0.0206002086614978,0.0230499723400331,0.0252116361397568,0.0271511813127524,0.0293197166858837,0.0315077532167601,0.0335103196082887,0.0353576639314576,0.0371848565267871,0.0392254633092329,0.041134663211896,0.0430170336605159,0.0571795863337548,0.070882309803675,0.0847436274303951,0.0979694523100243,0.1098717881074236,0.1251111111111111,0.1364909897480525,0.1478042339310815,0.1586490674931865,0.1680276415610614,0.1798915562646199,0.190711933443106,0.2010259314520959,0.2105384261389783,0.2189901752141935,0.228287648429697,0.2368215060496947,0.2448223018502242,0.2524430707695105,0.2588480858774686,0.26532126256245,0.2712770321748813,0.2766537795593083,0.2805352214088563,0.2849685450408245,0.2893223058881619,0.292226343223737,0.2967671260795353,0.2997291096911332,0.3023958814599696,0.2997951592906043,0.2971479746486635,0.2957307176628325,0.2935579179097992,0.2912557723819455,0.2879809538437908,0.2845295106403222,0.2843264568094025,0.284220630077817,0.2846301168805599,0.2849253310791772,0.2865996119272957,0.2879874213836478,0.2891222437741065,0.290528233151184,0.2917077729892517,0.2938116489951391,0.2967776281589578,0.2989378373672297,0.3023960341503718,0.306512026716007,0.3088018530216888,0.3081151996001749,0.3117916385198528,0.3165553216802416,0.3205157992565056,0.3227913882702301,0.3228284419933031,0.3194777511324274,0.3219567690557451,0.0,2.24277297528458,51.429859388062354,144.4403650541685,195.97551728428087,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95706,47570,452.3018410548973,4934,50.45660669132552,3967,41.01101289365348,1534,15.746139218021858,77.32722884548278,79.70382664033917,63.32110870231941,65.07608301092375,77.12782369337228,79.5039281576574,63.24628735635252,65.00257143366495,0.1994051521105007,199.89848268177468,0.074821345966896,73.51157725879887,242.17006,169.56214319819725,253035.40007940985,177169.8150567334,480.08135,319.6626776574099,501175.7047625018,333559.5967414894,462.33643,225.73194422532453,480114.55917079386,233624.0712641456,2255.1284,1073.384078353295,2332335.2349904915,1097570.09837763,909.64871,418.5749003127331,940318.7574446744,427212.15003524616,1493.03782,639.8479267362072,1533807.5773723694,647929.8492093142,0.37898,100000,0,1100773,11501.60909451863,0,0.0,0,0.0,41317,431.2477796585376,0,0.0,41923,435.06154264100473,1114997,0,40034,0,0,9527,0,0,72,0.7523039307880384,0,0.0,1,0.0104486657053894,0,0.0,0.04934,0.1301915668373001,0.3109039319010944,0.01534,0.3552018633540372,0.6447981366459627,23.3890400494162,4.081037524710417,0.3103100579783212,0.2803125787748928,0.1998991681371313,0.2094781951096546,11.60405519133094,6.365463536317162,16.449893268977856,11530.17389240341,45.780282929012216,13.704955303298895,14.00457607706312,8.91453130869925,9.156220239950946,0.5787748928661457,0.7985611510791367,0.6904955320877335,0.592686002522068,0.1058965102286401,0.7470288624787776,0.9102844638949672,0.8596491228070176,0.7688172043010753,0.1398963730569948,0.5077088562208677,0.7206106870229008,0.625421822272216,0.5387149917627677,0.0956112852664576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386721201935,0.0048646512146426,0.0072334381657705,0.0094863747625867,0.0116024852299651,0.0139085457118711,0.0163461342361266,0.0182611093521799,0.0203607878428404,0.0225906544735845,0.0246128602194646,0.0266933703076054,0.0288720659932937,0.0310764443436955,0.0333240451200759,0.0356260147467915,0.0377825663551789,0.0399393694002346,0.0420324526731849,0.0439867414371781,0.0593175195061573,0.07275543415696,0.0864931768358559,0.0981578310591156,0.1099345012709495,0.1257312725464682,0.1371629293969076,0.1477794222558216,0.1584423908979221,0.1672566181833784,0.1793457772799241,0.1910679107224038,0.2018751767495486,0.2112435743191512,0.2205529507583261,0.2294388122541687,0.2380102012344163,0.2454105736782902,0.2523120567375886,0.2591570266865193,0.2656557471929621,0.2712360181588431,0.2765008048480257,0.2811590034870762,0.284983536444601,0.2884036887266988,0.2926951384368898,0.2957796670569668,0.298656718351274,0.3018872904843606,0.2986200948684778,0.2961057540201108,0.2933404698856273,0.2897126113252212,0.2875155943682053,0.2842626367899948,0.2800025315254023,0.2795359340227779,0.2808904622506638,0.2811978260097332,0.2812855358574278,0.2827078908032412,0.2842454325519312,0.2853836052438291,0.2856868810397333,0.2872152293768855,0.2883144214088672,0.29181550416745,0.2956734124214933,0.2987937512359106,0.3019065386540474,0.3048534409515718,0.3077213279678068,0.3078271473210883,0.3083521870286576,0.3130095710740872,0.3118131868131868,0.3166163141993958,0.3184188855339006,0.3252965939533104,0.0,1.6956552273482106,51.661494213508014,155.74142012354503,196.41146373307103,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95778,47892,456.7541606632003,4982,50.81542734239596,3977,40.92797928543089,1462,14.919918979306312,77.38146625236273,79.70478013309246,63.35451413110488,65.06789754567063,77.19322936513257,79.51845427261016,63.28440556143131,65.00063140118407,0.1882368872301612,186.3258604822988,0.0701085696735646,67.26614448656676,242.15532,169.6461222808712,252829.79389839,177124.31067768298,483.50671,321.3363128424462,504237.6641817536,334920.23402915354,464.98869,226.80000335432555,480935.8829793898,233374.7565148828,2257.72972,1060.1272198413064,2325457.077825805,1075155.2116761457,914.4738,412.4917307770432,939958.3620455638,416007.7397457883,1419.21184,603.0085494230674,1449758.1699346406,603301.7547184451,0.38127,100000,0,1100706,11492.263359017728,0,0.0,0,0.0,41610,433.8261396145252,0,0.0,42012,434.2646536782977,1115511,0,40007,0,0,9725,0,0,83,0.8561465054605442,0,0.0,0,0.0,0,0.0,0.04982,0.1306685550921918,0.2934564431955038,0.01462,0.3511025886864813,0.6488974113135187,23.24642200404244,4.0446499202192765,0.305758109127483,0.2841337691727433,0.2167462911742519,0.1933618305255217,11.227137804893234,6.145945633587686,15.723888508310132,11546.364886213289,45.43878348501114,13.77311348768773,13.719724162497814,9.47234464056349,8.473601194262095,0.5939150113150616,0.8212389380530973,0.7023026315789473,0.5719257540603249,0.1131339401820546,0.7532693984306887,0.9268817204301076,0.8459119496855346,0.7360406091370558,0.1137724550898203,0.5293286219081272,0.7473684210526316,0.6514476614699332,0.5233082706766917,0.1129568106312292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0045198427175807,0.0067862975624106,0.008906084978471,0.0110425330716747,0.0132235274955717,0.015737116764514,0.0179695711180726,0.0201062525541479,0.0219757734490096,0.0238700159816416,0.0259982763573685,0.0279010975459366,0.0302543672729893,0.0324652562992288,0.0343278495523127,0.0365801918519821,0.0384312343196002,0.0403166325587193,0.0422605599341988,0.0567904326591947,0.0708904467929266,0.0843637584033393,0.0978901889053581,0.1103766722540244,0.1259968270756213,0.1374262802834231,0.1485534243075809,0.1580600027769174,0.1678655274808914,0.1800480070611282,0.1909498837649348,0.2015525789336348,0.2112204724409448,0.2192642787996127,0.2284584454856611,0.2374649867758818,0.24556549125471,0.2530134156584114,0.2595456576279341,0.2655385541331975,0.2711025280898876,0.2754914840985217,0.2804441303644791,0.2843512145380385,0.2889050321976926,0.2932368417763445,0.2969844073655183,0.3005591798695247,0.3028110544419404,0.2998521107824684,0.2969020350992832,0.2946561665026016,0.2924209614551754,0.2897550111358574,0.2864375411064715,0.2831481247632277,0.2834995911692559,0.2846303038551839,0.2853642948444823,0.285770176615247,0.2869565217391304,0.2879245361597567,0.2887109331553776,0.2899080377403559,0.2921043100325969,0.2938600209092707,0.2987235367372353,0.3011926701206578,0.3047881773399015,0.310889480572228,0.3138571278716039,0.3187786448656013,0.3252488958754397,0.3254294249439881,0.3276690495722489,0.3347381095725467,0.3410174880763116,0.345228440118951,0.3473167044595616,0.0,2.280667877853199,49.709963582948895,149.54449130393223,206.1735237135788,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95769,47696,454.54165753009846,4989,51.07080579310632,3949,40.78564044732638,1517,15.547828629305933,77.31912755708531,79.6669472235983,63.32066847763053,65.05755038542009,77.12294144813555,79.47291834491878,63.24671030152924,64.98662933316668,0.1961861089497603,194.0288786795179,0.0739581761012928,70.92105225341072,241.26564,169.00473413262185,251924.3387735071,176471.02858775132,480.38807,319.6424487472464,501170.7963954933,333324.6508544719,462.32872,225.3547189424961,479842.8614687425,233182.75695845293,2246.87512,1066.2489082887148,2321689.273146843,1089278.4346441063,931.92438,425.29699646289095,962074.8676502836,433210.45562965615,1470.05626,629.0377793219374,1508228.4037632218,632762.5004605182,0.38222,100000,0,1096662,11451.106307886685,0,0.0,0,0.0,41308,430.8701145464608,0,0.0,41711,432.74963714772,1120318,0,40219,0,0,9517,0,0,90,0.9188777161712036,0,0.0,0,0.0,0,0.0,0.04989,0.1305269216681492,0.3040689516937262,0.01517,0.3715930902111324,0.6284069097888676,23.440796104387,4.063488453442354,0.3137503165358318,0.2709546720688782,0.2180298809825272,0.1972651304127627,11.385925965789658,6.29270163800873,16.31268078953502,11594.2698481883,45.54768255515264,13.222451411061304,14.051865732599373,9.698173069710592,8.575192341781374,0.5902760192453785,0.7897196261682243,0.6933010492332526,0.6167247386759582,0.1232349165596919,0.75,0.9047619047619048,0.8343023255813954,0.7477064220183486,0.1461988304093567,0.5192096597145993,0.6950596252129472,0.6391061452513966,0.5723172628304821,0.1167763157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020253369654376,0.0044082327546894,0.0067164481960959,0.0090292307379796,0.0114104402477346,0.0135956738260364,0.0158450165689523,0.0179716538005963,0.0202143105457966,0.0226756208922831,0.0247095854736345,0.0266965119980285,0.0289090460323337,0.0309351628654428,0.0328934471053147,0.035035138486978,0.0372379522749624,0.0389191431979669,0.0406496461859783,0.0425363496229637,0.0578276027640341,0.0719687856313482,0.0856705334480082,0.0978905527046353,0.1093318433869573,0.1252114701404161,0.1368997115221449,0.1474171410331436,0.1576530884629758,0.1669775319440871,0.1798996489867993,0.1915489909646702,0.2025295806507743,0.2119459447639456,0.2214754026225468,0.230770934378668,0.2389030882730448,0.2472071909910112,0.2543517236683839,0.261506755209526,0.2672469673117881,0.273459260819699,0.2796622213800128,0.2828909474896803,0.2866922833726501,0.2910856635158814,0.2944411042637406,0.2983519702488601,0.3022113340592108,0.3055445544554455,0.3025078792123481,0.2989198486412108,0.2963907718759248,0.2940453467522702,0.2915812613254909,0.2875386641349952,0.2844616090789661,0.2840814050738779,0.2831015204199905,0.2830488218190899,0.2849657547063887,0.2858410220014194,0.2849278941750214,0.2850055865921788,0.2871444004321209,0.288073442213669,0.2889792205577191,0.2934384680371726,0.2993256699626148,0.3049879925987165,0.3076124255011739,0.3097588008655724,0.3141961767471012,0.316928685349738,0.3200825051565723,0.3230913568664243,0.3314103537270381,0.3350141185962081,0.3305921052631579,0.3313115996967399,0.0,1.7431654039938247,53.6017581592523,145.55216256095392,198.5615634339048,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95694,47662,454.2291052730579,4996,51.00633268543482,3985,41.19380525424791,1530,15.685413923547976,77.34181859432726,79.724539233332,63.3271521787835,65.08550900631693,77.14124636319191,79.5243111758038,63.2516441751217,65.01203503229024,0.2005722311353537,200.22805752819292,0.0755080036618025,73.47397402668321,240.96116,168.75403026374076,251803.833051184,176347.55602623022,482.1136,321.016181464649,503352.03879031073,335005.6236176238,463.6769,226.66791399893955,481761.0194996552,234713.41772907192,2279.5392,1081.6725830863834,2357008.8406796665,1105241.1050707293,942.81897,431.8574527905572,970581.4889125756,436627.9315218887,1489.27964,638.7031071305139,1528212.970510168,643493.9399993863,0.38031,100000,0,1095278,11445.628775053818,0,0.0,0,0.0,41403,432.19010596275626,0,0.0,41892,435.0220494492863,1120763,0,40213,0,0,9499,0,0,99,1.0240976445754175,0,0.0,1,0.0104499759650552,0,0.0,0.04996,0.1313665167889353,0.3062449959967974,0.0153,0.3573481509867791,0.6426518490132209,23.31426547811245,3.944819257935728,0.3109159347553325,0.2835633626097867,0.1994981179422835,0.2060225846925972,11.165157603910734,6.093117645238816,16.38492743820358,11536.823887782784,45.57039297285069,13.767619266530408,14.024587720763734,8.83268008967898,8.945505895877563,0.594228356336261,0.8061946902654867,0.7239709443099274,0.5723270440251572,0.1278928136419001,0.7605985037406484,0.9310344827586208,0.886685552407932,0.7164948453608248,0.1614583333333333,0.5222861250898634,0.7192192192192193,0.6591422121896162,0.5257903494176372,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873196220797,0.004368671254954,0.0066252041841258,0.0088663646889155,0.0111542685158823,0.0134804919768673,0.0157681762121721,0.017986382613844,0.0203395374032849,0.022602340079231,0.0247008520717339,0.0266206556568893,0.0288677187712187,0.0309134937400175,0.0329359549981937,0.0354158047165908,0.0374814768758873,0.0394945855871756,0.0412678928095872,0.0430635476607455,0.0570342205323193,0.0714592342082945,0.0851691313063464,0.0978335209755995,0.1097690903912488,0.124888935900148,0.1361388765094119,0.1477873939471359,0.1574830913228836,0.1664485961262092,0.17837948452831,0.1897411489826603,0.2010114742509108,0.2092339313632239,0.2178490105272421,0.2277731017985292,0.2371625316681733,0.245352407301191,0.2532903694290642,0.2601396999885492,0.2660452852880635,0.2716973190379871,0.2770926204017925,0.2818574902082909,0.285842631150825,0.2893971867070677,0.2937210756722951,0.297147072665064,0.2998770146935077,0.3030410929999472,0.2998304446119065,0.2976421255241631,0.2944249644431301,0.2917599156788287,0.2906830086210734,0.2871223484036854,0.2835476634332838,0.2831106307722539,0.2835884498687485,0.2841178040750956,0.2848805772565398,0.285795801113669,0.2860510231752852,0.2861471282805329,0.2878345382295207,0.2893943332466857,0.2898966378918673,0.2965283870159168,0.2970623291032742,0.3006331618519984,0.3017942312059959,0.3045524242584466,0.3093888231262849,0.3129292776813344,0.3172452199740115,0.3193902871322226,0.3229040097205346,0.3251902282739287,0.3229881900576765,0.3255902513328256,0.0,1.7372597966031054,52.78011952248505,140.51014267473164,209.6895429788185,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95679,47626,454.0390263276163,4965,50.52310329330365,3932,40.51045684005894,1481,15.123485822385268,77.38307130315455,79.75958982826266,63.34642469116329,65.09745047665902,77.18568550339499,79.56483127985635,63.271278113947936,65.02541180988808,0.1973857997595587,194.75854840631257,0.0751465772153565,72.03866677093629,242.176,169.6880673903211,253113.01330490492,177351.4223500675,485.03281,322.6972251685749,506374.3454676575,336707.4542674723,464.5388,226.69852712639093,481376.069984009,233701.7504187896,2246.0294,1065.3152988303286,2317975.229674223,1083938.3969631044,904.12787,415.2780706805612,931963.7433501604,421036.7903934624,1437.65368,621.7103504254159,1471150.8272452678,623932.9818756657,0.38013,100000,0,1100800,11505.13696840477,0,0.0,0,0.0,41638,434.5781205907252,0,0.0,42062,435.5083142591373,1113698,0,40022,0,0,9619,0,0,96,1.0033549681748346,0,0.0,0,0.0,0,0.0,0.04965,0.1306132112698287,0.2982880161127895,0.01481,0.3472409152086137,0.6527590847913862,23.67429193737189,4.007636735224946,0.314852492370295,0.2713631739572736,0.2133774160732451,0.2004069175991861,11.232717993350288,6.120145092773816,15.860187547513709,11512.09213155234,45.02482486438316,13.147934083125326,13.973161389067975,9.297685937040583,8.606043455149283,0.5877416073245167,0.8163074039362699,0.6922455573505655,0.5792610250297974,0.1230964467005076,0.745819397993311,0.9126637554585152,0.8547008547008547,0.7053140096618358,0.1555555555555555,0.518640350877193,0.7438423645320197,0.6279594137542277,0.5379746835443038,0.1134868421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023688286446048,0.0043563714465179,0.0067747791604547,0.0091697469434176,0.0115296629556199,0.0135285075887903,0.0159024648820567,0.017893415264012,0.0200852473091901,0.0220814053478563,0.0240834153543307,0.0263084932688456,0.0286016949152542,0.0308083721313501,0.0330018363009883,0.034757175191459,0.0365992624207516,0.0385166272263046,0.0406102456373884,0.0426571896071953,0.0574347617157303,0.071732166411926,0.0850485722078848,0.0978823183041722,0.1103062892087089,0.126437875327751,0.1382969700824799,0.1493756514709949,0.1594117835380494,0.1676650556704566,0.1797012869625102,0.1915045472732581,0.2016413935539975,0.2100850440523819,0.2184320239365505,0.2281978837737521,0.236411556458908,0.2435357448533717,0.250749386865292,0.2580541680032995,0.2631036956471432,0.2688689180650144,0.2755497140421299,0.2799793700674071,0.284757505773672,0.2892475372039405,0.2938239159001314,0.2961977960450971,0.2995493162038956,0.3022819961196827,0.3002246405079297,0.2970454857771059,0.2939918991899189,0.2916035380863743,0.2881820877817319,0.285268471776044,0.2810938981979133,0.2806612274320915,0.2809930046067224,0.2815679287305122,0.2819065713008493,0.2830529436014212,0.2835500988450734,0.2830448291167332,0.2843667373335556,0.286742512189459,0.2885378832671678,0.2935771272467637,0.2975929978118162,0.3025914037422688,0.3070376874240172,0.3089740910990388,0.3138202316793657,0.3139804229246058,0.3227912108118047,0.3271028037383177,0.3298313110387689,0.3366221706326175,0.336322869955157,0.3338208409506398,0.0,2.2703198143417667,51.89355732654764,142.1842845795053,200.9330189264448,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95684,48168,459.627523932946,5025,51.24158689018018,4017,41.30262112787927,1461,14.850967768905983,77.3960056150407,79.77935309484268,63.35197710932333,65.11274212381281,77.20520930452923,79.59648951071364,63.27771582594307,65.04477396692053,0.1907963105114731,182.8635841290378,0.0742612833802596,67.96815689227742,241.99648,169.5802212377503,252912.16922369463,177229.4440426302,488.55019,324.9724922500724,509869.0272145813,338913.3151698332,472.4102,231.0107009924764,489588.3533297103,238271.79089940863,2248.93084,1077.6508811733452,2310887.755528615,1087243.7592383046,910.73537,419.2206034964756,933229.0456084613,419854.5297532263,1414.43304,614.8457407218646,1438514.4642782493,606209.3561241693,0.38384,100000,0,1099984,11496.007691986122,0,0.0,0,0.0,42067,438.892604824213,0,0.0,42796,443.2611512896618,1113539,0,39931,0,0,9598,0,0,77,0.7838301074369801,0,0.0,1,0.0104510680991597,0,0.0,0.05025,0.1309139224676948,0.2907462686567164,0.01461,0.3535837485626676,0.6464162514373323,23.25540633399536,3.8909717681302554,0.3196415235250187,0.2962409758526263,0.1959173512571571,0.1882001493651979,11.318213779945587,6.218717071879884,15.783293102039964,11646.553458763066,46.2509203891607,14.618267895769687,14.588220869485378,8.7253105342938,8.319121089611828,0.6034353995519044,0.8319327731092437,0.6892523364485982,0.5717916137229987,0.1309523809523809,0.7635350318471338,0.9384920634920636,0.8699186991869918,0.7029702970297029,0.1270718232044199,0.5306048533140166,0.7536443148688047,0.6163934426229508,0.5264957264957265,0.1321739130434782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0049279065522905,0.006952761819695,0.0092252984505969,0.0112404125892621,0.0137254103368223,0.0158548895255768,0.0181625131445956,0.0204154654562554,0.0223750742082744,0.024328480623334,0.0265819275747712,0.0284057017092786,0.0305099759999175,0.0326038732576015,0.0345971759938806,0.0367830617677829,0.0389150698582075,0.041018814156899,0.0429616659370896,0.0583497853404782,0.0726875013082703,0.0856261735180892,0.0984911413700646,0.1110267763019186,0.1268852459016393,0.138989093069643,0.1490317566776319,0.1592317224287484,0.1687205723049862,0.1801204105590798,0.1922573527025711,0.2026147342338915,0.2129896817068905,0.2220365259651013,0.2313499750927104,0.2401133093926349,0.2481098266545336,0.2554240072508922,0.2615206978153259,0.2681730014316723,0.2745187312483218,0.2799508692365835,0.2837083019364407,0.2879706174695144,0.2924931789691026,0.296395609877775,0.2994207050412605,0.3030287394871265,0.3066892753394587,0.3036901952370736,0.3003191824545542,0.2972168811665801,0.294347175027357,0.2918103639673776,0.2884401262907433,0.2856444619629483,0.2851166742924374,0.2853840924541128,0.2854125248508946,0.2855971984203859,0.2862244197225655,0.2875773559828882,0.2890998406797663,0.2911344137273594,0.2930455883112189,0.2927186242224661,0.2970263116923556,0.3014493761078864,0.3060018903591682,0.3083646573977628,0.3122069437858911,0.3138357705286839,0.3176718620585799,0.3239738805970149,0.3292841136926524,0.3324263038548752,0.3307939053728949,0.3352380952380952,0.3359878649981039,0.0,2.5290506560392445,54.29136310005647,149.6576981064138,195.9901897743248,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95816,47618,453.6090005844535,4901,49.908157301494526,3941,40.47340736411455,1555,15.769808800200384,77.38566316619061,79.70625398034424,63.36611244363343,65.08393260451817,77.19363350439333,79.51934099720545,63.29400989269079,65.01640416910456,0.1920296617972781,186.91298313879656,0.0721025509426382,67.52843541360676,242.02024,169.5416482505106,252588.31510394925,176944.82496252452,486.89555,324.44519003259154,507516.5421224013,337973.549472076,467.23752,228.93399979948663,483524.5157384988,235688.3301311802,2253.68504,1071.8044229575653,2315391.5838690824,1081961.6103287188,899.49987,415.06740523999287,918769.5896301244,413219.4118918077,1506.36722,636.9222193948557,1528920.7647991984,629078.476432772,0.37813,100000,0,1100092,11481.28705017951,0,0.0,0,0.0,41789,435.4700676296234,0,0.0,42266,436.98338482090674,1116399,0,40064,0,0,9540,0,0,89,0.9288636553394004,0,0.0,0,0.0,0,0.0,0.04901,0.1296115092692989,0.3172821873087125,0.01555,0.3495696400625978,0.6504303599374022,23.01026410919577,4.068916592344627,0.3202232935803095,0.2770870337477797,0.1994417660492261,0.2032479066226846,11.730112627940365,6.610680420018053,16.603208173125715,11406.553427755463,45.43054083081798,13.416423837736929,14.481396334580166,8.755398667305018,8.777321991195876,0.5861456483126111,0.8012820512820513,0.6996830427892234,0.5814249363867684,0.1186017478152309,0.7710547833197057,0.920570264765784,0.8777777777777778,0.7393617021276596,0.1956521739130435,0.5029433406916851,0.7038269550748752,0.6286031042128604,0.5317725752508361,0.0956239870340356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019243819189126,0.0040854394128321,0.0066476540378155,0.0088391278727165,0.0112189267260669,0.0134405864983199,0.0156254777849127,0.0177058883559546,0.0197557361132403,0.0217053152950326,0.0239088328431322,0.0259265721705036,0.0281497620784986,0.0303136354746734,0.0324915703399705,0.0344884573671435,0.0364832845303009,0.0384539640750836,0.0404967602591792,0.0425390218522372,0.0577571009836544,0.0714599318433651,0.0846182065929458,0.0973364854215918,0.109203332876871,0.1247650028516507,0.1350876077883006,0.1456158996705282,0.1556510702744211,0.1655956817889731,0.177257525083612,0.1889217740715937,0.1996439581433719,0.2085961886883063,0.2176577170153187,0.2270345559461431,0.2349861890760046,0.2428829719137085,0.2510391066514151,0.2571255514159676,0.2624730102647592,0.2677111160365363,0.2734481009073639,0.2774319949347127,0.2817194668732674,0.2860141147591286,0.289464826657691,0.2926031979322403,0.2965432735715207,0.2992691134714481,0.2963460144441163,0.2939538201923473,0.2908766607679559,0.2882220684884123,0.2854686921081882,0.2813903743315508,0.2791895821480498,0.2795045303360477,0.2797904472619921,0.2799850275386343,0.2811787995368468,0.280585892836021,0.2816612186740424,0.2828969434071954,0.2831805164488725,0.2846404802296751,0.2866754090883174,0.2916143216080402,0.2948839495768812,0.2992660186470938,0.3037555061078061,0.305910290237467,0.3066241321073372,0.3128727821819554,0.3127402268679103,0.3139150943396226,0.3167351911070504,0.3216867469879518,0.3225718194254446,0.3225561049828832,0.0,2.5678820545623804,52.751284625363255,146.6007918573006,195.2560265529967,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95755,47886,456.79076810610417,5015,51.026056080622425,3981,40.88559344159574,1484,14.996605921361809,77.37657405990127,79.72097766405493,63.3458979718325,65.07894176178658,77.18215034313047,79.5339254859529,63.27141726516954,65.01036867878607,0.1944237167707996,187.0521781020216,0.0744807066629604,68.57308300051557,241.6062,169.2842586442364,252316.829408386,176788.71979973518,483.81209,322.18330763756563,504561.0150905958,335766.9235419201,467.37385,228.357384375814,483688.8204271318,235121.92157254412,2252.08876,1075.5864396955603,2315459.955093729,1086801.064900591,876.13354,407.7860639972645,896551.0730510156,407501.02964994457,1441.05038,625.4227827343078,1458809.4407602735,614408.8042704314,0.38272,100000,0,1098210,11468.946791290273,0,0.0,0,0.0,41617,433.8990131063652,0,0.0,42341,437.8048143700068,1116586,0,40031,0,0,9664,0,0,88,0.9190120620333142,0,0.0,1,0.0104433188867422,0,0.0,0.05015,0.1310357441471571,0.2959122632103689,0.01484,0.353796136928667,0.6462038630713329,23.18581818225748,4.010401671620709,0.3029389600602863,0.3019341873901029,0.1956794775182115,0.1994473750313991,11.288825395931594,6.174680671921865,15.945726396323584,11586.58027282724,45.73769547211415,14.645032515905868,13.723546394107318,8.778035350670345,8.591081211430614,0.5890479778950013,0.8011647254575707,0.693200663349917,0.5879332477535302,0.1108312342569269,0.7602905569007264,0.9223107569721116,0.8507042253521127,0.7205882352941176,0.1685393258426966,0.5116703136396791,0.7142857142857143,0.627497062279671,0.5408695652173913,0.0941558441558441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0045514906385264,0.006848759106313,0.0090922020399041,0.0111260271743552,0.0133196199631368,0.0153868115956806,0.0174786621472618,0.0196383115754608,0.0217317869609278,0.0239217776320104,0.0260929368411328,0.0284662753282,0.0304634397528321,0.0324873620138244,0.0344200277014036,0.0363869818686382,0.0383629856320348,0.0404000499022747,0.0424811756006623,0.0576262694792656,0.0720672669657704,0.0855252812228081,0.0982018055511765,0.1107270082839737,0.1263834420354964,0.1374469889737065,0.147934156904055,0.1583758730429953,0.1683537788453289,0.1803319296507307,0.1918203949147957,0.2019495425320119,0.2113619204971934,0.2196166507029538,0.2286955750642901,0.2369711114337081,0.2439845139217142,0.2524682811684332,0.2603025202386269,0.2664538367224188,0.2720014028524666,0.2771807875542315,0.2814116069718445,0.2859848484848485,0.2907604010148533,0.2939816839290846,0.2977272727272727,0.3010206718346253,0.3044073688784714,0.3017517954225115,0.2993606103015834,0.2965349731839496,0.2941557880176363,0.2919399008215528,0.2885260909368324,0.2856782334384858,0.2861977080642788,0.2868230248153317,0.2872801563332741,0.2883456191098255,0.2894995479026614,0.289983743903964,0.2898209968280726,0.2906715705005732,0.2927025067329604,0.2938514621867752,0.2983205060293522,0.3026439544362002,0.308122807708982,0.311801691771837,0.3160864978902953,0.3201297486120641,0.3222573839662447,0.3287861915367483,0.3301278292482702,0.3293975174084166,0.3375694996028594,0.3367595347579118,0.3488546751783702,0.0,2.7045919927763493,53.27306024058519,144.99353424233772,198.93077424268975,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95749,47637,453.5713166717146,5015,51.185913168805946,4022,41.41035415513478,1545,15.759955717553186,77.3313489084019,79.69707658315689,63.31030609897547,65.06307566576442,77.1305863540644,79.50089988191154,63.23386762381147,64.99111757278767,0.2007625543375013,196.17670124534925,0.0764384751639966,71.95809297674316,240.84214,168.7774344099492,251534.65832541333,176270.472182424,480.5922,319.06946569461724,501317.9041034371,332623.99157653574,469.16855,228.3541657642473,486572.4550648048,235848.37252928136,2288.71612,1087.9610907810782,2358185.631181527,1104120.2840563124,950.91014,434.7344547181557,977660.4246519546,438581.4536050452,1493.36374,638.9336471839499,1524865.3040762828,636841.3198599214,0.37957,100000,0,1094737,11433.39356024606,0,0.0,0,0.0,41336,431.0645541989995,0,0.0,42426,439.5659484694357,1120572,0,40218,0,0,9407,0,0,84,0.8772937576371556,0,0.0,1,0.0104439733052042,0,0.0,0.05015,0.1321231920330901,0.3080757726819541,0.01545,0.3579773989657154,0.6420226010342847,23.082912062500544,4.006555556161737,0.3142715067130781,0.2779711586275485,0.209845847836897,0.1979114868224764,11.276312901577834,6.239068806849058,16.522134335057917,11589.51952818752,46.252307895528034,13.789208429323088,14.40511240227326,9.3659482888657,8.692038775065987,0.6006961710591745,0.8237924865831843,0.7096518987341772,0.5817535545023697,0.1344221105527638,0.7546862265688672,0.9209401709401708,0.8637602179836512,0.7033492822966507,0.1693989071038251,0.5330948121645797,0.7538461538461538,0.6465997770345596,0.5417322834645669,0.1239804241435562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0047152113732926,0.0069931489469677,0.0092156065840276,0.0115668680949765,0.013667240378446,0.0159272363899623,0.0182157917845145,0.0203029590156389,0.022430710613106,0.0246351394316072,0.0268046109273224,0.0289595554183389,0.031042905582982,0.0332166929881604,0.0353242885506287,0.0372683027855441,0.0389875887260802,0.0412590829235838,0.0430589117573535,0.0582401636862818,0.0717133558669331,0.0853099461829778,0.0981670575121197,0.110324975220903,0.1260392206638319,0.1374996020502371,0.1478147868045717,0.1581023021182908,0.1676485422099174,0.1794979575559651,0.1912043404338267,0.2025191055759977,0.2121527245659741,0.2209635158641037,0.23090566456047,0.2399218313791178,0.2468789751556291,0.2544546589490409,0.2619492350885234,0.268581217950944,0.2744209466263846,0.2794528990660408,0.2831430183831034,0.2871534072244595,0.2905318729030984,0.2935049326456007,0.297947908445146,0.300626142418232,0.3037425110190292,0.3006638032018742,0.2981337437814363,0.295265015680153,0.2916258004961634,0.2892558311736394,0.2861808968527732,0.2828457949817173,0.2834562008598003,0.2835617604494764,0.2840519462061859,0.2843588644285794,0.2857929515418502,0.2867798729034274,0.2864484837697733,0.2877413797229068,0.2888571799195745,0.2893724180861298,0.2933704595939054,0.2974554885742324,0.3010586416081836,0.3039357939602793,0.3063428511221157,0.3108766233766233,0.3136072370900867,0.3168298540550526,0.3188288392547159,0.3176278240190249,0.3220338983050847,0.319403779611392,0.3184023889511012,0.0,2.283832953150905,53.41893511317319,148.43954150143102,202.79509665475496,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95486,47384,452.1500534109712,4999,51.04413212408102,4023,41.4929937373018,1525,15.604381794189724,77.22623088476638,79.71427896820647,63.24095407219974,65.07674875313994,77.02803561852849,79.51980326278937,63.16567022352176,65.00551205376367,0.1981952662378887,194.4757054171049,0.0752838486779836,71.23669937627142,240.45472,168.44738128553004,251821.9634291938,176410.55367858117,482.3869,321.24066637560503,504581.9072953103,335817.6553375416,467.75476,228.60689272517664,485982.4372159269,236419.1983419483,2297.4462,1091.2189251616496,2372690.74000377,1109533.752809658,910.14988,419.0771241603762,934354.0728483758,420113.5685063734,1475.8927,635.6981842707895,1511179.7750455565,634300.6202254521,0.37655,100000,0,1092976,11446.452883145172,0,0.0,0,0.0,41494,433.9170140125254,0,0.0,42220,438.28414636700666,1115898,0,40016,0,0,9494,0,0,87,0.9111283329493328,0,0.0,0,0.0,0,0.0,0.04999,0.1327579338733236,0.3050610122024405,0.01525,0.3516884113584037,0.6483115886415963,23.08263164160648,4.128596159138582,0.3069848371861794,0.2818791946308724,0.2120308227690778,0.1991051454138702,11.25178674187369,6.047380494193022,16.341006027388904,11525.862973710446,46.31798769315616,13.934284049210962,14.044118159669427,9.590031817277993,8.74955366699778,0.5863783246333582,0.8139329805996472,0.6923076923076923,0.5943728018757327,0.0923845193508114,0.753577106518283,0.9278752436647172,0.8531073446327684,0.6962616822429907,0.1186440677966101,0.5103074141048825,0.7198067632850241,0.6276958002270148,0.5602503912363067,0.0849358974358974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0045847829835576,0.0066907628891099,0.0089679715302491,0.0112803388173969,0.0133516791520154,0.0156022000224492,0.0178815931988637,0.0203382200988265,0.0224483104854408,0.024470356380358,0.0264137363767221,0.0285949647325335,0.0306015099632823,0.0329079919408999,0.0350461242196154,0.0370739196282234,0.0392295458561583,0.0411618239969995,0.0431777125732246,0.0582921621168983,0.0720228290861021,0.0858957641021326,0.0983779340001475,0.110637893134934,0.1256373021845818,0.1370276649584281,0.1479695268987004,0.1584190231362467,0.1676484499290536,0.1797706709278974,0.1911265390247871,0.200822174728486,0.2104772659993202,0.219076203297067,0.2280233824542686,0.2365853658536585,0.2443910798439649,0.2521013182288645,0.2580448953360264,0.2641929499072356,0.270030717283748,0.2746286717600721,0.2796241559128157,0.283886533118877,0.2884344321076189,0.292318705885308,0.2947884608017163,0.2987039970911357,0.3026442848261174,0.2995396681831068,0.2962100651631835,0.2941790139991259,0.2924430193257648,0.290004162454659,0.2865243444544911,0.2824719065506474,0.2828727828645636,0.2836247305573613,0.2836951666219959,0.2845534544092866,0.2854096321307979,0.2867241090848251,0.287903801534892,0.2887197529977741,0.2894873391448734,0.290758018319485,0.2932552238338398,0.2983560685554389,0.3025545713381841,0.307493305496301,0.3102045130264757,0.3133611821185859,0.3135841405722009,0.3176676170330175,0.3227040816326531,0.32778198334595,0.3339408667476711,0.3298743855816494,0.336232980332829,0.0,2.527674102150665,54.67743599039385,143.3184603229952,204.16907041350743,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95716,47776,455.57691504032766,4990,50.911028459191776,3941,40.6201679969911,1438,14.678841572986752,77.36399481233721,79.74941760142363,63.33329461681414,65.09749867981238,77.1794116568246,79.56790457483851,63.26299917274064,65.03102892450113,0.1845831555126125,181.5130265851224,0.0702954440735013,66.4697553112461,243.41108,170.38398564874143,254305.5288561996,178009.93109693407,482.15679,320.52381064154883,503169.752183543,334302.4997299812,465.9926,227.3199684898654,483940.20853357855,235179.90082460453,2243.49912,1062.462091228515,2313156.462869322,1079259.278729277,909.81201,415.2240316226929,933139.1930293784,416414.7390433082,1395.98758,594.5983226127952,1425020.6026160724,591594.9594329682,0.38156,100000,0,1106414,11559.342220736346,0,0.0,0,0.0,41458,432.5713569309207,0,0.0,42134,437.22052739353927,1112590,0,39923,0,0,9722,0,0,84,0.8775962221572151,0,0.0,0,0.0,0,0.0,0.0499,0.1307789076423105,0.2881763527054108,0.01438,0.3458069468432163,0.6541930531567838,23.41665795188617,4.029947170685667,0.3095660999746257,0.2834306013702106,0.2090839888353209,0.1979193098198426,11.249217723913468,6.193210462943769,15.257343342161198,11570.295243261207,45.09385576136603,13.705234375365844,13.725978932032245,9.221816031337893,8.44082642263005,0.593757929459528,0.7905102954341987,0.7073770491803278,0.5922330097087378,0.1358974358974359,0.7615449202350966,0.9186295503211992,0.8776119402985074,0.7117117117117117,0.155688622754491,0.521090909090909,0.6984615384615385,0.6429378531073446,0.5481727574750831,0.130505709624796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0044013102518076,0.0066088686753837,0.0089944508811512,0.0110706363580862,0.0134991951423273,0.0157289159084417,0.0178930705203492,0.019944360348566,0.0219132073153249,0.0240993508557833,0.0263536274751458,0.0286055194972176,0.0306848976311423,0.0327154887714663,0.0348435658305589,0.0368359990055523,0.038686646465485,0.0404677754677754,0.0426981745436359,0.0570560220579019,0.070979222274559,0.0848012421708614,0.0966557997686402,0.1090661860038579,0.1245942545385339,0.1360430960435202,0.1469208429518206,0.1568878640362114,0.1665059053008381,0.1792228475502803,0.1898673935146126,0.2006654777956591,0.2100123568843155,0.2189418105818942,0.2286308937329097,0.2369257536721651,0.2448729480548684,0.2521809168358839,0.2590824805988599,0.2651527414841708,0.2715244173270683,0.2779683876768728,0.2828394144845595,0.2865258557902403,0.2905190873513992,0.2951622780159216,0.298084369009686,0.3016643640166824,0.3055241352097856,0.3026704240472356,0.3003646933011599,0.2971630608637091,0.2940490585593366,0.2913228639872238,0.2882583944716734,0.2853033185040793,0.2852188919460137,0.2862418893048943,0.2865653646341247,0.2881586296778998,0.2891497673688137,0.2898776834747878,0.2913746690693897,0.294169590224577,0.2942472714074611,0.2963949665570797,0.301577896968941,0.303265832491025,0.3054113575585968,0.3083611136138391,0.3112089755688371,0.3169480925578486,0.3211446740858505,0.3223024280491234,0.3247014307674116,0.3227935533384497,0.3325865580448065,0.3337946305009687,0.3348837209302325,0.0,2.210256366504657,51.67157299585902,141.60427213918166,204.0161265065524,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95682,47779,455.9269246044188,4956,50.76189878974102,3911,40.415125101900045,1478,15.133462929286594,77.31725194233033,79.72592723766829,63.30264576078415,65.08508970273357,77.13022417209153,79.54143235435002,63.23241219933286,65.01838641002713,0.1870277702387994,184.4948833182656,0.070233561451289,66.70329270643549,243.09428,170.22973891453202,254064.56804832676,177911.7550997387,485.95528,323.00215367970856,507411.3312848812,337104.76176721347,462.93751,224.9197513339578,481601.6805668778,233332.4881486042,2232.5556,1051.2716641945194,2307353.274388077,1072795.747592831,900.68735,404.3807496179313,930117.399301854,411486.12687566073,1434.3792,609.6470362415187,1469144.2277544364,608767.3719705021,0.38228,100000,0,1104974,11548.389456742125,0,0.0,0,0.0,41869,437.08325494868416,0,0.0,41783,434.4181768775736,1109204,0,39827,0,0,9550,0,0,99,1.034677368784097,0,0.0,0,0.0,0,0.0,0.04956,0.1296431934707544,0.2982243744955609,0.01478,0.3567014291232136,0.6432985708767864,23.25763047258017,4.010075413153757,0.3178215290207108,0.2807466121196625,0.1971362822807466,0.2042955765788801,11.342690558482774,6.15498141564319,15.80982826171636,11567.564692348002,45.08634057313112,13.613839944281954,14.283996396116798,8.451032394946115,8.737471837786252,0.5855279979544873,0.8087431693989071,0.7127916331456154,0.556420233463035,0.1088861076345431,0.7719449225473322,0.906113537117904,0.8706199460916442,0.7976190476190477,0.1515151515151515,0.5067297198981447,0.7390625,0.6456422018348624,0.4892205638474295,0.0977917981072555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025327484372942,0.0048674136794605,0.0069517034210499,0.0093385767561909,0.0113750826677519,0.0135581134766221,0.0157815273498867,0.0179388689114089,0.0200937161097583,0.022191031380946,0.024489586539448,0.0266551578860836,0.0284931958083709,0.0302808479049818,0.0322440717177559,0.0343300569063631,0.0363440347476339,0.0383305294203169,0.0403683087967538,0.0424276540738887,0.056177779635163,0.0696364245622853,0.0827927190275241,0.0960061443932411,0.1080376829023852,0.1241666137532541,0.1356916186412795,0.1465861529122336,0.1567753588337768,0.1662929785978651,0.1783879272272908,0.1900066030893798,0.2014212336220781,0.2116877004411072,0.2211661306665492,0.2310036457929322,0.2398920028561228,0.2484284862865046,0.2559560933017338,0.2621960290667735,0.2673797409805735,0.2732489510652969,0.2782733166138267,0.2837501197662163,0.2875857463728525,0.2914413138020673,0.2944670952249931,0.2972190108368376,0.3002895852725204,0.303731303981462,0.3016465658492036,0.2981818181818181,0.2957701000968679,0.2930117982626734,0.2902526968676272,0.2871482563922085,0.2835634617207495,0.2842470802142541,0.283863829787234,0.2850465628776569,0.2858795648360671,0.2862060825431797,0.2863826232247284,0.2868565828451789,0.2893460725945842,0.2895940537449971,0.2904890148830616,0.2940882701791622,0.2989399539716856,0.3028177339901478,0.30624349164667,0.3100084370385994,0.3152133116476917,0.3188153310104529,0.3203992164909989,0.3259189885272769,0.329279416235938,0.3281752411575562,0.3424218123496391,0.3517138599105812,0.0,1.7460350803695657,51.002601746127546,152.75069440491976,193.40375944283537,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95857,47949,456.3255682944386,4975,50.76311589137987,3945,40.591714741750735,1465,14.876326194226817,77.4717338221379,79.75873488014132,63.40399372213196,65.09105102118123,77.28964617556868,79.58185447546168,63.33429895400539,65.02626126803632,0.1820876465692293,176.88040467963617,0.0696947681265669,64.78975314490754,243.44782,170.49567096410817,253969.788330534,177864.60140011497,486.73522,323.87307078455405,507229.0599538896,337328.8015344346,467.35662,227.8724356868553,484682.2558602919,235439.01864699964,2230.2512,1047.5986281174933,2294089.4874657043,1060400.48753619,884.26063,400.6150268616945,904049.3652002462,399541.6161618976,1425.82652,607.7663036033375,1447914.9775185953,598402.1360991419,0.38261,100000,0,1106581,11544.081287751547,0,0.0,0,0.0,41931,436.8486391186872,0,0.0,42407,439.48798731443713,1109649,0,39811,0,0,9384,0,0,69,0.7198222352045234,0,0.0,0,0.0,0,0.0,0.04975,0.1300279658137529,0.2944723618090452,0.01465,0.3672523653214906,0.6327476346785094,23.10696438835442,4.013904916157061,0.2940430925221799,0.294296577946768,0.2136882129277566,0.1979721166032953,11.246054721045638,6.0514665957720855,15.405048031054497,11555.615767563118,44.89498268891042,14.222408943782645,13.09351625290808,9.158691463473406,8.420366028746297,0.5837769328263624,0.8217054263565892,0.6982758620689655,0.5338078291814946,0.1139564660691421,0.7489469250210615,0.93158953722334,0.8823529411764706,0.6820512820512821,0.1216931216931216,0.5126903553299492,0.7394578313253012,0.6323185011709602,0.4891975308641975,0.1114864864864864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022067010831055,0.0044270648661243,0.0068547324017927,0.0092062525375558,0.0113608649703276,0.013582671156918,0.015667019802787,0.017982639561807,0.0204235851561383,0.0226928740898306,0.0248363870994172,0.0270857904722834,0.0291337935568704,0.0310937339232431,0.0330996804453149,0.0350069187715566,0.0371872187684255,0.0393109952636106,0.0411920461035252,0.0429497653217329,0.0573740575826146,0.071383766152302,0.0852076215230469,0.0977985603951032,0.1096330807095951,0.125181057906812,0.1365010020465076,0.1475334843987702,0.158050946981829,0.1673383207219566,0.1789380797623916,0.1916583805282953,0.2020089043327179,0.2107498471482225,0.220658978583196,0.2295634679371676,0.2377637177802036,0.2457950641126406,0.2529018084636552,0.2600146332540698,0.2656008311208588,0.2713787594313769,0.2767265902572032,0.2804771637919699,0.2852865230515584,0.2898965928512584,0.2933526372282269,0.2968187122634329,0.3009009474146165,0.3031183445954828,0.300401196881667,0.2977567304928623,0.2952434325744308,0.292244722102542,0.290139680477217,0.2860727919816271,0.2827149435041566,0.2832980283526153,0.2836713600704857,0.2844434225885183,0.2845046885154582,0.2857729941291585,0.2869172059067529,0.2877018358770183,0.2885990544746157,0.289693377995362,0.2896586627678119,0.2931643529995042,0.2970555861309851,0.3013933213979917,0.3063014918726341,0.3096592391587956,0.3144329896907216,0.3198404935670754,0.3197571228397944,0.3225958147190219,0.3262699128343853,0.3277810826888757,0.3370937416062315,0.3395731935604642,0.0,2.1888636642417163,51.625231412490656,141.19397471079594,202.0598819473099,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95728,47403,452.0098612736086,4940,50.29876316229317,3906,40.0927628280127,1465,14.927711850242352,77.34438518034166,79.69739069305365,63.33412346583962,65.07234535336478,77.1522323189456,79.50962820501057,63.26030661243773,65.00278919729952,0.1921528613960674,187.76248804307727,0.0738168534018939,69.55615606526067,243.23838,170.28584156875078,254093.24335617584,177885.09273018426,481.68599,320.74574565940344,502486.8585993649,334364.42384610925,459.39458,224.16915735817645,474613.770265753,230222.39895567368,2210.448,1058.3464088670107,2273801.1031255224,1070435.219066441,895.49111,410.8733823619429,923406.276115661,417230.4563790563,1421.77846,613.0337715617039,1452400.948520809,611510.2039978907,0.37926,100000,0,1105629,11549.692879826174,0,0.0,0,0.0,41543,433.2483703827512,0,0.0,41624,429.6130703660371,1110572,0,39891,0,0,9739,0,0,85,0.8879324753468161,0,0.0,2,0.0208925288316897,0,0.0,0.0494,0.1302536518483362,0.2965587044534413,0.01465,0.3631067961165048,0.6368932038834951,23.066820122651617,4.078854153381413,0.3172043010752688,0.2828981054787506,0.1981566820276497,0.2017409114183307,11.580545351047991,6.298092034283947,15.754590429111042,11528.98703909738,45.20195082772395,13.586658538595415,14.166606569525012,8.795376589281982,8.653309130321537,0.5911418330773169,0.788235294117647,0.7158999192897498,0.5904392764857881,0.1192893401015228,0.761709120788825,0.9148936170212766,0.8783783783783784,0.7185929648241206,0.1629213483146067,0.5139457047229453,0.694488188976378,0.6467203682393556,0.5460869565217391,0.1065573770491803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.0045319517808441,0.0066051806532127,0.0086428404578369,0.010777395937125,0.0130607840542383,0.0155622592283076,0.0177458033573141,0.0198628807307578,0.0221937992428118,0.0244282318222805,0.0265418603935092,0.0284189637976948,0.0304631260234189,0.032515628546081,0.0345978567516456,0.0366210886959041,0.0384639316381134,0.0403770604252842,0.0423745585983479,0.0569823770149503,0.0707124618025032,0.0838140588617818,0.0963182635580654,0.1092070990941589,0.1245030031300228,0.1358945258222934,0.1466510613395754,0.1573280926238438,0.1673385367527232,0.1785845014318627,0.1895391605365642,0.2003827376616033,0.210065478077415,0.2191572903949582,0.2286827712950866,0.2380123419593139,0.2465979891585505,0.2534684015291595,0.2600746439529239,0.2667815507031828,0.2726783625730994,0.2784573524192594,0.2823331934536299,0.2868265073118593,0.2910803911654807,0.2945390781563126,0.2975000318386164,0.3006424204745622,0.3029203341295082,0.3004708731333244,0.2972883825126097,0.2935821126542558,0.2914459726652138,0.2895139146567718,0.2867551392141556,0.2825784192700915,0.282769356820975,0.2834787944906586,0.2836482804067893,0.2838120494528069,0.2851015268377144,0.2851601601601601,0.285914740077509,0.2852484956006809,0.2861294172590939,0.2879002550297534,0.2925478663496433,0.2965779467680608,0.2985186648232273,0.3017572390116095,0.3052365398798862,0.3101814327576532,0.314922915731178,0.3223056250579186,0.3252562907735321,0.32834919196496,0.3247967479674796,0.3246646591842321,0.3273422562141491,0.0,2.7699975592111983,52.37440383687544,145.65947802557469,194.02872122837263,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95677,47855,455.7626179750619,5003,51.13036570962718,3910,40.34407433343437,1468,15.0401872968425,77.28108161739658,79.6675678258874,63.29287913429015,65.05545283586578,77.0910221541196,79.47876064771368,63.22014471789353,64.98520866237669,0.1900594632769809,188.80717817371817,0.0727344163966208,70.24417348908685,241.81894,169.39809500459216,252745.11115524103,177052.0553577058,483.14073,322.1876194323073,504463.0161898889,336237.5173054207,465.84726,227.80245394444364,483220.2932784264,235392.4109179052,2225.94988,1055.6935822343216,2299276.398716515,1076144.0913012754,888.79707,404.1246424391634,917719.6086833826,411148.0945673079,1417.83452,608.7507608752281,1454309.85503308,613388.4560690302,0.38178,100000,0,1099177,11488.414143420048,0,0.0,0,0.0,41551,433.75105824806377,0,0.0,42164,437.0329337249286,1110230,0,39850,0,0,9447,0,0,85,0.8884057819538655,0,0.0,0,0.0,0,0.0,0.05003,0.131044056786631,0.2934239456326204,0.01468,0.3560229445506692,0.6439770554493308,23.46622439868939,4.023231582043402,0.318158567774936,0.2856777493606138,0.2061381074168798,0.1900255754475703,11.578508931241943,6.444286878374749,15.73770360602724,11586.774250183818,45.04897013983154,13.817678969402175,14.256437685644372,8.868960330059839,8.105893154725152,0.5953964194373401,0.8075201432408237,0.704983922829582,0.5744416873449132,0.1157469717362045,0.7530662305805397,0.9185336048879836,0.8324175824175825,0.7473684210526316,0.1404494382022472,0.5236323036844064,0.7204472843450479,0.6522727272727272,0.5211038961038961,0.1079646017699115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198095527528,0.0045316761118827,0.006697991617362,0.008899635277504,0.011187274983219,0.0135941509510814,0.0156922323959459,0.0175807571364397,0.0199131101456682,0.0218425981842188,0.0243107178377713,0.026500877886501,0.0285488034390201,0.0307869845652935,0.032871990174526,0.0350514397973427,0.0371153029408413,0.039254354098769,0.0413389922190321,0.043380375643618,0.058202827084008,0.0720381131877912,0.0850617180283819,0.0979240975137569,0.1104522962978593,0.1260817129678607,0.1372765487665067,0.1484108725289707,0.1593392494386827,0.1690325351658971,0.181408341332413,0.1916816575998612,0.2023611156489256,0.2116075339465615,0.2208805253184081,0.2304894143219953,0.238448642002906,0.2460096646653975,0.2536587582947004,0.2601302543169674,0.2656526926685741,0.2716461628588166,0.2776934569687196,0.282736594385611,0.286671612565827,0.2909472126295017,0.2941891045710708,0.2975286624203822,0.3010461362958738,0.3042277346795829,0.3019366672061283,0.2980113283995534,0.2945462761600813,0.2923807318202872,0.2900820172370164,0.2867848768601247,0.2840252607587724,0.2847080843238983,0.2854848904149371,0.2854621624030662,0.285553850185303,0.287372918232525,0.2878358819457554,0.2880544242044488,0.2890230410313146,0.2894545265456814,0.2900261720527993,0.2956385315343583,0.2998117023502336,0.3042690611216131,0.3065426468596198,0.3100220843411505,0.3137903074908002,0.3179437294223286,0.3225568076852023,0.3264743073916542,0.3277827782778277,0.3277261033049673,0.3238909673971138,0.3289023927079377,0.0,2.0734114610283347,53.53309011497281,141.64846872268694,195.65851639718707,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95720,47288,450.4492269118261,4907,50.0,3939,40.50355202674467,1457,14.77225240284162,77.3612597271838,79.72737547119624,63.34108899169471,65.08973880098601,77.17404848243866,79.54627269929833,63.26900745408827,65.02283043643345,0.1872112447451428,181.1027718979119,0.0720815376064436,66.90836455256033,242.83336,170.0259200764132,253691.1199331383,177628.20004013088,487.41929,324.0266531850274,508588.2783117425,337890.30733078497,457.81047,223.15973330041788,474737.1604680317,230385.38435305032,2231.7292,1055.0526032991952,2296394.3585457588,1067153.5345791832,904.40283,407.2191192804307,926350.647722524,406935.9896368894,1415.77162,612.0792535160721,1436960.7605516089,601336.6707226235,0.3779,100000,0,1103788,11531.414542415378,0,0.0,0,0.0,41949,437.5783535311325,0,0.0,41461,429.6071876305893,1112846,0,39934,0,0,9791,0,0,89,0.9297952361053072,0,0.0,1,0.0104471374843292,0,0.0,0.04907,0.1298491664461497,0.2969227633992256,0.01457,0.3562792511700468,0.6437207488299532,23.125981347645737,4.091614055638834,0.3082000507743082,0.2734196496572734,0.2183295252602183,0.2000507743082,11.344759411779693,6.119628399657149,15.60697462608274,11427.08250563039,45.09786523609779,13.268574885395712,13.785977100958064,9.511896821816858,8.53141642792715,0.5844122873825844,0.8161559888579387,0.6886326194398682,0.5790697674418605,0.1129441624365482,0.7405857740585774,0.9021739130434784,0.8470254957507082,0.7233009708737864,0.125,0.516399416909621,0.7520259319286872,0.6236933797909407,0.5336391437308868,0.1094771241830065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025931666008245,0.0049375456241382,0.0072354934951594,0.0091637797035486,0.0116139530153564,0.0136453432720311,0.0156425264617706,0.0177770970541685,0.0198861022217223,0.0218673218673218,0.0238688443911291,0.0260771324397884,0.0283242998632123,0.030471912890299,0.0324434767354267,0.0345291016230745,0.036461731233237,0.0385617184662481,0.0407104308130647,0.0427203484313296,0.0572308656155372,0.0704843048388616,0.0833945242840658,0.0958685159675706,0.1076092799696429,0.1232860782510333,0.1346490344337571,0.1449838256576147,0.1547788187285682,0.1637131615904973,0.1754799668357183,0.1865310758911667,0.1979885838543082,0.2076082203760385,0.2159897974889509,0.2266122159876932,0.2349805985460059,0.242869985391617,0.250943674265181,0.2578648020782074,0.2634493122182406,0.2689405443289335,0.2744724865535788,0.2794251388091135,0.2837787069017754,0.2879828906451652,0.2916994369748948,0.2953434329324816,0.2985506871630444,0.3017711710287024,0.298473569643385,0.2956132768012733,0.2927922232991979,0.2895658818610418,0.2870445884428891,0.2834555453712191,0.2803685240108537,0.2810915988096406,0.2817653258984733,0.2813655761024182,0.2814901872994552,0.2829575021682567,0.2823468002923061,0.2842674620487023,0.2842810966119957,0.2854542617920849,0.2873069594152612,0.2908440315138579,0.2941299863650666,0.2986319784912225,0.3044715447154471,0.3069784512137576,0.3104410943606923,0.3142664367643751,0.3173298864370787,0.3199021777104926,0.3222356131364869,0.3249949969981989,0.322071448352257,0.330151153540175,0.0,2.4742031631657446,51.59932026191397,142.91715170689628,201.2816185864488,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95667,47971,457.7126908965474,4923,50.34128800944944,3916,40.50508534813468,1528,15.700293727199556,77.2430810454354,79.64690073391498,63.27207635196621,65.04990267458705,77.04686472140594,79.45137452266479,63.19857101827738,64.97847333881124,0.1962163240294643,195.5262112501828,0.0735053336888356,71.42933577580379,240.49168,168.54502097213424,251383.69552719328,176178.44950320417,480.6371,320.4535463100232,501965.2753823157,334527.95076223643,467.2319,228.11793877680316,485615.0814805523,236301.6898134024,2213.10876,1052.2157829551884,2290094.47353842,1076739.8535907136,892.84646,406.5602573988442,925914.7877533528,417606.8733264818,1475.78714,626.9130820853971,1517482.3084240125,633709.2638411722,0.38258,100000,0,1093144,11426.53161487242,0,0.0,0,0.0,41292,431.1727136839244,0,0.0,42261,439.0751251737799,1117175,0,40151,0,0,9532,0,0,82,0.8362340200905223,0,0.0,1,0.0104529252511315,0,0.0,0.04923,0.128678969104501,0.3103798496851513,0.01528,0.3514619883040936,0.6485380116959064,23.2135983139926,3.9780610049995326,0.3079673135852911,0.2860061287027579,0.2058222676200204,0.2002042900919305,11.414223452243164,6.377347398486161,16.406551098544938,11584.043588462804,45.40450872992845,13.897166704684386,13.814806460004853,9.064686496342178,8.627849068897037,0.5934627170582226,0.8107142857142857,0.685737976782753,0.6240694789081885,0.1096938775510204,0.7495894909688013,0.8933601609657947,0.8407079646017699,0.7766990291262136,0.1363636363636363,0.5229799851742031,0.7447833065810594,0.6251441753171857,0.5716666666666667,0.1019736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021485325117561,0.004381960927515,0.0068931910703227,0.0092969853381968,0.0117583635938278,0.0139416467233565,0.0159775681876115,0.0185120895278549,0.0205947316753926,0.0226004321423816,0.0242026458824735,0.0264849654945777,0.0288261790657973,0.030937075040178,0.0330711587291756,0.0352497156447109,0.0373228640092815,0.0391497488271681,0.0409494190944738,0.0427942954839247,0.0579648052165189,0.0720218705156539,0.0857514802838785,0.0987695902493448,0.1103885821659681,0.1257198509485095,0.1374973443807095,0.1483119956507371,0.1591380822973059,0.1685370332585186,0.1803704942440687,0.191772803642079,0.2017250579920063,0.2106744341389165,0.2195810052787604,0.2299184646957679,0.2384502744212562,0.2457799012868765,0.2534234899710211,0.2604145172753743,0.2652044445989317,0.2714703816436432,0.2772081458678664,0.2817979037248459,0.2861764491255382,0.2904567387789858,0.2939436849162291,0.2973500057359183,0.3010522491663747,0.3042685103176596,0.301234368262182,0.2985768944920036,0.2956612473385129,0.2928984668787966,0.2903288201160541,0.2866098525489715,0.2848109290310311,0.2846882088031294,0.2851651261724556,0.2852370574154132,0.2860922430292341,0.2867891652146365,0.2876953370480539,0.2883751090043154,0.2891253693338778,0.2898308623929839,0.2895180895180895,0.2933530559577013,0.2979179855103046,0.3007938724219093,0.3065616557534685,0.3095491846957263,0.3118971061093247,0.3174095238095238,0.3209794837855724,0.3290269052980917,0.3343648460467275,0.3425718361524353,0.3464804163242947,0.3525812619502868,0.0,1.628797402254546,53.77687894424184,147.42383332249273,193.6415741250907,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95837,47660,453.7913332011644,4964,50.82588144453603,3911,40.433235597942335,1436,14.785521249621754,77.44904619750217,79.77574320096282,63.38601454967061,65.10699281204724,77.26831025848999,79.59519873978739,63.31770419378503,65.04060340172315,0.1807359390121803,180.5444611754297,0.0683103558855862,66.38941032409207,242.69938,169.94639125268853,253241.8377036009,177328.58003974307,483.53184,321.9924460223397,504187.89194152574,335631.4951661047,464.00651,226.2730600047371,482006.2606300281,234409.84853063463,2208.81928,1052.3933638139902,2284917.6831495143,1078258.5471310555,882.67401,403.06928599565424,912042.9374876092,411604.98137009074,1391.37722,591.0210697934759,1433074.8667007524,598827.1520072235,0.38167,100000,0,1103179,11510.99262289095,0,0.0,0,0.0,41527,432.93300082431625,0,0.0,42003,436.10505337187095,1118322,0,40118,0,0,9754,0,0,83,0.8660538205494746,0,0.0,2,0.0208687667602283,0,0.0,0.04964,0.1300599994759871,0.2892828364222401,0.01436,0.3560270009643201,0.6439729990356798,23.311877134836088,4.043637828082569,0.3252365124009205,0.2886729736640245,0.1920225006392227,0.1940680132958322,11.3957840292458,6.282416600999454,15.259571870627012,11519.974078571682,44.999583481424,13.87142517217981,14.441766776679088,8.390162924797375,8.296228607767747,0.5983124520582971,0.8148804251550045,0.6973270440251572,0.5885486018641811,0.1198945981554677,0.7713815789473685,0.9051383399209486,0.8810810810810811,0.7383720930232558,0.1607142857142857,0.5202226345083488,0.7415730337078652,0.6219512195121951,0.5440414507772021,0.1082910321489001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023191517373383,0.0045513060930737,0.006920134343957,0.0092949076096341,0.0114605896051333,0.0137965442456701,0.0159864604467644,0.018187570805989,0.0200408788962698,0.0219070714512283,0.0243377568273812,0.026559934318555,0.0287212171052631,0.0309906719107139,0.0329001650165016,0.0347756012893627,0.0365256631855677,0.0385528676157985,0.0405199015054701,0.0425051270573293,0.0574140718719032,0.071397206423553,0.0846276383910792,0.0977600806875249,0.1098256150887729,0.1250673683543099,0.1365501012306681,0.1471260700802892,0.1564920516376827,0.1655814949668023,0.1780633367385343,0.1897497947366146,0.2003647733194372,0.2090521239102207,0.2188656047948889,0.2291906109097339,0.2381943903172287,0.2462941975156255,0.2541927890817735,0.2604385564184559,0.2657704955864536,0.271921538443597,0.277392494043828,0.2817658441031031,0.2857557963557116,0.2896039299969297,0.2933118955030411,0.2968292775617233,0.2994662747524752,0.3016444257644216,0.2988488803720032,0.2958122714009781,0.2934473333800547,0.2912340743723217,0.2879629082747623,0.2847974206107799,0.2811116344795101,0.2816284672483396,0.2830089693687595,0.2828390017863144,0.2834707061706393,0.2845377362181619,0.2853822046034744,0.2859993348852677,0.2867111216956418,0.2891119691119691,0.2903598175572949,0.294679992550748,0.2967262111628553,0.2998746769013863,0.3037803780378038,0.3067578227714962,0.308743680958622,0.3125376279349789,0.314963571828881,0.3181818181818182,0.3188493565480696,0.3215938820688267,0.327637645782479,0.332459752901535,0.0,1.4891707866273245,53.66863785895544,144.0222924119024,193.79781127816764,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95801,47737,454.83867600546967,4852,49.38361812507176,3837,39.40459911691945,1440,14.644941075771651,77.3497797498425,79.6839749668202,63.33168066437421,65.06055905359469,77.1643376000477,79.50412217791762,63.26187966754388,64.99585057881553,0.1854421497947953,179.85278890257916,0.069800996830331,64.70847477915243,242.75174,170.04388648818951,253391.6556194612,177496.98488344537,482.03815,321.0802068419953,502535.4015093788,334522.8072989572,466.41582,227.7175030819727,483121.71062932536,234827.90835272596,2203.77764,1049.9440510890345,2264192.7746056933,1059793.4776128188,887.81404,410.5942929565352,906832.1520652184,408720.3610621205,1405.28714,595.7482788219322,1429437.0622436092,586993.1683366912,0.37899,100000,0,1103417,11517.802528157326,0,0.0,0,0.0,41505,432.57377271636,0,0.0,42181,436.52989008465465,1112233,0,39884,0,0,9734,0,0,67,0.6993663949228087,0,0.0,3,0.0313149132054988,0,0.0,0.04852,0.1280244861341987,0.2967848309975268,0.0144,0.3508008700810757,0.6491991299189243,23.203865408901432,4.026111525623644,0.3117018504039614,0.2767787333854574,0.2035444357571019,0.2079749804534792,11.180907294441342,6.114557923007187,15.24699327501426,11500.009010082204,44.23718824071282,13.22702713015858,13.612789460071513,8.724973454638109,8.672398195844622,0.5934323690383112,0.827683615819209,0.7090301003344481,0.5787451984635084,0.1228070175438596,0.776282590412111,0.9232409381663113,0.9013698630136986,0.7135416666666666,0.147239263803681,0.5113293051359517,0.7521079258010118,0.6245487364620939,0.534804753820034,0.1165354330708661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046843156539284,0.0070534028863133,0.0093671580530128,0.0114840809683653,0.0137773025813349,0.0159665579119086,0.018047630227739,0.0202070791213957,0.0222827255140789,0.0241924736804338,0.0262333795369372,0.0284201326409953,0.0306032086002018,0.0323894992005776,0.0344699318040917,0.0365290659158661,0.0387092759124996,0.0409155610044988,0.0427399371134664,0.0569106539248007,0.07079442428552,0.0838539264601064,0.0969586144565651,0.109002940897448,0.1243840541397906,0.1359378812147956,0.1469868233390808,0.157364581219223,0.1660695898403981,0.1779638189438752,0.19,0.2011856847601436,0.2100522507159878,0.2180336164033968,0.2267857340704876,0.2354529529250304,0.2435711474672513,0.2516334679431916,0.2582554053590028,0.2639971323512407,0.2690851292599691,0.2741407238374499,0.2789492580181905,0.2839293512543063,0.2883926923786676,0.2922270088031466,0.2958597917195834,0.2993797648274971,0.3020274809964825,0.2993707647628267,0.2961567548985905,0.2933196357956065,0.2905011781372421,0.2888846005403319,0.2862582578908735,0.282625873131262,0.2831616358484695,0.2840387992021956,0.2847672678024093,0.2854072842113131,0.2858691154156896,0.2870256399557715,0.2879677835624972,0.2894478850338347,0.2897499028119735,0.28995756718529,0.2937344139650872,0.2984976232608167,0.3034064212999217,0.307394223403776,0.3130640083945435,0.3191688506177461,0.3247688343186297,0.3317186772240335,0.3389057750759878,0.3379833206974981,0.3457627118644067,0.3517017828200972,0.3563482930571538,0.0,2.5214449959823244,51.29004066258352,143.23630707219868,189.67827050800656,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95804,47749,454.6469875996827,4893,49.9248465617302,3895,40.13402363158114,1484,15.093315519185005,77.41775944651599,79.74388733316214,63.37436231324406,65.0941756659296,77.2248528983869,79.55318068743202,63.30136516600372,65.0238930165014,0.1929065481290877,190.70664573011695,0.0729971472403434,70.28264942819362,242.13816,169.54257466551303,252743.26750448832,176968.1586003852,483.06348,321.7704195613758,503700.4822345622,335351.1074989625,463.28812,225.76923221580387,479720.3665817711,232800.5015326035,2203.15836,1045.748324493257,2271279.362030813,1063629.287045849,894.05703,411.33604244081886,917146.2569412552,413666.00946445786,1440.40696,616.614069947206,1467137.6977996742,616346.9203188021,0.37925,100000,0,1100628,11488.330341113106,0,0.0,0,0.0,41648,434.16767567116193,0,0.0,41858,433.11343993987725,1117871,0,40152,0,0,9556,0,0,92,0.9498559559099828,0,0.0,0,0.0,0,0.0,0.04893,0.1290177982860909,0.3032904148783977,0.01484,0.3565967457361301,0.6434032542638698,23.37135987657328,4.022757854318884,0.3021822849807445,0.2942233632862644,0.2012836970474968,0.2023106546854942,11.51735530872353,6.349705673794292,15.82470536901631,11517.210129780731,44.69363977084577,14.06224531976691,13.331848062193703,8.615130578081066,8.684415810804087,0.5917843388960206,0.8080279232111692,0.703483432455395,0.5778061224489796,0.1243654822335025,0.7679180887372014,0.9109311740890688,0.8674698795180723,0.7696969696969697,0.1933701657458563,0.5159750275431509,0.7300613496932515,0.6390532544378699,0.5266558966074314,0.1037891268533772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365141404833,0.0044904868579769,0.0070217450863004,0.0095265178444476,0.01162246807126,0.0138442118978785,0.0160432167974722,0.0183616395852045,0.020380629203377,0.0227105252384656,0.0248260027265552,0.0267920383505958,0.0289364939043194,0.0311216348381119,0.0330057845189363,0.0350134269778971,0.0371727206871572,0.0388347501555048,0.0409291116097398,0.0429332889147997,0.0571842917953426,0.0707707425178494,0.0847352808611888,0.0978907119897476,0.1104674432811611,0.1259482303222398,0.137466364387567,0.1479181729256156,0.1577992615831145,0.1667345146015897,0.1786924210322539,0.1902189765251115,0.201485325892227,0.210326905858974,0.2183757772846125,0.2282708496963394,0.2367714104178974,0.2445844422733551,0.2517640130021633,0.2580582457664909,0.2635730536916627,0.2697636416690983,0.2753919161393899,0.2800598086124402,0.2845330326507353,0.2884120910891576,0.2923180660306678,0.2962205943962726,0.299571192395123,0.3026596164470049,0.3003073124253526,0.2970290233120075,0.2949912188268352,0.2918101274940575,0.289129855123989,0.2848482997663801,0.2820654316121403,0.2819976467512093,0.2820064505177389,0.2828876151266171,0.2843860629774548,0.2849807948577251,0.2868603732801263,0.2871953921134249,0.2869020882114015,0.2864129169146376,0.286921381337252,0.290663589871523,0.2959563297520948,0.3000314415972331,0.3035456513893901,0.3088421052631579,0.3125701459034792,0.3149233543733092,0.3197837031512213,0.3210662892191555,0.3245358293693417,0.3253713368125251,0.3244695138329304,0.3253787878787879,0.0,2.030754879214477,50.98745647366712,146.45891243680248,195.362211602319,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95721,47597,454.2785804577888,4913,50.08305387532516,3874,39.86586015607861,1477,14.991485671900628,77.3893283971574,79.74935592853436,63.35181630130408,65.0932302463273,77.18841185552202,79.55341624565737,63.27508152406055,65.02112555301211,0.2009165416353795,195.9396828769826,0.0767347772435229,72.10469331518254,242.43472,169.6998275392763,253272.2391115847,177285.89080690368,478.79924,319.0192238445405,499604.444165857,332681.8084271377,461.70497,225.5862938605281,478618.8192768567,232779.7729480275,2212.4296,1062.182498412373,2278558.3518768083,1076891.9447272525,899.59363,417.98600521918473,923732.9739555584,420597.173076297,1442.74238,628.3373957565226,1467280.6803104857,622822.8387253,0.38036,100000,0,1101976,11512.374505072032,0,0.0,0,0.0,41190,429.6967227672088,0,0.0,41788,432.8621723550736,1117341,0,40122,0,0,9600,0,0,80,0.8357622674230315,0,0.0,0,0.0,0,0.0,0.04913,0.1291671048480387,0.3006309790352127,0.01477,0.3477754031474645,0.6522245968525354,23.278164543554716,4.051126532733677,0.3082085699535364,0.2813629323696437,0.2013422818791946,0.2090862157976251,11.142172003528824,5.902389725165613,15.968599683380928,11494.211424062893,44.83185853125746,13.54236406335217,13.61496804464729,8.722077030920746,8.952449392337257,0.5929272070211667,0.8192660550458716,0.7110552763819096,0.5974358974358974,0.1098765432098765,0.7429519071310116,0.903846153846154,0.855072463768116,0.7320574162679426,0.1358695652173913,0.525112443778111,0.7556270096463023,0.6525323910482921,0.5481611208406305,0.1022364217252396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483972573604,0.0044189039901892,0.006613716360833,0.0088137038879806,0.0110101256557277,0.0131710196852798,0.0154390184249143,0.0175608661047733,0.0195367181991886,0.0216721750964401,0.0238753970693718,0.0260598350227767,0.0281237155774763,0.0300463201235203,0.0320421591073159,0.0340914962436317,0.0362038264038429,0.0382441109048098,0.0400278563113254,0.0419609558930766,0.0564402443481438,0.070412808036415,0.0841619467170128,0.0970285786385717,0.1092312071091995,0.1255076142131979,0.1368004582290296,0.14804011327102,0.1592188618372557,0.1684537851168775,0.1792063748452054,0.1907213707016841,0.2009196951743181,0.2103530852587724,0.2200534729939375,0.2291041221238742,0.2378385015515817,0.2460155889729948,0.2527885259108806,0.2594107269686347,0.2646558802780251,0.2702032895736647,0.2760438832931385,0.2797787250347239,0.2840947710831674,0.2881090994129014,0.2918756017956958,0.2957211300181728,0.2990296286712381,0.3016471208327843,0.2980618124672603,0.2949995881044567,0.293271188106302,0.2904393211932465,0.2876416142169566,0.2845964949742995,0.282012507285415,0.2831488555849414,0.2832217729604838,0.2840392268334281,0.2847745061498323,0.2849617705446469,0.2855565048867401,0.2852378835037794,0.2837256027554535,0.2856995220255781,0.2869852567361464,0.2912881144990666,0.2955743618201998,0.2984250117536436,0.2994910139182919,0.3031052631578947,0.3067032829858944,0.3114815649170233,0.3203161320316132,0.3228825456247075,0.3263491106421465,0.3320031923383879,0.3306541019955654,0.326271186440678,0.0,2.358161248399645,52.258579528407104,148.09944924697604,187.7852901609808,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95668,47553,453.5267801145628,5004,50.90521386461512,4048,41.68583016264581,1546,15.794204958815904,77.35982293729873,79.734205287411,63.33991942654043,65.08920866176572,77.15798164415938,79.53543582024992,63.26343711891097,65.01596683510745,0.2018412931393527,198.76946716108532,0.0764823076294618,73.2418266582755,242.1485,169.5542448093639,253113.37124221263,177231.93210829524,483.60829,321.5011839683342,504858.77200317767,335423.3835507855,465.48333,227.45355850133515,482058.817995568,234286.76726737985,2314.14592,1102.4762006259173,2386196.721996906,1120149.5883155714,928.8485,423.5786062297192,957651.5658318351,429913.9851170567,1510.62834,650.03693635905,1546131.9563490404,652014.7509934597,0.37775,100000,0,1100675,11505.153238282392,0,0.0,0,0.0,41688,435.0880127106242,0,0.0,42082,435.40159719028304,1114446,0,40021,0,0,9520,0,0,78,0.8048668311243048,0,0.0,2,0.0209056319772546,0,0.0,0.05004,0.13246856386499,0.3089528377298161,0.01546,0.343599615014437,0.6564003849855631,22.998220780881542,4.192715915555388,0.3095355731225296,0.2774209486166007,0.2023221343873517,0.2107213438735178,11.37832520306105,5.987169653995454,16.58209081045433,11475.868138458158,46.534248868080525,13.784916076757664,14.206116935840704,9.17553256187495,9.3676832936072,0.5815217391304348,0.8103294746215495,0.7039106145251397,0.5702075702075702,0.1113716295427901,0.754950495049505,0.9264069264069263,0.8536585365853658,0.7628865979381443,0.1283422459893048,0.5074047954866009,0.7291981845688351,0.6414027149321267,0.5104,0.1066066066066066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392878843115,0.0049766371717294,0.0071120580327702,0.0093640186061627,0.0116825280624694,0.0135782991500839,0.0156512701372543,0.0179773905236093,0.0200310527283499,0.0222399541697356,0.0242075931731104,0.0262323672736599,0.0281623549484546,0.0302406276706376,0.0323159599376992,0.0343754844710867,0.0367820613690007,0.0386346664454032,0.0406699310731996,0.0427174955187794,0.0579601132457872,0.0719206768019432,0.084768531637333,0.097383399791682,0.1094751940600742,0.1247764857744437,0.1362521891418563,0.1472850052190955,0.1566963140340374,0.165364303808338,0.1781973360920729,0.1899053559439499,0.1998890049621311,0.2088609673076712,0.2174353552706929,0.2271458324101564,0.2355784256820109,0.243740373047907,0.2509612658084273,0.2576295244854507,0.2641426522965909,0.2702895500046777,0.2750511610300815,0.2791652698625544,0.2833011992675858,0.2874963094183643,0.2900711877107531,0.2936919091878714,0.2967920311107092,0.3006297428330522,0.2978711973675374,0.2954920059337399,0.2936765843708236,0.2907583621683968,0.2880256022757578,0.2850377341195881,0.2821380029712046,0.28238129590766,0.282850703455812,0.283701100626126,0.284143193805409,0.2837283590330086,0.285290306399699,0.2847589112552665,0.2881161086362983,0.2898092473564171,0.2908334983171649,0.2943324386742401,0.2989525698576747,0.3034588717302238,0.3091492631769279,0.3109079378501215,0.3143846395971041,0.314548634877177,0.3171942311294249,0.3170093902294069,0.3202135774218154,0.3231511254019292,0.3295060080106809,0.3325783314458286,0.0,2.3626531134832343,52.54313872535269,151.90849161446386,205.46832436677823,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95843,47372,450.47629978193504,4860,49.43501351168056,3866,39.65860834907088,1483,15.003703974207818,77.34109898624328,79.632621887595,63.34986309044478,65.04463776972172,77.14484145960522,79.44200082971291,63.27481129905617,64.97451664939841,0.1962575266380639,190.62105788208328,0.0750517913886099,70.1211203233072,243.64868,170.62090028951522,254216.45816595893,178021.24337668397,480.7329,319.5031324693879,500902.94544202497,332680.1565783499,456.73589,222.51752079757384,472612.2825871477,229089.5974032624,2204.34104,1048.4365079093366,2265039.07431946,1058999.4761321505,892.79873,406.1803900899488,915581.5135168976,407858.6821776662,1442.65468,627.8399570451086,1462824.7028995336,619772.7086172062,0.37918,100000,0,1107494,11555.293552998131,0,0.0,0,0.0,41433,431.5599469966508,0,0.0,41297,426.864768423359,1111535,0,39911,0,0,9701,0,0,91,0.949469444821218,0,0.0,1,0.0104337301628705,0,0.0,0.0486,0.1281713170525871,0.3051440329218107,0.01483,0.3716761867244436,0.6283238132755564,23.020958997087224,4.142730319528488,0.3028970512157268,0.276513191929643,0.214692188308329,0.2058975685463011,11.488301688848017,6.226221292359014,16.036609253420963,11431.32477363436,44.42871324653191,13.112539118774686,13.293410812022003,9.194290439911205,8.82847287582403,0.578375581996896,0.7998129092609916,0.6840307429547395,0.5807228915662651,0.1231155778894472,0.7487266553480475,0.9251700680272108,0.8431952662721893,0.7652582159624414,0.1397849462365591,0.5037202380952381,0.7117834394904459,0.6194477791116446,0.5170178282009724,0.1180327868852459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657181914839,0.0040429218469769,0.0062988771566807,0.0084472150587853,0.0104791332100095,0.0129040136774403,0.0151186364701447,0.0173731191022698,0.0195699913181145,0.021768484798887,0.0238768360887468,0.0259686980779881,0.0281632275757233,0.030187669767059,0.0319951363271026,0.0343695813723061,0.0365525798779857,0.0385942372846234,0.0405830504251409,0.0428757217916038,0.0571336211391269,0.0705140934126229,0.0844489137493977,0.097018452199666,0.1088107999957878,0.1243292914783049,0.1353080769556742,0.1459753128422127,0.1560895965168767,0.1639818655348702,0.1755900173265462,0.1870721446570127,0.1975671004141799,0.2078505531021818,0.2169311004995268,0.2260580545091956,0.235339402865176,0.2432924977219803,0.2506354970494779,0.2565564946517327,0.262365815287803,0.268419883300787,0.274458321506292,0.2786694775171885,0.2832372047841661,0.2868780734295468,0.2914488003802757,0.294244046332439,0.2967901298432569,0.3000567140162756,0.2967457253171539,0.294972926916417,0.2915998085747262,0.2894843334489536,0.287466000802604,0.2839971212886827,0.2815407988858644,0.2822171507380104,0.2830392140081817,0.283532655399599,0.2835862949883537,0.283393037385952,0.2848868930205229,0.2861818507890961,0.2868375985913794,0.2886107699945131,0.2894324239573534,0.294748765063084,0.2989157047918853,0.3038440243613066,0.3088428590853465,0.3113013155809161,0.317394578313253,0.3255251624603295,0.3294835680751173,0.3297922568460812,0.3313051414663827,0.3357314148681055,0.341284901057197,0.3444613050075872,0.0,2.5722088311018365,50.79549228102434,141.0234089474549,197.50090363721617,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95642,47937,457.5604859789632,4971,50.720394805629326,3906,40.26473724932561,1472,15.035235565964744,77.31769350596971,79.74021319148349,63.289715480586615,65.08128951380488,77.12924831705509,79.55559919266359,63.21909447751579,65.01479940636082,0.1884451889146277,184.61399881989848,0.0706210030708263,66.49010744405359,240.21162,168.28122937240656,251156.5839275632,175948.63069823562,481.72068,320.2887565130769,503082.06645615946,334294.3753926904,462.66721,225.86720018141224,480207.1683988206,233416.5517939481,2228.99004,1049.290505759229,2299602.1831412977,1066148.7482060485,909.39547,410.4020766129864,931800.6106104013,410101.4426068784,1435.27838,600.9009707244203,1467214.9892306726,598103.9570531736,0.38288,100000,0,1091871,11416.208360343782,0,0.0,0,0.0,41533,433.6379414901404,0,0.0,41867,434.27573660107487,1121526,0,40221,0,0,9495,0,0,79,0.8155412893916899,0,0.0,0,0.0,0,0.0,0.04971,0.1298318010865023,0.296117481392074,0.01472,0.3523606811145511,0.6476393188854489,23.165167064450696,4.09936247694445,0.3046594982078853,0.2785458269329237,0.20942140296979,0.2073732718894009,11.404143562178673,6.0541068743024935,15.402843567108182,11624.6232771717,44.62101505494425,13.489733021997944,13.525479050967515,8.878783431579869,8.727019550398927,0.5816692268305171,0.8106617647058824,0.6915966386554622,0.5647921760391198,0.1296296296296296,0.7566409597257926,0.9106382978723404,0.8599439775910365,0.7094972067039106,0.1304347826086956,0.5071193866374589,0.7346278317152104,0.6194477791116446,0.5242566510172144,0.1294298921417565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021881838074398,0.00437066482781,0.006497461928934,0.0084452077765017,0.010784742641448,0.0128973105134474,0.0151388407157284,0.0172561760559063,0.0195881775012281,0.0219461443053804,0.0242572936128277,0.0264153659489583,0.0283186934269738,0.0304518258716732,0.0325460293844151,0.0345723214470498,0.0366822187662001,0.0387331989945364,0.0407417813992694,0.042870699633967,0.0573297663336538,0.0717848236551478,0.0852161125991282,0.0987508689149622,0.1111193249622456,0.1267872651401216,0.1376012242555633,0.1482357957573819,0.15869144281481,0.1680075620052203,0.1804688089921577,0.1922760175111612,0.2030693489886832,0.2124796040167767,0.2215965442002953,0.2307990905562025,0.2391807180449867,0.2481786345670949,0.2558150094788344,0.2623523616409481,0.2684792925434636,0.2743838965109887,0.2797623274862107,0.2851217377752736,0.2892734741498748,0.293324134872433,0.2970150933486726,0.3001766941665501,0.3023632033959724,0.3060378951812952,0.3030376441770636,0.2996743118635683,0.2962327321835523,0.2937581086925184,0.2905533503169619,0.2878403569354888,0.2849650901968218,0.2854853479853479,0.2854179419166157,0.2857725595913734,0.2860037928085375,0.2870691513334509,0.2874831763122476,0.2884734513274336,0.2895751058666793,0.2903408944285309,0.2911674325505342,0.2956168125659651,0.3001145475372279,0.3032184540417338,0.3060947468440342,0.3095991561181435,0.3136309561079456,0.3150105708245243,0.3157648817867489,0.3219861486089916,0.3253980288097043,0.3279889152810768,0.3273905996758509,0.336838152459632,0.0,2.20195428747083,50.76902420825982,140.42719206633433,202.98193033528307,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95709,47973,456.4147572328621,4934,50.32964506995162,3912,40.27834372942984,1549,15.776990669633994,77.34880342590687,79.7057852194142,63.338894218876014,65.07685245642445,77.15289837635322,79.5151667685108,63.26483857157987,65.00767853229362,0.1959050495536445,190.61845090340057,0.0740556472961415,69.17392413082268,243.02168,170.25810349643837,253917.27005819723,177891.4245227078,486.52925,323.85517070448924,507754.9028826965,337787.5233306055,466.31667,227.2264352137882,483901.3885841457,234754.5376571745,2227.45168,1053.6578896155936,2296038.6170579568,1069808.9767392967,912.53682,414.2669291075349,938590.3311078371,418064.9639045821,1501.16102,635.5440742720876,1531606.7454471367,631541.0079957137,0.38163,100000,0,1104644,11541.69409355442,0,0.0,0,0.0,41804,436.15542947894136,0,0.0,42116,436.63605303576463,1108731,0,39792,0,0,9583,0,0,90,0.9403504372629532,0,0.0,1,0.0104483381918105,0,0.0,0.04934,0.1292875298063569,0.3139440616132955,0.01549,0.363054855592169,0.636945144407831,23.648013652386133,4.0606511231892615,0.2957566462167689,0.2934560327198364,0.2062883435582822,0.2044989775051124,11.165677022055648,6.013268527177615,16.482132606816524,11582.141672192569,45.04468138663009,14.19574537643556,13.098420612644,8.906278627681187,8.844236769869354,0.5866564417177914,0.7996515679442509,0.6957649092480553,0.5898389095415117,0.12,0.7721843003412969,0.9238683127572016,0.8722741433021807,0.7743589743589744,0.1470588235294117,0.5072992700729927,0.7084592145015106,0.6279904306220095,0.5310457516339869,0.1126984126984127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391694429536,0.0047743583505656,0.0072954188016843,0.0097217566208514,0.0117435334309419,0.0137730951290273,0.0157583047081248,0.0182811064611615,0.0205610341832302,0.0225474643058185,0.0249267162741118,0.0268999846051213,0.0291780188145787,0.0311431865914425,0.0334842842553718,0.0354319724727982,0.037658290104474,0.0396140278065988,0.041621177620429,0.0437940232567832,0.0583154926635684,0.0720475572487126,0.0853863264363956,0.0988689568099321,0.1114967141696817,0.1259071194329842,0.1372723799821724,0.1480740157144986,0.1579374746244417,0.1674068829385513,0.1797156091780674,0.191835365655735,0.2026494964216571,0.212007874015748,0.2207149222695316,0.2296613080136053,0.2388068035871835,0.246713636159006,0.2540858945839197,0.2609776210000687,0.2668811405691273,0.272553995112083,0.2775661350622308,0.2826110385955668,0.2876509496935494,0.291589728438831,0.2947803604661329,0.2979425958851918,0.3011070778054798,0.3036706427574585,0.3010243863092517,0.2979258241758242,0.2951559818841598,0.2931517127932815,0.2904407946469637,0.2862208093899009,0.2822838004360327,0.2813144372074755,0.281267029972752,0.2823881234647015,0.2829755888331499,0.2845039413418254,0.2846094515436409,0.2846580406654344,0.2847488496932515,0.2857254067519527,0.2880888787861567,0.2920439946103468,0.2958656330749354,0.2988069842774749,0.3026011167097916,0.3063024763524285,0.3104232469993683,0.3110551613641565,0.3145601808250141,0.3213056379821958,0.322381613450563,0.3238075657894737,0.3235048678720445,0.329984544049459,0.0,2.376936917721824,50.7785063201987,148.28199235438578,197.08748771240667,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95640,47545,453.0112923462986,5031,51.547469677959015,4021,41.48891677122543,1509,15.391049769970724,77.26744378178137,79.68327584478524,63.28338998351626,65.0698453051802,77.0771224338631,79.4966025884731,63.21196815837225,65.00214841668827,0.190321347918271,186.67325631214737,0.0714218251440073,67.69688849192335,242.26092,169.56350696197384,253305.0188205772,177293.50372435572,480.66426,319.96606729437275,502025.4705144291,334012.1774744274,463.72477,226.3079777953669,481878.0322040987,234258.3982766508,2295.18324,1078.2498542316462,2369157.9673776664,1097330.8141843395,929.06709,421.0259180232737,958174.8536177332,426973.2936253386,1461.5675,615.3942996322173,1492621.9782517776,614313.2982734893,0.37955,100000,0,1101186,11513.864491844415,0,0.0,0,0.0,41282,431.0644081974069,0,0.0,42007,436.1773316603931,1114702,0,39974,0,0,9687,0,0,72,0.7528230865746549,0,0.0,1,0.0104558762024257,0,0.0,0.05031,0.1325517059675932,0.2999403697078115,0.01509,0.3609208523592085,0.6390791476407914,23.13113045255904,3.9996232529962703,0.3118627207162397,0.2822680925142999,0.2049241482218353,0.2009450385476249,11.610361882838276,6.407142504256062,16.16470246814367,11532.983744240037,46.050351347053166,13.858269909126124,14.354043769325592,9.050120642686156,8.78791702591529,0.5859238995274807,0.8,0.6874003189792663,0.5970873786407767,0.1163366336633663,0.7856540084388186,0.9334763948497854,0.8794520547945206,0.75,0.1623376623376623,0.5024682651622003,0.7070254110612855,0.608548931383577,0.5480769230769231,0.1055045871559633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0045021293855201,0.0069545971410006,0.0092675392244532,0.0116583078159492,0.013881533384935,0.0160287130126231,0.0181114661711707,0.0203887565312528,0.0225189706198605,0.0244297669839186,0.0268318489527155,0.0288868085631693,0.0311076764554353,0.0329070283549582,0.0351711517983603,0.0371920085341729,0.0391198297784005,0.04121244903054,0.0433096315449256,0.0586200409681869,0.0723315562910439,0.0861250551343177,0.0995187802078616,0.1116588898507273,0.1265194189149125,0.137007104701422,0.1472167760634217,0.1572282649383429,0.1663570469798657,0.1789723405402491,0.1905030111346995,0.2003264595462212,0.2091689917391542,0.2187768311207978,0.2288103677447939,0.2375016738829621,0.2461550577725774,0.2538368977886754,0.2601989365603227,0.2656805213143975,0.2709412603931566,0.2761089807319036,0.2812125281788095,0.2851743832786487,0.2896145214195871,0.2933338337962615,0.295848960650944,0.2988532525691802,0.3024747574737675,0.29980735811184,0.2968797292463473,0.2934332478801025,0.2904116320749262,0.2874881037354271,0.2832092866550277,0.2802882711649639,0.2801560886032365,0.2804189481943946,0.2806138818580442,0.2816271541642497,0.2823387511369478,0.2847662710125814,0.2862685635285198,0.2875311960069111,0.2892626536138304,0.2900616004769069,0.2942723828014906,0.2976548827441372,0.301609961138869,0.3054031815688425,0.3093532870122928,0.3122504594714494,0.3205236163209063,0.3238813000471031,0.327933293627159,0.3334871558221812,0.3316388775925172,0.3268635724331927,0.3347791798107255,0.0,2.158868865144837,51.603504968696114,148.38142360280207,208.69012022701224,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95840,47442,450.8242904841402,5099,52.065943238731215,4033,41.48580968280467,1520,15.473706176961604,77.40182060844235,79.71579307888285,63.36325590393732,65.07575509406803,77.20554465750656,79.52280122671405,63.28912741908238,65.00530151994313,0.1962759509357852,192.99185216880232,0.0741284848549455,70.4535741248975,242.66462,169.9067268638142,253197.4123539232,177281.45201374494,483.95897,322.43738362792226,504312.1452420701,335783.8775017126,465.65624,227.12516632631872,482482.7942404007,234384.71495302772,2280.7878,1083.5251370948636,2346184.5575959934,1097154.2895763712,942.32777,431.2236208235945,964350.699081803,431338.1374038965,1473.91374,631.5970170762637,1501963.6686143572,627862.202329143,0.3808,100000,0,1103021,11508.97328881469,0,0.0,0,0.0,41600,433.3994156928214,0,0.0,42197,436.8948247078464,1114068,0,40045,0,0,9537,0,0,91,0.9494991652754592,0,0.0,0,0.0,0,0.0,0.05099,0.1339023109243697,0.2980976662090606,0.0152,0.3671552048102217,0.6328447951897783,23.237310349885345,4.03525757329565,0.3206050086784032,0.2809323084552442,0.2018348623853211,0.1966278204810315,11.310536295836732,6.227691200907064,16.29533894858712,11576.715001260702,46.43817621940423,14.01111864605569,14.658505173759462,9.006970873867036,8.761581525722047,0.5911232333250682,0.8314210061782877,0.6805877803557618,0.5773955773955773,0.116015132408575,0.7530168946098149,0.9278557114228456,0.8637602179836512,0.6935483870967742,0.1413612565445026,0.5189964157706093,0.7555205047318612,0.6079913606911447,0.5429936305732485,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225804491788,0.0045201633745147,0.0067869171772917,0.0090191657271702,0.011569626172975,0.0142004967628975,0.0164398919635122,0.0187283119003878,0.0205656578046262,0.0228552127899121,0.0248887795477376,0.0270972112453426,0.029377299919824,0.0312184674944914,0.0336754164303027,0.035740855548667,0.0377608479629016,0.0396930734135213,0.0415874697493742,0.0433764530799571,0.0582879669607659,0.0726442116707437,0.0861642601169394,0.0991565391846895,0.1113275902015712,0.1265128952537862,0.1378736837644865,0.1487871250292323,0.1584721614497177,0.1681644369704694,0.1797874857499301,0.1912196914033798,0.2019619345587276,0.2115855257407569,0.2201642245501412,0.2293728276991875,0.2372673439573552,0.2458371279837195,0.2530509935577534,0.2598017898423016,0.2655512903524188,0.2709667617222196,0.2766085743337511,0.2810497442715632,0.2852391357125516,0.2900453157324401,0.2930814622193329,0.2968337060378125,0.2994879222055552,0.3030885995888894,0.3003481323171633,0.2979950563032134,0.2959206607855256,0.2930587557603686,0.2904706213267405,0.2875660325506122,0.2830304751088396,0.2830990519777705,0.283248005714966,0.2838214659964833,0.2845722378547602,0.2858630923134372,0.2865055073187998,0.2869744911563416,0.2871416988601135,0.2881404125523445,0.28857828603699,0.2931800528196365,0.2983753384711518,0.3026719056974459,0.3075220239439801,0.3108920286798819,0.3123791705643904,0.316039156626506,0.319209821840672,0.3207459207459207,0.324181626187962,0.3307276007215874,0.3360433604336043,0.3377458396369138,0.0,2.072118911032734,54.24638871453964,150.63826968584948,199.6738095287379,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95716,47684,454.66797609595056,4999,51.402064440636885,3925,40.6306155710644,1403,14.43854736930085,77.32145341825886,79.70813564275963,63.3143933609397,65.08001300545499,77.15439070468409,79.54166166317403,63.2524812270114,65.01989318762348,0.1670627135747651,166.47397958560362,0.0619121339282955,60.11981783150589,242.12628,169.59254803615468,252962.76484600277,177182.61799088411,481.53453,319.9381632822505,502714.3110869656,333885.5958066056,461.07964,224.30652918031413,479380.4379623052,232534.8374711444,2225.28688,1038.8452500084677,2304610.5562288435,1065354.6736877402,896.09111,398.68812177840033,928421.7894604872,408859.6680516604,1374.1034,569.2037055722924,1415309.561619792,577108.6226037047,0.38089,100000,0,1100574,11498.307493000126,0,0.0,0,0.0,41419,432.3310627272348,0,0.0,41812,434.4414726900414,1118272,0,40103,0,0,9755,0,0,74,0.7731204814242133,0,0.0,1,0.0104475740733001,0,0.0,0.04999,0.1312452414082806,0.2806561312262453,0.01403,0.3528620822128313,0.6471379177871687,23.52575121855529,4.010351332644992,0.3039490445859872,0.2952866242038217,0.1946496815286624,0.2061146496815286,11.430089647834803,6.102117804233439,14.790258407512908,11573.418969123284,44.80726626018241,14.23227899701063,13.423298824780415,8.353521630032157,8.798166808359198,0.597452229299363,0.813632441760138,0.7015926236378877,0.6047120418848168,0.1273176761433869,0.7765217391304348,0.9225941422594144,0.8955223880597015,0.7976190476190477,0.1065088757396449,0.5232432432432432,0.737151248164464,0.6258741258741258,0.5503355704697986,0.1328125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797276485369,0.0045532907413041,0.0068722592171512,0.0091970610054775,0.0115578707471919,0.0135787629370059,0.015705151085593,0.0178782928323463,0.0198836626831188,0.0217311196184003,0.0239188828969222,0.0260633818727022,0.0280832416084599,0.0303570508526972,0.0324012427873945,0.0346574577638081,0.0366572408149736,0.0386064323297736,0.0407354638767848,0.0425529697449739,0.0567438848620307,0.0710726846424384,0.0841746248294679,0.0968811162320853,0.1093609883211832,0.1253651102738856,0.1370867604139029,0.1486001512198758,0.158499316122414,0.1684450974294079,0.1807352196719192,0.1916920112995573,0.202070510450423,0.2113742002515448,0.2198359285651447,0.2288781891637611,0.2376056557907179,0.2456741573033707,0.2536665533265329,0.2614442664225223,0.2678224687933426,0.2734006261974858,0.2784872995600965,0.281786941580756,0.2864614936530666,0.2911336351111986,0.2949592642575098,0.2979876848854186,0.3004311235026848,0.3030968794400884,0.3009921194302361,0.2981441377230736,0.2948118834112182,0.2920961704578174,0.289648327556069,0.2862291176740066,0.2829420673987126,0.2839389083297903,0.2840597949014472,0.284630014753195,0.2850987633596329,0.2857564430454456,0.2858602285047119,0.287477443357765,0.2903009392371094,0.2917479389352682,0.2928175224007964,0.2959100588751096,0.3018854748603352,0.3074771509612354,0.3109315760967683,0.3142706409918227,0.3174134355558348,0.3220184184488926,0.3255335080494197,0.3317546767700686,0.3329262707983514,0.3385890438649687,0.3483853311439518,0.3581749049429658,0.0,1.411606960001503,50.85143285720572,144.7988892274328,202.89831080725472,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95715,47555,453.565271900956,4843,49.50112312594682,3845,39.69074857650316,1461,14.94018701352975,77.3455376358958,79.73244187003922,63.32130932583449,65.08727279793405,77.16090037684923,79.54904263352442,63.25143297337939,65.01996171470437,0.1846372590465677,183.39923651480208,0.069876352455104,67.31108322968282,241.33868,169.0838410796657,252143.00788800084,176653.4410277027,483.16157,321.4217053848552,504277.7830016194,335297.0959461477,461.7715,224.8720338856552,479341.4616308834,232575.4149029544,2207.64184,1044.277814615696,2280530.491563496,1065084.6101610996,941.33301,425.9084274846646,969542.3601316408,431169.0563591836,1431.55258,609.93438532352,1465825.6072715877,612221.6541989103,0.38017,100000,0,1096994,11461.045813090946,0,0.0,0,0.0,41612,434.2266102491772,0,0.0,41745,433.0042313117066,1120321,0,40119,0,0,9560,0,0,71,0.7417855090633652,0,0.0,0,0.0,0,0.0,0.04843,0.1273903779887945,0.3016725170348957,0.01461,0.3669887596134885,0.6330112403865116,23.07500776450576,4.044625564458172,0.2970091027308192,0.2803641092327698,0.2072821846553966,0.2153446033810143,11.509838050592018,6.235435433428416,15.568879377372037,11470.056451601546,44.09765095565783,13.206436489817918,12.916984381965174,8.876540588617278,9.097689495257455,0.5903771131339401,0.8191094619666048,0.7057793345008757,0.5934755332496863,0.1304347826086956,0.747008547008547,0.9195652173913044,0.8623853211009175,0.7377049180327869,0.17,0.5218691588785047,0.7443365695792881,0.6429447852760736,0.5504885993485342,0.1178343949044586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022695265402891,0.0042699934073735,0.0067008477587694,0.0088924571637634,0.011139822576707,0.0134650641678549,0.0155717811180681,0.0177077908152323,0.0198073462041884,0.0220681604063408,0.024163111256974,0.0263660640920295,0.0282052337063857,0.0303567380417533,0.0324871001031991,0.0347886319228343,0.0365252341095549,0.0385465641249182,0.0407874621712407,0.0423973409188,0.0577557755775577,0.0714951070176356,0.0849391267842149,0.0974401060572583,0.1097949453609552,0.1255592574964302,0.1366453036798098,0.1471521683564795,0.1575374681974643,0.1663285568614823,0.178464025869038,0.1890885069794137,0.1992707879843273,0.2082973206568712,0.2166974819510477,0.2268703677032671,0.2356308372108593,0.2442409790335643,0.2515709003470726,0.2581545997665209,0.264473227709032,0.2703785931292358,0.2756770174588352,0.2793725246191952,0.284077545131606,0.2888790538713088,0.2913160720081895,0.2953672115762641,0.2983426839491842,0.3014026055894095,0.298872910998834,0.2958243803632283,0.2926494096530835,0.2899421898817912,0.2869429010521338,0.2831039103423072,0.2803713277014248,0.2803640411183133,0.2796956388520069,0.2816806124265622,0.2815613841580827,0.282233402387294,0.2823386725774748,0.2833143952053116,0.2843585995350955,0.2856363494661367,0.2879002550297534,0.2911625871393291,0.2967845434888749,0.3029610061901194,0.3041751297675468,0.3082018927444795,0.3110405380160657,0.3191873589164785,0.3243697478991597,0.3294592030360531,0.3306918622371228,0.3322548028311425,0.3398639455782313,0.3466257668711656,0.0,1.7488874071665332,51.26577622609792,140.92306140246495,194.75055698006588,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95620,47656,452.9282576866764,5035,51.443212717004805,4022,41.57080108763856,1534,15.728927002719097,77.23812690061078,79.67180354863933,63.25655152000609,65.05547218022404,77.04100415710188,79.47460493579814,63.18204261388386,64.98286575332631,0.1971227435088991,197.19861284119133,0.074508906122233,72.60642689773533,241.5567,169.35208806590623,252621.52269399707,177109.48344060473,486.46083,323.03372250899463,508270.40368123824,337357.3023520128,464.2442,226.46820342060855,482986.54047270445,234766.95910767457,2287.58004,1087.281600642659,2366146.496548839,1110866.8067796065,898.83362,409.9628507690825,926468.9186362686,415204.7801391778,1484.84182,636.8031399592878,1524437.6281112735,641602.2860922258,0.38124,100000,0,1097985,11482.796486090776,0,0.0,0,0.0,41903,437.7222338422924,0,0.0,42050,437.1470403681238,1109569,0,39825,0,0,9527,0,0,87,0.9098514955030328,0,0.0,1,0.0104580631667015,0,0.0,0.05035,0.1320690378764033,0.3046673286991062,0.01534,0.3608893956670467,0.6391106043329533,23.351537855138204,4.006870729686636,0.3073097961213327,0.2856787667826951,0.2095972153157633,0.1974142217802088,11.266894557321937,6.203389510471705,16.500553610452414,11574.614874333764,46.30840055480628,14.021657531986998,14.269652741962853,9.31620512755874,8.700885153297685,0.5808055693684734,0.793733681462141,0.7071197411003236,0.5504151838671412,0.1083123425692695,0.7534921939194741,0.9288793103448276,0.8567639257294429,0.7079207920792079,0.1149425287356321,0.5058823529411764,0.7021897810218978,0.6414435389988359,0.500780031201248,0.1064516129032258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432300956705,0.0048684997920744,0.0069856226139225,0.0090971001087586,0.0113682624979645,0.0135700968856016,0.0158804630526798,0.0182037347280676,0.0205388376327148,0.022707486198314,0.0250864430604434,0.0275374529911017,0.0297753213738022,0.0316900682460155,0.0339137079951256,0.0361529308293238,0.0382841089329587,0.0403469589154936,0.0422942799146411,0.0444089756830344,0.0584687114512116,0.0732369275909043,0.0865883638350177,0.09926590624243,0.1112448781312043,0.1269489873739513,0.138862624695896,0.1486179659101811,0.1587327063204185,0.1676585596424888,0.1796717348843734,0.1915954724836289,0.2020268061457993,0.2115142284217793,0.2208287414591139,0.230327104877724,0.2386251789549033,0.2457155098543273,0.2534224769181789,0.2602755453501722,0.2665375066706884,0.2727240756804914,0.2784518853265962,0.2820543632387224,0.2860049216675194,0.2903468893610713,0.2937841058771875,0.2971232562291194,0.300018171906233,0.3026917686876966,0.2994847863616746,0.2962850644427596,0.2921437031188314,0.2902987773999855,0.2877771663965022,0.2845598270283532,0.2810483423443421,0.2819020371923247,0.281741005716633,0.281677057467979,0.2823143900383859,0.2835130970724191,0.2846819295783498,0.2848392721419949,0.2850826605151865,0.2854316359470998,0.2865408733325733,0.2917805207449983,0.2952977836910472,0.2998660256915438,0.3033891384238464,0.3072088724584103,0.3072259032379047,0.3125094425139749,0.3175134933928903,0.3234882091991595,0.3296324081020255,0.3376288659793814,0.3424472116946399,0.3542059600150886,0.0,1.949831126346692,53.231169543452346,149.21778897031206,204.93712732794904,fqhc3_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95723,47438,451.3962161653939,4919,50.25960323015367,3903,40.23066556626934,1460,14.82402348442903,77.33641368994157,79.71163882622326,63.332022412709286,65.08936558096747,77.14930673240875,79.52971118029652,63.26056960949502,65.02250639268352,0.1871069575328192,181.92764592674848,0.0714528032142638,66.85918828394222,242.51678,169.94437628283757,253351.98437157212,177537.03261740584,480.3153,319.57300660908913,501235.8262904422,333312.4982905488,456.66603,222.3178446944966,474361.689458124,230022.5761685705,2532.657,1187.5036164693988,2608965.0658671376,1203887.6121388136,909.16315,410.9826096819837,936772.0714979682,416380.5102722565,1417.6387,610.7959421881055,1441346.2804132758,603829.4928627318,0.37906,100000,0,1102349,11515.999289616915,0,0.0,0,0.0,41376,431.6830855698213,0,0.0,41359,429.3325533048484,1116716,0,40059,0,0,9417,0,0,92,0.9611065261222486,0,0.0,0,0.0,0,0.0,0.04919,0.1297683743998311,0.2968082943687741,0.0146,0.3542154566744731,0.6457845433255269,23.326182666387183,4.021467453236892,0.3123238534460671,0.2751729438893159,0.2095823725339482,0.2029208301306687,11.294428830901914,6.157072623508756,15.670106738447377,11503.463680094406,44.67544390568879,13.086109567404808,13.826874568712432,9.106794764339044,8.6556650052325,0.5775044837304637,0.7867783985102421,0.6866283839212469,0.58679706601467,0.1161616161616161,0.7397737162750218,0.9192399049881236,0.8623853211009175,0.730593607305936,0.1153846153846153,0.5098039215686274,0.7013782542113323,0.6221973094170403,0.5342237061769616,0.1163934426229508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0047160721711173,0.0070155845474389,0.0094824782502642,0.0117799049876402,0.0140142179129407,0.0161229463894186,0.0182356544823361,0.0206312044411274,0.0228691931290051,0.0249090256778227,0.026590556759032,0.028567021440691,0.0304359917189382,0.0326787943825905,0.0348534336627113,0.0371198707793619,0.0392040915834137,0.0410846428868379,0.0433115976750484,0.0575145927093884,0.070632670356459,0.0842230006082597,0.097070232426125,0.1094774341786294,0.1244213819196381,0.1352717944369063,0.1462784341667287,0.1565705624286156,0.1670166266712375,0.1786667527659391,0.1904447784758794,0.2006867773624271,0.2097041988901996,0.2183324542897327,0.2280748308345495,0.2365714795048633,0.2439235428301738,0.2511675886460506,0.2585824394483452,0.2648897207491363,0.2699115044247787,0.2755264743052192,0.2798808355866095,0.2833757730083667,0.2881443489170141,0.2924276113623304,0.2961438805060204,0.2999586370921875,0.3028841084045133,0.2993328132146027,0.2966428178315905,0.2936522461391184,0.2909747292418773,0.2882118772466653,0.284715315287745,0.2817516170354087,0.2816418864646001,0.2814072065619618,0.2821435570362188,0.2823577752045123,0.2841900112211351,0.2845833333333333,0.284146937325101,0.2851644673933831,0.2863654020458371,0.2887105495318592,0.2920237310481213,0.2979958728271134,0.3023016281741473,0.3083979917845733,0.3103411456943035,0.3169986635270158,0.3201593137254901,0.3259866252236978,0.3313397129186602,0.3366610351712487,0.3433528343756304,0.3427331887201735,0.3499624906226556,0.0,2.0668533855317914,49.98644283816955,142.45307898804737,205.04404879912929,fqhc3_80Compliance_implementation_low_initial_treat_cost,0 -100000,95620,47530,452.7400125496758,4986,51.07718050617026,3978,41.1211043714704,1558,15.917172139719725,77.26635035352784,79.70334153874855,63.26822878755484,65.0715988500014,77.06903597535275,79.51062194832015,63.19382586020887,65.00160346203116,0.1973143781750934,192.71959042839623,0.0744029273459716,69.99538797023774,240.8615,168.76483749394183,251894.478142648,176495.33308297617,482.77466,320.3527002518452,504385.05542773474,334523.1439571692,460.61252,223.88410318024447,478997.0403681238,231993.0172432389,2593.29345,1204.9437346139684,2680436.509098515,1228491.607000594,894.15185,404.46984087874085,921465.927630203,409373.8496593848,1517.25138,640.4530792304336,1552128.947918845,640163.8254998027,0.38074,100000,0,1094825,11449.749006484,0,0.0,0,0.0,41517,433.6749633967789,0,0.0,41717,433.66450533361217,1118777,0,40101,0,0,9568,0,0,82,0.8471031165028237,0,0.0,0,0.0,0,0.0,0.04986,0.1309555076955402,0.3124749298034496,0.01558,0.3580601878474219,0.6419398121525781,23.817392975755773,4.075689158860681,0.3139768728004022,0.271744595274007,0.2038712921065862,0.2104072398190045,11.081813264076036,5.933113736690159,16.63163789235201,11572.2026945819,45.554147685108425,13.330201000919214,14.198084331172842,9.058842349997414,8.967020003018954,0.5774258421317244,0.81313598519889,0.6917534027221778,0.5745992601726264,0.1051373954599761,0.7448275862068966,0.9140969162995596,0.8223495702005731,0.6938775510204082,0.1614906832298136,0.5085166784953868,0.7400318979266348,0.6411111111111111,0.5365853658536586,0.0917159763313609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0044128835911742,0.0065910406532137,0.0086627623230844,0.0108100405122045,0.0132189121151278,0.0157372632266492,0.0179025780938659,0.0198698534828517,0.0222771009027656,0.0242931184892492,0.0265919720409107,0.0286284884858092,0.0308388666639171,0.0329811079090618,0.0351196697054045,0.0373979020689083,0.0396036518867042,0.0415803661570166,0.0434388102042093,0.0587534237982729,0.0732279834010982,0.0867331932773109,0.0996102801769538,0.111354034643008,0.1271013187860812,0.1381183172841868,0.1487850148272993,0.158814085411538,0.1681009938221864,0.1797687362471415,0.1914755235658847,0.2019167937268569,0.2110164106833768,0.2203670028103818,0.2292369121561668,0.2375372792565371,0.2450799369511371,0.252865467846554,0.2590048507505476,0.2657380712540669,0.271983328845546,0.276358943392652,0.2810177860875401,0.285323709536308,0.2899514096144834,0.2933169711616724,0.2968813645621181,0.3002084871087629,0.3038168341642267,0.3006552656718828,0.2987007630439265,0.2957984376099655,0.2923265718616906,0.2902746844840386,0.2861402033483678,0.2828509555348308,0.2829405880520162,0.2834604035545549,0.2842007633860093,0.2848876404494382,0.2859230586934197,0.2869732683008519,0.2879616199933058,0.2894882201781983,0.2902310815030707,0.2915801155279857,0.2960437419476479,0.3001962295886187,0.3029366306027821,0.3079891057648661,0.3109417182785453,0.3146350687003655,0.3178113207547169,0.3198327914537854,0.3236189138576779,0.3274349667271627,0.3269923908690428,0.3293510724952484,0.3307057057057057,0.0,1.873183947337138,50.79640307251245,149.63574911258857,204.79617360999288,fqhc3_80Compliance_implementation_low_initial_treat_cost,1 -100000,95714,47272,450.4774641118332,4789,49.04193743861922,3779,38.99116116764528,1406,14.36571452452097,77.34534288058313,79.71457633258034,63.32656324425341,65.07478065960356,77.16740203177149,79.53725260310843,63.259654135158414,65.00998515003816,0.1779408488116445,177.3237294719081,0.0669091090949933,64.79550956539981,242.23276,169.67713734041584,253079.52859560773,177274.9204300478,479.8532,319.60007334104296,500863.38466682,333434.2450854033,460.81661,224.7796403230761,478156.5288254592,232338.98828297775,2440.2111,1147.872171506145,2520896.911632572,1170688.0304930778,863.77433,395.8046958833828,888514.6895960884,399649.91832691367,1367.4154,581.7359051779034,1399186.660258687,582650.4937497759,0.37761,100000,0,1101058,11503.61493616399,0,0.0,0,0.0,41301,430.992331320392,0,0.0,41650,431.8803936728169,1114235,0,40012,0,0,9630,0,0,95,0.9925402762396306,0,0.0,0,0.0,0,0.0,0.04789,0.1268239718227801,0.2935894758822301,0.01406,0.3534743202416918,0.6465256797583081,23.226675028738647,4.028024429027083,0.3037840698597512,0.2979624239216724,0.1974067213548558,0.2008467848637205,11.323668121252014,6.101649876599531,15.000833060789247,11406.127721642586,43.552489549104536,13.871505152935484,13.11051397818728,8.28250236741266,8.287968050569107,0.5903678221751786,0.7992895204262878,0.7081881533101045,0.5898123324396782,0.1027667984189723,0.7584670231729055,0.9200913242009132,0.8498498498498499,0.7114427860696517,0.1466666666666666,0.5193827625141136,0.7223837209302325,0.6503067484662577,0.544954128440367,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0046520584598544,0.0070816931131041,0.0094657729027016,0.0115621631515792,0.0136226188415683,0.0159628145928259,0.0180578381633882,0.020035778175313,0.0221517043709693,0.0243579886206366,0.0264738804054262,0.0284712150667036,0.0306795236329171,0.0326522187822497,0.0345462063262352,0.0365990057995029,0.0386986301369863,0.0407789804215144,0.0424864526886202,0.0569897863274641,0.0703192046049188,0.0836787157022191,0.0968553062104809,0.1087862576894263,0.1237698152341848,0.1353580603384216,0.1453980020022578,0.1555978243446853,0.1649024591658355,0.1766195149804462,0.187656994369857,0.1987225522839546,0.2079255610290093,0.2166367510543876,0.2260524507304529,0.2342030667589223,0.2424913946320502,0.2497843849296414,0.256761708462155,0.2630191166776532,0.2684953600897595,0.2740939629068887,0.2792900683824146,0.2834701112028359,0.2869827586206896,0.2902407002188183,0.2923196098849465,0.2968167701863354,0.299500019788135,0.2963052727958205,0.2935561515714187,0.2918469452469875,0.2886812345643351,0.2863122893998545,0.2822394471708786,0.2780416226194796,0.2780992546096508,0.2781230894640309,0.2788555403702454,0.2790615464761479,0.2799089535545395,0.2801223623423648,0.2815121375965111,0.2839071372098037,0.2851291091983822,0.286185974319176,0.2907931570762053,0.2955981392765396,0.2990167273866886,0.3029073698444895,0.3069452464696309,0.3103083809997513,0.3155438464433571,0.3199368850937442,0.3210655450403084,0.317730282962071,0.3192169396723931,0.3296256104177971,0.3268933539412674,0.0,1.898306943332752,48.96681426555029,144.41110906277834,191.58335669544945,fqhc3_80Compliance_implementation_low_initial_treat_cost,2 -100000,95666,47663,453.8393995776974,4873,49.69372608868355,3884,40.05602826500533,1496,15.27188342775908,77.2498286400838,79.64793171938864,63.26585613190741,65.0385707623526,77.06213156974437,79.46444413572776,63.19450612890293,64.97157781681383,0.1876970703394391,183.48758366087736,0.0713500030044826,66.99294553877166,240.5304,168.48719276263225,251427.2573328037,176120.24414382566,477.35087,317.7028138955719,498460.8638387724,331580.19975286094,462.71543,225.9853856676174,480545.3348106955,233785.09553211727,2540.40948,1192.1789979409884,2619363.138419083,1210053.1619812555,911.83342,412.4924912298602,936112.5582756674,414149.7619110859,1454.2039,618.7307011711597,1484888.5497459911,615640.5229570493,0.38111,100000,0,1093320,11428.511696945625,0,0.0,0,0.0,41142,429.5047352246357,0,0.0,41748,433.2364685468192,1118713,0,40164,0,0,9452,0,0,79,0.8257897267576778,0,0.0,1,0.0104530345159199,0,0.0,0.04873,0.1278633465403689,0.3069977426636568,0.01496,0.3637618296529968,0.6362381703470031,23.24933326022849,4.119368217070142,0.2999485066941297,0.2778063851699279,0.2149845520082389,0.2072605561277034,11.432355769650073,6.322692710191891,15.907364047108032,11572.68108925688,44.644153735441286,13.249542131667637,13.348730478165288,9.31352465057066,8.732356475037697,0.5821318228630278,0.8044485634847081,0.7072961373390558,0.5568862275449101,0.1291925465838509,0.7459086993970715,0.9088888888888887,0.8481375358166189,0.7164948453608248,0.1309523809523809,0.5123026074182887,0.7297297297297297,0.6470588235294118,0.5085803432137286,0.1287284144427001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024919972446209,0.0050097863234861,0.007054333593853,0.0092156065840276,0.0114941359563019,0.0134642413378689,0.0155708284047803,0.0177770970541685,0.0199120474534669,0.0220708725931995,0.0246584335124933,0.0269442932130787,0.0292643775145858,0.0313031468062956,0.033503691084611,0.035538087604075,0.0376365256678618,0.0396295565684147,0.0415327153365169,0.0433980167460871,0.0585125279501807,0.0717457325374384,0.0851997229277303,0.0988267480401957,0.1111369080912228,0.1260689188045042,0.1372257502707984,0.1484761295822677,0.1587308379422116,0.1681186821214107,0.1805038571505637,0.191626636015658,0.201323694568927,0.2111716770676815,0.2205176314772915,0.2303051178915087,0.2386661293572436,0.2457727493203686,0.2525635335222552,0.2593962506892115,0.2657385690732183,0.2720471654902697,0.2772971431287731,0.2815679953811735,0.2858343995613233,0.2895094694160114,0.2929360100376411,0.2970006381620931,0.3001375944339157,0.3028811810461148,0.2997435897435897,0.2962830248487438,0.2946024130388767,0.2932960893854748,0.2909007079540722,0.2877475436931835,0.284230495612995,0.2853792153260727,0.2852288831594584,0.2857219394588802,0.2859551193196718,0.286346396965866,0.2874675922054027,0.2883214939909753,0.2875955207382131,0.2873897249610794,0.2877231700761112,0.2920508347869424,0.2966620305980528,0.2998976458546571,0.3043125956603943,0.307040041873855,0.3091022056539298,0.3120018047826741,0.3187962962962963,0.3219154141908423,0.3234497290788681,0.3244274809160305,0.3308005427408412,0.3295964125560538,0.0,2.14662087969391,50.5747202648013,144.77914398070027,198.3100208905896,fqhc3_80Compliance_implementation_low_initial_treat_cost,3 -100000,95745,47719,454.6242623635698,4934,50.30027677685519,3951,40.67053109822968,1487,15.050394276463525,77.32698317968122,79.6863535908112,63.31555014592704,65.06088445156571,77.128679617336,79.49499701268324,63.23850690283824,64.99001721569888,0.1983035623452167,191.3565781279516,0.0770432430888021,70.86723586682808,241.84974,169.42469426460713,252597.7753407489,176954.09082939802,484.3837,323.2727201545658,505332.6126690689,337061.70573352743,469.07049,229.29000163851072,487190.1718105384,237278.63221096928,2547.75995,1216.059532411247,2621515.849391613,1230633.3828515818,920.53638,422.33132260315017,947567.6954410152,427221.925534649,1439.61852,626.9117336142754,1458322.6904799205,615512.6994273454,0.37942,100000,0,1099317,11481.71706094313,0,0.0,0,0.0,41675,434.65455115149615,0,0.0,42396,439.9707556530367,1109851,0,39860,0,0,9591,0,0,85,0.8877748185283827,0,0.0,0,0.0,0,0.0,0.04934,0.1300405882663012,0.3013781921361978,0.01487,0.3678384152262575,0.6321615847737425,23.297681310719096,4.001369445808577,0.3075170842824601,0.2865097443685143,0.2093140976967856,0.1966590736522399,11.52340523475448,6.413804763959591,16.011929812276502,11524.703753700203,45.62322239523917,14.129302535253576,13.76042159777766,9.211352640001342,8.522145622206594,0.5917489243229562,0.8197879858657244,0.6987654320987654,0.5840386940749698,0.1003861003861003,0.7562695924764891,0.9196261682242992,0.85,0.7571428571428571,0.1308900523560209,0.5132710280373832,0.7303182579564489,0.64,0.5251215559157212,0.0904436860068259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178207790892,0.0044411997323112,0.006597243367233,0.008808111183355,0.0113501144164759,0.0136856575530777,0.015927723620345,0.0182103995263662,0.0206657604529705,0.0227635619242579,0.0250691811007481,0.0271926582902192,0.0290386908433041,0.031385794015281,0.0333821617941364,0.0351127368921404,0.0368890223321979,0.0389095775027748,0.0408884454283724,0.0430058237052934,0.0578489100476071,0.0723373090604729,0.0856076412552292,0.0979279023559466,0.1097793660331214,0.1259754266500306,0.1371157640170559,0.1480440384164909,0.1582896846606093,0.1681854773788439,0.1803865348754486,0.1917423938826128,0.201880591167316,0.2105885185266245,0.2197791308369025,0.228692740898408,0.2379717982524749,0.246358690142273,0.2533033391276685,0.2605939731554394,0.2657618010839857,0.2721639824304538,0.2769270882715464,0.2806072242889715,0.2857750915127267,0.2895392432539095,0.2933025982811756,0.2957306977099626,0.2991809652169405,0.3013814305128577,0.2985319644226758,0.2950501856180393,0.2920154766092156,0.2897655076816449,0.2865858184031231,0.2836609110947832,0.2801391524351676,0.2805077805077805,0.2810013121346897,0.2816465820624933,0.2816848860202216,0.2809320449491272,0.2822228262005812,0.2838283093637294,0.2848390570778987,0.2862850915883971,0.2868390495341131,0.2916172153163845,0.2959894165158056,0.2978263433041154,0.3026576576576577,0.3056649341103586,0.3077257753744795,0.3121248499399759,0.3168179292461567,0.316746299965039,0.3145525760771316,0.3160103937637417,0.3130315500685871,0.308457711442786,0.0,2.355612088197581,55.52617653805897,139.6981326497542,196.37297295583485,fqhc3_80Compliance_implementation_low_initial_treat_cost,4 -100000,95760,47929,457.83208020050125,5118,52.29741019214704,4075,41.97994987468672,1540,15.747702589807853,77.39144353273707,79.7289317762058,63.36142006586866,65.0865617402945,77.18972115085893,79.52962085183326,63.28567602782902,65.01405333470738,0.2017223818781417,199.31092437253997,0.0757440380396374,72.50840558711502,241.72918,169.330774863728,252432.30994152045,176828.29455276526,485.48579,322.3656370773675,506433.77192982455,336091.0892620798,462.80776,225.260309685753,479087.2284878864,232057.81066123047,2639.44597,1235.445205320169,2722549.509189641,1256383.2971179704,925.30557,419.4960564607725,951429.9498746868,423224.526379252,1494.56434,637.9601409871559,1530082.581453634,640169.5431657999,0.3835,100000,0,1098769,11474.195906432748,0,0.0,0,0.0,41652,434.3671679197995,0,0.0,41908,433.43776106934,1120172,0,40165,0,0,9531,0,0,85,0.8876357560568087,0,0.0,0,0.0,0,0.0,0.05118,0.1334550195567144,0.3008987885892927,0.0154,0.3693373268438787,0.6306626731561213,23.1842458569214,4.019409447577303,0.3101840490797546,0.2839263803680981,0.2041717791411043,0.2017177914110429,11.269258730339883,6.116595420451836,16.567387805126923,11618.627681453898,46.73461353445939,14.090932165537064,14.483589246872192,9.153857742184451,9.00623437986568,0.5828220858895705,0.8003457216940363,0.7056962025316456,0.5588942307692307,0.1119221411192214,0.7416107382550335,0.9147465437788018,0.8559782608695652,0.715,0.1526315789473684,0.5171696149843913,0.7316735822959889,0.6439732142857143,0.509493670886076,0.0996835443037974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020654462983962,0.0041144339613081,0.0064122075444897,0.0087344227663745,0.0108590659983121,0.0130893249735363,0.0153148563276951,0.0175791213500112,0.0197877187426575,0.0216910861913726,0.0239959016393442,0.0261203217334208,0.028226469379367,0.0305060672492049,0.0327295968332182,0.0345743032456665,0.0362650328082631,0.0380526659683257,0.039905200461524,0.0418967061813787,0.0571160169093471,0.0713269299181785,0.0851900805639476,0.0981901546939247,0.110445683919741,0.1262437745186156,0.1369627689469051,0.1480772299345779,0.1589855846235985,0.1693874269789377,0.1814238353569275,0.1924669903647551,0.2037753483014193,0.2128259183606593,0.2224151764615367,0.2321786176604007,0.2407275320970043,0.2490088835480284,0.2565959472324221,0.2624691132058204,0.2672929811181215,0.2725371285682569,0.2779314747818684,0.2828846522322284,0.2875926397632303,0.292223452688569,0.2958848302320641,0.2993731005455169,0.303049900406136,0.3054468813804913,0.3026061257388501,0.3001001797746641,0.2973420993481681,0.2943573938590932,0.291688873097649,0.287410093868097,0.2839786318725476,0.2847298202067377,0.2860128808605366,0.2860722600366098,0.2868829495153247,0.2876563885331494,0.288455114822547,0.2893774527292187,0.2897705453149001,0.2914391220679253,0.2913559946701443,0.2962359356880935,0.2989983188568226,0.3029044001266223,0.3056540314516862,0.3085665728397684,0.3114846996599924,0.3144806671721001,0.3201228021211275,0.3203271028037383,0.3285970685013461,0.3390268123138034,0.3436158798283262,0.3497370398196844,0.0,2.2758171562455543,51.81297598299806,156.06426518033578,206.14981981656243,fqhc3_80Compliance_implementation_low_initial_treat_cost,5 -100000,95716,47482,452.7142797442434,5126,52.206527644281,4053,41.63358268210122,1538,15.57733294329057,77.37264048070351,79.73044967296808,63.34029949113111,65.08117167290882,77.16707939706167,79.53239904061493,63.261280456147205,65.00832454629455,0.2055610836418395,198.05063235314435,0.0790190349839079,72.84712661427761,241.35034,169.0698168377653,252152.55547661832,176636.94349718472,483.08872,321.1099413852596,504013.2475239249,334784.7187359058,466.752,227.52015721202372,483309.21684984746,234386.4605930434,2619.59634,1237.2422486132782,2693176.480421246,1249166.0005648364,949.66152,431.1420717862156,975242.0493961304,433589.7085768252,1502.55688,650.000749174108,1525007.125245518,640273.5895078483,0.38027,100000,0,1097047,11461.479794391744,0,0.0,0,0.0,41531,433.1564210790255,0,0.0,42329,437.9936478749635,1117280,0,40165,0,0,9482,0,0,83,0.8462534999373146,0,0.0,0,0.0,0,0.0,0.05126,0.1347989586346543,0.3000390167772142,0.01538,0.3533595358412876,0.6466404641587123,23.11608472773002,4.067083483656315,0.3044658277818899,0.2849740932642487,0.2013323464100666,0.2092277325437947,11.53792079888975,6.296332851387143,16.454569607518312,11507.269759592318,46.52933878023478,14.006569735014804,14.08117330377521,9.064917627184144,9.37667811426062,0.5886997285961016,0.8034632034632034,0.7171799027552674,0.5857843137254902,0.1120283018867924,0.7493897477624084,0.9209401709401708,0.8825214899713467,0.7373271889400922,0.1128205128205128,0.5187677053824362,0.7234352256186317,0.6519774011299435,0.5308848080133556,0.111791730474732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075949367088,0.0046010560132964,0.006725706807876,0.0090185245368865,0.011296505302545,0.013630718488507,0.0157791731224007,0.017770201994427,0.01995318361631,0.0222131231446412,0.0242579586814989,0.0263546949754625,0.028317892507172,0.0303089598352214,0.0324257962013432,0.0345308721086466,0.0363613774252997,0.0382022238818355,0.0405250904253107,0.0424235480376635,0.0571073543078513,0.0712925369385961,0.0843076600429927,0.0966616212579885,0.1089264440766238,0.1241145249624664,0.1349533820550081,0.1458020710279578,0.1559239124630189,0.1653349064192631,0.1776217299055455,0.189660582322582,0.201002784303489,0.2104871699516549,0.2196337786385545,0.2280765906522172,0.2363264896004287,0.244796828543112,0.2532412194484529,0.2596517789553368,0.2651955449556579,0.2712800824047195,0.2764422222485516,0.2816036094411845,0.2854207947873233,0.2898818771423639,0.294113229274887,0.298386173743848,0.3011723905898186,0.3037465724530689,0.3002084313857325,0.2969125709339232,0.2939364530148951,0.2909474048842445,0.2892979070803028,0.2863828941129686,0.2830364474764702,0.2831845359980342,0.2834274632553075,0.2834437321304896,0.2836826625963292,0.2849992148241206,0.28444324054009,0.2852480127892002,0.2861235110166861,0.2875933534899346,0.2879595925392929,0.2908757650128926,0.2925266657431777,0.2967255980954611,0.3001883745963401,0.3043980266610685,0.3065401897154268,0.3108453670276775,0.3145900880037054,0.3239601640304628,0.3289513448171653,0.3322020363345977,0.3344182262001627,0.3385081408557364,0.0,2.7754878671866754,52.97422815059757,149.69081167523916,204.6239439672116,fqhc3_80Compliance_implementation_low_initial_treat_cost,6 -100000,95743,47585,453.50573932297925,5039,51.36667954837429,3962,40.807160836823584,1500,15.25960122411038,77.33281654085012,79.69865117671388,63.319784280511655,65.07076810606951,77.13908654920397,79.5073562298106,63.2463270173385,65.00029547418296,0.1937299916461512,191.29494690328383,0.0734572631731538,70.4726318865454,241.5501,169.25901998898055,252290.0890926752,176784.74665404318,479.06472,319.0158961283318,499810.22111277067,332645.1815049996,460.30115,224.83694526456196,476797.73978254286,231741.0364839401,2565.07261,1207.7871760756234,2645049.423978776,1227415.305636573,918.38459,420.3366857763235,947178.571801594,426986.0728996617,1456.4614,624.8973499366568,1485087.5155363835,624576.9260228166,0.38176,100000,0,1097955,11467.731322394327,0,0.0,0,0.0,41250,430.2664424553231,0,0.0,41685,431.4362407695602,1118557,0,40120,0,0,9505,0,0,84,0.8773487356778041,0,0.0,1,0.0104446278056881,0,0.0,0.05039,0.131993922883487,0.2976781107362572,0.015,0.3749524172059383,0.6250475827940617,23.10663526593552,4.034866348475383,0.3109540636042402,0.2859666834931852,0.2019182231196365,0.2011610297829379,11.555707940997117,6.408125269367588,16.17009723938319,11547.029238016235,45.60377396463922,13.875633647288463,14.049590034873924,8.98586541342996,8.692684869046875,0.5971731448763251,0.8014121800529568,0.7118506493506493,0.6025,0.124215809284818,0.7592745259686727,0.9148471615720524,0.8647887323943662,0.7579908675799086,0.1602209944751381,0.5256456893415787,0.7244444444444444,0.6499429874572406,0.5438898450946644,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021278967260788,0.0043715071049668,0.0067011879378617,0.0088939937589575,0.0110792333048467,0.0132822685788787,0.0152765171988292,0.0172741194486983,0.0192634097462219,0.0214107985787571,0.0237548442658246,0.025547033032478,0.0279671386121307,0.029948198267783,0.0319012834798398,0.0342019038956475,0.0363608119304059,0.0383242356945684,0.0406034895085989,0.0426276642290143,0.0573140685680878,0.0714569688853549,0.0840673629461851,0.0971784197468567,0.109691699604743,0.1251850441991287,0.1364831901580231,0.1472272485364555,0.1573578577455912,0.1664432409244463,0.1774073715153277,0.1892371441863484,0.2006198684138981,0.2099468655019351,0.2188015574473701,0.2282003299708784,0.2368550258882342,0.2440948426229139,0.2520087157837396,0.2583703567993404,0.2653210032291292,0.2712598471280917,0.277304057414908,0.2819845845869844,0.2873077203470146,0.2916507392381962,0.2949807819914113,0.2992151025963948,0.3031260521613012,0.3056252144761502,0.3030706891213333,0.2999339806893516,0.2972885460074332,0.2939987584633819,0.2922962632791026,0.2887471512259288,0.2845604274017639,0.2849257178424595,0.2853371934604904,0.286319084974296,0.286959768505554,0.2873692298599208,0.2878595115439964,0.2888241572534021,0.2904128593981725,0.2915164561558212,0.2916134887546442,0.2954630788485607,0.2999266938946486,0.3025983256989417,0.3048631531327754,0.3070994985484296,0.3111818295270186,0.3115074885226161,0.3173719376391982,0.3178158907945397,0.3191521346963319,0.3279569892473118,0.3304418541610192,0.3389894419306184,0.0,2.270486893020288,52.82452396228993,143.2086113824437,203.61200826929183,fqhc3_80Compliance_implementation_low_initial_treat_cost,7 -100000,95790,47783,453.9304729094895,5027,51.38323415805407,3968,40.92285207224136,1483,15.210355987055015,77.34910350822409,79.67884510219895,63.34642956891118,65.06716728854724,77.15221774804333,79.48081277032917,63.27171155154884,64.9937016532249,0.1968857601807627,198.03233186978275,0.0747180173623363,73.46563532233574,241.1838,168.870874122806,251783.9022862512,176292.80104687964,483.08653,321.79546917014903,503845.7667815012,335465.9141561218,461.39931,225.7337550780986,477809.6878588579,232700.8644293235,2545.43456,1196.0908851851434,2628146.3409541706,1219498.5960801162,889.96121,404.28408755470497,916231.2245537112,409208.4430052239,1427.77898,618.267366388034,1465097.4632007517,623671.3927517781,0.38104,100000,0,1096290,11444.722831193234,0,0.0,0,0.0,41478,432.5086125900407,0,0.0,41717,431.7674078713853,1120033,0,40214,0,0,9539,0,0,92,0.94999478024846,0,0.0,1,0.0104395030796534,0,0.0,0.05027,0.1319284064665127,0.2950069624030236,0.01483,0.3580810965162764,0.6419189034837236,23.69658845061686,3.9341044113207326,0.3185483870967742,0.2820060483870967,0.2056451612903226,0.1938004032258064,11.089936929159077,6.12622002282982,16.045840373518406,11557.69058388624,45.34452884639751,13.66195645021054,14.261427683134558,9.09745734624132,8.323687366811086,0.5798891129032258,0.7890974084003575,0.6890822784810127,0.5698529411764706,0.106631989596879,0.7564208782104391,0.8993839835728953,0.8781869688385269,0.6893203883495146,0.1428571428571428,0.5027164070988772,0.7041139240506329,0.6158068057080132,0.5295081967213114,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974238496435,0.0044496700757153,0.0069493055766909,0.0092330194716153,0.0117236751128645,0.0138442118978785,0.0163476630179987,0.0183497474103179,0.0205478752209586,0.0224570808864152,0.0247100766299225,0.0267929523555427,0.0290526791770291,0.0314439515423489,0.0337038106235565,0.0358297441617864,0.0378299514708773,0.0401061756044958,0.0418013112914454,0.0439848801974321,0.0593256597827334,0.0729189545354711,0.0859518342612105,0.0989963743366087,0.1109120606986669,0.1259483906418412,0.1371532746139251,0.1474632325573976,0.1575493041919235,0.1673898370456079,0.1791676084078654,0.1904123365739188,0.2012939001848429,0.2113119648305501,0.2197051380789965,0.2283148008682939,0.2365492997042576,0.2443387528390564,0.2520221902049984,0.2589989813553696,0.2651874291792891,0.2705828694391168,0.2756450448958346,0.279362797939873,0.2843391920761313,0.2887051458990536,0.2930667800935772,0.2960927261854778,0.2997526451429089,0.3031682567330404,0.300607137568488,0.2981468998060229,0.2946432340401581,0.2918704465122989,0.2899979248806806,0.2867549365464791,0.2839919202120944,0.2828755687956264,0.2840947776945598,0.2845292557452338,0.2853782830262642,0.2861283643892339,0.2871905139660139,0.2871775417298938,0.2892897461148608,0.29126314693325,0.2910343649460467,0.2955052999087849,0.3001824177366168,0.303886925795053,0.3068491904675277,0.3092401376754037,0.3124249130572241,0.3162861491628615,0.3220642245032489,0.3276661514683153,0.3264304341156619,0.3321862348178138,0.3370879120879121,0.3307301835220617,0.0,2.0010586407055038,52.57366709383711,141.05354279165445,205.3522554485741,fqhc3_80Compliance_implementation_low_initial_treat_cost,8 -100000,95674,47191,449.0352655893973,4914,50.13901373413884,3913,40.38714802349645,1469,15.03020674373393,77.31532774038504,79.70691908736528,63.31028192710126,65.07598710672839,77.12645036822937,79.51923346760323,63.23943076435787,65.00761141456408,0.1888773721556731,187.68561976204975,0.0708511627433878,68.3756921643095,242.40436,169.66846618714146,253364.9267303552,177340.20338560262,480.77483,320.09612803347727,501991.2306373727,334047.2730663266,457.57281,223.31825582289773,474906.65175491775,230871.6772396741,2532.04202,1189.7647238837883,2613568.043564605,1210598.2752720574,894.5304,408.9662487205246,920810.7427305224,413291.3003747357,1431.041,610.7165818912956,1465270.313773857,612265.054345471,0.37703,100000,0,1101838,11516.587578652508,0,0.0,0,0.0,41498,433.20024249012266,0,0.0,41427,429.64650793318975,1114271,0,39995,0,0,9574,0,0,74,0.7734598741559879,0,0.0,0,0.0,0,0.0,0.04914,0.1303344561440734,0.2989417989417989,0.01469,0.367692907248636,0.632307092751364,23.070157505573963,4.069705906208666,0.3007922310247892,0.2867365192946588,0.2075134168157424,0.2049578328648096,11.38468023663734,6.091877180472616,15.691079153741567,11506.296193175116,44.87431228772135,13.819306742580151,13.269808677491657,9.022632531065918,8.762564336583617,0.5803731152568362,0.8101604278074866,0.6873406966864911,0.5825123152709359,0.0997506234413965,0.7608881298035867,0.9394572025052192,0.8509316770186336,0.72,0.1352941176470588,0.5032822757111597,0.713841368584759,0.6257309941520468,0.5375816993464052,0.0901898734177215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.0049068310387477,0.0072154904706813,0.0094080832300408,0.0116678873697916,0.014087089381207,0.0163396026273917,0.0185792349726775,0.0208007363092498,0.023081491797571,0.0252189608844583,0.0273032634487575,0.0292262902877364,0.0312622359608449,0.033505367464905,0.0356086461888509,0.0378390699794848,0.0397509081473793,0.0415236430963822,0.0433146775891358,0.0576183710142504,0.0722654409532086,0.0851499281058785,0.0980291056790799,0.1097849258110133,0.1254194231278116,0.1366961470266597,0.1471177197392527,0.1573518880730219,0.1672534077492755,0.1795214485880577,0.1908463895535801,0.2008794940732113,0.2105769967281998,0.2188363820578615,0.2283318730799516,0.2371315933482985,0.2441431304152132,0.2516090218736165,0.2578922641487813,0.2640913142632231,0.2696650247458143,0.2751642109000533,0.2794560303164762,0.2835284402778452,0.2876498047765091,0.2912195121951219,0.2941961561928005,0.2979259872249088,0.3011614570287266,0.2983968582725879,0.2963711340206185,0.2935428997202345,0.2908408516780945,0.2878331677073908,0.2841579317299758,0.2813624597512469,0.2815798934536065,0.2815231810605803,0.2817879794623981,0.2826155765327971,0.2830552115887336,0.2835154750980229,0.2845410843051723,0.285266157419602,0.2866035533653223,0.2889603003071322,0.2928739971684757,0.2961662687824744,0.3011469619399134,0.3028373954165151,0.3053144188016091,0.3093484419263456,0.3103553687428353,0.3131074832499764,0.3152586616041765,0.3192197187358234,0.3201346268065729,0.322800326886407,0.3285660519382762,0.0,1.9362569024169267,51.10370348923467,144.9953282093805,199.94257366736127,fqhc3_80Compliance_implementation_low_initial_treat_cost,9 -100000,95627,47787,455.7081159086869,4963,50.6760642914658,3888,40.07236449956602,1436,14.619302079956498,77.3146043072854,79.73193046508906,63.296484254502126,65.0822242588064,77.12657808041388,79.54816324585367,63.22546385640347,65.01514546737593,0.1880262268715284,183.76721923539208,0.0710203980986534,67.07879143047535,240.79,168.62250780106183,251801.2695159317,176333.57503744948,482.37205,321.5513098115751,503867.265521244,335692.23107655265,466.35293,227.56092071683017,483748.815711044,234951.89669725084,2486.17859,1169.138129278447,2566919.81344181,1189651.405229116,898.6344,405.6464233869272,927683.3739425058,412151.56164069416,1392.06298,592.9498610038378,1420413.795267027,591193.342326991,0.38229,100000,0,1094500,11445.512250724169,0,0.0,0,0.0,41499,433.3608708837463,0,0.0,42163,436.9895531596725,1118035,0,40104,0,0,9491,0,0,87,0.899327595762703,0,0.0,1,0.0104572976251477,0,0.0,0.04963,0.1298229093096863,0.2893411243199678,0.01436,0.3563151796060255,0.6436848203939745,23.523012161133536,3.9521645988220175,0.3042695473251028,0.2998971193415637,0.199074074074074,0.1967592592592592,11.579906489861475,6.4305408458325966,15.330686470207324,11622.23321389763,44.62471366703966,14.246502510855445,13.49355869121677,8.491097837230262,8.393554627737178,0.6033950617283951,0.8121783876500858,0.7252747252747253,0.599483204134367,0.1006535947712418,0.7757166947723441,0.9284294234592444,0.8738738738738738,0.7486910994764397,0.1194968553459119,0.5277572168763879,0.7239819004524887,0.6670588235294118,0.5506003430531733,0.0957095709570957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023304591004427,0.0044923994280556,0.0068014780525439,0.0090738200477569,0.011322021484375,0.0136687716439193,0.0161361063228649,0.018153028910001,0.0204559634247373,0.0225499231950844,0.0246464066298115,0.0267902084253561,0.0286305090325501,0.0305815439146024,0.0327528721987675,0.0348767474563652,0.0371563863186579,0.0392761477605432,0.0410987410259078,0.0430955360867751,0.0572679857431041,0.0715565192797209,0.0851175537891277,0.0982726497615814,0.1102819324670938,0.1266041251958832,0.137720798326022,0.1490579308580928,0.1597205879206692,0.1688599082598373,0.1804774902096167,0.1918845982941182,0.2026539706058592,0.2127645589588536,0.2218756544069832,0.2310432457026178,0.2400683898219853,0.2476878189458031,0.2548959469283897,0.2619214144031553,0.2687299621523397,0.2737308650349078,0.2784187048146439,0.2827683717363433,0.2875101624783099,0.2919929088491653,0.2958570268074736,0.2994041644963348,0.3025453417273162,0.3052634353338077,0.3017652832116592,0.2984222017769111,0.2961926328077751,0.2936855019123908,0.2912038961810299,0.2874934973530402,0.2836085278674005,0.2836675747530114,0.2839341572227065,0.2832967777599458,0.2838130436405719,0.2851393006498733,0.287101132938364,0.2880426335072721,0.2902749321008243,0.2899267965769667,0.291048982582718,0.2952768123138033,0.2994732099535593,0.3051153302997019,0.3102163569440704,0.3152544149242781,0.3182700131438943,0.3208201417156641,0.3262727610553697,0.3318359144106868,0.3301611665387567,0.3322554567502021,0.3386789888556673,0.342681521321552,0.0,2.2877851654932795,51.56967406084582,139.5672836552423,200.2625816757112,fqhc3_80Compliance_implementation_low_initial_treat_cost,10 -100000,95635,47743,455.55497464317455,4913,50.044439797145394,3912,40.21540231086945,1471,15.004966800857426,77.29129418892526,79.69272817593892,63.29829466637945,65.07074349291084,77.10269395224843,79.50780028654684,63.22654005243204,65.00262202050338,0.1886002366768338,184.92788939208535,0.0717546139474052,68.12147240745503,242.77924,170.0618070022602,253860.23945208345,177823.81659670646,481.99706,320.6380640202311,503346.3271814712,334622.5377949821,465.65506,227.63717848957813,482226.70570397866,234445.1254976296,2478.04541,1179.6608446421365,2549561.154389084,1192484.656127371,891.82985,413.335565254614,916378.7734615988,416047.7041242496,1418.16642,608.7900873623502,1448838.1659434307,607583.7106179717,0.38059,100000,0,1103542,11539.10179327652,0,0.0,0,0.0,41457,432.8017985047315,0,0.0,42081,435.3322528363047,1110203,0,39837,0,0,9462,0,0,102,1.0665551314895174,0,0.0,2,0.0209128457154807,0,0.0,0.04913,0.1290890459549646,0.2994097292896397,0.01471,0.351953125,0.648046875,23.268635947429225,4.028337048303153,0.3047034764826176,0.2980572597137014,0.2067995910020449,0.1904396728016359,11.56479071385542,6.416675797445961,15.710560926733642,11591.013787934357,45.10918629118422,14.301843705027832,13.588076785076437,9.05036103188652,8.168904769193434,0.5920245398773006,0.7924528301886793,0.6736577181208053,0.6032138442521632,0.1355704697986577,0.7654830718414534,0.910386965376782,0.8476454293628809,0.7360406091370558,0.1790123456790123,0.5142539800074046,0.7066666666666667,0.5980746089049338,0.5604575163398693,0.1234991423670669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023196215674159,0.0043191726655175,0.0064553454523309,0.0087084645869322,0.0110388751538829,0.013342160207771,0.0156004649550339,0.0178079114505687,0.0199472435792573,0.0219216513423299,0.0242329149232914,0.0262928156935243,0.028362738542256,0.0306864785771695,0.0328694718586117,0.0348344124278592,0.0368101974195554,0.0385929209971654,0.0407757696829707,0.0428060591528445,0.0578098711504498,0.0722321148004608,0.0849126933294133,0.0972960456377816,0.1095491388044579,0.1249034197351848,0.1365059818897888,0.1475820195994887,0.1579926445432774,0.1672356780898393,0.1791097884453645,0.1911764705882352,0.2024317499020333,0.2121952020672061,0.2218389030949651,0.231442355681251,0.240068370721244,0.2485112514493487,0.2556362810761721,0.262223902483732,0.2682328434209003,0.2741839276733605,0.2782782664283262,0.2829571200805572,0.2875704978607545,0.2920006906588392,0.2947953714371587,0.2983244633444527,0.3014277200528593,0.3055529914417206,0.3021744395704943,0.2990659348217848,0.2962389068882941,0.2933019399384651,0.291186430608365,0.2872289895043285,0.2832386408596705,0.282711162935834,0.282816718499026,0.2831768360169945,0.2838146608233134,0.2847034174688198,0.28586983834492,0.2866296073047127,0.2878791506068803,0.2890548037538238,0.2895026688130136,0.2929522977568402,0.298185624563852,0.3016781836130306,0.3059073638501899,0.3100367840252233,0.3130826503159607,0.316867744138402,0.3215759849906191,0.3271604938271605,0.3242414955562366,0.3312870881931655,0.336083608360836,0.335469280060309,0.0,2.682007676616117,52.170800342641385,142.43565956634296,198.57676331028344,fqhc3_80Compliance_implementation_low_initial_treat_cost,11 -100000,95634,47655,455.3401509923249,4961,50.71418114896376,3943,40.68636677332329,1437,14.680971202710332,77.27514686010801,79.68661170440204,63.27600815666828,65.05670758947545,77.09341054111493,79.51011046405785,63.206232441151926,64.99186409943847,0.1817363189930745,176.50124034419434,0.0697757155163572,64.84349003697787,242.077,169.59461624380617,253128.59443294228,177337.1564964408,484.21825,321.9952480905527,505740.9394148525,336112.4126954433,468.06211,228.50954768627537,486706.3492063492,236852.6685778324,2556.8057,1208.4087354307433,2636460.254721124,1226555.903247154,896.88765,407.5793795519274,923480.8122634208,411888.3728071298,1403.54392,601.9063063885557,1433303.6367818976,597515.5599703068,0.38031,100000,0,1100350,11505.845201497375,0,0.0,0,0.0,41676,435.1695003868917,0,0.0,42386,440.47096221009264,1108178,0,39761,0,0,9659,0,0,78,0.8051529790660226,0,0.0,0,0.0,0,0.0,0.04961,0.1304462149299255,0.2896593428744204,0.01437,0.3598448108632395,0.6401551891367604,23.032494893724355,4.01500217531244,0.3144813593710373,0.2764392594471215,0.2082170935835658,0.2008622875982754,11.511364161636717,6.3012906293719215,15.244111877737572,11569.36983139243,45.284422710423605,13.407656748945165,14.066711641196646,9.173933951697554,8.636120368584239,0.590667004818666,0.810091743119266,0.7040322580645161,0.5919610231425091,0.1098484848484848,0.7671913835956918,0.9063136456211812,0.8895348837209303,0.7688442211055276,0.1271676300578034,0.5127923976608187,0.7312186978297162,0.6328125,0.5353697749196141,0.1050080775444265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0044292186533959,0.0069199939120288,0.0089080751650584,0.0108829422593801,0.0129134756395633,0.0151221601337847,0.0173351982113505,0.0194861623710549,0.0213794233289646,0.0235093801606269,0.0258059213905611,0.0281595950450635,0.0300262845951656,0.0320432061793923,0.0340464712089549,0.0360511640441984,0.0381483558712947,0.0399100852317074,0.0420403821284051,0.0567668701396437,0.0707122572802816,0.0841597680379879,0.0974324936523488,0.1098610891036814,0.1253984897107573,0.1367466870702755,0.1482132958082811,0.1588269920265425,0.1677898515676222,0.1798993781309379,0.1913670625237243,0.2022783016296942,0.2117447088496545,0.2208795453291397,0.2306222646790927,0.2391328677589757,0.247286226896256,0.2547658339498093,0.2611172363101801,0.2666496525642959,0.2732112286297226,0.2784748576850095,0.2830492196878751,0.2871852851429057,0.291705199817507,0.2949487105622425,0.2982302123490718,0.3013363057820175,0.304452895967039,0.3015101100588687,0.2987272101823185,0.2947683992737406,0.2917701056520986,0.2895455084846327,0.2858736854976766,0.2817323779159695,0.2817445380901726,0.2827268711989943,0.283208465007279,0.2843680606094534,0.2855598151970903,0.2863216689939767,0.2867787712976556,0.2887204380783854,0.291436857505373,0.2928367410423913,0.2986668331824284,0.3027724498692241,0.3061361306096695,0.3086781894489823,0.3132949807357365,0.3179835493519442,0.3217717717717718,0.3264489719973951,0.3364353869713747,0.3333839611178615,0.3341375150784077,0.3395918367346939,0.3497350492051476,0.0,2.023670413933752,52.71993347474425,146.38410873772577,196.2171813305994,fqhc3_80Compliance_implementation_low_initial_treat_cost,12 -100000,95672,47472,453.36148507400287,5052,51.50932352203362,4030,41.41232544527134,1530,15.511330378794217,77.28391542799022,79.68131744690001,63.28504443165552,65.05949165419311,77.08414023312388,79.48881126312209,63.207620396286416,64.98858316830132,0.1997751948663477,192.5061837779225,0.0774240353691055,70.90848589179188,241.1717,168.98502227017843,252081.80031775232,176629.54915772474,482.56034,320.792192693101,503687.56794046325,334601.3699860995,463.23219,226.55537819298576,479998.3171669872,233600.3597453204,2587.78802,1225.333394585262,2658653.472280291,1234564.2660185446,933.49316,429.3949680841421,950798.7603478552,423900.8335361805,1482.64618,642.0802737141014,1503259.1144744544,629087.2733696133,0.37841,100000,0,1096235,11458.263650806924,0,0.0,0,0.0,41620,434.28589346935365,0,0.0,41974,434.5681077013128,1115943,0,40072,0,0,9563,0,0,68,0.700309390417259,0,0.0,2,0.0209047579229032,0,0.0,0.05052,0.1335059855712058,0.3028503562945368,0.0153,0.3570748428870691,0.6429251571129309,23.37036285054906,3.9336395782678055,0.3193548387096774,0.2816377171215881,0.1967741935483871,0.2022332506203474,11.168164101203354,6.22991711708345,16.416735641847808,11540.382240371457,46.455349635587694,13.951227108650397,14.690193047742824,8.849016132734002,8.964913346460474,0.5863523573200993,0.8044052863436123,0.6884226884226884,0.5838587641866331,0.1239263803680981,0.7585365853658537,0.918200408997955,0.8567567567567568,0.7419354838709677,0.1567567567567567,0.5107142857142857,0.718266253869969,0.6205016357688113,0.5354200988467874,0.1142857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024624551589955,0.0047671210645894,0.0070763576555631,0.0090954360219916,0.0114974105389538,0.0135991361747208,0.0158702636544443,0.0179760591575765,0.0200971618511889,0.0219938945686246,0.0239653651230071,0.0261086679544613,0.0284726438295551,0.0304029681541791,0.0323203336292503,0.0343347639484978,0.0361739166476695,0.0381377484818601,0.040007073533542,0.0419611031205052,0.0569769021029428,0.0714001507790249,0.0839998320633121,0.0966017322851219,0.1091876372234419,0.1247207783271048,0.136627690869893,0.1475484922401763,0.1570832887843472,0.1670316693505099,0.1786299538574324,0.1905257227061934,0.2018513476722025,0.2110093752738105,0.2196417745935519,0.2288794156175758,0.2373902834460781,0.2461874866153447,0.2533018117342183,0.2600580481593227,0.2653032832498608,0.2711713401481759,0.2763168819461742,0.2801334998079139,0.2848276113862892,0.2890174836823078,0.2931516115697303,0.2964113005853906,0.3003574759092322,0.3032297202843314,0.3009422533315385,0.2984631457399719,0.295347790622451,0.292789480513863,0.2896874303957235,0.2863897900471323,0.2833826250612851,0.2828853618986782,0.2830478400327578,0.2842904772942036,0.2853103112476122,0.2864742993888812,0.2875440954140769,0.2891323341622421,0.289254602929466,0.2909854233487183,0.2914845302299176,0.2957163031539306,0.2986033519553072,0.3031353395304868,0.3072575175220439,0.3105116474733133,0.3176776751967284,0.3221586263286999,0.3299660207548902,0.3361637780621146,0.3423586040914561,0.3487118034751348,0.3596924766611751,0.3668683812405446,0.0,2.798855298199221,53.0240727888047,149.40178203613303,203.6390043678796,fqhc3_80Compliance_implementation_low_initial_treat_cost,13 -100000,95660,47972,457.8925360652311,4942,50.54359188793645,3915,40.36169767928079,1469,14.980137988710014,77.35161970545354,79.75669071068957,63.31721993396855,65.09395208919216,77.16766634225384,79.57609086947453,63.24873516278676,65.02885676547811,0.1839533631997056,180.5998412150416,0.0684847711817937,65.09532371404703,242.65538,169.9215329552481,253664.41563872047,177630.70557730304,484.43581,322.5072647909903,505889.8285594815,336614.744711468,471.15693,229.75417031777803,489336.26385113946,237670.8581613931,2520.36452,1181.122722612476,2600780.284340372,1200778.405407147,901.01458,414.0863934076632,924003.8051432156,414984.16622168303,1424.97888,598.3603146802444,1455090.2989755385,597012.7325342817,0.38201,100000,0,1102979,11530.200710850932,0,0.0,0,0.0,41710,435.4484633075476,0,0.0,42593,442.0029270332428,1109516,0,39778,0,0,9620,0,0,86,0.8885636629730295,0,0.0,2,0.0209073803052477,0,0.0,0.04942,0.129368341142902,0.2972480777013355,0.01469,0.3471492508270091,0.6528507491729909,23.24877500738423,4.076759632461032,0.3098339719029374,0.2893997445721584,0.2007662835249042,0.2,11.775807688975616,6.486651409171162,15.56861950168724,11592.46049954792,44.84671187202754,13.968742380565152,13.798658185078477,8.604280532532917,8.475030773850994,0.5959131545338442,0.8005295675198588,0.7114591920857378,0.5916030534351145,0.1251596424010217,0.7865646258503401,0.9454926624737946,0.8583815028901735,0.7736842105263158,0.1840490797546012,0.5140562248995983,0.6951219512195121,0.6528258362168397,0.5335570469798657,0.1096774193548387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721127445517,0.0046037621051564,0.0069620638561308,0.0091339510688449,0.0113926497065375,0.013515991036871,0.0157854484270636,0.0179309922292226,0.0204192229038854,0.0224521151285465,0.0244372858403266,0.02664570359866,0.0286702204293329,0.0305985690426606,0.0327122110438572,0.0348034803480348,0.0366896408768202,0.0387210630125609,0.040605493133583,0.0427075947783292,0.0573846716472493,0.0720223636820504,0.0851919100746229,0.0983796296296296,0.110503709488481,0.1259472503280979,0.1369828107912981,0.1490205273591542,0.159418894487414,0.1685636972768662,0.1810702694542984,0.1922510344229977,0.2027666822668945,0.2128309237958696,0.2217218484711685,0.230381290179561,0.2385245260676743,0.2466823497630652,0.2541197566733248,0.2609332783807299,0.2665517919302425,0.2717129705353179,0.2774908098013026,0.2817290776577029,0.2860607824589488,0.2902936147705327,0.2952710208055115,0.2985943724151929,0.3017521676300578,0.3048015878231838,0.3020253130578335,0.2989637021603246,0.2965837637547721,0.2938907122703978,0.2909898571111275,0.2876384270417035,0.2837735611170648,0.2839066178393931,0.2846447046011435,0.2842561968775561,0.2854742972337328,0.2856131658113608,0.2862087660035864,0.2865959241664076,0.2872188333968738,0.2872035713364126,0.2887395527445222,0.2938976500654491,0.2967185761957731,0.2998781302826591,0.3043987741121327,0.3100783289817232,0.3171986365044933,0.3196696696696696,0.3222160459514545,0.3238241188258871,0.3248630553864881,0.3294141092068553,0.335568669527897,0.3322197475872309,0.0,2.2339555792829477,51.07024230761392,145.14195778081492,198.06538446540523,fqhc3_80Compliance_implementation_low_initial_treat_cost,14 -100000,95781,48173,458.5147367431954,4935,50.1978471721949,3924,40.289827836418496,1468,14.877689729695868,77.3507064425629,79.67840619187113,63.34838135415546,65.06967685367293,77.16092979388422,79.49508497299958,63.27540875796812,65.0017679760253,0.1897766486786736,183.32121887155492,0.0729725961873342,67.90887764762488,242.36014,169.83815800262724,253035.7168958353,177319.2574755194,485.13707,322.87731300685,505857.39342875936,336450.3534175358,467.05569,228.4651108672359,483504.3693425627,235302.967113192,2539.8995,1204.212833045328,2610156.0747956275,1215634.5444768048,899.20811,414.0329118029944,923270.51294098,416724.12253264646,1430.45944,619.2999098864137,1452313.2145206253,611860.6471877936,0.3846,100000,0,1101637,11501.62349526524,0,0.0,0,0.0,41600,433.63506332153554,0,0.0,42377,438.31240016287154,1113604,0,39965,0,0,9574,0,0,81,0.8352387216671364,0,0.0,0,0.0,0,0.0,0.04935,0.1283151326053042,0.297467071935157,0.01468,0.3527463965718738,0.6472536034281262,23.26800716298554,4.041251065587828,0.3109072375127421,0.2808358817533129,0.2020897043832823,0.2061671763506626,11.303383678326403,6.232822985823621,15.71660260547788,11608.389664529786,45.32446235818137,13.648824671301451,14.059727395553256,8.844462979426304,8.771447311900367,0.5833333333333334,0.8030852994555354,0.7073770491803278,0.5687263556116016,0.111248454882571,0.7447665056360708,0.9135802469135802,0.8626373626373627,0.698019801980198,0.1368421052631579,0.5085756897837435,0.7159090909090909,0.6413551401869159,0.5245346869712352,0.1033925686591276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892103237308,0.0043491484184914,0.0063827412300729,0.0087863643751015,0.011041971693509,0.0132244698504484,0.0155925155925155,0.0177465277423436,0.0199065984037932,0.0222881702824396,0.0244379777445334,0.0264834747632289,0.0287138379322748,0.0308205429109663,0.0331312256388046,0.0353099173553719,0.0375497956438512,0.0394766851195289,0.0416017612727688,0.0436611214058173,0.0579310920511696,0.0714240903387703,0.0847956894563599,0.0976647889692281,0.1104377246329458,0.1260835553300351,0.1383771860053238,0.1487685987356052,0.1592355327781336,0.169187398840213,0.1814883791028387,0.1928053354663668,0.2038186105647501,0.2126546042568069,0.221323011963406,0.2304126562672862,0.2384773112240349,0.2457056834394976,0.2534424334462867,0.260066134993192,0.2664495339731818,0.2729767284361462,0.2782218018444076,0.2831184687758107,0.2873501868115872,0.2904250212325985,0.294538775816185,0.2989885898706513,0.3019761005638611,0.3050793901572004,0.3017145312227279,0.2982634360628732,0.2953494582097733,0.2924739248979356,0.290227414237851,0.2868910080078244,0.2834186575654152,0.283275387037523,0.2831565665177505,0.2844928930212675,0.2855271774721676,0.2860355473142248,0.2869670775863873,0.2880574638054107,0.2891884113584037,0.2913543618571726,0.2937323803286157,0.2999905633669906,0.3053226202589383,0.3093422871815129,0.3128067624068351,0.3182906710659358,0.3217999621856683,0.3256719609040928,0.3297742811651213,0.3326629598958949,0.3332309582309582,0.3353820938332309,0.3327800829875518,0.3419329996149403,0.0,2.676091460642609,53.55929093894066,144.45343953260254,192.6418027015004,fqhc3_80Compliance_implementation_low_initial_treat_cost,15 -100000,95726,47787,455.7278064475691,5028,51.27133694085202,3965,40.7308359275432,1480,14.969809665085766,77.31652017658898,79.67688493704756,63.31665033110207,65.06205925159755,77.12904832429716,79.49775675459685,63.24474897669705,64.99681001628642,0.1874718522918215,179.12818245071094,0.0719013544050142,65.24923531112847,242.60192,169.9403570229164,253433.67528153272,177527.89944520444,485.07149,322.036671294909,506005.9336021562,335693.5314442989,463.76157,226.14478798967076,480441.5728224307,233109.27788592968,2546.90256,1195.473898286176,2615415.2581325867,1203761.541465997,925.88733,417.4866361436861,948656.1644694232,417617.3581193721,1435.34556,613.7791757961995,1453064.7055136536,601291.7130207968,0.38128,100000,0,1102736,11519.71251279694,0,0.0,0,0.0,41731,435.2004680024236,0,0.0,42001,434.8243946263293,1111034,0,39940,0,0,9687,0,0,79,0.8148256482042496,0,0.0,0,0.0,0,0.0,0.05028,0.1318715904322283,0.294351630867144,0.0148,0.3598398169336384,0.6401601830663616,23.40188312907788,4.100196303236486,0.3039092055485498,0.2862547288776797,0.2118537200504413,0.1979823455233291,11.35204029308094,6.077755361315962,15.836178611090352,11539.939023774126,45.53394374525895,13.958660011582664,13.812375721756151,9.255039090518846,8.50786892140128,0.5916771752837326,0.8105726872246696,0.7095435684647303,0.5630952380952381,0.1248407643312101,0.7662771285475793,0.9256198347107438,0.8774928774928775,0.69,0.147239263803681,0.5160823997108782,0.7250384024577573,0.6405152224824356,0.5234375,0.1189710610932476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024209641312385,0.004795166310155,0.0070844963207307,0.0092362091915014,0.0113016764322916,0.013280915812845,0.0155528132744536,0.0177077908152323,0.0198361979938855,0.0217765218993795,0.0238805664072513,0.025968025136309,0.0280320013162495,0.0302846198204135,0.0322963299156231,0.0345508084930516,0.0366241214040971,0.0387755313741558,0.0407501351407542,0.0426855315114449,0.0573961346099631,0.0713388727265116,0.0847089669638175,0.0965635449746577,0.1088299801763043,0.1237056701957756,0.135197640618701,0.1446911792884668,0.1556089743589743,0.1655276737724088,0.1779635454819666,0.1901108177135189,0.2008678063421636,0.2099174457383412,0.219018681814679,0.2287801201480792,0.2380378100119482,0.2460196905766526,0.2536969573161735,0.2605299029771246,0.2664784625886545,0.2714312445910228,0.2769736919963549,0.2813638979474391,0.2852734650241757,0.2895661500906165,0.2933748811132802,0.2973234276409526,0.3010763817015111,0.3040204649445521,0.3017608996865625,0.2981628018991261,0.2950565409886918,0.2920094261880322,0.2897555902236089,0.2869542587716612,0.2831802444152846,0.2832220052190182,0.2837452390305556,0.2845407953713459,0.2858079011421082,0.2872951062193029,0.2879998326919859,0.2886821082697371,0.2895651132143285,0.2907238939429282,0.2921759351161274,0.2972542901716068,0.3031874173568098,0.3070051160960252,0.3108541487872081,0.3148724988121007,0.3187925754640335,0.3242735941136722,0.3237723939478325,0.3305034783634005,0.3359173126614987,0.3403445512820512,0.3463427947598253,0.3575503993914036,0.0,2.5610677869351672,51.82905110620906,147.39451848729308,199.76462202887635,fqhc3_80Compliance_implementation_low_initial_treat_cost,16 -100000,95688,47608,453.8709138031937,4990,51.14538918150656,3934,40.63205417607223,1506,15.477384834043976,77.40264542862671,79.78460991931938,63.35728834693722,65.11266561874584,77.21271946586279,79.59310243255455,63.28667539694194,65.0428844894412,0.1899259627639224,191.5074867648343,0.0706129499952794,69.78112930462999,241.83258,169.37885611709967,252730.31101078505,177011.59614277616,484.4269,321.81479944760434,505787.95669258427,335848.0472448001,462.17124,225.0198268447257,479523.3467101413,232461.35289794195,2530.00805,1188.9808933163908,2614502.9888805286,1213044.9620813385,897.38594,411.57120497063033,925821.6913301564,418115.46906058834,1456.5543,617.319039874787,1497429.7926594766,625501.0919610179,0.38125,100000,0,1099239,11487.741409581138,0,0.0,0,0.0,41629,434.5581473120976,0,0.0,41904,434.4118384750439,1119599,0,40143,0,0,9520,0,0,87,0.909204915976925,0,0.0,0,0.0,0,0.0,0.0499,0.1308852459016393,0.3018036072144288,0.01506,0.3573770491803278,0.6426229508196721,23.406106434493815,4.070971477395318,0.3124046771733604,0.2793594306049822,0.2099644128113879,0.1982714794102694,11.415897136709743,6.168968911385646,16.093988619346504,11540.499702672842,45.107904631988,13.561200098522644,13.868631673879468,9.211230895924857,8.466841963661036,0.5940518556176919,0.8298453139217471,0.7013832384052074,0.5847457627118644,0.1025641025641025,0.7690376569037657,0.9414316702819956,0.8436578171091446,0.751131221719457,0.1896551724137931,0.5177071924059876,0.7492163009404389,0.647191011235955,0.5239669421487604,0.0775577557755775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020252959463701,0.0044797145955587,0.0067965104483668,0.0091201771223708,0.0113279303647512,0.0132272977211168,0.0158226880218581,0.018105551076229,0.0200194164835726,0.022401653772156,0.0245187478218085,0.0267431833114323,0.0291483739628422,0.0308963017126849,0.0328824506556886,0.0347069341519126,0.036675398904501,0.0387888095633405,0.0408407346548245,0.0428760513178601,0.0575177327190865,0.0714816715005182,0.0852177927951561,0.0974239762698671,0.1095384745190685,0.1249814865751221,0.1362903225806451,0.1467501224159587,0.1565331680629167,0.1658660032598438,0.1790978884689515,0.1902618480848301,0.2017331173279114,0.2111960121995212,0.2206849525988166,0.2300293320050916,0.2382698437465171,0.2457462460270218,0.2528990759195506,0.2594264684031865,0.2653101267283765,0.2709203312726,0.2769063720803975,0.2810568473907586,0.2859687386404944,0.289388909381532,0.2931450051827707,0.2965316892474755,0.3000787167873227,0.3030665492448638,0.3004842192802436,0.2974890754921165,0.2953551606211806,0.2922566085469102,0.2891438032166509,0.2863957812595257,0.2821192052980132,0.2817827808501587,0.2825052674505539,0.2834463898852861,0.2846596946479503,0.2849637326014507,0.2866542133665421,0.2867025876405242,0.2880368610786162,0.2898340624919102,0.2915333880601239,0.2952980400710435,0.2978137313016493,0.3002993540255239,0.3050525172039116,0.3088079610417107,0.3145933763225443,0.3201810637495285,0.3221113494357922,0.3266969379438817,0.3314155942467827,0.3347255369928401,0.336463643681245,0.3398813936249073,0.0,1.8607001228779445,52.3073988520661,141.38696556222507,203.35886825427045,fqhc3_80Compliance_implementation_low_initial_treat_cost,17 -100000,95736,47819,455.58619537060247,4925,50.28411464861703,3920,40.45500125344698,1466,14.936909835380629,77.33907921770925,79.7054869446832,63.32552877917672,65.07524685625877,77.15232222215477,79.52325377851069,63.25437426907936,65.008528504527,0.1867569955544894,182.23316617250876,0.0711545100973509,66.71835173176532,243.54462,170.517636016498,254391.89019804465,178112.34646997784,487.36793,323.9770153031609,508571.93741121417,337903.7303659657,466.61282,226.8488316523252,484992.3748642099,235050.59077679197,2539.34374,1186.8065959661133,2620207.3201303585,1207429.3222676043,899.51083,406.1473447837223,928880.5360574914,413547.2003394099,1426.83436,607.5956863907289,1455482.911339517,603634.864680383,0.3818,100000,0,1107021,11563.267736274754,0,0.0,0,0.0,41908,437.2231971254282,0,0.0,42277,439.1451491601905,1105854,0,39706,0,0,9664,0,0,85,0.8878582769282193,0,0.0,0,0.0,0,0.0,0.04925,0.1289942378208486,0.2976649746192893,0.01466,0.3548763869963013,0.6451236130036987,23.313046152880528,3.950341583399904,0.3035714285714285,0.2834183673469387,0.2127551020408163,0.2002551020408163,10.88061831590733,5.851323879365991,15.566536570384734,11581.14026523325,44.89118567899357,13.66591468103836,13.390443479688784,9.317409746228948,8.517417772037474,0.5936224489795918,0.8343834383438344,0.7151260504201681,0.5599520383693045,0.1044585987261146,0.7536988685813751,0.9216101694915254,0.8782894736842105,0.72,0.1156069364161849,0.5272464814146518,0.7699530516431925,0.6591422121896162,0.5094637223974764,0.1013071895424836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509803921568,0.0048059374619783,0.0071658394486566,0.0091854982929604,0.011352654547674,0.0135453054822841,0.0157038698822209,0.0179685346455808,0.0198572567946174,0.0221327761732112,0.0244700380485503,0.026611751897538,0.0286014007590015,0.0308974583517921,0.0328244511194376,0.035034745201853,0.0370450943220312,0.0391975757072583,0.0409617004461175,0.0429971974203765,0.0574495410928151,0.0716639984932667,0.0848038753106225,0.0978515768773726,0.1106646841089563,0.126359213031521,0.1382661559844249,0.1494963906220054,0.1597024814585248,0.1689843129680894,0.1802762871489838,0.191768807657326,0.202926457789382,0.2123310903222277,0.2211677144461448,0.2310966754980102,0.2396042699539952,0.2475071465550228,0.254746853400824,0.2610369521627041,0.2664089983336419,0.2720988982713854,0.2780208087018208,0.28204084564369,0.2863432383262583,0.290121483375959,0.2938217673489765,0.2977886603823854,0.3011255098353038,0.3046717653718062,0.3015529992886001,0.2984693527352598,0.2956086308267927,0.292429818864112,0.2894791481283739,0.2854392666157372,0.2822236954257032,0.2817812571653182,0.2822371563075663,0.2828742087902291,0.2835329956828079,0.2848225889024534,0.2859464527554953,0.2864997217584863,0.2877373134328358,0.2889434889434889,0.2893573614416865,0.2928522293790257,0.2969295184926727,0.3019627976778168,0.3046216583597644,0.3053863672474974,0.3088142839180183,0.3110723229870228,0.312627669452182,0.312889935256033,0.3195103289977046,0.3186591276252019,0.324882887847892,0.3338408831366578,0.0,1.862399171339465,50.22810841721808,147.450298986063,200.98473666775416,fqhc3_80Compliance_implementation_low_initial_treat_cost,18 -100000,95687,47528,452.0676789950568,4935,50.43527333911608,3930,40.49661918546929,1457,14.87140363894782,77.30793472821749,79.68305863330431,63.31631099018998,65.06991409785087,77.12123485528711,79.49850847558879,63.24597988892791,65.00226801093446,0.1866998729303759,184.5501577155204,0.0703311012620773,67.64608691641172,240.91958,168.7877145655446,251778.79962795365,176395.6593534593,482.84255,321.41809425067765,504042.16873765504,335341.6600485725,462.4529,225.7666324387626,478863.3043151107,232577.32134279827,2528.4601,1178.5357139043522,2610211.460281961,1199440.5236911522,900.64818,405.0622475501178,929258.5095153992,411346.8998035423,1413.68134,600.6528834416539,1445595.2010199924,602473.719458749,0.37967,100000,0,1095089,11444.49089217971,0,0.0,0,0.0,41489,432.9950777012551,0,0.0,41802,432.4620899390722,1119723,0,40189,0,0,9655,0,0,91,0.9510173795813434,0,0.0,0,0.0,0,0.0,0.04935,0.1299812995496088,0.2952380952380952,0.01457,0.3533747090768037,0.6466252909231963,23.517641437523203,3.9600224646255895,0.3094147582697201,0.2885496183206107,0.2020356234096692,0.2,11.35224756218299,6.36045903115027,15.635556211541177,11526.475149512917,45.08375367014971,13.883095290194351,13.821831845494932,8.822317087850932,8.5565094466095,0.5862595419847328,0.7962962962962963,0.7006578947368421,0.575566750629723,0.1170483460559796,0.7593220338983051,0.908119658119658,0.8789625360230547,0.7435897435897436,0.1235294117647058,0.512,0.7177177177177178,0.6294591484464902,0.5208681135225376,0.1152597402597402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.0043472092740464,0.0066139847229125,0.0088465913707646,0.0109734765275404,0.0131664697975642,0.0152440578764364,0.017590607452782,0.0199145351571285,0.0223152593381171,0.0247265420771525,0.0267664633770714,0.0288787872554867,0.0309164709275971,0.0331455224650692,0.0352631034839243,0.0374457326992218,0.039576001079723,0.0418387408848342,0.043783293546134,0.0577851129170409,0.0711960560608756,0.0845389594720773,0.0971561987295444,0.1097886247430288,0.1248440242793393,0.1363101110722128,0.1470297082397522,0.157185740687327,0.1665844345289171,0.1785122009002606,0.1903901695025257,0.2015654726314072,0.2106569295186452,0.2189187702799318,0.2283173295234298,0.2363579565105822,0.2440772155601052,0.2519941452123495,0.2581779447473313,0.2639663834417614,0.2685285896401296,0.2744937929728642,0.2792161847770036,0.2838315927686528,0.2893266396121918,0.2932827219883744,0.2969261538069578,0.3003241280954233,0.3033212281280951,0.3007164404223227,0.2976965758422712,0.2957456702788777,0.2919600387468012,0.2895746009096584,0.2856596207123505,0.2828471485778502,0.2826990358239845,0.283180093652801,0.2832521543649307,0.2842191975736244,0.2852685624012638,0.2863087023794589,0.2873442827535489,0.2889208633093525,0.2911221036188492,0.2910625959406447,0.2950084655421082,0.3006070388434682,0.3043976451064838,0.3099563953488372,0.3150851581508516,0.3190207156308851,0.3243591688154102,0.3297812675266405,0.3332549111869192,0.3356328734253149,0.3340624378604096,0.3291342803537925,0.3447251114413076,0.0,2.202112988983945,51.35831034970317,143.88911984002857,202.08790282637187,fqhc3_80Compliance_implementation_low_initial_treat_cost,19 -100000,95705,47269,450.3839924768821,4899,49.91379760723056,3870,39.84117862180659,1542,15.75675252076694,77.38171245272493,79.75614528565028,63.34258245905804,65.09530218724088,77.189127315303,79.5651488883405,63.27066846809193,65.02603822321407,0.1925851374219291,190.99639730977455,0.0719139909661166,69.26396402680268,241.10306,168.83531620811604,251923.15970952407,176412.22110455675,481.35478,320.55058317377075,502358.3720808735,334337.68682281044,458.0904,223.49400757429612,474440.49945143936,230305.6460494648,2531.8557,1186.7748242058678,2608515.657489159,1203070.9306785092,906.453,414.0499739856367,931426.9264928688,416933.8134820802,1489.7611,624.1193970933242,1522883.1931456036,624291.4694989378,0.37816,100000,0,1095923,11451.052714069276,0,0.0,0,0.0,41426,432.22402173345176,0,0.0,41521,429.70586698709576,1122299,0,40198,0,0,9438,0,0,70,0.7209654667990179,0,0.0,0,0.0,0,0.0,0.04899,0.1295483393272689,0.314758113900796,0.01542,0.3460038986354776,0.6539961013645225,23.67624007316655,4.081121491933603,0.313953488372093,0.2695090439276486,0.2121447028423772,0.2043927648578811,11.817619978873855,6.626917213085223,16.206607634784792,11535.152845678507,44.15008804461485,12.70925063596742,13.717131674903966,9.226430449701256,8.497275284042203,0.5837209302325581,0.8072866730584851,0.6905349794238683,0.5773447015834349,0.1314791403286978,0.7606112054329371,0.9245283018867924,0.8635097493036211,0.7288888888888889,0.1764705882352941,0.5063150074294205,0.7269789983844911,0.6179906542056075,0.5201342281879194,0.1191626409017713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0044703950369491,0.0065551812314811,0.0088881214066594,0.0110767540736822,0.0131873727087576,0.0153657914861075,0.0174976520070235,0.0197192889197836,0.0221312314464121,0.0241944578288549,0.0262625640393835,0.0284447918059254,0.0309026669001534,0.0328163214761152,0.034749074667604,0.036558716612985,0.038662682106836,0.0407159348545042,0.0426228141478563,0.0575328445809052,0.0716177594455669,0.0847969782813975,0.0978203698638783,0.1096497241881216,0.1254269550044942,0.1363853376478701,0.1482802303671609,0.1575338076011023,0.1670081197910521,0.1798347214291101,0.190929263408562,0.200826536160957,0.2108766943594228,0.2188335184716738,0.2289819457819989,0.2376120601222068,0.2463937577999393,0.2530897793500691,0.2597628530879458,0.2661462850534836,0.2715227145260796,0.2765298035179862,0.2809591682736648,0.284973715839697,0.2896146599179813,0.2928508936382952,0.295978436383517,0.2998848835254097,0.3029336986734465,0.2999153578482084,0.2976677184799012,0.2946340778199185,0.2922824538429437,0.2910206193186017,0.2875594005117582,0.28316869121331,0.282729691350972,0.2832903488529931,0.2843711193897463,0.2846100836266786,0.2854083156488249,0.2856727453994101,0.2863515312916111,0.2881404446140635,0.2890367161716171,0.290004229522064,0.2952342487883683,0.2985234992374879,0.3004123306499116,0.3046906682287207,0.3071451153967752,0.3071850270066574,0.312386018237082,0.3178504672897196,0.3234981706597427,0.3239586500456066,0.3275619085967384,0.3299450549450549,0.3251627728839525,0.0,2.225902310659193,51.27964863962824,135.3972139117209,200.94467964045828,fqhc3_80Compliance_implementation_low_initial_treat_cost,20 -100000,95843,48245,458.3120311342508,5078,51.63653057604624,4026,41.2445353338272,1515,15.316715879093934,77.44506122741345,79.72350664550457,63.40474875222951,65.0844508896031,77.24502311176691,79.53076365007183,63.328164280364014,65.01380557035338,0.2000381156465351,192.742995432738,0.0765844718654946,70.64531924972073,242.5709,169.95099264647814,253091.93159646503,177322.27981853465,485.31236,322.8608196244291,505632.59705977485,336135.0433776374,469.63653,229.6921363639624,485926.59870830417,236428.8554975917,2597.04709,1224.6649635277552,2659818.8182757217,1228172.433989449,931.6087,427.46665313657655,952393.1116513464,426497.4323470839,1477.8924,642.3628689127438,1495564.5169704622,630254.1831394973,0.38383,100000,0,1102595,11504.178708930229,0,0.0,0,0.0,41764,434.9717767599094,0,0.0,42354,437.7993176340473,1113513,0,39999,0,0,9636,0,0,79,0.8138309527039012,0,0.0,1,0.0104337301628705,0,0.0,0.05078,0.1322981528280749,0.2983458054352107,0.01515,0.3565348969169661,0.6434651030830338,23.20945685804397,4.055271584730641,0.3204172876304024,0.2737208147044213,0.1994535519125683,0.206408345752608,11.420909213487464,6.1875452181264965,16.23444575780542,11670.28581460412,46.03596887078948,13.51640607922845,14.616792889976804,8.728009297706581,9.17476060387763,0.5814704421261798,0.8121597096188747,0.6930232558139535,0.5591531755915318,0.1239470517448856,0.759504132231405,0.934322033898305,0.8649425287356322,0.7577319587628866,0.1530612244897959,0.5049715909090909,0.7206349206349206,0.6295116772823779,0.4958949096880131,0.1149606299212598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021761574120933,0.0044165763429532,0.0069456414832239,0.0094291746173521,0.0118275855061271,0.0138873345474153,0.0164385235883647,0.0187014999949014,0.0208109957213899,0.0228118609406952,0.0250870366577923,0.027189185862854,0.0293132844436227,0.0314248683344305,0.0334641815802759,0.035508211273857,0.0375100833557407,0.0395539942591268,0.0419015583309973,0.0440148172812786,0.0592387904066736,0.0733636316146894,0.0872661019256342,0.0999160457550634,0.1117938573878641,0.1274540848638378,0.1385291470323502,0.1495176165582897,0.1595853596109546,0.1688589684586816,0.180438521066208,0.1921074799663045,0.2026121793131901,0.2112751414033325,0.2209150326797385,0.2299564053198787,0.2394466676327317,0.2477161125032305,0.2551182352007617,0.2616903696754041,0.2683138324931786,0.2748912687649067,0.2804826117814052,0.2846577309717568,0.288797495996506,0.2930266331905676,0.2964288395605495,0.3001233453287725,0.3023981156738148,0.3055354153209328,0.3024688037865748,0.2995799126877351,0.297148953493269,0.2941235690041995,0.2922228628024894,0.2883502831739845,0.285318690309486,0.2848033139800378,0.2849550910912271,0.2862633956248339,0.2870253164556962,0.2879713875842553,0.2888787109131032,0.2899953384092876,0.2911238367931281,0.2917861664470454,0.2924291555054278,0.2975723622782446,0.3029410745834344,0.3067248359077152,0.3102730112735998,0.3162984885318676,0.3230547910933199,0.3252874438437523,0.3291686237670267,0.3349112426035503,0.3376682986536107,0.3438013136288998,0.3446561723280861,0.35202492211838,0.0,2.9701944181708755,51.74274489209179,148.15995432426087,204.2911919406989,fqhc3_80Compliance_implementation_low_initial_treat_cost,21 -100000,95682,47603,454.25471875587886,5091,51.90108902405886,4066,41.87830521937251,1518,15.467904098994586,77.29747507811412,79.70039028944637,63.28577397120039,65.06566725050686,77.1009629963019,79.5079666151054,63.21067796120497,64.99483383437517,0.1965120818122159,192.42367434097216,0.0750960099954198,70.83341613169125,242.51172,169.85072115085495,253455.94782717756,177515.85580449292,484.83526,321.9172716575621,506097.4373445371,335827.179257919,467.96523,228.08091476276,485370.6862314751,235516.0852265939,2597.95132,1233.2631448220077,2674390.585481073,1248115.8680023486,901.29058,418.6726607018998,925456.03143747,421058.2143996779,1471.47544,638.9050473212914,1500115.92567045,634650.8631616036,0.38073,100000,0,1102326,11520.724901235342,0,0.0,0,0.0,41722,435.4110491001442,0,0.0,42454,439.894651031542,1108503,0,39904,0,0,9545,0,0,85,0.8883593570368512,0,0.0,1,0.0104512865533747,0,0.0,0.05091,0.1337168071861949,0.2981732469063052,0.01518,0.3650733910425291,0.6349266089574709,23.12265327640492,3.980923117193967,0.3049680275454993,0.2902115100836203,0.2097884899163797,0.1950319724545007,11.034013207116988,5.9703139319240055,16.533004683357593,11572.159535436418,46.99292603364691,14.63229183149945,14.0944951111847,9.44486859998606,8.821270490976701,0.5848499754058042,0.8152542372881356,0.6774193548387096,0.567409144196952,0.116015132408575,0.7567567567567568,0.9032882011605416,0.8426966292134831,0.7733990147783252,0.1538461538461538,0.5078347578347578,0.746606334841629,0.6108597285067874,0.5030769230769231,0.1047463175122749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.004392104355588,0.0068429869536524,0.0093181587237069,0.0116068522135416,0.0136486789301065,0.0158296275141773,0.0182185821368027,0.0200456139992022,0.0222834379576246,0.0244838090939862,0.0265455815578064,0.0285182251211407,0.0305637706995867,0.0326890513360591,0.0348483594687409,0.0367230174442106,0.0386376615959711,0.0404819126689347,0.0423132640618649,0.0566826149635417,0.0712580868035927,0.0840302626470372,0.0971881804697937,0.1102941952089113,0.1263422943049692,0.1376620068146355,0.1481106756411348,0.158440086400479,0.1680963679503559,0.1801486050750035,0.1922326519109453,0.2034354304635761,0.2120133213557985,0.2213477944580384,0.2315210277004315,0.2399812252743568,0.2471783549978598,0.2543453070683661,0.2610145791307537,0.2671670836808451,0.2729008080571495,0.2776271066001871,0.2825377396980824,0.2862285790734727,0.2901641973328728,0.2939504008016032,0.2972759473027037,0.3011882523868825,0.304211055010706,0.3010965888398818,0.2983784230991975,0.2955944648404405,0.2928121606948968,0.2900109965227212,0.2855764961648575,0.2816456196361682,0.2828773963295843,0.2831096824667925,0.2831556503198294,0.2839848769858268,0.2843092989929526,0.2845777361241279,0.2842743278346396,0.2855335704227033,0.2865785867569873,0.2883990391408789,0.2934559052664381,0.297339593114241,0.3019342663940871,0.3048439473209453,0.3074700567346081,0.3109604379198806,0.3166066606660666,0.3189575217955852,0.319094304388422,0.3208232445520581,0.325809029165002,0.3296376419686317,0.3291713961407491,0.0,2.41852866588259,54.70684861807384,153.56867008070049,199.76224946290188,fqhc3_80Compliance_implementation_low_initial_treat_cost,22 -100000,95838,47510,452.4718796302093,5036,51.57661887768944,4045,41.71622947056491,1571,16.058348463031365,77.32864418348662,79.63793833507309,63.32870225298407,65.03796179952427,77.12993259172619,79.44307919792664,63.25481506078517,64.9676623013669,0.1987115917604285,194.85913714645164,0.0738871921988959,70.29949815736813,241.8515,169.4235726799921,252354.49404202928,176781.20649428418,481.635,320.1917857060293,502057.430246875,333603.1487573086,462.48573,225.3801269998586,479493.2177215718,232721.0861265348,2620.3669,1215.712032363887,2704194.72443081,1238911.7316601728,913.60478,412.7087235115754,938939.491642146,416455.7704404142,1519.65146,636.0183467056121,1555196.519126025,636803.4553147738,0.38007,100000,0,1099325,11470.65882009224,0,0.0,0,0.0,41345,430.9042342285941,0,0.0,41910,434.2849391681797,1116575,0,40111,0,0,9640,0,0,82,0.8556105094012814,0,0.0,0,0.0,0,0.0,0.05036,0.1325019075433472,0.3119539316918189,0.01571,0.3531996179560649,0.6468003820439351,23.217220842069047,3.9974540580050646,0.3129789864029666,0.2813349814585908,0.207416563658838,0.1982694684796044,11.249312858791498,6.153991407889979,16.713691602748042,11556.870259950609,46.48247807686909,13.999309897673738,14.496776323099231,9.394588159143606,8.591803696952528,0.5901112484548826,0.8005272407732865,0.7116903633491312,0.5864123957091776,0.1034912718204488,0.759567387687188,0.9018789144050104,0.8607242339832869,0.7259615384615384,0.1346153846153846,0.5184664087231797,0.7268588770864947,0.6527012127894156,0.5404120443740095,0.0959752321981424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0046121720796334,0.0067569624105919,0.0090707784820412,0.0113992271710392,0.0137650173080838,0.0160024462338191,0.0181452641676957,0.0202342265007051,0.0225119210854839,0.0246009139531547,0.0267025163170641,0.0287029710092799,0.030522642344633,0.0326579015210105,0.0342861274960486,0.0363835797882798,0.0384643297771971,0.0404973098734913,0.0425157677816864,0.0573732021985586,0.0710701292184167,0.0842556491845889,0.0971785845636526,0.1095113621990809,0.1256262816311862,0.137031617787391,0.1487636719581223,0.1589659259575649,0.1692929422862533,0.1812132566703275,0.1928989473911961,0.2027769019168669,0.211406461767149,0.2200257417246955,0.2287891542244473,0.2373961775475573,0.2448754460416268,0.2528153664517301,0.2601373427952354,0.265543335921475,0.2715571810381207,0.276056438310648,0.2806623598069118,0.2847670839568354,0.2885388657276069,0.2926178364697923,0.2960570736989617,0.2989301692277767,0.3028649205803843,0.3001603406227683,0.2988097206149777,0.2960443685525183,0.2930502657379115,0.2904809365842048,0.286410893366455,0.2833652795158965,0.2835676438261783,0.2841759103068718,0.2850206317586796,0.2860053078159458,0.2872686417124948,0.2868110318354404,0.2878700200311596,0.2878533780546238,0.2884259861997136,0.2906485029090393,0.2972516649470031,0.300752141514033,0.3064275037369208,0.3091361374943464,0.3131633137969269,0.3161820005013788,0.3188758070641853,0.317943435100206,0.3217463518804128,0.3225072089846714,0.3331325301204819,0.3325183374083129,0.3328209069946195,0.0,1.9376871736509729,52.811348171496974,148.23470113161983,210.74422583874212,fqhc3_80Compliance_implementation_low_initial_treat_cost,23 -100000,95736,47886,456.0875741622796,4941,50.38856856354976,3918,40.24609342358151,1464,14.947355226873904,77.35098256499538,79.69760802991256,63.33757887846742,65.07022514657295,77.16560986216281,79.5157083052581,63.2675281956149,65.00412561950071,0.1853727028325664,181.8997246544569,0.0700506828525178,66.09952707223954,241.44692,169.1637362131237,252200.7604245007,176698.14512108685,483.03476,320.8435652652726,503898.5439124258,334483.4913358326,464.15954,226.26583575703955,480163.1883512994,232802.94676327784,2529.2484,1178.9109393617834,2600323.608673853,1190215.777050936,915.66635,412.6851438671312,940939.9598896968,415620.6124624765,1424.4015,604.6287262463172,1455061.6695913763,602329.277380325,0.38192,100000,0,1097486,11463.670928386397,0,0.0,0,0.0,41528,433.086822094092,0,0.0,42025,434.2149243753656,1118001,0,40115,0,0,9542,0,0,77,0.8042951449820339,0,0.0,0,0.0,0,0.0,0.04941,0.1293726434855467,0.2962962962962963,0.01464,0.3674102812803104,0.6325897187196896,23.37338349726916,4.0438590561904,0.3029606942317508,0.2784583971413987,0.2133741704951506,0.2052067381316998,11.229408327686205,6.089347955496769,15.59755338397423,11608.33020097768,44.80647896959066,13.368276261960323,13.53326075028268,9.184054466470943,8.720887490876711,0.5811638591117917,0.8120989917506874,0.6983993260320135,0.5633971291866029,0.11318407960199,0.7353982300884956,0.9061784897025172,0.8654434250764526,0.7111111111111111,0.1290322580645161,0.5186513629842181,0.7492354740061162,0.6348837209302326,0.5228658536585366,0.1084142394822006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0043279512674714,0.0066563169056243,0.0089481595839765,0.0113471139083486,0.0133359122883814,0.0158306235410444,0.0179827112866517,0.0200840155766105,0.022065521088129,0.0243044877708756,0.026288236501745,0.0283969402862312,0.0305014931520955,0.0326613984773144,0.0345946728131556,0.0368939880299045,0.0390171011124024,0.0410571514716737,0.0432037671768051,0.0575720564133078,0.0709802280573281,0.0842892192840816,0.0970319514682535,0.1094044845507542,0.1253501622638717,0.1366408246810406,0.1469558462013259,0.1573465790738663,0.1677840110697544,0.179690445160109,0.1912538146873579,0.2019881234637722,0.210894252018467,0.2198802474299425,0.2299585540459673,0.238554136144363,0.2467858227506383,0.2538524385538887,0.2604928366762177,0.2672351947420796,0.2730920875598142,0.2785313072784249,0.2836825092781037,0.2882721141248969,0.2924534104188449,0.296199590225376,0.2993128151714151,0.3035206166899477,0.3067257360600187,0.3041359910631367,0.3015285555081656,0.2983098591549296,0.2954998699384375,0.2926036425168099,0.289196794518872,0.2854951692730981,0.2858103453931184,0.286242881014903,0.2862201501832805,0.2872421838544097,0.2876022655758338,0.2875046919964966,0.2876075693224522,0.288961038961039,0.2917714137618245,0.2948094538052697,0.2985759790144275,0.3042315175097276,0.305268127631113,0.3077548806941431,0.3106320172895472,0.3136323878545545,0.3180617405087176,0.3205545733693123,0.3191264529764001,0.3236285626723874,0.3258946521913952,0.3314191960623462,0.3337138508371385,0.0,2.686920107882581,48.649841272129656,144.9336250511062,206.41832560674447,fqhc3_80Compliance_implementation_low_initial_treat_cost,24 -100000,95836,48078,457.6046579573438,5024,51.07683960098502,4014,41.22667890980425,1576,15.99607663091114,77.51248185563044,79.79911434899611,63.42745123530996,65.11105751595315,77.30637441704803,79.59843895706436,63.3486883314641,65.03738204691493,0.2061074385824071,200.6753919317532,0.0787629038458561,73.67546903822131,244.66662,171.2817549663363,255296.9656496515,178723.58504772355,487.12437,324.09206408120014,507639.8743687133,337523.940983764,470.4892,229.92823963373544,487114.142910806,236962.1051135925,2602.41069,1230.5085559249164,2672832.73508911,1241397.049445571,957.21384,437.8643955755856,979164.374556534,437289.56923449214,1525.24366,656.1239101052149,1549530.009599733,648016.7132187238,0.38269,100000,0,1112121,11604.407529529612,0,0.0,0,0.0,41913,436.6626319963271,0,0.0,42551,440.15818690262535,1106369,0,39670,0,0,9764,0,0,84,0.8764973496389665,0,0.0,2,0.0208689845152134,0,0.0,0.05024,0.1312811936554391,0.3136942675159235,0.01576,0.3633947218530473,0.6366052781469528,23.04276531507728,4.050131437318575,0.3066766317887394,0.2787742899850523,0.2115097159940209,0.2030393622321873,11.300561516388486,6.13828306767733,16.728326751641553,11569.45513280308,45.96235324934608,13.923238940185664,14.03248089717452,9.24040778878038,8.766225623205518,0.5817140009965122,0.803395889186774,0.7002437043054427,0.5594817432273262,0.1214723926380368,0.7480314960629921,0.8923679060665362,0.8583106267029973,0.6745283018867925,0.2,0.5047376093294461,0.7286184210526315,0.6331018518518519,0.521193092621664,0.0992125984251968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021451844656264,0.0044358473177302,0.006486990543184,0.0087061521445748,0.0111034356650886,0.0129462015661547,0.0151595365600374,0.017529368575624,0.0198911500719879,0.022354023928827,0.0245046336593108,0.0264385851562419,0.0286471712459669,0.0307932979292742,0.0328048000989711,0.0348086556835201,0.0371589109986651,0.0393049320380296,0.0413238593866866,0.0432465071730484,0.0579425996996495,0.0719259723964868,0.0853592086511861,0.0977198012834651,0.109790253969591,0.124959072233547,0.1367191639994064,0.1469434194995906,0.1575796382263486,0.167121849864516,0.1789378589404401,0.19060994317568,0.2017657215459294,0.2106728994418899,0.2202177567321109,0.2306305509163505,0.2392498579276378,0.2467306309545209,0.254174502118404,0.2606906484688454,0.267141934293097,0.2732440965062501,0.2790612654047998,0.2834336342360414,0.2871718528738971,0.2905558898289475,0.2946345111235745,0.2981250079126945,0.3012006286553474,0.3039857305861214,0.3010725332404965,0.2975431588739022,0.2953391075601326,0.292353887707603,0.2896003780606669,0.2866652449427248,0.2826470773693171,0.2829091384323847,0.2837364952096215,0.2851891315929675,0.2861216198587376,0.2873509009805655,0.2868772251254398,0.2872515086971956,0.2873814560406911,0.2888540031397174,0.2902989902399235,0.2935714506793773,0.2972170430218908,0.3015669349508145,0.3063187424856392,0.3068736372131658,0.3075404171294582,0.3131388495113034,0.314393243987516,0.3153455049688005,0.3216147772977804,0.3263467189030362,0.3260986066452304,0.3364208966283808,0.0,2.528388246511129,54.96497462175606,142.193682529488,199.3822910533692,fqhc3_80Compliance_implementation_low_initial_treat_cost,25 -100000,95734,47769,454.1855558108927,4986,50.90145611799361,4022,41.39595128167631,1514,15.438611151732928,77.31288813594676,79.67344524134387,63.318020272784125,65.06285334658459,77.12012152617146,79.48255349476763,63.24584487596534,64.99397083630718,0.1927666097753047,190.89174657624145,0.0721753968187854,68.88251027740466,241.52964,169.24869250744405,252292.43528944784,176790.57859009763,482.30201,320.93163341610745,503114.6927946184,334553.4955356587,467.53962,228.497475658092,484399.30432239326,235665.79498427492,2598.30397,1223.2282146971131,2675470.449370129,1239347.9186279494,926.80928,425.8414433147595,950092.422754716,426862.9010082657,1471.98402,625.2649842588766,1501807.8425637705,621926.6278337528,0.38207,100000,0,1097862,11467.837967702177,0,0.0,0,0.0,41474,432.57358932040864,0,0.0,42376,438.7051622203188,1116636,0,40085,0,0,9610,0,0,82,0.835648776819103,0,0.0,0,0.0,0,0.0,0.04986,0.1304996466616065,0.3036502206177296,0.01514,0.3699654775604142,0.6300345224395857,23.298002941759872,3.9361986763844823,0.2973644952759821,0.2951268025857782,0.2048731974142217,0.2026355047240179,11.25467069013104,6.209791385202306,16.239489240524076,11617.273729644196,46.37305576160453,14.611435028617011,13.602745516231945,9.156360867057812,9.002514349697762,0.5957235206364992,0.8264532434709352,0.7232441471571907,0.5546116504854369,0.1141104294478527,0.7760711398544866,0.9262948207171314,0.8746518105849582,0.7598039215686274,0.1511627906976744,0.5156193895870737,0.7532846715328467,0.6583034647550776,0.4870967741935484,0.104199066874028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177479795013,0.0047233399892559,0.0070211751336762,0.0090399382440173,0.0113912592426846,0.0139307535641547,0.0162536963393494,0.0183765352063786,0.020579876091357,0.0228750473576965,0.0251919902390009,0.0274272218514144,0.0293319071910482,0.0314775712004944,0.0336844494423753,0.0357799871845222,0.0377530416774527,0.0398642829720784,0.0419179734620024,0.0439262755394409,0.0585060291277339,0.0730339429958565,0.0865370498542335,0.0988170968929078,0.1114309514018494,0.127604662478052,0.1397631528682697,0.1500574810525419,0.1602200502056294,0.1688542873075108,0.1811682368775235,0.1922636041180032,0.2031528593172429,0.2115986089543098,0.220492623843522,0.2303918311294216,0.2400075877613872,0.2472722773390925,0.253774891578302,0.2603326612903225,0.2666242333063303,0.2719620267963616,0.2775267876150152,0.2819898399309882,0.2860855414956403,0.2898516802995959,0.2937333383396538,0.2977327348329752,0.2999042170390121,0.3032334697109674,0.3013266886659034,0.2982352374795395,0.2951574736604879,0.29307454403561,0.2912429378531073,0.2870017012276426,0.2833956761554555,0.2838699080157687,0.2843056837212481,0.2845400614680866,0.2850213499138512,0.2861716634716101,0.2870110855469567,0.2870680044593088,0.2882889368850492,0.2909653755105226,0.2923457632903831,0.2958481315020272,0.3008238387379491,0.3052535513054519,0.3084511524298768,0.3141319829086881,0.3164446657537657,0.3201148122970013,0.3210176784211018,0.3245913207103375,0.3263367550176191,0.3279580729691594,0.3300220750551876,0.3318250377073906,0.0,2.360549691176297,53.72695353303536,148.35692478106816,202.89621278193545,fqhc3_80Compliance_implementation_low_initial_treat_cost,26 -100000,95788,47995,456.2471290767111,4907,50.14198020628889,3898,40.17204660291477,1510,15.429907712865912,77.37208356525132,79.71001671429279,63.35007434272507,65.07911404964594,77.18009259306032,79.52033167706604,63.2778100023894,65.0097447221055,0.1919909721909931,189.68503722675223,0.0722643403356713,69.36932754044278,243.12068,170.3408674025938,253811.20808452,177831.11392094396,487.89912,325.1696139308305,508846.06631310814,338961.00130583206,469.90608,229.0396635735058,487042.15559360257,236415.1094747319,2494.93374,1177.1528491349543,2571648.9748193924,1196124.473981724,905.62241,411.9072512714786,933108.4687017164,417760.36628245993,1456.63642,621.4683355184707,1489563.4108656617,622833.5336638575,0.3824,100000,0,1105094,11536.873094750908,0,0.0,0,0.0,41866,436.5369357330772,0,0.0,42467,439.8254478640331,1107844,0,39789,0,0,9544,0,0,94,0.9813337787614316,0,0.0,0,0.0,0,0.0,0.04907,0.1283211297071129,0.3077236600774404,0.0151,0.3549707602339181,0.6450292397660818,23.197636417641267,3.983034752521805,0.3029758850692663,0.293227296049256,0.2095946639302206,0.194202154951257,11.338666631354352,6.412102606426468,16.19960926020637,11584.927854606904,44.94053348753755,14.054507813909364,13.365678058061686,9.23643155283558,8.283916062730919,0.5938943047716778,0.8066491688538933,0.6867061812023709,0.5899632802937577,0.1321003963011889,0.7436974789915967,0.9186295503211992,0.8385093167701864,0.7083333333333334,0.0993788819875776,0.5280649926144756,0.7292899408284024,0.629802095459837,0.5407279029462738,0.1409395973154362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0048152954057013,0.0070122384364027,0.0092949076096341,0.0115936133428251,0.0136830102622576,0.0159720311082571,0.0183480621262526,0.02068345323741,0.0228635758878313,0.0248511493016058,0.0271759767649503,0.0292131366603279,0.0314771720999196,0.0336592005939858,0.0358840304182509,0.0380088811601403,0.0402376927624005,0.0422589359933499,0.0441133599866733,0.0591991985724571,0.0731908840848001,0.086418717765944,0.0993012871027055,0.1112656174283125,0.1270810445364658,0.1380022889114954,0.1487624393978055,0.158398412495199,0.1676682627931141,0.1798280999558955,0.1910958830078146,0.2019081356558401,0.2121728864694694,0.2207706518870414,0.2301764797059409,0.2392407463169281,0.2478899515616044,0.2541481548644482,0.260419647660802,0.2672046989177689,0.2733584235255616,0.2781323122739843,0.2825033212451976,0.2853867430124223,0.2896453272293189,0.2927769020991268,0.295034055098099,0.2991740237581273,0.3022630871775957,0.3001813175743738,0.2967393242705661,0.2947832083198469,0.291495287988339,0.2891548397621272,0.2864323911382735,0.283528594435848,0.283736457958302,0.2835892186966905,0.2833843743323125,0.2844610359309379,0.2848706743828983,0.2856755742693959,0.2868664874352878,0.286404284826168,0.2865484934208819,0.287001506494983,0.2912277401555054,0.2954307273108363,0.2993272655322517,0.3007883291047481,0.305065963060686,0.3077355661084728,0.3115969437930252,0.317990457479652,0.3247210804462713,0.3218702865761689,0.3262828045436741,0.3259358288770053,0.329873980726464,0.0,2.030516874136945,51.97581105734688,143.74604262954898,198.30691153929172,fqhc3_80Compliance_implementation_low_initial_treat_cost,27 -100000,95642,47833,455.41707617992097,5035,51.40001254678907,3983,41.00708893582318,1478,15.003868593295833,77.25911226955019,79.65468183613065,63.27736057920528,65.04545690679069,77.07034993478705,79.4709612798837,63.20584748596082,64.97852990956649,0.1887623347631404,183.7205562469535,0.0715130932444623,66.92699722420059,241.1717,168.9575994367332,252160.87074716127,176656.2801245616,483.78593,322.0911249737795,505105.98900064826,336043.4380019024,468.89833,228.65759081479453,486426.8835867088,236082.66352448583,2556.33169,1209.781783658477,2633121.1183371325,1225511.6292620248,929.41457,427.3402401573683,955792.6120323706,430974.7599903087,1438.54106,615.9163237285848,1463256.623659062,609704.7977357307,0.3809,100000,0,1096235,11461.857761234603,0,0.0,0,0.0,41606,434.3384705464127,0,0.0,42444,439.9427029965915,1111724,0,39992,0,0,9549,0,0,90,0.920097864954727,0,0.0,1,0.0104556575563037,0,0.0,0.05035,0.132186925702284,0.293545183714002,0.01478,0.3626289644631257,0.6373710355368742,23.151612093495583,4.026241232012688,0.3063017825759477,0.2894802912377605,0.2013557619884509,0.2028621641978408,11.61165795902811,6.495543480704656,15.854146254897756,11588.4572498933,46.14921060419593,14.202492075196329,13.999569639333224,9.105616455645729,8.841532434020648,0.5965352749184032,0.821335646140503,0.7,0.6034912718204489,0.1126237623762376,0.7520458265139116,0.9079229122055674,0.855191256830601,0.7476190476190476,0.1396648044692737,0.5277073524085476,0.7623906705539358,0.6334894613583139,0.5523648648648649,0.1049284578696343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024614324929347,0.0048165160871637,0.0071859204676938,0.0097341895626727,0.0119945063329772,0.0141262501782331,0.0163448008646532,0.0185081209101952,0.0205990594970353,0.0231234581802176,0.0253752460629921,0.0273539377759523,0.0295506207378912,0.0314821110321311,0.0336945304437564,0.0357131778938117,0.037707703145071,0.0398687993689083,0.0419370943584623,0.0438041427335369,0.0585604413977595,0.0724362935576107,0.0866656865627756,0.098341494234718,0.1097358777497333,0.1256699218336263,0.1366021541926026,0.1473095364944059,0.1568889554281803,0.1661941580756013,0.178165383038854,0.1903193299164562,0.2014639247124433,0.211633487087903,0.2203890775949534,0.2296971648769003,0.2379924144952506,0.24659712433042,0.2543440684133916,0.2611058139668462,0.2664640441747967,0.2730076457619963,0.2783557743638413,0.2829943747295543,0.2876625513400202,0.2913917920589035,0.2946172083746252,0.2975295107462458,0.3006303665464733,0.3032457577840038,0.2999217970498611,0.2971720876363285,0.2943926553672316,0.2921071330172126,0.290129343744412,0.2870510991455351,0.2841681588413329,0.2837402648614899,0.2849078873094883,0.2854592838527721,0.2851475514137614,0.285728369745248,0.2863053199047181,0.2860413425205601,0.2881724541739359,0.2888175439504958,0.2891982119617495,0.2927691249139926,0.2975105617820607,0.3018227728241142,0.3055907937658572,0.3107195610888373,0.3154799149042673,0.3165662650602409,0.3191371169336172,0.3207370026992137,0.3217036701404621,0.3210715713714514,0.3232211803640375,0.3338485316846986,0.0,2.4381669044125824,53.16078138032616,152.3860205550354,196.1708634186034,fqhc3_80Compliance_implementation_low_initial_treat_cost,28 -100000,95636,47431,451.97415199297336,4891,50.07528545735916,3862,39.995399222050274,1465,15.057091471830692,77.28554750318864,79.71802795427946,63.27381344368565,65.0722093437942,77.10597534227078,79.53819203481696,63.20686605579595,65.00705082084697,0.1795721609178571,179.835919462505,0.066947387889698,65.1585229472289,241.02496,168.87343471586374,252023.2548412732,176579.35789437423,480.98878,319.40657725872205,502534.7149608934,333579.2978153855,459.87265,223.94061898133944,478689.0815174202,232477.2097483612,2515.01988,1173.8203263615972,2607264.2519553304,1204863.9491003358,890.02841,403.1968442458805,922331.7474591158,413285.39906089753,1420.70686,592.4469727267156,1462419.1936091012,600334.6990273495,0.37941,100000,0,1095568,11455.602492785143,0,0.0,0,0.0,41368,432.1385252415409,0,0.0,41696,433.748797523945,1119463,0,40138,0,0,9476,0,0,68,0.711029319503116,0,0.0,1,0.0104563135221046,0,0.0,0.04891,0.1289106771039245,0.2995297485176855,0.01465,0.3520906604142243,0.6479093395857757,23.58976725425873,4.047528013447527,0.3166752977731745,0.2767995857068876,0.2009321595028482,0.2055929570170896,11.823250651849868,6.5978041068813225,15.443628634236154,11553.372635235171,44.13279584674592,13.16803708883142,13.870600868262985,8.55619724014207,8.537960649509442,0.5916623511134127,0.8241347053320861,0.7007358953393296,0.5837628865979382,0.1183879093198992,0.7786324786324786,0.9380530973451328,0.8885869565217391,0.7553191489361702,0.1111111111111111,0.5104011887072808,0.7406807131280388,0.6198830409356725,0.5289115646258503,0.120253164556962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047266936473643,0.0072797790683507,0.0095543019769273,0.0118117445977292,0.0140879503712984,0.0164947822627536,0.0185415985616214,0.020445735443025,0.0227870917526089,0.0247430294823659,0.0268801183711634,0.0289343393274387,0.0308315551844636,0.0328559480417565,0.0351682906142038,0.0372749976683696,0.0391218103833252,0.0411553473848555,0.0430569607710199,0.057502743950243,0.0717818669572871,0.0852510350335203,0.0979130013379547,0.1104268556760924,0.1256354316699144,0.1376140939953884,0.1484063532672423,0.1587006066831444,0.1676890517065414,0.179857589815514,0.1914946665510363,0.2021486396670262,0.2115900750397108,0.2202700468448608,0.2297142857142857,0.2381101376720901,0.2459664698724593,0.2531126459762802,0.2605053572451727,0.2665401175980369,0.2720154494382023,0.2770122160740311,0.2818303978499784,0.286211216385507,0.289650579079147,0.2928725215301422,0.2953165378788843,0.2986471076093717,0.3017772558747081,0.2982982444339813,0.296111637617262,0.292910815298455,0.2906488522082907,0.2882195111104523,0.2849299565669542,0.2817618415227977,0.2816889865097448,0.2829770927360981,0.2834684965689332,0.283927104339383,0.2842421977935537,0.2851773745641325,0.2858954393770856,0.2871178256400449,0.2892948502622671,0.2903307529908515,0.2947083696057704,0.2996164080588865,0.3018757097544739,0.3039582113747917,0.3079873883342091,0.3130922693266832,0.3146784855769231,0.3173941247335742,0.3219983696285082,0.3274069609763447,0.3326021934197408,0.3365591397849462,0.3465530022238695,0.0,1.537362580413437,51.54109354932615,137.88099898654443,199.3252963962773,fqhc3_80Compliance_implementation_low_initial_treat_cost,29 -100000,95815,47587,452.93534415279447,4991,50.97322966132651,3995,41.152220424776914,1497,15.269007984136096,77.35864855579545,79.66356843283249,63.35358995694328,65.05435135542002,77.17118087677777,79.48010979909652,63.2829293694864,64.98777181906239,0.1874676790176863,183.4586337359667,0.0706605874568779,66.57953635763647,243.83722,170.7329053714618,254487.2932213119,178189.96045195806,482.77048,320.888233276867,503317.4033293326,334366.70815518295,465.3492,227.209665960286,482877.3887178417,234883.68968820985,2593.89135,1212.8685448956826,2672857.3814120963,1231631.6117454695,924.32918,421.0527665738518,951365.099410322,426211.6795081466,1458.9483,617.902883841838,1489410.8229400408,615353.8098783235,0.37865,100000,0,1108351,11567.60423733236,0,0.0,0,0.0,41484,432.3957626676408,0,0.0,42160,437.1444972081616,1108013,0,39764,0,0,9589,0,0,81,0.845379116004801,0,0.0,0,0.0,0,0.0,0.04991,0.1318103789779479,0.2999398918052494,0.01497,0.3626564003849856,0.6373435996150144,23.2915371569803,4.097754757077915,0.3031289111389236,0.286107634543179,0.1982478097622027,0.2125156445556946,11.502860924549896,6.293679269059981,15.917714601196565,11473.255741676712,45.817672225514976,14.247000893450307,13.582381895034452,8.814683177461747,9.173606259568468,0.5862327909887359,0.820647419072616,0.6928158546655656,0.5921717171717171,0.1130742049469964,0.7765690376569038,0.9215686274509804,0.8660436137071651,0.8277777777777777,0.1684782608695652,0.505,0.7393364928909952,0.6303370786516854,0.5228758169934641,0.0977443609022556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0047402485591872,0.0068027210884353,0.0092138776421402,0.0113587873122955,0.0135089771629113,0.0155950780263211,0.0178715330551957,0.0199211327462558,0.0221772131181079,0.0243362831858407,0.0264942098407065,0.0287566523516962,0.0306862735009312,0.0326738083700213,0.0343616702642967,0.0362460551502923,0.0384926394360356,0.0405928972816885,0.0427983967518609,0.0567645954179359,0.070456256273001,0.0837700725336463,0.0962365082868283,0.1085279487395666,0.1234809257106625,0.1346076373428323,0.1458160464670964,0.1562853665307168,0.1668006818693512,0.1789786491811751,0.1896777403965772,0.2000413218647035,0.2094440129945418,0.2186591809775429,0.2277744530886362,0.2371854249204843,0.2447411640306868,0.2521783526208305,0.2582067670034133,0.2640555394851027,0.2703796875914117,0.2749201088886259,0.2795513373597929,0.2838604634208576,0.288625750089333,0.2920105026256564,0.2948651155698438,0.2983611222496733,0.3017480028474255,0.2991743760757315,0.2958739231392808,0.2925537147112966,0.2900422293645417,0.2878212919865998,0.2837714076380621,0.2800694608887836,0.279628537735849,0.2799468066969005,0.2812711773727574,0.2813393908800269,0.2826228345060013,0.283996821945304,0.2849162011173184,0.2865928070637218,0.2879276281584694,0.2884129193534642,0.2930342014433637,0.2976823974233301,0.3015451664025356,0.3058296370055218,0.309874060747169,0.3127584910389773,0.3170101132993688,0.3214685054043981,0.3282273152478952,0.334346042837612,0.3391777509068924,0.3446655610834715,0.34609375,0.0,2.0816517305279665,52.12737366271173,148.3169217555302,203.48519464350605,fqhc3_80Compliance_implementation_low_initial_treat_cost,30 -100000,95858,48015,456.7485238582069,4969,50.57480857101129,3948,40.57042709007073,1497,15.178701829789896,77.41454581429173,79.70283818721249,63.37712166936033,65.06778192335199,77.21628968520508,79.50926478781277,63.30235706821741,64.9973693251452,0.1982561290866442,193.57339939972465,0.0747646011429239,70.41259820678647,242.12276,169.7417761709556,252584.8233845897,177076.27550225917,484.29202,321.9304885713172,504595.4641240168,335218.3318776912,473.78016,230.8899465091704,490468.7975964447,237928.8022558053,2539.20779,1198.8717473305403,2609534.603267333,1211282.9782913676,898.14198,410.97959367626765,918340.0237851822,410127.4736341944,1447.1591,621.1981670014432,1468698.3246051453,613975.6315117182,0.3827,100000,0,1100558,11481.128335663168,0,0.0,0,0.0,41515,432.4626009305431,0,0.0,42742,442.0809948048154,1115670,0,40058,0,0,9592,0,0,89,0.928456675499176,0,0.0,0,0.0,0,0.0,0.04969,0.1298406062189704,0.3012678607365667,0.01497,0.3497394325419803,0.6502605674580196,23.43160008565728,3.95854126586299,0.3135764944275582,0.2915400202634245,0.1990881458966565,0.1957953394123606,11.211211468951769,6.154914880298484,16.007744692118468,11623.527179165125,45.44613901468609,14.206606518034132,14.107387728576674,8.644767955707824,8.487376812367463,0.5838399189463019,0.8019113814074718,0.691437802907916,0.5572519083969466,0.1138421733505821,0.7693602693602694,0.9054325955734408,0.8839779005524862,0.7,0.1572327044025157,0.5039855072463768,0.7232415902140673,0.6118721461187214,0.5178571428571429,0.1026058631921824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020043528875841,0.0044273339749759,0.0065810154435847,0.0089842243112094,0.0113019615814615,0.0135837767987057,0.0159331703341483,0.0181871965400465,0.0203481245403285,0.0227988707961705,0.025085273541131,0.026967145011232,0.029325332401718,0.0313117588932806,0.0335488128009237,0.0353741918159096,0.0374830586506926,0.0394520036892338,0.04147030124359,0.0433850986592329,0.0578366768152813,0.0717734350506845,0.0849108985574052,0.0976352486559139,0.1097256595229319,0.1253498959554668,0.1368105439366007,0.1482607586324204,0.1591937342609586,0.1687625862290586,0.1820881710479593,0.1929731600233579,0.2032927624429472,0.2132163308126065,0.2229756462106558,0.2320918807674434,0.2400802720330007,0.2480364947920763,0.2553205964056919,0.2623211628705505,0.2681564891673796,0.2735145621990557,0.2793909013525016,0.2843320400440676,0.2875373369921562,0.2918580735741468,0.2953726863431716,0.2997508643481797,0.3033665673960896,0.3063499182187516,0.3035339680490559,0.2996936855262977,0.2967706561318168,0.2938937351308485,0.2913041545005854,0.2870079100876523,0.2830810469883317,0.2823716009614598,0.282108881741291,0.2826287744227354,0.2826961770623742,0.2839195485913139,0.2847297409844257,0.2857967282977826,0.2870284089551526,0.2880386983289358,0.2876034926106982,0.293247108568586,0.298183336813531,0.3025408705928698,0.3047173629536358,0.3075713087248322,0.3112459747337131,0.3146226767186683,0.318194431597447,0.3209487089613272,0.3269870051375038,0.3272325020112631,0.3209441128594683,0.3263157894736842,0.0,2.430579618088116,51.349650319217176,149.48278372698334,198.32958956812024,fqhc3_80Compliance_implementation_low_initial_treat_cost,31 -100000,95710,47382,451.7187336746422,4905,49.99477588548741,3876,39.901786647163306,1461,14.82603698673075,77.36002699221102,79.731524351579,63.33690834044432,65.0882105572213,77.17145042306697,79.54765161629291,63.26489853651369,65.02082045743046,0.1885765691440468,183.8727352860872,0.0720098039306336,67.39009979084187,242.46486,169.65052502481987,253332.83878382613,177254.75397013882,479.34462,318.6585354676645,500277.56765228295,332389.06641695165,456.25254,222.23705240229228,473404.49273848085,229571.43354425,2490.20444,1185.0794248681043,2564378.6229234147,1200754.1164644286,919.75467,427.9922842595937,944283.6798662628,430479.0766477829,1417.62088,616.4147219837191,1440176.366105945,609044.2081764871,0.37893,100000,0,1102113,11515.129035628464,0,0.0,0,0.0,41389,431.8357538397242,0,0.0,41274,427.8654268101557,1118286,0,40161,0,0,9693,0,0,80,0.8358583220144186,0,0.0,1,0.0104482290251802,0,0.0,0.04905,0.1294434328240044,0.2978593272171254,0.01461,0.3511659807956104,0.6488340192043895,23.311080055912665,4.052562626406528,0.3170794633642931,0.2763157894736842,0.2058823529411764,0.2007223942208462,11.551024773037684,6.488954059235518,15.82809050592506,11465.688198973428,44.653939540300186,13.034719166257064,13.942862996157483,8.976908527193165,8.699448850692475,0.5879772961816305,0.7936507936507936,0.6981285598047193,0.5989974937343359,0.1195372750642673,0.7579034941763727,0.9447004608294932,0.8591954022988506,0.7477876106194691,0.1701030927835051,0.5115931189229619,0.6907378335949764,0.6345062429057888,0.5402097902097902,0.1027397260273972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409759852528,0.0047542296424697,0.0070426108399378,0.0091123346675064,0.0113918385613735,0.0135839680664738,0.0160448521916411,0.0183714711465839,0.0201788908765652,0.0224003603714282,0.0243907440253442,0.0262928246563247,0.0283419545253545,0.0302106401606839,0.0322540704513093,0.0343055656075848,0.0364354014938825,0.0385098454416176,0.0403578115248595,0.0423895714151739,0.0571145109915931,0.0708028509529341,0.0834714558462539,0.0962222081992385,0.1083300825522672,0.1237022941114282,0.1346967784366348,0.1458583880546184,0.1557974110308882,0.1652918271242075,0.1769693182797552,0.1879044300647088,0.1986305092114559,0.2085701792741582,0.217255522932955,0.2265458894401134,0.2354968601162259,0.2433808897433303,0.250855795606538,0.2575807873258622,0.2634073594524919,0.2694334419946954,0.2745232493527068,0.2798204667863554,0.2832297684353609,0.2879037817608824,0.2915113923417452,0.2951900599654436,0.298860682555899,0.3017013033222197,0.2990934524129768,0.2963059706622307,0.2936215150661785,0.2910690297699008,0.288693303253384,0.2851749384772939,0.2814616052403125,0.2815253101453066,0.2815781859032186,0.2829316840833155,0.2835233315297498,0.2840676632572777,0.2841244747680659,0.2850451730338076,0.2873302627496838,0.2894171818816773,0.2914484671780791,0.296397072621505,0.3003003003003003,0.3060271478887174,0.3094093095000453,0.3139086830298231,0.3170351915291186,0.3222556390977443,0.3272995936461026,0.3265377446411929,0.3325819056206793,0.3385842472582253,0.3431053203040173,0.3424242424242424,0.0,2.361924520749782,52.21312895353559,142.8410172648003,192.83867835760384,fqhc3_80Compliance_implementation_low_initial_treat_cost,32 -100000,95756,47875,456.0132002172188,5015,51.23438740131167,3986,41.09403066126404,1494,15.309745603408665,77.33346816806463,79.69662956163195,63.32120940122799,65.07090832901103,77.14730116034072,79.51060247663672,63.25202783191703,65.00350829868712,0.1861670077239097,186.02708499523143,0.0691815693109632,67.40003032390973,241.60224,169.2742791838269,252310.2886503196,176776.6815487561,484.10048,321.89450843164707,505020.36425915867,335625.2646639866,465.62046,227.6028159087279,482362.7866661097,234814.12439771608,2581.93308,1201.8629398943517,2661968.0020050965,1220731.7973749435,890.48458,402.1459673614546,917024.531099879,407042.3288889938,1452.31858,606.8377364916586,1488987.2592840136,610292.2678702776,0.38125,100000,0,1098192,11468.649484105435,0,0.0,0,0.0,41673,434.6463929153264,0,0.0,42111,435.94135093362297,1116812,0,40060,0,0,9545,0,0,87,0.8981160449475751,0,0.0,2,0.0208864196499436,0,0.0,0.05015,0.1315409836065574,0.2979062811565304,0.01494,0.3697718631178707,0.6302281368821293,23.216613150191836,4.149437773230327,0.3095835423983943,0.2804816859006522,0.2057200200702458,0.2042147516307075,11.181464491506512,5.970944879036495,15.796744896316037,11576.391531446956,45.53395742138402,13.705375749673244,13.984112975053575,9.150603271299424,8.693865425357775,0.5672353236327144,0.7835420393559929,0.686385737439222,0.5573170731707318,0.0995085995085995,0.7601351351351351,0.9010309278350516,0.8571428571428571,0.7055837563451777,0.1578947368421052,0.485724482512491,0.693522906793049,0.6187782805429864,0.5104333868378812,0.0861027190332326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022392218450782,0.0046444651766519,0.0069930779692669,0.0091040256863581,0.0112487540936921,0.0136138235803235,0.0157199363862496,0.0180135126860035,0.0200216671436163,0.0222533856059287,0.0242867248290497,0.0264257481648786,0.0288246968933496,0.0309471581137166,0.0327569485999628,0.0348423772609819,0.03693387728054,0.0390146720069728,0.0409497770061648,0.0431486091004717,0.057964509394572,0.0717948717948717,0.0855359110225066,0.0989430509544092,0.1111380604884633,0.126386465767909,0.1376314198113708,0.1486026265937294,0.1590362989779899,0.1685182405044287,0.1804295839886248,0.1924895327325248,0.2021467488825813,0.2115693801883387,0.2197474647484546,0.2292702370539322,0.2365809828892882,0.2449930239884783,0.2529244244755324,0.2597722199965661,0.265028901734104,0.2705827342334443,0.2758037625190668,0.2802633941933553,0.2840703779602032,0.2888989990900819,0.292343619266456,0.297142566992904,0.3012572846270142,0.3040556565736422,0.3017967131983108,0.2985244664058746,0.29699881976058,0.2935381508726381,0.2909301221971764,0.2872766764561918,0.284345956881836,0.2851221390304241,0.2858092332861841,0.2858770742824585,0.2864421964239053,0.2882499950803865,0.2885833333333333,0.2895404190950749,0.291287479643644,0.2924324745886084,0.2928429985855728,0.298024012006003,0.3020906166969654,0.3056508537402894,0.3076122845899859,0.3113152753577274,0.3164660145472786,0.3201124534609832,0.3219750305078381,0.3255260967780288,0.3222459566676838,0.3224954277585856,0.3284286507495835,0.3340996168582375,0.0,1.9795896501172288,51.7636007769936,143.21851757121243,208.72749403015737,fqhc3_80Compliance_implementation_low_initial_treat_cost,33 -100000,95803,47155,449.3178710478795,5024,51.34494744423453,3992,41.14693694351951,1530,15.657129734976984,77.34149214859087,79.68186707739616,63.33904717832892,65.07281568642411,77.14507550047871,79.48437001445811,63.2659326240428,65.00074859430175,0.1964166481121623,197.49706293805505,0.0731145542861213,72.06709212235296,242.67936,169.864499504354,253310.81490141223,177306.0337404403,481.6619,319.6801221293709,502213.9807730447,333136.00005153386,454.62793,221.6575201912952,470748.7343820131,228461.2263915313,2592.35376,1218.2418541759282,2677382.326231955,1243072.434241024,892.65269,402.1203980289973,922501.1429704708,410479.2939980973,1487.37432,636.1585798409975,1525162.907215849,643262.0489335814,0.37899,100000,0,1103088,11514.127950064194,0,0.0,0,0.0,41486,432.5125517990042,0,0.0,41216,426.4062712023632,1119143,0,40188,0,0,9677,0,0,90,0.9289896976086344,0,0.0,0,0.0,0,0.0,0.05024,0.1325628644555265,0.3045382165605095,0.0153,0.3664180531650411,0.6335819468349588,23.21939730373316,4.074408630095828,0.3231462925851703,0.2773046092184368,0.1943887775551102,0.2051603206412825,11.46562665280555,6.303315413595898,16.516099752633377,11470.276099607505,45.933498621399146,13.568253834673522,14.848070585261626,8.579201016752338,8.937973184711659,0.5826653306613226,0.7958446251129178,0.7023255813953488,0.5747422680412371,0.1135531135531135,0.7530966143682907,0.9166666666666666,0.8402948402948403,0.7348066298342542,0.1137724550898203,0.5084501977705861,0.7112135176651305,0.638731596828992,0.5260504201680672,0.1134969325153374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0046125928854556,0.0070424679080623,0.0092265170914116,0.0112835122348272,0.0134459259862892,0.015706752883821,0.0179111183726819,0.0200936681937172,0.0218005693337975,0.0241058977934541,0.0263603783078834,0.0282243548204606,0.0302249876380418,0.0323063271286474,0.034388307768636,0.0365097279890657,0.0385477178423236,0.0404098130695456,0.0420874018862817,0.0568405896898181,0.0704069256827401,0.0837236595307702,0.0963549054839286,0.1081887058873117,0.1234318688635474,0.1347862033876746,0.145348404453282,0.1552392030477979,0.1648502384396935,0.1775328784519684,0.1882438143828435,0.199050639786231,0.2088350341994274,0.2176403333260042,0.2268933607845741,0.2352685487556145,0.2433030200965532,0.2504557756111922,0.2577326657979562,0.2637970241599428,0.269371272510825,0.2746701005351636,0.2790817303091205,0.2840220185266017,0.2884868461510079,0.2928616913683527,0.2956388229770711,0.2993944714859334,0.3025106198298197,0.3003748639606594,0.2972609322441134,0.2941970689994655,0.2902132202313973,0.2885479874783021,0.2849216660298051,0.2814456459874787,0.2816476452840089,0.2828134598320934,0.2833880288221445,0.2845592363840539,0.2854660004344992,0.2858637647797426,0.2861004982460844,0.2882313350319696,0.2901445124332769,0.2916357195909272,0.2964681374869804,0.3014716237149697,0.3048315321042594,0.3085023579506433,0.3142126026228809,0.3174080870720749,0.3226920420535645,0.3203975390440132,0.3231998092513114,0.3284874729353542,0.3295757327321172,0.3331479421579533,0.3330795584316711,0.0,2.047016507403639,52.89580499576611,147.3173253680489,203.28669119340543,fqhc3_80Compliance_implementation_low_initial_treat_cost,34 -100000,95709,47483,452.778735542112,5053,51.72972238765424,4019,41.47990262148805,1511,15.453092185687868,77.3419109081298,79.71122872437361,63.33255108723839,65.08124970400867,77.14743428318943,79.51892266745294,63.26011673810167,65.01189627873718,0.1944766249403784,192.30605692067115,0.0724343491367136,69.35342527148691,241.91486,169.36195150681905,252760.59722701105,176954.88482667148,481.21554,320.6611776315223,502273.3180787596,334521.522588014,465.63747,226.99665620320664,483391.8335788693,234792.2351511097,2617.68826,1230.1719420728682,2700366.4336687247,1250974.8000475091,910.25288,411.14629987532624,938254.2185165448,416928.39535018086,1473.18958,620.5982370038196,1508032.8077819222,621667.0129283556,0.37917,100000,0,1099613,11489.11805577323,0,0.0,0,0.0,41401,432.0283358931762,0,0.0,42039,436.1031877879823,1117621,0,40063,0,0,9416,0,0,96,1.0030404664138168,0,0.0,0,0.0,0,0.0,0.05053,0.1332647625075823,0.2990302790421532,0.01511,0.3687606756500284,0.6312393243499715,23.27935017870639,4.008678741392502,0.3122667330181637,0.2836526499129136,0.2015426723065439,0.2025379447623787,11.348800179976616,6.165346082296204,16.050738779933898,11545.775831853209,46.267153618916666,14.091293678283275,14.388259784949437,8.923557035167669,8.864043120516294,0.5969146553869121,0.8061403508771929,0.7187250996015936,0.5938271604938271,0.1191646191646191,0.7647534357316087,0.9065040650406504,0.8563829787234043,0.7676767676767676,0.1520467836257309,0.5222861250898634,0.7299382716049383,0.6598407281001137,0.5375816993464052,0.1104199066874028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0046316002837741,0.0067356461756948,0.0089684732266189,0.0109204050921218,0.0131444978414922,0.0153113754752948,0.0175655262513268,0.0196852003270645,0.0216568071561623,0.0236191413457989,0.0258248020783061,0.0279714526644865,0.0300838639220292,0.0322477452376529,0.0344132484287132,0.036537246657484,0.0385226081632229,0.040583115843324,0.0425503089925695,0.0571076460328567,0.0719011032721334,0.0849456498929785,0.0974704180909808,0.1098887189494225,0.1253954315096755,0.1372451252890878,0.1479959546494916,0.1583979659423541,0.1677197198056232,0.1798522411527774,0.1906766364039691,0.2016292171491962,0.2109158894853656,0.2195489383226487,0.2282507637136406,0.2362614696799081,0.2445748064236989,0.2521601088558793,0.2585431706117219,0.2653098982423681,0.2714512959670628,0.2772645002543385,0.2815254886929858,0.2854384494881416,0.2897827399657411,0.2928575899843506,0.2969330145974264,0.3008461419034311,0.3040661540082165,0.3014978755445597,0.2983115991763898,0.2959551855335757,0.2938669737978693,0.2921853951711989,0.2890851407827705,0.285302184810366,0.2846697418784964,0.2844686648501362,0.284299934115636,0.2856582413271311,0.2862631516727745,0.2865959538902487,0.2877015138659402,0.2874633888702165,0.2892957453448455,0.2911547212741752,0.2963427639420362,0.300150776675199,0.3056856984038751,0.3092792874670544,0.3103228885000795,0.3116133082234777,0.3153166869671133,0.3171189783078223,0.3215806909607193,0.3237355271176112,0.3289016158723665,0.3328694684107988,0.3376722817764165,0.0,1.9007377366532543,54.30079459963062,147.79569266898704,201.81295943188624,fqhc3_80Compliance_implementation_low_initial_treat_cost,35 -100000,95727,47731,454.7201938846929,5044,51.61553166818139,4062,42.03620713069458,1474,15.11590251444211,77.33810060160408,79.71985306876908,63.31256206328344,65.07467547451503,77.14254789125053,79.52654030771593,63.239027466761016,65.00403806933195,0.195552710353553,193.31276105315,0.0735345965224212,70.63740518307782,240.9099,168.74850934983604,251663.48052273653,176280.9963227052,483.73108,321.9367211594556,504922.56103293743,335906.13009856734,469.01569,228.58590284252043,488115.5159986211,237315.7439812919,2595.80714,1220.265578926243,2685796.52553616,1248854.4286630135,939.09762,429.7601471271592,970438.7372423664,438365.7872148498,1434.3892,611.5598649524064,1471534.3633457643,614037.3221794097,0.38111,100000,0,1095045,11439.24911466984,0,0.0,0,0.0,41556,433.6811975722628,0,0.0,42404,441.0563372925089,1118643,0,40160,0,0,9546,0,0,101,1.0550837276839344,0,0.0,1,0.010446373541425,0,0.0,0.05044,0.1323502400881635,0.2922283901665345,0.01474,0.3473484848484848,0.6526515151515152,23.39553216209823,3.988174679806796,0.3178237321516494,0.2838503200393895,0.2053175775480059,0.1930083702609552,11.182245197008593,6.041918229889919,15.688345964499822,11607.420944718324,46.51486697690792,14.256102472900988,14.448119893510906,9.292952299491866,8.517692311004161,0.5972427375677006,0.805724197745013,0.710302091402014,0.5911270983213429,0.110969387755102,0.7772357723577236,0.9434343434343434,0.8859649122807017,0.7511520737327189,0.1306818181818181,0.5190677966101694,0.7021276595744681,0.6469968387776607,0.5348460291734197,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025034967870101,0.0047271251775207,0.0069953499705565,0.009390816513202,0.0115993935755639,0.0134753867935098,0.0157783081410766,0.0179456014380994,0.0199519353684102,0.0221471356166487,0.0241388857555963,0.0262355345169273,0.0282964547174467,0.0305133618248287,0.0325472476685648,0.0346402662092057,0.0368498980130667,0.0388541904425953,0.040836270259593,0.043021729619367,0.0573326232024812,0.0720409509154288,0.0853662375271491,0.0981794469978229,0.1103389365785754,0.1265272444543175,0.1384443972835314,0.1491092630256306,0.1592159964091438,0.1687301519182902,0.180542835285371,0.1910680452552373,0.2021684228860054,0.2112099624656664,0.2203244337816124,0.2298800895449609,0.238788636769698,0.2472763696934227,0.2548547548206863,0.2617546594530157,0.2679317810788593,0.2733327870579559,0.278462576817875,0.2835142973562474,0.2870819210069128,0.2911773413599131,0.2951359747466523,0.2979124476201393,0.301559343107289,0.3044389935116315,0.3013621266925735,0.297805082532745,0.2956597564062895,0.2927476457609275,0.2911889895739095,0.2873900741760342,0.2848345123799899,0.2843700394390168,0.2850328779257947,0.2863879003558718,0.2881792717086834,0.2885766021099039,0.288580375782881,0.2891144322997992,0.2896312260536398,0.2908442699183631,0.2920678846751193,0.2957974809826661,0.3026859863094617,0.3053899262513729,0.3084304932735426,0.3116415104193868,0.3142186244824816,0.3198956780923994,0.3264310693907601,0.329252652442579,0.326448136506511,0.3327373857767183,0.3323481998925309,0.3397291196388262,0.0,1.542326221339431,54.21070918618789,149.70784148100478,204.7775899242056,fqhc3_80Compliance_implementation_low_initial_treat_cost,36 -100000,95661,47573,453.9990173633978,5088,52.00656484878896,4026,41.60525187903116,1497,15.33540314234641,77.27782633283482,79.68770516929993,63.2892740309558,65.0717713431433,77.09111698922662,79.5027292974708,63.218833151247445,65.00416052945074,0.1867093436082001,184.97587182913836,0.0704408797083502,67.6108136925535,242.10164,169.57222830293992,253082.9073499127,177263.70025709528,479.42771,318.7100643286807,500720.3562580362,332712.8655655708,462.24287,225.3448770611425,480123.94810842455,233201.8639339464,2588.94472,1208.9498907865632,2676357.4497444103,1233768.6944382377,933.65949,421.84683603296025,961877.0763425012,426906.8937036864,1459.74304,613.2959298482298,1496424.2690333575,615515.4292636306,0.38164,100000,0,1100462,11503.768515905123,0,0.0,0,0.0,41276,430.9906858594412,0,0.0,41885,434.7539749741274,1116258,0,40017,0,0,9696,0,0,81,0.8467400508044031,0,0.0,0,0.0,0,0.0,0.05088,0.1333193585578031,0.2942216981132075,0.01497,0.353514526710403,0.646485473289597,23.6472790046599,4.023894814830848,0.2940884252359662,0.2871336313959264,0.2173373075012419,0.2014406358668653,11.529005782535688,6.351937738920467,15.76693376095299,11603.599919592709,46.02098518527383,14.220960092582189,13.315490911769729,9.73095025646236,8.753583924459551,0.587431693989071,0.782871972318339,0.6942567567567568,0.6057142857142858,0.1331689272503082,0.7673434856175972,0.910386965376782,0.8698412698412699,0.7752293577981652,0.1075949367088607,0.5126582278481012,0.6887218045112782,0.6306098964326813,0.5494672754946728,0.1393568147013782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0043404186272919,0.0064564595050047,0.0087299409534843,0.01109924207742,0.0133861716975173,0.0155736868944416,0.0175676917891468,0.0198238561389511,0.0218500307314075,0.0237746028164391,0.0257000225979415,0.0278443760740047,0.0302190157175985,0.0324289165582605,0.0344831152712416,0.0365058805243251,0.0383968435261135,0.0405510868773477,0.0424460431654676,0.0576083094735522,0.0716447609572184,0.0853223334802779,0.0982878550306755,0.1100816748622923,0.1259950038106529,0.1380039080752729,0.1494795384566211,0.1596431932916916,0.1688713279505239,0.1811235761318202,0.191571379071379,0.2025513480565563,0.211076337214392,0.2208278291501541,0.2304555477987212,0.2391117462514932,0.2479889292665639,0.2548167479859299,0.2614248927038626,0.2676986035327846,0.2737544400822583,0.2786809652742471,0.2836164147282179,0.2877336150679442,0.2914545611418569,0.2958148263997497,0.2992852964366559,0.3025095825132083,0.3049783778082481,0.3026096089626198,0.2993211330056044,0.2969410769664505,0.29441264886114,0.2919596271907005,0.288639740231892,0.2848568351704041,0.2846513919684651,0.2848528331539657,0.2853369503141062,0.2869755522717495,0.2875135722041259,0.2872313738606907,0.2872838295596363,0.2891572037755737,0.2901812336332288,0.2898727706463705,0.2937019004240616,0.2974057516984054,0.3018410274762416,0.3046013667425968,0.3078062979624239,0.3113941523403187,0.3163389727175735,0.3178789300797747,0.3204321500652974,0.3209309447251569,0.3198776758409786,0.3244518456841521,0.3248286367098248,0.0,1.87131563166225,51.71251538162642,148.4032806995958,209.12940281685775,fqhc3_80Compliance_implementation_low_initial_treat_cost,37 -100000,95820,47925,455.7608015028178,5008,51.02275099144229,3969,40.84742225005218,1468,14.944687956585264,77.39792083527668,79.70222861479068,63.37134666233783,65.0718812024811,77.20616941877525,79.51348899602898,63.29855182793797,65.00269319000398,0.1917514165014324,188.73961876170145,0.0727948343998576,69.18801247711315,242.41558,169.70488358384722,252990.3569192236,177107.7946351795,485.1747,322.9233224966137,505752.2124817366,336424.85784521385,465.16594,227.70651109687935,481694.5835942392,234798.5916121785,2557.53043,1202.483653864779,2634695.2723857234,1220706.1231266304,902.89357,415.5807863095632,928894.2600709664,420509.3352974243,1429.0865,615.6482643523294,1456864.45418493,613245.5333275802,0.38304,100000,0,1101889,11499.561678146523,0,0.0,0,0.0,41782,435.43101648925074,0,0.0,42035,435.01356710498857,1114097,0,39969,0,0,9494,0,0,87,0.8975161761636402,0,0.0,0,0.0,0,0.0,0.05008,0.1307435254803675,0.2931309904153354,0.01468,0.3607775871926815,0.6392224128073185,23.24010756808547,4.112869912089916,0.3139329805996472,0.2771478961955152,0.2040816326530612,0.2048374905517762,11.269232140529294,6.012879106961837,15.711663829040914,11575.208953882317,45.39634167664008,13.39250330774073,14.134128552253207,8.955924237641518,8.913785579004623,0.5847820609725372,0.81,0.7110754414125201,0.5851851851851851,0.08610086100861,0.7574215436810857,0.91991341991342,0.887905604719764,0.7577319587628866,0.108695652173913,0.5118279569892473,0.7304075235109718,0.6449834619625138,0.5308441558441559,0.0794912559618442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361464323317,0.0045496458571877,0.0067650489375729,0.0091894032472609,0.0111215029277813,0.0131994056705542,0.0155285198997371,0.0176485590410609,0.0198316202464393,0.0219762231180045,0.0242710489109276,0.0265196204154911,0.0289107608851994,0.0310158886967975,0.0328801574949236,0.0350641707364921,0.0372657955450717,0.0395111889634013,0.0415061423275423,0.0433791617663894,0.0585737831466065,0.0730885890597217,0.0865480397194056,0.0993954686432213,0.1120152628305804,0.1270126547484379,0.1389987593183674,0.1498637602179836,0.1593808089225049,0.1692284589559042,0.180672676165552,0.1927203893996755,0.2032833224614046,0.2125691544029214,0.2213424826251429,0.2308032946594632,0.2392395182872435,0.247141749013524,0.2544123148074678,0.2613196970736953,0.2670033631120921,0.2725456987677393,0.2778230906533329,0.2815475905632387,0.2858181553786308,0.2900858147483341,0.2941183811508654,0.2970428913950804,0.3002609279735455,0.3028589463717419,0.3000549723127254,0.2974239517676075,0.295471126325832,0.2927646720368239,0.2901894662111195,0.2860101417716121,0.2817828297935986,0.2816682990532158,0.2811926293601686,0.2812566635866088,0.2810881311719769,0.2824886513254859,0.283720736482546,0.2845977421006925,0.2852726183343319,0.2857773392875688,0.2864138480810841,0.2898892663898326,0.29422060419365,0.2975471027372911,0.3012546595145013,0.3032203209692847,0.3058564231738035,0.308107696988135,0.3126469205453691,0.3122632575757575,0.3140155558944639,0.3158316633266533,0.3191374663072776,0.3166979362101313,0.0,2.15523310940446,51.2400600557646,149.31101368311587,199.6669099830965,fqhc3_80Compliance_implementation_low_initial_treat_cost,38 -100000,95562,47447,453.0880475502815,4986,51.11864548669973,3992,41.2820995793307,1473,15.110608819405202,77.19945181010942,79.67048746129475,63.224607941291474,65.05368459160147,77.00958610808833,79.48159509732005,63.153705761172,64.98509908098387,0.1898657020210947,188.892363974702,0.0709021801194751,68.58551061759499,242.11858,169.67289722605028,253362.8220422344,177552.68540429277,483.61729,321.0727937801436,505581.8107615998,335488.5768193881,462.77443,225.0045702892066,481117.6722965195,233047.6223346315,2545.73292,1194.9247910713725,2634515.0687511773,1220973.9865965263,915.89184,411.2500066651356,947915.353383144,419837.4214281149,1427.46986,604.8801667362932,1465426.780519453,609316.3863754119,0.37869,100000,0,1100539,11516.491911010651,0,0.0,0,0.0,41630,435.1311190640631,0,0.0,41955,435.8845566229255,1109085,0,39773,0,0,9686,0,0,86,0.8999393064188694,0,0.0,1,0.0104644105397542,0,0.0,0.04986,0.1316644220866672,0.2954271961492178,0.01473,0.3676498939656834,0.6323501060343165,23.042657447644235,3.9774414284103305,0.3021042084168336,0.3011022044088176,0.2006513026052104,0.1961422845691382,11.3439151082758,6.168204136263626,15.758458688225405,11501.97420154098,46.142650601002536,15.010566853837169,13.6655289959458,8.860428176045561,8.606126575174,0.595691382765531,0.8169717138103162,0.703150912106136,0.5692883895131086,0.1174968071519795,0.7756622516556292,0.9187145557655956,0.8629283489096573,0.7659574468085106,0.1764705882352941,0.5176005747126436,0.736998514115899,0.6451977401129944,0.5089722675367048,0.1011419249592169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021287163840204,0.0040279215113329,0.0062048094889917,0.0085204164633154,0.0107504988394347,0.0132622479561255,0.015543195387049,0.017719190680564,0.0199140401146131,0.0222383914571782,0.0246466222527895,0.0268991897338872,0.0287123716542569,0.0307400301211033,0.0329137731481481,0.0351320297700994,0.0369509981851179,0.0388892353100122,0.0407170534561059,0.042593617221184,0.0569886399297056,0.0709889165015152,0.0840174488884217,0.0973574408901251,0.1088059354456868,0.1239279542876527,0.1354019296024848,0.1464549451487599,0.1565342217746687,0.1658207157604955,0.1775397142517737,0.189137276180141,0.1994524193900257,0.2092655962095288,0.2184986151418514,0.2283848469030774,0.2372369348504682,0.2455942414874653,0.2528328934194958,0.2590023883887562,0.2646523437952904,0.2703827442705586,0.276652003272585,0.2815861505954667,0.2863037207434184,0.289955296500284,0.293787720993262,0.2969044826355245,0.3003230954883413,0.3038018189509306,0.3011170471102476,0.2976346278361735,0.2948463197057456,0.2920069969496769,0.2883514064289645,0.2850683587762859,0.2818514470370194,0.282155357993854,0.2830837682895525,0.2836781773636868,0.2837381283081197,0.2840016617539417,0.2850784186105104,0.2855736090595765,0.2867873651771956,0.287190999504033,0.2854575536284801,0.2906294145346099,0.2924630870129415,0.2966985230234578,0.3002073192716784,0.3033501365259399,0.3075009329518597,0.3087415222305953,0.3141162294930021,0.3170072821235612,0.3215898825654923,0.323949246629659,0.3225108225108225,0.3251231527093596,0.0,1.8982893904584692,53.11024435383626,151.8995603251717,199.5728891346196,fqhc3_80Compliance_implementation_low_initial_treat_cost,39 -100000,95665,47685,455.3912089060785,5054,51.5026394188052,4067,41.76030941305597,1514,15.29294935451837,77.33990302576841,79.73018269481528,63.32261558699434,65.08891288282726,77.14076260993902,79.53887487368256,63.246355217081614,65.01891683253955,0.1991404158293903,191.3078211327246,0.076260369912724,69.99605028771327,241.27752,168.96794074286544,252209.94093973763,176623.78895055244,483.7347,321.5552320225127,504762.4627606752,335246.9092941169,461.80899,225.0798533965873,478070.8618617049,231649.373989328,2637.73517,1233.9529257291483,2710170.668478545,1243596.038747713,943.59473,428.5374933007407,966218.0421261694,428442.6562829794,1477.27264,637.2330076446065,1494396.487743689,623902.7706773954,0.38147,100000,0,1096716,11464.088224533529,0,0.0,0,0.0,41581,433.8159201379815,0,0.0,41897,433.4291538180107,1120208,0,40192,0,0,9537,0,0,89,0.8989703653373752,0,0.0,0,0.0,0,0.0,0.05054,0.1324874826329724,0.2995647012267511,0.01514,0.3596740572294865,0.6403259427705136,23.25432291585808,4.143863395373602,0.3024342267027293,0.284730759773789,0.1996557659208261,0.2131792476026555,11.50815115822148,6.202050436052835,16.15518903307647,11595.703595964736,46.3593957240446,14.193015557231254,13.918248802191489,8.904741305360757,9.34339005926109,0.5824932382591591,0.8048359240069085,0.6943089430894309,0.6009852216748769,0.1095732410611303,0.7715481171548118,0.94824016563147,0.8604651162790697,0.7248677248677249,0.1731843575418994,0.5038300835654597,0.7022222222222222,0.6297968397291196,0.5634028892455859,0.0930232558139534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044701231564543,0.0066767460502683,0.0090704099459635,0.0111548356263282,0.0134978317962499,0.0156052513556488,0.0177798644566016,0.0199133137062479,0.0222624823435484,0.0244810087651853,0.0266069925475784,0.0285767170195481,0.0305720936939906,0.0323875775371817,0.034523760287853,0.0363447990053874,0.0383026427785505,0.0405405405405405,0.0421475110763617,0.0565891877774875,0.0701348465178608,0.0835151922108443,0.097125783781509,0.109566061424517,0.1246468814473893,0.1363756936560315,0.1474451777730466,0.1578795582234944,0.1675906366278134,0.1799842752054455,0.1918968931597571,0.2030170866732649,0.2129446370187313,0.2219140083217753,0.2313418781641538,0.2401160520002231,0.2474261603375527,0.2556725358504266,0.262246452337048,0.2682782950667977,0.2741631884769621,0.2787366179688886,0.2829736785380691,0.2872432078241982,0.2916287086051951,0.2950846313473511,0.2987953644403782,0.3008928571428571,0.3045604967895896,0.3014948266350927,0.2985156679494227,0.2954842885889985,0.2927773125018049,0.2908850765760418,0.2875758084966621,0.284067946451124,0.2844373137749255,0.28483230151711,0.2848615133156856,0.2857808770883054,0.2871421544515494,0.2884471117779444,0.2888433342988926,0.2907762338284619,0.2916374769725746,0.2916430273459662,0.2973743576889334,0.3030250043713936,0.3056661803556642,0.3111753807221293,0.3127242034184427,0.3138836772983114,0.3158731360230111,0.3165346995808104,0.3244962884411453,0.3283399571996331,0.3286528286528286,0.3238888888888889,0.3247402847248942,0.0,2.7990751586568634,51.20866691220924,146.9537023929853,213.81959437497207,fqhc3_80Compliance_implementation_low_initial_treat_cost,40 -100000,95789,47783,454.63466577581977,4975,50.75739385524434,3942,40.620530541085095,1455,14.824249130902295,77.331780499572,79.67160505106796,63.32970022966426,65.06212075966623,77.14533694788442,79.48956699382097,63.25795619746615,64.99461670108847,0.1864435516875886,182.0380572469844,0.0717440321981115,67.50405857775377,241.6535,169.2734216169846,252276.1903767656,176714.29357988876,485.89248,323.57086720994846,506707.6386641472,337252.4845167262,464.37642,226.07268369797825,481688.5550532942,233581.3275395225,2519.53064,1194.013927598702,2595732.2448297823,1212062.3862166123,876.68377,403.6546451352265,900697.5331196693,406940.5288974752,1404.79742,607.4459288344557,1432203.5933144726,603467.3770714583,0.3818,100000,0,1098425,11467.099562580255,0,0.0,0,0.0,41771,435.509296474543,0,0.0,42073,436.0939147501279,1115683,0,40043,0,0,9590,0,0,87,0.908246249569366,0,0.0,0,0.0,0,0.0,0.04975,0.1303038239916186,0.2924623115577889,0.01455,0.3693814829043411,0.6306185170956589,23.451944337190923,4.055031226462659,0.3234398782343988,0.2871638762049721,0.2024353120243531,0.186960933536276,11.597959859790144,6.373222629435585,15.553588737373826,11551.246275354928,45.45743840550144,13.97373307810957,14.483063975093463,8.949235162879566,8.051406189418842,0.6052765093860984,0.8286219081272085,0.7066666666666667,0.5827067669172933,0.1112618724559023,0.7600334448160535,0.9128630705394192,0.8727810650887574,0.7047619047619048,0.1566265060240964,0.5378732702112163,0.7661538461538462,0.6467449306296692,0.5391156462585034,0.0980735551663747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021473790833122,0.0043996593812091,0.0067683440388849,0.0088382299158844,0.0113399440630561,0.0133402580474342,0.0157419302216512,0.0180182939278859,0.0201795097217394,0.0222756820392076,0.0244392504203059,0.0265724787974618,0.028728895469595,0.0306651146980356,0.0327061810450703,0.0348178472480668,0.0370554485387021,0.0391017995125239,0.0413384599397277,0.0433990358083695,0.0582692448163955,0.0725388059077026,0.0863881754808952,0.0989323918206082,0.1107750990474584,0.1264015555813879,0.137443822606631,0.1479783907948189,0.1576267930327868,0.1665309446254071,0.1786129532340022,0.1902593117474604,0.2011963673935504,0.2109862944773197,0.2198974200933345,0.2286955269193693,0.237202088726234,0.245984793953572,0.2538044587576259,0.260116996554211,0.2662812879357188,0.2717508181393174,0.2771225438586114,0.2810159947283292,0.2854506380447056,0.2906962415280345,0.2943200730794739,0.2969263286561919,0.2998821197714937,0.3028715458312438,0.2993381225280491,0.2967702955069757,0.2938687137092806,0.2916636603702795,0.2898215318883795,0.2861360542136421,0.2820950754341019,0.2817956747716876,0.2825326393036949,0.282082777036048,0.2832601177680157,0.284141706543786,0.2848510193413486,0.2853288740245262,0.2871277617675312,0.2889322408635713,0.2907128656631639,0.2961248553466988,0.3001847397957405,0.3038658777120315,0.3086889553320648,0.3115551326778729,0.3152563699276502,0.3202515342071369,0.3240317312179188,0.3277320799059929,0.3248746391125969,0.3259789306300934,0.3338771071234366,0.3391270760911549,0.0,1.9824944595536804,52.21444838054412,148.20375412996782,198.5794226313312,fqhc3_80Compliance_implementation_low_initial_treat_cost,41 -100000,95689,47417,453.52130338910433,4953,50.61187806330926,3915,40.34946545579952,1450,14.80838967906447,77.34192318165195,79.71710981563434,63.32298576779221,65.07486290067774,77.16469048405813,79.54231006627668,63.25718375025798,65.0118196327764,0.1772326975938227,174.79974935766052,0.0658020175342244,63.04326790134951,243.19108,170.3040433217748,254147.3732612944,177976.61520318405,484.87853,322.1194514115442,506193.12564662605,336101.39243961603,459.23466,224.14889557786864,475463.6165076445,230772.5774248091,2546.99791,1179.1095200672985,2629655.17457597,1200342.0067727184,895.79473,401.4192613110744,923387.1291371004,406760.2255398505,1414.91102,590.3996298174519,1447861.9486043327,592762.4070262045,0.37935,100000,0,1105414,11552.153330058838,0,0.0,0,0.0,41737,435.6091086749784,0,0.0,41522,429.5269048688982,1109564,0,39790,0,0,9628,0,0,90,0.9405469803216672,0,0.0,0,0.0,0,0.0,0.04953,0.1305654408857255,0.2927518675550171,0.0145,0.3650455338112768,0.6349544661887231,23.32707141103013,4.020636887689518,0.3151979565772669,0.2758620689655172,0.2017879948914431,0.2071519795657726,11.571960314295008,6.340218116544552,15.314478248124413,11506.909865614987,44.66114913388601,13.383376017283574,13.901889998619389,8.70237097356311,8.673512144419934,0.5795657726692209,0.8027777777777778,0.6952998379254457,0.5658227848101266,0.1196054254007398,0.7793867120954003,0.930379746835443,0.8879551820728291,0.75,0.1349693251533742,0.4939802991608902,0.7029702970297029,0.6168757126567845,0.5114754098360655,0.1157407407407407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023288073468809,0.0044293084400117,0.0067358511620357,0.0088873991915005,0.0110034271302614,0.01322514304331,0.0152417266480435,0.0174200729069874,0.0196942583976685,0.0218913826998689,0.0238803215486834,0.0259085447879976,0.0279043455901259,0.0296638984482865,0.0314209624476145,0.0333491892786234,0.0353950217010741,0.0373042151479609,0.0392882769521947,0.0412012337445815,0.0556414380914579,0.0698258802835335,0.0831759026028547,0.0958764296762381,0.1080219884571151,0.1235013386101734,0.1361291007537955,0.1465059060359794,0.1568264893867168,0.1663572064868577,0.1784674759060822,0.189612977281095,0.2002459810398685,0.2102740850155916,0.2190320024651142,0.2287866201473113,0.237196585011997,0.2459324436843171,0.2532373284952942,0.2606296508299943,0.266029051209696,0.2715546980061977,0.2774011900959411,0.2821440552067858,0.2861808557136613,0.2905085037993078,0.2933646976389184,0.2969767087062652,0.2999417362594678,0.3023577997387552,0.299890875287968,0.2975239616613419,0.2949828817786043,0.2923620627479264,0.2905318345403652,0.2866517114559966,0.2836868248837026,0.2845167733590923,0.2846455351056578,0.2855314383232894,0.2851865671641791,0.2854693781035706,0.2865786234378586,0.2866311590488712,0.2884059010592258,0.289165976821192,0.2896387993895201,0.2931625529793069,0.2964995138213641,0.3010951053891745,0.3029513498944342,0.3076237883154309,0.3089116325511732,0.3120323256510027,0.3172598192882168,0.3223502304147465,0.3220112726194007,0.3281557215886748,0.3341391351060972,0.329654157468727,0.0,2.262151680961523,51.07707098481679,140.7575496984033,201.427055206648,fqhc3_80Compliance_implementation_low_initial_treat_cost,42 -100000,95738,47769,455.5244521506612,5013,51.139568405439846,3957,40.73617581315674,1488,15.176836783722242,77.32392886815877,79.68815902395582,63.31606620966248,65.06514816543705,77.13474578643135,79.50322690473484,63.24472489391528,64.99808145956008,0.1891830817274211,184.9321192209743,0.0713413157471976,67.06670587696806,241.43768,169.15819464468632,252185.610729282,176688.4493583387,480.68146,319.6005581134432,501481.7418370971,333230.5115058212,461.73421,224.96974652500043,478597.1401115544,232097.6159457142,2550.91909,1193.6177587616262,2629693.507280286,1212029.20050829,905.84918,415.1109315909698,931639.4743988804,419084.6535367452,1439.04626,612.8346920934312,1470175.2491173828,610737.0348181046,0.38134,100000,0,1097444,11462.982305876454,0,0.0,0,0.0,41332,431.103637009338,0,0.0,41864,433.5895882512691,1118391,0,40160,0,0,9767,0,0,69,0.7207169566943116,0,0.0,0,0.0,0,0.0,0.05013,0.131457492001888,0.2968282465589467,0.01488,0.3558023745691306,0.6441976254308694,23.177433222722243,4.050097198367068,0.3073035127621936,0.2906242102602982,0.2047005307050796,0.1973717462724286,11.60549940556943,6.478925886150659,15.949050587903972,11556.108817929928,45.36170967498563,14.103728947898272,13.764963776633468,8.963546626181015,8.529470324272872,0.590851655294415,0.7991304347826087,0.7179276315789473,0.5679012345679012,0.1101152368758002,0.7703513281919452,0.9296703296703296,0.8870523415977961,0.712707182320442,0.1488095238095238,0.5157706093189964,0.7136690647482015,0.6459554513481829,0.5262321144674086,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022992697033233,0.0043800504922487,0.0065764101731382,0.0084842203661931,0.0107214061927818,0.0128411405295315,0.0149868482760026,0.0171384241632386,0.0194358392376979,0.0216647895976246,0.0238678655279534,0.0262123063338706,0.0281596019204869,0.0302630765744422,0.0324434767354267,0.0342660450885335,0.0363461219754723,0.0384751110557562,0.0405336549959965,0.0427059240274218,0.0567956400993923,0.0704406595246066,0.0841407659074703,0.0969380244369203,0.1095809519792479,0.1247448089107968,0.1361740957271849,0.1470873217841285,0.1575911644698895,0.1669972233240777,0.1794568177659128,0.1908145168267151,0.2019785834646953,0.2119913410447598,0.220210929166071,0.2294268757197271,0.2383008636272343,0.2470859585958595,0.2543673450855307,0.2606662234347417,0.2665454166328788,0.2725185922585934,0.2772656175940847,0.282235816240854,0.2870258898495738,0.2907418368353556,0.2940763844525447,0.2964076050275701,0.3003745124211126,0.3036318013734812,0.3006535947712418,0.2982864221319937,0.2960671861569461,0.293397508166392,0.2915509482720211,0.2878894426269606,0.2850105003868564,0.2853472540420239,0.2855853554704129,0.2860369171675498,0.287675576862094,0.2884149583505642,0.2887229960797398,0.2885685044275353,0.2895366647520582,0.2900925661835248,0.2908905621921531,0.2954424432263117,0.2982443844833023,0.3012643224022125,0.3039699425105246,0.3066954643628509,0.3117467058015362,0.31335396693591,0.3157204421959902,0.3184939616386455,0.3228962818003913,0.3227326266195524,0.3211275026343519,0.3300825206301575,0.0,2.295268566069425,50.63140632051706,149.62722966286802,200.77214037176103,fqhc3_80Compliance_implementation_low_initial_treat_cost,43 -100000,95791,47669,454.00924930317046,4977,50.620621979100335,3952,40.651000615924254,1504,15.262394170642336,77.4066300966336,79.74317125040174,63.35719594835807,65.08661697803741,77.20830286003472,79.55031057336777,63.28201354026592,65.01586318423303,0.1983272365988853,192.8606770339769,0.0751824080921537,70.75379380438562,243.10594,170.3195151864308,253787.41217859715,177802.8284498239,483.31484,321.5092677715596,503933.6472111159,335019.2650601828,463.68893,225.92851330361623,479914.5744380996,232694.81599524544,2555.11393,1205.9818480410856,2630212.410351703,1221889.5389394157,914.90956,421.58481771953626,940487.9372801202,425630.9841823271,1466.80758,632.6909105914189,1490682.9451618628,627513.5128024034,0.38032,100000,0,1105027,11535.791462663508,0,0.0,0,0.0,41535,432.9634308024762,0,0.0,41932,433.71506717750106,1111749,0,39915,0,0,9667,0,0,88,0.9082272864882922,0,0.0,1,0.0104393940975665,0,0.0,0.04977,0.1308634833824148,0.3021900743419731,0.01504,0.3644410236675005,0.6355589763324995,23.00071806101615,4.074069050579381,0.3061740890688259,0.2828947368421052,0.2016700404858299,0.2092611336032388,11.249115048276822,6.014501347793435,16.12013011588361,11511.894123633105,45.43176381028813,13.611103494873996,13.895721879746713,8.85148464765934,9.073453788008097,0.5872975708502024,0.7933810375670841,0.7132231404958678,0.5846925972396487,0.1269649334945586,0.7602965403624382,0.9193899782135077,0.8773333333333333,0.75,0.1489361702127659,0.5105916727538349,0.7056145675265554,0.6395209580838324,0.5322314049586777,0.1205007824726134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0046439942406359,0.0069818654164256,0.0090730825112016,0.011259039269332,0.0133500336042035,0.0155278236577557,0.0178022763231766,0.0199824195592624,0.0221253428302427,0.0240945333797938,0.0260630438351666,0.0281197969125778,0.0303064617411803,0.032490825877211,0.0347565697764469,0.0367458412645866,0.0388008334456342,0.040755900930851,0.04275719907552,0.0576365267836647,0.0718222222222222,0.0849177235090661,0.0975450838622893,0.1095167356743259,0.1254503766786767,0.1371748945460711,0.1484163184587413,0.1586444584342556,0.1681484179181216,0.1800370123302705,0.1913761785312689,0.2014191487280906,0.2101406543484908,0.2189704040603783,0.2284908165523345,0.2369996988993097,0.2449020886260932,0.2516102694366325,0.2579574458344302,0.2639295170484108,0.2691080755792893,0.2744337335146963,0.2793371012549094,0.2841565884695711,0.288049772083282,0.2922281867437466,0.295781991123997,0.299042071197411,0.3025777683966122,0.2996565887819002,0.2965381654201496,0.2940472671480653,0.2914405311778291,0.2897744962860828,0.2865518504946867,0.2831256007437404,0.2832446374351105,0.2823924207243699,0.2825286705365992,0.2831186238737062,0.2836716681376875,0.2845565622142798,0.2863482061636085,0.2887385992903579,0.2894207458606282,0.2898824458038508,0.2940482107355864,0.2976206992230855,0.3030563925957813,0.306984468982853,0.3112132929250705,0.3134079248315509,0.3180362065112121,0.3182858712572108,0.3173431734317343,0.3140570738336101,0.319296164491894,0.3193688792165397,0.3272796065077563,0.0,2.3097164315595498,52.71791253394606,145.9477695259398,197.57892264453815,fqhc3_80Compliance_implementation_low_initial_treat_cost,44 -100000,95691,47798,455.7586397884858,4862,49.61804140410279,3876,39.95151059138268,1437,14.619974710265334,77.29491858535671,79.69765449203592,63.29396199958445,65.07418740740708,77.10892588497454,79.51551139339935,63.22265584875526,65.00684625273098,0.1859927003821724,182.14309863657263,0.0713061508291943,67.34115467610025,241.912,169.4257000834937,252805.1540897263,177054.79650027218,481.0088,320.2526856521168,502108.2546947989,334114.32818309934,458.64624,223.50132221481613,475992.737039011,231037.7219326199,2493.5086,1177.6063370333436,2570487.935124516,1195803.1085005293,881.07456,404.6112369347787,905721.394906522,408032.7956743549,1389.53056,604.3634539748055,1414999.571537553,599298.5090883754,0.38367,100000,0,1099600,11491.143367714832,0,0.0,0,0.0,41444,432.5276149272136,0,0.0,41536,430.7406130148081,1116094,0,40090,0,0,9592,0,0,91,0.9509776259000324,0,0.0,0,0.0,0,0.0,0.04862,0.1267234863293976,0.2955573837926779,0.01437,0.3563650762225302,0.6436349237774698,23.259888061094426,3.9668941465224736,0.3085655314757481,0.2902476780185758,0.2056243550051599,0.195562435500516,11.282190812992312,6.254645356440103,15.47302312958622,11571.637056304218,44.65276287755872,13.95349841508726,13.563760762221104,8.758635650103567,8.376868050146786,0.5985552115583075,0.8355555555555556,0.689799331103679,0.5796737766624843,0.1226912928759894,0.7635593220338983,0.9266802443991852,0.8648648648648649,0.7043010752688172,0.1588235294117647,0.5263353115727003,0.7649842271293376,0.6222479721900348,0.5417348608837971,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025748375520796,0.0049418044181963,0.0072208398923475,0.0094860454476132,0.0115231531907529,0.0134334899554595,0.015816972121311,0.0179501849165321,0.0202561689241723,0.0224546450998268,0.024341956793796,0.0264014875234993,0.028421485902449,0.030608774515361,0.0329586391271586,0.0348928600976255,0.0369533678756476,0.0390796960006644,0.0411439152778644,0.0429013664648064,0.0574183170385226,0.0708662241671726,0.0836376610838265,0.0970980029041015,0.1097055316993912,0.1243439986456746,0.1353302057019126,0.1459174004237513,0.1565708912562642,0.1666344771347024,0.1780143066448332,0.1897275540455735,0.2010764379689029,0.2109860078705728,0.2192012846317132,0.2283815957034494,0.2366016134971378,0.2455125535961467,0.2528161337209302,0.2593034187054319,0.2654415340790662,0.2709589073161597,0.2768347537878788,0.2814384900411305,0.2863703181757438,0.2907256423223515,0.2945764579212259,0.2977005061938799,0.3016535870815933,0.3045940677519625,0.3019456089433516,0.2989941128844122,0.2965493007238737,0.2947952710495963,0.2919329251115691,0.2884297773427942,0.284728923763269,0.285161501885555,0.2861455543995497,0.2873700540289938,0.2878061568421841,0.2884292459353207,0.2891944496766497,0.290967136988748,0.2920996920708237,0.2947302645282232,0.2969928020711826,0.3008530389512638,0.3041793233476484,0.3083968260234495,0.3120715485540473,0.3156590945027144,0.3188758023306537,0.3213396696085087,0.3245409637431261,0.3245407442298634,0.3296257327521419,0.3397358943577431,0.3467094703049759,0.350129677658392,0.0,2.1584053222118027,51.331616965207004,142.77422044574536,197.8247760491904,fqhc3_80Compliance_implementation_low_initial_treat_cost,45 -100000,95734,48011,457.3087931142541,5027,51.56997513944889,3997,41.3123864039944,1469,15.062569202164331,77.3593554540744,79.73114935585649,63.33143217950936,65.08403378011863,77.180117805788,79.55181011080897,63.26481283118851,65.0194201560969,0.1792376482864028,179.3392450475153,0.0666193483208559,64.61362402173165,242.76032,170.0357639009047,253577.9555852675,177612.72264911598,481.61413,320.5719203685872,502670.0231892536,334451.616320834,469.97463,229.8090407377171,488144.53590156056,237944.95854065675,2579.77422,1203.289732376766,2669185.472246015,1231363.4992549827,922.82659,414.664096140174,953982.2738003216,423175.5657761853,1425.202,597.0316002581636,1463054.8185597593,601320.9058262883,0.38181,100000,0,1103456,11526.27070842125,0,0.0,0,0.0,41436,432.38556834562434,0,0.0,42413,440.198884408883,1113089,0,39884,0,0,9594,0,0,103,1.0758978001545951,0,0.0,0,0.0,0,0.0,0.05027,0.1316623451454912,0.2922220011935548,0.01469,0.3652671755725191,0.6347328244274809,23.412217341869862,3.972028720759192,0.2957217913435076,0.2969727295471603,0.2079059294470853,0.1993995496622466,11.50399115349531,6.43398121393056,15.556417502563622,11615.258341269307,45.7761313188632,14.751070177547604,13.16786532889201,9.20744986504864,8.649745947374962,0.5941956467350513,0.8222409435551812,0.6937394247038917,0.5824308062575211,0.1191969887076537,0.7684124386252046,0.9233644859813084,0.8726708074534162,0.7202072538860104,0.1453488372093023,0.5174774774774775,0.7392638036809815,0.6267441860465116,0.5407523510971787,0.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.004490759982564,0.0068799659045937,0.0089882391176291,0.0111751726101501,0.0135604263593513,0.0157194556297466,0.0180266623114141,0.0201181738259287,0.0225841787897091,0.0247859303696867,0.0267874567323,0.029034116630314,0.0311353801772099,0.0330220318868995,0.0350755680525978,0.0371167962562249,0.039217923451924,0.041147300683016,0.0431449344805316,0.0584549840235574,0.0727697073722108,0.0864215660565374,0.0990284320323014,0.1110302723563091,0.1267703959128843,0.1380323833372238,0.1487853173504801,0.1586134678263842,0.1682439537329127,0.1801736769522496,0.1911112073257853,0.2020037202623764,0.2107532058295768,0.2200319365673696,0.2291796008869179,0.2371212290378045,0.2450632000359857,0.2535476479462776,0.2609736266504815,0.2663806462057959,0.2718434122115103,0.2772625784120308,0.2818715688502434,0.2872070892582221,0.2913176635548504,0.2948822095857026,0.2984128999492128,0.3026970444941265,0.3057617393135396,0.3038350061725082,0.3009643479334422,0.2986667040531636,0.2958110670574039,0.2926346278891056,0.2898658831767876,0.2866105825929711,0.2861731092162968,0.2856051604141911,0.2865321894498014,0.2864462040055892,0.2876459258676939,0.2884282165299263,0.2885979390641031,0.2889772074315265,0.2902832853847549,0.2929965166661947,0.2967356264279678,0.2995216313418765,0.3033251910802931,0.3096940622737147,0.3132949807357365,0.3155245107293437,0.3200874679535515,0.3205270972531551,0.3275761465748629,0.3276331719128329,0.3307416267942584,0.3283743575872329,0.3344581927259092,0.0,1.7387984344652505,53.76089628563356,142.0492576421377,206.07703417593876,fqhc3_80Compliance_implementation_low_initial_treat_cost,46 -100000,95885,47460,450.237263388434,5083,51.65562913907284,4037,41.47676904625333,1463,14.840694582051414,77.4394230829848,79.7208174716397,63.39129033748679,65.07788945204427,77.24367931971025,79.53015302324917,63.31506814198654,65.00654189543364,0.1957437632745495,190.6644483905353,0.0762221955002431,71.34755661063252,242.83358,170.05660127238744,253255.0242477969,177354.74920205187,482.7468,321.05401053407473,502867.9355477916,334235.93944211793,461.31341,225.22653635350497,477771.371955989,232316.98980481215,2595.22321,1232.9188550554145,2669045.763153778,1248276.7638894664,893.79662,419.4488680417364,916425.144704594,421721.9039759993,1415.57396,623.5764190275994,1438522.6052041508,616090.6033695554,0.3798,100000,0,1103789,11511.592011263492,0,0.0,0,0.0,41450,431.6525003910935,0,0.0,41833,432.9665745424206,1117264,0,40110,0,0,9769,0,0,93,0.959482713667414,0,0.0,1,0.0104291599311675,0,0.0,0.05083,0.1338335966298051,0.2878221522722801,0.01463,0.3618706392607957,0.6381293607392042,23.276012858845792,4.067706384675057,0.3027000247708694,0.2868466683180579,0.2184790686153083,0.1919742382957641,11.095212083858764,6.00909847122836,15.83420607888068,11529.660146327707,46.40521630772536,14.196517978640337,13.897382279727587,9.844710437868706,8.46660561148874,0.579390636611345,0.7815198618307426,0.7144026186579379,0.5453514739229025,0.1032258064516129,0.7360890302066773,0.8875502008032129,0.8826979472140762,0.6577777777777778,0.1804123711340206,0.5084562792371357,0.7015151515151515,0.6492622020431328,0.5068493150684932,0.0774526678141136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023790240939461,0.0047731971300012,0.0071414804370099,0.0090974626608047,0.0113836177543781,0.0135426629494719,0.0156964604023427,0.0179518563851489,0.0203199705774181,0.0226784508684711,0.0248468206315703,0.0271077229307532,0.029153050948476,0.0311393395371819,0.0331347038083259,0.035335907973813,0.0375248303261049,0.0395415829067622,0.0417579451187225,0.0437057844361215,0.0583863233607839,0.072474974399699,0.0860272480705392,0.0988565608626718,0.1109531931021413,0.1259885752901052,0.1379299386672033,0.1485031721909903,0.1582706967322352,0.1679671194168834,0.1797372269052124,0.1911194199202498,0.2009060982366937,0.2103146413700396,0.2191270111845505,0.2277320877101712,0.2366147569308972,0.2447867511572513,0.252356780275562,0.2590098330665447,0.2653806168418621,0.2704788817917489,0.275168737219116,0.279755776367772,0.2843358578502767,0.2884665099159209,0.292553058520611,0.2970261827970643,0.299540063564249,0.302576180201042,0.2999959699627893,0.2972769051375266,0.2949625136888215,0.2919609143054795,0.2895859250044428,0.2851387235601135,0.2806195681319894,0.2808931867557457,0.2804691483936767,0.2815566715763695,0.2816702052370842,0.2823222106565587,0.283373193303525,0.2832528679629711,0.2835366578678271,0.2857179752066116,0.2879887482419128,0.2925604463732176,0.2958549222797927,0.2986952105633252,0.3033954488442931,0.3077124593943204,0.3112076994722136,0.3157894736842105,0.3200448137428811,0.3191864566188572,0.3222357971899817,0.3242369112593491,0.3327859879584017,0.3309648466716529,0.0,2.448548445362133,54.37858187245246,146.87278398551976,202.11860039109212,fqhc3_80Compliance_implementation_low_initial_treat_cost,47 -100000,95725,47803,454.9699660485767,5047,51.42857142857143,3995,41.0237659963437,1540,15.63854792373988,77.34647984393533,79.70111821824244,63.33814763576003,65.07621478241825,77.14880852811075,79.50923120103892,63.26305272527354,65.00658741528754,0.1976713158245786,191.88701720352697,0.0750949104864915,69.62736713070683,243.1055,170.3406560878792,253962.39226952207,177947.93009963876,483.35012,320.89019430460087,504247.60511883,334532.3523683477,463.77369,226.62410369174845,480689.9764951684,233687.97318825137,2570.44915,1217.434362481268,2641255.147558109,1228253.6166096474,928.95543,426.11124598595296,951179.4828937058,426066.0648057152,1493.4972,635.9213817443014,1517965.8187516322,626831.388165529,0.38302,100000,0,1105025,11543.745103160094,0,0.0,0,0.0,41681,434.7035779576913,0,0.0,42063,435.5184121180465,1110940,0,39901,0,0,9614,0,0,83,0.8670671193523114,0,0.0,0,0.0,0,0.0,0.05047,0.1317685760534697,0.305131761442441,0.0154,0.3627208816264488,0.6372791183735512,22.91647387764868,3.9556385783907952,0.3023779724655819,0.2926157697121401,0.2052565707133917,0.1997496871088861,11.502134938944604,6.362244584700335,16.423424832229195,11607.760027154638,46.180643774907765,14.47744232598976,13.918234579541542,9.095197653213788,8.689769216162675,0.6010012515644556,0.8203592814371258,0.7110927152317881,0.5963414634146341,0.1177944862155388,0.77431906614786,0.9296296296296296,0.8524590163934426,0.7644230769230769,0.1286549707602339,0.5188191881918819,0.7265500794912559,0.649643705463183,0.5392156862745098,0.1148325358851674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407534940247,0.0046224492899066,0.0068803848144427,0.0089697486845045,0.0112778896414261,0.0133470434924254,0.0156065239551478,0.0176364322967166,0.020014105958234,0.0223910394889068,0.0244467450465871,0.0266050808314087,0.0285820036190162,0.0307243869027387,0.0328821113885392,0.0348430975317319,0.0369427015385889,0.0390828448410022,0.0412586540260712,0.0434144054997135,0.0586441987450538,0.0724498126478407,0.0861267613022357,0.0994699981071361,0.11148014592691,0.1265489532670755,0.1383334217365936,0.1486929495912806,0.1589275990561505,0.1684834453412221,0.1794046401464176,0.1904375662405641,0.2008107638134156,0.2115000054637046,0.2203756828348776,0.2297952407304925,0.2376556629541679,0.245935370707684,0.253584229390681,0.2606918347016592,0.2664708399347758,0.2724838962344661,0.2780953057143195,0.2824578434544997,0.2872146673142302,0.2920035938903863,0.2954062367150966,0.2987368180025696,0.3026377157071047,0.3059665052195373,0.302584268149804,0.2988885220644877,0.2971519477411271,0.2948303249097473,0.2922597402597403,0.2890320211740587,0.2846560846560846,0.2849240638910709,0.2855511428522729,0.2850125473864061,0.2858609809376225,0.2870559974797196,0.2873652093956365,0.2884178146315367,0.2894553992860052,0.2916211008696557,0.2908439082683662,0.295915810573791,0.3001258829288761,0.3052880820836622,0.3098866213151927,0.3138157198772876,0.3157271139935146,0.3175900696336663,0.3196851869202661,0.3200520217545519,0.3250228032836728,0.3299636069551152,0.3340738683698973,0.3324186593492748,0.0,2.812886380368419,55.44821341706364,142.84356628454466,198.0689069825184,fqhc3_80Compliance_implementation_low_initial_treat_cost,48 -100000,95742,48130,458.9626287313822,5121,52.20279501159366,4122,42.48918969731152,1562,15.876000083557894,77.41222784566315,79.76759590953965,63.350809200748486,65.08959826390837,77.20909052649415,79.56976863632838,63.27388594808964,65.01745727719499,0.2031373191690022,197.82727321127425,0.0769232526588439,72.14098671337865,242.81422,170.02045677676503,253613.06427691088,177581.89381542586,489.93532,325.3121017136121,511137.8496375677,339193.22942241863,471.45798,229.9715937645477,489024.9315869733,237539.1315895322,2655.77504,1253.4860242832226,2735182.9082325418,1270590.3107875567,960.10749,441.2927847410581,983633.1077270164,441789.10254038486,1522.2446,653.0090355952697,1547794.5102462869,646153.9638765609,0.38433,100000,0,1103701,11527.866558041402,0,0.0,0,0.0,42081,438.9400680996845,0,0.0,42653,442.2197154853669,1108197,0,39772,0,0,9527,0,0,110,1.1384763217814542,0,0.0,1,0.0104447368970775,0,0.0,0.05121,0.1332448676918273,0.3050185510642452,0.01562,0.3639925373134328,0.6360074626865672,23.16056600758297,4.0615359825855695,0.3076176613294517,0.2816593886462882,0.2074235807860262,0.2032993692382338,11.394957083624028,6.157927490423914,16.71408971426937,11664.6918329005,47.38783090942241,14.054840187276897,14.55704110322414,9.486425303798358,9.289524315123016,0.586608442503639,0.7855297157622739,0.7097791798107256,0.5719298245614035,0.139618138424821,0.7665562913907285,0.925601750547046,0.8655913978494624,0.7115384615384616,0.1929824561403508,0.5120109814687714,0.6946022727272727,0.6450892857142857,0.527047913446677,0.1259370314842578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0047737292859676,0.0070405388954266,0.009413843529125,0.0113665246698319,0.0139868682241563,0.0157775648735144,0.0179484301500974,0.0201735291412453,0.0225281473899692,0.024657702713782,0.0266075388026607,0.0287955423965786,0.0308329214038556,0.0332459706543946,0.0352262625844996,0.037141732935719,0.0389890648019421,0.0410562977595259,0.0428976207341972,0.058151674601186,0.07267304975671,0.0865031575855485,0.0988869953081276,0.1109411106773169,0.1262700025400051,0.1374438771719401,0.1489345842162991,0.1598409712722298,0.1698597202992347,0.1824964688884815,0.1935525788601687,0.2037946161298398,0.2132823875890911,0.2225037454833876,0.232212770205073,0.241440193098516,0.2487555465459378,0.2556798183366449,0.262582959846861,0.2684474394155175,0.2736430752670559,0.2790469317496185,0.2836087164750958,0.2882386494653932,0.2926661169433744,0.2957216913372056,0.2998299449224599,0.302253542941222,0.3060076245563297,0.3031074885379521,0.2998986412447951,0.2973007081259202,0.2946623720234672,0.2916254703755626,0.2874648422652984,0.2841875304509092,0.2841160760812923,0.2845641451550026,0.2857395800134565,0.2869768650896803,0.2879520667306299,0.2901676163540324,0.291334219858156,0.2931753712664776,0.293940019614928,0.2945340703971119,0.2991264339229645,0.3029198347394368,0.3067799264072653,0.3084007187780773,0.3150031453134829,0.3176346487962273,0.3226506926244852,0.3259170727222579,0.3312020460358056,0.3329853862212943,0.3356421927567781,0.3425726587728741,0.3407379518072289,0.0,2.2247165234801884,52.59618474171689,162.599130245165,203.02758641075224,fqhc3_80Compliance_implementation_low_initial_treat_cost,49 -100000,95717,47754,454.5796462488377,5088,51.7462937618187,4079,41.90478180469509,1602,16.245807954699792,77.32373385663094,79.69369392941987,63.321321634088775,65.07515442181922,77.10963621771364,79.4861285303752,63.23829069510033,64.9979178552645,0.2140976389172948,207.5653990446682,0.0830309389884433,77.236566554717,241.67,169.2671637231739,252482.96540844365,176840.49753669996,485.07892,323.35208885446275,506087.236332104,337125.5263442422,467.40569,228.05668707375185,483881.5988800318,234848.1910992527,2674.6281,1270.053548094636,2749671.960048894,1282467.0514275555,979.00092,446.0984320041351,1005445.3545347222,448753.9549713474,1567.30926,684.3995332959148,1592208.8657187333,675823.7612535419,0.38125,100000,0,1098500,11476.49842765653,0,0.0,0,0.0,41760,435.544365159794,0,0.0,42338,437.9472820920004,1114870,0,40013,0,0,9657,0,0,80,0.8357971938109218,0,0.0,1,0.0104474649226365,0,0.0,0.05088,0.133455737704918,0.3148584905660377,0.01602,0.3631421072365954,0.6368578927634045,23.24486668820322,4.130998988660392,0.3000735474380975,0.2691836234371169,0.2086295660701152,0.2221132630546702,11.251771889697006,6.061985610341988,17.385275139735164,11584.470830801132,47.22418404969347,13.55625680093883,14.009653854851909,9.73616823835246,9.922105155550272,0.5851924491296886,0.7987249544626593,0.7295751633986928,0.5969447708578144,0.1203090507726269,0.7274220032840722,0.9215686274509804,0.8715596330275229,0.6666666666666666,0.1111111111111111,0.5246417336595596,0.7104851330203443,0.6778149386845039,0.5705024311183144,0.1228813559322034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025329280648429,0.0048880911091504,0.0072777101096224,0.0091356218116781,0.0113136903792935,0.0137721684034674,0.0161240974176967,0.0181896173133291,0.020318427699324,0.0227661426596343,0.0247359245205619,0.0269798395793322,0.0290314284244637,0.0312960501231438,0.0334227910817506,0.0354495549421579,0.0376688209462258,0.0397588736369201,0.0415813170016532,0.0434832444148049,0.0579716198014012,0.0715399671345286,0.0858974224478877,0.0993372606774668,0.111596220366152,0.126855728968405,0.138092004753013,0.1484547931210625,0.1584007178183449,0.1687597190197866,0.1809380216466533,0.19179164232076,0.2029389051436278,0.2122716832549491,0.2214824922420054,0.2307743428995492,0.2392036582645549,0.2470585591153764,0.2541819295281082,0.2604715037766079,0.2663022121541342,0.271932592410803,0.2770958968901502,0.2812919302281004,0.2858270393666367,0.2903615348596495,0.2936221871792946,0.2963594704684317,0.2998613612511175,0.3034856720671275,0.3010974213963509,0.2983765473747986,0.2957690898328494,0.2924681109536343,0.2908299020409376,0.287275900607805,0.2836153372197734,0.2829654133368269,0.2827104792713033,0.2821133580176588,0.2829260997177095,0.2835826787194568,0.2839904470607952,0.2846157285286359,0.2853122970730417,0.2866266944734098,0.2875966118130222,0.2913373429480114,0.2963639557351133,0.3007441009112251,0.3044391669711362,0.3052148874906686,0.3079495268138801,0.3129537638517386,0.3217570865402666,0.3251926496739775,0.3295420078859569,0.3272361809045226,0.3263530051672559,0.3260128739113972,0.0,2.722464185568161,52.41522186125694,161.34779075737123,200.8763113698504,fqhc3_80Compliance_implementation_low_initial_treat_cost,50 -100000,95776,47584,453.26595389241567,4915,50.12738055462746,3898,40.07266956231207,1473,14.951553625125293,77.38153749659537,79.72186248223588,63.350937847410606,65.08238268388988,77.18428307030744,79.53095122081353,63.2755843232234,65.01231007685091,0.1972544262879267,190.9112614223432,0.0753535241872072,70.07260703896634,241.13144,168.91724927577195,251766.03742064815,176366.99097453634,481.65422,320.6918199485134,502276.3531573672,334228.626631225,466.33335,227.47834320613103,483282.2627798196,234731.77448792596,2499.21137,1185.056711499616,2569279.057383896,1197879.9965104663,887.12932,407.3351811735308,910883.9479619112,409929.4929559909,1425.46118,616.3352405988425,1447846.5795188774,609328.7030348071,0.38053,100000,0,1096052,11443.910791847646,0,0.0,0,0.0,41417,431.778316070832,0,0.0,42133,436.25751754092886,1121169,0,40251,0,0,9629,0,0,94,0.981456732375543,0,0.0,0,0.0,0,0.0,0.04915,0.1291619583212887,0.2996948118006103,0.01473,0.360390243902439,0.639609756097561,23.38493228447728,3.995576193662108,0.3273473576192919,0.2791174961518727,0.2006157003591585,0.1929194458696767,11.310080726612092,6.232591371668628,15.83138273667531,11560.436764926237,44.851694338237856,13.29685563906765,14.46579789662263,8.786564816927797,8.302475985619779,0.594920472036942,0.8115808823529411,0.6849529780564263,0.5971867007672634,0.1263297872340425,0.7557446808510638,0.90929203539823,0.8440111420612814,0.7708333333333334,0.1511627906976744,0.5255233198677929,0.7421383647798742,0.6226826608505998,0.5406779661016949,0.1189655172413793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025319532500151,0.004906035234253,0.0071019844973824,0.0091100210231254,0.0112145921874046,0.0133249183098018,0.0154421657764912,0.0176262260280264,0.0198246438717325,0.0220291812470583,0.0244194864017379,0.026636693970561,0.0286451639436967,0.0306833743474634,0.0324091265420637,0.0344895281196077,0.0367258239768199,0.0386860027573624,0.0406910307286364,0.0426362642511322,0.0572200828611085,0.0710483103408603,0.0846988520207579,0.0974233412496584,0.1099320301385742,0.1251915496232417,0.1362971598134802,0.1467408061069351,0.1572471346551981,0.1664915966386554,0.1782765487916464,0.1908150904213896,0.2017260681949109,0.2108196721311475,0.2197544716520361,0.2286954307414665,0.2368605934896791,0.2450422699883083,0.2531641262928688,0.2606949577235958,0.2663390379278446,0.2718974263073003,0.2774407190586009,0.2827141129563333,0.2864615571333212,0.2909363922804253,0.2948839649271814,0.2981448538754765,0.3006257110352673,0.3041393933806582,0.302067093167034,0.2986570730233708,0.2959238213120288,0.292861676957701,0.2905255036942524,0.2867617854633222,0.2833262367727996,0.2829513713062938,0.2837156391666808,0.2846974457283845,0.284934111200164,0.2851888276947286,0.2856427901157335,0.2873857811455315,0.288723134667336,0.2901996370235934,0.2913978494623656,0.2943210491884988,0.2991696487509988,0.3065498408706927,0.3100743745774171,0.3155263157894737,0.3205705705705706,0.3226856407539172,0.325981308411215,0.3332158797275076,0.3388754534461911,0.341185865442204,0.3414434117003827,0.3474962063732928,0.0,2.360910449351755,50.74754824212675,147.7018128452251,195.3605445373012,fqhc3_80Compliance_implementation_low_initial_treat_cost,51 -100000,95857,47757,454.1243727635958,4895,49.897242767872974,3925,40.35177399668256,1476,15.064105907758432,77.37299817448195,79.67564284383144,63.35320242165369,65.05774333813036,77.18692275277797,79.4917098474167,63.28334184369072,64.99089928936027,0.1860754217039755,183.9329964147396,0.0698605779629772,66.84404877009342,240.52688,168.49296465861786,250922.60346140605,175775.336864932,482.64492,321.3687747418726,502855.3887561681,334609.8282862256,458.70077,223.6038473515514,474834.0444620633,230401.5616922281,2539.65455,1180.9671495822088,2612777.366285196,1195443.496360087,909.7551,408.39072118786805,935847.4915759936,412876.42779740464,1430.75208,602.5310764711188,1461902.8552948665,602170.2698740774,0.38122,100000,0,1093304,11405.572884609366,0,0.0,0,0.0,41584,433.197366911128,0,0.0,41524,429.4209082278811,1123422,0,40331,0,0,9486,0,0,77,0.792847679355707,0,0.0,0,0.0,0,0.0,0.04895,0.1284035465085777,0.301532175689479,0.01476,0.3486274509803921,0.6513725490196078,23.208270627224927,4.094309978890258,0.3156687898089172,0.276687898089172,0.2094267515923566,0.1982165605095541,11.54900623125234,6.194461796618258,15.608503943723086,11580.156723346206,44.821092852787885,13.302543954340576,14.087984778801978,9.036031569513792,8.394532550131547,0.5887898089171975,0.8130755064456722,0.6981436642453591,0.5742092457420924,0.1169665809768637,0.7670995670995671,0.9364035087719298,0.8607954545454546,0.7150259067357513,0.1168831168831168,0.5144404332129964,0.7238095238095238,0.6335963923337091,0.5310015898251192,0.1169871794871794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.004439174191979,0.0068977409898258,0.0090571248705399,0.0112132240814915,0.0134873778501628,0.0156758023911204,0.0178285317739746,0.0198939398583821,0.0220701086622874,0.0244557143588955,0.0267685835941107,0.0289305461347146,0.0308495198097767,0.032866318209466,0.0349991221819458,0.0369569490859052,0.0389426016310711,0.0409674337459499,0.043125871361092,0.0578912245578912,0.0717024900471259,0.0848723562501964,0.0974441901001743,0.1098649986310313,0.1251795673483184,0.1363467794059993,0.1467965004411655,0.1573386270491803,0.1671238454449992,0.1790691417810062,0.1902198586159932,0.2007173913043478,0.2104877595425272,0.2191681338028169,0.2282603880570567,0.2371544588474152,0.2453933898800818,0.2526115213174997,0.2598079058532621,0.2665186778120773,0.2725784383660964,0.2776916797785375,0.2827857074432416,0.2871667940644754,0.2906029198158497,0.2936291553065359,0.2969349632754721,0.3003362213888529,0.3037081954679075,0.3014820592823713,0.2990997182324239,0.2969792517102559,0.2946254565402549,0.2917432825197224,0.2881759853345554,0.2846020214782059,0.2858265010555255,0.2862516168561508,0.2868454297966228,0.2882765306883436,0.288455866449063,0.2892911450413481,0.2906091088757133,0.2915086916088418,0.2933860792222567,0.2951943783293664,0.2987938253859133,0.30264029855952,0.3073747936158503,0.3128930817610063,0.3152888001261365,0.3170487911538702,0.319227857683573,0.3244002998500749,0.3302945301542777,0.3309057806099226,0.3371059013742926,0.3402911288107663,0.354875283446712,0.0,2.290959516303186,50.16052915789107,145.1657319315252,201.45296898247332,fqhc3_80Compliance_implementation_low_initial_treat_cost,52 -100000,95802,47376,452.45401974906576,4942,50.510427757249325,3941,40.6672094528298,1489,15.260641740255943,77.39816222968327,79.72859683952771,63.35848721039546,65.07989037598617,77.21042736601159,79.5422554180073,63.2874321086224,65.01145470769329,0.1877348636716789,186.34142152041025,0.0710551017730551,68.43566829287795,241.3279,169.06430274463625,251902.5490073276,176472.41389175202,484.31117,322.0620599949139,505005.60531095386,335652.9276148364,462.49244,225.292108476542,480046.3664641657,233056.46378320132,2559.42778,1204.5149539355334,2640775.798000042,1226947.7714423165,917.98915,420.6174557747908,942875.0443623308,423935.84845436,1459.97524,623.0367216827593,1496175.8418404628,625530.9859681309,0.37912,100000,0,1096945,11450.115863969437,0,0.0,0,0.0,41623,433.9470992254859,0,0.0,41907,434.75084027473326,1120108,0,40188,0,0,9338,0,0,94,0.9811903718085216,0,0.0,1,0.0104381954447715,0,0.0,0.04942,0.130354505169867,0.301295022258195,0.01489,0.3620622568093385,0.6379377431906614,23.154482609437157,4.031735352455618,0.3006851053032225,0.2821618878457244,0.2009642222786095,0.2161887845724435,11.1965918278881,5.933204136193368,15.871500431448174,11467.16937534391,45.36033699190581,13.66616322797718,13.571379689475426,8.71792880767855,9.40486526677466,0.5874143618370972,0.814748201438849,0.7308016877637131,0.5492424242424242,0.1267605633802817,0.7570093457943925,0.9365079365079364,0.8918128654970761,0.7128205128205128,0.1708542713567839,0.5151953690303908,0.7347242921013413,0.6654804270462633,0.4958123953098827,0.113323124042879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0044085454840278,0.0064622813780789,0.0084795677959216,0.0107253596299496,0.0128137276853868,0.0149182248942782,0.0170693384483532,0.0189826213998917,0.0209228565582156,0.0229487035007017,0.0250177012036818,0.0268123240087969,0.0287769784172661,0.030732909265235,0.0330692885248949,0.0351105869695653,0.0373396654880287,0.0393244998700961,0.0413724877642403,0.0560100166944908,0.070320752151769,0.083627748015977,0.0965402724062552,0.1095286788037233,0.1252418050549148,0.1367560344461884,0.1475692412457572,0.1570055531824006,0.1658214412076895,0.1778237270612561,0.189342648871969,0.1997870560498897,0.2094585736759308,0.218628420705572,0.2286074660883804,0.236841225067731,0.2447127871285458,0.2528353672367645,0.258744060907894,0.2652072907155488,0.2714769806029446,0.2770843439063923,0.2818795965790671,0.285506261528007,0.2894837240785182,0.2920493308842823,0.2963725041914342,0.2988074604858111,0.3020672753863789,0.2999489013796627,0.2971736980883322,0.2940481548154815,0.2907665480119327,0.287593790235456,0.2846858938185367,0.2803109135055024,0.2800934625251221,0.2810245064669843,0.281642589334897,0.2819447291429849,0.2839766173952408,0.2855952157696235,0.2864309338305476,0.2863163408652587,0.2876269740753185,0.2874145353253988,0.2925700441075977,0.2952219610012446,0.2995233257794795,0.3040388594045156,0.3100783289817232,0.3133251079580506,0.3136476054860226,0.3129056183942147,0.3178823529411764,0.3224158653846153,0.3203748006379585,0.3332428765264586,0.3300861745972274,0.0,1.6853638794761416,51.80495432551027,153.58374568856314,192.85685302326272,fqhc3_80Compliance_implementation_low_initial_treat_cost,53 -100000,95887,47801,455.2546226287192,5053,51.63369382710899,3995,41.18389354135597,1535,15.726845140634287,77.3584022892406,79.64057693173659,63.35300198276878,65.04172347630318,77.16142298549177,79.44354099686305,63.2798127761244,64.9702188870206,0.196979303748833,197.03593487354,0.0731892066443862,71.50458928258274,241.17324,168.8873922441009,251518.1828610761,176131.68859605672,480.53466,320.3840968259237,500654.8645801829,333634.76469795045,459.71487,224.8045211754645,476087.9577002096,231894.2906714973,2617.88506,1220.858929036816,2701063.93984586,1244113.4346019963,920.96181,417.804574782433,949797.6680884792,425057.8856178964,1495.42728,634.4177021004041,1533293.7937363773,640659.9918751289,0.38059,100000,0,1096242,11432.644675503458,0,0.0,0,0.0,41394,431.184623567324,0,0.0,41647,430.9447578921021,1119927,0,40238,0,0,9382,0,0,73,0.7613127952694317,0,0.0,0,0.0,0,0.0,0.05053,0.1327675451273023,0.3037799327132396,0.01535,0.3575070821529745,0.6424929178470254,23.57725244296739,4.068532233385434,0.3086357947434293,0.2785982478097622,0.2005006257822278,0.2122653316645807,11.323252560291555,6.132018151455648,16.56916929381314,11543.628641707031,45.812879783168526,13.595816217150515,13.92688337485909,8.972079200058918,9.318100991100003,0.5669586983729662,0.8059299191374663,0.6804541768045418,0.5443196004993758,0.1096698113207547,0.7506361323155216,0.9328859060402684,0.8609467455621301,0.7163461538461539,0.1505376344086021,0.4900568181818182,0.7207207207207207,0.6122905027932961,0.4839797639123103,0.0981873111782477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002136297826241,0.0040530544831848,0.0062683206377864,0.0083765699722811,0.0106017483228298,0.0125077601034001,0.0145177065080076,0.0169310010709368,0.0194398782965602,0.0215908974739058,0.0237288482602598,0.0259375448524738,0.0280174184537014,0.030283703993252,0.032471815165193,0.0345571685216924,0.0365983593838896,0.0384611398426731,0.0405636962188321,0.0425821889305035,0.057095499702899,0.0709494755317815,0.0842574848418208,0.0971796379520349,0.1093626568079122,0.1250871448188444,0.1362721203772385,0.1475625963531976,0.1583654390027854,0.1671471902766315,0.1793165816161746,0.1903361162780637,0.2008738370576471,0.2108001180340769,0.2199199771363246,0.2293667300969155,0.2387620406707099,0.2473390205797394,0.2534730491386838,0.2605797533013411,0.2668324849606663,0.2727942552395209,0.2783632101162708,0.2821481241681954,0.2858514413494725,0.2904896363793294,0.2936889556724267,0.2970697976492162,0.300642064984759,0.3031003858962837,0.3002965359212832,0.297568564819914,0.2952637214020061,0.2929776133423901,0.2902137400041618,0.2863247863247863,0.2831655268490375,0.2837704756589961,0.2846581984566004,0.2844193542642423,0.2851458142619612,0.285967678360268,0.2873142904904194,0.2876938157191231,0.2895071046893346,0.2885636575573112,0.2902129587675577,0.2948865940785574,0.2996797103467483,0.304414602449494,0.3060282404055032,0.3086147049542442,0.3095059412132583,0.3148021047815145,0.3205321758822419,0.3208830548926014,0.3273514851485148,0.3308331644030002,0.3279584585952446,0.3262759924385633,0.0,1.8673938836996005,51.65737492267092,151.5702698870698,201.9538862632779,fqhc3_80Compliance_implementation_low_initial_treat_cost,54 -100000,95731,47391,451.8285612810897,4956,50.54788939841849,3962,40.7704923170133,1457,14.854122489057882,77.38965647392791,79.75705348475286,63.34469261111818,65.09422499005804,77.19495678369262,79.56482588258963,63.26960375463124,65.02231991978056,0.1946996902352964,192.2276021632285,0.0750888564869427,71.90507027748083,242.89166,170.0333086747047,253723.09910060483,177615.72392924412,481.81252,320.77703961334066,502686.9039287169,334470.25479034026,461.68862,225.4190178417848,477918.2709884991,232190.99763877448,2542.43198,1200.7823496109936,2619331.1257586363,1217852.3671652798,900.0171,414.7157499128797,922625.3042379168,415682.5687738343,1418.835,618.2938943843375,1448394.229664372,616962.1850321915,0.37837,100000,0,1104053,11532.868140936584,0,0.0,0,0.0,41524,433.109442082502,0,0.0,41819,432.5662533557573,1113470,0,39992,0,0,9551,0,0,85,0.8879046494865822,0,0.0,1,0.0104459370527833,0,0.0,0.04956,0.1309829003356503,0.2939870863599677,0.01457,0.3503381642512077,0.6496618357487922,23.033076552666675,4.005121104482604,0.3197879858657244,0.2847046945986875,0.1968702675416456,0.1986370519939424,11.014515127439026,5.837826167277821,15.677967785850011,11438.964152713195,45.47158769400443,13.919306279453018,14.403156140597506,8.531926636175676,8.617198637778225,0.5906108026249369,0.8182624113475178,0.7032359905288083,0.5653846153846154,0.1080050825921219,0.7410130718954249,0.9054621848739496,0.8559782608695652,0.7040816326530612,0.125,0.5233747260774287,0.754601226993865,0.6407119021134594,0.5188356164383562,0.1028192371475953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701482862004,0.0046835558529241,0.0067384487360334,0.0088282504012841,0.0111894371713102,0.0134006761435379,0.0153750471549025,0.0175784240667204,0.0196050372066399,0.0218337035406835,0.0238524775005637,0.0259532267006139,0.0281678557476818,0.030253104598719,0.0323252743625711,0.0343427035965274,0.0363244765671919,0.0383131030189853,0.040283941507218,0.0424789272429853,0.0565653612854055,0.0705134914487869,0.0837058021193998,0.0961914781693845,0.108415178335953,0.1240374851920798,0.1355500620669899,0.1455360088545491,0.1560477583886883,0.1657962186451038,0.1776215191781707,0.1890728118576219,0.1990060571788988,0.2087311221197904,0.2172042300793415,0.2265785072709351,0.2354338612536248,0.2431663894258868,0.2507882142128065,0.2581793213938319,0.2650977217532092,0.2698219733719856,0.2751932487057655,0.2796490472086565,0.2834294035556094,0.2885124404446797,0.2923886680169029,0.2954117946110828,0.2977928341457738,0.3006732276721605,0.297471245834677,0.2948446812601279,0.2926181475808378,0.2894349956759873,0.287086367134316,0.2832499542431822,0.2801997825710189,0.2801376790316792,0.280532637606519,0.2804489449086532,0.2804436942367976,0.2809092154981694,0.282001825120292,0.283643204957946,0.2836783250059481,0.2856663483131566,0.2865035516969219,0.2906291875720652,0.2956533863153125,0.2990798151731764,0.3047303732595582,0.3090706674442029,0.3112292774476071,0.3163127990430622,0.320752984389348,0.3241547577553154,0.3240532854363119,0.3214920071047957,0.3218976145805414,0.3347091932457786,0.0,2.367569670679364,53.1156999945224,142.1577309400899,201.43879589570565,fqhc3_80Compliance_implementation_low_initial_treat_cost,55 -100000,95756,47919,456.5144742888174,4973,50.59735160198839,3936,40.46743807176574,1508,15.34107523288358,77.34687979821054,79.7042272099706,63.33382307926016,65.08042119565359,77.15229635662584,79.51400325783916,63.26062879564387,65.0113739384758,0.1945834415846974,190.22395213143284,0.0731942836162886,69.04725717778604,241.73028,169.4168993582269,252443.7737583024,176925.4193928409,483.94873,322.1920157732379,504752.10952838464,335828.65137448604,466.09331,228.2435160244189,482195.00605706166,234956.26847118535,2552.10266,1205.7226114450427,2627922.6471448266,1222039.1859870155,922.41208,424.8889682311639,949595.1376415056,430192.2278348857,1467.42676,628.2807011862435,1495940.9749780693,626055.125911803,0.38084,100000,0,1098774,11474.716989013745,0,0.0,0,0.0,41683,434.6255064956765,0,0.0,42080,434.9074731609508,1117386,0,40044,0,0,9510,0,0,75,0.7832407368728852,0,0.0,0,0.0,0,0.0,0.04973,0.1305797710324545,0.3032374824049869,0.01508,0.3511893250821891,0.6488106749178109,23.202307072599943,4.100720284994627,0.3211382113821138,0.2761686991869919,0.1951219512195122,0.2075711382113821,11.52418220274906,6.237841984605849,16.224331330474957,11533.402674320836,45.281160087314845,13.245589716774964,14.460553919577553,8.545474510922594,9.029541940039731,0.586890243902439,0.796688132474701,0.7009493670886076,0.6028645833333334,0.1162790697674418,0.7521008403361344,0.9107551487414188,0.8390501319261213,0.7878787878787878,0.1306818181818181,0.5152949745083758,0.72,0.6418079096045197,0.5385964912280702,0.1123244929797191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901382189615,0.0044517908570964,0.0068121827411167,0.0089840137402563,0.0113331163017823,0.0135740616280727,0.0157406463451931,0.0180073499387505,0.0203737400584735,0.0224331408444935,0.0243602362204724,0.0266551667488089,0.0287638831756478,0.0307291344747306,0.0329225751852539,0.0351265299371485,0.037217297655538,0.0390684164116396,0.0412582251374754,0.043059012193979,0.0580333378563153,0.0723132283102157,0.0857352555701179,0.0982920805086972,0.1105947073887887,0.1260923317518518,0.1372395226082716,0.14751065797727,0.1572906666666666,0.1659579937236925,0.1782061072807649,0.1892309520979436,0.1997392721347094,0.2093785150320516,0.2183599929688873,0.2272863070539419,0.2362235454160255,0.2444579342596339,0.2520365790011118,0.259249081103363,0.2654706549147523,0.2712611685456331,0.2769878634460243,0.2814034835525528,0.2862758419877705,0.29061931231246,0.2942683917744859,0.297563082865347,0.3004887256930079,0.3033635357951851,0.3005455669327313,0.2969054882238162,0.2942863166772085,0.2919662799913538,0.289888139862212,0.2869142892052049,0.2834819666956041,0.282689504969951,0.2827135044890032,0.2846928248728256,0.2852449223416965,0.2866967505468303,0.2866537233043151,0.2861922073287686,0.2874373546267654,0.28700473785599,0.2889129135964038,0.2917322091486818,0.2962898083593175,0.3001822648387352,0.3017880704308658,0.3059389708604368,0.3089471702848538,0.3107199516506761,0.3151942152591082,0.3184161199625117,0.3251477944520236,0.3264479546375051,0.3282208588957055,0.3313656040928768,0.0,2.4029990609115908,51.59699101214289,146.853854374887,198.70445149016257,fqhc3_80Compliance_implementation_low_initial_treat_cost,56 -100000,95756,47574,452.27453109987886,4984,50.941977526212455,3975,40.958268933539415,1492,15.226199924808888,77.36211040614715,79.72372721325958,63.32787542470121,65.0753670218587,77.16834166593469,79.53414184562578,63.253986958733,65.00574073810702,0.1937687402124623,189.5853676337964,0.073888465968217,69.62628375167412,242.00506,169.41397471969773,252730.96202848907,176922.5685280272,479.66008,319.16132673857305,500384.0177116838,332771.802016138,461.50075,225.04900137226105,478717.2292075692,232464.23309693247,2577.96274,1206.296211885033,2658659.3842683486,1226199.2479688302,913.87242,410.68795829112497,940404.1522202264,414918.06079109904,1447.72348,616.8207566038624,1479448.1807928483,614780.2534803508,0.38035,100000,0,1100023,11487.771001294956,0,0.0,0,0.0,41286,430.5944275032374,0,0.0,41745,432.7352855173566,1117886,0,40123,0,0,9486,0,0,75,0.7832407368728852,0,0.0,1,0.0104432098249718,0,0.0,0.04984,0.1310372025765742,0.2993579454253611,0.01492,0.3530888030888031,0.6469111969111969,23.03580274675054,4.150333289300112,0.310440251572327,0.2794968553459119,0.2085534591194968,0.2015094339622641,11.29861864955025,6.046019484166793,15.723915379356464,11559.921000552691,45.35270042334092,13.643353629979346,14.069233367020592,9.061493804745265,8.578619621595712,0.5763522012578617,0.7893789378937894,0.6920583468395461,0.5585042219541616,0.1210986267166042,0.7601351351351351,0.9112554112554112,0.8622589531680441,0.7305699481865285,0.1506024096385542,0.4983876746685776,0.7026194144838213,0.6211251435132032,0.5062893081761006,0.1133858267716535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795659706391,0.0046849331737887,0.0070551213074814,0.0091752441143298,0.0114032856924876,0.0134130443638733,0.0154895682499541,0.017724413950829,0.019897547059846,0.0222106168591791,0.0244380178849782,0.0264395915935657,0.0288577278011543,0.030616240725474,0.0325840145322434,0.0350178863133516,0.0369887128507818,0.0391666580206052,0.0415471290175044,0.0436539763553981,0.0585908141962421,0.0722909212646203,0.0855015468512401,0.0990018826449584,0.1106716032193074,0.1256081567034733,0.1369403776787608,0.1475645461804631,0.1578261241237818,0.1666344937048238,0.1786129782833505,0.1897081745756841,0.200496180714239,0.210376594673844,0.2186911772799823,0.2278081265859252,0.2359733762172786,0.2442361572131018,0.2516819259612221,0.2591706082435264,0.2653162798773077,0.2712651476161512,0.2770191920865182,0.2813713737712778,0.2855772849217621,0.2889649989528022,0.293415570929927,0.2968223490965502,0.3008008072758322,0.3040210942649967,0.3013510603940144,0.2981691728289853,0.2953852208993408,0.29232699323691,0.2913018356371394,0.2878697637482628,0.2856060366873993,0.2851115326748217,0.2854689811115456,0.2864116446258986,0.2865681090340359,0.2872133848537748,0.2886495029738385,0.2885810690818682,0.2894215389022847,0.2907590417550577,0.2927208041563135,0.2976094129365623,0.3029419927837913,0.3055544667006389,0.3081416247304098,0.3122060821402445,0.3177105965609286,0.3215059385971465,0.3243592107689471,0.3278362573099415,0.3336344474555857,0.3380895759017043,0.3375504710632571,0.346743295019157,0.0,2.1808236739581783,51.42064891610636,142.80619813116903,207.2841145508963,fqhc3_80Compliance_implementation_low_initial_treat_cost,57 -100000,95768,47549,453.5544231893743,4825,49.36930916381255,3852,39.7105504970345,1482,15.140756829003426,77.32840490063373,79.68777960776184,63.31625382636724,65.0643388404995,77.14678163486026,79.50821459928622,63.24895445930841,64.9995858974759,0.1816232657734673,179.5650084756204,0.0672993670588297,64.75294302360624,242.24838,169.67532973407836,252952.9070253112,177172.8514055618,478.36689,318.6272375914824,499009.9302480996,332211.6481408011,458.76911,223.5544393565814,475527.6083869351,230709.50602736408,2486.24308,1161.2401097972663,2565770.038008521,1182245.696994054,868.98392,391.9367830424448,897161.515328711,399053.7552986859,1437.91158,602.127934919547,1471678.97418762,605063.2473926524,0.37921,100000,0,1101129,11497.859410241415,0,0.0,0,0.0,41164,429.2978865591847,0,0.0,41469,429.4962826831509,1116637,0,40026,0,0,9543,0,0,83,0.8666778046946788,0,0.0,0,0.0,0,0.0,0.04825,0.1272382057435194,0.3071502590673575,0.01482,0.35192536720921,0.64807463279079,23.326000738300973,4.054037408635901,0.3177570093457944,0.2827102803738318,0.2030114226375908,0.1965212876427829,11.511904523823397,6.335056653373517,15.757166483026332,11511.238158846954,44.22217857487573,13.361556669259553,13.950448235053486,8.60543818094339,8.304735489619299,0.5955347871235722,0.820018365472911,0.7156862745098039,0.5652173913043478,0.1096433289299868,0.7605633802816901,0.9244444444444444,0.8411764705882353,0.7704918032786885,0.1288343558282208,0.5265095729013255,0.7464788732394366,0.667420814479638,0.5025041736227045,0.1043771043771043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218963752622,0.0049392482606138,0.0071985541972952,0.0094920628468058,0.0116579520253911,0.013689700130378,0.0158467939304943,0.0179176706007269,0.0201496657056983,0.0221712694740721,0.0242222336118087,0.0263363246195864,0.0283425374592498,0.0302718180600904,0.0322064681237487,0.0342026109336723,0.0361871047210922,0.0382976075661885,0.0402244505637242,0.0421270790156114,0.0569141330327415,0.0710109915393384,0.0842979365878208,0.0972125875007882,0.1097742142804463,0.1244253268371046,0.1362947096062691,0.1475486596643574,0.1577789407354402,0.166929370261953,0.1790572194759458,0.1906683398602306,0.2008397328518285,0.2098121542128627,0.2181946232654363,0.2280750321123267,0.2357226529815362,0.2439669235529054,0.2510809737275152,0.2583586277990951,0.2641411220358589,0.2698535171091549,0.2743872853575697,0.2784099766173032,0.2832432432432432,0.2879691466029227,0.2920477037556686,0.2958616036763115,0.299650168437419,0.3028976141174608,0.3000915528987263,0.2983365411053065,0.2955735766176719,0.2933217943170345,0.2902445539265151,0.287501912192137,0.2838489384909657,0.284507781367356,0.2849300121050926,0.2851085058618109,0.286212947061898,0.2872518347992051,0.2885151729592474,0.2879499565904588,0.2883626360483196,0.2900619026651816,0.2908287543193791,0.2929088187601347,0.2958368084514873,0.3000982897582072,0.3051488805802063,0.3105307233329844,0.3145086383057774,0.3172940208037117,0.3233416597280044,0.3269723062601815,0.3285735758304524,0.3257361839451391,0.3270285087719298,0.3238834951456311,0.0,1.9508274529997405,49.748372391886754,145.8695441788686,195.3641986604667,fqhc3_80Compliance_implementation_low_initial_treat_cost,58 -100000,95739,47779,454.6423087769874,5041,51.61950720187176,4033,41.63402584108879,1496,15.302019030906944,77.31464774318667,79.67973368995474,63.30648041847581,65.05572190814867,77.1266614194096,79.49447307137422,63.234695478558784,64.98733710243768,0.1879863237770678,185.26061858052856,0.0717849399170234,68.38480571099126,241.78968,169.400993338345,252550.87268511264,176940.424840812,482.68556,321.24628292757825,503700.5400098184,335076.1789109749,468.05772,228.28906545830333,485809.7327108075,236125.8313885532,2601.84273,1224.1939704412462,2685923.186997984,1247008.3358645546,928.05452,421.5348792895895,960872.9357941904,431838.51920842536,1463.61564,625.8507519163338,1498144.7059192178,626832.4544497906,0.38023,100000,0,1099044,11479.585122050574,0,0.0,0,0.0,41582,433.825295856443,0,0.0,42338,439.1627236549368,1112564,0,39932,0,0,9622,0,0,80,0.8356051347935533,0,0.0,1,0.0104450641849194,0,0.0,0.05041,0.1325776503695132,0.2967665145804404,0.01496,0.3637228778073848,0.6362771221926151,23.111503642072083,4.043847388564447,0.3101909248698239,0.2851475328539549,0.1978675923630052,0.2067939499132159,11.238064091275795,5.8527525461000005,16.08036415442861,11582.168777412906,46.43805490643817,14.076778333342023,14.413902048394975,8.771231532551084,9.17614299215009,0.5861641457971734,0.802608695652174,0.709832134292566,0.5601503759398496,0.1270983213429256,0.7566909975669099,0.929936305732484,0.8567708333333334,0.7311827956989247,0.15625,0.5110714285714286,0.7142857142857143,0.6447520184544406,0.5081699346405228,0.1183800623052959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044205168760328,0.0067906372439554,0.009155573620567,0.01151635383285,0.0135396715432576,0.0158027361483763,0.0179391884993159,0.0203524625355222,0.0223782809876745,0.0243404796325346,0.0263374063045487,0.0283595292955892,0.0304382322332017,0.0324738330683953,0.0346428202212343,0.0368556220615951,0.0391528132328829,0.0413022907589763,0.0436005625879043,0.0574471417384494,0.0711878244850108,0.0850206676598334,0.0981637675367562,0.1113724084111952,0.1273788995969491,0.1382007684306608,0.1482005962521294,0.1581794082435437,0.1672890376856382,0.1797938188798067,0.1907640965630823,0.20107635824863,0.2101848706343901,0.2180082246452708,0.2279348091569154,0.2366163790693253,0.2448155707664723,0.2532779894240063,0.2595650376630534,0.265702163177297,0.2720893179315354,0.2764182359005961,0.2807228048282978,0.285115227537923,0.2902768358098526,0.294487814642446,0.2980444014953081,0.302067841762903,0.3046730941467783,0.302350901246018,0.2988630434185593,0.2966500456492731,0.2938828445853447,0.2916963332146671,0.2886273310914093,0.2862108739275387,0.2866763891392334,0.287206844832288,0.2869622460235562,0.2877096015236957,0.2879235037185692,0.2887792899654555,0.2900490555148609,0.2909455491633048,0.2924218527807224,0.2928314498541365,0.2969914263445051,0.3012236668288952,0.3056331929299689,0.3110528219971056,0.3131952132426591,0.3173626373626373,0.3177711986639338,0.3224990633195954,0.3274950041142588,0.3300425273390036,0.3321813376702582,0.3366201040810737,0.3430544896392939,0.0,1.94750556698172,54.19232294754658,150.64992161653663,200.4935128905088,fqhc3_80Compliance_implementation_low_initial_treat_cost,59 -100000,95810,48005,457.1756601607348,4961,50.41227429287131,3941,40.4968166162196,1484,15.102807640121071,77.3504688262772,79.68408302221627,63.33176974345843,65.06062678898073,77.15375545558777,79.490098475987,63.25685222797279,64.98942495030501,0.196713370689423,193.98454622927372,0.0749175154856445,71.20183867571939,241.42272,169.23872488920807,251980.711825488,176639.93830415205,486.15239,323.79614953538373,506795.35539087775,337338.8889838052,469.8963,229.36417515639053,486575.9941550986,236423.38269791604,2543.4695,1204.6407130438467,2617185.199874752,1219806.2342593116,913.90032,421.1729883748051,937382.3922346312,423106.91824945697,1438.17626,624.2488998951715,1466196.367811293,620444.0151118371,0.38291,100000,0,1097376,11453.66871934036,0,0.0,0,0.0,41844,436.1027032668824,0,0.0,42573,440.4341926729986,1113191,0,40014,0,0,9436,0,0,94,0.9811084437950108,0,0.0,0,0.0,0,0.0,0.04961,0.1295604711289859,0.2991332392662769,0.01484,0.3585564610011641,0.6414435389988359,23.24027392445446,3.966181753357439,0.3022075615326059,0.292565338746511,0.2014717076884039,0.203755392032479,11.312323512259908,6.300566793851293,16.00501335551198,11577.26657242331,45.38895312064901,14.32212187028947,13.350402648623326,9.009455605567394,8.706972996168826,0.5922354732301446,0.8308759757155247,0.6994122586062133,0.5768261964735516,0.1058530510585305,0.7749796913078798,0.9274509803921568,0.896969696969697,0.7155963302752294,0.1676300578034682,0.5092250922509225,0.7542768273716952,0.6236933797909407,0.5243055555555556,0.0888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629596612435,0.0048467396043519,0.0071551811630975,0.0094083699948182,0.0113818988140041,0.0133527530504573,0.0156646779868441,0.017819396080754,0.0199584879809412,0.0219071505348825,0.0242001640689089,0.0263293011028732,0.0283736810711861,0.0305364738354429,0.0326629537953795,0.0346658951653733,0.0366965829218554,0.0390407833049827,0.041132334296344,0.0429631788796468,0.0580834950240971,0.0727152968728763,0.0864649047429421,0.0989609052417024,0.1113862168512216,0.1273355596888738,0.1383884547276448,0.1489952448326117,0.1588533603800779,0.1681241426611797,0.1794104669558011,0.1898372885020812,0.1996784111773845,0.2085742706295158,0.2176955321091833,0.2275678670360111,0.2356716334616887,0.2436842401395375,0.2514477120472351,0.2582518267402707,0.2638496783449808,0.2707587980825441,0.2767736746232642,0.2813428188176679,0.2867103137488309,0.2908653846153846,0.2953341929668623,0.2986047459008045,0.3024996762077451,0.3057773788624754,0.3026865349896257,0.3001858608109038,0.2967314736545506,0.2935508104828224,0.2915775718698028,0.2885754066004682,0.2849774543153232,0.2847208554746441,0.2863647215306436,0.2863228060169673,0.2863919913339061,0.2868311703657024,0.2875242647519255,0.2890017598966339,0.2903828645359145,0.2911389119601329,0.2932547997961148,0.2995564440557256,0.3033083124826244,0.3075802323291987,0.3109750607724858,0.3146538179532837,0.3180378764358895,0.3221315769777711,0.3223232510669883,0.3268536840879991,0.3291710546111027,0.3376288659793814,0.3403630539241858,0.347565543071161,0.0,2.531258559280306,53.16058603367757,144.41275695513573,196.09426568411303,fqhc3_80Compliance_implementation_low_initial_treat_cost,60 -100000,95714,47849,456.07748082830096,5121,52.44791775497838,4113,42.34490252209708,1542,15.734375326493511,77.30949638025908,79.67076952188663,63.31695901961641,65.0600929254689,77.11200347497233,79.47715347399705,63.24309181436831,64.99050455067736,0.1974929052867509,193.6160478895772,0.0738672052480993,69.58837479153601,242.70026,170.02906607796098,253568.19274087384,177642.83811977453,482.59831,320.6330019245189,503591.9719163341,334373.9807389921,473.06497,230.91888744920067,490433.06099421193,238320.35234336817,2642.62945,1250.8282891317697,2719996.5940196835,1265871.6375156925,958.417,437.3633176947305,982519.5269239608,438133.4576913829,1498.3649,632.0746562162284,1528517.2702008064,627487.0580783325,0.38165,100000,0,1103183,11525.826942766991,0,0.0,0,0.0,41553,433.4893536995633,0,0.0,42753,442.9237102200305,1109624,0,39900,0,0,9512,0,0,85,0.8776145600434628,0,0.0,0,0.0,0,0.0,0.05121,0.1341805319009563,0.3011130638547158,0.01542,0.3724825898738942,0.6275174101261057,23.00946949073469,4.045937498347406,0.3172866520787746,0.2856795526379771,0.1964502796012643,0.2005835156819839,11.580185350668645,6.447431451089862,16.449012491887302,11579.984507608306,47.65367893651358,14.521424733064997,14.952798569552789,9.14502775388537,9.034427880010435,0.6010211524434719,0.8068085106382978,0.7233716475095785,0.5878712871287128,0.1272727272727272,0.7784911717495987,0.9087221095334684,0.9019073569482288,0.7373271889400922,0.1834319526627219,0.5238925706313219,0.7331378299120235,0.6535181236673774,0.5329949238578681,0.1128048780487804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153735530326,0.0042676992944611,0.0065437058680301,0.0086028276590558,0.0109388502007827,0.0133235620426069,0.0155327931508943,0.0177304602570253,0.0199092432852295,0.0217068702602572,0.0239034840455519,0.0262233813171242,0.0281748071979434,0.0301535482940794,0.0321772222394109,0.0343744511143025,0.0363995777359193,0.0384978376079899,0.0407845093698356,0.0428247010292095,0.0573412698412698,0.0716678180409889,0.085151464294705,0.0983458298718097,0.1107373349643565,0.1268508334038412,0.1386781542118051,0.14931823262052,0.1593322082416526,0.1687555617501688,0.1814646861771453,0.1916194888559335,0.201303505755881,0.2105067349462189,0.2200253206363186,0.2292294733108707,0.2378016774438525,0.2454753297068396,0.2534443396976477,0.2595555453680676,0.2651950968249742,0.2711491671345686,0.2761041205506694,0.2816767989256208,0.2865229961855244,0.2909135741585501,0.2940609911690391,0.2980902578978841,0.3012616253464936,0.304396634837619,0.3025925726297633,0.2991234226423922,0.2977245508982036,0.2957272609128846,0.2930601571901882,0.2892778390297684,0.2856848544397077,0.2857658959537572,0.2856874241465957,0.2861611052528105,0.2876232242587803,0.2884706720493944,0.2892331558425223,0.289201100695765,0.2889723767550514,0.2888339406559084,0.2887798196552905,0.2938943273092369,0.2975357042845141,0.300449668665194,0.3054713309499027,0.3090774673918783,0.3122222917579323,0.315346722243274,0.317781525201424,0.3193040206912767,0.3195500152021891,0.3256003256003256,0.3344262295081967,0.3358720487433358,0.0,2.436451440683832,54.18467055401381,158.7861008108024,204.10088512037987,fqhc3_80Compliance_implementation_low_initial_treat_cost,61 -100000,95738,47686,453.9367858112766,5028,51.36936221771919,3984,41.08086653157576,1484,15.145501263865969,77.40440741590693,79.76233473895178,63.3594678928421,65.09955893637249,77.21452136965002,79.57558101833169,63.28723174242027,65.03101679544878,0.189886046256916,186.75372062008933,0.0722361504218298,68.5421409237108,242.19778,169.5823188078303,252979.77814451943,177131.67060919417,483.43142,322.016886849163,504400.8961958679,335800.61924122385,462.16828,225.382010708432,479687.07305354194,232999.04345578203,2544.74292,1199.6229471546817,2627529.2882658923,1222528.167660366,900.63014,412.7343447109501,928832.8772274331,419217.264525005,1441.6112,617.0120773585642,1473984.4575821513,616198.5779358806,0.38137,100000,0,1100899,11499.080824750885,0,0.0,0,0.0,41706,435.0728028577994,0,0.0,41949,435.1041383776557,1115841,0,39973,0,0,9580,0,0,68,0.6998266101234619,0,0.0,1,0.0104451732854248,0,0.0,0.05028,0.1318404698848886,0.2951471758154336,0.01484,0.3588179218303146,0.6411820781696854,22.983594610589986,4.027643592684958,0.3180220883534136,0.2889056224899598,0.198293172690763,0.1947791164658634,11.4544627245487,6.165759153322661,15.75884117774518,11522.695505647014,45.80057457477886,14.200274298892406,14.436174966497235,8.696317869504435,8.46780743988477,0.5928714859437751,0.8053866203301477,0.7087608524072613,0.569620253164557,0.1121134020618556,0.7661157024793388,0.9111570247933884,0.8540540540540541,0.7659574468085106,0.1547619047619047,0.5173035328046143,0.7286356821589205,0.6488294314381271,0.5083056478405316,0.100328947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084633531442,0.004732708386116,0.0069186600929251,0.0092317066978114,0.0111943712952324,0.0135280944625407,0.0157146496815286,0.0179076150730079,0.0200057217590322,0.0220414428242517,0.0244129915651166,0.0265515790337975,0.0286621911977876,0.0308792023731048,0.0330286020884064,0.0351678795898114,0.0374267310121994,0.039533605120385,0.0414246074223418,0.0432654251551889,0.0584028481045697,0.0720272914682768,0.0848262985650751,0.097305310525375,0.1095568392646314,0.1247726407512372,0.1358726790450928,0.1467782462416421,0.1573791158308583,0.1661108549492263,0.1785806590566444,0.1900717353905413,0.2014029363784665,0.2111961513229827,0.2191883299046194,0.228139913412244,0.2362798585310885,0.2435744642576061,0.2510660980810235,0.2577720800329655,0.2647238944802006,0.2710400373526322,0.2763717064878647,0.2802842979155468,0.2845812951034048,0.287949883306719,0.2924354013231806,0.2965993125055494,0.3000167787400457,0.3031019978969506,0.3004075504075504,0.296631769348827,0.2933370739234114,0.2911002747450337,0.2891998935950108,0.2861450829284637,0.2824111263368457,0.2820265970465856,0.2823267814101911,0.2828739668688588,0.2844152940299619,0.2845334855253577,0.2869876707764078,0.2878774422735346,0.289327987781596,0.2910422651862204,0.2923927141487621,0.2966755898649069,0.3015635858234885,0.3053537059586001,0.3093716240547353,0.3131042454812947,0.3184221987183475,0.3186912373072583,0.317748356633645,0.3214659685863874,0.3222440647210041,0.3233007773569862,0.3298630136986301,0.3307271305707584,0.0,2.1116262604199645,52.84361625249776,146.47699953122574,202.49411315687436,fqhc3_80Compliance_implementation_low_initial_treat_cost,62 -100000,95757,47712,454.4315298098311,4982,50.983217937069874,3955,40.80119469072757,1490,15.299142621427151,77.33232137485312,79.69841621793901,63.31916690730778,65.07118457801401,77.14145731727096,79.50777667575596,63.24724550299185,65.00132190526114,0.1908640575821607,190.6395421830496,0.0719214043159297,69.86267275287616,241.45748,169.03964723912705,252156.47942186997,176529.80694792763,481.20548,320.10815389560594,502044.6233695709,333809.0624138245,459.73058,224.3088669949589,476648.1823783118,231646.8154346733,2567.73783,1200.9577104056125,2653178.03398185,1225835.7826640485,907.36219,411.9944296791001,936937.1847488956,419619.6410487997,1450.99476,619.0890083628445,1491159.6645676035,624781.0716299474,0.38092,100000,0,1097534,11461.658155539542,0,0.0,0,0.0,41314,430.9449961882682,0,0.0,41626,431.31050471506,1121209,0,40222,0,0,9405,0,0,75,0.7727894566454672,0,0.0,0,0.0,0,0.0,0.04982,0.1307886170324477,0.2990766760337214,0.0149,0.3595850941221667,0.6404149058778332,23.506917171837923,4.0020985958740525,0.3067003792667509,0.2831858407079646,0.2042983565107459,0.2058154235145385,11.064482385223382,5.969869211426063,15.966799713157227,11577.32903768987,45.39153722058808,13.78447472847306,13.707443860747263,8.947031629896916,8.95258700147084,0.5876106194690266,0.8214285714285714,0.7056883759274526,0.5655940594059405,0.1117936117936117,0.7686375321336761,0.9213709677419356,0.891640866873065,0.6988636363636364,0.1686046511627907,0.5118364418938307,0.7419871794871795,0.6382022471910113,0.5284810126582279,0.0965732087227414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.004777409244439,0.0068739338802696,0.0094723148223432,0.0119129974770082,0.0138242275445441,0.0161030431590111,0.0180195816190058,0.0202852614896988,0.022594185094185,0.024685536203061,0.0268053302671293,0.0288431876606683,0.0308148636401087,0.0327462936024018,0.0350472843780683,0.0372027045216869,0.0389870423587264,0.0407993598470283,0.042898206586265,0.0568395340097707,0.0709472891251124,0.0845228481231711,0.0978802599205097,0.1099595124625701,0.1251229547209324,0.1375322291425721,0.1486231891771067,0.1589503700618371,0.1684983648742829,0.1804885404101326,0.1917741516620498,0.20193625584684,0.2113188976377952,0.220277258224227,0.2297165633303808,0.238720546233488,0.246341106723814,0.2542120968016428,0.2616591286425831,0.2665556018325697,0.2721712180574235,0.2779308957995718,0.2826219767845805,0.2863473024814257,0.2897563499297874,0.2932209536433779,0.2965946632782719,0.3000724281538581,0.3033097923474228,0.3000322615334982,0.2971439561496298,0.2943590896951125,0.2905159988469299,0.288335556543649,0.2857710408899211,0.2829624709398871,0.2837470526591564,0.2838159730493075,0.2850097038975838,0.2854737314773237,0.2865319333701744,0.2869332441023925,0.2870531530325345,0.2887928965682745,0.291388665333991,0.2930785562632696,0.2964854028317253,0.3005756148613291,0.3052369274582707,0.3120224261880002,0.3176526616573182,0.3211995473406261,0.3212309558098992,0.3232482598607888,0.3273934311670161,0.3281928432400059,0.3298969072164948,0.3338714016680118,0.3334590720482837,0.0,1.9923674620272105,50.85178907951871,150.4510247835086,200.5037885695348,fqhc3_80Compliance_implementation_low_initial_treat_cost,63 -100000,95712,47764,454.6765295887663,4949,50.307171514543626,3949,40.53828151120027,1488,14.99289535272484,77.41699606751023,79.77081554154702,63.36600846061516,65.10085141788971,77.21964186971,79.58320876038619,63.289223894834,65.03159578495443,0.1973541978002231,187.60678116083795,0.0767845657811676,69.25563293528114,241.0738,168.87265100136537,251874.1641591441,176438.3264390728,484.62489,322.4794141782641,505609.8608324975,336200.0942183469,461.68416,225.34180638911675,478627.1000501504,232461.4752931365,2546.1919,1202.023748889002,2611628.8239719155,1207240.5015975025,912.87452,419.75428739596737,930901.2976429288,415753.3142158155,1443.49616,627.064410508146,1455502.1313941826,608950.6631006389,0.38234,100000,0,1095790,11448.825643597458,0,0.0,0,0.0,41620,434.0835005015045,0,0.0,41848,433.5088599130725,1120900,0,40198,0,0,9518,0,0,93,0.9716649949849548,0,0.0,0,0.0,0,0.0,0.04949,0.1294397656536067,0.3006668013740149,0.01488,0.3529526029526029,0.647047397047397,23.357475313696057,4.057713873836772,0.3226133198278045,0.275259559382122,0.2038490757153709,0.1982780450747024,11.660882433397536,6.429804075684343,15.914210830021451,11554.545227748344,45.10295201424327,13.321041861163868,14.336865285885628,8.90930597492345,8.53573889227032,0.5885034185869841,0.8150873965041399,0.7001569858712716,0.5577639751552795,0.123882503192848,0.7451146983857264,0.9070796460176992,0.875,0.685,0.1602209944751381,0.522005772005772,0.7496062992125985,0.635483870967742,0.515702479338843,0.1129568106312292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023482256725844,0.0047209474313385,0.0069275397598182,0.0093522476873242,0.0115096795184642,0.0136912396425008,0.0157377583887144,0.0178505817513778,0.0199991824554949,0.0222410917982137,0.0245317047177931,0.0266633824933033,0.0289896788519264,0.0312870104324363,0.0333739116081376,0.0351872519841269,0.037138271988404,0.0392175166734086,0.0413145832683733,0.0434017106483169,0.0587682476035336,0.0729474058726272,0.0860062744604278,0.0985684383250412,0.1103199468337605,0.125743118877864,0.1364157188932269,0.1482274033854998,0.1580685145214027,0.1669973722314581,0.1795214198022787,0.1900176363026519,0.2009109091699639,0.2113128400078652,0.220112517580872,0.2287307611449816,0.2383542709366744,0.2465240701817487,0.2535461998117764,0.2594919327154136,0.2650149716175127,0.2709703803236548,0.2762398940948418,0.2802704805218119,0.2847854040808404,0.2894934449436819,0.2926152692740222,0.2958408496150816,0.3001576716294458,0.3018756091778404,0.2996976822304333,0.2971552469432284,0.2939341128850911,0.2915205817426308,0.2883600237247924,0.2856619331195602,0.2825956749259189,0.2832073654483423,0.2839124751735728,0.2844182997271342,0.2845457418527263,0.2853475474730055,0.2860914760914761,0.2881911383716038,0.2894981301955553,0.2901193120190072,0.2920261659053741,0.29738369386425,0.3014657472538896,0.3060641627543036,0.3084296336110365,0.3136834396903442,0.3164016581080245,0.3187358916478555,0.3210458240946046,0.3242115027829313,0.3278344331133773,0.3326074044743615,0.338337801608579,0.3365599404318689,0.0,2.684443182708637,50.45200478478178,147.9264717000649,198.40711649291308,fqhc3_80Compliance_implementation_low_initial_treat_cost,64 -100000,95701,47946,457.16345701716807,5056,51.68180060814412,4008,41.35797954044368,1541,15.705165045297331,77.3508434030137,79.74101146390694,63.31502979323547,65.08277104446208,77.14485750275331,79.53762250038119,63.23677440446522,65.00749605293419,0.2059859002603872,203.38896352575372,0.0782553887702448,75.27499152789119,241.47046,169.11652052259558,252317.5933375827,176713.43091774965,483.76718,321.9171062476663,504967.5238503255,335846.9569259112,459.22275,224.29751034491204,476830.6287290624,232011.4949903766,2612.23638,1232.2629852143054,2697755.77057711,1255792.369164696,943.35028,428.5300261746108,974137.3653357852,436202.6870302326,1496.22208,652.6895392086745,1527666.043197041,652581.5957777759,0.383,100000,0,1097593,11468.981515344669,0,0.0,0,0.0,41609,434.2274375398376,0,0.0,41604,431.6673806961265,1117301,0,40077,0,0,9520,0,0,85,0.8881829865936616,0,0.0,0,0.0,0,0.0,0.05056,0.1320104438642297,0.3047863924050633,0.01541,0.3613381486409427,0.6386618513590572,23.3937962183442,4.0062567305377925,0.3018962075848303,0.280189620758483,0.2118263473053892,0.2060878243512974,11.271006534021438,6.194146525846058,16.669392583388927,11560.782712582788,46.033823812336585,13.891719422126936,13.645005435082304,9.438562887533626,9.058536067593712,0.5780938123752495,0.792520035618878,0.6983471074380165,0.568904593639576,0.1198547215496368,0.7348111658456487,0.9140461215932912,0.8535825545171339,0.696969696969697,0.1269841269841269,0.5096774193548387,0.7027863777089783,0.6422947131608548,0.5210355987055016,0.1177394034536891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022893726511137,0.004593807993023,0.0067100467977545,0.008892999430848,0.0112515005391767,0.0136203418838246,0.0159748645808893,0.018097514145066,0.0201368363997095,0.0223879068433665,0.0245000512767921,0.026509315749471,0.028748637139742,0.0306820523387595,0.0327973745588144,0.0347543830631822,0.0368298368298368,0.0388703215494156,0.0409086653976971,0.0429752238401484,0.0574854302007394,0.0712288894240333,0.0850197329750608,0.0977677726115587,0.10945740686047,0.1249563625977213,0.1371814331659785,0.1473952121315385,0.1575611163964041,0.1669277987637362,0.1791154181982817,0.1909835000649603,0.2005462815853048,0.2098414122951986,0.2195943714078087,0.2298505145493257,0.2376198930314094,0.2450544377765517,0.2523510971786833,0.2593182834409144,0.2653642606510486,0.2702955918864477,0.2752115279785746,0.28,0.2851255743842844,0.2902347024308466,0.2931515416849083,0.2967758346581876,0.3007179354504883,0.3040759794222398,0.3015107855546279,0.298901310451989,0.2966104078762306,0.2929756238280686,0.2902432884663794,0.2868894993894993,0.2837460347521424,0.2839914254389553,0.2846094881185589,0.2854653437177709,0.2867404242616467,0.2869830042243835,0.2876997336884154,0.2883338883338883,0.2910301699446248,0.2933326436662701,0.2942651118246859,0.2994934899474845,0.3035485101807208,0.3094289508632138,0.3158578080229226,0.3194175265832067,0.3233031393473136,0.3263554216867469,0.3261758691206544,0.3308633262761703,0.3337858220211161,0.3325453112687155,0.3361838588989845,0.3262599469496021,0.0,1.9417774549922864,53.29387338492513,147.53982407391052,203.13478272014697,fqhc3_80Compliance_implementation_low_initial_treat_cost,65 -100000,95722,47780,454.6603706566934,5036,51.40928940055578,3956,40.732537974551306,1474,15.074904410689289,77.26691653433518,79.62771066118579,63.2951211478972,65.03959756527036,77.07475247652187,79.43717459074769,63.222880607756935,64.97007585654971,0.192164057813315,190.5360704380996,0.0722405401402639,69.521708720643,240.19908,168.36146242447924,250933.578487704,175885.40672413792,481.94832,320.8327433821936,502888.3642213911,334572.50891351374,468.89067,229.8046980907536,485719.8763084766,236893.99799552732,2552.01401,1211.1858902571366,2630526.911263868,1229805.3003041474,898.94769,416.4916275680796,923710.139779779,419742.1375567996,1436.867,616.5253797523642,1470369.7582582897,617386.5623099646,0.38147,100000,0,1091814,11406.071749441093,0,0.0,0,0.0,41476,432.6800526524728,0,0.0,42470,439.6063600844111,1119274,0,40150,0,0,9776,0,0,63,0.6581559098221935,0,0.0,0,0.0,0,0.0,0.05036,0.1320156237712008,0.2926926131850675,0.01474,0.3511972633979475,0.6488027366020525,23.441091816621064,3.98026604840588,0.314206268958544,0.2848837209302325,0.2007077856420626,0.2002022244691607,11.382622008337556,6.133600767381647,15.894490214727131,11590.433898918294,45.71316244743111,14.012278781777812,14.03512322863133,8.822481191538854,8.843279245483116,0.5874620829120324,0.80301685891748,0.6967015285599356,0.5894206549118388,0.1073232323232323,0.7744299674267101,0.9201596806387226,0.895774647887324,0.7419354838709677,0.1827956989247312,0.5032991202346041,0.7092651757188498,0.6171171171171171,0.5427631578947368,0.0841584158415841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.0047653327114743,0.0071031375573324,0.0094472831442183,0.0117364684823952,0.0139594554692352,0.016147612008767,0.0183542430150774,0.02060865031741,0.0226211922698984,0.0248787838405789,0.0272781405281097,0.0293379676284885,0.0314556746902326,0.0335193801648629,0.0353100482722264,0.0374036948057327,0.0396937378096858,0.0416922197390988,0.0437183521223613,0.0589955100762242,0.0731630730584048,0.0866485471125896,0.0991572058374806,0.1114440353227899,0.1269683372841178,0.1382282996432818,0.1488838239679631,0.1586933276304533,0.1672588314852781,0.1790241904186969,0.189834328374381,0.2016204560799773,0.211174750583159,0.2205522621592436,0.2304302948912886,0.2385174418604651,0.2467977243282825,0.2552079783729753,0.2618886609281694,0.2677311118824482,0.2731559487035477,0.27849120024618,0.2829711491208093,0.2869968776955692,0.2920374707259953,0.2950443962980125,0.2984877030398696,0.3008632757816145,0.3039805401689515,0.2999770546234934,0.2969032347058418,0.2945162929914723,0.2918782093006437,0.2889797739440809,0.2854996473798792,0.2819049430863375,0.2815016930208093,0.2821455440804322,0.2822294051467043,0.2829980143119403,0.2846415303138092,0.2843778840506754,0.2854396279984798,0.2862813973631027,0.2882305427447302,0.2886853817185895,0.2930018590288937,0.2958055054948938,0.3004762476487773,0.3034145001830831,0.3071668712311222,0.3104947998739363,0.3131650957737914,0.3142642783456813,0.3169121979964643,0.3191974464204286,0.3189395460935931,0.3246930422919509,0.3305182341650672,0.0,2.268288676437201,53.27127426929852,147.10582142841065,197.69891957491845,fqhc3_80Compliance_implementation_low_initial_treat_cost,66 -100000,95702,47248,450.492152724081,4808,49.04808676934651,3866,39.8110802282084,1397,14.189881089214436,77.288290147924,79.65716846242772,63.294707477804174,65.04369151686838,77.10751788942997,79.47978230934193,63.22679483467145,64.9794277444823,0.1807722584940307,177.38615308579142,0.0679126431327219,64.26377238608438,241.18116,168.98870148730387,252012.6643121356,176578.02500188487,479.00347,318.78914458145937,499961.38011744793,332551.79053881764,458.29462,223.8222742759075,474734.5719002737,230688.81349263812,2493.15073,1160.9552291722655,2569187.5509393746,1177162.827498136,876.54752,397.87199391869103,898530.2919479217,398359.3171457957,1361.88344,576.4958239053192,1384950.1577814466,570786.8760287324,0.37681,100000,0,1096278,11455.121105097072,0,0.0,0,0.0,41188,429.782031723475,0,0.0,41443,429.04014545150574,1118662,0,40086,0,0,9394,0,0,87,0.8881737058786651,0,0.0,0,0.0,0,0.0,0.04808,0.127597462912343,0.2905574043261231,0.01397,0.3497909615767469,0.6502090384232531,23.29859533405719,4.008242924531134,0.3264355923435075,0.2785825142265908,0.1950336264873254,0.1999482669425763,11.122863421591672,6.081980709870765,14.759631106013192,11444.5707861284,43.98366442233344,13.134682901146515,14.2525203605337,8.267598962401637,8.328862198251583,0.5944128297982411,0.8022284122562674,0.716323296354992,0.5716180371352785,0.1280724450194049,0.7700440528634361,0.9292035398230089,0.8776119402985074,0.75,0.1488095238095238,0.5214207250091542,0.7104,0.6580366774541532,0.5156794425087108,0.1223140495867768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686071359847,0.004338966555489,0.0066465072857896,0.0087669395964972,0.0109734765275404,0.0131352523699457,0.015517628107094,0.0177206145051804,0.0197794110130942,0.021808320114619,0.0237768257937565,0.0259386996776908,0.0282124570747054,0.030112665032646,0.0320061887570912,0.0340732932349476,0.036218303807167,0.0385533416355334,0.0402833250124812,0.0423445300205313,0.0568372899411992,0.0706627578264056,0.0843181293423731,0.0973068544185899,0.1091030012562416,0.124274702469188,0.1357424260122543,0.1463334079116992,0.1566920798537227,0.1660706807126059,0.178618413958203,0.1891689867726874,0.19960794990471,0.2089509754548838,0.2179563426507191,0.2271577546039494,0.2357156432013057,0.2427125369163829,0.2506852275182822,0.2570316625720387,0.2625684073833596,0.2686122831692452,0.2739389771015902,0.278249384643093,0.282593615752516,0.286617205920476,0.2899143326602029,0.2938650697585526,0.2973603995071016,0.3001017293997965,0.2980152959551893,0.2950343479398119,0.2922677722779258,0.2897282758022299,0.2880234356412086,0.2848503406568169,0.2815094817087636,0.2813503769255981,0.2816312601313881,0.2816595054288719,0.2827177126604543,0.2832163696577827,0.2845615135361137,0.2846884101469574,0.286621012193085,0.286555294482171,0.2871886221619023,0.2923370091531036,0.2967948941512922,0.3022604441989822,0.3075946497392881,0.3128335182543456,0.3196808179041207,0.3220607064848987,0.3258364826251267,0.3300011623852145,0.3330341113105924,0.3335318642048838,0.3417822838847385,0.3438897168405365,0.0,2.2750801679829653,49.18286363775315,137.34247090360407,204.9457980009291,fqhc3_80Compliance_implementation_low_initial_treat_cost,67 -100000,95815,48042,457.5797109012159,4876,49.57470124719512,3911,40.07723216615353,1485,15.039398841517508,77.36488025655099,79.68048170734932,63.35773544642036,65.07162167484665,77.17467937323569,79.49544230234423,63.285817664349246,65.00416260714468,0.190200883315299,185.0394050050852,0.0719177820711109,67.45906770197507,243.7061,170.72016371431354,254350.2165631686,178176.41320702762,483.86905,321.37290282739065,504307.74930856336,334714.3938082667,471.16789,230.3390647905951,487166.9154099045,236860.69428250636,2528.27874,1197.006546725305,2594896.644575484,1205507.912148729,901.46953,417.29589252524494,922026.3215571676,416704.9861976137,1443.23262,620.5179548549964,1464137.91160048,612603.1901605746,0.38058,100000,0,1107755,11561.373480144028,0,0.0,0,0.0,41580,433.20983144601576,0,0.0,42493,438.8248186609612,1110488,0,39884,0,0,9782,0,0,78,0.8140687783749935,0,0.0,0,0.0,0,0.0,0.04876,0.1281202375321877,0.3045529122231337,0.01485,0.3588582677165354,0.6411417322834646,23.18886894608653,4.0041552307258526,0.3157760163641012,0.2728202505753004,0.2073638455637944,0.2040398874968038,11.420599427466096,6.300201029822624,15.978949966354689,11560.691645469473,45.15455263509687,13.06140967103017,14.20644465199378,9.06793977435407,8.81875853771885,0.5847609307082587,0.788191190253046,0.7036437246963563,0.5980271270036991,0.1152882205513784,0.7671691792294807,0.9285714285714286,0.8743169398907104,0.7587939698492462,0.1602209944751381,0.5046006624953994,0.6865912762520194,0.6317606444188723,0.545751633986928,0.1021069692058346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384280360579,0.0045520905146194,0.0065447682441756,0.0088469507983585,0.0110737128969605,0.0134810410133181,0.0159024648820567,0.017988035200196,0.0204039908406934,0.0227442550795844,0.0249046857705079,0.0271235491518118,0.0290859010462702,0.0307431041580897,0.0328096975694229,0.0350679784038237,0.0371324251921266,0.038946910356832,0.0409515206263173,0.0430200378701179,0.0576068590024407,0.0718593542587772,0.0847903288322735,0.0977622832901051,0.1101329008614334,0.1258724275924694,0.1371716101694915,0.1477485330385236,0.1581894988372341,0.1671040089110713,0.1794858003442341,0.1908725354548599,0.2018447298090085,0.2111194836680536,0.2194481379325502,0.2281161535739561,0.2370311786394573,0.2453400107797341,0.252012545147813,0.2593214914386302,0.2663210999642119,0.2714532427827954,0.2768434975671973,0.2819130497149073,0.286336398262937,0.2899936029918315,0.2932828642456495,0.2970374979365341,0.3004315691544346,0.3035422916995631,0.3018008944039321,0.2991049365767942,0.2960472640315093,0.2939385632042939,0.2906702293475841,0.287431928042587,0.2834037569830192,0.2831350020517029,0.2829685818256368,0.2832464844028838,0.2841866311464645,0.2851968410426934,0.2866032517599732,0.288287080484426,0.2906770733575943,0.2918267732890227,0.2946835299776476,0.2976108574645068,0.3013555058692007,0.3033520881210872,0.3048564016203177,0.3089297090677426,0.3100398053958425,0.3118189438390611,0.3157349896480331,0.3205097946660373,0.3190062490474013,0.3253231017770597,0.3327904451682953,0.3271488072699735,0.0,2.8862430889968667,51.16959362104189,149.93884795651132,192.1392799033449,fqhc3_80Compliance_implementation_low_initial_treat_cost,68 -100000,95640,47759,455.4056879966541,4937,50.44960267670431,3888,40.08782936010038,1432,14.60685905478879,77.2563444549925,79.66691519956204,63.27473565930678,65.05578743815542,77.07310933328156,79.4872796725142,63.20572725184808,64.99052523902317,0.1832351217109362,179.6355270478358,0.0690084074587034,65.26219913224907,242.05346,169.622105374488,253088.10121288165,177354.77349904645,481.55454,321.25711884005665,502951.1396905061,335346.14056885894,463.23403,226.74612802633945,480947.6997072355,234418.40533687425,2490.84123,1172.856886656701,2571279.328732748,1193211.2156594528,883.05331,403.99862638649546,911196.5495608532,410302.9029553472,1395.23334,596.8711268624571,1425671.6227519866,595661.9816616691,0.3797,100000,0,1100243,11504.00460058553,0,0.0,0,0.0,41507,433.4169803429528,0,0.0,41920,434.8808030112924,1108899,0,39787,0,0,9556,0,0,66,0.6900878293601004,0,0.0,0,0.0,0,0.0,0.04937,0.1300237029233605,0.2900546890824387,0.01432,0.3500291205591147,0.6499708794408853,23.37040596561681,3.99434919827958,0.3004115226337449,0.2993827160493827,0.2037037037037037,0.1965020576131687,11.390463557182464,6.103472657341924,15.437339427785318,11554.619384540923,44.746599931867735,14.31381673350617,13.277109624301715,8.712848375769743,8.442825198290103,0.5879629629629629,0.8152920962199313,0.6815068493150684,0.571969696969697,0.1151832460732984,0.7758037225042301,0.940329218106996,0.8688046647230321,0.7277486910994765,0.1419753086419753,0.5059127864005912,0.7256637168141593,0.6036363636363636,0.5224625623960066,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0046521999128345,0.0070327484549264,0.0092143894832017,0.0116593753179367,0.0139054429876837,0.0161273869756814,0.0183088806244636,0.0206002086614978,0.0230499723400331,0.0252116361397568,0.0271511813127524,0.0293197166858837,0.0315077532167601,0.0335103196082887,0.0353576639314576,0.0371848565267871,0.0392254633092329,0.041134663211896,0.0430170336605159,0.0571795863337548,0.070882309803675,0.0847436274303951,0.0979694523100243,0.1098717881074236,0.1251111111111111,0.1364909897480525,0.1478042339310815,0.1586490674931865,0.1680276415610614,0.1798915562646199,0.190711933443106,0.2010259314520959,0.2105384261389783,0.2189901752141935,0.228287648429697,0.2368215060496947,0.2448223018502242,0.2524430707695105,0.2588480858774686,0.26532126256245,0.2712770321748813,0.2766537795593083,0.2805352214088563,0.2849685450408245,0.2893223058881619,0.292226343223737,0.2967671260795353,0.2997291096911332,0.3023958814599696,0.2997951592906043,0.2971479746486635,0.2957307176628325,0.2935579179097992,0.2912557723819455,0.2879809538437908,0.2845295106403222,0.2843264568094025,0.284220630077817,0.2846301168805599,0.2849253310791772,0.2865996119272957,0.2879874213836478,0.2891222437741065,0.290528233151184,0.2917077729892517,0.2938116489951391,0.2967776281589578,0.2989378373672297,0.3023960341503718,0.306512026716007,0.3088018530216888,0.3081151996001749,0.3117916385198528,0.3165553216802416,0.3205157992565056,0.3227913882702301,0.3228284419933031,0.3194777511324274,0.3219567690557451,0.0,2.24277297528458,51.429859388062354,144.4403650541685,195.97551728428087,fqhc3_80Compliance_implementation_low_initial_treat_cost,69 -100000,95706,47570,452.3018410548973,4934,50.45660669132552,3967,41.01101289365348,1534,15.746139218021858,77.32722884548278,79.70382664033917,63.32110870231941,65.07608301092375,77.12782369337228,79.5039281576574,63.24628735635252,65.00257143366495,0.1994051521105007,199.89848268177468,0.074821345966896,73.51157725879887,242.17006,169.56214319819722,253035.40007940985,177169.81505673335,480.08135,319.66267765740986,501175.7047625018,333559.5967414894,462.33643,225.73194422532453,480114.55917079386,233624.0712641456,2558.26644,1209.8441416610588,2646664.796355505,1237743.4138518577,909.64871,418.5749003127331,940318.7574446744,427212.15003524616,1493.03782,639.8479267362072,1533807.5773723694,647929.8492093142,0.37898,100000,0,1100773,11501.60909451863,0,0.0,0,0.0,41317,431.2477796585376,0,0.0,41923,435.06154264100473,1114997,0,40034,0,0,9527,0,0,72,0.7523039307880384,0,0.0,1,0.0104486657053894,0,0.0,0.04934,0.1301915668373001,0.3109039319010944,0.01534,0.3552018633540372,0.6447981366459627,23.3890400494162,4.081037524710417,0.3103100579783212,0.2803125787748928,0.1998991681371313,0.2094781951096546,11.60405519133094,6.365463536317162,16.449893268977856,11530.17389240341,45.780282929012216,13.704955303298895,14.00457607706312,8.91453130869925,9.156220239950946,0.5787748928661457,0.7985611510791367,0.6904955320877335,0.592686002522068,0.1058965102286401,0.7470288624787776,0.9102844638949672,0.8596491228070176,0.7688172043010753,0.1398963730569948,0.5077088562208677,0.7206106870229008,0.625421822272216,0.5387149917627677,0.0956112852664576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386721201935,0.0048646512146426,0.0072334381657705,0.0094863747625867,0.0116024852299651,0.0139085457118711,0.0163461342361266,0.0182611093521799,0.0203607878428404,0.0225906544735845,0.0246128602194646,0.0266933703076054,0.0288720659932937,0.0310764443436955,0.0333240451200759,0.0356260147467915,0.0377825663551789,0.0399393694002346,0.0420324526731849,0.0439867414371781,0.0593175195061573,0.07275543415696,0.0864931768358559,0.0981578310591156,0.1099345012709495,0.1257312725464682,0.1371629293969076,0.1477794222558216,0.1584423908979221,0.1672566181833784,0.1793457772799241,0.1910679107224038,0.2018751767495486,0.2112435743191512,0.2205529507583261,0.2294388122541687,0.2380102012344163,0.2454105736782902,0.2523120567375886,0.2591570266865193,0.2656557471929621,0.2712360181588431,0.2765008048480257,0.2811590034870762,0.284983536444601,0.2884036887266988,0.2926951384368898,0.2957796670569668,0.298656718351274,0.3018872904843606,0.2986200948684778,0.2961057540201108,0.2933404698856273,0.2897126113252212,0.2875155943682053,0.2842626367899948,0.2800025315254023,0.2795359340227779,0.2808904622506638,0.2811978260097332,0.2812855358574278,0.2827078908032412,0.2842454325519312,0.2853836052438291,0.2856868810397333,0.2872152293768855,0.2883144214088672,0.29181550416745,0.2956734124214933,0.2987937512359106,0.3019065386540474,0.3048534409515718,0.3077213279678068,0.3078271473210883,0.3083521870286576,0.3130095710740872,0.3118131868131868,0.3166163141993958,0.3184188855339006,0.3252965939533104,0.0,1.6956552273482106,51.661494213508014,155.74142012354503,196.41146373307103,fqhc3_80Compliance_implementation_low_initial_treat_cost,70 -100000,95778,47892,456.7541606632003,4982,50.81542734239596,3977,40.92797928543089,1462,14.919918979306312,77.38146625236273,79.70478013309246,63.35451413110488,65.06789754567063,77.19322936513257,79.51845427261016,63.28440556143131,65.00063140118407,0.1882368872301612,186.3258604822988,0.0701085696735646,67.26614448656676,242.15532,169.6461222808712,252829.79389839,177124.31067768298,483.50671,321.3363128424462,504237.6641817536,334920.23402915354,464.98869,226.80000335432555,480935.8829793898,233374.7565148828,2565.33316,1196.7710555566127,2642586.9510743595,1213804.5612973606,914.4738,412.4917307770432,939958.3620455638,416007.7397457883,1419.21184,603.0085494230674,1449758.1699346406,603301.7547184451,0.38127,100000,0,1100706,11492.263359017728,0,0.0,0,0.0,41610,433.8261396145252,0,0.0,42012,434.2646536782977,1115511,0,40007,0,0,9725,0,0,83,0.8561465054605442,0,0.0,0,0.0,0,0.0,0.04982,0.1306685550921918,0.2934564431955038,0.01462,0.3511025886864813,0.6488974113135187,23.24642200404244,4.0446499202192765,0.305758109127483,0.2841337691727433,0.2167462911742519,0.1933618305255217,11.227137804893234,6.145945633587686,15.723888508310132,11546.364886213289,45.43878348501114,13.77311348768773,13.719724162497814,9.47234464056349,8.473601194262095,0.5939150113150616,0.8212389380530973,0.7023026315789473,0.5719257540603249,0.1131339401820546,0.7532693984306887,0.9268817204301076,0.8459119496855346,0.7360406091370558,0.1137724550898203,0.5293286219081272,0.7473684210526316,0.6514476614699332,0.5233082706766917,0.1129568106312292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0045198427175807,0.0067862975624106,0.008906084978471,0.0110425330716747,0.0132235274955717,0.015737116764514,0.0179695711180726,0.0201062525541479,0.0219757734490096,0.0238700159816416,0.0259982763573685,0.0279010975459366,0.0302543672729893,0.0324652562992288,0.0343278495523127,0.0365801918519821,0.0384312343196002,0.0403166325587193,0.0422605599341988,0.0567904326591947,0.0708904467929266,0.0843637584033393,0.0978901889053581,0.1103766722540244,0.1259968270756213,0.1374262802834231,0.1485534243075809,0.1580600027769174,0.1678655274808914,0.1800480070611282,0.1909498837649348,0.2015525789336348,0.2112204724409448,0.2192642787996127,0.2284584454856611,0.2374649867758818,0.24556549125471,0.2530134156584114,0.2595456576279341,0.2655385541331975,0.2711025280898876,0.2754914840985217,0.2804441303644791,0.2843512145380385,0.2889050321976926,0.2932368417763445,0.2969844073655183,0.3005591798695247,0.3028110544419404,0.2998521107824684,0.2969020350992832,0.2946561665026016,0.2924209614551754,0.2897550111358574,0.2864375411064715,0.2831481247632277,0.2834995911692559,0.2846303038551839,0.2853642948444823,0.285770176615247,0.2869565217391304,0.2879245361597567,0.2887109331553776,0.2899080377403559,0.2921043100325969,0.2938600209092707,0.2987235367372353,0.3011926701206578,0.3047881773399015,0.310889480572228,0.3138571278716039,0.3187786448656013,0.3252488958754397,0.3254294249439881,0.3276690495722489,0.3347381095725467,0.3410174880763116,0.345228440118951,0.3473167044595616,0.0,2.280667877853199,49.709963582948895,149.54449130393223,206.1735237135788,fqhc3_80Compliance_implementation_low_initial_treat_cost,71 -100000,95769,47696,454.54165753009846,4989,51.07080579310632,3949,40.78564044732638,1517,15.547828629305933,77.31912755708531,79.6669472235983,63.32066847763053,65.05755038542009,77.12294144813555,79.47291834491878,63.24671030152924,64.98662933316668,0.1961861089497603,194.0288786795179,0.0739581761012928,70.92105225341072,241.26564,169.00473413262185,251924.3387735071,176471.02858775132,480.38807,319.6424487472464,501170.7963954933,333324.6508544719,462.32872,225.3547189424961,479842.8614687425,233182.75695845293,2555.59859,1206.168382863034,2640754.210652716,1232081.747380294,931.92438,425.29699646289095,962074.8676502836,433210.45562965615,1470.05626,629.0377793219374,1508228.4037632218,632762.5004605182,0.38222,100000,0,1096662,11451.106307886685,0,0.0,0,0.0,41308,430.8701145464608,0,0.0,41711,432.74963714772,1120318,0,40219,0,0,9517,0,0,90,0.9188777161712036,0,0.0,0,0.0,0,0.0,0.04989,0.1305269216681492,0.3040689516937262,0.01517,0.3715930902111324,0.6284069097888676,23.440796104387,4.063488453442354,0.3137503165358318,0.2709546720688782,0.2180298809825272,0.1972651304127627,11.385925965789658,6.29270163800873,16.31268078953502,11594.2698481883,45.54768255515264,13.222451411061304,14.051865732599373,9.698173069710592,8.575192341781374,0.5902760192453785,0.7897196261682243,0.6933010492332526,0.6167247386759582,0.1232349165596919,0.75,0.9047619047619048,0.8343023255813954,0.7477064220183486,0.1461988304093567,0.5192096597145993,0.6950596252129472,0.6391061452513966,0.5723172628304821,0.1167763157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020253369654376,0.0044082327546894,0.0067164481960959,0.0090292307379796,0.0114104402477346,0.0135956738260364,0.0158450165689523,0.0179716538005963,0.0202143105457966,0.0226756208922831,0.0247095854736345,0.0266965119980285,0.0289090460323337,0.0309351628654428,0.0328934471053147,0.035035138486978,0.0372379522749624,0.0389191431979669,0.0406496461859783,0.0425363496229637,0.0578276027640341,0.0719687856313482,0.0856705334480082,0.0978905527046353,0.1093318433869573,0.1252114701404161,0.1368997115221449,0.1474171410331436,0.1576530884629758,0.1669775319440871,0.1798996489867993,0.1915489909646702,0.2025295806507743,0.2119459447639456,0.2214754026225468,0.230770934378668,0.2389030882730448,0.2472071909910112,0.2543517236683839,0.261506755209526,0.2672469673117881,0.273459260819699,0.2796622213800128,0.2828909474896803,0.2866922833726501,0.2910856635158814,0.2944411042637406,0.2983519702488601,0.3022113340592108,0.3055445544554455,0.3025078792123481,0.2989198486412108,0.2963907718759248,0.2940453467522702,0.2915812613254909,0.2875386641349952,0.2844616090789661,0.2840814050738779,0.2831015204199905,0.2830488218190899,0.2849657547063887,0.2858410220014194,0.2849278941750214,0.2850055865921788,0.2871444004321209,0.288073442213669,0.2889792205577191,0.2934384680371726,0.2993256699626148,0.3049879925987165,0.3076124255011739,0.3097588008655724,0.3141961767471012,0.316928685349738,0.3200825051565723,0.3230913568664243,0.3314103537270381,0.3350141185962081,0.3305921052631579,0.3313115996967399,0.0,1.7431654039938247,53.6017581592523,145.55216256095392,198.5615634339048,fqhc3_80Compliance_implementation_low_initial_treat_cost,72 -100000,95694,47662,454.2291052730579,4996,51.00633268543482,3985,41.19380525424791,1530,15.685413923547976,77.34181859432726,79.724539233332,63.3271521787835,65.08550900631693,77.14124636319191,79.5243111758038,63.2516441751217,65.01203503229024,0.2005722311353537,200.22805752819292,0.0755080036618025,73.47397402668321,240.96116,168.75403026374076,251803.833051184,176347.55602623022,482.1136,321.016181464649,503352.03879031073,335005.6236176238,463.6769,226.66791399893955,481761.0194996552,234713.41772907192,2583.49807,1219.2599538629856,2670421.144481368,1244795.5920569582,942.81897,431.8574527905572,970581.4889125756,436627.9315218887,1489.27964,638.7031071305139,1528212.970510168,643493.9399993863,0.38031,100000,0,1095278,11445.628775053818,0,0.0,0,0.0,41403,432.19010596275626,0,0.0,41892,435.0220494492863,1120763,0,40213,0,0,9499,0,0,99,1.0240976445754175,0,0.0,1,0.0104499759650552,0,0.0,0.04996,0.1313665167889353,0.3062449959967974,0.0153,0.3573481509867791,0.6426518490132209,23.31426547811245,3.944819257935728,0.3109159347553325,0.2835633626097867,0.1994981179422835,0.2060225846925972,11.165157603910734,6.093117645238816,16.38492743820358,11536.823887782784,45.57039297285069,13.767619266530408,14.024587720763734,8.83268008967898,8.945505895877563,0.594228356336261,0.8061946902654867,0.7239709443099274,0.5723270440251572,0.1278928136419001,0.7605985037406484,0.9310344827586208,0.886685552407932,0.7164948453608248,0.1614583333333333,0.5222861250898634,0.7192192192192193,0.6591422121896162,0.5257903494176372,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873196220797,0.004368671254954,0.0066252041841258,0.0088663646889155,0.0111542685158823,0.0134804919768673,0.0157681762121721,0.017986382613844,0.0203395374032849,0.022602340079231,0.0247008520717339,0.0266206556568893,0.0288677187712187,0.0309134937400175,0.0329359549981937,0.0354158047165908,0.0374814768758873,0.0394945855871756,0.0412678928095872,0.0430635476607455,0.0570342205323193,0.0714592342082945,0.0851691313063464,0.0978335209755995,0.1097690903912488,0.124888935900148,0.1361388765094119,0.1477873939471359,0.1574830913228836,0.1664485961262092,0.17837948452831,0.1897411489826603,0.2010114742509108,0.2092339313632239,0.2178490105272421,0.2277731017985292,0.2371625316681733,0.245352407301191,0.2532903694290642,0.2601396999885492,0.2660452852880635,0.2716973190379871,0.2770926204017925,0.2818574902082909,0.285842631150825,0.2893971867070677,0.2937210756722951,0.297147072665064,0.2998770146935077,0.3030410929999472,0.2998304446119065,0.2976421255241631,0.2944249644431301,0.2917599156788287,0.2906830086210734,0.2871223484036854,0.2835476634332838,0.2831106307722539,0.2835884498687485,0.2841178040750956,0.2848805772565398,0.285795801113669,0.2860510231752852,0.2861471282805329,0.2878345382295207,0.2893943332466857,0.2898966378918673,0.2965283870159168,0.2970623291032742,0.3006331618519984,0.3017942312059959,0.3045524242584466,0.3093888231262849,0.3129292776813344,0.3172452199740115,0.3193902871322226,0.3229040097205346,0.3251902282739287,0.3229881900576765,0.3255902513328256,0.0,1.7372597966031054,52.78011952248505,140.51014267473164,209.6895429788185,fqhc3_80Compliance_implementation_low_initial_treat_cost,73 -100000,95679,47626,454.0390263276163,4965,50.52310329330365,3932,40.51045684005894,1481,15.123485822385268,77.38307130315455,79.75958982826266,63.34642469116329,65.09745047665902,77.18568550339499,79.56483127985635,63.271278113947936,65.02541180988808,0.1973857997595587,194.75854840631257,0.0751465772153565,72.03866677093629,242.176,169.6880673903211,253113.01330490492,177351.4223500675,485.03281,322.6972251685749,506374.3454676575,336707.4542674723,464.5388,226.6985271263909,481376.069984009,233701.7504187896,2551.7209,1203.1882950748327,2634184.5859593013,1224750.3266911574,904.12787,415.27807068056114,931963.7433501604,421036.7903934624,1437.65368,621.7103504254159,1471150.8272452678,623932.9818756657,0.38013,100000,0,1100800,11505.13696840477,0,0.0,0,0.0,41638,434.5781205907252,0,0.0,42062,435.5083142591373,1113698,0,40022,0,0,9619,0,0,96,1.0033549681748346,0,0.0,0,0.0,0,0.0,0.04965,0.1306132112698287,0.2982880161127895,0.01481,0.3472409152086137,0.6527590847913862,23.67429193737189,4.007636735224946,0.314852492370295,0.2713631739572736,0.2133774160732451,0.2004069175991861,11.232717993350288,6.120145092773816,15.860187547513709,11512.09213155234,45.02482486438316,13.147934083125326,13.973161389067975,9.297685937040583,8.606043455149283,0.5877416073245167,0.8163074039362699,0.6922455573505655,0.5792610250297974,0.1230964467005076,0.745819397993311,0.9126637554585152,0.8547008547008547,0.7053140096618358,0.1555555555555555,0.518640350877193,0.7438423645320197,0.6279594137542277,0.5379746835443038,0.1134868421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023688286446048,0.0043563714465179,0.0067747791604547,0.0091697469434176,0.0115296629556199,0.0135285075887903,0.0159024648820567,0.017893415264012,0.0200852473091901,0.0220814053478563,0.0240834153543307,0.0263084932688456,0.0286016949152542,0.0308083721313501,0.0330018363009883,0.034757175191459,0.0365992624207516,0.0385166272263046,0.0406102456373884,0.0426571896071953,0.0574347617157303,0.071732166411926,0.0850485722078848,0.0978823183041722,0.1103062892087089,0.126437875327751,0.1382969700824799,0.1493756514709949,0.1594117835380494,0.1676650556704566,0.1797012869625102,0.1915045472732581,0.2016413935539975,0.2100850440523819,0.2184320239365505,0.2281978837737521,0.236411556458908,0.2435357448533717,0.250749386865292,0.2580541680032995,0.2631036956471432,0.2688689180650144,0.2755497140421299,0.2799793700674071,0.284757505773672,0.2892475372039405,0.2938239159001314,0.2961977960450971,0.2995493162038956,0.3022819961196827,0.3002246405079297,0.2970454857771059,0.2939918991899189,0.2916035380863743,0.2881820877817319,0.285268471776044,0.2810938981979133,0.2806612274320915,0.2809930046067224,0.2815679287305122,0.2819065713008493,0.2830529436014212,0.2835500988450734,0.2830448291167332,0.2843667373335556,0.286742512189459,0.2885378832671678,0.2935771272467637,0.2975929978118162,0.3025914037422688,0.3070376874240172,0.3089740910990388,0.3138202316793657,0.3139804229246058,0.3227912108118047,0.3271028037383177,0.3298313110387689,0.3366221706326175,0.336322869955157,0.3338208409506398,0.0,2.2703198143417667,51.89355732654764,142.1842845795053,200.9330189264448,fqhc3_80Compliance_implementation_low_initial_treat_cost,74 -100000,95684,48168,459.627523932946,5025,51.24158689018018,4017,41.30262112787927,1461,14.850967768905983,77.3960056150407,79.77935309484268,63.35197710932333,65.11274212381281,77.20520930452923,79.59648951071364,63.27771582594307,65.04477396692053,0.1907963105114731,182.8635841290378,0.0742612833802596,67.96815689227742,241.99648,169.5802212377503,252912.16922369463,177229.4440426302,488.55019,324.9724922500724,509869.0272145813,338913.3151698332,472.4102,231.0107009924764,489588.3533297103,238271.79089940863,2536.8717,1208.1186841064764,2605932.078508424,1217720.8406180392,910.73537,419.2206034964756,933229.0456084613,419854.5297532263,1414.43304,614.8457407218646,1438514.4642782493,606209.3561241693,0.38384,100000,0,1099984,11496.007691986122,0,0.0,0,0.0,42067,438.892604824213,0,0.0,42796,443.2611512896618,1113539,0,39931,0,0,9598,0,0,77,0.7838301074369801,0,0.0,1,0.0104510680991597,0,0.0,0.05025,0.1309139224676948,0.2907462686567164,0.01461,0.3535837485626676,0.6464162514373323,23.25540633399536,3.8909717681302554,0.3196415235250187,0.2962409758526263,0.1959173512571571,0.1882001493651979,11.318213779945587,6.218717071879884,15.783293102039964,11646.553458763066,46.2509203891607,14.618267895769687,14.588220869485378,8.7253105342938,8.319121089611828,0.6034353995519044,0.8319327731092437,0.6892523364485982,0.5717916137229987,0.1309523809523809,0.7635350318471338,0.9384920634920636,0.8699186991869918,0.7029702970297029,0.1270718232044199,0.5306048533140166,0.7536443148688047,0.6163934426229508,0.5264957264957265,0.1321739130434782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0049279065522905,0.006952761819695,0.0092252984505969,0.0112404125892621,0.0137254103368223,0.0158548895255768,0.0181625131445956,0.0204154654562554,0.0223750742082744,0.024328480623334,0.0265819275747712,0.0284057017092786,0.0305099759999175,0.0326038732576015,0.0345971759938806,0.0367830617677829,0.0389150698582075,0.041018814156899,0.0429616659370896,0.0583497853404782,0.0726875013082703,0.0856261735180892,0.0984911413700646,0.1110267763019186,0.1268852459016393,0.138989093069643,0.1490317566776319,0.1592317224287484,0.1687205723049862,0.1801204105590798,0.1922573527025711,0.2026147342338915,0.2129896817068905,0.2220365259651013,0.2313499750927104,0.2401133093926349,0.2481098266545336,0.2554240072508922,0.2615206978153259,0.2681730014316723,0.2745187312483218,0.2799508692365835,0.2837083019364407,0.2879706174695144,0.2924931789691026,0.296395609877775,0.2994207050412605,0.3030287394871265,0.3066892753394587,0.3036901952370736,0.3003191824545542,0.2972168811665801,0.294347175027357,0.2918103639673776,0.2884401262907433,0.2856444619629483,0.2851166742924374,0.2853840924541128,0.2854125248508946,0.2855971984203859,0.2862244197225655,0.2875773559828882,0.2890998406797663,0.2911344137273594,0.2930455883112189,0.2927186242224661,0.2970263116923556,0.3014493761078864,0.3060018903591682,0.3083646573977628,0.3122069437858911,0.3138357705286839,0.3176718620585799,0.3239738805970149,0.3292841136926524,0.3324263038548752,0.3307939053728949,0.3352380952380952,0.3359878649981039,0.0,2.5290506560392445,54.29136310005647,149.6576981064138,195.9901897743248,fqhc3_80Compliance_implementation_low_initial_treat_cost,75 -100000,95816,47618,453.6090005844535,4901,49.908157301494526,3941,40.47340736411455,1555,15.769808800200384,77.38566316619061,79.70625398034424,63.36611244363343,65.08393260451817,77.19363350439333,79.51934099720545,63.29400989269079,65.01640416910456,0.1920296617972781,186.91298313879656,0.0721025509426382,67.52843541360676,242.02024,169.5416482505106,252588.31510394925,176944.82496252452,486.89555,324.44519003259154,507516.5421224013,337973.549472076,467.23752,228.93399979948663,483524.5157384988,235688.3301311802,2552.90981,1205.5076164116515,2623063.381898639,1216904.7073041268,899.49987,415.06740523999287,918769.5896301244,413219.4118918077,1506.36722,636.9222193948557,1528920.7647991984,629078.476432772,0.37813,100000,0,1100092,11481.28705017951,0,0.0,0,0.0,41789,435.4700676296234,0,0.0,42266,436.98338482090674,1116399,0,40064,0,0,9540,0,0,89,0.9288636553394004,0,0.0,0,0.0,0,0.0,0.04901,0.1296115092692989,0.3172821873087125,0.01555,0.3495696400625978,0.6504303599374022,23.01026410919577,4.068916592344627,0.3202232935803095,0.2770870337477797,0.1994417660492261,0.2032479066226846,11.730112627940365,6.610680420018053,16.603208173125715,11406.553427755463,45.43054083081798,13.416423837736929,14.481396334580166,8.755398667305018,8.777321991195876,0.5861456483126111,0.8012820512820513,0.6996830427892234,0.5814249363867684,0.1186017478152309,0.7710547833197057,0.920570264765784,0.8777777777777778,0.7393617021276596,0.1956521739130435,0.5029433406916851,0.7038269550748752,0.6286031042128604,0.5317725752508361,0.0956239870340356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019243819189126,0.0040854394128321,0.0066476540378155,0.0088391278727165,0.0112189267260669,0.0134405864983199,0.0156254777849127,0.0177058883559546,0.0197557361132403,0.0217053152950326,0.0239088328431322,0.0259265721705036,0.0281497620784986,0.0303136354746734,0.0324915703399705,0.0344884573671435,0.0364832845303009,0.0384539640750836,0.0404967602591792,0.0425390218522372,0.0577571009836544,0.0714599318433651,0.0846182065929458,0.0973364854215918,0.109203332876871,0.1247650028516507,0.1350876077883006,0.1456158996705282,0.1556510702744211,0.1655956817889731,0.177257525083612,0.1889217740715937,0.1996439581433719,0.2085961886883063,0.2176577170153187,0.2270345559461431,0.2349861890760046,0.2428829719137085,0.2510391066514151,0.2571255514159676,0.2624730102647592,0.2677111160365363,0.2734481009073639,0.2774319949347127,0.2817194668732674,0.2860141147591286,0.289464826657691,0.2926031979322403,0.2965432735715207,0.2992691134714481,0.2963460144441163,0.2939538201923473,0.2908766607679559,0.2882220684884123,0.2854686921081882,0.2813903743315508,0.2791895821480498,0.2795045303360477,0.2797904472619921,0.2799850275386343,0.2811787995368468,0.280585892836021,0.2816612186740424,0.2828969434071954,0.2831805164488725,0.2846404802296751,0.2866754090883174,0.2916143216080402,0.2948839495768812,0.2992660186470938,0.3037555061078061,0.305910290237467,0.3066241321073372,0.3128727821819554,0.3127402268679103,0.3139150943396226,0.3167351911070504,0.3216867469879518,0.3225718194254446,0.3225561049828832,0.0,2.5678820545623804,52.751284625363255,146.6007918573006,195.2560265529967,fqhc3_80Compliance_implementation_low_initial_treat_cost,76 -100000,95755,47886,456.79076810610417,5015,51.026056080622425,3981,40.88559344159574,1484,14.996605921361809,77.37657405990127,79.72097766405493,63.3458979718325,65.07894176178658,77.18215034313047,79.5339254859529,63.27141726516954,65.01036867878607,0.1944237167707996,187.0521781020216,0.0744807066629604,68.57308300051557,241.6062,169.2842586442364,252316.829408386,176788.71979973518,483.81209,322.18330763756563,504561.0150905958,335766.9235419201,467.37385,228.357384375814,483688.8204271318,235121.92157254412,2548.27788,1209.5463986286302,2619099.869458514,1221019.8930903138,876.13354,407.7860639972645,896551.0730510156,407501.02964994457,1441.05038,625.4227827343078,1458809.4407602735,614408.8042704314,0.38272,100000,0,1098210,11468.946791290273,0,0.0,0,0.0,41617,433.8990131063652,0,0.0,42341,437.8048143700068,1116586,0,40031,0,0,9664,0,0,88,0.9190120620333142,0,0.0,1,0.0104433188867422,0,0.0,0.05015,0.1310357441471571,0.2959122632103689,0.01484,0.353796136928667,0.6462038630713329,23.18581818225748,4.010401671620709,0.3029389600602863,0.3019341873901029,0.1956794775182115,0.1994473750313991,11.288825395931594,6.174680671921865,15.945726396323584,11586.58027282724,45.73769547211415,14.645032515905868,13.723546394107318,8.778035350670345,8.591081211430614,0.5890479778950013,0.8011647254575707,0.693200663349917,0.5879332477535302,0.1108312342569269,0.7602905569007264,0.9223107569721116,0.8507042253521127,0.7205882352941176,0.1685393258426966,0.5116703136396791,0.7142857142857143,0.627497062279671,0.5408695652173913,0.0941558441558441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0045514906385264,0.006848759106313,0.0090922020399041,0.0111260271743552,0.0133196199631368,0.0153868115956806,0.0174786621472618,0.0196383115754608,0.0217317869609278,0.0239217776320104,0.0260929368411328,0.0284662753282,0.0304634397528321,0.0324873620138244,0.0344200277014036,0.0363869818686382,0.0383629856320348,0.0404000499022747,0.0424811756006623,0.0576262694792656,0.0720672669657704,0.0855252812228081,0.0982018055511765,0.1107270082839737,0.1263834420354964,0.1374469889737065,0.147934156904055,0.1583758730429953,0.1683537788453289,0.1803319296507307,0.1918203949147957,0.2019495425320119,0.2113619204971934,0.2196166507029538,0.2286955750642901,0.2369711114337081,0.2439845139217142,0.2524682811684332,0.2603025202386269,0.2664538367224188,0.2720014028524666,0.2771807875542315,0.2814116069718445,0.2859848484848485,0.2907604010148533,0.2939816839290846,0.2977272727272727,0.3010206718346253,0.3044073688784714,0.3017517954225115,0.2993606103015834,0.2965349731839496,0.2941557880176363,0.2919399008215528,0.2885260909368324,0.2856782334384858,0.2861977080642788,0.2868230248153317,0.2872801563332741,0.2883456191098255,0.2894995479026614,0.289983743903964,0.2898209968280726,0.2906715705005732,0.2927025067329604,0.2938514621867752,0.2983205060293522,0.3026439544362002,0.308122807708982,0.311801691771837,0.3160864978902953,0.3201297486120641,0.3222573839662447,0.3287861915367483,0.3301278292482702,0.3293975174084166,0.3375694996028594,0.3367595347579118,0.3488546751783702,0.0,2.7045919927763493,53.27306024058519,144.99353424233772,198.93077424268975,fqhc3_80Compliance_implementation_low_initial_treat_cost,77 -100000,95749,47637,453.5713166717146,5015,51.185913168805946,4022,41.41035415513478,1545,15.759955717553186,77.3313489084019,79.69707658315689,63.31030609897547,65.06307566576442,77.1305863540644,79.50089988191154,63.23386762381147,64.99111757278767,0.2007625543375013,196.17670124534925,0.0764384751639966,71.95809297674316,240.84214,168.7774344099492,251534.65832541333,176270.472182424,480.5922,319.06946569461724,501317.9041034371,332623.99157653574,469.16855,228.3541657642473,486572.4550648048,235848.37252928136,2596.22596,1226.7953751111304,2674042.444307512,1243812.7971165555,950.91014,434.7344547181557,977660.4246519546,438581.4536050452,1493.36374,638.9336471839499,1524865.3040762828,636841.3198599214,0.37957,100000,0,1094737,11433.39356024606,0,0.0,0,0.0,41336,431.0645541989995,0,0.0,42426,439.5659484694357,1120572,0,40218,0,0,9407,0,0,84,0.8772937576371556,0,0.0,1,0.0104439733052042,0,0.0,0.05015,0.1321231920330901,0.3080757726819541,0.01545,0.3579773989657154,0.6420226010342847,23.082912062500544,4.006555556161737,0.3142715067130781,0.2779711586275485,0.209845847836897,0.1979114868224764,11.276312901577834,6.239068806849058,16.522134335057917,11589.51952818752,46.252307895528034,13.789208429323088,14.40511240227326,9.3659482888657,8.692038775065987,0.6006961710591745,0.8237924865831843,0.7096518987341772,0.5817535545023697,0.1344221105527638,0.7546862265688672,0.9209401709401708,0.8637602179836512,0.7033492822966507,0.1693989071038251,0.5330948121645797,0.7538461538461538,0.6465997770345596,0.5417322834645669,0.1239804241435562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0047152113732926,0.0069931489469677,0.0092156065840276,0.0115668680949765,0.013667240378446,0.0159272363899623,0.0182157917845145,0.0203029590156389,0.022430710613106,0.0246351394316072,0.0268046109273224,0.0289595554183389,0.031042905582982,0.0332166929881604,0.0353242885506287,0.0372683027855441,0.0389875887260802,0.0412590829235838,0.0430589117573535,0.0582401636862818,0.0717133558669331,0.0853099461829778,0.0981670575121197,0.110324975220903,0.1260392206638319,0.1374996020502371,0.1478147868045717,0.1581023021182908,0.1676485422099174,0.1794979575559651,0.1912043404338267,0.2025191055759977,0.2121527245659741,0.2209635158641037,0.23090566456047,0.2399218313791178,0.2468789751556291,0.2544546589490409,0.2619492350885234,0.268581217950944,0.2744209466263846,0.2794528990660408,0.2831430183831034,0.2871534072244595,0.2905318729030984,0.2935049326456007,0.297947908445146,0.300626142418232,0.3037425110190292,0.3006638032018742,0.2981337437814363,0.295265015680153,0.2916258004961634,0.2892558311736394,0.2861808968527732,0.2828457949817173,0.2834562008598003,0.2835617604494764,0.2840519462061859,0.2843588644285794,0.2857929515418502,0.2867798729034274,0.2864484837697733,0.2877413797229068,0.2888571799195745,0.2893724180861298,0.2933704595939054,0.2974554885742324,0.3010586416081836,0.3039357939602793,0.3063428511221157,0.3108766233766233,0.3136072370900867,0.3168298540550526,0.3188288392547159,0.3176278240190249,0.3220338983050847,0.319403779611392,0.3184023889511012,0.0,2.283832953150905,53.41893511317319,148.43954150143102,202.79509665475496,fqhc3_80Compliance_implementation_low_initial_treat_cost,78 -100000,95486,47384,452.1500534109712,4999,51.04413212408102,4023,41.4929937373018,1525,15.604381794189724,77.22623088476638,79.71427896820647,63.24095407219974,65.07674875313994,77.02803561852849,79.51980326278937,63.16567022352176,65.00551205376367,0.1981952662378887,194.4757054171049,0.0752838486779836,71.23669937627142,240.45472,168.44738128553004,251821.9634291938,176410.55367858117,482.3869,321.24066637560503,504581.9072953103,335817.6553375416,467.75476,228.60689272517664,485982.4372159269,236419.1983419483,2610.5299,1232.1197179695405,2695785.204113692,1252305.5442847337,910.14988,419.0771241603762,934354.0728483758,420113.5685063734,1475.8927,635.6981842707895,1511179.7750455565,634300.6202254521,0.37655,100000,0,1092976,11446.452883145172,0,0.0,0,0.0,41494,433.9170140125254,0,0.0,42220,438.28414636700666,1115898,0,40016,0,0,9494,0,0,87,0.9111283329493328,0,0.0,0,0.0,0,0.0,0.04999,0.1327579338733236,0.3050610122024405,0.01525,0.3516884113584037,0.6483115886415963,23.08263164160648,4.128596159138582,0.3069848371861794,0.2818791946308724,0.2120308227690778,0.1991051454138702,11.25178674187369,6.047380494193022,16.341006027388904,11525.862973710446,46.31798769315616,13.934284049210962,14.044118159669427,9.590031817277993,8.74955366699778,0.5863783246333582,0.8139329805996472,0.6923076923076923,0.5943728018757327,0.0923845193508114,0.753577106518283,0.9278752436647172,0.8531073446327684,0.6962616822429907,0.1186440677966101,0.5103074141048825,0.7198067632850241,0.6276958002270148,0.5602503912363067,0.0849358974358974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0045847829835576,0.0066907628891099,0.0089679715302491,0.0112803388173969,0.0133516791520154,0.0156022000224492,0.0178815931988637,0.0203382200988265,0.0224483104854408,0.024470356380358,0.0264137363767221,0.0285949647325335,0.0306015099632823,0.0329079919408999,0.0350461242196154,0.0370739196282234,0.0392295458561583,0.0411618239969995,0.0431777125732246,0.0582921621168983,0.0720228290861021,0.0858957641021326,0.0983779340001475,0.110637893134934,0.1256373021845818,0.1370276649584281,0.1479695268987004,0.1584190231362467,0.1676484499290536,0.1797706709278974,0.1911265390247871,0.200822174728486,0.2104772659993202,0.219076203297067,0.2280233824542686,0.2365853658536585,0.2443910798439649,0.2521013182288645,0.2580448953360264,0.2641929499072356,0.270030717283748,0.2746286717600721,0.2796241559128157,0.283886533118877,0.2884344321076189,0.292318705885308,0.2947884608017163,0.2987039970911357,0.3026442848261174,0.2995396681831068,0.2962100651631835,0.2941790139991259,0.2924430193257648,0.290004162454659,0.2865243444544911,0.2824719065506474,0.2828727828645636,0.2836247305573613,0.2836951666219959,0.2845534544092866,0.2854096321307979,0.2867241090848251,0.287903801534892,0.2887197529977741,0.2894873391448734,0.290758018319485,0.2932552238338398,0.2983560685554389,0.3025545713381841,0.307493305496301,0.3102045130264757,0.3133611821185859,0.3135841405722009,0.3176676170330175,0.3227040816326531,0.32778198334595,0.3339408667476711,0.3298743855816494,0.336232980332829,0.0,2.527674102150665,54.67743599039385,143.3184603229952,204.16907041350743,fqhc3_80Compliance_implementation_low_initial_treat_cost,79 -100000,95716,47776,455.57691504032766,4990,50.911028459191776,3941,40.6201679969911,1438,14.678841572986752,77.36399481233721,79.74941760142363,63.33329461681414,65.09749867981238,77.1794116568246,79.56790457483851,63.26299917274064,65.03102892450113,0.1845831555126125,181.5130265851224,0.0702954440735013,66.4697553112461,243.41108,170.38398564874143,254305.5288561996,178009.93109693407,482.15679,320.52381064154883,503169.752183543,334302.4997299812,465.9926,227.3199684898654,483940.20853357855,235179.90082460453,2543.50318,1198.5496827031266,2621970.464708095,1216820.3358927723,909.81201,415.2240316226929,933139.1930293784,416414.7390433082,1395.98758,594.5983226127952,1425020.6026160724,591594.9594329682,0.38156,100000,0,1106414,11559.342220736346,0,0.0,0,0.0,41458,432.5713569309207,0,0.0,42134,437.22052739353927,1112590,0,39923,0,0,9722,0,0,84,0.8775962221572151,0,0.0,0,0.0,0,0.0,0.0499,0.1307789076423105,0.2881763527054108,0.01438,0.3458069468432163,0.6541930531567838,23.41665795188617,4.029947170685667,0.3095660999746257,0.2834306013702106,0.2090839888353209,0.1979193098198426,11.249217723913468,6.193210462943769,15.257343342161198,11570.295243261207,45.09385576136603,13.705234375365844,13.725978932032245,9.221816031337893,8.44082642263005,0.593757929459528,0.7905102954341987,0.7073770491803278,0.5922330097087378,0.1358974358974359,0.7615449202350966,0.9186295503211992,0.8776119402985074,0.7117117117117117,0.155688622754491,0.521090909090909,0.6984615384615385,0.6429378531073446,0.5481727574750831,0.130505709624796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0044013102518076,0.0066088686753837,0.0089944508811512,0.0110706363580862,0.0134991951423273,0.0157289159084417,0.0178930705203492,0.019944360348566,0.0219132073153249,0.0240993508557833,0.0263536274751458,0.0286055194972176,0.0306848976311423,0.0327154887714663,0.0348435658305589,0.0368359990055523,0.038686646465485,0.0404677754677754,0.0426981745436359,0.0570560220579019,0.070979222274559,0.0848012421708614,0.0966557997686402,0.1090661860038579,0.1245942545385339,0.1360430960435202,0.1469208429518206,0.1568878640362114,0.1665059053008381,0.1792228475502803,0.1898673935146126,0.2006654777956591,0.2100123568843155,0.2189418105818942,0.2286308937329097,0.2369257536721651,0.2448729480548684,0.2521809168358839,0.2590824805988599,0.2651527414841708,0.2715244173270683,0.2779683876768728,0.2828394144845595,0.2865258557902403,0.2905190873513992,0.2951622780159216,0.298084369009686,0.3016643640166824,0.3055241352097856,0.3026704240472356,0.3003646933011599,0.2971630608637091,0.2940490585593366,0.2913228639872238,0.2882583944716734,0.2853033185040793,0.2852188919460137,0.2862418893048943,0.2865653646341247,0.2881586296778998,0.2891497673688137,0.2898776834747878,0.2913746690693897,0.294169590224577,0.2942472714074611,0.2963949665570797,0.301577896968941,0.303265832491025,0.3054113575585968,0.3083611136138391,0.3112089755688371,0.3169480925578486,0.3211446740858505,0.3223024280491234,0.3247014307674116,0.3227935533384497,0.3325865580448065,0.3337946305009687,0.3348837209302325,0.0,2.210256366504657,51.67157299585902,141.60427213918166,204.0161265065524,fqhc3_80Compliance_implementation_low_initial_treat_cost,80 -100000,95682,47779,455.9269246044188,4956,50.76189878974102,3911,40.415125101900045,1478,15.133462929286594,77.31725194233033,79.72592723766829,63.30264576078415,65.08508970273357,77.13022417209153,79.54143235435002,63.23241219933286,65.01838641002713,0.1870277702387994,184.4948833182656,0.070233561451289,66.70329270643549,243.09428,170.22973891453202,254064.56804832676,177911.7550997387,485.95528,323.00215367970856,507411.3312848812,337104.76176721347,462.93751,224.9197513339578,481601.6805668778,233332.4881486042,2528.46813,1181.188241349891,2612743.8494178634,1204707.301478777,900.68735,404.3807496179313,930117.399301854,411486.12687566073,1434.3792,609.6470362415187,1469144.2277544364,608767.3719705021,0.38228,100000,0,1104974,11548.389456742125,0,0.0,0,0.0,41869,437.08325494868416,0,0.0,41783,434.4181768775736,1109204,0,39827,0,0,9550,0,0,99,1.034677368784097,0,0.0,0,0.0,0,0.0,0.04956,0.1296431934707544,0.2982243744955609,0.01478,0.3567014291232136,0.6432985708767864,23.25763047258017,4.010075413153757,0.3178215290207108,0.2807466121196625,0.1971362822807466,0.2042955765788801,11.342690558482774,6.15498141564319,15.80982826171636,11567.564692348002,45.08634057313112,13.613839944281954,14.283996396116798,8.451032394946115,8.737471837786252,0.5855279979544873,0.8087431693989071,0.7127916331456154,0.556420233463035,0.1088861076345431,0.7719449225473322,0.906113537117904,0.8706199460916442,0.7976190476190477,0.1515151515151515,0.5067297198981447,0.7390625,0.6456422018348624,0.4892205638474295,0.0977917981072555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025327484372942,0.0048674136794605,0.0069517034210499,0.0093385767561909,0.0113750826677519,0.0135581134766221,0.0157815273498867,0.0179388689114089,0.0200937161097583,0.022191031380946,0.024489586539448,0.0266551578860836,0.0284931958083709,0.0302808479049818,0.0322440717177559,0.0343300569063631,0.0363440347476339,0.0383305294203169,0.0403683087967538,0.0424276540738887,0.056177779635163,0.0696364245622853,0.0827927190275241,0.0960061443932411,0.1080376829023852,0.1241666137532541,0.1356916186412795,0.1465861529122336,0.1567753588337768,0.1662929785978651,0.1783879272272908,0.1900066030893798,0.2014212336220781,0.2116877004411072,0.2211661306665492,0.2310036457929322,0.2398920028561228,0.2484284862865046,0.2559560933017338,0.2621960290667735,0.2673797409805735,0.2732489510652969,0.2782733166138267,0.2837501197662163,0.2875857463728525,0.2914413138020673,0.2944670952249931,0.2972190108368376,0.3002895852725204,0.303731303981462,0.3016465658492036,0.2981818181818181,0.2957701000968679,0.2930117982626734,0.2902526968676272,0.2871482563922085,0.2835634617207495,0.2842470802142541,0.283863829787234,0.2850465628776569,0.2858795648360671,0.2862060825431797,0.2863826232247284,0.2868565828451789,0.2893460725945842,0.2895940537449971,0.2904890148830616,0.2940882701791622,0.2989399539716856,0.3028177339901478,0.30624349164667,0.3100084370385994,0.3152133116476917,0.3188153310104529,0.3203992164909989,0.3259189885272769,0.329279416235938,0.3281752411575562,0.3424218123496391,0.3517138599105812,0.0,1.7460350803695657,51.002601746127546,152.75069440491976,193.40375944283537,fqhc3_80Compliance_implementation_low_initial_treat_cost,81 -100000,95857,47949,456.3255682944386,4975,50.76311589137987,3945,40.591714741750735,1465,14.876326194226817,77.4717338221379,79.75873488014132,63.40399372213196,65.09105102118123,77.28964617556868,79.58185447546168,63.33429895400539,65.02626126803632,0.1820876465692293,176.88040467963617,0.0696947681265669,64.78975314490754,243.44782,170.49567096410817,253969.788330534,177864.60140011497,486.73522,323.87307078455405,507229.0599538896,337328.8015344346,467.35662,227.8724356868553,484682.2558602919,235439.01864699964,2534.42619,1182.279843745187,2605884.891035605,1195394.0976009034,884.26063,400.6150268616945,904049.3652002462,399541.6161618976,1425.82652,607.7663036033375,1447914.9775185953,598402.1360991419,0.38261,100000,0,1106581,11544.081287751547,0,0.0,0,0.0,41931,436.8486391186872,0,0.0,42407,439.48798731443713,1109649,0,39811,0,0,9384,0,0,69,0.7198222352045234,0,0.0,0,0.0,0,0.0,0.04975,0.1300279658137529,0.2944723618090452,0.01465,0.3672523653214906,0.6327476346785094,23.10696438835442,4.013904916157061,0.2940430925221799,0.294296577946768,0.2136882129277566,0.1979721166032953,11.246054721045638,6.0514665957720855,15.405048031054497,11555.615767563118,44.89498268891042,14.222408943782645,13.09351625290808,9.158691463473406,8.420366028746297,0.5837769328263624,0.8217054263565892,0.6982758620689655,0.5338078291814946,0.1139564660691421,0.7489469250210615,0.93158953722334,0.8823529411764706,0.6820512820512821,0.1216931216931216,0.5126903553299492,0.7394578313253012,0.6323185011709602,0.4891975308641975,0.1114864864864864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022067010831055,0.0044270648661243,0.0068547324017927,0.0092062525375558,0.0113608649703276,0.013582671156918,0.015667019802787,0.017982639561807,0.0204235851561383,0.0226928740898306,0.0248363870994172,0.0270857904722834,0.0291337935568704,0.0310937339232431,0.0330996804453149,0.0350069187715566,0.0371872187684255,0.0393109952636106,0.0411920461035252,0.0429497653217329,0.0573740575826146,0.071383766152302,0.0852076215230469,0.0977985603951032,0.1096330807095951,0.125181057906812,0.1365010020465076,0.1475334843987702,0.158050946981829,0.1673383207219566,0.1789380797623916,0.1916583805282953,0.2020089043327179,0.2107498471482225,0.220658978583196,0.2295634679371676,0.2377637177802036,0.2457950641126406,0.2529018084636552,0.2600146332540698,0.2656008311208588,0.2713787594313769,0.2767265902572032,0.2804771637919699,0.2852865230515584,0.2898965928512584,0.2933526372282269,0.2968187122634329,0.3009009474146165,0.3031183445954828,0.300401196881667,0.2977567304928623,0.2952434325744308,0.292244722102542,0.290139680477217,0.2860727919816271,0.2827149435041566,0.2832980283526153,0.2836713600704857,0.2844434225885183,0.2845046885154582,0.2857729941291585,0.2869172059067529,0.2877018358770183,0.2885990544746157,0.289693377995362,0.2896586627678119,0.2931643529995042,0.2970555861309851,0.3013933213979917,0.3063014918726341,0.3096592391587956,0.3144329896907216,0.3198404935670754,0.3197571228397944,0.3225958147190219,0.3262699128343853,0.3277810826888757,0.3370937416062315,0.3395731935604642,0.0,2.1888636642417163,51.625231412490656,141.19397471079594,202.0598819473099,fqhc3_80Compliance_implementation_low_initial_treat_cost,82 -100000,95728,47403,452.0098612736086,4940,50.29876316229317,3906,40.0927628280127,1465,14.927711850242352,77.34438518034166,79.69739069305365,63.33412346583962,65.07234535336478,77.1522323189456,79.50962820501057,63.26030661243773,65.00278919729952,0.1921528613960674,187.76248804307727,0.0738168534018939,69.55615606526067,243.23838,170.28584156875078,254093.24335617584,177885.09273018426,481.68599,320.74574565940344,502486.8585993649,334364.42384610925,459.39458,224.16915735817645,474613.770265753,230222.39895567368,2500.82085,1189.539657966267,2573491.486294501,1203842.382173636,895.49111,410.8733823619429,923406.276115661,417230.4563790563,1421.77846,613.0337715617039,1452400.948520809,611510.2039978907,0.37926,100000,0,1105629,11549.692879826174,0,0.0,0,0.0,41543,433.2483703827512,0,0.0,41624,429.6130703660371,1110572,0,39891,0,0,9739,0,0,85,0.8879324753468161,0,0.0,2,0.0208925288316897,0,0.0,0.0494,0.1302536518483362,0.2965587044534413,0.01465,0.3631067961165048,0.6368932038834951,23.066820122651617,4.078854153381413,0.3172043010752688,0.2828981054787506,0.1981566820276497,0.2017409114183307,11.580545351047991,6.298092034283947,15.754590429111042,11528.98703909738,45.20195082772395,13.586658538595415,14.166606569525012,8.795376589281982,8.653309130321537,0.5911418330773169,0.788235294117647,0.7158999192897498,0.5904392764857881,0.1192893401015228,0.761709120788825,0.9148936170212766,0.8783783783783784,0.7185929648241206,0.1629213483146067,0.5139457047229453,0.694488188976378,0.6467203682393556,0.5460869565217391,0.1065573770491803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.0045319517808441,0.0066051806532127,0.0086428404578369,0.010777395937125,0.0130607840542383,0.0155622592283076,0.0177458033573141,0.0198628807307578,0.0221937992428118,0.0244282318222805,0.0265418603935092,0.0284189637976948,0.0304631260234189,0.032515628546081,0.0345978567516456,0.0366210886959041,0.0384639316381134,0.0403770604252842,0.0423745585983479,0.0569823770149503,0.0707124618025032,0.0838140588617818,0.0963182635580654,0.1092070990941589,0.1245030031300228,0.1358945258222934,0.1466510613395754,0.1573280926238438,0.1673385367527232,0.1785845014318627,0.1895391605365642,0.2003827376616033,0.210065478077415,0.2191572903949582,0.2286827712950866,0.2380123419593139,0.2465979891585505,0.2534684015291595,0.2600746439529239,0.2667815507031828,0.2726783625730994,0.2784573524192594,0.2823331934536299,0.2868265073118593,0.2910803911654807,0.2945390781563126,0.2975000318386164,0.3006424204745622,0.3029203341295082,0.3004708731333244,0.2972883825126097,0.2935821126542558,0.2914459726652138,0.2895139146567718,0.2867551392141556,0.2825784192700915,0.282769356820975,0.2834787944906586,0.2836482804067893,0.2838120494528069,0.2851015268377144,0.2851601601601601,0.285914740077509,0.2852484956006809,0.2861294172590939,0.2879002550297534,0.2925478663496433,0.2965779467680608,0.2985186648232273,0.3017572390116095,0.3052365398798862,0.3101814327576532,0.314922915731178,0.3223056250579186,0.3252562907735321,0.32834919196496,0.3247967479674796,0.3246646591842321,0.3273422562141491,0.0,2.7699975592111983,52.37440383687544,145.65947802557469,194.02872122837263,fqhc3_80Compliance_implementation_low_initial_treat_cost,83 -100000,95677,47855,455.7626179750619,5003,51.13036570962718,3910,40.34407433343437,1468,15.0401872968425,77.28108161739658,79.6675678258874,63.29287913429015,65.05545283586578,77.0910221541196,79.47876064771368,63.22014471789353,64.98520866237669,0.1900594632769809,188.80717817371817,0.0727344163966208,70.24417348908685,241.81894,169.39809500459216,252745.11115524103,177052.0553577058,483.14073,322.1876194323073,504463.0161898889,336237.5173054207,465.84726,227.80245394444364,483220.2932784264,235392.4109179052,2518.35719,1186.1301038923746,2601239.7232354693,1208818.2571489215,888.79707,404.1246424391634,917719.6086833826,411148.0945673079,1417.83452,608.7507608752281,1454309.85503308,613388.4560690302,0.38178,100000,0,1099177,11488.414143420048,0,0.0,0,0.0,41551,433.75105824806377,0,0.0,42164,437.0329337249286,1110230,0,39850,0,0,9447,0,0,85,0.8884057819538655,0,0.0,0,0.0,0,0.0,0.05003,0.131044056786631,0.2934239456326204,0.01468,0.3560229445506692,0.6439770554493308,23.46622439868939,4.023231582043402,0.318158567774936,0.2856777493606138,0.2061381074168798,0.1900255754475703,11.578508931241943,6.444286878374749,15.73770360602724,11586.774250183818,45.04897013983154,13.817678969402175,14.256437685644372,8.868960330059839,8.105893154725152,0.5953964194373401,0.8075201432408237,0.704983922829582,0.5744416873449132,0.1157469717362045,0.7530662305805397,0.9185336048879836,0.8324175824175825,0.7473684210526316,0.1404494382022472,0.5236323036844064,0.7204472843450479,0.6522727272727272,0.5211038961038961,0.1079646017699115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198095527528,0.0045316761118827,0.006697991617362,0.008899635277504,0.011187274983219,0.0135941509510814,0.0156922323959459,0.0175807571364397,0.0199131101456682,0.0218425981842188,0.0243107178377713,0.026500877886501,0.0285488034390201,0.0307869845652935,0.032871990174526,0.0350514397973427,0.0371153029408413,0.039254354098769,0.0413389922190321,0.043380375643618,0.058202827084008,0.0720381131877912,0.0850617180283819,0.0979240975137569,0.1104522962978593,0.1260817129678607,0.1372765487665067,0.1484108725289707,0.1593392494386827,0.1690325351658971,0.181408341332413,0.1916816575998612,0.2023611156489256,0.2116075339465615,0.2208805253184081,0.2304894143219953,0.238448642002906,0.2460096646653975,0.2536587582947004,0.2601302543169674,0.2656526926685741,0.2716461628588166,0.2776934569687196,0.282736594385611,0.286671612565827,0.2909472126295017,0.2941891045710708,0.2975286624203822,0.3010461362958738,0.3042277346795829,0.3019366672061283,0.2980113283995534,0.2945462761600813,0.2923807318202872,0.2900820172370164,0.2867848768601247,0.2840252607587724,0.2847080843238983,0.2854848904149371,0.2854621624030662,0.285553850185303,0.287372918232525,0.2878358819457554,0.2880544242044488,0.2890230410313146,0.2894545265456814,0.2900261720527993,0.2956385315343583,0.2998117023502336,0.3042690611216131,0.3065426468596198,0.3100220843411505,0.3137903074908002,0.3179437294223286,0.3225568076852023,0.3264743073916542,0.3277827782778277,0.3277261033049673,0.3238909673971138,0.3289023927079377,0.0,2.0734114610283347,53.53309011497281,141.64846872268694,195.65851639718707,fqhc3_80Compliance_implementation_low_initial_treat_cost,84 -100000,95720,47288,450.4492269118261,4907,50.0,3939,40.50355202674467,1457,14.77225240284162,77.3612597271838,79.72737547119624,63.34108899169471,65.08973880098601,77.17404848243866,79.54627269929833,63.26900745408827,65.02283043643345,0.1872112447451428,181.1027718979119,0.0720815376064436,66.90836455256033,242.83336,170.0259200764132,253691.1199331383,177628.20004013088,487.41929,324.0266531850274,508588.2783117425,337890.30733078497,457.81047,223.15973330041788,474737.1604680317,230385.38435305035,2539.0876,1192.2270266125772,2612162.285833681,1205138.9927220824,904.40283,407.21911928043073,926350.647722524,406935.9896368895,1415.77162,612.0792535160722,1436960.7605516089,601336.6707226235,0.3779,100000,0,1103788,11531.414542415378,0,0.0,0,0.0,41949,437.5783535311325,0,0.0,41461,429.6071876305893,1112846,0,39934,0,0,9791,0,0,89,0.9297952361053072,0,0.0,1,0.0104471374843292,0,0.0,0.04907,0.1298491664461497,0.2969227633992256,0.01457,0.3562792511700468,0.6437207488299532,23.125981347645737,4.091614055638834,0.3082000507743082,0.2734196496572734,0.2183295252602183,0.2000507743082,11.344759411779693,6.119628399657149,15.60697462608274,11427.08250563039,45.09786523609779,13.268574885395712,13.785977100958064,9.511896821816858,8.53141642792715,0.5844122873825844,0.8161559888579387,0.6886326194398682,0.5790697674418605,0.1129441624365482,0.7405857740585774,0.9021739130434784,0.8470254957507082,0.7233009708737864,0.125,0.516399416909621,0.7520259319286872,0.6236933797909407,0.5336391437308868,0.1094771241830065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025931666008245,0.0049375456241382,0.0072354934951594,0.0091637797035486,0.0116139530153564,0.0136453432720311,0.0156425264617706,0.0177770970541685,0.0198861022217223,0.0218673218673218,0.0238688443911291,0.0260771324397884,0.0283242998632123,0.030471912890299,0.0324434767354267,0.0345291016230745,0.036461731233237,0.0385617184662481,0.0407104308130647,0.0427203484313296,0.0572308656155372,0.0704843048388616,0.0833945242840658,0.0958685159675706,0.1076092799696429,0.1232860782510333,0.1346490344337571,0.1449838256576147,0.1547788187285682,0.1637131615904973,0.1754799668357183,0.1865310758911667,0.1979885838543082,0.2076082203760385,0.2159897974889509,0.2266122159876932,0.2349805985460059,0.242869985391617,0.250943674265181,0.2578648020782074,0.2634493122182406,0.2689405443289335,0.2744724865535788,0.2794251388091135,0.2837787069017754,0.2879828906451652,0.2916994369748948,0.2953434329324816,0.2985506871630444,0.3017711710287024,0.298473569643385,0.2956132768012733,0.2927922232991979,0.2895658818610418,0.2870445884428891,0.2834555453712191,0.2803685240108537,0.2810915988096406,0.2817653258984733,0.2813655761024182,0.2814901872994552,0.2829575021682567,0.2823468002923061,0.2842674620487023,0.2842810966119957,0.2854542617920849,0.2873069594152612,0.2908440315138579,0.2941299863650666,0.2986319784912225,0.3044715447154471,0.3069784512137576,0.3104410943606923,0.3142664367643751,0.3173298864370787,0.3199021777104926,0.3222356131364869,0.3249949969981989,0.322071448352257,0.330151153540175,0.0,2.4742031631657446,51.59932026191397,142.91715170689628,201.2816185864488,fqhc3_80Compliance_implementation_low_initial_treat_cost,85 -100000,95667,47971,457.7126908965474,4923,50.34128800944944,3916,40.50508534813468,1528,15.700293727199556,77.2430810454354,79.64690073391498,63.27207635196621,65.04990267458705,77.04686472140594,79.45137452266479,63.19857101827738,64.97847333881124,0.1962163240294643,195.5262112501828,0.0735053336888356,71.42933577580379,240.49168,168.54502097213424,251383.69552719328,176178.4495032042,480.6371,320.4535463100232,501965.2753823157,334527.9507622365,467.2319,228.1179387768032,485615.0814805523,236301.6898134024,2509.34468,1185.7910472910748,2597163.201521946,1213807.0917582517,892.84646,406.5602573988442,925914.7877533528,417606.8733264819,1475.78714,626.9130820853971,1517482.3084240125,633709.2638411723,0.38258,100000,0,1093144,11426.53161487242,0,0.0,0,0.0,41292,431.1727136839244,0,0.0,42261,439.0751251737799,1117175,0,40151,0,0,9532,0,0,82,0.8362340200905223,0,0.0,1,0.0104529252511315,0,0.0,0.04923,0.128678969104501,0.3103798496851513,0.01528,0.3514619883040936,0.6485380116959064,23.2135983139926,3.9780610049995326,0.3079673135852911,0.2860061287027579,0.2058222676200204,0.2002042900919305,11.414223452243164,6.377347398486161,16.406551098544938,11584.043588462804,45.40450872992845,13.897166704684386,13.814806460004853,9.064686496342178,8.627849068897037,0.5934627170582226,0.8107142857142857,0.685737976782753,0.6240694789081885,0.1096938775510204,0.7495894909688013,0.8933601609657947,0.8407079646017699,0.7766990291262136,0.1363636363636363,0.5229799851742031,0.7447833065810594,0.6251441753171857,0.5716666666666667,0.1019736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021485325117561,0.004381960927515,0.0068931910703227,0.0092969853381968,0.0117583635938278,0.0139416467233565,0.0159775681876115,0.0185120895278549,0.0205947316753926,0.0226004321423816,0.0242026458824735,0.0264849654945777,0.0288261790657973,0.030937075040178,0.0330711587291756,0.0352497156447109,0.0373228640092815,0.0391497488271681,0.0409494190944738,0.0427942954839247,0.0579648052165189,0.0720218705156539,0.0857514802838785,0.0987695902493448,0.1103885821659681,0.1257198509485095,0.1374973443807095,0.1483119956507371,0.1591380822973059,0.1685370332585186,0.1803704942440687,0.191772803642079,0.2017250579920063,0.2106744341389165,0.2195810052787604,0.2299184646957679,0.2384502744212562,0.2457799012868765,0.2534234899710211,0.2604145172753743,0.2652044445989317,0.2714703816436432,0.2772081458678664,0.2817979037248459,0.2861764491255382,0.2904567387789858,0.2939436849162291,0.2973500057359183,0.3010522491663747,0.3042685103176596,0.301234368262182,0.2985768944920036,0.2956612473385129,0.2928984668787966,0.2903288201160541,0.2866098525489715,0.2848109290310311,0.2846882088031294,0.2851651261724556,0.2852370574154132,0.2860922430292341,0.2867891652146365,0.2876953370480539,0.2883751090043154,0.2891253693338778,0.2898308623929839,0.2895180895180895,0.2933530559577013,0.2979179855103046,0.3007938724219093,0.3065616557534685,0.3095491846957263,0.3118971061093247,0.3174095238095238,0.3209794837855724,0.3290269052980917,0.3343648460467275,0.3425718361524353,0.3464804163242947,0.3525812619502868,0.0,1.628797402254546,53.77687894424184,147.42383332249273,193.6415741250907,fqhc3_80Compliance_implementation_low_initial_treat_cost,86 -100000,95837,47660,453.7913332011644,4964,50.82588144453603,3911,40.433235597942335,1436,14.785521249621754,77.44904619750217,79.77574320096282,63.38601454967061,65.10699281204724,77.26831025848999,79.59519873978739,63.31770419378503,65.04060340172315,0.1807359390121803,180.5444611754297,0.0683103558855862,66.38941032409207,242.69938,169.94639125268853,253241.8377036009,177328.58003974307,483.53184,321.9924460223397,504187.89194152574,335631.4951661047,464.00651,226.2730600047371,482006.2606300281,234409.84853063463,2491.45393,1178.8776999791785,2577436.7311163745,1207844.3711501595,882.67401,403.06928599565424,912042.9374876092,411604.98137009074,1391.37722,591.0210697934759,1433074.8667007524,598827.1520072235,0.38167,100000,0,1103179,11510.99262289095,0,0.0,0,0.0,41527,432.93300082431625,0,0.0,42003,436.10505337187095,1118322,0,40118,0,0,9754,0,0,83,0.8660538205494746,0,0.0,2,0.0208687667602283,0,0.0,0.04964,0.1300599994759871,0.2892828364222401,0.01436,0.3560270009643201,0.6439729990356798,23.311877134836088,4.043637828082569,0.3252365124009205,0.2886729736640245,0.1920225006392227,0.1940680132958322,11.3957840292458,6.282416600999454,15.259571870627012,11519.974078571682,44.999583481424,13.87142517217981,14.441766776679088,8.390162924797375,8.296228607767747,0.5983124520582971,0.8148804251550045,0.6973270440251572,0.5885486018641811,0.1198945981554677,0.7713815789473685,0.9051383399209486,0.8810810810810811,0.7383720930232558,0.1607142857142857,0.5202226345083488,0.7415730337078652,0.6219512195121951,0.5440414507772021,0.1082910321489001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023191517373383,0.0045513060930737,0.006920134343957,0.0092949076096341,0.0114605896051333,0.0137965442456701,0.0159864604467644,0.018187570805989,0.0200408788962698,0.0219070714512283,0.0243377568273812,0.026559934318555,0.0287212171052631,0.0309906719107139,0.0329001650165016,0.0347756012893627,0.0365256631855677,0.0385528676157985,0.0405199015054701,0.0425051270573293,0.0574140718719032,0.071397206423553,0.0846276383910792,0.0977600806875249,0.1098256150887729,0.1250673683543099,0.1365501012306681,0.1471260700802892,0.1564920516376827,0.1655814949668023,0.1780633367385343,0.1897497947366146,0.2003647733194372,0.2090521239102207,0.2188656047948889,0.2291906109097339,0.2381943903172287,0.2462941975156255,0.2541927890817735,0.2604385564184559,0.2657704955864536,0.271921538443597,0.277392494043828,0.2817658441031031,0.2857557963557116,0.2896039299969297,0.2933118955030411,0.2968292775617233,0.2994662747524752,0.3016444257644216,0.2988488803720032,0.2958122714009781,0.2934473333800547,0.2912340743723217,0.2879629082747623,0.2847974206107799,0.2811116344795101,0.2816284672483396,0.2830089693687595,0.2828390017863144,0.2834707061706393,0.2845377362181619,0.2853822046034744,0.2859993348852677,0.2867111216956418,0.2891119691119691,0.2903598175572949,0.294679992550748,0.2967262111628553,0.2998746769013863,0.3037803780378038,0.3067578227714962,0.308743680958622,0.3125376279349789,0.314963571828881,0.3181818181818182,0.3188493565480696,0.3215938820688267,0.327637645782479,0.332459752901535,0.0,1.4891707866273245,53.66863785895544,144.0222924119024,193.79781127816764,fqhc3_80Compliance_implementation_low_initial_treat_cost,87 -100000,95801,47737,454.83867600546967,4852,49.38361812507176,3837,39.40459911691945,1440,14.644941075771651,77.3497797498425,79.6839749668202,63.33168066437421,65.06055905359469,77.1643376000477,79.50412217791762,63.26187966754388,64.99585057881553,0.1854421497947953,179.85278890257916,0.069800996830331,64.70847477915243,242.75174,170.04388648818951,253391.6556194612,177496.98488344537,482.03815,321.0802068419953,502535.4015093788,334522.80729895725,466.41582,227.7175030819727,483121.71062932536,234827.90835272596,2502.08062,1183.2909018071418,2571124.5498481225,1194541.5586183409,887.81404,410.5942929565352,906832.1520652184,408720.3610621207,1405.28714,595.7482788219322,1429437.0622436092,586993.1683366912,0.37899,100000,0,1103417,11517.802528157326,0,0.0,0,0.0,41505,432.57377271636,0,0.0,42181,436.52989008465465,1112233,0,39884,0,0,9734,0,0,67,0.6993663949228087,0,0.0,3,0.0313149132054988,0,0.0,0.04852,0.1280244861341987,0.2967848309975268,0.0144,0.3508008700810757,0.6491991299189243,23.203865408901432,4.026111525623644,0.3117018504039614,0.2767787333854574,0.2035444357571019,0.2079749804534792,11.180907294441342,6.114557923007187,15.24699327501426,11500.009010082204,44.23718824071282,13.22702713015858,13.612789460071513,8.724973454638109,8.672398195844622,0.5934323690383112,0.827683615819209,0.7090301003344481,0.5787451984635084,0.1228070175438596,0.776282590412111,0.9232409381663113,0.9013698630136986,0.7135416666666666,0.147239263803681,0.5113293051359517,0.7521079258010118,0.6245487364620939,0.534804753820034,0.1165354330708661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046843156539284,0.0070534028863133,0.0093671580530128,0.0114840809683653,0.0137773025813349,0.0159665579119086,0.018047630227739,0.0202070791213957,0.0222827255140789,0.0241924736804338,0.0262333795369372,0.0284201326409953,0.0306032086002018,0.0323894992005776,0.0344699318040917,0.0365290659158661,0.0387092759124996,0.0409155610044988,0.0427399371134664,0.0569106539248007,0.07079442428552,0.0838539264601064,0.0969586144565651,0.109002940897448,0.1243840541397906,0.1359378812147956,0.1469868233390808,0.157364581219223,0.1660695898403981,0.1779638189438752,0.19,0.2011856847601436,0.2100522507159878,0.2180336164033968,0.2267857340704876,0.2354529529250304,0.2435711474672513,0.2516334679431916,0.2582554053590028,0.2639971323512407,0.2690851292599691,0.2741407238374499,0.2789492580181905,0.2839293512543063,0.2883926923786676,0.2922270088031466,0.2958597917195834,0.2993797648274971,0.3020274809964825,0.2993707647628267,0.2961567548985905,0.2933196357956065,0.2905011781372421,0.2888846005403319,0.2862582578908735,0.282625873131262,0.2831616358484695,0.2840387992021956,0.2847672678024093,0.2854072842113131,0.2858691154156896,0.2870256399557715,0.2879677835624972,0.2894478850338347,0.2897499028119735,0.28995756718529,0.2937344139650872,0.2984976232608167,0.3034064212999217,0.307394223403776,0.3130640083945435,0.3191688506177461,0.3247688343186297,0.3317186772240335,0.3389057750759878,0.3379833206974981,0.3457627118644067,0.3517017828200972,0.3563482930571538,0.0,2.5214449959823244,51.29004066258352,143.23630707219868,189.67827050800656,fqhc3_80Compliance_implementation_low_initial_treat_cost,88 -100000,95804,47749,454.6469875996827,4893,49.9248465617302,3895,40.13402363158114,1484,15.093315519185005,77.41775944651599,79.74388733316214,63.37436231324406,65.0941756659296,77.2248528983869,79.55318068743202,63.30136516600372,65.0238930165014,0.1929065481290877,190.70664573011695,0.0729971472403434,70.28264942819362,242.13816,169.542574665513,252743.26750448832,176968.15860038516,483.06348,321.7704195613758,503700.4822345622,335351.1074989625,463.28812,225.76923221580387,479720.3665817711,232800.50153260343,2496.22086,1176.53685227866,2573867.677758757,1196937.68735768,894.05703,411.33604244081886,917146.2569412552,413666.00946445786,1440.40696,616.614069947206,1467137.6977996742,616346.9203188021,0.37925,100000,0,1100628,11488.330341113106,0,0.0,0,0.0,41648,434.16767567116193,0,0.0,41858,433.11343993987725,1117871,0,40152,0,0,9556,0,0,92,0.9498559559099828,0,0.0,0,0.0,0,0.0,0.04893,0.1290177982860909,0.3032904148783977,0.01484,0.3565967457361301,0.6434032542638698,23.37135987657328,4.022757854318884,0.3021822849807445,0.2942233632862644,0.2012836970474968,0.2023106546854942,11.51735530872353,6.349705673794292,15.82470536901631,11517.210129780731,44.69363977084577,14.06224531976691,13.331848062193703,8.615130578081066,8.684415810804087,0.5917843388960206,0.8080279232111692,0.703483432455395,0.5778061224489796,0.1243654822335025,0.7679180887372014,0.9109311740890688,0.8674698795180723,0.7696969696969697,0.1933701657458563,0.5159750275431509,0.7300613496932515,0.6390532544378699,0.5266558966074314,0.1037891268533772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365141404833,0.0044904868579769,0.0070217450863004,0.0095265178444476,0.01162246807126,0.0138442118978785,0.0160432167974722,0.0183616395852045,0.020380629203377,0.0227105252384656,0.0248260027265552,0.0267920383505958,0.0289364939043194,0.0311216348381119,0.0330057845189363,0.0350134269778971,0.0371727206871572,0.0388347501555048,0.0409291116097398,0.0429332889147997,0.0571842917953426,0.0707707425178494,0.0847352808611888,0.0978907119897476,0.1104674432811611,0.1259482303222398,0.137466364387567,0.1479181729256156,0.1577992615831145,0.1667345146015897,0.1786924210322539,0.1902189765251115,0.201485325892227,0.210326905858974,0.2183757772846125,0.2282708496963394,0.2367714104178974,0.2445844422733551,0.2517640130021633,0.2580582457664909,0.2635730536916627,0.2697636416690983,0.2753919161393899,0.2800598086124402,0.2845330326507353,0.2884120910891576,0.2923180660306678,0.2962205943962726,0.299571192395123,0.3026596164470049,0.3003073124253526,0.2970290233120075,0.2949912188268352,0.2918101274940575,0.289129855123989,0.2848482997663801,0.2820654316121403,0.2819976467512093,0.2820064505177389,0.2828876151266171,0.2843860629774548,0.2849807948577251,0.2868603732801263,0.2871953921134249,0.2869020882114015,0.2864129169146376,0.286921381337252,0.290663589871523,0.2959563297520948,0.3000314415972331,0.3035456513893901,0.3088421052631579,0.3125701459034792,0.3149233543733092,0.3197837031512213,0.3210662892191555,0.3245358293693417,0.3253713368125251,0.3244695138329304,0.3253787878787879,0.0,2.030754879214477,50.98745647366712,146.45891243680248,195.362211602319,fqhc3_80Compliance_implementation_low_initial_treat_cost,89 -100000,95721,47597,454.2785804577888,4913,50.08305387532516,3874,39.86586015607861,1477,14.991485671900628,77.3893283971574,79.74935592853436,63.35181630130408,65.0932302463273,77.18841185552202,79.55341624565737,63.27508152406055,65.02112555301211,0.2009165416353795,195.9396828769826,0.0767347772435229,72.10469331518254,242.43472,169.69982753927633,253272.2391115847,177285.89080690374,478.79924,319.01922384454053,499604.444165857,332681.8084271377,461.70497,225.5862938605281,478618.8192768567,232779.7729480275,2511.46875,1197.900222676553,2586026.2638292536,1213737.5003150324,899.59363,417.98600521918473,923732.9739555584,420597.173076297,1442.74238,628.3373957565226,1467280.6803104857,622822.8387253,0.38036,100000,0,1101976,11512.374505072032,0,0.0,0,0.0,41190,429.6967227672088,0,0.0,41788,432.8621723550736,1117341,0,40122,0,0,9600,0,0,80,0.8357622674230315,0,0.0,0,0.0,0,0.0,0.04913,0.1291671048480387,0.3006309790352127,0.01477,0.3477754031474645,0.6522245968525354,23.278164543554716,4.051126532733677,0.3082085699535364,0.2813629323696437,0.2013422818791946,0.2090862157976251,11.142172003528824,5.902389725165613,15.968599683380928,11494.211424062893,44.83185853125746,13.54236406335217,13.61496804464729,8.722077030920746,8.952449392337257,0.5929272070211667,0.8192660550458716,0.7110552763819096,0.5974358974358974,0.1098765432098765,0.7429519071310116,0.903846153846154,0.855072463768116,0.7320574162679426,0.1358695652173913,0.525112443778111,0.7556270096463023,0.6525323910482921,0.5481611208406305,0.1022364217252396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483972573604,0.0044189039901892,0.006613716360833,0.0088137038879806,0.0110101256557277,0.0131710196852798,0.0154390184249143,0.0175608661047733,0.0195367181991886,0.0216721750964401,0.0238753970693718,0.0260598350227767,0.0281237155774763,0.0300463201235203,0.0320421591073159,0.0340914962436317,0.0362038264038429,0.0382441109048098,0.0400278563113254,0.0419609558930766,0.0564402443481438,0.070412808036415,0.0841619467170128,0.0970285786385717,0.1092312071091995,0.1255076142131979,0.1368004582290296,0.14804011327102,0.1592188618372557,0.1684537851168775,0.1792063748452054,0.1907213707016841,0.2009196951743181,0.2103530852587724,0.2200534729939375,0.2291041221238742,0.2378385015515817,0.2460155889729948,0.2527885259108806,0.2594107269686347,0.2646558802780251,0.2702032895736647,0.2760438832931385,0.2797787250347239,0.2840947710831674,0.2881090994129014,0.2918756017956958,0.2957211300181728,0.2990296286712381,0.3016471208327843,0.2980618124672603,0.2949995881044567,0.293271188106302,0.2904393211932465,0.2876416142169566,0.2845964949742995,0.282012507285415,0.2831488555849414,0.2832217729604838,0.2840392268334281,0.2847745061498323,0.2849617705446469,0.2855565048867401,0.2852378835037794,0.2837256027554535,0.2856995220255781,0.2869852567361464,0.2912881144990666,0.2955743618201998,0.2984250117536436,0.2994910139182919,0.3031052631578947,0.3067032829858944,0.3114815649170233,0.3203161320316132,0.3228825456247075,0.3263491106421465,0.3320031923383879,0.3306541019955654,0.326271186440678,0.0,2.358161248399645,52.258579528407104,148.09944924697604,187.7852901609808,fqhc3_80Compliance_implementation_low_initial_treat_cost,90 -100000,95668,47553,453.5267801145628,5004,50.90521386461512,4048,41.68583016264581,1546,15.794204958815904,77.35982293729873,79.734205287411,63.33991942654043,65.08920866176572,77.15798164415938,79.53543582024992,63.26343711891097,65.01596683510746,0.2018412931393527,198.76946716108532,0.0764823076294618,73.24182665826129,242.1485,169.5542448093639,253113.37124221263,177231.93210829524,483.60829,321.5011839683342,504858.77200317767,335423.38355078554,465.48333,227.45355850133515,482058.817995568,234286.76726737985,2626.46926,1244.0472719814918,2708825.479784253,1264403.728797442,928.8485,423.5786062297192,957651.5658318351,429913.9851170568,1510.62834,650.03693635905,1546131.9563490404,652014.7509934597,0.37775,100000,0,1100675,11505.153238282392,0,0.0,0,0.0,41688,435.0880127106242,0,0.0,42082,435.40159719028304,1114446,0,40021,0,0,9520,0,0,78,0.8048668311243048,0,0.0,2,0.0209056319772546,0,0.0,0.05004,0.13246856386499,0.3089528377298161,0.01546,0.343599615014437,0.6564003849855631,22.998220780881542,4.192715915555388,0.3095355731225296,0.2774209486166007,0.2023221343873517,0.2107213438735178,11.37832520306105,5.987169653995454,16.58209081045433,11475.868138458158,46.534248868080525,13.784916076757664,14.206116935840704,9.17553256187495,9.3676832936072,0.5815217391304348,0.8103294746215495,0.7039106145251397,0.5702075702075702,0.1113716295427901,0.754950495049505,0.9264069264069263,0.8536585365853658,0.7628865979381443,0.1283422459893048,0.5074047954866009,0.7291981845688351,0.6414027149321267,0.5104,0.1066066066066066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392878843115,0.0049766371717294,0.0071120580327702,0.0093640186061627,0.0116825280624694,0.0135782991500839,0.0156512701372543,0.0179773905236093,0.0200310527283499,0.0222399541697356,0.0242075931731104,0.0262323672736599,0.0281623549484546,0.0302406276706376,0.0323159599376992,0.0343754844710867,0.0367820613690007,0.0386346664454032,0.0406699310731996,0.0427174955187794,0.0579601132457872,0.0719206768019432,0.084768531637333,0.097383399791682,0.1094751940600742,0.1247764857744437,0.1362521891418563,0.1472850052190955,0.1566963140340374,0.165364303808338,0.1781973360920729,0.1899053559439499,0.1998890049621311,0.2088609673076712,0.2174353552706929,0.2271458324101564,0.2355784256820109,0.243740373047907,0.2509612658084273,0.2576295244854507,0.2641426522965909,0.2702895500046777,0.2750511610300815,0.2791652698625544,0.2833011992675858,0.2874963094183643,0.2900711877107531,0.2936919091878714,0.2967920311107092,0.3006297428330522,0.2978711973675374,0.2954920059337399,0.2936765843708236,0.2907583621683968,0.2880256022757578,0.2850377341195881,0.2821380029712046,0.28238129590766,0.282850703455812,0.283701100626126,0.284143193805409,0.2837283590330086,0.285290306399699,0.2847589112552665,0.2881161086362983,0.2898092473564171,0.2908334983171649,0.2943324386742401,0.2989525698576747,0.3034588717302238,0.3091492631769279,0.3109079378501215,0.3143846395971041,0.314548634877177,0.3171942311294249,0.3170093902294069,0.3202135774218154,0.3231511254019292,0.3295060080106809,0.3325783314458286,0.0,2.3626531134832343,52.54313872535269,151.90849161446386,205.46832436677823,fqhc3_80Compliance_implementation_low_initial_treat_cost,91 -100000,95843,47372,450.47629978193504,4860,49.43501351168056,3866,39.65860834907088,1483,15.003703974207818,77.34109898624328,79.632621887595,63.34986309044478,65.04463776972172,77.14484145960522,79.44200082971291,63.27481129905617,64.97451664939841,0.1962575266380639,190.62105788208328,0.0750517913886099,70.1211203233072,243.64868,170.62090028951522,254216.45816595893,178021.24337668397,480.7329,319.5031324693879,500902.94544202497,332680.1565783499,456.73589,222.51752079757384,472612.2825871477,229089.5974032624,2510.03885,1187.556001180436,2577993.218075394,1198150.2991146322,892.79873,406.1803900899488,915581.5135168976,407858.6821776662,1442.65468,627.8399570451086,1462824.7028995336,619772.7086172062,0.37918,100000,0,1107494,11555.293552998131,0,0.0,0,0.0,41433,431.5599469966508,0,0.0,41297,426.864768423359,1111535,0,39911,0,0,9701,0,0,91,0.949469444821218,0,0.0,1,0.0104337301628705,0,0.0,0.0486,0.1281713170525871,0.3051440329218107,0.01483,0.3716761867244436,0.6283238132755564,23.020958997087224,4.142730319528488,0.3028970512157268,0.276513191929643,0.214692188308329,0.2058975685463011,11.488301688848017,6.226221292359014,16.036609253420963,11431.32477363436,44.42871324653191,13.112539118774686,13.293410812022003,9.194290439911205,8.82847287582403,0.578375581996896,0.7998129092609916,0.6840307429547395,0.5807228915662651,0.1231155778894472,0.7487266553480475,0.9251700680272108,0.8431952662721893,0.7652582159624414,0.1397849462365591,0.5037202380952381,0.7117834394904459,0.6194477791116446,0.5170178282009724,0.1180327868852459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657181914839,0.0040429218469769,0.0062988771566807,0.0084472150587853,0.0104791332100095,0.0129040136774403,0.0151186364701447,0.0173731191022698,0.0195699913181145,0.021768484798887,0.0238768360887468,0.0259686980779881,0.0281632275757233,0.030187669767059,0.0319951363271026,0.0343695813723061,0.0365525798779857,0.0385942372846234,0.0405830504251409,0.0428757217916038,0.0571336211391269,0.0705140934126229,0.0844489137493977,0.097018452199666,0.1088107999957878,0.1243292914783049,0.1353080769556742,0.1459753128422127,0.1560895965168767,0.1639818655348702,0.1755900173265462,0.1870721446570127,0.1975671004141799,0.2078505531021818,0.2169311004995268,0.2260580545091956,0.235339402865176,0.2432924977219803,0.2506354970494779,0.2565564946517327,0.262365815287803,0.268419883300787,0.274458321506292,0.2786694775171885,0.2832372047841661,0.2868780734295468,0.2914488003802757,0.294244046332439,0.2967901298432569,0.3000567140162756,0.2967457253171539,0.294972926916417,0.2915998085747262,0.2894843334489536,0.287466000802604,0.2839971212886827,0.2815407988858644,0.2822171507380104,0.2830392140081817,0.283532655399599,0.2835862949883537,0.283393037385952,0.2848868930205229,0.2861818507890961,0.2868375985913794,0.2886107699945131,0.2894324239573534,0.294748765063084,0.2989157047918853,0.3038440243613066,0.3088428590853465,0.3113013155809161,0.317394578313253,0.3255251624603295,0.3294835680751173,0.3297922568460812,0.3313051414663827,0.3357314148681055,0.341284901057197,0.3444613050075872,0.0,2.5722088311018365,50.79549228102434,141.0234089474549,197.50090363721617,fqhc3_80Compliance_implementation_low_initial_treat_cost,92 -100000,95642,47937,457.5604859789632,4971,50.720394805629326,3906,40.26473724932561,1472,15.035235565964744,77.31769350596971,79.74021319148349,63.289715480586615,65.08128951380488,77.12924831705509,79.55559919266359,63.21909447751579,65.01479940636082,0.1884451889146277,184.61399881989848,0.0706210030708263,66.49010744405359,240.21162,168.28122937240656,251156.5839275632,175948.63069823562,481.72068,320.2887565130769,503082.06645615946,334294.3753926904,462.66721,225.86720018141224,480207.1683988206,233416.5517939481,2533.23181,1183.0665274187495,2613112.31467347,1201425.73076551,909.39547,410.4020766129864,931800.6106104013,410101.4426068784,1435.27838,600.9009707244203,1467214.9892306726,598103.9570531736,0.38288,100000,0,1091871,11416.208360343782,0,0.0,0,0.0,41533,433.6379414901404,0,0.0,41867,434.27573660107487,1121526,0,40221,0,0,9495,0,0,79,0.8155412893916899,0,0.0,0,0.0,0,0.0,0.04971,0.1298318010865023,0.296117481392074,0.01472,0.3523606811145511,0.6476393188854489,23.165167064450696,4.09936247694445,0.3046594982078853,0.2785458269329237,0.20942140296979,0.2073732718894009,11.404143562178673,6.0541068743024935,15.402843567108182,11624.6232771717,44.62101505494425,13.489733021997944,13.525479050967515,8.878783431579869,8.727019550398927,0.5816692268305171,0.8106617647058824,0.6915966386554622,0.5647921760391198,0.1296296296296296,0.7566409597257926,0.9106382978723404,0.8599439775910365,0.7094972067039106,0.1304347826086956,0.5071193866374589,0.7346278317152104,0.6194477791116446,0.5242566510172144,0.1294298921417565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021881838074398,0.00437066482781,0.006497461928934,0.0084452077765017,0.010784742641448,0.0128973105134474,0.0151388407157284,0.0172561760559063,0.0195881775012281,0.0219461443053804,0.0242572936128277,0.0264153659489583,0.0283186934269738,0.0304518258716732,0.0325460293844151,0.0345723214470498,0.0366822187662001,0.0387331989945364,0.0407417813992694,0.042870699633967,0.0573297663336538,0.0717848236551478,0.0852161125991282,0.0987508689149622,0.1111193249622456,0.1267872651401216,0.1376012242555633,0.1482357957573819,0.15869144281481,0.1680075620052203,0.1804688089921577,0.1922760175111612,0.2030693489886832,0.2124796040167767,0.2215965442002953,0.2307990905562025,0.2391807180449867,0.2481786345670949,0.2558150094788344,0.2623523616409481,0.2684792925434636,0.2743838965109887,0.2797623274862107,0.2851217377752736,0.2892734741498748,0.293324134872433,0.2970150933486726,0.3001766941665501,0.3023632033959724,0.3060378951812952,0.3030376441770636,0.2996743118635683,0.2962327321835523,0.2937581086925184,0.2905533503169619,0.2878403569354888,0.2849650901968218,0.2854853479853479,0.2854179419166157,0.2857725595913734,0.2860037928085375,0.2870691513334509,0.2874831763122476,0.2884734513274336,0.2895751058666793,0.2903408944285309,0.2911674325505342,0.2956168125659651,0.3001145475372279,0.3032184540417338,0.3060947468440342,0.3095991561181435,0.3136309561079456,0.3150105708245243,0.3157648817867489,0.3219861486089916,0.3253980288097043,0.3279889152810768,0.3273905996758509,0.336838152459632,0.0,2.20195428747083,50.76902420825982,140.42719206633433,202.98193033528307,fqhc3_80Compliance_implementation_low_initial_treat_cost,93 -100000,95709,47973,456.4147572328621,4934,50.32964506995162,3912,40.27834372942984,1549,15.776990669633994,77.34880342590687,79.7057852194142,63.338894218876014,65.07685245642445,77.15289837635322,79.5151667685108,63.26483857157987,65.00767853229362,0.1959050495536445,190.61845090340057,0.0740556472961415,69.17392413082268,243.02168,170.25810349643837,253917.27005819723,177891.4245227078,486.52925,323.85517070448924,507754.9028826965,337787.5233306055,466.31667,227.2264352137882,483901.3885841457,234754.5376571745,2528.14511,1187.6564883403407,2606532.2278991523,1206134.190381428,912.53682,414.2669291075349,938590.3311078371,418064.9639045821,1501.16102,635.5440742720876,1531606.7454471367,631541.0079957137,0.38163,100000,0,1104644,11541.69409355442,0,0.0,0,0.0,41804,436.15542947894136,0,0.0,42116,436.63605303576463,1108731,0,39792,0,0,9583,0,0,90,0.9403504372629532,0,0.0,1,0.0104483381918105,0,0.0,0.04934,0.1292875298063569,0.3139440616132955,0.01549,0.363054855592169,0.636945144407831,23.648013652386133,4.0606511231892615,0.2957566462167689,0.2934560327198364,0.2062883435582822,0.2044989775051124,11.165677022055648,6.013268527177615,16.482132606816524,11582.141672192569,45.04468138663009,14.19574537643556,13.098420612644,8.906278627681187,8.844236769869354,0.5866564417177914,0.7996515679442509,0.6957649092480553,0.5898389095415117,0.12,0.7721843003412969,0.9238683127572016,0.8722741433021807,0.7743589743589744,0.1470588235294117,0.5072992700729927,0.7084592145015106,0.6279904306220095,0.5310457516339869,0.1126984126984127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391694429536,0.0047743583505656,0.0072954188016843,0.0097217566208514,0.0117435334309419,0.0137730951290273,0.0157583047081248,0.0182811064611615,0.0205610341832302,0.0225474643058185,0.0249267162741118,0.0268999846051213,0.0291780188145787,0.0311431865914425,0.0334842842553718,0.0354319724727982,0.037658290104474,0.0396140278065988,0.041621177620429,0.0437940232567832,0.0583154926635684,0.0720475572487126,0.0853863264363956,0.0988689568099321,0.1114967141696817,0.1259071194329842,0.1372723799821724,0.1480740157144986,0.1579374746244417,0.1674068829385513,0.1797156091780674,0.191835365655735,0.2026494964216571,0.212007874015748,0.2207149222695316,0.2296613080136053,0.2388068035871835,0.246713636159006,0.2540858945839197,0.2609776210000687,0.2668811405691273,0.272553995112083,0.2775661350622308,0.2826110385955668,0.2876509496935494,0.291589728438831,0.2947803604661329,0.2979425958851918,0.3011070778054798,0.3036706427574585,0.3010243863092517,0.2979258241758242,0.2951559818841598,0.2931517127932815,0.2904407946469637,0.2862208093899009,0.2822838004360327,0.2813144372074755,0.281267029972752,0.2823881234647015,0.2829755888331499,0.2845039413418254,0.2846094515436409,0.2846580406654344,0.2847488496932515,0.2857254067519527,0.2880888787861567,0.2920439946103468,0.2958656330749354,0.2988069842774749,0.3026011167097916,0.3063024763524285,0.3104232469993683,0.3110551613641565,0.3145601808250141,0.3213056379821958,0.322381613450563,0.3238075657894737,0.3235048678720445,0.329984544049459,0.0,2.376936917721824,50.7785063201987,148.28199235438578,197.08748771240667,fqhc3_80Compliance_implementation_low_initial_treat_cost,94 -100000,95640,47545,453.0112923462986,5031,51.547469677959015,4021,41.48891677122543,1509,15.391049769970724,77.26744378178137,79.68327584478524,63.28338998351626,65.0698453051802,77.0771224338631,79.4966025884731,63.21196815837225,65.00214841668827,0.190321347918271,186.67325631214737,0.0714218251440073,67.69688849192335,242.26092,169.56350696197384,253305.0188205772,177293.50372435572,480.66426,319.96606729437275,502025.4705144291,334012.1774744274,463.72477,226.3079777953669,481878.0322040987,234258.3982766508,2601.6677,1213.395148969346,2685930.6148055205,1235084.097595272,929.06709,421.0259180232737,958174.8536177332,426973.2936253386,1461.5675,615.3942996322173,1492621.9782517776,614313.2982734893,0.37955,100000,0,1101186,11513.864491844415,0,0.0,0,0.0,41282,431.0644081974069,0,0.0,42007,436.1773316603931,1114702,0,39974,0,0,9687,0,0,72,0.7528230865746549,0,0.0,1,0.0104558762024257,0,0.0,0.05031,0.1325517059675932,0.2999403697078115,0.01509,0.3609208523592085,0.6390791476407914,23.13113045255904,3.9996232529962703,0.3118627207162397,0.2822680925142999,0.2049241482218353,0.2009450385476249,11.610361882838276,6.407142504256062,16.16470246814367,11532.983744240037,46.050351347053166,13.858269909126124,14.354043769325592,9.050120642686156,8.78791702591529,0.5859238995274807,0.8,0.6874003189792663,0.5970873786407767,0.1163366336633663,0.7856540084388186,0.9334763948497854,0.8794520547945206,0.75,0.1623376623376623,0.5024682651622003,0.7070254110612855,0.608548931383577,0.5480769230769231,0.1055045871559633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0045021293855201,0.0069545971410006,0.0092675392244532,0.0116583078159492,0.013881533384935,0.0160287130126231,0.0181114661711707,0.0203887565312528,0.0225189706198605,0.0244297669839186,0.0268318489527155,0.0288868085631693,0.0311076764554353,0.0329070283549582,0.0351711517983603,0.0371920085341729,0.0391198297784005,0.04121244903054,0.0433096315449256,0.0586200409681869,0.0723315562910439,0.0861250551343177,0.0995187802078616,0.1116588898507273,0.1265194189149125,0.137007104701422,0.1472167760634217,0.1572282649383429,0.1663570469798657,0.1789723405402491,0.1905030111346995,0.2003264595462212,0.2091689917391542,0.2187768311207978,0.2288103677447939,0.2375016738829621,0.2461550577725774,0.2538368977886754,0.2601989365603227,0.2656805213143975,0.2709412603931566,0.2761089807319036,0.2812125281788095,0.2851743832786487,0.2896145214195871,0.2933338337962615,0.295848960650944,0.2988532525691802,0.3024747574737675,0.29980735811184,0.2968797292463473,0.2934332478801025,0.2904116320749262,0.2874881037354271,0.2832092866550277,0.2802882711649639,0.2801560886032365,0.2804189481943946,0.2806138818580442,0.2816271541642497,0.2823387511369478,0.2847662710125814,0.2862685635285198,0.2875311960069111,0.2892626536138304,0.2900616004769069,0.2942723828014906,0.2976548827441372,0.301609961138869,0.3054031815688425,0.3093532870122928,0.3122504594714494,0.3205236163209063,0.3238813000471031,0.327933293627159,0.3334871558221812,0.3316388775925172,0.3268635724331927,0.3347791798107255,0.0,2.158868865144837,51.603504968696114,148.38142360280207,208.69012022701224,fqhc3_80Compliance_implementation_low_initial_treat_cost,95 -100000,95840,47442,450.8242904841402,5099,52.065943238731215,4033,41.48580968280467,1520,15.473706176961604,77.40182060844235,79.71579307888285,63.36325590393732,65.07575509406803,77.20554465750656,79.52280122671405,63.28912741908238,65.00530151994313,0.1962759509357852,192.99185216880232,0.0741284848549455,70.4535741248975,242.66462,169.9067268638142,253197.4123539232,177281.45201374494,483.95897,322.43738362792226,504312.1452420701,335783.87750171265,465.65624,227.12516632631872,482482.7942404007,234384.71495302772,2581.8083,1217.9146595594032,2654950.699081803,1232087.9730637835,942.32777,431.2236208235945,964350.699081803,431338.1374038965,1473.91374,631.5970170762637,1501963.6686143572,627862.202329143,0.3808,100000,0,1103021,11508.97328881469,0,0.0,0,0.0,41600,433.3994156928214,0,0.0,42197,436.8948247078464,1114068,0,40045,0,0,9537,0,0,91,0.9494991652754592,0,0.0,0,0.0,0,0.0,0.05099,0.1339023109243697,0.2980976662090606,0.0152,0.3671552048102217,0.6328447951897783,23.237310349885345,4.03525757329565,0.3206050086784032,0.2809323084552442,0.2018348623853211,0.1966278204810315,11.310536295836732,6.227691200907064,16.29533894858712,11576.715001260702,46.43817621940423,14.01111864605569,14.658505173759462,9.006970873867036,8.761581525722047,0.5911232333250682,0.8314210061782877,0.6805877803557618,0.5773955773955773,0.116015132408575,0.7530168946098149,0.9278557114228456,0.8637602179836512,0.6935483870967742,0.1413612565445026,0.5189964157706093,0.7555205047318612,0.6079913606911447,0.5429936305732485,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225804491788,0.0045201633745147,0.0067869171772917,0.0090191657271702,0.011569626172975,0.0142004967628975,0.0164398919635122,0.0187283119003878,0.0205656578046262,0.0228552127899121,0.0248887795477376,0.0270972112453426,0.029377299919824,0.0312184674944914,0.0336754164303027,0.035740855548667,0.0377608479629016,0.0396930734135213,0.0415874697493742,0.0433764530799571,0.0582879669607659,0.0726442116707437,0.0861642601169394,0.0991565391846895,0.1113275902015712,0.1265128952537862,0.1378736837644865,0.1487871250292323,0.1584721614497177,0.1681644369704694,0.1797874857499301,0.1912196914033798,0.2019619345587276,0.2115855257407569,0.2201642245501412,0.2293728276991875,0.2372673439573552,0.2458371279837195,0.2530509935577534,0.2598017898423016,0.2655512903524188,0.2709667617222196,0.2766085743337511,0.2810497442715632,0.2852391357125516,0.2900453157324401,0.2930814622193329,0.2968337060378125,0.2994879222055552,0.3030885995888894,0.3003481323171633,0.2979950563032134,0.2959206607855256,0.2930587557603686,0.2904706213267405,0.2875660325506122,0.2830304751088396,0.2830990519777705,0.283248005714966,0.2838214659964833,0.2845722378547602,0.2858630923134372,0.2865055073187998,0.2869744911563416,0.2871416988601135,0.2881404125523445,0.28857828603699,0.2931800528196365,0.2983753384711518,0.3026719056974459,0.3075220239439801,0.3108920286798819,0.3123791705643904,0.316039156626506,0.319209821840672,0.3207459207459207,0.324181626187962,0.3307276007215874,0.3360433604336043,0.3377458396369138,0.0,2.072118911032734,54.24638871453964,150.63826968584948,199.6738095287379,fqhc3_80Compliance_implementation_low_initial_treat_cost,96 -100000,95716,47684,454.66797609595056,4999,51.402064440636885,3925,40.6306155710644,1403,14.43854736930085,77.32145341825886,79.70813564275963,63.3143933609397,65.08001300545499,77.15439070468409,79.54166166317403,63.2524812270114,65.01989318762348,0.1670627135747651,166.47397958560362,0.0619121339282955,60.11981783150589,242.12628,169.59254803615468,252962.76484600277,177182.61799088411,481.53453,319.9381632822505,502714.3110869656,333885.5958066056,461.07964,224.30652918031413,479380.4379623052,232534.8374711444,2520.69934,1167.337991059678,2610855.6981068994,1197214.8228281245,896.09111,398.68812177840033,928421.7894604872,408859.6680516604,1374.1034,569.2037055722924,1415309.561619792,577108.6226037047,0.38089,100000,0,1100574,11498.307493000126,0,0.0,0,0.0,41419,432.3310627272348,0,0.0,41812,434.4414726900414,1118272,0,40103,0,0,9755,0,0,74,0.7731204814242133,0,0.0,1,0.0104475740733001,0,0.0,0.04999,0.1312452414082806,0.2806561312262453,0.01403,0.3528620822128313,0.6471379177871687,23.52575121855529,4.010351332644992,0.3039490445859872,0.2952866242038217,0.1946496815286624,0.2061146496815286,11.430089647834803,6.102117804233439,14.790258407512908,11573.418969123284,44.80726626018241,14.23227899701063,13.423298824780415,8.353521630032157,8.798166808359198,0.597452229299363,0.813632441760138,0.7015926236378877,0.6047120418848168,0.1273176761433869,0.7765217391304348,0.9225941422594144,0.8955223880597015,0.7976190476190477,0.1065088757396449,0.5232432432432432,0.737151248164464,0.6258741258741258,0.5503355704697986,0.1328125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022797276485369,0.0045532907413041,0.0068722592171512,0.0091970610054775,0.0115578707471919,0.0135787629370059,0.015705151085593,0.0178782928323463,0.0198836626831188,0.0217311196184003,0.0239188828969222,0.0260633818727022,0.0280832416084599,0.0303570508526972,0.0324012427873945,0.0346574577638081,0.0366572408149736,0.0386064323297736,0.0407354638767848,0.0425529697449739,0.0567438848620307,0.0710726846424384,0.0841746248294679,0.0968811162320853,0.1093609883211832,0.1253651102738856,0.1370867604139029,0.1486001512198758,0.158499316122414,0.1684450974294079,0.1807352196719192,0.1916920112995573,0.202070510450423,0.2113742002515448,0.2198359285651447,0.2288781891637611,0.2376056557907179,0.2456741573033707,0.2536665533265329,0.2614442664225223,0.2678224687933426,0.2734006261974858,0.2784872995600965,0.281786941580756,0.2864614936530666,0.2911336351111986,0.2949592642575098,0.2979876848854186,0.3004311235026848,0.3030968794400884,0.3009921194302361,0.2981441377230736,0.2948118834112182,0.2920961704578174,0.289648327556069,0.2862291176740066,0.2829420673987126,0.2839389083297903,0.2840597949014472,0.284630014753195,0.2850987633596329,0.2857564430454456,0.2858602285047119,0.287477443357765,0.2903009392371094,0.2917479389352682,0.2928175224007964,0.2959100588751096,0.3018854748603352,0.3074771509612354,0.3109315760967683,0.3142706409918227,0.3174134355558348,0.3220184184488926,0.3255335080494197,0.3317546767700686,0.3329262707983514,0.3385890438649687,0.3483853311439518,0.3581749049429658,0.0,1.411606960001503,50.85143285720572,144.7988892274328,202.89831080725472,fqhc3_80Compliance_implementation_low_initial_treat_cost,97 -100000,95715,47555,453.565271900956,4843,49.50112312594682,3845,39.69074857650316,1461,14.94018701352975,77.3455376358958,79.73244187003922,63.32130932583449,65.08727279793405,77.16090037684923,79.54904263352442,63.25143297337939,65.01996171470437,0.1846372590465677,183.39923651480208,0.069876352455104,67.31108322968282,241.33868,169.0838410796657,252143.00788800084,176653.4410277027,483.16157,321.4217053848552,504277.7830016194,335297.0959461477,461.7715,224.8720338856552,479341.4616308834,232575.4149029544,2512.36843,1181.0847340620412,2596122.081178499,1205239.0472361075,941.33301,425.9084274846646,969542.3601316408,431169.0563591836,1431.55258,609.93438532352,1465825.6072715877,612221.6541989103,0.38017,100000,0,1096994,11461.045813090946,0,0.0,0,0.0,41612,434.2266102491772,0,0.0,41745,433.0042313117066,1120321,0,40119,0,0,9560,0,0,71,0.7417855090633652,0,0.0,0,0.0,0,0.0,0.04843,0.1273903779887945,0.3016725170348957,0.01461,0.3669887596134885,0.6330112403865116,23.07500776450576,4.044625564458172,0.2970091027308192,0.2803641092327698,0.2072821846553966,0.2153446033810143,11.509838050592018,6.235435433428416,15.568879377372037,11470.056451601546,44.09765095565783,13.206436489817918,12.916984381965174,8.876540588617278,9.097689495257455,0.5903771131339401,0.8191094619666048,0.7057793345008757,0.5934755332496863,0.1304347826086956,0.747008547008547,0.9195652173913044,0.8623853211009175,0.7377049180327869,0.17,0.5218691588785047,0.7443365695792881,0.6429447852760736,0.5504885993485342,0.1178343949044586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022695265402891,0.0042699934073735,0.0067008477587694,0.0088924571637634,0.011139822576707,0.0134650641678549,0.0155717811180681,0.0177077908152323,0.0198073462041884,0.0220681604063408,0.024163111256974,0.0263660640920295,0.0282052337063857,0.0303567380417533,0.0324871001031991,0.0347886319228343,0.0365252341095549,0.0385465641249182,0.0407874621712407,0.0423973409188,0.0577557755775577,0.0714951070176356,0.0849391267842149,0.0974401060572583,0.1097949453609552,0.1255592574964302,0.1366453036798098,0.1471521683564795,0.1575374681974643,0.1663285568614823,0.178464025869038,0.1890885069794137,0.1992707879843273,0.2082973206568712,0.2166974819510477,0.2268703677032671,0.2356308372108593,0.2442409790335643,0.2515709003470726,0.2581545997665209,0.264473227709032,0.2703785931292358,0.2756770174588352,0.2793725246191952,0.284077545131606,0.2888790538713088,0.2913160720081895,0.2953672115762641,0.2983426839491842,0.3014026055894095,0.298872910998834,0.2958243803632283,0.2926494096530835,0.2899421898817912,0.2869429010521338,0.2831039103423072,0.2803713277014248,0.2803640411183133,0.2796956388520069,0.2816806124265622,0.2815613841580827,0.282233402387294,0.2823386725774748,0.2833143952053116,0.2843585995350955,0.2856363494661367,0.2879002550297534,0.2911625871393291,0.2967845434888749,0.3029610061901194,0.3041751297675468,0.3082018927444795,0.3110405380160657,0.3191873589164785,0.3243697478991597,0.3294592030360531,0.3306918622371228,0.3322548028311425,0.3398639455782313,0.3466257668711656,0.0,1.7488874071665332,51.26577622609792,140.92306140246495,194.75055698006588,fqhc3_80Compliance_implementation_low_initial_treat_cost,98 -100000,95620,47656,452.9282576866764,5035,51.443212717004805,4022,41.57080108763856,1534,15.728927002719097,77.23812690061078,79.67180354863933,63.25655152000609,65.05547218022404,77.04100415710188,79.47460493579814,63.18204261388386,64.98286575332631,0.1971227435088991,197.19861284119133,0.074508906122233,72.60642689773533,241.5567,169.35208806590623,252621.52269399707,177109.48344060473,486.46083,323.03372250899463,508270.40368123824,337357.3023520128,464.2442,226.46820342060855,482986.54047270445,234766.9591076745,2595.19347,1225.5931832057245,2685083.905040786,1252747.2737980806,898.83362,409.9628507690823,926468.9186362686,415204.7801391777,1484.84182,636.8031399592878,1524437.6281112735,641602.2860922258,0.38124,100000,0,1097985,11482.796486090776,0,0.0,0,0.0,41903,437.7222338422924,0,0.0,42050,437.1470403681238,1109569,0,39825,0,0,9527,0,0,87,0.9098514955030328,0,0.0,1,0.0104580631667015,0,0.0,0.05035,0.1320690378764033,0.3046673286991062,0.01534,0.3608893956670467,0.6391106043329533,23.351537855138204,4.006870729686636,0.3073097961213327,0.2856787667826951,0.2095972153157633,0.1974142217802088,11.266894557321937,6.203389510471705,16.500553610452414,11574.614874333764,46.30840055480628,14.021657531986998,14.269652741962853,9.31620512755874,8.700885153297685,0.5808055693684734,0.793733681462141,0.7071197411003236,0.5504151838671412,0.1083123425692695,0.7534921939194741,0.9288793103448276,0.8567639257294429,0.7079207920792079,0.1149425287356321,0.5058823529411764,0.7021897810218978,0.6414435389988359,0.500780031201248,0.1064516129032258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432300956705,0.0048684997920744,0.0069856226139225,0.0090971001087586,0.0113682624979645,0.0135700968856016,0.0158804630526798,0.0182037347280676,0.0205388376327148,0.022707486198314,0.0250864430604434,0.0275374529911017,0.0297753213738022,0.0316900682460155,0.0339137079951256,0.0361529308293238,0.0382841089329587,0.0403469589154936,0.0422942799146411,0.0444089756830344,0.0584687114512116,0.0732369275909043,0.0865883638350177,0.09926590624243,0.1112448781312043,0.1269489873739513,0.138862624695896,0.1486179659101811,0.1587327063204185,0.1676585596424888,0.1796717348843734,0.1915954724836289,0.2020268061457993,0.2115142284217793,0.2208287414591139,0.230327104877724,0.2386251789549033,0.2457155098543273,0.2534224769181789,0.2602755453501722,0.2665375066706884,0.2727240756804914,0.2784518853265962,0.2820543632387224,0.2860049216675194,0.2903468893610713,0.2937841058771875,0.2971232562291194,0.300018171906233,0.3026917686876966,0.2994847863616746,0.2962850644427596,0.2921437031188314,0.2902987773999855,0.2877771663965022,0.2845598270283532,0.2810483423443421,0.2819020371923247,0.281741005716633,0.281677057467979,0.2823143900383859,0.2835130970724191,0.2846819295783498,0.2848392721419949,0.2850826605151865,0.2854316359470998,0.2865408733325733,0.2917805207449983,0.2952977836910472,0.2998660256915438,0.3033891384238464,0.3072088724584103,0.3072259032379047,0.3125094425139749,0.3175134933928903,0.3234882091991595,0.3296324081020255,0.3376288659793814,0.3424472116946399,0.3542059600150886,0.0,1.949831126346692,53.231169543452346,149.21778897031206,204.93712732794904,fqhc3_80Compliance_implementation_low_initial_treat_cost,99 -100000,95722,43011,406.15532479471807,6626,68.15570088380937,5237,54.15682915108335,2146,22.022105681034663,77.33641368994157,79.7141095393512,63.332022412709286,65.09032501794454,77.07538136970953,79.45392086480217,63.23590292204863,64.99775955559876,0.261032320232033,260.1886745490276,0.096119490660655,92.56546234577456,112.84394,79.44293305071935,117887.15237876352,82993.39028720603,309.66218,197.48846402376552,322955.9348947995,205768.96013849007,314.37422,151.6152085120711,325409.1326967677,155893.16755572715,3817.87444,1710.0133590944724,3950341.979900128,1748276.5394522375,1303.23012,568.2723614190969,1345671.6742232717,577871.5630622343,2119.11044,875.7118330908261,2177215.060278724,882264.9710794254,0.38038,100000,0,512927,5358.506926307432,0,0.0,0,0.0,26601,277.3343640960281,0,0.0,28989,299.89970957564617,1865594,0,66927,0,0,0,0,0,60,0.616368233008086,0,0.0,0,0.0,0,0.0,0.06626,0.1741942268258057,0.323875641412617,0.02146,0.3268236645605973,0.6731763354394027,25.03443108060193,4.602936169140728,0.3248042772579721,0.2058430399083444,0.2257017376360511,0.2436509451976322,11.043546660048053,5.407225024772525,22.67337571477169,12600.733930643031,58.92649687759537,12.744909279224023,19.201219089368703,13.205666905362364,13.774701603640295,0.54057666603017,0.7755102040816326,0.6866549088771311,0.5854483925549916,0.1057993730407523,0.7304147465437788,0.9173553719008264,0.8953771289537713,0.7578947368421053,0.139917695473251,0.4777636594663278,0.7034965034965035,0.6201550387596899,0.5306577480490524,0.0977734753146176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104049288638,0.0045030882666152,0.0071983349408599,0.0093706805431335,0.011454380842904,0.0135864583545515,0.0158577998959809,0.0179497651623442,0.0198951059675094,0.0217738468153061,0.0239352160319819,0.0256873575491263,0.0278888968871795,0.0302100178190694,0.0323083273140026,0.0342140081038617,0.0362105742746494,0.0379088900185705,0.0401712866244686,0.0421684236843201,0.0569223700423967,0.0719225738948469,0.0852612370744803,0.0981865965834428,0.1098204968747694,0.1265219413207068,0.1392257462686567,0.1505928643590152,0.1616659728671,0.1722375779391913,0.1853442245396528,0.1974673140768457,0.20922170785247,0.2205278336100672,0.2310076156356802,0.2407077688692286,0.2510084464353369,0.2604023828256716,0.2698115774437113,0.2777498169838945,0.2852601891023418,0.2929439252336449,0.3003888107590673,0.3076821794503495,0.3128298453139218,0.3184979137691238,0.3233713314334283,0.3284871899145994,0.3338594902315953,0.3398601398601398,0.3399913800070037,0.3394570011025358,0.3384823733547759,0.3387963110422609,0.3399213606982216,0.3388032666093577,0.3378142458100558,0.3389515266233232,0.3391250706831851,0.3403374892519346,0.3415422184652953,0.3430778371954842,0.3444999160933042,0.3447426742181728,0.3450702528137276,0.3465416361926653,0.3477524542166599,0.3491605955020589,0.3518256939049368,0.3537605571788816,0.3549607752653438,0.3541194255479969,0.3554006968641115,0.3592436974789916,0.361857252494244,0.3628835849975645,0.3641772350086112,0.3617416425918283,0.3618146395769552,0.3618497109826589,0.0,2.160678528187519,57.21912896318517,193.7375103981857,303.8079253492284,fqhc4_100Compliance_baseline,0 -100000,95607,43327,409.87584591086426,6919,71.08266131141025,5364,55.50848787222693,2141,21.95445940150826,77.26635035352784,79.70576381663409,63.26822878755484,65.07272555687923,77.00747404205823,79.44806537488074,63.17285625604522,64.9805607776723,0.2588763114696064,257.6984417533481,0.0953725315096178,92.16477920693931,112.92314,79.4211768173677,118111.79097764808,83070.462222816,311.09507,198.18211227797744,324766.99404855294,206665.8532094694,318.48535,152.97592290727204,330003.1378455552,157527.66443594598,3868.33142,1740.428945730427,4003494.3466482577,1777934.5577107456,1315.87612,579.9741756016281,1359215.915152656,589523.6705701164,2105.062,871.5353328615695,2161260.870019977,878482.44911099,0.38279,100000,0,513287,5368.717771711276,0,0.0,0,0.0,26513,276.65338312048283,0,0.0,29480,305.1763992176305,1861068,0,66754,0,0,0,0,0,55,0.575271685127658,0,0.0,0,0.0,0,0.0,0.06919,0.1807518482718984,0.3094377800260153,0.02141,0.3183137525915687,0.6816862474084312,25.102633216066288,4.437736585262134,0.3325876211782252,0.2129008202833706,0.2281879194630872,0.2263236390753169,11.27140330936259,5.783963557376687,22.619440451074,12748.61964882592,60.567855563875135,13.527047519321412,20.087627528556347,13.589006822341023,13.364173693656346,0.5553691275167785,0.7732049036777583,0.6905829596412556,0.579248366013072,0.1276771004942339,0.7175856929955291,0.9023746701846964,0.847926267281106,0.7454545454545455,0.1889763779527559,0.5012431626056688,0.709043250327654,0.64,0.5310853530031612,0.1114583333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019660302403826,0.0042505706314988,0.006580884966537,0.0088864486741499,0.01096272470023,0.0132494878563347,0.0152575930764206,0.0175960270991079,0.0198903167717115,0.0221026744543498,0.0242212757222763,0.0260060646553939,0.0283605443577443,0.0305292352741032,0.0324023385047617,0.0344467208873988,0.0364957450998683,0.0386369065547719,0.0405703580349708,0.042343714148641,0.0570075480377192,0.0715213883008823,0.0846323529411764,0.0983052275671747,0.1105642282261982,0.1263877118644067,0.1394696285273954,0.1515526492644784,0.163569608871572,0.174583901920122,0.188133124764011,0.2013746598584143,0.213697555875049,0.2243952143044964,0.2346515882988338,0.2456519810106925,0.2560799865944255,0.265725997162226,0.2742954545454545,0.2829690816267997,0.2905150244422306,0.2978636182623158,0.3056585446749031,0.3120263788968825,0.3182663667862136,0.3239287124802528,0.3284788630011656,0.3332568924221576,0.3388125486129116,0.3430880566266969,0.3420375385693305,0.3417925450614819,0.3422911526260134,0.3420455038546653,0.3420813806442014,0.3410407281419509,0.3407617568274397,0.3414313206243729,0.3422007669131744,0.3437936593229446,0.3448872831282225,0.346050723918095,0.3466259606274344,0.3475263311549776,0.3472151684442187,0.347327543228989,0.347678889080163,0.3506431785057981,0.3521534819630428,0.3545407285959931,0.3560331790477063,0.357257460690983,0.3574571191736275,0.3570719034156033,0.3597629796839729,0.3606207795284918,0.366891064871481,0.365814047909054,0.3735568993952721,0.3744343891402715,0.0,2.270997884089315,59.13291570893579,202.2849683334084,306.16009971168467,fqhc4_100Compliance_baseline,1 -100000,95721,42885,404.92681856645873,6521,67.10126304572664,5119,53.03956289633413,2020,20.82092748717627,77.34534288058313,79.71513666023674,63.32656324425341,65.07493495200065,77.10528937132447,79.4723654904684,63.23917629183827,64.9883949311979,0.2400535092586579,242.77116976833213,0.0873869524151373,86.54002080274381,112.73218,79.3415838357415,117771.62796042666,82888.37750936732,307.1165,195.70089230713003,320409.82647485926,204013.62533522423,314.30996,151.0291000220262,325709.3845655603,155662.2038801375,3689.18906,1646.55720372282,3825066.046113183,1691122.756472268,1214.08974,525.3419412308931,1256451.3429654934,536914.5654881308,1999.0627,821.581516585991,2062523.333437804,836341.7758647356,0.37936,100000,0,512419,5353.25581638303,0,0.0,0,0.0,26203,273.2942614473313,0,0.0,28994,300.2684886284096,1866167,0,66986,0,0,0,0,0,51,0.5327984454821826,0,0.0,0,0.0,0,0.0,0.06521,0.1718947701391817,0.3097684404232479,0.0202,0.3283189718124726,0.6716810281875274,25.28093897867352,4.453112058854163,0.3399101386989646,0.2148857198671615,0.2092205508888454,0.2359835905450283,11.044238273233804,5.516472262325975,21.261493849186696,12561.31821513049,57.55412176065319,12.954572824233436,19.64172695891602,11.83463479167673,13.123187185826993,0.5424887673373706,0.7636363636363637,0.6890804597701149,0.5639589169000934,0.1109271523178807,0.730319563522993,0.956639566395664,0.8532110091743119,0.7478991596638656,0.1416666666666666,0.4796663190823775,0.6662106703146374,0.63420245398773,0.5114045618247299,0.1033057851239669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0043581375549834,0.00655411712187,0.0086431037984968,0.0108605015355203,0.0130524643908001,0.01540217934212,0.0178536794504047,0.0198413509700897,0.0218034414633896,0.0237836507903963,0.0258061203532552,0.028018349756228,0.0304319607701737,0.0325693233299966,0.0346196388145177,0.0366212353452918,0.0384300050852558,0.0404154882715022,0.0422363484785327,0.0570112685764414,0.0707064364207221,0.0843834926497592,0.0970382450418222,0.1094404524495373,0.1243809523809523,0.1370386489326695,0.1495500292880345,0.1610386834793759,0.1720021878317943,0.184811299410681,0.1971199653529666,0.2087681309234937,0.2196496989600438,0.230781089980068,0.2419499650841859,0.2508565752614368,0.2607184241019699,0.2700034048348655,0.2783453204452792,0.2861175055236156,0.292854303551804,0.300081650040825,0.3066720979548804,0.3120004858496295,0.3176815666555748,0.3234631557869443,0.3289266283622311,0.3337349865899638,0.3381725472582925,0.3385243912304829,0.3381094746703774,0.3388877905498912,0.3381194997684113,0.337792393309922,0.3368895429044422,0.3364193134881071,0.3378542377328785,0.3384667802385008,0.3381543558413337,0.3382295229018333,0.3399767382261912,0.3401104417670683,0.3397569327872154,0.3403306661525113,0.3425694009601336,0.343424007276655,0.3454408581913992,0.3456353513778493,0.3492308300707873,0.3505173435434614,0.3542608048482271,0.3568595353522634,0.359624341452241,0.358346671688165,0.3630218216318785,0.3654317207593386,0.3704154002026342,0.3651452282157676,0.3646408839779005,0.0,1.7543628366955166,56.97873484973996,190.74267719796237,291.4228210258352,fqhc4_100Compliance_baseline,2 -100000,95656,42840,404.5642719745756,6732,69.0599648741323,5252,54.25692063226562,2109,21.598226980011702,77.2498286400838,79.64864720880564,63.26585613190741,65.0388224698801,76.98466867372986,79.38663126291162,63.16682649355005,64.94430606882517,0.2651599663539485,262.0159458940208,0.099029638357365,94.51640105493198,112.37952,79.05203137350671,117482.98068077276,82641.99984685404,304.73665,194.8979537795153,317974.0633101949,203147.2921505345,314.56344,151.6498835734994,325801.63293468265,156100.13425477606,3767.43745,1714.6677080476688,3893417.9141925233,1747426.2963616175,1285.95716,570.6791780777162,1325190.7355523962,577430.0285164714,2072.25104,875.1956041836273,2124430.7309525805,877870.7048715389,0.37874,100000,0,510816,5340.135485489671,0,0.0,0,0.0,26086,272.05820858074765,0,0.0,29139,301.4029438822447,1861113,0,66882,0,0,0,0,0,46,0.4808898553148782,0,0.0,0,0.0,0,0.0,0.06732,0.1777472672545809,0.3132798573975044,0.02109,0.3317328061008332,0.6682671938991668,24.940817448306326,4.492027930951029,0.3333968012185834,0.2121096725057121,0.229055597867479,0.2254379284082254,11.036786383736704,5.6064233988060765,22.64158624600029,12634.766986186603,59.67215797579141,13.149942847519991,19.915413838365367,13.424368568978238,13.18243272092782,0.5561690784463061,0.7639138240574507,0.7081667618503712,0.5660847880299252,0.1258445945945946,0.7328358208955223,0.923728813559322,0.8864142538975501,0.738831615120275,0.1707317073170731,0.4956543967280163,0.6894736842105263,0.6466973886328725,0.5109649122807017,0.1140724946695096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022286154220187,0.0045838530733112,0.0066280285421382,0.008605974395448,0.0109143432576212,0.013189253050333,0.0153464942692825,0.0175728799714096,0.0197790959296379,0.0221116129494781,0.0242171232806457,0.0259887005649717,0.0280084375160775,0.0297255233403077,0.0319643188998327,0.0338408075459209,0.0359463240246619,0.0381860088456986,0.0404303133713429,0.0424065481466034,0.0570804643338522,0.0712430621007435,0.0845849470491304,0.0974228919592966,0.1095608489620162,0.1253572108973137,0.1379189499171658,0.1497948526669153,0.1616029783045915,0.1722548693101855,0.1850053413615616,0.1977853935752554,0.2089299931290966,0.220540161039075,0.2312244019297219,0.2433345558408073,0.2530429427243715,0.2621951907561413,0.2708933389496692,0.2790866047623425,0.2869389461945916,0.2941211031597748,0.3020014508437489,0.3087107762304257,0.3150225582246067,0.3213158969156346,0.3263316582914572,0.3310198499431215,0.3366491125414472,0.3410115040025446,0.3407181984175289,0.3404840180125424,0.3403183586841174,0.3400313607061966,0.3393550313526425,0.3388619035907526,0.3376225198176301,0.3391082172587158,0.3394717421525048,0.3402424786708576,0.3419024105241335,0.3431319937193171,0.3434026608285618,0.3451504715600873,0.3451807374766966,0.3476430756359643,0.3468206444254348,0.3508512910724383,0.354162283470089,0.3550540368722187,0.3582014911802146,0.3599047870933615,0.3608370514673537,0.3662914511712808,0.3654314055773909,0.36790007070469,0.3691275167785235,0.3712306438467808,0.3754463059599011,0.3722074971601666,0.0,2.5638179349318717,58.69686679110017,205.55501408010937,289.28627620275853,fqhc4_100Compliance_baseline,3 -100000,95742,43009,406.35248898080255,6769,69.37394247038917,5298,54.71997660378935,2088,21.38037642831777,77.32698317968122,79.68561262027855,63.31555014592704,65.06101065936186,77.06321091480534,79.42591541681102,63.2177580815361,64.96782812793246,0.2637722648758824,259.6972034675247,0.0977920643909371,93.1825314293917,111.63922,78.58697853742888,116603.9982452842,82081.80165176082,308.49146,197.22814138990915,321630.1518664745,205418.5429486632,316.19862,152.38419530299697,326670.9490087945,156350.4610615413,3804.40671,1714.989967168491,3930837.135217564,1748496.3204951747,1275.27329,556.2578770577773,1316372.8875519626,565380.206239453,2054.36702,862.5258206317303,2105715.6942616617,866349.9829336327,0.38108,100000,0,507451,5300.1817384220085,0,0.0,0,0.0,26432,275.4381567128324,0,0.0,29318,302.60491738213113,1867575,0,67010,0,0,0,0,0,48,0.5013473710597229,0,0.0,0,0.0,0,0.0,0.06769,0.1776267450404114,0.3084650613089083,0.02088,0.3330527497194164,0.6669472502805837,24.840398072691546,4.512361835122459,0.3269158172895432,0.2142317855794639,0.2348055870139675,0.2240468101170253,11.031166821322229,5.505916119824826,22.33741097595477,12629.37732916191,59.74228339070066,13.369726516716698,19.586931100505968,13.72064961098187,13.06497616249612,0.5571913929784824,0.7744493392070485,0.7084295612009238,0.5667202572347267,0.1187868576242628,0.7166293810589113,0.9270833333333334,0.8431818181818181,0.6944444444444444,0.148471615720524,0.5031589588071772,0.6964047936085219,0.6625386996904025,0.5282426778242678,0.1116910229645093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019654526113165,0.0041471476952404,0.0063841016584454,0.0084931729518855,0.0109941520467836,0.0130848734789471,0.0152037361830566,0.0173121286977114,0.0196230734638812,0.0217295626452134,0.0238185526437158,0.026022152191096,0.0279179729660276,0.029985069247799,0.031844439859707,0.033861351354144,0.0360803395796666,0.0382445076032612,0.0400789938675813,0.0420486747791298,0.0566796124613714,0.0709562670014647,0.0845172316176856,0.0970953397180492,0.1091305814394738,0.1244990959938252,0.1369175779302737,0.1486450513762444,0.1597986082160151,0.1704432017002458,0.183876948282924,0.1968157695223654,0.208690163987943,0.2200838101907064,0.2302086200253206,0.2409049593189527,0.2513741174367682,0.2609033566118495,0.2700049984095969,0.2786704871060172,0.2863727431701583,0.2948597802403767,0.302076912134288,0.3088392417676082,0.3148116605022387,0.3207502930832356,0.3267304389253162,0.3325431419030868,0.3369568037358931,0.3413432323178948,0.3414361365259455,0.3409920520131685,0.3412987086223425,0.3407962719076081,0.3414100522406941,0.3409855197088586,0.3411309136499976,0.3417507032753714,0.3426238208556607,0.3444444444444444,0.3443969396939694,0.3451504354711006,0.3458915642364034,0.3468490692980489,0.3466402780459548,0.3482460732984293,0.3499742813053666,0.3532581295689438,0.3548534476699234,0.3581064994841679,0.3599308525156947,0.3616694065864135,0.3646127755794234,0.3648013345465575,0.3674885159838755,0.3674072323327818,0.3613625901488415,0.3592705167173252,0.3629032258064516,0.3752432853250292,0.0,2.4071000523952435,58.87996157573828,195.6445209361963,304.19287895396315,fqhc4_100Compliance_baseline,4 -100000,95763,43126,407.77753412069376,6624,67.96988398441987,5234,54.11275753683573,2116,21.741173522132765,77.39144353273707,79.73115725257988,63.36142006586866,65.0877290858307,77.13502881941264,79.47401109622699,63.26743586402806,64.99567817214803,0.2564147133244319,257.1461563528885,0.0939842018405983,92.05091368266947,113.4826,79.90759402587744,118503.59742280422,83443.07720714415,312.74155,199.89246063760532,326038.4699727452,208196.58572366356,321.16154,154.92083075214478,331758.4140012322,158961.2023021935,3768.65956,1694.7846896199087,3898271.837766152,1732962.5019047055,1282.11335,559.5455370625338,1323440.368409511,569038.8211358441,2078.9097,859.7515642269776,2137217.610141704,870074.6366747065,0.3803,100000,0,515830,5386.527155582009,0,0.0,0,0.0,26731,278.57314411620354,0,0.0,29681,306.40226392239174,1860619,0,66753,0,0,0,0,0,68,0.710086359032194,0,0.0,1,0.0104424464563557,0,0.0,0.06624,0.1741782803050223,0.3194444444444444,0.02116,0.3258877434135166,0.6741122565864834,25.06551801653198,4.498162218422366,0.3316774933129537,0.2136033626289644,0.2264042797095911,0.2283148643484906,11.27727434567813,5.7946995464485935,22.21292590964832,12616.741315389603,58.83168462795071,13.175334836276283,19.704902533882876,13.00387850229952,12.947568755492046,0.5527321360336263,0.7799642218246869,0.6952764976958525,0.560337552742616,0.1255230125523012,0.732089552238806,0.9402985074626866,0.859375,0.714859437751004,0.1659751037344398,0.4910118130457113,0.6899441340782123,0.6381987577639752,0.5192307692307693,0.1153039832285115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021768184027215,0.0045603332083464,0.0066962926888658,0.0088664547384243,0.0108590659983121,0.0129468284341665,0.0155288363562258,0.0174975003570918,0.0196038369990499,0.0216910861913726,0.0236782786885245,0.0258843565331582,0.0280412244017221,0.030114343937507,0.0318939479842076,0.0336538958154717,0.035653298835705,0.0375444673767618,0.0395721591617812,0.0416354166666666,0.0571977287909151,0.0712439705774643,0.0838193949057949,0.0965411351470727,0.1082782399645715,0.1237746782704326,0.1375013256973168,0.1496068856191418,0.1608620892206807,0.1724448446645655,0.1858522354157022,0.1988427428077006,0.2115560193035085,0.2220644146309487,0.232801266407229,0.2441242862833621,0.254302657392545,0.2635138171197483,0.2727159374291544,0.2808466819221968,0.2879761464497041,0.2954911997756118,0.3021594645095674,0.3086082560674669,0.3142812079152663,0.3203367301727957,0.32553866919962,0.3312895921845981,0.33638352121973,0.3403770102820986,0.3397375568044314,0.3388326442023709,0.3374212421242124,0.3376115830004471,0.3380739114960256,0.3378694158075601,0.3367672618107126,0.3382092779452234,0.3391301382708472,0.3388624324468939,0.3403704814759262,0.3405425727684666,0.3420881358778946,0.3421525066199901,0.3433073911151931,0.3430876843677137,0.3428359019815286,0.3458487405581366,0.3492843258526241,0.3524125259626138,0.3532865464886932,0.3545327903986284,0.3563664102727099,0.3599111519607843,0.3626611461371977,0.3602125147579693,0.3631284916201117,0.3652995577000402,0.3633894622487778,0.3541270445036135,0.0,2.103313339566635,58.840605734556,189.05402130778756,302.0918509777302,fqhc4_100Compliance_baseline,5 -100000,95735,42957,405.525669817726,6671,68.53292944064344,5181,53.61675458296339,2076,21.34015772705907,77.37264048070351,79.72984680126869,63.34029949113111,65.08107559731144,77.11422476808389,79.47064672487095,63.246006149893525,64.98865263676194,0.2584157126196231,259.20007639774667,0.0942933412375879,92.4229605494986,112.70732,79.29304139255005,117728.43787538518,82825.55114905734,307.6072,196.84245575531045,320744.56572831253,205045.24547481103,314.96458,151.64003654861244,324971.1913093435,155387.01050453953,3765.63454,1695.996925527179,3900390.525930956,1738656.2449444684,1243.2785,542.8475652546181,1286449.5325638482,554861.0144387421,2048.59802,848.6121967254762,2108518.744450828,862472.8081931565,0.3808,100000,0,512306,5351.292630699326,0,0.0,0,0.0,26326,274.4868647829947,0,0.0,29136,300.3917062725231,1866000,0,66958,0,0,0,0,0,46,0.4700475270277328,0,0.0,0,0.0,0,0.0,0.06671,0.1751838235294117,0.3111977214810373,0.02076,0.3270735524256651,0.672926447574335,24.88980499709644,4.5282160762410895,0.3198224281026828,0.2113491603937463,0.23605481567265,0.2327735958309206,11.304204071376972,5.780752276166302,22.003537834540666,12657.659755947972,58.49014640883584,13.071541774549084,18.55478430966861,13.771828438057122,13.09199188656102,0.5525960239336035,0.7863013698630137,0.7006638503319251,0.5829926410466068,0.1061359867330016,0.7130177514792899,0.9221105527638191,0.8829268292682927,0.6996587030716723,0.1195219123505976,0.4959519456777226,0.7087517934002869,0.640737770649559,0.546236559139785,0.1026178010471204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582278481012,0.0043780973518591,0.006827150349473,0.0089372765680857,0.0112761695594261,0.0132337072703951,0.0154835684579629,0.0174539664393908,0.0195342846628777,0.0215889199398089,0.0236532901347222,0.0256568207718606,0.0276292518405791,0.0297740427197264,0.0319002960991261,0.0341170998914784,0.036040046797188,0.0381184524426926,0.0402024674420296,0.0422659903552717,0.0568630317205086,0.070416640508925,0.0838767850028308,0.0968501371561899,0.1094291888473093,0.1245348443843031,0.1368462362512065,0.1496663793378667,0.1611136028705068,0.1724089861133451,0.1865005438118518,0.1986001276545106,0.2103197042192257,0.2209658370150037,0.2311627446450377,0.2420325014123824,0.252173524849053,0.2615930199831128,0.270891309533275,0.2783574901385194,0.2867644505157384,0.2948068212408853,0.3019552079630287,0.3086625702078633,0.3145511362945489,0.3209897863521981,0.32683323940134,0.3312762437969207,0.3357810759706789,0.3405875521300744,0.3404876997859076,0.3405072174595093,0.3410647352253191,0.3416961897187477,0.3425494891205735,0.3426057903045351,0.3417476958160453,0.3428378911385748,0.3439591585848928,0.3454114459871317,0.3466053536713025,0.347361573791173,0.3483275421777536,0.3499988840033033,0.35051397828802,0.3510137157431746,0.3528090526555214,0.3558068861806447,0.3577272727272727,0.3593897824030274,0.3600616109450031,0.3607400339270568,0.3629704470825966,0.3632973055259552,0.3616602642181205,0.3631946913141367,0.3659620098039216,0.3740349451442503,0.3708298869589192,0.3700575815738963,0.0,1.9942477373303087,59.98921701688456,190.2938499691239,290.85556911974163,fqhc4_100Compliance_baseline,6 -100000,95744,42733,403.7224264705882,6537,67.11647727272727,5146,53.18348930481284,2057,21.171039438502675,77.33281654085012,79.69852020554151,63.319784280511655,65.07096006667592,77.07146731345536,79.43557611702302,63.22269425579494,64.97528111432848,0.2613492273947599,262.9440885184948,0.0970900247167136,95.67895234744128,113.21464,79.59455691678647,118247.24264705884,83132.68394550726,305.62398,195.3716881857316,318612.0592413101,203462.89611102745,311.62435,149.9806063538947,321452.2058823529,153596.82257920707,3729.59106,1687.5552648736318,3856529.516209893,1724316.8612109348,1259.8437,557.1482340585065,1298381.705381016,564650.0366687473,2027.0306,857.7427824442765,2087130.4311497323,870446.5183550991,0.3784,100000,0,514612,5374.874665775401,0,0.0,0,0.0,26162,272.6228275401069,0,0.0,28761,296.404996657754,1864472,0,66962,0,0,0,0,0,47,0.4908923796791444,0,0.0,0,0.0,0,0.0,0.06537,0.1727536997885835,0.3146703380755698,0.02057,0.3325090909090909,0.6674909090909091,24.980488705191544,4.501565062137734,0.3153905946366109,0.216867469879518,0.2370773416245627,0.2306645938593082,10.78050907829884,5.350739364770962,22.094071486354963,12522.306983123772,58.15781141653838,13.16382992498114,18.40819561683345,13.448908690813507,13.13687718391026,0.5433346288379324,0.7634408602150538,0.6820702402957486,0.5737704918032787,0.1154170176916596,0.7020946470131885,0.8944591029023746,0.8740359897172236,0.7211895910780669,0.1269841269841269,0.4902774176821364,0.6960651289009498,0.6215559157212318,0.5320715036803365,0.1122994652406417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0043207935654661,0.0066098081023454,0.0086398796515587,0.0108248891059292,0.0129868807040417,0.0151745377782763,0.0172026544155181,0.019375881883806,0.021687265131424,0.0236625725358321,0.0256497140334124,0.0276898083408735,0.0297734294541709,0.0318293903407859,0.0338404928267251,0.0359465617232808,0.0378165213781652,0.0399492575801688,0.0416697050826622,0.0557788472580358,0.0696358138999612,0.0825372523934859,0.0954478553406223,0.1079676613506761,0.1231639612964627,0.1358709485830646,0.1485305544615581,0.1596453749198889,0.1701449959246707,0.1839844086484624,0.197117725339998,0.2084937466014138,0.2191265554267719,0.2298019801980198,0.2404868432710197,0.2504687709272735,0.2608318793268419,0.2694988760473195,0.2776899640345451,0.2854099366656246,0.2930677066863427,0.2999632601301302,0.3062850150557242,0.3128701552980092,0.3187692079831155,0.3240100250626566,0.3285828907652924,0.3335667146394907,0.3378399809689953,0.3376385256289266,0.3371319121963319,0.3373220257665768,0.3363785090703768,0.3362483798399952,0.3356702359402325,0.3354215568102519,0.3362267376865917,0.336947228017374,0.3387289846527666,0.3389483952053124,0.3391866180434438,0.3396574882471457,0.3398795261661105,0.3400978525463353,0.3417903428093645,0.3422887847261918,0.3446884946270444,0.3489255442619491,0.3493947116916215,0.3521699406121517,0.3550450402430574,0.360932577189666,0.362957885918818,0.3641396134359166,0.3672430127901468,0.3715421060675531,0.3705882352941176,0.3640629312724261,0.3636016787485692,0.0,2.1150213804568314,56.773931311645406,199.00106329436744,287.6013363142188,fqhc4_100Compliance_baseline,7 -100000,95790,43377,410.1367574903434,6708,69.09907088422591,5206,53.87827539409124,2103,21.682847896440126,77.34910350822409,79.67862572348635,63.34642956891118,65.06713768254937,77.08444356608328,79.41189829340505,63.24887628018061,64.97098105577611,0.2646599421408098,266.7274300813034,0.0975532887305661,96.15662677326496,112.83492,79.45613415961304,117794.0494832446,82948.25572566348,310.00218,198.54683457544897,323173.3479486376,206819.5057682942,319.21602,154.0905359080532,330282.7226224032,158581.87097490925,3728.19321,1688.2289404266144,3861336.20419668,1732023.6381252576,1258.20155,554.1621246487142,1301576.0622194384,566712.7989993702,2058.55288,865.949198569116,2123591.1681803945,880913.0739224679,0.3811,100000,0,512886,5354.2749765111175,0,0.0,0,0.0,26481,275.96826391063786,0,0.0,29372,303.7164630963566,1862630,0,66905,0,0,0,0,0,55,0.563733166301284,0,0.0,0,0.0,0,0.0,0.06708,0.1760167934925216,0.3135062611806798,0.02103,0.3215497737556561,0.6784502262443439,24.75283901783708,4.4780262041609245,0.3255858624663849,0.2224356511717249,0.2270457164809834,0.2249327698809066,10.968302023351509,5.539525211384715,22.795066753412563,12655.31072585595,59.18769555208577,13.671301115142755,19.23808483974133,13.222439959676995,13.055869637524705,0.5482135996926624,0.7495682210708118,0.6902654867256637,0.5744500846023689,0.116994022203245,0.6980306345733042,0.900990099009901,0.8378378378378378,0.6953125,0.1610486891385767,0.4946544980443285,0.6684350132625995,0.6378896882494005,0.541036717062635,0.1039823008849557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607096565132,0.0048145632937694,0.0068782907751772,0.0087860966369056,0.0106967096433074,0.0127448186001058,0.0150431113557145,0.0171965096698474,0.0194341415565705,0.0214953653495938,0.0235421874359709,0.0255305175881459,0.0276650189606092,0.0295909755244035,0.0317239388409472,0.0337636851890105,0.0359674265078691,0.0378054976617828,0.0397655835991645,0.04194522545038,0.0567904326591947,0.0710057314981383,0.084168588802684,0.0976365871856577,0.1099976818191397,0.1249471682163989,0.1380198397558183,0.1505614154474311,0.1624410440275732,0.1730849570983257,0.186675419150722,0.198944670912492,0.2115556038699858,0.2216864571715978,0.2319031903190319,0.2430235648476258,0.2533392847179602,0.2622069818427118,0.2715938740782757,0.2796391900090431,0.287315374917591,0.2957810745039311,0.3029165976184276,0.3086677213672755,0.3147875946014893,0.3203611649048365,0.325871830844774,0.3313118701507179,0.3364294424409101,0.3412628099173553,0.3405555630506051,0.3409363579948976,0.3410184414375009,0.3412301013024602,0.3414699451113392,0.3410428545153577,0.3393601343749505,0.3399756666995495,0.3411342057993328,0.3419663152619427,0.3431247419197417,0.3433353826626737,0.3440848917839882,0.3447121970938981,0.3443412203028983,0.3450094458438287,0.3473644945625663,0.3503693605148854,0.3555005305978068,0.3581605699191547,0.360639955991565,0.3631362495326604,0.3672442349343865,0.3690430511856342,0.3708634461772537,0.3692196531791907,0.3744555071561916,0.3822441430332922,0.3836111111111111,0.3720379146919431,0.0,1.8157978967119883,60.93353808738652,196.69099975153787,288.4519694960935,fqhc4_100Compliance_baseline,8 -100000,95664,42945,405.09491553771534,6690,68.65696604783409,5266,54.419635390533536,2117,21.742766348887773,77.31532774038504,79.70693526834188,63.31028192710126,65.0761774240359,77.0478238364956,79.44094090236015,63.211691094766174,64.98114599129002,0.2675039038894482,265.9943659817259,0.0985908323350841,95.0314327458841,112.3144,79.0478645899392,117405.08446228466,82630.73318065227,310.63419,198.41730218044933,324036.9208897809,206733.76837728856,315.20351,151.5788728470898,325547.5623013882,155417.51669057325,3820.24143,1718.5756284166807,3951832.5075263423,1755156.0917600968,1262.65015,551.6807372473806,1305371.4563472152,562268.3164764676,2091.16842,872.4636928724389,2150443.6360595417,881119.5985550366,0.3784,100000,0,510520,5336.594748285666,0,0.0,0,0.0,26478,276.1540391369794,0,0.0,29136,300.62510453253054,1865457,0,66900,0,0,0,0,0,58,0.5958354239839438,0,0.0,0,0.0,0,0.0,0.0669,0.1767970401691332,0.3164424514200299,0.02117,0.3202614379084967,0.6797385620915033,24.970837219565,4.542402968910516,0.3239650588682111,0.2117356627421192,0.2312951006456513,0.2330041777440182,11.0061711001742,5.367681567513574,22.547296916955585,12624.133176416788,59.30030812065573,12.979802015661216,19.224743027675373,13.60972469147126,13.486038385847875,0.546524876566654,0.7793721973094171,0.7057444314185228,0.5541871921182266,0.1059494702526487,0.7269260106788711,0.929503916449086,0.8520286396181385,0.7391304347826086,0.1545064377682403,0.4867256637168141,0.7008196721311475,0.6581196581196581,0.5,0.0945674044265593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0042884081185749,0.0068704459193407,0.0090626460488082,0.0113932291666666,0.0136287242169595,0.0157684305005915,0.0180583218426025,0.0199212558163317,0.021955065844717,0.0241833752115276,0.0261125035953486,0.0283938932554215,0.0306146633005306,0.0327941616689203,0.0348140869835031,0.0366490519117189,0.0388296105621522,0.0407564598676819,0.0429317407210531,0.0572992853262005,0.0715594601103653,0.0844511619119591,0.0972165219679031,0.1098563603550358,0.1258257113821138,0.1387189942235814,0.150518736285976,0.1621364515749757,0.173033370184722,0.1866067386664942,0.199690301901503,0.211255646873129,0.2217638239896696,0.2327261514063567,0.2431236413646244,0.2528229814705192,0.2621177847552809,0.2707268887526398,0.2780911112639567,0.2855653745034224,0.2936004308528075,0.3004595305208802,0.3066314589209626,0.313346298772335,0.319301620181993,0.3245456936390847,0.3291583931571712,0.3340974137819392,0.3394257943530281,0.3390294192957158,0.3396117227220744,0.339050410812182,0.3398897138639225,0.3401508277677788,0.3386169576747965,0.3371529098516546,0.3378957215302053,0.3380695904932889,0.3378612665105721,0.3398778522986998,0.3417263341113177,0.3430371770636421,0.3435432876650895,0.3451064651634397,0.3457765453736887,0.3476277895703057,0.34940638689607,0.351478828285694,0.3524214922496185,0.3549500621346712,0.3567831118731247,0.3580986364215623,0.3586174901414985,0.3612145517043827,0.3615717375630858,0.3613754989253914,0.3641129032258065,0.3684794672586015,0.359141433499425,0.0,2.5039216957200696,57.31091419264322,198.1800797540109,300.8379158390007,fqhc4_100Compliance_baseline,9 -100000,95628,43141,407.88262851884383,6725,69.18475760237587,5208,53.87543397331326,2069,21.217635002300582,77.3146043072854,79.73416358294702,63.296484254502126,65.08307049386359,77.06067622115825,79.48044548228111,63.20326004775362,64.99250811806833,0.2539280861271606,253.71810066590683,0.093224206748502,90.56237579525828,111.6973,78.55689615379733,116803.5094323838,82147.9988787147,307.37972,196.62040637421376,320842.7343455892,205021.45317866653,318.27766,153.42302295206764,329336.3554607437,157717.6308562336,3741.49063,1671.0093634948578,3874808.926255908,1709794.1496401895,1217.24887,528.1939968630041,1259299.891245242,538809.8988312864,2034.14834,837.178967604181,2089706.6131258623,845262.2082948617,0.38011,100000,0,507715,5309.250428744719,0,0.0,0,0.0,26236,273.737817375664,0,0.0,29297,302.90291546409003,1867819,0,67004,0,0,0,0,0,65,0.6692600493579286,0,0.0,0,0.0,0,0.0,0.06725,0.1769224698113704,0.3076579925650557,0.02069,0.3207360226468507,0.6792639773531494,25.01486681657072,4.495621460883849,0.3198924731182795,0.2229262672811059,0.2325268817204301,0.2246543778801843,11.181156751589176,5.6887804554901065,21.788816651479586,12628.753387537572,58.5380037230508,13.779202229428334,18.659617902847497,13.427734870117233,12.67144872065774,0.5564516129032258,0.7708871662360034,0.6962785114045619,0.5920726672171759,0.1076923076923077,0.7300380228136882,0.8973105134474327,0.8791469194312796,0.7244094488188977,0.1652173913043478,0.4978165938864629,0.7021276595744681,0.6342443729903537,0.5569487983281086,0.0936170212765957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020163537434265,0.0042388780156372,0.0063852682015673,0.0086673779403546,0.0109049479166666,0.0131391322061519,0.015411919503065,0.0176728981509858,0.0196479528694602,0.0215870805214488,0.0237030503189809,0.0255372478119735,0.027900373445264,0.0299836171988501,0.0321331984557897,0.0342656258077857,0.0362227241643699,0.0383824750830564,0.040224742482572,0.0423550271172298,0.0571327034032945,0.0712961314044478,0.0848165999852986,0.0976315789473684,0.1101435507705298,0.1256074964264916,0.1383247652632026,0.1501992711152788,0.1618140977644667,0.1725889960684899,0.1855467696523155,0.1979322452695233,0.2103216106680611,0.2211426818848993,0.2319883614561405,0.242631064944289,0.252707460184409,0.2615656759131983,0.2711902922328773,0.2793173059276931,0.2872791273939927,0.2950838851580598,0.3015660696741202,0.3080049393964825,0.3129394620195518,0.3187682525599793,0.3244761368611997,0.3298152363271067,0.3343729778698072,0.3394304114867896,0.3396447472965511,0.3396805305229558,0.3396298228055089,0.3393332561639078,0.3392841189958607,0.3390376793799401,0.3381269841269841,0.3378759166186043,0.3390426828221806,0.3397142038535921,0.3414583841149007,0.3429642786658772,0.3448672381350617,0.3456483840686603,0.3479168165791177,0.3497897523750194,0.3502102511649051,0.3530866516403707,0.3566406659904159,0.3585226822896049,0.3620830311820159,0.3637471520161077,0.367105429692444,0.3644959585176147,0.3689311253293187,0.3662595785440613,0.3712640099626401,0.373305954825462,0.3691627521414755,0.3666146645865835,0.0,2.187916782081994,58.04268037796604,188.66857300701724,301.59195617489894,fqhc4_100Compliance_baseline,10 -100000,95652,43005,405.8984652699369,6733,69.12558022832769,5233,54.18600761092293,2078,21.400493455442646,77.29129418892526,79.69292559476564,63.29829466637945,65.0706375834224,77.03995750987535,79.43930831455016,63.20582124285336,64.97940454350898,0.2513366790499134,253.61728021547947,0.0924734235260942,91.23303991341912,112.68708,79.24616881440693,117809.43419897128,82848.4180303673,306.26662,195.6838732809937,319696.0962656296,204086.65086040413,315.20555,152.3715366353819,325984.3286078701,156564.72788553545,3756.08411,1695.7322970799246,3895073.6942248982,1741065.6097937564,1218.52407,530.8019019851108,1263140.216618576,544156.6428146934,2045.48924,853.4213272602998,2108953.7280976875,866935.6808770761,0.37935,100000,0,512214,5354.974281771421,0,0.0,0,0.0,26150,272.86413248024087,0,0.0,29109,300.9137289340526,1863917,0,66888,0,0,0,0,0,60,0.6063647388449798,0,0.0,0,0.0,0,0.0,0.06733,0.1774878080927903,0.3086291400564384,0.02078,0.3137199434229137,0.6862800565770862,25.05338626121881,4.490560431954142,0.3294477355245557,0.2157462258742595,0.2287406841200076,0.2260653544811771,11.139951993324324,5.619423040206857,22.13547103717812,12587.850788136822,59.01468596127864,13.295833376277969,19.379089349849885,13.245373159151304,13.094390075999474,0.5526466653927001,0.7608503100088574,0.7047563805104409,0.5747702589807853,0.1098901098901098,0.7103235747303543,0.9209809264305178,0.8523002421307506,0.7122302158273381,0.1416666666666666,0.5006353240152478,0.6837270341207349,0.658276125095347,0.5331882480957563,0.1018027571580063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023398802710614,0.0045523674338436,0.0065771444231296,0.0088608881211259,0.0112321826450569,0.0135560421653001,0.0157330179252401,0.0179304429513754,0.0199063471290691,0.0220547580529559,0.0242124046271228,0.0262617340755499,0.0284756085015328,0.030665553803827,0.0325284662792018,0.0347513109311489,0.0366962018757448,0.0388313225491621,0.0408694114097241,0.0427117866599945,0.057286768240433,0.071176427456608,0.084424516711644,0.0971232487395134,0.1097894347986701,0.1250264617468987,0.1377205460837809,0.1501001235567295,0.1613586067545463,0.1724334131337964,0.1861974533967288,0.1988890452936017,0.2106282927678843,0.2214144156967513,0.2323538488669429,0.2430597917105686,0.2528962920758342,0.2617643085513577,0.2702800894651392,0.2787550279041518,0.2857027089604075,0.2924506224843209,0.2986983762273045,0.3052406827641633,0.3115581556574514,0.3175798269541712,0.3237362279239418,0.3286269512583625,0.3335710673392378,0.3385354775674034,0.3383284370536075,0.3381803646989098,0.3385227737865037,0.3381403295398604,0.3383329857904614,0.3369800709884605,0.3356455760500333,0.3367656265445319,0.3385741718674988,0.3390319516871852,0.3404663407295976,0.3405530960274761,0.3411381087619649,0.3419056595305417,0.3432217673970623,0.3447222802255168,0.3442249672681732,0.3462530673881583,0.3464627959413754,0.3499022619380061,0.3532824706473571,0.3554504887377815,0.3553248068886919,0.3573076923076923,0.3615077098800685,0.3569534827669318,0.3595628415300546,0.3595833333333333,0.3576065481230595,0.3583301120989563,0.0,2.072033237245708,57.17127364751428,201.47303507590965,294.8022546232025,fqhc4_100Compliance_baseline,11 -100000,95626,43362,409.8676092276159,6718,69.08163051889653,5290,54.6713236985757,2183,22.378850940120888,77.27514686010801,79.6859733071698,63.27600815666828,65.05627862526497,76.99778109649641,79.41230580466822,63.17370442242672,64.95897598964856,0.2773657636115985,273.66750250158134,0.1023037342415591,97.30263561640128,111.28282,78.31290397040276,116372.97387739737,81894.99087110488,310.03029,198.76399387921785,323530.68203208334,207174.98784767516,322.48265,155.77541657305107,333906.77221676114,160319.32517931098,3820.44356,1726.4916876366856,3951133.216907536,1761402.5240381106,1302.15128,561.6656587757335,1344966.9964235667,570611.0459244695,2153.10044,900.4337579558188,2209791.228327024,905105.3390564852,0.38216,100000,0,505831,5289.680630790789,0,0.0,0,0.0,26395,275.3748980402819,0,0.0,29730,307.5000522870349,1864057,0,66899,0,0,0,0,0,75,0.7738481166210026,0,0.0,0,0.0,0,0.0,0.06718,0.1757902449235922,0.3249479011610598,0.02183,0.3285734483246147,0.6714265516753852,24.761331279693863,4.509161242504809,0.3168241965973535,0.2232514177693761,0.2251417769376181,0.2347826086956521,11.015664156741886,5.469277391201151,23.347153000236688,12672.554323377968,60.11527504079507,14.028696647750252,18.92808314146072,13.38429078396113,13.77420446762298,0.5487712665406427,0.7696867061812024,0.7004773269689738,0.5608732157850546,0.1223832528180354,0.7037037037037037,0.9106699751861044,0.8649885583524027,0.7153284671532847,0.1064638783269961,0.4942499361104012,0.6966580976863753,0.642453591606134,0.514721919302072,0.1266598569969356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607096565132,0.0045407092831152,0.0066460352087666,0.0088979177247333,0.0112185844038283,0.0133106566726413,0.0153974793000774,0.0174781268185112,0.0197110813491049,0.0219221002621231,0.0239094088806375,0.0262476628793326,0.0282624799374459,0.030511060259344,0.0325701952765988,0.0345120109246653,0.0364047226627691,0.0384287821191915,0.0407014257466958,0.0427182845938842,0.0575188402161529,0.0725056849738543,0.0853670066919497,0.0981520112944349,0.110267163879528,0.1264246070414778,0.1392983537563899,0.1508725919766314,0.1619324871031958,0.172397115250266,0.1856741876281982,0.1984708816831146,0.2103163356515293,0.221647110428775,0.2324305831457202,0.2432963810454757,0.2535532824495826,0.2622088824697599,0.2708907149848626,0.2786934200098774,0.2871099868883655,0.2946165667562145,0.3016460758832675,0.3085316029800529,0.3150699939135727,0.3202544152155119,0.3256584313085812,0.3313104784731695,0.3362083522764175,0.3418101907623876,0.3421393841166937,0.3419770635238266,0.3414734047060817,0.3412475373739715,0.342321550876984,0.3416517028101355,0.3420526966612765,0.3420515857349651,0.3429557845801501,0.3443727547318189,0.344121184784243,0.3446294094332144,0.3464998948917385,0.3463679626470324,0.3468367272990796,0.3474800366540123,0.3460834239285918,0.3486319784912225,0.3519480060753771,0.3537730196141094,0.356737458806298,0.3569057815845824,0.3575044292584156,0.3609458428680396,0.3619986726083246,0.3679211254057953,0.3641001855287569,0.3670419651995906,0.370976692563818,0.3684007707129094,0.0,2.5722072422907045,60.63151540474144,198.6425408878858,296.69222012637965,fqhc4_100Compliance_baseline,12 -100000,95685,43236,409.3118043580498,6574,67.53409625333124,5132,53.03861629304489,2028,20.80785912107436,77.28391542799022,79.68093025461134,63.28504443165552,65.05923093996103,77.03478671761248,79.43254875919654,63.19285404334703,64.97017904007379,0.2491287103777466,248.38149541480448,0.0921903883084951,89.05189988723805,113.3836,79.77674745186428,118496.7340753514,83374.35068387342,308.62171,196.9999070494069,321966.5464806396,205311.0592563169,313.51485,150.62981546589472,323985.68218634056,154661.96725387103,3701.49748,1652.902918785536,3827725.359251712,1686747.6080739242,1240.91117,533.754180107558,1282456.7278047765,543409.8658175874,1996.24088,829.9924856317442,2050738.56926373,837825.8103149765,0.38085,100000,0,515380,5386.215185243246,0,0.0,0,0.0,26333,274.5884934942781,0,0.0,28909,298.4375816481162,1860237,0,66767,0,0,0,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.06574,0.1726138899829329,0.3084879829631883,0.02028,0.3118854829381145,0.6881145170618855,25.274581022192788,4.532339885348955,0.3230709275136399,0.2151208106001559,0.2328526890101325,0.2289555728760717,11.217824113338162,5.528408675160885,21.40329914140069,12616.266157166689,57.54991730116492,12.960934295588306,18.681294849071183,13.20066737138833,12.707020785117102,0.5409197194076384,0.7744565217391305,0.6857659831121834,0.5414225941422595,0.116595744680851,0.7,0.9187675070028012,0.848780487804878,0.683206106870229,0.1633466135458167,0.4880581516095534,0.7054886211512718,0.6322115384615384,0.5016077170418006,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989825905433,0.0044324083089905,0.0066804065098429,0.009085273523643,0.0113244406458899,0.0137213756010105,0.0160844510173899,0.0181394778771908,0.0203019207560292,0.022434846746435,0.0242941562705187,0.0262736072008384,0.0282882957047891,0.0303720498814799,0.0326613194594985,0.0344492362425408,0.036206128306892,0.0378901911118954,0.0398718442158259,0.0415867589427165,0.0567864865711868,0.0708475108621682,0.0842420108096762,0.0968610903580861,0.1089205049183096,0.1241796163780327,0.1363872872266998,0.14853826082326,0.1598627457268383,0.1706327483497021,0.1833575855564538,0.1955471289274106,0.2072697970206464,0.2187588986485006,0.2295999911819494,0.2414987510407993,0.2511489047666969,0.2605667140055454,0.2692648663393344,0.2776694351397237,0.2861051533244449,0.2943238711644213,0.30148768566412,0.3082918042629841,0.3137402907302344,0.3199555582988704,0.3251610638991251,0.330069395810785,0.3352210875537815,0.3404485630932108,0.3407274638491705,0.3407933492994192,0.3409094109529241,0.3406396650061367,0.3404856433361585,0.340008279795765,0.3395987194522806,0.3401631942734243,0.3409067579127459,0.3416811262365168,0.3432255154396977,0.3442873595170962,0.346170069174962,0.3470471732084983,0.3491462941404734,0.3497521441498151,0.3507714285714285,0.3546023122117632,0.3558493617919054,0.3591616386154335,0.3597535934291581,0.3660234943921756,0.3706517644103981,0.37140918344266,0.3709858103061986,0.3715769593956562,0.3760330578512397,0.3743662543094707,0.3749651519375522,0.3770744886144346,0.0,2.349986205212602,56.15686873683932,185.98333642947875,298.8887922763562,fqhc4_100Compliance_baseline,13 -100000,95655,43251,407.3702367884585,6767,69.55203596257383,5273,54.53975223459307,2068,21.243008729287546,77.35161970545354,79.75685995009327,63.31721993396855,65.09403644082917,77.09977163864197,79.5063610316923,63.22489839106477,65.00477603782205,0.2518480668115757,250.4989184009787,0.0923215429037824,89.2604030071169,113.92744,80.1115442990051,119102.44106424128,83750.50368407831,314.31154,200.401500418049,328019.4657885108,208935.21553295592,320.14897,154.4428121074492,330886.7074381893,158497.30456873024,3772.32336,1686.3727486342418,3905256.6828707336,1724554.564460031,1275.11507,553.1720583227788,1319908.2849824892,565171.9808925604,2020.88462,832.706230245745,2078012.7750771,841002.9098944573,0.38092,100000,0,517852,5413.747321101877,0,0.0,0,0.0,26893,280.5394386074957,0,0.0,29564,305.2637081177147,1856713,0,66549,0,0,0,0,0,48,0.501803355809942,0,0.0,1,0.0104542365793737,0,0.0,0.06767,0.1776488501522629,0.3056007093246638,0.02068,0.3166293393057111,0.6833706606942889,25.22047700935981,4.48305399884404,0.330931158733169,0.218092167646501,0.2345913142423667,0.2163853593779632,11.471227690164405,5.976317854977266,21.901916720887165,12639.213730673018,58.979108046291245,13.482424830994194,19.408512713893927,13.619208083974415,12.468962417428711,0.5596434667172387,0.76,0.6808022922636103,0.5901374292643492,0.1393514460999123,0.7386706948640483,0.906801007556675,0.8827751196172249,0.7419354838709677,0.1826086956521739,0.4996201570017726,0.6826029216467463,0.6171816126601356,0.545929018789144,0.128430296377607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045327789889976,0.006992510199525,0.0093879541575225,0.0115147138105361,0.0138317376247708,0.0160505786978024,0.0182883867212629,0.0204294478527607,0.0224521151285465,0.0245090998625274,0.0265840475162874,0.0287219700945735,0.0308666158065114,0.0331773625442864,0.0354042729294914,0.0375295385763442,0.0396972874212334,0.0418652073492998,0.0438767530368593,0.0581695453643041,0.0715751560078736,0.0847030669437622,0.097689296687571,0.1092712785604981,0.1242988082386063,0.1363501231631699,0.1476610212847596,0.1600552025162077,0.1710174496644295,0.1841336251981409,0.1970944467315234,0.2090218361526571,0.2196123072208053,0.2308183579985905,0.2418612900007759,0.2527229464794396,0.2616991815920118,0.2711431490521058,0.2789363383378568,0.28651906348325,0.294605081695145,0.3020351690455636,0.3079253688446062,0.3132996673869237,0.3186732005220518,0.3238025018432661,0.3299798025989863,0.3354394397498514,0.3397153128003897,0.3397619527940286,0.339791151415224,0.3404599707240175,0.3406285640040999,0.3412149116292886,0.340484789128971,0.3393571439864662,0.3402415411374749,0.3416525734980098,0.3424674652337683,0.3440775533929609,0.3445632199806359,0.3454080456155797,0.3462990683437967,0.3463153600652701,0.3472258332900005,0.3483468958060661,0.3506061177061742,0.3517057606675782,0.3542360780580675,0.3585670065549891,0.3600696092390444,0.3617700444388809,0.3622507014483961,0.3645647896561416,0.3657573582196697,0.3705764178643177,0.3756838905775076,0.3761943761943762,0.3839150227617602,0.0,2.268598460339416,58.16742701233445,187.28990458669384,308.90023203885744,fqhc4_100Compliance_baseline,14 -100000,95790,43152,407.4746842050318,6818,69.97598914291679,5313,54.91178619897693,2198,22.63284267668859,77.3507064425629,79.68019312595901,63.34838135415546,65.07043238734535,77.07896516137966,79.40709028550582,63.24896126973342,64.97298805317152,0.2717412811832389,273.1028404531912,0.0994200844220358,97.44433417382936,112.41384,79.15544500424802,117354.46288756657,82634.35118931832,311.32848,198.9176220085752,324457.54254097503,207106.1927221789,320.2847,154.73760232741873,330785.6770017747,158864.87174026575,3858.1696,1742.2671396010446,3989567.6792984656,1780805.8857852484,1297.7655,568.8556802228691,1338991.773671573,578109.2237753692,2164.54464,896.370646645056,2229685.979747364,909612.0975212612,0.38015,100000,0,510972,5334.293767616661,0,0.0,0,0.0,26555,276.6363921077357,0,0.0,29472,304.0922852072241,1868478,0,66993,0,0,0,0,0,56,0.5846121724605908,0,0.0,0,0.0,0,0.0,0.06818,0.1793502564777061,0.3223819301848049,0.02198,0.3236849429446145,0.6763150570553855,24.812723707375604,4.515623012641881,0.331451157538114,0.2062864671560323,0.2243553547901374,0.2379070205157161,11.253526333375945,5.717456781271954,23.348210286215515,12626.037914703014,60.0694100788592,12.888898944463731,20.000732556000617,13.257941198423485,13.921837379971366,0.54394880481837,0.7609489051094891,0.6927881885292447,0.5738255033557047,0.120253164556962,0.7240618101545254,0.9243697478991596,0.89171974522293,0.7376425855513308,0.1492537313432835,0.4820435002529084,0.6820027063599459,0.6201550387596899,0.527448869752422,0.1124497991967871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0046228710462287,0.0069509980009538,0.0089285714285714,0.0112351553603383,0.0134178993555743,0.0156434715258244,0.0175832474410915,0.0197226565294255,0.0217767271462049,0.0237619501398665,0.0258780795632945,0.0280458352602641,0.0301314583955281,0.0321629285898427,0.0342779218364205,0.0362674999741315,0.0383363396985341,0.04042869159752,0.0421841653219509,0.0565752266869789,0.0706914398636568,0.0839989936473992,0.0975596939633428,0.1097913153456998,0.125306553911205,0.1378776471087263,0.1506044610931381,0.1615103766333589,0.1720021005926672,0.1863308578193951,0.198979757260043,0.2114778678371976,0.2226591944417133,0.2323109058927001,0.2424141859976327,0.2522287599179816,0.2619315117742225,0.2706375743836781,0.2791961823237929,0.2871401506399889,0.294175369734352,0.3011486638354252,0.3072030853255402,0.313454395377631,0.319451116613084,0.3250006252657379,0.33041653418124,0.3353795943740772,0.3396579686449282,0.3404730511530285,0.3404372411705625,0.3398148539544321,0.3396701388888888,0.3397082224172033,0.3383907340645854,0.3372371657541855,0.3375572619714596,0.3384884438653042,0.3397440493260683,0.3401224682053697,0.3408440629470672,0.3410658174993146,0.3414370123133823,0.343333413979145,0.3450983481709078,0.3470720202485043,0.3487410986775178,0.3522316043425814,0.3558284662773022,0.3587912847206227,0.3625074240051833,0.3664616173266692,0.3671220117975784,0.3723059317184818,0.3744578313253012,0.3771339075959279,0.3757056240853021,0.3879579664867935,0.3896972080220212,0.0,2.188388755810577,59.863067764078544,199.0726779430593,300.6972382800729,fqhc4_100Compliance_baseline,15 -100000,95739,43112,407.4515087895215,6640,68.18537899915394,5224,54.02187196440322,2073,21.26615068049593,77.31652017658898,79.67557287332816,63.31665033110207,65.06171044374727,77.06075632979159,79.42255842504564,63.2218358974151,64.97091948109743,0.255763846797393,253.01444828252784,0.0948144336869702,90.79096264984798,112.09484,78.87620605945912,117083.77985982723,82386.70349539803,310.8852,198.5139808474138,324156.13281943614,206783.67316079527,317.50471,152.69321036163794,328350.4110132757,157011.09253201427,3759.68932,1695.8616900366226,3888522.0025277054,1732840.796369946,1262.16873,551.2885171175471,1304335.5267968122,561816.5816621716,2042.0082,851.5918059759898,2096530.1287876412,857805.2126828925,0.38107,100000,0,509522,5321.989993628511,0,0.0,0,0.0,26540,276.63752493759074,0,0.0,29286,302.6039545013004,1865505,0,67027,0,0,0,0,0,57,0.5953686585404067,0,0.0,0,0.0,0,0.0,0.0664,0.1742462014852914,0.3121987951807229,0.02073,0.3135933467163751,0.6864066532836249,24.95085753982292,4.5153669133941845,0.3346094946401225,0.2128637059724349,0.2226263399693721,0.2299004594180704,11.318965358313765,5.711091335558391,21.915608931978635,12629.234314859328,58.99130952248328,13.071267554743129,19.86308816344696,12.88060866417372,13.176345140119466,0.5610643185298622,0.762589928057554,0.7265446224256293,0.586414445399828,0.109075770191507,0.7127578304048893,0.892128279883382,0.8961038961038961,0.70703125,0.1290322580645161,0.5103448275862069,0.7048114434330299,0.6656298600311042,0.5523704520396913,0.1038824763903462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020563000779975,0.0044910331403777,0.0065770109109363,0.0087078451893473,0.0107421875,0.0129142647627971,0.0150020907060467,0.0172278218600328,0.0196419259516773,0.0216534425390325,0.0238495611516692,0.0258040004928738,0.0279705897475448,0.0297079660598072,0.0320178243558269,0.0338795668705571,0.0358370253819717,0.0377477879319108,0.0398856548856548,0.0419236539423237,0.0566825713360966,0.0701743370795923,0.083448695360349,0.096301670925476,0.1082511730901038,0.123614401760027,0.13694618910202,0.148750212910918,0.1598623828705138,0.1708617655894596,0.1838581447208247,0.1961340317762673,0.2079635430261898,0.2195031273236233,0.2302001453200343,0.2408548751829025,0.2515551882419951,0.2615575061895115,0.2702451097260538,0.2789631700776935,0.2869890282857275,0.2947845009125368,0.3020670549794005,0.3082597639382017,0.3151241095957017,0.3206913994546778,0.3265367466559791,0.3322636103151862,0.3381861513353884,0.3431310410394549,0.3432855930262324,0.3428145982986116,0.343312047920434,0.3429279533892778,0.3437667600262201,0.3427084452768779,0.3409209879284909,0.3416482683626058,0.3427767869392235,0.3431354959092866,0.343864667030465,0.3446511443417556,0.3450880552107223,0.3470734828584899,0.3481166903940352,0.3482077542062911,0.3486390667886551,0.3500661334005164,0.3514976796512445,0.3544897796866301,0.3567483682504906,0.3604161109629234,0.3586599241466498,0.3600364824808087,0.3614173970408067,0.3607814934675776,0.3619327861235868,0.3666938442723196,0.3640399556048834,0.3630057803468208,0.0,2.12104880599316,57.69082823583701,198.1039069291566,296.6638289668988,fqhc4_100Compliance_baseline,16 -100000,95674,43324,408.3031962706691,6751,69.31872818111503,5240,54.14219119091916,2105,21.62551999498296,77.40264542862671,79.78352919134723,63.35728834693722,65.1122314431825,77.15097884696867,79.53273204581474,63.264951016671525,65.0228106077969,0.2516665816580428,250.79714553248775,0.0923373302656926,89.42083538559586,113.48964,79.83813500204937,118621.19280055189,83448.09979937013,315.04098,201.88024982416368,328669.7639902168,210396.53340926053,325.43222,156.52767742123524,336165.17549177416,160526.18250899133,3764.78357,1703.3259498240143,3893332.545937245,1739035.8171971552,1277.788,558.534061784336,1318930.7962455838,567638.2412186132,2068.20096,857.9308118018073,2126867.9265004075,867287.0452830299,0.38127,100000,0,515862,5391.872400025085,0,0.0,0,0.0,26952,281.048142651086,0,0.0,30050,310.0842444133202,1858838,0,66635,0,0,0,0,0,51,0.5330601835399377,0,0.0,0,0.0,0,0.0,0.06751,0.1770661211215149,0.3118056584209747,0.02105,0.3236701379116239,0.676329862088376,25.04095896349378,4.565978392114039,0.3169847328244274,0.2169847328244274,0.2379770992366412,0.2280534351145038,11.317150747573754,5.718488593596281,22.27330898280067,12684.643185900271,59.21878219512288,13.492975411840032,18.69029506328472,14.067001458870322,12.968510261127811,0.5570610687022901,0.7906772207563765,0.6959662853702588,0.5982357658380112,0.0987447698744769,0.7132132132132132,0.9308641975308642,0.86,0.7083333333333334,0.104602510460251,0.5038382804503583,0.7131147540983607,0.6439333862014275,0.5651720542231491,0.0972803347280334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0046216060080878,0.0068167985392574,0.0092115820155794,0.0113584364608861,0.0136753355192147,0.0156697625577293,0.0177177207826007,0.0198661284553676,0.0221153354142148,0.0239654765931711,0.0263738745675362,0.0285009253547193,0.030824527796659,0.0329959451512056,0.035099686831416,0.0371931205152365,0.0393288158809551,0.041455195939762,0.0435657185737959,0.0579374033680163,0.0720186800414646,0.0855152004869193,0.0978288311032567,0.1097235552836696,0.1256731735703327,0.1389245577357769,0.150867070483409,0.1626468042360836,0.1732817141570238,0.185420906966476,0.198153839494416,0.2099064810787299,0.220940656841737,0.2317456825431745,0.2425077772980393,0.2531239201435721,0.2626600763873287,0.272356526270476,0.2810820699275114,0.2893776700150098,0.2963485932339864,0.3040017948445452,0.3094950413322008,0.31533377796641,0.3211842299552099,0.3264119808985674,0.3304930856264841,0.3356114829074184,0.3414505725944451,0.341284551535176,0.3411054725003429,0.3408392177782769,0.3408416625860529,0.3411320195584531,0.3400513400360602,0.339158074514517,0.3396176880794159,0.341288375978044,0.3417516218721038,0.3422742161909218,0.3437112305783659,0.34455482739909,0.3451722291629484,0.3453431077995433,0.3471330933375072,0.348397042450541,0.3499450117831893,0.3540626099190995,0.3547579298831386,0.3579086637164104,0.3603651700389728,0.3612988817992292,0.3664151231038951,0.3696575148598924,0.3743523316062176,0.3723175965665236,0.373031893419459,0.3768115942028985,0.390068233510235,0.0,2.39782364982796,58.37332253713761,202.6866741113026,289.085213895129,fqhc4_100Compliance_baseline,17 -100000,95729,43705,412.66491867668105,6708,68.99685570725694,5172,53.4738689425357,2100,21.56086452381201,77.33907921770925,79.70561876622516,63.32552877917672,65.0752612605607,77.07689923622607,79.44472966541053,63.22856382337497,64.98159458248551,0.262179981483186,260.889100814623,0.0969649558017451,93.6666780751807,112.1923,78.91259972664174,117197.81884277493,82433.32712829106,310.96854,200.0652960685489,324293.484732944,208442.2338774549,319.74985,154.32020464367625,330841.2811164851,158704.43591468688,3751.23991,1703.7901230864868,3881002.350384941,1742204.5076063522,1256.29557,558.4013879317748,1298531.1974427812,569545.4090008144,2067.94596,870.7214626648199,2125808.60554273,878846.0915839884,0.38418,100000,0,509965,5327.1735837624965,0,0.0,0,0.0,26548,276.739546010091,0,0.0,29490,304.86059605762097,1864573,0,66878,0,0,0,0,0,65,0.6790000940153976,0,0.0,0,0.0,0,0.0,0.06708,0.174605653599875,0.3130590339892665,0.021,0.3269940391711609,0.673005960828839,25.035460624107557,4.514948461455526,0.324245939675174,0.2099767981438515,0.2324052590873936,0.2333720030935808,11.074521557302209,5.556700868982455,22.55139682069432,12729.222601138035,58.79940404935507,12.95540435667744,18.95159137549073,13.391347550506222,13.501060766680684,0.5496906419180201,0.785451197053407,0.689922480620155,0.5782029950083195,0.1143330571665285,0.712143928035982,0.9287671232876712,0.8606741573033708,0.7019607843137254,0.1821561338289963,0.493225638353309,0.7128987517337032,0.6282467532467533,0.5448785638859557,0.0948827292110874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019243234483876,0.0042584255992213,0.0064756452807973,0.0085961632254917,0.0107219515172476,0.0131990345150678,0.0153979503390608,0.0175397400688113,0.0195300517392993,0.021968905549069,0.0238444419375019,0.025769807522442,0.0279331907191048,0.0300535751081805,0.0321957966885503,0.0344877509022657,0.0366107594608874,0.0387309692082568,0.0407537202458326,0.0430284529552108,0.0579396900973144,0.0721318336385038,0.0855552177149627,0.0985289014605831,0.1105030053780449,0.1254085615460286,0.1384662719884567,0.1507814829010689,0.1628694778687298,0.1741117895120878,0.1878610225019398,0.199995668511159,0.2117839072955769,0.223194939922523,0.2342700464686061,0.2448115299334811,0.2547964174837513,0.2646270907903919,0.2732814202687976,0.2814688320172372,0.289449620927137,0.2972954003088297,0.3052184609561659,0.3111092481257036,0.3166945799655331,0.3223269666240032,0.3282565781253904,0.3327871351268958,0.3371424139402009,0.3416701824702036,0.3418543669737107,0.3420639942773819,0.3425175199875915,0.3428964319316783,0.3428630958581995,0.3415449748435391,0.3407628166513426,0.3413297793573226,0.3418904551222691,0.3423874067699369,0.3429527551653475,0.3435096344461185,0.3457753718973584,0.3476163768928771,0.3493561198700204,0.3502687751161213,0.3514518666857388,0.3539792278309183,0.3560504616252026,0.3570573207727926,0.3620492141318792,0.3627109563353871,0.3630638081302882,0.3679803334101559,0.3723424270931326,0.3737517831669044,0.3771278242030331,0.3745142155860094,0.3768075639599555,0.3827493261455525,0.0,2.118620485900733,58.81914868699252,199.751423420063,286.5726506557438,fqhc4_100Compliance_baseline,18 -100000,95694,43097,405.34411770852927,6641,68.20699312391581,5248,54.35032499425251,2133,21.903149622755866,77.30793472821749,79.68259127141503,63.31631099018998,65.06969416684353,77.03563579039137,79.41033361929166,63.21545570586539,64.97111570699512,0.2722989378261218,272.25765212337194,0.1008552843245951,98.57845984841164,113.15766,79.65084689914032,118249.48272618972,83234.94356923141,313.54752,200.63573036278495,327140.0505778837,209147.7798588777,317.40378,152.95892228391352,328447.40527096787,157396.30678960495,3798.5225,1721.566730073584,3933472.3493635966,1763081.9289919217,1294.04737,564.3391034791865,1337034.098271574,574519.5995013256,2103.28154,886.8346956048426,2161369.406650365,897299.3838344765,0.37946,100000,0,514353,5374.976487554079,0,0.0,0,0.0,26775,279.25470771417224,0,0.0,29315,303.14335277028863,1857421,0,66738,0,0,0,0,0,57,0.5956486300081509,0,0.0,0,0.0,0,0.0,0.06641,0.1750118589574658,0.3211865682879084,0.02133,0.315616516645235,0.684383483354765,24.982403464082264,4.49649482944116,0.3208841463414634,0.2162728658536585,0.2263719512195122,0.2364710365853658,11.010555565267662,5.591395775360336,22.80161912117333,12634.436806759142,59.405100138074346,13.463701815339952,19.103810519286355,13.138966269395487,13.698621534052569,0.5449695121951219,0.7700440528634361,0.6983372921615202,0.5614478114478114,0.1152296535052377,0.7150375939849624,0.9553805774278216,0.8692660550458715,0.6653696498054474,0.14453125,0.4872383869321082,0.6763925729442971,0.6386217948717948,0.5327604726100966,0.1076142131979695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0044890762433626,0.006796579393177,0.0093138051515397,0.0115938491579204,0.01380799152784,0.0159068430014989,0.0183460949464012,0.0204154654562554,0.0227349499953936,0.0250030754090294,0.0274537987679671,0.029567238471348,0.0317090759245905,0.0337952882660695,0.0356356418447414,0.037539373342175,0.0399601333042638,0.0419839387508842,0.043928321988137,0.0585476424258884,0.0726718931535812,0.0860970926755568,0.0985632546594303,0.1103438096342607,0.1259015630618244,0.1385405393935536,0.1503289543722188,0.1616963532039021,0.1728055963863824,0.1852729544573226,0.1981063680138505,0.2102120717781403,0.2218856286704797,0.2321852992957746,0.2434354849431629,0.2536578832825527,0.2632289720677935,0.2713393870601589,0.2786053120058666,0.2862917236107572,0.2936179175735449,0.3005316944355631,0.3067266726672667,0.3135866457398012,0.3181980914287125,0.32435855634421,0.3297022883236817,0.3339177413280347,0.3385287112992855,0.3388228941684665,0.3382895009318699,0.3384771917924368,0.3382297497172356,0.3375689783743475,0.3362676867769738,0.3361352549536809,0.336764487553818,0.3382688905302575,0.3382548168347027,0.3386771659476668,0.3390524662518142,0.3408430538594348,0.3424432966539412,0.3429262394195889,0.3438017397703082,0.3454936854190585,0.3499366687777074,0.3514760147601476,0.3537643436887769,0.3552068473609129,0.3583074117773249,0.3587489649022231,0.358822169120481,0.3625035670122705,0.3601628937597317,0.3618551966937088,0.365015166835187,0.3648208469055374,0.3742447129909365,0.0,1.8236896406004,58.90648510232734,199.70985526983745,296.3147990054567,fqhc4_100Compliance_baseline,19 -100000,95713,43132,408.12637781701545,6685,68.77853583107833,5202,53.84848453188177,2078,21.376406548744686,77.38171245272493,79.75453079066914,63.34258245905804,65.09454258843783,77.12646021036933,79.49761193187078,63.25018169334605,65.0032292029289,0.2552522423555956,256.9188587983575,0.0924007657119929,91.31338550892563,113.30088,79.72533132798931,118375.64385193234,83296.24118770628,311.38333,198.9739700027414,324716.76783717994,207272.57530611465,317.89886,152.65195758202125,328486.59011837473,156707.40396334374,3751.26242,1677.5703283130135,3888210.128195752,1721869.8543390313,1278.13237,552.8186789322804,1323829.6156217025,566092.2305896088,2044.82866,838.5631329810968,2106587.025795869,852873.6586746285,0.38049,100000,0,515004,5380.711084178744,0,0.0,0,0.0,26618,277.53805648135574,0,0.0,29256,302.132416704105,1862500,0,66758,0,0,0,0,0,72,0.7313531077283129,0,0.0,0,0.0,0,0.0,0.06685,0.175694499198402,0.3108451757666417,0.02078,0.316113337149399,0.6838866628506011,24.949432856919746,4.526035503789272,0.3304498269896194,0.2106881968473664,0.2285659361783929,0.2302960399846213,11.18198008683819,5.686063573891604,21.771884931299198,12634.097371496406,58.50098101415972,12.82235360212178,19.525603107895325,13.19497911983856,12.95804518430404,0.5549788542868128,0.7700729927007299,0.6957533449680047,0.5870479394449117,0.1243739565943238,0.7223053892215568,0.9234972677595628,0.8589743589743589,0.7276264591439688,0.1551020408163265,0.4971546818416968,0.6931506849315069,0.6346922462030375,0.5482832618025751,0.1164742917103882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019547075028358,0.0041865604314286,0.0064334131590696,0.0084208601669951,0.0107512663506723,0.0126272912423625,0.0149477440734132,0.0171709747233451,0.0195352831133782,0.0215068072474152,0.0237126190500599,0.0257594891222882,0.0278994673083647,0.0299134734239802,0.0320113928361351,0.0341494179193978,0.0358751825346686,0.0380819956210893,0.039873536202342,0.0416523379289503,0.0568319478674965,0.0710487197202855,0.0844349322254395,0.097309294399798,0.1093697266284171,0.1246444545483383,0.1368207761346035,0.1494049773274008,0.1609809241022793,0.1721541794470303,0.1858691202137516,0.198662236316604,0.2118009112756772,0.222977625725497,0.2327218336192864,0.2432193069854976,0.253498979580457,0.2636278776836825,0.2721054482343999,0.2799931287219422,0.2879212182929087,0.2951287388040504,0.3020525082266045,0.3080943077347205,0.3137004774574479,0.319893500314322,0.3244511165321824,0.3296341075405663,0.3347707289279101,0.3394056114709335,0.3394543546694648,0.3398222307702875,0.3397251023480255,0.3398543934260794,0.3400536240686151,0.3390213376476693,0.3387076398319805,0.3397705513640901,0.3409864524474096,0.3419323826309886,0.3417695473251029,0.3434297561457202,0.3451595389241563,0.3467115830804926,0.3467012263901888,0.3470346904860822,0.3480212506037103,0.349779156094352,0.3508956059333893,0.3548924688516784,0.3590059279525763,0.3619428876434481,0.3646025583911411,0.3679463459759482,0.3692001138627953,0.3691588785046729,0.3766816143497757,0.3740238388820386,0.3785674314493564,0.3867033831628639,0.0,1.851094860457328,59.22510796396994,190.6764352632805,294.5669426820523,fqhc4_100Compliance_baseline,20 -100000,95859,43341,408.47494757925705,6792,69.7274121365756,5306,54.78880438978083,2100,21.58378451684245,77.44506122741345,79.72320175683885,63.40474875222951,65.08439664305243,77.18370889732275,79.45951912919837,63.3096261120874,64.99015612334831,0.2613523300907019,263.6826276404776,0.0951226401421081,94.2405197041154,112.50668,79.20404988533866,117366.84088087712,82625.57494375974,310.20586,197.81691350527828,323058.06444882584,205814.04302702748,320.51428,154.27183817381805,330123.32696982025,157731.90264696686,3866.56015,1730.307620493413,3998366.2045295695,1770090.0414923655,1303.70882,562.0525846823729,1346683.3056885635,573058.5208448203,2073.91982,862.3250984100388,2134592.4534994108,877598.0817537026,0.38241,100000,0,511394,5334.856403676233,0,0.0,0,0.0,26518,276.0512836562034,0,0.0,29604,304.6140685798934,1868717,0,67127,0,0,0,0,0,43,0.448575511949843,0,0.0,0,0.0,0,0.0,0.06792,0.177610418137601,0.3091872791519434,0.021,0.3103737925241495,0.6896262074758505,24.861938392434908,4.536209812881483,0.3098379193366001,0.2176781002638522,0.2344515642668677,0.2380324161326799,11.122470238306486,5.516331658343567,22.473694636045582,12656.215292019882,59.85469888840231,13.591386295236182,18.50563901059517,13.811442559801277,13.946231022769677,0.5452318130418394,0.793073593073593,0.6745742092457421,0.5795819935691319,0.1163895486935867,0.7102661596958175,0.907859078590786,0.8491484184914841,0.7636363636363637,0.1538461538461538,0.4908544224505136,0.7391857506361323,0.616382806163828,0.5273477812177503,0.106679960119641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022470090487661,0.0045280037277525,0.0066110339373168,0.0088404855669684,0.010892759160282,0.0130022077301075,0.0151959586083272,0.017477846778223,0.0199021740240378,0.0219529652351738,0.0240835551914806,0.0260194453560879,0.0283985867466414,0.030632187454998,0.0326289652898692,0.0347432959682913,0.0369297909966183,0.038722980954552,0.0409127243659617,0.0425757717638979,0.0572221005766002,0.0705249412379211,0.0843148956664677,0.0975005771127573,0.1095061754371199,0.1247361533265788,0.1375692187152583,0.1493514082038097,0.1609639068081249,0.1714680136121396,0.1852150364304597,0.1977130887338847,0.2100601350324555,0.220536221125715,0.2304296257248286,0.2417558104804363,0.252209282888505,0.2624897486883938,0.2717454129220168,0.2801711318035187,0.2877027480086475,0.2951245177130831,0.3024678213136475,0.3089833836134655,0.3154170156464319,0.3212847448860207,0.327022526075905,0.3322556831199246,0.3378858164666857,0.3427798310454065,0.3427374828301328,0.3424248676157073,0.341872766663853,0.3409985438502905,0.3401186063750926,0.3388064944784714,0.3382489934475408,0.3391021022987753,0.3397700521988332,0.3406415302687588,0.3407120250201322,0.3424757761518687,0.3445427481236111,0.3453158554044381,0.3460234241600731,0.3477185123450359,0.3484366117111995,0.3524911422569216,0.3552223190932868,0.3586414377325627,0.359118291347207,0.3616226314384841,0.3640500568828214,0.3640769230769231,0.368830675778284,0.3726618705035971,0.3708876474239603,0.3735440931780366,0.3775596072931276,0.3864085341762149,0.0,2.2325299007083963,58.02209337353692,202.69731415014616,300.5227776472529,fqhc4_100Compliance_baseline,21 -100000,95673,42829,404.44012417296415,6709,68.79683923363959,5233,54.00687759346942,2055,21.04041892696999,77.29747507811412,79.70172472069613,63.28577397120039,65.06601868786198,77.03983268076176,79.44612985910524,63.190984551586176,64.97491048007072,0.257642397352356,255.5948615908932,0.0947894196142158,91.10820779126529,112.45234,79.11990804691628,117538.21872419596,82698.26183658533,308.57332,197.16415161430228,321805.775924242,205358.7878027196,316.10389,152.2190743030383,326002.5189970002,155740.0419131077,3762.0555,1695.8589533640438,3881973.722993949,1722856.9445291793,1269.33108,558.1187826592316,1306994.084015344,563781.5847594009,2016.05144,844.5044019523984,2065181.6081862173,846813.3211186668,0.37891,100000,0,511147,5342.64630564527,0,0.0,0,0.0,26424,275.4382114076072,0,0.0,29234,301.1194380859804,1862620,0,66893,0,0,0,0,0,53,0.5539702946494831,0,0.0,2,0.0209045394207352,0,0.0,0.06709,0.1770605156897416,0.30630496348189,0.02055,0.329153605015674,0.670846394984326,25.06841697586133,4.433340453949626,0.324479266195299,0.2176571756162812,0.2339002484234664,0.2239633097649531,11.092707051927343,5.751533454619755,22.01396190276825,12583.789916870808,59.15340244690388,13.480016371411049,19.223757887812315,13.621516884146468,12.828111303534037,0.5574240397477547,0.7910447761194029,0.6908127208480566,0.5776143790849673,0.1160409556313993,0.7262269938650306,0.934065934065934,0.8608490566037735,0.7664233576642335,0.1322314049586777,0.5013998472893866,0.7238709677419355,0.6342229199372057,0.5231578947368422,0.1118279569892473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0045746860609011,0.0070663485456114,0.0097144599126105,0.0117085774739583,0.0140357310191692,0.0161356125821059,0.0181879455076489,0.0204035713920451,0.0225496922714565,0.0248120377873283,0.0268948655256723,0.0289191580420155,0.0310886702045442,0.0330191114369198,0.0349100613382707,0.0369191861610057,0.0387419006479481,0.0405759707020683,0.0424700364773319,0.0566820228357725,0.070599319549856,0.0838737434153917,0.0959984852310022,0.10792194092827,0.1236101266358452,0.1364779807457569,0.1486948464807182,0.1603259126194906,0.1712650835229956,0.1844826656602146,0.1968460412940985,0.2086668627002537,0.2193935676102006,0.2296382833337007,0.2400026622591487,0.2503659831256635,0.2600919084519733,0.2696856431987821,0.2782241887229335,0.2859377353462559,0.2925594854552057,0.2993731707606081,0.3068259590562526,0.312874251497006,0.3187262310465748,0.3239041027184271,0.3286384976525822,0.3337750064951935,0.3381120686231683,0.3381739095194996,0.3386419514351225,0.3390813540620446,0.3386121383510985,0.3387435412540762,0.3383496709466611,0.3372938548548073,0.3381645683896065,0.3386673035586339,0.3391402029135388,0.3401099723198922,0.3421680569524147,0.3440207609560085,0.3442264336257505,0.3457335670885468,0.3475747871592595,0.3488259570229116,0.3501177948798492,0.3535708018950693,0.3559268224929561,0.358358038768529,0.3618728741496598,0.3630231971759959,0.3610646387832699,0.3593367250800829,0.3627183081858144,0.366147199506249,0.3683459106669386,0.3723698781838316,0.3793901968351987,0.0,2.5252576468437384,57.0249013816784,202.95896213469052,293.1748210779742,fqhc4_100Compliance_baseline,22 -100000,95834,43094,404.7415322328192,6741,69.15082329862052,5285,54.61527224158441,2194,22.51810422188367,77.32864418348662,79.63965202234914,63.32870225298407,65.03861133821937,77.06131302043393,79.37304127284655,63.23121890477982,64.94438325904723,0.2673311630526882,266.6107495025898,0.0974833482042427,94.22807917214016,112.19868,78.96845605400209,117076.06903604147,82401.29396039202,308.78699,197.80791349131104,321675.814429117,205873.17157335975,319.90648,154.8008376169971,331072.7194941252,159395.55593306528,3840.45507,1738.615673795203,3968339.837635913,1775231.9418498669,1281.30495,567.4297371405844,1316902.4876348686,572087.6802829014,2156.56846,892.1663389947345,2214022.9354926227,899029.3530881034,0.37981,100000,0,509994,5321.639501638249,0,0.0,0,0.0,26442,275.34069328213366,0,0.0,29439,304.41179539620595,1863253,0,66959,0,0,0,0,0,64,0.6678214412421478,0,0.0,0,0.0,0,0.0,0.06741,0.1774834785813959,0.3254709983681946,0.02194,0.3203499858876658,0.6796500141123342,25.06065907033136,4.499356982936302,0.3224219489120151,0.2158940397350993,0.2263008514664143,0.2353831598864711,11.07016309893002,5.513431883721533,23.39943097658324,12704.227390304382,60.01795866830068,13.631917704251716,19.2875866140845,13.383113172244974,13.715341177719486,0.5449385052034059,0.7572304995617879,0.6995305164319249,0.5769230769230769,0.107717041800643,0.7249451353328457,0.9037037037037036,0.8738938053097345,0.7307692307692307,0.16,0.4821337417049515,0.6766304347826086,0.6365814696485623,0.5341880341880342,0.0945674044265593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027345925963437,0.0049568179053643,0.0073555521736924,0.00952787258248,0.0119991864958307,0.0143351659539808,0.0166853531750076,0.0189208772592282,0.0211233061499785,0.02336147352264,0.0255950490281463,0.0277601034461525,0.029906273123407,0.0317904793279525,0.0339898937815819,0.0360647947271637,0.0381240168888152,0.0400941439946914,0.0420678694961204,0.044007285974499,0.0585050901201602,0.0720476763029954,0.0858532392801366,0.0988661083029456,0.1112785917571413,0.1263755430818507,0.1389548693586698,0.1511008012598827,0.1625569996048739,0.1730325997234222,0.186019467654406,0.1995629692131282,0.2115832046793798,0.2220461425807932,0.2322982322982323,0.2427478041270228,0.2529532614278377,0.2623964150603495,0.2712157005269853,0.2796178636144689,0.2866815847140256,0.2946419147913173,0.3017734621685145,0.3088814683130735,0.3145545048498789,0.3203400705806865,0.3253516535867412,0.3301121876593574,0.3350986500519211,0.3400492115567785,0.3402593197242198,0.3403022148623473,0.3405326657331579,0.3405691883258313,0.3403810859606977,0.3401411808129431,0.3389248406022928,0.3399222507741978,0.340837884572583,0.3415994707764924,0.3437552845681216,0.3450176454260676,0.3455854569881187,0.3463659597363583,0.3479940134215227,0.3502478168515459,0.3503962917393917,0.3537228166524634,0.3556102708406612,0.3565238133100103,0.3594263792473511,0.3612861873731439,0.3643342003425744,0.3631121703698008,0.3644806671721001,0.3699928040297433,0.3733885819521179,0.3721451876019576,0.3707988980716253,0.37172979304959,0.0,2.0393573058565697,60.43721837554308,204.06798803498936,291.07044420356505,fqhc4_100Compliance_baseline,23 -100000,95751,43522,410.3246963478188,6736,69.22120917797203,5237,54.1613142421489,2142,22.04676713559127,77.35098256499538,79.69619986472576,63.33757887846742,65.0696133043357,77.08775314269067,79.43122150822053,63.242300889791984,64.97577204216957,0.263229422304704,264.9783565052246,0.0952779886754342,93.84126216613708,113.2109,79.67924952321383,118234.6920658792,83215.05730824098,312.72435,200.33160448287373,326070.89221000305,208690.66065406488,322.80009,155.5674127569397,333182.327077524,159556.34140280326,3772.83276,1691.0899904849168,3907855.197334753,1733734.018950106,1272.63474,553.0234587341367,1317077.482219507,565533.0792724217,2114.03824,870.6606447038643,2179054.004657915,885296.538347808,0.38275,100000,0,514595,5374.304184812691,0,0.0,0,0.0,26743,278.74382512976365,0,0.0,29722,306.4302200499212,1857715,0,66744,0,0,0,0,0,44,0.4595252268905807,0,0.0,1,0.0104437551566041,0,0.0,0.06736,0.1759895493141737,0.3179928741092636,0.02142,0.3173348390739695,0.6826651609260305,25.14563149088496,4.619839462765027,0.3314874928394118,0.2056520908917319,0.2289478709184647,0.2339125453503914,11.283463326614518,5.544950772182788,22.804053226162868,12743.246533958409,59.14862165275604,12.681706936571617,19.66743628310695,13.269622960755823,13.52985547232165,0.5440137483291961,0.7715877437325905,0.690668202764977,0.5554628857381151,0.1248979591836734,0.6928353658536586,0.9090909090909092,0.8646788990825688,0.6895161290322581,0.1485507246376811,0.4942675159235669,0.7048275862068966,0.6323076923076923,0.5205047318611987,0.1180189673340358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.004844872847427,0.0071027771858796,0.0096591370764605,0.0117029821760836,0.0140077979456587,0.0162893344614224,0.0186256799648918,0.0209119062950357,0.0230377959041644,0.0249195317465198,0.0270067747895709,0.0290957692900837,0.031222003686503,0.0332174505090935,0.0350070282784852,0.0371306094555695,0.0393172149009027,0.0414093527124529,0.0433890324193682,0.0582279009561985,0.0718447617553219,0.085334144142255,0.0982789616998013,0.1111169674481362,0.1266648344678872,0.1400362683860568,0.1526854029434612,0.1637344442664103,0.17514936339551,0.1886579060749676,0.2004501823454933,0.2129853181076672,0.224004200899255,0.2334936550039071,0.2448500160677282,0.2554182159246977,0.2647574912264915,0.2739682503659491,0.2820445218826658,0.2893549059093118,0.2959369953425235,0.3032991471190129,0.3096843744385218,0.3158041686393046,0.3213252403875749,0.3260673820064531,0.3314173078145864,0.336770115538055,0.3414598713664998,0.3420839737885284,0.3418259023354564,0.3411847772364612,0.3408428652198495,0.3409104450932491,0.3408557085616912,0.3399183751250575,0.3410832276030253,0.3415144140129572,0.3427324125098404,0.3441939903530339,0.3444031032298923,0.3448913157618397,0.3455030368228781,0.3468124563473905,0.3484697881245095,0.3504624871531346,0.3527166025115164,0.3551513448978158,0.3576482747654635,0.3614755222379668,0.3640825908339113,0.3640850417615793,0.3635114503816793,0.3650269096402606,0.3647889008491807,0.3644625509244751,0.3660292000822537,0.3695163104611924,0.3634585289514867,0.0,2.108582571392558,57.93810429210741,199.44595375089224,295.9775237082143,fqhc4_100Compliance_baseline,24 -100000,95838,42884,403.1699325945867,6710,68.9601202028423,5269,54.352135895991154,2136,21.89110791126693,77.51248185563044,79.80055462168161,63.42745123530996,65.1117257161246,77.25316740768237,79.54208565207676,63.332775666042586,65.02029075947554,0.2593144479480713,258.4689696048485,0.0946755692673733,91.43495664905288,112.81798,79.26600600822495,117716.45902460402,82707.44884301107,310.17282,198.33027205481295,323011.3524906614,206312.59884080736,312.78133,150.4543426389274,323118.71074104216,154447.08248269933,3819.53138,1708.3467918574725,3941719.161501701,1738954.984144601,1263.10611,540.7842968608811,1305583.5263674117,551932.1991825372,2101.8721,864.0897430550114,2155682.380684071,869307.857226566,0.38001,100000,0,512809,5350.748137482001,0,0.0,0,0.0,26444,275.27702998810497,0,0.0,28950,298.71241052609616,1873107,0,67122,0,0,0,0,0,67,0.6990963918278763,0,0.0,0,0.0,0,0.0,0.0671,0.1765743006762979,0.3183308494783904,0.02136,0.3177371331348362,0.6822628668651638,25.16152843425767,4.532366958940798,0.3243499715315999,0.2064907952173088,0.2368570886316189,0.2323021446194723,11.08868894696488,5.504380416885664,22.447507557342604,12593.095996987771,59.10146835657916,12.879063347069089,19.23456397815064,13.719428662719023,13.26841236864042,0.5416587587777567,0.7720588235294118,0.6881217086015213,0.561698717948718,0.1119281045751634,0.7084282460136674,0.9168831168831169,0.8588235294117647,0.6940298507462687,0.1213389121338912,0.486082995951417,0.6927453769559033,0.631619937694704,0.5255102040816326,0.1096446700507614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022463724121182,0.0045877598971045,0.0067606604567246,0.0088583576016478,0.0110424835937341,0.0133835045255771,0.0155769583189102,0.0176721324849078,0.0197992505080003,0.0218324982104509,0.0242179099892478,0.0263565414474561,0.0286982522117074,0.0307826892399526,0.0331446715945525,0.0352107584411828,0.0374072579393412,0.0395118815576659,0.0414593353624964,0.043310324723324,0.0575591339535271,0.0712485753421792,0.0844580434235895,0.097530747497663,0.1093491697465542,0.1241986079278403,0.1366483324325183,0.1486959202985614,0.1602005975245412,0.1706606703073134,0.1846519429689684,0.1976324714319659,0.2100635075720566,0.2198711649743421,0.2304980119065925,0.2410513861090531,0.2508913053166362,0.2600222404439102,0.2693061233734612,0.2783447424659725,0.2862152092921323,0.2928423309023975,0.2993171606146734,0.3055363156511977,0.311067801329153,0.3170288297362699,0.3223855659048117,0.3277886868942801,0.3335697338559934,0.3380734788203471,0.3384235858795769,0.3387304457412126,0.3392241500126132,0.3396036326477742,0.3401654506977639,0.3396652821891033,0.3386726965101753,0.3400862139614168,0.3406421032889465,0.3409917945058865,0.3421037847150696,0.3437784012328604,0.3453064131026683,0.3451062689766029,0.3456899440003829,0.3477629737155892,0.3483534546278977,0.3518974710779881,0.3524071239738416,0.3550207729089911,0.3576019055323356,0.361039777789424,0.361892901618929,0.3592489254204057,0.3611627043090639,0.3629258049463369,0.3681120144534778,0.3698195518540551,0.3806556488756434,0.3822975517890772,0.0,2.383304722780499,57.71877166656647,197.10347974181627,298.2692033321458,fqhc4_100Compliance_baseline,25 -100000,95757,43161,406.1217456687239,6703,68.94535125369424,5268,54.6487463057531,2142,22.118487421285128,77.31288813594676,79.67069832960341,63.318020272784125,65.06165005072663,77.0502954375647,79.40393046734809,63.222164871626624,64.96580257373327,0.2625926983820648,266.7678622553211,0.0958554011575003,95.84747699335594,112.04402,78.87425135376286,117008.69910293764,82369.17546890865,308.27551,197.0337206630372,321567.2587904801,205396.33725266796,320.32347,154.12342234934673,331906.7953256681,158975.9055761447,3810.86195,1714.922427097724,3957004.1041386006,1768193.340536696,1304.65071,569.6007231356234,1353547.573545537,585927.465496646,2111.61026,872.4828999187051,2182911.202314191,892603.2404812134,0.38002,100000,0,509291,5318.577231951711,0,0.0,0,0.0,26335,274.63266393057427,0,0.0,29531,305.80531971552995,1867165,0,67070,0,0,0,0,0,58,0.6056998443977986,0,0.0,1,0.0104431007654792,0,0.0,0.06703,0.1763854533971896,0.3195584066835745,0.02142,0.3164305949008498,0.6835694050991501,25.07116634318573,4.4807159561932,0.3234624145785877,0.2188686408504176,0.2207668944570994,0.2369020501138952,11.212626663600934,5.71807316451106,22.746860821270285,12648.290938299671,59.67162533537671,13.67588392688227,19.212498485640847,13.038606695813488,13.744636227040113,0.5559984813971146,0.7840416305290546,0.6942488262910798,0.5786758383490972,0.1354166666666666,0.7172619047619048,0.9090909090909092,0.8541666666666666,0.7048611111111112,0.1757322175732217,0.5007645259938838,0.7213541666666666,0.639937106918239,0.5371428571428571,0.1258671952428146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045510293029525,0.0070110289268357,0.00920245398773,0.0114827961473133,0.0135947046843177,0.0161109411644743,0.018100887178283,0.0204367472958881,0.0227316943303877,0.0251202181870379,0.0272834625455665,0.0295475815823845,0.0319307823041664,0.0339114196989549,0.0361210442547386,0.0379075763380515,0.0397696617555509,0.0419682222776807,0.0438519722447959,0.0584931463946799,0.0717095626700146,0.08482929284456,0.0981191980571705,0.1101938830376063,0.1257218402961396,0.1384659458656509,0.1505023841961852,0.1615787224951933,0.1730398044093677,0.1866231682763224,0.1986956944940138,0.2101257013614023,0.2209984030800866,0.2313710387323943,0.241697130829733,0.2520230826757152,0.2619942391646789,0.270893666314606,0.2795636080264952,0.2871665431641348,0.2942875856745187,0.3010388811321201,0.307920068088371,0.3139749665816017,0.3196740510620461,0.3249574105621806,0.329437973394437,0.3347417536128572,0.3394013907617461,0.3400221310590521,0.3392773475181214,0.3398732479850946,0.3399194599762435,0.3389249235815999,0.3382386861650597,0.3375501241168608,0.3383206862421643,0.3387980018196487,0.3386002082809638,0.3397370701020831,0.3404716455897558,0.3421074780120355,0.3435450543527086,0.3449076874682411,0.3453658280647446,0.3465545446718135,0.3472535144226192,0.3498283246610739,0.3530378985361941,0.3542355751561926,0.3568991256131371,0.3590871943169674,0.3628663003663003,0.3657153657153657,0.3649339835851076,0.3657931462242208,0.3743370053039576,0.3675524475524475,0.3658536585365853,0.0,1.4567113866284738,60.04176116951922,199.75486542435613,296.75236571874336,fqhc4_100Compliance_baseline,26 -100000,95790,43139,407.2554546403591,6834,70.21609771374882,5352,55.38156383756133,2152,22.17350454118384,77.37208356525132,79.7109009475375,63.35007434272507,65.07937156786312,77.11170963434168,79.44775240658952,63.25551191705233,64.98558446084157,0.2603739309096369,263.1485409479808,0.0945624256727413,93.78710702155502,111.9217,78.70117599888265,116840.69318300448,82160.11692126803,308.88678,197.09042262742008,321979.5072554546,205269.6655469465,316.31144,152.0113206710174,326881.79350662907,156116.5071382511,3837.93171,1732.138973710675,3975389.268190834,1777046.2926304168,1269.43242,555.1903233370384,1314430.7130180602,568815.765166836,2113.62366,873.881499008945,2180647.18655392,891445.9805618085,0.38237,100000,0,508735,5310.940599227476,0,0.0,0,0.0,26400,275.1017851550266,0,0.0,29238,301.9417475728156,1872145,0,67228,0,0,0,0,0,60,0.615930681699551,0,0.0,0,0.0,0,0.0,0.06834,0.1787274106232183,0.3148961076968101,0.02152,0.3207810320781032,0.6792189679218968,25.09884795771776,4.464786587063899,0.3221225710014948,0.2159940209267563,0.2344917787742899,0.2273916292974589,11.064606664350237,5.621697354780801,22.903842476567256,12670.272817157587,60.50334821969796,13.579730572397157,19.381057113551456,14.191515503297495,13.351045030451848,0.5592301943198804,0.7673010380622838,0.7088167053364269,0.5832669322709163,0.1248972884141331,0.7276064610866373,0.9276139410187668,0.8863636363636364,0.7233333333333334,0.1526104417670682,0.5017543859649123,0.6909323116219668,0.6479750778816199,0.5392670157068062,0.1177685950413223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0044503467012692,0.0066773558482677,0.0091831655509391,0.0113800467812468,0.0134081283596676,0.0156254777849127,0.0174296385492989,0.0194980379332897,0.0215842800122812,0.0237956159498262,0.0257289175792033,0.0279076938890887,0.0301379736408566,0.0321632602553261,0.0341375213101203,0.0361863555909782,0.0381312869438971,0.0403661526952329,0.0422678909779915,0.0572767209625076,0.0710348794645191,0.0852839128292749,0.0981475838735776,0.1102027916776402,0.1259731891023948,0.138668418654431,0.1507995576914898,0.1623934359762278,0.1733047670058918,0.1864908185329016,0.1994682000951186,0.2112189343968355,0.2220570391666029,0.2325041787630861,0.2439075700034323,0.2543524084627996,0.2636110236928471,0.2722759933812362,0.2809098089492782,0.2888809231978909,0.2963833169682517,0.3033888488315741,0.3094522598024543,0.3150505405962941,0.3207870079661163,0.3260904937730771,0.3314431744497985,0.336403979764785,0.3407136828779407,0.3401307470877835,0.3398710776969914,0.340339097807995,0.3405262243834664,0.3401422280409426,0.3400542786611263,0.3388653763849921,0.3395783003829151,0.3409492141302298,0.3416724825969471,0.3424351612055699,0.3427462473761337,0.3445032333921223,0.3451922215252263,0.3463124141090243,0.3473821989528796,0.3480542571190961,0.351223837117254,0.3519328442437923,0.355052766229613,0.3561950951683748,0.357188566552901,0.358094877139789,0.3591333639565151,0.3605410006620637,0.3653206650831354,0.3699236641221374,0.368816778789078,0.3688058489033306,0.3642184557438794,0.0,1.8095973699303216,60.41628869085933,199.98349547342312,304.96273842707427,fqhc4_100Compliance_baseline,27 -100000,95656,42830,403.33068495442,6653,68.43271723676507,5168,53.54603997658276,2009,20.65735552396086,77.25911226955019,79.65460552298131,63.27736057920528,65.04537014112819,77.01615996308222,79.4112983384152,63.18932502840626,64.95942150235649,0.2429523064679699,243.30718456612036,0.0880355507990202,85.948638771697,111.92896,78.72362499300026,117011.95952161914,82298.67963640572,304.78752,194.76365515101756,318152.12846031616,203145.72667070545,316.13956,152.0446367842913,327315.53692397755,156523.92125672422,3700.4053,1665.1092910259656,3834356.3707451695,1707650.1685873568,1257.53221,550.6289373676618,1301916.3356193025,563493.4179368194,1970.766,815.5296220887071,2028350.3805302333,826227.8823746166,0.37869,100000,0,508768,5318.725432800869,0,0.0,0,0.0,26086,272.2045663628,0,0.0,29138,301.54930166429705,1865826,0,67051,0,0,0,0,0,62,0.6377017646566864,0,0.0,1,0.0104541272894538,0,0.0,0.06653,0.1756845968998389,0.301969036524876,0.02009,0.3276059564719358,0.6723940435280642,25.02051110438441,4.47100016688084,0.3353328173374613,0.2155572755417956,0.227360681114551,0.2217492260061919,11.31796360860504,5.836316255890595,21.48541562395264,12653.262409783272,58.70328560468233,13.23543385820177,19.79738268050562,13.068408526507934,12.602060539467004,0.5661764705882353,0.7827648114901257,0.7184073860357761,0.5625531914893617,0.1291448516579406,0.7417624521072796,0.9261213720316622,0.8729792147806005,0.7471698113207547,0.1798245614035087,0.5068599534040901,0.708843537414966,0.666923076923077,0.5087912087912088,0.116557734204793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023398802710614,0.0047455358500897,0.0068509834967419,0.0090940497480084,0.0114247927158044,0.0136271973601124,0.015620857719681,0.0179364414998417,0.0202921663037589,0.0222531578193133,0.0244625116622409,0.0267581193334086,0.0290460272563641,0.031141832866326,0.0333230134158926,0.0355484784878971,0.0375012949342173,0.0395063266174654,0.0413351223723489,0.0434501594979463,0.0582573984283564,0.0721714267760078,0.0859557935632908,0.098364798416392,0.1100328408958911,0.1257585224565008,0.1392293476644646,0.1511622951867555,0.1624167388352524,0.1722427417969421,0.1861498473916372,0.1986587796845207,0.2105876459313469,0.2208115154569156,0.2306157103162351,0.2412204247948749,0.251210863656193,0.2610813553588543,0.270174082117639,0.2786495428020034,0.2866854603881715,0.2945846428068859,0.3018270257444537,0.3088001923539312,0.3146744032961943,0.3203781512605042,0.3259117949747734,0.3306458814374465,0.3352848779094673,0.3398470575783234,0.3396753807929135,0.3401411270834196,0.3400690553008433,0.3397828204270907,0.339408697730702,0.3379900301557019,0.337037037037037,0.3388394329047148,0.3392222508369817,0.3400444619742551,0.3416776377656573,0.3439674828987806,0.343585754530547,0.34427475795452,0.3448964372489114,0.3456928448590338,0.3473666220411883,0.3493463537564971,0.3523430903461863,0.3552699637926232,0.3599068025035405,0.3604688332445391,0.3632459741079886,0.3658629345097741,0.3666884877957542,0.3695652173913043,0.3749808605114071,0.3764895980609978,0.3772954924874791,0.3746588693957115,0.0,1.8159686326914173,58.07380170687784,201.73060900854037,287.1836888417501,fqhc4_100Compliance_baseline,28 -100000,95618,43027,406.8794578426656,6525,66.99575393754314,5054,52.2914095672363,2084,21.44993620448033,77.28554750318864,79.71749937089626,63.27381344368565,65.07192426664412,77.02824522118169,79.46040755230672,63.17933740381048,64.98035960664207,0.2573022820069468,257.09181858954366,0.0944760398751682,91.56466000204944,111.19636,78.25384820020943,116292.28806291702,81840.08052898977,305.9091,196.4969754946597,319353.51084523834,204927.22656263443,313.6948,151.28305363102638,324552.6469911523,155515.04813917252,3676.74012,1661.529666525022,3807245.434959945,1699681.531223221,1298.01284,567.2330695789077,1343503.147942856,579241.1084451586,2053.32726,855.5150322534588,2115343.052563325,865580.3588352411,0.38012,100000,0,505438,5286.013093768956,0,0.0,0,0.0,26170,273.0971156058483,0,0.0,28917,298.9081553682361,1868414,0,67043,0,0,0,0,0,66,0.6902466062875191,0,0.0,0,0.0,0,0.0,0.06525,0.1716563190571398,0.3193869731800766,0.02084,0.3273974602247847,0.6726025397752153,24.85040861159023,4.569127288049293,0.3128215275029679,0.2176493866244558,0.2320933913731697,0.2374356944994064,11.172492951740317,5.505471420753166,22.19887527291356,12587.885455499892,57.27143760782042,12.988527808660615,17.956461262997305,13.010712845093014,13.315735691069488,0.5591610605461022,0.7727272727272727,0.704617330803289,0.5993179880647911,0.1325,0.7069767441860465,0.895774647887324,0.8418491484184915,0.7418181818181818,0.1767068273092369,0.5085015940488842,0.7140939597315437,0.6564102564102564,0.5556792873051225,0.120925341745531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024827725982975,0.0045542606173102,0.0070868699995938,0.0095339736748488,0.011750701989989,0.0139045930996546,0.0162703634564576,0.0182964203988231,0.0200979840648044,0.0224186313266831,0.0245381151198695,0.0265618577887381,0.0285226091342343,0.030367690261929,0.0324635765692277,0.0344128507742115,0.0361458268565151,0.0381767387759764,0.0401153289685968,0.0420991144165475,0.0574627333737534,0.0714390509725016,0.0843412742615146,0.0970447242269399,0.1097214446428005,0.1250185346014531,0.1374040934305328,0.1489094049167395,0.1602910491680488,0.1718862471663855,0.1849793927885549,0.1967541900652631,0.2090575248722335,0.2208721376136737,0.2311728973508108,0.2420008212823102,0.2524034162046145,0.2612424768388071,0.2703903630888118,0.2784400935393645,0.2856712719018888,0.2925903804939746,0.2992790741794726,0.305799416335403,0.3136481501771301,0.3185202563374368,0.3235201965133912,0.3288764259766745,0.33364905542869,0.3386231501057082,0.3388416384736693,0.3383289982522053,0.3378136327094763,0.3370131373343364,0.3373388260138903,0.3365207514734774,0.3351161757237176,0.3365229421258934,0.3380703706874411,0.3392959564095211,0.3402296258714321,0.3406854495416477,0.3422673477538837,0.3444606250700123,0.3454142901836209,0.3457250039076747,0.3468645175962249,0.3486443180747117,0.3513013100436681,0.3529877952131875,0.3563454089769879,0.3611480201966516,0.3653785538674904,0.3642998327504941,0.3639688642971021,0.3662502946028753,0.3641636141636141,0.3689300826113238,0.370722433460076,0.3778526000748223,0.0,2.154033933635427,57.00209568623813,190.3876206955136,285.8633764350768,fqhc4_100Compliance_baseline,29 -100000,95800,43058,405.7202505219207,6766,69.23799582463465,5264,54.26931106471817,2149,22.01461377870564,77.35864855579545,79.66468824626216,63.35358995694328,65.05468896431799,77.09546104535738,79.40236091341185,63.25665990116969,64.9611350237387,0.2631875104380725,262.32733285030463,0.0969300557735834,93.5539405792838,113.30572,79.7022538987971,118273.19415448852,83196.50720124958,310.7351,198.73366771565537,323675.33402922755,206763.60930652963,318.07139,153.84316369426017,327436.54488517746,157137.55802363026,3810.37908,1713.921132605316,3932117.4217119,1744041.4879225588,1236.60202,541.1160591372898,1274041.4300626304,548169.835989863,2117.18476,876.7661579491927,2170785.2192066805,880796.3411221962,0.38026,100000,0,515026,5376.054279749478,0,0.0,0,0.0,26549,276.40918580375785,0,0.0,29394,302.3173277661796,1860741,0,66825,0,0,0,0,0,64,0.6680584551148225,0,0.0,0,0.0,0,0.0,0.06766,0.177930889391469,0.3176174992610109,0.02149,0.3252420373228567,0.6747579626771433,24.88834334948676,4.522945684110176,0.3246580547112462,0.2180851063829787,0.2234042553191489,0.2338525835866261,11.347379667741668,5.7422615305871085,22.70413252645171,12650.061325157934,59.43062084430458,13.566204819739117,19.352511196828072,13.03879671781616,13.47310810992123,0.541983282674772,0.7804878048780488,0.6840257460503218,0.5714285714285714,0.0942323314378554,0.7181751287711553,0.935,0.8493449781659389,0.7065637065637066,0.1239669421487603,0.4806658130601792,0.6978609625668449,0.6235011990407674,0.5332606324972737,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022771896443535,0.0045174163619605,0.0069547938400397,0.0092037301998031,0.0115924654054822,0.0136310462336605,0.0157682434910157,0.0177185233543806,0.0196146537809288,0.0219214795720043,0.0241316794870481,0.0264224098140379,0.0285511743070252,0.030789178509318,0.0327978719016785,0.0348780764900901,0.0369385495669808,0.0388861819802821,0.0408209900907825,0.0429224314729795,0.0572120099317712,0.0717004014720642,0.0851440730375355,0.0974922750299539,0.1101145621449574,0.1260079686327559,0.1383602455496771,0.1501154243039967,0.1614435961774598,0.1726711271230056,0.1861957575104985,0.1993335713435677,0.2111404739377725,0.2220143743231269,0.2329931411082119,0.2433136409483379,0.2539873876890451,0.2629476692507623,0.2723259376950576,0.2808758321207191,0.288589749525441,0.2958448948052404,0.3021223174949073,0.3081434396737826,0.3142110063849194,0.3195169189395902,0.3243774492006059,0.3291163406345853,0.3347629475102686,0.3400287891393632,0.3401816026297354,0.3402254862822295,0.3395814556106354,0.3394244936873429,0.3391978840067165,0.3386817729464901,0.3374475164382476,0.3382500452205942,0.3384133289953595,0.3391503771522763,0.3406023235703275,0.3422138464590359,0.3434196672983786,0.343380654421494,0.3445171256849067,0.3451079117824456,0.3461847159318924,0.3479761829353265,0.3511755347357256,0.3528776114624189,0.3552932564736023,0.3600707281787494,0.3605278183086975,0.3610083256244218,0.3631638631638632,0.3653092722307966,0.3660907127429805,0.367827868852459,0.3694609088343212,0.3641779189833201,0.0,2.5655707682165616,59.46918781365945,196.20676462322305,295.5549687011584,fqhc4_100Compliance_baseline,30 -100000,95860,43105,405.69580638431046,6747,69.09034007928229,5314,54.84039223868141,2160,22.146880867932403,77.41454581429173,79.70416027240209,63.37712166936033,65.06840494793711,77.1429291152977,79.43244673617703,63.27593449305776,64.97001373979121,0.2716166989940234,271.71353622506444,0.1011871763025737,98.3912081458982,113.04282,79.53478861393783,117924.91132902147,82969.73567070502,310.43325,198.30924356211617,323272.87711245567,206306.4610495682,320.5027,154.65829376482696,330525.24514917587,158421.2816393482,3858.12667,1739.713667789104,3982071.614854997,1772168.6290309872,1327.01546,580.7008606442773,1365780.3359065305,587260.2179144943,2131.46374,897.5795475421859,2185747.5485082413,904288.3414548304,0.38102,100000,0,513831,5360.22324222825,0,0.0,0,0.0,26443,275.2451491758815,0,0.0,29573,304.68391404131023,1864153,0,66959,0,0,0,0,0,53,0.5528896307114542,0,0.0,0,0.0,0,0.0,0.06747,0.1770773187759173,0.3201422854602045,0.0216,0.3355817875210792,0.6644182124789207,24.997084712356678,4.514467768524992,0.3219796763266842,0.2117049303726006,0.2258185923974407,0.2404968009032743,11.031967794035731,5.500694028758149,23.090248770233632,12627.41479324242,60.002675537415,13.25940742226563,19.313393522353387,13.37801033405528,14.051864258740698,0.5513737297704178,0.7742222222222223,0.7019286966686148,0.5841666666666666,0.122848200312989,0.700594353640416,0.9027027027027028,0.8505747126436781,0.7007042253521126,0.1556420233463035,0.5007560483870968,0.7112582781456953,0.6512539184952978,0.5480349344978166,0.1145935357492654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024193956572354,0.0044779899701129,0.0070271859821328,0.0092684709560838,0.0113019615814615,0.0138076293002574,0.0158720456397718,0.0181259945326206,0.0201336111792105,0.0224408804516815,0.0246038493449558,0.0267722512283437,0.0288421030999866,0.0307765151515151,0.0328686902012537,0.0351683536459409,0.0370592617116371,0.0392981874332853,0.0413695018011564,0.0430653365649672,0.0573293570519905,0.0717047782283349,0.085289834574808,0.0983566965926392,0.110565835062186,0.1260853032511566,0.1389948300703449,0.1509205323355585,0.162068156114632,0.1732089496288838,0.1859211602186168,0.1985294912688544,0.2099692468187301,0.2205695925861164,0.2310085188238527,0.2414083166388117,0.2509117676581791,0.2602493339478624,0.2686286077328009,0.2772197853797084,0.2845507762789513,0.2918850004678581,0.2994616340294622,0.3057650119280242,0.3127362905872771,0.3181975138121547,0.3237364123628713,0.3291400341236089,0.3345657870838847,0.3395538168746035,0.3399328813833443,0.3394202299800317,0.3396213114522973,0.3397590709916268,0.3403619384674865,0.3385030343897505,0.3383784810727799,0.3397642190989097,0.3411678233222796,0.341220556745182,0.3418992320659299,0.3435719936708861,0.3444779621250209,0.3457670302163418,0.34661853188929,0.3485346266166041,0.3500854214123007,0.3520817657386506,0.3540108829208355,0.3574975173783515,0.3575776848991459,0.3595785237742243,0.3615918035859312,0.3624378484254934,0.3670024249207237,0.3708554572271386,0.3743119266055046,0.3721927317272356,0.3816878102592388,0.3831490659550133,0.0,2.31590481397299,59.12084879676905,203.50990113692225,296.190114433232,fqhc4_100Compliance_baseline,31 -100000,95722,43580,412.0682810639143,6665,68.5213430559328,5229,54.177722989490405,2092,21.541547397672428,77.36002699221102,79.73200501040358,63.33690834044432,65.08847654758692,77.09675989960249,79.4661298703571,63.24099558371682,64.99353985387248,0.2632670926085296,265.8751400464894,0.0959127567275075,94.93669371444469,113.77916,80.11682133882043,118864.16915651574,83697.39593700552,313.19671,200.03973193675284,326743.8833288064,208529.7026146057,320.86111,154.32531984248016,332333.8521969871,158993.19504829549,3783.40627,1706.7097339018112,3920337.4250433543,1751122.9670535172,1269.13701,553.8721061720348,1314327.6676208186,567215.1858685703,2064.43272,864.097595192562,2127185.0776206097,878394.6901502876,0.38334,100000,0,517178,5402.916779841625,0,0.0,0,0.0,26766,279.1521280374418,0,0.0,29596,306.2932241282046,1857076,0,66638,0,0,0,0,0,55,0.5745805561939784,0,0.0,0,0.0,0,0.0,0.06665,0.173866541451453,0.3138784696174043,0.02092,0.3265013616167407,0.6734986383832593,24.90890586501758,4.501244104474392,0.3279785809906292,0.211895199847007,0.2264295276343469,0.2336966915280168,11.260844219693237,5.705105057757656,22.377603492320876,12710.404859850618,59.19189638639872,12.927540976725814,19.415982514883936,13.289058263089736,13.559314631699229,0.5523044559189138,0.7644404332129964,0.6903790087463557,0.606418918918919,0.113747954173486,0.7056179775280899,0.9267605633802816,0.8490990990990991,0.7292418772563177,0.1312741312741312,0.4997431946584489,0.6879150066401063,0.6349331235247836,0.5689084895259096,0.1090342679127725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991765504248,0.0045008058875406,0.0066468445247252,0.0087669395964972,0.0108019040644452,0.0129322634515905,0.0152395514780835,0.0172691828777888,0.0193611040122668,0.0213558836176006,0.0236010580491705,0.0257381627037904,0.0278371930401875,0.0302402949870737,0.0321392459916221,0.0344278565816136,0.0363924542374988,0.0384028563421798,0.0403973165531228,0.0424077605159784,0.0570181392871688,0.071323914181057,0.0848193681030504,0.097827230086448,0.110664811183503,0.1260703186113871,0.1386717299757088,0.1512520086411476,0.1624251097322639,0.1730717664346315,0.1869782072412716,0.2000454452006622,0.2124396817806373,0.2233165719282903,0.2336658271838467,0.2439778050968535,0.2546659378172447,0.2647025750590352,0.2735096033923672,0.2821763473362415,0.2902177558312999,0.2973595315184739,0.304427018651906,0.3106227544910179,0.3160982364086868,0.3220044592813412,0.3277478131374438,0.3327611200122072,0.3376488865872605,0.3421723004632868,0.3417566274478092,0.3411158277744087,0.3413329192371218,0.341574335578246,0.3424280313179125,0.340878072717793,0.3398853269133299,0.340904242225322,0.3418619357705652,0.3425709336999804,0.3438396489978062,0.343397570337541,0.3453388055951085,0.3461168845681082,0.3472823472823473,0.3485322488138068,0.3500085660442008,0.3525936690465659,0.3551962722394803,0.356235727735267,0.3594870380584666,0.3622784945660902,0.3633200480799646,0.3646383467278989,0.3650075414781297,0.3710691823899371,0.3717654264278058,0.3693528693528694,0.3749308245711123,0.3739868776534156,0.0,1.739379347462444,59.29189686235755,200.45537077927915,290.89842788714907,fqhc4_100Compliance_baseline,32 -100000,95747,43341,407.80389986109225,6675,68.2736795930943,5170,53.34892999258462,2095,21.48370183922212,77.33346816806463,79.69560389431425,63.32120940122799,65.070269007564,77.07413743692562,79.43695798955554,63.22569488422922,64.97740034368162,0.259330731139002,258.6459047587084,0.0955145169987687,92.86866388237058,112.0999,78.87428252131085,117079.281857395,82377.81081528492,308.99593,197.3187074421645,322082.22711938753,205444.9414272177,318.71602,153.56649706453874,329018.13111637963,157412.14872409462,3735.08057,1688.7402597910402,3857060.816526888,1719891.7195260122,1265.90035,557.1984236171812,1305968.6360930367,565968.9885780065,2067.13536,865.8513440952852,2121814.1978338747,873613.0247180662,0.38186,100000,0,509545,5321.7855389725,0,0.0,0,0.0,26355,274.56734936864865,0,0.0,29334,302.3906754258619,1867632,0,67027,0,0,0,0,0,62,0.6475398707009097,0,0.0,0,0.0,0,0.0,0.06675,0.1748022835594196,0.3138576779026217,0.02095,0.3193062268979244,0.6806937731020757,25.25561337019782,4.48252247861678,0.3388781431334622,0.1994197292069632,0.2303675048355899,0.2313346228239845,11.091177641977849,5.531121921897959,22.375165249476964,12678.719974791196,58.29111803972099,12.020477822359751,19.777181353163257,13.312844955892748,13.180613908305231,0.5462282398452611,0.7681862269641125,0.6957762557077626,0.5701091519731318,0.1120401337792642,0.7159353348729792,0.9006410256410257,0.8845315904139434,0.7279151943462897,0.1510204081632653,0.4892792560061999,0.7107093184979137,0.62877030162413,0.5209251101321586,0.1019978969505783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024013374537717,0.0046140429156694,0.0069524795485455,0.0091853116299863,0.0114928500233925,0.0140618476921667,0.0160767442808791,0.0183809271090608,0.0208699562568987,0.0231644027719488,0.0251683872753554,0.0272162619988706,0.0293597416754077,0.0314521112255406,0.0335830134951095,0.0358254002708094,0.0374216929847269,0.0395658444967884,0.0418767608928441,0.0438898899107412,0.058645454925049,0.0724138652823711,0.085933729251044,0.099376334360506,0.1119559600518861,0.1272575392293702,0.1399424951990918,0.1513229315225952,0.1622325939058645,0.1731992150218228,0.1862604630118392,0.1986236894212354,0.2098537168959704,0.2203517752838485,0.2307539988119073,0.2416973965427505,0.25177510829277,0.2614690257518458,0.2705893035503496,0.2790774903523538,0.2869699983807915,0.2950698871279022,0.3016599817792449,0.3080812316539867,0.3141664340586657,0.3203018254779108,0.3259111083328124,0.3310028347337511,0.3364997605766866,0.3405538835207772,0.3404223776600762,0.340282077743378,0.3399794276374192,0.3394648103390885,0.3393003288543666,0.3383908963865042,0.3380943312384942,0.3393553482402883,0.3397072669691004,0.3407545278831699,0.3409671121790059,0.34310368713757,0.3450125733445096,0.3449950756558331,0.3455751145406318,0.3474252187123474,0.3490541812890524,0.3519838516369141,0.3550218648610523,0.359360076408787,0.3616419612314709,0.361432301380082,0.3650291212965307,0.3648420729837473,0.3634813902831708,0.3645896107026636,0.3684780925839913,0.3739452562255608,0.3814229249011858,0.3783255086071987,0.0,2.4432716742948437,56.9226442456372,195.28124287198213,292.5162782360793,fqhc4_100Compliance_baseline,33 -100000,95789,43391,409.1805948490954,6609,67.65912578688575,5179,53.388176095376295,2060,21.108895593439748,77.34149214859087,79.67998239003242,63.33904717832892,65.0720191862146,77.08728952369859,79.42688981470502,63.24530232352505,64.98116787435758,0.2542026248922866,253.09257532740048,0.0937448548038659,90.85131185702268,112.96208,79.50447928346408,117927.79964296528,82999.36243562843,311.12877,199.63779684220296,324126.9561223105,207734.70528161168,321.35769,155.45217288162615,330483.52107235696,158554.86035109643,3753.98989,1692.686399940191,3878231.759387821,1726310.8811452144,1253.90235,544.7456529507318,1293488.4068108029,553169.856919762,2031.18,846.1974495972523,2084710.1441710424,852978.2267876405,0.38226,100000,0,513464,5360.354529225694,0,0.0,0,0.0,26586,276.8480723256324,0,0.0,29672,304.7949138210024,1862865,0,66798,0,0,0,0,0,57,0.595057887648895,0,0.0,2,0.0208792241280314,0,0.0,0.06609,0.1728927954795165,0.311696171886821,0.0206,0.3299132947976879,0.6700867052023122,24.974789455478952,4.458218523949046,0.3222629851322649,0.2122031280169917,0.2311256999420737,0.2344081869086696,11.1208945073484,5.702199222303399,21.94421698481541,12688.827939069704,58.55942785009698,12.979688956675105,18.89572452019906,13.3194640685737,13.364550304649123,0.5508785479822359,0.7515923566878981,0.7177950868783702,0.5714285714285714,0.1194398682042833,0.7108614232209738,0.9042553191489362,0.8654292343387471,0.7304964539007093,0.1219512195121951,0.4953173777315297,0.6721991701244814,0.6663974151857835,0.5224043715846994,0.1188016528925619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0050383706902669,0.0073570450048201,0.0098870056497175,0.011934679757847,0.014046918132646,0.0158595789817232,0.0178394551154407,0.0202570736146758,0.022629762745881,0.0245670518512442,0.0267605923065864,0.0286869227129662,0.0307397525573537,0.0324301456931776,0.0344813329474511,0.0365929423459244,0.0386933474413635,0.0408474998960887,0.0429944096857139,0.0580526689203288,0.0721029683922167,0.0858439258506324,0.0987263823795212,0.1102106627604303,0.1265101628809098,0.1394725125617486,0.1514149288015909,0.1623813945545558,0.1731707055658567,0.186383940584468,0.1990097083180176,0.2103381967907699,0.2214997595838615,0.2322932471359148,0.2427157596422087,0.2524687367646731,0.2624369870549798,0.2717378994813254,0.2803621854599915,0.2880035097036378,0.2948779320248923,0.3023390499604051,0.3087594560949918,0.3151700457418799,0.3207203436772978,0.3261203825239077,0.3309956676957477,0.3365653118212845,0.34101145792177,0.3415064124130321,0.3418830454395423,0.3425680626796685,0.3417377475784299,0.3416317182713185,0.3406315595936691,0.3391942669605061,0.340166833939354,0.3408697737355052,0.3417537954740762,0.342794308377662,0.3432844702755241,0.344221264065622,0.3445481887148179,0.3447434534737655,0.3461407506351326,0.3485262401150251,0.3517699818708056,0.3560495756241343,0.3570912883041874,0.3585272214255978,0.3612441478770919,0.3623355053021592,0.3624854368932039,0.3639575971731448,0.364835692012473,0.3651685393258427,0.3723184818481848,0.373844861383366,0.3846153846153846,0.0,2.630340090134671,58.26137672804516,192.10323542261483,293.96240591739985,fqhc4_100Compliance_baseline,34 -100000,95698,43033,405.7660557169429,6754,69.3222428890886,5273,54.47344772095551,2135,21.87088549394972,77.3419109081298,79.71120445597707,63.33255108723839,65.08099475642288,77.08649722916915,79.45907004142558,63.23763669331861,64.99035469542713,0.2554136789606502,252.1344145514917,0.0949143939197725,90.64006099575296,111.4498,78.39098038143295,116459.90511818428,81914.96204877109,305.99931,195.28093795715847,319122.0924157245,203426.4958067656,314.61671,151.65553512918268,325212.5645259044,155667.107184961,3790.77078,1715.9074216002798,3916938.086480386,1748801.4917765053,1252.93391,548.8325636738341,1290919.5071997324,555166.0470164833,2098.1901,877.5814455161255,2151337.520115363,881640.8420318015,0.38148,100000,0,506590,5293.632050826559,0,0.0,0,0.0,26099,272.0746515078685,0,0.0,29055,300.1525632719597,1874989,0,67258,0,0,0,0,0,59,0.6060732721686974,0,0.0,1,0.0104495391753223,0,0.0,0.06754,0.1770472895040369,0.3161089724607639,0.02135,0.3279842342342342,0.6720157657657657,25.053264842653512,4.563253550479676,0.3368101649914659,0.2044377014981983,0.2287123079840698,0.2300398255262659,11.503632213695694,5.924164139608572,22.70567073031357,12702.840278666225,59.31645067834227,12.797180072037648,19.765378347288028,13.456834495053334,13.297057763963268,0.551868006827233,0.7792207792207793,0.6751126126126126,0.6144278606965174,0.1071723000824402,0.7123695976154992,0.9222222222222224,0.8364485981308412,0.7602739726027398,0.1679389312977099,0.4970745357415416,0.7075208913649025,0.6238872403560831,0.5678336980306345,0.0904311251314406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0047025438329786,0.0067762223574761,0.0090091005119037,0.0113779639646967,0.0135415818196627,0.0157802990917153,0.0180554421490977,0.0201553556827473,0.0225470027735986,0.0248798039959405,0.0268924302788844,0.0287012946947338,0.0307944324819962,0.0324844182110868,0.0346713253460413,0.0368586756146564,0.0389277486041636,0.0409054516340345,0.0430401117167064,0.0576095584241968,0.0710435137596432,0.0847672808158811,0.0976081788922313,0.1091666666666666,0.1243188911812939,0.1371872944471557,0.1503353561162567,0.1610952640406824,0.172482969479161,0.1856331929469296,0.1985064126846691,0.2105320410316657,0.221557541092969,0.232183908045977,0.2436256545951751,0.2539930400642455,0.2634975602077758,0.2719681412314639,0.2806589733021935,0.2888189413752401,0.2974013812478052,0.3047925743512029,0.3106726285378631,0.3158515241382663,0.3222642999000826,0.3275473116931946,0.3320475117442615,0.3373921604186637,0.342487968883908,0.3416650954830716,0.3414557005541728,0.3409285905171808,0.3414345504401789,0.3421173745861603,0.3408611034609382,0.3397530161440792,0.3404555599317316,0.3420508349999145,0.3434388574084336,0.3443865111219475,0.3461675438249377,0.3463438215944679,0.3473032397020551,0.347988706836225,0.3494243851386708,0.3502719725164614,0.3515699033419672,0.3553570167384702,0.3597536591218108,0.3630657870624885,0.3634027517533058,0.3636190597043335,0.3679071197908657,0.3694352159468438,0.370755619320899,0.3690696241528035,0.3695517455071266,0.372615039281706,0.3714727483571705,0.0,2.3928368354190925,58.71631283760927,196.78877000853095,297.28912027217825,fqhc4_100Compliance_baseline,35 -100000,95717,43056,406.21833112195327,6737,69.2249025773896,5263,54.4939770364721,2060,21.197906328029504,77.33810060160408,79.72051844399748,63.31256206328344,65.07491608899535,77.08688666133905,79.46776279269369,63.220936441262,64.98458239757241,0.2512139402650319,252.7556513037865,0.0916256220214393,90.33369142294134,113.90236,80.08877946901988,118999.09107055172,83672.47141993573,311.9358,199.43181385724108,325395.8022085941,207857.6573202681,319.46791,153.94401616045675,330160.4208238871,158132.075690031,3757.00418,1691.868988766301,3894109.40585267,1736566.6587610357,1263.45026,553.9593058308129,1306294.7229854676,565056.928093673,2027.84198,839.5705737570256,2089439.57708662,853276.4220264779,0.38051,100000,0,517738,5409.049594115988,0,0.0,0,0.0,26631,277.714512573524,0,0.0,29536,305.0346333462185,1855764,0,66660,0,0,0,0,0,43,0.4492409916733704,0,0.0,1,0.0104474649226365,0,0.0,0.06737,0.1770518514625108,0.3057740834199198,0.0206,0.3306497175141243,0.6693502824858757,24.96973430309735,4.417580879483076,0.3363100893026791,0.2143264297928938,0.2283868516055481,0.2209766292988789,11.203104140095563,5.727229563370178,21.8495878466145,12624.06161514118,59.51088451787239,13.381992212346878,20.040677685984225,13.338938310237433,12.749276309303855,0.5700171005130154,0.8067375886524822,0.6937853107344633,0.6014975041597338,0.1195184866723989,0.7393538913362702,0.9585492227979274,0.8580931263858093,0.7536231884057971,0.1686746987951807,0.5108946423993848,0.7277628032345014,0.6376042456406369,0.5561555075593952,0.1061269146608315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026149885467555,0.0049097179955366,0.0069141267488374,0.009279021078521,0.0116400932021448,0.0138929913729005,0.016135283438386,0.0186809931874125,0.0207291506877332,0.022925305892592,0.0248566945928485,0.0271494141928594,0.0291595549980464,0.0310997147476495,0.0327838412180981,0.0349492089408798,0.0369423190416532,0.0387911358260364,0.0406898774313605,0.0427291666666666,0.0570906432748538,0.070593407513634,0.0841045011016682,0.0970394909817531,0.1093652785540288,0.1247858004188791,0.1373383271971055,0.1495453480695926,0.1600786501244937,0.1709075305728384,0.1843811945186589,0.1976075778078484,0.2097202568847284,0.2208762830192808,0.2312517884264048,0.2418596918984816,0.2529369723500245,0.2622710952536383,0.2705768794004088,0.2787674530572941,0.28661099980312,0.294143131469252,0.3011099134101704,0.3073916431868593,0.3124057956921282,0.3184258927799928,0.3249307444501548,0.3299933710672582,0.3351354855438869,0.3395187278778593,0.3398760608918227,0.3406314977761253,0.3412025031006878,0.3405710155402963,0.3396321791231174,0.3387984846858177,0.338438633447899,0.3392326509169115,0.3406204597897616,0.3407654682423506,0.3416055931472699,0.3418264479146076,0.3422680844816376,0.3424887892376682,0.3441383296406897,0.3437532481031078,0.3451108584422968,0.3480595327807084,0.3511715056211256,0.354439390943247,0.3553446327683616,0.3553013128064533,0.3558358833447824,0.3621833534378769,0.3650601286473385,0.3645907053550365,0.3634985599514931,0.3633079084704937,0.3676751158353775,0.3722349351639969,0.0,1.8982650320604115,60.48333771705023,199.65164245845185,290.51457244801406,fqhc4_100Compliance_baseline,36 -100000,95651,43205,407.97273421082895,6603,67.90310608357467,5144,53.20383477433587,2036,20.89889285004861,77.27782633283482,79.68764261111741,63.2892740309558,65.07176708707229,77.02864472312781,79.44027884707711,63.19703800971028,64.98287343040556,0.2491816097070085,247.36376404030125,0.0922360212455188,88.89365666672688,112.05106,78.83126553556635,117145.7276975672,82415.51634124719,308.08094,197.07634177397483,321535.5615728011,205483.87552035507,312.47489,150.38139089189298,323637.5050966535,154806.83142288323,3691.02638,1665.4710576932084,3820460.423832474,1702808.4156916358,1239.77763,541.055607073419,1280495.739720442,550008.4072254985,2002.9148,836.2242847320931,2057812.6313368396,842953.4902562429,0.38128,100000,0,509323,5324.805804434873,0,0.0,0,0.0,26278,274.1215460371559,0,0.0,28881,298.7945761152523,1867354,0,66973,0,0,0,0,0,51,0.5331883618571682,0,0.0,1,0.0104546737619052,0,0.0,0.06603,0.1731798153587914,0.3083446918067545,0.02036,0.3230304772857964,0.6769695227142035,25.075413215405923,4.417750133816246,0.3217340590979782,0.2208398133748056,0.2301710730948678,0.2272550544323483,11.146724486792618,5.751172430931874,21.60178799914368,12659.848403346496,58.17718512004553,13.36390568250945,18.82865060860156,13.082826017589417,12.901802811345105,0.5509331259720062,0.7596830985915493,0.6942598187311179,0.5869932432432432,0.1086398631308811,0.7031857031857032,0.9052924791086352,0.8523809523809524,0.7490196078431373,0.1225296442687747,0.5001296344309049,0.6924066924066924,0.6404858299595142,0.542518837459634,0.1048034934497816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0043099951322407,0.006710251152214,0.0088010813337805,0.0113128846838598,0.0136714173653487,0.0157470678225395,0.0179353876638034,0.0200896053681389,0.0221878489259483,0.0244615384615384,0.0264601351767775,0.0287392986499835,0.0307958691484756,0.0329134833780714,0.03516538071696,0.0369614324497958,0.0388748715073357,0.040780437044745,0.0428535680026692,0.0579125564286908,0.0725461857483976,0.0864586285438381,0.0993338454900392,0.1107265340579327,0.1258534726412398,0.1387865206724795,0.1510505455165359,0.162083533878817,0.1726433326175649,0.1859798480521579,0.1984364171864172,0.2104541298384638,0.2209831688152509,0.2313349038948457,0.2426220424447276,0.2522527552285137,0.2616309167435683,0.2707865168539325,0.2799281061464665,0.2878207871210982,0.2944387940003974,0.3011084690823485,0.3076213080168776,0.3141527318685592,0.3198741672834937,0.3259429058158907,0.3307396464775101,0.3356113755138563,0.3402142187355547,0.3407444382985038,0.3404675166970249,0.3405514591632059,0.3407161688443376,0.3407007764877714,0.3389463333691828,0.3376402530116652,0.3384493644801266,0.3403963519166152,0.3413109291868943,0.3423579145138563,0.3432175655036991,0.3442798613299716,0.3451775512490198,0.3466313125225985,0.3473552360324626,0.3480895087308165,0.350732340008225,0.3537817807879153,0.3559838134540646,0.358356290174472,0.3603632478632478,0.3607013989998101,0.3626145199784433,0.3670369315484667,0.3654981327550897,0.3662410464029897,0.3641846921797005,0.3717114568599717,0.3802103622906116,0.0,2.1475881875505807,56.72017992122113,198.26173539421015,289.0046130462812,fqhc4_100Compliance_baseline,37 -100000,95811,42900,405.06831157174014,6670,68.35332059993111,5213,53.73078247800357,2135,21.76159313648746,77.39792083527668,79.70101199327848,63.37134666233784,65.07129387172677,77.12551179832725,79.43089859435322,63.27075490496893,64.97442384918875,0.2724090369494263,270.1133989252611,0.1005917573689032,96.87002253801325,113.4463,79.81084005161951,118405.88241433656,83299.83681583482,311.77294,199.7028706160493,324707.53880034655,207738.0494560525,319.85077,154.46809480427507,329496.2269468016,157848.47728966514,3762.22885,1703.6376149321884,3881180.68906493,1732969.9152181388,1259.89863,554.4096700447176,1295372.35807997,559325.4008950228,2096.24748,880.3800114902142,2141116.009643987,881559.8146171004,0.37898,100000,0,515665,5382.085564288025,0,0.0,0,0.0,26644,277.34811242967925,0,0.0,29522,303.8064522862719,1861502,0,66719,0,0,0,0,0,62,0.6366701109475947,0,0.0,0,0.0,0,0.0,0.0667,0.175998733442398,0.3200899550224887,0.02135,0.3324779013401768,0.6675220986598233,24.814553806766316,4.511804764555308,0.3228467293305198,0.2234797621331287,0.2211778246690965,0.2324956838672549,11.186928758535927,5.670720502489971,22.75071259704877,12510.491029254645,58.85710005903106,13.74125563049387,18.97941550795001,12.819422037531483,13.317006883055702,0.5547669288317667,0.7811158798283262,0.6981580510992276,0.5845620121422377,0.1097359735973597,0.7038690476190477,0.9151670951156812,0.825287356321839,0.75,0.1654411764705882,0.5029723442750065,0.7139175257731959,0.6538461538461539,0.5392265193370166,0.0936170212765957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0043368561845798,0.0064607738729144,0.0086512393001837,0.0107860279765777,0.0130263988113411,0.0153043549143078,0.0173222884191626,0.0194129126521103,0.0214751230292303,0.0235951027099021,0.0258427888462564,0.0275135101814371,0.0295861032786547,0.0316635745207173,0.033772830991296,0.0357327595125281,0.0376650566945129,0.0397096543058598,0.041776380837401,0.056507724565265,0.0699627646222073,0.0832992544590896,0.09668397922493,0.1089419924736736,0.1245863509013057,0.1373441079155001,0.1489642545400353,0.1601918926426907,0.1709807875907789,0.1842309349418354,0.1969559291231258,0.2081136034968304,0.2190510557797242,0.2290585129784426,0.2406736870079394,0.2509507399600745,0.2599260117166856,0.2685526390384942,0.2770339855818743,0.284911485494259,0.2915205908474734,0.298754450503306,0.3050084411930219,0.3103690855943818,0.3164254774561921,0.3221442134719168,0.3266052715147666,0.3319189671677317,0.3364333324551466,0.3360381540941761,0.3356813313560718,0.3369523943463891,0.3362710593122548,0.3368399186907429,0.3357276033866185,0.3346505856503801,0.3354053566449623,0.3355311480450267,0.3364609583042911,0.3386005360925228,0.3396745041428543,0.3404567665625065,0.3412604042806183,0.3438096388452711,0.3457016418340359,0.3458333333333333,0.3496681170006669,0.3509106984969053,0.3544450668160358,0.3586000460511167,0.3579967689822294,0.3617891373801917,0.3624026524789883,0.3643314536939692,0.3674278846153846,0.3642147734326505,0.3648235054070597,0.3635365183964854,0.3641574321742453,0.0,2.533679628622058,58.747816824922445,193.65544891471868,294.3225709759687,fqhc4_100Compliance_baseline,38 -100000,95557,43138,408.761262911142,6643,68.33617631361386,5183,53.6956999487217,2037,20.98224096612493,77.19945181010942,79.67229311800628,63.224607941291474,65.05461701154681,76.94971100632175,79.42177500876055,63.133050277472485,64.96525502371311,0.2497408037876738,250.51810924573203,0.091557663818989,89.36198783369775,113.01268,79.47282689397086,118267.29595947968,83167.98025677959,307.62899,196.728602406676,321396.2661029543,205339.47529398784,315.41504,152.1214133740551,327155.66625155666,156882.837394272,3731.89139,1672.4665011741272,3870059.357242274,1714879.8425799548,1262.51797,548.5589679021263,1307638.8542963883,560483.7509571525,2010.25198,829.4046939980545,2072884.100589177,840987.1985716528,0.38062,100000,0,513694,5375.786179976349,0,0.0,0,0.0,26338,275.0609583808617,0,0.0,29180,302.40589386439507,1856852,0,66683,0,0,0,0,0,43,0.4499931977772429,0,0.0,0,0.0,0,0.0,0.06643,0.1745310283222111,0.3066385669125395,0.02037,0.3232845248349124,0.6767154751650876,24.70824414226252,4.440723093425612,0.3212425236349605,0.2218792205286513,0.226509743391858,0.2303685124445302,11.100700171511122,5.696204588196551,21.568756877311607,12628.572453583263,58.56761286801647,13.700480827547716,18.80974002955027,13.127235630835576,12.930156380082911,0.5624155894269728,0.7852173913043479,0.7171171171171171,0.5834752981260647,0.1113902847571189,0.743947175348496,0.940149625935162,0.8683602771362586,0.7542662116040956,0.1694915254237288,0.4976439790575916,0.7022696929238985,0.663961038961039,0.5266742338251986,0.0970772442588726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002311177788365,0.0044236115338568,0.0064789991063449,0.008611924516024,0.0109439263753715,0.0130379824257375,0.0152982599377455,0.0172082566932352,0.0191874744167007,0.0214492872441816,0.0235995770758697,0.0260146216569154,0.0280735721200387,0.0299766870912504,0.0320043816137566,0.0339516396157668,0.0358935534721646,0.0377784013552416,0.0397283389929376,0.0417797636447154,0.0566138396359642,0.0706773067122468,0.0836539472301061,0.0966892162441255,0.1088222548698381,0.12447785246284,0.1371775094419915,0.1499482385084152,0.1614831638829667,0.1713824810453298,0.1848891960775843,0.1974649476928419,0.2095933150063272,0.2207950332360748,0.2318567077208316,0.2422690718443151,0.2516505897361294,0.260590399241689,0.2697375907508136,0.2792957309719877,0.2870032123763467,0.2950579349814702,0.3014438077612082,0.3079325421611493,0.3137484166423073,0.3199490829996539,0.3250737833594976,0.3301861515495617,0.3359435873461119,0.3413349565953842,0.3413042597170996,0.3412311810893234,0.3414954458801101,0.3415181805012313,0.3416492693110647,0.3400952820039957,0.3389881661504249,0.339998022021494,0.3410983125332601,0.3430596680125617,0.3437023080546396,0.345076999503229,0.3461530347461024,0.347283158960513,0.347993509481485,0.3499711028214154,0.3516916266636005,0.3531534954407295,0.3549849477598725,0.3568266124207251,0.3614452341899034,0.3630816575582321,0.3637564473518682,0.3635184620079341,0.3626806833114323,0.3665120704007611,0.3663109756097561,0.3706827309236948,0.3737677984665936,0.3758620689655172,0.0,2.148765209086726,60.28043909337082,186.7211528270436,294.9602294216735,fqhc4_100Compliance_baseline,39 -100000,95664,42865,405.0635557785583,6735,69.05418966382338,5231,53.93878575012544,2178,22.349055025924063,77.33990302576841,79.7307135762591,63.32261558699434,65.08904896542802,77.07180288455437,79.46514002398199,63.22425283681709,64.99464168218047,0.2681001412140347,265.5735522771181,0.0983627501772446,94.40728324754843,112.99244,79.47476821335994,118113.62686067904,83076.75636954333,310.15685,198.4075174812028,323429.81685900653,206615.8851696252,316.22098,152.91405156933854,325828.1171600602,156226.3307696629,3794.46036,1713.8293796797154,3913541.196270279,1738643.2493301898,1254.92569,554.2592122345178,1291516.808830908,559206.3794837887,2139.12558,888.301612249129,2194882.6099682217,892179.8804083223,0.37882,100000,0,513602,5368.801220939957,0,0.0,0,0.0,26492,276.1017728717177,0,0.0,29218,300.8028098344205,1863331,0,66863,0,0,0,0,0,63,0.6481016892456932,0,0.0,0,0.0,0,0.0,0.06735,0.1777889234992872,0.3233853006681514,0.02178,0.3226489692177351,0.6773510307822649,25.014183282060795,4.523959838471546,0.3188682852227107,0.2077996558975339,0.239151213917033,0.2341808449627222,11.13979847314268,5.568326378932721,23.10031063520829,12608.649368613593,59.19499874755154,12.857397297052811,18.91096245199199,13.983493394472736,13.443145604034012,0.5482699292678265,0.7617295308187673,0.6942446043165468,0.5811350919264588,0.1265306122448979,0.7223459539717891,0.908355795148248,0.8666666666666667,0.7418300653594772,0.18,0.4878990731204943,0.6857541899441341,0.6362179487179487,0.5291005291005291,0.1128205128205128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044498504890781,0.0068593925987559,0.0089078942022508,0.0113582054645475,0.0134062175532889,0.0155339014147673,0.0176165591573446,0.01959661838218,0.0218635167917131,0.0238766492726284,0.0260324173398893,0.0281036947155182,0.0303033424318895,0.0322936878173636,0.0341604631927212,0.036001036001036,0.037906230862647,0.0402155369699995,0.0421335723890632,0.0568061924808574,0.0709821288357046,0.0842583460981597,0.0972574350126766,0.1097104277651774,0.1250674424755355,0.1372856900356476,0.1495460399569988,0.1609010028944023,0.1714218319448465,0.1846770198375945,0.1975782890038306,0.2093157299460588,0.2208858614242447,0.2306693229722738,0.2419365557573878,0.2529819354406793,0.2623424842484248,0.2721290644641601,0.2807280808265939,0.2881191211689979,0.2945950370699534,0.3013205850333696,0.3083152636181759,0.3144456315866155,0.3198157136169898,0.3253055760593512,0.3303697485404663,0.3349612664196699,0.3389969239705863,0.3390166320726743,0.3393235836844859,0.3400936477490691,0.3388112647505972,0.3390607784163664,0.3378152548869298,0.3376697459950245,0.3376132309665116,0.3383850464734828,0.3400821281913944,0.3406832414594817,0.3408609599208312,0.3416123009796312,0.342394720301697,0.3441624365482233,0.344867328496215,0.3460204637299017,0.3489064033171905,0.3510209849501872,0.3533556245521853,0.3527719426431637,0.3544668587896253,0.3574093985200177,0.3605592909535452,0.3617442079487662,0.3601094847078424,0.3621036349574633,0.3587943848059455,0.3609701071630005,0.3606366459627329,0.0,2.79859717546321,58.80785111573432,197.17751276481908,292.65332007039694,fqhc4_100Compliance_baseline,40 -100000,95783,42994,404.2888612801854,6765,69.36512742344675,5284,54.56083020995375,2088,21.35034400676529,77.331780499572,79.67166894662971,63.32970022966426,65.06222738986953,77.07245581680638,79.41460773270533,63.23456189685771,64.9704957520038,0.259324682765623,257.06121392437353,0.0951383328065489,91.73163786573468,111.936,78.73432452832337,116864.1616988401,82200.72928215172,309.29943,197.901462909211,322323.9301337398,206021.4891047587,315.01847,152.42163776687198,325515.4254930416,156465.45523852084,3780.53344,1703.8495007468098,3909800.0167044257,1741686.7405978208,1256.39944,547.8990273938185,1299371.600388378,559683.587138558,2049.36042,856.3909634075618,2100232.003591452,862388.2009846861,0.37963,100000,0,508800,5312.007349947276,0,0.0,0,0.0,26491,275.9571113871981,0,0.0,29051,299.8026789722602,1868418,0,67051,0,0,0,0,0,66,0.6890575571865571,0,0.0,0,0.0,0,0.0,0.06765,0.1781998261465111,0.3086474501108647,0.02088,0.3112173179645769,0.6887826820354231,25.14171135540337,4.441525626558506,0.3319454958364875,0.2129068887206661,0.2312641937925813,0.2238834216502649,11.179361953905618,5.725361333886312,22.35939841717264,12640.454086450278,59.563879702883845,13.276875295849363,19.766753154937746,13.558620074604557,12.961631177492178,0.5649129447388342,0.7795555555555556,0.7029646522234891,0.5900163666121113,0.1301775147928994,0.7390659747961453,0.921875,0.8713968957871396,0.7644927536231884,0.1638655462184874,0.5052096569250317,0.7058029689608637,0.6446661550268611,0.5391120507399577,0.1216931216931216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385414028868,0.0047950204776773,0.0070829147513369,0.0094477630135316,0.0116653953724891,0.0139919958451715,0.0162517077547358,0.0184776838580587,0.0208644272249596,0.0230946409377079,0.0250645835896174,0.0274041522065014,0.029325271968248,0.0314273647778659,0.0335727702437715,0.035551833932928,0.0373043901529666,0.0393918021905078,0.0415038656579931,0.0436683950771537,0.0589984660816211,0.0729975106164885,0.0860491200117401,0.0989513281775386,0.110631124222948,0.1261451652102243,0.1390779014308426,0.1509644626868845,0.1620938050264126,0.172409359732579,0.1856512378902045,0.1975878853434289,0.2093460789751286,0.2210519408078222,0.2308386528725511,0.2412883782256545,0.2513947779513501,0.2610226301345211,0.2701467486221053,0.2788043229381325,0.286023171380339,0.2933144734227231,0.3009643258593149,0.3072433546655161,0.3131559766763848,0.3192895905278737,0.3249896643740369,0.3296060181053168,0.334388500408661,0.3393206449907481,0.3395649126590468,0.3396138124664529,0.338899692793326,0.3389286024368361,0.3382744712833564,0.3369415016121603,0.3362392022357723,0.3366970664735126,0.3370312580374136,0.3377582968065122,0.3392420767698034,0.340228245363766,0.341569675667712,0.3431330713082537,0.3439072783584979,0.345994547551641,0.3463741551151335,0.3493751577884372,0.3527258649209869,0.3552426913412834,0.3606647438538662,0.3654113619343104,0.3665943600867679,0.3661483990147783,0.3720930232558139,0.3758373205741627,0.3824941905499612,0.376902780596712,0.3854282536151279,0.3842500989315394,0.0,2.35429135724944,59.16645198986615,194.77923411302476,301.83560262088423,fqhc4_100Compliance_baseline,41 -100000,95689,43353,409.2006395719466,6861,70.49922143611074,5346,55.30416244291403,2124,21.8520415094734,77.34192318165195,79.71624322332202,63.32298576779221,65.07447797189425,77.07674187022387,79.45009680262869,63.22550357220129,64.97904761467589,0.2651813114280799,266.1464206933317,0.0974821955909206,95.4303572183619,112.73658,79.2652221749822,117815.61098976896,82836.29484578395,309.97106,197.62195673601468,323385.7705692399,205975.09299503049,321.70076,155.10838189349803,332352.70511762064,159180.2018185143,3827.19714,1733.7998039879797,3959146.735779452,1771437.2435577556,1294.29769,570.0130760958056,1334652.342484507,577737.1130389131,2085.86304,875.7240913967356,2146855.2707207724,886203.1763772926,0.38325,100000,0,512439,5355.255044989498,0,0.0,0,0.0,26453,275.87287985034857,0,0.0,29693,306.51381036482775,1862833,0,66913,0,0,0,0,0,57,0.5956797542037225,0,0.0,0,0.0,0,0.0,0.06861,0.1790215264187867,0.3095758635767381,0.02124,0.3155191560244308,0.6844808439755691,24.97111814446546,4.524182295700997,0.3264122708567153,0.2220351664796109,0.2227833894500561,0.2287691732136176,11.316562790332306,5.781204294758285,22.75582787111149,12707.643476381816,60.35863458358026,14.006392377917535,19.77917076443725,13.076871780996646,13.496199660228834,0.5506921062476619,0.7792754844144903,0.6859598853868195,0.5650713685978169,0.1218315617334423,0.706983441324694,0.9211822660098522,0.8701298701298701,0.6666666666666666,0.158273381294964,0.4958301743745261,0.70550576184379,0.6196414653156664,0.5390295358649789,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021364276095298,0.0043178155502174,0.0066344076204388,0.0088772421638531,0.0109627490262678,0.0135102115615646,0.0158228493362967,0.018002103478909,0.0201132970673647,0.0223928735985255,0.0245670518512442,0.0266373662483826,0.0287063131261185,0.0307969707897583,0.0330002683787856,0.0349719769197361,0.036916957562072,0.0388711284563646,0.0410565723793677,0.0429522648410391,0.0571055517835692,0.0713687384821578,0.084575339015072,0.0976282172696087,0.1095893301819102,0.1251600613789089,0.137463502680894,0.1493332197179498,0.1610337972166998,0.1721869231099471,0.1859738019513772,0.1990318074011501,0.2108757646341729,0.2222830190744044,0.2327176258200871,0.2436235513107452,0.2541419193497968,0.2641823810864058,0.2729799641487599,0.2813806692557079,0.2892592592592592,0.29644412191582,0.3034081758325044,0.3102476126493593,0.3157894736842105,0.3213479542623133,0.3273750579741028,0.3331337579617834,0.337602678397633,0.3421449352023274,0.3424187579351144,0.3421655804705622,0.3431110734319585,0.3427686608202367,0.3430375984544508,0.342678125526602,0.3414537563556302,0.342478370999046,0.3426487208466043,0.3441371542985859,0.3444275496987103,0.3455024986118823,0.3461902060881074,0.3473743267504488,0.3473286120344944,0.3488444884970525,0.3483876486185955,0.3505900865460267,0.3534591636261577,0.3560419480416302,0.3586106564829969,0.3610299973453676,0.3631065501076904,0.3622472251786529,0.3631593741216153,0.3621196099165785,0.3633207547169811,0.3626175705423254,0.366932161494095,0.3721280602636534,0.0,2.1829958857254117,61.27365605229664,197.0633504800197,301.39560179540683,fqhc4_100Compliance_baseline,42 -100000,95739,43189,406.5114530128788,6659,68.4256154754071,5118,52.872914904062085,2045,20.952798754948347,77.32392886815877,79.6868397902338,63.31606620966248,65.06454720241562,77.06918629680344,79.43241343622995,63.22311074453332,64.97384080198495,0.2547425713553366,254.42635400385427,0.0929554651291653,90.70640043067613,111.60182,78.53000880915165,116568.81730538234,82025.0982453876,307.0525,196.918526124683,320115.6059703987,205079.96336360625,314.48411,151.66665667170395,324702.56635227025,155534.3608484363,3647.20741,1642.7280114175069,3772729.5146178673,1679037.9170635852,1229.80514,539.1996967211978,1271520.6028891047,550178.784738923,2004.08618,834.7640324714804,2056418.5755021465,842632.5215867774,0.38176,100000,0,507281,5298.582604790106,0,0.0,0,0.0,26315,274.23516017505926,0,0.0,28997,299.0526326784278,1868120,0,67113,0,0,0,0,0,54,0.5640334659856484,0,0.0,0,0.0,0,0.0,0.06659,0.1744289606035205,0.3071031686439405,0.02045,0.3259684361549498,0.6740315638450503,25.29478058584128,4.445408037664197,0.3241500586166471,0.2250879249706917,0.2246971473231731,0.226064869089488,11.34539752515044,5.834151024668908,21.87124038020853,12727.165696134934,57.918483143171045,13.629657274269146,18.70195772617097,12.809049857075893,12.77781828565502,0.5488472059398203,0.7552083333333334,0.6913803496081977,0.58,0.1080380293863439,0.7052551408987052,0.900804289544236,0.8697788697788698,0.7518248175182481,0.1158301158301158,0.4948751642575558,0.6854942233632862,0.6333865814696485,0.526255707762557,0.1057906458797327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025119774732342,0.0047856107230125,0.0071142955731016,0.0093986872320104,0.0113012165846116,0.0135641547861507,0.0157005077177171,0.0179039880776179,0.0200595037266509,0.0221050476092966,0.0244112490644575,0.0266024620881546,0.0287556030760373,0.0310967821680194,0.0331138812069179,0.0352890101711734,0.0373915024962194,0.0395329527763362,0.0418018467681557,0.043713797558028,0.05910049485311,0.0731367954136502,0.0862229865050488,0.0993291836648862,0.1113876001687051,0.1273652257607327,0.1401652997782564,0.1522884793509853,0.1630691345630093,0.1747207512381279,0.188609379877504,0.2014856784490122,0.2128788208182964,0.2228125409943591,0.2327857315651734,0.2435781035475441,0.2538159421583504,0.2637193235138572,0.2722318722114369,0.2816928863000504,0.2886494003128802,0.2957919776884587,0.3026501452540464,0.3084005569960626,0.3148425422098869,0.3205935362812631,0.3265902478177987,0.3319771964953003,0.3363058151609553,0.3413372492988305,0.3412935189060032,0.3408442158390446,0.3412498941007031,0.341749598018339,0.34272950636587,0.3417849587638348,0.3408774152676592,0.3413993499031421,0.3428864393745193,0.3439944283724419,0.3445431709968882,0.3457914324174519,0.3465637324830075,0.3475348878883587,0.3482420415933682,0.3473365206259634,0.3486042130501798,0.3512505138014987,0.353280486941751,0.3550305303907092,0.356277155270981,0.3572417465388711,0.358699084306915,0.3593427588842185,0.3579017264276228,0.3595115527355441,0.359579652756625,0.3581821805860076,0.3617363344051447,0.3643292682926829,0.0,2.27330076045837,57.766719230015084,193.6935404617325,286.4720809781565,fqhc4_100Compliance_baseline,43 -100000,95801,43424,409.10846442103946,6698,68.76754939927558,5249,54.28962119393326,2118,21.79517959102723,77.4066300966336,79.74575376698093,63.35719594835807,65.08779673227042,77.14260785390924,79.48143094735141,63.260524851354816,64.99380922086453,0.2640222427243657,264.32281962951265,0.0966710970032522,93.98751140588502,112.49634,79.18357100687008,117427.1041012098,82654.22177938651,310.05948,198.12475779590105,323152.7854615296,206311.91511143,320.77619,154.07945875050828,331944.45778227784,158564.01974341678,3798.74299,1697.6299194630835,3932024.6135217794,1738818.8322283523,1237.4906,537.9223954880284,1282364.7039174957,552134.1170635254,2081.8904,863.8050666610384,2143867.183014791,874844.2154483318,0.38284,100000,0,511347,5337.595640964082,0,0.0,0,0.0,26446,275.529482990783,0,0.0,29517,305.32040375361424,1866081,0,67032,0,0,0,0,0,62,0.6262982641099779,0,0.0,0,0.0,0,0.0,0.06698,0.1749555950266429,0.3162137951627351,0.02118,0.3233498935415188,0.6766501064584812,25.24516227603395,4.515943922886553,0.3232996761287864,0.2088016765098113,0.2408077729091255,0.2270908744522766,10.929350103135388,5.420509903909581,22.357250004978013,12727.10967745966,59.1255842442485,12.90533060136192,19.26064383147468,13.952834762396613,13.006775049015284,0.5427700514383692,0.7828467153284672,0.6847377725397761,0.5514240506329114,0.110738255033557,0.7007575757575758,0.904632152588556,0.8552338530066815,0.6944444444444444,0.1349206349206349,0.4896920335963349,0.7215363511659808,0.6233974358974359,0.5158102766798419,0.1042553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.004735251769382,0.0070529018378137,0.0091340438718592,0.0113607469411417,0.0135842447200668,0.0158642768295915,0.0180370540499157,0.0199315173506413,0.0220436985109757,0.0239103030551484,0.0262172284644194,0.0281720540623875,0.0303691655170993,0.0324505973672545,0.034592428904814,0.0367259109060437,0.039164869795986,0.0414116962588179,0.0433107756376887,0.058578017070473,0.0725572834419217,0.0856244431633562,0.0983079348397267,0.1106966746744215,0.1264054442471891,0.1397029986326489,0.152399281225744,0.1635046310128473,0.1740257514407524,0.1873211250026898,0.1996475218406712,0.2124811196714008,0.2236648139857391,0.2343358671294872,0.2451844885766443,0.2546752160579871,0.2642026932847732,0.2733282683388708,0.2818552264090472,0.2897630693447116,0.2970177857760535,0.3038128926167351,0.3095819858665708,0.3159160472234368,0.3219774937448387,0.3268091713938665,0.3316236923155242,0.3363480874883383,0.3417910447761194,0.3420598311348493,0.341381115028647,0.3427310165858062,0.3431039222210969,0.3428146827165998,0.3421588594704684,0.3413153776850491,0.3411082537550572,0.3414480623320064,0.3414452048706781,0.3429880329094988,0.342729853335436,0.3437930890402373,0.3460070955217886,0.3464425313541642,0.3467939050392636,0.3479250220439742,0.3514826656635947,0.3530792405240664,0.3549881235154394,0.3573082686282522,0.3589594458837836,0.3606064402957022,0.3622356495468278,0.3671380721994789,0.3680393074403369,0.365823754789272,0.3609098228663446,0.3706158519745927,0.3692722371967655,0.0,1.9962106551369616,58.612267634448415,196.60402479208892,297.183284215074,fqhc4_100Compliance_baseline,44 -100000,95687,43213,407.6415814060426,6663,68.400096146812,5260,54.375202483095926,2139,21.98835787515545,77.29491858535671,79.69683061938925,63.29396199958445,65.07389269230528,77.02982877842703,79.43226031838823,63.195973756599045,64.97895148422576,0.2650898069296801,264.5703010010152,0.0979882429854086,94.94120807951845,112.07812,78.88475755557957,117129.93405582786,82440.41254880973,308.24802,197.37639018568652,321533.10272032773,205664.04024129352,321.20836,155.57845478601675,331932.916697148,159780.97570200625,3794.05569,1724.019465740034,3923224.596862688,1760101.4220134094,1314.05152,576.86888366758,1355677.657362024,585361.8004320795,2099.14498,876.4916135884471,2158815.1159509653,885429.5879885954,0.38036,100000,0,509446,5324.087911628539,0,0.0,0,0.0,26307,274.30058419639033,0,0.0,29610,305.65280550126977,1866287,0,66972,0,0,0,0,0,53,0.5538892430528704,0,0.0,0,0.0,0,0.0,0.06663,0.1751761489115574,0.3210265646105358,0.02139,0.3234455219623502,0.6765544780376498,24.973425287510818,4.490337965893117,0.3237642585551331,0.2068441064638783,0.2408745247148289,0.2285171102661597,11.26485505367896,5.859603584256092,22.835944176849925,12637.5747449868,59.63446311053978,12.947685269667389,19.328419671308197,14.153903791639788,13.20445437792442,0.5568441064638783,0.7922794117647058,0.6970052847915443,0.5872138910812944,0.1131447587354409,0.7165932452276065,0.9184210526315788,0.8657718120805369,0.7073170731707317,0.1491935483870967,0.5010261672652643,0.7245762711864406,0.6369426751592356,0.5520408163265306,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022605857248573,0.0044648746283499,0.007078657390951,0.0092623659193736,0.0115129737268035,0.0136577211990256,0.0158067676231682,0.0179297521505486,0.0200720219339526,0.0221575717841813,0.0242804094946966,0.0263501227617805,0.0282980037044659,0.0305781716994743,0.0327119203930798,0.0347174104141889,0.0368612495725255,0.0392046929346415,0.0413315994798439,0.0432253827953178,0.057963899218652,0.0725555683519521,0.0855082958158864,0.098258536328721,0.1105612998522895,0.1261811294401472,0.1390979438895198,0.1510679528950786,0.1623158052210337,0.1729221657117105,0.1863183409641799,0.1988228802648519,0.2099832561376041,0.2205388861562004,0.2300112179134681,0.2414205508122653,0.2513641080574432,0.260424286759327,0.2696610073249673,0.2784746267972207,0.2857159401491638,0.2925847011168606,0.299607991757168,0.3056042241689667,0.3118607790438896,0.3177630116345132,0.3235463731414387,0.3289177037027602,0.3339982125973033,0.3388107965419389,0.3389716378915614,0.3387212149558423,0.3392492141135341,0.3399034012031467,0.3402400749676479,0.3388384086444008,0.3382350605834431,0.3400609103629928,0.3418213576272347,0.3434157005393589,0.3443555220789003,0.3457609602925394,0.3472657977300962,0.348191417658953,0.3502896057000218,0.3511107609894438,0.3528753122218713,0.3566404764922063,0.3586511299435028,0.3599840095942435,0.3608683653757704,0.3629312650441294,0.3647297126218509,0.3683080227028685,0.3660384506108533,0.3657019851710117,0.3678899082568807,0.3642842598248829,0.3662551440329218,0.3630500758725341,0.0,2.3212946013722533,59.89424722833687,199.16724427211605,293.5687677904289,fqhc4_100Compliance_baseline,45 -100000,95723,43092,406.4226988289126,6815,69.82647848479466,5342,55.22183801176311,2181,22.37706716254192,77.3593554540744,79.72992127704676,63.33143217950936,65.08369484348589,77.08788067209899,79.46008799996528,63.232829046708105,64.98825195454555,0.2714747819754137,269.8332770814744,0.0986031328012586,95.44288894034024,112.44354,79.09408523011648,117467.17089936588,82627.68774924793,310.07979,197.91896145409945,323341.19281677343,206170.25145449373,319.18606,153.9275247453997,330394.35663320206,158317.9064649156,3833.35538,1728.7077962351125,3966003.342979221,1767486.0614905327,1281.81204,562.2707210752033,1324915.7673704335,573224.6179864847,2144.19732,886.6408312257804,2202823.4384630653,895363.7811244646,0.38086,100000,0,511107,5339.416859062086,0,0.0,0,0.0,26508,276.30767945007995,0,0.0,29467,304.76479007135174,1866728,0,66948,0,0,0,0,0,50,0.522340503327309,0,0.0,0,0.0,0,0.0,0.06815,0.1789371422569973,0.3200293470286133,0.02181,0.3287823906380607,0.6712176093619393,25.09243388356976,4.5409201106378125,0.3333957319356046,0.2098464994384125,0.2280044926993635,0.2287532759266192,11.244219209230891,5.718161164046069,23.21300248075636,12666.544077779768,60.36254416298932,13.321839009629567,20.094024663757008,13.497760288030712,13.448920201572037,0.5473605391239236,0.7698483496877788,0.6788321167883211,0.5853858784893268,0.113747954173486,0.7293946024799417,0.909560723514212,0.8469827586206896,0.778169014084507,0.1440677966101695,0.4845127171996978,0.6961852861035422,0.6195899772209568,0.5267665952890792,0.1064908722109533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022383826925414,0.0044704856711303,0.0066161324038276,0.0087343340578091,0.0110531507072186,0.013478982357193,0.0155869310362403,0.0180470775575199,0.0202817362147574,0.0223999017188955,0.0245808337178895,0.0267566429400466,0.0290135396518375,0.0309811557918379,0.0329900524208527,0.0354772684984184,0.0373023843294785,0.0390092622364204,0.0407713498622589,0.0428836298487563,0.0572013324005137,0.0714308141542905,0.0842643001751791,0.0966351209253417,0.1092341273607288,0.12526842478288,0.1383503644987744,0.1504466234416089,0.1617401897922544,0.1733284688764177,0.1873787872257897,0.2005347593582887,0.2123803307223672,0.2223742093628942,0.2321562321011587,0.2430637184235622,0.252956746071632,0.2620673363555575,0.2711066224864963,0.279405194239824,0.287021717247683,0.2941479099678457,0.3002494591111689,0.3070385444098635,0.3131044692805222,0.3188337991406163,0.3247944536910735,0.3302937809996185,0.3358015741507871,0.3407367352052861,0.3407546915988431,0.341201392041156,0.3417614715022992,0.3418670356916335,0.3420095864187454,0.341131140773359,0.3406477093206951,0.3403129352011141,0.3413647765472757,0.3420569411513023,0.3432177957836296,0.3440543108225793,0.3455340990365602,0.3455195842426151,0.3466016134486256,0.3475529965977493,0.3491308954497293,0.3509610817315304,0.3527560725524166,0.3556522086109892,0.358627334036794,0.3608462774504553,0.362341064468724,0.3654760079717921,0.3662982903560971,0.3644581896039015,0.3650915807295675,0.3690427698574338,0.3739972337482711,0.3735498839907192,0.0,2.271110517285448,60.363850063056994,202.69134521014027,297.1566824341582,fqhc4_100Compliance_baseline,46 -100000,95894,43232,406.5322126514693,6705,68.69042901537114,5209,53.79898638079546,2098,21.492481281414893,77.4394230829848,79.71849659210561,63.39129033748679,65.07673213001179,77.17795155682326,79.45921879970153,63.29437597258697,64.9833602843368,0.261471526161543,259.27779240407745,0.0969143648998169,93.37184567499436,113.70414,79.9506841997978,118572.73656328864,83374.02152355497,309.06958,197.87566977919693,321782.8956973325,205827.87221223116,314.34734,152.38954679651803,324932.769516341,156653.41931537713,3785.0881,1706.2758582766762,3910570.421507081,1742747.3650871513,1276.50055,558.8377420999967,1319041.201743592,570649.4275971344,2061.01102,860.8465092421297,2112919.3067345195,865645.4092106451,0.38162,100000,0,516837,5389.669843785847,0,0.0,0,0.0,26449,275.2726969362004,0,0.0,29015,299.70592529251047,1862958,0,66889,0,0,0,0,0,50,0.5214090558324816,0,0.0,1,0.0104281811166496,0,0.0,0.06705,0.1756983386614957,0.3129008202833706,0.02098,0.3194385367928541,0.680561463207146,24.9683685767373,4.495404608551687,0.338644653484354,0.2023421002111729,0.2307544634286811,0.2282587828757919,11.17958848024117,5.752118210785689,22.20942568014392,12603.92513435979,58.411972153638565,12.42304596377524,19.64856499589036,13.38280472030443,12.957556473668552,0.5482818199270494,0.7618595825426945,0.6927437641723356,0.5715474209650583,0.1211101766190075,0.7087529047250194,0.8938547486033519,0.8793969849246231,0.7050847457627119,0.1541666666666666,0.4954058192955589,0.6939655172413793,0.6383601756954612,0.5281146637265711,0.1127502634351949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020753188904636,0.0045097085410839,0.0069081650250053,0.0091279229152494,0.0112413225324483,0.0132272440528275,0.0155844155844155,0.0177478580171358,0.0198806750847942,0.0220544610159782,0.024477960613947,0.0264818443922308,0.0286389559677336,0.0308404961655257,0.0330003402096928,0.0351076462388352,0.0374815075366487,0.0394665948275862,0.0417233324682065,0.0435148968042609,0.0585396362120185,0.072275686237631,0.0853980354786688,0.0983305333893322,0.1103765540618782,0.125691541027915,0.1382042346760441,0.1500233764025841,0.1614859823046583,0.1725348344427559,0.18526322579258,0.1974217390834531,0.2087239936987343,0.2194303576112617,0.2302861667729802,0.2408811645541595,0.2509224680898501,0.2610024381200633,0.2690363957757331,0.2778254256864158,0.2855624487343892,0.292733919665487,0.300180895967084,0.3067222361944454,0.312788382145806,0.3185508210453699,0.3238388311379642,0.328944525640211,0.3336307907193295,0.338238393845181,0.3383160217426403,0.3382070026933436,0.3385749247517511,0.3388501364758892,0.3391621886411542,0.3375170281481028,0.3372473928249276,0.3385087057743384,0.3399225004694355,0.3407510431154381,0.340828247275995,0.3420044244291696,0.3432542174222445,0.3438378161380971,0.3455734406438632,0.3457002265094118,0.3464070836644341,0.3484763156248044,0.3508545517963027,0.3545967710101448,0.3555646110658335,0.3577636459989401,0.360645444842092,0.3635393643777151,0.3662465649578319,0.3640817301947664,0.3674801803202238,0.3657683604196667,0.3609796827163929,0.3595419847328244,0.0,1.974848483095476,56.6071525715028,196.57480826650536,296.071543935695,fqhc4_100Compliance_baseline,47 -100000,95736,43068,405.6781148157433,6669,68.34419654048634,5261,54.34737193950029,2150,22.112893791259296,77.34647984393533,79.70032848763834,63.33814763576003,65.07630405963216,77.07458080951982,79.42668807213273,63.23824738677462,64.9778459620867,0.2718990344155116,273.6404155056107,0.0999002489854135,98.45809754546052,112.27766,79.01119555558506,117278.41146486173,82530.2869929651,308.16442,197.24847347242692,321277.5549427593,205421.50651001392,318.56668,153.68180440082796,329006.9252945601,157623.87719750256,3831.40824,1741.8721285565457,3960413.668839309,1777811.3965034536,1279.88199,565.2533943776376,1323027.4191526698,576569.8737963116,2119.0236,890.0455324659501,2180956.797860784,902230.5523130957,0.38096,100000,0,510353,5330.836884766441,0,0.0,0,0.0,26342,274.5153338347121,0,0.0,29415,303.48040444555863,1866067,0,67015,0,0,0,0,0,63,0.6580596640762095,0,0.0,2,0.0208907829865463,0,0.0,0.06669,0.1750577488450231,0.3223871644924276,0.0215,0.3348604151753758,0.6651395848246242,24.817849174539685,4.496960132051453,0.3208515491351454,0.2100361148070709,0.2303744535259456,0.238737882531838,11.202916126613774,5.658244159378023,23.036685456223022,12614.116053700169,59.64018567673317,13.110712536561897,19.094236382135847,13.61950742595875,13.815729332076662,0.5527466261167079,0.746606334841629,0.7109004739336493,0.6105610561056105,0.1138535031847133,0.7170626349892009,0.9083969465648856,0.8722358722358723,0.767515923566879,0.1563636363636363,0.493801652892562,0.6573033707865169,0.6596409055425448,0.5556792873051225,0.1019367991845056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0045819014891179,0.0066672755502785,0.0089087990898193,0.0110134846543413,0.0132554161915621,0.0153007135575942,0.0176670511027873,0.0200243276670993,0.0224627071964616,0.0246007503228848,0.0267387912629331,0.0289932554696496,0.030982201713909,0.0329753097883843,0.0349364838186197,0.0367348629172533,0.0387915382779835,0.0408840008731899,0.0430901591534038,0.0573993840371665,0.0714420279237226,0.0847365163293781,0.0973555543872562,0.1098085519102639,0.1254717479782229,0.1380839237982095,0.1507779409573675,0.1625104084377735,0.1728646447326117,0.1863151435553498,0.199643127500811,0.2115890369275576,0.2225196970855962,0.232068855594517,0.2427274739871596,0.252422637301366,0.261348299442145,0.2701506762276481,0.2780876676555144,0.2853556388541811,0.2922182719745521,0.2994387743020199,0.3058047493403694,0.3119037491644892,0.3176754731861199,0.3236527508293171,0.3284034598285372,0.3335711968861498,0.3383045110793802,0.3379342913040545,0.3381033127920923,0.3379530315005081,0.3377020216648323,0.338129067810494,0.3366037156456318,0.3359012157813812,0.3372062448644207,0.3377512928524949,0.3394700588624693,0.3408510478479681,0.3423544795340175,0.3441260624421442,0.3456640388114008,0.3465365665153125,0.347630686746038,0.3491506912309947,0.35081998353701,0.3531717999434868,0.3568724345434982,0.3593033913840513,0.3629109992502945,0.3645839914081749,0.3666462293071735,0.3696084936960849,0.3739837398373983,0.3772307692307692,0.3785276073619631,0.3763744009021708,0.3702094033978664,0.0,2.3594183358562173,61.036694705103685,195.12673562018372,294.064871323379,fqhc4_100Compliance_baseline,48 -100000,95726,43472,409.9722123560997,6735,68.97812506529051,5227,53.893404090842616,2114,21.64511209075904,77.41222784566315,79.76707633410678,63.350809200748486,65.0892982944205,77.14194434635831,79.49963421619664,63.24996176624048,64.99243937943693,0.2702834993048384,267.44211791013583,0.1008474345080046,96.8589149835708,112.62152,79.22523635291495,117649.87568685623,82762.50585307539,308.76317,197.73808223307597,321785.4292459729,205814.48813218824,320.49764,155.01961562822507,330432.8082234712,158541.17477187092,3747.99786,1706.2702553624924,3868332.250381297,1736312.3034734477,1245.24519,549.3184266893809,1285580.4379165536,559087.2739502138,2070.93204,874.9554477703405,2122363.683847649,879952.0877753837,0.38273,100000,0,511916,5347.721622129829,0,0.0,0,0.0,26336,274.34552786076927,0,0.0,29526,303.97175271086223,1865213,0,66838,0,0,0,0,0,75,0.7834862001963939,0,0.0,0,0.0,0,0.0,0.06735,0.1759726177723199,0.3138827023014105,0.02114,0.3231638418079096,0.6768361581920904,25.125742294967782,4.4516675694309065,0.3309737899368662,0.2121675913525923,0.2318729672852496,0.2249856514252917,11.072212100565764,5.686307344178038,22.597896642255872,12721.721811038016,58.94133347884384,13.024747007753405,19.48307723773985,13.448418079566412,12.985091153784172,0.550411325808303,0.7655545536519387,0.6982658959537572,0.5701320132013201,0.1096938775510204,0.6988929889298893,0.8978494623655914,0.8614318706697459,0.7491039426523297,0.1143911439114391,0.4984504132231405,0.6987788331071914,0.643793369313801,0.5166130760986066,0.1082872928176795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0045203466274768,0.0068173517834679,0.0093326021610203,0.0115291940747669,0.0137730951290273,0.0163585217196322,0.0185810638449843,0.0206538512636559,0.0228454452405322,0.0251086332704763,0.0272747803235608,0.0295151739452257,0.0316677308397355,0.0336181277860326,0.0358578915270355,0.0379915919398595,0.0399240529968977,0.041659735506945,0.0432527032939558,0.0577862691054873,0.0719502752024778,0.0857688353649581,0.0988438759086462,0.1111591786776964,0.1262950694760458,0.1392547467178926,0.151387380480845,0.16294776438403,0.1744674000536624,0.1879481180390085,0.2007363690508419,0.2122911109901475,0.2232028469750889,0.2333671243140798,0.2441981718139865,0.2541471048513302,0.2639915284787311,0.2727530865599764,0.2810159967891749,0.2886664813270317,0.2959914772062094,0.3028602547710375,0.3094225215401023,0.3143148737637596,0.3197978926612853,0.3256355084067254,0.3312065481259294,0.3357382984225497,0.3408791613990729,0.34093106968248,0.341188580839967,0.3412725177753422,0.3409166270201692,0.340814937562881,0.3395835238879234,0.3381465075586802,0.3382525985487351,0.3392787242371122,0.340702927679556,0.3412899854428726,0.3427632097015513,0.3437866108786611,0.3451128154820297,0.3471718941230112,0.3487894312537383,0.351179312304632,0.3546841231559495,0.3580877721005109,0.3589551355403859,0.3612117370041659,0.3654731051991326,0.3693784105877187,0.3711301188403603,0.3728008936051382,0.3768968356663922,0.3769056603773585,0.378,0.3798155181768855,0.3838575217885562,0.0,2.69518276465114,59.06082355338919,196.53247595378875,289.3011785744779,fqhc4_100Compliance_baseline,49 -100000,95716,42854,404.6449914329893,6629,67.88833632830458,5136,52.93785782941201,2049,20.90559572067366,77.32373385663094,79.69228008324278,63.321321634088775,65.07456658186045,77.07196802641546,79.44384448832665,63.22792996441359,64.98541273851664,0.2517658302154757,248.4355949161312,0.093391669675185,89.1538433438086,112.67564,79.33215201845604,117718.70951565048,82882.85346071298,307.54184,196.21404834029263,320577.51055204985,204266.97557387748,316.29404,152.50500715524603,325347.3818379372,155470.29937117186,3747.17334,1691.7823829339875,3866871.024698065,1719551.0127336632,1277.23357,559.5372237099283,1315011.0744285178,565228.823946327,2017.91386,842.3308829419665,2062092.043127586,843081.8020690075,0.37778,100000,0,512162,5350.850432529567,0,0.0,0,0.0,26264,273.65330770195163,0,0.0,29157,299.5110535333696,1865871,0,66979,0,0,0,0,0,60,0.6268544443980109,0,0.0,2,0.0208951481466003,0,0.0,0.06629,0.1754724972206046,0.3090963946296575,0.02049,0.3173145890116196,0.6826854109883804,25.026113308464392,4.512713933531472,0.334696261682243,0.2079439252336448,0.2223520249221184,0.2350077881619937,11.258093146199313,5.758072619262723,21.88882318716749,12523.952098052294,57.93567506355309,12.594116275361548,19.389291357243835,12.66533285999737,13.286934570950338,0.555101246105919,0.7734082397003745,0.6986620127981384,0.5980735551663747,0.1168185584092792,0.7136397889977393,0.9183098591549296,0.8642533936651584,0.7689243027888446,0.1648745519713261,0.4998687319506432,0.7012622720897616,0.6413469068128426,0.5499438832772167,0.1023706896551724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025734549138804,0.0049489387163183,0.0070645554202192,0.009470967217446,0.0119648380270226,0.0138332874940154,0.0160221107167625,0.0179853543451839,0.0202161708915771,0.0222540836704388,0.0245720907813637,0.0264768712513351,0.0282913078814439,0.0303074021785055,0.0324528535595949,0.0343330335266569,0.0364159874056198,0.0384834870666846,0.0404071913570619,0.042201567189063,0.0564674435116735,0.0703557560470154,0.0832738869539675,0.0960846605373335,0.1087009248225753,0.1244964207543379,0.1373464321330815,0.1490396382016493,0.1601747321876769,0.1705823691519135,0.1839844086484624,0.1961834290721448,0.2077180697214188,0.2190417878463187,0.2297893405203234,0.2401311054269231,0.2503484339982383,0.2597598103647782,0.2682357209260141,0.27687467825888,0.2840935348213873,0.2913337071825786,0.2987576391597811,0.3051133709439793,0.3110976202039825,0.3159743188455803,0.3210096027443567,0.3263486402139991,0.3313838892058717,0.3360839714813837,0.3366978411449209,0.336480284466006,0.3362497177692481,0.336684581842414,0.3367685823640668,0.3363554082869284,0.3355451738063187,0.3365135144011297,0.3369869562248173,0.337468982630273,0.3380913080991859,0.3384237526491968,0.3393615679017538,0.3411622058559367,0.342137057800116,0.3427366546178427,0.3455905534378493,0.3484934801873655,0.3523173189097465,0.3533416089376526,0.3559843785894785,0.3567939013260321,0.3620470438652257,0.3629989212513484,0.3659642823396012,0.366722448003825,0.3666717720937356,0.3735185941969758,0.3648947951273533,0.3667577058134998,0.0,2.86333683735014,57.76333114696688,189.14354990618585,290.3225185638536,fqhc4_100Compliance_baseline,50 -100000,95778,43009,404.8006849172044,6784,69.4627158637683,5255,54.26089498632253,2176,22.31201319718516,77.38153749659537,79.72337125077172,63.350937847410606,65.08314394739449,77.11287786282207,79.4547464329213,63.25165973204419,64.98614856866558,0.2686596337732965,268.6248178504229,0.0992781153664168,96.99537872890572,112.23916,78.99173079706844,117186.55641170204,82473.57016501726,307.26467,196.31832414036467,320139.26997849194,204304.3686794547,312.60141,151.875554687941,322607.27933345863,155619.9020669109,3854.81307,1748.0565442860925,3985382.4260268537,1785947.978931152,1279.77053,567.4703147502274,1320773.4344003843,577162.4359001481,2143.81064,900.1279227004053,2201168.639979954,909982.4272373228,0.37954,100000,0,510178,5326.661655077366,0,0.0,0,0.0,26297,273.8729144479943,0,0.0,28978,298.7638079726033,1869267,0,67071,0,0,0,0,0,49,0.5115997410678861,0,0.0,0,0.0,0,0.0,0.06784,0.1787426885176793,0.320754716981132,0.02176,0.326507713884993,0.673492286115007,25.0579666449773,4.45432631202156,0.314557564224548,0.2108468125594671,0.2344433872502378,0.2401522359657469,11.129166486417352,5.679185694756597,23.23552789214481,12608.43044142588,59.22666896698704,12.940855223670884,18.6312785413703,13.828560509606849,13.825974692339004,0.538534728829686,0.7815884476534296,0.677555958862674,0.5535714285714286,0.1283676703645007,0.7159676232523915,0.9353932584269664,0.8787878787878788,0.7287066246056783,0.1245136186770428,0.4766427104722792,0.7087765957446809,0.6070261437908496,0.492896174863388,0.1293532338308457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876076080131,0.0046120785776552,0.0070106732681303,0.0093131430080334,0.0114382739898733,0.0138033531154249,0.0160027724548456,0.0180344767756355,0.0203560260786036,0.0226430924754947,0.0248806181214518,0.0270678080926279,0.0290561381863047,0.0309401480596769,0.0328413322193685,0.0349327382059388,0.037139368351339,0.039265686061096,0.0413545940892328,0.0432913052984476,0.0577314423468269,0.0715690170895475,0.0847372338529599,0.09734671360269,0.1087893444609532,0.1243210111385877,0.1367904531773284,0.149032992036405,0.1609426028303699,0.1718120229825915,0.1849351935581105,0.1973520535646681,0.2087658843607665,0.2197387835400841,0.2297393925393001,0.2404202787834501,0.2507945712660726,0.2607869589657111,0.2695557496228918,0.2779945756039504,0.285978670738196,0.2933473634981878,0.2997976498988249,0.3064767335985048,0.3124127126774589,0.3178900947289323,0.3238055941083061,0.3287402827079914,0.3337131462754593,0.3386498858854105,0.3391224739825249,0.3391260078703321,0.3392177321564535,0.3389506878245649,0.339373651714647,0.3384931338891613,0.3381868827551278,0.3387004213874633,0.340231491740961,0.3416360589095318,0.342681053538646,0.3437518545627188,0.3444260265637131,0.3446928879310345,0.3451176016965491,0.3456812715674997,0.3463658432100528,0.350452887155617,0.3536555403460742,0.3557780161283915,0.358445822692448,0.3616261722080136,0.3656077610804641,0.3673438098888463,0.3718640537726024,0.3752977608384945,0.3788762665029168,0.3792613636363636,0.3817727146429563,0.3894009216589861,0.0,2.2446187226128376,59.58698575037469,196.5460018028988,293.17092960219105,fqhc4_100Compliance_baseline,51 -100000,95866,42834,403.22950785471386,6583,67.72995639747147,5052,52.19785951223583,2007,20.55994826111447,77.37299817448195,79.6745620347643,63.35320242165369,65.05702884646716,77.12247373993947,79.4248929919971,63.26161925125826,64.96864268549594,0.2505244345424842,249.66904276720925,0.091583170395431,88.38616097122554,113.82162,80.07928614456371,118729.9146725638,83532.52054384632,310.14203,198.8109738313157,322989.89214111364,206857.94111709652,311.03506,149.53556031160463,321721.71572820394,153864.08192894908,3613.5733,1631.252428751326,3732464.659003192,1664660.775198013,1252.39295,547.2251827468308,1292134.6149834143,556572.6204341573,1970.17584,818.5696053344135,2019312.582145912,822518.1632232151,0.37857,100000,0,517371,5396.814303298354,0,0.0,0,0.0,26607,276.99079965785575,0,0.0,28763,297.3003984728684,1859163,0,66780,0,0,0,0,0,46,0.4798364383618801,0,0.0,0,0.0,0,0.0,0.06583,0.1738912222310273,0.3048761962631019,0.02007,0.3277761670049289,0.672223832995071,25.1316596124336,4.416242460566378,0.3244259699129058,0.2218923198733175,0.2282264449722882,0.2254552652414885,11.22082338571925,5.746484995730823,21.45557276681432,12550.294023433362,57.09422668935924,13.00656929827366,18.558381112776573,12.883565816155338,12.645710462153682,0.5568091844813935,0.7734165923282783,0.6906650396583283,0.5897658282740676,0.1176470588235294,0.7058359621451105,0.9181818181818182,0.8561320754716981,0.6981132075471698,0.1767068273092369,0.5068710359408034,0.7130214917825537,0.6329218106995885,0.5574324324324325,0.1011235955056179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024913915333198,0.0046216060080878,0.0068571660428268,0.0089352801413398,0.0109387389951812,0.0130903908794788,0.0153802248427833,0.0173999122350467,0.0197304560177379,0.0218040804632983,0.0240254085343988,0.0260293227451342,0.0282311107457041,0.0304474477874648,0.0328350515463917,0.0349777451901727,0.0370182608245822,0.0388597009357416,0.0409570490986126,0.0426698574549994,0.0569354939623349,0.0704134096894202,0.0840701475025142,0.0960736750359659,0.1081226239245132,0.1231224252667159,0.1364026490066225,0.1483777002891648,0.159783142302192,0.1708417263103758,0.1845259873022705,0.1970622250564749,0.2085334840350381,0.2196409830330593,0.2302267501347738,0.2410604533726094,0.2507724742601537,0.2598067339385553,0.26919674250845,0.2772950510011334,0.28490483128657,0.2920643833052592,0.299163204677532,0.3060953111148382,0.3121009056255615,0.3174763500197083,0.3234553990610329,0.3288760528257716,0.334511738730689,0.3383022829000356,0.337551036908275,0.3372459874629744,0.3374491984646647,0.3373820140135503,0.3373649915201285,0.3360722333788113,0.3354098308684832,0.33664049410296,0.3370988139590525,0.3383622615876874,0.3398234731930363,0.3403258333662857,0.3420164721168556,0.3437227696226289,0.3448068937375483,0.345517025929397,0.3466674275279616,0.3496316352874504,0.3524388529659826,0.3536846275752773,0.3575798776342624,0.3592423599320883,0.3588562050246181,0.3603093178163999,0.3600378787878788,0.3630015386436264,0.3630632015992618,0.3591375770020534,0.3590030803696443,0.351673720661793,0.0,1.8721498584890195,56.15440920222394,195.76380009042668,280.88341867754144,fqhc4_100Compliance_baseline,52 -100000,95788,43162,406.8254896229173,6592,67.57631436088027,5142,53.04422265837057,2101,21.505825364346265,77.39816222968327,79.7280345577141,63.35848721039546,65.07975100207432,77.13990533544978,79.47288237709702,63.26293588531113,64.98838594788114,0.2582568942334831,255.152180617074,0.0955513250843296,91.36505419317588,113.3154,79.69567461582497,118298.11667432246,83200.0611932862,310.26079,199.11962849278208,323195.41069862613,207170.93034035704,321.02115,155.1354902955161,331668.55973608384,159203.6254938121,3680.7691,1669.1155681778512,3800589.948636572,1700588.0132233205,1222.75766,542.9277342049271,1260943.4062721843,551266.5829743632,2059.89866,859.8778269770226,2111434.6891051074,864788.1280718887,0.37878,100000,0,515070,5377.187121560112,0,0.0,0,0.0,26487,275.8487493214181,0,0.0,29503,304.57886165281667,1860848,0,66784,0,0,0,0,0,67,0.6785818682924792,0,0.0,0,0.0,0,0.0,0.06592,0.1740324198743333,0.3187196601941747,0.02101,0.3289968198901417,0.6710031801098584,24.989368581641624,4.459590645179286,0.3370283936211591,0.2178140801244651,0.219758848697005,0.2253986775573706,11.235033911064532,5.66091491842592,22.20045809512324,12650.03217760167,58.083196611280655,13.165404736781197,19.59866935883263,12.593404577934477,12.725717937732366,0.5558148580318942,0.7696428571428572,0.7016733987305251,0.5761061946902655,0.1113028472821397,0.7296886864085042,0.91869918699187,0.8871681415929203,0.7193675889328063,0.1604938271604938,0.4959477124183006,0.6964047936085219,0.6362217017954723,0.5347776510832383,0.0982532751091703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002015353142533,0.0043882763093886,0.0064927159842551,0.0085608091640263,0.0107660245005845,0.013180124982189,0.0152748764457125,0.0172529894298657,0.0194219393332584,0.0219869040311029,0.0244034873833355,0.0265059004617752,0.028744964235797,0.0309286839098796,0.033001360880861,0.0351562096565969,0.03732516759083,0.0391451325231241,0.0409577950759189,0.0427913854869615,0.0576008014024542,0.0716960214199054,0.0846334507632947,0.0978201463045489,0.1103297769156159,0.1258787833937689,0.139020587393006,0.1510391724930562,0.1628714246042766,0.173488756152749,0.1860109430873293,0.1986263587691309,0.2103610504471028,0.2217706694633805,0.2315850790231464,0.2421080584662026,0.25228590544157,0.2612602480909592,0.2704085684786185,0.2793292249891182,0.2871417667059884,0.2947641652830718,0.3025169294880901,0.3083957571762449,0.3146742760002428,0.3203610881907412,0.3258643326039387,0.3312781266685312,0.3362202889544819,0.340904893813481,0.3407294710056144,0.3413238712161846,0.3410768623915248,0.3410446360236249,0.3402661365693008,0.3388384255436278,0.3372293482214876,0.3376244280817986,0.3383177250666484,0.3399964304836694,0.3411112567651079,0.3418385525951146,0.3431039543758125,0.3436117442016356,0.3460449944836187,0.3466340014073861,0.3462783171521035,0.347310275563367,0.3498043052837573,0.3527226744645538,0.3530615958511509,0.3583619550858652,0.3587838681483331,0.3632286995515695,0.3690151443890508,0.370432290422737,0.3708791208791209,0.3753036437246964,0.3776551724137931,0.3794813119755911,0.0,2.4363157834908957,57.563674623124,197.03266609874748,284.24620090172203,fqhc4_100Compliance_baseline,53 -100000,95876,42970,404.73111101839874,6645,68.28611957111268,5201,53.65263465309358,2038,20.89156827568943,77.3584022892406,79.64126881541522,63.35300198276878,65.0416794885576,77.1049067384117,79.3901197962689,63.25866033703648,64.95145867331978,0.2534955508289016,251.14901914631105,0.0943416457323067,90.22081523782788,112.8633,79.41343147936314,117717.98990362552,82829.31231941585,306.90811,196.08085866580063,319531.79106345697,203937.42820497372,315.15744,152.00564558063613,324984.771997163,155652.79652513898,3735.06361,1683.271238842183,3855409.038758396,1715361.090202119,1271.12446,551.9348176452444,1311993.7210563645,561911.8102590346,2013.72278,846.7277061434829,2065086.799616171,850454.3596731148,0.37971,100000,0,513015,5350.817722892069,0,0.0,0,0.0,26220,272.873294672285,0,0.0,29063,299.45971880345445,1864497,0,66984,0,0,0,0,0,52,0.542367224331428,0,0.0,1,0.0104301389294505,0,0.0,0.06645,0.1750019751915935,0.3066967644845749,0.02038,0.3273453093812375,0.6726546906187625,25.177749145731315,4.441130521384184,0.3349355893097481,0.2155354739473178,0.2182272639876946,0.2313016727552393,11.008979564231987,5.465718662252845,21.784647312129376,12585.981078971576,58.790193062039656,13.282359424070483,19.56778651141764,12.58253000304445,13.357517123507089,0.5456642953278216,0.8037466547725245,0.653272101033295,0.5656387665198238,0.1305070656691604,0.7030896759608138,0.946524064171123,0.8091954022988506,0.7354085603112841,0.1455938697318007,0.4917398038203407,0.7322623828647925,0.6013771996939556,0.5159453302961275,0.1263269639065817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274195344693,0.0047623390177422,0.0072623261758172,0.0097269745859943,0.0119536491156739,0.0138002625713675,0.0160662618688618,0.0182263246468458,0.020113739624067,0.0222962819084227,0.0244249490720361,0.0263681286010128,0.0284387934310392,0.0305726718169754,0.032668624723038,0.0345069695405265,0.0367653904641708,0.0388665478214004,0.0405973807471413,0.0425129016147827,0.057111282553848,0.0708807857068227,0.0845027647453083,0.0964286839369533,0.1090441780605473,0.1242010965445114,0.136536566238886,0.1482907118932426,0.1594526221406231,0.1707672680882085,0.1842910062026188,0.1969213461268024,0.2093046012003131,0.2203588100886639,0.2301221644326666,0.2404240955321668,0.2507082152974504,0.2609912969168147,0.2701387392088575,0.2790385959284675,0.2866235404395172,0.2936317581401879,0.2999917090099373,0.3065278410862941,0.3127052070919571,0.3184112138000814,0.3233900684330584,0.3290208274912687,0.3334891329749941,0.3381588175358272,0.338146388858901,0.3379675604104601,0.3376386889133564,0.337567164395267,0.3383579599618684,0.3375506694509274,0.33661448575874,0.3381566167876603,0.3393734906742939,0.3409233078944076,0.3418989383651574,0.3430574535084071,0.3438687863578133,0.3441113202473783,0.3463124141090243,0.3477648898735826,0.3487033342832716,0.350920168331135,0.3527885862516213,0.3544394191859081,0.3563972833766352,0.358739406779661,0.36020388899377,0.3620305660087551,0.3648301455894947,0.3620689655172414,0.361106768797874,0.3610315186246418,0.3592582341544423,0.3608128834355828,0.0,2.3244380409811995,58.53141843265052,194.1554793365401,294.6284493760241,fqhc4_100Compliance_baseline,54 -100000,95735,43069,406.25685485976913,6614,68.01065441061263,5133,53.05269755053011,2092,21.44461273306523,77.38965647392791,79.75778563665594,63.34469261111818,65.0944502660188,77.1423337721102,79.51091929357746,63.25405122382269,65.00681781775083,0.2473227018177084,246.8663430784801,0.0906413872954914,87.63244826796779,114.29286,80.43957670471826,119384.38397660208,84022.93487723221,311.7454,199.3578670825912,325054.3374941244,207659.9332350668,317.31863,152.78891985352897,328059.4244529169,156973.3034575597,3707.28581,1665.5166368347914,3833558.332898104,1700828.2204364014,1253.0108,547.4091767713765,1291534.141118713,554597.2193106969,2057.87344,851.7157210016675,2111601.775735102,857481.3051098925,0.3806,100000,0,519513,5426.562908027368,0,0.0,0,0.0,26648,277.7563064709876,0,0.0,29190,301.51982033738966,1858073,0,66643,0,0,0,0,0,55,0.5745025330338956,0,0.0,0,0.0,0,0.0,0.06614,0.1737782448765107,0.3162987602056244,0.02092,0.3234870317002882,0.6765129682997119,25.1708102174072,4.462828018519586,0.3282680693551529,0.2125462692382622,0.222676797194623,0.2365088642119618,11.22787193544493,5.795809199261478,22.181354134216093,12577.92436596676,57.863366688496896,12.82448163096363,18.96116202269027,12.67424018345403,13.40348285138896,0.5445158776543931,0.76993583868011,0.684272997032641,0.5818022747156606,0.1128500823723229,0.7175748273215656,0.8966480446927374,0.8624708624708625,0.758364312267658,0.1619433198380566,0.4856396866840731,0.7080491132332879,0.6234076433121019,0.5274599542334096,0.1003102378490175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023600194473705,0.0045619050515495,0.0069312657932392,0.0088384094926549,0.0106604819595756,0.0129118976823754,0.0153240688818425,0.0175477996345484,0.0196868100417041,0.0219667734638101,0.0240779843785235,0.0261274857043128,0.0282089767049776,0.030305214597578,0.0326763003991707,0.034622817987329,0.0366462328625274,0.0386251400589284,0.0406281830087097,0.0426369916539026,0.0571437520882058,0.0709755076407787,0.0840538045074915,0.0963387690689111,0.1087761496344589,0.1238259434760534,0.136547377802298,0.1489613043293176,0.1600845810461564,0.1704539361508187,0.1832491736560471,0.1957598702001081,0.2082667449420001,0.2196311237932806,0.2305449825086356,0.2408414060337669,0.2514996097669751,0.2614620664861646,0.2703416536307783,0.2794020085558072,0.2867349534093273,0.2952120510932697,0.3021826733316789,0.3082898453583568,0.3138637411713308,0.3190349515997931,0.3254830842348821,0.3303707659444614,0.335208972020645,0.3397408008015926,0.3401387992253066,0.3393974395995764,0.3384656524003209,0.3380942753162729,0.3371408227143938,0.3366215492850042,0.335345999430974,0.3360345759049162,0.3369903556666836,0.3388826636785657,0.3389653500428928,0.3396668504371111,0.3399557577528277,0.3405905292479109,0.3414078972589611,0.3438881089793584,0.3437446760179454,0.3479476147105932,0.3503390604687115,0.351694746485044,0.3552077613033132,0.3552377892030848,0.357846853677028,0.3604229607250755,0.3586482220778015,0.362933458294283,0.3654776299879081,0.3665934943125125,0.3678348274925292,0.3666034155597722,0.0,2.1445099069689,57.47352575085681,192.81179238252145,288.8520771702348,fqhc4_100Compliance_baseline,55 -100000,95758,43054,405.7415568412039,6667,68.45381064767435,5170,53.363687629232025,2128,21.77363771173166,77.34687979821054,79.703967706272,63.33382307926016,65.08036848273977,77.0774345836877,79.43801317523325,63.2333475044055,64.98427887915481,0.2694452145228325,265.95453103874434,0.1004755748546557,96.08960358495722,112.98144,79.5104164933143,117986.42411077923,83032.66201603448,311.37796,199.31731411468755,324550.115917208,207525.2763368988,315.87802,152.39314184790834,325946.5632114288,156155.0679456654,3765.74734,1716.968986817168,3885514.996136093,1746789.810249878,1300.76879,574.501875491187,1340767.716535433,582676.6781202393,2090.22794,884.9447144453321,2140406.4203513023,887658.6022744504,0.37973,100000,0,513552,5363.0192777626935,0,0.0,0,0.0,26584,276.9690260865933,0,0.0,29178,300.81037615656135,1863521,0,66938,0,0,0,0,0,56,0.5848075356628167,0,0.0,0,0.0,0,0.0,0.06667,0.1755721170305217,0.3191840407979601,0.02128,0.3179604697794328,0.6820395302205672,24.9872690855542,4.551062435900337,0.327852998065764,0.2106382978723404,0.2276595744680851,0.2338491295938104,11.57167817592624,5.94128535574615,22.93600056863745,12594.724977473024,58.72718680116417,12.87012060618446,19.03314531516511,13.323347023036728,13.500573856777876,0.5615087040618956,0.7722681359044995,0.6991150442477876,0.6142735768903993,0.1273779983457403,0.698741672834937,0.9117647058823528,0.8522727272727273,0.7491408934707904,0.1464285714285714,0.5129615082482325,0.7089452603471295,0.6454183266932271,0.5699774266365688,0.1216361679224973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786713144988,0.0046850281912951,0.0070152284263959,0.0095632996940963,0.0116383169203222,0.0138490051119121,0.0159241512896319,0.0179358922008983,0.0199852793850054,0.0221466820932351,0.0241964423027631,0.0264603505457383,0.0286610448375154,0.0305746131816964,0.0329432162982228,0.034878432021171,0.0367305939855852,0.0387161026619914,0.0409987733632715,0.0430594605852337,0.0575979624642491,0.0717326945005283,0.084440436619866,0.0972797410077992,0.1103112450857426,0.1255997294612474,0.1384292483331036,0.1506374472338298,0.1620615345224887,0.1727403217858902,0.1857653083179138,0.1978385388522641,0.209386713020805,0.2198704716970828,0.229989122433059,0.2414125094064007,0.2515529682045792,0.2616664792533453,0.2708574541987332,0.2793868292012281,0.2870867672932679,0.2943854679947096,0.3010939830929885,0.3069442279328001,0.3127353105491996,0.3182170781259619,0.3230846269404106,0.327870104089787,0.3332340331835196,0.3373617964482677,0.3376152965730828,0.3370741648536256,0.3381099322258387,0.3378267088552728,0.3378016882653668,0.337046969580875,0.3354509592687061,0.3358704586552687,0.3364306860379554,0.3373806373162619,0.3379821679962459,0.3392273078676631,0.3404367105899166,0.3408355795148248,0.3417745988787937,0.3427177078687062,0.3461505376344086,0.3492159036907967,0.3520977539200452,0.3533810533050746,0.3565093515922981,0.3596514673651574,0.3616845582163501,0.3637894092439547,0.3643701896001501,0.3662155745489079,0.3689230769230769,0.3669479316731838,0.3747534516765286,0.3733650416171225,0.0,2.433642040364485,59.24212981280829,194.15196383082508,290.03749898033595,fqhc4_100Compliance_baseline,56 -100000,95761,42970,406.083896366997,6736,69.22442330385022,5272,54.54203694614718,2130,21.8251689100991,77.36211040614715,79.72220780136844,63.32787542470121,65.07491871919817,77.0936208802402,79.45698807284465,63.227961890309246,64.97928257211207,0.2684895259069577,265.21972852378894,0.0999135343919661,95.63614708609693,111.6247,78.5956105585839,116565.92976263825,82074.75961882593,308.58018,197.483086180944,321739.50773279305,205724.62840017464,316.83157,152.72614719599576,328581.865268742,157602.59330711715,3814.87497,1726.984308514595,3945157.193429476,1764854.1272654491,1302.33093,570.9716091157557,1344343.8873863055,580679.0355158295,2101.0367,884.1807090697774,2154099.978070405,887802.6288975065,0.37895,100000,0,507385,5298.4513528471925,0,0.0,0,0.0,26369,274.8196029698938,0,0.0,29249,303.11922390117064,1869073,0,67046,0,0,0,0,0,60,0.6265598730171991,0,0.0,1,0.0104426645502866,0,0.0,0.06736,0.1777543211505475,0.3162114014251782,0.0213,0.3205382436260623,0.6794617563739377,24.917135475035625,4.485651782235979,0.3196130500758725,0.2207890743550834,0.2240136570561456,0.2355842185128983,10.94056524601841,5.421314587646454,22.78541707991902,12545.276305335834,59.5559701567909,13.64010063945192,18.966140065804563,13.220260044695854,13.729469406838554,0.5515933232169955,0.7620274914089347,0.7086053412462908,0.5707027942421676,0.1231884057971014,0.6985789080029918,0.917098445595855,0.8349753694581281,0.671280276816609,0.18359375,0.5016518424396442,0.6850899742930592,0.6684910086004691,0.5381165919282511,0.1075050709939148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086461404415,0.0044922627618796,0.006781037458126,0.0089618663442291,0.0111591475509892,0.0132093534851509,0.0154181877511063,0.0171016090827411,0.0193556303105285,0.0214528549193085,0.0235665719764949,0.0255359362320627,0.027726052201109,0.029760616646572,0.0317886262772215,0.033714486580373,0.0357675420429127,0.0378605519817389,0.0398029085541429,0.041801647899501,0.0562868625711154,0.070066226551302,0.0838376105127371,0.0964881835105543,0.1089439984810286,0.1249775239304035,0.1376599401616907,0.1495070377547326,0.1610442067469519,0.1714926109430967,0.1846873047674443,0.1975430241368113,0.209185672005571,0.2196013216340999,0.2288088947600176,0.2402092244952237,0.2494806210208868,0.2590479405806887,0.2682871473638819,0.2771070536757463,0.2851089938759681,0.29205621145993,0.2985829120742521,0.3057288168122061,0.3119114448535219,0.3175208140610546,0.3234855603583286,0.3295638331741483,0.3347111721564257,0.3387120201766779,0.3384300083596257,0.3377741651052574,0.3383648330585035,0.3379666459348829,0.3375509233102381,0.3372121546622512,0.3370843503344216,0.3379006686710368,0.3379821907740689,0.3396351042559268,0.3398212847267754,0.3404969115702642,0.342018179533364,0.3429319371727748,0.3442323412030581,0.3442306689608426,0.345497535823149,0.3470298118304903,0.3503363228699551,0.3533138015678201,0.355639234189275,0.3585503724443974,0.3593543930163914,0.3597040839435343,0.3667349599552989,0.3662604992310422,0.3659762412427658,0.3678528588564574,0.3744230247081184,0.3764523625096824,0.0,1.9944039383289869,59.12858709080314,200.5520332579553,295.47646945525213,fqhc4_100Compliance_baseline,57 -100000,95767,43173,408.14685643280046,6643,68.1132331596479,5141,53.160274416030575,2062,21.218164921110613,77.32840490063373,79.6883019323387,63.31625382636724,65.06458770505698,77.07119132302357,79.43071504568307,63.221506802245074,64.9717574754454,0.2572135776101589,257.58688665563056,0.0947470241221637,92.83022961157884,112.65364,79.22846215445946,117633.04687418422,82730.44175390214,308.14483,197.2489467816752,321238.8087754654,205441.21334246156,316.33262,152.4608967557149,327157.2984430962,156734.2765314729,3725.02647,1687.334417369318,3855332.5780279217,1727572.4386994664,1238.89319,545.4699221038799,1280340.1276013658,556323.7091566146,2031.65078,852.7625277218818,2092347.927783057,865252.5343800875,0.38011,100000,0,512062,5346.956676099283,0,0.0,0,0.0,26316,274.248958409473,0,0.0,29167,301.3668591477231,1863963,0,66973,0,0,0,0,0,49,0.5116585044952855,0,0.0,0,0.0,0,0.0,0.06643,0.1747651995474994,0.310401926840283,0.02062,0.3159478435305918,0.6840521564694082,25.110862180730624,4.4565165793916695,0.3271737016144719,0.2131880957012254,0.2277766971406341,0.2318615055436685,11.158868015112386,5.682333333126615,21.9587490439526,12621.77873243204,58.031639117823225,12.938246484244946,19.06494087935293,12.98230047585506,13.0461512783703,0.5600077805874344,0.7746350364963503,0.7063020214030915,0.5952177625960717,0.1216442953020134,0.7175856929955291,0.912568306010929,0.8690744920993227,0.7340425531914894,0.147410358565737,0.5043432482232166,0.7054794520547946,0.6481033091202583,0.5511811023622047,0.1147715196599362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018645562052227,0.0041582993569849,0.0064269179222677,0.0082115490152238,0.0106203332587332,0.0127526075619295,0.0147556697666829,0.0171111201862212,0.0191784743094318,0.0215366347984523,0.023504930602538,0.0254227716571006,0.0273347113812359,0.0296232206497332,0.0315879633451663,0.033624476717143,0.0356599418261616,0.0376350776761454,0.0397688894431108,0.0417946821916952,0.0571860974846049,0.0717228973624213,0.085126237208522,0.0974238235881481,0.108863320268049,0.1249669721086062,0.1380429250084832,0.1504863668291437,0.162031103135948,0.1721730738298214,0.1853990069256702,0.1980437981476672,0.2099897730487194,0.2210410035983419,0.2307692307692307,0.2415091831535104,0.2524026923549176,0.2616546770689092,0.2712488075228274,0.2795080182028679,0.2873962421421873,0.2940935576720567,0.3013513673563654,0.3083053288526164,0.3145869306160169,0.3210647063176851,0.3267653329988711,0.331463753521396,0.335872315577759,0.340416253716551,0.3409204366069862,0.3404909243766969,0.3399387446895597,0.34061722681784,0.3407947611251674,0.340301439666022,0.3390123574295277,0.3396993694331484,0.3407421359954793,0.3403661351801149,0.3407368500037517,0.3420677925879049,0.3427340056069292,0.3430227354099534,0.3445444915254237,0.3467139948843765,0.3486791375124946,0.3513436968972245,0.3533106424786835,0.3548169327297276,0.3564762121557022,0.3576766124330913,0.3611180904522613,0.3628284976454504,0.3652508926893441,0.3666548505258182,0.3645387904703726,0.3679361179361179,0.3698324022346368,0.3675654242664552,0.0,1.9907979382502592,59.29241952595954,186.5585250764396,292.6911240891931,fqhc4_100Compliance_baseline,58 -100000,95729,42936,404.9243176049055,6725,68.88194799903896,5229,54.02751517304056,2125,21.822018406125625,77.31464774318667,79.68058171510137,63.30648041847581,65.05584986195662,77.05457498250398,79.42132931452353,63.21090804145442,64.96328441895079,0.2600727606826893,259.25240057783583,0.0955723770213907,92.56544300582448,112.35422,79.06583496740703,117366.73317385536,82593.16922500706,309.72771,198.03242962166067,322943.61165373086,206264.9916497236,317.79388,153.0469253363864,328389.4744539272,157087.73447949515,3759.86398,1700.4775211451704,3887417.083642365,1736150.3797221174,1225.80467,540.7794748911102,1265666.945230808,550091.7940081536,2082.34668,868.2899593212566,2139450.072600779,874929.1560665421,0.3796,100000,0,510701,5334.8515079025165,0,0.0,0,0.0,26507,276.26946902192645,0,0.0,29375,303.2518881425692,1862946,0,66832,0,0,0,0,0,52,0.5432000752123181,0,0.0,0,0.0,0,0.0,0.06725,0.1771601685985247,0.3159851301115242,0.02125,0.3190947666195191,0.6809052333804809,25.160015684868405,4.471527156614931,0.3166953528399311,0.2222222222222222,0.2352266207687894,0.2258558041690571,11.187980901236005,5.714155853663338,22.569481420489627,12638.602859791,59.26365892628369,13.851245514010312,18.65021075801675,13.702943115419,13.059259538837615,0.5580416905718111,0.7874354561101549,0.6914251207729468,0.6,0.1016088060965283,0.7291196388261851,0.9199029126213591,0.8746928746928747,0.752851711026616,0.145748987854251,0.4997435897435897,0.7146666666666667,0.6317053642914331,0.5584281282316442,0.0899357601713062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374664438028,0.0043596840749865,0.0066891329503237,0.0090133116553195,0.0112518439391627,0.0133155385305024,0.0153844584323767,0.0174797329031467,0.0195755729560648,0.0214671798861635,0.0236230160357626,0.0258340093027076,0.0280815083781643,0.0302830470577325,0.0323912549804909,0.0345497777318308,0.0366469918194056,0.0386423301615631,0.0408738328446357,0.0429007490441613,0.0576535566251474,0.0718435017427073,0.0853108411489477,0.0985908087075402,0.1112235966549611,0.1266595436321129,0.1392482990670077,0.1508917638289943,0.1626293508936971,0.1732471908906513,0.1862900529545626,0.1986931504177367,0.210178799071683,0.2207244232560688,0.2314129775621589,0.2419666451999733,0.2518680925321043,0.2617473888425184,0.2705454131831883,0.2793761269797516,0.2868075928524217,0.294569191824489,0.3013422500474293,0.3074808207172271,0.313094456201805,0.3189153178049743,0.3245815022098686,0.3293500808103946,0.3345240868732365,0.3396405543322037,0.3395212966453072,0.3385100002751107,0.3384271180716788,0.3393844865184928,0.3396431226765799,0.3385700053643957,0.3381625665736749,0.3394361100144756,0.3407737076343718,0.3408595230433695,0.3429188174565931,0.3437141387361007,0.3453019010133155,0.3463361201770465,0.3472098563418919,0.3486528078457967,0.3492422076065198,0.3522501810852518,0.3542325254654022,0.3577316713790769,0.3603772721029257,0.3626221107137137,0.3633935385398117,0.3638743455497382,0.3665046230101992,0.3649345973838953,0.3710603943487036,0.3710783295242053,0.3733221476510067,0.3730407523510972,0.0,2.23413577128731,58.57188371231971,202.1104831351564,290.43657260656187,fqhc4_100Compliance_baseline,59 -100000,95808,43168,406.8240647962592,6627,67.96927187708751,5217,53.79509018036072,2092,21.37608550434201,77.3504688262772,79.68142647821705,63.33176974345843,65.0595487581075,77.08692536853572,79.4219380575513,63.23456692706792,64.96720125972308,0.263543457741477,259.48842066574684,0.0972028163905065,92.34749838441304,112.51526,79.19183442398084,117438.2723780895,82656.80780726123,307.20682,196.2194433304672,319989.9590848364,204146.4213118604,316.31383,151.87422857374378,326110.794505678,155449.3665510315,3745.66229,1695.6341400929286,3863544.390865064,1723818.9504977972,1259.08599,552.9909762741647,1297054.7970941884,560069.095752693,2058.8997,861.852057353957,2105831.558951236,861777.445792592,0.38115,100000,0,511433,5338.10328991316,0,0.0,0,0.0,26338,274.2255344021376,0,0.0,29186,300.6638276553106,1866628,0,67073,0,0,0,0,0,40,0.41750167000668,0,0.0,0,0.0,0,0.0,0.06627,0.1738685556867375,0.315678285800513,0.02092,0.3237534128466733,0.6762465871533266,25.03048641006178,4.465107811775053,0.3329499712478436,0.2141077247460226,0.2256085873107149,0.2273337166954188,11.127980027947984,5.6313869513455845,22.22139114607188,12678.627836711312,59.02510530891787,13.147892791737524,19.5453258719636,13.216306100095856,13.115580545120904,0.5600920069005175,0.7878245299910475,0.7127230857800806,0.578589634664401,0.1037099494097807,0.7184841453982985,0.9362880886426592,0.874384236453202,0.7163120567375887,0.1393442622950819,0.5079001019367991,0.716931216931217,0.6634109691960932,0.535195530726257,0.0944798301486199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0048365999817486,0.0070841368111235,0.0093474086341607,0.0115242996928209,0.0137499745370841,0.0160726123094181,0.0185033902458949,0.0204695104494703,0.0226030342116577,0.0246300872614665,0.0269856754120244,0.0291649526943644,0.030988990617823,0.0329304263525917,0.0350688668230334,0.036882912538948,0.0388329374669391,0.0408629863651479,0.0429341828554771,0.0574409263992488,0.0717392668186285,0.0849935547427661,0.0976852678805964,0.1107552258934592,0.1258864686050075,0.1385292402311648,0.1500074466500712,0.1611360239162929,0.1720360962853407,0.1845450142603454,0.1976408515423122,0.2090825139877234,0.2204308714708872,0.2308183158404295,0.2413873344783644,0.251540384872974,0.2614264330170735,0.2715109940032709,0.2797534485129004,0.2882295742365661,0.295807108261775,0.303214657702869,0.3097389678563724,0.3154504351208129,0.3212695358275049,0.327708247203117,0.3331719375143345,0.337987269733857,0.3422259219619191,0.3423162042534816,0.3418722065883132,0.3414713357808528,0.3411681221126413,0.341390447556819,0.3399705467263914,0.3389182413886112,0.3396847336031856,0.3412392833307665,0.3418867654427027,0.343480952112993,0.3448153057792374,0.3446807618088766,0.3459315350837889,0.347968655816757,0.3476545145694499,0.3472341154307244,0.349675467893377,0.3520454704932987,0.3533272343979953,0.3557346446296043,0.3588981476567061,0.3608799798285426,0.3633394105135217,0.3670217780710851,0.3682528409090909,0.3710691823899371,0.371301175516822,0.3745544282972306,0.3836985774702037,0.0,2.474805276299929,56.61451351108101,204.0845220797191,291.82669244778526,fqhc4_100Compliance_baseline,60 -100000,95722,43210,406.7821399469297,6760,69.41977810743612,5313,54.96124192975492,2174,22.387747853158103,77.30949638025908,79.66867465452128,63.31695901961641,65.05906868263085,77.04811765602719,79.4057323924972,63.221957744364914,64.96564327317962,0.2613787242318892,262.9422620240831,0.0950012752514979,93.42540945122836,112.19802,78.93820824704564,117212.13514134682,82465.87853058403,310.33373,198.1650573171259,323662.68987275654,206480.98380427275,323.73377,155.69874171545442,334632.6549800464,159998.95900263992,3825.26243,1728.647029507584,3962285.1695534983,1771968.0005720577,1300.86776,565.3065068752974,1348000.564133637,579565.6660697617,2135.95252,881.1745072794786,2201807.087189988,895806.6449621095,0.38072,100000,0,509991,5327.824324606674,0,0.0,0,0.0,26484,276.11207454921544,0,0.0,29863,308.3303733728923,1864817,0,67014,0,0,0,0,0,56,0.5850274753975053,0,0.0,0,0.0,0,0.0,0.0676,0.1775583105694473,0.3215976331360947,0.02174,0.3284732931445395,0.6715267068554606,25.00547475562743,4.531963273798704,0.3246753246753247,0.2168266516092603,0.2300018821757952,0.2284961415396198,11.31869086917617,5.761219731068477,22.99085123708811,12710.570352366296,60.10307589350611,13.626092851807549,19.573273766975717,13.573020170611056,13.330689104111796,0.5667231319405233,0.7864583333333334,0.7171014492753623,0.5924713584288053,0.1186161449752883,0.7349397590361446,0.935656836461126,0.8648648648648649,0.7148014440433214,0.1923076923076923,0.5106649937264742,0.7150192554557124,0.6658860265417642,0.5566137566137566,0.1010204081632653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153735530326,0.0043183845592409,0.006614722830939,0.0091005119037945,0.011548823260306,0.0138426618624487,0.0162564337766906,0.0182408361999448,0.0204407015248763,0.0225972510771561,0.024867003556822,0.0270961250179682,0.0293984575835475,0.0315949909375514,0.0336516645352914,0.035696573955449,0.0378377818945799,0.0396681358568835,0.0417493790078676,0.0437703773919021,0.0584347099671069,0.0721238382316001,0.0855218996475918,0.098935879371622,0.111298571202615,0.1270160224208132,0.1397512891793816,0.1525448990237722,0.1636754054227293,0.1732579835717502,0.1859816205384557,0.199110062144079,0.2115962216515039,0.2228983572108702,0.2333017683719086,0.2446929975280176,0.2551466070929908,0.265242906543214,0.2743289448275078,0.2819055042296142,0.2890023502714969,0.2967119120056166,0.3035276563998721,0.3087960074859638,0.3149879061174382,0.3209374036386062,0.3255188124264651,0.3306214430312058,0.3360170095808538,0.3404294705664569,0.340650889170737,0.3400184702752622,0.3398272065051668,0.3397496200882842,0.3396636727884773,0.3385863054096397,0.3380391408721642,0.3392327466877595,0.3396812325218316,0.3406423829176386,0.3421736184309591,0.3430327379768487,0.3443023574272653,0.3452442564298733,0.3449680046538685,0.3468023179589375,0.3477148605921242,0.3505268820606942,0.3519205625640482,0.3542472196755291,0.3562797510069571,0.3599679315873864,0.3622287092270593,0.3627292961854325,0.3616435756310495,0.3674468593264867,0.3711148909850008,0.3677539995844587,0.3740606735318675,0.3750484308407594,0.0,2.0646219944090176,58.51720213183632,203.2359880413818,301.9091885875824,fqhc4_100Compliance_baseline,61 -100000,95735,43047,405.29586880451245,6797,69.7237165091137,5285,54.629968141223166,2112,21.695304747480023,77.40440741590693,79.76104713193014,63.3594678928421,65.0991359414041,77.14185396094585,79.49926463948405,63.26284227452624,65.00541496860416,0.262553454961079,261.78249244608764,0.0966256183158549,93.72097279994308,111.8579,78.61272522717228,116841.17616336764,82114.92685765108,309.44569,196.74549229607075,322677.2758134433,204956.27753284664,312.97342,150.34824201219496,323238.9617172403,154191.04317497378,3844.34228,1719.8821106941132,3976895.085391967,1757790.087944968,1303.22456,571.8760349084289,1344134.590275239,580210.3342514635,2089.8018,871.2798621714331,2148488.389826082,879769.6228662932,0.38029,100000,0,508445,5310.962552880347,0,0.0,0,0.0,26450,275.6985428526662,0,0.0,28809,297.29983809474066,1874297,0,67224,0,0,0,0,0,65,0.6685120384394422,0,0.0,1,0.0104455006006162,0,0.0,0.06797,0.1787320203002971,0.310725319994115,0.02112,0.3152585119798234,0.6847414880201765,25.24340608727697,4.54504975743959,0.3201513718070009,0.2100283822138126,0.2285714285714285,0.2412488174077578,11.075845155930615,5.513686865320256,22.410995269219644,12698.336037765848,58.96799669974891,12.819535329198748,18.898492932450065,13.234962371909573,14.015006066190528,0.5434247871333964,0.7648648648648648,0.6903073286052009,0.5720198675496688,0.1286274509803921,0.711824588880188,0.9093484419263456,0.8805970149253731,0.7301587301587301,0.1851851851851851,0.4897704590818363,0.6974900924702774,0.6310077519379845,0.5303347280334728,0.1134328358208955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274646389988,0.0045806941981251,0.0066954775092823,0.0088356268724927,0.0109198499283194,0.0133652280130293,0.0155821656050955,0.0178667999959184,0.0199341997711296,0.0223995906881555,0.024505232087403,0.0267468593480581,0.0290634316850005,0.0313430222377867,0.0335754674150811,0.0355189844630286,0.0375920383583774,0.039533605120385,0.0413942902277049,0.0435480007082669,0.0574023804552098,0.0712648730103914,0.0850519248924787,0.0974819954791568,0.1094843578716586,0.1245796942077103,0.1377817853922452,0.1502634800660031,0.1625089475539791,0.17367478471619,0.1870611295394821,0.1995022183746347,0.2107530156520226,0.2219330570469431,0.2326277340139946,0.2432258850365974,0.2537628170082676,0.2632709282059931,0.2718323277230867,0.2804194043176667,0.2882106163394085,0.2956740031525483,0.3030181371622898,0.3090822179732314,0.3158914963472698,0.3212327588326408,0.3266739133150917,0.3323006602336211,0.3373696385417609,0.3419957872564507,0.341701253173228,0.3414620750260889,0.3407004372460528,0.3414535646805994,0.3417276850561764,0.3402128049899101,0.3393071812717494,0.3406166505482977,0.3408113825576634,0.3410813992900083,0.3428737441895336,0.3433719433719434,0.344572351177371,0.3466526541746791,0.3487158522508657,0.3488754370401294,0.348966184124456,0.3506171288590182,0.3545783174814866,0.3557081613210543,0.3591821866035244,0.3623543185567558,0.3650613786591123,0.3661821779164447,0.3692437289404717,0.3766969661197025,0.3767648864333947,0.3823767178658043,0.3927677329624478,0.3893735130848533,0.0,2.2356538955542407,55.90355533357195,193.3627419990825,310.44258613113374,fqhc4_100Compliance_baseline,62 -100000,95750,43215,405.6083550913838,6767,69.39947780678851,5278,54.55874673629243,2111,21.671018276762403,77.33232137485312,79.6967454805041,63.31916690730778,65.07046033715895,77.0673683302507,79.42942625995724,63.22251831258595,64.97454778028867,0.2649530446024215,267.31922054686663,0.0966485947218345,95.91255687027456,111.9349,78.68387558699725,116903.28981723238,82176.37137023211,306.9151,196.4073847339961,319977.9425587467,204565.1851007793,320.85738,155.19243657098838,330656.0,158768.19505087563,3756.81087,1706.3254798411986,3888958.015665796,1747458.913672269,1280.97123,562.1659050281714,1323557.994778068,572866.2798326798,2064.62276,862.8712687111616,2122713.691906005,876851.5919365326,0.38188,100000,0,508795,5313.785900783289,0,0.0,0,0.0,26227,273.32637075718014,0,0.0,29620,304.88772845953,1868793,0,67139,0,0,0,0,0,49,0.5117493472584856,0,0.0,0,0.0,0,0.0,0.06767,0.1772022624908348,0.3119550761046253,0.02111,0.3173955843060048,0.6826044156939952,25.12393162319129,4.433934167174059,0.3243652898825312,0.218075028419856,0.2381583933308071,0.2194012883668056,11.369606905667576,5.940456866087189,22.682878521749643,12737.110394713409,59.80467253021387,13.610678952345504,19.18811956092893,14.240934253473354,12.764939763466096,0.5604395604395604,0.7688966116420504,0.6991822429906542,0.5775656324582339,0.1295336787564766,0.7453874538745388,0.9399477806788512,0.8995327102803738,0.6876971608832808,0.2070484581497797,0.4965587560540402,0.68359375,0.632398753894081,0.5404255319148936,0.1106337271750805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0049396991550781,0.0072496141661928,0.0095942759573949,0.0118621307072515,0.0144354682613257,0.0168067226890756,0.0189077989565998,0.0213077041051071,0.0236691236691236,0.0259259638943278,0.0282323470833418,0.0302519280205655,0.0322876328582021,0.0345827272070733,0.0365868783331266,0.0388697335859762,0.0409266329155946,0.0429292929292929,0.0449281399708394,0.0592594912264219,0.0732153879955221,0.0869515059988254,0.0993481232257386,0.110756157219973,0.1267556476859294,0.1396513490859319,0.1521505433567847,0.1640235372013797,0.1748868826796474,0.1880411838194115,0.2008656135035706,0.2133945373260961,0.2245833151056476,0.2350695361323827,0.2457068833800197,0.255224196985418,0.2649752475247525,0.2736474219317356,0.2819575998442349,0.2885993032971866,0.2954247601216944,0.3020404298631823,0.3088550844511574,0.3149831118022987,0.3202899622753162,0.3256553416289026,0.330831372050124,0.3360879758558605,0.3399862717144516,0.3402974218055443,0.33997493906889,0.3397888564703229,0.339423549478188,0.3394854253420583,0.3383115090925818,0.3372019178865145,0.3382152308627973,0.3382159399729947,0.3387671110315827,0.3395843129878679,0.3409289400555776,0.3427260674677497,0.3441466537865342,0.3452608180917635,0.3463118507470497,0.3464834599782894,0.350526548812498,0.3529245947850599,0.3570001598210005,0.3591314285714285,0.3598691969550767,0.3586589330103894,0.3582204433497536,0.3602150537634409,0.3623788129581461,0.3650311408172565,0.3644596498289394,0.3690998902305159,0.3680555555555556,0.0,2.13589948467893,59.68750494814808,202.44480147257585,293.19269106457045,fqhc4_100Compliance_baseline,63 -100000,95729,43196,407.3582717880684,6717,68.7983787566986,5217,53.95439208599275,2098,21.59220298968965,77.41699606751023,79.77068601551976,63.36600846061516,65.10081336021916,77.16534558620752,79.51829747863204,63.27341661330341,65.01022132343432,0.251650481302704,252.38853688772167,0.0925918473117519,90.59203678484096,111.32726,78.38235336841069,116294.18462534864,81879.42354815228,308.63612,197.5421154622343,321818.62340565555,205779.8372181782,321.71983,155.74741279816976,332603.4534989397,160071.63806932344,3746.1889,1698.895133472867,3876537.4442436458,1738735.8867089832,1299.75564,575.0532571382346,1343057.5478695063,586302.5356916481,2068.0863,856.8400908529127,2129657.6168141314,868651.7303218226,0.38088,100000,0,506033,5286.099301152211,0,0.0,0,0.0,26346,274.629422640997,0,0.0,29737,307.19008868785846,1872213,0,67149,0,0,0,0,0,55,0.5745385410899518,0,0.0,0,0.0,0,0.0,0.06717,0.1763547574039067,0.3123418192645526,0.02098,0.3211295586774514,0.6788704413225486,24.89568620869979,4.52862127567234,0.318765574084723,0.2231167337550316,0.2261836304389496,0.2319340617212957,11.51357320660208,5.881582680606317,22.130029296309136,12650.727965700851,58.84938299416935,13.737512078631957,18.65154047219428,13.242959669479315,13.217370773863784,0.5616254552424765,0.7955326460481099,0.6939266386049309,0.5872881355932204,0.1297520661157024,0.7339791356184798,0.9398496240601504,0.8782816229116945,0.7397769516728625,0.1686274509803921,0.5019354838709678,0.7202614379084967,0.6318327974276527,0.5422612513721186,0.1193717277486911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022672523735298,0.0044778085078361,0.0066029698149951,0.0086008184486032,0.0106454367984382,0.0128565320955231,0.0154217800790965,0.0176872831190038,0.0198050156355386,0.021801180598893,0.0238246505717916,0.0261396990907038,0.0284645195777094,0.0307196407974954,0.0328261205962758,0.0349584590584053,0.0369499948234806,0.0392250409674542,0.041218470364481,0.0429614659402248,0.0581386849881488,0.0720391742437717,0.0855749055812001,0.0981247962306616,0.1104900120235408,0.1258341882330544,0.1386702590321827,0.1510484300159659,0.1626356721647722,0.1732579835717502,0.1869670083555862,0.1999004716777013,0.210926716876963,0.2218120255584075,0.2322075981630814,0.2419183538001991,0.2525217623914667,0.2613933937983973,0.2700845785809845,0.2789545355716525,0.2875294824954909,0.2953246783598396,0.3021375200983637,0.3082559141844651,0.3139920142723643,0.3196216562392236,0.3247605711285039,0.3301170817283856,0.3350576124768838,0.3403559657218193,0.3408161618335396,0.3404664715018073,0.3401469718726244,0.3397800037581486,0.3396035779025883,0.3387526407642142,0.3376588480748562,0.3385028577043381,0.3394332839203258,0.3399946614467479,0.3411226300551041,0.3424166650258914,0.3438603824851081,0.3447308668358488,0.3463889354970157,0.345550010397172,0.3454535124847314,0.3480711422845691,0.3512171236709569,0.3538388550644422,0.3568904593639576,0.359919606494949,0.3631302389590892,0.3661006624533617,0.3688141923436041,0.3717032000937756,0.3760593220338983,0.3787727363581851,0.3830480847595762,0.3883677298311445,0.0,2.0254144886478698,59.03354904050914,194.20061705482863,294.6015562707844,fqhc4_100Compliance_baseline,64 -100000,95700,43123,407.81609195402297,6674,68.67293625914316,5165,53.437826541274816,2079,21.38975966562173,77.3508434030137,79.74203063125022,63.31502979323547,65.08295815511347,77.09574263194176,79.48575965763645,63.22155114487294,64.99139318819402,0.2551007710719375,256.2709736137663,0.0934786483625274,91.56496691944938,112.92578,79.46012767195523,117999.77011494254,83030.43643882469,310.00241,198.64708829666452,323418.11912225705,207059.37126088256,319.83974,153.903586983031,330873.63636363635,158269.50039221646,3723.88903,1678.3051972603294,3853597.0323928944,1716100.8644308534,1268.73856,551.3813005775945,1309706.959247649,560117.3464760655,2047.26254,850.5525628155533,2107082.7586206896,860846.0995759015,0.38038,100000,0,513299,5363.625914315569,0,0.0,0,0.0,26395,275.27690700104495,0,0.0,29537,305.25600835945664,1861104,0,66798,0,0,0,0,0,65,0.6792058516196448,0,0.0,0,0.0,0,0.0,0.06674,0.1754561228245438,0.3115073419238837,0.02079,0.3233915636983383,0.6766084363016617,25.46780380916686,4.438587711636115,0.3283639883833494,0.2143272023233301,0.2247821878025169,0.2325266214908035,10.93358385121253,5.55476306108655,22.061754309872924,12588.923304160608,58.24362857675764,13.053026584894758,19.051121106446587,12.902473316533133,13.237007568883165,0.5533397870280736,0.7850045167118338,0.6969339622641509,0.5650301464254953,0.1257285595337219,0.7033639143730887,0.9081081081081082,0.8511166253101737,0.7027027027027027,0.1380753138075313,0.5024630541871922,0.723202170963365,0.6488785769528229,0.5179190751445086,0.1226611226611226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122319357354,0.0050298648223828,0.0073191282014841,0.0097772176599723,0.0118618893568536,0.0140278315437745,0.016158483714003,0.0183119880711644,0.0203516020494779,0.0224493558099997,0.0246026048610398,0.0264476900638852,0.0284712150667036,0.0303114600397696,0.0322507404770013,0.0342068537757791,0.0360628224519818,0.0381956697735245,0.039879342625338,0.0418599318316847,0.0566394418565788,0.0710284679251604,0.0847888151817952,0.0982221754681254,0.1111357235530521,0.1264229190470145,0.1398927983866688,0.1512618464487275,0.1619102588768464,0.1720800472128333,0.1851867819189067,0.1973523267267787,0.208516934860898,0.2196178845775064,0.2300604379272763,0.241246646118367,0.2515377831362961,0.2620403935784567,0.2707261389579855,0.2792153445765452,0.2867879517793244,0.2943677312814026,0.3008580028916119,0.3062042481699268,0.3119451268455233,0.3173387594031323,0.3225358282746104,0.3279080717203466,0.3332470289723739,0.3375323509216711,0.3370635027639207,0.3371710299808574,0.3377860444143839,0.3381352136282853,0.3375230011277972,0.336918933806653,0.3362973276584972,0.3369476067058167,0.3379677865646404,0.3387145685795323,0.3390090849489557,0.340358355039861,0.3409423470880889,0.3424581130223323,0.3427488060668602,0.3437369845897542,0.3455761491809783,0.348370143277232,0.3501205745640093,0.3535874616051035,0.3550600343053173,0.356472201709041,0.3579474342928661,0.3606108958285844,0.3617041286560707,0.3637986433416637,0.3638307621811517,0.359040959040959,0.3605756177029595,0.3642332947083816,0.0,2.1035016797023163,57.646237900939965,194.31465578450133,291.59669353018967,fqhc4_100Compliance_baseline,65 -100000,95724,43407,409.3435293134428,6747,69.20939367347792,5238,54.14525092975638,2099,21.624670928920647,77.26691653433518,79.62695613845182,63.2951211478972,65.03904589717656,77.01080029983615,79.36919338458993,63.20108589009488,64.94614656760791,0.2561162344990322,257.76275386188274,0.094035257802318,92.89932956865243,111.69136,78.59929225375551,116680.6234591116,82110.3299629722,309.22099,197.6305244095541,322440.6522920062,205865.4302051252,318.37264,153.6439846213544,328029.7626509548,157037.2390445582,3759.09602,1703.8280264100697,3892715.6094605327,1745638.60307767,1271.51276,558.7664368585766,1313349.901801011,568772.8495230353,2070.50312,864.688357871182,2135577.305586896,881250.8187092048,0.38363,100000,0,507688,5303.664702686891,0,0.0,0,0.0,26432,275.51084367556723,0,0.0,29441,303.1110275375036,1865444,0,66996,0,0,0,0,0,63,0.6581421587062806,0,0.0,0,0.0,0,0.0,0.06747,0.1758725855642155,0.3111012301763747,0.02099,0.3212155637602953,0.6787844362397046,24.90458445759711,4.508632588566012,0.3293241695303551,0.2140129820542191,0.2254677357770141,0.2311951126384116,11.12944209551107,5.480061573138336,22.58722603973858,12752.37607406665,59.581013149836046,13.185527922647497,19.68754440680912,13.229605030670504,13.478335789708924,0.5509736540664376,0.7671721677074042,0.6968115942028985,0.5757832345469941,0.1189099917423616,0.7261287934863064,0.9263157894736842,0.8733031674208145,0.7262773722627737,0.1725490196078431,0.4900951890918446,0.6855600539811066,0.6360093530787218,0.5303197353914002,0.104602510460251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599238342178,0.0047044986768597,0.0069204854487153,0.0092339573958005,0.0115330634827004,0.0135623593617952,0.0158521418231492,0.0181502654144548,0.0203226268119645,0.022754491017964,0.0247252747252747,0.0266521565044197,0.0286595711861792,0.0305805042847725,0.0325908654788556,0.0347001850263068,0.0368441218196315,0.0390604737055058,0.0412240400806602,0.0432173369451969,0.0579698039133794,0.0717889140082056,0.0847735070985614,0.0975697001578116,0.1099987340703856,0.1260210775807339,0.138759739294737,0.1513066814338352,0.1629456170740574,0.174191193834396,0.1878489963995429,0.2003402208184802,0.2121373813049917,0.2230398598335523,0.2335643378909908,0.2449527741706345,0.2546149803772488,0.264114379710896,0.2731930071677666,0.2826682562791604,0.2905604036943589,0.2980745596067186,0.3056746323094048,0.3123335652424249,0.3181663424124513,0.3238731012697277,0.3289028213166144,0.3342255531763026,0.3398014147576091,0.3439010501503052,0.3435310665692878,0.3434173049802284,0.3439003679592414,0.3436801949464767,0.342611653092276,0.3423776783104917,0.3412534216054491,0.3420162102378712,0.3431315283122594,0.3438958707360862,0.3439454449551654,0.3445939232557677,0.3451825910845763,0.3458986527518499,0.345338726475646,0.3469248530646515,0.3475988051470588,0.3512012440889904,0.3530187468814598,0.3536728183176513,0.355441705898643,0.3575581395348837,0.3556701030927835,0.3530767457939617,0.3563251017125556,0.3588158364047081,0.3602084610668302,0.3607787467045224,0.3610118229309871,0.3639521420301042,0.0,2.189866803558264,59.554010794503775,202.65630720976037,290.0336740467632,fqhc4_100Compliance_baseline,66 -100000,95708,43231,406.7894010949973,6756,69.49262339616332,5273,54.56179211769131,2116,21.77456429974506,77.288290147924,79.65733723147534,63.294707477804174,65.04389837266507,77.02798660213516,79.3963493765934,63.198965186961,64.95002704319059,0.2603035457888438,260.98785488193244,0.0957422908431766,93.87132947448151,112.1703,78.9169320721207,117200.08776695783,82455.4882268156,312.20174,199.90662845949944,325665.29443724663,208334.6241270316,320.99827,154.79598698509034,332054.69762193336,159144.92602805875,3796.35921,1708.43867359781,3931852.185815188,1750335.1029149194,1286.9987,564.1032577965724,1332120.1675930957,576806.6700762439,2076.4452,863.8241522728204,2138738.809712877,876259.1608808556,0.37982,100000,0,509865,5327.276716679901,0,0.0,0,0.0,26700,278.4302252685251,0,0.0,29643,306.4634095373428,1859210,0,66803,0,0,0,0,0,39,0.3970409997074435,0,0.0,0,0.0,0,0.0,0.06756,0.1778737296614185,0.3132030787448194,0.02116,0.3186674163621029,0.6813325836378971,25.10779583876204,4.433033018142179,0.3292243504646311,0.2114545799355205,0.2328845059738289,0.2264365636260193,11.339382496658326,5.872911433908665,22.496106436461364,12675.422741261127,59.56822444270141,13.308478471021408,19.53481199718893,13.621755632928704,13.103178341562382,0.5566091409065048,0.7766816143497758,0.6877880184331797,0.6017915309446255,0.1139028475711892,0.7197026022304833,0.9209183673469388,0.8427230046948356,0.7314487632508834,0.1680327868852459,0.5007637474541752,0.6984785615491009,0.6374045801526718,0.562962962962963,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021369469004142,0.0042882776938595,0.0065450338921134,0.0087974156321745,0.0113701082092588,0.0136240059465018,0.0158438857282681,0.0180983004134129,0.0205256110151386,0.0227907690733254,0.0248734293971754,0.027016484982858,0.029240607842734,0.0311631068361104,0.0333776856350115,0.035726465694532,0.0379155752047461,0.0399946037379492,0.0420497566252028,0.0441044667236384,0.0591847604724754,0.0727126150366965,0.0862045442619509,0.0987845303867403,0.1110407364009669,0.1260654574717025,0.1388127853881278,0.1506078654917797,0.1620257496043458,0.1731688197330412,0.185956473912387,0.1981798483206933,0.2101049925938834,0.2211857447856791,0.2315639904391598,0.2427732836201826,0.2525329337299546,0.2612294610535338,0.2705085902833087,0.2785307360102912,0.2867799756366379,0.2937657615389126,0.3009624627653893,0.3072661948306316,0.3140187826595368,0.3200138427121828,0.3255212258226576,0.3300447972636657,0.3357760972947688,0.3411831672027852,0.3407140544041451,0.3404901203223314,0.3406388303663589,0.3401073397156948,0.3404121957407435,0.3400482490511532,0.3399698340874811,0.340696602580985,0.340946893701665,0.3407123268027747,0.3422424664495849,0.3434052852948179,0.3445263157894737,0.3469076898953923,0.3481734610386485,0.34928865495857,0.3495679945250791,0.3510303106685991,0.3541263076327005,0.356624681122449,0.3585052728106373,0.3613620569840167,0.3653239045334007,0.3684692942254812,0.3678257618246401,0.3663331371394938,0.3731003039513678,0.3782206119162641,0.3735787763941526,0.3768939393939394,0.0,2.053829730586568,59.35629331757748,198.1441818724336,297.7452330119572,fqhc4_100Compliance_baseline,67 -100000,95812,42547,400.597002463157,6666,68.28998455308312,5183,53.33361165615998,2026,20.63415856051434,77.36488025655099,79.67941115485671,63.35773544642036,65.07095336170913,77.10705202209057,79.42670746468124,63.26180841382241,64.98038687930247,0.257828234460419,252.7036901754656,0.0959270325979488,90.56648240665766,114.18066,80.30771171887116,119171.33553208366,83817.79393068838,310.65648,198.5192504849184,323455.84060451714,206417.89463106747,314.16657,151.79416160219694,323028.9316578299,154638.87809158574,3721.21533,1680.297336962422,3831921.7947647474,1701864.3023435697,1242.12039,543.9220193561127,1278113.597461696,549396.5571704094,1997.49252,839.2115344462246,2037501.87867908,834631.6283706406,0.37666,100000,0,519003,5416.878887821985,0,0.0,0,0.0,26559,276.3954410720995,0,0.0,28999,297.86456811255374,1861003,0,66811,0,0,0,0,0,60,0.6262263599549117,0,0.0,0,0.0,0,0.0,0.06666,0.1769765836563479,0.3039303930393039,0.02026,0.3217552887364208,0.6782447112635792,25.07697599298338,4.524951681038647,0.339764615087787,0.2058653289600617,0.2270885587497588,0.2272814972023924,11.233692364209304,5.604100703137253,21.63615468387339,12484.307888526584,58.57118143271083,12.635466152425623,19.80111170127945,13.176402580109032,12.958200998896723,0.5535404206058268,0.7656982193064668,0.7047132311186826,0.566694987255735,0.1222410865874363,0.718558282208589,0.918918918918919,0.8627906976744186,0.7078651685393258,0.1561181434599156,0.4980665119876257,0.6843615494978479,0.6536438767843726,0.5252747252747253,0.1137088204038257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0043898779350338,0.0064432989690721,0.0086641205866818,0.0107381458394769,0.0128090253736814,0.014862688332076,0.0170998632010943,0.01928974484789,0.021434054966989,0.0237978108473742,0.0259946840717137,0.0279756215377342,0.030228800214082,0.0322740251306525,0.0343453530025085,0.0364405552452471,0.0384930215208629,0.0407455479985462,0.0427617204569573,0.0573565304462106,0.072018396571548,0.0847178864003017,0.0975069310257918,0.109753657226511,0.1247465574047478,0.1375949487779814,0.149369080143299,0.1601126592271747,0.1707727243514214,0.1838447303868829,0.1960688916999124,0.2080472009735744,0.2190715456034953,0.2288289278452492,0.2400959985843526,0.2503537170931696,0.2590824863832893,0.2687028606373581,0.2763935738379738,0.2844586634635374,0.2904679618905287,0.2977581866956593,0.3035936453249114,0.3103804169651639,0.3157953075928321,0.3211511763160857,0.3258907000991786,0.3306590406190556,0.3349411563146588,0.3349076279282552,0.3345394012766894,0.3346771919932337,0.3341866620384431,0.3339088500580478,0.3333589051184485,0.3324073339153901,0.3336737214856295,0.3346024559237154,0.3356328841743119,0.3360592413936047,0.3373295160841385,0.3376292458988776,0.3389423076923077,0.3405741258067623,0.3421801938298373,0.3424719997720083,0.3440375646035548,0.3474492671927847,0.3503897661403158,0.3543256412613772,0.3573192997529803,0.3567187998723268,0.3591527520098949,0.3579420483886392,0.357588108367298,0.3598014888337469,0.3629995879686856,0.3791285040244241,0.3821928460342146,0.0,2.9327076376178582,56.43068497724307,197.00297729353235,293.94680394926297,fqhc4_100Compliance_baseline,68 -100000,95644,43102,406.7688511563715,6649,68.46221404374555,5137,53.19727322152984,2086,21.496382418133912,77.2563444549925,79.66525668432848,63.27473565930678,65.05507529663363,77.00122748145067,79.40946295670183,63.18224839829802,64.96484666261094,0.2551169735418312,255.79372762665287,0.0924872610087561,90.22863402269364,112.5465,79.22333433723745,117672.3056333905,82831.47331483151,309.25564,198.06512461613775,322831.0401070637,206576.47590663063,312.24499,150.4418388222728,323111.3922462465,154768.0503782371,3714.99551,1658.109338444798,3849656.570197817,1699091.797127679,1284.8183,553.7752545589484,1332397.1707582285,568059.5798575432,2052.52082,844.674616787364,2116606.896407511,857048.6229518811,0.38035,100000,0,511575,5348.741165154112,0,0.0,0,0.0,26390,275.39626113504244,0,0.0,28899,298.774622558655,1860047,0,66791,0,0,0,0,0,55,0.5750491405629208,0,0.0,0,0.0,0,0.0,0.06649,0.1748126725384514,0.3137313881786734,0.02086,0.3221841052029731,0.6778158947970269,25.26216192008769,4.467133499993482,0.323729803387191,0.2168580883784309,0.22328207124781,0.236130036986568,11.208658227631178,5.681405673802579,22.18121874112641,12647.882276599554,58.04383742721667,13.380594617736527,18.645961518486097,12.649485985162368,13.367795305831669,0.5592758419310881,0.7854578096947935,0.6987372218881539,0.5876198779424586,0.133553173948887,0.7056936647955092,0.8903743315508021,0.8503937007874016,0.7027027027027027,0.1759656652360515,0.5123393316195373,0.7324324324324324,0.6536661466458659,0.5540540540540541,0.123469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0045407092831152,0.0065760764773338,0.0088588176729348,0.0110387628446434,0.0133553375508083,0.0155765464338175,0.0177060770771179,0.0200171838880592,0.0224762841395701,0.0247598916434083,0.0266578971708099,0.028794679624444,0.0308788353678653,0.0332730747378751,0.0352959437086092,0.0371119058725962,0.0390800299177262,0.0410410097919853,0.0428705538750391,0.0568427653237184,0.0713208179684881,0.0845196103132611,0.0976074439754534,0.1102646351242983,0.1253015617725483,0.1377374509179667,0.1496022745423761,0.1614385721156415,0.1723893729344607,0.1856586932853277,0.1988148244445166,0.2102030147251024,0.2207733862219349,0.2310627364056417,0.2421999001054442,0.2518565740616472,0.2623933646618659,0.2719689996477232,0.28027939624719,0.2879221788078702,0.2947396804182933,0.3023106851394951,0.308594547222589,0.3153133408822491,0.320824171751859,0.3261087698173791,0.330536249442071,0.3354363008541683,0.3398693674635075,0.3394894225966277,0.339762795642509,0.3400905361437261,0.3401518560996501,0.3395521830701898,0.3394845884871917,0.3380221179091415,0.3381746162733124,0.3392045454545455,0.3404695511378969,0.3423477866747242,0.3433031980564738,0.3431759222154261,0.3439885067792044,0.3458406823068931,0.3470680628272251,0.3497377396887271,0.3522921277268416,0.3535101294316263,0.3562194200246629,0.3565261090045228,0.3588087740833645,0.3602740595064391,0.358673274876096,0.3603461109043543,0.3606750855659152,0.3598187311178247,0.3627234384414541,0.3574134199134199,0.3668981481481481,0.0,1.945759353874024,55.12094314879006,200.94152030087383,291.42416304103745,fqhc4_100Compliance_baseline,69 -100000,95694,42920,404.4454197755345,6562,67.42324492653667,5113,52.86642840721466,2052,21.067151545551443,77.32722884548278,79.70630379070639,63.32110870231941,65.07694469390495,77.0805668093611,79.45904118286158,63.2303378275681,64.98829214279105,0.2466620361216769,247.26260784480303,0.090770874751314,88.65255111389558,112.54012,79.18173142918363,117604.15491044371,82744.71903064311,306.08763,195.38608101007003,319346.1972537464,203663.3446298305,313.55221,150.95949983209383,323779.7981064643,154717.59678915236,3661.61838,1647.493117314419,3790654.262545196,1685898.203977697,1239.03038,539.0030055336845,1283210.3057662966,551683.381960922,2020.98238,840.9386859538597,2077633.8746420883,850856.4287170122,0.38012,100000,0,511546,5345.643405020169,0,0.0,0,0.0,26223,273.4654210295316,0,0.0,28943,298.74391288900034,1866279,0,66987,0,0,0,0,0,56,0.5747486780780404,0,0.0,0,0.0,0,0.0,0.06562,0.1726296958855098,0.312709539774459,0.02052,0.3194202898550725,0.6805797101449276,24.88595854921164,4.495214123037417,0.3301388617250146,0.217484842558185,0.2223743399178564,0.2300019557989438,11.248448694374693,5.672471490289308,21.857140408062712,12559.584952683275,57.64882773083772,13.001325256142035,19.15953535898106,12.5886665416616,12.899300574053022,0.5450811656561706,0.7670863309352518,0.6901658767772512,0.5646437994722955,0.1079931972789115,0.7191188040912667,0.9152046783625732,0.8752834467120182,0.7298387096774194,0.1416666666666666,0.4875065070275898,0.7012987012987013,0.6246992782678428,0.5185601799775028,0.0993589743589743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361896855447,0.0042869738829037,0.0066450238409252,0.0087957179276232,0.0109415198137094,0.0130634437396271,0.0153162156098953,0.0173623522923411,0.019460863518295,0.0218942970374087,0.0240283047892523,0.0261490268577004,0.0286046368105984,0.0310249250394122,0.0329115752972258,0.0350058946410473,0.0368708948884238,0.0388185215946843,0.0408891385300297,0.0431746164109406,0.0575430606766453,0.0708529565672422,0.0835055331200503,0.0964935351856332,0.1081146641916976,0.1232876712328767,0.1356049110222099,0.1471571550255536,0.1584547668903038,0.169294632513837,0.1824585590728434,0.195841586301696,0.2078479993909535,0.2181173923028971,0.2289245465751012,0.2399539104133659,0.249469877904511,0.2597225815886873,0.2689212960335924,0.2770032647917979,0.285022868059978,0.2928756188625803,0.2997643938766087,0.3057716511836979,0.3119522541905213,0.3187351232687493,0.3237732635322997,0.329567454656613,0.3341890980758259,0.3388650327013279,0.3388298159442975,0.3391605019906049,0.3389808989081059,0.3389107421762017,0.3382501786139557,0.3375537799631223,0.3366547139275854,0.3379511842817983,0.3393570867352167,0.3412142284033164,0.342378590811266,0.3435376836783062,0.3445848261990069,0.3455688274504541,0.3466422495843473,0.3482079836875539,0.3499442809383661,0.3516808973187561,0.3534470654310587,0.3567162990683972,0.358949683805334,0.3602139037433155,0.3602633911612004,0.3629038446780753,0.3654229564226716,0.3634195779182067,0.3640986132511556,0.3665379142102053,0.3733775200220933,0.3837567359507313,0.0,2.239868941446829,55.80212857637327,193.6700357985616,291.5777821397073,fqhc4_100Compliance_baseline,70 -100000,95784,42907,404.5456443664913,6583,67.60001670425123,5132,53.04643781842479,2098,21.61112503132047,77.38146625236273,79.70422990962041,63.35451413110488,65.06782898953418,77.12276833922017,79.44343060124146,63.259320937819055,64.97387151023504,0.2586979131425551,260.7993083789495,0.0951931932858229,93.95747929913512,112.44354,79.11835772145535,117392.59166457863,82600.57809389391,307.0779,196.21139555555413,320043.6711768145,204297.4403113982,309.01458,148.71337480889926,318818.03850329906,152462.4861835242,3732.18856,1676.472527015171,3864249.008185084,1718066.7487926718,1236.50841,537.0944572905446,1279520.1703833626,549336.1311546207,2059.59986,860.9850019100157,2123706.3183830287,876463.3212641281,0.38067,100000,0,511107,5336.026893844483,0,0.0,0,0.0,26210,273.07274701411507,0,0.0,28578,294.57947047523595,1867694,0,67083,0,0,0,0,0,49,0.5115676939781174,0,0.0,0,0.0,0,0.0,0.06583,0.1729319357974098,0.3186996809965061,0.02098,0.3175150992234685,0.6824849007765315,25.396463753441505,4.527983308923722,0.323460639127046,0.2084957131722525,0.2320732657833203,0.2359703819173811,11.083231158208454,5.622661202649868,22.404005981149957,12627.692882858715,57.81299703259229,12.538388435809107,18.710991529459065,13.209947184916414,13.353669882407688,0.5457911145752143,0.7644859813084112,0.6957831325301205,0.5801847187237615,0.1131296449215524,0.6971990915972748,0.9027027027027028,0.8411214953271028,0.7310606060606061,0.1312741312741312,0.4933088428234059,0.6914285714285714,0.6452922077922078,0.5372168284789643,0.1081932773109243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023996112022355,0.0046515870120394,0.0071819113216542,0.0094747745552035,0.0117949708684555,0.0138343139849746,0.0157880789302022,0.0179695711180726,0.0201164691458929,0.0221190047470944,0.0241978445273122,0.026234251241433,0.0283432846557801,0.0306973296823207,0.0327845191088384,0.034678976773967,0.0366008878586876,0.0386190451505883,0.0404109660194679,0.0425117654408396,0.0565620303890465,0.07065052475175,0.0841347918655018,0.0968945797064883,0.1092321803211284,0.1255711626332712,0.1385005409763031,0.1511225608652607,0.1627430036317026,0.1735373267146272,0.1864746156827283,0.1994614411316224,0.2108324996737854,0.2210737021723436,0.231152627409559,0.2420841550153996,0.2523552261463589,0.26222702264826,0.2704371814229114,0.278695288414152,0.2863330013664683,0.2936279331178867,0.3010799801056296,0.3070450895318455,0.3129957365141448,0.3191148567063404,0.3239760814631339,0.3285534335118903,0.3330611610093705,0.3380984437492575,0.3384654759018292,0.3394203776077503,0.3391890367696819,0.3396226415094339,0.3394253541266366,0.3385302376969938,0.3383438400861659,0.339985885210655,0.340408079565262,0.341560040687403,0.3422511990407674,0.3430878897379697,0.3436956293889529,0.3448801254761371,0.3464140404940173,0.3485635258200036,0.3497095010252905,0.3509636512022098,0.3540198450264717,0.3545772409408773,0.3583136040794026,0.3596017371041203,0.3593016707339966,0.3599152606491639,0.3609411764705882,0.3637761741393588,0.365378764831153,0.3646631706333199,0.3691128148959474,0.3795088257866462,0.0,2.0321973564326523,58.52824328030994,185.38275249339787,294.4345958834523,fqhc4_100Compliance_baseline,71 -100000,95763,43029,405.2086922924303,6661,68.4815638607813,5231,54.10231509037937,2105,21.62630661111285,77.31912755708531,79.66988905251262,63.32066847763053,65.05859171764584,77.06212917186585,79.41316444636975,63.22507806100516,64.96638035034138,0.256998385219461,256.72460614286763,0.0955904166253702,92.21136730445778,112.0075,78.7762346927661,116963.23214602716,82261.66128125279,308.48877,197.37086421364407,321621.76414690434,205587.48599526336,316.74924,151.78610213202435,327844.14648663887,156239.38162593413,3761.31934,1691.155490223754,3889457.243402985,1727699.7276858012,1248.35018,541.7525269297115,1288081.795683093,550220.979845777,2068.42134,866.0265596694084,2125885.7387508745,872545.025747362,0.37993,100000,0,509125,5316.510552092144,0,0.0,0,0.0,26309,274.1873166045341,0,0.0,29211,302.17307310756763,1867147,0,67115,0,0,0,0,0,64,0.657874126750415,0,0.0,0,0.0,0,0.0,0.06661,0.1753217697996999,0.3160186158234499,0.02105,0.3255614361321699,0.6744385638678301,24.97308178792484,4.44853868019593,0.3150449244886255,0.2261517874211432,0.2288281399350028,0.2299751481552284,10.975822079570955,5.560847748786409,22.524393979949707,12590.157033395188,59.0693006649449,13.887391061250824,18.58245671077053,13.211362016919438,13.388090876004116,0.5528579621487287,0.7869822485207101,0.6850728155339806,0.581453634085213,0.113050706566916,0.706646294881589,0.927461139896373,0.8401937046004843,0.7137254901960784,0.1490196078431372,0.501529831718511,0.7189460476787954,0.6331983805668017,0.5456475583864119,0.1033755274261603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0044893037019021,0.0067063025039568,0.0089886042779662,0.0113290823850057,0.01362622590205,0.0155799133316339,0.0177776416288853,0.0198871188728246,0.0219999590507974,0.0243609855125957,0.026553306841635,0.0286628134191743,0.0308955485273362,0.0329973069740086,0.0352119226515911,0.0370838164651316,0.0392120250210064,0.0413687754593066,0.0433084398337655,0.0575794901772479,0.071206653067629,0.0845605202433396,0.0974173466812484,0.1092942838467539,0.1240219092331768,0.1364176318357303,0.1480389861888446,0.1593857785086548,0.1702170999731975,0.1844066336420418,0.1969695329833865,0.2091088075011149,0.2199829411250109,0.2311280793055265,0.2417409601860568,0.2519031991605831,0.2612990695214842,0.2699217996299953,0.2782047024061752,0.2862567581647892,0.2941259101444525,0.3013055943890245,0.3072749750939229,0.3127661127466485,0.3188446958003532,0.3238144187737398,0.3290543813578767,0.3350117445527337,0.339128480393453,0.3382120840134356,0.3374360812095985,0.338304242218833,0.338565899899987,0.3389472116744844,0.3387168583140151,0.3372021021545496,0.3375637860082304,0.3384575879483009,0.3398204397613031,0.3408381296317195,0.3426056268215794,0.3440900957793916,0.3447903787793638,0.3456670853057675,0.3456192246276275,0.3447318720311337,0.3466851699993692,0.3480131166037868,0.3507643438554695,0.3527587779297765,0.3543076349299376,0.3567724800809409,0.3582375478927203,0.3583135954523922,0.3607041587901701,0.3619847328244275,0.3615899411883999,0.3555678059536934,0.357958872810358,0.0,2.0509973084322835,58.02724093485092,196.8484660983844,298.38272654707026,fqhc4_100Compliance_baseline,72 -100000,95688,43434,411.5040548449126,6569,67.54242956274558,5092,52.70253323300727,2043,20.984867485996155,77.34181859432726,79.72280734820187,63.3271521787835,65.08484747548958,77.09281981654473,79.47500696858076,63.23489568967204,64.99565072947232,0.248998777782532,247.80037962111123,0.0922564891114632,89.19674601726513,112.70622,79.30282105836375,117785.1141208929,82876.45374379624,307.47392,197.0796158153919,320827.3137697517,205460.4050824272,315.75062,152.1563913108909,327042.57587158267,156768.13784137712,3653.25018,1646.6001035150734,3779769.4172728034,1682856.258505189,1229.68604,538.1883947282112,1270346.250313519,547879.5829684775,2005.68976,835.577823446915,2060607.704205334,842717.4499593207,0.38217,100000,0,512301,5353.86882367695,0,0.0,0,0.0,26198,273.2526544603294,0,0.0,29096,301.0931360254159,1864888,0,66920,0,0,0,0,0,58,0.6061366106512833,0,0.0,1,0.0104506312181255,0,0.0,0.06569,0.171886856634482,0.3110062414370528,0.02043,0.3276934201012292,0.6723065798987707,24.99042854892379,4.437902387756999,0.3316967792615868,0.2213275726630008,0.2187745483110762,0.2282010997643362,11.095370388657544,5.77593593434809,21.6552993874614,12644.26011185446,57.3232442908345,13.171261883624345,19.051081330827486,12.38853096014151,12.712370116241154,0.5532207384131972,0.7728482697426797,0.6755476613380699,0.5879712746858169,0.1290877796901893,0.728957528957529,0.9210526315789472,0.8712871287128713,0.754863813229572,0.1889763779527559,0.4932841717145114,0.6974564926372155,0.6140077821011674,0.5379229871645275,0.1123348017621145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.004530849306182,0.0064527256678469,0.0083991793788466,0.0105950298938463,0.0128085037061171,0.0148712146693983,0.01704725253412,0.0192867874773863,0.0215582102386143,0.0235111967845131,0.0255625507091579,0.027488863512443,0.029583603820829,0.0315935058366963,0.0336781133636739,0.0356780170359163,0.0375119398646123,0.0396458814472671,0.0415024707574904,0.0562972713217166,0.0702274250293181,0.0832721089863347,0.0960393122461434,0.1085477388524953,0.1245107787344771,0.1383807300509338,0.1509777413482931,0.1619920718872541,0.1722614272538126,0.1862446284908078,0.1984618047292473,0.210889236926825,0.2216780005685172,0.2316967183357352,0.242648768980297,0.2524444146798821,0.262074007423237,0.2714739589243163,0.2801158942293377,0.2871616932685635,0.2953758712635075,0.3027489295261527,0.3088610628482415,0.3142485756283635,0.3199526726401025,0.3256154491182839,0.3304988734294843,0.3354114551605252,0.3404381759835189,0.3405909378747255,0.3416259379087217,0.3415136385433415,0.3418034565044471,0.3423235897588391,0.3415606927549126,0.3409414895302056,0.3422747133611485,0.3414801005661119,0.3425902775297353,0.3437827519089684,0.3458498023715415,0.3464271490556941,0.3470497415587031,0.3475583353379841,0.3478635829086632,0.3493418610627302,0.3519692239775486,0.352133554512406,0.3552374496590773,0.3554467676259322,0.3583288983501863,0.3653930610452349,0.3677041321056236,0.370987365465606,0.376546146527117,0.3776041666666667,0.377320419693301,0.3849972421400993,0.3932670237184392,0.0,1.9771898476485084,57.27559808565817,187.5848554372847,290.1811200062068,fqhc4_100Compliance_baseline,73 -100000,95671,43034,406.8840087382801,6667,68.41153536599387,5231,54.00800660597255,2054,21.072216241076188,77.38307130315455,79.75938146529934,63.34642469116329,65.09772747047113,77.12140517539854,79.49849747780831,63.24992738822954,65.00396047000883,0.2616661277560155,260.88398749102737,0.0964973029337556,93.76700046229304,112.5553,79.18649702880256,117648.29467654775,82769.59269664012,307.90213,196.91346313509152,321178.3508064095,205167.6741392784,319.78776,154.44860889040137,329636.04436036,158004.59077246944,3772.78847,1709.19366024854,3900010.452488215,1743179.6069480483,1272.63028,558.9408477204573,1313121.7296777498,567310.8920068112,2024.95866,848.9182544457615,2080398.7415204188,856616.1587014977,0.38025,100000,0,511615,5347.649758024898,0,0.0,0,0.0,26351,274.75410521474635,0,0.0,29475,303.55071024657417,1864676,0,67056,0,0,0,0,0,56,0.5748868518150745,0,0.0,0,0.0,0,0.0,0.06667,0.1753320184089415,0.3080845957702114,0.02054,0.323151584356266,0.676848415643734,24.840880833939117,4.464431896944028,0.3247944943605429,0.2181227298795641,0.2271076276046645,0.2299751481552284,11.300878917184628,5.786583396973668,21.930503735268434,12616.606712395223,59.122662692471344,13.390450964514136,19.187729830504253,13.196622535682064,13.34785936177088,0.5666220607914356,0.775635407537248,0.7233666862860506,0.5858585858585859,0.1280133000831255,0.7195571955719557,0.9291553133514986,0.8764044943820225,0.7526881720430108,0.1287878787878787,0.5131578947368421,0.7028423772609819,0.6690590111642744,0.5346534653465347,0.1277955271565495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611694319872,0.0048122707839442,0.0070587519396355,0.009210365977497,0.0114584921966346,0.0136811995480318,0.0158107198923525,0.0176688544335453,0.0200341398096756,0.0220299943696575,0.0239908957626336,0.0260823133163558,0.028180023037683,0.030066746322772,0.0321455835929601,0.0342714222226815,0.0362163450083392,0.0381737226125854,0.040172628951747,0.0420622596479526,0.056912437582266,0.0713044388609715,0.0841297984619742,0.0970757405284907,0.1093725287586592,0.1242876325611393,0.1377244874159828,0.1499175751130018,0.161984229451872,0.1726683452081212,0.1865331239107515,0.1996648467484729,0.2110245291426211,0.2209350615287097,0.2306279353696228,0.2421029305855631,0.2525268318833134,0.2621501379737568,0.2710341929842492,0.2786073642833404,0.286499687492766,0.2936486565591524,0.3009834123222749,0.3086173787806049,0.3145199547505808,0.3205034861479607,0.3254899012679798,0.3306663269206268,0.3351317001050488,0.3401879286875388,0.3398771187582527,0.3393914360457111,0.3397832490099637,0.3395825196372,0.3390546449712943,0.3383477112946305,0.3374315856270326,0.3376473877222122,0.338329250954934,0.3384147432456611,0.3390541071662518,0.3390623150084849,0.3404388845888333,0.341411706946955,0.3418188791408984,0.3435201787895325,0.3456933726736269,0.3483790133124511,0.3514499105859252,0.3549905093324897,0.3567857467502954,0.3579875409143702,0.3593515272909364,0.3613146958821307,0.3606054977711738,0.3615133115366651,0.3651483368294875,0.3684313725490196,0.3692101740294511,0.3652495378927911,0.0,2.551841502452563,59.203093531957016,200.91401438221624,285.76876335910174,fqhc4_100Compliance_baseline,74 -100000,95690,43133,406.949524506218,6777,69.59974919009301,5266,54.41529940432648,2175,22.290730483854112,77.3960056150407,79.78117122985589,63.35197710932333,65.11356259503118,77.13089870803735,79.51784635536403,63.25369338139922,65.0189132010403,0.2651069070033571,263.3248744918575,0.0982837279241053,94.64939399087768,111.8007,78.6604044814289,116836.34653568816,82203.36971619699,311.02944,199.0289482730127,324401.98557843035,207358.132365598,316.8333,152.67954123556385,327700.40756609885,156887.5197617047,3811.93781,1726.2455084435412,3941028.989445083,1761493.6415421537,1259.38486,554.2975179975523,1301390.2706656912,564749.7212503655,2138.57536,895.3359187003009,2193696.9171282267,899951.3628921501,0.38169,100000,0,508185,5310.743024349462,0,0.0,0,0.0,26619,277.5107116731111,0,0.0,29300,302.7589089769046,1870902,0,67049,0,0,0,0,0,46,0.4807189884000418,0,0.0,0,0.0,0,0.0,0.06777,0.1775524640414996,0.3209384683488269,0.02175,0.3175875158161113,0.6824124841838887,25.04030336390608,4.542865475333924,0.3258640334219521,0.2105962780098746,0.2318647930117736,0.2316748955563995,11.09754396378548,5.535730431488283,23.132042317971727,12691.247715568432,59.38969550307657,13.084303280284614,19.23458448669593,13.564767729761142,13.50604000633489,0.5495632358526396,0.7700631199278629,0.7016317016317016,0.5667485667485668,0.1180327868852459,0.7045624532535527,0.9182561307901907,0.8711943793911007,0.7007299270072993,0.1524163568773234,0.4968185288877577,0.6967654986522911,0.6454615981380916,0.5279831045406547,0.1083070452155625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426218381838,0.0048163695727119,0.0068106615781246,0.0087884175768351,0.0109454153357882,0.01339958457215,0.0156713602577566,0.0180808379871157,0.0200985503690527,0.0224776605218174,0.0247490747290827,0.0266027352252659,0.0287145310748408,0.0308708102428874,0.0330478745356995,0.0351247144437208,0.0370197735723977,0.0388208428482457,0.0409243601343691,0.0428778388068412,0.0576886920554012,0.0719189551239115,0.0850019404440994,0.097623804016402,0.1102561399810266,0.1266522851764905,0.1393774797903715,0.1507041803723693,0.1618454504668105,0.1724134232794586,0.1858892203638086,0.1991692267751287,0.2104897080878996,0.2214376284377596,0.2315211893294627,0.2425436751322985,0.2523703290574456,0.2619692356093889,0.2710656332154836,0.2801811382894782,0.2884959635973068,0.296788883699206,0.3037123682593695,0.3099255642516934,0.3162676175921209,0.3220030498302917,0.3263653154952076,0.3313878985498052,0.336445098646834,0.3409369117976123,0.3411587740739746,0.3417405384636496,0.3414294554455445,0.3419404191443912,0.3424114696191635,0.3421837937103068,0.3412870456811026,0.3416988100123102,0.3418705576817933,0.3423270597478661,0.3429096156368884,0.344172639143912,0.345033154140607,0.3472104535521563,0.3470383275261324,0.3479460613318061,0.3472372082457834,0.3497973418795362,0.3513873785386046,0.3545653471255222,0.3564102564102564,0.3560326870693799,0.3592362344582593,0.3630938719302272,0.368801064031921,0.3709387363625465,0.3722324723247232,0.3721451876019576,0.3757289641766176,0.3771895679252627,0.0,2.260495164105911,58.78155004491383,197.43282169323896,297.7709791856261,fqhc4_100Compliance_baseline,75 -100000,95825,43237,407.941560135664,6603,67.66501434907383,5151,53.2011479259066,2059,21.14270806157057,77.38566316619061,79.70666369281109,63.36611244363343,65.08415160556147,77.12751548154273,79.44810476513915,63.27129676268775,64.9914446694134,0.2581476846478807,258.5589276719418,0.094815680945679,92.70693614807612,113.43574,79.82791972463134,118378.02243673363,83305.94283812298,311.31215,199.54204107216205,324356.5875293504,207716.76605495648,319.80674,154.3785625173398,330005.0717453692,158258.91746557012,3770.61249,1716.0334535510049,3897590.983563788,1753495.9807472003,1295.29104,575.0342386735829,1335339.2016697105,583792.790991701,2041.03154,854.9935901172543,2097665.4943908164,865603.0316393806,0.38092,100000,0,515617,5380.81920166971,0,0.0,0,0.0,26625,277.2867205843986,0,0.0,29585,305.0560918340725,1862376,0,66891,0,0,0,0,0,53,0.5530915731802766,0,0.0,0,0.0,0,0.0,0.06603,0.1733434841961566,0.3118279569892473,0.02059,0.3347719752553589,0.665228024744641,24.99408746958104,4.493191260534486,0.3110075713453698,0.2151038633275092,0.2339351582217045,0.2399534071054164,11.160212435087404,5.615875112078452,21.95985878833269,12621.541170239314,58.3943134003658,13.091240161891989,18.11232549250944,13.416351536410804,13.774396209553558,0.5441661813240147,0.7635379061371841,0.6922596754057428,0.5701244813278008,0.1302588996763754,0.6944858420268256,0.9081081081081082,0.8481927710843373,0.724907063197026,0.1701388888888889,0.4912050406930953,0.6910569105691057,0.6377422072451558,0.5256410256410257,0.1181434599156118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024004132356962,0.004632868019018,0.0069521267418375,0.0091540853026639,0.0112799544326457,0.0133489461358313,0.0155847068056957,0.0176956832329829,0.0199397005467831,0.0220225546982132,0.0244314862829092,0.0264089747405803,0.0283758645851532,0.0305297938261057,0.0325946854473648,0.0348186250206577,0.0367411975292036,0.0384834634080615,0.0403700588730025,0.0424336389082546,0.0573693543339939,0.071374811841445,0.0846548091939084,0.0970236281688957,0.1094421505013904,0.1258185121034176,0.1379902116570266,0.1495908173025826,0.1612820649565356,0.1717933339045497,0.1851616857907924,0.1981399066712754,0.210174349176021,0.2212143044275609,0.2313944293120112,0.2428186019769576,0.2528767642111595,0.261558161477288,0.270333952603199,0.2781899873097898,0.2866185388391568,0.29426593994001,0.3013236040758976,0.3074017404609352,0.3135492623367814,0.3192461731246468,0.3245884452654044,0.3295182022357852,0.3346035600795721,0.3396934502646757,0.3401299242780863,0.3393721134814163,0.3393849834635142,0.3392477856926122,0.3394547210459847,0.3383380316215222,0.3373390830109709,0.3376862603203842,0.3391250706831851,0.3399290881741995,0.3402514543066241,0.3414450477587095,0.3424224544841537,0.3444391987590207,0.3457357960734948,0.3463801618156982,0.3462564926679484,0.3485414161867999,0.3512174405436014,0.3547793382147001,0.3575590731819225,0.3602007046012597,0.3611093522446653,0.3646582046184431,0.36852097968483,0.3761996161228407,0.3774957436929267,0.3773469387755102,0.3772954924874791,0.390715667311412,0.0,2.1317129524583804,59.02020821666012,194.3202109132704,287.47613434659144,fqhc4_100Compliance_baseline,76 -100000,95759,43331,408.0765254440836,6587,67.54456500172307,5149,53.112501174824295,2067,21.15728025564177,77.37657405990127,79.71996307888554,63.3458979718325,65.07848577248265,77.11969425289188,79.4660989139407,63.25079951182133,64.98743842031035,0.2568798070093976,253.86416494484365,0.0950984600111652,91.04735217229631,112.6785,79.26562793595419,117668.83530529767,82776.16509774975,305.01311,195.14427685007587,317885.27449117054,203150.5413069016,315.57339,152.4474611486372,324920.94737831433,155701.61131632616,3708.05005,1671.8963267139452,3827822.272580123,1701490.832938883,1238.06203,543.3570332184637,1276722.0209066512,551259.3183389788,2042.07088,849.9810074772787,2092605.958708842,853388.1982146002,0.38141,100000,0,512175,5348.583422968076,0,0.0,0,0.0,26079,271.6820351089715,0,0.0,29132,299.72117503315616,1867728,0,66996,0,0,0,0,0,58,0.5952443112396746,0,0.0,1,0.0104428826533276,0,0.0,0.06587,0.1727012925722975,0.3137999089114923,0.02067,0.3196650303205313,0.6803349696794687,25.09637956729691,4.468988833576597,0.3253058846377937,0.2177121771217712,0.2190716644008545,0.2379102738395805,11.104464467876497,5.571117634734716,21.78493505278125,12684.925793902074,57.86092849802384,13.14114503027895,18.9443325772343,12.5206377515801,13.254813138930478,0.5523402602447077,0.7743086529884032,0.6991044776119403,0.5913120567375887,0.1126530612244898,0.7095761381475667,0.9185393258426966,0.8626506024096385,0.7349397590361446,0.1417322834645669,0.5006451612903225,0.7071895424836602,0.6452380952380953,0.5506257110352674,0.1050463439752832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0045819014891179,0.0067777349378031,0.0090109309602178,0.0110344967862663,0.0133501695502082,0.0158558595303402,0.0180708130844938,0.0204050337868921,0.0225404592029972,0.0247212200721548,0.0270578212089795,0.0293195439638954,0.0315444743102542,0.0335898652691522,0.0355658914728682,0.0373380825662424,0.039617004502168,0.0416255159006559,0.0436068612849807,0.0585539980586375,0.0722450558989322,0.0852919593248768,0.0981976774735957,0.1106813511092374,0.1261178410604427,0.1393008979972646,0.1515119273083225,0.1627829987184963,0.1736384400098652,0.1864317332442998,0.1994633370481373,0.210517727178773,0.2217103967437687,0.2321530805478487,0.2427312531175525,0.2530096263373015,0.2627864571608662,0.2707028057749931,0.2792487402656894,0.2870215055007346,0.294459516347818,0.3015516344197928,0.3080617536799492,0.3142766898294378,0.3199437959893015,0.3255008378560888,0.3313086131090045,0.3368510902459843,0.3415570030855244,0.3414001263797577,0.34121802713141,0.3416051206302314,0.3416067457910999,0.3417334520629266,0.3411334384230421,0.340168668217275,0.3412169919632606,0.3417029635323255,0.3423230593607306,0.343122913619144,0.343442331264086,0.3436936370118703,0.3439949967612963,0.3446028807079135,0.3459281858718611,0.3465967392543609,0.3496953708937881,0.353232607167955,0.3542586625293392,0.3534518207154932,0.3539846580012785,0.3600756859035005,0.3611323058141309,0.3625763986835919,0.3647940966436562,0.36900199294803,0.3708023325960185,0.3753066230580539,0.3806451612903225,0.0,2.55815937380556,55.484725774978585,191.288735424174,297.8606797862655,fqhc4_100Compliance_baseline,77 -100000,95741,42739,402.0534567217807,6703,68.81064538703377,5233,53.96851923418389,2156,22.04906988646452,77.3313489084019,79.69819936267649,63.31030609897547,65.06337558911873,77.0645785382794,79.43414325312126,63.212751841694775,64.96998043414848,0.2667703701225008,264.0561095552272,0.0975542572806915,93.39515497025276,112.15468,78.96117461960536,117143.83597413856,82473.73081501694,307.36938,195.60563007123235,320373.2152369413,203637.77672888,308.82847,148.83064731996018,318406.15828119614,152199.51514291577,3789.70942,1696.94348206493,3908519.046176664,1722663.7274520877,1241.03222,542.1334327072766,1275465.6521239595,545499.7657258315,2122.15282,878.1460725438392,2172457.7140410063,880096.2407800121,0.37833,100000,0,509794,5324.719817006298,0,0.0,0,0.0,26275,273.73852372546764,0,0.0,28561,294.1268630994036,1868714,0,67030,0,0,0,0,0,49,0.5117974535465475,0,0.0,0,0.0,0,0.0,0.06703,0.1771733671662305,0.321647023720722,0.02156,0.3200453965101433,0.6799546034898567,25.15088222036221,4.554642915301429,0.3279189757309382,0.2140263711064399,0.2222434549971335,0.2358111981654882,11.07647154328583,5.541106210928225,22.87243163468699,12576.77284856138,58.93654983298654,13.263296982072632,19.160151180568118,12.981018646413098,13.532083023932715,0.5493980508312631,0.7758928571428572,0.6824009324009324,0.588134135855546,0.1223662884927066,0.7204545454545455,0.9128065395095368,0.8732718894009217,0.7490196078431373,0.1742424242424242,0.4916943521594684,0.7091633466135459,0.6177847113884556,0.5429515418502202,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593947253771,0.0045833882596306,0.0068713524486171,0.0089209510262141,0.0114346171844798,0.0137079773095293,0.0159068430014989,0.018093264037085,0.0201086233877814,0.0223999836122662,0.0245118148999015,0.0266913237787024,0.0289280862799983,0.0309807478253699,0.033020572053799,0.0352714901713423,0.0375881457550247,0.0396496798763087,0.0417043481876487,0.0435570553680789,0.0585834333733493,0.0717327836087188,0.0846376568335361,0.0975707224734462,0.1095130643834749,0.1248215097891964,0.1376013413132985,0.1491047748889622,0.1615140472552016,0.1726213467233165,0.1858996465212518,0.1982782891174878,0.2104592808700101,0.2214583629815323,0.2317804961298349,0.2417929642892779,0.2520047354195984,0.261136816508494,0.2697153364205938,0.2779324967050599,0.2857258624681639,0.2926792134634078,0.2995210886934256,0.30648474002186,0.3119408979711062,0.3170818988388307,0.3219899550356333,0.3271810157056058,0.3316726348020136,0.3368469717984281,0.336879145769293,0.3366554705137382,0.3367249154453213,0.3362872797189655,0.3361450614075471,0.3350382848392036,0.3335337394193497,0.3345480810269542,0.3364802462801436,0.3374886146482596,0.3384015448358612,0.3393998140491781,0.340568312886652,0.3413678009005174,0.3428550766560602,0.3447365670081538,0.3450706234840919,0.3485824335417061,0.3481106708180017,0.3520150628956013,0.3548120989917507,0.3550724637681159,0.3568181818181818,0.3615073613547944,0.3677805859777216,0.366654933708788,0.3698568198944988,0.3661776367961935,0.3682926829268292,0.370986021911598,0.0,2.65002746761814,57.78612850718733,194.55213788219368,297.92998649452414,fqhc4_100Compliance_baseline,78 -100000,95497,43333,409.55213252772336,6611,67.85553472883964,5142,53.33151826758956,2091,21.55041519628889,77.22623088476638,79.71297198344546,63.24095407219974,65.07601230512427,76.96524530181745,79.45001499341039,63.14469575736667,64.98105526708888,0.2609855829489333,262.95699003506456,0.0962583148330722,94.95703803538902,111.26126,78.27925643005976,116507.597097291,81970.38276601332,307.04198,196.9186009202124,321017.3618019414,205701.30048086576,313.7458,151.63237540640037,324965.6847859095,156096.51831747728,3738.61593,1690.4397885911474,3879927.9349089502,1735173.501357264,1269.56441,558.7314757913919,1316633.475397133,572282.4128416515,2064.88456,865.5962336483716,2130381.247578458,880647.2528856619,0.38172,100000,0,505733,5295.7998680586825,0,0.0,0,0.0,26220,274.0295506665131,0,0.0,28916,299.34971779218193,1865602,0,66966,0,0,0,0,0,55,0.5549912562698305,0,0.0,0,0.0,0,0.0,0.06611,0.1731897726081945,0.3162910301013462,0.02091,0.3177610645067978,0.6822389354932022,24.83966566541046,4.63456895211362,0.323026059898872,0.2094515752625437,0.2285103072734344,0.2390120575651497,10.929051900691068,5.346843807678865,22.413918911477094,12668.821266427409,58.13020131429079,12.647941573927236,18.9051870524873,13.096381635321997,13.480691052554262,0.5402567094515752,0.7632311977715878,0.6923540036122817,0.5702127659574469,0.1106590724165988,0.7049429657794677,0.9090909090909092,0.8529411764705882,0.7175572519083969,0.1621621621621621,0.4836686699764829,0.6924137931034483,0.6341263330598852,0.5279299014238773,0.0969072164948453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024826468054922,0.0047673628368851,0.0069141267488374,0.0091204880528723,0.0115246782863658,0.0136982112826784,0.0157960795518321,0.0180042098379416,0.0202972981267967,0.0225815044773672,0.0243471834455575,0.0266399341969977,0.0286155588735004,0.030797475143364,0.0327736736064472,0.0349011771770528,0.0369905500866155,0.0389900627832522,0.041150548500349,0.0432803249417882,0.057922776608995,0.0719681074276122,0.0860718229139281,0.0992948913879783,0.1113541732716166,0.1261778828317946,0.1397814021732196,0.1522474367591673,0.1631770035664178,0.1735602037964615,0.1858285738963324,0.1987223288755843,0.2107237085977192,0.2217033358546825,0.2324642222688102,0.24302067126028,0.2531971312530069,0.2630534540493612,0.2723673882625957,0.2803944302228141,0.2879946173567045,0.2953705767133088,0.3021315483396235,0.3083841335112842,0.3149487238894241,0.3202049073833475,0.3259839352381431,0.330171311684991,0.3350453800743765,0.3394976685036032,0.3396946048663051,0.3396325386855873,0.3396111786148238,0.3388841425447805,0.3383335321483955,0.3373508793506334,0.3363707202264523,0.3372380795248308,0.3380286529013639,0.3387241527857553,0.3400523215327574,0.3419709695994917,0.3435547984099943,0.3452757761465418,0.3465005302226935,0.3472632652527524,0.3487979875939742,0.3513351429833975,0.3535032970132938,0.3559917025690123,0.3587733773377338,0.3601491742141715,0.3600352667044524,0.3643041041950628,0.3664965197215777,0.3689320388349514,0.3719046163252827,0.374487284659557,0.3756936736958934,0.3803303880138302,0.0,1.9458219365099156,58.1443430492309,190.460523302851,293.93947897732545,fqhc4_100Compliance_baseline,79 -100000,95714,43348,408.0907704202102,6696,68.77781724721567,5172,53.50314478550683,2124,21.856781662034813,77.36399481233721,79.7505244614982,63.33329461681414,65.09800783991813,77.09473671863167,79.47933595932142,63.23286968886922,64.99957076317298,0.2692580937055453,271.18850217678414,0.1004249279449212,98.43707674514236,112.5058,79.12992713218188,117543.72401111646,82673.30498378698,309.58671,198.79318409265403,322877.875754853,207136.37181634796,319.78218,154.2270161246181,331084.6375660823,158823.10880241034,3754.87477,1717.4618329587,3887537.925486345,1759702.0772165756,1288.80268,570.1576057256185,1334106.9958417786,583836.6670799761,2086.51512,883.9547516151357,2149358.8607727187,895999.4125920895,0.38187,100000,0,511390,5342.896545959839,0,0.0,0,0.0,26410,275.36201600601794,0,0.0,29590,306.141212361828,1864777,0,66975,0,0,0,0,0,56,0.5850763733623086,0,0.0,0,0.0,0,0.0,0.06696,0.1753476313928824,0.3172043010752688,0.02124,0.3267553267553267,0.6732446732446733,24.80357915488334,4.478868926246451,0.325599381283836,0.2140371229698376,0.2238979118329466,0.2364655839133797,10.98170717036231,5.568428268627925,22.771331818529223,12701.242123157514,58.77672530341288,13.098190513022704,19.104571372381223,13.08046520936766,13.493498208641286,0.5556844547563805,0.7777777777777778,0.6918052256532067,0.5967184801381693,0.1283728536385936,0.7184536834427425,0.9244791666666666,0.8611764705882353,0.7534246575342466,0.1629629629629629,0.4969744803998948,0.6998616874135546,0.6346306592533757,0.5438799076212472,0.1185729275970619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.004644700680479,0.007136766019654,0.0094517958412098,0.0117320254787439,0.0141206675224646,0.0164735403321228,0.0184750194043874,0.0206191893467521,0.0229164746720732,0.0251348524314457,0.027349567110682,0.029273811972845,0.0317255875776653,0.0336033851075906,0.0354742653901031,0.037654346565012,0.0397036237599103,0.0418199962577184,0.0437292267939193,0.0588296727971509,0.0731115042024722,0.0869282417121275,0.0992217898832684,0.1118993159131873,0.1272375474471077,0.1395999915162569,0.151378782075833,0.1629389219255447,0.1739857441449166,0.1873405732367534,0.1999047969361923,0.2118137126946837,0.2218333351562414,0.232132640936496,0.2431205359614639,0.2534307709472275,0.2631596706708057,0.2722939694500556,0.2796550973903285,0.2873636353119468,0.2940990701210597,0.3012065311341866,0.3075466043277588,0.3147554129911788,0.3208944191203646,0.3272891091339114,0.3327568447422969,0.3371072925831996,0.3414621286019351,0.3417888365837256,0.3416783524430146,0.3416319522630038,0.3412396897164401,0.3407647093748144,0.3396307165566153,0.3389664539768778,0.3397028990249329,0.339663776805028,0.3397696476964769,0.3400520765037558,0.3412980750227282,0.3426757996606548,0.3429596412556054,0.3434093042285384,0.3440108869173798,0.3450722357316549,0.3485669291338583,0.350461365077129,0.3513782268008432,0.3560402531760849,0.3588790998832395,0.3570795339412361,0.3596807612616069,0.3609501187648456,0.3598416696653472,0.3656681670029489,0.3723426212590299,0.373663477771525,0.3735700197238659,0.0,2.0332829150658034,60.60125395566235,195.5721732559172,284.5942364897275,fqhc4_100Compliance_baseline,80 -100000,95660,43065,406.66945431737406,6753,69.29751202174367,5207,53.7633284549446,2158,22.08864729249425,77.31725194233033,79.72570444000361,63.30264576078415,65.08493098178312,77.0479610420454,79.45891959429709,63.20278468594275,64.9891472039391,0.2692909002849291,266.7848457065247,0.0998610748413995,95.78377784401935,111.50216,78.49474725531019,116560.90319882918,82055.97664155361,307.74018,196.2725637505845,321041.647501568,204516.8552692709,308.44895,148.27550794791483,318540.6962157641,151951.2561700792,3829.01611,1718.083541086573,3956657.882082375,1750073.4389800166,1308.87928,561.6531451623302,1351119.328873092,570049.220117148,2136.04736,893.6298883868477,2188908.153878319,896232.3729713112,0.38219,100000,0,506828,5298.222872674054,0,0.0,0,0.0,26323,274.4825423374451,0,0.0,28488,293.88459126071507,1871773,0,67146,0,0,0,0,0,51,0.5331381977838177,0,0.0,1,0.0104536901526238,0,0.0,0.06753,0.1766922211465501,0.3195616762920183,0.02158,0.3211112678042589,0.6788887321957411,25.297190122786816,4.514122056923309,0.3260994814672556,0.1989629345112348,0.2287305550220856,0.2462070289994238,10.887416591604117,5.451537200117118,22.992138313061165,12701.96373037591,58.47959709165156,12.115990560984583,19.07421972031737,13.1866065430383,14.102780267311324,0.5329364317265219,0.7557915057915058,0.682567726737338,0.5759865659109992,0.1146645865834633,0.6849960722702279,0.8922155688622755,0.8477157360406091,0.7455197132616488,0.1203007518796992,0.483731570920183,0.6908831908831908,0.6326687116564417,0.5241228070175439,0.1131889763779527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024820934685483,0.0047355878923084,0.0070531881425251,0.0092267983619384,0.0114666531006766,0.0134766221860038,0.0157815273498867,0.0180921052631578,0.0200834850934091,0.0220168635446228,0.0242433569303375,0.0263979942045664,0.0282664415782268,0.0304139388628279,0.0322330778923016,0.0343193552058437,0.0362818373122414,0.0383624807876043,0.0404835974321892,0.0425323423019587,0.0574222668004012,0.0712116451984501,0.0844260143824471,0.0971159815237634,0.1084759352647015,0.1236453306239945,0.1363448209983336,0.1486447627669204,0.1602877205733035,0.171801913916663,0.1856551902443228,0.1992226829347508,0.2110367346938775,0.2223110186654989,0.2328614706692371,0.2441719967631442,0.2543305504710031,0.264325011532014,0.2738350522482045,0.2823540189869793,0.2899649333965998,0.2965783470784348,0.3033938044713907,0.3094161800501205,0.3154510089958667,0.3219347914584952,0.3271090071135157,0.3320903595291123,0.3371454474808962,0.3421670536091177,0.3414900060569352,0.3422605537902859,0.3425016187607331,0.3424261688724498,0.3432480312030131,0.3418656429942418,0.3409501760172528,0.3424882822136337,0.3438814237357677,0.3447025839747138,0.3462050849047753,0.3470963144768615,0.3474339297352984,0.347529506798905,0.3475820693325592,0.3486714532781301,0.3483924532623321,0.351823804114603,0.3543312641083521,0.357640964335525,0.3587653416376625,0.3615589962626802,0.3650763479693341,0.3666973462187452,0.3688640877707367,0.3719852679101817,0.3714859437751004,0.3682921852683126,0.3671917436175991,0.368142262580401,0.0,2.642867026849678,55.48149875233994,192.46485861086492,304.6585634868252,fqhc4_100Compliance_baseline,81 -100000,95875,43252,408.1251629726206,6534,67.06649282920469,5106,52.87092568448501,2051,21.10039113428944,77.4717338221379,79.75696099439426,63.40399372213196,65.09012844882031,77.22432278707211,79.50707360775556,63.31475414001403,65.0013619069891,0.2474110350657952,249.8873866387044,0.0892395821179263,88.76654183120536,113.07516,79.5692266426963,117940.19295958278,82992.67446435076,310.96777,199.57216469884165,323958.3415906128,207769.9657875793,320.58338,154.52994419869376,331264.6571056063,158770.32765621704,3701.35752,1656.5891226969309,3836591.3220338975,1703847.2309746365,1225.51678,534.9000162035169,1266751.4993481096,546459.2675551731,2019.34134,829.6047326057616,2080217.1994784875,846179.7950847177,0.37877,100000,0,513978,5360.9178617992175,0,0.0,0,0.0,26587,276.91264667535853,0,0.0,29498,304.65710560625814,1864585,0,66851,0,0,0,0,0,58,0.6049543676662321,0,0.0,0,0.0,0,0.0,0.06534,0.1725057422710351,0.3138965411692684,0.02051,0.312090790048014,0.687909209951986,25.04255271849307,4.525336522328963,0.3219741480611046,0.2109283196239718,0.2344300822561692,0.2326674500587544,11.139571566806834,5.635536794640753,21.64549088899727,12495.248198371975,57.378064952742726,12.619022447350558,18.662292140190807,13.33464193332953,12.76210843187183,0.5464159811985899,0.7623026926648097,0.6891727493917275,0.5898078529657477,0.1094276094276094,0.71850699844479,0.9215116279069768,0.863849765258216,0.7427536231884058,0.1416666666666666,0.4884816753926702,0.6875852660300137,0.6280788177339901,0.5439739413680782,0.1012658227848101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00241927320579,0.0046296765304778,0.0068851528118599,0.0088611449451887,0.010923908625315,0.0132367454495508,0.0153206747616331,0.0174522383949244,0.0195862181647366,0.0214247729689928,0.0237814807607615,0.0259778885401924,0.0281164928861266,0.030157113312961,0.0322431014400131,0.0343342764503004,0.0362957446368356,0.0382933300169962,0.0402338234072597,0.042362563606281,0.057325172820069,0.0711426092592011,0.0843418943132878,0.0964132627332324,0.1078440671535616,0.1237764011924142,0.1366094147582697,0.148464091218516,0.1593902777481266,0.1700367548568918,0.1833821061238542,0.1965769484273195,0.2082071323888617,0.2195007476778327,0.230199079818599,0.2412550701252196,0.2513698935269746,0.2608998248843788,0.2690678925675981,0.2768460404019618,0.2845433660806021,0.291706031235056,0.2987661609303973,0.305164206950989,0.3110685170807453,0.3173142006227156,0.3224226675328569,0.3269247863464933,0.3316876470132086,0.3361769352290679,0.3359455862782788,0.3353130786640148,0.3347610554845595,0.3348214285714285,0.3341975052591034,0.333399459797653,0.3323030341260329,0.3338184553496967,0.3355332539547542,0.3362056712387179,0.3358217311783808,0.3368170366871358,0.339170545386237,0.3402316774337269,0.3414161240903868,0.3411669999220961,0.3406855101635812,0.3428321459817522,0.3464394780677401,0.3474915600219832,0.3516819571865443,0.3537300036956866,0.3553516435170636,0.3528783020308444,0.3542851725445582,0.3539748953974895,0.3530309970987937,0.3510788465416414,0.3516031789531378,0.3398542385884158,0.0,1.4912290053871786,57.23596831195922,193.2875148931527,285.429323193387,fqhc4_100Compliance_baseline,82 -100000,95747,42839,403.7515535734801,6508,66.73838344804537,5104,52.77449946212414,2054,21.159931903871662,77.34438518034166,79.6970104868514,63.33412346583962,65.07225659123732,77.09293925816138,79.44443563524068,63.24163842348359,64.98141415042649,0.2514459221802809,252.57485161071716,0.0924850423560315,90.8424408108317,111.5444,78.4691687300462,116499.10702162993,81954.70221526126,303.66309,194.35523658449372,316635.47682956123,202472.26188235005,308.62179,149.0675032326879,317961.7011499055,152413.7612026928,3674.10319,1646.4897118272763,3802239.704638265,1684711.238438998,1220.93191,525.730566285498,1265179.431209333,539166.4962934599,2017.53406,835.2360496507075,2079988.8247151347,848773.1875365075,0.3795,100000,0,507020,5295.413955528633,0,0.0,0,0.0,26018,271.19387552612613,0,0.0,28481,293.30422885312333,1873364,0,67217,0,0,0,0,0,49,0.511765381682977,0,0.0,0,0.0,0,0.0,0.06508,0.1714888010540184,0.3156115550092194,0.02054,0.316588785046729,0.6834112149532711,25.11482567482375,4.566228209126576,0.3248432601880878,0.2151253918495297,0.2343260188087774,0.225705329153605,11.276266482530955,5.711844465392497,21.69981509249171,12614.65397785722,57.29139922529342,12.895167170450195,18.61895407629298,13.27774639192798,12.499531586622265,0.5525078369905956,0.7786885245901639,0.6857659831121834,0.5811036789297659,0.1154513888888889,0.7033492822966507,0.9206798866855525,0.8398950131233596,0.7340425531914894,0.1260504201680672,0.5033766233766234,0.7114093959731543,0.6397807361002349,0.5339168490153173,0.1126914660831509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575300838701,0.0040757150243833,0.0064834261711259,0.0089576795344444,0.0112450942513776,0.0136512170044689,0.0156743645665599,0.0179498954028266,0.0201081014805202,0.022265425150926,0.0244179850807443,0.026511069372171,0.0287582640166976,0.0306378859343782,0.0327119675665638,0.0351256110037512,0.0369940999896491,0.0388169288684704,0.0408231136977759,0.0428623509192229,0.0570211610936537,0.0708582312127839,0.0833945165824086,0.0962290737780768,0.1084914115798686,0.1234839432807097,0.135982775444402,0.1479534839183308,0.1600499855810823,0.1713446405214743,0.1850065666243245,0.197693913532574,0.2102064556810645,0.2211692953405253,0.2321456065105026,0.2430556324384168,0.2533898777969979,0.2624925488961119,0.271587569916384,0.2791728212703102,0.286694276063116,0.2936510721931702,0.3010033840547128,0.3071839769728952,0.3128797083839611,0.3187976604723477,0.325052330755443,0.3301167652457679,0.3350274208813577,0.34045055162846,0.3404693899547316,0.3407007789491068,0.3405622489959839,0.3398163545658303,0.3399170099796243,0.3387544686008868,0.3378970079639559,0.3387462608066796,0.3399996578447641,0.3404350390534236,0.3410271314195713,0.3412343824134113,0.3406084240098958,0.3406916026086372,0.3425298444471241,0.3439670025583459,0.3451630388269192,0.3482289171813941,0.351231527093596,0.3542364767831498,0.3580624543462381,0.3602282423208191,0.3615530303030303,0.3626148356237187,0.3667764705882353,0.3654984608098508,0.3680887109194517,0.365656146179402,0.3659837215829357,0.3723948092803775,0.0,2.1069395185580904,54.99988023726342,193.1463223079573,291.421879163344,fqhc4_100Compliance_baseline,83 -100000,95681,42966,404.9602324390423,6724,69.14643450632832,5255,54.44132063837126,2159,22.292827207073504,77.28108161739658,79.66908857821934,63.29287913429015,65.05614138079979,77.02046022153777,79.4060004499265,63.19857420395481,64.96269106171414,0.2606213958588057,263.0881282928499,0.0943049303353404,93.4503190856475,112.72976,79.35470951525502,117818.33383848412,82936.74764608964,310.27272,198.4183259340728,323781.7957588236,206879.3223438187,316.0272,152.51983716626845,327651.59227014764,157295.11590208774,3822.60957,1706.304944385997,3966481.203164682,1754719.439228107,1296.97103,560.7596449851625,1346561.3862731368,577162.8923725627,2127.29326,874.1336314923193,2198851.6006312645,892641.2559010085,0.38049,100000,0,512408,5355.378810840188,0,0.0,0,0.0,26504,276.4707726716903,0,0.0,29150,301.9199214055037,1860597,0,66761,0,0,0,0,0,61,0.6375351428183234,0,0.0,0,0.0,0,0.0,0.06724,0.1767194932849746,0.3210886377156454,0.02159,0.3156479909451047,0.6843520090548953,25.220914526021804,4.566755449464401,0.3204567078972407,0.211417697431018,0.2274024738344434,0.2407231208372978,11.296996949586909,5.703828018391326,22.884302455750625,12709.37756318296,59.08944436319221,13.12230516697784,18.94358174345544,13.323518668617757,13.700038784141176,0.5472882968601332,0.7992799279927992,0.6793349168646081,0.5774058577405857,0.1217391304347826,0.7329762815608263,0.9134078212290504,0.8656036446469249,0.7587412587412588,0.1517857142857142,0.4858156028368794,0.7450199203187251,0.6136546184738956,0.5203520352035204,0.1152737752161383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0047242976915824,0.0069720003653449,0.0094685617336001,0.011787319732319,0.0138894546047004,0.015824785366152,0.0179074611018091,0.0201993355481727,0.0222315479175836,0.0244742697193712,0.0266746067600312,0.028434800493624,0.0304463402571711,0.0327165017080697,0.0346884757749333,0.0369173399627097,0.039087068884991,0.0412544858792323,0.0432643702121006,0.0583159214375261,0.0723910835628056,0.0862021915277719,0.0998200965797308,0.1121191661743607,0.1275929549902152,0.1401035917466248,0.1523577270403816,0.1634793205554427,0.1750617283950617,0.1883323448536151,0.2006609242104122,0.2125498138106748,0.2229399785403026,0.2327989863934336,0.2433598385290171,0.2540237850404614,0.2637347782496536,0.2725743766903793,0.2802977303223882,0.2881293088465326,0.2956452444569446,0.3024419749279505,0.3088463155366044,0.3150261589001095,0.3202650673774618,0.3256627185561195,0.3307236212942301,0.3353581766026764,0.3405981209474659,0.3405011143378132,0.3412510006348855,0.34108209060811,0.3416661830421914,0.3415420435210889,0.3408039351318115,0.3394961720512087,0.340727800118663,0.3423282783229259,0.3433862244349726,0.3439799740264629,0.3449106325385136,0.3460108966507581,0.3466176768929062,0.3466993139227617,0.3475207044763602,0.3478846981213251,0.3495342500475255,0.3516297446027938,0.3528590796714251,0.3545924198783888,0.3556527770367604,0.3575273924884413,0.3567135793077216,0.3572841133816744,0.3615872270486029,0.3648482991112473,0.3610326744655103,0.3726927252985885,0.3813917723952326,0.0,1.81585553494386,57.86800730243733,192.40113484357136,306.77654931564484,fqhc4_100Compliance_baseline,84 -100000,95711,43276,408.699104596128,6764,69.39641211563979,5267,54.2884307968781,2086,21.37685323526032,77.3612597271838,79.72644744663832,63.34108899169471,65.08894353477389,77.09663164343806,79.46411441361356,63.24361392786192,64.995035222772,0.2646280837457482,262.33303302475974,0.0974750638327961,93.90831200188644,113.33498,79.7542883539252,118413.0559705781,83327.59407995445,310.74268,198.7919002757945,323888.2678062083,206925.93118670816,320.02047,154.26524115647675,329819.6236587226,157671.15875594786,3809.1882,1726.8914870286198,3933946.129493997,1758631.0284168827,1288.35561,562.1293016835275,1328719.2590193397,570132.1063588562,2057.23718,862.2178622228179,2111461.190458777,868144.0847043797,0.3823,100000,0,515159,5382.4116350262775,0,0.0,0,0.0,26568,276.7602469935535,0,0.0,29559,304.2074578679567,1862047,0,66819,0,0,0,0,0,49,0.5119578731807212,0,0.0,1,0.010448119860831,0,0.0,0.06764,0.1769291132618362,0.3083973979893554,0.02086,0.3283981951494641,0.6716018048505358,25.020645026731565,4.426460635369051,0.3288399468388077,0.2130244921207518,0.2246060375925574,0.233529523447883,11.083094052479488,5.639021609498134,22.31469428447317,12680.61376417978,59.84946232219443,13.29495242137396,19.690073838589907,13.31442061672506,13.550015445505506,0.566736282513765,0.7825311942959001,0.7159353348729792,0.6027049873203719,0.1252032520325203,0.7042772861356932,0.9097938144329896,0.8352402745995423,0.7564575645756457,0.123076923076923,0.5190488366146766,0.715258855585831,0.6756756756756757,0.5570175438596491,0.1257731958762886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0045117203341714,0.0066469119766191,0.0090520262925297,0.011288518254856,0.0135231461681024,0.0155711459629229,0.017685199366927,0.0197838600509166,0.0217342342342342,0.0235407503101514,0.025738201612489,0.0278100605773878,0.0300907564410289,0.0322783699835925,0.0342089755916012,0.0365549307734526,0.0385824728895345,0.0405748273854088,0.0426456338497765,0.0566118506917254,0.0709732790471306,0.0845964231394556,0.0977761421586667,0.1102129005059022,0.1259658580413297,0.1380688806888068,0.1506543249281838,0.1622201811346548,0.1737573828129187,0.1877785672760157,0.2009085501054567,0.2127210862168302,0.2228695091427759,0.2333637492991501,0.2434789344960768,0.2534985113903725,0.2627586284404185,0.2723675408460605,0.2814456948562662,0.2889675352462903,0.2966010566178877,0.3035748083656667,0.3104559117636492,0.3161450752062106,0.3216149037751636,0.3269920629960627,0.3323626282793087,0.3362859362859363,0.3411536379599434,0.3402811439650994,0.340163089066432,0.3397121775374563,0.3400364309258081,0.3400315326035221,0.3401518055662041,0.3392794905104401,0.3401878982984035,0.3399904329107869,0.3398769934920975,0.3410554377006402,0.3425674200781854,0.3425363248312551,0.3434424943402147,0.3446361771449258,0.3466125016380553,0.3482101881597063,0.3500316856780735,0.3548181914555284,0.3562460012795905,0.3577667017239014,0.3603311926118571,0.3645211930926216,0.3645967925818956,0.3642073685197337,0.370282459055305,0.3752491949087563,0.3676590538336052,0.3621758737316798,0.3634894991922455,0.0,2.7195831425817474,59.20725037529166,204.281986537775,290.59262481799567,fqhc4_100Compliance_baseline,85 -100000,95641,43097,406.9802699679008,6657,68.38071538356981,5187,53.56489371712968,2135,21.925743143630868,77.2430810454354,79.64955381680983,63.27207635196621,65.05096185346187,76.9897674316456,79.39741093592203,63.17940963160607,64.96164890407033,0.2533136137897998,252.1428808878028,0.0926667203601425,89.312949391541,112.44596,79.11639248924689,117570.874415784,82722.25561134545,309.09437,198.5593686294199,322491.0132683682,206918.1926468982,318.21897,153.76509120266283,328542.89478361787,157508.4896876851,3776.43556,1689.8950458034756,3903792.9862715774,1722154.8664312095,1269.18747,547.0078221043177,1310151.127654458,555056.9233951097,2098.53292,855.6482454831084,2157526.7929026256,863424.4540221184,0.38003,100000,0,511118,5344.13065526291,0,0.0,0,0.0,26425,275.5931033761671,0,0.0,29414,303.3531644378457,1859429,0,66744,0,0,0,0,0,50,0.5227883439110841,0,0.0,0,0.0,0,0.0,0.06657,0.1751703812856879,0.3207150368033649,0.02135,0.3225806451612903,0.6774193548387096,25.009323116349275,4.502655804795648,0.3304414883362251,0.2103335261229998,0.2234432234432234,0.2357817620975515,11.330218076016072,5.902563781215619,22.49071270063302,12657.94570140554,58.60149644136218,12.97015839573406,19.52444055115731,12.929717648700288,13.177179845770512,0.5527279737806053,0.7836846929422548,0.7018669778296382,0.5737704918032787,0.1177432542927228,0.7407407407407407,0.929539295392954,0.8425531914893617,0.7475409836065574,0.1601941747572815,0.4865780557727391,0.7091412742382271,0.6487138263665595,0.5117096018735363,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024018971947462,0.0049398494715273,0.0072789661228592,0.0097237322061797,0.011849907947067,0.0142471612607566,0.0162834565383634,0.0183691390295703,0.0204924738219895,0.0226002007086243,0.0247049050876311,0.0267522464698331,0.0288984645762415,0.0308031483084023,0.0330195495551289,0.0347637266053148,0.0369606878334282,0.0389114347099546,0.040805075930934,0.0426714206778636,0.0579340613407179,0.0723406484051746,0.0854953015906346,0.0989779054957316,0.110211364260225,0.1263776401461013,0.1385090990215763,0.1503608703531945,0.1621086644839613,0.1726145089405573,0.1865262612748694,0.1991111592867595,0.2111023982225707,0.2223974245261325,0.2326647564469914,0.2442393245836892,0.2537480295594039,0.2632996708895,0.2720690203923886,0.2793817506363657,0.2867076138602387,0.2940370517834976,0.3013171297941392,0.307755062865918,0.3136398476755928,0.3195673913848661,0.3246482935025202,0.3299450304182024,0.3346100911475239,0.3390043524851499,0.3388275917882867,0.3390260375746047,0.3397079178554278,0.3403170187487322,0.3402900970468538,0.3390786057729235,0.3377933861971428,0.3382566266649083,0.3393968488007269,0.339299164305441,0.3408615326609482,0.3414677839925157,0.3426856240126382,0.3439425975077601,0.3451785239442067,0.3460043083066253,0.3463100002879438,0.3482918172022564,0.3512930272048679,0.3511254019292604,0.3543168792752819,0.3579496557659208,0.3601351782184531,0.3628093439210547,0.3642371420362034,0.366041366041366,0.3697055581798142,0.3733860891295293,0.3809523809523809,0.3870211102423768,0.0,2.6117567427861843,59.16502425869999,187.87453314128803,296.5808635476336,fqhc4_100Compliance_baseline,86 -100000,95811,42813,403.648850340775,6562,67.19478974230516,5144,53.04192629238813,2092,21.46935111834758,77.44904619750217,79.77314841662444,63.38601454967061,65.1060371273862,77.19735346003641,79.52305695308684,63.29353415878549,65.01682462614501,0.2516927374657598,250.0914635376006,0.0924803908851288,89.2125012411924,112.88046,79.37151271994264,117815.3030445356,82841.3409394166,309.09834,197.877042747854,321909.1022951436,205831.0328489938,314.95237,152.0712470570295,324494.7657367108,155649.06311128812,3673.37239,1654.6177693672882,3789712.2042354215,1683397.977468046,1239.94674,541.9487962707909,1274318.7525440713,546490.5308244914,2054.34992,842.4600176832713,2108963.3549383683,848002.8059373535,0.37856,100000,0,513093,5355.24104747889,0,0.0,0,0.0,26494,275.8034046195113,0,0.0,29081,299.2871382200373,1869469,0,67032,0,0,0,0,0,52,0.5322979616119234,0,0.0,0,0.0,0,0.0,0.06562,0.1733410819949281,0.3188052423041755,0.02092,0.3184722625617194,0.6815277374382805,25.163593753979544,4.524324663447191,0.33300933125972,0.2222006220839813,0.2146189735614307,0.2301710730948678,11.293514135474217,5.8203524591788325,21.868678126004763,12553.863384061848,57.58605274109089,13.362969516462297,19.228549855693736,12.173329031793925,12.821204337140916,0.5587091757387247,0.7716535433070866,0.6952714535901926,0.595108695652174,0.1216216216216216,0.7378419452887538,0.921875,0.8696629213483146,0.7896825396825397,0.1319148936170212,0.4971264367816091,0.6956521739130435,0.6340694006309149,0.5375586854460094,0.119072708113804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976241353817,0.0045918522498048,0.0068998406948545,0.0091933239199114,0.0113182220323987,0.0135114496044311,0.015670401598646,0.0176568448340971,0.0197342871742462,0.0220912504732377,0.024358251780499,0.0264162561576354,0.0285673166870547,0.0305994275477215,0.0322823519704611,0.0344246882458079,0.03624620925924,0.0383554541683948,0.0404151645177712,0.0424014657810905,0.0567789449526929,0.0704980762796922,0.0841577932422235,0.0973303495445519,0.1094907431798784,0.1241730602582799,0.1362744994116961,0.1478870243943937,0.1588127980540471,0.1698115228100235,0.1829336487794386,0.1959290830713382,0.2078149089093001,0.2188270729205317,0.2289265090134598,0.2399327931732012,0.2504483031308822,0.2608803026391118,0.2705536057964451,0.2786130469553296,0.2865602382518959,0.2941169608380677,0.3003740368845205,0.3067371012656715,0.3129672033826433,0.3180198117149669,0.3232032136931272,0.3282433066571968,0.3329933641457306,0.3388350408353828,0.3383523222888737,0.3384423282746507,0.3378463785620988,0.3375037836747048,0.3360631460474484,0.3358305741619494,0.3346361759467935,0.3351858511229527,0.3362729605274336,0.3375954537382348,0.3381072261072261,0.339403713027061,0.34164979017475,0.3436649261391529,0.3446612427100583,0.3453517327246316,0.3468291851346744,0.3506098516915937,0.3519949423995504,0.3530715642811906,0.3555444373692349,0.3596467897228576,0.3617128781658561,0.3619716160537158,0.3651004168245547,0.3680085500534378,0.3662620986326624,0.3653098793209245,0.3716814159292035,0.3773946360153257,0.0,2.3536184360784147,57.52348634421166,187.90474538751397,290.57988759028194,fqhc4_100Compliance_baseline,87 -100000,95815,43037,406.2411939675416,6806,70.10384595313886,5304,54.866148306632574,2126,21.906799561655276,77.3497797498425,79.68199519148838,63.33168066437421,65.05950474898448,77.09089744114794,79.4226897497023,63.23668652032135,64.96669564742655,0.2588823086945524,259.3054417860827,0.0949941440528618,92.80910155793264,112.66552,79.32805897820616,117586.51568126076,82792.94367083041,308.83519,197.3308940660148,321831.27902729216,205456.70726505748,322.27517,155.28840413535633,332899.8069195846,159453.93314237558,3813.57965,1718.955174962072,3949278.3384647495,1763165.0210948924,1274.76995,558.9340355249798,1319234.503992068,572132.3650002403,2082.09368,862.5587404539324,2147771.872880029,877257.4926000956,0.37908,100000,0,512116,5344.841621875489,0,0.0,0,0.0,26319,274.18462662422377,0,0.0,29663,306.183791681887,1865169,0,66909,0,0,0,0,0,61,0.6366435318060847,0,0.0,0,0.0,0,0.0,0.06806,0.179539938799198,0.3123714369673817,0.02126,0.3327262538526198,0.6672737461473802,24.73492574933252,4.397933059865022,0.3340874811463046,0.2183257918552036,0.2226621417797888,0.2249245852187028,11.095651329495002,5.715301999357208,22.67479090481873,12571.937042747852,60.10280225238365,13.774728415091849,20.084771875614223,13.126407143691546,13.11689481798604,0.5582579185520362,0.7677029360967185,0.7042889390519187,0.5723962743437765,0.124056999161777,0.7195032870708546,0.9097938144329896,0.8771929824561403,0.6966292134831461,0.1782945736434108,0.5021601016518424,0.6961038961038961,0.6443768996960486,0.5361050328227571,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026338715886297,0.0049377959382319,0.0069823614183936,0.0090826890448953,0.0111890957176279,0.0133801741255536,0.0155995106035889,0.0178026397721588,0.0199924363993172,0.0219963561178325,0.0242542286007175,0.0261520453425332,0.0282256406037922,0.0301098742675906,0.0321532462709661,0.0342226539089462,0.0361985797983562,0.0381699183703104,0.0400635863974981,0.0421139210194796,0.056219159790104,0.0702231330642631,0.0837220027040907,0.0967863973601799,0.1087419368438804,0.1247026232593548,0.1372580217448952,0.1491805023414218,0.1599572763684913,0.1710801505839956,0.1848663441543749,0.1981191290420328,0.2094626930606917,0.2195588492479888,0.229894287568614,0.2408318376210419,0.2509121746019348,0.2603180315332538,0.2696545072899529,0.2776810864039206,0.2849441217982831,0.2926449953227315,0.2997645889770858,0.3064294011280492,0.312679817905918,0.3182260428340948,0.3232756464762667,0.3282025187635161,0.3336828750453109,0.3387071219203042,0.3391020716240076,0.3383921925399057,0.3388548692045037,0.3388415376587232,0.3388146625556698,0.3388901680865761,0.3380882866300657,0.3380707987893144,0.339637833855853,0.3406745036198122,0.3403959316425711,0.3415059906371498,0.3421212948763733,0.3430454076829979,0.3432659648784718,0.3452290823652265,0.3447381176403501,0.3479012190524067,0.3509465654197432,0.3517478645998101,0.355033892907511,0.3583165482879253,0.3628960989774018,0.3647663623110565,0.3640822486323335,0.3668561952144041,0.3641120344721453,0.3608976951071573,0.3704006541291905,0.3825220390954388,0.0,1.9492095699943277,60.75495101401303,199.85948822153756,297.22982561509696,fqhc4_100Compliance_baseline,88 -100000,95800,43135,406.7327766179541,6716,68.91440501043841,5231,54.02922755741128,2105,21.54488517745303,77.41775944651599,79.7454592836342,63.37436231324406,65.09507176547353,77.16017488901151,79.48945920023264,63.28017569429736,65.00402647674203,0.2575845575044724,256.00008340155966,0.0941866189467006,91.0452887315074,113.28922,79.66153814093573,118255.9707724426,83154.00641016256,310.31886,198.8035419180904,323338.8413361169,206934.54271199412,320.01373,154.42573302922597,330585.33402922755,158497.31177142457,3798.60064,1709.6805204549376,3926687.672233821,1746186.5036064049,1296.06452,565.2031156949232,1338209.0814196242,575305.7366335321,2069.00348,858.446106456407,2120599.1440501045,862847.0711996881,0.38106,100000,0,514951,5375.271398747391,0,0.0,0,0.0,26524,276.27348643006263,0,0.0,29579,305.3235908141963,1864449,0,66915,0,0,0,0,0,56,0.5845511482254697,0,0.0,0,0.0,0,0.0,0.06716,0.1762452107279693,0.3134306134603931,0.02105,0.322906298876724,0.6770937011232759,25.15217052276525,4.497244065683495,0.327088510800994,0.2079908239342382,0.2332250047792009,0.2316956604855668,11.274391523411357,5.822742118584737,22.447270529075464,12602.740071618298,59.187878475626505,12.952109122348928,19.373815043722622,13.565351771483844,13.296602538071117,0.5599311795067865,0.7803308823529411,0.7054354178842782,0.589344262295082,0.127062706270627,0.7319970304380103,0.917312661498708,0.839907192575406,0.752542372881356,0.2008547008547008,0.5002574665293512,0.7047075606276747,0.66015625,0.5372972972972972,0.1094069529652351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022073937565183,0.0046222618673532,0.0067071871416829,0.0093030813918059,0.0114699422435532,0.0137933140600187,0.0159616756701661,0.0178513105250265,0.0200637788998139,0.0221066852253653,0.0243849938499385,0.0264324868094192,0.0284427906211773,0.0303903804974468,0.0323558525117545,0.0344140217514795,0.0366859496434891,0.0385552410868866,0.0405568252649075,0.0427264114603396,0.0570400125202149,0.0705026344400769,0.0834818340007128,0.0965766447126545,0.108648944685512,0.1243978194726166,0.1370931008548457,0.1489395630680912,0.1603362922499146,0.1709961115336411,0.1841830754175225,0.1969710063518126,0.2085188160951988,0.2193750545899205,0.2300534982588349,0.2415990089153374,0.2516300895016663,0.26083636526973,0.2695949619427328,0.2779823437928826,0.2859436544881198,0.2931803324617109,0.3008301940268543,0.3075192379037566,0.3140635236454517,0.3190855482647823,0.3248906660002499,0.3299025400576881,0.3348766230407118,0.3395771586642956,0.3395744566459227,0.3400456658688894,0.340486348723581,0.3396556207205385,0.3394746226078687,0.3388752681581367,0.3379867046533713,0.339218034750365,0.3403576969634971,0.3404721994364991,0.3413021077283372,0.3417177551302016,0.3430818794192711,0.3441814815640963,0.3441108545034642,0.3462079749804534,0.3470224703101415,0.3490038338256552,0.3519108838056538,0.3551750109010188,0.3593337580777282,0.3625830454424661,0.3656984437023502,0.3693324219640009,0.3726655348047538,0.3731966138070824,0.3719303699098539,0.3735432426906563,0.3663094256663918,0.3638124757845796,0.0,2.225623178638336,59.32426430744926,199.36918436053364,289.8999432891645,fqhc4_100Compliance_baseline,89 -100000,95725,42960,405.6202663880909,6630,68.03865238965788,5225,54.04021937842779,2125,21.791590493601465,77.3893283971574,79.75016758602297,63.35181630130408,65.09355179294917,77.12331755913054,79.48446889540426,63.25323146570732,64.99783079448356,0.2660108380268582,265.69869061870577,0.0985848355967604,95.72099846560889,112.43584,79.09106101943925,117457.13241055106,82623.2029453531,306.40889,195.85152398771427,319534.2282580308,204039.6542318724,313.28494,150.90939598695664,324147.4849830243,155163.86046183782,3782.93788,1710.560640312685,3911624.6644032383,1746720.8942400643,1286.34428,568.4904292587103,1324051.8046487337,574274.5923417286,2093.82782,876.3533181961693,2149163.8756855577,883851.121016946,0.38094,100000,0,511072,5338.960564115958,0,0.0,0,0.0,26260,273.7320449203448,0,0.0,28998,299.7858448681118,1869133,0,67044,0,0,0,0,0,45,0.4596500391747192,0,0.0,0,0.0,0,0.0,0.0663,0.174043156402583,0.3205128205128205,0.02125,0.3256513026052104,0.6743486973947895,24.8398237669297,4.481010504776319,0.3265071770334928,0.2086124401913875,0.2298564593301435,0.235023923444976,11.228030552235936,5.823478226728994,22.542064816081385,12641.567189034116,58.9244606277664,12.835664021046153,19.15333119179812,13.423070052803896,13.51239536211823,0.5475598086124402,0.7541284403669725,0.694021101992966,0.5836802664446294,0.1254071661237785,0.7108614232209738,0.8900804289544236,0.863849765258216,0.721830985915493,0.1746031746031746,0.4915167095115681,0.6834030683403068,0.6375,0.5408942202835333,0.1127049180327868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408276532606,0.004581065604508,0.0064615603095868,0.0084684666389122,0.0105323085681753,0.0126519145817641,0.0149906244904614,0.0173363808901859,0.0194447566595481,0.0218461255103398,0.0239983604877548,0.026223991463865,0.0284936292642827,0.0303245530062069,0.032393131542309,0.0345052083333333,0.0363594951910633,0.0383075391062611,0.0404440425332876,0.0422847737311442,0.0565145202217975,0.0698791398524564,0.083121814100816,0.0961548571608819,0.1085155278193586,0.1237243144346796,0.1368428868428868,0.1491669771650609,0.1611025052080551,0.1721978575794293,0.1859721294880355,0.1988447059841633,0.2111832305902562,0.2219913609273333,0.2320642605633802,0.2430477076824215,0.2527603800337162,0.2629500450045005,0.2716520238824945,0.2798308639004435,0.2875536480686695,0.2944306076870008,0.3019454792738454,0.3078646032962821,0.3148352782601304,0.320520241892774,0.3257368124648019,0.3310907056010581,0.3357422229129432,0.340333751071829,0.341151471952876,0.3408497181355699,0.3410532236518315,0.3408755960121369,0.3409148269667592,0.339834189916789,0.3389219853673182,0.3396572626888168,0.3405547405410938,0.3419385916397566,0.3428459075332846,0.3436449891282862,0.3452852739510599,0.3462218343738112,0.3476554032899015,0.3479086957653367,0.348567686086907,0.352276295133438,0.3553087890146075,0.3567158861486085,0.3579403053087263,0.3613463279544123,0.3642338072669826,0.3645706455542022,0.3663300934226668,0.3681403342420291,0.3729977116704805,0.3693421846710923,0.3712843522153674,0.3660818713450292,0.0,2.039076715545396,58.87019630253705,197.1284483486532,292.2115087594045,fqhc4_100Compliance_baseline,90 -100000,95675,43162,407.5986412333421,6833,70.22733211392736,5300,54.84191272537235,2104,21.61484191272537,77.35982293729873,79.73651830341996,63.33991942654043,65.09030945870994,77.10415411128528,79.48243887514376,63.24569067518191,64.99990935761339,0.2556688260134478,254.0794282761993,0.0942287513585213,90.40010109654872,112.82348,79.33436791022886,117923.6791220277,82920.6876511407,310.19397,197.72178545670025,323671.27253723546,206114.7692257123,314.38855,151.61673741777423,325929.7831199373,156351.27196296255,3810.78494,1708.819597453734,3941334.2565978575,1744349.315342288,1292.42501,564.4027394816949,1336873.9900705514,575941.3843550507,2068.71188,852.917736774368,2125829.777893912,857895.291083399,0.38115,100000,0,512834,5360.167232819441,0,0.0,0,0.0,26492,276.32087797230207,0,0.0,29096,301.36399268356416,1866149,0,66920,0,0,0,0,0,51,0.5330546119675986,0,0.0,2,0.0209041024301019,0,0.0,0.06833,0.1792732520005247,0.3079174593882628,0.02104,0.3277158774373259,0.6722841225626741,25.239134109868523,4.488323742639908,0.3337735849056604,0.2135849056603773,0.2258490566037735,0.2267924528301886,11.329947199458111,5.861093423963706,22.163639613809934,12735.831359467287,59.25606199875444,13.122954203307009,19.76124370695048,13.253591006534013,13.118273081962933,0.5473584905660377,0.7570671378091873,0.6721311475409836,0.581453634085213,0.1322795341098169,0.7176740627390972,0.913649025069638,0.8452914798206278,0.7559055118110236,0.1653225806451612,0.491610318056599,0.684346701164295,0.6137566137566137,0.5344644750795334,0.1236897274633123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023696682464454,0.0045914799160762,0.006980165373104,0.0093030813918059,0.0115198470798763,0.0139345513766603,0.0161403723290435,0.0183242868220217,0.0204192118327238,0.0226389229887879,0.0246586008011228,0.0267045571126659,0.0288098835476344,0.0307766760366148,0.0327811358900831,0.0346866214651893,0.0366689442408431,0.0389151065705543,0.0407868334321033,0.0426997675848627,0.0577861359243587,0.0720329221554378,0.0855673349427941,0.0983522033755629,0.1108239810986414,0.1266480435104649,0.1388402381938031,0.1516749214464504,0.1625507804147958,0.1736148380310413,0.1872278977542135,0.200643253955362,0.2125538675836852,0.2230491408558607,0.2337745281564516,0.2443920109002691,0.2543579671004173,0.2641619731768462,0.2725870652408115,0.28107043930133,0.2888613918634503,0.2961464241857201,0.3037186904719648,0.3101800280283158,0.3162435685855742,0.3213265708095332,0.3269627388972913,0.3322528981086028,0.3375118045044695,0.3423264159157772,0.3418121653977563,0.3416466056812711,0.3426120275543409,0.342003032709943,0.3415647631485219,0.3401291823552821,0.3396094950038797,0.3405325443786982,0.3419232218074723,0.3431337461078702,0.3447447447447447,0.3466289243437983,0.3489645622206835,0.34848688333781,0.3498279968245568,0.3510344468184898,0.3515167036594388,0.3538868090728914,0.3557732827644332,0.3576886341929322,0.362264496067313,0.3644689625622623,0.3680551125853161,0.3698366214549938,0.3709508881922675,0.375887378173505,0.3786243059839605,0.3762698090207232,0.3726606997558991,0.3720030935808198,0.0,2.1585155065620296,57.46133198143336,193.81497617581547,307.34083330710405,fqhc4_100Compliance_baseline,91 -100000,95852,43431,408.9325209698285,6767,69.27346325585277,5298,54.678045319868126,2107,21.606226265492637,77.34109898624328,79.63196049302285,63.34986309044478,65.04403507445852,77.07483277210258,79.36661623620567,63.25109161660998,64.94803708594958,0.2662662141406997,265.34425681717266,0.0987714738347946,95.99798850894103,113.96726,80.20510488236226,118898.96924425157,83675.75520840698,312.36835,199.90488647602697,325279.7855026499,207949.46008015168,319.70791,154.39691227321418,329537.5474690147,157995.79144723745,3804.71678,1732.4411569601157,3928498.382923674,1766616.22121616,1285.72275,576.0603387172436,1327114.67679339,586878.6675488161,2080.3839,880.6590253826694,2135257.22989609,888772.0692917629,0.38349,100000,0,518033,5404.498602011434,0,0.0,0,0.0,26706,277.9806368150899,0,0.0,29518,304.02078203897673,1856933,0,66675,0,0,0,0,0,61,0.6259650294203564,0,0.0,0,0.0,0,0.0,0.06767,0.1764583170356463,0.3113639722181173,0.02107,0.3203542310936182,0.6796457689063817,24.84050571718542,4.49729144734232,0.3282370705926765,0.2214043035107587,0.2178180445451113,0.2325405813514534,11.134762296654335,5.543477122087078,22.73606840872116,12676.378507196649,59.95396469224939,13.77588756103649,19.54313560418604,12.851689346345344,13.783252180681524,0.5530388825972065,0.7621483375959079,0.706728004600345,0.5814558058925476,0.1103896103896103,0.6931486880466472,0.9019073569482288,0.8625592417061612,0.7167235494880546,0.1586206896551724,0.5040753948038716,0.6985111662531017,0.6567957479119211,0.5354239256678281,0.0955414012738853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0047420737453263,0.0071914716651959,0.0093000588868357,0.0114243896489337,0.0138707970365545,0.0159642205853887,0.0181790359602142,0.0203358323289686,0.022433176140839,0.0245833632089483,0.0266658461790919,0.0287378162135513,0.0312982282856966,0.0331901037641555,0.035608124845182,0.0376593698621638,0.0399001201873264,0.0417873568588366,0.0433841736199255,0.0580592688369377,0.0714830645751251,0.0852187028657616,0.0976560038646531,0.1096813596445043,0.1253577803360758,0.1380946832063899,0.1500116939170369,0.1616782440752478,0.1720786179698216,0.1858272800645682,0.1983756191464971,0.2101457941486643,0.2208096024137215,0.2315902988687882,0.2429084301037142,0.2527089912843576,0.2619511042606572,0.2714005243029154,0.2800920888359467,0.2883062183240378,0.2965441400126348,0.3035456460507941,0.3095674684500054,0.3152490886998785,0.3213651388820366,0.3268717833126714,0.3322130991025396,0.336877962852628,0.3411469344608879,0.3410668787662276,0.3400743904119024,0.3408381914938667,0.3410801014860457,0.3403074995899011,0.3387674200636111,0.3380782918149466,0.3388687335092348,0.3396164760512511,0.3405994059940599,0.3419909331318473,0.3430681637203376,0.3438746859760603,0.3453232539772086,0.3474934421451472,0.3484760751697636,0.3474576271186441,0.3502570286221996,0.3531175059952038,0.3552914905494856,0.3569989929506545,0.3597951344430217,0.3566087948295526,0.359831996945399,0.3585210531318316,0.3620359281437125,0.3674037420751507,0.3607890990441326,0.3654218533886583,0.3648283841110682,0.0,2.230562782374793,60.4026123908102,195.3608949091088,301.66879436628267,fqhc4_100Compliance_baseline,92 -100000,95647,42890,404.33050696833146,6739,69.2964755820883,5287,54.75341620751304,2142,22.08119439187847,77.31769350596971,79.74194492625212,63.289715480586615,65.08217561723848,77.05532886053287,79.47696164055674,63.1944457061158,64.98820497217109,0.2623646454368469,264.9832856953793,0.0952697744708146,93.97064506738673,112.16656,78.89204117401827,117271.3833157339,82482.50459922242,307.54346,196.09864083769747,320971.384361245,204464.68946602265,313.51071,151.50733957552123,324737.11668949365,156106.90773768714,3833.83873,1722.6240570064192,3970447.2069171015,1763862.6015804703,1305.26389,574.9343014922117,1343308.697606825,579971.3583320436,2105.67478,870.2877144012826,2170771.879933506,882839.9563219389,0.3798,100000,0,509848,5330.517423442449,0,0.0,0,0.0,26299,274.3839325854444,0,0.0,29022,300.375338484218,1867014,0,66971,0,0,0,0,0,53,0.5541208819931623,0,0.0,0,0.0,0,0.0,0.06739,0.1774354923644023,0.3178513132512242,0.02142,0.3181433408577878,0.6818566591422122,24.901505775435663,4.494976863304042,0.3247588424437299,0.2125969358804615,0.2311329676565159,0.2315112540192926,11.282789365125351,5.779229924692021,22.640825908769028,12632.491186266918,59.497640884732114,13.18137840275389,19.343917254632967,13.451732295203394,13.520612932141873,0.5485152260261018,0.7615658362989324,0.691322073383809,0.5785597381342062,0.1225490196078431,0.7195121951219512,0.896551724137931,0.8666666666666667,0.7397769516728625,0.1747967479674796,0.4920754716981132,0.6934404283801874,0.6345412490362374,0.5330535152151101,0.1094069529652351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020564875597698,0.0043605240741491,0.0065076142131979,0.0087196008089513,0.0108763112110452,0.0131927465362673,0.0153224654683451,0.0178792182184125,0.020109913726935,0.0222534287295762,0.0242775753220756,0.0264456691617997,0.0286682250208524,0.0307503455674527,0.0329689630945985,0.0350997009488922,0.0372106043483219,0.0392932818147825,0.0412096488854663,0.0432982595184215,0.0574232179992266,0.0705035518953919,0.0839512656233588,0.0969773565034228,0.1091070372560615,0.1246968365088274,0.1369350605187932,0.1492192080157757,0.1597560975609756,0.1709667024704618,0.1842020106139707,0.1974776258478341,0.2105905160208238,0.2216065875344925,0.2323728720180706,0.2434176962491404,0.2534109575264551,0.2626244425424568,0.2718911799436824,0.2795608979133483,0.2873387526343824,0.2943710275888708,0.3012687619205572,0.3077116905244717,0.3138908152960786,0.3190872648781992,0.3249026506567168,0.3304528215440221,0.3353593737850237,0.3396106727986361,0.3392356241234222,0.3390442087866685,0.3395135706732464,0.3397077316681843,0.3402377414561664,0.3400248439584707,0.3396663283430601,0.3408676511654648,0.3412663158614091,0.3417717005686984,0.3418848167539267,0.3426650631863257,0.3431315361859922,0.3442940469299612,0.3451776649746192,0.3459209397822075,0.3481027039309248,0.3501002255073916,0.3524013031141626,0.3560909776525225,0.3574532314869871,0.3575770502292844,0.3571157014320111,0.3620162153893223,0.3666950999905222,0.3667344254454143,0.3677609166924744,0.3674173260296206,0.3641666666666667,0.3603568657874321,0.0,1.9469789469353287,58.000299031495615,203.15012798024645,296.2427826778702,fqhc4_100Compliance_baseline,93 -100000,95710,43009,404.79573712255774,6735,69.22996552084422,5302,54.82185769512068,2091,21.43976595966984,77.34880342590687,79.70632456759883,63.338894218876014,65.07700829019166,77.09384330622336,79.45247765049075,63.24480977096887,64.98585594015051,0.2549601196835027,253.8469171080777,0.0940844479071429,91.15235004114196,112.37578,79.05390828033003,117412.78863232682,82597.33390484801,309.27996,197.1846088182996,322559.8161111691,205440.0259307278,315.25242,151.93429338133592,325783.80524501094,155910.37599727558,3807.4928,1708.0709422468651,3938794.483335075,1745270.4443076658,1271.43464,553.9553594490533,1312735.8478737853,563097.0634720022,2053.85358,857.3119312720053,2108449.6081914115,863553.1182789727,0.38054,100000,0,510799,5336.944937833037,0,0.0,0,0.0,26394,275.1541113781214,0,0.0,29160,301.03437467349283,1867504,0,67001,0,0,0,0,0,60,0.626893741510814,0,0.0,0,0.0,0,0.0,0.06735,0.1769853366268986,0.310467706013363,0.02091,0.3310782241014799,0.6689217758985201,25.130782376816324,4.53764620465283,0.3398717465107506,0.2053941908713693,0.2259524707657488,0.2287815918521312,11.10736164950311,5.6072808457255015,22.24362519204117,12672.043577952183,59.64509331695796,12.92729304427418,20.15297559388149,13.254758711915253,13.310065966887043,0.543002640513014,0.7621671258034894,0.6853496115427303,0.5684474123539232,0.1096455070074196,0.7052631578947368,0.9018567639257294,0.8651685393258427,0.7003891050583657,0.1314741035856573,0.4886706948640483,0.6882022471910112,0.6263817243920413,0.5324123273113709,0.1039501039501039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898008161777,0.0048655881279649,0.007315712038963,0.0095693779904306,0.0118757117292988,0.0141904616480887,0.0167572140621973,0.0188118811881188,0.0209084870471616,0.0232536717670538,0.0252342004386774,0.0275670960127264,0.0297226163304751,0.0319352646858978,0.0339993604489235,0.0359471383846002,0.0378845138378389,0.0400170152722443,0.0416302765647743,0.0436775860631824,0.0584070426800614,0.0724317649028801,0.0864360725563633,0.0993245802297689,0.1105626226188215,0.1254773364362405,0.137806262666992,0.1496161912974969,0.1613334045622095,0.1719340027463096,0.1861655139723784,0.1986906887410052,0.2097311055997911,0.2204989664110949,0.2303951234004159,0.2414293628808864,0.2512091864660478,0.2608695652173913,0.2701604205220195,0.2791728720357429,0.2869346791836923,0.2943571027512633,0.3017695448896254,0.3075770830087838,0.314525533258831,0.3203641874160681,0.3256933503388601,0.3308368195516448,0.3363860969899233,0.340950447005459,0.3407661751834646,0.3405438132981065,0.3404459227104884,0.3409002183311403,0.3412436435007583,0.339736813885442,0.3386917960088692,0.3400128009453005,0.3414050617769195,0.343296648324162,0.3432103390147968,0.3438888998636929,0.3444062539296642,0.3445370619342117,0.3454974932510605,0.3469915387026011,0.3468868032505436,0.3496638151456801,0.3522371246523744,0.3557405121261598,0.3589602782354018,0.3590582430548107,0.360919540229885,0.3614457831325301,0.359336257867633,0.3529482551143201,0.3565625,0.3594106661133015,0.355998876088789,0.3533541341653666,0.0,2.1897195893786545,58.644667321431776,192.09387329761464,309.89923203171065,fqhc4_100Compliance_baseline,94 -100000,95632,42619,403.43190563828006,6660,68.44989124979087,5195,53.68495900953656,2078,21.331771791868828,77.26744378178137,79.68226707809713,63.28338998351626,65.06910171292368,77.01400603502594,79.4302717755543,63.19046081403708,64.97946845942415,0.2534377467554236,251.99530254282365,0.0929291694791771,89.63325349952811,113.5596,79.88396514631039,118746.44470470135,83532.67227111259,310.32469,198.3854701418016,323896.4572528024,206844.4036952083,315.73462,151.8809657097468,326293.071356868,155830.69714436503,3744.5035,1688.3327016660485,3875334.574201104,1725247.9940459772,1248.30604,541.1615537418559,1288820.143884892,549380.3890294221,2046.02194,852.4365075721793,2103111.3016563496,859931.4756122873,0.37666,100000,0,516180,5397.565668395516,0,0.0,0,0.0,26633,277.8463275890915,0,0.0,29205,301.4158440689309,1856719,0,66619,0,0,0,0,0,49,0.5123807930399866,0,0.0,0,0.0,0,0.0,0.0666,0.1768172888015717,0.312012012012012,0.02078,0.3196275071633238,0.6803724928366762,24.872976026231207,4.465022285160007,0.3272377285851781,0.217516843118383,0.2230991337824831,0.2321462945139557,11.03079164803197,5.521680442579935,22.22442228984733,12471.654815832915,58.91112277057048,13.3491331542227,19.353326693000454,12.97184390221467,13.23681902113267,0.5432146294513955,0.7601769911504425,0.6888235294117647,0.5642795513373597,0.1144278606965174,0.7177358490566038,0.8979057591623036,0.8552036199095022,0.7595419847328244,0.1297071129707113,0.4834625322997416,0.6898395721925134,0.6303656597774245,0.5072463768115942,0.1106514994829369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020163333130686,0.0040559724193875,0.0063454353476283,0.0085257296154784,0.0107834260775796,0.0130056626064284,0.0151620205151212,0.0172640864123166,0.0193458010818106,0.0215563588698528,0.0236193015742782,0.0257940584295517,0.0276006090033742,0.0294690420500561,0.0314715991783734,0.0332685468530311,0.0354413074548957,0.037241164564845,0.0391936591150221,0.0413795260485628,0.0561855292998756,0.0703108634630692,0.0832878265983365,0.0958197325471201,0.1079640225492473,0.1225963574756459,0.135375955819881,0.1468867552562313,0.1582257495213545,0.1687858416203097,0.1827152239321032,0.1959097900734418,0.207972836200986,0.2192143560564613,0.2285261385026914,0.2398298324913586,0.2497042608753878,0.2592538421727683,0.2679684395754101,0.2759968367124732,0.2831241606076043,0.2900308829722521,0.2980403765318808,0.3047380229642338,0.3103062440709299,0.3164319480615658,0.3218526125945594,0.3276526962874343,0.3325385512504859,0.337100782571912,0.3365044665749062,0.3362456246727117,0.336489480294072,0.3365004417536897,0.3360868398294218,0.335084808259587,0.3337306127637935,0.334331550802139,0.3346289510633197,0.3361731068673599,0.3375873994436508,0.3390493979255256,0.339641706839568,0.3398554952205717,0.3418941773375211,0.3425260839930792,0.3440835598798111,0.3461538461538461,0.3493818438714235,0.3528492426063958,0.3543590690801625,0.3577213822894168,0.3605938439879695,0.3634465155851187,0.3661394817073171,0.3672139063254466,0.3680847748168926,0.3668797690245411,0.3732574679943101,0.3773055332798717,0.0,2.470108823637013,58.20369335028185,196.44799091400665,293.891387485897,fqhc4_100Compliance_baseline,95 -100000,95834,43133,405.6076131644301,6873,70.3299455308137,5420,55.91961099401048,2139,21.912891040757977,77.40182060844235,79.71608305833728,63.36325590393732,65.07605615599986,77.14123840192289,79.45635949600616,63.26737229536831,64.98307584902021,0.2605822065194587,259.7235623311178,0.0958836085690109,92.98030697965488,113.47952,79.78513950394607,118412.58843416742,83253.47945817359,310.80567,198.72821560597825,323690.38128430414,206740.8076527936,323.92048,156.5286782225252,334284.6797587495,160488.76194370742,3911.70789,1768.963171812207,4038288.227560156,1802467.5534906264,1288.0742,572.5314441583234,1328101.4775549388,581456.2177803111,2107.92056,876.4071168635738,2162124.9243483525,883388.7291668428,0.38131,100000,0,515816,5382.390383371246,0,0.0,0,0.0,26599,276.90589978504494,0,0.0,29946,308.7526347642799,1861458,0,66877,0,0,0,0,0,53,0.5426049210092452,0,0.0,0,0.0,0,0.0,0.06873,0.1802470430883008,0.3112178088171104,0.02139,0.3304780326056922,0.6695219673943078,24.929323313335548,4.479900467270597,0.3241697416974169,0.2230627306273062,0.2267527675276753,0.2260147601476014,11.189657858810332,5.635455590467713,22.72308912273996,12738.258227096843,61.00608635126437,14.159420229976892,19.784055608570704,13.675402123108354,13.387208389608414,0.5560885608856089,0.7692307692307693,0.7068867387592487,0.5785191212367778,0.106938775510204,0.7406866325785245,0.925925925925926,0.8816964285714286,0.7364620938628159,0.1673640167364016,0.4937052579609973,0.6902985074626866,0.6470588235294118,0.532563025210084,0.0922920892494929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390510135887,0.0046620519109345,0.0068883658645457,0.0091512030632661,0.0114679598621404,0.0138034936275907,0.0160423992253987,0.0182282098387426,0.0205041192223562,0.0227526278619899,0.0252370457690533,0.0273535328652953,0.0293978578623851,0.03169209859764,0.0338194644993605,0.0356061623665802,0.037636245070335,0.0398689354112877,0.0418254899720609,0.0436773475143353,0.0581112791364655,0.0725814882184448,0.0859136776586715,0.09850943812435,0.1110046234373519,0.1266555417080332,0.1395609983473876,0.1514829382374827,0.1634754952185792,0.1741831815747188,0.1875463864298852,0.2003198547686455,0.2127282801177659,0.2237579624793767,0.2332538120733061,0.2433683184978521,0.2536612570408789,0.2635999730136955,0.2727066483659834,0.2811079951925828,0.2892499855432834,0.2972514818148871,0.3040989616594526,0.3095660300496034,0.3161742382843334,0.321667036243132,0.3265068681662371,0.3316293442185175,0.3366858237547893,0.3414238414963922,0.3415119988155964,0.3416570359363821,0.341997437377677,0.3423559982676483,0.3424092164256658,0.3414312848477421,0.3401874188748536,0.3407945911351067,0.3412500427160578,0.342212785697718,0.3429213483146067,0.343328987396784,0.3440463976884906,0.3451912763675366,0.346344857369065,0.3485455586199719,0.3508562325766627,0.3531881560394799,0.3556014853219365,0.3584583631023259,0.3606587290725788,0.3615286216821234,0.3649450688218209,0.3641217298451681,0.366769403194172,0.3678866587957497,0.3690567191560923,0.3744152938783811,0.3791872597473915,0.363914373088685,0.0,2.4279595425880816,59.67747209163158,205.41022378391796,304.83920899947753,fqhc4_100Compliance_baseline,96 -100000,95699,43319,409.1892287275729,6705,68.85129416190347,5211,53.89815985537989,2115,21.713915505909156,77.32145341825886,79.70746236565205,63.3143933609397,65.07971543877784,77.06588780136933,79.45284804490066,63.21972986595479,64.98811780556385,0.2555656168895268,254.6143207513865,0.094663494984907,91.5976332139934,113.18098,79.63112355666864,118267.21282354048,83209.58408213752,311.26514,199.17958260129208,324694.68855473935,207573.75002755516,314.55153,151.42519767565918,325205.5507372073,155622.3473158224,3783.10496,1704.692884793276,3914046.1864805273,1742392.157910475,1274.21864,561.3041695658831,1315580.3926895787,570763.8685164711,2090.58244,870.2495097656413,2147811.659473976,877944.4490695356,0.38369,100000,0,514459,5375.7824010700215,0,0.0,0,0.0,26631,277.69360181402106,0,0.0,29076,300.2852694385521,1861688,0,66753,0,0,0,0,0,54,0.5642692191140973,0,0.0,0,0.0,0,0.0,0.06705,0.1747504495816935,0.3154362416107382,0.02115,0.3271396396396396,0.6728603603603603,25.09505640432987,4.555686330476968,0.3183649971214738,0.2128190366532335,0.2310497025522932,0.2377662636729994,10.885402998042256,5.288653485938434,22.36851376334769,12726.874747817305,58.6736486470317,12.926570378933842,18.71179614892881,13.451366433505754,13.583915685663298,0.5402034158510842,0.7457168620378719,0.6907775768535263,0.5672757475083057,0.1283292978208232,0.6951124903025602,0.9157303370786516,0.8064516129032258,0.7509157509157509,0.1556420233463035,0.4892911779704232,0.6653386454183267,0.6536624203821656,0.5134264232008593,0.1211812627291242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017731215044176,0.004188216205253,0.0063850089329218,0.0085161736161217,0.0111000325573823,0.0133750305598565,0.0157357455357598,0.0178885031652031,0.0199654463856714,0.0222224496898478,0.0241854456724558,0.0262174207726591,0.0283407056887151,0.0303264498577964,0.0324015772414789,0.0344606540596987,0.0364911335764003,0.0385653202706629,0.040611090311577,0.0426693903926125,0.0575725924378525,0.0710980843714016,0.0847991268208723,0.0973302324602481,0.1098778197471987,0.1254537949428985,0.1376122444647292,0.1497619529444344,0.1612461924865067,0.1727877292716936,0.1867445217728555,0.2003940545397464,0.2129835095505373,0.2239726926611527,0.2338089527937601,0.2447454098469579,0.255110238329019,0.2639059109257115,0.2728087389543655,0.2806221794607472,0.2883536366686334,0.2956586826347305,0.302741866742435,0.3104506599848941,0.3170610181438137,0.3239804402182615,0.3295413303297666,0.3348085409433698,0.3394843014534733,0.3445512186762631,0.3445315968625129,0.3448413243577414,0.3448343793093744,0.3443257291365867,0.3433361573103848,0.3420455590642916,0.3402168056039811,0.3413030975269082,0.3421097623525388,0.3430261652845296,0.3442635251744578,0.3467202406872253,0.3479227397605016,0.3485222227205453,0.3487726581545219,0.3492084294401342,0.3489312867594319,0.3493895882092478,0.3511690329872148,0.3548940584972667,0.3558593571395912,0.3587724935732648,0.358301404853129,0.3589049570798855,0.3615215940509105,0.362406378352259,0.3612622415669205,0.3641975308641975,0.3677329624478442,0.3709175738724727,0.0,2.042361603085327,56.85403454085055,198.6509583049809,295.46166913444205,fqhc4_100Compliance_baseline,97 -100000,95720,42905,405.10865022983705,6794,69.7555369828667,5307,55.01462599247806,2118,21.824070204763892,77.3455376358958,79.73157925828976,63.32130932583449,65.08701864634496,77.08424596820683,79.46848174878147,63.22553050927999,64.99236584910956,0.2612916676889654,263.0975095082846,0.0957788165544997,94.65279723539766,113.2494,79.66779098161174,118312.74550773088,83229.70391973139,314.20723,200.369728709542,327802.7580442958,208880.42207640765,319.03406,153.63129094529842,330844.23318010865,158563.37582243542,3837.13235,1733.053875984011,3978915.3468449647,1781214.6036780376,1312.38629,577.5188174210202,1359574.717927288,591860.3557774198,2081.6216,868.3205495015686,2146326.159632261,884037.3152050107,0.38084,100000,0,514770,5377.852068533222,0,0.0,0,0.0,26869,280.2235687421647,0,0.0,29603,306.7697450898454,1861592,0,66734,0,0,0,0,0,44,0.4596740493104889,0,0.0,0,0.0,0,0.0,0.06794,0.1783951265623359,0.3117456579334707,0.02118,0.3225174825174825,0.6774825174825175,24.93603970744891,4.494396485058359,0.3252308272093461,0.2114188807235726,0.2315809308460523,0.2317693612210288,11.161371676027194,5.74761179276522,22.54746368479297,12640.89090089251,59.91232790032884,13.333184064228472,19.35435297911905,13.575703392060824,13.649087464920504,0.5526662898059167,0.7771836007130125,0.6952491309385863,0.5736371033360456,0.1268292682926829,0.6827067669172933,0.9098360655737704,0.8349514563106796,0.6953405017921147,0.1355311355311355,0.5091777721900931,0.7129629629629629,0.6514459665144596,0.5378947368421053,0.1243469174503657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023911083192332,0.0047466910086718,0.0069749733489009,0.0090042480538222,0.0111805159925124,0.0132715420655938,0.0156329668984927,0.017677154498943,0.0197766688481675,0.0219454997900687,0.0241528552674762,0.0262222678718159,0.0283492429229756,0.0304082600004121,0.0325074044643502,0.0344260769779487,0.0363687214493624,0.03834936845492,0.0402034088663803,0.0422284273479339,0.0575230018902802,0.0710398526456798,0.0848804139074585,0.0977085262183317,0.1097680599943043,0.1253582949918028,0.1381747185467355,0.1501203433512961,0.1613185967462642,0.1722657507781475,0.1858750485060147,0.198637554963502,0.2102622154978176,0.2213140762623776,0.231624364364805,0.2428865842308203,0.2534654791401594,0.2629038790387903,0.2713535344367931,0.2796767325259278,0.2880756017720611,0.2948464694399962,0.3020090579067485,0.3082006464743206,0.3139945404913558,0.3204198919504301,0.3247834402069974,0.3303445560649741,0.3354221039303341,0.340887853542333,0.3404526831889314,0.3399972557628979,0.3398107397460594,0.3399097189172039,0.3395997034840622,0.3383573579541112,0.3377653259888883,0.3388094063476402,0.3392560923471569,0.3400200422318457,0.3421557201398549,0.3435676576826896,0.3454059514289322,0.3463936485152956,0.3467683544914804,0.3467410375258596,0.3473016235993597,0.3491878252641539,0.3509204181479005,0.3537688842826962,0.356787588409765,0.3564087544597689,0.3577281896116994,0.3605006105006105,0.3603227337446607,0.3581350404638241,0.3630009319664492,0.3697530864197531,0.3741685144124168,0.3785266457680251,0.0,1.570714026224412,59.11625272327064,203.13960109669264,299.0080550503432,fqhc4_100Compliance_baseline,98 -100000,95609,42904,404.03100126557126,6701,68.96840255624471,5223,54.04302942191635,2095,21.50425169178634,77.23812690061078,79.66923881467568,63.25655152000609,65.0543239583581,76.98098478493296,79.41352449416938,63.16235764903293,64.9630306688846,0.2571421156778228,255.71432050629997,0.0941938709731644,91.29328947349792,112.09682,78.8818320133014,117244.12973674026,82503.76917943203,308.44886,197.3489932276129,322017.4146785345,205817.03163868017,313.70519,150.9565884114263,324615.30818228406,155066.87471161768,3762.49002,1703.152235447562,3896862.0631948872,1743186.4784342572,1252.70552,549.399576261379,1294597.2554885,559249.1169318663,2068.21352,865.0626581567113,2125979.41616375,875191.7711706545,0.37997,100000,0,509531,5329.278624397285,0,0.0,0,0.0,26398,275.46569883588364,0,0.0,29014,300.0240563126902,1862894,0,66875,0,0,0,0,0,47,0.4706669874175025,0,0.0,0,0.0,0,0.0,0.06701,0.1763560281074821,0.3126399044918669,0.02095,0.3169344518697569,0.6830655481302431,25.125266587827134,4.48565380887638,0.321462760865403,0.2201799731954815,0.2230518858893356,0.2353053800497798,10.98155088232331,5.507785212648083,22.433726760436183,12688.97869144161,59.33462623185094,13.613827595244835,19.04338830244867,13.079638852887411,13.597771481270026,0.5517901589125024,0.7791304347826087,0.699225729600953,0.5888412017167381,0.1025223759153783,0.7033707865168539,0.9310344827586208,0.8891625615763546,0.7292418772563177,0.0909090909090909,0.4997427983539094,0.705045278137128,0.638648860958366,0.545045045045045,0.1058700209643605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023208204961893,0.0047163591735721,0.0068739338802696,0.0091275931817488,0.0115616349128806,0.0138451664170665,0.016166046203274,0.0183978261757855,0.0205592946423091,0.0230454866694662,0.02498358368218,0.0273419438365031,0.0295077242926688,0.0317831774930155,0.0336455547179164,0.0357497620131617,0.0376836234333046,0.0397556693641378,0.0417651284079907,0.043815723585378,0.0580314672521039,0.0718140568183009,0.0849389616120017,0.0976007920124699,0.1100363267719861,0.1250979727582774,0.1377064853667605,0.1497836328366481,0.1612337252468627,0.1714067836659291,0.1847252640550658,0.19805522130801,0.210496497172679,0.2218728430094332,0.2323195592286501,0.2424861038687273,0.2525610628970207,0.2620475814635246,0.2721400955196725,0.2812521531430146,0.2890281404119524,0.2965317444492663,0.3033849221420433,0.309528390370602,0.3152486591906387,0.3206730709790685,0.3260806789790204,0.330188679245283,0.3351916829109811,0.3401310997815003,0.3410976301780744,0.340738695201933,0.3410179260075433,0.3409413880107885,0.3411929531701791,0.3404978245160893,0.3389315648011196,0.3402998861818122,0.3409614129127581,0.3420641897346657,0.3432409044734565,0.3438126824618195,0.3447985340270025,0.3460241072231717,0.3466869874446621,0.3473493691472339,0.3487571043113841,0.3530286727008038,0.3549696456303826,0.3561692827339558,0.3545167345817499,0.3587118788654297,0.3621987475488645,0.3686903398243604,0.3687976650032953,0.3730074388947927,0.3753225072089847,0.3817377312952534,0.3861141602634467,0.3858508604206501,0.0,2.252022080856039,59.01871729983405,199.5744666684525,292.9464297446377,fqhc4_100Compliance_baseline,99 -100000,95722,43011,406.15532479471807,6626,68.15570088380937,5237,54.15682915108335,2146,22.022105681034663,77.33641368994157,79.7141095393512,63.332022412709286,65.09032501794454,77.07538136970953,79.45392086480217,63.23590292204863,64.99775955559876,0.261032320232033,260.1886745490276,0.096119490660655,92.56546234577456,112.84394,79.44293305071935,117887.15237876352,82993.39028720603,309.66218,197.48846402376552,322955.9348947995,205768.96013849007,314.37422,151.6152085120711,325409.1326967677,155893.16755572715,3036.05492,1368.115247632064,3142333.6745993607,1399850.575240868,1303.23012,568.272361419097,1345671.6742232717,577871.5630622343,2119.11044,875.7118330908261,2177215.060278724,882264.9710794258,0.38038,100000,0,512927,5358.506926307432,0,0.0,0,0.0,26601,277.3343640960281,0,0.0,28989,299.89970957564617,1865594,0,66927,0,0,0,0,0,60,0.616368233008086,0,0.0,0,0.0,0,0.0,0.06626,0.1741942268258057,0.323875641412617,0.02146,0.3268236645605973,0.6731763354394027,25.03443108060193,4.602936169140728,0.3248042772579721,0.2058430399083444,0.2257017376360511,0.2436509451976322,11.043546660048053,5.407225024772525,22.67337571477169,12600.733930643031,58.92649687759537,12.744909279224023,19.201219089368703,13.205666905362364,13.774701603640295,0.54057666603017,0.7755102040816326,0.6866549088771311,0.5854483925549916,0.1057993730407523,0.7304147465437788,0.9173553719008264,0.8953771289537713,0.7578947368421053,0.139917695473251,0.4777636594663278,0.7034965034965035,0.6201550387596899,0.5306577480490524,0.0977734753146176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104049288638,0.0045030882666152,0.0071983349408599,0.0093706805431335,0.011454380842904,0.0135864583545515,0.0158577998959809,0.0179497651623442,0.0198951059675094,0.0217738468153061,0.0239352160319819,0.0256873575491263,0.0278888968871795,0.0302100178190694,0.0323083273140026,0.0342140081038617,0.0362105742746494,0.0379088900185705,0.0401712866244686,0.0421684236843201,0.0569223700423967,0.0719225738948469,0.0852612370744803,0.0981865965834428,0.1098204968747694,0.1265219413207068,0.1392257462686567,0.1505928643590152,0.1616659728671,0.1722375779391913,0.1853442245396528,0.1974673140768457,0.20922170785247,0.2205278336100672,0.2310076156356802,0.2407077688692286,0.2510084464353369,0.2604023828256716,0.2698115774437113,0.2777498169838945,0.2852601891023418,0.2929439252336449,0.3003888107590673,0.3076821794503495,0.3128298453139218,0.3184979137691238,0.3233713314334283,0.3284871899145994,0.3338594902315953,0.3398601398601398,0.3399913800070037,0.3394570011025358,0.3384823733547759,0.3387963110422609,0.3399213606982216,0.3388032666093577,0.3378142458100558,0.3389515266233232,0.3391250706831851,0.3403374892519346,0.3415422184652953,0.3430778371954842,0.3444999160933042,0.3447426742181728,0.3450702528137276,0.3465416361926653,0.3477524542166599,0.3491605955020589,0.3518256939049368,0.3537605571788816,0.3549607752653438,0.3541194255479969,0.3554006968641115,0.3592436974789916,0.361857252494244,0.3628835849975645,0.3641772350086112,0.3617416425918283,0.3618146395769552,0.3618497109826589,0.0,2.160678528187519,57.21912896318517,193.7375103981857,303.8079253492284,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95607,43327,409.87584591086426,6919,71.08266131141025,5364,55.50848787222693,2141,21.95445940150826,77.26635035352784,79.70576381663409,63.26822878755484,65.07272555687923,77.00747404205823,79.44806537488074,63.17285625604522,64.9805607776723,0.2588763114696064,257.6984417533481,0.0953725315096178,92.16477920693931,112.92314,79.4211768173677,118111.79097764808,83070.462222816,311.09507,198.18211227797744,324766.99404855294,206665.8532094694,318.48535,152.97592290727204,330003.1378455552,157527.66443594598,3090.3544,1398.357267282694,3198887.654669637,1429262.4118974344,1315.87612,579.9741756016281,1359215.915152656,589523.6705701164,2105.062,871.5353328615695,2161260.870019977,878482.44911099,0.38279,100000,0,513287,5368.717771711276,0,0.0,0,0.0,26513,276.65338312048283,0,0.0,29480,305.1763992176305,1861068,0,66754,0,0,0,0,0,55,0.575271685127658,0,0.0,0,0.0,0,0.0,0.06919,0.1807518482718984,0.3094377800260153,0.02141,0.3183137525915687,0.6816862474084312,25.102633216066288,4.437736585262134,0.3325876211782252,0.2129008202833706,0.2281879194630872,0.2263236390753169,11.27140330936259,5.783963557376687,22.619440451074,12748.61964882592,60.567855563875135,13.527047519321412,20.087627528556347,13.589006822341023,13.364173693656346,0.5553691275167785,0.7732049036777583,0.6905829596412556,0.579248366013072,0.1276771004942339,0.7175856929955291,0.9023746701846964,0.847926267281106,0.7454545454545455,0.1889763779527559,0.5012431626056688,0.709043250327654,0.64,0.5310853530031612,0.1114583333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019660302403826,0.0042505706314988,0.006580884966537,0.0088864486741499,0.01096272470023,0.0132494878563347,0.0152575930764206,0.0175960270991079,0.0198903167717115,0.0221026744543498,0.0242212757222763,0.0260060646553939,0.0283605443577443,0.0305292352741032,0.0324023385047617,0.0344467208873988,0.0364957450998683,0.0386369065547719,0.0405703580349708,0.042343714148641,0.0570075480377192,0.0715213883008823,0.0846323529411764,0.0983052275671747,0.1105642282261982,0.1263877118644067,0.1394696285273954,0.1515526492644784,0.163569608871572,0.174583901920122,0.188133124764011,0.2013746598584143,0.213697555875049,0.2243952143044964,0.2346515882988338,0.2456519810106925,0.2560799865944255,0.265725997162226,0.2742954545454545,0.2829690816267997,0.2905150244422306,0.2978636182623158,0.3056585446749031,0.3120263788968825,0.3182663667862136,0.3239287124802528,0.3284788630011656,0.3332568924221576,0.3388125486129116,0.3430880566266969,0.3420375385693305,0.3417925450614819,0.3422911526260134,0.3420455038546653,0.3420813806442014,0.3410407281419509,0.3407617568274397,0.3414313206243729,0.3422007669131744,0.3437936593229446,0.3448872831282225,0.346050723918095,0.3466259606274344,0.3475263311549776,0.3472151684442187,0.347327543228989,0.347678889080163,0.3506431785057981,0.3521534819630428,0.3545407285959931,0.3560331790477063,0.357257460690983,0.3574571191736275,0.3570719034156033,0.3597629796839729,0.3606207795284918,0.366891064871481,0.365814047909054,0.3735568993952721,0.3744343891402715,0.0,2.270997884089315,59.13291570893579,202.2849683334084,306.16009971168467,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95721,42885,404.92681856645873,6521,67.10126304572664,5119,53.03956289633413,2020,20.82092748717627,77.34534288058313,79.71513666023674,63.32656324425341,65.07493495200065,77.10528937132447,79.4723654904684,63.23917629183827,64.9883949311979,0.2400535092586579,242.77116976833213,0.0873869524151373,86.54002080274381,112.73218,79.3415838357415,117771.62796042666,82888.37750936732,307.1165,195.70089230713003,320409.82647485926,204013.62533522423,314.30996,151.0291000220262,325709.3845655603,155662.2038801375,2956.86084,1328.7474139595338,3065337.679297124,1364442.968585299,1214.08974,525.3419412308931,1256451.3429654934,536914.5654881308,1999.0627,821.581516585991,2062523.333437804,836341.7758647356,0.37936,100000,0,512419,5353.25581638303,0,0.0,0,0.0,26203,273.2942614473313,0,0.0,28994,300.2684886284096,1866167,0,66986,0,0,0,0,0,51,0.5327984454821826,0,0.0,0,0.0,0,0.0,0.06521,0.1718947701391817,0.3097684404232479,0.0202,0.3283189718124726,0.6716810281875274,25.28093897867352,4.453112058854163,0.3399101386989646,0.2148857198671615,0.2092205508888454,0.2359835905450283,11.044238273233804,5.516472262325975,21.261493849186696,12561.31821513049,57.55412176065319,12.954572824233436,19.64172695891602,11.83463479167673,13.123187185826993,0.5424887673373706,0.7636363636363637,0.6890804597701149,0.5639589169000934,0.1109271523178807,0.730319563522993,0.956639566395664,0.8532110091743119,0.7478991596638656,0.1416666666666666,0.4796663190823775,0.6662106703146374,0.63420245398773,0.5114045618247299,0.1033057851239669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0043581375549834,0.00655411712187,0.0086431037984968,0.0108605015355203,0.0130524643908001,0.01540217934212,0.0178536794504047,0.0198413509700897,0.0218034414633896,0.0237836507903963,0.0258061203532552,0.028018349756228,0.0304319607701737,0.0325693233299966,0.0346196388145177,0.0366212353452918,0.0384300050852558,0.0404154882715022,0.0422363484785327,0.0570112685764414,0.0707064364207221,0.0843834926497592,0.0970382450418222,0.1094404524495373,0.1243809523809523,0.1370386489326695,0.1495500292880345,0.1610386834793759,0.1720021878317943,0.184811299410681,0.1971199653529666,0.2087681309234937,0.2196496989600438,0.230781089980068,0.2419499650841859,0.2508565752614368,0.2607184241019699,0.2700034048348655,0.2783453204452792,0.2861175055236156,0.292854303551804,0.300081650040825,0.3066720979548804,0.3120004858496295,0.3176815666555748,0.3234631557869443,0.3289266283622311,0.3337349865899638,0.3381725472582925,0.3385243912304829,0.3381094746703774,0.3388877905498912,0.3381194997684113,0.337792393309922,0.3368895429044422,0.3364193134881071,0.3378542377328785,0.3384667802385008,0.3381543558413337,0.3382295229018333,0.3399767382261912,0.3401104417670683,0.3397569327872154,0.3403306661525113,0.3425694009601336,0.343424007276655,0.3454408581913992,0.3456353513778493,0.3492308300707873,0.3505173435434614,0.3542608048482271,0.3568595353522634,0.359624341452241,0.358346671688165,0.3630218216318785,0.3654317207593386,0.3704154002026342,0.3651452282157676,0.3646408839779005,0.0,1.7543628366955166,56.97873484973996,190.74267719796237,291.4228210258352,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95656,42840,404.5642719745756,6732,69.0599648741323,5252,54.25692063226562,2109,21.598226980011702,77.2498286400838,79.64864720880564,63.26585613190741,65.0388224698801,76.98466867372986,79.38663126291162,63.16682649355005,64.94430606882517,0.2651599663539485,262.0159458940208,0.099029638357365,94.51640105493198,112.37952,79.05203137350671,117482.98068077276,82641.99984685404,304.73665,194.8979537795153,317974.0633101949,203147.2921505345,314.56344,151.6498835734994,325801.63293468265,156100.13425477606,3011.41912,1377.741307862569,3112760.935017145,1404893.3552130226,1285.95716,570.6791780777162,1325190.7355523962,577430.0285164714,2072.25104,875.1956041836273,2124430.7309525805,877870.7048715389,0.37874,100000,0,510816,5340.135485489671,0,0.0,0,0.0,26086,272.05820858074765,0,0.0,29139,301.4029438822447,1861113,0,66882,0,0,0,0,0,46,0.4808898553148782,0,0.0,0,0.0,0,0.0,0.06732,0.1777472672545809,0.3132798573975044,0.02109,0.3317328061008332,0.6682671938991668,24.940817448306326,4.492027930951029,0.3333968012185834,0.2121096725057121,0.229055597867479,0.2254379284082254,11.036786383736704,5.6064233988060765,22.64158624600029,12634.766986186603,59.67215797579141,13.149942847519991,19.915413838365367,13.424368568978238,13.18243272092782,0.5561690784463061,0.7639138240574507,0.7081667618503712,0.5660847880299252,0.1258445945945946,0.7328358208955223,0.923728813559322,0.8864142538975501,0.738831615120275,0.1707317073170731,0.4956543967280163,0.6894736842105263,0.6466973886328725,0.5109649122807017,0.1140724946695096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022286154220187,0.0045838530733112,0.0066280285421382,0.008605974395448,0.0109143432576212,0.013189253050333,0.0153464942692825,0.0175728799714096,0.0197790959296379,0.0221116129494781,0.0242171232806457,0.0259887005649717,0.0280084375160775,0.0297255233403077,0.0319643188998327,0.0338408075459209,0.0359463240246619,0.0381860088456986,0.0404303133713429,0.0424065481466034,0.0570804643338522,0.0712430621007435,0.0845849470491304,0.0974228919592966,0.1095608489620162,0.1253572108973137,0.1379189499171658,0.1497948526669153,0.1616029783045915,0.1722548693101855,0.1850053413615616,0.1977853935752554,0.2089299931290966,0.220540161039075,0.2312244019297219,0.2433345558408073,0.2530429427243715,0.2621951907561413,0.2708933389496692,0.2790866047623425,0.2869389461945916,0.2941211031597748,0.3020014508437489,0.3087107762304257,0.3150225582246067,0.3213158969156346,0.3263316582914572,0.3310198499431215,0.3366491125414472,0.3410115040025446,0.3407181984175289,0.3404840180125424,0.3403183586841174,0.3400313607061966,0.3393550313526425,0.3388619035907526,0.3376225198176301,0.3391082172587158,0.3394717421525048,0.3402424786708576,0.3419024105241335,0.3431319937193171,0.3434026608285618,0.3451504715600873,0.3451807374766966,0.3476430756359643,0.3468206444254348,0.3508512910724383,0.354162283470089,0.3550540368722187,0.3582014911802146,0.3599047870933615,0.3608370514673537,0.3662914511712808,0.3654314055773909,0.36790007070469,0.3691275167785235,0.3712306438467808,0.3754463059599011,0.3722074971601666,0.0,2.5638179349318717,58.69686679110017,205.55501408010937,289.28627620275853,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95742,43009,406.35248898080255,6769,69.37394247038917,5298,54.71997660378935,2088,21.38037642831777,77.32698317968122,79.68561262027855,63.31555014592704,65.06101065936186,77.06321091480534,79.42591541681102,63.2177580815361,64.96782812793246,0.2637722648758824,259.6972034675247,0.0977920643909371,93.1825314293917,111.63922,78.58697853742888,116603.9982452842,82081.8016517608,308.49146,197.22814138990915,321630.1518664745,205418.5429486632,316.19862,152.38419530299697,326670.9490087945,156350.4610615413,3036.44972,1377.9863301833575,3137501.3264815863,1405279.9504745647,1275.27329,556.2578770577773,1316372.8875519626,565380.2062394528,2054.36702,862.5258206317301,2105715.6942616617,866349.9829336326,0.38108,100000,0,507451,5300.1817384220085,0,0.0,0,0.0,26432,275.4381567128324,0,0.0,29318,302.60491738213113,1867575,0,67010,0,0,0,0,0,48,0.5013473710597229,0,0.0,0,0.0,0,0.0,0.06769,0.1776267450404114,0.3084650613089083,0.02088,0.3330527497194164,0.6669472502805837,24.840398072691546,4.512361835122459,0.3269158172895432,0.2142317855794639,0.2348055870139675,0.2240468101170253,11.031166821322229,5.505916119824826,22.33741097595477,12629.37732916191,59.74228339070066,13.369726516716698,19.586931100505968,13.72064961098187,13.06497616249612,0.5571913929784824,0.7744493392070485,0.7084295612009238,0.5667202572347267,0.1187868576242628,0.7166293810589113,0.9270833333333334,0.8431818181818181,0.6944444444444444,0.148471615720524,0.5031589588071772,0.6964047936085219,0.6625386996904025,0.5282426778242678,0.1116910229645093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019654526113165,0.0041471476952404,0.0063841016584454,0.0084931729518855,0.0109941520467836,0.0130848734789471,0.0152037361830566,0.0173121286977114,0.0196230734638812,0.0217295626452134,0.0238185526437158,0.026022152191096,0.0279179729660276,0.029985069247799,0.031844439859707,0.033861351354144,0.0360803395796666,0.0382445076032612,0.0400789938675813,0.0420486747791298,0.0566796124613714,0.0709562670014647,0.0845172316176856,0.0970953397180492,0.1091305814394738,0.1244990959938252,0.1369175779302737,0.1486450513762444,0.1597986082160151,0.1704432017002458,0.183876948282924,0.1968157695223654,0.208690163987943,0.2200838101907064,0.2302086200253206,0.2409049593189527,0.2513741174367682,0.2609033566118495,0.2700049984095969,0.2786704871060172,0.2863727431701583,0.2948597802403767,0.302076912134288,0.3088392417676082,0.3148116605022387,0.3207502930832356,0.3267304389253162,0.3325431419030868,0.3369568037358931,0.3413432323178948,0.3414361365259455,0.3409920520131685,0.3412987086223425,0.3407962719076081,0.3414100522406941,0.3409855197088586,0.3411309136499976,0.3417507032753714,0.3426238208556607,0.3444444444444444,0.3443969396939694,0.3451504354711006,0.3458915642364034,0.3468490692980489,0.3466402780459548,0.3482460732984293,0.3499742813053666,0.3532581295689438,0.3548534476699234,0.3581064994841679,0.3599308525156947,0.3616694065864135,0.3646127755794234,0.3648013345465575,0.3674885159838755,0.3674072323327818,0.3613625901488415,0.3592705167173252,0.3629032258064516,0.3752432853250292,0.0,2.4071000523952435,58.87996157573828,195.6445209361963,304.19287895396315,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95763,43126,407.77753412069376,6624,67.96988398441987,5234,54.11275753683573,2116,21.741173522132765,77.39144353273707,79.73115725257988,63.36142006586866,65.0877290858307,77.13502881941264,79.47401109622699,63.26743586402806,64.99567817214803,0.2564147133244319,257.1461563528885,0.0939842018405983,92.05091368266947,113.4826,79.90759402587743,118503.59742280422,83443.07720714413,312.74155,199.89246063760532,326038.4699727452,208196.58572366356,321.16154,154.92083075214478,331758.4140012322,158961.2023021935,3009.37372,1364.6963430439828,3111939.3920407672,1394812.1849679444,1282.11335,559.5455370625338,1323440.368409511,569038.8211358441,2078.9097,859.7515642269776,2137217.610141704,870074.6366747065,0.3803,100000,0,515830,5386.527155582009,0,0.0,0,0.0,26731,278.57314411620354,0,0.0,29681,306.40226392239174,1860619,0,66753,0,0,0,0,0,68,0.710086359032194,0,0.0,1,0.0104424464563557,0,0.0,0.06624,0.1741782803050223,0.3194444444444444,0.02116,0.3258877434135166,0.6741122565864834,25.06551801653198,4.498162218422366,0.3316774933129537,0.2136033626289644,0.2264042797095911,0.2283148643484906,11.27727434567813,5.7946995464485935,22.21292590964832,12616.741315389603,58.83168462795071,13.175334836276283,19.704902533882876,13.00387850229952,12.947568755492046,0.5527321360336263,0.7799642218246869,0.6952764976958525,0.560337552742616,0.1255230125523012,0.732089552238806,0.9402985074626866,0.859375,0.714859437751004,0.1659751037344398,0.4910118130457113,0.6899441340782123,0.6381987577639752,0.5192307692307693,0.1153039832285115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021768184027215,0.0045603332083464,0.0066962926888658,0.0088664547384243,0.0108590659983121,0.0129468284341665,0.0155288363562258,0.0174975003570918,0.0196038369990499,0.0216910861913726,0.0236782786885245,0.0258843565331582,0.0280412244017221,0.030114343937507,0.0318939479842076,0.0336538958154717,0.035653298835705,0.0375444673767618,0.0395721591617812,0.0416354166666666,0.0571977287909151,0.0712439705774643,0.0838193949057949,0.0965411351470727,0.1082782399645715,0.1237746782704326,0.1375013256973168,0.1496068856191418,0.1608620892206807,0.1724448446645655,0.1858522354157022,0.1988427428077006,0.2115560193035085,0.2220644146309487,0.232801266407229,0.2441242862833621,0.254302657392545,0.2635138171197483,0.2727159374291544,0.2808466819221968,0.2879761464497041,0.2954911997756118,0.3021594645095674,0.3086082560674669,0.3142812079152663,0.3203367301727957,0.32553866919962,0.3312895921845981,0.33638352121973,0.3403770102820986,0.3397375568044314,0.3388326442023709,0.3374212421242124,0.3376115830004471,0.3380739114960256,0.3378694158075601,0.3367672618107126,0.3382092779452234,0.3391301382708472,0.3388624324468939,0.3403704814759262,0.3405425727684666,0.3420881358778946,0.3421525066199901,0.3433073911151931,0.3430876843677137,0.3428359019815286,0.3458487405581366,0.3492843258526241,0.3524125259626138,0.3532865464886932,0.3545327903986284,0.3563664102727099,0.3599111519607843,0.3626611461371977,0.3602125147579693,0.3631284916201117,0.3652995577000402,0.3633894622487778,0.3541270445036135,0.0,2.103313339566635,58.840605734556,189.05402130778756,302.0918509777302,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95735,42957,405.525669817726,6671,68.53292944064344,5181,53.61675458296339,2076,21.34015772705907,77.37264048070351,79.72984680126869,63.34029949113111,65.08107559731144,77.11422476808389,79.47064672487095,63.246006149893525,64.98865263676194,0.2584157126196231,259.20007639774667,0.0942933412375879,92.4229605494986,112.70732,79.29304139255004,117728.43787538518,82825.55114905733,307.6072,196.84245575531045,320744.56572831253,205045.24547481103,314.96458,151.64003654861244,324971.1913093435,155387.01050453953,2992.76448,1357.1264113663933,3098906.0636130986,1390506.0342996833,1243.2785,542.8475652546181,1286449.5325638482,554861.0144387421,2048.59802,848.6121967254762,2108518.744450828,862472.8081931565,0.3808,100000,0,512306,5351.292630699326,0,0.0,0,0.0,26326,274.4868647829947,0,0.0,29136,300.3917062725231,1866000,0,66958,0,0,0,0,0,46,0.4700475270277328,0,0.0,0,0.0,0,0.0,0.06671,0.1751838235294117,0.3111977214810373,0.02076,0.3270735524256651,0.672926447574335,24.88980499709644,4.5282160762410895,0.3198224281026828,0.2113491603937463,0.23605481567265,0.2327735958309206,11.304204071376972,5.780752276166302,22.003537834540666,12657.659755947972,58.49014640883584,13.071541774549084,18.55478430966861,13.771828438057122,13.09199188656102,0.5525960239336035,0.7863013698630137,0.7006638503319251,0.5829926410466068,0.1061359867330016,0.7130177514792899,0.9221105527638191,0.8829268292682927,0.6996587030716723,0.1195219123505976,0.4959519456777226,0.7087517934002869,0.640737770649559,0.546236559139785,0.1026178010471204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582278481012,0.0043780973518591,0.006827150349473,0.0089372765680857,0.0112761695594261,0.0132337072703951,0.0154835684579629,0.0174539664393908,0.0195342846628777,0.0215889199398089,0.0236532901347222,0.0256568207718606,0.0276292518405791,0.0297740427197264,0.0319002960991261,0.0341170998914784,0.036040046797188,0.0381184524426926,0.0402024674420296,0.0422659903552717,0.0568630317205086,0.070416640508925,0.0838767850028308,0.0968501371561899,0.1094291888473093,0.1245348443843031,0.1368462362512065,0.1496663793378667,0.1611136028705068,0.1724089861133451,0.1865005438118518,0.1986001276545106,0.2103197042192257,0.2209658370150037,0.2311627446450377,0.2420325014123824,0.252173524849053,0.2615930199831128,0.270891309533275,0.2783574901385194,0.2867644505157384,0.2948068212408853,0.3019552079630287,0.3086625702078633,0.3145511362945489,0.3209897863521981,0.32683323940134,0.3312762437969207,0.3357810759706789,0.3405875521300744,0.3404876997859076,0.3405072174595093,0.3410647352253191,0.3416961897187477,0.3425494891205735,0.3426057903045351,0.3417476958160453,0.3428378911385748,0.3439591585848928,0.3454114459871317,0.3466053536713025,0.347361573791173,0.3483275421777536,0.3499988840033033,0.35051397828802,0.3510137157431746,0.3528090526555214,0.3558068861806447,0.3577272727272727,0.3593897824030274,0.3600616109450031,0.3607400339270568,0.3629704470825966,0.3632973055259552,0.3616602642181205,0.3631946913141367,0.3659620098039216,0.3740349451442503,0.3708298869589192,0.3700575815738963,0.0,1.9942477373303087,59.98921701688456,190.2938499691239,290.85556911974163,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95744,42733,403.7224264705882,6537,67.11647727272727,5146,53.18348930481284,2057,21.171039438502675,77.33281654085012,79.69852020554151,63.319784280511655,65.07096006667592,77.07146731345536,79.43557611702302,63.22269425579494,64.97528111432848,0.2613492273947599,262.9440885184948,0.0970900247167136,95.67895234744128,113.21464,79.59455691678647,118247.24264705884,83132.68394550726,305.62398,195.3716881857316,318612.0592413101,203462.89611102745,311.62435,149.9806063538947,321452.2058823529,153596.82257920707,2964.58964,1348.9474739948764,3065108.581216577,1378160.7459889357,1259.8437,557.1482340585065,1298381.705381016,564650.0366687473,2027.0306,857.7427824442765,2087130.4311497323,870446.5183550991,0.3784,100000,0,514612,5374.874665775401,0,0.0,0,0.0,26162,272.6228275401069,0,0.0,28761,296.404996657754,1864472,0,66962,0,0,0,0,0,47,0.4908923796791444,0,0.0,0,0.0,0,0.0,0.06537,0.1727536997885835,0.3146703380755698,0.02057,0.3325090909090909,0.6674909090909091,24.980488705191544,4.501565062137734,0.3153905946366109,0.216867469879518,0.2370773416245627,0.2306645938593082,10.78050907829884,5.350739364770962,22.094071486354963,12522.306983123772,58.15781141653838,13.16382992498114,18.40819561683345,13.448908690813507,13.13687718391026,0.5433346288379324,0.7634408602150538,0.6820702402957486,0.5737704918032787,0.1154170176916596,0.7020946470131885,0.8944591029023746,0.8740359897172236,0.7211895910780669,0.1269841269841269,0.4902774176821364,0.6960651289009498,0.6215559157212318,0.5320715036803365,0.1122994652406417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0043207935654661,0.0066098081023454,0.0086398796515587,0.0108248891059292,0.0129868807040417,0.0151745377782763,0.0172026544155181,0.019375881883806,0.021687265131424,0.0236625725358321,0.0256497140334124,0.0276898083408735,0.0297734294541709,0.0318293903407859,0.0338404928267251,0.0359465617232808,0.0378165213781652,0.0399492575801688,0.0416697050826622,0.0557788472580358,0.0696358138999612,0.0825372523934859,0.0954478553406223,0.1079676613506761,0.1231639612964627,0.1358709485830646,0.1485305544615581,0.1596453749198889,0.1701449959246707,0.1839844086484624,0.197117725339998,0.2084937466014138,0.2191265554267719,0.2298019801980198,0.2404868432710197,0.2504687709272735,0.2608318793268419,0.2694988760473195,0.2776899640345451,0.2854099366656246,0.2930677066863427,0.2999632601301302,0.3062850150557242,0.3128701552980092,0.3187692079831155,0.3240100250626566,0.3285828907652924,0.3335667146394907,0.3378399809689953,0.3376385256289266,0.3371319121963319,0.3373220257665768,0.3363785090703768,0.3362483798399952,0.3356702359402325,0.3354215568102519,0.3362267376865917,0.336947228017374,0.3387289846527666,0.3389483952053124,0.3391866180434438,0.3396574882471457,0.3398795261661105,0.3400978525463353,0.3417903428093645,0.3422887847261918,0.3446884946270444,0.3489255442619491,0.3493947116916215,0.3521699406121517,0.3550450402430574,0.360932577189666,0.362957885918818,0.3641396134359166,0.3672430127901468,0.3715421060675531,0.3705882352941176,0.3640629312724261,0.3636016787485692,0.0,2.1150213804568314,56.773931311645406,199.00106329436744,287.6013363142188,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95790,43377,410.1367574903434,6708,69.09907088422591,5206,53.87827539409124,2103,21.682847896440126,77.34910350822409,79.67862572348635,63.34642956891118,65.06713768254937,77.08444356608328,79.41189829340505,63.24887628018061,64.97098105577611,0.2646599421408098,266.7274300813034,0.0975532887305661,96.15662677326496,112.83492,79.45613415961304,117794.0494832446,82948.25572566348,310.00218,198.54683457544897,323173.3479486376,206819.5057682942,319.21602,154.0905359080532,330282.7226224032,158581.87097490925,2981.10908,1359.1256151109328,3086548.240943731,1393586.8646461023,1258.20155,554.1621246487142,1301576.0622194384,566712.7989993702,2058.55288,865.949198569116,2123591.1681803945,880913.0739224679,0.3811,100000,0,512886,5354.2749765111175,0,0.0,0,0.0,26481,275.96826391063786,0,0.0,29372,303.7164630963566,1862630,0,66905,0,0,0,0,0,55,0.563733166301284,0,0.0,0,0.0,0,0.0,0.06708,0.1760167934925216,0.3135062611806798,0.02103,0.3215497737556561,0.6784502262443439,24.75283901783708,4.4780262041609245,0.3255858624663849,0.2224356511717249,0.2270457164809834,0.2249327698809066,10.968302023351509,5.539525211384715,22.795066753412563,12655.31072585595,59.18769555208577,13.671301115142755,19.23808483974133,13.222439959676995,13.055869637524705,0.5482135996926624,0.7495682210708118,0.6902654867256637,0.5744500846023689,0.116994022203245,0.6980306345733042,0.900990099009901,0.8378378378378378,0.6953125,0.1610486891385767,0.4946544980443285,0.6684350132625995,0.6378896882494005,0.541036717062635,0.1039823008849557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607096565132,0.0048145632937694,0.0068782907751772,0.0087860966369056,0.0106967096433074,0.0127448186001058,0.0150431113557145,0.0171965096698474,0.0194341415565705,0.0214953653495938,0.0235421874359709,0.0255305175881459,0.0276650189606092,0.0295909755244035,0.0317239388409472,0.0337636851890105,0.0359674265078691,0.0378054976617828,0.0397655835991645,0.04194522545038,0.0567904326591947,0.0710057314981383,0.084168588802684,0.0976365871856577,0.1099976818191397,0.1249471682163989,0.1380198397558183,0.1505614154474311,0.1624410440275732,0.1730849570983257,0.186675419150722,0.198944670912492,0.2115556038699858,0.2216864571715978,0.2319031903190319,0.2430235648476258,0.2533392847179602,0.2622069818427118,0.2715938740782757,0.2796391900090431,0.287315374917591,0.2957810745039311,0.3029165976184276,0.3086677213672755,0.3147875946014893,0.3203611649048365,0.325871830844774,0.3313118701507179,0.3364294424409101,0.3412628099173553,0.3405555630506051,0.3409363579948976,0.3410184414375009,0.3412301013024602,0.3414699451113392,0.3410428545153577,0.3393601343749505,0.3399756666995495,0.3411342057993328,0.3419663152619427,0.3431247419197417,0.3433353826626737,0.3440848917839882,0.3447121970938981,0.3443412203028983,0.3450094458438287,0.3473644945625663,0.3503693605148854,0.3555005305978068,0.3581605699191547,0.360639955991565,0.3631362495326604,0.3672442349343865,0.3690430511856342,0.3708634461772537,0.3692196531791907,0.3744555071561916,0.3822441430332922,0.3836111111111111,0.3720379146919431,0.0,1.8157978967119883,60.93353808738652,196.69099975153787,288.4519694960935,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95664,42945,405.09491553771534,6690,68.65696604783409,5266,54.419635390533536,2117,21.742766348887773,77.31532774038504,79.70693526834188,63.31028192710126,65.0761774240359,77.0478238364956,79.44094090236015,63.211691094766174,64.98114599129002,0.2675039038894482,265.9943659817259,0.0985908323350841,95.0314327458841,112.3144,79.0478645899392,117405.08446228466,82630.73318065227,310.63419,198.41730218044933,324036.9208897809,206733.76837728856,315.20351,151.5788728470898,325547.5623013882,155417.51669057325,3042.26608,1376.2634053672662,3145479.260745944,1404212.5361389515,1262.65015,551.6807372473806,1305371.4563472152,562268.3164764676,2091.16842,872.4636928724389,2150443.6360595417,881119.5985550366,0.3784,100000,0,510520,5336.594748285666,0,0.0,0,0.0,26478,276.1540391369794,0,0.0,29136,300.62510453253054,1865457,0,66900,0,0,0,0,0,58,0.5958354239839438,0,0.0,0,0.0,0,0.0,0.0669,0.1767970401691332,0.3164424514200299,0.02117,0.3202614379084967,0.6797385620915033,24.970837219565,4.542402968910516,0.3239650588682111,0.2117356627421192,0.2312951006456513,0.2330041777440182,11.0061711001742,5.367681567513574,22.547296916955585,12624.133176416788,59.30030812065573,12.979802015661216,19.224743027675373,13.60972469147126,13.486038385847875,0.546524876566654,0.7793721973094171,0.7057444314185228,0.5541871921182266,0.1059494702526487,0.7269260106788711,0.929503916449086,0.8520286396181385,0.7391304347826086,0.1545064377682403,0.4867256637168141,0.7008196721311475,0.6581196581196581,0.5,0.0945674044265593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0042884081185749,0.0068704459193407,0.0090626460488082,0.0113932291666666,0.0136287242169595,0.0157684305005915,0.0180583218426025,0.0199212558163317,0.021955065844717,0.0241833752115276,0.0261125035953486,0.0283938932554215,0.0306146633005306,0.0327941616689203,0.0348140869835031,0.0366490519117189,0.0388296105621522,0.0407564598676819,0.0429317407210531,0.0572992853262005,0.0715594601103653,0.0844511619119591,0.0972165219679031,0.1098563603550358,0.1258257113821138,0.1387189942235814,0.150518736285976,0.1621364515749757,0.173033370184722,0.1866067386664942,0.199690301901503,0.211255646873129,0.2217638239896696,0.2327261514063567,0.2431236413646244,0.2528229814705192,0.2621177847552809,0.2707268887526398,0.2780911112639567,0.2855653745034224,0.2936004308528075,0.3004595305208802,0.3066314589209626,0.313346298772335,0.319301620181993,0.3245456936390847,0.3291583931571712,0.3340974137819392,0.3394257943530281,0.3390294192957158,0.3396117227220744,0.339050410812182,0.3398897138639225,0.3401508277677788,0.3386169576747965,0.3371529098516546,0.3378957215302053,0.3380695904932889,0.3378612665105721,0.3398778522986998,0.3417263341113177,0.3430371770636421,0.3435432876650895,0.3451064651634397,0.3457765453736887,0.3476277895703057,0.34940638689607,0.351478828285694,0.3524214922496185,0.3549500621346712,0.3567831118731247,0.3580986364215623,0.3586174901414985,0.3612145517043827,0.3615717375630858,0.3613754989253914,0.3641129032258065,0.3684794672586015,0.359141433499425,0.0,2.5039216957200696,57.31091419264322,198.1800797540109,300.8379158390007,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95628,43141,407.88262851884383,6725,69.18475760237587,5208,53.87543397331326,2069,21.217635002300582,77.3146043072854,79.73416358294702,63.296484254502126,65.08307049386359,77.06067622115825,79.48044548228111,63.20326004775362,64.99250811806833,0.2539280861271606,253.71810066590683,0.093224206748502,90.56237579525828,111.6973,78.55689615379731,116803.5094323838,82147.9988787147,307.37972,196.62040637421376,320842.7343455892,205021.4531786665,318.27766,153.42302295206764,329336.3554607437,157717.6308562336,2984.91424,1343.419761166931,3090580.5412640646,1374126.5702193128,1217.24887,528.1939968630041,1259299.891245242,538809.8988312864,2034.14834,837.178967604181,2089706.6131258623,845262.2082948617,0.38011,100000,0,507715,5309.250428744719,0,0.0,0,0.0,26236,273.737817375664,0,0.0,29297,302.90291546409003,1867819,0,67004,0,0,0,0,0,65,0.6692600493579286,0,0.0,0,0.0,0,0.0,0.06725,0.1769224698113704,0.3076579925650557,0.02069,0.3207360226468507,0.6792639773531494,25.01486681657072,4.495621460883849,0.3198924731182795,0.2229262672811059,0.2325268817204301,0.2246543778801843,11.181156751589176,5.6887804554901065,21.788816651479586,12628.753387537572,58.5380037230508,13.779202229428334,18.659617902847497,13.427734870117233,12.67144872065774,0.5564516129032258,0.7708871662360034,0.6962785114045619,0.5920726672171759,0.1076923076923077,0.7300380228136882,0.8973105134474327,0.8791469194312796,0.7244094488188977,0.1652173913043478,0.4978165938864629,0.7021276595744681,0.6342443729903537,0.5569487983281086,0.0936170212765957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020163537434265,0.0042388780156372,0.0063852682015673,0.0086673779403546,0.0109049479166666,0.0131391322061519,0.015411919503065,0.0176728981509858,0.0196479528694602,0.0215870805214488,0.0237030503189809,0.0255372478119735,0.027900373445264,0.0299836171988501,0.0321331984557897,0.0342656258077857,0.0362227241643699,0.0383824750830564,0.040224742482572,0.0423550271172298,0.0571327034032945,0.0712961314044478,0.0848165999852986,0.0976315789473684,0.1101435507705298,0.1256074964264916,0.1383247652632026,0.1501992711152788,0.1618140977644667,0.1725889960684899,0.1855467696523155,0.1979322452695233,0.2103216106680611,0.2211426818848993,0.2319883614561405,0.242631064944289,0.252707460184409,0.2615656759131983,0.2711902922328773,0.2793173059276931,0.2872791273939927,0.2950838851580598,0.3015660696741202,0.3080049393964825,0.3129394620195518,0.3187682525599793,0.3244761368611997,0.3298152363271067,0.3343729778698072,0.3394304114867896,0.3396447472965511,0.3396805305229558,0.3396298228055089,0.3393332561639078,0.3392841189958607,0.3390376793799401,0.3381269841269841,0.3378759166186043,0.3390426828221806,0.3397142038535921,0.3414583841149007,0.3429642786658772,0.3448672381350617,0.3456483840686603,0.3479168165791177,0.3497897523750194,0.3502102511649051,0.3530866516403707,0.3566406659904159,0.3585226822896049,0.3620830311820159,0.3637471520161077,0.367105429692444,0.3644959585176147,0.3689311253293187,0.3662595785440613,0.3712640099626401,0.373305954825462,0.3691627521414755,0.3666146645865835,0.0,2.187916782081994,58.04268037796604,188.66857300701724,301.59195617489894,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95652,43005,405.8984652699369,6733,69.12558022832769,5233,54.18600761092293,2078,21.400493455442646,77.29129418892526,79.69292559476564,63.29829466637945,65.0706375834224,77.03995750987535,79.43930831455016,63.20582124285336,64.97940454350898,0.2513366790499134,253.61728021547947,0.0924734235260942,91.23303991341912,112.68708,79.24616881440691,117809.43419897128,82848.41803036729,306.26662,195.6838732809937,319696.0962656296,204086.65086040407,315.20555,152.3715366353819,325984.3286078701,156564.72788553545,3003.2844,1363.9560616995743,3112559.737381341,1398713.358528389,1218.52407,530.8019019851108,1263140.216618576,544156.6428146934,2045.48924,853.4213272602997,2108953.7280976875,866935.6808770761,0.37935,100000,0,512214,5354.974281771421,0,0.0,0,0.0,26150,272.86413248024087,0,0.0,29109,300.9137289340526,1863917,0,66888,0,0,0,0,0,60,0.6063647388449798,0,0.0,0,0.0,0,0.0,0.06733,0.1774878080927903,0.3086291400564384,0.02078,0.3137199434229137,0.6862800565770862,25.05338626121881,4.490560431954142,0.3294477355245557,0.2157462258742595,0.2287406841200076,0.2260653544811771,11.139951993324324,5.619423040206857,22.13547103717812,12587.850788136822,59.01468596127864,13.295833376277969,19.379089349849885,13.245373159151304,13.094390075999474,0.5526466653927001,0.7608503100088574,0.7047563805104409,0.5747702589807853,0.1098901098901098,0.7103235747303543,0.9209809264305178,0.8523002421307506,0.7122302158273381,0.1416666666666666,0.5006353240152478,0.6837270341207349,0.658276125095347,0.5331882480957563,0.1018027571580063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023398802710614,0.0045523674338436,0.0065771444231296,0.0088608881211259,0.0112321826450569,0.0135560421653001,0.0157330179252401,0.0179304429513754,0.0199063471290691,0.0220547580529559,0.0242124046271228,0.0262617340755499,0.0284756085015328,0.030665553803827,0.0325284662792018,0.0347513109311489,0.0366962018757448,0.0388313225491621,0.0408694114097241,0.0427117866599945,0.057286768240433,0.071176427456608,0.084424516711644,0.0971232487395134,0.1097894347986701,0.1250264617468987,0.1377205460837809,0.1501001235567295,0.1613586067545463,0.1724334131337964,0.1861974533967288,0.1988890452936017,0.2106282927678843,0.2214144156967513,0.2323538488669429,0.2430597917105686,0.2528962920758342,0.2617643085513577,0.2702800894651392,0.2787550279041518,0.2857027089604075,0.2924506224843209,0.2986983762273045,0.3052406827641633,0.3115581556574514,0.3175798269541712,0.3237362279239418,0.3286269512583625,0.3335710673392378,0.3385354775674034,0.3383284370536075,0.3381803646989098,0.3385227737865037,0.3381403295398604,0.3383329857904614,0.3369800709884605,0.3356455760500333,0.3367656265445319,0.3385741718674988,0.3390319516871852,0.3404663407295976,0.3405530960274761,0.3411381087619649,0.3419056595305417,0.3432217673970623,0.3447222802255168,0.3442249672681732,0.3462530673881583,0.3464627959413754,0.3499022619380061,0.3532824706473571,0.3554504887377815,0.3553248068886919,0.3573076923076923,0.3615077098800685,0.3569534827669318,0.3595628415300546,0.3595833333333333,0.3576065481230595,0.3583301120989563,0.0,2.072033237245708,57.17127364751428,201.47303507590965,294.8022546232025,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95626,43362,409.8676092276159,6718,69.08163051889653,5290,54.6713236985757,2183,22.378850940120888,77.27514686010801,79.6859733071698,63.27600815666828,65.05627862526497,76.99778109649641,79.41230580466822,63.17370442242672,64.95897598964856,0.2773657636115985,273.66750250158134,0.1023037342415591,97.30263561640128,111.28282,78.31290397040276,116372.97387739737,81894.99087110488,310.03029,198.76399387921785,323530.68203208334,207174.98784767516,322.48265,155.77541657305107,333906.77221676114,160319.32517931098,3045.95656,1385.6028077312076,3149727.772781461,1413428.2807303525,1302.15128,561.6656587757334,1344966.9964235667,570611.0459244695,2153.10044,900.4337579558188,2209791.228327024,905105.3390564852,0.38216,100000,0,505831,5289.680630790789,0,0.0,0,0.0,26395,275.3748980402819,0,0.0,29730,307.5000522870349,1864057,0,66899,0,0,0,0,0,75,0.7738481166210026,0,0.0,0,0.0,0,0.0,0.06718,0.1757902449235922,0.3249479011610598,0.02183,0.3285734483246147,0.6714265516753852,24.761331279693863,4.509161242504809,0.3168241965973535,0.2232514177693761,0.2251417769376181,0.2347826086956521,11.015664156741886,5.469277391201151,23.347153000236688,12672.554323377968,60.11527504079507,14.028696647750252,18.92808314146072,13.38429078396113,13.77420446762298,0.5487712665406427,0.7696867061812024,0.7004773269689738,0.5608732157850546,0.1223832528180354,0.7037037037037037,0.9106699751861044,0.8649885583524027,0.7153284671532847,0.1064638783269961,0.4942499361104012,0.6966580976863753,0.642453591606134,0.514721919302072,0.1266598569969356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607096565132,0.0045407092831152,0.0066460352087666,0.0088979177247333,0.0112185844038283,0.0133106566726413,0.0153974793000774,0.0174781268185112,0.0197110813491049,0.0219221002621231,0.0239094088806375,0.0262476628793326,0.0282624799374459,0.030511060259344,0.0325701952765988,0.0345120109246653,0.0364047226627691,0.0384287821191915,0.0407014257466958,0.0427182845938842,0.0575188402161529,0.0725056849738543,0.0853670066919497,0.0981520112944349,0.110267163879528,0.1264246070414778,0.1392983537563899,0.1508725919766314,0.1619324871031958,0.172397115250266,0.1856741876281982,0.1984708816831146,0.2103163356515293,0.221647110428775,0.2324305831457202,0.2432963810454757,0.2535532824495826,0.2622088824697599,0.2708907149848626,0.2786934200098774,0.2871099868883655,0.2946165667562145,0.3016460758832675,0.3085316029800529,0.3150699939135727,0.3202544152155119,0.3256584313085812,0.3313104784731695,0.3362083522764175,0.3418101907623876,0.3421393841166937,0.3419770635238266,0.3414734047060817,0.3412475373739715,0.342321550876984,0.3416517028101355,0.3420526966612765,0.3420515857349651,0.3429557845801501,0.3443727547318189,0.344121184784243,0.3446294094332144,0.3464998948917385,0.3463679626470324,0.3468367272990796,0.3474800366540123,0.3460834239285918,0.3486319784912225,0.3519480060753771,0.3537730196141094,0.356737458806298,0.3569057815845824,0.3575044292584156,0.3609458428680396,0.3619986726083246,0.3679211254057953,0.3641001855287569,0.3670419651995906,0.370976692563818,0.3684007707129094,0.0,2.5722072422907045,60.63151540474144,198.6425408878858,296.69222012637965,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95685,43236,409.3118043580498,6574,67.53409625333124,5132,53.03861629304489,2028,20.80785912107436,77.28391542799022,79.68093025461134,63.28504443165552,65.05923093996103,77.03478671761248,79.43254875919654,63.19285404334703,64.97017904007379,0.2491287103777466,248.38149541480448,0.0921903883084951,89.05189988723805,113.3836,79.77674745186428,118496.7340753514,83374.35068387342,308.62171,196.9999070494069,321966.5464806396,205311.0592563169,313.51485,150.62981546589472,323985.68218634056,154661.96725387103,2950.95028,1327.7018584737807,3051530.3757119714,1355080.1259066532,1240.91117,533.754180107558,1282456.7278047765,543409.8658175874,1996.24088,829.9924856317442,2050738.56926373,837825.8103149765,0.38085,100000,0,515380,5386.215185243246,0,0.0,0,0.0,26333,274.5884934942781,0,0.0,28909,298.4375816481162,1860237,0,66767,0,0,0,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.06574,0.1726138899829329,0.3084879829631883,0.02028,0.3118854829381145,0.6881145170618855,25.274581022192788,4.532339885348955,0.3230709275136399,0.2151208106001559,0.2328526890101325,0.2289555728760717,11.217824113338162,5.528408675160885,21.40329914140069,12616.266157166689,57.54991730116492,12.960934295588306,18.681294849071183,13.20066737138833,12.707020785117102,0.5409197194076384,0.7744565217391305,0.6857659831121834,0.5414225941422595,0.116595744680851,0.7,0.9187675070028012,0.848780487804878,0.683206106870229,0.1633466135458167,0.4880581516095534,0.7054886211512718,0.6322115384615384,0.5016077170418006,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989825905433,0.0044324083089905,0.0066804065098429,0.009085273523643,0.0113244406458899,0.0137213756010105,0.0160844510173899,0.0181394778771908,0.0203019207560292,0.022434846746435,0.0242941562705187,0.0262736072008384,0.0282882957047891,0.0303720498814799,0.0326613194594985,0.0344492362425408,0.036206128306892,0.0378901911118954,0.0398718442158259,0.0415867589427165,0.0567864865711868,0.0708475108621682,0.0842420108096762,0.0968610903580861,0.1089205049183096,0.1241796163780327,0.1363872872266998,0.14853826082326,0.1598627457268383,0.1706327483497021,0.1833575855564538,0.1955471289274106,0.2072697970206464,0.2187588986485006,0.2295999911819494,0.2414987510407993,0.2511489047666969,0.2605667140055454,0.2692648663393344,0.2776694351397237,0.2861051533244449,0.2943238711644213,0.30148768566412,0.3082918042629841,0.3137402907302344,0.3199555582988704,0.3251610638991251,0.330069395810785,0.3352210875537815,0.3404485630932108,0.3407274638491705,0.3407933492994192,0.3409094109529241,0.3406396650061367,0.3404856433361585,0.340008279795765,0.3395987194522806,0.3401631942734243,0.3409067579127459,0.3416811262365168,0.3432255154396977,0.3442873595170962,0.346170069174962,0.3470471732084983,0.3491462941404734,0.3497521441498151,0.3507714285714285,0.3546023122117632,0.3558493617919054,0.3591616386154335,0.3597535934291581,0.3660234943921756,0.3706517644103981,0.37140918344266,0.3709858103061986,0.3715769593956562,0.3760330578512397,0.3743662543094707,0.3749651519375522,0.3770744886144346,0.0,2.349986205212602,56.15686873683932,185.98333642947875,298.8887922763562,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95655,43251,407.3702367884585,6767,69.55203596257383,5273,54.53975223459307,2068,21.243008729287546,77.35161970545354,79.75685995009327,63.31721993396855,65.09403644082917,77.09977163864197,79.5063610316923,63.22489839106477,65.00477603782205,0.2518480668115757,250.4989184009787,0.0923215429037824,89.2604030071169,113.92744,80.11154429900512,119102.44106424128,83750.50368407833,314.31154,200.401500418049,328019.4657885108,208935.21553295592,320.14897,154.4428121074492,330886.7074381893,158497.30456873024,3015.45196,1355.9310239137528,3120814.3432125878,1385911.895785638,1275.11507,553.1720583227788,1319908.2849824892,565171.9808925604,2020.88462,832.706230245745,2078012.7750771,841002.9098944573,0.38092,100000,0,517852,5413.747321101877,0,0.0,0,0.0,26893,280.5394386074957,0,0.0,29564,305.2637081177147,1856713,0,66549,0,0,0,0,0,48,0.501803355809942,0,0.0,1,0.0104542365793737,0,0.0,0.06767,0.1776488501522629,0.3056007093246638,0.02068,0.3166293393057111,0.6833706606942889,25.22047700935981,4.48305399884404,0.330931158733169,0.218092167646501,0.2345913142423667,0.2163853593779632,11.471227690164405,5.976317854977266,21.901916720887165,12639.213730673018,58.979108046291245,13.482424830994194,19.408512713893927,13.619208083974415,12.468962417428711,0.5596434667172387,0.76,0.6808022922636103,0.5901374292643492,0.1393514460999123,0.7386706948640483,0.906801007556675,0.8827751196172249,0.7419354838709677,0.1826086956521739,0.4996201570017726,0.6826029216467463,0.6171816126601356,0.545929018789144,0.128430296377607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045327789889976,0.006992510199525,0.0093879541575225,0.0115147138105361,0.0138317376247708,0.0160505786978024,0.0182883867212629,0.0204294478527607,0.0224521151285465,0.0245090998625274,0.0265840475162874,0.0287219700945735,0.0308666158065114,0.0331773625442864,0.0354042729294914,0.0375295385763442,0.0396972874212334,0.0418652073492998,0.0438767530368593,0.0581695453643041,0.0715751560078736,0.0847030669437622,0.097689296687571,0.1092712785604981,0.1242988082386063,0.1363501231631699,0.1476610212847596,0.1600552025162077,0.1710174496644295,0.1841336251981409,0.1970944467315234,0.2090218361526571,0.2196123072208053,0.2308183579985905,0.2418612900007759,0.2527229464794396,0.2616991815920118,0.2711431490521058,0.2789363383378568,0.28651906348325,0.294605081695145,0.3020351690455636,0.3079253688446062,0.3132996673869237,0.3186732005220518,0.3238025018432661,0.3299798025989863,0.3354394397498514,0.3397153128003897,0.3397619527940286,0.339791151415224,0.3404599707240175,0.3406285640040999,0.3412149116292886,0.340484789128971,0.3393571439864662,0.3402415411374749,0.3416525734980098,0.3424674652337683,0.3440775533929609,0.3445632199806359,0.3454080456155797,0.3462990683437967,0.3463153600652701,0.3472258332900005,0.3483468958060661,0.3506061177061742,0.3517057606675782,0.3542360780580675,0.3585670065549891,0.3600696092390444,0.3617700444388809,0.3622507014483961,0.3645647896561416,0.3657573582196697,0.3705764178643177,0.3756838905775076,0.3761943761943762,0.3839150227617602,0.0,2.268598460339416,58.16742701233445,187.28990458669384,308.90023203885744,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95790,43152,407.4746842050318,6818,69.97598914291679,5313,54.91178619897693,2198,22.63284267668859,77.3507064425629,79.68019312595901,63.34838135415546,65.07043238734535,77.07896516137966,79.40709028550582,63.24896126973342,64.97298805317152,0.2717412811832389,273.1028404531912,0.0994200844220358,97.44433417382936,112.41384,79.15544500424802,117354.46288756657,82634.35118931832,311.32848,198.9176220085752,324457.54254097503,207106.1927221789,320.2847,154.73760232741873,330785.6770017747,158864.87174026575,3075.86452,1398.3867569323534,3179982.127570728,1428913.9318561426,1297.7655,568.8556802228691,1338991.773671573,578109.2237753692,2164.54464,896.370646645056,2229685.979747364,909612.0975212612,0.38015,100000,0,510972,5334.293767616661,0,0.0,0,0.0,26555,276.6363921077357,0,0.0,29472,304.0922852072241,1868478,0,66993,0,0,0,0,0,56,0.5846121724605908,0,0.0,0,0.0,0,0.0,0.06818,0.1793502564777061,0.3223819301848049,0.02198,0.3236849429446145,0.6763150570553855,24.812723707375604,4.515623012641881,0.331451157538114,0.2062864671560323,0.2243553547901374,0.2379070205157161,11.253526333375945,5.717456781271954,23.348210286215515,12626.037914703014,60.0694100788592,12.888898944463731,20.000732556000617,13.257941198423485,13.921837379971366,0.54394880481837,0.7609489051094891,0.6927881885292447,0.5738255033557047,0.120253164556962,0.7240618101545254,0.9243697478991596,0.89171974522293,0.7376425855513308,0.1492537313432835,0.4820435002529084,0.6820027063599459,0.6201550387596899,0.527448869752422,0.1124497991967871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0046228710462287,0.0069509980009538,0.0089285714285714,0.0112351553603383,0.0134178993555743,0.0156434715258244,0.0175832474410915,0.0197226565294255,0.0217767271462049,0.0237619501398665,0.0258780795632945,0.0280458352602641,0.0301314583955281,0.0321629285898427,0.0342779218364205,0.0362674999741315,0.0383363396985341,0.04042869159752,0.0421841653219509,0.0565752266869789,0.0706914398636568,0.0839989936473992,0.0975596939633428,0.1097913153456998,0.125306553911205,0.1378776471087263,0.1506044610931381,0.1615103766333589,0.1720021005926672,0.1863308578193951,0.198979757260043,0.2114778678371976,0.2226591944417133,0.2323109058927001,0.2424141859976327,0.2522287599179816,0.2619315117742225,0.2706375743836781,0.2791961823237929,0.2871401506399889,0.294175369734352,0.3011486638354252,0.3072030853255402,0.313454395377631,0.319451116613084,0.3250006252657379,0.33041653418124,0.3353795943740772,0.3396579686449282,0.3404730511530285,0.3404372411705625,0.3398148539544321,0.3396701388888888,0.3397082224172033,0.3383907340645854,0.3372371657541855,0.3375572619714596,0.3384884438653042,0.3397440493260683,0.3401224682053697,0.3408440629470672,0.3410658174993146,0.3414370123133823,0.343333413979145,0.3450983481709078,0.3470720202485043,0.3487410986775178,0.3522316043425814,0.3558284662773022,0.3587912847206227,0.3625074240051833,0.3664616173266692,0.3671220117975784,0.3723059317184818,0.3744578313253012,0.3771339075959279,0.3757056240853021,0.3879579664867935,0.3896972080220212,0.0,2.188388755810577,59.863067764078544,199.0726779430593,300.6972382800729,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95739,43112,407.4515087895215,6640,68.18537899915394,5224,54.02187196440322,2073,21.26615068049593,77.31652017658898,79.67557287332816,63.31665033110207,65.06171044374727,77.06075632979159,79.42255842504564,63.2218358974151,64.97091948109743,0.255763846797393,253.01444828252784,0.0948144336869702,90.79096264984798,112.09484,78.87620605945912,117083.77985982723,82386.70349539803,310.8852,198.5139808474138,324156.13281943614,206783.67316079527,317.50471,152.69321036163794,328350.4110132757,157011.09253201427,3008.32268,1364.7575355044469,3111301.350546799,1394587.0079115566,1262.16873,551.2885171175471,1304335.5267968122,561816.5816621716,2042.0082,851.5918059759898,2096530.1287876412,857805.2126828925,0.38107,100000,0,509522,5321.989993628511,0,0.0,0,0.0,26540,276.63752493759074,0,0.0,29286,302.6039545013004,1865505,0,67027,0,0,0,0,0,57,0.5953686585404067,0,0.0,0,0.0,0,0.0,0.0664,0.1742462014852914,0.3121987951807229,0.02073,0.3135933467163751,0.6864066532836249,24.95085753982292,4.5153669133941845,0.3346094946401225,0.2128637059724349,0.2226263399693721,0.2299004594180704,11.318965358313765,5.711091335558391,21.915608931978635,12629.234314859328,58.99130952248328,13.071267554743129,19.86308816344696,12.88060866417372,13.176345140119466,0.5610643185298622,0.762589928057554,0.7265446224256293,0.586414445399828,0.109075770191507,0.7127578304048893,0.892128279883382,0.8961038961038961,0.70703125,0.1290322580645161,0.5103448275862069,0.7048114434330299,0.6656298600311042,0.5523704520396913,0.1038824763903462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020563000779975,0.0044910331403777,0.0065770109109363,0.0087078451893473,0.0107421875,0.0129142647627971,0.0150020907060467,0.0172278218600328,0.0196419259516773,0.0216534425390325,0.0238495611516692,0.0258040004928738,0.0279705897475448,0.0297079660598072,0.0320178243558269,0.0338795668705571,0.0358370253819717,0.0377477879319108,0.0398856548856548,0.0419236539423237,0.0566825713360966,0.0701743370795923,0.083448695360349,0.096301670925476,0.1082511730901038,0.123614401760027,0.13694618910202,0.148750212910918,0.1598623828705138,0.1708617655894596,0.1838581447208247,0.1961340317762673,0.2079635430261898,0.2195031273236233,0.2302001453200343,0.2408548751829025,0.2515551882419951,0.2615575061895115,0.2702451097260538,0.2789631700776935,0.2869890282857275,0.2947845009125368,0.3020670549794005,0.3082597639382017,0.3151241095957017,0.3206913994546778,0.3265367466559791,0.3322636103151862,0.3381861513353884,0.3431310410394549,0.3432855930262324,0.3428145982986116,0.343312047920434,0.3429279533892778,0.3437667600262201,0.3427084452768779,0.3409209879284909,0.3416482683626058,0.3427767869392235,0.3431354959092866,0.343864667030465,0.3446511443417556,0.3450880552107223,0.3470734828584899,0.3481166903940352,0.3482077542062911,0.3486390667886551,0.3500661334005164,0.3514976796512445,0.3544897796866301,0.3567483682504906,0.3604161109629234,0.3586599241466498,0.3600364824808087,0.3614173970408067,0.3607814934675776,0.3619327861235868,0.3666938442723196,0.3640399556048834,0.3630057803468208,0.0,2.12104880599316,57.69082823583701,198.1039069291566,296.6638289668988,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95674,43324,408.3031962706691,6751,69.31872818111503,5240,54.14219119091916,2105,21.62551999498296,77.40264542862671,79.78352919134723,63.35728834693722,65.1122314431825,77.15097884696867,79.53273204581474,63.264951016671525,65.0228106077969,0.2516665816580428,250.79714553248775,0.0923373302656926,89.42083538559586,113.48964,79.83813500204937,118621.19280055189,83448.09979937013,315.04098,201.88024982416363,328669.7639902168,210396.53340926048,325.43222,156.52767742123524,336165.17549177416,160526.1825089913,2993.58268,1361.789813002268,3096093.400505885,1390788.62022296,1277.788,558.534061784336,1318930.7962455838,567638.2412186132,2068.20096,857.9308118018073,2126867.9265004075,867287.0452830299,0.38127,100000,0,515862,5391.872400025085,0,0.0,0,0.0,26952,281.048142651086,0,0.0,30050,310.0842444133202,1858838,0,66635,0,0,0,0,0,51,0.5330601835399377,0,0.0,0,0.0,0,0.0,0.06751,0.1770661211215149,0.3118056584209747,0.02105,0.3236701379116239,0.676329862088376,25.04095896349378,4.565978392114039,0.3169847328244274,0.2169847328244274,0.2379770992366412,0.2280534351145038,11.317150747573754,5.718488593596281,22.27330898280067,12684.643185900271,59.21878219512288,13.492975411840032,18.69029506328472,14.067001458870322,12.968510261127811,0.5570610687022901,0.7906772207563765,0.6959662853702588,0.5982357658380112,0.0987447698744769,0.7132132132132132,0.9308641975308642,0.86,0.7083333333333334,0.104602510460251,0.5038382804503583,0.7131147540983607,0.6439333862014275,0.5651720542231491,0.0972803347280334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0046216060080878,0.0068167985392574,0.0092115820155794,0.0113584364608861,0.0136753355192147,0.0156697625577293,0.0177177207826007,0.0198661284553676,0.0221153354142148,0.0239654765931711,0.0263738745675362,0.0285009253547193,0.030824527796659,0.0329959451512056,0.035099686831416,0.0371931205152365,0.0393288158809551,0.041455195939762,0.0435657185737959,0.0579374033680163,0.0720186800414646,0.0855152004869193,0.0978288311032567,0.1097235552836696,0.1256731735703327,0.1389245577357769,0.150867070483409,0.1626468042360836,0.1732817141570238,0.185420906966476,0.198153839494416,0.2099064810787299,0.220940656841737,0.2317456825431745,0.2425077772980393,0.2531239201435721,0.2626600763873287,0.272356526270476,0.2810820699275114,0.2893776700150098,0.2963485932339864,0.3040017948445452,0.3094950413322008,0.31533377796641,0.3211842299552099,0.3264119808985674,0.3304930856264841,0.3356114829074184,0.3414505725944451,0.341284551535176,0.3411054725003429,0.3408392177782769,0.3408416625860529,0.3411320195584531,0.3400513400360602,0.339158074514517,0.3396176880794159,0.341288375978044,0.3417516218721038,0.3422742161909218,0.3437112305783659,0.34455482739909,0.3451722291629484,0.3453431077995433,0.3471330933375072,0.348397042450541,0.3499450117831893,0.3540626099190995,0.3547579298831386,0.3579086637164104,0.3603651700389728,0.3612988817992292,0.3664151231038951,0.3696575148598924,0.3743523316062176,0.3723175965665236,0.373031893419459,0.3768115942028985,0.390068233510235,0.0,2.39782364982796,58.37332253713761,202.6866741113026,289.085213895129,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95729,43705,412.66491867668105,6708,68.99685570725694,5172,53.4738689425357,2100,21.56086452381201,77.33907921770925,79.70561876622516,63.32552877917672,65.0752612605607,77.07689923622607,79.44472966541053,63.22856382337497,64.98159458248551,0.262179981483186,260.889100814623,0.0969649558017451,93.6666780751807,112.1923,78.91259972664174,117197.81884277493,82433.32712829106,310.96854,200.0652960685489,324293.484732944,208442.2338774549,319.74985,154.32020464367625,330841.2811164851,158704.43591468688,2982.77876,1363.1249728344228,3085413.573734187,1393498.07564523,1256.29557,558.4013879317748,1298531.1974427812,569545.4090008144,2067.94596,870.7214626648199,2125808.60554273,878846.0915839884,0.38418,100000,0,509965,5327.1735837624965,0,0.0,0,0.0,26548,276.739546010091,0,0.0,29490,304.86059605762097,1864573,0,66878,0,0,0,0,0,65,0.6790000940153976,0,0.0,0,0.0,0,0.0,0.06708,0.174605653599875,0.3130590339892665,0.021,0.3269940391711609,0.673005960828839,25.035460624107557,4.514948461455526,0.324245939675174,0.2099767981438515,0.2324052590873936,0.2333720030935808,11.074521557302209,5.556700868982455,22.55139682069432,12729.222601138035,58.79940404935507,12.95540435667744,18.95159137549073,13.391347550506222,13.501060766680684,0.5496906419180201,0.785451197053407,0.689922480620155,0.5782029950083195,0.1143330571665285,0.712143928035982,0.9287671232876712,0.8606741573033708,0.7019607843137254,0.1821561338289963,0.493225638353309,0.7128987517337032,0.6282467532467533,0.5448785638859557,0.0948827292110874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019243234483876,0.0042584255992213,0.0064756452807973,0.0085961632254917,0.0107219515172476,0.0131990345150678,0.0153979503390608,0.0175397400688113,0.0195300517392993,0.021968905549069,0.0238444419375019,0.025769807522442,0.0279331907191048,0.0300535751081805,0.0321957966885503,0.0344877509022657,0.0366107594608874,0.0387309692082568,0.0407537202458326,0.0430284529552108,0.0579396900973144,0.0721318336385038,0.0855552177149627,0.0985289014605831,0.1105030053780449,0.1254085615460286,0.1384662719884567,0.1507814829010689,0.1628694778687298,0.1741117895120878,0.1878610225019398,0.199995668511159,0.2117839072955769,0.223194939922523,0.2342700464686061,0.2448115299334811,0.2547964174837513,0.2646270907903919,0.2732814202687976,0.2814688320172372,0.289449620927137,0.2972954003088297,0.3052184609561659,0.3111092481257036,0.3166945799655331,0.3223269666240032,0.3282565781253904,0.3327871351268958,0.3371424139402009,0.3416701824702036,0.3418543669737107,0.3420639942773819,0.3425175199875915,0.3428964319316783,0.3428630958581995,0.3415449748435391,0.3407628166513426,0.3413297793573226,0.3418904551222691,0.3423874067699369,0.3429527551653475,0.3435096344461185,0.3457753718973584,0.3476163768928771,0.3493561198700204,0.3502687751161213,0.3514518666857388,0.3539792278309183,0.3560504616252026,0.3570573207727926,0.3620492141318792,0.3627109563353871,0.3630638081302882,0.3679803334101559,0.3723424270931326,0.3737517831669044,0.3771278242030331,0.3745142155860094,0.3768075639599555,0.3827493261455525,0.0,2.118620485900733,58.81914868699252,199.751423420063,286.5726506557438,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95694,43097,405.34411770852927,6641,68.20699312391581,5248,54.35032499425251,2133,21.903149622755866,77.30793472821749,79.68259127141503,63.31631099018998,65.06969416684353,77.03563579039137,79.41033361929166,63.21545570586539,64.97111570699512,0.2722989378261218,272.25765212337194,0.1008552843245951,98.57845984841164,113.15766,79.65084689914032,118249.48272618972,83234.94356923141,313.54752,200.63573036278495,327140.0505778837,209147.7798588777,317.40378,152.95892228391352,328447.40527096787,157396.30678960495,3025.77884,1379.9025326696938,3133977.1772524924,1414055.6369590764,1294.04737,564.3391034791865,1337034.098271574,574519.5995013256,2103.28154,886.8346956048426,2161369.406650365,897299.3838344765,0.37946,100000,0,514353,5374.976487554079,0,0.0,0,0.0,26775,279.25470771417224,0,0.0,29315,303.14335277028863,1857421,0,66738,0,0,0,0,0,57,0.5956486300081509,0,0.0,0,0.0,0,0.0,0.06641,0.1750118589574658,0.3211865682879084,0.02133,0.315616516645235,0.684383483354765,24.982403464082264,4.49649482944116,0.3208841463414634,0.2162728658536585,0.2263719512195122,0.2364710365853658,11.010555565267662,5.591395775360336,22.80161912117333,12634.436806759142,59.405100138074346,13.463701815339952,19.103810519286355,13.138966269395487,13.698621534052569,0.5449695121951219,0.7700440528634361,0.6983372921615202,0.5614478114478114,0.1152296535052377,0.7150375939849624,0.9553805774278216,0.8692660550458715,0.6653696498054474,0.14453125,0.4872383869321082,0.6763925729442971,0.6386217948717948,0.5327604726100966,0.1076142131979695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0044890762433626,0.006796579393177,0.0093138051515397,0.0115938491579204,0.01380799152784,0.0159068430014989,0.0183460949464012,0.0204154654562554,0.0227349499953936,0.0250030754090294,0.0274537987679671,0.029567238471348,0.0317090759245905,0.0337952882660695,0.0356356418447414,0.037539373342175,0.0399601333042638,0.0419839387508842,0.043928321988137,0.0585476424258884,0.0726718931535812,0.0860970926755568,0.0985632546594303,0.1103438096342607,0.1259015630618244,0.1385405393935536,0.1503289543722188,0.1616963532039021,0.1728055963863824,0.1852729544573226,0.1981063680138505,0.2102120717781403,0.2218856286704797,0.2321852992957746,0.2434354849431629,0.2536578832825527,0.2632289720677935,0.2713393870601589,0.2786053120058666,0.2862917236107572,0.2936179175735449,0.3005316944355631,0.3067266726672667,0.3135866457398012,0.3181980914287125,0.32435855634421,0.3297022883236817,0.3339177413280347,0.3385287112992855,0.3388228941684665,0.3382895009318699,0.3384771917924368,0.3382297497172356,0.3375689783743475,0.3362676867769738,0.3361352549536809,0.336764487553818,0.3382688905302575,0.3382548168347027,0.3386771659476668,0.3390524662518142,0.3408430538594348,0.3424432966539412,0.3429262394195889,0.3438017397703082,0.3454936854190585,0.3499366687777074,0.3514760147601476,0.3537643436887769,0.3552068473609129,0.3583074117773249,0.3587489649022231,0.358822169120481,0.3625035670122705,0.3601628937597317,0.3618551966937088,0.365015166835187,0.3648208469055374,0.3742447129909365,0.0,1.8236896406004,58.90648510232734,199.70985526983745,296.3147990054567,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95713,43132,408.12637781701545,6685,68.77853583107833,5202,53.84848453188177,2078,21.376406548744686,77.38171245272493,79.75453079066914,63.34258245905804,65.09454258843783,77.12646021036933,79.49761193187078,63.25018169334605,65.0032292029289,0.2552522423555956,256.9188587983575,0.0924007657119929,91.31338550892563,113.30088,79.72533132798931,118375.64385193234,83296.24118770628,311.38333,198.9739700027414,324716.76783717994,207272.57530611457,317.89886,152.6519575820212,328486.59011837473,156707.4039633437,2992.96964,1349.2541220256337,3101417.571280808,1384312.588045653,1278.13237,552.8186789322804,1323829.6156217025,566092.2305896088,2044.82866,838.5631329810968,2106587.025795869,852873.6586746284,0.38049,100000,0,515004,5380.711084178744,0,0.0,0,0.0,26618,277.53805648135574,0,0.0,29256,302.132416704105,1862500,0,66758,0,0,0,0,0,72,0.7313531077283129,0,0.0,0,0.0,0,0.0,0.06685,0.175694499198402,0.3108451757666417,0.02078,0.316113337149399,0.6838866628506011,24.949432856919746,4.526035503789272,0.3304498269896194,0.2106881968473664,0.2285659361783929,0.2302960399846213,11.18198008683819,5.686063573891604,21.771884931299198,12634.097371496406,58.50098101415972,12.82235360212178,19.525603107895325,13.19497911983856,12.95804518430404,0.5549788542868128,0.7700729927007299,0.6957533449680047,0.5870479394449117,0.1243739565943238,0.7223053892215568,0.9234972677595628,0.8589743589743589,0.7276264591439688,0.1551020408163265,0.4971546818416968,0.6931506849315069,0.6346922462030375,0.5482832618025751,0.1164742917103882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019547075028358,0.0041865604314286,0.0064334131590696,0.0084208601669951,0.0107512663506723,0.0126272912423625,0.0149477440734132,0.0171709747233451,0.0195352831133782,0.0215068072474152,0.0237126190500599,0.0257594891222882,0.0278994673083647,0.0299134734239802,0.0320113928361351,0.0341494179193978,0.0358751825346686,0.0380819956210893,0.039873536202342,0.0416523379289503,0.0568319478674965,0.0710487197202855,0.0844349322254395,0.097309294399798,0.1093697266284171,0.1246444545483383,0.1368207761346035,0.1494049773274008,0.1609809241022793,0.1721541794470303,0.1858691202137516,0.198662236316604,0.2118009112756772,0.222977625725497,0.2327218336192864,0.2432193069854976,0.253498979580457,0.2636278776836825,0.2721054482343999,0.2799931287219422,0.2879212182929087,0.2951287388040504,0.3020525082266045,0.3080943077347205,0.3137004774574479,0.319893500314322,0.3244511165321824,0.3296341075405663,0.3347707289279101,0.3394056114709335,0.3394543546694648,0.3398222307702875,0.3397251023480255,0.3398543934260794,0.3400536240686151,0.3390213376476693,0.3387076398319805,0.3397705513640901,0.3409864524474096,0.3419323826309886,0.3417695473251029,0.3434297561457202,0.3451595389241563,0.3467115830804926,0.3467012263901888,0.3470346904860822,0.3480212506037103,0.349779156094352,0.3508956059333893,0.3548924688516784,0.3590059279525763,0.3619428876434481,0.3646025583911411,0.3679463459759482,0.3692001138627953,0.3691588785046729,0.3766816143497757,0.3740238388820386,0.3785674314493564,0.3867033831628639,0.0,1.851094860457328,59.22510796396994,190.6764352632805,294.5669426820523,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95859,43341,408.47494757925705,6792,69.7274121365756,5306,54.78880438978083,2100,21.58378451684245,77.44506122741345,79.72320175683885,63.40474875222951,65.08439664305243,77.18370889732275,79.45951912919837,63.3096261120874,64.99015612334831,0.2613523300907019,263.6826276404776,0.0951226401421081,94.2405197041154,112.50668,79.20404988533866,117366.84088087712,82625.57494375974,310.20586,197.81691350527828,323058.06444882584,205814.04302702748,320.51428,154.27183817381805,330123.32696982025,157731.90264696686,3066.64972,1380.9165214596435,3169634.4005257725,1411339.4922129335,1303.70882,562.0525846823729,1346683.3056885635,573058.5208448203,2073.91982,862.3250984100388,2134592.4534994108,877598.0817537026,0.38241,100000,0,511394,5334.856403676233,0,0.0,0,0.0,26518,276.0512836562034,0,0.0,29604,304.6140685798934,1868717,0,67127,0,0,0,0,0,43,0.448575511949843,0,0.0,0,0.0,0,0.0,0.06792,0.177610418137601,0.3091872791519434,0.021,0.3103737925241495,0.6896262074758505,24.861938392434908,4.536209812881483,0.3098379193366001,0.2176781002638522,0.2344515642668677,0.2380324161326799,11.122470238306486,5.516331658343567,22.473694636045582,12656.215292019882,59.85469888840231,13.591386295236182,18.50563901059517,13.811442559801277,13.946231022769677,0.5452318130418394,0.793073593073593,0.6745742092457421,0.5795819935691319,0.1163895486935867,0.7102661596958175,0.907859078590786,0.8491484184914841,0.7636363636363637,0.1538461538461538,0.4908544224505136,0.7391857506361323,0.616382806163828,0.5273477812177503,0.106679960119641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022470090487661,0.0045280037277525,0.0066110339373168,0.0088404855669684,0.010892759160282,0.0130022077301075,0.0151959586083272,0.017477846778223,0.0199021740240378,0.0219529652351738,0.0240835551914806,0.0260194453560879,0.0283985867466414,0.030632187454998,0.0326289652898692,0.0347432959682913,0.0369297909966183,0.038722980954552,0.0409127243659617,0.0425757717638979,0.0572221005766002,0.0705249412379211,0.0843148956664677,0.0975005771127573,0.1095061754371199,0.1247361533265788,0.1375692187152583,0.1493514082038097,0.1609639068081249,0.1714680136121396,0.1852150364304597,0.1977130887338847,0.2100601350324555,0.220536221125715,0.2304296257248286,0.2417558104804363,0.252209282888505,0.2624897486883938,0.2717454129220168,0.2801711318035187,0.2877027480086475,0.2951245177130831,0.3024678213136475,0.3089833836134655,0.3154170156464319,0.3212847448860207,0.327022526075905,0.3322556831199246,0.3378858164666857,0.3427798310454065,0.3427374828301328,0.3424248676157073,0.341872766663853,0.3409985438502905,0.3401186063750926,0.3388064944784714,0.3382489934475408,0.3391021022987753,0.3397700521988332,0.3406415302687588,0.3407120250201322,0.3424757761518687,0.3445427481236111,0.3453158554044381,0.3460234241600731,0.3477185123450359,0.3484366117111995,0.3524911422569216,0.3552223190932868,0.3586414377325627,0.359118291347207,0.3616226314384841,0.3640500568828214,0.3640769230769231,0.368830675778284,0.3726618705035971,0.3708876474239603,0.3735440931780366,0.3775596072931276,0.3864085341762149,0.0,2.2325299007083963,58.02209337353692,202.69731415014616,300.5227776472529,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95673,42829,404.44012417296415,6709,68.79683923363959,5233,54.00687759346942,2055,21.04041892696999,77.29747507811412,79.70172472069613,63.28577397120039,65.06601868786198,77.03983268076176,79.44612985910524,63.190984551586176,64.97491048007072,0.257642397352356,255.5948615908932,0.0947894196142158,91.10820779126529,112.45234,79.11990804691631,117538.21872419596,82698.26183658534,308.57332,197.16415161430228,321805.775924242,205358.7878027196,316.10389,152.2190743030383,326002.5189970002,155740.04191310774,3000.7802,1361.8687256594526,3097099.1606827425,1384435.276657703,1269.33108,558.1187826592316,1306994.084015344,563781.5847594009,2016.05144,844.5044019523984,2065181.6081862173,846813.3211186668,0.37891,100000,0,511147,5342.64630564527,0,0.0,0,0.0,26424,275.4382114076072,0,0.0,29234,301.1194380859804,1862620,0,66893,0,0,0,0,0,53,0.5539702946494831,0,0.0,2,0.0209045394207352,0,0.0,0.06709,0.1770605156897416,0.30630496348189,0.02055,0.329153605015674,0.670846394984326,25.06841697586133,4.433340453949626,0.324479266195299,0.2176571756162812,0.2339002484234664,0.2239633097649531,11.092707051927343,5.751533454619755,22.01396190276825,12583.789916870808,59.15340244690388,13.480016371411049,19.223757887812315,13.621516884146468,12.828111303534037,0.5574240397477547,0.7910447761194029,0.6908127208480566,0.5776143790849673,0.1160409556313993,0.7262269938650306,0.934065934065934,0.8608490566037735,0.7664233576642335,0.1322314049586777,0.5013998472893866,0.7238709677419355,0.6342229199372057,0.5231578947368422,0.1118279569892473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0045746860609011,0.0070663485456114,0.0097144599126105,0.0117085774739583,0.0140357310191692,0.0161356125821059,0.0181879455076489,0.0204035713920451,0.0225496922714565,0.0248120377873283,0.0268948655256723,0.0289191580420155,0.0310886702045442,0.0330191114369198,0.0349100613382707,0.0369191861610057,0.0387419006479481,0.0405759707020683,0.0424700364773319,0.0566820228357725,0.070599319549856,0.0838737434153917,0.0959984852310022,0.10792194092827,0.1236101266358452,0.1364779807457569,0.1486948464807182,0.1603259126194906,0.1712650835229956,0.1844826656602146,0.1968460412940985,0.2086668627002537,0.2193935676102006,0.2296382833337007,0.2400026622591487,0.2503659831256635,0.2600919084519733,0.2696856431987821,0.2782241887229335,0.2859377353462559,0.2925594854552057,0.2993731707606081,0.3068259590562526,0.312874251497006,0.3187262310465748,0.3239041027184271,0.3286384976525822,0.3337750064951935,0.3381120686231683,0.3381739095194996,0.3386419514351225,0.3390813540620446,0.3386121383510985,0.3387435412540762,0.3383496709466611,0.3372938548548073,0.3381645683896065,0.3386673035586339,0.3391402029135388,0.3401099723198922,0.3421680569524147,0.3440207609560085,0.3442264336257505,0.3457335670885468,0.3475747871592595,0.3488259570229116,0.3501177948798492,0.3535708018950693,0.3559268224929561,0.358358038768529,0.3618728741496598,0.3630231971759959,0.3610646387832699,0.3593367250800829,0.3627183081858144,0.366147199506249,0.3683459106669386,0.3723698781838316,0.3793901968351987,0.0,2.5252576468437384,57.0249013816784,202.95896213469052,293.1748210779742,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95834,43094,404.7415322328192,6741,69.15082329862052,5285,54.61527224158441,2194,22.51810422188367,77.32864418348662,79.63965202234914,63.32870225298407,65.03861133821938,77.06131302043393,79.37304127284655,63.23121890477982,64.94438325904723,0.2673311630526882,266.6107495025898,0.0974833482042427,94.22807917215437,112.19868,78.96845605400209,117076.06903604147,82401.29396039202,308.78699,197.80791349131104,321675.814429117,205873.17157335975,319.90648,154.8008376169971,331072.7194941252,159395.55593306528,3060.10916,1395.7319640741002,3162231.19143519,1425572.4918295618,1281.30495,567.4297371405844,1316902.4876348686,572087.6802829014,2156.56846,892.1663389947345,2214022.9354926227,899029.3530881037,0.37981,100000,0,509994,5321.639501638249,0,0.0,0,0.0,26442,275.34069328213366,0,0.0,29439,304.41179539620595,1863253,0,66959,0,0,0,0,0,64,0.6678214412421478,0,0.0,0,0.0,0,0.0,0.06741,0.1774834785813959,0.3254709983681946,0.02194,0.3203499858876658,0.6796500141123342,25.06065907033136,4.499356982936302,0.3224219489120151,0.2158940397350993,0.2263008514664143,0.2353831598864711,11.07016309893002,5.513431883721533,23.39943097658324,12704.227390304382,60.01795866830068,13.631917704251716,19.2875866140845,13.383113172244974,13.715341177719486,0.5449385052034059,0.7572304995617879,0.6995305164319249,0.5769230769230769,0.107717041800643,0.7249451353328457,0.9037037037037036,0.8738938053097345,0.7307692307692307,0.16,0.4821337417049515,0.6766304347826086,0.6365814696485623,0.5341880341880342,0.0945674044265593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027345925963437,0.0049568179053643,0.0073555521736924,0.00952787258248,0.0119991864958307,0.0143351659539808,0.0166853531750076,0.0189208772592282,0.0211233061499785,0.02336147352264,0.0255950490281463,0.0277601034461525,0.029906273123407,0.0317904793279525,0.0339898937815819,0.0360647947271637,0.0381240168888152,0.0400941439946914,0.0420678694961204,0.044007285974499,0.0585050901201602,0.0720476763029954,0.0858532392801366,0.0988661083029456,0.1112785917571413,0.1263755430818507,0.1389548693586698,0.1511008012598827,0.1625569996048739,0.1730325997234222,0.186019467654406,0.1995629692131282,0.2115832046793798,0.2220461425807932,0.2322982322982323,0.2427478041270228,0.2529532614278377,0.2623964150603495,0.2712157005269853,0.2796178636144689,0.2866815847140256,0.2946419147913173,0.3017734621685145,0.3088814683130735,0.3145545048498789,0.3203400705806865,0.3253516535867412,0.3301121876593574,0.3350986500519211,0.3400492115567785,0.3402593197242198,0.3403022148623473,0.3405326657331579,0.3405691883258313,0.3403810859606977,0.3401411808129431,0.3389248406022928,0.3399222507741978,0.340837884572583,0.3415994707764924,0.3437552845681216,0.3450176454260676,0.3455854569881187,0.3463659597363583,0.3479940134215227,0.3502478168515459,0.3503962917393917,0.3537228166524634,0.3556102708406612,0.3565238133100103,0.3594263792473511,0.3612861873731439,0.3643342003425744,0.3631121703698008,0.3644806671721001,0.3699928040297433,0.3733885819521179,0.3721451876019576,0.3707988980716253,0.37172979304959,0.0,2.0393573058565697,60.43721837554308,204.06798803498936,291.07044420356505,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95751,43522,410.3246963478188,6736,69.22120917797203,5237,54.1613142421489,2142,22.04676713559127,77.35098256499538,79.69619986472576,63.33757887846742,65.0696133043357,77.08775314269067,79.43122150822053,63.242300889791984,64.97577204216957,0.263229422304704,264.9783565052246,0.0952779886754342,93.84126216613708,113.2109,79.67924952321383,118234.6920658792,83215.05730824098,312.72435,200.33160448287373,326070.89221000305,208690.66065406488,322.80009,155.5674127569397,333182.327077524,159556.34140280331,3008.26968,1358.2815594020667,3114472.412820754,1391265.218537735,1272.63474,553.0234587341367,1317077.482219507,565533.0792724217,2114.03824,870.6606447038645,2179054.004657915,885296.538347808,0.38275,100000,0,514595,5374.304184812691,0,0.0,0,0.0,26743,278.74382512976365,0,0.0,29722,306.4302200499212,1857715,0,66744,0,0,0,0,0,44,0.4595252268905807,0,0.0,1,0.0104437551566041,0,0.0,0.06736,0.1759895493141737,0.3179928741092636,0.02142,0.3173348390739695,0.6826651609260305,25.14563149088496,4.619839462765027,0.3314874928394118,0.2056520908917319,0.2289478709184647,0.2339125453503914,11.283463326614518,5.544950772182788,22.804053226162868,12743.246533958409,59.14862165275604,12.681706936571617,19.66743628310695,13.269622960755823,13.52985547232165,0.5440137483291961,0.7715877437325905,0.690668202764977,0.5554628857381151,0.1248979591836734,0.6928353658536586,0.9090909090909092,0.8646788990825688,0.6895161290322581,0.1485507246376811,0.4942675159235669,0.7048275862068966,0.6323076923076923,0.5205047318611987,0.1180189673340358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.004844872847427,0.0071027771858796,0.0096591370764605,0.0117029821760836,0.0140077979456587,0.0162893344614224,0.0186256799648918,0.0209119062950357,0.0230377959041644,0.0249195317465198,0.0270067747895709,0.0290957692900837,0.031222003686503,0.0332174505090935,0.0350070282784852,0.0371306094555695,0.0393172149009027,0.0414093527124529,0.0433890324193682,0.0582279009561985,0.0718447617553219,0.085334144142255,0.0982789616998013,0.1111169674481362,0.1266648344678872,0.1400362683860568,0.1526854029434612,0.1637344442664103,0.17514936339551,0.1886579060749676,0.2004501823454933,0.2129853181076672,0.224004200899255,0.2334936550039071,0.2448500160677282,0.2554182159246977,0.2647574912264915,0.2739682503659491,0.2820445218826658,0.2893549059093118,0.2959369953425235,0.3032991471190129,0.3096843744385218,0.3158041686393046,0.3213252403875749,0.3260673820064531,0.3314173078145864,0.336770115538055,0.3414598713664998,0.3420839737885284,0.3418259023354564,0.3411847772364612,0.3408428652198495,0.3409104450932491,0.3408557085616912,0.3399183751250575,0.3410832276030253,0.3415144140129572,0.3427324125098404,0.3441939903530339,0.3444031032298923,0.3448913157618397,0.3455030368228781,0.3468124563473905,0.3484697881245095,0.3504624871531346,0.3527166025115164,0.3551513448978158,0.3576482747654635,0.3614755222379668,0.3640825908339113,0.3640850417615793,0.3635114503816793,0.3650269096402606,0.3647889008491807,0.3644625509244751,0.3660292000822537,0.3695163104611924,0.3634585289514867,0.0,2.108582571392558,57.93810429210741,199.44595375089224,295.9775237082143,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95838,42884,403.1699325945867,6710,68.9601202028423,5269,54.352135895991154,2136,21.89110791126693,77.51248185563044,79.80055462168161,63.42745123530996,65.1117257161246,77.25316740768237,79.54208565207676,63.332775666042586,65.02029075947554,0.2593144479480713,258.4689696048485,0.0946755692673733,91.43495664905288,112.81798,79.26600600822495,117716.45902460402,82707.44884301107,310.17282,198.33027205481295,323011.3524906614,206312.59884080736,312.78133,150.4543426389274,323118.71074104216,154447.08248269933,3034.726,1367.273026698054,3131875.915607588,1392082.6063753983,1263.10611,540.7842968608811,1305583.5263674117,551932.1991825372,2101.8721,864.0897430550114,2155682.380684071,869307.857226566,0.38001,100000,0,512809,5350.748137482001,0,0.0,0,0.0,26444,275.27702998810497,0,0.0,28950,298.71241052609616,1873107,0,67122,0,0,0,0,0,67,0.6990963918278763,0,0.0,0,0.0,0,0.0,0.0671,0.1765743006762979,0.3183308494783904,0.02136,0.3177371331348362,0.6822628668651638,25.16152843425767,4.532366958940798,0.3243499715315999,0.2064907952173088,0.2368570886316189,0.2323021446194723,11.08868894696488,5.504380416885664,22.447507557342604,12593.095996987771,59.10146835657916,12.879063347069089,19.23456397815064,13.719428662719023,13.26841236864042,0.5416587587777567,0.7720588235294118,0.6881217086015213,0.561698717948718,0.1119281045751634,0.7084282460136674,0.9168831168831169,0.8588235294117647,0.6940298507462687,0.1213389121338912,0.486082995951417,0.6927453769559033,0.631619937694704,0.5255102040816326,0.1096446700507614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022463724121182,0.0045877598971045,0.0067606604567246,0.0088583576016478,0.0110424835937341,0.0133835045255771,0.0155769583189102,0.0176721324849078,0.0197992505080003,0.0218324982104509,0.0242179099892478,0.0263565414474561,0.0286982522117074,0.0307826892399526,0.0331446715945525,0.0352107584411828,0.0374072579393412,0.0395118815576659,0.0414593353624964,0.043310324723324,0.0575591339535271,0.0712485753421792,0.0844580434235895,0.097530747497663,0.1093491697465542,0.1241986079278403,0.1366483324325183,0.1486959202985614,0.1602005975245412,0.1706606703073134,0.1846519429689684,0.1976324714319659,0.2100635075720566,0.2198711649743421,0.2304980119065925,0.2410513861090531,0.2508913053166362,0.2600222404439102,0.2693061233734612,0.2783447424659725,0.2862152092921323,0.2928423309023975,0.2993171606146734,0.3055363156511977,0.311067801329153,0.3170288297362699,0.3223855659048117,0.3277886868942801,0.3335697338559934,0.3380734788203471,0.3384235858795769,0.3387304457412126,0.3392241500126132,0.3396036326477742,0.3401654506977639,0.3396652821891033,0.3386726965101753,0.3400862139614168,0.3406421032889465,0.3409917945058865,0.3421037847150696,0.3437784012328604,0.3453064131026683,0.3451062689766029,0.3456899440003829,0.3477629737155892,0.3483534546278977,0.3518974710779881,0.3524071239738416,0.3550207729089911,0.3576019055323356,0.361039777789424,0.361892901618929,0.3592489254204057,0.3611627043090639,0.3629258049463369,0.3681120144534778,0.3698195518540551,0.3806556488756434,0.3822975517890772,0.0,2.383304722780499,57.71877166656647,197.10347974181627,298.2692033321458,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95757,43161,406.1217456687239,6703,68.94535125369424,5268,54.6487463057531,2142,22.118487421285128,77.31288813594676,79.67069832960341,63.318020272784125,65.06165005072663,77.0502954375647,79.40393046734809,63.222164871626624,64.96580257373327,0.2625926983820648,266.7678622553211,0.0958554011575003,95.84747699335594,112.04402,78.87425135376286,117008.69910293764,82369.17546890865,308.27551,197.0337206630372,321567.2587904801,205396.33725266796,320.32347,154.12342234934673,331906.7953256681,158975.9055761447,3039.3558,1375.3547824215048,3155156.1139133438,1417423.083870114,1304.65071,569.6007231356234,1353547.573545537,585927.465496646,2111.61026,872.4828999187051,2182911.202314191,892603.2404812134,0.38002,100000,0,509291,5318.577231951711,0,0.0,0,0.0,26335,274.63266393057427,0,0.0,29531,305.80531971552995,1867165,0,67070,0,0,0,0,0,58,0.6056998443977986,0,0.0,1,0.0104431007654792,0,0.0,0.06703,0.1763854533971896,0.3195584066835745,0.02142,0.3164305949008498,0.6835694050991501,25.07116634318573,4.4807159561932,0.3234624145785877,0.2188686408504176,0.2207668944570994,0.2369020501138952,11.212626663600934,5.71807316451106,22.746860821270285,12648.290938299671,59.67162533537671,13.67588392688227,19.212498485640847,13.038606695813488,13.744636227040113,0.5559984813971146,0.7840416305290546,0.6942488262910798,0.5786758383490972,0.1354166666666666,0.7172619047619048,0.9090909090909092,0.8541666666666666,0.7048611111111112,0.1757322175732217,0.5007645259938838,0.7213541666666666,0.639937106918239,0.5371428571428571,0.1258671952428146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045510293029525,0.0070110289268357,0.00920245398773,0.0114827961473133,0.0135947046843177,0.0161109411644743,0.018100887178283,0.0204367472958881,0.0227316943303877,0.0251202181870379,0.0272834625455665,0.0295475815823845,0.0319307823041664,0.0339114196989549,0.0361210442547386,0.0379075763380515,0.0397696617555509,0.0419682222776807,0.0438519722447959,0.0584931463946799,0.0717095626700146,0.08482929284456,0.0981191980571705,0.1101938830376063,0.1257218402961396,0.1384659458656509,0.1505023841961852,0.1615787224951933,0.1730398044093677,0.1866231682763224,0.1986956944940138,0.2101257013614023,0.2209984030800866,0.2313710387323943,0.241697130829733,0.2520230826757152,0.2619942391646789,0.270893666314606,0.2795636080264952,0.2871665431641348,0.2942875856745187,0.3010388811321201,0.307920068088371,0.3139749665816017,0.3196740510620461,0.3249574105621806,0.329437973394437,0.3347417536128572,0.3394013907617461,0.3400221310590521,0.3392773475181214,0.3398732479850946,0.3399194599762435,0.3389249235815999,0.3382386861650597,0.3375501241168608,0.3383206862421643,0.3387980018196487,0.3386002082809638,0.3397370701020831,0.3404716455897558,0.3421074780120355,0.3435450543527086,0.3449076874682411,0.3453658280647446,0.3465545446718135,0.3472535144226192,0.3498283246610739,0.3530378985361941,0.3542355751561926,0.3568991256131371,0.3590871943169674,0.3628663003663003,0.3657153657153657,0.3649339835851076,0.3657931462242208,0.3743370053039576,0.3675524475524475,0.3658536585365853,0.0,1.4567113866284738,60.04176116951922,199.75486542435613,296.75236571874336,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95790,43139,407.2554546403591,6834,70.21609771374882,5352,55.38156383756133,2152,22.17350454118384,77.37208356525132,79.7109009475375,63.35007434272507,65.07937156786312,77.11170963434168,79.44775240658952,63.25551191705233,64.98558446084157,0.2603739309096369,263.1485409479808,0.0945624256727413,93.78710702155502,111.9217,78.70117599888265,116840.69318300448,82160.11692126803,308.88678,197.09042262742008,321979.5072554546,205269.6655469465,316.31144,152.0113206710174,326881.79350662907,156116.5071382511,3058.0394,1387.749443874539,3166326.547656332,1422626.833567741,1269.43242,555.1903233370384,1314430.7130180602,568815.765166836,2113.62366,873.881499008945,2180647.18655392,891445.9805618085,0.38237,100000,0,508735,5310.940599227476,0,0.0,0,0.0,26400,275.1017851550266,0,0.0,29238,301.9417475728156,1872145,0,67228,0,0,0,0,0,60,0.615930681699551,0,0.0,0,0.0,0,0.0,0.06834,0.1787274106232183,0.3148961076968101,0.02152,0.3207810320781032,0.6792189679218968,25.09884795771776,4.464786587063899,0.3221225710014948,0.2159940209267563,0.2344917787742899,0.2273916292974589,11.064606664350237,5.621697354780801,22.903842476567256,12670.272817157587,60.50334821969796,13.579730572397157,19.381057113551456,14.191515503297495,13.351045030451848,0.5592301943198804,0.7673010380622838,0.7088167053364269,0.5832669322709163,0.1248972884141331,0.7276064610866373,0.9276139410187668,0.8863636363636364,0.7233333333333334,0.1526104417670682,0.5017543859649123,0.6909323116219668,0.6479750778816199,0.5392670157068062,0.1177685950413223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0044503467012692,0.0066773558482677,0.0091831655509391,0.0113800467812468,0.0134081283596676,0.0156254777849127,0.0174296385492989,0.0194980379332897,0.0215842800122812,0.0237956159498262,0.0257289175792033,0.0279076938890887,0.0301379736408566,0.0321632602553261,0.0341375213101203,0.0361863555909782,0.0381312869438971,0.0403661526952329,0.0422678909779915,0.0572767209625076,0.0710348794645191,0.0852839128292749,0.0981475838735776,0.1102027916776402,0.1259731891023948,0.138668418654431,0.1507995576914898,0.1623934359762278,0.1733047670058918,0.1864908185329016,0.1994682000951186,0.2112189343968355,0.2220570391666029,0.2325041787630861,0.2439075700034323,0.2543524084627996,0.2636110236928471,0.2722759933812362,0.2809098089492782,0.2888809231978909,0.2963833169682517,0.3033888488315741,0.3094522598024543,0.3150505405962941,0.3207870079661163,0.3260904937730771,0.3314431744497985,0.336403979764785,0.3407136828779407,0.3401307470877835,0.3398710776969914,0.340339097807995,0.3405262243834664,0.3401422280409426,0.3400542786611263,0.3388653763849921,0.3395783003829151,0.3409492141302298,0.3416724825969471,0.3424351612055699,0.3427462473761337,0.3445032333921223,0.3451922215252263,0.3463124141090243,0.3473821989528796,0.3480542571190961,0.351223837117254,0.3519328442437923,0.355052766229613,0.3561950951683748,0.357188566552901,0.358094877139789,0.3591333639565151,0.3605410006620637,0.3653206650831354,0.3699236641221374,0.368816778789078,0.3688058489033306,0.3642184557438794,0.0,1.8095973699303216,60.41628869085933,199.98349547342312,304.96273842707427,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95656,42830,403.33068495442,6653,68.43271723676507,5168,53.54603997658276,2009,20.65735552396086,77.25911226955019,79.65460552298131,63.27736057920528,65.04537014112819,77.01615996308222,79.4112983384152,63.18932502840626,64.95942150235649,0.2429523064679699,243.30718456612036,0.0880355507990202,85.948638771697,111.92896,78.72362499300026,117011.95952161914,82298.67963640572,304.78752,194.76365515101756,318152.12846031616,203145.72667070545,316.13956,152.0446367842913,327315.53692397755,156523.92125672422,2965.0626,1343.1492694168028,3072782.8886844525,1377959.6224342573,1257.53221,550.6289373676618,1301916.3356193025,563493.4179368194,1970.766,815.5296220887071,2028350.3805302333,826227.8823746166,0.37869,100000,0,508768,5318.725432800869,0,0.0,0,0.0,26086,272.2045663628,0,0.0,29138,301.54930166429705,1865826,0,67051,0,0,0,0,0,62,0.6377017646566864,0,0.0,1,0.0104541272894538,0,0.0,0.06653,0.1756845968998389,0.301969036524876,0.02009,0.3276059564719358,0.6723940435280642,25.02051110438441,4.47100016688084,0.3353328173374613,0.2155572755417956,0.227360681114551,0.2217492260061919,11.31796360860504,5.836316255890595,21.48541562395264,12653.262409783272,58.70328560468233,13.23543385820177,19.79738268050562,13.068408526507934,12.602060539467004,0.5661764705882353,0.7827648114901257,0.7184073860357761,0.5625531914893617,0.1291448516579406,0.7417624521072796,0.9261213720316622,0.8729792147806005,0.7471698113207547,0.1798245614035087,0.5068599534040901,0.708843537414966,0.666923076923077,0.5087912087912088,0.116557734204793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023398802710614,0.0047455358500897,0.0068509834967419,0.0090940497480084,0.0114247927158044,0.0136271973601124,0.015620857719681,0.0179364414998417,0.0202921663037589,0.0222531578193133,0.0244625116622409,0.0267581193334086,0.0290460272563641,0.031141832866326,0.0333230134158926,0.0355484784878971,0.0375012949342173,0.0395063266174654,0.0413351223723489,0.0434501594979463,0.0582573984283564,0.0721714267760078,0.0859557935632908,0.098364798416392,0.1100328408958911,0.1257585224565008,0.1392293476644646,0.1511622951867555,0.1624167388352524,0.1722427417969421,0.1861498473916372,0.1986587796845207,0.2105876459313469,0.2208115154569156,0.2306157103162351,0.2412204247948749,0.251210863656193,0.2610813553588543,0.270174082117639,0.2786495428020034,0.2866854603881715,0.2945846428068859,0.3018270257444537,0.3088001923539312,0.3146744032961943,0.3203781512605042,0.3259117949747734,0.3306458814374465,0.3352848779094673,0.3398470575783234,0.3396753807929135,0.3401411270834196,0.3400690553008433,0.3397828204270907,0.339408697730702,0.3379900301557019,0.337037037037037,0.3388394329047148,0.3392222508369817,0.3400444619742551,0.3416776377656573,0.3439674828987806,0.343585754530547,0.34427475795452,0.3448964372489114,0.3456928448590338,0.3473666220411883,0.3493463537564971,0.3523430903461863,0.3552699637926232,0.3599068025035405,0.3604688332445391,0.3632459741079886,0.3658629345097741,0.3666884877957542,0.3695652173913043,0.3749808605114071,0.3764895980609978,0.3772954924874791,0.3746588693957115,0.0,1.8159686326914173,58.07380170687784,201.73060900854037,287.1836888417501,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95618,43027,406.8794578426656,6525,66.99575393754314,5054,52.2914095672363,2084,21.44993620448033,77.28554750318864,79.71749937089626,63.27381344368566,65.07192426664412,77.02824522118169,79.46040755230672,63.17933740381048,64.98035960664207,0.2573022820069468,257.09181858954366,0.0944760398751825,91.56466000204944,111.19636,78.25384820020943,116292.28806291702,81840.08052898977,305.9091,196.4969754946597,319353.51084523834,204927.22656263443,313.6948,151.28305363102638,324552.6469911523,155515.04813917252,2920.33568,1328.4195374927135,3023545.1065698927,1358674.326479025,1298.01284,567.2330695789077,1343503.147942856,579241.1084451586,2053.32726,855.5150322534588,2115343.052563325,865580.3588352411,0.38012,100000,0,505438,5286.013093768956,0,0.0,0,0.0,26170,273.0971156058483,0,0.0,28917,298.9081553682361,1868414,0,67043,0,0,0,0,0,66,0.6902466062875191,0,0.0,0,0.0,0,0.0,0.06525,0.1716563190571398,0.3193869731800766,0.02084,0.3273974602247847,0.6726025397752153,24.85040861159023,4.569127288049293,0.3128215275029679,0.2176493866244558,0.2320933913731697,0.2374356944994064,11.172492951740317,5.505471420753166,22.19887527291356,12587.885455499892,57.27143760782042,12.988527808660615,17.956461262997305,13.010712845093014,13.315735691069488,0.5591610605461022,0.7727272727272727,0.704617330803289,0.5993179880647911,0.1325,0.7069767441860465,0.895774647887324,0.8418491484184915,0.7418181818181818,0.1767068273092369,0.5085015940488842,0.7140939597315437,0.6564102564102564,0.5556792873051225,0.120925341745531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024827725982975,0.0045542606173102,0.0070868699995938,0.0095339736748488,0.011750701989989,0.0139045930996546,0.0162703634564576,0.0182964203988231,0.0200979840648044,0.0224186313266831,0.0245381151198695,0.0265618577887381,0.0285226091342343,0.030367690261929,0.0324635765692277,0.0344128507742115,0.0361458268565151,0.0381767387759764,0.0401153289685968,0.0420991144165475,0.0574627333737534,0.0714390509725016,0.0843412742615146,0.0970447242269399,0.1097214446428005,0.1250185346014531,0.1374040934305328,0.1489094049167395,0.1602910491680488,0.1718862471663855,0.1849793927885549,0.1967541900652631,0.2090575248722335,0.2208721376136737,0.2311728973508108,0.2420008212823102,0.2524034162046145,0.2612424768388071,0.2703903630888118,0.2784400935393645,0.2856712719018888,0.2925903804939746,0.2992790741794726,0.305799416335403,0.3136481501771301,0.3185202563374368,0.3235201965133912,0.3288764259766745,0.33364905542869,0.3386231501057082,0.3388416384736693,0.3383289982522053,0.3378136327094763,0.3370131373343364,0.3373388260138903,0.3365207514734774,0.3351161757237176,0.3365229421258934,0.3380703706874411,0.3392959564095211,0.3402296258714321,0.3406854495416477,0.3422673477538837,0.3444606250700123,0.3454142901836209,0.3457250039076747,0.3468645175962249,0.3486443180747117,0.3513013100436681,0.3529877952131875,0.3563454089769879,0.3611480201966516,0.3653785538674904,0.3642998327504941,0.3639688642971021,0.3662502946028753,0.3641636141636141,0.3689300826113238,0.370722433460076,0.3778526000748223,0.0,2.154033933635427,57.00209568623813,190.3876206955136,285.8633764350768,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95800,43058,405.7202505219207,6766,69.23799582463465,5264,54.26931106471817,2149,22.01461377870564,77.35864855579545,79.66468824626216,63.35358995694328,65.05468896431799,77.09546104535738,79.40236091341185,63.25665990116969,64.9611350237387,0.2631875104380725,262.32733285030463,0.0969300557735834,93.5539405792838,113.30572,79.7022538987971,118273.19415448852,83196.50720124958,310.7351,198.73366771565537,323675.33402922755,206763.60930652963,318.07139,153.84316369426017,327436.54488517746,157137.55802363026,3040.27404,1378.6171004051748,3135780.7098121084,1401568.040949552,1236.60202,541.1160591372898,1274041.4300626304,548169.835989863,2117.18476,876.7661579491927,2170785.2192066805,880796.3411221962,0.38026,100000,0,515026,5376.054279749478,0,0.0,0,0.0,26549,276.40918580375785,0,0.0,29394,302.3173277661796,1860741,0,66825,0,0,0,0,0,64,0.6680584551148225,0,0.0,0,0.0,0,0.0,0.06766,0.177930889391469,0.3176174992610109,0.02149,0.3252420373228567,0.6747579626771433,24.88834334948676,4.522945684110176,0.3246580547112462,0.2180851063829787,0.2234042553191489,0.2338525835866261,11.347379667741668,5.7422615305871085,22.70413252645171,12650.061325157934,59.43062084430458,13.566204819739117,19.352511196828072,13.03879671781616,13.47310810992123,0.541983282674772,0.7804878048780488,0.6840257460503218,0.5714285714285714,0.0942323314378554,0.7181751287711553,0.935,0.8493449781659389,0.7065637065637066,0.1239669421487603,0.4806658130601792,0.6978609625668449,0.6235011990407674,0.5332606324972737,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022771896443535,0.0045174163619605,0.0069547938400397,0.0092037301998031,0.0115924654054822,0.0136310462336605,0.0157682434910157,0.0177185233543806,0.0196146537809288,0.0219214795720043,0.0241316794870481,0.0264224098140379,0.0285511743070252,0.030789178509318,0.0327978719016785,0.0348780764900901,0.0369385495669808,0.0388861819802821,0.0408209900907825,0.0429224314729795,0.0572120099317712,0.0717004014720642,0.0851440730375355,0.0974922750299539,0.1101145621449574,0.1260079686327559,0.1383602455496771,0.1501154243039967,0.1614435961774598,0.1726711271230056,0.1861957575104985,0.1993335713435677,0.2111404739377725,0.2220143743231269,0.2329931411082119,0.2433136409483379,0.2539873876890451,0.2629476692507623,0.2723259376950576,0.2808758321207191,0.288589749525441,0.2958448948052404,0.3021223174949073,0.3081434396737826,0.3142110063849194,0.3195169189395902,0.3243774492006059,0.3291163406345853,0.3347629475102686,0.3400287891393632,0.3401816026297354,0.3402254862822295,0.3395814556106354,0.3394244936873429,0.3391978840067165,0.3386817729464901,0.3374475164382476,0.3382500452205942,0.3384133289953595,0.3391503771522763,0.3406023235703275,0.3422138464590359,0.3434196672983786,0.343380654421494,0.3445171256849067,0.3451079117824456,0.3461847159318924,0.3479761829353265,0.3511755347357256,0.3528776114624189,0.3552932564736023,0.3600707281787494,0.3605278183086975,0.3610083256244218,0.3631638631638632,0.3653092722307966,0.3660907127429805,0.367827868852459,0.3694609088343212,0.3641779189833201,0.0,2.5655707682165616,59.46918781365945,196.20676462322305,295.5549687011584,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95860,43105,405.69580638431046,6747,69.09034007928229,5314,54.84039223868141,2160,22.146880867932403,77.41454581429173,79.70416027240209,63.37712166936033,65.06840494793711,77.1429291152977,79.43244673617703,63.27593449305776,64.97001373979121,0.2716166989940234,271.71353622506444,0.1011871763025737,98.3912081458982,113.04282,79.53478861393782,117924.91132902147,82969.735670705,310.43325,198.30924356211617,323272.87711245567,206306.4610495682,320.5027,154.65829376482696,330525.24514917587,158421.28163934816,3071.77852,1392.970078928979,3170829.459628625,1419516.6690266822,1327.01546,580.7008606442773,1365780.3359065305,587260.2179144943,2131.46374,897.5795475421859,2185747.5485082413,904288.3414548304,0.38102,100000,0,513831,5360.22324222825,0,0.0,0,0.0,26443,275.2451491758815,0,0.0,29573,304.68391404131023,1864153,0,66959,0,0,0,0,0,53,0.5528896307114542,0,0.0,0,0.0,0,0.0,0.06747,0.1770773187759173,0.3201422854602045,0.0216,0.3355817875210792,0.6644182124789207,24.997084712356678,4.514467768524992,0.3219796763266842,0.2117049303726006,0.2258185923974407,0.2404968009032743,11.031967794035731,5.500694028758149,23.090248770233632,12627.41479324242,60.002675537415,13.25940742226563,19.313393522353387,13.37801033405528,14.051864258740698,0.5513737297704178,0.7742222222222223,0.7019286966686148,0.5841666666666666,0.122848200312989,0.700594353640416,0.9027027027027028,0.8505747126436781,0.7007042253521126,0.1556420233463035,0.5007560483870968,0.7112582781456953,0.6512539184952978,0.5480349344978166,0.1145935357492654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024193956572354,0.0044779899701129,0.0070271859821328,0.0092684709560838,0.0113019615814615,0.0138076293002574,0.0158720456397718,0.0181259945326206,0.0201336111792105,0.0224408804516815,0.0246038493449558,0.0267722512283437,0.0288421030999866,0.0307765151515151,0.0328686902012537,0.0351683536459409,0.0370592617116371,0.0392981874332853,0.0413695018011564,0.0430653365649672,0.0573293570519905,0.0717047782283349,0.085289834574808,0.0983566965926392,0.110565835062186,0.1260853032511566,0.1389948300703449,0.1509205323355585,0.162068156114632,0.1732089496288838,0.1859211602186168,0.1985294912688544,0.2099692468187301,0.2205695925861164,0.2310085188238527,0.2414083166388117,0.2509117676581791,0.2602493339478624,0.2686286077328009,0.2772197853797084,0.2845507762789513,0.2918850004678581,0.2994616340294622,0.3057650119280242,0.3127362905872771,0.3181975138121547,0.3237364123628713,0.3291400341236089,0.3345657870838847,0.3395538168746035,0.3399328813833443,0.3394202299800317,0.3396213114522973,0.3397590709916268,0.3403619384674865,0.3385030343897505,0.3383784810727799,0.3397642190989097,0.3411678233222796,0.341220556745182,0.3418992320659299,0.3435719936708861,0.3444779621250209,0.3457670302163418,0.34661853188929,0.3485346266166041,0.3500854214123007,0.3520817657386506,0.3540108829208355,0.3574975173783515,0.3575776848991459,0.3595785237742243,0.3615918035859312,0.3624378484254934,0.3670024249207237,0.3708554572271386,0.3743119266055046,0.3721927317272356,0.3816878102592388,0.3831490659550133,0.0,2.31590481397299,59.12084879676905,203.50990113692225,296.190114433232,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95722,43580,412.0682810639143,6665,68.5213430559328,5229,54.177722989490405,2092,21.541547397672428,77.36002699221102,79.73200501040358,63.33690834044432,65.08847654758692,77.09675989960249,79.4661298703571,63.24099558371682,64.99353985387248,0.2632670926085296,265.8751400464894,0.0959127567275075,94.93669371444469,113.77916,80.11682133882043,118864.16915651574,83697.39593700552,313.19671,200.03973193675284,326743.8833288064,208529.7026146057,320.86111,154.32531984248016,332333.8521969871,158993.19504829549,3015.89096,1368.7072255108758,3124843.693194877,1404235.7241974757,1269.13701,553.8721061720348,1314327.6676208186,567215.1858685703,2064.43272,864.097595192562,2127185.0776206097,878394.6901502876,0.38334,100000,0,517178,5402.916779841625,0,0.0,0,0.0,26766,279.1521280374418,0,0.0,29596,306.2932241282046,1857076,0,66638,0,0,0,0,0,55,0.5745805561939784,0,0.0,0,0.0,0,0.0,0.06665,0.173866541451453,0.3138784696174043,0.02092,0.3265013616167407,0.6734986383832593,24.90890586501758,4.501244104474392,0.3279785809906292,0.211895199847007,0.2264295276343469,0.2336966915280168,11.260844219693237,5.705105057757656,22.377603492320876,12710.404859850618,59.19189638639872,12.927540976725814,19.415982514883936,13.289058263089736,13.559314631699229,0.5523044559189138,0.7644404332129964,0.6903790087463557,0.606418918918919,0.113747954173486,0.7056179775280899,0.9267605633802816,0.8490990990990991,0.7292418772563177,0.1312741312741312,0.4997431946584489,0.6879150066401063,0.6349331235247836,0.5689084895259096,0.1090342679127725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991765504248,0.0045008058875406,0.0066468445247252,0.0087669395964972,0.0108019040644452,0.0129322634515905,0.0152395514780835,0.0172691828777888,0.0193611040122668,0.0213558836176006,0.0236010580491705,0.0257381627037904,0.0278371930401875,0.0302402949870737,0.0321392459916221,0.0344278565816136,0.0363924542374988,0.0384028563421798,0.0403973165531228,0.0424077605159784,0.0570181392871688,0.071323914181057,0.0848193681030504,0.097827230086448,0.110664811183503,0.1260703186113871,0.1386717299757088,0.1512520086411476,0.1624251097322639,0.1730717664346315,0.1869782072412716,0.2000454452006622,0.2124396817806373,0.2233165719282903,0.2336658271838467,0.2439778050968535,0.2546659378172447,0.2647025750590352,0.2735096033923672,0.2821763473362415,0.2902177558312999,0.2973595315184739,0.304427018651906,0.3106227544910179,0.3160982364086868,0.3220044592813412,0.3277478131374438,0.3327611200122072,0.3376488865872605,0.3421723004632868,0.3417566274478092,0.3411158277744087,0.3413329192371218,0.341574335578246,0.3424280313179125,0.340878072717793,0.3398853269133299,0.340904242225322,0.3418619357705652,0.3425709336999804,0.3438396489978062,0.343397570337541,0.3453388055951085,0.3461168845681082,0.3472823472823473,0.3485322488138068,0.3500085660442008,0.3525936690465659,0.3551962722394803,0.356235727735267,0.3594870380584666,0.3622784945660902,0.3633200480799646,0.3646383467278989,0.3650075414781297,0.3710691823899371,0.3717654264278058,0.3693528693528694,0.3749308245711123,0.3739868776534156,0.0,1.739379347462444,59.29189686235755,200.45537077927915,290.89842788714907,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95747,43341,407.80389986109225,6675,68.2736795930943,5170,53.34892999258462,2095,21.48370183922212,77.33346816806463,79.69560389431425,63.32120940122799,65.070269007564,77.07413743692562,79.43695798955554,63.22569488422922,64.97740034368162,0.259330731139002,258.6459047587084,0.0955145169987687,92.86866388237058,112.0999,78.87428252131085,117079.281857395,82377.81081528492,308.99593,197.3187074421645,322082.22711938753,205444.9414272177,318.71602,153.56649706453874,329018.13111637963,157412.14872409462,2979.8378,1354.0728509443215,3076135.0225072326,1378202.6798804894,1265.90035,557.1984236171812,1305968.6360930367,565968.9885780065,2067.13536,865.8513440952852,2121814.1978338747,873613.0247180662,0.38186,100000,0,509545,5321.7855389725,0,0.0,0,0.0,26355,274.56734936864865,0,0.0,29334,302.3906754258619,1867632,0,67027,0,0,0,0,0,62,0.6475398707009097,0,0.0,0,0.0,0,0.0,0.06675,0.1748022835594196,0.3138576779026217,0.02095,0.3193062268979244,0.6806937731020757,25.25561337019782,4.48252247861678,0.3388781431334622,0.1994197292069632,0.2303675048355899,0.2313346228239845,11.091177641977849,5.531121921897959,22.375165249476964,12678.719974791196,58.29111803972099,12.020477822359751,19.777181353163257,13.312844955892748,13.180613908305231,0.5462282398452611,0.7681862269641125,0.6957762557077626,0.5701091519731318,0.1120401337792642,0.7159353348729792,0.9006410256410257,0.8845315904139434,0.7279151943462897,0.1510204081632653,0.4892792560061999,0.7107093184979137,0.62877030162413,0.5209251101321586,0.1019978969505783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024013374537717,0.0046140429156694,0.0069524795485455,0.0091853116299863,0.0114928500233925,0.0140618476921667,0.0160767442808791,0.0183809271090608,0.0208699562568987,0.0231644027719488,0.0251683872753554,0.0272162619988706,0.0293597416754077,0.0314521112255406,0.0335830134951095,0.0358254002708094,0.0374216929847269,0.0395658444967884,0.0418767608928441,0.0438898899107412,0.058645454925049,0.0724138652823711,0.085933729251044,0.099376334360506,0.1119559600518861,0.1272575392293702,0.1399424951990918,0.1513229315225952,0.1622325939058645,0.1731992150218228,0.1862604630118392,0.1986236894212354,0.2098537168959704,0.2203517752838485,0.2307539988119073,0.2416973965427505,0.25177510829277,0.2614690257518458,0.2705893035503496,0.2790774903523538,0.2869699983807915,0.2950698871279022,0.3016599817792449,0.3080812316539867,0.3141664340586657,0.3203018254779108,0.3259111083328124,0.3310028347337511,0.3364997605766866,0.3405538835207772,0.3404223776600762,0.340282077743378,0.3399794276374192,0.3394648103390885,0.3393003288543666,0.3383908963865042,0.3380943312384942,0.3393553482402883,0.3397072669691004,0.3407545278831699,0.3409671121790059,0.34310368713757,0.3450125733445096,0.3449950756558331,0.3455751145406318,0.3474252187123474,0.3490541812890524,0.3519838516369141,0.3550218648610523,0.359360076408787,0.3616419612314709,0.361432301380082,0.3650291212965307,0.3648420729837473,0.3634813902831708,0.3645896107026636,0.3684780925839913,0.3739452562255608,0.3814229249011858,0.3783255086071987,0.0,2.4432716742948437,56.9226442456372,195.28124287198213,292.5162782360793,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95789,43391,409.1805948490954,6609,67.65912578688575,5179,53.388176095376295,2060,21.108895593439748,77.34149214859087,79.67998239003242,63.33904717832892,65.0720191862146,77.08728952369859,79.42688981470502,63.24530232352505,64.98116787435758,0.2542026248922866,253.09257532740048,0.0937448548038659,90.85131185702268,112.96208,79.50447928346408,117927.79964296528,82999.36243562843,311.12877,199.63779684220296,324126.9561223105,207734.70528161168,321.35769,155.45217288162615,330483.52107235696,158554.86035109643,2986.69208,1355.9460637101022,3083167.7123678084,1380732.1338672517,1253.90235,544.7456529507318,1293488.4068108029,553169.856919762,2031.18,846.1974495972523,2084710.1441710424,852978.2267876405,0.38226,100000,0,513464,5360.354529225694,0,0.0,0,0.0,26586,276.8480723256324,0,0.0,29672,304.7949138210024,1862865,0,66798,0,0,0,0,0,57,0.595057887648895,0,0.0,2,0.0208792241280314,0,0.0,0.06609,0.1728927954795165,0.311696171886821,0.0206,0.3299132947976879,0.6700867052023122,24.974789455478952,4.458218523949046,0.3222629851322649,0.2122031280169917,0.2311256999420737,0.2344081869086696,11.1208945073484,5.702199222303399,21.94421698481541,12688.827939069704,58.55942785009698,12.979688956675105,18.89572452019906,13.3194640685737,13.364550304649123,0.5508785479822359,0.7515923566878981,0.7177950868783702,0.5714285714285714,0.1194398682042833,0.7108614232209738,0.9042553191489362,0.8654292343387471,0.7304964539007093,0.1219512195121951,0.4953173777315297,0.6721991701244814,0.6663974151857835,0.5224043715846994,0.1188016528925619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0050383706902669,0.0073570450048201,0.0098870056497175,0.011934679757847,0.014046918132646,0.0158595789817232,0.0178394551154407,0.0202570736146758,0.022629762745881,0.0245670518512442,0.0267605923065864,0.0286869227129662,0.0307397525573537,0.0324301456931776,0.0344813329474511,0.0365929423459244,0.0386933474413635,0.0408474998960887,0.0429944096857139,0.0580526689203288,0.0721029683922167,0.0858439258506324,0.0987263823795212,0.1102106627604303,0.1265101628809098,0.1394725125617486,0.1514149288015909,0.1623813945545558,0.1731707055658567,0.186383940584468,0.1990097083180176,0.2103381967907699,0.2214997595838615,0.2322932471359148,0.2427157596422087,0.2524687367646731,0.2624369870549798,0.2717378994813254,0.2803621854599915,0.2880035097036378,0.2948779320248923,0.3023390499604051,0.3087594560949918,0.3151700457418799,0.3207203436772978,0.3261203825239077,0.3309956676957477,0.3365653118212845,0.34101145792177,0.3415064124130321,0.3418830454395423,0.3425680626796685,0.3417377475784299,0.3416317182713185,0.3406315595936691,0.3391942669605061,0.340166833939354,0.3408697737355052,0.3417537954740762,0.342794308377662,0.3432844702755241,0.344221264065622,0.3445481887148179,0.3447434534737655,0.3461407506351326,0.3485262401150251,0.3517699818708056,0.3560495756241343,0.3570912883041874,0.3585272214255978,0.3612441478770919,0.3623355053021592,0.3624854368932039,0.3639575971731448,0.364835692012473,0.3651685393258427,0.3723184818481848,0.373844861383366,0.3846153846153846,0.0,2.630340090134671,58.26137672804516,192.10323542261483,293.96240591739985,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95698,43033,405.7660557169429,6754,69.3222428890886,5273,54.47344772095551,2135,21.87088549394972,77.3419109081298,79.71120445597707,63.33255108723839,65.08099475642288,77.08649722916915,79.45907004142558,63.23763669331861,64.99035469542713,0.2554136789606502,252.1344145514917,0.0949143939197725,90.64006099575296,111.4498,78.39098038143298,116459.90511818428,81914.96204877112,305.99931,195.28093795715853,319122.0924157245,203426.4958067656,314.61671,151.65553512918274,325212.5645259044,155667.10718496103,3029.5966,1377.595948045671,3129641.6644026,1403377.1113771144,1252.93391,548.8325636738341,1290919.5071997324,555166.0470164833,2098.1901,877.5814455161255,2151337.520115363,881640.8420318015,0.38148,100000,0,506590,5293.632050826559,0,0.0,0,0.0,26099,272.0746515078685,0,0.0,29055,300.1525632719597,1874989,0,67258,0,0,0,0,0,59,0.6060732721686974,0,0.0,1,0.0104495391753223,0,0.0,0.06754,0.1770472895040369,0.3161089724607639,0.02135,0.3279842342342342,0.6720157657657657,25.053264842653512,4.563253550479676,0.3368101649914659,0.2044377014981983,0.2287123079840698,0.2300398255262659,11.503632213695694,5.924164139608572,22.70567073031357,12702.840278666225,59.31645067834227,12.797180072037648,19.765378347288028,13.456834495053334,13.297057763963268,0.551868006827233,0.7792207792207793,0.6751126126126126,0.6144278606965174,0.1071723000824402,0.7123695976154992,0.9222222222222224,0.8364485981308412,0.7602739726027398,0.1679389312977099,0.4970745357415416,0.7075208913649025,0.6238872403560831,0.5678336980306345,0.0904311251314406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0047025438329786,0.0067762223574761,0.0090091005119037,0.0113779639646967,0.0135415818196627,0.0157802990917153,0.0180554421490977,0.0201553556827473,0.0225470027735986,0.0248798039959405,0.0268924302788844,0.0287012946947338,0.0307944324819962,0.0324844182110868,0.0346713253460413,0.0368586756146564,0.0389277486041636,0.0409054516340345,0.0430401117167064,0.0576095584241968,0.0710435137596432,0.0847672808158811,0.0976081788922313,0.1091666666666666,0.1243188911812939,0.1371872944471557,0.1503353561162567,0.1610952640406824,0.172482969479161,0.1856331929469296,0.1985064126846691,0.2105320410316657,0.221557541092969,0.232183908045977,0.2436256545951751,0.2539930400642455,0.2634975602077758,0.2719681412314639,0.2806589733021935,0.2888189413752401,0.2974013812478052,0.3047925743512029,0.3106726285378631,0.3158515241382663,0.3222642999000826,0.3275473116931946,0.3320475117442615,0.3373921604186637,0.342487968883908,0.3416650954830716,0.3414557005541728,0.3409285905171808,0.3414345504401789,0.3421173745861603,0.3408611034609382,0.3397530161440792,0.3404555599317316,0.3420508349999145,0.3434388574084336,0.3443865111219475,0.3461675438249377,0.3463438215944679,0.3473032397020551,0.347988706836225,0.3494243851386708,0.3502719725164614,0.3515699033419672,0.3553570167384702,0.3597536591218108,0.3630657870624885,0.3634027517533058,0.3636190597043335,0.3679071197908657,0.3694352159468438,0.370755619320899,0.3690696241528035,0.3695517455071266,0.372615039281706,0.3714727483571705,0.0,2.3928368354190925,58.71631283760927,196.78877000853095,297.28912027217825,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95717,43056,406.21833112195327,6737,69.2249025773896,5263,54.4939770364721,2060,21.197906328029504,77.33810060160408,79.72051844399748,63.31256206328344,65.07491608899535,77.08688666133905,79.46776279269369,63.220936441262,64.98458239757241,0.2512139402650319,252.7556513037865,0.0916256220214393,90.33369142294134,113.90236,80.08877946901987,118999.09107055172,83672.47141993571,311.9358,199.43181385724105,325395.8022085941,207857.6573202681,319.46791,153.94401616045675,330160.4208238871,158132.075690031,3008.49032,1363.174802820457,3117641.965377101,1398704.3501368167,1263.45026,553.9593058308129,1306294.7229854676,565056.928093673,2027.84198,839.5705737570256,2089439.57708662,853276.4220264779,0.38051,100000,0,517738,5409.049594115988,0,0.0,0,0.0,26631,277.714512573524,0,0.0,29536,305.0346333462185,1855764,0,66660,0,0,0,0,0,43,0.4492409916733704,0,0.0,1,0.0104474649226365,0,0.0,0.06737,0.1770518514625108,0.3057740834199198,0.0206,0.3306497175141243,0.6693502824858757,24.96973430309735,4.417580879483076,0.3363100893026791,0.2143264297928938,0.2283868516055481,0.2209766292988789,11.203104140095563,5.727229563370178,21.8495878466145,12624.06161514118,59.51088451787239,13.381992212346878,20.040677685984225,13.338938310237433,12.749276309303855,0.5700171005130154,0.8067375886524822,0.6937853107344633,0.6014975041597338,0.1195184866723989,0.7393538913362702,0.9585492227979274,0.8580931263858093,0.7536231884057971,0.1686746987951807,0.5108946423993848,0.7277628032345014,0.6376042456406369,0.5561555075593952,0.1061269146608315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026149885467555,0.0049097179955366,0.0069141267488374,0.009279021078521,0.0116400932021448,0.0138929913729005,0.016135283438386,0.0186809931874125,0.0207291506877332,0.022925305892592,0.0248566945928485,0.0271494141928594,0.0291595549980464,0.0310997147476495,0.0327838412180981,0.0349492089408798,0.0369423190416532,0.0387911358260364,0.0406898774313605,0.0427291666666666,0.0570906432748538,0.070593407513634,0.0841045011016682,0.0970394909817531,0.1093652785540288,0.1247858004188791,0.1373383271971055,0.1495453480695926,0.1600786501244937,0.1709075305728384,0.1843811945186589,0.1976075778078484,0.2097202568847284,0.2208762830192808,0.2312517884264048,0.2418596918984816,0.2529369723500245,0.2622710952536383,0.2705768794004088,0.2787674530572941,0.28661099980312,0.294143131469252,0.3011099134101704,0.3073916431868593,0.3124057956921282,0.3184258927799928,0.3249307444501548,0.3299933710672582,0.3351354855438869,0.3395187278778593,0.3398760608918227,0.3406314977761253,0.3412025031006878,0.3405710155402963,0.3396321791231174,0.3387984846858177,0.338438633447899,0.3392326509169115,0.3406204597897616,0.3407654682423506,0.3416055931472699,0.3418264479146076,0.3422680844816376,0.3424887892376682,0.3441383296406897,0.3437532481031078,0.3451108584422968,0.3480595327807084,0.3511715056211256,0.354439390943247,0.3553446327683616,0.3553013128064533,0.3558358833447824,0.3621833534378769,0.3650601286473385,0.3645907053550365,0.3634985599514931,0.3633079084704937,0.3676751158353775,0.3722349351639969,0.0,1.8982650320604115,60.48333771705023,199.65164245845185,290.51457244801406,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95651,43205,407.97273421082895,6603,67.90310608357467,5144,53.20383477433587,2036,20.89889285004861,77.27782633283482,79.68764261111741,63.2892740309558,65.07176708707229,77.02864472312781,79.44027884707711,63.19703800971028,64.98287343040556,0.2491816097070085,247.36376404030125,0.0922360212455188,88.89365666672688,112.05106,78.83126553556635,117145.7276975672,82415.51634124719,308.08094,197.07634177397483,321535.5615728011,205483.87552035507,312.47489,150.38139089189298,323637.5050966535,154806.83142288323,2942.36752,1335.6308600980583,3044798.6116193244,1365007.851562512,1239.77763,541.055607073419,1280495.739720442,550008.4072254985,2002.9148,836.2242847320931,2057812.6313368396,842953.4902562427,0.38128,100000,0,509323,5324.805804434873,0,0.0,0,0.0,26278,274.1215460371559,0,0.0,28881,298.7945761152523,1867354,0,66973,0,0,0,0,0,51,0.5331883618571682,0,0.0,1,0.0104546737619052,0,0.0,0.06603,0.1731798153587914,0.3083446918067545,0.02036,0.3230304772857964,0.6769695227142035,25.075413215405923,4.417750133816246,0.3217340590979782,0.2208398133748056,0.2301710730948678,0.2272550544323483,11.146724486792618,5.751172430931874,21.60178799914368,12659.848403346496,58.17718512004553,13.36390568250945,18.82865060860156,13.082826017589417,12.901802811345105,0.5509331259720062,0.7596830985915493,0.6942598187311179,0.5869932432432432,0.1086398631308811,0.7031857031857032,0.9052924791086352,0.8523809523809524,0.7490196078431373,0.1225296442687747,0.5001296344309049,0.6924066924066924,0.6404858299595142,0.542518837459634,0.1048034934497816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0043099951322407,0.006710251152214,0.0088010813337805,0.0113128846838598,0.0136714173653487,0.0157470678225395,0.0179353876638034,0.0200896053681389,0.0221878489259483,0.0244615384615384,0.0264601351767775,0.0287392986499835,0.0307958691484756,0.0329134833780714,0.03516538071696,0.0369614324497958,0.0388748715073357,0.040780437044745,0.0428535680026692,0.0579125564286908,0.0725461857483976,0.0864586285438381,0.0993338454900392,0.1107265340579327,0.1258534726412398,0.1387865206724795,0.1510505455165359,0.162083533878817,0.1726433326175649,0.1859798480521579,0.1984364171864172,0.2104541298384638,0.2209831688152509,0.2313349038948457,0.2426220424447276,0.2522527552285137,0.2616309167435683,0.2707865168539325,0.2799281061464665,0.2878207871210982,0.2944387940003974,0.3011084690823485,0.3076213080168776,0.3141527318685592,0.3198741672834937,0.3259429058158907,0.3307396464775101,0.3356113755138563,0.3402142187355547,0.3407444382985038,0.3404675166970249,0.3405514591632059,0.3407161688443376,0.3407007764877714,0.3389463333691828,0.3376402530116652,0.3384493644801266,0.3403963519166152,0.3413109291868943,0.3423579145138563,0.3432175655036991,0.3442798613299716,0.3451775512490198,0.3466313125225985,0.3473552360324626,0.3480895087308165,0.350732340008225,0.3537817807879153,0.3559838134540646,0.358356290174472,0.3603632478632478,0.3607013989998101,0.3626145199784433,0.3670369315484667,0.3654981327550897,0.3662410464029897,0.3641846921797005,0.3717114568599717,0.3802103622906116,0.0,2.1475881875505807,56.72017992122113,198.26173539421015,289.0046130462812,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95811,42900,405.06831157174014,6670,68.35332059993111,5213,53.73078247800357,2135,21.76159313648746,77.39792083527668,79.70101199327848,63.37134666233783,65.07129387172677,77.12551179832725,79.43089859435322,63.27075490496893,64.97442384918875,0.2724090369494263,270.1133989252611,0.1005917573688961,96.87002253801325,113.4463,79.81084005161951,118405.88241433656,83299.83681583482,311.77294,199.7028706160493,324707.53880034655,207738.0494560525,319.85077,154.46809480427504,329496.2269468016,157848.47728966514,3005.12636,1369.7881389136082,3098962.2068447256,1392494.2621283862,1259.89863,554.4096700447176,1295372.35807997,559325.4008950228,2096.24748,880.3800114902142,2141116.009643987,881559.8146171004,0.37898,100000,0,515665,5382.085564288025,0,0.0,0,0.0,26644,277.34811242967925,0,0.0,29522,303.8064522862719,1861502,0,66719,0,0,0,0,0,62,0.6366701109475947,0,0.0,0,0.0,0,0.0,0.0667,0.175998733442398,0.3200899550224887,0.02135,0.3324779013401768,0.6675220986598233,24.814553806766316,4.511804764555308,0.3228467293305198,0.2234797621331287,0.2211778246690965,0.2324956838672549,11.186928758535927,5.670720502489971,22.75071259704877,12510.491029254645,58.85710005903106,13.74125563049387,18.97941550795001,12.819422037531483,13.317006883055702,0.5547669288317667,0.7811158798283262,0.6981580510992276,0.5845620121422377,0.1097359735973597,0.7038690476190477,0.9151670951156812,0.825287356321839,0.75,0.1654411764705882,0.5029723442750065,0.7139175257731959,0.6538461538461539,0.5392265193370166,0.0936170212765957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0043368561845798,0.0064607738729144,0.0086512393001837,0.0107860279765777,0.0130263988113411,0.0153043549143078,0.0173222884191626,0.0194129126521103,0.0214751230292303,0.0235951027099021,0.0258427888462564,0.0275135101814371,0.0295861032786547,0.0316635745207173,0.033772830991296,0.0357327595125281,0.0376650566945129,0.0397096543058598,0.041776380837401,0.056507724565265,0.0699627646222073,0.0832992544590896,0.09668397922493,0.1089419924736736,0.1245863509013057,0.1373441079155001,0.1489642545400353,0.1601918926426907,0.1709807875907789,0.1842309349418354,0.1969559291231258,0.2081136034968304,0.2190510557797242,0.2290585129784426,0.2406736870079394,0.2509507399600745,0.2599260117166856,0.2685526390384942,0.2770339855818743,0.284911485494259,0.2915205908474734,0.298754450503306,0.3050084411930219,0.3103690855943818,0.3164254774561921,0.3221442134719168,0.3266052715147666,0.3319189671677317,0.3364333324551466,0.3360381540941761,0.3356813313560718,0.3369523943463891,0.3362710593122548,0.3368399186907429,0.3357276033866185,0.3346505856503801,0.3354053566449623,0.3355311480450267,0.3364609583042911,0.3386005360925228,0.3396745041428543,0.3404567665625065,0.3412604042806183,0.3438096388452711,0.3457016418340359,0.3458333333333333,0.3496681170006669,0.3509106984969053,0.3544450668160358,0.3586000460511167,0.3579967689822294,0.3617891373801917,0.3624026524789883,0.3643314536939692,0.3674278846153846,0.3642147734326505,0.3648235054070597,0.3635365183964854,0.3641574321742453,0.0,2.533679628622058,58.747816824922445,193.65544891471868,294.3225709759687,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95557,43138,408.761262911142,6643,68.33617631361386,5183,53.6956999487217,2037,20.98224096612493,77.19945181010942,79.67229311800628,63.224607941291474,65.05461701154681,76.94971100632175,79.42177500876055,63.133050277472485,64.96525502371311,0.2497408037876738,250.51810924573203,0.091557663818989,89.36198783369775,113.01268,79.47282689397086,118267.29595947968,83167.98025677959,307.62899,196.728602406676,321396.2661029543,205339.47529398784,315.41504,152.1214133740551,327155.66625155666,156882.837394272,2977.95696,1344.5188416991152,3087607.2710528797,1378221.1263425122,1262.51797,548.5589679021263,1307638.8542963883,560483.7509571525,2010.25198,829.4046939980544,2072884.100589177,840987.1985716528,0.38062,100000,0,513694,5375.786179976349,0,0.0,0,0.0,26338,275.0609583808617,0,0.0,29180,302.40589386439507,1856852,0,66683,0,0,0,0,0,43,0.4499931977772429,0,0.0,0,0.0,0,0.0,0.06643,0.1745310283222111,0.3066385669125395,0.02037,0.3232845248349124,0.6767154751650876,24.70824414226252,4.440723093425612,0.3212425236349605,0.2218792205286513,0.226509743391858,0.2303685124445302,11.100700171511122,5.696204588196551,21.568756877311607,12628.572453583263,58.56761286801647,13.700480827547716,18.80974002955027,13.127235630835576,12.930156380082911,0.5624155894269728,0.7852173913043479,0.7171171171171171,0.5834752981260647,0.1113902847571189,0.743947175348496,0.940149625935162,0.8683602771362586,0.7542662116040956,0.1694915254237288,0.4976439790575916,0.7022696929238985,0.663961038961039,0.5266742338251986,0.0970772442588726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002311177788365,0.0044236115338568,0.0064789991063449,0.008611924516024,0.0109439263753715,0.0130379824257375,0.0152982599377455,0.0172082566932352,0.0191874744167007,0.0214492872441816,0.0235995770758697,0.0260146216569154,0.0280735721200387,0.0299766870912504,0.0320043816137566,0.0339516396157668,0.0358935534721646,0.0377784013552416,0.0397283389929376,0.0417797636447154,0.0566138396359642,0.0706773067122468,0.0836539472301061,0.0966892162441255,0.1088222548698381,0.12447785246284,0.1371775094419915,0.1499482385084152,0.1614831638829667,0.1713824810453298,0.1848891960775843,0.1974649476928419,0.2095933150063272,0.2207950332360748,0.2318567077208316,0.2422690718443151,0.2516505897361294,0.260590399241689,0.2697375907508136,0.2792957309719877,0.2870032123763467,0.2950579349814702,0.3014438077612082,0.3079325421611493,0.3137484166423073,0.3199490829996539,0.3250737833594976,0.3301861515495617,0.3359435873461119,0.3413349565953842,0.3413042597170996,0.3412311810893234,0.3414954458801101,0.3415181805012313,0.3416492693110647,0.3400952820039957,0.3389881661504249,0.339998022021494,0.3410983125332601,0.3430596680125617,0.3437023080546396,0.345076999503229,0.3461530347461024,0.347283158960513,0.347993509481485,0.3499711028214154,0.3516916266636005,0.3531534954407295,0.3549849477598725,0.3568266124207251,0.3614452341899034,0.3630816575582321,0.3637564473518682,0.3635184620079341,0.3626806833114323,0.3665120704007611,0.3663109756097561,0.3706827309236948,0.3737677984665936,0.3758620689655172,0.0,2.148765209086726,60.28043909337082,186.7211528270436,294.9602294216735,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95664,42865,405.0635557785583,6735,69.05418966382338,5231,53.93878575012544,2178,22.349055025924063,77.33990302576841,79.7307135762591,63.32261558699434,65.08904896542802,77.07180288455437,79.46514002398199,63.22425283681709,64.99464168218047,0.2681001412140347,265.5735522771181,0.0983627501772446,94.40728324754843,112.99244,79.47476821335994,118113.62686067904,83076.75636954333,310.15685,198.40751748120277,323429.81685900653,206615.8851696252,316.22098,152.9140515693385,325828.1171600602,156226.3307696629,3011.22804,1368.7106494589991,3105513.672854993,1388575.5608946497,1254.92569,554.2592122345178,1291516.808830908,559206.3794837887,2139.12558,888.301612249129,2194882.6099682217,892179.8804083222,0.37882,100000,0,513602,5368.801220939957,0,0.0,0,0.0,26492,276.1017728717177,0,0.0,29218,300.8028098344205,1863331,0,66863,0,0,0,0,0,63,0.6481016892456932,0,0.0,0,0.0,0,0.0,0.06735,0.1777889234992872,0.3233853006681514,0.02178,0.3226489692177351,0.6773510307822649,25.014183282060795,4.523959838471546,0.3188682852227107,0.2077996558975339,0.239151213917033,0.2341808449627222,11.13979847314268,5.568326378932721,23.10031063520829,12608.649368613593,59.19499874755154,12.857397297052811,18.91096245199199,13.983493394472736,13.443145604034012,0.5482699292678265,0.7617295308187673,0.6942446043165468,0.5811350919264588,0.1265306122448979,0.7223459539717891,0.908355795148248,0.8666666666666667,0.7418300653594772,0.18,0.4878990731204943,0.6857541899441341,0.6362179487179487,0.5291005291005291,0.1128205128205128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044498504890781,0.0068593925987559,0.0089078942022508,0.0113582054645475,0.0134062175532889,0.0155339014147673,0.0176165591573446,0.01959661838218,0.0218635167917131,0.0238766492726284,0.0260324173398893,0.0281036947155182,0.0303033424318895,0.0322936878173636,0.0341604631927212,0.036001036001036,0.037906230862647,0.0402155369699995,0.0421335723890632,0.0568061924808574,0.0709821288357046,0.0842583460981597,0.0972574350126766,0.1097104277651774,0.1250674424755355,0.1372856900356476,0.1495460399569988,0.1609010028944023,0.1714218319448465,0.1846770198375945,0.1975782890038306,0.2093157299460588,0.2208858614242447,0.2306693229722738,0.2419365557573878,0.2529819354406793,0.2623424842484248,0.2721290644641601,0.2807280808265939,0.2881191211689979,0.2945950370699534,0.3013205850333696,0.3083152636181759,0.3144456315866155,0.3198157136169898,0.3253055760593512,0.3303697485404663,0.3349612664196699,0.3389969239705863,0.3390166320726743,0.3393235836844859,0.3400936477490691,0.3388112647505972,0.3390607784163664,0.3378152548869298,0.3376697459950245,0.3376132309665116,0.3383850464734828,0.3400821281913944,0.3406832414594817,0.3408609599208312,0.3416123009796312,0.342394720301697,0.3441624365482233,0.344867328496215,0.3460204637299017,0.3489064033171905,0.3510209849501872,0.3533556245521853,0.3527719426431637,0.3544668587896253,0.3574093985200177,0.3605592909535452,0.3617442079487662,0.3601094847078424,0.3621036349574633,0.3587943848059455,0.3609701071630005,0.3606366459627329,0.0,2.79859717546321,58.80785111573432,197.17751276481908,292.65332007039694,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95783,42994,404.2888612801854,6765,69.36512742344675,5284,54.56083020995375,2088,21.35034400676529,77.331780499572,79.67166894662971,63.32970022966426,65.06222738986953,77.07245581680638,79.41460773270533,63.23456189685771,64.9704957520038,0.259324682765623,257.06121392437353,0.0951383328065489,91.73163786573468,111.936,78.73432452832337,116864.1616988401,82200.7292821517,309.29943,197.901462909211,322323.9301337398,206021.4891047587,315.01847,152.42163776687198,325515.4254930416,156465.4552385208,3020.1062,1369.8226167501327,3122112.692231398,1399172.7308083212,1256.39944,547.8990273938185,1299371.600388378,559683.587138558,2049.36042,856.3909634075618,2100232.003591452,862388.2009846861,0.37963,100000,0,508800,5312.007349947276,0,0.0,0,0.0,26491,275.9571113871981,0,0.0,29051,299.8026789722602,1868418,0,67051,0,0,0,0,0,66,0.6890575571865571,0,0.0,0,0.0,0,0.0,0.06765,0.1781998261465111,0.3086474501108647,0.02088,0.3112173179645769,0.6887826820354231,25.14171135540337,4.441525626558506,0.3319454958364875,0.2129068887206661,0.2312641937925813,0.2238834216502649,11.179361953905618,5.725361333886312,22.35939841717264,12640.454086450278,59.563879702883845,13.276875295849363,19.766753154937746,13.558620074604557,12.961631177492178,0.5649129447388342,0.7795555555555556,0.7029646522234891,0.5900163666121113,0.1301775147928994,0.7390659747961453,0.921875,0.8713968957871396,0.7644927536231884,0.1638655462184874,0.5052096569250317,0.7058029689608637,0.6446661550268611,0.5391120507399577,0.1216931216931216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385414028868,0.0047950204776773,0.0070829147513369,0.0094477630135316,0.0116653953724891,0.0139919958451715,0.0162517077547358,0.0184776838580587,0.0208644272249596,0.0230946409377079,0.0250645835896174,0.0274041522065014,0.029325271968248,0.0314273647778659,0.0335727702437715,0.035551833932928,0.0373043901529666,0.0393918021905078,0.0415038656579931,0.0436683950771537,0.0589984660816211,0.0729975106164885,0.0860491200117401,0.0989513281775386,0.110631124222948,0.1261451652102243,0.1390779014308426,0.1509644626868845,0.1620938050264126,0.172409359732579,0.1856512378902045,0.1975878853434289,0.2093460789751286,0.2210519408078222,0.2308386528725511,0.2412883782256545,0.2513947779513501,0.2610226301345211,0.2701467486221053,0.2788043229381325,0.286023171380339,0.2933144734227231,0.3009643258593149,0.3072433546655161,0.3131559766763848,0.3192895905278737,0.3249896643740369,0.3296060181053168,0.334388500408661,0.3393206449907481,0.3395649126590468,0.3396138124664529,0.338899692793326,0.3389286024368361,0.3382744712833564,0.3369415016121603,0.3362392022357723,0.3366970664735126,0.3370312580374136,0.3377582968065122,0.3392420767698034,0.340228245363766,0.341569675667712,0.3431330713082537,0.3439072783584979,0.345994547551641,0.3463741551151335,0.3493751577884372,0.3527258649209869,0.3552426913412834,0.3606647438538662,0.3654113619343104,0.3665943600867679,0.3661483990147783,0.3720930232558139,0.3758373205741627,0.3824941905499612,0.376902780596712,0.3854282536151279,0.3842500989315394,0.0,2.35429135724944,59.16645198986615,194.77923411302476,301.83560262088423,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95689,43353,409.2006395719466,6861,70.49922143611074,5346,55.30416244291403,2124,21.8520415094734,77.34192318165195,79.71624322332202,63.32298576779221,65.07447797189424,77.07674187022387,79.45009680262869,63.22550357220129,64.97904761467589,0.2651813114280799,266.1464206933317,0.0974821955909135,95.4303572183477,112.73658,79.2652221749822,117815.61098976896,82836.29484578394,309.97106,197.62195673601468,323385.7705692399,205975.09299503049,321.70076,155.10838189349803,332352.70511762064,159180.2018185143,3060.16572,1397.159506956706,3165857.7683955315,1427929.466246599,1294.29769,570.0130760958056,1334652.342484507,577737.113038913,2085.86304,875.7240913967355,2146855.2707207724,886203.1763772926,0.38325,100000,0,512439,5355.255044989498,0,0.0,0,0.0,26453,275.87287985034857,0,0.0,29693,306.51381036482775,1862833,0,66913,0,0,0,0,0,57,0.5956797542037225,0,0.0,0,0.0,0,0.0,0.06861,0.1790215264187867,0.3095758635767381,0.02124,0.3155191560244308,0.6844808439755691,24.97111814446546,4.524182295700997,0.3264122708567153,0.2220351664796109,0.2227833894500561,0.2287691732136176,11.316562790332306,5.781204294758285,22.75582787111149,12707.643476381816,60.35863458358026,14.006392377917535,19.77917076443725,13.076871780996646,13.496199660228834,0.5506921062476619,0.7792754844144903,0.6859598853868195,0.5650713685978169,0.1218315617334423,0.706983441324694,0.9211822660098522,0.8701298701298701,0.6666666666666666,0.158273381294964,0.4958301743745261,0.70550576184379,0.6196414653156664,0.5390295358649789,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021364276095298,0.0043178155502174,0.0066344076204388,0.0088772421638531,0.0109627490262678,0.0135102115615646,0.0158228493362967,0.018002103478909,0.0201132970673647,0.0223928735985255,0.0245670518512442,0.0266373662483826,0.0287063131261185,0.0307969707897583,0.0330002683787856,0.0349719769197361,0.036916957562072,0.0388711284563646,0.0410565723793677,0.0429522648410391,0.0571055517835692,0.0713687384821578,0.084575339015072,0.0976282172696087,0.1095893301819102,0.1251600613789089,0.137463502680894,0.1493332197179498,0.1610337972166998,0.1721869231099471,0.1859738019513772,0.1990318074011501,0.2108757646341729,0.2222830190744044,0.2327176258200871,0.2436235513107452,0.2541419193497968,0.2641823810864058,0.2729799641487599,0.2813806692557079,0.2892592592592592,0.29644412191582,0.3034081758325044,0.3102476126493593,0.3157894736842105,0.3213479542623133,0.3273750579741028,0.3331337579617834,0.337602678397633,0.3421449352023274,0.3424187579351144,0.3421655804705622,0.3431110734319585,0.3427686608202367,0.3430375984544508,0.342678125526602,0.3414537563556302,0.342478370999046,0.3426487208466043,0.3441371542985859,0.3444275496987103,0.3455024986118823,0.3461902060881074,0.3473743267504488,0.3473286120344944,0.3488444884970525,0.3483876486185955,0.3505900865460267,0.3534591636261577,0.3560419480416302,0.3586106564829969,0.3610299973453676,0.3631065501076904,0.3622472251786529,0.3631593741216153,0.3621196099165785,0.3633207547169811,0.3626175705423254,0.366932161494095,0.3721280602636534,0.0,2.1829958857254117,61.27365605229664,197.0633504800197,301.39560179540683,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95739,43189,406.5114530128788,6659,68.4256154754071,5118,52.872914904062085,2045,20.952798754948347,77.32392886815877,79.6868397902338,63.31606620966248,65.06454720241562,77.06918629680344,79.43241343622995,63.22311074453332,64.97384080198495,0.2547425713553366,254.42635400385427,0.0929554651291653,90.70640043067613,111.60182,78.53000880915165,116568.81730538234,82025.0982453876,307.0525,196.918526124683,320115.6059703987,205079.96336360625,314.48411,151.66665667170395,324702.56635227025,155534.3608484363,2920.72808,1323.514764072885,3019682.887851346,1351383.327664677,1229.80514,539.1996967211978,1271520.6028891047,550178.784738923,2004.08618,834.7640324714804,2056418.5755021465,842632.5215867774,0.38176,100000,0,507281,5298.582604790106,0,0.0,0,0.0,26315,274.23516017505926,0,0.0,28997,299.0526326784278,1868120,0,67113,0,0,0,0,0,54,0.5640334659856484,0,0.0,0,0.0,0,0.0,0.06659,0.1744289606035205,0.3071031686439405,0.02045,0.3259684361549498,0.6740315638450503,25.29478058584128,4.445408037664197,0.3241500586166471,0.2250879249706917,0.2246971473231731,0.226064869089488,11.34539752515044,5.834151024668908,21.87124038020853,12727.165696134934,57.918483143171045,13.629657274269146,18.70195772617097,12.809049857075893,12.77781828565502,0.5488472059398203,0.7552083333333334,0.6913803496081977,0.58,0.1080380293863439,0.7052551408987052,0.900804289544236,0.8697788697788698,0.7518248175182481,0.1158301158301158,0.4948751642575558,0.6854942233632862,0.6333865814696485,0.526255707762557,0.1057906458797327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025119774732342,0.0047856107230125,0.0071142955731016,0.0093986872320104,0.0113012165846116,0.0135641547861507,0.0157005077177171,0.0179039880776179,0.0200595037266509,0.0221050476092966,0.0244112490644575,0.0266024620881546,0.0287556030760373,0.0310967821680194,0.0331138812069179,0.0352890101711734,0.0373915024962194,0.0395329527763362,0.0418018467681557,0.043713797558028,0.05910049485311,0.0731367954136502,0.0862229865050488,0.0993291836648862,0.1113876001687051,0.1273652257607327,0.1401652997782564,0.1522884793509853,0.1630691345630093,0.1747207512381279,0.188609379877504,0.2014856784490122,0.2128788208182964,0.2228125409943591,0.2327857315651734,0.2435781035475441,0.2538159421583504,0.2637193235138572,0.2722318722114369,0.2816928863000504,0.2886494003128802,0.2957919776884587,0.3026501452540464,0.3084005569960626,0.3148425422098869,0.3205935362812631,0.3265902478177987,0.3319771964953003,0.3363058151609553,0.3413372492988305,0.3412935189060032,0.3408442158390446,0.3412498941007031,0.341749598018339,0.34272950636587,0.3417849587638348,0.3408774152676592,0.3413993499031421,0.3428864393745193,0.3439944283724419,0.3445431709968882,0.3457914324174519,0.3465637324830075,0.3475348878883587,0.3482420415933682,0.3473365206259634,0.3486042130501798,0.3512505138014987,0.353280486941751,0.3550305303907092,0.356277155270981,0.3572417465388711,0.358699084306915,0.3593427588842185,0.3579017264276228,0.3595115527355441,0.359579652756625,0.3581821805860076,0.3617363344051447,0.3643292682926829,0.0,2.27330076045837,57.766719230015084,193.6935404617325,286.4720809781565,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95801,43424,409.10846442103946,6698,68.76754939927558,5249,54.28962119393326,2118,21.79517959102723,77.4066300966336,79.74575376698093,63.35719594835807,65.08779673227042,77.14260785390924,79.48143094735141,63.260524851354816,64.99380922086453,0.2640222427243657,264.32281962951265,0.0966710970032522,93.98751140588502,112.49634,79.18357100687008,117427.1041012098,82654.22177938651,310.05948,198.12475779590105,323152.7854615296,206311.91511143,320.77619,154.07945875050828,331944.45778227784,158564.01974341678,3018.9704,1358.4655474725566,3124594.7328315987,1391309.2216913784,1237.4906,537.9223954880284,1282364.7039174957,552134.1170635254,2081.8904,863.8050666610384,2143867.183014791,874844.2154483318,0.38284,100000,0,511347,5337.595640964082,0,0.0,0,0.0,26446,275.529482990783,0,0.0,29517,305.32040375361424,1866081,0,67032,0,0,0,0,0,62,0.6262982641099779,0,0.0,0,0.0,0,0.0,0.06698,0.1749555950266429,0.3162137951627351,0.02118,0.3233498935415188,0.6766501064584812,25.24516227603395,4.515943922886553,0.3232996761287864,0.2088016765098113,0.2408077729091255,0.2270908744522766,10.929350103135388,5.420509903909581,22.357250004978013,12727.10967745966,59.1255842442485,12.90533060136192,19.26064383147468,13.952834762396613,13.006775049015284,0.5427700514383692,0.7828467153284672,0.6847377725397761,0.5514240506329114,0.110738255033557,0.7007575757575758,0.904632152588556,0.8552338530066815,0.6944444444444444,0.1349206349206349,0.4896920335963349,0.7215363511659808,0.6233974358974359,0.5158102766798419,0.1042553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.004735251769382,0.0070529018378137,0.0091340438718592,0.0113607469411417,0.0135842447200668,0.0158642768295915,0.0180370540499157,0.0199315173506413,0.0220436985109757,0.0239103030551484,0.0262172284644194,0.0281720540623875,0.0303691655170993,0.0324505973672545,0.034592428904814,0.0367259109060437,0.039164869795986,0.0414116962588179,0.0433107756376887,0.058578017070473,0.0725572834419217,0.0856244431633562,0.0983079348397267,0.1106966746744215,0.1264054442471891,0.1397029986326489,0.152399281225744,0.1635046310128473,0.1740257514407524,0.1873211250026898,0.1996475218406712,0.2124811196714008,0.2236648139857391,0.2343358671294872,0.2451844885766443,0.2546752160579871,0.2642026932847732,0.2733282683388708,0.2818552264090472,0.2897630693447116,0.2970177857760535,0.3038128926167351,0.3095819858665708,0.3159160472234368,0.3219774937448387,0.3268091713938665,0.3316236923155242,0.3363480874883383,0.3417910447761194,0.3420598311348493,0.341381115028647,0.3427310165858062,0.3431039222210969,0.3428146827165998,0.3421588594704684,0.3413153776850491,0.3411082537550572,0.3414480623320064,0.3414452048706781,0.3429880329094988,0.342729853335436,0.3437930890402373,0.3460070955217886,0.3464425313541642,0.3467939050392636,0.3479250220439742,0.3514826656635947,0.3530792405240664,0.3549881235154394,0.3573082686282522,0.3589594458837836,0.3606064402957022,0.3622356495468278,0.3671380721994789,0.3680393074403369,0.365823754789272,0.3609098228663446,0.3706158519745927,0.3692722371967655,0.0,1.9962106551369616,58.612267634448415,196.60402479208892,297.183284215074,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95687,43213,407.6415814060426,6663,68.400096146812,5260,54.375202483095926,2139,21.98835787515545,77.29491858535671,79.69683061938925,63.29396199958445,65.07389269230528,77.02982877842703,79.43226031838823,63.195973756599045,64.97895148422576,0.2650898069296801,264.5703010010152,0.0979882429854086,94.94120807951845,112.07812,78.88475755557957,117129.93405582786,82440.41254880973,308.24802,197.37639018568652,321533.10272032773,205664.04024129352,321.20836,155.57845478601675,331932.916697148,159780.97570200625,3016.02644,1380.532658442379,3118222.872490516,1409228.725306797,1314.05152,576.86888366758,1355677.657362024,585361.8004320795,2099.14498,876.4916135884471,2158815.1159509653,885429.5879885954,0.38036,100000,0,509446,5324.087911628539,0,0.0,0,0.0,26307,274.30058419639033,0,0.0,29610,305.65280550126977,1866287,0,66972,0,0,0,0,0,53,0.5538892430528704,0,0.0,0,0.0,0,0.0,0.06663,0.1751761489115574,0.3210265646105358,0.02139,0.3234455219623502,0.6765544780376498,24.973425287510818,4.490337965893117,0.3237642585551331,0.2068441064638783,0.2408745247148289,0.2285171102661597,11.26485505367896,5.859603584256092,22.835944176849925,12637.5747449868,59.63446311053978,12.947685269667389,19.328419671308197,14.153903791639788,13.20445437792442,0.5568441064638783,0.7922794117647058,0.6970052847915443,0.5872138910812944,0.1131447587354409,0.7165932452276065,0.9184210526315788,0.8657718120805369,0.7073170731707317,0.1491935483870967,0.5010261672652643,0.7245762711864406,0.6369426751592356,0.5520408163265306,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022605857248573,0.0044648746283499,0.007078657390951,0.0092623659193736,0.0115129737268035,0.0136577211990256,0.0158067676231682,0.0179297521505486,0.0200720219339526,0.0221575717841813,0.0242804094946966,0.0263501227617805,0.0282980037044659,0.0305781716994743,0.0327119203930798,0.0347174104141889,0.0368612495725255,0.0392046929346415,0.0413315994798439,0.0432253827953178,0.057963899218652,0.0725555683519521,0.0855082958158864,0.098258536328721,0.1105612998522895,0.1261811294401472,0.1390979438895198,0.1510679528950786,0.1623158052210337,0.1729221657117105,0.1863183409641799,0.1988228802648519,0.2099832561376041,0.2205388861562004,0.2300112179134681,0.2414205508122653,0.2513641080574432,0.260424286759327,0.2696610073249673,0.2784746267972207,0.2857159401491638,0.2925847011168606,0.299607991757168,0.3056042241689667,0.3118607790438896,0.3177630116345132,0.3235463731414387,0.3289177037027602,0.3339982125973033,0.3388107965419389,0.3389716378915614,0.3387212149558423,0.3392492141135341,0.3399034012031467,0.3402400749676479,0.3388384086444008,0.3382350605834431,0.3400609103629928,0.3418213576272347,0.3434157005393589,0.3443555220789003,0.3457609602925394,0.3472657977300962,0.348191417658953,0.3502896057000218,0.3511107609894438,0.3528753122218713,0.3566404764922063,0.3586511299435028,0.3599840095942435,0.3608683653757704,0.3629312650441294,0.3647297126218509,0.3683080227028685,0.3660384506108533,0.3657019851710117,0.3678899082568807,0.3642842598248829,0.3662551440329218,0.3630500758725341,0.0,2.3212946013722533,59.89424722833687,199.16724427211605,293.5687677904289,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95723,43092,406.4226988289126,6815,69.82647848479466,5342,55.22183801176311,2181,22.37706716254192,77.3593554540744,79.72992127704676,63.33143217950936,65.08369484348589,77.08788067209899,79.46008799996528,63.232829046708105,64.98825195454555,0.2714747819754137,269.8332770814744,0.0986031328012586,95.44288894034024,112.44354,79.09408523011648,117467.17089936588,82627.68774924793,310.07979,197.9189614540994,323341.19281677343,206170.25145449373,319.18606,153.9275247453997,330394.35663320206,158317.9064649156,3061.60144,1389.6775270860317,3167203.0755408835,1420693.9814521817,1281.81204,562.2707210752031,1324915.7673704335,573224.6179864847,2144.19732,886.6408312257803,2202823.4384630653,895363.7811244646,0.38086,100000,0,511107,5339.416859062086,0,0.0,0,0.0,26508,276.30767945007995,0,0.0,29467,304.76479007135174,1866728,0,66948,0,0,0,0,0,50,0.522340503327309,0,0.0,0,0.0,0,0.0,0.06815,0.1789371422569973,0.3200293470286133,0.02181,0.3287823906380607,0.6712176093619393,25.09243388356976,4.5409201106378125,0.3333957319356046,0.2098464994384125,0.2280044926993635,0.2287532759266192,11.244219209230891,5.718161164046069,23.21300248075636,12666.544077779768,60.36254416298932,13.321839009629567,20.094024663757008,13.497760288030712,13.448920201572037,0.5473605391239236,0.7698483496877788,0.6788321167883211,0.5853858784893268,0.113747954173486,0.7293946024799417,0.909560723514212,0.8469827586206896,0.778169014084507,0.1440677966101695,0.4845127171996978,0.6961852861035422,0.6195899772209568,0.5267665952890792,0.1064908722109533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022383826925414,0.0044704856711303,0.0066161324038276,0.0087343340578091,0.0110531507072186,0.013478982357193,0.0155869310362403,0.0180470775575199,0.0202817362147574,0.0223999017188955,0.0245808337178895,0.0267566429400466,0.0290135396518375,0.0309811557918379,0.0329900524208527,0.0354772684984184,0.0373023843294785,0.0390092622364204,0.0407713498622589,0.0428836298487563,0.0572013324005137,0.0714308141542905,0.0842643001751791,0.0966351209253417,0.1092341273607288,0.12526842478288,0.1383503644987744,0.1504466234416089,0.1617401897922544,0.1733284688764177,0.1873787872257897,0.2005347593582887,0.2123803307223672,0.2223742093628942,0.2321562321011587,0.2430637184235622,0.252956746071632,0.2620673363555575,0.2711066224864963,0.279405194239824,0.287021717247683,0.2941479099678457,0.3002494591111689,0.3070385444098635,0.3131044692805222,0.3188337991406163,0.3247944536910735,0.3302937809996185,0.3358015741507871,0.3407367352052861,0.3407546915988431,0.341201392041156,0.3417614715022992,0.3418670356916335,0.3420095864187454,0.341131140773359,0.3406477093206951,0.3403129352011141,0.3413647765472757,0.3420569411513023,0.3432177957836296,0.3440543108225793,0.3455340990365602,0.3455195842426151,0.3466016134486256,0.3475529965977493,0.3491308954497293,0.3509610817315304,0.3527560725524166,0.3556522086109892,0.358627334036794,0.3608462774504553,0.362341064468724,0.3654760079717921,0.3662982903560971,0.3644581896039015,0.3650915807295675,0.3690427698574338,0.3739972337482711,0.3735498839907192,0.0,2.271110517285448,60.363850063056994,202.69134521014027,297.1566824341582,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95894,43232,406.5322126514693,6705,68.69042901537114,5209,53.79898638079546,2098,21.492481281414893,77.4394230829848,79.71849659210561,63.39129033748679,65.07673213001179,77.17795155682326,79.45921879970153,63.29437597258697,64.9833602843368,0.261471526161543,259.27779240407745,0.0969143648998169,93.37184567499436,113.70414,79.9506841997978,118572.73656328864,83374.02152355497,309.06958,197.87566977919693,321782.8956973325,205827.87221223116,314.34734,152.38954679651803,324932.769516341,156653.41931537713,3018.9014,1366.9389019887003,3119227.0215029093,1396530.608785427,1276.50055,558.8377420999967,1319041.201743592,570649.4275971344,2061.01102,860.8465092421297,2112919.3067345195,865645.4092106451,0.38162,100000,0,516837,5389.669843785847,0,0.0,0,0.0,26449,275.2726969362004,0,0.0,29015,299.70592529251047,1862958,0,66889,0,0,0,0,0,50,0.5214090558324816,0,0.0,1,0.0104281811166496,0,0.0,0.06705,0.1756983386614957,0.3129008202833706,0.02098,0.3194385367928541,0.680561463207146,24.9683685767373,4.495404608551687,0.338644653484354,0.2023421002111729,0.2307544634286811,0.2282587828757919,11.17958848024117,5.752118210785689,22.20942568014392,12603.92513435979,58.411972153638565,12.42304596377524,19.64856499589036,13.38280472030443,12.957556473668552,0.5482818199270494,0.7618595825426945,0.6927437641723356,0.5715474209650583,0.1211101766190075,0.7087529047250194,0.8938547486033519,0.8793969849246231,0.7050847457627119,0.1541666666666666,0.4954058192955589,0.6939655172413793,0.6383601756954612,0.5281146637265711,0.1127502634351949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020753188904636,0.0045097085410839,0.0069081650250053,0.0091279229152494,0.0112413225324483,0.0132272440528275,0.0155844155844155,0.0177478580171358,0.0198806750847942,0.0220544610159782,0.024477960613947,0.0264818443922308,0.0286389559677336,0.0308404961655257,0.0330003402096928,0.0351076462388352,0.0374815075366487,0.0394665948275862,0.0417233324682065,0.0435148968042609,0.0585396362120185,0.072275686237631,0.0853980354786688,0.0983305333893322,0.1103765540618782,0.125691541027915,0.1382042346760441,0.1500233764025841,0.1614859823046583,0.1725348344427559,0.18526322579258,0.1974217390834531,0.2087239936987343,0.2194303576112617,0.2302861667729802,0.2408811645541595,0.2509224680898501,0.2610024381200633,0.2690363957757331,0.2778254256864158,0.2855624487343892,0.292733919665487,0.300180895967084,0.3067222361944454,0.312788382145806,0.3185508210453699,0.3238388311379642,0.328944525640211,0.3336307907193295,0.338238393845181,0.3383160217426403,0.3382070026933436,0.3385749247517511,0.3388501364758892,0.3391621886411542,0.3375170281481028,0.3372473928249276,0.3385087057743384,0.3399225004694355,0.3407510431154381,0.340828247275995,0.3420044244291696,0.3432542174222445,0.3438378161380971,0.3455734406438632,0.3457002265094118,0.3464070836644341,0.3484763156248044,0.3508545517963027,0.3545967710101448,0.3555646110658335,0.3577636459989401,0.360645444842092,0.3635393643777151,0.3662465649578319,0.3640817301947664,0.3674801803202238,0.3657683604196667,0.3609796827163929,0.3595419847328244,0.0,1.974848483095476,56.6071525715028,196.57480826650536,296.071543935695,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95736,43068,405.6781148157433,6669,68.34419654048634,5261,54.34737193950029,2150,22.112893791259296,77.34647984393533,79.70032848763834,63.33814763576003,65.07630405963216,77.07458080951982,79.42668807213273,63.23824738677462,64.9778459620867,0.2718990344155116,273.6404155056107,0.0999002489854135,98.45809754546052,112.27766,79.01119555558506,117278.41146486173,82530.2869929651,308.16442,197.24847347242692,321277.5549427593,205421.5065100139,318.56668,153.68180440082793,329006.9252945601,157623.87719750256,3042.8548,1390.3760256238777,3145160.357650205,1419081.5843819212,1279.88199,565.2533943776376,1323027.4191526698,576569.8737963114,2119.0236,890.0455324659501,2180956.797860784,902230.5523130957,0.38096,100000,0,510353,5330.836884766441,0,0.0,0,0.0,26342,274.5153338347121,0,0.0,29415,303.48040444555863,1866067,0,67015,0,0,0,0,0,63,0.6580596640762095,0,0.0,2,0.0208907829865463,0,0.0,0.06669,0.1750577488450231,0.3223871644924276,0.0215,0.3348604151753758,0.6651395848246242,24.817849174539685,4.496960132051453,0.3208515491351454,0.2100361148070709,0.2303744535259456,0.238737882531838,11.202916126613774,5.658244159378023,23.036685456223022,12614.116053700169,59.64018567673317,13.110712536561897,19.094236382135847,13.61950742595875,13.815729332076662,0.5527466261167079,0.746606334841629,0.7109004739336493,0.6105610561056105,0.1138535031847133,0.7170626349892009,0.9083969465648856,0.8722358722358723,0.767515923566879,0.1563636363636363,0.493801652892562,0.6573033707865169,0.6596409055425448,0.5556792873051225,0.1019367991845056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0045819014891179,0.0066672755502785,0.0089087990898193,0.0110134846543413,0.0132554161915621,0.0153007135575942,0.0176670511027873,0.0200243276670993,0.0224627071964616,0.0246007503228848,0.0267387912629331,0.0289932554696496,0.030982201713909,0.0329753097883843,0.0349364838186197,0.0367348629172533,0.0387915382779835,0.0408840008731899,0.0430901591534038,0.0573993840371665,0.0714420279237226,0.0847365163293781,0.0973555543872562,0.1098085519102639,0.1254717479782229,0.1380839237982095,0.1507779409573675,0.1625104084377735,0.1728646447326117,0.1863151435553498,0.199643127500811,0.2115890369275576,0.2225196970855962,0.232068855594517,0.2427274739871596,0.252422637301366,0.261348299442145,0.2701506762276481,0.2780876676555144,0.2853556388541811,0.2922182719745521,0.2994387743020199,0.3058047493403694,0.3119037491644892,0.3176754731861199,0.3236527508293171,0.3284034598285372,0.3335711968861498,0.3383045110793802,0.3379342913040545,0.3381033127920923,0.3379530315005081,0.3377020216648323,0.338129067810494,0.3366037156456318,0.3359012157813812,0.3372062448644207,0.3377512928524949,0.3394700588624693,0.3408510478479681,0.3423544795340175,0.3441260624421442,0.3456640388114008,0.3465365665153125,0.347630686746038,0.3491506912309947,0.35081998353701,0.3531717999434868,0.3568724345434982,0.3593033913840513,0.3629109992502945,0.3645839914081749,0.3666462293071735,0.3696084936960849,0.3739837398373983,0.3772307692307692,0.3785276073619631,0.3763744009021708,0.3702094033978664,0.0,2.3594183358562173,61.036694705103685,195.12673562018372,294.064871323379,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95726,43472,409.9722123560997,6735,68.97812506529051,5227,53.893404090842616,2114,21.64511209075904,77.41222784566315,79.76707633410678,63.350809200748486,65.0892982944205,77.14194434635831,79.49963421619664,63.24996176624048,64.99243937943693,0.2702834993048384,267.44211791013583,0.1008474345080046,96.8589149835708,112.62152,79.22523635291495,117649.87568685623,82762.50585307539,308.76317,197.73808223307597,321785.4292459729,205814.48813218824,320.49764,155.01961562822507,330432.8082234712,158541.17477187092,2993.89148,1370.6032661921993,3089611.1401291187,1394455.115287289,1245.24519,549.3184266893809,1285580.4379165536,559087.2739502138,2070.93204,874.9554477703405,2122363.683847649,879952.0877753837,0.38273,100000,0,511916,5347.721622129829,0,0.0,0,0.0,26336,274.34552786076927,0,0.0,29526,303.97175271086223,1865213,0,66838,0,0,0,0,0,75,0.7834862001963939,0,0.0,0,0.0,0,0.0,0.06735,0.1759726177723199,0.3138827023014105,0.02114,0.3231638418079096,0.6768361581920904,25.125742294967782,4.4516675694309065,0.3309737899368662,0.2121675913525923,0.2318729672852496,0.2249856514252917,11.072212100565764,5.686307344178038,22.597896642255872,12721.721811038016,58.94133347884384,13.024747007753405,19.48307723773985,13.448418079566412,12.985091153784172,0.550411325808303,0.7655545536519387,0.6982658959537572,0.5701320132013201,0.1096938775510204,0.6988929889298893,0.8978494623655914,0.8614318706697459,0.7491039426523297,0.1143911439114391,0.4984504132231405,0.6987788331071914,0.643793369313801,0.5166130760986066,0.1082872928176795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0045203466274768,0.0068173517834679,0.0093326021610203,0.0115291940747669,0.0137730951290273,0.0163585217196322,0.0185810638449843,0.0206538512636559,0.0228454452405322,0.0251086332704763,0.0272747803235608,0.0295151739452257,0.0316677308397355,0.0336181277860326,0.0358578915270355,0.0379915919398595,0.0399240529968977,0.041659735506945,0.0432527032939558,0.0577862691054873,0.0719502752024778,0.0857688353649581,0.0988438759086462,0.1111591786776964,0.1262950694760458,0.1392547467178926,0.151387380480845,0.16294776438403,0.1744674000536624,0.1879481180390085,0.2007363690508419,0.2122911109901475,0.2232028469750889,0.2333671243140798,0.2441981718139865,0.2541471048513302,0.2639915284787311,0.2727530865599764,0.2810159967891749,0.2886664813270317,0.2959914772062094,0.3028602547710375,0.3094225215401023,0.3143148737637596,0.3197978926612853,0.3256355084067254,0.3312065481259294,0.3357382984225497,0.3408791613990729,0.34093106968248,0.341188580839967,0.3412725177753422,0.3409166270201692,0.340814937562881,0.3395835238879234,0.3381465075586802,0.3382525985487351,0.3392787242371122,0.340702927679556,0.3412899854428726,0.3427632097015513,0.3437866108786611,0.3451128154820297,0.3471718941230112,0.3487894312537383,0.351179312304632,0.3546841231559495,0.3580877721005109,0.3589551355403859,0.3612117370041659,0.3654731051991326,0.3693784105877187,0.3711301188403603,0.3728008936051382,0.3768968356663922,0.3769056603773585,0.378,0.3798155181768855,0.3838575217885562,0.0,2.69518276465114,59.06082355338919,196.53247595378875,289.3011785744779,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95716,42854,404.6449914329893,6629,67.88833632830458,5136,52.93785782941201,2049,20.90559572067366,77.32373385663094,79.69228008324278,63.321321634088775,65.07456658186045,77.07196802641546,79.44384448832665,63.22792996441359,64.98541273851664,0.2517658302154757,248.4355949161312,0.093391669675185,89.1538433438086,112.67564,79.33215201845604,117718.70951565048,82882.85346071298,307.54184,196.21404834029263,320577.51055204985,204266.97557387748,316.29404,152.50500715524603,325347.3818379372,155470.29937117186,2988.2314,1356.2455999365452,3083092.314764512,1378127.9768802586,1277.23357,559.5372237099283,1315011.0744285178,565228.823946327,2017.91386,842.3308829419665,2062092.043127586,843081.8020690075,0.37778,100000,0,512162,5350.850432529567,0,0.0,0,0.0,26264,273.65330770195163,0,0.0,29157,299.5110535333696,1865871,0,66979,0,0,0,0,0,60,0.6268544443980109,0,0.0,2,0.0208951481466003,0,0.0,0.06629,0.1754724972206046,0.3090963946296575,0.02049,0.3173145890116196,0.6826854109883804,25.026113308464392,4.512713933531472,0.334696261682243,0.2079439252336448,0.2223520249221184,0.2350077881619937,11.258093146199313,5.758072619262723,21.88882318716749,12523.952098052294,57.93567506355309,12.594116275361548,19.389291357243835,12.66533285999737,13.286934570950338,0.555101246105919,0.7734082397003745,0.6986620127981384,0.5980735551663747,0.1168185584092792,0.7136397889977393,0.9183098591549296,0.8642533936651584,0.7689243027888446,0.1648745519713261,0.4998687319506432,0.7012622720897616,0.6413469068128426,0.5499438832772167,0.1023706896551724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025734549138804,0.0049489387163183,0.0070645554202192,0.009470967217446,0.0119648380270226,0.0138332874940154,0.0160221107167625,0.0179853543451839,0.0202161708915771,0.0222540836704388,0.0245720907813637,0.0264768712513351,0.0282913078814439,0.0303074021785055,0.0324528535595949,0.0343330335266569,0.0364159874056198,0.0384834870666846,0.0404071913570619,0.042201567189063,0.0564674435116735,0.0703557560470154,0.0832738869539675,0.0960846605373335,0.1087009248225753,0.1244964207543379,0.1373464321330815,0.1490396382016493,0.1601747321876769,0.1705823691519135,0.1839844086484624,0.1961834290721448,0.2077180697214188,0.2190417878463187,0.2297893405203234,0.2401311054269231,0.2503484339982383,0.2597598103647782,0.2682357209260141,0.27687467825888,0.2840935348213873,0.2913337071825786,0.2987576391597811,0.3051133709439793,0.3110976202039825,0.3159743188455803,0.3210096027443567,0.3263486402139991,0.3313838892058717,0.3360839714813837,0.3366978411449209,0.336480284466006,0.3362497177692481,0.336684581842414,0.3367685823640668,0.3363554082869284,0.3355451738063187,0.3365135144011297,0.3369869562248173,0.337468982630273,0.3380913080991859,0.3384237526491968,0.3393615679017538,0.3411622058559367,0.342137057800116,0.3427366546178427,0.3455905534378493,0.3484934801873655,0.3523173189097465,0.3533416089376526,0.3559843785894785,0.3567939013260321,0.3620470438652257,0.3629989212513484,0.3659642823396012,0.366722448003825,0.3666717720937356,0.3735185941969758,0.3648947951273533,0.3667577058134998,0.0,2.86333683735014,57.76333114696688,189.14354990618585,290.3225185638536,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95778,43009,404.8006849172044,6784,69.4627158637683,5255,54.26089498632253,2176,22.31201319718516,77.38153749659537,79.72337125077172,63.350937847410606,65.08314394739448,77.11287786282207,79.4547464329213,63.25165973204419,64.98614856866558,0.2686596337732965,268.6248178504229,0.0992781153664168,96.99537872889152,112.23916,78.99173079706844,117186.55641170204,82473.57016501726,307.26467,196.31832414036464,320139.26997849194,204304.36867945464,312.60141,151.875554687941,322607.27933345863,155619.9020669109,3056.42848,1393.4686725714644,3159919.313412266,1423785.3347547736,1279.77053,567.4703147502274,1320773.4344003843,577162.435900148,2143.81064,900.1279227004053,2201168.639979954,909982.4272373228,0.37954,100000,0,510178,5326.661655077366,0,0.0,0,0.0,26297,273.8729144479943,0,0.0,28978,298.7638079726033,1869267,0,67071,0,0,0,0,0,49,0.5115997410678861,0,0.0,0,0.0,0,0.0,0.06784,0.1787426885176793,0.320754716981132,0.02176,0.326507713884993,0.673492286115007,25.0579666449773,4.45432631202156,0.314557564224548,0.2108468125594671,0.2344433872502378,0.2401522359657469,11.129166486417352,5.679185694756597,23.23552789214481,12608.43044142588,59.22666896698704,12.940855223670884,18.6312785413703,13.828560509606849,13.825974692339004,0.538534728829686,0.7815884476534296,0.677555958862674,0.5535714285714286,0.1283676703645007,0.7159676232523915,0.9353932584269664,0.8787878787878788,0.7287066246056783,0.1245136186770428,0.4766427104722792,0.7087765957446809,0.6070261437908496,0.492896174863388,0.1293532338308457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876076080131,0.0046120785776552,0.0070106732681303,0.0093131430080334,0.0114382739898733,0.0138033531154249,0.0160027724548456,0.0180344767756355,0.0203560260786036,0.0226430924754947,0.0248806181214518,0.0270678080926279,0.0290561381863047,0.0309401480596769,0.0328413322193685,0.0349327382059388,0.037139368351339,0.039265686061096,0.0413545940892328,0.0432913052984476,0.0577314423468269,0.0715690170895475,0.0847372338529599,0.09734671360269,0.1087893444609532,0.1243210111385877,0.1367904531773284,0.149032992036405,0.1609426028303699,0.1718120229825915,0.1849351935581105,0.1973520535646681,0.2087658843607665,0.2197387835400841,0.2297393925393001,0.2404202787834501,0.2507945712660726,0.2607869589657111,0.2695557496228918,0.2779945756039504,0.285978670738196,0.2933473634981878,0.2997976498988249,0.3064767335985048,0.3124127126774589,0.3178900947289323,0.3238055941083061,0.3287402827079914,0.3337131462754593,0.3386498858854105,0.3391224739825249,0.3391260078703321,0.3392177321564535,0.3389506878245649,0.339373651714647,0.3384931338891613,0.3381868827551278,0.3387004213874633,0.340231491740961,0.3416360589095318,0.342681053538646,0.3437518545627188,0.3444260265637131,0.3446928879310345,0.3451176016965491,0.3456812715674997,0.3463658432100528,0.350452887155617,0.3536555403460742,0.3557780161283915,0.358445822692448,0.3616261722080136,0.3656077610804641,0.3673438098888463,0.3718640537726024,0.3752977608384945,0.3788762665029168,0.3792613636363636,0.3817727146429563,0.3894009216589861,0.0,2.2446187226128376,59.58698575037469,196.5460018028988,293.17092960219105,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95866,42834,403.22950785471386,6583,67.72995639747147,5052,52.19785951223583,2007,20.55994826111447,77.37299817448195,79.6745620347643,63.35320242165369,65.05702884646716,77.12247373993947,79.4248929919971,63.26161925125826,64.96864268549594,0.2505244345424842,249.66904276720925,0.091583170395431,88.38616097122554,113.82162,80.07928614456371,118729.9146725638,83532.52054384632,310.14203,198.8109738313157,322989.89214111364,206857.94111709652,311.03506,149.53556031160457,321721.71572820394,153864.08192894908,2887.91508,1311.4613048561664,2982964.0539920307,1338529.3481069058,1252.39295,547.2251827468308,1292134.6149834143,556572.6204341573,1970.17584,818.5696053344135,2019312.582145912,822518.1632232151,0.37857,100000,0,517371,5396.814303298354,0,0.0,0,0.0,26607,276.99079965785575,0,0.0,28763,297.3003984728684,1859163,0,66780,0,0,0,0,0,46,0.4798364383618801,0,0.0,0,0.0,0,0.0,0.06583,0.1738912222310273,0.3048761962631019,0.02007,0.3277761670049289,0.672223832995071,25.1316596124336,4.416242460566378,0.3244259699129058,0.2218923198733175,0.2282264449722882,0.2254552652414885,11.22082338571925,5.746484995730823,21.45557276681432,12550.294023433362,57.09422668935924,13.00656929827366,18.558381112776573,12.883565816155338,12.645710462153682,0.5568091844813935,0.7734165923282783,0.6906650396583283,0.5897658282740676,0.1176470588235294,0.7058359621451105,0.9181818181818182,0.8561320754716981,0.6981132075471698,0.1767068273092369,0.5068710359408034,0.7130214917825537,0.6329218106995885,0.5574324324324325,0.1011235955056179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024913915333198,0.0046216060080878,0.0068571660428268,0.0089352801413398,0.0109387389951812,0.0130903908794788,0.0153802248427833,0.0173999122350467,0.0197304560177379,0.0218040804632983,0.0240254085343988,0.0260293227451342,0.0282311107457041,0.0304474477874648,0.0328350515463917,0.0349777451901727,0.0370182608245822,0.0388597009357416,0.0409570490986126,0.0426698574549994,0.0569354939623349,0.0704134096894202,0.0840701475025142,0.0960736750359659,0.1081226239245132,0.1231224252667159,0.1364026490066225,0.1483777002891648,0.159783142302192,0.1708417263103758,0.1845259873022705,0.1970622250564749,0.2085334840350381,0.2196409830330593,0.2302267501347738,0.2410604533726094,0.2507724742601537,0.2598067339385553,0.26919674250845,0.2772950510011334,0.28490483128657,0.2920643833052592,0.299163204677532,0.3060953111148382,0.3121009056255615,0.3174763500197083,0.3234553990610329,0.3288760528257716,0.334511738730689,0.3383022829000356,0.337551036908275,0.3372459874629744,0.3374491984646647,0.3373820140135503,0.3373649915201285,0.3360722333788113,0.3354098308684832,0.33664049410296,0.3370988139590525,0.3383622615876874,0.3398234731930363,0.3403258333662857,0.3420164721168556,0.3437227696226289,0.3448068937375483,0.345517025929397,0.3466674275279616,0.3496316352874504,0.3524388529659826,0.3536846275752773,0.3575798776342624,0.3592423599320883,0.3588562050246181,0.3603093178163999,0.3600378787878788,0.3630015386436264,0.3630632015992618,0.3591375770020534,0.3590030803696443,0.351673720661793,0.0,1.8721498584890195,56.15440920222394,195.76380009042668,280.88341867754144,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95788,43162,406.8254896229173,6592,67.57631436088027,5142,53.04422265837057,2101,21.505825364346265,77.39816222968327,79.7280345577141,63.35848721039546,65.07975100207432,77.13990533544978,79.47288237709702,63.26293588531113,64.98838594788114,0.2582568942334831,255.152180617074,0.0955513250843296,91.36505419317588,113.3154,79.69567461582497,118298.11667432246,83200.0611932862,310.26079,199.11962849278208,323195.41069862613,207170.93034035704,321.02115,155.1354902955161,331668.55973608384,159203.6254938121,2952.3306,1346.7039305690323,3048664.258571011,1372538.5558676925,1222.75766,542.9277342049271,1260943.4062721843,551266.5829743632,2059.89866,859.8778269770226,2111434.6891051074,864788.1280718887,0.37878,100000,0,515070,5377.187121560112,0,0.0,0,0.0,26487,275.8487493214181,0,0.0,29503,304.57886165281667,1860848,0,66784,0,0,0,0,0,67,0.6785818682924792,0,0.0,0,0.0,0,0.0,0.06592,0.1740324198743333,0.3187196601941747,0.02101,0.3289968198901417,0.6710031801098584,24.989368581641624,4.459590645179286,0.3370283936211591,0.2178140801244651,0.219758848697005,0.2253986775573706,11.235033911064532,5.66091491842592,22.20045809512324,12650.03217760167,58.083196611280655,13.165404736781197,19.59866935883263,12.593404577934477,12.725717937732366,0.5558148580318942,0.7696428571428572,0.7016733987305251,0.5761061946902655,0.1113028472821397,0.7296886864085042,0.91869918699187,0.8871681415929203,0.7193675889328063,0.1604938271604938,0.4959477124183006,0.6964047936085219,0.6362217017954723,0.5347776510832383,0.0982532751091703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002015353142533,0.0043882763093886,0.0064927159842551,0.0085608091640263,0.0107660245005845,0.013180124982189,0.0152748764457125,0.0172529894298657,0.0194219393332584,0.0219869040311029,0.0244034873833355,0.0265059004617752,0.028744964235797,0.0309286839098796,0.033001360880861,0.0351562096565969,0.03732516759083,0.0391451325231241,0.0409577950759189,0.0427913854869615,0.0576008014024542,0.0716960214199054,0.0846334507632947,0.0978201463045489,0.1103297769156159,0.1258787833937689,0.139020587393006,0.1510391724930562,0.1628714246042766,0.173488756152749,0.1860109430873293,0.1986263587691309,0.2103610504471028,0.2217706694633805,0.2315850790231464,0.2421080584662026,0.25228590544157,0.2612602480909592,0.2704085684786185,0.2793292249891182,0.2871417667059884,0.2947641652830718,0.3025169294880901,0.3083957571762449,0.3146742760002428,0.3203610881907412,0.3258643326039387,0.3312781266685312,0.3362202889544819,0.340904893813481,0.3407294710056144,0.3413238712161846,0.3410768623915248,0.3410446360236249,0.3402661365693008,0.3388384255436278,0.3372293482214876,0.3376244280817986,0.3383177250666484,0.3399964304836694,0.3411112567651079,0.3418385525951146,0.3431039543758125,0.3436117442016356,0.3460449944836187,0.3466340014073861,0.3462783171521035,0.347310275563367,0.3498043052837573,0.3527226744645538,0.3530615958511509,0.3583619550858652,0.3587838681483331,0.3632286995515695,0.3690151443890508,0.370432290422737,0.3708791208791209,0.3753036437246964,0.3776551724137931,0.3794813119755911,0.0,2.4363157834908957,57.563674623124,197.03266609874748,284.24620090172203,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95876,42970,404.73111101839874,6645,68.28611957111268,5201,53.65263465309358,2038,20.89156827568943,77.3584022892406,79.64126881541522,63.35300198276878,65.0416794885576,77.1049067384117,79.3901197962689,63.25866033703648,64.95145867331978,0.2534955508289016,251.14901914631105,0.0943416457323067,90.22081523782788,112.8633,79.41343147936314,117717.98990362552,82829.31231941585,306.90811,196.08085866580063,319531.79106345697,203937.42820497372,315.15744,152.00564558063613,324984.771997163,155652.79652513898,2990.50172,1355.3242885290715,3086698.9027493848,1381186.1242949972,1271.12446,551.9348176452444,1311993.7210563645,561911.8102590346,2013.72278,846.7277061434829,2065086.799616171,850454.3596731148,0.37971,100000,0,513015,5350.817722892069,0,0.0,0,0.0,26220,272.873294672285,0,0.0,29063,299.45971880345445,1864497,0,66984,0,0,0,0,0,52,0.542367224331428,0,0.0,1,0.0104301389294505,0,0.0,0.06645,0.1750019751915935,0.3066967644845749,0.02038,0.3273453093812375,0.6726546906187625,25.177749145731315,4.441130521384184,0.3349355893097481,0.2155354739473178,0.2182272639876946,0.2313016727552393,11.008979564231987,5.465718662252845,21.784647312129376,12585.981078971576,58.790193062039656,13.282359424070483,19.56778651141764,12.58253000304445,13.357517123507089,0.5456642953278216,0.8037466547725245,0.653272101033295,0.5656387665198238,0.1305070656691604,0.7030896759608138,0.946524064171123,0.8091954022988506,0.7354085603112841,0.1455938697318007,0.4917398038203407,0.7322623828647925,0.6013771996939556,0.5159453302961275,0.1263269639065817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274195344693,0.0047623390177422,0.0072623261758172,0.0097269745859943,0.0119536491156739,0.0138002625713675,0.0160662618688618,0.0182263246468458,0.020113739624067,0.0222962819084227,0.0244249490720361,0.0263681286010128,0.0284387934310392,0.0305726718169754,0.032668624723038,0.0345069695405265,0.0367653904641708,0.0388665478214004,0.0405973807471413,0.0425129016147827,0.057111282553848,0.0708807857068227,0.0845027647453083,0.0964286839369533,0.1090441780605473,0.1242010965445114,0.136536566238886,0.1482907118932426,0.1594526221406231,0.1707672680882085,0.1842910062026188,0.1969213461268024,0.2093046012003131,0.2203588100886639,0.2301221644326666,0.2404240955321668,0.2507082152974504,0.2609912969168147,0.2701387392088575,0.2790385959284675,0.2866235404395172,0.2936317581401879,0.2999917090099373,0.3065278410862941,0.3127052070919571,0.3184112138000814,0.3233900684330584,0.3290208274912687,0.3334891329749941,0.3381588175358272,0.338146388858901,0.3379675604104601,0.3376386889133564,0.337567164395267,0.3383579599618684,0.3375506694509274,0.33661448575874,0.3381566167876603,0.3393734906742939,0.3409233078944076,0.3418989383651574,0.3430574535084071,0.3438687863578133,0.3441113202473783,0.3463124141090243,0.3477648898735826,0.3487033342832716,0.350920168331135,0.3527885862516213,0.3544394191859081,0.3563972833766352,0.358739406779661,0.36020388899377,0.3620305660087551,0.3648301455894947,0.3620689655172414,0.361106768797874,0.3610315186246418,0.3592582341544423,0.3608128834355828,0.0,2.3244380409811995,58.53141843265052,194.1554793365401,294.6284493760241,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95735,43069,406.25685485976913,6614,68.01065441061263,5133,53.05269755053011,2092,21.44461273306523,77.38965647392791,79.75778563665594,63.34469261111818,65.0944502660188,77.1423337721102,79.51091929357746,63.25405122382269,65.00681781775083,0.2473227018177084,246.8663430784801,0.0906413872954914,87.63244826796779,114.29286,80.43957670471826,119384.38397660208,84022.93487723221,311.7454,199.3578670825912,325054.3374941244,207659.9332350668,317.31863,152.78891985352897,328059.4244529169,156973.3034575597,2956.43168,1336.3117010530057,3056764.8195539773,1364468.3982378496,1253.0108,547.4091767713765,1291534.141118713,554597.2193106969,2057.87344,851.7157210016675,2111601.775735102,857481.3051098925,0.3806,100000,0,519513,5426.562908027368,0,0.0,0,0.0,26648,277.7563064709876,0,0.0,29190,301.51982033738966,1858073,0,66643,0,0,0,0,0,55,0.5745025330338956,0,0.0,0,0.0,0,0.0,0.06614,0.1737782448765107,0.3162987602056244,0.02092,0.3234870317002882,0.6765129682997119,25.1708102174072,4.462828018519586,0.3282680693551529,0.2125462692382622,0.222676797194623,0.2365088642119618,11.22787193544493,5.795809199261478,22.181354134216093,12577.92436596676,57.863366688496896,12.82448163096363,18.96116202269027,12.67424018345403,13.40348285138896,0.5445158776543931,0.76993583868011,0.684272997032641,0.5818022747156606,0.1128500823723229,0.7175748273215656,0.8966480446927374,0.8624708624708625,0.758364312267658,0.1619433198380566,0.4856396866840731,0.7080491132332879,0.6234076433121019,0.5274599542334096,0.1003102378490175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023600194473705,0.0045619050515495,0.0069312657932392,0.0088384094926549,0.0106604819595756,0.0129118976823754,0.0153240688818425,0.0175477996345484,0.0196868100417041,0.0219667734638101,0.0240779843785235,0.0261274857043128,0.0282089767049776,0.030305214597578,0.0326763003991707,0.034622817987329,0.0366462328625274,0.0386251400589284,0.0406281830087097,0.0426369916539026,0.0571437520882058,0.0709755076407787,0.0840538045074915,0.0963387690689111,0.1087761496344589,0.1238259434760534,0.136547377802298,0.1489613043293176,0.1600845810461564,0.1704539361508187,0.1832491736560471,0.1957598702001081,0.2082667449420001,0.2196311237932806,0.2305449825086356,0.2408414060337669,0.2514996097669751,0.2614620664861646,0.2703416536307783,0.2794020085558072,0.2867349534093273,0.2952120510932697,0.3021826733316789,0.3082898453583568,0.3138637411713308,0.3190349515997931,0.3254830842348821,0.3303707659444614,0.335208972020645,0.3397408008015926,0.3401387992253066,0.3393974395995764,0.3384656524003209,0.3380942753162729,0.3371408227143938,0.3366215492850042,0.335345999430974,0.3360345759049162,0.3369903556666836,0.3388826636785657,0.3389653500428928,0.3396668504371111,0.3399557577528277,0.3405905292479109,0.3414078972589611,0.3438881089793584,0.3437446760179454,0.3479476147105932,0.3503390604687115,0.351694746485044,0.3552077613033132,0.3552377892030848,0.357846853677028,0.3604229607250755,0.3586482220778015,0.362933458294283,0.3654776299879081,0.3665934943125125,0.3678348274925292,0.3666034155597722,0.0,2.1445099069689,57.47352575085681,192.81179238252145,288.8520771702348,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95758,43054,405.7415568412039,6667,68.45381064767435,5170,53.363687629232025,2128,21.77363771173166,77.34687979821054,79.703967706272,63.33382307926016,65.08036848273977,77.0774345836877,79.43801317523325,63.2333475044055,64.98427887915481,0.2694452145228325,265.95453103874434,0.1004755748546557,96.08960358495722,112.98144,79.5104164933143,117986.42411077923,83032.66201603448,311.37796,199.31731411468755,324550.115917208,207525.2763368988,315.87802,152.39314184790834,325946.5632114288,156155.0679456654,3000.70204,1372.738037709912,3097046.220681301,1397514.6242518334,1300.76879,574.501875491187,1340767.716535433,582676.6781202393,2090.22794,884.9447144453321,2140406.4203513023,887658.6022744504,0.37973,100000,0,513552,5363.0192777626935,0,0.0,0,0.0,26584,276.9690260865933,0,0.0,29178,300.81037615656135,1863521,0,66938,0,0,0,0,0,56,0.5848075356628167,0,0.0,0,0.0,0,0.0,0.06667,0.1755721170305217,0.3191840407979601,0.02128,0.3179604697794328,0.6820395302205672,24.9872690855542,4.551062435900337,0.327852998065764,0.2106382978723404,0.2276595744680851,0.2338491295938104,11.57167817592624,5.94128535574615,22.93600056863745,12594.724977473024,58.72718680116417,12.87012060618446,19.03314531516511,13.323347023036728,13.500573856777876,0.5615087040618956,0.7722681359044995,0.6991150442477876,0.6142735768903993,0.1273779983457403,0.698741672834937,0.9117647058823528,0.8522727272727273,0.7491408934707904,0.1464285714285714,0.5129615082482325,0.7089452603471295,0.6454183266932271,0.5699774266365688,0.1216361679224973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786713144988,0.0046850281912951,0.0070152284263959,0.0095632996940963,0.0116383169203222,0.0138490051119121,0.0159241512896319,0.0179358922008983,0.0199852793850054,0.0221466820932351,0.0241964423027631,0.0264603505457383,0.0286610448375154,0.0305746131816964,0.0329432162982228,0.034878432021171,0.0367305939855852,0.0387161026619914,0.0409987733632715,0.0430594605852337,0.0575979624642491,0.0717326945005283,0.084440436619866,0.0972797410077992,0.1103112450857426,0.1255997294612474,0.1384292483331036,0.1506374472338298,0.1620615345224887,0.1727403217858902,0.1857653083179138,0.1978385388522641,0.209386713020805,0.2198704716970828,0.229989122433059,0.2414125094064007,0.2515529682045792,0.2616664792533453,0.2708574541987332,0.2793868292012281,0.2870867672932679,0.2943854679947096,0.3010939830929885,0.3069442279328001,0.3127353105491996,0.3182170781259619,0.3230846269404106,0.327870104089787,0.3332340331835196,0.3373617964482677,0.3376152965730828,0.3370741648536256,0.3381099322258387,0.3378267088552728,0.3378016882653668,0.337046969580875,0.3354509592687061,0.3358704586552687,0.3364306860379554,0.3373806373162619,0.3379821679962459,0.3392273078676631,0.3404367105899166,0.3408355795148248,0.3417745988787937,0.3427177078687062,0.3461505376344086,0.3492159036907967,0.3520977539200452,0.3533810533050746,0.3565093515922981,0.3596514673651574,0.3616845582163501,0.3637894092439547,0.3643701896001501,0.3662155745489079,0.3689230769230769,0.3669479316731838,0.3747534516765286,0.3733650416171225,0.0,2.433642040364485,59.24212981280829,194.15196383082508,290.03749898033595,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95761,42970,406.083896366997,6736,69.22442330385022,5272,54.54203694614718,2130,21.8251689100991,77.36211040614715,79.72220780136844,63.32787542470121,65.07491871919817,77.0936208802402,79.45698807284465,63.227961890309246,64.97928257211207,0.2684895259069577,265.21972852378894,0.0999135343919661,95.63614708609693,111.6247,78.5956105585839,116565.92976263825,82074.75961882593,308.58018,197.483086180944,321739.50773279305,205724.62840017464,316.83157,152.72614719599576,328581.865268742,157602.59330711715,3040.65436,1382.7774653605052,3145311.139190276,1414053.718024332,1302.33093,570.9716091157558,1344343.8873863055,580679.0355158297,2101.0367,884.1807090697774,2154099.978070405,887802.6288975065,0.37895,100000,0,507385,5298.4513528471925,0,0.0,0,0.0,26369,274.8196029698938,0,0.0,29249,303.11922390117064,1869073,0,67046,0,0,0,0,0,60,0.6265598730171991,0,0.0,1,0.0104426645502866,0,0.0,0.06736,0.1777543211505475,0.3162114014251782,0.0213,0.3205382436260623,0.6794617563739377,24.917135475035625,4.485651782235979,0.3196130500758725,0.2207890743550834,0.2240136570561456,0.2355842185128983,10.94056524601841,5.421314587646454,22.78541707991902,12545.276305335834,59.5559701567909,13.64010063945192,18.966140065804563,13.220260044695854,13.729469406838554,0.5515933232169955,0.7620274914089347,0.7086053412462908,0.5707027942421676,0.1231884057971014,0.6985789080029918,0.917098445595855,0.8349753694581281,0.671280276816609,0.18359375,0.5016518424396442,0.6850899742930592,0.6684910086004691,0.5381165919282511,0.1075050709939148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086461404415,0.0044922627618796,0.006781037458126,0.0089618663442291,0.0111591475509892,0.0132093534851509,0.0154181877511063,0.0171016090827411,0.0193556303105285,0.0214528549193085,0.0235665719764949,0.0255359362320627,0.027726052201109,0.029760616646572,0.0317886262772215,0.033714486580373,0.0357675420429127,0.0378605519817389,0.0398029085541429,0.041801647899501,0.0562868625711154,0.070066226551302,0.0838376105127371,0.0964881835105543,0.1089439984810286,0.1249775239304035,0.1376599401616907,0.1495070377547326,0.1610442067469519,0.1714926109430967,0.1846873047674443,0.1975430241368113,0.209185672005571,0.2196013216340999,0.2288088947600176,0.2402092244952237,0.2494806210208868,0.2590479405806887,0.2682871473638819,0.2771070536757463,0.2851089938759681,0.29205621145993,0.2985829120742521,0.3057288168122061,0.3119114448535219,0.3175208140610546,0.3234855603583286,0.3295638331741483,0.3347111721564257,0.3387120201766779,0.3384300083596257,0.3377741651052574,0.3383648330585035,0.3379666459348829,0.3375509233102381,0.3372121546622512,0.3370843503344216,0.3379006686710368,0.3379821907740689,0.3396351042559268,0.3398212847267754,0.3404969115702642,0.342018179533364,0.3429319371727748,0.3442323412030581,0.3442306689608426,0.345497535823149,0.3470298118304903,0.3503363228699551,0.3533138015678201,0.355639234189275,0.3585503724443974,0.3593543930163914,0.3597040839435343,0.3667349599552989,0.3662604992310422,0.3659762412427658,0.3678528588564574,0.3744230247081184,0.3764523625096824,0.0,1.9944039383289869,59.12858709080314,200.5520332579553,295.47646945525213,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95767,43173,408.14685643280046,6643,68.1132331596479,5141,53.160274416030575,2062,21.218164921110613,77.32840490063373,79.6883019323387,63.31625382636724,65.06458770505698,77.07119132302357,79.43071504568307,63.221506802245074,64.9717574754454,0.2572135776101589,257.58688665563056,0.0947470241221637,92.83022961157884,112.65364,79.22846215445946,117633.04687418422,82730.44175390214,308.14483,197.2489467816752,321238.8087754654,205441.21334246156,316.33262,152.46089675571494,327157.2984430962,156734.2765314729,2970.07704,1353.464560864526,3073182.536781981,1385114.121633262,1238.89319,545.4699221038799,1280340.1276013658,556323.7091566146,2031.65078,852.7625277218818,2092347.927783057,865252.5343800875,0.38011,100000,0,512062,5346.956676099283,0,0.0,0,0.0,26316,274.248958409473,0,0.0,29167,301.3668591477231,1863963,0,66973,0,0,0,0,0,49,0.5116585044952855,0,0.0,0,0.0,0,0.0,0.06643,0.1747651995474994,0.310401926840283,0.02062,0.3159478435305918,0.6840521564694082,25.110862180730624,4.4565165793916695,0.3271737016144719,0.2131880957012254,0.2277766971406341,0.2318615055436685,11.158868015112386,5.682333333126615,21.9587490439526,12621.77873243204,58.031639117823225,12.938246484244946,19.06494087935293,12.98230047585506,13.0461512783703,0.5600077805874344,0.7746350364963503,0.7063020214030915,0.5952177625960717,0.1216442953020134,0.7175856929955291,0.912568306010929,0.8690744920993227,0.7340425531914894,0.147410358565737,0.5043432482232166,0.7054794520547946,0.6481033091202583,0.5511811023622047,0.1147715196599362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018645562052227,0.0041582993569849,0.0064269179222677,0.0082115490152238,0.0106203332587332,0.0127526075619295,0.0147556697666829,0.0171111201862212,0.0191784743094318,0.0215366347984523,0.023504930602538,0.0254227716571006,0.0273347113812359,0.0296232206497332,0.0315879633451663,0.033624476717143,0.0356599418261616,0.0376350776761454,0.0397688894431108,0.0417946821916952,0.0571860974846049,0.0717228973624213,0.085126237208522,0.0974238235881481,0.108863320268049,0.1249669721086062,0.1380429250084832,0.1504863668291437,0.162031103135948,0.1721730738298214,0.1853990069256702,0.1980437981476672,0.2099897730487194,0.2210410035983419,0.2307692307692307,0.2415091831535104,0.2524026923549176,0.2616546770689092,0.2712488075228274,0.2795080182028679,0.2873962421421873,0.2940935576720567,0.3013513673563654,0.3083053288526164,0.3145869306160169,0.3210647063176851,0.3267653329988711,0.331463753521396,0.335872315577759,0.340416253716551,0.3409204366069862,0.3404909243766969,0.3399387446895597,0.34061722681784,0.3407947611251674,0.340301439666022,0.3390123574295277,0.3396993694331484,0.3407421359954793,0.3403661351801149,0.3407368500037517,0.3420677925879049,0.3427340056069292,0.3430227354099534,0.3445444915254237,0.3467139948843765,0.3486791375124946,0.3513436968972245,0.3533106424786835,0.3548169327297276,0.3564762121557022,0.3576766124330913,0.3611180904522613,0.3628284976454504,0.3652508926893441,0.3666548505258182,0.3645387904703726,0.3679361179361179,0.3698324022346368,0.3675654242664552,0.0,1.9907979382502592,59.29241952595954,186.5585250764396,292.6911240891931,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95729,42936,404.9243176049055,6725,68.88194799903896,5229,54.02751517304056,2125,21.822018406125625,77.31464774318667,79.68058171510137,63.30648041847581,65.05584986195662,77.05457498250398,79.42132931452353,63.21090804145442,64.96328441895079,0.2600727606826893,259.25240057783583,0.0955723770213907,92.56544300582448,112.35422,79.06583496740703,117366.73317385536,82593.16922500706,309.72771,198.03242962166067,322943.61165373086,206264.9916497236,317.79388,153.0469253363864,328389.4744539272,157087.73447949515,2995.00756,1362.8053737767198,3096655.8931985083,1391632.3851105408,1225.80467,540.7794748911102,1265666.945230808,550091.7940081536,2082.34668,868.2899593212566,2139450.072600779,874929.1560665421,0.3796,100000,0,510701,5334.8515079025165,0,0.0,0,0.0,26507,276.26946902192645,0,0.0,29375,303.2518881425692,1862946,0,66832,0,0,0,0,0,52,0.5432000752123181,0,0.0,0,0.0,0,0.0,0.06725,0.1771601685985247,0.3159851301115242,0.02125,0.3190947666195191,0.6809052333804809,25.160015684868405,4.471527156614931,0.3166953528399311,0.2222222222222222,0.2352266207687894,0.2258558041690571,11.187980901236005,5.714155853663338,22.569481420489627,12638.602859791,59.26365892628369,13.851245514010312,18.65021075801675,13.702943115419,13.059259538837615,0.5580416905718111,0.7874354561101549,0.6914251207729468,0.6,0.1016088060965283,0.7291196388261851,0.9199029126213591,0.8746928746928747,0.752851711026616,0.145748987854251,0.4997435897435897,0.7146666666666667,0.6317053642914331,0.5584281282316442,0.0899357601713062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374664438028,0.0043596840749865,0.0066891329503237,0.0090133116553195,0.0112518439391627,0.0133155385305024,0.0153844584323767,0.0174797329031467,0.0195755729560648,0.0214671798861635,0.0236230160357626,0.0258340093027076,0.0280815083781643,0.0302830470577325,0.0323912549804909,0.0345497777318308,0.0366469918194056,0.0386423301615631,0.0408738328446357,0.0429007490441613,0.0576535566251474,0.0718435017427073,0.0853108411489477,0.0985908087075402,0.1112235966549611,0.1266595436321129,0.1392482990670077,0.1508917638289943,0.1626293508936971,0.1732471908906513,0.1862900529545626,0.1986931504177367,0.210178799071683,0.2207244232560688,0.2314129775621589,0.2419666451999733,0.2518680925321043,0.2617473888425184,0.2705454131831883,0.2793761269797516,0.2868075928524217,0.294569191824489,0.3013422500474293,0.3074808207172271,0.313094456201805,0.3189153178049743,0.3245815022098686,0.3293500808103946,0.3345240868732365,0.3396405543322037,0.3395212966453072,0.3385100002751107,0.3384271180716788,0.3393844865184928,0.3396431226765799,0.3385700053643957,0.3381625665736749,0.3394361100144756,0.3407737076343718,0.3408595230433695,0.3429188174565931,0.3437141387361007,0.3453019010133155,0.3463361201770465,0.3472098563418919,0.3486528078457967,0.3492422076065198,0.3522501810852518,0.3542325254654022,0.3577316713790769,0.3603772721029257,0.3626221107137137,0.3633935385398117,0.3638743455497382,0.3665046230101992,0.3649345973838953,0.3710603943487036,0.3710783295242053,0.3733221476510067,0.3730407523510972,0.0,2.23413577128731,58.57188371231971,202.1104831351564,290.43657260656187,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95808,43168,406.8240647962592,6627,67.96927187708751,5217,53.79509018036072,2092,21.37608550434201,77.3504688262772,79.68142647821705,63.33176974345843,65.0595487581075,77.08692536853572,79.4219380575513,63.23456692706792,64.96720125972308,0.263543457741477,259.48842066574684,0.0972028163905065,92.34749838441304,112.51526,79.19183442398084,117438.2723780895,82656.80780726123,307.20682,196.2194433304672,319989.9590848364,204146.4213118604,316.31383,151.87422857374378,326110.794505678,155449.3665510315,2996.03732,1361.4722213399368,3090116.23246493,1384032.0864019082,1259.08599,552.9909762741647,1297054.7970941884,560069.095752693,2058.8997,861.852057353957,2105831.558951236,861777.445792592,0.38115,100000,0,511433,5338.10328991316,0,0.0,0,0.0,26338,274.2255344021376,0,0.0,29186,300.6638276553106,1866628,0,67073,0,0,0,0,0,40,0.41750167000668,0,0.0,0,0.0,0,0.0,0.06627,0.1738685556867375,0.315678285800513,0.02092,0.3237534128466733,0.6762465871533266,25.03048641006178,4.465107811775053,0.3329499712478436,0.2141077247460226,0.2256085873107149,0.2273337166954188,11.127980027947984,5.6313869513455845,22.22139114607188,12678.627836711312,59.02510530891787,13.147892791737524,19.5453258719636,13.216306100095856,13.115580545120904,0.5600920069005175,0.7878245299910475,0.7127230857800806,0.578589634664401,0.1037099494097807,0.7184841453982985,0.9362880886426592,0.874384236453202,0.7163120567375887,0.1393442622950819,0.5079001019367991,0.716931216931217,0.6634109691960932,0.535195530726257,0.0944798301486199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0048365999817486,0.0070841368111235,0.0093474086341607,0.0115242996928209,0.0137499745370841,0.0160726123094181,0.0185033902458949,0.0204695104494703,0.0226030342116577,0.0246300872614665,0.0269856754120244,0.0291649526943644,0.030988990617823,0.0329304263525917,0.0350688668230334,0.036882912538948,0.0388329374669391,0.0408629863651479,0.0429341828554771,0.0574409263992488,0.0717392668186285,0.0849935547427661,0.0976852678805964,0.1107552258934592,0.1258864686050075,0.1385292402311648,0.1500074466500712,0.1611360239162929,0.1720360962853407,0.1845450142603454,0.1976408515423122,0.2090825139877234,0.2204308714708872,0.2308183158404295,0.2413873344783644,0.251540384872974,0.2614264330170735,0.2715109940032709,0.2797534485129004,0.2882295742365661,0.295807108261775,0.303214657702869,0.3097389678563724,0.3154504351208129,0.3212695358275049,0.327708247203117,0.3331719375143345,0.337987269733857,0.3422259219619191,0.3423162042534816,0.3418722065883132,0.3414713357808528,0.3411681221126413,0.341390447556819,0.3399705467263914,0.3389182413886112,0.3396847336031856,0.3412392833307665,0.3418867654427027,0.343480952112993,0.3448153057792374,0.3446807618088766,0.3459315350837889,0.347968655816757,0.3476545145694499,0.3472341154307244,0.349675467893377,0.3520454704932987,0.3533272343979953,0.3557346446296043,0.3588981476567061,0.3608799798285426,0.3633394105135217,0.3670217780710851,0.3682528409090909,0.3710691823899371,0.371301175516822,0.3745544282972306,0.3836985774702037,0.0,2.474805276299929,56.61451351108101,204.0845220797191,291.82669244778526,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95722,43210,406.7821399469297,6760,69.41977810743612,5313,54.96124192975492,2174,22.387747853158103,77.30949638025908,79.66867465452128,63.31695901961641,65.05906868263085,77.04811765602719,79.4057323924972,63.221957744364914,64.96564327317962,0.2613787242318892,262.9422620240831,0.0950012752514979,93.42540945122836,112.19802,78.93820824704564,117212.13514134682,82465.87853058403,310.33373,198.1650573171259,323662.68987275654,206480.98380427275,323.73377,155.69874171545445,334632.6549800464,159998.95900263995,3052.36876,1388.8599966016277,3160945.487975596,1423091.323417427,1300.86776,565.3065068752974,1348000.564133637,579565.6660697617,2135.95252,881.1745072794786,2201807.087189988,895806.6449621095,0.38072,100000,0,509991,5327.824324606674,0,0.0,0,0.0,26484,276.11207454921544,0,0.0,29863,308.3303733728923,1864817,0,67014,0,0,0,0,0,56,0.5850274753975053,0,0.0,0,0.0,0,0.0,0.0676,0.1775583105694473,0.3215976331360947,0.02174,0.3284732931445395,0.6715267068554606,25.00547475562743,4.531963273798704,0.3246753246753247,0.2168266516092603,0.2300018821757952,0.2284961415396198,11.31869086917617,5.761219731068477,22.99085123708811,12710.570352366296,60.10307589350611,13.626092851807549,19.573273766975717,13.573020170611056,13.330689104111796,0.5667231319405233,0.7864583333333334,0.7171014492753623,0.5924713584288053,0.1186161449752883,0.7349397590361446,0.935656836461126,0.8648648648648649,0.7148014440433214,0.1923076923076923,0.5106649937264742,0.7150192554557124,0.6658860265417642,0.5566137566137566,0.1010204081632653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153735530326,0.0043183845592409,0.006614722830939,0.0091005119037945,0.011548823260306,0.0138426618624487,0.0162564337766906,0.0182408361999448,0.0204407015248763,0.0225972510771561,0.024867003556822,0.0270961250179682,0.0293984575835475,0.0315949909375514,0.0336516645352914,0.035696573955449,0.0378377818945799,0.0396681358568835,0.0417493790078676,0.0437703773919021,0.0584347099671069,0.0721238382316001,0.0855218996475918,0.098935879371622,0.111298571202615,0.1270160224208132,0.1397512891793816,0.1525448990237722,0.1636754054227293,0.1732579835717502,0.1859816205384557,0.199110062144079,0.2115962216515039,0.2228983572108702,0.2333017683719086,0.2446929975280176,0.2551466070929908,0.265242906543214,0.2743289448275078,0.2819055042296142,0.2890023502714969,0.2967119120056166,0.3035276563998721,0.3087960074859638,0.3149879061174382,0.3209374036386062,0.3255188124264651,0.3306214430312058,0.3360170095808538,0.3404294705664569,0.340650889170737,0.3400184702752622,0.3398272065051668,0.3397496200882842,0.3396636727884773,0.3385863054096397,0.3380391408721642,0.3392327466877595,0.3396812325218316,0.3406423829176386,0.3421736184309591,0.3430327379768487,0.3443023574272653,0.3452442564298733,0.3449680046538685,0.3468023179589375,0.3477148605921242,0.3505268820606942,0.3519205625640482,0.3542472196755291,0.3562797510069571,0.3599679315873864,0.3622287092270593,0.3627292961854325,0.3616435756310495,0.3674468593264867,0.3711148909850008,0.3677539995844587,0.3740606735318675,0.3750484308407594,0.0,2.0646219944090176,58.51720213183632,203.2359880413818,301.9091885875824,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95735,43047,405.29586880451245,6797,69.7237165091137,5285,54.629968141223166,2112,21.695304747480023,77.40440741590693,79.76104713193014,63.3594678928421,65.0991359414041,77.14185396094585,79.49926463948405,63.26284227452624,65.00541496860416,0.262553454961079,261.78249244608764,0.0966256183158549,93.72097279994308,111.8579,78.61272522717228,116841.17616336764,82114.92685765108,309.44569,196.74549229607075,322677.2758134433,204956.27753284664,312.97342,150.34824201219496,323238.9617172403,154191.04317497378,3055.49884,1373.359487179477,3160698.09369614,1403619.3316754338,1303.22456,571.8760349084289,1344134.590275239,580210.3342514635,2089.8018,871.2798621714331,2148488.389826082,879769.6228662932,0.38029,100000,0,508445,5310.962552880347,0,0.0,0,0.0,26450,275.6985428526662,0,0.0,28809,297.29983809474066,1874297,0,67224,0,0,0,0,0,65,0.6685120384394422,0,0.0,1,0.0104455006006162,0,0.0,0.06797,0.1787320203002971,0.310725319994115,0.02112,0.3152585119798234,0.6847414880201765,25.24340608727697,4.54504975743959,0.3201513718070009,0.2100283822138126,0.2285714285714285,0.2412488174077578,11.075845155930615,5.513686865320256,22.410995269219644,12698.336037765848,58.96799669974891,12.819535329198748,18.898492932450065,13.234962371909573,14.015006066190528,0.5434247871333964,0.7648648648648648,0.6903073286052009,0.5720198675496688,0.1286274509803921,0.711824588880188,0.9093484419263456,0.8805970149253731,0.7301587301587301,0.1851851851851851,0.4897704590818363,0.6974900924702774,0.6310077519379845,0.5303347280334728,0.1134328358208955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274646389988,0.0045806941981251,0.0066954775092823,0.0088356268724927,0.0109198499283194,0.0133652280130293,0.0155821656050955,0.0178667999959184,0.0199341997711296,0.0223995906881555,0.024505232087403,0.0267468593480581,0.0290634316850005,0.0313430222377867,0.0335754674150811,0.0355189844630286,0.0375920383583774,0.039533605120385,0.0413942902277049,0.0435480007082669,0.0574023804552098,0.0712648730103914,0.0850519248924787,0.0974819954791568,0.1094843578716586,0.1245796942077103,0.1377817853922452,0.1502634800660031,0.1625089475539791,0.17367478471619,0.1870611295394821,0.1995022183746347,0.2107530156520226,0.2219330570469431,0.2326277340139946,0.2432258850365974,0.2537628170082676,0.2632709282059931,0.2718323277230867,0.2804194043176667,0.2882106163394085,0.2956740031525483,0.3030181371622898,0.3090822179732314,0.3158914963472698,0.3212327588326408,0.3266739133150917,0.3323006602336211,0.3373696385417609,0.3419957872564507,0.341701253173228,0.3414620750260889,0.3407004372460528,0.3414535646805994,0.3417276850561764,0.3402128049899101,0.3393071812717494,0.3406166505482977,0.3408113825576634,0.3410813992900083,0.3428737441895336,0.3433719433719434,0.344572351177371,0.3466526541746791,0.3487158522508657,0.3488754370401294,0.348966184124456,0.3506171288590182,0.3545783174814866,0.3557081613210543,0.3591821866035244,0.3623543185567558,0.3650613786591123,0.3661821779164447,0.3692437289404717,0.3766969661197025,0.3767648864333947,0.3823767178658043,0.3927677329624478,0.3893735130848533,0.0,2.2356538955542407,55.90355533357195,193.3627419990825,310.44258613113374,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95750,43215,405.6083550913838,6767,69.39947780678851,5278,54.55874673629243,2111,21.671018276762403,77.33232137485312,79.6967454805041,63.31916690730778,65.07046033715895,77.0673683302507,79.42942625995724,63.22251831258595,64.97454778028867,0.2649530446024215,267.31922054686663,0.0966485947218345,95.91255687027456,111.9349,78.68387558699726,116903.28981723238,82176.37137023213,306.9151,196.4073847339961,319977.9425587467,204565.1851007793,320.85738,155.19243657098838,330656.0,158768.19505087563,3000.42336,1369.552818013173,3104256.835509138,1400997.7838257663,1280.97123,562.1659050281714,1323557.994778068,572866.2798326798,2064.62276,862.8712687111617,2122713.691906005,876851.5919365328,0.38188,100000,0,508795,5313.785900783289,0,0.0,0,0.0,26227,273.32637075718014,0,0.0,29620,304.88772845953,1868793,0,67139,0,0,0,0,0,49,0.5117493472584856,0,0.0,0,0.0,0,0.0,0.06767,0.1772022624908348,0.3119550761046253,0.02111,0.3173955843060048,0.6826044156939952,25.12393162319129,4.433934167174059,0.3243652898825312,0.218075028419856,0.2381583933308071,0.2194012883668056,11.369606905667576,5.940456866087189,22.682878521749643,12737.110394713409,59.80467253021387,13.610678952345504,19.18811956092893,14.240934253473354,12.764939763466096,0.5604395604395604,0.7688966116420504,0.6991822429906542,0.5775656324582339,0.1295336787564766,0.7453874538745388,0.9399477806788512,0.8995327102803738,0.6876971608832808,0.2070484581497797,0.4965587560540402,0.68359375,0.632398753894081,0.5404255319148936,0.1106337271750805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0049396991550781,0.0072496141661928,0.0095942759573949,0.0118621307072515,0.0144354682613257,0.0168067226890756,0.0189077989565998,0.0213077041051071,0.0236691236691236,0.0259259638943278,0.0282323470833418,0.0302519280205655,0.0322876328582021,0.0345827272070733,0.0365868783331266,0.0388697335859762,0.0409266329155946,0.0429292929292929,0.0449281399708394,0.0592594912264219,0.0732153879955221,0.0869515059988254,0.0993481232257386,0.110756157219973,0.1267556476859294,0.1396513490859319,0.1521505433567847,0.1640235372013797,0.1748868826796474,0.1880411838194115,0.2008656135035706,0.2133945373260961,0.2245833151056476,0.2350695361323827,0.2457068833800197,0.255224196985418,0.2649752475247525,0.2736474219317356,0.2819575998442349,0.2885993032971866,0.2954247601216944,0.3020404298631823,0.3088550844511574,0.3149831118022987,0.3202899622753162,0.3256553416289026,0.330831372050124,0.3360879758558605,0.3399862717144516,0.3402974218055443,0.33997493906889,0.3397888564703229,0.339423549478188,0.3394854253420583,0.3383115090925818,0.3372019178865145,0.3382152308627973,0.3382159399729947,0.3387671110315827,0.3395843129878679,0.3409289400555776,0.3427260674677497,0.3441466537865342,0.3452608180917635,0.3463118507470497,0.3464834599782894,0.350526548812498,0.3529245947850599,0.3570001598210005,0.3591314285714285,0.3598691969550767,0.3586589330103894,0.3582204433497536,0.3602150537634409,0.3623788129581461,0.3650311408172565,0.3644596498289394,0.3690998902305159,0.3680555555555556,0.0,2.13589948467893,59.68750494814808,202.44480147257585,293.19269106457045,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95729,43196,407.3582717880684,6717,68.7983787566986,5217,53.95439208599275,2098,21.59220298968965,77.41699606751023,79.77068601551976,63.36600846061516,65.10081336021916,77.16534558620752,79.51829747863204,63.27341661330341,65.01022132343432,0.251650481302704,252.38853688772167,0.0925918473117519,90.59203678484096,111.32726,78.38235336841069,116294.18462534864,81879.42354815228,308.63612,197.5421154622343,321818.62340565555,205779.8372181782,321.71983,155.74741279816976,332603.4534989397,160071.63806932344,2988.72224,1364.0565973734494,3092585.1518348674,1396019.536326331,1299.75564,575.0532571382346,1343057.5478695063,586302.5356916481,2068.0863,856.8400908529127,2129657.6168141314,868651.7303218226,0.38088,100000,0,506033,5286.099301152211,0,0.0,0,0.0,26346,274.629422640997,0,0.0,29737,307.19008868785846,1872213,0,67149,0,0,0,0,0,55,0.5745385410899518,0,0.0,0,0.0,0,0.0,0.06717,0.1763547574039067,0.3123418192645526,0.02098,0.3211295586774514,0.6788704413225486,24.89568620869979,4.52862127567234,0.318765574084723,0.2231167337550316,0.2261836304389496,0.2319340617212957,11.51357320660208,5.881582680606317,22.130029296309136,12650.727965700851,58.84938299416935,13.737512078631957,18.65154047219428,13.242959669479315,13.217370773863784,0.5616254552424765,0.7955326460481099,0.6939266386049309,0.5872881355932204,0.1297520661157024,0.7339791356184798,0.9398496240601504,0.8782816229116945,0.7397769516728625,0.1686274509803921,0.5019354838709678,0.7202614379084967,0.6318327974276527,0.5422612513721186,0.1193717277486911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022672523735298,0.0044778085078361,0.0066029698149951,0.0086008184486032,0.0106454367984382,0.0128565320955231,0.0154217800790965,0.0176872831190038,0.0198050156355386,0.021801180598893,0.0238246505717916,0.0261396990907038,0.0284645195777094,0.0307196407974954,0.0328261205962758,0.0349584590584053,0.0369499948234806,0.0392250409674542,0.041218470364481,0.0429614659402248,0.0581386849881488,0.0720391742437717,0.0855749055812001,0.0981247962306616,0.1104900120235408,0.1258341882330544,0.1386702590321827,0.1510484300159659,0.1626356721647722,0.1732579835717502,0.1869670083555862,0.1999004716777013,0.210926716876963,0.2218120255584075,0.2322075981630814,0.2419183538001991,0.2525217623914667,0.2613933937983973,0.2700845785809845,0.2789545355716525,0.2875294824954909,0.2953246783598396,0.3021375200983637,0.3082559141844651,0.3139920142723643,0.3196216562392236,0.3247605711285039,0.3301170817283856,0.3350576124768838,0.3403559657218193,0.3408161618335396,0.3404664715018073,0.3401469718726244,0.3397800037581486,0.3396035779025883,0.3387526407642142,0.3376588480748562,0.3385028577043381,0.3394332839203258,0.3399946614467479,0.3411226300551041,0.3424166650258914,0.3438603824851081,0.3447308668358488,0.3463889354970157,0.345550010397172,0.3454535124847314,0.3480711422845691,0.3512171236709569,0.3538388550644422,0.3568904593639576,0.359919606494949,0.3631302389590892,0.3661006624533617,0.3688141923436041,0.3717032000937756,0.3760593220338983,0.3787727363581851,0.3830480847595762,0.3883677298311445,0.0,2.0254144886478698,59.03354904050914,194.20061705482863,294.6015562707844,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95700,43123,407.81609195402297,6674,68.67293625914316,5165,53.437826541274816,2079,21.38975966562173,77.3508434030137,79.74203063125022,63.31502979323547,65.08295815511347,77.09574263194176,79.48575965763645,63.22155114487294,64.99139318819402,0.2551007710719375,256.2709736137663,0.0934786483625274,91.56496691944938,112.92578,79.46012767195522,117999.77011494254,83030.43643882468,310.00241,198.64708829666452,323418.11912225705,207059.37126088256,319.83974,153.903586983031,330873.63636363635,158269.5003922164,2972.57128,1347.1536065992334,3075908.129571578,1377457.0601872865,1268.73856,551.3813005775945,1309706.959247649,560117.3464760655,2047.26254,850.5525628155533,2107082.7586206896,860846.0995759015,0.38038,100000,0,513299,5363.625914315569,0,0.0,0,0.0,26395,275.27690700104495,0,0.0,29537,305.25600835945664,1861104,0,66798,0,0,0,0,0,65,0.6792058516196448,0,0.0,0,0.0,0,0.0,0.06674,0.1754561228245438,0.3115073419238837,0.02079,0.3233915636983383,0.6766084363016617,25.46780380916686,4.438587711636115,0.3283639883833494,0.2143272023233301,0.2247821878025169,0.2325266214908035,10.93358385121253,5.55476306108655,22.061754309872924,12588.923304160608,58.24362857675764,13.053026584894758,19.051121106446587,12.902473316533133,13.237007568883165,0.5533397870280736,0.7850045167118338,0.6969339622641509,0.5650301464254953,0.1257285595337219,0.7033639143730887,0.9081081081081082,0.8511166253101737,0.7027027027027027,0.1380753138075313,0.5024630541871922,0.723202170963365,0.6488785769528229,0.5179190751445086,0.1226611226611226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122319357354,0.0050298648223828,0.0073191282014841,0.0097772176599723,0.0118618893568536,0.0140278315437745,0.016158483714003,0.0183119880711644,0.0203516020494779,0.0224493558099997,0.0246026048610398,0.0264476900638852,0.0284712150667036,0.0303114600397696,0.0322507404770013,0.0342068537757791,0.0360628224519818,0.0381956697735245,0.039879342625338,0.0418599318316847,0.0566394418565788,0.0710284679251604,0.0847888151817952,0.0982221754681254,0.1111357235530521,0.1264229190470145,0.1398927983866688,0.1512618464487275,0.1619102588768464,0.1720800472128333,0.1851867819189067,0.1973523267267787,0.208516934860898,0.2196178845775064,0.2300604379272763,0.241246646118367,0.2515377831362961,0.2620403935784567,0.2707261389579855,0.2792153445765452,0.2867879517793244,0.2943677312814026,0.3008580028916119,0.3062042481699268,0.3119451268455233,0.3173387594031323,0.3225358282746104,0.3279080717203466,0.3332470289723739,0.3375323509216711,0.3370635027639207,0.3371710299808574,0.3377860444143839,0.3381352136282853,0.3375230011277972,0.336918933806653,0.3362973276584972,0.3369476067058167,0.3379677865646404,0.3387145685795323,0.3390090849489557,0.340358355039861,0.3409423470880889,0.3424581130223323,0.3427488060668602,0.3437369845897542,0.3455761491809783,0.348370143277232,0.3501205745640093,0.3535874616051035,0.3550600343053173,0.356472201709041,0.3579474342928661,0.3606108958285844,0.3617041286560707,0.3637986433416637,0.3638307621811517,0.359040959040959,0.3605756177029595,0.3642332947083816,0.0,2.1035016797023163,57.646237900939965,194.31465578450133,291.59669353018967,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95724,43407,409.3435293134428,6747,69.20939367347792,5238,54.14525092975638,2099,21.624670928920647,77.26691653433518,79.62695613845182,63.2951211478972,65.03904589717656,77.01080029983615,79.36919338458993,63.20108589009488,64.94614656760791,0.2561162344990322,257.76275386188274,0.094035257802318,92.89932956865243,111.69136,78.59929225375551,116680.6234591116,82110.3299629722,309.22099,197.6305244095541,322440.6522920062,205865.4302051252,318.37264,153.6439846213544,328029.7626509548,157037.2390445582,3000.53852,1368.8003154959165,3106015.2103965566,1401387.1082444494,1271.51276,558.7664368585766,1313349.901801011,568772.8495230353,2070.50312,864.688357871182,2135577.305586896,881250.8187092048,0.38363,100000,0,507688,5303.664702686891,0,0.0,0,0.0,26432,275.51084367556723,0,0.0,29441,303.1110275375036,1865444,0,66996,0,0,0,0,0,63,0.6581421587062806,0,0.0,0,0.0,0,0.0,0.06747,0.1758725855642155,0.3111012301763747,0.02099,0.3212155637602953,0.6787844362397046,24.90458445759711,4.508632588566012,0.3293241695303551,0.2140129820542191,0.2254677357770141,0.2311951126384116,11.12944209551107,5.480061573138336,22.58722603973858,12752.37607406665,59.581013149836046,13.185527922647497,19.68754440680912,13.229605030670504,13.478335789708924,0.5509736540664376,0.7671721677074042,0.6968115942028985,0.5757832345469941,0.1189099917423616,0.7261287934863064,0.9263157894736842,0.8733031674208145,0.7262773722627737,0.1725490196078431,0.4900951890918446,0.6855600539811066,0.6360093530787218,0.5303197353914002,0.104602510460251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599238342178,0.0047044986768597,0.0069204854487153,0.0092339573958005,0.0115330634827004,0.0135623593617952,0.0158521418231492,0.0181502654144548,0.0203226268119645,0.022754491017964,0.0247252747252747,0.0266521565044197,0.0286595711861792,0.0305805042847725,0.0325908654788556,0.0347001850263068,0.0368441218196315,0.0390604737055058,0.0412240400806602,0.0432173369451969,0.0579698039133794,0.0717889140082056,0.0847735070985614,0.0975697001578116,0.1099987340703856,0.1260210775807339,0.138759739294737,0.1513066814338352,0.1629456170740574,0.174191193834396,0.1878489963995429,0.2003402208184802,0.2121373813049917,0.2230398598335523,0.2335643378909908,0.2449527741706345,0.2546149803772488,0.264114379710896,0.2731930071677666,0.2826682562791604,0.2905604036943589,0.2980745596067186,0.3056746323094048,0.3123335652424249,0.3181663424124513,0.3238731012697277,0.3289028213166144,0.3342255531763026,0.3398014147576091,0.3439010501503052,0.3435310665692878,0.3434173049802284,0.3439003679592414,0.3436801949464767,0.342611653092276,0.3423776783104917,0.3412534216054491,0.3420162102378712,0.3431315283122594,0.3438958707360862,0.3439454449551654,0.3445939232557677,0.3451825910845763,0.3458986527518499,0.345338726475646,0.3469248530646515,0.3475988051470588,0.3512012440889904,0.3530187468814598,0.3536728183176513,0.355441705898643,0.3575581395348837,0.3556701030927835,0.3530767457939617,0.3563251017125556,0.3588158364047081,0.3602084610668302,0.3607787467045224,0.3610118229309871,0.3639521420301042,0.0,2.189866803558264,59.554010794503775,202.65630720976037,290.0336740467632,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95708,43231,406.7894010949973,6756,69.49262339616332,5273,54.56179211769131,2116,21.77456429974506,77.288290147924,79.65733723147534,63.294707477804174,65.04389837266507,77.02798660213516,79.3963493765934,63.198965186961,64.95002704319059,0.2603035457888438,260.98785488193244,0.0957422908431766,93.87132947448151,112.1703,78.9169320721207,117200.08776695783,82455.4882268156,312.20174,199.90662845949944,325665.29443724663,208334.6241270316,320.99827,154.79598698509034,332054.69762193336,159144.92602805875,3029.88084,1372.9300464607234,3137174.0293392404,1405942.791052706,1286.9987,564.1032577965724,1332120.1675930957,576806.6700762439,2076.4452,863.8241522728204,2138738.809712877,876259.1608808556,0.37982,100000,0,509865,5327.276716679901,0,0.0,0,0.0,26700,278.4302252685251,0,0.0,29643,306.4634095373428,1859210,0,66803,0,0,0,0,0,39,0.3970409997074435,0,0.0,0,0.0,0,0.0,0.06756,0.1778737296614185,0.3132030787448194,0.02116,0.3186674163621029,0.6813325836378971,25.10779583876204,4.433033018142179,0.3292243504646311,0.2114545799355205,0.2328845059738289,0.2264365636260193,11.339382496658326,5.872911433908665,22.496106436461364,12675.422741261127,59.56822444270141,13.308478471021408,19.53481199718893,13.621755632928704,13.103178341562382,0.5566091409065048,0.7766816143497758,0.6877880184331797,0.6017915309446255,0.1139028475711892,0.7197026022304833,0.9209183673469388,0.8427230046948356,0.7314487632508834,0.1680327868852459,0.5007637474541752,0.6984785615491009,0.6374045801526718,0.562962962962963,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021369469004142,0.0042882776938595,0.0065450338921134,0.0087974156321745,0.0113701082092588,0.0136240059465018,0.0158438857282681,0.0180983004134129,0.0205256110151386,0.0227907690733254,0.0248734293971754,0.027016484982858,0.029240607842734,0.0311631068361104,0.0333776856350115,0.035726465694532,0.0379155752047461,0.0399946037379492,0.0420497566252028,0.0441044667236384,0.0591847604724754,0.0727126150366965,0.0862045442619509,0.0987845303867403,0.1110407364009669,0.1260654574717025,0.1388127853881278,0.1506078654917797,0.1620257496043458,0.1731688197330412,0.185956473912387,0.1981798483206933,0.2101049925938834,0.2211857447856791,0.2315639904391598,0.2427732836201826,0.2525329337299546,0.2612294610535338,0.2705085902833087,0.2785307360102912,0.2867799756366379,0.2937657615389126,0.3009624627653893,0.3072661948306316,0.3140187826595368,0.3200138427121828,0.3255212258226576,0.3300447972636657,0.3357760972947688,0.3411831672027852,0.3407140544041451,0.3404901203223314,0.3406388303663589,0.3401073397156948,0.3404121957407435,0.3400482490511532,0.3399698340874811,0.340696602580985,0.340946893701665,0.3407123268027747,0.3422424664495849,0.3434052852948179,0.3445263157894737,0.3469076898953923,0.3481734610386485,0.34928865495857,0.3495679945250791,0.3510303106685991,0.3541263076327005,0.356624681122449,0.3585052728106373,0.3613620569840167,0.3653239045334007,0.3684692942254812,0.3678257618246401,0.3663331371394938,0.3731003039513678,0.3782206119162641,0.3735787763941526,0.3768939393939394,0.0,2.053829730586568,59.35629331757748,198.1441818724336,297.7452330119572,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95812,42547,400.597002463157,6666,68.28998455308312,5183,53.33361165615998,2026,20.63415856051434,77.36488025655099,79.67941115485671,63.35773544642036,65.07095336170913,77.10705202209057,79.42670746468124,63.26180841382241,64.98038687930247,0.257828234460419,252.7036901754656,0.0959270325979488,90.56648240665766,114.18066,80.30771171887116,119171.33553208366,83817.79393068836,310.65648,198.5192504849184,323455.84060451714,206417.89463106744,314.16657,151.79416160219694,323028.9316578299,154638.87809158574,2975.51204,1351.9425871222045,3064616.290235044,1370128.9891894571,1242.12039,543.9220193561127,1278113.597461696,549396.5571704094,1997.49252,839.2115344462246,2037501.87867908,834631.6283706406,0.37666,100000,0,519003,5416.878887821985,0,0.0,0,0.0,26559,276.3954410720995,0,0.0,28999,297.86456811255374,1861003,0,66811,0,0,0,0,0,60,0.6262263599549117,0,0.0,0,0.0,0,0.0,0.06666,0.1769765836563479,0.3039303930393039,0.02026,0.3217552887364208,0.6782447112635792,25.07697599298338,4.524951681038647,0.339764615087787,0.2058653289600617,0.2270885587497588,0.2272814972023924,11.233692364209304,5.604100703137253,21.63615468387339,12484.307888526584,58.57118143271083,12.635466152425623,19.80111170127945,13.176402580109032,12.958200998896723,0.5535404206058268,0.7656982193064668,0.7047132311186826,0.566694987255735,0.1222410865874363,0.718558282208589,0.918918918918919,0.8627906976744186,0.7078651685393258,0.1561181434599156,0.4980665119876257,0.6843615494978479,0.6536438767843726,0.5252747252747253,0.1137088204038257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0043898779350338,0.0064432989690721,0.0086641205866818,0.0107381458394769,0.0128090253736814,0.014862688332076,0.0170998632010943,0.01928974484789,0.021434054966989,0.0237978108473742,0.0259946840717137,0.0279756215377342,0.030228800214082,0.0322740251306525,0.0343453530025085,0.0364405552452471,0.0384930215208629,0.0407455479985462,0.0427617204569573,0.0573565304462106,0.072018396571548,0.0847178864003017,0.0975069310257918,0.109753657226511,0.1247465574047478,0.1375949487779814,0.149369080143299,0.1601126592271747,0.1707727243514214,0.1838447303868829,0.1960688916999124,0.2080472009735744,0.2190715456034953,0.2288289278452492,0.2400959985843526,0.2503537170931696,0.2590824863832893,0.2687028606373581,0.2763935738379738,0.2844586634635374,0.2904679618905287,0.2977581866956593,0.3035936453249114,0.3103804169651639,0.3157953075928321,0.3211511763160857,0.3258907000991786,0.3306590406190556,0.3349411563146588,0.3349076279282552,0.3345394012766894,0.3346771919932337,0.3341866620384431,0.3339088500580478,0.3333589051184485,0.3324073339153901,0.3336737214856295,0.3346024559237154,0.3356328841743119,0.3360592413936047,0.3373295160841385,0.3376292458988776,0.3389423076923077,0.3405741258067623,0.3421801938298373,0.3424719997720083,0.3440375646035548,0.3474492671927847,0.3503897661403158,0.3543256412613772,0.3573192997529803,0.3567187998723268,0.3591527520098949,0.3579420483886392,0.357588108367298,0.3598014888337469,0.3629995879686856,0.3791285040244241,0.3821928460342146,0.0,2.9327076376178582,56.43068497724307,197.00297729353235,293.94680394926297,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95644,43102,406.7688511563715,6649,68.46221404374555,5137,53.19727322152984,2086,21.496382418133912,77.2563444549925,79.66525668432848,63.27473565930678,65.05507529663363,77.00122748145067,79.40946295670183,63.18224839829802,64.96484666261094,0.2551169735418312,255.79372762665287,0.0924872610087561,90.22863402269364,112.5465,79.22333433723745,117672.3056333905,82831.47331483151,309.25564,198.06512461613775,322831.0401070637,206576.4759066306,312.24499,150.4418388222728,323111.3922462465,154768.0503782371,2963.43832,1331.6482421213357,3069793.567813977,1363685.418971744,1284.8183,553.7752545589484,1332397.1707582285,568059.5798575432,2052.52082,844.674616787364,2116606.896407511,857048.6229518811,0.38035,100000,0,511575,5348.741165154112,0,0.0,0,0.0,26390,275.39626113504244,0,0.0,28899,298.774622558655,1860047,0,66791,0,0,0,0,0,55,0.5750491405629208,0,0.0,0,0.0,0,0.0,0.06649,0.1748126725384514,0.3137313881786734,0.02086,0.3221841052029731,0.6778158947970269,25.26216192008769,4.467133499993482,0.323729803387191,0.2168580883784309,0.22328207124781,0.236130036986568,11.208658227631178,5.681405673802579,22.18121874112641,12647.882276599554,58.04383742721667,13.380594617736527,18.645961518486097,12.649485985162368,13.367795305831669,0.5592758419310881,0.7854578096947935,0.6987372218881539,0.5876198779424586,0.133553173948887,0.7056936647955092,0.8903743315508021,0.8503937007874016,0.7027027027027027,0.1759656652360515,0.5123393316195373,0.7324324324324324,0.6536661466458659,0.5540540540540541,0.123469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0045407092831152,0.0065760764773338,0.0088588176729348,0.0110387628446434,0.0133553375508083,0.0155765464338175,0.0177060770771179,0.0200171838880592,0.0224762841395701,0.0247598916434083,0.0266578971708099,0.028794679624444,0.0308788353678653,0.0332730747378751,0.0352959437086092,0.0371119058725962,0.0390800299177262,0.0410410097919853,0.0428705538750391,0.0568427653237184,0.0713208179684881,0.0845196103132611,0.0976074439754534,0.1102646351242983,0.1253015617725483,0.1377374509179667,0.1496022745423761,0.1614385721156415,0.1723893729344607,0.1856586932853277,0.1988148244445166,0.2102030147251024,0.2207733862219349,0.2310627364056417,0.2421999001054442,0.2518565740616472,0.2623933646618659,0.2719689996477232,0.28027939624719,0.2879221788078702,0.2947396804182933,0.3023106851394951,0.308594547222589,0.3153133408822491,0.320824171751859,0.3261087698173791,0.330536249442071,0.3354363008541683,0.3398693674635075,0.3394894225966277,0.339762795642509,0.3400905361437261,0.3401518560996501,0.3395521830701898,0.3394845884871917,0.3380221179091415,0.3381746162733124,0.3392045454545455,0.3404695511378969,0.3423477866747242,0.3433031980564738,0.3431759222154261,0.3439885067792044,0.3458406823068931,0.3470680628272251,0.3497377396887271,0.3522921277268416,0.3535101294316263,0.3562194200246629,0.3565261090045228,0.3588087740833645,0.3602740595064391,0.358673274876096,0.3603461109043543,0.3606750855659152,0.3598187311178247,0.3627234384414541,0.3574134199134199,0.3668981481481481,0.0,1.945759353874024,55.12094314879006,200.94152030087383,291.42416304103745,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95694,42920,404.4454197755345,6562,67.42324492653667,5113,52.86642840721466,2052,21.067151545551443,77.32722884548278,79.70630379070639,63.32110870231941,65.07694469390495,77.0805668093611,79.45904118286158,63.2303378275681,64.98829214279105,0.2466620361216769,247.26260784480303,0.090770874751314,88.65255111389558,112.54012,79.18173142918361,117604.15491044371,82744.71903064311,306.08763,195.38608101007003,319346.1972537464,203663.3446298305,313.55221,150.95949983209383,323779.7981064643,154717.59678915236,2927.44236,1326.5246732053392,3028856.3546303846,1355901.219726774,1239.03038,539.0030055336845,1283210.3057662966,551683.3819609219,2020.98238,840.9386859538597,2077633.8746420883,850856.4287170122,0.38012,100000,0,511546,5345.643405020169,0,0.0,0,0.0,26223,273.4654210295316,0,0.0,28943,298.74391288900034,1866279,0,66987,0,0,0,0,0,56,0.5747486780780404,0,0.0,0,0.0,0,0.0,0.06562,0.1726296958855098,0.312709539774459,0.02052,0.3194202898550725,0.6805797101449276,24.88595854921164,4.495214123037417,0.3301388617250146,0.217484842558185,0.2223743399178564,0.2300019557989438,11.248448694374693,5.672471490289308,21.857140408062712,12559.584952683275,57.64882773083772,13.001325256142035,19.15953535898106,12.5886665416616,12.899300574053022,0.5450811656561706,0.7670863309352518,0.6901658767772512,0.5646437994722955,0.1079931972789115,0.7191188040912667,0.9152046783625732,0.8752834467120182,0.7298387096774194,0.1416666666666666,0.4875065070275898,0.7012987012987013,0.6246992782678428,0.5185601799775028,0.0993589743589743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361896855447,0.0042869738829037,0.0066450238409252,0.0087957179276232,0.0109415198137094,0.0130634437396271,0.0153162156098953,0.0173623522923411,0.019460863518295,0.0218942970374087,0.0240283047892523,0.0261490268577004,0.0286046368105984,0.0310249250394122,0.0329115752972258,0.0350058946410473,0.0368708948884238,0.0388185215946843,0.0408891385300297,0.0431746164109406,0.0575430606766453,0.0708529565672422,0.0835055331200503,0.0964935351856332,0.1081146641916976,0.1232876712328767,0.1356049110222099,0.1471571550255536,0.1584547668903038,0.169294632513837,0.1824585590728434,0.195841586301696,0.2078479993909535,0.2181173923028971,0.2289245465751012,0.2399539104133659,0.249469877904511,0.2597225815886873,0.2689212960335924,0.2770032647917979,0.285022868059978,0.2928756188625803,0.2997643938766087,0.3057716511836979,0.3119522541905213,0.3187351232687493,0.3237732635322997,0.329567454656613,0.3341890980758259,0.3388650327013279,0.3388298159442975,0.3391605019906049,0.3389808989081059,0.3389107421762017,0.3382501786139557,0.3375537799631223,0.3366547139275854,0.3379511842817983,0.3393570867352167,0.3412142284033164,0.342378590811266,0.3435376836783062,0.3445848261990069,0.3455688274504541,0.3466422495843473,0.3482079836875539,0.3499442809383661,0.3516808973187561,0.3534470654310587,0.3567162990683972,0.358949683805334,0.3602139037433155,0.3602633911612004,0.3629038446780753,0.3654229564226716,0.3634195779182067,0.3640986132511556,0.3665379142102053,0.3733775200220933,0.3837567359507313,0.0,2.239868941446829,55.80212857637327,193.6700357985616,291.5777821397073,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95784,42907,404.5456443664913,6583,67.60001670425123,5132,53.04643781842479,2098,21.61112503132047,77.38146625236273,79.70422990962041,63.35451413110488,65.06782898953418,77.12276833922017,79.44343060124146,63.259320937819055,64.97387151023504,0.2586979131425551,260.7993083789495,0.0951931932858229,93.95747929913512,112.44354,79.11835772145535,117392.59166457863,82600.57809389391,307.0779,196.21139555555413,320043.6711768145,204297.4403113982,309.01458,148.71337480889926,318818.03850329906,152462.48618352422,2966.90048,1341.2739950678128,3069902.113087781,1372734.8705721449,1236.50841,537.0944572905446,1279520.1703833626,549336.1311546207,2059.59986,860.9850019100157,2123706.3183830287,876463.321264128,0.38067,100000,0,511107,5336.026893844483,0,0.0,0,0.0,26210,273.07274701411507,0,0.0,28578,294.57947047523595,1867694,0,67083,0,0,0,0,0,49,0.5115676939781174,0,0.0,0,0.0,0,0.0,0.06583,0.1729319357974098,0.3186996809965061,0.02098,0.3175150992234685,0.6824849007765315,25.396463753441505,4.527983308923722,0.323460639127046,0.2084957131722525,0.2320732657833203,0.2359703819173811,11.083231158208454,5.622661202649868,22.404005981149957,12627.692882858715,57.81299703259229,12.538388435809107,18.710991529459065,13.209947184916414,13.353669882407688,0.5457911145752143,0.7644859813084112,0.6957831325301205,0.5801847187237615,0.1131296449215524,0.6971990915972748,0.9027027027027028,0.8411214953271028,0.7310606060606061,0.1312741312741312,0.4933088428234059,0.6914285714285714,0.6452922077922078,0.5372168284789643,0.1081932773109243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023996112022355,0.0046515870120394,0.0071819113216542,0.0094747745552035,0.0117949708684555,0.0138343139849746,0.0157880789302022,0.0179695711180726,0.0201164691458929,0.0221190047470944,0.0241978445273122,0.026234251241433,0.0283432846557801,0.0306973296823207,0.0327845191088384,0.034678976773967,0.0366008878586876,0.0386190451505883,0.0404109660194679,0.0425117654408396,0.0565620303890465,0.07065052475175,0.0841347918655018,0.0968945797064883,0.1092321803211284,0.1255711626332712,0.1385005409763031,0.1511225608652607,0.1627430036317026,0.1735373267146272,0.1864746156827283,0.1994614411316224,0.2108324996737854,0.2210737021723436,0.231152627409559,0.2420841550153996,0.2523552261463589,0.26222702264826,0.2704371814229114,0.278695288414152,0.2863330013664683,0.2936279331178867,0.3010799801056296,0.3070450895318455,0.3129957365141448,0.3191148567063404,0.3239760814631339,0.3285534335118903,0.3330611610093705,0.3380984437492575,0.3384654759018292,0.3394203776077503,0.3391890367696819,0.3396226415094339,0.3394253541266366,0.3385302376969938,0.3383438400861659,0.339985885210655,0.340408079565262,0.341560040687403,0.3422511990407674,0.3430878897379697,0.3436956293889529,0.3448801254761371,0.3464140404940173,0.3485635258200036,0.3497095010252905,0.3509636512022098,0.3540198450264717,0.3545772409408773,0.3583136040794026,0.3596017371041203,0.3593016707339966,0.3599152606491639,0.3609411764705882,0.3637761741393588,0.365378764831153,0.3646631706333199,0.3691128148959474,0.3795088257866462,0.0,2.0321973564326523,58.52824328030994,185.38275249339787,294.4345958834523,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95763,43029,405.2086922924303,6661,68.4815638607813,5231,54.10231509037937,2105,21.62630661111285,77.31912755708531,79.66988905251262,63.32066847763053,65.05859171764584,77.06212917186585,79.41316444636975,63.22507806100516,64.96638035034138,0.256998385219461,256.72460614286763,0.0955904166253702,92.21136730445778,112.0075,78.7762346927661,116963.23214602716,82261.66128125279,308.48877,197.37086421364404,321621.76414690434,205587.48599526336,316.74924,151.78610213202435,327844.14648663887,156239.38162593413,2999.68488,1357.4625686994011,3101380.031953886,1386498.1764349514,1248.35018,541.7525269297115,1288081.795683093,550220.979845777,2068.42134,866.0265596694082,2125885.7387508745,872545.0257473618,0.37993,100000,0,509125,5316.510552092144,0,0.0,0,0.0,26309,274.1873166045341,0,0.0,29211,302.17307310756763,1867147,0,67115,0,0,0,0,0,64,0.657874126750415,0,0.0,0,0.0,0,0.0,0.06661,0.1753217697996999,0.3160186158234499,0.02105,0.3255614361321699,0.6744385638678301,24.97308178792484,4.44853868019593,0.3150449244886255,0.2261517874211432,0.2288281399350028,0.2299751481552284,10.975822079570955,5.560847748786409,22.524393979949707,12590.157033395188,59.0693006649449,13.887391061250824,18.58245671077053,13.211362016919438,13.388090876004116,0.5528579621487287,0.7869822485207101,0.6850728155339806,0.581453634085213,0.113050706566916,0.706646294881589,0.927461139896373,0.8401937046004843,0.7137254901960784,0.1490196078431372,0.501529831718511,0.7189460476787954,0.6331983805668017,0.5456475583864119,0.1033755274261603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0044893037019021,0.0067063025039568,0.0089886042779662,0.0113290823850057,0.01362622590205,0.0155799133316339,0.0177776416288853,0.0198871188728246,0.0219999590507974,0.0243609855125957,0.026553306841635,0.0286628134191743,0.0308955485273362,0.0329973069740086,0.0352119226515911,0.0370838164651316,0.0392120250210064,0.0413687754593066,0.0433084398337655,0.0575794901772479,0.071206653067629,0.0845605202433396,0.0974173466812484,0.1092942838467539,0.1240219092331768,0.1364176318357303,0.1480389861888446,0.1593857785086548,0.1702170999731975,0.1844066336420418,0.1969695329833865,0.2091088075011149,0.2199829411250109,0.2311280793055265,0.2417409601860568,0.2519031991605831,0.2612990695214842,0.2699217996299953,0.2782047024061752,0.2862567581647892,0.2941259101444525,0.3013055943890245,0.3072749750939229,0.3127661127466485,0.3188446958003532,0.3238144187737398,0.3290543813578767,0.3350117445527337,0.339128480393453,0.3382120840134356,0.3374360812095985,0.338304242218833,0.338565899899987,0.3389472116744844,0.3387168583140151,0.3372021021545496,0.3375637860082304,0.3384575879483009,0.3398204397613031,0.3408381296317195,0.3426056268215794,0.3440900957793916,0.3447903787793638,0.3456670853057675,0.3456192246276275,0.3447318720311337,0.3466851699993692,0.3480131166037868,0.3507643438554695,0.3527587779297765,0.3543076349299376,0.3567724800809409,0.3582375478927203,0.3583135954523922,0.3607041587901701,0.3619847328244275,0.3615899411883999,0.3555678059536934,0.357958872810358,0.0,2.0509973084322835,58.02724093485092,196.8484660983844,298.38272654707026,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95688,43434,411.5040548449126,6569,67.54242956274558,5092,52.70253323300727,2043,20.984867485996155,77.34181859432726,79.72280734820187,63.3271521787835,65.08484747548958,77.09281981654473,79.47500696858076,63.23489568967204,64.99565072947232,0.248998777782532,247.80037962111123,0.0922564891114632,89.19674601726513,112.70622,79.30282105836375,117785.1141208929,82876.45374379624,307.47392,197.0796158153919,320827.3137697517,205460.4050824272,315.75062,152.1563913108909,327042.57587158267,156768.13784137712,2927.88864,1326.23511833872,3030171.3485494526,1356456.7003702738,1229.68604,538.1883947282112,1270346.250313519,547879.5829684775,2005.68976,835.577823446915,2060607.704205334,842717.4499593207,0.38217,100000,0,512301,5353.86882367695,0,0.0,0,0.0,26198,273.2526544603294,0,0.0,29096,301.0931360254159,1864888,0,66920,0,0,0,0,0,58,0.6061366106512833,0,0.0,1,0.0104506312181255,0,0.0,0.06569,0.171886856634482,0.3110062414370528,0.02043,0.3276934201012292,0.6723065798987707,24.99042854892379,4.437902387756999,0.3316967792615868,0.2213275726630008,0.2187745483110762,0.2282010997643362,11.095370388657544,5.77593593434809,21.6552993874614,12644.26011185446,57.3232442908345,13.171261883624345,19.051081330827486,12.38853096014151,12.712370116241154,0.5532207384131972,0.7728482697426797,0.6755476613380699,0.5879712746858169,0.1290877796901893,0.728957528957529,0.9210526315789472,0.8712871287128713,0.754863813229572,0.1889763779527559,0.4932841717145114,0.6974564926372155,0.6140077821011674,0.5379229871645275,0.1123348017621145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.004530849306182,0.0064527256678469,0.0083991793788466,0.0105950298938463,0.0128085037061171,0.0148712146693983,0.01704725253412,0.0192867874773863,0.0215582102386143,0.0235111967845131,0.0255625507091579,0.027488863512443,0.029583603820829,0.0315935058366963,0.0336781133636739,0.0356780170359163,0.0375119398646123,0.0396458814472671,0.0415024707574904,0.0562972713217166,0.0702274250293181,0.0832721089863347,0.0960393122461434,0.1085477388524953,0.1245107787344771,0.1383807300509338,0.1509777413482931,0.1619920718872541,0.1722614272538126,0.1862446284908078,0.1984618047292473,0.210889236926825,0.2216780005685172,0.2316967183357352,0.242648768980297,0.2524444146798821,0.262074007423237,0.2714739589243163,0.2801158942293377,0.2871616932685635,0.2953758712635075,0.3027489295261527,0.3088610628482415,0.3142485756283635,0.3199526726401025,0.3256154491182839,0.3304988734294843,0.3354114551605252,0.3404381759835189,0.3405909378747255,0.3416259379087217,0.3415136385433415,0.3418034565044471,0.3423235897588391,0.3415606927549126,0.3409414895302056,0.3422747133611485,0.3414801005661119,0.3425902775297353,0.3437827519089684,0.3458498023715415,0.3464271490556941,0.3470497415587031,0.3475583353379841,0.3478635829086632,0.3493418610627302,0.3519692239775486,0.352133554512406,0.3552374496590773,0.3554467676259322,0.3583288983501863,0.3653930610452349,0.3677041321056236,0.370987365465606,0.376546146527117,0.3776041666666667,0.377320419693301,0.3849972421400993,0.3932670237184392,0.0,1.9771898476485084,57.27559808565817,187.5848554372847,290.1811200062068,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95671,43034,406.8840087382801,6667,68.41153536599387,5231,54.00800660597255,2054,21.072216241076188,77.38307130315455,79.75938146529934,63.34642469116329,65.09772747047113,77.12140517539854,79.49849747780831,63.24992738822954,65.00396047000883,0.2616661277560155,260.88398749102737,0.0964973029337556,93.76700046229304,112.5553,79.18649702880256,117648.29467654775,82769.59269664012,307.90213,196.91346313509152,321178.3508064095,205167.6741392784,319.78776,154.44860889040137,329636.04436036,158004.59077246944,3011.30068,1373.0266886741626,3111304.0315247043,1399035.681704769,1272.63028,558.9408477204573,1313121.7296777498,567310.8920068112,2024.95866,848.9182544457615,2080398.7415204188,856616.1587014977,0.38025,100000,0,511615,5347.649758024898,0,0.0,0,0.0,26351,274.75410521474635,0,0.0,29475,303.55071024657417,1864676,0,67056,0,0,0,0,0,56,0.5748868518150745,0,0.0,0,0.0,0,0.0,0.06667,0.1753320184089415,0.3080845957702114,0.02054,0.323151584356266,0.676848415643734,24.840880833939117,4.464431896944028,0.3247944943605429,0.2181227298795641,0.2271076276046645,0.2299751481552284,11.300878917184628,5.786583396973668,21.930503735268434,12616.606712395223,59.122662692471344,13.390450964514136,19.187729830504253,13.196622535682064,13.34785936177088,0.5666220607914356,0.775635407537248,0.7233666862860506,0.5858585858585859,0.1280133000831255,0.7195571955719557,0.9291553133514986,0.8764044943820225,0.7526881720430108,0.1287878787878787,0.5131578947368421,0.7028423772609819,0.6690590111642744,0.5346534653465347,0.1277955271565495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611694319872,0.0048122707839442,0.0070587519396355,0.009210365977497,0.0114584921966346,0.0136811995480318,0.0158107198923525,0.0176688544335453,0.0200341398096756,0.0220299943696575,0.0239908957626336,0.0260823133163558,0.028180023037683,0.030066746322772,0.0321455835929601,0.0342714222226815,0.0362163450083392,0.0381737226125854,0.040172628951747,0.0420622596479526,0.056912437582266,0.0713044388609715,0.0841297984619742,0.0970757405284907,0.1093725287586592,0.1242876325611393,0.1377244874159828,0.1499175751130018,0.161984229451872,0.1726683452081212,0.1865331239107515,0.1996648467484729,0.2110245291426211,0.2209350615287097,0.2306279353696228,0.2421029305855631,0.2525268318833134,0.2621501379737568,0.2710341929842492,0.2786073642833404,0.286499687492766,0.2936486565591524,0.3009834123222749,0.3086173787806049,0.3145199547505808,0.3205034861479607,0.3254899012679798,0.3306663269206268,0.3351317001050488,0.3401879286875388,0.3398771187582527,0.3393914360457111,0.3397832490099637,0.3395825196372,0.3390546449712943,0.3383477112946305,0.3374315856270326,0.3376473877222122,0.338329250954934,0.3384147432456611,0.3390541071662518,0.3390623150084849,0.3404388845888333,0.341411706946955,0.3418188791408984,0.3435201787895325,0.3456933726736269,0.3483790133124511,0.3514499105859252,0.3549905093324897,0.3567857467502954,0.3579875409143702,0.3593515272909364,0.3613146958821307,0.3606054977711738,0.3615133115366651,0.3651483368294875,0.3684313725490196,0.3692101740294511,0.3652495378927911,0.0,2.551841502452563,59.203093531957016,200.91401438221624,285.76876335910174,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95690,43133,406.949524506218,6777,69.59974919009301,5266,54.41529940432648,2175,22.290730483854112,77.3960056150407,79.78117122985589,63.35197710932333,65.11356259503118,77.13089870803735,79.51784635536403,63.25369338139922,65.0189132010403,0.2651069070033571,263.3248744918575,0.0982837279241053,94.64939399087768,111.8007,78.6604044814289,116836.34653568816,82203.36971619699,311.02944,199.0289482730127,324401.98557843035,207358.132365598,316.8333,152.67954123556382,327700.40756609885,156887.5197617047,3038.10164,1383.0601104744176,3140915.4561605183,1411398.4229728233,1259.38486,554.2975179975523,1301390.2706656912,564749.7212503655,2138.57536,895.3359187003009,2193696.9171282267,899951.3628921501,0.38169,100000,0,508185,5310.743024349462,0,0.0,0,0.0,26619,277.5107116731111,0,0.0,29300,302.7589089769046,1870902,0,67049,0,0,0,0,0,46,0.4807189884000418,0,0.0,0,0.0,0,0.0,0.06777,0.1775524640414996,0.3209384683488269,0.02175,0.3175875158161113,0.6824124841838887,25.04030336390608,4.542865475333924,0.3258640334219521,0.2105962780098746,0.2318647930117736,0.2316748955563995,11.09754396378548,5.535730431488283,23.132042317971727,12691.247715568432,59.38969550307657,13.084303280284614,19.23458448669593,13.564767729761142,13.50604000633489,0.5495632358526396,0.7700631199278629,0.7016317016317016,0.5667485667485668,0.1180327868852459,0.7045624532535527,0.9182561307901907,0.8711943793911007,0.7007299270072993,0.1524163568773234,0.4968185288877577,0.6967654986522911,0.6454615981380916,0.5279831045406547,0.1083070452155625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426218381838,0.0048163695727119,0.0068106615781246,0.0087884175768351,0.0109454153357882,0.01339958457215,0.0156713602577566,0.0180808379871157,0.0200985503690527,0.0224776605218174,0.0247490747290827,0.0266027352252659,0.0287145310748408,0.0308708102428874,0.0330478745356995,0.0351247144437208,0.0370197735723977,0.0388208428482457,0.0409243601343691,0.0428778388068412,0.0576886920554012,0.0719189551239115,0.0850019404440994,0.097623804016402,0.1102561399810266,0.1266522851764905,0.1393774797903715,0.1507041803723693,0.1618454504668105,0.1724134232794586,0.1858892203638086,0.1991692267751287,0.2104897080878996,0.2214376284377596,0.2315211893294627,0.2425436751322985,0.2523703290574456,0.2619692356093889,0.2710656332154836,0.2801811382894782,0.2884959635973068,0.296788883699206,0.3037123682593695,0.3099255642516934,0.3162676175921209,0.3220030498302917,0.3263653154952076,0.3313878985498052,0.336445098646834,0.3409369117976123,0.3411587740739746,0.3417405384636496,0.3414294554455445,0.3419404191443912,0.3424114696191635,0.3421837937103068,0.3412870456811026,0.3416988100123102,0.3418705576817933,0.3423270597478661,0.3429096156368884,0.344172639143912,0.345033154140607,0.3472104535521563,0.3470383275261324,0.3479460613318061,0.3472372082457834,0.3497973418795362,0.3513873785386046,0.3545653471255222,0.3564102564102564,0.3560326870693799,0.3592362344582593,0.3630938719302272,0.368801064031921,0.3709387363625465,0.3722324723247232,0.3721451876019576,0.3757289641766176,0.3771895679252627,0.0,2.260495164105911,58.78155004491383,197.43282169323896,297.7709791856261,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95825,43237,407.941560135664,6603,67.66501434907383,5151,53.2011479259066,2059,21.14270806157057,77.38566316619061,79.70666369281109,63.36611244363343,65.08415160556147,77.12751548154273,79.44810476513915,63.27129676268775,64.9914446694134,0.2581476846478807,258.5589276719418,0.094815680945679,92.70693614807612,113.43574,79.82791972463134,118378.02243673363,83305.94283812298,311.31215,199.54204107216205,324356.5875293504,207716.76605495648,319.80674,154.3785625173398,330005.0717453692,158258.91746557012,2987.11712,1367.4529455774757,3087261.3201147923,1397029.9875580238,1295.29104,575.0342386735829,1335339.2016697105,583792.790991701,2041.03154,854.9935901172543,2097665.4943908164,865603.0316393806,0.38092,100000,0,515617,5380.81920166971,0,0.0,0,0.0,26625,277.2867205843986,0,0.0,29585,305.0560918340725,1862376,0,66891,0,0,0,0,0,53,0.5530915731802766,0,0.0,0,0.0,0,0.0,0.06603,0.1733434841961566,0.3118279569892473,0.02059,0.3347719752553589,0.665228024744641,24.99408746958104,4.493191260534486,0.3110075713453698,0.2151038633275092,0.2339351582217045,0.2399534071054164,11.160212435087404,5.615875112078452,21.95985878833269,12621.541170239314,58.3943134003658,13.091240161891989,18.11232549250944,13.416351536410804,13.774396209553558,0.5441661813240147,0.7635379061371841,0.6922596754057428,0.5701244813278008,0.1302588996763754,0.6944858420268256,0.9081081081081082,0.8481927710843373,0.724907063197026,0.1701388888888889,0.4912050406930953,0.6910569105691057,0.6377422072451558,0.5256410256410257,0.1181434599156118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024004132356962,0.004632868019018,0.0069521267418375,0.0091540853026639,0.0112799544326457,0.0133489461358313,0.0155847068056957,0.0176956832329829,0.0199397005467831,0.0220225546982132,0.0244314862829092,0.0264089747405803,0.0283758645851532,0.0305297938261057,0.0325946854473648,0.0348186250206577,0.0367411975292036,0.0384834634080615,0.0403700588730025,0.0424336389082546,0.0573693543339939,0.071374811841445,0.0846548091939084,0.0970236281688957,0.1094421505013904,0.1258185121034176,0.1379902116570266,0.1495908173025826,0.1612820649565356,0.1717933339045497,0.1851616857907924,0.1981399066712754,0.210174349176021,0.2212143044275609,0.2313944293120112,0.2428186019769576,0.2528767642111595,0.261558161477288,0.270333952603199,0.2781899873097898,0.2866185388391568,0.29426593994001,0.3013236040758976,0.3074017404609352,0.3135492623367814,0.3192461731246468,0.3245884452654044,0.3295182022357852,0.3346035600795721,0.3396934502646757,0.3401299242780863,0.3393721134814163,0.3393849834635142,0.3392477856926122,0.3394547210459847,0.3383380316215222,0.3373390830109709,0.3376862603203842,0.3391250706831851,0.3399290881741995,0.3402514543066241,0.3414450477587095,0.3424224544841537,0.3444391987590207,0.3457357960734948,0.3463801618156982,0.3462564926679484,0.3485414161867999,0.3512174405436014,0.3547793382147001,0.3575590731819225,0.3602007046012597,0.3611093522446653,0.3646582046184431,0.36852097968483,0.3761996161228407,0.3774957436929267,0.3773469387755102,0.3772954924874791,0.390715667311412,0.0,2.1317129524583804,59.02020821666012,194.3202109132704,287.47613434659144,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95759,43331,408.0765254440836,6587,67.54456500172307,5149,53.112501174824295,2067,21.15728025564177,77.37657405990127,79.71996307888554,63.3458979718325,65.07848577248265,77.11969425289188,79.4660989139407,63.25079951182133,64.98743842031035,0.2568798070093976,253.86416494484365,0.0950984600111652,91.04735217229631,112.6785,79.2656279359542,117668.83530529767,82776.16509774975,305.01311,195.14427685007587,317885.27449117054,203150.5413069016,315.57339,152.44746114863722,324920.94737831433,155701.61131632616,2961.57788,1344.4382095165477,3055875.1866665278,1367115.2053765678,1238.06203,543.3570332184637,1276722.0209066512,551259.3183389789,2042.07088,849.9810074772787,2092605.958708842,853388.1982146002,0.38141,100000,0,512175,5348.583422968076,0,0.0,0,0.0,26079,271.6820351089715,0,0.0,29132,299.72117503315616,1867728,0,66996,0,0,0,0,0,58,0.5952443112396746,0,0.0,1,0.0104428826533276,0,0.0,0.06587,0.1727012925722975,0.3137999089114923,0.02067,0.3196650303205313,0.6803349696794687,25.09637956729691,4.468988833576597,0.3253058846377937,0.2177121771217712,0.2190716644008545,0.2379102738395805,11.104464467876497,5.571117634734716,21.78493505278125,12684.925793902074,57.86092849802384,13.14114503027895,18.9443325772343,12.5206377515801,13.254813138930478,0.5523402602447077,0.7743086529884032,0.6991044776119403,0.5913120567375887,0.1126530612244898,0.7095761381475667,0.9185393258426966,0.8626506024096385,0.7349397590361446,0.1417322834645669,0.5006451612903225,0.7071895424836602,0.6452380952380953,0.5506257110352674,0.1050463439752832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0045819014891179,0.0067777349378031,0.0090109309602178,0.0110344967862663,0.0133501695502082,0.0158558595303402,0.0180708130844938,0.0204050337868921,0.0225404592029972,0.0247212200721548,0.0270578212089795,0.0293195439638954,0.0315444743102542,0.0335898652691522,0.0355658914728682,0.0373380825662424,0.039617004502168,0.0416255159006559,0.0436068612849807,0.0585539980586375,0.0722450558989322,0.0852919593248768,0.0981976774735957,0.1106813511092374,0.1261178410604427,0.1393008979972646,0.1515119273083225,0.1627829987184963,0.1736384400098652,0.1864317332442998,0.1994633370481373,0.210517727178773,0.2217103967437687,0.2321530805478487,0.2427312531175525,0.2530096263373015,0.2627864571608662,0.2707028057749931,0.2792487402656894,0.2870215055007346,0.294459516347818,0.3015516344197928,0.3080617536799492,0.3142766898294378,0.3199437959893015,0.3255008378560888,0.3313086131090045,0.3368510902459843,0.3415570030855244,0.3414001263797577,0.34121802713141,0.3416051206302314,0.3416067457910999,0.3417334520629266,0.3411334384230421,0.340168668217275,0.3412169919632606,0.3417029635323255,0.3423230593607306,0.343122913619144,0.343442331264086,0.3436936370118703,0.3439949967612963,0.3446028807079135,0.3459281858718611,0.3465967392543609,0.3496953708937881,0.353232607167955,0.3542586625293392,0.3534518207154932,0.3539846580012785,0.3600756859035005,0.3611323058141309,0.3625763986835919,0.3647940966436562,0.36900199294803,0.3708023325960185,0.3753066230580539,0.3806451612903225,0.0,2.55815937380556,55.484725774978585,191.288735424174,297.8606797862655,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95741,42739,402.0534567217807,6703,68.81064538703377,5233,53.96851923418389,2156,22.04906988646452,77.3313489084019,79.69819936267649,63.31030609897547,65.06337558911873,77.0645785382794,79.43414325312126,63.212751841694775,64.96998043414848,0.2667703701225008,264.0561095552272,0.0975542572806915,93.39515497025276,112.15468,78.96117461960536,117143.83597413856,82473.73081501694,307.36938,195.60563007123235,320373.2152369413,203637.77672888,308.82847,148.83064731996018,318406.15828119614,152199.51514291577,3023.8194,1361.0643798353744,3119154.761283045,1382436.973678361,1241.03222,542.1334327072766,1275465.6521239595,545499.7657258315,2122.15282,878.1460725438392,2172457.7140410063,880096.2407800121,0.37833,100000,0,509794,5324.719817006298,0,0.0,0,0.0,26275,273.73852372546764,0,0.0,28561,294.1268630994036,1868714,0,67030,0,0,0,0,0,49,0.5117974535465475,0,0.0,0,0.0,0,0.0,0.06703,0.1771733671662305,0.321647023720722,0.02156,0.3200453965101433,0.6799546034898567,25.15088222036221,4.554642915301429,0.3279189757309382,0.2140263711064399,0.2222434549971335,0.2358111981654882,11.07647154328583,5.541106210928225,22.87243163468699,12576.77284856138,58.93654983298654,13.263296982072632,19.160151180568118,12.981018646413098,13.532083023932715,0.5493980508312631,0.7758928571428572,0.6824009324009324,0.588134135855546,0.1223662884927066,0.7204545454545455,0.9128065395095368,0.8732718894009217,0.7490196078431373,0.1742424242424242,0.4916943521594684,0.7091633466135459,0.6177847113884556,0.5429515418502202,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593947253771,0.0045833882596306,0.0068713524486171,0.0089209510262141,0.0114346171844798,0.0137079773095293,0.0159068430014989,0.018093264037085,0.0201086233877814,0.0223999836122662,0.0245118148999015,0.0266913237787024,0.0289280862799983,0.0309807478253699,0.033020572053799,0.0352714901713423,0.0375881457550247,0.0396496798763087,0.0417043481876487,0.0435570553680789,0.0585834333733493,0.0717327836087188,0.0846376568335361,0.0975707224734462,0.1095130643834749,0.1248215097891964,0.1376013413132985,0.1491047748889622,0.1615140472552016,0.1726213467233165,0.1858996465212518,0.1982782891174878,0.2104592808700101,0.2214583629815323,0.2317804961298349,0.2417929642892779,0.2520047354195984,0.261136816508494,0.2697153364205938,0.2779324967050599,0.2857258624681639,0.2926792134634078,0.2995210886934256,0.30648474002186,0.3119408979711062,0.3170818988388307,0.3219899550356333,0.3271810157056058,0.3316726348020136,0.3368469717984281,0.336879145769293,0.3366554705137382,0.3367249154453213,0.3362872797189655,0.3361450614075471,0.3350382848392036,0.3335337394193497,0.3345480810269542,0.3364802462801436,0.3374886146482596,0.3384015448358612,0.3393998140491781,0.340568312886652,0.3413678009005174,0.3428550766560602,0.3447365670081538,0.3450706234840919,0.3485824335417061,0.3481106708180017,0.3520150628956013,0.3548120989917507,0.3550724637681159,0.3568181818181818,0.3615073613547944,0.3677805859777216,0.366654933708788,0.3698568198944988,0.3661776367961935,0.3682926829268292,0.370986021911598,0.0,2.65002746761814,57.78612850718733,194.55213788219368,297.92998649452414,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95497,43333,409.55213252772336,6611,67.85553472883964,5142,53.33151826758956,2091,21.55041519628889,77.22623088476638,79.71297198344546,63.24095407219974,65.07601230512427,76.96524530181745,79.45001499341039,63.14469575736667,64.98105526708888,0.2609855829489333,262.95699003506456,0.0962583148330722,94.95703803538902,111.26126,78.27925643005976,116507.597097291,81970.38276601334,307.04198,196.9186009202124,321017.3618019414,205701.30048086576,313.7458,151.63237540640037,324965.6847859095,156096.5183174773,2973.01424,1353.1997050544012,3085806.7164413542,1389612.5585666576,1269.56441,558.7314757913919,1316633.475397133,572282.4128416516,2064.88456,865.5962336483718,2130381.247578458,880647.2528856619,0.38172,100000,0,505733,5295.7998680586825,0,0.0,0,0.0,26220,274.0295506665131,0,0.0,28916,299.34971779218193,1865602,0,66966,0,0,0,0,0,55,0.5549912562698305,0,0.0,0,0.0,0,0.0,0.06611,0.1731897726081945,0.3162910301013462,0.02091,0.3177610645067978,0.6822389354932022,24.83966566541046,4.63456895211362,0.323026059898872,0.2094515752625437,0.2285103072734344,0.2390120575651497,10.929051900691068,5.346843807678865,22.413918911477094,12668.821266427409,58.13020131429079,12.647941573927236,18.9051870524873,13.096381635321997,13.480691052554262,0.5402567094515752,0.7632311977715878,0.6923540036122817,0.5702127659574469,0.1106590724165988,0.7049429657794677,0.9090909090909092,0.8529411764705882,0.7175572519083969,0.1621621621621621,0.4836686699764829,0.6924137931034483,0.6341263330598852,0.5279299014238773,0.0969072164948453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024826468054922,0.0047673628368851,0.0069141267488374,0.0091204880528723,0.0115246782863658,0.0136982112826784,0.0157960795518321,0.0180042098379416,0.0202972981267967,0.0225815044773672,0.0243471834455575,0.0266399341969977,0.0286155588735004,0.030797475143364,0.0327736736064472,0.0349011771770528,0.0369905500866155,0.0389900627832522,0.041150548500349,0.0432803249417882,0.057922776608995,0.0719681074276122,0.0860718229139281,0.0992948913879783,0.1113541732716166,0.1261778828317946,0.1397814021732196,0.1522474367591673,0.1631770035664178,0.1735602037964615,0.1858285738963324,0.1987223288755843,0.2107237085977192,0.2217033358546825,0.2324642222688102,0.24302067126028,0.2531971312530069,0.2630534540493612,0.2723673882625957,0.2803944302228141,0.2879946173567045,0.2953705767133088,0.3021315483396235,0.3083841335112842,0.3149487238894241,0.3202049073833475,0.3259839352381431,0.330171311684991,0.3350453800743765,0.3394976685036032,0.3396946048663051,0.3396325386855873,0.3396111786148238,0.3388841425447805,0.3383335321483955,0.3373508793506334,0.3363707202264523,0.3372380795248308,0.3380286529013639,0.3387241527857553,0.3400523215327574,0.3419709695994917,0.3435547984099943,0.3452757761465418,0.3465005302226935,0.3472632652527524,0.3487979875939742,0.3513351429833975,0.3535032970132938,0.3559917025690123,0.3587733773377338,0.3601491742141715,0.3600352667044524,0.3643041041950628,0.3664965197215777,0.3689320388349514,0.3719046163252827,0.374487284659557,0.3756936736958934,0.3803303880138302,0.0,1.9458219365099156,58.1443430492309,190.460523302851,293.93947897732545,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95714,43348,408.0907704202102,6696,68.77781724721567,5172,53.50314478550683,2124,21.856781662034813,77.36399481233721,79.7505244614982,63.33329461681414,65.09800783991813,77.09473671863167,79.47933595932142,63.23286968886922,64.99957076317298,0.2692580937055453,271.18850217678414,0.1004249279449212,98.43707674514236,112.5058,79.12992713218188,117543.72401111646,82673.30498378698,309.58671,198.79318409265403,322877.875754853,207136.37181634796,319.78218,154.2270161246181,331084.6375660823,158823.10880241034,2992.78504,1375.4436615453512,3098127.1287376974,1408932.034270011,1288.80268,570.1576057256185,1334106.9958417786,583836.6670799761,2086.51512,883.9547516151357,2149358.8607727187,895999.4125920895,0.38187,100000,0,511390,5342.896545959839,0,0.0,0,0.0,26410,275.36201600601794,0,0.0,29590,306.141212361828,1864777,0,66975,0,0,0,0,0,56,0.5850763733623086,0,0.0,0,0.0,0,0.0,0.06696,0.1753476313928824,0.3172043010752688,0.02124,0.3267553267553267,0.6732446732446733,24.80357915488334,4.478868926246451,0.325599381283836,0.2140371229698376,0.2238979118329466,0.2364655839133797,10.98170717036231,5.568428268627925,22.771331818529223,12701.242123157514,58.77672530341288,13.098190513022704,19.104571372381223,13.08046520936766,13.493498208641286,0.5556844547563805,0.7777777777777778,0.6918052256532067,0.5967184801381693,0.1283728536385936,0.7184536834427425,0.9244791666666666,0.8611764705882353,0.7534246575342466,0.1629629629629629,0.4969744803998948,0.6998616874135546,0.6346306592533757,0.5438799076212472,0.1185729275970619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.004644700680479,0.007136766019654,0.0094517958412098,0.0117320254787439,0.0141206675224646,0.0164735403321228,0.0184750194043874,0.0206191893467521,0.0229164746720732,0.0251348524314457,0.027349567110682,0.029273811972845,0.0317255875776653,0.0336033851075906,0.0354742653901031,0.037654346565012,0.0397036237599103,0.0418199962577184,0.0437292267939193,0.0588296727971509,0.0731115042024722,0.0869282417121275,0.0992217898832684,0.1118993159131873,0.1272375474471077,0.1395999915162569,0.151378782075833,0.1629389219255447,0.1739857441449166,0.1873405732367534,0.1999047969361923,0.2118137126946837,0.2218333351562414,0.232132640936496,0.2431205359614639,0.2534307709472275,0.2631596706708057,0.2722939694500556,0.2796550973903285,0.2873636353119468,0.2940990701210597,0.3012065311341866,0.3075466043277588,0.3147554129911788,0.3208944191203646,0.3272891091339114,0.3327568447422969,0.3371072925831996,0.3414621286019351,0.3417888365837256,0.3416783524430146,0.3416319522630038,0.3412396897164401,0.3407647093748144,0.3396307165566153,0.3389664539768778,0.3397028990249329,0.339663776805028,0.3397696476964769,0.3400520765037558,0.3412980750227282,0.3426757996606548,0.3429596412556054,0.3434093042285384,0.3440108869173798,0.3450722357316549,0.3485669291338583,0.350461365077129,0.3513782268008432,0.3560402531760849,0.3588790998832395,0.3570795339412361,0.3596807612616069,0.3609501187648456,0.3598416696653472,0.3656681670029489,0.3723426212590299,0.373663477771525,0.3735700197238659,0.0,2.0332829150658034,60.60125395566235,195.5721732559172,284.5942364897275,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95660,43065,406.66945431737406,6753,69.29751202174367,5207,53.7633284549446,2158,22.08864729249425,77.31725194233033,79.72570444000361,63.30264576078415,65.08493098178312,77.0479610420454,79.45891959429709,63.20278468594275,64.9891472039391,0.2692909002849291,266.7848457065247,0.0998610748413995,95.78377784401935,111.50216,78.4947472553102,116560.90319882918,82055.97664155363,307.74018,196.2725637505845,321041.647501568,204516.8552692709,308.44895,148.27550794791483,318540.6962157641,151951.25617007923,3038.286,1369.4731418784338,3138987.2883127746,1394581.0919089932,1308.87928,561.6531451623302,1351119.328873092,570049.220117148,2136.04736,893.6298883868477,2188908.153878319,896232.3729713112,0.38219,100000,0,506828,5298.222872674054,0,0.0,0,0.0,26323,274.4825423374451,0,0.0,28488,293.88459126071507,1871773,0,67146,0,0,0,0,0,51,0.5331381977838177,0,0.0,1,0.0104536901526238,0,0.0,0.06753,0.1766922211465501,0.3195616762920183,0.02158,0.3211112678042589,0.6788887321957411,25.297190122786816,4.514122056923309,0.3260994814672556,0.1989629345112348,0.2287305550220856,0.2462070289994238,10.887416591604117,5.451537200117118,22.992138313061165,12701.96373037591,58.47959709165156,12.115990560984583,19.07421972031737,13.1866065430383,14.102780267311324,0.5329364317265219,0.7557915057915058,0.682567726737338,0.5759865659109992,0.1146645865834633,0.6849960722702279,0.8922155688622755,0.8477157360406091,0.7455197132616488,0.1203007518796992,0.483731570920183,0.6908831908831908,0.6326687116564417,0.5241228070175439,0.1131889763779527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024820934685483,0.0047355878923084,0.0070531881425251,0.0092267983619384,0.0114666531006766,0.0134766221860038,0.0157815273498867,0.0180921052631578,0.0200834850934091,0.0220168635446228,0.0242433569303375,0.0263979942045664,0.0282664415782268,0.0304139388628279,0.0322330778923016,0.0343193552058437,0.0362818373122414,0.0383624807876043,0.0404835974321892,0.0425323423019587,0.0574222668004012,0.0712116451984501,0.0844260143824471,0.0971159815237634,0.1084759352647015,0.1236453306239945,0.1363448209983336,0.1486447627669204,0.1602877205733035,0.171801913916663,0.1856551902443228,0.1992226829347508,0.2110367346938775,0.2223110186654989,0.2328614706692371,0.2441719967631442,0.2543305504710031,0.264325011532014,0.2738350522482045,0.2823540189869793,0.2899649333965998,0.2965783470784348,0.3033938044713907,0.3094161800501205,0.3154510089958667,0.3219347914584952,0.3271090071135157,0.3320903595291123,0.3371454474808962,0.3421670536091177,0.3414900060569352,0.3422605537902859,0.3425016187607331,0.3424261688724498,0.3432480312030131,0.3418656429942418,0.3409501760172528,0.3424882822136337,0.3438814237357677,0.3447025839747138,0.3462050849047753,0.3470963144768615,0.3474339297352984,0.347529506798905,0.3475820693325592,0.3486714532781301,0.3483924532623321,0.351823804114603,0.3543312641083521,0.357640964335525,0.3587653416376625,0.3615589962626802,0.3650763479693341,0.3666973462187452,0.3688640877707367,0.3719852679101817,0.3714859437751004,0.3682921852683126,0.3671917436175991,0.368142262580401,0.0,2.642867026849678,55.48149875233994,192.46485861086492,304.6585634868252,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95875,43252,408.1251629726206,6534,67.06649282920469,5106,52.87092568448501,2051,21.10039113428944,77.4717338221379,79.75696099439426,63.40399372213196,65.09012844882031,77.22432278707211,79.50707360775556,63.31475414001403,65.0013619069891,0.2474110350657952,249.8873866387044,0.0892395821179263,88.76654183120536,113.07516,79.5692266426963,117940.19295958278,82992.67446435077,310.96777,199.57216469884165,323958.3415906128,207769.9657875793,320.58338,154.5299441986938,331264.6571056063,158770.32765621706,2945.24308,1327.9453672248426,3051859.775749674,1364978.197887711,1225.51678,534.9000162035169,1266751.4993481096,546459.2675551731,2019.34134,829.6047326057616,2080217.1994784875,846179.7950847177,0.37877,100000,0,513978,5360.9178617992175,0,0.0,0,0.0,26587,276.91264667535853,0,0.0,29498,304.65710560625814,1864585,0,66851,0,0,0,0,0,58,0.6049543676662321,0,0.0,0,0.0,0,0.0,0.06534,0.1725057422710351,0.3138965411692684,0.02051,0.312090790048014,0.687909209951986,25.04255271849307,4.525336522328963,0.3219741480611046,0.2109283196239718,0.2344300822561692,0.2326674500587544,11.139571566806834,5.635536794640753,21.64549088899727,12495.248198371975,57.378064952742726,12.619022447350558,18.662292140190807,13.33464193332953,12.76210843187183,0.5464159811985899,0.7623026926648097,0.6891727493917275,0.5898078529657477,0.1094276094276094,0.71850699844479,0.9215116279069768,0.863849765258216,0.7427536231884058,0.1416666666666666,0.4884816753926702,0.6875852660300137,0.6280788177339901,0.5439739413680782,0.1012658227848101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00241927320579,0.0046296765304778,0.0068851528118599,0.0088611449451887,0.010923908625315,0.0132367454495508,0.0153206747616331,0.0174522383949244,0.0195862181647366,0.0214247729689928,0.0237814807607615,0.0259778885401924,0.0281164928861266,0.030157113312961,0.0322431014400131,0.0343342764503004,0.0362957446368356,0.0382933300169962,0.0402338234072597,0.042362563606281,0.057325172820069,0.0711426092592011,0.0843418943132878,0.0964132627332324,0.1078440671535616,0.1237764011924142,0.1366094147582697,0.148464091218516,0.1593902777481266,0.1700367548568918,0.1833821061238542,0.1965769484273195,0.2082071323888617,0.2195007476778327,0.230199079818599,0.2412550701252196,0.2513698935269746,0.2608998248843788,0.2690678925675981,0.2768460404019618,0.2845433660806021,0.291706031235056,0.2987661609303973,0.305164206950989,0.3110685170807453,0.3173142006227156,0.3224226675328569,0.3269247863464933,0.3316876470132086,0.3361769352290679,0.3359455862782788,0.3353130786640148,0.3347610554845595,0.3348214285714285,0.3341975052591034,0.333399459797653,0.3323030341260329,0.3338184553496967,0.3355332539547542,0.3362056712387179,0.3358217311783808,0.3368170366871358,0.339170545386237,0.3402316774337269,0.3414161240903868,0.3411669999220961,0.3406855101635812,0.3428321459817522,0.3464394780677401,0.3474915600219832,0.3516819571865443,0.3537300036956866,0.3553516435170636,0.3528783020308444,0.3542851725445582,0.3539748953974895,0.3530309970987937,0.3510788465416414,0.3516031789531378,0.3398542385884158,0.0,1.4912290053871786,57.23596831195922,193.2875148931527,285.429323193387,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95747,42839,403.7515535734801,6508,66.73838344804537,5104,52.77449946212414,2054,21.159931903871662,77.34438518034166,79.6970104868514,63.33412346583962,65.07225659123732,77.09293925816138,79.44443563524068,63.24163842348359,64.98141415042649,0.2514459221802809,252.57485161071716,0.0924850423560315,90.8424408108317,111.5444,78.4691687300462,116499.10702162993,81954.70221526126,303.66309,194.35523658449367,316635.47682956123,202472.26188235005,308.62179,149.06750323268784,317961.7011499055,152413.7612026928,2929.02712,1321.2266026922491,3030162.49073078,1351094.7187203371,1220.93191,525.730566285498,1265179.431209333,539166.4962934599,2017.53406,835.2360496507075,2079988.8247151347,848773.1875365075,0.3795,100000,0,507020,5295.413955528633,0,0.0,0,0.0,26018,271.19387552612613,0,0.0,28481,293.30422885312333,1873364,0,67217,0,0,0,0,0,49,0.511765381682977,0,0.0,0,0.0,0,0.0,0.06508,0.1714888010540184,0.3156115550092194,0.02054,0.316588785046729,0.6834112149532711,25.11482567482375,4.566228209126576,0.3248432601880878,0.2151253918495297,0.2343260188087774,0.225705329153605,11.276266482530955,5.711844465392497,21.69981509249171,12614.65397785722,57.29139922529342,12.895167170450195,18.61895407629298,13.27774639192798,12.499531586622265,0.5525078369905956,0.7786885245901639,0.6857659831121834,0.5811036789297659,0.1154513888888889,0.7033492822966507,0.9206798866855525,0.8398950131233596,0.7340425531914894,0.1260504201680672,0.5033766233766234,0.7114093959731543,0.6397807361002349,0.5339168490153173,0.1126914660831509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575300838701,0.0040757150243833,0.0064834261711259,0.0089576795344444,0.0112450942513776,0.0136512170044689,0.0156743645665599,0.0179498954028266,0.0201081014805202,0.022265425150926,0.0244179850807443,0.026511069372171,0.0287582640166976,0.0306378859343782,0.0327119675665638,0.0351256110037512,0.0369940999896491,0.0388169288684704,0.0408231136977759,0.0428623509192229,0.0570211610936537,0.0708582312127839,0.0833945165824086,0.0962290737780768,0.1084914115798686,0.1234839432807097,0.135982775444402,0.1479534839183308,0.1600499855810823,0.1713446405214743,0.1850065666243245,0.197693913532574,0.2102064556810645,0.2211692953405253,0.2321456065105026,0.2430556324384168,0.2533898777969979,0.2624925488961119,0.271587569916384,0.2791728212703102,0.286694276063116,0.2936510721931702,0.3010033840547128,0.3071839769728952,0.3128797083839611,0.3187976604723477,0.325052330755443,0.3301167652457679,0.3350274208813577,0.34045055162846,0.3404693899547316,0.3407007789491068,0.3405622489959839,0.3398163545658303,0.3399170099796243,0.3387544686008868,0.3378970079639559,0.3387462608066796,0.3399996578447641,0.3404350390534236,0.3410271314195713,0.3412343824134113,0.3406084240098958,0.3406916026086372,0.3425298444471241,0.3439670025583459,0.3451630388269192,0.3482289171813941,0.351231527093596,0.3542364767831498,0.3580624543462381,0.3602282423208191,0.3615530303030303,0.3626148356237187,0.3667764705882353,0.3654984608098508,0.3680887109194517,0.365656146179402,0.3659837215829357,0.3723948092803775,0.0,2.1069395185580904,54.99988023726342,193.1463223079573,291.421879163344,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95681,42966,404.9602324390423,6724,69.14643450632832,5255,54.44132063837126,2159,22.292827207073504,77.28108161739658,79.66908857821934,63.29287913429015,65.05614138079979,77.02046022153777,79.4060004499265,63.19857420395481,64.96269106171414,0.2606213958588057,263.0881282928499,0.0943049303353404,93.4503190856475,112.72976,79.35470951525502,117818.33383848412,82936.74764608964,310.27272,198.4183259340728,323781.7957588236,206879.3223438187,316.0272,152.51983716626845,327651.59227014764,157295.11590208774,3038.26948,1365.9223814990305,3151367.188888076,1403586.029039083,1296.97103,560.7596449851625,1346561.3862731368,577162.8923725627,2127.29326,874.1336314923193,2198851.6006312645,892641.2559010085,0.38049,100000,0,512408,5355.378810840188,0,0.0,0,0.0,26504,276.4707726716903,0,0.0,29150,301.9199214055037,1860597,0,66761,0,0,0,0,0,61,0.6375351428183234,0,0.0,0,0.0,0,0.0,0.06724,0.1767194932849746,0.3210886377156454,0.02159,0.3156479909451047,0.6843520090548953,25.220914526021804,4.566755449464401,0.3204567078972407,0.211417697431018,0.2274024738344434,0.2407231208372978,11.296996949586909,5.703828018391326,22.884302455750625,12709.37756318296,59.08944436319221,13.12230516697784,18.94358174345544,13.323518668617757,13.700038784141176,0.5472882968601332,0.7992799279927992,0.6793349168646081,0.5774058577405857,0.1217391304347826,0.7329762815608263,0.9134078212290504,0.8656036446469249,0.7587412587412588,0.1517857142857142,0.4858156028368794,0.7450199203187251,0.6136546184738956,0.5203520352035204,0.1152737752161383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0047242976915824,0.0069720003653449,0.0094685617336001,0.011787319732319,0.0138894546047004,0.015824785366152,0.0179074611018091,0.0201993355481727,0.0222315479175836,0.0244742697193712,0.0266746067600312,0.028434800493624,0.0304463402571711,0.0327165017080697,0.0346884757749333,0.0369173399627097,0.039087068884991,0.0412544858792323,0.0432643702121006,0.0583159214375261,0.0723910835628056,0.0862021915277719,0.0998200965797308,0.1121191661743607,0.1275929549902152,0.1401035917466248,0.1523577270403816,0.1634793205554427,0.1750617283950617,0.1883323448536151,0.2006609242104122,0.2125498138106748,0.2229399785403026,0.2327989863934336,0.2433598385290171,0.2540237850404614,0.2637347782496536,0.2725743766903793,0.2802977303223882,0.2881293088465326,0.2956452444569446,0.3024419749279505,0.3088463155366044,0.3150261589001095,0.3202650673774618,0.3256627185561195,0.3307236212942301,0.3353581766026764,0.3405981209474659,0.3405011143378132,0.3412510006348855,0.34108209060811,0.3416661830421914,0.3415420435210889,0.3408039351318115,0.3394961720512087,0.340727800118663,0.3423282783229259,0.3433862244349726,0.3439799740264629,0.3449106325385136,0.3460108966507581,0.3466176768929062,0.3466993139227617,0.3475207044763602,0.3478846981213251,0.3495342500475255,0.3516297446027938,0.3528590796714251,0.3545924198783888,0.3556527770367604,0.3575273924884413,0.3567135793077216,0.3572841133816744,0.3615872270486029,0.3648482991112473,0.3610326744655103,0.3726927252985885,0.3813917723952326,0.0,1.81585553494386,57.86800730243733,192.40113484357136,306.77654931564484,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95711,43276,408.699104596128,6764,69.39641211563979,5267,54.2884307968781,2086,21.37685323526032,77.3612597271838,79.72644744663832,63.34108899169471,65.08894353477389,77.09663164343806,79.46411441361356,63.24361392786192,64.995035222772,0.2646280837457482,262.33303302475974,0.0974750638327961,93.90831200188644,113.33498,79.75428835392518,118413.0559705781,83327.59407995442,310.74268,198.7919002757945,323888.2678062083,206925.93118670816,320.02047,154.2652411564767,329819.6236587226,157671.15875594786,3037.41232,1386.3688183599809,3135579.442279362,1410791.0191027296,1288.35561,562.1293016835274,1328719.2590193397,570132.1063588562,2057.23718,862.2178622228179,2111461.190458777,868144.0847043797,0.3823,100000,0,515159,5382.4116350262775,0,0.0,0,0.0,26568,276.7602469935535,0,0.0,29559,304.2074578679567,1862047,0,66819,0,0,0,0,0,49,0.5119578731807212,0,0.0,1,0.010448119860831,0,0.0,0.06764,0.1769291132618362,0.3083973979893554,0.02086,0.3283981951494641,0.6716018048505358,25.020645026731565,4.426460635369051,0.3288399468388077,0.2130244921207518,0.2246060375925574,0.233529523447883,11.083094052479488,5.639021609498134,22.31469428447317,12680.61376417978,59.84946232219443,13.29495242137396,19.690073838589907,13.31442061672506,13.550015445505506,0.566736282513765,0.7825311942959001,0.7159353348729792,0.6027049873203719,0.1252032520325203,0.7042772861356932,0.9097938144329896,0.8352402745995423,0.7564575645756457,0.123076923076923,0.5190488366146766,0.715258855585831,0.6756756756756757,0.5570175438596491,0.1257731958762886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0045117203341714,0.0066469119766191,0.0090520262925297,0.011288518254856,0.0135231461681024,0.0155711459629229,0.017685199366927,0.0197838600509166,0.0217342342342342,0.0235407503101514,0.025738201612489,0.0278100605773878,0.0300907564410289,0.0322783699835925,0.0342089755916012,0.0365549307734526,0.0385824728895345,0.0405748273854088,0.0426456338497765,0.0566118506917254,0.0709732790471306,0.0845964231394556,0.0977761421586667,0.1102129005059022,0.1259658580413297,0.1380688806888068,0.1506543249281838,0.1622201811346548,0.1737573828129187,0.1877785672760157,0.2009085501054567,0.2127210862168302,0.2228695091427759,0.2333637492991501,0.2434789344960768,0.2534985113903725,0.2627586284404185,0.2723675408460605,0.2814456948562662,0.2889675352462903,0.2966010566178877,0.3035748083656667,0.3104559117636492,0.3161450752062106,0.3216149037751636,0.3269920629960627,0.3323626282793087,0.3362859362859363,0.3411536379599434,0.3402811439650994,0.340163089066432,0.3397121775374563,0.3400364309258081,0.3400315326035221,0.3401518055662041,0.3392794905104401,0.3401878982984035,0.3399904329107869,0.3398769934920975,0.3410554377006402,0.3425674200781854,0.3425363248312551,0.3434424943402147,0.3446361771449258,0.3466125016380553,0.3482101881597063,0.3500316856780735,0.3548181914555284,0.3562460012795905,0.3577667017239014,0.3603311926118571,0.3645211930926216,0.3645967925818956,0.3642073685197337,0.370282459055305,0.3752491949087563,0.3676590538336052,0.3621758737316798,0.3634894991922455,0.0,2.7195831425817474,59.20725037529166,204.281986537775,290.59262481799567,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95641,43097,406.9802699679008,6657,68.38071538356981,5187,53.56489371712968,2135,21.925743143630868,77.2430810454354,79.64955381680983,63.27207635196621,65.05096185346187,76.9897674316456,79.39741093592203,63.17940963160607,64.96164890407033,0.2533136137897998,252.1428808878028,0.0926667203601425,89.312949391541,112.44596,79.11639248924689,117570.874415784,82722.25561134545,309.09437,198.5593686294199,322491.0132683682,206918.1926468982,318.21897,153.76509120266283,328542.89478361787,157508.4896876851,3009.26248,1357.114593171272,3110971.403477588,1383524.0881748137,1269.18747,547.0078221043177,1310151.127654458,555056.9233951097,2098.53292,855.6482454831084,2157526.7929026256,863424.4540221184,0.38003,100000,0,511118,5344.13065526291,0,0.0,0,0.0,26425,275.5931033761671,0,0.0,29414,303.3531644378457,1859429,0,66744,0,0,0,0,0,50,0.5227883439110841,0,0.0,0,0.0,0,0.0,0.06657,0.1751703812856879,0.3207150368033649,0.02135,0.3225806451612903,0.6774193548387096,25.009323116349275,4.502655804795648,0.3304414883362251,0.2103335261229998,0.2234432234432234,0.2357817620975515,11.330218076016072,5.902563781215619,22.49071270063302,12657.94570140554,58.60149644136218,12.97015839573406,19.52444055115731,12.929717648700288,13.177179845770512,0.5527279737806053,0.7836846929422548,0.7018669778296382,0.5737704918032787,0.1177432542927228,0.7407407407407407,0.929539295392954,0.8425531914893617,0.7475409836065574,0.1601941747572815,0.4865780557727391,0.7091412742382271,0.6487138263665595,0.5117096018735363,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024018971947462,0.0049398494715273,0.0072789661228592,0.0097237322061797,0.011849907947067,0.0142471612607566,0.0162834565383634,0.0183691390295703,0.0204924738219895,0.0226002007086243,0.0247049050876311,0.0267522464698331,0.0288984645762415,0.0308031483084023,0.0330195495551289,0.0347637266053148,0.0369606878334282,0.0389114347099546,0.040805075930934,0.0426714206778636,0.0579340613407179,0.0723406484051746,0.0854953015906346,0.0989779054957316,0.110211364260225,0.1263776401461013,0.1385090990215763,0.1503608703531945,0.1621086644839613,0.1726145089405573,0.1865262612748694,0.1991111592867595,0.2111023982225707,0.2223974245261325,0.2326647564469914,0.2442393245836892,0.2537480295594039,0.2632996708895,0.2720690203923886,0.2793817506363657,0.2867076138602387,0.2940370517834976,0.3013171297941392,0.307755062865918,0.3136398476755928,0.3195673913848661,0.3246482935025202,0.3299450304182024,0.3346100911475239,0.3390043524851499,0.3388275917882867,0.3390260375746047,0.3397079178554278,0.3403170187487322,0.3402900970468538,0.3390786057729235,0.3377933861971428,0.3382566266649083,0.3393968488007269,0.339299164305441,0.3408615326609482,0.3414677839925157,0.3426856240126382,0.3439425975077601,0.3451785239442067,0.3460043083066253,0.3463100002879438,0.3482918172022564,0.3512930272048679,0.3511254019292604,0.3543168792752819,0.3579496557659208,0.3601351782184531,0.3628093439210547,0.3642371420362034,0.366041366041366,0.3697055581798142,0.3733860891295293,0.3809523809523809,0.3870211102423768,0.0,2.6117567427861843,59.16502425869999,187.87453314128803,296.5808635476336,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95811,42813,403.648850340775,6562,67.19478974230516,5144,53.04192629238813,2092,21.46935111834758,77.44904619750217,79.77314841662444,63.38601454967061,65.1060371273862,77.19735346003641,79.52305695308684,63.29353415878549,65.01682462614501,0.2516927374657598,250.0914635376006,0.0924803908851288,89.2125012411924,112.88046,79.37151271994261,117815.3030445356,82841.34093941658,309.09834,197.877042747854,321909.1022951436,205831.0328489938,314.95237,152.0712470570295,324494.7657367108,155649.06311128812,2946.1714,1335.8513930599088,3039358.94625878,1359127.411284832,1239.94674,541.9487962707909,1274318.7525440713,546490.5308244915,2054.34992,842.4600176832713,2108963.3549383683,848002.8059373535,0.37856,100000,0,513093,5355.24104747889,0,0.0,0,0.0,26494,275.8034046195113,0,0.0,29081,299.2871382200373,1869469,0,67032,0,0,0,0,0,52,0.5322979616119234,0,0.0,0,0.0,0,0.0,0.06562,0.1733410819949281,0.3188052423041755,0.02092,0.3184722625617194,0.6815277374382805,25.163593753979544,4.524324663447191,0.33300933125972,0.2222006220839813,0.2146189735614307,0.2301710730948678,11.293514135474217,5.8203524591788325,21.868678126004763,12553.863384061848,57.58605274109089,13.362969516462297,19.228549855693736,12.173329031793925,12.821204337140916,0.5587091757387247,0.7716535433070866,0.6952714535901926,0.595108695652174,0.1216216216216216,0.7378419452887538,0.921875,0.8696629213483146,0.7896825396825397,0.1319148936170212,0.4971264367816091,0.6956521739130435,0.6340694006309149,0.5375586854460094,0.119072708113804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976241353817,0.0045918522498048,0.0068998406948545,0.0091933239199114,0.0113182220323987,0.0135114496044311,0.015670401598646,0.0176568448340971,0.0197342871742462,0.0220912504732377,0.024358251780499,0.0264162561576354,0.0285673166870547,0.0305994275477215,0.0322823519704611,0.0344246882458079,0.03624620925924,0.0383554541683948,0.0404151645177712,0.0424014657810905,0.0567789449526929,0.0704980762796922,0.0841577932422235,0.0973303495445519,0.1094907431798784,0.1241730602582799,0.1362744994116961,0.1478870243943937,0.1588127980540471,0.1698115228100235,0.1829336487794386,0.1959290830713382,0.2078149089093001,0.2188270729205317,0.2289265090134598,0.2399327931732012,0.2504483031308822,0.2608803026391118,0.2705536057964451,0.2786130469553296,0.2865602382518959,0.2941169608380677,0.3003740368845205,0.3067371012656715,0.3129672033826433,0.3180198117149669,0.3232032136931272,0.3282433066571968,0.3329933641457306,0.3388350408353828,0.3383523222888737,0.3384423282746507,0.3378463785620988,0.3375037836747048,0.3360631460474484,0.3358305741619494,0.3346361759467935,0.3351858511229527,0.3362729605274336,0.3375954537382348,0.3381072261072261,0.339403713027061,0.34164979017475,0.3436649261391529,0.3446612427100583,0.3453517327246316,0.3468291851346744,0.3506098516915937,0.3519949423995504,0.3530715642811906,0.3555444373692349,0.3596467897228576,0.3617128781658561,0.3619716160537158,0.3651004168245547,0.3680085500534378,0.3662620986326624,0.3653098793209245,0.3716814159292035,0.3773946360153257,0.0,2.3536184360784147,57.52348634421166,187.90474538751397,290.57988759028194,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95815,43037,406.2411939675416,6806,70.10384595313886,5304,54.866148306632574,2126,21.906799561655276,77.3497797498425,79.68199519148838,63.33168066437421,65.05950474898448,77.09089744114794,79.4226897497023,63.23668652032135,64.96669564742655,0.2588823086945524,259.3054417860827,0.0949941440528618,92.80910155793264,112.66552,79.32805897820616,117586.51568126076,82792.94367083041,308.83519,197.3308940660148,321831.27902729216,205456.70726505748,322.27517,155.28840413535633,332899.8069195846,159453.93314237558,3053.8352,1385.415592397277,3161934.9788655224,1420642.2714577855,1274.76995,558.9340355249798,1319234.503992068,572132.3650002403,2082.09368,862.5587404539324,2147771.872880029,877257.4926000956,0.37908,100000,0,512116,5344.841621875489,0,0.0,0,0.0,26319,274.18462662422377,0,0.0,29663,306.183791681887,1865169,0,66909,0,0,0,0,0,61,0.6366435318060847,0,0.0,0,0.0,0,0.0,0.06806,0.179539938799198,0.3123714369673817,0.02126,0.3327262538526198,0.6672737461473802,24.73492574933252,4.397933059865022,0.3340874811463046,0.2183257918552036,0.2226621417797888,0.2249245852187028,11.095651329495002,5.715301999357208,22.67479090481873,12571.937042747852,60.10280225238365,13.774728415091849,20.084771875614223,13.126407143691546,13.11689481798604,0.5582579185520362,0.7677029360967185,0.7042889390519187,0.5723962743437765,0.124056999161777,0.7195032870708546,0.9097938144329896,0.8771929824561403,0.6966292134831461,0.1782945736434108,0.5021601016518424,0.6961038961038961,0.6443768996960486,0.5361050328227571,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026338715886297,0.0049377959382319,0.0069823614183936,0.0090826890448953,0.0111890957176279,0.0133801741255536,0.0155995106035889,0.0178026397721588,0.0199924363993172,0.0219963561178325,0.0242542286007175,0.0261520453425332,0.0282256406037922,0.0301098742675906,0.0321532462709661,0.0342226539089462,0.0361985797983562,0.0381699183703104,0.0400635863974981,0.0421139210194796,0.056219159790104,0.0702231330642631,0.0837220027040907,0.0967863973601799,0.1087419368438804,0.1247026232593548,0.1372580217448952,0.1491805023414218,0.1599572763684913,0.1710801505839956,0.1848663441543749,0.1981191290420328,0.2094626930606917,0.2195588492479888,0.229894287568614,0.2408318376210419,0.2509121746019348,0.2603180315332538,0.2696545072899529,0.2776810864039206,0.2849441217982831,0.2926449953227315,0.2997645889770858,0.3064294011280492,0.312679817905918,0.3182260428340948,0.3232756464762667,0.3282025187635161,0.3336828750453109,0.3387071219203042,0.3391020716240076,0.3383921925399057,0.3388548692045037,0.3388415376587232,0.3388146625556698,0.3388901680865761,0.3380882866300657,0.3380707987893144,0.339637833855853,0.3406745036198122,0.3403959316425711,0.3415059906371498,0.3421212948763733,0.3430454076829979,0.3432659648784718,0.3452290823652265,0.3447381176403501,0.3479012190524067,0.3509465654197432,0.3517478645998101,0.355033892907511,0.3583165482879253,0.3628960989774018,0.3647663623110565,0.3640822486323335,0.3668561952144041,0.3641120344721453,0.3608976951071573,0.3704006541291905,0.3825220390954388,0.0,1.9492095699943277,60.75495101401303,199.85948822153756,297.22982561509696,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95800,43135,406.7327766179541,6716,68.91440501043841,5231,54.02922755741128,2105,21.54488517745303,77.41775944651599,79.7454592836342,63.37436231324406,65.09507176547353,77.16017488901151,79.48945920023264,63.28017569429736,65.00402647674203,0.2575845575044724,256.00008340155966,0.0941866189467006,91.0452887315074,113.28922,79.66153814093573,118255.9707724426,83154.00641016256,310.31886,198.8035419180904,323338.8413361169,206934.54271199412,320.01373,154.42573302922597,330585.33402922755,158497.31177142457,3022.97224,1370.587337874444,3124207.056367432,1399379.3923532804,1296.06452,565.2031156949232,1338209.0814196242,575305.7366335321,2069.00348,858.446106456407,2120599.1440501045,862847.0711996881,0.38106,100000,0,514951,5375.271398747391,0,0.0,0,0.0,26524,276.27348643006263,0,0.0,29579,305.3235908141963,1864449,0,66915,0,0,0,0,0,56,0.5845511482254697,0,0.0,0,0.0,0,0.0,0.06716,0.1762452107279693,0.3134306134603931,0.02105,0.322906298876724,0.6770937011232759,25.15217052276525,4.497244065683495,0.327088510800994,0.2079908239342382,0.2332250047792009,0.2316956604855668,11.274391523411357,5.822742118584737,22.447270529075464,12602.740071618298,59.187878475626505,12.952109122348928,19.373815043722622,13.565351771483844,13.296602538071117,0.5599311795067865,0.7803308823529411,0.7054354178842782,0.589344262295082,0.127062706270627,0.7319970304380103,0.917312661498708,0.839907192575406,0.752542372881356,0.2008547008547008,0.5002574665293512,0.7047075606276747,0.66015625,0.5372972972972972,0.1094069529652351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022073937565183,0.0046222618673532,0.0067071871416829,0.0093030813918059,0.0114699422435532,0.0137933140600187,0.0159616756701661,0.0178513105250265,0.0200637788998139,0.0221066852253653,0.0243849938499385,0.0264324868094192,0.0284427906211773,0.0303903804974468,0.0323558525117545,0.0344140217514795,0.0366859496434891,0.0385552410868866,0.0405568252649075,0.0427264114603396,0.0570400125202149,0.0705026344400769,0.0834818340007128,0.0965766447126545,0.108648944685512,0.1243978194726166,0.1370931008548457,0.1489395630680912,0.1603362922499146,0.1709961115336411,0.1841830754175225,0.1969710063518126,0.2085188160951988,0.2193750545899205,0.2300534982588349,0.2415990089153374,0.2516300895016663,0.26083636526973,0.2695949619427328,0.2779823437928826,0.2859436544881198,0.2931803324617109,0.3008301940268543,0.3075192379037566,0.3140635236454517,0.3190855482647823,0.3248906660002499,0.3299025400576881,0.3348766230407118,0.3395771586642956,0.3395744566459227,0.3400456658688894,0.340486348723581,0.3396556207205385,0.3394746226078687,0.3388752681581367,0.3379867046533713,0.339218034750365,0.3403576969634971,0.3404721994364991,0.3413021077283372,0.3417177551302016,0.3430818794192711,0.3441814815640963,0.3441108545034642,0.3462079749804534,0.3470224703101415,0.3490038338256552,0.3519108838056538,0.3551750109010188,0.3593337580777282,0.3625830454424661,0.3656984437023502,0.3693324219640009,0.3726655348047538,0.3731966138070824,0.3719303699098539,0.3735432426906563,0.3663094256663918,0.3638124757845796,0.0,2.225623178638336,59.32426430744926,199.36918436053364,289.8999432891645,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95725,42960,405.6202663880909,6630,68.03865238965788,5225,54.04021937842779,2125,21.791590493601465,77.3893283971574,79.75016758602297,63.35181630130408,65.09355179294917,77.12331755913054,79.48446889540426,63.25323146570732,64.99783079448356,0.2660108380268582,265.69869061870577,0.0985848355967604,95.72099846560889,112.43584,79.09106101943924,117457.13241055106,82623.20294535307,306.40889,195.85152398771427,319534.2282580308,204039.6542318724,313.28494,150.90939598695664,324147.4849830243,155163.86046183782,3009.61088,1368.1180005428394,3112335.5863149646,1397551.9361414467,1286.34428,568.4904292587103,1324051.8046487337,574274.5923417286,2093.82782,876.3533181961693,2149163.8756855577,883851.121016946,0.38094,100000,0,511072,5338.960564115958,0,0.0,0,0.0,26260,273.7320449203448,0,0.0,28998,299.7858448681118,1869133,0,67044,0,0,0,0,0,45,0.4596500391747192,0,0.0,0,0.0,0,0.0,0.0663,0.174043156402583,0.3205128205128205,0.02125,0.3256513026052104,0.6743486973947895,24.8398237669297,4.481010504776319,0.3265071770334928,0.2086124401913875,0.2298564593301435,0.235023923444976,11.228030552235936,5.823478226728994,22.542064816081385,12641.567189034116,58.9244606277664,12.835664021046153,19.15333119179812,13.423070052803896,13.51239536211823,0.5475598086124402,0.7541284403669725,0.694021101992966,0.5836802664446294,0.1254071661237785,0.7108614232209738,0.8900804289544236,0.863849765258216,0.721830985915493,0.1746031746031746,0.4915167095115681,0.6834030683403068,0.6375,0.5408942202835333,0.1127049180327868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408276532606,0.004581065604508,0.0064615603095868,0.0084684666389122,0.0105323085681753,0.0126519145817641,0.0149906244904614,0.0173363808901859,0.0194447566595481,0.0218461255103398,0.0239983604877548,0.026223991463865,0.0284936292642827,0.0303245530062069,0.032393131542309,0.0345052083333333,0.0363594951910633,0.0383075391062611,0.0404440425332876,0.0422847737311442,0.0565145202217975,0.0698791398524564,0.083121814100816,0.0961548571608819,0.1085155278193586,0.1237243144346796,0.1368428868428868,0.1491669771650609,0.1611025052080551,0.1721978575794293,0.1859721294880355,0.1988447059841633,0.2111832305902562,0.2219913609273333,0.2320642605633802,0.2430477076824215,0.2527603800337162,0.2629500450045005,0.2716520238824945,0.2798308639004435,0.2875536480686695,0.2944306076870008,0.3019454792738454,0.3078646032962821,0.3148352782601304,0.320520241892774,0.3257368124648019,0.3310907056010581,0.3357422229129432,0.340333751071829,0.341151471952876,0.3408497181355699,0.3410532236518315,0.3408755960121369,0.3409148269667592,0.339834189916789,0.3389219853673182,0.3396572626888168,0.3405547405410938,0.3419385916397566,0.3428459075332846,0.3436449891282862,0.3452852739510599,0.3462218343738112,0.3476554032899015,0.3479086957653367,0.348567686086907,0.352276295133438,0.3553087890146075,0.3567158861486085,0.3579403053087263,0.3613463279544123,0.3642338072669826,0.3645706455542022,0.3663300934226668,0.3681403342420291,0.3729977116704805,0.3693421846710923,0.3712843522153674,0.3660818713450292,0.0,2.039076715545396,58.87019630253705,197.1284483486532,292.2115087594045,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95675,43162,407.5986412333421,6833,70.22733211392736,5300,54.84191272537235,2104,21.61484191272537,77.35982293729873,79.73651830341996,63.33991942654043,65.09030945870994,77.10415411128528,79.48243887514376,63.24569067518191,64.99990935761339,0.2556688260134478,254.0794282761993,0.0942287513585213,90.40010109654872,112.82348,79.33436791022885,117923.6791220277,82920.6876511407,310.19397,197.72178545670025,323671.27253723546,206114.7692257123,314.38855,151.61673741777423,325929.7831199373,156351.27196296255,3046.89964,1373.7937028538213,3152204.400313562,1403465.505987791,1292.42501,564.4027394816949,1336873.9900705514,575941.3843550507,2068.71188,852.917736774368,2125829.777893912,857895.291083399,0.38115,100000,0,512834,5360.167232819441,0,0.0,0,0.0,26492,276.32087797230207,0,0.0,29096,301.36399268356416,1866149,0,66920,0,0,0,0,0,51,0.5330546119675986,0,0.0,2,0.0209041024301019,0,0.0,0.06833,0.1792732520005247,0.3079174593882628,0.02104,0.3277158774373259,0.6722841225626741,25.239134109868523,4.488323742639908,0.3337735849056604,0.2135849056603773,0.2258490566037735,0.2267924528301886,11.329947199458111,5.861093423963706,22.163639613809934,12735.831359467287,59.25606199875444,13.122954203307009,19.76124370695048,13.253591006534013,13.118273081962933,0.5473584905660377,0.7570671378091873,0.6721311475409836,0.581453634085213,0.1322795341098169,0.7176740627390972,0.913649025069638,0.8452914798206278,0.7559055118110236,0.1653225806451612,0.491610318056599,0.684346701164295,0.6137566137566137,0.5344644750795334,0.1236897274633123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023696682464454,0.0045914799160762,0.006980165373104,0.0093030813918059,0.0115198470798763,0.0139345513766603,0.0161403723290435,0.0183242868220217,0.0204192118327238,0.0226389229887879,0.0246586008011228,0.0267045571126659,0.0288098835476344,0.0307766760366148,0.0327811358900831,0.0346866214651893,0.0366689442408431,0.0389151065705543,0.0407868334321033,0.0426997675848627,0.0577861359243587,0.0720329221554378,0.0855673349427941,0.0983522033755629,0.1108239810986414,0.1266480435104649,0.1388402381938031,0.1516749214464504,0.1625507804147958,0.1736148380310413,0.1872278977542135,0.200643253955362,0.2125538675836852,0.2230491408558607,0.2337745281564516,0.2443920109002691,0.2543579671004173,0.2641619731768462,0.2725870652408115,0.28107043930133,0.2888613918634503,0.2961464241857201,0.3037186904719648,0.3101800280283158,0.3162435685855742,0.3213265708095332,0.3269627388972913,0.3322528981086028,0.3375118045044695,0.3423264159157772,0.3418121653977563,0.3416466056812711,0.3426120275543409,0.342003032709943,0.3415647631485219,0.3401291823552821,0.3396094950038797,0.3405325443786982,0.3419232218074723,0.3431337461078702,0.3447447447447447,0.3466289243437983,0.3489645622206835,0.34848688333781,0.3498279968245568,0.3510344468184898,0.3515167036594388,0.3538868090728914,0.3557732827644332,0.3576886341929322,0.362264496067313,0.3644689625622623,0.3680551125853161,0.3698366214549938,0.3709508881922675,0.375887378173505,0.3786243059839605,0.3762698090207232,0.3726606997558991,0.3720030935808198,0.0,2.1585155065620296,57.46133198143336,193.81497617581547,307.34083330710405,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95852,43431,408.9325209698285,6767,69.27346325585277,5298,54.678045319868126,2107,21.606226265492637,77.34109898624328,79.63196049302285,63.34986309044478,65.04403507445852,77.07483277210258,79.36661623620567,63.25109161660998,64.94803708594958,0.2662662141406997,265.34425681717266,0.0987714738347946,95.99798850894103,113.96726,80.20510488236226,118898.96924425157,83675.75520840698,312.36835,199.90488647602697,325279.7855026499,207949.46008015165,319.70791,154.39691227321418,329537.5474690147,157995.7914472374,3043.35372,1391.2928751604577,3142042.8994700164,1418539.117765366,1285.72275,576.0603387172436,1327114.67679339,586878.667548816,2080.3839,880.6590253826694,2135257.22989609,888772.0692917629,0.38349,100000,0,518033,5404.498602011434,0,0.0,0,0.0,26706,277.9806368150899,0,0.0,29518,304.02078203897673,1856933,0,66675,0,0,0,0,0,61,0.6259650294203564,0,0.0,0,0.0,0,0.0,0.06767,0.1764583170356463,0.3113639722181173,0.02107,0.3203542310936182,0.6796457689063817,24.84050571718542,4.49729144734232,0.3282370705926765,0.2214043035107587,0.2178180445451113,0.2325405813514534,11.134762296654335,5.543477122087078,22.73606840872116,12676.378507196649,59.95396469224939,13.77588756103649,19.54313560418604,12.851689346345344,13.783252180681524,0.5530388825972065,0.7621483375959079,0.706728004600345,0.5814558058925476,0.1103896103896103,0.6931486880466472,0.9019073569482288,0.8625592417061612,0.7167235494880546,0.1586206896551724,0.5040753948038716,0.6985111662531017,0.6567957479119211,0.5354239256678281,0.0955414012738853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0047420737453263,0.0071914716651959,0.0093000588868357,0.0114243896489337,0.0138707970365545,0.0159642205853887,0.0181790359602142,0.0203358323289686,0.022433176140839,0.0245833632089483,0.0266658461790919,0.0287378162135513,0.0312982282856966,0.0331901037641555,0.035608124845182,0.0376593698621638,0.0399001201873264,0.0417873568588366,0.0433841736199255,0.0580592688369377,0.0714830645751251,0.0852187028657616,0.0976560038646531,0.1096813596445043,0.1253577803360758,0.1380946832063899,0.1500116939170369,0.1616782440752478,0.1720786179698216,0.1858272800645682,0.1983756191464971,0.2101457941486643,0.2208096024137215,0.2315902988687882,0.2429084301037142,0.2527089912843576,0.2619511042606572,0.2714005243029154,0.2800920888359467,0.2883062183240378,0.2965441400126348,0.3035456460507941,0.3095674684500054,0.3152490886998785,0.3213651388820366,0.3268717833126714,0.3322130991025396,0.336877962852628,0.3411469344608879,0.3410668787662276,0.3400743904119024,0.3408381914938667,0.3410801014860457,0.3403074995899011,0.3387674200636111,0.3380782918149466,0.3388687335092348,0.3396164760512511,0.3405994059940599,0.3419909331318473,0.3430681637203376,0.3438746859760603,0.3453232539772086,0.3474934421451472,0.3484760751697636,0.3474576271186441,0.3502570286221996,0.3531175059952038,0.3552914905494856,0.3569989929506545,0.3597951344430217,0.3566087948295526,0.359831996945399,0.3585210531318316,0.3620359281437125,0.3674037420751507,0.3607890990441326,0.3654218533886583,0.3648283841110682,0.0,2.230562782374793,60.4026123908102,195.3608949091088,301.66879436628267,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95647,42890,404.33050696833146,6739,69.2964755820883,5287,54.75341620751304,2142,22.08119439187847,77.31769350596971,79.74194492625212,63.289715480586615,65.08217561723848,77.05532886053287,79.47696164055674,63.1944457061158,64.98820497217109,0.2623646454368469,264.9832856953793,0.0952697744708146,93.97064506738673,112.16656,78.89204117401827,117271.3833157339,82482.50459922242,307.54346,196.09864083769745,320971.384361245,204464.68946602265,313.51071,151.50733957552123,324737.11668949365,156106.9077376871,3053.0292,1380.6726336718086,3162202.013654375,1414235.484379106,1305.26389,574.9343014922117,1343308.697606825,579971.3583320436,2105.67478,870.2877144012826,2170771.879933506,882839.9563219391,0.3798,100000,0,509848,5330.517423442449,0,0.0,0,0.0,26299,274.3839325854444,0,0.0,29022,300.375338484218,1867014,0,66971,0,0,0,0,0,53,0.5541208819931623,0,0.0,0,0.0,0,0.0,0.06739,0.1774354923644023,0.3178513132512242,0.02142,0.3181433408577878,0.6818566591422122,24.901505775435663,4.494976863304042,0.3247588424437299,0.2125969358804615,0.2311329676565159,0.2315112540192926,11.282789365125351,5.779229924692021,22.640825908769028,12632.491186266918,59.497640884732114,13.18137840275389,19.343917254632967,13.451732295203394,13.520612932141873,0.5485152260261018,0.7615658362989324,0.691322073383809,0.5785597381342062,0.1225490196078431,0.7195121951219512,0.896551724137931,0.8666666666666667,0.7397769516728625,0.1747967479674796,0.4920754716981132,0.6934404283801874,0.6345412490362374,0.5330535152151101,0.1094069529652351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020564875597698,0.0043605240741491,0.0065076142131979,0.0087196008089513,0.0108763112110452,0.0131927465362673,0.0153224654683451,0.0178792182184125,0.020109913726935,0.0222534287295762,0.0242775753220756,0.0264456691617997,0.0286682250208524,0.0307503455674527,0.0329689630945985,0.0350997009488922,0.0372106043483219,0.0392932818147825,0.0412096488854663,0.0432982595184215,0.0574232179992266,0.0705035518953919,0.0839512656233588,0.0969773565034228,0.1091070372560615,0.1246968365088274,0.1369350605187932,0.1492192080157757,0.1597560975609756,0.1709667024704618,0.1842020106139707,0.1974776258478341,0.2105905160208238,0.2216065875344925,0.2323728720180706,0.2434176962491404,0.2534109575264551,0.2626244425424568,0.2718911799436824,0.2795608979133483,0.2873387526343824,0.2943710275888708,0.3012687619205572,0.3077116905244717,0.3138908152960786,0.3190872648781992,0.3249026506567168,0.3304528215440221,0.3353593737850237,0.3396106727986361,0.3392356241234222,0.3390442087866685,0.3395135706732464,0.3397077316681843,0.3402377414561664,0.3400248439584707,0.3396663283430601,0.3408676511654648,0.3412663158614091,0.3417717005686984,0.3418848167539267,0.3426650631863257,0.3431315361859922,0.3442940469299612,0.3451776649746192,0.3459209397822075,0.3481027039309248,0.3501002255073916,0.3524013031141626,0.3560909776525225,0.3574532314869871,0.3575770502292844,0.3571157014320111,0.3620162153893223,0.3666950999905222,0.3667344254454143,0.3677609166924744,0.3674173260296206,0.3641666666666667,0.3603568657874321,0.0,1.9469789469353287,58.000299031495615,203.15012798024645,296.2427826778702,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95710,43009,404.79573712255774,6735,69.22996552084422,5302,54.82185769512068,2091,21.43976595966984,77.34880342590687,79.70632456759883,63.338894218876014,65.07700829019166,77.09384330622336,79.45247765049075,63.24480977096887,64.98585594015051,0.2549601196835027,253.8469171080777,0.0940844479071429,91.15235004114196,112.37578,79.05390828033003,117412.78863232682,82597.33390484801,309.27996,197.1846088182996,322559.8161111691,205440.0259307278,315.25242,151.93429338133592,325783.80524501094,155910.37599727558,3044.16556,1374.4843391633096,3149322.536830007,1404801.3573955805,1271.43464,553.9553594490532,1312735.8478737853,563097.0634720022,2053.85358,857.3119312720053,2108449.6081914115,863553.1182789729,0.38054,100000,0,510799,5336.944937833037,0,0.0,0,0.0,26394,275.1541113781214,0,0.0,29160,301.03437467349283,1867504,0,67001,0,0,0,0,0,60,0.626893741510814,0,0.0,0,0.0,0,0.0,0.06735,0.1769853366268986,0.310467706013363,0.02091,0.3310782241014799,0.6689217758985201,25.130782376816324,4.53764620465283,0.3398717465107506,0.2053941908713693,0.2259524707657488,0.2287815918521312,11.10736164950311,5.6072808457255015,22.24362519204117,12672.043577952183,59.64509331695796,12.92729304427418,20.15297559388149,13.254758711915253,13.310065966887043,0.543002640513014,0.7621671258034894,0.6853496115427303,0.5684474123539232,0.1096455070074196,0.7052631578947368,0.9018567639257294,0.8651685393258427,0.7003891050583657,0.1314741035856573,0.4886706948640483,0.6882022471910112,0.6263817243920413,0.5324123273113709,0.1039501039501039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898008161777,0.0048655881279649,0.007315712038963,0.0095693779904306,0.0118757117292988,0.0141904616480887,0.0167572140621973,0.0188118811881188,0.0209084870471616,0.0232536717670538,0.0252342004386774,0.0275670960127264,0.0297226163304751,0.0319352646858978,0.0339993604489235,0.0359471383846002,0.0378845138378389,0.0400170152722443,0.0416302765647743,0.0436775860631824,0.0584070426800614,0.0724317649028801,0.0864360725563633,0.0993245802297689,0.1105626226188215,0.1254773364362405,0.137806262666992,0.1496161912974969,0.1613334045622095,0.1719340027463096,0.1861655139723784,0.1986906887410052,0.2097311055997911,0.2204989664110949,0.2303951234004159,0.2414293628808864,0.2512091864660478,0.2608695652173913,0.2701604205220195,0.2791728720357429,0.2869346791836923,0.2943571027512633,0.3017695448896254,0.3075770830087838,0.314525533258831,0.3203641874160681,0.3256933503388601,0.3308368195516448,0.3363860969899233,0.340950447005459,0.3407661751834646,0.3405438132981065,0.3404459227104884,0.3409002183311403,0.3412436435007583,0.339736813885442,0.3386917960088692,0.3400128009453005,0.3414050617769195,0.343296648324162,0.3432103390147968,0.3438888998636929,0.3444062539296642,0.3445370619342117,0.3454974932510605,0.3469915387026011,0.3468868032505436,0.3496638151456801,0.3522371246523744,0.3557405121261598,0.3589602782354018,0.3590582430548107,0.360919540229885,0.3614457831325301,0.359336257867633,0.3529482551143201,0.3565625,0.3594106661133015,0.355998876088789,0.3533541341653666,0.0,2.1897195893786545,58.644667321431776,192.09387329761464,309.89923203171065,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95632,42619,403.43190563828006,6660,68.44989124979087,5195,53.68495900953656,2078,21.331771791868828,77.26744378178137,79.68226707809713,63.28338998351626,65.06910171292368,77.01400603502594,79.4302717755543,63.19046081403708,64.97946845942415,0.2534377467554236,251.99530254282365,0.0929291694791771,89.63325349952811,113.5596,79.88396514631039,118746.44470470135,83532.67227111259,310.32469,198.3854701418016,323896.4572528024,206844.4036952083,315.73462,151.88096570974676,326293.071356868,155830.697144365,2991.5638,1358.0546398472532,3094257.73799565,1386137.9034708582,1248.30604,541.1615537418559,1288820.143884892,549380.3890294221,2046.02194,852.4365075721792,2103111.3016563496,859931.4756122873,0.37666,100000,0,516180,5397.565668395516,0,0.0,0,0.0,26633,277.8463275890915,0,0.0,29205,301.4158440689309,1856719,0,66619,0,0,0,0,0,49,0.5123807930399866,0,0.0,0,0.0,0,0.0,0.0666,0.1768172888015717,0.312012012012012,0.02078,0.3196275071633238,0.6803724928366762,24.872976026231207,4.465022285160007,0.3272377285851781,0.217516843118383,0.2230991337824831,0.2321462945139557,11.03079164803197,5.521680442579935,22.22442228984733,12471.654815832915,58.91112277057048,13.3491331542227,19.353326693000454,12.97184390221467,13.23681902113267,0.5432146294513955,0.7601769911504425,0.6888235294117647,0.5642795513373597,0.1144278606965174,0.7177358490566038,0.8979057591623036,0.8552036199095022,0.7595419847328244,0.1297071129707113,0.4834625322997416,0.6898395721925134,0.6303656597774245,0.5072463768115942,0.1106514994829369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020163333130686,0.0040559724193875,0.0063454353476283,0.0085257296154784,0.0107834260775796,0.0130056626064284,0.0151620205151212,0.0172640864123166,0.0193458010818106,0.0215563588698528,0.0236193015742782,0.0257940584295517,0.0276006090033742,0.0294690420500561,0.0314715991783734,0.0332685468530311,0.0354413074548957,0.037241164564845,0.0391936591150221,0.0413795260485628,0.0561855292998756,0.0703108634630692,0.0832878265983365,0.0958197325471201,0.1079640225492473,0.1225963574756459,0.135375955819881,0.1468867552562313,0.1582257495213545,0.1687858416203097,0.1827152239321032,0.1959097900734418,0.207972836200986,0.2192143560564613,0.2285261385026914,0.2398298324913586,0.2497042608753878,0.2592538421727683,0.2679684395754101,0.2759968367124732,0.2831241606076043,0.2900308829722521,0.2980403765318808,0.3047380229642338,0.3103062440709299,0.3164319480615658,0.3218526125945594,0.3276526962874343,0.3325385512504859,0.337100782571912,0.3365044665749062,0.3362456246727117,0.336489480294072,0.3365004417536897,0.3360868398294218,0.335084808259587,0.3337306127637935,0.334331550802139,0.3346289510633197,0.3361731068673599,0.3375873994436508,0.3390493979255256,0.339641706839568,0.3398554952205717,0.3418941773375211,0.3425260839930792,0.3440835598798111,0.3461538461538461,0.3493818438714235,0.3528492426063958,0.3543590690801625,0.3577213822894168,0.3605938439879695,0.3634465155851187,0.3661394817073171,0.3672139063254466,0.3680847748168926,0.3668797690245411,0.3732574679943101,0.3773055332798717,0.0,2.470108823637013,58.20369335028185,196.44799091400665,293.891387485897,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95834,43133,405.6076131644301,6873,70.3299455308137,5420,55.91961099401048,2139,21.912891040757977,77.40182060844235,79.71608305833728,63.36325590393732,65.07605615599986,77.14123840192289,79.45635949600616,63.26737229536831,64.98307584902021,0.2605822065194587,259.7235623311178,0.0958836085690109,92.98030697965488,113.47952,79.78513950394607,118412.58843416742,83253.47945817359,310.80567,198.72821560597825,323690.38128430414,206740.8076527936,323.92048,156.5286782225252,334284.6797587495,160488.76194370742,3123.95028,1422.299572777702,3224143.080743786,1448569.9989332596,1288.0742,572.5314441583234,1328101.4775549388,581456.2177803111,2107.92056,876.4071168635738,2162124.9243483525,883388.7291668428,0.38131,100000,0,515816,5382.390383371246,0,0.0,0,0.0,26599,276.90589978504494,0,0.0,29946,308.7526347642799,1861458,0,66877,0,0,0,0,0,53,0.5426049210092452,0,0.0,0,0.0,0,0.0,0.06873,0.1802470430883008,0.3112178088171104,0.02139,0.3304780326056922,0.6695219673943078,24.929323313335548,4.479900467270597,0.3241697416974169,0.2230627306273062,0.2267527675276753,0.2260147601476014,11.189657858810332,5.635455590467713,22.72308912273996,12738.258227096843,61.00608635126437,14.159420229976892,19.784055608570704,13.675402123108354,13.387208389608414,0.5560885608856089,0.7692307692307693,0.7068867387592487,0.5785191212367778,0.106938775510204,0.7406866325785245,0.925925925925926,0.8816964285714286,0.7364620938628159,0.1673640167364016,0.4937052579609973,0.6902985074626866,0.6470588235294118,0.532563025210084,0.0922920892494929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390510135887,0.0046620519109345,0.0068883658645457,0.0091512030632661,0.0114679598621404,0.0138034936275907,0.0160423992253987,0.0182282098387426,0.0205041192223562,0.0227526278619899,0.0252370457690533,0.0273535328652953,0.0293978578623851,0.03169209859764,0.0338194644993605,0.0356061623665802,0.037636245070335,0.0398689354112877,0.0418254899720609,0.0436773475143353,0.0581112791364655,0.0725814882184448,0.0859136776586715,0.09850943812435,0.1110046234373519,0.1266555417080332,0.1395609983473876,0.1514829382374827,0.1634754952185792,0.1741831815747188,0.1875463864298852,0.2003198547686455,0.2127282801177659,0.2237579624793767,0.2332538120733061,0.2433683184978521,0.2536612570408789,0.2635999730136955,0.2727066483659834,0.2811079951925828,0.2892499855432834,0.2972514818148871,0.3040989616594526,0.3095660300496034,0.3161742382843334,0.321667036243132,0.3265068681662371,0.3316293442185175,0.3366858237547893,0.3414238414963922,0.3415119988155964,0.3416570359363821,0.341997437377677,0.3423559982676483,0.3424092164256658,0.3414312848477421,0.3401874188748536,0.3407945911351067,0.3412500427160578,0.342212785697718,0.3429213483146067,0.343328987396784,0.3440463976884906,0.3451912763675366,0.346344857369065,0.3485455586199719,0.3508562325766627,0.3531881560394799,0.3556014853219365,0.3584583631023259,0.3606587290725788,0.3615286216821234,0.3649450688218209,0.3641217298451681,0.366769403194172,0.3678866587957497,0.3690567191560923,0.3744152938783811,0.3791872597473915,0.363914373088685,0.0,2.4279595425880816,59.67747209163158,205.41022378391796,304.83920899947753,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95699,43319,409.1892287275729,6705,68.85129416190347,5211,53.89815985537989,2115,21.713915505909156,77.32145341825886,79.70746236565205,63.3143933609397,65.07971543877784,77.06588780136933,79.45284804490066,63.21972986595479,64.98811780556385,0.2555656168895268,254.6143207513865,0.094663494984907,91.5976332139934,113.18098,79.63112355666864,118267.21282354048,83209.58408213752,311.26514,199.17958260129208,324694.68855473935,207573.75002755516,314.55153,151.42519767565918,325205.5507372073,155622.3473158224,3008.2774,1362.747134818686,3111580.14190326,1392212.9046260945,1274.21864,561.3041695658831,1315580.3926895787,570763.8685164711,2090.58244,870.2495097656413,2147811.659473976,877944.4490695356,0.38369,100000,0,514459,5375.7824010700215,0,0.0,0,0.0,26631,277.69360181402106,0,0.0,29076,300.2852694385521,1861688,0,66753,0,0,0,0,0,54,0.5642692191140973,0,0.0,0,0.0,0,0.0,0.06705,0.1747504495816935,0.3154362416107382,0.02115,0.3271396396396396,0.6728603603603603,25.09505640432987,4.555686330476968,0.3183649971214738,0.2128190366532335,0.2310497025522932,0.2377662636729994,10.885402998042256,5.288653485938434,22.36851376334769,12726.874747817305,58.6736486470317,12.926570378933842,18.71179614892881,13.451366433505754,13.583915685663298,0.5402034158510842,0.7457168620378719,0.6907775768535263,0.5672757475083057,0.1283292978208232,0.6951124903025602,0.9157303370786516,0.8064516129032258,0.7509157509157509,0.1556420233463035,0.4892911779704232,0.6653386454183267,0.6536624203821656,0.5134264232008593,0.1211812627291242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017731215044176,0.004188216205253,0.0063850089329218,0.0085161736161217,0.0111000325573823,0.0133750305598565,0.0157357455357598,0.0178885031652031,0.0199654463856714,0.0222224496898478,0.0241854456724558,0.0262174207726591,0.0283407056887151,0.0303264498577964,0.0324015772414789,0.0344606540596987,0.0364911335764003,0.0385653202706629,0.040611090311577,0.0426693903926125,0.0575725924378525,0.0710980843714016,0.0847991268208723,0.0973302324602481,0.1098778197471987,0.1254537949428985,0.1376122444647292,0.1497619529444344,0.1612461924865067,0.1727877292716936,0.1867445217728555,0.2003940545397464,0.2129835095505373,0.2239726926611527,0.2338089527937601,0.2447454098469579,0.255110238329019,0.2639059109257115,0.2728087389543655,0.2806221794607472,0.2883536366686334,0.2956586826347305,0.302741866742435,0.3104506599848941,0.3170610181438137,0.3239804402182615,0.3295413303297666,0.3348085409433698,0.3394843014534733,0.3445512186762631,0.3445315968625129,0.3448413243577414,0.3448343793093744,0.3443257291365867,0.3433361573103848,0.3420455590642916,0.3402168056039811,0.3413030975269082,0.3421097623525388,0.3430261652845296,0.3442635251744578,0.3467202406872253,0.3479227397605016,0.3485222227205453,0.3487726581545219,0.3492084294401342,0.3489312867594319,0.3493895882092478,0.3511690329872148,0.3548940584972667,0.3558593571395912,0.3587724935732648,0.358301404853129,0.3589049570798855,0.3615215940509105,0.362406378352259,0.3612622415669205,0.3641975308641975,0.3677329624478442,0.3709175738724727,0.0,2.042361603085327,56.85403454085055,198.6509583049809,295.46166913444205,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95720,42905,405.10865022983705,6794,69.7555369828667,5307,55.01462599247806,2118,21.824070204763892,77.3455376358958,79.73157925828976,63.32130932583449,65.08701864634496,77.08424596820683,79.46848174878147,63.22553050927999,64.99236584910956,0.2612916676889654,263.0975095082846,0.0957788165544997,94.65279723539766,113.2494,79.66779098161174,118312.74550773088,83229.70391973139,314.20723,200.369728709542,327802.7580442958,208880.42207640765,319.03406,153.63129094529842,330844.23318010865,158563.37582243542,3055.38032,1388.3051720184355,3168455.954868366,1427162.023710474,1312.38629,577.5188174210202,1359574.717927288,591860.3557774198,2081.6216,868.3205495015686,2146326.159632261,884037.3152050107,0.38084,100000,0,514770,5377.852068533222,0,0.0,0,0.0,26869,280.2235687421647,0,0.0,29603,306.7697450898454,1861592,0,66734,0,0,0,0,0,44,0.4596740493104889,0,0.0,0,0.0,0,0.0,0.06794,0.1783951265623359,0.3117456579334707,0.02118,0.3225174825174825,0.6774825174825175,24.93603970744891,4.494396485058359,0.3252308272093461,0.2114188807235726,0.2315809308460523,0.2317693612210288,11.161371676027194,5.74761179276522,22.54746368479297,12640.89090089251,59.91232790032884,13.333184064228472,19.35435297911905,13.575703392060824,13.649087464920504,0.5526662898059167,0.7771836007130125,0.6952491309385863,0.5736371033360456,0.1268292682926829,0.6827067669172933,0.9098360655737704,0.8349514563106796,0.6953405017921147,0.1355311355311355,0.5091777721900931,0.7129629629629629,0.6514459665144596,0.5378947368421053,0.1243469174503657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023911083192332,0.0047466910086718,0.0069749733489009,0.0090042480538222,0.0111805159925124,0.0132715420655938,0.0156329668984927,0.017677154498943,0.0197766688481675,0.0219454997900687,0.0241528552674762,0.0262222678718159,0.0283492429229756,0.0304082600004121,0.0325074044643502,0.0344260769779487,0.0363687214493624,0.03834936845492,0.0402034088663803,0.0422284273479339,0.0575230018902802,0.0710398526456798,0.0848804139074585,0.0977085262183317,0.1097680599943043,0.1253582949918028,0.1381747185467355,0.1501203433512961,0.1613185967462642,0.1722657507781475,0.1858750485060147,0.198637554963502,0.2102622154978176,0.2213140762623776,0.231624364364805,0.2428865842308203,0.2534654791401594,0.2629038790387903,0.2713535344367931,0.2796767325259278,0.2880756017720611,0.2948464694399962,0.3020090579067485,0.3082006464743206,0.3139945404913558,0.3204198919504301,0.3247834402069974,0.3303445560649741,0.3354221039303341,0.340887853542333,0.3404526831889314,0.3399972557628979,0.3398107397460594,0.3399097189172039,0.3395997034840622,0.3383573579541112,0.3377653259888883,0.3388094063476402,0.3392560923471569,0.3400200422318457,0.3421557201398549,0.3435676576826896,0.3454059514289322,0.3463936485152956,0.3467683544914804,0.3467410375258596,0.3473016235993597,0.3491878252641539,0.3509204181479005,0.3537688842826962,0.356787588409765,0.3564087544597689,0.3577281896116994,0.3605006105006105,0.3603227337446607,0.3581350404638241,0.3630009319664492,0.3697530864197531,0.3741685144124168,0.3785266457680251,0.0,1.570714026224412,59.11625272327064,203.13960109669264,299.0080550503432,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95609,42904,404.03100126557126,6701,68.96840255624471,5223,54.04302942191635,2095,21.50425169178634,77.23812690061078,79.66923881467568,63.25655152000609,65.0543239583581,76.98098478493296,79.41352449416938,63.16235764903293,64.9630306688846,0.2571421156778228,255.71432050629997,0.0941938709731644,91.29328947349792,112.09682,78.8818320133014,117244.12973674026,82503.76917943204,308.44886,197.3489932276129,322017.4146785345,205817.03163868017,313.70519,150.95658841142634,324615.30818228406,155066.87471161768,3002.19252,1366.680429870371,3108813.312554257,1398356.6999156673,1252.70552,549.399576261379,1294597.2554885,559249.1169318663,2068.21352,865.0626581567113,2125979.41616375,875191.7711706545,0.37997,100000,0,509531,5329.278624397285,0,0.0,0,0.0,26398,275.46569883588364,0,0.0,29014,300.0240563126902,1862894,0,66875,0,0,0,0,0,47,0.4706669874175025,0,0.0,0,0.0,0,0.0,0.06701,0.1763560281074821,0.3126399044918669,0.02095,0.3169344518697569,0.6830655481302431,25.125266587827134,4.48565380887638,0.321462760865403,0.2201799731954815,0.2230518858893356,0.2353053800497798,10.98155088232331,5.507785212648083,22.433726760436183,12688.97869144161,59.33462623185094,13.613827595244835,19.04338830244867,13.079638852887411,13.597771481270026,0.5517901589125024,0.7791304347826087,0.699225729600953,0.5888412017167381,0.1025223759153783,0.7033707865168539,0.9310344827586208,0.8891625615763546,0.7292418772563177,0.0909090909090909,0.4997427983539094,0.705045278137128,0.638648860958366,0.545045045045045,0.1058700209643605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023208204961893,0.0047163591735721,0.0068739338802696,0.0091275931817488,0.0115616349128806,0.0138451664170665,0.016166046203274,0.0183978261757855,0.0205592946423091,0.0230454866694662,0.02498358368218,0.0273419438365031,0.0295077242926688,0.0317831774930155,0.0336455547179164,0.0357497620131617,0.0376836234333046,0.0397556693641378,0.0417651284079907,0.043815723585378,0.0580314672521039,0.0718140568183009,0.0849389616120017,0.0976007920124699,0.1100363267719861,0.1250979727582774,0.1377064853667605,0.1497836328366481,0.1612337252468627,0.1714067836659291,0.1847252640550658,0.19805522130801,0.210496497172679,0.2218728430094332,0.2323195592286501,0.2424861038687273,0.2525610628970207,0.2620475814635246,0.2721400955196725,0.2812521531430146,0.2890281404119524,0.2965317444492663,0.3033849221420433,0.309528390370602,0.3152486591906387,0.3206730709790685,0.3260806789790204,0.330188679245283,0.3351916829109811,0.3401310997815003,0.3410976301780744,0.340738695201933,0.3410179260075433,0.3409413880107885,0.3411929531701791,0.3404978245160893,0.3389315648011196,0.3402998861818122,0.3409614129127581,0.3420641897346657,0.3432409044734565,0.3438126824618195,0.3447985340270025,0.3460241072231717,0.3466869874446621,0.3473493691472339,0.3487571043113841,0.3530286727008038,0.3549696456303826,0.3561692827339558,0.3545167345817499,0.3587118788654297,0.3621987475488645,0.3686903398243604,0.3687976650032953,0.3730074388947927,0.3753225072089847,0.3817377312952534,0.3861141602634467,0.3858508604206501,0.0,2.252022080856039,59.01871729983405,199.5744666684525,292.9464297446377,fqhc4_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95722,43011,406.15532479471807,6626,68.15570088380937,5237,54.15682915108335,2146,22.022105681034663,77.33641368994157,79.7141095393512,63.332022412709286,65.09032501794454,77.07538136970953,79.45392086480217,63.23590292204863,64.99775955559876,0.261032320232033,260.1886745490276,0.096119490660655,92.56546234577456,112.84394,79.44293305071935,117887.15237876352,82993.39028720603,309.66218,197.48846402376552,322955.9348947995,205768.96013849007,314.37422,151.6152085120711,325409.1326967677,155893.16755572715,3488.8248,1566.6598169531012,3610038.1625958495,1601967.9352218923,1303.23012,568.272361419097,1345671.6742232717,577871.5630622343,2119.11044,875.7118330908261,2177215.060278724,882264.9710794258,0.38038,100000,0,512927,5358.506926307432,0,0.0,0,0.0,26601,277.3343640960281,0,0.0,28989,299.89970957564617,1865594,0,66927,0,0,0,0,0,60,0.616368233008086,0,0.0,0,0.0,0,0.0,0.06626,0.1741942268258057,0.323875641412617,0.02146,0.3268236645605973,0.6731763354394027,25.03443108060193,4.602936169140728,0.3248042772579721,0.2058430399083444,0.2257017376360511,0.2436509451976322,11.043546660048053,5.407225024772525,22.67337571477169,12600.733930643031,58.92649687759537,12.744909279224023,19.201219089368703,13.205666905362364,13.774701603640295,0.54057666603017,0.7755102040816326,0.6866549088771311,0.5854483925549916,0.1057993730407523,0.7304147465437788,0.9173553719008264,0.8953771289537713,0.7578947368421053,0.139917695473251,0.4777636594663278,0.7034965034965035,0.6201550387596899,0.5306577480490524,0.0977734753146176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104049288638,0.0045030882666152,0.0071983349408599,0.0093706805431335,0.011454380842904,0.0135864583545515,0.0158577998959809,0.0179497651623442,0.0198951059675094,0.0217738468153061,0.0239352160319819,0.0256873575491263,0.0278888968871795,0.0302100178190694,0.0323083273140026,0.0342140081038617,0.0362105742746494,0.0379088900185705,0.0401712866244686,0.0421684236843201,0.0569223700423967,0.0719225738948469,0.0852612370744803,0.0981865965834428,0.1098204968747694,0.1265219413207068,0.1392257462686567,0.1505928643590152,0.1616659728671,0.1722375779391913,0.1853442245396528,0.1974673140768457,0.20922170785247,0.2205278336100672,0.2310076156356802,0.2407077688692286,0.2510084464353369,0.2604023828256716,0.2698115774437113,0.2777498169838945,0.2852601891023418,0.2929439252336449,0.3003888107590673,0.3076821794503495,0.3128298453139218,0.3184979137691238,0.3233713314334283,0.3284871899145994,0.3338594902315953,0.3398601398601398,0.3399913800070037,0.3394570011025358,0.3384823733547759,0.3387963110422609,0.3399213606982216,0.3388032666093577,0.3378142458100558,0.3389515266233232,0.3391250706831851,0.3403374892519346,0.3415422184652953,0.3430778371954842,0.3444999160933042,0.3447426742181728,0.3450702528137276,0.3465416361926653,0.3477524542166599,0.3491605955020589,0.3518256939049368,0.3537605571788816,0.3549607752653438,0.3541194255479969,0.3554006968641115,0.3592436974789916,0.361857252494244,0.3628835849975645,0.3641772350086112,0.3617416425918283,0.3618146395769552,0.3618497109826589,0.0,2.160678528187519,57.21912896318517,193.7375103981857,303.8079253492284,fqhc4_100Compliance_baseline_low_initial_treat_cost,0 -100000,95607,43327,409.87584591086426,6919,71.08266131141025,5364,55.50848787222693,2141,21.95445940150826,77.26635035352784,79.70576381663409,63.26822878755484,65.07272555687923,77.00747404205823,79.44806537488074,63.17285625604522,64.9805607776723,0.2588763114696064,257.6984417533481,0.0953725315096178,92.16477920693931,112.92314,79.4211768173677,118111.79097764808,83070.462222816,311.09507,198.18211227797744,324766.99404855294,206665.8532094694,318.48535,152.97592290727204,330003.1378455552,157527.66443594598,3542.78985,1597.4883284914238,3666617.3711129935,1632048.7781768146,1315.87612,579.9741756016281,1359215.915152656,589523.6705701164,2105.062,871.5353328615695,2161260.870019977,878482.44911099,0.38279,100000,0,513287,5368.717771711276,0,0.0,0,0.0,26513,276.65338312048283,0,0.0,29480,305.1763992176305,1861068,0,66754,0,0,0,0,0,55,0.575271685127658,0,0.0,0,0.0,0,0.0,0.06919,0.1807518482718984,0.3094377800260153,0.02141,0.3183137525915687,0.6816862474084312,25.102633216066288,4.437736585262134,0.3325876211782252,0.2129008202833706,0.2281879194630872,0.2263236390753169,11.27140330936259,5.783963557376687,22.619440451074,12748.61964882592,60.567855563875135,13.527047519321412,20.087627528556347,13.589006822341023,13.364173693656346,0.5553691275167785,0.7732049036777583,0.6905829596412556,0.579248366013072,0.1276771004942339,0.7175856929955291,0.9023746701846964,0.847926267281106,0.7454545454545455,0.1889763779527559,0.5012431626056688,0.709043250327654,0.64,0.5310853530031612,0.1114583333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019660302403826,0.0042505706314988,0.006580884966537,0.0088864486741499,0.01096272470023,0.0132494878563347,0.0152575930764206,0.0175960270991079,0.0198903167717115,0.0221026744543498,0.0242212757222763,0.0260060646553939,0.0283605443577443,0.0305292352741032,0.0324023385047617,0.0344467208873988,0.0364957450998683,0.0386369065547719,0.0405703580349708,0.042343714148641,0.0570075480377192,0.0715213883008823,0.0846323529411764,0.0983052275671747,0.1105642282261982,0.1263877118644067,0.1394696285273954,0.1515526492644784,0.163569608871572,0.174583901920122,0.188133124764011,0.2013746598584143,0.213697555875049,0.2243952143044964,0.2346515882988338,0.2456519810106925,0.2560799865944255,0.265725997162226,0.2742954545454545,0.2829690816267997,0.2905150244422306,0.2978636182623158,0.3056585446749031,0.3120263788968825,0.3182663667862136,0.3239287124802528,0.3284788630011656,0.3332568924221576,0.3388125486129116,0.3430880566266969,0.3420375385693305,0.3417925450614819,0.3422911526260134,0.3420455038546653,0.3420813806442014,0.3410407281419509,0.3407617568274397,0.3414313206243729,0.3422007669131744,0.3437936593229446,0.3448872831282225,0.346050723918095,0.3466259606274344,0.3475263311549776,0.3472151684442187,0.347327543228989,0.347678889080163,0.3506431785057981,0.3521534819630428,0.3545407285959931,0.3560331790477063,0.357257460690983,0.3574571191736275,0.3570719034156033,0.3597629796839729,0.3606207795284918,0.366891064871481,0.365814047909054,0.3735568993952721,0.3744343891402715,0.0,2.270997884089315,59.13291570893579,202.2849683334084,306.16009971168467,fqhc4_100Compliance_baseline_low_initial_treat_cost,1 -100000,95721,42885,404.92681856645873,6521,67.10126304572664,5119,53.03956289633413,2020,20.82092748717627,77.34534288058313,79.71513666023674,63.32656324425341,65.07493495200065,77.10528937132447,79.4723654904684,63.23917629183827,64.9883949311979,0.2400535092586579,242.77116976833213,0.0873869524151373,86.54002080274381,112.73218,79.3415838357415,117771.62796042666,82888.37750936732,307.1165,195.70089230713003,320409.82647485926,204013.62533522423,314.30996,151.0291000220262,325709.3845655603,155662.2038801375,3379.85474,1512.6225877551526,3504115.3978750743,1553412.6761683982,1214.08974,525.3419412308931,1256451.3429654934,536914.5654881308,1999.0627,821.581516585991,2062523.333437804,836341.7758647356,0.37936,100000,0,512419,5353.25581638303,0,0.0,0,0.0,26203,273.2942614473313,0,0.0,28994,300.2684886284096,1866167,0,66986,0,0,0,0,0,51,0.5327984454821826,0,0.0,0,0.0,0,0.0,0.06521,0.1718947701391817,0.3097684404232479,0.0202,0.3283189718124726,0.6716810281875274,25.28093897867352,4.453112058854163,0.3399101386989646,0.2148857198671615,0.2092205508888454,0.2359835905450283,11.044238273233804,5.516472262325975,21.261493849186696,12561.31821513049,57.55412176065319,12.954572824233436,19.64172695891602,11.83463479167673,13.123187185826993,0.5424887673373706,0.7636363636363637,0.6890804597701149,0.5639589169000934,0.1109271523178807,0.730319563522993,0.956639566395664,0.8532110091743119,0.7478991596638656,0.1416666666666666,0.4796663190823775,0.6662106703146374,0.63420245398773,0.5114045618247299,0.1033057851239669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0043581375549834,0.00655411712187,0.0086431037984968,0.0108605015355203,0.0130524643908001,0.01540217934212,0.0178536794504047,0.0198413509700897,0.0218034414633896,0.0237836507903963,0.0258061203532552,0.028018349756228,0.0304319607701737,0.0325693233299966,0.0346196388145177,0.0366212353452918,0.0384300050852558,0.0404154882715022,0.0422363484785327,0.0570112685764414,0.0707064364207221,0.0843834926497592,0.0970382450418222,0.1094404524495373,0.1243809523809523,0.1370386489326695,0.1495500292880345,0.1610386834793759,0.1720021878317943,0.184811299410681,0.1971199653529666,0.2087681309234937,0.2196496989600438,0.230781089980068,0.2419499650841859,0.2508565752614368,0.2607184241019699,0.2700034048348655,0.2783453204452792,0.2861175055236156,0.292854303551804,0.300081650040825,0.3066720979548804,0.3120004858496295,0.3176815666555748,0.3234631557869443,0.3289266283622311,0.3337349865899638,0.3381725472582925,0.3385243912304829,0.3381094746703774,0.3388877905498912,0.3381194997684113,0.337792393309922,0.3368895429044422,0.3364193134881071,0.3378542377328785,0.3384667802385008,0.3381543558413337,0.3382295229018333,0.3399767382261912,0.3401104417670683,0.3397569327872154,0.3403306661525113,0.3425694009601336,0.343424007276655,0.3454408581913992,0.3456353513778493,0.3492308300707873,0.3505173435434614,0.3542608048482271,0.3568595353522634,0.359624341452241,0.358346671688165,0.3630218216318785,0.3654317207593386,0.3704154002026342,0.3651452282157676,0.3646408839779005,0.0,1.7543628366955166,56.97873484973996,190.74267719796237,291.4228210258352,fqhc4_100Compliance_baseline_low_initial_treat_cost,2 -100000,95656,42840,404.5642719745756,6732,69.0599648741323,5252,54.25692063226562,2109,21.598226980011702,77.2498286400838,79.64864720880564,63.26585613190741,65.0388224698801,76.98466867372986,79.38663126291162,63.16682649355005,64.94430606882517,0.2651599663539485,262.0159458940208,0.099029638357365,94.51640105493198,112.37952,79.05203137350671,117482.98068077276,82641.99984685404,304.73665,194.8979537795153,317974.0633101949,203147.2921505345,314.56344,151.6498835734994,325801.63293468265,156100.13425477606,3451.30655,1573.8615499798912,3566925.953416409,1604221.0525005115,1285.95716,570.6791780777162,1325190.7355523962,577430.0285164714,2072.25104,875.1956041836273,2124430.7309525805,877870.7048715389,0.37874,100000,0,510816,5340.135485489671,0,0.0,0,0.0,26086,272.05820858074765,0,0.0,29139,301.4029438822447,1861113,0,66882,0,0,0,0,0,46,0.4808898553148782,0,0.0,0,0.0,0,0.0,0.06732,0.1777472672545809,0.3132798573975044,0.02109,0.3317328061008332,0.6682671938991668,24.940817448306326,4.492027930951029,0.3333968012185834,0.2121096725057121,0.229055597867479,0.2254379284082254,11.036786383736704,5.6064233988060765,22.64158624600029,12634.766986186603,59.67215797579141,13.149942847519991,19.915413838365367,13.424368568978238,13.18243272092782,0.5561690784463061,0.7639138240574507,0.7081667618503712,0.5660847880299252,0.1258445945945946,0.7328358208955223,0.923728813559322,0.8864142538975501,0.738831615120275,0.1707317073170731,0.4956543967280163,0.6894736842105263,0.6466973886328725,0.5109649122807017,0.1140724946695096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022286154220187,0.0045838530733112,0.0066280285421382,0.008605974395448,0.0109143432576212,0.013189253050333,0.0153464942692825,0.0175728799714096,0.0197790959296379,0.0221116129494781,0.0242171232806457,0.0259887005649717,0.0280084375160775,0.0297255233403077,0.0319643188998327,0.0338408075459209,0.0359463240246619,0.0381860088456986,0.0404303133713429,0.0424065481466034,0.0570804643338522,0.0712430621007435,0.0845849470491304,0.0974228919592966,0.1095608489620162,0.1253572108973137,0.1379189499171658,0.1497948526669153,0.1616029783045915,0.1722548693101855,0.1850053413615616,0.1977853935752554,0.2089299931290966,0.220540161039075,0.2312244019297219,0.2433345558408073,0.2530429427243715,0.2621951907561413,0.2708933389496692,0.2790866047623425,0.2869389461945916,0.2941211031597748,0.3020014508437489,0.3087107762304257,0.3150225582246067,0.3213158969156346,0.3263316582914572,0.3310198499431215,0.3366491125414472,0.3410115040025446,0.3407181984175289,0.3404840180125424,0.3403183586841174,0.3400313607061966,0.3393550313526425,0.3388619035907526,0.3376225198176301,0.3391082172587158,0.3394717421525048,0.3402424786708576,0.3419024105241335,0.3431319937193171,0.3434026608285618,0.3451504715600873,0.3451807374766966,0.3476430756359643,0.3468206444254348,0.3508512910724383,0.354162283470089,0.3550540368722187,0.3582014911802146,0.3599047870933615,0.3608370514673537,0.3662914511712808,0.3654314055773909,0.36790007070469,0.3691275167785235,0.3712306438467808,0.3754463059599011,0.3722074971601666,0.0,2.5638179349318717,58.69686679110017,205.55501408010937,289.28627620275853,fqhc4_100Compliance_baseline_low_initial_treat_cost,3 -100000,95742,43009,406.35248898080255,6769,69.37394247038917,5298,54.71997660378935,2088,21.38037642831777,77.32698317968122,79.68561262027855,63.31555014592704,65.06101065936186,77.06321091480534,79.42591541681102,63.2177580815361,64.96782812793246,0.2637722648758824,259.6972034675247,0.0977920643909371,93.1825314293917,111.63922,78.58697853742888,116603.9982452842,82081.8016517608,308.49146,197.22814138990915,321630.1518664745,205418.5429486632,316.19862,152.38419530299697,326670.9490087945,156350.4610615413,3483.96808,1574.5231886299453,3599777.370433039,1605412.4194501317,1275.27329,556.2578770577773,1316372.8875519626,565380.2062394528,2054.36702,862.5258206317301,2105715.6942616617,866349.9829336326,0.38108,100000,0,507451,5300.1817384220085,0,0.0,0,0.0,26432,275.4381567128324,0,0.0,29318,302.60491738213113,1867575,0,67010,0,0,0,0,0,48,0.5013473710597229,0,0.0,0,0.0,0,0.0,0.06769,0.1776267450404114,0.3084650613089083,0.02088,0.3330527497194164,0.6669472502805837,24.840398072691546,4.512361835122459,0.3269158172895432,0.2142317855794639,0.2348055870139675,0.2240468101170253,11.031166821322229,5.505916119824826,22.33741097595477,12629.37732916191,59.74228339070066,13.369726516716698,19.586931100505968,13.72064961098187,13.06497616249612,0.5571913929784824,0.7744493392070485,0.7084295612009238,0.5667202572347267,0.1187868576242628,0.7166293810589113,0.9270833333333334,0.8431818181818181,0.6944444444444444,0.148471615720524,0.5031589588071772,0.6964047936085219,0.6625386996904025,0.5282426778242678,0.1116910229645093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019654526113165,0.0041471476952404,0.0063841016584454,0.0084931729518855,0.0109941520467836,0.0130848734789471,0.0152037361830566,0.0173121286977114,0.0196230734638812,0.0217295626452134,0.0238185526437158,0.026022152191096,0.0279179729660276,0.029985069247799,0.031844439859707,0.033861351354144,0.0360803395796666,0.0382445076032612,0.0400789938675813,0.0420486747791298,0.0566796124613714,0.0709562670014647,0.0845172316176856,0.0970953397180492,0.1091305814394738,0.1244990959938252,0.1369175779302737,0.1486450513762444,0.1597986082160151,0.1704432017002458,0.183876948282924,0.1968157695223654,0.208690163987943,0.2200838101907064,0.2302086200253206,0.2409049593189527,0.2513741174367682,0.2609033566118495,0.2700049984095969,0.2786704871060172,0.2863727431701583,0.2948597802403767,0.302076912134288,0.3088392417676082,0.3148116605022387,0.3207502930832356,0.3267304389253162,0.3325431419030868,0.3369568037358931,0.3413432323178948,0.3414361365259455,0.3409920520131685,0.3412987086223425,0.3407962719076081,0.3414100522406941,0.3409855197088586,0.3411309136499976,0.3417507032753714,0.3426238208556607,0.3444444444444444,0.3443969396939694,0.3451504354711006,0.3458915642364034,0.3468490692980489,0.3466402780459548,0.3482460732984293,0.3499742813053666,0.3532581295689438,0.3548534476699234,0.3581064994841679,0.3599308525156947,0.3616694065864135,0.3646127755794234,0.3648013345465575,0.3674885159838755,0.3674072323327818,0.3613625901488415,0.3592705167173252,0.3629032258064516,0.3752432853250292,0.0,2.4071000523952435,58.87996157573828,195.6445209361963,304.19287895396315,fqhc4_100Compliance_baseline_low_initial_treat_cost,4 -100000,95763,43126,407.77753412069376,6624,67.96988398441987,5234,54.11275753683573,2116,21.741173522132765,77.39144353273707,79.73115725257988,63.36142006586866,65.0877290858307,77.13502881941264,79.47401109622699,63.26743586402806,64.99567817214803,0.2564147133244319,257.1461563528885,0.0939842018405983,92.05091368266947,113.4826,79.90759402587743,118503.59742280422,83443.07720714413,312.74155,199.89246063760532,326038.4699727452,208196.58572366356,321.16154,154.92083075214478,331758.4140012322,158961.2023021935,3450.89387,1556.6464892589026,3569295.6987563046,1591559.634772275,1282.11335,559.5455370625338,1323440.368409511,569038.8211358441,2078.9097,859.7515642269776,2137217.610141704,870074.6366747065,0.3803,100000,0,515830,5386.527155582009,0,0.0,0,0.0,26731,278.57314411620354,0,0.0,29681,306.40226392239174,1860619,0,66753,0,0,0,0,0,68,0.710086359032194,0,0.0,1,0.0104424464563557,0,0.0,0.06624,0.1741782803050223,0.3194444444444444,0.02116,0.3258877434135166,0.6741122565864834,25.06551801653198,4.498162218422366,0.3316774933129537,0.2136033626289644,0.2264042797095911,0.2283148643484906,11.27727434567813,5.7946995464485935,22.21292590964832,12616.741315389603,58.83168462795071,13.175334836276283,19.704902533882876,13.00387850229952,12.947568755492046,0.5527321360336263,0.7799642218246869,0.6952764976958525,0.560337552742616,0.1255230125523012,0.732089552238806,0.9402985074626866,0.859375,0.714859437751004,0.1659751037344398,0.4910118130457113,0.6899441340782123,0.6381987577639752,0.5192307692307693,0.1153039832285115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021768184027215,0.0045603332083464,0.0066962926888658,0.0088664547384243,0.0108590659983121,0.0129468284341665,0.0155288363562258,0.0174975003570918,0.0196038369990499,0.0216910861913726,0.0236782786885245,0.0258843565331582,0.0280412244017221,0.030114343937507,0.0318939479842076,0.0336538958154717,0.035653298835705,0.0375444673767618,0.0395721591617812,0.0416354166666666,0.0571977287909151,0.0712439705774643,0.0838193949057949,0.0965411351470727,0.1082782399645715,0.1237746782704326,0.1375013256973168,0.1496068856191418,0.1608620892206807,0.1724448446645655,0.1858522354157022,0.1988427428077006,0.2115560193035085,0.2220644146309487,0.232801266407229,0.2441242862833621,0.254302657392545,0.2635138171197483,0.2727159374291544,0.2808466819221968,0.2879761464497041,0.2954911997756118,0.3021594645095674,0.3086082560674669,0.3142812079152663,0.3203367301727957,0.32553866919962,0.3312895921845981,0.33638352121973,0.3403770102820986,0.3397375568044314,0.3388326442023709,0.3374212421242124,0.3376115830004471,0.3380739114960256,0.3378694158075601,0.3367672618107126,0.3382092779452234,0.3391301382708472,0.3388624324468939,0.3403704814759262,0.3405425727684666,0.3420881358778946,0.3421525066199901,0.3433073911151931,0.3430876843677137,0.3428359019815286,0.3458487405581366,0.3492843258526241,0.3524125259626138,0.3532865464886932,0.3545327903986284,0.3563664102727099,0.3599111519607843,0.3626611461371977,0.3602125147579693,0.3631284916201117,0.3652995577000402,0.3633894622487778,0.3541270445036135,0.0,2.103313339566635,58.840605734556,189.05402130778756,302.0918509777302,fqhc4_100Compliance_baseline_low_initial_treat_cost,5 -100000,95735,42957,405.525669817726,6671,68.53292944064344,5181,53.61675458296339,2076,21.34015772705907,77.37264048070351,79.72984680126869,63.34029949113111,65.08107559731144,77.11422476808389,79.47064672487095,63.246006149893525,64.98865263676194,0.2584157126196231,259.20007639774667,0.0942933412375879,92.4229605494986,112.70732,79.29304139255004,117728.43787538518,82825.55114905733,307.6072,196.84245575531045,320744.56572831253,205045.24547481103,314.96458,151.64003654861244,324971.1913093435,155387.01050453953,3442.65804,1554.820984828709,3565362.834908863,1593528.3390600274,1243.2785,542.8475652546181,1286449.5325638482,554861.0144387421,2048.59802,848.6121967254762,2108518.744450828,862472.8081931565,0.3808,100000,0,512306,5351.292630699326,0,0.0,0,0.0,26326,274.4868647829947,0,0.0,29136,300.3917062725231,1866000,0,66958,0,0,0,0,0,46,0.4700475270277328,0,0.0,0,0.0,0,0.0,0.06671,0.1751838235294117,0.3111977214810373,0.02076,0.3270735524256651,0.672926447574335,24.88980499709644,4.5282160762410895,0.3198224281026828,0.2113491603937463,0.23605481567265,0.2327735958309206,11.304204071376972,5.780752276166302,22.003537834540666,12657.659755947972,58.49014640883584,13.071541774549084,18.55478430966861,13.771828438057122,13.09199188656102,0.5525960239336035,0.7863013698630137,0.7006638503319251,0.5829926410466068,0.1061359867330016,0.7130177514792899,0.9221105527638191,0.8829268292682927,0.6996587030716723,0.1195219123505976,0.4959519456777226,0.7087517934002869,0.640737770649559,0.546236559139785,0.1026178010471204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582278481012,0.0043780973518591,0.006827150349473,0.0089372765680857,0.0112761695594261,0.0132337072703951,0.0154835684579629,0.0174539664393908,0.0195342846628777,0.0215889199398089,0.0236532901347222,0.0256568207718606,0.0276292518405791,0.0297740427197264,0.0319002960991261,0.0341170998914784,0.036040046797188,0.0381184524426926,0.0402024674420296,0.0422659903552717,0.0568630317205086,0.070416640508925,0.0838767850028308,0.0968501371561899,0.1094291888473093,0.1245348443843031,0.1368462362512065,0.1496663793378667,0.1611136028705068,0.1724089861133451,0.1865005438118518,0.1986001276545106,0.2103197042192257,0.2209658370150037,0.2311627446450377,0.2420325014123824,0.252173524849053,0.2615930199831128,0.270891309533275,0.2783574901385194,0.2867644505157384,0.2948068212408853,0.3019552079630287,0.3086625702078633,0.3145511362945489,0.3209897863521981,0.32683323940134,0.3312762437969207,0.3357810759706789,0.3405875521300744,0.3404876997859076,0.3405072174595093,0.3410647352253191,0.3416961897187477,0.3425494891205735,0.3426057903045351,0.3417476958160453,0.3428378911385748,0.3439591585848928,0.3454114459871317,0.3466053536713025,0.347361573791173,0.3483275421777536,0.3499988840033033,0.35051397828802,0.3510137157431746,0.3528090526555214,0.3558068861806447,0.3577272727272727,0.3593897824030274,0.3600616109450031,0.3607400339270568,0.3629704470825966,0.3632973055259552,0.3616602642181205,0.3631946913141367,0.3659620098039216,0.3740349451442503,0.3708298869589192,0.3700575815738963,0.0,1.9942477373303087,59.98921701688456,190.2938499691239,290.85556911974163,fqhc4_100Compliance_baseline_low_initial_treat_cost,6 -100000,95744,42733,403.7224264705882,6537,67.11647727272727,5146,53.18348930481284,2057,21.171039438502675,77.33281654085012,79.69852020554151,63.319784280511655,65.07096006667592,77.07146731345536,79.43557611702302,63.22269425579494,64.97528111432848,0.2613492273947599,262.9440885184948,0.0970900247167136,95.67895234744128,113.21464,79.59455691678647,118247.24264705884,83132.68394550726,305.62398,195.3716881857316,318612.0592413101,203462.89611102745,311.62435,149.9806063538947,321452.2058823529,153596.82257920707,3409.90317,1546.1777502096784,3525801.481032754,1579792.8900842494,1259.8437,557.1482340585065,1298381.705381016,564650.0366687473,2027.0306,857.7427824442765,2087130.4311497323,870446.5183550991,0.3784,100000,0,514612,5374.874665775401,0,0.0,0,0.0,26162,272.6228275401069,0,0.0,28761,296.404996657754,1864472,0,66962,0,0,0,0,0,47,0.4908923796791444,0,0.0,0,0.0,0,0.0,0.06537,0.1727536997885835,0.3146703380755698,0.02057,0.3325090909090909,0.6674909090909091,24.980488705191544,4.501565062137734,0.3153905946366109,0.216867469879518,0.2370773416245627,0.2306645938593082,10.78050907829884,5.350739364770962,22.094071486354963,12522.306983123772,58.15781141653838,13.16382992498114,18.40819561683345,13.448908690813507,13.13687718391026,0.5433346288379324,0.7634408602150538,0.6820702402957486,0.5737704918032787,0.1154170176916596,0.7020946470131885,0.8944591029023746,0.8740359897172236,0.7211895910780669,0.1269841269841269,0.4902774176821364,0.6960651289009498,0.6215559157212318,0.5320715036803365,0.1122994652406417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022494908247119,0.0043207935654661,0.0066098081023454,0.0086398796515587,0.0108248891059292,0.0129868807040417,0.0151745377782763,0.0172026544155181,0.019375881883806,0.021687265131424,0.0236625725358321,0.0256497140334124,0.0276898083408735,0.0297734294541709,0.0318293903407859,0.0338404928267251,0.0359465617232808,0.0378165213781652,0.0399492575801688,0.0416697050826622,0.0557788472580358,0.0696358138999612,0.0825372523934859,0.0954478553406223,0.1079676613506761,0.1231639612964627,0.1358709485830646,0.1485305544615581,0.1596453749198889,0.1701449959246707,0.1839844086484624,0.197117725339998,0.2084937466014138,0.2191265554267719,0.2298019801980198,0.2404868432710197,0.2504687709272735,0.2608318793268419,0.2694988760473195,0.2776899640345451,0.2854099366656246,0.2930677066863427,0.2999632601301302,0.3062850150557242,0.3128701552980092,0.3187692079831155,0.3240100250626566,0.3285828907652924,0.3335667146394907,0.3378399809689953,0.3376385256289266,0.3371319121963319,0.3373220257665768,0.3363785090703768,0.3362483798399952,0.3356702359402325,0.3354215568102519,0.3362267376865917,0.336947228017374,0.3387289846527666,0.3389483952053124,0.3391866180434438,0.3396574882471457,0.3398795261661105,0.3400978525463353,0.3417903428093645,0.3422887847261918,0.3446884946270444,0.3489255442619491,0.3493947116916215,0.3521699406121517,0.3550450402430574,0.360932577189666,0.362957885918818,0.3641396134359166,0.3672430127901468,0.3715421060675531,0.3705882352941176,0.3640629312724261,0.3636016787485692,0.0,2.1150213804568314,56.773931311645406,199.00106329436744,287.6013363142188,fqhc4_100Compliance_baseline_low_initial_treat_cost,7 -100000,95790,43377,410.1367574903434,6708,69.09907088422591,5206,53.87827539409124,2103,21.682847896440126,77.34910350822409,79.67862572348635,63.34642956891118,65.06713768254937,77.08444356608328,79.41189829340505,63.24887628018061,64.97098105577611,0.2646599421408098,266.7274300813034,0.0975532887305661,96.15662677326496,112.83492,79.45613415961304,117794.0494832446,82948.25572566348,310.00218,198.54683457544897,323173.3479486376,206819.5057682942,319.21602,154.0905359080532,330282.7226224032,158581.87097490925,3415.72448,1550.603435729253,3537316.181229773,1590531.2540586917,1258.20155,554.1621246487142,1301576.0622194384,566712.7989993702,2058.55288,865.949198569116,2123591.1681803945,880913.0739224679,0.3811,100000,0,512886,5354.2749765111175,0,0.0,0,0.0,26481,275.96826391063786,0,0.0,29372,303.7164630963566,1862630,0,66905,0,0,0,0,0,55,0.563733166301284,0,0.0,0,0.0,0,0.0,0.06708,0.1760167934925216,0.3135062611806798,0.02103,0.3215497737556561,0.6784502262443439,24.75283901783708,4.4780262041609245,0.3255858624663849,0.2224356511717249,0.2270457164809834,0.2249327698809066,10.968302023351509,5.539525211384715,22.795066753412563,12655.31072585595,59.18769555208577,13.671301115142755,19.23808483974133,13.222439959676995,13.055869637524705,0.5482135996926624,0.7495682210708118,0.6902654867256637,0.5744500846023689,0.116994022203245,0.6980306345733042,0.900990099009901,0.8378378378378378,0.6953125,0.1610486891385767,0.4946544980443285,0.6684350132625995,0.6378896882494005,0.541036717062635,0.1039823008849557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607096565132,0.0048145632937694,0.0068782907751772,0.0087860966369056,0.0106967096433074,0.0127448186001058,0.0150431113557145,0.0171965096698474,0.0194341415565705,0.0214953653495938,0.0235421874359709,0.0255305175881459,0.0276650189606092,0.0295909755244035,0.0317239388409472,0.0337636851890105,0.0359674265078691,0.0378054976617828,0.0397655835991645,0.04194522545038,0.0567904326591947,0.0710057314981383,0.084168588802684,0.0976365871856577,0.1099976818191397,0.1249471682163989,0.1380198397558183,0.1505614154474311,0.1624410440275732,0.1730849570983257,0.186675419150722,0.198944670912492,0.2115556038699858,0.2216864571715978,0.2319031903190319,0.2430235648476258,0.2533392847179602,0.2622069818427118,0.2715938740782757,0.2796391900090431,0.287315374917591,0.2957810745039311,0.3029165976184276,0.3086677213672755,0.3147875946014893,0.3203611649048365,0.325871830844774,0.3313118701507179,0.3364294424409101,0.3412628099173553,0.3405555630506051,0.3409363579948976,0.3410184414375009,0.3412301013024602,0.3414699451113392,0.3410428545153577,0.3393601343749505,0.3399756666995495,0.3411342057993328,0.3419663152619427,0.3431247419197417,0.3433353826626737,0.3440848917839882,0.3447121970938981,0.3443412203028983,0.3450094458438287,0.3473644945625663,0.3503693605148854,0.3555005305978068,0.3581605699191547,0.360639955991565,0.3631362495326604,0.3672442349343865,0.3690430511856342,0.3708634461772537,0.3692196531791907,0.3744555071561916,0.3822441430332922,0.3836111111111111,0.3720379146919431,0.0,1.8157978967119883,60.93353808738652,196.69099975153787,288.4519694960935,fqhc4_100Compliance_baseline_low_initial_treat_cost,8 -100000,95664,42945,405.09491553771534,6690,68.65696604783409,5266,54.419635390533536,2117,21.742766348887773,77.31532774038504,79.70693526834188,63.31028192710126,65.0761774240359,77.0478238364956,79.44094090236015,63.211691094766174,64.98114599129002,0.2675039038894482,265.9943659817259,0.0985908323350841,95.0314327458841,112.3144,79.0478645899392,117405.08446228466,82630.73318065227,310.63419,198.41730218044933,324036.9208897809,206733.76837728856,315.20351,151.5788728470898,325547.5623013882,155417.51669057325,3494.25194,1575.5848529765435,3613907.0496738586,1608523.821062512,1262.65015,551.6807372473806,1305371.4563472152,562268.3164764676,2091.16842,872.4636928724389,2150443.6360595417,881119.5985550366,0.3784,100000,0,510520,5336.594748285666,0,0.0,0,0.0,26478,276.1540391369794,0,0.0,29136,300.62510453253054,1865457,0,66900,0,0,0,0,0,58,0.5958354239839438,0,0.0,0,0.0,0,0.0,0.0669,0.1767970401691332,0.3164424514200299,0.02117,0.3202614379084967,0.6797385620915033,24.970837219565,4.542402968910516,0.3239650588682111,0.2117356627421192,0.2312951006456513,0.2330041777440182,11.0061711001742,5.367681567513574,22.547296916955585,12624.133176416788,59.30030812065573,12.979802015661216,19.224743027675373,13.60972469147126,13.486038385847875,0.546524876566654,0.7793721973094171,0.7057444314185228,0.5541871921182266,0.1059494702526487,0.7269260106788711,0.929503916449086,0.8520286396181385,0.7391304347826086,0.1545064377682403,0.4867256637168141,0.7008196721311475,0.6581196581196581,0.5,0.0945674044265593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0042884081185749,0.0068704459193407,0.0090626460488082,0.0113932291666666,0.0136287242169595,0.0157684305005915,0.0180583218426025,0.0199212558163317,0.021955065844717,0.0241833752115276,0.0261125035953486,0.0283938932554215,0.0306146633005306,0.0327941616689203,0.0348140869835031,0.0366490519117189,0.0388296105621522,0.0407564598676819,0.0429317407210531,0.0572992853262005,0.0715594601103653,0.0844511619119591,0.0972165219679031,0.1098563603550358,0.1258257113821138,0.1387189942235814,0.150518736285976,0.1621364515749757,0.173033370184722,0.1866067386664942,0.199690301901503,0.211255646873129,0.2217638239896696,0.2327261514063567,0.2431236413646244,0.2528229814705192,0.2621177847552809,0.2707268887526398,0.2780911112639567,0.2855653745034224,0.2936004308528075,0.3004595305208802,0.3066314589209626,0.313346298772335,0.319301620181993,0.3245456936390847,0.3291583931571712,0.3340974137819392,0.3394257943530281,0.3390294192957158,0.3396117227220744,0.339050410812182,0.3398897138639225,0.3401508277677788,0.3386169576747965,0.3371529098516546,0.3378957215302053,0.3380695904932889,0.3378612665105721,0.3398778522986998,0.3417263341113177,0.3430371770636421,0.3435432876650895,0.3451064651634397,0.3457765453736887,0.3476277895703057,0.34940638689607,0.351478828285694,0.3524214922496185,0.3549500621346712,0.3567831118731247,0.3580986364215623,0.3586174901414985,0.3612145517043827,0.3615717375630858,0.3613754989253914,0.3641129032258065,0.3684794672586015,0.359141433499425,0.0,2.5039216957200696,57.31091419264322,198.1800797540109,300.8379158390007,fqhc4_100Compliance_baseline_low_initial_treat_cost,9 -100000,95628,43141,407.88262851884383,6725,69.18475760237587,5208,53.87543397331326,2069,21.217635002300582,77.3146043072854,79.73416358294702,63.296484254502126,65.08307049386359,77.06067622115825,79.48044548228111,63.20326004775362,64.99250811806833,0.2539280861271606,253.71810066590683,0.093224206748502,90.56237579525828,111.6973,78.55689615379731,116803.5094323838,82147.9988787147,307.37972,196.62040637421376,320842.7343455892,205021.4531786665,318.27766,153.42302295206764,329336.3554607437,157717.6308562336,3425.4495,1534.4525715279203,3547049.4520433345,1569707.5169514257,1217.24887,528.1939968630041,1259299.891245242,538809.8988312864,2034.14834,837.178967604181,2089706.6131258623,845262.2082948617,0.38011,100000,0,507715,5309.250428744719,0,0.0,0,0.0,26236,273.737817375664,0,0.0,29297,302.90291546409003,1867819,0,67004,0,0,0,0,0,65,0.6692600493579286,0,0.0,0,0.0,0,0.0,0.06725,0.1769224698113704,0.3076579925650557,0.02069,0.3207360226468507,0.6792639773531494,25.01486681657072,4.495621460883849,0.3198924731182795,0.2229262672811059,0.2325268817204301,0.2246543778801843,11.181156751589176,5.6887804554901065,21.788816651479586,12628.753387537572,58.5380037230508,13.779202229428334,18.659617902847497,13.427734870117233,12.67144872065774,0.5564516129032258,0.7708871662360034,0.6962785114045619,0.5920726672171759,0.1076923076923077,0.7300380228136882,0.8973105134474327,0.8791469194312796,0.7244094488188977,0.1652173913043478,0.4978165938864629,0.7021276595744681,0.6342443729903537,0.5569487983281086,0.0936170212765957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020163537434265,0.0042388780156372,0.0063852682015673,0.0086673779403546,0.0109049479166666,0.0131391322061519,0.015411919503065,0.0176728981509858,0.0196479528694602,0.0215870805214488,0.0237030503189809,0.0255372478119735,0.027900373445264,0.0299836171988501,0.0321331984557897,0.0342656258077857,0.0362227241643699,0.0383824750830564,0.040224742482572,0.0423550271172298,0.0571327034032945,0.0712961314044478,0.0848165999852986,0.0976315789473684,0.1101435507705298,0.1256074964264916,0.1383247652632026,0.1501992711152788,0.1618140977644667,0.1725889960684899,0.1855467696523155,0.1979322452695233,0.2103216106680611,0.2211426818848993,0.2319883614561405,0.242631064944289,0.252707460184409,0.2615656759131983,0.2711902922328773,0.2793173059276931,0.2872791273939927,0.2950838851580598,0.3015660696741202,0.3080049393964825,0.3129394620195518,0.3187682525599793,0.3244761368611997,0.3298152363271067,0.3343729778698072,0.3394304114867896,0.3396447472965511,0.3396805305229558,0.3396298228055089,0.3393332561639078,0.3392841189958607,0.3390376793799401,0.3381269841269841,0.3378759166186043,0.3390426828221806,0.3397142038535921,0.3414583841149007,0.3429642786658772,0.3448672381350617,0.3456483840686603,0.3479168165791177,0.3497897523750194,0.3502102511649051,0.3530866516403707,0.3566406659904159,0.3585226822896049,0.3620830311820159,0.3637471520161077,0.367105429692444,0.3644959585176147,0.3689311253293187,0.3662595785440613,0.3712640099626401,0.373305954825462,0.3691627521414755,0.3666146645865835,0.0,2.187916782081994,58.04268037796604,188.66857300701724,301.59195617489894,fqhc4_100Compliance_baseline_low_initial_treat_cost,10 -100000,95652,43005,405.8984652699369,6733,69.12558022832769,5233,54.18600761092293,2078,21.400493455442646,77.29129418892526,79.69292559476564,63.29829466637945,65.0706375834224,77.03995750987535,79.43930831455016,63.20582124285336,64.97940454350898,0.2513366790499134,253.61728021547947,0.0924734235260942,91.23303991341912,112.68708,79.24616881440691,117809.43419897128,82848.41803036729,306.26662,195.6838732809937,319696.0962656296,204086.65086040407,315.20555,152.3715366353819,325984.3286078701,156564.72788553545,3441.69318,1557.343261605282,3568312.152385732,1598306.3831443996,1218.52407,530.8019019851108,1263140.216618576,544156.6428146934,2045.48924,853.4213272602997,2108953.7280976875,866935.6808770761,0.37935,100000,0,512214,5354.974281771421,0,0.0,0,0.0,26150,272.86413248024087,0,0.0,29109,300.9137289340526,1863917,0,66888,0,0,0,0,0,60,0.6063647388449798,0,0.0,0,0.0,0,0.0,0.06733,0.1774878080927903,0.3086291400564384,0.02078,0.3137199434229137,0.6862800565770862,25.05338626121881,4.490560431954142,0.3294477355245557,0.2157462258742595,0.2287406841200076,0.2260653544811771,11.139951993324324,5.619423040206857,22.13547103717812,12587.850788136822,59.01468596127864,13.295833376277969,19.379089349849885,13.245373159151304,13.094390075999474,0.5526466653927001,0.7608503100088574,0.7047563805104409,0.5747702589807853,0.1098901098901098,0.7103235747303543,0.9209809264305178,0.8523002421307506,0.7122302158273381,0.1416666666666666,0.5006353240152478,0.6837270341207349,0.658276125095347,0.5331882480957563,0.1018027571580063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023398802710614,0.0045523674338436,0.0065771444231296,0.0088608881211259,0.0112321826450569,0.0135560421653001,0.0157330179252401,0.0179304429513754,0.0199063471290691,0.0220547580529559,0.0242124046271228,0.0262617340755499,0.0284756085015328,0.030665553803827,0.0325284662792018,0.0347513109311489,0.0366962018757448,0.0388313225491621,0.0408694114097241,0.0427117866599945,0.057286768240433,0.071176427456608,0.084424516711644,0.0971232487395134,0.1097894347986701,0.1250264617468987,0.1377205460837809,0.1501001235567295,0.1613586067545463,0.1724334131337964,0.1861974533967288,0.1988890452936017,0.2106282927678843,0.2214144156967513,0.2323538488669429,0.2430597917105686,0.2528962920758342,0.2617643085513577,0.2702800894651392,0.2787550279041518,0.2857027089604075,0.2924506224843209,0.2986983762273045,0.3052406827641633,0.3115581556574514,0.3175798269541712,0.3237362279239418,0.3286269512583625,0.3335710673392378,0.3385354775674034,0.3383284370536075,0.3381803646989098,0.3385227737865037,0.3381403295398604,0.3383329857904614,0.3369800709884605,0.3356455760500333,0.3367656265445319,0.3385741718674988,0.3390319516871852,0.3404663407295976,0.3405530960274761,0.3411381087619649,0.3419056595305417,0.3432217673970623,0.3447222802255168,0.3442249672681732,0.3462530673881583,0.3464627959413754,0.3499022619380061,0.3532824706473571,0.3554504887377815,0.3553248068886919,0.3573076923076923,0.3615077098800685,0.3569534827669318,0.3595628415300546,0.3595833333333333,0.3576065481230595,0.3583301120989563,0.0,2.072033237245708,57.17127364751428,201.47303507590965,294.8022546232025,fqhc4_100Compliance_baseline_low_initial_treat_cost,11 -100000,95626,43362,409.8676092276159,6718,69.08163051889653,5290,54.6713236985757,2183,22.378850940120888,77.27514686010801,79.6859733071698,63.27600815666828,65.05627862526497,76.99778109649641,79.41230580466822,63.17370442242672,64.95897598964856,0.2773657636115985,273.66750250158134,0.1023037342415591,97.30263561640128,111.28282,78.31290397040276,116372.97387739737,81894.99087110488,310.03029,198.76399387921785,323530.68203208334,207174.98784767516,322.48265,155.77541657305107,333906.77221676114,160319.32517931098,3495.39159,1583.6658572606543,3614749.837910192,1615580.4355098566,1302.15128,561.6656587757334,1344966.9964235667,570611.0459244695,2153.10044,900.4337579558188,2209791.228327024,905105.3390564852,0.38216,100000,0,505831,5289.680630790789,0,0.0,0,0.0,26395,275.3748980402819,0,0.0,29730,307.5000522870349,1864057,0,66899,0,0,0,0,0,75,0.7738481166210026,0,0.0,0,0.0,0,0.0,0.06718,0.1757902449235922,0.3249479011610598,0.02183,0.3285734483246147,0.6714265516753852,24.761331279693863,4.509161242504809,0.3168241965973535,0.2232514177693761,0.2251417769376181,0.2347826086956521,11.015664156741886,5.469277391201151,23.347153000236688,12672.554323377968,60.11527504079507,14.028696647750252,18.92808314146072,13.38429078396113,13.77420446762298,0.5487712665406427,0.7696867061812024,0.7004773269689738,0.5608732157850546,0.1223832528180354,0.7037037037037037,0.9106699751861044,0.8649885583524027,0.7153284671532847,0.1064638783269961,0.4942499361104012,0.6966580976863753,0.642453591606134,0.514721919302072,0.1266598569969356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607096565132,0.0045407092831152,0.0066460352087666,0.0088979177247333,0.0112185844038283,0.0133106566726413,0.0153974793000774,0.0174781268185112,0.0197110813491049,0.0219221002621231,0.0239094088806375,0.0262476628793326,0.0282624799374459,0.030511060259344,0.0325701952765988,0.0345120109246653,0.0364047226627691,0.0384287821191915,0.0407014257466958,0.0427182845938842,0.0575188402161529,0.0725056849738543,0.0853670066919497,0.0981520112944349,0.110267163879528,0.1264246070414778,0.1392983537563899,0.1508725919766314,0.1619324871031958,0.172397115250266,0.1856741876281982,0.1984708816831146,0.2103163356515293,0.221647110428775,0.2324305831457202,0.2432963810454757,0.2535532824495826,0.2622088824697599,0.2708907149848626,0.2786934200098774,0.2871099868883655,0.2946165667562145,0.3016460758832675,0.3085316029800529,0.3150699939135727,0.3202544152155119,0.3256584313085812,0.3313104784731695,0.3362083522764175,0.3418101907623876,0.3421393841166937,0.3419770635238266,0.3414734047060817,0.3412475373739715,0.342321550876984,0.3416517028101355,0.3420526966612765,0.3420515857349651,0.3429557845801501,0.3443727547318189,0.344121184784243,0.3446294094332144,0.3464998948917385,0.3463679626470324,0.3468367272990796,0.3474800366540123,0.3460834239285918,0.3486319784912225,0.3519480060753771,0.3537730196141094,0.356737458806298,0.3569057815845824,0.3575044292584156,0.3609458428680396,0.3619986726083246,0.3679211254057953,0.3641001855287569,0.3670419651995906,0.370976692563818,0.3684007707129094,0.0,2.5722072422907045,60.63151540474144,198.6425408878858,296.69222012637965,fqhc4_100Compliance_baseline_low_initial_treat_cost,12 -100000,95685,43236,409.3118043580498,6574,67.53409625333124,5132,53.03861629304489,2028,20.80785912107436,77.28391542799022,79.68093025461134,63.28504443165552,65.05923093996103,77.03478671761248,79.43254875919654,63.19285404334703,64.97017904007379,0.2491287103777466,248.38149541480448,0.0921903883084951,89.05189988723805,113.3836,79.77674745186428,118496.7340753514,83374.35068387342,308.62171,196.9999070494069,321966.5464806396,205311.0592563169,313.51485,150.62981546589472,323985.68218634056,154661.96725387103,3387.81468,1517.216886682896,3503154.5696817683,1548200.5086302932,1240.91117,533.754180107558,1282456.7278047765,543409.8658175874,1996.24088,829.9924856317442,2050738.56926373,837825.8103149765,0.38085,100000,0,515380,5386.215185243246,0,0.0,0,0.0,26333,274.5884934942781,0,0.0,28909,298.4375816481162,1860237,0,66767,0,0,0,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.06574,0.1726138899829329,0.3084879829631883,0.02028,0.3118854829381145,0.6881145170618855,25.274581022192788,4.532339885348955,0.3230709275136399,0.2151208106001559,0.2328526890101325,0.2289555728760717,11.217824113338162,5.528408675160885,21.40329914140069,12616.266157166689,57.54991730116492,12.960934295588306,18.681294849071183,13.20066737138833,12.707020785117102,0.5409197194076384,0.7744565217391305,0.6857659831121834,0.5414225941422595,0.116595744680851,0.7,0.9187675070028012,0.848780487804878,0.683206106870229,0.1633466135458167,0.4880581516095534,0.7054886211512718,0.6322115384615384,0.5016077170418006,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989825905433,0.0044324083089905,0.0066804065098429,0.009085273523643,0.0113244406458899,0.0137213756010105,0.0160844510173899,0.0181394778771908,0.0203019207560292,0.022434846746435,0.0242941562705187,0.0262736072008384,0.0282882957047891,0.0303720498814799,0.0326613194594985,0.0344492362425408,0.036206128306892,0.0378901911118954,0.0398718442158259,0.0415867589427165,0.0567864865711868,0.0708475108621682,0.0842420108096762,0.0968610903580861,0.1089205049183096,0.1241796163780327,0.1363872872266998,0.14853826082326,0.1598627457268383,0.1706327483497021,0.1833575855564538,0.1955471289274106,0.2072697970206464,0.2187588986485006,0.2295999911819494,0.2414987510407993,0.2511489047666969,0.2605667140055454,0.2692648663393344,0.2776694351397237,0.2861051533244449,0.2943238711644213,0.30148768566412,0.3082918042629841,0.3137402907302344,0.3199555582988704,0.3251610638991251,0.330069395810785,0.3352210875537815,0.3404485630932108,0.3407274638491705,0.3407933492994192,0.3409094109529241,0.3406396650061367,0.3404856433361585,0.340008279795765,0.3395987194522806,0.3401631942734243,0.3409067579127459,0.3416811262365168,0.3432255154396977,0.3442873595170962,0.346170069174962,0.3470471732084983,0.3491462941404734,0.3497521441498151,0.3507714285714285,0.3546023122117632,0.3558493617919054,0.3591616386154335,0.3597535934291581,0.3660234943921756,0.3706517644103981,0.37140918344266,0.3709858103061986,0.3715769593956562,0.3760330578512397,0.3743662543094707,0.3749651519375522,0.3770744886144346,0.0,2.349986205212602,56.15686873683932,185.98333642947875,298.8887922763562,fqhc4_100Compliance_baseline_low_initial_treat_cost,13 -100000,95655,43251,407.3702367884585,6767,69.55203596257383,5273,54.53975223459307,2068,21.243008729287546,77.35161970545354,79.75685995009327,63.31721993396855,65.09403644082917,77.09977163864197,79.5063610316923,63.22489839106477,65.00477603782205,0.2518480668115757,250.4989184009787,0.0923215429037824,89.2604030071169,113.92744,80.1115442990051,119102.44106424128,83750.50368407831,314.31154,200.401500418049,328019.4657885108,208935.21553295592,320.14897,154.4428121074492,330886.7074381893,158497.30456873024,3457.36123,1549.070537619063,3578758.49668078,1583786.260644047,1275.11507,553.1720583227788,1319908.2849824892,565171.9808925604,2020.88462,832.706230245745,2078012.7750771,841002.9098944573,0.38092,100000,0,517852,5413.747321101877,0,0.0,0,0.0,26893,280.5394386074957,0,0.0,29564,305.2637081177147,1856713,0,66549,0,0,0,0,0,48,0.501803355809942,0,0.0,1,0.0104542365793737,0,0.0,0.06767,0.1776488501522629,0.3056007093246638,0.02068,0.3166293393057111,0.6833706606942889,25.22047700935981,4.48305399884404,0.330931158733169,0.218092167646501,0.2345913142423667,0.2163853593779632,11.471227690164405,5.976317854977266,21.901916720887165,12639.213730673018,58.979108046291245,13.482424830994194,19.408512713893927,13.619208083974415,12.468962417428711,0.5596434667172387,0.76,0.6808022922636103,0.5901374292643492,0.1393514460999123,0.7386706948640483,0.906801007556675,0.8827751196172249,0.7419354838709677,0.1826086956521739,0.4996201570017726,0.6826029216467463,0.6171816126601356,0.545929018789144,0.128430296377607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045327789889976,0.006992510199525,0.0093879541575225,0.0115147138105361,0.0138317376247708,0.0160505786978024,0.0182883867212629,0.0204294478527607,0.0224521151285465,0.0245090998625274,0.0265840475162874,0.0287219700945735,0.0308666158065114,0.0331773625442864,0.0354042729294914,0.0375295385763442,0.0396972874212334,0.0418652073492998,0.0438767530368593,0.0581695453643041,0.0715751560078736,0.0847030669437622,0.097689296687571,0.1092712785604981,0.1242988082386063,0.1363501231631699,0.1476610212847596,0.1600552025162077,0.1710174496644295,0.1841336251981409,0.1970944467315234,0.2090218361526571,0.2196123072208053,0.2308183579985905,0.2418612900007759,0.2527229464794396,0.2616991815920118,0.2711431490521058,0.2789363383378568,0.28651906348325,0.294605081695145,0.3020351690455636,0.3079253688446062,0.3132996673869237,0.3186732005220518,0.3238025018432661,0.3299798025989863,0.3354394397498514,0.3397153128003897,0.3397619527940286,0.339791151415224,0.3404599707240175,0.3406285640040999,0.3412149116292886,0.340484789128971,0.3393571439864662,0.3402415411374749,0.3416525734980098,0.3424674652337683,0.3440775533929609,0.3445632199806359,0.3454080456155797,0.3462990683437967,0.3463153600652701,0.3472258332900005,0.3483468958060661,0.3506061177061742,0.3517057606675782,0.3542360780580675,0.3585670065549891,0.3600696092390444,0.3617700444388809,0.3622507014483961,0.3645647896561416,0.3657573582196697,0.3705764178643177,0.3756838905775076,0.3761943761943762,0.3839150227617602,0.0,2.268598460339416,58.16742701233445,187.28990458669384,308.90023203885744,fqhc4_100Compliance_baseline_low_initial_treat_cost,14 -100000,95790,43152,407.4746842050318,6818,69.97598914291679,5313,54.91178619897693,2198,22.63284267668859,77.3507064425629,79.68019312595901,63.34838135415546,65.07043238734535,77.07896516137966,79.40709028550582,63.24896126973342,64.97298805317152,0.2717412811832389,273.1028404531912,0.0994200844220358,97.44433417382936,112.41384,79.15544500424802,117354.46288756657,82634.35118931832,311.32848,198.9176220085752,324457.54254097503,207106.1927221789,320.2847,154.73760232741873,330785.6770017747,158864.87174026575,3529.27592,1597.8984614816136,3649262.1881198455,1633135.3271471537,1297.7655,568.8556802228691,1338991.773671573,578109.2237753692,2164.54464,896.370646645056,2229685.979747364,909612.0975212612,0.38015,100000,0,510972,5334.293767616661,0,0.0,0,0.0,26555,276.6363921077357,0,0.0,29472,304.0922852072241,1868478,0,66993,0,0,0,0,0,56,0.5846121724605908,0,0.0,0,0.0,0,0.0,0.06818,0.1793502564777061,0.3223819301848049,0.02198,0.3236849429446145,0.6763150570553855,24.812723707375604,4.515623012641881,0.331451157538114,0.2062864671560323,0.2243553547901374,0.2379070205157161,11.253526333375945,5.717456781271954,23.348210286215515,12626.037914703014,60.0694100788592,12.888898944463731,20.000732556000617,13.257941198423485,13.921837379971366,0.54394880481837,0.7609489051094891,0.6927881885292447,0.5738255033557047,0.120253164556962,0.7240618101545254,0.9243697478991596,0.89171974522293,0.7376425855513308,0.1492537313432835,0.4820435002529084,0.6820027063599459,0.6201550387596899,0.527448869752422,0.1124497991967871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0046228710462287,0.0069509980009538,0.0089285714285714,0.0112351553603383,0.0134178993555743,0.0156434715258244,0.0175832474410915,0.0197226565294255,0.0217767271462049,0.0237619501398665,0.0258780795632945,0.0280458352602641,0.0301314583955281,0.0321629285898427,0.0342779218364205,0.0362674999741315,0.0383363396985341,0.04042869159752,0.0421841653219509,0.0565752266869789,0.0706914398636568,0.0839989936473992,0.0975596939633428,0.1097913153456998,0.125306553911205,0.1378776471087263,0.1506044610931381,0.1615103766333589,0.1720021005926672,0.1863308578193951,0.198979757260043,0.2114778678371976,0.2226591944417133,0.2323109058927001,0.2424141859976327,0.2522287599179816,0.2619315117742225,0.2706375743836781,0.2791961823237929,0.2871401506399889,0.294175369734352,0.3011486638354252,0.3072030853255402,0.313454395377631,0.319451116613084,0.3250006252657379,0.33041653418124,0.3353795943740772,0.3396579686449282,0.3404730511530285,0.3404372411705625,0.3398148539544321,0.3396701388888888,0.3397082224172033,0.3383907340645854,0.3372371657541855,0.3375572619714596,0.3384884438653042,0.3397440493260683,0.3401224682053697,0.3408440629470672,0.3410658174993146,0.3414370123133823,0.343333413979145,0.3450983481709078,0.3470720202485043,0.3487410986775178,0.3522316043425814,0.3558284662773022,0.3587912847206227,0.3625074240051833,0.3664616173266692,0.3671220117975784,0.3723059317184818,0.3744578313253012,0.3771339075959279,0.3757056240853021,0.3879579664867935,0.3896972080220212,0.0,2.188388755810577,59.863067764078544,199.0726779430593,300.6972382800729,fqhc4_100Compliance_baseline_low_initial_treat_cost,15 -100000,95739,43112,407.4515087895215,6640,68.18537899915394,5224,54.02187196440322,2073,21.26615068049593,77.31652017658898,79.67557287332816,63.31665033110207,65.06171044374727,77.06075632979159,79.42255842504564,63.2218358974151,64.97091948109743,0.255763846797393,253.01444828252784,0.0948144336869702,90.79096264984798,112.09484,78.87620605945912,117083.77985982723,82386.70349539803,310.8852,198.5139808474138,324156.13281943614,206783.67316079527,317.50471,152.69321036163794,328350.4110132757,157011.09253201427,3444.65914,1557.103392879718,3562641.7029632647,1591077.609834777,1262.16873,551.2885171175471,1304335.5267968122,561816.5816621716,2042.0082,851.5918059759898,2096530.1287876412,857805.2126828925,0.38107,100000,0,509522,5321.989993628511,0,0.0,0,0.0,26540,276.63752493759074,0,0.0,29286,302.6039545013004,1865505,0,67027,0,0,0,0,0,57,0.5953686585404067,0,0.0,0,0.0,0,0.0,0.0664,0.1742462014852914,0.3121987951807229,0.02073,0.3135933467163751,0.6864066532836249,24.95085753982292,4.5153669133941845,0.3346094946401225,0.2128637059724349,0.2226263399693721,0.2299004594180704,11.318965358313765,5.711091335558391,21.915608931978635,12629.234314859328,58.99130952248328,13.071267554743129,19.86308816344696,12.88060866417372,13.176345140119466,0.5610643185298622,0.762589928057554,0.7265446224256293,0.586414445399828,0.109075770191507,0.7127578304048893,0.892128279883382,0.8961038961038961,0.70703125,0.1290322580645161,0.5103448275862069,0.7048114434330299,0.6656298600311042,0.5523704520396913,0.1038824763903462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020563000779975,0.0044910331403777,0.0065770109109363,0.0087078451893473,0.0107421875,0.0129142647627971,0.0150020907060467,0.0172278218600328,0.0196419259516773,0.0216534425390325,0.0238495611516692,0.0258040004928738,0.0279705897475448,0.0297079660598072,0.0320178243558269,0.0338795668705571,0.0358370253819717,0.0377477879319108,0.0398856548856548,0.0419236539423237,0.0566825713360966,0.0701743370795923,0.083448695360349,0.096301670925476,0.1082511730901038,0.123614401760027,0.13694618910202,0.148750212910918,0.1598623828705138,0.1708617655894596,0.1838581447208247,0.1961340317762673,0.2079635430261898,0.2195031273236233,0.2302001453200343,0.2408548751829025,0.2515551882419951,0.2615575061895115,0.2702451097260538,0.2789631700776935,0.2869890282857275,0.2947845009125368,0.3020670549794005,0.3082597639382017,0.3151241095957017,0.3206913994546778,0.3265367466559791,0.3322636103151862,0.3381861513353884,0.3431310410394549,0.3432855930262324,0.3428145982986116,0.343312047920434,0.3429279533892778,0.3437667600262201,0.3427084452768779,0.3409209879284909,0.3416482683626058,0.3427767869392235,0.3431354959092866,0.343864667030465,0.3446511443417556,0.3450880552107223,0.3470734828584899,0.3481166903940352,0.3482077542062911,0.3486390667886551,0.3500661334005164,0.3514976796512445,0.3544897796866301,0.3567483682504906,0.3604161109629234,0.3586599241466498,0.3600364824808087,0.3614173970408067,0.3607814934675776,0.3619327861235868,0.3666938442723196,0.3640399556048834,0.3630057803468208,0.0,2.12104880599316,57.69082823583701,198.1039069291566,296.6638289668988,fqhc4_100Compliance_baseline_low_initial_treat_cost,16 -100000,95674,43324,408.3031962706691,6751,69.31872818111503,5240,54.14219119091916,2105,21.62551999498296,77.40264542862671,79.78352919134723,63.35728834693722,65.1122314431825,77.15097884696867,79.53273204581474,63.264951016671525,65.0228106077969,0.2516665816580428,250.79714553248775,0.0923373302656926,89.42083538559586,113.48964,79.83813500204937,118621.19280055189,83448.09979937013,315.04098,201.88024982416363,328669.7639902168,210396.53340926048,325.43222,156.52767742123524,336165.17549177416,160526.1825089913,3442.88152,1561.3276546161517,3560397.955557414,1594092.1719424848,1277.788,558.534061784336,1318930.7962455838,567638.2412186132,2068.20096,857.9308118018073,2126867.9265004075,867287.0452830299,0.38127,100000,0,515862,5391.872400025085,0,0.0,0,0.0,26952,281.048142651086,0,0.0,30050,310.0842444133202,1858838,0,66635,0,0,0,0,0,51,0.5330601835399377,0,0.0,0,0.0,0,0.0,0.06751,0.1770661211215149,0.3118056584209747,0.02105,0.3236701379116239,0.676329862088376,25.04095896349378,4.565978392114039,0.3169847328244274,0.2169847328244274,0.2379770992366412,0.2280534351145038,11.317150747573754,5.718488593596281,22.27330898280067,12684.643185900271,59.21878219512288,13.492975411840032,18.69029506328472,14.067001458870322,12.968510261127811,0.5570610687022901,0.7906772207563765,0.6959662853702588,0.5982357658380112,0.0987447698744769,0.7132132132132132,0.9308641975308642,0.86,0.7083333333333334,0.104602510460251,0.5038382804503583,0.7131147540983607,0.6439333862014275,0.5651720542231491,0.0972803347280334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0046216060080878,0.0068167985392574,0.0092115820155794,0.0113584364608861,0.0136753355192147,0.0156697625577293,0.0177177207826007,0.0198661284553676,0.0221153354142148,0.0239654765931711,0.0263738745675362,0.0285009253547193,0.030824527796659,0.0329959451512056,0.035099686831416,0.0371931205152365,0.0393288158809551,0.041455195939762,0.0435657185737959,0.0579374033680163,0.0720186800414646,0.0855152004869193,0.0978288311032567,0.1097235552836696,0.1256731735703327,0.1389245577357769,0.150867070483409,0.1626468042360836,0.1732817141570238,0.185420906966476,0.198153839494416,0.2099064810787299,0.220940656841737,0.2317456825431745,0.2425077772980393,0.2531239201435721,0.2626600763873287,0.272356526270476,0.2810820699275114,0.2893776700150098,0.2963485932339864,0.3040017948445452,0.3094950413322008,0.31533377796641,0.3211842299552099,0.3264119808985674,0.3304930856264841,0.3356114829074184,0.3414505725944451,0.341284551535176,0.3411054725003429,0.3408392177782769,0.3408416625860529,0.3411320195584531,0.3400513400360602,0.339158074514517,0.3396176880794159,0.341288375978044,0.3417516218721038,0.3422742161909218,0.3437112305783659,0.34455482739909,0.3451722291629484,0.3453431077995433,0.3471330933375072,0.348397042450541,0.3499450117831893,0.3540626099190995,0.3547579298831386,0.3579086637164104,0.3603651700389728,0.3612988817992292,0.3664151231038951,0.3696575148598924,0.3743523316062176,0.3723175965665236,0.373031893419459,0.3768115942028985,0.390068233510235,0.0,2.39782364982796,58.37332253713761,202.6866741113026,289.085213895129,fqhc4_100Compliance_baseline_low_initial_treat_cost,17 -100000,95729,43705,412.66491867668105,6708,68.99685570725694,5172,53.4738689425357,2100,21.56086452381201,77.33907921770925,79.70561876622516,63.32552877917672,65.0752612605607,77.07689923622607,79.44472966541053,63.22856382337497,64.98159458248551,0.262179981483186,260.889100814623,0.0969649558017451,93.6666780751807,112.1923,78.91259972664174,117197.81884277493,82433.32712829106,310.96854,200.0652960685489,324293.484732944,208442.2338774549,319.74985,154.32020464367625,330841.2811164851,158704.43591468688,3429.44211,1561.1165504450582,3547782.605062207,1596100.7118480902,1256.29557,558.4013879317748,1298531.1974427812,569545.4090008144,2067.94596,870.7214626648199,2125808.60554273,878846.0915839884,0.38418,100000,0,509965,5327.1735837624965,0,0.0,0,0.0,26548,276.739546010091,0,0.0,29490,304.86059605762097,1864573,0,66878,0,0,0,0,0,65,0.6790000940153976,0,0.0,0,0.0,0,0.0,0.06708,0.174605653599875,0.3130590339892665,0.021,0.3269940391711609,0.673005960828839,25.035460624107557,4.514948461455526,0.324245939675174,0.2099767981438515,0.2324052590873936,0.2333720030935808,11.074521557302209,5.556700868982455,22.55139682069432,12729.222601138035,58.79940404935507,12.95540435667744,18.95159137549073,13.391347550506222,13.501060766680684,0.5496906419180201,0.785451197053407,0.689922480620155,0.5782029950083195,0.1143330571665285,0.712143928035982,0.9287671232876712,0.8606741573033708,0.7019607843137254,0.1821561338289963,0.493225638353309,0.7128987517337032,0.6282467532467533,0.5448785638859557,0.0948827292110874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019243234483876,0.0042584255992213,0.0064756452807973,0.0085961632254917,0.0107219515172476,0.0131990345150678,0.0153979503390608,0.0175397400688113,0.0195300517392993,0.021968905549069,0.0238444419375019,0.025769807522442,0.0279331907191048,0.0300535751081805,0.0321957966885503,0.0344877509022657,0.0366107594608874,0.0387309692082568,0.0407537202458326,0.0430284529552108,0.0579396900973144,0.0721318336385038,0.0855552177149627,0.0985289014605831,0.1105030053780449,0.1254085615460286,0.1384662719884567,0.1507814829010689,0.1628694778687298,0.1741117895120878,0.1878610225019398,0.199995668511159,0.2117839072955769,0.223194939922523,0.2342700464686061,0.2448115299334811,0.2547964174837513,0.2646270907903919,0.2732814202687976,0.2814688320172372,0.289449620927137,0.2972954003088297,0.3052184609561659,0.3111092481257036,0.3166945799655331,0.3223269666240032,0.3282565781253904,0.3327871351268958,0.3371424139402009,0.3416701824702036,0.3418543669737107,0.3420639942773819,0.3425175199875915,0.3428964319316783,0.3428630958581995,0.3415449748435391,0.3407628166513426,0.3413297793573226,0.3418904551222691,0.3423874067699369,0.3429527551653475,0.3435096344461185,0.3457753718973584,0.3476163768928771,0.3493561198700204,0.3502687751161213,0.3514518666857388,0.3539792278309183,0.3560504616252026,0.3570573207727926,0.3620492141318792,0.3627109563353871,0.3630638081302882,0.3679803334101559,0.3723424270931326,0.3737517831669044,0.3771278242030331,0.3745142155860094,0.3768075639599555,0.3827493261455525,0.0,2.118620485900733,58.81914868699252,199.751423420063,286.5726506557438,fqhc4_100Compliance_baseline_low_initial_treat_cost,18 -100000,95694,43097,405.34411770852927,6641,68.20699312391581,5248,54.35032499425251,2133,21.903149622755866,77.30793472821749,79.68259127141503,63.31631099018998,65.06969416684353,77.03563579039137,79.41033361929166,63.21545570586539,64.97111570699512,0.2722989378261218,272.25765212337194,0.1008552843245951,98.57845984841164,113.15766,79.65084689914032,118249.48272618972,83234.94356923141,313.54752,200.63573036278495,327140.0505778837,209147.7798588777,317.40378,152.95892228391352,328447.40527096787,157396.30678960495,3474.16325,1578.0942515619424,3597925.87832048,1616558.8519304183,1294.04737,564.3391034791865,1337034.098271574,574519.5995013259,2103.28154,886.8346956048426,2161369.406650365,897299.3838344766,0.37946,100000,0,514353,5374.976487554079,0,0.0,0,0.0,26775,279.25470771417224,0,0.0,29315,303.14335277028863,1857421,0,66738,0,0,0,0,0,57,0.5956486300081509,0,0.0,0,0.0,0,0.0,0.06641,0.1750118589574658,0.3211865682879084,0.02133,0.315616516645235,0.684383483354765,24.982403464082264,4.49649482944116,0.3208841463414634,0.2162728658536585,0.2263719512195122,0.2364710365853658,11.010555565267662,5.591395775360336,22.80161912117333,12634.436806759142,59.405100138074346,13.463701815339952,19.103810519286355,13.138966269395487,13.698621534052569,0.5449695121951219,0.7700440528634361,0.6983372921615202,0.5614478114478114,0.1152296535052377,0.7150375939849624,0.9553805774278216,0.8692660550458715,0.6653696498054474,0.14453125,0.4872383869321082,0.6763925729442971,0.6386217948717948,0.5327604726100966,0.1076142131979695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0044890762433626,0.006796579393177,0.0093138051515397,0.0115938491579204,0.01380799152784,0.0159068430014989,0.0183460949464012,0.0204154654562554,0.0227349499953936,0.0250030754090294,0.0274537987679671,0.029567238471348,0.0317090759245905,0.0337952882660695,0.0356356418447414,0.037539373342175,0.0399601333042638,0.0419839387508842,0.043928321988137,0.0585476424258884,0.0726718931535812,0.0860970926755568,0.0985632546594303,0.1103438096342607,0.1259015630618244,0.1385405393935536,0.1503289543722188,0.1616963532039021,0.1728055963863824,0.1852729544573226,0.1981063680138505,0.2102120717781403,0.2218856286704797,0.2321852992957746,0.2434354849431629,0.2536578832825527,0.2632289720677935,0.2713393870601589,0.2786053120058666,0.2862917236107572,0.2936179175735449,0.3005316944355631,0.3067266726672667,0.3135866457398012,0.3181980914287125,0.32435855634421,0.3297022883236817,0.3339177413280347,0.3385287112992855,0.3388228941684665,0.3382895009318699,0.3384771917924368,0.3382297497172356,0.3375689783743475,0.3362676867769738,0.3361352549536809,0.336764487553818,0.3382688905302575,0.3382548168347027,0.3386771659476668,0.3390524662518142,0.3408430538594348,0.3424432966539412,0.3429262394195889,0.3438017397703082,0.3454936854190585,0.3499366687777074,0.3514760147601476,0.3537643436887769,0.3552068473609129,0.3583074117773249,0.3587489649022231,0.358822169120481,0.3625035670122705,0.3601628937597317,0.3618551966937088,0.365015166835187,0.3648208469055374,0.3742447129909365,0.0,1.8236896406004,58.90648510232734,199.70985526983745,296.3147990054567,fqhc4_100Compliance_baseline_low_initial_treat_cost,19 -100000,95713,43132,408.12637781701545,6685,68.77853583107833,5202,53.84848453188177,2078,21.376406548744686,77.38171245272493,79.75453079066914,63.34258245905804,65.09454258843783,77.12646021036933,79.49761193187078,63.25018169334605,65.0032292029289,0.2552522423555956,256.9188587983575,0.0924007657119929,91.31338550892563,113.30088,79.72533132798931,118375.64385193234,83296.24118770628,311.38333,198.9739700027414,324716.76783717994,207272.57530611457,317.89886,152.6519575820212,328486.59011837473,156707.4039633437,3433.8041,1540.4385100794116,3558704.0422931053,1580767.1219687115,1278.13237,552.8186789322804,1323829.6156217025,566092.2305896088,2044.82866,838.5631329810968,2106587.025795869,852873.6586746284,0.38049,100000,0,515004,5380.711084178744,0,0.0,0,0.0,26618,277.53805648135574,0,0.0,29256,302.132416704105,1862500,0,66758,0,0,0,0,0,72,0.7313531077283129,0,0.0,0,0.0,0,0.0,0.06685,0.175694499198402,0.3108451757666417,0.02078,0.316113337149399,0.6838866628506011,24.949432856919746,4.526035503789272,0.3304498269896194,0.2106881968473664,0.2285659361783929,0.2302960399846213,11.18198008683819,5.686063573891604,21.771884931299198,12634.097371496406,58.50098101415972,12.82235360212178,19.525603107895325,13.19497911983856,12.95804518430404,0.5549788542868128,0.7700729927007299,0.6957533449680047,0.5870479394449117,0.1243739565943238,0.7223053892215568,0.9234972677595628,0.8589743589743589,0.7276264591439688,0.1551020408163265,0.4971546818416968,0.6931506849315069,0.6346922462030375,0.5482832618025751,0.1164742917103882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019547075028358,0.0041865604314286,0.0064334131590696,0.0084208601669951,0.0107512663506723,0.0126272912423625,0.0149477440734132,0.0171709747233451,0.0195352831133782,0.0215068072474152,0.0237126190500599,0.0257594891222882,0.0278994673083647,0.0299134734239802,0.0320113928361351,0.0341494179193978,0.0358751825346686,0.0380819956210893,0.039873536202342,0.0416523379289503,0.0568319478674965,0.0710487197202855,0.0844349322254395,0.097309294399798,0.1093697266284171,0.1246444545483383,0.1368207761346035,0.1494049773274008,0.1609809241022793,0.1721541794470303,0.1858691202137516,0.198662236316604,0.2118009112756772,0.222977625725497,0.2327218336192864,0.2432193069854976,0.253498979580457,0.2636278776836825,0.2721054482343999,0.2799931287219422,0.2879212182929087,0.2951287388040504,0.3020525082266045,0.3080943077347205,0.3137004774574479,0.319893500314322,0.3244511165321824,0.3296341075405663,0.3347707289279101,0.3394056114709335,0.3394543546694648,0.3398222307702875,0.3397251023480255,0.3398543934260794,0.3400536240686151,0.3390213376476693,0.3387076398319805,0.3397705513640901,0.3409864524474096,0.3419323826309886,0.3417695473251029,0.3434297561457202,0.3451595389241563,0.3467115830804926,0.3467012263901888,0.3470346904860822,0.3480212506037103,0.349779156094352,0.3508956059333893,0.3548924688516784,0.3590059279525763,0.3619428876434481,0.3646025583911411,0.3679463459759482,0.3692001138627953,0.3691588785046729,0.3766816143497757,0.3740238388820386,0.3785674314493564,0.3867033831628639,0.0,1.851094860457328,59.22510796396994,190.6764352632805,294.5669426820523,fqhc4_100Compliance_baseline_low_initial_treat_cost,20 -100000,95859,43341,408.47494757925705,6792,69.7274121365756,5306,54.78880438978083,2100,21.58378451684245,77.44506122741345,79.72320175683885,63.40474875222951,65.08439664305243,77.18370889732275,79.45951912919837,63.3096261120874,64.99015612334831,0.2613523300907019,263.6826276404776,0.0951226401421081,94.2405197041154,112.50668,79.20404988533868,117366.84088087712,82625.57494375977,310.20586,197.81691350527828,323058.06444882584,205814.04302702748,320.51428,154.27183817381805,330123.32696982025,157731.90264696686,3531.33136,1584.0694555113398,3650921.2697816575,1619799.9122587242,1303.70882,562.0525846823729,1346683.3056885635,573058.5208448203,2073.91982,862.3250984100388,2134592.4534994108,877598.0817537027,0.38241,100000,0,511394,5334.856403676233,0,0.0,0,0.0,26518,276.0512836562034,0,0.0,29604,304.6140685798934,1868717,0,67127,0,0,0,0,0,43,0.448575511949843,0,0.0,0,0.0,0,0.0,0.06792,0.177610418137601,0.3091872791519434,0.021,0.3103737925241495,0.6896262074758505,24.861938392434908,4.536209812881483,0.3098379193366001,0.2176781002638522,0.2344515642668677,0.2380324161326799,11.122470238306486,5.516331658343567,22.473694636045582,12656.215292019882,59.85469888840231,13.591386295236182,18.50563901059517,13.811442559801277,13.946231022769677,0.5452318130418394,0.793073593073593,0.6745742092457421,0.5795819935691319,0.1163895486935867,0.7102661596958175,0.907859078590786,0.8491484184914841,0.7636363636363637,0.1538461538461538,0.4908544224505136,0.7391857506361323,0.616382806163828,0.5273477812177503,0.106679960119641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022470090487661,0.0045280037277525,0.0066110339373168,0.0088404855669684,0.010892759160282,0.0130022077301075,0.0151959586083272,0.017477846778223,0.0199021740240378,0.0219529652351738,0.0240835551914806,0.0260194453560879,0.0283985867466414,0.030632187454998,0.0326289652898692,0.0347432959682913,0.0369297909966183,0.038722980954552,0.0409127243659617,0.0425757717638979,0.0572221005766002,0.0705249412379211,0.0843148956664677,0.0975005771127573,0.1095061754371199,0.1247361533265788,0.1375692187152583,0.1493514082038097,0.1609639068081249,0.1714680136121396,0.1852150364304597,0.1977130887338847,0.2100601350324555,0.220536221125715,0.2304296257248286,0.2417558104804363,0.252209282888505,0.2624897486883938,0.2717454129220168,0.2801711318035187,0.2877027480086475,0.2951245177130831,0.3024678213136475,0.3089833836134655,0.3154170156464319,0.3212847448860207,0.327022526075905,0.3322556831199246,0.3378858164666857,0.3427798310454065,0.3427374828301328,0.3424248676157073,0.341872766663853,0.3409985438502905,0.3401186063750926,0.3388064944784714,0.3382489934475408,0.3391021022987753,0.3397700521988332,0.3406415302687588,0.3407120250201322,0.3424757761518687,0.3445427481236111,0.3453158554044381,0.3460234241600731,0.3477185123450359,0.3484366117111995,0.3524911422569216,0.3552223190932868,0.3586414377325627,0.359118291347207,0.3616226314384841,0.3640500568828214,0.3640769230769231,0.368830675778284,0.3726618705035971,0.3708876474239603,0.3735440931780366,0.3775596072931276,0.3864085341762149,0.0,2.2325299007083963,58.02209337353692,202.69731415014616,300.5227776472529,fqhc4_100Compliance_baseline_low_initial_treat_cost,21 -100000,95673,42829,404.44012417296415,6709,68.79683923363959,5233,54.00687759346942,2055,21.04041892696999,77.29747507811412,79.70172472069613,63.28577397120039,65.06601868786198,77.03983268076176,79.44612985910524,63.190984551586176,64.97491048007072,0.257642397352356,255.5948615908932,0.0947894196142158,91.10820779126529,112.45234,79.11990804691631,117538.21872419596,82698.26183658534,308.57332,197.16415161430228,321805.775924242,205358.7878027196,316.10389,152.2190743030383,326002.5189970002,155740.04191310774,3444.57091,1556.7748837867375,3554694.438347287,1581972.7716166987,1269.33108,558.1187826592316,1306994.084015344,563781.5847594009,2016.05144,844.5044019523984,2065181.6081862173,846813.3211186668,0.37891,100000,0,511147,5342.64630564527,0,0.0,0,0.0,26424,275.4382114076072,0,0.0,29234,301.1194380859804,1862620,0,66893,0,0,0,0,0,53,0.5539702946494831,0,0.0,2,0.0209045394207352,0,0.0,0.06709,0.1770605156897416,0.30630496348189,0.02055,0.329153605015674,0.670846394984326,25.06841697586133,4.433340453949626,0.324479266195299,0.2176571756162812,0.2339002484234664,0.2239633097649531,11.092707051927343,5.751533454619755,22.01396190276825,12583.789916870808,59.15340244690388,13.480016371411049,19.223757887812315,13.621516884146468,12.828111303534037,0.5574240397477547,0.7910447761194029,0.6908127208480566,0.5776143790849673,0.1160409556313993,0.7262269938650306,0.934065934065934,0.8608490566037735,0.7664233576642335,0.1322314049586777,0.5013998472893866,0.7238709677419355,0.6342229199372057,0.5231578947368422,0.1118279569892473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0045746860609011,0.0070663485456114,0.0097144599126105,0.0117085774739583,0.0140357310191692,0.0161356125821059,0.0181879455076489,0.0204035713920451,0.0225496922714565,0.0248120377873283,0.0268948655256723,0.0289191580420155,0.0310886702045442,0.0330191114369198,0.0349100613382707,0.0369191861610057,0.0387419006479481,0.0405759707020683,0.0424700364773319,0.0566820228357725,0.070599319549856,0.0838737434153917,0.0959984852310022,0.10792194092827,0.1236101266358452,0.1364779807457569,0.1486948464807182,0.1603259126194906,0.1712650835229956,0.1844826656602146,0.1968460412940985,0.2086668627002537,0.2193935676102006,0.2296382833337007,0.2400026622591487,0.2503659831256635,0.2600919084519733,0.2696856431987821,0.2782241887229335,0.2859377353462559,0.2925594854552057,0.2993731707606081,0.3068259590562526,0.312874251497006,0.3187262310465748,0.3239041027184271,0.3286384976525822,0.3337750064951935,0.3381120686231683,0.3381739095194996,0.3386419514351225,0.3390813540620446,0.3386121383510985,0.3387435412540762,0.3383496709466611,0.3372938548548073,0.3381645683896065,0.3386673035586339,0.3391402029135388,0.3401099723198922,0.3421680569524147,0.3440207609560085,0.3442264336257505,0.3457335670885468,0.3475747871592595,0.3488259570229116,0.3501177948798492,0.3535708018950693,0.3559268224929561,0.358358038768529,0.3618728741496598,0.3630231971759959,0.3610646387832699,0.3593367250800829,0.3627183081858144,0.366147199506249,0.3683459106669386,0.3723698781838316,0.3793901968351987,0.0,2.5252576468437384,57.0249013816784,202.95896213469052,293.1748210779742,fqhc4_100Compliance_baseline_low_initial_treat_cost,22 -100000,95834,43094,404.7415322328192,6741,69.15082329862052,5285,54.61527224158441,2194,22.51810422188367,77.32864418348662,79.63965202234914,63.32870225298407,65.03861133821937,77.06131302043393,79.37304127284655,63.23121890477982,64.94438325904723,0.2673311630526882,266.6107495025898,0.0974833482042427,94.22807917214016,112.19868,78.96845605400209,117076.06903604147,82401.29396039202,308.78699,197.80791349131104,321675.814429117,205873.17157335975,319.90648,154.8008376169971,331072.7194941252,159395.55593306528,3512.9006,1594.8670994537645,3630087.568086483,1628761.7033653122,1281.30495,567.4297371405844,1316902.4876348686,572087.6802829014,2156.56846,892.1663389947345,2214022.9354926227,899029.3530881034,0.37981,100000,0,509994,5321.639501638249,0,0.0,0,0.0,26442,275.34069328213366,0,0.0,29439,304.41179539620595,1863253,0,66959,0,0,0,0,0,64,0.6678214412421478,0,0.0,0,0.0,0,0.0,0.06741,0.1774834785813959,0.3254709983681946,0.02194,0.3203499858876658,0.6796500141123342,25.06065907033136,4.499356982936302,0.3224219489120151,0.2158940397350993,0.2263008514664143,0.2353831598864711,11.07016309893002,5.513431883721533,23.39943097658324,12704.227390304382,60.01795866830068,13.631917704251716,19.2875866140845,13.383113172244974,13.715341177719486,0.5449385052034059,0.7572304995617879,0.6995305164319249,0.5769230769230769,0.107717041800643,0.7249451353328457,0.9037037037037036,0.8738938053097345,0.7307692307692307,0.16,0.4821337417049515,0.6766304347826086,0.6365814696485623,0.5341880341880342,0.0945674044265593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027345925963437,0.0049568179053643,0.0073555521736924,0.00952787258248,0.0119991864958307,0.0143351659539808,0.0166853531750076,0.0189208772592282,0.0211233061499785,0.02336147352264,0.0255950490281463,0.0277601034461525,0.029906273123407,0.0317904793279525,0.0339898937815819,0.0360647947271637,0.0381240168888152,0.0400941439946914,0.0420678694961204,0.044007285974499,0.0585050901201602,0.0720476763029954,0.0858532392801366,0.0988661083029456,0.1112785917571413,0.1263755430818507,0.1389548693586698,0.1511008012598827,0.1625569996048739,0.1730325997234222,0.186019467654406,0.1995629692131282,0.2115832046793798,0.2220461425807932,0.2322982322982323,0.2427478041270228,0.2529532614278377,0.2623964150603495,0.2712157005269853,0.2796178636144689,0.2866815847140256,0.2946419147913173,0.3017734621685145,0.3088814683130735,0.3145545048498789,0.3203400705806865,0.3253516535867412,0.3301121876593574,0.3350986500519211,0.3400492115567785,0.3402593197242198,0.3403022148623473,0.3405326657331579,0.3405691883258313,0.3403810859606977,0.3401411808129431,0.3389248406022928,0.3399222507741978,0.340837884572583,0.3415994707764924,0.3437552845681216,0.3450176454260676,0.3455854569881187,0.3463659597363583,0.3479940134215227,0.3502478168515459,0.3503962917393917,0.3537228166524634,0.3556102708406612,0.3565238133100103,0.3594263792473511,0.3612861873731439,0.3643342003425744,0.3631121703698008,0.3644806671721001,0.3699928040297433,0.3733885819521179,0.3721451876019576,0.3707988980716253,0.37172979304959,0.0,2.0393573058565697,60.43721837554308,204.06798803498936,291.07044420356505,fqhc4_100Compliance_baseline_low_initial_treat_cost,23 -100000,95751,43522,410.3246963478188,6736,69.22120917797203,5237,54.1613142421489,2142,22.04676713559127,77.35098256499538,79.69619986472576,63.33757887846742,65.0696133043357,77.08775314269067,79.43122150822053,63.242300889791984,64.97577204216957,0.263229422304704,264.9783565052246,0.0952779886754342,93.84126216613708,113.2109,79.67924952321383,118234.6920658792,83215.05730824098,312.72435,200.33160448287373,326070.89221000305,208690.66065406488,322.80009,155.5674127569397,333182.327077524,159556.34140280331,3452.64617,1551.8346772224045,3575463.880272791,1590302.8973299558,1272.63474,553.0234587341367,1317077.482219507,565533.0792724217,2114.03824,870.6606447038645,2179054.004657915,885296.538347808,0.38275,100000,0,514595,5374.304184812691,0,0.0,0,0.0,26743,278.74382512976365,0,0.0,29722,306.4302200499212,1857715,0,66744,0,0,0,0,0,44,0.4595252268905807,0,0.0,1,0.0104437551566041,0,0.0,0.06736,0.1759895493141737,0.3179928741092636,0.02142,0.3173348390739695,0.6826651609260305,25.14563149088496,4.619839462765027,0.3314874928394118,0.2056520908917319,0.2289478709184647,0.2339125453503914,11.283463326614518,5.544950772182788,22.804053226162868,12743.246533958409,59.14862165275604,12.681706936571617,19.66743628310695,13.269622960755823,13.52985547232165,0.5440137483291961,0.7715877437325905,0.690668202764977,0.5554628857381151,0.1248979591836734,0.6928353658536586,0.9090909090909092,0.8646788990825688,0.6895161290322581,0.1485507246376811,0.4942675159235669,0.7048275862068966,0.6323076923076923,0.5205047318611987,0.1180189673340358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.004844872847427,0.0071027771858796,0.0096591370764605,0.0117029821760836,0.0140077979456587,0.0162893344614224,0.0186256799648918,0.0209119062950357,0.0230377959041644,0.0249195317465198,0.0270067747895709,0.0290957692900837,0.031222003686503,0.0332174505090935,0.0350070282784852,0.0371306094555695,0.0393172149009027,0.0414093527124529,0.0433890324193682,0.0582279009561985,0.0718447617553219,0.085334144142255,0.0982789616998013,0.1111169674481362,0.1266648344678872,0.1400362683860568,0.1526854029434612,0.1637344442664103,0.17514936339551,0.1886579060749676,0.2004501823454933,0.2129853181076672,0.224004200899255,0.2334936550039071,0.2448500160677282,0.2554182159246977,0.2647574912264915,0.2739682503659491,0.2820445218826658,0.2893549059093118,0.2959369953425235,0.3032991471190129,0.3096843744385218,0.3158041686393046,0.3213252403875749,0.3260673820064531,0.3314173078145864,0.336770115538055,0.3414598713664998,0.3420839737885284,0.3418259023354564,0.3411847772364612,0.3408428652198495,0.3409104450932491,0.3408557085616912,0.3399183751250575,0.3410832276030253,0.3415144140129572,0.3427324125098404,0.3441939903530339,0.3444031032298923,0.3448913157618397,0.3455030368228781,0.3468124563473905,0.3484697881245095,0.3504624871531346,0.3527166025115164,0.3551513448978158,0.3576482747654635,0.3614755222379668,0.3640825908339113,0.3640850417615793,0.3635114503816793,0.3650269096402606,0.3647889008491807,0.3644625509244751,0.3660292000822537,0.3695163104611924,0.3634585289514867,0.0,2.108582571392558,57.93810429210741,199.44595375089224,295.9775237082143,fqhc4_100Compliance_baseline_low_initial_treat_cost,24 -100000,95838,42884,403.1699325945867,6710,68.9601202028423,5269,54.352135895991154,2136,21.89110791126693,77.51248185563044,79.80055462168161,63.42745123530996,65.1117257161246,77.25316740768237,79.54208565207676,63.332775666042586,65.02029075947554,0.2593144479480713,258.4689696048485,0.0946755692673733,91.43495664905288,112.81798,79.26600600822495,117716.45902460402,82707.44884301107,310.17282,198.33027205481295,323011.3524906614,206312.59884080736,312.78133,150.4543426389274,323118.71074104216,154447.08248269933,3491.35131,1565.9473387650603,3603010.830776936,1594080.7080379715,1263.10611,540.7842968608811,1305583.5263674117,551932.1991825372,2101.8721,864.0897430550114,2155682.380684071,869307.857226566,0.38001,100000,0,512809,5350.748137482001,0,0.0,0,0.0,26444,275.27702998810497,0,0.0,28950,298.71241052609616,1873107,0,67122,0,0,0,0,0,67,0.6990963918278763,0,0.0,0,0.0,0,0.0,0.0671,0.1765743006762979,0.3183308494783904,0.02136,0.3177371331348362,0.6822628668651638,25.16152843425767,4.532366958940798,0.3243499715315999,0.2064907952173088,0.2368570886316189,0.2323021446194723,11.08868894696488,5.504380416885664,22.447507557342604,12593.095996987771,59.10146835657916,12.879063347069089,19.23456397815064,13.719428662719023,13.26841236864042,0.5416587587777567,0.7720588235294118,0.6881217086015213,0.561698717948718,0.1119281045751634,0.7084282460136674,0.9168831168831169,0.8588235294117647,0.6940298507462687,0.1213389121338912,0.486082995951417,0.6927453769559033,0.631619937694704,0.5255102040816326,0.1096446700507614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022463724121182,0.0045877598971045,0.0067606604567246,0.0088583576016478,0.0110424835937341,0.0133835045255771,0.0155769583189102,0.0176721324849078,0.0197992505080003,0.0218324982104509,0.0242179099892478,0.0263565414474561,0.0286982522117074,0.0307826892399526,0.0331446715945525,0.0352107584411828,0.0374072579393412,0.0395118815576659,0.0414593353624964,0.043310324723324,0.0575591339535271,0.0712485753421792,0.0844580434235895,0.097530747497663,0.1093491697465542,0.1241986079278403,0.1366483324325183,0.1486959202985614,0.1602005975245412,0.1706606703073134,0.1846519429689684,0.1976324714319659,0.2100635075720566,0.2198711649743421,0.2304980119065925,0.2410513861090531,0.2508913053166362,0.2600222404439102,0.2693061233734612,0.2783447424659725,0.2862152092921323,0.2928423309023975,0.2993171606146734,0.3055363156511977,0.311067801329153,0.3170288297362699,0.3223855659048117,0.3277886868942801,0.3335697338559934,0.3380734788203471,0.3384235858795769,0.3387304457412126,0.3392241500126132,0.3396036326477742,0.3401654506977639,0.3396652821891033,0.3386726965101753,0.3400862139614168,0.3406421032889465,0.3409917945058865,0.3421037847150696,0.3437784012328604,0.3453064131026683,0.3451062689766029,0.3456899440003829,0.3477629737155892,0.3483534546278977,0.3518974710779881,0.3524071239738416,0.3550207729089911,0.3576019055323356,0.361039777789424,0.361892901618929,0.3592489254204057,0.3611627043090639,0.3629258049463369,0.3681120144534778,0.3698195518540551,0.3806556488756434,0.3822975517890772,0.0,2.383304722780499,57.71877166656647,197.10347974181627,298.2692033321458,fqhc4_100Compliance_baseline_low_initial_treat_cost,25 -100000,95757,43161,406.1217456687239,6703,68.94535125369424,5268,54.6487463057531,2142,22.118487421285128,77.31288813594676,79.67069832960341,63.318020272784125,65.06165005072663,77.0502954375647,79.40393046734809,63.222164871626624,64.96580257373327,0.2625926983820648,266.7678622553211,0.0958554011575003,95.84747699335594,112.04402,78.87425135376286,117008.69910293764,82369.17546890865,308.27551,197.03372066303723,321567.2587904801,205396.33725266796,320.32347,154.12342234934675,331906.7953256681,158975.90557614472,3486.28417,1572.5412914353,3619519.4920475786,1620978.520040623,1304.65071,569.6007231356234,1353547.573545537,585927.465496646,2111.61026,872.4828999187051,2182911.202314191,892603.2404812134,0.38002,100000,0,509291,5318.577231951711,0,0.0,0,0.0,26335,274.63266393057427,0,0.0,29531,305.80531971552995,1867165,0,67070,0,0,0,0,0,58,0.6056998443977986,0,0.0,1,0.0104431007654792,0,0.0,0.06703,0.1763854533971896,0.3195584066835745,0.02142,0.3164305949008498,0.6835694050991501,25.07116634318573,4.4807159561932,0.3234624145785877,0.2188686408504176,0.2207668944570994,0.2369020501138952,11.212626663600934,5.71807316451106,22.746860821270285,12648.290938299671,59.67162533537671,13.67588392688227,19.212498485640847,13.038606695813488,13.744636227040113,0.5559984813971146,0.7840416305290546,0.6942488262910798,0.5786758383490972,0.1354166666666666,0.7172619047619048,0.9090909090909092,0.8541666666666666,0.7048611111111112,0.1757322175732217,0.5007645259938838,0.7213541666666666,0.639937106918239,0.5371428571428571,0.1258671952428146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045510293029525,0.0070110289268357,0.00920245398773,0.0114827961473133,0.0135947046843177,0.0161109411644743,0.018100887178283,0.0204367472958881,0.0227316943303877,0.0251202181870379,0.0272834625455665,0.0295475815823845,0.0319307823041664,0.0339114196989549,0.0361210442547386,0.0379075763380515,0.0397696617555509,0.0419682222776807,0.0438519722447959,0.0584931463946799,0.0717095626700146,0.08482929284456,0.0981191980571705,0.1101938830376063,0.1257218402961396,0.1384659458656509,0.1505023841961852,0.1615787224951933,0.1730398044093677,0.1866231682763224,0.1986956944940138,0.2101257013614023,0.2209984030800866,0.2313710387323943,0.241697130829733,0.2520230826757152,0.2619942391646789,0.270893666314606,0.2795636080264952,0.2871665431641348,0.2942875856745187,0.3010388811321201,0.307920068088371,0.3139749665816017,0.3196740510620461,0.3249574105621806,0.329437973394437,0.3347417536128572,0.3394013907617461,0.3400221310590521,0.3392773475181214,0.3398732479850946,0.3399194599762435,0.3389249235815999,0.3382386861650597,0.3375501241168608,0.3383206862421643,0.3387980018196487,0.3386002082809638,0.3397370701020831,0.3404716455897558,0.3421074780120355,0.3435450543527086,0.3449076874682411,0.3453658280647446,0.3465545446718135,0.3472535144226192,0.3498283246610739,0.3530378985361941,0.3542355751561926,0.3568991256131371,0.3590871943169674,0.3628663003663003,0.3657153657153657,0.3649339835851076,0.3657931462242208,0.3743370053039576,0.3675524475524475,0.3658536585365853,0.0,1.4567113866284738,60.04176116951922,199.75486542435613,296.75236571874336,fqhc4_100Compliance_baseline_low_initial_treat_cost,26 -100000,95790,43139,407.2554546403591,6834,70.21609771374882,5352,55.38156383756133,2152,22.17350454118384,77.37208356525132,79.7109009475375,63.35007434272507,65.07937156786312,77.11170963434168,79.44775240658952,63.25551191705233,64.98558446084157,0.2603739309096369,263.1485409479808,0.0945624256727413,93.78710702155502,111.9217,78.70117599888265,116840.69318300448,82160.11692126804,308.88678,197.09042262742008,321979.5072554546,205269.6655469465,316.31144,152.0113206710174,326881.79350662907,156116.5071382511,3512.28951,1588.6497086639836,3637437.895396179,1629253.532377059,1269.43242,555.1903233370384,1314430.7130180602,568815.765166836,2113.62366,873.881499008945,2180647.18655392,891445.9805618085,0.38237,100000,0,508735,5310.940599227476,0,0.0,0,0.0,26400,275.1017851550266,0,0.0,29238,301.9417475728156,1872145,0,67228,0,0,0,0,0,60,0.615930681699551,0,0.0,0,0.0,0,0.0,0.06834,0.1787274106232183,0.3148961076968101,0.02152,0.3207810320781032,0.6792189679218968,25.09884795771776,4.464786587063899,0.3221225710014948,0.2159940209267563,0.2344917787742899,0.2273916292974589,11.064606664350237,5.621697354780801,22.903842476567256,12670.272817157587,60.50334821969796,13.579730572397157,19.381057113551456,14.191515503297495,13.351045030451848,0.5592301943198804,0.7673010380622838,0.7088167053364269,0.5832669322709163,0.1248972884141331,0.7276064610866373,0.9276139410187668,0.8863636363636364,0.7233333333333334,0.1526104417670682,0.5017543859649123,0.6909323116219668,0.6479750778816199,0.5392670157068062,0.1177685950413223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0044503467012692,0.0066773558482677,0.0091831655509391,0.0113800467812468,0.0134081283596676,0.0156254777849127,0.0174296385492989,0.0194980379332897,0.0215842800122812,0.0237956159498262,0.0257289175792033,0.0279076938890887,0.0301379736408566,0.0321632602553261,0.0341375213101203,0.0361863555909782,0.0381312869438971,0.0403661526952329,0.0422678909779915,0.0572767209625076,0.0710348794645191,0.0852839128292749,0.0981475838735776,0.1102027916776402,0.1259731891023948,0.138668418654431,0.1507995576914898,0.1623934359762278,0.1733047670058918,0.1864908185329016,0.1994682000951186,0.2112189343968355,0.2220570391666029,0.2325041787630861,0.2439075700034323,0.2543524084627996,0.2636110236928471,0.2722759933812362,0.2809098089492782,0.2888809231978909,0.2963833169682517,0.3033888488315741,0.3094522598024543,0.3150505405962941,0.3207870079661163,0.3260904937730771,0.3314431744497985,0.336403979764785,0.3407136828779407,0.3401307470877835,0.3398710776969914,0.340339097807995,0.3405262243834664,0.3401422280409426,0.3400542786611263,0.3388653763849921,0.3395783003829151,0.3409492141302298,0.3416724825969471,0.3424351612055699,0.3427462473761337,0.3445032333921223,0.3451922215252263,0.3463124141090243,0.3473821989528796,0.3480542571190961,0.351223837117254,0.3519328442437923,0.355052766229613,0.3561950951683748,0.357188566552901,0.358094877139789,0.3591333639565151,0.3605410006620637,0.3653206650831354,0.3699236641221374,0.368816778789078,0.3688058489033306,0.3642184557438794,0.0,1.8095973699303216,60.41628869085933,199.98349547342312,304.96273842707427,fqhc4_100Compliance_baseline_low_initial_treat_cost,27 -100000,95656,42830,403.33068495442,6653,68.43271723676507,5168,53.54603997658276,2009,20.65735552396086,77.25911226955019,79.65460552298131,63.27736057920528,65.04537014112819,77.01615996308222,79.4112983384152,63.18932502840626,64.95942150235649,0.2429523064679699,243.30718456612036,0.0880355507990202,85.948638771697,111.92896,78.72362499300026,117011.95952161914,82298.67963640572,304.78752,194.76365515101756,318152.12846031616,203145.7266707053,316.13956,152.04463678429124,327315.53692397755,156523.92125672422,3393.11294,1530.9116757818745,3516046.499958184,1570167.392953004,1257.53221,550.6289373676617,1301916.3356193025,563493.4179368193,1970.766,815.5296220887071,2028350.3805302333,826227.8823746165,0.37869,100000,0,508768,5318.725432800869,0,0.0,0,0.0,26086,272.2045663628,0,0.0,29138,301.54930166429705,1865826,0,67051,0,0,0,0,0,62,0.6377017646566864,0,0.0,1,0.0104541272894538,0,0.0,0.06653,0.1756845968998389,0.301969036524876,0.02009,0.3276059564719358,0.6723940435280642,25.02051110438441,4.47100016688084,0.3353328173374613,0.2155572755417956,0.227360681114551,0.2217492260061919,11.31796360860504,5.836316255890595,21.48541562395264,12653.262409783272,58.70328560468233,13.23543385820177,19.79738268050562,13.068408526507934,12.602060539467004,0.5661764705882353,0.7827648114901257,0.7184073860357761,0.5625531914893617,0.1291448516579406,0.7417624521072796,0.9261213720316622,0.8729792147806005,0.7471698113207547,0.1798245614035087,0.5068599534040901,0.708843537414966,0.666923076923077,0.5087912087912088,0.116557734204793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023398802710614,0.0047455358500897,0.0068509834967419,0.0090940497480084,0.0114247927158044,0.0136271973601124,0.015620857719681,0.0179364414998417,0.0202921663037589,0.0222531578193133,0.0244625116622409,0.0267581193334086,0.0290460272563641,0.031141832866326,0.0333230134158926,0.0355484784878971,0.0375012949342173,0.0395063266174654,0.0413351223723489,0.0434501594979463,0.0582573984283564,0.0721714267760078,0.0859557935632908,0.098364798416392,0.1100328408958911,0.1257585224565008,0.1392293476644646,0.1511622951867555,0.1624167388352524,0.1722427417969421,0.1861498473916372,0.1986587796845207,0.2105876459313469,0.2208115154569156,0.2306157103162351,0.2412204247948749,0.251210863656193,0.2610813553588543,0.270174082117639,0.2786495428020034,0.2866854603881715,0.2945846428068859,0.3018270257444537,0.3088001923539312,0.3146744032961943,0.3203781512605042,0.3259117949747734,0.3306458814374465,0.3352848779094673,0.3398470575783234,0.3396753807929135,0.3401411270834196,0.3400690553008433,0.3397828204270907,0.339408697730702,0.3379900301557019,0.337037037037037,0.3388394329047148,0.3392222508369817,0.3400444619742551,0.3416776377656573,0.3439674828987806,0.343585754530547,0.34427475795452,0.3448964372489114,0.3456928448590338,0.3473666220411883,0.3493463537564971,0.3523430903461863,0.3552699637926232,0.3599068025035405,0.3604688332445391,0.3632459741079886,0.3658629345097741,0.3666884877957542,0.3695652173913043,0.3749808605114071,0.3764895980609978,0.3772954924874791,0.3746588693957115,0.0,1.8159686326914173,58.07380170687784,201.73060900854037,287.1836888417501,fqhc4_100Compliance_baseline_low_initial_treat_cost,28 -100000,95618,43027,406.8794578426656,6525,66.99575393754314,5054,52.2914095672363,2084,21.44993620448033,77.28554750318864,79.71749937089626,63.27381344368565,65.07192426664412,77.02824522118169,79.46040755230672,63.17933740381048,64.98035960664207,0.2573022820069468,257.09181858954366,0.0944760398751682,91.56466000204944,111.19636,78.25384820020943,116292.28806291702,81840.08052898977,305.9091,196.4969754946597,319353.51084523834,204927.22656263443,313.6948,151.28305363102638,324552.6469911523,155515.04813917252,3360.1069,1522.3098210707906,3479068.5749545065,1557048.579839353,1298.01284,567.2330695789077,1343503.147942856,579241.1084451586,2053.32726,855.5150322534588,2115343.052563325,865580.3588352411,0.38012,100000,0,505438,5286.013093768956,0,0.0,0,0.0,26170,273.0971156058483,0,0.0,28917,298.9081553682361,1868414,0,67043,0,0,0,0,0,66,0.6902466062875191,0,0.0,0,0.0,0,0.0,0.06525,0.1716563190571398,0.3193869731800766,0.02084,0.3273974602247847,0.6726025397752153,24.85040861159023,4.569127288049293,0.3128215275029679,0.2176493866244558,0.2320933913731697,0.2374356944994064,11.172492951740317,5.505471420753166,22.19887527291356,12587.885455499892,57.27143760782042,12.988527808660615,17.956461262997305,13.010712845093014,13.315735691069488,0.5591610605461022,0.7727272727272727,0.704617330803289,0.5993179880647911,0.1325,0.7069767441860465,0.895774647887324,0.8418491484184915,0.7418181818181818,0.1767068273092369,0.5085015940488842,0.7140939597315437,0.6564102564102564,0.5556792873051225,0.120925341745531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024827725982975,0.0045542606173102,0.0070868699995938,0.0095339736748488,0.011750701989989,0.0139045930996546,0.0162703634564576,0.0182964203988231,0.0200979840648044,0.0224186313266831,0.0245381151198695,0.0265618577887381,0.0285226091342343,0.030367690261929,0.0324635765692277,0.0344128507742115,0.0361458268565151,0.0381767387759764,0.0401153289685968,0.0420991144165475,0.0574627333737534,0.0714390509725016,0.0843412742615146,0.0970447242269399,0.1097214446428005,0.1250185346014531,0.1374040934305328,0.1489094049167395,0.1602910491680488,0.1718862471663855,0.1849793927885549,0.1967541900652631,0.2090575248722335,0.2208721376136737,0.2311728973508108,0.2420008212823102,0.2524034162046145,0.2612424768388071,0.2703903630888118,0.2784400935393645,0.2856712719018888,0.2925903804939746,0.2992790741794726,0.305799416335403,0.3136481501771301,0.3185202563374368,0.3235201965133912,0.3288764259766745,0.33364905542869,0.3386231501057082,0.3388416384736693,0.3383289982522053,0.3378136327094763,0.3370131373343364,0.3373388260138903,0.3365207514734774,0.3351161757237176,0.3365229421258934,0.3380703706874411,0.3392959564095211,0.3402296258714321,0.3406854495416477,0.3422673477538837,0.3444606250700123,0.3454142901836209,0.3457250039076747,0.3468645175962249,0.3486443180747117,0.3513013100436681,0.3529877952131875,0.3563454089769879,0.3611480201966516,0.3653785538674904,0.3642998327504941,0.3639688642971021,0.3662502946028753,0.3641636141636141,0.3689300826113238,0.370722433460076,0.3778526000748223,0.0,2.154033933635427,57.00209568623813,190.3876206955136,285.8633764350768,fqhc4_100Compliance_baseline_low_initial_treat_cost,29 -100000,95800,43058,405.7202505219207,6766,69.23799582463465,5264,54.26931106471817,2149,22.01461377870564,77.35864855579545,79.66468824626216,63.35358995694328,65.05468896431799,77.09546104535738,79.40236091341185,63.25665990116969,64.9611350237387,0.2631875104380725,262.32733285030463,0.0969300557735834,93.5539405792838,113.30572,79.7022538987971,118273.19415448852,83196.50720124958,310.7351,198.73366771565537,323675.33402922755,206763.60930652963,318.07139,153.84316369426017,327436.54488517746,157137.55802363026,3487.23028,1573.442371785355,3598079.8643006263,1600682.4682775077,1236.60202,541.1160591372898,1274041.4300626304,548169.835989863,2117.18476,876.7661579491927,2170785.2192066805,880796.3411221962,0.38026,100000,0,515026,5376.054279749478,0,0.0,0,0.0,26549,276.40918580375785,0,0.0,29394,302.3173277661796,1860741,0,66825,0,0,0,0,0,64,0.6680584551148225,0,0.0,0,0.0,0,0.0,0.06766,0.177930889391469,0.3176174992610109,0.02149,0.3252420373228567,0.6747579626771433,24.88834334948676,4.522945684110176,0.3246580547112462,0.2180851063829787,0.2234042553191489,0.2338525835866261,11.347379667741668,5.7422615305871085,22.70413252645171,12650.061325157934,59.43062084430458,13.566204819739117,19.352511196828072,13.03879671781616,13.47310810992123,0.541983282674772,0.7804878048780488,0.6840257460503218,0.5714285714285714,0.0942323314378554,0.7181751287711553,0.935,0.8493449781659389,0.7065637065637066,0.1239669421487603,0.4806658130601792,0.6978609625668449,0.6235011990407674,0.5332606324972737,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022771896443535,0.0045174163619605,0.0069547938400397,0.0092037301998031,0.0115924654054822,0.0136310462336605,0.0157682434910157,0.0177185233543806,0.0196146537809288,0.0219214795720043,0.0241316794870481,0.0264224098140379,0.0285511743070252,0.030789178509318,0.0327978719016785,0.0348780764900901,0.0369385495669808,0.0388861819802821,0.0408209900907825,0.0429224314729795,0.0572120099317712,0.0717004014720642,0.0851440730375355,0.0974922750299539,0.1101145621449574,0.1260079686327559,0.1383602455496771,0.1501154243039967,0.1614435961774598,0.1726711271230056,0.1861957575104985,0.1993335713435677,0.2111404739377725,0.2220143743231269,0.2329931411082119,0.2433136409483379,0.2539873876890451,0.2629476692507623,0.2723259376950576,0.2808758321207191,0.288589749525441,0.2958448948052404,0.3021223174949073,0.3081434396737826,0.3142110063849194,0.3195169189395902,0.3243774492006059,0.3291163406345853,0.3347629475102686,0.3400287891393632,0.3401816026297354,0.3402254862822295,0.3395814556106354,0.3394244936873429,0.3391978840067165,0.3386817729464901,0.3374475164382476,0.3382500452205942,0.3384133289953595,0.3391503771522763,0.3406023235703275,0.3422138464590359,0.3434196672983786,0.343380654421494,0.3445171256849067,0.3451079117824456,0.3461847159318924,0.3479761829353265,0.3511755347357256,0.3528776114624189,0.3552932564736023,0.3600707281787494,0.3605278183086975,0.3610083256244218,0.3631638631638632,0.3653092722307966,0.3660907127429805,0.367827868852459,0.3694609088343212,0.3641779189833201,0.0,2.5655707682165616,59.46918781365945,196.20676462322305,295.5549687011584,fqhc4_100Compliance_baseline_low_initial_treat_cost,30 -100000,95860,43105,405.69580638431046,6747,69.09034007928229,5314,54.84039223868141,2160,22.146880867932403,77.41454581429173,79.70416027240209,63.37712166936033,65.06840494793711,77.1429291152977,79.43244673617703,63.27593449305776,64.97001373979121,0.2716166989940234,271.71353622506444,0.1011871763025737,98.3912081458982,113.04282,79.53478861393783,117924.91132902147,82969.73567070502,310.43325,198.30924356211617,323272.87711245567,206306.4610495682,320.5027,154.65829376482696,330525.24514917587,158421.2816393482,3527.4894,1594.2799909374426,3641056.467765492,1624355.6446249145,1327.01546,580.7008606442773,1365780.3359065305,587260.2179144943,2131.46374,897.5795475421859,2185747.5485082413,904288.3414548304,0.38102,100000,0,513831,5360.22324222825,0,0.0,0,0.0,26443,275.2451491758815,0,0.0,29573,304.68391404131023,1864153,0,66959,0,0,0,0,0,53,0.5528896307114542,0,0.0,0,0.0,0,0.0,0.06747,0.1770773187759173,0.3201422854602045,0.0216,0.3355817875210792,0.6644182124789207,24.997084712356678,4.514467768524992,0.3219796763266842,0.2117049303726006,0.2258185923974407,0.2404968009032743,11.031967794035731,5.500694028758149,23.090248770233632,12627.41479324242,60.002675537415,13.25940742226563,19.313393522353387,13.37801033405528,14.051864258740698,0.5513737297704178,0.7742222222222223,0.7019286966686148,0.5841666666666666,0.122848200312989,0.700594353640416,0.9027027027027028,0.8505747126436781,0.7007042253521126,0.1556420233463035,0.5007560483870968,0.7112582781456953,0.6512539184952978,0.5480349344978166,0.1145935357492654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024193956572354,0.0044779899701129,0.0070271859821328,0.0092684709560838,0.0113019615814615,0.0138076293002574,0.0158720456397718,0.0181259945326206,0.0201336111792105,0.0224408804516815,0.0246038493449558,0.0267722512283437,0.0288421030999866,0.0307765151515151,0.0328686902012537,0.0351683536459409,0.0370592617116371,0.0392981874332853,0.0413695018011564,0.0430653365649672,0.0573293570519905,0.0717047782283349,0.085289834574808,0.0983566965926392,0.110565835062186,0.1260853032511566,0.1389948300703449,0.1509205323355585,0.162068156114632,0.1732089496288838,0.1859211602186168,0.1985294912688544,0.2099692468187301,0.2205695925861164,0.2310085188238527,0.2414083166388117,0.2509117676581791,0.2602493339478624,0.2686286077328009,0.2772197853797084,0.2845507762789513,0.2918850004678581,0.2994616340294622,0.3057650119280242,0.3127362905872771,0.3181975138121547,0.3237364123628713,0.3291400341236089,0.3345657870838847,0.3395538168746035,0.3399328813833443,0.3394202299800317,0.3396213114522973,0.3397590709916268,0.3403619384674865,0.3385030343897505,0.3383784810727799,0.3397642190989097,0.3411678233222796,0.341220556745182,0.3418992320659299,0.3435719936708861,0.3444779621250209,0.3457670302163418,0.34661853188929,0.3485346266166041,0.3500854214123007,0.3520817657386506,0.3540108829208355,0.3574975173783515,0.3575776848991459,0.3595785237742243,0.3615918035859312,0.3624378484254934,0.3670024249207237,0.3708554572271386,0.3743119266055046,0.3721927317272356,0.3816878102592388,0.3831490659550133,0.0,2.31590481397299,59.12084879676905,203.50990113692225,296.190114433232,fqhc4_100Compliance_baseline_low_initial_treat_cost,31 -100000,95722,43580,412.0682810639143,6665,68.5213430559328,5229,54.177722989490405,2092,21.541547397672428,77.36002699221102,79.73200501040358,63.33690834044432,65.08847654758692,77.09675989960249,79.4661298703571,63.24099558371682,64.99353985387248,0.2632670926085296,265.8751400464894,0.0959127567275075,94.93669371444469,113.77916,80.11682133882043,118864.16915651574,83697.39593700552,313.19671,200.03973193675284,326743.8833288064,208529.7026146057,320.86111,154.32531984248016,332333.8521969871,158993.19504829549,3461.5731,1565.2015562338534,3586763.6697937776,1605897.4929311608,1269.13701,553.8721061720348,1314327.6676208186,567215.1858685703,2064.43272,864.097595192562,2127185.0776206097,878394.6901502876,0.38334,100000,0,517178,5402.916779841625,0,0.0,0,0.0,26766,279.1521280374418,0,0.0,29596,306.2932241282046,1857076,0,66638,0,0,0,0,0,55,0.5745805561939784,0,0.0,0,0.0,0,0.0,0.06665,0.173866541451453,0.3138784696174043,0.02092,0.3265013616167407,0.6734986383832593,24.90890586501758,4.501244104474392,0.3279785809906292,0.211895199847007,0.2264295276343469,0.2336966915280168,11.260844219693237,5.705105057757656,22.377603492320876,12710.404859850618,59.19189638639872,12.927540976725814,19.415982514883936,13.289058263089736,13.559314631699229,0.5523044559189138,0.7644404332129964,0.6903790087463557,0.606418918918919,0.113747954173486,0.7056179775280899,0.9267605633802816,0.8490990990990991,0.7292418772563177,0.1312741312741312,0.4997431946584489,0.6879150066401063,0.6349331235247836,0.5689084895259096,0.1090342679127725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991765504248,0.0045008058875406,0.0066468445247252,0.0087669395964972,0.0108019040644452,0.0129322634515905,0.0152395514780835,0.0172691828777888,0.0193611040122668,0.0213558836176006,0.0236010580491705,0.0257381627037904,0.0278371930401875,0.0302402949870737,0.0321392459916221,0.0344278565816136,0.0363924542374988,0.0384028563421798,0.0403973165531228,0.0424077605159784,0.0570181392871688,0.071323914181057,0.0848193681030504,0.097827230086448,0.110664811183503,0.1260703186113871,0.1386717299757088,0.1512520086411476,0.1624251097322639,0.1730717664346315,0.1869782072412716,0.2000454452006622,0.2124396817806373,0.2233165719282903,0.2336658271838467,0.2439778050968535,0.2546659378172447,0.2647025750590352,0.2735096033923672,0.2821763473362415,0.2902177558312999,0.2973595315184739,0.304427018651906,0.3106227544910179,0.3160982364086868,0.3220044592813412,0.3277478131374438,0.3327611200122072,0.3376488865872605,0.3421723004632868,0.3417566274478092,0.3411158277744087,0.3413329192371218,0.341574335578246,0.3424280313179125,0.340878072717793,0.3398853269133299,0.340904242225322,0.3418619357705652,0.3425709336999804,0.3438396489978062,0.343397570337541,0.3453388055951085,0.3461168845681082,0.3472823472823473,0.3485322488138068,0.3500085660442008,0.3525936690465659,0.3551962722394803,0.356235727735267,0.3594870380584666,0.3622784945660902,0.3633200480799646,0.3646383467278989,0.3650075414781297,0.3710691823899371,0.3717654264278058,0.3693528693528694,0.3749308245711123,0.3739868776534156,0.0,1.739379347462444,59.29189686235755,200.45537077927915,290.89842788714907,fqhc4_100Compliance_baseline_low_initial_treat_cost,32 -100000,95747,43341,407.80389986109225,6675,68.2736795930943,5170,53.34892999258462,2095,21.48370183922212,77.33346816806463,79.69560389431425,63.32120940122799,65.070269007564,77.07413743692562,79.43695798955554,63.22569488422922,64.97740034368162,0.259330731139002,258.6459047587084,0.0955145169987687,92.86866388237058,112.0999,78.87428252131085,117079.281857395,82377.81081528492,308.99593,197.3187074421645,322082.22711938753,205444.9414272177,318.71602,153.56649706453874,329018.13111637963,157412.14872409462,3419.05847,1548.8634392392405,3530269.3034768715,1577060.1943944006,1265.90035,557.1984236171812,1305968.6360930367,565968.9885780065,2067.13536,865.8513440952852,2121814.1978338747,873613.0247180662,0.38186,100000,0,509545,5321.7855389725,0,0.0,0,0.0,26355,274.56734936864865,0,0.0,29334,302.3906754258619,1867632,0,67027,0,0,0,0,0,62,0.6475398707009097,0,0.0,0,0.0,0,0.0,0.06675,0.1748022835594196,0.3138576779026217,0.02095,0.3193062268979244,0.6806937731020757,25.25561337019782,4.48252247861678,0.3388781431334622,0.1994197292069632,0.2303675048355899,0.2313346228239845,11.091177641977849,5.531121921897959,22.375165249476964,12678.719974791196,58.29111803972099,12.020477822359751,19.777181353163257,13.312844955892748,13.180613908305231,0.5462282398452611,0.7681862269641125,0.6957762557077626,0.5701091519731318,0.1120401337792642,0.7159353348729792,0.9006410256410257,0.8845315904139434,0.7279151943462897,0.1510204081632653,0.4892792560061999,0.7107093184979137,0.62877030162413,0.5209251101321586,0.1019978969505783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024013374537717,0.0046140429156694,0.0069524795485455,0.0091853116299863,0.0114928500233925,0.0140618476921667,0.0160767442808791,0.0183809271090608,0.0208699562568987,0.0231644027719488,0.0251683872753554,0.0272162619988706,0.0293597416754077,0.0314521112255406,0.0335830134951095,0.0358254002708094,0.0374216929847269,0.0395658444967884,0.0418767608928441,0.0438898899107412,0.058645454925049,0.0724138652823711,0.085933729251044,0.099376334360506,0.1119559600518861,0.1272575392293702,0.1399424951990918,0.1513229315225952,0.1622325939058645,0.1731992150218228,0.1862604630118392,0.1986236894212354,0.2098537168959704,0.2203517752838485,0.2307539988119073,0.2416973965427505,0.25177510829277,0.2614690257518458,0.2705893035503496,0.2790774903523538,0.2869699983807915,0.2950698871279022,0.3016599817792449,0.3080812316539867,0.3141664340586657,0.3203018254779108,0.3259111083328124,0.3310028347337511,0.3364997605766866,0.3405538835207772,0.3404223776600762,0.340282077743378,0.3399794276374192,0.3394648103390885,0.3393003288543666,0.3383908963865042,0.3380943312384942,0.3393553482402883,0.3397072669691004,0.3407545278831699,0.3409671121790059,0.34310368713757,0.3450125733445096,0.3449950756558331,0.3455751145406318,0.3474252187123474,0.3490541812890524,0.3519838516369141,0.3550218648610523,0.359360076408787,0.3616419612314709,0.361432301380082,0.3650291212965307,0.3648420729837473,0.3634813902831708,0.3645896107026636,0.3684780925839913,0.3739452562255608,0.3814229249011858,0.3783255086071987,0.0,2.4432716742948437,56.9226442456372,195.28124287198213,292.5162782360793,fqhc4_100Compliance_baseline_low_initial_treat_cost,33 -100000,95789,43391,409.1805948490954,6609,67.65912578688575,5179,53.388176095376295,2060,21.108895593439748,77.34149214859087,79.67998239003242,63.33904717832892,65.0720191862146,77.08728952369859,79.42688981470502,63.24530232352505,64.98116787435758,0.2542026248922866,253.09257532740048,0.0937448548038659,90.85131185702268,112.96208,79.50447928346408,117927.79964296528,82999.36243562843,311.12877,199.63779684220296,324126.9561223105,207734.70528161168,321.35769,155.45217288162618,330483.52107235696,158554.86035109643,3432.35529,1551.8937036899322,3544932.027685852,1581803.081449783,1253.90235,544.7456529507318,1293488.4068108029,553169.856919762,2031.18,846.1974495972523,2084710.1441710424,852978.2267876405,0.38226,100000,0,513464,5360.354529225694,0,0.0,0,0.0,26586,276.8480723256324,0,0.0,29672,304.7949138210024,1862865,0,66798,0,0,0,0,0,57,0.595057887648895,0,0.0,2,0.0208792241280314,0,0.0,0.06609,0.1728927954795165,0.311696171886821,0.0206,0.3299132947976879,0.6700867052023122,24.974789455478952,4.458218523949046,0.3222629851322649,0.2122031280169917,0.2311256999420737,0.2344081869086696,11.1208945073484,5.702199222303399,21.94421698481541,12688.827939069704,58.55942785009698,12.979688956675105,18.89572452019906,13.3194640685737,13.364550304649123,0.5508785479822359,0.7515923566878981,0.7177950868783702,0.5714285714285714,0.1194398682042833,0.7108614232209738,0.9042553191489362,0.8654292343387471,0.7304964539007093,0.1219512195121951,0.4953173777315297,0.6721991701244814,0.6663974151857835,0.5224043715846994,0.1188016528925619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0050383706902669,0.0073570450048201,0.0098870056497175,0.011934679757847,0.014046918132646,0.0158595789817232,0.0178394551154407,0.0202570736146758,0.022629762745881,0.0245670518512442,0.0267605923065864,0.0286869227129662,0.0307397525573537,0.0324301456931776,0.0344813329474511,0.0365929423459244,0.0386933474413635,0.0408474998960887,0.0429944096857139,0.0580526689203288,0.0721029683922167,0.0858439258506324,0.0987263823795212,0.1102106627604303,0.1265101628809098,0.1394725125617486,0.1514149288015909,0.1623813945545558,0.1731707055658567,0.186383940584468,0.1990097083180176,0.2103381967907699,0.2214997595838615,0.2322932471359148,0.2427157596422087,0.2524687367646731,0.2624369870549798,0.2717378994813254,0.2803621854599915,0.2880035097036378,0.2948779320248923,0.3023390499604051,0.3087594560949918,0.3151700457418799,0.3207203436772978,0.3261203825239077,0.3309956676957477,0.3365653118212845,0.34101145792177,0.3415064124130321,0.3418830454395423,0.3425680626796685,0.3417377475784299,0.3416317182713185,0.3406315595936691,0.3391942669605061,0.340166833939354,0.3408697737355052,0.3417537954740762,0.342794308377662,0.3432844702755241,0.344221264065622,0.3445481887148179,0.3447434534737655,0.3461407506351326,0.3485262401150251,0.3517699818708056,0.3560495756241343,0.3570912883041874,0.3585272214255978,0.3612441478770919,0.3623355053021592,0.3624854368932039,0.3639575971731448,0.364835692012473,0.3651685393258427,0.3723184818481848,0.373844861383366,0.3846153846153846,0.0,2.630340090134671,58.26137672804516,192.10323542261483,293.96240591739985,fqhc4_100Compliance_baseline_low_initial_treat_cost,34 -100000,95698,43033,405.7660557169429,6754,69.3222428890886,5273,54.47344772095551,2135,21.87088549394972,77.3419109081298,79.71120445597707,63.33255108723839,65.08099475642288,77.08649722916915,79.45907004142558,63.23763669331861,64.99035469542713,0.2554136789606502,252.1344145514917,0.0949143939197725,90.64006099575296,111.4498,78.39098038143295,116459.90511818428,81914.96204877109,305.99931,195.28093795715847,319122.0924157245,203426.4958067656,314.61671,151.65553512918268,325212.5645259044,155667.107184961,3472.17999,1574.6220644885527,3587502.581036176,1604641.993028647,1252.93391,548.8325636738341,1290919.5071997324,555166.0470164833,2098.1901,877.5814455161255,2151337.520115363,881640.8420318015,0.38148,100000,0,506590,5293.632050826559,0,0.0,0,0.0,26099,272.0746515078685,0,0.0,29055,300.1525632719597,1874989,0,67258,0,0,0,0,0,59,0.6060732721686974,0,0.0,1,0.0104495391753223,0,0.0,0.06754,0.1770472895040369,0.3161089724607639,0.02135,0.3279842342342342,0.6720157657657657,25.053264842653512,4.563253550479676,0.3368101649914659,0.2044377014981983,0.2287123079840698,0.2300398255262659,11.503632213695694,5.924164139608572,22.70567073031357,12702.840278666225,59.31645067834227,12.797180072037648,19.765378347288028,13.456834495053334,13.297057763963268,0.551868006827233,0.7792207792207793,0.6751126126126126,0.6144278606965174,0.1071723000824402,0.7123695976154992,0.9222222222222224,0.8364485981308412,0.7602739726027398,0.1679389312977099,0.4970745357415416,0.7075208913649025,0.6238872403560831,0.5678336980306345,0.0904311251314406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0047025438329786,0.0067762223574761,0.0090091005119037,0.0113779639646967,0.0135415818196627,0.0157802990917153,0.0180554421490977,0.0201553556827473,0.0225470027735986,0.0248798039959405,0.0268924302788844,0.0287012946947338,0.0307944324819962,0.0324844182110868,0.0346713253460413,0.0368586756146564,0.0389277486041636,0.0409054516340345,0.0430401117167064,0.0576095584241968,0.0710435137596432,0.0847672808158811,0.0976081788922313,0.1091666666666666,0.1243188911812939,0.1371872944471557,0.1503353561162567,0.1610952640406824,0.172482969479161,0.1856331929469296,0.1985064126846691,0.2105320410316657,0.221557541092969,0.232183908045977,0.2436256545951751,0.2539930400642455,0.2634975602077758,0.2719681412314639,0.2806589733021935,0.2888189413752401,0.2974013812478052,0.3047925743512029,0.3106726285378631,0.3158515241382663,0.3222642999000826,0.3275473116931946,0.3320475117442615,0.3373921604186637,0.342487968883908,0.3416650954830716,0.3414557005541728,0.3409285905171808,0.3414345504401789,0.3421173745861603,0.3408611034609382,0.3397530161440792,0.3404555599317316,0.3420508349999145,0.3434388574084336,0.3443865111219475,0.3461675438249377,0.3463438215944679,0.3473032397020551,0.347988706836225,0.3494243851386708,0.3502719725164614,0.3515699033419672,0.3553570167384702,0.3597536591218108,0.3630657870624885,0.3634027517533058,0.3636190597043335,0.3679071197908657,0.3694352159468438,0.370755619320899,0.3690696241528035,0.3695517455071266,0.372615039281706,0.3714727483571705,0.0,2.3928368354190925,58.71631283760927,196.78877000853095,297.28912027217825,fqhc4_100Compliance_baseline_low_initial_treat_cost,35 -100000,95717,43056,406.21833112195327,6737,69.2249025773896,5263,54.4939770364721,2060,21.197906328029504,77.33810060160408,79.72051844399748,63.31256206328344,65.07491608899535,77.08688666133905,79.46776279269369,63.220936441262,64.98458239757241,0.2512139402650319,252.7556513037865,0.0916256220214393,90.33369142294134,113.90236,80.08877946901987,118999.09107055172,83672.47141993571,311.9358,199.43181385724105,325395.8022085941,207857.6573202681,319.46791,153.94401616045675,330160.4208238871,158132.075690031,3444.27886,1554.8240505723709,3569631.0268813274,1595629.7424411231,1263.45026,553.9593058308129,1306294.7229854676,565056.928093673,2027.84198,839.5705737570256,2089439.57708662,853276.4220264779,0.38051,100000,0,517738,5409.049594115988,0,0.0,0,0.0,26631,277.714512573524,0,0.0,29536,305.0346333462185,1855764,0,66660,0,0,0,0,0,43,0.4492409916733704,0,0.0,1,0.0104474649226365,0,0.0,0.06737,0.1770518514625108,0.3057740834199198,0.0206,0.3306497175141243,0.6693502824858757,24.96973430309735,4.417580879483076,0.3363100893026791,0.2143264297928938,0.2283868516055481,0.2209766292988789,11.203104140095563,5.727229563370178,21.8495878466145,12624.06161514118,59.51088451787239,13.381992212346878,20.040677685984225,13.338938310237433,12.749276309303855,0.5700171005130154,0.8067375886524822,0.6937853107344633,0.6014975041597338,0.1195184866723989,0.7393538913362702,0.9585492227979274,0.8580931263858093,0.7536231884057971,0.1686746987951807,0.5108946423993848,0.7277628032345014,0.6376042456406369,0.5561555075593952,0.1061269146608315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026149885467555,0.0049097179955366,0.0069141267488374,0.009279021078521,0.0116400932021448,0.0138929913729005,0.016135283438386,0.0186809931874125,0.0207291506877332,0.022925305892592,0.0248566945928485,0.0271494141928594,0.0291595549980464,0.0310997147476495,0.0327838412180981,0.0349492089408798,0.0369423190416532,0.0387911358260364,0.0406898774313605,0.0427291666666666,0.0570906432748538,0.070593407513634,0.0841045011016682,0.0970394909817531,0.1093652785540288,0.1247858004188791,0.1373383271971055,0.1495453480695926,0.1600786501244937,0.1709075305728384,0.1843811945186589,0.1976075778078484,0.2097202568847284,0.2208762830192808,0.2312517884264048,0.2418596918984816,0.2529369723500245,0.2622710952536383,0.2705768794004088,0.2787674530572941,0.28661099980312,0.294143131469252,0.3011099134101704,0.3073916431868593,0.3124057956921282,0.3184258927799928,0.3249307444501548,0.3299933710672582,0.3351354855438869,0.3395187278778593,0.3398760608918227,0.3406314977761253,0.3412025031006878,0.3405710155402963,0.3396321791231174,0.3387984846858177,0.338438633447899,0.3392326509169115,0.3406204597897616,0.3407654682423506,0.3416055931472699,0.3418264479146076,0.3422680844816376,0.3424887892376682,0.3441383296406897,0.3437532481031078,0.3451108584422968,0.3480595327807084,0.3511715056211256,0.354439390943247,0.3553446327683616,0.3553013128064533,0.3558358833447824,0.3621833534378769,0.3650601286473385,0.3645907053550365,0.3634985599514931,0.3633079084704937,0.3676751158353775,0.3722349351639969,0.0,1.8982650320604115,60.48333771705023,199.65164245845185,290.51457244801406,fqhc4_100Compliance_baseline_low_initial_treat_cost,36 -100000,95651,43205,407.97273421082895,6603,67.90310608357467,5144,53.20383477433587,2036,20.89889285004861,77.27782633283482,79.68764261111741,63.2892740309558,65.07176708707229,77.02864472312781,79.44027884707711,63.19703800971028,64.98287343040556,0.2491816097070085,247.36376404030125,0.0922360212455188,88.89365666672688,112.05106,78.83126553556635,117145.7276975672,82415.51634124719,308.08094,197.07634177397483,321535.5615728011,205483.87552035507,312.47489,150.38139089189298,323637.5050966535,154806.83142288323,3378.16868,1527.627307146397,3496356.2952818056,1561675.6616725363,1239.77763,541.055607073419,1280495.739720442,550008.4072254985,2002.9148,836.2242847320931,2057812.6313368396,842953.4902562427,0.38128,100000,0,509323,5324.805804434873,0,0.0,0,0.0,26278,274.1215460371559,0,0.0,28881,298.7945761152523,1867354,0,66973,0,0,0,0,0,51,0.5331883618571682,0,0.0,1,0.0104546737619052,0,0.0,0.06603,0.1731798153587914,0.3083446918067545,0.02036,0.3230304772857964,0.6769695227142035,25.075413215405923,4.417750133816246,0.3217340590979782,0.2208398133748056,0.2301710730948678,0.2272550544323483,11.146724486792618,5.751172430931874,21.60178799914368,12659.848403346496,58.17718512004553,13.36390568250945,18.82865060860156,13.082826017589417,12.901802811345105,0.5509331259720062,0.7596830985915493,0.6942598187311179,0.5869932432432432,0.1086398631308811,0.7031857031857032,0.9052924791086352,0.8523809523809524,0.7490196078431373,0.1225296442687747,0.5001296344309049,0.6924066924066924,0.6404858299595142,0.542518837459634,0.1048034934497816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0043099951322407,0.006710251152214,0.0088010813337805,0.0113128846838598,0.0136714173653487,0.0157470678225395,0.0179353876638034,0.0200896053681389,0.0221878489259483,0.0244615384615384,0.0264601351767775,0.0287392986499835,0.0307958691484756,0.0329134833780714,0.03516538071696,0.0369614324497958,0.0388748715073357,0.040780437044745,0.0428535680026692,0.0579125564286908,0.0725461857483976,0.0864586285438381,0.0993338454900392,0.1107265340579327,0.1258534726412398,0.1387865206724795,0.1510505455165359,0.162083533878817,0.1726433326175649,0.1859798480521579,0.1984364171864172,0.2104541298384638,0.2209831688152509,0.2313349038948457,0.2426220424447276,0.2522527552285137,0.2616309167435683,0.2707865168539325,0.2799281061464665,0.2878207871210982,0.2944387940003974,0.3011084690823485,0.3076213080168776,0.3141527318685592,0.3198741672834937,0.3259429058158907,0.3307396464775101,0.3356113755138563,0.3402142187355547,0.3407444382985038,0.3404675166970249,0.3405514591632059,0.3407161688443376,0.3407007764877714,0.3389463333691828,0.3376402530116652,0.3384493644801266,0.3403963519166152,0.3413109291868943,0.3423579145138563,0.3432175655036991,0.3442798613299716,0.3451775512490198,0.3466313125225985,0.3473552360324626,0.3480895087308165,0.350732340008225,0.3537817807879153,0.3559838134540646,0.358356290174472,0.3603632478632478,0.3607013989998101,0.3626145199784433,0.3670369315484667,0.3654981327550897,0.3662410464029897,0.3641846921797005,0.3717114568599717,0.3802103622906116,0.0,2.1475881875505807,56.72017992122113,198.26173539421015,289.0046130462812,fqhc4_100Compliance_baseline_low_initial_treat_cost,37 -100000,95811,42900,405.06831157174014,6670,68.35332059993111,5213,53.73078247800357,2135,21.76159313648746,77.39792083527668,79.70101199327848,63.37134666233784,65.07129387172677,77.12551179832725,79.43089859435322,63.27075490496893,64.97442384918875,0.2724090369494263,270.1133989252611,0.1005917573689032,96.87002253801325,113.4463,79.81084005161951,118405.88241433656,83299.83681583482,311.77294,199.7028706160493,324707.53880034655,207738.0494560525,319.85077,154.46809480427507,329496.2269468016,157848.47728966514,3444.20926,1563.4465223469704,3552481.9488367727,1589867.9107588008,1259.89863,554.4096700447176,1295372.35807997,559325.4008950228,2096.24748,880.3800114902142,2141116.009643987,881559.8146171004,0.37898,100000,0,515665,5382.085564288025,0,0.0,0,0.0,26644,277.34811242967925,0,0.0,29522,303.8064522862719,1861502,0,66719,0,0,0,0,0,62,0.6366701109475947,0,0.0,0,0.0,0,0.0,0.0667,0.175998733442398,0.3200899550224887,0.02135,0.3324779013401768,0.6675220986598233,24.814553806766316,4.511804764555308,0.3228467293305198,0.2234797621331287,0.2211778246690965,0.2324956838672549,11.186928758535927,5.670720502489971,22.75071259704877,12510.491029254645,58.85710005903106,13.74125563049387,18.97941550795001,12.819422037531483,13.317006883055702,0.5547669288317667,0.7811158798283262,0.6981580510992276,0.5845620121422377,0.1097359735973597,0.7038690476190477,0.9151670951156812,0.825287356321839,0.75,0.1654411764705882,0.5029723442750065,0.7139175257731959,0.6538461538461539,0.5392265193370166,0.0936170212765957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0043368561845798,0.0064607738729144,0.0086512393001837,0.0107860279765777,0.0130263988113411,0.0153043549143078,0.0173222884191626,0.0194129126521103,0.0214751230292303,0.0235951027099021,0.0258427888462564,0.0275135101814371,0.0295861032786547,0.0316635745207173,0.033772830991296,0.0357327595125281,0.0376650566945129,0.0397096543058598,0.041776380837401,0.056507724565265,0.0699627646222073,0.0832992544590896,0.09668397922493,0.1089419924736736,0.1245863509013057,0.1373441079155001,0.1489642545400353,0.1601918926426907,0.1709807875907789,0.1842309349418354,0.1969559291231258,0.2081136034968304,0.2190510557797242,0.2290585129784426,0.2406736870079394,0.2509507399600745,0.2599260117166856,0.2685526390384942,0.2770339855818743,0.284911485494259,0.2915205908474734,0.298754450503306,0.3050084411930219,0.3103690855943818,0.3164254774561921,0.3221442134719168,0.3266052715147666,0.3319189671677317,0.3364333324551466,0.3360381540941761,0.3356813313560718,0.3369523943463891,0.3362710593122548,0.3368399186907429,0.3357276033866185,0.3346505856503801,0.3354053566449623,0.3355311480450267,0.3364609583042911,0.3386005360925228,0.3396745041428543,0.3404567665625065,0.3412604042806183,0.3438096388452711,0.3457016418340359,0.3458333333333333,0.3496681170006669,0.3509106984969053,0.3544450668160358,0.3586000460511167,0.3579967689822294,0.3617891373801917,0.3624026524789883,0.3643314536939692,0.3674278846153846,0.3642147734326505,0.3648235054070597,0.3635365183964854,0.3641574321742453,0.0,2.533679628622058,58.747816824922445,193.65544891471868,294.3225709759687,fqhc4_100Compliance_baseline_low_initial_treat_cost,38 -100000,95557,43138,408.761262911142,6643,68.33617631361386,5183,53.6956999487217,2037,20.98224096612493,77.19945181010942,79.67229311800628,63.224607941291474,65.05461701154681,76.94971100632175,79.42177500876055,63.133050277472485,64.96525502371311,0.2497408037876738,250.51810924573203,0.091557663818989,89.36198783369775,113.01268,79.47282689397086,118267.29595947968,83167.98025677959,307.62899,196.728602406676,321396.2661029543,205339.47529398784,315.41504,152.1214133740551,327155.66625155666,156882.837394272,3416.16487,1535.6342786504715,3542328.6624737065,1574361.280335792,1262.51797,548.5589679021263,1307638.8542963883,560483.7509571525,2010.25198,829.4046939980544,2072884.100589177,840987.1985716528,0.38062,100000,0,513694,5375.786179976349,0,0.0,0,0.0,26338,275.0609583808617,0,0.0,29180,302.40589386439507,1856852,0,66683,0,0,0,0,0,43,0.4499931977772429,0,0.0,0,0.0,0,0.0,0.06643,0.1745310283222111,0.3066385669125395,0.02037,0.3232845248349124,0.6767154751650876,24.70824414226252,4.440723093425612,0.3212425236349605,0.2218792205286513,0.226509743391858,0.2303685124445302,11.100700171511122,5.696204588196551,21.568756877311607,12628.572453583263,58.56761286801647,13.700480827547716,18.80974002955027,13.127235630835576,12.930156380082911,0.5624155894269728,0.7852173913043479,0.7171171171171171,0.5834752981260647,0.1113902847571189,0.743947175348496,0.940149625935162,0.8683602771362586,0.7542662116040956,0.1694915254237288,0.4976439790575916,0.7022696929238985,0.663961038961039,0.5266742338251986,0.0970772442588726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002311177788365,0.0044236115338568,0.0064789991063449,0.008611924516024,0.0109439263753715,0.0130379824257375,0.0152982599377455,0.0172082566932352,0.0191874744167007,0.0214492872441816,0.0235995770758697,0.0260146216569154,0.0280735721200387,0.0299766870912504,0.0320043816137566,0.0339516396157668,0.0358935534721646,0.0377784013552416,0.0397283389929376,0.0417797636447154,0.0566138396359642,0.0706773067122468,0.0836539472301061,0.0966892162441255,0.1088222548698381,0.12447785246284,0.1371775094419915,0.1499482385084152,0.1614831638829667,0.1713824810453298,0.1848891960775843,0.1974649476928419,0.2095933150063272,0.2207950332360748,0.2318567077208316,0.2422690718443151,0.2516505897361294,0.260590399241689,0.2697375907508136,0.2792957309719877,0.2870032123763467,0.2950579349814702,0.3014438077612082,0.3079325421611493,0.3137484166423073,0.3199490829996539,0.3250737833594976,0.3301861515495617,0.3359435873461119,0.3413349565953842,0.3413042597170996,0.3412311810893234,0.3414954458801101,0.3415181805012313,0.3416492693110647,0.3400952820039957,0.3389881661504249,0.339998022021494,0.3410983125332601,0.3430596680125617,0.3437023080546396,0.345076999503229,0.3461530347461024,0.347283158960513,0.347993509481485,0.3499711028214154,0.3516916266636005,0.3531534954407295,0.3549849477598725,0.3568266124207251,0.3614452341899034,0.3630816575582321,0.3637564473518682,0.3635184620079341,0.3626806833114323,0.3665120704007611,0.3663109756097561,0.3706827309236948,0.3737677984665936,0.3758620689655172,0.0,2.148765209086726,60.28043909337082,186.7211528270436,294.9602294216735,fqhc4_100Compliance_baseline_low_initial_treat_cost,39 -100000,95664,42865,405.0635557785583,6735,69.05418966382338,5231,53.93878575012544,2178,22.349055025924063,77.33990302576841,79.7307135762591,63.32261558699434,65.08904896542802,77.07180288455437,79.46514002398199,63.22425283681709,64.99464168218047,0.2681001412140347,265.5735522771181,0.0983627501772446,94.40728324754843,112.99244,79.47476821335994,118113.62686067904,83076.75636954333,310.15685,198.40751748120277,323429.81685900653,206615.8851696252,316.22098,152.9140515693385,325828.1171600602,156226.3307696629,3467.11718,1569.9357098319213,3575966.445057702,1592827.5512928823,1254.92569,554.2592122345178,1291516.808830908,559206.3794837887,2139.12558,888.301612249129,2194882.6099682217,892179.8804083222,0.37882,100000,0,513602,5368.801220939957,0,0.0,0,0.0,26492,276.1017728717177,0,0.0,29218,300.8028098344205,1863331,0,66863,0,0,0,0,0,63,0.6481016892456932,0,0.0,0,0.0,0,0.0,0.06735,0.1777889234992872,0.3233853006681514,0.02178,0.3226489692177351,0.6773510307822649,25.014183282060795,4.523959838471546,0.3188682852227107,0.2077996558975339,0.239151213917033,0.2341808449627222,11.13979847314268,5.568326378932721,23.10031063520829,12608.649368613593,59.19499874755154,12.857397297052811,18.91096245199199,13.983493394472736,13.443145604034012,0.5482699292678265,0.7617295308187673,0.6942446043165468,0.5811350919264588,0.1265306122448979,0.7223459539717891,0.908355795148248,0.8666666666666667,0.7418300653594772,0.18,0.4878990731204943,0.6857541899441341,0.6362179487179487,0.5291005291005291,0.1128205128205128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044498504890781,0.0068593925987559,0.0089078942022508,0.0113582054645475,0.0134062175532889,0.0155339014147673,0.0176165591573446,0.01959661838218,0.0218635167917131,0.0238766492726284,0.0260324173398893,0.0281036947155182,0.0303033424318895,0.0322936878173636,0.0341604631927212,0.036001036001036,0.037906230862647,0.0402155369699995,0.0421335723890632,0.0568061924808574,0.0709821288357046,0.0842583460981597,0.0972574350126766,0.1097104277651774,0.1250674424755355,0.1372856900356476,0.1495460399569988,0.1609010028944023,0.1714218319448465,0.1846770198375945,0.1975782890038306,0.2093157299460588,0.2208858614242447,0.2306693229722738,0.2419365557573878,0.2529819354406793,0.2623424842484248,0.2721290644641601,0.2807280808265939,0.2881191211689979,0.2945950370699534,0.3013205850333696,0.3083152636181759,0.3144456315866155,0.3198157136169898,0.3253055760593512,0.3303697485404663,0.3349612664196699,0.3389969239705863,0.3390166320726743,0.3393235836844859,0.3400936477490691,0.3388112647505972,0.3390607784163664,0.3378152548869298,0.3376697459950245,0.3376132309665116,0.3383850464734828,0.3400821281913944,0.3406832414594817,0.3408609599208312,0.3416123009796312,0.342394720301697,0.3441624365482233,0.344867328496215,0.3460204637299017,0.3489064033171905,0.3510209849501872,0.3533556245521853,0.3527719426431637,0.3544668587896253,0.3574093985200177,0.3605592909535452,0.3617442079487662,0.3601094847078424,0.3621036349574633,0.3587943848059455,0.3609701071630005,0.3606366459627329,0.0,2.79859717546321,58.80785111573432,197.17751276481908,292.65332007039694,fqhc4_100Compliance_baseline_low_initial_treat_cost,40 -100000,95783,42994,404.2888612801854,6765,69.36512742344675,5284,54.56083020995375,2088,21.35034400676529,77.331780499572,79.67166894662971,63.32970022966426,65.06222738986953,77.07245581680638,79.41460773270533,63.23456189685771,64.9704957520038,0.259324682765623,257.06121392437353,0.0951383328065489,91.73163786573468,111.936,78.73432452832337,116864.1616988401,82200.7292821517,309.29943,197.901462909211,322323.9301337398,206021.4891047587,315.01847,152.42163776687198,325515.4254930416,156465.4552385208,3463.22384,1564.725694234064,3580913.408433647,1598830.8407901877,1256.39944,547.8990273938185,1299371.600388378,559683.587138558,2049.36042,856.3909634075618,2100232.003591452,862388.2009846861,0.37963,100000,0,508800,5312.007349947276,0,0.0,0,0.0,26491,275.9571113871981,0,0.0,29051,299.8026789722602,1868418,0,67051,0,0,0,0,0,66,0.6890575571865571,0,0.0,0,0.0,0,0.0,0.06765,0.1781998261465111,0.3086474501108647,0.02088,0.3112173179645769,0.6887826820354231,25.14171135540337,4.441525626558506,0.3319454958364875,0.2129068887206661,0.2312641937925813,0.2238834216502649,11.179361953905618,5.725361333886312,22.35939841717264,12640.454086450278,59.563879702883845,13.276875295849363,19.766753154937746,13.558620074604557,12.961631177492178,0.5649129447388342,0.7795555555555556,0.7029646522234891,0.5900163666121113,0.1301775147928994,0.7390659747961453,0.921875,0.8713968957871396,0.7644927536231884,0.1638655462184874,0.5052096569250317,0.7058029689608637,0.6446661550268611,0.5391120507399577,0.1216931216931216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385414028868,0.0047950204776773,0.0070829147513369,0.0094477630135316,0.0116653953724891,0.0139919958451715,0.0162517077547358,0.0184776838580587,0.0208644272249596,0.0230946409377079,0.0250645835896174,0.0274041522065014,0.029325271968248,0.0314273647778659,0.0335727702437715,0.035551833932928,0.0373043901529666,0.0393918021905078,0.0415038656579931,0.0436683950771537,0.0589984660816211,0.0729975106164885,0.0860491200117401,0.0989513281775386,0.110631124222948,0.1261451652102243,0.1390779014308426,0.1509644626868845,0.1620938050264126,0.172409359732579,0.1856512378902045,0.1975878853434289,0.2093460789751286,0.2210519408078222,0.2308386528725511,0.2412883782256545,0.2513947779513501,0.2610226301345211,0.2701467486221053,0.2788043229381325,0.286023171380339,0.2933144734227231,0.3009643258593149,0.3072433546655161,0.3131559766763848,0.3192895905278737,0.3249896643740369,0.3296060181053168,0.334388500408661,0.3393206449907481,0.3395649126590468,0.3396138124664529,0.338899692793326,0.3389286024368361,0.3382744712833564,0.3369415016121603,0.3362392022357723,0.3366970664735126,0.3370312580374136,0.3377582968065122,0.3392420767698034,0.340228245363766,0.341569675667712,0.3431330713082537,0.3439072783584979,0.345994547551641,0.3463741551151335,0.3493751577884372,0.3527258649209869,0.3552426913412834,0.3606647438538662,0.3654113619343104,0.3665943600867679,0.3661483990147783,0.3720930232558139,0.3758373205741627,0.3824941905499612,0.376902780596712,0.3854282536151279,0.3842500989315394,0.0,2.35429135724944,59.16645198986615,194.77923411302476,301.83560262088423,fqhc4_100Compliance_baseline_low_initial_treat_cost,41 -100000,95689,43353,409.2006395719466,6861,70.49922143611074,5346,55.30416244291403,2124,21.8520415094734,77.34192318165195,79.71624322332202,63.32298576779221,65.07447797189425,77.07674187022387,79.45009680262869,63.22550357220129,64.97904761467589,0.2651813114280799,266.1464206933317,0.0974821955909206,95.4303572183619,112.73658,79.2652221749822,117815.61098976896,82836.29484578395,309.97106,197.62195673601468,323385.7705692399,205975.09299503049,321.70076,155.10838189349803,332352.70511762064,159180.2018185143,3505.65593,1592.589458249075,3626625.327885128,1627371.0021518413,1294.29769,570.0130760958056,1334652.342484507,577737.1130389131,2085.86304,875.7240913967356,2146855.2707207724,886203.1763772926,0.38325,100000,0,512439,5355.255044989498,0,0.0,0,0.0,26453,275.87287985034857,0,0.0,29693,306.51381036482775,1862833,0,66913,0,0,0,0,0,57,0.5956797542037225,0,0.0,0,0.0,0,0.0,0.06861,0.1790215264187867,0.3095758635767381,0.02124,0.3155191560244308,0.6844808439755691,24.97111814446546,4.524182295700997,0.3264122708567153,0.2220351664796109,0.2227833894500561,0.2287691732136176,11.316562790332306,5.781204294758285,22.75582787111149,12707.643476381816,60.35863458358026,14.006392377917535,19.77917076443725,13.076871780996646,13.496199660228834,0.5506921062476619,0.7792754844144903,0.6859598853868195,0.5650713685978169,0.1218315617334423,0.706983441324694,0.9211822660098522,0.8701298701298701,0.6666666666666666,0.158273381294964,0.4958301743745261,0.70550576184379,0.6196414653156664,0.5390295358649789,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021364276095298,0.0043178155502174,0.0066344076204388,0.0088772421638531,0.0109627490262678,0.0135102115615646,0.0158228493362967,0.018002103478909,0.0201132970673647,0.0223928735985255,0.0245670518512442,0.0266373662483826,0.0287063131261185,0.0307969707897583,0.0330002683787856,0.0349719769197361,0.036916957562072,0.0388711284563646,0.0410565723793677,0.0429522648410391,0.0571055517835692,0.0713687384821578,0.084575339015072,0.0976282172696087,0.1095893301819102,0.1251600613789089,0.137463502680894,0.1493332197179498,0.1610337972166998,0.1721869231099471,0.1859738019513772,0.1990318074011501,0.2108757646341729,0.2222830190744044,0.2327176258200871,0.2436235513107452,0.2541419193497968,0.2641823810864058,0.2729799641487599,0.2813806692557079,0.2892592592592592,0.29644412191582,0.3034081758325044,0.3102476126493593,0.3157894736842105,0.3213479542623133,0.3273750579741028,0.3331337579617834,0.337602678397633,0.3421449352023274,0.3424187579351144,0.3421655804705622,0.3431110734319585,0.3427686608202367,0.3430375984544508,0.342678125526602,0.3414537563556302,0.342478370999046,0.3426487208466043,0.3441371542985859,0.3444275496987103,0.3455024986118823,0.3461902060881074,0.3473743267504488,0.3473286120344944,0.3488444884970525,0.3483876486185955,0.3505900865460267,0.3534591636261577,0.3560419480416302,0.3586106564829969,0.3610299973453676,0.3631065501076904,0.3622472251786529,0.3631593741216153,0.3621196099165785,0.3633207547169811,0.3626175705423254,0.366932161494095,0.3721280602636534,0.0,2.1829958857254117,61.27365605229664,197.0633504800197,301.39560179540683,fqhc4_100Compliance_baseline_low_initial_treat_cost,42 -100000,95739,43189,406.5114530128788,6659,68.4256154754071,5118,52.872914904062085,2045,20.952798754948347,77.32392886815877,79.6868397902338,63.31606620966248,65.06454720241562,77.06918629680344,79.43241343622995,63.22311074453332,64.97384080198495,0.2547425713553366,254.42635400385427,0.0929554651291653,90.70640043067613,111.60182,78.53000880915165,116568.81730538234,82025.0982453876,307.0525,196.918526124683,320115.6059703987,205079.96336360625,314.48411,151.66665667170395,324702.56635227025,155534.3608484363,3343.06311,1509.3339441640642,3457496.0360981417,1542154.1526066316,1229.80514,539.1996967211978,1271520.6028891047,550178.784738923,2004.08618,834.7640324714804,2056418.5755021465,842632.5215867774,0.38176,100000,0,507281,5298.582604790106,0,0.0,0,0.0,26315,274.23516017505926,0,0.0,28997,299.0526326784278,1868120,0,67113,0,0,0,0,0,54,0.5640334659856484,0,0.0,0,0.0,0,0.0,0.06659,0.1744289606035205,0.3071031686439405,0.02045,0.3259684361549498,0.6740315638450503,25.29478058584128,4.445408037664197,0.3241500586166471,0.2250879249706917,0.2246971473231731,0.226064869089488,11.34539752515044,5.834151024668908,21.87124038020853,12727.165696134934,57.918483143171045,13.629657274269146,18.70195772617097,12.809049857075893,12.77781828565502,0.5488472059398203,0.7552083333333334,0.6913803496081977,0.58,0.1080380293863439,0.7052551408987052,0.900804289544236,0.8697788697788698,0.7518248175182481,0.1158301158301158,0.4948751642575558,0.6854942233632862,0.6333865814696485,0.526255707762557,0.1057906458797327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025119774732342,0.0047856107230125,0.0071142955731016,0.0093986872320104,0.0113012165846116,0.0135641547861507,0.0157005077177171,0.0179039880776179,0.0200595037266509,0.0221050476092966,0.0244112490644575,0.0266024620881546,0.0287556030760373,0.0310967821680194,0.0331138812069179,0.0352890101711734,0.0373915024962194,0.0395329527763362,0.0418018467681557,0.043713797558028,0.05910049485311,0.0731367954136502,0.0862229865050488,0.0993291836648862,0.1113876001687051,0.1273652257607327,0.1401652997782564,0.1522884793509853,0.1630691345630093,0.1747207512381279,0.188609379877504,0.2014856784490122,0.2128788208182964,0.2228125409943591,0.2327857315651734,0.2435781035475441,0.2538159421583504,0.2637193235138572,0.2722318722114369,0.2816928863000504,0.2886494003128802,0.2957919776884587,0.3026501452540464,0.3084005569960626,0.3148425422098869,0.3205935362812631,0.3265902478177987,0.3319771964953003,0.3363058151609553,0.3413372492988305,0.3412935189060032,0.3408442158390446,0.3412498941007031,0.341749598018339,0.34272950636587,0.3417849587638348,0.3408774152676592,0.3413993499031421,0.3428864393745193,0.3439944283724419,0.3445431709968882,0.3457914324174519,0.3465637324830075,0.3475348878883587,0.3482420415933682,0.3473365206259634,0.3486042130501798,0.3512505138014987,0.353280486941751,0.3550305303907092,0.356277155270981,0.3572417465388711,0.358699084306915,0.3593427588842185,0.3579017264276228,0.3595115527355441,0.359579652756625,0.3581821805860076,0.3617363344051447,0.3643292682926829,0.0,2.27330076045837,57.766719230015084,193.6935404617325,286.4720809781565,fqhc4_100Compliance_baseline_low_initial_treat_cost,43 -100000,95801,43424,409.10846442103946,6698,68.76754939927558,5249,54.28962119393326,2118,21.79517959102723,77.4066300966336,79.74575376698093,63.35719594835807,65.08779673227042,77.14260785390924,79.48143094735141,63.260524851354816,64.99380922086453,0.2640222427243657,264.32281962951265,0.0966710970032522,93.98751140588502,112.49634,79.18357100687008,117427.1041012098,82654.22177938651,310.05948,198.12475779590105,323152.7854615296,206311.91511143,320.77619,154.07945875050828,331944.45778227784,158564.01974341678,3473.50972,1556.2412892182297,3595205.196187931,1593902.046135457,1237.4906,537.9223954880284,1282364.7039174957,552134.1170635254,2081.8904,863.8050666610384,2143867.183014791,874844.2154483318,0.38284,100000,0,511347,5337.595640964082,0,0.0,0,0.0,26446,275.529482990783,0,0.0,29517,305.32040375361424,1866081,0,67032,0,0,0,0,0,62,0.6262982641099779,0,0.0,0,0.0,0,0.0,0.06698,0.1749555950266429,0.3162137951627351,0.02118,0.3233498935415188,0.6766501064584812,25.24516227603395,4.515943922886553,0.3232996761287864,0.2088016765098113,0.2408077729091255,0.2270908744522766,10.929350103135388,5.420509903909581,22.357250004978013,12727.10967745966,59.1255842442485,12.90533060136192,19.26064383147468,13.952834762396613,13.006775049015284,0.5427700514383692,0.7828467153284672,0.6847377725397761,0.5514240506329114,0.110738255033557,0.7007575757575758,0.904632152588556,0.8552338530066815,0.6944444444444444,0.1349206349206349,0.4896920335963349,0.7215363511659808,0.6233974358974359,0.5158102766798419,0.1042553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.004735251769382,0.0070529018378137,0.0091340438718592,0.0113607469411417,0.0135842447200668,0.0158642768295915,0.0180370540499157,0.0199315173506413,0.0220436985109757,0.0239103030551484,0.0262172284644194,0.0281720540623875,0.0303691655170993,0.0324505973672545,0.034592428904814,0.0367259109060437,0.039164869795986,0.0414116962588179,0.0433107756376887,0.058578017070473,0.0725572834419217,0.0856244431633562,0.0983079348397267,0.1106966746744215,0.1264054442471891,0.1397029986326489,0.152399281225744,0.1635046310128473,0.1740257514407524,0.1873211250026898,0.1996475218406712,0.2124811196714008,0.2236648139857391,0.2343358671294872,0.2451844885766443,0.2546752160579871,0.2642026932847732,0.2733282683388708,0.2818552264090472,0.2897630693447116,0.2970177857760535,0.3038128926167351,0.3095819858665708,0.3159160472234368,0.3219774937448387,0.3268091713938665,0.3316236923155242,0.3363480874883383,0.3417910447761194,0.3420598311348493,0.341381115028647,0.3427310165858062,0.3431039222210969,0.3428146827165998,0.3421588594704684,0.3413153776850491,0.3411082537550572,0.3414480623320064,0.3414452048706781,0.3429880329094988,0.342729853335436,0.3437930890402373,0.3460070955217886,0.3464425313541642,0.3467939050392636,0.3479250220439742,0.3514826656635947,0.3530792405240664,0.3549881235154394,0.3573082686282522,0.3589594458837836,0.3606064402957022,0.3622356495468278,0.3671380721994789,0.3680393074403369,0.365823754789272,0.3609098228663446,0.3706158519745927,0.3692722371967655,0.0,1.9962106551369616,58.612267634448415,196.60402479208892,297.183284215074,fqhc4_100Compliance_baseline_low_initial_treat_cost,44 -100000,95687,43213,407.6415814060426,6663,68.400096146812,5260,54.375202483095926,2139,21.98835787515545,77.29491858535671,79.69683061938925,63.29396199958445,65.07389269230528,77.02982877842703,79.43226031838823,63.195973756599045,64.97895148422576,0.2650898069296801,264.5703010010152,0.0979882429854086,94.94120807951845,112.07812,78.88475755557957,117129.93405582786,82440.41254880973,308.24802,197.37639018568652,321533.10272032773,205664.04024129352,321.20836,155.57845478601675,331932.916697148,159780.97570200625,3469.51514,1580.9332799087117,3587533.280382915,1614043.351605386,1314.05152,576.86888366758,1355677.657362024,585361.8004320795,2099.14498,876.4916135884471,2158815.1159509653,885429.5879885954,0.38036,100000,0,509446,5324.087911628539,0,0.0,0,0.0,26307,274.30058419639033,0,0.0,29610,305.65280550126977,1866287,0,66972,0,0,0,0,0,53,0.5538892430528704,0,0.0,0,0.0,0,0.0,0.06663,0.1751761489115574,0.3210265646105358,0.02139,0.3234455219623502,0.6765544780376498,24.973425287510818,4.490337965893117,0.3237642585551331,0.2068441064638783,0.2408745247148289,0.2285171102661597,11.26485505367896,5.859603584256092,22.835944176849925,12637.5747449868,59.63446311053978,12.947685269667389,19.328419671308197,14.153903791639788,13.20445437792442,0.5568441064638783,0.7922794117647058,0.6970052847915443,0.5872138910812944,0.1131447587354409,0.7165932452276065,0.9184210526315788,0.8657718120805369,0.7073170731707317,0.1491935483870967,0.5010261672652643,0.7245762711864406,0.6369426751592356,0.5520408163265306,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022605857248573,0.0044648746283499,0.007078657390951,0.0092623659193736,0.0115129737268035,0.0136577211990256,0.0158067676231682,0.0179297521505486,0.0200720219339526,0.0221575717841813,0.0242804094946966,0.0263501227617805,0.0282980037044659,0.0305781716994743,0.0327119203930798,0.0347174104141889,0.0368612495725255,0.0392046929346415,0.0413315994798439,0.0432253827953178,0.057963899218652,0.0725555683519521,0.0855082958158864,0.098258536328721,0.1105612998522895,0.1261811294401472,0.1390979438895198,0.1510679528950786,0.1623158052210337,0.1729221657117105,0.1863183409641799,0.1988228802648519,0.2099832561376041,0.2205388861562004,0.2300112179134681,0.2414205508122653,0.2513641080574432,0.260424286759327,0.2696610073249673,0.2784746267972207,0.2857159401491638,0.2925847011168606,0.299607991757168,0.3056042241689667,0.3118607790438896,0.3177630116345132,0.3235463731414387,0.3289177037027602,0.3339982125973033,0.3388107965419389,0.3389716378915614,0.3387212149558423,0.3392492141135341,0.3399034012031467,0.3402400749676479,0.3388384086444008,0.3382350605834431,0.3400609103629928,0.3418213576272347,0.3434157005393589,0.3443555220789003,0.3457609602925394,0.3472657977300962,0.348191417658953,0.3502896057000218,0.3511107609894438,0.3528753122218713,0.3566404764922063,0.3586511299435028,0.3599840095942435,0.3608683653757704,0.3629312650441294,0.3647297126218509,0.3683080227028685,0.3660384506108533,0.3657019851710117,0.3678899082568807,0.3642842598248829,0.3662551440329218,0.3630500758725341,0.0,2.3212946013722533,59.89424722833687,199.16724427211605,293.5687677904289,fqhc4_100Compliance_baseline_low_initial_treat_cost,45 -100000,95723,43092,406.4226988289126,6815,69.82647848479466,5342,55.22183801176311,2181,22.37706716254192,77.3593554540744,79.72992127704676,63.33143217950936,65.08369484348589,77.08788067209899,79.46008799996528,63.232829046708105,64.98825195454555,0.2714747819754137,269.8332770814744,0.0986031328012586,95.44288894034024,112.44354,79.09408523011648,117467.17089936588,82627.68774924793,310.07979,197.9189614540994,323341.19281677343,206170.25145449373,319.18606,153.9275247453997,330394.35663320206,158317.9064649156,3510.19934,1587.187885562215,3631441.3463848815,1622652.32884835,1281.81204,562.2707210752031,1324915.7673704335,573224.6179864847,2144.19732,886.6408312257803,2202823.4384630653,895363.7811244646,0.38086,100000,0,511107,5339.416859062086,0,0.0,0,0.0,26508,276.30767945007995,0,0.0,29467,304.76479007135174,1866728,0,66948,0,0,0,0,0,50,0.522340503327309,0,0.0,0,0.0,0,0.0,0.06815,0.1789371422569973,0.3200293470286133,0.02181,0.3287823906380607,0.6712176093619393,25.09243388356976,4.5409201106378125,0.3333957319356046,0.2098464994384125,0.2280044926993635,0.2287532759266192,11.244219209230891,5.718161164046069,23.21300248075636,12666.544077779768,60.36254416298932,13.321839009629567,20.094024663757008,13.497760288030712,13.448920201572037,0.5473605391239236,0.7698483496877788,0.6788321167883211,0.5853858784893268,0.113747954173486,0.7293946024799417,0.909560723514212,0.8469827586206896,0.778169014084507,0.1440677966101695,0.4845127171996978,0.6961852861035422,0.6195899772209568,0.5267665952890792,0.1064908722109533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022383826925414,0.0044704856711303,0.0066161324038276,0.0087343340578091,0.0110531507072186,0.013478982357193,0.0155869310362403,0.0180470775575199,0.0202817362147574,0.0223999017188955,0.0245808337178895,0.0267566429400466,0.0290135396518375,0.0309811557918379,0.0329900524208527,0.0354772684984184,0.0373023843294785,0.0390092622364204,0.0407713498622589,0.0428836298487563,0.0572013324005137,0.0714308141542905,0.0842643001751791,0.0966351209253417,0.1092341273607288,0.12526842478288,0.1383503644987744,0.1504466234416089,0.1617401897922544,0.1733284688764177,0.1873787872257897,0.2005347593582887,0.2123803307223672,0.2223742093628942,0.2321562321011587,0.2430637184235622,0.252956746071632,0.2620673363555575,0.2711066224864963,0.279405194239824,0.287021717247683,0.2941479099678457,0.3002494591111689,0.3070385444098635,0.3131044692805222,0.3188337991406163,0.3247944536910735,0.3302937809996185,0.3358015741507871,0.3407367352052861,0.3407546915988431,0.341201392041156,0.3417614715022992,0.3418670356916335,0.3420095864187454,0.341131140773359,0.3406477093206951,0.3403129352011141,0.3413647765472757,0.3420569411513023,0.3432177957836296,0.3440543108225793,0.3455340990365602,0.3455195842426151,0.3466016134486256,0.3475529965977493,0.3491308954497293,0.3509610817315304,0.3527560725524166,0.3556522086109892,0.358627334036794,0.3608462774504553,0.362341064468724,0.3654760079717921,0.3662982903560971,0.3644581896039015,0.3650915807295675,0.3690427698574338,0.3739972337482711,0.3735498839907192,0.0,2.271110517285448,60.363850063056994,202.69134521014027,297.1566824341582,fqhc4_100Compliance_baseline_low_initial_treat_cost,46 -100000,95894,43232,406.5322126514693,6705,68.69042901537114,5209,53.79898638079546,2098,21.492481281414893,77.4394230829848,79.71849659210561,63.39129033748679,65.07673213001179,77.17795155682326,79.45921879970153,63.29437597258697,64.9833602843368,0.261471526161543,259.27779240407745,0.0969143648998169,93.37184567499436,113.70414,79.9506841997978,118572.73656328864,83374.02152355497,309.06958,197.87566977919693,321782.8956973325,205827.87221223116,314.34734,152.38954679651803,324932.769516341,156653.41931537713,3464.61772,1564.6794303042773,3579612.7494942336,1598322.6899537772,1276.50055,558.8377420999967,1319041.201743592,570649.4275971344,2061.01102,860.8465092421297,2112919.3067345195,865645.4092106451,0.38162,100000,0,516837,5389.669843785847,0,0.0,0,0.0,26449,275.2726969362004,0,0.0,29015,299.70592529251047,1862958,0,66889,0,0,0,0,0,50,0.5214090558324816,0,0.0,1,0.0104281811166496,0,0.0,0.06705,0.1756983386614957,0.3129008202833706,0.02098,0.3194385367928541,0.680561463207146,24.9683685767373,4.495404608551687,0.338644653484354,0.2023421002111729,0.2307544634286811,0.2282587828757919,11.17958848024117,5.752118210785689,22.20942568014392,12603.92513435979,58.411972153638565,12.42304596377524,19.64856499589036,13.38280472030443,12.957556473668552,0.5482818199270494,0.7618595825426945,0.6927437641723356,0.5715474209650583,0.1211101766190075,0.7087529047250194,0.8938547486033519,0.8793969849246231,0.7050847457627119,0.1541666666666666,0.4954058192955589,0.6939655172413793,0.6383601756954612,0.5281146637265711,0.1127502634351949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020753188904636,0.0045097085410839,0.0069081650250053,0.0091279229152494,0.0112413225324483,0.0132272440528275,0.0155844155844155,0.0177478580171358,0.0198806750847942,0.0220544610159782,0.024477960613947,0.0264818443922308,0.0286389559677336,0.0308404961655257,0.0330003402096928,0.0351076462388352,0.0374815075366487,0.0394665948275862,0.0417233324682065,0.0435148968042609,0.0585396362120185,0.072275686237631,0.0853980354786688,0.0983305333893322,0.1103765540618782,0.125691541027915,0.1382042346760441,0.1500233764025841,0.1614859823046583,0.1725348344427559,0.18526322579258,0.1974217390834531,0.2087239936987343,0.2194303576112617,0.2302861667729802,0.2408811645541595,0.2509224680898501,0.2610024381200633,0.2690363957757331,0.2778254256864158,0.2855624487343892,0.292733919665487,0.300180895967084,0.3067222361944454,0.312788382145806,0.3185508210453699,0.3238388311379642,0.328944525640211,0.3336307907193295,0.338238393845181,0.3383160217426403,0.3382070026933436,0.3385749247517511,0.3388501364758892,0.3391621886411542,0.3375170281481028,0.3372473928249276,0.3385087057743384,0.3399225004694355,0.3407510431154381,0.340828247275995,0.3420044244291696,0.3432542174222445,0.3438378161380971,0.3455734406438632,0.3457002265094118,0.3464070836644341,0.3484763156248044,0.3508545517963027,0.3545967710101448,0.3555646110658335,0.3577636459989401,0.360645444842092,0.3635393643777151,0.3662465649578319,0.3640817301947664,0.3674801803202238,0.3657683604196667,0.3609796827163929,0.3595419847328244,0.0,1.974848483095476,56.6071525715028,196.57480826650536,296.071543935695,fqhc4_100Compliance_baseline_low_initial_treat_cost,47 -100000,95736,43068,405.6781148157433,6669,68.34419654048634,5261,54.34737193950029,2150,22.112893791259296,77.34647984393533,79.70032848763834,63.33814763576003,65.07630405963216,77.07458080951982,79.42668807213273,63.23824738677462,64.9778459620867,0.2718990344155116,273.6404155056107,0.0999002489854135,98.45809754546052,112.27766,79.01119555558506,117278.41146486173,82530.2869929651,308.16442,197.24847347242692,321277.5549427593,205421.5065100139,318.56668,153.68180440082793,329006.9252945601,157623.87719750256,3500.40558,1594.751666841478,3618131.92529456,1627601.8079316842,1279.88199,565.2533943776376,1323027.4191526698,576569.8737963114,2119.0236,890.0455324659501,2180956.797860784,902230.5523130957,0.38096,100000,0,510353,5330.836884766441,0,0.0,0,0.0,26342,274.5153338347121,0,0.0,29415,303.48040444555863,1866067,0,67015,0,0,0,0,0,63,0.6580596640762095,0,0.0,2,0.0208907829865463,0,0.0,0.06669,0.1750577488450231,0.3223871644924276,0.0215,0.3348604151753758,0.6651395848246242,24.817849174539685,4.496960132051453,0.3208515491351454,0.2100361148070709,0.2303744535259456,0.238737882531838,11.202916126613774,5.658244159378023,23.036685456223022,12614.116053700169,59.64018567673317,13.110712536561897,19.094236382135847,13.61950742595875,13.815729332076662,0.5527466261167079,0.746606334841629,0.7109004739336493,0.6105610561056105,0.1138535031847133,0.7170626349892009,0.9083969465648856,0.8722358722358723,0.767515923566879,0.1563636363636363,0.493801652892562,0.6573033707865169,0.6596409055425448,0.5556792873051225,0.1019367991845056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0045819014891179,0.0066672755502785,0.0089087990898193,0.0110134846543413,0.0132554161915621,0.0153007135575942,0.0176670511027873,0.0200243276670993,0.0224627071964616,0.0246007503228848,0.0267387912629331,0.0289932554696496,0.030982201713909,0.0329753097883843,0.0349364838186197,0.0367348629172533,0.0387915382779835,0.0408840008731899,0.0430901591534038,0.0573993840371665,0.0714420279237226,0.0847365163293781,0.0973555543872562,0.1098085519102639,0.1254717479782229,0.1380839237982095,0.1507779409573675,0.1625104084377735,0.1728646447326117,0.1863151435553498,0.199643127500811,0.2115890369275576,0.2225196970855962,0.232068855594517,0.2427274739871596,0.252422637301366,0.261348299442145,0.2701506762276481,0.2780876676555144,0.2853556388541811,0.2922182719745521,0.2994387743020199,0.3058047493403694,0.3119037491644892,0.3176754731861199,0.3236527508293171,0.3284034598285372,0.3335711968861498,0.3383045110793802,0.3379342913040545,0.3381033127920923,0.3379530315005081,0.3377020216648323,0.338129067810494,0.3366037156456318,0.3359012157813812,0.3372062448644207,0.3377512928524949,0.3394700588624693,0.3408510478479681,0.3423544795340175,0.3441260624421442,0.3456640388114008,0.3465365665153125,0.347630686746038,0.3491506912309947,0.35081998353701,0.3531717999434868,0.3568724345434982,0.3593033913840513,0.3629109992502945,0.3645839914081749,0.3666462293071735,0.3696084936960849,0.3739837398373983,0.3772307692307692,0.3785276073619631,0.3763744009021708,0.3702094033978664,0.0,2.3594183358562173,61.036694705103685,195.12673562018372,294.064871323379,fqhc4_100Compliance_baseline_low_initial_treat_cost,48 -100000,95726,43472,409.9722123560997,6735,68.97812506529051,5227,53.893404090842616,2114,21.64511209075904,77.41222784566315,79.76707633410678,63.350809200748486,65.0892982944205,77.14194434635831,79.49963421619664,63.24996176624048,64.99243937943693,0.2702834993048384,267.44211791013583,0.1008474345080046,96.8589149835708,112.62152,79.22523635291495,117649.87568685623,82762.50585307539,308.76317,197.73808223307597,321785.4292459729,205814.48813218824,320.49764,155.01961562822507,330432.8082234712,158541.17477187092,3432.86343,1566.0955611953248,3542855.7340743374,1593485.652926013,1245.24519,549.3184266893809,1285580.4379165536,559087.2739502138,2070.93204,874.9554477703405,2122363.683847649,879952.0877753837,0.38273,100000,0,511916,5347.721622129829,0,0.0,0,0.0,26336,274.34552786076927,0,0.0,29526,303.97175271086223,1865213,0,66838,0,0,0,0,0,75,0.7834862001963939,0,0.0,0,0.0,0,0.0,0.06735,0.1759726177723199,0.3138827023014105,0.02114,0.3231638418079096,0.6768361581920904,25.125742294967782,4.4516675694309065,0.3309737899368662,0.2121675913525923,0.2318729672852496,0.2249856514252917,11.072212100565764,5.686307344178038,22.597896642255872,12721.721811038016,58.94133347884384,13.024747007753405,19.48307723773985,13.448418079566412,12.985091153784172,0.550411325808303,0.7655545536519387,0.6982658959537572,0.5701320132013201,0.1096938775510204,0.6988929889298893,0.8978494623655914,0.8614318706697459,0.7491039426523297,0.1143911439114391,0.4984504132231405,0.6987788331071914,0.643793369313801,0.5166130760986066,0.1082872928176795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0045203466274768,0.0068173517834679,0.0093326021610203,0.0115291940747669,0.0137730951290273,0.0163585217196322,0.0185810638449843,0.0206538512636559,0.0228454452405322,0.0251086332704763,0.0272747803235608,0.0295151739452257,0.0316677308397355,0.0336181277860326,0.0358578915270355,0.0379915919398595,0.0399240529968977,0.041659735506945,0.0432527032939558,0.0577862691054873,0.0719502752024778,0.0857688353649581,0.0988438759086462,0.1111591786776964,0.1262950694760458,0.1392547467178926,0.151387380480845,0.16294776438403,0.1744674000536624,0.1879481180390085,0.2007363690508419,0.2122911109901475,0.2232028469750889,0.2333671243140798,0.2441981718139865,0.2541471048513302,0.2639915284787311,0.2727530865599764,0.2810159967891749,0.2886664813270317,0.2959914772062094,0.3028602547710375,0.3094225215401023,0.3143148737637596,0.3197978926612853,0.3256355084067254,0.3312065481259294,0.3357382984225497,0.3408791613990729,0.34093106968248,0.341188580839967,0.3412725177753422,0.3409166270201692,0.340814937562881,0.3395835238879234,0.3381465075586802,0.3382525985487351,0.3392787242371122,0.340702927679556,0.3412899854428726,0.3427632097015513,0.3437866108786611,0.3451128154820297,0.3471718941230112,0.3487894312537383,0.351179312304632,0.3546841231559495,0.3580877721005109,0.3589551355403859,0.3612117370041659,0.3654731051991326,0.3693784105877187,0.3711301188403603,0.3728008936051382,0.3768968356663922,0.3769056603773585,0.378,0.3798155181768855,0.3838575217885562,0.0,2.69518276465114,59.06082355338919,196.53247595378875,289.3011785744779,fqhc4_100Compliance_baseline_low_initial_treat_cost,49 -100000,95716,42854,404.6449914329893,6629,67.88833632830458,5136,52.93785782941201,2049,20.90559572067366,77.32373385663094,79.69228008324278,63.321321634088775,65.07456658186045,77.07196802641546,79.44384448832665,63.22792996441359,64.98541273851664,0.2517658302154757,248.4355949161312,0.093391669675185,89.1538433438086,112.67564,79.33215201845604,117718.70951565048,82882.85346071298,307.54184,196.21404834029263,320577.51055204985,204266.97557387748,316.29404,152.50500715524603,325347.3818379372,155470.29937117186,3428.22347,1550.934669250907,3537443.447281541,1576196.982390691,1277.23357,559.5372237099283,1315011.0744285178,565228.823946327,2017.91386,842.3308829419665,2062092.043127586,843081.8020690075,0.37778,100000,0,512162,5350.850432529567,0,0.0,0,0.0,26264,273.65330770195163,0,0.0,29157,299.5110535333696,1865871,0,66979,0,0,0,0,0,60,0.6268544443980109,0,0.0,2,0.0208951481466003,0,0.0,0.06629,0.1754724972206046,0.3090963946296575,0.02049,0.3173145890116196,0.6826854109883804,25.026113308464392,4.512713933531472,0.334696261682243,0.2079439252336448,0.2223520249221184,0.2350077881619937,11.258093146199313,5.758072619262723,21.88882318716749,12523.952098052294,57.93567506355309,12.594116275361548,19.389291357243835,12.66533285999737,13.286934570950338,0.555101246105919,0.7734082397003745,0.6986620127981384,0.5980735551663747,0.1168185584092792,0.7136397889977393,0.9183098591549296,0.8642533936651584,0.7689243027888446,0.1648745519713261,0.4998687319506432,0.7012622720897616,0.6413469068128426,0.5499438832772167,0.1023706896551724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025734549138804,0.0049489387163183,0.0070645554202192,0.009470967217446,0.0119648380270226,0.0138332874940154,0.0160221107167625,0.0179853543451839,0.0202161708915771,0.0222540836704388,0.0245720907813637,0.0264768712513351,0.0282913078814439,0.0303074021785055,0.0324528535595949,0.0343330335266569,0.0364159874056198,0.0384834870666846,0.0404071913570619,0.042201567189063,0.0564674435116735,0.0703557560470154,0.0832738869539675,0.0960846605373335,0.1087009248225753,0.1244964207543379,0.1373464321330815,0.1490396382016493,0.1601747321876769,0.1705823691519135,0.1839844086484624,0.1961834290721448,0.2077180697214188,0.2190417878463187,0.2297893405203234,0.2401311054269231,0.2503484339982383,0.2597598103647782,0.2682357209260141,0.27687467825888,0.2840935348213873,0.2913337071825786,0.2987576391597811,0.3051133709439793,0.3110976202039825,0.3159743188455803,0.3210096027443567,0.3263486402139991,0.3313838892058717,0.3360839714813837,0.3366978411449209,0.336480284466006,0.3362497177692481,0.336684581842414,0.3367685823640668,0.3363554082869284,0.3355451738063187,0.3365135144011297,0.3369869562248173,0.337468982630273,0.3380913080991859,0.3384237526491968,0.3393615679017538,0.3411622058559367,0.342137057800116,0.3427366546178427,0.3455905534378493,0.3484934801873655,0.3523173189097465,0.3533416089376526,0.3559843785894785,0.3567939013260321,0.3620470438652257,0.3629989212513484,0.3659642823396012,0.366722448003825,0.3666717720937356,0.3735185941969758,0.3648947951273533,0.3667577058134998,0.0,2.86333683735014,57.76333114696688,189.14354990618585,290.3225185638536,fqhc4_100Compliance_baseline_low_initial_treat_cost,50 -100000,95778,43009,404.8006849172044,6784,69.4627158637683,5255,54.26089498632253,2176,22.31201319718516,77.38153749659537,79.72337125077172,63.350937847410606,65.08314394739448,77.11287786282207,79.4547464329213,63.25165973204419,64.98614856866558,0.2686596337732965,268.6248178504229,0.0992781153664168,96.99537872889152,112.23916,78.99173079706844,117186.55641170204,82473.57016501726,307.26467,196.31832414036464,320139.26997849194,204304.36867945464,312.60141,151.875554687941,322607.27933345863,155619.9020669109,3520.07843,1599.9482760073754,3639077.8571279417,1634470.8062440995,1279.77053,567.4703147502274,1320773.4344003843,577162.435900148,2143.81064,900.1279227004053,2201168.639979954,909982.4272373228,0.37954,100000,0,510178,5326.661655077366,0,0.0,0,0.0,26297,273.8729144479943,0,0.0,28978,298.7638079726033,1869267,0,67071,0,0,0,0,0,49,0.5115997410678861,0,0.0,0,0.0,0,0.0,0.06784,0.1787426885176793,0.320754716981132,0.02176,0.326507713884993,0.673492286115007,25.0579666449773,4.45432631202156,0.314557564224548,0.2108468125594671,0.2344433872502378,0.2401522359657469,11.129166486417352,5.679185694756597,23.23552789214481,12608.43044142588,59.22666896698704,12.940855223670884,18.6312785413703,13.828560509606849,13.825974692339004,0.538534728829686,0.7815884476534296,0.677555958862674,0.5535714285714286,0.1283676703645007,0.7159676232523915,0.9353932584269664,0.8787878787878788,0.7287066246056783,0.1245136186770428,0.4766427104722792,0.7087765957446809,0.6070261437908496,0.492896174863388,0.1293532338308457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876076080131,0.0046120785776552,0.0070106732681303,0.0093131430080334,0.0114382739898733,0.0138033531154249,0.0160027724548456,0.0180344767756355,0.0203560260786036,0.0226430924754947,0.0248806181214518,0.0270678080926279,0.0290561381863047,0.0309401480596769,0.0328413322193685,0.0349327382059388,0.037139368351339,0.039265686061096,0.0413545940892328,0.0432913052984476,0.0577314423468269,0.0715690170895475,0.0847372338529599,0.09734671360269,0.1087893444609532,0.1243210111385877,0.1367904531773284,0.149032992036405,0.1609426028303699,0.1718120229825915,0.1849351935581105,0.1973520535646681,0.2087658843607665,0.2197387835400841,0.2297393925393001,0.2404202787834501,0.2507945712660726,0.2607869589657111,0.2695557496228918,0.2779945756039504,0.285978670738196,0.2933473634981878,0.2997976498988249,0.3064767335985048,0.3124127126774589,0.3178900947289323,0.3238055941083061,0.3287402827079914,0.3337131462754593,0.3386498858854105,0.3391224739825249,0.3391260078703321,0.3392177321564535,0.3389506878245649,0.339373651714647,0.3384931338891613,0.3381868827551278,0.3387004213874633,0.340231491740961,0.3416360589095318,0.342681053538646,0.3437518545627188,0.3444260265637131,0.3446928879310345,0.3451176016965491,0.3456812715674997,0.3463658432100528,0.350452887155617,0.3536555403460742,0.3557780161283915,0.358445822692448,0.3616261722080136,0.3656077610804641,0.3673438098888463,0.3718640537726024,0.3752977608384945,0.3788762665029168,0.3792613636363636,0.3817727146429563,0.3894009216589861,0.0,2.2446187226128376,59.58698575037469,196.5460018028988,293.17092960219105,fqhc4_100Compliance_baseline_low_initial_treat_cost,51 -100000,95866,42834,403.22950785471386,6583,67.72995639747147,5052,52.19785951223583,2007,20.55994826111447,77.37299817448195,79.6745620347643,63.35320242165369,65.05702884646716,77.12247373993947,79.4248929919971,63.26161925125826,64.96864268549594,0.2505244345424842,249.66904276720925,0.091583170395431,88.38616097122554,113.82162,80.07928614456371,118729.9146725638,83532.52054384632,310.14203,198.8109738313157,322989.89214111364,206857.94111709652,311.03506,149.53556031160457,321721.71572820394,153864.08192894908,3310.32846,1497.7327193742055,3419350.301462458,1528590.5528281212,1252.39295,547.2251827468308,1292134.6149834143,556572.6204341573,1970.17584,818.5696053344135,2019312.582145912,822518.1632232151,0.37857,100000,0,517371,5396.814303298354,0,0.0,0,0.0,26607,276.99079965785575,0,0.0,28763,297.3003984728684,1859163,0,66780,0,0,0,0,0,46,0.4798364383618801,0,0.0,0,0.0,0,0.0,0.06583,0.1738912222310273,0.3048761962631019,0.02007,0.3277761670049289,0.672223832995071,25.1316596124336,4.416242460566378,0.3244259699129058,0.2218923198733175,0.2282264449722882,0.2254552652414885,11.22082338571925,5.746484995730823,21.45557276681432,12550.294023433362,57.09422668935924,13.00656929827366,18.558381112776573,12.883565816155338,12.645710462153682,0.5568091844813935,0.7734165923282783,0.6906650396583283,0.5897658282740676,0.1176470588235294,0.7058359621451105,0.9181818181818182,0.8561320754716981,0.6981132075471698,0.1767068273092369,0.5068710359408034,0.7130214917825537,0.6329218106995885,0.5574324324324325,0.1011235955056179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024913915333198,0.0046216060080878,0.0068571660428268,0.0089352801413398,0.0109387389951812,0.0130903908794788,0.0153802248427833,0.0173999122350467,0.0197304560177379,0.0218040804632983,0.0240254085343988,0.0260293227451342,0.0282311107457041,0.0304474477874648,0.0328350515463917,0.0349777451901727,0.0370182608245822,0.0388597009357416,0.0409570490986126,0.0426698574549994,0.0569354939623349,0.0704134096894202,0.0840701475025142,0.0960736750359659,0.1081226239245132,0.1231224252667159,0.1364026490066225,0.1483777002891648,0.159783142302192,0.1708417263103758,0.1845259873022705,0.1970622250564749,0.2085334840350381,0.2196409830330593,0.2302267501347738,0.2410604533726094,0.2507724742601537,0.2598067339385553,0.26919674250845,0.2772950510011334,0.28490483128657,0.2920643833052592,0.299163204677532,0.3060953111148382,0.3121009056255615,0.3174763500197083,0.3234553990610329,0.3288760528257716,0.334511738730689,0.3383022829000356,0.337551036908275,0.3372459874629744,0.3374491984646647,0.3373820140135503,0.3373649915201285,0.3360722333788113,0.3354098308684832,0.33664049410296,0.3370988139590525,0.3383622615876874,0.3398234731930363,0.3403258333662857,0.3420164721168556,0.3437227696226289,0.3448068937375483,0.345517025929397,0.3466674275279616,0.3496316352874504,0.3524388529659826,0.3536846275752773,0.3575798776342624,0.3592423599320883,0.3588562050246181,0.3603093178163999,0.3600378787878788,0.3630015386436264,0.3630632015992618,0.3591375770020534,0.3590030803696443,0.351673720661793,0.0,1.8721498584890195,56.15440920222394,195.76380009042668,280.88341867754144,fqhc4_100Compliance_baseline_low_initial_treat_cost,52 -100000,95788,43162,406.8254896229173,6592,67.57631436088027,5142,53.04422265837057,2101,21.505825364346265,77.39816222968327,79.7280345577141,63.35848721039546,65.07975100207432,77.13990533544978,79.47288237709702,63.26293588531113,64.98838594788114,0.2582568942334831,255.152180617074,0.0955513250843296,91.36505419317588,113.3154,79.69567461582497,118298.11667432246,83200.0611932862,310.26079,199.11962849278208,323195.41069862613,207170.93034035704,321.02115,155.1354902955161,331668.55973608384,159203.6254938121,3375.28559,1534.0409423640613,3485094.59431244,1562993.207923452,1222.75766,542.9277342049271,1260943.4062721843,551266.5829743632,2059.89866,859.8778269770226,2111434.6891051074,864788.1280718887,0.37878,100000,0,515070,5377.187121560112,0,0.0,0,0.0,26487,275.8487493214181,0,0.0,29503,304.57886165281667,1860848,0,66784,0,0,0,0,0,67,0.6785818682924792,0,0.0,0,0.0,0,0.0,0.06592,0.1740324198743333,0.3187196601941747,0.02101,0.3289968198901417,0.6710031801098584,24.989368581641624,4.459590645179286,0.3370283936211591,0.2178140801244651,0.219758848697005,0.2253986775573706,11.235033911064532,5.66091491842592,22.20045809512324,12650.03217760167,58.083196611280655,13.165404736781197,19.59866935883263,12.593404577934477,12.725717937732366,0.5558148580318942,0.7696428571428572,0.7016733987305251,0.5761061946902655,0.1113028472821397,0.7296886864085042,0.91869918699187,0.8871681415929203,0.7193675889328063,0.1604938271604938,0.4959477124183006,0.6964047936085219,0.6362217017954723,0.5347776510832383,0.0982532751091703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002015353142533,0.0043882763093886,0.0064927159842551,0.0085608091640263,0.0107660245005845,0.013180124982189,0.0152748764457125,0.0172529894298657,0.0194219393332584,0.0219869040311029,0.0244034873833355,0.0265059004617752,0.028744964235797,0.0309286839098796,0.033001360880861,0.0351562096565969,0.03732516759083,0.0391451325231241,0.0409577950759189,0.0427913854869615,0.0576008014024542,0.0716960214199054,0.0846334507632947,0.0978201463045489,0.1103297769156159,0.1258787833937689,0.139020587393006,0.1510391724930562,0.1628714246042766,0.173488756152749,0.1860109430873293,0.1986263587691309,0.2103610504471028,0.2217706694633805,0.2315850790231464,0.2421080584662026,0.25228590544157,0.2612602480909592,0.2704085684786185,0.2793292249891182,0.2871417667059884,0.2947641652830718,0.3025169294880901,0.3083957571762449,0.3146742760002428,0.3203610881907412,0.3258643326039387,0.3312781266685312,0.3362202889544819,0.340904893813481,0.3407294710056144,0.3413238712161846,0.3410768623915248,0.3410446360236249,0.3402661365693008,0.3388384255436278,0.3372293482214876,0.3376244280817986,0.3383177250666484,0.3399964304836694,0.3411112567651079,0.3418385525951146,0.3431039543758125,0.3436117442016356,0.3460449944836187,0.3466340014073861,0.3462783171521035,0.347310275563367,0.3498043052837573,0.3527226744645538,0.3530615958511509,0.3583619550858652,0.3587838681483331,0.3632286995515695,0.3690151443890508,0.370432290422737,0.3708791208791209,0.3753036437246964,0.3776551724137931,0.3794813119755911,0.0,2.4363157834908957,57.563674623124,197.03266609874748,284.24620090172203,fqhc4_100Compliance_baseline_low_initial_treat_cost,53 -100000,95876,42970,404.73111101839874,6645,68.28611957111268,5201,53.65263465309358,2038,20.89156827568943,77.3584022892406,79.64126881541522,63.35300198276878,65.0416794885576,77.1049067384117,79.3901197962689,63.25866033703648,64.95145867331978,0.2534955508289016,251.14901914631105,0.0943416457323067,90.22081523782788,112.8633,79.41343147936314,117717.98990362552,82829.31231941585,306.90811,196.08085866580063,319531.79106345697,203937.42820497372,315.15744,152.00564558063613,324984.771997163,155652.796525139,3422.50056,1545.5254750963638,3532843.7982393927,1575132.7079731794,1271.12446,551.9348176452444,1311993.7210563645,561911.8102590346,2013.72278,846.7277061434828,2065086.799616171,850454.3596731148,0.37971,100000,0,513015,5350.817722892069,0,0.0,0,0.0,26220,272.873294672285,0,0.0,29063,299.45971880345445,1864497,0,66984,0,0,0,0,0,52,0.542367224331428,0,0.0,1,0.0104301389294505,0,0.0,0.06645,0.1750019751915935,0.3066967644845749,0.02038,0.3273453093812375,0.6726546906187625,25.177749145731315,4.441130521384184,0.3349355893097481,0.2155354739473178,0.2182272639876946,0.2313016727552393,11.008979564231987,5.465718662252845,21.784647312129376,12585.981078971576,58.790193062039656,13.282359424070483,19.56778651141764,12.58253000304445,13.357517123507089,0.5456642953278216,0.8037466547725245,0.653272101033295,0.5656387665198238,0.1305070656691604,0.7030896759608138,0.946524064171123,0.8091954022988506,0.7354085603112841,0.1455938697318007,0.4917398038203407,0.7322623828647925,0.6013771996939556,0.5159453302961275,0.1263269639065817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274195344693,0.0047623390177422,0.0072623261758172,0.0097269745859943,0.0119536491156739,0.0138002625713675,0.0160662618688618,0.0182263246468458,0.020113739624067,0.0222962819084227,0.0244249490720361,0.0263681286010128,0.0284387934310392,0.0305726718169754,0.032668624723038,0.0345069695405265,0.0367653904641708,0.0388665478214004,0.0405973807471413,0.0425129016147827,0.057111282553848,0.0708807857068227,0.0845027647453083,0.0964286839369533,0.1090441780605473,0.1242010965445114,0.136536566238886,0.1482907118932426,0.1594526221406231,0.1707672680882085,0.1842910062026188,0.1969213461268024,0.2093046012003131,0.2203588100886639,0.2301221644326666,0.2404240955321668,0.2507082152974504,0.2609912969168147,0.2701387392088575,0.2790385959284675,0.2866235404395172,0.2936317581401879,0.2999917090099373,0.3065278410862941,0.3127052070919571,0.3184112138000814,0.3233900684330584,0.3290208274912687,0.3334891329749941,0.3381588175358272,0.338146388858901,0.3379675604104601,0.3376386889133564,0.337567164395267,0.3383579599618684,0.3375506694509274,0.33661448575874,0.3381566167876603,0.3393734906742939,0.3409233078944076,0.3418989383651574,0.3430574535084071,0.3438687863578133,0.3441113202473783,0.3463124141090243,0.3477648898735826,0.3487033342832716,0.350920168331135,0.3527885862516213,0.3544394191859081,0.3563972833766352,0.358739406779661,0.36020388899377,0.3620305660087551,0.3648301455894947,0.3620689655172414,0.361106768797874,0.3610315186246418,0.3592582341544423,0.3608128834355828,0.0,2.3244380409811995,58.53141843265052,194.1554793365401,294.6284493760241,fqhc4_100Compliance_baseline_low_initial_treat_cost,54 -100000,95735,43069,406.25685485976913,6614,68.01065441061263,5133,53.05269755053011,2092,21.44461273306523,77.38965647392791,79.75778563665594,63.34469261111818,65.0944502660188,77.1423337721102,79.51091929357746,63.25405122382269,65.00681781775083,0.2473227018177084,246.8663430784801,0.0906413872954914,87.63244826796779,114.29286,80.43957670471826,119384.38397660208,84022.93487723221,311.7454,199.3578670825912,325054.3374941244,207659.9332350668,317.31863,152.78891985352897,328059.4244529169,156973.3034575597,3391.3752,1527.181756439535,3506675.6254243483,1559432.2519867714,1253.0108,547.4091767713765,1291534.141118713,554597.2193106969,2057.87344,851.7157210016675,2111601.775735102,857481.3051098925,0.3806,100000,0,519513,5426.562908027368,0,0.0,0,0.0,26648,277.7563064709876,0,0.0,29190,301.51982033738966,1858073,0,66643,0,0,0,0,0,55,0.5745025330338956,0,0.0,0,0.0,0,0.0,0.06614,0.1737782448765107,0.3162987602056244,0.02092,0.3234870317002882,0.6765129682997119,25.1708102174072,4.462828018519586,0.3282680693551529,0.2125462692382622,0.222676797194623,0.2365088642119618,11.22787193544493,5.795809199261478,22.181354134216093,12577.92436596676,57.863366688496896,12.82448163096363,18.96116202269027,12.67424018345403,13.40348285138896,0.5445158776543931,0.76993583868011,0.684272997032641,0.5818022747156606,0.1128500823723229,0.7175748273215656,0.8966480446927374,0.8624708624708625,0.758364312267658,0.1619433198380566,0.4856396866840731,0.7080491132332879,0.6234076433121019,0.5274599542334096,0.1003102378490175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023600194473705,0.0045619050515495,0.0069312657932392,0.0088384094926549,0.0106604819595756,0.0129118976823754,0.0153240688818425,0.0175477996345484,0.0196868100417041,0.0219667734638101,0.0240779843785235,0.0261274857043128,0.0282089767049776,0.030305214597578,0.0326763003991707,0.034622817987329,0.0366462328625274,0.0386251400589284,0.0406281830087097,0.0426369916539026,0.0571437520882058,0.0709755076407787,0.0840538045074915,0.0963387690689111,0.1087761496344589,0.1238259434760534,0.136547377802298,0.1489613043293176,0.1600845810461564,0.1704539361508187,0.1832491736560471,0.1957598702001081,0.2082667449420001,0.2196311237932806,0.2305449825086356,0.2408414060337669,0.2514996097669751,0.2614620664861646,0.2703416536307783,0.2794020085558072,0.2867349534093273,0.2952120510932697,0.3021826733316789,0.3082898453583568,0.3138637411713308,0.3190349515997931,0.3254830842348821,0.3303707659444614,0.335208972020645,0.3397408008015926,0.3401387992253066,0.3393974395995764,0.3384656524003209,0.3380942753162729,0.3371408227143938,0.3366215492850042,0.335345999430974,0.3360345759049162,0.3369903556666836,0.3388826636785657,0.3389653500428928,0.3396668504371111,0.3399557577528277,0.3405905292479109,0.3414078972589611,0.3438881089793584,0.3437446760179454,0.3479476147105932,0.3503390604687115,0.351694746485044,0.3552077613033132,0.3552377892030848,0.357846853677028,0.3604229607250755,0.3586482220778015,0.362933458294283,0.3654776299879081,0.3665934943125125,0.3678348274925292,0.3666034155597722,0.0,2.1445099069689,57.47352575085681,192.81179238252145,288.8520771702348,fqhc4_100Compliance_baseline_low_initial_treat_cost,55 -100000,95758,43054,405.7415568412039,6667,68.45381064767435,5170,53.363687629232025,2128,21.77363771173166,77.34687979821054,79.703967706272,63.33382307926016,65.08036848273977,77.0774345836877,79.43801317523325,63.2333475044055,64.98427887915481,0.2694452145228325,265.95453103874434,0.1004755748546557,96.08960358495722,112.98144,79.5104164933143,117986.42411077923,83032.66201603448,311.37796,199.31731411468755,324550.115917208,207525.2763368988,315.87802,152.39314184790834,325946.5632114288,156155.0679456654,3444.82087,1572.8600547394915,3554765.220660415,1600584.196955711,1300.76879,574.501875491187,1340767.716535433,582676.6781202393,2090.22794,884.9447144453321,2140406.4203513023,887658.6022744504,0.37973,100000,0,513552,5363.0192777626935,0,0.0,0,0.0,26584,276.9690260865933,0,0.0,29178,300.81037615656135,1863521,0,66938,0,0,0,0,0,56,0.5848075356628167,0,0.0,0,0.0,0,0.0,0.06667,0.1755721170305217,0.3191840407979601,0.02128,0.3179604697794328,0.6820395302205672,24.9872690855542,4.551062435900337,0.327852998065764,0.2106382978723404,0.2276595744680851,0.2338491295938104,11.57167817592624,5.94128535574615,22.93600056863745,12594.724977473024,58.72718680116417,12.87012060618446,19.03314531516511,13.323347023036728,13.500573856777876,0.5615087040618956,0.7722681359044995,0.6991150442477876,0.6142735768903993,0.1273779983457403,0.698741672834937,0.9117647058823528,0.8522727272727273,0.7491408934707904,0.1464285714285714,0.5129615082482325,0.7089452603471295,0.6454183266932271,0.5699774266365688,0.1216361679224973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786713144988,0.0046850281912951,0.0070152284263959,0.0095632996940963,0.0116383169203222,0.0138490051119121,0.0159241512896319,0.0179358922008983,0.0199852793850054,0.0221466820932351,0.0241964423027631,0.0264603505457383,0.0286610448375154,0.0305746131816964,0.0329432162982228,0.034878432021171,0.0367305939855852,0.0387161026619914,0.0409987733632715,0.0430594605852337,0.0575979624642491,0.0717326945005283,0.084440436619866,0.0972797410077992,0.1103112450857426,0.1255997294612474,0.1384292483331036,0.1506374472338298,0.1620615345224887,0.1727403217858902,0.1857653083179138,0.1978385388522641,0.209386713020805,0.2198704716970828,0.229989122433059,0.2414125094064007,0.2515529682045792,0.2616664792533453,0.2708574541987332,0.2793868292012281,0.2870867672932679,0.2943854679947096,0.3010939830929885,0.3069442279328001,0.3127353105491996,0.3182170781259619,0.3230846269404106,0.327870104089787,0.3332340331835196,0.3373617964482677,0.3376152965730828,0.3370741648536256,0.3381099322258387,0.3378267088552728,0.3378016882653668,0.337046969580875,0.3354509592687061,0.3358704586552687,0.3364306860379554,0.3373806373162619,0.3379821679962459,0.3392273078676631,0.3404367105899166,0.3408355795148248,0.3417745988787937,0.3427177078687062,0.3461505376344086,0.3492159036907967,0.3520977539200452,0.3533810533050746,0.3565093515922981,0.3596514673651574,0.3616845582163501,0.3637894092439547,0.3643701896001501,0.3662155745489079,0.3689230769230769,0.3669479316731838,0.3747534516765286,0.3733650416171225,0.0,2.433642040364485,59.24212981280829,194.15196383082508,290.03749898033595,fqhc4_100Compliance_baseline_low_initial_treat_cost,56 -100000,95761,42970,406.083896366997,6736,69.22442330385022,5272,54.54203694614718,2130,21.8251689100991,77.36211040614715,79.72220780136844,63.32787542470121,65.07491871919817,77.0936208802402,79.45698807284465,63.227961890309246,64.97928257211207,0.2684895259069577,265.21972852378894,0.0999135343919661,95.63614708609693,111.6247,78.5956105585839,116565.92976263825,82074.75961882593,308.58018,197.483086180944,321739.50773279305,205724.62840017464,316.83157,152.72614719599576,328581.865268742,157602.59330711715,3489.91639,1582.7149757697707,3609483.7982059503,1617866.894538647,1302.33093,570.9716091157558,1344343.8873863055,580679.0355158297,2101.0367,884.1807090697774,2154099.978070405,887802.6288975065,0.37895,100000,0,507385,5298.4513528471925,0,0.0,0,0.0,26369,274.8196029698938,0,0.0,29249,303.11922390117064,1869073,0,67046,0,0,0,0,0,60,0.6265598730171991,0,0.0,1,0.0104426645502866,0,0.0,0.06736,0.1777543211505475,0.3162114014251782,0.0213,0.3205382436260623,0.6794617563739377,24.917135475035625,4.485651782235979,0.3196130500758725,0.2207890743550834,0.2240136570561456,0.2355842185128983,10.94056524601841,5.421314587646454,22.78541707991902,12545.276305335834,59.5559701567909,13.64010063945192,18.966140065804563,13.220260044695854,13.729469406838554,0.5515933232169955,0.7620274914089347,0.7086053412462908,0.5707027942421676,0.1231884057971014,0.6985789080029918,0.917098445595855,0.8349753694581281,0.671280276816609,0.18359375,0.5016518424396442,0.6850899742930592,0.6684910086004691,0.5381165919282511,0.1075050709939148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086461404415,0.0044922627618796,0.006781037458126,0.0089618663442291,0.0111591475509892,0.0132093534851509,0.0154181877511063,0.0171016090827411,0.0193556303105285,0.0214528549193085,0.0235665719764949,0.0255359362320627,0.027726052201109,0.029760616646572,0.0317886262772215,0.033714486580373,0.0357675420429127,0.0378605519817389,0.0398029085541429,0.041801647899501,0.0562868625711154,0.070066226551302,0.0838376105127371,0.0964881835105543,0.1089439984810286,0.1249775239304035,0.1376599401616907,0.1495070377547326,0.1610442067469519,0.1714926109430967,0.1846873047674443,0.1975430241368113,0.209185672005571,0.2196013216340999,0.2288088947600176,0.2402092244952237,0.2494806210208868,0.2590479405806887,0.2682871473638819,0.2771070536757463,0.2851089938759681,0.29205621145993,0.2985829120742521,0.3057288168122061,0.3119114448535219,0.3175208140610546,0.3234855603583286,0.3295638331741483,0.3347111721564257,0.3387120201766779,0.3384300083596257,0.3377741651052574,0.3383648330585035,0.3379666459348829,0.3375509233102381,0.3372121546622512,0.3370843503344216,0.3379006686710368,0.3379821907740689,0.3396351042559268,0.3398212847267754,0.3404969115702642,0.342018179533364,0.3429319371727748,0.3442323412030581,0.3442306689608426,0.345497535823149,0.3470298118304903,0.3503363228699551,0.3533138015678201,0.355639234189275,0.3585503724443974,0.3593543930163914,0.3597040839435343,0.3667349599552989,0.3662604992310422,0.3659762412427658,0.3678528588564574,0.3744230247081184,0.3764523625096824,0.0,1.9944039383289869,59.12858709080314,200.5520332579553,295.47646945525213,fqhc4_100Compliance_baseline_low_initial_treat_cost,57 -100000,95767,43173,408.14685643280046,6643,68.1132331596479,5141,53.160274416030575,2062,21.218164921110613,77.32840490063373,79.6883019323387,63.31625382636724,65.06458770505698,77.07119132302357,79.43071504568307,63.221506802245074,64.9717574754454,0.2572135776101589,257.58688665563056,0.0947470241221637,92.83022961157884,112.65364,79.22846215445946,117633.04687418422,82730.44175390214,308.14483,197.2489467816752,321238.8087754654,205441.21334246156,316.33262,152.4608967557149,327157.2984430962,156734.2765314729,3408.37329,1547.5127134394088,3527186.2854636773,1584073.7555101528,1238.89319,545.4699221038799,1280340.1276013658,556323.7091566146,2031.65078,852.7625277218818,2092347.927783057,865252.5343800875,0.38011,100000,0,512062,5346.956676099283,0,0.0,0,0.0,26316,274.248958409473,0,0.0,29167,301.3668591477231,1863963,0,66973,0,0,0,0,0,49,0.5116585044952855,0,0.0,0,0.0,0,0.0,0.06643,0.1747651995474994,0.310401926840283,0.02062,0.3159478435305918,0.6840521564694082,25.110862180730624,4.4565165793916695,0.3271737016144719,0.2131880957012254,0.2277766971406341,0.2318615055436685,11.158868015112386,5.682333333126615,21.9587490439526,12621.77873243204,58.031639117823225,12.938246484244946,19.06494087935293,12.98230047585506,13.0461512783703,0.5600077805874344,0.7746350364963503,0.7063020214030915,0.5952177625960717,0.1216442953020134,0.7175856929955291,0.912568306010929,0.8690744920993227,0.7340425531914894,0.147410358565737,0.5043432482232166,0.7054794520547946,0.6481033091202583,0.5511811023622047,0.1147715196599362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018645562052227,0.0041582993569849,0.0064269179222677,0.0082115490152238,0.0106203332587332,0.0127526075619295,0.0147556697666829,0.0171111201862212,0.0191784743094318,0.0215366347984523,0.023504930602538,0.0254227716571006,0.0273347113812359,0.0296232206497332,0.0315879633451663,0.033624476717143,0.0356599418261616,0.0376350776761454,0.0397688894431108,0.0417946821916952,0.0571860974846049,0.0717228973624213,0.085126237208522,0.0974238235881481,0.108863320268049,0.1249669721086062,0.1380429250084832,0.1504863668291437,0.162031103135948,0.1721730738298214,0.1853990069256702,0.1980437981476672,0.2099897730487194,0.2210410035983419,0.2307692307692307,0.2415091831535104,0.2524026923549176,0.2616546770689092,0.2712488075228274,0.2795080182028679,0.2873962421421873,0.2940935576720567,0.3013513673563654,0.3083053288526164,0.3145869306160169,0.3210647063176851,0.3267653329988711,0.331463753521396,0.335872315577759,0.340416253716551,0.3409204366069862,0.3404909243766969,0.3399387446895597,0.34061722681784,0.3407947611251674,0.340301439666022,0.3390123574295277,0.3396993694331484,0.3407421359954793,0.3403661351801149,0.3407368500037517,0.3420677925879049,0.3427340056069292,0.3430227354099534,0.3445444915254237,0.3467139948843765,0.3486791375124946,0.3513436968972245,0.3533106424786835,0.3548169327297276,0.3564762121557022,0.3576766124330913,0.3611180904522613,0.3628284976454504,0.3652508926893441,0.3666548505258182,0.3645387904703726,0.3679361179361179,0.3698324022346368,0.3675654242664552,0.0,1.9907979382502592,59.29241952595954,186.5585250764396,292.6911240891931,fqhc4_100Compliance_baseline_low_initial_treat_cost,58 -100000,95729,42936,404.9243176049055,6725,68.88194799903896,5229,54.02751517304056,2125,21.822018406125625,77.31464774318667,79.68058171510137,63.30648041847581,65.05584986195662,77.05457498250398,79.42132931452353,63.21090804145442,64.96328441895079,0.2600727606826893,259.25240057783583,0.0955723770213907,92.56544300582448,112.35422,79.06583496740703,117366.73317385536,82593.16922500706,309.72771,198.03242962166067,322943.61165373086,206264.9916497236,317.79388,153.0469253363864,328389.4744539272,157087.73447949518,3440.30847,1559.4986536194197,3557039.768513199,1592316.9531850491,1225.80467,540.7794748911102,1265666.945230808,550091.7940081536,2082.34668,868.2899593212566,2139450.072600779,874929.1560665421,0.3796,100000,0,510701,5334.8515079025165,0,0.0,0,0.0,26507,276.26946902192645,0,0.0,29375,303.2518881425692,1862946,0,66832,0,0,0,0,0,52,0.5432000752123181,0,0.0,0,0.0,0,0.0,0.06725,0.1771601685985247,0.3159851301115242,0.02125,0.3190947666195191,0.6809052333804809,25.160015684868405,4.471527156614931,0.3166953528399311,0.2222222222222222,0.2352266207687894,0.2258558041690571,11.187980901236005,5.714155853663338,22.569481420489627,12638.602859791,59.26365892628369,13.851245514010312,18.65021075801675,13.702943115419,13.059259538837615,0.5580416905718111,0.7874354561101549,0.6914251207729468,0.6,0.1016088060965283,0.7291196388261851,0.9199029126213591,0.8746928746928747,0.752851711026616,0.145748987854251,0.4997435897435897,0.7146666666666667,0.6317053642914331,0.5584281282316442,0.0899357601713062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374664438028,0.0043596840749865,0.0066891329503237,0.0090133116553195,0.0112518439391627,0.0133155385305024,0.0153844584323767,0.0174797329031467,0.0195755729560648,0.0214671798861635,0.0236230160357626,0.0258340093027076,0.0280815083781643,0.0302830470577325,0.0323912549804909,0.0345497777318308,0.0366469918194056,0.0386423301615631,0.0408738328446357,0.0429007490441613,0.0576535566251474,0.0718435017427073,0.0853108411489477,0.0985908087075402,0.1112235966549611,0.1266595436321129,0.1392482990670077,0.1508917638289943,0.1626293508936971,0.1732471908906513,0.1862900529545626,0.1986931504177367,0.210178799071683,0.2207244232560688,0.2314129775621589,0.2419666451999733,0.2518680925321043,0.2617473888425184,0.2705454131831883,0.2793761269797516,0.2868075928524217,0.294569191824489,0.3013422500474293,0.3074808207172271,0.313094456201805,0.3189153178049743,0.3245815022098686,0.3293500808103946,0.3345240868732365,0.3396405543322037,0.3395212966453072,0.3385100002751107,0.3384271180716788,0.3393844865184928,0.3396431226765799,0.3385700053643957,0.3381625665736749,0.3394361100144756,0.3407737076343718,0.3408595230433695,0.3429188174565931,0.3437141387361007,0.3453019010133155,0.3463361201770465,0.3472098563418919,0.3486528078457967,0.3492422076065198,0.3522501810852518,0.3542325254654022,0.3577316713790769,0.3603772721029257,0.3626221107137137,0.3633935385398117,0.3638743455497382,0.3665046230101992,0.3649345973838953,0.3710603943487036,0.3710783295242053,0.3733221476510067,0.3730407523510972,0.0,2.23413577128731,58.57188371231971,202.1104831351564,290.43657260656187,fqhc4_100Compliance_baseline_low_initial_treat_cost,59 -100000,95808,43168,406.8240647962592,6627,67.96927187708751,5217,53.79509018036072,2092,21.37608550434201,77.3504688262772,79.68142647821705,63.33176974345843,65.0595487581075,77.08692536853572,79.4219380575513,63.23456692706792,64.96720125972308,0.263543457741477,259.48842066574684,0.0972028163905065,92.34749838441304,112.51526,79.19183442398084,117438.2723780895,82656.80780726123,307.20682,196.2194433304672,319989.9590848364,204146.4213118604,316.31383,151.8742285737438,326110.794505678,155449.36655103153,3431.77275,1555.9069313732448,3539755.5840848363,1581812.8041220405,1259.08599,552.9909762741648,1297054.7970941884,560069.0957526931,2058.8997,861.852057353957,2105831.558951236,861777.445792592,0.38115,100000,0,511433,5338.10328991316,0,0.0,0,0.0,26338,274.2255344021376,0,0.0,29186,300.6638276553106,1866628,0,67073,0,0,0,0,0,40,0.41750167000668,0,0.0,0,0.0,0,0.0,0.06627,0.1738685556867375,0.315678285800513,0.02092,0.3237534128466733,0.6762465871533266,25.03048641006178,4.465107811775053,0.3329499712478436,0.2141077247460226,0.2256085873107149,0.2273337166954188,11.127980027947984,5.6313869513455845,22.22139114607188,12678.627836711312,59.02510530891787,13.147892791737524,19.5453258719636,13.216306100095856,13.115580545120904,0.5600920069005175,0.7878245299910475,0.7127230857800806,0.578589634664401,0.1037099494097807,0.7184841453982985,0.9362880886426592,0.874384236453202,0.7163120567375887,0.1393442622950819,0.5079001019367991,0.716931216931217,0.6634109691960932,0.535195530726257,0.0944798301486199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0048365999817486,0.0070841368111235,0.0093474086341607,0.0115242996928209,0.0137499745370841,0.0160726123094181,0.0185033902458949,0.0204695104494703,0.0226030342116577,0.0246300872614665,0.0269856754120244,0.0291649526943644,0.030988990617823,0.0329304263525917,0.0350688668230334,0.036882912538948,0.0388329374669391,0.0408629863651479,0.0429341828554771,0.0574409263992488,0.0717392668186285,0.0849935547427661,0.0976852678805964,0.1107552258934592,0.1258864686050075,0.1385292402311648,0.1500074466500712,0.1611360239162929,0.1720360962853407,0.1845450142603454,0.1976408515423122,0.2090825139877234,0.2204308714708872,0.2308183158404295,0.2413873344783644,0.251540384872974,0.2614264330170735,0.2715109940032709,0.2797534485129004,0.2882295742365661,0.295807108261775,0.303214657702869,0.3097389678563724,0.3154504351208129,0.3212695358275049,0.327708247203117,0.3331719375143345,0.337987269733857,0.3422259219619191,0.3423162042534816,0.3418722065883132,0.3414713357808528,0.3411681221126413,0.341390447556819,0.3399705467263914,0.3389182413886112,0.3396847336031856,0.3412392833307665,0.3418867654427027,0.343480952112993,0.3448153057792374,0.3446807618088766,0.3459315350837889,0.347968655816757,0.3476545145694499,0.3472341154307244,0.349675467893377,0.3520454704932987,0.3533272343979953,0.3557346446296043,0.3588981476567061,0.3608799798285426,0.3633394105135217,0.3670217780710851,0.3682528409090909,0.3710691823899371,0.371301175516822,0.3745544282972306,0.3836985774702037,0.0,2.474805276299929,56.61451351108101,204.0845220797191,291.82669244778526,fqhc4_100Compliance_baseline_low_initial_treat_cost,60 -100000,95722,43210,406.7821399469297,6760,69.41977810743612,5313,54.96124192975492,2174,22.387747853158103,77.30949638025908,79.66867465452128,63.31695901961641,65.05906868263085,77.04811765602719,79.4057323924972,63.221957744364914,64.96564327317962,0.2613787242318892,262.9422620240831,0.0950012752514979,93.42540945122836,112.19802,78.93820824704564,117212.13514134682,82465.87853058403,310.33373,198.1650573171259,323662.68987275654,206480.98380427275,323.73377,155.69874171545445,334632.6549800464,159998.95900263995,3502.11456,1586.753137488368,3627130.5133616095,1626167.9107084773,1300.86776,565.3065068752974,1348000.564133637,579565.6660697617,2135.95252,881.1745072794786,2201807.087189988,895806.6449621095,0.38072,100000,0,509991,5327.824324606674,0,0.0,0,0.0,26484,276.11207454921544,0,0.0,29863,308.3303733728923,1864817,0,67014,0,0,0,0,0,56,0.5850274753975053,0,0.0,0,0.0,0,0.0,0.0676,0.1775583105694473,0.3215976331360947,0.02174,0.3284732931445395,0.6715267068554606,25.00547475562743,4.531963273798704,0.3246753246753247,0.2168266516092603,0.2300018821757952,0.2284961415396198,11.31869086917617,5.761219731068477,22.99085123708811,12710.570352366296,60.10307589350611,13.626092851807549,19.573273766975717,13.573020170611056,13.330689104111796,0.5667231319405233,0.7864583333333334,0.7171014492753623,0.5924713584288053,0.1186161449752883,0.7349397590361446,0.935656836461126,0.8648648648648649,0.7148014440433214,0.1923076923076923,0.5106649937264742,0.7150192554557124,0.6658860265417642,0.5566137566137566,0.1010204081632653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153735530326,0.0043183845592409,0.006614722830939,0.0091005119037945,0.011548823260306,0.0138426618624487,0.0162564337766906,0.0182408361999448,0.0204407015248763,0.0225972510771561,0.024867003556822,0.0270961250179682,0.0293984575835475,0.0315949909375514,0.0336516645352914,0.035696573955449,0.0378377818945799,0.0396681358568835,0.0417493790078676,0.0437703773919021,0.0584347099671069,0.0721238382316001,0.0855218996475918,0.098935879371622,0.111298571202615,0.1270160224208132,0.1397512891793816,0.1525448990237722,0.1636754054227293,0.1732579835717502,0.1859816205384557,0.199110062144079,0.2115962216515039,0.2228983572108702,0.2333017683719086,0.2446929975280176,0.2551466070929908,0.265242906543214,0.2743289448275078,0.2819055042296142,0.2890023502714969,0.2967119120056166,0.3035276563998721,0.3087960074859638,0.3149879061174382,0.3209374036386062,0.3255188124264651,0.3306214430312058,0.3360170095808538,0.3404294705664569,0.340650889170737,0.3400184702752622,0.3398272065051668,0.3397496200882842,0.3396636727884773,0.3385863054096397,0.3380391408721642,0.3392327466877595,0.3396812325218316,0.3406423829176386,0.3421736184309591,0.3430327379768487,0.3443023574272653,0.3452442564298733,0.3449680046538685,0.3468023179589375,0.3477148605921242,0.3505268820606942,0.3519205625640482,0.3542472196755291,0.3562797510069571,0.3599679315873864,0.3622287092270593,0.3627292961854325,0.3616435756310495,0.3674468593264867,0.3711148909850008,0.3677539995844587,0.3740606735318675,0.3750484308407594,0.0,2.0646219944090176,58.51720213183632,203.2359880413818,301.9091885875824,fqhc4_100Compliance_baseline_low_initial_treat_cost,61 -100000,95735,43047,405.29586880451245,6797,69.7237165091137,5285,54.629968141223166,2112,21.695304747480023,77.40440741590693,79.76104713193014,63.3594678928421,65.0991359414041,77.14185396094585,79.49926463948405,63.26284227452624,65.00541496860416,0.262553454961079,261.78249244608764,0.0966256183158549,93.72097279994308,111.8579,78.61272522717228,116841.17616336764,82114.92685765108,309.44569,196.74549229607075,322677.2758134433,204956.27753284664,312.97342,150.34824201219496,323238.9617172403,154191.04317497378,3513.07486,1574.426890459074,3634068.971640466,1609054.1186181384,1303.22456,571.8760349084289,1344134.590275239,580210.3342514635,2089.8018,871.2798621714331,2148488.389826082,879769.6228662932,0.38029,100000,0,508445,5310.962552880347,0,0.0,0,0.0,26450,275.6985428526662,0,0.0,28809,297.29983809474066,1874297,0,67224,0,0,0,0,0,65,0.6685120384394422,0,0.0,1,0.0104455006006162,0,0.0,0.06797,0.1787320203002971,0.310725319994115,0.02112,0.3152585119798234,0.6847414880201765,25.24340608727697,4.54504975743959,0.3201513718070009,0.2100283822138126,0.2285714285714285,0.2412488174077578,11.075845155930615,5.513686865320256,22.410995269219644,12698.336037765848,58.96799669974891,12.819535329198748,18.898492932450065,13.234962371909573,14.015006066190528,0.5434247871333964,0.7648648648648648,0.6903073286052009,0.5720198675496688,0.1286274509803921,0.711824588880188,0.9093484419263456,0.8805970149253731,0.7301587301587301,0.1851851851851851,0.4897704590818363,0.6974900924702774,0.6310077519379845,0.5303347280334728,0.1134328358208955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274646389988,0.0045806941981251,0.0066954775092823,0.0088356268724927,0.0109198499283194,0.0133652280130293,0.0155821656050955,0.0178667999959184,0.0199341997711296,0.0223995906881555,0.024505232087403,0.0267468593480581,0.0290634316850005,0.0313430222377867,0.0335754674150811,0.0355189844630286,0.0375920383583774,0.039533605120385,0.0413942902277049,0.0435480007082669,0.0574023804552098,0.0712648730103914,0.0850519248924787,0.0974819954791568,0.1094843578716586,0.1245796942077103,0.1377817853922452,0.1502634800660031,0.1625089475539791,0.17367478471619,0.1870611295394821,0.1995022183746347,0.2107530156520226,0.2219330570469431,0.2326277340139946,0.2432258850365974,0.2537628170082676,0.2632709282059931,0.2718323277230867,0.2804194043176667,0.2882106163394085,0.2956740031525483,0.3030181371622898,0.3090822179732314,0.3158914963472698,0.3212327588326408,0.3266739133150917,0.3323006602336211,0.3373696385417609,0.3419957872564507,0.341701253173228,0.3414620750260889,0.3407004372460528,0.3414535646805994,0.3417276850561764,0.3402128049899101,0.3393071812717494,0.3406166505482977,0.3408113825576634,0.3410813992900083,0.3428737441895336,0.3433719433719434,0.344572351177371,0.3466526541746791,0.3487158522508657,0.3488754370401294,0.348966184124456,0.3506171288590182,0.3545783174814866,0.3557081613210543,0.3591821866035244,0.3623543185567558,0.3650613786591123,0.3661821779164447,0.3692437289404717,0.3766969661197025,0.3767648864333947,0.3823767178658043,0.3927677329624478,0.3893735130848533,0.0,2.2356538955542407,55.90355533357195,193.3627419990825,310.44258613113374,fqhc4_100Compliance_baseline_low_initial_treat_cost,62 -100000,95750,43215,405.6083550913838,6767,69.39947780678851,5278,54.55874673629243,2111,21.671018276762403,77.33232137485312,79.6967454805041,63.31916690730778,65.07046033715895,77.0673683302507,79.42942625995724,63.22251831258595,64.97454778028867,0.2649530446024215,267.31922054686663,0.0966485947218345,95.91255687027456,111.9349,78.68387558699726,116903.28981723238,82176.37137023213,306.9151,196.4073847339961,319977.9425587467,204565.1851007793,320.85738,155.19243657098838,330656.0,158768.19505087563,3442.1407,1566.7791007915662,3562462.7571801567,1603860.564795371,1280.97123,562.1659050281714,1323557.994778068,572866.2798326798,2064.62276,862.8712687111617,2122713.691906005,876851.5919365328,0.38188,100000,0,508795,5313.785900783289,0,0.0,0,0.0,26227,273.32637075718014,0,0.0,29620,304.88772845953,1868793,0,67139,0,0,0,0,0,49,0.5117493472584856,0,0.0,0,0.0,0,0.0,0.06767,0.1772022624908348,0.3119550761046253,0.02111,0.3173955843060048,0.6826044156939952,25.12393162319129,4.433934167174059,0.3243652898825312,0.218075028419856,0.2381583933308071,0.2194012883668056,11.369606905667576,5.940456866087189,22.682878521749643,12737.110394713409,59.80467253021387,13.610678952345504,19.18811956092893,14.240934253473354,12.764939763466096,0.5604395604395604,0.7688966116420504,0.6991822429906542,0.5775656324582339,0.1295336787564766,0.7453874538745388,0.9399477806788512,0.8995327102803738,0.6876971608832808,0.2070484581497797,0.4965587560540402,0.68359375,0.632398753894081,0.5404255319148936,0.1106337271750805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0049396991550781,0.0072496141661928,0.0095942759573949,0.0118621307072515,0.0144354682613257,0.0168067226890756,0.0189077989565998,0.0213077041051071,0.0236691236691236,0.0259259638943278,0.0282323470833418,0.0302519280205655,0.0322876328582021,0.0345827272070733,0.0365868783331266,0.0388697335859762,0.0409266329155946,0.0429292929292929,0.0449281399708394,0.0592594912264219,0.0732153879955221,0.0869515059988254,0.0993481232257386,0.110756157219973,0.1267556476859294,0.1396513490859319,0.1521505433567847,0.1640235372013797,0.1748868826796474,0.1880411838194115,0.2008656135035706,0.2133945373260961,0.2245833151056476,0.2350695361323827,0.2457068833800197,0.255224196985418,0.2649752475247525,0.2736474219317356,0.2819575998442349,0.2885993032971866,0.2954247601216944,0.3020404298631823,0.3088550844511574,0.3149831118022987,0.3202899622753162,0.3256553416289026,0.330831372050124,0.3360879758558605,0.3399862717144516,0.3402974218055443,0.33997493906889,0.3397888564703229,0.339423549478188,0.3394854253420583,0.3383115090925818,0.3372019178865145,0.3382152308627973,0.3382159399729947,0.3387671110315827,0.3395843129878679,0.3409289400555776,0.3427260674677497,0.3441466537865342,0.3452608180917635,0.3463118507470497,0.3464834599782894,0.350526548812498,0.3529245947850599,0.3570001598210005,0.3591314285714285,0.3598691969550767,0.3586589330103894,0.3582204433497536,0.3602150537634409,0.3623788129581461,0.3650311408172565,0.3644596498289394,0.3690998902305159,0.3680555555555556,0.0,2.13589948467893,59.68750494814808,202.44480147257585,293.19269106457045,fqhc4_100Compliance_baseline_low_initial_treat_cost,63 -100000,95729,43196,407.3582717880684,6717,68.7983787566986,5217,53.95439208599275,2098,21.59220298968965,77.41699606751023,79.77068601551976,63.36600846061516,65.10081336021916,77.16534558620752,79.51829747863204,63.27341661330341,65.01022132343432,0.251650481302704,252.38853688772167,0.0925918473117519,90.59203678484096,111.32726,78.38235336841069,116294.18462534864,81879.42354815228,308.63612,197.5421154622343,321818.62340565555,205779.8372181782,321.71983,155.74741279816976,332603.4534989397,160071.63806932344,3428.28628,1558.659643785334,3547524.950641916,1595200.474850594,1299.75564,575.0532571382346,1343057.5478695063,586302.5356916481,2068.0863,856.8400908529127,2129657.6168141314,868651.7303218226,0.38088,100000,0,506033,5286.099301152211,0,0.0,0,0.0,26346,274.629422640997,0,0.0,29737,307.19008868785846,1872213,0,67149,0,0,0,0,0,55,0.5745385410899518,0,0.0,0,0.0,0,0.0,0.06717,0.1763547574039067,0.3123418192645526,0.02098,0.3211295586774514,0.6788704413225486,24.89568620869979,4.52862127567234,0.318765574084723,0.2231167337550316,0.2261836304389496,0.2319340617212957,11.51357320660208,5.881582680606317,22.130029296309136,12650.727965700851,58.84938299416935,13.737512078631957,18.65154047219428,13.242959669479315,13.217370773863784,0.5616254552424765,0.7955326460481099,0.6939266386049309,0.5872881355932204,0.1297520661157024,0.7339791356184798,0.9398496240601504,0.8782816229116945,0.7397769516728625,0.1686274509803921,0.5019354838709678,0.7202614379084967,0.6318327974276527,0.5422612513721186,0.1193717277486911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022672523735298,0.0044778085078361,0.0066029698149951,0.0086008184486032,0.0106454367984382,0.0128565320955231,0.0154217800790965,0.0176872831190038,0.0198050156355386,0.021801180598893,0.0238246505717916,0.0261396990907038,0.0284645195777094,0.0307196407974954,0.0328261205962758,0.0349584590584053,0.0369499948234806,0.0392250409674542,0.041218470364481,0.0429614659402248,0.0581386849881488,0.0720391742437717,0.0855749055812001,0.0981247962306616,0.1104900120235408,0.1258341882330544,0.1386702590321827,0.1510484300159659,0.1626356721647722,0.1732579835717502,0.1869670083555862,0.1999004716777013,0.210926716876963,0.2218120255584075,0.2322075981630814,0.2419183538001991,0.2525217623914667,0.2613933937983973,0.2700845785809845,0.2789545355716525,0.2875294824954909,0.2953246783598396,0.3021375200983637,0.3082559141844651,0.3139920142723643,0.3196216562392236,0.3247605711285039,0.3301170817283856,0.3350576124768838,0.3403559657218193,0.3408161618335396,0.3404664715018073,0.3401469718726244,0.3397800037581486,0.3396035779025883,0.3387526407642142,0.3376588480748562,0.3385028577043381,0.3394332839203258,0.3399946614467479,0.3411226300551041,0.3424166650258914,0.3438603824851081,0.3447308668358488,0.3463889354970157,0.345550010397172,0.3454535124847314,0.3480711422845691,0.3512171236709569,0.3538388550644422,0.3568904593639576,0.359919606494949,0.3631302389590892,0.3661006624533617,0.3688141923436041,0.3717032000937756,0.3760593220338983,0.3787727363581851,0.3830480847595762,0.3883677298311445,0.0,2.0254144886478698,59.03354904050914,194.20061705482863,294.6015562707844,fqhc4_100Compliance_baseline_low_initial_treat_cost,64 -100000,95700,43123,407.81609195402297,6674,68.67293625914316,5165,53.437826541274816,2079,21.38975966562173,77.3508434030137,79.74203063125022,63.31502979323547,65.08295815511347,77.09574263194176,79.48575965763645,63.22155114487294,64.99139318819402,0.2551007710719375,256.2709736137663,0.0934786483625274,91.56496691944938,112.92578,79.46012767195522,117999.77011494254,83030.43643882468,310.00241,198.64708829666452,323418.11912225705,207059.37126088256,319.83974,153.903586983031,330873.63636363635,158269.5003922164,3408.75367,1539.8532518611976,3527445.600835946,1574571.6006909062,1268.73856,551.3813005775945,1309706.959247649,560117.3464760655,2047.26254,850.5525628155533,2107082.7586206896,860846.0995759015,0.38038,100000,0,513299,5363.625914315569,0,0.0,0,0.0,26395,275.27690700104495,0,0.0,29537,305.25600835945664,1861104,0,66798,0,0,0,0,0,65,0.6792058516196448,0,0.0,0,0.0,0,0.0,0.06674,0.1754561228245438,0.3115073419238837,0.02079,0.3233915636983383,0.6766084363016617,25.46780380916686,4.438587711636115,0.3283639883833494,0.2143272023233301,0.2247821878025169,0.2325266214908035,10.93358385121253,5.55476306108655,22.061754309872924,12588.923304160608,58.24362857675764,13.053026584894758,19.051121106446587,12.902473316533133,13.237007568883165,0.5533397870280736,0.7850045167118338,0.6969339622641509,0.5650301464254953,0.1257285595337219,0.7033639143730887,0.9081081081081082,0.8511166253101737,0.7027027027027027,0.1380753138075313,0.5024630541871922,0.723202170963365,0.6488785769528229,0.5179190751445086,0.1226611226611226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122319357354,0.0050298648223828,0.0073191282014841,0.0097772176599723,0.0118618893568536,0.0140278315437745,0.016158483714003,0.0183119880711644,0.0203516020494779,0.0224493558099997,0.0246026048610398,0.0264476900638852,0.0284712150667036,0.0303114600397696,0.0322507404770013,0.0342068537757791,0.0360628224519818,0.0381956697735245,0.039879342625338,0.0418599318316847,0.0566394418565788,0.0710284679251604,0.0847888151817952,0.0982221754681254,0.1111357235530521,0.1264229190470145,0.1398927983866688,0.1512618464487275,0.1619102588768464,0.1720800472128333,0.1851867819189067,0.1973523267267787,0.208516934860898,0.2196178845775064,0.2300604379272763,0.241246646118367,0.2515377831362961,0.2620403935784567,0.2707261389579855,0.2792153445765452,0.2867879517793244,0.2943677312814026,0.3008580028916119,0.3062042481699268,0.3119451268455233,0.3173387594031323,0.3225358282746104,0.3279080717203466,0.3332470289723739,0.3375323509216711,0.3370635027639207,0.3371710299808574,0.3377860444143839,0.3381352136282853,0.3375230011277972,0.336918933806653,0.3362973276584972,0.3369476067058167,0.3379677865646404,0.3387145685795323,0.3390090849489557,0.340358355039861,0.3409423470880889,0.3424581130223323,0.3427488060668602,0.3437369845897542,0.3455761491809783,0.348370143277232,0.3501205745640093,0.3535874616051035,0.3550600343053173,0.356472201709041,0.3579474342928661,0.3606108958285844,0.3617041286560707,0.3637986433416637,0.3638307621811517,0.359040959040959,0.3605756177029595,0.3642332947083816,0.0,2.1035016797023163,57.646237900939965,194.31465578450133,291.59669353018967,fqhc4_100Compliance_baseline_low_initial_treat_cost,65 -100000,95724,43407,409.3435293134428,6747,69.20939367347792,5238,54.14525092975638,2099,21.624670928920647,77.26691653433518,79.62695613845182,63.2951211478972,65.03904589717656,77.01080029983615,79.36919338458993,63.20108589009488,64.94614656760791,0.2561162344990322,257.76275386188274,0.094035257802318,92.89932956865243,111.69136,78.59929225375552,116680.6234591116,82110.32996297222,309.22099,197.6305244095541,322440.6522920062,205865.4302051252,318.37264,153.6439846213544,328029.7626509548,157037.23904455823,3441.09639,1563.679986649692,3562779.459696628,1601498.6906624157,1271.51276,558.7664368585766,1313349.901801011,568772.8495230353,2070.50312,864.688357871182,2135577.305586896,881250.8187092048,0.38363,100000,0,507688,5303.664702686891,0,0.0,0,0.0,26432,275.51084367556723,0,0.0,29441,303.1110275375036,1865444,0,66996,0,0,0,0,0,63,0.6581421587062806,0,0.0,0,0.0,0,0.0,0.06747,0.1758725855642155,0.3111012301763747,0.02099,0.3212155637602953,0.6787844362397046,24.90458445759711,4.508632588566012,0.3293241695303551,0.2140129820542191,0.2254677357770141,0.2311951126384116,11.12944209551107,5.480061573138336,22.58722603973858,12752.37607406665,59.581013149836046,13.185527922647497,19.68754440680912,13.229605030670504,13.478335789708924,0.5509736540664376,0.7671721677074042,0.6968115942028985,0.5757832345469941,0.1189099917423616,0.7261287934863064,0.9263157894736842,0.8733031674208145,0.7262773722627737,0.1725490196078431,0.4900951890918446,0.6855600539811066,0.6360093530787218,0.5303197353914002,0.104602510460251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599238342178,0.0047044986768597,0.0069204854487153,0.0092339573958005,0.0115330634827004,0.0135623593617952,0.0158521418231492,0.0181502654144548,0.0203226268119645,0.022754491017964,0.0247252747252747,0.0266521565044197,0.0286595711861792,0.0305805042847725,0.0325908654788556,0.0347001850263068,0.0368441218196315,0.0390604737055058,0.0412240400806602,0.0432173369451969,0.0579698039133794,0.0717889140082056,0.0847735070985614,0.0975697001578116,0.1099987340703856,0.1260210775807339,0.138759739294737,0.1513066814338352,0.1629456170740574,0.174191193834396,0.1878489963995429,0.2003402208184802,0.2121373813049917,0.2230398598335523,0.2335643378909908,0.2449527741706345,0.2546149803772488,0.264114379710896,0.2731930071677666,0.2826682562791604,0.2905604036943589,0.2980745596067186,0.3056746323094048,0.3123335652424249,0.3181663424124513,0.3238731012697277,0.3289028213166144,0.3342255531763026,0.3398014147576091,0.3439010501503052,0.3435310665692878,0.3434173049802284,0.3439003679592414,0.3436801949464767,0.342611653092276,0.3423776783104917,0.3412534216054491,0.3420162102378712,0.3431315283122594,0.3438958707360862,0.3439454449551654,0.3445939232557677,0.3451825910845763,0.3458986527518499,0.345338726475646,0.3469248530646515,0.3475988051470588,0.3512012440889904,0.3530187468814598,0.3536728183176513,0.355441705898643,0.3575581395348837,0.3556701030927835,0.3530767457939617,0.3563251017125556,0.3588158364047081,0.3602084610668302,0.3607787467045224,0.3610118229309871,0.3639521420301042,0.0,2.189866803558264,59.554010794503775,202.65630720976037,290.0336740467632,fqhc4_100Compliance_baseline_low_initial_treat_cost,66 -100000,95708,43231,406.7894010949973,6756,69.49262339616332,5273,54.56179211769131,2116,21.77456429974506,77.288290147924,79.65733723147534,63.294707477804174,65.04389837266507,77.02798660213516,79.3963493765934,63.198965186961,64.95002704319059,0.2603035457888438,260.98785488193244,0.0957422908431766,93.87132947448151,112.1703,78.91693207212072,117200.08776695783,82455.4882268156,312.20174,199.90662845949944,325665.29443724663,208334.6241270316,320.99827,154.79598698509034,332054.69762193336,159144.92602805875,3476.07199,1568.541086381239,3599706.597149664,1606663.6704154692,1286.9987,564.1032577965724,1332120.1675930957,576806.6700762437,2076.4452,863.8241522728205,2138738.809712877,876259.1608808559,0.37982,100000,0,509865,5327.276716679901,0,0.0,0,0.0,26700,278.4302252685251,0,0.0,29643,306.4634095373428,1859210,0,66803,0,0,0,0,0,39,0.3970409997074435,0,0.0,0,0.0,0,0.0,0.06756,0.1778737296614185,0.3132030787448194,0.02116,0.3186674163621029,0.6813325836378971,25.10779583876204,4.433033018142179,0.3292243504646311,0.2114545799355205,0.2328845059738289,0.2264365636260193,11.339382496658326,5.872911433908665,22.496106436461364,12675.422741261127,59.56822444270141,13.308478471021408,19.53481199718893,13.621755632928704,13.103178341562382,0.5566091409065048,0.7766816143497758,0.6877880184331797,0.6017915309446255,0.1139028475711892,0.7197026022304833,0.9209183673469388,0.8427230046948356,0.7314487632508834,0.1680327868852459,0.5007637474541752,0.6984785615491009,0.6374045801526718,0.562962962962963,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021369469004142,0.0042882776938595,0.0065450338921134,0.0087974156321745,0.0113701082092588,0.0136240059465018,0.0158438857282681,0.0180983004134129,0.0205256110151386,0.0227907690733254,0.0248734293971754,0.027016484982858,0.029240607842734,0.0311631068361104,0.0333776856350115,0.035726465694532,0.0379155752047461,0.0399946037379492,0.0420497566252028,0.0441044667236384,0.0591847604724754,0.0727126150366965,0.0862045442619509,0.0987845303867403,0.1110407364009669,0.1260654574717025,0.1388127853881278,0.1506078654917797,0.1620257496043458,0.1731688197330412,0.185956473912387,0.1981798483206933,0.2101049925938834,0.2211857447856791,0.2315639904391598,0.2427732836201826,0.2525329337299546,0.2612294610535338,0.2705085902833087,0.2785307360102912,0.2867799756366379,0.2937657615389126,0.3009624627653893,0.3072661948306316,0.3140187826595368,0.3200138427121828,0.3255212258226576,0.3300447972636657,0.3357760972947688,0.3411831672027852,0.3407140544041451,0.3404901203223314,0.3406388303663589,0.3401073397156948,0.3404121957407435,0.3400482490511532,0.3399698340874811,0.340696602580985,0.340946893701665,0.3407123268027747,0.3422424664495849,0.3434052852948179,0.3445263157894737,0.3469076898953923,0.3481734610386485,0.34928865495857,0.3495679945250791,0.3510303106685991,0.3541263076327005,0.356624681122449,0.3585052728106373,0.3613620569840167,0.3653239045334007,0.3684692942254812,0.3678257618246401,0.3663331371394938,0.3731003039513678,0.3782206119162641,0.3735787763941526,0.3768939393939394,0.0,2.053829730586568,59.35629331757748,198.1441818724336,297.7452330119572,fqhc4_100Compliance_baseline_low_initial_treat_cost,67 -100000,95812,42547,400.597002463157,6666,68.28998455308312,5183,53.33361165615998,2026,20.63415856051434,77.36488025655099,79.67941115485671,63.35773544642036,65.07095336170913,77.10705202209057,79.42670746468124,63.26180841382241,64.98038687930247,0.257828234460419,252.7036901754656,0.0959270325979488,90.56648240665766,114.18066,80.30771171887116,119171.33553208366,83817.79393068838,310.65648,198.5192504849184,323455.84060451714,206417.89463106747,314.16657,151.79416160219694,323028.9316578299,154638.87809158574,3409.10837,1543.2264117677682,3510579.530747714,1563199.159801246,1242.12039,543.9220193561127,1278113.597461696,549396.5571704094,1997.49252,839.2115344462246,2037501.87867908,834631.6283706406,0.37666,100000,0,519003,5416.878887821985,0,0.0,0,0.0,26559,276.3954410720995,0,0.0,28999,297.86456811255374,1861003,0,66811,0,0,0,0,0,60,0.6262263599549117,0,0.0,0,0.0,0,0.0,0.06666,0.1769765836563479,0.3039303930393039,0.02026,0.3217552887364208,0.6782447112635792,25.07697599298338,4.524951681038647,0.339764615087787,0.2058653289600617,0.2270885587497588,0.2272814972023924,11.233692364209304,5.604100703137253,21.63615468387339,12484.307888526584,58.57118143271083,12.635466152425623,19.80111170127945,13.176402580109032,12.958200998896723,0.5535404206058268,0.7656982193064668,0.7047132311186826,0.566694987255735,0.1222410865874363,0.718558282208589,0.918918918918919,0.8627906976744186,0.7078651685393258,0.1561181434599156,0.4980665119876257,0.6843615494978479,0.6536438767843726,0.5252747252747253,0.1137088204038257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0043898779350338,0.0064432989690721,0.0086641205866818,0.0107381458394769,0.0128090253736814,0.014862688332076,0.0170998632010943,0.01928974484789,0.021434054966989,0.0237978108473742,0.0259946840717137,0.0279756215377342,0.030228800214082,0.0322740251306525,0.0343453530025085,0.0364405552452471,0.0384930215208629,0.0407455479985462,0.0427617204569573,0.0573565304462106,0.072018396571548,0.0847178864003017,0.0975069310257918,0.109753657226511,0.1247465574047478,0.1375949487779814,0.149369080143299,0.1601126592271747,0.1707727243514214,0.1838447303868829,0.1960688916999124,0.2080472009735744,0.2190715456034953,0.2288289278452492,0.2400959985843526,0.2503537170931696,0.2590824863832893,0.2687028606373581,0.2763935738379738,0.2844586634635374,0.2904679618905287,0.2977581866956593,0.3035936453249114,0.3103804169651639,0.3157953075928321,0.3211511763160857,0.3258907000991786,0.3306590406190556,0.3349411563146588,0.3349076279282552,0.3345394012766894,0.3346771919932337,0.3341866620384431,0.3339088500580478,0.3333589051184485,0.3324073339153901,0.3336737214856295,0.3346024559237154,0.3356328841743119,0.3360592413936047,0.3373295160841385,0.3376292458988776,0.3389423076923077,0.3405741258067623,0.3421801938298373,0.3424719997720083,0.3440375646035548,0.3474492671927847,0.3503897661403158,0.3543256412613772,0.3573192997529803,0.3567187998723268,0.3591527520098949,0.3579420483886392,0.357588108367298,0.3598014888337469,0.3629995879686856,0.3791285040244241,0.3821928460342146,0.0,2.9327076376178582,56.43068497724307,197.00297729353235,293.94680394926297,fqhc4_100Compliance_baseline_low_initial_treat_cost,68 -100000,95644,43102,406.7688511563715,6649,68.46221404374555,5137,53.19727322152984,2086,21.496382418133912,77.2563444549925,79.66525668432848,63.27473565930678,65.05507529663363,77.00122748145067,79.40946295670183,63.18224839829802,64.96484666261094,0.2551169735418312,255.79372762665287,0.0924872610087561,90.22863402269364,112.5465,79.22333433723745,117672.3056333905,82831.47331483151,309.25564,198.06512461613775,322831.0401070637,206576.4759066306,312.24499,150.4418388222728,323111.3922462465,154768.0503782371,3399.04229,1521.077337545102,3521901.645686086,1558406.8603834051,1284.8183,553.7752545589484,1332397.1707582285,568059.5798575432,2052.52082,844.674616787364,2116606.896407511,857048.6229518811,0.38035,100000,0,511575,5348.741165154112,0,0.0,0,0.0,26390,275.39626113504244,0,0.0,28899,298.774622558655,1860047,0,66791,0,0,0,0,0,55,0.5750491405629208,0,0.0,0,0.0,0,0.0,0.06649,0.1748126725384514,0.3137313881786734,0.02086,0.3221841052029731,0.6778158947970269,25.26216192008769,4.467133499993482,0.323729803387191,0.2168580883784309,0.22328207124781,0.236130036986568,11.208658227631178,5.681405673802579,22.18121874112641,12647.882276599554,58.04383742721667,13.380594617736527,18.645961518486097,12.649485985162368,13.367795305831669,0.5592758419310881,0.7854578096947935,0.6987372218881539,0.5876198779424586,0.133553173948887,0.7056936647955092,0.8903743315508021,0.8503937007874016,0.7027027027027027,0.1759656652360515,0.5123393316195373,0.7324324324324324,0.6536661466458659,0.5540540540540541,0.123469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193396465285,0.0045407092831152,0.0065760764773338,0.0088588176729348,0.0110387628446434,0.0133553375508083,0.0155765464338175,0.0177060770771179,0.0200171838880592,0.0224762841395701,0.0247598916434083,0.0266578971708099,0.028794679624444,0.0308788353678653,0.0332730747378751,0.0352959437086092,0.0371119058725962,0.0390800299177262,0.0410410097919853,0.0428705538750391,0.0568427653237184,0.0713208179684881,0.0845196103132611,0.0976074439754534,0.1102646351242983,0.1253015617725483,0.1377374509179667,0.1496022745423761,0.1614385721156415,0.1723893729344607,0.1856586932853277,0.1988148244445166,0.2102030147251024,0.2207733862219349,0.2310627364056417,0.2421999001054442,0.2518565740616472,0.2623933646618659,0.2719689996477232,0.28027939624719,0.2879221788078702,0.2947396804182933,0.3023106851394951,0.308594547222589,0.3153133408822491,0.320824171751859,0.3261087698173791,0.330536249442071,0.3354363008541683,0.3398693674635075,0.3394894225966277,0.339762795642509,0.3400905361437261,0.3401518560996501,0.3395521830701898,0.3394845884871917,0.3380221179091415,0.3381746162733124,0.3392045454545455,0.3404695511378969,0.3423477866747242,0.3433031980564738,0.3431759222154261,0.3439885067792044,0.3458406823068931,0.3470680628272251,0.3497377396887271,0.3522921277268416,0.3535101294316263,0.3562194200246629,0.3565261090045228,0.3588087740833645,0.3602740595064391,0.358673274876096,0.3603461109043543,0.3606750855659152,0.3598187311178247,0.3627234384414541,0.3574134199134199,0.3668981481481481,0.0,1.945759353874024,55.12094314879006,200.94152030087383,291.42416304103745,fqhc4_100Compliance_baseline_low_initial_treat_cost,69 -100000,95694,42920,404.4454197755345,6562,67.42324492653667,5113,52.86642840721466,2052,21.067151545551443,77.32722884548278,79.70630379070639,63.32110870231941,65.07694469390495,77.0805668093611,79.45904118286158,63.2303378275681,64.98829214279105,0.2466620361216769,247.26260784480303,0.090770874751314,88.65255111389558,112.54012,79.18173142918361,117604.15491044371,82744.71903064311,306.08763,195.38608101007003,319346.1972537464,203663.3446298305,313.55221,150.95949983209383,323779.7981064643,154717.59678915236,3353.59338,1513.0184548249656,3471050.462933935,1547654.0899376802,1239.03038,539.0030055336845,1283210.3057662966,551683.3819609219,2020.98238,840.9386859538597,2077633.8746420883,850856.4287170122,0.38012,100000,0,511546,5345.643405020169,0,0.0,0,0.0,26223,273.4654210295316,0,0.0,28943,298.74391288900034,1866279,0,66987,0,0,0,0,0,56,0.5747486780780404,0,0.0,0,0.0,0,0.0,0.06562,0.1726296958855098,0.312709539774459,0.02052,0.3194202898550725,0.6805797101449276,24.88595854921164,4.495214123037417,0.3301388617250146,0.217484842558185,0.2223743399178564,0.2300019557989438,11.248448694374693,5.672471490289308,21.857140408062712,12559.584952683275,57.64882773083772,13.001325256142035,19.15953535898106,12.5886665416616,12.899300574053022,0.5450811656561706,0.7670863309352518,0.6901658767772512,0.5646437994722955,0.1079931972789115,0.7191188040912667,0.9152046783625732,0.8752834467120182,0.7298387096774194,0.1416666666666666,0.4875065070275898,0.7012987012987013,0.6246992782678428,0.5185601799775028,0.0993589743589743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361896855447,0.0042869738829037,0.0066450238409252,0.0087957179276232,0.0109415198137094,0.0130634437396271,0.0153162156098953,0.0173623522923411,0.019460863518295,0.0218942970374087,0.0240283047892523,0.0261490268577004,0.0286046368105984,0.0310249250394122,0.0329115752972258,0.0350058946410473,0.0368708948884238,0.0388185215946843,0.0408891385300297,0.0431746164109406,0.0575430606766453,0.0708529565672422,0.0835055331200503,0.0964935351856332,0.1081146641916976,0.1232876712328767,0.1356049110222099,0.1471571550255536,0.1584547668903038,0.169294632513837,0.1824585590728434,0.195841586301696,0.2078479993909535,0.2181173923028971,0.2289245465751012,0.2399539104133659,0.249469877904511,0.2597225815886873,0.2689212960335924,0.2770032647917979,0.285022868059978,0.2928756188625803,0.2997643938766087,0.3057716511836979,0.3119522541905213,0.3187351232687493,0.3237732635322997,0.329567454656613,0.3341890980758259,0.3388650327013279,0.3388298159442975,0.3391605019906049,0.3389808989081059,0.3389107421762017,0.3382501786139557,0.3375537799631223,0.3366547139275854,0.3379511842817983,0.3393570867352167,0.3412142284033164,0.342378590811266,0.3435376836783062,0.3445848261990069,0.3455688274504541,0.3466422495843473,0.3482079836875539,0.3499442809383661,0.3516808973187561,0.3534470654310587,0.3567162990683972,0.358949683805334,0.3602139037433155,0.3602633911612004,0.3629038446780753,0.3654229564226716,0.3634195779182067,0.3640986132511556,0.3665379142102053,0.3733775200220933,0.3837567359507313,0.0,2.239868941446829,55.80212857637327,193.6700357985616,291.5777821397073,fqhc4_100Compliance_baseline_low_initial_treat_cost,70 -100000,95784,42907,404.5456443664913,6583,67.60001670425123,5132,53.04643781842479,2098,21.61112503132047,77.38146625236273,79.70422990962041,63.35451413110488,65.06782898953418,77.12276833922017,79.44343060124146,63.259320937819055,64.97387151023504,0.2586979131425551,260.7993083789495,0.0951931932858229,93.95747929913512,112.44354,79.11835772145535,117392.59166457863,82600.57809389391,307.0779,196.21139555555413,320043.6711768145,204297.4403113982,309.01458,148.71337480889926,318818.03850329906,152462.4861835242,3411.34007,1535.976170631344,3531155.276455358,1573261.0162548614,1236.50841,537.0944572905446,1279520.1703833626,549336.1311546207,2059.59986,860.9850019100157,2123706.3183830287,876463.3212641281,0.38067,100000,0,511107,5336.026893844483,0,0.0,0,0.0,26210,273.07274701411507,0,0.0,28578,294.57947047523595,1867694,0,67083,0,0,0,0,0,49,0.5115676939781174,0,0.0,0,0.0,0,0.0,0.06583,0.1729319357974098,0.3186996809965061,0.02098,0.3175150992234685,0.6824849007765315,25.396463753441505,4.527983308923722,0.323460639127046,0.2084957131722525,0.2320732657833203,0.2359703819173811,11.083231158208454,5.622661202649868,22.404005981149957,12627.692882858715,57.81299703259229,12.538388435809107,18.710991529459065,13.209947184916414,13.353669882407688,0.5457911145752143,0.7644859813084112,0.6957831325301205,0.5801847187237615,0.1131296449215524,0.6971990915972748,0.9027027027027028,0.8411214953271028,0.7310606060606061,0.1312741312741312,0.4933088428234059,0.6914285714285714,0.6452922077922078,0.5372168284789643,0.1081932773109243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023996112022355,0.0046515870120394,0.0071819113216542,0.0094747745552035,0.0117949708684555,0.0138343139849746,0.0157880789302022,0.0179695711180726,0.0201164691458929,0.0221190047470944,0.0241978445273122,0.026234251241433,0.0283432846557801,0.0306973296823207,0.0327845191088384,0.034678976773967,0.0366008878586876,0.0386190451505883,0.0404109660194679,0.0425117654408396,0.0565620303890465,0.07065052475175,0.0841347918655018,0.0968945797064883,0.1092321803211284,0.1255711626332712,0.1385005409763031,0.1511225608652607,0.1627430036317026,0.1735373267146272,0.1864746156827283,0.1994614411316224,0.2108324996737854,0.2210737021723436,0.231152627409559,0.2420841550153996,0.2523552261463589,0.26222702264826,0.2704371814229114,0.278695288414152,0.2863330013664683,0.2936279331178867,0.3010799801056296,0.3070450895318455,0.3129957365141448,0.3191148567063404,0.3239760814631339,0.3285534335118903,0.3330611610093705,0.3380984437492575,0.3384654759018292,0.3394203776077503,0.3391890367696819,0.3396226415094339,0.3394253541266366,0.3385302376969938,0.3383438400861659,0.339985885210655,0.340408079565262,0.341560040687403,0.3422511990407674,0.3430878897379697,0.3436956293889529,0.3448801254761371,0.3464140404940173,0.3485635258200036,0.3497095010252905,0.3509636512022098,0.3540198450264717,0.3545772409408773,0.3583136040794026,0.3596017371041203,0.3593016707339966,0.3599152606491639,0.3609411764705882,0.3637761741393588,0.365378764831153,0.3646631706333199,0.3691128148959474,0.3795088257866462,0.0,2.0321973564326523,58.52824328030994,185.38275249339787,294.4345958834523,fqhc4_100Compliance_baseline_low_initial_treat_cost,71 -100000,95763,43029,405.2086922924303,6661,68.4815638607813,5231,54.10231509037937,2105,21.62630661111285,77.31912755708531,79.66988905251262,63.32066847763053,65.05859171764584,77.06212917186585,79.41316444636975,63.22507806100516,64.96638035034138,0.256998385219461,256.72460614286763,0.0955904166253702,92.21136730445778,112.0075,78.7762346927661,116963.23214602716,82261.66128125279,308.48877,197.37086421364404,321621.76414690434,205587.48599526336,316.74924,151.78610213202435,327844.14648663887,156239.38162593413,3442.60796,1551.472378794498,3559826.853795307,1585018.648950532,1248.35018,541.7525269297115,1288081.795683093,550220.979845777,2068.42134,866.0265596694082,2125885.7387508745,872545.0257473618,0.37993,100000,0,509125,5316.510552092144,0,0.0,0,0.0,26309,274.1873166045341,0,0.0,29211,302.17307310756763,1867147,0,67115,0,0,0,0,0,64,0.657874126750415,0,0.0,0,0.0,0,0.0,0.06661,0.1753217697996999,0.3160186158234499,0.02105,0.3255614361321699,0.6744385638678301,24.97308178792484,4.44853868019593,0.3150449244886255,0.2261517874211432,0.2288281399350028,0.2299751481552284,10.975822079570955,5.560847748786409,22.524393979949707,12590.157033395188,59.0693006649449,13.887391061250824,18.58245671077053,13.211362016919438,13.388090876004116,0.5528579621487287,0.7869822485207101,0.6850728155339806,0.581453634085213,0.113050706566916,0.706646294881589,0.927461139896373,0.8401937046004843,0.7137254901960784,0.1490196078431372,0.501529831718511,0.7189460476787954,0.6331983805668017,0.5456475583864119,0.1033755274261603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0044893037019021,0.0067063025039568,0.0089886042779662,0.0113290823850057,0.01362622590205,0.0155799133316339,0.0177776416288853,0.0198871188728246,0.0219999590507974,0.0243609855125957,0.026553306841635,0.0286628134191743,0.0308955485273362,0.0329973069740086,0.0352119226515911,0.0370838164651316,0.0392120250210064,0.0413687754593066,0.0433084398337655,0.0575794901772479,0.071206653067629,0.0845605202433396,0.0974173466812484,0.1092942838467539,0.1240219092331768,0.1364176318357303,0.1480389861888446,0.1593857785086548,0.1702170999731975,0.1844066336420418,0.1969695329833865,0.2091088075011149,0.2199829411250109,0.2311280793055265,0.2417409601860568,0.2519031991605831,0.2612990695214842,0.2699217996299953,0.2782047024061752,0.2862567581647892,0.2941259101444525,0.3013055943890245,0.3072749750939229,0.3127661127466485,0.3188446958003532,0.3238144187737398,0.3290543813578767,0.3350117445527337,0.339128480393453,0.3382120840134356,0.3374360812095985,0.338304242218833,0.338565899899987,0.3389472116744844,0.3387168583140151,0.3372021021545496,0.3375637860082304,0.3384575879483009,0.3398204397613031,0.3408381296317195,0.3426056268215794,0.3440900957793916,0.3447903787793638,0.3456670853057675,0.3456192246276275,0.3447318720311337,0.3466851699993692,0.3480131166037868,0.3507643438554695,0.3527587779297765,0.3543076349299376,0.3567724800809409,0.3582375478927203,0.3583135954523922,0.3607041587901701,0.3619847328244275,0.3615899411883999,0.3555678059536934,0.357958872810358,0.0,2.0509973084322835,58.02724093485092,196.8484660983844,298.38272654707026,fqhc4_100Compliance_baseline_low_initial_treat_cost,72 -100000,95688,43434,411.5040548449126,6569,67.54242956274558,5092,52.70253323300727,2043,20.984867485996155,77.34181859432726,79.72280734820187,63.3271521787835,65.08484747548958,77.09281981654473,79.47500696858076,63.23489568967204,64.99565072947232,0.248998777782532,247.80037962111123,0.0922564891114632,89.19674601726513,112.70622,79.30282105836375,117785.1141208929,82876.45374379624,307.47392,197.0796158153919,320827.3137697517,205460.4050824272,315.75062,152.1563913108909,327042.57587158267,156768.13784137712,3348.47842,1512.063839899706,3464908.013544018,1545878.8778755364,1229.68604,538.1883947282112,1270346.250313519,547879.5829684775,2005.68976,835.577823446915,2060607.704205334,842717.4499593207,0.38217,100000,0,512301,5353.86882367695,0,0.0,0,0.0,26198,273.2526544603294,0,0.0,29096,301.0931360254159,1864888,0,66920,0,0,0,0,0,58,0.6061366106512833,0,0.0,1,0.0104506312181255,0,0.0,0.06569,0.171886856634482,0.3110062414370528,0.02043,0.3276934201012292,0.6723065798987707,24.99042854892379,4.437902387756999,0.3316967792615868,0.2213275726630008,0.2187745483110762,0.2282010997643362,11.095370388657544,5.77593593434809,21.6552993874614,12644.26011185446,57.3232442908345,13.171261883624345,19.051081330827486,12.38853096014151,12.712370116241154,0.5532207384131972,0.7728482697426797,0.6755476613380699,0.5879712746858169,0.1290877796901893,0.728957528957529,0.9210526315789472,0.8712871287128713,0.754863813229572,0.1889763779527559,0.4932841717145114,0.6974564926372155,0.6140077821011674,0.5379229871645275,0.1123348017621145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.004530849306182,0.0064527256678469,0.0083991793788466,0.0105950298938463,0.0128085037061171,0.0148712146693983,0.01704725253412,0.0192867874773863,0.0215582102386143,0.0235111967845131,0.0255625507091579,0.027488863512443,0.029583603820829,0.0315935058366963,0.0336781133636739,0.0356780170359163,0.0375119398646123,0.0396458814472671,0.0415024707574904,0.0562972713217166,0.0702274250293181,0.0832721089863347,0.0960393122461434,0.1085477388524953,0.1245107787344771,0.1383807300509338,0.1509777413482931,0.1619920718872541,0.1722614272538126,0.1862446284908078,0.1984618047292473,0.210889236926825,0.2216780005685172,0.2316967183357352,0.242648768980297,0.2524444146798821,0.262074007423237,0.2714739589243163,0.2801158942293377,0.2871616932685635,0.2953758712635075,0.3027489295261527,0.3088610628482415,0.3142485756283635,0.3199526726401025,0.3256154491182839,0.3304988734294843,0.3354114551605252,0.3404381759835189,0.3405909378747255,0.3416259379087217,0.3415136385433415,0.3418034565044471,0.3423235897588391,0.3415606927549126,0.3409414895302056,0.3422747133611485,0.3414801005661119,0.3425902775297353,0.3437827519089684,0.3458498023715415,0.3464271490556941,0.3470497415587031,0.3475583353379841,0.3478635829086632,0.3493418610627302,0.3519692239775486,0.352133554512406,0.3552374496590773,0.3554467676259322,0.3583288983501863,0.3653930610452349,0.3677041321056236,0.370987365465606,0.376546146527117,0.3776041666666667,0.377320419693301,0.3849972421400993,0.3932670237184392,0.0,1.9771898476485084,57.27559808565817,187.5848554372847,290.1811200062068,fqhc4_100Compliance_baseline_low_initial_treat_cost,73 -100000,95671,43034,406.8840087382801,6667,68.41153536599387,5231,54.00800660597255,2054,21.072216241076188,77.38307130315455,79.75938146529934,63.34642469116329,65.09772747047113,77.12140517539854,79.49849747780831,63.24992738822954,65.00396047000883,0.2616661277560155,260.88398749102737,0.0964973029337556,93.76700046229304,112.5553,79.18649702880256,117648.29467654775,82769.59269664012,307.90213,196.91346313509152,321178.3508064095,205167.6741392784,319.78776,154.44860889040137,329636.04436036,158004.59077246944,3453.76155,1568.487450760602,3569554.138662709,1599111.1158456944,1272.63028,558.9408477204573,1313121.7296777498,567310.8920068112,2024.95866,848.9182544457615,2080398.7415204188,856616.1587014977,0.38025,100000,0,511615,5347.649758024898,0,0.0,0,0.0,26351,274.75410521474635,0,0.0,29475,303.55071024657417,1864676,0,67056,0,0,0,0,0,56,0.5748868518150745,0,0.0,0,0.0,0,0.0,0.06667,0.1753320184089415,0.3080845957702114,0.02054,0.323151584356266,0.676848415643734,24.840880833939117,4.464431896944028,0.3247944943605429,0.2181227298795641,0.2271076276046645,0.2299751481552284,11.300878917184628,5.786583396973668,21.930503735268434,12616.606712395223,59.122662692471344,13.390450964514136,19.187729830504253,13.196622535682064,13.34785936177088,0.5666220607914356,0.775635407537248,0.7233666862860506,0.5858585858585859,0.1280133000831255,0.7195571955719557,0.9291553133514986,0.8764044943820225,0.7526881720430108,0.1287878787878787,0.5131578947368421,0.7028423772609819,0.6690590111642744,0.5346534653465347,0.1277955271565495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611694319872,0.0048122707839442,0.0070587519396355,0.009210365977497,0.0114584921966346,0.0136811995480318,0.0158107198923525,0.0176688544335453,0.0200341398096756,0.0220299943696575,0.0239908957626336,0.0260823133163558,0.028180023037683,0.030066746322772,0.0321455835929601,0.0342714222226815,0.0362163450083392,0.0381737226125854,0.040172628951747,0.0420622596479526,0.056912437582266,0.0713044388609715,0.0841297984619742,0.0970757405284907,0.1093725287586592,0.1242876325611393,0.1377244874159828,0.1499175751130018,0.161984229451872,0.1726683452081212,0.1865331239107515,0.1996648467484729,0.2110245291426211,0.2209350615287097,0.2306279353696228,0.2421029305855631,0.2525268318833134,0.2621501379737568,0.2710341929842492,0.2786073642833404,0.286499687492766,0.2936486565591524,0.3009834123222749,0.3086173787806049,0.3145199547505808,0.3205034861479607,0.3254899012679798,0.3306663269206268,0.3351317001050488,0.3401879286875388,0.3398771187582527,0.3393914360457111,0.3397832490099637,0.3395825196372,0.3390546449712943,0.3383477112946305,0.3374315856270326,0.3376473877222122,0.338329250954934,0.3384147432456611,0.3390541071662518,0.3390623150084849,0.3404388845888333,0.341411706946955,0.3418188791408984,0.3435201787895325,0.3456933726736269,0.3483790133124511,0.3514499105859252,0.3549905093324897,0.3567857467502954,0.3579875409143702,0.3593515272909364,0.3613146958821307,0.3606054977711738,0.3615133115366651,0.3651483368294875,0.3684313725490196,0.3692101740294511,0.3652495378927911,0.0,2.551841502452563,59.203093531957016,200.91401438221624,285.76876335910174,fqhc4_100Compliance_baseline_low_initial_treat_cost,74 -100000,95690,43133,406.949524506218,6777,69.59974919009301,5266,54.41529940432648,2175,22.290730483854112,77.3960056150407,79.78117122985589,63.35197710932333,65.11356259503118,77.13089870803735,79.51784635536403,63.25369338139922,65.0189132010403,0.2651069070033571,263.3248744918575,0.0982837279241053,94.64939399087768,111.8007,78.6604044814289,116836.34653568816,82203.36971619699,311.02944,199.0289482730127,324401.98557843035,207358.132365598,316.8333,152.67954123556382,327700.40756609885,156887.5197617047,3487.92947,1582.60774467528,3606030.40025081,1614975.8498662524,1259.38486,554.2975179975523,1301390.2706656912,564749.7212503655,2138.57536,895.3359187003009,2193696.9171282267,899951.3628921501,0.38169,100000,0,508185,5310.743024349462,0,0.0,0,0.0,26619,277.5107116731111,0,0.0,29300,302.7589089769046,1870902,0,67049,0,0,0,0,0,46,0.4807189884000418,0,0.0,0,0.0,0,0.0,0.06777,0.1775524640414996,0.3209384683488269,0.02175,0.3175875158161113,0.6824124841838887,25.04030336390608,4.542865475333924,0.3258640334219521,0.2105962780098746,0.2318647930117736,0.2316748955563995,11.09754396378548,5.535730431488283,23.132042317971727,12691.247715568432,59.38969550307657,13.084303280284614,19.23458448669593,13.564767729761142,13.50604000633489,0.5495632358526396,0.7700631199278629,0.7016317016317016,0.5667485667485668,0.1180327868852459,0.7045624532535527,0.9182561307901907,0.8711943793911007,0.7007299270072993,0.1524163568773234,0.4968185288877577,0.6967654986522911,0.6454615981380916,0.5279831045406547,0.1083070452155625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426218381838,0.0048163695727119,0.0068106615781246,0.0087884175768351,0.0109454153357882,0.01339958457215,0.0156713602577566,0.0180808379871157,0.0200985503690527,0.0224776605218174,0.0247490747290827,0.0266027352252659,0.0287145310748408,0.0308708102428874,0.0330478745356995,0.0351247144437208,0.0370197735723977,0.0388208428482457,0.0409243601343691,0.0428778388068412,0.0576886920554012,0.0719189551239115,0.0850019404440994,0.097623804016402,0.1102561399810266,0.1266522851764905,0.1393774797903715,0.1507041803723693,0.1618454504668105,0.1724134232794586,0.1858892203638086,0.1991692267751287,0.2104897080878996,0.2214376284377596,0.2315211893294627,0.2425436751322985,0.2523703290574456,0.2619692356093889,0.2710656332154836,0.2801811382894782,0.2884959635973068,0.296788883699206,0.3037123682593695,0.3099255642516934,0.3162676175921209,0.3220030498302917,0.3263653154952076,0.3313878985498052,0.336445098646834,0.3409369117976123,0.3411587740739746,0.3417405384636496,0.3414294554455445,0.3419404191443912,0.3424114696191635,0.3421837937103068,0.3412870456811026,0.3416988100123102,0.3418705576817933,0.3423270597478661,0.3429096156368884,0.344172639143912,0.345033154140607,0.3472104535521563,0.3470383275261324,0.3479460613318061,0.3472372082457834,0.3497973418795362,0.3513873785386046,0.3545653471255222,0.3564102564102564,0.3560326870693799,0.3592362344582593,0.3630938719302272,0.368801064031921,0.3709387363625465,0.3722324723247232,0.3721451876019576,0.3757289641766176,0.3771895679252627,0.0,2.260495164105911,58.78155004491383,197.43282169323896,297.7709791856261,fqhc4_100Compliance_baseline_low_initial_treat_cost,75 -100000,95825,43237,407.941560135664,6603,67.66501434907383,5151,53.2011479259066,2059,21.14270806157057,77.38566316619061,79.70666369281109,63.36611244363343,65.08415160556147,77.12751548154273,79.44810476513915,63.27129676268775,64.9914446694134,0.2581476846478807,258.5589276719418,0.094815680945679,92.70693614807612,113.43574,79.82791972463136,118378.02243673363,83305.94283812298,311.31215,199.54204107216205,324356.5875293504,207716.76605495648,319.80674,154.3785625173398,330005.0717453692,158258.91746557012,3442.28008,1569.8856008553114,3558023.8977302373,1604051.05228835,1295.29104,575.0342386735829,1335339.2016697105,583792.790991701,2041.03154,854.9935901172543,2097665.4943908164,865603.0316393807,0.38092,100000,0,515617,5380.81920166971,0,0.0,0,0.0,26625,277.2867205843986,0,0.0,29585,305.0560918340725,1862376,0,66891,0,0,0,0,0,53,0.5530915731802766,0,0.0,0,0.0,0,0.0,0.06603,0.1733434841961566,0.3118279569892473,0.02059,0.3347719752553589,0.665228024744641,24.99408746958104,4.493191260534486,0.3110075713453698,0.2151038633275092,0.2339351582217045,0.2399534071054164,11.160212435087404,5.615875112078452,21.95985878833269,12621.541170239314,58.3943134003658,13.091240161891989,18.11232549250944,13.416351536410804,13.774396209553558,0.5441661813240147,0.7635379061371841,0.6922596754057428,0.5701244813278008,0.1302588996763754,0.6944858420268256,0.9081081081081082,0.8481927710843373,0.724907063197026,0.1701388888888889,0.4912050406930953,0.6910569105691057,0.6377422072451558,0.5256410256410257,0.1181434599156118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024004132356962,0.004632868019018,0.0069521267418375,0.0091540853026639,0.0112799544326457,0.0133489461358313,0.0155847068056957,0.0176956832329829,0.0199397005467831,0.0220225546982132,0.0244314862829092,0.0264089747405803,0.0283758645851532,0.0305297938261057,0.0325946854473648,0.0348186250206577,0.0367411975292036,0.0384834634080615,0.0403700588730025,0.0424336389082546,0.0573693543339939,0.071374811841445,0.0846548091939084,0.0970236281688957,0.1094421505013904,0.1258185121034176,0.1379902116570266,0.1495908173025826,0.1612820649565356,0.1717933339045497,0.1851616857907924,0.1981399066712754,0.210174349176021,0.2212143044275609,0.2313944293120112,0.2428186019769576,0.2528767642111595,0.261558161477288,0.270333952603199,0.2781899873097898,0.2866185388391568,0.29426593994001,0.3013236040758976,0.3074017404609352,0.3135492623367814,0.3192461731246468,0.3245884452654044,0.3295182022357852,0.3346035600795721,0.3396934502646757,0.3401299242780863,0.3393721134814163,0.3393849834635142,0.3392477856926122,0.3394547210459847,0.3383380316215222,0.3373390830109709,0.3376862603203842,0.3391250706831851,0.3399290881741995,0.3402514543066241,0.3414450477587095,0.3424224544841537,0.3444391987590207,0.3457357960734948,0.3463801618156982,0.3462564926679484,0.3485414161867999,0.3512174405436014,0.3547793382147001,0.3575590731819225,0.3602007046012597,0.3611093522446653,0.3646582046184431,0.36852097968483,0.3761996161228407,0.3774957436929267,0.3773469387755102,0.3772954924874791,0.390715667311412,0.0,2.1317129524583804,59.02020821666012,194.3202109132704,287.47613434659144,fqhc4_100Compliance_baseline_low_initial_treat_cost,76 -100000,95759,43331,408.0765254440836,6587,67.54456500172307,5149,53.112501174824295,2067,21.15728025564177,77.37657405990127,79.71996307888554,63.3458979718325,65.07848577248265,77.11969425289188,79.4660989139407,63.25079951182133,64.98743842031035,0.2568798070093976,253.86416494484365,0.0950984600111652,91.04735217229631,112.6785,79.26562793595419,117668.83530529767,82776.16509774975,305.01311,195.14427685007587,317885.27449117054,203150.5413069016,315.57339,152.4474611486372,324920.94737831433,155701.61131632616,3394.04261,1534.3718515941343,3503078.070990716,1561045.7206049915,1238.06203,543.3570332184637,1276722.0209066512,551259.3183389788,2042.07088,849.9810074772787,2092605.958708842,853388.1982146002,0.38141,100000,0,512175,5348.583422968076,0,0.0,0,0.0,26079,271.6820351089715,0,0.0,29132,299.72117503315616,1867728,0,66996,0,0,0,0,0,58,0.5952443112396746,0,0.0,1,0.0104428826533276,0,0.0,0.06587,0.1727012925722975,0.3137999089114923,0.02067,0.3196650303205313,0.6803349696794687,25.09637956729691,4.468988833576597,0.3253058846377937,0.2177121771217712,0.2190716644008545,0.2379102738395805,11.104464467876497,5.571117634734716,21.78493505278125,12684.925793902074,57.86092849802384,13.14114503027895,18.9443325772343,12.5206377515801,13.254813138930478,0.5523402602447077,0.7743086529884032,0.6991044776119403,0.5913120567375887,0.1126530612244898,0.7095761381475667,0.9185393258426966,0.8626506024096385,0.7349397590361446,0.1417322834645669,0.5006451612903225,0.7071895424836602,0.6452380952380953,0.5506257110352674,0.1050463439752832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0045819014891179,0.0067777349378031,0.0090109309602178,0.0110344967862663,0.0133501695502082,0.0158558595303402,0.0180708130844938,0.0204050337868921,0.0225404592029972,0.0247212200721548,0.0270578212089795,0.0293195439638954,0.0315444743102542,0.0335898652691522,0.0355658914728682,0.0373380825662424,0.039617004502168,0.0416255159006559,0.0436068612849807,0.0585539980586375,0.0722450558989322,0.0852919593248768,0.0981976774735957,0.1106813511092374,0.1261178410604427,0.1393008979972646,0.1515119273083225,0.1627829987184963,0.1736384400098652,0.1864317332442998,0.1994633370481373,0.210517727178773,0.2217103967437687,0.2321530805478487,0.2427312531175525,0.2530096263373015,0.2627864571608662,0.2707028057749931,0.2792487402656894,0.2870215055007346,0.294459516347818,0.3015516344197928,0.3080617536799492,0.3142766898294378,0.3199437959893015,0.3255008378560888,0.3313086131090045,0.3368510902459843,0.3415570030855244,0.3414001263797577,0.34121802713141,0.3416051206302314,0.3416067457910999,0.3417334520629266,0.3411334384230421,0.340168668217275,0.3412169919632606,0.3417029635323255,0.3423230593607306,0.343122913619144,0.343442331264086,0.3436936370118703,0.3439949967612963,0.3446028807079135,0.3459281858718611,0.3465967392543609,0.3496953708937881,0.353232607167955,0.3542586625293392,0.3534518207154932,0.3539846580012785,0.3600756859035005,0.3611323058141309,0.3625763986835919,0.3647940966436562,0.36900199294803,0.3708023325960185,0.3753066230580539,0.3806451612903225,0.0,2.55815937380556,55.484725774978585,191.288735424174,297.8606797862655,fqhc4_100Compliance_baseline_low_initial_treat_cost,77 -100000,95741,42739,402.0534567217807,6703,68.81064538703377,5233,53.96851923418389,2156,22.04906988646452,77.3313489084019,79.69819936267649,63.31030609897547,65.06337558911873,77.0645785382794,79.43414325312126,63.212751841694775,64.96998043414848,0.2667703701225008,264.0561095552272,0.0975542572806915,93.39515497025276,112.15468,78.96117461960536,117143.83597413856,82473.73081501694,307.36938,195.60563007123235,320373.2152369413,203637.77672888,308.82847,148.83064731996024,318406.15828119614,152199.5151429158,3467.71212,1556.0147601596675,3576551.3520853133,1579818.585786721,1241.03222,542.1334327072766,1275465.6521239595,545499.7657258315,2122.15282,878.1460725438392,2172457.7140410063,880096.2407800121,0.37833,100000,0,509794,5324.719817006298,0,0.0,0,0.0,26275,273.73852372546764,0,0.0,28561,294.1268630994036,1868714,0,67030,0,0,0,0,0,49,0.5117974535465475,0,0.0,0,0.0,0,0.0,0.06703,0.1771733671662305,0.321647023720722,0.02156,0.3200453965101433,0.6799546034898567,25.15088222036221,4.554642915301429,0.3279189757309382,0.2140263711064399,0.2222434549971335,0.2358111981654882,11.07647154328583,5.541106210928225,22.87243163468699,12576.77284856138,58.93654983298654,13.263296982072632,19.160151180568118,12.981018646413098,13.532083023932715,0.5493980508312631,0.7758928571428572,0.6824009324009324,0.588134135855546,0.1223662884927066,0.7204545454545455,0.9128065395095368,0.8732718894009217,0.7490196078431373,0.1742424242424242,0.4916943521594684,0.7091633466135459,0.6177847113884556,0.5429515418502202,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593947253771,0.0045833882596306,0.0068713524486171,0.0089209510262141,0.0114346171844798,0.0137079773095293,0.0159068430014989,0.018093264037085,0.0201086233877814,0.0223999836122662,0.0245118148999015,0.0266913237787024,0.0289280862799983,0.0309807478253699,0.033020572053799,0.0352714901713423,0.0375881457550247,0.0396496798763087,0.0417043481876487,0.0435570553680789,0.0585834333733493,0.0717327836087188,0.0846376568335361,0.0975707224734462,0.1095130643834749,0.1248215097891964,0.1376013413132985,0.1491047748889622,0.1615140472552016,0.1726213467233165,0.1858996465212518,0.1982782891174878,0.2104592808700101,0.2214583629815323,0.2317804961298349,0.2417929642892779,0.2520047354195984,0.261136816508494,0.2697153364205938,0.2779324967050599,0.2857258624681639,0.2926792134634078,0.2995210886934256,0.30648474002186,0.3119408979711062,0.3170818988388307,0.3219899550356333,0.3271810157056058,0.3316726348020136,0.3368469717984281,0.336879145769293,0.3366554705137382,0.3367249154453213,0.3362872797189655,0.3361450614075471,0.3350382848392036,0.3335337394193497,0.3345480810269542,0.3364802462801436,0.3374886146482596,0.3384015448358612,0.3393998140491781,0.340568312886652,0.3413678009005174,0.3428550766560602,0.3447365670081538,0.3450706234840919,0.3485824335417061,0.3481106708180017,0.3520150628956013,0.3548120989917507,0.3550724637681159,0.3568181818181818,0.3615073613547944,0.3677805859777216,0.366654933708788,0.3698568198944988,0.3661776367961935,0.3682926829268292,0.370986021911598,0.0,2.65002746761814,57.78612850718733,194.55213788219368,297.92998649452414,fqhc4_100Compliance_baseline_low_initial_treat_cost,78 -100000,95497,43333,409.55213252772336,6611,67.85553472883964,5142,53.33151826758956,2091,21.55041519628889,77.22623088476638,79.71297198344546,63.24095407219974,65.07601230512427,76.96524530181745,79.45001499341039,63.14469575736667,64.98105526708888,0.2609855829489333,262.95699003506456,0.0962583148330722,94.95703803538902,111.26126,78.27925643005976,116507.597097291,81970.38276601332,307.04198,196.9186009202124,321017.3618019414,205701.30048086576,313.7458,151.63237540640037,324965.6847859095,156096.51831747728,3417.33131,1549.2262249150124,3546493.010251631,1590300.5800339417,1269.56441,558.7314757913919,1316633.475397133,572282.4128416515,2064.88456,865.5962336483716,2130381.247578458,880647.2528856619,0.38172,100000,0,505733,5295.7998680586825,0,0.0,0,0.0,26220,274.0295506665131,0,0.0,28916,299.34971779218193,1865602,0,66966,0,0,0,0,0,55,0.5549912562698305,0,0.0,0,0.0,0,0.0,0.06611,0.1731897726081945,0.3162910301013462,0.02091,0.3177610645067978,0.6822389354932022,24.83966566541046,4.63456895211362,0.323026059898872,0.2094515752625437,0.2285103072734344,0.2390120575651497,10.929051900691068,5.346843807678865,22.413918911477094,12668.821266427409,58.13020131429079,12.647941573927236,18.9051870524873,13.096381635321997,13.480691052554262,0.5402567094515752,0.7632311977715878,0.6923540036122817,0.5702127659574469,0.1106590724165988,0.7049429657794677,0.9090909090909092,0.8529411764705882,0.7175572519083969,0.1621621621621621,0.4836686699764829,0.6924137931034483,0.6341263330598852,0.5279299014238773,0.0969072164948453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024826468054922,0.0047673628368851,0.0069141267488374,0.0091204880528723,0.0115246782863658,0.0136982112826784,0.0157960795518321,0.0180042098379416,0.0202972981267967,0.0225815044773672,0.0243471834455575,0.0266399341969977,0.0286155588735004,0.030797475143364,0.0327736736064472,0.0349011771770528,0.0369905500866155,0.0389900627832522,0.041150548500349,0.0432803249417882,0.057922776608995,0.0719681074276122,0.0860718229139281,0.0992948913879783,0.1113541732716166,0.1261778828317946,0.1397814021732196,0.1522474367591673,0.1631770035664178,0.1735602037964615,0.1858285738963324,0.1987223288755843,0.2107237085977192,0.2217033358546825,0.2324642222688102,0.24302067126028,0.2531971312530069,0.2630534540493612,0.2723673882625957,0.2803944302228141,0.2879946173567045,0.2953705767133088,0.3021315483396235,0.3083841335112842,0.3149487238894241,0.3202049073833475,0.3259839352381431,0.330171311684991,0.3350453800743765,0.3394976685036032,0.3396946048663051,0.3396325386855873,0.3396111786148238,0.3388841425447805,0.3383335321483955,0.3373508793506334,0.3363707202264523,0.3372380795248308,0.3380286529013639,0.3387241527857553,0.3400523215327574,0.3419709695994917,0.3435547984099943,0.3452757761465418,0.3465005302226935,0.3472632652527524,0.3487979875939742,0.3513351429833975,0.3535032970132938,0.3559917025690123,0.3587733773377338,0.3601491742141715,0.3600352667044524,0.3643041041950628,0.3664965197215777,0.3689320388349514,0.3719046163252827,0.374487284659557,0.3756936736958934,0.3803303880138302,0.0,1.9458219365099156,58.1443430492309,190.460523302851,293.93947897732545,fqhc4_100Compliance_baseline_low_initial_treat_cost,79 -100000,95714,43348,408.0907704202102,6696,68.77781724721567,5172,53.50314478550683,2124,21.856781662034813,77.36399481233721,79.7505244614982,63.33329461681414,65.09800783991813,77.09473671863167,79.47933595932142,63.23286968886922,64.99957076317298,0.2692580937055453,271.18850217678414,0.1004249279449212,98.43707674514236,112.5058,79.12992713218188,117543.72401111646,82673.30498378698,309.58671,198.79318409265403,322877.875754853,207136.37181634796,319.78218,154.2270161246181,331084.6375660823,158823.10880241034,3434.69904,1573.986935375642,3555793.9381908607,1612457.830285389,1288.80268,570.1576057256185,1334106.9958417786,583836.6670799761,2086.51512,883.9547516151357,2149358.8607727187,895999.4125920894,0.38187,100000,0,511390,5342.896545959839,0,0.0,0,0.0,26410,275.36201600601794,0,0.0,29590,306.141212361828,1864777,0,66975,0,0,0,0,0,56,0.5850763733623086,0,0.0,0,0.0,0,0.0,0.06696,0.1753476313928824,0.3172043010752688,0.02124,0.3267553267553267,0.6732446732446733,24.80357915488334,4.478868926246451,0.325599381283836,0.2140371229698376,0.2238979118329466,0.2364655839133797,10.98170717036231,5.568428268627925,22.771331818529223,12701.242123157514,58.77672530341288,13.098190513022704,19.104571372381223,13.08046520936766,13.493498208641286,0.5556844547563805,0.7777777777777778,0.6918052256532067,0.5967184801381693,0.1283728536385936,0.7184536834427425,0.9244791666666666,0.8611764705882353,0.7534246575342466,0.1629629629629629,0.4969744803998948,0.6998616874135546,0.6346306592533757,0.5438799076212472,0.1185729275970619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.004644700680479,0.007136766019654,0.0094517958412098,0.0117320254787439,0.0141206675224646,0.0164735403321228,0.0184750194043874,0.0206191893467521,0.0229164746720732,0.0251348524314457,0.027349567110682,0.029273811972845,0.0317255875776653,0.0336033851075906,0.0354742653901031,0.037654346565012,0.0397036237599103,0.0418199962577184,0.0437292267939193,0.0588296727971509,0.0731115042024722,0.0869282417121275,0.0992217898832684,0.1118993159131873,0.1272375474471077,0.1395999915162569,0.151378782075833,0.1629389219255447,0.1739857441449166,0.1873405732367534,0.1999047969361923,0.2118137126946837,0.2218333351562414,0.232132640936496,0.2431205359614639,0.2534307709472275,0.2631596706708057,0.2722939694500556,0.2796550973903285,0.2873636353119468,0.2940990701210597,0.3012065311341866,0.3075466043277588,0.3147554129911788,0.3208944191203646,0.3272891091339114,0.3327568447422969,0.3371072925831996,0.3414621286019351,0.3417888365837256,0.3416783524430146,0.3416319522630038,0.3412396897164401,0.3407647093748144,0.3396307165566153,0.3389664539768778,0.3397028990249329,0.339663776805028,0.3397696476964769,0.3400520765037558,0.3412980750227282,0.3426757996606548,0.3429596412556054,0.3434093042285384,0.3440108869173798,0.3450722357316549,0.3485669291338583,0.350461365077129,0.3513782268008432,0.3560402531760849,0.3588790998832395,0.3570795339412361,0.3596807612616069,0.3609501187648456,0.3598416696653472,0.3656681670029489,0.3723426212590299,0.373663477771525,0.3735700197238659,0.0,2.0332829150658034,60.60125395566235,195.5721732559172,284.5942364897275,fqhc4_100Compliance_baseline_low_initial_treat_cost,80 -100000,95660,43065,406.66945431737406,6753,69.29751202174367,5207,53.7633284549446,2158,22.08864729249425,77.31725194233033,79.72570444000361,63.30264576078415,65.08493098178312,77.0479610420454,79.45891959429709,63.20278468594275,64.9891472039391,0.2692909002849291,266.7848457065247,0.0998610748413995,95.78377784401935,111.50216,78.4947472553102,116560.90319882918,82055.97664155363,307.74018,196.2725637505845,321041.647501568,204516.8552692709,308.44895,148.27550794791483,318540.6962157641,151951.25617007923,3496.47567,1571.768997848205,3612801.860756847,1600892.199968547,1308.87928,561.6531451623302,1351119.328873092,570049.220117148,2136.04736,893.6298883868477,2188908.153878319,896232.3729713112,0.38219,100000,0,506828,5298.222872674054,0,0.0,0,0.0,26323,274.4825423374451,0,0.0,28488,293.88459126071507,1871773,0,67146,0,0,0,0,0,51,0.5331381977838177,0,0.0,1,0.0104536901526238,0,0.0,0.06753,0.1766922211465501,0.3195616762920183,0.02158,0.3211112678042589,0.6788887321957411,25.297190122786816,4.514122056923309,0.3260994814672556,0.1989629345112348,0.2287305550220856,0.2462070289994238,10.887416591604117,5.451537200117118,22.992138313061165,12701.96373037591,58.47959709165156,12.115990560984583,19.07421972031737,13.1866065430383,14.102780267311324,0.5329364317265219,0.7557915057915058,0.682567726737338,0.5759865659109992,0.1146645865834633,0.6849960722702279,0.8922155688622755,0.8477157360406091,0.7455197132616488,0.1203007518796992,0.483731570920183,0.6908831908831908,0.6326687116564417,0.5241228070175439,0.1131889763779527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024820934685483,0.0047355878923084,0.0070531881425251,0.0092267983619384,0.0114666531006766,0.0134766221860038,0.0157815273498867,0.0180921052631578,0.0200834850934091,0.0220168635446228,0.0242433569303375,0.0263979942045664,0.0282664415782268,0.0304139388628279,0.0322330778923016,0.0343193552058437,0.0362818373122414,0.0383624807876043,0.0404835974321892,0.0425323423019587,0.0574222668004012,0.0712116451984501,0.0844260143824471,0.0971159815237634,0.1084759352647015,0.1236453306239945,0.1363448209983336,0.1486447627669204,0.1602877205733035,0.171801913916663,0.1856551902443228,0.1992226829347508,0.2110367346938775,0.2223110186654989,0.2328614706692371,0.2441719967631442,0.2543305504710031,0.264325011532014,0.2738350522482045,0.2823540189869793,0.2899649333965998,0.2965783470784348,0.3033938044713907,0.3094161800501205,0.3154510089958667,0.3219347914584952,0.3271090071135157,0.3320903595291123,0.3371454474808962,0.3421670536091177,0.3414900060569352,0.3422605537902859,0.3425016187607331,0.3424261688724498,0.3432480312030131,0.3418656429942418,0.3409501760172528,0.3424882822136337,0.3438814237357677,0.3447025839747138,0.3462050849047753,0.3470963144768615,0.3474339297352984,0.347529506798905,0.3475820693325592,0.3486714532781301,0.3483924532623321,0.351823804114603,0.3543312641083521,0.357640964335525,0.3587653416376625,0.3615589962626802,0.3650763479693341,0.3666973462187452,0.3688640877707367,0.3719852679101817,0.3714859437751004,0.3682921852683126,0.3671917436175991,0.368142262580401,0.0,2.642867026849678,55.48149875233994,192.46485861086492,304.6585634868252,fqhc4_100Compliance_baseline_low_initial_treat_cost,81 -100000,95875,43252,408.1251629726206,6534,67.06649282920469,5106,52.87092568448501,2051,21.10039113428944,77.4717338221379,79.75696099439426,63.40399372213196,65.09012844882031,77.22432278707211,79.50707360775556,63.31475414001403,65.0013619069891,0.2474110350657952,249.8873866387044,0.0892395821179263,88.76654183120536,113.07516,79.5692266426963,117940.19295958278,82992.67446435076,310.96777,199.57216469884165,323958.3415906128,207769.9657875793,320.58338,154.52994419869376,331264.6571056063,158770.32765621704,3384.98906,1519.5097115101842,3508153.637548892,1562412.4657211828,1225.51678,534.9000162035169,1266751.4993481096,546459.2675551731,2019.34134,829.6047326057616,2080217.1994784875,846179.7950847177,0.37877,100000,0,513978,5360.9178617992175,0,0.0,0,0.0,26587,276.91264667535853,0,0.0,29498,304.65710560625814,1864585,0,66851,0,0,0,0,0,58,0.6049543676662321,0,0.0,0,0.0,0,0.0,0.06534,0.1725057422710351,0.3138965411692684,0.02051,0.312090790048014,0.687909209951986,25.04255271849307,4.525336522328963,0.3219741480611046,0.2109283196239718,0.2344300822561692,0.2326674500587544,11.139571566806834,5.635536794640753,21.64549088899727,12495.248198371975,57.378064952742726,12.619022447350558,18.662292140190807,13.33464193332953,12.76210843187183,0.5464159811985899,0.7623026926648097,0.6891727493917275,0.5898078529657477,0.1094276094276094,0.71850699844479,0.9215116279069768,0.863849765258216,0.7427536231884058,0.1416666666666666,0.4884816753926702,0.6875852660300137,0.6280788177339901,0.5439739413680782,0.1012658227848101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00241927320579,0.0046296765304778,0.0068851528118599,0.0088611449451887,0.010923908625315,0.0132367454495508,0.0153206747616331,0.0174522383949244,0.0195862181647366,0.0214247729689928,0.0237814807607615,0.0259778885401924,0.0281164928861266,0.030157113312961,0.0322431014400131,0.0343342764503004,0.0362957446368356,0.0382933300169962,0.0402338234072597,0.042362563606281,0.057325172820069,0.0711426092592011,0.0843418943132878,0.0964132627332324,0.1078440671535616,0.1237764011924142,0.1366094147582697,0.148464091218516,0.1593902777481266,0.1700367548568918,0.1833821061238542,0.1965769484273195,0.2082071323888617,0.2195007476778327,0.230199079818599,0.2412550701252196,0.2513698935269746,0.2608998248843788,0.2690678925675981,0.2768460404019618,0.2845433660806021,0.291706031235056,0.2987661609303973,0.305164206950989,0.3110685170807453,0.3173142006227156,0.3224226675328569,0.3269247863464933,0.3316876470132086,0.3361769352290679,0.3359455862782788,0.3353130786640148,0.3347610554845595,0.3348214285714285,0.3341975052591034,0.333399459797653,0.3323030341260329,0.3338184553496967,0.3355332539547542,0.3362056712387179,0.3358217311783808,0.3368170366871358,0.339170545386237,0.3402316774337269,0.3414161240903868,0.3411669999220961,0.3406855101635812,0.3428321459817522,0.3464394780677401,0.3474915600219832,0.3516819571865443,0.3537300036956866,0.3553516435170636,0.3528783020308444,0.3542851725445582,0.3539748953974895,0.3530309970987937,0.3510788465416414,0.3516031789531378,0.3398542385884158,0.0,1.4912290053871786,57.23596831195922,193.2875148931527,285.429323193387,fqhc4_100Compliance_baseline_low_initial_treat_cost,82 -100000,95747,42839,403.7515535734801,6508,66.73838344804537,5104,52.77449946212414,2054,21.159931903871662,77.34438518034166,79.6970104868514,63.33412346583962,65.07225659123732,77.09293925816138,79.44443563524068,63.24163842348359,64.98141415042649,0.2514459221802809,252.57485161071716,0.0924850423560315,90.8424408108317,111.5444,78.4691687300462,116499.10702162993,81954.70221526126,303.66309,194.35523658449367,316635.47682956123,202472.26188235005,308.62179,149.06750323268784,317961.7011499055,152413.7612026928,3362.86849,1510.9244763957151,3479614.9017723794,1545558.9877872183,1220.93191,525.730566285498,1265179.431209333,539166.4962934599,2017.53406,835.2360496507075,2079988.8247151347,848773.1875365075,0.3795,100000,0,507020,5295.413955528633,0,0.0,0,0.0,26018,271.19387552612613,0,0.0,28481,293.30422885312333,1873364,0,67217,0,0,0,0,0,49,0.511765381682977,0,0.0,0,0.0,0,0.0,0.06508,0.1714888010540184,0.3156115550092194,0.02054,0.316588785046729,0.6834112149532711,25.11482567482375,4.566228209126576,0.3248432601880878,0.2151253918495297,0.2343260188087774,0.225705329153605,11.276266482530955,5.711844465392497,21.69981509249171,12614.65397785722,57.29139922529342,12.895167170450195,18.61895407629298,13.27774639192798,12.499531586622265,0.5525078369905956,0.7786885245901639,0.6857659831121834,0.5811036789297659,0.1154513888888889,0.7033492822966507,0.9206798866855525,0.8398950131233596,0.7340425531914894,0.1260504201680672,0.5033766233766234,0.7114093959731543,0.6397807361002349,0.5339168490153173,0.1126914660831509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575300838701,0.0040757150243833,0.0064834261711259,0.0089576795344444,0.0112450942513776,0.0136512170044689,0.0156743645665599,0.0179498954028266,0.0201081014805202,0.022265425150926,0.0244179850807443,0.026511069372171,0.0287582640166976,0.0306378859343782,0.0327119675665638,0.0351256110037512,0.0369940999896491,0.0388169288684704,0.0408231136977759,0.0428623509192229,0.0570211610936537,0.0708582312127839,0.0833945165824086,0.0962290737780768,0.1084914115798686,0.1234839432807097,0.135982775444402,0.1479534839183308,0.1600499855810823,0.1713446405214743,0.1850065666243245,0.197693913532574,0.2102064556810645,0.2211692953405253,0.2321456065105026,0.2430556324384168,0.2533898777969979,0.2624925488961119,0.271587569916384,0.2791728212703102,0.286694276063116,0.2936510721931702,0.3010033840547128,0.3071839769728952,0.3128797083839611,0.3187976604723477,0.325052330755443,0.3301167652457679,0.3350274208813577,0.34045055162846,0.3404693899547316,0.3407007789491068,0.3405622489959839,0.3398163545658303,0.3399170099796243,0.3387544686008868,0.3378970079639559,0.3387462608066796,0.3399996578447641,0.3404350390534236,0.3410271314195713,0.3412343824134113,0.3406084240098958,0.3406916026086372,0.3425298444471241,0.3439670025583459,0.3451630388269192,0.3482289171813941,0.351231527093596,0.3542364767831498,0.3580624543462381,0.3602282423208191,0.3615530303030303,0.3626148356237187,0.3667764705882353,0.3654984608098508,0.3680887109194517,0.365656146179402,0.3659837215829357,0.3723948092803775,0.0,2.1069395185580904,54.99988023726342,193.1463223079573,291.421879163344,fqhc4_100Compliance_baseline_low_initial_treat_cost,83 -100000,95681,42966,404.9602324390423,6724,69.14643450632832,5255,54.44132063837126,2159,22.292827207073504,77.28108161739658,79.66908857821934,63.29287913429015,65.05614138079979,77.02046022153777,79.4060004499265,63.19857420395481,64.96269106171414,0.2606213958588057,263.0881282928499,0.0943049303353404,93.4503190856475,112.72976,79.35470951525502,117818.33383848412,82936.74764608964,310.27272,198.4183259340728,323781.7957588236,206879.32234381867,316.0272,152.51983716626845,327651.59227014764,157295.11590208774,3493.20633,1563.9015454144862,3624087.9903011047,1607761.2090747529,1296.97103,560.7596449851625,1346561.3862731368,577162.8923725626,2127.29326,874.1336314923193,2198851.6006312645,892641.2559010085,0.38049,100000,0,512408,5355.378810840188,0,0.0,0,0.0,26504,276.4707726716903,0,0.0,29150,301.9199214055037,1860597,0,66761,0,0,0,0,0,61,0.6375351428183234,0,0.0,0,0.0,0,0.0,0.06724,0.1767194932849746,0.3210886377156454,0.02159,0.3156479909451047,0.6843520090548953,25.220914526021804,4.566755449464401,0.3204567078972407,0.211417697431018,0.2274024738344434,0.2407231208372978,11.296996949586909,5.703828018391326,22.884302455750625,12709.37756318296,59.08944436319221,13.12230516697784,18.94358174345544,13.323518668617757,13.700038784141176,0.5472882968601332,0.7992799279927992,0.6793349168646081,0.5774058577405857,0.1217391304347826,0.7329762815608263,0.9134078212290504,0.8656036446469249,0.7587412587412588,0.1517857142857142,0.4858156028368794,0.7450199203187251,0.6136546184738956,0.5203520352035204,0.1152737752161383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0047242976915824,0.0069720003653449,0.0094685617336001,0.011787319732319,0.0138894546047004,0.015824785366152,0.0179074611018091,0.0201993355481727,0.0222315479175836,0.0244742697193712,0.0266746067600312,0.028434800493624,0.0304463402571711,0.0327165017080697,0.0346884757749333,0.0369173399627097,0.039087068884991,0.0412544858792323,0.0432643702121006,0.0583159214375261,0.0723910835628056,0.0862021915277719,0.0998200965797308,0.1121191661743607,0.1275929549902152,0.1401035917466248,0.1523577270403816,0.1634793205554427,0.1750617283950617,0.1883323448536151,0.2006609242104122,0.2125498138106748,0.2229399785403026,0.2327989863934336,0.2433598385290171,0.2540237850404614,0.2637347782496536,0.2725743766903793,0.2802977303223882,0.2881293088465326,0.2956452444569446,0.3024419749279505,0.3088463155366044,0.3150261589001095,0.3202650673774618,0.3256627185561195,0.3307236212942301,0.3353581766026764,0.3405981209474659,0.3405011143378132,0.3412510006348855,0.34108209060811,0.3416661830421914,0.3415420435210889,0.3408039351318115,0.3394961720512087,0.340727800118663,0.3423282783229259,0.3433862244349726,0.3439799740264629,0.3449106325385136,0.3460108966507581,0.3466176768929062,0.3466993139227617,0.3475207044763602,0.3478846981213251,0.3495342500475255,0.3516297446027938,0.3528590796714251,0.3545924198783888,0.3556527770367604,0.3575273924884413,0.3567135793077216,0.3572841133816744,0.3615872270486029,0.3648482991112473,0.3610326744655103,0.3726927252985885,0.3813917723952326,0.0,1.81585553494386,57.86800730243733,192.40113484357136,306.77654931564484,fqhc4_100Compliance_baseline_low_initial_treat_cost,84 -100000,95711,43276,408.699104596128,6764,69.39641211563979,5267,54.2884307968781,2086,21.37685323526032,77.3612597271838,79.72644744663832,63.34108899169471,65.08894353477389,77.09663164343806,79.46411441361356,63.24361392786192,64.995035222772,0.2646280837457482,262.33303302475974,0.0974750638327961,93.90831200188644,113.33498,79.75428835392518,118413.0559705781,83327.59407995442,310.74268,198.7919002757945,323888.2678062083,206925.93118670816,320.02047,154.2652411564767,329819.6236587226,157671.15875594786,3485.41287,1584.3196746783217,3598890.294741461,1612874.3868908738,1288.35561,562.1293016835274,1328719.2590193397,570132.1063588562,2057.23718,862.2178622228179,2111461.190458777,868144.0847043797,0.3823,100000,0,515159,5382.4116350262775,0,0.0,0,0.0,26568,276.7602469935535,0,0.0,29559,304.2074578679567,1862047,0,66819,0,0,0,0,0,49,0.5119578731807212,0,0.0,1,0.010448119860831,0,0.0,0.06764,0.1769291132618362,0.3083973979893554,0.02086,0.3283981951494641,0.6716018048505358,25.020645026731565,4.426460635369051,0.3288399468388077,0.2130244921207518,0.2246060375925574,0.233529523447883,11.083094052479488,5.639021609498134,22.31469428447317,12680.61376417978,59.84946232219443,13.29495242137396,19.690073838589907,13.31442061672506,13.550015445505506,0.566736282513765,0.7825311942959001,0.7159353348729792,0.6027049873203719,0.1252032520325203,0.7042772861356932,0.9097938144329896,0.8352402745995423,0.7564575645756457,0.123076923076923,0.5190488366146766,0.715258855585831,0.6756756756756757,0.5570175438596491,0.1257731958762886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0045117203341714,0.0066469119766191,0.0090520262925297,0.011288518254856,0.0135231461681024,0.0155711459629229,0.017685199366927,0.0197838600509166,0.0217342342342342,0.0235407503101514,0.025738201612489,0.0278100605773878,0.0300907564410289,0.0322783699835925,0.0342089755916012,0.0365549307734526,0.0385824728895345,0.0405748273854088,0.0426456338497765,0.0566118506917254,0.0709732790471306,0.0845964231394556,0.0977761421586667,0.1102129005059022,0.1259658580413297,0.1380688806888068,0.1506543249281838,0.1622201811346548,0.1737573828129187,0.1877785672760157,0.2009085501054567,0.2127210862168302,0.2228695091427759,0.2333637492991501,0.2434789344960768,0.2534985113903725,0.2627586284404185,0.2723675408460605,0.2814456948562662,0.2889675352462903,0.2966010566178877,0.3035748083656667,0.3104559117636492,0.3161450752062106,0.3216149037751636,0.3269920629960627,0.3323626282793087,0.3362859362859363,0.3411536379599434,0.3402811439650994,0.340163089066432,0.3397121775374563,0.3400364309258081,0.3400315326035221,0.3401518055662041,0.3392794905104401,0.3401878982984035,0.3399904329107869,0.3398769934920975,0.3410554377006402,0.3425674200781854,0.3425363248312551,0.3434424943402147,0.3446361771449258,0.3466125016380553,0.3482101881597063,0.3500316856780735,0.3548181914555284,0.3562460012795905,0.3577667017239014,0.3603311926118571,0.3645211930926216,0.3645967925818956,0.3642073685197337,0.370282459055305,0.3752491949087563,0.3676590538336052,0.3621758737316798,0.3634894991922455,0.0,2.7195831425817474,59.20725037529166,204.281986537775,290.59262481799567,fqhc4_100Compliance_baseline_low_initial_treat_cost,85 -100000,95641,43097,406.9802699679008,6657,68.38071538356981,5187,53.56489371712968,2135,21.925743143630868,77.2430810454354,79.64955381680983,63.27207635196621,65.05096185346187,76.9897674316456,79.39741093592203,63.17940963160607,64.96164890407033,0.2533136137897998,252.1428808878028,0.0926667203601425,89.312949391541,112.44596,79.11639248924689,117570.874415784,82722.25561134545,309.09437,198.5593686294199,322491.0132683682,206918.1926468982,318.21897,153.76509120266283,328542.89478361787,157508.4896876851,3453.86613,1550.7514130895877,3570171.809161343,1580319.4269085303,1269.18747,547.0078221043177,1310151.127654458,555056.9233951097,2098.53292,855.6482454831084,2157526.7929026256,863424.4540221184,0.38003,100000,0,511118,5344.13065526291,0,0.0,0,0.0,26425,275.5931033761671,0,0.0,29414,303.3531644378457,1859429,0,66744,0,0,0,0,0,50,0.5227883439110841,0,0.0,0,0.0,0,0.0,0.06657,0.1751703812856879,0.3207150368033649,0.02135,0.3225806451612903,0.6774193548387096,25.009323116349275,4.502655804795648,0.3304414883362251,0.2103335261229998,0.2234432234432234,0.2357817620975515,11.330218076016072,5.902563781215619,22.49071270063302,12657.94570140554,58.60149644136218,12.97015839573406,19.52444055115731,12.929717648700288,13.177179845770512,0.5527279737806053,0.7836846929422548,0.7018669778296382,0.5737704918032787,0.1177432542927228,0.7407407407407407,0.929539295392954,0.8425531914893617,0.7475409836065574,0.1601941747572815,0.4865780557727391,0.7091412742382271,0.6487138263665595,0.5117096018735363,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024018971947462,0.0049398494715273,0.0072789661228592,0.0097237322061797,0.011849907947067,0.0142471612607566,0.0162834565383634,0.0183691390295703,0.0204924738219895,0.0226002007086243,0.0247049050876311,0.0267522464698331,0.0288984645762415,0.0308031483084023,0.0330195495551289,0.0347637266053148,0.0369606878334282,0.0389114347099546,0.040805075930934,0.0426714206778636,0.0579340613407179,0.0723406484051746,0.0854953015906346,0.0989779054957316,0.110211364260225,0.1263776401461013,0.1385090990215763,0.1503608703531945,0.1621086644839613,0.1726145089405573,0.1865262612748694,0.1991111592867595,0.2111023982225707,0.2223974245261325,0.2326647564469914,0.2442393245836892,0.2537480295594039,0.2632996708895,0.2720690203923886,0.2793817506363657,0.2867076138602387,0.2940370517834976,0.3013171297941392,0.307755062865918,0.3136398476755928,0.3195673913848661,0.3246482935025202,0.3299450304182024,0.3346100911475239,0.3390043524851499,0.3388275917882867,0.3390260375746047,0.3397079178554278,0.3403170187487322,0.3402900970468538,0.3390786057729235,0.3377933861971428,0.3382566266649083,0.3393968488007269,0.339299164305441,0.3408615326609482,0.3414677839925157,0.3426856240126382,0.3439425975077601,0.3451785239442067,0.3460043083066253,0.3463100002879438,0.3482918172022564,0.3512930272048679,0.3511254019292604,0.3543168792752819,0.3579496557659208,0.3601351782184531,0.3628093439210547,0.3642371420362034,0.366041366041366,0.3697055581798142,0.3733860891295293,0.3809523809523809,0.3870211102423768,0.0,2.6117567427861843,59.16502425869999,187.87453314128803,296.5808635476336,fqhc4_100Compliance_baseline_low_initial_treat_cost,86 -100000,95811,42813,403.648850340775,6562,67.19478974230516,5144,53.04192629238813,2092,21.46935111834758,77.44904619750217,79.77314841662444,63.38601454967061,65.1060371273862,77.19735346003641,79.52305695308684,63.29353415878549,65.01682462614501,0.2516927374657598,250.0914635376006,0.0924803908851288,89.2125012411924,112.88046,79.37151271994261,117815.3030445356,82841.34093941658,309.09834,197.877042747854,321909.1022951436,205831.0328489938,314.95237,152.0712470570295,324494.7657367108,155649.06311128812,3367.67035,1520.872251358352,3474312.448466251,1547374.3855188745,1239.94674,541.9487962707909,1274318.7525440713,546490.5308244915,2054.34992,842.4600176832713,2108963.3549383683,848002.8059373535,0.37856,100000,0,513093,5355.24104747889,0,0.0,0,0.0,26494,275.8034046195113,0,0.0,29081,299.2871382200373,1869469,0,67032,0,0,0,0,0,52,0.5322979616119234,0,0.0,0,0.0,0,0.0,0.06562,0.1733410819949281,0.3188052423041755,0.02092,0.3184722625617194,0.6815277374382805,25.163593753979544,4.524324663447191,0.33300933125972,0.2222006220839813,0.2146189735614307,0.2301710730948678,11.293514135474217,5.8203524591788325,21.868678126004763,12553.863384061848,57.58605274109089,13.362969516462297,19.228549855693736,12.173329031793925,12.821204337140916,0.5587091757387247,0.7716535433070866,0.6952714535901926,0.595108695652174,0.1216216216216216,0.7378419452887538,0.921875,0.8696629213483146,0.7896825396825397,0.1319148936170212,0.4971264367816091,0.6956521739130435,0.6340694006309149,0.5375586854460094,0.119072708113804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976241353817,0.0045918522498048,0.0068998406948545,0.0091933239199114,0.0113182220323987,0.0135114496044311,0.015670401598646,0.0176568448340971,0.0197342871742462,0.0220912504732377,0.024358251780499,0.0264162561576354,0.0285673166870547,0.0305994275477215,0.0322823519704611,0.0344246882458079,0.03624620925924,0.0383554541683948,0.0404151645177712,0.0424014657810905,0.0567789449526929,0.0704980762796922,0.0841577932422235,0.0973303495445519,0.1094907431798784,0.1241730602582799,0.1362744994116961,0.1478870243943937,0.1588127980540471,0.1698115228100235,0.1829336487794386,0.1959290830713382,0.2078149089093001,0.2188270729205317,0.2289265090134598,0.2399327931732012,0.2504483031308822,0.2608803026391118,0.2705536057964451,0.2786130469553296,0.2865602382518959,0.2941169608380677,0.3003740368845205,0.3067371012656715,0.3129672033826433,0.3180198117149669,0.3232032136931272,0.3282433066571968,0.3329933641457306,0.3388350408353828,0.3383523222888737,0.3384423282746507,0.3378463785620988,0.3375037836747048,0.3360631460474484,0.3358305741619494,0.3346361759467935,0.3351858511229527,0.3362729605274336,0.3375954537382348,0.3381072261072261,0.339403713027061,0.34164979017475,0.3436649261391529,0.3446612427100583,0.3453517327246316,0.3468291851346744,0.3506098516915937,0.3519949423995504,0.3530715642811906,0.3555444373692349,0.3596467897228576,0.3617128781658561,0.3619716160537158,0.3651004168245547,0.3680085500534378,0.3662620986326624,0.3653098793209245,0.3716814159292035,0.3773946360153257,0.0,2.3536184360784147,57.52348634421166,187.90474538751397,290.57988759028194,fqhc4_100Compliance_baseline_low_initial_treat_cost,87 -100000,95815,43037,406.2411939675416,6806,70.10384595313886,5304,54.866148306632574,2126,21.906799561655276,77.3497797498425,79.68199519148838,63.33168066437421,65.05950474898448,77.09089744114794,79.4226897497023,63.23668652032135,64.96669564742655,0.2588823086945524,259.3054417860827,0.0949941440528618,92.80910155793264,112.66552,79.32805897820616,117586.51568126076,82792.94367083041,308.83519,197.3308940660148,321831.27902729216,205456.70726505748,322.27517,155.28840413535633,332899.8069195846,159453.93314237558,3495.24545,1579.353273051314,3619168.1991337473,1619593.8350480744,1274.76995,558.9340355249798,1319234.503992068,572132.3650002403,2082.09368,862.5587404539324,2147771.872880029,877257.4926000956,0.37908,100000,0,512116,5344.841621875489,0,0.0,0,0.0,26319,274.18462662422377,0,0.0,29663,306.183791681887,1865169,0,66909,0,0,0,0,0,61,0.6366435318060847,0,0.0,0,0.0,0,0.0,0.06806,0.179539938799198,0.3123714369673817,0.02126,0.3327262538526198,0.6672737461473802,24.73492574933252,4.397933059865022,0.3340874811463046,0.2183257918552036,0.2226621417797888,0.2249245852187028,11.095651329495002,5.715301999357208,22.67479090481873,12571.937042747852,60.10280225238365,13.774728415091849,20.084771875614223,13.126407143691546,13.11689481798604,0.5582579185520362,0.7677029360967185,0.7042889390519187,0.5723962743437765,0.124056999161777,0.7195032870708546,0.9097938144329896,0.8771929824561403,0.6966292134831461,0.1782945736434108,0.5021601016518424,0.6961038961038961,0.6443768996960486,0.5361050328227571,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026338715886297,0.0049377959382319,0.0069823614183936,0.0090826890448953,0.0111890957176279,0.0133801741255536,0.0155995106035889,0.0178026397721588,0.0199924363993172,0.0219963561178325,0.0242542286007175,0.0261520453425332,0.0282256406037922,0.0301098742675906,0.0321532462709661,0.0342226539089462,0.0361985797983562,0.0381699183703104,0.0400635863974981,0.0421139210194796,0.056219159790104,0.0702231330642631,0.0837220027040907,0.0967863973601799,0.1087419368438804,0.1247026232593548,0.1372580217448952,0.1491805023414218,0.1599572763684913,0.1710801505839956,0.1848663441543749,0.1981191290420328,0.2094626930606917,0.2195588492479888,0.229894287568614,0.2408318376210419,0.2509121746019348,0.2603180315332538,0.2696545072899529,0.2776810864039206,0.2849441217982831,0.2926449953227315,0.2997645889770858,0.3064294011280492,0.312679817905918,0.3182260428340948,0.3232756464762667,0.3282025187635161,0.3336828750453109,0.3387071219203042,0.3391020716240076,0.3383921925399057,0.3388548692045037,0.3388415376587232,0.3388146625556698,0.3388901680865761,0.3380882866300657,0.3380707987893144,0.339637833855853,0.3406745036198122,0.3403959316425711,0.3415059906371498,0.3421212948763733,0.3430454076829979,0.3432659648784718,0.3452290823652265,0.3447381176403501,0.3479012190524067,0.3509465654197432,0.3517478645998101,0.355033892907511,0.3583165482879253,0.3628960989774018,0.3647663623110565,0.3640822486323335,0.3668561952144041,0.3641120344721453,0.3608976951071573,0.3704006541291905,0.3825220390954388,0.0,1.9492095699943277,60.75495101401303,199.85948822153756,297.22982561509696,fqhc4_100Compliance_baseline_low_initial_treat_cost,88 -100000,95800,43135,406.7327766179541,6716,68.91440501043841,5231,54.02922755741128,2105,21.54488517745303,77.41775944651599,79.7454592836342,63.37436231324406,65.09507176547353,77.16017488901151,79.48945920023264,63.28017569429736,65.00402647674203,0.2575845575044724,256.00008340155966,0.0941866189467006,91.0452887315074,113.28922,79.66153814093573,118255.9707724426,83154.00641016256,310.31886,198.8035419180904,323338.8413361169,206934.54271199412,320.01373,154.42573302922597,330585.33402922755,158497.31177142457,3474.00476,1568.2558600331597,3590794.133611691,1601494.655566973,1296.06452,565.2031156949232,1338209.0814196242,575305.7366335321,2069.00348,858.446106456407,2120599.1440501045,862847.0711996881,0.38106,100000,0,514951,5375.271398747391,0,0.0,0,0.0,26524,276.27348643006263,0,0.0,29579,305.3235908141963,1864449,0,66915,0,0,0,0,0,56,0.5845511482254697,0,0.0,0,0.0,0,0.0,0.06716,0.1762452107279693,0.3134306134603931,0.02105,0.322906298876724,0.6770937011232759,25.15217052276525,4.497244065683495,0.327088510800994,0.2079908239342382,0.2332250047792009,0.2316956604855668,11.274391523411357,5.822742118584737,22.447270529075464,12602.740071618298,59.187878475626505,12.952109122348928,19.373815043722622,13.565351771483844,13.296602538071117,0.5599311795067865,0.7803308823529411,0.7054354178842782,0.589344262295082,0.127062706270627,0.7319970304380103,0.917312661498708,0.839907192575406,0.752542372881356,0.2008547008547008,0.5002574665293512,0.7047075606276747,0.66015625,0.5372972972972972,0.1094069529652351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022073937565183,0.0046222618673532,0.0067071871416829,0.0093030813918059,0.0114699422435532,0.0137933140600187,0.0159616756701661,0.0178513105250265,0.0200637788998139,0.0221066852253653,0.0243849938499385,0.0264324868094192,0.0284427906211773,0.0303903804974468,0.0323558525117545,0.0344140217514795,0.0366859496434891,0.0385552410868866,0.0405568252649075,0.0427264114603396,0.0570400125202149,0.0705026344400769,0.0834818340007128,0.0965766447126545,0.108648944685512,0.1243978194726166,0.1370931008548457,0.1489395630680912,0.1603362922499146,0.1709961115336411,0.1841830754175225,0.1969710063518126,0.2085188160951988,0.2193750545899205,0.2300534982588349,0.2415990089153374,0.2516300895016663,0.26083636526973,0.2695949619427328,0.2779823437928826,0.2859436544881198,0.2931803324617109,0.3008301940268543,0.3075192379037566,0.3140635236454517,0.3190855482647823,0.3248906660002499,0.3299025400576881,0.3348766230407118,0.3395771586642956,0.3395744566459227,0.3400456658688894,0.340486348723581,0.3396556207205385,0.3394746226078687,0.3388752681581367,0.3379867046533713,0.339218034750365,0.3403576969634971,0.3404721994364991,0.3413021077283372,0.3417177551302016,0.3430818794192711,0.3441814815640963,0.3441108545034642,0.3462079749804534,0.3470224703101415,0.3490038338256552,0.3519108838056538,0.3551750109010188,0.3593337580777282,0.3625830454424661,0.3656984437023502,0.3693324219640009,0.3726655348047538,0.3731966138070824,0.3719303699098539,0.3735432426906563,0.3663094256663918,0.3638124757845796,0.0,2.225623178638336,59.32426430744926,199.36918436053364,289.8999432891645,fqhc4_100Compliance_baseline_low_initial_treat_cost,89 -100000,95725,42960,405.6202663880909,6630,68.03865238965788,5225,54.04021937842779,2125,21.791590493601465,77.3893283971574,79.75016758602297,63.35181630130408,65.09355179294917,77.12331755913054,79.48446889540426,63.25323146570732,64.99783079448356,0.2660108380268582,265.69869061870577,0.0985848355967604,95.72099846560889,112.43584,79.09106101943924,117457.13241055106,82623.20294535307,306.40889,195.85152398771427,319534.2282580308,204039.6542318724,313.28494,150.90939598695664,324147.4849830243,155163.86046183782,3458.94495,1567.356309886671,3576764.6591799427,1600719.977059808,1286.34428,568.4904292587103,1324051.8046487337,574274.5923417286,2093.82782,876.3533181961693,2149163.8756855577,883851.121016946,0.38094,100000,0,511072,5338.960564115958,0,0.0,0,0.0,26260,273.7320449203448,0,0.0,28998,299.7858448681118,1869133,0,67044,0,0,0,0,0,45,0.4596500391747192,0,0.0,0,0.0,0,0.0,0.0663,0.174043156402583,0.3205128205128205,0.02125,0.3256513026052104,0.6743486973947895,24.8398237669297,4.481010504776319,0.3265071770334928,0.2086124401913875,0.2298564593301435,0.235023923444976,11.228030552235936,5.823478226728994,22.542064816081385,12641.567189034116,58.9244606277664,12.835664021046153,19.15333119179812,13.423070052803896,13.51239536211823,0.5475598086124402,0.7541284403669725,0.694021101992966,0.5836802664446294,0.1254071661237785,0.7108614232209738,0.8900804289544236,0.863849765258216,0.721830985915493,0.1746031746031746,0.4915167095115681,0.6834030683403068,0.6375,0.5408942202835333,0.1127049180327868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408276532606,0.004581065604508,0.0064615603095868,0.0084684666389122,0.0105323085681753,0.0126519145817641,0.0149906244904614,0.0173363808901859,0.0194447566595481,0.0218461255103398,0.0239983604877548,0.026223991463865,0.0284936292642827,0.0303245530062069,0.032393131542309,0.0345052083333333,0.0363594951910633,0.0383075391062611,0.0404440425332876,0.0422847737311442,0.0565145202217975,0.0698791398524564,0.083121814100816,0.0961548571608819,0.1085155278193586,0.1237243144346796,0.1368428868428868,0.1491669771650609,0.1611025052080551,0.1721978575794293,0.1859721294880355,0.1988447059841633,0.2111832305902562,0.2219913609273333,0.2320642605633802,0.2430477076824215,0.2527603800337162,0.2629500450045005,0.2716520238824945,0.2798308639004435,0.2875536480686695,0.2944306076870008,0.3019454792738454,0.3078646032962821,0.3148352782601304,0.320520241892774,0.3257368124648019,0.3310907056010581,0.3357422229129432,0.340333751071829,0.341151471952876,0.3408497181355699,0.3410532236518315,0.3408755960121369,0.3409148269667592,0.339834189916789,0.3389219853673182,0.3396572626888168,0.3405547405410938,0.3419385916397566,0.3428459075332846,0.3436449891282862,0.3452852739510599,0.3462218343738112,0.3476554032899015,0.3479086957653367,0.348567686086907,0.352276295133438,0.3553087890146075,0.3567158861486085,0.3579403053087263,0.3613463279544123,0.3642338072669826,0.3645706455542022,0.3663300934226668,0.3681403342420291,0.3729977116704805,0.3693421846710923,0.3712843522153674,0.3660818713450292,0.0,2.039076715545396,58.87019630253705,197.1284483486532,292.2115087594045,fqhc4_100Compliance_baseline_low_initial_treat_cost,90 -100000,95675,43162,407.5986412333421,6833,70.22733211392736,5300,54.84191272537235,2104,21.61484191272537,77.35982293729873,79.73651830341996,63.33991942654043,65.09030945870994,77.10415411128528,79.48243887514376,63.24569067518191,64.99990935761339,0.2556688260134478,254.0794282761993,0.0942287513585213,90.40010109654872,112.82348,79.33436791022885,117923.6791220277,82920.6876511407,310.19397,197.72178545670025,323671.27253723546,206114.7692257123,314.38855,151.61673741777423,325929.7831199373,156351.27196296255,3490.91751,1568.7584338428985,3610944.834073687,1601894.323326778,1292.42501,564.4027394816949,1336873.9900705514,575941.3843550507,2068.71188,852.917736774368,2125829.777893912,857895.291083399,0.38115,100000,0,512834,5360.167232819441,0,0.0,0,0.0,26492,276.32087797230207,0,0.0,29096,301.36399268356416,1866149,0,66920,0,0,0,0,0,51,0.5330546119675986,0,0.0,2,0.0209041024301019,0,0.0,0.06833,0.1792732520005247,0.3079174593882628,0.02104,0.3277158774373259,0.6722841225626741,25.239134109868523,4.488323742639908,0.3337735849056604,0.2135849056603773,0.2258490566037735,0.2267924528301886,11.329947199458111,5.861093423963706,22.163639613809934,12735.831359467287,59.25606199875444,13.122954203307009,19.76124370695048,13.253591006534013,13.118273081962933,0.5473584905660377,0.7570671378091873,0.6721311475409836,0.581453634085213,0.1322795341098169,0.7176740627390972,0.913649025069638,0.8452914798206278,0.7559055118110236,0.1653225806451612,0.491610318056599,0.684346701164295,0.6137566137566137,0.5344644750795334,0.1236897274633123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023696682464454,0.0045914799160762,0.006980165373104,0.0093030813918059,0.0115198470798763,0.0139345513766603,0.0161403723290435,0.0183242868220217,0.0204192118327238,0.0226389229887879,0.0246586008011228,0.0267045571126659,0.0288098835476344,0.0307766760366148,0.0327811358900831,0.0346866214651893,0.0366689442408431,0.0389151065705543,0.0407868334321033,0.0426997675848627,0.0577861359243587,0.0720329221554378,0.0855673349427941,0.0983522033755629,0.1108239810986414,0.1266480435104649,0.1388402381938031,0.1516749214464504,0.1625507804147958,0.1736148380310413,0.1872278977542135,0.200643253955362,0.2125538675836852,0.2230491408558607,0.2337745281564516,0.2443920109002691,0.2543579671004173,0.2641619731768462,0.2725870652408115,0.28107043930133,0.2888613918634503,0.2961464241857201,0.3037186904719648,0.3101800280283158,0.3162435685855742,0.3213265708095332,0.3269627388972913,0.3322528981086028,0.3375118045044695,0.3423264159157772,0.3418121653977563,0.3416466056812711,0.3426120275543409,0.342003032709943,0.3415647631485219,0.3401291823552821,0.3396094950038797,0.3405325443786982,0.3419232218074723,0.3431337461078702,0.3447447447447447,0.3466289243437983,0.3489645622206835,0.34848688333781,0.3498279968245568,0.3510344468184898,0.3515167036594388,0.3538868090728914,0.3557732827644332,0.3576886341929322,0.362264496067313,0.3644689625622623,0.3680551125853161,0.3698366214549938,0.3709508881922675,0.375887378173505,0.3786243059839605,0.3762698090207232,0.3726606997558991,0.3720030935808198,0.0,2.1585155065620296,57.46133198143336,193.81497617581547,307.34083330710405,fqhc4_100Compliance_baseline_low_initial_treat_cost,91 -100000,95852,43431,408.9325209698285,6767,69.27346325585277,5298,54.678045319868126,2107,21.606226265492637,77.34109898624328,79.63196049302285,63.34986309044478,65.04403507445852,77.07483277210258,79.36661623620567,63.25109161660998,64.94803708594958,0.2662662141406997,265.34425681717266,0.0987714738347946,95.99798850894103,113.96726,80.20510488236226,118898.96924425157,83675.75520840698,312.36835,199.90488647602697,325279.7855026499,207949.46008015168,319.70791,154.39691227321418,329537.5474690147,157995.79144723745,3484.75503,1589.2110963948217,3597954.711430121,1620442.322533511,1285.72275,576.0603387172436,1327114.67679339,586878.6675488161,2080.3839,880.6590253826694,2135257.22989609,888772.0692917629,0.38349,100000,0,518033,5404.498602011434,0,0.0,0,0.0,26706,277.9806368150899,0,0.0,29518,304.02078203897673,1856933,0,66675,0,0,0,0,0,61,0.6259650294203564,0,0.0,0,0.0,0,0.0,0.06767,0.1764583170356463,0.3113639722181173,0.02107,0.3203542310936182,0.6796457689063817,24.84050571718542,4.49729144734232,0.3282370705926765,0.2214043035107587,0.2178180445451113,0.2325405813514534,11.134762296654335,5.543477122087078,22.73606840872116,12676.378507196649,59.95396469224939,13.77588756103649,19.54313560418604,12.851689346345344,13.783252180681524,0.5530388825972065,0.7621483375959079,0.706728004600345,0.5814558058925476,0.1103896103896103,0.6931486880466472,0.9019073569482288,0.8625592417061612,0.7167235494880546,0.1586206896551724,0.5040753948038716,0.6985111662531017,0.6567957479119211,0.5354239256678281,0.0955414012738853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0047420737453263,0.0071914716651959,0.0093000588868357,0.0114243896489337,0.0138707970365545,0.0159642205853887,0.0181790359602142,0.0203358323289686,0.022433176140839,0.0245833632089483,0.0266658461790919,0.0287378162135513,0.0312982282856966,0.0331901037641555,0.035608124845182,0.0376593698621638,0.0399001201873264,0.0417873568588366,0.0433841736199255,0.0580592688369377,0.0714830645751251,0.0852187028657616,0.0976560038646531,0.1096813596445043,0.1253577803360758,0.1380946832063899,0.1500116939170369,0.1616782440752478,0.1720786179698216,0.1858272800645682,0.1983756191464971,0.2101457941486643,0.2208096024137215,0.2315902988687882,0.2429084301037142,0.2527089912843576,0.2619511042606572,0.2714005243029154,0.2800920888359467,0.2883062183240378,0.2965441400126348,0.3035456460507941,0.3095674684500054,0.3152490886998785,0.3213651388820366,0.3268717833126714,0.3322130991025396,0.336877962852628,0.3411469344608879,0.3410668787662276,0.3400743904119024,0.3408381914938667,0.3410801014860457,0.3403074995899011,0.3387674200636111,0.3380782918149466,0.3388687335092348,0.3396164760512511,0.3405994059940599,0.3419909331318473,0.3430681637203376,0.3438746859760603,0.3453232539772086,0.3474934421451472,0.3484760751697636,0.3474576271186441,0.3502570286221996,0.3531175059952038,0.3552914905494856,0.3569989929506545,0.3597951344430217,0.3566087948295526,0.359831996945399,0.3585210531318316,0.3620359281437125,0.3674037420751507,0.3607890990441326,0.3654218533886583,0.3648283841110682,0.0,2.230562782374793,60.4026123908102,195.3608949091088,301.66879436628267,fqhc4_100Compliance_baseline_low_initial_treat_cost,92 -100000,95647,42890,404.33050696833146,6739,69.2964755820883,5287,54.75341620751304,2142,22.08119439187847,77.31769350596971,79.74194492625212,63.289715480586615,65.08217561723848,77.05532886053287,79.47696164055674,63.1944457061158,64.98820497217109,0.2623646454368469,264.9832856953793,0.0952697744708146,93.97064506738673,112.16656,78.89204117401827,117271.3833157339,82482.50459922242,307.54346,196.09864083769747,320971.384361245,204464.68946602265,313.51071,151.50733957552123,324737.11668949365,156106.90773768714,3507.05951,1579.6921613430975,3632274.9485085774,1617804.9518769218,1305.26389,574.9343014922117,1343308.697606825,579971.3583320436,2105.67478,870.2877144012826,2170771.879933506,882839.9563219389,0.3798,100000,0,509848,5330.517423442449,0,0.0,0,0.0,26299,274.3839325854444,0,0.0,29022,300.375338484218,1867014,0,66971,0,0,0,0,0,53,0.5541208819931623,0,0.0,0,0.0,0,0.0,0.06739,0.1774354923644023,0.3178513132512242,0.02142,0.3181433408577878,0.6818566591422122,24.901505775435663,4.494976863304042,0.3247588424437299,0.2125969358804615,0.2311329676565159,0.2315112540192926,11.282789365125351,5.779229924692021,22.640825908769028,12632.491186266918,59.497640884732114,13.18137840275389,19.343917254632967,13.451732295203394,13.520612932141873,0.5485152260261018,0.7615658362989324,0.691322073383809,0.5785597381342062,0.1225490196078431,0.7195121951219512,0.896551724137931,0.8666666666666667,0.7397769516728625,0.1747967479674796,0.4920754716981132,0.6934404283801874,0.6345412490362374,0.5330535152151101,0.1094069529652351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020564875597698,0.0043605240741491,0.0065076142131979,0.0087196008089513,0.0108763112110452,0.0131927465362673,0.0153224654683451,0.0178792182184125,0.020109913726935,0.0222534287295762,0.0242775753220756,0.0264456691617997,0.0286682250208524,0.0307503455674527,0.0329689630945985,0.0350997009488922,0.0372106043483219,0.0392932818147825,0.0412096488854663,0.0432982595184215,0.0574232179992266,0.0705035518953919,0.0839512656233588,0.0969773565034228,0.1091070372560615,0.1246968365088274,0.1369350605187932,0.1492192080157757,0.1597560975609756,0.1709667024704618,0.1842020106139707,0.1974776258478341,0.2105905160208238,0.2216065875344925,0.2323728720180706,0.2434176962491404,0.2534109575264551,0.2626244425424568,0.2718911799436824,0.2795608979133483,0.2873387526343824,0.2943710275888708,0.3012687619205572,0.3077116905244717,0.3138908152960786,0.3190872648781992,0.3249026506567168,0.3304528215440221,0.3353593737850237,0.3396106727986361,0.3392356241234222,0.3390442087866685,0.3395135706732464,0.3397077316681843,0.3402377414561664,0.3400248439584707,0.3396663283430601,0.3408676511654648,0.3412663158614091,0.3417717005686984,0.3418848167539267,0.3426650631863257,0.3431315361859922,0.3442940469299612,0.3451776649746192,0.3459209397822075,0.3481027039309248,0.3501002255073916,0.3524013031141626,0.3560909776525225,0.3574532314869871,0.3575770502292844,0.3571157014320111,0.3620162153893223,0.3666950999905222,0.3667344254454143,0.3677609166924744,0.3674173260296206,0.3641666666666667,0.3603568657874321,0.0,1.9469789469353287,58.000299031495615,203.15012798024645,296.2427826778702,fqhc4_100Compliance_baseline_low_initial_treat_cost,93 -100000,95710,43009,404.79573712255774,6735,69.22996552084422,5302,54.82185769512068,2091,21.43976595966984,77.34880342590687,79.70632456759883,63.338894218876014,65.07700829019166,77.09384330622336,79.45247765049075,63.24480977096887,64.98585594015051,0.2549601196835027,253.8469171080777,0.0940844479071429,91.15235004114196,112.37578,79.05390828033003,117412.78863232682,82597.33390484801,309.27996,197.1846088182996,322559.8161111691,205440.0259307278,315.25242,151.93429338133592,325783.80524501094,155910.37599727558,3487.5356,1568.4149411203643,3607793.5743391495,1602652.3572462248,1271.43464,553.9553594490533,1312735.8478737853,563097.0634720022,2053.85358,857.3119312720053,2108449.6081914115,863553.1182789727,0.38054,100000,0,510799,5336.944937833037,0,0.0,0,0.0,26394,275.1541113781214,0,0.0,29160,301.03437467349283,1867504,0,67001,0,0,0,0,0,60,0.626893741510814,0,0.0,0,0.0,0,0.0,0.06735,0.1769853366268986,0.310467706013363,0.02091,0.3310782241014799,0.6689217758985201,25.130782376816324,4.53764620465283,0.3398717465107506,0.2053941908713693,0.2259524707657488,0.2287815918521312,11.10736164950311,5.6072808457255015,22.24362519204117,12672.043577952183,59.64509331695796,12.92729304427418,20.15297559388149,13.254758711915253,13.310065966887043,0.543002640513014,0.7621671258034894,0.6853496115427303,0.5684474123539232,0.1096455070074196,0.7052631578947368,0.9018567639257294,0.8651685393258427,0.7003891050583657,0.1314741035856573,0.4886706948640483,0.6882022471910112,0.6263817243920413,0.5324123273113709,0.1039501039501039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898008161777,0.0048655881279649,0.007315712038963,0.0095693779904306,0.0118757117292988,0.0141904616480887,0.0167572140621973,0.0188118811881188,0.0209084870471616,0.0232536717670538,0.0252342004386774,0.0275670960127264,0.0297226163304751,0.0319352646858978,0.0339993604489235,0.0359471383846002,0.0378845138378389,0.0400170152722443,0.0416302765647743,0.0436775860631824,0.0584070426800614,0.0724317649028801,0.0864360725563633,0.0993245802297689,0.1105626226188215,0.1254773364362405,0.137806262666992,0.1496161912974969,0.1613334045622095,0.1719340027463096,0.1861655139723784,0.1986906887410052,0.2097311055997911,0.2204989664110949,0.2303951234004159,0.2414293628808864,0.2512091864660478,0.2608695652173913,0.2701604205220195,0.2791728720357429,0.2869346791836923,0.2943571027512633,0.3017695448896254,0.3075770830087838,0.314525533258831,0.3203641874160681,0.3256933503388601,0.3308368195516448,0.3363860969899233,0.340950447005459,0.3407661751834646,0.3405438132981065,0.3404459227104884,0.3409002183311403,0.3412436435007583,0.339736813885442,0.3386917960088692,0.3400128009453005,0.3414050617769195,0.343296648324162,0.3432103390147968,0.3438888998636929,0.3444062539296642,0.3445370619342117,0.3454974932510605,0.3469915387026011,0.3468868032505436,0.3496638151456801,0.3522371246523744,0.3557405121261598,0.3589602782354018,0.3590582430548107,0.360919540229885,0.3614457831325301,0.359336257867633,0.3529482551143201,0.3565625,0.3594106661133015,0.355998876088789,0.3533541341653666,0.0,2.1897195893786545,58.644667321431776,192.09387329761464,309.89923203171065,fqhc4_100Compliance_baseline_low_initial_treat_cost,94 -100000,95632,42619,403.43190563828006,6660,68.44989124979087,5195,53.68495900953656,2078,21.331771791868828,77.26744378178137,79.68226707809713,63.28338998351626,65.06910171292368,77.01400603502594,79.4302717755543,63.19046081403708,64.97946845942415,0.2534377467554236,251.99530254282365,0.0929291694791771,89.63325349952811,113.5596,79.88396514631039,118746.44470470135,83532.67227111259,310.32469,198.3854701418016,323896.4572528024,206844.4036952083,315.73462,151.88096570974676,326293.071356868,155830.697144365,3428.63643,1550.1042267129228,3547616.279069768,1583281.952393469,1248.30604,541.1615537418559,1288820.143884892,549380.3890294221,2046.02194,852.4365075721792,2103111.3016563496,859931.4756122873,0.37666,100000,0,516180,5397.565668395516,0,0.0,0,0.0,26633,277.8463275890915,0,0.0,29205,301.4158440689309,1856719,0,66619,0,0,0,0,0,49,0.5123807930399866,0,0.0,0,0.0,0,0.0,0.0666,0.1768172888015717,0.312012012012012,0.02078,0.3196275071633238,0.6803724928366762,24.872976026231207,4.465022285160007,0.3272377285851781,0.217516843118383,0.2230991337824831,0.2321462945139557,11.03079164803197,5.521680442579935,22.22442228984733,12471.654815832915,58.91112277057048,13.3491331542227,19.353326693000454,12.97184390221467,13.23681902113267,0.5432146294513955,0.7601769911504425,0.6888235294117647,0.5642795513373597,0.1144278606965174,0.7177358490566038,0.8979057591623036,0.8552036199095022,0.7595419847328244,0.1297071129707113,0.4834625322997416,0.6898395721925134,0.6303656597774245,0.5072463768115942,0.1106514994829369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020163333130686,0.0040559724193875,0.0063454353476283,0.0085257296154784,0.0107834260775796,0.0130056626064284,0.0151620205151212,0.0172640864123166,0.0193458010818106,0.0215563588698528,0.0236193015742782,0.0257940584295517,0.0276006090033742,0.0294690420500561,0.0314715991783734,0.0332685468530311,0.0354413074548957,0.037241164564845,0.0391936591150221,0.0413795260485628,0.0561855292998756,0.0703108634630692,0.0832878265983365,0.0958197325471201,0.1079640225492473,0.1225963574756459,0.135375955819881,0.1468867552562313,0.1582257495213545,0.1687858416203097,0.1827152239321032,0.1959097900734418,0.207972836200986,0.2192143560564613,0.2285261385026914,0.2398298324913586,0.2497042608753878,0.2592538421727683,0.2679684395754101,0.2759968367124732,0.2831241606076043,0.2900308829722521,0.2980403765318808,0.3047380229642338,0.3103062440709299,0.3164319480615658,0.3218526125945594,0.3276526962874343,0.3325385512504859,0.337100782571912,0.3365044665749062,0.3362456246727117,0.336489480294072,0.3365004417536897,0.3360868398294218,0.335084808259587,0.3337306127637935,0.334331550802139,0.3346289510633197,0.3361731068673599,0.3375873994436508,0.3390493979255256,0.339641706839568,0.3398554952205717,0.3418941773375211,0.3425260839930792,0.3440835598798111,0.3461538461538461,0.3493818438714235,0.3528492426063958,0.3543590690801625,0.3577213822894168,0.3605938439879695,0.3634465155851187,0.3661394817073171,0.3672139063254466,0.3680847748168926,0.3668797690245411,0.3732574679943101,0.3773055332798717,0.0,2.470108823637013,58.20369335028185,196.44799091400665,293.891387485897,fqhc4_100Compliance_baseline_low_initial_treat_cost,95 -100000,95834,43133,405.6076131644301,6873,70.3299455308137,5420,55.91961099401048,2139,21.912891040757977,77.40182060844235,79.71608305833728,63.36325590393732,65.07605615599986,77.14123840192289,79.45635949600616,63.26737229536831,64.98307584902021,0.2605822065194587,259.7235623311178,0.0958836085690109,92.98030697965488,113.47952,79.78513950394607,118412.58843416742,83253.47945817359,310.80567,198.72821560597825,323690.38128430414,206740.8076527936,323.92048,156.5286782225252,334284.6797587495,160488.76194370742,3581.88124,1624.0344128096256,3697388.734687063,1654493.657167211,1288.0742,572.5314441583234,1328101.4775549388,581456.2177803111,2107.92056,876.4071168635738,2162124.9243483525,883388.7291668428,0.38131,100000,0,515816,5382.390383371246,0,0.0,0,0.0,26599,276.90589978504494,0,0.0,29946,308.7526347642799,1861458,0,66877,0,0,0,0,0,53,0.5426049210092452,0,0.0,0,0.0,0,0.0,0.06873,0.1802470430883008,0.3112178088171104,0.02139,0.3304780326056922,0.6695219673943078,24.929323313335548,4.479900467270597,0.3241697416974169,0.2230627306273062,0.2267527675276753,0.2260147601476014,11.189657858810332,5.635455590467713,22.72308912273996,12738.258227096843,61.00608635126437,14.159420229976892,19.784055608570704,13.675402123108354,13.387208389608414,0.5560885608856089,0.7692307692307693,0.7068867387592487,0.5785191212367778,0.106938775510204,0.7406866325785245,0.925925925925926,0.8816964285714286,0.7364620938628159,0.1673640167364016,0.4937052579609973,0.6902985074626866,0.6470588235294118,0.532563025210084,0.0922920892494929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390510135887,0.0046620519109345,0.0068883658645457,0.0091512030632661,0.0114679598621404,0.0138034936275907,0.0160423992253987,0.0182282098387426,0.0205041192223562,0.0227526278619899,0.0252370457690533,0.0273535328652953,0.0293978578623851,0.03169209859764,0.0338194644993605,0.0356061623665802,0.037636245070335,0.0398689354112877,0.0418254899720609,0.0436773475143353,0.0581112791364655,0.0725814882184448,0.0859136776586715,0.09850943812435,0.1110046234373519,0.1266555417080332,0.1395609983473876,0.1514829382374827,0.1634754952185792,0.1741831815747188,0.1875463864298852,0.2003198547686455,0.2127282801177659,0.2237579624793767,0.2332538120733061,0.2433683184978521,0.2536612570408789,0.2635999730136955,0.2727066483659834,0.2811079951925828,0.2892499855432834,0.2972514818148871,0.3040989616594526,0.3095660300496034,0.3161742382843334,0.321667036243132,0.3265068681662371,0.3316293442185175,0.3366858237547893,0.3414238414963922,0.3415119988155964,0.3416570359363821,0.341997437377677,0.3423559982676483,0.3424092164256658,0.3414312848477421,0.3401874188748536,0.3407945911351067,0.3412500427160578,0.342212785697718,0.3429213483146067,0.343328987396784,0.3440463976884906,0.3451912763675366,0.346344857369065,0.3485455586199719,0.3508562325766627,0.3531881560394799,0.3556014853219365,0.3584583631023259,0.3606587290725788,0.3615286216821234,0.3649450688218209,0.3641217298451681,0.366769403194172,0.3678866587957497,0.3690567191560923,0.3744152938783811,0.3791872597473915,0.363914373088685,0.0,2.4279595425880816,59.67747209163158,205.41022378391796,304.83920899947753,fqhc4_100Compliance_baseline_low_initial_treat_cost,96 -100000,95699,43319,409.1892287275729,6705,68.85129416190347,5211,53.89815985537989,2115,21.713915505909156,77.32145341825886,79.70746236565205,63.3143933609397,65.07971543877784,77.06588780136933,79.45284804490066,63.21972986595479,64.98811780556385,0.2555656168895268,254.6143207513865,0.094663494984907,91.5976332139934,113.18098,79.63112355666864,118267.21282354048,83209.58408213752,311.26514,199.17958260129208,324694.68855473935,207573.75002755516,314.55153,151.42519767565918,325205.5507372073,155622.3473158224,3458.34133,1561.5247423945118,3577801.931054661,1595881.2794029226,1274.21864,561.3041695658831,1315580.3926895787,570763.8685164711,2090.58244,870.2495097656413,2147811.659473976,877944.4490695356,0.38369,100000,0,514459,5375.7824010700215,0,0.0,0,0.0,26631,277.69360181402106,0,0.0,29076,300.2852694385521,1861688,0,66753,0,0,0,0,0,54,0.5642692191140973,0,0.0,0,0.0,0,0.0,0.06705,0.1747504495816935,0.3154362416107382,0.02115,0.3271396396396396,0.6728603603603603,25.09505640432987,4.555686330476968,0.3183649971214738,0.2128190366532335,0.2310497025522932,0.2377662636729994,10.885402998042256,5.288653485938434,22.36851376334769,12726.874747817305,58.6736486470317,12.926570378933842,18.71179614892881,13.451366433505754,13.583915685663298,0.5402034158510842,0.7457168620378719,0.6907775768535263,0.5672757475083057,0.1283292978208232,0.6951124903025602,0.9157303370786516,0.8064516129032258,0.7509157509157509,0.1556420233463035,0.4892911779704232,0.6653386454183267,0.6536624203821656,0.5134264232008593,0.1211812627291242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017731215044176,0.004188216205253,0.0063850089329218,0.0085161736161217,0.0111000325573823,0.0133750305598565,0.0157357455357598,0.0178885031652031,0.0199654463856714,0.0222224496898478,0.0241854456724558,0.0262174207726591,0.0283407056887151,0.0303264498577964,0.0324015772414789,0.0344606540596987,0.0364911335764003,0.0385653202706629,0.040611090311577,0.0426693903926125,0.0575725924378525,0.0710980843714016,0.0847991268208723,0.0973302324602481,0.1098778197471987,0.1254537949428985,0.1376122444647292,0.1497619529444344,0.1612461924865067,0.1727877292716936,0.1867445217728555,0.2003940545397464,0.2129835095505373,0.2239726926611527,0.2338089527937601,0.2447454098469579,0.255110238329019,0.2639059109257115,0.2728087389543655,0.2806221794607472,0.2883536366686334,0.2956586826347305,0.302741866742435,0.3104506599848941,0.3170610181438137,0.3239804402182615,0.3295413303297666,0.3348085409433698,0.3394843014534733,0.3445512186762631,0.3445315968625129,0.3448413243577414,0.3448343793093744,0.3443257291365867,0.3433361573103848,0.3420455590642916,0.3402168056039811,0.3413030975269082,0.3421097623525388,0.3430261652845296,0.3442635251744578,0.3467202406872253,0.3479227397605016,0.3485222227205453,0.3487726581545219,0.3492084294401342,0.3489312867594319,0.3493895882092478,0.3511690329872148,0.3548940584972667,0.3558593571395912,0.3587724935732648,0.358301404853129,0.3589049570798855,0.3615215940509105,0.362406378352259,0.3612622415669205,0.3641975308641975,0.3677329624478442,0.3709175738724727,0.0,2.042361603085327,56.85403454085055,198.6509583049809,295.46166913444205,fqhc4_100Compliance_baseline_low_initial_treat_cost,97 -100000,95720,42905,405.10865022983705,6794,69.7555369828667,5307,55.01462599247806,2118,21.824070204763892,77.3455376358958,79.73157925828976,63.32130932583449,65.08701864634496,77.08424596820683,79.46848174878147,63.22553050927999,64.99236584910956,0.2612916676889654,263.0975095082846,0.0957788165544997,94.65279723539766,113.2494,79.66779098161174,118312.74550773088,83229.70391973139,314.20723,200.369728709542,327802.7580442958,208880.42207640765,319.03406,153.63129094529842,330844.23318010865,158563.37582243542,3509.49266,1588.6215399344896,3639199.3209360633,1632833.5093910538,1312.38629,577.5188174210202,1359574.717927288,591860.3557774198,2081.6216,868.3205495015686,2146326.159632261,884037.3152050107,0.38084,100000,0,514770,5377.852068533222,0,0.0,0,0.0,26869,280.2235687421647,0,0.0,29603,306.7697450898454,1861592,0,66734,0,0,0,0,0,44,0.4596740493104889,0,0.0,0,0.0,0,0.0,0.06794,0.1783951265623359,0.3117456579334707,0.02118,0.3225174825174825,0.6774825174825175,24.93603970744891,4.494396485058359,0.3252308272093461,0.2114188807235726,0.2315809308460523,0.2317693612210288,11.161371676027194,5.74761179276522,22.54746368479297,12640.89090089251,59.91232790032884,13.333184064228472,19.35435297911905,13.575703392060824,13.649087464920504,0.5526662898059167,0.7771836007130125,0.6952491309385863,0.5736371033360456,0.1268292682926829,0.6827067669172933,0.9098360655737704,0.8349514563106796,0.6953405017921147,0.1355311355311355,0.5091777721900931,0.7129629629629629,0.6514459665144596,0.5378947368421053,0.1243469174503657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023911083192332,0.0047466910086718,0.0069749733489009,0.0090042480538222,0.0111805159925124,0.0132715420655938,0.0156329668984927,0.017677154498943,0.0197766688481675,0.0219454997900687,0.0241528552674762,0.0262222678718159,0.0283492429229756,0.0304082600004121,0.0325074044643502,0.0344260769779487,0.0363687214493624,0.03834936845492,0.0402034088663803,0.0422284273479339,0.0575230018902802,0.0710398526456798,0.0848804139074585,0.0977085262183317,0.1097680599943043,0.1253582949918028,0.1381747185467355,0.1501203433512961,0.1613185967462642,0.1722657507781475,0.1858750485060147,0.198637554963502,0.2102622154978176,0.2213140762623776,0.231624364364805,0.2428865842308203,0.2534654791401594,0.2629038790387903,0.2713535344367931,0.2796767325259278,0.2880756017720611,0.2948464694399962,0.3020090579067485,0.3082006464743206,0.3139945404913558,0.3204198919504301,0.3247834402069974,0.3303445560649741,0.3354221039303341,0.340887853542333,0.3404526831889314,0.3399972557628979,0.3398107397460594,0.3399097189172039,0.3395997034840622,0.3383573579541112,0.3377653259888883,0.3388094063476402,0.3392560923471569,0.3400200422318457,0.3421557201398549,0.3435676576826896,0.3454059514289322,0.3463936485152956,0.3467683544914804,0.3467410375258596,0.3473016235993597,0.3491878252641539,0.3509204181479005,0.3537688842826962,0.356787588409765,0.3564087544597689,0.3577281896116994,0.3605006105006105,0.3603227337446607,0.3581350404638241,0.3630009319664492,0.3697530864197531,0.3741685144124168,0.3785266457680251,0.0,1.570714026224412,59.11625272327064,203.13960109669264,299.0080550503432,fqhc4_100Compliance_baseline_low_initial_treat_cost,98 -100000,95609,42904,404.03100126557126,6701,68.96840255624471,5223,54.04302942191635,2095,21.50425169178634,77.23812690061078,79.66923881467568,63.25655152000609,65.0543239583581,76.98098478493296,79.41352449416938,63.16235764903293,64.9630306688846,0.2571421156778228,255.71432050629997,0.0941938709731644,91.29328947349792,112.09682,78.8818320133014,117244.12973674026,82503.76917943203,308.44886,197.3489932276129,322017.4146785345,205817.03163868017,313.70519,150.9565884114263,324615.30818228406,155066.87471161768,3442.90183,1561.747311120843,3565535.1797424927,1598192.4978019362,1252.70552,549.399576261379,1294597.2554885,559249.1169318663,2068.21352,865.0626581567113,2125979.41616375,875191.7711706545,0.37997,100000,0,509531,5329.278624397285,0,0.0,0,0.0,26398,275.46569883588364,0,0.0,29014,300.0240563126902,1862894,0,66875,0,0,0,0,0,47,0.4706669874175025,0,0.0,0,0.0,0,0.0,0.06701,0.1763560281074821,0.3126399044918669,0.02095,0.3169344518697569,0.6830655481302431,25.125266587827134,4.48565380887638,0.321462760865403,0.2201799731954815,0.2230518858893356,0.2353053800497798,10.98155088232331,5.507785212648083,22.433726760436183,12688.97869144161,59.33462623185094,13.613827595244835,19.04338830244867,13.079638852887411,13.597771481270026,0.5517901589125024,0.7791304347826087,0.699225729600953,0.5888412017167381,0.1025223759153783,0.7033707865168539,0.9310344827586208,0.8891625615763546,0.7292418772563177,0.0909090909090909,0.4997427983539094,0.705045278137128,0.638648860958366,0.545045045045045,0.1058700209643605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023208204961893,0.0047163591735721,0.0068739338802696,0.0091275931817488,0.0115616349128806,0.0138451664170665,0.016166046203274,0.0183978261757855,0.0205592946423091,0.0230454866694662,0.02498358368218,0.0273419438365031,0.0295077242926688,0.0317831774930155,0.0336455547179164,0.0357497620131617,0.0376836234333046,0.0397556693641378,0.0417651284079907,0.043815723585378,0.0580314672521039,0.0718140568183009,0.0849389616120017,0.0976007920124699,0.1100363267719861,0.1250979727582774,0.1377064853667605,0.1497836328366481,0.1612337252468627,0.1714067836659291,0.1847252640550658,0.19805522130801,0.210496497172679,0.2218728430094332,0.2323195592286501,0.2424861038687273,0.2525610628970207,0.2620475814635246,0.2721400955196725,0.2812521531430146,0.2890281404119524,0.2965317444492663,0.3033849221420433,0.309528390370602,0.3152486591906387,0.3206730709790685,0.3260806789790204,0.330188679245283,0.3351916829109811,0.3401310997815003,0.3410976301780744,0.340738695201933,0.3410179260075433,0.3409413880107885,0.3411929531701791,0.3404978245160893,0.3389315648011196,0.3402998861818122,0.3409614129127581,0.3420641897346657,0.3432409044734565,0.3438126824618195,0.3447985340270025,0.3460241072231717,0.3466869874446621,0.3473493691472339,0.3487571043113841,0.3530286727008038,0.3549696456303826,0.3561692827339558,0.3545167345817499,0.3587118788654297,0.3621987475488645,0.3686903398243604,0.3687976650032953,0.3730074388947927,0.3753225072089847,0.3817377312952534,0.3861141602634467,0.3858508604206501,0.0,2.252022080856039,59.01871729983405,199.5744666684525,292.9464297446377,fqhc4_100Compliance_baseline_low_initial_treat_cost,99 -100000,95724,44897,424.4076720571644,6239,63.96514980569136,4869,50.34265179056454,1958,20.08900589193933,77.33641368994157,79.71157933190304,63.332022412709286,65.08960982379935,77.09544793320246,79.47257639822536,63.24258866064645,65.00350572504482,0.2409657567391008,239.002933677682,0.0894337520628383,86.10409875453229,151.32898,106.46079962289303,158088.3999832853,111215.96070253334,386.25368,252.837786615945,402957.0222723664,263581.7143202802,373.71242,181.0359013653552,387694.45489114535,187005.7811787761,3525.2593,1601.463300353478,3644088.5462370985,1634392.0929479315,1199.08028,531.523108780013,1235145.762818102,537788.9098993072,1926.11086,803.1262407435427,1976557.7075759475,807388.852910618,0.38138,100000,0,687859,7185.836362876603,0,0.0,0,0.0,33387,348.2094354602816,0,0.0,34202,354.51924282311643,1620225,0,58171,0,0,0,0,0,57,0.5954619531152062,0,0.0,2,0.0208934018636914,0,0.0,0.06239,0.1635901200901987,0.3138323449270716,0.01958,0.3232646834477498,0.6767353165522502,24.788275201978337,4.374840567745699,0.3132059971246662,0.2244814130211542,0.2333127952351612,0.2289997946190183,11.268402610993832,5.798723971854545,20.75351364531453,12293.034852449167,55.13454231068335,13.062029551681936,17.30565786248191,12.506745740680593,12.260109155838908,0.5508317929759704,0.7666971637694419,0.6878688524590164,0.590669014084507,0.1112107623318385,0.7290867229470452,0.910941475826972,0.8735083532219571,0.7845528455284553,0.1346938775510204,0.485698261357263,0.6857142857142857,0.6175406871609403,0.5370786516853933,0.1045977011494252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0044320936317812,0.0067008477587694,0.0090657777055045,0.0115662797676571,0.0139531094045994,0.0161943319838056,0.018582805799469,0.0207129931604183,0.0228589562475687,0.0250627850955871,0.0271757543402153,0.0292868527944881,0.0312287568235657,0.0334007470540891,0.0354728682170542,0.0376061296334644,0.0396277892465533,0.0416857202244855,0.043625,0.0584156554792088,0.0720585927282239,0.0854727745616243,0.0982927547201547,0.1106625629782659,0.1266012767936414,0.1385788039733274,0.1498638761272758,0.1599935955595879,0.1706143874872783,0.1838247955230305,0.195808506266694,0.2070741646291768,0.2178505499786999,0.2277891313424308,0.2381773753054477,0.2473341133210763,0.256555212138241,0.2655238483951793,0.2735716328281384,0.2806176106879933,0.2873979419013467,0.2942719410180065,0.2999293861381398,0.3050645963486383,0.3097359289247656,0.3143485761432107,0.3192968630840408,0.3240393323845258,0.3285490020183897,0.3276569967018913,0.3265047460289032,0.3253440108278818,0.3237991898148148,0.322263240941975,0.3204614841748362,0.3184175057480377,0.3195113529866329,0.3201889505031834,0.3217167289836664,0.3216154870659738,0.3218452169098746,0.3222503716421347,0.3220834915458667,0.3220742379074911,0.3238956032506772,0.3244388456252863,0.3290583441261016,0.3315131231284129,0.3339984038308061,0.3361989702096359,0.339650067294751,0.3432874243789419,0.3456885856079404,0.3515677118078719,0.3536467167433971,0.3564879564879565,0.3586644817697665,0.3533627342888644,0.3629770992366412,0.0,1.9296960170477515,57.58098074624599,179.22588962813856,269.5305886600323,fqhc4_100Compliance_implementation,0 -100000,95607,44512,421.9565512985451,6015,61.57498927902768,4730,48.86671478029852,1884,19.308209649921032,77.26635035352784,79.70648314357241,63.26822878755484,65.0730101142669,77.02896216894945,79.47110460659755,63.17888920652207,64.98752128197589,0.2373881845783927,235.37853697486355,0.0893395810327675,85.48883229101989,150.82496,106.09092097662447,157755.1434518393,110965.64161266902,384.32766,252.27971807777857,401384.4488374282,263269.36058318656,368.45163,179.16605402876397,382347.1293942912,184965.57069843545,3392.95776,1553.4157046591083,3508235.0246320874,1584178.0772803405,1165.17991,517.5291262758299,1200517.9537063185,523125.0561502602,1849.18428,785.3798447636505,1897041.6601294884,787306.069378315,0.37854,100000,0,685568,7170.688338719969,0,0.0,0,0.0,33162,346.2089595950088,0,0.0,33859,351.04124175008104,1617204,0,58034,0,0,0,0,0,58,0.5961906554959365,0,0.0,0,0.0,0,0.0,0.06015,0.1588999841496275,0.313216957605985,0.01884,0.3218884120171674,0.6781115879828327,24.52298258247581,4.409256552213755,0.3226215644820296,0.2348837209302325,0.2167019027484144,0.2257928118393234,11.17922030470161,5.675802369264201,20.20395742666963,12116.47117339489,53.87673423306491,13.281995624333051,17.362692826716277,11.551067448946013,11.68097833306957,0.5566596194503172,0.7812781278127813,0.6946264744429882,0.5609756097560976,0.1217228464419475,0.7230769230769231,0.909307875894988,0.8883248730964467,0.6766917293233082,0.1312217194570135,0.4935860058309038,0.703757225433526,0.627208480565371,0.5204216073781291,0.1192443919716647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0047273649505452,0.0070785136136979,0.0093338213762811,0.0114513141019116,0.0137896592843238,0.0159311724363161,0.0181682556226561,0.0203609724154866,0.0224818116610308,0.0244570795188636,0.026632814587916,0.0287411342042144,0.0306938859676255,0.0327525124719832,0.0346012168370514,0.0367226368159204,0.0390631491483174,0.0409038395487047,0.0427917357612924,0.0572916122152408,0.0717631647891013,0.0851068299754196,0.0982946944880397,0.1102579268679101,0.1255521774595069,0.1375,0.1479229341355693,0.1587843624218549,0.169000311630256,0.1821447836875606,0.1946004553832809,0.2059803921568627,0.2160021038098681,0.2247010195646183,0.2350683351082712,0.2435255737045561,0.252415812591508,0.260971341560419,0.2683836182172766,0.2757506255212677,0.2824296941799313,0.2891684733032424,0.2949824914855855,0.300887537993921,0.3060070845830093,0.3104070583517144,0.3139643025492719,0.3182448635686046,0.3225299677879284,0.320635775862069,0.3200434890314056,0.319081775009512,0.3181220467320781,0.3168316831683168,0.3152333700845277,0.3135044413129186,0.3135370461639559,0.3146758729127856,0.3155683484106268,0.3164835164835164,0.3178683261326251,0.3194170271745978,0.3207399278883837,0.3216360174495674,0.3210076567277288,0.3218900068602789,0.3247946936197094,0.3268328807701802,0.3291578569433917,0.3332267202778031,0.3350922076537682,0.3389357518868522,0.3388260308299795,0.3397388059701492,0.3428907168037602,0.3469667021438345,0.345111423408954,0.3450627386797599,0.3496608892238131,0.0,2.332089449112685,56.90759795933103,177.63351485912162,254.86785754764543,fqhc4_100Compliance_implementation,1 -100000,95713,44422,420.35042261761726,6093,62.64561762769948,4784,49.47081378705087,1964,20.185345773301435,77.34534288058313,79.71399855357203,63.32656324425341,65.07435330746537,77.0991220506905,79.46635160989112,63.23599902767889,64.98538200325336,0.2462208298926356,247.64694368090545,0.0905642165745135,88.97130421200927,150.94574,106.17009196123496,157706.62292478557,110925.46671949992,382.21663,250.57980283911863,398844.1695485462,261311.3086405386,367.05156,178.6732624315842,380098.7013258387,184075.66591531105,3462.79627,1576.6605331434278,3585772.7685894286,1615156.7218073057,1159.92232,511.8446121542495,1199119.7956390458,522014.5875212869,1926.82616,808.2825463789384,1983177.5202950488,819018.826574064,0.37806,100000,0,686117,7168.482860217526,0,0.0,0,0.0,32913,343.3493882753649,0,0.0,33629,347.96736075559227,1620282,0,58162,0,0,0,0,0,72,0.7522489108062647,0,0.0,0,0.0,0,0.0,0.06093,0.1611648944611966,0.3223371081569013,0.01964,0.3263190954773869,0.6736809045226131,24.66540404435925,4.290051899525454,0.3179347826086957,0.2295150501672241,0.2184364548494983,0.2341137123745819,11.211684997799662,5.955696937143515,21.07175848441577,12184.958944886232,54.24794975706535,13.03934024039625,17.052740123971418,11.824834003139166,12.331035389558508,0.5579013377926422,0.7868852459016393,0.6916502301117686,0.5885167464114832,0.1232142857142857,0.7200634417129262,0.9451697127937336,0.8451443569553806,0.7258687258687259,0.1512605042016806,0.499858075503832,0.7020979020979021,0.6403508771929824,0.5432569974554707,0.1156462585034013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0048547625321792,0.00724402418733,0.0095368677635588,0.0120502755801419,0.0140807786680784,0.0162584222704708,0.0183742841685126,0.0206386850121644,0.0226530591354372,0.0247985565784347,0.0267816800164304,0.0290057805846413,0.0312046070321111,0.0330853138770497,0.0350316825337757,0.0370025165439463,0.0393615806896837,0.0412767727178207,0.0430791034044371,0.0578658256401687,0.0718165548566704,0.085434570466207,0.0981524735391284,0.110737121995484,0.1262394835705592,0.1378329317098544,0.1489690282452179,0.1601637224413025,0.1710712600283152,0.1834744758333872,0.1954980023603547,0.2062151810584958,0.2162490558602344,0.2251037915579195,0.2361215802775683,0.2451726678125767,0.2543431297538143,0.2623501634580458,0.2699550953079179,0.2773908415669759,0.2840889159134227,0.290073263975192,0.2954387478727739,0.3001081448898501,0.3051154647564328,0.3106258842383343,0.3151603016545216,0.3193684701734374,0.3234081357545,0.3227177079961152,0.32159592061742,0.3218437892892963,0.3201905534157713,0.3195217818539141,0.3167548500881834,0.3150229539338293,0.3157307610282658,0.3171405195336469,0.3175828682488454,0.3190514484486918,0.3203810726049823,0.3215190403416584,0.3224643361028374,0.3234457145613273,0.3237896385227717,0.3255906519205072,0.3281401836933011,0.3320849812747191,0.3357038441784205,0.3406093678944975,0.3432344984883042,0.3440055352874575,0.3479554470552334,0.351799510081025,0.3520190023752969,0.3535075653370014,0.3516906256327192,0.3443617314585056,0.3557729941291585,0.0,2.0321722636213515,55.544208654225606,181.35142481938655,262.45613591478326,fqhc4_100Compliance_implementation,2 -100000,95661,45003,426.2761208852092,6026,61.749302223476654,4691,48.45234735158528,1799,18.35648801496953,77.2498286400838,79.64815472146465,63.26585613190741,65.03866541224643,77.02369345832058,79.42625959826475,63.18128045588126,64.9588002311462,0.226135181763226,221.8951231999,0.0845756760261551,79.86518110023155,151.40268,106.59334228571448,158269.78601519953,111427.99603570376,385.1714,252.5152337006968,402053.7523128548,263381.4265162363,370.67249,180.5250409913573,384260.0432778248,186132.71574065395,3361.74639,1519.872686619707,3475067.279246506,1549720.0688041158,1111.56453,485.7261657664798,1149474.4357679724,495249.2403032377,1773.17686,748.1772864704975,1812051.055288989,746281.1415625851,0.38145,100000,0,688194,7194.081182509069,0,0.0,0,0.0,33233,346.7766383374625,0,0.0,33901,351.1985030472188,1609947,0,57787,0,0,0,0,0,53,0.5435862054546785,0,0.0,2,0.0209071617482568,0,0.0,0.06026,0.157976143662341,0.2985396614669764,0.01799,0.3318534961154273,0.6681465038845728,24.805129018005637,4.462632315384073,0.3223193348966105,0.2315071413344702,0.2185035173736943,0.2276700063952249,10.93170052103593,5.3751502702077865,19.25424933354904,12225.397078696602,52.859007127831,12.84444989466074,17.014841801875725,11.315638767938264,11.684076663356263,0.5529737795779152,0.7799263351749539,0.701058201058201,0.5492682926829269,0.1161048689138576,0.731442869057548,0.9203296703296704,0.8804071246819338,0.7477477477477478,0.1363636363636363,0.4916953035509736,0.7091412742382271,0.6380697050938338,0.4943960149439601,0.1108490566037735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629077353215,0.0048880911091504,0.0069122319099481,0.0092460881934566,0.0115755103701518,0.0137799686309657,0.0160704817065709,0.0183284831776178,0.0203415831458375,0.0226032097172294,0.0247915234939944,0.0267796610169491,0.0289447960076143,0.0308895828824093,0.032913823186281,0.0353500879098148,0.0373763017460235,0.0393172686593507,0.0413046870935858,0.0432932932932932,0.0578572846678718,0.0720412202708222,0.0850974506449479,0.0982195470999242,0.1104227789855837,0.1255702204676072,0.1374000403555536,0.1490078223245305,0.1596131627369592,0.1698088884591833,0.1820378921928272,0.1948688476594268,0.2064596327474157,0.2160765991050276,0.2260862847241383,0.236680407560084,0.2470922747982223,0.2558152652121923,0.2639420012746972,0.2718196753328814,0.2782758140183008,0.2855380928888575,0.2920074172689235,0.2979534872529085,0.3037092114725923,0.3086283869850731,0.313779161748826,0.3173713117895005,0.3219088204342007,0.325813242244906,0.3247774340407711,0.3239417186378939,0.3223294659638511,0.3208433630115135,0.319779400804889,0.3186560294568886,0.3172862011571689,0.3175028787629544,0.3181211270498819,0.3186091066984189,0.3199323689648694,0.3213224515668951,0.3219528563040013,0.3232221325441664,0.3233358246739156,0.325878095138907,0.3256943261202931,0.3279544672733527,0.3311572700296736,0.3345851286713839,0.3366650083668762,0.3388564515280627,0.3420443888715223,0.3455715367146101,0.3471367282223466,0.3510400752144788,0.3541033434650456,0.3552578156719448,0.3548121743899095,0.3553280242700038,0.0,2.2821464300960845,52.57287192789767,174.4566495549002,264.3791172339518,fqhc4_100Compliance_implementation,3 -100000,95744,44751,424.1519050802139,6147,62.95955882352941,4806,49.60101938502674,1928,19.708806818181817,77.32698317968122,79.68647033950441,63.31555014592704,65.06111985275778,77.0828613172379,79.44773607712776,63.22382575140754,64.97516696248458,0.2441218624433219,238.73426237665285,0.0917243945195025,85.95289027320518,152.60234,107.31262206063464,159385.56985294115,112082.6391843193,385.52562,252.32717637197064,402045.06809826207,262925.70434906695,365.83326,176.98932520565066,379087.11773061496,182494.9015861717,3466.98616,1576.172012756458,3578908.85068516,1604044.4756396853,1151.20984,507.6993187085728,1189368.0230614974,517252.2546672095,1895.0048,798.0522797193275,1938848.909592246,796733.8977859028,0.37981,100000,0,693647,7244.798629679144,0,0.0,0,0.0,33279,346.93557820855614,0,0.0,33478,346.643131684492,1612480,0,57854,0,0,0,0,0,75,0.7833389037433155,0,0.0,3,0.0313335561497326,0,0.0,0.06147,0.1618440799347042,0.313648934439564,0.01928,0.3390458545622973,0.6609541454377026,24.50952579656317,4.447261929849263,0.3233458177278402,0.2207657095297544,0.2270079067831877,0.2288805659592176,11.260029641024332,5.7732901565858326,20.519882260166515,12165.56649972294,54.411467898575005,12.701219276369264,17.43155237726534,12.160586111426326,12.118110133514069,0.5582605076987099,0.8001885014137606,0.6872586872586872,0.5902841429880843,0.1109090909090909,0.7054741711642252,0.9203084832904884,0.8668407310704961,0.6931407942238267,0.1330645161290322,0.5038472499287546,0.7306547619047619,0.6285226302305722,0.5552825552825553,0.1044600938967136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.0046338545152197,0.0069930779692669,0.0091738459037711,0.0114924993643529,0.0135023674965633,0.0153668882816005,0.0176491604144337,0.0198892091330921,0.0219654244158077,0.0240345195145949,0.0261256082287966,0.0277749223905758,0.029738245773009,0.0319792032020466,0.0341927150607078,0.036194972460347,0.0382867930791253,0.040234902816755,0.0421736956159359,0.0565113899734825,0.0709129333975016,0.0839318479685452,0.0962098512327182,0.108489621219309,0.1231772953653868,0.1353593211349774,0.1468624548774904,0.1575712224063285,0.1678081456512871,0.1810616187314044,0.1931434142114384,0.2045162694526063,0.2146968072302339,0.2248043241339072,0.2357844332616551,0.245408642030475,0.253882975727882,0.262458396283212,0.270721588043827,0.2774283960483189,0.2844273145816005,0.2904086205057078,0.2960850931005918,0.3017288576886109,0.3077179385921611,0.3134863431816188,0.3174744784165785,0.3211413748378729,0.3251059783685274,0.3251356920631927,0.3238116215360471,0.322560649178665,0.3217657860871326,0.3206666369326376,0.3191420862206414,0.3177570093457944,0.3188974438953917,0.3196760524876982,0.3200171132146104,0.3207649557455886,0.3224251999605016,0.3229477220239345,0.3230690102419607,0.3243529298566343,0.3253241501656622,0.3262546613908736,0.3293862679816571,0.3337773882559158,0.3380727949621767,0.3405096062133805,0.3425906296374814,0.3438814591574056,0.3475785638378624,0.3529632408102025,0.3551512287334593,0.3533466074437126,0.3597239139261063,0.3630022321428571,0.374414976599064,0.0,2.2409129176304448,57.13234767397732,173.5034926248792,267.7699817271194,fqhc4_100Compliance_implementation,4 -100000,95763,44741,423.1383728579932,6156,63.18724350740892,4834,49.93577895429341,1885,19.308083497801864,77.39144353273707,79.7279426424864,63.36142006586866,65.08632683372905,77.15198131798401,79.49105265181521,63.27306657833983,65.00132192852816,0.2394622147530611,236.88999067118743,0.0883534875288276,85.00490520088988,151.41324,106.50294779167832,158112.46514833497,111215.13297586574,386.8203,253.51292522857364,403389.79564132285,264184.2833125253,376.48656,182.36927012421745,389702.5677975837,187803.50910842387,3451.57275,1575.5957332667028,3568329.4905130374,1609350.535453885,1178.0878,521.4692142922081,1213860.3531635392,528194.4240058291,1846.24384,774.128231422935,1893852.9494690013,780104.1946920183,0.37976,100000,0,688242,7186.930234015224,0,0.0,0,0.0,33314,347.3053266919373,0,0.0,34514,356.92281987824106,1619639,0,58151,0,0,0,0,0,68,0.710086359032194,0,0.0,0,0.0,0,0.0,0.06156,0.162102380450811,0.3062053281351527,0.01885,0.3411874128042164,0.6588125871957836,24.48604565335797,4.362440457999431,0.3227141083988415,0.240380637153496,0.2194869673148531,0.2174182871328092,11.43573933891734,6.0388942362159215,20.058526359114836,12197.630644046209,54.82959179285524,14.022667067442631,17.3590469439322,11.845078497787233,11.602799283693171,0.5773686388084402,0.806368330464716,0.7,0.590951932139491,0.1284490960989533,0.7342657342657343,0.9227272727272728,0.8873626373626373,0.7088122605363985,0.1396396396396396,0.5204398082886946,0.7354570637119113,0.6429765886287625,0.5525,0.1254523522316043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021666936659646,0.0047022102414949,0.0070006696292688,0.0093234884878276,0.01185549714797,0.0140868007491246,0.016588546973711,0.0187524231232272,0.0211157535576009,0.0231542113448473,0.0250717213114754,0.0273822225869993,0.0292845326291345,0.0312258781634984,0.0332859145637473,0.0349971076770514,0.0369159120310478,0.0390363295064455,0.0411300633010072,0.0431879498744778,0.0578779813162152,0.071852340145023,0.0853108411489477,0.0978977589416231,0.110477315141866,0.1258750132177223,0.1375865616085347,0.1487722881824758,0.1589295058682814,0.1687337199455455,0.1815020937166969,0.1936669983129298,0.2050496157901029,0.2158604264988638,0.2260511129431162,0.2364455165088076,0.2461905451951265,0.2550579089857221,0.2631322405858214,0.2698283752860412,0.2770034440514989,0.2837474579836843,0.2902096661660537,0.2963406599988021,0.3023015978937406,0.3077263943082926,0.312929676758081,0.3168333206116581,0.3212071799251983,0.3251940385046187,0.3242447860675123,0.3228238331296431,0.3219130899326594,0.3205137445403831,0.3198743033321475,0.3176310809985961,0.3157063930544593,0.3162286873711424,0.3165479881435045,0.3176569127134048,0.3193258426966292,0.3192649673977474,0.3207543216343635,0.3218642967473304,0.3236449521606054,0.323848344699642,0.3249480071792826,0.3279803514075193,0.3305150426266469,0.3336252537717447,0.3377092672216631,0.3432875687803836,0.346521491422422,0.3500420264384504,0.3509778112072207,0.3546484190655969,0.3608387388746417,0.3662113298513459,0.3660326086956522,0.3639832125143075,0.0,2.107947235578247,56.515449790221936,183.1913135663461,263.4822310439901,fqhc4_100Compliance_implementation,5 -100000,95716,44840,425.2685026536839,6034,61.59889673617786,4746,48.894646663044846,1853,18.826528480086925,77.37264048070351,79.73117912736407,63.34029949113111,65.08147327920754,77.13389441783623,79.49716162384607,63.25077942725546,64.99683150449178,0.2387460628672784,234.01750351800388,0.0895200638756534,84.64177471576306,151.47726,106.51255950829092,158256.98942705503,111279.78551996627,385.7235,253.7093591973431,402290.21271260816,264367.46123672434,376.68587,183.24271360216048,389002.1104099628,187924.1939464284,3398.23796,1561.1914855314851,3502613.8054243806,1583345.8936139029,1143.44931,513.6973291125148,1177621.014250491,519685.02243073634,1823.22998,779.2847812855597,1855715.073759873,773426.4296892585,0.37999,100000,0,688533,7193.499519411593,0,0.0,0,0.0,33240,346.53558443729366,0,0.0,34416,355.20707091813284,1615404,0,57990,0,0,0,0,0,73,0.7313301851310127,0,0.0,0,0.0,0,0.0,0.06034,0.1587936524645385,0.3070931388796818,0.01853,0.339034045922407,0.6609659540775931,24.4867299826179,4.3803313773460975,0.3135271807838179,0.2404129793510324,0.2239780868099452,0.2220817530552044,11.151954577281566,5.738037130620358,19.817134046372225,12171.044501456445,53.80385049577279,13.625816642512254,16.715404297662392,11.777450401182316,11.685179154415827,0.5640539401601349,0.7931638913234005,0.6975806451612904,0.5559736594543744,0.135673624288425,0.729022324865281,0.9368932038834952,0.8782383419689119,0.6872586872586872,0.1818181818181818,0.5018856977081521,0.7119341563786008,0.6343012704174229,0.513681592039801,0.1219211822660098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670886075949,0.004337559413416,0.0064112318289256,0.0088255606109847,0.0110524763851183,0.0134678420913329,0.0156058876294544,0.0175558572259704,0.0199327397806376,0.0220800491350189,0.0243092223304454,0.0262109607605593,0.0284721293944659,0.0302786875115862,0.0323332783096731,0.0342717764273016,0.0364844858110136,0.0386155250383769,0.0404311267708106,0.0422347439355907,0.0566339156129598,0.0707222902344853,0.084740075911674,0.0974889372391973,0.1096515734542196,0.1247647444437395,0.1362850444984248,0.1482534006002937,0.1591916516240667,0.1693964453883365,0.1823822141795385,0.1938663982945384,0.2051778527140215,0.2158758984345086,0.2259420672653636,0.2364941987389044,0.2463467184656775,0.2552836923354089,0.263172244564106,0.2710029586477374,0.2785630766737286,0.2849150241116157,0.2915308867269431,0.2970488340554229,0.3020267230793546,0.3068735430876059,0.3111517321681211,0.3158343297631465,0.3207937966834522,0.3245172013507809,0.323671497584541,0.3231448253103989,0.321591980966057,0.32112265091219,0.3199815769533629,0.3185931494893506,0.3167444435656094,0.3172104779411764,0.3176548808346687,0.3174035312544496,0.3185049728499188,0.3199677336848525,0.3209053480741499,0.3218654604603489,0.3235294117647059,0.325166748851574,0.3253790562561995,0.3276222575913616,0.3316847201421058,0.3320495185694636,0.3354424658772484,0.3384022387665663,0.3412763281986796,0.3433447098976109,0.3435748972730669,0.3490566037735849,0.34876637222053,0.3481765061454765,0.3467103467103467,0.3490315229775921,0.0,2.604503392007218,56.446044922403374,173.49319621460236,260.4181620365291,fqhc4_100Compliance_implementation,6 -100000,95741,44526,422.27467855986464,6028,61.74992949728957,4718,48.69387200885723,1845,18.894726397259276,77.33281654085012,79.69771130936124,63.319784280511655,65.0705355084031,77.10574213992838,79.47377502868791,63.23564614969257,64.9900539557009,0.2270744009217367,223.93628067332827,0.0841381308190847,80.48155270219581,151.19016,106.40408702870924,157915.7936516226,111137.4301800788,386.7192,252.69360016735737,403363.71042708977,263376.03552016086,363.718,176.0892368373898,376034.8648959171,180893.2400928253,3332.29525,1512.9078986700165,3442199.3398857336,1541877.2716704605,1140.22284,503.12024108274215,1177162.4069103105,511718.5543108404,1798.80108,749.957399465068,1844659.8009212357,754445.1171276593,0.38019,100000,0,687228,7177.9906205283005,0,0.0,0,0.0,33369,347.9387096437263,0,0.0,33398,345.05593215028046,1619483,0,58179,0,0,0,0,0,72,0.7415840653429565,0,0.0,2,0.0208896919814917,0,0.0,0.06028,0.1585523027959704,0.3060716655607166,0.01845,0.3312282917587622,0.6687717082412378,24.755778897695407,4.321920869481112,0.3253497244595167,0.2395082662144976,0.2238236540907164,0.2113183552352691,11.212325062293868,5.882309549031128,19.63284059914216,12146.55205625332,53.24117124205286,13.452280184348568,17.023424284906437,11.93009265035376,10.835374122444104,0.562950402713014,0.7849557522123893,0.6729641693811075,0.5814393939393939,0.1223671013039117,0.7342767295597484,0.8912529550827423,0.8501291989664083,0.7413127413127413,0.1773399014778325,0.4997098084735926,0.7213578500707214,0.6132404181184669,0.5294855708908407,0.1083123425692695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0043715071049668,0.0065895014722306,0.008578892265783,0.0106519350506653,0.0128748370273794,0.0152255274885528,0.0173864216436957,0.0194781292816097,0.0216667861275227,0.0236215628780577,0.0254032796311698,0.0277409338145326,0.0297216300553032,0.0318703313936692,0.0337994976588421,0.0358330140121583,0.0378991500710868,0.0399080803984569,0.0420043754557766,0.0565525593243342,0.0704637951057218,0.0834827654911336,0.0961627417998318,0.1080192259043764,0.1235355073383242,0.1353999851523475,0.1466950505588078,0.1578458284823173,0.1677748702329372,0.181584245830507,0.1937748831573481,0.2048496710705159,0.2158161703616249,0.2259664558702227,0.2355240140829476,0.245210385958648,0.2543379920329485,0.263201498042331,0.2715687509303044,0.2784380895066372,0.2848782086547353,0.2906164123945797,0.2949428098697935,0.3006283346094481,0.3062082917021302,0.3103409404043187,0.3152388346548893,0.3197273622557404,0.3238627357742907,0.3234025925027622,0.3225104648601013,0.3222336571130503,0.3220326731241867,0.3195864018448263,0.3186789620416041,0.3173349373941399,0.319120662784021,0.3196799617864819,0.3209473909324208,0.3216911420821251,0.3235241838326783,0.3242282272232912,0.3253313105171567,0.3259945739598089,0.3264142098135222,0.3265143313009288,0.3298230171953098,0.333602329742816,0.336428939953169,0.3391288516681079,0.3401093360225041,0.3399711037125447,0.3413727720894956,0.3471560661249649,0.3486811116344795,0.3487701184330398,0.3563102893890675,0.3577080491132333,0.3539923954372623,0.0,2.3236496942529192,55.84492437701339,167.14310163747285,265.3510407254729,fqhc4_100Compliance_implementation,7 -100000,95787,44782,424.4626097487133,6136,62.98349462870744,4775,49.328196936953866,1903,19.53292200402977,77.34910350822409,79.67884307132313,63.34642956891118,65.06726060854989,77.1188960347449,79.44850973479139,63.26183434797549,64.9847901463498,0.230207473479183,230.3333365317428,0.0845952209356895,82.47046220009224,153.00956,107.67540626898106,159739.38008289225,112411.29408894846,386.7678,252.85166129027317,403209.2872728032,263403.1145043411,372.08112,180.5595955355671,385398.2168770293,186110.53825796457,3413.63533,1546.249323592919,3529138.515664965,1579619.263149401,1142.82578,502.373773073874,1182112.666645787,513491.65656495554,1865.3891,772.5491805839794,1916068.7984799608,779798.3226637704,0.38035,100000,0,695498,7260.880912858738,0,0.0,0,0.0,33373,347.88645640848966,0,0.0,34061,352.50086128597826,1611242,0,57879,0,0,0,0,0,63,0.6472694624531512,0,0.0,0,0.0,0,0.0,0.06136,0.1613250953069541,0.3101368970013037,0.01903,0.339605038096719,0.660394961903281,24.589925548251813,4.490653379960534,0.3112041884816754,0.2372774869109947,0.2255497382198953,0.2259685863874345,11.36071654240951,5.770447798852969,20.1571311646792,12133.889091372648,54.050488077880495,13.505290969086456,16.81728276240351,12.060338580462927,11.6675757659276,0.5505759162303665,0.7678729037952339,0.6783310901749664,0.5914577530176416,0.1056533827618165,0.7354581673306773,0.9202898550724636,0.8596938775510204,0.6941176470588235,0.1443298969072164,0.4846590909090909,0.6801112656467315,0.613345521023766,0.559610705596107,0.0971751412429378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0044902137666102,0.0065333617392539,0.0086235792424657,0.0108187253426607,0.0129585895191172,0.015257139362808,0.0174618564065928,0.0199858995187444,0.0219046060035603,0.0239724624021636,0.0260643810735651,0.0282921916428586,0.0303014708152783,0.0323535173366601,0.0341981862876737,0.0362678752509261,0.0382090976016921,0.0401280106398453,0.0422454547347814,0.0567364785190286,0.0701271806886165,0.0835421537687283,0.0960843246878809,0.1084743619465109,0.1233555586081553,0.1354671188596258,0.1469371697130158,0.1576661651568018,0.1682859683138196,0.1807371536185095,0.1928466395640515,0.2051505038536378,0.2152557569925864,0.2245728681914694,0.2348895927000509,0.2444402289744133,0.2533727571165175,0.2621435215645348,0.2697638750586592,0.2765873795950462,0.2834134531036176,0.2895073122249041,0.2948751737026211,0.3009421134421134,0.3059886365036913,0.3110265779068021,0.3156501711478998,0.3205772618924241,0.324742199981515,0.3244412109453943,0.3234391133750947,0.3218792248760703,0.3209751729516601,0.3207012231326446,0.3181046481393677,0.3161547338634459,0.3160086568730325,0.3171855010660981,0.3181801962533452,0.3188308164449185,0.3195229996440296,0.3207191350264018,0.3212934142463667,0.3230379746835443,0.3248444281754954,0.3265919102923508,0.3311936758893281,0.3352380952380952,0.3394554020602092,0.3422136775611096,0.3433918003945194,0.3431297709923664,0.3504633529907329,0.3531531531531531,0.3521634615384615,0.3542183622828784,0.3519885198851988,0.3527292878913826,0.3600944510035419,0.0,2.0706253784074384,55.10364225483911,178.4546882266634,265.4982530242553,fqhc4_100Compliance_implementation,8 -100000,95665,44780,424.8262164846077,6015,61.69445460722312,4682,48.3457899963414,1860,19.024721685046774,77.31532774038504,79.70677716215337,63.31028192710126,65.07602007232856,77.08017459959676,79.47619038653659,63.221856017649856,64.99252044199639,0.2351531407882845,230.58677561678564,0.0884259094514021,83.49963033217023,151.80858,106.80559679349436,158687.69142319553,111645.42601107444,386.79504,253.69897550770952,403711.8381853342,264584.6082764956,368.34273,178.58029105450504,381863.96278680814,184115.9454523984,3381.25185,1537.553920321668,3494075.053572362,1566831.0984389978,1101.64103,489.67567001695926,1136752.657711807,497056.4679004432,1829.17652,771.9604638404156,1873221.8052579316,771705.6130420375,0.37985,100000,0,690039,7213.076882872523,0,0.0,0,0.0,33387,348.3823759995818,0,0.0,33666,348.7691423195526,1613601,0,57898,0,0,0,0,0,66,0.6794543458945277,0,0.0,1,0.0104531437829927,0,0.0,0.06015,0.1583519810451494,0.3092269326683292,0.0186,0.3362789963705223,0.6637210036294777,24.61929147280484,4.406418107453724,0.3184536522853481,0.2362238359675352,0.2159333618111918,0.2293891499359248,11.046616285139942,5.5302564712549245,19.84077253550081,12147.095131056416,52.991300823994045,12.953142064659096,17.01081826819972,11.235540169667232,11.791800321468,0.5553182400683468,0.7757685352622061,0.6908115358819584,0.5816023738872403,0.1154562383612663,0.7235576923076923,0.9245810055865922,0.8557692307692307,0.7291666666666666,0.1752136752136752,0.494175888177053,0.7045454545454546,0.6269767441860465,0.5356679636835279,0.0988095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0044607554897706,0.0066776269053563,0.0089407270436673,0.0108133951822916,0.0131194295900178,0.0151362157420723,0.0173537342703056,0.0194101284463715,0.0217402435153041,0.0238962104507461,0.0260914227015921,0.0283727341933625,0.0302221581073283,0.0323912549804909,0.0344406751613437,0.0365339384331644,0.0384435749203416,0.0404010984438711,0.042502188685538,0.0571924105650284,0.0707704228006617,0.0839674626082393,0.0963610725259923,0.1076060916277057,0.1229318174600654,0.1348114169215086,0.1471985513421389,0.1587160768301677,0.1692608256939822,0.1821170637059394,0.1947022449399508,0.2065579481373424,0.2162869087486593,0.2259240495175999,0.2367621287073803,0.2458168576726314,0.254796925466188,0.2637338933984219,0.2709911851350887,0.2775538568450312,0.285220873189636,0.2913972382102844,0.2964096287229702,0.3011459611855777,0.3061911336850929,0.3110162275868977,0.3156890189591551,0.3204173840995301,0.325310907506667,0.3242456896551724,0.3234747407988764,0.3221804458338614,0.3203279779034287,0.3189905025192848,0.3174933766213877,0.3153739042374758,0.3155558467510769,0.3162903335834641,0.3161224780779924,0.3172791301586115,0.3181692641546656,0.3195543828789211,0.3203495128273889,0.321464634322258,0.3221270279419806,0.323195979325509,0.3265319014529375,0.3303943006277773,0.3328545780969479,0.3349791980981118,0.3361563864919569,0.3388649607296681,0.3392266892151587,0.3397569774064932,0.3439923636797518,0.3480310171810856,0.3506986027944112,0.3544303797468354,0.3553530751708428,0.0,2.370134219035065,54.52850936447861,173.98370557199996,257.7877728208044,fqhc4_100Compliance_implementation,9 -100000,95632,45038,426.0289442864313,6114,62.66730801405387,4796,49.62773966873013,1911,19.60640789693826,77.3146043072854,79.73384619000556,63.296484254502126,65.08317713884912,77.07382979426448,79.49519084920266,63.20602009440187,64.99639997431498,0.2407745130209235,238.6553408029073,0.0904641601002538,86.77716453414064,151.70584,106.76578672617276,158635.01756734148,111642.32341284586,387.18043,253.72349247387655,404350.3638949306,264797.7690248835,376.35768,183.3757704555924,390510.1325916011,189380.37109442067,3430.37621,1576.8078967199835,3551074.661201272,1612844.4524008536,1122.81836,495.2673403277438,1163386.9834365067,507172.51581870415,1866.16014,792.5799558224088,1917020.7880207463,798486.3149567423,0.38222,100000,0,689572,7210.68261669734,0,0.0,0,0.0,33339,348.0947799899615,0,0.0,34458,357.3280910155596,1612424,0,57820,0,0,0,0,0,71,0.7424293123640622,0,0.0,0,0.0,0,0.0,0.06114,0.1599602323269321,0.3125613346418057,0.01911,0.3320883909119203,0.6679116090880797,24.326181054971983,4.344887185514162,0.329441201000834,0.2310258548790658,0.2253961634695579,0.2141367806505421,11.306990548328988,6.017228382095558,20.515436820650013,12299.388250459357,54.502380578740215,13.218176012323916,17.85212083481866,12.068721263928726,11.363362467668898,0.5623436196830692,0.7924187725631769,0.6879746835443038,0.57631822386679,0.1061343719571567,0.7084927314460597,0.9032258064516128,0.8609756097560975,0.704119850187266,0.092511013215859,0.5075952995127544,0.7290780141843972,0.6273504273504273,0.5343980343980343,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0045735262800296,0.0069334470296828,0.0092872021541431,0.0116373697916666,0.0138317376247708,0.0159933089217776,0.0184390642557973,0.0207628028761084,0.0229595494111623,0.0250976933096749,0.0271500184903644,0.029176354396,0.0312825215608288,0.033537718320327,0.0356522458433286,0.0377577453113667,0.0396615272802782,0.0419636446876918,0.0440355872628471,0.0588800970011184,0.0727440340254352,0.0868775334467477,0.0989515348014653,0.1118324518900887,0.1274567943070145,0.1387566924449732,0.1502504529468187,0.1612696171250682,0.1717444083965365,0.1850733065064244,0.1970237256538374,0.208906273834688,0.2189964943032427,0.22880888869293,0.2394016069605362,0.2490947293128883,0.2575694405318609,0.266002295376294,0.2737794805909883,0.2809347894060289,0.2875146267259537,0.2934072179596476,0.298339029801523,0.3032551925179157,0.3092365518516236,0.3135925124188241,0.3185939745399514,0.3225151079881465,0.3264016256086136,0.3248959918139835,0.3230593607305936,0.3215765296057267,0.3208013886879792,0.320399476096922,0.3196054972697711,0.3178394151323406,0.3180755810125749,0.3191398144496081,0.3202483405199406,0.3217977528089887,0.3233833786499586,0.3242690485631404,0.3253122212310437,0.3256453812474579,0.3271752085816448,0.3286001757220191,0.3319292333614153,0.3351104606592794,0.3374245234618572,0.338700194473339,0.3417326994189117,0.3421517868417729,0.3435718087128411,0.3451900516189582,0.3513062149588453,0.3553590817434465,0.3536984062116878,0.3563566318106769,0.3666796418840015,0.0,2.0348771661831453,57.58088070416345,178.70086983405952,260.7277065092518,fqhc4_100Compliance_implementation,10 -100000,95653,44732,424.0954282667559,6069,62.319007244937424,4718,48.82230562554232,1792,18.399841092281477,77.29129418892526,79.6910696257347,63.29829466637945,65.06981853118505,77.0664512013534,79.46747758479827,63.215111934555416,64.98949907146087,0.2248429875718613,223.59204093642404,0.0831827318240314,80.31945972417986,151.39014,106.46242066898462,158270.14312149124,111300.66037550794,387.34397,254.4575510246465,404464.4182618423,265538.9073261127,372.32,181.27536004644085,385957.1890060949,187002.4840676962,3336.55565,1521.3154758385388,3454504.479734039,1556769.778092207,1119.10013,490.8246305902049,1157486.4457988772,500658.6417469448,1761.7784,736.9963608496279,1811013.3712481572,744172.5684650684,0.37966,100000,0,688137,7194.097414613237,0,0.0,0,0.0,33456,349.24152927770166,0,0.0,34061,352.83786185482944,1613152,0,57924,0,0,0,0,0,71,0.7422663167909004,0,0.0,0,0.0,0,0.0,0.06069,0.1598535531791603,0.2952710495963091,0.01792,0.3198992443324937,0.6801007556675063,24.616249245204692,4.392259881427653,0.3348876642645189,0.2361169987282746,0.2066553624417126,0.2223399745654938,11.381424174202763,5.919428049632306,19.14654131485426,12150.902232966144,53.46045247642444,13.26845579722228,17.71248612654826,11.037633790911888,11.441876761742016,0.5669775328529038,0.77737881508079,0.6974683544303798,0.6051282051282051,0.111534795042898,0.7345971563981043,0.909313725490196,0.8740740740740741,0.7629310344827587,0.1266968325791855,0.5055040556199305,0.7011331444759207,0.6365957446808511,0.5558546433378196,0.107487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360138974707,0.0044611173071073,0.0066380439085289,0.0088507265521796,0.0112525308020226,0.0132708662219279,0.0153455553969451,0.0176139032409581,0.0196098478652053,0.0218602174758872,0.023976536221183,0.0262720046011954,0.0283418719009114,0.0303976423794656,0.032477520724292,0.0343696992263456,0.0364282679213605,0.0385941231440141,0.0407666375327756,0.0427031422673533,0.0571219563172745,0.0706938450580299,0.0836982201921562,0.09696331772012,0.1084760789032074,0.1245567798135035,0.1365407276085733,0.1483122610057199,0.159108402822322,0.1696241666935042,0.1826895086951365,0.1942158603664082,0.2058839535465894,0.2161123639787182,0.2264552247030041,0.2366979395391132,0.2456683237446238,0.254806393516434,0.2631584921508757,0.2706161354627317,0.277248003703275,0.2843590253488834,0.2899280064415289,0.2952695005695785,0.3008511673151751,0.3062685093780849,0.3108223263740945,0.3147581919176476,0.3192667211180688,0.3244017370414857,0.3238197858441646,0.3233499951804574,0.3217831556382918,0.3206313383389031,0.3193268558334697,0.3172688914461066,0.3148902448688485,0.3152674518060399,0.3159885661468942,0.3172820742065266,0.317033812436672,0.3188939727058451,0.3188144167593778,0.3196660773035518,0.320650086422124,0.3217622108303625,0.3232515250390126,0.3267193279418218,0.3304924242424242,0.3339691622953425,0.336521382702555,0.3428813469582252,0.3439828261144084,0.3434506016708822,0.3466540104413858,0.3518652226233453,0.3583203732503888,0.3579710144927536,0.3628244487859335,0.3574173712528824,0.0,1.986773792411856,55.70526667246666,173.59830889804044,261.6229241950465,fqhc4_100Compliance_implementation,11 -100000,95624,44967,427.63323015142646,6070,62.00326277921861,4723,48.72207813937924,1821,18.614573747176443,77.27514686010801,79.68609900478185,63.27600815666828,65.05645141719016,77.04627256141225,79.46327028521853,63.190232975491554,64.97613399387554,0.2288742986957572,222.82871956332428,0.0857751811767286,80.3174233146251,150.9178,106.26696362339108,157823.95632895507,111129.79652115688,386.67185,254.0498645033128,403667.4684179704,264976.923675346,375.22295,183.04375180697724,388994.5934075128,188691.0358681178,3351.54178,1533.163401313825,3458311.2293984774,1556789.5713553352,1112.93426,497.9778175132509,1143947.3458545972,500910.081100591,1793.38248,759.8633978051338,1834764.849828495,757185.51147972,0.38126,100000,0,685990,7173.816196770686,0,0.0,0,0.0,33334,347.8624613067849,0,0.0,34355,355.8207144649879,1611496,0,57802,0,0,0,0,0,62,0.6483727934409772,0,0.0,1,0.0104576257006609,0,0.0,0.0607,0.1592089387819336,0.3,0.01821,0.3333856045162302,0.6666143954837698,24.433224882231,4.374470626462951,0.324370103747618,0.2333262756722422,0.2197755663773025,0.2225280542028371,11.148514455158807,5.739010434848303,19.43742438611494,12101.97541099668,53.55406339212999,13.140093757569767,17.194735674220812,11.556066970181488,11.66316699015792,0.5602371374126615,0.7976406533575318,0.6847258485639687,0.5789980732177264,0.1113225499524262,0.7175815433571997,0.9240196078431372,0.8668407310704961,0.7076271186440678,0.1130434782608695,0.5031736872475476,0.723342939481268,0.6240208877284595,0.5411471321695761,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670447180816,0.0047028774717979,0.0068692608188321,0.0090401218892839,0.0111575585593832,0.0132801042854815,0.0153566912754415,0.0174372900736082,0.0195986218600799,0.0217582732634338,0.0236940088006318,0.025754556101169,0.0279129584855188,0.029974437206234,0.0317637339942172,0.0338281694511974,0.0358112730363398,0.0379486540378863,0.0397415084915084,0.0416831786421941,0.0569206810414206,0.0705738117193394,0.0838980112830533,0.0965485271187154,0.1089760518893337,0.1242612324443408,0.1356713959296455,0.1470804592799496,0.1580383804437404,0.1673527736276965,0.1798600764397227,0.1922388642451981,0.2041425923907118,0.2150925600982628,0.2253418534582657,0.2349281818282807,0.2441574140401146,0.2534303768900925,0.2622461986706728,0.2707541427898804,0.2777571567763188,0.2841294226642117,0.2907511982157262,0.2955156842964884,0.3009014269552206,0.3066622235387046,0.3119004927714318,0.3158873504948477,0.3201230194261689,0.3238755057249385,0.3226820254120693,0.321203185713892,0.3200704970038773,0.318340200968698,0.317155085299887,0.3149696746921522,0.3132257554184464,0.3135288614617013,0.3141104294478528,0.3150140734670609,0.31580820378348,0.3178300694883133,0.3176261251831693,0.3189088959385193,0.3191075459916422,0.3202610979637479,0.3235394407819959,0.3257668519041788,0.3291476674850929,0.3298437623919422,0.3328642121033277,0.3362935389524062,0.3385253108905916,0.344464637286082,0.3479691613388492,0.3513835877862595,0.3501305884160393,0.3537898801056696,0.3551581843191196,0.3668706962509563,0.0,2.479663554836392,54.878159337135806,176.48694254055775,260.2215434852338,fqhc4_100Compliance_implementation,12 -100000,95687,44820,424.8016972002466,6123,62.63128742671418,4759,49.1811844869209,1901,19.54288461337486,77.28391542799022,79.68264333612825,63.28504443165552,65.05998346918527,77.05434792740934,79.45135144874033,63.20049285605811,64.97663954001474,0.2295675005808846,231.2918873879255,0.0845515755974091,83.34392917052469,152.09524,106.96983927225943,158950.78746329175,111791.40246037544,384.79121,252.42399742001527,401590.3205242091,263264.98607423226,373.15306,181.45841239287068,386314.2851171006,186884.51477985107,3415.39107,1559.0601451200223,3533385.4024057607,1594045.885576102,1135.89655,502.95337976236806,1176112.1468956077,514666.3642831064,1853.2612,773.5410619821301,1906802.2406387487,784629.9068040525,0.38025,100000,0,691342,7225.03579378599,0,0.0,0,0.0,33255,346.96458244066594,0,0.0,34163,353.3395341059914,1611310,0,57849,0,0,0,0,0,56,0.5852414643577497,0,0.0,1,0.0104507404349598,0,0.0,0.06123,0.161025641025641,0.3104687244814633,0.01901,0.3344806007509386,0.6655193992490613,24.472684037388305,4.343924981334599,0.3252784198361,0.2303004832948098,0.2290397142256776,0.2153813826434124,11.338477695626626,5.911208367022744,20.308909690490005,12176.04893400019,54.18599360517205,13.0516727802373,17.675686294257215,12.20885829808287,11.24977623259464,0.5662954402185333,0.7801094890510949,0.6976744186046512,0.581651376146789,0.1229268292682926,0.7377431906614786,0.9029850746268656,0.8732057416267942,0.7529880478087649,0.1448598130841121,0.5028785261945884,0.7089337175792507,0.6327433628318584,0.5303933253873659,0.1171393341553637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024928558399708,0.0046758357676079,0.006842848005523,0.0091564110120832,0.0114160129422178,0.0135787629370059,0.0155948799020857,0.0176900763982514,0.0195960112503196,0.0218197463582536,0.0238217370786055,0.0260983929965887,0.0282153918975931,0.0302374474400197,0.0321135483870967,0.0341375637300019,0.0360588131676838,0.0382503451354072,0.0406390746731295,0.0427514330380406,0.0579331668947362,0.0718623057916998,0.0852783141633783,0.0984669128865599,0.1110161263086795,0.1264355649642762,0.1380866425992779,0.1489393423070369,0.1589973812196034,0.1693856523419053,0.1820484355970382,0.1940403591815513,0.2055089820359281,0.2159915902894123,0.2260314731552499,0.2362205598348465,0.2456934616631454,0.2539666441289159,0.2621106578334337,0.2696502919013155,0.2765999374050933,0.2838454054180782,0.2908280058355375,0.296343425127848,0.3016344363446068,0.3069927567527548,0.3116393298833436,0.3162906757651372,0.3213614749744108,0.3251039123837171,0.324222380881818,0.3228425557680928,0.3223295230587308,0.3209598475332438,0.3204407566024268,0.3196106981377883,0.3189083017851769,0.3190117623898814,0.3185182652694918,0.3187911066628539,0.3197386210004506,0.3213052965681412,0.3226526785902378,0.3223798071520082,0.3220297929029914,0.3224750582628505,0.3244469815898387,0.3280204519631359,0.3298914761352861,0.3344154558771131,0.334364058023737,0.3356972744112199,0.3372637095264832,0.3383222330315049,0.3366052412260394,0.3406374501992031,0.3413855970829535,0.3464487489911219,0.3498752425838647,0.3594646271510516,0.0,2.1076840072711707,56.59870328628069,179.16805622442018,259.5800082616985,fqhc4_100Compliance_implementation,13 -100000,95650,45003,426.85833768949294,6074,62.16414009409304,4815,49.69158389963408,1856,18.99634082592786,77.35161970545354,79.75685787223436,63.31721993396855,65.09396523287667,77.12765644871081,79.53575954123687,63.23258153347411,65.0129152636496,0.2239632567427349,221.0983309974921,0.0846384004944411,81.04996922706675,151.41632,106.48117971168136,158302.477783586,111323.76342047186,384.46889,251.99719772118905,401318.7140616832,262822.5615573125,372.53214,180.39702279104213,385300.5541035024,185436.13987492945,3430.77524,1562.8361164573444,3540584.9555671723,1587711.1057046494,1117.87892,492.40238034513095,1149399.194981704,495516.2131488872,1815.24448,764.744153691226,1858573.214845792,765755.1116188604,0.38107,100000,0,688256,7195.567171981181,0,0.0,0,0.0,33089,345.2483010977522,0,0.0,34064,351.98118139048614,1619663,0,57972,0,0,0,0,0,79,0.8154730789336121,0,0.0,0,0.0,0,0.0,0.06074,0.1593932873225391,0.305564702008561,0.01856,0.3254531126871552,0.6745468873128447,24.5412607116172,4.273686229499708,0.3202492211838006,0.2375908618899273,0.2274143302180685,0.2147455867082035,11.37641375021246,6.036758775677123,19.55746852852301,12214.455486144248,54.14407113184385,13.620640208070425,17.140547948083107,12.09958998950175,11.283292986188574,0.5721703011422637,0.7823426573426573,0.6984435797665369,0.6082191780821918,0.1131528046421663,0.725705329153605,0.9176470588235294,0.8563685636856369,0.7034220532319392,0.1598173515981735,0.5168126589432043,0.7023643949930459,0.6487638533674339,0.578125,0.1006134969325153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.004634183440653,0.0067996833580287,0.0089104283508087,0.0109247373078761,0.0129965369729069,0.0150410442053739,0.0175429639235788,0.0196523517382413,0.0219297347126907,0.0238935511008063,0.0261730069671373,0.0281248070471525,0.0299384529737419,0.0319578577699736,0.0341927207266858,0.0364408975488417,0.0388041108688882,0.0407728000998772,0.0426767597777013,0.0571339010501018,0.0710523835949197,0.0841992568801561,0.0967422871332968,0.1089780798497145,0.1243623123981287,0.1367521367521367,0.1487790059370903,0.1590716983554637,0.1683636207415045,0.1809141698483574,0.192638581892255,0.2036103519984321,0.2144866924314915,0.2249440999262008,0.2351219187651774,0.2445629093184917,0.2529840998153236,0.2616422334010878,0.2696999896903673,0.2770108425230563,0.284239448146849,0.2913546952438404,0.297497005988024,0.3027368165544026,0.3086278419931804,0.3135829304550963,0.3187169035010858,0.3234397602810498,0.3277443638708658,0.3269768316938128,0.3264146281195947,0.3255598195082866,0.3234437620736384,0.3231832063332048,0.3220445136947589,0.3208738477080439,0.321722754441988,0.3225482006784746,0.3231342219687789,0.3245958688819039,0.3257042600587458,0.3272495400568657,0.3277896517944608,0.3288624300674221,0.3299930086226986,0.3321627821358783,0.3356573393778334,0.3375667283067583,0.3425615102089175,0.3424831272364905,0.345111834505933,0.3497383503613256,0.3529500642139457,0.3541588959343528,0.35850622406639,0.3559944878272852,0.3572291582762787,0.3585365853658536,0.3654708520179372,0.0,2.467641293041732,55.65329794243843,172.5600413661339,270.7922583226785,fqhc4_100Compliance_implementation,14 -100000,95795,44887,424.74033091497466,6065,62.25794665692364,4778,49.34495537345373,1861,19.103293491309568,77.3507064425629,79.67979350974956,63.34838135415546,65.07024252397063,77.11732613630663,79.44764421331314,63.261891060421256,64.98690167896414,0.2333803062562651,232.14929643641824,0.0864902937342009,83.34084500648942,152.00834,106.92132027354968,158680.64095203296,111614.50961479163,386.95692,253.79772346705352,403392.2960488544,264389.25194893626,373.32347,181.27088300183,386530.0381021974,186793.91252895465,3435.28969,1564.120445680271,3548085.1297040554,1594883.2000911322,1143.81774,509.0108406483513,1178927.1151939034,516254.8469631524,1830.3979,770.1552591058489,1879827.4231431703,775004.1348022352,0.38149,100000,0,690947,7212.75640691059,0,0.0,0,0.0,33290,346.94921446839606,0,0.0,34105,352.8263479304765,1617295,0,58047,0,0,0,0,0,82,0.8559945717417402,0,0.0,1,0.0104389581919724,0,0.0,0.06065,0.1589818868122362,0.3068425391591096,0.01861,0.3245875883739199,0.6754124116260801,24.53523128972787,4.280510681346353,0.3107994976977815,0.2314776056927584,0.2329426538300544,0.2247802427794056,10.84878121817615,5.621062004981474,19.87686649909129,12248.25230861104,54.2626727272144,13.223386422558582,16.820939097079542,12.422815635867073,11.795531571709224,0.554416073670992,0.7703435804701627,0.694949494949495,0.5804132973944295,0.1108007448789571,0.7130365659777425,0.9112271540469974,0.8649350649350649,0.7142857142857143,0.1298701298701298,0.4977272727272727,0.6957123098201936,0.6354545454545455,0.5398126463700235,0.1055753262158956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002552570803452,0.0049574209245742,0.0073061584827544,0.009405980822363,0.011611355132585,0.0135298848585419,0.0158982511923688,0.0181649335143023,0.0202847011455491,0.0224416700777732,0.024376498555239,0.0264626813601756,0.0285491131071054,0.0306864036893683,0.0328837468291777,0.0348974152358519,0.0370642467638628,0.038854678526259,0.0408548996801395,0.0429541101024402,0.0575462248007012,0.0715181932245922,0.0847965783652888,0.0975461089800851,0.1099635351895959,0.125499439781832,0.1379036106250994,0.149614762472331,0.160038859412198,0.1701926992905065,0.1836919202247312,0.1962822868258943,0.2072468491960017,0.2179057191238324,0.2275345748774213,0.2378292275527925,0.2466709011689455,0.2560072795084085,0.264233907524932,0.2710755148741419,0.2784630309749844,0.2860229117279553,0.2927230157979377,0.2986087831042575,0.3040697956608261,0.3089557016571865,0.3129491457638134,0.3179367864317136,0.3226507895418068,0.3265246955880027,0.3258452645022518,0.3243703948091939,0.3242440452728194,0.3236849710982659,0.3231939163498099,0.320423290146712,0.3177462022208493,0.3167727399805943,0.3172192001094803,0.3190405547909703,0.3205147473229382,0.3214972160025363,0.3218340060544904,0.3234791601097073,0.325182666570209,0.3276633606364326,0.3283030754252334,0.3317728926142654,0.3346621979185041,0.3378233400882107,0.3394818747711461,0.3421546043820646,0.3441146626078133,0.3476087959403352,0.3494760691022373,0.348634791939907,0.3514015796809664,0.3504043126684636,0.3527262507026419,0.3489644392340758,0.0,2.064750167821501,55.23272791594578,184.64885229713235,259.2525871150651,fqhc4_100Compliance_implementation,15 -100000,95738,44802,422.9877373665629,6199,63.57976978838079,4790,49.4787858530573,1903,19.501138523888116,77.31652017658898,79.67705315676531,63.31665033110207,65.06228661912581,77.0783562081365,79.4407652868315,63.228534679884696,64.97772946375999,0.2381639684524827,236.287869933804,0.0881156512173717,84.55715536582886,151.94234,106.97706783946174,158706.177275481,111739.17132117004,386.66393,252.5853530301524,403322.9543128121,263275.5572814895,374.87043,181.8172539175856,388398.97428398335,187509.4940942592,3433.64492,1563.7865234328356,3547672.1573460903,1594572.6602110292,1163.59978,517.605185752341,1198348.565877708,523606.2497152035,1864.30436,783.9537597292383,1911447.471223548,786666.6770571488,0.38106,100000,0,690647,7213.9171488855,0,0.0,0,0.0,33339,347.6467024587938,0,0.0,34287,354.9269882387349,1614340,0,57949,0,0,0,0,0,65,0.6789362635526124,0,0.0,0,0.0,0,0.0,0.06199,0.1626777935233296,0.3069849975802549,0.01903,0.3296906264429737,0.6703093735570264,24.964978261808334,4.403402331718115,0.3223382045929018,0.2279749478079332,0.2283924843423799,0.2212943632567849,11.255943329015183,5.75017643494878,20.276155343853183,12257.280114872692,54.22867047374287,13.082896666194522,17.39424423483094,12.181677716785078,11.569851855932344,0.5597077244258872,0.7728937728937729,0.7040155440414507,0.5722120658135283,0.1169811320754717,0.7406542056074766,0.916279069767442,0.8645833333333334,0.8060344827586207,0.1596638655462184,0.4934398174557901,0.6797583081570997,0.6508620689655172,0.5092807424593968,0.1046228710462287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024513528023419,0.004795166310155,0.007338239025628,0.0099881118099515,0.0124409993489583,0.0146049334935734,0.0168276340346547,0.019045576626533,0.0213188004212635,0.0236089070898387,0.0258489869575916,0.028093521855651,0.0300780486801649,0.0320348460041395,0.034245515590993,0.0361932510900336,0.0380514667826015,0.0400390017218845,0.0420980416614693,0.0440680085010626,0.059114637711422,0.0734787840736671,0.086716234780876,0.0993974953471499,0.1115164807355701,0.1267490930628563,0.1389472344217427,0.1500484336246447,0.1608795059723498,0.1700981706989968,0.1834595537936161,0.196145063365115,0.2077782248855343,0.2181776431609679,0.2276335054326886,0.2375811850242724,0.247180346175321,0.2559413962281136,0.2640080824592472,0.2718274198907053,0.2781120548008609,0.2849155476535816,0.2903034894181147,0.2955780232432627,0.3005688309794103,0.3060894668015495,0.3108781685201883,0.3159857926697305,0.319978763903816,0.3242155011947352,0.3237139779154322,0.3226322025958279,0.3219968093967501,0.3219038241554567,0.3211239935108425,0.3191975583196577,0.3177322724823279,0.3179865352010666,0.3191270684161841,0.3195591792850103,0.3208015338922516,0.3216011725558548,0.321503614052782,0.3228982127239701,0.3243002145767534,0.3255880665519219,0.3272556069166238,0.3292499057670561,0.3323748071258241,0.3358318461233393,0.3399599672459285,0.3434225224745997,0.3456479325319403,0.3491702659695385,0.3511938334273359,0.3530536632006693,0.356162270553756,0.3611337683523654,0.3608247422680412,0.3563129357087529,0.0,2.0659239893738546,56.463605497684064,172.44523870045876,270.4703120376349,fqhc4_100Compliance_implementation,16 -100000,95686,44734,424.3776519030997,6115,62.75735217273164,4767,49.317559517588776,1867,19.187759964885142,77.40264542862671,79.78397517350113,63.35728834693722,65.11251883499416,77.17503313328828,79.55635735877021,63.273607273108176,65.03061869783077,0.2276122953384316,227.6178147309196,0.083681073829041,81.9001371633874,151.28454,106.38967510631416,158105.19825261793,111186.24992821748,384.02058,251.31292206917692,400847.1876763581,262156.4095783887,368.56936,178.85811123944137,382149.9801433857,184441.06313312447,3439.02993,1537.9301511638178,3562823.2970340485,1576012.500432476,1133.60023,489.43759605235255,1174905.921451414,501701.2374353122,1833.51938,757.9737720014997,1886913.2997512696,767890.5129648347,0.37908,100000,0,687657,7186.599920573543,0,0.0,0,0.0,33085,345.2438183224296,0,0.0,33535,347.5325543966724,1624097,0,58151,0,0,0,0,0,87,0.8883222205965344,0,0.0,1,0.0104508496540768,0,0.0,0.06115,0.1613115964967816,0.3053147996729354,0.01867,0.3307919713707795,0.6692080286292205,24.71671622290095,4.456146821131534,0.3224250052443885,0.2286553387874974,0.2204740927207887,0.2284455632473253,11.253116723309669,5.723321666510773,19.6122421989005,12166.545492131474,53.30679436801724,12.82784022404212,17.200730386593683,11.596188303653738,11.682035453727703,0.5426893224250052,0.7587155963302752,0.6727391021470397,0.5832540437678402,0.1037649219467401,0.72982158028887,0.8891891891891892,0.8624338624338624,0.7619047619047619,0.1414141414141414,0.4813370473537604,0.6916666666666667,0.6108714408973253,0.5329268292682927,0.095398428731762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025316199329627,0.0048040378241965,0.0069588151754919,0.0089881478321806,0.0112974242686163,0.0135429607152312,0.0160265886406965,0.0179830783519253,0.0198150324459659,0.022053706660117,0.0243854937575596,0.0262298784494086,0.0284903507058327,0.03049464979042,0.0327067126142671,0.0346438463764521,0.0366328432387657,0.0387149661205134,0.0404030949706726,0.042281116796765,0.0565334113296633,0.0697727986598261,0.0831164742917103,0.0961597122150813,0.1081662571057932,0.1237238825707484,0.135840327663593,0.1472122283013646,0.1583941527841595,0.1685487243831033,0.1812689797764424,0.1937536523602363,0.2053047109487146,0.2156852025978002,0.225633635483587,0.2366142604074402,0.2457775449001661,0.2541736883496236,0.2626195115320132,0.2698552448032198,0.277167136193599,0.2845258097638383,0.2912042502951594,0.2964083673200894,0.3013891245848384,0.3065436654366543,0.3111491466979835,0.3154120499054436,0.3201322262825562,0.324344588995146,0.3231456873640976,0.3224055698700729,0.3212537003521472,0.3211392058946278,0.3198359587824233,0.3184538348803126,0.3172850621554597,0.3181833082016652,0.3192637744330178,0.3196689213243147,0.3205420560747664,0.3221641380394623,0.3228841430415053,0.3233239912807509,0.325050916496945,0.3271489450161106,0.3294940704718027,0.3326545955767182,0.336231985693748,0.338985736925515,0.3416211293260474,0.3422300356933567,0.3459285849234838,0.3467619337184555,0.3482680722891566,0.3491784037558685,0.350810149801284,0.3596473652574634,0.3654367878459034,0.3676525645825533,0.0,1.9304044686078108,51.51483288467968,182.70962083273875,265.5545374289118,fqhc4_100Compliance_implementation,17 -100000,95725,45041,426.4612170279447,6173,63.201880386523904,4838,49.92426220945417,1950,19.85897101070776,77.33907921770925,79.70335728756795,63.32552877917672,65.0743191476443,77.09400517884654,79.4648608437937,63.23336440201261,64.98765651936468,0.245074038862711,238.4964437742525,0.09216437716411,86.66262827962612,151.48078,106.6011257734646,158245.5575868373,111361.61480643996,386.07202,252.8211911460926,402697.8845651606,263496.1829679734,378.05315,183.736374344862,391812.48367720033,189420.46369163156,3490.67695,1596.091940445944,3604962.475842257,1625850.8936184216,1148.69941,508.8422838305541,1185883.342909376,517518.64172507887,1914.38656,805.2601958161849,1953996.3854792372,803228.8587931952,0.3812,100000,0,688549,7192.979890310787,0,0.0,0,0.0,33284,347.04622616871245,0,0.0,34521,357.4196918255419,1616757,0,57988,0,0,0,0,0,68,0.7103682423609298,0,0.0,0,0.0,0,0.0,0.06173,0.1619359916054564,0.3158917868135428,0.0195,0.3374498301945045,0.6625501698054955,24.319809031024565,4.389773836811717,0.3288548987184787,0.2255064076064489,0.2178586192641587,0.2277800744109136,11.29827886810342,5.866010435480511,20.706838027186688,12263.85926187031,54.97626899147936,12.988541266665903,18.137030124161544,11.822796201922854,12.027901398729046,0.5584952459694088,0.768102658111824,0.7064739157762414,0.5920303605313093,0.1052631578947368,0.7281853281853282,0.9047619047619048,0.8710407239819005,0.735632183908046,0.1121495327102803,0.4964719164549817,0.6956521739130435,0.6431679721496953,0.544766708701135,0.1036036036036036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025725166099497,0.004907328547674,0.007226738934056,0.0093480734839863,0.0116476608038411,0.0138202853680147,0.0160913679702238,0.0181829319339656,0.0204298656414241,0.0225424527335668,0.0247469412452439,0.0266631061080698,0.0290333528740242,0.0312071789905317,0.0334544478622597,0.0354801348472627,0.0373666217756138,0.0394051350173312,0.0413161260802196,0.0431634439073178,0.0573143990811318,0.0710354497133051,0.0844045547004424,0.0975435349541515,0.1100635894840077,0.1252856054836252,0.1372249453604091,0.1489246166950596,0.1598824472348383,0.1699983904715918,0.1827675396055609,0.194936270209978,0.2067723578120409,0.2170725034199726,0.2269343435455807,0.2376316664818716,0.2476154310094489,0.2564651047589025,0.2647750110706134,0.2717277907070058,0.2789496839326649,0.285948305114494,0.2923730317405861,0.2985147921906815,0.3041478569001505,0.3100083669652524,0.3143506834253729,0.3195935217529374,0.323329455861445,0.3274589407639786,0.3263111194762244,0.3252715523167881,0.3239418753787825,0.3230010414255959,0.3221313912009512,0.3203945957538066,0.3187180339809669,0.3189363310653124,0.3200390270621865,0.3209772686593878,0.3227604587000994,0.323119832258575,0.3244341143706681,0.3242952779705796,0.3245866974240676,0.3270351863418697,0.3274952220669196,0.3301233635448137,0.3337665074459118,0.3371931081134853,0.3400539477895122,0.3436798803290949,0.3454222673091555,0.3478260869565217,0.3493568678997277,0.3539392501186521,0.3606861381548447,0.3653023824068417,0.361249309010503,0.3627338678885071,0.0,2.358947044548231,56.64443638020396,183.27617461320543,263.6827901189315,fqhc4_100Compliance_implementation,18 -100000,95678,44972,426.5452873178787,6093,62.49085474194695,4763,49.11264867576664,1882,19.304333284558624,77.30793472821749,79.6823896538888,63.31631099018998,65.0695160393307,77.07535654130956,79.45220732326017,63.23096399089949,64.98763519679524,0.2325781869079293,230.18233062863655,0.0853469992904933,81.88084253545469,151.23548,106.41419715315202,158067.14187169465,111221.17639703174,385.64529,253.03096023872092,402400.3219130835,263795.49137599126,373.98421,182.12567998846777,385889.0549551621,186601.531704106,3409.53117,1546.8786328872854,3517892.253182549,1571099.3257460285,1134.40085,500.47286001222943,1172024.1748364305,509476.7530763504,1845.33748,767.519580201904,1894585.359225736,773162.1973649864,0.38158,100000,0,687434,7184.870085077029,0,0.0,0,0.0,33251,346.84044398921384,0,0.0,34202,352.56798846129726,1617092,0,58055,0,0,0,0,0,71,0.7316206442442359,0,0.0,0,0.0,0,0.0,0.06093,0.1596781801981236,0.3088790415230592,0.01882,0.3328102934253883,0.6671897065746116,24.500136545473843,4.36568269973688,0.3323535586815032,0.2378752886836027,0.2049128700398908,0.2248582825950031,11.358137399129006,5.787114773353034,20.12257987616957,12198.921310997324,54.074566353742064,13.681588254675273,17.845131592451004,10.85016069824716,11.697685808368634,0.5656099097207642,0.8067078552515445,0.6961465571699305,0.5409836065573771,0.1400560224089636,0.7515822784810127,0.9497716894977168,0.8465227817745803,0.7115384615384616,0.1641791044776119,0.498428122320663,0.7165467625899281,0.6423670668953688,0.4947916666666667,0.1344827586206896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025413603871777,0.0047930768918973,0.0068878767283092,0.0091512960104005,0.0113701082092588,0.0135941509510814,0.0156927124226325,0.0180091883614088,0.0202825655809769,0.0224380956280517,0.0242547258785418,0.0262320328542094,0.0281682898485144,0.0303183269805295,0.0325779621488865,0.0345501349130043,0.0365135941644562,0.0383932557439342,0.0404148635153129,0.0425871289915659,0.0575165310407504,0.0713986643498649,0.0848476582172234,0.0976356254864427,0.1096550415383966,0.1247726407512372,0.136872367737076,0.1482644469754223,0.1594376308704756,0.1695217050854366,0.1826170297541486,0.194119937694704,0.2060662064467032,0.2158123162025953,0.2250978925601654,0.2348439541940771,0.2444414694824681,0.2543251816688789,0.262431221283113,0.2705868880618379,0.277199074074074,0.2845515144427552,0.2907180385288966,0.2960546828156853,0.3011916342412451,0.3066332761747326,0.3117159792974673,0.3169177436211159,0.3215870462153255,0.3255380466395219,0.3248145650708024,0.3236814891416752,0.3224731789949181,0.3211207208773378,0.3206304749418985,0.3191081238682748,0.3176205440751674,0.3183929630361731,0.3200843635864812,0.3215417390214647,0.3234056146416626,0.3242611057149087,0.3247911681987995,0.3258203142486235,0.3268892370736411,0.3277559570568211,0.3292620137299771,0.3328178748382617,0.3370925546206604,0.3410167602213464,0.3430232558139535,0.3443077086995897,0.3462779077857188,0.3500611995104039,0.3523360075507314,0.3549727035366722,0.3592805320435308,0.3603513675384308,0.3726808281796182,0.3738282714660667,0.0,2.541609542685608,55.08997986324529,179.83146501877573,261.708013594597,fqhc4_100Compliance_implementation,19 -100000,95706,45050,427.1728000334357,6179,63.454746828829954,4866,50.25808204292312,1943,19.91515683447224,77.38171245272493,79.7553895631299,63.34258245905804,65.09494022666499,77.14608367854709,79.5221827836861,63.25471117762942,65.01100218223492,0.2356287741778402,233.2067794437904,0.0878712814286259,83.93804443007014,151.27948,106.44812967131097,158066.8714605145,111224.09218994727,385.89724,252.33200082155145,402602.5223079013,263044.73358278844,375.43108,181.79981947378064,389093.4215200719,187483.4986852884,3511.2338,1589.588639668878,3627393.298225817,1619530.509757882,1151.25961,510.0837463075837,1186127.108018306,516183.8822096674,1908.552,793.4687731633261,1957487.743715128,796371.9548246798,0.3828,100000,0,687634,7184.857793659749,0,0.0,0,0.0,33218,346.4464087935971,0,0.0,34322,355.42181263452653,1619950,0,58100,0,0,0,0,0,86,0.8881365849581008,0,0.0,0,0.0,0,0.0,0.06179,0.1614158829676071,0.3144521767276258,0.01943,0.3279495462236579,0.6720504537763421,24.602415320210827,4.421124857229919,0.3127825729551993,0.2330456226880394,0.2256473489519112,0.2285244554048499,11.108134059901714,5.644830893948626,20.45290236852232,12321.203986379838,54.83792760284573,13.402289884650555,17.233986533597488,12.12507349059409,12.076577694003603,0.5503493629264283,0.7601410934744268,0.6931668856767411,0.5737704918032787,0.1178057553956834,0.7340339531123686,0.9077306733167082,0.8616187989556136,0.7448559670781894,0.1571428571428571,0.487737668779278,0.679399727148704,0.636523266022827,0.5251461988304094,0.1086474501108647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585480473181,0.0045717645389208,0.0068190120550391,0.0090506470552384,0.0111072685477144,0.0131568228105906,0.0155085393831251,0.0177120339744375,0.0200566328981936,0.022274541918313,0.0243994956070656,0.0266427104722792,0.0286401826390102,0.0307790562325528,0.0330024148108398,0.034822527114631,0.036798823431933,0.0388618510485954,0.0408840353614144,0.0426245909498301,0.0576925085379481,0.071568411905734,0.0847927137655687,0.0973562117976287,0.1094175228370709,0.1256966402639566,0.1378761512669241,0.1485685082461165,0.1591384983547711,0.1699993563474865,0.183316091210828,0.1952951620062139,0.2073630975039425,0.2182321045957409,0.2282631411067237,0.2390262263503415,0.2487481738393424,0.2576226198643618,0.2660790852787041,0.2744094443108561,0.2815092505814155,0.2880642559012311,0.2949746721583108,0.3004697648778851,0.3063785333381922,0.311539646355739,0.3166293568114456,0.3205775714013103,0.3250236218434098,0.3286533517895986,0.3284619521376714,0.3272667335137288,0.3257318908881167,0.3250886448153593,0.3247041748737467,0.3240859427455289,0.322344842829852,0.3239127945962743,0.3246322591616359,0.3252431500151135,0.3244752371703892,0.3248659940091439,0.3248103692589814,0.3255927863742625,0.3259479268964526,0.3283585956730146,0.3293180658692818,0.3320207512969561,0.3362510897994769,0.3413988059937532,0.3430633738877792,0.3468079470198675,0.3501483679525222,0.3539355924424386,0.3540665347281123,0.3584860747441085,0.3593199571144126,0.3617021276595745,0.3764510779436152,0.3831848120883379,0.0,2.269175038895114,53.975605391873934,186.5753398976396,269.3952940519635,fqhc4_100Compliance_implementation,20 -100000,95869,45043,426.18573261429657,6088,62.35592318684872,4787,49.46333016929351,1946,20.00646715830978,77.44506122741345,79.7212243772414,63.40474875222951,65.08353539315502,77.21178343097343,79.48754077963717,63.31980184431412,65.00014853485312,0.2332777964400207,233.68359760422663,0.0849469079153877,83.38685830189263,151.26826,106.3989393150554,157786.41688136937,110983.67492625918,384.78537,251.6212435711929,400917.8253658639,262015.65007582525,370.72329,179.93049105486784,383345.99296957307,185108.09582913108,3450.82584,1560.4329265281776,3569664.3127601207,1597814.2741951782,1167.35248,512.1914783340653,1205533.071170034,522141.1492078416,1912.55202,788.2650837969045,1968135.2053322764,799773.6625678457,0.38262,100000,0,687583,7172.109858244062,0,0.0,0,0.0,33210,345.9303841700654,0,0.0,33941,350.7807529023981,1623923,0,58387,0,0,0,0,0,54,0.542406825981287,0,0.0,2,0.0208618009992802,0,0.0,0.06088,0.1591134807380691,0.3196452036793692,0.01946,0.3365218754900423,0.6634781245099577,24.529979278043385,4.436980222886112,0.3187800292458742,0.2260288280760392,0.2201796532274911,0.2350114894505953,11.240987730645736,5.861441883223484,20.548578774067284,12239.990191655386,54.01467098570391,12.898494311686944,17.064079959232252,11.727032883903911,12.325063830880795,0.5579695007311468,0.7634011090573013,0.6965923984272608,0.6195445920303605,0.1146666666666666,0.7335473515248796,0.9396325459317584,0.8611825192802056,0.7701612903225806,0.131578947368421,0.4961875176503812,0.6676176890156919,0.6402814423922604,0.5732009925558312,0.1103678929765886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0048420263576413,0.0071585735578921,0.0092464780155089,0.0112280773060743,0.0132565545166902,0.0155015073739102,0.0175900149897519,0.0201166150986939,0.0221983640081799,0.0243088265410608,0.0263268550330752,0.028603707697838,0.030632502545851,0.0327014218009478,0.0346094693489951,0.0366815930173635,0.0385783120045593,0.0404775499610692,0.0426694134906514,0.0575128507230812,0.0715270668365961,0.0847816072699861,0.0980420959855623,0.110103517926275,0.1254063067246401,0.1369868815314409,0.148848920099013,0.1605339759241686,0.1709916639022354,0.1833372735283371,0.1959962856587557,0.207061990513096,0.2176727431503111,0.2270076760045243,0.2368837317345663,0.2468211248927373,0.2554293482535081,0.2643801924537283,0.2722437026699307,0.2793526011560693,0.2861852873778235,0.292403955336866,0.2981200713200186,0.3031630288397374,0.307888322623532,0.3125977845922774,0.3176289473014581,0.3222994936348213,0.3268256648374841,0.3275435244732664,0.3263587404517228,0.3249216675331244,0.3236382485493369,0.3223600461825394,0.3214699426899158,0.3188508572869389,0.319000163371998,0.3189523128765444,0.3200255849901391,0.3196197803839546,0.3205679353184776,0.3219304115088658,0.3224828324266476,0.3244026935704187,0.3252070514318353,0.326615074978031,0.3293786195022695,0.3325088831603149,0.3344533164677049,0.3356102003642987,0.3380131886832588,0.3414833952990107,0.3441478754410185,0.3478054791923405,0.3516654684878983,0.3555864626796476,0.3596600331674958,0.3563058035714285,0.3547880690737833,0.0,1.8584750370473613,54.88828386707399,177.37123050148247,268.4902364382136,fqhc4_100Compliance_implementation,21 -100000,95688,45082,427.1172978847922,6087,62.3589164785553,4784,49.45238692417022,1874,19.239612072569184,77.29747507811412,79.69946148822385,63.28577397120039,65.06526949729496,77.06057701704587,79.4640385512429,63.19778099638536,64.98031392328284,0.2368980610682456,235.42293698095307,0.0879929748150374,84.9555740121275,151.07708,106.26749148778784,157885.0848591255,111056.23640141696,387.51935,254.41754788886803,404421.62026586407,265322.6778586347,375.06425,181.92517793528444,388396.8209179835,187434.8714246489,3446.38151,1567.6057267292483,3560844.2855948503,1597927.8851521602,1156.54194,513.2051232909118,1188867.924922665,516793.50947735726,1841.59662,774.6041215921413,1890550.581055096,779417.348010423,0.38244,100000,0,686714,7176.594766323886,0,0.0,0,0.0,33304,347.4730373714572,0,0.0,34269,354.55856533734635,1614339,0,57948,0,0,0,0,0,63,0.6583897667419112,0,0.0,2,0.0209012624362511,0,0.0,0.06087,0.159162221524945,0.3078692295055035,0.01874,0.3391822027259909,0.6608177972740091,24.53956000698536,4.432165799023441,0.3072742474916388,0.2372491638795986,0.2259615384615384,0.2295150501672241,11.262940280294172,5.777573650885399,19.981642191129325,12314.770833367153,54.16204023407519,13.67983239604681,16.600621476317663,11.896664707946805,11.984921653763914,0.5566471571906354,0.7973568281938326,0.689795918367347,0.5670675300647549,0.1193078324225865,0.7201550387596899,0.9134615384615384,0.8411458333333334,0.7654320987654321,0.1619433198380566,0.4962793360045793,0.7301808066759388,0.6362799263351749,0.5095465393794749,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0041080883695453,0.0063861109701,0.0087084645869322,0.0112711588541666,0.0132718124223349,0.0154012484190771,0.0173607565204959,0.0197490207308467,0.0221093485985806,0.0242889233073143,0.0265558546156849,0.0285590831464373,0.0308722757483641,0.0328842083526921,0.0350231177401503,0.0370942332407445,0.0391967521207779,0.0413229159080742,0.0433749504971132,0.0578397576517288,0.0713238835032767,0.0846651905176665,0.0973500668006185,0.1101417781340984,0.1253901249457792,0.137586243498567,0.1494068031267971,0.1602189859070593,0.1706981887675674,0.1836270301749239,0.1959940604576049,0.2080728429215588,0.2181515403830141,0.2282022732033205,0.2388306429245021,0.2485834031852472,0.2575078288688129,0.2664636640458119,0.2743216754358815,0.2818807498899265,0.2889610009254812,0.295212482377054,0.3009963985594238,0.3061038234077247,0.3116043104193154,0.3164959953874885,0.3210041819665443,0.3248695381260222,0.328907169591726,0.3282719898503192,0.3271138957508177,0.3254995619117605,0.3239718285366489,0.3235836705546298,0.3212112853048902,0.3194018040829245,0.3200321327278391,0.3201076679330142,0.3209905114556816,0.32243618450515,0.3236208389076886,0.3252244727500522,0.3255902004454343,0.3268862045824945,0.3288140875798659,0.3298561764538684,0.3337410613473843,0.337059751182758,0.3415900443880786,0.3451806680622554,0.3505646572292031,0.3508882053857259,0.3517507958162801,0.355077905012202,0.3582407188460629,0.3563976679963179,0.3618874038072094,0.359757775942747,0.3629715165511932,0.0,2.020248759625675,56.82645801736852,176.52489369008356,262.36555785021886,fqhc4_100Compliance_implementation,22 -100000,95824,44665,421.888044748706,6197,63.49140090165303,4786,49.30915010853231,1874,19.170562698280182,77.32864418348662,79.6393210208129,63.32870225298407,65.03839194292038,77.09349723711766,79.40569746399719,63.24063134066257,64.95333475096996,0.2351469463689568,233.623556815715,0.0880709123214984,85.05719195042616,150.6978,106.03233699169654,157265.1945232927,110653.21526099573,384.69752,252.20813535527603,400850.2358490566,262586.9775372308,370.55605,179.89915191527166,382328.1536984472,184375.34352384132,3420.68947,1565.4569794569338,3529017.7930372357,1592934.4626157684,1165.19054,521.8465037476865,1199527.1226415094,528146.2198903057,1841.3404,781.8161434801877,1886616.421773251,786506.9890403083,0.37998,100000,0,684990,7148.417932876941,0,0.0,0,0.0,33271,346.57288361997,0,0.0,33949,349.89146769076643,1618715,0,58219,0,0,0,0,0,67,0.6991985306395058,0,0.0,1,0.0104357989647687,0,0.0,0.06197,0.1630875309226801,0.3024043892205906,0.01874,0.3397416179637035,0.6602583820362965,24.379385965988423,4.375291966028399,0.3269954032595069,0.2340158796489762,0.2139573756790639,0.2250313414124529,11.060075363425346,5.60098730891202,20.106849418950247,12233.373472085485,54.46003383822482,13.5154134667465,17.791948599816457,11.299375097162768,11.85329667449909,0.5704137066443794,0.7928571428571428,0.7073482428115015,0.5908203125,0.1207056638811513,0.703206562266965,0.9095127610208816,0.8427518427518428,0.7172995780590717,0.1428571428571428,0.518722786647315,0.7198838896952104,0.6597582037996546,0.5527318932655655,0.1134401972872996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024510052159821,0.0045716255119004,0.0067468168213869,0.0092129855355111,0.0114500711816148,0.0137039299531663,0.0159922535929059,0.0182473185218447,0.0204488319332883,0.0226861089792785,0.0250929844155045,0.0272774852990979,0.0292273857727169,0.0313262438361523,0.0333903933012972,0.0352579002283034,0.0374812438557458,0.0393579960185799,0.0414758031846935,0.0434655897414546,0.0582737940026075,0.0715547795539849,0.0847500262027041,0.0970304520522035,0.1094914361001317,0.1247040419414848,0.1364769004018704,0.1481087407565037,0.1590525618846244,0.1690109136130706,0.1814334632696573,0.1936234204604466,0.2044105173876166,0.2149954635388769,0.2255413255875363,0.2362305033676001,0.2473814681644594,0.2564212280563469,0.2649199913688347,0.2728106899122555,0.2792838756058532,0.286237025743271,0.2930399886018237,0.2985401021327726,0.3043510019234983,0.3094121132811535,0.3133873476145086,0.3187012192011427,0.3229974160206718,0.3266073011630522,0.3260526422298072,0.324923789949929,0.3240417626199121,0.3225914054908558,0.3219680042899276,0.3197132726519209,0.3175595285308628,0.318296110042893,0.3195855169941446,0.3204913356628396,0.3210854542390022,0.3219006223451546,0.3230827162043429,0.3237408465797464,0.3255657521741219,0.3258793445360609,0.3251088534107402,0.3270015698587127,0.3302909497831864,0.3335571530136662,0.3363000635727908,0.3372413793103448,0.3389221556886228,0.3397249809014515,0.3408084424762084,0.3414983869040506,0.3465935070873343,0.3495047503537497,0.3522975929978118,0.3509521958802953,0.0,2.5319240033420845,58.69578410889738,171.93464186397597,262.3048263778947,fqhc4_100Compliance_implementation,23 -100000,95751,44876,424.8101847500287,6177,63.34137502480392,4859,50.21357479295255,1841,18.903196833453435,77.35098256499538,79.69788835091987,63.33757887846742,65.0704573169602,77.12426242774592,79.47092307583486,63.25280203104866,64.98759905727384,0.2267201372494582,226.96527508500708,0.0847768474187589,82.85825968636118,150.81462,106.10314700614842,157507.09653162892,110811.52886773864,383.78114,251.72623874328485,400296.435546365,262391.34496077587,375.58226,182.9383864325428,388851.1869327736,188434.53147606007,3445.80324,1585.9767688475283,3561907.9487420493,1620344.0628677043,1142.74125,515.881711464063,1179553.717454648,524876.963649531,1809.96584,767.6208340855159,1859214.1074244652,776110.4677780442,0.38148,100000,0,685521,7159.413478710405,0,0.0,0,0.0,33123,345.3749830288979,0,0.0,34406,355.8814007164416,1620628,0,58168,0,0,0,0,0,60,0.6266253093962465,0,0.0,2,0.0208875103132082,0,0.0,0.06177,0.1619219880465555,0.2980411202849279,0.01841,0.3370925382357485,0.6629074617642515,24.560161195954837,4.331033973252503,0.3249639843589216,0.2424367153735336,0.2144474171640255,0.2181518831035192,11.436939784484032,6.002136217208806,19.677974446103185,12247.622571209018,55.14446893288479,13.976523466026253,17.720848109623077,11.68243953176363,11.764657825471827,0.5671948960691501,0.7614601018675722,0.694743508549715,0.6180422264875239,0.1113207547169811,0.7216730038022814,0.9028436018957346,0.8634020618556701,0.7658730158730159,0.1581027667984189,0.5098758465011287,0.6825396825396826,0.6397984886649875,0.5708860759493671,0.0966542750929368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.0046928370886165,0.0066766105547268,0.008866905013407,0.0113674492379335,0.0135802343455731,0.015973333605162,0.0182686615909044,0.0203397452932398,0.0222602038727637,0.0243252385882545,0.0263090362249663,0.0286028602860286,0.0307592499150439,0.0327951720224893,0.0350180878552971,0.0371835361118301,0.0391835379331098,0.041046754623998,0.04306698614439,0.0578625412334544,0.0721496343874551,0.0857370534637685,0.0981643466924597,0.1103017141411372,0.1259130839244373,0.1375422892959031,0.1486751090773651,0.1600918656198258,0.1706390920987707,0.1834554071520896,0.1957881522844836,0.2078484261817232,0.2175225925034463,0.2265687774487897,0.2371906413822913,0.2472246420514195,0.2554567956795679,0.2636029328309082,0.2705646316996274,0.2782317807204371,0.2848748741718753,0.2908882236709774,0.296912626244474,0.3024836728252689,0.3088106757272469,0.313687975190076,0.3179044519590145,0.3217776281893617,0.326338572804899,0.3262916807005726,0.3246753246753247,0.3242572512302768,0.3232714959627239,0.3218055844657884,0.3202415066582895,0.3177690076553658,0.3182916605020466,0.3186961575276904,0.3198622560039967,0.3218892154476871,0.3230453486995303,0.324662006613369,0.3248945147679324,0.3261719218319146,0.3279875032543608,0.3297346440138644,0.3344632768361582,0.3368718790376087,0.3400545605503499,0.3432903577265299,0.34620886981402,0.3453734531063509,0.3497989225282646,0.3522471910112359,0.3538534390908014,0.3585226394683974,0.3617712776762137,0.3649695628112894,0.3684412102642665,0.0,2.068618247326133,57.709938985264905,181.58570175052495,265.10529054168137,fqhc4_100Compliance_implementation,24 -100000,95849,44927,424.2819434735886,6083,62.35850139281578,4771,49.26498972341913,1901,19.499420964224974,77.51248185563044,79.79735611155357,63.42745123530996,65.11036703578215,77.27281267493589,79.55854656048764,63.33920614081204,65.0245263967311,0.2396691806945483,238.8095510659269,0.0882450944979211,85.84063905104244,150.6483,105.9639539402516,157172.53179480223,110553.0093587326,385.50146,252.4254768780444,401685.4531607007,262846.25491976377,369.29518,179.2117776916347,382173.4499055807,184602.13601473696,3439.74256,1547.201767185937,3555931.5590147004,1581641.481948997,1160.30774,506.1464948755087,1197101.2947448592,514707.92947117775,1865.32824,777.7599215054156,1915645.609239533,785610.6311468486,0.38082,100000,0,684765,7144.205990672829,0,0.0,0,0.0,33127,345.0844557585369,0,0.0,33783,349.2994188776096,1629801,0,58356,0,0,0,0,0,68,0.7094492378637232,0,0.0,1,0.0104330770274076,0,0.0,0.06083,0.1597342576545349,0.312510274535591,0.01901,0.3241422528591571,0.6758577471408429,24.85388974299153,4.421501560439803,0.3286522741563613,0.2249004401592957,0.2163068539090337,0.2301404317753091,11.21362988635076,5.791405662629882,19.89795201331813,12191.216454909309,53.22949722595437,12.724387618774026,17.423596574618973,11.28414858934967,11.797364443211707,0.5640326975476839,0.7996272134203168,0.6977040816326531,0.5852713178294574,0.1229508196721311,0.7396006655574043,0.9338624338624338,0.8708860759493671,0.7429906542056075,0.1534883720930232,0.5049033342673017,0.7266187050359713,0.639386189258312,0.5440097799511002,0.1155152887882219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020844716977313,0.0045776323918129,0.0068620196839619,0.0090511511806069,0.0114285133789796,0.0135970710871554,0.0155871393374193,0.0178250938162832,0.020034104949302,0.022098374066878,0.0242998310378372,0.0265616507194207,0.0286879771482588,0.0307206224399481,0.0329274955928289,0.0348691888988731,0.0370128929450963,0.0393236294268889,0.0414571820334898,0.0437539038101186,0.0583149969236544,0.072465889487166,0.0855756737499476,0.0984455414347232,0.110475829463731,0.1258066901148114,0.1371609661999597,0.1475936283788094,0.1589225876678121,0.1688763708019191,0.1812756073168371,0.1934905425988139,0.2052704727572802,0.2147139440664824,0.224210665084701,0.2348783967616709,0.244161429781165,0.2531959828349323,0.2625999501664892,0.2706418872582636,0.2776425530933127,0.2840065712055366,0.2901483525554848,0.2963201757527998,0.301633789180685,0.307495824737204,0.3124182028942153,0.3168162655559635,0.3202231987525612,0.3239423682553012,0.3239806514719084,0.3230628139671763,0.321885107038349,0.3216591186830566,0.322496229929921,0.3209857715828161,0.3190673149785299,0.3192223985861792,0.3197331018400313,0.3207449744493705,0.3223117324909815,0.3228749926095268,0.3233492882971385,0.3234717519158795,0.3237126691971639,0.3259952919264299,0.3275067175788431,0.3305103216365165,0.335509183708899,0.3381168374129976,0.3396927762103094,0.3407310704960835,0.3414664431613584,0.3447106690777576,0.3445073823010493,0.346037296037296,0.3494502184063865,0.3502578341927806,0.3551705468327016,0.3631915694392171,0.0,1.9679803898041572,52.480092398550624,174.07328400332008,272.13564499323206,fqhc4_100Compliance_implementation,25 -100000,95743,45036,426.56904421210953,6067,62.07242304920464,4742,49.00619366428877,1901,19.48967548541408,77.31288813594676,79.67130028125933,63.318020272784125,65.06187834328254,77.0847964425759,79.4442893327824,63.23341932902979,64.98027937755162,0.2280916933708709,227.0109484769307,0.0846009437543315,81.59896573091885,152.31964,107.18500388865549,159092.19472964082,111950.74719682428,384.99028,252.48541260274493,401580.6899721128,263184.28773147386,372.62571,180.92535500148017,386033.6630354177,186547.0085677967,3386.54557,1535.288739794511,3501752.117648288,1568183.2612248536,1134.96243,502.8667901534344,1170985.4924119778,510785.1228324101,1855.57772,768.903751432592,1904011.4682013304,773638.7011910586,0.38157,100000,0,692362,7231.463396801855,0,0.0,0,0.0,33221,346.44830431467574,0,0.0,34101,352.95530743761947,1612403,0,57889,0,0,0,0,0,71,0.7415685742038582,0,0.0,1,0.0104446278056881,0,0.0,0.06067,0.1590009696779097,0.3133344321740564,0.01901,0.3328095537397863,0.6671904462602137,24.623913868422697,4.363133260898301,0.3184310417545339,0.2275411218894981,0.2393504850274146,0.2146773513285533,11.321374570528231,5.889177673762812,20.004892095388268,12221.3280615358,53.60366203197398,13.011319922140752,16.916316876681677,12.6306913882619,11.04533384488967,0.5638970898355125,0.7822057460611678,0.7019867549668874,0.5647577092511014,0.1267190569744597,0.7514078841512469,0.9407407407407408,0.8739946380697051,0.7392996108949417,0.1778846153846154,0.4972849385538725,0.6869436201780416,0.6455584872471416,0.5136674259681093,0.1135802469135802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800360550142,0.0046422526074661,0.0068994206515894,0.0091313533498557,0.011279380803694,0.0136048879837067,0.0156622820434383,0.0178762850813161,0.0201504897049502,0.0222504377387083,0.0243204724651649,0.0264414437541715,0.0285396933139983,0.0306841357147271,0.0326321327982337,0.0347881807001043,0.0367175770126844,0.0387133592736705,0.0407437449304299,0.0429378177877802,0.0571088513499404,0.0712544337835999,0.0841250865160762,0.0968362615525344,0.1091277163311999,0.1237849444168262,0.1365647648051272,0.1482616933852802,0.1590697873158642,0.169723098041739,0.1822958727697559,0.1948497204226646,0.2065456126997934,0.2161396524002756,0.2254997964505374,0.2370202160066463,0.2465259562689049,0.2553359061195558,0.264495469101315,0.2721199899168137,0.2795619254902868,0.2863123918229873,0.2929965692653495,0.2984958350812009,0.3032725152450135,0.3083576682807821,0.3124491456468674,0.3174249844181284,0.3213675213675214,0.326161892309521,0.3246515139259618,0.324224611445327,0.3240228977497039,0.3235860113148033,0.3231572993569898,0.3205500053711462,0.3175893438328544,0.3186134930954458,0.318676236317854,0.3198150570778301,0.32025406847822,0.3215546301804481,0.322545462172536,0.3235616377093535,0.3237553890989667,0.3245021012241915,0.3252726545994404,0.329944109381414,0.3329340051442866,0.3373537281840329,0.3392513956255147,0.3427160231557704,0.3450695401578749,0.3476309985550232,0.3484720263281617,0.3484382394699479,0.3569452980946527,0.3647201454839361,0.3753120665742025,0.380249716231555,0.0,2.0696138759018634,54.45833232409732,178.30669516541334,262.2023266171116,fqhc4_100Compliance_implementation,26 -100000,95794,45028,426.0183310019417,6124,62.90581873603775,4799,49.64820343654091,1878,19.385347725327264,77.37208356525132,79.71035339033577,63.35007434272507,65.0793337382591,77.14799614978322,79.48421899192834,63.26834806183877,64.99840134281898,0.2240874154680909,226.13439840742444,0.0817262808863006,80.9323954401151,151.7769,106.7964823147534,158440.69565943588,111485.3355270198,388.02436,254.72987059225864,404606.0191661273,265459.006401506,374.1399,182.1127991711362,387408.4598200305,187697.9363365509,3421.83701,1551.7392609129429,3544251.007369981,1592043.406594298,1135.64553,501.5715239388295,1175881.339123536,513969.3853882593,1838.54204,763.8975611056162,1899380.984195252,780600.3969855949,0.38067,100000,0,689895,7201.849802701631,0,0.0,0,0.0,33408,348.2890368916634,0,0.0,34169,353.4981314069775,1615964,0,58001,0,0,0,0,0,73,0.7620519030419441,0,0.0,0,0.0,0,0.0,0.06124,0.1608742480363569,0.306662312214239,0.01878,0.3366795366795367,0.6633204633204633,24.54815419203326,4.38243436097435,0.3252760991873307,0.2242133777870389,0.2304646801416962,0.2200458428839341,11.162704606124604,5.700049644109494,19.929222472795864,12190.7183617757,54.31444831003111,12.949389334578584,17.568315032918893,12.272513126484554,11.524230816049084,0.5538653886226297,0.7955390334572491,0.6803331197950032,0.5596745027124774,0.1145833333333333,0.7332814930015552,0.9330143540669856,0.8536585365853658,0.7364016736401674,0.1232876712328767,0.4881867349843438,0.7082066869300911,0.6185925282363163,0.510957324106113,0.1123058542413381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573989668793,0.0046632334455212,0.0068600190781595,0.0089495230645767,0.0113088579273873,0.0133266818700114,0.0156662487641296,0.017705165622385,0.019998773708306,0.022167638931532,0.0243182586774064,0.0264781042498383,0.0285861129670555,0.0307763591433278,0.0330298124220143,0.0349847600351294,0.0372321705827554,0.0394582654955356,0.0412393628627536,0.0431844918950995,0.0579144535693042,0.072413901293703,0.0853363242801287,0.098101432068672,0.1103444643421468,0.1258846893287981,0.1376968232775976,0.1485998001233281,0.1587594550478486,0.1688535652695508,0.1819100990652798,0.1935759291882369,0.2048222881420391,0.2148455005519789,0.2248210338798535,0.2352133572488319,0.2450704853675945,0.2540938465861197,0.2623222077406925,0.2696472311883341,0.2763404314351113,0.2836492392549138,0.2901792572110556,0.2961043623960265,0.3015116222642791,0.3065439194594528,0.3117485894436591,0.31716802013039,0.3218285270916849,0.326313569931867,0.3251861008841472,0.3236287267336518,0.3225715613252045,0.3213831754102149,0.3204067997921461,0.3192459528108455,0.3178841469201809,0.3183413706000065,0.3191038139216692,0.32014857408168,0.320286029838453,0.3215999052375969,0.3232832573126334,0.3232485497545738,0.324080966216054,0.3254522704759918,0.3256312121558323,0.3294254829661845,0.3330056179775281,0.33552134304014,0.3394420131291028,0.3425827674023769,0.347151560831606,0.3523954372623574,0.3567933759879563,0.3566532734578114,0.3535676251331203,0.353115141955836,0.3565264293419633,0.3656800299737729,0.0,1.6878243258958976,56.98540711807679,179.55991438349145,261.14848749938835,fqhc4_100Compliance_implementation,27 -100000,95649,44727,423.1513136572259,6025,61.71522964171084,4793,49.55618981902581,1952,20.04202866731487,77.25911226955019,79.65714802803305,63.27736057920528,65.04663030476532,77.01341520020542,79.41313660362661,63.18618406038707,64.9592518991649,0.2456970693447715,244.01142440643756,0.0911765188182087,87.37840560041832,151.22206,106.40536246673744,158100.8060722015,111245.43117726003,386.68494,253.54106675651167,403637.65434034856,264437.16793328914,375.30309,182.56021265492916,389517.05715689657,188626.3903258785,3431.00753,1566.2132658092926,3547281.2470595613,1597658.915210083,1143.25007,506.6609106981709,1181755.982812157,516219.1097640029,1906.38966,801.3692456236172,1958049.2634528328,805490.7566587378,0.37958,100000,0,687373,7186.400276009158,0,0.0,0,0.0,33326,347.82381415383327,0,0.0,34338,356.1563633702391,1610504,0,57907,0,0,0,0,0,77,0.7945718198831143,0,0.0,1,0.010454892366883,0,0.0,0.06025,0.1587280678644818,0.3239834024896265,0.01952,0.3304320303845545,0.6695679696154455,24.64205402363365,4.38709021595045,0.3217191737951179,0.2330481952847903,0.2182349259336532,0.2269977049864385,11.085495194624814,5.727994721060167,20.91466400885008,12169.155613928133,54.54508136555302,13.37797093597574,17.589709626227414,11.65977065076832,11.91763015258153,0.5599833089922804,0.7958818263205013,0.6783398184176395,0.5736137667304015,0.1369485294117647,0.7262914417887433,0.9268867924528302,0.8308080808080808,0.7419354838709677,0.1572052401746725,0.4982837528604119,0.7157287157287158,0.6256544502617801,0.5213032581453634,0.1315483119906868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0049179164258408,0.0070438259951687,0.0095309705738904,0.0116689556945928,0.0138716313934776,0.0158859636600934,0.0181610298396235,0.0202819435499534,0.0224169345097958,0.0245550360892388,0.0267275901016531,0.0290154694314161,0.0314302785561232,0.0333849329205366,0.0355791302189962,0.0375319845438253,0.0396520583777948,0.041555280485141,0.0435059112992347,0.058494628150997,0.0722957190292136,0.0856821809627824,0.0981118962122089,0.1111075909263718,0.1260339550302375,0.1375204469653516,0.1497282898241875,0.1604855095711688,0.1706866556412294,0.1830960086299892,0.1943517274264164,0.2060111551701599,0.2167424532953487,0.2261302098843044,0.236819014827567,0.2458372498992883,0.2546303607282243,0.2624574892799053,0.2698066161854094,0.2767715210656394,0.2841995378678583,0.2909032656161002,0.2963795736289634,0.3012803316668699,0.3056915393363991,0.3103374679857379,0.3139626879003649,0.3184055054210218,0.3230537099293221,0.3219215082516273,0.3205060913284897,0.3206191109476246,0.3193687606260081,0.3187215293854081,0.3160695882235314,0.3146947595894111,0.3150452395471101,0.3159674539961549,0.316989247311828,0.3182117151823802,0.3182286506835744,0.3197346043210783,0.3197614687095189,0.3205365513594077,0.3215355366304659,0.3218109339407745,0.3246945459125834,0.3274625606412149,0.3305633970816269,0.3332115287991595,0.3360315262541272,0.337650031585597,0.3407136878946968,0.3392673100346669,0.3412953060011883,0.3451340996168582,0.3496446700507614,0.3435221536735838,0.3444881889763779,0.0,2.113577830729876,56.9796784826106,177.8320060130818,264.8697628256476,fqhc4_100Compliance_implementation,28 -100000,95633,44854,424.6337561302061,6049,62.206560496899606,4697,48.69657963255362,1895,19.55391967207972,77.28554750318864,79.71517038978426,63.27381344368565,65.07104877365778,77.04985120172024,79.47969329940406,63.186580766911135,64.9863883624067,0.2356963014683941,235.4770903802006,0.0872326767745121,84.66041125107893,150.7297,106.09245837595589,157612.64417094516,110937.08068967394,383.74251,251.6764927658427,400843.61046918953,262746.9103404084,371.04485,180.4985581038336,385175.5879246704,186694.38946849236,3367.49467,1527.6863855334773,3493188.460050401,1569366.887511087,1108.61784,490.9843083983436,1152284.4311064172,506447.18705712864,1849.48332,774.5648781231646,1909625.8613658464,787575.3055105399,0.38056,100000,0,685135,7164.211098679327,0,0.0,0,0.0,33098,345.6651992513045,0,0.0,33838,351.0817395668859,1617092,0,58034,0,0,0,0,0,71,0.7424215490468772,0,0.0,0,0.0,0,0.0,0.06049,0.1589499684675215,0.3132749214746239,0.01895,0.3257385292269013,0.6742614707730987,24.76992555259877,4.373182873391939,0.327230146902278,0.2284436874600809,0.2188631041090057,0.2254630615286353,11.272282139202126,5.895802163414003,20.278051628672728,12252.447755862786,53.2140041574113,12.947841482151446,17.376906175508548,11.370977266375482,11.518279233375832,0.5435384287843305,0.7586206896551724,0.6877033181522446,0.566147859922179,0.0944287063267233,0.7229571984435798,0.901913875598086,0.8786407766990292,0.688034188034188,0.1312217194570135,0.4759671746776084,0.667175572519084,0.6177777777777778,0.5302267002518891,0.08472553699284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800972841507,0.0047165505279493,0.006893960930837,0.0090969151801595,0.0114251414153745,0.0136091841620063,0.0157501198600442,0.0180818895063746,0.0200161602111055,0.022121627987956,0.0245688903478626,0.0266851623510069,0.0288828730532881,0.0311407984661533,0.0332896217745516,0.0351897058215068,0.037131457588476,0.0391749579378102,0.041386489018424,0.0433929987065548,0.058677176219697,0.0726472437644099,0.0854167323475939,0.0980571886128495,0.1101146146939206,0.1259889219559208,0.1381725057647146,0.1496476808766936,0.160651422579368,0.1710749661588706,0.1849430346970481,0.1977364381423182,0.2088345536959553,0.2188660640920295,0.2286696944309713,0.2394047341612011,0.2483988151791203,0.2570266188834043,0.2653629380482705,0.2732576799633195,0.2803084690025705,0.2869420636035782,0.2929524035326892,0.2989531058659687,0.3042414653441246,0.3087681615622955,0.3131091678985743,0.3169215086646279,0.3223283086422956,0.3263475032044082,0.3245249966311818,0.3236455710137748,0.3225023974727816,0.3213665818097662,0.32027231917234,0.3187778953664933,0.3169528883814598,0.3165296052631579,0.3170464841946899,0.3169213153469066,0.3180940598699132,0.3188102385842945,0.3195828699720934,0.3196143780616011,0.3215538365444674,0.3227147534168268,0.3241359773371104,0.3269104444931027,0.3302733152514083,0.3331360012629252,0.3351032448377581,0.3376396463175729,0.3408305585223346,0.3431773436316825,0.3465744462099261,0.3450175849941383,0.3490279465370595,0.3446748540366418,0.3408657772937653,0.3408662900188324,0.0,1.6535155720175774,56.95410502383231,169.55375513502432,259.8217118277955,fqhc4_100Compliance_implementation,29 -100000,95806,45148,426.9878713232992,6174,63.14844581758972,4765,49.120096862409454,1872,19.15328893806233,77.35864855579545,79.6647145182758,63.35358995694328,65.05483196398619,77.12309438669604,79.42984386111249,63.26605167974128,64.96989099848973,0.2355541690994158,234.870657163313,0.0875382772019932,84.94096549645747,151.8495,106.8700723446094,158496.8582343486,111548.41277645389,388.00925,254.4049723088895,404413.1995908399,264960.2658590167,379.98637,185.15158593351532,392745.2351627247,190228.26914473847,3420.8765,1566.2688907184026,3531441.089284596,1595646.2442001563,1151.68748,513.6148418722265,1186135.1481118093,520130.26519448194,1839.38186,775.8478377686532,1884525.520322318,779871.6457674359,0.38266,100000,0,690225,7204.402647015845,0,0.0,0,0.0,33433,348.339352441392,0,0.0,34769,358.98586727344843,1613367,0,57948,0,0,0,0,0,68,0.7097676554704299,0,0.0,0,0.0,0,0.0,0.06174,0.1613442742904928,0.3032069970845481,0.01872,0.3350285097857913,0.6649714902142086,24.73375576299916,4.37937886688913,0.3246589716684155,0.2342077649527807,0.2193074501573977,0.2218258132214061,11.420614601967712,5.971039090865219,19.964938674173847,12268.041848687766,54.11092665061288,13.303511868265176,17.480918334501958,11.654483550628488,11.67201289721725,0.5586568730325289,0.7759856630824373,0.6929541047188106,0.5732057416267943,0.1182592242194891,0.7322957198443579,0.9312039312039312,0.8592592592592593,0.7666666666666667,0.1287553648068669,0.4945402298850574,0.68688293370945,0.6339754816112084,0.515527950310559,0.1152912621359223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024694856587656,0.0047503772954248,0.0070156229406814,0.0093052046231747,0.0116635848251478,0.0139362189105335,0.0160840158089883,0.0181979537502677,0.0201969638150501,0.0222795065365494,0.0246230744018354,0.0268221634151845,0.0289518564941336,0.0311596365395103,0.0332924352246131,0.0355073586367157,0.0375386716607861,0.0394140758632843,0.0413078928508366,0.0434103685196752,0.0580662660657653,0.072704081632653,0.0857292594727739,0.0984119977719624,0.1109741060419235,0.1268982425734726,0.1395085026080318,0.1512079401721221,0.1632378532460738,0.1729154828403255,0.1854731039235109,0.1975658570887651,0.2088177398831986,0.2192453697119539,0.2284833470960638,0.2385412625394889,0.2475999106943514,0.2557917121414989,0.2646004040220623,0.2719169607259062,0.2791074487292255,0.2859216425335659,0.2923352002936614,0.2975419664268585,0.3032082375968002,0.3077397319391869,0.3128190371334201,0.3174794938640554,0.322133312616532,0.3262780079702304,0.3254715076127781,0.3240209631494243,0.3236784326971795,0.3224283548689814,0.3219133327393151,0.3192999632847876,0.318178220329592,0.3183162460567823,0.3191587586560656,0.3195833855294475,0.3200570591989188,0.3212461897787103,0.3220100418058444,0.3234781052914076,0.3239341738042536,0.3247340495046917,0.3256664476127889,0.3265911457511596,0.3287415445321308,0.3299968096985165,0.3349583124515923,0.3360843405569458,0.3386913767019667,0.3416239381648427,0.3445590994371482,0.3441328934967012,0.3495338529726425,0.3494393476044852,0.3489087856743145,0.3525009846396219,0.0,2.4378430343704403,55.87645867136944,179.7753382296557,259.2935337453079,fqhc4_100Compliance_implementation,30 -100000,95867,44786,423.1695995493757,6070,62.075583881836295,4776,49.28703307707553,1860,19.05765278980254,77.41454581429173,79.70335616713442,63.37712166936033,65.06806768898767,77.1868750556508,79.47717475377648,63.29189757543876,64.98586963820512,0.2276707586409259,226.18141335793496,0.0852240939215676,82.19805078255149,152.76184,107.52020508133002,159347.45011317765,112155.39269708218,387.17425,254.31158896449145,403345.6038052719,264756.6787203089,380.45447,185.2713272675015,393725.734611493,190805.22382890663,3392.52891,1558.1388739870474,3503290.913453013,1589953.2715727685,1111.60483,491.86167403453,1148109.1407888012,501647.7349187208,1814.03744,763.7890463606803,1860242.732118456,769069.9994317548,0.37884,100000,0,694372,7243.065914235346,0,0.0,0,0.0,33331,347.12674851617345,0,0.0,34780,359.6545213681454,1609894,0,57849,0,0,0,0,0,67,0.6988849134738753,0,0.0,0,0.0,0,0.0,0.0607,0.1602259529088797,0.3064250411861614,0.0186,0.3290220820189274,0.6709779179810725,24.31596913296663,4.328674569912607,0.3304020100502512,0.228643216080402,0.2303182579564489,0.2106365159128978,11.275517773271336,5.9945006793341244,19.797792783361544,12166.040322790988,54.22824837234749,13.09907026759239,17.88484794872328,12.264959732794138,10.979370423237704,0.5741206030150754,0.8031135531135531,0.7091254752851711,0.5745454545454546,0.1133200795228628,0.7427480916030534,0.9239904988123516,0.8571428571428571,0.7406015037593985,0.1330049261083744,0.5103866128101558,0.7272727272727273,0.655440414507772,0.5215827338129496,0.1083437110834371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021966897808371,0.0046096955574692,0.0069055031079834,0.0089030109841024,0.0112308161398516,0.0134413252068091,0.0157497962510187,0.0181259945326206,0.0204913427652076,0.0226149927889778,0.0251370038412291,0.0268958938114825,0.0290071002147532,0.031394750386001,0.0332711282490127,0.0354059078702747,0.0372562205783456,0.0395158198004,0.0413997861495499,0.0431883666018286,0.0579734323191458,0.0713681064303405,0.0846244906083367,0.0969255969255969,0.1088739824984467,0.1242026107895737,0.1358609292569758,0.1474308552477731,0.1579463980880846,0.1677483613931371,0.1809311732180124,0.1926070880273315,0.2040009127557617,0.214304447601355,0.2255756443369786,0.2357771260997067,0.2450795633216989,0.2544475786965757,0.2623186926592499,0.2699679413785207,0.2770620345098765,0.2835894197712762,0.2892445643173161,0.2943417930836149,0.3007630248833592,0.306109118694618,0.3109192165696764,0.3151366342679761,0.3193317608025091,0.323730559002931,0.3233370124101543,0.3224732853822563,0.3223385984176591,0.3213161618203344,0.3201763500875813,0.3184230245752473,0.31644350407377,0.317467334708714,0.3180408330208937,0.3188813179384084,0.3190520619518567,0.3205365584620233,0.3216304733295784,0.3224486164249488,0.3245347193944765,0.3264215088365816,0.3274629913221031,0.3325949268353561,0.335347326511368,0.3384615384615385,0.3408649283745311,0.3438060094886663,0.346538963865912,0.3497153131555289,0.3517573959009552,0.3587580550673696,0.3608497723823975,0.3682193990723936,0.3766021270793564,0.3810780248774971,0.0,2.024356399112333,57.50951654641919,180.7724572608806,254.2561910391921,fqhc4_100Compliance_implementation,31 -100000,95716,44946,426.1147561536212,5938,60.97204229177985,4627,47.81854653349493,1826,18.701157591207323,77.36002699221102,79.73153271741424,63.33690834044432,65.0884144986692,77.13230233025084,79.5056236624892,63.2518369016387,65.0067923479267,0.2277246619601811,225.9090549250402,0.0850714388056275,81.62215074248991,152.5304,107.31035130867156,159357.26524301057,112113.28441292112,385.16388,252.10616036483316,401911.6866563584,262898.64846507704,371.15207,179.82268678572754,384698.7964394668,185510.9010561725,3288.40758,1485.285887916402,3403629.6230515274,1519804.8789297517,1091.66491,479.4687220352682,1130941.6085085042,491346.10039336776,1787.53084,746.9471667230847,1834292.3022274228,752848.5187242993,0.38075,100000,0,693320,7243.512056500481,0,0.0,0,0.0,33204,346.36842325212086,0,0.0,33839,350.49521501107444,1614175,0,57862,0,0,0,0,0,69,0.7208826110577125,0,0.0,2,0.0208951481466003,0,0.0,0.05938,0.1559553512803677,0.307510946446615,0.01826,0.3275724115858537,0.6724275884141463,24.80019890720098,4.3261890649061385,0.322022909012319,0.237518910741301,0.219148476334558,0.2213097039118219,11.011714938645312,5.784397190889554,19.294972412796135,12178.421866535711,52.09797099973886,12.955941475500367,16.711761169149106,11.299224858894814,11.131043496194575,0.5573805921763562,0.7843494085532302,0.6986577181208053,0.5502958579881657,0.115234375,0.719327731092437,0.9135135135135136,0.850415512465374,0.72,0.1483253588516746,0.5013092813500145,0.7187928669410151,0.650132860938884,0.4947643979057591,0.1067484662576687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485338951291,0.0044501211365548,0.0067990623382685,0.0089904305247973,0.0114528662679523,0.0134923221050059,0.0159021406727828,0.0181571373165404,0.020189113212369,0.0223489424435389,0.0245137742600244,0.026662423128651,0.0287629957940417,0.0307665368848237,0.0328624934223423,0.0346984563529399,0.036642977021735,0.0385086462809574,0.0405342153711735,0.0424833536528181,0.0570223076280391,0.0710480317350666,0.0836847737143576,0.0961105618544773,0.1085221461933429,0.1237498149831899,0.135469156102477,0.1466443881569145,0.1573444125217614,0.1670134940896316,0.1805675256399207,0.1930335230592767,0.2050847273399202,0.2147557829376011,0.2246381593418679,0.2349585751628195,0.244502460086354,0.2534522310183519,0.2623553020940806,0.2702418025279355,0.2764904491004116,0.2842134785504773,0.2906048601667356,0.2963016175185278,0.3025280489581815,0.3073664507548703,0.3119299343134188,0.3164618102779861,0.3210667287760568,0.3254256062664011,0.3254186184245948,0.3252508016018275,0.3242553671360708,0.3241367343397536,0.3217910802657195,0.3200716406943636,0.3180999051533354,0.3196566917268603,0.3201036994081629,0.3212714023553726,0.3226723525230988,0.3227295138546494,0.3238226337963542,0.3244284155925109,0.3247449834778028,0.3260784873905929,0.3268979243673585,0.330501274426508,0.3328061852047091,0.3349535838081198,0.3400384017555088,0.3435504469987228,0.3443271767810026,0.3477964044602897,0.3532319746292323,0.3565125308859866,0.3590328467153285,0.361745101999596,0.3650618982118294,0.3644716692189892,0.0,2.0286666103787794,52.03578182494886,174.11550712983708,257.5878644719002,fqhc4_100Compliance_implementation,32 -100000,95754,44800,424.2120433611128,6111,62.577020281137074,4809,49.66894333395994,1916,19.644087975437056,77.33346816806463,79.69576046278156,63.32120940122799,65.07029138622863,77.08908563025928,79.45354592160433,63.22936865254844,64.98192813765583,0.2443825378053503,242.2145411772334,0.0918407486795516,88.36324857280431,151.8572,106.7875297845344,158590.97270087936,111522.78733476868,384.25137,251.5368429702492,400735.3426488711,262137.06668101225,365.81292,177.40327919779062,378889.7905048353,182782.1989620615,3448.37163,1572.7530084680363,3563742.8828038517,1605101.9622170369,1147.10454,514.7193907130068,1180169.361071078,520098.2778382598,1881.6728,801.7989355655224,1931042.0452409296,807160.4508377697,0.38014,100000,0,690260,7208.680577312697,0,0.0,0,0.0,33128,345.3850491885456,0,0.0,33498,346.6695908264929,1618420,0,58046,0,0,0,0,0,71,0.7414833845061303,0,0.0,0,0.0,0,0.0,0.06111,0.1607565633713895,0.3135329733267877,0.01916,0.3392468098350451,0.6607531901649548,24.701912899466087,4.386243197843405,0.305468912455812,0.2424620503223123,0.2252027448533999,0.2268662923684757,10.866594677751277,5.487293020185619,20.64466643456627,12146.264106645376,54.54488570363002,13.917724584197376,16.47754646341575,12.093189123021656,12.056425532995249,0.5493865668538158,0.7624356775300172,0.6678012253233492,0.592797783933518,0.1191567369385884,0.7088906372934697,0.8902147971360382,0.8419618528610354,0.7103174603174603,0.1716738197424892,0.4920859242509892,0.6907630522088354,0.6098003629764065,0.5571600481347774,0.1048951048951049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024722630325751,0.0046343244229911,0.0068002354708401,0.0090532219715905,0.011523362014605,0.0136138235803235,0.0154752681156465,0.0177889816496907,0.0201443113527656,0.0222738579017943,0.0244610069405287,0.0263846825111647,0.0283825056816428,0.0305149330587023,0.0324168171266443,0.0346467110431223,0.0366251436736976,0.0387365231557866,0.041035931131997,0.0428293180847628,0.0571532961010491,0.0713358730690333,0.0848547804918996,0.0982699689751275,0.1100600078041784,0.1255564602256505,0.1371005389806051,0.1476301476301476,0.1583815769797697,0.1686562201701041,0.181943546649429,0.194369001374206,0.2054296870751259,0.2145466876695545,0.2244972054746292,0.2345494417862839,0.243786704776366,0.2521946607842255,0.2610008285380276,0.2682979892822791,0.2751309899718935,0.281598708681311,0.2875329807498905,0.2935389555923023,0.2991880378187467,0.304915126971036,0.3107733079980999,0.3151398828060452,0.3202939996635567,0.3253778628473368,0.3243676642994785,0.3236799383650221,0.3231995942747661,0.3218640170087213,0.3210577981378469,0.3199981585489365,0.3182654485471387,0.3183305651937971,0.3187746020879685,0.3185299169768107,0.3184411003114797,0.3197830905636479,0.3211068750261845,0.322012297372834,0.3233736216112101,0.325098685070452,0.3265248065543923,0.3298236791652261,0.3326070148309552,0.3353011093502377,0.3367388639149979,0.3383709831371301,0.3397093059837664,0.3436116623416272,0.3461285163232665,0.3484957020057306,0.3527244819646968,0.3585136790526745,0.3591962042980742,0.3591820987654321,0.0,2.109960639507839,55.84954340410371,183.42569774794453,262.0430345926034,fqhc4_100Compliance_implementation,33 -100000,95795,45151,427.14129129912834,6184,63.16613601962524,4835,49.856464324860376,1940,19.865337439323557,77.34149214859087,79.67853436309535,63.33904717832892,65.07139762219151,77.10138221372932,79.44061248934838,63.24984582106895,64.98529275471857,0.2401099348615503,237.92187374696996,0.0892013572599736,86.10486747294033,152.39048,107.22006522547296,159079.78495746123,111926.57782292704,385.67592,252.32423272375465,401963.5158411191,262758.2470105481,374.20498,182.496140869156,386315.4131217705,187270.57938100764,3442.61671,1580.9966816191868,3553706.3207891854,1610368.956228598,1162.84286,511.1667508446675,1199317.1251109138,519035.159292935,1904.27698,793.19005307769,1952565.728900256,798499.6395770474,0.38397,100000,0,692684,7230.899316248238,0,0.0,0,0.0,33248,346.4168276006055,0,0.0,34277,353.5153191711467,1616262,0,57960,0,0,0,0,0,63,0.6576543660942638,0,0.0,1,0.0104389581919724,0,0.0,0.06184,0.1610542490298721,0.3137128072445019,0.0194,0.325939617991374,0.674060382008626,24.545996116628903,4.418836723048368,0.3236814891416752,0.2347466390899689,0.2173733195449844,0.2241985522233712,11.159833317226855,5.602717920775813,20.59726209086954,12329.55981405749,54.86265594029021,13.455325277995149,17.866480612279037,11.644680779935724,11.896169270080296,0.5528438469493279,0.785022026431718,0.6984025559105431,0.5480494766888677,0.1042435424354243,0.7217459080280593,0.8959810874704491,0.871536523929471,0.6979591836734694,0.1376146788990825,0.4918355855855856,0.7191011235955056,0.639554794520548,0.5024813895781638,0.0958429561200923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0045821801851119,0.0068801055355421,0.0092671625411535,0.0115073510708653,0.0137820741359464,0.0161451533942558,0.0185746816571189,0.020758131972636,0.0227731187089771,0.0247516123409447,0.0268324741738719,0.0289749233712534,0.0312245675845515,0.0332040117214907,0.035215562239656,0.0372038601722995,0.0392838248565886,0.0413774471091899,0.0434212307019644,0.0581146643017371,0.0723434510304158,0.0850283462751632,0.0975094577553594,0.1098335950426287,0.1257702755551797,0.1379065428486621,0.1498952562234817,0.1613089139344262,0.1710467085378662,0.1844963242812705,0.1967113869039253,0.2092255211898011,0.2193213485601879,0.2289744802031908,0.2392122567361126,0.2480688417509168,0.2576330948985436,0.2661879466763316,0.2737147822905232,0.2808873286603462,0.2879461939958664,0.2944430653569275,0.2998886774158796,0.3055242116502263,0.3109089566202176,0.3156269919634041,0.3207599888236938,0.3249502442554731,0.3291074249605055,0.3283802864250655,0.3266997429941864,0.3254012954097437,0.3245211060067609,0.3236828416437541,0.3215187935390033,0.3195678689667189,0.3205397942075676,0.3213699192555084,0.3224133614677587,0.3236199774690199,0.3244116015532134,0.3250772042604147,0.3266669656069234,0.3273394318264102,0.3284421427076794,0.3288446077868381,0.3322445614257626,0.3370380857992354,0.3405930306905371,0.3443891652846876,0.3470219267678121,0.3490950802956921,0.351531085678936,0.3543809523809524,0.3540991477613732,0.3575445173383317,0.3524165110972827,0.3591549295774648,0.3623693379790941,0.0,2.3989299877835344,55.66685219716575,186.266332630757,262.0147743423496,fqhc4_100Compliance_implementation,34 -100000,95701,44675,422.7751016185829,6194,63.59390184010617,4823,49.80094251888696,1912,19.571373339881507,77.3419109081298,79.71082736300504,63.33255108723839,65.08089523529955,77.10863100689826,79.47934791187234,63.24591867984408,64.99730323596444,0.2332799012315405,231.4794511326994,0.0866324073943118,83.59199933511263,151.66404,106.65839958775634,158476.9647130124,111449.6186954748,385.01203,252.31106371370748,401693.89034597337,263032.6792145697,374.29477,182.1899091386236,387133.9693420131,187328.30939960707,3445.33156,1575.2192705156986,3560677.014869228,1606868.2700437668,1155.1519,513.6714539824856,1191290.1119110563,521133.94823492185,1865.35898,784.764156833212,1911918.245368387,788784.4168075273,0.37838,100000,0,689382,7203.498396046019,0,0.0,0,0.0,33159,345.85845497957183,0,0.0,34219,353.6222192035611,1618155,0,58058,0,0,0,0,0,80,0.8359369285587404,0,0.0,1,0.0104492116069842,0,0.0,0.06194,0.163697869866272,0.3086858249919276,0.01912,0.3357888275015346,0.6642111724984653,24.58143878701077,4.374660560972084,0.329877669500311,0.2264150943396226,0.2274517934895293,0.216255442670537,11.208893832287467,5.857645690378639,20.41549809658035,12196.302815846786,54.76602575511155,13.077558467140356,17.95961469263099,12.246717752899151,11.482134842441043,0.5633423180592992,0.7893772893772893,0.6819610307982401,0.5761166818596172,0.1323106423777564,0.7375669472073451,0.9386792452830188,0.8596491228070176,0.7258064516129032,0.1822033898305084,0.4985779294653015,0.6946107784431138,0.62248322147651,0.5323910482921084,0.117719950433705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0047228134184655,0.0069588151754919,0.0090903550824733,0.0112559482653434,0.0137655779099128,0.016289998674781,0.0183106066791867,0.0205641864268192,0.022516298729876,0.0247872885699641,0.0269537627452792,0.0292460203200197,0.0312889566570165,0.0333928405584735,0.0353118733072835,0.0374581870527438,0.0392793765112441,0.0413309072004159,0.0432467356530257,0.0575230018902802,0.0718883783246281,0.0856459380344346,0.0990491617056187,0.1107231762372895,0.1261571992340002,0.138365246910306,0.1500063873275421,0.1608409537646355,0.1706464139366244,0.1836530280347661,0.1952882357397166,0.2069044278395927,0.2171973407977606,0.2269328054547454,0.2359804290553255,0.2454866802707434,0.2537991187842819,0.2623579319888387,0.270101063281867,0.2762171417993336,0.2833750790046583,0.2895534403561112,0.2945794975067127,0.3004301754727069,0.3062570907117841,0.3110178515502662,0.3154827050828476,0.3207588707588708,0.3248583102675629,0.3232506798050776,0.322053001979327,0.3216264094705171,0.3210937725345409,0.3194660734149054,0.3180644076604459,0.3164071137505133,0.3166385232060593,0.3168120742346895,0.3175886752708902,0.3188077261741949,0.3199051195888515,0.3205534675709157,0.3208562142777093,0.3234698795180722,0.3246546366176586,0.3265749043349135,0.3290393700787402,0.3307508099732357,0.3353126369903957,0.3386663020192351,0.341698123238875,0.3450753040519251,0.349013308857274,0.3525907715582451,0.3537471702609317,0.3579318809450751,0.3634868421052631,0.3659288316054917,0.3669230769230769,0.0,2.197436471827321,57.52096004779737,178.66081110536976,264.0435455248396,fqhc4_100Compliance_implementation,35 -100000,95714,44815,423.7938023695593,6029,61.955408822115885,4763,49.24044549386715,1882,19.42244603715235,77.33810060160408,79.71958947280211,63.31256206328344,65.07450293315898,77.10700379907908,79.48601603288385,63.22753743189982,64.99016093271453,0.2310968025250019,233.57343991825985,0.085024631383618,84.34200044445106,151.55536,106.67922742389167,158341.89355789122,111456.24195404192,385.7264,253.12751326528425,402487.8805608375,263951.3166990034,372.95761,181.42408451115156,385270.4620013791,186286.1773650514,3417.22376,1552.4274711112423,3540345.3935683398,1592044.9475638294,1128.95607,495.7240525530371,1167242.3887832502,505654.7240247372,1850.41708,772.7680853975129,1911429.947552082,788465.4810723811,0.3805,100000,0,688888,7197.358798085965,0,0.0,0,0.0,33265,347.00252836575635,0,0.0,34117,352.14284221743947,1614894,0,57959,0,0,0,0,0,69,0.7104498819399461,0,0.0,0,0.0,0,0.0,0.06029,0.1584494086727989,0.3121579034665782,0.01882,0.3221783741120758,0.6778216258879243,24.544993696680542,4.4546622449143545,0.3040100776821331,0.2376653369724963,0.2317866890615158,0.2265378962838547,10.972364420872143,5.351689514104944,20.0185043226658,12235.102158517664,54.03789876949968,13.543918966769429,16.31967695637782,12.41413977791804,11.760163068434398,0.5578416964098257,0.7950530035335689,0.7037292817679558,0.5661231884057971,0.1047265987025023,0.7274180655475619,0.91415313225058,0.8955223880597015,0.6761565836298933,0.1274509803921568,0.4974373576309795,0.7218259629101283,0.6460017969451932,0.528554070473876,0.0994285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022906488820417,0.0046155406776222,0.0069039738461226,0.0092180417505132,0.0113144961894974,0.0133327901078642,0.015431532137976,0.0180783805039476,0.0200953121165016,0.022382863695937,0.0246005865583789,0.0267800299837759,0.0287897015124875,0.0308532001441738,0.0330836840802178,0.0354559358465608,0.0374285595957922,0.0393302140285717,0.0413556502754964,0.0434592387341402,0.0580728704351549,0.071357541373138,0.0847052157763857,0.0975253199835932,0.1092527365912302,0.1255989591597118,0.1376760077671551,0.1499776391166386,0.161133135999829,0.17154228215278,0.1838524440039216,0.1957326578332034,0.2068744081761485,0.2167671484687011,0.2261862840038735,0.2365079013276003,0.2462926567804181,0.2549997186427325,0.2637149248816161,0.271095317246518,0.2784346879451515,0.2858949291058319,0.2916469250450109,0.2980853385126305,0.3036604039569307,0.3091236642728461,0.3135790713408675,0.3176941308392161,0.3218784014927694,0.3260737572925741,0.3245658904293983,0.3233525518418119,0.3229096236195627,0.3215435941133143,0.3213415720991028,0.3199681318849683,0.3187126174878952,0.3197565696663495,0.320635842098074,0.3208328129738987,0.3207147807518684,0.3212925129784252,0.3231826083314135,0.3239184440813769,0.3247464795501514,0.3263130592659836,0.3270283299775969,0.3295426065162907,0.3322859935763161,0.3344107213243989,0.3360075720016225,0.3360155674765961,0.3390936781251942,0.3414414414414414,0.3476243504083148,0.3482961222091656,0.3490509189514914,0.3522975929978118,0.3587601078167116,0.3571966842501884,0.0,2.075960584211856,55.03820829721332,184.72074864168405,256.751501071066,fqhc4_100Compliance_implementation,36 -100000,95652,44572,422.2075858319743,6029,61.88056705557646,4708,48.665997574541045,1875,19.19458035378246,77.27782633283482,79.68824355774105,63.2892740309558,65.07189166576723,77.04555225263356,79.4593924004336,63.20288360286746,64.98995763426731,0.2322740802012646,228.85115730744587,0.086390428088336,81.93403149991241,152.05982,106.9384876658299,158971.9190398528,111799.53128615176,381.78921,249.9685263465396,398583.2183331242,260770.43485399112,366.33231,177.3015262432379,380099.4019989128,183031.7373404228,3378.07331,1523.1457228210832,3493856.866557939,1554610.8631508858,1123.79311,487.1882864448164,1161527.7568686488,495985.1403471085,1834.37192,764.7566896262201,1879975.6826830597,765822.1022798236,0.37887,100000,0,691181,7225.996319993309,0,0.0,0,0.0,32922,343.6101702003094,0,0.0,33615,348.481997239995,1616525,0,57993,0,0,0,0,0,64,0.6690921256220466,0,0.0,0,0.0,0,0.0,0.06029,0.1591311003774381,0.3109968485652679,0.01875,0.3293913591926837,0.6706086408073163,24.789735454290405,4.339767275731664,0.3177570093457944,0.2308836023789295,0.2274851316907391,0.2238742565845369,10.868043131078512,5.53875251703735,19.93123319321468,12202.329817818953,53.40846593900612,13.003805475601038,17.138699420134778,11.871948917707751,11.394012125562552,0.5590484282073067,0.7626494940202392,0.7065508021390374,0.5826330532212886,0.1157495256166983,0.7370550161812298,0.9143576826196472,0.8722358722358723,0.7316017316017316,0.1194029850746268,0.4956797235023041,0.6753623188405797,0.6446280991735537,0.5416666666666666,0.1148886283704572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0042795716371896,0.0064666111708931,0.0088315700681931,0.0111094155348695,0.0134167337333564,0.0156960734319224,0.0178741050180273,0.0201509789079601,0.0224132102723799,0.0246871794871794,0.0268912742026603,0.0292129281870285,0.031002318989951,0.0329034989004635,0.0349588871076175,0.0369932852524247,0.0387614607453248,0.0408549783549783,0.0427506386528335,0.0572467630184656,0.0711450445638399,0.0844555941596951,0.0976279676713251,0.1093664260689713,0.1239983486646413,0.1360286308992821,0.1482969134552893,0.1603084458989743,0.1698589250821326,0.18284876829242,0.1951774094004786,0.2065501327876703,0.2173270739634286,0.2265276692242489,0.2370071585292879,0.2462596578982627,0.2548302519495425,0.263174617584313,0.2709718772534252,0.2783225030640797,0.2847675152535241,0.2909490915972748,0.2969980226496495,0.302075233281493,0.3074228914622566,0.3124264356014124,0.317054855542828,0.3215151475868864,0.3250686523024926,0.3236380798274002,0.3229574667622883,0.3225273561595482,0.3215366570613533,0.3196901995829609,0.3188755143401093,0.3173786731437824,0.3177071322681601,0.3179154099259665,0.3183966486447778,0.3194353188533669,0.3210789171191882,0.321684192850996,0.3230490424199033,0.3248622241474743,0.326139651262804,0.3274030498600719,0.3307118943844356,0.3319997167540008,0.3360554021056002,0.3409893182964287,0.3433058291189779,0.3463792777462658,0.3479960150203081,0.3515684051398337,0.3553986114436198,0.3533045089561458,0.3535582064993829,0.3549287908405473,0.3573068094873756,0.0,2.2001052000758787,54.23293544179599,178.33319081850888,259.75499728578217,fqhc4_100Compliance_implementation,37 -100000,95837,45065,426.9540991475109,6096,62.80455356490708,4810,49.80331187328485,1910,19.70011582165552,77.39792083527668,79.70169973227445,63.37134666233784,65.07174011784619,77.16252046038012,79.4643279671159,63.28501765019976,64.98637815025612,0.2354003748965567,237.3717651585423,0.0863290121380728,85.36196759007453,151.85852,106.85433577791316,158455.00172167327,111495.91053341942,386.94817,253.0589814271017,403359.4958105951,263654.548635069,376.8683,182.8358300805388,390647.2448010685,188801.4183368344,3433.0734,1558.4870931178723,3559159.979965984,1603158.644110961,1145.21958,509.1074426532135,1187871.448396757,524153.2430880061,1873.83636,784.609624435062,1934797.019940107,800824.0577027167,0.38076,100000,0,690266,7202.500078257875,0,0.0,0,0.0,33300,347.0580256059768,0,0.0,34439,356.81417406638354,1617744,0,58013,0,0,0,0,0,65,0.6782349197074199,0,0.0,0,0.0,0,0.0,0.06096,0.1601008509297195,0.3133202099737532,0.0191,0.3312032418952618,0.6687967581047382,24.49269235515853,4.37104780784014,0.3228690228690228,0.2343035343035343,0.2199584199584199,0.2228690228690228,10.90074277945559,5.417573539413127,20.47154107298443,12184.316734534992,54.65443007577089,13.460146782126014,17.575576358324447,11.788474363647724,11.83023257167271,0.5588357588357589,0.782608695652174,0.6851255634256278,0.5784499054820416,0.1212686567164179,0.7397476340694006,0.931372549019608,0.8337349397590361,0.7532467532467533,0.1775700934579439,0.4940711462450592,0.6981919332406119,0.6309314586994728,0.5296251511487303,0.1072261072261072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217137766259,0.0042253949274995,0.0062883513362746,0.0088238579247179,0.0108571893298633,0.0129856913150556,0.0151311365164761,0.0172508773361625,0.0193107394276255,0.0213523495769431,0.0234619128118436,0.0256991608018548,0.0279758357819467,0.0300485716637852,0.0320855063799962,0.0342780444995095,0.0366010096830257,0.0384619370886666,0.0406525170294068,0.0425655915992798,0.0574551978803746,0.0710348794645191,0.0843434131610955,0.0972035323801513,0.1097865612648221,0.1254809928538204,0.1373540732258167,0.1485478326575354,0.1597628711813715,0.1703309667317303,0.1827599203144349,0.1942786069651741,0.2061915062447688,0.2159958020858386,0.2254780151513485,0.2365228364586331,0.2461116499983276,0.255089537641782,0.2624062025345152,0.269708546852123,0.2776056956612191,0.2840022426762603,0.2902924557297208,0.2963206700568351,0.3024422762256833,0.30775379696243,0.3127996404314822,0.3171044446419276,0.3216331174287967,0.3255011912753886,0.3240837696335079,0.3236650019208605,0.3226907997358103,0.3215052678610034,0.3204873565944327,0.3188140276950793,0.316430116354336,0.3171438867776176,0.3188005321870842,0.3182215561383789,0.3193197126178715,0.3203189767478583,0.3210682741010507,0.3225120340311205,0.3245855022170811,0.3262583542188805,0.326039011256552,0.3299686738600765,0.3345540335927321,0.3379732739420935,0.3411931688109518,0.3445566778900112,0.3482306767107678,0.3524558857230158,0.3559610475560177,0.3602757636990372,0.3615160349854227,0.3618434292614208,0.3667481662591687,0.3635334088335221,0.0,1.482192059484909,56.487109862806,185.0815316496792,261.4348994653617,fqhc4_100Compliance_implementation,38 -100000,95546,44852,424.05752203127287,6086,62.34693236765536,4753,49.07583781633977,1871,19.14261193561217,77.19945181010942,79.66972532645197,63.224607941291474,65.05333719456459,76.9708766760911,79.44276338245876,63.14014131708345,64.97205906948122,0.2285751340183281,226.9619439932029,0.0844666242080265,81.27812508337229,149.95838,105.49633177933576,156948.88326041904,110414.17932653984,384.14676,252.49467093589132,401376.78186423297,263587.56089830166,376.28016,183.44398080879924,389020.7125363699,188356.5740654125,3408.59847,1552.9900819632908,3526829.945785276,1584719.979866547,1163.49744,512.1151471939155,1202940.8766458042,521193.5582796927,1831.98718,760.5374585652908,1877987.9429803449,764953.6427805405,0.37902,100000,0,681629,7134.0401482008665,0,0.0,0,0.0,33163,346.3985933477068,0,0.0,34425,355.5146212295648,1616369,0,58026,0,0,0,0,0,51,0.5337743076633245,0,0.0,0,0.0,0,0.0,0.06086,0.1605720014774946,0.3074268813670719,0.01871,0.339041095890411,0.660958904109589,24.622623826833443,4.418135271606817,0.3191668419945297,0.2358510414475068,0.2221754681253945,0.2228066484325689,11.52902717780689,6.004252805362445,19.802749620356337,12233.417763472014,54.09020925604146,13.37721376752807,17.364308794906368,11.838565262000037,11.510121431607002,0.5659583420997265,0.7796610169491526,0.6888595912986157,0.603219696969697,0.1265344664778092,0.7642023346303501,0.9282178217821784,0.8774038461538461,0.7908745247148289,0.1683168316831683,0.4925028835063437,0.6959553695955369,0.6176203451407811,0.5409836065573771,0.116686114352392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002473365703338,0.0048193015563807,0.0073421886424567,0.0093948267447535,0.011727816915747,0.0142204734041468,0.0163698525284482,0.0183834048640915,0.0206610724519034,0.0227405486836307,0.0247600472206539,0.026899466329395,0.0292378990731204,0.031246131627811,0.0331521402145381,0.0352773119682007,0.037584003982411,0.0399713154366601,0.0423628182159076,0.0445240158261214,0.0593410041841004,0.0736216261560724,0.0862888136733449,0.0987935303724777,0.1112731731033462,0.1270261961050388,0.1384772502420187,0.1502742737614992,0.1603188377848488,0.1706692765188587,0.1833547537017636,0.1952291546834811,0.2072283373515005,0.2166024987111564,0.2261610453823062,0.2363597991735904,0.2463297824724733,0.2551198871650211,0.2632219744208274,0.2710431716645037,0.2786242723625316,0.2853407438675484,0.2909530812657147,0.2971061479346782,0.3022327189501108,0.3071934180780491,0.3126977351478933,0.3173706165248561,0.3217823710416639,0.3263664744166358,0.3261230607202171,0.3247414149772445,0.3233587872457549,0.3222929936305732,0.3211428741676473,0.3189369280845053,0.316499278087169,0.3166647456901519,0.3166011905783054,0.3172870051635111,0.3179559570863918,0.3183081259179866,0.3194318588919562,0.3200503167258188,0.3203104223581461,0.321288089369067,0.3231827956989247,0.3261954393279009,0.330920007063394,0.3339693897833433,0.3362835875090777,0.3397811954970667,0.3403003754693366,0.3415781487101669,0.345210334856823,0.3481805293005671,0.3492808478425435,0.3518187239117472,0.3514757649607365,0.3486342943854325,0.0,2.615493245391061,56.13429146604388,176.6208330901277,261.44292583834533,fqhc4_100Compliance_implementation,39 -100000,95675,45031,425.5761693232297,6114,62.61823882937026,4757,49.07238045466423,1881,19.29448654298406,77.33990302576841,79.72959678323005,63.32261558699434,65.08863363882715,77.1070826382185,79.49655029996114,63.23667337559338,65.00442752415432,0.232820387549907,233.04648326890745,0.0859422114009547,84.20611467282413,151.68362,106.7330663657401,158540.49647243271,111557.9475994148,386.39843,253.56944635480585,403204.6407107395,264371.58010167046,375.9469,183.1525410384521,387995.0248236216,187734.94694031484,3425.91519,1567.017259663263,3538506.4018813693,1595910.902787685,1147.71122,512.8320960227543,1181723.5746015157,518298.39920712507,1850.47386,779.8806843387986,1899916.362686177,788312.6043882837,0.38118,100000,0,689471,7206.386203292396,0,0.0,0,0.0,33324,347.6143193101646,0,0.0,34401,354.5962895218187,1614785,0,57984,0,0,0,0,0,62,0.6480271753331591,0,0.0,2,0.0209041024301019,0,0.0,0.06114,0.1603966629938611,0.3076545632973503,0.01881,0.3300760043431053,0.6699239956568946,24.7082701139806,4.450189868967651,0.3125919697288207,0.2362833718730292,0.2215682152617195,0.2295564431364305,11.28548448397706,5.800619851828441,20.15584768114653,12266.352677882702,54.0686115160452,13.521985543975724,16.696429519966163,11.710355427877923,12.139841024225404,0.557494219045617,0.8113879003558719,0.6778749159381304,0.5825426944971537,0.108058608058608,0.7202194357366771,0.9147465437788018,0.8310249307479224,0.757201646090535,0.1596638655462184,0.4978454467107153,0.7463768115942029,0.6287744227353463,0.530209617755857,0.0936768149882904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.004835031169226,0.0071638035129019,0.0093141835615325,0.0113683739564585,0.0137828538854618,0.0160843152444245,0.0182901935167796,0.0204653254824991,0.0228766197875084,0.0250961094879286,0.0272947504567944,0.0295533070088845,0.0317038501946727,0.0338001713230057,0.0360004549167192,0.0380208441248989,0.040033629494312,0.0421399742021387,0.0441250052120251,0.0592917580695706,0.0731051088777219,0.0863206705903335,0.0990080262562721,0.1112552742616033,0.1265787970465652,0.1385426501320716,0.1496621082317884,0.1610567681858955,0.1712101883515753,0.1843014804845222,0.1963476247660467,0.2072939999565056,0.2168375713317445,0.2262392146504666,0.2368473517488868,0.2453615378607847,0.254176839215598,0.2634182313233876,0.2703687158516889,0.2777520707047337,0.2850845396506162,0.2918899733806566,0.2976404359803569,0.3036654933851195,0.3085372310950757,0.3124710825444859,0.3167785576238429,0.3214105336769448,0.3248640515284304,0.3247066431352473,0.3239750629618925,0.3228765907073098,0.3224728850325379,0.32209136331192,0.3202608376193975,0.3193158985555397,0.3188993174061433,0.3211095199127114,0.3223030043836202,0.3231503133476756,0.3246817329517418,0.3252462719344111,0.3264292744027914,0.3264500601684717,0.328699598351677,0.3304052705130764,0.3320415879017013,0.3352903951624244,0.3394164918253434,0.3434508416133569,0.3445138080626388,0.3446696366944845,0.3462706972504937,0.3493637724550898,0.3485045513654096,0.3537352354655622,0.3545081967213114,0.3451748251748252,0.3511627906976744,0.0,2.470881473077971,55.57842793429309,179.94172116807798,259.6259220034636,fqhc4_100Compliance_implementation,40 -100000,95788,44848,424.3642209880152,6152,62.97239737754207,4864,50.22549797469412,1935,19.86678915939366,77.331780499572,79.67388858401569,63.32970022966426,65.06323014886861,77.09514335782667,79.4362273759291,63.242451232388085,64.9776339723119,0.2366371417453336,237.6612080865783,0.0872489972761769,85.59617655670593,151.04144,106.30943744870793,157683.05006890217,110984.08720164104,385.91109,253.0064553349778,402346.3795047396,263597.6482805548,376.09291,183.7628562785359,388963.8054871174,189058.6383642997,3457.69667,1577.9868744696998,3576401.3968346766,1614036.8046829486,1164.76648,518.304595069051,1202734.5700922871,527846.3952364087,1885.56008,789.3530171088329,1938770.430534096,798371.7493176251,0.38071,100000,0,686552,7167.4113667682805,0,0.0,0,0.0,33300,347.0685263289765,0,0.0,34344,354.887877395916,1618689,0,58117,0,0,0,0,0,72,0.7516599156470539,0,0.0,0,0.0,0,0.0,0.06152,0.1615928134275432,0.3145318595578673,0.01935,0.3416110507527549,0.6583889492472451,24.49431799171714,4.392490649361543,0.3264802631578947,0.2321134868421052,0.2288240131578947,0.2125822368421052,11.04498280205756,5.750329457084267,20.667333990109743,12232.327436433934,55.18226482637121,13.417929920159056,18.05407642591159,12.237839949471628,11.47241853082894,0.5680509868421053,0.7741364038972542,0.7153652392947103,0.5561545372866128,0.1295938104448742,0.7595238095238095,0.9448818897637796,0.8747044917257684,0.7349397590361446,0.2125603864734299,0.5011098779134295,0.6871657754010695,0.6575107296137339,0.5046296296296297,0.1088270858524788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094454292225,0.0044604841652812,0.0068596710199194,0.0093055386240806,0.0111975591151792,0.0135337427061375,0.0158642768295915,0.0181714239046102,0.0203737400584735,0.0223780519015201,0.0245725181449132,0.0268599708400928,0.0290270837189215,0.0310771417682141,0.0331496274279109,0.0351589959889178,0.0371793411282221,0.0391312915504205,0.0412012261651166,0.0429277942631058,0.0577653491381109,0.0717513178813488,0.085248891544291,0.0981506777345802,0.1098912677006068,0.1252747252747252,0.1376909135231958,0.1488802875311031,0.1597178499397069,0.1697593691743984,0.1817526183787042,0.1942389235029422,0.205415986949429,0.2166827091354567,0.2267579436269384,0.2371782798010126,0.2463040446304044,0.2557469971658644,0.2634228758688725,0.2713265259398324,0.2779575983168798,0.2851065818997756,0.2916001277547109,0.2967817689487431,0.3025201918989494,0.307871540405597,0.3130931216666249,0.317333910960475,0.3226902085845033,0.3264818166206523,0.3253576913749899,0.3245741958561484,0.3243783898006621,0.3236749218840412,0.3230959144518643,0.3210702341137124,0.3182323072040622,0.3189714736946007,0.3198013018156903,0.3205109880293014,0.3212791112278792,0.3223076770991913,0.3224322621298046,0.3238985253910627,0.3253995075556414,0.3267686674512881,0.3278772816865198,0.3308469455197809,0.3326784774600947,0.3356142584341184,0.3386743357984114,0.3403336709130643,0.3417544750539545,0.3446219707973396,0.3500047183165046,0.3556927460524753,0.3583859541044201,0.3582270795385549,0.3589389334070185,0.3641709133673069,0.0,2.190774378104458,55.077716152865655,190.17203071060385,264.7053301119608,fqhc4_100Compliance_implementation,41 -100000,95672,45242,428.88201354628313,6228,63.853583075507984,4899,50.46408562588845,1893,19.253282046993892,77.34192318165195,79.7168496153493,63.32298576779221,65.0750659267437,77.10379360719391,79.48610300205803,63.233874022078666,64.99227713619575,0.2381295744580427,230.7466132912737,0.0891117457135379,82.78879054795141,151.34218,106.5675942536666,158188.5818212225,111388.4880149538,390.3152,255.3943223238392,407166.7154444352,266149.6267300406,380.54146,184.74555031434463,393686.020988377,189914.03783681156,3488.87649,1581.7554528608375,3593307.8852746887,1600478.7202169965,1175.68415,520.7963502829546,1207294.527134376,523497.3634505528,1855.79896,781.702133047827,1889698.8042478468,774039.5593090056,0.38271,100000,0,687919,7190.390082782842,0,0.0,0,0.0,33607,350.4369094405887,0,0.0,34712,358.7360983359813,1613123,0,57841,0,0,0,0,0,84,0.8779998327619366,0,0.0,0,0.0,0,0.0,0.06228,0.1627341851532492,0.3039499036608863,0.01893,0.3311847759361571,0.6688152240638429,24.612697307875315,4.38207497704538,0.3306797305572566,0.2322923045519493,0.2137170851194121,0.2233108797713819,11.204261935119776,5.834161346342429,20.093075735662392,12289.256131675154,55.33086445280894,13.527588600352107,18.238178002026284,11.587010558389684,11.978087292040854,0.5631761583996734,0.7618629173989455,0.7141975308641976,0.5864374403056352,0.1106032906764168,0.7293469708890638,0.916243654822335,0.8761904761904762,0.7395348837209302,0.1611570247933884,0.5049614112458655,0.6801075268817204,0.6575,0.546875,0.096244131455399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971791055354,0.0044293084400117,0.0067459955161954,0.0093546224632823,0.0113695300662036,0.01356111665411,0.0157005077177171,0.0178183043509338,0.0198169640574671,0.0218913826998689,0.0238908199780573,0.0260323067601844,0.0281932072987595,0.0302833590932509,0.0325168003468458,0.0345084332116524,0.0367838238188466,0.039225659123936,0.0410795070459154,0.0431216848511374,0.0575269771960429,0.0718571652966123,0.0854011840282151,0.0985183314391547,0.1110548309484614,0.1262805858945051,0.1379969418960244,0.1494982636299721,0.160840655933979,0.1713095659828454,0.1846991589389691,0.1972229142071117,0.2094726987720978,0.2200249518473122,0.2294407080035664,0.2393028872786899,0.2484147539519514,0.2569907240634005,0.2657325996936865,0.2739613045121825,0.2815874448803861,0.2876871042868679,0.2936154593032893,0.2986651635264629,0.303851623175371,0.3085459230854592,0.313552315093205,0.3184445010183299,0.3226504868214642,0.3274445031712473,0.3263351053782011,0.3250165508109897,0.3240847892969036,0.3225857733329479,0.3217550002967535,0.3207073797576796,0.3194396129154676,0.3199888339710011,0.3206859995896313,0.3221022575176229,0.3234902849862284,0.3246393445867057,0.3259849119865884,0.3263464337700145,0.3270363160045185,0.3280403998334028,0.3284129692832764,0.3320050203953561,0.3355001048437828,0.3388805439165151,0.3397548953104509,0.3417005760186017,0.3422379032258064,0.3453128546568813,0.3469311725807953,0.345049042503503,0.3501653140967838,0.3472553699284009,0.3475061324611611,0.3549232497192063,0.0,2.834543710971432,55.22614453272058,181.47165470366963,275.35084087582607,fqhc4_100Compliance_implementation,42 -100000,95731,45160,427.9804869895854,6015,61.54746111499932,4720,48.63628291775914,1879,19.178740428910174,77.32392886815877,79.68555390888805,63.31606620966248,65.06393225077683,77.0843316417421,79.44921757642919,63.22738672537757,64.97896951834808,0.2395972264166772,236.33633245886188,0.0886794842849099,84.96273242874963,150.7044,106.07315873061124,157424.86759774786,110803.35390898582,385.34931,253.19350842751956,401875.3486331492,263835.43782444525,374.85647,182.6179793801257,387121.3713426163,187376.1877964973,3378.69612,1539.428918097134,3486056.6796544488,1565374.494717863,1111.9847,491.319032376448,1145076.3180161077,496733.21642427024,1838.77846,769.7389495820295,1879923.4103895288,772812.4377236563,0.38316,100000,0,685020,7155.67579989763,0,0.0,0,0.0,33216,346.2828132997671,0,0.0,34291,353.6576448590321,1617593,0,58148,0,0,0,0,0,67,0.6998777825364825,0,0.0,0,0.0,0,0.0,0.06015,0.1569840275602881,0.31238570241064,0.01879,0.3194730995080146,0.6805269004919854,24.556722781116505,4.387285168902752,0.325,0.2330508474576271,0.2207627118644067,0.2211864406779661,11.461080487437124,5.949606080573285,20.10337487424382,12268.955606418158,53.676075136279344,13.280623620497948,17.437683786492965,11.604629848654874,11.353137880633543,0.5713983050847458,0.7972727272727272,0.7138200782268579,0.5930902111324377,0.1024904214559387,0.7382239382239382,0.9056603773584906,0.8702830188679245,0.7398373983739838,0.1044776119402985,0.5083211678832117,0.7292899408284024,0.654054054054054,0.5477386934673367,0.1020166073546856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027652010088425,0.0051810319480071,0.0074086102259118,0.0095307768904062,0.0118098221914798,0.0137983706720977,0.0161185082478641,0.0181081384547857,0.0202026398388696,0.0221152861677075,0.0242882188297774,0.0266127293448463,0.028447176872147,0.030406971354408,0.0325463326041193,0.0345244617181604,0.0366568611203182,0.0385896810487093,0.0407013019425148,0.0429546283273428,0.0580049068225713,0.072467255304013,0.0860788960426147,0.0987150638262076,0.1108674104224223,0.1264161122100341,0.1378490790255496,0.1500883749653953,0.1617282631916257,0.1715317903583718,0.1842176079913025,0.1960141871580267,0.2072031917553567,0.2173252279635258,0.2271587559934896,0.2375178553632528,0.246702818504385,0.2552545119042261,0.2639382414713061,0.2720320132088885,0.2793459871607685,0.2862867789222062,0.2931279789428754,0.298990602158023,0.3039784828459114,0.3090698162340948,0.313924621981494,0.3183962264150943,0.3230401951371409,0.3274487245606379,0.3260206697428425,0.3252666685041757,0.3241984646647098,0.3232956437392324,0.3222719900001488,0.3202150801188761,0.3177370321109633,0.3180281597689455,0.3188286949242307,0.3198222317412722,0.3219396164219358,0.3236608908932669,0.3243498124358195,0.3263840733698691,0.3276223018985971,0.3286977848514102,0.330191097314385,0.3312306818898631,0.3331216259129883,0.3383300198807157,0.3392881556760698,0.3422964730840626,0.344699591066373,0.3459081229084271,0.3485449735449735,0.3490284896888783,0.3502730582524271,0.3572133412275508,0.3513944223107569,0.3501696192989069,0.0,2.5743803751042287,56.55115678142027,172.2817690980171,259.9737732848029,fqhc4_100Compliance_implementation,43 -100000,95790,45129,427.3410585656122,6077,62.35515189476981,4774,49.21181751748617,1926,19.69934231130598,77.4066300966336,79.74435519340794,63.35719594835807,65.08710766303412,77.17537384825361,79.51689362517895,63.27061702718841,65.00474149895678,0.2312562483799922,227.4615682289891,0.0865789211696608,82.36616407734232,151.93992,106.86358009763428,158617.03726902598,111559.6251542082,387.75507,254.3170183330521,404141.85196784633,264851.18048294005,371.86499,180.7533431899712,384384.9984340745,185767.3434526051,3488.18664,1571.5382473780735,3597432.26850402,1597518.456149371,1160.8166,505.2944011071727,1193855.7678254514,510854.3019910327,1897.13552,792.5838145348545,1941288.7566551836,794110.2155898963,0.3825,100000,0,690636,7209.865330410272,0,0.0,0,0.0,33386,347.8546821171312,0,0.0,33929,350.422799874726,1615563,0,58034,0,0,0,0,0,83,0.8560392525315794,0,0.0,1,0.0104395030796534,0,0.0,0.06077,0.158875816993464,0.3169326970544676,0.01926,0.3291809405169729,0.6708190594830271,24.73971075914324,4.476377964819768,0.3077084206116464,0.2245496439044826,0.2341851696690406,0.2335567658148303,11.040802474625384,5.58788644389393,20.314422628355707,12220.616164943976,53.6291642587664,12.824185010158107,16.42247578506329,12.381264760421512,12.0012387031235,0.5385421030582321,0.7611940298507462,0.6766507828454731,0.5733452593917711,0.1076233183856502,0.7067545304777595,0.9142091152815014,0.8539325842696629,0.7333333333333333,0.1130434782608695,0.4811797752808989,0.6795422031473534,0.6199460916442049,0.526071842410197,0.1062146892655367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020771272823069,0.0043093833019001,0.0066266833094853,0.0088800382024526,0.0110454531585317,0.0129121606484592,0.0154156726004771,0.0178635226866738,0.0201357373563923,0.0222379139547259,0.0243097546477545,0.0267405469190908,0.0290656443672466,0.0312847436689314,0.0332027626017936,0.0353152557774519,0.0373470168940937,0.039062014057349,0.0410796658770726,0.0428843611073514,0.0572644935097458,0.0715854423760719,0.0848068759498978,0.0978675550977939,0.1103595060479622,0.1250396263499376,0.1369774442465869,0.1480272600657048,0.1590094319491272,0.1692747662350181,0.1822260476625961,0.1946934230016542,0.2074717202560118,0.2170741561745853,0.2267029912886818,0.2362228245837251,0.2465374579030711,0.2552887749825768,0.2631949012225271,0.2709322955416929,0.278337997548396,0.2855072633141281,0.2920230448001324,0.2976488483788672,0.304130785954599,0.3083834549398541,0.3129084762739451,0.3175873387445612,0.3225827342788679,0.3266265314744402,0.3259331149662339,0.3247164409206035,0.3238071080296497,0.3225671262175207,0.3219725083870202,0.3200813468095842,0.3188131313131313,0.3190202106089345,0.3198267810138405,0.3209186840471756,0.3217803312938367,0.3211856744112906,0.3213921016984474,0.3212942564034092,0.3213969832428943,0.3222199213087596,0.32371169029629,0.3279900202713239,0.3298142921849413,0.3322569211987555,0.3363443385574274,0.3379756148833298,0.3420414256391118,0.3463410980450903,0.3510403240655496,0.356100949293818,0.3580190822353475,0.3541418945699564,0.3552523874488403,0.3494849294162533,0.0,2.3133605112461084,52.8474464719972,178.52987374264632,268.27542705600894,fqhc4_100Compliance_implementation,44 -100000,95690,45227,427.662242658585,6126,62.733827986205455,4841,50.03657644476957,1917,19.709478524401717,77.29491858535671,79.69697557710182,63.29396199958445,65.07380984497483,77.05764171807782,79.45918111897335,63.20627196621051,64.98783303423231,0.2372768672788936,237.79445812847652,0.0876900333739456,85.9768107425225,151.5998,106.72185680606376,158428.04890793186,111528.74574779368,388.00102,254.58615976510728,404941.6448949734,265517.6087000809,378.08891,184.16620495786424,391323.75378827465,189566.88205259744,3481.60118,1588.3362313742257,3599941.3313825894,1621401.307737721,1146.46639,506.0006235560435,1178867.4992162192,509554.3354123144,1882.42786,788.9950555423712,1936760.0167206605,798687.7430303517,0.38286,100000,0,689090,7201.274950360539,0,0.0,0,0.0,33446,348.9601839272651,0,0.0,34593,357.67582819521374,1612871,0,57908,0,0,0,0,0,72,0.7524297209739785,0,0.0,2,0.0209008255826105,0,0.0,0.06126,0.1600062686099357,0.3129285014691479,0.01917,0.3293675641828428,0.6706324358171571,24.502264882030477,4.359348231688836,0.3205949184052881,0.2278454864697376,0.2266060731253873,0.2249535219995868,11.237912834791375,5.740896661354805,20.477488664067767,12299.051328358926,54.9917915262064,13.374944283688496,17.4889445669861,12.236864642067223,11.891038033464593,0.5695104317289816,0.7987307343608341,0.7139175257731959,0.5888787602552416,0.1120293847566574,0.7387596899224806,0.9106280193236715,0.8596938775510204,0.7546468401486989,0.1674418604651162,0.5080259081948747,0.7314949201741655,0.6646551724137931,0.535024154589372,0.0983981693363844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025038774620616,0.0049925416298821,0.0073020870360026,0.0092115296629556,0.0115536915826012,0.0139329140888567,0.0162455610433078,0.018563167896038,0.0205119286328109,0.0227619623229084,0.0249061403688734,0.0271411400922511,0.0294196336694793,0.0316599849532623,0.0337427745664739,0.0358431834869026,0.0379159197123405,0.0399609630498655,0.0419956516763931,0.0441294491635833,0.0591503984791986,0.0734079417091529,0.0866134295937962,0.0994044988742293,0.1113432080010127,0.1268978067437604,0.1385129756408215,0.1501336200930549,0.1614985147351099,0.1718347639484978,0.1849988689366927,0.1966980774848265,0.2089430540757974,0.2191584699453551,0.2291391748042579,0.2394534623646389,0.2491520128536999,0.2574277482668587,0.2652259332023575,0.2734412621247907,0.2797285403251957,0.2851490248413758,0.2913099593856938,0.2971066647473729,0.3020652266400865,0.3087480252764613,0.3146572785246251,0.3189872450927977,0.3229484856329278,0.3273235647116234,0.3263894496030144,0.3247947861238295,0.3240186481499739,0.3229199780365864,0.3217661395791226,0.3202103358935443,0.318217865753077,0.3186108461867333,0.3204590937858133,0.3206375898958817,0.3219877083842352,0.3224098965148091,0.3224105698741781,0.3233546361699742,0.3226391373724674,0.3240815899033804,0.3249033366747816,0.3289328238006506,0.3310361801624416,0.3344203619009743,0.3365947329919532,0.3389695326208327,0.3449968533668974,0.3503315801509261,0.3538127595318988,0.3567084078711985,0.3582430989781912,0.3632296115517592,0.3676591095329145,0.3718479488144524,0.0,2.1852147683302685,56.59635931671029,181.83802571829997,266.9783917198749,fqhc4_100Compliance_implementation,45 -100000,95720,44690,424.6865858754701,6005,61.53363978269954,4716,48.68366067697451,1914,19.598829920601755,77.3593554540744,79.7283827733886,63.33143217950936,65.08292145892065,77.1304606140587,79.50215518170003,63.24683749728314,65.00164279914448,0.2288948400156982,226.22759168856987,0.0845946822262249,81.27865977617432,151.82046,106.73762638979916,158608.9218554116,111510.26576452063,384.64214,252.14529493588745,401252.8311742583,262831.55551179213,372.22308,181.1170113945695,384737.035102382,186049.37338556472,3385.67573,1540.0952253574535,3498094.1287087337,1569990.801668882,1107.70273,487.111913512304,1142901.274550773,494561.5164148591,1877.1906,780.023298130008,1924772.670288341,785445.5097092128,0.37909,100000,0,690093,7209.496447973255,0,0.0,0,0.0,33213,346.3643961554534,0,0.0,34068,351.76556623485163,1617505,0,58020,0,0,0,0,0,61,0.6372753865440869,0,0.0,0,0.0,0,0.0,0.06005,0.1584056556490543,0.3187343880099916,0.01914,0.3349101229895931,0.6650898770104068,24.387901108306156,4.43886749924884,0.3176420695504665,0.2334605597964376,0.2230703986429177,0.2258269720101781,11.498352391730869,5.961472099649917,20.29854206776323,12207.404263940783,53.4926166101724,13.149548264545937,16.943574882385516,11.75268112529445,11.646812337946502,0.5642493638676844,0.7674841053587648,0.7142857142857143,0.594106463878327,0.1136150234741784,0.7376788553259142,0.910411622276029,0.8723958333333334,0.7411764705882353,0.1359223300970873,0.5011567379988433,0.6816860465116279,0.6597845601436265,0.5470514429109159,0.1082654249126891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002126969979338,0.0042069196224923,0.0065248054227931,0.0086530844386666,0.0110734876910405,0.0132651918515275,0.0153830470462306,0.0177816793581446,0.0198012716975731,0.0218675457365452,0.0237809567758806,0.0258219579083597,0.0276863245401045,0.0295702525320172,0.0316595463645181,0.0335962454903501,0.0354595243764817,0.0373601070395071,0.0392540075264569,0.0412903763424059,0.056377002276382,0.0703326146568145,0.0844609478255396,0.0970736990420912,0.1094532609268729,0.1247236531728318,0.1372453310696095,0.1489513467475779,0.1585685128391447,0.1688395300177048,0.1825782470505845,0.1947243659822269,0.2063612927086619,0.217643454282838,0.2274023899994493,0.2380635575366465,0.2479228088984186,0.2564483290025759,0.2651363863295965,0.2726710422322257,0.2794571894630895,0.2865276251490565,0.2922902333498829,0.2979403281592206,0.3033218480054353,0.309223402552961,0.3145609206905179,0.3185458243294776,0.3220714017675755,0.3263789126853377,0.3257623610681791,0.3252772014674159,0.3241011235955056,0.3230607574165503,0.3217422211690831,0.3193164479707049,0.3178056278079924,0.3182264076907985,0.3188605676729495,0.3187137623163661,0.3188237714884304,0.3188580222555441,0.3198423843558089,0.3200224089635854,0.3216588088136246,0.3223218007503126,0.3233435792349727,0.3265344664778092,0.3281831589297001,0.3328045685279188,0.337086847503989,0.3417486048365665,0.3452343205022513,0.347941466373493,0.3502381619501261,0.3533223374175306,0.3574908647990256,0.3672078572860293,0.3735070575461455,0.3803030303030303,0.0,2.282869650736598,55.02529194839816,177.2348171711614,258.573973080626,fqhc4_100Compliance_implementation,46 -100000,95888,44731,422.482479559486,6081,62.07241782079092,4753,48.98423160353746,1806,18.479893208743533,77.4394230829848,79.71875828229986,63.39129033748679,65.07685037412534,77.21136347883514,79.48963237477605,63.307315820886224,64.99417469972077,0.2280596041496636,229.1259075238088,0.0839745166005627,82.67567440456958,151.21458,106.41905163576196,157699.1698648423,110982.65855556686,384.50917,252.35205084303496,400445.7179209077,262621.2569279107,374.6686,182.06300952288768,386089.4376772902,186419.7253386708,3366.44561,1549.3174084205907,3477218.723927916,1582165.9523825618,1103.79423,488.2810537668682,1140778.960871016,498870.5091011048,1764.7728,741.7945340954934,1809171.345736693,751682.1106655616,0.37987,100000,0,687339,7168.14408476556,0,0.0,0,0.0,33191,345.54897380276986,0,0.0,34368,353.7773235441348,1622154,0,58219,0,0,0,0,0,72,0.7508760220256966,0,0.0,1,0.0104288336392457,0,0.0,0.06081,0.1600810803696001,0.2969906265416872,0.01806,0.3367843137254901,0.6632156862745098,24.380220025487525,4.325213288365893,0.321060382916053,0.2417420576478013,0.2274353040185146,0.2097622554176309,11.537417500960215,6.118012596390765,19.26820752947275,12170.855719764337,53.90326096330431,13.648020929034429,17.35581493146616,12.012531280667742,10.88689382213597,0.5768988007574164,0.7876414273281114,0.709043250327654,0.6003700277520814,0.1063189568706118,0.7470542026708562,0.9347826086956522,0.8467336683417085,0.7846153846153846,0.1144278606965174,0.5146551724137931,0.7047619047619048,0.6604609929078015,0.5420219244823387,0.1042713567839195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0043779642466253,0.0067357145030888,0.0091177694971011,0.0113937816988016,0.0135324881463543,0.0158390628978864,0.0181864545083639,0.0202893220546769,0.0223817999549908,0.0246726367343593,0.0267386263364182,0.0289783587150872,0.0310878695544758,0.03324845098302,0.0352422452604188,0.0372753701155608,0.0393637964977722,0.0414326498832078,0.0432959876832173,0.0573397125196743,0.0722711552727538,0.0851709911834307,0.0979916643045363,0.1101567351922611,0.125649254676745,0.1379898326625714,0.1491213157950657,0.1593118444614991,0.1694327629931623,0.1820663857597385,0.1940927358368264,0.2055331675048608,0.2167666371671747,0.2253996525716296,0.2346613545816733,0.245408549904159,0.2548297241441279,0.2626976575596937,0.2699298141331931,0.276599184672772,0.2833092046887405,0.2897511050180821,0.2954809361345544,0.3009854847322685,0.3066069097983205,0.3116912343873073,0.3155273822075992,0.3207449627130911,0.32415962515465,0.3234278187707485,0.3218468128337841,0.3201146679407549,0.3186513547046772,0.3187088547535733,0.3175551751543681,0.3154825864357499,0.3166475691602554,0.3175165692672039,0.3178396654506629,0.3188432870673068,0.3194901396796627,0.3197060174552136,0.320002669098512,0.3214362502687594,0.3229347797877034,0.3242677824267782,0.3282121599301941,0.3307857986521225,0.3346314216033357,0.3378890392422192,0.3420525261048412,0.3449849924962481,0.3487101669195751,0.3520489872821479,0.3535413453553209,0.3481881264456438,0.3487231869254341,0.3513139695712309,0.3553875236294896,0.0,2.3227561099469045,55.23976121592902,180.07807964513876,259.28986898675566,fqhc4_100Compliance_implementation,47 -100000,95715,44904,423.622211774539,6153,62.67565167424124,4898,50.336937784046384,1911,19.43269080081492,77.34647984393533,79.69662349623427,63.33814763576003,65.07464735325894,77.10629759030664,79.46380272084424,63.24722545490444,64.98979791656753,0.2401822536286886,232.82077539002444,0.0909221808555926,84.84943669141387,151.86028,106.79864577465904,158658.8100088805,111579.8420045542,385.06196,252.41626755668267,401453.429452019,262869.41185465467,374.42735,182.4115492482061,385740.18701352976,186418.31423531976,3511.47224,1612.803966090041,3609439.575824061,1625771.1080708788,1192.79655,528.6583897668125,1221614.8775009145,527746.1763269153,1883.1749,800.1629111459475,1916249.09366348,791439.6900574449,0.38013,100000,0,690274,7211.764091312752,0,0.0,0,0.0,33184,345.8183147886956,0,0.0,34289,352.8705009664107,1616361,0,58036,0,0,0,0,0,75,0.7626808755158543,0,0.0,0,0.0,0,0.0,0.06153,0.1618656775313708,0.310580204778157,0.01911,0.3317315144938769,0.6682684855061231,24.14626834767109,4.3483015582150575,0.3207431604736627,0.2274397713352388,0.2272356063699469,0.2245814618211515,11.138825394996436,5.722612255349431,20.34254304235253,12232.535383962344,55.65219343851501,13.232912845417136,17.870665236076025,12.332903641267428,12.215711715754413,0.5779910167415272,0.803411131059246,0.7218332272437937,0.605570530098832,0.1163636363636363,0.7344931921331316,0.927860696517413,0.8817966903073287,0.7619047619047619,0.1346938775510204,0.5201342281879194,0.7331460674157303,0.6628919860627178,0.5598141695702671,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812639254608,0.0050380642479903,0.0070833460184085,0.0093252879868348,0.011654158276893,0.0141716892001954,0.0166258919469928,0.0187285030465712,0.0210362768447629,0.0232510519795644,0.0252667616519234,0.0274156795927165,0.029568400057574,0.0314138282642057,0.0338722491049596,0.0361550387596899,0.0383189762279466,0.0404942729083665,0.0426208717527573,0.0446847072057996,0.0592829250976215,0.0723466610843625,0.0848389465953205,0.0979272486355175,0.1101211501354899,0.1253714297799443,0.1366944638954315,0.1477704565534419,0.158339828943013,0.1693376354690364,0.1827411714039621,0.1952475204689747,0.2069407762452856,0.21763220878004,0.2268065037432802,0.2369053286538312,0.2466152164700109,0.2553373377426829,0.2635974717156701,0.2715943323826214,0.2791068949560388,0.28649280785873,0.292717285792078,0.2985167687861965,0.303344306903631,0.3079471422061848,0.3119658654387567,0.3157083927480139,0.3196695801021864,0.3246314009406542,0.3236174400733411,0.3224687073986863,0.321059012603265,0.3207375271149674,0.3202670751111574,0.3187003587966512,0.3169824461433749,0.3174389603570491,0.3190820389261974,0.3199992859947878,0.319883106665168,0.320666021450157,0.3217747010698552,0.3218859138533178,0.3226854749410235,0.3225882414505874,0.3265708489299083,0.3295468848332284,0.332104616464806,0.3343233931329452,0.3379234873010807,0.3409006326758467,0.341053160107952,0.3434520631530776,0.3470099981135635,0.3504283674440742,0.3495412844036697,0.353646150721105,0.3542713567839196,0.3493312352478363,0.0,3.2245207256380137,56.9389640834452,180.8483707612948,271.3127238069469,fqhc4_100Compliance_implementation,48 -100000,95729,44919,425.4719050653407,6084,62.18596245651788,4759,49.00291447732662,1953,19.96260276405269,77.41222784566315,79.7694035041723,63.350809200748486,65.09037217514775,77.16986359512595,79.53040610552921,63.26097986081163,65.00472945002622,0.2423642505372072,238.9973986430931,0.0898293399368554,85.64272512153082,152.33108,107.112062505704,159127.41175610316,111890.92386393256,387.18457,254.19308256575505,403771.364999112,264846.39196665067,379.47025,184.94083927970084,392066.0719322253,189814.20236066877,3402.86821,1567.039120353177,3506621.243301403,1588885.6671992564,1161.01983,519.706621599612,1196592.631282057,526670.739034138,1911.71614,799.524940644252,1955719.8132227436,800753.9994650211,0.37928,100000,0,692414,7233.064170731962,0,0.0,0,0.0,33372,347.8778635523196,0,0.0,34672,357.87483416728475,1611972,0,57785,0,0,0,0,0,65,0.6685539387228531,0,0.0,0,0.0,0,0.0,0.06084,0.1604091963720734,0.3210059171597633,0.01953,0.3297705124174788,0.6702294875825212,24.241559368441774,4.415392501630056,0.3229670098760244,0.2256776633746585,0.2286194578693002,0.2227358688800168,11.30808483602971,5.829679786311591,20.69767614386849,12136.018301258524,53.84592249638084,12.774985986411767,17.349658826441193,12.175966505993038,11.545311177534842,0.567135952931288,0.7960893854748603,0.697462589459987,0.5772058823529411,0.1358490566037735,0.7370030581039755,0.9156010230179028,0.8557457212713936,0.7455197132616488,0.2096069868995633,0.5027528252680382,0.7276720351390923,0.6400709219858156,0.519159456118665,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888393761393,0.0045710231591749,0.006999959420525,0.0091904297668372,0.0111631879136632,0.0132844709115895,0.0155023747885113,0.0175198718406579,0.0196523285403317,0.0219344933469805,0.0239608100352545,0.0262071938901207,0.0284462995137296,0.0306681496127862,0.0326887756154941,0.0348858843959315,0.0370186283951,0.0390209993359893,0.0409423604757548,0.042908931808238,0.0573078167903864,0.0713762504708886,0.0846787306582743,0.0970575549407197,0.1095810910625725,0.1252301830881574,0.1364721865480752,0.1478208090639009,0.1585089556704997,0.1687577139790716,0.1814839572192513,0.1935333672618596,0.2050095793782112,0.2155181852022159,0.2250839988983751,0.2353626210307997,0.2447109313007812,0.2539421517390521,0.2623684240407871,0.2697677617551984,0.2760856977417487,0.2825896148579854,0.2889262300901711,0.2940936912333656,0.2998943649145812,0.304993534880857,0.3098991212170456,0.3146652443360764,0.3196197217665371,0.3235986687188392,0.3227641730962764,0.3218735863798988,0.3210640836667368,0.3208218152499424,0.3201004653911501,0.3183707018585323,0.3170796947525765,0.317129252144418,0.3177927239376337,0.3182875095404604,0.3187089328592967,0.3186163843027935,0.3196863203120111,0.3199759834552692,0.3207813659540852,0.3224057888321187,0.3241948287593558,0.3281430760091298,0.3308892845920184,0.3339894496496339,0.3376412110257569,0.3374015956041634,0.3413687308246196,0.3447545571439376,0.3460143242489071,0.3437169389914188,0.345811320754717,0.3482089253552131,0.3465940054495913,0.3523845571536714,0.0,2.7663408044774958,56.66350857516249,172.96532252692126,260.0185727739496,fqhc4_100Compliance_implementation,49 -100000,95742,45150,427.52397067117874,5944,60.89281610996219,4616,47.75333709343862,1820,18.6647448350776,77.32373385663094,79.69443743853748,63.321321634088775,65.07554957704983,77.09400801118925,79.46461381541754,63.23647070312775,64.99278242358021,0.2297258454416919,229.8236231199411,0.084850930961025,82.76715346961794,151.27178,106.37253421591193,157999.16442104822,111103.10357821216,383.30709,251.3679596271352,399871.8430782728,262065.72460296965,367.41914,178.36462802490783,381017.5262685133,184143.5800446938,3314.21789,1506.5138428123662,3427158.9480061,1539163.510955899,1097.82658,485.2185498362284,1131871.132836164,492165.7440575804,1785.44754,751.623257377168,1831735.539261766,757166.208302148,0.38234,100000,0,687599,7181.780200956738,0,0.0,0,0.0,33079,344.98965971047187,0,0.0,33480,347.0368281422991,1621406,0,58219,0,0,0,0,0,72,0.7415763196925069,0,0.0,2,0.0208894737941551,0,0.0,0.05944,0.1554637233875608,0.3061911170928668,0.0182,0.3278347213324792,0.6721652786675208,24.797708814739494,4.423911278406385,0.3275563258232236,0.2255199306759099,0.2224870017331022,0.2244367417677643,11.206883241741862,5.684984573885406,19.533034160909207,12263.713820262055,52.426621546158174,12.528875863847784,17.06360904757204,11.41156237466155,11.422574260076791,0.5517764298093587,0.7829010566762729,0.6818783068783069,0.5589094449853943,0.1225868725868725,0.7243642329778507,0.917948717948718,0.8798955613577023,0.6899563318777293,0.1382488479262673,0.4898439799823373,0.7019969278033794,0.6147032772364924,0.5213032581453634,0.1184371184371184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025126646403242,0.0047156895555082,0.0068412505075111,0.0092067556856289,0.0115578707471919,0.0137314223431022,0.0157773426345204,0.0181487647197001,0.0204309101878457,0.0225408367043883,0.024869244180084,0.0268668672780864,0.0290728776593555,0.0311208664378973,0.0331127878531394,0.034746200765016,0.0369231087911177,0.0388035234429308,0.0407794044252204,0.0431480015004376,0.0578439049856434,0.0715878049546296,0.0844347935548841,0.0971610093721402,0.109693474066029,0.1255762317614717,0.1377558056884607,0.1496626870118538,0.1600734791524265,0.1699227964829509,0.1828439764419608,0.1952013673290568,0.20734571391293,0.2172444327834443,0.2271267351563015,0.2379149228282291,0.2474970455102905,0.2563664753260466,0.2648112458904886,0.2730216115414097,0.279815612833162,0.2867572334684437,0.2933564946114577,0.2983705867563782,0.3044639172755298,0.309874596565572,0.3151862464183381,0.3196614914736574,0.3242682974230076,0.3286632102478859,0.3275439588550502,0.3258055632057284,0.3251480124048492,0.3241674747094664,0.323093173061188,0.3203114223972781,0.3180703447621157,0.3170595665797201,0.3174259350855349,0.3181518269522264,0.3202419747537176,0.32131769916754,0.3226842425641779,0.3230324489064181,0.3236910616141162,0.3245717274748267,0.3251553061750308,0.3280108767824959,0.3314745535399167,0.333719860850094,0.3355196770938446,0.3400792376057394,0.3426449114341947,0.347535697835099,0.3529467143664093,0.3518915060670949,0.3575019040365575,0.3610942249240121,0.3662822624931356,0.371824480369515,0.0,1.7421590914319478,53.81401729080187,177.6229574023149,250.77787401107105,fqhc4_100Compliance_implementation,50 -100000,95781,45297,429.5737150374291,6075,62.20440379615999,4802,49.56097764692371,1939,19.857800607636168,77.38153749659537,79.72286307024214,63.350937847410606,65.08287943925212,77.14105823535222,79.48448935203565,63.26057040094216,64.99580193424701,0.2404792612431521,238.37371820648912,0.0903674464684485,87.07750500511224,151.855,106.93212051150752,158543.97009845378,111642.30955148466,389.35553,254.8958624388601,405927.9919817082,265546.1951851971,378.10926,183.44149607318164,391337.8645033984,188875.97766457376,3441.53031,1562.9734285766915,3555340.923565217,1594135.376085332,1125.85578,494.4336451159202,1161540.430774371,502321.2001902184,1897.47888,801.0936308829379,1945615.226401896,806651.0389959357,0.38292,100000,0,690250,7206.544095384262,0,0.0,0,0.0,33513,349.2759524331548,0,0.0,34601,357.79538739415955,1614234,0,57956,0,0,0,0,0,66,0.6890719453753875,0,0.0,0,0.0,0,0.0,0.06075,0.1586493262300219,0.3191769547325103,0.01939,0.3389857120427069,0.6610142879572931,24.480161957264524,4.376500276380779,0.3206997084548105,0.2394835485214494,0.217201166180758,0.222615576842982,11.177226710932878,5.781925703186357,20.679932231139198,12247.45767868144,54.21137836534326,13.65439816768347,17.31036457181204,11.534380696578795,11.712234929268948,0.5647646813827571,0.7869565217391304,0.7103896103896103,0.5647171620325983,0.1159962581852198,0.7142857142857143,0.9223057644110276,0.8727735368956743,0.7119341563786008,0.1087866108786611,0.5107709750566893,0.715046604527297,0.6547515257192676,0.52,0.1180722891566265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104194940144,0.0047843979970401,0.0070106732681303,0.009404547901242,0.0114789434085039,0.0133656361655995,0.015696986993925,0.0179630328948039,0.0198961760918882,0.022018949393251,0.0241325599983604,0.0262058488416255,0.0281005161529128,0.0300970973753848,0.032182864687558,0.0343559169671733,0.0361988140697277,0.0385620102002736,0.0405144293698448,0.0425308179243711,0.0572686764966763,0.0719216047187768,0.0850307687469205,0.0982788332212508,0.110506960031191,0.1262272386206313,0.1385847966850711,0.1499712943077675,0.1613306012678491,0.1723583510193581,0.1847569836912643,0.1968567812834629,0.2083826998119544,0.2193941116041179,0.2295888060194046,0.2391191222223452,0.2481181206856174,0.2570937134634409,0.2652059020335023,0.2730820287466813,0.2797765673247059,0.2859614665170221,0.2930200087560494,0.2989265861606287,0.3036625054646136,0.3082872519920687,0.3119491980949285,0.3163711749294126,0.321409157973753,0.3256221891032827,0.3242868489425575,0.3229023383768913,0.3224833727877353,0.3213397710188505,0.3203639553381603,0.3184281427959096,0.3164134747624844,0.316943380161771,0.3174754472264302,0.3189270011926164,0.3192117858211187,0.3201357242903079,0.3209243961100073,0.321558720293322,0.3238287250384024,0.3252083333333333,0.3261457059141467,0.3287169042769857,0.3322611097514072,0.3361028684470821,0.3407400689279884,0.3434669773846724,0.3471740911095709,0.3541460443158455,0.3536986558887113,0.3579357581483231,0.3593251253989968,0.3594941790445604,0.3592152528322741,0.3553687428353076,0.0,2.194713446469241,55.86462264097834,177.7356087483043,264.82213378748384,fqhc4_100Compliance_implementation,51 -100000,95865,44928,425.2438324727482,6104,62.56715172377823,4783,49.39237469357951,1883,19.28753976946748,77.37299817448195,79.67358235015506,63.35320242165369,65.05658572506698,77.1383981578253,79.43990674416871,63.26723673306216,64.97315155444598,0.2346000166566426,233.67560598634896,0.0859656885915356,83.434170621004,151.29532,106.49503442513654,157821.22776821573,111088.5457937063,387.19337,253.68893039707623,403382.6213946696,264120.27349670685,375.01853,181.7689666413564,387573.41052521777,186785.31735247985,3389.45731,1528.868496668766,3500043.3109059613,1559612.92813954,1132.10434,498.9089214056848,1165801.679445053,505541.75679211033,1833.982,760.676650452699,1880289.427841235,766195.674793711,0.37992,100000,0,687706,7173.692171282533,0,0.0,0,0.0,33341,347.25916653627496,0,0.0,34287,354.1542794554843,1618478,0,58125,0,0,0,0,0,64,0.6571741511500548,0,0.0,2,0.0208626714650811,0,0.0,0.06104,0.1606654032427879,0.3084862385321101,0.01883,0.3300970873786408,0.6699029126213593,24.64331441122293,4.3903791158854535,0.3194647710641856,0.2400167259042442,0.2253815596905707,0.2151369433409993,11.394951999888342,5.996954596282998,19.91980445133162,12207.479311469086,53.79534631638317,13.668078481592405,17.108189931339325,11.910718860479989,11.108359042971443,0.5638720468325319,0.7709059233449478,0.6884816753926701,0.5918367346938775,0.1185617103984451,0.7190553745928339,0.8719211822660099,0.8409703504043127,0.7233201581027668,0.1717171717171717,0.510267229254571,0.715633423180593,0.6395851339671564,0.5515151515151515,0.1058965102286401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00259266761191,0.0047229570170371,0.0071006157248207,0.0094125053307069,0.0113148852245694,0.0134568403908794,0.0155738790985904,0.0179101735909132,0.0202004720595898,0.0223259050074692,0.0244454689821218,0.0268090738403767,0.0290015929294486,0.0309000329380764,0.0329677126716424,0.0352038498079226,0.0369446915930393,0.038662411141738,0.0407069721074165,0.0426667498985611,0.057607890977718,0.0715039550265932,0.0847990278752579,0.0970356914094904,0.1090120258629767,0.1251201453362485,0.1376350921805467,0.149086811387749,0.1595871843582574,0.1703114787472275,0.1832131712041321,0.195510257019952,0.2069576368813441,0.2180677184121049,0.2271136833766119,0.2360948056263152,0.2447064860884892,0.2535212852128521,0.2624557582357745,0.2702071381951839,0.278380441319332,0.2853015148856525,0.2919768501532671,0.2976890731134618,0.3032668471465164,0.3082001946268215,0.3135836160384562,0.3184078969127243,0.3225539186495094,0.326162414707862,0.3255090497737556,0.3235508692719589,0.3223455101724308,0.3207241598704378,0.3201236273941663,0.3180537693673831,0.3163975941753719,0.3171827844114945,0.3183695058695058,0.3199735898213744,0.3203734540760005,0.3206228906388774,0.3218335495209004,0.321806255856499,0.3225535791341036,0.3238377689325945,0.3249885948905109,0.3277863411872031,0.3288835804117192,0.3314199754562368,0.3348563673377064,0.3386251785997777,0.3400239098974391,0.3438071995118975,0.3457256086053972,0.3490321057601511,0.3551644988523336,0.3542903952488224,0.3493437587266126,0.3462870334744132,0.0,1.9570993442922529,53.93193490193663,174.865451330602,272.68263199100863,fqhc4_100Compliance_implementation,52 -100000,95800,44765,423.16283924843424,6068,62.05636743215032,4741,48.9874739039666,1929,19.822546972860128,77.39816222968327,79.72725656584109,63.35848721039546,65.07927745220857,77.15824019578046,79.4879315290302,63.26962017947564,64.9930987118629,0.2399220339028005,239.32503681088235,0.0888670309198218,86.17874034567308,152.21008,107.00520740184815,158883.1732776618,111696.45866581229,384.14558,252.11325709058065,400480.7724425887,262660.0149970202,372.30837,180.7872691548398,385771.8475991649,186511.78461662345,3394.62387,1543.2740915328193,3509603.267223382,1577544.3886937716,1157.29918,507.0983090271672,1197616.9519832986,519155.3306620643,1893.8565,791.6030973661165,1947791.8162839247,800172.4732006876,0.37798,100000,0,691864,7221.9624217119,0,0.0,0,0.0,33112,345.1043841336117,0,0.0,33980,351.7954070981211,1616333,0,57976,0,0,0,0,0,64,0.6680584551148225,0,0.0,0,0.0,0,0.0,0.06068,0.1605375945817239,0.317897165458141,0.01929,0.3244052308177091,0.6755947691822909,24.63606542728208,4.362724465290197,0.3163889474794347,0.2370807846445897,0.2172537439358785,0.229276523940097,11.2067779665998,5.845940940900232,20.433730792938228,12141.43989034997,53.60728190765654,13.422333083108237,16.850409248546658,11.445447992455954,11.889091583545683,0.5522041763341067,0.7962633451957295,0.6846666666666666,0.558252427184466,0.1113155473781048,0.7194641449960599,0.9184652278177458,0.8442211055276382,0.7136563876651982,0.1409691629955947,0.4910714285714285,0.7241867043847242,0.6270417422867514,0.5143212951432129,0.1034883720930232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293026270482,0.0046315064050591,0.0067260479649393,0.0092005849378503,0.0115793219132821,0.0138620310623486,0.0159779895042543,0.0179059706974656,0.0203516586806158,0.0225291589932473,0.0243829974694956,0.0266185057105622,0.0290015929294486,0.03103128859613,0.0331350454137756,0.0352491608572166,0.0372834014379558,0.0392264620489423,0.0412578982374459,0.0432161117995605,0.0582649888353262,0.0718909817291904,0.0851313665052106,0.09814925749598,0.1100686281744483,0.125120246942292,0.1365478033983156,0.1477173566031712,0.1583641296221135,0.1683430556747019,0.1807920557476278,0.1934262754301906,0.2047629912106298,0.2148155431018473,0.2243592561656482,0.2354086679427743,0.2454896188755826,0.2548748397544025,0.2622766717713119,0.2700953951512236,0.2770936672563506,0.2842262774575934,0.2905856452987406,0.2956620730976633,0.3008279110420511,0.305409498947161,0.3101560156015601,0.3144789190700748,0.3187848664880467,0.3239967823185768,0.3231794319558487,0.322114326584507,0.3215296851890978,0.3206144340017613,0.3188672251464156,0.3171477027914865,0.3155457935655142,0.3152953897572004,0.3156286280133852,0.3157275320970042,0.3159203980099502,0.3171319621441131,0.3183796451288919,0.3195094760312151,0.3201330398162327,0.3201746407131162,0.3218846447886287,0.3231264856749656,0.3259393390674513,0.3287552634685766,0.3314127574630251,0.3366519174041298,0.3382774523245668,0.3411229135053111,0.3426908271523801,0.3450410763186093,0.3441499085923217,0.3434650455927052,0.340683572216097,0.338403041825095,0.0,1.8955078613840493,55.900034763287096,175.1253970862107,261.1374552527551,fqhc4_100Compliance_implementation,53 -100000,95882,44817,424.07334014726433,6099,62.41004568114975,4816,49.68607246407042,1905,19.544857220333327,77.3584022892406,79.64160428022333,63.35300198276878,65.04244791704505,77.12683715643509,79.40974364474086,63.26702017193396,64.95823769551326,0.2315651328055139,231.8606354824766,0.0859818108348235,84.21022153179081,151.81716,106.78005264900416,158337.49817483992,111366.10901838107,384.20152,252.0355901209169,400171.7319204856,262329.4571670563,376.63801,183.2002431085893,389181.1914645085,188286.5466032604,3464.64346,1586.09991596314,3576506.2785507184,1617281.8735144667,1168.6149,515.8124687326036,1206144.3858075552,525304.9881443889,1867.9451,782.1812963354679,1917577.6266661105,790335.5530593389,0.38077,100000,0,690078,7197.159007947268,0,0.0,0,0.0,33176,345.4558728437037,0,0.0,34369,354.8632694353476,1615453,0,58030,0,0,0,0,0,60,0.615339688366951,0,0.0,0,0.0,0,0.0,0.06099,0.1601754339890222,0.3123462862764387,0.01905,0.3346315625486836,0.6653684374513164,24.470452156749865,4.393570443850692,0.3220514950166113,0.2338039867109634,0.2176079734219269,0.2265365448504983,11.31958840994806,5.902107175702024,20.20724475117062,12194.614233166129,54.72455962625183,13.611929358841731,17.433710835257724,11.711500242811976,11.967419189340385,0.5664451827242525,0.8037300177619894,0.6989039329464861,0.5925572519083969,0.1081576535288725,0.728110599078341,0.927400468384075,0.8794871794871795,0.7154471544715447,0.1380753138075313,0.5065452475811042,0.7281831187410587,0.6382428940568475,0.5548628428927681,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022982919742024,0.0044887578401272,0.0065421793064275,0.0087827066982099,0.0110388290302907,0.0131387455602031,0.0151391662251925,0.0172879800091794,0.0193377780954228,0.021365992291886,0.0236264804938221,0.025712264586174,0.0277609457002886,0.0299757231617495,0.0321423786802972,0.0343609969645032,0.036577670656143,0.0385962730344298,0.0404922629556547,0.042385842254752,0.0567330045974375,0.0708360323463652,0.0848465807938003,0.097704649502289,0.1109835478502664,0.1268736333963599,0.1383443189284276,0.1492142143206516,0.1597480920104605,0.1704793962523048,0.1838690572336186,0.196036648025355,0.2071818399252027,0.2180534146688093,0.2270163285502226,0.2363161505942763,0.2463420618280769,0.2556356318091362,0.2639548996699146,0.2712703194986998,0.2784656329553344,0.2857995156931787,0.2918536764444654,0.2976590233138252,0.3034259732049505,0.3082882060517843,0.3121687154618247,0.3165579451635918,0.3213789882056804,0.3254707002327057,0.3234695116194381,0.3218346449096597,0.3213792130870117,0.320854067816225,0.320271355886816,0.3186070048457339,0.3167773744035257,0.3174884944115713,0.3170819296475537,0.3185922832565942,0.3196478741337329,0.3206290873886155,0.3211733892090099,0.3218850554165177,0.3223285563143214,0.3232717156748043,0.3262451671594268,0.3293745299573828,0.332271725055122,0.3330692127887167,0.334608553081022,0.336843219217948,0.3383453916325888,0.3408584811487368,0.3415074612679403,0.3436413760038355,0.338988326848249,0.3385650224215246,0.3433618548164504,0.3527841342486651,0.0,2.119545093110224,57.142670546872736,179.64120744484396,264.12982917815907,fqhc4_100Compliance_implementation,54 -100000,95735,45117,427.5970125868282,6088,62.35963858567922,4738,48.94761581448791,1883,19.313730610539512,77.38965647392791,79.75647614257812,63.34469261111818,65.09398653922426,77.15229171639888,79.5198656303361,63.25604320858016,65.00769537502747,0.2373647575290363,236.61051224202367,0.0886494025380244,86.29116419679406,152.16058,107.01042962086126,158939.34297801222,111777.7506876913,385.84553,252.96064785566475,402475.54186034366,263670.7144524434,372.2166,180.90952087206847,385085.3919674101,186152.2530865419,3401.16649,1557.3315134575553,3516347.605368987,1590369.6698778432,1153.6088,514.452009235892,1190456.155011229,522824.8908297819,1844.97902,782.9597099737558,1893573.4057554707,789373.6520219402,0.38242,100000,0,691639,7224.515589909646,0,0.0,0,0.0,33286,347.10398495847915,0,0.0,33980,351.27173969812503,1615676,0,57988,0,0,0,0,0,74,0.772967044445605,0,0.0,0,0.0,0,0.0,0.06088,0.159196694733539,0.3092969776609724,0.01883,0.3240188383045526,0.6759811616954474,24.612188552906478,4.448597164883642,0.3237653018151118,0.2344871253693541,0.2186576614605318,0.2230899113550021,11.48808921924364,6.014412182643576,20.13500100131592,12255.306107661778,53.4302267311554,13.124049286746226,17.272211022753364,11.444236939647574,11.589729482008243,0.5574081891093289,0.7857785778577858,0.6910039113428944,0.5617760617760618,0.119205298013245,0.7387173396674585,0.9164556962025316,0.8797953964194374,0.7379032258064516,0.1921397379912663,0.4915107913669064,0.7136871508379888,0.626421697287839,0.5063451776649747,0.0990338164251207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802771250303,0.0048356193546424,0.0070226001887577,0.0094276367921653,0.0116471868737729,0.0139607347969532,0.0162518734515349,0.0183440348710201,0.0204738735791969,0.0223148024935256,0.0242009881301379,0.0264046731754391,0.0285479311231046,0.0306341001297444,0.0326549977824306,0.0349314289848182,0.037121408231944,0.0389662935336286,0.040782389989399,0.042863989664298,0.0574023804552098,0.0713396062505887,0.0849202102546347,0.0976276892325495,0.1097737222427343,0.1254164507292515,0.1375388565305494,0.1486873330566463,0.1592943035946944,0.1696516665951696,0.1826933430965046,0.1956401795856547,0.2069306715379262,0.2174483580653274,0.2272492215608393,0.2373733458833951,0.2466179668767077,0.2554451662208636,0.2638233693186972,0.2720229785091433,0.2800476460316175,0.2862737304778827,0.2925981533805431,0.2989654924686893,0.3039973779725415,0.3088284204432071,0.3126360565494808,0.3172838406838738,0.322362716295443,0.326906338195342,0.3268400306727833,0.3256603825474746,0.3251199639756272,0.3241522671170586,0.323287874295879,0.3217052486820995,0.319845279444269,0.3209438466821467,0.3212902568283734,0.3217317185779735,0.3230585957858685,0.3237352097173631,0.3241386489018424,0.3247916435159462,0.3261087746128847,0.3267570580457833,0.3271748370643241,0.3292266215241857,0.3329591693559702,0.3349628393148126,0.3385114451500891,0.3405754550792719,0.3431329253674847,0.3460348600316909,0.3468422516924789,0.3517605633802816,0.3539809638918265,0.349402390438247,0.3469553450608931,0.3560864618885097,0.0,2.1029637432348465,55.23464384903687,174.35081849629026,261.67420039049034,fqhc4_100Compliance_implementation,55 -100000,95764,44684,423.3428010525876,6117,62.539158765298026,4731,48.83881207969592,1904,19.527170961948123,77.34687979821054,79.70662476588124,63.33382307926016,65.08143771801036,77.11390107591241,79.4746582297827,63.24727812017797,64.99781830490737,0.2329787222981281,231.96653609853968,0.0865449590821896,83.61941310299414,152.00856,106.91776140284696,158732.4673154839,111647.13399904656,385.2626,252.39778326346325,401718.9967002214,262977.07203486,365.63276,177.45292174855012,378324.9342132743,182633.4429071278,3406.55796,1546.9627048494858,3518077.147988806,1576357.1251745762,1120.76133,492.644263900464,1156808.8738983334,500962.7161896988,1862.4245,774.5064648007275,1911272.5241217995,779839.8225215013,0.38011,100000,0,690948,7215.112150703814,0,0.0,0,0.0,33266,346.7900254793033,0,0.0,33477,346.10083121005806,1619555,0,58098,0,0,0,0,0,61,0.6369825821811954,0,0.0,1,0.0104423374128064,0,0.0,0.06117,0.1609271000499855,0.3112636913519699,0.01904,0.3315175097276264,0.6684824902723735,24.660748328784518,4.360689133920653,0.3236102303952652,0.2263792010145846,0.2282815472415979,0.2217290213485521,11.406594582932872,5.938712657342177,20.06815283213145,12196.603205660282,53.607727873312,12.892004728895108,17.38270201336908,12.057905867668907,11.275115263378892,0.5510462904248573,0.7740429505135388,0.6988896146309601,0.5481481481481482,0.1105815061963775,0.72890625,0.8875,0.8738532110091743,0.6895161290322581,0.1326530612244898,0.4850767893364242,0.706408345752608,0.6292237442922375,0.5060096153846154,0.1055099648300117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025029386729358,0.0049284062791546,0.007228426395939,0.009421018933504,0.0117197037519329,0.0136046109040549,0.0156183097155673,0.0178644344630461,0.0201897323710412,0.0220445190752155,0.0240118931665555,0.0260393670873078,0.0283319621554915,0.0303685847909842,0.0325097529258777,0.0344756292965317,0.0363478206840846,0.0383318636858758,0.0404781704781704,0.0423096948870144,0.0573972402563513,0.0711117619984099,0.084245512497903,0.097041357927374,0.1093511229146247,0.1243818420051566,0.1360543496693234,0.1467179825214229,0.1579340359260997,0.1679019750653356,0.1814299697742209,0.1936198493575542,0.2053145607230931,0.2155727858468931,0.2249502905667424,0.2346452162559886,0.2443440932151419,0.2534066378845116,0.2618628775067812,0.2691761363636363,0.2760173140132401,0.2829292267365662,0.2897761573882266,0.2960365415048194,0.3020226301476301,0.3075739863409832,0.3123350387150845,0.3163047347810608,0.3218060676628501,0.3252108592514496,0.3254356712564544,0.3244596006820306,0.3246504824326985,0.3236706615324709,0.3228107114261143,0.3214525993883792,0.3198627646286898,0.3208995620294277,0.321664476266876,0.3228533214444939,0.3232932102809862,0.3245315835243892,0.3260081701057924,0.3270814682184422,0.3282284668544872,0.3304652561654941,0.33229413951892,0.3353270673122567,0.3388348145013401,0.3412581275679126,0.3428702220187686,0.346501969971249,0.350322091701402,0.3525519129839507,0.3537052611905429,0.3582142435337191,0.3589430273407668,0.3604319478402608,0.3643475831237776,0.3696850393700787,0.0,2.1928257213730538,56.19698607136986,173.55848966047574,260.6039811703456,fqhc4_100Compliance_implementation,56 -100000,95750,44810,424.2715404699739,6094,62.40208877284595,4783,49.33681462140992,1908,19.54046997389034,77.36211040614715,79.7238351749605,63.32787542470121,65.07580405328008,77.12594469451756,79.48930437542603,63.24021846194193,64.99088263618579,0.2361657116295958,234.53079953446831,0.0876569627592829,84.9214170942929,151.53644,106.6427719391085,158262.6005221932,111376.26312178432,383.65825,251.73722994700935,400064.2506527415,262287.7284041873,375.41111,182.6733240485689,388078.1096605744,187680.0771837085,3444.1229,1575.5129061942882,3555952.313315927,1604611.573595484,1177.61489,521.1970311049321,1216904.0731070496,531443.71491432,1870.65658,781.2038405656417,1918467.592689295,787153.241688964,0.37972,100000,0,688802,7193.754569190601,0,0.0,0,0.0,33122,345.2845953002611,0,0.0,34432,355.5718015665796,1617186,0,57989,0,0,0,0,0,59,0.6161879895561357,0,0.0,1,0.010443864229765,0,0.0,0.06094,0.160486674391657,0.3130948473908763,0.01908,0.3355314806092008,0.6644685193907992,24.42399702329924,4.403895970428801,0.3165377378214509,0.227263223918043,0.2331172904035124,0.2230817478569935,11.417483256930051,5.973111187641324,20.2538047722782,12170.982076342932,54.151140478146026,12.93546506512177,17.173308802621673,12.350826319743762,11.691540290658816,0.5651264896508468,0.7773689052437902,0.7179656538969617,0.5695067264573991,0.1274601686972821,0.7320872274143302,0.9306930693069309,0.8709677419354839,0.7049808429118773,0.1342592592592592,0.503858245212918,0.6866764275256223,0.6624662466246625,0.5281030444964872,0.1257344300822561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023200915878949,0.0047254953657695,0.0070043650390823,0.0092666917300872,0.0117898377498601,0.0139426406485517,0.0162339648807945,0.0182042799967328,0.020296315988589,0.0224358974358974,0.0243559767003035,0.0266244838424718,0.0288680157611547,0.030966292597974,0.0327997440422743,0.034789710930069,0.0369779747543258,0.038720521253748,0.0408095381640905,0.0429235063744687,0.0578386446905564,0.0720084531207499,0.0853661094448056,0.0977377183664454,0.1099192034259435,0.1244725069010375,0.1372861037734848,0.1487766965483465,0.15900033122843,0.1694815291405286,0.1817055833189729,0.1934440067529544,0.2046428649130822,0.2145810544738569,0.2246409508611676,0.2351507362309848,0.2451648204395211,0.2529111958686333,0.2615428247305729,0.2696456792102792,0.2766216028519839,0.2828131580178747,0.2896804733727811,0.2949386668585201,0.3010652123744398,0.306310637720823,0.3109458342724063,0.3166422707312416,0.3204341181650996,0.3250280435499835,0.3232726096798534,0.3219242207291552,0.3213335023450374,0.3204214664604622,0.3198377559207203,0.3183871609929404,0.317024510735322,0.3175889619871048,0.3176679228552427,0.3189159351128047,0.3199902869097429,0.321175497992284,0.3225153399841382,0.3234855067620257,0.3246189974120579,0.3254467068356534,0.326536399988656,0.3305715357678839,0.3362510897994769,0.3387866125280876,0.3410148660250328,0.3444976076555024,0.3460456392622694,0.3462724742345595,0.3484848484848485,0.355644591091209,0.3542805100182149,0.3549870077953228,0.3499593385741393,0.3530549110595514,0.0,2.393729293186912,56.14790247054012,177.1466533987755,262.57387832846507,fqhc4_100Compliance_implementation,57 -100000,95759,44659,422.75921845466223,5961,60.996877578086654,4663,48.08947461857371,1940,19.83103415866916,77.32840490063373,79.69047108157481,63.31625382636724,65.0653482411725,77.08581361773632,79.44938852408471,63.2252646663605,64.97781175695668,0.2425912828974077,241.08255749010252,0.0909891600067354,87.53648421581772,153.1046,107.7014805325182,159885.33714846647,112471.39227907373,386.60222,253.75732798103985,403121.58648273273,264393.2246379346,368.26444,179.01046315268346,381123.70638791134,184242.81065391365,3377.24559,1552.6161181775024,3484100.5962885995,1578661.450284049,1136.66211,507.63968633656265,1170840.3805386438,513959.6448757425,1904.00906,803.292682596559,1948638.081015884,805524.0776191298,0.37853,100000,0,695930,7267.515324930294,0,0.0,0,0.0,33425,348.4267797282762,0,0.0,33671,348.165707661943,1607349,0,57731,0,0,0,0,0,68,0.7101160204262784,0,0.0,0,0.0,0,0.0,0.05961,0.1574776107574036,0.3254487502096964,0.0194,0.3376519513755598,0.6623480486244402,24.38888266876324,4.364519216354782,0.3085996139824147,0.2363285438558867,0.218957752519837,0.2361140896418614,11.042733481706234,5.767466164102626,20.701567848794017,12107.66033240102,53.06041972857298,13.325601022347303,16.244299975742575,11.389322090077773,12.101196640405323,0.55093287583101,0.8021778584392014,0.6879777623349548,0.5533790401567091,0.1180744777475022,0.7039106145251397,0.9204819277108434,0.8426966292134831,0.6867469879518072,0.1244635193133047,0.4947214076246334,0.7307132459970888,0.6371191135734072,0.5103626943005182,0.1163594470046082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090937648835,0.0045132761313616,0.0069345733663647,0.0092583182585011,0.0115257064963072,0.0138832301173402,0.0163770598792625,0.0184281455466165,0.0207630497454456,0.0231539296169672,0.0253908051868176,0.0274968426888996,0.0293198132417367,0.0312506437591413,0.0333319574011392,0.0352893749418562,0.0370274522794087,0.0387567152724481,0.0408400793939456,0.0428270877163746,0.0574285535352691,0.071477878882962,0.0841171474409386,0.0971197308945653,0.1092202318229715,0.1251096665081126,0.1369739521466146,0.1475008514986376,0.1579200358909172,0.1684879942518257,0.181450961383099,0.1932132963988919,0.2049136627242756,0.2149302707136997,0.2249218371570742,0.2353208366569175,0.2443739953563136,0.2525694858776778,0.2604583030523256,0.2677548026225299,0.2757171632979093,0.2818733839547916,0.2883298988607025,0.2946294629462946,0.3001155085415526,0.3049376017362995,0.3097247476330804,0.314621060546203,0.318609900373599,0.3230612757076624,0.3224605924947075,0.3208279965293558,0.3189352367786257,0.3187856884712685,0.3178511388488031,0.316200380391435,0.3140235204615336,0.3145479668377418,0.3151915410542885,0.3165650315635115,0.3172148814544091,0.3173768677365799,0.3172598385680231,0.3179500939093104,0.3184036542853708,0.3192154411190123,0.3199395856487418,0.323098175881448,0.3259362968148407,0.3273339940535183,0.3307730763986729,0.3329463296216159,0.3345631917953849,0.3340888485947416,0.3345790899747734,0.3373338039769384,0.3459377372817008,0.3446453972769762,0.3503730312240951,0.349317738791423,0.0,2.318771594397495,54.64622992249988,178.02409799575446,252.80091088351764,fqhc4_100Compliance_implementation,58 -100000,95735,45073,426.1555335039432,6073,62.4118660886823,4771,49.30276283490886,1895,19.47041311954876,77.31464774318667,79.68017434825174,63.30648041847581,65.05594547029146,77.07738431449184,79.44365816350157,63.21804938531946,64.97028965890875,0.2372634286948312,236.51618475017244,0.0884310331563469,85.65581138270772,150.34272,105.773659726408,157040.49720582858,110485.88262015772,385.7994,253.6230621168379,402491.4190212566,264426.6217700331,380.21776,184.71109057047244,393796.835013318,190420.14908088744,3403.66624,1558.0946431387358,3519667.791298898,1591876.240661985,1141.74612,508.2802403520313,1177793.8893821486,516119.87146496674,1860.39542,784.9538673871094,1913140.1263905573,792546.6348410342,0.38103,100000,0,683376,7138.204418446754,0,0.0,0,0.0,33213,346.3832454170366,0,0.0,34680,358.9282916383768,1617466,0,58076,0,0,0,0,0,74,0.7625215438449888,0,0.0,0,0.0,0,0.0,0.06073,0.1593837755557305,0.3120368845710522,0.01895,0.3270558694287508,0.6729441305712492,24.62530565730055,4.362555132127506,0.321106686229302,0.2301404317753091,0.2230140431775309,0.2257388388178579,11.15444533058886,5.7637930868717016,20.334938454480024,12263.26143449046,54.17304659652672,13.050550837583891,17.1437839053084,11.973636177319817,12.005075676314616,0.5615175015719975,0.7905282331511839,0.6886422976501305,0.5874060150375939,0.1216341689879294,0.7255054432348367,0.9081885856079404,0.8808933002481389,0.7231404958677686,0.1554621848739495,0.5010043041606886,0.7223021582733813,0.6200177147918512,0.5474452554744526,0.1120381406436233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023502000709112,0.0048869016840547,0.0073996630057451,0.0098160756020729,0.0120046797904267,0.0140185011614165,0.0163536385060344,0.0184905352147189,0.0207204628626336,0.0229413209942262,0.0251197030748567,0.0271685559388861,0.0292747153275661,0.0311798042246264,0.0331857265248402,0.0352527654295461,0.0372893992896271,0.0393076539930267,0.0414985650709146,0.0436512897445514,0.0588345845035864,0.07265914466936,0.0854175409148132,0.0980765388215251,0.1109646532815927,0.1258264134976463,0.1370139242655799,0.1481773273145388,0.1588426430663332,0.1693742220696167,0.1826367322291235,0.1952826202368441,0.2074559062237861,0.2182517505506427,0.2281587651598677,0.2381005251645996,0.2478942246384106,0.2571960297766749,0.2658688629021249,0.2730447168012497,0.2797764015494166,0.2864392873886545,0.292754069981147,0.2979254706108336,0.3031390243605804,0.3082968354820801,0.3127480313974887,0.3170346802418072,0.3218963553530751,0.3259978112102952,0.325361363085785,0.3241228492442268,0.3231892621982103,0.3215600236717137,0.3205503469384723,0.3185884082832986,0.3170480639797292,0.3176806927032844,0.3184259132576276,0.320147867704836,0.3213140574900152,0.3220131256424448,0.3225981847839725,0.3238773323810374,0.3249627886877611,0.3264143581740148,0.3292568203198495,0.3316174393421011,0.3354908683786999,0.33863942345767,0.3401546157344247,0.3449098621420997,0.3503442177730057,0.3504240849698173,0.3504716981132075,0.3553444180522565,0.3598403438747313,0.3615621788283659,0.3585690515806988,0.3521840873634945,0.0,2.069919012258887,56.57298563776089,177.4970062217814,262.0461126582536,fqhc4_100Compliance_implementation,59 -100000,95819,44794,423.9660192654901,5844,59.883739133157306,4606,47.53754474582285,1814,18.57669147037644,77.3504688262772,79.68328255402474,63.33176974345843,65.06029959175208,77.12585688425959,79.46047901871503,63.24922464471465,64.9808782086649,0.2246119420176029,222.8035353097084,0.082545098743779,79.42138308717972,152.31832,107.18888316729398,158964.63123180164,111866.00065466556,386.77256,253.91060099436507,403128.4400797337,264469.1355517851,366.87421,178.56238093397494,379751.78200565645,183870.075116852,3298.80921,1493.4960476865117,3406882.768553209,1523054.385988542,1083.26792,474.5011577381922,1117066.9595800417,481759.6037641272,1775.97278,739.5607679463492,1820746.4072887425,742956.0063293756,0.3792,100000,0,692356,7225.665055990983,0,0.0,0,0.0,33404,348.0624928250138,0,0.0,33472,346.2570053955896,1612303,0,57895,0,0,0,0,0,73,0.7514167336332043,0,0.0,0,0.0,0,0.0,0.05844,0.1541139240506329,0.3104038329911019,0.01814,0.3422643358928279,0.657735664107172,24.379385693214505,4.396378035360047,0.3221884498480243,0.2275293095961789,0.228831958315241,0.2214502822405558,11.30463652235454,5.907940950749468,19.248569528636565,12161.607279277929,52.04555795273112,12.576577862720116,16.800572837071346,11.458951977026857,11.2094552759128,0.5555796786799826,0.7709923664122137,0.6967654986522911,0.5806451612903226,0.1029411764705882,0.7266553480475382,0.8858695652173914,0.8471502590673575,0.775330396475771,0.1370558375634517,0.4967911318553092,0.7088235294117647,0.6438979963570127,0.5272067714631197,0.094775212636695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0045425509262545,0.0067492134375317,0.0089308393363339,0.0110767540736822,0.0131490497239819,0.0153995206771709,0.0178498488685564,0.0199071612612981,0.02205024261409,0.0240251017708643,0.0261436566206294,0.0284242243498112,0.0304222451081359,0.0322800214512602,0.0345305009092411,0.0364677142206488,0.0386143234973811,0.0405499495983455,0.0427744581624367,0.057343445196691,0.0710551628957383,0.0842773754755142,0.0966104900395057,0.109507353870791,0.1254121575921542,0.1374041754583143,0.1487895162319704,0.1593330344371143,0.1687774563377263,0.1811745464718414,0.1928698058546288,0.2045079296111231,0.2143434829176594,0.2239088349172826,0.2344496017547163,0.2451432205943068,0.2541007582746439,0.2619707117720513,0.2698530843133438,0.2772854531571762,0.2841476389229888,0.2904591800525182,0.2964245073965383,0.3019557823129252,0.3066916560831556,0.3115107192947305,0.3162633723892002,0.3209163114318661,0.3243350326210412,0.323079620239508,0.3225188472511267,0.3212527333004161,0.3203455061056774,0.3202735856070181,0.3186735725888013,0.3167651672397129,0.3180347257584966,0.3188494910159186,0.3192442992089427,0.3195075863875325,0.3205990883438246,0.3205093357308633,0.3220520605438228,0.3231541769779678,0.3244094898304643,0.3259633966124815,0.3291841725716435,0.333856783919598,0.3366712843855136,0.3399764471419512,0.3419276600231994,0.3464906793444264,0.3502564876282438,0.3556864945753835,0.3601033227662322,0.3614146933819065,0.3636545782408335,0.3650107991360691,0.3647058823529411,0.0,2.1021085205842565,51.50218559618542,179.63277965090555,251.09071209820476,fqhc4_100Compliance_implementation,60 -100000,95714,44442,420.53409114654073,6048,61.903169860208536,4784,49.36581900244479,1852,18.95229537998621,77.30949638025908,79.66823009299942,63.31695901961641,65.05922922062152,77.07510962351914,79.43461342323148,63.23105005876843,64.97562923816824,0.2343867567399371,233.61666976794027,0.0859089608479806,83.59998245327915,150.87468,106.20127377265692,157630.50337463693,110956.65605100282,385.72124,252.43283277236503,402386.3489144744,263129.3883573615,370.92578,180.19903237694848,382918.0684121445,184861.30767673405,3434.86236,1569.4448569693004,3547902.908665399,1599181.414099784,1145.46271,506.2813660669632,1181543.818041248,513838.8171471213,1826.1061,763.7394595333296,1871150.364627954,769383.4926552249,0.37806,100000,0,685794,7165.022880665316,0,0.0,0,0.0,33311,347.3890966838707,0,0.0,33901,349.5726852915979,1619286,0,58119,0,0,0,0,0,68,0.7104498819399461,0,0.0,0,0.0,0,0.0,0.06048,0.1599746072052055,0.3062169312169312,0.01852,0.3362873872448172,0.6637126127551828,24.77673229480511,4.423830098337494,0.3269230769230769,0.2238712374581939,0.2219899665551839,0.2272157190635451,11.433730415288483,5.897918095977726,19.812387747512386,12177.876161052189,54.508391164377095,12.803871598224552,17.84874706625654,11.837387753185304,12.018384746710687,0.5507943143812709,0.7675070028011205,0.6732736572890026,0.5828625235404896,0.1297148114075437,0.7227958697378872,0.9074550128534704,0.8746928746928747,0.7316017316017316,0.1379310344827586,0.4893617021276595,0.6876832844574781,0.6024200518582541,0.5415162454873647,0.127485380116959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020963935953656,0.0045413997242721,0.0069292265238211,0.0092934915088973,0.0117521476134804,0.0138630187181287,0.0160016307394384,0.0178427429644676,0.0202056334573402,0.0222492861602071,0.0245594973298209,0.0267367599646795,0.0290179948586118,0.0310495041347847,0.0331256961346479,0.0352733321623771,0.0372789087484346,0.0392114160081305,0.0410002182521123,0.0428428574404699,0.0574635827285542,0.0718509602804961,0.0849381162156492,0.0975750820223773,0.1097495386237806,0.1255843469063987,0.1379687201578847,0.1492394324217877,0.159776965968083,0.1699029646705623,0.1824713727095474,0.1945352588390672,0.2066594124047878,0.217536411086916,0.2273412816363376,0.2372808087077966,0.2457696216952787,0.2544010812637269,0.2628924530873733,0.2705849990830735,0.278444673388357,0.2854736053912392,0.291525584258755,0.2968555118487959,0.3019477757931445,0.3067219118789538,0.3116280233736658,0.3159803983962324,0.320257626415779,0.3245711415959612,0.3226480742259143,0.3217882482606599,0.3215620987880754,0.3199485050554728,0.3186790290655276,0.3159994476070645,0.3143496761082179,0.3151462315360068,0.3168225259480012,0.316774748307119,0.3165899050662656,0.3165786233467053,0.3178519593613933,0.318971320856335,0.3198375673781151,0.32072020278569,0.3217570704031634,0.3248534140344241,0.3274255371523016,0.3317080905379157,0.3356847039548536,0.3378471669056343,0.3382501260716086,0.342344406261932,0.3417446366127965,0.3443519619500594,0.349684760879594,0.351440329218107,0.3555986696230598,0.3596116504854369,0.0,2.3431826484789564,55.01598089157781,188.8290567470602,256.50804431776515,fqhc4_100Compliance_implementation,61 -100000,95748,44986,427.1003049672056,6055,62.2258428374483,4773,49.41095375360321,1883,19.384216902702928,77.40440741590693,79.76267044030365,63.3594678928421,65.09981114738459,77.17404173242817,79.53112280811145,63.27469127351891,65.0167417347772,0.2303656834787659,231.54763219220345,0.0847766193231862,83.06941260738654,152.55306,107.31406851629704,159327.6726406818,112079.69724307246,389.30237,254.7224144686245,406181.0272799432,265624.61301397893,373.49703,180.7165350185423,387598.0908217404,186767.10911169904,3466.1512,1550.382811364476,3589831.986046706,1588987.698296022,1174.07474,509.3516996511135,1215358.252913899,521116.0333908944,1844.26012,760.9027010701004,1899729.9160295776,770702.6387085244,0.3803,100000,0,693423,7242.166938212808,0,0.0,0,0.0,33572,350.17963821698623,0,0.0,34184,354.5139324058988,1614292,0,57858,0,0,0,0,0,65,0.6788653548899194,0,0.0,2,0.0208881647658436,0,0.0,0.06055,0.1592164080988693,0.3109826589595376,0.01883,0.3301472892510185,0.6698527107489816,24.533176997217367,4.427241031543848,0.3192960402262728,0.2262727844123193,0.2292059501361827,0.2252252252252252,11.083819424630724,5.697659106302434,19.73906499165078,12181.901141840815,53.444966669093326,12.926666584782948,16.930057116380155,12.041172608158622,11.5470703597716,0.5707102451288498,0.8,0.7007874015748031,0.5978062157221207,0.1283720930232558,0.736053288925895,0.9250645994832042,0.8661202185792349,0.7304347826086957,0.1880733944954128,0.5151175811870101,0.7301587301587301,0.6485319516407599,0.5625,0.1131855309218203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043982771725361,0.0065838862174609,0.0086426649063118,0.0108690126381503,0.0130496742671009,0.0153070063694267,0.0175912982255645,0.0197502860879516,0.0218060885136863,0.024054278422892,0.026171830899182,0.0283434939498925,0.0302505948150665,0.0323469324583668,0.0342054393781205,0.0362453916573464,0.0381639004149377,0.0400216164534466,0.0419118642655529,0.0568588759774903,0.0711811550978976,0.0847135829146255,0.0975871313672922,0.1096729311816849,0.1251929705838814,0.1365724287911738,0.1478011859011891,0.1593599111225056,0.1687593150552738,0.1811632439883266,0.1934192445439889,0.2050835843946793,0.215078453884424,0.2249518675394686,0.2354120069978076,0.2454703677258122,0.2542978895647578,0.2624696622587157,0.2703497688046514,0.2781109531898175,0.2855525203707595,0.2918412882052251,0.2979191055259574,0.3035638600612746,0.3086175545508158,0.313036963036963,0.317787845331912,0.3223748773307164,0.3264366606600287,0.324861107383451,0.3238078252757504,0.322136246822733,0.321230538792793,0.3203558687252972,0.3185043876383059,0.3167224397019825,0.3174361742145462,0.3176502629921527,0.319297683850998,0.3200276578647381,0.3201539676273194,0.3215741185813706,0.3222628388017118,0.3234025214515124,0.32559228148649,0.3271515667092017,0.3307875297358207,0.335186933864932,0.3365513966922529,0.3391375323085294,0.3389857453235123,0.3398368883312421,0.3404852160727824,0.3482768282432054,0.3571596520103456,0.3613149847094801,0.3666464768826973,0.3721575152523572,0.3722858270825108,0.0,1.7432977139514294,52.91176301030399,175.3890885375107,272.5108976775333,fqhc4_100Compliance_implementation,62 -100000,95754,44718,423.00060571882113,6030,61.90864089228648,4703,48.59327025502851,1830,18.78772688347223,77.33232137485312,79.69786846496581,63.31916690730778,65.07088657392157,77.10883952430838,79.47366656171064,63.23716075344819,64.99047548308324,0.2234818505447435,224.20190325516387,0.082006153859595,80.4110908383251,151.87106,106.82767068262628,158605.2175366042,111564.49850091516,386.75973,253.63990929975049,403374.6579777346,264353.217345678,371.73559,180.3799439058598,384610.9718654051,185607.3709626202,3345.05229,1517.911600663674,3461382.678530401,1553325.3300235048,1107.32515,484.0200247853857,1147383.8586377592,496439.6419840274,1797.66642,746.6328469536229,1848408.108277461,756396.4034909431,0.37823,100000,0,690323,7209.328069845646,0,0.0,0,0.0,33344,347.661716481818,0,0.0,33952,350.98272657016935,1615655,0,57966,0,0,0,0,0,72,0.7414833845061303,0,0.0,0,0.0,0,0.0,0.0603,0.1594268037966316,0.3034825870646766,0.0183,0.3297570211423162,0.6702429788576838,24.77619215669704,4.235571605733559,0.3231979587497342,0.242185838826281,0.2107165638953859,0.2238996385285987,10.90959005442796,5.619462994700528,19.38968378673182,12119.199066864809,53.25119984317465,13.63674490160026,17.168372885410616,11.01540376582192,11.43067829034184,0.5496491601105677,0.7664618086040387,0.6763157894736842,0.562058526740666,0.1206077872744539,0.7331189710610932,0.9354066985645934,0.8401015228426396,0.7035398230088495,0.1504854368932038,0.483665799363978,0.6685159500693482,0.6190053285968028,0.5202614379084968,0.1133412042502951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024220681827394,0.0045136881396504,0.0068028592315815,0.0090352874217416,0.0112212094083177,0.0136204806389502,0.015899078077833,0.0179481158562108,0.0202136905066203,0.02253276003276,0.0245830215178324,0.026897727039402,0.0289357326478149,0.0308354618109911,0.0330461697188547,0.0349959691588978,0.0371409637805711,0.0391737817846064,0.0410903384704916,0.0432106480034993,0.0574020334453746,0.0714382866529258,0.0847413187343338,0.096783690292191,0.1090914841797842,0.1238908102505526,0.1360352235955652,0.1474350787569178,0.1582875937039489,0.1683177870697973,0.1811641807118625,0.1936681057335454,0.2045662199791159,0.2141583822741341,0.2238311638296233,0.2341341895482728,0.2438137313965682,0.2518084352394559,0.2599110445458052,0.2678949718879181,0.2756143273635985,0.2823925705864464,0.2887766328715588,0.2943177870158498,0.3000971345313258,0.3045004866389877,0.3081936452339254,0.3131840890888982,0.317987082745499,0.3225789438987408,0.3219249034723063,0.3219211043737711,0.3216537205898908,0.3213811612605333,0.3202468915991572,0.3182645399073238,0.3164560970203603,0.3164185466946485,0.3167396900625671,0.3177310024973243,0.3182176212445144,0.318768305232328,0.3196107627456326,0.3212159197743654,0.3220943114493521,0.3236153124022113,0.3256303716773863,0.3288698446705945,0.3324203799290705,0.3341165226394807,0.3366278010566588,0.3412084688816596,0.3437737281700835,0.3429966432712847,0.3472338837578132,0.3499648629655657,0.3516649088443574,0.3541500399042298,0.3552060737527115,0.3616698292220114,0.0,1.983117532720449,54.81352596986152,174.2678622174093,261.6843701364282,fqhc4_100Compliance_implementation,63 -100000,95712,45262,429.1729354730859,6019,61.60147107990638,4692,48.28025743898362,1865,18.99448345035105,77.41699606751023,79.77038636135067,63.36600846061516,65.10081549482373,77.18807125150042,79.54713058559899,63.280337083549256,65.02068822373823,0.2289248160098083,223.25577575168157,0.085671377065907,80.12727108550166,152.07632,107.00709501553816,158889.5018388499,111801.12735658868,386.97801,253.8431266095329,403577.2316950853,264477.7630908693,377.11372,184.10419245410017,389106.2771648278,188607.35625128075,3378.94551,1528.9218410013589,3478023.811016382,1545405.6810177907,1110.89977,487.63122797582895,1138451.5734704111,487411.7933213639,1830.37504,763.0094661874175,1866024.1766967569,757272.0516767716,0.38268,100000,0,691256,7222.250083584086,0,0.0,0,0.0,33284,346.9888833166165,0,0.0,34477,355.38908391842193,1614589,0,57914,0,0,0,0,0,68,0.710464727515881,0,0.0,1,0.0104480106987629,0,0.0,0.06019,0.1572854604369185,0.3098521349061305,0.01865,0.3349769365357086,0.6650230634642914,24.41690899666933,4.43021247732253,0.3213981244671782,0.2265558397271952,0.2286871270247229,0.2233589087809036,11.286313940813711,5.671209881165253,19.70046976328925,12231.434935350311,52.91752794955863,12.70956501999229,17.103283389899058,11.76309646366915,11.341583075998123,0.5598891730605285,0.7873941674506115,0.7175066312997348,0.5629077353215284,0.099236641221374,0.7245901639344262,0.9047619047619048,0.8592964824120602,0.7465437788018433,0.0922330097087378,0.5020161290322581,0.7168674698795181,0.6666666666666666,0.5163551401869159,0.1009501187648456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0046196395465459,0.0068362544628367,0.0091186953563703,0.0113164958516349,0.0134774730755919,0.015696986993925,0.0177281077770973,0.0199072086986735,0.0222820137702435,0.024162806902488,0.0262525913914489,0.0283825736548859,0.0302877386665568,0.0322284464527044,0.0342771520099204,0.0364127677637777,0.0385429199684686,0.040588296434882,0.0428092182030338,0.0574543404028695,0.0716580337989849,0.0856965996243954,0.0989913650753583,0.1109669662068092,0.1258302661082201,0.1377503394433129,0.149555591037309,0.1603683878756797,0.1705580163232912,0.1832416191942796,0.1955011685276551,0.2065959389538675,0.2167373066503539,0.2260152061176057,0.2376721801183824,0.2474170502546727,0.2556498286228016,0.2641053836823072,0.2718369961903236,0.2787891397066472,0.2850950979017711,0.2902142950013593,0.2966154435348748,0.3023980786259264,0.3078542410439492,0.3129936019194241,0.3182395690399959,0.3225798112963681,0.3267986772591333,0.3254301075268817,0.3244650166195094,0.3236490003798697,0.3228831067512316,0.3220119995247713,0.3198752064599009,0.3185392194012884,0.318351324828263,0.3178524037970807,0.3188114943345291,0.3194705937179606,0.3212937475422729,0.3224224976008679,0.3245555555555555,0.3249079343823234,0.3262955854126679,0.3263814111646358,0.3307838791246527,0.334541652143604,0.3366161118770928,0.3412984670874662,0.346569066301543,0.344904954814584,0.3499432033320712,0.3532472359007712,0.3548387096774194,0.3551444043321299,0.3574121849573328,0.3611859838274933,0.3640104751215862,0.0,2.912898109071949,52.501013513029314,177.0835132488046,258.8140708684504,fqhc4_100Compliance_implementation,64 -100000,95694,44885,425.6693209605618,6078,62.35500658348486,4739,48.93723744435388,1804,18.454657554287625,77.3508434030137,79.74026551841254,63.31502979323547,65.0824149972537,77.11840476911159,79.51022899602061,63.22892696954881,64.99994585738911,0.232438633902106,230.0365223919272,0.0861028236866587,82.46913986458537,152.3445,107.09701992788312,159199.6363408364,111916.1284175425,386.3083,253.19869881216115,403111.6579931866,264012.44468008564,371.48137,179.75343259267257,384301.6385562313,184904.6560723047,3391.61167,1536.9625293401612,3504851.871590696,1566905.0954624594,1133.93501,498.983128131668,1167000.6583484858,503548.8917640079,1767.66106,742.4345691229954,1809884.1515664516,744551.6807592486,0.38038,100000,0,692475,7236.347106401655,0,0.0,0,0.0,33203,346.3749033377223,0,0.0,34024,351.6834911279704,1613625,0,57905,0,0,0,0,0,71,0.7314983175538696,0,0.0,0,0.0,0,0.0,0.06078,0.1597875808402124,0.2968081605791379,0.01804,0.3363593676631711,0.6636406323368289,24.591896963722103,4.249123769414042,0.3283393120911584,0.2331715551804178,0.224519940915805,0.2139691918126187,10.91053151674661,5.683123402277718,19.239817109061303,12217.30804896216,53.62237175095489,13.169504756262276,17.552696326115523,11.892231711976423,11.007938956600668,0.5627769571639586,0.7701357466063349,0.6844473007712082,0.5883458646616542,0.1232741617357002,0.7153167602245389,0.899749373433584,0.8074074074074075,0.6972111553784861,0.1614583333333333,0.5083046964490263,0.6968838526912181,0.6411815812337098,0.5547355473554736,0.1143552311435523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0046445122755067,0.0068318630785004,0.0090251239938206,0.011332885714867,0.0134267842953485,0.0154240071815483,0.017699205425169,0.0198402552643151,0.0218451076381065,0.0239872833555532,0.0262217292167375,0.0285223509082306,0.0307335668658561,0.0326119487703437,0.0346413877230343,0.0365094329848844,0.0386224219714976,0.0406407655900556,0.0424675812033523,0.0573323584708585,0.0711473624693736,0.0845614477054205,0.0971101549596557,0.1097784810126582,0.1249629723668063,0.1365479324106309,0.1482179556804992,0.1591098569871096,0.1688182081576151,0.1822885228938518,0.1943987355475685,0.2062369428969359,0.2169159891005788,0.2273377810071118,0.2382077040782383,0.2483363851547496,0.2574674337698015,0.2667075553132524,0.2735401334342114,0.2802607507584003,0.2866460572847139,0.2922798037961185,0.2981464819147021,0.3032612527197365,0.3079179608539171,0.3121301960195644,0.3167501971658992,0.3204419889502762,0.3254767403497196,0.3242744347732356,0.3237665446740596,0.3225688383354919,0.321638440103377,0.3208361129641983,0.3182061354569493,0.3164124851837218,0.3170292229065653,0.3177421831021954,0.3195788123363087,0.3205578821417888,0.3215896335099155,0.3212237492440199,0.3227400186940846,0.3231667903569462,0.3237934613388687,0.3249138272023507,0.3286859424222575,0.3318235663019999,0.3354393124828317,0.3379089968045367,0.3416407608409294,0.3426769883880634,0.3450522806485831,0.349175103112111,0.3574564005220073,0.3616600790513834,0.3613930348258706,0.3618403247631935,0.3709244342155735,0.0,2.32299450809998,54.69319290633663,179.3424657638053,258.7485090026676,fqhc4_100Compliance_implementation,65 -100000,95718,45193,428.7908230426879,5984,61.315531039094,4681,48.25633632127708,1843,18.836582460979127,77.26691653433518,79.6266218715753,63.2951211478972,65.03885032955047,77.03400591314974,79.39557511324801,63.20813774504154,64.95514807981982,0.2329106211854394,231.04675832728103,0.0869834028556582,83.70224973064921,151.41236,106.55482940539606,158185.8793539355,111321.62122630652,385.60527,253.0745125492772,402238.1683695857,263778.57095768524,369.79959,179.95202709282003,382332.9990179486,184856.32455797383,3375.14276,1532.5913159186366,3486259.6063436344,1561280.559475373,1110.81043,491.1653300696709,1147435.2786309784,500069.9973564751,1806.15152,763.9082472219446,1849927.8923504464,767523.84447858,0.38326,100000,0,688238,7190.267243360705,0,0.0,0,0.0,33281,347.0507114649282,0,0.0,33814,349.1610773313274,1613339,0,57922,0,0,0,0,0,65,0.6790781253264798,0,0.0,1,0.0104473557742535,0,0.0,0.05984,0.1561342169806397,0.3079879679144385,0.01843,0.3421932197994589,0.6578067802005412,24.40971859371784,4.389373805538689,0.3202307199316385,0.2292245246742149,0.2262337107455672,0.2243110446485793,11.300346889405256,5.79449932132466,19.80287409922399,12290.328518198989,53.26117985366499,12.840372806047576,17.000319390184334,11.898726431319156,11.521761226113949,0.5637684255500961,0.7903075489282386,0.7024683122081388,0.5816808309726157,0.1161904761904761,0.73328025477707,0.916243654822335,0.8634020618556701,0.7479674796747967,0.1798245614035087,0.5016058394160584,0.7172312223858616,0.6462646264626463,0.5313653136531366,0.0985401459854014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0044713015441705,0.0069306327880829,0.0092136406578559,0.0114720419827919,0.013521631555904,0.0156175136347418,0.0177723788038096,0.0199032947261891,0.0219968064199148,0.0242844841725438,0.0264365573955627,0.0282482389840094,0.0302512179797501,0.0322610597556949,0.034328419921027,0.0362649766483374,0.0383561928080841,0.0404885654885654,0.0424172961708778,0.0580993452859544,0.0717313710918283,0.0852222641984636,0.0976199995791334,0.1096798016563802,0.1254193166065249,0.1378190156694551,0.1492518238457852,0.1604362703165098,0.1703842851009016,0.1828354588674119,0.1948293983161955,0.2066190403589397,0.2167436970188158,0.2259692741739954,0.2378420380751512,0.2470309319854174,0.2567584318409754,0.2658213466039493,0.273282810332374,0.280576455608288,0.287992132897833,0.2944589841668344,0.2994063680518078,0.3050301468443061,0.3101070653246497,0.3155783932823662,0.3196371466065308,0.3244894781909235,0.3294553636423797,0.328810077309834,0.3274402287261225,0.3261468862656393,0.3257588923647317,0.3243525013776566,0.3217647691150048,0.3202681876678159,0.320634083643674,0.3218909140789767,0.3236884512085944,0.3239669421487603,0.3242632632434253,0.3257502420135527,0.3262664333467941,0.327115900359999,0.3264521193092621,0.3271737573413551,0.3319097782417513,0.334824916542368,0.338108075483845,0.3405693786506002,0.3421801966367592,0.3461977910371969,0.3512561274509804,0.3550307038261691,0.3631946913141367,0.3611620795107033,0.3677719369187222,0.3829903978052126,0.3847641144624903,0.0,2.561686632237472,54.772891038303335,175.18553240566197,257.9450805715069,fqhc4_100Compliance_implementation,66 -100000,95702,44814,424.358947566404,6112,62.65281812292324,4770,49.24661971536645,1851,18.90242628158241,77.288290147924,79.65840685056143,63.294707477804174,65.04419953282165,77.05263977250785,79.42213870722716,63.207361346085015,64.95898186826803,0.2356503754161565,236.26814333427149,0.0873461317191583,85.21766455362467,151.17234,106.44987070442338,157961.52640488182,111230.56018100287,385.79301,253.24703720347304,402510.6162880609,264017.86915667914,372.85486,181.4087809153675,385472.3621240935,186381.11250129176,3441.55622,1566.225101739058,3556178.73189693,1597058.796729585,1161.77055,517.6000396834531,1196945.4974817664,524022.71616484656,1819.89668,773.7503564005701,1861567.42805793,776298.3285532199,0.37972,100000,0,687147,7180.069382040083,0,0.0,0,0.0,33366,347.99690706568305,0,0.0,34031,351.580949196464,1612447,0,57849,0,0,0,0,0,66,0.6791916574366262,0,0.0,0,0.0,0,0.0,0.06112,0.1609607078900242,0.3028468586387434,0.01851,0.3446230685188075,0.6553769314811925,24.513415859246123,4.368782964549013,0.310062893081761,0.2364779874213836,0.2215932914046121,0.2318658280922431,11.179892680639949,5.8333513807492405,20.07886752244173,12197.773035596758,54.224666122230126,13.537872391849325,16.778719753710977,11.683997595021168,12.224076381648649,0.5538784067085953,0.799645390070922,0.6808654496281271,0.575212866603595,0.1130198915009041,0.7186046511627907,0.9311163895486936,0.8443271767810027,0.7489711934156379,0.1336032388663967,0.492816091954023,0.7213578500707214,0.6245454545454545,0.5233415233415234,0.1071012805587892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268191899857,0.004349104327815,0.0063928238015992,0.0084824965968426,0.0107802457082418,0.013267623130263,0.0154972370057706,0.0177920685959271,0.0200554027946723,0.0219720616077367,0.023910058007256,0.0259489642996448,0.0282021755670251,0.0305249173540952,0.0325318975564976,0.0347243752712841,0.0368295713398219,0.0388974220598613,0.0410239340954243,0.0430758648003585,0.0568790667070508,0.0710381941536142,0.0840557502991121,0.096409252594136,0.1079537657676677,0.1238763777276625,0.1363375735309732,0.147555129434324,0.1591540863020142,0.1692469562603336,0.1817093814355181,0.1937021350347173,0.205632207690381,0.2157729949860968,0.2256828193832599,0.2361320670986065,0.2452372434148741,0.254121095952193,0.2620136518771331,0.2702780297897263,0.2777210726547277,0.2842854462736269,0.2905311613890635,0.2967901590505021,0.3018399230422658,0.3080687013468429,0.3134684447123232,0.3180327868852459,0.3225119191446796,0.3262486434980546,0.3246429197631604,0.3248503406990538,0.3242685512367491,0.3240178092323756,0.3228462743343029,0.3206555966882229,0.319553108088807,0.3195209817242684,0.320585967617579,0.3211740267182407,0.3217984624349166,0.3220503476004674,0.3227995713655369,0.3238482687708161,0.3256550532680679,0.327055461748279,0.3271506599908966,0.3309451985922574,0.3335204941044357,0.3375818939845146,0.3418229951161623,0.3441271866858085,0.3474581583401241,0.3515151515151515,0.3532301418111039,0.3564587713151133,0.3553818400481058,0.3582653670181022,0.3552350427350427,0.3519137866963954,0.0,2.24800116707128,56.7275129849756,178.84269177568004,259.3450430918423,fqhc4_100Compliance_implementation,67 -100000,95826,45144,426.8257049235072,5908,60.32809467159227,4630,47.69060588984201,1824,18.721432596581305,77.36488025655099,79.67951306420912,63.35773544642036,65.0713079427897,77.13881276606939,79.4522192242565,63.274354110660006,64.98902633189692,0.2260674904815971,227.29383995262253,0.0833813357603503,82.28161089277819,152.37398,107.17980472971551,159011.10345835157,111848.35507035205,382.16435,251.25463766485444,398182.23655375367,261585.90951328664,371.62146,181.09262044420436,382764.6567737357,185237.6973483302,3302.47521,1519.3215158549667,3408554.4319913173,1548539.772870538,1093.095,487.11143785348935,1125202.5441946862,493297.5208080825,1792.74612,756.84524419203,1841892.868323837,766653.1498591694,0.38191,100000,0,692609,7227.777429925073,0,0.0,0,0.0,32905,342.72535637509657,0,0.0,34026,350.176361321562,1617811,0,58070,0,0,0,0,0,69,0.709619518710997,0,0.0,0,0.0,0,0.0,0.05908,0.154696132596685,0.3087339201083277,0.01824,0.3285047481088041,0.6714952518911959,24.564040254604908,4.381018530792004,0.3362850971922246,0.2354211663066954,0.2025917926565874,0.2257019438444924,11.22266623696886,5.915024999604086,19.49685762449612,12247.31640324626,52.67523226297332,12.962175961209052,17.687074044639278,10.486151607722997,11.539830649401985,0.5701943844492441,0.7798165137614679,0.7026332691072575,0.5906183368869936,0.1358851674641148,0.7234878240377062,0.9251870324189526,0.847457627118644,0.7224669603524229,0.1551724137931034,0.5120643431635389,0.6952104499274311,0.6503496503496503,0.5485232067510548,0.1303813038130381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020662412640534,0.0044811225110507,0.0068390291419758,0.0089993093080892,0.0113177616660395,0.0132875819655439,0.0155558726987298,0.0177123956142679,0.0199950932286555,0.0219970315778699,0.0243205017832984,0.0266104286608581,0.028859791568172,0.0312471053200358,0.0332319744369427,0.0352117764862549,0.0371117386042759,0.0393717103899871,0.0414191967437803,0.0434470489091419,0.058543759191464,0.0722856306701785,0.085101925373447,0.0976752000336014,0.1094005033539378,0.1246291427787104,0.137451802889708,0.148665454893332,0.1593740666467551,0.1696868440217624,0.1824078655794841,0.1949714088054393,0.2063705892577785,0.2167312837874734,0.2265788982054353,0.2361267776966801,0.2456249791135221,0.2546910266919699,0.2629034084475144,0.2715819318844391,0.2789728312953918,0.2862762492850389,0.2925650689382214,0.2986929120675428,0.3039214496377119,0.3088881503637236,0.3136029595560666,0.3181991412383445,0.3228050215263682,0.3265698447601617,0.3260121511909242,0.3248457532326549,0.323963101190057,0.3235570324351658,0.322902420170066,0.320368866898485,0.3191954733488659,0.3196771170697223,0.3207046497295076,0.3215013769178498,0.3231766917293233,0.323983030687495,0.3242465609576814,0.3250280080663231,0.325839458135178,0.328513742347271,0.3278106172558827,0.3301279029571666,0.3346786930123188,0.3393611088982713,0.3426477324782409,0.3442631719711153,0.3451107715813598,0.3492417827726888,0.3537978298115363,0.3564273789649416,0.3579369981470043,0.3643076923076923,0.3635356054308672,0.3709175738724727,0.0,2.406309938093069,55.46772231351395,169.5743029005224,255.11871323567016,fqhc4_100Compliance_implementation,68 -100000,95634,45002,427.3166447079491,6092,62.41504067591024,4785,49.41757115670159,1918,19.658280527845744,77.2563444549925,79.6651826698277,63.27473565930678,65.05510262918781,77.01419299452407,79.4246582130317,63.18559177106212,64.96884654876835,0.2421514604684347,240.52445679599543,0.0891438882446564,86.25608041946009,150.6527,105.98394759073244,157530.48079135036,110822.45602059147,382.45308,251.3182111749112,399296.05579605576,262174.4580117021,373.56107,181.60891347031716,386259.4474768388,186595.6102694356,3426.62663,1577.033263527118,3542579.4069054937,1608546.148364723,1184.40457,526.5096912563926,1222369.763891503,534439.8657970941,1889.83524,795.1424357388662,1939486.960704352,802081.9409151163,0.38237,100000,0,684785,7160.476399606834,0,0.0,0,0.0,32934,343.727126335822,0,0.0,34243,353.8072233724408,1617231,0,58119,0,0,0,0,0,73,0.7528703180877094,0,0.0,1,0.0104565321956626,0,0.0,0.06092,0.1593221225514554,0.3148391332895601,0.01918,0.3298206983328091,0.670179301667191,24.54190039825581,4.34957100744042,0.322257053291536,0.2336468129571577,0.2144200626959247,0.2296760710553814,11.40572073651122,5.981568231034574,20.489421997073755,12259.990524512745,54.75484811920197,13.418295294273104,17.48116520720064,11.5014714778315,12.35391613989672,0.568234064785789,0.7889087656529516,0.7075226977950714,0.5994152046783626,0.1191992720655141,0.7304075235109718,0.9263157894736842,0.9033942558746736,0.752851711026616,0.144,0.5092618979766316,0.7181571815718157,0.642795513373598,0.546526867627785,0.1118963486454652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0044292186533959,0.0068500796638894,0.0090620015645159,0.0112829382439719,0.0133044018622087,0.0153725314183123,0.0174608688544689,0.0196182722009696,0.0221484623107341,0.0243189164229644,0.0263909728074322,0.028753796262933,0.030776051386211,0.0328908630752543,0.0348299376041224,0.037018607785207,0.0389238040824806,0.0408320412898929,0.0424002837116154,0.0577415477870094,0.071822915029804,0.0846062591204476,0.0975589216728597,0.110609290251778,0.1263624626976232,0.138175141422825,0.1501682497763768,0.1608221198550709,0.1709376945034662,0.1827659069837642,0.1948777951118044,0.2069709182006317,0.2178267730341018,0.22763967620266,0.2378510378510378,0.2466920934602436,0.2552628020194735,0.2631525111664223,0.2709502013284234,0.2776521608051854,0.2848684519063921,0.2916286076940415,0.2967982808917274,0.3023657904029027,0.3075336289635238,0.3122091929516523,0.3172482374389637,0.322377214040096,0.3274907139363657,0.3269760285066407,0.3256083589835608,0.3254850387465354,0.325487578360808,0.3245204150182876,0.3226611226611227,0.3211031060642206,0.3214321052805172,0.3230390723121655,0.32317895077371,0.3232713894915574,0.3243076555785453,0.3258881537359349,0.3264843767524281,0.3288074279512842,0.3290147320029255,0.3302539755176753,0.3341324921135646,0.337471506224794,0.3395485381044947,0.343095281472035,0.3437001594896332,0.3468678959333165,0.350072171997265,0.353698046838841,0.3551489561341778,0.3587201442091032,0.3612220447284345,0.3606290672451193,0.3615950445218738,0.0,2.396868770989354,56.02017266859752,182.1701315823636,264.6804017735706,fqhc4_100Compliance_implementation,69 -100000,95694,44705,423.5375258636905,6158,63.24325454051456,4907,50.70328338244822,1901,19.499655150793156,77.32722884548278,79.70383450208674,63.32110870231941,65.07573729031185,77.08822094305695,79.46579850571848,63.23203988445911,64.98951456244811,0.2390079024258256,238.03599636825368,0.0890688178603085,86.22272786374197,151.05926,106.23974052627716,157856.56362990366,111020.27350333057,385.41673,252.7067813439595,402204.40152987646,263522.82415194216,370.04363,180.188838777237,383372.22814387525,185717.24642418447,3509.82297,1602.3880366803503,3629171.348255899,1635906.4274461842,1177.5504,522.5466102405348,1214640.311827283,530162.9258266293,1861.7271,790.9688137394763,1910960.540890756,795744.9667119001,0.37964,100000,0,686633,7175.298346813802,0,0.0,0,0.0,33340,347.8170000209,0,0.0,33916,351.03559261813695,1617873,0,58077,0,0,0,0,0,52,0.5433987501828745,0,0.0,0,0.0,0,0.0,0.06158,0.1622063007059319,0.3087041247158168,0.01901,0.3345239944090697,0.6654760055909302,24.41773459153677,4.360655007121348,0.3175056042388424,0.2392500509476258,0.2233543916853474,0.2198899531281842,11.069798542319411,5.716629047292881,20.474581463324306,12191.605097779324,55.42076002697529,13.843039967262252,17.463037775295,12.212322462243222,11.90235982217481,0.5602200937436316,0.7708688245315162,0.6938382541720154,0.572992700729927,0.1251158480074142,0.7350890782339272,0.9093198992443324,0.9034653465346536,0.7470355731225297,0.1434599156118143,0.497787610619469,0.7001287001287001,0.6204506065857885,0.5207591933570581,0.1199524940617577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022779273897989,0.0043376473330563,0.0066957492137567,0.0085621134099149,0.0107991580317466,0.0129616242248989,0.0151530601839577,0.0172500076598613,0.0196653917738735,0.0218738159363447,0.0238437083376064,0.0259436142350947,0.0281109213963917,0.0301078814231692,0.0323229821356698,0.0345095038160044,0.0365501165501165,0.0388492644386997,0.0407530684418556,0.0428179818846999,0.0574147187232353,0.0712588825049972,0.0854643478990539,0.0985619154822895,0.1101806638050138,0.1251718958258404,0.1373510341387836,0.1479742320183144,0.1587893421080746,0.1679790589396442,0.1806958957233652,0.1932016238159675,0.2051538653990492,0.2155342142107105,0.225346996730911,0.2355919995567621,0.2446307376317199,0.2541882784459771,0.262483398980669,0.2702201038074178,0.2779070709877615,0.2852377664119099,0.291881267834097,0.2972156632426795,0.3028310258062163,0.3084704779293839,0.3129048018741465,0.3175958010599266,0.3222444058391889,0.3263003527499967,0.3252101634079531,0.3238932201989035,0.3230215827338129,0.3220895263431843,0.3214848980806428,0.3201787386944704,0.3187266155114465,0.3198976747236889,0.3200648353523289,0.3210468182142094,0.3227941588916104,0.3234382709957564,0.3237251946747048,0.3243376077923238,0.3252725041507254,0.3262696382900986,0.3260646192487726,0.3294217580066696,0.3313578341983448,0.3335585675106324,0.3365349432857665,0.3402644487097462,0.3411630990717939,0.3436207688773166,0.3438952661037852,0.3465334760375788,0.345485309952315,0.3505700325732899,0.3504013285358427,0.3547765793528505,0.0,2.2577407720612657,56.46297308193487,183.5261447783311,270.9810616063341,fqhc4_100Compliance_implementation,70 -100000,95778,44741,423.260038839817,6018,61.66343001524358,4726,48.74814675604001,1851,18.89786798638518,77.38146625236273,79.70463867647744,63.35451413110488,65.06784222426151,77.15920286435926,79.48639527257477,63.27193052966395,64.98964490017048,0.2222633880034692,218.24340390267596,0.0825836014409304,78.19732409103608,150.39728,105.87495096317858,157026.95817411097,110542.03571089244,382.58267,251.2717107750409,398826.6929775105,261730.31870614077,372.31873,180.9387841861356,385412.3285096786,186307.24112454464,3413.37731,1546.7766232329166,3522705.057528869,1574186.825371916,1154.23806,504.2123746692663,1187706.3730710605,509259.401603487,1817.71434,753.6407531743108,1857723.0679279163,753021.4650167526,0.38007,100000,0,683624,7137.589007914135,0,0.0,0,0.0,32914,342.99108354736995,0,0.0,34092,352.5757480841111,1624033,0,58256,0,0,0,0,0,71,0.7412975839963248,0,0.0,1,0.0104408110422017,0,0.0,0.06018,0.1583392532954455,0.3075772681954137,0.01851,0.32047006511037,0.67952993488963,24.35564924754265,4.438759639850691,0.3222598391874735,0.2280998730427423,0.2232331781633516,0.2264071096064325,11.623202296741344,6.099634071391358,19.55705858651028,12184.133868499068,53.57169024567885,12.80798262439748,17.45010325351459,11.659196615168671,11.654407752598114,0.5694033008887008,0.7792207792207793,0.7196323046618516,0.590521327014218,0.1233644859813084,0.7431048069345941,0.911917098445596,0.8747099767981439,0.7355371900826446,0.1714285714285714,0.505640728955742,0.7052023121387283,0.6584249084249084,0.5473554735547356,0.1116279069767441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401109693619,0.0048137338359884,0.0071616234365648,0.0093833780160857,0.0116526177717673,0.0138648533094447,0.0160021200260926,0.0182859008765395,0.0202492848385778,0.0223645441152398,0.0245156795852926,0.0265525767695732,0.0286518816928041,0.0307182343191855,0.0329501520696943,0.0349068977269206,0.0366330691061117,0.0384846662657847,0.0407438188240182,0.0428671088389333,0.0577529168666903,0.0715847852247161,0.0847439850649214,0.09780814717477,0.1100416425069843,0.12546141072694,0.1378809253582528,0.148626353156567,0.1589251193540463,0.1689733171814195,0.1819140805804028,0.1942687212760205,0.2063022605934737,0.2152779296917726,0.2248055191840058,0.2352419783726289,0.2444885976760021,0.253704641350211,0.2628662904892199,0.2706590257879656,0.2784037613053397,0.2853212190752731,0.2910968230850295,0.2971813431762619,0.3024219015692562,0.3069845922678063,0.312098327039936,0.3158704329917876,0.3203040033145165,0.3246542654871923,0.323469277951146,0.3224955338738491,0.3218256537281504,0.3212003816242157,0.3206161348835826,0.319397225029863,0.317799557382232,0.3181497927282856,0.3185089185225606,0.3186097417735936,0.3199925296479596,0.3201109733781949,0.3204825815608758,0.322180585296217,0.3228627563733947,0.323297342192691,0.3242913832199546,0.3281850867594185,0.3306091086895781,0.3351539618459589,0.3364180729450191,0.3386594948056742,0.3389587744426454,0.343141693073789,0.3446720541251644,0.3460766961651917,0.3493047158403869,0.354191736863217,0.3477905073649754,0.3469154607768469,0.0,2.243357889016253,55.73633868697674,177.61726099738027,256.18111976364867,fqhc4_100Compliance_implementation,71 -100000,95757,44613,421.98481573148695,6160,63.01367001890201,4801,49.53162693066825,1928,19.76878974905229,77.31912755708531,79.67003574974338,63.32066847763053,65.05888273537141,77.07533117157922,79.42729162853288,63.228432113771305,64.96984142834604,0.2437963855060871,242.7441212104924,0.0922363638592287,89.04130702536861,151.91814,106.7982667365786,158649.64441241891,111530.50611086252,384.45391,252.24344239885264,400887.3607151436,262819.63626651384,370.05176,179.3946775246178,383367.1272074104,184936.53648141932,3432.31177,1584.7104349738634,3544725.116701652,1615340.3828092292,1169.65604,522.7840165311197,1207507.3153920865,532021.3351369487,1888.07828,804.1611902106758,1937535.3655607423,809134.4875331761,0.37995,100000,0,690537,7211.347473291769,0,0.0,0,0.0,33123,345.26979750827616,0,0.0,33908,350.95084432469685,1616166,0,58086,0,0,0,0,0,82,0.8563342627693015,0,0.0,0,0.0,0,0.0,0.0616,0.1621265956046848,0.312987012987013,0.01928,0.3402205996582259,0.6597794003417741,24.34267452081137,4.357168560482831,0.3230576963132681,0.2274526140387419,0.2314101228910643,0.2180795667569256,11.243227536878903,5.742052425010645,20.623258189753653,12149.26129571157,54.87579567400633,13.215930561435044,17.609634693427406,12.51945055012387,11.530779869020026,0.5721724640699855,0.7710622710622711,0.7111540941328175,0.594959495949595,0.1346704871060172,0.7206870799103808,0.8915094339622641,0.8481927710843373,0.7290076335877863,0.1848739495798319,0.5147313691507799,0.6946107784431138,0.6610915492957746,0.5535924617196702,0.1199011124845488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0042866263338704,0.0066352826589829,0.0089479778179528,0.0113494218506879,0.0135040175979957,0.0159061942391027,0.0180737654699179,0.0201734115866751,0.0222661288671403,0.0242279456998728,0.0262347263579422,0.0285288219262611,0.0302352892698203,0.0323256293850598,0.0345807625130478,0.0364300799204936,0.0385668644454587,0.0409306288706928,0.043058014790126,0.0573098804739287,0.0711677877624462,0.084562294153433,0.0969081922389315,0.1090797908232118,0.1245994903084585,0.1363747255428153,0.148316041500399,0.1593464680442095,0.1690325070760785,0.1813364923805934,0.1929101044541863,0.2053742384682332,0.2155020616188903,0.2251603886743036,0.2356752805130647,0.2454195277173002,0.2540038040358794,0.2627724795640327,0.2701225799060602,0.2767586222870776,0.2833253311161336,0.2893086978679023,0.2946325648414986,0.3006947908934937,0.3058835152892358,0.3108782310025823,0.3161536991015102,0.3200498132004981,0.3242957560382644,0.3224614720832715,0.3217665615141956,0.3206604572396274,0.3197612943408798,0.3190273520045239,0.3176317202239435,0.3164597110550771,0.3175503493629264,0.3179992136348872,0.3183322895231278,0.3193758566948945,0.3212709969728746,0.3215433408245993,0.3219749652294854,0.3225021091960949,0.3239282075397758,0.326116759968011,0.3290434235368156,0.33234849284232,0.3355539693869458,0.3356092676043516,0.3380813180972628,0.3411683155838427,0.3431035798793985,0.3447559709241952,0.3488427019367028,0.3485958485958486,0.3518668831168831,0.3592930129798398,0.3613348676639816,0.0,2.3648292498189925,58.64691588919607,179.36202324246167,258.7979143066879,fqhc4_100Compliance_implementation,72 -100000,95692,44694,423.6717802951136,6244,64.11194248213017,4865,50.35948668645237,1955,20.189775529824857,77.34181859432726,79.72379445849336,63.3271521787835,65.08518216691284,77.09919409791453,79.47905227005984,63.23789846080719,64.99698894877736,0.2426244964127306,244.7421884335199,0.0892537179763124,88.19321813548697,150.29718,105.75461940667566,157063.47448062533,110515.63287074745,385.24746,251.9244915523032,402122.37177611503,262797.27830153314,369.69474,179.69261616267138,383144.5575387703,185367.66201849183,3527.25932,1594.6704164853838,3656391.64193454,1636798.6733325487,1186.0257,521.8836960559114,1229452.8278225977,535411.5245327841,1926.44636,804.6848274014683,1990822.1585921496,820864.8165855065,0.38045,100000,0,683169,7139.248840028425,0,0.0,0,0.0,33196,346.4134932909752,0,0.0,33830,350.29051540358654,1624458,0,58306,0,0,0,0,0,72,0.7524139949003052,0,0.0,1,0.0104501943736153,0,0.0,0.06244,0.1641214351425943,0.3131005765534913,0.01955,0.3345043531388422,0.6654956468611578,24.854049763948574,4.41839093941936,0.3149023638232271,0.2254881808838643,0.2250770811921891,0.2345323741007194,11.324042308574343,5.796749828572114,20.809540376044414,12194.545693668464,54.91967310060216,13.113237224639867,17.25414087043716,12.068467920389343,12.48382708513578,0.5516957862281603,0.7939835916134913,0.6821148825065274,0.5735159817351598,0.1226993865030674,0.7272727272727273,0.9429280397022332,0.8498727735368957,0.7727272727272727,0.1405622489959839,0.4885410844046953,0.707492795389049,0.6242317822651449,0.5169988276670574,0.1177130044843049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417464126945,0.004855205408638,0.0071223481428122,0.0092523003798419,0.0114999796640501,0.0136332165838559,0.0157783689569764,0.0176903524800179,0.0197569476384672,0.0220598020247929,0.0241264047247969,0.0260966015877743,0.028095840663354,0.0301297309551042,0.0322953543819088,0.0343604224201239,0.0364958965431484,0.0383828735763452,0.040466035576823,0.0424602554078707,0.0574636999895539,0.0715115852956266,0.0846644696794777,0.0982112794612794,0.1101946099889246,0.1251441082213079,0.1376826201818509,0.1492602448110697,0.1606696438110297,0.1700427868272334,0.1832642291745194,0.1952625601644043,0.2078847199564981,0.2179112962294885,0.2279802435456015,0.2382629497956607,0.2478988313819159,0.2559894720266348,0.2637055866365566,0.2714788046777463,0.2787031253614639,0.285236508214933,0.2911069063386944,0.2971522361595323,0.302451819738424,0.3076866204992976,0.3114848462096754,0.3150881926238896,0.3189091144652458,0.3231989861252293,0.3225884666675647,0.321843036301813,0.3213132324528621,0.3203754320505589,0.3202093493517307,0.318718070662596,0.3170391725142957,0.3167967145790554,0.3175987685992816,0.3190851143607049,0.3200748362956033,0.3217326038436469,0.3219625581103154,0.3221267838768845,0.3228087050619214,0.3237137633846957,0.3238263647253436,0.3262060712936138,0.3286555481118437,0.332098322775985,0.3341865886547516,0.3364749733759318,0.3405724328395682,0.3416951729380463,0.3415203586103847,0.3421895386075199,0.3396543814038844,0.3439323807607164,0.3465154867256637,0.354888375673595,0.0,1.8512414301249704,56.848636760613445,180.6577363892194,268.08375301111533,fqhc4_100Compliance_implementation,73 -100000,95681,44783,423.9817727657529,6136,63.07417355587839,4815,49.759095327180944,1915,19.64862407374505,77.38307130315455,79.75934875195935,63.34642469116329,65.09741710861054,77.14206447674513,79.51989976184105,63.25775037106502,65.01190868153532,0.2410068264094178,239.448990118305,0.0886743200982707,85.50842707522577,151.25286,106.35106471469145,158080.35033078666,111151.70693731404,385.58599,252.87105662283727,402435.2692802124,263739.26753243856,371.0915,180.1565822069656,384382.8659817519,185568.57159520945,3485.70832,1580.3105095564922,3606651.048797567,1616385.603094124,1174.97987,518.6766998115763,1215146.444957724,529385.983714662,1876.12506,782.9531915169214,1927249.192629676,789669.443659885,0.37975,100000,0,687513,7185.4704695812125,0,0.0,0,0.0,33266,347.0908539835495,0,0.0,33941,351.30276648446403,1618910,0,58201,0,0,0,0,0,70,0.7315977048734859,0,0.0,1,0.0104513957839069,0,0.0,0.06136,0.161579986833443,0.3120925684485006,0.01915,0.344945567651633,0.655054432348367,24.418424188936445,4.416320996880429,0.3204569055036345,0.2338525441329179,0.2201453790238837,0.2255451713395638,11.48893051648487,6.04908105869675,20.372436150452053,12199.131404025107,54.6466129673211,13.594455338876898,17.367834518424626,11.730267305932763,11.954055804086815,0.5603322949117342,0.7868561278863233,0.694750486066105,0.5622641509433962,0.1325966850828729,0.7306525037936267,0.9181818181818182,0.8822055137844611,0.6890756302521008,0.1784232365145228,0.4961395481841578,0.7026239067055393,0.6293706293706294,0.5255474452554745,0.1195266272189349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024498142392921,0.0046906976272972,0.0067747791604547,0.00901742556562,0.0112246454171114,0.0134368924132455,0.01553548492324,0.017679061744021,0.0199934581731948,0.0222554358953359,0.0242474573490813,0.0267089738455377,0.02895137403324,0.0310040789419471,0.033167239227095,0.0350989612939899,0.0372526675644877,0.0391916717697489,0.0412441893114529,0.043073620143405,0.0580934969966048,0.071711979564703,0.0847775912715065,0.0978076862415225,0.1097791132901049,0.1253554928267098,0.137278181779634,0.1484542002999074,0.1590196120275721,0.1694880750851779,0.1811149840778036,0.1935780312449321,0.2047492256697277,0.215152243764891,0.2248385996942467,0.2354192283406998,0.2452573164059447,0.2544537285196279,0.263105903191743,0.271303351475222,0.2774318976091837,0.2841524937670455,0.2903497133109036,0.2953457398941723,0.3013655321684359,0.3067443036725429,0.3113579721216827,0.3162940517416989,0.3205126543729832,0.3254880207095121,0.324479327939256,0.3237130987426748,0.3232456943290476,0.3225536096179411,0.3217994621818776,0.3204041271252702,0.3183222678223391,0.3184655823886972,0.3184206472813158,0.319083887577773,0.3210273473278875,0.324072432070304,0.3253034703215427,0.325950847797509,0.3277606371529023,0.3288849731802752,0.3290311624352551,0.3313772006492695,0.33282085327929,0.3372326598133049,0.3418272500566764,0.3446006423419154,0.3450581032112957,0.3476586102719033,0.3505154639175257,0.3493046628491293,0.3517241379310344,0.3591452656341893,0.3601921024546424,0.3577235772357723,0.0,2.1791381884467493,58.01605549456471,178.6579385741262,260.21781853816503,fqhc4_100Compliance_implementation,74 -100000,95696,44458,421.3237752884133,6129,62.82394248453436,4765,49.22880789165691,1923,19.750041799030264,77.3960056150407,79.78105664327575,63.35197710932333,65.11336923415162,77.15058155512516,79.53492214623108,63.26016065926023,65.02364792853139,0.2454240599155497,246.1344970446646,0.0918164500630993,89.7213056202304,151.41148,106.4068353676229,158221.32586523992,111192.56329169756,385.29084,252.36967415385263,402059.9293596388,263160.5335163984,366.84297,178.42115986345289,379759.0390402943,183725.4311923126,3417.84675,1572.5476187828942,3534346.6498077246,1606053.7940801035,1133.47763,507.81229730651336,1171153.8099816083,517348.7055953365,1876.79524,800.4063997579493,1928435.0861060023,808489.1632661166,0.37849,100000,0,688234,7191.878448419997,0,0.0,0,0.0,33206,346.4094633004514,0,0.0,33593,347.4021902691858,1623442,0,58200,0,0,0,0,0,81,0.8464303628155827,0,0.0,2,0.0208995151312489,0,0.0,0.06129,0.1619329440672144,0.3137542829172785,0.01923,0.3238689547581903,0.6761310452418097,24.6516030060442,4.339339434842901,0.3200419727177335,0.2308499475341028,0.2289611752360965,0.2201469045120671,11.168666089039196,5.868379681880764,20.72510212820772,12142.816702241138,54.141478458778174,13.213955169168296,17.23431817490426,12.03908798495221,11.654117129753413,0.5571878279118573,0.7872727272727272,0.6878688524590164,0.5618698441796517,0.1210676835081029,0.7125475285171102,0.9314420803782506,0.848404255319149,0.7094339622641509,0.1434262948207171,0.4979710144927536,0.6971935007385525,0.6353350739773717,0.5145278450363197,0.1140350877192982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020867733014577,0.0042485449494027,0.0063945108706684,0.0087172974345948,0.0110980001220678,0.013430130737588,0.0153960663560263,0.0175193212794413,0.0194749432619763,0.0216792736726818,0.0239186376731358,0.0258429504291757,0.0280151800314707,0.0302221855975937,0.0322850244536618,0.034267816163245,0.0365651543401698,0.0384056466680506,0.0404247353204234,0.0425013027618551,0.0564764620478592,0.0709860393076166,0.084328882642305,0.0974345494690358,0.1097641961904561,0.1249352269963304,0.1363703876594029,0.1482025569784647,0.1590984350798483,0.169021033776319,0.1811875962646618,0.1937022694329662,0.2055058035908359,0.2150477689600139,0.2242003056927018,0.2345367387381403,0.24452672785876,0.253561157544711,0.2619117747014976,0.2694712775078594,0.2766917987737995,0.2837779464129356,0.2903351565914917,0.2961110446332416,0.3019549820510332,0.3059941951987406,0.3110506477621627,0.3166941519725992,0.3211500722991117,0.3248335570116576,0.3241792166653244,0.3229996845036419,0.3219879094615492,0.3203185871353129,0.3197127511202113,0.318056702449766,0.3155065842515452,0.3163079646597931,0.3171280896576429,0.3189423231117367,0.3203104544604451,0.3213068237797789,0.3215083157697043,0.3218457294146439,0.3226919758412424,0.3233895486318634,0.3246598639455782,0.3275418679044095,0.329832300528656,0.3325001983654685,0.3376670772318781,0.3387739911744378,0.3378787878787879,0.3395306309052118,0.3433951551854655,0.3439109088731888,0.3474862047823421,0.3424908424908425,0.3426283821093319,0.3458559256390395,0.0,2.152063699495438,57.773740202312624,176.1066533560668,257.8020651267153,fqhc4_100Compliance_implementation,75 -100000,95835,45212,427.2969165753639,6089,62.3676109980696,4786,49.49131319455314,1837,18.87619345750509,77.38566316619061,79.70669738815945,63.36611244363343,65.08433605344183,77.15577411874804,79.47670238430662,63.27999902842921,65.00026923081096,0.229889047442569,229.9950038528351,0.0861134152042168,84.06682263087362,151.71332,106.81098272940548,158306.798142641,111453.00018720246,389.21028,255.28533635208,405677.2786560234,265932.1271384629,377.27516,183.49555112620652,391376.11519799655,189687.11683841137,3450.44175,1569.450987461935,3566227.06735535,1603763.4298676518,1137.0788,498.3618982992548,1177243.3557677255,510900.6422140609,1804.41148,761.6175952078893,1854241.3314551048,769279.0802861552,0.38286,100000,0,689606,7195.763551938228,0,0.0,0,0.0,33585,349.9660875463036,0,0.0,34548,358.1363802368655,1616598,0,57972,0,0,0,0,0,55,0.5739030625554339,0,0.0,0,0.0,0,0.0,0.06089,0.1590398579115081,0.3016915749712596,0.01837,0.3333333333333333,0.6666666666666666,24.852475919966285,4.301324114091583,0.3315921437526118,0.2273297116590054,0.2185541161721688,0.2225240284162139,10.991196771391504,5.686833744309062,19.55525217983712,12225.665880415094,54.21904628354525,13.109645307885918,17.884416760567547,11.56342066054278,11.661563554549,0.5547430004178855,0.7757352941176471,0.6912413358538122,0.5736137667304015,0.1070422535211267,0.7069096431283219,0.906818181818182,0.8719211822660099,0.683982683982684,0.0833333333333333,0.4969731911213606,0.6867283950617284,0.6291278577476714,0.5423312883435583,0.1139393939393939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409265392523,0.0049775452895795,0.0071957049050552,0.0095808018206571,0.0116562919565482,0.0138071479482741,0.0155337430816744,0.0179304010613327,0.020287188921253,0.0225649317423606,0.0246979370561288,0.0267682106970203,0.0289102886917914,0.0311789107453499,0.0331418790022376,0.0353560915147446,0.037456283757217,0.0396044735123705,0.0415446597304425,0.0437565036420395,0.0587903949262512,0.0725455761833082,0.0857562100408762,0.0984681333921704,0.1104018539000368,0.1259730246411559,0.1370513200830614,0.1484453893170342,0.1597401489130203,0.1698907455012853,0.1818866219980426,0.1945662741708977,0.206231679513625,0.2161858292126491,0.2261649808353376,0.236878475946176,0.2461761265526653,0.2554646957068721,0.2644659930218859,0.2715051612386973,0.2792156047534906,0.28619104296483,0.2925130723197318,0.2972440003824457,0.3025300664914554,0.3075534266764922,0.3122270742358078,0.3168640779161488,0.3213027146342408,0.3256753378333925,0.3246639784946236,0.3237819200813198,0.3228977680266655,0.3219281909134219,0.3210787223937307,0.3186074980872226,0.3157219759341355,0.316384830077163,0.3174991447143346,0.3182565495550234,0.3178149403546882,0.3190568424381374,0.3199470432480141,0.3211050318414207,0.3219692396841876,0.3238222501703086,0.3260782519162567,0.3293805979563517,0.3333450878059101,0.3380882177152647,0.3416506717850288,0.3451205267070192,0.348277816258422,0.3497076911396249,0.3545831761599397,0.3548807970584747,0.3590449954086318,0.3639668753787113,0.3714599945009623,0.3726755218216319,0.0,1.65394194317411,58.28842528862832,173.62620110326458,262.49538014274765,fqhc4_100Compliance_implementation,76 -100000,95770,45043,426.73070899028926,6005,61.47018899446591,4741,48.99237757126449,1850,19.035188472381748,77.37657405990127,79.72117849260036,63.3458979718325,65.07902962703136,77.14699256364577,79.49077249124767,63.26052771280178,64.99547397730163,0.2295814962555056,230.40600135269077,0.0853702590307179,83.55564972973184,151.86864,106.91413977785344,158576.4226793359,111636.35770894166,386.45507,253.63878808385,402964.91594445024,264282.36199629324,376.71359,182.86729292501917,389747.2799415266,188260.8051175345,3391.21916,1554.1015210516243,3507408.3324631928,1589148.29388287,1135.26199,508.26820947836046,1172015.2657408374,517342.7612997047,1824.83942,770.08324578297,1878793.6723399807,780909.8222315782,0.38057,100000,0,690312,7208.019212697087,0,0.0,0,0.0,33279,346.90404093139813,0,0.0,34409,355.6332880860395,1615096,0,57879,0,0,0,0,0,70,0.7309178239532212,0,0.0,0,0.0,0,0.0,0.06005,0.15778963134246,0.3080766028309742,0.0185,0.3365521608358398,0.6634478391641602,24.651700412549168,4.381276511424972,0.3244041341489137,0.2345496730647542,0.2111368909512761,0.2299093018350559,11.03479319122001,5.689824599743607,19.56605136718659,12197.883187098412,53.61975790961795,13.256689373602866,17.26509341545751,11.072090594714288,12.025884525843278,0.5652815861632567,0.7913669064748201,0.7002600780234071,0.5964035964035964,0.1155963302752293,0.7321711568938193,0.9407407407407408,0.8788659793814433,0.7359307359307359,0.134453781512605,0.5047427421672894,0.7057991513437057,0.64,0.5545454545454546,0.1103286384976525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903575407677,0.004956968646413,0.0071835873292883,0.0092953797391198,0.0114616385973476,0.0135029174855653,0.0157538925880229,0.0178870421039735,0.020394810824073,0.0225609319179863,0.0246084781895703,0.0265343201157861,0.0285176770532419,0.030566111574546,0.0326717147750015,0.0346157026501839,0.0366347398395029,0.0387974854250088,0.0409177382969654,0.0428230736386074,0.0574347948608226,0.0716676078726652,0.0849966454209996,0.0980946475676016,0.1103335616799283,0.1260504201680672,0.1380012298818889,0.1488358729888482,0.1597351276300331,0.1700393569904235,0.1822441483460258,0.1946374082970849,0.2057965968928151,0.2164936045430175,0.2264690988352892,0.2359428514425688,0.2451151157857126,0.2541440194456635,0.2627774499568789,0.2700022899015342,0.2770221821293919,0.2840861270865479,0.2902089220473651,0.2965397509578544,0.301655150639352,0.3073236834000616,0.3119119319246773,0.3156036475399426,0.3207471561530506,0.326006457139092,0.3251471101915791,0.3235382967621454,0.3220951149586823,0.3215542606588588,0.3207452090527782,0.3189495727671543,0.3176000252828519,0.3180069099900116,0.318033010503342,0.3185637483533307,0.3196908451231379,0.3208298820652388,0.3222735926026652,0.3248752450543575,0.3259732155714491,0.3257490953583422,0.3256759446166093,0.3292824255332477,0.3323996918983264,0.335407665781442,0.3380846122318867,0.3406412570336554,0.3442365645404319,0.3471463266545234,0.3486135748296144,0.3484937979917306,0.3558132438205676,0.3592934564431955,0.3661053775122216,0.376275028333963,0.0,1.9087064841365309,55.53072812014705,177.23646060623102,259.9250549478192,fqhc4_100Compliance_implementation,77 -100000,95759,45115,427.5525015925396,5977,61.24750676176652,4670,48.25656074102695,1817,18.661431301496464,77.3313489084019,79.69731248071407,63.31030609897547,65.0630525729087,77.10855576038796,79.475141133921,63.22838792030724,64.9838471909182,0.2227931480139489,222.1713467930755,0.0819181786682321,79.20538199050497,152.00328,107.0030151044182,158735.2415960902,111741.99302876824,384.83229,252.42110616269684,401403.982915444,263128.5374353292,376.60006,182.9498005554127,389758.926053948,188444.9858014767,3341.79457,1517.6938160110562,3454498.177716977,1549972.374696902,1116.60724,488.19134055771536,1153917.8040706357,497797.0431416296,1788.03582,742.4950635158519,1837800.2067690769,749420.8761123206,0.38103,100000,0,690924,7215.238254367736,0,0.0,0,0.0,33158,345.7534017690243,0,0.0,34430,356.0814127131653,1612793,0,57861,0,0,0,0,0,72,0.7518875510395889,0,0.0,2,0.0208857653066552,0,0.0,0.05977,0.1568642889011364,0.3039986615358875,0.01817,0.3249482566470307,0.6750517433529692,24.72305075071645,4.336919018835252,0.3132762312633833,0.2389721627408993,0.223340471092077,0.2244111349036402,11.22439744884482,5.797727428080539,19.241063548841023,12222.701577860453,53.07932245697804,13.368317676314408,16.572353721494128,11.698903934376805,11.439747124792694,0.5717344753747323,0.7894265232974911,0.7108680792891319,0.6088207094918504,0.1087786259541984,0.74481658692185,0.930622009569378,0.8740359897172236,0.7553648068669528,0.1355140186915887,0.5081967213114754,0.7048710601719198,0.6517690875232774,0.5666666666666667,0.1019184652278177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022391310955531,0.0045225468225559,0.0068612027404212,0.0090530380004064,0.0115058292132088,0.0137181615423002,0.015825269447645,0.018256634366991,0.0201904489153003,0.0221951369400004,0.0242246471939612,0.0263217375223457,0.0287019789854997,0.0307330798008842,0.0329269929088262,0.0349405937522619,0.0369258170069999,0.0389652166694338,0.0409870999261961,0.0428080408290803,0.057936217965447,0.0718987076858682,0.0853579221215172,0.0981629283783925,0.1105394120872169,0.1263987308302485,0.138544308498785,0.149342280449486,0.1606587511087837,0.1699107257822224,0.1828508611212898,0.1944901672009009,0.2065793627466988,0.2162895828544533,0.2259531227637532,0.2353651912695509,0.2453605484713816,0.2543835955612578,0.2630999659593782,0.2706390486446853,0.277833709425447,0.2846272710245364,0.2914203111485005,0.2962931841644059,0.3020127698388568,0.30778716320365,0.3124264650662127,0.3177774666887257,0.3224853221353863,0.3267621988230016,0.3262634832141559,0.3245930040699593,0.3239953849617289,0.3230256417656311,0.3221833595162581,0.320912396492193,0.3184745548680389,0.3189701763867734,0.319610318706067,0.3206246883681173,0.3216235417289859,0.3239128291095552,0.3228308592933305,0.3233810862676842,0.3240389691414311,0.3260999661749018,0.326962399182097,0.3309262166405023,0.3317390539827677,0.3336914567665433,0.3375842594279468,0.3388403494837172,0.3408277334673114,0.3419335255729245,0.345610119047619,0.3505813953488372,0.3519402985074626,0.3523417597491671,0.3487372380440623,0.355020684467845,0.0,2.030871820618956,55.22268529462404,179.1503679011281,250.2888559379116,fqhc4_100Compliance_implementation,78 -100000,95499,44811,425.20864092817726,6084,62.4404444025592,4790,49.66544152294789,1879,19.371930596131897,77.22623088476638,79.71392549631472,63.24095407219974,65.07632272863361,76.98652169284577,79.4724231550789,63.15185717717802,64.98866244806084,0.2397091919206104,241.5023412358153,0.0890968950217185,87.66028057277708,151.4062,106.51974180751635,158542.18368778733,111540.1646169241,388.94834,255.5784010188575,406755.5367071906,267109.7863338311,375.44776,182.64917688267235,390153.8236002471,188920.3227714468,3432.54808,1568.626511691871,3561933.9574236376,1610964.0395972182,1153.24799,509.1407180942732,1196966.9106482791,522745.2029516439,1841.8474,777.3982895522222,1900193.0700845036,790019.5052980566,0.37896,100000,0,688210,7206.462894899423,0,0.0,0,0.0,33479,350.0141362736783,0,0.0,34392,357.1136870543147,1607064,0,57736,0,0,0,0,0,68,0.7120493408307941,0,0.0,1,0.0104713138357469,0,0.0,0.06084,0.1605446485117162,0.3088428665351742,0.01879,0.3275726630007855,0.6724273369992144,24.581674059879656,4.409018748890258,0.3288100208768267,0.230062630480167,0.2177453027139874,0.2233820459290187,11.343264085984613,5.896030736176916,20.123427710745997,12194.57305762614,54.57630000993242,13.195248425141026,18.05673600772972,11.40653517639249,11.91778040066918,0.5632567849686848,0.7967332123411979,0.7066666666666667,0.5560882070949185,0.1186915887850467,0.7276295133437991,0.9263959390862944,0.8668280871670703,0.7577092511013216,0.1333333333333333,0.5036973833902162,0.7245762711864406,0.6497418244406197,0.5,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0045949263087425,0.0067313744999695,0.0090188103711235,0.0112294347613617,0.0134637924884064,0.0156940376942621,0.0178202848793247,0.0200313053086028,0.0222331509600213,0.0245216784365248,0.0266399341969977,0.02876001400416,0.0307359084111185,0.0327120185154571,0.0346430605166433,0.0368149707990581,0.0388453462505977,0.0410888974548636,0.0431350436989004,0.0583648220061337,0.0724949379439134,0.0851788756388415,0.0974684344765076,0.1098852323885612,0.1248396841380041,0.1371112646855563,0.1493609030578494,0.1603902919692393,0.1705290538942752,0.1824856134138046,0.1936914950158905,0.2050722899448284,0.2159637794757671,0.2254352479092654,0.2357765134678638,0.2448395072778331,0.2546506121896773,0.262827439516817,0.2713844670668304,0.2789408367065264,0.2859588639508431,0.2926288060374493,0.2971595485088531,0.302290709156741,0.3076218871005653,0.3128927655723694,0.3172546012269938,0.3209842842101158,0.3250427112718026,0.3236148845004933,0.323222291192496,0.3220114066293975,0.321420820371844,0.3203449662630144,0.3184548037785116,0.3154892426987002,0.3165554182117841,0.3172677670635874,0.3178682149705213,0.3186342636066559,0.3201204413541728,0.3199722985876477,0.3215365662448202,0.3223309373272111,0.3229557780559032,0.324953683910503,0.3287580670549346,0.3335209285965529,0.3353357733927434,0.3385895150601033,0.341086506292815,0.3437441204139229,0.3479673568082213,0.3471488178025034,0.3446301273810915,0.3469107551487414,0.3427115188583078,0.3443344334433443,0.3471957268218237,0.0,1.824471597329245,56.31890099185618,184.84804103879387,259.7589931375954,fqhc4_100Compliance_implementation,79 -100000,95706,44780,424.63377426702607,6150,63.07859486343594,4822,49.76699475476981,1942,19.90470816876685,77.36399481233721,79.74739677636533,63.33329461681414,65.09662455306012,77.11666557727531,79.50180957558128,63.24060627451463,65.00727892356608,0.2473292350618976,245.58720078405827,0.0926883422995104,89.34562949404778,152.174,106.97174361301774,159001.06576390195,111770.83438760148,387.93948,254.56945426436525,404733.4127431927,265383.4792798184,369.97002,179.62715201356843,382735.47113033663,184734.4105481417,3498.68711,1601.1458301741982,3613930.90297369,1631893.249247224,1136.81567,507.0291824202726,1169735.0113890455,512257.94948856,1906.84366,804.0562794110881,1956162.581238376,808636.9137633478,0.38111,100000,0,691700,7227.321171086452,0,0.0,0,0.0,33554,349.9467118049025,0,0.0,33833,349.58100850521384,1615256,0,57937,0,0,0,0,0,70,0.7314065993772595,0,0.0,0,0.0,0,0.0,0.0615,0.1613707328592794,0.3157723577235772,0.01942,0.3334888059701492,0.6665111940298507,24.514361503496303,4.422265994098317,0.3255910410618001,0.2320613853172957,0.2111157196184156,0.2312318540024886,11.006669246326632,5.539674557564002,20.665143392625936,12222.656088242382,54.66592188060575,13.439645591951937,17.805377346274692,11.22573476421675,12.19516417816236,0.5607631688096225,0.7944593386952636,0.7,0.5805500982318271,0.1121076233183856,0.7297090352220521,0.9130434782608696,0.847457627118644,0.7529880478087649,0.1578947368421052,0.498009101251422,0.724822695035461,0.6473638720829732,0.5241199478487614,0.1003382187147688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0044925816625594,0.0067712986274669,0.0090452669878244,0.0111113372270497,0.0130916722701061,0.0152699008527479,0.0174026716777646,0.0197498286848107,0.0217593872556548,0.0239247697766474,0.0260863313785701,0.0283583624768566,0.0304891242748657,0.0324468249791015,0.0345843672456575,0.0365651543401698,0.0385289875374861,0.0405488280234915,0.0425487581263543,0.0568423910773215,0.0701688280424111,0.0833656822116141,0.0960308779605401,0.1083422933400796,0.1237972381415611,0.1359350973010233,0.1486477860288954,0.159112990188228,0.1686227852985626,0.1816401205337925,0.1934402111594297,0.2057352269514343,0.2159129436211516,0.2264065834928598,0.236624147400124,0.2461622562363336,0.2550331796198403,0.2635879742597405,0.2720047639770046,0.2786177855415833,0.2855238228896218,0.2922714464991831,0.2980197545070963,0.3031900677859034,0.3079860084737412,0.3122513822521328,0.3169776783444348,0.3221079857743291,0.3271287806934345,0.3265629830763647,0.3252146438629026,0.3245732444669422,0.3235663276347111,0.3225863832436519,0.3213206337576701,0.3203797747847207,0.3210025816149799,0.3219874804381846,0.32327639945144,0.3244826166685378,0.324145143150293,0.3258920173073305,0.3263023687565705,0.3280117155615307,0.3292963040300689,0.3310203032639424,0.3331657501963865,0.3367415059203822,0.3390328083468877,0.3405164575377341,0.3447545411216438,0.3493595810461228,0.3539964882815482,0.3550738356683074,0.3555900621118012,0.3590895013936203,0.3557929334428923,0.3617259736620902,0.3694117647058823,0.0,2.4013484661171733,57.018095226304325,178.69474828820594,263.8324937268445,fqhc4_100Compliance_implementation,80 -100000,95673,45142,427.3201425689588,6116,62.75542734104711,4768,49.29290395409363,1896,19.451673930994115,77.31725194233033,79.72692609910214,63.30264576078415,65.08549324747152,77.08492854642517,79.49418379758076,63.21615340811941,65.00135055552371,0.2323233959051549,232.7423015213839,0.0864923526647416,84.14269194780388,152.43426,107.34841795029683,159328.1699120964,112203.23868834136,388.92401,254.82581310707235,405968.1205773834,265805.3543915968,374.35409,182.10970714141672,387924.2314968695,187741.00654677724,3436.72544,1566.8219749298337,3555475.243799191,1601037.4208291098,1150.19169,510.1035876118517,1192657.4686693216,523620.1202134888,1866.14808,783.6152092376697,1916774.45047192,790714.2668412412,0.38334,100000,0,692883,7242.189541458928,0,0.0,0,0.0,33546,350.0569648699215,0,0.0,34333,355.5130496587334,1609641,0,57739,0,0,0,0,0,57,0.5957793734909536,0,0.0,0,0.0,0,0.0,0.06116,0.1595450513904106,0.3100065402223675,0.01896,0.337640099626401,0.662359900373599,24.540841083362427,4.424272207019638,0.3248741610738255,0.2202181208053691,0.2296560402684563,0.2252516778523489,11.0714994717651,5.576939186548806,20.27096379822907,12301.232869345997,53.97801923986978,12.506133364835556,17.371071721627484,12.230680364050226,11.870133789356515,0.55998322147651,0.7914285714285715,0.6849580374435119,0.5917808219178082,0.1210428305400372,0.7297507788161994,0.917948717948718,0.8553921568627451,0.7586206896551724,0.1422222222222222,0.4974167623421355,0.7166666666666667,0.6240140227870289,0.539568345323741,0.1154299175500589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0045429194341631,0.0066776946730669,0.0089321098679998,0.0114666531006766,0.0138025873484771,0.0160161589782302,0.0184292252370055,0.0206257289599148,0.0226418187220178,0.0249615266235764,0.0272816950615507,0.0294608115619788,0.0315586531125636,0.0335863671572424,0.0353746986580583,0.0374639769452449,0.0395256096041208,0.0416701348426835,0.0436069846234037,0.0583847037927071,0.0726044612001256,0.0852964642647182,0.0982492319346828,0.1107266435986159,0.1269789197426346,0.1389469662396655,0.1507332190285513,0.1612999754197347,0.1718999753263889,0.1841184010685395,0.1969236098331908,0.2086407661334204,0.2190431365681198,0.2285969182646239,0.2392969156941627,0.248817228297255,0.2585506855169776,0.2666613737410398,0.2739032878468724,0.2801527159136924,0.2864560188974904,0.2922348484848485,0.2977109300095877,0.3033683289588801,0.3084739074676926,0.3128121674907679,0.3174330598486294,0.3219125775010679,0.3262027151706867,0.3261565357719204,0.3253867927120833,0.3253430435271623,0.3236554640038095,0.3222651605231866,0.320464267643857,0.3184480466029253,0.3191740800315136,0.3195549032324128,0.3208435087969482,0.3213750748951468,0.3227271829511564,0.3245102563026972,0.3256193907925069,0.3269740967633013,0.3279437885278445,0.3298454695786052,0.3332182103610675,0.3354266067920292,0.3385889157390168,0.3424420458168238,0.3427070621319042,0.3453377825347856,0.3485979884181652,0.3511027686532144,0.3560837844198635,0.3596638655462185,0.3611223253936213,0.3630247578040904,0.3647940074906367,0.0,2.1310444399705704,56.4370361125809,173.3596806566135,265.4037532119708,fqhc4_100Compliance_implementation,81 -100000,95864,44688,422.8594675790703,5993,61.37861971125761,4669,48.21413669364934,1850,18.96436618542936,77.4717338221379,79.75685813099543,63.40399372213196,65.08993795859371,77.23796772084368,79.52326210618172,63.31661239973688,65.00491515419338,0.233766101294222,233.596024813707,0.0873813223950747,85.0228044003245,151.82024,106.68601842370016,158370.4414587332,111288.92850673888,381.39693,249.99424244991624,397374.7079195527,260302.72307635425,364.69723,177.50299144329026,377184.02111324377,182734.5774796408,3348.47083,1523.1816609360978,3460900.463156138,1556860.188325229,1130.10686,495.8220497871623,1166137.809813903,504487.1273754091,1807.94548,765.4981710371954,1855493.1569723776,772568.9126850439,0.38038,100000,0,690092,7198.656429942418,0,0.0,0,0.0,32950,343.2153884669949,0,0.0,33356,344.66535925895016,1623737,0,58234,0,0,0,0,0,70,0.7302011182508553,0,0.0,0,0.0,0,0.0,0.05993,0.157552973342447,0.3086934757216752,0.0185,0.3302244704394562,0.6697755295605438,24.735843271228955,4.425493150903214,0.3077746840865281,0.2409509530948811,0.2287427714714071,0.2225315913471835,11.197965599105896,5.713046705275548,19.721432429729653,12147.963966336236,52.55730798382815,13.371439410598516,16.115143258714685,11.795088943486068,11.275636371028886,0.5585778539301778,0.7715555555555556,0.6889352818371608,0.5805243445692884,0.1251203079884504,0.7146282973621103,0.9111111111111112,0.8526315789473684,0.6869918699186992,0.1454545454545454,0.5014628437682855,0.6930555555555555,0.630085146641438,0.5486618004866181,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021560886729426,0.0046094153640425,0.0069358534953051,0.0091352009744214,0.0112694089911389,0.0135521483003856,0.015667019802787,0.0179418394720468,0.0201785021342646,0.0221610897488341,0.0242730875981933,0.0262342830184809,0.0283630386768709,0.030393760739163,0.0322224856462535,0.0345212156259358,0.0368347556245151,0.0387604933153694,0.0407641989409199,0.0425204224985691,0.05675644675238,0.07143081152845,0.0851576663907024,0.0977649815587335,0.1094456566423173,0.1246405311680622,0.1362918190976088,0.148565410270322,0.1589247013355824,0.1682206932030094,0.1815530637281277,0.1936836644257582,0.2052863627478661,0.2154539896056252,0.2248349789673692,0.2346587956974983,0.2442298266720135,0.2529249287013541,0.2616903928696814,0.2695935517063968,0.2760488238622585,0.2827826776797797,0.2897614548889938,0.2957913243155968,0.3012168047653132,0.3061357622007508,0.3114356751083846,0.316257333705839,0.3203370336387485,0.324900956868526,0.3236942178744675,0.3225028104521401,0.3215544230580241,0.32053773191128,0.3197513505513209,0.3186240126864078,0.3165426806203505,0.3159958821510858,0.3180759751848389,0.3188562706329204,0.3194074350135097,0.3199937132865759,0.3208140649085531,0.321925418907507,0.3239971346704871,0.3248872998600964,0.325035360678925,0.3286146362757631,0.3315196673020273,0.3338557993730408,0.3347543190486874,0.334700746818134,0.338716744913928,0.3414152162347039,0.3415944214097248,0.3462360484445499,0.3477996965098634,0.3482338854520055,0.3528617710583153,0.3545351900639819,0.0,1.9477440732687843,54.90347920267163,167.5755164112462,260.96372606694456,fqhc4_100Compliance_implementation,82 -100000,95732,44570,422.7739940667697,5910,60.42911461162412,4633,47.71654201311996,1821,18.56223624284461,77.34438518034166,79.69773467077299,63.33412346583962,65.07250365393628,77.11281940831246,79.470615163133,63.24784804342191,64.99129291153646,0.2315657720291994,227.11950763998345,0.0862754224177067,81.21074239981851,153.07974,107.68143344507864,159904.4624576944,112482.1725703826,387.59658,254.81134726976651,404184.7553587097,265479.58600025746,371.35001,180.9088928534925,384117.5886850792,186083.4477726665,3338.61195,1531.6396579057182,3438048.562654076,1551054.4118709418,1127.71931,499.99188287914194,1160287.072243346,504671.7528893964,1794.02176,759.4278743262018,1830212.4681402247,754551.8634436262,0.37708,100000,0,695817,7268.384657167927,0,0.0,0,0.0,33522,349.42339029791503,0,0.0,33946,350.7917937575732,1606560,0,57716,0,0,0,0,0,60,0.626749676179334,0,0.0,1,0.0104458279363222,0,0.0,0.0591,0.1567306672324175,0.3081218274111675,0.01821,0.3392568659127625,0.6607431340872375,24.24379385632358,4.386374860235764,0.3166414849989208,0.2294409669760414,0.2253399525145694,0.2285775955104683,10.960702138989658,5.553903366988505,19.464018404022383,11993.607654631074,52.6634438586597,12.791468731952502,16.73345185049911,11.58322574640623,11.555297529801864,0.5523418951003669,0.786453433678269,0.7048398091342877,0.5459770114942529,0.1123701605288007,0.716,0.8982630272952854,0.8549618320610687,0.7056451612903226,0.1067961165048543,0.4918711203074195,0.7181818181818181,0.6499068901303539,0.4962311557788945,0.1137162954279015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019650743486892,0.0043190412944957,0.0067776661695025,0.0090084600306714,0.0113162657339813,0.0136104974906599,0.0155928334114673,0.017613143527731,0.0197607054183568,0.0216924178860124,0.0237314533978194,0.025936303640525,0.0281519258055892,0.0299897013388259,0.0317628975520183,0.0338748346560846,0.0357623434427077,0.0377702877884366,0.040055707990355,0.0419162300392704,0.0562109790983692,0.0703281982585398,0.0836217928545954,0.0961255311093349,0.1078923501993124,0.1235261148652221,0.1348791327683316,0.1457147417141033,0.1564819858792365,0.1664182864984829,0.1791131541268799,0.1910932750657133,0.2028550615914848,0.2131224587942115,0.2232632817568979,0.2331100902197376,0.2423620254859514,0.2511555200683753,0.2595491724239639,0.2667201007614359,0.2749282805848602,0.2812255068259186,0.2874554770610719,0.2928286135799359,0.2983185109588375,0.3028456538096236,0.3074282421038125,0.3115564445237155,0.3155971387103463,0.3193228485784838,0.3183084938810129,0.3172465960665658,0.3167554015606073,0.3156913740788903,0.3144207335195862,0.3123946166344768,0.3101130364475165,0.3108791280940188,0.311649042485949,0.3130666000428296,0.3136421509886159,0.3144847731264926,0.3152321761148429,0.3156141723482731,0.3174064717911704,0.3189327218719058,0.3186052474147509,0.3227593152064451,0.3249034070951879,0.3289442278622007,0.3323172118840711,0.3362563775510204,0.3395881871418676,0.3427102238354507,0.3444684245097119,0.3436024551463645,0.348698315467075,0.3470225872689938,0.3540166204986149,0.3504835589941973,0.0,2.5637704377431074,54.14853213035635,176.2347203480817,250.6951501326429,fqhc4_100Compliance_implementation,83 -100000,95665,45035,426.5509852088016,6161,63.0220038676632,4812,49.66288611299848,1853,18.96200282234882,77.28108161739658,79.66698108097467,63.29287913429015,65.05516065236571,77.04791948113099,79.43807449482243,63.2044920813638,64.9712904790805,0.2331621362655909,228.90658615223455,0.0883870529263575,83.87017328522006,151.81232,106.78116598198262,158691.60089897036,111619.8881325277,384.85959,252.61288385696955,401671.1545497308,263431.77113570226,372.52148,181.9880853660564,385300.3501803167,187118.0906764277,3435.352,1569.7336269776588,3548205.4879004858,1598047.7781609346,1127.84419,504.3238575402548,1163409.721423718,511634.9527416028,1807.24736,769.3239773217095,1851064.736319448,770089.6060447803,0.38206,100000,0,690056,7213.254586316834,0,0.0,0,0.0,33221,346.61579470025606,0,0.0,34080,352.2500391992892,1611371,0,57842,0,0,0,0,0,73,0.7421732085924841,0,0.0,0,0.0,0,0.0,0.06161,0.1612573941265769,0.300762863171563,0.01853,0.3357630272952853,0.6642369727047146,24.631022158645536,4.3785326717750905,0.3150457190357439,0.240648379052369,0.2300498753117207,0.2142560266001662,11.252374088333983,5.8458115391722725,19.780195247286933,12264.60965017632,54.47487228451212,13.705895734805452,17.22169228221929,12.296778421908035,11.25050584557934,0.5656691604322527,0.7823834196891192,0.691952506596306,0.5772357723577236,0.1241513094083414,0.7236641221374046,0.9367396593673966,0.853904282115869,0.7180451127819549,0.1398305084745762,0.5065676756139349,0.6974564926372155,0.6344950848972297,0.5326991676575505,0.1194968553459119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0048256774703717,0.0069618518931974,0.0091637797035486,0.0112788072330817,0.0135636022972587,0.0159981238656524,0.0180197655899048,0.0203731152568361,0.0227740304404343,0.0250689524356358,0.0272085095897162,0.0294940353763883,0.0315281899109792,0.0333670478470874,0.0352988616272216,0.0372288632455613,0.039398436932402,0.0413589364844904,0.0432140586402059,0.0574315147209394,0.0711114368887306,0.0843349464115133,0.0977313860010943,0.1102494302355026,0.1251269572577232,0.1369576525791692,0.14831384077885,0.1592600513259195,0.1696376796031013,0.1825732407127756,0.194940605219804,0.205877547463701,0.2164441475088441,0.2266991414748118,0.2368132050983394,0.2474677459025557,0.2572590731372041,0.2650959800879675,0.2728252890438613,0.2788902795160617,0.2861362464250551,0.2925316125358829,0.2985621448906293,0.3039245512625494,0.3086380131829067,0.3130867478034168,0.318075177232621,0.3232813432642151,0.326894836413669,0.3264173866090712,0.3259951998675826,0.3252473847893695,0.3237233842095345,0.3225849731663685,0.3209143102760124,0.3192579085070958,0.319768302917606,0.3201376641610876,0.3210966542750929,0.3227647312796831,0.3247559717482739,0.3253166687707781,0.3274409829069428,0.3286652501448715,0.3294440093970243,0.3299822927971668,0.3341948498124625,0.3367715679051328,0.3392121116043119,0.3399372926796019,0.3414194915254237,0.3454431175361407,0.346812523576009,0.3476434904339711,0.3466635666124157,0.3452833054838219,0.352,0.3536388140161725,0.3519230769230769,0.0,2.52172860076258,57.19068831910735,175.82025045413698,263.8060242085831,fqhc4_100Compliance_implementation,84 -100000,95722,44854,424.4060926432795,6156,63.15162658532,4874,50.291469045778406,1893,19.29545976891415,77.3612597271838,79.72483619604883,63.34108899169471,65.08816989593812,77.1261900286957,79.49594034939744,63.25372514175754,65.00643747073897,0.235069698488104,228.8958466513833,0.0873638499371693,81.73242519914936,151.37122,106.42417215420174,158136.06067570674,111180.25653057998,385.68699,252.9937252146255,402311.9241135789,263692.2363714833,370.71712,179.92788210926983,383683.6359457596,185112.44527432777,3481.15996,1573.749704913366,3594993.491569336,1602526.938055829,1137.0209,497.607505553698,1171055.8283362235,503089.1893314236,1858.64522,779.604536731611,1898039.405779236,776842.2409177357,0.38109,100000,0,688051,7188.00275798667,0,0.0,0,0.0,33310,347.3391696788617,0,0.0,34008,351.72687574434303,1620452,0,58101,0,0,0,0,0,48,0.4910052025657634,0,0.0,0,0.0,0,0.0,0.06156,0.1615366448870345,0.307504873294347,0.01893,0.324124093224263,0.675875906775737,24.72535439721853,4.360518132357419,0.3286828067295855,0.2332786212556422,0.2197373820270824,0.2183011899876897,11.177557723016744,5.702145256110449,20.192795668700217,12282.775539664732,55.01397216646444,13.483250544618716,18.0322435741446,11.832199131556942,11.666278916144178,0.5560114895363152,0.7704485488126649,0.6885143570536829,0.5788982259570495,0.1043233082706766,0.7282091917591125,0.9022556390977444,0.8463476070528967,0.7490196078431373,0.1516587677725118,0.4958471760797342,0.6991869918699187,0.6365145228215767,0.5257352941176471,0.0926143024618991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045421364263119,0.006788983377646,0.0088488382724954,0.0109630834943557,0.013431498340156,0.0156527236758917,0.0178077296165824,0.0199883443925281,0.0221744471744471,0.0244019972727179,0.0265803933651722,0.0289825261490676,0.0310694013783441,0.0332174146346497,0.0353254970071023,0.0374462797079687,0.0394238452518082,0.041636337166982,0.0434710123786104,0.057618411160304,0.0716065148216379,0.085032729103726,0.0977297342769114,0.1102901651612087,0.1261641243564942,0.1383398371224974,0.1501681065667957,0.1608655253067894,0.1712276639761606,0.1838677031071682,0.1964218109444126,0.2075664510518019,0.2171237443571217,0.2268015170670038,0.2369696567293008,0.2465325781563573,0.2555144786668614,0.2643714645233695,0.2716192089360923,0.2791014925028035,0.2856558669922537,0.2922944112012487,0.2984329546406809,0.3048897295069048,0.3109105219145063,0.3150058704504009,0.3192908882958444,0.3239332720754765,0.3281173723167047,0.3269649920619971,0.3259865889853798,0.3248156694996341,0.3236912412448552,0.3222826248403291,0.3213006337834114,0.3197824265136062,0.3207927608930854,0.3225459939640914,0.3233971957615327,0.3241770587574429,0.3244580817578937,0.3256418862225205,0.3262036871308394,0.3270332739442385,0.3284728755095641,0.3294733230399725,0.3321338383838383,0.3334153976013786,0.3370084381467919,0.3408324984060479,0.3434375495953023,0.3472109184248419,0.3484193768478508,0.3494493186484973,0.3534472598703594,0.3608231707317073,0.3665653495440729,0.3654978962131837,0.3712,0.0,2.405053390257059,55.124808773840925,180.62535783523268,274.5206542702648,fqhc4_100Compliance_implementation,85 -100000,95647,44666,423.9861156126172,6019,61.62242412203205,4715,48.66854161656926,1867,19.070122429349585,77.2430810454354,79.6480131964734,63.27207635196621,65.0502832093376,77.00726625105007,79.41659536946048,63.18258717850508,64.965403402617,0.2358147943853339,231.41782701291905,0.089489173461132,84.87980672060758,150.25494,105.72457844255192,157093.20731439564,110536.22010366444,385.32275,253.07715986069496,402211.91464447393,263956.46557271737,369.497,180.10619684673276,383172.4466005207,185776.13807810112,3381.7565,1551.0620161905456,3491827.814777254,1578526.3492583642,1137.865,511.4146999670216,1172515.583342917,517554.8422501704,1838.4351,785.0044801551874,1880578.1258168053,785248.2781154596,0.37901,100000,0,682977,7140.600332472529,0,0.0,0,0.0,33210,346.5451085763275,0,0.0,33824,350.4866854161657,1618391,0,58063,0,0,0,0,0,69,0.7109475467082083,0,0.0,1,0.010455110981003,0,0.0,0.06019,0.1588084747104298,0.3101844160159495,0.01867,0.323473584308763,0.676526415691237,24.46791041275344,4.439486731935662,0.3230116648992577,0.2303287380699894,0.2150583244962884,0.2316012725344644,11.095914951582206,5.544662695922298,20.114928846431063,12119.804880857224,53.6588770878733,13.0113634279754,17.306016052683088,11.25117887203992,12.090318735174892,0.5465535524920466,0.7799263351749539,0.6749835850295469,0.5769230769230769,0.1071428571428571,0.7370855821125675,0.9254807692307692,0.8663366336633663,0.7584745762711864,0.1742738589211618,0.4742539496781743,0.6895522388059702,0.6058981233243967,0.5218508997429306,0.0881316098707403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026451272904167,0.0049297060434544,0.0073195740231261,0.0096526077281825,0.0118905943262844,0.0139925658129232,0.0160999235279123,0.0181649240320209,0.0204208933246073,0.0223237143383783,0.0244385191262434,0.0264441591784338,0.0286210868402649,0.0304225990563122,0.0325350949628406,0.034630020267196,0.0365678058280588,0.0385801027557216,0.0404518457649861,0.0422027148189078,0.0569007137408169,0.070945981333864,0.0843167310599697,0.0968896373875059,0.1094183849069352,0.1250198519836102,0.1367417843368501,0.1478484305697714,0.1583841626538255,0.1684997422237497,0.1816317941966742,0.1931871157995164,0.2043332861297807,0.2141018478963337,0.2232400731970809,0.2332523275297668,0.2424544021113136,0.2516290500777886,0.2601621394217103,0.2680551891823697,0.2759599893366714,0.282856674396271,0.2893069095819661,0.2940202524355713,0.3010135176240129,0.3070342205323194,0.3114468405215647,0.3157377885473791,0.3206657924462159,0.3247777307366638,0.32354646850176,0.3217272689695082,0.321049882107106,0.3190607934875502,0.318014514134144,0.3157733067117186,0.3146247696511406,0.3157695223654284,0.3160654614000514,0.3166744344459183,0.317702249519575,0.3185161623792295,0.3195633426582251,0.320101484092593,0.3220187691491158,0.3228519770458297,0.3236222732491389,0.3276814751665561,0.3296315882249251,0.3349469893978796,0.3367773338843734,0.3394946311234574,0.3414742170199304,0.3420207887496178,0.3422302431610942,0.3447496729694375,0.3414558435511408,0.3442924239330202,0.346831955922865,0.3514033064206074,0.0,2.349123431961768,56.69224230146092,174.91780342916573,256.4604791559604,fqhc4_100Compliance_implementation,86 -100000,95811,45006,426.66290926929054,6067,62.25798707872791,4764,49.07578461763263,1875,19.089666113494275,77.44904619750217,79.77575490812161,63.38601454967061,65.10708223342363,77.2234937483739,79.55459144737054,63.30282509697216,65.02855261094405,0.2255524491282727,221.1634607510717,0.0831894526984555,78.52962247957862,150.9596,106.24874890413253,157559.77914853202,110894.1028735036,388.03188,254.36299979451928,404352.55868324096,264839.4754198571,375.34824,182.1532215483878,387979.12557013286,187145.45611480385,3387.33372,1529.805801677663,3493006.2205801005,1554264.4077169243,1126.07936,491.70778985044734,1160541.065222156,498433.82268262224,1827.9611,754.6954259619184,1863782.425817495,751131.9935518628,0.38039,100000,0,686180,7161.80814311509,0,0.0,0,0.0,33397,347.89324816565943,0,0.0,34271,353.9050839673941,1624040,0,58229,0,0,0,0,0,80,0.8245399797518029,0,0.0,1,0.0104372149335671,0,0.0,0.06067,0.1594942033176477,0.3090489533542113,0.01875,0.3274972643426606,0.6725027356573394,24.639745858557983,4.406858071825578,0.3217884130982368,0.2371956339210747,0.2319479429051217,0.2090680100755667,11.327387069624308,5.8751597509823394,19.714568458772177,12191.106217884717,53.69526243461464,13.465921036301946,17.22203699826224,12.199561603080875,10.807742796969572,0.56696053736356,0.7902654867256638,0.6934116112198304,0.5656108597285068,0.1204819277108433,0.7392,0.927360774818402,0.8629032258064516,0.7396226415094339,0.12,0.5056915196357428,0.7112970711297071,0.6391042204995694,0.5107142857142857,0.1206030150753768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090244371752,0.0044702137796113,0.006564995484663,0.0084923964608242,0.0105148621576822,0.0126663476321871,0.0148037886279987,0.0171261188622051,0.0191517629024016,0.0215796420787672,0.0236409284213762,0.0258415435139573,0.0275801809210526,0.0299813646051046,0.0320654303925411,0.0340933745208847,0.0360292291131903,0.0381177544121611,0.0404164242373867,0.042224489371005,0.0574471636310529,0.0712545612329182,0.0848845009013541,0.0978092986603624,0.1100726019746894,0.1252430672979371,0.1364503614508914,0.1481572063546075,0.1594051378339165,0.169456313382808,0.1816461277071639,0.1936696553959166,0.2058341385037942,0.2170307487506274,0.2271764305550981,0.2367295514074467,0.2461139319437021,0.2553415926025675,0.2629225945921474,0.2704073473304242,0.2769154424068966,0.2838045912653975,0.2902407662997959,0.2966821586876784,0.3022816451097224,0.3077867996609628,0.312913804067281,0.3173226849210876,0.3218884673943898,0.3257605637506245,0.3244606633036385,0.3234785947398733,0.3226499024739346,0.322324282300095,0.3222271517302573,0.3208697109597598,0.3178327510779593,0.3188516965058019,0.3188806679337496,0.3191787628207403,0.3204858329762858,0.3217596229379418,0.3224199733244415,0.3229291984137593,0.3247114048953394,0.3259096206137511,0.3277703793953475,0.3310945895289267,0.3345112308445875,0.3368823691785954,0.3404853708323883,0.342728476821192,0.3466926314466989,0.3514292213207976,0.3576196295948106,0.3627046766403581,0.3635809059020893,0.3673842404549147,0.3753093208688479,0.3808437856328392,0.0,2.48310400759884,54.51717786008114,175.98058632562623,264.5492056674104,fqhc4_100Compliance_implementation,87 -100000,95802,45205,427.98688962652136,6080,62.26383582806204,4725,48.673305358969536,1885,19.237594204713886,77.3497797498425,79.6835880274197,63.33168066437421,65.06022024639819,77.1166933775818,79.45406945467542,63.24544747796666,64.97802749172648,0.2330863722607006,229.5185727442828,0.0862331864075542,82.19275467170917,151.03022,106.26654398517547,157648.29544268386,110923.095535767,383.90334,251.2835727832768,400086.28212354647,261655.17711872057,374.31134,181.8092699694458,386973.6539946974,186756.61498973545,3378.5642,1533.1157273639303,3484268.533016012,1557953.3489529763,1140.97481,498.9352848791207,1177195.3195131626,507032.57970933226,1848.5948,769.8948630978912,1890025.427444104,770982.1356791124,0.38247,100000,0,686501,7165.831611031084,0,0.0,0,0.0,33094,344.76315734535814,0,0.0,34141,352.581365733492,1620638,0,58169,0,0,0,0,0,73,0.76198826746832,0,0.0,0,0.0,0,0.0,0.0608,0.1589667163437655,0.3100328947368421,0.01885,0.333960194326908,0.666039805673092,24.680657848582165,4.470757490986397,0.3293121693121693,0.2226455026455026,0.2224338624338624,0.2256084656084656,11.364153628653892,5.8135240349098485,19.92990119723074,12271.131762186618,53.347272096759085,12.333814326942782,17.67653635493854,11.662830186623404,11.674091228254357,0.5555555555555556,0.7699619771863118,0.6940874035989717,0.5861084681255947,0.1116322701688555,0.7182186234817813,0.9344729344729344,0.8450363196125908,0.759493670886076,0.1282051282051282,0.4979942693409742,0.6875891583452212,0.6395450568678915,0.5356265356265356,0.1069711538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0047350117107891,0.0066880467655834,0.0087575816070467,0.0109754857084731,0.0130746906980296,0.0152222675367047,0.0174657778957361,0.0195733720371638,0.0217916436365125,0.0241824705279343,0.0263876624843419,0.0286157895819195,0.030748002306615,0.0329575111147787,0.0349042664214344,0.0366751203353863,0.0389283047050037,0.0408960558580275,0.0430731108010744,0.0569628176772524,0.0708646596886012,0.0846242532229326,0.0980043926480942,0.1105946584034233,0.1265660848143958,0.1374826317073429,0.1496668866137374,0.1603366514290596,0.1708907599077599,0.1842023036062535,0.1965694497051025,0.2071808481710699,0.2181170272072407,0.2276687494499692,0.2378008243584629,0.2477847465571502,0.2571415718205947,0.2654056936675252,0.2736504665407293,0.2802827002267154,0.2873393894754071,0.293909608128408,0.2998862479794049,0.3054530445760901,0.3102934476091962,0.3145214727761455,0.3193616074267184,0.3238871635610766,0.3278844250940035,0.3265586488342963,0.3249741788886593,0.3239365150959885,0.3237193409202791,0.323829496103278,0.3223715463475183,0.3202059405940594,0.3201970443349753,0.3208827652227426,0.3205439794131313,0.3210924905334983,0.3209920493651358,0.3214203414685241,0.3219793482633767,0.3230466027351167,0.3244743218947862,0.325508607198748,0.3289152096258695,0.3320191200586162,0.3364585385069923,0.3393788256631149,0.341776837652036,0.3433962264150943,0.3471181776486776,0.3445133408493048,0.3454566854990584,0.3462713936430318,0.3463238248292486,0.3480272108843537,0.3502321981424148,0.0,2.4506507955014745,53.91292471363701,173.37167597886778,266.1030437627897,fqhc4_100Compliance_implementation,88 -100000,95801,44997,426.6552541205207,6124,62.74464775941796,4840,49.94728656277074,1968,20.16680410434129,77.41775944651599,79.74466350177588,63.37436231324406,65.09469197983053,77.17079176200527,79.4979312538112,63.282786775480055,65.0052508027519,0.2469676845107216,246.73224796467247,0.0915755377640081,89.44117707862631,151.756,106.76071508052964,158407.53228045636,111440.08421679276,388.6163,254.11606980381768,405100.8548971305,264705.4204066948,368.68013,178.8417328425837,380961.4617801485,183774.05345902915,3544.34154,1601.7717175902058,3661288.994895669,1633575.482082866,1196.27906,520.8861989701727,1235320.1949875264,530324.5675621056,1949.15014,818.7397014631642,1999335.9985803904,826456.3161702908,0.38278,100000,0,689800,7200.34237638438,0,0.0,0,0.0,33420,348.2635880627551,0,0.0,33702,347.8669324954854,1619722,0,58134,0,0,0,0,0,72,0.7515579169319736,0,0.0,0,0.0,0,0.0,0.06124,0.1599874601598829,0.3213585891574134,0.01968,0.329608938547486,0.6703910614525139,24.61345650224228,4.394770837061106,0.3200413223140496,0.2208677685950413,0.2157024793388429,0.2433884297520661,10.941180009663904,5.505374610485114,20.98104869189589,12221.448249289955,54.6065584812712,12.703274197687476,17.406216694093484,11.597318432560964,12.899749156929282,0.5487603305785124,0.7857811038353602,0.7023886378308586,0.578544061302682,0.1052631578947368,0.7133706965572458,0.9264305177111716,0.8765432098765432,0.7025862068965517,0.1346938775510204,0.491506544138123,0.7122507122507122,0.6407342657342657,0.5431034482758621,0.097534833869239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377707348191,0.0048148561118263,0.0069710099339428,0.0090491763319859,0.0111547221996258,0.0132741561138482,0.0152278055244113,0.0173409814648485,0.0193789734050164,0.0216973021656363,0.0240364903649036,0.025960294812047,0.0279699433611216,0.0299991764124526,0.0321290109708818,0.034176469980686,0.0361995632871438,0.0380360974901773,0.0402846309666026,0.0422661308792604,0.056828377673448,0.0704690619805768,0.083906335164144,0.096394021196811,0.109087845309686,0.1246962621759249,0.1373608330420228,0.1490750584733149,0.1601062751416468,0.1703591018169352,0.1827362579451716,0.1952160243736427,0.2073971918470175,0.217108352169118,0.2277106977664004,0.2378892637867138,0.2481690800254155,0.2569265843824755,0.2652589605328742,0.2715939244212645,0.2785114323015955,0.2854557343359566,0.2922202931415276,0.2976375691136695,0.3026093918697609,0.3080332409972299,0.3119861045160323,0.3171791613722999,0.3219070032067859,0.3265023903910232,0.3249805175610674,0.3240946960323352,0.3231912408348227,0.3224344261111833,0.3220988240883715,0.3199099664671025,0.3182846386256861,0.3183018651268844,0.3201179498542671,0.3211058232180097,0.3205639498960849,0.3218605934039954,0.3231335172644428,0.3231670639606122,0.3243405563830298,0.3268695176865613,0.3282609932305592,0.3317126725219573,0.3336365863046293,0.3371333570834818,0.3391754449691246,0.3427617988240902,0.3462384513858337,0.3506139154160982,0.3519301211608904,0.3566259342745284,0.3634820188300663,0.3624418839700828,0.3682349741637204,0.3681992337164751,0.0,2.22431713569248,54.682393454583256,180.70579298668983,271.4211084810956,fqhc4_100Compliance_implementation,89 -100000,95714,44434,420.41916543034455,6072,62.09123012307499,4746,48.92701172242305,1903,19.41199824477088,77.3893283971574,79.74983318393355,63.35181630130408,65.0933625227622,77.1529352381021,79.51900895993252,63.26265755778911,65.0099030766808,0.2363931590552965,230.82422400102587,0.0891587435149645,83.45944608140599,151.34944,106.3940068270823,158126.752617172,111158.24939620358,380.85214,250.02781213345477,397228.1797856113,260545.6381861115,368.64216,179.82690779932025,381733.7484589506,185237.41550536832,3429.58302,1564.2374883059954,3537513.258248532,1588638.974764397,1147.12574,507.4541785631211,1182625.875002612,514314.2506262759,1868.42604,788.2735757183588,1908721.6708109577,784572.0923846225,0.3784,100000,0,687952,7187.579664416909,0,0.0,0,0.0,32808,342.05027477693966,0,0.0,33729,348.9667133334726,1622160,0,58171,0,0,0,0,0,65,0.6686587124140669,0,0.0,1,0.0104477923814697,0,0.0,0.06072,0.1604651162790697,0.3134057971014493,0.01903,0.3364105773744328,0.6635894226255672,24.88997456022875,4.377553761441273,0.3244837758112094,0.2229245680573114,0.2231352718078381,0.2294563843236409,11.341234740174222,5.921594341667572,20.21580350776637,12147.910530088238,53.46914407808754,12.61099482336659,17.26882199890179,11.635363907706306,11.953963348112843,0.5476190476190477,0.8071833648393195,0.675974025974026,0.5429650613786591,0.1184573002754821,0.716078431372549,0.94,0.841025641025641,0.6719367588932806,0.168103448275862,0.4857389801210026,0.7264437689969605,0.62,0.5024813895781638,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026130022180135,0.0048851186313559,0.006887597253076,0.0089152442553537,0.0112947826440567,0.0135170897542902,0.0158568400456546,0.018213914001755,0.0204767694932919,0.0227875042208556,0.0251870068654575,0.0275680223252759,0.0294084402840144,0.0312921388794532,0.0332594235033259,0.035425299947296,0.0373430236771541,0.0389821893509538,0.040683956135336,0.0428178522315289,0.0575716120677951,0.0716617831728756,0.0845562397071318,0.0976887000778144,0.1102513283292569,0.1255116394673661,0.1375575499119513,0.1488559777690235,0.159004220310914,0.1688024793299803,0.1810476662287031,0.193372855319241,0.2045575620522075,0.2148770272191419,0.2245903984331158,0.2352263410959207,0.2444017771427295,0.2536982664551764,0.2616432137993645,0.268639446430208,0.2762716569128634,0.2832608492330714,0.2897073603310671,0.2953897736797988,0.3007236698317103,0.3060611284880427,0.3103651059783289,0.314691449057947,0.3188206973312971,0.3229424790425476,0.3231029710154665,0.3217842865189377,0.3205455975726246,0.3199388008429318,0.3186927251697856,0.3170433720219914,0.3145525095428877,0.3149650075217476,0.3163432073544433,0.3176946086461078,0.3188313750396951,0.3208287336382274,0.3216085656329074,0.3218924347243919,0.3235025697680004,0.3238965150374964,0.3248481752653385,0.3276530548433494,0.3285071346334996,0.3307592293447854,0.3331066068108647,0.3368493586345807,0.3402528779014908,0.3412974444276425,0.3452414439756212,0.3450920245398773,0.3494925011361915,0.355084067253803,0.3578363384188627,0.3651468315301391,0.0,2.4458292405261486,55.52421174006893,171.8363823272024,262.84150271858505,fqhc4_100Compliance_implementation,90 -100000,95675,44806,424.4996080480794,6003,61.59393781029527,4707,48.63339430363209,1886,19.346746799059314,77.35982293729873,79.73573677805412,63.33991942654043,65.09007257525343,77.12658287807761,79.50383538380397,63.25321544912673,65.00637767474339,0.2332400592211172,231.90139425014425,0.0867039774137055,83.69490051003936,150.82034,106.15399319487692,157638.19179513978,110952.6973555024,384.8759,252.38776800203792,401724.1912725372,263246.9171696242,371.35951,180.862647942534,384760.2090410243,186355.24248864112,3379.96372,1541.7955072056266,3494146.5482100863,1572883.71800954,1132.62895,500.2534983997444,1166416.441076561,505454.9676357237,1856.1777,777.1537000038861,1906748.534099817,783141.3662193372,0.3797,100000,0,685547,7165.372354324536,0,0.0,0,0.0,33166,346.0674157303371,0,0.0,33934,351.28298928664753,1620537,0,58098,0,0,0,0,0,81,0.8466161484191272,0,0.0,3,0.0313561536451528,0,0.0,0.06003,0.1580984988148538,0.3141762452107279,0.01886,0.3329621380846325,0.6670378619153675,24.521132654510467,4.322808256079245,0.3235606543445931,0.2292330571489271,0.2164860845549182,0.2307202039515615,11.101370963709051,5.703863553331397,20.009062680766103,12169.767207600633,53.09045818685888,12.745530410874736,17.10369514881153,11.365079551996306,11.876153075176305,0.5629912895687275,0.7859128822984245,0.7038739330269206,0.6045142296368989,0.1049723756906077,0.7323717948717948,0.9361702127659576,0.8733850129198967,0.7325581395348837,0.1541850220264317,0.501879155825383,0.705547652916074,0.6461267605633803,0.5611038107752957,0.0919674039580908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023595414590675,0.0045408013298061,0.0067163800537716,0.0090999573439499,0.0115096795184642,0.013598656420174,0.0157225975402235,0.0180182018528343,0.0201331998610799,0.0223627138063671,0.0243202819267728,0.0266427289048473,0.0287273624272822,0.0306421886100843,0.0325638486611379,0.034726887499354,0.0366263962648943,0.0387064655977099,0.0408258740604435,0.042791337515893,0.0580965315503552,0.0721742317156169,0.0853520298921029,0.0984638047138047,0.1101805754788625,0.125534346298726,0.1372861206640343,0.1488858591453283,0.1594492607993842,0.1701547642046064,0.1838869912829851,0.1957533890597254,0.2068050009248882,0.2165267731097954,0.2259048416045454,0.2354283435610004,0.2445567868581695,0.2536477888441736,0.2622644077022522,0.2694090581327473,0.2761029199190517,0.282484884632027,0.2887277287461846,0.2950664591066938,0.3005822416302766,0.3062219213490061,0.3113338415586688,0.3153722032347821,0.3198541297572709,0.3238819945402033,0.3224821836762135,0.3217266938955127,0.3212177563641998,0.319702548552451,0.3196024623600089,0.3185239581420965,0.3168381072954581,0.3167887527510429,0.3168135535210062,0.3174464129288306,0.3187696806117859,0.3190164647283221,0.3204499748617396,0.3211244944021095,0.3229176674032087,0.3241725384155378,0.3255305867665418,0.3282220131702728,0.3329253793971606,0.3366062237706865,0.3405434881395983,0.3439778593858108,0.3464731605298181,0.3510907003444317,0.3500613149702858,0.3505130040563111,0.3533742331288343,0.3567251461988304,0.3631706659476948,0.3605051664753157,0.0,2.1915011335727943,54.596877169411606,169.48577427248026,266.0964453378358,fqhc4_100Compliance_implementation,91 -100000,95872,44463,420.3938584779706,5969,61.237900534045394,4654,48.1579606141522,1875,19.254839786381844,77.34109898624328,79.6320857632759,63.34986309044478,65.0441497236138,77.1167003472589,79.40648515541123,63.26836792111931,64.9639407628083,0.2243986389843826,225.60060786466352,0.0814951693254713,80.20896080549278,152.20084,107.07575821674766,158754.21395193593,111686.1630264808,383.58758,251.5114147491732,399688.10497329774,261927.5321643077,363.59194,176.56714677827625,377000.3963618158,182403.37509546283,3373.189,1517.2467531739396,3490024.605724299,1554368.3275182536,1126.8934,492.347234800904,1164353.7633511347,502550.97448201646,1842.84844,757.190716289597,1893551.2558411213,766024.7309369306,0.37904,100000,0,691822,7216.100634178905,0,0.0,0,0.0,33050,344.29238985313754,0,0.0,33188,343.8960280373832,1617876,0,58066,0,0,0,0,0,84,0.8761682242990654,0,0.0,1,0.0104305740987983,0,0.0,0.05969,0.1574767834529337,0.3141229686714692,0.01875,0.3197758206565252,0.6802241793434748,24.77984260658764,4.408385400023865,0.324881822088526,0.2221744735711216,0.217877094972067,0.2350666093682853,10.929097959022954,5.502384050886174,19.80074889381676,12126.389896482897,52.55338763396003,12.369644562792969,16.99817114993487,11.371014692909414,11.814557228322784,0.5504941985388913,0.7852998065764023,0.6686507936507936,0.5986193293885601,0.1206581352833638,0.7267441860465116,0.913279132791328,0.8337730870712401,0.7948717948717948,0.1621621621621621,0.4889855072463768,0.7142857142857143,0.6134157105030892,0.5397435897435897,0.110091743119266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022378613741076,0.0044279620228794,0.0067451744109383,0.0090766950271082,0.011099140121562,0.0134026703574045,0.0155567101684036,0.0174955368528436,0.0195902191898351,0.0215636731896437,0.023989265264732,0.026245346297037,0.0283167116871912,0.0301867380009259,0.0322823286965481,0.0343372001816455,0.0363653283426219,0.0384065478657273,0.040508273986255,0.0426021098187719,0.0574214066002815,0.0706761417075974,0.0840665325959443,0.0961112336305304,0.1080867642413393,0.123494993874361,0.1357916145844367,0.147115415280273,0.15803849600956,0.16806506574083,0.1807529669998601,0.1928616222995912,0.2043172035998434,0.2142646367719865,0.223951687420249,0.2339225980815666,0.2437255995538204,0.252330772950663,0.2604419538534837,0.2688503194193208,0.2764222941720629,0.2842346449697224,0.2909305900437507,0.2967127716903179,0.3021801937410474,0.3069178824921135,0.3125328330206379,0.3163616942816088,0.319936876689648,0.3234894369449613,0.3228333737177934,0.3218926611938451,0.3203347327491476,0.3204855534817772,0.3199625061373882,0.3180487206610556,0.3153782764413172,0.3166836617216539,0.3176002469728672,0.317432970819425,0.3181381686719765,0.3200611341577182,0.3218719750852237,0.3218470950763625,0.3232829603797346,0.3249442330402834,0.3252083751038295,0.3285375494071146,0.3317980451445046,0.3348448687350835,0.3371986851716581,0.3394759267149552,0.3406204587097997,0.3427047619047619,0.344889646679928,0.3470749434052186,0.3492624462200369,0.353582240161453,0.3545554335894621,0.3650248186330661,0.0,1.4390864524150302,53.49693357277566,173.4608650947714,261.3240336694945,fqhc4_100Compliance_implementation,92 -100000,95651,45206,428.0457078336871,6114,62.71758789766965,4760,49.26242276609759,1923,19.790697431286656,77.31769350596971,79.74065894361165,63.289715480586615,65.08170752848349,77.07223700635433,79.49415883454823,63.19871865005789,64.99250911469291,0.2454564996153863,246.5001090634189,0.0909968305287307,89.19841379058369,151.4172,106.4894278600622,158301.74279411611,111331.22273688953,384.55059,252.60736033163224,401547.113987308,263604.77185981564,373.9691,182.02806591223572,387913.78030548553,187922.87142879068,3437.74638,1572.4010750865014,3558531.5992514454,1608373.9376342148,1147.89259,509.3693108525232,1184727.6139298074,517172.356642924,1893.7882,797.7672970799264,1949765.0416618749,806854.241545175,0.38229,100000,0,688260,7195.533763368914,0,0.0,0,0.0,33122,345.7674253274927,0,0.0,34221,354.69571672015974,1614636,0,57927,0,0,0,0,0,74,0.7736458583809892,0,0.0,0,0.0,0,0.0,0.06114,0.1599309424782233,0.3145240431795878,0.01923,0.326351984995311,0.673648015004689,24.433416453963883,4.421158569099863,0.3165966386554621,0.2313025210084033,0.2184873949579832,0.2336134453781512,11.41107447472976,5.8702433460705805,20.441928086234608,12260.761481031675,54.04142375885591,13.178582942804235,16.969206213228322,11.687942583133507,12.205692019689844,0.559453781512605,0.7720254314259763,0.7126741871267419,0.5788461538461539,0.1232014388489208,0.7146207974980453,0.8880597014925373,0.8756345177664975,0.6944444444444444,0.1601731601731601,0.5024418270611893,0.7052932761087267,0.6549865229110512,0.5418781725888325,0.1135073779795686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110543804198,0.0046748874376343,0.0070862944162436,0.0094818036768666,0.0118225197635496,0.0142318663406682,0.0164446167343357,0.0186556871238978,0.0210105103722125,0.0233399618688369,0.0255094184673818,0.0276383976309944,0.0293687570796004,0.0313596038786878,0.0332589424090261,0.0351828473271383,0.0374187394374228,0.0396368697675384,0.0416783740751147,0.0436437584732505,0.05809505894156,0.0723835869064084,0.0857307914500288,0.0978576845298281,0.1104586690886816,0.1257652466795178,0.1381307656336351,0.1490432279729225,0.1597928769350921,0.1703924117261604,0.1829548519337612,0.1955046925461126,0.2068871603808527,0.2163393610146657,0.2258629810871577,0.2366240307067659,0.2462640691189127,0.2557243740637706,0.2643896124541542,0.2722605486924434,0.2795627959753146,0.2862810265532293,0.2924804282685679,0.2983710385528872,0.3038100913303093,0.3083731939444746,0.3138287888078285,0.3180696218637081,0.3225505564120169,0.3278326815347215,0.3267506908404664,0.3258685239222595,0.3246709321006792,0.3237949414262809,0.3220341499628805,0.3204866910829489,0.3183078507486334,0.318744053282588,0.3191460313667935,0.3200099702672387,0.320578898225957,0.3213230950974601,0.3216426608941803,0.321066441341279,0.322880788365863,0.3247936458495561,0.3253675427144236,0.3281982376101494,0.3312128626354421,0.3353404904329913,0.3379105839416058,0.3399287271953619,0.343046357615894,0.3450559488467686,0.3491854223561541,0.3484650942278061,0.3527428746552252,0.3525756664662257,0.3550328227571116,0.3570342205323193,0.0,1.9962804176111355,56.25795203186647,180.74715347993964,257.34080630936097,fqhc4_100Compliance_implementation,93 -100000,95721,44953,425.7164049686066,6092,62.54635868827112,4752,49.16371538115983,1889,19.368790547528757,77.34880342590687,79.70511081605183,63.338894218876014,65.076698437784,77.11002691562484,79.46967638207408,63.24981278242306,64.99139099260947,0.2387765102820225,235.4344339777441,0.0890814364529575,85.3074451745357,151.12658,106.27403771736228,157882.36646086018,111024.78841357934,383.25931,251.00525086268672,399909.65409889154,261743.7063781074,368.14882,178.96208989751625,382197.1145307717,184978.07529666295,3410.77164,1551.7607827608426,3532776.3082291246,1590692.7052817962,1127.22032,496.7761283370536,1166789.461037808,508181.2894318746,1853.48564,780.839168026793,1903945.132207144,786773.6852514697,0.38219,100000,0,686939,7176.471202766373,0,0.0,0,0.0,33026,344.5116536601164,0,0.0,33696,349.62025051973967,1621556,0,58211,0,0,0,0,0,76,0.7939741540518799,0,0.0,0,0.0,0,0.0,0.06092,0.1593971584813836,0.3100787918581746,0.01889,0.3382858930247107,0.6617141069752893,24.473422801922435,4.381319559856291,0.3152356902356902,0.2335858585858586,0.2274831649831649,0.2236952861952862,11.11628555968139,5.640683492896516,20.1165656995789,12242.66893195592,53.78581702817222,13.33062542718472,16.927501652687223,11.868906321017354,11.658783627282926,0.5549242424242424,0.7918918918918919,0.6915887850467289,0.5642923219241444,0.1053621825023518,0.714968152866242,0.9210526315789472,0.859375,0.6752136752136753,0.1136363636363636,0.4974256292906178,0.7138728323699421,0.6337522441651705,0.5336481700118064,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974015979261,0.0043384827474354,0.0068895540561108,0.0092239864281433,0.0113978363429315,0.0132641115691963,0.015850041281458,0.0178013677656425,0.0199376628685299,0.0219640755334936,0.0240760100854805,0.026376558731462,0.0284374807229658,0.0304630716330018,0.0324933208173875,0.0345315712794866,0.0368805781615622,0.0389080835434369,0.0408413653992118,0.0430746147353943,0.057666200213037,0.0714173582694058,0.0843815898528069,0.0974665432202676,0.109160909234745,0.1243044830431379,0.1367586667940024,0.1484083892260193,0.1595923120479482,0.1701082350921982,0.1828640368830385,0.1946827964551976,0.2054015249573077,0.2156693318166406,0.2256005634236792,0.2350666046058027,0.2447518071212307,0.2545886539197802,0.2638207504315435,0.2725814398496671,0.2789270788715111,0.2855956197206168,0.2924227896350486,0.2982063048922225,0.3036625054646136,0.308871891512397,0.3140217989100545,0.3191194600846477,0.3234814987200372,0.3274476215575174,0.3261791024692189,0.3251368374728388,0.3246326999197081,0.3236548105967539,0.322702887458947,0.3211224052415651,0.3200411424954505,0.3198989965239063,0.3206993102506317,0.3210568597697045,0.3211017757901236,0.3215843381816028,0.3232308432927978,0.3254357115690091,0.3269244651923864,0.3287032210987178,0.3325244104379604,0.3363344456336964,0.340118625627347,0.342634858889374,0.3471519131664158,0.3489118228971712,0.3519674009932509,0.3553006390022326,0.3537279453614115,0.3601918465227818,0.3611544461778471,0.3677874636778746,0.3642235327155293,0.3630697312037397,0.0,1.8628149975008252,55.14823409289043,177.92419604268682,263.25709109821014,fqhc4_100Compliance_implementation,94 -100000,95629,44709,423.7312949000826,6041,62.00002091415784,4785,49.37832665823129,1885,19.28285352769557,77.26744378178137,79.68238019428496,63.28338998351626,65.06921890094759,77.03229027114931,79.45002049984141,63.19541074429401,64.98515917857664,0.2351535106320597,232.3596944435451,0.0879792392222498,84.05972237095227,151.73224,106.69196030667877,158667.60083238347,111568.62490110612,383.15752,250.903066151194,400034.6756736973,261735.14953747703,369.60428,180.05073892494775,382507.1160422048,185167.28314679465,3451.28954,1564.3072389078611,3569113.6057053823,1595881.3214692832,1138.91282,498.8855901514663,1177336.1323447907,508054.6070245067,1844.32254,772.8656424461586,1889862.0293007356,774930.4277080348,0.38026,100000,0,689692,7212.163674199249,0,0.0,0,0.0,33116,345.6169153708603,0,0.0,33806,349.4442062554246,1614182,0,57960,0,0,0,0,0,69,0.7110813665310731,0,0.0,2,0.0209141578391492,0,0.0,0.06041,0.1588649871140798,0.3120344313855322,0.01885,0.3263307534354762,0.6736692465645238,24.47976261880516,4.395289807269788,0.3243469174503657,0.2296760710553814,0.2171368861024033,0.2288401253918495,11.202506874828156,5.791102479591573,20.095328652292885,12191.094468688832,54.15613616130538,13.157556179420837,17.692131387286302,11.503576555566008,11.802872039032236,0.561546499477534,0.7843494085532302,0.7126288659793815,0.5697786333012512,0.1159817351598173,0.7524904214559387,0.9334916864608076,0.8797169811320755,0.7695473251028807,0.1336405529953917,0.4899425287356322,0.6917404129793511,0.649822695035461,0.5087939698492462,0.1116173120728929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784505643706,0.0046035286960048,0.0069444444444444,0.0092573774489878,0.0114650199900304,0.0133621216441927,0.0156004649550339,0.0176112058316062,0.0200106341642978,0.0223041474654377,0.0245118148999015,0.0268113038922617,0.028825084613248,0.0308706852138073,0.03306151940545,0.0350260524356959,0.0368087993122948,0.0384252099270315,0.0406624156117046,0.0429156804887966,0.0579646526406003,0.0723330714846818,0.0854835491425391,0.0981814735645013,0.1101116952767044,0.1252356043118236,0.1378761005554552,0.1484745473726836,0.1590865333190715,0.1691063546443568,0.1822289806306889,0.194750468514727,0.2063193182189231,0.2164392256426531,0.2266637309407166,0.2371899269895082,0.2461186450136726,0.2549937542904086,0.2627150400272526,0.2703712618777438,0.2767556301742604,0.2833142242085312,0.2898871615141433,0.2960546045607763,0.3014896333677874,0.3063992594878124,0.3109455228553537,0.3154994464028914,0.3204571665522022,0.3249534081446528,0.3238309813550633,0.3234301147873059,0.3223426168909958,0.3213691053614606,0.3208471723685974,0.3194802405498281,0.3176789880489469,0.317658270485204,0.3187654954261776,0.319289594053745,0.3199992494887141,0.3206615503599262,0.3218180672004034,0.3224246765456418,0.3241419205553413,0.3250765085925035,0.3263593549307835,0.3301744222656004,0.3333216032656508,0.3345171588188348,0.3374281113411548,0.3423588308122948,0.3442068305138844,0.3456771114019555,0.3469947941315665,0.3468873695573947,0.350651364764268,0.3532072368421052,0.3534923339011925,0.3488372093023256,0.0,2.5753841840297262,56.81137117673956,172.81266981981435,264.9240188116186,fqhc4_100Compliance_implementation,95 -100000,95834,44818,423.8057474382787,6143,62.806519606820125,4755,48.98052883110378,1882,19.18943172569234,77.40182060844235,79.71366989809766,63.36325590393732,65.07489028921292,77.16558101632948,79.48284976886112,63.273920097023385,64.99077391734022,0.2362395921128666,230.82012923654813,0.0893358069139367,84.11637187269605,150.8474,106.1073151636408,157404.8876181731,110719.90646705846,384.06743,252.5886138739548,400123.9121814805,262929.5801844385,369.38866,179.58322800577216,381660.6736648789,184494.9735895749,3403.00307,1554.910706676994,3505056.837865476,1576626.0478295744,1129.56773,500.2962708899279,1162535.8640983368,505909.3441679652,1846.82856,782.0637596562998,1884709.122023499,779624.8424740173,0.38217,100000,0,685670,7154.767619007867,0,0.0,0,0.0,33163,345.36803222238456,0,0.0,33818,349.1036584093328,1622896,0,58253,0,0,0,0,0,64,0.6678214412421478,0,0.0,1,0.0104347100194085,0,0.0,0.06143,0.1607399848235078,0.3063649682565522,0.01882,0.3236886894630976,0.6763113105369024,24.648580497932038,4.331187512969343,0.3226077812828601,0.2407991587802313,0.2138801261829653,0.2227129337539432,11.00853055227446,5.56246700578368,19.9410550659974,12306.053159683182,53.76290111043412,13.568221703879564,17.47339867402278,11.286049492822675,11.435231239709095,0.5549947423764459,0.7650655021834061,0.6923076923076923,0.5801376597836775,0.1048158640226629,0.7229199372056515,0.909952606635071,0.8312655086848635,0.7253218884120172,0.1527777777777778,0.4935363401321459,0.6804979253112033,0.6427939876215738,0.5369897959183674,0.092526690391459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021567872982441,0.0043377352562608,0.0064521365093535,0.0086230537188823,0.0110917945120525,0.0133250539517081,0.015614330122815,0.0176668707899571,0.019778400147188,0.0219952304432821,0.0243247398903182,0.0265221496900275,0.0287608572750167,0.0308786886596239,0.0331284293906514,0.0351928581023134,0.036974929093431,0.0388958594730238,0.0409668338994318,0.0430357087101776,0.057249241231135,0.0715809061827001,0.0852038143141569,0.0975881339552082,0.1102439332659251,0.1257644412053614,0.1377249949677405,0.1490549188867391,0.1601609614994609,0.1710361378660124,0.1837595343883468,0.1969325219684605,0.2083392195429403,0.2184627826410063,0.2283502660861151,0.2390300614515861,0.2477131765650796,0.2570348876442405,0.2660880417517585,0.2738336481767703,0.2805797839113434,0.2868619540431503,0.2937822363128756,0.2999568614293246,0.305799776558022,0.3101409283532078,0.3145312617278391,0.3195087219651121,0.3242690815006468,0.328472927186194,0.3276216863256714,0.3271525181438311,0.3259558192837156,0.3245989536040126,0.3231729002430206,0.3226176281757315,0.3220237249048318,0.3222029346259662,0.322847399829497,0.3238814477058991,0.3254592685342652,0.3265997910959579,0.3273050015662525,0.3278929765886287,0.3290708812260536,0.329964405414534,0.3311386082415711,0.3330938173638664,0.3345200698080279,0.3390239083185141,0.3406778121024895,0.3411140583554377,0.3407992973210365,0.3427706283118849,0.3414996288047513,0.344329654848556,0.3517251861985104,0.350434255705918,0.3618241398143091,0.3728170083523158,0.0,2.438745245102678,55.44658082298879,176.4306013796063,260.9461872480801,fqhc4_100Compliance_implementation,96 -100000,95696,44918,425.86941982946,5986,61.32962715265006,4707,48.60182243771945,1896,19.44699882962715,77.32145341825886,79.70744675648857,63.3143933609397,65.07968883604111,77.08350518777652,79.47212884871495,63.22617175012631,64.99529965402232,0.2379482304823312,235.31790777362005,0.0882216108133846,84.3891820187963,151.69374,106.75865734069612,158516.28072228722,111560.20872418504,388.6228,255.0773876954579,405506.2489550243,265954.5306966414,373.93653,181.8234809836488,387124.09087109176,187254.6469402094,3431.37234,1559.604222736429,3544679.0461461297,1588726.7416991591,1143.77731,507.5427002271649,1181074.454522655,516236.4958063125,1866.99454,778.6060233764445,1916338.990135429,783533.1964992359,0.38087,100000,0,689517,7205.285487376693,0,0.0,0,0.0,33485,349.31449590369505,0,0.0,34202,353.7974418993479,1614642,0,57911,0,0,0,0,0,78,0.8046313325530848,0,0.0,0,0.0,0,0.0,0.05986,0.1571664872528684,0.3167390578015369,0.01896,0.3331737673528004,0.6668262326471996,24.49819584013495,4.430853299758757,0.3144253239855534,0.2258338644571914,0.2245591671977905,0.2351816443594646,11.145644747575876,5.753216718927898,20.15343736224117,12216.447143558124,53.29892253686289,12.580873373598472,16.914745696858066,11.816452493253983,11.98685097315238,0.5595920968769917,0.7648165569143932,0.7148648648648649,0.5912961210974456,0.1246612466124661,0.7423167848699763,0.9151670951156812,0.8613861386138614,0.749034749034749,0.2027649769585253,0.4921465968586387,0.6780415430267063,0.6598513011152416,0.5401002506265664,0.1056179775280898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365566993596,0.0043403305952743,0.0067199935033295,0.0089125110517169,0.011334038743285,0.013711188982153,0.0160416900374272,0.0181541571794688,0.0200678811670653,0.0222124410141975,0.0241956980868994,0.0263201133726303,0.0284950108013578,0.0306977319332666,0.0327222428671704,0.034864604981544,0.0367205303501139,0.0384938714933629,0.0404039353537034,0.0424622696573,0.0565710585138607,0.0706501826708679,0.0840968483360095,0.0969598754064548,0.1088720313142929,0.1248465348630455,0.1378322153349749,0.1494072914336837,0.1607390941928313,0.171031746031746,0.1836914956643507,0.195271908555594,0.206858298802571,0.2169946508855027,0.2273007282247596,0.2376107174490699,0.2471862485917299,0.255642478194407,0.2639260603311408,0.271579067903355,0.2785611011508877,0.2850694606857196,0.2920414733453271,0.2976808293881464,0.3030339850062575,0.3087192118226601,0.3137635108086469,0.3183124014847206,0.3221294309279416,0.3255406349248185,0.3250295921661466,0.3241899372278615,0.3232489451476793,0.3224372573638712,0.3214704790196807,0.3192724932581515,0.3172539393459498,0.3179041739187547,0.3186942707799529,0.3185666821478332,0.3196266586700652,0.3195878327597801,0.3207661839595951,0.3218462917320188,0.3240017361111111,0.324109947643979,0.3249584598636337,0.3270481965763375,0.3315954486208475,0.333850252495129,0.3374794969928923,0.3398420827998293,0.3423142911609582,0.3427714087866431,0.343655303030303,0.3476436023504017,0.3468788627935723,0.3471226704894532,0.3472722237607311,0.3539823008849557,0.0,2.2231393092855187,55.7062967612342,171.54658527076225,261.06921877856735,fqhc4_100Compliance_implementation,97 -100000,95716,44740,424.3073258389402,6054,62.13172301391617,4755,49.20807388524385,1897,19.55785866521794,77.3455376358958,79.73210478998223,63.32130932583449,65.08722552788855,77.1161290150624,79.50066256311263,63.23758780363441,65.00429220811858,0.2294086208333965,231.44222686960347,0.0837215222000793,82.93331976996399,151.27354,106.38697547753704,158044.15144803378,111148.5806735938,384.46636,251.9347658163448,401223.8601696686,262760.49544103886,367.02308,178.51723690011278,380158.3956705253,184016.0632838799,3423.88561,1545.3648299252095,3547670.7238079314,1585072.2240014316,1161.56674,508.51705755452485,1201496.5940908522,519218.1010014262,1860.36366,770.299170234198,1919237.4106732416,783914.3571092148,0.38077,100000,0,687607,7183.825065819718,0,0.0,0,0.0,33261,347.0266204187388,0,0.0,33638,348.1027205482887,1620828,0,58053,0,0,0,0,0,53,0.5537214258849096,0,0.0,0,0.0,0,0.0,0.06054,0.1589936181947107,0.3133465477370333,0.01897,0.3232339089481946,0.6767660910518053,24.45420251076441,4.398845913782691,0.3196635120925342,0.228391167192429,0.2235541535226077,0.228391167192429,11.108102016827385,5.740991832492817,20.03862794693007,12178.296838058726,53.62537780556204,12.969448008106095,17.090506629260503,11.761597990425596,11.803825177769848,0.5543638275499474,0.7762430939226519,0.6947368421052632,0.5710253998118533,0.1197053406998158,0.7219123505976096,0.9352331606217616,0.8681592039800995,0.6751054852320675,0.1565217391304348,0.4942857142857143,0.6885714285714286,0.6323792486583184,0.5411622276029056,0.1098130841121495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024822946534412,0.0048582585323799,0.0071374181430529,0.0092176670257525,0.0115264100268576,0.0137604400081482,0.0161938365523852,0.0182183960867212,0.0200016361256544,0.0221603244173186,0.0245730988154453,0.026437690656423,0.0285649629180081,0.0306861623749317,0.0322490763864522,0.0341982838829732,0.0362033603347904,0.0384727151960479,0.0405145430155049,0.0423530147219704,0.0574794268766448,0.0715720953596919,0.0848051716357606,0.096876347988932,0.1093227579078377,0.124677412531201,0.1362377582310312,0.1480814900799778,0.1587537409149209,0.1685914223157171,0.18150463461953,0.1938470534728087,0.2051262516325642,0.2155180902158572,0.2244269096591722,0.2349448309478441,0.2449088900543423,0.2542685533034891,0.2626565051714752,0.2698029432632229,0.2767401787882643,0.284188508594599,0.2907771236730737,0.296405788081531,0.3016144487706658,0.3066099234951169,0.311415616373334,0.3155289907488484,0.320660239782157,0.3251491811466575,0.3247749741773646,0.3240121663835151,0.3222354840974514,0.3222619116206717,0.3210432053995648,0.3189544677734375,0.3173399077059232,0.3176818256443933,0.3192902763072509,0.3205845049036245,0.3208931419457735,0.3212043181142914,0.3234688733932622,0.3250369309279735,0.3250867219117364,0.3269939131116278,0.3275040652725872,0.3309214458740995,0.3330406378420147,0.3351746612089178,0.3382453267840087,0.3393746687864335,0.3425594677712923,0.3471231212995294,0.3493556579813752,0.3511413887892912,0.3525069209474008,0.3631729200652528,0.3647798742138364,0.3724351529229578,0.0,1.8661812887947835,55.39601194079204,172.38285321887608,267.6523863611526,fqhc4_100Compliance_implementation,98 -100000,95620,44459,421.4808617444049,6061,62.309140347207695,4771,49.39343233633131,1951,20.048107090566827,77.23812690061078,79.66855845934639,63.25655152000609,65.05401067775574,76.99997673843382,79.42970030940185,63.16897881751984,64.96823161597769,0.2381501621769644,238.8581499445337,0.0875727024862556,85.77906177805517,151.37848,106.576252246152,158312.11043714703,111457.66455359974,384.88227,251.7240000951648,401996.4128843338,262738.93923359626,368.69679,178.21815425246493,382243.54737502616,183825.9646635554,3471.81167,1580.2953563571505,3596876.1451579165,1619004.0880982752,1193.45083,531.4495131176777,1236997.7619744823,544827.3496874734,1925.7611,803.8147295952891,1981556.5362894796,814246.5616793259,0.37779,100000,0,688084,7196.005019870319,0,0.0,0,0.0,33200,346.6534197866555,0,0.0,33790,350.1882451370006,1613592,0,57952,0,0,0,0,0,61,0.61702572683539,0,0.0,1,0.0104580631667015,0,0.0,0.06061,0.160433044813256,0.3218940768850025,0.01951,0.3283675709581308,0.6716324290418693,24.41402671367853,4.471816900761026,0.3175434919304129,0.2236428421714525,0.2242716411653741,0.2345420247327604,11.262562218263552,5.670691937119556,20.738152190607547,12137.82006675049,54.31775141307346,12.7812556893292,17.13810303827456,12.05757910933086,12.340813576138844,0.5596311045902327,0.7853795688847235,0.699009900990099,0.5869158878504673,0.129579982126899,0.7194244604316546,0.9318801089918256,0.8655913978494624,0.7490636704119851,0.1469387755102041,0.5028409090909091,0.7085714285714285,0.6447944006999126,0.5330012453300125,0.1247139588100686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023512242581482,0.0047467872972726,0.0069247014864755,0.0095341674882855,0.0117550073277967,0.0139368562608881,0.0160946504156254,0.0182241654067748,0.0204979236135261,0.022666516444235,0.0245526553394073,0.0263555377454455,0.0284782116465284,0.0303292715614111,0.0324469458356999,0.0345701750755349,0.0363981298141217,0.038352464550979,0.0402639851768575,0.0425946983527546,0.0565353293538371,0.0704390652834538,0.0835093027409205,0.0957777333094608,0.1089732081568859,0.1243909672499258,0.1360961203416479,0.1475638743511304,0.1582680703556297,0.1683870205475773,0.1812875592046349,0.1944715447154471,0.2059336253295853,0.2162280605648925,0.2257986313898775,0.2362333152107581,0.246205639253319,0.2544398714551502,0.2621817396149604,0.2702826830780536,0.2772234726315056,0.284263721317434,0.2906310431966211,0.2956676443717844,0.3022042964894537,0.3074365661034964,0.3114770559293102,0.3154167145208836,0.3193504384540435,0.3241626635965434,0.3230667440824207,0.3211846045568083,0.3197396105454905,0.3190348525469169,0.3173837287226913,0.3155362933591529,0.3138476205608961,0.3152637911426829,0.3155113246396706,0.3154037734496784,0.316348195329087,0.3181412683623099,0.3206281797922886,0.320794523622489,0.3215310773980367,0.3233102366322395,0.3237582970931563,0.3262941919191919,0.3273303964757709,0.3307405349630923,0.3326018378823207,0.3329605963791267,0.3370141342756184,0.3403882755995432,0.3462296929289135,0.3487028301886792,0.3488969477183439,0.3452547452547452,0.3436473165388828,0.3384088313665778,0.0,1.862009726386136,55.46139985394931,184.33967511002,260.4259848735984,fqhc4_100Compliance_implementation,99 -100000,95724,44897,424.4076720571644,6239,63.96514980569136,4869,50.34265179056454,1958,20.08900589193933,77.33641368994157,79.71157933190304,63.332022412709286,65.08960982379935,77.09544793320246,79.47257639822536,63.24258866064645,65.00350572504482,0.2409657567391008,239.002933677682,0.0894337520628383,86.10409875453229,151.32898,106.46079962289303,158088.3999832853,111215.96070253334,386.25368,252.837786615945,402957.0222723664,263581.7143202802,373.71242,181.0359013653552,387694.45489114535,187005.7811787761,2805.94388,1284.4999123961445,2901088.588023902,1311706.6486943134,1199.08028,531.523108780013,1235145.762818102,537788.9098993072,1926.11086,803.1262407435427,1976557.7075759475,807388.852910618,0.38138,100000,0,687859,7185.836362876603,0,0.0,0,0.0,33387,348.2094354602816,0,0.0,34202,354.51924282311643,1620225,0,58171,0,0,0,0,0,57,0.5954619531152062,0,0.0,2,0.0208934018636914,0,0.0,0.06239,0.1635901200901987,0.3138323449270716,0.01958,0.3232646834477498,0.6767353165522502,24.788275201978337,4.374840567745699,0.3132059971246662,0.2244814130211542,0.2333127952351612,0.2289997946190183,11.268402610993832,5.798723971854545,20.75351364531453,12293.034852449167,55.13454231068335,13.062029551681936,17.30565786248191,12.506745740680593,12.260109155838908,0.5508317929759704,0.7666971637694419,0.6878688524590164,0.590669014084507,0.1112107623318385,0.7290867229470452,0.910941475826972,0.8735083532219571,0.7845528455284553,0.1346938775510204,0.485698261357263,0.6857142857142857,0.6175406871609403,0.5370786516853933,0.1045977011494252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0044320936317812,0.0067008477587694,0.0090657777055045,0.0115662797676571,0.0139531094045994,0.0161943319838056,0.018582805799469,0.0207129931604183,0.0228589562475687,0.0250627850955871,0.0271757543402153,0.0292868527944881,0.0312287568235657,0.0334007470540891,0.0354728682170542,0.0376061296334644,0.0396277892465533,0.0416857202244855,0.043625,0.0584156554792088,0.0720585927282239,0.0854727745616243,0.0982927547201547,0.1106625629782659,0.1266012767936414,0.1385788039733274,0.1498638761272758,0.1599935955595879,0.1706143874872783,0.1838247955230305,0.195808506266694,0.2070741646291768,0.2178505499786999,0.2277891313424308,0.2381773753054477,0.2473341133210763,0.256555212138241,0.2655238483951793,0.2735716328281384,0.2806176106879933,0.2873979419013467,0.2942719410180065,0.2999293861381398,0.3050645963486383,0.3097359289247656,0.3143485761432107,0.3192968630840408,0.3240393323845258,0.3285490020183897,0.3276569967018913,0.3265047460289032,0.3253440108278818,0.3237991898148148,0.322263240941975,0.3204614841748362,0.3184175057480377,0.3195113529866329,0.3201889505031834,0.3217167289836664,0.3216154870659738,0.3218452169098746,0.3222503716421347,0.3220834915458667,0.3220742379074911,0.3238956032506772,0.3244388456252863,0.3290583441261016,0.3315131231284129,0.3339984038308061,0.3361989702096359,0.339650067294751,0.3432874243789419,0.3456885856079404,0.3515677118078719,0.3536467167433971,0.3564879564879565,0.3586644817697665,0.3533627342888644,0.3629770992366412,0.0,1.9296960170477515,57.58098074624599,179.22588962813856,269.5305886600323,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95607,44512,421.9565512985451,6015,61.57498927902768,4730,48.86671478029852,1884,19.308209649921032,77.26635035352784,79.70648314357241,63.26822878755484,65.0730101142669,77.02896216894945,79.47110460659755,63.17888920652207,64.98752128197589,0.2373881845783927,235.37853697486355,0.0893395810327675,85.48883229101989,150.82496,106.09092097662447,157755.1434518393,110965.64161266902,384.32766,252.27971807777857,401384.4488374282,263269.36058318656,368.45163,179.16605402876397,382347.1293942912,184965.57069843545,2722.72392,1255.621979375885,2814877.864591505,1280374.1034256814,1165.17991,517.5291262758299,1200517.9537063185,523125.0561502602,1849.18428,785.3798447636505,1897041.6601294884,787306.069378315,0.37854,100000,0,685568,7170.688338719969,0,0.0,0,0.0,33162,346.2089595950088,0,0.0,33859,351.04124175008104,1617204,0,58034,0,0,0,0,0,58,0.5961906554959365,0,0.0,0,0.0,0,0.0,0.06015,0.1588999841496275,0.313216957605985,0.01884,0.3218884120171674,0.6781115879828327,24.52298258247581,4.409256552213755,0.3226215644820296,0.2348837209302325,0.2167019027484144,0.2257928118393234,11.17922030470161,5.675802369264201,20.20395742666963,12116.47117339489,53.87673423306491,13.281995624333051,17.362692826716277,11.551067448946013,11.68097833306957,0.5566596194503172,0.7812781278127813,0.6946264744429882,0.5609756097560976,0.1217228464419475,0.7230769230769231,0.909307875894988,0.8883248730964467,0.6766917293233082,0.1312217194570135,0.4935860058309038,0.703757225433526,0.627208480565371,0.5204216073781291,0.1192443919716647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0047273649505452,0.0070785136136979,0.0093338213762811,0.0114513141019116,0.0137896592843238,0.0159311724363161,0.0181682556226561,0.0203609724154866,0.0224818116610308,0.0244570795188636,0.026632814587916,0.0287411342042144,0.0306938859676255,0.0327525124719832,0.0346012168370514,0.0367226368159204,0.0390631491483174,0.0409038395487047,0.0427917357612924,0.0572916122152408,0.0717631647891013,0.0851068299754196,0.0982946944880397,0.1102579268679101,0.1255521774595069,0.1375,0.1479229341355693,0.1587843624218549,0.169000311630256,0.1821447836875606,0.1946004553832809,0.2059803921568627,0.2160021038098681,0.2247010195646183,0.2350683351082712,0.2435255737045561,0.252415812591508,0.260971341560419,0.2683836182172766,0.2757506255212677,0.2824296941799313,0.2891684733032424,0.2949824914855855,0.300887537993921,0.3060070845830093,0.3104070583517144,0.3139643025492719,0.3182448635686046,0.3225299677879284,0.320635775862069,0.3200434890314056,0.319081775009512,0.3181220467320781,0.3168316831683168,0.3152333700845277,0.3135044413129186,0.3135370461639559,0.3146758729127856,0.3155683484106268,0.3164835164835164,0.3178683261326251,0.3194170271745978,0.3207399278883837,0.3216360174495674,0.3210076567277288,0.3218900068602789,0.3247946936197094,0.3268328807701802,0.3291578569433917,0.3332267202778031,0.3350922076537682,0.3389357518868522,0.3388260308299795,0.3397388059701492,0.3428907168037602,0.3469667021438345,0.345111423408954,0.3450627386797599,0.3496608892238131,0.0,2.332089449112685,56.90759795933103,177.63351485912162,254.86785754764543,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95713,44422,420.35042261761726,6093,62.64561762769948,4784,49.47081378705087,1964,20.185345773301435,77.34534288058313,79.71399855357203,63.32656324425341,65.07435330746537,77.0991220506905,79.46635160989112,63.23599902767889,64.98538200325336,0.2462208298926356,247.64694368090545,0.0905642165745135,88.97130421200927,150.94574,106.17009196123496,157706.62292478557,110925.46671949992,382.21663,250.57980283911863,398844.1695485462,261311.3086405386,367.05156,178.6732624315842,380098.7013258387,184075.66591531105,2767.53012,1267.3050439730912,2865462.204716183,1298041.816653006,1159.92232,511.8446121542495,1199119.7956390458,522014.5875212869,1926.82616,808.2825463789384,1983177.5202950488,819018.826574064,0.37806,100000,0,686117,7168.482860217526,0,0.0,0,0.0,32913,343.3493882753649,0,0.0,33629,347.96736075559227,1620282,0,58162,0,0,0,0,0,72,0.7522489108062647,0,0.0,0,0.0,0,0.0,0.06093,0.1611648944611966,0.3223371081569013,0.01964,0.3263190954773869,0.6736809045226131,24.66540404435925,4.290051899525454,0.3179347826086957,0.2295150501672241,0.2184364548494983,0.2341137123745819,11.211684997799662,5.955696937143515,21.07175848441577,12184.958944886232,54.24794975706535,13.03934024039625,17.052740123971418,11.824834003139166,12.331035389558508,0.5579013377926422,0.7868852459016393,0.6916502301117686,0.5885167464114832,0.1232142857142857,0.7200634417129262,0.9451697127937336,0.8451443569553806,0.7258687258687259,0.1512605042016806,0.499858075503832,0.7020979020979021,0.6403508771929824,0.5432569974554707,0.1156462585034013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0048547625321792,0.00724402418733,0.0095368677635588,0.0120502755801419,0.0140807786680784,0.0162584222704708,0.0183742841685126,0.0206386850121644,0.0226530591354372,0.0247985565784347,0.0267816800164304,0.0290057805846413,0.0312046070321111,0.0330853138770497,0.0350316825337757,0.0370025165439463,0.0393615806896837,0.0412767727178207,0.0430791034044371,0.0578658256401687,0.0718165548566704,0.085434570466207,0.0981524735391284,0.110737121995484,0.1262394835705592,0.1378329317098544,0.1489690282452179,0.1601637224413025,0.1710712600283152,0.1834744758333872,0.1954980023603547,0.2062151810584958,0.2162490558602344,0.2251037915579195,0.2361215802775683,0.2451726678125767,0.2543431297538143,0.2623501634580458,0.2699550953079179,0.2773908415669759,0.2840889159134227,0.290073263975192,0.2954387478727739,0.3001081448898501,0.3051154647564328,0.3106258842383343,0.3151603016545216,0.3193684701734374,0.3234081357545,0.3227177079961152,0.32159592061742,0.3218437892892963,0.3201905534157713,0.3195217818539141,0.3167548500881834,0.3150229539338293,0.3157307610282658,0.3171405195336469,0.3175828682488454,0.3190514484486918,0.3203810726049823,0.3215190403416584,0.3224643361028374,0.3234457145613273,0.3237896385227717,0.3255906519205072,0.3281401836933011,0.3320849812747191,0.3357038441784205,0.3406093678944975,0.3432344984883042,0.3440055352874575,0.3479554470552334,0.351799510081025,0.3520190023752969,0.3535075653370014,0.3516906256327192,0.3443617314585056,0.3557729941291585,0.0,2.0321722636213515,55.544208654225606,181.35142481938655,262.45613591478326,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95661,45003,426.2761208852092,6026,61.749302223476654,4691,48.45234735158528,1799,18.35648801496953,77.2498286400838,79.64815472146465,63.26585613190741,65.03866541224643,77.02369345832058,79.42625959826475,63.18128045588126,64.9588002311462,0.226135181763226,221.8951231999,0.0845756760261551,79.86518110023155,151.40268,106.59334228571448,158269.78601519953,111427.99603570376,385.1714,252.5152337006968,402053.7523128548,263381.4265162363,370.67249,180.5250409913573,384260.0432778248,186132.71574065395,2696.49812,1227.3828855194556,2786756.2747619194,1251054.2075866398,1111.56453,485.7261657664798,1149474.4357679724,495249.2403032377,1773.17686,748.1772864704975,1812051.055288989,746281.1415625851,0.38145,100000,0,688194,7194.081182509069,0,0.0,0,0.0,33233,346.7766383374625,0,0.0,33901,351.1985030472188,1609947,0,57787,0,0,0,0,0,53,0.5435862054546785,0,0.0,2,0.0209071617482568,0,0.0,0.06026,0.157976143662341,0.2985396614669764,0.01799,0.3318534961154273,0.6681465038845728,24.805129018005637,4.462632315384073,0.3223193348966105,0.2315071413344702,0.2185035173736943,0.2276700063952249,10.93170052103593,5.3751502702077865,19.25424933354904,12225.397078696602,52.859007127831,12.84444989466074,17.014841801875725,11.315638767938264,11.684076663356263,0.5529737795779152,0.7799263351749539,0.701058201058201,0.5492682926829269,0.1161048689138576,0.731442869057548,0.9203296703296704,0.8804071246819338,0.7477477477477478,0.1363636363636363,0.4916953035509736,0.7091412742382271,0.6380697050938338,0.4943960149439601,0.1108490566037735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629077353215,0.0048880911091504,0.0069122319099481,0.0092460881934566,0.0115755103701518,0.0137799686309657,0.0160704817065709,0.0183284831776178,0.0203415831458375,0.0226032097172294,0.0247915234939944,0.0267796610169491,0.0289447960076143,0.0308895828824093,0.032913823186281,0.0353500879098148,0.0373763017460235,0.0393172686593507,0.0413046870935858,0.0432932932932932,0.0578572846678718,0.0720412202708222,0.0850974506449479,0.0982195470999242,0.1104227789855837,0.1255702204676072,0.1374000403555536,0.1490078223245305,0.1596131627369592,0.1698088884591833,0.1820378921928272,0.1948688476594268,0.2064596327474157,0.2160765991050276,0.2260862847241383,0.236680407560084,0.2470922747982223,0.2558152652121923,0.2639420012746972,0.2718196753328814,0.2782758140183008,0.2855380928888575,0.2920074172689235,0.2979534872529085,0.3037092114725923,0.3086283869850731,0.313779161748826,0.3173713117895005,0.3219088204342007,0.325813242244906,0.3247774340407711,0.3239417186378939,0.3223294659638511,0.3208433630115135,0.319779400804889,0.3186560294568886,0.3172862011571689,0.3175028787629544,0.3181211270498819,0.3186091066984189,0.3199323689648694,0.3213224515668951,0.3219528563040013,0.3232221325441664,0.3233358246739156,0.325878095138907,0.3256943261202931,0.3279544672733527,0.3311572700296736,0.3345851286713839,0.3366650083668762,0.3388564515280627,0.3420443888715223,0.3455715367146101,0.3471367282223466,0.3510400752144788,0.3541033434650456,0.3552578156719448,0.3548121743899095,0.3553280242700038,0.0,2.2821464300960845,52.57287192789767,174.4566495549002,264.3791172339518,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95744,44751,424.1519050802139,6147,62.95955882352941,4806,49.60101938502674,1928,19.708806818181817,77.32698317968122,79.68647033950441,63.31555014592704,65.06111985275778,77.0828613172379,79.44773607712776,63.22382575140754,64.97516696248458,0.2441218624433219,238.73426237665285,0.0917243945195025,85.95289027320518,152.60234,107.31262206063464,159385.56985294115,112082.6391843193,385.52562,252.32717637197064,402045.06809826207,262925.70434906695,365.83326,176.98932520565066,379087.11773061496,182494.9015861717,2770.67472,1265.7709317016652,2860293.156751337,1288493.578398296,1151.20984,507.6993187085728,1189368.0230614974,517252.2546672095,1895.0048,798.0522797193275,1938848.909592246,796733.8977859028,0.37981,100000,0,693647,7244.798629679144,0,0.0,0,0.0,33279,346.93557820855614,0,0.0,33478,346.643131684492,1612480,0,57854,0,0,0,0,0,75,0.7833389037433155,0,0.0,3,0.0313335561497326,0,0.0,0.06147,0.1618440799347042,0.313648934439564,0.01928,0.3390458545622973,0.6609541454377026,24.50952579656317,4.447261929849263,0.3233458177278402,0.2207657095297544,0.2270079067831877,0.2288805659592176,11.260029641024332,5.7732901565858326,20.519882260166515,12165.56649972294,54.411467898575005,12.701219276369264,17.43155237726534,12.160586111426326,12.118110133514069,0.5582605076987099,0.8001885014137606,0.6872586872586872,0.5902841429880843,0.1109090909090909,0.7054741711642252,0.9203084832904884,0.8668407310704961,0.6931407942238267,0.1330645161290322,0.5038472499287546,0.7306547619047619,0.6285226302305722,0.5552825552825553,0.1044600938967136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.0046338545152197,0.0069930779692669,0.0091738459037711,0.0114924993643529,0.0135023674965633,0.0153668882816005,0.0176491604144337,0.0198892091330921,0.0219654244158077,0.0240345195145949,0.0261256082287966,0.0277749223905758,0.029738245773009,0.0319792032020466,0.0341927150607078,0.036194972460347,0.0382867930791253,0.040234902816755,0.0421736956159359,0.0565113899734825,0.0709129333975016,0.0839318479685452,0.0962098512327182,0.108489621219309,0.1231772953653868,0.1353593211349774,0.1468624548774904,0.1575712224063285,0.1678081456512871,0.1810616187314044,0.1931434142114384,0.2045162694526063,0.2146968072302339,0.2248043241339072,0.2357844332616551,0.245408642030475,0.253882975727882,0.262458396283212,0.270721588043827,0.2774283960483189,0.2844273145816005,0.2904086205057078,0.2960850931005918,0.3017288576886109,0.3077179385921611,0.3134863431816188,0.3174744784165785,0.3211413748378729,0.3251059783685274,0.3251356920631927,0.3238116215360471,0.322560649178665,0.3217657860871326,0.3206666369326376,0.3191420862206414,0.3177570093457944,0.3188974438953917,0.3196760524876982,0.3200171132146104,0.3207649557455886,0.3224251999605016,0.3229477220239345,0.3230690102419607,0.3243529298566343,0.3253241501656622,0.3262546613908736,0.3293862679816571,0.3337773882559158,0.3380727949621767,0.3405096062133805,0.3425906296374814,0.3438814591574056,0.3475785638378624,0.3529632408102025,0.3551512287334593,0.3533466074437126,0.3597239139261063,0.3630022321428571,0.374414976599064,0.0,2.2409129176304448,57.13234767397732,173.5034926248792,267.7699817271194,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95763,44741,423.1383728579932,6156,63.18724350740892,4834,49.93577895429341,1885,19.308083497801864,77.39144353273707,79.7279426424864,63.36142006586866,65.08632683372905,77.15198131798401,79.49105265181521,63.27306657833983,65.00132192852816,0.2394622147530611,236.88999067118743,0.0883534875288276,85.00490520088988,151.41324,106.50294779167832,158112.46514833497,111215.13297586574,386.8203,253.51292522857364,403389.79564132285,264184.2833125253,376.48656,182.36927012421745,389702.5677975837,187803.50910842387,2774.45832,1273.8792655048117,2868462.5586082307,1301490.9155987303,1178.0878,521.4692142922081,1213860.3531635392,528194.4240058291,1846.24384,774.128231422935,1893852.9494690013,780104.1946920183,0.37976,100000,0,688242,7186.930234015224,0,0.0,0,0.0,33314,347.3053266919373,0,0.0,34514,356.92281987824106,1619639,0,58151,0,0,0,0,0,68,0.710086359032194,0,0.0,0,0.0,0,0.0,0.06156,0.162102380450811,0.3062053281351527,0.01885,0.3411874128042164,0.6588125871957836,24.48604565335797,4.362440457999431,0.3227141083988415,0.240380637153496,0.2194869673148531,0.2174182871328092,11.43573933891734,6.0388942362159215,20.058526359114836,12197.630644046209,54.82959179285524,14.022667067442631,17.3590469439322,11.845078497787233,11.602799283693171,0.5773686388084402,0.806368330464716,0.7,0.590951932139491,0.1284490960989533,0.7342657342657343,0.9227272727272728,0.8873626373626373,0.7088122605363985,0.1396396396396396,0.5204398082886946,0.7354570637119113,0.6429765886287625,0.5525,0.1254523522316043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021666936659646,0.0047022102414949,0.0070006696292688,0.0093234884878276,0.01185549714797,0.0140868007491246,0.016588546973711,0.0187524231232272,0.0211157535576009,0.0231542113448473,0.0250717213114754,0.0273822225869993,0.0292845326291345,0.0312258781634984,0.0332859145637473,0.0349971076770514,0.0369159120310478,0.0390363295064455,0.0411300633010072,0.0431879498744778,0.0578779813162152,0.071852340145023,0.0853108411489477,0.0978977589416231,0.110477315141866,0.1258750132177223,0.1375865616085347,0.1487722881824758,0.1589295058682814,0.1687337199455455,0.1815020937166969,0.1936669983129298,0.2050496157901029,0.2158604264988638,0.2260511129431162,0.2364455165088076,0.2461905451951265,0.2550579089857221,0.2631322405858214,0.2698283752860412,0.2770034440514989,0.2837474579836843,0.2902096661660537,0.2963406599988021,0.3023015978937406,0.3077263943082926,0.312929676758081,0.3168333206116581,0.3212071799251983,0.3251940385046187,0.3242447860675123,0.3228238331296431,0.3219130899326594,0.3205137445403831,0.3198743033321475,0.3176310809985961,0.3157063930544593,0.3162286873711424,0.3165479881435045,0.3176569127134048,0.3193258426966292,0.3192649673977474,0.3207543216343635,0.3218642967473304,0.3236449521606054,0.323848344699642,0.3249480071792826,0.3279803514075193,0.3305150426266469,0.3336252537717447,0.3377092672216631,0.3432875687803836,0.346521491422422,0.3500420264384504,0.3509778112072207,0.3546484190655969,0.3608387388746417,0.3662113298513459,0.3660326086956522,0.3639832125143075,0.0,2.107947235578247,56.515449790221936,183.1913135663461,263.4822310439901,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95716,44840,425.2685026536839,6034,61.59889673617786,4746,48.894646663044846,1853,18.826528480086925,77.37264048070351,79.73117912736407,63.34029949113111,65.08147327920754,77.13389441783623,79.49716162384607,63.25077942725546,64.99683150449178,0.2387460628672784,234.01750351800388,0.0895200638756534,84.64177471576306,151.47726,106.51255950829092,158256.98942705503,111279.78551996627,385.7235,253.7093591973431,402290.21271260816,264367.46123672434,376.68587,183.24271360216048,389002.1104099628,187924.1939464284,2721.5602,1258.8426873928925,2805818.71369468,1277633.757567067,1143.44931,513.6973291125148,1177621.014250491,519685.02243073634,1823.22998,779.2847812855597,1855715.073759873,773426.4296892585,0.37999,100000,0,688533,7193.499519411593,0,0.0,0,0.0,33240,346.53558443729366,0,0.0,34416,355.20707091813284,1615404,0,57990,0,0,0,0,0,73,0.7313301851310127,0,0.0,0,0.0,0,0.0,0.06034,0.1587936524645385,0.3070931388796818,0.01853,0.339034045922407,0.6609659540775931,24.4867299826179,4.3803313773460975,0.3135271807838179,0.2404129793510324,0.2239780868099452,0.2220817530552044,11.151954577281566,5.738037130620358,19.817134046372225,12171.044501456445,53.80385049577279,13.625816642512254,16.715404297662392,11.777450401182316,11.685179154415827,0.5640539401601349,0.7931638913234005,0.6975806451612904,0.5559736594543744,0.135673624288425,0.729022324865281,0.9368932038834952,0.8782383419689119,0.6872586872586872,0.1818181818181818,0.5018856977081521,0.7119341563786008,0.6343012704174229,0.513681592039801,0.1219211822660098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670886075949,0.004337559413416,0.0064112318289256,0.0088255606109847,0.0110524763851183,0.0134678420913329,0.0156058876294544,0.0175558572259704,0.0199327397806376,0.0220800491350189,0.0243092223304454,0.0262109607605593,0.0284721293944659,0.0302786875115862,0.0323332783096731,0.0342717764273016,0.0364844858110136,0.0386155250383769,0.0404311267708106,0.0422347439355907,0.0566339156129598,0.0707222902344853,0.084740075911674,0.0974889372391973,0.1096515734542196,0.1247647444437395,0.1362850444984248,0.1482534006002937,0.1591916516240667,0.1693964453883365,0.1823822141795385,0.1938663982945384,0.2051778527140215,0.2158758984345086,0.2259420672653636,0.2364941987389044,0.2463467184656775,0.2552836923354089,0.263172244564106,0.2710029586477374,0.2785630766737286,0.2849150241116157,0.2915308867269431,0.2970488340554229,0.3020267230793546,0.3068735430876059,0.3111517321681211,0.3158343297631465,0.3207937966834522,0.3245172013507809,0.323671497584541,0.3231448253103989,0.321591980966057,0.32112265091219,0.3199815769533629,0.3185931494893506,0.3167444435656094,0.3172104779411764,0.3176548808346687,0.3174035312544496,0.3185049728499188,0.3199677336848525,0.3209053480741499,0.3218654604603489,0.3235294117647059,0.325166748851574,0.3253790562561995,0.3276222575913616,0.3316847201421058,0.3320495185694636,0.3354424658772484,0.3384022387665663,0.3412763281986796,0.3433447098976109,0.3435748972730669,0.3490566037735849,0.34876637222053,0.3481765061454765,0.3467103467103467,0.3490315229775921,0.0,2.604503392007218,56.446044922403374,173.49319621460236,260.4181620365291,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95741,44526,422.27467855986464,6028,61.74992949728957,4718,48.69387200885723,1845,18.894726397259276,77.33281654085012,79.69771130936124,63.319784280511655,65.0705355084031,77.10574213992838,79.47377502868791,63.23564614969257,64.9900539557009,0.2270744009217367,223.93628067332827,0.0841381308190847,80.48155270219581,151.19016,106.40408702870924,157915.7936516226,111137.4301800788,386.7192,252.69360016735737,403363.71042708977,263376.03552016086,363.718,176.0892368373898,376034.8648959171,180893.2400928253,2680.86396,1224.013417804169,2768997.2321158126,1247339.277638806,1140.22284,503.12024108274215,1177162.4069103105,511718.5543108404,1798.80108,749.957399465068,1844659.8009212357,754445.1171276593,0.38019,100000,0,687228,7177.9906205283005,0,0.0,0,0.0,33369,347.9387096437263,0,0.0,33398,345.05593215028046,1619483,0,58179,0,0,0,0,0,72,0.7415840653429565,0,0.0,2,0.0208896919814917,0,0.0,0.06028,0.1585523027959704,0.3060716655607166,0.01845,0.3312282917587622,0.6687717082412378,24.755778897695407,4.321920869481112,0.3253497244595167,0.2395082662144976,0.2238236540907164,0.2113183552352691,11.212325062293868,5.882309549031128,19.63284059914216,12146.55205625332,53.24117124205286,13.452280184348568,17.023424284906437,11.93009265035376,10.835374122444104,0.562950402713014,0.7849557522123893,0.6729641693811075,0.5814393939393939,0.1223671013039117,0.7342767295597484,0.8912529550827423,0.8501291989664083,0.7413127413127413,0.1773399014778325,0.4997098084735926,0.7213578500707214,0.6132404181184669,0.5294855708908407,0.1083123425692695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0043715071049668,0.0065895014722306,0.008578892265783,0.0106519350506653,0.0128748370273794,0.0152255274885528,0.0173864216436957,0.0194781292816097,0.0216667861275227,0.0236215628780577,0.0254032796311698,0.0277409338145326,0.0297216300553032,0.0318703313936692,0.0337994976588421,0.0358330140121583,0.0378991500710868,0.0399080803984569,0.0420043754557766,0.0565525593243342,0.0704637951057218,0.0834827654911336,0.0961627417998318,0.1080192259043764,0.1235355073383242,0.1353999851523475,0.1466950505588078,0.1578458284823173,0.1677748702329372,0.181584245830507,0.1937748831573481,0.2048496710705159,0.2158161703616249,0.2259664558702227,0.2355240140829476,0.245210385958648,0.2543379920329485,0.263201498042331,0.2715687509303044,0.2784380895066372,0.2848782086547353,0.2906164123945797,0.2949428098697935,0.3006283346094481,0.3062082917021302,0.3103409404043187,0.3152388346548893,0.3197273622557404,0.3238627357742907,0.3234025925027622,0.3225104648601013,0.3222336571130503,0.3220326731241867,0.3195864018448263,0.3186789620416041,0.3173349373941399,0.319120662784021,0.3196799617864819,0.3209473909324208,0.3216911420821251,0.3235241838326783,0.3242282272232912,0.3253313105171567,0.3259945739598089,0.3264142098135222,0.3265143313009288,0.3298230171953098,0.333602329742816,0.336428939953169,0.3391288516681079,0.3401093360225041,0.3399711037125447,0.3413727720894956,0.3471560661249649,0.3486811116344795,0.3487701184330398,0.3563102893890675,0.3577080491132333,0.3539923954372623,0.0,2.3236496942529192,55.84492437701339,167.14310163747285,265.3510407254729,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95787,44782,424.4626097487133,6136,62.98349462870744,4775,49.328196936953866,1903,19.53292200402977,77.34910350822409,79.67884307132313,63.34642956891118,65.06726060854989,77.1188960347449,79.44850973479139,63.26183434797549,64.9847901463498,0.230207473479183,230.3333365317428,0.0845952209356895,82.47046220009224,153.00956,107.67540626898106,159739.38008289225,112411.29408894846,386.7678,252.85166129027317,403209.2872728032,263403.1145043411,372.08112,180.5595955355671,385398.2168770293,186110.53825796457,2731.31616,1247.340516217528,2823684.132502323,1274438.7821077264,1142.82578,502.373773073874,1182112.666645787,513491.65656495554,1865.3891,772.5491805839794,1916068.7984799608,779798.3226637704,0.38035,100000,0,695498,7260.880912858738,0,0.0,0,0.0,33373,347.88645640848966,0,0.0,34061,352.50086128597826,1611242,0,57879,0,0,0,0,0,63,0.6472694624531512,0,0.0,0,0.0,0,0.0,0.06136,0.1613250953069541,0.3101368970013037,0.01903,0.339605038096719,0.660394961903281,24.589925548251813,4.490653379960534,0.3112041884816754,0.2372774869109947,0.2255497382198953,0.2259685863874345,11.36071654240951,5.770447798852969,20.1571311646792,12133.889091372648,54.050488077880495,13.505290969086456,16.81728276240351,12.060338580462927,11.6675757659276,0.5505759162303665,0.7678729037952339,0.6783310901749664,0.5914577530176416,0.1056533827618165,0.7354581673306773,0.9202898550724636,0.8596938775510204,0.6941176470588235,0.1443298969072164,0.4846590909090909,0.6801112656467315,0.613345521023766,0.559610705596107,0.0971751412429378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0044902137666102,0.0065333617392539,0.0086235792424657,0.0108187253426607,0.0129585895191172,0.015257139362808,0.0174618564065928,0.0199858995187444,0.0219046060035603,0.0239724624021636,0.0260643810735651,0.0282921916428586,0.0303014708152783,0.0323535173366601,0.0341981862876737,0.0362678752509261,0.0382090976016921,0.0401280106398453,0.0422454547347814,0.0567364785190286,0.0701271806886165,0.0835421537687283,0.0960843246878809,0.1084743619465109,0.1233555586081553,0.1354671188596258,0.1469371697130158,0.1576661651568018,0.1682859683138196,0.1807371536185095,0.1928466395640515,0.2051505038536378,0.2152557569925864,0.2245728681914694,0.2348895927000509,0.2444402289744133,0.2533727571165175,0.2621435215645348,0.2697638750586592,0.2765873795950462,0.2834134531036176,0.2895073122249041,0.2948751737026211,0.3009421134421134,0.3059886365036913,0.3110265779068021,0.3156501711478998,0.3205772618924241,0.324742199981515,0.3244412109453943,0.3234391133750947,0.3218792248760703,0.3209751729516601,0.3207012231326446,0.3181046481393677,0.3161547338634459,0.3160086568730325,0.3171855010660981,0.3181801962533452,0.3188308164449185,0.3195229996440296,0.3207191350264018,0.3212934142463667,0.3230379746835443,0.3248444281754954,0.3265919102923508,0.3311936758893281,0.3352380952380952,0.3394554020602092,0.3422136775611096,0.3433918003945194,0.3431297709923664,0.3504633529907329,0.3531531531531531,0.3521634615384615,0.3542183622828784,0.3519885198851988,0.3527292878913826,0.3600944510035419,0.0,2.0706253784074384,55.10364225483911,178.4546882266634,265.4982530242553,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95665,44780,424.8262164846077,6015,61.69445460722312,4682,48.3457899963414,1860,19.024721685046774,77.31532774038504,79.70677716215337,63.31028192710126,65.07602007232856,77.08017459959676,79.47619038653659,63.221856017649856,64.99252044199639,0.2351531407882845,230.58677561678564,0.0884259094514021,83.49963033217023,151.80858,106.80559679349436,158687.69142319553,111645.42601107444,386.79504,253.69897550770952,403711.8381853342,264584.6082764956,368.34273,178.58029105450504,381863.96278680814,184115.9454523984,2709.80912,1241.1935504130436,2800077.269638844,1264912.298555422,1101.64103,489.67567001695926,1136752.657711807,497056.4679004432,1829.17652,771.9604638404156,1873221.8052579316,771705.6130420375,0.37985,100000,0,690039,7213.076882872523,0,0.0,0,0.0,33387,348.3823759995818,0,0.0,33666,348.7691423195526,1613601,0,57898,0,0,0,0,0,66,0.6794543458945277,0,0.0,1,0.0104531437829927,0,0.0,0.06015,0.1583519810451494,0.3092269326683292,0.0186,0.3362789963705223,0.6637210036294777,24.61929147280484,4.406418107453724,0.3184536522853481,0.2362238359675352,0.2159333618111918,0.2293891499359248,11.046616285139942,5.5302564712549245,19.84077253550081,12147.095131056416,52.991300823994045,12.953142064659096,17.01081826819972,11.235540169667232,11.791800321468,0.5553182400683468,0.7757685352622061,0.6908115358819584,0.5816023738872403,0.1154562383612663,0.7235576923076923,0.9245810055865922,0.8557692307692307,0.7291666666666666,0.1752136752136752,0.494175888177053,0.7045454545454546,0.6269767441860465,0.5356679636835279,0.0988095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0044607554897706,0.0066776269053563,0.0089407270436673,0.0108133951822916,0.0131194295900178,0.0151362157420723,0.0173537342703056,0.0194101284463715,0.0217402435153041,0.0238962104507461,0.0260914227015921,0.0283727341933625,0.0302221581073283,0.0323912549804909,0.0344406751613437,0.0365339384331644,0.0384435749203416,0.0404010984438711,0.042502188685538,0.0571924105650284,0.0707704228006617,0.0839674626082393,0.0963610725259923,0.1076060916277057,0.1229318174600654,0.1348114169215086,0.1471985513421389,0.1587160768301677,0.1692608256939822,0.1821170637059394,0.1947022449399508,0.2065579481373424,0.2162869087486593,0.2259240495175999,0.2367621287073803,0.2458168576726314,0.254796925466188,0.2637338933984219,0.2709911851350887,0.2775538568450312,0.285220873189636,0.2913972382102844,0.2964096287229702,0.3011459611855777,0.3061911336850929,0.3110162275868977,0.3156890189591551,0.3204173840995301,0.325310907506667,0.3242456896551724,0.3234747407988764,0.3221804458338614,0.3203279779034287,0.3189905025192848,0.3174933766213877,0.3153739042374758,0.3155558467510769,0.3162903335834641,0.3161224780779924,0.3172791301586115,0.3181692641546656,0.3195543828789211,0.3203495128273889,0.321464634322258,0.3221270279419806,0.323195979325509,0.3265319014529375,0.3303943006277773,0.3328545780969479,0.3349791980981118,0.3361563864919569,0.3388649607296681,0.3392266892151587,0.3397569774064932,0.3439923636797518,0.3480310171810856,0.3506986027944112,0.3544303797468354,0.3553530751708428,0.0,2.370134219035065,54.52850936447861,173.98370557199996,257.7877728208044,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95632,45038,426.0289442864313,6114,62.66730801405387,4796,49.62773966873013,1911,19.60640789693826,77.3146043072854,79.73384619000556,63.296484254502126,65.08317713884912,77.07382979426448,79.49519084920266,63.20602009440187,64.99639997431498,0.2407745130209235,238.6553408029073,0.0904641601002538,86.77716453414064,151.70584,106.76578672617272,158635.01756734148,111642.32341284584,387.18043,253.72349247387655,404350.3638949306,264797.7690248835,376.35768,183.3757704555924,390510.1325916011,189380.37109442067,2756.7704,1274.9820977112313,2853866.78099381,1304397.667842597,1122.81836,495.2673403277437,1163386.9834365067,507172.515818704,1866.16014,792.5799558224088,1917020.7880207463,798486.3149567421,0.38222,100000,0,689572,7210.68261669734,0,0.0,0,0.0,33339,348.0947799899615,0,0.0,34458,357.3280910155596,1612424,0,57820,0,0,0,0,0,71,0.7424293123640622,0,0.0,0,0.0,0,0.0,0.06114,0.1599602323269321,0.3125613346418057,0.01911,0.3320883909119203,0.6679116090880797,24.326181054971983,4.344887185514162,0.329441201000834,0.2310258548790658,0.2253961634695579,0.2141367806505421,11.306990548328988,6.017228382095558,20.515436820650013,12299.388250459357,54.502380578740215,13.218176012323916,17.85212083481866,12.068721263928726,11.363362467668898,0.5623436196830692,0.7924187725631769,0.6879746835443038,0.57631822386679,0.1061343719571567,0.7084927314460597,0.9032258064516128,0.8609756097560975,0.704119850187266,0.092511013215859,0.5075952995127544,0.7290780141843972,0.6273504273504273,0.5343980343980343,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0045735262800296,0.0069334470296828,0.0092872021541431,0.0116373697916666,0.0138317376247708,0.0159933089217776,0.0184390642557973,0.0207628028761084,0.0229595494111623,0.0250976933096749,0.0271500184903644,0.029176354396,0.0312825215608288,0.033537718320327,0.0356522458433286,0.0377577453113667,0.0396615272802782,0.0419636446876918,0.0440355872628471,0.0588800970011184,0.0727440340254352,0.0868775334467477,0.0989515348014653,0.1118324518900887,0.1274567943070145,0.1387566924449732,0.1502504529468187,0.1612696171250682,0.1717444083965365,0.1850733065064244,0.1970237256538374,0.208906273834688,0.2189964943032427,0.22880888869293,0.2394016069605362,0.2490947293128883,0.2575694405318609,0.266002295376294,0.2737794805909883,0.2809347894060289,0.2875146267259537,0.2934072179596476,0.298339029801523,0.3032551925179157,0.3092365518516236,0.3135925124188241,0.3185939745399514,0.3225151079881465,0.3264016256086136,0.3248959918139835,0.3230593607305936,0.3215765296057267,0.3208013886879792,0.320399476096922,0.3196054972697711,0.3178394151323406,0.3180755810125749,0.3191398144496081,0.3202483405199406,0.3217977528089887,0.3233833786499586,0.3242690485631404,0.3253122212310437,0.3256453812474579,0.3271752085816448,0.3286001757220191,0.3319292333614153,0.3351104606592794,0.3374245234618572,0.338700194473339,0.3417326994189117,0.3421517868417729,0.3435718087128411,0.3451900516189582,0.3513062149588453,0.3553590817434465,0.3536984062116878,0.3563566318106769,0.3666796418840015,0.0,2.0348771661831453,57.58088070416345,178.70086983405952,260.7277065092518,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95653,44732,424.0954282667559,6069,62.319007244937424,4718,48.82230562554232,1792,18.399841092281477,77.29129418892526,79.6910696257347,63.29829466637945,65.06981853118505,77.0664512013534,79.46747758479827,63.215111934555416,64.98949907146087,0.2248429875718613,223.59204093642404,0.0831827318240314,80.31945972417986,151.39014,106.46242066898462,158270.14312149124,111300.66037550794,387.34397,254.4575510246465,404464.4182618423,265538.9073261127,372.32,181.27536004644085,385957.1890060949,187002.4840676962,2691.45524,1236.2615339532858,2786896.2186235664,1265570.482842447,1119.10013,490.8246305902049,1157486.4457988772,500658.6417469448,1761.7784,736.9963608496279,1811013.3712481572,744172.5684650684,0.37966,100000,0,688137,7194.097414613237,0,0.0,0,0.0,33456,349.24152927770166,0,0.0,34061,352.83786185482944,1613152,0,57924,0,0,0,0,0,71,0.7422663167909004,0,0.0,0,0.0,0,0.0,0.06069,0.1598535531791603,0.2952710495963091,0.01792,0.3198992443324937,0.6801007556675063,24.616249245204692,4.392259881427653,0.3348876642645189,0.2361169987282746,0.2066553624417126,0.2223399745654938,11.381424174202763,5.919428049632306,19.14654131485426,12150.902232966144,53.46045247642444,13.26845579722228,17.71248612654826,11.037633790911888,11.441876761742016,0.5669775328529038,0.77737881508079,0.6974683544303798,0.6051282051282051,0.111534795042898,0.7345971563981043,0.909313725490196,0.8740740740740741,0.7629310344827587,0.1266968325791855,0.5055040556199305,0.7011331444759207,0.6365957446808511,0.5558546433378196,0.107487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360138974707,0.0044611173071073,0.0066380439085289,0.0088507265521796,0.0112525308020226,0.0132708662219279,0.0153455553969451,0.0176139032409581,0.0196098478652053,0.0218602174758872,0.023976536221183,0.0262720046011954,0.0283418719009114,0.0303976423794656,0.032477520724292,0.0343696992263456,0.0364282679213605,0.0385941231440141,0.0407666375327756,0.0427031422673533,0.0571219563172745,0.0706938450580299,0.0836982201921562,0.09696331772012,0.1084760789032074,0.1245567798135035,0.1365407276085733,0.1483122610057199,0.159108402822322,0.1696241666935042,0.1826895086951365,0.1942158603664082,0.2058839535465894,0.2161123639787182,0.2264552247030041,0.2366979395391132,0.2456683237446238,0.254806393516434,0.2631584921508757,0.2706161354627317,0.277248003703275,0.2843590253488834,0.2899280064415289,0.2952695005695785,0.3008511673151751,0.3062685093780849,0.3108223263740945,0.3147581919176476,0.3192667211180688,0.3244017370414857,0.3238197858441646,0.3233499951804574,0.3217831556382918,0.3206313383389031,0.3193268558334697,0.3172688914461066,0.3148902448688485,0.3152674518060399,0.3159885661468942,0.3172820742065266,0.317033812436672,0.3188939727058451,0.3188144167593778,0.3196660773035518,0.320650086422124,0.3217622108303625,0.3232515250390126,0.3267193279418218,0.3304924242424242,0.3339691622953425,0.336521382702555,0.3428813469582252,0.3439828261144084,0.3434506016708822,0.3466540104413858,0.3518652226233453,0.3583203732503888,0.3579710144927536,0.3628244487859335,0.3574173712528824,0.0,1.986773792411856,55.70526667246666,173.59830889804044,261.6229241950465,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95624,44967,427.63323015142646,6070,62.00326277921861,4723,48.72207813937924,1821,18.614573747176443,77.27514686010801,79.68609900478185,63.27600815666828,65.05645141719016,77.04627256141225,79.46327028521853,63.190232975491554,64.97613399387554,0.2288742986957572,222.82871956332428,0.0857751811767286,80.3174233146251,150.9178,106.26696362339108,157823.95632895507,111129.79652115688,386.67185,254.04986450331285,403667.4684179704,264976.923675346,375.22295,183.04375180697724,388994.5934075128,188691.0358681178,2690.5288,1239.0038279670446,2776264.703421735,1258363.661807753,1112.93426,497.9778175132509,1143947.3458545972,500910.081100591,1793.38248,759.8633978051338,1834764.849828495,757185.51147972,0.38126,100000,0,685990,7173.816196770686,0,0.0,0,0.0,33334,347.8624613067849,0,0.0,34355,355.8207144649879,1611496,0,57802,0,0,0,0,0,62,0.6483727934409772,0,0.0,1,0.0104576257006609,0,0.0,0.0607,0.1592089387819336,0.3,0.01821,0.3333856045162302,0.6666143954837698,24.433224882231,4.374470626462951,0.324370103747618,0.2333262756722422,0.2197755663773025,0.2225280542028371,11.148514455158807,5.739010434848303,19.43742438611494,12101.97541099668,53.55406339212999,13.140093757569767,17.194735674220812,11.556066970181488,11.66316699015792,0.5602371374126615,0.7976406533575318,0.6847258485639687,0.5789980732177264,0.1113225499524262,0.7175815433571997,0.9240196078431372,0.8668407310704961,0.7076271186440678,0.1130434782608695,0.5031736872475476,0.723342939481268,0.6240208877284595,0.5411471321695761,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670447180816,0.0047028774717979,0.0068692608188321,0.0090401218892839,0.0111575585593832,0.0132801042854815,0.0153566912754415,0.0174372900736082,0.0195986218600799,0.0217582732634338,0.0236940088006318,0.025754556101169,0.0279129584855188,0.029974437206234,0.0317637339942172,0.0338281694511974,0.0358112730363398,0.0379486540378863,0.0397415084915084,0.0416831786421941,0.0569206810414206,0.0705738117193394,0.0838980112830533,0.0965485271187154,0.1089760518893337,0.1242612324443408,0.1356713959296455,0.1470804592799496,0.1580383804437404,0.1673527736276965,0.1798600764397227,0.1922388642451981,0.2041425923907118,0.2150925600982628,0.2253418534582657,0.2349281818282807,0.2441574140401146,0.2534303768900925,0.2622461986706728,0.2707541427898804,0.2777571567763188,0.2841294226642117,0.2907511982157262,0.2955156842964884,0.3009014269552206,0.3066622235387046,0.3119004927714318,0.3158873504948477,0.3201230194261689,0.3238755057249385,0.3226820254120693,0.321203185713892,0.3200704970038773,0.318340200968698,0.317155085299887,0.3149696746921522,0.3132257554184464,0.3135288614617013,0.3141104294478528,0.3150140734670609,0.31580820378348,0.3178300694883133,0.3176261251831693,0.3189088959385193,0.3191075459916422,0.3202610979637479,0.3235394407819959,0.3257668519041788,0.3291476674850929,0.3298437623919422,0.3328642121033277,0.3362935389524062,0.3385253108905916,0.344464637286082,0.3479691613388492,0.3513835877862595,0.3501305884160393,0.3537898801056696,0.3551581843191196,0.3668706962509563,0.0,2.479663554836392,54.878159337135806,176.48694254055775,260.2215434852338,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95687,44820,424.8016972002466,6123,62.63128742671418,4759,49.1811844869209,1901,19.54288461337486,77.28391542799022,79.68264333612825,63.28504443165552,65.05998346918527,77.05434792740934,79.45135144874033,63.20049285605811,64.97663954001474,0.2295675005808846,231.2918873879255,0.0845515755974091,83.34392917052469,152.09524,106.96983927225943,158950.78746329175,111791.40246037544,384.79121,252.42399742001527,401590.3205242091,263264.98607423226,373.15306,181.45841239287068,386314.2851171006,186884.51477985107,2736.23996,1258.9632203072583,2830985.6511333827,1287587.4620758602,1135.89655,502.95337976236806,1176112.1468956077,514666.3642831064,1853.2612,773.5410619821301,1906802.2406387487,784629.9068040525,0.38025,100000,0,691342,7225.03579378599,0,0.0,0,0.0,33255,346.96458244066594,0,0.0,34163,353.3395341059914,1611310,0,57849,0,0,0,0,0,56,0.5852414643577497,0,0.0,1,0.0104507404349598,0,0.0,0.06123,0.161025641025641,0.3104687244814633,0.01901,0.3344806007509386,0.6655193992490613,24.472684037388305,4.343924981334599,0.3252784198361,0.2303004832948098,0.2290397142256776,0.2153813826434124,11.338477695626626,5.911208367022744,20.308909690490005,12176.04893400019,54.18599360517205,13.0516727802373,17.675686294257215,12.20885829808287,11.24977623259464,0.5662954402185333,0.7801094890510949,0.6976744186046512,0.581651376146789,0.1229268292682926,0.7377431906614786,0.9029850746268656,0.8732057416267942,0.7529880478087649,0.1448598130841121,0.5028785261945884,0.7089337175792507,0.6327433628318584,0.5303933253873659,0.1171393341553637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024928558399708,0.0046758357676079,0.006842848005523,0.0091564110120832,0.0114160129422178,0.0135787629370059,0.0155948799020857,0.0176900763982514,0.0195960112503196,0.0218197463582536,0.0238217370786055,0.0260983929965887,0.0282153918975931,0.0302374474400197,0.0321135483870967,0.0341375637300019,0.0360588131676838,0.0382503451354072,0.0406390746731295,0.0427514330380406,0.0579331668947362,0.0718623057916998,0.0852783141633783,0.0984669128865599,0.1110161263086795,0.1264355649642762,0.1380866425992779,0.1489393423070369,0.1589973812196034,0.1693856523419053,0.1820484355970382,0.1940403591815513,0.2055089820359281,0.2159915902894123,0.2260314731552499,0.2362205598348465,0.2456934616631454,0.2539666441289159,0.2621106578334337,0.2696502919013155,0.2765999374050933,0.2838454054180782,0.2908280058355375,0.296343425127848,0.3016344363446068,0.3069927567527548,0.3116393298833436,0.3162906757651372,0.3213614749744108,0.3251039123837171,0.324222380881818,0.3228425557680928,0.3223295230587308,0.3209598475332438,0.3204407566024268,0.3196106981377883,0.3189083017851769,0.3190117623898814,0.3185182652694918,0.3187911066628539,0.3197386210004506,0.3213052965681412,0.3226526785902378,0.3223798071520082,0.3220297929029914,0.3224750582628505,0.3244469815898387,0.3280204519631359,0.3298914761352861,0.3344154558771131,0.334364058023737,0.3356972744112199,0.3372637095264832,0.3383222330315049,0.3366052412260394,0.3406374501992031,0.3413855970829535,0.3464487489911219,0.3498752425838647,0.3594646271510516,0.0,2.1076840072711707,56.59870328628069,179.16805622442018,259.5800082616985,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95650,45003,426.85833768949294,6074,62.16414009409304,4815,49.69158389963408,1856,18.99634082592786,77.35161970545354,79.75685787223436,63.31721993396855,65.09396523287667,77.12765644871081,79.53575954123687,63.23258153347411,65.0129152636496,0.2239632567427349,221.0983309974921,0.0846384004944411,81.04996922706675,151.41632,106.48117971168136,158302.477783586,111323.76342047186,384.46889,251.99719772118905,401318.7140616832,262822.5615573125,372.53214,180.39702279104213,385300.5541035024,185436.13987492945,2752.03552,1260.316616240352,2840823.711447988,1281275.184336197,1117.87892,492.40238034513095,1149399.194981704,495516.2131488872,1815.24448,764.744153691226,1858573.214845792,765755.1116188604,0.38107,100000,0,688256,7195.567171981181,0,0.0,0,0.0,33089,345.2483010977522,0,0.0,34064,351.98118139048614,1619663,0,57972,0,0,0,0,0,79,0.8154730789336121,0,0.0,0,0.0,0,0.0,0.06074,0.1593932873225391,0.305564702008561,0.01856,0.3254531126871552,0.6745468873128447,24.5412607116172,4.273686229499708,0.3202492211838006,0.2375908618899273,0.2274143302180685,0.2147455867082035,11.37641375021246,6.036758775677123,19.55746852852301,12214.455486144248,54.14407113184385,13.620640208070425,17.140547948083107,12.09958998950175,11.283292986188574,0.5721703011422637,0.7823426573426573,0.6984435797665369,0.6082191780821918,0.1131528046421663,0.725705329153605,0.9176470588235294,0.8563685636856369,0.7034220532319392,0.1598173515981735,0.5168126589432043,0.7023643949930459,0.6487638533674339,0.578125,0.1006134969325153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.004634183440653,0.0067996833580287,0.0089104283508087,0.0109247373078761,0.0129965369729069,0.0150410442053739,0.0175429639235788,0.0196523517382413,0.0219297347126907,0.0238935511008063,0.0261730069671373,0.0281248070471525,0.0299384529737419,0.0319578577699736,0.0341927207266858,0.0364408975488417,0.0388041108688882,0.0407728000998772,0.0426767597777013,0.0571339010501018,0.0710523835949197,0.0841992568801561,0.0967422871332968,0.1089780798497145,0.1243623123981287,0.1367521367521367,0.1487790059370903,0.1590716983554637,0.1683636207415045,0.1809141698483574,0.192638581892255,0.2036103519984321,0.2144866924314915,0.2249440999262008,0.2351219187651774,0.2445629093184917,0.2529840998153236,0.2616422334010878,0.2696999896903673,0.2770108425230563,0.284239448146849,0.2913546952438404,0.297497005988024,0.3027368165544026,0.3086278419931804,0.3135829304550963,0.3187169035010858,0.3234397602810498,0.3277443638708658,0.3269768316938128,0.3264146281195947,0.3255598195082866,0.3234437620736384,0.3231832063332048,0.3220445136947589,0.3208738477080439,0.321722754441988,0.3225482006784746,0.3231342219687789,0.3245958688819039,0.3257042600587458,0.3272495400568657,0.3277896517944608,0.3288624300674221,0.3299930086226986,0.3321627821358783,0.3356573393778334,0.3375667283067583,0.3425615102089175,0.3424831272364905,0.345111834505933,0.3497383503613256,0.3529500642139457,0.3541588959343528,0.35850622406639,0.3559944878272852,0.3572291582762787,0.3585365853658536,0.3654708520179372,0.0,2.467641293041732,55.65329794243843,172.5600413661339,270.7922583226785,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95795,44887,424.74033091497466,6065,62.25794665692364,4778,49.34495537345373,1861,19.103293491309568,77.3507064425629,79.67979350974956,63.34838135415546,65.07024252397063,77.11732613630663,79.44764421331314,63.261891060421256,64.98690167896414,0.2333803062562651,232.14929643641824,0.0864902937342009,83.34084500648942,152.00834,106.92132027354968,158680.64095203296,111614.50961479163,386.95692,253.79772346705357,403392.2960488544,264389.25194893626,373.32347,181.27088300183,386530.0381021974,186793.91252895465,2738.68324,1255.4500205718098,2829038.9268750977,1280770.8984517043,1143.81774,509.0108406483513,1178927.1151939034,516254.8469631524,1830.3979,770.1552591058492,1879827.4231431703,775004.1348022352,0.38149,100000,0,690947,7212.75640691059,0,0.0,0,0.0,33290,346.94921446839606,0,0.0,34105,352.8263479304765,1617295,0,58047,0,0,0,0,0,82,0.8559945717417402,0,0.0,1,0.0104389581919724,0,0.0,0.06065,0.1589818868122362,0.3068425391591096,0.01861,0.3245875883739199,0.6754124116260801,24.53523128972787,4.280510681346353,0.3107994976977815,0.2314776056927584,0.2329426538300544,0.2247802427794056,10.84878121817615,5.621062004981474,19.87686649909129,12248.25230861104,54.2626727272144,13.223386422558582,16.820939097079542,12.422815635867073,11.795531571709224,0.554416073670992,0.7703435804701627,0.694949494949495,0.5804132973944295,0.1108007448789571,0.7130365659777425,0.9112271540469974,0.8649350649350649,0.7142857142857143,0.1298701298701298,0.4977272727272727,0.6957123098201936,0.6354545454545455,0.5398126463700235,0.1055753262158956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002552570803452,0.0049574209245742,0.0073061584827544,0.009405980822363,0.011611355132585,0.0135298848585419,0.0158982511923688,0.0181649335143023,0.0202847011455491,0.0224416700777732,0.024376498555239,0.0264626813601756,0.0285491131071054,0.0306864036893683,0.0328837468291777,0.0348974152358519,0.0370642467638628,0.038854678526259,0.0408548996801395,0.0429541101024402,0.0575462248007012,0.0715181932245922,0.0847965783652888,0.0975461089800851,0.1099635351895959,0.125499439781832,0.1379036106250994,0.149614762472331,0.160038859412198,0.1701926992905065,0.1836919202247312,0.1962822868258943,0.2072468491960017,0.2179057191238324,0.2275345748774213,0.2378292275527925,0.2466709011689455,0.2560072795084085,0.264233907524932,0.2710755148741419,0.2784630309749844,0.2860229117279553,0.2927230157979377,0.2986087831042575,0.3040697956608261,0.3089557016571865,0.3129491457638134,0.3179367864317136,0.3226507895418068,0.3265246955880027,0.3258452645022518,0.3243703948091939,0.3242440452728194,0.3236849710982659,0.3231939163498099,0.320423290146712,0.3177462022208493,0.3167727399805943,0.3172192001094803,0.3190405547909703,0.3205147473229382,0.3214972160025363,0.3218340060544904,0.3234791601097073,0.325182666570209,0.3276633606364326,0.3283030754252334,0.3317728926142654,0.3346621979185041,0.3378233400882107,0.3394818747711461,0.3421546043820646,0.3441146626078133,0.3476087959403352,0.3494760691022373,0.348634791939907,0.3514015796809664,0.3504043126684636,0.3527262507026419,0.3489644392340758,0.0,2.064750167821501,55.23272791594578,184.64885229713235,259.2525871150651,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95738,44802,422.9877373665629,6199,63.57976978838079,4790,49.4787858530573,1903,19.501138523888116,77.31652017658898,79.67705315676531,63.31665033110207,65.06228661912581,77.0783562081365,79.4407652868315,63.228534679884696,64.97772946375999,0.2381639684524827,236.287869933804,0.0881156512173717,84.55715536582886,151.94234,106.97706783946174,158706.177275481,111739.17132117004,386.66393,252.5853530301524,403322.9543128121,263275.5572814895,374.87043,181.8172539175856,388398.97428398335,187509.4940942592,2748.44268,1260.1041185943288,2839502.1830412163,1284906.7649150072,1163.59978,517.605185752341,1198348.565877708,523606.2497152035,1864.30436,783.9537597292383,1911447.471223548,786666.6770571488,0.38106,100000,0,690647,7213.9171488855,0,0.0,0,0.0,33339,347.6467024587938,0,0.0,34287,354.9269882387349,1614340,0,57949,0,0,0,0,0,65,0.6789362635526124,0,0.0,0,0.0,0,0.0,0.06199,0.1626777935233296,0.3069849975802549,0.01903,0.3296906264429737,0.6703093735570264,24.964978261808334,4.403402331718115,0.3223382045929018,0.2279749478079332,0.2283924843423799,0.2212943632567849,11.255943329015183,5.75017643494878,20.276155343853183,12257.280114872692,54.22867047374287,13.082896666194522,17.39424423483094,12.181677716785078,11.569851855932344,0.5597077244258872,0.7728937728937729,0.7040155440414507,0.5722120658135283,0.1169811320754717,0.7406542056074766,0.916279069767442,0.8645833333333334,0.8060344827586207,0.1596638655462184,0.4934398174557901,0.6797583081570997,0.6508620689655172,0.5092807424593968,0.1046228710462287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024513528023419,0.004795166310155,0.007338239025628,0.0099881118099515,0.0124409993489583,0.0146049334935734,0.0168276340346547,0.019045576626533,0.0213188004212635,0.0236089070898387,0.0258489869575916,0.028093521855651,0.0300780486801649,0.0320348460041395,0.034245515590993,0.0361932510900336,0.0380514667826015,0.0400390017218845,0.0420980416614693,0.0440680085010626,0.059114637711422,0.0734787840736671,0.086716234780876,0.0993974953471499,0.1115164807355701,0.1267490930628563,0.1389472344217427,0.1500484336246447,0.1608795059723498,0.1700981706989968,0.1834595537936161,0.196145063365115,0.2077782248855343,0.2181776431609679,0.2276335054326886,0.2375811850242724,0.247180346175321,0.2559413962281136,0.2640080824592472,0.2718274198907053,0.2781120548008609,0.2849155476535816,0.2903034894181147,0.2955780232432627,0.3005688309794103,0.3060894668015495,0.3108781685201883,0.3159857926697305,0.319978763903816,0.3242155011947352,0.3237139779154322,0.3226322025958279,0.3219968093967501,0.3219038241554567,0.3211239935108425,0.3191975583196577,0.3177322724823279,0.3179865352010666,0.3191270684161841,0.3195591792850103,0.3208015338922516,0.3216011725558548,0.321503614052782,0.3228982127239701,0.3243002145767534,0.3255880665519219,0.3272556069166238,0.3292499057670561,0.3323748071258241,0.3358318461233393,0.3399599672459285,0.3434225224745997,0.3456479325319403,0.3491702659695385,0.3511938334273359,0.3530536632006693,0.356162270553756,0.3611337683523654,0.3608247422680412,0.3563129357087529,0.0,2.0659239893738546,56.463605497684064,172.44523870045876,270.4703120376349,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95686,44734,424.3776519030997,6115,62.75735217273164,4767,49.317559517588776,1867,19.187759964885142,77.40264542862671,79.78397517350113,63.35728834693722,65.11251883499416,77.17503313328828,79.55635735877021,63.273607273108176,65.03061869783077,0.2276122953384316,227.6178147309196,0.083681073829041,81.9001371633874,151.28454,106.38967510631416,158105.19825261793,111186.24992821748,384.02058,251.31292206917692,400847.1876763581,262156.4095783886,368.56936,178.85811123944134,382149.9801433857,184441.06313312447,2754.22048,1241.016867198351,2852326.651756788,1270900.306417189,1133.60023,489.4375960523525,1174905.921451414,501701.23743531207,1833.51938,757.9737720014997,1886913.2997512696,767890.5129648347,0.37908,100000,0,687657,7186.599920573543,0,0.0,0,0.0,33085,345.2438183224296,0,0.0,33535,347.5325543966724,1624097,0,58151,0,0,0,0,0,87,0.8883222205965344,0,0.0,1,0.0104508496540768,0,0.0,0.06115,0.1613115964967816,0.3053147996729354,0.01867,0.3307919713707795,0.6692080286292205,24.71671622290095,4.456146821131534,0.3224250052443885,0.2286553387874974,0.2204740927207887,0.2284455632473253,11.253116723309669,5.723321666510773,19.6122421989005,12166.545492131474,53.30679436801724,12.82784022404212,17.200730386593683,11.596188303653738,11.682035453727703,0.5426893224250052,0.7587155963302752,0.6727391021470397,0.5832540437678402,0.1037649219467401,0.72982158028887,0.8891891891891892,0.8624338624338624,0.7619047619047619,0.1414141414141414,0.4813370473537604,0.6916666666666667,0.6108714408973253,0.5329268292682927,0.095398428731762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025316199329627,0.0048040378241965,0.0069588151754919,0.0089881478321806,0.0112974242686163,0.0135429607152312,0.0160265886406965,0.0179830783519253,0.0198150324459659,0.022053706660117,0.0243854937575596,0.0262298784494086,0.0284903507058327,0.03049464979042,0.0327067126142671,0.0346438463764521,0.0366328432387657,0.0387149661205134,0.0404030949706726,0.042281116796765,0.0565334113296633,0.0697727986598261,0.0831164742917103,0.0961597122150813,0.1081662571057932,0.1237238825707484,0.135840327663593,0.1472122283013646,0.1583941527841595,0.1685487243831033,0.1812689797764424,0.1937536523602363,0.2053047109487146,0.2156852025978002,0.225633635483587,0.2366142604074402,0.2457775449001661,0.2541736883496236,0.2626195115320132,0.2698552448032198,0.277167136193599,0.2845258097638383,0.2912042502951594,0.2964083673200894,0.3013891245848384,0.3065436654366543,0.3111491466979835,0.3154120499054436,0.3201322262825562,0.324344588995146,0.3231456873640976,0.3224055698700729,0.3212537003521472,0.3211392058946278,0.3198359587824233,0.3184538348803126,0.3172850621554597,0.3181833082016652,0.3192637744330178,0.3196689213243147,0.3205420560747664,0.3221641380394623,0.3228841430415053,0.3233239912807509,0.325050916496945,0.3271489450161106,0.3294940704718027,0.3326545955767182,0.336231985693748,0.338985736925515,0.3416211293260474,0.3422300356933567,0.3459285849234838,0.3467619337184555,0.3482680722891566,0.3491784037558685,0.350810149801284,0.3596473652574634,0.3654367878459034,0.3676525645825533,0.0,1.9304044686078108,51.51483288467968,182.70962083273875,265.5545374289118,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95725,45041,426.4612170279447,6173,63.201880386523904,4838,49.92426220945417,1950,19.85897101070776,77.33907921770925,79.70335728756795,63.32552877917672,65.0743191476443,77.09400517884654,79.4648608437937,63.23336440201261,64.98765651936468,0.245074038862711,238.4964437742525,0.09216437716411,86.66262827962612,151.48078,106.6011257734646,158245.5575868373,111361.61480643996,386.07202,252.8211911460926,402697.8845651606,263496.1829679734,378.05315,183.736374344862,391812.48367720033,189420.46369163156,2798.84692,1290.0768190919405,2890709.5534082004,1314643.0572600986,1148.69941,508.8422838305541,1185883.342909376,517518.64172507887,1914.38656,805.2601958161849,1953996.3854792372,803228.8587931952,0.3812,100000,0,688549,7192.979890310787,0,0.0,0,0.0,33284,347.04622616871245,0,0.0,34521,357.4196918255419,1616757,0,57988,0,0,0,0,0,68,0.7103682423609298,0,0.0,0,0.0,0,0.0,0.06173,0.1619359916054564,0.3158917868135428,0.0195,0.3374498301945045,0.6625501698054955,24.319809031024565,4.389773836811717,0.3288548987184787,0.2255064076064489,0.2178586192641587,0.2277800744109136,11.29827886810342,5.866010435480511,20.706838027186688,12263.85926187031,54.97626899147936,12.988541266665903,18.137030124161544,11.822796201922854,12.027901398729046,0.5584952459694088,0.768102658111824,0.7064739157762414,0.5920303605313093,0.1052631578947368,0.7281853281853282,0.9047619047619048,0.8710407239819005,0.735632183908046,0.1121495327102803,0.4964719164549817,0.6956521739130435,0.6431679721496953,0.544766708701135,0.1036036036036036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025725166099497,0.004907328547674,0.007226738934056,0.0093480734839863,0.0116476608038411,0.0138202853680147,0.0160913679702238,0.0181829319339656,0.0204298656414241,0.0225424527335668,0.0247469412452439,0.0266631061080698,0.0290333528740242,0.0312071789905317,0.0334544478622597,0.0354801348472627,0.0373666217756138,0.0394051350173312,0.0413161260802196,0.0431634439073178,0.0573143990811318,0.0710354497133051,0.0844045547004424,0.0975435349541515,0.1100635894840077,0.1252856054836252,0.1372249453604091,0.1489246166950596,0.1598824472348383,0.1699983904715918,0.1827675396055609,0.194936270209978,0.2067723578120409,0.2170725034199726,0.2269343435455807,0.2376316664818716,0.2476154310094489,0.2564651047589025,0.2647750110706134,0.2717277907070058,0.2789496839326649,0.285948305114494,0.2923730317405861,0.2985147921906815,0.3041478569001505,0.3100083669652524,0.3143506834253729,0.3195935217529374,0.323329455861445,0.3274589407639786,0.3263111194762244,0.3252715523167881,0.3239418753787825,0.3230010414255959,0.3221313912009512,0.3203945957538066,0.3187180339809669,0.3189363310653124,0.3200390270621865,0.3209772686593878,0.3227604587000994,0.323119832258575,0.3244341143706681,0.3242952779705796,0.3245866974240676,0.3270351863418697,0.3274952220669196,0.3301233635448137,0.3337665074459118,0.3371931081134853,0.3400539477895122,0.3436798803290949,0.3454222673091555,0.3478260869565217,0.3493568678997277,0.3539392501186521,0.3606861381548447,0.3653023824068417,0.361249309010503,0.3627338678885071,0.0,2.358947044548231,56.64443638020396,183.27617461320543,263.6827901189315,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95678,44972,426.5452873178787,6093,62.49085474194695,4763,49.11264867576664,1882,19.304333284558624,77.30793472821749,79.6823896538888,63.31631099018998,65.0695160393307,77.07535654130956,79.45220732326017,63.23096399089948,64.98763519679524,0.2325781869079293,230.18233062863655,0.0853469992905004,81.88084253545469,151.23548,106.41419715315202,158067.14187169465,111221.17639703174,385.64529,253.03096023872092,402400.3219130835,263795.49137599126,373.98421,182.12567998846777,385889.0549551621,186601.53170410596,2748.28376,1258.4654521179364,2834441.982482912,1277325.0821692925,1134.40085,500.4728600122293,1172024.1748364305,509476.7530763502,1845.33748,767.5195802019039,1894585.359225736,773162.1973649864,0.38158,100000,0,687434,7184.870085077029,0,0.0,0,0.0,33251,346.84044398921384,0,0.0,34202,352.56798846129726,1617092,0,58055,0,0,0,0,0,71,0.7316206442442359,0,0.0,0,0.0,0,0.0,0.06093,0.1596781801981236,0.3088790415230592,0.01882,0.3328102934253883,0.6671897065746116,24.500136545473843,4.36568269973688,0.3323535586815032,0.2378752886836027,0.2049128700398908,0.2248582825950031,11.358137399129006,5.787114773353034,20.12257987616957,12198.921310997324,54.074566353742064,13.681588254675273,17.845131592451004,10.85016069824716,11.697685808368634,0.5656099097207642,0.8067078552515445,0.6961465571699305,0.5409836065573771,0.1400560224089636,0.7515822784810127,0.9497716894977168,0.8465227817745803,0.7115384615384616,0.1641791044776119,0.498428122320663,0.7165467625899281,0.6423670668953688,0.4947916666666667,0.1344827586206896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025413603871777,0.0047930768918973,0.0068878767283092,0.0091512960104005,0.0113701082092588,0.0135941509510814,0.0156927124226325,0.0180091883614088,0.0202825655809769,0.0224380956280517,0.0242547258785418,0.0262320328542094,0.0281682898485144,0.0303183269805295,0.0325779621488865,0.0345501349130043,0.0365135941644562,0.0383932557439342,0.0404148635153129,0.0425871289915659,0.0575165310407504,0.0713986643498649,0.0848476582172234,0.0976356254864427,0.1096550415383966,0.1247726407512372,0.136872367737076,0.1482644469754223,0.1594376308704756,0.1695217050854366,0.1826170297541486,0.194119937694704,0.2060662064467032,0.2158123162025953,0.2250978925601654,0.2348439541940771,0.2444414694824681,0.2543251816688789,0.262431221283113,0.2705868880618379,0.277199074074074,0.2845515144427552,0.2907180385288966,0.2960546828156853,0.3011916342412451,0.3066332761747326,0.3117159792974673,0.3169177436211159,0.3215870462153255,0.3255380466395219,0.3248145650708024,0.3236814891416752,0.3224731789949181,0.3211207208773378,0.3206304749418985,0.3191081238682748,0.3176205440751674,0.3183929630361731,0.3200843635864812,0.3215417390214647,0.3234056146416626,0.3242611057149087,0.3247911681987995,0.3258203142486235,0.3268892370736411,0.3277559570568211,0.3292620137299771,0.3328178748382617,0.3370925546206604,0.3410167602213464,0.3430232558139535,0.3443077086995897,0.3462779077857188,0.3500611995104039,0.3523360075507314,0.3549727035366722,0.3592805320435308,0.3603513675384308,0.3726808281796182,0.3738282714660667,0.0,2.541609542685608,55.08997986324529,179.83146501877573,261.708013594597,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95706,45050,427.1728000334357,6179,63.454746828829954,4866,50.25808204292312,1943,19.91515683447224,77.38171245272493,79.7553895631299,63.34258245905804,65.09494022666499,77.14608367854709,79.5221827836861,63.25471117762942,65.01100218223492,0.2356287741778402,233.2067794437904,0.0878712814286259,83.93804443007014,151.27948,106.44812967131097,158066.8714605145,111224.09218994727,385.89724,252.33200082155145,402602.5223079013,263044.73358278844,375.43108,181.79981947378064,389093.4215200719,187483.4986852884,2806.27816,1279.7340912657762,2899865.4211857147,1304830.555310824,1151.25961,510.0837463075837,1186127.108018306,516183.8822096674,1908.552,793.4687731633261,1957487.743715128,796371.9548246798,0.3828,100000,0,687634,7184.857793659749,0,0.0,0,0.0,33218,346.4464087935971,0,0.0,34322,355.42181263452653,1619950,0,58100,0,0,0,0,0,86,0.8881365849581008,0,0.0,0,0.0,0,0.0,0.06179,0.1614158829676071,0.3144521767276258,0.01943,0.3279495462236579,0.6720504537763421,24.602415320210827,4.421124857229919,0.3127825729551993,0.2330456226880394,0.2256473489519112,0.2285244554048499,11.108134059901714,5.644830893948626,20.45290236852232,12321.203986379838,54.83792760284573,13.402289884650555,17.233986533597488,12.12507349059409,12.076577694003603,0.5503493629264283,0.7601410934744268,0.6931668856767411,0.5737704918032787,0.1178057553956834,0.7340339531123686,0.9077306733167082,0.8616187989556136,0.7448559670781894,0.1571428571428571,0.487737668779278,0.679399727148704,0.636523266022827,0.5251461988304094,0.1086474501108647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585480473181,0.0045717645389208,0.0068190120550391,0.0090506470552384,0.0111072685477144,0.0131568228105906,0.0155085393831251,0.0177120339744375,0.0200566328981936,0.022274541918313,0.0243994956070656,0.0266427104722792,0.0286401826390102,0.0307790562325528,0.0330024148108398,0.034822527114631,0.036798823431933,0.0388618510485954,0.0408840353614144,0.0426245909498301,0.0576925085379481,0.071568411905734,0.0847927137655687,0.0973562117976287,0.1094175228370709,0.1256966402639566,0.1378761512669241,0.1485685082461165,0.1591384983547711,0.1699993563474865,0.183316091210828,0.1952951620062139,0.2073630975039425,0.2182321045957409,0.2282631411067237,0.2390262263503415,0.2487481738393424,0.2576226198643618,0.2660790852787041,0.2744094443108561,0.2815092505814155,0.2880642559012311,0.2949746721583108,0.3004697648778851,0.3063785333381922,0.311539646355739,0.3166293568114456,0.3205775714013103,0.3250236218434098,0.3286533517895986,0.3284619521376714,0.3272667335137288,0.3257318908881167,0.3250886448153593,0.3247041748737467,0.3240859427455289,0.322344842829852,0.3239127945962743,0.3246322591616359,0.3252431500151135,0.3244752371703892,0.3248659940091439,0.3248103692589814,0.3255927863742625,0.3259479268964526,0.3283585956730146,0.3293180658692818,0.3320207512969561,0.3362510897994769,0.3413988059937532,0.3430633738877792,0.3468079470198675,0.3501483679525222,0.3539355924424386,0.3540665347281123,0.3584860747441085,0.3593199571144126,0.3617021276595745,0.3764510779436152,0.3831848120883379,0.0,2.269175038895114,53.975605391873934,186.5753398976396,269.3952940519635,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95869,45043,426.18573261429657,6088,62.35592318684872,4787,49.46333016929351,1946,20.00646715830978,77.44506122741345,79.7212243772414,63.40474875222951,65.08353539315502,77.21178343097343,79.48754077963717,63.31980184431412,65.00014853485311,0.2332777964400207,233.68359760422663,0.0849469079153877,83.38685830190684,151.26826,106.39893931505536,157786.41688136937,110983.67492625912,384.78537,251.62124357119285,400917.8253658639,262015.65007582525,370.72329,179.93049105486782,383345.99296957307,185108.09582913108,2753.69496,1253.7025711794556,2848025.034161199,1283397.8983607374,1167.35248,512.1914783340652,1205533.071170034,522141.1492078416,1912.55202,788.2650837969045,1968135.2053322764,799773.6625678457,0.38262,100000,0,687583,7172.109858244062,0,0.0,0,0.0,33210,345.9303841700654,0,0.0,33941,350.7807529023981,1623923,0,58387,0,0,0,0,0,54,0.542406825981287,0,0.0,2,0.0208618009992802,0,0.0,0.06088,0.1591134807380691,0.3196452036793692,0.01946,0.3365218754900423,0.6634781245099577,24.529979278043385,4.436980222886112,0.3187800292458742,0.2260288280760392,0.2201796532274911,0.2350114894505953,11.240987730645736,5.861441883223484,20.548578774067284,12239.990191655386,54.01467098570391,12.898494311686944,17.064079959232252,11.727032883903911,12.325063830880795,0.5579695007311468,0.7634011090573013,0.6965923984272608,0.6195445920303605,0.1146666666666666,0.7335473515248796,0.9396325459317584,0.8611825192802056,0.7701612903225806,0.131578947368421,0.4961875176503812,0.6676176890156919,0.6402814423922604,0.5732009925558312,0.1103678929765886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0048420263576413,0.0071585735578921,0.0092464780155089,0.0112280773060743,0.0132565545166902,0.0155015073739102,0.0175900149897519,0.0201166150986939,0.0221983640081799,0.0243088265410608,0.0263268550330752,0.028603707697838,0.030632502545851,0.0327014218009478,0.0346094693489951,0.0366815930173635,0.0385783120045593,0.0404775499610692,0.0426694134906514,0.0575128507230812,0.0715270668365961,0.0847816072699861,0.0980420959855623,0.110103517926275,0.1254063067246401,0.1369868815314409,0.148848920099013,0.1605339759241686,0.1709916639022354,0.1833372735283371,0.1959962856587557,0.207061990513096,0.2176727431503111,0.2270076760045243,0.2368837317345663,0.2468211248927373,0.2554293482535081,0.2643801924537283,0.2722437026699307,0.2793526011560693,0.2861852873778235,0.292403955336866,0.2981200713200186,0.3031630288397374,0.307888322623532,0.3125977845922774,0.3176289473014581,0.3222994936348213,0.3268256648374841,0.3275435244732664,0.3263587404517228,0.3249216675331244,0.3236382485493369,0.3223600461825394,0.3214699426899158,0.3188508572869389,0.319000163371998,0.3189523128765444,0.3200255849901391,0.3196197803839546,0.3205679353184776,0.3219304115088658,0.3224828324266476,0.3244026935704187,0.3252070514318353,0.326615074978031,0.3293786195022695,0.3325088831603149,0.3344533164677049,0.3356102003642987,0.3380131886832588,0.3414833952990107,0.3441478754410185,0.3478054791923405,0.3516654684878983,0.3555864626796476,0.3596600331674958,0.3563058035714285,0.3547880690737833,0.0,1.8584750370473613,54.88828386707399,177.37123050148247,268.4902364382136,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95688,45082,427.1172978847922,6087,62.3589164785553,4784,49.45238692417022,1874,19.239612072569184,77.29747507811412,79.69946148822385,63.28577397120039,65.06526949729496,77.06057701704587,79.4640385512429,63.19778099638536,64.98031392328284,0.2368980610682456,235.42293698095307,0.0879929748150374,84.9555740121275,151.07708,106.26749148778784,157885.0848591255,111056.23640141696,387.51935,254.41754788886803,404421.62026586407,265322.6778586347,375.06425,181.92517793528444,388396.8209179835,187434.8714246489,2749.6334,1260.1844497141594,2841022.197140707,1284821.321710667,1156.54194,513.2051232909118,1188867.924922665,516793.50947735726,1841.59662,774.6041215921413,1890550.581055096,779417.348010423,0.38244,100000,0,686714,7176.594766323886,0,0.0,0,0.0,33304,347.4730373714572,0,0.0,34269,354.55856533734635,1614339,0,57948,0,0,0,0,0,63,0.6583897667419112,0,0.0,2,0.0209012624362511,0,0.0,0.06087,0.159162221524945,0.3078692295055035,0.01874,0.3391822027259909,0.6608177972740091,24.53956000698536,4.432165799023441,0.3072742474916388,0.2372491638795986,0.2259615384615384,0.2295150501672241,11.262940280294172,5.777573650885399,19.981642191129325,12314.770833367153,54.16204023407519,13.67983239604681,16.600621476317663,11.896664707946805,11.984921653763914,0.5566471571906354,0.7973568281938326,0.689795918367347,0.5670675300647549,0.1193078324225865,0.7201550387596899,0.9134615384615384,0.8411458333333334,0.7654320987654321,0.1619433198380566,0.4962793360045793,0.7301808066759388,0.6362799263351749,0.5095465393794749,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0041080883695453,0.0063861109701,0.0087084645869322,0.0112711588541666,0.0132718124223349,0.0154012484190771,0.0173607565204959,0.0197490207308467,0.0221093485985806,0.0242889233073143,0.0265558546156849,0.0285590831464373,0.0308722757483641,0.0328842083526921,0.0350231177401503,0.0370942332407445,0.0391967521207779,0.0413229159080742,0.0433749504971132,0.0578397576517288,0.0713238835032767,0.0846651905176665,0.0973500668006185,0.1101417781340984,0.1253901249457792,0.137586243498567,0.1494068031267971,0.1602189859070593,0.1706981887675674,0.1836270301749239,0.1959940604576049,0.2080728429215588,0.2181515403830141,0.2282022732033205,0.2388306429245021,0.2485834031852472,0.2575078288688129,0.2664636640458119,0.2743216754358815,0.2818807498899265,0.2889610009254812,0.295212482377054,0.3009963985594238,0.3061038234077247,0.3116043104193154,0.3164959953874885,0.3210041819665443,0.3248695381260222,0.328907169591726,0.3282719898503192,0.3271138957508177,0.3254995619117605,0.3239718285366489,0.3235836705546298,0.3212112853048902,0.3194018040829245,0.3200321327278391,0.3201076679330142,0.3209905114556816,0.32243618450515,0.3236208389076886,0.3252244727500522,0.3255902004454343,0.3268862045824945,0.3288140875798659,0.3298561764538684,0.3337410613473843,0.337059751182758,0.3415900443880786,0.3451806680622554,0.3505646572292031,0.3508882053857259,0.3517507958162801,0.355077905012202,0.3582407188460629,0.3563976679963179,0.3618874038072094,0.359757775942747,0.3629715165511932,0.0,2.020248759625675,56.82645801736852,176.52489369008356,262.36555785021886,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95824,44665,421.888044748706,6197,63.49140090165303,4786,49.30915010853231,1874,19.170562698280182,77.32864418348662,79.6393210208129,63.32870225298407,65.03839194292038,77.09349723711766,79.40569746399719,63.24063134066257,64.95333475096996,0.2351469463689568,233.623556815715,0.0880709123214984,85.05719195042616,150.6978,106.03233699169654,157265.1945232927,110653.21526099573,384.69752,252.20813535527603,400850.2358490566,262586.9775372308,370.55605,179.89915191527166,382328.1536984472,184375.34352384132,2748.54368,1267.9242431537257,2834452.537986308,1289307.8593606255,1165.19054,521.8465037476865,1199527.1226415094,528146.2198903057,1841.3404,781.8161434801877,1886616.421773251,786506.9890403083,0.37998,100000,0,684990,7148.417932876941,0,0.0,0,0.0,33271,346.57288361997,0,0.0,33949,349.89146769076643,1618715,0,58219,0,0,0,0,0,67,0.6991985306395058,0,0.0,1,0.0104357989647687,0,0.0,0.06197,0.1630875309226801,0.3024043892205906,0.01874,0.3397416179637035,0.6602583820362965,24.379385965988423,4.375291966028399,0.3269954032595069,0.2340158796489762,0.2139573756790639,0.2250313414124529,11.060075363425346,5.60098730891202,20.106849418950247,12233.373472085485,54.46003383822482,13.5154134667465,17.791948599816457,11.299375097162768,11.85329667449909,0.5704137066443794,0.7928571428571428,0.7073482428115015,0.5908203125,0.1207056638811513,0.703206562266965,0.9095127610208816,0.8427518427518428,0.7172995780590717,0.1428571428571428,0.518722786647315,0.7198838896952104,0.6597582037996546,0.5527318932655655,0.1134401972872996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024510052159821,0.0045716255119004,0.0067468168213869,0.0092129855355111,0.0114500711816148,0.0137039299531663,0.0159922535929059,0.0182473185218447,0.0204488319332883,0.0226861089792785,0.0250929844155045,0.0272774852990979,0.0292273857727169,0.0313262438361523,0.0333903933012972,0.0352579002283034,0.0374812438557458,0.0393579960185799,0.0414758031846935,0.0434655897414546,0.0582737940026075,0.0715547795539849,0.0847500262027041,0.0970304520522035,0.1094914361001317,0.1247040419414848,0.1364769004018704,0.1481087407565037,0.1590525618846244,0.1690109136130706,0.1814334632696573,0.1936234204604466,0.2044105173876166,0.2149954635388769,0.2255413255875363,0.2362305033676001,0.2473814681644594,0.2564212280563469,0.2649199913688347,0.2728106899122555,0.2792838756058532,0.286237025743271,0.2930399886018237,0.2985401021327726,0.3043510019234983,0.3094121132811535,0.3133873476145086,0.3187012192011427,0.3229974160206718,0.3266073011630522,0.3260526422298072,0.324923789949929,0.3240417626199121,0.3225914054908558,0.3219680042899276,0.3197132726519209,0.3175595285308628,0.318296110042893,0.3195855169941446,0.3204913356628396,0.3210854542390022,0.3219006223451546,0.3230827162043429,0.3237408465797464,0.3255657521741219,0.3258793445360609,0.3251088534107402,0.3270015698587127,0.3302909497831864,0.3335571530136662,0.3363000635727908,0.3372413793103448,0.3389221556886228,0.3397249809014515,0.3408084424762084,0.3414983869040506,0.3465935070873343,0.3495047503537497,0.3522975929978118,0.3509521958802953,0.0,2.5319240033420845,58.69578410889738,171.93464186397597,262.3048263778947,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95751,44876,424.8101847500287,6177,63.34137502480392,4859,50.21357479295255,1841,18.903196833453435,77.35098256499538,79.69788835091987,63.33757887846742,65.0704573169602,77.12426242774592,79.47092307583486,63.25280203104866,64.98759905727384,0.2267201372494582,226.96527508500708,0.0847768474187589,82.85825968636118,150.81462,106.10314700614842,157507.09653162892,110811.52886773864,383.78114,251.72623874328485,400296.435546365,262391.34496077587,375.58226,182.9383864325428,388851.1869327736,188434.53147606007,2775.51884,1283.3774682923338,2869465.008198348,1311666.3689066218,1142.74125,515.881711464063,1179553.717454648,524876.963649531,1809.96584,767.6208340855159,1859214.1074244652,776110.4677780442,0.38148,100000,0,685521,7159.413478710405,0,0.0,0,0.0,33123,345.3749830288979,0,0.0,34406,355.8814007164416,1620628,0,58168,0,0,0,0,0,60,0.6266253093962465,0,0.0,2,0.0208875103132082,0,0.0,0.06177,0.1619219880465555,0.2980411202849279,0.01841,0.3370925382357485,0.6629074617642515,24.560161195954837,4.331033973252503,0.3249639843589216,0.2424367153735336,0.2144474171640255,0.2181518831035192,11.436939784484032,6.002136217208806,19.677974446103185,12247.622571209018,55.14446893288479,13.976523466026253,17.720848109623077,11.68243953176363,11.764657825471827,0.5671948960691501,0.7614601018675722,0.694743508549715,0.6180422264875239,0.1113207547169811,0.7216730038022814,0.9028436018957346,0.8634020618556701,0.7658730158730159,0.1581027667984189,0.5098758465011287,0.6825396825396826,0.6397984886649875,0.5708860759493671,0.0966542750929368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.0046928370886165,0.0066766105547268,0.008866905013407,0.0113674492379335,0.0135802343455731,0.015973333605162,0.0182686615909044,0.0203397452932398,0.0222602038727637,0.0243252385882545,0.0263090362249663,0.0286028602860286,0.0307592499150439,0.0327951720224893,0.0350180878552971,0.0371835361118301,0.0391835379331098,0.041046754623998,0.04306698614439,0.0578625412334544,0.0721496343874551,0.0857370534637685,0.0981643466924597,0.1103017141411372,0.1259130839244373,0.1375422892959031,0.1486751090773651,0.1600918656198258,0.1706390920987707,0.1834554071520896,0.1957881522844836,0.2078484261817232,0.2175225925034463,0.2265687774487897,0.2371906413822913,0.2472246420514195,0.2554567956795679,0.2636029328309082,0.2705646316996274,0.2782317807204371,0.2848748741718753,0.2908882236709774,0.296912626244474,0.3024836728252689,0.3088106757272469,0.313687975190076,0.3179044519590145,0.3217776281893617,0.326338572804899,0.3262916807005726,0.3246753246753247,0.3242572512302768,0.3232714959627239,0.3218055844657884,0.3202415066582895,0.3177690076553658,0.3182916605020466,0.3186961575276904,0.3198622560039967,0.3218892154476871,0.3230453486995303,0.324662006613369,0.3248945147679324,0.3261719218319146,0.3279875032543608,0.3297346440138644,0.3344632768361582,0.3368718790376087,0.3400545605503499,0.3432903577265299,0.34620886981402,0.3453734531063509,0.3497989225282646,0.3522471910112359,0.3538534390908014,0.3585226394683974,0.3617712776762137,0.3649695628112894,0.3684412102642665,0.0,2.068618247326133,57.709938985264905,181.58570175052495,265.10529054168137,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95849,44927,424.2819434735886,6083,62.35850139281578,4771,49.26498972341913,1901,19.499420964224974,77.51248185563044,79.79735611155357,63.42745123530996,65.11036703578215,77.27281267493589,79.55854656048764,63.33920614081204,65.0245263967311,0.2396691806945483,238.8095510659269,0.0882450944979211,85.84063905104244,150.6483,105.9639539402516,157172.53179480223,110553.0093587326,385.50146,252.4254768780444,401685.4531607007,262846.25491976377,369.29518,179.2117776916347,382173.4499055807,184602.13601473696,2755.44228,1249.1130824531094,2847527.965862972,1276175.421027309,1160.30774,506.1464948755087,1197101.2947448592,514707.92947117786,1865.32824,777.7599215054155,1915645.609239533,785610.6311468483,0.38082,100000,0,684765,7144.205990672829,0,0.0,0,0.0,33127,345.0844557585369,0,0.0,33783,349.2994188776096,1629801,0,58356,0,0,0,0,0,68,0.7094492378637232,0,0.0,1,0.0104330770274076,0,0.0,0.06083,0.1597342576545349,0.312510274535591,0.01901,0.3241422528591571,0.6758577471408429,24.85388974299153,4.421501560439803,0.3286522741563613,0.2249004401592957,0.2163068539090337,0.2301404317753091,11.21362988635076,5.791405662629882,19.89795201331813,12191.216454909309,53.22949722595437,12.724387618774026,17.423596574618973,11.28414858934967,11.797364443211707,0.5640326975476839,0.7996272134203168,0.6977040816326531,0.5852713178294574,0.1229508196721311,0.7396006655574043,0.9338624338624338,0.8708860759493671,0.7429906542056075,0.1534883720930232,0.5049033342673017,0.7266187050359713,0.639386189258312,0.5440097799511002,0.1155152887882219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020844716977313,0.0045776323918129,0.0068620196839619,0.0090511511806069,0.0114285133789796,0.0135970710871554,0.0155871393374193,0.0178250938162832,0.020034104949302,0.022098374066878,0.0242998310378372,0.0265616507194207,0.0286879771482588,0.0307206224399481,0.0329274955928289,0.0348691888988731,0.0370128929450963,0.0393236294268889,0.0414571820334898,0.0437539038101186,0.0583149969236544,0.072465889487166,0.0855756737499476,0.0984455414347232,0.110475829463731,0.1258066901148114,0.1371609661999597,0.1475936283788094,0.1589225876678121,0.1688763708019191,0.1812756073168371,0.1934905425988139,0.2052704727572802,0.2147139440664824,0.224210665084701,0.2348783967616709,0.244161429781165,0.2531959828349323,0.2625999501664892,0.2706418872582636,0.2776425530933127,0.2840065712055366,0.2901483525554848,0.2963201757527998,0.301633789180685,0.307495824737204,0.3124182028942153,0.3168162655559635,0.3202231987525612,0.3239423682553012,0.3239806514719084,0.3230628139671763,0.321885107038349,0.3216591186830566,0.322496229929921,0.3209857715828161,0.3190673149785299,0.3192223985861792,0.3197331018400313,0.3207449744493705,0.3223117324909815,0.3228749926095268,0.3233492882971385,0.3234717519158795,0.3237126691971639,0.3259952919264299,0.3275067175788431,0.3305103216365165,0.335509183708899,0.3381168374129976,0.3396927762103094,0.3407310704960835,0.3414664431613584,0.3447106690777576,0.3445073823010493,0.346037296037296,0.3494502184063865,0.3502578341927806,0.3551705468327016,0.3631915694392171,0.0,1.9679803898041572,52.480092398550624,174.07328400332008,272.13564499323206,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95743,45036,426.56904421210953,6067,62.07242304920464,4742,49.00619366428877,1901,19.48967548541408,77.31288813594676,79.67130028125933,63.318020272784125,65.06187834328254,77.0847964425759,79.4442893327824,63.23341932902979,64.98027937755162,0.2280916933708709,227.0109484769307,0.0846009437543315,81.59896573091885,152.31964,107.18500388865549,159092.19472964082,111950.74719682428,384.99028,252.48541260274493,401580.6899721128,263184.28773147386,372.62571,180.92535500148017,386033.6630354177,186547.0085677967,2708.40612,1237.3591937971962,2800414.818837931,1263961.0559489431,1134.96243,502.8667901534344,1170985.4924119778,510785.1228324101,1855.57772,768.903751432592,1904011.4682013304,773638.7011910586,0.38157,100000,0,692362,7231.463396801855,0,0.0,0,0.0,33221,346.44830431467574,0,0.0,34101,352.95530743761947,1612403,0,57889,0,0,0,0,0,71,0.7415685742038582,0,0.0,1,0.0104446278056881,0,0.0,0.06067,0.1590009696779097,0.3133344321740564,0.01901,0.3328095537397863,0.6671904462602137,24.623913868422697,4.363133260898301,0.3184310417545339,0.2275411218894981,0.2393504850274146,0.2146773513285533,11.321374570528231,5.889177673762812,20.004892095388268,12221.3280615358,53.60366203197398,13.011319922140752,16.916316876681677,12.6306913882619,11.04533384488967,0.5638970898355125,0.7822057460611678,0.7019867549668874,0.5647577092511014,0.1267190569744597,0.7514078841512469,0.9407407407407408,0.8739946380697051,0.7392996108949417,0.1778846153846154,0.4972849385538725,0.6869436201780416,0.6455584872471416,0.5136674259681093,0.1135802469135802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800360550142,0.0046422526074661,0.0068994206515894,0.0091313533498557,0.011279380803694,0.0136048879837067,0.0156622820434383,0.0178762850813161,0.0201504897049502,0.0222504377387083,0.0243204724651649,0.0264414437541715,0.0285396933139983,0.0306841357147271,0.0326321327982337,0.0347881807001043,0.0367175770126844,0.0387133592736705,0.0407437449304299,0.0429378177877802,0.0571088513499404,0.0712544337835999,0.0841250865160762,0.0968362615525344,0.1091277163311999,0.1237849444168262,0.1365647648051272,0.1482616933852802,0.1590697873158642,0.169723098041739,0.1822958727697559,0.1948497204226646,0.2065456126997934,0.2161396524002756,0.2254997964505374,0.2370202160066463,0.2465259562689049,0.2553359061195558,0.264495469101315,0.2721199899168137,0.2795619254902868,0.2863123918229873,0.2929965692653495,0.2984958350812009,0.3032725152450135,0.3083576682807821,0.3124491456468674,0.3174249844181284,0.3213675213675214,0.326161892309521,0.3246515139259618,0.324224611445327,0.3240228977497039,0.3235860113148033,0.3231572993569898,0.3205500053711462,0.3175893438328544,0.3186134930954458,0.318676236317854,0.3198150570778301,0.32025406847822,0.3215546301804481,0.322545462172536,0.3235616377093535,0.3237553890989667,0.3245021012241915,0.3252726545994404,0.329944109381414,0.3329340051442866,0.3373537281840329,0.3392513956255147,0.3427160231557704,0.3450695401578749,0.3476309985550232,0.3484720263281617,0.3484382394699479,0.3569452980946527,0.3647201454839361,0.3753120665742025,0.380249716231555,0.0,2.0696138759018634,54.45833232409732,178.30669516541334,262.2023266171116,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95794,45028,426.0183310019417,6124,62.90581873603775,4799,49.64820343654091,1878,19.385347725327264,77.37208356525132,79.71035339033577,63.35007434272507,65.0793337382591,77.14799614978322,79.48421899192834,63.26834806183877,64.99840134281898,0.2240874154680909,226.13439840742444,0.0817262808863006,80.9323954401151,151.7769,106.7964823147534,158440.69565943588,111485.3355270198,388.02436,254.72987059225864,404606.0191661273,265459.006401506,374.1399,182.1127991711362,387408.4598200305,187697.9363365509,2738.35116,1252.0759953193128,2835507.6518362323,1283975.0248651404,1135.64553,501.5715239388295,1175881.339123536,513969.3853882593,1838.54204,763.8975611056162,1899380.984195252,780600.3969855949,0.38067,100000,0,689895,7201.849802701631,0,0.0,0,0.0,33408,348.2890368916634,0,0.0,34169,353.4981314069775,1615964,0,58001,0,0,0,0,0,73,0.7620519030419441,0,0.0,0,0.0,0,0.0,0.06124,0.1608742480363569,0.306662312214239,0.01878,0.3366795366795367,0.6633204633204633,24.54815419203326,4.38243436097435,0.3252760991873307,0.2242133777870389,0.2304646801416962,0.2200458428839341,11.162704606124604,5.700049644109494,19.929222472795864,12190.7183617757,54.31444831003111,12.949389334578584,17.568315032918893,12.272513126484554,11.524230816049084,0.5538653886226297,0.7955390334572491,0.6803331197950032,0.5596745027124774,0.1145833333333333,0.7332814930015552,0.9330143540669856,0.8536585365853658,0.7364016736401674,0.1232876712328767,0.4881867349843438,0.7082066869300911,0.6185925282363163,0.510957324106113,0.1123058542413381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573989668793,0.0046632334455212,0.0068600190781595,0.0089495230645767,0.0113088579273873,0.0133266818700114,0.0156662487641296,0.017705165622385,0.019998773708306,0.022167638931532,0.0243182586774064,0.0264781042498383,0.0285861129670555,0.0307763591433278,0.0330298124220143,0.0349847600351294,0.0372321705827554,0.0394582654955356,0.0412393628627536,0.0431844918950995,0.0579144535693042,0.072413901293703,0.0853363242801287,0.098101432068672,0.1103444643421468,0.1258846893287981,0.1376968232775976,0.1485998001233281,0.1587594550478486,0.1688535652695508,0.1819100990652798,0.1935759291882369,0.2048222881420391,0.2148455005519789,0.2248210338798535,0.2352133572488319,0.2450704853675945,0.2540938465861197,0.2623222077406925,0.2696472311883341,0.2763404314351113,0.2836492392549138,0.2901792572110556,0.2961043623960265,0.3015116222642791,0.3065439194594528,0.3117485894436591,0.31716802013039,0.3218285270916849,0.326313569931867,0.3251861008841472,0.3236287267336518,0.3225715613252045,0.3213831754102149,0.3204067997921461,0.3192459528108455,0.3178841469201809,0.3183413706000065,0.3191038139216692,0.32014857408168,0.320286029838453,0.3215999052375969,0.3232832573126334,0.3232485497545738,0.324080966216054,0.3254522704759918,0.3256312121558323,0.3294254829661845,0.3330056179775281,0.33552134304014,0.3394420131291028,0.3425827674023769,0.347151560831606,0.3523954372623574,0.3567933759879563,0.3566532734578114,0.3535676251331203,0.353115141955836,0.3565264293419633,0.3656800299737729,0.0,1.6878243258958976,56.98540711807679,179.55991438349145,261.14848749938835,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95649,44727,423.1513136572259,6025,61.71522964171084,4793,49.55618981902581,1952,20.04202866731487,77.25911226955019,79.65714802803305,63.27736057920528,65.04663030476532,77.01341520020542,79.41313660362661,63.18618406038707,64.9592518991649,0.2456970693447715,244.01142440643756,0.0911765188182087,87.37840560041832,151.22206,106.40536246673744,158100.8060722015,111245.43117726003,386.68494,253.54106675651167,403637.65434034856,264437.16793328914,375.30309,182.5602126549292,389517.05715689657,188626.39032587857,2750.60532,1265.96427469577,2844508.94416042,1292332.710949168,1143.25007,506.6609106981709,1181755.982812157,516219.1097640029,1906.38966,801.3692456236172,1958049.2634528328,805490.7566587378,0.37958,100000,0,687373,7186.400276009158,0,0.0,0,0.0,33326,347.82381415383327,0,0.0,34338,356.1563633702391,1610504,0,57907,0,0,0,0,0,77,0.7945718198831143,0,0.0,1,0.010454892366883,0,0.0,0.06025,0.1587280678644818,0.3239834024896265,0.01952,0.3304320303845545,0.6695679696154455,24.64205402363365,4.38709021595045,0.3217191737951179,0.2330481952847903,0.2182349259336532,0.2269977049864385,11.085495194624814,5.727994721060167,20.91466400885008,12169.155613928133,54.54508136555302,13.37797093597574,17.589709626227414,11.65977065076832,11.91763015258153,0.5599833089922804,0.7958818263205013,0.6783398184176395,0.5736137667304015,0.1369485294117647,0.7262914417887433,0.9268867924528302,0.8308080808080808,0.7419354838709677,0.1572052401746725,0.4982837528604119,0.7157287157287158,0.6256544502617801,0.5213032581453634,0.1315483119906868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0049179164258408,0.0070438259951687,0.0095309705738904,0.0116689556945928,0.0138716313934776,0.0158859636600934,0.0181610298396235,0.0202819435499534,0.0224169345097958,0.0245550360892388,0.0267275901016531,0.0290154694314161,0.0314302785561232,0.0333849329205366,0.0355791302189962,0.0375319845438253,0.0396520583777948,0.041555280485141,0.0435059112992347,0.058494628150997,0.0722957190292136,0.0856821809627824,0.0981118962122089,0.1111075909263718,0.1260339550302375,0.1375204469653516,0.1497282898241875,0.1604855095711688,0.1706866556412294,0.1830960086299892,0.1943517274264164,0.2060111551701599,0.2167424532953487,0.2261302098843044,0.236819014827567,0.2458372498992883,0.2546303607282243,0.2624574892799053,0.2698066161854094,0.2767715210656394,0.2841995378678583,0.2909032656161002,0.2963795736289634,0.3012803316668699,0.3056915393363991,0.3103374679857379,0.3139626879003649,0.3184055054210218,0.3230537099293221,0.3219215082516273,0.3205060913284897,0.3206191109476246,0.3193687606260081,0.3187215293854081,0.3160695882235314,0.3146947595894111,0.3150452395471101,0.3159674539961549,0.316989247311828,0.3182117151823802,0.3182286506835744,0.3197346043210783,0.3197614687095189,0.3205365513594077,0.3215355366304659,0.3218109339407745,0.3246945459125834,0.3274625606412149,0.3305633970816269,0.3332115287991595,0.3360315262541272,0.337650031585597,0.3407136878946968,0.3392673100346669,0.3412953060011883,0.3451340996168582,0.3496446700507614,0.3435221536735838,0.3444881889763779,0.0,2.113577830729876,56.9796784826106,177.8320060130818,264.8697628256476,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95633,44854,424.6337561302061,6049,62.206560496899606,4697,48.69657963255362,1895,19.55391967207972,77.28554750318864,79.71517038978426,63.27381344368566,65.07104877365778,77.04985120172024,79.47969329940406,63.186580766911135,64.9863883624067,0.2356963014683941,235.4770903802006,0.0872326767745264,84.66041125107893,150.7297,106.0924583759559,157612.64417094516,110937.08068967397,383.74251,251.6764927658427,400843.61046918953,262746.9103404084,371.04485,180.4985581038336,385175.5879246704,186694.38946849236,2701.3764,1237.3698574265236,2801513.0760302404,1270653.9138440958,1108.61784,490.9843083983436,1152284.4311064172,506447.18705712864,1849.48332,774.5648781231646,1909625.8613658464,787575.3055105399,0.38056,100000,0,685135,7164.211098679327,0,0.0,0,0.0,33098,345.6651992513045,0,0.0,33838,351.0817395668859,1617092,0,58034,0,0,0,0,0,71,0.7424215490468772,0,0.0,0,0.0,0,0.0,0.06049,0.1589499684675215,0.3132749214746239,0.01895,0.3257385292269013,0.6742614707730987,24.76992555259877,4.373182873391939,0.327230146902278,0.2284436874600809,0.2188631041090057,0.2254630615286353,11.272282139202126,5.895802163414003,20.278051628672728,12252.447755862786,53.2140041574113,12.947841482151446,17.376906175508548,11.370977266375482,11.518279233375832,0.5435384287843305,0.7586206896551724,0.6877033181522446,0.566147859922179,0.0944287063267233,0.7229571984435798,0.901913875598086,0.8786407766990292,0.688034188034188,0.1312217194570135,0.4759671746776084,0.667175572519084,0.6177777777777778,0.5302267002518891,0.08472553699284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800972841507,0.0047165505279493,0.006893960930837,0.0090969151801595,0.0114251414153745,0.0136091841620063,0.0157501198600442,0.0180818895063746,0.0200161602111055,0.022121627987956,0.0245688903478626,0.0266851623510069,0.0288828730532881,0.0311407984661533,0.0332896217745516,0.0351897058215068,0.037131457588476,0.0391749579378102,0.041386489018424,0.0433929987065548,0.058677176219697,0.0726472437644099,0.0854167323475939,0.0980571886128495,0.1101146146939206,0.1259889219559208,0.1381725057647146,0.1496476808766936,0.160651422579368,0.1710749661588706,0.1849430346970481,0.1977364381423182,0.2088345536959553,0.2188660640920295,0.2286696944309713,0.2394047341612011,0.2483988151791203,0.2570266188834043,0.2653629380482705,0.2732576799633195,0.2803084690025705,0.2869420636035782,0.2929524035326892,0.2989531058659687,0.3042414653441246,0.3087681615622955,0.3131091678985743,0.3169215086646279,0.3223283086422956,0.3263475032044082,0.3245249966311818,0.3236455710137748,0.3225023974727816,0.3213665818097662,0.32027231917234,0.3187778953664933,0.3169528883814598,0.3165296052631579,0.3170464841946899,0.3169213153469066,0.3180940598699132,0.3188102385842945,0.3195828699720934,0.3196143780616011,0.3215538365444674,0.3227147534168268,0.3241359773371104,0.3269104444931027,0.3302733152514083,0.3331360012629252,0.3351032448377581,0.3376396463175729,0.3408305585223346,0.3431773436316825,0.3465744462099261,0.3450175849941383,0.3490279465370595,0.3446748540366418,0.3408657772937653,0.3408662900188324,0.0,1.6535155720175774,56.95410502383231,169.55375513502432,259.8217118277955,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95806,45148,426.9878713232992,6174,63.14844581758972,4765,49.120096862409454,1872,19.15328893806233,77.35864855579545,79.6647145182758,63.35358995694328,65.05483196398619,77.12309438669604,79.42984386111249,63.26605167974128,64.96989099848973,0.2355541690994158,234.870657163313,0.0875382772019932,84.94096549645747,151.8495,106.8700723446094,158496.8582343486,111548.41277645389,388.00925,254.4049723088895,404413.1995908399,264960.2658590167,379.98637,185.15158593351532,392745.2351627247,190228.26914473847,2744.9018,1266.5600016342587,2833026.866793312,1289969.231190383,1151.68748,513.6148418722265,1186135.1481118093,520130.26519448194,1839.38186,775.8478377686532,1884525.520322318,779871.6457674359,0.38266,100000,0,690225,7204.402647015845,0,0.0,0,0.0,33433,348.339352441392,0,0.0,34769,358.98586727344843,1613367,0,57948,0,0,0,0,0,68,0.7097676554704299,0,0.0,0,0.0,0,0.0,0.06174,0.1613442742904928,0.3032069970845481,0.01872,0.3350285097857913,0.6649714902142086,24.73375576299916,4.37937886688913,0.3246589716684155,0.2342077649527807,0.2193074501573977,0.2218258132214061,11.420614601967712,5.971039090865219,19.964938674173847,12268.041848687766,54.11092665061288,13.303511868265176,17.480918334501958,11.654483550628488,11.67201289721725,0.5586568730325289,0.7759856630824373,0.6929541047188106,0.5732057416267943,0.1182592242194891,0.7322957198443579,0.9312039312039312,0.8592592592592593,0.7666666666666667,0.1287553648068669,0.4945402298850574,0.68688293370945,0.6339754816112084,0.515527950310559,0.1152912621359223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024694856587656,0.0047503772954248,0.0070156229406814,0.0093052046231747,0.0116635848251478,0.0139362189105335,0.0160840158089883,0.0181979537502677,0.0201969638150501,0.0222795065365494,0.0246230744018354,0.0268221634151845,0.0289518564941336,0.0311596365395103,0.0332924352246131,0.0355073586367157,0.0375386716607861,0.0394140758632843,0.0413078928508366,0.0434103685196752,0.0580662660657653,0.072704081632653,0.0857292594727739,0.0984119977719624,0.1109741060419235,0.1268982425734726,0.1395085026080318,0.1512079401721221,0.1632378532460738,0.1729154828403255,0.1854731039235109,0.1975658570887651,0.2088177398831986,0.2192453697119539,0.2284833470960638,0.2385412625394889,0.2475999106943514,0.2557917121414989,0.2646004040220623,0.2719169607259062,0.2791074487292255,0.2859216425335659,0.2923352002936614,0.2975419664268585,0.3032082375968002,0.3077397319391869,0.3128190371334201,0.3174794938640554,0.322133312616532,0.3262780079702304,0.3254715076127781,0.3240209631494243,0.3236784326971795,0.3224283548689814,0.3219133327393151,0.3192999632847876,0.318178220329592,0.3183162460567823,0.3191587586560656,0.3195833855294475,0.3200570591989188,0.3212461897787103,0.3220100418058444,0.3234781052914076,0.3239341738042536,0.3247340495046917,0.3256664476127889,0.3265911457511596,0.3287415445321308,0.3299968096985165,0.3349583124515923,0.3360843405569458,0.3386913767019667,0.3416239381648427,0.3445590994371482,0.3441328934967012,0.3495338529726425,0.3494393476044852,0.3489087856743145,0.3525009846396219,0.0,2.4378430343704403,55.87645867136944,179.7753382296557,259.2935337453079,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95867,44786,423.1695995493757,6070,62.075583881836295,4776,49.28703307707553,1860,19.05765278980254,77.41454581429173,79.70335616713442,63.37712166936033,65.06806768898767,77.1868750556508,79.47717475377648,63.29189757543876,64.98586963820512,0.2276707586409259,226.18141335793496,0.0852240939215676,82.19805078255149,152.76184,107.52020508133002,159347.45011317765,112155.39269708218,387.17425,254.31158896449145,403345.6038052719,264756.6787203089,380.45447,185.27132726750156,393725.734611493,190805.22382890663,2724.97256,1261.3451222354995,2813470.996276091,1286839.6507531255,1111.60483,491.8616740345299,1148109.1407888012,501647.7349187208,1814.03744,763.7890463606803,1860242.732118456,769069.9994317548,0.37884,100000,0,694372,7243.065914235346,0,0.0,0,0.0,33331,347.12674851617345,0,0.0,34780,359.6545213681454,1609894,0,57849,0,0,0,0,0,67,0.6988849134738753,0,0.0,0,0.0,0,0.0,0.0607,0.1602259529088797,0.3064250411861614,0.0186,0.3290220820189274,0.6709779179810725,24.31596913296663,4.328674569912607,0.3304020100502512,0.228643216080402,0.2303182579564489,0.2106365159128978,11.275517773271336,5.9945006793341244,19.797792783361544,12166.040322790988,54.22824837234749,13.09907026759239,17.88484794872328,12.264959732794138,10.979370423237704,0.5741206030150754,0.8031135531135531,0.7091254752851711,0.5745454545454546,0.1133200795228628,0.7427480916030534,0.9239904988123516,0.8571428571428571,0.7406015037593985,0.1330049261083744,0.5103866128101558,0.7272727272727273,0.655440414507772,0.5215827338129496,0.1083437110834371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021966897808371,0.0046096955574692,0.0069055031079834,0.0089030109841024,0.0112308161398516,0.0134413252068091,0.0157497962510187,0.0181259945326206,0.0204913427652076,0.0226149927889778,0.0251370038412291,0.0268958938114825,0.0290071002147532,0.031394750386001,0.0332711282490127,0.0354059078702747,0.0372562205783456,0.0395158198004,0.0413997861495499,0.0431883666018286,0.0579734323191458,0.0713681064303405,0.0846244906083367,0.0969255969255969,0.1088739824984467,0.1242026107895737,0.1358609292569758,0.1474308552477731,0.1579463980880846,0.1677483613931371,0.1809311732180124,0.1926070880273315,0.2040009127557617,0.214304447601355,0.2255756443369786,0.2357771260997067,0.2450795633216989,0.2544475786965757,0.2623186926592499,0.2699679413785207,0.2770620345098765,0.2835894197712762,0.2892445643173161,0.2943417930836149,0.3007630248833592,0.306109118694618,0.3109192165696764,0.3151366342679761,0.3193317608025091,0.323730559002931,0.3233370124101543,0.3224732853822563,0.3223385984176591,0.3213161618203344,0.3201763500875813,0.3184230245752473,0.31644350407377,0.317467334708714,0.3180408330208937,0.3188813179384084,0.3190520619518567,0.3205365584620233,0.3216304733295784,0.3224486164249488,0.3245347193944765,0.3264215088365816,0.3274629913221031,0.3325949268353561,0.335347326511368,0.3384615384615385,0.3408649283745311,0.3438060094886663,0.346538963865912,0.3497153131555289,0.3517573959009552,0.3587580550673696,0.3608497723823975,0.3682193990723936,0.3766021270793564,0.3810780248774971,0.0,2.024356399112333,57.50951654641919,180.7724572608806,254.2561910391921,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95716,44946,426.1147561536212,5938,60.97204229177985,4627,47.81854653349493,1826,18.701157591207323,77.36002699221102,79.73153271741424,63.33690834044432,65.0884144986692,77.13230233025084,79.5056236624892,63.2518369016387,65.0067923479267,0.2277246619601811,225.9090549250402,0.0850714388056275,81.62215074248991,152.5304,107.31035130867156,159357.26524301057,112113.28441292112,385.16388,252.10616036483316,401911.6866563584,262898.64846507704,371.15207,179.82268678572754,384698.7964394668,185510.9010561725,2641.63132,1201.2929039597989,2733015.378829036,1228211.1496090512,1091.66491,479.4687220352682,1130941.6085085042,491346.10039336776,1787.53084,746.9471667230847,1834292.3022274228,752848.5187242993,0.38075,100000,0,693320,7243.512056500481,0,0.0,0,0.0,33204,346.36842325212086,0,0.0,33839,350.49521501107444,1614175,0,57862,0,0,0,0,0,69,0.7208826110577125,0,0.0,2,0.0208951481466003,0,0.0,0.05938,0.1559553512803677,0.307510946446615,0.01826,0.3275724115858537,0.6724275884141463,24.80019890720098,4.3261890649061385,0.322022909012319,0.237518910741301,0.219148476334558,0.2213097039118219,11.011714938645312,5.784397190889554,19.294972412796135,12178.421866535711,52.09797099973886,12.955941475500367,16.711761169149106,11.299224858894814,11.131043496194575,0.5573805921763562,0.7843494085532302,0.6986577181208053,0.5502958579881657,0.115234375,0.719327731092437,0.9135135135135136,0.850415512465374,0.72,0.1483253588516746,0.5013092813500145,0.7187928669410151,0.650132860938884,0.4947643979057591,0.1067484662576687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485338951291,0.0044501211365548,0.0067990623382685,0.0089904305247973,0.0114528662679523,0.0134923221050059,0.0159021406727828,0.0181571373165404,0.020189113212369,0.0223489424435389,0.0245137742600244,0.026662423128651,0.0287629957940417,0.0307665368848237,0.0328624934223423,0.0346984563529399,0.036642977021735,0.0385086462809574,0.0405342153711735,0.0424833536528181,0.0570223076280391,0.0710480317350666,0.0836847737143576,0.0961105618544773,0.1085221461933429,0.1237498149831899,0.135469156102477,0.1466443881569145,0.1573444125217614,0.1670134940896316,0.1805675256399207,0.1930335230592767,0.2050847273399202,0.2147557829376011,0.2246381593418679,0.2349585751628195,0.244502460086354,0.2534522310183519,0.2623553020940806,0.2702418025279355,0.2764904491004116,0.2842134785504773,0.2906048601667356,0.2963016175185278,0.3025280489581815,0.3073664507548703,0.3119299343134188,0.3164618102779861,0.3210667287760568,0.3254256062664011,0.3254186184245948,0.3252508016018275,0.3242553671360708,0.3241367343397536,0.3217910802657195,0.3200716406943636,0.3180999051533354,0.3196566917268603,0.3201036994081629,0.3212714023553726,0.3226723525230988,0.3227295138546494,0.3238226337963542,0.3244284155925109,0.3247449834778028,0.3260784873905929,0.3268979243673585,0.330501274426508,0.3328061852047091,0.3349535838081198,0.3400384017555088,0.3435504469987228,0.3443271767810026,0.3477964044602897,0.3532319746292323,0.3565125308859866,0.3590328467153285,0.361745101999596,0.3650618982118294,0.3644716692189892,0.0,2.0286666103787794,52.03578182494886,174.11550712983708,257.5878644719002,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95754,44800,424.2120433611128,6111,62.577020281137074,4809,49.66894333395994,1916,19.644087975437056,77.33346816806463,79.69576046278156,63.32120940122799,65.07029138622863,77.08908563025928,79.45354592160433,63.22936865254844,64.98192813765583,0.2443825378053503,242.2145411772334,0.0918407486795516,88.36324857280431,151.8572,106.7875297845344,158590.97270087936,111522.78733476868,384.25137,251.5368429702492,400735.3426488711,262137.06668101225,365.81292,177.40327919779062,378889.7905048353,182782.1989620615,2755.8352,1264.056683254437,2848209.66225954,1290385.3881957554,1147.10454,514.7193907130068,1180169.361071078,520098.2778382598,1881.6728,801.7989355655224,1931042.0452409296,807160.4508377697,0.38014,100000,0,690260,7208.680577312697,0,0.0,0,0.0,33128,345.3850491885456,0,0.0,33498,346.6695908264929,1618420,0,58046,0,0,0,0,0,71,0.7414833845061303,0,0.0,0,0.0,0,0.0,0.06111,0.1607565633713895,0.3135329733267877,0.01916,0.3392468098350451,0.6607531901649548,24.701912899466087,4.386243197843405,0.305468912455812,0.2424620503223123,0.2252027448533999,0.2268662923684757,10.866594677751277,5.487293020185619,20.64466643456627,12146.264106645376,54.54488570363002,13.917724584197376,16.47754646341575,12.093189123021656,12.056425532995249,0.5493865668538158,0.7624356775300172,0.6678012253233492,0.592797783933518,0.1191567369385884,0.7088906372934697,0.8902147971360382,0.8419618528610354,0.7103174603174603,0.1716738197424892,0.4920859242509892,0.6907630522088354,0.6098003629764065,0.5571600481347774,0.1048951048951049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024722630325751,0.0046343244229911,0.0068002354708401,0.0090532219715905,0.011523362014605,0.0136138235803235,0.0154752681156465,0.0177889816496907,0.0201443113527656,0.0222738579017943,0.0244610069405287,0.0263846825111647,0.0283825056816428,0.0305149330587023,0.0324168171266443,0.0346467110431223,0.0366251436736976,0.0387365231557866,0.041035931131997,0.0428293180847628,0.0571532961010491,0.0713358730690333,0.0848547804918996,0.0982699689751275,0.1100600078041784,0.1255564602256505,0.1371005389806051,0.1476301476301476,0.1583815769797697,0.1686562201701041,0.181943546649429,0.194369001374206,0.2054296870751259,0.2145466876695545,0.2244972054746292,0.2345494417862839,0.243786704776366,0.2521946607842255,0.2610008285380276,0.2682979892822791,0.2751309899718935,0.281598708681311,0.2875329807498905,0.2935389555923023,0.2991880378187467,0.304915126971036,0.3107733079980999,0.3151398828060452,0.3202939996635567,0.3253778628473368,0.3243676642994785,0.3236799383650221,0.3231995942747661,0.3218640170087213,0.3210577981378469,0.3199981585489365,0.3182654485471387,0.3183305651937971,0.3187746020879685,0.3185299169768107,0.3184411003114797,0.3197830905636479,0.3211068750261845,0.322012297372834,0.3233736216112101,0.325098685070452,0.3265248065543923,0.3298236791652261,0.3326070148309552,0.3353011093502377,0.3367388639149979,0.3383709831371301,0.3397093059837664,0.3436116623416272,0.3461285163232665,0.3484957020057306,0.3527244819646968,0.3585136790526745,0.3591962042980742,0.3591820987654321,0.0,2.109960639507839,55.84954340410371,183.42569774794453,262.0430345926034,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95795,45151,427.14129129912834,6184,63.16613601962524,4835,49.856464324860376,1940,19.865337439323557,77.34149214859087,79.67853436309535,63.33904717832892,65.07139762219151,77.10138221372932,79.44061248934838,63.24984582106895,64.98529275471857,0.2401099348615503,237.92187374696996,0.0892013572599736,86.10486747294033,152.39048,107.22006522547296,159079.78495746123,111926.57782292704,385.67592,252.32423272375465,401963.5158411191,262758.24701054813,374.20498,182.496140869156,386315.4131217705,187270.57938100764,2767.22368,1281.544229893224,2856021.5042538755,1305126.937620151,1162.84286,511.1667508446676,1199317.1251109138,519035.159292935,1904.27698,793.19005307769,1952565.728900256,798499.6395770474,0.38397,100000,0,692684,7230.899316248238,0,0.0,0,0.0,33248,346.4168276006055,0,0.0,34277,353.5153191711467,1616262,0,57960,0,0,0,0,0,63,0.6576543660942638,0,0.0,1,0.0104389581919724,0,0.0,0.06184,0.1610542490298721,0.3137128072445019,0.0194,0.325939617991374,0.674060382008626,24.545996116628903,4.418836723048368,0.3236814891416752,0.2347466390899689,0.2173733195449844,0.2241985522233712,11.159833317226855,5.602717920775813,20.59726209086954,12329.55981405749,54.86265594029021,13.455325277995149,17.866480612279037,11.644680779935724,11.896169270080296,0.5528438469493279,0.785022026431718,0.6984025559105431,0.5480494766888677,0.1042435424354243,0.7217459080280593,0.8959810874704491,0.871536523929471,0.6979591836734694,0.1376146788990825,0.4918355855855856,0.7191011235955056,0.639554794520548,0.5024813895781638,0.0958429561200923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0045821801851119,0.0068801055355421,0.0092671625411535,0.0115073510708653,0.0137820741359464,0.0161451533942558,0.0185746816571189,0.020758131972636,0.0227731187089771,0.0247516123409447,0.0268324741738719,0.0289749233712534,0.0312245675845515,0.0332040117214907,0.035215562239656,0.0372038601722995,0.0392838248565886,0.0413774471091899,0.0434212307019644,0.0581146643017371,0.0723434510304158,0.0850283462751632,0.0975094577553594,0.1098335950426287,0.1257702755551797,0.1379065428486621,0.1498952562234817,0.1613089139344262,0.1710467085378662,0.1844963242812705,0.1967113869039253,0.2092255211898011,0.2193213485601879,0.2289744802031908,0.2392122567361126,0.2480688417509168,0.2576330948985436,0.2661879466763316,0.2737147822905232,0.2808873286603462,0.2879461939958664,0.2944430653569275,0.2998886774158796,0.3055242116502263,0.3109089566202176,0.3156269919634041,0.3207599888236938,0.3249502442554731,0.3291074249605055,0.3283802864250655,0.3266997429941864,0.3254012954097437,0.3245211060067609,0.3236828416437541,0.3215187935390033,0.3195678689667189,0.3205397942075676,0.3213699192555084,0.3224133614677587,0.3236199774690199,0.3244116015532134,0.3250772042604147,0.3266669656069234,0.3273394318264102,0.3284421427076794,0.3288446077868381,0.3322445614257626,0.3370380857992354,0.3405930306905371,0.3443891652846876,0.3470219267678121,0.3490950802956921,0.351531085678936,0.3543809523809524,0.3540991477613732,0.3575445173383317,0.3524165110972827,0.3591549295774648,0.3623693379790941,0.0,2.3989299877835344,55.66685219716575,186.266332630757,262.0147743423496,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95701,44675,422.7751016185829,6194,63.59390184010617,4823,49.80094251888696,1912,19.571373339881507,77.3419109081298,79.71082736300504,63.33255108723839,65.08089523529955,77.10863100689826,79.47934791187234,63.24591867984408,64.99730323596444,0.2332799012315405,231.4794511326994,0.0866324073943118,83.59199933511263,151.66404,106.65839958775634,158476.9647130124,111449.6186954748,385.01203,252.31106371370748,401693.89034597337,263032.6792145697,374.29477,182.1899091386236,387133.9693420131,187328.30939960707,2762.96016,1272.3172322229832,2853218.0854954496,1295924.9065546535,1155.1519,513.6714539824856,1191290.1119110563,521133.94823492185,1865.35898,784.7641568332123,1911918.245368387,788784.4168075273,0.37838,100000,0,689382,7203.498396046019,0,0.0,0,0.0,33159,345.85845497957183,0,0.0,34219,353.6222192035611,1618155,0,58058,0,0,0,0,0,80,0.8359369285587404,0,0.0,1,0.0104492116069842,0,0.0,0.06194,0.163697869866272,0.3086858249919276,0.01912,0.3357888275015346,0.6642111724984653,24.58143878701077,4.374660560972084,0.329877669500311,0.2264150943396226,0.2274517934895293,0.216255442670537,11.208893832287467,5.857645690378639,20.41549809658035,12196.302815846786,54.76602575511155,13.077558467140356,17.95961469263099,12.246717752899151,11.482134842441043,0.5633423180592992,0.7893772893772893,0.6819610307982401,0.5761166818596172,0.1323106423777564,0.7375669472073451,0.9386792452830188,0.8596491228070176,0.7258064516129032,0.1822033898305084,0.4985779294653015,0.6946107784431138,0.62248322147651,0.5323910482921084,0.117719950433705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0047228134184655,0.0069588151754919,0.0090903550824733,0.0112559482653434,0.0137655779099128,0.016289998674781,0.0183106066791867,0.0205641864268192,0.022516298729876,0.0247872885699641,0.0269537627452792,0.0292460203200197,0.0312889566570165,0.0333928405584735,0.0353118733072835,0.0374581870527438,0.0392793765112441,0.0413309072004159,0.0432467356530257,0.0575230018902802,0.0718883783246281,0.0856459380344346,0.0990491617056187,0.1107231762372895,0.1261571992340002,0.138365246910306,0.1500063873275421,0.1608409537646355,0.1706464139366244,0.1836530280347661,0.1952882357397166,0.2069044278395927,0.2171973407977606,0.2269328054547454,0.2359804290553255,0.2454866802707434,0.2537991187842819,0.2623579319888387,0.270101063281867,0.2762171417993336,0.2833750790046583,0.2895534403561112,0.2945794975067127,0.3004301754727069,0.3062570907117841,0.3110178515502662,0.3154827050828476,0.3207588707588708,0.3248583102675629,0.3232506798050776,0.322053001979327,0.3216264094705171,0.3210937725345409,0.3194660734149054,0.3180644076604459,0.3164071137505133,0.3166385232060593,0.3168120742346895,0.3175886752708902,0.3188077261741949,0.3199051195888515,0.3205534675709157,0.3208562142777093,0.3234698795180722,0.3246546366176586,0.3265749043349135,0.3290393700787402,0.3307508099732357,0.3353126369903957,0.3386663020192351,0.341698123238875,0.3450753040519251,0.349013308857274,0.3525907715582451,0.3537471702609317,0.3579318809450751,0.3634868421052631,0.3659288316054917,0.3669230769230769,0.0,2.197436471827321,57.52096004779737,178.66081110536976,264.0435455248396,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95714,44815,423.7938023695593,6029,61.955408822115885,4763,49.24044549386715,1882,19.42244603715235,77.33810060160408,79.71958947280211,63.31256206328344,65.07450293315898,77.10700379907908,79.48601603288385,63.22753743189982,64.99016093271453,0.2310968025250019,233.57343991825985,0.085024631383618,84.34200044445106,151.55536,106.67922742389167,158341.89355789122,111456.24195404192,385.7264,253.12751326528425,402487.8805608375,263951.3166990034,372.95761,181.42408451115156,385270.4620013791,186286.1773650514,2724.92844,1245.9892516394602,2821678.876653363,1276513.9181723262,1128.95607,495.7240525530371,1167242.3887832502,505654.7240247372,1850.41708,772.7680853975129,1911429.947552082,788465.4810723811,0.3805,100000,0,688888,7197.358798085965,0,0.0,0,0.0,33265,347.00252836575635,0,0.0,34117,352.14284221743947,1614894,0,57959,0,0,0,0,0,69,0.7104498819399461,0,0.0,0,0.0,0,0.0,0.06029,0.1584494086727989,0.3121579034665782,0.01882,0.3221783741120758,0.6778216258879243,24.544993696680542,4.4546622449143545,0.3040100776821331,0.2376653369724963,0.2317866890615158,0.2265378962838547,10.972364420872143,5.351689514104944,20.0185043226658,12235.102158517664,54.03789876949968,13.543918966769429,16.31967695637782,12.41413977791804,11.760163068434398,0.5578416964098257,0.7950530035335689,0.7037292817679558,0.5661231884057971,0.1047265987025023,0.7274180655475619,0.91415313225058,0.8955223880597015,0.6761565836298933,0.1274509803921568,0.4974373576309795,0.7218259629101283,0.6460017969451932,0.528554070473876,0.0994285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022906488820417,0.0046155406776222,0.0069039738461226,0.0092180417505132,0.0113144961894974,0.0133327901078642,0.015431532137976,0.0180783805039476,0.0200953121165016,0.022382863695937,0.0246005865583789,0.0267800299837759,0.0287897015124875,0.0308532001441738,0.0330836840802178,0.0354559358465608,0.0374285595957922,0.0393302140285717,0.0413556502754964,0.0434592387341402,0.0580728704351549,0.071357541373138,0.0847052157763857,0.0975253199835932,0.1092527365912302,0.1255989591597118,0.1376760077671551,0.1499776391166386,0.161133135999829,0.17154228215278,0.1838524440039216,0.1957326578332034,0.2068744081761485,0.2167671484687011,0.2261862840038735,0.2365079013276003,0.2462926567804181,0.2549997186427325,0.2637149248816161,0.271095317246518,0.2784346879451515,0.2858949291058319,0.2916469250450109,0.2980853385126305,0.3036604039569307,0.3091236642728461,0.3135790713408675,0.3176941308392161,0.3218784014927694,0.3260737572925741,0.3245658904293983,0.3233525518418119,0.3229096236195627,0.3215435941133143,0.3213415720991028,0.3199681318849683,0.3187126174878952,0.3197565696663495,0.320635842098074,0.3208328129738987,0.3207147807518684,0.3212925129784252,0.3231826083314135,0.3239184440813769,0.3247464795501514,0.3263130592659836,0.3270283299775969,0.3295426065162907,0.3322859935763161,0.3344107213243989,0.3360075720016225,0.3360155674765961,0.3390936781251942,0.3414414414414414,0.3476243504083148,0.3482961222091656,0.3490509189514914,0.3522975929978118,0.3587601078167116,0.3571966842501884,0.0,2.075960584211856,55.03820829721332,184.72074864168405,256.751501071066,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95652,44572,422.2075858319743,6029,61.88056705557646,4708,48.665997574541045,1875,19.19458035378246,77.27782633283482,79.68824355774105,63.2892740309558,65.07189166576723,77.04555225263356,79.4593924004336,63.20288360286746,64.98995763426731,0.2322740802012646,228.85115730744587,0.086390428088336,81.93403149991241,152.05982,106.9384876658299,158971.9190398528,111799.53128615176,381.78921,249.9685263465396,398583.2183331242,260770.43485399112,366.33231,177.3015262432379,380099.4019989128,183031.7373404228,2702.51,1229.8788124566684,2794621.3774934136,1255049.6094767165,1123.79311,487.1882864448164,1161527.7568686488,495985.1403471085,1834.37192,764.7566896262201,1879975.6826830597,765822.1022798236,0.37887,100000,0,691181,7225.996319993309,0,0.0,0,0.0,32922,343.6101702003094,0,0.0,33615,348.481997239995,1616525,0,57993,0,0,0,0,0,64,0.6690921256220466,0,0.0,0,0.0,0,0.0,0.06029,0.1591311003774381,0.3109968485652679,0.01875,0.3293913591926837,0.6706086408073163,24.789735454290405,4.339767275731664,0.3177570093457944,0.2308836023789295,0.2274851316907391,0.2238742565845369,10.868043131078512,5.53875251703735,19.93123319321468,12202.329817818953,53.40846593900612,13.003805475601038,17.138699420134778,11.871948917707751,11.394012125562552,0.5590484282073067,0.7626494940202392,0.7065508021390374,0.5826330532212886,0.1157495256166983,0.7370550161812298,0.9143576826196472,0.8722358722358723,0.7316017316017316,0.1194029850746268,0.4956797235023041,0.6753623188405797,0.6446280991735537,0.5416666666666666,0.1148886283704572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0042795716371896,0.0064666111708931,0.0088315700681931,0.0111094155348695,0.0134167337333564,0.0156960734319224,0.0178741050180273,0.0201509789079601,0.0224132102723799,0.0246871794871794,0.0268912742026603,0.0292129281870285,0.031002318989951,0.0329034989004635,0.0349588871076175,0.0369932852524247,0.0387614607453248,0.0408549783549783,0.0427506386528335,0.0572467630184656,0.0711450445638399,0.0844555941596951,0.0976279676713251,0.1093664260689713,0.1239983486646413,0.1360286308992821,0.1482969134552893,0.1603084458989743,0.1698589250821326,0.18284876829242,0.1951774094004786,0.2065501327876703,0.2173270739634286,0.2265276692242489,0.2370071585292879,0.2462596578982627,0.2548302519495425,0.263174617584313,0.2709718772534252,0.2783225030640797,0.2847675152535241,0.2909490915972748,0.2969980226496495,0.302075233281493,0.3074228914622566,0.3124264356014124,0.317054855542828,0.3215151475868864,0.3250686523024926,0.3236380798274002,0.3229574667622883,0.3225273561595482,0.3215366570613533,0.3196901995829609,0.3188755143401093,0.3173786731437824,0.3177071322681601,0.3179154099259665,0.3183966486447778,0.3194353188533669,0.3210789171191882,0.321684192850996,0.3230490424199033,0.3248622241474743,0.326139651262804,0.3274030498600719,0.3307118943844356,0.3319997167540008,0.3360554021056002,0.3409893182964287,0.3433058291189779,0.3463792777462658,0.3479960150203081,0.3515684051398337,0.3553986114436198,0.3533045089561458,0.3535582064993829,0.3549287908405473,0.3573068094873756,0.0,2.2001052000758787,54.23293544179599,178.33319081850888,259.75499728578217,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95837,45065,426.9540991475109,6096,62.80455356490708,4810,49.80331187328485,1910,19.70011582165552,77.39792083527668,79.70169973227445,63.37134666233783,65.07174011784619,77.16252046038012,79.4643279671159,63.28501765019976,64.98637815025612,0.2354003748965567,237.3717651585423,0.0863290121380657,85.36196759007453,151.85852,106.85433577791316,158455.00172167327,111495.91053341942,386.94817,253.0589814271017,403359.4958105951,263654.54863506893,376.8683,182.8358300805388,390647.2448010685,188801.4183368344,2755.06536,1260.1383541632554,2855060.5715955216,1295205.4796568777,1145.21958,509.1074426532135,1187871.448396757,524153.2430880061,1873.83636,784.609624435062,1934797.019940107,800824.0577027167,0.38076,100000,0,690266,7202.500078257875,0,0.0,0,0.0,33300,347.0580256059768,0,0.0,34439,356.81417406638354,1617744,0,58013,0,0,0,0,0,65,0.6782349197074199,0,0.0,0,0.0,0,0.0,0.06096,0.1601008509297195,0.3133202099737532,0.0191,0.3312032418952618,0.6687967581047382,24.49269235515853,4.37104780784014,0.3228690228690228,0.2343035343035343,0.2199584199584199,0.2228690228690228,10.90074277945559,5.417573539413127,20.47154107298443,12184.316734534992,54.65443007577089,13.460146782126014,17.575576358324447,11.788474363647724,11.83023257167271,0.5588357588357589,0.782608695652174,0.6851255634256278,0.5784499054820416,0.1212686567164179,0.7397476340694006,0.931372549019608,0.8337349397590361,0.7532467532467533,0.1775700934579439,0.4940711462450592,0.6981919332406119,0.6309314586994728,0.5296251511487303,0.1072261072261072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217137766259,0.0042253949274995,0.0062883513362746,0.0088238579247179,0.0108571893298633,0.0129856913150556,0.0151311365164761,0.0172508773361625,0.0193107394276255,0.0213523495769431,0.0234619128118436,0.0256991608018548,0.0279758357819467,0.0300485716637852,0.0320855063799962,0.0342780444995095,0.0366010096830257,0.0384619370886666,0.0406525170294068,0.0425655915992798,0.0574551978803746,0.0710348794645191,0.0843434131610955,0.0972035323801513,0.1097865612648221,0.1254809928538204,0.1373540732258167,0.1485478326575354,0.1597628711813715,0.1703309667317303,0.1827599203144349,0.1942786069651741,0.2061915062447688,0.2159958020858386,0.2254780151513485,0.2365228364586331,0.2461116499983276,0.255089537641782,0.2624062025345152,0.269708546852123,0.2776056956612191,0.2840022426762603,0.2902924557297208,0.2963206700568351,0.3024422762256833,0.30775379696243,0.3127996404314822,0.3171044446419276,0.3216331174287967,0.3255011912753886,0.3240837696335079,0.3236650019208605,0.3226907997358103,0.3215052678610034,0.3204873565944327,0.3188140276950793,0.316430116354336,0.3171438867776176,0.3188005321870842,0.3182215561383789,0.3193197126178715,0.3203189767478583,0.3210682741010507,0.3225120340311205,0.3245855022170811,0.3262583542188805,0.326039011256552,0.3299686738600765,0.3345540335927321,0.3379732739420935,0.3411931688109518,0.3445566778900112,0.3482306767107678,0.3524558857230158,0.3559610475560177,0.3602757636990372,0.3615160349854227,0.3618434292614208,0.3667481662591687,0.3635334088335221,0.0,1.482192059484909,56.487109862806,185.0815316496792,261.4348994653617,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95546,44852,424.05752203127287,6086,62.34693236765536,4753,49.07583781633977,1871,19.14261193561217,77.19945181010942,79.66972532645197,63.224607941291474,65.05333719456459,76.9708766760911,79.44276338245876,63.14014131708345,64.97205906948122,0.2285751340183281,226.9619439932029,0.0844666242080265,81.27812508337229,149.95838,105.49633177933576,156948.88326041904,110414.17932653984,384.14676,252.49467093589132,401376.78186423297,263587.56089830166,376.28016,183.44398080879924,389020.7125363699,188356.5740654125,2732.89016,1254.617854744817,2825527.0131664327,1278343.138116527,1163.49744,512.1151471939155,1202940.8766458042,521193.5582796927,1831.98718,760.5374585652908,1877987.9429803449,764953.6427805405,0.37902,100000,0,681629,7134.0401482008665,0,0.0,0,0.0,33163,346.3985933477068,0,0.0,34425,355.5146212295648,1616369,0,58026,0,0,0,0,0,51,0.5337743076633245,0,0.0,0,0.0,0,0.0,0.06086,0.1605720014774946,0.3074268813670719,0.01871,0.339041095890411,0.660958904109589,24.622623826833443,4.418135271606817,0.3191668419945297,0.2358510414475068,0.2221754681253945,0.2228066484325689,11.52902717780689,6.004252805362445,19.802749620356337,12233.417763472014,54.09020925604146,13.37721376752807,17.364308794906368,11.838565262000037,11.510121431607002,0.5659583420997265,0.7796610169491526,0.6888595912986157,0.603219696969697,0.1265344664778092,0.7642023346303501,0.9282178217821784,0.8774038461538461,0.7908745247148289,0.1683168316831683,0.4925028835063437,0.6959553695955369,0.6176203451407811,0.5409836065573771,0.116686114352392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002473365703338,0.0048193015563807,0.0073421886424567,0.0093948267447535,0.011727816915747,0.0142204734041468,0.0163698525284482,0.0183834048640915,0.0206610724519034,0.0227405486836307,0.0247600472206539,0.026899466329395,0.0292378990731204,0.031246131627811,0.0331521402145381,0.0352773119682007,0.037584003982411,0.0399713154366601,0.0423628182159076,0.0445240158261214,0.0593410041841004,0.0736216261560724,0.0862888136733449,0.0987935303724777,0.1112731731033462,0.1270261961050388,0.1384772502420187,0.1502742737614992,0.1603188377848488,0.1706692765188587,0.1833547537017636,0.1952291546834811,0.2072283373515005,0.2166024987111564,0.2261610453823062,0.2363597991735904,0.2463297824724733,0.2551198871650211,0.2632219744208274,0.2710431716645037,0.2786242723625316,0.2853407438675484,0.2909530812657147,0.2971061479346782,0.3022327189501108,0.3071934180780491,0.3126977351478933,0.3173706165248561,0.3217823710416639,0.3263664744166358,0.3261230607202171,0.3247414149772445,0.3233587872457549,0.3222929936305732,0.3211428741676473,0.3189369280845053,0.316499278087169,0.3166647456901519,0.3166011905783054,0.3172870051635111,0.3179559570863918,0.3183081259179866,0.3194318588919562,0.3200503167258188,0.3203104223581461,0.321288089369067,0.3231827956989247,0.3261954393279009,0.330920007063394,0.3339693897833433,0.3362835875090777,0.3397811954970667,0.3403003754693366,0.3415781487101669,0.345210334856823,0.3481805293005671,0.3492808478425435,0.3518187239117472,0.3514757649607365,0.3486342943854325,0.0,2.615493245391061,56.13429146604388,176.6208330901277,261.44292583834533,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95675,45031,425.5761693232297,6114,62.61823882937026,4757,49.07238045466423,1881,19.29448654298406,77.33990302576841,79.72959678323005,63.32261558699434,65.08863363882715,77.1070826382185,79.49655029996114,63.23667337559338,65.00442752415432,0.232820387549907,233.04648326890745,0.0859422114009547,84.20611467282413,151.68362,106.7330663657401,158540.49647243271,111557.9475994148,386.39843,253.56944635480588,403204.6407107395,264371.58010167046,375.9469,183.1525410384521,387995.0248236216,187734.9469403149,2738.58684,1261.6601485523147,2826863.6948001045,1283495.1051862105,1147.71122,512.8320960227543,1181723.5746015157,518298.39920712507,1850.47386,779.8806843387986,1899916.362686177,788312.6043882837,0.38118,100000,0,689471,7206.386203292396,0,0.0,0,0.0,33324,347.6143193101646,0,0.0,34401,354.5962895218187,1614785,0,57984,0,0,0,0,0,62,0.6480271753331591,0,0.0,2,0.0209041024301019,0,0.0,0.06114,0.1603966629938611,0.3076545632973503,0.01881,0.3300760043431053,0.6699239956568946,24.7082701139806,4.450189868967651,0.3125919697288207,0.2362833718730292,0.2215682152617195,0.2295564431364305,11.28548448397706,5.800619851828441,20.15584768114653,12266.352677882702,54.0686115160452,13.521985543975724,16.696429519966163,11.710355427877923,12.139841024225404,0.557494219045617,0.8113879003558719,0.6778749159381304,0.5825426944971537,0.108058608058608,0.7202194357366771,0.9147465437788018,0.8310249307479224,0.757201646090535,0.1596638655462184,0.4978454467107153,0.7463768115942029,0.6287744227353463,0.530209617755857,0.0936768149882904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.004835031169226,0.0071638035129019,0.0093141835615325,0.0113683739564585,0.0137828538854618,0.0160843152444245,0.0182901935167796,0.0204653254824991,0.0228766197875084,0.0250961094879286,0.0272947504567944,0.0295533070088845,0.0317038501946727,0.0338001713230057,0.0360004549167192,0.0380208441248989,0.040033629494312,0.0421399742021387,0.0441250052120251,0.0592917580695706,0.0731051088777219,0.0863206705903335,0.0990080262562721,0.1112552742616033,0.1265787970465652,0.1385426501320716,0.1496621082317884,0.1610567681858955,0.1712101883515753,0.1843014804845222,0.1963476247660467,0.2072939999565056,0.2168375713317445,0.2262392146504666,0.2368473517488868,0.2453615378607847,0.254176839215598,0.2634182313233876,0.2703687158516889,0.2777520707047337,0.2850845396506162,0.2918899733806566,0.2976404359803569,0.3036654933851195,0.3085372310950757,0.3124710825444859,0.3167785576238429,0.3214105336769448,0.3248640515284304,0.3247066431352473,0.3239750629618925,0.3228765907073098,0.3224728850325379,0.32209136331192,0.3202608376193975,0.3193158985555397,0.3188993174061433,0.3211095199127114,0.3223030043836202,0.3231503133476756,0.3246817329517418,0.3252462719344111,0.3264292744027914,0.3264500601684717,0.328699598351677,0.3304052705130764,0.3320415879017013,0.3352903951624244,0.3394164918253434,0.3434508416133569,0.3445138080626388,0.3446696366944845,0.3462706972504937,0.3493637724550898,0.3485045513654096,0.3537352354655622,0.3545081967213114,0.3451748251748252,0.3511627906976744,0.0,2.470881473077971,55.57842793429309,179.94172116807798,259.6259220034636,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95788,44848,424.3642209880152,6152,62.97239737754207,4864,50.22549797469412,1935,19.86678915939366,77.331780499572,79.67388858401569,63.32970022966426,65.06323014886861,77.09514335782667,79.4362273759291,63.242451232388085,64.9776339723119,0.2366371417453336,237.6612080865783,0.0872489972761769,85.59617655670593,151.04144,106.30943744870795,157683.05006890217,110984.08720164109,385.91109,253.0064553349779,402346.3795047396,263597.6482805548,376.09291,183.76285627853596,388963.8054871174,189058.6383642997,2776.99444,1277.2832960017397,2870595.356412077,1304938.7564222445,1164.76648,518.3045950690511,1202734.5700922871,527846.3952364089,1885.56008,789.353017108833,1938770.430534096,798371.7493176251,0.38071,100000,0,686552,7167.4113667682805,0,0.0,0,0.0,33300,347.0685263289765,0,0.0,34344,354.887877395916,1618689,0,58117,0,0,0,0,0,72,0.7516599156470539,0,0.0,0,0.0,0,0.0,0.06152,0.1615928134275432,0.3145318595578673,0.01935,0.3416110507527549,0.6583889492472451,24.49431799171714,4.392490649361543,0.3264802631578947,0.2321134868421052,0.2288240131578947,0.2125822368421052,11.04498280205756,5.750329457084267,20.667333990109743,12232.327436433934,55.18226482637121,13.417929920159056,18.05407642591159,12.237839949471628,11.47241853082894,0.5680509868421053,0.7741364038972542,0.7153652392947103,0.5561545372866128,0.1295938104448742,0.7595238095238095,0.9448818897637796,0.8747044917257684,0.7349397590361446,0.2125603864734299,0.5011098779134295,0.6871657754010695,0.6575107296137339,0.5046296296296297,0.1088270858524788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094454292225,0.0044604841652812,0.0068596710199194,0.0093055386240806,0.0111975591151792,0.0135337427061375,0.0158642768295915,0.0181714239046102,0.0203737400584735,0.0223780519015201,0.0245725181449132,0.0268599708400928,0.0290270837189215,0.0310771417682141,0.0331496274279109,0.0351589959889178,0.0371793411282221,0.0391312915504205,0.0412012261651166,0.0429277942631058,0.0577653491381109,0.0717513178813488,0.085248891544291,0.0981506777345802,0.1098912677006068,0.1252747252747252,0.1376909135231958,0.1488802875311031,0.1597178499397069,0.1697593691743984,0.1817526183787042,0.1942389235029422,0.205415986949429,0.2166827091354567,0.2267579436269384,0.2371782798010126,0.2463040446304044,0.2557469971658644,0.2634228758688725,0.2713265259398324,0.2779575983168798,0.2851065818997756,0.2916001277547109,0.2967817689487431,0.3025201918989494,0.307871540405597,0.3130931216666249,0.317333910960475,0.3226902085845033,0.3264818166206523,0.3253576913749899,0.3245741958561484,0.3243783898006621,0.3236749218840412,0.3230959144518643,0.3210702341137124,0.3182323072040622,0.3189714736946007,0.3198013018156903,0.3205109880293014,0.3212791112278792,0.3223076770991913,0.3224322621298046,0.3238985253910627,0.3253995075556414,0.3267686674512881,0.3278772816865198,0.3308469455197809,0.3326784774600947,0.3356142584341184,0.3386743357984114,0.3403336709130643,0.3417544750539545,0.3446219707973396,0.3500047183165046,0.3556927460524753,0.3583859541044201,0.3582270795385549,0.3589389334070185,0.3641709133673069,0.0,2.190774378104458,55.077716152865655,190.17203071060385,264.7053301119608,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95672,45242,428.88201354628313,6228,63.853583075507984,4899,50.46408562588845,1893,19.253282046993892,77.34192318165195,79.7168496153493,63.32298576779221,65.0750659267437,77.10379360719391,79.48610300205803,63.233874022078666,64.99227713619575,0.2381295744580427,230.7466132912737,0.0891117457135379,82.78879054795141,151.34218,106.5675942536666,158188.5818212225,111388.4880149538,390.3152,255.3943223238392,407166.7154444352,266149.6267300406,380.54146,184.74555031434463,393686.020988377,189914.03783681156,2806.80344,1281.2178611737677,2891488.753240237,1297286.483423289,1175.68415,520.7963502829546,1207294.527134376,523497.3634505528,1855.79896,781.702133047827,1889698.8042478468,774039.5593090056,0.38271,100000,0,687919,7190.390082782842,0,0.0,0,0.0,33607,350.4369094405887,0,0.0,34712,358.7360983359813,1613123,0,57841,0,0,0,0,0,84,0.8779998327619366,0,0.0,0,0.0,0,0.0,0.06228,0.1627341851532492,0.3039499036608863,0.01893,0.3311847759361571,0.6688152240638429,24.612697307875315,4.38207497704538,0.3306797305572566,0.2322923045519493,0.2137170851194121,0.2233108797713819,11.204261935119776,5.834161346342429,20.093075735662392,12289.256131675154,55.33086445280894,13.527588600352107,18.238178002026284,11.587010558389684,11.978087292040854,0.5631761583996734,0.7618629173989455,0.7141975308641976,0.5864374403056352,0.1106032906764168,0.7293469708890638,0.916243654822335,0.8761904761904762,0.7395348837209302,0.1611570247933884,0.5049614112458655,0.6801075268817204,0.6575,0.546875,0.096244131455399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971791055354,0.0044293084400117,0.0067459955161954,0.0093546224632823,0.0113695300662036,0.01356111665411,0.0157005077177171,0.0178183043509338,0.0198169640574671,0.0218913826998689,0.0238908199780573,0.0260323067601844,0.0281932072987595,0.0302833590932509,0.0325168003468458,0.0345084332116524,0.0367838238188466,0.039225659123936,0.0410795070459154,0.0431216848511374,0.0575269771960429,0.0718571652966123,0.0854011840282151,0.0985183314391547,0.1110548309484614,0.1262805858945051,0.1379969418960244,0.1494982636299721,0.160840655933979,0.1713095659828454,0.1846991589389691,0.1972229142071117,0.2094726987720978,0.2200249518473122,0.2294407080035664,0.2393028872786899,0.2484147539519514,0.2569907240634005,0.2657325996936865,0.2739613045121825,0.2815874448803861,0.2876871042868679,0.2936154593032893,0.2986651635264629,0.303851623175371,0.3085459230854592,0.313552315093205,0.3184445010183299,0.3226504868214642,0.3274445031712473,0.3263351053782011,0.3250165508109897,0.3240847892969036,0.3225857733329479,0.3217550002967535,0.3207073797576796,0.3194396129154676,0.3199888339710011,0.3206859995896313,0.3221022575176229,0.3234902849862284,0.3246393445867057,0.3259849119865884,0.3263464337700145,0.3270363160045185,0.3280403998334028,0.3284129692832764,0.3320050203953561,0.3355001048437828,0.3388805439165151,0.3397548953104509,0.3417005760186017,0.3422379032258064,0.3453128546568813,0.3469311725807953,0.345049042503503,0.3501653140967838,0.3472553699284009,0.3475061324611611,0.3549232497192063,0.0,2.834543710971432,55.22614453272058,181.47165470366963,275.35084087582607,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95731,45160,427.9804869895854,6015,61.54746111499932,4720,48.63628291775914,1879,19.178740428910174,77.32392886815877,79.68555390888805,63.31606620966248,65.06393225077683,77.0843316417421,79.44921757642919,63.22738672537757,64.97896951834808,0.2395972264166772,236.33633245886188,0.0886794842849099,84.96273242874963,150.7044,106.07315873061124,157424.86759774786,110803.35390898582,385.34931,253.19350842751956,401875.3486331492,263835.43782444525,374.85647,182.6179793801257,387121.3713426163,187376.1877964973,2710.83284,1246.5004333547136,2796327.501018479,1267119.8907503702,1111.9847,491.319032376448,1145076.3180161077,496733.21642427024,1838.77846,769.7389495820295,1879923.4103895288,772812.4377236563,0.38316,100000,0,685020,7155.67579989763,0,0.0,0,0.0,33216,346.2828132997671,0,0.0,34291,353.6576448590321,1617593,0,58148,0,0,0,0,0,67,0.6998777825364825,0,0.0,0,0.0,0,0.0,0.06015,0.1569840275602881,0.31238570241064,0.01879,0.3194730995080146,0.6805269004919854,24.556722781116505,4.387285168902752,0.325,0.2330508474576271,0.2207627118644067,0.2211864406779661,11.461080487437124,5.949606080573285,20.10337487424382,12268.955606418158,53.676075136279344,13.280623620497948,17.437683786492965,11.604629848654874,11.353137880633543,0.5713983050847458,0.7972727272727272,0.7138200782268579,0.5930902111324377,0.1024904214559387,0.7382239382239382,0.9056603773584906,0.8702830188679245,0.7398373983739838,0.1044776119402985,0.5083211678832117,0.7292899408284024,0.654054054054054,0.5477386934673367,0.1020166073546856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027652010088425,0.0051810319480071,0.0074086102259118,0.0095307768904062,0.0118098221914798,0.0137983706720977,0.0161185082478641,0.0181081384547857,0.0202026398388696,0.0221152861677075,0.0242882188297774,0.0266127293448463,0.028447176872147,0.030406971354408,0.0325463326041193,0.0345244617181604,0.0366568611203182,0.0385896810487093,0.0407013019425148,0.0429546283273428,0.0580049068225713,0.072467255304013,0.0860788960426147,0.0987150638262076,0.1108674104224223,0.1264161122100341,0.1378490790255496,0.1500883749653953,0.1617282631916257,0.1715317903583718,0.1842176079913025,0.1960141871580267,0.2072031917553567,0.2173252279635258,0.2271587559934896,0.2375178553632528,0.246702818504385,0.2552545119042261,0.2639382414713061,0.2720320132088885,0.2793459871607685,0.2862867789222062,0.2931279789428754,0.298990602158023,0.3039784828459114,0.3090698162340948,0.313924621981494,0.3183962264150943,0.3230401951371409,0.3274487245606379,0.3260206697428425,0.3252666685041757,0.3241984646647098,0.3232956437392324,0.3222719900001488,0.3202150801188761,0.3177370321109633,0.3180281597689455,0.3188286949242307,0.3198222317412722,0.3219396164219358,0.3236608908932669,0.3243498124358195,0.3263840733698691,0.3276223018985971,0.3286977848514102,0.330191097314385,0.3312306818898631,0.3331216259129883,0.3383300198807157,0.3392881556760698,0.3422964730840626,0.344699591066373,0.3459081229084271,0.3485449735449735,0.3490284896888783,0.3502730582524271,0.3572133412275508,0.3513944223107569,0.3501696192989069,0.0,2.5743803751042287,56.55115678142027,172.2817690980171,259.9737732848029,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95790,45129,427.3410585656122,6077,62.35515189476981,4774,49.21181751748617,1926,19.69934231130598,77.4066300966336,79.74435519340794,63.35719594835807,65.08710766303412,77.17537384825361,79.51689362517895,63.27061702718841,65.00474149895678,0.2312562483799922,227.4615682289891,0.0865789211696608,82.36616407734232,151.93992,106.86358009763428,158617.03726902598,111559.6251542082,387.75507,254.3170183330521,404141.85196784633,264851.18048294005,371.86499,180.7533431899712,384384.9984340745,185767.3434526051,2772.45568,1258.446934460452,2859520.534502558,1279653.315245559,1160.8166,505.2944011071727,1193855.7678254514,510854.3019910327,1897.13552,792.5838145348545,1941288.7566551836,794110.2155898963,0.3825,100000,0,690636,7209.865330410272,0,0.0,0,0.0,33386,347.8546821171312,0,0.0,33929,350.422799874726,1615563,0,58034,0,0,0,0,0,83,0.8560392525315794,0,0.0,1,0.0104395030796534,0,0.0,0.06077,0.158875816993464,0.3169326970544676,0.01926,0.3291809405169729,0.6708190594830271,24.73971075914324,4.476377964819768,0.3077084206116464,0.2245496439044826,0.2341851696690406,0.2335567658148303,11.040802474625384,5.58788644389393,20.314422628355707,12220.616164943976,53.6291642587664,12.824185010158107,16.42247578506329,12.381264760421512,12.0012387031235,0.5385421030582321,0.7611940298507462,0.6766507828454731,0.5733452593917711,0.1076233183856502,0.7067545304777595,0.9142091152815014,0.8539325842696629,0.7333333333333333,0.1130434782608695,0.4811797752808989,0.6795422031473534,0.6199460916442049,0.526071842410197,0.1062146892655367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020771272823069,0.0043093833019001,0.0066266833094853,0.0088800382024526,0.0110454531585317,0.0129121606484592,0.0154156726004771,0.0178635226866738,0.0201357373563923,0.0222379139547259,0.0243097546477545,0.0267405469190908,0.0290656443672466,0.0312847436689314,0.0332027626017936,0.0353152557774519,0.0373470168940937,0.039062014057349,0.0410796658770726,0.0428843611073514,0.0572644935097458,0.0715854423760719,0.0848068759498978,0.0978675550977939,0.1103595060479622,0.1250396263499376,0.1369774442465869,0.1480272600657048,0.1590094319491272,0.1692747662350181,0.1822260476625961,0.1946934230016542,0.2074717202560118,0.2170741561745853,0.2267029912886818,0.2362228245837251,0.2465374579030711,0.2552887749825768,0.2631949012225271,0.2709322955416929,0.278337997548396,0.2855072633141281,0.2920230448001324,0.2976488483788672,0.304130785954599,0.3083834549398541,0.3129084762739451,0.3175873387445612,0.3225827342788679,0.3266265314744402,0.3259331149662339,0.3247164409206035,0.3238071080296497,0.3225671262175207,0.3219725083870202,0.3200813468095842,0.3188131313131313,0.3190202106089345,0.3198267810138405,0.3209186840471756,0.3217803312938367,0.3211856744112906,0.3213921016984474,0.3212942564034092,0.3213969832428943,0.3222199213087596,0.32371169029629,0.3279900202713239,0.3298142921849413,0.3322569211987555,0.3363443385574274,0.3379756148833298,0.3420414256391118,0.3463410980450903,0.3510403240655496,0.356100949293818,0.3580190822353475,0.3541418945699564,0.3552523874488403,0.3494849294162533,0.0,2.3133605112461084,52.8474464719972,178.52987374264632,268.27542705600894,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95690,45227,427.662242658585,6126,62.733827986205455,4841,50.03657644476957,1917,19.709478524401717,77.29491858535671,79.69697557710182,63.29396199958445,65.07380984497483,77.05764171807782,79.45918111897335,63.20627196621051,64.98783303423231,0.2372768672788936,237.79445812847652,0.0876900333739456,85.9768107425225,151.5998,106.72185680606376,158428.04890793186,111528.74574779368,388.00102,254.58615976510728,404941.6448949734,265517.6087000809,378.08891,184.16620495786424,391323.75378827465,189566.88205259744,2783.81112,1280.4049525494124,2879274.4487407254,1308152.9444554418,1146.46639,506.0006235560435,1178867.4992162192,509554.3354123144,1882.42786,788.9950555423712,1936760.0167206605,798687.7430303517,0.38286,100000,0,689090,7201.274950360539,0,0.0,0,0.0,33446,348.9601839272651,0,0.0,34593,357.67582819521374,1612871,0,57908,0,0,0,0,0,72,0.7524297209739785,0,0.0,2,0.0209008255826105,0,0.0,0.06126,0.1600062686099357,0.3129285014691479,0.01917,0.3293675641828428,0.6706324358171571,24.502264882030477,4.359348231688836,0.3205949184052881,0.2278454864697376,0.2266060731253873,0.2249535219995868,11.237912834791375,5.740896661354805,20.477488664067767,12299.051328358926,54.9917915262064,13.374944283688496,17.4889445669861,12.236864642067223,11.891038033464593,0.5695104317289816,0.7987307343608341,0.7139175257731959,0.5888787602552416,0.1120293847566574,0.7387596899224806,0.9106280193236715,0.8596938775510204,0.7546468401486989,0.1674418604651162,0.5080259081948747,0.7314949201741655,0.6646551724137931,0.535024154589372,0.0983981693363844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025038774620616,0.0049925416298821,0.0073020870360026,0.0092115296629556,0.0115536915826012,0.0139329140888567,0.0162455610433078,0.018563167896038,0.0205119286328109,0.0227619623229084,0.0249061403688734,0.0271411400922511,0.0294196336694793,0.0316599849532623,0.0337427745664739,0.0358431834869026,0.0379159197123405,0.0399609630498655,0.0419956516763931,0.0441294491635833,0.0591503984791986,0.0734079417091529,0.0866134295937962,0.0994044988742293,0.1113432080010127,0.1268978067437604,0.1385129756408215,0.1501336200930549,0.1614985147351099,0.1718347639484978,0.1849988689366927,0.1966980774848265,0.2089430540757974,0.2191584699453551,0.2291391748042579,0.2394534623646389,0.2491520128536999,0.2574277482668587,0.2652259332023575,0.2734412621247907,0.2797285403251957,0.2851490248413758,0.2913099593856938,0.2971066647473729,0.3020652266400865,0.3087480252764613,0.3146572785246251,0.3189872450927977,0.3229484856329278,0.3273235647116234,0.3263894496030144,0.3247947861238295,0.3240186481499739,0.3229199780365864,0.3217661395791226,0.3202103358935443,0.318217865753077,0.3186108461867333,0.3204590937858133,0.3206375898958817,0.3219877083842352,0.3224098965148091,0.3224105698741781,0.3233546361699742,0.3226391373724674,0.3240815899033804,0.3249033366747816,0.3289328238006506,0.3310361801624416,0.3344203619009743,0.3365947329919532,0.3389695326208327,0.3449968533668974,0.3503315801509261,0.3538127595318988,0.3567084078711985,0.3582430989781912,0.3632296115517592,0.3676591095329145,0.3718479488144524,0.0,2.1852147683302685,56.59635931671029,181.83802571829997,266.9783917198749,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95720,44690,424.6865858754701,6005,61.53363978269954,4716,48.68366067697451,1914,19.598829920601755,77.3593554540744,79.7283827733886,63.33143217950936,65.08292145892065,77.1304606140587,79.50215518170003,63.24683749728314,65.00164279914448,0.2288948400156982,226.22759168856987,0.0845946822262249,81.27865977617432,151.82046,106.73762638979916,158608.9218554116,111510.26576452063,384.64214,252.14529493588745,401252.8311742583,262831.55551179213,372.22308,181.1170113945695,384737.035102382,186049.37338556472,2708.36908,1241.746952650206,2797585.165064772,1265384.8648664923,1107.70273,487.111913512304,1142901.274550773,494561.5164148591,1877.1906,780.023298130008,1924772.670288341,785445.5097092128,0.37909,100000,0,690093,7209.496447973255,0,0.0,0,0.0,33213,346.3643961554534,0,0.0,34068,351.76556623485163,1617505,0,58020,0,0,0,0,0,61,0.6372753865440869,0,0.0,0,0.0,0,0.0,0.06005,0.1584056556490543,0.3187343880099916,0.01914,0.3349101229895931,0.6650898770104068,24.387901108306156,4.43886749924884,0.3176420695504665,0.2334605597964376,0.2230703986429177,0.2258269720101781,11.498352391730869,5.961472099649917,20.29854206776323,12207.404263940783,53.4926166101724,13.149548264545937,16.943574882385516,11.75268112529445,11.646812337946502,0.5642493638676844,0.7674841053587648,0.7142857142857143,0.594106463878327,0.1136150234741784,0.7376788553259142,0.910411622276029,0.8723958333333334,0.7411764705882353,0.1359223300970873,0.5011567379988433,0.6816860465116279,0.6597845601436265,0.5470514429109159,0.1082654249126891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002126969979338,0.0042069196224923,0.0065248054227931,0.0086530844386666,0.0110734876910405,0.0132651918515275,0.0153830470462306,0.0177816793581446,0.0198012716975731,0.0218675457365452,0.0237809567758806,0.0258219579083597,0.0276863245401045,0.0295702525320172,0.0316595463645181,0.0335962454903501,0.0354595243764817,0.0373601070395071,0.0392540075264569,0.0412903763424059,0.056377002276382,0.0703326146568145,0.0844609478255396,0.0970736990420912,0.1094532609268729,0.1247236531728318,0.1372453310696095,0.1489513467475779,0.1585685128391447,0.1688395300177048,0.1825782470505845,0.1947243659822269,0.2063612927086619,0.217643454282838,0.2274023899994493,0.2380635575366465,0.2479228088984186,0.2564483290025759,0.2651363863295965,0.2726710422322257,0.2794571894630895,0.2865276251490565,0.2922902333498829,0.2979403281592206,0.3033218480054353,0.309223402552961,0.3145609206905179,0.3185458243294776,0.3220714017675755,0.3263789126853377,0.3257623610681791,0.3252772014674159,0.3241011235955056,0.3230607574165503,0.3217422211690831,0.3193164479707049,0.3178056278079924,0.3182264076907985,0.3188605676729495,0.3187137623163661,0.3188237714884304,0.3188580222555441,0.3198423843558089,0.3200224089635854,0.3216588088136246,0.3223218007503126,0.3233435792349727,0.3265344664778092,0.3281831589297001,0.3328045685279188,0.337086847503989,0.3417486048365665,0.3452343205022513,0.347941466373493,0.3502381619501261,0.3533223374175306,0.3574908647990256,0.3672078572860293,0.3735070575461455,0.3803030303030303,0.0,2.282869650736598,55.02529194839816,177.2348171711614,258.573973080626,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95888,44731,422.482479559486,6081,62.07241782079092,4753,48.98423160353746,1806,18.479893208743533,77.4394230829848,79.71875828229986,63.39129033748679,65.07685037412534,77.21136347883514,79.48963237477605,63.307315820886224,64.99417469972077,0.2280596041496636,229.1259075238088,0.0839745166005627,82.67567440456958,151.21458,106.41905163576196,157699.1698648423,110982.65855556686,384.50917,252.35205084303496,400445.7179209077,262621.25692791067,374.6686,182.06300952288768,386089.4376772902,186419.7253386708,2704.43456,1255.1594131368772,2791565.868513265,1280140.9281003638,1103.79423,488.2810537668682,1140778.960871016,498870.5091011048,1764.7728,741.7945340954933,1809171.345736693,751682.1106655616,0.37987,100000,0,687339,7168.14408476556,0,0.0,0,0.0,33191,345.54897380276986,0,0.0,34368,353.7773235441348,1622154,0,58219,0,0,0,0,0,72,0.7508760220256966,0,0.0,1,0.0104288336392457,0,0.0,0.06081,0.1600810803696001,0.2969906265416872,0.01806,0.3367843137254901,0.6632156862745098,24.380220025487525,4.325213288365893,0.321060382916053,0.2417420576478013,0.2274353040185146,0.2097622554176309,11.537417500960215,6.118012596390765,19.26820752947275,12170.855719764337,53.90326096330431,13.648020929034429,17.35581493146616,12.012531280667742,10.88689382213597,0.5768988007574164,0.7876414273281114,0.709043250327654,0.6003700277520814,0.1063189568706118,0.7470542026708562,0.9347826086956522,0.8467336683417085,0.7846153846153846,0.1144278606965174,0.5146551724137931,0.7047619047619048,0.6604609929078015,0.5420219244823387,0.1042713567839195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0043779642466253,0.0067357145030888,0.0091177694971011,0.0113937816988016,0.0135324881463543,0.0158390628978864,0.0181864545083639,0.0202893220546769,0.0223817999549908,0.0246726367343593,0.0267386263364182,0.0289783587150872,0.0310878695544758,0.03324845098302,0.0352422452604188,0.0372753701155608,0.0393637964977722,0.0414326498832078,0.0432959876832173,0.0573397125196743,0.0722711552727538,0.0851709911834307,0.0979916643045363,0.1101567351922611,0.125649254676745,0.1379898326625714,0.1491213157950657,0.1593118444614991,0.1694327629931623,0.1820663857597385,0.1940927358368264,0.2055331675048608,0.2167666371671747,0.2253996525716296,0.2346613545816733,0.245408549904159,0.2548297241441279,0.2626976575596937,0.2699298141331931,0.276599184672772,0.2833092046887405,0.2897511050180821,0.2954809361345544,0.3009854847322685,0.3066069097983205,0.3116912343873073,0.3155273822075992,0.3207449627130911,0.32415962515465,0.3234278187707485,0.3218468128337841,0.3201146679407549,0.3186513547046772,0.3187088547535733,0.3175551751543681,0.3154825864357499,0.3166475691602554,0.3175165692672039,0.3178396654506629,0.3188432870673068,0.3194901396796627,0.3197060174552136,0.320002669098512,0.3214362502687594,0.3229347797877034,0.3242677824267782,0.3282121599301941,0.3307857986521225,0.3346314216033357,0.3378890392422192,0.3420525261048412,0.3449849924962481,0.3487101669195751,0.3520489872821479,0.3535413453553209,0.3481881264456438,0.3487231869254341,0.3513139695712309,0.3553875236294896,0.0,2.3227561099469045,55.23976121592902,180.07807964513876,259.28986898675566,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95715,44904,423.622211774539,6153,62.67565167424124,4898,50.336937784046384,1911,19.43269080081492,77.34647984393533,79.69662349623427,63.33814763576003,65.07464735325894,77.10629759030664,79.46380272084424,63.24722545490444,64.98979791656753,0.2401822536286886,232.82077539002444,0.0909221808555926,84.84943669141387,151.86028,106.79864577465904,158658.8100088805,111579.8420045542,385.06196,252.41626755668267,401453.429452019,262869.41185465467,374.42735,182.4115492482061,385740.18701352976,186418.31423531976,2809.03216,1298.7217875136746,2887997.4089745595,1310072.9744697018,1192.79655,528.6583897668125,1221614.8775009145,527746.1763269153,1883.1749,800.1629111459475,1916249.09366348,791439.6900574449,0.38013,100000,0,690274,7211.764091312752,0,0.0,0,0.0,33184,345.8183147886956,0,0.0,34289,352.8705009664107,1616361,0,58036,0,0,0,0,0,75,0.7626808755158543,0,0.0,0,0.0,0,0.0,0.06153,0.1618656775313708,0.310580204778157,0.01911,0.3317315144938769,0.6682684855061231,24.14626834767109,4.3483015582150575,0.3207431604736627,0.2274397713352388,0.2272356063699469,0.2245814618211515,11.138825394996436,5.722612255349431,20.34254304235253,12232.535383962344,55.65219343851501,13.232912845417136,17.870665236076025,12.332903641267428,12.215711715754413,0.5779910167415272,0.803411131059246,0.7218332272437937,0.605570530098832,0.1163636363636363,0.7344931921331316,0.927860696517413,0.8817966903073287,0.7619047619047619,0.1346938775510204,0.5201342281879194,0.7331460674157303,0.6628919860627178,0.5598141695702671,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812639254608,0.0050380642479903,0.0070833460184085,0.0093252879868348,0.011654158276893,0.0141716892001954,0.0166258919469928,0.0187285030465712,0.0210362768447629,0.0232510519795644,0.0252667616519234,0.0274156795927165,0.029568400057574,0.0314138282642057,0.0338722491049596,0.0361550387596899,0.0383189762279466,0.0404942729083665,0.0426208717527573,0.0446847072057996,0.0592829250976215,0.0723466610843625,0.0848389465953205,0.0979272486355175,0.1101211501354899,0.1253714297799443,0.1366944638954315,0.1477704565534419,0.158339828943013,0.1693376354690364,0.1827411714039621,0.1952475204689747,0.2069407762452856,0.21763220878004,0.2268065037432802,0.2369053286538312,0.2466152164700109,0.2553373377426829,0.2635974717156701,0.2715943323826214,0.2791068949560388,0.28649280785873,0.292717285792078,0.2985167687861965,0.303344306903631,0.3079471422061848,0.3119658654387567,0.3157083927480139,0.3196695801021864,0.3246314009406542,0.3236174400733411,0.3224687073986863,0.321059012603265,0.3207375271149674,0.3202670751111574,0.3187003587966512,0.3169824461433749,0.3174389603570491,0.3190820389261974,0.3199992859947878,0.319883106665168,0.320666021450157,0.3217747010698552,0.3218859138533178,0.3226854749410235,0.3225882414505874,0.3265708489299083,0.3295468848332284,0.332104616464806,0.3343233931329452,0.3379234873010807,0.3409006326758467,0.341053160107952,0.3434520631530776,0.3470099981135635,0.3504283674440742,0.3495412844036697,0.353646150721105,0.3542713567839196,0.3493312352478363,0.0,3.2245207256380137,56.9389640834452,180.8483707612948,271.3127238069469,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95729,44919,425.4719050653407,6084,62.18596245651788,4759,49.00291447732662,1953,19.96260276405269,77.41222784566315,79.7694035041723,63.350809200748486,65.09037217514775,77.16986359512595,79.53040610552921,63.26097986081163,65.00472945002622,0.2423642505372072,238.9973986430931,0.0898293399368554,85.64272512153082,152.33108,107.112062505704,159127.41175610316,111890.92386393256,387.18457,254.19308256575505,403771.364999112,264846.39196665067,379.47025,184.94083927970084,392066.0719322253,189814.20236066877,2721.41904,1261.755349819757,2804101.661983307,1279314.3037321572,1161.01983,519.706621599612,1196592.631282057,526670.739034138,1911.71614,799.524940644252,1955719.8132227436,800753.9994650211,0.37928,100000,0,692414,7233.064170731962,0,0.0,0,0.0,33372,347.8778635523196,0,0.0,34672,357.87483416728475,1611972,0,57785,0,0,0,0,0,65,0.6685539387228531,0,0.0,0,0.0,0,0.0,0.06084,0.1604091963720734,0.3210059171597633,0.01953,0.3297705124174788,0.6702294875825212,24.241559368441774,4.415392501630056,0.3229670098760244,0.2256776633746585,0.2286194578693002,0.2227358688800168,11.30808483602971,5.829679786311591,20.69767614386849,12136.018301258524,53.84592249638084,12.774985986411767,17.349658826441193,12.175966505993038,11.545311177534842,0.567135952931288,0.7960893854748603,0.697462589459987,0.5772058823529411,0.1358490566037735,0.7370030581039755,0.9156010230179028,0.8557457212713936,0.7455197132616488,0.2096069868995633,0.5027528252680382,0.7276720351390923,0.6400709219858156,0.519159456118665,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888393761393,0.0045710231591749,0.006999959420525,0.0091904297668372,0.0111631879136632,0.0132844709115895,0.0155023747885113,0.0175198718406579,0.0196523285403317,0.0219344933469805,0.0239608100352545,0.0262071938901207,0.0284462995137296,0.0306681496127862,0.0326887756154941,0.0348858843959315,0.0370186283951,0.0390209993359893,0.0409423604757548,0.042908931808238,0.0573078167903864,0.0713762504708886,0.0846787306582743,0.0970575549407197,0.1095810910625725,0.1252301830881574,0.1364721865480752,0.1478208090639009,0.1585089556704997,0.1687577139790716,0.1814839572192513,0.1935333672618596,0.2050095793782112,0.2155181852022159,0.2250839988983751,0.2353626210307997,0.2447109313007812,0.2539421517390521,0.2623684240407871,0.2697677617551984,0.2760856977417487,0.2825896148579854,0.2889262300901711,0.2940936912333656,0.2998943649145812,0.304993534880857,0.3098991212170456,0.3146652443360764,0.3196197217665371,0.3235986687188392,0.3227641730962764,0.3218735863798988,0.3210640836667368,0.3208218152499424,0.3201004653911501,0.3183707018585323,0.3170796947525765,0.317129252144418,0.3177927239376337,0.3182875095404604,0.3187089328592967,0.3186163843027935,0.3196863203120111,0.3199759834552692,0.3207813659540852,0.3224057888321187,0.3241948287593558,0.3281430760091298,0.3308892845920184,0.3339894496496339,0.3376412110257569,0.3374015956041634,0.3413687308246196,0.3447545571439376,0.3460143242489071,0.3437169389914188,0.345811320754717,0.3482089253552131,0.3465940054495913,0.3523845571536714,0.0,2.7663408044774958,56.66350857516249,172.96532252692126,260.0185727739496,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95742,45150,427.52397067117874,5944,60.89281610996219,4616,47.75333709343862,1820,18.6647448350776,77.32373385663094,79.69443743853748,63.321321634088775,65.07554957704983,77.09400801118925,79.46461381541754,63.23647070312775,64.99278242358021,0.2297258454416919,229.8236231199411,0.084850930961025,82.76715346961794,151.27178,106.37253421591193,157999.16442104822,111103.10357821216,383.30709,251.3679596271352,399871.8430782728,262065.72460296965,367.41914,178.36462802490783,381017.5262685133,184143.5800446938,2654.31936,1215.7487469601267,2745371.8953019576,1242895.7077981727,1097.82658,485.2185498362284,1131871.132836164,492165.7440575804,1785.44754,751.623257377168,1831735.539261766,757166.208302148,0.38234,100000,0,687599,7181.780200956738,0,0.0,0,0.0,33079,344.98965971047187,0,0.0,33480,347.0368281422991,1621406,0,58219,0,0,0,0,0,72,0.7415763196925069,0,0.0,2,0.0208894737941551,0,0.0,0.05944,0.1554637233875608,0.3061911170928668,0.0182,0.3278347213324792,0.6721652786675208,24.797708814739494,4.423911278406385,0.3275563258232236,0.2255199306759099,0.2224870017331022,0.2244367417677643,11.206883241741862,5.684984573885406,19.533034160909207,12263.713820262055,52.426621546158174,12.528875863847784,17.06360904757204,11.41156237466155,11.422574260076791,0.5517764298093587,0.7829010566762729,0.6818783068783069,0.5589094449853943,0.1225868725868725,0.7243642329778507,0.917948717948718,0.8798955613577023,0.6899563318777293,0.1382488479262673,0.4898439799823373,0.7019969278033794,0.6147032772364924,0.5213032581453634,0.1184371184371184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025126646403242,0.0047156895555082,0.0068412505075111,0.0092067556856289,0.0115578707471919,0.0137314223431022,0.0157773426345204,0.0181487647197001,0.0204309101878457,0.0225408367043883,0.024869244180084,0.0268668672780864,0.0290728776593555,0.0311208664378973,0.0331127878531394,0.034746200765016,0.0369231087911177,0.0388035234429308,0.0407794044252204,0.0431480015004376,0.0578439049856434,0.0715878049546296,0.0844347935548841,0.0971610093721402,0.109693474066029,0.1255762317614717,0.1377558056884607,0.1496626870118538,0.1600734791524265,0.1699227964829509,0.1828439764419608,0.1952013673290568,0.20734571391293,0.2172444327834443,0.2271267351563015,0.2379149228282291,0.2474970455102905,0.2563664753260466,0.2648112458904886,0.2730216115414097,0.279815612833162,0.2867572334684437,0.2933564946114577,0.2983705867563782,0.3044639172755298,0.309874596565572,0.3151862464183381,0.3196614914736574,0.3242682974230076,0.3286632102478859,0.3275439588550502,0.3258055632057284,0.3251480124048492,0.3241674747094664,0.323093173061188,0.3203114223972781,0.3180703447621157,0.3170595665797201,0.3174259350855349,0.3181518269522264,0.3202419747537176,0.32131769916754,0.3226842425641779,0.3230324489064181,0.3236910616141162,0.3245717274748267,0.3251553061750308,0.3280108767824959,0.3314745535399167,0.333719860850094,0.3355196770938446,0.3400792376057394,0.3426449114341947,0.347535697835099,0.3529467143664093,0.3518915060670949,0.3575019040365575,0.3610942249240121,0.3662822624931356,0.371824480369515,0.0,1.7421590914319478,53.81401729080187,177.6229574023149,250.77787401107105,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95781,45297,429.5737150374291,6075,62.20440379615999,4802,49.56097764692371,1939,19.857800607636168,77.38153749659537,79.72286307024214,63.350937847410606,65.08287943925212,77.14105823535222,79.48448935203565,63.26057040094216,64.99580193424701,0.2404792612431521,238.37371820648912,0.0903674464684485,87.07750500511224,151.855,106.93212051150752,158543.97009845378,111642.30955148466,389.35553,254.8958624388601,405927.9919817082,265546.1951851971,378.10926,183.44149607318164,391337.8645033984,188875.9776645737,2762.24088,1263.5774243211763,2853005.5438970155,1288404.666633958,1125.85578,494.4336451159202,1161540.430774371,502321.2001902184,1897.47888,801.0936308829378,1945615.226401896,806651.0389959357,0.38292,100000,0,690250,7206.544095384262,0,0.0,0,0.0,33513,349.2759524331548,0,0.0,34601,357.79538739415955,1614234,0,57956,0,0,0,0,0,66,0.6890719453753875,0,0.0,0,0.0,0,0.0,0.06075,0.1586493262300219,0.3191769547325103,0.01939,0.3389857120427069,0.6610142879572931,24.480161957264524,4.376500276380779,0.3206997084548105,0.2394835485214494,0.217201166180758,0.222615576842982,11.177226710932878,5.781925703186357,20.679932231139198,12247.45767868144,54.21137836534326,13.65439816768347,17.31036457181204,11.534380696578795,11.712234929268948,0.5647646813827571,0.7869565217391304,0.7103896103896103,0.5647171620325983,0.1159962581852198,0.7142857142857143,0.9223057644110276,0.8727735368956743,0.7119341563786008,0.1087866108786611,0.5107709750566893,0.715046604527297,0.6547515257192676,0.52,0.1180722891566265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104194940144,0.0047843979970401,0.0070106732681303,0.009404547901242,0.0114789434085039,0.0133656361655995,0.015696986993925,0.0179630328948039,0.0198961760918882,0.022018949393251,0.0241325599983604,0.0262058488416255,0.0281005161529128,0.0300970973753848,0.032182864687558,0.0343559169671733,0.0361988140697277,0.0385620102002736,0.0405144293698448,0.0425308179243711,0.0572686764966763,0.0719216047187768,0.0850307687469205,0.0982788332212508,0.110506960031191,0.1262272386206313,0.1385847966850711,0.1499712943077675,0.1613306012678491,0.1723583510193581,0.1847569836912643,0.1968567812834629,0.2083826998119544,0.2193941116041179,0.2295888060194046,0.2391191222223452,0.2481181206856174,0.2570937134634409,0.2652059020335023,0.2730820287466813,0.2797765673247059,0.2859614665170221,0.2930200087560494,0.2989265861606287,0.3036625054646136,0.3082872519920687,0.3119491980949285,0.3163711749294126,0.321409157973753,0.3256221891032827,0.3242868489425575,0.3229023383768913,0.3224833727877353,0.3213397710188505,0.3203639553381603,0.3184281427959096,0.3164134747624844,0.316943380161771,0.3174754472264302,0.3189270011926164,0.3192117858211187,0.3201357242903079,0.3209243961100073,0.321558720293322,0.3238287250384024,0.3252083333333333,0.3261457059141467,0.3287169042769857,0.3322611097514072,0.3361028684470821,0.3407400689279884,0.3434669773846724,0.3471740911095709,0.3541460443158455,0.3536986558887113,0.3579357581483231,0.3593251253989968,0.3594941790445604,0.3592152528322741,0.3553687428353076,0.0,2.194713446469241,55.86462264097834,177.7356087483043,264.82213378748384,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95865,44928,425.2438324727482,6104,62.56715172377823,4783,49.39237469357951,1883,19.28753976946748,77.37299817448195,79.67358235015506,63.35320242165369,65.05658572506698,77.1383981578253,79.43990674416871,63.26723673306216,64.97315155444598,0.2346000166566426,233.67560598634896,0.0859656885915356,83.434170621004,151.29532,106.49503442513654,157821.22776821573,111088.5457937063,387.19337,253.68893039707623,403382.6213946696,264120.27349670685,375.01853,181.7689666413564,387573.41052521777,186785.31735247985,2722.72708,1237.2367794905315,2810666.249413237,1261499.5737776607,1132.10434,498.9089214056848,1165801.679445053,505541.75679211033,1833.982,760.676650452699,1880289.427841235,766195.674793711,0.37992,100000,0,687706,7173.692171282533,0,0.0,0,0.0,33341,347.25916653627496,0,0.0,34287,354.1542794554843,1618478,0,58125,0,0,0,0,0,64,0.6571741511500548,0,0.0,2,0.0208626714650811,0,0.0,0.06104,0.1606654032427879,0.3084862385321101,0.01883,0.3300970873786408,0.6699029126213593,24.64331441122293,4.3903791158854535,0.3194647710641856,0.2400167259042442,0.2253815596905707,0.2151369433409993,11.394951999888342,5.996954596282998,19.91980445133162,12207.479311469086,53.79534631638317,13.668078481592405,17.108189931339325,11.910718860479989,11.108359042971443,0.5638720468325319,0.7709059233449478,0.6884816753926701,0.5918367346938775,0.1185617103984451,0.7190553745928339,0.8719211822660099,0.8409703504043127,0.7233201581027668,0.1717171717171717,0.510267229254571,0.715633423180593,0.6395851339671564,0.5515151515151515,0.1058965102286401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00259266761191,0.0047229570170371,0.0071006157248207,0.0094125053307069,0.0113148852245694,0.0134568403908794,0.0155738790985904,0.0179101735909132,0.0202004720595898,0.0223259050074692,0.0244454689821218,0.0268090738403767,0.0290015929294486,0.0309000329380764,0.0329677126716424,0.0352038498079226,0.0369446915930393,0.038662411141738,0.0407069721074165,0.0426667498985611,0.057607890977718,0.0715039550265932,0.0847990278752579,0.0970356914094904,0.1090120258629767,0.1251201453362485,0.1376350921805467,0.149086811387749,0.1595871843582574,0.1703114787472275,0.1832131712041321,0.195510257019952,0.2069576368813441,0.2180677184121049,0.2271136833766119,0.2360948056263152,0.2447064860884892,0.2535212852128521,0.2624557582357745,0.2702071381951839,0.278380441319332,0.2853015148856525,0.2919768501532671,0.2976890731134618,0.3032668471465164,0.3082001946268215,0.3135836160384562,0.3184078969127243,0.3225539186495094,0.326162414707862,0.3255090497737556,0.3235508692719589,0.3223455101724308,0.3207241598704378,0.3201236273941663,0.3180537693673831,0.3163975941753719,0.3171827844114945,0.3183695058695058,0.3199735898213744,0.3203734540760005,0.3206228906388774,0.3218335495209004,0.321806255856499,0.3225535791341036,0.3238377689325945,0.3249885948905109,0.3277863411872031,0.3288835804117192,0.3314199754562368,0.3348563673377064,0.3386251785997777,0.3400239098974391,0.3438071995118975,0.3457256086053972,0.3490321057601511,0.3551644988523336,0.3542903952488224,0.3493437587266126,0.3462870334744132,0.0,1.9570993442922529,53.93193490193663,174.865451330602,272.68263199100863,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95800,44765,423.16283924843424,6068,62.05636743215032,4741,48.9874739039666,1929,19.822546972860128,77.39816222968327,79.72725656584109,63.35848721039546,65.07927745220857,77.15824019578046,79.4879315290302,63.26962017947564,64.9930987118629,0.2399220339028005,239.32503681088235,0.0888670309198218,86.17874034567308,152.21008,107.00520740184815,158883.1732776618,111696.45866581229,384.14558,252.11325709058065,400480.7724425887,262660.0149970202,372.30837,180.7872691548398,385771.8475991649,186511.78461662345,2718.8464,1246.029970706929,2810441.294363257,1273375.3216652186,1157.29918,507.0983090271672,1197616.9519832986,519155.3306620643,1893.8565,791.6030973661165,1947791.8162839247,800172.4732006876,0.37798,100000,0,691864,7221.9624217119,0,0.0,0,0.0,33112,345.1043841336117,0,0.0,33980,351.7954070981211,1616333,0,57976,0,0,0,0,0,64,0.6680584551148225,0,0.0,0,0.0,0,0.0,0.06068,0.1605375945817239,0.317897165458141,0.01929,0.3244052308177091,0.6755947691822909,24.63606542728208,4.362724465290197,0.3163889474794347,0.2370807846445897,0.2172537439358785,0.229276523940097,11.2067779665998,5.845940940900232,20.433730792938228,12141.43989034997,53.60728190765654,13.422333083108237,16.850409248546658,11.445447992455954,11.889091583545683,0.5522041763341067,0.7962633451957295,0.6846666666666666,0.558252427184466,0.1113155473781048,0.7194641449960599,0.9184652278177458,0.8442211055276382,0.7136563876651982,0.1409691629955947,0.4910714285714285,0.7241867043847242,0.6270417422867514,0.5143212951432129,0.1034883720930232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293026270482,0.0046315064050591,0.0067260479649393,0.0092005849378503,0.0115793219132821,0.0138620310623486,0.0159779895042543,0.0179059706974656,0.0203516586806158,0.0225291589932473,0.0243829974694956,0.0266185057105622,0.0290015929294486,0.03103128859613,0.0331350454137756,0.0352491608572166,0.0372834014379558,0.0392264620489423,0.0412578982374459,0.0432161117995605,0.0582649888353262,0.0718909817291904,0.0851313665052106,0.09814925749598,0.1100686281744483,0.125120246942292,0.1365478033983156,0.1477173566031712,0.1583641296221135,0.1683430556747019,0.1807920557476278,0.1934262754301906,0.2047629912106298,0.2148155431018473,0.2243592561656482,0.2354086679427743,0.2454896188755826,0.2548748397544025,0.2622766717713119,0.2700953951512236,0.2770936672563506,0.2842262774575934,0.2905856452987406,0.2956620730976633,0.3008279110420511,0.305409498947161,0.3101560156015601,0.3144789190700748,0.3187848664880467,0.3239967823185768,0.3231794319558487,0.322114326584507,0.3215296851890978,0.3206144340017613,0.3188672251464156,0.3171477027914865,0.3155457935655142,0.3152953897572004,0.3156286280133852,0.3157275320970042,0.3159203980099502,0.3171319621441131,0.3183796451288919,0.3195094760312151,0.3201330398162327,0.3201746407131162,0.3218846447886287,0.3231264856749656,0.3259393390674513,0.3287552634685766,0.3314127574630251,0.3366519174041298,0.3382774523245668,0.3411229135053111,0.3426908271523801,0.3450410763186093,0.3441499085923217,0.3434650455927052,0.340683572216097,0.338403041825095,0.0,1.8955078613840493,55.900034763287096,175.1253970862107,261.1374552527551,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95882,44817,424.07334014726433,6099,62.41004568114975,4816,49.68607246407042,1905,19.544857220333327,77.3584022892406,79.64160428022333,63.35300198276878,65.04244791704505,77.12683715643509,79.40974364474086,63.26702017193396,64.95823769551326,0.2315651328055139,231.8606354824766,0.0859818108348235,84.21022153179081,151.81716,106.78005264900416,158337.49817483992,111366.10901838107,384.20152,252.0355901209169,400171.7319204856,262329.4571670563,376.63801,183.2002431085893,389181.1914645085,188286.5466032604,2774.65288,1278.3579642199663,2864583.4671784067,1304024.7431425778,1168.6149,515.8124687326037,1206144.3858075552,525304.9881443889,1867.9451,782.1812963354679,1917577.6266661105,790335.5530593389,0.38077,100000,0,690078,7197.159007947268,0,0.0,0,0.0,33176,345.4558728437037,0,0.0,34369,354.8632694353476,1615453,0,58030,0,0,0,0,0,60,0.615339688366951,0,0.0,0,0.0,0,0.0,0.06099,0.1601754339890222,0.3123462862764387,0.01905,0.3346315625486836,0.6653684374513164,24.470452156749865,4.393570443850692,0.3220514950166113,0.2338039867109634,0.2176079734219269,0.2265365448504983,11.31958840994806,5.902107175702024,20.20724475117062,12194.614233166129,54.72455962625183,13.611929358841731,17.433710835257724,11.711500242811976,11.967419189340385,0.5664451827242525,0.8037300177619894,0.6989039329464861,0.5925572519083969,0.1081576535288725,0.728110599078341,0.927400468384075,0.8794871794871795,0.7154471544715447,0.1380753138075313,0.5065452475811042,0.7281831187410587,0.6382428940568475,0.5548628428927681,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022982919742024,0.0044887578401272,0.0065421793064275,0.0087827066982099,0.0110388290302907,0.0131387455602031,0.0151391662251925,0.0172879800091794,0.0193377780954228,0.021365992291886,0.0236264804938221,0.025712264586174,0.0277609457002886,0.0299757231617495,0.0321423786802972,0.0343609969645032,0.036577670656143,0.0385962730344298,0.0404922629556547,0.042385842254752,0.0567330045974375,0.0708360323463652,0.0848465807938003,0.097704649502289,0.1109835478502664,0.1268736333963599,0.1383443189284276,0.1492142143206516,0.1597480920104605,0.1704793962523048,0.1838690572336186,0.196036648025355,0.2071818399252027,0.2180534146688093,0.2270163285502226,0.2363161505942763,0.2463420618280769,0.2556356318091362,0.2639548996699146,0.2712703194986998,0.2784656329553344,0.2857995156931787,0.2918536764444654,0.2976590233138252,0.3034259732049505,0.3082882060517843,0.3121687154618247,0.3165579451635918,0.3213789882056804,0.3254707002327057,0.3234695116194381,0.3218346449096597,0.3213792130870117,0.320854067816225,0.320271355886816,0.3186070048457339,0.3167773744035257,0.3174884944115713,0.3170819296475537,0.3185922832565942,0.3196478741337329,0.3206290873886155,0.3211733892090099,0.3218850554165177,0.3223285563143214,0.3232717156748043,0.3262451671594268,0.3293745299573828,0.332271725055122,0.3330692127887167,0.334608553081022,0.336843219217948,0.3383453916325888,0.3408584811487368,0.3415074612679403,0.3436413760038355,0.338988326848249,0.3385650224215246,0.3433618548164504,0.3527841342486651,0.0,2.119545093110224,57.142670546872736,179.64120744484396,264.12982917815907,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95735,45117,427.5970125868282,6088,62.35963858567922,4738,48.94761581448791,1883,19.313730610539512,77.38965647392791,79.75647614257812,63.34469261111818,65.09398653922426,77.15229171639888,79.5198656303361,63.25604320858016,65.00769537502747,0.2373647575290363,236.61051224202367,0.0886494025380244,86.29116419679406,152.16058,107.01042962086126,158939.34297801222,111777.7506876913,385.84553,252.96064785566475,402475.54186034366,263670.7144524434,372.2166,180.90952087206847,385085.3919674101,186152.2530865419,2726.9368,1257.008391542106,2818352.326735259,1282938.519394271,1153.6088,514.452009235892,1190456.155011229,522824.8908297819,1844.97902,782.9597099737558,1893573.4057554707,789373.6520219402,0.38242,100000,0,691639,7224.515589909646,0,0.0,0,0.0,33286,347.10398495847915,0,0.0,33980,351.27173969812503,1615676,0,57988,0,0,0,0,0,74,0.772967044445605,0,0.0,0,0.0,0,0.0,0.06088,0.159196694733539,0.3092969776609724,0.01883,0.3240188383045526,0.6759811616954474,24.612188552906478,4.448597164883642,0.3237653018151118,0.2344871253693541,0.2186576614605318,0.2230899113550021,11.48808921924364,6.014412182643576,20.13500100131592,12255.306107661778,53.4302267311554,13.124049286746226,17.272211022753364,11.444236939647574,11.589729482008243,0.5574081891093289,0.7857785778577858,0.6910039113428944,0.5617760617760618,0.119205298013245,0.7387173396674585,0.9164556962025316,0.8797953964194374,0.7379032258064516,0.1921397379912663,0.4915107913669064,0.7136871508379888,0.626421697287839,0.5063451776649747,0.0990338164251207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802771250303,0.0048356193546424,0.0070226001887577,0.0094276367921653,0.0116471868737729,0.0139607347969532,0.0162518734515349,0.0183440348710201,0.0204738735791969,0.0223148024935256,0.0242009881301379,0.0264046731754391,0.0285479311231046,0.0306341001297444,0.0326549977824306,0.0349314289848182,0.037121408231944,0.0389662935336286,0.040782389989399,0.042863989664298,0.0574023804552098,0.0713396062505887,0.0849202102546347,0.0976276892325495,0.1097737222427343,0.1254164507292515,0.1375388565305494,0.1486873330566463,0.1592943035946944,0.1696516665951696,0.1826933430965046,0.1956401795856547,0.2069306715379262,0.2174483580653274,0.2272492215608393,0.2373733458833951,0.2466179668767077,0.2554451662208636,0.2638233693186972,0.2720229785091433,0.2800476460316175,0.2862737304778827,0.2925981533805431,0.2989654924686893,0.3039973779725415,0.3088284204432071,0.3126360565494808,0.3172838406838738,0.322362716295443,0.326906338195342,0.3268400306727833,0.3256603825474746,0.3251199639756272,0.3241522671170586,0.323287874295879,0.3217052486820995,0.319845279444269,0.3209438466821467,0.3212902568283734,0.3217317185779735,0.3230585957858685,0.3237352097173631,0.3241386489018424,0.3247916435159462,0.3261087746128847,0.3267570580457833,0.3271748370643241,0.3292266215241857,0.3329591693559702,0.3349628393148126,0.3385114451500891,0.3405754550792719,0.3431329253674847,0.3460348600316909,0.3468422516924789,0.3517605633802816,0.3539809638918265,0.349402390438247,0.3469553450608931,0.3560864618885097,0.0,2.1029637432348465,55.23464384903687,174.35081849629026,261.67420039049034,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95764,44684,423.3428010525876,6117,62.539158765298026,4731,48.83881207969592,1904,19.527170961948123,77.34687979821054,79.70662476588124,63.33382307926016,65.08143771801036,77.11390107591241,79.4746582297827,63.24727812017797,64.99781830490737,0.2329787222981281,231.96653609853968,0.0865449590821896,83.61941310299414,152.00856,106.91776140284696,158732.4673154839,111647.13399904656,385.2626,252.39778326346325,401718.9967002214,262977.07203486,365.63276,177.45292174855012,378324.9342132743,182633.4429071278,2727.26352,1249.9945408625117,2816319.619063531,1273837.5938402826,1120.76133,492.644263900464,1156808.8738983334,500962.7161896988,1862.4245,774.5064648007275,1911272.5241217995,779839.8225215013,0.38011,100000,0,690948,7215.112150703814,0,0.0,0,0.0,33266,346.7900254793033,0,0.0,33477,346.10083121005806,1619555,0,58098,0,0,0,0,0,61,0.6369825821811954,0,0.0,1,0.0104423374128064,0,0.0,0.06117,0.1609271000499855,0.3112636913519699,0.01904,0.3315175097276264,0.6684824902723735,24.660748328784518,4.360689133920653,0.3236102303952652,0.2263792010145846,0.2282815472415979,0.2217290213485521,11.406594582932872,5.938712657342177,20.06815283213145,12196.603205660282,53.607727873312,12.892004728895108,17.38270201336908,12.057905867668907,11.275115263378892,0.5510462904248573,0.7740429505135388,0.6988896146309601,0.5481481481481482,0.1105815061963775,0.72890625,0.8875,0.8738532110091743,0.6895161290322581,0.1326530612244898,0.4850767893364242,0.706408345752608,0.6292237442922375,0.5060096153846154,0.1055099648300117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025029386729358,0.0049284062791546,0.007228426395939,0.009421018933504,0.0117197037519329,0.0136046109040549,0.0156183097155673,0.0178644344630461,0.0201897323710412,0.0220445190752155,0.0240118931665555,0.0260393670873078,0.0283319621554915,0.0303685847909842,0.0325097529258777,0.0344756292965317,0.0363478206840846,0.0383318636858758,0.0404781704781704,0.0423096948870144,0.0573972402563513,0.0711117619984099,0.084245512497903,0.097041357927374,0.1093511229146247,0.1243818420051566,0.1360543496693234,0.1467179825214229,0.1579340359260997,0.1679019750653356,0.1814299697742209,0.1936198493575542,0.2053145607230931,0.2155727858468931,0.2249502905667424,0.2346452162559886,0.2443440932151419,0.2534066378845116,0.2618628775067812,0.2691761363636363,0.2760173140132401,0.2829292267365662,0.2897761573882266,0.2960365415048194,0.3020226301476301,0.3075739863409832,0.3123350387150845,0.3163047347810608,0.3218060676628501,0.3252108592514496,0.3254356712564544,0.3244596006820306,0.3246504824326985,0.3236706615324709,0.3228107114261143,0.3214525993883792,0.3198627646286898,0.3208995620294277,0.321664476266876,0.3228533214444939,0.3232932102809862,0.3245315835243892,0.3260081701057924,0.3270814682184422,0.3282284668544872,0.3304652561654941,0.33229413951892,0.3353270673122567,0.3388348145013401,0.3412581275679126,0.3428702220187686,0.346501969971249,0.350322091701402,0.3525519129839507,0.3537052611905429,0.3582142435337191,0.3589430273407668,0.3604319478402608,0.3643475831237776,0.3696850393700787,0.0,2.1928257213730538,56.19698607136986,173.55848966047574,260.6039811703456,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95750,44810,424.2715404699739,6094,62.40208877284595,4783,49.33681462140992,1908,19.54046997389034,77.36211040614715,79.7238351749605,63.32787542470121,65.07580405328008,77.12594469451756,79.48930437542603,63.24021846194193,64.99088263618579,0.2361657116295958,234.53079953446831,0.0876569627592829,84.9214170942929,151.53644,106.6427719391085,158262.6005221932,111376.26312178432,383.65825,251.73722994700935,400064.2506527415,262287.7284041873,375.41111,182.6733240485689,388078.1096605744,187680.0771837085,2749.2834,1266.98903769943,2838667.112271541,1290716.1207686493,1177.61489,521.1970311049321,1216904.0731070496,531443.71491432,1870.65658,781.2038405656417,1918467.592689295,787153.241688964,0.37972,100000,0,688802,7193.754569190601,0,0.0,0,0.0,33122,345.2845953002611,0,0.0,34432,355.5718015665796,1617186,0,57989,0,0,0,0,0,59,0.6161879895561357,0,0.0,1,0.010443864229765,0,0.0,0.06094,0.160486674391657,0.3130948473908763,0.01908,0.3355314806092008,0.6644685193907992,24.42399702329924,4.403895970428801,0.3165377378214509,0.227263223918043,0.2331172904035124,0.2230817478569935,11.417483256930051,5.973111187641324,20.2538047722782,12170.982076342932,54.151140478146026,12.93546506512177,17.173308802621673,12.350826319743762,11.691540290658816,0.5651264896508468,0.7773689052437902,0.7179656538969617,0.5695067264573991,0.1274601686972821,0.7320872274143302,0.9306930693069309,0.8709677419354839,0.7049808429118773,0.1342592592592592,0.503858245212918,0.6866764275256223,0.6624662466246625,0.5281030444964872,0.1257344300822561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023200915878949,0.0047254953657695,0.0070043650390823,0.0092666917300872,0.0117898377498601,0.0139426406485517,0.0162339648807945,0.0182042799967328,0.020296315988589,0.0224358974358974,0.0243559767003035,0.0266244838424718,0.0288680157611547,0.030966292597974,0.0327997440422743,0.034789710930069,0.0369779747543258,0.038720521253748,0.0408095381640905,0.0429235063744687,0.0578386446905564,0.0720084531207499,0.0853661094448056,0.0977377183664454,0.1099192034259435,0.1244725069010375,0.1372861037734848,0.1487766965483465,0.15900033122843,0.1694815291405286,0.1817055833189729,0.1934440067529544,0.2046428649130822,0.2145810544738569,0.2246409508611676,0.2351507362309848,0.2451648204395211,0.2529111958686333,0.2615428247305729,0.2696456792102792,0.2766216028519839,0.2828131580178747,0.2896804733727811,0.2949386668585201,0.3010652123744398,0.306310637720823,0.3109458342724063,0.3166422707312416,0.3204341181650996,0.3250280435499835,0.3232726096798534,0.3219242207291552,0.3213335023450374,0.3204214664604622,0.3198377559207203,0.3183871609929404,0.317024510735322,0.3175889619871048,0.3176679228552427,0.3189159351128047,0.3199902869097429,0.321175497992284,0.3225153399841382,0.3234855067620257,0.3246189974120579,0.3254467068356534,0.326536399988656,0.3305715357678839,0.3362510897994769,0.3387866125280876,0.3410148660250328,0.3444976076555024,0.3460456392622694,0.3462724742345595,0.3484848484848485,0.355644591091209,0.3542805100182149,0.3549870077953228,0.3499593385741393,0.3530549110595514,0.0,2.393729293186912,56.14790247054012,177.1466533987755,262.57387832846507,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95759,44659,422.75921845466223,5961,60.996877578086654,4663,48.08947461857371,1940,19.83103415866916,77.32840490063373,79.69047108157481,63.31625382636724,65.0653482411725,77.08581361773632,79.44938852408471,63.2252646663605,64.97781175695668,0.2425912828974077,241.08255749010252,0.0909891600067354,87.53648421581772,153.1046,107.7014805325182,159885.33714846647,112471.39227907373,386.60222,253.75732798103985,403121.58648273273,264393.2246379346,368.26444,179.01046315268346,381123.70638791134,184242.81065391365,2696.50616,1248.3462621978529,2783098.653912426,1270802.2663121514,1136.66211,507.63968633656265,1170840.3805386438,513959.6448757425,1904.00906,803.292682596559,1948638.081015884,805524.0776191298,0.37853,100000,0,695930,7267.515324930294,0,0.0,0,0.0,33425,348.4267797282762,0,0.0,33671,348.165707661943,1607349,0,57731,0,0,0,0,0,68,0.7101160204262784,0,0.0,0,0.0,0,0.0,0.05961,0.1574776107574036,0.3254487502096964,0.0194,0.3376519513755598,0.6623480486244402,24.38888266876324,4.364519216354782,0.3085996139824147,0.2363285438558867,0.218957752519837,0.2361140896418614,11.042733481706234,5.767466164102626,20.701567848794017,12107.66033240102,53.06041972857298,13.325601022347303,16.244299975742575,11.389322090077773,12.101196640405323,0.55093287583101,0.8021778584392014,0.6879777623349548,0.5533790401567091,0.1180744777475022,0.7039106145251397,0.9204819277108434,0.8426966292134831,0.6867469879518072,0.1244635193133047,0.4947214076246334,0.7307132459970888,0.6371191135734072,0.5103626943005182,0.1163594470046082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090937648835,0.0045132761313616,0.0069345733663647,0.0092583182585011,0.0115257064963072,0.0138832301173402,0.0163770598792625,0.0184281455466165,0.0207630497454456,0.0231539296169672,0.0253908051868176,0.0274968426888996,0.0293198132417367,0.0312506437591413,0.0333319574011392,0.0352893749418562,0.0370274522794087,0.0387567152724481,0.0408400793939456,0.0428270877163746,0.0574285535352691,0.071477878882962,0.0841171474409386,0.0971197308945653,0.1092202318229715,0.1251096665081126,0.1369739521466146,0.1475008514986376,0.1579200358909172,0.1684879942518257,0.181450961383099,0.1932132963988919,0.2049136627242756,0.2149302707136997,0.2249218371570742,0.2353208366569175,0.2443739953563136,0.2525694858776778,0.2604583030523256,0.2677548026225299,0.2757171632979093,0.2818733839547916,0.2883298988607025,0.2946294629462946,0.3001155085415526,0.3049376017362995,0.3097247476330804,0.314621060546203,0.318609900373599,0.3230612757076624,0.3224605924947075,0.3208279965293558,0.3189352367786257,0.3187856884712685,0.3178511388488031,0.316200380391435,0.3140235204615336,0.3145479668377418,0.3151915410542885,0.3165650315635115,0.3172148814544091,0.3173768677365799,0.3172598385680231,0.3179500939093104,0.3184036542853708,0.3192154411190123,0.3199395856487418,0.323098175881448,0.3259362968148407,0.3273339940535183,0.3307730763986729,0.3329463296216159,0.3345631917953849,0.3340888485947416,0.3345790899747734,0.3373338039769384,0.3459377372817008,0.3446453972769762,0.3503730312240951,0.349317738791423,0.0,2.318771594397495,54.64622992249988,178.02409799575446,252.80091088351764,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95735,45073,426.1555335039432,6073,62.4118660886823,4771,49.30276283490886,1895,19.47041311954876,77.31464774318667,79.68017434825174,63.30648041847581,65.05594547029146,77.07738431449184,79.44365816350157,63.21804938531946,64.97028965890875,0.2372634286948312,236.51618475017244,0.0884310331563469,85.65581138270772,150.34272,105.773659726408,157040.49720582858,110485.88262015772,385.7994,253.6230621168379,402491.4190212566,264426.6217700331,380.21776,184.71109057047244,393796.835013318,190420.14908088744,2725.5132,1256.0902251410312,2818106.2307411083,1283220.6166049822,1141.74612,508.2802403520313,1177793.8893821486,516119.87146496674,1860.39542,784.9538673871094,1913140.1263905573,792546.6348410342,0.38103,100000,0,683376,7138.204418446754,0,0.0,0,0.0,33213,346.3832454170366,0,0.0,34680,358.9282916383768,1617466,0,58076,0,0,0,0,0,74,0.7625215438449888,0,0.0,0,0.0,0,0.0,0.06073,0.1593837755557305,0.3120368845710522,0.01895,0.3270558694287508,0.6729441305712492,24.62530565730055,4.362555132127506,0.321106686229302,0.2301404317753091,0.2230140431775309,0.2257388388178579,11.15444533058886,5.7637930868717016,20.334938454480024,12263.26143449046,54.17304659652672,13.050550837583891,17.1437839053084,11.973636177319817,12.005075676314616,0.5615175015719975,0.7905282331511839,0.6886422976501305,0.5874060150375939,0.1216341689879294,0.7255054432348367,0.9081885856079404,0.8808933002481389,0.7231404958677686,0.1554621848739495,0.5010043041606886,0.7223021582733813,0.6200177147918512,0.5474452554744526,0.1120381406436233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023502000709112,0.0048869016840547,0.0073996630057451,0.0098160756020729,0.0120046797904267,0.0140185011614165,0.0163536385060344,0.0184905352147189,0.0207204628626336,0.0229413209942262,0.0251197030748567,0.0271685559388861,0.0292747153275661,0.0311798042246264,0.0331857265248402,0.0352527654295461,0.0372893992896271,0.0393076539930267,0.0414985650709146,0.0436512897445514,0.0588345845035864,0.07265914466936,0.0854175409148132,0.0980765388215251,0.1109646532815927,0.1258264134976463,0.1370139242655799,0.1481773273145388,0.1588426430663332,0.1693742220696167,0.1826367322291235,0.1952826202368441,0.2074559062237861,0.2182517505506427,0.2281587651598677,0.2381005251645996,0.2478942246384106,0.2571960297766749,0.2658688629021249,0.2730447168012497,0.2797764015494166,0.2864392873886545,0.292754069981147,0.2979254706108336,0.3031390243605804,0.3082968354820801,0.3127480313974887,0.3170346802418072,0.3218963553530751,0.3259978112102952,0.325361363085785,0.3241228492442268,0.3231892621982103,0.3215600236717137,0.3205503469384723,0.3185884082832986,0.3170480639797292,0.3176806927032844,0.3184259132576276,0.320147867704836,0.3213140574900152,0.3220131256424448,0.3225981847839725,0.3238773323810374,0.3249627886877611,0.3264143581740148,0.3292568203198495,0.3316174393421011,0.3354908683786999,0.33863942345767,0.3401546157344247,0.3449098621420997,0.3503442177730057,0.3504240849698173,0.3504716981132075,0.3553444180522565,0.3598403438747313,0.3615621788283659,0.3585690515806988,0.3521840873634945,0.0,2.069919012258887,56.57298563776089,177.4970062217814,262.0461126582536,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95819,44794,423.9660192654901,5844,59.883739133157306,4606,47.53754474582285,1814,18.57669147037644,77.3504688262772,79.68328255402474,63.33176974345843,65.06029959175208,77.12585688425959,79.46047901871503,63.24922464471466,64.9808782086649,0.2246119420176029,222.8035353097084,0.0825450987437719,79.42138308717972,152.31832,107.188883167294,158964.63123180164,111866.00065466556,386.77256,253.91060099436507,403128.4400797337,264469.1355517851,366.87421,178.56238093397494,379751.78200565645,183870.075116852,2640.96596,1206.2473883450175,2727005.54169841,1229942.4047097825,1083.26792,474.5011577381923,1117066.9595800417,481759.6037641273,1775.97278,739.5607679463492,1820746.4072887425,742956.0063293756,0.3792,100000,0,692356,7225.665055990983,0,0.0,0,0.0,33404,348.0624928250138,0,0.0,33472,346.2570053955896,1612303,0,57895,0,0,0,0,0,73,0.7514167336332043,0,0.0,0,0.0,0,0.0,0.05844,0.1541139240506329,0.3104038329911019,0.01814,0.3422643358928279,0.657735664107172,24.379385693214505,4.396378035360047,0.3221884498480243,0.2275293095961789,0.228831958315241,0.2214502822405558,11.30463652235454,5.907940950749468,19.248569528636565,12161.607279277929,52.04555795273112,12.576577862720116,16.800572837071346,11.458951977026857,11.2094552759128,0.5555796786799826,0.7709923664122137,0.6967654986522911,0.5806451612903226,0.1029411764705882,0.7266553480475382,0.8858695652173914,0.8471502590673575,0.775330396475771,0.1370558375634517,0.4967911318553092,0.7088235294117647,0.6438979963570127,0.5272067714631197,0.094775212636695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0045425509262545,0.0067492134375317,0.0089308393363339,0.0110767540736822,0.0131490497239819,0.0153995206771709,0.0178498488685564,0.0199071612612981,0.02205024261409,0.0240251017708643,0.0261436566206294,0.0284242243498112,0.0304222451081359,0.0322800214512602,0.0345305009092411,0.0364677142206488,0.0386143234973811,0.0405499495983455,0.0427744581624367,0.057343445196691,0.0710551628957383,0.0842773754755142,0.0966104900395057,0.109507353870791,0.1254121575921542,0.1374041754583143,0.1487895162319704,0.1593330344371143,0.1687774563377263,0.1811745464718414,0.1928698058546288,0.2045079296111231,0.2143434829176594,0.2239088349172826,0.2344496017547163,0.2451432205943068,0.2541007582746439,0.2619707117720513,0.2698530843133438,0.2772854531571762,0.2841476389229888,0.2904591800525182,0.2964245073965383,0.3019557823129252,0.3066916560831556,0.3115107192947305,0.3162633723892002,0.3209163114318661,0.3243350326210412,0.323079620239508,0.3225188472511267,0.3212527333004161,0.3203455061056774,0.3202735856070181,0.3186735725888013,0.3167651672397129,0.3180347257584966,0.3188494910159186,0.3192442992089427,0.3195075863875325,0.3205990883438246,0.3205093357308633,0.3220520605438228,0.3231541769779678,0.3244094898304643,0.3259633966124815,0.3291841725716435,0.333856783919598,0.3366712843855136,0.3399764471419512,0.3419276600231994,0.3464906793444264,0.3502564876282438,0.3556864945753835,0.3601033227662322,0.3614146933819065,0.3636545782408335,0.3650107991360691,0.3647058823529411,0.0,2.1021085205842565,51.50218559618542,179.63277965090555,251.09071209820476,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95714,44442,420.53409114654073,6048,61.903169860208536,4784,49.36581900244479,1852,18.95229537998621,77.30949638025908,79.66823009299942,63.31695901961641,65.05922922062152,77.07510962351914,79.43461342323148,63.23105005876843,64.97562923816824,0.2343867567399371,233.61666976794027,0.0859089608479806,83.59998245327915,150.87468,106.20127377265692,157630.50337463693,110956.65605100282,385.72124,252.43283277236503,402386.3489144744,263129.3883573615,370.92578,180.19903237694848,382918.0684121445,184861.30767673405,2751.23652,1266.2533237067482,2840494.222370813,1289242.5929633237,1145.46271,506.2813660669632,1181543.818041248,513838.8171471213,1826.1061,763.7394595333296,1871150.364627954,769383.4926552249,0.37806,100000,0,685794,7165.022880665316,0,0.0,0,0.0,33311,347.3890966838707,0,0.0,33901,349.5726852915979,1619286,0,58119,0,0,0,0,0,68,0.7104498819399461,0,0.0,0,0.0,0,0.0,0.06048,0.1599746072052055,0.3062169312169312,0.01852,0.3362873872448172,0.6637126127551828,24.77673229480511,4.423830098337494,0.3269230769230769,0.2238712374581939,0.2219899665551839,0.2272157190635451,11.433730415288483,5.897918095977726,19.812387747512386,12177.876161052189,54.508391164377095,12.803871598224552,17.84874706625654,11.837387753185304,12.018384746710687,0.5507943143812709,0.7675070028011205,0.6732736572890026,0.5828625235404896,0.1297148114075437,0.7227958697378872,0.9074550128534704,0.8746928746928747,0.7316017316017316,0.1379310344827586,0.4893617021276595,0.6876832844574781,0.6024200518582541,0.5415162454873647,0.127485380116959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020963935953656,0.0045413997242721,0.0069292265238211,0.0092934915088973,0.0117521476134804,0.0138630187181287,0.0160016307394384,0.0178427429644676,0.0202056334573402,0.0222492861602071,0.0245594973298209,0.0267367599646795,0.0290179948586118,0.0310495041347847,0.0331256961346479,0.0352733321623771,0.0372789087484346,0.0392114160081305,0.0410002182521123,0.0428428574404699,0.0574635827285542,0.0718509602804961,0.0849381162156492,0.0975750820223773,0.1097495386237806,0.1255843469063987,0.1379687201578847,0.1492394324217877,0.159776965968083,0.1699029646705623,0.1824713727095474,0.1945352588390672,0.2066594124047878,0.217536411086916,0.2273412816363376,0.2372808087077966,0.2457696216952787,0.2544010812637269,0.2628924530873733,0.2705849990830735,0.278444673388357,0.2854736053912392,0.291525584258755,0.2968555118487959,0.3019477757931445,0.3067219118789538,0.3116280233736658,0.3159803983962324,0.320257626415779,0.3245711415959612,0.3226480742259143,0.3217882482606599,0.3215620987880754,0.3199485050554728,0.3186790290655276,0.3159994476070645,0.3143496761082179,0.3151462315360068,0.3168225259480012,0.316774748307119,0.3165899050662656,0.3165786233467053,0.3178519593613933,0.318971320856335,0.3198375673781151,0.32072020278569,0.3217570704031634,0.3248534140344241,0.3274255371523016,0.3317080905379157,0.3356847039548536,0.3378471669056343,0.3382501260716086,0.342344406261932,0.3417446366127965,0.3443519619500594,0.349684760879594,0.351440329218107,0.3555986696230598,0.3596116504854369,0.0,2.3431826484789564,55.01598089157781,188.8290567470602,256.50804431776515,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95748,44986,427.1003049672056,6055,62.2258428374483,4773,49.41095375360321,1883,19.384216902702928,77.40440741590693,79.76267044030365,63.3594678928421,65.09981114738459,77.17404173242817,79.53112280811145,63.27469127351891,65.0167417347772,0.2303656834787659,231.54763219220345,0.0847766193231862,83.06941260738654,152.55306,107.31406851629704,159327.6726406818,112079.69724307246,389.30237,254.7224144686245,406181.0272799432,265624.61301397893,373.49703,180.7165350185423,387598.0908217404,186767.10911169904,2767.80308,1247.5115283445073,2866439.110999708,1278634.089844704,1174.07474,509.3516996511135,1215358.252913899,521116.0333908944,1844.26012,760.9027010701004,1899729.9160295776,770702.6387085244,0.3803,100000,0,693423,7242.166938212808,0,0.0,0,0.0,33572,350.17963821698623,0,0.0,34184,354.5139324058988,1614292,0,57858,0,0,0,0,0,65,0.6788653548899194,0,0.0,2,0.0208881647658436,0,0.0,0.06055,0.1592164080988693,0.3109826589595376,0.01883,0.3301472892510185,0.6698527107489816,24.533176997217367,4.427241031543848,0.3192960402262728,0.2262727844123193,0.2292059501361827,0.2252252252252252,11.083819424630724,5.697659106302434,19.73906499165078,12181.901141840815,53.444966669093326,12.926666584782948,16.930057116380155,12.041172608158622,11.5470703597716,0.5707102451288498,0.8,0.7007874015748031,0.5978062157221207,0.1283720930232558,0.736053288925895,0.9250645994832042,0.8661202185792349,0.7304347826086957,0.1880733944954128,0.5151175811870101,0.7301587301587301,0.6485319516407599,0.5625,0.1131855309218203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043982771725361,0.0065838862174609,0.0086426649063118,0.0108690126381503,0.0130496742671009,0.0153070063694267,0.0175912982255645,0.0197502860879516,0.0218060885136863,0.024054278422892,0.026171830899182,0.0283434939498925,0.0302505948150665,0.0323469324583668,0.0342054393781205,0.0362453916573464,0.0381639004149377,0.0400216164534466,0.0419118642655529,0.0568588759774903,0.0711811550978976,0.0847135829146255,0.0975871313672922,0.1096729311816849,0.1251929705838814,0.1365724287911738,0.1478011859011891,0.1593599111225056,0.1687593150552738,0.1811632439883266,0.1934192445439889,0.2050835843946793,0.215078453884424,0.2249518675394686,0.2354120069978076,0.2454703677258122,0.2542978895647578,0.2624696622587157,0.2703497688046514,0.2781109531898175,0.2855525203707595,0.2918412882052251,0.2979191055259574,0.3035638600612746,0.3086175545508158,0.313036963036963,0.317787845331912,0.3223748773307164,0.3264366606600287,0.324861107383451,0.3238078252757504,0.322136246822733,0.321230538792793,0.3203558687252972,0.3185043876383059,0.3167224397019825,0.3174361742145462,0.3176502629921527,0.319297683850998,0.3200276578647381,0.3201539676273194,0.3215741185813706,0.3222628388017118,0.3234025214515124,0.32559228148649,0.3271515667092017,0.3307875297358207,0.335186933864932,0.3365513966922529,0.3391375323085294,0.3389857453235123,0.3398368883312421,0.3404852160727824,0.3482768282432054,0.3571596520103456,0.3613149847094801,0.3666464768826973,0.3721575152523572,0.3722858270825108,0.0,1.7432977139514294,52.91176301030399,175.3890885375107,272.5108976775333,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95754,44718,423.00060571882113,6030,61.90864089228648,4703,48.59327025502851,1830,18.78772688347223,77.33232137485312,79.69786846496581,63.31916690730778,65.07088657392157,77.10883952430838,79.47366656171064,63.23716075344819,64.99047548308324,0.2234818505447435,224.20190325516387,0.082006153859595,80.4110908383251,151.87106,106.82767068262628,158605.2175366042,111564.49850091516,386.75973,253.63990929975049,403374.6579777346,264353.217345678,371.73559,180.3799439058598,384610.9718654051,185607.3709626202,2693.7288,1232.8375152648316,2786715.3330409173,1261117.0048925702,1107.32515,484.0200247853857,1147383.8586377592,496439.6419840274,1797.66642,746.6328469536229,1848408.108277461,756396.4034909431,0.37823,100000,0,690323,7209.328069845646,0,0.0,0,0.0,33344,347.661716481818,0,0.0,33952,350.98272657016935,1615655,0,57966,0,0,0,0,0,72,0.7414833845061303,0,0.0,0,0.0,0,0.0,0.0603,0.1594268037966316,0.3034825870646766,0.0183,0.3297570211423162,0.6702429788576838,24.77619215669704,4.235571605733559,0.3231979587497342,0.242185838826281,0.2107165638953859,0.2238996385285987,10.90959005442796,5.619462994700528,19.38968378673182,12119.199066864809,53.25119984317465,13.63674490160026,17.168372885410616,11.01540376582192,11.43067829034184,0.5496491601105677,0.7664618086040387,0.6763157894736842,0.562058526740666,0.1206077872744539,0.7331189710610932,0.9354066985645934,0.8401015228426396,0.7035398230088495,0.1504854368932038,0.483665799363978,0.6685159500693482,0.6190053285968028,0.5202614379084968,0.1133412042502951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024220681827394,0.0045136881396504,0.0068028592315815,0.0090352874217416,0.0112212094083177,0.0136204806389502,0.015899078077833,0.0179481158562108,0.0202136905066203,0.02253276003276,0.0245830215178324,0.026897727039402,0.0289357326478149,0.0308354618109911,0.0330461697188547,0.0349959691588978,0.0371409637805711,0.0391737817846064,0.0410903384704916,0.0432106480034993,0.0574020334453746,0.0714382866529258,0.0847413187343338,0.096783690292191,0.1090914841797842,0.1238908102505526,0.1360352235955652,0.1474350787569178,0.1582875937039489,0.1683177870697973,0.1811641807118625,0.1936681057335454,0.2045662199791159,0.2141583822741341,0.2238311638296233,0.2341341895482728,0.2438137313965682,0.2518084352394559,0.2599110445458052,0.2678949718879181,0.2756143273635985,0.2823925705864464,0.2887766328715588,0.2943177870158498,0.3000971345313258,0.3045004866389877,0.3081936452339254,0.3131840890888982,0.317987082745499,0.3225789438987408,0.3219249034723063,0.3219211043737711,0.3216537205898908,0.3213811612605333,0.3202468915991572,0.3182645399073238,0.3164560970203603,0.3164185466946485,0.3167396900625671,0.3177310024973243,0.3182176212445144,0.318768305232328,0.3196107627456326,0.3212159197743654,0.3220943114493521,0.3236153124022113,0.3256303716773863,0.3288698446705945,0.3324203799290705,0.3341165226394807,0.3366278010566588,0.3412084688816596,0.3437737281700835,0.3429966432712847,0.3472338837578132,0.3499648629655657,0.3516649088443574,0.3541500399042298,0.3552060737527115,0.3616698292220114,0.0,1.983117532720449,54.81352596986152,174.2678622174093,261.6843701364282,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95712,45262,429.1729354730859,6019,61.60147107990638,4692,48.28025743898362,1865,18.99448345035105,77.41699606751023,79.77038636135067,63.36600846061516,65.10081549482373,77.18807125150042,79.54713058559899,63.28033708354927,65.02068822373823,0.2289248160098083,223.25577575168157,0.0856713770658927,80.12727108550166,152.07632,107.00709501553816,158889.5018388499,111801.12735658868,386.97801,253.84312660953296,403577.2316950853,264477.7630908693,377.11372,184.10419245410017,389106.2771648278,188607.3562512808,2704.3972,1236.3190066420195,2783524.866265463,1249963.7778506435,1110.89977,487.63122797582895,1138451.5734704111,487411.7933213639,1830.37504,763.0094661874175,1866024.1766967569,757272.0516767716,0.38268,100000,0,691256,7222.250083584086,0,0.0,0,0.0,33284,346.9888833166165,0,0.0,34477,355.38908391842193,1614589,0,57914,0,0,0,0,0,68,0.710464727515881,0,0.0,1,0.0104480106987629,0,0.0,0.06019,0.1572854604369185,0.3098521349061305,0.01865,0.3349769365357086,0.6650230634642914,24.41690899666933,4.43021247732253,0.3213981244671782,0.2265558397271952,0.2286871270247229,0.2233589087809036,11.286313940813711,5.671209881165253,19.70046976328925,12231.434935350311,52.91752794955863,12.70956501999229,17.103283389899058,11.76309646366915,11.341583075998123,0.5598891730605285,0.7873941674506115,0.7175066312997348,0.5629077353215284,0.099236641221374,0.7245901639344262,0.9047619047619048,0.8592964824120602,0.7465437788018433,0.0922330097087378,0.5020161290322581,0.7168674698795181,0.6666666666666666,0.5163551401869159,0.1009501187648456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0046196395465459,0.0068362544628367,0.0091186953563703,0.0113164958516349,0.0134774730755919,0.015696986993925,0.0177281077770973,0.0199072086986735,0.0222820137702435,0.024162806902488,0.0262525913914489,0.0283825736548859,0.0302877386665568,0.0322284464527044,0.0342771520099204,0.0364127677637777,0.0385429199684686,0.040588296434882,0.0428092182030338,0.0574543404028695,0.0716580337989849,0.0856965996243954,0.0989913650753583,0.1109669662068092,0.1258302661082201,0.1377503394433129,0.149555591037309,0.1603683878756797,0.1705580163232912,0.1832416191942796,0.1955011685276551,0.2065959389538675,0.2167373066503539,0.2260152061176057,0.2376721801183824,0.2474170502546727,0.2556498286228016,0.2641053836823072,0.2718369961903236,0.2787891397066472,0.2850950979017711,0.2902142950013593,0.2966154435348748,0.3023980786259264,0.3078542410439492,0.3129936019194241,0.3182395690399959,0.3225798112963681,0.3267986772591333,0.3254301075268817,0.3244650166195094,0.3236490003798697,0.3228831067512316,0.3220119995247713,0.3198752064599009,0.3185392194012884,0.318351324828263,0.3178524037970807,0.3188114943345291,0.3194705937179606,0.3212937475422729,0.3224224976008679,0.3245555555555555,0.3249079343823234,0.3262955854126679,0.3263814111646358,0.3307838791246527,0.334541652143604,0.3366161118770928,0.3412984670874662,0.346569066301543,0.344904954814584,0.3499432033320712,0.3532472359007712,0.3548387096774194,0.3551444043321299,0.3574121849573328,0.3611859838274933,0.3640104751215862,0.0,2.912898109071949,52.501013513029314,177.0835132488046,258.8140708684504,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95694,44885,425.6693209605618,6078,62.35500658348486,4739,48.93723744435388,1804,18.454657554287625,77.3508434030137,79.74026551841254,63.31502979323547,65.0824149972537,77.11840476911159,79.51022899602061,63.22892696954881,64.99994585738911,0.232438633902106,230.0365223919272,0.0861028236866587,82.46913986458537,152.3445,107.09701992788312,159199.6363408364,111916.1284175425,386.3083,253.19869881216115,403111.6579931866,264012.44468008564,371.48137,179.75343259267257,384301.6385562313,184904.6560723047,2723.52588,1243.2469631236654,2813813.0290300334,1267082.2369587952,1133.93501,498.983128131668,1167000.6583484858,503548.8917640079,1767.66106,742.4345691229954,1809884.1515664516,744551.6807592486,0.38038,100000,0,692475,7236.347106401655,0,0.0,0,0.0,33203,346.3749033377223,0,0.0,34024,351.6834911279704,1613625,0,57905,0,0,0,0,0,71,0.7314983175538696,0,0.0,0,0.0,0,0.0,0.06078,0.1597875808402124,0.2968081605791379,0.01804,0.3363593676631711,0.6636406323368289,24.591896963722103,4.249123769414042,0.3283393120911584,0.2331715551804178,0.224519940915805,0.2139691918126187,10.91053151674661,5.683123402277718,19.239817109061303,12217.30804896216,53.62237175095489,13.169504756262276,17.552696326115523,11.892231711976423,11.007938956600668,0.5627769571639586,0.7701357466063349,0.6844473007712082,0.5883458646616542,0.1232741617357002,0.7153167602245389,0.899749373433584,0.8074074074074075,0.6972111553784861,0.1614583333333333,0.5083046964490263,0.6968838526912181,0.6411815812337098,0.5547355473554736,0.1143552311435523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0046445122755067,0.0068318630785004,0.0090251239938206,0.011332885714867,0.0134267842953485,0.0154240071815483,0.017699205425169,0.0198402552643151,0.0218451076381065,0.0239872833555532,0.0262217292167375,0.0285223509082306,0.0307335668658561,0.0326119487703437,0.0346413877230343,0.0365094329848844,0.0386224219714976,0.0406407655900556,0.0424675812033523,0.0573323584708585,0.0711473624693736,0.0845614477054205,0.0971101549596557,0.1097784810126582,0.1249629723668063,0.1365479324106309,0.1482179556804992,0.1591098569871096,0.1688182081576151,0.1822885228938518,0.1943987355475685,0.2062369428969359,0.2169159891005788,0.2273377810071118,0.2382077040782383,0.2483363851547496,0.2574674337698015,0.2667075553132524,0.2735401334342114,0.2802607507584003,0.2866460572847139,0.2922798037961185,0.2981464819147021,0.3032612527197365,0.3079179608539171,0.3121301960195644,0.3167501971658992,0.3204419889502762,0.3254767403497196,0.3242744347732356,0.3237665446740596,0.3225688383354919,0.321638440103377,0.3208361129641983,0.3182061354569493,0.3164124851837218,0.3170292229065653,0.3177421831021954,0.3195788123363087,0.3205578821417888,0.3215896335099155,0.3212237492440199,0.3227400186940846,0.3231667903569462,0.3237934613388687,0.3249138272023507,0.3286859424222575,0.3318235663019999,0.3354393124828317,0.3379089968045367,0.3416407608409294,0.3426769883880634,0.3450522806485831,0.349175103112111,0.3574564005220073,0.3616600790513834,0.3613930348258706,0.3618403247631935,0.3709244342155735,0.0,2.32299450809998,54.69319290633663,179.3424657638053,258.7485090026676,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95718,45193,428.7908230426879,5984,61.315531039094,4681,48.25633632127708,1843,18.836582460979127,77.26691653433518,79.6266218715753,63.2951211478972,65.03885032955047,77.03400591314974,79.39557511324801,63.20813774504154,64.95514807981982,0.2329106211854394,231.04675832728103,0.0869834028556582,83.70224973064921,151.41236,106.55482940539606,158185.8793539355,111321.62122630652,385.60527,253.0745125492772,402238.1683695857,263778.57095768524,369.79959,179.95202709282003,382332.9990179486,184856.32455797383,2697.25444,1233.6823745570057,2784976.827764893,1255931.020870688,1110.81043,491.1653300696709,1147435.2786309784,500069.9973564751,1806.15152,763.9082472219446,1849927.8923504464,767523.84447858,0.38326,100000,0,688238,7190.267243360705,0,0.0,0,0.0,33281,347.0507114649282,0,0.0,33814,349.1610773313274,1613339,0,57922,0,0,0,0,0,65,0.6790781253264798,0,0.0,1,0.0104473557742535,0,0.0,0.05984,0.1561342169806397,0.3079879679144385,0.01843,0.3421932197994589,0.6578067802005412,24.40971859371784,4.389373805538689,0.3202307199316385,0.2292245246742149,0.2262337107455672,0.2243110446485793,11.300346889405256,5.79449932132466,19.80287409922399,12290.328518198989,53.26117985366499,12.840372806047576,17.000319390184334,11.898726431319156,11.521761226113949,0.5637684255500961,0.7903075489282386,0.7024683122081388,0.5816808309726157,0.1161904761904761,0.73328025477707,0.916243654822335,0.8634020618556701,0.7479674796747967,0.1798245614035087,0.5016058394160584,0.7172312223858616,0.6462646264626463,0.5313653136531366,0.0985401459854014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0044713015441705,0.0069306327880829,0.0092136406578559,0.0114720419827919,0.013521631555904,0.0156175136347418,0.0177723788038096,0.0199032947261891,0.0219968064199148,0.0242844841725438,0.0264365573955627,0.0282482389840094,0.0302512179797501,0.0322610597556949,0.034328419921027,0.0362649766483374,0.0383561928080841,0.0404885654885654,0.0424172961708778,0.0580993452859544,0.0717313710918283,0.0852222641984636,0.0976199995791334,0.1096798016563802,0.1254193166065249,0.1378190156694551,0.1492518238457852,0.1604362703165098,0.1703842851009016,0.1828354588674119,0.1948293983161955,0.2066190403589397,0.2167436970188158,0.2259692741739954,0.2378420380751512,0.2470309319854174,0.2567584318409754,0.2658213466039493,0.273282810332374,0.280576455608288,0.287992132897833,0.2944589841668344,0.2994063680518078,0.3050301468443061,0.3101070653246497,0.3155783932823662,0.3196371466065308,0.3244894781909235,0.3294553636423797,0.328810077309834,0.3274402287261225,0.3261468862656393,0.3257588923647317,0.3243525013776566,0.3217647691150048,0.3202681876678159,0.320634083643674,0.3218909140789767,0.3236884512085944,0.3239669421487603,0.3242632632434253,0.3257502420135527,0.3262664333467941,0.327115900359999,0.3264521193092621,0.3271737573413551,0.3319097782417513,0.334824916542368,0.338108075483845,0.3405693786506002,0.3421801966367592,0.3461977910371969,0.3512561274509804,0.3550307038261691,0.3631946913141367,0.3611620795107033,0.3677719369187222,0.3829903978052126,0.3847641144624903,0.0,2.561686632237472,54.772891038303335,175.18553240566197,257.9450805715069,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95702,44814,424.358947566404,6112,62.65281812292324,4770,49.24661971536645,1851,18.90242628158241,77.288290147924,79.65840685056143,63.294707477804174,65.04419953282165,77.05263977250785,79.42213870722716,63.207361346085015,64.95898186826803,0.2356503754161565,236.26814333427149,0.0873461317191583,85.21766455362467,151.17234,106.44987070442338,157961.52640488182,111230.56018100287,385.79301,253.24703720347304,402510.6162880609,264017.86915667914,372.85486,181.4087809153675,385472.3621240935,186381.1125012918,2749.3148,1260.4017525444242,2841121.690246808,1285640.6585029445,1161.77055,517.6000396834531,1196945.4974817664,524022.71616484656,1819.89668,773.7503564005701,1861567.42805793,776298.3285532199,0.37972,100000,0,687147,7180.069382040083,0,0.0,0,0.0,33366,347.99690706568305,0,0.0,34031,351.580949196464,1612447,0,57849,0,0,0,0,0,66,0.6791916574366262,0,0.0,0,0.0,0,0.0,0.06112,0.1609607078900242,0.3028468586387434,0.01851,0.3446230685188075,0.6553769314811925,24.513415859246123,4.368782964549013,0.310062893081761,0.2364779874213836,0.2215932914046121,0.2318658280922431,11.179892680639949,5.8333513807492405,20.07886752244173,12197.773035596758,54.224666122230126,13.537872391849325,16.778719753710977,11.683997595021168,12.224076381648649,0.5538784067085953,0.799645390070922,0.6808654496281271,0.575212866603595,0.1130198915009041,0.7186046511627907,0.9311163895486936,0.8443271767810027,0.7489711934156379,0.1336032388663967,0.492816091954023,0.7213578500707214,0.6245454545454545,0.5233415233415234,0.1071012805587892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268191899857,0.004349104327815,0.0063928238015992,0.0084824965968426,0.0107802457082418,0.013267623130263,0.0154972370057706,0.0177920685959271,0.0200554027946723,0.0219720616077367,0.023910058007256,0.0259489642996448,0.0282021755670251,0.0305249173540952,0.0325318975564976,0.0347243752712841,0.0368295713398219,0.0388974220598613,0.0410239340954243,0.0430758648003585,0.0568790667070508,0.0710381941536142,0.0840557502991121,0.096409252594136,0.1079537657676677,0.1238763777276625,0.1363375735309732,0.147555129434324,0.1591540863020142,0.1692469562603336,0.1817093814355181,0.1937021350347173,0.205632207690381,0.2157729949860968,0.2256828193832599,0.2361320670986065,0.2452372434148741,0.254121095952193,0.2620136518771331,0.2702780297897263,0.2777210726547277,0.2842854462736269,0.2905311613890635,0.2967901590505021,0.3018399230422658,0.3080687013468429,0.3134684447123232,0.3180327868852459,0.3225119191446796,0.3262486434980546,0.3246429197631604,0.3248503406990538,0.3242685512367491,0.3240178092323756,0.3228462743343029,0.3206555966882229,0.319553108088807,0.3195209817242684,0.320585967617579,0.3211740267182407,0.3217984624349166,0.3220503476004674,0.3227995713655369,0.3238482687708161,0.3256550532680679,0.327055461748279,0.3271506599908966,0.3309451985922574,0.3335204941044357,0.3375818939845146,0.3418229951161623,0.3441271866858085,0.3474581583401241,0.3515151515151515,0.3532301418111039,0.3564587713151133,0.3553818400481058,0.3582653670181022,0.3552350427350427,0.3519137866963954,0.0,2.24800116707128,56.7275129849756,178.84269177568004,259.3450430918423,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95826,45144,426.8257049235072,5908,60.32809467159227,4630,47.69060588984201,1824,18.721432596581305,77.36488025655099,79.67951306420912,63.35773544642036,65.0713079427897,77.13881276606939,79.4522192242565,63.274354110660006,64.98902633189692,0.2260674904815971,227.29383995262253,0.0833813357603503,82.28161089277819,152.37398,107.17980472971551,159011.10345835157,111848.35507035205,382.16435,251.25463766485444,398182.23655375367,261585.90951328664,371.62146,181.09262044420436,382764.6567737357,185237.6973483302,2665.75428,1235.8725561966876,2749783.9417277146,1258188.1340026043,1093.095,487.11143785348935,1125202.5441946862,493297.5208080825,1792.74612,756.84524419203,1841892.868323837,766653.1498591694,0.38191,100000,0,692609,7227.777429925073,0,0.0,0,0.0,32905,342.72535637509657,0,0.0,34026,350.176361321562,1617811,0,58070,0,0,0,0,0,69,0.709619518710997,0,0.0,0,0.0,0,0.0,0.05908,0.154696132596685,0.3087339201083277,0.01824,0.3285047481088041,0.6714952518911959,24.564040254604908,4.381018530792004,0.3362850971922246,0.2354211663066954,0.2025917926565874,0.2257019438444924,11.22266623696886,5.915024999604086,19.49685762449612,12247.31640324626,52.67523226297332,12.962175961209052,17.687074044639278,10.486151607722997,11.539830649401985,0.5701943844492441,0.7798165137614679,0.7026332691072575,0.5906183368869936,0.1358851674641148,0.7234878240377062,0.9251870324189526,0.847457627118644,0.7224669603524229,0.1551724137931034,0.5120643431635389,0.6952104499274311,0.6503496503496503,0.5485232067510548,0.1303813038130381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020662412640534,0.0044811225110507,0.0068390291419758,0.0089993093080892,0.0113177616660395,0.0132875819655439,0.0155558726987298,0.0177123956142679,0.0199950932286555,0.0219970315778699,0.0243205017832984,0.0266104286608581,0.028859791568172,0.0312471053200358,0.0332319744369427,0.0352117764862549,0.0371117386042759,0.0393717103899871,0.0414191967437803,0.0434470489091419,0.058543759191464,0.0722856306701785,0.085101925373447,0.0976752000336014,0.1094005033539378,0.1246291427787104,0.137451802889708,0.148665454893332,0.1593740666467551,0.1696868440217624,0.1824078655794841,0.1949714088054393,0.2063705892577785,0.2167312837874734,0.2265788982054353,0.2361267776966801,0.2456249791135221,0.2546910266919699,0.2629034084475144,0.2715819318844391,0.2789728312953918,0.2862762492850389,0.2925650689382214,0.2986929120675428,0.3039214496377119,0.3088881503637236,0.3136029595560666,0.3181991412383445,0.3228050215263682,0.3265698447601617,0.3260121511909242,0.3248457532326549,0.323963101190057,0.3235570324351658,0.322902420170066,0.320368866898485,0.3191954733488659,0.3196771170697223,0.3207046497295076,0.3215013769178498,0.3231766917293233,0.323983030687495,0.3242465609576814,0.3250280080663231,0.325839458135178,0.328513742347271,0.3278106172558827,0.3301279029571666,0.3346786930123188,0.3393611088982713,0.3426477324782409,0.3442631719711153,0.3451107715813598,0.3492417827726888,0.3537978298115363,0.3564273789649416,0.3579369981470043,0.3643076923076923,0.3635356054308672,0.3709175738724727,0.0,2.406309938093069,55.46772231351395,169.5743029005224,255.11871323567016,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95634,45002,427.3166447079491,6092,62.41504067591024,4785,49.41757115670159,1918,19.658280527845744,77.2563444549925,79.6651826698277,63.27473565930678,65.05510262918781,77.01419299452407,79.4246582130317,63.18559177106212,64.96884654876835,0.2421514604684347,240.52445679599543,0.0891438882446564,86.25608041946009,150.6527,105.98394759073244,157530.48079135036,110822.45602059147,382.45308,251.3182111749112,399296.05579605576,262174.4580117021,373.56107,181.60891347031716,386259.4474768388,186595.6102694356,2747.67776,1270.473516542585,2840077.6711211493,1295434.2979929582,1184.40457,526.5096912563926,1222369.763891503,534439.8657970941,1889.83524,795.1424357388662,1939486.960704352,802081.9409151163,0.38237,100000,0,684785,7160.476399606834,0,0.0,0,0.0,32934,343.727126335822,0,0.0,34243,353.8072233724408,1617231,0,58119,0,0,0,0,0,73,0.7528703180877094,0,0.0,1,0.0104565321956626,0,0.0,0.06092,0.1593221225514554,0.3148391332895601,0.01918,0.3298206983328091,0.670179301667191,24.54190039825581,4.34957100744042,0.322257053291536,0.2336468129571577,0.2144200626959247,0.2296760710553814,11.40572073651122,5.981568231034574,20.489421997073755,12259.990524512745,54.75484811920197,13.418295294273104,17.48116520720064,11.5014714778315,12.35391613989672,0.568234064785789,0.7889087656529516,0.7075226977950714,0.5994152046783626,0.1191992720655141,0.7304075235109718,0.9263157894736842,0.9033942558746736,0.752851711026616,0.144,0.5092618979766316,0.7181571815718157,0.642795513373598,0.546526867627785,0.1118963486454652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0044292186533959,0.0068500796638894,0.0090620015645159,0.0112829382439719,0.0133044018622087,0.0153725314183123,0.0174608688544689,0.0196182722009696,0.0221484623107341,0.0243189164229644,0.0263909728074322,0.028753796262933,0.030776051386211,0.0328908630752543,0.0348299376041224,0.037018607785207,0.0389238040824806,0.0408320412898929,0.0424002837116154,0.0577415477870094,0.071822915029804,0.0846062591204476,0.0975589216728597,0.110609290251778,0.1263624626976232,0.138175141422825,0.1501682497763768,0.1608221198550709,0.1709376945034662,0.1827659069837642,0.1948777951118044,0.2069709182006317,0.2178267730341018,0.22763967620266,0.2378510378510378,0.2466920934602436,0.2552628020194735,0.2631525111664223,0.2709502013284234,0.2776521608051854,0.2848684519063921,0.2916286076940415,0.2967982808917274,0.3023657904029027,0.3075336289635238,0.3122091929516523,0.3172482374389637,0.322377214040096,0.3274907139363657,0.3269760285066407,0.3256083589835608,0.3254850387465354,0.325487578360808,0.3245204150182876,0.3226611226611227,0.3211031060642206,0.3214321052805172,0.3230390723121655,0.32317895077371,0.3232713894915574,0.3243076555785453,0.3258881537359349,0.3264843767524281,0.3288074279512842,0.3290147320029255,0.3302539755176753,0.3341324921135646,0.337471506224794,0.3395485381044947,0.343095281472035,0.3437001594896332,0.3468678959333165,0.350072171997265,0.353698046838841,0.3551489561341778,0.3587201442091032,0.3612220447284345,0.3606290672451193,0.3615950445218738,0.0,2.396868770989354,56.02017266859752,182.1701315823636,264.6804017735706,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95694,44705,423.5375258636905,6158,63.24325454051456,4907,50.70328338244822,1901,19.499655150793156,77.32722884548278,79.70383450208674,63.32110870231941,65.07573729031185,77.08822094305695,79.46579850571848,63.23203988445911,64.98951456244811,0.2390079024258256,238.03599636825368,0.0890688178603085,86.22272786374197,151.05926,106.23974052627716,157856.56362990366,111020.27350333057,385.41673,252.7067813439595,402204.40152987646,263522.82415194216,370.04363,180.188838777237,383372.22814387525,185717.24642418447,2814.9632,1293.1931862614776,2909597.007126884,1319351.0003359437,1177.5504,522.5466102405348,1214640.311827283,530162.9258266293,1861.7271,790.9688137394763,1910960.540890756,795744.9667119001,0.37964,100000,0,686633,7175.298346813802,0,0.0,0,0.0,33340,347.8170000209,0,0.0,33916,351.03559261813695,1617873,0,58077,0,0,0,0,0,52,0.5433987501828745,0,0.0,0,0.0,0,0.0,0.06158,0.1622063007059319,0.3087041247158168,0.01901,0.3345239944090697,0.6654760055909302,24.41773459153677,4.360655007121348,0.3175056042388424,0.2392500509476258,0.2233543916853474,0.2198899531281842,11.069798542319411,5.716629047292881,20.474581463324306,12191.605097779324,55.42076002697529,13.843039967262252,17.463037775295,12.212322462243222,11.90235982217481,0.5602200937436316,0.7708688245315162,0.6938382541720154,0.572992700729927,0.1251158480074142,0.7350890782339272,0.9093198992443324,0.9034653465346536,0.7470355731225297,0.1434599156118143,0.497787610619469,0.7001287001287001,0.6204506065857885,0.5207591933570581,0.1199524940617577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022779273897989,0.0043376473330563,0.0066957492137567,0.0085621134099149,0.0107991580317466,0.0129616242248989,0.0151530601839577,0.0172500076598613,0.0196653917738735,0.0218738159363447,0.0238437083376064,0.0259436142350947,0.0281109213963917,0.0301078814231692,0.0323229821356698,0.0345095038160044,0.0365501165501165,0.0388492644386997,0.0407530684418556,0.0428179818846999,0.0574147187232353,0.0712588825049972,0.0854643478990539,0.0985619154822895,0.1101806638050138,0.1251718958258404,0.1373510341387836,0.1479742320183144,0.1587893421080746,0.1679790589396442,0.1806958957233652,0.1932016238159675,0.2051538653990492,0.2155342142107105,0.225346996730911,0.2355919995567621,0.2446307376317199,0.2541882784459771,0.262483398980669,0.2702201038074178,0.2779070709877615,0.2852377664119099,0.291881267834097,0.2972156632426795,0.3028310258062163,0.3084704779293839,0.3129048018741465,0.3175958010599266,0.3222444058391889,0.3263003527499967,0.3252101634079531,0.3238932201989035,0.3230215827338129,0.3220895263431843,0.3214848980806428,0.3201787386944704,0.3187266155114465,0.3198976747236889,0.3200648353523289,0.3210468182142094,0.3227941588916104,0.3234382709957564,0.3237251946747048,0.3243376077923238,0.3252725041507254,0.3262696382900986,0.3260646192487726,0.3294217580066696,0.3313578341983448,0.3335585675106324,0.3365349432857665,0.3402644487097462,0.3411630990717939,0.3436207688773166,0.3438952661037852,0.3465334760375788,0.345485309952315,0.3505700325732899,0.3504013285358427,0.3547765793528505,0.0,2.2577407720612657,56.46297308193487,183.5261447783311,270.9810616063341,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95778,44741,423.260038839817,6018,61.66343001524358,4726,48.74814675604001,1851,18.89786798638518,77.38146625236273,79.70463867647744,63.35451413110488,65.06784222426151,77.15920286435926,79.48639527257477,63.27193052966395,64.98964490017048,0.2222633880034692,218.24340390267596,0.0825836014409304,78.19732409103608,150.39728,105.8749509631786,157026.95817411097,110542.03571089248,382.58267,251.2717107750409,398826.6929775105,261730.31870614085,372.31873,180.9387841861356,385412.3285096786,186307.24112454467,2731.93148,1249.0005659452956,2818879.575685439,1270835.309495227,1154.23806,504.2123746692663,1187706.3730710605,509259.401603487,1817.71434,753.6407531743108,1857723.0679279163,753021.4650167526,0.38007,100000,0,683624,7137.589007914135,0,0.0,0,0.0,32914,342.99108354736995,0,0.0,34092,352.5757480841111,1624033,0,58256,0,0,0,0,0,71,0.7412975839963248,0,0.0,1,0.0104408110422017,0,0.0,0.06018,0.1583392532954455,0.3075772681954137,0.01851,0.32047006511037,0.67952993488963,24.35564924754265,4.438759639850691,0.3222598391874735,0.2280998730427423,0.2232331781633516,0.2264071096064325,11.623202296741344,6.099634071391358,19.55705858651028,12184.133868499068,53.57169024567885,12.80798262439748,17.45010325351459,11.659196615168671,11.654407752598114,0.5694033008887008,0.7792207792207793,0.7196323046618516,0.590521327014218,0.1233644859813084,0.7431048069345941,0.911917098445596,0.8747099767981439,0.7355371900826446,0.1714285714285714,0.505640728955742,0.7052023121387283,0.6584249084249084,0.5473554735547356,0.1116279069767441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401109693619,0.0048137338359884,0.0071616234365648,0.0093833780160857,0.0116526177717673,0.0138648533094447,0.0160021200260926,0.0182859008765395,0.0202492848385778,0.0223645441152398,0.0245156795852926,0.0265525767695732,0.0286518816928041,0.0307182343191855,0.0329501520696943,0.0349068977269206,0.0366330691061117,0.0384846662657847,0.0407438188240182,0.0428671088389333,0.0577529168666903,0.0715847852247161,0.0847439850649214,0.09780814717477,0.1100416425069843,0.12546141072694,0.1378809253582528,0.148626353156567,0.1589251193540463,0.1689733171814195,0.1819140805804028,0.1942687212760205,0.2063022605934737,0.2152779296917726,0.2248055191840058,0.2352419783726289,0.2444885976760021,0.253704641350211,0.2628662904892199,0.2706590257879656,0.2784037613053397,0.2853212190752731,0.2910968230850295,0.2971813431762619,0.3024219015692562,0.3069845922678063,0.312098327039936,0.3158704329917876,0.3203040033145165,0.3246542654871923,0.323469277951146,0.3224955338738491,0.3218256537281504,0.3212003816242157,0.3206161348835826,0.319397225029863,0.317799557382232,0.3181497927282856,0.3185089185225606,0.3186097417735936,0.3199925296479596,0.3201109733781949,0.3204825815608758,0.322180585296217,0.3228627563733947,0.323297342192691,0.3242913832199546,0.3281850867594185,0.3306091086895781,0.3351539618459589,0.3364180729450191,0.3386594948056742,0.3389587744426454,0.343141693073789,0.3446720541251644,0.3460766961651917,0.3493047158403869,0.354191736863217,0.3477905073649754,0.3469154607768469,0.0,2.243357889016253,55.73633868697674,177.61726099738027,256.18111976364867,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95757,44613,421.98481573148695,6160,63.01367001890201,4801,49.53162693066825,1928,19.76878974905229,77.31912755708531,79.67003574974338,63.32066847763053,65.05888273537141,77.07533117157922,79.42729162853288,63.228432113771305,64.96984142834604,0.2437963855060871,242.7441212104924,0.0922363638592287,89.04130702536861,151.91814,106.79826673657858,158649.64441241891,111530.50611086248,384.45391,252.24344239885264,400887.3607151436,262819.63626651384,370.05176,179.39467752461775,383367.1272074104,184936.53648141932,2747.32536,1277.6577182645824,2836415.718955272,1301681.766315089,1169.65604,522.7840165311197,1207507.3153920865,532021.3351369487,1888.07828,804.1611902106758,1937535.3655607423,809134.4875331761,0.37995,100000,0,690537,7211.347473291769,0,0.0,0,0.0,33123,345.26979750827616,0,0.0,33908,350.95084432469685,1616166,0,58086,0,0,0,0,0,82,0.8563342627693015,0,0.0,0,0.0,0,0.0,0.0616,0.1621265956046848,0.312987012987013,0.01928,0.3402205996582259,0.6597794003417741,24.34267452081137,4.357168560482831,0.3230576963132681,0.2274526140387419,0.2314101228910643,0.2180795667569256,11.243227536878903,5.742052425010645,20.623258189753653,12149.26129571157,54.87579567400633,13.215930561435044,17.609634693427406,12.51945055012387,11.530779869020026,0.5721724640699855,0.7710622710622711,0.7111540941328175,0.594959495949595,0.1346704871060172,0.7206870799103808,0.8915094339622641,0.8481927710843373,0.7290076335877863,0.1848739495798319,0.5147313691507799,0.6946107784431138,0.6610915492957746,0.5535924617196702,0.1199011124845488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0042866263338704,0.0066352826589829,0.0089479778179528,0.0113494218506879,0.0135040175979957,0.0159061942391027,0.0180737654699179,0.0201734115866751,0.0222661288671403,0.0242279456998728,0.0262347263579422,0.0285288219262611,0.0302352892698203,0.0323256293850598,0.0345807625130478,0.0364300799204936,0.0385668644454587,0.0409306288706928,0.043058014790126,0.0573098804739287,0.0711677877624462,0.084562294153433,0.0969081922389315,0.1090797908232118,0.1245994903084585,0.1363747255428153,0.148316041500399,0.1593464680442095,0.1690325070760785,0.1813364923805934,0.1929101044541863,0.2053742384682332,0.2155020616188903,0.2251603886743036,0.2356752805130647,0.2454195277173002,0.2540038040358794,0.2627724795640327,0.2701225799060602,0.2767586222870776,0.2833253311161336,0.2893086978679023,0.2946325648414986,0.3006947908934937,0.3058835152892358,0.3108782310025823,0.3161536991015102,0.3200498132004981,0.3242957560382644,0.3224614720832715,0.3217665615141956,0.3206604572396274,0.3197612943408798,0.3190273520045239,0.3176317202239435,0.3164597110550771,0.3175503493629264,0.3179992136348872,0.3183322895231278,0.3193758566948945,0.3212709969728746,0.3215433408245993,0.3219749652294854,0.3225021091960949,0.3239282075397758,0.326116759968011,0.3290434235368156,0.33234849284232,0.3355539693869458,0.3356092676043516,0.3380813180972628,0.3411683155838427,0.3431035798793985,0.3447559709241952,0.3488427019367028,0.3485958485958486,0.3518668831168831,0.3592930129798398,0.3613348676639816,0.0,2.3648292498189925,58.64691588919607,179.36202324246167,258.7979143066879,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95692,44694,423.6717802951136,6244,64.11194248213017,4865,50.35948668645237,1955,20.189775529824857,77.34181859432726,79.72379445849336,63.3271521787835,65.08518216691284,77.09919409791453,79.47905227005984,63.23789846080719,64.99698894877736,0.2426244964127306,244.7421884335199,0.0892537179763124,88.19321813548697,150.29718,105.75461940667566,157063.47448062533,110515.63287074745,385.24746,251.9244915523032,402122.37177611503,262797.27830153314,369.69474,179.69261616267133,383144.5575387703,185367.6620184918,2814.02532,1282.1209634083432,2916235.3383772937,1315365.509560197,1186.0257,521.8836960559114,1229452.8278225977,535411.5245327841,1926.44636,804.6848274014683,1990822.1585921496,820864.8165855063,0.38045,100000,0,683169,7139.248840028425,0,0.0,0,0.0,33196,346.4134932909752,0,0.0,33830,350.29051540358654,1624458,0,58306,0,0,0,0,0,72,0.7524139949003052,0,0.0,1,0.0104501943736153,0,0.0,0.06244,0.1641214351425943,0.3131005765534913,0.01955,0.3345043531388422,0.6654956468611578,24.854049763948574,4.41839093941936,0.3149023638232271,0.2254881808838643,0.2250770811921891,0.2345323741007194,11.324042308574343,5.796749828572114,20.809540376044414,12194.545693668464,54.91967310060216,13.113237224639867,17.25414087043716,12.068467920389343,12.48382708513578,0.5516957862281603,0.7939835916134913,0.6821148825065274,0.5735159817351598,0.1226993865030674,0.7272727272727273,0.9429280397022332,0.8498727735368957,0.7727272727272727,0.1405622489959839,0.4885410844046953,0.707492795389049,0.6242317822651449,0.5169988276670574,0.1177130044843049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417464126945,0.004855205408638,0.0071223481428122,0.0092523003798419,0.0114999796640501,0.0136332165838559,0.0157783689569764,0.0176903524800179,0.0197569476384672,0.0220598020247929,0.0241264047247969,0.0260966015877743,0.028095840663354,0.0301297309551042,0.0322953543819088,0.0343604224201239,0.0364958965431484,0.0383828735763452,0.040466035576823,0.0424602554078707,0.0574636999895539,0.0715115852956266,0.0846644696794777,0.0982112794612794,0.1101946099889246,0.1251441082213079,0.1376826201818509,0.1492602448110697,0.1606696438110297,0.1700427868272334,0.1832642291745194,0.1952625601644043,0.2078847199564981,0.2179112962294885,0.2279802435456015,0.2382629497956607,0.2478988313819159,0.2559894720266348,0.2637055866365566,0.2714788046777463,0.2787031253614639,0.285236508214933,0.2911069063386944,0.2971522361595323,0.302451819738424,0.3076866204992976,0.3114848462096754,0.3150881926238896,0.3189091144652458,0.3231989861252293,0.3225884666675647,0.321843036301813,0.3213132324528621,0.3203754320505589,0.3202093493517307,0.318718070662596,0.3170391725142957,0.3167967145790554,0.3175987685992816,0.3190851143607049,0.3200748362956033,0.3217326038436469,0.3219625581103154,0.3221267838768845,0.3228087050619214,0.3237137633846957,0.3238263647253436,0.3262060712936138,0.3286555481118437,0.332098322775985,0.3341865886547516,0.3364749733759318,0.3405724328395682,0.3416951729380463,0.3415203586103847,0.3421895386075199,0.3396543814038844,0.3439323807607164,0.3465154867256637,0.354888375673595,0.0,1.8512414301249704,56.848636760613445,180.6577363892194,268.08375301111533,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95681,44783,423.9817727657529,6136,63.07417355587839,4815,49.759095327180944,1915,19.64862407374505,77.38307130315455,79.75934875195935,63.34642469116329,65.09741710861054,77.14206447674513,79.51989976184105,63.25775037106502,65.01190868153532,0.2410068264094178,239.448990118305,0.0886743200982707,85.50842707522577,151.25286,106.35106471469142,158080.35033078666,111151.706937314,385.58599,252.87105662283727,402435.2692802124,263739.2675324385,371.0915,180.15658220696557,384382.8659817519,185568.57159520945,2790.17244,1276.412015010026,2884652.919597412,1303491.200977231,1174.97987,518.6766998115762,1215146.444957724,529385.983714662,1876.12506,782.9531915169214,1927249.192629676,789669.443659885,0.37975,100000,0,687513,7185.4704695812125,0,0.0,0,0.0,33266,347.0908539835495,0,0.0,33941,351.30276648446403,1618910,0,58201,0,0,0,0,0,70,0.7315977048734859,0,0.0,1,0.0104513957839069,0,0.0,0.06136,0.161579986833443,0.3120925684485006,0.01915,0.344945567651633,0.655054432348367,24.418424188936445,4.416320996880429,0.3204569055036345,0.2338525441329179,0.2201453790238837,0.2255451713395638,11.48893051648487,6.04908105869675,20.372436150452053,12199.131404025107,54.6466129673211,13.594455338876898,17.367834518424626,11.730267305932763,11.954055804086815,0.5603322949117342,0.7868561278863233,0.694750486066105,0.5622641509433962,0.1325966850828729,0.7306525037936267,0.9181818181818182,0.8822055137844611,0.6890756302521008,0.1784232365145228,0.4961395481841578,0.7026239067055393,0.6293706293706294,0.5255474452554745,0.1195266272189349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024498142392921,0.0046906976272972,0.0067747791604547,0.00901742556562,0.0112246454171114,0.0134368924132455,0.01553548492324,0.017679061744021,0.0199934581731948,0.0222554358953359,0.0242474573490813,0.0267089738455377,0.02895137403324,0.0310040789419471,0.033167239227095,0.0350989612939899,0.0372526675644877,0.0391916717697489,0.0412441893114529,0.043073620143405,0.0580934969966048,0.071711979564703,0.0847775912715065,0.0978076862415225,0.1097791132901049,0.1253554928267098,0.137278181779634,0.1484542002999074,0.1590196120275721,0.1694880750851779,0.1811149840778036,0.1935780312449321,0.2047492256697277,0.215152243764891,0.2248385996942467,0.2354192283406998,0.2452573164059447,0.2544537285196279,0.263105903191743,0.271303351475222,0.2774318976091837,0.2841524937670455,0.2903497133109036,0.2953457398941723,0.3013655321684359,0.3067443036725429,0.3113579721216827,0.3162940517416989,0.3205126543729832,0.3254880207095121,0.324479327939256,0.3237130987426748,0.3232456943290476,0.3225536096179411,0.3217994621818776,0.3204041271252702,0.3183222678223391,0.3184655823886972,0.3184206472813158,0.319083887577773,0.3210273473278875,0.324072432070304,0.3253034703215427,0.325950847797509,0.3277606371529023,0.3288849731802752,0.3290311624352551,0.3313772006492695,0.33282085327929,0.3372326598133049,0.3418272500566764,0.3446006423419154,0.3450581032112957,0.3476586102719033,0.3505154639175257,0.3493046628491293,0.3517241379310344,0.3591452656341893,0.3601921024546424,0.3577235772357723,0.0,2.1791381884467493,58.01605549456471,178.6579385741262,260.21781853816503,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95696,44458,421.3237752884133,6129,62.82394248453436,4765,49.22880789165691,1923,19.750041799030264,77.3960056150407,79.78105664327575,63.35197710932333,65.11336923415162,77.15058155512516,79.53492214623108,63.26016065926023,65.02364792853139,0.2454240599155497,246.1344970446646,0.0918164500630993,89.7213056202304,151.41148,106.4068353676229,158221.32586523992,111192.56329169756,385.29084,252.36967415385263,402059.9293596388,263160.5335163984,366.84297,178.4211598634529,379759.0390402943,183725.4311923126,2735.08924,1266.2267871173935,2827433.915733156,1292508.2627459806,1133.47763,507.81229730651336,1171153.8099816083,517348.7055953365,1876.79524,800.4063997579493,1928435.0861060023,808489.1632661166,0.37849,100000,0,688234,7191.878448419997,0,0.0,0,0.0,33206,346.4094633004514,0,0.0,33593,347.4021902691858,1623442,0,58200,0,0,0,0,0,81,0.8464303628155827,0,0.0,2,0.0208995151312489,0,0.0,0.06129,0.1619329440672144,0.3137542829172785,0.01923,0.3238689547581903,0.6761310452418097,24.6516030060442,4.339339434842901,0.3200419727177335,0.2308499475341028,0.2289611752360965,0.2201469045120671,11.168666089039196,5.868379681880764,20.72510212820772,12142.816702241138,54.141478458778174,13.213955169168296,17.23431817490426,12.03908798495221,11.654117129753413,0.5571878279118573,0.7872727272727272,0.6878688524590164,0.5618698441796517,0.1210676835081029,0.7125475285171102,0.9314420803782506,0.848404255319149,0.7094339622641509,0.1434262948207171,0.4979710144927536,0.6971935007385525,0.6353350739773717,0.5145278450363197,0.1140350877192982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020867733014577,0.0042485449494027,0.0063945108706684,0.0087172974345948,0.0110980001220678,0.013430130737588,0.0153960663560263,0.0175193212794413,0.0194749432619763,0.0216792736726818,0.0239186376731358,0.0258429504291757,0.0280151800314707,0.0302221855975937,0.0322850244536618,0.034267816163245,0.0365651543401698,0.0384056466680506,0.0404247353204234,0.0425013027618551,0.0564764620478592,0.0709860393076166,0.084328882642305,0.0974345494690358,0.1097641961904561,0.1249352269963304,0.1363703876594029,0.1482025569784647,0.1590984350798483,0.169021033776319,0.1811875962646618,0.1937022694329662,0.2055058035908359,0.2150477689600139,0.2242003056927018,0.2345367387381403,0.24452672785876,0.253561157544711,0.2619117747014976,0.2694712775078594,0.2766917987737995,0.2837779464129356,0.2903351565914917,0.2961110446332416,0.3019549820510332,0.3059941951987406,0.3110506477621627,0.3166941519725992,0.3211500722991117,0.3248335570116576,0.3241792166653244,0.3229996845036419,0.3219879094615492,0.3203185871353129,0.3197127511202113,0.318056702449766,0.3155065842515452,0.3163079646597931,0.3171280896576429,0.3189423231117367,0.3203104544604451,0.3213068237797789,0.3215083157697043,0.3218457294146439,0.3226919758412424,0.3233895486318634,0.3246598639455782,0.3275418679044095,0.329832300528656,0.3325001983654685,0.3376670772318781,0.3387739911744378,0.3378787878787879,0.3395306309052118,0.3433951551854655,0.3439109088731888,0.3474862047823421,0.3424908424908425,0.3426283821093319,0.3458559256390395,0.0,2.152063699495438,57.773740202312624,176.1066533560668,257.8020651267153,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95835,45212,427.2969165753639,6089,62.3676109980696,4786,49.49131319455314,1837,18.87619345750509,77.38566316619061,79.70669738815945,63.36611244363343,65.08433605344183,77.15577411874804,79.47670238430662,63.27999902842921,65.00026923081096,0.229889047442569,229.9950038528351,0.0861134152042168,84.06682263087362,151.71332,106.81098272940548,158306.798142641,111453.00018720246,389.21028,255.28533635208,405677.2786560234,265932.1271384629,377.27516,183.49555112620652,391376.11519799655,189687.11683841137,2768.10064,1269.034801494876,2861330.0777377784,1297311.776055009,1137.0788,498.3618982992548,1177243.3557677255,510900.6422140609,1804.41148,761.6175952078893,1854241.3314551048,769279.0802861552,0.38286,100000,0,689606,7195.763551938228,0,0.0,0,0.0,33585,349.9660875463036,0,0.0,34548,358.1363802368655,1616598,0,57972,0,0,0,0,0,55,0.5739030625554339,0,0.0,0,0.0,0,0.0,0.06089,0.1590398579115081,0.3016915749712596,0.01837,0.3333333333333333,0.6666666666666666,24.852475919966285,4.301324114091583,0.3315921437526118,0.2273297116590054,0.2185541161721688,0.2225240284162139,10.991196771391504,5.686833744309062,19.55525217983712,12225.665880415094,54.21904628354525,13.109645307885918,17.884416760567547,11.56342066054278,11.661563554549,0.5547430004178855,0.7757352941176471,0.6912413358538122,0.5736137667304015,0.1070422535211267,0.7069096431283219,0.906818181818182,0.8719211822660099,0.683982683982684,0.0833333333333333,0.4969731911213606,0.6867283950617284,0.6291278577476714,0.5423312883435583,0.1139393939393939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409265392523,0.0049775452895795,0.0071957049050552,0.0095808018206571,0.0116562919565482,0.0138071479482741,0.0155337430816744,0.0179304010613327,0.020287188921253,0.0225649317423606,0.0246979370561288,0.0267682106970203,0.0289102886917914,0.0311789107453499,0.0331418790022376,0.0353560915147446,0.037456283757217,0.0396044735123705,0.0415446597304425,0.0437565036420395,0.0587903949262512,0.0725455761833082,0.0857562100408762,0.0984681333921704,0.1104018539000368,0.1259730246411559,0.1370513200830614,0.1484453893170342,0.1597401489130203,0.1698907455012853,0.1818866219980426,0.1945662741708977,0.206231679513625,0.2161858292126491,0.2261649808353376,0.236878475946176,0.2461761265526653,0.2554646957068721,0.2644659930218859,0.2715051612386973,0.2792156047534906,0.28619104296483,0.2925130723197318,0.2972440003824457,0.3025300664914554,0.3075534266764922,0.3122270742358078,0.3168640779161488,0.3213027146342408,0.3256753378333925,0.3246639784946236,0.3237819200813198,0.3228977680266655,0.3219281909134219,0.3210787223937307,0.3186074980872226,0.3157219759341355,0.316384830077163,0.3174991447143346,0.3182565495550234,0.3178149403546882,0.3190568424381374,0.3199470432480141,0.3211050318414207,0.3219692396841876,0.3238222501703086,0.3260782519162567,0.3293805979563517,0.3333450878059101,0.3380882177152647,0.3416506717850288,0.3451205267070192,0.348277816258422,0.3497076911396249,0.3545831761599397,0.3548807970584747,0.3590449954086318,0.3639668753787113,0.3714599945009623,0.3726755218216319,0.0,1.65394194317411,58.28842528862832,173.62620110326458,262.49538014274765,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95770,45043,426.73070899028926,6005,61.47018899446591,4741,48.99237757126449,1850,19.035188472381748,77.37657405990127,79.72117849260036,63.3458979718325,65.07902962703136,77.14699256364577,79.49077249124767,63.26052771280178,64.99547397730163,0.2295814962555056,230.40600135269077,0.0853702590307179,83.55564972973184,151.86864,106.91413977785344,158576.4226793359,111636.35770894166,386.45507,253.63878808385,402964.91594445024,264282.36199629324,376.71359,182.86729292501917,389747.2799415266,188260.8051175345,2721.78616,1254.8442705285047,2814727.743552261,1282993.4953832154,1135.26199,508.26820947836046,1172015.2657408374,517342.7612997047,1824.83942,770.08324578297,1878793.6723399807,780909.8222315782,0.38057,100000,0,690312,7208.019212697087,0,0.0,0,0.0,33279,346.90404093139813,0,0.0,34409,355.6332880860395,1615096,0,57879,0,0,0,0,0,70,0.7309178239532212,0,0.0,0,0.0,0,0.0,0.06005,0.15778963134246,0.3080766028309742,0.0185,0.3365521608358398,0.6634478391641602,24.651700412549168,4.381276511424972,0.3244041341489137,0.2345496730647542,0.2111368909512761,0.2299093018350559,11.03479319122001,5.689824599743607,19.56605136718659,12197.883187098412,53.61975790961795,13.256689373602866,17.26509341545751,11.072090594714288,12.025884525843278,0.5652815861632567,0.7913669064748201,0.7002600780234071,0.5964035964035964,0.1155963302752293,0.7321711568938193,0.9407407407407408,0.8788659793814433,0.7359307359307359,0.134453781512605,0.5047427421672894,0.7057991513437057,0.64,0.5545454545454546,0.1103286384976525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903575407677,0.004956968646413,0.0071835873292883,0.0092953797391198,0.0114616385973476,0.0135029174855653,0.0157538925880229,0.0178870421039735,0.020394810824073,0.0225609319179863,0.0246084781895703,0.0265343201157861,0.0285176770532419,0.030566111574546,0.0326717147750015,0.0346157026501839,0.0366347398395029,0.0387974854250088,0.0409177382969654,0.0428230736386074,0.0574347948608226,0.0716676078726652,0.0849966454209996,0.0980946475676016,0.1103335616799283,0.1260504201680672,0.1380012298818889,0.1488358729888482,0.1597351276300331,0.1700393569904235,0.1822441483460258,0.1946374082970849,0.2057965968928151,0.2164936045430175,0.2264690988352892,0.2359428514425688,0.2451151157857126,0.2541440194456635,0.2627774499568789,0.2700022899015342,0.2770221821293919,0.2840861270865479,0.2902089220473651,0.2965397509578544,0.301655150639352,0.3073236834000616,0.3119119319246773,0.3156036475399426,0.3207471561530506,0.326006457139092,0.3251471101915791,0.3235382967621454,0.3220951149586823,0.3215542606588588,0.3207452090527782,0.3189495727671543,0.3176000252828519,0.3180069099900116,0.318033010503342,0.3185637483533307,0.3196908451231379,0.3208298820652388,0.3222735926026652,0.3248752450543575,0.3259732155714491,0.3257490953583422,0.3256759446166093,0.3292824255332477,0.3323996918983264,0.335407665781442,0.3380846122318867,0.3406412570336554,0.3442365645404319,0.3471463266545234,0.3486135748296144,0.3484937979917306,0.3558132438205676,0.3592934564431955,0.3661053775122216,0.376275028333963,0.0,1.9087064841365309,55.53072812014705,177.23646060623102,259.9250549478192,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95759,45115,427.5525015925396,5977,61.24750676176652,4670,48.25656074102695,1817,18.661431301496464,77.3313489084019,79.69731248071407,63.31030609897547,65.0630525729087,77.10855576038796,79.475141133921,63.22838792030724,64.9838471909182,0.2227931480139489,222.1713467930755,0.0819181786682321,79.20538199050497,152.00328,107.0030151044182,158735.2415960902,111741.99302876824,384.83229,252.42110616269684,401403.982915444,263128.5374353292,376.60006,182.9498005554127,389758.926053948,188444.9858014767,2672.98712,1224.319592051559,2762947.6498292587,1250482.359179302,1116.60724,488.19134055771536,1153917.8040706357,497797.0431416296,1788.03582,742.4950635158519,1837800.2067690769,749420.8761123206,0.38103,100000,0,690924,7215.238254367736,0,0.0,0,0.0,33158,345.7534017690243,0,0.0,34430,356.0814127131653,1612793,0,57861,0,0,0,0,0,72,0.7518875510395889,0,0.0,2,0.0208857653066552,0,0.0,0.05977,0.1568642889011364,0.3039986615358875,0.01817,0.3249482566470307,0.6750517433529692,24.72305075071645,4.336919018835252,0.3132762312633833,0.2389721627408993,0.223340471092077,0.2244111349036402,11.22439744884482,5.797727428080539,19.241063548841023,12222.701577860453,53.07932245697804,13.368317676314408,16.572353721494128,11.698903934376805,11.439747124792694,0.5717344753747323,0.7894265232974911,0.7108680792891319,0.6088207094918504,0.1087786259541984,0.74481658692185,0.930622009569378,0.8740359897172236,0.7553648068669528,0.1355140186915887,0.5081967213114754,0.7048710601719198,0.6517690875232774,0.5666666666666667,0.1019184652278177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022391310955531,0.0045225468225559,0.0068612027404212,0.0090530380004064,0.0115058292132088,0.0137181615423002,0.015825269447645,0.018256634366991,0.0201904489153003,0.0221951369400004,0.0242246471939612,0.0263217375223457,0.0287019789854997,0.0307330798008842,0.0329269929088262,0.0349405937522619,0.0369258170069999,0.0389652166694338,0.0409870999261961,0.0428080408290803,0.057936217965447,0.0718987076858682,0.0853579221215172,0.0981629283783925,0.1105394120872169,0.1263987308302485,0.138544308498785,0.149342280449486,0.1606587511087837,0.1699107257822224,0.1828508611212898,0.1944901672009009,0.2065793627466988,0.2162895828544533,0.2259531227637532,0.2353651912695509,0.2453605484713816,0.2543835955612578,0.2630999659593782,0.2706390486446853,0.277833709425447,0.2846272710245364,0.2914203111485005,0.2962931841644059,0.3020127698388568,0.30778716320365,0.3124264650662127,0.3177774666887257,0.3224853221353863,0.3267621988230016,0.3262634832141559,0.3245930040699593,0.3239953849617289,0.3230256417656311,0.3221833595162581,0.320912396492193,0.3184745548680389,0.3189701763867734,0.319610318706067,0.3206246883681173,0.3216235417289859,0.3239128291095552,0.3228308592933305,0.3233810862676842,0.3240389691414311,0.3260999661749018,0.326962399182097,0.3309262166405023,0.3317390539827677,0.3336914567665433,0.3375842594279468,0.3388403494837172,0.3408277334673114,0.3419335255729245,0.345610119047619,0.3505813953488372,0.3519402985074626,0.3523417597491671,0.3487372380440623,0.355020684467845,0.0,2.030871820618956,55.22268529462404,179.1503679011281,250.2888559379116,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95499,44811,425.20864092817726,6084,62.4404444025592,4790,49.66544152294789,1879,19.371930596131897,77.22623088476638,79.71392549631472,63.24095407219974,65.07632272863361,76.98652169284577,79.4724231550789,63.15185717717802,64.98866244806084,0.2397091919206104,241.5023412358153,0.0890968950217185,87.66028057277708,151.4062,106.51974180751635,158542.18368778733,111540.1646169241,388.94834,255.5784010188575,406755.5367071906,267109.7863338311,375.44776,182.64917688267235,390153.8236002471,188920.3227714468,2754.13032,1269.819555411336,2856154.640362726,1302448.805544591,1153.24799,509.1407180942732,1196966.9106482791,522745.2029516439,1841.8474,777.3982895522222,1900193.0700845036,790019.5052980566,0.37896,100000,0,688210,7206.462894899423,0,0.0,0,0.0,33479,350.0141362736783,0,0.0,34392,357.1136870543147,1607064,0,57736,0,0,0,0,0,68,0.7120493408307941,0,0.0,1,0.0104713138357469,0,0.0,0.06084,0.1605446485117162,0.3088428665351742,0.01879,0.3275726630007855,0.6724273369992144,24.581674059879656,4.409018748890258,0.3288100208768267,0.230062630480167,0.2177453027139874,0.2233820459290187,11.343264085984613,5.896030736176916,20.123427710745997,12194.57305762614,54.57630000993242,13.195248425141026,18.05673600772972,11.40653517639249,11.91778040066918,0.5632567849686848,0.7967332123411979,0.7066666666666667,0.5560882070949185,0.1186915887850467,0.7276295133437991,0.9263959390862944,0.8668280871670703,0.7577092511013216,0.1333333333333333,0.5036973833902162,0.7245762711864406,0.6497418244406197,0.5,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0045949263087425,0.0067313744999695,0.0090188103711235,0.0112294347613617,0.0134637924884064,0.0156940376942621,0.0178202848793247,0.0200313053086028,0.0222331509600213,0.0245216784365248,0.0266399341969977,0.02876001400416,0.0307359084111185,0.0327120185154571,0.0346430605166433,0.0368149707990581,0.0388453462505977,0.0410888974548636,0.0431350436989004,0.0583648220061337,0.0724949379439134,0.0851788756388415,0.0974684344765076,0.1098852323885612,0.1248396841380041,0.1371112646855563,0.1493609030578494,0.1603902919692393,0.1705290538942752,0.1824856134138046,0.1936914950158905,0.2050722899448284,0.2159637794757671,0.2254352479092654,0.2357765134678638,0.2448395072778331,0.2546506121896773,0.262827439516817,0.2713844670668304,0.2789408367065264,0.2859588639508431,0.2926288060374493,0.2971595485088531,0.302290709156741,0.3076218871005653,0.3128927655723694,0.3172546012269938,0.3209842842101158,0.3250427112718026,0.3236148845004933,0.323222291192496,0.3220114066293975,0.321420820371844,0.3203449662630144,0.3184548037785116,0.3154892426987002,0.3165554182117841,0.3172677670635874,0.3178682149705213,0.3186342636066559,0.3201204413541728,0.3199722985876477,0.3215365662448202,0.3223309373272111,0.3229557780559032,0.324953683910503,0.3287580670549346,0.3335209285965529,0.3353357733927434,0.3385895150601033,0.341086506292815,0.3437441204139229,0.3479673568082213,0.3471488178025034,0.3446301273810915,0.3469107551487414,0.3427115188583078,0.3443344334433443,0.3471957268218237,0.0,1.824471597329245,56.31890099185618,184.84804103879387,259.7589931375954,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95706,44780,424.63377426702607,6150,63.07859486343594,4822,49.76699475476981,1942,19.90470816876685,77.36399481233721,79.74739677636533,63.33329461681414,65.09662455306012,77.11666557727531,79.50180957558128,63.24060627451463,65.00727892356608,0.2473292350618976,245.58720078405827,0.0926883422995104,89.34562949404778,152.174,106.97174361301774,159001.06576390195,111770.83438760148,387.93948,254.56945426436525,404733.4127431927,265383.4792798184,369.97002,179.62715201356843,382735.47113033663,184734.4105481417,2807.2482,1295.0337729442688,2899539.673583684,1320001.3876300412,1136.81567,507.0291824202726,1169735.0113890455,512257.94948856,1906.84366,804.0562794110881,1956162.581238376,808636.9137633478,0.38111,100000,0,691700,7227.321171086452,0,0.0,0,0.0,33554,349.9467118049025,0,0.0,33833,349.58100850521384,1615256,0,57937,0,0,0,0,0,70,0.7314065993772595,0,0.0,0,0.0,0,0.0,0.0615,0.1613707328592794,0.3157723577235772,0.01942,0.3334888059701492,0.6665111940298507,24.514361503496303,4.422265994098317,0.3255910410618001,0.2320613853172957,0.2111157196184156,0.2312318540024886,11.006669246326632,5.539674557564002,20.665143392625936,12222.656088242382,54.66592188060575,13.439645591951937,17.805377346274692,11.22573476421675,12.19516417816236,0.5607631688096225,0.7944593386952636,0.7,0.5805500982318271,0.1121076233183856,0.7297090352220521,0.9130434782608696,0.847457627118644,0.7529880478087649,0.1578947368421052,0.498009101251422,0.724822695035461,0.6473638720829732,0.5241199478487614,0.1003382187147688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0044925816625594,0.0067712986274669,0.0090452669878244,0.0111113372270497,0.0130916722701061,0.0152699008527479,0.0174026716777646,0.0197498286848107,0.0217593872556548,0.0239247697766474,0.0260863313785701,0.0283583624768566,0.0304891242748657,0.0324468249791015,0.0345843672456575,0.0365651543401698,0.0385289875374861,0.0405488280234915,0.0425487581263543,0.0568423910773215,0.0701688280424111,0.0833656822116141,0.0960308779605401,0.1083422933400796,0.1237972381415611,0.1359350973010233,0.1486477860288954,0.159112990188228,0.1686227852985626,0.1816401205337925,0.1934402111594297,0.2057352269514343,0.2159129436211516,0.2264065834928598,0.236624147400124,0.2461622562363336,0.2550331796198403,0.2635879742597405,0.2720047639770046,0.2786177855415833,0.2855238228896218,0.2922714464991831,0.2980197545070963,0.3031900677859034,0.3079860084737412,0.3122513822521328,0.3169776783444348,0.3221079857743291,0.3271287806934345,0.3265629830763647,0.3252146438629026,0.3245732444669422,0.3235663276347111,0.3225863832436519,0.3213206337576701,0.3203797747847207,0.3210025816149799,0.3219874804381846,0.32327639945144,0.3244826166685378,0.324145143150293,0.3258920173073305,0.3263023687565705,0.3280117155615307,0.3292963040300689,0.3310203032639424,0.3331657501963865,0.3367415059203822,0.3390328083468877,0.3405164575377341,0.3447545411216438,0.3493595810461228,0.3539964882815482,0.3550738356683074,0.3555900621118012,0.3590895013936203,0.3557929334428923,0.3617259736620902,0.3694117647058823,0.0,2.4013484661171733,57.018095226304325,178.69474828820594,263.8324937268445,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95673,45142,427.3201425689588,6116,62.75542734104711,4768,49.29290395409363,1896,19.451673930994115,77.31725194233033,79.72692609910214,63.30264576078415,65.08549324747152,77.08492854642517,79.49418379758076,63.21615340811941,65.00135055552371,0.2323233959051549,232.7423015213839,0.0864923526647416,84.14269194780388,152.43426,107.34841795029683,159328.1699120964,112203.23868834136,388.92401,254.82581310707235,405968.1205773834,265805.3543915968,374.35409,182.10970714141672,387924.2314968695,187741.00654677724,2746.70624,1260.6161854861969,2841410.429274717,1288134.1083547042,1150.19169,510.1035876118517,1192657.4686693216,523620.1202134888,1866.14808,783.6152092376697,1916774.45047192,790714.2668412412,0.38334,100000,0,692883,7242.189541458928,0,0.0,0,0.0,33546,350.0569648699215,0,0.0,34333,355.5130496587334,1609641,0,57739,0,0,0,0,0,57,0.5957793734909536,0,0.0,0,0.0,0,0.0,0.06116,0.1595450513904106,0.3100065402223675,0.01896,0.337640099626401,0.662359900373599,24.540841083362427,4.424272207019638,0.3248741610738255,0.2202181208053691,0.2296560402684563,0.2252516778523489,11.0714994717651,5.576939186548806,20.27096379822907,12301.232869345997,53.97801923986978,12.506133364835556,17.371071721627484,12.230680364050226,11.870133789356515,0.55998322147651,0.7914285714285715,0.6849580374435119,0.5917808219178082,0.1210428305400372,0.7297507788161994,0.917948717948718,0.8553921568627451,0.7586206896551724,0.1422222222222222,0.4974167623421355,0.7166666666666667,0.6240140227870289,0.539568345323741,0.1154299175500589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0045429194341631,0.0066776946730669,0.0089321098679998,0.0114666531006766,0.0138025873484771,0.0160161589782302,0.0184292252370055,0.0206257289599148,0.0226418187220178,0.0249615266235764,0.0272816950615507,0.0294608115619788,0.0315586531125636,0.0335863671572424,0.0353746986580583,0.0374639769452449,0.0395256096041208,0.0416701348426835,0.0436069846234037,0.0583847037927071,0.0726044612001256,0.0852964642647182,0.0982492319346828,0.1107266435986159,0.1269789197426346,0.1389469662396655,0.1507332190285513,0.1612999754197347,0.1718999753263889,0.1841184010685395,0.1969236098331908,0.2086407661334204,0.2190431365681198,0.2285969182646239,0.2392969156941627,0.248817228297255,0.2585506855169776,0.2666613737410398,0.2739032878468724,0.2801527159136924,0.2864560188974904,0.2922348484848485,0.2977109300095877,0.3033683289588801,0.3084739074676926,0.3128121674907679,0.3174330598486294,0.3219125775010679,0.3262027151706867,0.3261565357719204,0.3253867927120833,0.3253430435271623,0.3236554640038095,0.3222651605231866,0.320464267643857,0.3184480466029253,0.3191740800315136,0.3195549032324128,0.3208435087969482,0.3213750748951468,0.3227271829511564,0.3245102563026972,0.3256193907925069,0.3269740967633013,0.3279437885278445,0.3298454695786052,0.3332182103610675,0.3354266067920292,0.3385889157390168,0.3424420458168238,0.3427070621319042,0.3453377825347856,0.3485979884181652,0.3511027686532144,0.3560837844198635,0.3596638655462185,0.3611223253936213,0.3630247578040904,0.3647940074906367,0.0,2.1310444399705704,56.4370361125809,173.3596806566135,265.4037532119708,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95864,44688,422.8594675790703,5993,61.37861971125761,4669,48.21413669364934,1850,18.96436618542936,77.4717338221379,79.75685813099543,63.40399372213196,65.08993795859371,77.23796772084368,79.52326210618172,63.31661239973688,65.00491515419338,0.233766101294222,233.596024813707,0.0873813223950747,85.0228044003245,151.82024,106.68601842370016,158370.4414587332,111288.92850673888,381.39693,249.99424244991627,397374.7079195527,260302.72307635425,364.69723,177.50299144329026,377184.02111324377,182734.5774796408,2678.90976,1228.2855256369842,2767856.212968372,1254645.5871202787,1130.10686,495.8220497871623,1166137.809813903,504487.1273754091,1807.94548,765.4981710371954,1855493.1569723776,772568.9126850439,0.38038,100000,0,690092,7198.656429942418,0,0.0,0,0.0,32950,343.2153884669949,0,0.0,33356,344.66535925895016,1623737,0,58234,0,0,0,0,0,70,0.7302011182508553,0,0.0,0,0.0,0,0.0,0.05993,0.157552973342447,0.3086934757216752,0.0185,0.3302244704394562,0.6697755295605438,24.735843271228955,4.425493150903214,0.3077746840865281,0.2409509530948811,0.2287427714714071,0.2225315913471835,11.197965599105896,5.713046705275548,19.721432429729653,12147.963966336236,52.55730798382815,13.371439410598516,16.115143258714685,11.795088943486068,11.275636371028886,0.5585778539301778,0.7715555555555556,0.6889352818371608,0.5805243445692884,0.1251203079884504,0.7146282973621103,0.9111111111111112,0.8526315789473684,0.6869918699186992,0.1454545454545454,0.5014628437682855,0.6930555555555555,0.630085146641438,0.5486618004866181,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021560886729426,0.0046094153640425,0.0069358534953051,0.0091352009744214,0.0112694089911389,0.0135521483003856,0.015667019802787,0.0179418394720468,0.0201785021342646,0.0221610897488341,0.0242730875981933,0.0262342830184809,0.0283630386768709,0.030393760739163,0.0322224856462535,0.0345212156259358,0.0368347556245151,0.0387604933153694,0.0407641989409199,0.0425204224985691,0.05675644675238,0.07143081152845,0.0851576663907024,0.0977649815587335,0.1094456566423173,0.1246405311680622,0.1362918190976088,0.148565410270322,0.1589247013355824,0.1682206932030094,0.1815530637281277,0.1936836644257582,0.2052863627478661,0.2154539896056252,0.2248349789673692,0.2346587956974983,0.2442298266720135,0.2529249287013541,0.2616903928696814,0.2695935517063968,0.2760488238622585,0.2827826776797797,0.2897614548889938,0.2957913243155968,0.3012168047653132,0.3061357622007508,0.3114356751083846,0.316257333705839,0.3203370336387485,0.324900956868526,0.3236942178744675,0.3225028104521401,0.3215544230580241,0.32053773191128,0.3197513505513209,0.3186240126864078,0.3165426806203505,0.3159958821510858,0.3180759751848389,0.3188562706329204,0.3194074350135097,0.3199937132865759,0.3208140649085531,0.321925418907507,0.3239971346704871,0.3248872998600964,0.325035360678925,0.3286146362757631,0.3315196673020273,0.3338557993730408,0.3347543190486874,0.334700746818134,0.338716744913928,0.3414152162347039,0.3415944214097248,0.3462360484445499,0.3477996965098634,0.3482338854520055,0.3528617710583153,0.3545351900639819,0.0,1.9477440732687843,54.90347920267163,167.5755164112462,260.96372606694456,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95732,44570,422.7739940667697,5910,60.42911461162412,4633,47.71654201311996,1821,18.56223624284461,77.34438518034166,79.69773467077299,63.33412346583962,65.07250365393628,77.11281940831246,79.470615163133,63.24784804342191,64.99129291153646,0.2315657720291994,227.11950763998345,0.0862754224177067,81.21074239981851,153.07974,107.68143344507864,159904.4624576944,112482.1725703826,387.59658,254.81134726976651,404184.7553587097,265479.58600025746,371.35001,180.9088928534925,384117.5886850792,186083.4477726665,2668.52144,1235.596730371128,2748275.519157649,1252005.0370176116,1127.71931,499.99188287914194,1160287.072243346,504671.7528893964,1794.02176,759.4278743262018,1830212.4681402247,754551.8634436262,0.37708,100000,0,695817,7268.384657167927,0,0.0,0,0.0,33522,349.42339029791503,0,0.0,33946,350.7917937575732,1606560,0,57716,0,0,0,0,0,60,0.626749676179334,0,0.0,1,0.0104458279363222,0,0.0,0.0591,0.1567306672324175,0.3081218274111675,0.01821,0.3392568659127625,0.6607431340872375,24.24379385632358,4.386374860235764,0.3166414849989208,0.2294409669760414,0.2253399525145694,0.2285775955104683,10.960702138989658,5.553903366988505,19.464018404022383,11993.607654631074,52.6634438586597,12.791468731952502,16.73345185049911,11.58322574640623,11.555297529801864,0.5523418951003669,0.786453433678269,0.7048398091342877,0.5459770114942529,0.1123701605288007,0.716,0.8982630272952854,0.8549618320610687,0.7056451612903226,0.1067961165048543,0.4918711203074195,0.7181818181818181,0.6499068901303539,0.4962311557788945,0.1137162954279015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019650743486892,0.0043190412944957,0.0067776661695025,0.0090084600306714,0.0113162657339813,0.0136104974906599,0.0155928334114673,0.017613143527731,0.0197607054183568,0.0216924178860124,0.0237314533978194,0.025936303640525,0.0281519258055892,0.0299897013388259,0.0317628975520183,0.0338748346560846,0.0357623434427077,0.0377702877884366,0.040055707990355,0.0419162300392704,0.0562109790983692,0.0703281982585398,0.0836217928545954,0.0961255311093349,0.1078923501993124,0.1235261148652221,0.1348791327683316,0.1457147417141033,0.1564819858792365,0.1664182864984829,0.1791131541268799,0.1910932750657133,0.2028550615914848,0.2131224587942115,0.2232632817568979,0.2331100902197376,0.2423620254859514,0.2511555200683753,0.2595491724239639,0.2667201007614359,0.2749282805848602,0.2812255068259186,0.2874554770610719,0.2928286135799359,0.2983185109588375,0.3028456538096236,0.3074282421038125,0.3115564445237155,0.3155971387103463,0.3193228485784838,0.3183084938810129,0.3172465960665658,0.3167554015606073,0.3156913740788903,0.3144207335195862,0.3123946166344768,0.3101130364475165,0.3108791280940188,0.311649042485949,0.3130666000428296,0.3136421509886159,0.3144847731264926,0.3152321761148429,0.3156141723482731,0.3174064717911704,0.3189327218719058,0.3186052474147509,0.3227593152064451,0.3249034070951879,0.3289442278622007,0.3323172118840711,0.3362563775510204,0.3395881871418676,0.3427102238354507,0.3444684245097119,0.3436024551463645,0.348698315467075,0.3470225872689938,0.3540166204986149,0.3504835589941973,0.0,2.5637704377431074,54.14853213035635,176.2347203480817,250.6951501326429,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95665,45035,426.5509852088016,6161,63.0220038676632,4812,49.66288611299848,1853,18.96200282234882,77.28108161739658,79.66698108097467,63.29287913429015,65.05516065236571,77.04791948113099,79.43807449482243,63.2044920813638,64.9712904790805,0.2331621362655909,228.90658615223455,0.0883870529263575,83.87017328522006,151.81232,106.78116598198262,158691.60089897036,111619.8881325277,384.85959,252.61288385696955,401671.1545497308,263431.77113570226,372.52148,181.9880853660564,385300.3501803167,187118.0906764277,2751.74476,1266.0472084766088,2841921.9986410914,1288900.9862296642,1127.84419,504.3238575402548,1163409.721423718,511634.9527416028,1807.24736,769.3239773217095,1851064.736319448,770089.6060447803,0.38206,100000,0,690056,7213.254586316834,0,0.0,0,0.0,33221,346.61579470025606,0,0.0,34080,352.2500391992892,1611371,0,57842,0,0,0,0,0,73,0.7421732085924841,0,0.0,0,0.0,0,0.0,0.06161,0.1612573941265769,0.300762863171563,0.01853,0.3357630272952853,0.6642369727047146,24.631022158645536,4.3785326717750905,0.3150457190357439,0.240648379052369,0.2300498753117207,0.2142560266001662,11.252374088333983,5.8458115391722725,19.780195247286933,12264.60965017632,54.47487228451212,13.705895734805452,17.22169228221929,12.296778421908035,11.25050584557934,0.5656691604322527,0.7823834196891192,0.691952506596306,0.5772357723577236,0.1241513094083414,0.7236641221374046,0.9367396593673966,0.853904282115869,0.7180451127819549,0.1398305084745762,0.5065676756139349,0.6974564926372155,0.6344950848972297,0.5326991676575505,0.1194968553459119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0048256774703717,0.0069618518931974,0.0091637797035486,0.0112788072330817,0.0135636022972587,0.0159981238656524,0.0180197655899048,0.0203731152568361,0.0227740304404343,0.0250689524356358,0.0272085095897162,0.0294940353763883,0.0315281899109792,0.0333670478470874,0.0352988616272216,0.0372288632455613,0.039398436932402,0.0413589364844904,0.0432140586402059,0.0574315147209394,0.0711114368887306,0.0843349464115133,0.0977313860010943,0.1102494302355026,0.1251269572577232,0.1369576525791692,0.14831384077885,0.1592600513259195,0.1696376796031013,0.1825732407127756,0.194940605219804,0.205877547463701,0.2164441475088441,0.2266991414748118,0.2368132050983394,0.2474677459025557,0.2572590731372041,0.2650959800879675,0.2728252890438613,0.2788902795160617,0.2861362464250551,0.2925316125358829,0.2985621448906293,0.3039245512625494,0.3086380131829067,0.3130867478034168,0.318075177232621,0.3232813432642151,0.326894836413669,0.3264173866090712,0.3259951998675826,0.3252473847893695,0.3237233842095345,0.3225849731663685,0.3209143102760124,0.3192579085070958,0.319768302917606,0.3201376641610876,0.3210966542750929,0.3227647312796831,0.3247559717482739,0.3253166687707781,0.3274409829069428,0.3286652501448715,0.3294440093970243,0.3299822927971668,0.3341948498124625,0.3367715679051328,0.3392121116043119,0.3399372926796019,0.3414194915254237,0.3454431175361407,0.346812523576009,0.3476434904339711,0.3466635666124157,0.3452833054838219,0.352,0.3536388140161725,0.3519230769230769,0.0,2.52172860076258,57.19068831910735,175.82025045413698,263.8060242085831,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95722,44854,424.4060926432795,6156,63.15162658532,4874,50.291469045778406,1893,19.29545976891415,77.3612597271838,79.72483619604883,63.34108899169471,65.08816989593812,77.1261900286957,79.49594034939744,63.25372514175754,65.00643747073897,0.235069698488104,228.8958466513833,0.0873638499371693,81.73242519914936,151.37122,106.42417215420174,158136.06067570674,111180.25653057998,385.68699,252.9937252146255,402311.9241135789,263692.2363714833,370.71712,179.92788210926983,383683.6359457596,185112.44527432777,2796.61356,1273.4302299573676,2888124.778002967,1297036.0651582736,1137.0209,497.607505553698,1171055.8283362235,503089.1893314236,1858.64522,779.604536731611,1898039.405779236,776842.2409177357,0.38109,100000,0,688051,7188.00275798667,0,0.0,0,0.0,33310,347.3391696788617,0,0.0,34008,351.72687574434303,1620452,0,58101,0,0,0,0,0,48,0.4910052025657634,0,0.0,0,0.0,0,0.0,0.06156,0.1615366448870345,0.307504873294347,0.01893,0.324124093224263,0.675875906775737,24.72535439721853,4.360518132357419,0.3286828067295855,0.2332786212556422,0.2197373820270824,0.2183011899876897,11.177557723016744,5.702145256110449,20.192795668700217,12282.775539664732,55.01397216646444,13.483250544618716,18.0322435741446,11.832199131556942,11.666278916144178,0.5560114895363152,0.7704485488126649,0.6885143570536829,0.5788982259570495,0.1043233082706766,0.7282091917591125,0.9022556390977444,0.8463476070528967,0.7490196078431373,0.1516587677725118,0.4958471760797342,0.6991869918699187,0.6365145228215767,0.5257352941176471,0.0926143024618991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045421364263119,0.006788983377646,0.0088488382724954,0.0109630834943557,0.013431498340156,0.0156527236758917,0.0178077296165824,0.0199883443925281,0.0221744471744471,0.0244019972727179,0.0265803933651722,0.0289825261490676,0.0310694013783441,0.0332174146346497,0.0353254970071023,0.0374462797079687,0.0394238452518082,0.041636337166982,0.0434710123786104,0.057618411160304,0.0716065148216379,0.085032729103726,0.0977297342769114,0.1102901651612087,0.1261641243564942,0.1383398371224974,0.1501681065667957,0.1608655253067894,0.1712276639761606,0.1838677031071682,0.1964218109444126,0.2075664510518019,0.2171237443571217,0.2268015170670038,0.2369696567293008,0.2465325781563573,0.2555144786668614,0.2643714645233695,0.2716192089360923,0.2791014925028035,0.2856558669922537,0.2922944112012487,0.2984329546406809,0.3048897295069048,0.3109105219145063,0.3150058704504009,0.3192908882958444,0.3239332720754765,0.3281173723167047,0.3269649920619971,0.3259865889853798,0.3248156694996341,0.3236912412448552,0.3222826248403291,0.3213006337834114,0.3197824265136062,0.3207927608930854,0.3225459939640914,0.3233971957615327,0.3241770587574429,0.3244580817578937,0.3256418862225205,0.3262036871308394,0.3270332739442385,0.3284728755095641,0.3294733230399725,0.3321338383838383,0.3334153976013786,0.3370084381467919,0.3408324984060479,0.3434375495953023,0.3472109184248419,0.3484193768478508,0.3494493186484973,0.3534472598703594,0.3608231707317073,0.3665653495440729,0.3654978962131837,0.3712,0.0,2.405053390257059,55.124808773840925,180.62535783523268,274.5206542702648,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95647,44666,423.9861156126172,6019,61.62242412203205,4715,48.66854161656926,1867,19.070122429349585,77.2430810454354,79.6480131964734,63.27207635196621,65.0502832093376,77.00726625105007,79.41659536946048,63.18258717850508,64.965403402617,0.2358147943853339,231.41782701291905,0.089489173461132,84.87980672060758,150.25494,105.72457844255192,157093.20731439564,110536.22010366444,385.32275,253.07715986069496,402211.91464447393,263956.46557271737,369.497,180.10619684673276,383172.4466005207,185776.13807810112,2708.01404,1252.1861786975874,2796560.6866916893,1274975.186011943,1137.865,511.4146999670216,1172515.583342917,517554.8422501704,1838.4351,785.0044801551874,1880578.1258168053,785248.2781154596,0.37901,100000,0,682977,7140.600332472529,0,0.0,0,0.0,33210,346.5451085763275,0,0.0,33824,350.4866854161657,1618391,0,58063,0,0,0,0,0,69,0.7109475467082083,0,0.0,1,0.010455110981003,0,0.0,0.06019,0.1588084747104298,0.3101844160159495,0.01867,0.323473584308763,0.676526415691237,24.46791041275344,4.439486731935662,0.3230116648992577,0.2303287380699894,0.2150583244962884,0.2316012725344644,11.095914951582206,5.544662695922298,20.114928846431063,12119.804880857224,53.6588770878733,13.0113634279754,17.306016052683088,11.25117887203992,12.090318735174892,0.5465535524920466,0.7799263351749539,0.6749835850295469,0.5769230769230769,0.1071428571428571,0.7370855821125675,0.9254807692307692,0.8663366336633663,0.7584745762711864,0.1742738589211618,0.4742539496781743,0.6895522388059702,0.6058981233243967,0.5218508997429306,0.0881316098707403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026451272904167,0.0049297060434544,0.0073195740231261,0.0096526077281825,0.0118905943262844,0.0139925658129232,0.0160999235279123,0.0181649240320209,0.0204208933246073,0.0223237143383783,0.0244385191262434,0.0264441591784338,0.0286210868402649,0.0304225990563122,0.0325350949628406,0.034630020267196,0.0365678058280588,0.0385801027557216,0.0404518457649861,0.0422027148189078,0.0569007137408169,0.070945981333864,0.0843167310599697,0.0968896373875059,0.1094183849069352,0.1250198519836102,0.1367417843368501,0.1478484305697714,0.1583841626538255,0.1684997422237497,0.1816317941966742,0.1931871157995164,0.2043332861297807,0.2141018478963337,0.2232400731970809,0.2332523275297668,0.2424544021113136,0.2516290500777886,0.2601621394217103,0.2680551891823697,0.2759599893366714,0.282856674396271,0.2893069095819661,0.2940202524355713,0.3010135176240129,0.3070342205323194,0.3114468405215647,0.3157377885473791,0.3206657924462159,0.3247777307366638,0.32354646850176,0.3217272689695082,0.321049882107106,0.3190607934875502,0.318014514134144,0.3157733067117186,0.3146247696511406,0.3157695223654284,0.3160654614000514,0.3166744344459183,0.317702249519575,0.3185161623792295,0.3195633426582251,0.320101484092593,0.3220187691491158,0.3228519770458297,0.3236222732491389,0.3276814751665561,0.3296315882249251,0.3349469893978796,0.3367773338843734,0.3394946311234574,0.3414742170199304,0.3420207887496178,0.3422302431610942,0.3447496729694375,0.3414558435511408,0.3442924239330202,0.346831955922865,0.3514033064206074,0.0,2.349123431961768,56.69224230146092,174.91780342916573,256.4604791559604,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95811,45006,426.66290926929054,6067,62.25798707872791,4764,49.07578461763263,1875,19.089666113494275,77.44904619750217,79.77575490812161,63.38601454967061,65.10708223342363,77.2234937483739,79.55459144737054,63.30282509697216,65.02855261094405,0.2255524491282727,221.1634607510717,0.0831894526984555,78.52962247957862,150.9596,106.24874890413253,157559.77914853202,110894.1028735036,388.03188,254.36299979451928,404352.55868324096,264839.4754198571,375.34824,182.1532215483878,387979.12557013286,187145.45611480385,2718.20264,1236.8694265117165,2801922.618488482,1255823.3047475934,1126.07936,491.70778985044734,1160541.065222156,498433.82268262224,1827.9611,754.6954259619184,1863782.425817495,751131.9935518628,0.38039,100000,0,686180,7161.80814311509,0,0.0,0,0.0,33397,347.89324816565943,0,0.0,34271,353.9050839673941,1624040,0,58229,0,0,0,0,0,80,0.8245399797518029,0,0.0,1,0.0104372149335671,0,0.0,0.06067,0.1594942033176477,0.3090489533542113,0.01875,0.3274972643426606,0.6725027356573394,24.639745858557983,4.406858071825578,0.3217884130982368,0.2371956339210747,0.2319479429051217,0.2090680100755667,11.327387069624308,5.8751597509823394,19.714568458772177,12191.106217884717,53.69526243461464,13.465921036301946,17.22203699826224,12.199561603080875,10.807742796969572,0.56696053736356,0.7902654867256638,0.6934116112198304,0.5656108597285068,0.1204819277108433,0.7392,0.927360774818402,0.8629032258064516,0.7396226415094339,0.12,0.5056915196357428,0.7112970711297071,0.6391042204995694,0.5107142857142857,0.1206030150753768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090244371752,0.0044702137796113,0.006564995484663,0.0084923964608242,0.0105148621576822,0.0126663476321871,0.0148037886279987,0.0171261188622051,0.0191517629024016,0.0215796420787672,0.0236409284213762,0.0258415435139573,0.0275801809210526,0.0299813646051046,0.0320654303925411,0.0340933745208847,0.0360292291131903,0.0381177544121611,0.0404164242373867,0.042224489371005,0.0574471636310529,0.0712545612329182,0.0848845009013541,0.0978092986603624,0.1100726019746894,0.1252430672979371,0.1364503614508914,0.1481572063546075,0.1594051378339165,0.169456313382808,0.1816461277071639,0.1936696553959166,0.2058341385037942,0.2170307487506274,0.2271764305550981,0.2367295514074467,0.2461139319437021,0.2553415926025675,0.2629225945921474,0.2704073473304242,0.2769154424068966,0.2838045912653975,0.2902407662997959,0.2966821586876784,0.3022816451097224,0.3077867996609628,0.312913804067281,0.3173226849210876,0.3218884673943898,0.3257605637506245,0.3244606633036385,0.3234785947398733,0.3226499024739346,0.322324282300095,0.3222271517302573,0.3208697109597598,0.3178327510779593,0.3188516965058019,0.3188806679337496,0.3191787628207403,0.3204858329762858,0.3217596229379418,0.3224199733244415,0.3229291984137593,0.3247114048953394,0.3259096206137511,0.3277703793953475,0.3310945895289267,0.3345112308445875,0.3368823691785954,0.3404853708323883,0.342728476821192,0.3466926314466989,0.3514292213207976,0.3576196295948106,0.3627046766403581,0.3635809059020893,0.3673842404549147,0.3753093208688479,0.3808437856328392,0.0,2.48310400759884,54.51717786008114,175.98058632562623,264.5492056674104,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95802,45205,427.98688962652136,6080,62.26383582806204,4725,48.673305358969536,1885,19.237594204713886,77.3497797498425,79.6835880274197,63.33168066437421,65.06022024639819,77.1166933775818,79.45406945467542,63.24544747796666,64.97802749172648,0.2330863722607006,229.5185727442828,0.0862331864075542,82.19275467170917,151.03022,106.26654398517547,157648.29544268386,110923.095535767,383.90334,251.2835727832768,400086.28212354647,261655.17711872057,374.31134,181.8092699694458,386973.6539946974,186756.61498973545,2705.08312,1236.4862264253825,2788149.97599215,1255199.835520534,1140.97481,498.9352848791207,1177195.3195131626,507032.57970933226,1848.5948,769.8948630978912,1890025.427444104,770982.1356791124,0.38247,100000,0,686501,7165.831611031084,0,0.0,0,0.0,33094,344.76315734535814,0,0.0,34141,352.581365733492,1620638,0,58169,0,0,0,0,0,73,0.76198826746832,0,0.0,0,0.0,0,0.0,0.0608,0.1589667163437655,0.3100328947368421,0.01885,0.333960194326908,0.666039805673092,24.680657848582165,4.470757490986397,0.3293121693121693,0.2226455026455026,0.2224338624338624,0.2256084656084656,11.364153628653892,5.8135240349098485,19.92990119723074,12271.131762186618,53.347272096759085,12.333814326942782,17.67653635493854,11.662830186623404,11.674091228254357,0.5555555555555556,0.7699619771863118,0.6940874035989717,0.5861084681255947,0.1116322701688555,0.7182186234817813,0.9344729344729344,0.8450363196125908,0.759493670886076,0.1282051282051282,0.4979942693409742,0.6875891583452212,0.6395450568678915,0.5356265356265356,0.1069711538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0047350117107891,0.0066880467655834,0.0087575816070467,0.0109754857084731,0.0130746906980296,0.0152222675367047,0.0174657778957361,0.0195733720371638,0.0217916436365125,0.0241824705279343,0.0263876624843419,0.0286157895819195,0.030748002306615,0.0329575111147787,0.0349042664214344,0.0366751203353863,0.0389283047050037,0.0408960558580275,0.0430731108010744,0.0569628176772524,0.0708646596886012,0.0846242532229326,0.0980043926480942,0.1105946584034233,0.1265660848143958,0.1374826317073429,0.1496668866137374,0.1603366514290596,0.1708907599077599,0.1842023036062535,0.1965694497051025,0.2071808481710699,0.2181170272072407,0.2276687494499692,0.2378008243584629,0.2477847465571502,0.2571415718205947,0.2654056936675252,0.2736504665407293,0.2802827002267154,0.2873393894754071,0.293909608128408,0.2998862479794049,0.3054530445760901,0.3102934476091962,0.3145214727761455,0.3193616074267184,0.3238871635610766,0.3278844250940035,0.3265586488342963,0.3249741788886593,0.3239365150959885,0.3237193409202791,0.323829496103278,0.3223715463475183,0.3202059405940594,0.3201970443349753,0.3208827652227426,0.3205439794131313,0.3210924905334983,0.3209920493651358,0.3214203414685241,0.3219793482633767,0.3230466027351167,0.3244743218947862,0.325508607198748,0.3289152096258695,0.3320191200586162,0.3364585385069923,0.3393788256631149,0.341776837652036,0.3433962264150943,0.3471181776486776,0.3445133408493048,0.3454566854990584,0.3462713936430318,0.3463238248292486,0.3480272108843537,0.3502321981424148,0.0,2.4506507955014745,53.91292471363701,173.37167597886778,266.1030437627897,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95801,44997,426.6552541205207,6124,62.74464775941796,4840,49.94728656277074,1968,20.16680410434129,77.41775944651599,79.74466350177588,63.37436231324406,65.09469197983053,77.17079176200527,79.4979312538112,63.282786775480055,65.0052508027519,0.2469676845107216,246.73224796467247,0.0915755377640081,89.44117707862631,151.756,106.76071508052964,158407.53228045636,111440.08421679276,388.6163,254.11606980381768,405100.8548971305,264705.4204066948,368.68013,178.8417328425837,380961.4617801485,183774.05345902915,2825.76448,1285.332481729664,2917963.9043433787,1310014.0935164178,1196.27906,520.8861989701727,1235320.1949875264,530324.5675621056,1949.15014,818.7397014631642,1999335.9985803904,826456.3161702908,0.38278,100000,0,689800,7200.34237638438,0,0.0,0,0.0,33420,348.2635880627551,0,0.0,33702,347.8669324954854,1619722,0,58134,0,0,0,0,0,72,0.7515579169319736,0,0.0,0,0.0,0,0.0,0.06124,0.1599874601598829,0.3213585891574134,0.01968,0.329608938547486,0.6703910614525139,24.61345650224228,4.394770837061106,0.3200413223140496,0.2208677685950413,0.2157024793388429,0.2433884297520661,10.941180009663904,5.505374610485114,20.98104869189589,12221.448249289955,54.6065584812712,12.703274197687476,17.406216694093484,11.597318432560964,12.899749156929282,0.5487603305785124,0.7857811038353602,0.7023886378308586,0.578544061302682,0.1052631578947368,0.7133706965572458,0.9264305177111716,0.8765432098765432,0.7025862068965517,0.1346938775510204,0.491506544138123,0.7122507122507122,0.6407342657342657,0.5431034482758621,0.097534833869239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377707348191,0.0048148561118263,0.0069710099339428,0.0090491763319859,0.0111547221996258,0.0132741561138482,0.0152278055244113,0.0173409814648485,0.0193789734050164,0.0216973021656363,0.0240364903649036,0.025960294812047,0.0279699433611216,0.0299991764124526,0.0321290109708818,0.034176469980686,0.0361995632871438,0.0380360974901773,0.0402846309666026,0.0422661308792604,0.056828377673448,0.0704690619805768,0.083906335164144,0.096394021196811,0.109087845309686,0.1246962621759249,0.1373608330420228,0.1490750584733149,0.1601062751416468,0.1703591018169352,0.1827362579451716,0.1952160243736427,0.2073971918470175,0.217108352169118,0.2277106977664004,0.2378892637867138,0.2481690800254155,0.2569265843824755,0.2652589605328742,0.2715939244212645,0.2785114323015955,0.2854557343359566,0.2922202931415276,0.2976375691136695,0.3026093918697609,0.3080332409972299,0.3119861045160323,0.3171791613722999,0.3219070032067859,0.3265023903910232,0.3249805175610674,0.3240946960323352,0.3231912408348227,0.3224344261111833,0.3220988240883715,0.3199099664671025,0.3182846386256861,0.3183018651268844,0.3201179498542671,0.3211058232180097,0.3205639498960849,0.3218605934039954,0.3231335172644428,0.3231670639606122,0.3243405563830298,0.3268695176865613,0.3282609932305592,0.3317126725219573,0.3336365863046293,0.3371333570834818,0.3391754449691246,0.3427617988240902,0.3462384513858337,0.3506139154160982,0.3519301211608904,0.3566259342745284,0.3634820188300663,0.3624418839700828,0.3682349741637204,0.3681992337164751,0.0,2.22431713569248,54.682393454583256,180.70579298668983,271.4211084810956,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95714,44434,420.41916543034455,6072,62.09123012307499,4746,48.92701172242305,1903,19.41199824477088,77.3893283971574,79.74983318393355,63.35181630130408,65.0933625227622,77.1529352381021,79.51900895993252,63.26265755778911,65.0099030766808,0.2363931590552965,230.82422400102587,0.0891587435149645,83.45944608140599,151.34944,106.3940068270823,158126.752617172,111158.24939620358,380.85214,250.02781213345477,397228.1797856113,260545.6381861115,368.64216,179.82690779932025,381733.7484589506,185237.41550536832,2742.88356,1259.9709502536618,2829322.4397684773,1280006.133119149,1147.12574,507.4541785631211,1182625.875002612,514314.2506262759,1868.42604,788.2735757183588,1908721.6708109577,784572.0923846225,0.3784,100000,0,687952,7187.579664416909,0,0.0,0,0.0,32808,342.05027477693966,0,0.0,33729,348.9667133334726,1622160,0,58171,0,0,0,0,0,65,0.6686587124140669,0,0.0,1,0.0104477923814697,0,0.0,0.06072,0.1604651162790697,0.3134057971014493,0.01903,0.3364105773744328,0.6635894226255672,24.88997456022875,4.377553761441273,0.3244837758112094,0.2229245680573114,0.2231352718078381,0.2294563843236409,11.341234740174222,5.921594341667572,20.21580350776637,12147.910530088238,53.46914407808754,12.61099482336659,17.26882199890179,11.635363907706306,11.953963348112843,0.5476190476190477,0.8071833648393195,0.675974025974026,0.5429650613786591,0.1184573002754821,0.716078431372549,0.94,0.841025641025641,0.6719367588932806,0.168103448275862,0.4857389801210026,0.7264437689969605,0.62,0.5024813895781638,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026130022180135,0.0048851186313559,0.006887597253076,0.0089152442553537,0.0112947826440567,0.0135170897542902,0.0158568400456546,0.018213914001755,0.0204767694932919,0.0227875042208556,0.0251870068654575,0.0275680223252759,0.0294084402840144,0.0312921388794532,0.0332594235033259,0.035425299947296,0.0373430236771541,0.0389821893509538,0.040683956135336,0.0428178522315289,0.0575716120677951,0.0716617831728756,0.0845562397071318,0.0976887000778144,0.1102513283292569,0.1255116394673661,0.1375575499119513,0.1488559777690235,0.159004220310914,0.1688024793299803,0.1810476662287031,0.193372855319241,0.2045575620522075,0.2148770272191419,0.2245903984331158,0.2352263410959207,0.2444017771427295,0.2536982664551764,0.2616432137993645,0.268639446430208,0.2762716569128634,0.2832608492330714,0.2897073603310671,0.2953897736797988,0.3007236698317103,0.3060611284880427,0.3103651059783289,0.314691449057947,0.3188206973312971,0.3229424790425476,0.3231029710154665,0.3217842865189377,0.3205455975726246,0.3199388008429318,0.3186927251697856,0.3170433720219914,0.3145525095428877,0.3149650075217476,0.3163432073544433,0.3176946086461078,0.3188313750396951,0.3208287336382274,0.3216085656329074,0.3218924347243919,0.3235025697680004,0.3238965150374964,0.3248481752653385,0.3276530548433494,0.3285071346334996,0.3307592293447854,0.3331066068108647,0.3368493586345807,0.3402528779014908,0.3412974444276425,0.3452414439756212,0.3450920245398773,0.3494925011361915,0.355084067253803,0.3578363384188627,0.3651468315301391,0.0,2.4458292405261486,55.52421174006893,171.8363823272024,262.84150271858505,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95675,44806,424.4996080480794,6003,61.59393781029527,4707,48.63339430363209,1886,19.346746799059314,77.35982293729873,79.73573677805412,63.33991942654043,65.09007257525343,77.12658287807761,79.50383538380397,63.25321544912673,65.00637767474339,0.2332400592211172,231.90139425014425,0.0867039774137055,83.69490051003936,150.82034,106.1539931948769,157638.19179513978,110952.6973555024,384.8759,252.38776800203792,401724.1912725372,263246.9171696242,371.35951,180.862647942534,384760.2090410243,186355.24248864112,2708.08432,1242.6230021853182,2799537.559446041,1267829.8846985295,1132.62895,500.2534983997444,1166416.441076561,505454.9676357237,1856.1777,777.1537000038861,1906748.534099817,783141.3662193372,0.3797,100000,0,685547,7165.372354324536,0,0.0,0,0.0,33166,346.0674157303371,0,0.0,33934,351.28298928664753,1620537,0,58098,0,0,0,0,0,81,0.8466161484191272,0,0.0,3,0.0313561536451528,0,0.0,0.06003,0.1580984988148538,0.3141762452107279,0.01886,0.3329621380846325,0.6670378619153675,24.521132654510467,4.322808256079245,0.3235606543445931,0.2292330571489271,0.2164860845549182,0.2307202039515615,11.101370963709051,5.703863553331397,20.009062680766103,12169.767207600633,53.09045818685888,12.745530410874736,17.10369514881153,11.365079551996306,11.876153075176305,0.5629912895687275,0.7859128822984245,0.7038739330269206,0.6045142296368989,0.1049723756906077,0.7323717948717948,0.9361702127659576,0.8733850129198967,0.7325581395348837,0.1541850220264317,0.501879155825383,0.705547652916074,0.6461267605633803,0.5611038107752957,0.0919674039580908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023595414590675,0.0045408013298061,0.0067163800537716,0.0090999573439499,0.0115096795184642,0.013598656420174,0.0157225975402235,0.0180182018528343,0.0201331998610799,0.0223627138063671,0.0243202819267728,0.0266427289048473,0.0287273624272822,0.0306421886100843,0.0325638486611379,0.034726887499354,0.0366263962648943,0.0387064655977099,0.0408258740604435,0.042791337515893,0.0580965315503552,0.0721742317156169,0.0853520298921029,0.0984638047138047,0.1101805754788625,0.125534346298726,0.1372861206640343,0.1488858591453283,0.1594492607993842,0.1701547642046064,0.1838869912829851,0.1957533890597254,0.2068050009248882,0.2165267731097954,0.2259048416045454,0.2354283435610004,0.2445567868581695,0.2536477888441736,0.2622644077022522,0.2694090581327473,0.2761029199190517,0.282484884632027,0.2887277287461846,0.2950664591066938,0.3005822416302766,0.3062219213490061,0.3113338415586688,0.3153722032347821,0.3198541297572709,0.3238819945402033,0.3224821836762135,0.3217266938955127,0.3212177563641998,0.319702548552451,0.3196024623600089,0.3185239581420965,0.3168381072954581,0.3167887527510429,0.3168135535210062,0.3174464129288306,0.3187696806117859,0.3190164647283221,0.3204499748617396,0.3211244944021095,0.3229176674032087,0.3241725384155378,0.3255305867665418,0.3282220131702728,0.3329253793971606,0.3366062237706865,0.3405434881395983,0.3439778593858108,0.3464731605298181,0.3510907003444317,0.3500613149702858,0.3505130040563111,0.3533742331288343,0.3567251461988304,0.3631706659476948,0.3605051664753157,0.0,2.1915011335727943,54.596877169411606,169.48577427248026,266.0964453378358,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95872,44463,420.3938584779706,5969,61.237900534045394,4654,48.1579606141522,1875,19.254839786381844,77.34109898624328,79.6320857632759,63.34986309044478,65.0441497236138,77.1167003472589,79.40648515541123,63.26836792111931,64.9639407628083,0.2243986389843826,225.60060786466352,0.0814951693254713,80.20896080549278,152.20084,107.07575821674766,158754.21395193593,111686.1630264808,383.58758,251.5114147491732,399688.10497329774,261927.5321643076,363.59194,176.56714677827625,377000.3963618158,182403.37509546283,2697.4132,1221.7599177889522,2791818.549732977,1252766.566443317,1126.8934,492.347234800904,1164353.7633511347,502550.97448201646,1842.84844,757.190716289597,1893551.2558411213,766024.7309369306,0.37904,100000,0,691822,7216.100634178905,0,0.0,0,0.0,33050,344.29238985313754,0,0.0,33188,343.8960280373832,1617876,0,58066,0,0,0,0,0,84,0.8761682242990654,0,0.0,1,0.0104305740987983,0,0.0,0.05969,0.1574767834529337,0.3141229686714692,0.01875,0.3197758206565252,0.6802241793434748,24.77984260658764,4.408385400023865,0.324881822088526,0.2221744735711216,0.217877094972067,0.2350666093682853,10.929097959022954,5.502384050886174,19.80074889381676,12126.389896482897,52.55338763396003,12.369644562792969,16.99817114993487,11.371014692909414,11.814557228322784,0.5504941985388913,0.7852998065764023,0.6686507936507936,0.5986193293885601,0.1206581352833638,0.7267441860465116,0.913279132791328,0.8337730870712401,0.7948717948717948,0.1621621621621621,0.4889855072463768,0.7142857142857143,0.6134157105030892,0.5397435897435897,0.110091743119266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022378613741076,0.0044279620228794,0.0067451744109383,0.0090766950271082,0.011099140121562,0.0134026703574045,0.0155567101684036,0.0174955368528436,0.0195902191898351,0.0215636731896437,0.023989265264732,0.026245346297037,0.0283167116871912,0.0301867380009259,0.0322823286965481,0.0343372001816455,0.0363653283426219,0.0384065478657273,0.040508273986255,0.0426021098187719,0.0574214066002815,0.0706761417075974,0.0840665325959443,0.0961112336305304,0.1080867642413393,0.123494993874361,0.1357916145844367,0.147115415280273,0.15803849600956,0.16806506574083,0.1807529669998601,0.1928616222995912,0.2043172035998434,0.2142646367719865,0.223951687420249,0.2339225980815666,0.2437255995538204,0.252330772950663,0.2604419538534837,0.2688503194193208,0.2764222941720629,0.2842346449697224,0.2909305900437507,0.2967127716903179,0.3021801937410474,0.3069178824921135,0.3125328330206379,0.3163616942816088,0.319936876689648,0.3234894369449613,0.3228333737177934,0.3218926611938451,0.3203347327491476,0.3204855534817772,0.3199625061373882,0.3180487206610556,0.3153782764413172,0.3166836617216539,0.3176002469728672,0.317432970819425,0.3181381686719765,0.3200611341577182,0.3218719750852237,0.3218470950763625,0.3232829603797346,0.3249442330402834,0.3252083751038295,0.3285375494071146,0.3317980451445046,0.3348448687350835,0.3371986851716581,0.3394759267149552,0.3406204587097997,0.3427047619047619,0.344889646679928,0.3470749434052186,0.3492624462200369,0.353582240161453,0.3545554335894621,0.3650248186330661,0.0,1.4390864524150302,53.49693357277566,173.4608650947714,261.3240336694945,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95651,45206,428.0457078336871,6114,62.71758789766965,4760,49.26242276609759,1923,19.790697431286656,77.31769350596971,79.74065894361165,63.289715480586615,65.08170752848349,77.07223700635433,79.49415883454823,63.19871865005789,64.99250911469291,0.2454564996153863,246.5001090634189,0.0909968305287307,89.19841379058369,151.4172,106.4894278600622,158301.74279411611,111331.22273688953,384.55059,252.60736033163224,401547.113987308,263604.77185981564,373.9691,182.0280659122357,387913.78030548553,187922.87142879068,2750.0572,1266.690605765329,2846206.187075932,1295394.805872734,1147.89259,509.3693108525232,1184727.6139298074,517172.356642924,1893.7882,797.7672970799264,1949765.0416618749,806854.241545175,0.38229,100000,0,688260,7195.533763368914,0,0.0,0,0.0,33122,345.7674253274927,0,0.0,34221,354.69571672015974,1614636,0,57927,0,0,0,0,0,74,0.7736458583809892,0,0.0,0,0.0,0,0.0,0.06114,0.1599309424782233,0.3145240431795878,0.01923,0.326351984995311,0.673648015004689,24.433416453963883,4.421158569099863,0.3165966386554621,0.2313025210084033,0.2184873949579832,0.2336134453781512,11.41107447472976,5.8702433460705805,20.441928086234608,12260.761481031675,54.04142375885591,13.178582942804235,16.969206213228322,11.687942583133507,12.205692019689844,0.559453781512605,0.7720254314259763,0.7126741871267419,0.5788461538461539,0.1232014388489208,0.7146207974980453,0.8880597014925373,0.8756345177664975,0.6944444444444444,0.1601731601731601,0.5024418270611893,0.7052932761087267,0.6549865229110512,0.5418781725888325,0.1135073779795686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110543804198,0.0046748874376343,0.0070862944162436,0.0094818036768666,0.0118225197635496,0.0142318663406682,0.0164446167343357,0.0186556871238978,0.0210105103722125,0.0233399618688369,0.0255094184673818,0.0276383976309944,0.0293687570796004,0.0313596038786878,0.0332589424090261,0.0351828473271383,0.0374187394374228,0.0396368697675384,0.0416783740751147,0.0436437584732505,0.05809505894156,0.0723835869064084,0.0857307914500288,0.0978576845298281,0.1104586690886816,0.1257652466795178,0.1381307656336351,0.1490432279729225,0.1597928769350921,0.1703924117261604,0.1829548519337612,0.1955046925461126,0.2068871603808527,0.2163393610146657,0.2258629810871577,0.2366240307067659,0.2462640691189127,0.2557243740637706,0.2643896124541542,0.2722605486924434,0.2795627959753146,0.2862810265532293,0.2924804282685679,0.2983710385528872,0.3038100913303093,0.3083731939444746,0.3138287888078285,0.3180696218637081,0.3225505564120169,0.3278326815347215,0.3267506908404664,0.3258685239222595,0.3246709321006792,0.3237949414262809,0.3220341499628805,0.3204866910829489,0.3183078507486334,0.318744053282588,0.3191460313667935,0.3200099702672387,0.320578898225957,0.3213230950974601,0.3216426608941803,0.321066441341279,0.322880788365863,0.3247936458495561,0.3253675427144236,0.3281982376101494,0.3312128626354421,0.3353404904329913,0.3379105839416058,0.3399287271953619,0.343046357615894,0.3450559488467686,0.3491854223561541,0.3484650942278061,0.3527428746552252,0.3525756664662257,0.3550328227571116,0.3570342205323193,0.0,1.9962804176111355,56.25795203186647,180.74715347993964,257.34080630936097,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95721,44953,425.7164049686066,6092,62.54635868827112,4752,49.16371538115983,1889,19.368790547528757,77.34880342590687,79.70511081605183,63.338894218876014,65.076698437784,77.11002691562484,79.46967638207408,63.24981278242306,64.99139099260947,0.2387765102820225,235.4344339777441,0.0890814364529575,85.3074451745357,151.12658,106.27403771736228,157882.36646086018,111024.78841357934,383.25931,251.00525086268672,399909.65409889154,261743.7063781074,368.14882,178.96208989751625,382197.1145307717,184978.07529666295,2728.79136,1252.894521482529,2825495.095120193,1283642.77471627,1127.22032,496.7761283370536,1166789.461037808,508181.2894318746,1853.48564,780.839168026793,1903945.132207144,786773.6852514697,0.38219,100000,0,686939,7176.471202766373,0,0.0,0,0.0,33026,344.5116536601164,0,0.0,33696,349.62025051973967,1621556,0,58211,0,0,0,0,0,76,0.7939741540518799,0,0.0,0,0.0,0,0.0,0.06092,0.1593971584813836,0.3100787918581746,0.01889,0.3382858930247107,0.6617141069752893,24.473422801922435,4.381319559856291,0.3152356902356902,0.2335858585858586,0.2274831649831649,0.2236952861952862,11.11628555968139,5.640683492896516,20.1165656995789,12242.66893195592,53.78581702817222,13.33062542718472,16.927501652687223,11.868906321017354,11.658783627282926,0.5549242424242424,0.7918918918918919,0.6915887850467289,0.5642923219241444,0.1053621825023518,0.714968152866242,0.9210526315789472,0.859375,0.6752136752136753,0.1136363636363636,0.4974256292906178,0.7138728323699421,0.6337522441651705,0.5336481700118064,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974015979261,0.0043384827474354,0.0068895540561108,0.0092239864281433,0.0113978363429315,0.0132641115691963,0.015850041281458,0.0178013677656425,0.0199376628685299,0.0219640755334936,0.0240760100854805,0.026376558731462,0.0284374807229658,0.0304630716330018,0.0324933208173875,0.0345315712794866,0.0368805781615622,0.0389080835434369,0.0408413653992118,0.0430746147353943,0.057666200213037,0.0714173582694058,0.0843815898528069,0.0974665432202676,0.109160909234745,0.1243044830431379,0.1367586667940024,0.1484083892260193,0.1595923120479482,0.1701082350921982,0.1828640368830385,0.1946827964551976,0.2054015249573077,0.2156693318166406,0.2256005634236792,0.2350666046058027,0.2447518071212307,0.2545886539197802,0.2638207504315435,0.2725814398496671,0.2789270788715111,0.2855956197206168,0.2924227896350486,0.2982063048922225,0.3036625054646136,0.308871891512397,0.3140217989100545,0.3191194600846477,0.3234814987200372,0.3274476215575174,0.3261791024692189,0.3251368374728388,0.3246326999197081,0.3236548105967539,0.322702887458947,0.3211224052415651,0.3200411424954505,0.3198989965239063,0.3206993102506317,0.3210568597697045,0.3211017757901236,0.3215843381816028,0.3232308432927978,0.3254357115690091,0.3269244651923864,0.3287032210987178,0.3325244104379604,0.3363344456336964,0.340118625627347,0.342634858889374,0.3471519131664158,0.3489118228971712,0.3519674009932509,0.3553006390022326,0.3537279453614115,0.3601918465227818,0.3611544461778471,0.3677874636778746,0.3642235327155293,0.3630697312037397,0.0,1.8628149975008252,55.14823409289043,177.92419604268682,263.25709109821014,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95629,44709,423.7312949000826,6041,62.00002091415784,4785,49.37832665823129,1885,19.28285352769557,77.26744378178137,79.68238019428496,63.28338998351626,65.06921890094759,77.03229027114931,79.45002049984141,63.19541074429401,64.98515917857664,0.2351535106320597,232.3596944435451,0.0879792392222498,84.05972237095227,151.73224,106.69196030667877,158667.60083238347,111568.62490110612,383.15752,250.903066151194,400034.6756736973,261735.14953747703,369.60428,180.05073892494775,382507.1160422048,185167.28314679465,2765.87648,1266.4372054058117,2858903.9726442816,1290928.489690169,1138.91282,498.8855901514663,1177336.1323447907,508054.6070245067,1844.32254,772.8656424461586,1889862.0293007356,774930.4277080348,0.38026,100000,0,689692,7212.163674199249,0,0.0,0,0.0,33116,345.6169153708603,0,0.0,33806,349.4442062554246,1614182,0,57960,0,0,0,0,0,69,0.7110813665310731,0,0.0,2,0.0209141578391492,0,0.0,0.06041,0.1588649871140798,0.3120344313855322,0.01885,0.3263307534354762,0.6736692465645238,24.47976261880516,4.395289807269788,0.3243469174503657,0.2296760710553814,0.2171368861024033,0.2288401253918495,11.202506874828156,5.791102479591573,20.095328652292885,12191.094468688832,54.15613616130538,13.157556179420837,17.692131387286302,11.503576555566008,11.802872039032236,0.561546499477534,0.7843494085532302,0.7126288659793815,0.5697786333012512,0.1159817351598173,0.7524904214559387,0.9334916864608076,0.8797169811320755,0.7695473251028807,0.1336405529953917,0.4899425287356322,0.6917404129793511,0.649822695035461,0.5087939698492462,0.1116173120728929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784505643706,0.0046035286960048,0.0069444444444444,0.0092573774489878,0.0114650199900304,0.0133621216441927,0.0156004649550339,0.0176112058316062,0.0200106341642978,0.0223041474654377,0.0245118148999015,0.0268113038922617,0.028825084613248,0.0308706852138073,0.03306151940545,0.0350260524356959,0.0368087993122948,0.0384252099270315,0.0406624156117046,0.0429156804887966,0.0579646526406003,0.0723330714846818,0.0854835491425391,0.0981814735645013,0.1101116952767044,0.1252356043118236,0.1378761005554552,0.1484745473726836,0.1590865333190715,0.1691063546443568,0.1822289806306889,0.194750468514727,0.2063193182189231,0.2164392256426531,0.2266637309407166,0.2371899269895082,0.2461186450136726,0.2549937542904086,0.2627150400272526,0.2703712618777438,0.2767556301742604,0.2833142242085312,0.2898871615141433,0.2960546045607763,0.3014896333677874,0.3063992594878124,0.3109455228553537,0.3154994464028914,0.3204571665522022,0.3249534081446528,0.3238309813550633,0.3234301147873059,0.3223426168909958,0.3213691053614606,0.3208471723685974,0.3194802405498281,0.3176789880489469,0.317658270485204,0.3187654954261776,0.319289594053745,0.3199992494887141,0.3206615503599262,0.3218180672004034,0.3224246765456418,0.3241419205553413,0.3250765085925035,0.3263593549307835,0.3301744222656004,0.3333216032656508,0.3345171588188348,0.3374281113411548,0.3423588308122948,0.3442068305138844,0.3456771114019555,0.3469947941315665,0.3468873695573947,0.350651364764268,0.3532072368421052,0.3534923339011925,0.3488372093023256,0.0,2.5753841840297262,56.81137117673956,172.81266981981435,264.9240188116186,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95834,44818,423.8057474382787,6143,62.806519606820125,4755,48.98052883110378,1882,19.18943172569234,77.40182060844235,79.71366989809766,63.36325590393732,65.07489028921292,77.16558101632948,79.48284976886112,63.273920097023385,64.99077391734022,0.2362395921128666,230.82012923654813,0.0893358069139367,84.11637187269605,150.8474,106.1073151636408,157404.8876181731,110719.90646705846,384.06743,252.5886138739548,400123.9121814805,262929.5801844385,369.38866,179.58322800577216,381660.6736648789,184494.9735895749,2737.80536,1260.1351417035353,2820491.850491475,1278585.8272674996,1129.56773,500.2962708899279,1162535.8640983368,505909.3441679652,1846.82856,782.0637596562998,1884709.122023499,779624.8424740173,0.38217,100000,0,685670,7154.767619007867,0,0.0,0,0.0,33163,345.36803222238456,0,0.0,33818,349.1036584093328,1622896,0,58253,0,0,0,0,0,64,0.6678214412421478,0,0.0,1,0.0104347100194085,0,0.0,0.06143,0.1607399848235078,0.3063649682565522,0.01882,0.3236886894630976,0.6763113105369024,24.648580497932038,4.331187512969343,0.3226077812828601,0.2407991587802313,0.2138801261829653,0.2227129337539432,11.00853055227446,5.56246700578368,19.9410550659974,12306.053159683182,53.76290111043412,13.568221703879564,17.47339867402278,11.286049492822675,11.435231239709095,0.5549947423764459,0.7650655021834061,0.6923076923076923,0.5801376597836775,0.1048158640226629,0.7229199372056515,0.909952606635071,0.8312655086848635,0.7253218884120172,0.1527777777777778,0.4935363401321459,0.6804979253112033,0.6427939876215738,0.5369897959183674,0.092526690391459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021567872982441,0.0043377352562608,0.0064521365093535,0.0086230537188823,0.0110917945120525,0.0133250539517081,0.015614330122815,0.0176668707899571,0.019778400147188,0.0219952304432821,0.0243247398903182,0.0265221496900275,0.0287608572750167,0.0308786886596239,0.0331284293906514,0.0351928581023134,0.036974929093431,0.0388958594730238,0.0409668338994318,0.0430357087101776,0.057249241231135,0.0715809061827001,0.0852038143141569,0.0975881339552082,0.1102439332659251,0.1257644412053614,0.1377249949677405,0.1490549188867391,0.1601609614994609,0.1710361378660124,0.1837595343883468,0.1969325219684605,0.2083392195429403,0.2184627826410063,0.2283502660861151,0.2390300614515861,0.2477131765650796,0.2570348876442405,0.2660880417517585,0.2738336481767703,0.2805797839113434,0.2868619540431503,0.2937822363128756,0.2999568614293246,0.305799776558022,0.3101409283532078,0.3145312617278391,0.3195087219651121,0.3242690815006468,0.328472927186194,0.3276216863256714,0.3271525181438311,0.3259558192837156,0.3245989536040126,0.3231729002430206,0.3226176281757315,0.3220237249048318,0.3222029346259662,0.322847399829497,0.3238814477058991,0.3254592685342652,0.3265997910959579,0.3273050015662525,0.3278929765886287,0.3290708812260536,0.329964405414534,0.3311386082415711,0.3330938173638664,0.3345200698080279,0.3390239083185141,0.3406778121024895,0.3411140583554377,0.3407992973210365,0.3427706283118849,0.3414996288047513,0.344329654848556,0.3517251861985104,0.350434255705918,0.3618241398143091,0.3728170083523158,0.0,2.438745245102678,55.44658082298879,176.4306013796063,260.9461872480801,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95696,44918,425.86941982946,5986,61.32962715265006,4707,48.60182243771945,1896,19.44699882962715,77.32145341825886,79.70744675648857,63.3143933609397,65.07968883604111,77.08350518777652,79.47212884871495,63.22617175012631,64.99529965402232,0.2379482304823312,235.31790777362005,0.0882216108133846,84.3891820187963,151.69374,106.75865734069612,158516.28072228722,111560.20872418504,388.6228,255.0773876954579,405506.2489550243,265954.5306966414,373.93653,181.8234809836488,387124.09087109176,187254.6469402094,2736.24952,1254.2062672686686,2826515.089449925,1277815.8201687313,1143.77731,507.5427002271649,1181074.454522655,516236.4958063125,1866.99454,778.6060233764445,1916338.990135429,783533.1964992359,0.38087,100000,0,689517,7205.285487376693,0,0.0,0,0.0,33485,349.31449590369505,0,0.0,34202,353.7974418993479,1614642,0,57911,0,0,0,0,0,78,0.8046313325530848,0,0.0,0,0.0,0,0.0,0.05986,0.1571664872528684,0.3167390578015369,0.01896,0.3331737673528004,0.6668262326471996,24.49819584013495,4.430853299758757,0.3144253239855534,0.2258338644571914,0.2245591671977905,0.2351816443594646,11.145644747575876,5.753216718927898,20.15343736224117,12216.447143558124,53.29892253686289,12.580873373598472,16.914745696858066,11.816452493253983,11.98685097315238,0.5595920968769917,0.7648165569143932,0.7148648648648649,0.5912961210974456,0.1246612466124661,0.7423167848699763,0.9151670951156812,0.8613861386138614,0.749034749034749,0.2027649769585253,0.4921465968586387,0.6780415430267063,0.6598513011152416,0.5401002506265664,0.1056179775280898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365566993596,0.0043403305952743,0.0067199935033295,0.0089125110517169,0.011334038743285,0.013711188982153,0.0160416900374272,0.0181541571794688,0.0200678811670653,0.0222124410141975,0.0241956980868994,0.0263201133726303,0.0284950108013578,0.0306977319332666,0.0327222428671704,0.034864604981544,0.0367205303501139,0.0384938714933629,0.0404039353537034,0.0424622696573,0.0565710585138607,0.0706501826708679,0.0840968483360095,0.0969598754064548,0.1088720313142929,0.1248465348630455,0.1378322153349749,0.1494072914336837,0.1607390941928313,0.171031746031746,0.1836914956643507,0.195271908555594,0.206858298802571,0.2169946508855027,0.2273007282247596,0.2376107174490699,0.2471862485917299,0.255642478194407,0.2639260603311408,0.271579067903355,0.2785611011508877,0.2850694606857196,0.2920414733453271,0.2976808293881464,0.3030339850062575,0.3087192118226601,0.3137635108086469,0.3183124014847206,0.3221294309279416,0.3255406349248185,0.3250295921661466,0.3241899372278615,0.3232489451476793,0.3224372573638712,0.3214704790196807,0.3192724932581515,0.3172539393459498,0.3179041739187547,0.3186942707799529,0.3185666821478332,0.3196266586700652,0.3195878327597801,0.3207661839595951,0.3218462917320188,0.3240017361111111,0.324109947643979,0.3249584598636337,0.3270481965763375,0.3315954486208475,0.333850252495129,0.3374794969928923,0.3398420827998293,0.3423142911609582,0.3427714087866431,0.343655303030303,0.3476436023504017,0.3468788627935723,0.3471226704894532,0.3472722237607311,0.3539823008849557,0.0,2.2231393092855187,55.7062967612342,171.54658527076225,261.06921877856735,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95716,44740,424.3073258389402,6054,62.13172301391617,4755,49.20807388524385,1897,19.55785866521794,77.3455376358958,79.73210478998223,63.32130932583449,65.08722552788855,77.1161290150624,79.50066256311263,63.23758780363441,65.00429220811858,0.2294086208333965,231.44222686960347,0.0837215222000793,82.93331976996399,151.27354,106.38697547753704,158044.15144803378,111148.5806735938,384.46636,251.9347658163448,401223.8601696686,262760.49544103886,367.02308,178.51723690011278,380158.3956705253,184016.06328387992,2738.42032,1246.1516525344366,2836028.1248694053,1276969.3808082624,1161.56674,508.5170575545249,1201496.5940908522,519218.1010014264,1860.36366,770.299170234198,1919237.4106732416,783914.3571092148,0.38077,100000,0,687607,7183.825065819718,0,0.0,0,0.0,33261,347.0266204187388,0,0.0,33638,348.1027205482887,1620828,0,58053,0,0,0,0,0,53,0.5537214258849096,0,0.0,0,0.0,0,0.0,0.06054,0.1589936181947107,0.3133465477370333,0.01897,0.3232339089481946,0.6767660910518053,24.45420251076441,4.398845913782691,0.3196635120925342,0.228391167192429,0.2235541535226077,0.228391167192429,11.108102016827385,5.740991832492817,20.03862794693007,12178.296838058726,53.62537780556204,12.969448008106095,17.090506629260503,11.761597990425596,11.803825177769848,0.5543638275499474,0.7762430939226519,0.6947368421052632,0.5710253998118533,0.1197053406998158,0.7219123505976096,0.9352331606217616,0.8681592039800995,0.6751054852320675,0.1565217391304348,0.4942857142857143,0.6885714285714286,0.6323792486583184,0.5411622276029056,0.1098130841121495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024822946534412,0.0048582585323799,0.0071374181430529,0.0092176670257525,0.0115264100268576,0.0137604400081482,0.0161938365523852,0.0182183960867212,0.0200016361256544,0.0221603244173186,0.0245730988154453,0.026437690656423,0.0285649629180081,0.0306861623749317,0.0322490763864522,0.0341982838829732,0.0362033603347904,0.0384727151960479,0.0405145430155049,0.0423530147219704,0.0574794268766448,0.0715720953596919,0.0848051716357606,0.096876347988932,0.1093227579078377,0.124677412531201,0.1362377582310312,0.1480814900799778,0.1587537409149209,0.1685914223157171,0.18150463461953,0.1938470534728087,0.2051262516325642,0.2155180902158572,0.2244269096591722,0.2349448309478441,0.2449088900543423,0.2542685533034891,0.2626565051714752,0.2698029432632229,0.2767401787882643,0.284188508594599,0.2907771236730737,0.296405788081531,0.3016144487706658,0.3066099234951169,0.311415616373334,0.3155289907488484,0.320660239782157,0.3251491811466575,0.3247749741773646,0.3240121663835151,0.3222354840974514,0.3222619116206717,0.3210432053995648,0.3189544677734375,0.3173399077059232,0.3176818256443933,0.3192902763072509,0.3205845049036245,0.3208931419457735,0.3212043181142914,0.3234688733932622,0.3250369309279735,0.3250867219117364,0.3269939131116278,0.3275040652725872,0.3309214458740995,0.3330406378420147,0.3351746612089178,0.3382453267840087,0.3393746687864335,0.3425594677712923,0.3471231212995294,0.3493556579813752,0.3511413887892912,0.3525069209474008,0.3631729200652528,0.3647798742138364,0.3724351529229578,0.0,1.8661812887947835,55.39601194079204,172.38285321887608,267.6523863611526,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95620,44459,421.4808617444049,6061,62.309140347207695,4771,49.39343233633131,1951,20.048107090566827,77.23812690061078,79.66855845934639,63.25655152000609,65.05401067775574,76.99997673843382,79.42970030940185,63.16897881751984,64.96823161597769,0.2381501621769644,238.8581499445337,0.0875727024862556,85.77906177805517,151.37848,106.576252246152,158312.11043714703,111457.66455359974,384.88227,251.7240000951648,401996.4128843338,262738.93923359626,368.69679,178.21815425246493,382243.54737502616,183825.9646635554,2772.403,1267.8545276520151,2872647.103116503,1299457.8264321634,1193.45083,531.4495131176777,1236997.7619744823,544827.3496874734,1925.7611,803.8147295952891,1981556.5362894796,814246.5616793259,0.37779,100000,0,688084,7196.005019870319,0,0.0,0,0.0,33200,346.6534197866555,0,0.0,33790,350.1882451370006,1613592,0,57952,0,0,0,0,0,61,0.61702572683539,0,0.0,1,0.0104580631667015,0,0.0,0.06061,0.160433044813256,0.3218940768850025,0.01951,0.3283675709581308,0.6716324290418693,24.41402671367853,4.471816900761026,0.3175434919304129,0.2236428421714525,0.2242716411653741,0.2345420247327604,11.262562218263552,5.670691937119556,20.738152190607547,12137.82006675049,54.31775141307346,12.7812556893292,17.13810303827456,12.05757910933086,12.340813576138844,0.5596311045902327,0.7853795688847235,0.699009900990099,0.5869158878504673,0.129579982126899,0.7194244604316546,0.9318801089918256,0.8655913978494624,0.7490636704119851,0.1469387755102041,0.5028409090909091,0.7085714285714285,0.6447944006999126,0.5330012453300125,0.1247139588100686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023512242581482,0.0047467872972726,0.0069247014864755,0.0095341674882855,0.0117550073277967,0.0139368562608881,0.0160946504156254,0.0182241654067748,0.0204979236135261,0.022666516444235,0.0245526553394073,0.0263555377454455,0.0284782116465284,0.0303292715614111,0.0324469458356999,0.0345701750755349,0.0363981298141217,0.038352464550979,0.0402639851768575,0.0425946983527546,0.0565353293538371,0.0704390652834538,0.0835093027409205,0.0957777333094608,0.1089732081568859,0.1243909672499258,0.1360961203416479,0.1475638743511304,0.1582680703556297,0.1683870205475773,0.1812875592046349,0.1944715447154471,0.2059336253295853,0.2162280605648925,0.2257986313898775,0.2362333152107581,0.246205639253319,0.2544398714551502,0.2621817396149604,0.2702826830780536,0.2772234726315056,0.284263721317434,0.2906310431966211,0.2956676443717844,0.3022042964894537,0.3074365661034964,0.3114770559293102,0.3154167145208836,0.3193504384540435,0.3241626635965434,0.3230667440824207,0.3211846045568083,0.3197396105454905,0.3190348525469169,0.3173837287226913,0.3155362933591529,0.3138476205608961,0.3152637911426829,0.3155113246396706,0.3154037734496784,0.316348195329087,0.3181412683623099,0.3206281797922886,0.320794523622489,0.3215310773980367,0.3233102366322395,0.3237582970931563,0.3262941919191919,0.3273303964757709,0.3307405349630923,0.3326018378823207,0.3329605963791267,0.3370141342756184,0.3403882755995432,0.3462296929289135,0.3487028301886792,0.3488969477183439,0.3452547452547452,0.3436473165388828,0.3384088313665778,0.0,1.862009726386136,55.46139985394931,184.33967511002,260.4259848735984,fqhc4_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95724,44897,424.4076720571644,6239,63.96514980569136,4869,50.34265179056454,1958,20.08900589193933,77.33641368994157,79.71157933190304,63.332022412709286,65.08960982379935,77.09544793320246,79.47257639822536,63.24258866064645,65.00350572504482,0.2409657567391008,239.002933677682,0.0894337520628383,86.10409875453229,151.32898,106.46079962289303,158088.3999832853,111215.96070253334,386.25368,252.837786615945,402957.0222723664,263581.7143202802,373.71242,181.0359013653552,387694.45489114535,187005.7811787761,3224.80892,1469.001034391645,3333859.9724207097,1499650.6766240902,1199.08028,531.523108780013,1235145.762818102,537788.9098993072,1926.11086,803.1262407435427,1976557.7075759475,807388.852910618,0.38138,100000,0,687859,7185.836362876603,0,0.0,0,0.0,33387,348.2094354602816,0,0.0,34202,354.51924282311643,1620225,0,58171,0,0,0,0,0,57,0.5954619531152062,0,0.0,2,0.0208934018636914,0,0.0,0.06239,0.1635901200901987,0.3138323449270716,0.01958,0.3232646834477498,0.6767353165522502,24.788275201978337,4.374840567745699,0.3132059971246662,0.2244814130211542,0.2333127952351612,0.2289997946190183,11.268402610993832,5.798723971854545,20.75351364531453,12293.034852449167,55.13454231068335,13.062029551681936,17.30565786248191,12.506745740680593,12.260109155838908,0.5508317929759704,0.7666971637694419,0.6878688524590164,0.590669014084507,0.1112107623318385,0.7290867229470452,0.910941475826972,0.8735083532219571,0.7845528455284553,0.1346938775510204,0.485698261357263,0.6857142857142857,0.6175406871609403,0.5370786516853933,0.1045977011494252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0044320936317812,0.0067008477587694,0.0090657777055045,0.0115662797676571,0.0139531094045994,0.0161943319838056,0.018582805799469,0.0207129931604183,0.0228589562475687,0.0250627850955871,0.0271757543402153,0.0292868527944881,0.0312287568235657,0.0334007470540891,0.0354728682170542,0.0376061296334644,0.0396277892465533,0.0416857202244855,0.043625,0.0584156554792088,0.0720585927282239,0.0854727745616243,0.0982927547201547,0.1106625629782659,0.1266012767936414,0.1385788039733274,0.1498638761272758,0.1599935955595879,0.1706143874872783,0.1838247955230305,0.195808506266694,0.2070741646291768,0.2178505499786999,0.2277891313424308,0.2381773753054477,0.2473341133210763,0.256555212138241,0.2655238483951793,0.2735716328281384,0.2806176106879933,0.2873979419013467,0.2942719410180065,0.2999293861381398,0.3050645963486383,0.3097359289247656,0.3143485761432107,0.3192968630840408,0.3240393323845258,0.3285490020183897,0.3276569967018913,0.3265047460289032,0.3253440108278818,0.3237991898148148,0.322263240941975,0.3204614841748362,0.3184175057480377,0.3195113529866329,0.3201889505031834,0.3217167289836664,0.3216154870659738,0.3218452169098746,0.3222503716421347,0.3220834915458667,0.3220742379074911,0.3238956032506772,0.3244388456252863,0.3290583441261016,0.3315131231284129,0.3339984038308061,0.3361989702096359,0.339650067294751,0.3432874243789419,0.3456885856079404,0.3515677118078719,0.3536467167433971,0.3564879564879565,0.3586644817697665,0.3533627342888644,0.3629770992366412,0.0,1.9296960170477515,57.58098074624599,179.22588962813856,269.5305886600323,fqhc4_100Compliance_implementation_low_initial_treat_cost,0 -100000,95607,44512,421.9565512985451,6015,61.57498927902768,4730,48.86671478029852,1884,19.308209649921032,77.26635035352784,79.70648314357241,63.26822878755484,65.0730101142669,77.02896216894945,79.47110460659755,63.17888920652207,64.98752128197589,0.2373881845783927,235.37853697486355,0.0893395810327675,85.48883229101989,150.82496,106.09092097662447,157755.1434518393,110965.64161266902,384.32766,252.27971807777857,401384.4488374282,263269.36058318656,368.45163,179.16605402876397,382347.1293942912,184965.57069843545,3111.54901,1428.887245198313,3217140.313993745,1457172.0740998285,1165.17991,517.5291262758299,1200517.9537063185,523125.0561502602,1849.18428,785.3798447636505,1897041.6601294884,787306.069378315,0.37854,100000,0,685568,7170.688338719969,0,0.0,0,0.0,33162,346.2089595950088,0,0.0,33859,351.04124175008104,1617204,0,58034,0,0,0,0,0,58,0.5961906554959365,0,0.0,0,0.0,0,0.0,0.06015,0.1588999841496275,0.313216957605985,0.01884,0.3218884120171674,0.6781115879828327,24.52298258247581,4.409256552213755,0.3226215644820296,0.2348837209302325,0.2167019027484144,0.2257928118393234,11.17922030470161,5.675802369264201,20.20395742666963,12116.47117339489,53.87673423306491,13.281995624333051,17.362692826716277,11.551067448946013,11.68097833306957,0.5566596194503172,0.7812781278127813,0.6946264744429882,0.5609756097560976,0.1217228464419475,0.7230769230769231,0.909307875894988,0.8883248730964467,0.6766917293233082,0.1312217194570135,0.4935860058309038,0.703757225433526,0.627208480565371,0.5204216073781291,0.1192443919716647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0047273649505452,0.0070785136136979,0.0093338213762811,0.0114513141019116,0.0137896592843238,0.0159311724363161,0.0181682556226561,0.0203609724154866,0.0224818116610308,0.0244570795188636,0.026632814587916,0.0287411342042144,0.0306938859676255,0.0327525124719832,0.0346012168370514,0.0367226368159204,0.0390631491483174,0.0409038395487047,0.0427917357612924,0.0572916122152408,0.0717631647891013,0.0851068299754196,0.0982946944880397,0.1102579268679101,0.1255521774595069,0.1375,0.1479229341355693,0.1587843624218549,0.169000311630256,0.1821447836875606,0.1946004553832809,0.2059803921568627,0.2160021038098681,0.2247010195646183,0.2350683351082712,0.2435255737045561,0.252415812591508,0.260971341560419,0.2683836182172766,0.2757506255212677,0.2824296941799313,0.2891684733032424,0.2949824914855855,0.300887537993921,0.3060070845830093,0.3104070583517144,0.3139643025492719,0.3182448635686046,0.3225299677879284,0.320635775862069,0.3200434890314056,0.319081775009512,0.3181220467320781,0.3168316831683168,0.3152333700845277,0.3135044413129186,0.3135370461639559,0.3146758729127856,0.3155683484106268,0.3164835164835164,0.3178683261326251,0.3194170271745978,0.3207399278883837,0.3216360174495674,0.3210076567277288,0.3218900068602789,0.3247946936197094,0.3268328807701802,0.3291578569433917,0.3332267202778031,0.3350922076537682,0.3389357518868522,0.3388260308299795,0.3397388059701492,0.3428907168037602,0.3469667021438345,0.345111423408954,0.3450627386797599,0.3496608892238131,0.0,2.332089449112685,56.90759795933103,177.63351485912162,254.86785754764543,fqhc4_100Compliance_implementation_low_initial_treat_cost,1 -100000,95713,44422,420.35042261761726,6093,62.64561762769948,4784,49.47081378705087,1964,20.185345773301435,77.34534288058313,79.71399855357203,63.32656324425341,65.07435330746537,77.0991220506905,79.46635160989112,63.23599902767889,64.98538200325336,0.2462208298926356,247.64694368090545,0.0905642165745135,88.97130421200927,150.94574,106.17009196123496,157706.62292478557,110925.46671949992,382.21663,250.57980283911863,398844.1695485462,261311.3086405386,367.05156,178.6732624315842,380098.7013258387,184075.66591531105,3170.36926,1447.0406025110549,3282683.449479172,1482166.6362051703,1159.92232,511.8446121542495,1199119.7956390458,522014.5875212869,1926.82616,808.2825463789384,1983177.5202950488,819018.826574064,0.37806,100000,0,686117,7168.482860217526,0,0.0,0,0.0,32913,343.3493882753649,0,0.0,33629,347.96736075559227,1620282,0,58162,0,0,0,0,0,72,0.7522489108062647,0,0.0,0,0.0,0,0.0,0.06093,0.1611648944611966,0.3223371081569013,0.01964,0.3263190954773869,0.6736809045226131,24.66540404435925,4.290051899525454,0.3179347826086957,0.2295150501672241,0.2184364548494983,0.2341137123745819,11.211684997799662,5.955696937143515,21.07175848441577,12184.958944886232,54.24794975706535,13.03934024039625,17.052740123971418,11.824834003139166,12.331035389558508,0.5579013377926422,0.7868852459016393,0.6916502301117686,0.5885167464114832,0.1232142857142857,0.7200634417129262,0.9451697127937336,0.8451443569553806,0.7258687258687259,0.1512605042016806,0.499858075503832,0.7020979020979021,0.6403508771929824,0.5432569974554707,0.1156462585034013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0048547625321792,0.00724402418733,0.0095368677635588,0.0120502755801419,0.0140807786680784,0.0162584222704708,0.0183742841685126,0.0206386850121644,0.0226530591354372,0.0247985565784347,0.0267816800164304,0.0290057805846413,0.0312046070321111,0.0330853138770497,0.0350316825337757,0.0370025165439463,0.0393615806896837,0.0412767727178207,0.0430791034044371,0.0578658256401687,0.0718165548566704,0.085434570466207,0.0981524735391284,0.110737121995484,0.1262394835705592,0.1378329317098544,0.1489690282452179,0.1601637224413025,0.1710712600283152,0.1834744758333872,0.1954980023603547,0.2062151810584958,0.2162490558602344,0.2251037915579195,0.2361215802775683,0.2451726678125767,0.2543431297538143,0.2623501634580458,0.2699550953079179,0.2773908415669759,0.2840889159134227,0.290073263975192,0.2954387478727739,0.3001081448898501,0.3051154647564328,0.3106258842383343,0.3151603016545216,0.3193684701734374,0.3234081357545,0.3227177079961152,0.32159592061742,0.3218437892892963,0.3201905534157713,0.3195217818539141,0.3167548500881834,0.3150229539338293,0.3157307610282658,0.3171405195336469,0.3175828682488454,0.3190514484486918,0.3203810726049823,0.3215190403416584,0.3224643361028374,0.3234457145613273,0.3237896385227717,0.3255906519205072,0.3281401836933011,0.3320849812747191,0.3357038441784205,0.3406093678944975,0.3432344984883042,0.3440055352874575,0.3479554470552334,0.351799510081025,0.3520190023752969,0.3535075653370014,0.3516906256327192,0.3443617314585056,0.3557729941291585,0.0,2.0321722636213515,55.544208654225606,181.35142481938655,262.45613591478326,fqhc4_100Compliance_implementation_low_initial_treat_cost,2 -100000,95661,45003,426.2761208852092,6026,61.749302223476654,4691,48.45234735158528,1799,18.35648801496953,77.2498286400838,79.64815472146465,63.26585613190741,65.03866541224643,77.02369345832058,79.42625959826475,63.18128045588126,64.9588002311462,0.226135181763226,221.8951231999,0.0845756760261551,79.86518110023155,151.40268,106.59334228571448,158269.78601519953,111427.99603570376,385.1714,252.5152337006968,402053.7523128548,263381.4265162363,370.67249,180.5250409913573,384260.0432778248,186132.71574065395,3082.9417,1397.49253421272,3186663.812839088,1424826.398881175,1111.56453,485.7261657664798,1149474.4357679724,495249.2403032377,1773.17686,748.1772864704975,1812051.055288989,746281.1415625851,0.38145,100000,0,688194,7194.081182509069,0,0.0,0,0.0,33233,346.7766383374625,0,0.0,33901,351.1985030472188,1609947,0,57787,0,0,0,0,0,53,0.5435862054546785,0,0.0,2,0.0209071617482568,0,0.0,0.06026,0.157976143662341,0.2985396614669764,0.01799,0.3318534961154273,0.6681465038845728,24.805129018005637,4.462632315384073,0.3223193348966105,0.2315071413344702,0.2185035173736943,0.2276700063952249,10.93170052103593,5.3751502702077865,19.25424933354904,12225.397078696602,52.859007127831,12.84444989466074,17.014841801875725,11.315638767938264,11.684076663356263,0.5529737795779152,0.7799263351749539,0.701058201058201,0.5492682926829269,0.1161048689138576,0.731442869057548,0.9203296703296704,0.8804071246819338,0.7477477477477478,0.1363636363636363,0.4916953035509736,0.7091412742382271,0.6380697050938338,0.4943960149439601,0.1108490566037735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629077353215,0.0048880911091504,0.0069122319099481,0.0092460881934566,0.0115755103701518,0.0137799686309657,0.0160704817065709,0.0183284831776178,0.0203415831458375,0.0226032097172294,0.0247915234939944,0.0267796610169491,0.0289447960076143,0.0308895828824093,0.032913823186281,0.0353500879098148,0.0373763017460235,0.0393172686593507,0.0413046870935858,0.0432932932932932,0.0578572846678718,0.0720412202708222,0.0850974506449479,0.0982195470999242,0.1104227789855837,0.1255702204676072,0.1374000403555536,0.1490078223245305,0.1596131627369592,0.1698088884591833,0.1820378921928272,0.1948688476594268,0.2064596327474157,0.2160765991050276,0.2260862847241383,0.236680407560084,0.2470922747982223,0.2558152652121923,0.2639420012746972,0.2718196753328814,0.2782758140183008,0.2855380928888575,0.2920074172689235,0.2979534872529085,0.3037092114725923,0.3086283869850731,0.313779161748826,0.3173713117895005,0.3219088204342007,0.325813242244906,0.3247774340407711,0.3239417186378939,0.3223294659638511,0.3208433630115135,0.319779400804889,0.3186560294568886,0.3172862011571689,0.3175028787629544,0.3181211270498819,0.3186091066984189,0.3199323689648694,0.3213224515668951,0.3219528563040013,0.3232221325441664,0.3233358246739156,0.325878095138907,0.3256943261202931,0.3279544672733527,0.3311572700296736,0.3345851286713839,0.3366650083668762,0.3388564515280627,0.3420443888715223,0.3455715367146101,0.3471367282223466,0.3510400752144788,0.3541033434650456,0.3552578156719448,0.3548121743899095,0.3553280242700038,0.0,2.2821464300960845,52.57287192789767,174.4566495549002,264.3791172339518,fqhc4_100Compliance_implementation_low_initial_treat_cost,3 -100000,95744,44751,424.1519050802139,6147,62.95955882352941,4806,49.60101938502674,1928,19.708806818181817,77.32698317968122,79.68647033950441,63.31555014592704,65.06111985275778,77.0828613172379,79.44773607712776,63.22382575140754,64.97516696248458,0.2441218624433219,238.73426237665285,0.0917243945195025,85.95289027320518,152.60234,107.31262206063464,159385.56985294115,112082.6391843193,385.52562,252.32717637197064,402045.06809826207,262925.70434906695,365.83326,176.98932520565072,379087.11773061496,182494.9015861717,3175.2528,1446.376790890142,3277877.9975768714,1472150.2139978923,1151.20984,507.6993187085728,1189368.0230614974,517252.2546672095,1895.0048,798.0522797193275,1938848.909592246,796733.8977859028,0.37981,100000,0,693647,7244.798629679144,0,0.0,0,0.0,33279,346.93557820855614,0,0.0,33478,346.643131684492,1612480,0,57854,0,0,0,0,0,75,0.7833389037433155,0,0.0,3,0.0313335561497326,0,0.0,0.06147,0.1618440799347042,0.313648934439564,0.01928,0.3390458545622973,0.6609541454377026,24.50952579656317,4.447261929849263,0.3233458177278402,0.2207657095297544,0.2270079067831877,0.2288805659592176,11.260029641024332,5.7732901565858326,20.519882260166515,12165.56649972294,54.411467898575005,12.701219276369264,17.43155237726534,12.160586111426326,12.118110133514069,0.5582605076987099,0.8001885014137606,0.6872586872586872,0.5902841429880843,0.1109090909090909,0.7054741711642252,0.9203084832904884,0.8668407310704961,0.6931407942238267,0.1330645161290322,0.5038472499287546,0.7306547619047619,0.6285226302305722,0.5552825552825553,0.1044600938967136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.0046338545152197,0.0069930779692669,0.0091738459037711,0.0114924993643529,0.0135023674965633,0.0153668882816005,0.0176491604144337,0.0198892091330921,0.0219654244158077,0.0240345195145949,0.0261256082287966,0.0277749223905758,0.029738245773009,0.0319792032020466,0.0341927150607078,0.036194972460347,0.0382867930791253,0.040234902816755,0.0421736956159359,0.0565113899734825,0.0709129333975016,0.0839318479685452,0.0962098512327182,0.108489621219309,0.1231772953653868,0.1353593211349774,0.1468624548774904,0.1575712224063285,0.1678081456512871,0.1810616187314044,0.1931434142114384,0.2045162694526063,0.2146968072302339,0.2248043241339072,0.2357844332616551,0.245408642030475,0.253882975727882,0.262458396283212,0.270721588043827,0.2774283960483189,0.2844273145816005,0.2904086205057078,0.2960850931005918,0.3017288576886109,0.3077179385921611,0.3134863431816188,0.3174744784165785,0.3211413748378729,0.3251059783685274,0.3251356920631927,0.3238116215360471,0.322560649178665,0.3217657860871326,0.3206666369326376,0.3191420862206414,0.3177570093457944,0.3188974438953917,0.3196760524876982,0.3200171132146104,0.3207649557455886,0.3224251999605016,0.3229477220239345,0.3230690102419607,0.3243529298566343,0.3253241501656622,0.3262546613908736,0.3293862679816571,0.3337773882559158,0.3380727949621767,0.3405096062133805,0.3425906296374814,0.3438814591574056,0.3475785638378624,0.3529632408102025,0.3551512287334593,0.3533466074437126,0.3597239139261063,0.3630022321428571,0.374414976599064,0.0,2.2409129176304448,57.13234767397732,173.5034926248792,267.7699817271194,fqhc4_100Compliance_implementation_low_initial_treat_cost,4 -100000,95763,44741,423.1383728579932,6156,63.18724350740892,4834,49.93577895429341,1885,19.308083497801864,77.39144353273707,79.7279426424864,63.36142006586866,65.08632683372905,77.15198131798401,79.49105265181521,63.27306657833983,65.00132192852816,0.2394622147530611,236.88999067118743,0.0883534875288276,85.00490520088988,151.41324,106.50294779167832,158112.46514833497,111215.13297586574,386.8203,253.51292522857364,403389.79564132285,264184.2833125253,376.48656,182.36927012421745,389702.5677975837,187803.50910842387,3168.52652,1449.706828105108,3275584.3384188046,1480716.0783445677,1178.0878,521.4692142922082,1213860.3531635392,528194.4240058291,1846.24384,774.128231422935,1893852.9494690013,780104.1946920183,0.37976,100000,0,688242,7186.930234015224,0,0.0,0,0.0,33314,347.3053266919373,0,0.0,34514,356.92281987824106,1619639,0,58151,0,0,0,0,0,68,0.710086359032194,0,0.0,0,0.0,0,0.0,0.06156,0.162102380450811,0.3062053281351527,0.01885,0.3411874128042164,0.6588125871957836,24.48604565335797,4.362440457999431,0.3227141083988415,0.240380637153496,0.2194869673148531,0.2174182871328092,11.43573933891734,6.0388942362159215,20.058526359114836,12197.630644046209,54.82959179285524,14.022667067442631,17.3590469439322,11.845078497787233,11.602799283693171,0.5773686388084402,0.806368330464716,0.7,0.590951932139491,0.1284490960989533,0.7342657342657343,0.9227272727272728,0.8873626373626373,0.7088122605363985,0.1396396396396396,0.5204398082886946,0.7354570637119113,0.6429765886287625,0.5525,0.1254523522316043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021666936659646,0.0047022102414949,0.0070006696292688,0.0093234884878276,0.01185549714797,0.0140868007491246,0.016588546973711,0.0187524231232272,0.0211157535576009,0.0231542113448473,0.0250717213114754,0.0273822225869993,0.0292845326291345,0.0312258781634984,0.0332859145637473,0.0349971076770514,0.0369159120310478,0.0390363295064455,0.0411300633010072,0.0431879498744778,0.0578779813162152,0.071852340145023,0.0853108411489477,0.0978977589416231,0.110477315141866,0.1258750132177223,0.1375865616085347,0.1487722881824758,0.1589295058682814,0.1687337199455455,0.1815020937166969,0.1936669983129298,0.2050496157901029,0.2158604264988638,0.2260511129431162,0.2364455165088076,0.2461905451951265,0.2550579089857221,0.2631322405858214,0.2698283752860412,0.2770034440514989,0.2837474579836843,0.2902096661660537,0.2963406599988021,0.3023015978937406,0.3077263943082926,0.312929676758081,0.3168333206116581,0.3212071799251983,0.3251940385046187,0.3242447860675123,0.3228238331296431,0.3219130899326594,0.3205137445403831,0.3198743033321475,0.3176310809985961,0.3157063930544593,0.3162286873711424,0.3165479881435045,0.3176569127134048,0.3193258426966292,0.3192649673977474,0.3207543216343635,0.3218642967473304,0.3236449521606054,0.323848344699642,0.3249480071792826,0.3279803514075193,0.3305150426266469,0.3336252537717447,0.3377092672216631,0.3432875687803836,0.346521491422422,0.3500420264384504,0.3509778112072207,0.3546484190655969,0.3608387388746417,0.3662113298513459,0.3660326086956522,0.3639832125143075,0.0,2.107947235578247,56.515449790221936,183.1913135663461,263.4822310439901,fqhc4_100Compliance_implementation_low_initial_treat_cost,5 -100000,95716,44840,425.2685026536839,6034,61.59889673617786,4746,48.894646663044846,1853,18.826528480086925,77.37264048070351,79.73117912736407,63.34029949113111,65.08147327920754,77.13389441783623,79.49716162384607,63.25077942725546,64.99683150449178,0.2387460628672784,234.01750351800388,0.0895200638756534,84.64177471576306,151.47726,106.51255950829092,158256.98942705503,111279.78551996627,385.7235,253.7093591973431,402290.21271260816,264367.46123672434,376.68587,183.24271360216048,389002.1104099628,187924.1939464284,3115.14095,1434.7578914191265,3210964.896151114,1455372.2485468732,1143.44931,513.6973291125148,1177621.014250491,519685.02243073634,1823.22998,779.2847812855597,1855715.073759873,773426.4296892585,0.37999,100000,0,688533,7193.499519411593,0,0.0,0,0.0,33240,346.53558443729366,0,0.0,34416,355.20707091813284,1615404,0,57990,0,0,0,0,0,73,0.7313301851310127,0,0.0,0,0.0,0,0.0,0.06034,0.1587936524645385,0.3070931388796818,0.01853,0.339034045922407,0.6609659540775931,24.4867299826179,4.3803313773460975,0.3135271807838179,0.2404129793510324,0.2239780868099452,0.2220817530552044,11.151954577281566,5.738037130620358,19.817134046372225,12171.044501456445,53.80385049577279,13.625816642512254,16.715404297662392,11.777450401182316,11.685179154415827,0.5640539401601349,0.7931638913234005,0.6975806451612904,0.5559736594543744,0.135673624288425,0.729022324865281,0.9368932038834952,0.8782383419689119,0.6872586872586872,0.1818181818181818,0.5018856977081521,0.7119341563786008,0.6343012704174229,0.513681592039801,0.1219211822660098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670886075949,0.004337559413416,0.0064112318289256,0.0088255606109847,0.0110524763851183,0.0134678420913329,0.0156058876294544,0.0175558572259704,0.0199327397806376,0.0220800491350189,0.0243092223304454,0.0262109607605593,0.0284721293944659,0.0302786875115862,0.0323332783096731,0.0342717764273016,0.0364844858110136,0.0386155250383769,0.0404311267708106,0.0422347439355907,0.0566339156129598,0.0707222902344853,0.084740075911674,0.0974889372391973,0.1096515734542196,0.1247647444437395,0.1362850444984248,0.1482534006002937,0.1591916516240667,0.1693964453883365,0.1823822141795385,0.1938663982945384,0.2051778527140215,0.2158758984345086,0.2259420672653636,0.2364941987389044,0.2463467184656775,0.2552836923354089,0.263172244564106,0.2710029586477374,0.2785630766737286,0.2849150241116157,0.2915308867269431,0.2970488340554229,0.3020267230793546,0.3068735430876059,0.3111517321681211,0.3158343297631465,0.3207937966834522,0.3245172013507809,0.323671497584541,0.3231448253103989,0.321591980966057,0.32112265091219,0.3199815769533629,0.3185931494893506,0.3167444435656094,0.3172104779411764,0.3176548808346687,0.3174035312544496,0.3185049728499188,0.3199677336848525,0.3209053480741499,0.3218654604603489,0.3235294117647059,0.325166748851574,0.3253790562561995,0.3276222575913616,0.3316847201421058,0.3320495185694636,0.3354424658772484,0.3384022387665663,0.3412763281986796,0.3433447098976109,0.3435748972730669,0.3490566037735849,0.34876637222053,0.3481765061454765,0.3467103467103467,0.3490315229775921,0.0,2.604503392007218,56.446044922403374,173.49319621460236,260.4181620365291,fqhc4_100Compliance_implementation_low_initial_treat_cost,6 -100000,95741,44526,422.27467855986464,6028,61.74992949728957,4718,48.69387200885723,1845,18.894726397259276,77.33281654085012,79.69771130936124,63.319784280511655,65.0705355084031,77.10574213992838,79.47377502868791,63.23564614969257,64.9900539557009,0.2270744009217367,223.93628067332827,0.0841381308190847,80.48155270219581,151.19016,106.40408702870924,157915.7936516226,111137.4301800788,386.7192,252.69360016735737,403363.71042708977,263376.03552016086,363.718,176.0892368373898,376034.8648959171,180893.2400928253,3061.31091,1393.2232323428038,3161985.377215613,1419693.487996577,1140.22284,503.12024108274215,1177162.4069103105,511718.5543108404,1798.80108,749.957399465068,1844659.8009212357,754445.1171276593,0.38019,100000,0,687228,7177.9906205283005,0,0.0,0,0.0,33369,347.9387096437263,0,0.0,33398,345.05593215028046,1619483,0,58179,0,0,0,0,0,72,0.7415840653429565,0,0.0,2,0.0208896919814917,0,0.0,0.06028,0.1585523027959704,0.3060716655607166,0.01845,0.3312282917587622,0.6687717082412378,24.755778897695407,4.321920869481112,0.3253497244595167,0.2395082662144976,0.2238236540907164,0.2113183552352691,11.212325062293868,5.882309549031128,19.63284059914216,12146.55205625332,53.24117124205286,13.452280184348568,17.023424284906437,11.93009265035376,10.835374122444104,0.562950402713014,0.7849557522123893,0.6729641693811075,0.5814393939393939,0.1223671013039117,0.7342767295597484,0.8912529550827423,0.8501291989664083,0.7413127413127413,0.1773399014778325,0.4997098084735926,0.7213578500707214,0.6132404181184669,0.5294855708908407,0.1083123425692695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0043715071049668,0.0065895014722306,0.008578892265783,0.0106519350506653,0.0128748370273794,0.0152255274885528,0.0173864216436957,0.0194781292816097,0.0216667861275227,0.0236215628780577,0.0254032796311698,0.0277409338145326,0.0297216300553032,0.0318703313936692,0.0337994976588421,0.0358330140121583,0.0378991500710868,0.0399080803984569,0.0420043754557766,0.0565525593243342,0.0704637951057218,0.0834827654911336,0.0961627417998318,0.1080192259043764,0.1235355073383242,0.1353999851523475,0.1466950505588078,0.1578458284823173,0.1677748702329372,0.181584245830507,0.1937748831573481,0.2048496710705159,0.2158161703616249,0.2259664558702227,0.2355240140829476,0.245210385958648,0.2543379920329485,0.263201498042331,0.2715687509303044,0.2784380895066372,0.2848782086547353,0.2906164123945797,0.2949428098697935,0.3006283346094481,0.3062082917021302,0.3103409404043187,0.3152388346548893,0.3197273622557404,0.3238627357742907,0.3234025925027622,0.3225104648601013,0.3222336571130503,0.3220326731241867,0.3195864018448263,0.3186789620416041,0.3173349373941399,0.319120662784021,0.3196799617864819,0.3209473909324208,0.3216911420821251,0.3235241838326783,0.3242282272232912,0.3253313105171567,0.3259945739598089,0.3264142098135222,0.3265143313009288,0.3298230171953098,0.333602329742816,0.336428939953169,0.3391288516681079,0.3401093360225041,0.3399711037125447,0.3413727720894956,0.3471560661249649,0.3486811116344795,0.3487701184330398,0.3563102893890675,0.3577080491132333,0.3539923954372623,0.0,2.3236496942529192,55.84492437701339,167.14310163747285,265.3510407254729,fqhc4_100Compliance_implementation_low_initial_treat_cost,7 -100000,95787,44782,424.4626097487133,6136,62.98349462870744,4775,49.328196936953866,1903,19.53292200402977,77.34910350822409,79.67884307132313,63.34642956891118,65.06726060854989,77.1188960347449,79.44850973479139,63.26183434797549,64.9847901463498,0.230207473479183,230.3333365317428,0.0845952209356895,82.47046220009224,153.00956,107.67540626898106,159739.38008289225,112411.29408894846,386.7678,252.85166129027317,403209.2872728032,263403.1145043411,372.08112,180.5595955355671,385398.2168770293,186110.53825796457,3128.23439,1421.8103256803029,3234020.7439422887,1452543.02324982,1142.82578,502.373773073874,1182112.666645787,513491.65656495554,1865.3891,772.5491805839791,1916068.7984799608,779798.3226637703,0.38035,100000,0,695498,7260.880912858738,0,0.0,0,0.0,33373,347.88645640848966,0,0.0,34061,352.50086128597826,1611242,0,57879,0,0,0,0,0,63,0.6472694624531512,0,0.0,0,0.0,0,0.0,0.06136,0.1613250953069541,0.3101368970013037,0.01903,0.339605038096719,0.660394961903281,24.589925548251813,4.490653379960534,0.3112041884816754,0.2372774869109947,0.2255497382198953,0.2259685863874345,11.36071654240951,5.770447798852969,20.1571311646792,12133.889091372648,54.050488077880495,13.505290969086456,16.81728276240351,12.060338580462927,11.6675757659276,0.5505759162303665,0.7678729037952339,0.6783310901749664,0.5914577530176416,0.1056533827618165,0.7354581673306773,0.9202898550724636,0.8596938775510204,0.6941176470588235,0.1443298969072164,0.4846590909090909,0.6801112656467315,0.613345521023766,0.559610705596107,0.0971751412429378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0044902137666102,0.0065333617392539,0.0086235792424657,0.0108187253426607,0.0129585895191172,0.015257139362808,0.0174618564065928,0.0199858995187444,0.0219046060035603,0.0239724624021636,0.0260643810735651,0.0282921916428586,0.0303014708152783,0.0323535173366601,0.0341981862876737,0.0362678752509261,0.0382090976016921,0.0401280106398453,0.0422454547347814,0.0567364785190286,0.0701271806886165,0.0835421537687283,0.0960843246878809,0.1084743619465109,0.1233555586081553,0.1354671188596258,0.1469371697130158,0.1576661651568018,0.1682859683138196,0.1807371536185095,0.1928466395640515,0.2051505038536378,0.2152557569925864,0.2245728681914694,0.2348895927000509,0.2444402289744133,0.2533727571165175,0.2621435215645348,0.2697638750586592,0.2765873795950462,0.2834134531036176,0.2895073122249041,0.2948751737026211,0.3009421134421134,0.3059886365036913,0.3110265779068021,0.3156501711478998,0.3205772618924241,0.324742199981515,0.3244412109453943,0.3234391133750947,0.3218792248760703,0.3209751729516601,0.3207012231326446,0.3181046481393677,0.3161547338634459,0.3160086568730325,0.3171855010660981,0.3181801962533452,0.3188308164449185,0.3195229996440296,0.3207191350264018,0.3212934142463667,0.3230379746835443,0.3248444281754954,0.3265919102923508,0.3311936758893281,0.3352380952380952,0.3394554020602092,0.3422136775611096,0.3433918003945194,0.3431297709923664,0.3504633529907329,0.3531531531531531,0.3521634615384615,0.3542183622828784,0.3519885198851988,0.3527292878913826,0.3600944510035419,0.0,2.0706253784074384,55.10364225483911,178.4546882266634,265.4982530242553,fqhc4_100Compliance_implementation_low_initial_treat_cost,8 -100000,95665,44780,424.8262164846077,6015,61.69445460722312,4682,48.3457899963414,1860,19.024721685046774,77.31532774038504,79.70677716215337,63.31028192710126,65.07602007232856,77.08017459959676,79.47619038653659,63.221856017649856,64.99252044199639,0.2351531407882845,230.58677561678564,0.0884259094514021,83.49963033217023,151.80858,106.80559679349436,158687.69142319553,111645.42601107444,386.79504,253.69897550770952,403711.8381853342,264584.6082764956,368.34273,178.58029105450504,381863.96278680814,184115.9454523984,3098.88924,1413.1842576895851,3202188.177494381,1440096.521914582,1101.64103,489.67567001695926,1136752.657711807,497056.4679004432,1829.17652,771.9604638404156,1873221.8052579316,771705.6130420375,0.37985,100000,0,690039,7213.076882872523,0,0.0,0,0.0,33387,348.3823759995818,0,0.0,33666,348.7691423195526,1613601,0,57898,0,0,0,0,0,66,0.6794543458945277,0,0.0,1,0.0104531437829927,0,0.0,0.06015,0.1583519810451494,0.3092269326683292,0.0186,0.3362789963705223,0.6637210036294777,24.61929147280484,4.406418107453724,0.3184536522853481,0.2362238359675352,0.2159333618111918,0.2293891499359248,11.046616285139942,5.5302564712549245,19.84077253550081,12147.095131056416,52.991300823994045,12.953142064659096,17.01081826819972,11.235540169667232,11.791800321468,0.5553182400683468,0.7757685352622061,0.6908115358819584,0.5816023738872403,0.1154562383612663,0.7235576923076923,0.9245810055865922,0.8557692307692307,0.7291666666666666,0.1752136752136752,0.494175888177053,0.7045454545454546,0.6269767441860465,0.5356679636835279,0.0988095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0044607554897706,0.0066776269053563,0.0089407270436673,0.0108133951822916,0.0131194295900178,0.0151362157420723,0.0173537342703056,0.0194101284463715,0.0217402435153041,0.0238962104507461,0.0260914227015921,0.0283727341933625,0.0302221581073283,0.0323912549804909,0.0344406751613437,0.0365339384331644,0.0384435749203416,0.0404010984438711,0.042502188685538,0.0571924105650284,0.0707704228006617,0.0839674626082393,0.0963610725259923,0.1076060916277057,0.1229318174600654,0.1348114169215086,0.1471985513421389,0.1587160768301677,0.1692608256939822,0.1821170637059394,0.1947022449399508,0.2065579481373424,0.2162869087486593,0.2259240495175999,0.2367621287073803,0.2458168576726314,0.254796925466188,0.2637338933984219,0.2709911851350887,0.2775538568450312,0.285220873189636,0.2913972382102844,0.2964096287229702,0.3011459611855777,0.3061911336850929,0.3110162275868977,0.3156890189591551,0.3204173840995301,0.325310907506667,0.3242456896551724,0.3234747407988764,0.3221804458338614,0.3203279779034287,0.3189905025192848,0.3174933766213877,0.3153739042374758,0.3155558467510769,0.3162903335834641,0.3161224780779924,0.3172791301586115,0.3181692641546656,0.3195543828789211,0.3203495128273889,0.321464634322258,0.3221270279419806,0.323195979325509,0.3265319014529375,0.3303943006277773,0.3328545780969479,0.3349791980981118,0.3361563864919569,0.3388649607296681,0.3392266892151587,0.3397569774064932,0.3439923636797518,0.3480310171810856,0.3506986027944112,0.3544303797468354,0.3553530751708428,0.0,2.370134219035065,54.52850936447861,173.98370557199996,257.7877728208044,fqhc4_100Compliance_implementation_low_initial_treat_cost,9 -100000,95632,45038,426.0289442864313,6114,62.66730801405387,4796,49.62773966873013,1911,19.60640789693826,77.3146043072854,79.73384619000556,63.296484254502126,65.08317713884912,77.07382979426448,79.49519084920266,63.20602009440187,64.99639997431498,0.2407745130209235,238.6553408029073,0.0904641601002538,86.77716453414064,151.70584,106.76578672617272,158635.01756734148,111642.32341284584,387.18043,253.72349247387655,404350.3638949306,264797.7690248835,376.35768,183.3757704555924,390510.1325916011,189380.37109442067,3149.33471,1451.1800299655772,3260134.7770620715,1484416.7328567614,1122.81836,495.2673403277437,1163386.9834365067,507172.515818704,1866.16014,792.5799558224088,1917020.7880207463,798486.3149567421,0.38222,100000,0,689572,7210.68261669734,0,0.0,0,0.0,33339,348.0947799899615,0,0.0,34458,357.3280910155596,1612424,0,57820,0,0,0,0,0,71,0.7424293123640622,0,0.0,0,0.0,0,0.0,0.06114,0.1599602323269321,0.3125613346418057,0.01911,0.3320883909119203,0.6679116090880797,24.326181054971983,4.344887185514162,0.329441201000834,0.2310258548790658,0.2253961634695579,0.2141367806505421,11.306990548328988,6.017228382095558,20.515436820650013,12299.388250459357,54.502380578740215,13.218176012323916,17.85212083481866,12.068721263928726,11.363362467668898,0.5623436196830692,0.7924187725631769,0.6879746835443038,0.57631822386679,0.1061343719571567,0.7084927314460597,0.9032258064516128,0.8609756097560975,0.704119850187266,0.092511013215859,0.5075952995127544,0.7290780141843972,0.6273504273504273,0.5343980343980343,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0045735262800296,0.0069334470296828,0.0092872021541431,0.0116373697916666,0.0138317376247708,0.0159933089217776,0.0184390642557973,0.0207628028761084,0.0229595494111623,0.0250976933096749,0.0271500184903644,0.029176354396,0.0312825215608288,0.033537718320327,0.0356522458433286,0.0377577453113667,0.0396615272802782,0.0419636446876918,0.0440355872628471,0.0588800970011184,0.0727440340254352,0.0868775334467477,0.0989515348014653,0.1118324518900887,0.1274567943070145,0.1387566924449732,0.1502504529468187,0.1612696171250682,0.1717444083965365,0.1850733065064244,0.1970237256538374,0.208906273834688,0.2189964943032427,0.22880888869293,0.2394016069605362,0.2490947293128883,0.2575694405318609,0.266002295376294,0.2737794805909883,0.2809347894060289,0.2875146267259537,0.2934072179596476,0.298339029801523,0.3032551925179157,0.3092365518516236,0.3135925124188241,0.3185939745399514,0.3225151079881465,0.3264016256086136,0.3248959918139835,0.3230593607305936,0.3215765296057267,0.3208013886879792,0.320399476096922,0.3196054972697711,0.3178394151323406,0.3180755810125749,0.3191398144496081,0.3202483405199406,0.3217977528089887,0.3233833786499586,0.3242690485631404,0.3253122212310437,0.3256453812474579,0.3271752085816448,0.3286001757220191,0.3319292333614153,0.3351104606592794,0.3374245234618572,0.338700194473339,0.3417326994189117,0.3421517868417729,0.3435718087128411,0.3451900516189582,0.3513062149588453,0.3553590817434465,0.3536984062116878,0.3563566318106769,0.3666796418840015,0.0,2.0348771661831453,57.58088070416345,178.70086983405952,260.7277065092518,fqhc4_100Compliance_implementation_low_initial_treat_cost,10 -100000,95653,44732,424.0954282667559,6069,62.319007244937424,4718,48.82230562554232,1792,18.399841092281477,77.29129418892526,79.6910696257347,63.29829466637945,65.06981853118505,77.0664512013534,79.46747758479827,63.215111934555416,64.98949907146087,0.2248429875718613,223.59204093642404,0.0831827318240314,80.31945972417986,151.39014,106.46242066898462,158270.14312149124,111300.66037550794,387.34397,254.4575510246465,404464.4182618423,265538.9073261127,372.32,181.27536004644085,385957.1890060949,187002.4840676962,3065.05896,1401.830624395833,3173440.216198133,1434625.6096471972,1119.10013,490.8246305902049,1157486.4457988772,500658.6417469448,1761.7784,736.9963608496279,1811013.3712481572,744172.5684650684,0.37966,100000,0,688137,7194.097414613237,0,0.0,0,0.0,33456,349.24152927770166,0,0.0,34061,352.83786185482944,1613152,0,57924,0,0,0,0,0,71,0.7422663167909004,0,0.0,0,0.0,0,0.0,0.06069,0.1598535531791603,0.2952710495963091,0.01792,0.3198992443324937,0.6801007556675063,24.616249245204692,4.392259881427653,0.3348876642645189,0.2361169987282746,0.2066553624417126,0.2223399745654938,11.381424174202763,5.919428049632306,19.14654131485426,12150.902232966144,53.46045247642444,13.26845579722228,17.71248612654826,11.037633790911888,11.441876761742016,0.5669775328529038,0.77737881508079,0.6974683544303798,0.6051282051282051,0.111534795042898,0.7345971563981043,0.909313725490196,0.8740740740740741,0.7629310344827587,0.1266968325791855,0.5055040556199305,0.7011331444759207,0.6365957446808511,0.5558546433378196,0.107487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360138974707,0.0044611173071073,0.0066380439085289,0.0088507265521796,0.0112525308020226,0.0132708662219279,0.0153455553969451,0.0176139032409581,0.0196098478652053,0.0218602174758872,0.023976536221183,0.0262720046011954,0.0283418719009114,0.0303976423794656,0.032477520724292,0.0343696992263456,0.0364282679213605,0.0385941231440141,0.0407666375327756,0.0427031422673533,0.0571219563172745,0.0706938450580299,0.0836982201921562,0.09696331772012,0.1084760789032074,0.1245567798135035,0.1365407276085733,0.1483122610057199,0.159108402822322,0.1696241666935042,0.1826895086951365,0.1942158603664082,0.2058839535465894,0.2161123639787182,0.2264552247030041,0.2366979395391132,0.2456683237446238,0.254806393516434,0.2631584921508757,0.2706161354627317,0.277248003703275,0.2843590253488834,0.2899280064415289,0.2952695005695785,0.3008511673151751,0.3062685093780849,0.3108223263740945,0.3147581919176476,0.3192667211180688,0.3244017370414857,0.3238197858441646,0.3233499951804574,0.3217831556382918,0.3206313383389031,0.3193268558334697,0.3172688914461066,0.3148902448688485,0.3152674518060399,0.3159885661468942,0.3172820742065266,0.317033812436672,0.3188939727058451,0.3188144167593778,0.3196660773035518,0.320650086422124,0.3217622108303625,0.3232515250390126,0.3267193279418218,0.3304924242424242,0.3339691622953425,0.336521382702555,0.3428813469582252,0.3439828261144084,0.3434506016708822,0.3466540104413858,0.3518652226233453,0.3583203732503888,0.3579710144927536,0.3628244487859335,0.3574173712528824,0.0,1.986773792411856,55.70526667246666,173.59830889804044,261.6229241950465,fqhc4_100Compliance_implementation_low_initial_treat_cost,11 -100000,95624,44967,427.63323015142646,6070,62.00326277921861,4723,48.72207813937924,1821,18.614573747176443,77.27514686010801,79.68609900478185,63.27600815666828,65.05645141719016,77.04627256141225,79.46327028521853,63.190232975491554,64.97613399387554,0.2288742986957572,222.82871956332428,0.0857751811767286,80.3174233146251,150.9178,106.26696362339108,157823.95632895507,111129.79652115688,386.67185,254.0498645033128,403667.4684179704,264976.923675346,375.22295,183.04375180697724,388994.5934075128,188691.0358681178,3074.9558,1410.284256272809,3172938.4987032544,1432147.8326505986,1112.93426,497.9778175132509,1143947.3458545972,500910.081100591,1793.38248,759.8633978051338,1834764.849828495,757185.51147972,0.38126,100000,0,685990,7173.816196770686,0,0.0,0,0.0,33334,347.8624613067849,0,0.0,34355,355.8207144649879,1611496,0,57802,0,0,0,0,0,62,0.6483727934409772,0,0.0,1,0.0104576257006609,0,0.0,0.0607,0.1592089387819336,0.3,0.01821,0.3333856045162302,0.6666143954837698,24.433224882231,4.374470626462951,0.324370103747618,0.2333262756722422,0.2197755663773025,0.2225280542028371,11.148514455158807,5.739010434848303,19.43742438611494,12101.97541099668,53.55406339212999,13.140093757569767,17.194735674220812,11.556066970181488,11.66316699015792,0.5602371374126615,0.7976406533575318,0.6847258485639687,0.5789980732177264,0.1113225499524262,0.7175815433571997,0.9240196078431372,0.8668407310704961,0.7076271186440678,0.1130434782608695,0.5031736872475476,0.723342939481268,0.6240208877284595,0.5411471321695761,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670447180816,0.0047028774717979,0.0068692608188321,0.0090401218892839,0.0111575585593832,0.0132801042854815,0.0153566912754415,0.0174372900736082,0.0195986218600799,0.0217582732634338,0.0236940088006318,0.025754556101169,0.0279129584855188,0.029974437206234,0.0317637339942172,0.0338281694511974,0.0358112730363398,0.0379486540378863,0.0397415084915084,0.0416831786421941,0.0569206810414206,0.0705738117193394,0.0838980112830533,0.0965485271187154,0.1089760518893337,0.1242612324443408,0.1356713959296455,0.1470804592799496,0.1580383804437404,0.1673527736276965,0.1798600764397227,0.1922388642451981,0.2041425923907118,0.2150925600982628,0.2253418534582657,0.2349281818282807,0.2441574140401146,0.2534303768900925,0.2622461986706728,0.2707541427898804,0.2777571567763188,0.2841294226642117,0.2907511982157262,0.2955156842964884,0.3009014269552206,0.3066622235387046,0.3119004927714318,0.3158873504948477,0.3201230194261689,0.3238755057249385,0.3226820254120693,0.321203185713892,0.3200704970038773,0.318340200968698,0.317155085299887,0.3149696746921522,0.3132257554184464,0.3135288614617013,0.3141104294478528,0.3150140734670609,0.31580820378348,0.3178300694883133,0.3176261251831693,0.3189088959385193,0.3191075459916422,0.3202610979637479,0.3235394407819959,0.3257668519041788,0.3291476674850929,0.3298437623919422,0.3328642121033277,0.3362935389524062,0.3385253108905916,0.344464637286082,0.3479691613388492,0.3513835877862595,0.3501305884160393,0.3537898801056696,0.3551581843191196,0.3668706962509563,0.0,2.479663554836392,54.878159337135806,176.48694254055775,260.2215434852338,fqhc4_100Compliance_implementation_low_initial_treat_cost,12 -100000,95687,44820,424.8016972002466,6123,62.63128742671418,4759,49.1811844869209,1901,19.54288461337486,77.28391542799022,79.68264333612825,63.28504443165552,65.05998346918527,77.05434792740934,79.45135144874033,63.20049285605811,64.97663954001476,0.2295675005808846,231.2918873879255,0.0845515755974091,83.34392917051048,152.09524,106.96983927225943,158950.78746329175,111791.40246037544,384.79121,252.42399742001527,401590.3205242091,263264.98607423226,373.15306,181.45841239287068,386314.2851171006,186884.51477985107,3132.2832,1434.2258697887903,3240481.6641759067,1466457.081616986,1135.89655,502.95337976236806,1176112.1468956077,514666.3642831065,1853.2612,773.5410619821301,1906802.2406387487,784629.9068040525,0.38025,100000,0,691342,7225.03579378599,0,0.0,0,0.0,33255,346.96458244066594,0,0.0,34163,353.3395341059914,1611310,0,57849,0,0,0,0,0,56,0.5852414643577497,0,0.0,1,0.0104507404349598,0,0.0,0.06123,0.161025641025641,0.3104687244814633,0.01901,0.3344806007509386,0.6655193992490613,24.472684037388305,4.343924981334599,0.3252784198361,0.2303004832948098,0.2290397142256776,0.2153813826434124,11.338477695626626,5.911208367022744,20.308909690490005,12176.04893400019,54.18599360517205,13.0516727802373,17.675686294257215,12.20885829808287,11.24977623259464,0.5662954402185333,0.7801094890510949,0.6976744186046512,0.581651376146789,0.1229268292682926,0.7377431906614786,0.9029850746268656,0.8732057416267942,0.7529880478087649,0.1448598130841121,0.5028785261945884,0.7089337175792507,0.6327433628318584,0.5303933253873659,0.1171393341553637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024928558399708,0.0046758357676079,0.006842848005523,0.0091564110120832,0.0114160129422178,0.0135787629370059,0.0155948799020857,0.0176900763982514,0.0195960112503196,0.0218197463582536,0.0238217370786055,0.0260983929965887,0.0282153918975931,0.0302374474400197,0.0321135483870967,0.0341375637300019,0.0360588131676838,0.0382503451354072,0.0406390746731295,0.0427514330380406,0.0579331668947362,0.0718623057916998,0.0852783141633783,0.0984669128865599,0.1110161263086795,0.1264355649642762,0.1380866425992779,0.1489393423070369,0.1589973812196034,0.1693856523419053,0.1820484355970382,0.1940403591815513,0.2055089820359281,0.2159915902894123,0.2260314731552499,0.2362205598348465,0.2456934616631454,0.2539666441289159,0.2621106578334337,0.2696502919013155,0.2765999374050933,0.2838454054180782,0.2908280058355375,0.296343425127848,0.3016344363446068,0.3069927567527548,0.3116393298833436,0.3162906757651372,0.3213614749744108,0.3251039123837171,0.324222380881818,0.3228425557680928,0.3223295230587308,0.3209598475332438,0.3204407566024268,0.3196106981377883,0.3189083017851769,0.3190117623898814,0.3185182652694918,0.3187911066628539,0.3197386210004506,0.3213052965681412,0.3226526785902378,0.3223798071520082,0.3220297929029914,0.3224750582628505,0.3244469815898387,0.3280204519631359,0.3298914761352861,0.3344154558771131,0.334364058023737,0.3356972744112199,0.3372637095264832,0.3383222330315049,0.3366052412260394,0.3406374501992031,0.3413855970829535,0.3464487489911219,0.3498752425838647,0.3594646271510516,0.0,2.1076840072711707,56.59870328628069,179.16805622442018,259.5800082616985,fqhc4_100Compliance_implementation_low_initial_treat_cost,13 -100000,95650,45003,426.85833768949294,6074,62.16414009409304,4815,49.69158389963408,1856,18.99634082592786,77.35161970545354,79.75685787223436,63.31721993396855,65.09396523287667,77.12765644871081,79.53575954123687,63.23258153347411,65.0129152636496,0.2239632567427349,221.0983309974921,0.0846384004944411,81.04996922706675,151.41632,106.48117971168136,158302.477783586,111323.76342047186,384.46889,251.99719772118905,401318.7140616832,262822.56155731244,372.53214,180.3970227910421,385300.5541035024,185436.1398749294,3147.89314,1436.872969551101,3248971.813904861,1460151.0860659007,1117.87892,492.40238034513095,1149399.194981704,495516.2131488872,1815.24448,764.744153691226,1858573.214845792,765755.1116188604,0.38107,100000,0,688256,7195.567171981181,0,0.0,0,0.0,33089,345.2483010977522,0,0.0,34064,351.98118139048614,1619663,0,57972,0,0,0,0,0,79,0.8154730789336121,0,0.0,0,0.0,0,0.0,0.06074,0.1593932873225391,0.305564702008561,0.01856,0.3254531126871552,0.6745468873128447,24.5412607116172,4.273686229499708,0.3202492211838006,0.2375908618899273,0.2274143302180685,0.2147455867082035,11.37641375021246,6.036758775677123,19.55746852852301,12214.455486144248,54.14407113184385,13.620640208070425,17.140547948083107,12.09958998950175,11.283292986188574,0.5721703011422637,0.7823426573426573,0.6984435797665369,0.6082191780821918,0.1131528046421663,0.725705329153605,0.9176470588235294,0.8563685636856369,0.7034220532319392,0.1598173515981735,0.5168126589432043,0.7023643949930459,0.6487638533674339,0.578125,0.1006134969325153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.004634183440653,0.0067996833580287,0.0089104283508087,0.0109247373078761,0.0129965369729069,0.0150410442053739,0.0175429639235788,0.0196523517382413,0.0219297347126907,0.0238935511008063,0.0261730069671373,0.0281248070471525,0.0299384529737419,0.0319578577699736,0.0341927207266858,0.0364408975488417,0.0388041108688882,0.0407728000998772,0.0426767597777013,0.0571339010501018,0.0710523835949197,0.0841992568801561,0.0967422871332968,0.1089780798497145,0.1243623123981287,0.1367521367521367,0.1487790059370903,0.1590716983554637,0.1683636207415045,0.1809141698483574,0.192638581892255,0.2036103519984321,0.2144866924314915,0.2249440999262008,0.2351219187651774,0.2445629093184917,0.2529840998153236,0.2616422334010878,0.2696999896903673,0.2770108425230563,0.284239448146849,0.2913546952438404,0.297497005988024,0.3027368165544026,0.3086278419931804,0.3135829304550963,0.3187169035010858,0.3234397602810498,0.3277443638708658,0.3269768316938128,0.3264146281195947,0.3255598195082866,0.3234437620736384,0.3231832063332048,0.3220445136947589,0.3208738477080439,0.321722754441988,0.3225482006784746,0.3231342219687789,0.3245958688819039,0.3257042600587458,0.3272495400568657,0.3277896517944608,0.3288624300674221,0.3299930086226986,0.3321627821358783,0.3356573393778334,0.3375667283067583,0.3425615102089175,0.3424831272364905,0.345111834505933,0.3497383503613256,0.3529500642139457,0.3541588959343528,0.35850622406639,0.3559944878272852,0.3572291582762787,0.3585365853658536,0.3654708520179372,0.0,2.467641293041732,55.65329794243843,172.5600413661339,270.7922583226785,fqhc4_100Compliance_implementation_low_initial_treat_cost,14 -100000,95795,44887,424.74033091497466,6065,62.25794665692364,4778,49.34495537345373,1861,19.103293491309568,77.3507064425629,79.67979350974956,63.34838135415546,65.07024252397063,77.11732613630663,79.44764421331314,63.261891060421256,64.98690167896414,0.2333803062562651,232.14929643641824,0.0864902937342009,83.34084500648942,152.00834,106.92132027354968,158680.64095203296,111614.50961479163,386.95692,253.79772346705352,403392.2960488544,264389.25194893626,373.32347,181.27088300183,386530.0381021974,186793.91252895465,3144.63533,1435.548119751392,3248036.1292343023,1464016.4099960972,1143.81774,509.0108406483513,1178927.1151939034,516254.8469631524,1830.3979,770.1552591058489,1879827.4231431703,775004.1348022352,0.38149,100000,0,690947,7212.75640691059,0,0.0,0,0.0,33290,346.94921446839606,0,0.0,34105,352.8263479304765,1617295,0,58047,0,0,0,0,0,82,0.8559945717417402,0,0.0,1,0.0104389581919724,0,0.0,0.06065,0.1589818868122362,0.3068425391591096,0.01861,0.3245875883739199,0.6754124116260801,24.53523128972787,4.280510681346353,0.3107994976977815,0.2314776056927584,0.2329426538300544,0.2247802427794056,10.84878121817615,5.621062004981474,19.87686649909129,12248.25230861104,54.2626727272144,13.223386422558582,16.820939097079542,12.422815635867073,11.795531571709224,0.554416073670992,0.7703435804701627,0.694949494949495,0.5804132973944295,0.1108007448789571,0.7130365659777425,0.9112271540469974,0.8649350649350649,0.7142857142857143,0.1298701298701298,0.4977272727272727,0.6957123098201936,0.6354545454545455,0.5398126463700235,0.1055753262158956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002552570803452,0.0049574209245742,0.0073061584827544,0.009405980822363,0.011611355132585,0.0135298848585419,0.0158982511923688,0.0181649335143023,0.0202847011455491,0.0224416700777732,0.024376498555239,0.0264626813601756,0.0285491131071054,0.0306864036893683,0.0328837468291777,0.0348974152358519,0.0370642467638628,0.038854678526259,0.0408548996801395,0.0429541101024402,0.0575462248007012,0.0715181932245922,0.0847965783652888,0.0975461089800851,0.1099635351895959,0.125499439781832,0.1379036106250994,0.149614762472331,0.160038859412198,0.1701926992905065,0.1836919202247312,0.1962822868258943,0.2072468491960017,0.2179057191238324,0.2275345748774213,0.2378292275527925,0.2466709011689455,0.2560072795084085,0.264233907524932,0.2710755148741419,0.2784630309749844,0.2860229117279553,0.2927230157979377,0.2986087831042575,0.3040697956608261,0.3089557016571865,0.3129491457638134,0.3179367864317136,0.3226507895418068,0.3265246955880027,0.3258452645022518,0.3243703948091939,0.3242440452728194,0.3236849710982659,0.3231939163498099,0.320423290146712,0.3177462022208493,0.3167727399805943,0.3172192001094803,0.3190405547909703,0.3205147473229382,0.3214972160025363,0.3218340060544904,0.3234791601097073,0.325182666570209,0.3276633606364326,0.3283030754252334,0.3317728926142654,0.3346621979185041,0.3378233400882107,0.3394818747711461,0.3421546043820646,0.3441146626078133,0.3476087959403352,0.3494760691022373,0.348634791939907,0.3514015796809664,0.3504043126684636,0.3527262507026419,0.3489644392340758,0.0,2.064750167821501,55.23272791594578,184.64885229713235,259.2525871150651,fqhc4_100Compliance_implementation_low_initial_treat_cost,15 -100000,95738,44802,422.9877373665629,6199,63.57976978838079,4790,49.4787858530573,1903,19.501138523888116,77.31652017658898,79.67705315676531,63.31665033110207,65.06228661912581,77.0783562081365,79.4407652868315,63.228534679884696,64.97772946375999,0.2381639684524827,236.287869933804,0.0881156512173717,84.55715536582886,151.94234,106.97706783946174,158706.177275481,111739.17132117004,386.66393,252.5853530301524,403322.9543128121,263275.5572814895,374.87043,181.8172539175856,388398.97428398335,187509.4940942592,3147.55943,1437.1312039689542,3252131.5465123565,1465559.6251947542,1163.59978,517.605185752341,1198348.565877708,523606.2497152035,1864.30436,783.9537597292383,1911447.471223548,786666.6770571488,0.38106,100000,0,690647,7213.9171488855,0,0.0,0,0.0,33339,347.6467024587938,0,0.0,34287,354.9269882387349,1614340,0,57949,0,0,0,0,0,65,0.6789362635526124,0,0.0,0,0.0,0,0.0,0.06199,0.1626777935233296,0.3069849975802549,0.01903,0.3296906264429737,0.6703093735570264,24.964978261808334,4.403402331718115,0.3223382045929018,0.2279749478079332,0.2283924843423799,0.2212943632567849,11.255943329015183,5.75017643494878,20.276155343853183,12257.280114872692,54.22867047374287,13.082896666194522,17.39424423483094,12.181677716785078,11.569851855932344,0.5597077244258872,0.7728937728937729,0.7040155440414507,0.5722120658135283,0.1169811320754717,0.7406542056074766,0.916279069767442,0.8645833333333334,0.8060344827586207,0.1596638655462184,0.4934398174557901,0.6797583081570997,0.6508620689655172,0.5092807424593968,0.1046228710462287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024513528023419,0.004795166310155,0.007338239025628,0.0099881118099515,0.0124409993489583,0.0146049334935734,0.0168276340346547,0.019045576626533,0.0213188004212635,0.0236089070898387,0.0258489869575916,0.028093521855651,0.0300780486801649,0.0320348460041395,0.034245515590993,0.0361932510900336,0.0380514667826015,0.0400390017218845,0.0420980416614693,0.0440680085010626,0.059114637711422,0.0734787840736671,0.086716234780876,0.0993974953471499,0.1115164807355701,0.1267490930628563,0.1389472344217427,0.1500484336246447,0.1608795059723498,0.1700981706989968,0.1834595537936161,0.196145063365115,0.2077782248855343,0.2181776431609679,0.2276335054326886,0.2375811850242724,0.247180346175321,0.2559413962281136,0.2640080824592472,0.2718274198907053,0.2781120548008609,0.2849155476535816,0.2903034894181147,0.2955780232432627,0.3005688309794103,0.3060894668015495,0.3108781685201883,0.3159857926697305,0.319978763903816,0.3242155011947352,0.3237139779154322,0.3226322025958279,0.3219968093967501,0.3219038241554567,0.3211239935108425,0.3191975583196577,0.3177322724823279,0.3179865352010666,0.3191270684161841,0.3195591792850103,0.3208015338922516,0.3216011725558548,0.321503614052782,0.3228982127239701,0.3243002145767534,0.3255880665519219,0.3272556069166238,0.3292499057670561,0.3323748071258241,0.3358318461233393,0.3399599672459285,0.3434225224745997,0.3456479325319403,0.3491702659695385,0.3511938334273359,0.3530536632006693,0.356162270553756,0.3611337683523654,0.3608247422680412,0.3563129357087529,0.0,2.0659239893738546,56.463605497684064,172.44523870045876,270.4703120376349,fqhc4_100Compliance_implementation_low_initial_treat_cost,16 -100000,95686,44734,424.3776519030997,6115,62.75735217273164,4767,49.317559517588776,1867,19.187759964885142,77.40264542862671,79.78397517350113,63.35728834693722,65.11251883499416,77.17503313328828,79.55635735877021,63.273607273108176,65.03061869783077,0.2276122953384316,227.6178147309196,0.083681073829041,81.9001371633874,151.28454,106.38967510631416,158105.19825261793,111186.24992821748,384.02058,251.31292206917692,400847.1876763581,262156.4095783886,368.56936,178.85811123944134,382149.9801433857,184441.06313312447,3151.65508,1413.7387323831972,3264566.415149552,1448296.1691189911,1133.60023,489.4375960523525,1174905.921451414,501701.23743531207,1833.51938,757.9737720014997,1886913.2997512696,767890.5129648347,0.37908,100000,0,687657,7186.599920573543,0,0.0,0,0.0,33085,345.2438183224296,0,0.0,33535,347.5325543966724,1624097,0,58151,0,0,0,0,0,87,0.8883222205965344,0,0.0,1,0.0104508496540768,0,0.0,0.06115,0.1613115964967816,0.3053147996729354,0.01867,0.3307919713707795,0.6692080286292205,24.71671622290095,4.456146821131534,0.3224250052443885,0.2286553387874974,0.2204740927207887,0.2284455632473253,11.253116723309669,5.723321666510773,19.6122421989005,12166.545492131474,53.30679436801724,12.82784022404212,17.200730386593683,11.596188303653738,11.682035453727703,0.5426893224250052,0.7587155963302752,0.6727391021470397,0.5832540437678402,0.1037649219467401,0.72982158028887,0.8891891891891892,0.8624338624338624,0.7619047619047619,0.1414141414141414,0.4813370473537604,0.6916666666666667,0.6108714408973253,0.5329268292682927,0.095398428731762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025316199329627,0.0048040378241965,0.0069588151754919,0.0089881478321806,0.0112974242686163,0.0135429607152312,0.0160265886406965,0.0179830783519253,0.0198150324459659,0.022053706660117,0.0243854937575596,0.0262298784494086,0.0284903507058327,0.03049464979042,0.0327067126142671,0.0346438463764521,0.0366328432387657,0.0387149661205134,0.0404030949706726,0.042281116796765,0.0565334113296633,0.0697727986598261,0.0831164742917103,0.0961597122150813,0.1081662571057932,0.1237238825707484,0.135840327663593,0.1472122283013646,0.1583941527841595,0.1685487243831033,0.1812689797764424,0.1937536523602363,0.2053047109487146,0.2156852025978002,0.225633635483587,0.2366142604074402,0.2457775449001661,0.2541736883496236,0.2626195115320132,0.2698552448032198,0.277167136193599,0.2845258097638383,0.2912042502951594,0.2964083673200894,0.3013891245848384,0.3065436654366543,0.3111491466979835,0.3154120499054436,0.3201322262825562,0.324344588995146,0.3231456873640976,0.3224055698700729,0.3212537003521472,0.3211392058946278,0.3198359587824233,0.3184538348803126,0.3172850621554597,0.3181833082016652,0.3192637744330178,0.3196689213243147,0.3205420560747664,0.3221641380394623,0.3228841430415053,0.3233239912807509,0.325050916496945,0.3271489450161106,0.3294940704718027,0.3326545955767182,0.336231985693748,0.338985736925515,0.3416211293260474,0.3422300356933567,0.3459285849234838,0.3467619337184555,0.3482680722891566,0.3491784037558685,0.350810149801284,0.3596473652574634,0.3654367878459034,0.3676525645825533,0.0,1.9304044686078108,51.51483288467968,182.70962083273875,265.5545374289118,fqhc4_100Compliance_implementation_low_initial_treat_cost,17 -100000,95725,45041,426.4612170279447,6173,63.201880386523904,4838,49.92426220945417,1950,19.85897101070776,77.33907921770925,79.70335728756795,63.32552877917672,65.0743191476443,77.09400517884654,79.4648608437937,63.23336440201261,64.98765651936468,0.245074038862711,238.4964437742525,0.09216437716411,86.66262827962612,151.48078,106.6011257734646,158245.5575868373,111361.61480643996,386.07202,252.8211911460926,402697.8845651606,263496.1829679734,378.05315,183.736374344862,391812.48367720033,189420.46369163156,3200.18848,1468.0265994134215,3304855.0430921908,1495420.2735792228,1148.69941,508.8422838305541,1185883.342909376,517518.64172507887,1914.38656,805.2601958161849,1953996.3854792372,803228.8587931952,0.3812,100000,0,688549,7192.979890310787,0,0.0,0,0.0,33284,347.04622616871245,0,0.0,34521,357.4196918255419,1616757,0,57988,0,0,0,0,0,68,0.7103682423609298,0,0.0,0,0.0,0,0.0,0.06173,0.1619359916054564,0.3158917868135428,0.0195,0.3374498301945045,0.6625501698054955,24.319809031024565,4.389773836811717,0.3288548987184787,0.2255064076064489,0.2178586192641587,0.2277800744109136,11.29827886810342,5.866010435480511,20.706838027186688,12263.85926187031,54.97626899147936,12.988541266665903,18.137030124161544,11.822796201922854,12.027901398729046,0.5584952459694088,0.768102658111824,0.7064739157762414,0.5920303605313093,0.1052631578947368,0.7281853281853282,0.9047619047619048,0.8710407239819005,0.735632183908046,0.1121495327102803,0.4964719164549817,0.6956521739130435,0.6431679721496953,0.544766708701135,0.1036036036036036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025725166099497,0.004907328547674,0.007226738934056,0.0093480734839863,0.0116476608038411,0.0138202853680147,0.0160913679702238,0.0181829319339656,0.0204298656414241,0.0225424527335668,0.0247469412452439,0.0266631061080698,0.0290333528740242,0.0312071789905317,0.0334544478622597,0.0354801348472627,0.0373666217756138,0.0394051350173312,0.0413161260802196,0.0431634439073178,0.0573143990811318,0.0710354497133051,0.0844045547004424,0.0975435349541515,0.1100635894840077,0.1252856054836252,0.1372249453604091,0.1489246166950596,0.1598824472348383,0.1699983904715918,0.1827675396055609,0.194936270209978,0.2067723578120409,0.2170725034199726,0.2269343435455807,0.2376316664818716,0.2476154310094489,0.2564651047589025,0.2647750110706134,0.2717277907070058,0.2789496839326649,0.285948305114494,0.2923730317405861,0.2985147921906815,0.3041478569001505,0.3100083669652524,0.3143506834253729,0.3195935217529374,0.323329455861445,0.3274589407639786,0.3263111194762244,0.3252715523167881,0.3239418753787825,0.3230010414255959,0.3221313912009512,0.3203945957538066,0.3187180339809669,0.3189363310653124,0.3200390270621865,0.3209772686593878,0.3227604587000994,0.323119832258575,0.3244341143706681,0.3242952779705796,0.3245866974240676,0.3270351863418697,0.3274952220669196,0.3301233635448137,0.3337665074459118,0.3371931081134853,0.3400539477895122,0.3436798803290949,0.3454222673091555,0.3478260869565217,0.3493568678997277,0.3539392501186521,0.3606861381548447,0.3653023824068417,0.361249309010503,0.3627338678885071,0.0,2.358947044548231,56.64443638020396,183.27617461320543,263.6827901189315,fqhc4_100Compliance_implementation_low_initial_treat_cost,18 -100000,95678,44972,426.5452873178787,6093,62.49085474194695,4763,49.11264867576664,1882,19.304333284558624,77.30793472821749,79.6823896538888,63.31631099018998,65.0695160393307,77.07535654130956,79.45220732326017,63.23096399089948,64.98763519679524,0.2325781869079293,230.18233062863655,0.0853469992905004,81.88084253545469,151.23548,106.41419715315202,158067.14187169465,111221.17639703174,385.64529,253.03096023872092,402400.3219130835,263795.49137599126,373.98421,182.12567998846777,385889.0549551621,186601.53170410596,3130.78357,1425.5183210971195,3229794.916281695,1447498.8305536506,1134.40085,500.4728600122293,1172024.1748364305,509476.7530763502,1845.33748,767.5195802019039,1894585.359225736,773162.1973649864,0.38158,100000,0,687434,7184.870085077029,0,0.0,0,0.0,33251,346.84044398921384,0,0.0,34202,352.56798846129726,1617092,0,58055,0,0,0,0,0,71,0.7316206442442359,0,0.0,0,0.0,0,0.0,0.06093,0.1596781801981236,0.3088790415230592,0.01882,0.3328102934253883,0.6671897065746116,24.500136545473843,4.36568269973688,0.3323535586815032,0.2378752886836027,0.2049128700398908,0.2248582825950031,11.358137399129006,5.787114773353034,20.12257987616957,12198.921310997324,54.074566353742064,13.681588254675273,17.845131592451004,10.85016069824716,11.697685808368634,0.5656099097207642,0.8067078552515445,0.6961465571699305,0.5409836065573771,0.1400560224089636,0.7515822784810127,0.9497716894977168,0.8465227817745803,0.7115384615384616,0.1641791044776119,0.498428122320663,0.7165467625899281,0.6423670668953688,0.4947916666666667,0.1344827586206896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025413603871777,0.0047930768918973,0.0068878767283092,0.0091512960104005,0.0113701082092588,0.0135941509510814,0.0156927124226325,0.0180091883614088,0.0202825655809769,0.0224380956280517,0.0242547258785418,0.0262320328542094,0.0281682898485144,0.0303183269805295,0.0325779621488865,0.0345501349130043,0.0365135941644562,0.0383932557439342,0.0404148635153129,0.0425871289915659,0.0575165310407504,0.0713986643498649,0.0848476582172234,0.0976356254864427,0.1096550415383966,0.1247726407512372,0.136872367737076,0.1482644469754223,0.1594376308704756,0.1695217050854366,0.1826170297541486,0.194119937694704,0.2060662064467032,0.2158123162025953,0.2250978925601654,0.2348439541940771,0.2444414694824681,0.2543251816688789,0.262431221283113,0.2705868880618379,0.277199074074074,0.2845515144427552,0.2907180385288966,0.2960546828156853,0.3011916342412451,0.3066332761747326,0.3117159792974673,0.3169177436211159,0.3215870462153255,0.3255380466395219,0.3248145650708024,0.3236814891416752,0.3224731789949181,0.3211207208773378,0.3206304749418985,0.3191081238682748,0.3176205440751674,0.3183929630361731,0.3200843635864812,0.3215417390214647,0.3234056146416626,0.3242611057149087,0.3247911681987995,0.3258203142486235,0.3268892370736411,0.3277559570568211,0.3292620137299771,0.3328178748382617,0.3370925546206604,0.3410167602213464,0.3430232558139535,0.3443077086995897,0.3462779077857188,0.3500611995104039,0.3523360075507314,0.3549727035366722,0.3592805320435308,0.3603513675384308,0.3726808281796182,0.3738282714660667,0.0,2.541609542685608,55.08997986324529,179.83146501877573,261.708013594597,fqhc4_100Compliance_implementation_low_initial_treat_cost,19 -100000,95706,45050,427.1728000334357,6179,63.454746828829954,4866,50.25808204292312,1943,19.91515683447224,77.38171245272493,79.7553895631299,63.34258245905804,65.09494022666499,77.14608367854709,79.5221827836861,63.25471117762942,65.01100218223492,0.2356287741778402,233.2067794437904,0.0878712814286259,83.93804443007014,151.27948,106.44812967131097,158066.8714605145,111224.09218994727,385.89724,252.33200082155145,402602.5223079013,263044.73358278844,375.43108,181.79981947378064,389093.4215200719,187483.4986852884,3216.10303,1460.1394149143223,3322749.921635007,1488002.2411492728,1151.25961,510.0837463075837,1186127.108018306,516183.8822096674,1908.552,793.4687731633261,1957487.743715128,796371.9548246798,0.3828,100000,0,687634,7184.857793659749,0,0.0,0,0.0,33218,346.4464087935971,0,0.0,34322,355.42181263452653,1619950,0,58100,0,0,0,0,0,86,0.8881365849581008,0,0.0,0,0.0,0,0.0,0.06179,0.1614158829676071,0.3144521767276258,0.01943,0.3279495462236579,0.6720504537763421,24.602415320210827,4.421124857229919,0.3127825729551993,0.2330456226880394,0.2256473489519112,0.2285244554048499,11.108134059901714,5.644830893948626,20.45290236852232,12321.203986379838,54.83792760284573,13.402289884650555,17.233986533597488,12.12507349059409,12.076577694003603,0.5503493629264283,0.7601410934744268,0.6931668856767411,0.5737704918032787,0.1178057553956834,0.7340339531123686,0.9077306733167082,0.8616187989556136,0.7448559670781894,0.1571428571428571,0.487737668779278,0.679399727148704,0.636523266022827,0.5251461988304094,0.1086474501108647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585480473181,0.0045717645389208,0.0068190120550391,0.0090506470552384,0.0111072685477144,0.0131568228105906,0.0155085393831251,0.0177120339744375,0.0200566328981936,0.022274541918313,0.0243994956070656,0.0266427104722792,0.0286401826390102,0.0307790562325528,0.0330024148108398,0.034822527114631,0.036798823431933,0.0388618510485954,0.0408840353614144,0.0426245909498301,0.0576925085379481,0.071568411905734,0.0847927137655687,0.0973562117976287,0.1094175228370709,0.1256966402639566,0.1378761512669241,0.1485685082461165,0.1591384983547711,0.1699993563474865,0.183316091210828,0.1952951620062139,0.2073630975039425,0.2182321045957409,0.2282631411067237,0.2390262263503415,0.2487481738393424,0.2576226198643618,0.2660790852787041,0.2744094443108561,0.2815092505814155,0.2880642559012311,0.2949746721583108,0.3004697648778851,0.3063785333381922,0.311539646355739,0.3166293568114456,0.3205775714013103,0.3250236218434098,0.3286533517895986,0.3284619521376714,0.3272667335137288,0.3257318908881167,0.3250886448153593,0.3247041748737467,0.3240859427455289,0.322344842829852,0.3239127945962743,0.3246322591616359,0.3252431500151135,0.3244752371703892,0.3248659940091439,0.3248103692589814,0.3255927863742625,0.3259479268964526,0.3283585956730146,0.3293180658692818,0.3320207512969561,0.3362510897994769,0.3413988059937532,0.3430633738877792,0.3468079470198675,0.3501483679525222,0.3539355924424386,0.3540665347281123,0.3584860747441085,0.3593199571144126,0.3617021276595745,0.3764510779436152,0.3831848120883379,0.0,2.269175038895114,53.975605391873934,186.5753398976396,269.3952940519635,fqhc4_100Compliance_implementation_low_initial_treat_cost,20 -100000,95869,45043,426.18573261429657,6088,62.35592318684872,4787,49.46333016929351,1946,20.00646715830978,77.44506122741345,79.7212243772414,63.40474875222951,65.08353539315502,77.21178343097343,79.48754077963717,63.31980184431412,65.00014853485311,0.2332777964400207,233.68359760422663,0.0849469079153877,83.38685830190684,151.26826,106.39893931505536,157786.41688136937,110983.67492625912,384.78537,251.62124357119285,400917.8253658639,262015.65007582525,370.72329,179.93049105486782,383345.99296957307,185108.09582913108,3157.7451,1431.8333284050102,3266191.459178671,1465910.0631121728,1167.35248,512.1914783340652,1205533.071170034,522141.1492078416,1912.55202,788.2650837969045,1968135.2053322764,799773.6625678457,0.38262,100000,0,687583,7172.109858244062,0,0.0,0,0.0,33210,345.9303841700654,0,0.0,33941,350.7807529023981,1623923,0,58387,0,0,0,0,0,54,0.542406825981287,0,0.0,2,0.0208618009992802,0,0.0,0.06088,0.1591134807380691,0.3196452036793692,0.01946,0.3365218754900423,0.6634781245099577,24.529979278043385,4.436980222886112,0.3187800292458742,0.2260288280760392,0.2201796532274911,0.2350114894505953,11.240987730645736,5.861441883223484,20.548578774067284,12239.990191655386,54.01467098570391,12.898494311686944,17.064079959232252,11.727032883903911,12.325063830880795,0.5579695007311468,0.7634011090573013,0.6965923984272608,0.6195445920303605,0.1146666666666666,0.7335473515248796,0.9396325459317584,0.8611825192802056,0.7701612903225806,0.131578947368421,0.4961875176503812,0.6676176890156919,0.6402814423922604,0.5732009925558312,0.1103678929765886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023684689973481,0.0048420263576413,0.0071585735578921,0.0092464780155089,0.0112280773060743,0.0132565545166902,0.0155015073739102,0.0175900149897519,0.0201166150986939,0.0221983640081799,0.0243088265410608,0.0263268550330752,0.028603707697838,0.030632502545851,0.0327014218009478,0.0346094693489951,0.0366815930173635,0.0385783120045593,0.0404775499610692,0.0426694134906514,0.0575128507230812,0.0715270668365961,0.0847816072699861,0.0980420959855623,0.110103517926275,0.1254063067246401,0.1369868815314409,0.148848920099013,0.1605339759241686,0.1709916639022354,0.1833372735283371,0.1959962856587557,0.207061990513096,0.2176727431503111,0.2270076760045243,0.2368837317345663,0.2468211248927373,0.2554293482535081,0.2643801924537283,0.2722437026699307,0.2793526011560693,0.2861852873778235,0.292403955336866,0.2981200713200186,0.3031630288397374,0.307888322623532,0.3125977845922774,0.3176289473014581,0.3222994936348213,0.3268256648374841,0.3275435244732664,0.3263587404517228,0.3249216675331244,0.3236382485493369,0.3223600461825394,0.3214699426899158,0.3188508572869389,0.319000163371998,0.3189523128765444,0.3200255849901391,0.3196197803839546,0.3205679353184776,0.3219304115088658,0.3224828324266476,0.3244026935704187,0.3252070514318353,0.326615074978031,0.3293786195022695,0.3325088831603149,0.3344533164677049,0.3356102003642987,0.3380131886832588,0.3414833952990107,0.3441478754410185,0.3478054791923405,0.3516654684878983,0.3555864626796476,0.3596600331674958,0.3563058035714285,0.3547880690737833,0.0,1.8584750370473613,54.88828386707399,177.37123050148247,268.4902364382136,fqhc4_100Compliance_implementation_low_initial_treat_cost,21 -100000,95688,45082,427.1172978847922,6087,62.3589164785553,4784,49.45238692417022,1874,19.239612072569184,77.29747507811412,79.69946148822385,63.28577397120039,65.06526949729496,77.06057701704587,79.4640385512429,63.19778099638536,64.98031392328284,0.2368980610682456,235.42293698095307,0.0879929748150374,84.9555740121275,151.07708,106.26749148778784,157885.0848591255,111056.23640141696,387.51935,254.41754788886803,404421.62026586407,265322.6778586347,375.06425,181.92517793528444,388396.8209179835,187434.8714246489,3154.69893,1439.0426939003298,3259702.6481899507,1467183.2049048278,1156.54194,513.2051232909118,1188867.924922665,516793.50947735726,1841.59662,774.6041215921413,1890550.581055096,779417.348010423,0.38244,100000,0,686714,7176.594766323886,0,0.0,0,0.0,33304,347.4730373714572,0,0.0,34269,354.55856533734635,1614339,0,57948,0,0,0,0,0,63,0.6583897667419112,0,0.0,2,0.0209012624362511,0,0.0,0.06087,0.159162221524945,0.3078692295055035,0.01874,0.3391822027259909,0.6608177972740091,24.53956000698536,4.432165799023441,0.3072742474916388,0.2372491638795986,0.2259615384615384,0.2295150501672241,11.262940280294172,5.777573650885399,19.981642191129325,12314.770833367153,54.16204023407519,13.67983239604681,16.600621476317663,11.896664707946805,11.984921653763914,0.5566471571906354,0.7973568281938326,0.689795918367347,0.5670675300647549,0.1193078324225865,0.7201550387596899,0.9134615384615384,0.8411458333333334,0.7654320987654321,0.1619433198380566,0.4962793360045793,0.7301808066759388,0.6362799263351749,0.5095465393794749,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0041080883695453,0.0063861109701,0.0087084645869322,0.0112711588541666,0.0132718124223349,0.0154012484190771,0.0173607565204959,0.0197490207308467,0.0221093485985806,0.0242889233073143,0.0265558546156849,0.0285590831464373,0.0308722757483641,0.0328842083526921,0.0350231177401503,0.0370942332407445,0.0391967521207779,0.0413229159080742,0.0433749504971132,0.0578397576517288,0.0713238835032767,0.0846651905176665,0.0973500668006185,0.1101417781340984,0.1253901249457792,0.137586243498567,0.1494068031267971,0.1602189859070593,0.1706981887675674,0.1836270301749239,0.1959940604576049,0.2080728429215588,0.2181515403830141,0.2282022732033205,0.2388306429245021,0.2485834031852472,0.2575078288688129,0.2664636640458119,0.2743216754358815,0.2818807498899265,0.2889610009254812,0.295212482377054,0.3009963985594238,0.3061038234077247,0.3116043104193154,0.3164959953874885,0.3210041819665443,0.3248695381260222,0.328907169591726,0.3282719898503192,0.3271138957508177,0.3254995619117605,0.3239718285366489,0.3235836705546298,0.3212112853048902,0.3194018040829245,0.3200321327278391,0.3201076679330142,0.3209905114556816,0.32243618450515,0.3236208389076886,0.3252244727500522,0.3255902004454343,0.3268862045824945,0.3288140875798659,0.3298561764538684,0.3337410613473843,0.337059751182758,0.3415900443880786,0.3451806680622554,0.3505646572292031,0.3508882053857259,0.3517507958162801,0.355077905012202,0.3582407188460629,0.3563976679963179,0.3618874038072094,0.359757775942747,0.3629715165511932,0.0,2.020248759625675,56.82645801736852,176.52489369008356,262.36555785021886,fqhc4_100Compliance_implementation_low_initial_treat_cost,22 -100000,95824,44665,421.888044748706,6197,63.49140090165303,4786,49.30915010853231,1874,19.170562698280182,77.32864418348662,79.6393210208129,63.32870225298407,65.03839194292038,77.09349723711766,79.40569746399719,63.24063134066257,64.95333475096996,0.2351469463689568,233.623556815715,0.0880709123214984,85.05719195042616,150.6978,106.03233699169654,157265.1945232927,110653.21526099573,384.69752,252.20813535527603,400850.2358490566,262586.9775372308,370.55605,179.89915191527166,382328.1536984472,184375.34352384132,3138.28425,1440.5205807406735,3237140.246702288,1465388.212494445,1165.19054,521.8465037476865,1199527.1226415094,528146.2198903057,1841.3404,781.8161434801877,1886616.421773251,786506.9890403083,0.37998,100000,0,684990,7148.417932876941,0,0.0,0,0.0,33271,346.57288361997,0,0.0,33949,349.89146769076643,1618715,0,58219,0,0,0,0,0,67,0.6991985306395058,0,0.0,1,0.0104357989647687,0,0.0,0.06197,0.1630875309226801,0.3024043892205906,0.01874,0.3397416179637035,0.6602583820362965,24.379385965988423,4.375291966028399,0.3269954032595069,0.2340158796489762,0.2139573756790639,0.2250313414124529,11.060075363425346,5.60098730891202,20.106849418950247,12233.373472085485,54.46003383822482,13.5154134667465,17.791948599816457,11.299375097162768,11.85329667449909,0.5704137066443794,0.7928571428571428,0.7073482428115015,0.5908203125,0.1207056638811513,0.703206562266965,0.9095127610208816,0.8427518427518428,0.7172995780590717,0.1428571428571428,0.518722786647315,0.7198838896952104,0.6597582037996546,0.5527318932655655,0.1134401972872996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024510052159821,0.0045716255119004,0.0067468168213869,0.0092129855355111,0.0114500711816148,0.0137039299531663,0.0159922535929059,0.0182473185218447,0.0204488319332883,0.0226861089792785,0.0250929844155045,0.0272774852990979,0.0292273857727169,0.0313262438361523,0.0333903933012972,0.0352579002283034,0.0374812438557458,0.0393579960185799,0.0414758031846935,0.0434655897414546,0.0582737940026075,0.0715547795539849,0.0847500262027041,0.0970304520522035,0.1094914361001317,0.1247040419414848,0.1364769004018704,0.1481087407565037,0.1590525618846244,0.1690109136130706,0.1814334632696573,0.1936234204604466,0.2044105173876166,0.2149954635388769,0.2255413255875363,0.2362305033676001,0.2473814681644594,0.2564212280563469,0.2649199913688347,0.2728106899122555,0.2792838756058532,0.286237025743271,0.2930399886018237,0.2985401021327726,0.3043510019234983,0.3094121132811535,0.3133873476145086,0.3187012192011427,0.3229974160206718,0.3266073011630522,0.3260526422298072,0.324923789949929,0.3240417626199121,0.3225914054908558,0.3219680042899276,0.3197132726519209,0.3175595285308628,0.318296110042893,0.3195855169941446,0.3204913356628396,0.3210854542390022,0.3219006223451546,0.3230827162043429,0.3237408465797464,0.3255657521741219,0.3258793445360609,0.3251088534107402,0.3270015698587127,0.3302909497831864,0.3335571530136662,0.3363000635727908,0.3372413793103448,0.3389221556886228,0.3397249809014515,0.3408084424762084,0.3414983869040506,0.3465935070873343,0.3495047503537497,0.3522975929978118,0.3509521958802953,0.0,2.5319240033420845,58.69578410889738,171.93464186397597,262.3048263778947,fqhc4_100Compliance_implementation_low_initial_treat_cost,23 -100000,95751,44876,424.8101847500287,6177,63.34137502480392,4859,50.21357479295255,1841,18.903196833453435,77.35098256499538,79.69788835091987,63.33757887846742,65.0704573169602,77.12426242774592,79.47092307583486,63.25280203104866,64.98759905727384,0.2267201372494582,226.96527508500708,0.0847768474187589,82.85825968636118,150.81462,106.10314700614842,157507.09653162892,110811.52886773864,383.78114,251.72623874328485,400296.435546365,262391.3449607759,375.58226,182.9383864325428,388851.1869327736,188434.53147606007,3164.94759,1459.336477920872,3271759.532537519,1491143.2293429084,1142.74125,515.881711464063,1179553.717454648,524876.9636495311,1809.96584,767.6208340855159,1859214.1074244652,776110.4677780442,0.38148,100000,0,685521,7159.413478710405,0,0.0,0,0.0,33123,345.3749830288979,0,0.0,34406,355.8814007164416,1620628,0,58168,0,0,0,0,0,60,0.6266253093962465,0,0.0,2,0.0208875103132082,0,0.0,0.06177,0.1619219880465555,0.2980411202849279,0.01841,0.3370925382357485,0.6629074617642515,24.560161195954837,4.331033973252503,0.3249639843589216,0.2424367153735336,0.2144474171640255,0.2181518831035192,11.436939784484032,6.002136217208806,19.677974446103185,12247.622571209018,55.14446893288479,13.976523466026253,17.720848109623077,11.68243953176363,11.764657825471827,0.5671948960691501,0.7614601018675722,0.694743508549715,0.6180422264875239,0.1113207547169811,0.7216730038022814,0.9028436018957346,0.8634020618556701,0.7658730158730159,0.1581027667984189,0.5098758465011287,0.6825396825396826,0.6397984886649875,0.5708860759493671,0.0966542750929368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.0046928370886165,0.0066766105547268,0.008866905013407,0.0113674492379335,0.0135802343455731,0.015973333605162,0.0182686615909044,0.0203397452932398,0.0222602038727637,0.0243252385882545,0.0263090362249663,0.0286028602860286,0.0307592499150439,0.0327951720224893,0.0350180878552971,0.0371835361118301,0.0391835379331098,0.041046754623998,0.04306698614439,0.0578625412334544,0.0721496343874551,0.0857370534637685,0.0981643466924597,0.1103017141411372,0.1259130839244373,0.1375422892959031,0.1486751090773651,0.1600918656198258,0.1706390920987707,0.1834554071520896,0.1957881522844836,0.2078484261817232,0.2175225925034463,0.2265687774487897,0.2371906413822913,0.2472246420514195,0.2554567956795679,0.2636029328309082,0.2705646316996274,0.2782317807204371,0.2848748741718753,0.2908882236709774,0.296912626244474,0.3024836728252689,0.3088106757272469,0.313687975190076,0.3179044519590145,0.3217776281893617,0.326338572804899,0.3262916807005726,0.3246753246753247,0.3242572512302768,0.3232714959627239,0.3218055844657884,0.3202415066582895,0.3177690076553658,0.3182916605020466,0.3186961575276904,0.3198622560039967,0.3218892154476871,0.3230453486995303,0.324662006613369,0.3248945147679324,0.3261719218319146,0.3279875032543608,0.3297346440138644,0.3344632768361582,0.3368718790376087,0.3400545605503499,0.3432903577265299,0.34620886981402,0.3453734531063509,0.3497989225282646,0.3522471910112359,0.3538534390908014,0.3585226394683974,0.3617712776762137,0.3649695628112894,0.3684412102642665,0.0,2.068618247326133,57.709938985264905,181.58570175052495,265.10529054168137,fqhc4_100Compliance_implementation_low_initial_treat_cost,24 -100000,95849,44927,424.2819434735886,6083,62.35850139281578,4771,49.26498972341913,1901,19.499420964224974,77.51248185563044,79.79735611155357,63.42745123530996,65.11036703578215,77.27281267493589,79.55854656048764,63.33920614081204,65.0245263967311,0.2396691806945483,238.8095510659269,0.0882450944979211,85.84063905104244,150.6483,105.9639539402516,157172.53179480223,110553.0093587326,385.50146,252.4254768780444,401685.4531607007,262846.25491976377,369.29518,179.2117776916347,382173.4499055807,184602.13601473696,3152.38312,1422.1184230610029,3258364.4586797985,1453378.2824112496,1160.30774,506.1464948755087,1197101.2947448592,514707.92947117786,1865.32824,777.7599215054155,1915645.609239533,785610.6311468483,0.38082,100000,0,684765,7144.205990672829,0,0.0,0,0.0,33127,345.0844557585369,0,0.0,33783,349.2994188776096,1629801,0,58356,0,0,0,0,0,68,0.7094492378637232,0,0.0,1,0.0104330770274076,0,0.0,0.06083,0.1597342576545349,0.312510274535591,0.01901,0.3241422528591571,0.6758577471408429,24.85388974299153,4.421501560439803,0.3286522741563613,0.2249004401592957,0.2163068539090337,0.2301404317753091,11.21362988635076,5.791405662629882,19.89795201331813,12191.216454909309,53.22949722595437,12.724387618774026,17.423596574618973,11.28414858934967,11.797364443211707,0.5640326975476839,0.7996272134203168,0.6977040816326531,0.5852713178294574,0.1229508196721311,0.7396006655574043,0.9338624338624338,0.8708860759493671,0.7429906542056075,0.1534883720930232,0.5049033342673017,0.7266187050359713,0.639386189258312,0.5440097799511002,0.1155152887882219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020844716977313,0.0045776323918129,0.0068620196839619,0.0090511511806069,0.0114285133789796,0.0135970710871554,0.0155871393374193,0.0178250938162832,0.020034104949302,0.022098374066878,0.0242998310378372,0.0265616507194207,0.0286879771482588,0.0307206224399481,0.0329274955928289,0.0348691888988731,0.0370128929450963,0.0393236294268889,0.0414571820334898,0.0437539038101186,0.0583149969236544,0.072465889487166,0.0855756737499476,0.0984455414347232,0.110475829463731,0.1258066901148114,0.1371609661999597,0.1475936283788094,0.1589225876678121,0.1688763708019191,0.1812756073168371,0.1934905425988139,0.2052704727572802,0.2147139440664824,0.224210665084701,0.2348783967616709,0.244161429781165,0.2531959828349323,0.2625999501664892,0.2706418872582636,0.2776425530933127,0.2840065712055366,0.2901483525554848,0.2963201757527998,0.301633789180685,0.307495824737204,0.3124182028942153,0.3168162655559635,0.3202231987525612,0.3239423682553012,0.3239806514719084,0.3230628139671763,0.321885107038349,0.3216591186830566,0.322496229929921,0.3209857715828161,0.3190673149785299,0.3192223985861792,0.3197331018400313,0.3207449744493705,0.3223117324909815,0.3228749926095268,0.3233492882971385,0.3234717519158795,0.3237126691971639,0.3259952919264299,0.3275067175788431,0.3305103216365165,0.335509183708899,0.3381168374129976,0.3396927762103094,0.3407310704960835,0.3414664431613584,0.3447106690777576,0.3445073823010493,0.346037296037296,0.3494502184063865,0.3502578341927806,0.3551705468327016,0.3631915694392171,0.0,1.9679803898041572,52.480092398550624,174.07328400332008,272.13564499323206,fqhc4_100Compliance_implementation_low_initial_treat_cost,25 -100000,95743,45036,426.56904421210953,6067,62.07242304920464,4742,49.00619366428877,1901,19.48967548541408,77.31288813594676,79.67130028125933,63.318020272784125,65.06187834328254,77.0847964425759,79.4442893327824,63.23341932902979,64.98027937755162,0.2280916933708709,227.0109484769307,0.0846009437543315,81.59896573091885,152.31964,107.18500388865549,159092.19472964082,111950.74719682428,384.99028,252.48541260274493,401580.6899721128,263184.28773147386,372.62571,180.92535500148017,386033.6630354177,186547.0085677967,3105.2602,1411.9505974906274,3210866.413210365,1442267.5574095517,1134.96243,502.8667901534344,1170985.4924119778,510785.1228324101,1855.57772,768.903751432592,1904011.4682013304,773638.7011910586,0.38157,100000,0,692362,7231.463396801855,0,0.0,0,0.0,33221,346.44830431467574,0,0.0,34101,352.95530743761947,1612403,0,57889,0,0,0,0,0,71,0.7415685742038582,0,0.0,1,0.0104446278056881,0,0.0,0.06067,0.1590009696779097,0.3133344321740564,0.01901,0.3328095537397863,0.6671904462602137,24.623913868422697,4.363133260898301,0.3184310417545339,0.2275411218894981,0.2393504850274146,0.2146773513285533,11.321374570528231,5.889177673762812,20.004892095388268,12221.3280615358,53.60366203197398,13.011319922140752,16.916316876681677,12.6306913882619,11.04533384488967,0.5638970898355125,0.7822057460611678,0.7019867549668874,0.5647577092511014,0.1267190569744597,0.7514078841512469,0.9407407407407408,0.8739946380697051,0.7392996108949417,0.1778846153846154,0.4972849385538725,0.6869436201780416,0.6455584872471416,0.5136674259681093,0.1135802469135802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800360550142,0.0046422526074661,0.0068994206515894,0.0091313533498557,0.011279380803694,0.0136048879837067,0.0156622820434383,0.0178762850813161,0.0201504897049502,0.0222504377387083,0.0243204724651649,0.0264414437541715,0.0285396933139983,0.0306841357147271,0.0326321327982337,0.0347881807001043,0.0367175770126844,0.0387133592736705,0.0407437449304299,0.0429378177877802,0.0571088513499404,0.0712544337835999,0.0841250865160762,0.0968362615525344,0.1091277163311999,0.1237849444168262,0.1365647648051272,0.1482616933852802,0.1590697873158642,0.169723098041739,0.1822958727697559,0.1948497204226646,0.2065456126997934,0.2161396524002756,0.2254997964505374,0.2370202160066463,0.2465259562689049,0.2553359061195558,0.264495469101315,0.2721199899168137,0.2795619254902868,0.2863123918229873,0.2929965692653495,0.2984958350812009,0.3032725152450135,0.3083576682807821,0.3124491456468674,0.3174249844181284,0.3213675213675214,0.326161892309521,0.3246515139259618,0.324224611445327,0.3240228977497039,0.3235860113148033,0.3231572993569898,0.3205500053711462,0.3175893438328544,0.3186134930954458,0.318676236317854,0.3198150570778301,0.32025406847822,0.3215546301804481,0.322545462172536,0.3235616377093535,0.3237553890989667,0.3245021012241915,0.3252726545994404,0.329944109381414,0.3329340051442866,0.3373537281840329,0.3392513956255147,0.3427160231557704,0.3450695401578749,0.3476309985550232,0.3484720263281617,0.3484382394699479,0.3569452980946527,0.3647201454839361,0.3753120665742025,0.380249716231555,0.0,2.0696138759018634,54.45833232409732,178.30669516541334,262.2023266171116,fqhc4_100Compliance_implementation_low_initial_treat_cost,26 -100000,95794,45028,426.0183310019417,6124,62.90581873603775,4799,49.64820343654091,1878,19.385347725327264,77.37208356525132,79.71035339033577,63.35007434272507,65.0793337382591,77.14799614978322,79.48421899192834,63.26834806183877,64.99840134281898,0.2240874154680909,226.13439840742444,0.0817262808863006,80.9323954401151,151.7769,106.7964823147534,158440.69565943588,111485.3355270198,388.02436,254.72987059225864,404606.0191661273,265459.006401506,374.1399,182.1127991711362,387408.4598200305,187697.9363365509,3137.16871,1427.104123319521,3248920.0889408523,1463772.1812634608,1135.64553,501.5715239388295,1175881.339123536,513969.3853882593,1838.54204,763.8975611056162,1899380.984195252,780600.3969855949,0.38067,100000,0,689895,7201.849802701631,0,0.0,0,0.0,33408,348.2890368916634,0,0.0,34169,353.4981314069775,1615964,0,58001,0,0,0,0,0,73,0.7620519030419441,0,0.0,0,0.0,0,0.0,0.06124,0.1608742480363569,0.306662312214239,0.01878,0.3366795366795367,0.6633204633204633,24.54815419203326,4.38243436097435,0.3252760991873307,0.2242133777870389,0.2304646801416962,0.2200458428839341,11.162704606124604,5.700049644109494,19.929222472795864,12190.7183617757,54.31444831003111,12.949389334578584,17.568315032918893,12.272513126484554,11.524230816049084,0.5538653886226297,0.7955390334572491,0.6803331197950032,0.5596745027124774,0.1145833333333333,0.7332814930015552,0.9330143540669856,0.8536585365853658,0.7364016736401674,0.1232876712328767,0.4881867349843438,0.7082066869300911,0.6185925282363163,0.510957324106113,0.1123058542413381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573989668793,0.0046632334455212,0.0068600190781595,0.0089495230645767,0.0113088579273873,0.0133266818700114,0.0156662487641296,0.017705165622385,0.019998773708306,0.022167638931532,0.0243182586774064,0.0264781042498383,0.0285861129670555,0.0307763591433278,0.0330298124220143,0.0349847600351294,0.0372321705827554,0.0394582654955356,0.0412393628627536,0.0431844918950995,0.0579144535693042,0.072413901293703,0.0853363242801287,0.098101432068672,0.1103444643421468,0.1258846893287981,0.1376968232775976,0.1485998001233281,0.1587594550478486,0.1688535652695508,0.1819100990652798,0.1935759291882369,0.2048222881420391,0.2148455005519789,0.2248210338798535,0.2352133572488319,0.2450704853675945,0.2540938465861197,0.2623222077406925,0.2696472311883341,0.2763404314351113,0.2836492392549138,0.2901792572110556,0.2961043623960265,0.3015116222642791,0.3065439194594528,0.3117485894436591,0.31716802013039,0.3218285270916849,0.326313569931867,0.3251861008841472,0.3236287267336518,0.3225715613252045,0.3213831754102149,0.3204067997921461,0.3192459528108455,0.3178841469201809,0.3183413706000065,0.3191038139216692,0.32014857408168,0.320286029838453,0.3215999052375969,0.3232832573126334,0.3232485497545738,0.324080966216054,0.3254522704759918,0.3256312121558323,0.3294254829661845,0.3330056179775281,0.33552134304014,0.3394420131291028,0.3425827674023769,0.347151560831606,0.3523954372623574,0.3567933759879563,0.3566532734578114,0.3535676251331203,0.353115141955836,0.3565264293419633,0.3656800299737729,0.0,1.6878243258958976,56.98540711807679,179.55991438349145,261.14848749938835,fqhc4_100Compliance_implementation_low_initial_treat_cost,27 -100000,95649,44727,423.1513136572259,6025,61.71522964171084,4793,49.55618981902581,1952,20.04202866731487,77.25911226955019,79.65714802803305,63.27736057920528,65.04663030476532,77.01341520020542,79.41313660362661,63.18618406038707,64.9592518991649,0.2456970693447715,244.01142440643756,0.0911765188182087,87.37840560041832,151.22206,106.40536246673744,158100.8060722015,111245.43117726003,386.68494,253.54106675651167,403637.65434034856,264437.16793328914,375.30309,182.56021265492916,389517.05715689657,188626.3903258785,3145.2593,1440.4684982086485,3252139.5937228827,1469799.1596447942,1143.25007,506.6609106981709,1181755.982812157,516219.1097640029,1906.38966,801.3692456236172,1958049.2634528328,805490.7566587378,0.37958,100000,0,687373,7186.400276009158,0,0.0,0,0.0,33326,347.82381415383327,0,0.0,34338,356.1563633702391,1610504,0,57907,0,0,0,0,0,77,0.7945718198831143,0,0.0,1,0.010454892366883,0,0.0,0.06025,0.1587280678644818,0.3239834024896265,0.01952,0.3304320303845545,0.6695679696154455,24.64205402363365,4.38709021595045,0.3217191737951179,0.2330481952847903,0.2182349259336532,0.2269977049864385,11.085495194624814,5.727994721060167,20.91466400885008,12169.155613928133,54.54508136555302,13.37797093597574,17.589709626227414,11.65977065076832,11.91763015258153,0.5599833089922804,0.7958818263205013,0.6783398184176395,0.5736137667304015,0.1369485294117647,0.7262914417887433,0.9268867924528302,0.8308080808080808,0.7419354838709677,0.1572052401746725,0.4982837528604119,0.7157287157287158,0.6256544502617801,0.5213032581453634,0.1315483119906868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0049179164258408,0.0070438259951687,0.0095309705738904,0.0116689556945928,0.0138716313934776,0.0158859636600934,0.0181610298396235,0.0202819435499534,0.0224169345097958,0.0245550360892388,0.0267275901016531,0.0290154694314161,0.0314302785561232,0.0333849329205366,0.0355791302189962,0.0375319845438253,0.0396520583777948,0.041555280485141,0.0435059112992347,0.058494628150997,0.0722957190292136,0.0856821809627824,0.0981118962122089,0.1111075909263718,0.1260339550302375,0.1375204469653516,0.1497282898241875,0.1604855095711688,0.1706866556412294,0.1830960086299892,0.1943517274264164,0.2060111551701599,0.2167424532953487,0.2261302098843044,0.236819014827567,0.2458372498992883,0.2546303607282243,0.2624574892799053,0.2698066161854094,0.2767715210656394,0.2841995378678583,0.2909032656161002,0.2963795736289634,0.3012803316668699,0.3056915393363991,0.3103374679857379,0.3139626879003649,0.3184055054210218,0.3230537099293221,0.3219215082516273,0.3205060913284897,0.3206191109476246,0.3193687606260081,0.3187215293854081,0.3160695882235314,0.3146947595894111,0.3150452395471101,0.3159674539961549,0.316989247311828,0.3182117151823802,0.3182286506835744,0.3197346043210783,0.3197614687095189,0.3205365513594077,0.3215355366304659,0.3218109339407745,0.3246945459125834,0.3274625606412149,0.3305633970816269,0.3332115287991595,0.3360315262541272,0.337650031585597,0.3407136878946968,0.3392673100346669,0.3412953060011883,0.3451340996168582,0.3496446700507614,0.3435221536735838,0.3444881889763779,0.0,2.113577830729876,56.9796784826106,177.8320060130818,264.8697628256476,fqhc4_100Compliance_implementation_low_initial_treat_cost,28 -100000,95633,44854,424.6337561302061,6049,62.206560496899606,4697,48.69657963255362,1895,19.55391967207972,77.28554750318864,79.71517038978426,63.27381344368565,65.07104877365778,77.04985120172024,79.47969329940406,63.186580766911135,64.9863883624067,0.2356963014683941,235.4770903802006,0.0872326767745121,84.66041125107893,150.7297,106.09245837595589,157612.64417094516,110937.08068967394,383.74251,251.6764927658427,400843.61046918953,262746.9103404084,371.04485,180.4985581038336,385175.5879246704,186694.38946849236,3087.8957,1406.011980076925,3202909.570963998,1444224.0545386258,1108.61784,490.9843083983436,1152284.4311064172,506447.18705712864,1849.48332,774.5648781231646,1909625.8613658464,787575.3055105399,0.38056,100000,0,685135,7164.211098679327,0,0.0,0,0.0,33098,345.6651992513045,0,0.0,33838,351.0817395668859,1617092,0,58034,0,0,0,0,0,71,0.7424215490468772,0,0.0,0,0.0,0,0.0,0.06049,0.1589499684675215,0.3132749214746239,0.01895,0.3257385292269013,0.6742614707730987,24.76992555259877,4.373182873391939,0.327230146902278,0.2284436874600809,0.2188631041090057,0.2254630615286353,11.272282139202126,5.895802163414003,20.278051628672728,12252.447755862786,53.2140041574113,12.947841482151446,17.376906175508548,11.370977266375482,11.518279233375832,0.5435384287843305,0.7586206896551724,0.6877033181522446,0.566147859922179,0.0944287063267233,0.7229571984435798,0.901913875598086,0.8786407766990292,0.688034188034188,0.1312217194570135,0.4759671746776084,0.667175572519084,0.6177777777777778,0.5302267002518891,0.08472553699284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800972841507,0.0047165505279493,0.006893960930837,0.0090969151801595,0.0114251414153745,0.0136091841620063,0.0157501198600442,0.0180818895063746,0.0200161602111055,0.022121627987956,0.0245688903478626,0.0266851623510069,0.0288828730532881,0.0311407984661533,0.0332896217745516,0.0351897058215068,0.037131457588476,0.0391749579378102,0.041386489018424,0.0433929987065548,0.058677176219697,0.0726472437644099,0.0854167323475939,0.0980571886128495,0.1101146146939206,0.1259889219559208,0.1381725057647146,0.1496476808766936,0.160651422579368,0.1710749661588706,0.1849430346970481,0.1977364381423182,0.2088345536959553,0.2188660640920295,0.2286696944309713,0.2394047341612011,0.2483988151791203,0.2570266188834043,0.2653629380482705,0.2732576799633195,0.2803084690025705,0.2869420636035782,0.2929524035326892,0.2989531058659687,0.3042414653441246,0.3087681615622955,0.3131091678985743,0.3169215086646279,0.3223283086422956,0.3263475032044082,0.3245249966311818,0.3236455710137748,0.3225023974727816,0.3213665818097662,0.32027231917234,0.3187778953664933,0.3169528883814598,0.3165296052631579,0.3170464841946899,0.3169213153469066,0.3180940598699132,0.3188102385842945,0.3195828699720934,0.3196143780616011,0.3215538365444674,0.3227147534168268,0.3241359773371104,0.3269104444931027,0.3302733152514083,0.3331360012629252,0.3351032448377581,0.3376396463175729,0.3408305585223346,0.3431773436316825,0.3465744462099261,0.3450175849941383,0.3490279465370595,0.3446748540366418,0.3408657772937653,0.3408662900188324,0.0,1.6535155720175774,56.95410502383231,169.55375513502432,259.8217118277955,fqhc4_100Compliance_implementation_low_initial_treat_cost,29 -100000,95806,45148,426.9878713232992,6174,63.14844581758972,4765,49.120096862409454,1872,19.15328893806233,77.35864855579545,79.6647145182758,63.35358995694328,65.05483196398619,77.12309438669604,79.42984386111249,63.26605167974128,64.96989099848973,0.2355541690994158,234.870657163313,0.0875382772019932,84.94096549645747,151.8495,106.8700723446094,158496.8582343486,111548.41277645389,388.00925,254.4049723088895,404413.1995908399,264960.2658590167,379.98637,185.15158593351532,392745.2351627247,190228.26914473847,3137.8221,1440.9726180046575,3238928.5848485483,1467797.8811396551,1151.68748,513.6148418722265,1186135.1481118093,520130.26519448194,1839.38186,775.8478377686532,1884525.520322318,779871.645767436,0.38266,100000,0,690225,7204.402647015845,0,0.0,0,0.0,33433,348.339352441392,0,0.0,34769,358.98586727344843,1613367,0,57948,0,0,0,0,0,68,0.7097676554704299,0,0.0,0,0.0,0,0.0,0.06174,0.1613442742904928,0.3032069970845481,0.01872,0.3350285097857913,0.6649714902142086,24.73375576299916,4.37937886688913,0.3246589716684155,0.2342077649527807,0.2193074501573977,0.2218258132214061,11.420614601967712,5.971039090865219,19.964938674173847,12268.041848687766,54.11092665061288,13.303511868265176,17.480918334501958,11.654483550628488,11.67201289721725,0.5586568730325289,0.7759856630824373,0.6929541047188106,0.5732057416267943,0.1182592242194891,0.7322957198443579,0.9312039312039312,0.8592592592592593,0.7666666666666667,0.1287553648068669,0.4945402298850574,0.68688293370945,0.6339754816112084,0.515527950310559,0.1152912621359223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024694856587656,0.0047503772954248,0.0070156229406814,0.0093052046231747,0.0116635848251478,0.0139362189105335,0.0160840158089883,0.0181979537502677,0.0201969638150501,0.0222795065365494,0.0246230744018354,0.0268221634151845,0.0289518564941336,0.0311596365395103,0.0332924352246131,0.0355073586367157,0.0375386716607861,0.0394140758632843,0.0413078928508366,0.0434103685196752,0.0580662660657653,0.072704081632653,0.0857292594727739,0.0984119977719624,0.1109741060419235,0.1268982425734726,0.1395085026080318,0.1512079401721221,0.1632378532460738,0.1729154828403255,0.1854731039235109,0.1975658570887651,0.2088177398831986,0.2192453697119539,0.2284833470960638,0.2385412625394889,0.2475999106943514,0.2557917121414989,0.2646004040220623,0.2719169607259062,0.2791074487292255,0.2859216425335659,0.2923352002936614,0.2975419664268585,0.3032082375968002,0.3077397319391869,0.3128190371334201,0.3174794938640554,0.322133312616532,0.3262780079702304,0.3254715076127781,0.3240209631494243,0.3236784326971795,0.3224283548689814,0.3219133327393151,0.3192999632847876,0.318178220329592,0.3183162460567823,0.3191587586560656,0.3195833855294475,0.3200570591989188,0.3212461897787103,0.3220100418058444,0.3234781052914076,0.3239341738042536,0.3247340495046917,0.3256664476127889,0.3265911457511596,0.3287415445321308,0.3299968096985165,0.3349583124515923,0.3360843405569458,0.3386913767019667,0.3416239381648427,0.3445590994371482,0.3441328934967012,0.3495338529726425,0.3494393476044852,0.3489087856743145,0.3525009846396219,0.0,2.4378430343704403,55.87645867136944,179.7753382296557,259.2935337453079,fqhc4_100Compliance_implementation_low_initial_treat_cost,30 -100000,95867,44786,423.1695995493757,6070,62.075583881836295,4776,49.28703307707553,1860,19.05765278980254,77.41454581429173,79.70335616713442,63.37712166936033,65.06806768898767,77.1868750556508,79.47717475377648,63.29189757543876,64.98586963820512,0.2276707586409259,226.18141335793496,0.0852240939215676,82.19805078255149,152.76184,107.52020508133002,159347.45011317765,112155.39269708218,387.17425,254.31158896449145,403345.6038052719,264756.6787203089,380.45447,185.2713272675015,393725.734611493,190805.22382890663,3114.91295,1435.1133502858067,3216373.5592018105,1464271.9331824775,1111.60483,491.86167403453,1148109.1407888012,501647.7349187208,1814.03744,763.7890463606803,1860242.732118456,769069.9994317548,0.37884,100000,0,694372,7243.065914235346,0,0.0,0,0.0,33331,347.12674851617345,0,0.0,34780,359.6545213681454,1609894,0,57849,0,0,0,0,0,67,0.6988849134738753,0,0.0,0,0.0,0,0.0,0.0607,0.1602259529088797,0.3064250411861614,0.0186,0.3290220820189274,0.6709779179810725,24.31596913296663,4.328674569912607,0.3304020100502512,0.228643216080402,0.2303182579564489,0.2106365159128978,11.275517773271336,5.9945006793341244,19.797792783361544,12166.040322790988,54.22824837234749,13.09907026759239,17.88484794872328,12.264959732794138,10.979370423237704,0.5741206030150754,0.8031135531135531,0.7091254752851711,0.5745454545454546,0.1133200795228628,0.7427480916030534,0.9239904988123516,0.8571428571428571,0.7406015037593985,0.1330049261083744,0.5103866128101558,0.7272727272727273,0.655440414507772,0.5215827338129496,0.1083437110834371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021966897808371,0.0046096955574692,0.0069055031079834,0.0089030109841024,0.0112308161398516,0.0134413252068091,0.0157497962510187,0.0181259945326206,0.0204913427652076,0.0226149927889778,0.0251370038412291,0.0268958938114825,0.0290071002147532,0.031394750386001,0.0332711282490127,0.0354059078702747,0.0372562205783456,0.0395158198004,0.0413997861495499,0.0431883666018286,0.0579734323191458,0.0713681064303405,0.0846244906083367,0.0969255969255969,0.1088739824984467,0.1242026107895737,0.1358609292569758,0.1474308552477731,0.1579463980880846,0.1677483613931371,0.1809311732180124,0.1926070880273315,0.2040009127557617,0.214304447601355,0.2255756443369786,0.2357771260997067,0.2450795633216989,0.2544475786965757,0.2623186926592499,0.2699679413785207,0.2770620345098765,0.2835894197712762,0.2892445643173161,0.2943417930836149,0.3007630248833592,0.306109118694618,0.3109192165696764,0.3151366342679761,0.3193317608025091,0.323730559002931,0.3233370124101543,0.3224732853822563,0.3223385984176591,0.3213161618203344,0.3201763500875813,0.3184230245752473,0.31644350407377,0.317467334708714,0.3180408330208937,0.3188813179384084,0.3190520619518567,0.3205365584620233,0.3216304733295784,0.3224486164249488,0.3245347193944765,0.3264215088365816,0.3274629913221031,0.3325949268353561,0.335347326511368,0.3384615384615385,0.3408649283745311,0.3438060094886663,0.346538963865912,0.3497153131555289,0.3517573959009552,0.3587580550673696,0.3608497723823975,0.3682193990723936,0.3766021270793564,0.3810780248774971,0.0,2.024356399112333,57.50951654641919,180.7724572608806,254.2561910391921,fqhc4_100Compliance_implementation_low_initial_treat_cost,31 -100000,95716,44946,426.1147561536212,5938,60.97204229177985,4627,47.81854653349493,1826,18.701157591207323,77.36002699221102,79.73153271741424,63.33690834044432,65.0884144986692,77.13230233025084,79.5056236624892,63.2518369016387,65.0067923479267,0.2277246619601811,225.9090549250402,0.0850714388056275,81.62215074248991,152.5304,107.31035130867156,159357.26524301057,112113.28441292112,385.16388,252.10616036483316,401911.6866563584,262898.64846507704,371.15207,179.82268678572754,384698.7964394668,185510.9010561725,3017.62812,1366.8149544877865,3122735.2271302603,1398035.9443434589,1091.66491,479.4687220352682,1130941.6085085042,491346.10039336776,1787.53084,746.9471667230847,1834292.3022274228,752848.5187242993,0.38075,100000,0,693320,7243.512056500481,0,0.0,0,0.0,33204,346.36842325212086,0,0.0,33839,350.49521501107444,1614175,0,57862,0,0,0,0,0,69,0.7208826110577125,0,0.0,2,0.0208951481466003,0,0.0,0.05938,0.1559553512803677,0.307510946446615,0.01826,0.3275724115858537,0.6724275884141463,24.80019890720098,4.3261890649061385,0.322022909012319,0.237518910741301,0.219148476334558,0.2213097039118219,11.011714938645312,5.784397190889554,19.294972412796135,12178.421866535711,52.09797099973886,12.955941475500367,16.711761169149106,11.299224858894814,11.131043496194575,0.5573805921763562,0.7843494085532302,0.6986577181208053,0.5502958579881657,0.115234375,0.719327731092437,0.9135135135135136,0.850415512465374,0.72,0.1483253588516746,0.5013092813500145,0.7187928669410151,0.650132860938884,0.4947643979057591,0.1067484662576687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485338951291,0.0044501211365548,0.0067990623382685,0.0089904305247973,0.0114528662679523,0.0134923221050059,0.0159021406727828,0.0181571373165404,0.020189113212369,0.0223489424435389,0.0245137742600244,0.026662423128651,0.0287629957940417,0.0307665368848237,0.0328624934223423,0.0346984563529399,0.036642977021735,0.0385086462809574,0.0405342153711735,0.0424833536528181,0.0570223076280391,0.0710480317350666,0.0836847737143576,0.0961105618544773,0.1085221461933429,0.1237498149831899,0.135469156102477,0.1466443881569145,0.1573444125217614,0.1670134940896316,0.1805675256399207,0.1930335230592767,0.2050847273399202,0.2147557829376011,0.2246381593418679,0.2349585751628195,0.244502460086354,0.2534522310183519,0.2623553020940806,0.2702418025279355,0.2764904491004116,0.2842134785504773,0.2906048601667356,0.2963016175185278,0.3025280489581815,0.3073664507548703,0.3119299343134188,0.3164618102779861,0.3210667287760568,0.3254256062664011,0.3254186184245948,0.3252508016018275,0.3242553671360708,0.3241367343397536,0.3217910802657195,0.3200716406943636,0.3180999051533354,0.3196566917268603,0.3201036994081629,0.3212714023553726,0.3226723525230988,0.3227295138546494,0.3238226337963542,0.3244284155925109,0.3247449834778028,0.3260784873905929,0.3268979243673585,0.330501274426508,0.3328061852047091,0.3349535838081198,0.3400384017555088,0.3435504469987228,0.3443271767810026,0.3477964044602897,0.3532319746292323,0.3565125308859866,0.3590328467153285,0.361745101999596,0.3650618982118294,0.3644716692189892,0.0,2.0286666103787794,52.03578182494886,174.11550712983708,257.5878644719002,fqhc4_100Compliance_implementation_low_initial_treat_cost,32 -100000,95754,44800,424.2120433611128,6111,62.577020281137074,4809,49.66894333395994,1916,19.644087975437056,77.33346816806463,79.69576046278156,63.32120940122799,65.07029138622863,77.08908563025928,79.45354592160433,63.22936865254844,64.98192813765583,0.2443825378053503,242.2145411772334,0.0918407486795516,88.36324857280431,151.8572,106.7875297845344,158590.97270087936,111522.78733476868,384.25137,251.5368429702492,400735.3426488711,262137.06668101225,365.81292,177.40327919779062,378889.7905048353,182782.1989620615,3158.73639,1443.7611307756124,3264393.936545732,1473499.034144145,1147.10454,514.7193907130068,1180169.361071078,520098.2778382598,1881.6728,801.7989355655224,1931042.0452409296,807160.4508377697,0.38014,100000,0,690260,7208.680577312697,0,0.0,0,0.0,33128,345.3850491885456,0,0.0,33498,346.6695908264929,1618420,0,58046,0,0,0,0,0,71,0.7414833845061303,0,0.0,0,0.0,0,0.0,0.06111,0.1607565633713895,0.3135329733267877,0.01916,0.3392468098350451,0.6607531901649548,24.701912899466087,4.386243197843405,0.305468912455812,0.2424620503223123,0.2252027448533999,0.2268662923684757,10.866594677751277,5.487293020185619,20.64466643456627,12146.264106645376,54.54488570363002,13.917724584197376,16.47754646341575,12.093189123021656,12.056425532995249,0.5493865668538158,0.7624356775300172,0.6678012253233492,0.592797783933518,0.1191567369385884,0.7088906372934697,0.8902147971360382,0.8419618528610354,0.7103174603174603,0.1716738197424892,0.4920859242509892,0.6907630522088354,0.6098003629764065,0.5571600481347774,0.1048951048951049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024722630325751,0.0046343244229911,0.0068002354708401,0.0090532219715905,0.011523362014605,0.0136138235803235,0.0154752681156465,0.0177889816496907,0.0201443113527656,0.0222738579017943,0.0244610069405287,0.0263846825111647,0.0283825056816428,0.0305149330587023,0.0324168171266443,0.0346467110431223,0.0366251436736976,0.0387365231557866,0.041035931131997,0.0428293180847628,0.0571532961010491,0.0713358730690333,0.0848547804918996,0.0982699689751275,0.1100600078041784,0.1255564602256505,0.1371005389806051,0.1476301476301476,0.1583815769797697,0.1686562201701041,0.181943546649429,0.194369001374206,0.2054296870751259,0.2145466876695545,0.2244972054746292,0.2345494417862839,0.243786704776366,0.2521946607842255,0.2610008285380276,0.2682979892822791,0.2751309899718935,0.281598708681311,0.2875329807498905,0.2935389555923023,0.2991880378187467,0.304915126971036,0.3107733079980999,0.3151398828060452,0.3202939996635567,0.3253778628473368,0.3243676642994785,0.3236799383650221,0.3231995942747661,0.3218640170087213,0.3210577981378469,0.3199981585489365,0.3182654485471387,0.3183305651937971,0.3187746020879685,0.3185299169768107,0.3184411003114797,0.3197830905636479,0.3211068750261845,0.322012297372834,0.3233736216112101,0.325098685070452,0.3265248065543923,0.3298236791652261,0.3326070148309552,0.3353011093502377,0.3367388639149979,0.3383709831371301,0.3397093059837664,0.3436116623416272,0.3461285163232665,0.3484957020057306,0.3527244819646968,0.3585136790526745,0.3591962042980742,0.3591820987654321,0.0,2.109960639507839,55.84954340410371,183.42569774794453,262.0430345926034,fqhc4_100Compliance_implementation_low_initial_treat_cost,33 -100000,95795,45151,427.14129129912834,6184,63.16613601962524,4835,49.856464324860376,1940,19.865337439323557,77.34149214859087,79.67853436309535,63.33904717832892,65.07139762219151,77.10138221372932,79.44061248934838,63.24984582106895,64.98529275471857,0.2401099348615503,237.92187374696996,0.0892013572599736,86.10486747294033,152.39048,107.22006522547296,159079.78495746123,111926.57782292704,385.67592,252.32423272375465,401963.5158411191,262758.2470105481,374.20498,182.496140869156,386315.4131217705,187270.57938100764,3159.64391,1455.8882778368472,3261273.8034344176,1482730.422085544,1162.84286,511.1667508446675,1199317.1251109138,519035.159292935,1904.27698,793.19005307769,1952565.728900256,798499.6395770474,0.38397,100000,0,692684,7230.899316248238,0,0.0,0,0.0,33248,346.4168276006055,0,0.0,34277,353.5153191711467,1616262,0,57960,0,0,0,0,0,63,0.6576543660942638,0,0.0,1,0.0104389581919724,0,0.0,0.06184,0.1610542490298721,0.3137128072445019,0.0194,0.325939617991374,0.674060382008626,24.545996116628903,4.418836723048368,0.3236814891416752,0.2347466390899689,0.2173733195449844,0.2241985522233712,11.159833317226855,5.602717920775813,20.59726209086954,12329.55981405749,54.86265594029021,13.455325277995149,17.866480612279037,11.644680779935724,11.896169270080296,0.5528438469493279,0.785022026431718,0.6984025559105431,0.5480494766888677,0.1042435424354243,0.7217459080280593,0.8959810874704491,0.871536523929471,0.6979591836734694,0.1376146788990825,0.4918355855855856,0.7191011235955056,0.639554794520548,0.5024813895781638,0.0958429561200923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0045821801851119,0.0068801055355421,0.0092671625411535,0.0115073510708653,0.0137820741359464,0.0161451533942558,0.0185746816571189,0.020758131972636,0.0227731187089771,0.0247516123409447,0.0268324741738719,0.0289749233712534,0.0312245675845515,0.0332040117214907,0.035215562239656,0.0372038601722995,0.0392838248565886,0.0413774471091899,0.0434212307019644,0.0581146643017371,0.0723434510304158,0.0850283462751632,0.0975094577553594,0.1098335950426287,0.1257702755551797,0.1379065428486621,0.1498952562234817,0.1613089139344262,0.1710467085378662,0.1844963242812705,0.1967113869039253,0.2092255211898011,0.2193213485601879,0.2289744802031908,0.2392122567361126,0.2480688417509168,0.2576330948985436,0.2661879466763316,0.2737147822905232,0.2808873286603462,0.2879461939958664,0.2944430653569275,0.2998886774158796,0.3055242116502263,0.3109089566202176,0.3156269919634041,0.3207599888236938,0.3249502442554731,0.3291074249605055,0.3283802864250655,0.3266997429941864,0.3254012954097437,0.3245211060067609,0.3236828416437541,0.3215187935390033,0.3195678689667189,0.3205397942075676,0.3213699192555084,0.3224133614677587,0.3236199774690199,0.3244116015532134,0.3250772042604147,0.3266669656069234,0.3273394318264102,0.3284421427076794,0.3288446077868381,0.3322445614257626,0.3370380857992354,0.3405930306905371,0.3443891652846876,0.3470219267678121,0.3490950802956921,0.351531085678936,0.3543809523809524,0.3540991477613732,0.3575445173383317,0.3524165110972827,0.3591549295774648,0.3623693379790941,0.0,2.3989299877835344,55.66685219716575,186.266332630757,262.0147743423496,fqhc4_100Compliance_implementation_low_initial_treat_cost,34 -100000,95701,44675,422.7751016185829,6194,63.59390184010617,4823,49.80094251888696,1912,19.571373339881507,77.3419109081298,79.71082736300504,63.33255108723839,65.08089523529955,77.10863100689826,79.47934791187234,63.24591867984408,64.99730323596444,0.2332799012315405,231.4794511326994,0.0866324073943118,83.59199933511263,151.66404,106.65839958775634,158476.9647130124,111449.6186954748,385.01203,252.31106371370748,401693.89034597337,263032.6792145697,374.29477,182.1899091386236,387133.9693420131,187328.30939960707,3160.93164,1448.974272891946,3265921.2651905413,1477371.9454246375,1155.1519,513.6714539824856,1191290.1119110563,521133.94823492185,1865.35898,784.764156833212,1911918.245368387,788784.4168075273,0.37838,100000,0,689382,7203.498396046019,0,0.0,0,0.0,33159,345.85845497957183,0,0.0,34219,353.6222192035611,1618155,0,58058,0,0,0,0,0,80,0.8359369285587404,0,0.0,1,0.0104492116069842,0,0.0,0.06194,0.163697869866272,0.3086858249919276,0.01912,0.3357888275015346,0.6642111724984653,24.58143878701077,4.374660560972084,0.329877669500311,0.2264150943396226,0.2274517934895293,0.216255442670537,11.208893832287467,5.857645690378639,20.41549809658035,12196.302815846786,54.76602575511155,13.077558467140356,17.95961469263099,12.246717752899151,11.482134842441043,0.5633423180592992,0.7893772893772893,0.6819610307982401,0.5761166818596172,0.1323106423777564,0.7375669472073451,0.9386792452830188,0.8596491228070176,0.7258064516129032,0.1822033898305084,0.4985779294653015,0.6946107784431138,0.62248322147651,0.5323910482921084,0.117719950433705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0047228134184655,0.0069588151754919,0.0090903550824733,0.0112559482653434,0.0137655779099128,0.016289998674781,0.0183106066791867,0.0205641864268192,0.022516298729876,0.0247872885699641,0.0269537627452792,0.0292460203200197,0.0312889566570165,0.0333928405584735,0.0353118733072835,0.0374581870527438,0.0392793765112441,0.0413309072004159,0.0432467356530257,0.0575230018902802,0.0718883783246281,0.0856459380344346,0.0990491617056187,0.1107231762372895,0.1261571992340002,0.138365246910306,0.1500063873275421,0.1608409537646355,0.1706464139366244,0.1836530280347661,0.1952882357397166,0.2069044278395927,0.2171973407977606,0.2269328054547454,0.2359804290553255,0.2454866802707434,0.2537991187842819,0.2623579319888387,0.270101063281867,0.2762171417993336,0.2833750790046583,0.2895534403561112,0.2945794975067127,0.3004301754727069,0.3062570907117841,0.3110178515502662,0.3154827050828476,0.3207588707588708,0.3248583102675629,0.3232506798050776,0.322053001979327,0.3216264094705171,0.3210937725345409,0.3194660734149054,0.3180644076604459,0.3164071137505133,0.3166385232060593,0.3168120742346895,0.3175886752708902,0.3188077261741949,0.3199051195888515,0.3205534675709157,0.3208562142777093,0.3234698795180722,0.3246546366176586,0.3265749043349135,0.3290393700787402,0.3307508099732357,0.3353126369903957,0.3386663020192351,0.341698123238875,0.3450753040519251,0.349013308857274,0.3525907715582451,0.3537471702609317,0.3579318809450751,0.3634868421052631,0.3659288316054917,0.3669230769230769,0.0,2.197436471827321,57.52096004779737,178.66081110536976,264.0435455248396,fqhc4_100Compliance_implementation_low_initial_treat_cost,35 -100000,95714,44815,423.7938023695593,6029,61.955408822115885,4763,49.24044549386715,1882,19.42244603715235,77.33810060160408,79.71958947280211,63.31256206328344,65.07450293315898,77.10700379907908,79.48601603288385,63.22753743189982,64.99016093271453,0.2310968025250019,233.57343991825985,0.085024631383618,84.34200044445106,151.55536,106.67922742389167,158341.89355789122,111456.24195404192,385.7264,253.12751326528425,402487.8805608375,263951.3166990034,372.95761,181.42408451115156,385270.4620013791,186286.1773650514,3127.95846,1424.8772096946311,3240005.516434377,1460661.5852379296,1128.95607,495.7240525530371,1167242.3887832502,505654.7240247372,1850.41708,772.7680853975129,1911429.947552082,788465.4810723811,0.3805,100000,0,688888,7197.358798085965,0,0.0,0,0.0,33265,347.00252836575635,0,0.0,34117,352.14284221743947,1614894,0,57959,0,0,0,0,0,69,0.7104498819399461,0,0.0,0,0.0,0,0.0,0.06029,0.1584494086727989,0.3121579034665782,0.01882,0.3221783741120758,0.6778216258879243,24.544993696680542,4.4546622449143545,0.3040100776821331,0.2376653369724963,0.2317866890615158,0.2265378962838547,10.972364420872143,5.351689514104944,20.0185043226658,12235.102158517664,54.03789876949968,13.543918966769429,16.31967695637782,12.41413977791804,11.760163068434398,0.5578416964098257,0.7950530035335689,0.7037292817679558,0.5661231884057971,0.1047265987025023,0.7274180655475619,0.91415313225058,0.8955223880597015,0.6761565836298933,0.1274509803921568,0.4974373576309795,0.7218259629101283,0.6460017969451932,0.528554070473876,0.0994285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022906488820417,0.0046155406776222,0.0069039738461226,0.0092180417505132,0.0113144961894974,0.0133327901078642,0.015431532137976,0.0180783805039476,0.0200953121165016,0.022382863695937,0.0246005865583789,0.0267800299837759,0.0287897015124875,0.0308532001441738,0.0330836840802178,0.0354559358465608,0.0374285595957922,0.0393302140285717,0.0413556502754964,0.0434592387341402,0.0580728704351549,0.071357541373138,0.0847052157763857,0.0975253199835932,0.1092527365912302,0.1255989591597118,0.1376760077671551,0.1499776391166386,0.161133135999829,0.17154228215278,0.1838524440039216,0.1957326578332034,0.2068744081761485,0.2167671484687011,0.2261862840038735,0.2365079013276003,0.2462926567804181,0.2549997186427325,0.2637149248816161,0.271095317246518,0.2784346879451515,0.2858949291058319,0.2916469250450109,0.2980853385126305,0.3036604039569307,0.3091236642728461,0.3135790713408675,0.3176941308392161,0.3218784014927694,0.3260737572925741,0.3245658904293983,0.3233525518418119,0.3229096236195627,0.3215435941133143,0.3213415720991028,0.3199681318849683,0.3187126174878952,0.3197565696663495,0.320635842098074,0.3208328129738987,0.3207147807518684,0.3212925129784252,0.3231826083314135,0.3239184440813769,0.3247464795501514,0.3263130592659836,0.3270283299775969,0.3295426065162907,0.3322859935763161,0.3344107213243989,0.3360075720016225,0.3360155674765961,0.3390936781251942,0.3414414414414414,0.3476243504083148,0.3482961222091656,0.3490509189514914,0.3522975929978118,0.3587601078167116,0.3571966842501884,0.0,2.075960584211856,55.03820829721332,184.72074864168405,256.751501071066,fqhc4_100Compliance_implementation_low_initial_treat_cost,36 -100000,95652,44572,422.2075858319743,6029,61.88056705557646,4708,48.665997574541045,1875,19.19458035378246,77.27782633283482,79.68824355774105,63.2892740309558,65.07189166576723,77.04555225263356,79.4593924004336,63.20288360286746,64.98995763426731,0.2322740802012646,228.85115730744587,0.086390428088336,81.93403149991241,152.05982,106.9384876658299,158971.9190398528,111799.53128615176,381.78921,249.9685263465396,398583.2183331242,260770.43485399112,366.33231,177.3015262432379,380099.4019989128,183031.7373404228,3095.24468,1400.7436982914846,3201150.2111822017,1429623.2366197107,1123.79311,487.1882864448164,1161527.7568686488,495985.1403471085,1834.37192,764.7566896262201,1879975.6826830597,765822.1022798236,0.37887,100000,0,691181,7225.996319993309,0,0.0,0,0.0,32922,343.6101702003094,0,0.0,33615,348.481997239995,1616525,0,57993,0,0,0,0,0,64,0.6690921256220466,0,0.0,0,0.0,0,0.0,0.06029,0.1591311003774381,0.3109968485652679,0.01875,0.3293913591926837,0.6706086408073163,24.789735454290405,4.339767275731664,0.3177570093457944,0.2308836023789295,0.2274851316907391,0.2238742565845369,10.868043131078512,5.53875251703735,19.93123319321468,12202.329817818953,53.40846593900612,13.003805475601038,17.138699420134778,11.871948917707751,11.394012125562552,0.5590484282073067,0.7626494940202392,0.7065508021390374,0.5826330532212886,0.1157495256166983,0.7370550161812298,0.9143576826196472,0.8722358722358723,0.7316017316017316,0.1194029850746268,0.4956797235023041,0.6753623188405797,0.6446280991735537,0.5416666666666666,0.1148886283704572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0042795716371896,0.0064666111708931,0.0088315700681931,0.0111094155348695,0.0134167337333564,0.0156960734319224,0.0178741050180273,0.0201509789079601,0.0224132102723799,0.0246871794871794,0.0268912742026603,0.0292129281870285,0.031002318989951,0.0329034989004635,0.0349588871076175,0.0369932852524247,0.0387614607453248,0.0408549783549783,0.0427506386528335,0.0572467630184656,0.0711450445638399,0.0844555941596951,0.0976279676713251,0.1093664260689713,0.1239983486646413,0.1360286308992821,0.1482969134552893,0.1603084458989743,0.1698589250821326,0.18284876829242,0.1951774094004786,0.2065501327876703,0.2173270739634286,0.2265276692242489,0.2370071585292879,0.2462596578982627,0.2548302519495425,0.263174617584313,0.2709718772534252,0.2783225030640797,0.2847675152535241,0.2909490915972748,0.2969980226496495,0.302075233281493,0.3074228914622566,0.3124264356014124,0.317054855542828,0.3215151475868864,0.3250686523024926,0.3236380798274002,0.3229574667622883,0.3225273561595482,0.3215366570613533,0.3196901995829609,0.3188755143401093,0.3173786731437824,0.3177071322681601,0.3179154099259665,0.3183966486447778,0.3194353188533669,0.3210789171191882,0.321684192850996,0.3230490424199033,0.3248622241474743,0.326139651262804,0.3274030498600719,0.3307118943844356,0.3319997167540008,0.3360554021056002,0.3409893182964287,0.3433058291189779,0.3463792777462658,0.3479960150203081,0.3515684051398337,0.3553986114436198,0.3533045089561458,0.3535582064993829,0.3549287908405473,0.3573068094873756,0.0,2.2001052000758787,54.23293544179599,178.33319081850888,259.75499728578217,fqhc4_100Compliance_implementation_low_initial_treat_cost,37 -100000,95837,45065,426.9540991475109,6096,62.80455356490708,4810,49.80331187328485,1910,19.70011582165552,77.39792083527668,79.70169973227445,63.37134666233783,65.07174011784619,77.16252046038012,79.4643279671159,63.28501765019976,64.98637815025612,0.2354003748965567,237.3717651585423,0.0863290121380657,85.36196759007453,151.85852,106.85433577791316,158455.00172167327,111495.91053341942,386.94817,253.0589814271017,403359.4958105951,263654.54863506893,376.8683,182.8358300805388,390647.2448010685,188801.4183368344,3149.06152,1433.610738429284,3264159.2704279143,1474204.350679502,1145.21958,509.1074426532135,1187871.448396757,524153.2430880061,1873.83636,784.609624435062,1934797.019940107,800824.0577027167,0.38076,100000,0,690266,7202.500078257875,0,0.0,0,0.0,33300,347.0580256059768,0,0.0,34439,356.81417406638354,1617744,0,58013,0,0,0,0,0,65,0.6782349197074199,0,0.0,0,0.0,0,0.0,0.06096,0.1601008509297195,0.3133202099737532,0.0191,0.3312032418952618,0.6687967581047382,24.49269235515853,4.37104780784014,0.3228690228690228,0.2343035343035343,0.2199584199584199,0.2228690228690228,10.90074277945559,5.417573539413127,20.47154107298443,12184.316734534992,54.65443007577089,13.460146782126014,17.575576358324447,11.788474363647724,11.83023257167271,0.5588357588357589,0.782608695652174,0.6851255634256278,0.5784499054820416,0.1212686567164179,0.7397476340694006,0.931372549019608,0.8337349397590361,0.7532467532467533,0.1775700934579439,0.4940711462450592,0.6981919332406119,0.6309314586994728,0.5296251511487303,0.1072261072261072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217137766259,0.0042253949274995,0.0062883513362746,0.0088238579247179,0.0108571893298633,0.0129856913150556,0.0151311365164761,0.0172508773361625,0.0193107394276255,0.0213523495769431,0.0234619128118436,0.0256991608018548,0.0279758357819467,0.0300485716637852,0.0320855063799962,0.0342780444995095,0.0366010096830257,0.0384619370886666,0.0406525170294068,0.0425655915992798,0.0574551978803746,0.0710348794645191,0.0843434131610955,0.0972035323801513,0.1097865612648221,0.1254809928538204,0.1373540732258167,0.1485478326575354,0.1597628711813715,0.1703309667317303,0.1827599203144349,0.1942786069651741,0.2061915062447688,0.2159958020858386,0.2254780151513485,0.2365228364586331,0.2461116499983276,0.255089537641782,0.2624062025345152,0.269708546852123,0.2776056956612191,0.2840022426762603,0.2902924557297208,0.2963206700568351,0.3024422762256833,0.30775379696243,0.3127996404314822,0.3171044446419276,0.3216331174287967,0.3255011912753886,0.3240837696335079,0.3236650019208605,0.3226907997358103,0.3215052678610034,0.3204873565944327,0.3188140276950793,0.316430116354336,0.3171438867776176,0.3188005321870842,0.3182215561383789,0.3193197126178715,0.3203189767478583,0.3210682741010507,0.3225120340311205,0.3245855022170811,0.3262583542188805,0.326039011256552,0.3299686738600765,0.3345540335927321,0.3379732739420935,0.3411931688109518,0.3445566778900112,0.3482306767107678,0.3524558857230158,0.3559610475560177,0.3602757636990372,0.3615160349854227,0.3618434292614208,0.3667481662591687,0.3635334088335221,0.0,1.482192059484909,56.487109862806,185.0815316496792,261.4348994653617,fqhc4_100Compliance_implementation_low_initial_treat_cost,38 -100000,95546,44852,424.05752203127287,6086,62.34693236765536,4753,49.07583781633977,1871,19.14261193561217,77.19945181010942,79.66972532645197,63.224607941291474,65.05333719456459,76.9708766760911,79.44276338245876,63.14014131708345,64.97205906948122,0.2285751340183281,226.9619439932029,0.0844666242080265,81.27812508337229,149.95838,105.49633177933576,156948.88326041904,110414.17932653984,384.14676,252.49467093589132,401376.78186423297,263587.56089830166,376.28016,183.44398080879924,389020.7125363699,188356.5740654125,3125.63746,1428.5294678222758,3233089.674083688,1456868.804368865,1163.49744,512.1151471939155,1202940.8766458042,521193.5582796927,1831.98718,760.5374585652908,1877987.9429803449,764953.6427805405,0.37902,100000,0,681629,7134.0401482008665,0,0.0,0,0.0,33163,346.3985933477068,0,0.0,34425,355.5146212295648,1616369,0,58026,0,0,0,0,0,51,0.5337743076633245,0,0.0,0,0.0,0,0.0,0.06086,0.1605720014774946,0.3074268813670719,0.01871,0.339041095890411,0.660958904109589,24.622623826833443,4.418135271606817,0.3191668419945297,0.2358510414475068,0.2221754681253945,0.2228066484325689,11.52902717780689,6.004252805362445,19.802749620356337,12233.417763472014,54.09020925604146,13.37721376752807,17.364308794906368,11.838565262000037,11.510121431607002,0.5659583420997265,0.7796610169491526,0.6888595912986157,0.603219696969697,0.1265344664778092,0.7642023346303501,0.9282178217821784,0.8774038461538461,0.7908745247148289,0.1683168316831683,0.4925028835063437,0.6959553695955369,0.6176203451407811,0.5409836065573771,0.116686114352392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002473365703338,0.0048193015563807,0.0073421886424567,0.0093948267447535,0.011727816915747,0.0142204734041468,0.0163698525284482,0.0183834048640915,0.0206610724519034,0.0227405486836307,0.0247600472206539,0.026899466329395,0.0292378990731204,0.031246131627811,0.0331521402145381,0.0352773119682007,0.037584003982411,0.0399713154366601,0.0423628182159076,0.0445240158261214,0.0593410041841004,0.0736216261560724,0.0862888136733449,0.0987935303724777,0.1112731731033462,0.1270261961050388,0.1384772502420187,0.1502742737614992,0.1603188377848488,0.1706692765188587,0.1833547537017636,0.1952291546834811,0.2072283373515005,0.2166024987111564,0.2261610453823062,0.2363597991735904,0.2463297824724733,0.2551198871650211,0.2632219744208274,0.2710431716645037,0.2786242723625316,0.2853407438675484,0.2909530812657147,0.2971061479346782,0.3022327189501108,0.3071934180780491,0.3126977351478933,0.3173706165248561,0.3217823710416639,0.3263664744166358,0.3261230607202171,0.3247414149772445,0.3233587872457549,0.3222929936305732,0.3211428741676473,0.3189369280845053,0.316499278087169,0.3166647456901519,0.3166011905783054,0.3172870051635111,0.3179559570863918,0.3183081259179866,0.3194318588919562,0.3200503167258188,0.3203104223581461,0.321288089369067,0.3231827956989247,0.3261954393279009,0.330920007063394,0.3339693897833433,0.3362835875090777,0.3397811954970667,0.3403003754693366,0.3415781487101669,0.345210334856823,0.3481805293005671,0.3492808478425435,0.3518187239117472,0.3514757649607365,0.3486342943854325,0.0,2.615493245391061,56.13429146604388,176.6208330901277,261.44292583834533,fqhc4_100Compliance_implementation_low_initial_treat_cost,39 -100000,95675,45031,425.5761693232297,6114,62.61823882937026,4757,49.07238045466423,1881,19.29448654298406,77.33990302576841,79.72959678323005,63.32261558699434,65.08863363882715,77.1070826382185,79.49655029996114,63.23667337559338,65.00442752415432,0.232820387549907,233.04648326890745,0.0859422114009547,84.20611467282413,151.68362,106.7330663657401,158540.49647243271,111557.9475994148,386.39843,253.56944635480585,403204.6407107395,264371.58010167046,375.9469,183.1525410384521,387995.0248236216,187734.94694031484,3137.73882,1439.0642143462117,3240183.015416776,1465048.3944629724,1147.71122,512.8320960227543,1181723.5746015157,518298.39920712507,1850.47386,779.8806843387986,1899916.362686177,788312.6043882837,0.38118,100000,0,689471,7206.386203292396,0,0.0,0,0.0,33324,347.6143193101646,0,0.0,34401,354.5962895218187,1614785,0,57984,0,0,0,0,0,62,0.6480271753331591,0,0.0,2,0.0209041024301019,0,0.0,0.06114,0.1603966629938611,0.3076545632973503,0.01881,0.3300760043431053,0.6699239956568946,24.7082701139806,4.450189868967651,0.3125919697288207,0.2362833718730292,0.2215682152617195,0.2295564431364305,11.28548448397706,5.800619851828441,20.15584768114653,12266.352677882702,54.0686115160452,13.521985543975724,16.696429519966163,11.710355427877923,12.139841024225404,0.557494219045617,0.8113879003558719,0.6778749159381304,0.5825426944971537,0.108058608058608,0.7202194357366771,0.9147465437788018,0.8310249307479224,0.757201646090535,0.1596638655462184,0.4978454467107153,0.7463768115942029,0.6287744227353463,0.530209617755857,0.0936768149882904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.004835031169226,0.0071638035129019,0.0093141835615325,0.0113683739564585,0.0137828538854618,0.0160843152444245,0.0182901935167796,0.0204653254824991,0.0228766197875084,0.0250961094879286,0.0272947504567944,0.0295533070088845,0.0317038501946727,0.0338001713230057,0.0360004549167192,0.0380208441248989,0.040033629494312,0.0421399742021387,0.0441250052120251,0.0592917580695706,0.0731051088777219,0.0863206705903335,0.0990080262562721,0.1112552742616033,0.1265787970465652,0.1385426501320716,0.1496621082317884,0.1610567681858955,0.1712101883515753,0.1843014804845222,0.1963476247660467,0.2072939999565056,0.2168375713317445,0.2262392146504666,0.2368473517488868,0.2453615378607847,0.254176839215598,0.2634182313233876,0.2703687158516889,0.2777520707047337,0.2850845396506162,0.2918899733806566,0.2976404359803569,0.3036654933851195,0.3085372310950757,0.3124710825444859,0.3167785576238429,0.3214105336769448,0.3248640515284304,0.3247066431352473,0.3239750629618925,0.3228765907073098,0.3224728850325379,0.32209136331192,0.3202608376193975,0.3193158985555397,0.3188993174061433,0.3211095199127114,0.3223030043836202,0.3231503133476756,0.3246817329517418,0.3252462719344111,0.3264292744027914,0.3264500601684717,0.328699598351677,0.3304052705130764,0.3320415879017013,0.3352903951624244,0.3394164918253434,0.3434508416133569,0.3445138080626388,0.3446696366944845,0.3462706972504937,0.3493637724550898,0.3485045513654096,0.3537352354655622,0.3545081967213114,0.3451748251748252,0.3511627906976744,0.0,2.470881473077971,55.57842793429309,179.94172116807798,259.6259220034636,fqhc4_100Compliance_implementation_low_initial_treat_cost,40 -100000,95788,44848,424.3642209880152,6152,62.97239737754207,4864,50.22549797469412,1935,19.86678915939366,77.331780499572,79.67388858401569,63.32970022966426,65.06323014886861,77.09514335782667,79.4362273759291,63.242451232388085,64.9776339723119,0.2366371417453336,237.6612080865783,0.0872489972761769,85.59617655670593,151.04144,106.30943744870793,157683.05006890217,110984.08720164104,385.91109,253.0064553349778,402346.3795047396,263597.6482805548,376.09291,183.7628562785359,388963.8054871174,189058.6383642997,3174.3712,1452.9688441507926,3282522.9569465904,1485426.915846234,1164.76648,518.304595069051,1202734.5700922871,527846.3952364087,1885.56008,789.3530171088329,1938770.430534096,798371.7493176251,0.38071,100000,0,686552,7167.4113667682805,0,0.0,0,0.0,33300,347.0685263289765,0,0.0,34344,354.887877395916,1618689,0,58117,0,0,0,0,0,72,0.7516599156470539,0,0.0,0,0.0,0,0.0,0.06152,0.1615928134275432,0.3145318595578673,0.01935,0.3416110507527549,0.6583889492472451,24.49431799171714,4.392490649361543,0.3264802631578947,0.2321134868421052,0.2288240131578947,0.2125822368421052,11.04498280205756,5.750329457084267,20.667333990109743,12232.327436433934,55.18226482637121,13.417929920159056,18.05407642591159,12.237839949471628,11.47241853082894,0.5680509868421053,0.7741364038972542,0.7153652392947103,0.5561545372866128,0.1295938104448742,0.7595238095238095,0.9448818897637796,0.8747044917257684,0.7349397590361446,0.2125603864734299,0.5011098779134295,0.6871657754010695,0.6575107296137339,0.5046296296296297,0.1088270858524788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094454292225,0.0044604841652812,0.0068596710199194,0.0093055386240806,0.0111975591151792,0.0135337427061375,0.0158642768295915,0.0181714239046102,0.0203737400584735,0.0223780519015201,0.0245725181449132,0.0268599708400928,0.0290270837189215,0.0310771417682141,0.0331496274279109,0.0351589959889178,0.0371793411282221,0.0391312915504205,0.0412012261651166,0.0429277942631058,0.0577653491381109,0.0717513178813488,0.085248891544291,0.0981506777345802,0.1098912677006068,0.1252747252747252,0.1376909135231958,0.1488802875311031,0.1597178499397069,0.1697593691743984,0.1817526183787042,0.1942389235029422,0.205415986949429,0.2166827091354567,0.2267579436269384,0.2371782798010126,0.2463040446304044,0.2557469971658644,0.2634228758688725,0.2713265259398324,0.2779575983168798,0.2851065818997756,0.2916001277547109,0.2967817689487431,0.3025201918989494,0.307871540405597,0.3130931216666249,0.317333910960475,0.3226902085845033,0.3264818166206523,0.3253576913749899,0.3245741958561484,0.3243783898006621,0.3236749218840412,0.3230959144518643,0.3210702341137124,0.3182323072040622,0.3189714736946007,0.3198013018156903,0.3205109880293014,0.3212791112278792,0.3223076770991913,0.3224322621298046,0.3238985253910627,0.3253995075556414,0.3267686674512881,0.3278772816865198,0.3308469455197809,0.3326784774600947,0.3356142584341184,0.3386743357984114,0.3403336709130643,0.3417544750539545,0.3446219707973396,0.3500047183165046,0.3556927460524753,0.3583859541044201,0.3582270795385549,0.3589389334070185,0.3641709133673069,0.0,2.190774378104458,55.077716152865655,190.17203071060385,264.7053301119608,fqhc4_100Compliance_implementation_low_initial_treat_cost,41 -100000,95672,45242,428.88201354628313,6228,63.853583075507984,4899,50.46408562588845,1893,19.253282046993892,77.34192318165195,79.7168496153493,63.32298576779221,65.0750659267437,77.10379360719391,79.48610300205803,63.233874022078666,64.99227713619575,0.2381295744580427,230.7466132912737,0.0891117457135379,82.78879054795141,151.34218,106.5675942536666,158188.5818212225,111388.4880149538,390.3152,255.3943223238392,407166.7154444352,266149.6267300406,380.54146,184.74555031434463,393686.020988377,189914.03783681156,3202.50173,1455.6468380986166,3298639.9678066727,1473247.741758922,1175.68415,520.7963502829546,1207294.527134376,523497.3634505528,1855.79896,781.702133047827,1889698.8042478468,774039.5593090056,0.38271,100000,0,687919,7190.390082782842,0,0.0,0,0.0,33607,350.4369094405887,0,0.0,34712,358.7360983359813,1613123,0,57841,0,0,0,0,0,84,0.8779998327619366,0,0.0,0,0.0,0,0.0,0.06228,0.1627341851532492,0.3039499036608863,0.01893,0.3311847759361571,0.6688152240638429,24.612697307875315,4.38207497704538,0.3306797305572566,0.2322923045519493,0.2137170851194121,0.2233108797713819,11.204261935119776,5.834161346342429,20.093075735662392,12289.256131675154,55.33086445280894,13.527588600352107,18.238178002026284,11.587010558389684,11.978087292040854,0.5631761583996734,0.7618629173989455,0.7141975308641976,0.5864374403056352,0.1106032906764168,0.7293469708890638,0.916243654822335,0.8761904761904762,0.7395348837209302,0.1611570247933884,0.5049614112458655,0.6801075268817204,0.6575,0.546875,0.096244131455399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971791055354,0.0044293084400117,0.0067459955161954,0.0093546224632823,0.0113695300662036,0.01356111665411,0.0157005077177171,0.0178183043509338,0.0198169640574671,0.0218913826998689,0.0238908199780573,0.0260323067601844,0.0281932072987595,0.0302833590932509,0.0325168003468458,0.0345084332116524,0.0367838238188466,0.039225659123936,0.0410795070459154,0.0431216848511374,0.0575269771960429,0.0718571652966123,0.0854011840282151,0.0985183314391547,0.1110548309484614,0.1262805858945051,0.1379969418960244,0.1494982636299721,0.160840655933979,0.1713095659828454,0.1846991589389691,0.1972229142071117,0.2094726987720978,0.2200249518473122,0.2294407080035664,0.2393028872786899,0.2484147539519514,0.2569907240634005,0.2657325996936865,0.2739613045121825,0.2815874448803861,0.2876871042868679,0.2936154593032893,0.2986651635264629,0.303851623175371,0.3085459230854592,0.313552315093205,0.3184445010183299,0.3226504868214642,0.3274445031712473,0.3263351053782011,0.3250165508109897,0.3240847892969036,0.3225857733329479,0.3217550002967535,0.3207073797576796,0.3194396129154676,0.3199888339710011,0.3206859995896313,0.3221022575176229,0.3234902849862284,0.3246393445867057,0.3259849119865884,0.3263464337700145,0.3270363160045185,0.3280403998334028,0.3284129692832764,0.3320050203953561,0.3355001048437828,0.3388805439165151,0.3397548953104509,0.3417005760186017,0.3422379032258064,0.3453128546568813,0.3469311725807953,0.345049042503503,0.3501653140967838,0.3472553699284009,0.3475061324611611,0.3549232497192063,0.0,2.834543710971432,55.22614453272058,181.47165470366963,275.35084087582607,fqhc4_100Compliance_implementation_low_initial_treat_cost,42 -100000,95731,45160,427.9804869895854,6015,61.54746111499932,4720,48.63628291775914,1879,19.178740428910174,77.32392886815877,79.68555390888805,63.31606620966248,65.06393225077683,77.0843316417421,79.44921757642919,63.22738672537757,64.9789695183481,0.2395972264166772,236.33633245886188,0.0886794842849099,84.96273242873542,150.7044,106.07315873061124,157424.86759774786,110803.35390898582,385.34931,253.19350842751956,401875.3486331492,263835.43782444525,374.85647,182.6179793801257,387121.3713426163,187376.1877964974,3098.85235,1417.081772874668,3196892.333726797,1440645.3938278607,1111.9847,491.3190323764481,1145076.3180161077,496733.21642427024,1838.77846,769.7389495820296,1879923.4103895288,772812.4377236564,0.38316,100000,0,685020,7155.67579989763,0,0.0,0,0.0,33216,346.2828132997671,0,0.0,34291,353.6576448590321,1617593,0,58148,0,0,0,0,0,67,0.6998777825364825,0,0.0,0,0.0,0,0.0,0.06015,0.1569840275602881,0.31238570241064,0.01879,0.3194730995080146,0.6805269004919854,24.556722781116505,4.387285168902752,0.325,0.2330508474576271,0.2207627118644067,0.2211864406779661,11.461080487437124,5.949606080573285,20.10337487424382,12268.955606418158,53.676075136279344,13.280623620497948,17.437683786492965,11.604629848654874,11.353137880633543,0.5713983050847458,0.7972727272727272,0.7138200782268579,0.5930902111324377,0.1024904214559387,0.7382239382239382,0.9056603773584906,0.8702830188679245,0.7398373983739838,0.1044776119402985,0.5083211678832117,0.7292899408284024,0.654054054054054,0.5477386934673367,0.1020166073546856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027652010088425,0.0051810319480071,0.0074086102259118,0.0095307768904062,0.0118098221914798,0.0137983706720977,0.0161185082478641,0.0181081384547857,0.0202026398388696,0.0221152861677075,0.0242882188297774,0.0266127293448463,0.028447176872147,0.030406971354408,0.0325463326041193,0.0345244617181604,0.0366568611203182,0.0385896810487093,0.0407013019425148,0.0429546283273428,0.0580049068225713,0.072467255304013,0.0860788960426147,0.0987150638262076,0.1108674104224223,0.1264161122100341,0.1378490790255496,0.1500883749653953,0.1617282631916257,0.1715317903583718,0.1842176079913025,0.1960141871580267,0.2072031917553567,0.2173252279635258,0.2271587559934896,0.2375178553632528,0.246702818504385,0.2552545119042261,0.2639382414713061,0.2720320132088885,0.2793459871607685,0.2862867789222062,0.2931279789428754,0.298990602158023,0.3039784828459114,0.3090698162340948,0.313924621981494,0.3183962264150943,0.3230401951371409,0.3274487245606379,0.3260206697428425,0.3252666685041757,0.3241984646647098,0.3232956437392324,0.3222719900001488,0.3202150801188761,0.3177370321109633,0.3180281597689455,0.3188286949242307,0.3198222317412722,0.3219396164219358,0.3236608908932669,0.3243498124358195,0.3263840733698691,0.3276223018985971,0.3286977848514102,0.330191097314385,0.3312306818898631,0.3331216259129883,0.3383300198807157,0.3392881556760698,0.3422964730840626,0.344699591066373,0.3459081229084271,0.3485449735449735,0.3490284896888783,0.3502730582524271,0.3572133412275508,0.3513944223107569,0.3501696192989069,0.0,2.5743803751042287,56.55115678142027,172.2817690980171,259.9737732848029,fqhc4_100Compliance_implementation_low_initial_treat_cost,43 -100000,95790,45129,427.3410585656122,6077,62.35515189476981,4774,49.21181751748617,1926,19.69934231130598,77.4066300966336,79.74435519340794,63.35719594835807,65.08710766303412,77.17537384825361,79.51689362517895,63.27061702718841,65.00474149895678,0.2312562483799922,227.4615682289891,0.0865789211696608,82.36616407734232,151.93992,106.86358009763433,158617.03726902598,111559.6251542082,387.75507,254.3170183330521,404141.85196784633,264851.1804829401,371.86499,180.7533431899712,384384.9984340745,185767.3434526051,3188.91134,1440.8630741010115,3288936.6530953124,1464896.8179792042,1160.8166,505.2944011071727,1193855.7678254514,510854.3019910328,1897.13552,792.5838145348546,1941288.7566551836,794110.2155898963,0.3825,100000,0,690636,7209.865330410272,0,0.0,0,0.0,33386,347.8546821171312,0,0.0,33929,350.422799874726,1615563,0,58034,0,0,0,0,0,83,0.8560392525315794,0,0.0,1,0.0104395030796534,0,0.0,0.06077,0.158875816993464,0.3169326970544676,0.01926,0.3291809405169729,0.6708190594830271,24.73971075914324,4.476377964819768,0.3077084206116464,0.2245496439044826,0.2341851696690406,0.2335567658148303,11.040802474625384,5.58788644389393,20.314422628355707,12220.616164943976,53.6291642587664,12.824185010158107,16.42247578506329,12.381264760421512,12.0012387031235,0.5385421030582321,0.7611940298507462,0.6766507828454731,0.5733452593917711,0.1076233183856502,0.7067545304777595,0.9142091152815014,0.8539325842696629,0.7333333333333333,0.1130434782608695,0.4811797752808989,0.6795422031473534,0.6199460916442049,0.526071842410197,0.1062146892655367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020771272823069,0.0043093833019001,0.0066266833094853,0.0088800382024526,0.0110454531585317,0.0129121606484592,0.0154156726004771,0.0178635226866738,0.0201357373563923,0.0222379139547259,0.0243097546477545,0.0267405469190908,0.0290656443672466,0.0312847436689314,0.0332027626017936,0.0353152557774519,0.0373470168940937,0.039062014057349,0.0410796658770726,0.0428843611073514,0.0572644935097458,0.0715854423760719,0.0848068759498978,0.0978675550977939,0.1103595060479622,0.1250396263499376,0.1369774442465869,0.1480272600657048,0.1590094319491272,0.1692747662350181,0.1822260476625961,0.1946934230016542,0.2074717202560118,0.2170741561745853,0.2267029912886818,0.2362228245837251,0.2465374579030711,0.2552887749825768,0.2631949012225271,0.2709322955416929,0.278337997548396,0.2855072633141281,0.2920230448001324,0.2976488483788672,0.304130785954599,0.3083834549398541,0.3129084762739451,0.3175873387445612,0.3225827342788679,0.3266265314744402,0.3259331149662339,0.3247164409206035,0.3238071080296497,0.3225671262175207,0.3219725083870202,0.3200813468095842,0.3188131313131313,0.3190202106089345,0.3198267810138405,0.3209186840471756,0.3217803312938367,0.3211856744112906,0.3213921016984474,0.3212942564034092,0.3213969832428943,0.3222199213087596,0.32371169029629,0.3279900202713239,0.3298142921849413,0.3322569211987555,0.3363443385574274,0.3379756148833298,0.3420414256391118,0.3463410980450903,0.3510403240655496,0.356100949293818,0.3580190822353475,0.3541418945699564,0.3552523874488403,0.3494849294162533,0.0,2.3133605112461084,52.8474464719972,178.52987374264632,268.27542705600894,fqhc4_100Compliance_implementation_low_initial_treat_cost,44 -100000,95690,45227,427.662242658585,6126,62.733827986205455,4841,50.03657644476957,1917,19.709478524401717,77.29491858535671,79.69697557710182,63.29396199958445,65.07380984497483,77.05764171807782,79.45918111897335,63.20627196621051,64.98783303423231,0.2372768672788936,237.79445812847652,0.0876900333739456,85.9768107425225,151.5998,106.72185680606378,158428.04890793186,111528.7457477937,388.00102,254.5861597651073,404941.6448949734,265517.6087000809,378.08891,184.16620495786424,391323.75378827465,189566.88205259744,3189.71641,1459.822797756507,3298334.1101473505,1490523.8768486846,1146.46639,506.0006235560435,1178867.4992162192,509554.3354123144,1882.42786,788.9950555423712,1936760.0167206605,798687.7430303519,0.38286,100000,0,689090,7201.274950360539,0,0.0,0,0.0,33446,348.9601839272651,0,0.0,34593,357.67582819521374,1612871,0,57908,0,0,0,0,0,72,0.7524297209739785,0,0.0,2,0.0209008255826105,0,0.0,0.06126,0.1600062686099357,0.3129285014691479,0.01917,0.3293675641828428,0.6706324358171571,24.502264882030477,4.359348231688836,0.3205949184052881,0.2278454864697376,0.2266060731253873,0.2249535219995868,11.237912834791375,5.740896661354805,20.477488664067767,12299.051328358926,54.9917915262064,13.374944283688496,17.4889445669861,12.236864642067223,11.891038033464593,0.5695104317289816,0.7987307343608341,0.7139175257731959,0.5888787602552416,0.1120293847566574,0.7387596899224806,0.9106280193236715,0.8596938775510204,0.7546468401486989,0.1674418604651162,0.5080259081948747,0.7314949201741655,0.6646551724137931,0.535024154589372,0.0983981693363844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025038774620616,0.0049925416298821,0.0073020870360026,0.0092115296629556,0.0115536915826012,0.0139329140888567,0.0162455610433078,0.018563167896038,0.0205119286328109,0.0227619623229084,0.0249061403688734,0.0271411400922511,0.0294196336694793,0.0316599849532623,0.0337427745664739,0.0358431834869026,0.0379159197123405,0.0399609630498655,0.0419956516763931,0.0441294491635833,0.0591503984791986,0.0734079417091529,0.0866134295937962,0.0994044988742293,0.1113432080010127,0.1268978067437604,0.1385129756408215,0.1501336200930549,0.1614985147351099,0.1718347639484978,0.1849988689366927,0.1966980774848265,0.2089430540757974,0.2191584699453551,0.2291391748042579,0.2394534623646389,0.2491520128536999,0.2574277482668587,0.2652259332023575,0.2734412621247907,0.2797285403251957,0.2851490248413758,0.2913099593856938,0.2971066647473729,0.3020652266400865,0.3087480252764613,0.3146572785246251,0.3189872450927977,0.3229484856329278,0.3273235647116234,0.3263894496030144,0.3247947861238295,0.3240186481499739,0.3229199780365864,0.3217661395791226,0.3202103358935443,0.318217865753077,0.3186108461867333,0.3204590937858133,0.3206375898958817,0.3219877083842352,0.3224098965148091,0.3224105698741781,0.3233546361699742,0.3226391373724674,0.3240815899033804,0.3249033366747816,0.3289328238006506,0.3310361801624416,0.3344203619009743,0.3365947329919532,0.3389695326208327,0.3449968533668974,0.3503315801509261,0.3538127595318988,0.3567084078711985,0.3582430989781912,0.3632296115517592,0.3676591095329145,0.3718479488144524,0.0,2.1852147683302685,56.59635931671029,181.83802571829997,266.9783917198749,fqhc4_100Compliance_implementation_low_initial_treat_cost,45 -100000,95720,44690,424.6865858754701,6005,61.53363978269954,4716,48.68366067697451,1914,19.598829920601755,77.3593554540744,79.7283827733886,63.33143217950936,65.08292145892065,77.1304606140587,79.50215518170003,63.24683749728314,65.00164279914448,0.2288948400156982,226.22759168856987,0.0845946822262249,81.27865977617432,151.82046,106.73762638979916,158608.9218554116,111510.26576452063,384.64214,252.1452949358875,401252.8311742583,262831.55551179213,372.22308,181.11701139456957,384737.035102382,186049.37338556472,3102.15438,1415.6314149537025,3204761.8366067694,1442828.107975033,1107.70273,487.11191351230406,1142901.274550773,494561.5164148592,1877.1906,780.023298130008,1924772.670288341,785445.5097092128,0.37909,100000,0,690093,7209.496447973255,0,0.0,0,0.0,33213,346.3643961554534,0,0.0,34068,351.76556623485163,1617505,0,58020,0,0,0,0,0,61,0.6372753865440869,0,0.0,0,0.0,0,0.0,0.06005,0.1584056556490543,0.3187343880099916,0.01914,0.3349101229895931,0.6650898770104068,24.387901108306156,4.43886749924884,0.3176420695504665,0.2334605597964376,0.2230703986429177,0.2258269720101781,11.498352391730869,5.961472099649917,20.29854206776323,12207.404263940783,53.4926166101724,13.149548264545937,16.943574882385516,11.75268112529445,11.646812337946502,0.5642493638676844,0.7674841053587648,0.7142857142857143,0.594106463878327,0.1136150234741784,0.7376788553259142,0.910411622276029,0.8723958333333334,0.7411764705882353,0.1359223300970873,0.5011567379988433,0.6816860465116279,0.6597845601436265,0.5470514429109159,0.1082654249126891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002126969979338,0.0042069196224923,0.0065248054227931,0.0086530844386666,0.0110734876910405,0.0132651918515275,0.0153830470462306,0.0177816793581446,0.0198012716975731,0.0218675457365452,0.0237809567758806,0.0258219579083597,0.0276863245401045,0.0295702525320172,0.0316595463645181,0.0335962454903501,0.0354595243764817,0.0373601070395071,0.0392540075264569,0.0412903763424059,0.056377002276382,0.0703326146568145,0.0844609478255396,0.0970736990420912,0.1094532609268729,0.1247236531728318,0.1372453310696095,0.1489513467475779,0.1585685128391447,0.1688395300177048,0.1825782470505845,0.1947243659822269,0.2063612927086619,0.217643454282838,0.2274023899994493,0.2380635575366465,0.2479228088984186,0.2564483290025759,0.2651363863295965,0.2726710422322257,0.2794571894630895,0.2865276251490565,0.2922902333498829,0.2979403281592206,0.3033218480054353,0.309223402552961,0.3145609206905179,0.3185458243294776,0.3220714017675755,0.3263789126853377,0.3257623610681791,0.3252772014674159,0.3241011235955056,0.3230607574165503,0.3217422211690831,0.3193164479707049,0.3178056278079924,0.3182264076907985,0.3188605676729495,0.3187137623163661,0.3188237714884304,0.3188580222555441,0.3198423843558089,0.3200224089635854,0.3216588088136246,0.3223218007503126,0.3233435792349727,0.3265344664778092,0.3281831589297001,0.3328045685279188,0.337086847503989,0.3417486048365665,0.3452343205022513,0.347941466373493,0.3502381619501261,0.3533223374175306,0.3574908647990256,0.3672078572860293,0.3735070575461455,0.3803030303030303,0.0,2.282869650736598,55.02529194839816,177.2348171711614,258.573973080626,fqhc4_100Compliance_implementation_low_initial_treat_cost,46 -100000,95888,44731,422.482479559486,6081,62.07241782079092,4753,48.98423160353746,1806,18.479893208743533,77.4394230829848,79.71875828229986,63.39129033748679,65.07685037412534,77.21136347883514,79.48963237477605,63.307315820886224,64.99417469972077,0.2280596041496636,229.1259075238088,0.0839745166005627,82.67567440456958,151.21458,106.41905163576196,157699.1698648423,110982.65855556686,384.50917,252.35205084303496,400445.7179209077,262621.25692791067,374.6686,182.06300952288768,386089.4376772902,186419.7253386708,3090.89602,1427.3001451847904,3191687.072417821,1456750.610279482,1103.79423,488.2810537668682,1140778.960871016,498870.5091011048,1764.7728,741.7945340954933,1809171.345736693,751682.1106655616,0.37987,100000,0,687339,7168.14408476556,0,0.0,0,0.0,33191,345.54897380276986,0,0.0,34368,353.7773235441348,1622154,0,58219,0,0,0,0,0,72,0.7508760220256966,0,0.0,1,0.0104288336392457,0,0.0,0.06081,0.1600810803696001,0.2969906265416872,0.01806,0.3367843137254901,0.6632156862745098,24.380220025487525,4.325213288365893,0.321060382916053,0.2417420576478013,0.2274353040185146,0.2097622554176309,11.537417500960215,6.118012596390765,19.26820752947275,12170.855719764337,53.90326096330431,13.648020929034429,17.35581493146616,12.012531280667742,10.88689382213597,0.5768988007574164,0.7876414273281114,0.709043250327654,0.6003700277520814,0.1063189568706118,0.7470542026708562,0.9347826086956522,0.8467336683417085,0.7846153846153846,0.1144278606965174,0.5146551724137931,0.7047619047619048,0.6604609929078015,0.5420219244823387,0.1042713567839195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0043779642466253,0.0067357145030888,0.0091177694971011,0.0113937816988016,0.0135324881463543,0.0158390628978864,0.0181864545083639,0.0202893220546769,0.0223817999549908,0.0246726367343593,0.0267386263364182,0.0289783587150872,0.0310878695544758,0.03324845098302,0.0352422452604188,0.0372753701155608,0.0393637964977722,0.0414326498832078,0.0432959876832173,0.0573397125196743,0.0722711552727538,0.0851709911834307,0.0979916643045363,0.1101567351922611,0.125649254676745,0.1379898326625714,0.1491213157950657,0.1593118444614991,0.1694327629931623,0.1820663857597385,0.1940927358368264,0.2055331675048608,0.2167666371671747,0.2253996525716296,0.2346613545816733,0.245408549904159,0.2548297241441279,0.2626976575596937,0.2699298141331931,0.276599184672772,0.2833092046887405,0.2897511050180821,0.2954809361345544,0.3009854847322685,0.3066069097983205,0.3116912343873073,0.3155273822075992,0.3207449627130911,0.32415962515465,0.3234278187707485,0.3218468128337841,0.3201146679407549,0.3186513547046772,0.3187088547535733,0.3175551751543681,0.3154825864357499,0.3166475691602554,0.3175165692672039,0.3178396654506629,0.3188432870673068,0.3194901396796627,0.3197060174552136,0.320002669098512,0.3214362502687594,0.3229347797877034,0.3242677824267782,0.3282121599301941,0.3307857986521225,0.3346314216033357,0.3378890392422192,0.3420525261048412,0.3449849924962481,0.3487101669195751,0.3520489872821479,0.3535413453553209,0.3481881264456438,0.3487231869254341,0.3513139695712309,0.3553875236294896,0.0,2.3227561099469045,55.23976121592902,180.07807964513876,259.28986898675566,fqhc4_100Compliance_implementation_low_initial_treat_cost,47 -100000,95715,44904,423.622211774539,6153,62.67565167424124,4898,50.336937784046384,1911,19.43269080081492,77.34647984393533,79.69662349623427,63.33814763576003,65.07464735325894,77.10629759030664,79.46380272084424,63.24722545490444,64.98979791656753,0.2401822536286886,232.82077539002444,0.0909221808555926,84.84943669141387,151.86028,106.79864577465904,158658.8100088805,111579.8420045542,385.06196,252.41626755668267,401453.429452019,262869.41185465467,374.42735,182.4115492482061,385740.18701352976,186418.31423531976,3218.03883,1481.6674200021396,3308127.127409497,1494021.2819329677,1192.79655,528.6583897668125,1221614.8775009145,527746.1763269153,1883.1749,800.1629111459475,1916249.09366348,791439.6900574449,0.38013,100000,0,690274,7211.764091312752,0,0.0,0,0.0,33184,345.8183147886956,0,0.0,34289,352.8705009664107,1616361,0,58036,0,0,0,0,0,75,0.7626808755158543,0,0.0,0,0.0,0,0.0,0.06153,0.1618656775313708,0.310580204778157,0.01911,0.3317315144938769,0.6682684855061231,24.14626834767109,4.3483015582150575,0.3207431604736627,0.2274397713352388,0.2272356063699469,0.2245814618211515,11.138825394996436,5.722612255349431,20.34254304235253,12232.535383962344,55.65219343851501,13.232912845417136,17.870665236076025,12.332903641267428,12.215711715754413,0.5779910167415272,0.803411131059246,0.7218332272437937,0.605570530098832,0.1163636363636363,0.7344931921331316,0.927860696517413,0.8817966903073287,0.7619047619047619,0.1346938775510204,0.5201342281879194,0.7331460674157303,0.6628919860627178,0.5598141695702671,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812639254608,0.0050380642479903,0.0070833460184085,0.0093252879868348,0.011654158276893,0.0141716892001954,0.0166258919469928,0.0187285030465712,0.0210362768447629,0.0232510519795644,0.0252667616519234,0.0274156795927165,0.029568400057574,0.0314138282642057,0.0338722491049596,0.0361550387596899,0.0383189762279466,0.0404942729083665,0.0426208717527573,0.0446847072057996,0.0592829250976215,0.0723466610843625,0.0848389465953205,0.0979272486355175,0.1101211501354899,0.1253714297799443,0.1366944638954315,0.1477704565534419,0.158339828943013,0.1693376354690364,0.1827411714039621,0.1952475204689747,0.2069407762452856,0.21763220878004,0.2268065037432802,0.2369053286538312,0.2466152164700109,0.2553373377426829,0.2635974717156701,0.2715943323826214,0.2791068949560388,0.28649280785873,0.292717285792078,0.2985167687861965,0.303344306903631,0.3079471422061848,0.3119658654387567,0.3157083927480139,0.3196695801021864,0.3246314009406542,0.3236174400733411,0.3224687073986863,0.321059012603265,0.3207375271149674,0.3202670751111574,0.3187003587966512,0.3169824461433749,0.3174389603570491,0.3190820389261974,0.3199992859947878,0.319883106665168,0.320666021450157,0.3217747010698552,0.3218859138533178,0.3226854749410235,0.3225882414505874,0.3265708489299083,0.3295468848332284,0.332104616464806,0.3343233931329452,0.3379234873010807,0.3409006326758467,0.341053160107952,0.3434520631530776,0.3470099981135635,0.3504283674440742,0.3495412844036697,0.353646150721105,0.3542713567839196,0.3493312352478363,0.0,3.2245207256380137,56.9389640834452,180.8483707612948,271.3127238069469,fqhc4_100Compliance_implementation_low_initial_treat_cost,48 -100000,95729,44919,425.4719050653407,6084,62.18596245651788,4759,49.00291447732662,1953,19.96260276405269,77.41222784566315,79.7694035041723,63.350809200748486,65.09037217514775,77.16986359512595,79.53040610552921,63.26097986081163,65.00472945002622,0.2423642505372072,238.9973986430931,0.0898293399368554,85.64272512153082,152.33108,107.112062505704,159127.41175610316,111890.92386393256,387.18457,254.19308256575505,403771.364999112,264846.39196665067,379.47025,184.94083927970084,392066.0719322253,189814.20236066877,3118.26155,1440.0215745242012,3213142.2661889293,1460026.7259912875,1161.01983,519.706621599612,1196592.631282057,526670.739034138,1911.71614,799.524940644252,1955719.8132227436,800753.9994650211,0.37928,100000,0,692414,7233.064170731962,0,0.0,0,0.0,33372,347.8778635523196,0,0.0,34672,357.87483416728475,1611972,0,57785,0,0,0,0,0,65,0.6685539387228531,0,0.0,0,0.0,0,0.0,0.06084,0.1604091963720734,0.3210059171597633,0.01953,0.3297705124174788,0.6702294875825212,24.241559368441774,4.415392501630056,0.3229670098760244,0.2256776633746585,0.2286194578693002,0.2227358688800168,11.30808483602971,5.829679786311591,20.69767614386849,12136.018301258524,53.84592249638084,12.774985986411767,17.349658826441193,12.175966505993038,11.545311177534842,0.567135952931288,0.7960893854748603,0.697462589459987,0.5772058823529411,0.1358490566037735,0.7370030581039755,0.9156010230179028,0.8557457212713936,0.7455197132616488,0.2096069868995633,0.5027528252680382,0.7276720351390923,0.6400709219858156,0.519159456118665,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888393761393,0.0045710231591749,0.006999959420525,0.0091904297668372,0.0111631879136632,0.0132844709115895,0.0155023747885113,0.0175198718406579,0.0196523285403317,0.0219344933469805,0.0239608100352545,0.0262071938901207,0.0284462995137296,0.0306681496127862,0.0326887756154941,0.0348858843959315,0.0370186283951,0.0390209993359893,0.0409423604757548,0.042908931808238,0.0573078167903864,0.0713762504708886,0.0846787306582743,0.0970575549407197,0.1095810910625725,0.1252301830881574,0.1364721865480752,0.1478208090639009,0.1585089556704997,0.1687577139790716,0.1814839572192513,0.1935333672618596,0.2050095793782112,0.2155181852022159,0.2250839988983751,0.2353626210307997,0.2447109313007812,0.2539421517390521,0.2623684240407871,0.2697677617551984,0.2760856977417487,0.2825896148579854,0.2889262300901711,0.2940936912333656,0.2998943649145812,0.304993534880857,0.3098991212170456,0.3146652443360764,0.3196197217665371,0.3235986687188392,0.3227641730962764,0.3218735863798988,0.3210640836667368,0.3208218152499424,0.3201004653911501,0.3183707018585323,0.3170796947525765,0.317129252144418,0.3177927239376337,0.3182875095404604,0.3187089328592967,0.3186163843027935,0.3196863203120111,0.3199759834552692,0.3207813659540852,0.3224057888321187,0.3241948287593558,0.3281430760091298,0.3308892845920184,0.3339894496496339,0.3376412110257569,0.3374015956041634,0.3413687308246196,0.3447545571439376,0.3460143242489071,0.3437169389914188,0.345811320754717,0.3482089253552131,0.3465940054495913,0.3523845571536714,0.0,2.7663408044774958,56.66350857516249,172.96532252692126,260.0185727739496,fqhc4_100Compliance_implementation_low_initial_treat_cost,49 -100000,95742,45150,427.52397067117874,5944,60.89281610996219,4616,47.75333709343862,1820,18.6647448350776,77.32373385663094,79.69443743853748,63.321321634088775,65.07554957704983,77.09400801118925,79.46461381541754,63.23647070312775,64.99278242358021,0.2297258454416919,229.8236231199411,0.084850930961025,82.76715346961794,151.27178,106.37253421591193,157999.16442104822,111103.10357821216,383.30709,251.3679596271352,399871.8430782728,262065.72460296965,367.41914,178.36462802490783,381017.5262685133,184143.5800446938,3037.90029,1384.9626941549582,3141763.8549434943,1415403.3489579572,1097.82658,485.2185498362284,1131871.132836164,492165.7440575804,1785.44754,751.623257377168,1831735.539261766,757166.208302148,0.38234,100000,0,687599,7181.780200956738,0,0.0,0,0.0,33079,344.98965971047187,0,0.0,33480,347.0368281422991,1621406,0,58219,0,0,0,0,0,72,0.7415763196925069,0,0.0,2,0.0208894737941551,0,0.0,0.05944,0.1554637233875608,0.3061911170928668,0.0182,0.3278347213324792,0.6721652786675208,24.797708814739494,4.423911278406385,0.3275563258232236,0.2255199306759099,0.2224870017331022,0.2244367417677643,11.206883241741862,5.684984573885406,19.533034160909207,12263.713820262055,52.426621546158174,12.528875863847784,17.06360904757204,11.41156237466155,11.422574260076791,0.5517764298093587,0.7829010566762729,0.6818783068783069,0.5589094449853943,0.1225868725868725,0.7243642329778507,0.917948717948718,0.8798955613577023,0.6899563318777293,0.1382488479262673,0.4898439799823373,0.7019969278033794,0.6147032772364924,0.5213032581453634,0.1184371184371184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025126646403242,0.0047156895555082,0.0068412505075111,0.0092067556856289,0.0115578707471919,0.0137314223431022,0.0157773426345204,0.0181487647197001,0.0204309101878457,0.0225408367043883,0.024869244180084,0.0268668672780864,0.0290728776593555,0.0311208664378973,0.0331127878531394,0.034746200765016,0.0369231087911177,0.0388035234429308,0.0407794044252204,0.0431480015004376,0.0578439049856434,0.0715878049546296,0.0844347935548841,0.0971610093721402,0.109693474066029,0.1255762317614717,0.1377558056884607,0.1496626870118538,0.1600734791524265,0.1699227964829509,0.1828439764419608,0.1952013673290568,0.20734571391293,0.2172444327834443,0.2271267351563015,0.2379149228282291,0.2474970455102905,0.2563664753260466,0.2648112458904886,0.2730216115414097,0.279815612833162,0.2867572334684437,0.2933564946114577,0.2983705867563782,0.3044639172755298,0.309874596565572,0.3151862464183381,0.3196614914736574,0.3242682974230076,0.3286632102478859,0.3275439588550502,0.3258055632057284,0.3251480124048492,0.3241674747094664,0.323093173061188,0.3203114223972781,0.3180703447621157,0.3170595665797201,0.3174259350855349,0.3181518269522264,0.3202419747537176,0.32131769916754,0.3226842425641779,0.3230324489064181,0.3236910616141162,0.3245717274748267,0.3251553061750308,0.3280108767824959,0.3314745535399167,0.333719860850094,0.3355196770938446,0.3400792376057394,0.3426449114341947,0.347535697835099,0.3529467143664093,0.3518915060670949,0.3575019040365575,0.3610942249240121,0.3662822624931356,0.371824480369515,0.0,1.7421590914319478,53.81401729080187,177.6229574023149,250.77787401107105,fqhc4_100Compliance_implementation_low_initial_treat_cost,50 -100000,95781,45297,429.5737150374291,6075,62.20440379615999,4802,49.56097764692371,1939,19.857800607636168,77.38153749659537,79.72286307024214,63.350937847410606,65.08287943925212,77.14105823535222,79.48448935203565,63.26057040094216,64.99580193424701,0.2404792612431521,238.37371820648912,0.0903674464684485,87.07750500511224,151.855,106.93212051150752,158543.97009845378,111642.30955148466,389.35553,254.8958624388601,405927.9919817082,265546.1951851971,378.10926,183.44149607318164,391337.8645033984,188875.97766457376,3156.49838,1437.4103805586872,3260589.9291091138,1465867.039724723,1125.85578,494.4336451159202,1161540.430774371,502321.2001902184,1897.47888,801.0936308829379,1945615.226401896,806651.0389959357,0.38292,100000,0,690250,7206.544095384262,0,0.0,0,0.0,33513,349.2759524331548,0,0.0,34601,357.79538739415955,1614234,0,57956,0,0,0,0,0,66,0.6890719453753875,0,0.0,0,0.0,0,0.0,0.06075,0.1586493262300219,0.3191769547325103,0.01939,0.3389857120427069,0.6610142879572931,24.480161957264524,4.376500276380779,0.3206997084548105,0.2394835485214494,0.217201166180758,0.222615576842982,11.177226710932878,5.781925703186357,20.679932231139198,12247.45767868144,54.21137836534326,13.65439816768347,17.31036457181204,11.534380696578795,11.712234929268948,0.5647646813827571,0.7869565217391304,0.7103896103896103,0.5647171620325983,0.1159962581852198,0.7142857142857143,0.9223057644110276,0.8727735368956743,0.7119341563786008,0.1087866108786611,0.5107709750566893,0.715046604527297,0.6547515257192676,0.52,0.1180722891566265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104194940144,0.0047843979970401,0.0070106732681303,0.009404547901242,0.0114789434085039,0.0133656361655995,0.015696986993925,0.0179630328948039,0.0198961760918882,0.022018949393251,0.0241325599983604,0.0262058488416255,0.0281005161529128,0.0300970973753848,0.032182864687558,0.0343559169671733,0.0361988140697277,0.0385620102002736,0.0405144293698448,0.0425308179243711,0.0572686764966763,0.0719216047187768,0.0850307687469205,0.0982788332212508,0.110506960031191,0.1262272386206313,0.1385847966850711,0.1499712943077675,0.1613306012678491,0.1723583510193581,0.1847569836912643,0.1968567812834629,0.2083826998119544,0.2193941116041179,0.2295888060194046,0.2391191222223452,0.2481181206856174,0.2570937134634409,0.2652059020335023,0.2730820287466813,0.2797765673247059,0.2859614665170221,0.2930200087560494,0.2989265861606287,0.3036625054646136,0.3082872519920687,0.3119491980949285,0.3163711749294126,0.321409157973753,0.3256221891032827,0.3242868489425575,0.3229023383768913,0.3224833727877353,0.3213397710188505,0.3203639553381603,0.3184281427959096,0.3164134747624844,0.316943380161771,0.3174754472264302,0.3189270011926164,0.3192117858211187,0.3201357242903079,0.3209243961100073,0.321558720293322,0.3238287250384024,0.3252083333333333,0.3261457059141467,0.3287169042769857,0.3322611097514072,0.3361028684470821,0.3407400689279884,0.3434669773846724,0.3471740911095709,0.3541460443158455,0.3536986558887113,0.3579357581483231,0.3593251253989968,0.3594941790445604,0.3592152528322741,0.3553687428353076,0.0,2.194713446469241,55.86462264097834,177.7356087483043,264.82213378748384,fqhc4_100Compliance_implementation_low_initial_treat_cost,51 -100000,95865,44928,425.2438324727482,6104,62.56715172377823,4783,49.39237469357951,1883,19.28753976946748,77.37299817448195,79.67358235015506,63.35320242165369,65.05658572506698,77.1383981578253,79.43990674416871,63.26723673306216,64.97315155444598,0.2346000166566426,233.67560598634896,0.0859656885915356,83.434170621004,151.29532,106.49503442513654,157821.22776821573,111088.5457937063,387.19337,253.68893039707623,403382.6213946696,264120.27349670685,375.01853,181.7689666413564,387573.41052521777,186785.31735247985,3111.39705,1407.5150103306844,3212599.760079278,1435628.813393856,1132.10434,498.9089214056848,1165801.679445053,505541.75679211033,1833.982,760.676650452699,1880289.427841235,766195.674793711,0.37992,100000,0,687706,7173.692171282533,0,0.0,0,0.0,33341,347.25916653627496,0,0.0,34287,354.1542794554843,1618478,0,58125,0,0,0,0,0,64,0.6571741511500548,0,0.0,2,0.0208626714650811,0,0.0,0.06104,0.1606654032427879,0.3084862385321101,0.01883,0.3300970873786408,0.6699029126213593,24.64331441122293,4.3903791158854535,0.3194647710641856,0.2400167259042442,0.2253815596905707,0.2151369433409993,11.394951999888342,5.996954596282998,19.91980445133162,12207.479311469086,53.79534631638317,13.668078481592405,17.108189931339325,11.910718860479989,11.108359042971443,0.5638720468325319,0.7709059233449478,0.6884816753926701,0.5918367346938775,0.1185617103984451,0.7190553745928339,0.8719211822660099,0.8409703504043127,0.7233201581027668,0.1717171717171717,0.510267229254571,0.715633423180593,0.6395851339671564,0.5515151515151515,0.1058965102286401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00259266761191,0.0047229570170371,0.0071006157248207,0.0094125053307069,0.0113148852245694,0.0134568403908794,0.0155738790985904,0.0179101735909132,0.0202004720595898,0.0223259050074692,0.0244454689821218,0.0268090738403767,0.0290015929294486,0.0309000329380764,0.0329677126716424,0.0352038498079226,0.0369446915930393,0.038662411141738,0.0407069721074165,0.0426667498985611,0.057607890977718,0.0715039550265932,0.0847990278752579,0.0970356914094904,0.1090120258629767,0.1251201453362485,0.1376350921805467,0.149086811387749,0.1595871843582574,0.1703114787472275,0.1832131712041321,0.195510257019952,0.2069576368813441,0.2180677184121049,0.2271136833766119,0.2360948056263152,0.2447064860884892,0.2535212852128521,0.2624557582357745,0.2702071381951839,0.278380441319332,0.2853015148856525,0.2919768501532671,0.2976890731134618,0.3032668471465164,0.3082001946268215,0.3135836160384562,0.3184078969127243,0.3225539186495094,0.326162414707862,0.3255090497737556,0.3235508692719589,0.3223455101724308,0.3207241598704378,0.3201236273941663,0.3180537693673831,0.3163975941753719,0.3171827844114945,0.3183695058695058,0.3199735898213744,0.3203734540760005,0.3206228906388774,0.3218335495209004,0.321806255856499,0.3225535791341036,0.3238377689325945,0.3249885948905109,0.3277863411872031,0.3288835804117192,0.3314199754562368,0.3348563673377064,0.3386251785997777,0.3400239098974391,0.3438071995118975,0.3457256086053972,0.3490321057601511,0.3551644988523336,0.3542903952488224,0.3493437587266126,0.3462870334744132,0.0,1.9570993442922529,53.93193490193663,174.865451330602,272.68263199100863,fqhc4_100Compliance_implementation_low_initial_treat_cost,52 -100000,95800,44765,423.16283924843424,6068,62.05636743215032,4741,48.9874739039666,1929,19.822546972860128,77.39816222968327,79.72725656584109,63.35848721039546,65.07927745220857,77.15824019578046,79.4879315290302,63.26962017947564,64.9930987118629,0.2399220339028005,239.32503681088235,0.0888670309198218,86.17874034567308,152.21008,107.00520740184815,158883.1732776618,111696.45866581229,384.14558,252.11325709058065,400480.7724425887,262660.0149970202,372.30837,180.7872691548398,385771.8475991649,186511.78461662345,3110.70083,1418.5675738075047,3215804.1753653446,1449878.1132025674,1157.29918,507.0983090271672,1197616.9519832986,519155.3306620643,1893.8565,791.6030973661165,1947791.8162839247,800172.4732006876,0.37798,100000,0,691864,7221.9624217119,0,0.0,0,0.0,33112,345.1043841336117,0,0.0,33980,351.7954070981211,1616333,0,57976,0,0,0,0,0,64,0.6680584551148225,0,0.0,0,0.0,0,0.0,0.06068,0.1605375945817239,0.317897165458141,0.01929,0.3244052308177091,0.6755947691822909,24.63606542728208,4.362724465290197,0.3163889474794347,0.2370807846445897,0.2172537439358785,0.229276523940097,11.2067779665998,5.845940940900232,20.433730792938228,12141.43989034997,53.60728190765654,13.422333083108237,16.850409248546658,11.445447992455954,11.889091583545683,0.5522041763341067,0.7962633451957295,0.6846666666666666,0.558252427184466,0.1113155473781048,0.7194641449960599,0.9184652278177458,0.8442211055276382,0.7136563876651982,0.1409691629955947,0.4910714285714285,0.7241867043847242,0.6270417422867514,0.5143212951432129,0.1034883720930232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293026270482,0.0046315064050591,0.0067260479649393,0.0092005849378503,0.0115793219132821,0.0138620310623486,0.0159779895042543,0.0179059706974656,0.0203516586806158,0.0225291589932473,0.0243829974694956,0.0266185057105622,0.0290015929294486,0.03103128859613,0.0331350454137756,0.0352491608572166,0.0372834014379558,0.0392264620489423,0.0412578982374459,0.0432161117995605,0.0582649888353262,0.0718909817291904,0.0851313665052106,0.09814925749598,0.1100686281744483,0.125120246942292,0.1365478033983156,0.1477173566031712,0.1583641296221135,0.1683430556747019,0.1807920557476278,0.1934262754301906,0.2047629912106298,0.2148155431018473,0.2243592561656482,0.2354086679427743,0.2454896188755826,0.2548748397544025,0.2622766717713119,0.2700953951512236,0.2770936672563506,0.2842262774575934,0.2905856452987406,0.2956620730976633,0.3008279110420511,0.305409498947161,0.3101560156015601,0.3144789190700748,0.3187848664880467,0.3239967823185768,0.3231794319558487,0.322114326584507,0.3215296851890978,0.3206144340017613,0.3188672251464156,0.3171477027914865,0.3155457935655142,0.3152953897572004,0.3156286280133852,0.3157275320970042,0.3159203980099502,0.3171319621441131,0.3183796451288919,0.3195094760312151,0.3201330398162327,0.3201746407131162,0.3218846447886287,0.3231264856749656,0.3259393390674513,0.3287552634685766,0.3314127574630251,0.3366519174041298,0.3382774523245668,0.3411229135053111,0.3426908271523801,0.3450410763186093,0.3441499085923217,0.3434650455927052,0.340683572216097,0.338403041825095,0.0,1.8955078613840493,55.900034763287096,175.1253970862107,261.1374552527551,fqhc4_100Compliance_implementation_low_initial_treat_cost,53 -100000,95882,44817,424.07334014726433,6099,62.41004568114975,4816,49.68607246407042,1905,19.544857220333327,77.3584022892406,79.64160428022333,63.35300198276878,65.04244791704505,77.12683715643509,79.40974364474086,63.26702017193396,64.95823769551326,0.2315651328055139,231.8606354824766,0.0859818108348235,84.21022153179081,151.81716,106.78005264900416,158337.49817483992,111366.10901838107,384.20152,252.0355901209169,400171.7319204856,262329.4571670563,376.63801,183.2002431085893,389181.1914645085,188286.5466032604,3175.08527,1457.271843458453,3277637.314615882,1486046.164513103,1168.6149,515.8124687326036,1206144.3858075552,525304.9881443889,1867.9451,782.1812963354679,1917577.6266661105,790335.5530593389,0.38077,100000,0,690078,7197.159007947268,0,0.0,0,0.0,33176,345.4558728437037,0,0.0,34369,354.8632694353476,1615453,0,58030,0,0,0,0,0,60,0.615339688366951,0,0.0,0,0.0,0,0.0,0.06099,0.1601754339890222,0.3123462862764387,0.01905,0.3346315625486836,0.6653684374513164,24.470452156749865,4.393570443850692,0.3220514950166113,0.2338039867109634,0.2176079734219269,0.2265365448504983,11.31958840994806,5.902107175702024,20.20724475117062,12194.614233166129,54.72455962625183,13.611929358841731,17.433710835257724,11.711500242811976,11.967419189340385,0.5664451827242525,0.8037300177619894,0.6989039329464861,0.5925572519083969,0.1081576535288725,0.728110599078341,0.927400468384075,0.8794871794871795,0.7154471544715447,0.1380753138075313,0.5065452475811042,0.7281831187410587,0.6382428940568475,0.5548628428927681,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022982919742024,0.0044887578401272,0.0065421793064275,0.0087827066982099,0.0110388290302907,0.0131387455602031,0.0151391662251925,0.0172879800091794,0.0193377780954228,0.021365992291886,0.0236264804938221,0.025712264586174,0.0277609457002886,0.0299757231617495,0.0321423786802972,0.0343609969645032,0.036577670656143,0.0385962730344298,0.0404922629556547,0.042385842254752,0.0567330045974375,0.0708360323463652,0.0848465807938003,0.097704649502289,0.1109835478502664,0.1268736333963599,0.1383443189284276,0.1492142143206516,0.1597480920104605,0.1704793962523048,0.1838690572336186,0.196036648025355,0.2071818399252027,0.2180534146688093,0.2270163285502226,0.2363161505942763,0.2463420618280769,0.2556356318091362,0.2639548996699146,0.2712703194986998,0.2784656329553344,0.2857995156931787,0.2918536764444654,0.2976590233138252,0.3034259732049505,0.3082882060517843,0.3121687154618247,0.3165579451635918,0.3213789882056804,0.3254707002327057,0.3234695116194381,0.3218346449096597,0.3213792130870117,0.320854067816225,0.320271355886816,0.3186070048457339,0.3167773744035257,0.3174884944115713,0.3170819296475537,0.3185922832565942,0.3196478741337329,0.3206290873886155,0.3211733892090099,0.3218850554165177,0.3223285563143214,0.3232717156748043,0.3262451671594268,0.3293745299573828,0.332271725055122,0.3330692127887167,0.334608553081022,0.336843219217948,0.3383453916325888,0.3408584811487368,0.3415074612679403,0.3436413760038355,0.338988326848249,0.3385650224215246,0.3433618548164504,0.3527841342486651,0.0,2.119545093110224,57.142670546872736,179.64120744484396,264.12982917815907,fqhc4_100Compliance_implementation_low_initial_treat_cost,54 -100000,95735,45117,427.5970125868282,6088,62.35963858567922,4738,48.94761581448791,1883,19.313730610539512,77.38965647392791,79.75647614257812,63.34469261111818,65.09398653922426,77.15229171639888,79.5198656303361,63.25604320858016,65.00769537502747,0.2373647575290363,236.61051224202367,0.0886494025380244,86.29116419679406,152.16058,107.01042962086126,158939.34297801222,111777.7506876913,385.84553,252.96064785566475,402475.54186034366,263670.7144524434,372.2166,180.90952087206847,385085.3919674101,186152.2530865419,3118.35689,1431.424664303466,3223691.0847652373,1461605.9270940272,1153.6088,514.452009235892,1190456.155011229,522824.8908297819,1844.97902,782.9597099737558,1893573.4057554707,789373.6520219402,0.38242,100000,0,691639,7224.515589909646,0,0.0,0,0.0,33286,347.10398495847915,0,0.0,33980,351.27173969812503,1615676,0,57988,0,0,0,0,0,74,0.772967044445605,0,0.0,0,0.0,0,0.0,0.06088,0.159196694733539,0.3092969776609724,0.01883,0.3240188383045526,0.6759811616954474,24.612188552906478,4.448597164883642,0.3237653018151118,0.2344871253693541,0.2186576614605318,0.2230899113550021,11.48808921924364,6.014412182643576,20.13500100131592,12255.306107661778,53.4302267311554,13.124049286746226,17.272211022753364,11.444236939647574,11.589729482008243,0.5574081891093289,0.7857785778577858,0.6910039113428944,0.5617760617760618,0.119205298013245,0.7387173396674585,0.9164556962025316,0.8797953964194374,0.7379032258064516,0.1921397379912663,0.4915107913669064,0.7136871508379888,0.626421697287839,0.5063451776649747,0.0990338164251207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802771250303,0.0048356193546424,0.0070226001887577,0.0094276367921653,0.0116471868737729,0.0139607347969532,0.0162518734515349,0.0183440348710201,0.0204738735791969,0.0223148024935256,0.0242009881301379,0.0264046731754391,0.0285479311231046,0.0306341001297444,0.0326549977824306,0.0349314289848182,0.037121408231944,0.0389662935336286,0.040782389989399,0.042863989664298,0.0574023804552098,0.0713396062505887,0.0849202102546347,0.0976276892325495,0.1097737222427343,0.1254164507292515,0.1375388565305494,0.1486873330566463,0.1592943035946944,0.1696516665951696,0.1826933430965046,0.1956401795856547,0.2069306715379262,0.2174483580653274,0.2272492215608393,0.2373733458833951,0.2466179668767077,0.2554451662208636,0.2638233693186972,0.2720229785091433,0.2800476460316175,0.2862737304778827,0.2925981533805431,0.2989654924686893,0.3039973779725415,0.3088284204432071,0.3126360565494808,0.3172838406838738,0.322362716295443,0.326906338195342,0.3268400306727833,0.3256603825474746,0.3251199639756272,0.3241522671170586,0.323287874295879,0.3217052486820995,0.319845279444269,0.3209438466821467,0.3212902568283734,0.3217317185779735,0.3230585957858685,0.3237352097173631,0.3241386489018424,0.3247916435159462,0.3261087746128847,0.3267570580457833,0.3271748370643241,0.3292266215241857,0.3329591693559702,0.3349628393148126,0.3385114451500891,0.3405754550792719,0.3431329253674847,0.3460348600316909,0.3468422516924789,0.3517605633802816,0.3539809638918265,0.349402390438247,0.3469553450608931,0.3560864618885097,0.0,2.1029637432348465,55.23464384903687,174.35081849629026,261.67420039049034,fqhc4_100Compliance_implementation_low_initial_treat_cost,55 -100000,95764,44684,423.3428010525876,6117,62.539158765298026,4731,48.83881207969592,1904,19.527170961948123,77.34687979821054,79.70662476588124,63.33382307926016,65.08143771801036,77.11390107591241,79.4746582297827,63.24727812017797,64.99781830490737,0.2329787222981281,231.96653609853968,0.0865449590821896,83.61941310299414,152.00856,106.91776140284696,158732.4673154839,111647.13399904656,385.2626,252.39778326346325,401718.9967002214,262977.07203486,365.63276,177.45292174855012,378324.9342132743,182633.4429071278,3122.86979,1423.3676216364709,3225010.3065870265,1450464.8867415383,1120.76133,492.644263900464,1156808.8738983334,500962.7161896988,1862.4245,774.5064648007275,1911272.5241217995,779839.8225215013,0.38011,100000,0,690948,7215.112150703814,0,0.0,0,0.0,33266,346.7900254793033,0,0.0,33477,346.10083121005806,1619555,0,58098,0,0,0,0,0,61,0.6369825821811954,0,0.0,1,0.0104423374128064,0,0.0,0.06117,0.1609271000499855,0.3112636913519699,0.01904,0.3315175097276264,0.6684824902723735,24.660748328784518,4.360689133920653,0.3236102303952652,0.2263792010145846,0.2282815472415979,0.2217290213485521,11.406594582932872,5.938712657342177,20.06815283213145,12196.603205660282,53.607727873312,12.892004728895108,17.38270201336908,12.057905867668907,11.275115263378892,0.5510462904248573,0.7740429505135388,0.6988896146309601,0.5481481481481482,0.1105815061963775,0.72890625,0.8875,0.8738532110091743,0.6895161290322581,0.1326530612244898,0.4850767893364242,0.706408345752608,0.6292237442922375,0.5060096153846154,0.1055099648300117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025029386729358,0.0049284062791546,0.007228426395939,0.009421018933504,0.0117197037519329,0.0136046109040549,0.0156183097155673,0.0178644344630461,0.0201897323710412,0.0220445190752155,0.0240118931665555,0.0260393670873078,0.0283319621554915,0.0303685847909842,0.0325097529258777,0.0344756292965317,0.0363478206840846,0.0383318636858758,0.0404781704781704,0.0423096948870144,0.0573972402563513,0.0711117619984099,0.084245512497903,0.097041357927374,0.1093511229146247,0.1243818420051566,0.1360543496693234,0.1467179825214229,0.1579340359260997,0.1679019750653356,0.1814299697742209,0.1936198493575542,0.2053145607230931,0.2155727858468931,0.2249502905667424,0.2346452162559886,0.2443440932151419,0.2534066378845116,0.2618628775067812,0.2691761363636363,0.2760173140132401,0.2829292267365662,0.2897761573882266,0.2960365415048194,0.3020226301476301,0.3075739863409832,0.3123350387150845,0.3163047347810608,0.3218060676628501,0.3252108592514496,0.3254356712564544,0.3244596006820306,0.3246504824326985,0.3236706615324709,0.3228107114261143,0.3214525993883792,0.3198627646286898,0.3208995620294277,0.321664476266876,0.3228533214444939,0.3232932102809862,0.3245315835243892,0.3260081701057924,0.3270814682184422,0.3282284668544872,0.3304652561654941,0.33229413951892,0.3353270673122567,0.3388348145013401,0.3412581275679126,0.3428702220187686,0.346501969971249,0.350322091701402,0.3525519129839507,0.3537052611905429,0.3582142435337191,0.3589430273407668,0.3604319478402608,0.3643475831237776,0.3696850393700787,0.0,2.1928257213730538,56.19698607136986,173.55848966047574,260.6039811703456,fqhc4_100Compliance_implementation_low_initial_treat_cost,56 -100000,95750,44810,424.2715404699739,6094,62.40208877284595,4783,49.33681462140992,1908,19.54046997389034,77.36211040614715,79.7238351749605,63.32787542470121,65.07580405328008,77.12594469451756,79.48930437542603,63.24021846194193,64.99088263618579,0.2361657116295958,234.53079953446831,0.0876569627592829,84.9214170942929,151.53644,106.6427719391085,158262.6005221932,111376.26312178432,383.65825,251.73722994700935,400064.2506527415,262287.7284041873,375.41111,182.6733240485689,388078.1096605744,187680.0771837085,3154.33263,1447.0796408412314,3256583.300261097,1473736.0150431667,1177.61489,521.1970311049321,1216904.0731070496,531443.71491432,1870.65658,781.2038405656417,1918467.592689295,787153.241688964,0.37972,100000,0,688802,7193.754569190601,0,0.0,0,0.0,33122,345.2845953002611,0,0.0,34432,355.5718015665796,1617186,0,57989,0,0,0,0,0,59,0.6161879895561357,0,0.0,1,0.010443864229765,0,0.0,0.06094,0.160486674391657,0.3130948473908763,0.01908,0.3355314806092008,0.6644685193907992,24.42399702329924,4.403895970428801,0.3165377378214509,0.227263223918043,0.2331172904035124,0.2230817478569935,11.417483256930051,5.973111187641324,20.2538047722782,12170.982076342932,54.151140478146026,12.93546506512177,17.173308802621673,12.350826319743762,11.691540290658816,0.5651264896508468,0.7773689052437902,0.7179656538969617,0.5695067264573991,0.1274601686972821,0.7320872274143302,0.9306930693069309,0.8709677419354839,0.7049808429118773,0.1342592592592592,0.503858245212918,0.6866764275256223,0.6624662466246625,0.5281030444964872,0.1257344300822561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023200915878949,0.0047254953657695,0.0070043650390823,0.0092666917300872,0.0117898377498601,0.0139426406485517,0.0162339648807945,0.0182042799967328,0.020296315988589,0.0224358974358974,0.0243559767003035,0.0266244838424718,0.0288680157611547,0.030966292597974,0.0327997440422743,0.034789710930069,0.0369779747543258,0.038720521253748,0.0408095381640905,0.0429235063744687,0.0578386446905564,0.0720084531207499,0.0853661094448056,0.0977377183664454,0.1099192034259435,0.1244725069010375,0.1372861037734848,0.1487766965483465,0.15900033122843,0.1694815291405286,0.1817055833189729,0.1934440067529544,0.2046428649130822,0.2145810544738569,0.2246409508611676,0.2351507362309848,0.2451648204395211,0.2529111958686333,0.2615428247305729,0.2696456792102792,0.2766216028519839,0.2828131580178747,0.2896804733727811,0.2949386668585201,0.3010652123744398,0.306310637720823,0.3109458342724063,0.3166422707312416,0.3204341181650996,0.3250280435499835,0.3232726096798534,0.3219242207291552,0.3213335023450374,0.3204214664604622,0.3198377559207203,0.3183871609929404,0.317024510735322,0.3175889619871048,0.3176679228552427,0.3189159351128047,0.3199902869097429,0.321175497992284,0.3225153399841382,0.3234855067620257,0.3246189974120579,0.3254467068356534,0.326536399988656,0.3305715357678839,0.3362510897994769,0.3387866125280876,0.3410148660250328,0.3444976076555024,0.3460456392622694,0.3462724742345595,0.3484848484848485,0.355644591091209,0.3542805100182149,0.3549870077953228,0.3499593385741393,0.3530549110595514,0.0,2.393729293186912,56.14790247054012,177.1466533987755,262.57387832846507,fqhc4_100Compliance_implementation_low_initial_treat_cost,57 -100000,95759,44659,422.75921845466223,5961,60.996877578086654,4663,48.08947461857371,1940,19.83103415866916,77.32840490063373,79.69047108157481,63.31625382636724,65.0653482411725,77.08581361773632,79.44938852408471,63.22526466636052,64.97781175695668,0.2425912828974077,241.08255749010252,0.090989160006714,87.53648421581772,153.1046,107.7014805325182,159885.33714846647,112471.39227907373,386.60222,253.75732798103985,403121.58648273273,264393.22463793465,368.26444,179.01046315268346,381123.70638791134,184242.81065391365,3090.88986,1424.9130025884467,3189082.081057655,1449321.9985468148,1136.66211,507.63968633656265,1170840.3805386438,513959.6448757425,1904.00906,803.292682596559,1948638.081015884,805524.0776191298,0.37853,100000,0,695930,7267.515324930294,0,0.0,0,0.0,33425,348.4267797282762,0,0.0,33671,348.165707661943,1607349,0,57731,0,0,0,0,0,68,0.7101160204262784,0,0.0,0,0.0,0,0.0,0.05961,0.1574776107574036,0.3254487502096964,0.0194,0.3376519513755598,0.6623480486244402,24.38888266876324,4.364519216354782,0.3085996139824147,0.2363285438558867,0.218957752519837,0.2361140896418614,11.042733481706234,5.767466164102626,20.701567848794017,12107.66033240102,53.06041972857298,13.325601022347303,16.244299975742575,11.389322090077773,12.101196640405323,0.55093287583101,0.8021778584392014,0.6879777623349548,0.5533790401567091,0.1180744777475022,0.7039106145251397,0.9204819277108434,0.8426966292134831,0.6867469879518072,0.1244635193133047,0.4947214076246334,0.7307132459970888,0.6371191135734072,0.5103626943005182,0.1163594470046082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090937648835,0.0045132761313616,0.0069345733663647,0.0092583182585011,0.0115257064963072,0.0138832301173402,0.0163770598792625,0.0184281455466165,0.0207630497454456,0.0231539296169672,0.0253908051868176,0.0274968426888996,0.0293198132417367,0.0312506437591413,0.0333319574011392,0.0352893749418562,0.0370274522794087,0.0387567152724481,0.0408400793939456,0.0428270877163746,0.0574285535352691,0.071477878882962,0.0841171474409386,0.0971197308945653,0.1092202318229715,0.1251096665081126,0.1369739521466146,0.1475008514986376,0.1579200358909172,0.1684879942518257,0.181450961383099,0.1932132963988919,0.2049136627242756,0.2149302707136997,0.2249218371570742,0.2353208366569175,0.2443739953563136,0.2525694858776778,0.2604583030523256,0.2677548026225299,0.2757171632979093,0.2818733839547916,0.2883298988607025,0.2946294629462946,0.3001155085415526,0.3049376017362995,0.3097247476330804,0.314621060546203,0.318609900373599,0.3230612757076624,0.3224605924947075,0.3208279965293558,0.3189352367786257,0.3187856884712685,0.3178511388488031,0.316200380391435,0.3140235204615336,0.3145479668377418,0.3151915410542885,0.3165650315635115,0.3172148814544091,0.3173768677365799,0.3172598385680231,0.3179500939093104,0.3184036542853708,0.3192154411190123,0.3199395856487418,0.323098175881448,0.3259362968148407,0.3273339940535183,0.3307730763986729,0.3329463296216159,0.3345631917953849,0.3340888485947416,0.3345790899747734,0.3373338039769384,0.3459377372817008,0.3446453972769762,0.3503730312240951,0.349317738791423,0.0,2.318771594397495,54.64622992249988,178.02409799575446,252.80091088351764,fqhc4_100Compliance_implementation_low_initial_treat_cost,58 -100000,95735,45073,426.1555335039432,6073,62.4118660886823,4771,49.30276283490886,1895,19.47041311954876,77.31464774318667,79.68017434825174,63.30648041847581,65.05594547029146,77.07738431449184,79.44365816350157,63.21804938531946,64.97028965890875,0.2372634286948312,236.51618475017244,0.0884310331563469,85.65581138270772,150.34272,105.773659726408,157040.49720582858,110485.88262015772,385.7994,253.6230621168379,402491.4190212566,264426.6217700331,380.21776,184.71109057047244,393796.835013318,190420.14908088744,3119.52198,1431.784513047666,3225633.248028412,1462707.3019718635,1141.74612,508.2802403520313,1177793.8893821486,516119.87146496674,1860.39542,784.9538673871094,1913140.1263905573,792546.6348410342,0.38103,100000,0,683376,7138.204418446754,0,0.0,0,0.0,33213,346.3832454170366,0,0.0,34680,358.9282916383768,1617466,0,58076,0,0,0,0,0,74,0.7625215438449888,0,0.0,0,0.0,0,0.0,0.06073,0.1593837755557305,0.3120368845710522,0.01895,0.3270558694287508,0.6729441305712492,24.62530565730055,4.362555132127506,0.321106686229302,0.2301404317753091,0.2230140431775309,0.2257388388178579,11.15444533058886,5.7637930868717016,20.334938454480024,12263.26143449046,54.17304659652672,13.050550837583891,17.1437839053084,11.973636177319817,12.005075676314616,0.5615175015719975,0.7905282331511839,0.6886422976501305,0.5874060150375939,0.1216341689879294,0.7255054432348367,0.9081885856079404,0.8808933002481389,0.7231404958677686,0.1554621848739495,0.5010043041606886,0.7223021582733813,0.6200177147918512,0.5474452554744526,0.1120381406436233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023502000709112,0.0048869016840547,0.0073996630057451,0.0098160756020729,0.0120046797904267,0.0140185011614165,0.0163536385060344,0.0184905352147189,0.0207204628626336,0.0229413209942262,0.0251197030748567,0.0271685559388861,0.0292747153275661,0.0311798042246264,0.0331857265248402,0.0352527654295461,0.0372893992896271,0.0393076539930267,0.0414985650709146,0.0436512897445514,0.0588345845035864,0.07265914466936,0.0854175409148132,0.0980765388215251,0.1109646532815927,0.1258264134976463,0.1370139242655799,0.1481773273145388,0.1588426430663332,0.1693742220696167,0.1826367322291235,0.1952826202368441,0.2074559062237861,0.2182517505506427,0.2281587651598677,0.2381005251645996,0.2478942246384106,0.2571960297766749,0.2658688629021249,0.2730447168012497,0.2797764015494166,0.2864392873886545,0.292754069981147,0.2979254706108336,0.3031390243605804,0.3082968354820801,0.3127480313974887,0.3170346802418072,0.3218963553530751,0.3259978112102952,0.325361363085785,0.3241228492442268,0.3231892621982103,0.3215600236717137,0.3205503469384723,0.3185884082832986,0.3170480639797292,0.3176806927032844,0.3184259132576276,0.320147867704836,0.3213140574900152,0.3220131256424448,0.3225981847839725,0.3238773323810374,0.3249627886877611,0.3264143581740148,0.3292568203198495,0.3316174393421011,0.3354908683786999,0.33863942345767,0.3401546157344247,0.3449098621420997,0.3503442177730057,0.3504240849698173,0.3504716981132075,0.3553444180522565,0.3598403438747313,0.3615621788283659,0.3585690515806988,0.3521840873634945,0.0,2.069919012258887,56.57298563776089,177.4970062217814,262.0461126582536,fqhc4_100Compliance_implementation_low_initial_treat_cost,59 -100000,95819,44794,423.9660192654901,5844,59.883739133157306,4606,47.53754474582285,1814,18.57669147037644,77.3504688262772,79.68328255402474,63.33176974345843,65.06029959175208,77.12585688425959,79.46047901871503,63.24922464471465,64.9808782086649,0.2246119420176029,222.8035353097084,0.082545098743779,79.42138308717972,152.31832,107.18888316729398,158964.63123180164,111866.00065466556,386.77256,253.91060099436507,403128.4400797337,264469.1355517851,366.87421,178.56238093397494,379751.78200565645,183870.075116852,3024.06838,1373.5599979035244,3122960.425385361,1400691.6293505195,1083.26792,474.5011577381922,1117066.9595800417,481759.6037641272,1775.97278,739.5607679463492,1820746.4072887425,742956.0063293756,0.3792,100000,0,692356,7225.665055990983,0,0.0,0,0.0,33404,348.0624928250138,0,0.0,33472,346.2570053955896,1612303,0,57895,0,0,0,0,0,73,0.7514167336332043,0,0.0,0,0.0,0,0.0,0.05844,0.1541139240506329,0.3104038329911019,0.01814,0.3422643358928279,0.657735664107172,24.379385693214505,4.396378035360047,0.3221884498480243,0.2275293095961789,0.228831958315241,0.2214502822405558,11.30463652235454,5.907940950749468,19.248569528636565,12161.607279277929,52.04555795273112,12.576577862720116,16.800572837071346,11.458951977026857,11.2094552759128,0.5555796786799826,0.7709923664122137,0.6967654986522911,0.5806451612903226,0.1029411764705882,0.7266553480475382,0.8858695652173914,0.8471502590673575,0.775330396475771,0.1370558375634517,0.4967911318553092,0.7088235294117647,0.6438979963570127,0.5272067714631197,0.094775212636695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0045425509262545,0.0067492134375317,0.0089308393363339,0.0110767540736822,0.0131490497239819,0.0153995206771709,0.0178498488685564,0.0199071612612981,0.02205024261409,0.0240251017708643,0.0261436566206294,0.0284242243498112,0.0304222451081359,0.0322800214512602,0.0345305009092411,0.0364677142206488,0.0386143234973811,0.0405499495983455,0.0427744581624367,0.057343445196691,0.0710551628957383,0.0842773754755142,0.0966104900395057,0.109507353870791,0.1254121575921542,0.1374041754583143,0.1487895162319704,0.1593330344371143,0.1687774563377263,0.1811745464718414,0.1928698058546288,0.2045079296111231,0.2143434829176594,0.2239088349172826,0.2344496017547163,0.2451432205943068,0.2541007582746439,0.2619707117720513,0.2698530843133438,0.2772854531571762,0.2841476389229888,0.2904591800525182,0.2964245073965383,0.3019557823129252,0.3066916560831556,0.3115107192947305,0.3162633723892002,0.3209163114318661,0.3243350326210412,0.323079620239508,0.3225188472511267,0.3212527333004161,0.3203455061056774,0.3202735856070181,0.3186735725888013,0.3167651672397129,0.3180347257584966,0.3188494910159186,0.3192442992089427,0.3195075863875325,0.3205990883438246,0.3205093357308633,0.3220520605438228,0.3231541769779678,0.3244094898304643,0.3259633966124815,0.3291841725716435,0.333856783919598,0.3366712843855136,0.3399764471419512,0.3419276600231994,0.3464906793444264,0.3502564876282438,0.3556864945753835,0.3601033227662322,0.3614146933819065,0.3636545782408335,0.3650107991360691,0.3647058823529411,0.0,2.1021085205842565,51.50218559618542,179.63277965090555,251.09071209820476,fqhc4_100Compliance_implementation_low_initial_treat_cost,60 -100000,95714,44442,420.53409114654073,6048,61.903169860208536,4784,49.36581900244479,1852,18.95229537998621,77.30949638025908,79.66823009299942,63.31695901961641,65.05922922062152,77.07510962351914,79.43461342323148,63.23105005876843,64.97562923816824,0.2343867567399371,233.61666976794027,0.0859089608479806,83.59998245327915,150.87468,106.20127377265692,157630.50337463693,110956.65605100282,385.72124,252.43283277236503,402386.3489144744,263129.38835736155,370.92578,180.19903237694848,382918.0684121445,184861.30767673408,3148.71792,1442.5824335709583,3251893.1504273145,1469586.1998172945,1145.46271,506.2813660669632,1181543.818041248,513838.8171471213,1826.1061,763.7394595333296,1871150.364627954,769383.4926552249,0.37806,100000,0,685794,7165.022880665316,0,0.0,0,0.0,33311,347.3890966838707,0,0.0,33901,349.5726852915979,1619286,0,58119,0,0,0,0,0,68,0.7104498819399461,0,0.0,0,0.0,0,0.0,0.06048,0.1599746072052055,0.3062169312169312,0.01852,0.3362873872448172,0.6637126127551828,24.77673229480511,4.423830098337494,0.3269230769230769,0.2238712374581939,0.2219899665551839,0.2272157190635451,11.433730415288483,5.897918095977726,19.812387747512386,12177.876161052189,54.508391164377095,12.803871598224552,17.84874706625654,11.837387753185304,12.018384746710687,0.5507943143812709,0.7675070028011205,0.6732736572890026,0.5828625235404896,0.1297148114075437,0.7227958697378872,0.9074550128534704,0.8746928746928747,0.7316017316017316,0.1379310344827586,0.4893617021276595,0.6876832844574781,0.6024200518582541,0.5415162454873647,0.127485380116959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020963935953656,0.0045413997242721,0.0069292265238211,0.0092934915088973,0.0117521476134804,0.0138630187181287,0.0160016307394384,0.0178427429644676,0.0202056334573402,0.0222492861602071,0.0245594973298209,0.0267367599646795,0.0290179948586118,0.0310495041347847,0.0331256961346479,0.0352733321623771,0.0372789087484346,0.0392114160081305,0.0410002182521123,0.0428428574404699,0.0574635827285542,0.0718509602804961,0.0849381162156492,0.0975750820223773,0.1097495386237806,0.1255843469063987,0.1379687201578847,0.1492394324217877,0.159776965968083,0.1699029646705623,0.1824713727095474,0.1945352588390672,0.2066594124047878,0.217536411086916,0.2273412816363376,0.2372808087077966,0.2457696216952787,0.2544010812637269,0.2628924530873733,0.2705849990830735,0.278444673388357,0.2854736053912392,0.291525584258755,0.2968555118487959,0.3019477757931445,0.3067219118789538,0.3116280233736658,0.3159803983962324,0.320257626415779,0.3245711415959612,0.3226480742259143,0.3217882482606599,0.3215620987880754,0.3199485050554728,0.3186790290655276,0.3159994476070645,0.3143496761082179,0.3151462315360068,0.3168225259480012,0.316774748307119,0.3165899050662656,0.3165786233467053,0.3178519593613933,0.318971320856335,0.3198375673781151,0.32072020278569,0.3217570704031634,0.3248534140344241,0.3274255371523016,0.3317080905379157,0.3356847039548536,0.3378471669056343,0.3382501260716086,0.342344406261932,0.3417446366127965,0.3443519619500594,0.349684760879594,0.351440329218107,0.3555986696230598,0.3596116504854369,0.0,2.3431826484789564,55.01598089157781,188.8290567470602,256.50804431776515,fqhc4_100Compliance_implementation_low_initial_treat_cost,61 -100000,95748,44986,427.1003049672056,6055,62.2258428374483,4773,49.41095375360321,1883,19.384216902702928,77.40440741590693,79.76267044030365,63.3594678928421,65.09981114738459,77.17404173242817,79.53112280811145,63.27469127351891,65.0167417347772,0.2303656834787659,231.54763219220345,0.0847766193231862,83.06941260738654,152.55306,107.31406851629704,159327.6726406818,112079.69724307246,389.30237,254.7224144686245,406181.0272799432,265624.61301397893,373.49703,180.7165350185423,387598.0908217404,186767.10911169904,3174.3562,1424.0788169104335,3287554.25700798,1459550.1388127506,1174.07474,509.3516996511135,1215358.252913899,521116.0333908944,1844.26012,760.9027010701004,1899729.9160295776,770702.6387085244,0.3803,100000,0,693423,7242.166938212808,0,0.0,0,0.0,33572,350.17963821698623,0,0.0,34184,354.5139324058988,1614292,0,57858,0,0,0,0,0,65,0.6788653548899194,0,0.0,2,0.0208881647658436,0,0.0,0.06055,0.1592164080988693,0.3109826589595376,0.01883,0.3301472892510185,0.6698527107489816,24.533176997217367,4.427241031543848,0.3192960402262728,0.2262727844123193,0.2292059501361827,0.2252252252252252,11.083819424630724,5.697659106302434,19.73906499165078,12181.901141840815,53.444966669093326,12.926666584782948,16.930057116380155,12.041172608158622,11.5470703597716,0.5707102451288498,0.8,0.7007874015748031,0.5978062157221207,0.1283720930232558,0.736053288925895,0.9250645994832042,0.8661202185792349,0.7304347826086957,0.1880733944954128,0.5151175811870101,0.7301587301587301,0.6485319516407599,0.5625,0.1131855309218203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043982771725361,0.0065838862174609,0.0086426649063118,0.0108690126381503,0.0130496742671009,0.0153070063694267,0.0175912982255645,0.0197502860879516,0.0218060885136863,0.024054278422892,0.026171830899182,0.0283434939498925,0.0302505948150665,0.0323469324583668,0.0342054393781205,0.0362453916573464,0.0381639004149377,0.0400216164534466,0.0419118642655529,0.0568588759774903,0.0711811550978976,0.0847135829146255,0.0975871313672922,0.1096729311816849,0.1251929705838814,0.1365724287911738,0.1478011859011891,0.1593599111225056,0.1687593150552738,0.1811632439883266,0.1934192445439889,0.2050835843946793,0.215078453884424,0.2249518675394686,0.2354120069978076,0.2454703677258122,0.2542978895647578,0.2624696622587157,0.2703497688046514,0.2781109531898175,0.2855525203707595,0.2918412882052251,0.2979191055259574,0.3035638600612746,0.3086175545508158,0.313036963036963,0.317787845331912,0.3223748773307164,0.3264366606600287,0.324861107383451,0.3238078252757504,0.322136246822733,0.321230538792793,0.3203558687252972,0.3185043876383059,0.3167224397019825,0.3174361742145462,0.3176502629921527,0.319297683850998,0.3200276578647381,0.3201539676273194,0.3215741185813706,0.3222628388017118,0.3234025214515124,0.32559228148649,0.3271515667092017,0.3307875297358207,0.335186933864932,0.3365513966922529,0.3391375323085294,0.3389857453235123,0.3398368883312421,0.3404852160727824,0.3482768282432054,0.3571596520103456,0.3613149847094801,0.3666464768826973,0.3721575152523572,0.3722858270825108,0.0,1.7432977139514294,52.91176301030399,175.3890885375107,272.5108976775333,fqhc4_100Compliance_implementation_low_initial_treat_cost,62 -100000,95754,44718,423.00060571882113,6030,61.90864089228648,4703,48.59327025502851,1830,18.78772688347223,77.33232137485312,79.69786846496581,63.31916690730778,65.07088657392157,77.10883952430838,79.47366656171064,63.23716075344819,64.99047548308324,0.2234818505447435,224.20190325516387,0.082006153859595,80.4110908383251,151.87106,106.82767068262628,158605.2175366042,111564.49850091516,386.75973,253.63990929975049,403374.6579777346,264353.217345678,371.73559,180.3799439058598,384610.9718654051,185607.3709626202,3071.17007,1398.3312702030323,3177595.1918457714,1430667.3563583803,1107.32515,484.0200247853857,1147383.8586377592,496439.6419840274,1797.66642,746.6328469536229,1848408.108277461,756396.4034909431,0.37823,100000,0,690323,7209.328069845646,0,0.0,0,0.0,33344,347.661716481818,0,0.0,33952,350.98272657016935,1615655,0,57966,0,0,0,0,0,72,0.7414833845061303,0,0.0,0,0.0,0,0.0,0.0603,0.1594268037966316,0.3034825870646766,0.0183,0.3297570211423162,0.6702429788576838,24.77619215669704,4.235571605733559,0.3231979587497342,0.242185838826281,0.2107165638953859,0.2238996385285987,10.90959005442796,5.619462994700528,19.38968378673182,12119.199066864809,53.25119984317465,13.63674490160026,17.168372885410616,11.01540376582192,11.43067829034184,0.5496491601105677,0.7664618086040387,0.6763157894736842,0.562058526740666,0.1206077872744539,0.7331189710610932,0.9354066985645934,0.8401015228426396,0.7035398230088495,0.1504854368932038,0.483665799363978,0.6685159500693482,0.6190053285968028,0.5202614379084968,0.1133412042502951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024220681827394,0.0045136881396504,0.0068028592315815,0.0090352874217416,0.0112212094083177,0.0136204806389502,0.015899078077833,0.0179481158562108,0.0202136905066203,0.02253276003276,0.0245830215178324,0.026897727039402,0.0289357326478149,0.0308354618109911,0.0330461697188547,0.0349959691588978,0.0371409637805711,0.0391737817846064,0.0410903384704916,0.0432106480034993,0.0574020334453746,0.0714382866529258,0.0847413187343338,0.096783690292191,0.1090914841797842,0.1238908102505526,0.1360352235955652,0.1474350787569178,0.1582875937039489,0.1683177870697973,0.1811641807118625,0.1936681057335454,0.2045662199791159,0.2141583822741341,0.2238311638296233,0.2341341895482728,0.2438137313965682,0.2518084352394559,0.2599110445458052,0.2678949718879181,0.2756143273635985,0.2823925705864464,0.2887766328715588,0.2943177870158498,0.3000971345313258,0.3045004866389877,0.3081936452339254,0.3131840890888982,0.317987082745499,0.3225789438987408,0.3219249034723063,0.3219211043737711,0.3216537205898908,0.3213811612605333,0.3202468915991572,0.3182645399073238,0.3164560970203603,0.3164185466946485,0.3167396900625671,0.3177310024973243,0.3182176212445144,0.318768305232328,0.3196107627456326,0.3212159197743654,0.3220943114493521,0.3236153124022113,0.3256303716773863,0.3288698446705945,0.3324203799290705,0.3341165226394807,0.3366278010566588,0.3412084688816596,0.3437737281700835,0.3429966432712847,0.3472338837578132,0.3499648629655657,0.3516649088443574,0.3541500399042298,0.3552060737527115,0.3616698292220114,0.0,1.983117532720449,54.81352596986152,174.2678622174093,261.6843701364282,fqhc4_100Compliance_implementation_low_initial_treat_cost,63 -100000,95712,45262,429.1729354730859,6019,61.60147107990638,4692,48.28025743898362,1865,18.99448345035105,77.41699606751023,79.77038636135067,63.36600846061516,65.10081549482373,77.18807125150042,79.54713058559899,63.28033708354927,65.02068822373823,0.2289248160098083,223.25577575168157,0.0856713770658927,80.12727108550166,152.07632,107.00709501553816,158889.5018388499,111801.12735658868,386.97801,253.84312660953296,403577.2316950853,264477.7630908693,377.11372,184.10419245410017,389106.2771648278,188607.3562512808,3097.04354,1406.8284238420033,3187859.4951521237,1422209.512136817,1110.89977,487.63122797582895,1138451.5734704111,487411.7933213639,1830.37504,763.0094661874175,1866024.1766967569,757272.0516767716,0.38268,100000,0,691256,7222.250083584086,0,0.0,0,0.0,33284,346.9888833166165,0,0.0,34477,355.38908391842193,1614589,0,57914,0,0,0,0,0,68,0.710464727515881,0,0.0,1,0.0104480106987629,0,0.0,0.06019,0.1572854604369185,0.3098521349061305,0.01865,0.3349769365357086,0.6650230634642914,24.41690899666933,4.43021247732253,0.3213981244671782,0.2265558397271952,0.2286871270247229,0.2233589087809036,11.286313940813711,5.671209881165253,19.70046976328925,12231.434935350311,52.91752794955863,12.70956501999229,17.103283389899058,11.76309646366915,11.341583075998123,0.5598891730605285,0.7873941674506115,0.7175066312997348,0.5629077353215284,0.099236641221374,0.7245901639344262,0.9047619047619048,0.8592964824120602,0.7465437788018433,0.0922330097087378,0.5020161290322581,0.7168674698795181,0.6666666666666666,0.5163551401869159,0.1009501187648456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0046196395465459,0.0068362544628367,0.0091186953563703,0.0113164958516349,0.0134774730755919,0.015696986993925,0.0177281077770973,0.0199072086986735,0.0222820137702435,0.024162806902488,0.0262525913914489,0.0283825736548859,0.0302877386665568,0.0322284464527044,0.0342771520099204,0.0364127677637777,0.0385429199684686,0.040588296434882,0.0428092182030338,0.0574543404028695,0.0716580337989849,0.0856965996243954,0.0989913650753583,0.1109669662068092,0.1258302661082201,0.1377503394433129,0.149555591037309,0.1603683878756797,0.1705580163232912,0.1832416191942796,0.1955011685276551,0.2065959389538675,0.2167373066503539,0.2260152061176057,0.2376721801183824,0.2474170502546727,0.2556498286228016,0.2641053836823072,0.2718369961903236,0.2787891397066472,0.2850950979017711,0.2902142950013593,0.2966154435348748,0.3023980786259264,0.3078542410439492,0.3129936019194241,0.3182395690399959,0.3225798112963681,0.3267986772591333,0.3254301075268817,0.3244650166195094,0.3236490003798697,0.3228831067512316,0.3220119995247713,0.3198752064599009,0.3185392194012884,0.318351324828263,0.3178524037970807,0.3188114943345291,0.3194705937179606,0.3212937475422729,0.3224224976008679,0.3245555555555555,0.3249079343823234,0.3262955854126679,0.3263814111646358,0.3307838791246527,0.334541652143604,0.3366161118770928,0.3412984670874662,0.346569066301543,0.344904954814584,0.3499432033320712,0.3532472359007712,0.3548387096774194,0.3551444043321299,0.3574121849573328,0.3611859838274933,0.3640104751215862,0.0,2.912898109071949,52.501013513029314,177.0835132488046,258.8140708684504,fqhc4_100Compliance_implementation_low_initial_treat_cost,64 -100000,95694,44885,425.6693209605618,6078,62.35500658348486,4739,48.93723744435388,1804,18.454657554287625,77.3508434030137,79.74026551841254,63.31502979323547,65.0824149972537,77.11840476911159,79.51022899602061,63.22892696954881,64.99994585738911,0.232438633902106,230.0365223919272,0.0861028236866587,82.46913986458537,152.3445,107.09701992788312,159199.6363408364,111916.1284175425,386.3083,253.19869881216115,403111.6579931866,264012.44468008564,371.48137,179.75343259267257,384301.6385562313,184904.6560723047,3112.91309,1414.7602751764744,3216658.745584885,1442250.2538175425,1133.93501,498.983128131668,1167000.6583484858,503548.8917640079,1767.66106,742.4345691229954,1809884.1515664516,744551.6807592486,0.38038,100000,0,692475,7236.347106401655,0,0.0,0,0.0,33203,346.3749033377223,0,0.0,34024,351.6834911279704,1613625,0,57905,0,0,0,0,0,71,0.7314983175538696,0,0.0,0,0.0,0,0.0,0.06078,0.1597875808402124,0.2968081605791379,0.01804,0.3363593676631711,0.6636406323368289,24.591896963722103,4.249123769414042,0.3283393120911584,0.2331715551804178,0.224519940915805,0.2139691918126187,10.91053151674661,5.683123402277718,19.239817109061303,12217.30804896216,53.62237175095489,13.169504756262276,17.552696326115523,11.892231711976423,11.007938956600668,0.5627769571639586,0.7701357466063349,0.6844473007712082,0.5883458646616542,0.1232741617357002,0.7153167602245389,0.899749373433584,0.8074074074074075,0.6972111553784861,0.1614583333333333,0.5083046964490263,0.6968838526912181,0.6411815812337098,0.5547355473554736,0.1143552311435523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0046445122755067,0.0068318630785004,0.0090251239938206,0.011332885714867,0.0134267842953485,0.0154240071815483,0.017699205425169,0.0198402552643151,0.0218451076381065,0.0239872833555532,0.0262217292167375,0.0285223509082306,0.0307335668658561,0.0326119487703437,0.0346413877230343,0.0365094329848844,0.0386224219714976,0.0406407655900556,0.0424675812033523,0.0573323584708585,0.0711473624693736,0.0845614477054205,0.0971101549596557,0.1097784810126582,0.1249629723668063,0.1365479324106309,0.1482179556804992,0.1591098569871096,0.1688182081576151,0.1822885228938518,0.1943987355475685,0.2062369428969359,0.2169159891005788,0.2273377810071118,0.2382077040782383,0.2483363851547496,0.2574674337698015,0.2667075553132524,0.2735401334342114,0.2802607507584003,0.2866460572847139,0.2922798037961185,0.2981464819147021,0.3032612527197365,0.3079179608539171,0.3121301960195644,0.3167501971658992,0.3204419889502762,0.3254767403497196,0.3242744347732356,0.3237665446740596,0.3225688383354919,0.321638440103377,0.3208361129641983,0.3182061354569493,0.3164124851837218,0.3170292229065653,0.3177421831021954,0.3195788123363087,0.3205578821417888,0.3215896335099155,0.3212237492440199,0.3227400186940846,0.3231667903569462,0.3237934613388687,0.3249138272023507,0.3286859424222575,0.3318235663019999,0.3354393124828317,0.3379089968045367,0.3416407608409294,0.3426769883880634,0.3450522806485831,0.349175103112111,0.3574564005220073,0.3616600790513834,0.3613930348258706,0.3618403247631935,0.3709244342155735,0.0,2.32299450809998,54.69319290633663,179.3424657638053,258.7485090026676,fqhc4_100Compliance_implementation_low_initial_treat_cost,65 -100000,95718,45193,428.7908230426879,5984,61.315531039094,4681,48.25633632127708,1843,18.836582460979127,77.26691653433518,79.6266218715753,63.2951211478972,65.03885032955046,77.03400591314974,79.39557511324801,63.20813774504154,64.95514807981982,0.2329106211854394,231.04675832728103,0.0869834028556582,83.702249730635,151.41236,106.55482940539606,158185.8793539355,111321.62122630652,385.60527,253.0745125492772,402238.1683695857,263778.57095768524,369.79959,179.95202709282003,382332.9990179486,184856.32455797377,3091.53981,1407.8453629212847,3192697.6326291817,1433682.1422525388,1110.81043,491.1653300696709,1147435.2786309784,500069.99735647504,1806.15152,763.9082472219446,1849927.8923504464,767523.84447858,0.38326,100000,0,688238,7190.267243360705,0,0.0,0,0.0,33281,347.0507114649282,0,0.0,33814,349.1610773313274,1613339,0,57922,0,0,0,0,0,65,0.6790781253264798,0,0.0,1,0.0104473557742535,0,0.0,0.05984,0.1561342169806397,0.3079879679144385,0.01843,0.3421932197994589,0.6578067802005412,24.40971859371784,4.389373805538689,0.3202307199316385,0.2292245246742149,0.2262337107455672,0.2243110446485793,11.300346889405256,5.79449932132466,19.80287409922399,12290.328518198989,53.26117985366499,12.840372806047576,17.000319390184334,11.898726431319156,11.521761226113949,0.5637684255500961,0.7903075489282386,0.7024683122081388,0.5816808309726157,0.1161904761904761,0.73328025477707,0.916243654822335,0.8634020618556701,0.7479674796747967,0.1798245614035087,0.5016058394160584,0.7172312223858616,0.6462646264626463,0.5313653136531366,0.0985401459854014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0044713015441705,0.0069306327880829,0.0092136406578559,0.0114720419827919,0.013521631555904,0.0156175136347418,0.0177723788038096,0.0199032947261891,0.0219968064199148,0.0242844841725438,0.0264365573955627,0.0282482389840094,0.0302512179797501,0.0322610597556949,0.034328419921027,0.0362649766483374,0.0383561928080841,0.0404885654885654,0.0424172961708778,0.0580993452859544,0.0717313710918283,0.0852222641984636,0.0976199995791334,0.1096798016563802,0.1254193166065249,0.1378190156694551,0.1492518238457852,0.1604362703165098,0.1703842851009016,0.1828354588674119,0.1948293983161955,0.2066190403589397,0.2167436970188158,0.2259692741739954,0.2378420380751512,0.2470309319854174,0.2567584318409754,0.2658213466039493,0.273282810332374,0.280576455608288,0.287992132897833,0.2944589841668344,0.2994063680518078,0.3050301468443061,0.3101070653246497,0.3155783932823662,0.3196371466065308,0.3244894781909235,0.3294553636423797,0.328810077309834,0.3274402287261225,0.3261468862656393,0.3257588923647317,0.3243525013776566,0.3217647691150048,0.3202681876678159,0.320634083643674,0.3218909140789767,0.3236884512085944,0.3239669421487603,0.3242632632434253,0.3257502420135527,0.3262664333467941,0.327115900359999,0.3264521193092621,0.3271737573413551,0.3319097782417513,0.334824916542368,0.338108075483845,0.3405693786506002,0.3421801966367592,0.3461977910371969,0.3512561274509804,0.3550307038261691,0.3631946913141367,0.3611620795107033,0.3677719369187222,0.3829903978052126,0.3847641144624903,0.0,2.561686632237472,54.772891038303335,175.18553240566197,257.9450805715069,fqhc4_100Compliance_implementation_low_initial_treat_cost,66 -100000,95702,44814,424.358947566404,6112,62.65281812292324,4770,49.24661971536645,1851,18.90242628158241,77.288290147924,79.65840685056143,63.294707477804174,65.04419953282165,77.05263977250785,79.42213870722716,63.207361346085015,64.95898186826803,0.2356503754161565,236.26814333427149,0.0873461317191583,85.21766455362467,151.17234,106.44987070442338,157961.52640488182,111230.56018100287,385.79301,253.24703720347304,402510.6162880609,264017.86915667914,372.85486,181.4087809153675,385472.3621240935,186381.11250129176,3150.84198,1437.92472923593,3255734.843576937,1466263.8360075727,1161.77055,517.6000396834531,1196945.4974817664,524022.71616484656,1819.89668,773.7503564005701,1861567.42805793,776298.3285532199,0.37972,100000,0,687147,7180.069382040083,0,0.0,0,0.0,33366,347.99690706568305,0,0.0,34031,351.580949196464,1612447,0,57849,0,0,0,0,0,66,0.6791916574366262,0,0.0,0,0.0,0,0.0,0.06112,0.1609607078900242,0.3028468586387434,0.01851,0.3446230685188075,0.6553769314811925,24.513415859246123,4.368782964549013,0.310062893081761,0.2364779874213836,0.2215932914046121,0.2318658280922431,11.179892680639949,5.8333513807492405,20.07886752244173,12197.773035596758,54.224666122230126,13.537872391849325,16.778719753710977,11.683997595021168,12.224076381648649,0.5538784067085953,0.799645390070922,0.6808654496281271,0.575212866603595,0.1130198915009041,0.7186046511627907,0.9311163895486936,0.8443271767810027,0.7489711934156379,0.1336032388663967,0.492816091954023,0.7213578500707214,0.6245454545454545,0.5233415233415234,0.1071012805587892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268191899857,0.004349104327815,0.0063928238015992,0.0084824965968426,0.0107802457082418,0.013267623130263,0.0154972370057706,0.0177920685959271,0.0200554027946723,0.0219720616077367,0.023910058007256,0.0259489642996448,0.0282021755670251,0.0305249173540952,0.0325318975564976,0.0347243752712841,0.0368295713398219,0.0388974220598613,0.0410239340954243,0.0430758648003585,0.0568790667070508,0.0710381941536142,0.0840557502991121,0.096409252594136,0.1079537657676677,0.1238763777276625,0.1363375735309732,0.147555129434324,0.1591540863020142,0.1692469562603336,0.1817093814355181,0.1937021350347173,0.205632207690381,0.2157729949860968,0.2256828193832599,0.2361320670986065,0.2452372434148741,0.254121095952193,0.2620136518771331,0.2702780297897263,0.2777210726547277,0.2842854462736269,0.2905311613890635,0.2967901590505021,0.3018399230422658,0.3080687013468429,0.3134684447123232,0.3180327868852459,0.3225119191446796,0.3262486434980546,0.3246429197631604,0.3248503406990538,0.3242685512367491,0.3240178092323756,0.3228462743343029,0.3206555966882229,0.319553108088807,0.3195209817242684,0.320585967617579,0.3211740267182407,0.3217984624349166,0.3220503476004674,0.3227995713655369,0.3238482687708161,0.3256550532680679,0.327055461748279,0.3271506599908966,0.3309451985922574,0.3335204941044357,0.3375818939845146,0.3418229951161623,0.3441271866858085,0.3474581583401241,0.3515151515151515,0.3532301418111039,0.3564587713151133,0.3553818400481058,0.3582653670181022,0.3552350427350427,0.3519137866963954,0.0,2.24800116707128,56.7275129849756,178.84269177568004,259.3450430918423,fqhc4_100Compliance_implementation_low_initial_treat_cost,67 -100000,95826,45144,426.8257049235072,5908,60.32809467159227,4630,47.69060588984201,1824,18.721432596581305,77.36488025655099,79.67951306420912,63.35773544642036,65.0713079427897,77.13881276606939,79.4522192242565,63.274354110660006,64.98902633189692,0.2260674904815971,227.29383995262253,0.0833813357603503,82.28161089277819,152.37398,107.17980472971551,159011.10345835157,111848.35507035205,382.16435,251.25463766485444,398182.23655375367,261585.90951328664,371.62146,181.09262044420436,382764.6567737357,185237.6973483302,3033.83462,1399.8767405527335,3130588.26414543,1426154.6330023524,1093.095,487.11143785348935,1125202.5441946862,493297.5208080825,1792.74612,756.84524419203,1841892.868323837,766653.1498591694,0.38191,100000,0,692609,7227.777429925073,0,0.0,0,0.0,32905,342.72535637509657,0,0.0,34026,350.176361321562,1617811,0,58070,0,0,0,0,0,69,0.709619518710997,0,0.0,0,0.0,0,0.0,0.05908,0.154696132596685,0.3087339201083277,0.01824,0.3285047481088041,0.6714952518911959,24.564040254604908,4.381018530792004,0.3362850971922246,0.2354211663066954,0.2025917926565874,0.2257019438444924,11.22266623696886,5.915024999604086,19.49685762449612,12247.31640324626,52.67523226297332,12.962175961209052,17.687074044639278,10.486151607722997,11.539830649401985,0.5701943844492441,0.7798165137614679,0.7026332691072575,0.5906183368869936,0.1358851674641148,0.7234878240377062,0.9251870324189526,0.847457627118644,0.7224669603524229,0.1551724137931034,0.5120643431635389,0.6952104499274311,0.6503496503496503,0.5485232067510548,0.1303813038130381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020662412640534,0.0044811225110507,0.0068390291419758,0.0089993093080892,0.0113177616660395,0.0132875819655439,0.0155558726987298,0.0177123956142679,0.0199950932286555,0.0219970315778699,0.0243205017832984,0.0266104286608581,0.028859791568172,0.0312471053200358,0.0332319744369427,0.0352117764862549,0.0371117386042759,0.0393717103899871,0.0414191967437803,0.0434470489091419,0.058543759191464,0.0722856306701785,0.085101925373447,0.0976752000336014,0.1094005033539378,0.1246291427787104,0.137451802889708,0.148665454893332,0.1593740666467551,0.1696868440217624,0.1824078655794841,0.1949714088054393,0.2063705892577785,0.2167312837874734,0.2265788982054353,0.2361267776966801,0.2456249791135221,0.2546910266919699,0.2629034084475144,0.2715819318844391,0.2789728312953918,0.2862762492850389,0.2925650689382214,0.2986929120675428,0.3039214496377119,0.3088881503637236,0.3136029595560666,0.3181991412383445,0.3228050215263682,0.3265698447601617,0.3260121511909242,0.3248457532326549,0.323963101190057,0.3235570324351658,0.322902420170066,0.320368866898485,0.3191954733488659,0.3196771170697223,0.3207046497295076,0.3215013769178498,0.3231766917293233,0.323983030687495,0.3242465609576814,0.3250280080663231,0.325839458135178,0.328513742347271,0.3278106172558827,0.3301279029571666,0.3346786930123188,0.3393611088982713,0.3426477324782409,0.3442631719711153,0.3451107715813598,0.3492417827726888,0.3537978298115363,0.3564273789649416,0.3579369981470043,0.3643076923076923,0.3635356054308672,0.3709175738724727,0.0,2.406309938093069,55.46772231351395,169.5743029005224,255.11871323567016,fqhc4_100Compliance_implementation_low_initial_treat_cost,68 -100000,95634,45002,427.3166447079491,6092,62.41504067591024,4785,49.41757115670159,1918,19.658280527845744,77.2563444549925,79.6651826698277,63.27473565930678,65.05510262918781,77.01419299452407,79.4246582130317,63.18559177106212,64.96884654876835,0.2421514604684347,240.52445679599543,0.0891438882446564,86.25608041946009,150.6527,105.98394759073244,157530.48079135036,110822.45602059147,382.45308,251.3182111749112,399296.05579605576,262174.4580117021,373.56107,181.60891347031716,386259.4474768388,186595.6102694356,3141.30636,1448.2329984146818,3247269.1511387164,1476901.5396351493,1184.40457,526.5096912563926,1222369.763891503,534439.8657970941,1889.83524,795.1424357388662,1939486.960704352,802081.9409151163,0.38237,100000,0,684785,7160.476399606834,0,0.0,0,0.0,32934,343.727126335822,0,0.0,34243,353.8072233724408,1617231,0,58119,0,0,0,0,0,73,0.7528703180877094,0,0.0,1,0.0104565321956626,0,0.0,0.06092,0.1593221225514554,0.3148391332895601,0.01918,0.3298206983328091,0.670179301667191,24.54190039825581,4.34957100744042,0.322257053291536,0.2336468129571577,0.2144200626959247,0.2296760710553814,11.40572073651122,5.981568231034574,20.489421997073755,12259.990524512745,54.75484811920197,13.418295294273104,17.48116520720064,11.5014714778315,12.35391613989672,0.568234064785789,0.7889087656529516,0.7075226977950714,0.5994152046783626,0.1191992720655141,0.7304075235109718,0.9263157894736842,0.9033942558746736,0.752851711026616,0.144,0.5092618979766316,0.7181571815718157,0.642795513373598,0.546526867627785,0.1118963486454652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0044292186533959,0.0068500796638894,0.0090620015645159,0.0112829382439719,0.0133044018622087,0.0153725314183123,0.0174608688544689,0.0196182722009696,0.0221484623107341,0.0243189164229644,0.0263909728074322,0.028753796262933,0.030776051386211,0.0328908630752543,0.0348299376041224,0.037018607785207,0.0389238040824806,0.0408320412898929,0.0424002837116154,0.0577415477870094,0.071822915029804,0.0846062591204476,0.0975589216728597,0.110609290251778,0.1263624626976232,0.138175141422825,0.1501682497763768,0.1608221198550709,0.1709376945034662,0.1827659069837642,0.1948777951118044,0.2069709182006317,0.2178267730341018,0.22763967620266,0.2378510378510378,0.2466920934602436,0.2552628020194735,0.2631525111664223,0.2709502013284234,0.2776521608051854,0.2848684519063921,0.2916286076940415,0.2967982808917274,0.3023657904029027,0.3075336289635238,0.3122091929516523,0.3172482374389637,0.322377214040096,0.3274907139363657,0.3269760285066407,0.3256083589835608,0.3254850387465354,0.325487578360808,0.3245204150182876,0.3226611226611227,0.3211031060642206,0.3214321052805172,0.3230390723121655,0.32317895077371,0.3232713894915574,0.3243076555785453,0.3258881537359349,0.3264843767524281,0.3288074279512842,0.3290147320029255,0.3302539755176753,0.3341324921135646,0.337471506224794,0.3395485381044947,0.343095281472035,0.3437001594896332,0.3468678959333165,0.350072171997265,0.353698046838841,0.3551489561341778,0.3587201442091032,0.3612220447284345,0.3606290672451193,0.3615950445218738,0.0,2.396868770989354,56.02017266859752,182.1701315823636,264.6804017735706,fqhc4_100Compliance_implementation_low_initial_treat_cost,69 -100000,95694,44705,423.5375258636905,6158,63.24325454051456,4907,50.70328338244822,1901,19.499655150793156,77.32722884548278,79.70383450208674,63.32110870231941,65.07573729031185,77.08822094305695,79.46579850571848,63.23203988445911,64.98951456244811,0.2390079024258256,238.03599636825368,0.0890688178603085,86.22272786374197,151.05926,106.23974052627716,157856.56362990366,111020.27350333057,385.41673,252.7067813439595,402204.40152987646,263522.82415194216,370.04363,180.188838777237,383372.22814387525,185717.24642418447,3218.96549,1473.1038966871315,3328077.016322863,1503655.8474796028,1177.5504,522.5466102405348,1214640.311827283,530162.9258266293,1861.7271,790.9688137394763,1910960.540890756,795744.9667119001,0.37964,100000,0,686633,7175.298346813802,0,0.0,0,0.0,33340,347.8170000209,0,0.0,33916,351.03559261813695,1617873,0,58077,0,0,0,0,0,52,0.5433987501828745,0,0.0,0,0.0,0,0.0,0.06158,0.1622063007059319,0.3087041247158168,0.01901,0.3345239944090697,0.6654760055909302,24.41773459153677,4.360655007121348,0.3175056042388424,0.2392500509476258,0.2233543916853474,0.2198899531281842,11.069798542319411,5.716629047292881,20.474581463324306,12191.605097779324,55.42076002697529,13.843039967262252,17.463037775295,12.212322462243222,11.90235982217481,0.5602200937436316,0.7708688245315162,0.6938382541720154,0.572992700729927,0.1251158480074142,0.7350890782339272,0.9093198992443324,0.9034653465346536,0.7470355731225297,0.1434599156118143,0.497787610619469,0.7001287001287001,0.6204506065857885,0.5207591933570581,0.1199524940617577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022779273897989,0.0043376473330563,0.0066957492137567,0.0085621134099149,0.0107991580317466,0.0129616242248989,0.0151530601839577,0.0172500076598613,0.0196653917738735,0.0218738159363447,0.0238437083376064,0.0259436142350947,0.0281109213963917,0.0301078814231692,0.0323229821356698,0.0345095038160044,0.0365501165501165,0.0388492644386997,0.0407530684418556,0.0428179818846999,0.0574147187232353,0.0712588825049972,0.0854643478990539,0.0985619154822895,0.1101806638050138,0.1251718958258404,0.1373510341387836,0.1479742320183144,0.1587893421080746,0.1679790589396442,0.1806958957233652,0.1932016238159675,0.2051538653990492,0.2155342142107105,0.225346996730911,0.2355919995567621,0.2446307376317199,0.2541882784459771,0.262483398980669,0.2702201038074178,0.2779070709877615,0.2852377664119099,0.291881267834097,0.2972156632426795,0.3028310258062163,0.3084704779293839,0.3129048018741465,0.3175958010599266,0.3222444058391889,0.3263003527499967,0.3252101634079531,0.3238932201989035,0.3230215827338129,0.3220895263431843,0.3214848980806428,0.3201787386944704,0.3187266155114465,0.3198976747236889,0.3200648353523289,0.3210468182142094,0.3227941588916104,0.3234382709957564,0.3237251946747048,0.3243376077923238,0.3252725041507254,0.3262696382900986,0.3260646192487726,0.3294217580066696,0.3313578341983448,0.3335585675106324,0.3365349432857665,0.3402644487097462,0.3411630990717939,0.3436207688773166,0.3438952661037852,0.3465334760375788,0.345485309952315,0.3505700325732899,0.3504013285358427,0.3547765793528505,0.0,2.2577407720612657,56.46297308193487,183.5261447783311,270.9810616063341,fqhc4_100Compliance_implementation_low_initial_treat_cost,70 -100000,95778,44741,423.260038839817,6018,61.66343001524358,4726,48.74814675604001,1851,18.89786798638518,77.38146625236273,79.70463867647744,63.35451413110488,65.06784222426151,77.15920286435926,79.48639527257477,63.27193052966395,64.98964490017048,0.2222633880034692,218.24340390267596,0.0825836014409304,78.19732409103608,150.39728,105.8749509631786,157026.95817411097,110542.03571089248,382.58267,251.2717107750409,398826.6929775105,261730.31870614085,372.31873,180.9387841861356,385412.3285096786,186307.24112454467,3127.87481,1422.2651046460835,3227855.854162751,1447374.2219785184,1154.23806,504.2123746692663,1187706.3730710605,509259.401603487,1817.71434,753.6407531743108,1857723.0679279163,753021.4650167526,0.38007,100000,0,683624,7137.589007914135,0,0.0,0,0.0,32914,342.99108354736995,0,0.0,34092,352.5757480841111,1624033,0,58256,0,0,0,0,0,71,0.7412975839963248,0,0.0,1,0.0104408110422017,0,0.0,0.06018,0.1583392532954455,0.3075772681954137,0.01851,0.32047006511037,0.67952993488963,24.35564924754265,4.438759639850691,0.3222598391874735,0.2280998730427423,0.2232331781633516,0.2264071096064325,11.623202296741344,6.099634071391358,19.55705858651028,12184.133868499068,53.57169024567885,12.80798262439748,17.45010325351459,11.659196615168671,11.654407752598114,0.5694033008887008,0.7792207792207793,0.7196323046618516,0.590521327014218,0.1233644859813084,0.7431048069345941,0.911917098445596,0.8747099767981439,0.7355371900826446,0.1714285714285714,0.505640728955742,0.7052023121387283,0.6584249084249084,0.5473554735547356,0.1116279069767441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401109693619,0.0048137338359884,0.0071616234365648,0.0093833780160857,0.0116526177717673,0.0138648533094447,0.0160021200260926,0.0182859008765395,0.0202492848385778,0.0223645441152398,0.0245156795852926,0.0265525767695732,0.0286518816928041,0.0307182343191855,0.0329501520696943,0.0349068977269206,0.0366330691061117,0.0384846662657847,0.0407438188240182,0.0428671088389333,0.0577529168666903,0.0715847852247161,0.0847439850649214,0.09780814717477,0.1100416425069843,0.12546141072694,0.1378809253582528,0.148626353156567,0.1589251193540463,0.1689733171814195,0.1819140805804028,0.1942687212760205,0.2063022605934737,0.2152779296917726,0.2248055191840058,0.2352419783726289,0.2444885976760021,0.253704641350211,0.2628662904892199,0.2706590257879656,0.2784037613053397,0.2853212190752731,0.2910968230850295,0.2971813431762619,0.3024219015692562,0.3069845922678063,0.312098327039936,0.3158704329917876,0.3203040033145165,0.3246542654871923,0.323469277951146,0.3224955338738491,0.3218256537281504,0.3212003816242157,0.3206161348835826,0.319397225029863,0.317799557382232,0.3181497927282856,0.3185089185225606,0.3186097417735936,0.3199925296479596,0.3201109733781949,0.3204825815608758,0.322180585296217,0.3228627563733947,0.323297342192691,0.3242913832199546,0.3281850867594185,0.3306091086895781,0.3351539618459589,0.3364180729450191,0.3386594948056742,0.3389587744426454,0.343141693073789,0.3446720541251644,0.3460766961651917,0.3493047158403869,0.354191736863217,0.3477905073649754,0.3469154607768469,0.0,2.243357889016253,55.73633868697674,177.61726099738027,256.18111976364867,fqhc4_100Compliance_implementation_low_initial_treat_cost,71 -100000,95757,44613,421.98481573148695,6160,63.01367001890201,4801,49.53162693066825,1928,19.76878974905229,77.31912755708531,79.67003574974338,63.32066847763053,65.05888273537141,77.07533117157922,79.42729162853288,63.228432113771305,64.96984142834604,0.2437963855060871,242.7441212104924,0.0922363638592287,89.04130702536861,151.91814,106.79826673657858,158649.64441241891,111530.50611086248,384.45391,252.24344239885264,400887.3607151436,262819.63626651384,370.05176,179.39467752461775,383367.1272074104,184936.53648141932,3146.87277,1456.9818960595398,3249613.3859665613,1484917.0449256846,1169.65604,522.7840165311197,1207507.3153920865,532021.3351369487,1888.07828,804.1611902106758,1937535.3655607423,809134.4875331761,0.37995,100000,0,690537,7211.347473291769,0,0.0,0,0.0,33123,345.26979750827616,0,0.0,33908,350.95084432469685,1616166,0,58086,0,0,0,0,0,82,0.8563342627693015,0,0.0,0,0.0,0,0.0,0.0616,0.1621265956046848,0.312987012987013,0.01928,0.3402205996582259,0.6597794003417741,24.34267452081137,4.357168560482831,0.3230576963132681,0.2274526140387419,0.2314101228910643,0.2180795667569256,11.243227536878903,5.742052425010645,20.623258189753653,12149.26129571157,54.87579567400633,13.215930561435044,17.609634693427406,12.51945055012387,11.530779869020026,0.5721724640699855,0.7710622710622711,0.7111540941328175,0.594959495949595,0.1346704871060172,0.7206870799103808,0.8915094339622641,0.8481927710843373,0.7290076335877863,0.1848739495798319,0.5147313691507799,0.6946107784431138,0.6610915492957746,0.5535924617196702,0.1199011124845488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974906074998,0.0042866263338704,0.0066352826589829,0.0089479778179528,0.0113494218506879,0.0135040175979957,0.0159061942391027,0.0180737654699179,0.0201734115866751,0.0222661288671403,0.0242279456998728,0.0262347263579422,0.0285288219262611,0.0302352892698203,0.0323256293850598,0.0345807625130478,0.0364300799204936,0.0385668644454587,0.0409306288706928,0.043058014790126,0.0573098804739287,0.0711677877624462,0.084562294153433,0.0969081922389315,0.1090797908232118,0.1245994903084585,0.1363747255428153,0.148316041500399,0.1593464680442095,0.1690325070760785,0.1813364923805934,0.1929101044541863,0.2053742384682332,0.2155020616188903,0.2251603886743036,0.2356752805130647,0.2454195277173002,0.2540038040358794,0.2627724795640327,0.2701225799060602,0.2767586222870776,0.2833253311161336,0.2893086978679023,0.2946325648414986,0.3006947908934937,0.3058835152892358,0.3108782310025823,0.3161536991015102,0.3200498132004981,0.3242957560382644,0.3224614720832715,0.3217665615141956,0.3206604572396274,0.3197612943408798,0.3190273520045239,0.3176317202239435,0.3164597110550771,0.3175503493629264,0.3179992136348872,0.3183322895231278,0.3193758566948945,0.3212709969728746,0.3215433408245993,0.3219749652294854,0.3225021091960949,0.3239282075397758,0.326116759968011,0.3290434235368156,0.33234849284232,0.3355539693869458,0.3356092676043516,0.3380813180972628,0.3411683155838427,0.3431035798793985,0.3447559709241952,0.3488427019367028,0.3485958485958486,0.3518668831168831,0.3592930129798398,0.3613348676639816,0.0,2.3648292498189925,58.64691588919607,179.36202324246167,258.7979143066879,fqhc4_100Compliance_implementation_low_initial_treat_cost,72 -100000,95692,44694,423.6717802951136,6244,64.11194248213017,4865,50.35948668645237,1955,20.189775529824857,77.34181859432726,79.72379445849336,63.3271521787835,65.08518216691284,77.09919409791453,79.47905227005984,63.23789846080719,64.99698894877736,0.2426244964127306,244.7421884335199,0.0892537179763124,88.19321813548697,150.29718,105.75461940667566,157063.47448062533,110515.63287074745,385.24746,251.9244915523032,402122.37177611503,262797.27830153314,369.69474,179.69261616267133,383144.5575387703,185367.6620184918,3228.16625,1463.6624535365938,3345907.693433098,1501966.9288306148,1186.0257,521.8836960559114,1229452.8278225977,535411.5245327841,1926.44636,804.6848274014683,1990822.1585921496,820864.8165855063,0.38045,100000,0,683169,7139.248840028425,0,0.0,0,0.0,33196,346.4134932909752,0,0.0,33830,350.29051540358654,1624458,0,58306,0,0,0,0,0,72,0.7524139949003052,0,0.0,1,0.0104501943736153,0,0.0,0.06244,0.1641214351425943,0.3131005765534913,0.01955,0.3345043531388422,0.6654956468611578,24.854049763948574,4.41839093941936,0.3149023638232271,0.2254881808838643,0.2250770811921891,0.2345323741007194,11.324042308574343,5.796749828572114,20.809540376044414,12194.545693668464,54.91967310060216,13.113237224639867,17.25414087043716,12.068467920389343,12.48382708513578,0.5516957862281603,0.7939835916134913,0.6821148825065274,0.5735159817351598,0.1226993865030674,0.7272727272727273,0.9429280397022332,0.8498727735368957,0.7727272727272727,0.1405622489959839,0.4885410844046953,0.707492795389049,0.6242317822651449,0.5169988276670574,0.1177130044843049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417464126945,0.004855205408638,0.0071223481428122,0.0092523003798419,0.0114999796640501,0.0136332165838559,0.0157783689569764,0.0176903524800179,0.0197569476384672,0.0220598020247929,0.0241264047247969,0.0260966015877743,0.028095840663354,0.0301297309551042,0.0322953543819088,0.0343604224201239,0.0364958965431484,0.0383828735763452,0.040466035576823,0.0424602554078707,0.0574636999895539,0.0715115852956266,0.0846644696794777,0.0982112794612794,0.1101946099889246,0.1251441082213079,0.1376826201818509,0.1492602448110697,0.1606696438110297,0.1700427868272334,0.1832642291745194,0.1952625601644043,0.2078847199564981,0.2179112962294885,0.2279802435456015,0.2382629497956607,0.2478988313819159,0.2559894720266348,0.2637055866365566,0.2714788046777463,0.2787031253614639,0.285236508214933,0.2911069063386944,0.2971522361595323,0.302451819738424,0.3076866204992976,0.3114848462096754,0.3150881926238896,0.3189091144652458,0.3231989861252293,0.3225884666675647,0.321843036301813,0.3213132324528621,0.3203754320505589,0.3202093493517307,0.318718070662596,0.3170391725142957,0.3167967145790554,0.3175987685992816,0.3190851143607049,0.3200748362956033,0.3217326038436469,0.3219625581103154,0.3221267838768845,0.3228087050619214,0.3237137633846957,0.3238263647253436,0.3262060712936138,0.3286555481118437,0.332098322775985,0.3341865886547516,0.3364749733759318,0.3405724328395682,0.3416951729380463,0.3415203586103847,0.3421895386075199,0.3396543814038844,0.3439323807607164,0.3465154867256637,0.354888375673595,0.0,1.8512414301249704,56.848636760613445,180.6577363892194,268.08375301111533,fqhc4_100Compliance_implementation_low_initial_treat_cost,73 -100000,95681,44783,423.9817727657529,6136,63.07417355587839,4815,49.759095327180944,1915,19.64862407374505,77.38307130315455,79.75934875195935,63.34642469116329,65.09741710861054,77.14206447674513,79.51989976184105,63.25775037106502,65.01190868153532,0.2410068264094178,239.448990118305,0.0886743200982707,85.50842707522577,151.25286,106.35106471469142,158080.35033078666,111151.706937314,385.58599,252.87105662283727,402435.2692802124,263739.2675324385,371.0915,180.15658220696557,384382.8659817519,185568.57159520945,3194.08376,1452.895765434428,3304018.5407761205,1485275.4417967773,1174.97987,518.6766998115762,1215146.444957724,529385.983714662,1876.12506,782.9531915169214,1927249.192629676,789669.443659885,0.37975,100000,0,687513,7185.4704695812125,0,0.0,0,0.0,33266,347.0908539835495,0,0.0,33941,351.30276648446403,1618910,0,58201,0,0,0,0,0,70,0.7315977048734859,0,0.0,1,0.0104513957839069,0,0.0,0.06136,0.161579986833443,0.3120925684485006,0.01915,0.344945567651633,0.655054432348367,24.418424188936445,4.416320996880429,0.3204569055036345,0.2338525441329179,0.2201453790238837,0.2255451713395638,11.48893051648487,6.04908105869675,20.372436150452053,12199.131404025107,54.6466129673211,13.594455338876898,17.367834518424626,11.730267305932763,11.954055804086815,0.5603322949117342,0.7868561278863233,0.694750486066105,0.5622641509433962,0.1325966850828729,0.7306525037936267,0.9181818181818182,0.8822055137844611,0.6890756302521008,0.1784232365145228,0.4961395481841578,0.7026239067055393,0.6293706293706294,0.5255474452554745,0.1195266272189349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024498142392921,0.0046906976272972,0.0067747791604547,0.00901742556562,0.0112246454171114,0.0134368924132455,0.01553548492324,0.017679061744021,0.0199934581731948,0.0222554358953359,0.0242474573490813,0.0267089738455377,0.02895137403324,0.0310040789419471,0.033167239227095,0.0350989612939899,0.0372526675644877,0.0391916717697489,0.0412441893114529,0.043073620143405,0.0580934969966048,0.071711979564703,0.0847775912715065,0.0978076862415225,0.1097791132901049,0.1253554928267098,0.137278181779634,0.1484542002999074,0.1590196120275721,0.1694880750851779,0.1811149840778036,0.1935780312449321,0.2047492256697277,0.215152243764891,0.2248385996942467,0.2354192283406998,0.2452573164059447,0.2544537285196279,0.263105903191743,0.271303351475222,0.2774318976091837,0.2841524937670455,0.2903497133109036,0.2953457398941723,0.3013655321684359,0.3067443036725429,0.3113579721216827,0.3162940517416989,0.3205126543729832,0.3254880207095121,0.324479327939256,0.3237130987426748,0.3232456943290476,0.3225536096179411,0.3217994621818776,0.3204041271252702,0.3183222678223391,0.3184655823886972,0.3184206472813158,0.319083887577773,0.3210273473278875,0.324072432070304,0.3253034703215427,0.325950847797509,0.3277606371529023,0.3288849731802752,0.3290311624352551,0.3313772006492695,0.33282085327929,0.3372326598133049,0.3418272500566764,0.3446006423419154,0.3450581032112957,0.3476586102719033,0.3505154639175257,0.3493046628491293,0.3517241379310344,0.3591452656341893,0.3601921024546424,0.3577235772357723,0.0,2.1791381884467493,58.01605549456471,178.6579385741262,260.21781853816503,fqhc4_100Compliance_implementation_low_initial_treat_cost,74 -100000,95696,44458,421.3237752884133,6129,62.82394248453436,4765,49.22880789165691,1923,19.750041799030264,77.3960056150407,79.78105664327575,63.35197710932333,65.11336923415162,77.15058155512516,79.53492214623108,63.26016065926023,65.02364792853139,0.2454240599155497,246.1344970446646,0.0918164500630993,89.7213056202304,151.41148,106.4068353676229,158221.32586523992,111192.56329169756,385.29084,252.36967415385263,402059.9293596388,263160.5335163984,366.84297,178.42115986345289,379759.0390402943,183725.4311923126,3132.94451,1444.6725420756486,3239481.692024745,1475278.4150598217,1133.47763,507.81229730651336,1171153.8099816083,517348.7055953365,1876.79524,800.4063997579493,1928435.0861060023,808489.1632661166,0.37849,100000,0,688234,7191.878448419997,0,0.0,0,0.0,33206,346.4094633004514,0,0.0,33593,347.4021902691858,1623442,0,58200,0,0,0,0,0,81,0.8464303628155827,0,0.0,2,0.0208995151312489,0,0.0,0.06129,0.1619329440672144,0.3137542829172785,0.01923,0.3238689547581903,0.6761310452418097,24.6516030060442,4.339339434842901,0.3200419727177335,0.2308499475341028,0.2289611752360965,0.2201469045120671,11.168666089039196,5.868379681880764,20.72510212820772,12142.816702241138,54.141478458778174,13.213955169168296,17.23431817490426,12.03908798495221,11.654117129753413,0.5571878279118573,0.7872727272727272,0.6878688524590164,0.5618698441796517,0.1210676835081029,0.7125475285171102,0.9314420803782506,0.848404255319149,0.7094339622641509,0.1434262948207171,0.4979710144927536,0.6971935007385525,0.6353350739773717,0.5145278450363197,0.1140350877192982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020867733014577,0.0042485449494027,0.0063945108706684,0.0087172974345948,0.0110980001220678,0.013430130737588,0.0153960663560263,0.0175193212794413,0.0194749432619763,0.0216792736726818,0.0239186376731358,0.0258429504291757,0.0280151800314707,0.0302221855975937,0.0322850244536618,0.034267816163245,0.0365651543401698,0.0384056466680506,0.0404247353204234,0.0425013027618551,0.0564764620478592,0.0709860393076166,0.084328882642305,0.0974345494690358,0.1097641961904561,0.1249352269963304,0.1363703876594029,0.1482025569784647,0.1590984350798483,0.169021033776319,0.1811875962646618,0.1937022694329662,0.2055058035908359,0.2150477689600139,0.2242003056927018,0.2345367387381403,0.24452672785876,0.253561157544711,0.2619117747014976,0.2694712775078594,0.2766917987737995,0.2837779464129356,0.2903351565914917,0.2961110446332416,0.3019549820510332,0.3059941951987406,0.3110506477621627,0.3166941519725992,0.3211500722991117,0.3248335570116576,0.3241792166653244,0.3229996845036419,0.3219879094615492,0.3203185871353129,0.3197127511202113,0.318056702449766,0.3155065842515452,0.3163079646597931,0.3171280896576429,0.3189423231117367,0.3203104544604451,0.3213068237797789,0.3215083157697043,0.3218457294146439,0.3226919758412424,0.3233895486318634,0.3246598639455782,0.3275418679044095,0.329832300528656,0.3325001983654685,0.3376670772318781,0.3387739911744378,0.3378787878787879,0.3395306309052118,0.3433951551854655,0.3439109088731888,0.3474862047823421,0.3424908424908425,0.3426283821093319,0.3458559256390395,0.0,2.152063699495438,57.773740202312624,176.1066533560668,257.8020651267153,fqhc4_100Compliance_implementation_low_initial_treat_cost,75 -100000,95835,45212,427.2969165753639,6089,62.3676109980696,4786,49.49131319455314,1837,18.87619345750509,77.38566316619061,79.70669738815945,63.36611244363343,65.08433605344183,77.15577411874804,79.47670238430662,63.27999902842921,65.00026923081096,0.229889047442569,229.9950038528351,0.0861134152042168,84.06682263087362,151.71332,106.81098272940548,158306.798142641,111453.00018720246,389.21028,255.28533635208,405677.2786560234,265932.1271384629,377.27516,183.49555112620652,391376.11519799655,189687.11683841137,3164.42152,1443.659958742107,3270818.1040329733,1475519.257273727,1137.0788,498.3618982992548,1177243.3557677255,510900.6422140609,1804.41148,761.6175952078893,1854241.3314551048,769279.0802861552,0.38286,100000,0,689606,7195.763551938228,0,0.0,0,0.0,33585,349.9660875463036,0,0.0,34548,358.1363802368655,1616598,0,57972,0,0,0,0,0,55,0.5739030625554339,0,0.0,0,0.0,0,0.0,0.06089,0.1590398579115081,0.3016915749712596,0.01837,0.3333333333333333,0.6666666666666666,24.852475919966285,4.301324114091583,0.3315921437526118,0.2273297116590054,0.2185541161721688,0.2225240284162139,10.991196771391504,5.686833744309062,19.55525217983712,12225.665880415094,54.21904628354525,13.109645307885918,17.884416760567547,11.56342066054278,11.661563554549,0.5547430004178855,0.7757352941176471,0.6912413358538122,0.5736137667304015,0.1070422535211267,0.7069096431283219,0.906818181818182,0.8719211822660099,0.683982683982684,0.0833333333333333,0.4969731911213606,0.6867283950617284,0.6291278577476714,0.5423312883435583,0.1139393939393939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409265392523,0.0049775452895795,0.0071957049050552,0.0095808018206571,0.0116562919565482,0.0138071479482741,0.0155337430816744,0.0179304010613327,0.020287188921253,0.0225649317423606,0.0246979370561288,0.0267682106970203,0.0289102886917914,0.0311789107453499,0.0331418790022376,0.0353560915147446,0.037456283757217,0.0396044735123705,0.0415446597304425,0.0437565036420395,0.0587903949262512,0.0725455761833082,0.0857562100408762,0.0984681333921704,0.1104018539000368,0.1259730246411559,0.1370513200830614,0.1484453893170342,0.1597401489130203,0.1698907455012853,0.1818866219980426,0.1945662741708977,0.206231679513625,0.2161858292126491,0.2261649808353376,0.236878475946176,0.2461761265526653,0.2554646957068721,0.2644659930218859,0.2715051612386973,0.2792156047534906,0.28619104296483,0.2925130723197318,0.2972440003824457,0.3025300664914554,0.3075534266764922,0.3122270742358078,0.3168640779161488,0.3213027146342408,0.3256753378333925,0.3246639784946236,0.3237819200813198,0.3228977680266655,0.3219281909134219,0.3210787223937307,0.3186074980872226,0.3157219759341355,0.316384830077163,0.3174991447143346,0.3182565495550234,0.3178149403546882,0.3190568424381374,0.3199470432480141,0.3211050318414207,0.3219692396841876,0.3238222501703086,0.3260782519162567,0.3293805979563517,0.3333450878059101,0.3380882177152647,0.3416506717850288,0.3451205267070192,0.348277816258422,0.3497076911396249,0.3545831761599397,0.3548807970584747,0.3590449954086318,0.3639668753787113,0.3714599945009623,0.3726755218216319,0.0,1.65394194317411,58.28842528862832,173.62620110326458,262.49538014274765,fqhc4_100Compliance_implementation_low_initial_treat_cost,76 -100000,95770,45043,426.73070899028926,6005,61.47018899446591,4741,48.99237757126449,1850,19.035188472381748,77.37657405990127,79.72117849260036,63.3458979718325,65.07902962703136,77.14699256364577,79.49077249124767,63.26052771280178,64.99547397730163,0.2295814962555056,230.40600135269077,0.0853702590307179,83.55564972973184,151.86864,106.91413977785344,158576.4226793359,111636.35770894166,386.45507,253.63878808385,402964.91594445024,264282.36199629324,376.71359,182.86729292501917,389747.2799415266,188260.8051175345,3109.64266,1428.0703406672303,3216036.504124465,1460191.9606006392,1135.26199,508.26820947836046,1172015.2657408374,517342.7612997047,1824.83942,770.08324578297,1878793.6723399807,780909.8222315782,0.38057,100000,0,690312,7208.019212697087,0,0.0,0,0.0,33279,346.90404093139813,0,0.0,34409,355.6332880860395,1615096,0,57879,0,0,0,0,0,70,0.7309178239532212,0,0.0,0,0.0,0,0.0,0.06005,0.15778963134246,0.3080766028309742,0.0185,0.3365521608358398,0.6634478391641602,24.651700412549168,4.381276511424972,0.3244041341489137,0.2345496730647542,0.2111368909512761,0.2299093018350559,11.03479319122001,5.689824599743607,19.56605136718659,12197.883187098412,53.61975790961795,13.256689373602866,17.26509341545751,11.072090594714288,12.025884525843278,0.5652815861632567,0.7913669064748201,0.7002600780234071,0.5964035964035964,0.1155963302752293,0.7321711568938193,0.9407407407407408,0.8788659793814433,0.7359307359307359,0.134453781512605,0.5047427421672894,0.7057991513437057,0.64,0.5545454545454546,0.1103286384976525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903575407677,0.004956968646413,0.0071835873292883,0.0092953797391198,0.0114616385973476,0.0135029174855653,0.0157538925880229,0.0178870421039735,0.020394810824073,0.0225609319179863,0.0246084781895703,0.0265343201157861,0.0285176770532419,0.030566111574546,0.0326717147750015,0.0346157026501839,0.0366347398395029,0.0387974854250088,0.0409177382969654,0.0428230736386074,0.0574347948608226,0.0716676078726652,0.0849966454209996,0.0980946475676016,0.1103335616799283,0.1260504201680672,0.1380012298818889,0.1488358729888482,0.1597351276300331,0.1700393569904235,0.1822441483460258,0.1946374082970849,0.2057965968928151,0.2164936045430175,0.2264690988352892,0.2359428514425688,0.2451151157857126,0.2541440194456635,0.2627774499568789,0.2700022899015342,0.2770221821293919,0.2840861270865479,0.2902089220473651,0.2965397509578544,0.301655150639352,0.3073236834000616,0.3119119319246773,0.3156036475399426,0.3207471561530506,0.326006457139092,0.3251471101915791,0.3235382967621454,0.3220951149586823,0.3215542606588588,0.3207452090527782,0.3189495727671543,0.3176000252828519,0.3180069099900116,0.318033010503342,0.3185637483533307,0.3196908451231379,0.3208298820652388,0.3222735926026652,0.3248752450543575,0.3259732155714491,0.3257490953583422,0.3256759446166093,0.3292824255332477,0.3323996918983264,0.335407665781442,0.3380846122318867,0.3406412570336554,0.3442365645404319,0.3471463266545234,0.3486135748296144,0.3484937979917306,0.3558132438205676,0.3592934564431955,0.3661053775122216,0.376275028333963,0.0,1.9087064841365309,55.53072812014705,177.23646060623102,259.9250549478192,fqhc4_100Compliance_implementation_low_initial_treat_cost,77 -100000,95759,45115,427.5525015925396,5977,61.24750676176652,4670,48.25656074102695,1817,18.661431301496464,77.3313489084019,79.69731248071407,63.31030609897547,65.0630525729087,77.10855576038796,79.475141133921,63.22838792030724,64.9838471909182,0.2227931480139489,222.1713467930755,0.0819181786682321,79.20538199050497,152.00328,107.0030151044182,158735.2415960902,111741.99302876824,384.83229,252.42110616269684,401403.982915444,263128.5374353292,376.60006,182.94980055541276,389758.926053948,188444.9858014768,3061.53825,1395.178703013731,3164666.5796426446,1424868.0680548886,1116.60724,488.19134055771536,1153917.8040706357,497797.0431416296,1788.03582,742.4950635158519,1837800.2067690769,749420.8761123206,0.38103,100000,0,690924,7215.238254367736,0,0.0,0,0.0,33158,345.7534017690243,0,0.0,34430,356.0814127131653,1612793,0,57861,0,0,0,0,0,72,0.7518875510395889,0,0.0,2,0.0208857653066552,0,0.0,0.05977,0.1568642889011364,0.3039986615358875,0.01817,0.3249482566470307,0.6750517433529692,24.72305075071645,4.336919018835252,0.3132762312633833,0.2389721627408993,0.223340471092077,0.2244111349036402,11.22439744884482,5.797727428080539,19.241063548841023,12222.701577860453,53.07932245697804,13.368317676314408,16.572353721494128,11.698903934376805,11.439747124792694,0.5717344753747323,0.7894265232974911,0.7108680792891319,0.6088207094918504,0.1087786259541984,0.74481658692185,0.930622009569378,0.8740359897172236,0.7553648068669528,0.1355140186915887,0.5081967213114754,0.7048710601719198,0.6517690875232774,0.5666666666666667,0.1019184652278177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022391310955531,0.0045225468225559,0.0068612027404212,0.0090530380004064,0.0115058292132088,0.0137181615423002,0.015825269447645,0.018256634366991,0.0201904489153003,0.0221951369400004,0.0242246471939612,0.0263217375223457,0.0287019789854997,0.0307330798008842,0.0329269929088262,0.0349405937522619,0.0369258170069999,0.0389652166694338,0.0409870999261961,0.0428080408290803,0.057936217965447,0.0718987076858682,0.0853579221215172,0.0981629283783925,0.1105394120872169,0.1263987308302485,0.138544308498785,0.149342280449486,0.1606587511087837,0.1699107257822224,0.1828508611212898,0.1944901672009009,0.2065793627466988,0.2162895828544533,0.2259531227637532,0.2353651912695509,0.2453605484713816,0.2543835955612578,0.2630999659593782,0.2706390486446853,0.277833709425447,0.2846272710245364,0.2914203111485005,0.2962931841644059,0.3020127698388568,0.30778716320365,0.3124264650662127,0.3177774666887257,0.3224853221353863,0.3267621988230016,0.3262634832141559,0.3245930040699593,0.3239953849617289,0.3230256417656311,0.3221833595162581,0.320912396492193,0.3184745548680389,0.3189701763867734,0.319610318706067,0.3206246883681173,0.3216235417289859,0.3239128291095552,0.3228308592933305,0.3233810862676842,0.3240389691414311,0.3260999661749018,0.326962399182097,0.3309262166405023,0.3317390539827677,0.3336914567665433,0.3375842594279468,0.3388403494837172,0.3408277334673114,0.3419335255729245,0.345610119047619,0.3505813953488372,0.3519402985074626,0.3523417597491671,0.3487372380440623,0.355020684467845,0.0,2.030871820618956,55.22268529462404,179.1503679011281,250.2888559379116,fqhc4_100Compliance_implementation_low_initial_treat_cost,78 -100000,95499,44811,425.20864092817726,6084,62.4404444025592,4790,49.66544152294789,1879,19.371930596131897,77.22623088476638,79.71392549631472,63.24095407219974,65.07632272863361,76.98652169284577,79.4724231550789,63.15185717717802,64.98866244806084,0.2397091919206104,241.5023412358153,0.0890968950217185,87.66028057277708,151.4062,106.51974180751635,158542.18368778733,111540.1646169241,388.94834,255.5784010188575,406755.5367071906,267109.7863338311,375.44776,182.6491768826724,390153.8236002471,188920.3227714468,3147.86251,1443.0475070304944,3266003.078566268,1481526.4240252397,1153.24799,509.1407180942732,1196966.9106482791,522745.202951644,1841.8474,777.3982895522222,1900193.0700845036,790019.5052980566,0.37896,100000,0,688210,7206.462894899423,0,0.0,0,0.0,33479,350.0141362736783,0,0.0,34392,357.1136870543147,1607064,0,57736,0,0,0,0,0,68,0.7120493408307941,0,0.0,1,0.0104713138357469,0,0.0,0.06084,0.1605446485117162,0.3088428665351742,0.01879,0.3275726630007855,0.6724273369992144,24.581674059879656,4.409018748890258,0.3288100208768267,0.230062630480167,0.2177453027139874,0.2233820459290187,11.343264085984613,5.896030736176916,20.123427710745997,12194.57305762614,54.57630000993242,13.195248425141026,18.05673600772972,11.40653517639249,11.91778040066918,0.5632567849686848,0.7967332123411979,0.7066666666666667,0.5560882070949185,0.1186915887850467,0.7276295133437991,0.9263959390862944,0.8668280871670703,0.7577092511013216,0.1333333333333333,0.5036973833902162,0.7245762711864406,0.6497418244406197,0.5,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0045949263087425,0.0067313744999695,0.0090188103711235,0.0112294347613617,0.0134637924884064,0.0156940376942621,0.0178202848793247,0.0200313053086028,0.0222331509600213,0.0245216784365248,0.0266399341969977,0.02876001400416,0.0307359084111185,0.0327120185154571,0.0346430605166433,0.0368149707990581,0.0388453462505977,0.0410888974548636,0.0431350436989004,0.0583648220061337,0.0724949379439134,0.0851788756388415,0.0974684344765076,0.1098852323885612,0.1248396841380041,0.1371112646855563,0.1493609030578494,0.1603902919692393,0.1705290538942752,0.1824856134138046,0.1936914950158905,0.2050722899448284,0.2159637794757671,0.2254352479092654,0.2357765134678638,0.2448395072778331,0.2546506121896773,0.262827439516817,0.2713844670668304,0.2789408367065264,0.2859588639508431,0.2926288060374493,0.2971595485088531,0.302290709156741,0.3076218871005653,0.3128927655723694,0.3172546012269938,0.3209842842101158,0.3250427112718026,0.3236148845004933,0.323222291192496,0.3220114066293975,0.321420820371844,0.3203449662630144,0.3184548037785116,0.3154892426987002,0.3165554182117841,0.3172677670635874,0.3178682149705213,0.3186342636066559,0.3201204413541728,0.3199722985876477,0.3215365662448202,0.3223309373272111,0.3229557780559032,0.324953683910503,0.3287580670549346,0.3335209285965529,0.3353357733927434,0.3385895150601033,0.341086506292815,0.3437441204139229,0.3479673568082213,0.3471488178025034,0.3446301273810915,0.3469107551487414,0.3427115188583078,0.3443344334433443,0.3471957268218237,0.0,1.824471597329245,56.31890099185618,184.84804103879387,259.7589931375954,fqhc4_100Compliance_implementation_low_initial_treat_cost,79 -100000,95706,44780,424.63377426702607,6150,63.07859486343594,4822,49.76699475476981,1942,19.90470816876685,77.36399481233721,79.74739677636533,63.33329461681414,65.09662455306012,77.11666557727531,79.50180957558128,63.24060627451463,65.00727892356608,0.2473292350618976,245.58720078405827,0.0926883422995104,89.34562949404778,152.174,106.97174361301774,159001.06576390195,111770.83438760148,387.93948,254.56945426436525,404733.4127431927,265383.4792798184,369.97002,179.62715201356843,382735.47113033663,184734.41054814172,3207.3572,1472.49946623403,3312827.858232504,1500718.2839607073,1136.81567,507.0291824202726,1169735.0113890455,512257.94948856,1906.84366,804.0562794110882,1956162.581238376,808636.9137633478,0.38111,100000,0,691700,7227.321171086452,0,0.0,0,0.0,33554,349.9467118049025,0,0.0,33833,349.58100850521384,1615256,0,57937,0,0,0,0,0,70,0.7314065993772595,0,0.0,0,0.0,0,0.0,0.0615,0.1613707328592794,0.3157723577235772,0.01942,0.3334888059701492,0.6665111940298507,24.514361503496303,4.422265994098317,0.3255910410618001,0.2320613853172957,0.2111157196184156,0.2312318540024886,11.006669246326632,5.539674557564002,20.665143392625936,12222.656088242382,54.66592188060575,13.439645591951937,17.805377346274692,11.22573476421675,12.19516417816236,0.5607631688096225,0.7944593386952636,0.7,0.5805500982318271,0.1121076233183856,0.7297090352220521,0.9130434782608696,0.847457627118644,0.7529880478087649,0.1578947368421052,0.498009101251422,0.724822695035461,0.6473638720829732,0.5241199478487614,0.1003382187147688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0044925816625594,0.0067712986274669,0.0090452669878244,0.0111113372270497,0.0130916722701061,0.0152699008527479,0.0174026716777646,0.0197498286848107,0.0217593872556548,0.0239247697766474,0.0260863313785701,0.0283583624768566,0.0304891242748657,0.0324468249791015,0.0345843672456575,0.0365651543401698,0.0385289875374861,0.0405488280234915,0.0425487581263543,0.0568423910773215,0.0701688280424111,0.0833656822116141,0.0960308779605401,0.1083422933400796,0.1237972381415611,0.1359350973010233,0.1486477860288954,0.159112990188228,0.1686227852985626,0.1816401205337925,0.1934402111594297,0.2057352269514343,0.2159129436211516,0.2264065834928598,0.236624147400124,0.2461622562363336,0.2550331796198403,0.2635879742597405,0.2720047639770046,0.2786177855415833,0.2855238228896218,0.2922714464991831,0.2980197545070963,0.3031900677859034,0.3079860084737412,0.3122513822521328,0.3169776783444348,0.3221079857743291,0.3271287806934345,0.3265629830763647,0.3252146438629026,0.3245732444669422,0.3235663276347111,0.3225863832436519,0.3213206337576701,0.3203797747847207,0.3210025816149799,0.3219874804381846,0.32327639945144,0.3244826166685378,0.324145143150293,0.3258920173073305,0.3263023687565705,0.3280117155615307,0.3292963040300689,0.3310203032639424,0.3331657501963865,0.3367415059203822,0.3390328083468877,0.3405164575377341,0.3447545411216438,0.3493595810461228,0.3539964882815482,0.3550738356683074,0.3555900621118012,0.3590895013936203,0.3557929334428923,0.3617259736620902,0.3694117647058823,0.0,2.4013484661171733,57.018095226304325,178.69474828820594,263.8324937268445,fqhc4_100Compliance_implementation_low_initial_treat_cost,80 -100000,95673,45142,427.3201425689588,6116,62.75542734104711,4768,49.29290395409363,1896,19.451673930994115,77.31725194233033,79.72692609910214,63.30264576078415,65.08549324747152,77.08492854642517,79.49418379758076,63.21615340811942,65.00135055552374,0.2323233959051549,232.7423015213839,0.0864923526647345,84.14269194777546,152.43426,107.34841795029683,159328.1699120964,112203.23868834136,388.92401,254.82581310707235,405968.1205773834,265805.3543915968,374.35409,182.10970714141675,387924.2314968695,187741.00654677724,3148.33964,1439.209665378401,3256983.5794842853,1470585.5410391646,1150.19169,510.1035876118517,1192657.4686693216,523620.1202134888,1866.14808,783.6152092376699,1916774.45047192,790714.2668412412,0.38334,100000,0,692883,7242.189541458928,0,0.0,0,0.0,33546,350.0569648699215,0,0.0,34333,355.5130496587334,1609641,0,57739,0,0,0,0,0,57,0.5957793734909536,0,0.0,0,0.0,0,0.0,0.06116,0.1595450513904106,0.3100065402223675,0.01896,0.337640099626401,0.662359900373599,24.540841083362427,4.424272207019638,0.3248741610738255,0.2202181208053691,0.2296560402684563,0.2252516778523489,11.0714994717651,5.576939186548806,20.27096379822907,12301.232869345997,53.97801923986978,12.506133364835556,17.371071721627484,12.230680364050226,11.870133789356515,0.55998322147651,0.7914285714285715,0.6849580374435119,0.5917808219178082,0.1210428305400372,0.7297507788161994,0.917948717948718,0.8553921568627451,0.7586206896551724,0.1422222222222222,0.4974167623421355,0.7166666666666667,0.6240140227870289,0.539568345323741,0.1154299175500589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0045429194341631,0.0066776946730669,0.0089321098679998,0.0114666531006766,0.0138025873484771,0.0160161589782302,0.0184292252370055,0.0206257289599148,0.0226418187220178,0.0249615266235764,0.0272816950615507,0.0294608115619788,0.0315586531125636,0.0335863671572424,0.0353746986580583,0.0374639769452449,0.0395256096041208,0.0416701348426835,0.0436069846234037,0.0583847037927071,0.0726044612001256,0.0852964642647182,0.0982492319346828,0.1107266435986159,0.1269789197426346,0.1389469662396655,0.1507332190285513,0.1612999754197347,0.1718999753263889,0.1841184010685395,0.1969236098331908,0.2086407661334204,0.2190431365681198,0.2285969182646239,0.2392969156941627,0.248817228297255,0.2585506855169776,0.2666613737410398,0.2739032878468724,0.2801527159136924,0.2864560188974904,0.2922348484848485,0.2977109300095877,0.3033683289588801,0.3084739074676926,0.3128121674907679,0.3174330598486294,0.3219125775010679,0.3262027151706867,0.3261565357719204,0.3253867927120833,0.3253430435271623,0.3236554640038095,0.3222651605231866,0.320464267643857,0.3184480466029253,0.3191740800315136,0.3195549032324128,0.3208435087969482,0.3213750748951468,0.3227271829511564,0.3245102563026972,0.3256193907925069,0.3269740967633013,0.3279437885278445,0.3298454695786052,0.3332182103610675,0.3354266067920292,0.3385889157390168,0.3424420458168238,0.3427070621319042,0.3453377825347856,0.3485979884181652,0.3511027686532144,0.3560837844198635,0.3596638655462185,0.3611223253936213,0.3630247578040904,0.3647940074906367,0.0,2.1310444399705704,56.4370361125809,173.3596806566135,265.4037532119708,fqhc4_100Compliance_implementation_low_initial_treat_cost,81 -100000,95864,44688,422.8594675790703,5993,61.37861971125761,4669,48.21413669364934,1850,18.96436618542936,77.4717338221379,79.75685813099543,63.40399372213196,65.08993795859371,77.23796772084368,79.52326210618172,63.31661239973688,65.00491515419338,0.233766101294222,233.596024813707,0.0873813223950747,85.0228044003245,151.82024,106.68601842370016,158370.4414587332,111288.92850673888,381.39693,249.99424244991627,397374.7079195527,260302.72307635425,364.69723,177.50299144329026,377184.02111324377,182734.5774796408,3068.725,1400.2570605184642,3171362.6908954354,1430909.6120738373,1130.10686,495.8220497871623,1166137.809813903,504487.1273754091,1807.94548,765.4981710371954,1855493.1569723776,772568.9126850439,0.38038,100000,0,690092,7198.656429942418,0,0.0,0,0.0,32950,343.2153884669949,0,0.0,33356,344.66535925895016,1623737,0,58234,0,0,0,0,0,70,0.7302011182508553,0,0.0,0,0.0,0,0.0,0.05993,0.157552973342447,0.3086934757216752,0.0185,0.3302244704394562,0.6697755295605438,24.735843271228955,4.425493150903214,0.3077746840865281,0.2409509530948811,0.2287427714714071,0.2225315913471835,11.197965599105896,5.713046705275548,19.721432429729653,12147.963966336236,52.55730798382815,13.371439410598516,16.115143258714685,11.795088943486068,11.275636371028886,0.5585778539301778,0.7715555555555556,0.6889352818371608,0.5805243445692884,0.1251203079884504,0.7146282973621103,0.9111111111111112,0.8526315789473684,0.6869918699186992,0.1454545454545454,0.5014628437682855,0.6930555555555555,0.630085146641438,0.5486618004866181,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021560886729426,0.0046094153640425,0.0069358534953051,0.0091352009744214,0.0112694089911389,0.0135521483003856,0.015667019802787,0.0179418394720468,0.0201785021342646,0.0221610897488341,0.0242730875981933,0.0262342830184809,0.0283630386768709,0.030393760739163,0.0322224856462535,0.0345212156259358,0.0368347556245151,0.0387604933153694,0.0407641989409199,0.0425204224985691,0.05675644675238,0.07143081152845,0.0851576663907024,0.0977649815587335,0.1094456566423173,0.1246405311680622,0.1362918190976088,0.148565410270322,0.1589247013355824,0.1682206932030094,0.1815530637281277,0.1936836644257582,0.2052863627478661,0.2154539896056252,0.2248349789673692,0.2346587956974983,0.2442298266720135,0.2529249287013541,0.2616903928696814,0.2695935517063968,0.2760488238622585,0.2827826776797797,0.2897614548889938,0.2957913243155968,0.3012168047653132,0.3061357622007508,0.3114356751083846,0.316257333705839,0.3203370336387485,0.324900956868526,0.3236942178744675,0.3225028104521401,0.3215544230580241,0.32053773191128,0.3197513505513209,0.3186240126864078,0.3165426806203505,0.3159958821510858,0.3180759751848389,0.3188562706329204,0.3194074350135097,0.3199937132865759,0.3208140649085531,0.321925418907507,0.3239971346704871,0.3248872998600964,0.325035360678925,0.3286146362757631,0.3315196673020273,0.3338557993730408,0.3347543190486874,0.334700746818134,0.338716744913928,0.3414152162347039,0.3415944214097248,0.3462360484445499,0.3477996965098634,0.3482338854520055,0.3528617710583153,0.3545351900639819,0.0,1.9477440732687843,54.90347920267163,167.5755164112462,260.96372606694456,fqhc4_100Compliance_implementation_low_initial_treat_cost,82 -100000,95732,44570,422.7739940667697,5910,60.42911461162412,4633,47.71654201311996,1821,18.56223624284461,77.34438518034166,79.69773467077299,63.33412346583962,65.07250365393628,77.11281940831246,79.470615163133,63.24784804342191,64.99129291153646,0.2315657720291994,227.11950763998345,0.0862754224177067,81.21074239981851,153.07974,107.68143344507864,159904.4624576944,112482.1725703826,387.59658,254.81134726976651,404184.7553587097,265479.58600025746,371.35001,180.9088928534925,384117.5886850792,186083.4477726665,3057.7835,1407.804219892071,3148997.1065056617,1425995.1547639691,1127.71931,499.99188287914194,1160287.072243346,504671.7528893964,1794.02176,759.427874326202,1830212.4681402247,754551.8634436263,0.37708,100000,0,695817,7268.384657167927,0,0.0,0,0.0,33522,349.42339029791503,0,0.0,33946,350.7917937575732,1606560,0,57716,0,0,0,0,0,60,0.626749676179334,0,0.0,1,0.0104458279363222,0,0.0,0.0591,0.1567306672324175,0.3081218274111675,0.01821,0.3392568659127625,0.6607431340872375,24.24379385632358,4.386374860235764,0.3166414849989208,0.2294409669760414,0.2253399525145694,0.2285775955104683,10.960702138989658,5.553903366988505,19.464018404022383,11993.607654631074,52.6634438586597,12.791468731952502,16.73345185049911,11.58322574640623,11.555297529801864,0.5523418951003669,0.786453433678269,0.7048398091342877,0.5459770114942529,0.1123701605288007,0.716,0.8982630272952854,0.8549618320610687,0.7056451612903226,0.1067961165048543,0.4918711203074195,0.7181818181818181,0.6499068901303539,0.4962311557788945,0.1137162954279015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019650743486892,0.0043190412944957,0.0067776661695025,0.0090084600306714,0.0113162657339813,0.0136104974906599,0.0155928334114673,0.017613143527731,0.0197607054183568,0.0216924178860124,0.0237314533978194,0.025936303640525,0.0281519258055892,0.0299897013388259,0.0317628975520183,0.0338748346560846,0.0357623434427077,0.0377702877884366,0.040055707990355,0.0419162300392704,0.0562109790983692,0.0703281982585398,0.0836217928545954,0.0961255311093349,0.1078923501993124,0.1235261148652221,0.1348791327683316,0.1457147417141033,0.1564819858792365,0.1664182864984829,0.1791131541268799,0.1910932750657133,0.2028550615914848,0.2131224587942115,0.2232632817568979,0.2331100902197376,0.2423620254859514,0.2511555200683753,0.2595491724239639,0.2667201007614359,0.2749282805848602,0.2812255068259186,0.2874554770610719,0.2928286135799359,0.2983185109588375,0.3028456538096236,0.3074282421038125,0.3115564445237155,0.3155971387103463,0.3193228485784838,0.3183084938810129,0.3172465960665658,0.3167554015606073,0.3156913740788903,0.3144207335195862,0.3123946166344768,0.3101130364475165,0.3108791280940188,0.311649042485949,0.3130666000428296,0.3136421509886159,0.3144847731264926,0.3152321761148429,0.3156141723482731,0.3174064717911704,0.3189327218719058,0.3186052474147509,0.3227593152064451,0.3249034070951879,0.3289442278622007,0.3323172118840711,0.3362563775510204,0.3395881871418676,0.3427102238354507,0.3444684245097119,0.3436024551463645,0.348698315467075,0.3470225872689938,0.3540166204986149,0.3504835589941973,0.0,2.5637704377431074,54.14853213035635,176.2347203480817,250.6951501326429,fqhc4_100Compliance_implementation_low_initial_treat_cost,83 -100000,95665,45035,426.5509852088016,6161,63.0220038676632,4812,49.66288611299848,1853,18.96200282234882,77.28108161739658,79.66698108097467,63.29287913429015,65.05516065236571,77.04791948113099,79.43807449482243,63.2044920813638,64.9712904790805,0.2331621362655909,228.90658615223455,0.0883870529263575,83.87017328522006,151.81232,106.78116598198262,158691.60089897036,111619.8881325277,384.85959,252.61288385696955,401671.1545497308,263431.77113570226,372.52148,181.9880853660564,385300.3501803167,187118.0906764277,3150.72269,1443.599142833192,3254185.1983484034,1469704.4089616798,1127.84419,504.3238575402548,1163409.721423718,511634.9527416028,1807.24736,769.3239773217095,1851064.736319448,770089.6060447803,0.38206,100000,0,690056,7213.254586316834,0,0.0,0,0.0,33221,346.61579470025606,0,0.0,34080,352.2500391992892,1611371,0,57842,0,0,0,0,0,73,0.7421732085924841,0,0.0,0,0.0,0,0.0,0.06161,0.1612573941265769,0.300762863171563,0.01853,0.3357630272952853,0.6642369727047146,24.631022158645536,4.3785326717750905,0.3150457190357439,0.240648379052369,0.2300498753117207,0.2142560266001662,11.252374088333983,5.8458115391722725,19.780195247286933,12264.60965017632,54.47487228451212,13.705895734805452,17.22169228221929,12.296778421908035,11.25050584557934,0.5656691604322527,0.7823834196891192,0.691952506596306,0.5772357723577236,0.1241513094083414,0.7236641221374046,0.9367396593673966,0.853904282115869,0.7180451127819549,0.1398305084745762,0.5065676756139349,0.6974564926372155,0.6344950848972297,0.5326991676575505,0.1194968553459119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0048256774703717,0.0069618518931974,0.0091637797035486,0.0112788072330817,0.0135636022972587,0.0159981238656524,0.0180197655899048,0.0203731152568361,0.0227740304404343,0.0250689524356358,0.0272085095897162,0.0294940353763883,0.0315281899109792,0.0333670478470874,0.0352988616272216,0.0372288632455613,0.039398436932402,0.0413589364844904,0.0432140586402059,0.0574315147209394,0.0711114368887306,0.0843349464115133,0.0977313860010943,0.1102494302355026,0.1251269572577232,0.1369576525791692,0.14831384077885,0.1592600513259195,0.1696376796031013,0.1825732407127756,0.194940605219804,0.205877547463701,0.2164441475088441,0.2266991414748118,0.2368132050983394,0.2474677459025557,0.2572590731372041,0.2650959800879675,0.2728252890438613,0.2788902795160617,0.2861362464250551,0.2925316125358829,0.2985621448906293,0.3039245512625494,0.3086380131829067,0.3130867478034168,0.318075177232621,0.3232813432642151,0.326894836413669,0.3264173866090712,0.3259951998675826,0.3252473847893695,0.3237233842095345,0.3225849731663685,0.3209143102760124,0.3192579085070958,0.319768302917606,0.3201376641610876,0.3210966542750929,0.3227647312796831,0.3247559717482739,0.3253166687707781,0.3274409829069428,0.3286652501448715,0.3294440093970243,0.3299822927971668,0.3341948498124625,0.3367715679051328,0.3392121116043119,0.3399372926796019,0.3414194915254237,0.3454431175361407,0.346812523576009,0.3476434904339711,0.3466635666124157,0.3452833054838219,0.352,0.3536388140161725,0.3519230769230769,0.0,2.52172860076258,57.19068831910735,175.82025045413698,263.8060242085831,fqhc4_100Compliance_implementation_low_initial_treat_cost,84 -100000,95722,44854,424.4060926432795,6156,63.15162658532,4874,50.291469045778406,1893,19.29545976891415,77.3612597271838,79.72483619604883,63.34108899169471,65.08816989593812,77.1261900286957,79.49594034939744,63.25372514175754,65.00643747073897,0.235069698488104,228.8958466513833,0.0873638499371693,81.73242519914936,151.37122,106.42417215420174,158136.06067570674,111180.25653057998,385.68699,252.9937252146255,402311.9241135789,263692.2363714833,370.71712,179.92788210926983,383683.6359457596,185112.44527432777,3194.77434,1448.4355397851368,3299134.45185015,1474928.0931651767,1137.0209,497.607505553698,1171055.8283362235,503089.1893314236,1858.64522,779.604536731611,1898039.405779236,776842.2409177357,0.38109,100000,0,688051,7188.00275798667,0,0.0,0,0.0,33310,347.3391696788617,0,0.0,34008,351.72687574434303,1620452,0,58101,0,0,0,0,0,48,0.4910052025657634,0,0.0,0,0.0,0,0.0,0.06156,0.1615366448870345,0.307504873294347,0.01893,0.324124093224263,0.675875906775737,24.72535439721853,4.360518132357419,0.3286828067295855,0.2332786212556422,0.2197373820270824,0.2183011899876897,11.177557723016744,5.702145256110449,20.192795668700217,12282.775539664732,55.01397216646444,13.483250544618716,18.0322435741446,11.832199131556942,11.666278916144178,0.5560114895363152,0.7704485488126649,0.6885143570536829,0.5788982259570495,0.1043233082706766,0.7282091917591125,0.9022556390977444,0.8463476070528967,0.7490196078431373,0.1516587677725118,0.4958471760797342,0.6991869918699187,0.6365145228215767,0.5257352941176471,0.0926143024618991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045421364263119,0.006788983377646,0.0088488382724954,0.0109630834943557,0.013431498340156,0.0156527236758917,0.0178077296165824,0.0199883443925281,0.0221744471744471,0.0244019972727179,0.0265803933651722,0.0289825261490676,0.0310694013783441,0.0332174146346497,0.0353254970071023,0.0374462797079687,0.0394238452518082,0.041636337166982,0.0434710123786104,0.057618411160304,0.0716065148216379,0.085032729103726,0.0977297342769114,0.1102901651612087,0.1261641243564942,0.1383398371224974,0.1501681065667957,0.1608655253067894,0.1712276639761606,0.1838677031071682,0.1964218109444126,0.2075664510518019,0.2171237443571217,0.2268015170670038,0.2369696567293008,0.2465325781563573,0.2555144786668614,0.2643714645233695,0.2716192089360923,0.2791014925028035,0.2856558669922537,0.2922944112012487,0.2984329546406809,0.3048897295069048,0.3109105219145063,0.3150058704504009,0.3192908882958444,0.3239332720754765,0.3281173723167047,0.3269649920619971,0.3259865889853798,0.3248156694996341,0.3236912412448552,0.3222826248403291,0.3213006337834114,0.3197824265136062,0.3207927608930854,0.3225459939640914,0.3233971957615327,0.3241770587574429,0.3244580817578937,0.3256418862225205,0.3262036871308394,0.3270332739442385,0.3284728755095641,0.3294733230399725,0.3321338383838383,0.3334153976013786,0.3370084381467919,0.3408324984060479,0.3434375495953023,0.3472109184248419,0.3484193768478508,0.3494493186484973,0.3534472598703594,0.3608231707317073,0.3665653495440729,0.3654978962131837,0.3712,0.0,2.405053390257059,55.124808773840925,180.62535783523268,274.5206542702648,fqhc4_100Compliance_implementation_low_initial_treat_cost,85 -100000,95647,44666,423.9861156126172,6019,61.62242412203205,4715,48.66854161656926,1867,19.070122429349585,77.2430810454354,79.6480131964734,63.27207635196621,65.0502832093376,77.00726625105007,79.41659536946048,63.18258717850508,64.965403402617,0.2358147943853339,231.41782701291905,0.089489173461132,84.87980672060758,150.25494,105.72457844255192,157093.20731439564,110536.22010366444,385.32275,253.07715986069496,402211.91464447393,263956.46557271737,369.497,180.10619684673276,383172.4466005207,185776.13807810112,3098.34302,1425.4292687598602,3199316.2775622862,1450876.8437736484,1137.865,511.4146999670216,1172515.583342917,517554.8422501704,1838.4351,785.0044801551874,1880578.1258168053,785248.2781154596,0.37901,100000,0,682977,7140.600332472529,0,0.0,0,0.0,33210,346.5451085763275,0,0.0,33824,350.4866854161657,1618391,0,58063,0,0,0,0,0,69,0.7109475467082083,0,0.0,1,0.010455110981003,0,0.0,0.06019,0.1588084747104298,0.3101844160159495,0.01867,0.323473584308763,0.676526415691237,24.46791041275344,4.439486731935662,0.3230116648992577,0.2303287380699894,0.2150583244962884,0.2316012725344644,11.095914951582206,5.544662695922298,20.114928846431063,12119.804880857224,53.6588770878733,13.0113634279754,17.306016052683088,11.25117887203992,12.090318735174892,0.5465535524920466,0.7799263351749539,0.6749835850295469,0.5769230769230769,0.1071428571428571,0.7370855821125675,0.9254807692307692,0.8663366336633663,0.7584745762711864,0.1742738589211618,0.4742539496781743,0.6895522388059702,0.6058981233243967,0.5218508997429306,0.0881316098707403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026451272904167,0.0049297060434544,0.0073195740231261,0.0096526077281825,0.0118905943262844,0.0139925658129232,0.0160999235279123,0.0181649240320209,0.0204208933246073,0.0223237143383783,0.0244385191262434,0.0264441591784338,0.0286210868402649,0.0304225990563122,0.0325350949628406,0.034630020267196,0.0365678058280588,0.0385801027557216,0.0404518457649861,0.0422027148189078,0.0569007137408169,0.070945981333864,0.0843167310599697,0.0968896373875059,0.1094183849069352,0.1250198519836102,0.1367417843368501,0.1478484305697714,0.1583841626538255,0.1684997422237497,0.1816317941966742,0.1931871157995164,0.2043332861297807,0.2141018478963337,0.2232400731970809,0.2332523275297668,0.2424544021113136,0.2516290500777886,0.2601621394217103,0.2680551891823697,0.2759599893366714,0.282856674396271,0.2893069095819661,0.2940202524355713,0.3010135176240129,0.3070342205323194,0.3114468405215647,0.3157377885473791,0.3206657924462159,0.3247777307366638,0.32354646850176,0.3217272689695082,0.321049882107106,0.3190607934875502,0.318014514134144,0.3157733067117186,0.3146247696511406,0.3157695223654284,0.3160654614000514,0.3166744344459183,0.317702249519575,0.3185161623792295,0.3195633426582251,0.320101484092593,0.3220187691491158,0.3228519770458297,0.3236222732491389,0.3276814751665561,0.3296315882249251,0.3349469893978796,0.3367773338843734,0.3394946311234574,0.3414742170199304,0.3420207887496178,0.3422302431610942,0.3447496729694375,0.3414558435511408,0.3442924239330202,0.346831955922865,0.3514033064206074,0.0,2.349123431961768,56.69224230146092,174.91780342916573,256.4604791559604,fqhc4_100Compliance_implementation_low_initial_treat_cost,86 -100000,95811,45006,426.66290926929054,6067,62.25798707872791,4764,49.07578461763263,1875,19.089666113494275,77.44904619750217,79.77575490812161,63.38601454967061,65.10708223342363,77.2234937483739,79.55459144737054,63.30282509697216,65.02855261094405,0.2255524491282727,221.1634607510717,0.0831894526984555,78.52962247957862,150.9596,106.24874890413253,157559.77914853202,110894.1028735036,388.03188,254.36299979451928,404352.55868324096,264839.4754198571,375.34824,182.1532215483878,387979.12557013286,187145.45611480385,3109.32879,1408.3971633875608,3205917.389443801,1430618.4920182023,1126.07936,491.70778985044734,1160541.065222156,498433.82268262224,1827.9611,754.6954259619184,1863782.425817495,751131.9935518628,0.38039,100000,0,686180,7161.80814311509,0,0.0,0,0.0,33397,347.89324816565943,0,0.0,34271,353.9050839673941,1624040,0,58229,0,0,0,0,0,80,0.8245399797518029,0,0.0,1,0.0104372149335671,0,0.0,0.06067,0.1594942033176477,0.3090489533542113,0.01875,0.3274972643426606,0.6725027356573394,24.639745858557983,4.406858071825578,0.3217884130982368,0.2371956339210747,0.2319479429051217,0.2090680100755667,11.327387069624308,5.8751597509823394,19.714568458772177,12191.106217884717,53.69526243461464,13.465921036301946,17.22203699826224,12.199561603080875,10.807742796969572,0.56696053736356,0.7902654867256638,0.6934116112198304,0.5656108597285068,0.1204819277108433,0.7392,0.927360774818402,0.8629032258064516,0.7396226415094339,0.12,0.5056915196357428,0.7112970711297071,0.6391042204995694,0.5107142857142857,0.1206030150753768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090244371752,0.0044702137796113,0.006564995484663,0.0084923964608242,0.0105148621576822,0.0126663476321871,0.0148037886279987,0.0171261188622051,0.0191517629024016,0.0215796420787672,0.0236409284213762,0.0258415435139573,0.0275801809210526,0.0299813646051046,0.0320654303925411,0.0340933745208847,0.0360292291131903,0.0381177544121611,0.0404164242373867,0.042224489371005,0.0574471636310529,0.0712545612329182,0.0848845009013541,0.0978092986603624,0.1100726019746894,0.1252430672979371,0.1364503614508914,0.1481572063546075,0.1594051378339165,0.169456313382808,0.1816461277071639,0.1936696553959166,0.2058341385037942,0.2170307487506274,0.2271764305550981,0.2367295514074467,0.2461139319437021,0.2553415926025675,0.2629225945921474,0.2704073473304242,0.2769154424068966,0.2838045912653975,0.2902407662997959,0.2966821586876784,0.3022816451097224,0.3077867996609628,0.312913804067281,0.3173226849210876,0.3218884673943898,0.3257605637506245,0.3244606633036385,0.3234785947398733,0.3226499024739346,0.322324282300095,0.3222271517302573,0.3208697109597598,0.3178327510779593,0.3188516965058019,0.3188806679337496,0.3191787628207403,0.3204858329762858,0.3217596229379418,0.3224199733244415,0.3229291984137593,0.3247114048953394,0.3259096206137511,0.3277703793953475,0.3310945895289267,0.3345112308445875,0.3368823691785954,0.3404853708323883,0.342728476821192,0.3466926314466989,0.3514292213207976,0.3576196295948106,0.3627046766403581,0.3635809059020893,0.3673842404549147,0.3753093208688479,0.3808437856328392,0.0,2.48310400759884,54.51717786008114,175.98058632562623,264.5492056674104,fqhc4_100Compliance_implementation_low_initial_treat_cost,87 -100000,95802,45205,427.98688962652136,6080,62.26383582806204,4725,48.673305358969536,1885,19.237594204713886,77.3497797498425,79.6835880274197,63.33168066437421,65.06022024639819,77.1166933775818,79.45406945467542,63.24544747796666,64.97802749172648,0.2330863722607006,229.5185727442828,0.0862331864075542,82.19275467170917,151.03022,106.26654398517547,157648.29544268386,110923.095535767,383.90334,251.2835727832768,400086.28212354647,261655.17711872063,374.31134,181.80926996944584,386973.6539946974,186756.61498973545,3096.58787,1409.129562808405,3192771.643598255,1431369.6820613404,1140.97481,498.9352848791207,1177195.3195131626,507032.57970933226,1848.5948,769.8948630978912,1890025.427444104,770982.1356791124,0.38247,100000,0,686501,7165.831611031084,0,0.0,0,0.0,33094,344.76315734535814,0,0.0,34141,352.581365733492,1620638,0,58169,0,0,0,0,0,73,0.76198826746832,0,0.0,0,0.0,0,0.0,0.0608,0.1589667163437655,0.3100328947368421,0.01885,0.333960194326908,0.666039805673092,24.680657848582165,4.470757490986397,0.3293121693121693,0.2226455026455026,0.2224338624338624,0.2256084656084656,11.364153628653892,5.8135240349098485,19.92990119723074,12271.131762186618,53.347272096759085,12.333814326942782,17.67653635493854,11.662830186623404,11.674091228254357,0.5555555555555556,0.7699619771863118,0.6940874035989717,0.5861084681255947,0.1116322701688555,0.7182186234817813,0.9344729344729344,0.8450363196125908,0.759493670886076,0.1282051282051282,0.4979942693409742,0.6875891583452212,0.6395450568678915,0.5356265356265356,0.1069711538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0047350117107891,0.0066880467655834,0.0087575816070467,0.0109754857084731,0.0130746906980296,0.0152222675367047,0.0174657778957361,0.0195733720371638,0.0217916436365125,0.0241824705279343,0.0263876624843419,0.0286157895819195,0.030748002306615,0.0329575111147787,0.0349042664214344,0.0366751203353863,0.0389283047050037,0.0408960558580275,0.0430731108010744,0.0569628176772524,0.0708646596886012,0.0846242532229326,0.0980043926480942,0.1105946584034233,0.1265660848143958,0.1374826317073429,0.1496668866137374,0.1603366514290596,0.1708907599077599,0.1842023036062535,0.1965694497051025,0.2071808481710699,0.2181170272072407,0.2276687494499692,0.2378008243584629,0.2477847465571502,0.2571415718205947,0.2654056936675252,0.2736504665407293,0.2802827002267154,0.2873393894754071,0.293909608128408,0.2998862479794049,0.3054530445760901,0.3102934476091962,0.3145214727761455,0.3193616074267184,0.3238871635610766,0.3278844250940035,0.3265586488342963,0.3249741788886593,0.3239365150959885,0.3237193409202791,0.323829496103278,0.3223715463475183,0.3202059405940594,0.3201970443349753,0.3208827652227426,0.3205439794131313,0.3210924905334983,0.3209920493651358,0.3214203414685241,0.3219793482633767,0.3230466027351167,0.3244743218947862,0.325508607198748,0.3289152096258695,0.3320191200586162,0.3364585385069923,0.3393788256631149,0.341776837652036,0.3433962264150943,0.3471181776486776,0.3445133408493048,0.3454566854990584,0.3462713936430318,0.3463238248292486,0.3480272108843537,0.3502321981424148,0.0,2.4506507955014745,53.91292471363701,173.37167597886778,266.1030437627897,fqhc4_100Compliance_implementation_low_initial_treat_cost,88 -100000,95801,44997,426.6552541205207,6124,62.74464775941796,4840,49.94728656277074,1968,20.16680410434129,77.41775944651599,79.74466350177588,63.37436231324406,65.09469197983053,77.17079176200527,79.4979312538112,63.282786775480055,65.0052508027519,0.2469676845107216,246.73224796467247,0.0915755377640081,89.44117707862631,151.756,106.76071508052964,158407.53228045636,111440.08421679278,388.6163,254.11606980381768,405100.8548971305,264705.42040669493,368.68013,178.8417328425837,380961.4617801485,183774.05345902915,3240.9697,1468.399286676409,3347496.4770722645,1497233.522276813,1196.27906,520.8861989701728,1235320.1949875264,530324.5675621057,1949.15014,818.7397014631642,1999335.9985803904,826456.3161702908,0.38278,100000,0,689800,7200.34237638438,0,0.0,0,0.0,33420,348.2635880627551,0,0.0,33702,347.8669324954854,1619722,0,58134,0,0,0,0,0,72,0.7515579169319736,0,0.0,0,0.0,0,0.0,0.06124,0.1599874601598829,0.3213585891574134,0.01968,0.329608938547486,0.6703910614525139,24.61345650224228,4.394770837061106,0.3200413223140496,0.2208677685950413,0.2157024793388429,0.2433884297520661,10.941180009663904,5.505374610485114,20.98104869189589,12221.448249289955,54.6065584812712,12.703274197687476,17.406216694093484,11.597318432560964,12.899749156929282,0.5487603305785124,0.7857811038353602,0.7023886378308586,0.578544061302682,0.1052631578947368,0.7133706965572458,0.9264305177111716,0.8765432098765432,0.7025862068965517,0.1346938775510204,0.491506544138123,0.7122507122507122,0.6407342657342657,0.5431034482758621,0.097534833869239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377707348191,0.0048148561118263,0.0069710099339428,0.0090491763319859,0.0111547221996258,0.0132741561138482,0.0152278055244113,0.0173409814648485,0.0193789734050164,0.0216973021656363,0.0240364903649036,0.025960294812047,0.0279699433611216,0.0299991764124526,0.0321290109708818,0.034176469980686,0.0361995632871438,0.0380360974901773,0.0402846309666026,0.0422661308792604,0.056828377673448,0.0704690619805768,0.083906335164144,0.096394021196811,0.109087845309686,0.1246962621759249,0.1373608330420228,0.1490750584733149,0.1601062751416468,0.1703591018169352,0.1827362579451716,0.1952160243736427,0.2073971918470175,0.217108352169118,0.2277106977664004,0.2378892637867138,0.2481690800254155,0.2569265843824755,0.2652589605328742,0.2715939244212645,0.2785114323015955,0.2854557343359566,0.2922202931415276,0.2976375691136695,0.3026093918697609,0.3080332409972299,0.3119861045160323,0.3171791613722999,0.3219070032067859,0.3265023903910232,0.3249805175610674,0.3240946960323352,0.3231912408348227,0.3224344261111833,0.3220988240883715,0.3199099664671025,0.3182846386256861,0.3183018651268844,0.3201179498542671,0.3211058232180097,0.3205639498960849,0.3218605934039954,0.3231335172644428,0.3231670639606122,0.3243405563830298,0.3268695176865613,0.3282609932305592,0.3317126725219573,0.3336365863046293,0.3371333570834818,0.3391754449691246,0.3427617988240902,0.3462384513858337,0.3506139154160982,0.3519301211608904,0.3566259342745284,0.3634820188300663,0.3624418839700828,0.3682349741637204,0.3681992337164751,0.0,2.22431713569248,54.682393454583256,180.70579298668983,271.4211084810956,fqhc4_100Compliance_implementation_low_initial_treat_cost,89 -100000,95714,44434,420.41916543034455,6072,62.09123012307499,4746,48.92701172242305,1903,19.41199824477088,77.3893283971574,79.74983318393355,63.35181630130408,65.0933625227622,77.1529352381021,79.51900895993252,63.26265755778911,65.0099030766808,0.2363931590552965,230.82422400102587,0.0891587435149645,83.45944608140599,151.34944,106.3940068270823,158126.752617172,111158.24939620358,380.85214,250.02781213345477,397228.1797856113,260545.6381861115,368.64216,179.82690779932025,381733.7484589506,185237.41550536832,3141.83099,1437.0431921013776,3240632.916814677,1459506.0201238866,1147.12574,507.4541785631211,1182625.875002612,514314.2506262759,1868.42604,788.2735757183588,1908721.6708109577,784572.0923846225,0.3784,100000,0,687952,7187.579664416909,0,0.0,0,0.0,32808,342.05027477693966,0,0.0,33729,348.9667133334726,1622160,0,58171,0,0,0,0,0,65,0.6686587124140669,0,0.0,1,0.0104477923814697,0,0.0,0.06072,0.1604651162790697,0.3134057971014493,0.01903,0.3364105773744328,0.6635894226255672,24.88997456022875,4.377553761441273,0.3244837758112094,0.2229245680573114,0.2231352718078381,0.2294563843236409,11.341234740174222,5.921594341667572,20.21580350776637,12147.910530088238,53.46914407808754,12.61099482336659,17.26882199890179,11.635363907706306,11.953963348112843,0.5476190476190477,0.8071833648393195,0.675974025974026,0.5429650613786591,0.1184573002754821,0.716078431372549,0.94,0.841025641025641,0.6719367588932806,0.168103448275862,0.4857389801210026,0.7264437689969605,0.62,0.5024813895781638,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026130022180135,0.0048851186313559,0.006887597253076,0.0089152442553537,0.0112947826440567,0.0135170897542902,0.0158568400456546,0.018213914001755,0.0204767694932919,0.0227875042208556,0.0251870068654575,0.0275680223252759,0.0294084402840144,0.0312921388794532,0.0332594235033259,0.035425299947296,0.0373430236771541,0.0389821893509538,0.040683956135336,0.0428178522315289,0.0575716120677951,0.0716617831728756,0.0845562397071318,0.0976887000778144,0.1102513283292569,0.1255116394673661,0.1375575499119513,0.1488559777690235,0.159004220310914,0.1688024793299803,0.1810476662287031,0.193372855319241,0.2045575620522075,0.2148770272191419,0.2245903984331158,0.2352263410959207,0.2444017771427295,0.2536982664551764,0.2616432137993645,0.268639446430208,0.2762716569128634,0.2832608492330714,0.2897073603310671,0.2953897736797988,0.3007236698317103,0.3060611284880427,0.3103651059783289,0.314691449057947,0.3188206973312971,0.3229424790425476,0.3231029710154665,0.3217842865189377,0.3205455975726246,0.3199388008429318,0.3186927251697856,0.3170433720219914,0.3145525095428877,0.3149650075217476,0.3163432073544433,0.3176946086461078,0.3188313750396951,0.3208287336382274,0.3216085656329074,0.3218924347243919,0.3235025697680004,0.3238965150374964,0.3248481752653385,0.3276530548433494,0.3285071346334996,0.3307592293447854,0.3331066068108647,0.3368493586345807,0.3402528779014908,0.3412974444276425,0.3452414439756212,0.3450920245398773,0.3494925011361915,0.355084067253803,0.3578363384188627,0.3651468315301391,0.0,2.4458292405261486,55.52421174006893,171.8363823272024,262.84150271858505,fqhc4_100Compliance_implementation_low_initial_treat_cost,90 -100000,95675,44806,424.4996080480794,6003,61.59393781029527,4707,48.63339430363209,1886,19.346746799059314,77.35982293729873,79.73573677805412,63.33991942654043,65.09007257525343,77.12658287807761,79.50383538380397,63.25321544912673,65.00637767474339,0.2332400592211172,231.90139425014425,0.0867039774137055,83.69490051003936,150.82034,106.1539931948769,157638.19179513978,110952.6973555024,384.8759,252.38776800203792,401724.1912725372,263246.9171696242,371.35951,180.862647942534,384760.2090410243,186355.24248864112,3097.65189,1416.5600156488997,3202135.709432976,1445049.8726406083,1132.62895,500.2534983997444,1166416.441076561,505454.9676357237,1856.1777,777.1537000038861,1906748.534099817,783141.3662193372,0.3797,100000,0,685547,7165.372354324536,0,0.0,0,0.0,33166,346.0674157303371,0,0.0,33934,351.28298928664753,1620537,0,58098,0,0,0,0,0,81,0.8466161484191272,0,0.0,3,0.0313561536451528,0,0.0,0.06003,0.1580984988148538,0.3141762452107279,0.01886,0.3329621380846325,0.6670378619153675,24.521132654510467,4.322808256079245,0.3235606543445931,0.2292330571489271,0.2164860845549182,0.2307202039515615,11.101370963709051,5.703863553331397,20.009062680766103,12169.767207600633,53.09045818685888,12.745530410874736,17.10369514881153,11.365079551996306,11.876153075176305,0.5629912895687275,0.7859128822984245,0.7038739330269206,0.6045142296368989,0.1049723756906077,0.7323717948717948,0.9361702127659576,0.8733850129198967,0.7325581395348837,0.1541850220264317,0.501879155825383,0.705547652916074,0.6461267605633803,0.5611038107752957,0.0919674039580908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023595414590675,0.0045408013298061,0.0067163800537716,0.0090999573439499,0.0115096795184642,0.013598656420174,0.0157225975402235,0.0180182018528343,0.0201331998610799,0.0223627138063671,0.0243202819267728,0.0266427289048473,0.0287273624272822,0.0306421886100843,0.0325638486611379,0.034726887499354,0.0366263962648943,0.0387064655977099,0.0408258740604435,0.042791337515893,0.0580965315503552,0.0721742317156169,0.0853520298921029,0.0984638047138047,0.1101805754788625,0.125534346298726,0.1372861206640343,0.1488858591453283,0.1594492607993842,0.1701547642046064,0.1838869912829851,0.1957533890597254,0.2068050009248882,0.2165267731097954,0.2259048416045454,0.2354283435610004,0.2445567868581695,0.2536477888441736,0.2622644077022522,0.2694090581327473,0.2761029199190517,0.282484884632027,0.2887277287461846,0.2950664591066938,0.3005822416302766,0.3062219213490061,0.3113338415586688,0.3153722032347821,0.3198541297572709,0.3238819945402033,0.3224821836762135,0.3217266938955127,0.3212177563641998,0.319702548552451,0.3196024623600089,0.3185239581420965,0.3168381072954581,0.3167887527510429,0.3168135535210062,0.3174464129288306,0.3187696806117859,0.3190164647283221,0.3204499748617396,0.3211244944021095,0.3229176674032087,0.3241725384155378,0.3255305867665418,0.3282220131702728,0.3329253793971606,0.3366062237706865,0.3405434881395983,0.3439778593858108,0.3464731605298181,0.3510907003444317,0.3500613149702858,0.3505130040563111,0.3533742331288343,0.3567251461988304,0.3631706659476948,0.3605051664753157,0.0,2.1915011335727943,54.596877169411606,169.48577427248026,266.0964453378358,fqhc4_100Compliance_implementation_low_initial_treat_cost,91 -100000,95872,44463,420.3938584779706,5969,61.237900534045394,4654,48.1579606141522,1875,19.254839786381844,77.34109898624328,79.6320857632759,63.34986309044478,65.0441497236138,77.1167003472589,79.40648515541123,63.26836792111931,64.9639407628083,0.2243986389843826,225.60060786466352,0.0814951693254713,80.20896080549278,152.20084,107.07575821674766,158754.21395193593,111686.1630264808,383.58758,251.5114147491732,399688.10497329774,261927.5321643076,363.59194,176.56714677827625,377000.3963618158,182403.37509546283,3088.81804,1393.3409309473705,3196214.442172897,1427904.7665532469,1126.8934,492.347234800904,1164353.7633511347,502550.97448201646,1842.84844,757.190716289597,1893551.2558411213,766024.7309369306,0.37904,100000,0,691822,7216.100634178905,0,0.0,0,0.0,33050,344.29238985313754,0,0.0,33188,343.8960280373832,1617876,0,58066,0,0,0,0,0,84,0.8761682242990654,0,0.0,1,0.0104305740987983,0,0.0,0.05969,0.1574767834529337,0.3141229686714692,0.01875,0.3197758206565252,0.6802241793434748,24.77984260658764,4.408385400023865,0.324881822088526,0.2221744735711216,0.217877094972067,0.2350666093682853,10.929097959022954,5.502384050886174,19.80074889381676,12126.389896482897,52.55338763396003,12.369644562792969,16.99817114993487,11.371014692909414,11.814557228322784,0.5504941985388913,0.7852998065764023,0.6686507936507936,0.5986193293885601,0.1206581352833638,0.7267441860465116,0.913279132791328,0.8337730870712401,0.7948717948717948,0.1621621621621621,0.4889855072463768,0.7142857142857143,0.6134157105030892,0.5397435897435897,0.110091743119266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022378613741076,0.0044279620228794,0.0067451744109383,0.0090766950271082,0.011099140121562,0.0134026703574045,0.0155567101684036,0.0174955368528436,0.0195902191898351,0.0215636731896437,0.023989265264732,0.026245346297037,0.0283167116871912,0.0301867380009259,0.0322823286965481,0.0343372001816455,0.0363653283426219,0.0384065478657273,0.040508273986255,0.0426021098187719,0.0574214066002815,0.0706761417075974,0.0840665325959443,0.0961112336305304,0.1080867642413393,0.123494993874361,0.1357916145844367,0.147115415280273,0.15803849600956,0.16806506574083,0.1807529669998601,0.1928616222995912,0.2043172035998434,0.2142646367719865,0.223951687420249,0.2339225980815666,0.2437255995538204,0.252330772950663,0.2604419538534837,0.2688503194193208,0.2764222941720629,0.2842346449697224,0.2909305900437507,0.2967127716903179,0.3021801937410474,0.3069178824921135,0.3125328330206379,0.3163616942816088,0.319936876689648,0.3234894369449613,0.3228333737177934,0.3218926611938451,0.3203347327491476,0.3204855534817772,0.3199625061373882,0.3180487206610556,0.3153782764413172,0.3166836617216539,0.3176002469728672,0.317432970819425,0.3181381686719765,0.3200611341577182,0.3218719750852237,0.3218470950763625,0.3232829603797346,0.3249442330402834,0.3252083751038295,0.3285375494071146,0.3317980451445046,0.3348448687350835,0.3371986851716581,0.3394759267149552,0.3406204587097997,0.3427047619047619,0.344889646679928,0.3470749434052186,0.3492624462200369,0.353582240161453,0.3545554335894621,0.3650248186330661,0.0,1.4390864524150302,53.49693357277566,173.4608650947714,261.3240336694945,fqhc4_100Compliance_implementation_low_initial_treat_cost,92 -100000,95651,45206,428.0457078336871,6114,62.71758789766965,4760,49.26242276609759,1923,19.790697431286656,77.31769350596971,79.74065894361165,63.289715480586615,65.08170752848349,77.07223700635433,79.49415883454823,63.19871865005789,64.99250911469291,0.2454564996153863,246.5001090634189,0.0909968305287307,89.19841379058369,151.4172,106.4894278600622,158301.74279411611,111331.22273688953,384.55059,252.60736033163224,401547.113987308,263604.77185981564,373.9691,182.0280659122357,387913.78030548553,187922.87142879068,3148.79114,1444.180790201217,3259359.839416211,1477245.3295848616,1147.89259,509.3693108525232,1184727.6139298074,517172.356642924,1893.7882,797.7672970799264,1949765.0416618749,806854.241545175,0.38229,100000,0,688260,7195.533763368914,0,0.0,0,0.0,33122,345.7674253274927,0,0.0,34221,354.69571672015974,1614636,0,57927,0,0,0,0,0,74,0.7736458583809892,0,0.0,0,0.0,0,0.0,0.06114,0.1599309424782233,0.3145240431795878,0.01923,0.326351984995311,0.673648015004689,24.433416453963883,4.421158569099863,0.3165966386554621,0.2313025210084033,0.2184873949579832,0.2336134453781512,11.41107447472976,5.8702433460705805,20.441928086234608,12260.761481031675,54.04142375885591,13.178582942804235,16.969206213228322,11.687942583133507,12.205692019689844,0.559453781512605,0.7720254314259763,0.7126741871267419,0.5788461538461539,0.1232014388489208,0.7146207974980453,0.8880597014925373,0.8756345177664975,0.6944444444444444,0.1601731601731601,0.5024418270611893,0.7052932761087267,0.6549865229110512,0.5418781725888325,0.1135073779795686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110543804198,0.0046748874376343,0.0070862944162436,0.0094818036768666,0.0118225197635496,0.0142318663406682,0.0164446167343357,0.0186556871238978,0.0210105103722125,0.0233399618688369,0.0255094184673818,0.0276383976309944,0.0293687570796004,0.0313596038786878,0.0332589424090261,0.0351828473271383,0.0374187394374228,0.0396368697675384,0.0416783740751147,0.0436437584732505,0.05809505894156,0.0723835869064084,0.0857307914500288,0.0978576845298281,0.1104586690886816,0.1257652466795178,0.1381307656336351,0.1490432279729225,0.1597928769350921,0.1703924117261604,0.1829548519337612,0.1955046925461126,0.2068871603808527,0.2163393610146657,0.2258629810871577,0.2366240307067659,0.2462640691189127,0.2557243740637706,0.2643896124541542,0.2722605486924434,0.2795627959753146,0.2862810265532293,0.2924804282685679,0.2983710385528872,0.3038100913303093,0.3083731939444746,0.3138287888078285,0.3180696218637081,0.3225505564120169,0.3278326815347215,0.3267506908404664,0.3258685239222595,0.3246709321006792,0.3237949414262809,0.3220341499628805,0.3204866910829489,0.3183078507486334,0.318744053282588,0.3191460313667935,0.3200099702672387,0.320578898225957,0.3213230950974601,0.3216426608941803,0.321066441341279,0.322880788365863,0.3247936458495561,0.3253675427144236,0.3281982376101494,0.3312128626354421,0.3353404904329913,0.3379105839416058,0.3399287271953619,0.343046357615894,0.3450559488467686,0.3491854223561541,0.3484650942278061,0.3527428746552252,0.3525756664662257,0.3550328227571116,0.3570342205323193,0.0,1.9962804176111355,56.25795203186647,180.74715347993964,257.34080630936097,fqhc4_100Compliance_implementation_low_initial_treat_cost,93 -100000,95721,44953,425.7164049686066,6092,62.54635868827112,4752,49.16371538115983,1889,19.368790547528757,77.34880342590687,79.70511081605183,63.338894218876014,65.076698437784,77.11002691562484,79.46967638207408,63.24981278242306,64.99139099260947,0.2387765102820225,235.4344339777441,0.0890814364529575,85.3074451745357,151.12658,106.27403771736228,157882.36646086018,111024.78841357934,383.25931,251.0052508626868,399909.65409889154,261743.7063781074,368.14882,178.9620898975163,382197.1145307717,184978.07529666295,3125.53028,1426.8068624614823,3236857.3458279795,1462222.2386327186,1127.22032,496.7761283370536,1166789.461037808,508181.2894318746,1853.48564,780.839168026793,1903945.132207144,786773.6852514697,0.38219,100000,0,686939,7176.471202766373,0,0.0,0,0.0,33026,344.5116536601164,0,0.0,33696,349.62025051973967,1621556,0,58211,0,0,0,0,0,76,0.7939741540518799,0,0.0,0,0.0,0,0.0,0.06092,0.1593971584813836,0.3100787918581746,0.01889,0.3382858930247107,0.6617141069752893,24.473422801922435,4.381319559856291,0.3152356902356902,0.2335858585858586,0.2274831649831649,0.2236952861952862,11.11628555968139,5.640683492896516,20.1165656995789,12242.66893195592,53.78581702817222,13.33062542718472,16.927501652687223,11.868906321017354,11.658783627282926,0.5549242424242424,0.7918918918918919,0.6915887850467289,0.5642923219241444,0.1053621825023518,0.714968152866242,0.9210526315789472,0.859375,0.6752136752136753,0.1136363636363636,0.4974256292906178,0.7138728323699421,0.6337522441651705,0.5336481700118064,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974015979261,0.0043384827474354,0.0068895540561108,0.0092239864281433,0.0113978363429315,0.0132641115691963,0.015850041281458,0.0178013677656425,0.0199376628685299,0.0219640755334936,0.0240760100854805,0.026376558731462,0.0284374807229658,0.0304630716330018,0.0324933208173875,0.0345315712794866,0.0368805781615622,0.0389080835434369,0.0408413653992118,0.0430746147353943,0.057666200213037,0.0714173582694058,0.0843815898528069,0.0974665432202676,0.109160909234745,0.1243044830431379,0.1367586667940024,0.1484083892260193,0.1595923120479482,0.1701082350921982,0.1828640368830385,0.1946827964551976,0.2054015249573077,0.2156693318166406,0.2256005634236792,0.2350666046058027,0.2447518071212307,0.2545886539197802,0.2638207504315435,0.2725814398496671,0.2789270788715111,0.2855956197206168,0.2924227896350486,0.2982063048922225,0.3036625054646136,0.308871891512397,0.3140217989100545,0.3191194600846477,0.3234814987200372,0.3274476215575174,0.3261791024692189,0.3251368374728388,0.3246326999197081,0.3236548105967539,0.322702887458947,0.3211224052415651,0.3200411424954505,0.3198989965239063,0.3206993102506317,0.3210568597697045,0.3211017757901236,0.3215843381816028,0.3232308432927978,0.3254357115690091,0.3269244651923864,0.3287032210987178,0.3325244104379604,0.3363344456336964,0.340118625627347,0.342634858889374,0.3471519131664158,0.3489118228971712,0.3519674009932509,0.3553006390022326,0.3537279453614115,0.3601918465227818,0.3611544461778471,0.3677874636778746,0.3642235327155293,0.3630697312037397,0.0,1.8628149975008252,55.14823409289043,177.92419604268682,263.25709109821014,fqhc4_100Compliance_implementation_low_initial_treat_cost,94 -100000,95629,44709,423.7312949000826,6041,62.00002091415784,4785,49.37832665823129,1885,19.28285352769557,77.26744378178137,79.68238019428496,63.28338998351626,65.06921890094759,77.03229027114931,79.45002049984141,63.19541074429401,64.98515917857664,0.2351535106320597,232.3596944435451,0.0879792392222498,84.05972237095227,151.73224,106.69196030667877,158667.60083238347,111568.62490110612,383.15752,250.903066151194,400034.6756736973,261735.14953747703,369.60428,180.05073892494775,382507.1160422048,185167.28314679465,3163.2138,1439.530168705733,3270544.3014148427,1468074.7249325346,1138.91282,498.8855901514663,1177336.1323447907,508054.6070245067,1844.32254,772.8656424461586,1889862.0293007356,774930.4277080348,0.38026,100000,0,689692,7212.163674199249,0,0.0,0,0.0,33116,345.6169153708603,0,0.0,33806,349.4442062554246,1614182,0,57960,0,0,0,0,0,69,0.7110813665310731,0,0.0,2,0.0209141578391492,0,0.0,0.06041,0.1588649871140798,0.3120344313855322,0.01885,0.3263307534354762,0.6736692465645238,24.47976261880516,4.395289807269788,0.3243469174503657,0.2296760710553814,0.2171368861024033,0.2288401253918495,11.202506874828156,5.791102479591573,20.095328652292885,12191.094468688832,54.15613616130538,13.157556179420837,17.692131387286302,11.503576555566008,11.802872039032236,0.561546499477534,0.7843494085532302,0.7126288659793815,0.5697786333012512,0.1159817351598173,0.7524904214559387,0.9334916864608076,0.8797169811320755,0.7695473251028807,0.1336405529953917,0.4899425287356322,0.6917404129793511,0.649822695035461,0.5087939698492462,0.1116173120728929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784505643706,0.0046035286960048,0.0069444444444444,0.0092573774489878,0.0114650199900304,0.0133621216441927,0.0156004649550339,0.0176112058316062,0.0200106341642978,0.0223041474654377,0.0245118148999015,0.0268113038922617,0.028825084613248,0.0308706852138073,0.03306151940545,0.0350260524356959,0.0368087993122948,0.0384252099270315,0.0406624156117046,0.0429156804887966,0.0579646526406003,0.0723330714846818,0.0854835491425391,0.0981814735645013,0.1101116952767044,0.1252356043118236,0.1378761005554552,0.1484745473726836,0.1590865333190715,0.1691063546443568,0.1822289806306889,0.194750468514727,0.2063193182189231,0.2164392256426531,0.2266637309407166,0.2371899269895082,0.2461186450136726,0.2549937542904086,0.2627150400272526,0.2703712618777438,0.2767556301742604,0.2833142242085312,0.2898871615141433,0.2960546045607763,0.3014896333677874,0.3063992594878124,0.3109455228553537,0.3154994464028914,0.3204571665522022,0.3249534081446528,0.3238309813550633,0.3234301147873059,0.3223426168909958,0.3213691053614606,0.3208471723685974,0.3194802405498281,0.3176789880489469,0.317658270485204,0.3187654954261776,0.319289594053745,0.3199992494887141,0.3206615503599262,0.3218180672004034,0.3224246765456418,0.3241419205553413,0.3250765085925035,0.3263593549307835,0.3301744222656004,0.3333216032656508,0.3345171588188348,0.3374281113411548,0.3423588308122948,0.3442068305138844,0.3456771114019555,0.3469947941315665,0.3468873695573947,0.350651364764268,0.3532072368421052,0.3534923339011925,0.3488372093023256,0.0,2.5753841840297262,56.81137117673956,172.81266981981435,264.9240188116186,fqhc4_100Compliance_implementation_low_initial_treat_cost,95 -100000,95834,44818,423.8057474382787,6143,62.806519606820125,4755,48.98052883110378,1882,19.18943172569234,77.40182060844235,79.71366989809766,63.36325590393732,65.07489028921292,77.16558101632948,79.48284976886112,63.273920097023385,64.99077391734022,0.2362395921128666,230.82012923654813,0.0893358069139367,84.11637187269605,150.8474,106.1073151636408,157404.8876181731,110719.90646705846,384.06743,252.5886138739548,400123.9121814805,262929.5801844385,369.38866,179.58322800577216,381660.6736648789,184494.9735895749,3123.64528,1431.3630029618305,3217583.6550702257,1451736.1718824524,1129.56773,500.2962708899279,1162535.8640983368,505909.3441679652,1846.82856,782.0637596562998,1884709.122023499,779624.8424740173,0.38217,100000,0,685670,7154.767619007867,0,0.0,0,0.0,33163,345.36803222238456,0,0.0,33818,349.1036584093328,1622896,0,58253,0,0,0,0,0,64,0.6678214412421478,0,0.0,1,0.0104347100194085,0,0.0,0.06143,0.1607399848235078,0.3063649682565522,0.01882,0.3236886894630976,0.6763113105369024,24.648580497932038,4.331187512969343,0.3226077812828601,0.2407991587802313,0.2138801261829653,0.2227129337539432,11.00853055227446,5.56246700578368,19.9410550659974,12306.053159683182,53.76290111043412,13.568221703879564,17.47339867402278,11.286049492822675,11.435231239709095,0.5549947423764459,0.7650655021834061,0.6923076923076923,0.5801376597836775,0.1048158640226629,0.7229199372056515,0.909952606635071,0.8312655086848635,0.7253218884120172,0.1527777777777778,0.4935363401321459,0.6804979253112033,0.6427939876215738,0.5369897959183674,0.092526690391459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021567872982441,0.0043377352562608,0.0064521365093535,0.0086230537188823,0.0110917945120525,0.0133250539517081,0.015614330122815,0.0176668707899571,0.019778400147188,0.0219952304432821,0.0243247398903182,0.0265221496900275,0.0287608572750167,0.0308786886596239,0.0331284293906514,0.0351928581023134,0.036974929093431,0.0388958594730238,0.0409668338994318,0.0430357087101776,0.057249241231135,0.0715809061827001,0.0852038143141569,0.0975881339552082,0.1102439332659251,0.1257644412053614,0.1377249949677405,0.1490549188867391,0.1601609614994609,0.1710361378660124,0.1837595343883468,0.1969325219684605,0.2083392195429403,0.2184627826410063,0.2283502660861151,0.2390300614515861,0.2477131765650796,0.2570348876442405,0.2660880417517585,0.2738336481767703,0.2805797839113434,0.2868619540431503,0.2937822363128756,0.2999568614293246,0.305799776558022,0.3101409283532078,0.3145312617278391,0.3195087219651121,0.3242690815006468,0.328472927186194,0.3276216863256714,0.3271525181438311,0.3259558192837156,0.3245989536040126,0.3231729002430206,0.3226176281757315,0.3220237249048318,0.3222029346259662,0.322847399829497,0.3238814477058991,0.3254592685342652,0.3265997910959579,0.3273050015662525,0.3278929765886287,0.3290708812260536,0.329964405414534,0.3311386082415711,0.3330938173638664,0.3345200698080279,0.3390239083185141,0.3406778121024895,0.3411140583554377,0.3407992973210365,0.3427706283118849,0.3414996288047513,0.344329654848556,0.3517251861985104,0.350434255705918,0.3618241398143091,0.3728170083523158,0.0,2.438745245102678,55.44658082298879,176.4306013796063,260.9461872480801,fqhc4_100Compliance_implementation_low_initial_treat_cost,96 -100000,95696,44918,425.86941982946,5986,61.32962715265006,4707,48.60182243771945,1896,19.44699882962715,77.32145341825886,79.70744675648857,63.3143933609397,65.07968883604111,77.08350518777652,79.47212884871495,63.22617175012631,64.99529965402232,0.2379482304823312,235.31790777362005,0.0882216108133846,84.3891820187963,151.69374,106.75865734069616,158516.28072228722,111560.20872418508,388.6228,255.07738769545796,405506.2489550243,265954.5306966414,373.93653,181.8234809836488,387124.09087109176,187254.6469402094,3139.52563,1431.8036697021323,3243142.827286407,1458614.779825835,1143.77731,507.5427002271649,1181074.454522655,516236.4958063125,1866.99454,778.6060233764445,1916338.990135429,783533.1964992359,0.38087,100000,0,689517,7205.285487376693,0,0.0,0,0.0,33485,349.31449590369505,0,0.0,34202,353.7974418993479,1614642,0,57911,0,0,0,0,0,78,0.8046313325530848,0,0.0,0,0.0,0,0.0,0.05986,0.1571664872528684,0.3167390578015369,0.01896,0.3331737673528004,0.6668262326471996,24.49819584013495,4.430853299758757,0.3144253239855534,0.2258338644571914,0.2245591671977905,0.2351816443594646,11.145644747575876,5.753216718927898,20.15343736224117,12216.447143558124,53.29892253686289,12.580873373598472,16.914745696858066,11.816452493253983,11.98685097315238,0.5595920968769917,0.7648165569143932,0.7148648648648649,0.5912961210974456,0.1246612466124661,0.7423167848699763,0.9151670951156812,0.8613861386138614,0.749034749034749,0.2027649769585253,0.4921465968586387,0.6780415430267063,0.6598513011152416,0.5401002506265664,0.1056179775280898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365566993596,0.0043403305952743,0.0067199935033295,0.0089125110517169,0.011334038743285,0.013711188982153,0.0160416900374272,0.0181541571794688,0.0200678811670653,0.0222124410141975,0.0241956980868994,0.0263201133726303,0.0284950108013578,0.0306977319332666,0.0327222428671704,0.034864604981544,0.0367205303501139,0.0384938714933629,0.0404039353537034,0.0424622696573,0.0565710585138607,0.0706501826708679,0.0840968483360095,0.0969598754064548,0.1088720313142929,0.1248465348630455,0.1378322153349749,0.1494072914336837,0.1607390941928313,0.171031746031746,0.1836914956643507,0.195271908555594,0.206858298802571,0.2169946508855027,0.2273007282247596,0.2376107174490699,0.2471862485917299,0.255642478194407,0.2639260603311408,0.271579067903355,0.2785611011508877,0.2850694606857196,0.2920414733453271,0.2976808293881464,0.3030339850062575,0.3087192118226601,0.3137635108086469,0.3183124014847206,0.3221294309279416,0.3255406349248185,0.3250295921661466,0.3241899372278615,0.3232489451476793,0.3224372573638712,0.3214704790196807,0.3192724932581515,0.3172539393459498,0.3179041739187547,0.3186942707799529,0.3185666821478332,0.3196266586700652,0.3195878327597801,0.3207661839595951,0.3218462917320188,0.3240017361111111,0.324109947643979,0.3249584598636337,0.3270481965763375,0.3315954486208475,0.333850252495129,0.3374794969928923,0.3398420827998293,0.3423142911609582,0.3427714087866431,0.343655303030303,0.3476436023504017,0.3468788627935723,0.3471226704894532,0.3472722237607311,0.3539823008849557,0.0,2.2231393092855187,55.7062967612342,171.54658527076225,261.06921877856735,fqhc4_100Compliance_implementation_low_initial_treat_cost,97 -100000,95716,44740,424.3073258389402,6054,62.13172301391617,4755,49.20807388524385,1897,19.55785866521794,77.3455376358958,79.73210478998223,63.32130932583449,65.08722552788855,77.1161290150624,79.50066256311263,63.23758780363441,65.00429220811858,0.2294086208333965,231.44222686960347,0.0837215222000793,82.93331976996399,151.27354,106.38697547753704,158044.15144803378,111148.5806735938,384.46636,251.9347658163448,401223.8601696686,262760.49544103886,367.02308,178.51723690011278,380158.3956705253,184016.06328387992,3136.81089,1420.1073950403215,3249666.4820928583,1456127.789544402,1161.56674,508.5170575545249,1201496.5940908522,519218.1010014264,1860.36366,770.299170234198,1919237.4106732416,783914.3571092148,0.38077,100000,0,687607,7183.825065819718,0,0.0,0,0.0,33261,347.0266204187388,0,0.0,33638,348.1027205482887,1620828,0,58053,0,0,0,0,0,53,0.5537214258849096,0,0.0,0,0.0,0,0.0,0.06054,0.1589936181947107,0.3133465477370333,0.01897,0.3232339089481946,0.6767660910518053,24.45420251076441,4.398845913782691,0.3196635120925342,0.228391167192429,0.2235541535226077,0.228391167192429,11.108102016827385,5.740991832492817,20.03862794693007,12178.296838058726,53.62537780556204,12.969448008106095,17.090506629260503,11.761597990425596,11.803825177769848,0.5543638275499474,0.7762430939226519,0.6947368421052632,0.5710253998118533,0.1197053406998158,0.7219123505976096,0.9352331606217616,0.8681592039800995,0.6751054852320675,0.1565217391304348,0.4942857142857143,0.6885714285714286,0.6323792486583184,0.5411622276029056,0.1098130841121495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024822946534412,0.0048582585323799,0.0071374181430529,0.0092176670257525,0.0115264100268576,0.0137604400081482,0.0161938365523852,0.0182183960867212,0.0200016361256544,0.0221603244173186,0.0245730988154453,0.026437690656423,0.0285649629180081,0.0306861623749317,0.0322490763864522,0.0341982838829732,0.0362033603347904,0.0384727151960479,0.0405145430155049,0.0423530147219704,0.0574794268766448,0.0715720953596919,0.0848051716357606,0.096876347988932,0.1093227579078377,0.124677412531201,0.1362377582310312,0.1480814900799778,0.1587537409149209,0.1685914223157171,0.18150463461953,0.1938470534728087,0.2051262516325642,0.2155180902158572,0.2244269096591722,0.2349448309478441,0.2449088900543423,0.2542685533034891,0.2626565051714752,0.2698029432632229,0.2767401787882643,0.284188508594599,0.2907771236730737,0.296405788081531,0.3016144487706658,0.3066099234951169,0.311415616373334,0.3155289907488484,0.320660239782157,0.3251491811466575,0.3247749741773646,0.3240121663835151,0.3222354840974514,0.3222619116206717,0.3210432053995648,0.3189544677734375,0.3173399077059232,0.3176818256443933,0.3192902763072509,0.3205845049036245,0.3208931419457735,0.3212043181142914,0.3234688733932622,0.3250369309279735,0.3250867219117364,0.3269939131116278,0.3275040652725872,0.3309214458740995,0.3330406378420147,0.3351746612089178,0.3382453267840087,0.3393746687864335,0.3425594677712923,0.3471231212995294,0.3493556579813752,0.3511413887892912,0.3525069209474008,0.3631729200652528,0.3647798742138364,0.3724351529229578,0.0,1.8661812887947835,55.39601194079204,172.38285321887608,267.6523863611526,fqhc4_100Compliance_implementation_low_initial_treat_cost,98 -100000,95620,44459,421.4808617444049,6061,62.309140347207695,4771,49.39343233633131,1951,20.048107090566827,77.23812690061078,79.66855845934639,63.25655152000609,65.05401067775574,76.99997673843382,79.42970030940185,63.16897881751984,64.96823161597769,0.2381501621769644,238.8581499445337,0.0875727024862556,85.77906177805517,151.37848,106.576252246152,158312.11043714703,111457.66455359974,384.88227,251.7240000951648,401996.4128843338,262738.93923359626,368.69679,178.21815425246493,382243.54737502616,183825.9646635554,3178.29935,1449.5658160469186,3292747.68876804,1485109.8842599248,1193.45083,531.4495131176777,1236997.7619744823,544827.3496874734,1925.7611,803.8147295952891,1981556.5362894796,814246.5616793259,0.37779,100000,0,688084,7196.005019870319,0,0.0,0,0.0,33200,346.6534197866555,0,0.0,33790,350.1882451370006,1613592,0,57952,0,0,0,0,0,61,0.61702572683539,0,0.0,1,0.0104580631667015,0,0.0,0.06061,0.160433044813256,0.3218940768850025,0.01951,0.3283675709581308,0.6716324290418693,24.41402671367853,4.471816900761026,0.3175434919304129,0.2236428421714525,0.2242716411653741,0.2345420247327604,11.262562218263552,5.670691937119556,20.738152190607547,12137.82006675049,54.31775141307346,12.7812556893292,17.13810303827456,12.05757910933086,12.340813576138844,0.5596311045902327,0.7853795688847235,0.699009900990099,0.5869158878504673,0.129579982126899,0.7194244604316546,0.9318801089918256,0.8655913978494624,0.7490636704119851,0.1469387755102041,0.5028409090909091,0.7085714285714285,0.6447944006999126,0.5330012453300125,0.1247139588100686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023512242581482,0.0047467872972726,0.0069247014864755,0.0095341674882855,0.0117550073277967,0.0139368562608881,0.0160946504156254,0.0182241654067748,0.0204979236135261,0.022666516444235,0.0245526553394073,0.0263555377454455,0.0284782116465284,0.0303292715614111,0.0324469458356999,0.0345701750755349,0.0363981298141217,0.038352464550979,0.0402639851768575,0.0425946983527546,0.0565353293538371,0.0704390652834538,0.0835093027409205,0.0957777333094608,0.1089732081568859,0.1243909672499258,0.1360961203416479,0.1475638743511304,0.1582680703556297,0.1683870205475773,0.1812875592046349,0.1944715447154471,0.2059336253295853,0.2162280605648925,0.2257986313898775,0.2362333152107581,0.246205639253319,0.2544398714551502,0.2621817396149604,0.2702826830780536,0.2772234726315056,0.284263721317434,0.2906310431966211,0.2956676443717844,0.3022042964894537,0.3074365661034964,0.3114770559293102,0.3154167145208836,0.3193504384540435,0.3241626635965434,0.3230667440824207,0.3211846045568083,0.3197396105454905,0.3190348525469169,0.3173837287226913,0.3155362933591529,0.3138476205608961,0.3152637911426829,0.3155113246396706,0.3154037734496784,0.316348195329087,0.3181412683623099,0.3206281797922886,0.320794523622489,0.3215310773980367,0.3233102366322395,0.3237582970931563,0.3262941919191919,0.3273303964757709,0.3307405349630923,0.3326018378823207,0.3329605963791267,0.3370141342756184,0.3403882755995432,0.3462296929289135,0.3487028301886792,0.3488969477183439,0.3452547452547452,0.3436473165388828,0.3384088313665778,0.0,1.862009726386136,55.46139985394931,184.33967511002,260.4259848735984,fqhc4_100Compliance_implementation_low_initial_treat_cost,99 -100000,95717,42914,404.8288182872426,6833,70.16517442042688,5330,55.07903507213975,2079,21.38596069663696,77.33641368994157,79.71142178484101,63.332022412709286,65.08953978934765,77.07705466641168,79.45182103115717,63.23609200259587,64.99580401911079,0.2593590235298819,259.6007536838414,0.0959304101134179,93.73577023686153,118.23416,82.87446436885834,123524.72392573942,86582.80594759378,280.99665,176.76364175118528,292992.5300625803,184095.46031654283,313.75227,151.14639128092458,323444.1217338613,154659.84047659463,3810.59724,1724.4416803406232,3943207.1941243457,1764002.5134130998,1280.66617,561.6052713183503,1324406.4481753502,573295.6866358778,2045.34168,862.6215372465894,2105840.63437007,874060.0160367375,0.38031,100000,0,537428,5614.760178442701,0,0.0,0,0.0,23712,247.11388781512167,0,0.0,28945,298.06617424282,1865902,0,66977,0,0,4601,0,0,55,0.5746105707450088,0,0.0,0,0.0,0,0.0,0.06833,0.179669217217533,0.3042587443289916,0.02079,0.3236363636363636,0.6763636363636364,24.867367194590084,4.359469337082597,0.3264540337711069,0.222701688555347,0.224765478424015,0.2260787992495309,11.194359935456662,5.911105187186099,22.428239661724287,12773.393696503252,60.319658166369,14.094891968534558,19.61391476466275,13.331965060563444,13.278886372608252,0.550281425891182,0.7700084245998315,0.6925287356321839,0.5667779632721202,0.1120331950207468,0.7084569732937686,0.897172236503856,0.8680555555555556,0.717948717948718,0.1377952755905512,0.496735308890005,0.7080200501253133,0.6345565749235474,0.5221621621621622,0.1051524710830704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.0044828040852341,0.0068632925529214,0.00922839255224,0.0117392144695482,0.0142077281893548,0.0162657175781927,0.0183888094751888,0.020477850592457,0.0226235079745306,0.0247860181436112,0.0269088221102019,0.0289063705074811,0.030971263775878,0.0330602389747611,0.0350494578755335,0.037027066205554,0.0387887212897068,0.0406888523976802,0.042791220924782,0.0577872918080718,0.0714390340873422,0.0847971307822184,0.0980237569641543,0.1098545531197301,0.1252893120977372,0.1389760440958236,0.1519321154377831,0.1639165795034901,0.1746703373217786,0.1879499402769856,0.2010099153357914,0.2135561543810848,0.2246810555749737,0.235496418054762,0.2457872622733304,0.2556437055690504,0.265436400008991,0.2746734397677794,0.28287230878349,0.2907804697614203,0.2978295913837815,0.3041407671763844,0.31042903658303,0.3169811320754717,0.3222256416569213,0.3279610897860688,0.333621533649506,0.3386359812055865,0.3425965041981306,0.3428917935588195,0.3426408538098783,0.3427648104767012,0.3433590129749768,0.3441831351158008,0.3427913050157462,0.3417132511752001,0.3423488716850601,0.3430389080371075,0.3444165621079046,0.3455717857612844,0.3476373582811385,0.3482530689329556,0.3490536489328381,0.348325704649482,0.3511607865667354,0.3518252783836528,0.3533882203926535,0.3542776503792556,0.3560839160839161,0.3595857307249712,0.3598837522200097,0.3610468106995885,0.3639742894757221,0.3672224868985231,0.3702761627906977,0.3776810693192415,0.3866011063306699,0.3827092511013216,0.3782857142857143,0.0,2.355442865316918,59.0230870556633,206.5688647165861,296.6578284394704,fqhc4_80Compliance_baseline,0 -100000,95610,42935,405.1772827110135,6837,70.31691245685597,5306,54.9210333647108,2165,22.257086078862045,77.26635035352784,79.7044694628387,63.26822878755484,65.0719527097998,76.99522196966502,79.43405027507033,63.16797778144729,64.97512522295321,0.2711283838628162,270.4191877683684,0.1002510061075483,96.8274868465926,117.38166,82.23401814065527,122771.32099152807,86009.85058116858,281.65404,176.9931136893448,294035.75985775545,184569.2539371873,304.69278,146.28935236904624,315391.8418575463,150474.87656412454,3850.41734,1734.392862221257,3989307.8339085863,1776124.6127196488,1280.14435,564.0007021168808,1324337.9458215667,575312.0616220906,2131.96754,892.3414568775329,2193898.0023010145,901353.8491533356,0.3821,100000,0,533553,5580.514590524004,0,0.0,0,0.0,23756,247.8924798661228,0,0.0,28164,291.27706306871664,1866047,0,66936,0,0,4654,0,0,56,0.5752536345570547,0,0.0,1,0.0104591569919464,0,0.0,0.06837,0.1789322166971997,0.3166593535176247,0.02165,0.324106273473362,0.6758937265266379,24.968349485097573,4.529737774487864,0.3224651338107802,0.2208820203543158,0.2191858273652469,0.2374670184696569,11.08783877198156,5.559134480421291,23.167864992402997,12808.51706249471,59.90187381753904,13.773145750528494,19.318304279105877,12.98240704174979,13.828016746154878,0.5346777233320769,0.7465870307167235,0.6884862653419053,0.5649183147033534,0.1007936507936508,0.6900149031296572,0.9015151515151516,0.8480392156862745,0.6666666666666666,0.13671875,0.4820887991927346,0.6675257731958762,0.6385264773599386,0.5323496027241771,0.0916334661354581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0048085214303829,0.0068652441934861,0.0089677891654465,0.0115123877771218,0.0137998511980594,0.016278167864141,0.018495243350398,0.0205553736596545,0.0227687263039245,0.0248470791083377,0.0269309047550521,0.0290705454844919,0.0310444375708835,0.0329700976088416,0.0351813911135945,0.0375115312457891,0.0392916493560448,0.040914247650371,0.0429495202336253,0.058148895463717,0.0725401632730054,0.0854342619437791,0.0979943961067689,0.1105125848939024,0.1256753034893328,0.1390111174882554,0.1509520507760414,0.1624173142380065,0.173765418833541,0.1874460648947186,0.2003815759520428,0.2120842499618827,0.2230682428213022,0.2337147014086369,0.2451381724187661,0.2551479871733276,0.2644531293995742,0.2740712962647302,0.2824166494573323,0.291187339983086,0.2987910594630055,0.3056724058252657,0.3124617654467595,0.319388028117627,0.3248962860529435,0.3307585238316174,0.33591220780545,0.3401206147461254,0.344503614043897,0.3445416672284316,0.3436621658859189,0.3443406872425661,0.3437291962140728,0.3446442929037253,0.3441363232000982,0.3435179897201599,0.3443170964660936,0.345372924626904,0.3460945345000717,0.3471233186390867,0.3496900826446281,0.3512403655814345,0.3522214489369822,0.3521572990229273,0.3540765216479165,0.3546044321965783,0.3578837187172899,0.3603906443508722,0.3635417500600432,0.3641618497109826,0.3658614964383268,0.3663644489848039,0.3702287156735256,0.3711194731890875,0.3739037686655606,0.3747513389441469,0.3758648758648759,0.3768356885563868,0.3765290519877676,0.0,2.276701108197634,59.070528033789486,198.2130817249899,302.6278246988678,fqhc4_80Compliance_baseline,1 -100000,95718,42901,404.8872730311958,6655,68.3988382540379,5183,53.69940867966317,2066,21.24992164483169,77.34534288058313,79.71442798383032,63.32656324425341,65.07459988928014,77.08795208990867,79.45551557606352,63.23214779983297,64.98165958692326,0.2573907906744637,258.9124077668004,0.0944154444204343,92.94030235687956,119.67912,83.87050194065974,125033.0345389582,87622.4972739294,281.94498,177.6382673391102,294133.52765415073,185160.59397303555,302.21316,145.42193723503246,313294.7721431706,149936.89283033568,3706.15733,1674.6449687198508,3842774.159510228,1720380.9197014682,1256.67621,552.3658077911516,1302071.4703608516,566267.9714673378,2026.08088,852.3243266823359,2086097.6409870663,865442.8624253807,0.38158,100000,0,543996,5683.319751770827,0,0.0,0,0.0,23799,248.17693641739277,0,0.0,27923,289.2454919659834,1856612,0,66592,0,0,4803,0,0,55,0.5746045675839445,0,0.0,0,0.0,0,0.0,0.06655,0.1744064154305781,0.3104432757325319,0.02066,0.32693401592719,0.67306598407281,25.149478576550795,4.419177335434912,0.3337835230561451,0.2203357129075824,0.2182133899286127,0.2276673741076596,11.296031387141324,5.896251161186866,22.16480918370592,12770.651736466936,58.72932306144542,13.469828065934433,19.578003401044224,12.513169961900577,13.16832163256619,0.5606791433532703,0.7889667250437828,0.7017341040462428,0.5694076038903625,0.1245762711864406,0.7134099616858237,0.9191374663072776,0.8631346578366446,0.7276785714285714,0.1400778210116731,0.5092831356369263,0.7263294422827496,0.6444792482380579,0.5303197353914002,0.1202600216684723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0044898952019946,0.0068381965017653,0.0091915498679666,0.0113689519819398,0.0136022561826123,0.0158812676472686,0.0179353429355981,0.0201684623719665,0.022294786623128,0.0245115125171713,0.0265454918874512,0.0284300716923298,0.0305871202365376,0.0327454359694114,0.0347843165631234,0.0368790066177155,0.0387401411374014,0.0407365433202674,0.0423292553302348,0.0572183466310205,0.0707169021454735,0.0842462016284731,0.0975486586007364,0.1100067527644129,0.1260542439602535,0.1394724271535481,0.1518930720485649,0.1631990083245172,0.1741294065915209,0.1876791139649637,0.2008791779902337,0.2129768666623142,0.2242170138698836,0.2341020727328795,0.2442350332594235,0.2539461052443571,0.2639728139171139,0.2728789891352474,0.2814379489294429,0.2897127055202657,0.2972378791776785,0.3044111207110817,0.3114911261039941,0.317748833592535,0.3231596075144223,0.3294152991099928,0.3341090002797487,0.3396280215151319,0.3438264018290184,0.3437533729087965,0.343972755725296,0.3441117031049054,0.3442285681169499,0.3443333680964229,0.3432785425971116,0.3424214564245633,0.3443290839794979,0.3449029416283953,0.3458716415245916,0.3468287110728263,0.348463590554293,0.3476893399312253,0.3484325245548728,0.3503633773571238,0.3523217225430505,0.3524121246620179,0.3553651570787434,0.3576936558009113,0.3589164785553047,0.3603246249943008,0.363235372269756,0.3684210526315789,0.3725400457665904,0.3742591024555461,0.376229411067662,0.3805309734513274,0.3853914447134786,0.3905992303463441,0.3945525291828793,0.0,1.7286487998787687,57.91252965946542,206.99321592581703,281.2751797430375,fqhc4_80Compliance_baseline,2 -100000,95666,42520,400.16306733844834,6698,68.73915497668973,5260,54.42895072439529,2120,21.81548303472498,77.2498286400838,79.64887123222375,63.26585613190741,65.0389721612541,76.99282347028277,79.38990479253508,63.17225845846341,64.94682023909034,0.2570051698010331,258.9664396886775,0.0935976734440018,92.151922163751,118.90252,83.20990656228982,124289.21455898648,86979.60253620912,278.73605,174.39620914775494,290813.4551460289,181746.6593646175,300.68059,144.42208253643952,310535.66575376835,148069.09907131604,3786.02885,1690.0220143803415,3921287.719775051,1730324.539941403,1237.20415,541.600718473828,1278321.09631426,551204.4284007155,2086.63306,859.8779268867813,2149237.785629168,872779.4935129111,0.37978,100000,0,540466,5649.509752681203,0,0.0,0,0.0,23576,245.86582484895365,0,0.0,27833,287.28074760102857,1858886,0,66830,0,0,4663,0,0,46,0.4599335187004787,0,0.0,0,0.0,0,0.0,0.06698,0.1763652641002685,0.3165123917587339,0.0212,0.3197375926982316,0.6802624073017683,25.025194581871336,4.52550410261734,0.3307984790874524,0.2123574144486692,0.2249049429657794,0.2319391634980988,11.005565161211958,5.50874200059155,22.452533593745912,12755.569597621205,59.19843825893306,13.238533373648,19.677475423501026,13.079229778683498,13.203199683100523,0.5427756653992395,0.7681289167412713,0.7040229885057471,0.5469146238377007,0.1024590163934426,0.7174578866768759,0.9237057220708448,0.8732718894009217,0.6992481203007519,0.1380753138075313,0.485078401618614,0.692,0.6477794793261868,0.5027262813522355,0.0937818552497451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024616070343206,0.0048272435019826,0.0071152343155266,0.0094289778500304,0.0119518670342077,0.0142790214490864,0.0163559978790227,0.0185531219686526,0.0205052157905502,0.0227875585051361,0.025027437867334,0.0272829994863893,0.0293049338889746,0.0314464760569767,0.0333164703331647,0.0354228505827963,0.0375221495704796,0.0394422641666147,0.0413554172995692,0.0433118893951558,0.0572876397450632,0.0710613121105817,0.084218369574343,0.0964436026936026,0.108363935671774,0.1242525901389521,0.1377040128274558,0.1501960700737394,0.1617389071926746,0.1727823490235675,0.1861466256675837,0.1990522354880336,0.2112046406140963,0.2227766749651791,0.233323768320678,0.2441921183907918,0.2549752635938304,0.264391025279473,0.2731163214204416,0.2814697366606921,0.2895033270237943,0.297317296624304,0.3046537890044576,0.3107921113744931,0.3173877531117044,0.3242130001855402,0.3294526913319769,0.3344533735355368,0.339034819792303,0.3434449139632539,0.3433449128830375,0.3428508311702656,0.3436412997369983,0.3442442181016221,0.3445163792589056,0.3435153190509099,0.341814141734783,0.3426095266340435,0.3444951452979723,0.346084802355222,0.3470152768097651,0.3471289489370157,0.347790404040404,0.3479689434004726,0.3501791941108098,0.3496887586964481,0.3504080817304948,0.3523273721595373,0.3540577523595663,0.355568814638027,0.3609251923689842,0.3630677903217257,0.3655575822378766,0.3669250645994832,0.36727613689639,0.3684769775678866,0.3725910064239828,0.3718788374948833,0.3734107241569928,0.3783371472158657,0.0,2.146663918050604,57.7037604498109,196.50305609155336,301.7021392533524,fqhc4_80Compliance_baseline,3 -100000,95749,42402,398.8135646325288,6783,69.62997002579662,5330,55.11284713156274,2138,22.015895727370523,77.32698317968122,79.68584377221362,63.31555014592704,65.06101607465604,77.06267660886698,79.4196910633751,63.219527107012894,64.9659825395069,0.2643065708142416,266.1527088385185,0.0960230389141472,95.0335351491418,118.32634,82.91051665099029,123579.71362625198,86591.52226236336,281.01314,176.38147399560577,292934.35962777684,183657.32696488296,304.98695,146.69482451429116,314229.1721062361,149943.3280808667,3845.16925,1730.5229660556802,3981744.947727914,1773516.9090695805,1303.62157,574.0171807469014,1348549.060564601,586554.3450551981,2102.18686,869.0434272968403,2168189.934098528,886570.3307246922,0.37733,100000,0,537847,5617.259710284181,0,0.0,0,0.0,23679,246.7284253621448,0,0.0,28298,291.2615275355356,1862967,0,66854,0,0,4707,0,0,54,0.5639745584810285,0,0.0,0,0.0,0,0.0,0.06783,0.1797630721119444,0.3151997641161728,0.02138,0.3201735965280694,0.6798264034719306,24.898308882497297,4.543712899036089,0.3279549718574109,0.2138836772983114,0.2288930581613508,0.2292682926829268,11.22127162040838,5.641098132613452,22.81890202835182,12595.68605135591,60.31421844253499,13.379298220148833,19.902724538846883,13.621876769369766,13.410318914169492,0.5566604127579737,0.7640350877192983,0.7088100686498856,0.5737704918032787,0.1284779050736497,0.7248716067498165,0.9202127659574468,0.852017937219731,0.7624113475177305,0.1814671814671814,0.4988656415427275,0.68717277486911,0.6597542242703534,0.5170575692963753,0.1142263759086189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795197811661,0.0047656709456307,0.0067900858656598,0.009051934330299,0.0112789219425375,0.0136041953057379,0.0155708284047803,0.0179960394422554,0.0202056334573402,0.0225483874269454,0.0248741941765483,0.0268536292433558,0.0290383923523667,0.0312715590473346,0.033256999030348,0.0352865807664886,0.0372490760200014,0.0391975852876806,0.0413951506459223,0.0432413850577107,0.0570372767414428,0.0709368984852288,0.0838470247829915,0.0968949061324027,0.1087068792883567,0.123674500724201,0.1366094720990901,0.1484202009879066,0.1593886929571444,0.1703333261788757,0.1836404784998383,0.1962381019415898,0.2078577723617926,0.2188443530389883,0.2292274333263623,0.2402580130336481,0.2497458980688253,0.2590761677401919,0.2681727318159102,0.2763382573717324,0.284422366577506,0.2922307584203869,0.299625468164794,0.3071373697604072,0.313575200136263,0.319934838144368,0.3253046792717789,0.3309751434034417,0.334842626949324,0.3399659122438463,0.3404005822730213,0.3401989419155737,0.3403133240266791,0.3395207413306305,0.3395855662736691,0.3388203860387267,0.338110883608717,0.3388327795506135,0.3406156901688182,0.3411344350156319,0.3428512466465302,0.3432090941498,0.3426635238656452,0.343850914962325,0.3461028152365329,0.3468218676432121,0.3487887098617301,0.3517882464156294,0.3556461819715933,0.3581081081081081,0.3609162947445122,0.3601913366994419,0.3634244676830036,0.3663494480395889,0.3682378398720481,0.3706517867743084,0.3641396278640627,0.3640065146579804,0.3720346078704996,0.378988326848249,0.0,2.1129582279447727,60.32998770629203,200.22892469702745,300.84513452087907,fqhc4_80Compliance_baseline,4 -100000,95761,42500,400.215118889736,6793,69.83009784776684,5300,54.80310355990435,2185,22.493499441317446,77.39144353273707,79.73122402322437,63.36142006586866,65.08755525610874,77.12563619536527,79.4643909293193,63.26382230764533,64.99223718420495,0.2658073373717968,266.8330939050776,0.0975977582233298,95.31807190379028,117.91956,82.57727825397866,123139.44089974,86232.68162819798,282.37773,177.4636446555558,294337.3607209616,184779.100735744,302.29522,144.91061005153284,312254.7905723624,148644.8032434826,3854.04197,1734.4904839988455,3989262.8940800535,1775886.3775428869,1249.24797,544.830463610041,1292286.703355228,556687.1310972533,2152.8273,899.1439885579761,2218335.4601560137,912209.9136942514,0.37928,100000,0,535998,5597.247313624544,0,0.0,0,0.0,23816,248.1385950439114,0,0.0,27919,288.1026722778584,1870329,0,67056,0,0,4615,0,0,67,0.6996585248692057,0,0.0,0,0.0,0,0.0,0.06793,0.1791025100189833,0.3216546444869719,0.02185,0.3134286515278945,0.6865713484721054,24.908054031191828,4.472848756961899,0.3192452830188679,0.2073584905660377,0.2360377358490566,0.2373584905660377,11.00199999197726,5.515909851892624,23.297435901939487,12674.578753859903,59.81171870731353,12.973723562877783,19.01997062717045,13.866756332554608,13.951268184710688,0.5384905660377358,0.7779799818016379,0.692080378250591,0.5523581135091926,0.1089030206677265,0.7041053446940356,0.9116809116809116,0.8843373493975903,0.7038461538461539,0.1471698113207547,0.4851583936143677,0.7152406417112299,0.6296006264682851,0.5126135216952573,0.0986908358509567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019945731410983,0.0042461769206603,0.0066049796067449,0.0089070799605935,0.0113166109139713,0.0133539614037944,0.0154167515793764,0.0177015528393902,0.0200022474435329,0.0219980355242694,0.0242622950819672,0.026263952724885,0.0284419601113839,0.0305366295465305,0.0326986712299112,0.0349458200336752,0.0368342613483471,0.038851263755069,0.0408303275365633,0.0428034209402377,0.0574100749462432,0.071079534158566,0.0847653217515368,0.0972277727530866,0.1089963938505662,0.1245928683219829,0.1381742210533013,0.1499425507468403,0.1619731094949754,0.1729930215356909,0.1867807739921416,0.1990439315610737,0.2115428509320145,0.2224225142844657,0.2329339342640431,0.2431167279004913,0.2534779506844428,0.2628031588052257,0.2723532078893675,0.2805849237951394,0.2880756426854078,0.294916601404977,0.3023759121066263,0.3082895036361676,0.3140745594874035,0.321035981141598,0.3263576357635763,0.3313989742806602,0.336341507626175,0.3416210512431576,0.3421675725125114,0.3414996288047513,0.3409375571724108,0.3410779998556894,0.3416983260121097,0.3404437381578143,0.3400243405143119,0.340756034016615,0.3418628454452405,0.3418164296039833,0.3423323702675321,0.3443837135614702,0.3449905482041588,0.3452447756503782,0.346644749564881,0.3484138003300762,0.3500871503271709,0.3515681753576956,0.3529640358934501,0.3561381074168798,0.3607542668379519,0.3603536030002678,0.362994978707176,0.3629879591993251,0.363447559709242,0.363076193861832,0.3644248326232501,0.3578242338136797,0.3561042524005487,0.3539110429447852,0.0,2.1688377588209824,56.66903962345136,210.62394319961356,295.0780483755682,fqhc4_80Compliance_baseline,5 -100000,95718,42588,401.2098037986585,6742,69.08836373513863,5255,54.2113291126016,2156,22.19018366451451,77.37264048070351,79.73224909285125,63.34029949113111,65.08201523729336,77.11444197320381,79.47320249121036,63.24571093693207,64.9894688826848,0.2581985074996993,259.04660164088966,0.0945885541990421,92.54635460855808,118.22558,82.81370049378724,123514.46958774734,86518.41920410711,282.72359,178.11639879730168,294706.1994609164,185419.345156921,308.24026,148.31808253569943,316715.0170291899,150961.8195905562,3782.91865,1716.1053956644007,3911604.818320483,1752437.311931725,1315.24178,575.9791324428004,1360766.6478614262,588479.3240154528,2120.82888,878.9139464384632,2185283.917340521,892572.3195749014,0.37902,100000,0,537389,5614.2940721703335,0,0.0,0,0.0,23897,248.970935456236,0,0.0,28489,292.44238283290497,1863447,0,66894,0,0,4620,0,0,64,0.6581834137779727,0,0.0,0,0.0,0,0.0,0.06742,0.1778797952614637,0.3197864135271432,0.02156,0.3161171642847035,0.6838828357152964,24.93615033604434,4.533133363613175,0.3252140818268316,0.2119885823025689,0.2258801141769743,0.2369172216936251,11.21694518405774,5.748494425628145,22.785369536381307,12684.117390403262,59.66929356651701,13.303967921900826,19.330160566302023,13.38924874664957,13.6459163316646,0.5478591817316841,0.7710951526032316,0.70040959625512,0.5703454085930918,0.1172690763052208,0.7164835164835165,0.9236842105263158,0.8680555555555556,0.7157534246575342,0.1647509578544061,0.4886889460154242,0.6920980926430518,0.6436961628817541,0.5229050279329609,0.1046747967479674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0044591732287454,0.0066242632662791,0.0088864965875853,0.0109813012842021,0.0135798196143901,0.0158607192367283,0.0180662019127718,0.0204233918367764,0.0226225816357866,0.0246578151432819,0.0266524301349048,0.0288525803831244,0.0307723995880535,0.0330031981842566,0.0350461977304202,0.0369392593512853,0.039113388374891,0.0408871705329674,0.0427546269775967,0.0571234664578439,0.0715062989160005,0.0842446292082997,0.0970813583192323,0.1090824759655928,0.1240498567516994,0.1373370527901229,0.1499781838304937,0.1619961981246929,0.1727133312599869,0.1863645663949343,0.1996148769986369,0.2115148285499885,0.2229501383526735,0.2336333428690887,0.2442245687123973,0.2535555605170912,0.2632817602414251,0.27252277839631,0.2807188568020735,0.2894404760526529,0.2967627162285527,0.303957345971564,0.310423441043424,0.3161548374547134,0.3218752312587878,0.3271853048345291,0.3324681273379647,0.3366699471666839,0.3411316074208956,0.3411459034490186,0.340561961636899,0.3405529564286116,0.3409018598328175,0.3404587647268832,0.3396608298322549,0.3381024812244509,0.3390984118633479,0.3396232859167677,0.3396391256284991,0.3403630788789799,0.3409171562635543,0.3428320177550721,0.3449145356361851,0.3458105384393896,0.3469860092578145,0.3485205923315237,0.3499169773489144,0.3520590085995945,0.3555800843615721,0.3578098087208775,0.3609110169491525,0.3631778058007566,0.3630209917858229,0.3633467628595521,0.3630543040075883,0.3649724433557869,0.3665991902834008,0.3703396851698425,0.3781609195402299,0.0,2.7231333118192684,59.67150521863479,203.69145478926544,286.7595653618361,fqhc4_80Compliance_baseline,6 -100000,95745,42402,400.1671105540759,6849,70.40576531411561,5318,54.989816700610994,2142,21.9959266802444,77.33281654085012,79.69834834413928,63.319784280511655,65.07074543789982,77.07447434439969,79.4386502816685,63.22571846110996,64.9784413720682,0.2583421964504282,259.6980624707754,0.094065819401699,92.30406583161256,118.32458,82.84724227616955,123582.80850174944,86528.87881908887,277.98691,174.57644577604614,289747.77795185125,181747.20941521507,304.65072,146.19132784906233,314526.628022351,149960.80234910027,3824.73872,1723.2487508296765,3954553.052378714,1760066.3492942008,1281.69602,558.858903178276,1322223.8445871847,567325.4795029325,2091.22548,864.0031182777941,2148590.2553658155,873798.6880139388,0.37829,100000,0,537839,5617.400386443156,0,0.0,0,0.0,23453,244.3365188782704,0,0.0,28244,291.3050289832367,1867636,0,67040,0,0,4649,0,0,51,0.5326648911170296,0,0.0,1,0.0104444096297456,0,0.0,0.06849,0.1810515741891141,0.3127463863337713,0.02142,0.3201888364343238,0.6798111635656762,24.858519999012632,4.393215879740122,0.3253102670176758,0.2154945468221135,0.2376833396013539,0.2215118465588567,11.442947903403326,6.076733605103707,22.656413726108187,12652.907202874652,60.13925105964292,13.674656605174786,19.45138490267742,14.087418693466448,12.925790858324268,0.5588567130500188,0.7766143106457243,0.6953757225433526,0.5925632911392406,0.1103565365025466,0.7278810408921933,0.9240837696335078,0.8599562363238512,0.7230215827338129,0.1403508771929824,0.5016360432922226,0.7028795811518325,0.6362922230950511,0.5557809330628803,0.1031578947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023406863986867,0.0045845039708701,0.006904254239009,0.0089244874518453,0.0112318398241972,0.0135470990873533,0.0156641987395215,0.0179276970668409,0.0201020439463809,0.021953716977268,0.024236956231994,0.0261839240974247,0.0281627868717611,0.0301132852729145,0.0319328944924784,0.0339442049882683,0.0356983813005519,0.0376820016812129,0.039855675248513,0.0419522866965308,0.0568234016787071,0.0706416547221728,0.0834714037037813,0.0958158116063919,0.1081773336706299,0.1235989510637397,0.1369849939021157,0.1493129835988803,0.1610894526034713,0.1721216540837337,0.1858196500672947,0.1990024451994027,0.2109006285478153,0.2217411744126297,0.2320552585846587,0.2432788555230755,0.2531022630897647,0.2626828719333783,0.271755413318807,0.2796601435916226,0.2871462468892876,0.2947512615471075,0.3019831303606122,0.3087392378348562,0.3147959059635815,0.3209055579544753,0.3264605671911013,0.3315382754713618,0.3366077445440879,0.3411411887492899,0.340902658922146,0.3409413352801003,0.3418235667442352,0.341787352247573,0.3417706441142312,0.3410620907515603,0.3402967095669815,0.3415275404232943,0.3430871519647221,0.3436930661236738,0.3447253901560624,0.3454361777989065,0.3461312520980195,0.3460875405798724,0.3459025484003182,0.3471335913798514,0.3485702836534333,0.3512651230375588,0.3532275132275132,0.3551517571884984,0.3568943416956601,0.3575971353749131,0.3580692098437401,0.3600152613506295,0.3606356968215159,0.3650473933649289,0.3712364358856793,0.3678556951763275,0.3705135284373274,0.3766781741465286,0.0,2.0612484325886755,59.37780637600675,201.73339584540585,300.7196887365345,fqhc4_80Compliance_baseline,7 -100000,95781,42691,401.3426462450799,6685,68.56265856485106,5102,52.70356333719631,2016,20.63039642517827,77.34910350822409,79.67845173700563,63.34642956891118,65.06693646683709,77.09664656721057,79.42825212860174,63.25302001437149,64.97739502934898,0.25245694101352,250.19960840388933,0.0934095545396829,89.5414374881085,118.95642,83.28019360768188,124196.03052797528,86948.32337069137,279.06183,175.73172099896752,290785.3749699836,182903.73978029832,302.79627,145.16059326742047,312783.34951608354,148948.035218057,3656.37638,1647.1655531983213,3779626.7213748023,1681913.3682027978,1217.55393,530.8248335222931,1256868.7004729535,539911.2486269489,1972.53678,825.9395348467398,2020907.82096658,829421.1966678754,0.3787,100000,0,540711,5645.274114907967,0,0.0,0,0.0,23517,244.93375512888773,0,0.0,27974,288.7837880164124,1864062,0,66955,0,0,4553,0,0,53,0.5533456531044779,0,0.0,1,0.0104404840208392,0,0.0,0.06685,0.1765249537892791,0.3015706806282722,0.02016,0.3115059464106605,0.6884940535893395,25.11426723246971,4.529796010846315,0.3369266954135633,0.2144257154057232,0.2261858094864759,0.2224617796942375,11.269053625236504,5.796428254731226,21.56156066532192,12686.733126900275,57.74891575264065,12.978797917184906,19.45786959329933,12.916920976090644,12.395327266065772,0.5564484515876127,0.7641681901279708,0.6893542757417103,0.598786828422877,0.1118942731277533,0.7395348837209302,0.9105691056910568,0.859375,0.7631578947368421,0.144927536231884,0.4944910807974816,0.6896551724137931,0.6294256490952006,0.5495495495495496,0.1045258620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0047436118347033,0.0070710452364285,0.0093752221917502,0.0115304835888884,0.0137424162221588,0.0158074970953341,0.0179823442363627,0.020445697820556,0.0223652305583122,0.0242698056571492,0.0265466747390996,0.0288066266546082,0.0310434979517055,0.0333133995958262,0.0354800392501162,0.037552126988069,0.0393309691200564,0.0415441367485842,0.0435706252343066,0.0581378360327266,0.0713837464700345,0.0847688646109649,0.0968850494987073,0.1090269142411532,0.1235879064557376,0.1367943527017573,0.1488243989068133,0.160135322618514,0.1709308305476986,0.1841762546953536,0.1972403650676932,0.2095025822234302,0.2203912477720309,0.2306329698863448,0.2421255482213263,0.2526615333110144,0.2623306537748046,0.2717732878033285,0.2803063256942695,0.2879877865420647,0.2956975411178438,0.3033816882410015,0.3102072600934467,0.316397901690305,0.3222549587642845,0.3280853034304093,0.333040544841194,0.3378485229496934,0.3422342604214838,0.3420520426048267,0.3417817470161801,0.3418183869466499,0.3415368143871985,0.3410891898722885,0.3411507000398272,0.3405063892451665,0.3419272201786653,0.3436304644808743,0.3446034042401186,0.344603454089087,0.345026924295217,0.3463425887090009,0.3459814424671657,0.346263465533066,0.3484812747333385,0.3495340501792114,0.3522453380692629,0.3542153323423232,0.3580929487179487,0.3609301898908357,0.3604508306180225,0.3646092107777565,0.3655071796053137,0.3686013320647003,0.3671526689962646,0.3715310258808855,0.3701498665571751,0.3823284245623784,0.3936044216344256,0.0,2.1415284967275863,56.675676131925286,196.47729645367144,285.62351407252544,fqhc4_80Compliance_baseline,8 -100000,95663,42898,402.8621306043089,6759,69.36851238200768,5324,55.0474059981393,2120,21.763900358550327,77.31532774038504,79.70606698733855,63.31028192710126,65.0754820112392,77.05036014168074,79.44229970896093,63.21228696560786,64.98108865817017,0.2649675987043025,263.76727837761393,0.0979949614933985,94.39335306903727,118.04188,82.73617693467273,123393.45410451273,86487.12348000033,282.61551,178.0682076381255,294830.2478492207,185543.3227694062,313.69505,150.77325350415032,323979.9922645119,154609.10842896526,3791.07488,1704.459981042468,3920233.559474405,1739039.143120655,1264.75733,552.9317234478735,1307807.8462937605,563726.4781533659,2073.22228,866.5732255150222,2129322.036733115,872351.0057132582,0.38096,100000,0,536554,5608.793368386941,0,0.0,0,0.0,23799,248.1523682092345,0,0.0,29068,299.9174184376405,1862069,0,66783,0,0,4739,0,0,52,0.5435748408475586,0,0.0,0,0.0,0,0.0,0.06759,0.177420201595968,0.3136558662524042,0.0212,0.3186782413889666,0.6813217586110333,25.001681406375265,4.419294480104661,0.3240045078888054,0.2272727272727272,0.2267092411720511,0.2220135236664162,11.129722228969866,5.762744426728698,22.51688703044719,12776.314787282874,60.00680651651932,14.110610737403231,19.63365340319819,13.417515770449937,12.845026605467952,0.5619834710743802,0.7793388429752066,0.7136231884057971,0.5700082850041425,0.1099830795262267,0.7158920539730135,0.9236842105263158,0.8660508083140878,0.7116104868913857,0.1535433070866141,0.5105263157894737,0.7132530120481928,0.6625386996904025,0.5297872340425532,0.0980603448275862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0047040694255763,0.0071038584099535,0.0093674435616605,0.011688232421875,0.01414820473644,0.0166557871975847,0.0189060824268423,0.0211791174515518,0.0232146148647264,0.0254958669210099,0.0276216988012449,0.0298949664118839,0.0320556414219474,0.0340937241948802,0.036343703458547,0.0382339836909782,0.0404380092376355,0.0425456663754004,0.0446410889799151,0.0588763857108526,0.0727942870306381,0.086278378974106,0.0984762385823125,0.1100756704273215,0.1256179275741248,0.1383594372179453,0.1511013591240254,0.1628153056861906,0.1743414696979455,0.187735788044064,0.2008035172832019,0.2118774154918077,0.2225274424611209,0.2333168125998127,0.2441185931208891,0.2540436084178544,0.2632100210459973,0.2728924212319046,0.2811224723737906,0.2898028677986518,0.2969245718165748,0.3039945996518196,0.3105964238569543,0.3166050853225728,0.3221335832213358,0.3278596122050203,0.333163583586897,0.3388080774063184,0.3432005812033551,0.3435676258507986,0.3433181310883613,0.3432457191177507,0.3428186831478238,0.3422685013015991,0.3425566814342434,0.3414251533061845,0.3430746763369049,0.3441457453899133,0.3449483578142311,0.3456272126173038,0.3467107084932157,0.3472204714483802,0.347672019377411,0.3487670704048641,0.3497687544093439,0.3513180515759312,0.3545070914109845,0.3551209834555567,0.3582992706580107,0.3597462885508112,0.3638989942221271,0.3653784936652448,0.3697803897309001,0.3742835307604127,0.376607765356413,0.3771069567882317,0.3778089887640449,0.3749653835502631,0.3800076306753148,0.0,2.36353571318515,58.57252343022619,200.6710135607593,302.4704867146356,fqhc4_80Compliance_baseline,9 -100000,95625,42577,402.237908496732,6916,71.15294117647059,5441,56.30326797385621,2138,21.96078431372549,77.3146043072854,79.73322090573177,63.296484254502126,65.08277260282894,77.04942941856406,79.4682963585781,63.199599389209965,64.98838792937036,0.2651748887213472,264.92454715366875,0.0968848652921607,94.3846734585776,116.70912,81.77650681794665,122048.29281045753,85517.48918367233,280.07268,175.17058610494,292281.6836601307,182581.55301173337,307.58015,147.23118653808618,317711.90588235296,150934.25494185646,3944.86067,1776.289409084284,4086315.482352941,1818632.5489477816,1329.11793,582.2942366893769,1373050.122875817,592097.1930782284,2110.63958,875.1752485815545,2171152.962091504,885295.4313402723,0.38033,100000,0,530496,5547.649673202614,0,0.0,0,0.0,23564,245.7934640522876,0,0.0,28531,294.4522875816993,1873094,0,67168,0,0,4677,0,0,43,0.4392156862745098,0,0.0,0,0.0,0,0.0,0.06916,0.1818420845055609,0.3091382301908618,0.02138,0.3264156129741616,0.6735843870258383,25.02874292176781,4.494434246616119,0.3260430068002205,0.208968939533174,0.2328616063223672,0.2321264473442381,11.187702185604364,5.624074821494974,22.731499565590926,12741.732335504676,61.31797350196884,13.397206132933004,19.857809965512413,14.155554470830872,13.907402932692545,0.5565153464436684,0.7678100263852242,0.7029312288613303,0.6045777426992897,0.11243072050673,0.7055837563451777,0.8994708994708994,0.871264367816092,0.7222222222222222,0.1269230769230769,0.5059084194977843,0.7022397891963109,0.6482449589245706,0.5671175858480749,0.1086739780658025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020974131903985,0.0043200048676111,0.0063852682015673,0.00873850530915,0.0109659830729166,0.0129863515991036,0.0150855254434369,0.0172744917764838,0.0193308854363768,0.0215563588698528,0.0235487179487179,0.0257216230097586,0.0279926751985515,0.0301687720238217,0.0322260988046821,0.0342763198709597,0.0363474350605617,0.0383105961502522,0.040203932993445,0.0422190006362052,0.0570792482806196,0.0706017912323888,0.0841182338425998,0.097403349226899,0.1101377381392157,0.1255426381212544,0.1391305271431454,0.1516649794874527,0.1628195528933576,0.1740587571835222,0.1872552509789961,0.1999328066239663,0.2117953411344272,0.2229306340651154,0.2330287565994687,0.2440542910095775,0.2544342986152247,0.2639555585603858,0.2741000818107444,0.2825388814974537,0.2894078688372739,0.2966356561933181,0.3038361354487331,0.3110229139438122,0.3174884624726742,0.3235156384787913,0.328574288645862,0.3332909315253202,0.3376446826691525,0.3428379074096075,0.3431673671731867,0.3440673767649244,0.3443466734354288,0.3444836869988131,0.3445651040502897,0.3442592734812994,0.3427100219319157,0.3432779207071706,0.3429764133926577,0.3437528005305325,0.3445009285486503,0.3448554958938724,0.3469724847369742,0.3489172458488837,0.3504810806919884,0.3504608594054265,0.3538854950987356,0.3560584718439916,0.3585803787056806,0.3627967814816283,0.3636487530095852,0.3671148429611521,0.3692268597928975,0.3711024285604842,0.3746452223273415,0.380768767321364,0.3858797745773325,0.3855695679139962,0.3824756606397774,0.3860958366064415,0.0,2.3216279263895028,60.79502276122417,203.97003771339487,306.85046902662174,fqhc4_80Compliance_baseline,10 -100000,95636,42663,403.9483039859467,6758,69.40900915973064,5278,54.508762390731526,2081,21.362248525659798,77.29129418892526,79.69205534798745,63.29829466637945,65.07021080730377,77.0295226296413,79.4310441945557,63.20254672101076,64.97771060185809,0.2617715592839573,261.0111534317525,0.0957479453686929,92.50020544567406,118.73202,83.21754801614641,124149.92262327994,87014.87725976245,279.14965,175.06458981227448,291227.2366054624,182392.6343764633,308.05692,148.00404368324095,317779.7900372245,151436.81350584712,3760.3517,1704.0310552696794,3883674.338115354,1733521.0017876944,1271.3119,555.4054118208819,1310414.4778117028,561840.2085207257,2041.7955,851.7063811846144,2096222.2384875985,856772.8466255915,0.37893,100000,0,539691,5643.178301058179,0,0.0,0,0.0,23565,245.702455142415,0,0.0,28530,293.92697310636163,1862143,0,66818,0,0,4673,0,0,42,0.4391651679283951,0,0.0,0,0.0,0,0.0,0.06758,0.1783442852241838,0.3079313406333234,0.02081,0.3244650900900901,0.6755349099099099,24.868020720031463,4.478701797262361,0.315081470253884,0.2303902993558166,0.2258431223948465,0.2286851079954528,11.131241055599563,5.5965527061624005,22.194111544897464,12670.392369795663,59.86861609296965,14.41589898748065,18.908429153533547,13.32146760800298,13.222820343952485,0.5570291777188329,0.7796052631578947,0.6993385447985568,0.575503355704698,0.1184755592377796,0.7055435565154787,0.896551724137931,0.8458049886621315,0.7243816254416962,0.1467181467181467,0.5039856004114168,0.7209876543209877,0.646481178396072,0.5291529152915292,0.110759493670886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451303141112,0.0045219507249315,0.006912091592826,0.0090234732242658,0.0109167862120888,0.0129245811478331,0.0149377001040031,0.0172360977801376,0.019528054964829,0.0216042430323756,0.0237201575190745,0.0257071256906928,0.0277763489532431,0.0298112196529409,0.0314971197324138,0.0335112324686607,0.0353808048252204,0.0371612501297892,0.0392783194081719,0.0413360994985456,0.0555334935729961,0.0693747577697005,0.0828476925500078,0.0951959917477158,0.1074545895912271,0.1227202963747023,0.1369803388678925,0.1494934861574187,0.1610589002576685,0.1718396049170648,0.1860194300378465,0.1988304726839569,0.2108631762272776,0.2225956906367697,0.2335787339093634,0.2446489963402462,0.2541390173604129,0.2632752079791964,0.2721255265279244,0.2804331633530052,0.2883304200863555,0.2957659143823196,0.3025368326306314,0.3086205035324033,0.3158842130868401,0.3222294903916172,0.3280776076003309,0.3328872404695446,0.3376913099870298,0.3424454921226048,0.3423680841027023,0.3425546871769425,0.3424707808706453,0.3420515271321197,0.3424851401075573,0.3424316473788556,0.341944806122773,0.3429955671275316,0.3441832532601235,0.3457345716642163,0.3458397621646031,0.3472473327637931,0.3477986096481988,0.3478055686644644,0.3487149814359419,0.349717632294499,0.3491308064975776,0.3527019358093196,0.3547954393024815,0.3551495282264513,0.3574799541809851,0.3603944562899787,0.3635036496350365,0.3649325626204239,0.3645306083468627,0.3645820733034958,0.3655258634161588,0.3606934001670844,0.3582933031929923,0.3629658385093168,0.0,2.641477990850656,60.83686263910815,192.711400509064,300.27795047720025,fqhc4_80Compliance_baseline,11 -100000,95626,42713,402.88206136406416,6838,70.28423232175349,5422,56.05170142011587,2132,21.866437998034005,77.27514686010801,79.68612592539615,63.27600815666828,65.0565483011138,77.00492772559006,79.41775001738007,63.17633218006816,64.96018865595514,0.2702191345179443,268.3759080160826,0.0996759766001247,96.359645158671,117.58054,82.41540520117834,122958.29586095831,86184.71693380283,282.34862,176.94308472724472,294608.0040993035,184383.6467246724,312.35699,149.70758980474653,322966.348064334,153658.41886750393,3867.72378,1747.7822980784135,4001896.4716708846,1785299.665618762,1299.55173,569.2111050188964,1342901.5016836424,579452.3410184857,2087.15888,872.959669438844,2143976.094367641,881648.7867877629,0.37992,100000,0,534457,5589.013448225378,0,0.0,0,0.0,23743,247.60002509777675,0,0.0,28894,298.4021082132474,1862812,0,66881,0,0,4602,0,0,59,0.6169870119005291,0,0.0,0,0.0,0,0.0,0.06838,0.1799852600547483,0.311787072243346,0.02132,0.3332402624598632,0.6667597375401368,24.89748232814877,4.437898930374043,0.3321652526742899,0.2203983769826632,0.2264846919955735,0.2209516783474732,11.19069941431598,5.704928169723124,22.72209867125096,12731.842230333988,61.51017841021757,14.18667406985844,20.40281570580067,13.813351994313098,13.10733664024537,0.5592032460346735,0.7665271966527196,0.7018323153803443,0.5765472312703583,0.1202003338898163,0.7119370979270908,0.8987654320987655,0.8408071748878924,0.7439446366782007,0.1621621621621621,0.5060899826000497,0.6987341772151898,0.6560885608856089,0.5250266240681576,0.108626198083067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0043582700708472,0.0067677946324387,0.0088471305231081,0.0107812325186383,0.012974580413883,0.0151323571399437,0.0173454073975763,0.0195986218600799,0.0217787516382699,0.0237760659739673,0.0259497442008588,0.0278206473650636,0.0299232077513786,0.0319599339116067,0.0342837043780518,0.0365068670640062,0.0388426147103421,0.0407526120800899,0.0427795217287014,0.0583003229616313,0.0728461554582224,0.0866852250643416,0.0987452723844038,0.1103317875967845,0.1258539065230515,0.1384227920470123,0.1512434841006726,0.1623698376515662,0.173384063111283,0.1871059677001468,0.2000433768909613,0.2119639859606287,0.2232432669532415,0.2340249420593753,0.244892517913681,0.2547878353723374,0.2643381108227062,0.2731846691481975,0.2814471008581965,0.2886686472936589,0.2960616619153204,0.3036521821699445,0.3102068285882536,0.3164142397974092,0.3227989576772504,0.3282518412566969,0.3336647926467026,0.3383080699840237,0.3438550517483258,0.3435968075193453,0.3426927534632154,0.3425582084915917,0.3423243423243423,0.3425291805621724,0.342009545880078,0.3418779030135857,0.3429722839049264,0.3439170609233292,0.3445456168541332,0.3461228014191053,0.3466508360542198,0.3477923114069159,0.3484196368527236,0.3481352908560546,0.3485509708103588,0.3499814280408012,0.3516476572620138,0.3524367434802555,0.3549880287310455,0.3573094334446019,0.3623963626638138,0.3635100132667888,0.3640380952380952,0.3674184988627748,0.3675851281434243,0.3665375677769171,0.3733031674208145,0.3701425775789768,0.3665632273079907,0.0,2.405482013159499,61.64469315447668,204.65188270343376,304.44402934924085,fqhc4_80Compliance_baseline,12 -100000,95681,42885,404.6048849823894,6733,69.12553171476051,5256,54.31590388896437,2126,21.812063001013787,77.28391542799022,79.67998446097752,63.28504443165552,65.05906414010248,77.01693796950367,79.41430740370062,63.18623066297583,64.96372158179967,0.2669774584865507,265.6770572769034,0.0988137686796903,95.34255830280358,118.8957,83.32681564220299,124262.60177046644,87088.15296893111,282.99253,178.4692549327623,295150.6150646419,185909.20342885453,311.86243,150.06457656650124,321965.35362297634,154003.27509937686,3778.88094,1709.8667790913355,3907943.562462767,1745681.2758854968,1261.46073,552.4958269881392,1305463.3208264962,564564.3568340486,2089.52042,871.9922703844336,2146365.485310564,879315.0511114678,0.38074,100000,0,540435,5648.300080475748,0,0.0,0,0.0,23887,248.99405315579892,0,0.0,28740,296.4538414105204,1856224,0,66642,0,0,4700,0,0,58,0.5957295596826956,0,0.0,0,0.0,0,0.0,0.06733,0.1768398382098019,0.3157582058517748,0.02126,0.3319695259593679,0.6680304740406321,24.90112488989484,4.444549805685051,0.3198249619482496,0.2258371385083714,0.2205098934550989,0.23382800608828,11.221678733967307,5.721084575303856,22.721195213227137,12766.500697395884,59.61690984520381,14.085370933723482,19.021420707912604,12.95681622410362,13.553301979464107,0.552130898021309,0.785172704296546,0.7031528851873885,0.5539257981018119,0.1187957689178193,0.7259148618371919,0.924812030075188,0.877030162412993,0.6931818181818182,0.1714285714285714,0.4927240234873627,0.7144670050761421,0.6432,0.5128491620111731,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205853144443,0.0045135507951963,0.0067717798511629,0.0090344610319,0.0112939165471139,0.0137723086952978,0.0158906624509153,0.017822854107938,0.0201278445410381,0.022239750865619,0.0244065084022406,0.0264069130626881,0.0285249747885323,0.0304648046995774,0.0326403369325102,0.034417498319458,0.0366087434072139,0.0384906835521876,0.0406411883412736,0.0425882303891934,0.0579269566670845,0.0723484451889854,0.0858024496992978,0.098553012365167,0.1102819324670938,0.1266104188941702,0.138865880853775,0.151681683600656,0.1634740780331373,0.1746989245003542,0.1879688712598085,0.2011309349712391,0.2125412397513093,0.2232735396543794,0.2337135614702154,0.2447271435549043,0.2548324706250628,0.2642494054529265,0.2733059034802573,0.2813446535107847,0.2889530568698395,0.295939669731657,0.3039469312194427,0.3105469219129056,0.3173089802130898,0.3228924885179515,0.3282771934662973,0.3332908715701511,0.339257703625922,0.3443594924005335,0.3447797012349674,0.3449667387441982,0.3456377730796335,0.3452707977908221,0.3451341932024664,0.3445278788716389,0.343078095722044,0.3427603112712436,0.3455137543919787,0.3459905026431323,0.3468519355324597,0.3478823084727555,0.3489581131915972,0.3492074229407653,0.350029163021289,0.3501787028277094,0.3495418098510882,0.3520002533971049,0.3516010720835096,0.3549785271194528,0.357573542846702,0.3584574468085106,0.3605467770253323,0.3645535310947146,0.3694315004659832,0.3714925725064843,0.3716638706725637,0.3712090578245046,0.3732962447844228,0.3829869130100077,0.0,2.3519483817054727,58.90811860115653,201.5111078718079,294.26828390768566,fqhc4_80Compliance_baseline,13 -100000,95656,42923,404.6479049928912,6651,68.30726770929162,5234,54.13147110479217,2004,20.57372250564523,77.35161970545354,79.75774359697016,63.31721993396855,65.09455480057815,77.10734740080255,79.5128474429787,63.22676166923478,65.00567945599178,0.2442723046509911,244.89615399146203,0.090458264733769,88.87534458636992,119.394,83.48929637171045,124816.0073597056,87280.77315768007,281.39929,177.35408359378758,293587.51149954,184818.4218249793,307.10446,147.40307113495788,316947.54118926154,150894.34237598185,3704.73398,1681.9174770715513,3835922.221292966,1721380.653752232,1239.32429,551.1446371503537,1278126.0035962197,558938.8140215075,1962.0685,826.5903284246679,2017042.0674082127,836720.6810923569,0.38185,100000,0,542700,5673.454879986618,0,0.0,0,0.0,23783,248.03462406958263,0,0.0,28464,293.4682612695492,1859919,0,66756,0,0,4804,0,0,55,0.5749770009199632,0,0.0,0,0.0,0,0.0,0.06651,0.1741783422810004,0.3013080739738385,0.02004,0.3346727898966705,0.6653272101033295,25.01001785555376,4.355709434394635,0.3366450133740924,0.2164692395873137,0.2329002674818494,0.2139854795567443,11.169294165534264,5.755191617593397,21.37328201574733,12702.382845241924,59.29996371505557,13.556267960440854,19.802216937874068,13.551627977860106,12.38985083888054,0.5638135269392434,0.7969991173874669,0.6821793416572077,0.5758818703855619,0.1285714285714285,0.7295918367346939,0.9238578680203046,0.8822222222222222,0.6725978647686833,0.2064777327935222,0.5049197307094769,0.7293640054127198,0.6135670731707317,0.5469083155650319,0.1065292096219931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505334292459,0.0046544643309841,0.0067083443278462,0.0089713890920913,0.0112502415852058,0.0133937665512324,0.0157854484270636,0.0183190205348663,0.020521472392638,0.0226262419338318,0.0246632400767392,0.0268926042769208,0.0289277885832484,0.0307738303882554,0.0328981345673146,0.0348552096588969,0.0369176555941338,0.0389702065815426,0.0412917052465122,0.0432175998331769,0.0575703434368763,0.0710666275807194,0.0846845712246675,0.0973980198436497,0.1095563716179139,0.1248505116997745,0.1379888742621767,0.1505696047401344,0.1619832058619029,0.1726870543767717,0.1858178053830227,0.1991246790670465,0.2109966907602543,0.2215958227058269,0.2323517103147507,0.2432288606303839,0.2531596062085843,0.2628900224076388,0.2719375936776128,0.2802978235967927,0.2891822778658459,0.2967665006663393,0.3035773434912223,0.309897455556088,0.3164311039875662,0.3224749682870056,0.3274261076048241,0.3320841484793821,0.3375547600894253,0.3417604845611956,0.3420461424631735,0.3420134117517726,0.3422926458585461,0.3423931870669746,0.3423154581625987,0.3414037287980056,0.3398033698985236,0.3403592225047158,0.3415350465294971,0.3422672686069128,0.3433367052564535,0.3443810576600407,0.3452348543547002,0.3474806979961619,0.3485647194134279,0.3485933769334579,0.3490016757079155,0.3534431372549019,0.3564425770308123,0.3575839138695377,0.3571979842920053,0.3605850168350168,0.3594775326542091,0.3651659845384266,0.3671407185628742,0.3690547145070926,0.367952066369642,0.3705645161290322,0.3619332066250339,0.3595336592704024,0.0,2.276255521012423,60.5266679655824,194.26923406238936,293.0830395395155,fqhc4_80Compliance_baseline,14 -100000,95788,42862,403.610055539316,6751,69.18403140268093,5256,54.26567002129703,2070,21.265711780181235,77.3507064425629,79.6816044249581,63.34838135415546,65.07104914214985,77.08740169315129,79.41764120519773,63.24978992869336,64.97490071552855,0.2633047494116027,263.9632197603703,0.0985914254620965,96.14842662129774,118.8451,83.2192170149925,124070.96922370236,86878.54116903212,280.94644,176.74408789753377,292708.2306760763,183923.88179890357,307.60382,147.49651667388918,317458.5856265921,151135.08131943934,3765.74544,1710.510228467651,3889249.217020921,1743640.9868330583,1255.69958,550.0991329433492,1295123.3975028188,558496.2134540332,2038.59296,865.4426279334825,2095708.627385476,874427.8366936569,0.3816,100000,0,540205,5639.589510168288,0,0.0,0,0.0,23738,247.19171503737425,0,0.0,28370,292.5314235603625,1864127,0,66900,0,0,4654,0,0,53,0.5428654946339834,0,0.0,1,0.0104397210506535,0,0.0,0.06751,0.1769129979035639,0.3066212412975855,0.0207,0.3306440198159943,0.6693559801840057,24.83449028845593,4.41236986188973,0.3375190258751903,0.2113774733637747,0.2256468797564688,0.2254566210045662,11.025573270898995,5.574740444594659,22.189708431767844,12710.403976221714,59.45386893419075,13.030611371845897,20.01534031374881,13.239029584927732,13.1688876636683,0.5578386605783866,0.7695769576957696,0.7080045095828635,0.5809443507588533,0.1113924050632911,0.7130111524163569,0.922437673130194,0.88,0.6970802919708029,0.15,0.5044745589363334,0.696,0.649546827794562,0.5460526315789473,0.1005405405405405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0045924574209245,0.0068596710199194,0.0091012514220705,0.0113469985358711,0.0133669968542254,0.0156842362724715,0.0179710381565653,0.0198555034386911,0.0218276708964388,0.0242023075189048,0.0263295607293473,0.0285699604336878,0.0306149760144942,0.0327294100663043,0.0347837765243083,0.036826257463034,0.0390727858927442,0.0410102499662488,0.0430785887545936,0.0576917057086511,0.0720700939953786,0.084921483531459,0.0977909029762905,0.1095207479157224,0.1248784303776058,0.138004538995058,0.1498834523644801,0.1615930809887352,0.1724533439097857,0.1859794169573267,0.1985234507582718,0.2105085850901978,0.2219963940337649,0.2324584070991082,0.2433476062446753,0.2538898796255016,0.2633779076300708,0.2733363564221743,0.2818015337072221,0.2892501819946615,0.2969060360339308,0.3044893032942067,0.3107839378983181,0.317103969111594,0.3232181358960143,0.3283768743043658,0.3336343861702263,0.3375772254529912,0.3415184164369832,0.3420794144162327,0.3416594415314534,0.342347801578354,0.342496274541009,0.342484087799655,0.3416863478820967,0.3407623610031566,0.3412642220868391,0.3411278994072703,0.3422423515511716,0.3421518082263952,0.3426076602500496,0.3453752659406399,0.3468261476776141,0.3476789986226228,0.3500537817771598,0.3500258427611554,0.3521645296432652,0.3544317255555161,0.3567550303417438,0.3589024726537365,0.3607404218682737,0.3622579001019368,0.3654618473895582,0.3681913076485101,0.3683075817463169,0.3662889958094055,0.3795816939324912,0.3844856661045531,0.386907095256762,0.0,2.352275999428952,58.98181739629988,197.13027154513404,297.78193169182714,fqhc4_80Compliance_baseline,15 -100000,95729,42764,402.9499942546146,6697,68.72525566965079,5213,53.78725360131204,2068,21.21614139915804,77.31652017658898,79.67772911145116,63.31665033110207,65.0626347164379,77.0654157681681,79.4278454027086,63.22364305470775,64.97288284575332,0.2511044084208862,249.8837087425585,0.0930072763943172,89.75187068458013,117.39772,82.31906681295534,122634.10251856803,85990.6427964489,279.6287,176.2472647941672,291462.4304024904,183472.59523027128,310.08126,149.44714940407704,319298.74959521147,152576.7499667118,3719.53013,1686.4517615505422,3840636.400672733,1717136.418431353,1266.20703,560.0694650349614,1304762.872274859,567210.1675657826,2027.60252,847.8156208034803,2081423.8736433056,853858.8642391023,0.3799,100000,0,533626,5574.277387207639,0,0.0,0,0.0,23616,246.01740329471735,0,0.0,28672,294.9576408402887,1867402,0,66977,0,0,4744,0,0,46,0.4805231434570506,0,0.0,0,0.0,0,0.0,0.06697,0.1762832324295867,0.308794982828132,0.02068,0.32589348778076,0.67410651221924,25.057794417017345,4.534319719766742,0.3309035104546327,0.2159984653750239,0.2290427776712066,0.2240552464991367,11.33579844423164,5.814083831290362,22.094521631293865,12697.703969782187,59.0151548395676,13.356427647524074,19.4526651506196,13.35100422144603,12.855057819977905,0.564358334931901,0.7895204262877442,0.7066666666666667,0.5871021775544388,0.1138698630136986,0.7154236060825488,0.9164556962025316,0.8861047835990888,0.7127659574468085,0.1358490566037735,0.5099164926931107,0.7209302325581395,0.645412130637636,0.5482456140350878,0.1074197120708748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026438143859969,0.0048864062610881,0.0069424004059883,0.0093581393458447,0.0117899576822916,0.0140040331615505,0.0158995645212283,0.0178303360803896,0.0199793458144599,0.0222677245968774,0.024413501763596,0.0265019663411678,0.0286390045760707,0.0306656231979569,0.0328327109937491,0.035140105802612,0.0373065576315925,0.0392099912866686,0.0412270397821183,0.0429337917382924,0.057622234519049,0.071061581122796,0.0846293402686745,0.0966130745207726,0.1092366090257275,0.1245557999830781,0.1376713200661942,0.1494853590777975,0.1608050937994102,0.1723597820023173,0.1855462438330784,0.1988399649392388,0.2104181393072698,0.221924578226309,0.2327161037474129,0.2437180638224764,0.2539280170632838,0.2629962192816635,0.2720473066533493,0.2807520020163369,0.2890287790596758,0.2962715988722376,0.3041367715659113,0.3102538265918142,0.3167235992754768,0.3221156812656572,0.3281674789210589,0.3331210515589973,0.337768334866367,0.342779010779962,0.3428941125727841,0.3420773166728729,0.3418252723496248,0.3411640242311817,0.3413126377882381,0.34039907904835,0.3394131641554322,0.3390821638004875,0.3402102519250227,0.3405927095292766,0.3414611202046998,0.3432542829949238,0.3445954474691799,0.3461244835638584,0.3485290923570722,0.3478397076099725,0.3485900402845633,0.35208562883677,0.3554369204832818,0.3573188175460903,0.3586901992976695,0.3607055312799744,0.3651795292484382,0.3676626725314728,0.3694040356640075,0.3708025720409621,0.3697660098522167,0.3687309644670051,0.3810444874274661,0.3783365570599613,0.0,2.6145432752312097,60.50752965414848,189.03009244969547,294.8618263688637,fqhc4_80Compliance_baseline,16 -100000,95681,42820,402.514605825608,6823,70.07660873109604,5301,54.848925073943626,2100,21.59258368955174,77.40264542862671,79.7820920232446,63.35728834693722,65.1114781846886,77.134759289877,79.51374816955108,63.258607318734825,65.01480755578912,0.2678861387497164,268.3438536935228,0.0986810282023924,96.67062889947432,118.88206,83.24540533904504,124248.3460666172,87003.06783901196,282.06951,177.23035656084667,294275.37337611435,184703.82475188043,306.11,147.36017760404525,315852.16500663664,150840.51651810692,3818.32483,1725.356391154498,3955152.736697986,1767708.584937968,1303.08356,574.2987692159821,1347243.0681117463,585561.2391341872,2069.62046,867.7223418613203,2130498.949634724,879917.9535552515,0.38145,100000,0,540373,5647.652093937146,0,0.0,0,0.0,23851,248.72231686541735,0,0.0,28354,292.32554007587714,1865019,0,66835,0,0,4808,0,0,48,0.5016669976275332,0,0.0,1,0.0104513957839069,0,0.0,0.06823,0.1788701009306593,0.3077825003664077,0.021,0.3230340988169798,0.6769659011830201,25.09496673836567,4.559639468305454,0.3338992642897566,0.2120354650066025,0.2214676476136578,0.232597623089983,11.40913039189943,5.811624246170582,22.31223654291337,12812.775647699887,59.6251378761114,13.195673394975776,20.015346237838592,13.09523028479089,13.318887958506146,0.5459347292963592,0.7588967971530249,0.6819209039548022,0.5698466780238501,0.1338199513381995,0.7323008849557522,0.8991825613079019,0.8779443254817987,0.7630662020905923,0.1446808510638297,0.4818757921419518,0.6908850726552179,0.6116653875671527,0.5073280721533259,0.1312625250501002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759283450294,0.0043479582839247,0.0069182389937106,0.0093943918019966,0.011714340915793,0.0139400851271816,0.0162202942285929,0.0184015268266296,0.0205916917888712,0.0227188996684268,0.0247852559503064,0.0267226511169513,0.0291383919391322,0.0310408041360275,0.0333880170448096,0.035533414639188,0.0375141079138925,0.0397438957319414,0.0418811685542832,0.0442214092903521,0.0588020223967909,0.0724434346501376,0.0856147493677793,0.09853791942779,0.1106892369350841,0.1264388489208633,0.1394902160533129,0.1514248304787047,0.1635908998621515,0.1747327106411727,0.1879004555097294,0.2010259074086098,0.2128524975258561,0.2239426147049818,0.234932335790516,0.2460132890365448,0.2566936158349596,0.2664696230698343,0.275,0.2830378588585154,0.2909712516892087,0.2979617566715696,0.3046847315079496,0.311262161482953,0.3179607234264504,0.323512754850783,0.3295937765771174,0.3341761536897743,0.3391857473463741,0.3446522655426765,0.3450036959881728,0.3440969410860585,0.3446362602014299,0.3447898202988774,0.3442882979038809,0.3430702679567723,0.342520806303598,0.3432213133602707,0.3450099817427952,0.345036125234145,0.3470798748383953,0.3478732211140458,0.3490203450724819,0.348311346235407,0.3494769748707466,0.3514430353321852,0.3527296595416797,0.3554290745574038,0.3587568632971983,0.3606922617863536,0.3609483705602343,0.3627996575342466,0.3656574613630605,0.3671331345109734,0.3706970128022759,0.3771773906861002,0.3804532141205488,0.3828837963901845,0.3910414949161858,0.3940661848611639,0.0,2.199988866114738,59.54001976015735,193.5856781036748,303.4654724496153,fqhc4_80Compliance_baseline,17 -100000,95727,42840,402.61368266006457,6865,70.49212865753654,5329,55.094174057475946,2176,22.386578499273977,77.33907921770925,79.7056672874268,63.32552877917672,65.07540933971983,77.07054417966116,79.43827104099019,63.2276119816578,64.98047966577855,0.2685350380480997,267.3962464366184,0.0979167975189128,94.92967394128016,118.9386,83.32467464228361,124247.70440941426,87044.0676531006,285.0074,179.23998378055026,297170.7564219081,186682.16258793263,311.1355,149.02289652771813,321488.2843920733,152947.89747199515,3843.57643,1732.207077316274,3971939.285676977,1766323.9914718675,1287.17347,564.6613287408999,1324258.892475477,569600.5540791679,2140.1457,885.4491211312773,2201614.3616743446,894051.9035909874,0.38114,100000,0,540630,5647.622927700649,0,0.0,0,0.0,24021,250.33689554671096,0,0.0,28878,298.1499472458136,1859651,0,66720,0,0,4737,0,0,42,0.4387476887398539,0,0.0,0,0.0,0,0.0,0.06865,0.1801175421105105,0.3169701383831027,0.02176,0.3235294117647059,0.6764705882352942,24.879130495748147,4.475336021604134,0.3267029461437418,0.2112966785513229,0.2347532370050666,0.2272471382998686,11.024002599282689,5.520060787132333,23.034750212716904,12796.158990679814,60.226672511126296,13.299184618104308,19.76829246947047,13.968445977698993,13.190749445852523,0.5507599924939013,0.7539964476021315,0.7099368179207353,0.5739408473221422,0.1090008257638315,0.7156937073540561,0.9093406593406592,0.8715596330275229,0.7381818181818182,0.1229508196721311,0.4965087281795511,0.6797900262467191,0.6559386973180077,0.5276639344262295,0.1054808686659772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876519202722,0.0046335726162955,0.0068714919358931,0.0093683953828645,0.0115764523971801,0.0138406542484392,0.0162953143323306,0.0185300513532552,0.0206854945908914,0.022993096949958,0.0250956341595987,0.0272793566344504,0.0294447358407125,0.0316498732768745,0.0337740893279245,0.0357800252321565,0.0380921795522589,0.0397990846729418,0.0416987292806189,0.0439747049079562,0.0592239903103203,0.0733873921004446,0.0857133870156014,0.0983922018107446,0.1110689317009901,0.1267769504146217,0.1400154889084563,0.1525833342205282,0.1644119595648736,0.1745222793257727,0.1879956896551724,0.2006237343931042,0.2125082964300869,0.2233505871023517,0.234652865716016,0.2455710516396532,0.2548159067305437,0.2640180078784468,0.2738158746013189,0.2820207206381223,0.2899047310359197,0.2975338106603023,0.3046851897850798,0.3115292032430749,0.3178376410629778,0.3236705465462509,0.328743674642344,0.3339007164270108,0.3397836118974677,0.3448148538875409,0.3448363973802063,0.3439585081649218,0.3439015450546971,0.343782563390066,0.3438299518057952,0.3433538239847929,0.3417657314946901,0.3427254772876892,0.3438625372980759,0.3443434289095701,0.3460019557695201,0.3484388938447814,0.3479940377469401,0.3483726150392817,0.3486870633582269,0.3493447501696862,0.3493331043562883,0.3518337176611807,0.3534351953138784,0.3566545396393875,0.3580786026200873,0.3584063659336523,0.358917055105038,0.3633624352932086,0.3642390377876693,0.3666866387058118,0.3670727897532021,0.3758734073160707,0.3914261697954609,0.3938688397361273,0.0,2.191597961301618,58.00481482049835,207.63112726276287,299.15990182016645,fqhc4_80Compliance_baseline,18 -100000,95689,42599,401.9688783454734,6715,68.96299470158534,5197,53.75748518638506,2117,21.716184723426935,77.30793472821749,79.68467939874988,63.31631099018998,65.07044627939308,77.04372121748175,79.42058322409747,63.21892202876455,64.97572153504908,0.2642135107357433,264.0961746524084,0.0973889614254375,94.72474434400624,119.5689,83.7728364625043,124955.74203931486,87546.98707532139,280.932,176.6172194291523,293034.10005329765,184019.70908793312,301.97705,144.54606251279182,312271.0133871187,148459.10166979197,3792.7424,1705.506591093999,3927448.6722611794,1746178.2974991887,1300.09424,566.3287272398184,1349496.410245692,582673.1465892821,2082.05518,869.6476010931765,2139229.9428356444,878697.0502435178,0.37985,100000,0,543495,5679.806456332494,0,0.0,0,0.0,23758,247.69827252871283,0,0.0,27970,288.9987354868376,1858156,0,66739,0,0,4754,0,0,45,0.4702734901608336,0,0.0,1,0.010450522003574,0,0.0,0.06715,0.1767803080163222,0.3152643335815339,0.02117,0.3269530696157663,0.6730469303842337,24.863166717643352,4.517637070259129,0.3271117952664999,0.212430248220127,0.2226284394843178,0.2378295170290552,11.40091038262264,5.85263044643856,22.65991023556129,12666.554446476375,58.84817042706617,13.02220907466779,19.201571457127336,12.984653174928342,13.639736720342706,0.5537810275158745,0.7771739130434783,0.6935294117647058,0.6032843560933449,0.1156957928802589,0.7011406844106464,0.9056603773584906,0.8419753086419753,0.723404255319149,0.159533073929961,0.5038639876352395,0.7121418826739427,0.6471042471042471,0.5645714285714286,0.1041879468845761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0044181427587045,0.0066545613163046,0.0091208255464369,0.011237897648686,0.0133395788358926,0.0156417289514739,0.0179275140377743,0.0199656504937741,0.0223562047680953,0.0248288022306966,0.0268483249314674,0.0287653622666735,0.0307413359706597,0.032887540503168,0.0348495813087976,0.0368969661803713,0.038735465116279,0.0405600807248593,0.0422317900816279,0.0563987924244481,0.071272308578008,0.0839777150591222,0.096822374856686,0.1087540987063375,0.1235154143091322,0.1368825326769648,0.1489323199420919,0.160534188034188,0.1713669666705999,0.1856765925367508,0.1981825066262779,0.2104313222358735,0.2217423629485469,0.2325530229692863,0.2436444198283024,0.2533616024103107,0.2631981637337414,0.2723641356770804,0.2810098163866075,0.287962116037004,0.295103831529687,0.3018007885109456,0.3081935344517243,0.3146437914461276,0.3203654546576949,0.3262974389846239,0.3316834209317753,0.337688481369404,0.3424934838120692,0.3428876023912662,0.3427364818239531,0.342094479065101,0.3418942239366562,0.3417689428396737,0.3407764604705449,0.339741960086437,0.3404536082474226,0.3409473431113248,0.3414052269995874,0.3422980582707121,0.343208551899539,0.3436710991415586,0.3448291336639217,0.344929288045449,0.3457052797478329,0.348258849176754,0.3528182393920203,0.353867432705607,0.355129740518962,0.3578183821503994,0.3597753410002674,0.3615751032073674,0.364488854727133,0.3644115974985787,0.3662408976960726,0.3716638706725637,0.3727511623205983,0.3712183156173344,0.3639817629179331,0.0,2.110525948476373,58.04073645314767,195.79627442687053,296.35861948430414,fqhc4_80Compliance_baseline,19 -100000,95720,42945,405.0355202674467,6879,70.84203928123694,5355,55.49519431675721,2072,21.41663184287505,77.38171245272493,79.75478818732824,63.34258245905804,65.09474984405712,77.12546604904173,79.49458759903392,63.24891448057387,65.00101026264588,0.2562464036831926,260.2005882943246,0.09366797848417,93.73958141124206,118.78196,83.1772549482996,124092.22732971166,86895.61974560664,283.8708,178.6831293266586,296098.1299623903,186208.71565187385,310.1514,148.85026508904514,320891.56916005013,153116.4538832067,3862.70213,1738.7578530753603,4007712.4843292935,1788997.429574455,1300.74493,568.924470807394,1346406.445883828,581946.8122920301,2052.70184,856.9030179892083,2122989.0305056414,877388.0131415615,0.38191,100000,0,539918,5640.555787714166,0,0.0,0,0.0,23922,249.4358545758462,0,0.0,28688,296.5315503552027,1862342,0,66778,0,0,4698,0,0,58,0.6059339740910991,0,0.0,1,0.0104471374843292,0,0.0,0.06879,0.1801209709093765,0.3012065707224887,0.02072,0.3264542936288088,0.6735457063711912,25.0578937587995,4.421650004177212,0.330532212885154,0.2134453781512605,0.2248366013071895,0.2311858076563959,10.96901611089606,5.485294414864966,22.06973248167381,12766.13186273749,60.35197500467787,13.545676349527032,19.90221989984079,13.263957620568428,13.640121134741626,0.5497665732959851,0.7847769028871391,0.6932203389830508,0.5780730897009967,0.1001615508885298,0.7205663189269746,0.9255583126550868,0.8648018648018648,0.7441860465116279,0.123015873015873,0.4926488911039123,0.7081081081081081,0.6383296047725578,0.53276955602537,0.0943204868154158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023395721925133,0.0045717645389208,0.0067073913219953,0.0085427544034292,0.0107716093333604,0.0128105906313645,0.0151516696405811,0.0172832700396096,0.0195352831133782,0.0219572115876752,0.0242252134955865,0.0264679007402388,0.0285679027580675,0.0306860321384425,0.0327956822802183,0.0349455139471888,0.03694190995992,0.0389436546643146,0.0409655344551448,0.0428815572830912,0.0573639525047777,0.0707959969851771,0.0843510008812791,0.0973649608162836,0.1100388136522803,0.1259860837933295,0.1388815210125937,0.1515670910871694,0.1637396914925437,0.1750136762954938,0.1896193175083776,0.201957218325106,0.2148194068321968,0.2258018671972363,0.23608025166641,0.2466953036777893,0.2568975131036021,0.2666126873812174,0.2756657442271923,0.2841048304919797,0.2911571079820897,0.2982919672188643,0.305076520648147,0.3111531915913612,0.3173777820973855,0.3232390460343871,0.3291679175422796,0.3336641726472235,0.3377916461661962,0.3425138168915621,0.343324947194231,0.3434060271261904,0.3431378068002702,0.3422240814736811,0.3421395955642531,0.3409115215963086,0.3409313648003541,0.3411841781999836,0.3416565890548619,0.3426087576157052,0.3423116518483856,0.3436623612592329,0.3454180937265057,0.3472343084097552,0.3484011907048204,0.3501207760837381,0.3515625,0.353416674499483,0.3560039163577873,0.3577570834158906,0.3591039475481491,0.3610815414094103,0.360685932041918,0.3588560885608856,0.3634298693923907,0.3623119178409362,0.3640978311029072,0.3707796193984039,0.3685236768802228,0.3580870917573872,0.0,1.70069878433218,59.649937766307886,206.13572914974637,298.0671145065776,fqhc4_80Compliance_baseline,20 -100000,95861,42998,404.12680860829744,6863,70.46661311690886,5373,55.50745350038076,2146,22.05276389772692,77.44506122741345,79.72377661130209,63.40474875222951,65.08467316981228,77.17905953498983,79.45585627072228,63.30717402249589,64.98837967145434,0.2660016924236146,267.9203405798063,0.0975747297336155,96.29349835793732,117.2105,82.06863442006956,122271.30950021384,85612.1200697568,281.51181,176.5684830404491,293107.97926163924,183633.50376112197,307.22924,146.6727378138743,316850.9195606138,150243.56077252812,3838.32141,1720.3394206778923,3966238.543307497,1757045.533838571,1295.2309,564.0317223334357,1335026.2463358403,572258.5704541055,2108.2817,879.9153383722866,2168072.2713095,891822.3826756264,0.38269,100000,0,532775,5557.786795464266,0,0.0,0,0.0,23712,246.7739748177048,0,0.0,28399,292.61117659945126,1874451,0,67385,0,0,4728,0,0,48,0.5007250080846225,0,0.0,1,0.0104317710017629,0,0.0,0.06863,0.179335754788471,0.3126912428966924,0.02146,0.3203534935100801,0.6796465064899199,25.13388081434665,4.495709629454798,0.3299832495812395,0.2149637074260189,0.2283640424343942,0.2266890005583473,11.109622775218602,5.57201980417328,22.8043281230209,12847.046461921069,60.44390747077015,13.503127763825226,20.0045856967286,13.646389256249126,13.289804753967209,0.5510887772194305,0.7748917748917749,0.6807670614777214,0.5778321108394459,0.1231527093596059,0.701098901098901,0.9238845144356956,0.8344671201814059,0.6840277777777778,0.1568627450980392,0.5,0.7015503875968992,0.6298798798798799,0.5452609158679447,0.1142263759086189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.0047305989728421,0.0069253622380175,0.0090333319800251,0.0115938789196659,0.013846639061562,0.0160209402754012,0.01821203870823,0.0205148628087696,0.0227402862985685,0.0246976787049077,0.0268906528828995,0.0290864273609613,0.0313830772079244,0.0334428864322436,0.0355797318359637,0.0376334077934971,0.0395938034298741,0.0418479107189203,0.0436795721524519,0.0581831831831831,0.0729918619349581,0.0866069185023871,0.0992906312961719,0.1114676486059968,0.1268628361548528,0.1400391762401397,0.1516738735484419,0.163483583394649,0.1750018728796327,0.1885458199443304,0.2016111615049026,0.2137894348307532,0.2246811948641802,0.2356934162254783,0.2459255817041192,0.2559412341715713,0.2658471081345304,0.2747896873086778,0.2835206078220473,0.2915028447199222,0.2991544947433663,0.3053655534780242,0.311909466499012,0.3179903109481429,0.3237239900949846,0.3291494425654516,0.33449193435443,0.3398955403776617,0.3444993134044576,0.3446747753936504,0.344888301969847,0.345642540620384,0.345857181989879,0.3465461013934183,0.3451319325677986,0.3446212623535726,0.3452795915361579,0.346975634690748,0.3481075697211155,0.3489759655849621,0.3491872247131091,0.3499434697039487,0.3514485469856374,0.3527659676683241,0.3545766947828803,0.3548671308796362,0.3583620960150612,0.3604305735155349,0.3641843127924498,0.3667641414602942,0.3690730457069628,0.3735435663627153,0.3750096472948985,0.3814560701353154,0.3839942147764252,0.3863352095059412,0.3845020004211413,0.3876101165103722,0.3865546218487395,0.0,2.055185525175033,60.38266814684375,199.50474229225503,303.7620067974251,fqhc4_80Compliance_baseline,21 -100000,95672,42523,400.51425704490345,6898,70.79396270591187,5385,55.5752989380383,2194,22.4935195250439,77.29747507811412,79.70248617523072,63.28577397120039,65.06663818140521,77.02391837917021,79.43177446229319,63.1842911177225,64.96969629655591,0.2735566989439064,270.7117129375263,0.1014828534778899,96.94188484930066,117.26858,82.2106487833033,122573.5638431307,85929.6855749888,283.3861,177.72259959783003,295464.9740781002,185021.47921840247,304.88182,146.4624918790766,314560.41475039715,149948.8094416982,3872.9145,1741.5760353138628,3997778.409566017,1770022.6767642158,1269.76646,555.4522407334103,1306506.5849987457,559886.664482277,2150.20974,900.6527420368337,2205305.920227444,902583.55647821,0.37903,100000,0,533039,5571.525629233213,0,0.0,0,0.0,23828,248.27535747136048,0,0.0,28248,291.24508738188814,1866119,0,66959,0,0,4747,0,0,49,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06898,0.1819908714349787,0.3180632067265874,0.02194,0.3171440431714404,0.6828559568285596,25.098861550351177,4.456267043680852,0.3331476323119777,0.2089136490250696,0.2315691736304549,0.2263695450324976,10.957707316526362,5.5637892556896205,23.345735055439626,12675.293672133928,60.61828603116172,13.428376277609932,20.07117905605712,13.732978997172657,13.385751700322029,0.5450324976787372,0.7715555555555556,0.6806020066889632,0.5725741780272654,0.1082854799015586,0.7057079318013343,0.9065656565656566,0.8337236533957846,0.7216117216117216,0.1581027667984189,0.4913280475718533,0.6982167352537723,0.6327724945135332,0.5308008213552361,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020977745348412,0.0041486620818371,0.0065485557642519,0.0087592724316634,0.0110575358072916,0.0132208845158793,0.0155440414507772,0.0179939135230081,0.0201785696022582,0.0226213761251804,0.0248838378139969,0.0267410443697927,0.0287651361611506,0.030656197188904,0.0327816381526643,0.0350441672355654,0.0369602620177857,0.0388652953575544,0.0410224931854595,0.0431261789871913,0.057643691369116,0.0712393873726746,0.0844106783075889,0.0970239535446407,0.1097748802666835,0.1246455626560582,0.1381407840681096,0.150746650192787,0.1632535209761418,0.1744387059366712,0.1880123392872551,0.2009562115807847,0.2124321851101379,0.223529798494461,0.232903745025191,0.2429292649098474,0.2521851876690586,0.2624884522656092,0.2723295454545454,0.2807892504184724,0.289434342731982,0.2973859655289582,0.3035259259259259,0.3098172035262184,0.3153082963053137,0.3205566737876786,0.3259511925961225,0.3312664268034397,0.3366680091985085,0.3407424077947523,0.3406397383748429,0.3401462073158934,0.3396135607615542,0.3389987953031336,0.3395852575753061,0.3387869114126097,0.3379027273735757,0.3383422837529355,0.3392844951184542,0.340048535027301,0.3416418720410187,0.3424070747547326,0.3433729892761394,0.3438121411175905,0.3443332691937656,0.3446863997913678,0.3468043236460086,0.3484514667002392,0.3490974348147366,0.3520280221311149,0.3562840031088556,0.3581548950676467,0.3593325327096897,0.3654241939172193,0.3660352464423711,0.3655632293403191,0.3643818660064985,0.3642139782742365,0.3697829716193656,0.3726176584986386,0.0,2.6704509586874905,59.01936977378424,200.4557162999848,308.0544681406532,fqhc4_80Compliance_baseline,22 -100000,95837,42951,402.9132798397279,6736,68.96083975917443,5232,54.10227782589188,2172,22.350449200204512,77.32864418348662,79.63989841139644,63.32870225298407,65.0387055536641,77.06461716102973,79.37410278480313,63.23092494910226,64.94254064518961,0.2640270224568866,265.79562659331657,0.0977773038818057,96.164908474492,118.13054,82.81301648060908,123261.47521312228,86409.87592965683,279.8346,175.8095895473068,291484.08234815364,182941.7426390564,303.19232,145.44289965114112,313563.947118545,149605.94130958474,3824.69205,1719.423762522648,3959518.609722758,1762968.8418127852,1292.30222,564.1998838054454,1336312.1550131997,576608.0988688648,2134.99604,890.0916651020395,2198402.20374177,902444.950596384,0.38276,100000,0,536957,5602.794327869195,0,0.0,0,0.0,23600,245.71929421830816,0,0.0,28012,289.44979496436656,1865167,0,66962,0,0,4799,0,0,53,0.55302231914605,0,0.0,1,0.0104343833801141,0,0.0,0.06736,0.1759849514055805,0.3224465558194774,0.02172,0.3202429721712106,0.6797570278287893,25.127172850291025,4.496382131728148,0.3207186544342507,0.2041284403669724,0.235282874617737,0.2398700305810397,10.91932734496253,5.429190834058066,23.074344778606125,12850.628623951889,58.95199652186608,12.673713603577616,18.967185663844187,13.596609718588669,13.714487535855609,0.5508409785932722,0.7930711610486891,0.7079856972586412,0.5515840779853778,0.1338645418326693,0.6965361445783133,0.9035812672176308,0.8505747126436781,0.7192307692307692,0.1481481481481481,0.501280737704918,0.7361702127659574,0.6580852775543041,0.5066941297631308,0.1299492385786802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611333367093,0.0052305072375623,0.0075178816009739,0.0098833902161547,0.0118568232662192,0.0141111789859499,0.01634899602487,0.0185024544072172,0.0208984814110818,0.0231054171868284,0.0252669112071968,0.0273490415007594,0.0294531739751508,0.0318406423718344,0.0340606760574999,0.0361149563025557,0.0381745744295545,0.0403836184551581,0.0424924176326394,0.0445055059430879,0.0582106053652634,0.0720140515222482,0.0857930485094964,0.0988282276286059,0.1112645471411705,0.1267918305213751,0.140425667292336,0.1526805286568625,0.1638328776486671,0.1740915865204198,0.1875242321113169,0.1999047814843268,0.2129193627317709,0.2234283278129406,0.2336520581406863,0.2446214521525269,0.2552231639364399,0.2645233939530432,0.2744536822497842,0.2821895181178954,0.2894367585495112,0.2969723274719344,0.3050314091983233,0.3116467986925591,0.3183754960921331,0.3244047251675657,0.3303488576229528,0.3358754288192009,0.3410504447185613,0.3464286659433138,0.3472891444304976,0.3467861037114739,0.3471292982729111,0.346861754630436,0.3466839702855097,0.3461112648768336,0.3458640640895218,0.3463286137635825,0.3474973485237264,0.347863370015721,0.3497953973795847,0.350949448547611,0.3518526280492916,0.3521136211138447,0.3536876068478967,0.3554043444124575,0.3566898994515539,0.358711059312691,0.3588447906797207,0.3614539105591048,0.3640140620006392,0.3665831422935437,0.3662694891621245,0.3686841498115819,0.3731385753580575,0.3743824557175563,0.3748070392096326,0.3783617327037569,0.3819290465631929,0.3856695379796397,0.0,1.8503893172901364,58.83260175615863,190.01613221190416,303.70255564900765,fqhc4_80Compliance_baseline,23 -100000,95735,42769,403.5096882018071,6853,70.18331853554082,5329,54.96422416044289,2148,22.04000626730036,77.35098256499538,79.69901541785464,63.33757887846742,65.07090092545639,77.08673504423166,79.43524749810535,63.240074043006274,64.97615829865715,0.2642475207637176,263.7679197492844,0.0975048354611445,94.74262679923127,118.80858,83.2418598133274,124101.5093748368,86950.28966765279,281.56018,176.52934426554327,293400.69984854024,183691.0064808763,307.05373,147.8020017428236,316023.408366846,150728.36218837005,3801.1297,1717.0323599795602,3927577.5735102105,1750667.5895485051,1287.34095,562.3506046616658,1329747.9500705071,572463.900398938,2106.62434,879.1462561602197,2164799.3314879616,887066.990317169,0.38038,100000,0,540039,5640.977698856218,0,0.0,0,0.0,23773,247.5792552358072,0,0.0,28395,291.8577322818196,1862356,0,66857,0,0,4769,0,0,57,0.5953935342351282,0,0.0,0,0.0,0,0.0,0.06853,0.180161943319838,0.3134393696191449,0.02148,0.3303186308612773,0.6696813691387227,24.786045846030035,4.421042714060137,0.3150684931506849,0.2272471382998686,0.2341902796021767,0.2234940889472696,11.068752369010587,5.666328246788127,22.772669579395775,12694.068830654624,60.05662574684532,14.35371704365652,18.785084888261892,13.868812368275572,13.049011446651356,0.5501970350910115,0.7762180016515277,0.6873138773079214,0.5625,0.1141897565071368,0.7174231332357247,0.9429280397022332,0.8741258741258742,0.6749116607773852,0.1354581673306772,0.4925561443350997,0.693069306930693,0.6232,0.5295336787564767,0.1085106382978723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369548266888,0.0047131085231246,0.0067476383265856,0.0091208255464369,0.0109912456406137,0.0130508698883244,0.0152903640125992,0.0174213894246961,0.0198182728768691,0.0219736357309534,0.0239152050680143,0.0261961219064042,0.0285820036190162,0.0305735763567088,0.0325988280927622,0.0346866214651893,0.036747879930004,0.0385593176370484,0.0405260695534646,0.0425347945662138,0.0576758460863937,0.0715115123492305,0.0846762778505897,0.097900480460906,0.1103720180052919,0.1254215071722286,0.1384997189491881,0.1505108556832694,0.1624272207681213,0.1732054541748468,0.1860457600827301,0.1985949948042951,0.2108698490057003,0.2212895883035303,0.2317152388606912,0.2420906773085024,0.2521754672088113,0.2614439393257415,0.2705230657464584,0.2786937876946362,0.2867182253919003,0.2948495844551094,0.3020649665700254,0.3084590226779917,0.3153114869540934,0.3212860801891439,0.3272256547514821,0.3318708988249657,0.3381204594605094,0.3425021128248468,0.3425682507583417,0.3425412841507457,0.3427760840108401,0.3432591433373906,0.343150246415437,0.3430281636098534,0.3418905188289833,0.3424966646352511,0.3432585232139797,0.3433244457169443,0.3439378004807692,0.34495863188314,0.3471204518255684,0.3477091365551869,0.3496412577647229,0.3502198032237806,0.3513065828930458,0.3549109960863527,0.3585654571639327,0.3614146632227299,0.3647074941772845,0.3681965989658297,0.3695033217336286,0.3706363150255901,0.3743280203715929,0.3755661501787842,0.3760910224438902,0.3774008990600735,0.3857938718662952,0.3776575183610359,0.0,2.6895100276059973,59.56808775838305,196.51316621553968,303.040168714847,fqhc4_80Compliance_baseline,24 -100000,95839,42742,400.2128569788917,6848,70.2741055311512,5285,54.52894959254584,2106,21.588288692494704,77.51248185563044,79.79857849535239,63.42745123530996,65.11100671200535,77.26092303648247,79.54997129961059,63.33555818044045,65.02339561154604,0.2515588191479736,248.60719574179768,0.0918930548695158,87.61110045931275,118.30258,82.83957390918737,123438.87144064523,86436.18350482304,282.53564,177.52514244379498,294176.0765450391,184606.38408559663,309.41828,148.98594463406775,319146.0052796878,152550.60433234257,3802.43359,1705.0300720246692,3923969.960037145,1735504.3896792226,1304.0503,566.9843056105799,1342195.6510397648,573128.7843264015,2078.55064,855.1813559811443,2131436.7011341937,858728.9207594676,0.37981,100000,0,537739,5610.857792756602,0,0.0,0,0.0,23842,248.12445872765784,0,0.0,28614,294.8903890900364,1871376,0,67086,0,0,4656,0,0,42,0.4278007909097549,0,0.0,0,0.0,0,0.0,0.06848,0.1803006766541165,0.307535046728972,0.02106,0.3302815924538771,0.6697184075461229,25.247042283344094,4.561506783274063,0.3288552507095553,0.2211920529801324,0.2157048249763481,0.234247871333964,11.163196902268798,5.52185869596266,22.264952577440013,12774.007909444656,59.25114208884996,13.635820633857616,19.51424303838501,12.589893277027391,13.511185139579933,0.5532639545884579,0.7690333618477331,0.7025316455696202,0.5754385964912281,0.1195476575121163,0.7338830584707646,0.9300518134715026,0.8820861678004536,0.7490196078431373,0.1587301587301587,0.4922804353328271,0.6896551724137931,0.6414803392444102,0.5254237288135594,0.1095334685598377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024993422783478,0.0051346451828521,0.0074904468928328,0.0100760012582317,0.0122107316280298,0.0144309976609376,0.016554336095783,0.0187326643824441,0.02101436696517,0.0234379793434911,0.0256620312532,0.0280284694589161,0.0305891781919812,0.0328520115681895,0.0349907729105023,0.0371739916335278,0.0390529605331236,0.0408709175738724,0.042810247034136,0.0448085952547031,0.0596032706186642,0.0737170103308377,0.0868786151395758,0.0992248550541971,0.1120131408535237,0.1276615969581749,0.1406269871550299,0.1526405886168143,0.1639687129853915,0.1746407384404514,0.1883077783273478,0.2007840850181441,0.2129488905293325,0.2237714135977027,0.2337448378877075,0.2450633527187493,0.2547586959669425,0.2640060190228072,0.2727128641133917,0.2814167380748357,0.2888476307990359,0.2963610101574876,0.3035019455252918,0.3099260886697154,0.3159423798571601,0.3220532599616764,0.3274024014663159,0.3317034240762088,0.3367591685149843,0.341373107676956,0.3416674486882147,0.341833520501794,0.3419175855739726,0.341503432593083,0.3407970875079546,0.3399599957247339,0.3392030096580939,0.3394563062251134,0.3401959948870899,0.3416755793226381,0.3430704741943935,0.3446227327451793,0.3449004792900647,0.3460534243824061,0.347453775683498,0.3488884282530963,0.3496840375187736,0.3523135003588031,0.3535676992690567,0.3552492461918001,0.357242121307213,0.3601754660817797,0.36525086934923,0.3689437255492025,0.3686063750926612,0.3688438700663639,0.3717852308617837,0.3742101105845181,0.3782172852885397,0.3841234010534236,0.0,2.437606370044743,58.335032855013424,197.4213014897609,296.9509831085752,fqhc4_80Compliance_baseline,25 -100000,95739,42641,401.6336080385214,6754,69.32389099531017,5306,54.86792216338169,2099,21.62128286278319,77.31288813594676,79.67227316425854,63.318020272784125,65.06230754340012,77.05273914615418,79.41008387595359,63.22300609821602,64.96845459979714,0.260148989792583,262.1892883049526,0.0950141745681065,93.85294360298246,119.306,83.55756401974378,124615.8827645996,87276.4119321737,281.37223,177.05981571614734,293326.1680193025,184371.1817714279,308.33977,148.11250934498685,318556.62791547854,151948.80505492186,3800.09748,1718.7566410362806,3932859.848128767,1758885.9827617605,1277.33808,559.9114480682603,1321954.7728720792,572598.0510223213,2056.96926,854.901244617812,2120344.499106947,869565.406921833,0.37962,100000,0,542300,5664.358307481799,0,0.0,0,0.0,23759,247.56891131096,0,0.0,28611,295.2506293151171,1858750,0,66781,0,0,4713,0,0,59,0.6162587869102455,0,0.0,0,0.0,0,0.0,0.06754,0.1779147568621253,0.3107787977494818,0.02099,0.3211873944850872,0.6788126055149127,24.991174638941008,4.436956327940468,0.3277421786656615,0.2203166226912928,0.2293629852996607,0.2225782133433848,11.145377421474246,5.710196300400054,22.44931006944609,12715.90632956443,60.34619691189224,13.94892102266762,19.75041135991101,13.615470097319667,13.03139443199395,0.559743686392763,0.7810094097519247,0.7055779183438758,0.5809367296631059,0.1041490262489415,0.7296908698777858,0.911904761904762,0.8758169934640523,0.7316176470588235,0.1291666666666666,0.4993614303959131,0.7076101468624834,0.64453125,0.5375661375661376,0.0977683315621679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339524803014,0.0047030681438084,0.0068182509968648,0.008948523138179,0.0113098931052369,0.0136150712830957,0.0159477923931885,0.0181825606680891,0.0202016071319034,0.0221378032172515,0.02444351026853,0.026605740103712,0.0285911161848343,0.0308283377623962,0.0326527664579228,0.0347468400219105,0.0368310967528164,0.0389923011475647,0.04091967888191,0.042947342099231,0.0570966226444641,0.0712006277792309,0.0846581375838926,0.0977679181605038,0.1106811879935476,0.1264000676897693,0.1386386545705342,0.1509313464608834,0.162011471540113,0.1724389354721108,0.1861717017290756,0.1983021520493132,0.2104135861529094,0.2209559225637099,0.2312457364170499,0.2418522211144344,0.2521848805152188,0.2618259969394185,0.2717051842598376,0.2806462701959436,0.2886169449139787,0.2967693639319718,0.3028940580704702,0.3100629307761462,0.31620265163023,0.3220000493108804,0.3277214079919829,0.3332569478923984,0.3387633969648665,0.343331526696366,0.3435063007636471,0.3438029741313965,0.3431906724634408,0.3432424993118634,0.3426880004771775,0.3411648932898702,0.3401476343504406,0.3415788518939956,0.3428537100290074,0.3441425597588113,0.3441681880634658,0.3461148547915797,0.3474282107920479,0.3488695808356346,0.3510031423737007,0.3522643883006604,0.353256507281275,0.3559150015857913,0.3576838677709351,0.359148151118954,0.3608825557343139,0.3628157880681514,0.3639972276479112,0.3681755620125401,0.3706896551724138,0.3700974566199191,0.3750965549204387,0.3811750355763366,0.3839509612705489,0.3930877326243828,0.0,2.18729238916164,61.492043236884896,201.78704363081675,293.5634740819414,fqhc4_80Compliance_baseline,26 -100000,95782,42836,402.6852644546992,6853,70.38900837318077,5377,55.57411622225471,2155,22.08139316364244,77.37208356525132,79.71286711775113,63.35007434272507,65.08058704688887,77.10695427799081,79.44885721156244,63.25272523371541,64.98655271545368,0.2651292872605069,264.00990618869,0.0973491090096629,94.03433143518214,118.19544,82.70568187105684,123400.4719049508,86347.83348756222,282.6011,177.4558281783408,294486.1351819757,184710.5282603629,302.32083,144.8164584875578,312984.9763003487,149046.29245420618,3854.10118,1733.1000273550396,3983072.978221378,1768668.233441607,1301.45147,569.0231482506462,1341868.1693846444,577185.5340780584,2118.8184,888.1846375768394,2173147.8565910086,892554.1365007198,0.38201,100000,0,537252,5609.112359315947,0,0.0,0,0.0,23901,248.96118268568208,0,0.0,28008,289.70996638199244,1868024,0,67083,0,0,4791,0,0,51,0.5324591259318034,0,0.0,0,0.0,0,0.0,0.06853,0.1793932096018428,0.3144608200787976,0.02155,0.3256200637383954,0.6743799362616045,25.077698749691884,4.482356748014331,0.3282499535056723,0.2146178166263715,0.2276362283801376,0.2294960014878184,11.094609000461556,5.622158884379907,22.99038673332148,12798.467078145362,60.6551303448061,13.528778392515392,19.92962587806951,13.709632691582074,13.48709338263913,0.5512367491166078,0.7590987868284229,0.7014164305949009,0.5735294117647058,0.119935170178282,0.7196122296793438,0.919889502762431,0.868663594470046,0.7491289198606271,0.1550387596899224,0.4952923686818632,0.6856060606060606,0.6468820435762584,0.5197438633938101,0.110655737704918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0048152954057013,0.0071949016662945,0.0094879166201074,0.0116953117054815,0.0138764456751913,0.0162676207075803,0.0184092903647162,0.0204790712884238,0.0226384198137345,0.0246564392658406,0.0268475661696035,0.0288433863739155,0.0311576519527589,0.0335247955616511,0.0357600429823111,0.0379463823620743,0.0398743103662836,0.0419467794391163,0.0437693260731501,0.058397512157452,0.0728801681850035,0.0863393821220031,0.0987937121721587,0.1106147605752515,0.1261291719933649,0.1387920345072437,0.1510601646073031,0.1626564517333731,0.1736517323391399,0.1872559250373844,0.2004172431684538,0.2126998272058424,0.2242932417954828,0.2342065901192204,0.2450907641019393,0.2558461263834345,0.2648249342238413,0.2733539689558601,0.2813841908186284,0.2898580895874535,0.297054937860241,0.3045966140168353,0.3109559677631815,0.3178381133861708,0.3238633564849022,0.3298615457800255,0.3354653306715155,0.3402556737313356,0.3447052617697481,0.3446833689702935,0.3435309639647068,0.3440752545623783,0.3438232485458807,0.3438773385681568,0.3429736233083513,0.3416427631891729,0.3427867236279986,0.3446574497610115,0.3458070978820836,0.3469778261358947,0.3480326181616657,0.3495888916855441,0.3498109069751829,0.3516255753982599,0.3515353001230334,0.3536753313823377,0.3560411718131433,0.3585398573748499,0.3603935055586659,0.3630491547940813,0.3659799316823228,0.3666877770740975,0.3689663111042898,0.3708420452385478,0.3742683072512244,0.3720036877688998,0.3736307508464449,0.3764289602612956,0.3814549566528458,0.0,2.232102020271303,58.90397016745774,206.53867851192092,302.6197548277963,fqhc4_80Compliance_baseline,27 -100000,95651,42701,403.0590375427335,6830,70.32859039633668,5332,55.22158681038359,2190,22.561185978191556,77.25911226955019,79.653967989389,63.27736057920528,65.04506825998287,76.99676459269057,79.39251457699501,63.18199952650952,64.95276541488721,0.2623476768596191,261.45341239399045,0.0953610526957575,92.30284509565934,118.3864,82.91708370827565,123769.11898464207,86687.10594586114,280.79223,176.16537864346392,293007.8723693427,183623.9126025488,304.91278,146.11073484089803,315597.5055148404,150305.7626624468,3837.14929,1714.9675393840434,3976548.441730876,1757876.6551149937,1304.94034,566.2606438560193,1350952.5880544898,578687.0642816266,2153.56936,882.9496359266939,2220062.2889462733,894610.2553221853,0.38094,100000,0,538120,5625.869044756459,0,0.0,0,0.0,23683,247.03348632005935,0,0.0,28217,291.83176338982344,1859885,0,66843,0,0,4628,0,0,57,0.5959164044285998,0,0.0,1,0.0104546737619052,0,0.0,0.0683,0.1792933270331285,0.3206442166910688,0.0219,0.3148793752614698,0.6851206247385302,25.236705034081776,4.483731043726125,0.3332708177044261,0.2091147786946736,0.2259939984996249,0.2316204051012753,11.040286716273616,5.496928838668314,23.166953709558623,12777.773740320656,60.20803165236277,13.379401408448553,20.011526727825867,13.410397973424685,13.406705542663664,0.5508252063015754,0.7901345291479821,0.7000562746201463,0.570954356846473,0.1004048582995951,0.7272727272727273,0.9335038363171356,0.8834498834498834,0.7105263157894737,0.1428571428571428,0.4921269682579355,0.712707182320442,0.6416913946587537,0.531416400425985,0.0898989898989899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271638827831,0.0046035753759417,0.0070945740210705,0.0092058201918387,0.0115265272902996,0.0138920008962581,0.0161000876888879,0.0180283185479342,0.0200672657200396,0.0219870206972792,0.0239703907235203,0.0260188313088478,0.0282437644638724,0.0300804549153729,0.0320942808197973,0.0343586827276017,0.0362163450083392,0.0384164253313818,0.0402949834097835,0.0425223609865938,0.0573070693348659,0.0713043842560589,0.0851316300706717,0.0978445144102688,0.1097253170839889,0.1247338932607475,0.1369724780387283,0.1494480671695861,0.1609778005902733,0.1727085301950004,0.1865966259653967,0.1999588272260385,0.2117284421256712,0.2227273723187485,0.2333359062289803,0.2450674512851829,0.255604528369429,0.2652743634272311,0.2747430182843627,0.2833773693279724,0.2912073886710138,0.2988199690329846,0.3058136637117732,0.3120918766159581,0.3180692918379044,0.3237442978823355,0.3289551339201627,0.334167198468411,0.3396103896103896,0.3440734955389055,0.343992758616031,0.3438989678471253,0.344686995668054,0.3455320015121114,0.345912419668211,0.3451418718150047,0.3439190479221027,0.3450340629793972,0.3452074096985943,0.3460254799928225,0.3470543948804818,0.3478096901609734,0.3504503746106575,0.3511999462208977,0.3524064429012346,0.3540306149104018,0.3558615173674588,0.3584172798181071,0.3597883597883597,0.3620435042905607,0.3652894833272261,0.3691074291822555,0.3688883251950028,0.3694938544927094,0.3720296797219874,0.3716159809183065,0.3758245129621108,0.3790518638573744,0.3785216178521617,0.3632797175362887,0.0,1.9844488627960053,58.940850588879385,202.77379467218068,302.5545365648496,fqhc4_80Compliance_baseline,28 -100000,95618,42770,403.1667677633919,6809,70.04957225626974,5356,55.43935242318392,2169,22.338890167123346,77.28554750318864,79.7183844649842,63.27381344368565,65.07218626135541,77.01046624068402,79.44152424284295,63.17171019926888,64.97210164973977,0.2750812625046137,276.86022214125217,0.1021032444167673,100.08461161564242,118.94168,83.31257006093992,124392.56206990316,87130.63446311356,286.37453,180.06903038933453,298958.37603798445,187781.0876501648,311.19798,149.2986857783769,321682.49701938964,153242.9807750048,3861.64314,1739.64628724543,4001697.9752766215,1782714.551262505,1270.9476,556.8570653722644,1315831.9563262148,569111.0967314207,2137.08816,897.62758443582,2203941.161705955,911914.2439180498,0.3795,100000,0,540644,5654.20736681378,0,0.0,0,0.0,24130,251.7831370662428,0,0.0,28725,296.73283273023907,1854175,0,66597,0,0,4570,0,0,62,0.6274969148068356,0,0.0,0,0.0,0,0.0,0.06809,0.1794202898550724,0.3185489792921134,0.02169,0.3209445298309347,0.6790554701690652,25.155289078483037,4.513917657121962,0.3246825989544436,0.217513069454817,0.2231142643764003,0.234690067214339,10.978009561661269,5.465694747309314,23.274606194181487,12733.846484184152,60.68071881837936,13.744784561694203,19.69548196323445,13.45112429115016,13.78932800230056,0.5498506348020911,0.7656652360515022,0.6975273145485912,0.5983263598326359,0.0994431185361972,0.6989795918367347,0.8969072164948454,0.8449074074074074,0.7368421052631579,0.1348314606741573,0.4984939759036144,0.7001287001287001,0.648814078041316,0.554945054945055,0.0898989898989899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022294284556141,0.0045035450202355,0.0068635016041912,0.0090257661228845,0.011170797216457,0.0133952673450885,0.0155257010537483,0.0178367113435763,0.0198218285585705,0.0218553491325454,0.0243226885239174,0.0265207562679819,0.0287078877211763,0.0307697065281256,0.0331037616033537,0.0352406959184095,0.0373794003958672,0.0390914661376925,0.0410109084853026,0.0431948095297701,0.0577554305784951,0.0724466056045775,0.0860874956651499,0.0986608506917006,0.1114620747939995,0.1267475851550584,0.139699475037725,0.1527243265140773,0.1640877474585339,0.1746945880027076,0.1880354792066814,0.2004662257399978,0.2131592427495558,0.2240961742885009,0.2344664850977495,0.2453517155638438,0.2552632461622746,0.2649396327234604,0.2734816364111716,0.2814137776809367,0.2896002038948551,0.2972377761638123,0.3040100577609621,0.3104893928837421,0.3166835113183883,0.321818922824221,0.3275795068506888,0.3326532433914385,0.3377567714960916,0.3421466834204087,0.3418869146395758,0.3417067423626517,0.3416886729837741,0.3416733067729083,0.3421123153882801,0.3403398789219753,0.340001271092186,0.3399162572945172,0.3404350136263133,0.3411308840413318,0.3416303203489246,0.3417503416315133,0.3426112934444164,0.3439687668282175,0.3454304316373282,0.3475608166245144,0.3499587915991701,0.35326973766788,0.3549074397485155,0.3564497603865499,0.3560733627633914,0.3581986388770736,0.3575447246981478,0.3580256332010986,0.3605769230769231,0.3623874940786357,0.3628821631587033,0.3676710097719869,0.3681905283328771,0.3677639046538025,0.0,2.270093958898859,60.66399280879168,203.6203504219632,299.0622033988504,fqhc4_80Compliance_baseline,29 -100000,95814,42765,402.2167950403908,6841,70.17763583609911,5328,55.09633247750851,2181,22.40799883106853,77.35864855579545,79.66359536605046,63.35358995694328,65.05446117746243,77.08366325718036,79.38761632636644,63.252280479779934,64.9550645218329,0.2749852986150927,275.9790396840174,0.1013094771633404,99.39665562953336,118.91264,83.28632287406569,124107.7921806834,86925.0035214746,283.02923,178.6462349189838,294854.00880873355,185920.9866658077,309.31326,148.97499273982865,319780.00083495106,153150.88363005064,3833.17811,1745.3256736071298,3963776.7758365166,1785524.6599879402,1288.86924,571.0295272429571,1329547.7278894526,580493.14851336,2141.02094,905.5292412318338,2200683.553551673,917405.1580220006,0.38168,100000,0,540512,5641.263280940156,0,0.0,0,0.0,23905,248.9197820777757,0,0.0,28689,296.345001774271,1859397,0,66797,0,0,4756,0,0,49,0.5114075187342142,0,0.0,0,0.0,0,0.0,0.06841,0.1792339132257388,0.3188130390293817,0.02181,0.3316184649610678,0.6683815350389322,24.90069583128624,4.446763273100123,0.3299549549549549,0.2147147147147147,0.223536036036036,0.2317942942942943,10.992057245144306,5.555989667877472,23.51129028222583,12785.803951283013,60.62769323277087,13.57765369913326,19.985931260367767,13.288733412563753,13.7753748607061,0.5497372372372372,0.7840909090909091,0.6979522184300341,0.5667506297229219,0.1052631578947368,0.7139830508474576,0.9238578680203046,0.8771551724137931,0.697594501718213,0.1385767790262172,0.4902862985685071,0.7106666666666667,0.633693972179289,0.5244444444444445,0.0960743801652892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023682772301277,0.0047908922403751,0.0072285247929276,0.0094269739312206,0.0117347042448133,0.0140277707135954,0.016206250254655,0.0184733712117348,0.0206464662975297,0.0227398269195359,0.0247357423795476,0.0267811352493486,0.0289412852519648,0.03090205602091,0.0329834618715717,0.0351669007684045,0.0372278784868802,0.0394758666445513,0.0414641239768997,0.0431826936090029,0.0570647638123852,0.0715532833589478,0.0847946167471988,0.0970416688560769,0.1089565923006396,0.1244663313184258,0.13721706864564,0.1499542562924193,0.1620507783305929,0.1731317679854186,0.1869522148286926,0.1995542862088364,0.2116229501065727,0.223058494054326,0.2336775813093167,0.2445629281486243,0.2558243377501926,0.2652466468629039,0.2746112813528544,0.2826086956521739,0.2906840783060697,0.2984941804641577,0.3057634907850476,0.3125442353138758,0.318724227274386,0.3246724405951587,0.3301240719642432,0.3342157848515317,0.3397050438028096,0.3439638544666684,0.3439361673450683,0.3444025122582778,0.3438147453876619,0.3444536028805692,0.3442354621748705,0.3436239552181581,0.3441015470051566,0.3452829877978494,0.3464110566205974,0.3474804393080181,0.3477049365515683,0.3494143339289259,0.3502508114488049,0.3512572968118545,0.3508309981640738,0.3526509186351706,0.3528601755694532,0.3544612847992897,0.3553306677046106,0.3575204228736184,0.3609470165315748,0.3628038984684588,0.3620842853516121,0.3618871700146233,0.365025466893039,0.3654642223536369,0.3727510379824696,0.376689881196231,0.3741189737806597,0.3741035856573705,0.0,1.8627054275617452,62.81370716451291,203.3186439071792,291.0846437899118,fqhc4_80Compliance_baseline,30 -100000,95871,42523,400.6320993835467,6741,69.19715033743259,5214,53.90576921071023,2096,21.560221547704728,77.41454581429173,79.7032502911355,63.37712166936033,65.06809053089725,77.15877450305643,79.44736463921933,63.2832970560566,64.97666909664645,0.2557713112352928,255.88565191617363,0.093824613303731,91.42143425080462,118.1818,82.83855255363471,123271.6879974132,86406.26733176321,278.37436,175.16757567596852,289889.59122153727,182237.8672132016,306.21526,147.15404632604734,316630.4930583805,151310.44756379648,3737.63083,1691.623084869283,3863948.044768491,1729822.2453810656,1238.01136,541.6154622992065,1278284.413430547,551895.9354749676,2056.8692,853.2498779449484,2116230.893596604,864037.0471486876,0.37896,100000,0,537190,5603.258545336964,0,0.0,0,0.0,23472,244.3491775406536,0,0.0,28322,292.64323935288047,1869255,0,67056,0,0,4636,0,0,49,0.5111034619436535,0,0.0,0,0.0,0,0.0,0.06741,0.1778815706143128,0.3109330959798249,0.02096,0.328255043024404,0.671744956975596,24.979267520218617,4.429163202547529,0.3262370540851553,0.2217107786728039,0.2209436133486766,0.231108553893364,11.203770915931084,5.804763678613976,22.218538826628134,12688.747817748384,59.12274921219237,13.730872811770888,19.30899426378365,12.907961704771273,13.174920431866544,0.547180667433832,0.7863321799307958,0.6766607877718989,0.5876736111111112,0.0962655601659751,0.7111436950146628,0.908653846153846,0.8590604026845637,0.7192307692307692,0.0871369294605809,0.4890909090909091,0.7175675675675676,0.6116427432216905,0.5493273542600897,0.0985477178423236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022371817583641,0.004680613950661,0.0069257835870083,0.0089436176476559,0.0112003252363045,0.0133090487286195,0.015403422982885,0.0176261781386429,0.0198169485985127,0.0218578676049423,0.0237948907053448,0.0259313966847201,0.0279279094141098,0.0300354084321475,0.0324971905189034,0.0344966484543642,0.0363457658682944,0.0382104215893545,0.0402470673725734,0.0421278189231921,0.0565032427585344,0.0700833977802395,0.0837672201560944,0.0971135774210145,0.1096111116961342,0.125145222956845,0.1388938910839698,0.1520662386803282,0.1630732794947566,0.1739665881345041,0.1871624965039478,0.2002075698115655,0.2116345777739145,0.2222003693141464,0.2325765401437394,0.2432728479752157,0.2524751371359764,0.2624481677510704,0.2716973429047732,0.2801236546828486,0.2879777944833169,0.2952828644262026,0.3022061867865381,0.308995698074319,0.3151485689979947,0.3208377505485565,0.3266108336150023,0.3318188759926695,0.3373834563066509,0.3414150756424655,0.3415872930335322,0.3411803576591087,0.3415706275183859,0.3416953267246611,0.3417725280439789,0.3414888079125455,0.3413658428600793,0.3430174379500976,0.3433705101709679,0.3442514799229726,0.345243662894023,0.3460664836358608,0.3477596954357194,0.3480132967449746,0.3489020229686224,0.3501561686621551,0.3506430685180969,0.3510634965385458,0.3531599817524651,0.3565410904466699,0.3585865467593223,0.360283988555685,0.3626023373539154,0.3661218648791142,0.3683031547507933,0.3709829867674858,0.3778998778998779,0.3826934795856185,0.3809262811729241,0.3913701741105223,0.0,1.893544615137516,60.40089833552357,194.8847159023269,292.0746975439407,fqhc4_80Compliance_baseline,31 -100000,95725,42620,402.528075215461,6908,71.22486288848263,5390,55.889266126926096,2206,22.77357012274745,77.36002699221102,79.7323526579541,63.33690834044432,65.08873805934006,77.09463655212245,79.464182443824,63.24050037260307,64.99358392454764,0.2653904400885665,268.17021413009456,0.0964079678412517,95.1541347924234,117.79922,82.48420941993751,123060.03656307128,86167.88657084096,280.74972,176.05022411447405,292876.3854792374,183501.10022057185,306.50066,146.01899029705874,317702.7526769392,150608.423998757,3902.58037,1740.6012014630448,4047645.985897101,1789114.9444498646,1331.16945,576.2216406511382,1377595.5393053016,588932.3798914998,2176.81706,897.7574348058355,2247864.110733873,913982.3123364148,0.37975,100000,0,535451,5593.63802559415,0,0.0,0,0.0,23712,247.28127448419957,0,0.0,28300,293.16270566727604,1870413,0,67075,0,0,4608,0,0,53,0.5536693653695482,0,0.0,1,0.0104465917994254,0,0.0,0.06908,0.181909150757077,0.3193398957730168,0.02206,0.3238292011019283,0.6761707988980716,25.20820961738692,4.477687179118612,0.3148423005565863,0.2185528756957328,0.2270871985157699,0.2395176252319109,10.921838319212618,5.409404592357222,23.26623565191335,12715.14523671414,60.75077417052604,13.83059972397528,19.12043423304876,13.574409768390993,14.225330445110991,0.5452690166975881,0.766553480475382,0.6823806717737183,0.5906862745098039,0.1200619674670797,0.6997690531177829,0.8991825613079019,0.8429561200923787,0.7165354330708661,0.1306122448979592,0.4962111953067709,0.7065351418002466,0.627373417721519,0.5577319587628866,0.1175908221797323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168629913603,0.0043690255349775,0.0065859573993079,0.0087872569536154,0.0110256723219008,0.0129831778746283,0.0151172273190621,0.0174324848435363,0.0194428826986966,0.0214377853764409,0.0234062621747421,0.0254507001765841,0.0275286907161367,0.0294887112722478,0.0316859265373503,0.0338495895452947,0.0357727451671052,0.0380208008968051,0.0398477236558804,0.0418785428476158,0.0563527372224659,0.0707101365848553,0.0837765538945712,0.0959928481278923,0.108255139694254,0.1242784954648286,0.1372093516632722,0.1493577669231342,0.161351645769699,0.1728791015478348,0.1872427983539094,0.1997316278717441,0.2114301863002978,0.2225623421630899,0.2330492163871322,0.2449994462288182,0.2549115858760529,0.2645719233926744,0.2731354452481915,0.281540170137736,0.2892810472633076,0.2971365123889668,0.3046774288924369,0.3115136856725496,0.3175227686703096,0.3232743755234764,0.3283703472005004,0.333223148901546,0.3379928037068675,0.3421861600369417,0.3425008081025751,0.3431436008318299,0.3432227300942385,0.3428827863750199,0.3431994047619047,0.3430520426151606,0.3424969911952872,0.3437802536796679,0.3442194309151499,0.3452580818003214,0.346320427486641,0.3467421199469716,0.3470584539342786,0.3481100424960859,0.3496533795493934,0.3504177545691906,0.3518142567123209,0.3541462489330088,0.3564713366791546,0.3575179380286207,0.3626621285990249,0.3644709292961829,0.3663115169964485,0.3717702982442689,0.3729724632214258,0.3756544502617801,0.3763820638820638,0.3829352929169218,0.3851707858928075,0.3853639548462437,0.0,1.6176327044493164,57.7929119705044,210.86394659663577,305.7907583344392,fqhc4_80Compliance_baseline,32 -100000,95759,42516,401.9256675612736,6786,69.61225576708195,5321,55.05487734834324,2082,21.460123852588268,77.33346816806463,79.69662292904854,63.32120940122799,65.07073101454124,77.07969036378068,79.4394468904888,63.22928137451962,64.97914078862881,0.253777804283942,257.1760385597486,0.0919280267083664,91.5902259124266,119.29544,83.55957125378724,124578.82809970864,87260.27971656685,281.70114,176.43386001868345,293601.43694065313,183672.05173266577,304.20072,145.53854820057668,314273.8541547009,149380.2106485891,3825.18582,1711.1351772285825,3960533.036059274,1752854.7574938994,1283.94705,561.2496943802449,1326084.2427343645,571379.8748736354,2048.9578,843.6939389011704,2113012.1868440565,859015.5332864012,0.37876,100000,0,542252,5662.674004532211,0,0.0,0,0.0,23816,248.18554913898436,0,0.0,28135,290.3330235278146,1862712,0,66805,0,0,4637,0,0,55,0.5639156632796917,0,0.0,0,0.0,0,0.0,0.06786,0.1791635864399619,0.3068081343943413,0.02082,0.3238883433861692,0.6761116566138309,25.012822459170827,4.487141081891034,0.3358391279834617,0.2054125164442773,0.2307836872768276,0.2279646682954332,11.060103390040542,5.570248056735939,22.12683277871399,12610.992664971813,59.98231545508749,12.98745968365893,20.04785994721,13.68164229304509,13.265353531173476,0.5487690283781244,0.7822506861848124,0.6832680470061556,0.5781758957654723,0.110469909315746,0.7187028657616893,0.8983516483516484,0.8709677419354839,0.7054794520547946,0.1779661016949152,0.4923654568210263,0.7242798353909465,0.623059866962306,0.5384615384615384,0.0941658137154554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669740108414,0.0041881312619153,0.006201408765199,0.0083216484789367,0.0105571489595411,0.0127483224551721,0.01456795661216,0.0165744728623624,0.018498834880013,0.0207486718598057,0.0229744830485016,0.0252348442071762,0.0276215254568452,0.0296701372797396,0.0317665022800899,0.0334780361757105,0.0355463977303319,0.0375408560311284,0.039452755455292,0.0413359995000937,0.0564277065675754,0.0702220733825899,0.0832161668730195,0.0957524003827992,0.107477670332915,0.1221954365708727,0.1355322625135267,0.1474654377880184,0.1589290100712355,0.1700176934212642,0.1835591650330669,0.1959129804519737,0.2083383173301725,0.2194505806959602,0.2308335257954183,0.2416908394411107,0.251635081140204,0.2618385968070384,0.2714554778977943,0.2799757309339011,0.2883937140808751,0.296254721062663,0.3035984669253336,0.3099036941210292,0.3161036691904484,0.3216096480433177,0.3279911992299326,0.3326850969176994,0.3373578166854303,0.3413017938936336,0.3410772278295085,0.3406570728888644,0.3411284074100162,0.3410964848835527,0.3410257554791769,0.3412405957316137,0.3409137796962531,0.3409823661008027,0.3412675308663116,0.3421495293654486,0.3427107574506418,0.3441330824834142,0.345361148967397,0.3454073294678636,0.346989462515975,0.3485296813218466,0.3478397262227292,0.350502789773981,0.3542107490478205,0.3570490629103497,0.3591452835357501,0.3606015358361775,0.3586075949367088,0.3605426534835594,0.3613190561925519,0.3627380091588335,0.3644094001236858,0.3709113351162312,0.3740845070422535,0.3788409179307662,0.0,2.025915885914189,58.513463803304745,204.712915469418,298.3022746274458,fqhc4_80Compliance_baseline,33 -100000,95809,42670,402.0394743708837,6732,69.18974209103528,5239,54.232900875700615,2067,21.28192549760461,77.34149214859087,79.68063429736276,63.33904717832892,65.072675237102,77.09331544246577,79.4316151732374,63.24909212371516,64.98424605244153,0.2481767061251076,249.0191241253541,0.0899550546137604,88.42918466046967,119.2444,83.55280774390397,124460.54128526548,87207.68168324894,281.13077,176.09735706819785,292980.106253066,183352.18723522616,302.653,145.06614538436293,313390.5061111169,149443.6870835742,3761.93843,1685.0472247302296,3896359.767871494,1728618.5272054067,1284.11072,559.8242874687803,1329042.897848845,573073.800445449,2043.3987,840.1084517151037,2105982.465112881,855220.8726738187,0.38043,100000,0,542020,5657.297331148431,0,0.0,0,0.0,23727,247.16884635055163,0,0.0,27961,289.2838877349727,1865661,0,66905,0,0,4842,0,0,58,0.6053711029235249,0,0.0,1,0.0104374328090262,0,0.0,0.06732,0.1769576531819257,0.3070409982174688,0.02067,0.3169004108230627,0.6830995891769372,25.182000225671207,4.414250686445261,0.3202901317045237,0.2231341859133422,0.2227524336705478,0.2338232487115862,11.068980982016091,5.5988137205225925,21.98292505776272,12691.898943957647,59.091831946048025,13.808659519623395,18.949020065567986,12.785607058566615,13.548545302290034,0.5499141057453713,0.7801539777587682,0.6847437425506555,0.583547557840617,0.113469387755102,0.7301710730948678,0.9299191374663072,0.8419753086419753,0.803030303030303,0.1666666666666666,0.491272451302808,0.7105263157894737,0.6347211311861743,0.5193798449612403,0.1001021450459652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020563833990092,0.0043388785823626,0.0064539043076766,0.0087489330569442,0.0111512438317138,0.0132421998349818,0.0152170365535248,0.0173084581686732,0.0195105989181229,0.021718428409056,0.024023870068083,0.0261963442185253,0.0283686484262497,0.0303595343566498,0.0324927255092143,0.0344203834823505,0.0362312837823844,0.0384348060624293,0.0403794798258466,0.0424521918364372,0.057268354773754,0.0713367138899053,0.0847400794274517,0.0975107440448045,0.1097049525816649,0.1255204920631565,0.1389701517849571,0.1507528070772371,0.1625494861972191,0.1734713560084871,0.1869094509373453,0.1987094263756931,0.2104554291983012,0.2217038340089376,0.2323817480295918,0.2428361132940043,0.2533960350802902,0.262850086995566,0.2719449225473322,0.2805720033835532,0.2880528266164875,0.2955699527228156,0.3020939191265095,0.308962546368314,0.3154575662761648,0.3214193437257773,0.3271443743362279,0.332761926529783,0.3381581328026053,0.3424572767727835,0.3419972824259057,0.3420690793092069,0.3420007324562639,0.3417511094407262,0.3423178187335445,0.3417785543498253,0.3409710770011417,0.3423862084848086,0.3434786332105849,0.3448245001700406,0.3455386176951561,0.3463995239039873,0.3478526058974467,0.3485093390804598,0.3489569484396528,0.3490242305173543,0.3500747900126568,0.3513711268053699,0.3526487714813237,0.3556998556998557,0.3574892614659831,0.3586214312597451,0.3617673349508364,0.363953488372093,0.3647204731921389,0.3672661870503597,0.3688972079238808,0.3736286483129787,0.3740543569627346,0.3804597701149425,0.0,1.6924257292005005,57.04409841786538,204.97294115170297,293.3565286395617,fqhc4_80Compliance_baseline,34 -100000,95713,43004,405.6815688568951,6753,69.32182671110507,5215,54.01565095650539,2089,21.439093957978542,77.3419109081298,79.71059245386503,63.33255108723839,65.08078122171807,77.07295607717138,79.44349955309534,63.231537330582825,64.98340843981121,0.2689548309584211,267.09290076969694,0.1010137566555613,97.37278190685572,118.69638,83.1371147505478,124012.8091272868,86860.8389148264,280.41245,176.86270355651055,292513.9427246037,184326.187201854,307.40941,147.92191154371665,318875.64907588315,152639.16429951938,3750.28008,1717.894656111633,3883606.4693406327,1760190.189537088,1248.87602,555.4303553046974,1292415.2727424696,567910.0700058484,2047.21258,878.4957255994254,2102916.782464242,885638.3564638318,0.38192,100000,0,539529,5636.945869422127,0,0.0,0,0.0,23679,246.9048091690784,0,0.0,28380,294.2024594360223,1863027,0,66889,0,0,4651,0,0,50,0.5223950769487948,0,0.0,0,0.0,0,0.0,0.06753,0.1768171344784248,0.3093439952613653,0.02089,0.3279197853410535,0.6720802146589465,24.988183404962225,4.48511054412622,0.3263662511984659,0.2205177372962607,0.2253116011505273,0.2278044103547459,11.190740220209596,5.710003754954953,22.57848145977936,12766.509291134653,59.42337660873429,13.65303672043112,19.318320582256323,13.245235845904478,13.206783460142358,0.5551294343240653,0.7695652173913043,0.6962397179788484,0.5965957446808511,0.1043771043771043,0.6976744186046512,0.907651715039578,0.8590909090909091,0.6979166666666666,0.137546468401487,0.5040375097681687,0.7016861219195849,0.6394611727416799,0.5636978579481398,0.0946681175190424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00224805573558,0.0048241613459004,0.0069892473118279,0.0094966279353213,0.011774514987595,0.0138673943145719,0.0159128209833124,0.0179737894994692,0.0202575633687653,0.0223832478737449,0.024551512045105,0.026645719742476,0.0285158981530994,0.0304856689538645,0.0324231729717458,0.0344339232550446,0.0366308332815509,0.0386263867412488,0.0408330907124734,0.0427070740756179,0.0577772671728618,0.072206927594184,0.0850313726313138,0.098325479636486,0.1112236286919831,0.1269720344094213,0.139548454177011,0.1514277196942273,0.1629931943717347,0.1744681307599051,0.1886404274111894,0.2011992510092974,0.2131853785900783,0.223148178527292,0.234200539024256,0.2452360125341866,0.2551143335192415,0.2648120452935422,0.2734854588160537,0.2820633194023015,0.2899880796694712,0.297352985939567,0.3037829259048702,0.310492043124228,0.3161337386018237,0.3224146230082816,0.3281675130085888,0.3335795801915631,0.3393697419078854,0.3436432011611796,0.3438725589293656,0.3436360383667964,0.3431551976573938,0.3426232112171665,0.3433192728136882,0.3424655436447167,0.341422104030139,0.3418994413407821,0.3430204696378449,0.3436252662478297,0.3454542037809599,0.3470468108729702,0.348171232444042,0.3483087987414316,0.3501957751244743,0.3512763450713444,0.3520267949158365,0.3541646939999369,0.3553523513628018,0.3591363454618153,0.3616398243045388,0.363107003579251,0.3657949724561514,0.3680368805224741,0.3721151106467851,0.3764071856287425,0.3765973826020015,0.3796868562010713,0.3794555150154364,0.3812451960030745,0.0,1.827755908966533,61.05915213948162,203.2412669505992,281.9704290193689,fqhc4_80Compliance_baseline,35 -100000,95719,42728,402.887618968021,6766,69.59955703674297,5280,54.69133609837128,2095,21.563117040503972,77.33810060160408,79.72121816267337,63.31256206328344,65.07502598319674,77.07851267785946,79.4597895052751,63.21737820868762,64.98127073639894,0.2595879237446183,261.4286573982696,0.0951838545958168,93.755246797798,118.93728,83.33937670248105,124256.25006529527,87066.33638328456,280.75149,176.2310623443605,292835.09021197463,183642.0821413956,303.02201,145.05665987462004,313173.1004293819,148929.06060791056,3814.37605,1694.7489801428696,3953030.882061033,1738861.5140862716,1266.08291,544.644211266318,1312149.5941244685,558444.7928481472,2067.69222,857.636814306629,2130266.2794220583,870676.6595447779,0.37995,100000,0,540624,5648.011366604332,0,0.0,0,0.0,23681,246.89977956309616,0,0.0,28009,289.4096260930432,1861806,0,66752,0,0,4814,0,0,48,0.4910205915231041,0,0.0,0,0.0,0,0.0,0.06766,0.178076062639821,0.3096364173810227,0.02095,0.3190054782975137,0.6809945217024863,25.037754940765893,4.504738442187007,0.3183712121212121,0.2196969696969697,0.2314393939393939,0.2304924242424242,11.065973964739358,5.36338831800831,22.22659216226773,12734.377583523175,59.153478840913714,13.619731759972954,18.76748903863469,13.43113407326696,13.335123969039108,0.5450757575757575,0.7612068965517241,0.6906603212373588,0.5556464811783961,0.1273623664749383,0.7164658634538152,0.9032258064516128,0.8549618320610687,0.7142857142857143,0.175438596491228,0.4921933085501859,0.6941624365482234,0.640527950310559,0.5144329896907216,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432547485354,0.0045952525867315,0.0068938209434077,0.0090249405451551,0.0112025722163999,0.0133124191527719,0.0154417314321848,0.0177515397264751,0.0199928414378483,0.0221368965340705,0.024272193111086,0.0265438564064649,0.0286149068961617,0.030626325870698,0.0326913356097259,0.0346908617429135,0.0367866313260995,0.038656665317937,0.0407630730845202,0.0426163590149589,0.0570616984836459,0.0708812260536398,0.0849929697173196,0.0976030458881561,0.1095631815401489,0.1252803283544196,0.1377499044950974,0.1499462233912274,0.1617595195092496,0.1730412299241489,0.1860683116043529,0.1991728647677201,0.2104982419472475,0.2221358925816088,0.2335706974542973,0.2447717525019117,0.2543387460632999,0.2643682042277301,0.2723132658739622,0.2808813582638801,0.2888628940724097,0.2967247860045199,0.3040166779195243,0.3110343835419364,0.3171712997289446,0.322915895233158,0.3289292250607967,0.3343446834006858,0.3396896591954991,0.3442534199545766,0.3437537881338811,0.3432903652288878,0.3435530934156552,0.3426968728765777,0.3429297961247342,0.3422768343381349,0.3412357574124843,0.3425933531566756,0.3436724778019195,0.3441087073127123,0.3453279273191425,0.3463106642387776,0.3484708452360948,0.3479900343411218,0.3485586193598148,0.3496994770119428,0.3511437350631615,0.3553446270861489,0.3575885033298283,0.3608835055219095,0.3629287718345552,0.3631756756756756,0.3668228678537957,0.3703955314009662,0.3728323699421965,0.3714454277286135,0.3719383126700937,0.3694955964771817,0.3689926690198208,0.3698213606993538,0.0,1.8150994394499225,55.12959861506217,203.26361238890016,304.6054736527681,fqhc4_80Compliance_baseline,36 -100000,95654,42749,403.55865933468544,6663,68.5909632634286,5226,54.09078553954879,2078,21.347774269763946,77.27782633283482,79.68896911841766,63.2892740309558,65.07264541259508,77.01996839825676,79.43182358039672,63.194267026111085,64.98045301499462,0.2578579345780554,257.14553802093576,0.0950070048447102,92.1923976004564,118.3292,82.89934623160835,123705.43835072238,86665.84380329975,279.49077,175.55868531429832,291663.2132477471,183009.0704876832,305.49537,146.54762587683004,316509.9839003074,150931.7698874242,3771.83761,1691.8741198355756,3903615.290526272,1729156.172121149,1261.72439,545.5925308916258,1301119.336358124,552484.3821985289,2051.6822,856.3366780506642,2109491.291529889,865477.8382898628,0.3795,100000,0,537860,5622.974470487382,0,0.0,0,0.0,23491,245.02895853806427,0,0.0,28244,292.3557822987016,1864172,0,66926,0,0,4697,0,0,59,0.6168064064231501,0,0.0,0,0.0,0,0.0,0.06663,0.1755731225296442,0.3118715293411376,0.02078,0.3251928020565552,0.6748071979434447,25.08528595204413,4.534142228420061,0.3082663605051665,0.2248373517030233,0.2298124760811328,0.2370838117106773,11.022093403721051,5.5022222328375765,22.208265469530023,12733.293348435473,58.961294565298886,13.846550485639924,18.035136036755382,13.471834067690564,13.607773975213023,0.5545350172215844,0.7608510638297873,0.7200496585971446,0.582014987510408,0.1170298627925746,0.711969111969112,0.9205128205128204,0.8779220779220779,0.7007299270072993,0.1341463414634146,0.5026710760620707,0.6815286624203821,0.6704730831973899,0.5469255663430421,0.1127895266868076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021887603104797,0.0045229595975985,0.0066290378251071,0.0089027104484892,0.0111297624497685,0.0135186071861533,0.0157572667006629,0.0181907320212037,0.0202123524477813,0.0223005295991641,0.0244102564102564,0.0266858404807149,0.0288833552848205,0.0309813864325026,0.032893174614646,0.0347313440554377,0.0365373456022548,0.0386164932610636,0.0406668192886428,0.0425933456369191,0.0573070693348659,0.0711525370477038,0.0847354444596055,0.0979259399564352,0.1100629926244816,0.1252791684748669,0.1384198789423383,0.1507271080807542,0.1629093320214745,0.1739452495974235,0.1871450891654544,0.1996037159747937,0.2119041658049136,0.2226794195539407,0.2326492865950326,0.2432950616189378,0.2539698492462311,0.2632603680153058,0.2726839345304306,0.2807469487760756,0.288050518134715,0.2959221848110737,0.3031683308882684,0.3094932687581668,0.3157862751294455,0.3216823767457928,0.3274754180497276,0.3343732888487056,0.3394755952072203,0.3434866457083982,0.3433156090582742,0.3431710885950139,0.3436934644957033,0.3432227955243782,0.3420891693143002,0.3413921891090174,0.3414932680538555,0.3424741112063848,0.3434572222794193,0.3454049983864606,0.3469594975743673,0.3476716026837111,0.3490030287733467,0.349961850904358,0.3504201274869615,0.3510262779448294,0.3520856594806608,0.3551055333713633,0.3572696924497479,0.360639280407983,0.3616091954022988,0.363509898341359,0.3652907234798047,0.3678425947275382,0.3683561123766135,0.3708513708513709,0.3763975155279503,0.3762417218543046,0.3769662921348314,0.3759194734804491,0.0,2.10396912729667,56.96931654098446,198.1491312326924,299.4729641765037,fqhc4_80Compliance_baseline,37 -100000,95827,42877,403.6962442735346,6770,69.50024523359805,5252,54.316633099230906,2053,21.09008943199725,77.39792083527668,79.70238993554445,63.37134666233783,65.07170097012701,77.15053166571964,79.45479773232368,63.27976552716025,64.9824476069614,0.2473891695570387,247.59220322076203,0.0915811351775772,89.25336316561072,118.18246,82.77103483180166,123328.97826291127,86375.48376950301,280.78396,176.3762695286895,292533.7535350162,183579.3977988349,303.04471,144.87740301535723,313029.78283782233,148657.4413934265,3780.87659,1692.7350764901594,3912939.9021152714,1734077.977331561,1243.01131,541.5743124753252,1285227.9941978776,553345.0847979829,2016.741,838.7571583851797,2074091.7695430308,848889.8174170085,0.38049,100000,0,537193,5605.86264831415,0,0.0,0,0.0,23711,246.934580024419,0,0.0,28077,289.8139355296524,1869385,0,67007,0,0,4663,0,0,34,0.3548060567480981,0,0.0,0,0.0,0,0.0,0.0677,0.1779284606691371,0.3032496307237814,0.02053,0.3107994389901823,0.6892005610098176,25.36068970820556,4.444331651870729,0.3307311500380807,0.2189642041127189,0.2286747905559786,0.2216298552932216,10.95452369121861,5.459717987568754,21.83323174380094,12708.193561606244,59.13629701089621,13.514188475024106,19.536462447113404,13.317999766161233,12.76764632259749,0.5485529322162985,0.7660869565217391,0.6614853195164075,0.5795170691090757,0.1331615120274914,0.7269260106788711,0.9098360655737704,0.863961813842482,0.7686832740213523,0.1714285714285714,0.4892159350418675,0.6989795918367347,0.5971168437025797,0.5217391304347826,0.1229597388465723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0045293801740822,0.0064404888686038,0.0087121635206076,0.0109995120364346,0.0131994056705542,0.0152228403741517,0.0174243042520199,0.0194333472970073,0.0217718255389243,0.0238104995696897,0.0261303130097565,0.0281202482225783,0.0301109350237717,0.0324778396206967,0.0348366579936397,0.0369642358345144,0.0389191766339835,0.0408199291803823,0.0428990695834981,0.0570379488035382,0.0708473654485744,0.0838916674530527,0.0963309503784693,0.1083847167325428,0.1238437549553359,0.1370600897051183,0.1492187832602494,0.1610280843063315,0.1713985391438653,0.1849921385341058,0.1982110602766691,0.2104582268848182,0.221154371808749,0.231373239049389,0.2430885397637315,0.2541673635502035,0.2639040348964013,0.2732250969365774,0.2816883681548777,0.2899220863292719,0.2977721702356335,0.3043231482357393,0.3109169260234618,0.3170486237419668,0.3233568291692807,0.3290949514126552,0.3334476234015264,0.3382651543565138,0.3434850160636225,0.3441079701873363,0.3440536979080876,0.3433752723694384,0.3434873495278598,0.3434329951948745,0.3427986619212733,0.342083649229214,0.3430575586731349,0.3440753763697812,0.3443837475007141,0.3454746343564486,0.346286820633384,0.347875235503454,0.3484767025089605,0.3490891543008806,0.3501829587036069,0.349875361737486,0.3517405063291139,0.3543420820856086,0.3543664213248458,0.3570676313017995,0.3600385067921703,0.3612133519482168,0.3606959454280677,0.3647125674779808,0.3678639391056137,0.3700859950859951,0.3757085020242915,0.3705625341343528,0.3801369863013699,0.0,1.910094553584536,58.16347447260143,197.229528010024,298.87007198021166,fqhc4_80Compliance_baseline,38 -100000,95547,42476,400.3998032381969,6745,69.37946769652632,5290,54.716526944854365,2165,22.19849916794876,77.19945181010942,79.67026521271184,63.224607941291474,65.05361341521458,76.93285065053405,79.40638850421466,63.12680013645139,64.96013668862507,0.266601159575373,263.8767084971789,0.0978078048400803,93.47672658951468,118.2764,82.76952783561845,123788.71131485028,86627.02945735444,278.76279,174.68075010108691,291130.9407935362,182198.122495826,301.19414,144.6863735868499,311338.21051419724,148401.547828687,3819.72042,1717.7827097354316,3955498.466723183,1755599.2440740487,1307.24121,566.3083437932545,1353158.047871728,577693.7567827915,2134.89224,887.585488545772,2192094.8224434047,892573.8931771901,0.37907,100000,0,537620,5626.759605220467,0,0.0,0,0.0,23568,246.01505018472585,0,0.0,27879,287.88972966184184,1861185,0,66828,0,0,4544,0,0,54,0.5651668812207605,0,0.0,0,0.0,0,0.0,0.06745,0.1779354736592186,0.3209785025945144,0.02165,0.3286477368569019,0.6713522631430981,25.12771453563895,4.556745852912073,0.3217391304347826,0.2149338374291115,0.2194706994328922,0.2438563327032136,11.26623020533481,5.73191716226561,23.07336895600126,12746.413331250067,59.96050158439248,13.548758739144,19.223418475919157,13.009349518874474,14.178974850454848,0.5421550094517958,0.7660510114335972,0.6880141010575793,0.5753660637381568,0.1224806201550387,0.7196048632218845,0.9152119700748128,0.8734491315136477,0.73828125,0.15234375,0.4833920483140412,0.6847826086956522,0.6304849884526559,0.5292817679558011,0.1150870406189555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023010410436792,0.0045859459020717,0.0065703956454626,0.008754270375793,0.0112696990674756,0.0134355440477889,0.0156044292493749,0.0178113408066708,0.0199551776010806,0.0222283711492344,0.0244005091566067,0.026560138199093,0.0287744593202883,0.0311842376727872,0.0333381559638716,0.0354532844750843,0.0377088453999564,0.0395555971273864,0.0414678860857065,0.0431900277702378,0.0579202276222057,0.0723124030032297,0.0852280491522395,0.0978051273405477,0.1095961357558846,0.1251351752507368,0.1388631793955254,0.1515581643543223,0.1632685858769834,0.1738344894337796,0.1876208270782257,0.2000434121988278,0.2119899629063932,0.2231985169096433,0.2337840075051045,0.2446286133268158,0.2545242918378081,0.2645140174258498,0.2731297588290862,0.2808518948226942,0.2889953485134963,0.2966151392179399,0.3035447362801622,0.3101799572331275,0.3168524270662038,0.323114198828096,0.3280027134655729,0.3332439883596262,0.3388242936018187,0.3431464689919915,0.3429505804132488,0.3434751998232996,0.343352127404016,0.3427142235754676,0.3427159977911437,0.3422672164440888,0.3408650023851168,0.3422099028197132,0.3434926856101628,0.34434420042414,0.3457263102270368,0.3471122079369502,0.3480853403252067,0.347695707070707,0.3485021224984839,0.3498197890084449,0.35024168488894,0.3523299648366965,0.3554445271251905,0.3557143427408087,0.3595218541837759,0.362292641429179,0.3654572940287226,0.3654919348673648,0.3674409856108342,0.3665433719126595,0.3704212454212454,0.3662170324139319,0.3657931034482758,0.3694638694638694,0.0,2.5771462479438045,57.61739282849143,205.15175899560373,298.7322934871009,fqhc4_80Compliance_baseline,39 -100000,95672,42760,401.8939710678151,6829,70.08320093653316,5363,55.36625135880927,2228,22.807090893887448,77.33990302576841,79.72760308955587,63.32261558699434,65.08778737353042,77.05976831418229,79.45145704977945,63.21969947408471,64.98945274316554,0.2801347115861148,276.14603977642105,0.1029161129096252,98.33463036487444,118.04298,82.7160066378503,123382.99606990552,86457.90475567596,283.34921,178.3692793333527,295491.606739694,185763.0782682709,310.11467,149.01498060394246,319715.5803160799,152328.57199195583,3915.85884,1759.0671933697654,4047323.386152688,1793034.372992393,1295.71578,566.366347847705,1338556.5787273182,576283.0104142051,2194.89172,912.0885246250511,2250258.466426959,916247.9552557354,0.37912,100000,0,536559,5608.318003177524,0,0.0,0,0.0,23853,248.6202859770884,0,0.0,28607,294.65256292332134,1864700,0,66907,0,0,4509,0,0,50,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06829,0.1801276640641485,0.326255674330063,0.02228,0.3229296712442779,0.677070328755722,25.0942102920769,4.497379509206097,0.3220212567592765,0.2097706507551743,0.2269252284169308,0.2412828640686183,11.087644767515744,5.6016511972590255,23.719885725765632,12741.988350450456,60.55793035509805,13.21806246500065,19.48296418736586,13.694541912648535,14.16236179008301,0.5439119895580832,0.7626666666666667,0.6988998262883613,0.5792933442892358,0.1136012364760432,0.7140718562874252,0.9295774647887324,0.8600917431192661,0.7473684210526316,0.1384615384615384,0.4874596473801837,0.6857142857142857,0.6444616576297444,0.5278969957081545,0.1073500967117988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713866099463,0.004835031169226,0.0072551267871457,0.0095579571771015,0.012069999898315,0.0143223599828986,0.0166551147714763,0.0188005225769576,0.0209048904154399,0.0232860447501484,0.0254856732789994,0.0276027017594284,0.0295841559723593,0.0315808990152857,0.033728970998039,0.0355470082818946,0.0377837406628472,0.040107118390733,0.0420892758688845,0.0441785070208174,0.058791576132375,0.0724082333479908,0.0860761087387604,0.0987228312327729,0.1110771178394345,0.126281488377998,0.1391149353336233,0.1514896697073882,0.1629052069425901,0.1738934637159032,0.1880088743376556,0.2003743697388068,0.2121558136500065,0.2230774276780443,0.2328002729503956,0.2433073046463975,0.2537519945547261,0.2626125112511251,0.2715462467096305,0.2798872890965946,0.2884295034935912,0.2965137357175436,0.3037550740245446,0.3102345032533282,0.3169502434995931,0.322611653356995,0.3277014342569648,0.3335030031558587,0.3380031621782742,0.3424567058108661,0.3421112953898844,0.3419362839662679,0.341768757409812,0.3424651580563845,0.3418249534450652,0.3398487242823609,0.3395612935970435,0.3407584107921362,0.341214483536773,0.3416355482499241,0.3425693167748471,0.3433841155377696,0.3444453774456293,0.3456751291844529,0.3468266834426189,0.3480825185457024,0.3488298726626133,0.351378763866878,0.3541777258732349,0.356023447780835,0.3562408491947291,0.3581012455230662,0.3617021276595745,0.36783988957902,0.3704648526077097,0.3677049767275331,0.3701358863495985,0.3709942481511915,0.3737714125245717,0.374611801242236,0.0,2.650728892104479,58.435285446428686,201.3296581397225,308.66075862913,fqhc4_80Compliance_baseline,40 -100000,95781,42679,401.86467044612186,6754,69.30393293033065,5254,54.22787400423884,2087,21.402992242720373,77.331780499572,79.67348577528678,63.32970022966426,65.06300285819081,77.0779197606781,79.4210015188356,63.23627533121658,64.97300749882255,0.2538607388939056,252.4842564511829,0.0934248984476795,89.99535936825964,118.87128,83.24200973866648,124107.36993767032,86908.6872539089,280.45547,176.49081383351975,292167.0268633654,183623.74505667412,307.56354,147.587359060779,317401.0085507564,151240.94487978125,3741.32932,1687.057146334905,3862667.449702968,1717979.4105991016,1243.68079,540.8536709646223,1282890.782096658,549150.0940797682,2044.902,846.4662738280463,2098172.6020818325,851543.7641094155,0.37972,100000,0,540324,5641.244088075923,0,0.0,0,0.0,23773,247.5438761340976,0,0.0,28358,292.3335525834977,1862297,0,66880,0,0,4676,0,0,47,0.4907027489794426,0,0.0,1,0.0104404840208392,0,0.0,0.06754,0.1778679026651216,0.309002072845721,0.02087,0.3251369959252494,0.6748630040747506,24.926598691136885,4.460848515935365,0.3229920060905976,0.227255424438523,0.2223068138561096,0.2274457556147697,11.196943279485955,5.708856470647041,22.05414692159188,12668.011545050878,59.32480421698198,13.997348279394023,19.30644786649156,13.08916118437885,12.931846886717551,0.549486105824134,0.7646566164154104,0.6923983500294637,0.577054794520548,0.104602510460251,0.7145003756574004,0.8790931989924433,0.8660714285714286,0.704119850187266,0.1187214611872146,0.4934998725465205,0.7076537013801757,0.6301040832666133,0.5394006659267481,0.1014344262295082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018232463914915,0.003973885892705,0.0061696449409926,0.0082286968182372,0.0105873379099923,0.0129532887300278,0.0150486327766562,0.0173853566907591,0.0197910490482713,0.0218150176588012,0.0241214581539344,0.025915354128591,0.028122236617517,0.030078595782816,0.0323965611550886,0.0344250093040565,0.0363416048717842,0.0386358686069306,0.0406950160036579,0.0428584816268729,0.0570402913583854,0.0708980983661429,0.0836766571269826,0.0966982619112671,0.1083655598992634,0.1237490356874887,0.1369500005299922,0.1493911841335672,0.1608661778674265,0.1715776615806617,0.1852306367404058,0.198197905849775,0.2099894515915047,0.2219038453125683,0.2320373284618516,0.2427764236649678,0.2529984714768657,0.2634432184993983,0.2727674774621534,0.2811498305705651,0.2885602626954028,0.296094544519387,0.3034476231040439,0.3104192133457971,0.3167421913913962,0.322644697408828,0.3290035698628421,0.3344591580530454,0.339907162491572,0.344452223998309,0.3441507705571721,0.3436679000288854,0.3426305483948217,0.3418360703175866,0.3415548481152003,0.3403403249812038,0.339134711491171,0.3396453013951039,0.3395770496298327,0.3402379035864413,0.3408557094270843,0.3414358730536075,0.3429948640229014,0.343541615213633,0.343741679374531,0.3441418752295503,0.3453117835855112,0.3487299380765828,0.3529266833268804,0.3548631612542887,0.3547766323024055,0.3552786394266766,0.3561914473264929,0.3574170761670762,0.3607672682604176,0.3628782463664522,0.3722436391673092,0.376391982182628,0.3723640399556049,0.376577287066246,0.0,2.3540509711815423,58.36166776399151,197.30309578519663,298.4521042236211,fqhc4_80Compliance_baseline,41 -100000,95693,43097,406.759115086788,6706,69.03326262109036,5226,54.08964083057277,2103,21.57942587232086,77.34192318165195,79.71575823955851,63.32298576779221,65.07419502260043,77.08768970794854,79.46305381492242,63.22966398023641,64.9840719602249,0.2542334737034082,252.704424636093,0.0933217875557943,90.12306237553958,118.53886,83.04335023961639,123874.11827406392,86781.00826561649,280.83813,177.05345858053676,292975.0660967887,184519.20054814537,305.44946,146.49185913133493,316060.1924905688,150656.21850746288,3760.40865,1680.971499257766,3893599.301934311,1720569.769217983,1245.20832,536.287228811695,1288454.1398012394,547625.5617565494,2075.13078,856.5736015943972,2132303.4077727734,865412.5197426106,0.3832,100000,0,538813,5630.641739730179,0,0.0,0,0.0,23694,247.0818137167818,0,0.0,28202,291.5364760222796,1862434,0,66753,0,0,4676,0,0,65,0.6792555359326179,0,0.0,0,0.0,0,0.0,0.06706,0.175,0.3135997614076946,0.02103,0.3277872582480091,0.6722127417519909,25.003456685042217,4.464677204687597,0.3249138920780712,0.2183314198239571,0.2198622273249139,0.2368924607730577,10.960450010925562,5.469640973092493,22.238436337332026,12797.619895054191,58.89912393921373,13.3767575664608,19.327445425227907,12.796455587289865,13.398465360235155,0.554726368159204,0.7791411042944786,0.7025912838633687,0.598781549173194,0.104200323101777,0.7198772064466615,0.904632152588556,0.8549107142857143,0.74609375,0.1379310344827586,0.49987254652052,0.7196382428940569,0.648,0.5565509518477044,0.0964214711729622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161771108613,0.0043279512674714,0.0065126753705225,0.0088772421638531,0.0111661395462357,0.0133982203579646,0.0157208979874803,0.0177264047869461,0.0199907970755151,0.0221268840104849,0.0240956443277827,0.0259496205625327,0.0281717665209565,0.0303342538020854,0.032516464686087,0.0344877509022657,0.0362969638584169,0.0384571470090615,0.0405994238708805,0.0426405460324076,0.0575233718075938,0.0713582677165354,0.0845744513366289,0.0976472073740477,0.1094838137846621,0.125107148526377,0.1383462159177779,0.1505006391137622,0.1622109865207213,0.1731425627374793,0.1870599777899968,0.1997790701452289,0.2121165944663343,0.2231791123172546,0.233979086406164,0.2458313482610767,0.256405390017081,0.2658366074142453,0.2754603106174912,0.2835870474095964,0.2908112486980673,0.2986588962224407,0.3053305863408165,0.3115900314216497,0.3183679918326669,0.3238448641451748,0.3295504365362695,0.3352005092297899,0.3401675485008818,0.3457838966255318,0.346084304835924,0.3457824011478712,0.3462195552417931,0.3461416093017874,0.345701384350306,0.3451908794389232,0.3445638922752965,0.3456668311133037,0.3463718723775924,0.3477196368575309,0.3496218731820826,0.3506184586108468,0.3524407662577718,0.3528949730700179,0.3526606123383036,0.3539481237931214,0.3547890535917902,0.3557141958613749,0.3584370071841598,0.3608092026973423,0.3624279816721862,0.3648032247798876,0.3689859830786715,0.3668437025796661,0.3694636516538964,0.3721857410881801,0.3743033589395993,0.3718612993224392,0.3697547683923706,0.3696788648244959,0.0,2.025193216504193,57.630799571342855,198.9080014622605,294.9388539935283,fqhc4_80Compliance_baseline,42 -100000,95746,42730,403.9333235853195,6802,70.04992375660602,5334,55.208572681887496,2189,22.549244877070585,77.32392886815877,79.68995845362171,63.31606620966248,65.0661785516906,77.05528156993068,79.41842895399652,63.21755931096507,64.9688138080425,0.2686472982280889,271.52949962518846,0.0985068986974084,97.36474364810022,117.93166,82.66194060511062,123171.37008334552,86334.61513286259,281.27911,176.50773185027745,293254.4127169804,183839.7793180212,310.29836,148.88329342725933,321313.0679088421,153379.08370868425,3874.58929,1747.4771069609226,4011032.9935454223,1790362.9127984822,1307.19381,567.1869008852814,1353563.772899129,580974.6048871442,2149.25474,896.9446520368235,2215500.4491049238,910810.4771323882,0.37987,100000,0,536053,5598.698640152069,0,0.0,0,0.0,23725,247.24792680634175,0,0.0,28662,296.5659139807408,1864690,0,67045,0,0,4675,0,0,45,0.469993524533662,0,0.0,0,0.0,0,0.0,0.06802,0.1790612577987206,0.3218171126139371,0.02189,0.3382743672213676,0.6617256327786324,24.771193881589344,4.489046948036434,0.3233970753655793,0.213535808023997,0.228158980127484,0.2349081364829396,10.992430469348896,5.524224072658627,23.362186379874107,12687.175931791708,60.31210641610712,13.430291372018385,19.522058078092844,13.611806432392632,13.747950533603271,0.5374953130858643,0.7743634767339772,0.6753623188405797,0.5653245686113394,0.1053471667996807,0.7048710601719198,0.92,0.8637362637362638,0.7380952380952381,0.1066176470588235,0.4781615033011681,0.7028795811518325,0.6078740157480315,0.5102925243770314,0.1049949031600407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002106819816261,0.0040758803191759,0.0062719467391966,0.0087687211688918,0.0110774301175896,0.0132382892057026,0.0152417266480435,0.0173017444649728,0.0194971832857916,0.0217159823896795,0.02375508781283,0.0257808168545555,0.0277683537406573,0.029675332701578,0.0319381668833715,0.0337702342312542,0.0358178654292343,0.0376347992153362,0.0396402017365985,0.0416419232171693,0.0564290486928923,0.0711416136591898,0.0848529334661563,0.0972429601901116,0.1093993842000927,0.1253847537047418,0.1383813949540603,0.1506398654259736,0.1624586136921926,0.1730517740379462,0.1871010795741978,0.200300586034643,0.2119617797006294,0.2227992303319193,0.2323197888601748,0.2437965741366137,0.2544943256000803,0.2644341671448986,0.2731216005995435,0.2812779523405426,0.2888319695880949,0.2961638986884823,0.3030123339658444,0.3097502401536983,0.3164540008766376,0.3218603732108233,0.3276251411366202,0.3326614960710276,0.3374483994080536,0.3420756639451641,0.3420068325749085,0.3418863551711294,0.3418914527136821,0.3415886088797378,0.3420903618048518,0.3404764461352027,0.3396363982184464,0.3412089446790332,0.3421498349044499,0.3429950827000447,0.3435336497870504,0.3433214427269124,0.3439370078740157,0.3450247807853602,0.3457594402219809,0.3459101382488479,0.3468424665370095,0.3508660818898635,0.3537082314588427,0.3563861682990206,0.3599633111671635,0.361720292407022,0.363946653182479,0.3680672268907563,0.3712444318074116,0.3730272596843615,0.3740886998784933,0.3741564112743152,0.3654103180967655,0.3652239939255884,0.0,1.823100421361889,62.059680921243626,192.881470267576,304.8400420410639,fqhc4_80Compliance_baseline,43 -100000,95799,42667,402.05012578419394,6855,70.58528794663827,5257,54.36382425703817,2109,21.659933819768472,77.4066300966336,79.74344255971964,63.35719594835807,65.08687153909808,77.15090606241053,79.48888821694142,63.26438245508223,64.9970338084697,0.2557240342230784,254.55434277822064,0.0928134932758411,89.83773062838907,119.55262,83.66563443477182,124795.26926168332,87334.55926969156,280.03264,175.11467086923537,291791.89761897305,182273.04133575017,297.65748,141.90199662554798,308068.5810916607,146096.09225317655,3796.64599,1680.970653096298,3927516.7068549776,1719064.2836525412,1255.22441,542.1736354106931,1292934.644411737,548681.810460559,2075.53432,853.628942921627,2133284.2722784164,862360.9280762334,0.38158,100000,0,543421,5672.512239167423,0,0.0,0,0.0,23647,246.286495683671,0,0.0,27472,284.01131535819786,1865249,0,66991,0,0,4806,0,0,55,0.5741187277528993,0,0.0,0,0.0,0,0.0,0.06855,0.1796477802819854,0.3076586433260393,0.02109,0.3211719181868435,0.6788280818131565,25.400246547258877,4.535835218689024,0.3340308160547841,0.202587026821381,0.2282670724747955,0.2351150846490393,10.837444598465703,5.3784937852613925,22.28014827636175,12825.108166657415,58.72908558942382,12.439980741756006,19.605082294721925,13.234839219415225,13.449183333530645,0.5421342971276394,0.7549295774647887,0.6810933940774487,0.59,0.1148867313915857,0.7089430894308943,0.8987730061349694,0.8613138686131386,0.748062015503876,0.1361702127659574,0.4911845045939905,0.6914749661705006,0.6260223048327137,0.5467091295116773,0.1098901098901098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019960686566559,0.004218125773154,0.0065556468880973,0.0088698779756764,0.0109132331851791,0.0131463717643225,0.0155278236577557,0.017751237686929,0.0196962263379533,0.0217671619796143,0.0238485662164101,0.0259606998101687,0.028027585639845,0.0302347127856701,0.0323262310459638,0.0341370230781145,0.0363626959085501,0.038624607378689,0.040516954787234,0.0425073396214629,0.0575849584207176,0.0716870241780306,0.0849099122705881,0.098021081836621,0.1103220844352196,0.1266153147156095,0.1397774244833068,0.152021603461657,0.1638821320360176,0.1751451153426007,0.1883384433327954,0.2020648648648648,0.2143268468116083,0.225460223178215,0.2361599297012302,0.2474887158155589,0.2575178119459899,0.2676197219506164,0.2766420626551923,0.2852205360617089,0.2924302512458231,0.2999415751343772,0.3066786533866427,0.3131534509395322,0.3191484193779527,0.325356729181556,0.330808997484009,0.3362555985342019,0.3412659342937092,0.3454915218424806,0.3458597953157235,0.3454452828110371,0.3454158383735848,0.3460309196349805,0.3459155013300441,0.3452404648527813,0.3440163169794615,0.3449207935389807,0.3456407813244402,0.3460417333191141,0.3462789827973074,0.3481669720071705,0.3481229381550925,0.3481422008118114,0.3486794804198821,0.349283042394015,0.3502882621907927,0.3521175291316877,0.3551221903228065,0.360188261351052,0.360867789225253,0.361379601753552,0.3637045838284035,0.3643901703603196,0.3667037449017427,0.3714585519412381,0.3712364358856793,0.3664596273291925,0.3706872757383384,0.3663328197226502,0.0,1.9745966933869368,54.28957762043165,202.31036438974436,302.8661685392325,fqhc4_80Compliance_baseline,44 -100000,95699,43048,406.9635001410673,6917,71.2128653381958,5386,55.81040554237767,2205,22.80065622420297,77.29491858535671,79.69854719207558,63.29396199958445,65.07464796673726,77.03479910508835,79.43266370021139,63.20083737693041,64.98092199936518,0.2601194802683579,265.88349186418725,0.0931246226540452,93.72596737208028,118.67064,83.07627415110389,124004.05437883364,86809.9710039853,282.49691,177.19684125966504,294719.4746026604,184686.9050456797,307.96987,147.849490105046,318113.2613715922,151755.27191808095,3884.99953,1736.355162688339,4030981.316419189,1785770.4288324215,1319.57865,574.3585018043758,1368812.5999226742,590115.7466655205,2166.4824,880.8533503447566,2242204.516243639,902368.7211787644,0.38258,100000,0,539412,5636.54792631062,0,0.0,0,0.0,23796,248.1530632503997,0,0.0,28505,294.1932517581166,1863547,0,66913,0,0,4760,0,0,46,0.4806737792453421,0,0.0,0,0.0,0,0.0,0.06917,0.1807987871817659,0.3187798178401041,0.02205,0.3228302929795467,0.6771697070204533,24.982193116486837,4.482759249557115,0.3330857779428147,0.2109171927218715,0.2218715187523208,0.2341255105829929,11.19184599366547,5.670741476489779,23.27340028840006,12759.680303169458,60.6844663377163,13.370562922833154,20.199569545431093,13.41851783208446,13.695816037367594,0.5477163015224656,0.7588028169014085,0.6811594202898551,0.59581589958159,0.1221252973830293,0.7319116527037319,0.8900804289544236,0.8701594533029613,0.7638376383763837,0.1739130434782608,0.4883378345200098,0.6946264744429882,0.6199261992619927,0.5465367965367965,0.110572259941804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022301742577067,0.0043228104356297,0.006448992027624,0.0086218290885059,0.0109327442816861,0.0129340658220623,0.0150414302624596,0.0173269855540344,0.0194172770798379,0.0214917178008379,0.0236033892046037,0.0255385595266223,0.0276805927145503,0.029701847863054,0.0318025578298702,0.034033795942005,0.0361335917018123,0.0379979443735011,0.0398626859461146,0.0418990046380738,0.0567578859410904,0.0712281730245802,0.0839970199683109,0.0975917684562699,0.1099670858300278,0.1249576809140922,0.1381839409860425,0.1509912058428976,0.1624569951065239,0.1732376385268149,0.1873741127303669,0.2001882139148494,0.2123787990782208,0.2243044780033656,0.2344837443514782,0.2453448466733089,0.2549358616843279,0.2636902685734217,0.2730998467389453,0.2818120336088217,0.2899136314168615,0.296870611365977,0.3050040842419292,0.3110644677661169,0.3177012444098775,0.3236045464081648,0.3291450046977764,0.3343516891977902,0.3396409572746923,0.3448084836973726,0.3451872989379888,0.3454582960874647,0.3464361694633472,0.3462044439304353,0.3456808482162773,0.3449556489978822,0.3440745799320268,0.3445749007854826,0.3450893698695868,0.3460304371986305,0.3467819404418828,0.3478252226463104,0.3492458077020308,0.3491677912730544,0.3494481503941783,0.3527046207222835,0.3543535771796641,0.3573444983664795,0.3586065573770491,0.3620110391168706,0.3633849557522124,0.3658536585365853,0.3684343914338212,0.3706969255539369,0.3690702087286527,0.3696693818878773,0.3697118332311465,0.3769058751778817,0.3708971553610503,0.3560864618885097,0.0,1.7302007868917104,58.29969040330015,204.3224495113768,311.26327153981094,fqhc4_80Compliance_baseline,45 -100000,95720,42935,403.7818637693272,7017,72.07480150438779,5528,57.17718345173422,2248,23.129962390305057,77.3593554540744,79.73072409852614,63.33143217950936,65.0838730771568,77.08372373184426,79.45431919227374,63.2300146046076,64.98480315978829,0.2756317222301447,276.4049062523952,0.1014175749017667,99.06991736851012,116.9619,81.95682410836336,122191.70497283744,85621.42092390657,283.33938,177.7813979085493,295395.34057668195,185118.12473183067,311.74557,150.05418346185633,322388.9155871292,154229.78585949494,3954.44522,1780.6479069672573,4094094.055578772,1823153.5202030512,1318.21122,579.3198216370366,1364288.915587129,592398.5156726362,2199.46756,913.7742242137988,2264982.3443376515,926120.4615749144,0.38217,100000,0,531645,5554.168407856248,0,0.0,0,0.0,23915,249.2164646886753,0,0.0,28894,298.4956122022566,1870095,0,67102,0,0,4690,0,0,44,0.4596740493104889,0,0.0,0,0.0,0,0.0,0.07017,0.1836093884920323,0.3203648282741912,0.02248,0.3158609451385117,0.6841390548614883,24.777985190299603,4.442699399524341,0.3288712011577424,0.2141823444283647,0.2339001447178003,0.2230463096960926,11.12439666011624,5.657930762104607,23.909861351789036,12857.66434502416,62.46178550129029,14.213643721083889,20.36622142706621,14.448410716313685,13.433509636826503,0.5452243125904487,0.7829391891891891,0.6776677667766776,0.5467904098994586,0.1200324412003244,0.7277777777777777,0.9190371991247264,0.8619909502262444,0.688135593220339,0.1788617886178861,0.4809197651663405,0.6973865199449794,0.6184593023255814,0.5050100200400801,0.105369807497467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0045313086054314,0.0070524724243254,0.0093233937965915,0.0119784834711164,0.0143137833793152,0.0166165451857892,0.0187411959251168,0.0209973216658829,0.0231574852322403,0.0251653591755114,0.0275269877463819,0.0296411374953701,0.0315268905831444,0.0337846204647707,0.0358597448779176,0.0380470230145665,0.0398390258575088,0.0419053361471208,0.0438845024061998,0.058768861274996,0.0730224185209218,0.0867503750091785,0.0996982028875779,0.111917240506596,0.1278324341478895,0.1404102683830162,0.1530738272183301,0.1650511376387983,0.1759030714086411,0.1893318965517241,0.2024877937880936,0.2139632043345337,0.2251600547195622,0.2355053704213715,0.2469639668614903,0.2567298885240042,0.2663231207173959,0.275231544538273,0.2837088308771286,0.2915523766535884,0.2993251383057111,0.3066843275462415,0.3125127234842588,0.3181619521670511,0.3238808544186848,0.3286313286188121,0.3336682266761623,0.3391074688313201,0.3438893138832467,0.3443650697555528,0.3439400192598706,0.3441956625692667,0.3444761575275327,0.3447150128359227,0.3447759140048013,0.3449708535410183,0.3456458326505194,0.3476086437032738,0.3483202198076683,0.3495384268988292,0.3506318583369647,0.3503830933737475,0.3505493515850144,0.3512011213688433,0.3517680006281571,0.3520086986379764,0.3545109211775878,0.3585671431092289,0.3599840573933838,0.3623401036174407,0.3650530148870087,0.3695652173913043,0.3735438381361128,0.3713638080846241,0.3689839572192513,0.3753652160541288,0.3718857605833502,0.374106652006597,0.3782026768642447,0.0,2.17473609765593,63.66282470115085,203.35361390810837,311.97925058048736,fqhc4_80Compliance_baseline,46 -100000,95889,42863,403.768941171563,6758,69.34059172584968,5249,54.16679702572767,2160,22.17146909447382,77.4394230829848,79.71939285201069,63.39129033748679,65.07723150022247,77.1684997323258,79.44777493708257,63.291980835857046,64.98013822020089,0.2709233506590038,271.6179149281146,0.0993095016297402,97.09328002158202,118.30214,82.86305134751346,123374.0470752641,86415.59652046998,280.06025,176.15141178353454,291484.3934132174,183120.7247792078,306.81135,147.67143088056338,316339.87214383297,151218.88018527583,3802.22024,1719.8951683361004,3928897.7150663785,1757403.830373147,1266.42255,558.7158231182029,1305706.8276861787,567672.8427140667,2124.79578,887.4181467761582,2183241.6022692905,897548.7782819944,0.38023,100000,0,537737,5607.911230693823,0,0.0,0,0.0,23630,245.82590286685647,0,0.0,28313,291.6705774384966,1869069,0,67134,0,0,4850,0,0,51,0.5214362439904473,0,0.0,0,0.0,0,0.0,0.06758,0.1777345291008074,0.319621189701095,0.0216,0.3211151995471271,0.6788848004528729,24.91412068049537,4.579697679014937,0.3257763383501619,0.2114688512097542,0.2291865117165174,0.2335682987235663,11.202900653884209,5.682621275071807,23.160482889279976,12689.71361739353,59.315582875773416,13.045500993865392,19.286998338405883,13.490426491911364,13.492657051590788,0.5532482377595732,0.772972972972973,0.695906432748538,0.5918536990856192,0.1174551386623164,0.7105069801616458,0.9222222222222224,0.8363636363636363,0.7305194805194806,0.1660079051383399,0.4981995884773662,0.7013333333333334,0.647244094488189,0.5441340782122905,0.1048304213771839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024093946142943,0.0046921237180266,0.0069994623601375,0.0093817583689549,0.0116783721426611,0.0137766834211758,0.015737203972498,0.0174010607915136,0.0195026766376527,0.0216248286585241,0.0238429459921923,0.0257228458270915,0.0278274451774667,0.0301102498378678,0.0322896584430446,0.0343232415017967,0.0363235704900733,0.0384523723176076,0.0402807192392342,0.0422882466762374,0.0566639564700731,0.0706546157463037,0.0835593344572308,0.0959065187036084,0.1082816628593685,0.1237898159781243,0.1367878062472857,0.1491568287836445,0.1609653657964587,0.1727093722577745,0.1870659815535441,0.2002009572479661,0.2123305526590198,0.2235321110941153,0.233767233228523,0.2445555949008498,0.254466026991185,0.2634617544647871,0.2723411003749476,0.2801499925689657,0.288111710421455,0.2957050773039376,0.3029092241674843,0.3091845287989462,0.3148903620601734,0.3219794027791465,0.3278784921617936,0.3330790841946023,0.3377278666890921,0.3422554329920004,0.3423656261357671,0.3420969405293915,0.3418740849194729,0.341774347411326,0.3425837889232232,0.3411663781614302,0.3399325298151697,0.3408341129548476,0.3420386955629999,0.3440351409745906,0.3456331795852552,0.3462055867690116,0.347481441093822,0.3477182317972556,0.3487986942850971,0.3491451209341117,0.3489759395506064,0.3509908894524279,0.3543738441676262,0.3570441170662348,0.3596717892923523,0.3601526474797265,0.3631053325796118,0.3658313656790311,0.365453856357779,0.3670720076299475,0.3670278637770898,0.3658988070752776,0.3692006707657909,0.3689839572192513,0.0,2.2191188585243604,59.91439457852392,196.58456011122703,293.04878712843663,fqhc4_80Compliance_baseline,47 -100000,95737,42420,400.22143998663006,6711,68.82396565591151,5214,53.8663212759957,2059,21.151696836123964,77.34647984393533,79.69857950390258,63.33814763576003,65.07519135829016,77.08705204839065,79.4387309299361,63.24307866137252,64.98220411977383,0.2594277955446813,259.84857396647953,0.0950689743875159,92.98723851632928,118.89636,83.20247197796805,124190.60551302004,86907.33152069528,280.12724,176.10593895689004,292011.95984833455,183358.77346991244,300.56372,144.74481334596183,309716.1703416652,147974.86590663405,3746.88768,1692.2690272796342,3876742.356664613,1730635.1538899615,1258.2252,546.5298822025651,1301281.1452207612,557895.2883446993,2023.69068,847.7602979158564,2081674.1489706172,859186.6102959466,0.379,100000,0,540438,5645.027523319093,0,0.0,0,0.0,23737,247.3338416704096,0,0.0,27893,287.14081285187547,1863643,0,66913,0,0,4676,0,0,40,0.4178112955283746,0,0.0,0,0.0,0,0.0,0.06711,0.1770712401055409,0.3068097153926389,0.02059,0.3317743764172335,0.6682256235827665,25.03614983104302,4.423304982569813,0.3200997314921365,0.2232451093210586,0.2293824319140774,0.2272727272727272,11.251310116552744,5.823624793499958,22.06347113532186,12648.28369754295,58.90210664696732,13.725216302735264,18.93292154098056,13.283696098322368,12.96027270492913,0.5496739547372459,0.7697594501718213,0.6896345116836429,0.5735785953177257,0.1122362869198312,0.7304860088365243,0.9193154034229828,0.8861047835990888,0.6892857142857143,0.1478260869565217,0.4859958506224066,0.6887417218543046,0.6195121951219512,0.5382096069868996,0.1036649214659685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025420295726149,0.0046629970906952,0.0069311251154341,0.0092237053290262,0.0116643276994732,0.0139069881088125,0.015973496432212,0.0181977770746792,0.0203616440596538,0.0224422307085888,0.0243544931784868,0.026307145936403,0.0281293373772682,0.0300960973951735,0.0323046604966931,0.0341302572689592,0.0361247437410697,0.0381387145302692,0.0401567600158007,0.0419756686942754,0.0558855770736545,0.0690745062742676,0.082363802310089,0.0948034741645811,0.1071914305896741,0.1224929957181371,0.1352575526137135,0.1471248709570992,0.1593876439880005,0.1708124792352127,0.1850125415809927,0.197506299135964,0.2097655867937446,0.2203658376677302,0.230766694509166,0.2417541063443573,0.2526396771064456,0.2620747821197638,0.2719238536065164,0.2805130848078795,0.2880591317625013,0.2953971372438956,0.301975685689596,0.3080316999772201,0.3142895321857651,0.3211281482849929,0.3271011663412925,0.332089552238806,0.3364591439688716,0.3409439247397072,0.3419040813299716,0.3415484226477476,0.3422930475250317,0.34277157242896,0.3432487128359275,0.3430417235717464,0.341756709654932,0.3423343516967248,0.3427046080662548,0.3430119254080921,0.3438180316793033,0.3451499188022339,0.3459241187852275,0.3472268983009,0.3479887971413395,0.3486802363755745,0.3497818348834539,0.3527868230533337,0.3552835778781038,0.3600668337510442,0.3620058565153733,0.3635975674810626,0.3648904006046863,0.3663707332006735,0.3696125793312494,0.3722182340272792,0.3683159188690842,0.3685397867104183,0.3698283141007599,0.3795966785290628,0.0,2.3226186014483456,59.60328212268267,189.3869514882825,298.175625967594,fqhc4_80Compliance_baseline,48 -100000,95736,42316,399.588451575165,6768,69.49318960474638,5259,54.32648115651374,2168,22.206902314698755,77.41222784566315,79.76786074696264,63.350809200748486,65.08965644925874,77.14064095130102,79.49820774319161,63.25106785882049,64.99358833745502,0.2715868943621302,269.6530037710261,0.0997413419279951,96.06811180371722,118.31094,82.78730159377562,123580.4086237152,86474.57758186641,279.53043,175.1007097746069,291350.0355143311,182269.10438560927,302.56936,144.77786801702894,312279.47689479403,148328.33370061725,3833.36401,1722.4423668628574,3961934.225369767,1756993.927950674,1281.10902,560.4038196898082,1321949.141388819,569145.9825409667,2143.38336,894.0246863246126,2198000.167126264,899745.4801183781,0.37782,100000,0,537777,5617.291301077964,0,0.0,0,0.0,23620,246.05164201554277,0,0.0,27976,288.5017130442049,1869582,0,67006,0,0,4698,0,0,48,0.5013787916771121,0,0.0,1,0.0104453914932731,0,0.0,0.06768,0.1791329204383039,0.3203309692671395,0.02168,0.3124649073554183,0.6875350926445817,25.192092597067564,4.4769010345388764,0.3108956075299486,0.2226659060657919,0.2198136527857007,0.2466248336185586,11.031169833048423,5.538429032061905,23.031137366304907,12671.336854770554,59.34192523408616,13.891253380345704,18.364662764414494,12.873201693299183,14.212807396026786,0.5343221144704317,0.7566182749786508,0.7039755351681957,0.5501730103806228,0.1056283731688512,0.7032306536438768,0.9263157894736842,0.8688118811881188,0.7054545454545454,0.1433823529411764,0.4770875763747454,0.6750948166877371,0.6498781478472786,0.5017026106696936,0.0956097560975609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078185132671,0.0041757462119292,0.0062593840035709,0.0087232919002356,0.0110310190221535,0.0131826741996233,0.0154921825631408,0.0176219095333816,0.0195705715833256,0.0218321392016376,0.0240940395179142,0.0258892367705178,0.0280456461396113,0.0300917582360998,0.0320906379949026,0.0338935747953361,0.0354964638149379,0.037402861500472,0.0393316836830176,0.0414092694258956,0.0558339597427545,0.0691437600058596,0.082755509865833,0.0960320632850139,0.1081497425508567,0.1234245198158632,0.1366878223769395,0.1491683880997508,0.1612517099863201,0.1726092089728453,0.1862769409912775,0.1986377025036818,0.2112127150010886,0.2225883795530934,0.2326014388172173,0.2435412483776858,0.2541270355757731,0.2629788576127237,0.2714739950034067,0.2800376043290837,0.2885666635782452,0.2955125354057913,0.3027932299680435,0.3093226938883098,0.3150217407146501,0.3205873657238592,0.3257500906737371,0.3317662007623888,0.3370551290997906,0.3427074281802143,0.342585878118873,0.3428936065101343,0.343462867740032,0.3434541393472152,0.3435063686258265,0.3424333882080361,0.3412458230880776,0.341840819594451,0.3421352615908124,0.3437644464990576,0.3440775974631598,0.3458821214208403,0.3469643753135976,0.3480946328628448,0.3486088772595242,0.3496838325223139,0.351148296764279,0.3535356705690342,0.3547414548641542,0.3570523982903277,0.3603579052550302,0.3630867143993636,0.3683020290219235,0.3697281744529416,0.3731941467051915,0.3730496453900709,0.3733859942275558,0.3714285714285714,0.3696786597088712,0.3777006172839506,0.0,2.3567725137018694,58.54824579968154,199.3006523136108,295.0352025683088,fqhc4_80Compliance_baseline,49 -100000,95730,43151,406.497440718688,6770,69.36174657891988,5287,54.64326752324245,2118,21.72777603677008,77.32373385663094,79.69514318576289,63.321321634088775,65.07575093820549,77.0600708317588,79.43149060393847,63.222994419714965,64.9800202186674,0.2636630248721445,263.65258182441664,0.0983272143738105,95.7307195380821,118.50674,83.00411536983503,123792.45795466416,86706.2724138463,281.80841,177.4383272099691,293781.6567429228,184757.54734185504,312.68682,150.3806895260065,323211.10414708033,154432.81216898412,3802.844,1729.7445286696986,3931600.2193669695,1766200.895901458,1250.97091,548.2023166350436,1290214.7811553327,556362.725084417,2083.71214,880.3515839279479,2139365.841429019,887903.0458281713,0.38356,100000,0,538667,5626.929907030189,0,0.0,0,0.0,23753,247.48772589574844,0,0.0,28820,297.628747519064,1863567,0,66902,0,0,4840,0,0,55,0.5745325394338243,0,0.0,0,0.0,0,0.0,0.0677,0.1765043278756909,0.3128508124076809,0.02118,0.3289640591966173,0.6710359408033827,24.91899113728948,4.42144142780961,0.3334594287875922,0.2152449404198978,0.2205409494987705,0.2307546812937393,10.978708168215665,5.57815398597085,22.785140963970417,12765.712794452782,60.07481185176142,13.558233762456558,20.015961998468903,13.027923431705076,13.47269265913087,0.5515415169283148,0.7697715289982425,0.7022121384004538,0.5771869639794168,0.1057377049180327,0.7081199707388441,0.9103260869565216,0.8565310492505354,0.7407407407407407,0.1259541984732824,0.4969387755102041,0.7025974025974026,0.6466049382716049,0.5279017857142857,0.1002087682672233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0045635705375886,0.0067904993909866,0.0089323821718187,0.0113747354712681,0.0134563864356365,0.0157875413046138,0.0177606650802242,0.0196639841297434,0.0219058835577858,0.023967018429068,0.0262714649576863,0.0287745360273239,0.030966292597974,0.0333402146985962,0.0354495549421579,0.0377102493992874,0.0395605079681274,0.0414032606887373,0.0434084941441253,0.0578961106760636,0.0713605392336435,0.084652587626811,0.0979886810713008,0.1105463518543905,0.1264353232252743,0.1398669651287382,0.1523138640305606,0.1638346274204056,0.1745801968731905,0.1880181751620475,0.2010276936391172,0.2131463056597618,0.2240408480117208,0.233786950351489,0.2438951460181401,0.2542849177585726,0.2644081128153267,0.2734871166757394,0.2813601611500251,0.2891293290793915,0.296914446002805,0.30453239366671,0.3107117181883537,0.3169434086022811,0.3223865877712031,0.3281935015156449,0.3329086183171092,0.3382805101127386,0.3435976697182261,0.3439796152238685,0.3434401930368838,0.3432052060247597,0.3431051472293067,0.3429324831654847,0.3425010743446497,0.3421636352113568,0.3436771035253146,0.3449954729487333,0.3453087037301701,0.3457719380572501,0.3463666104887479,0.3479093856583435,0.3492042082546533,0.3500411045021519,0.3505206011172598,0.3521219778326537,0.3538178589548452,0.3572616898516866,0.3614095574085952,0.3616287094547964,0.3628304319793681,0.3669724770642202,0.3696777683332045,0.3697670013260087,0.3706772334293948,0.3747320061255743,0.3800730519480519,0.375,0.3819230769230769,0.0,2.158882626169996,60.19242378189728,205.4611196820752,290.4399574708097,fqhc4_80Compliance_baseline,50 -100000,95789,42665,401.8415475680924,6636,68.25418367453466,5179,53.58652872459259,2084,21.484721627744317,77.38153749659537,79.72259161792186,63.350937847410606,65.0826194515191,77.12155549392442,79.45990083355377,63.25523628070542,64.98778316199784,0.2599820026709523,262.6907843680897,0.0957015667051877,94.836289521254,117.50882,82.35167358068517,122674.64949002497,85971.9525004804,279.11919,176.3133395052033,290883.2851371243,183557.96542943685,303.98638,146.45642008897818,313743.0080698201,150236.8250935744,3751.14314,1694.2548155552029,3883874.2131142407,1736638.0654687232,1258.16733,550.4808139565151,1300925.0435853803,562162.79538655,2062.82296,852.7569772263877,2127929.887565378,868168.4146242498,0.37926,100000,0,534131,5576.12043136477,0,0.0,0,0.0,23549,245.31000428024092,0,0.0,28081,289.58439904373154,1870774,0,67060,0,0,4725,0,0,61,0.6368163359049578,0,0.0,0,0.0,0,0.0,0.06636,0.1749723145071982,0.3140446051838457,0.02084,0.317816091954023,0.6821839080459771,25.090132892194656,4.428655490077362,0.3151187487932033,0.2185750144815601,0.227263950569608,0.2390422861556285,10.881156175189185,5.37300209522553,22.017852240266915,12706.576739996495,58.32193282929325,13.368892038993204,18.51606082397468,13.069673345932172,13.367306620393208,0.5446997489862908,0.7835689045936396,0.6893382352941176,0.5641461342395921,0.117124394184168,0.700589970501475,0.9014778325123152,0.8356807511737089,0.6845878136200717,0.1510204081632653,0.4894062254773738,0.7176308539944903,0.6376451077943616,0.5267260579064588,0.1087613293051359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0045107142133111,0.0069700904995738,0.0089779917329352,0.0113569351526119,0.0135895843724869,0.0157071798426224,0.0182181896120597,0.0201720860839175,0.0224896146683856,0.024685918062017,0.026646958592515,0.0287068548926063,0.0308683923312946,0.032872614749871,0.0350467531125691,0.0365805703878471,0.0386864037815648,0.0405555613267818,0.0427286356821589,0.0574773815859499,0.0714913198075716,0.0850062373549421,0.0973110992024714,0.1095585833359677,0.1246988206450522,0.1380914533990356,0.150124386043248,0.1620675672791685,0.1735029635266503,0.1867108704778101,0.1991175325518017,0.2106830408085638,0.2212691093068744,0.2311863437383136,0.2422145711786912,0.2527712724434036,0.2618413212362418,0.2712806378803861,0.2794955713729888,0.2872542216053666,0.2948770419916507,0.3020247801853188,0.3084286826813634,0.3141319925186426,0.3207779570620912,0.3269576957695769,0.3320528638844016,0.3378033784221086,0.3425085729359008,0.342967919117944,0.3431398180892491,0.3434314955523915,0.3430802603036876,0.3436258979965195,0.342574014795301,0.3414113292310612,0.3427672440635191,0.3444056242011078,0.3464109374164453,0.3477715355805243,0.3493070794535713,0.3500513702220452,0.3498474925989055,0.3496798112571621,0.3516302643954436,0.3530619812316381,0.3545297534934841,0.3570302924181404,0.3603835638150335,0.362949476558944,0.3655502392344497,0.3657395701643489,0.3656967840735068,0.3655903796988921,0.3684712616265204,0.3733312874021789,0.3774579363470505,0.3774427694025684,0.3773657782927771,0.0,1.825468364180612,59.92031656282302,188.52175787381037,292.0637307053907,fqhc4_80Compliance_baseline,51 -100000,95851,42648,400.8304556029671,6810,69.71236606816831,5321,54.86640723623123,2157,22.086363209564844,77.37299817448195,79.67550687925093,63.35320242165369,65.05747945447513,77.10610568261039,79.40990127406968,63.2552222274747,64.96306674497528,0.2668924918715589,265.60560518124987,0.0979801941789944,94.41270949984926,117.9112,82.68171226141037,123015.09634745595,86260.66734975156,282.38827,177.40107875313967,293995.86858770385,184464.20877522373,310.38567,149.13975380504874,319886.907804822,152555.80947587432,3850.95449,1744.9464452905604,3973376.772281979,1776208.2036604309,1270.48824,555.8055053256666,1311283.022608006,565664.5786957527,2120.73174,883.6350084993976,2173103.733920356,887528.0277765786,0.37982,100000,0,535960,5591.595288520725,0,0.0,0,0.0,23843,248.1038278160896,0,0.0,28728,295.77156211202805,1866921,0,67012,0,0,4633,0,0,46,0.4799115293528497,0,0.0,0,0.0,0,0.0,0.0681,0.1792954557421936,0.3167400881057268,0.02157,0.3200892234769273,0.6799107765230726,25.040889168554564,4.510908989553529,0.329073482428115,0.2102988160120278,0.2238301071227213,0.2367975944371358,11.216828356812496,5.716659512337053,23.001875096577507,12685.906757039576,60.37502341582719,13.363439638069762,19.94962865542949,13.187808066503129,13.874147055824803,0.5566622815260289,0.7971403038427167,0.7144488863506567,0.5684298908480269,0.1126984126984127,0.7173756308579669,0.931297709923664,0.8471337579617835,0.7106227106227107,0.144,0.5,0.7245179063360881,0.665625,0.5261437908496732,0.1049504950495049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0043682284857145,0.0067050099915806,0.0089962025059399,0.0111928918528759,0.0133754071661237,0.0154515711475543,0.017593811550276,0.0196793673175367,0.0218450078785274,0.0239844270273039,0.0261832209876163,0.0283030502343171,0.030560673590596,0.0328855808583239,0.035286828109671,0.0372550642471394,0.0394491420044764,0.0414243582287945,0.0433452638588313,0.0582181067384095,0.0719712407645442,0.0847345758556746,0.0978545099398254,0.1094880517319459,0.1242605425504943,0.1376598878797834,0.150135558981447,0.1621910088374674,0.1734336323014112,0.186924235901851,0.1996800449666533,0.2112230591150673,0.2219889792705326,0.2319025560335816,0.2423188534213499,0.2527584091035867,0.2621897711675629,0.2712370104823705,0.2794050290844135,0.2874937833242734,0.2948974457977933,0.3025901460804508,0.3094667465548232,0.314948866810795,0.3208651713088489,0.3269327120597224,0.3323702364890665,0.3370429870701941,0.3406647116324535,0.3407384441179246,0.3413165401204371,0.3417966269141204,0.3416731821735731,0.3419635151623367,0.3417917541896015,0.3403955026245262,0.341146689460188,0.3423572869993501,0.3429394297162892,0.3439756889080643,0.3450589912107055,0.3456101346532992,0.3465220308655781,0.3492612612612613,0.350611425442599,0.3518629721769466,0.3543796541713997,0.3559447459299457,0.3570491672959974,0.3587748042963772,0.3607386121753937,0.3618662283474522,0.3665082042631498,0.3697654543728041,0.3700759373516848,0.3652777777777777,0.3598352214212152,0.3638405390230207,0.3761609907120743,0.0,2.5670700452471142,60.77371760464226,202.82669945787575,293.89813535623426,fqhc4_80Compliance_baseline,52 -100000,95795,43079,406.43039824625504,6909,70.81789237434104,5412,55.93193799258834,2169,22.224541990709326,77.39816222968327,79.7277840159173,63.35848721039546,65.07977805845782,77.12710457611732,79.45806389084265,63.25741031405671,64.98216983633972,0.271057653565947,269.7201250746417,0.1010768963387462,97.6082221180974,116.94342,81.97285291731288,122076.74722062738,85571.11844805353,282.75076,178.00972227728545,294597.2127981627,185258.72143417527,311.0649,149.65070610358097,321531.26989926404,153857.7605262501,3911.47257,1783.520933184744,4040304.619239,1818964.971375312,1299.4465,578.3164315309936,1342504.5461662926,589747.5754862234,2143.65776,905.2020394418896,2197381.8675296204,909448.0893655128,0.38392,100000,0,531561,5548.943055483062,0,0.0,0,0.0,23833,248.2175478887207,0,0.0,28819,297.79216034239784,1871482,0,67126,0,0,4667,0,0,57,0.5845816587504566,0,0.0,1,0.0104389581919724,0,0.0,0.06909,0.1799593665346947,0.3139383412939644,0.02169,0.3311679336558397,0.6688320663441604,24.81937726409911,4.501995342510722,0.3305617147080562,0.2161862527716186,0.2148928307464893,0.2383592017738359,11.417912633214812,5.831813984066833,23.13339908140213,12792.472738560577,61.33637163804632,13.857142628950507,20.424056020605647,12.88949894892346,14.1656740395667,0.5593126385809313,0.794017094017094,0.6975964225824483,0.5950128976784179,0.1224806201550387,0.7242827151854444,0.9215686274509804,0.8528138528138528,0.7678571428571429,0.1792114695340501,0.5001255335174492,0.7257217847769029,0.6435568952524491,0.5402038505096263,0.1068249258160237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698122379534,0.0043376033727906,0.0065332954591567,0.0089263953204971,0.0114471610837188,0.0136991878193254,0.0156824782187802,0.0179263763620781,0.0201268913658701,0.0222733783507264,0.0247415709616941,0.0266187788609543,0.0287141330263915,0.0306617124859763,0.0327649132936057,0.0348987327391219,0.0368508172977446,0.0387514906413646,0.0407599093762341,0.0424572511611438,0.0572442218396201,0.0711394655650264,0.0846832111890458,0.0971854374238029,0.1091326944769495,0.1246154659337174,0.138291666224716,0.1513951854926249,0.1631312483978467,0.174064105176241,0.1876824316318947,0.2005365236297554,0.2127488481265756,0.2239693171760438,0.2347612923083687,0.2460210293303818,0.2561210944907361,0.2659204679678272,0.2755509657504709,0.2839760775417612,0.2920035627118252,0.2995415955282176,0.3062787861565967,0.3125389594821385,0.3184628277847279,0.3243199960579481,0.3295015323034586,0.3346518786090407,0.3391187213429008,0.3439541728812217,0.3443504271201056,0.3442571054985892,0.3447711957594384,0.3445809248554913,0.3449565798263193,0.3440096714462791,0.3437366463559389,0.3443900997899159,0.3444594617713982,0.3455468372982537,0.3464906523655047,0.3470204712550286,0.3480979458234541,0.3490384615384615,0.3497468384805509,0.3510203017904146,0.3521482490493217,0.355781289189867,0.3580937074176304,0.3601517426697226,0.360387395989633,0.3626907439674745,0.3637557041945364,0.3662228984404717,0.3694669429271049,0.3705741626794258,0.3733537519142419,0.3721735587696068,0.3781372002230898,0.3763936947327951,0.0,2.138111710483974,62.964537938136615,203.58454296214083,298.8522830583233,fqhc4_80Compliance_baseline,53 -100000,95866,42709,401.58137400121,6873,70.42121294306637,5383,55.45240231155989,2165,22.14549475309286,77.3584022892406,79.64060972229916,63.35300198276878,65.04158226413665,77.09594811498172,79.38143716105697,63.25660898449479,64.94958426707008,0.2624541742588775,259.17256124219534,0.0963929982739912,91.99799706657076,118.0784,82.67909692840827,123170.02899881084,86244.21268062529,280.42633,175.90058377250648,291811.84152880067,182778.6637311524,310.4104,148.8249162803779,319316.9945548996,151781.64291715118,3884.39374,1743.902263571708,4006733.805520205,1773938.574230392,1288.69599,558.9679590968511,1325696.93113304,564544.2584499652,2132.0317,881.1768847478102,2183203.0542632425,882827.4573424786,0.37925,100000,0,536720,5598.637681764129,0,0.0,0,0.0,23678,246.2499739219327,0,0.0,28660,294.5256921119062,1866922,0,67100,0,0,4817,0,0,52,0.5319925729664323,0,0.0,0,0.0,0,0.0,0.06873,0.1812261041529334,0.3150007274843591,0.02165,0.3214534317137686,0.6785465682862314,24.964289927158568,4.488368943140874,0.3280698495262865,0.2169793795281441,0.2219951699795653,0.2329556009660041,11.07382551973897,5.555361531840688,22.950623665117632,12744.871346917624,60.98632073270843,13.85905795620287,20.02387521833083,13.380562482930875,13.722825075243843,0.5561954300575888,0.7799657534246576,0.7061155152887882,0.5799163179916318,0.1140350877192982,0.7128279883381924,0.917312661498708,0.8682505399568035,0.6851851851851852,0.1428571428571428,0.5026178010471204,0.7119078104993598,0.6485034535686877,0.5491891891891892,0.1067864271457085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021767963632313,0.0043469009332157,0.0064711789108539,0.0088131669526546,0.0108457003455986,0.0130369737123316,0.0153734871021639,0.0174103727880055,0.0198993292016785,0.0220304848751265,0.0243021077523109,0.0264603965471284,0.028613096705283,0.0307157405311992,0.0330997526793075,0.0351349956119973,0.0371573394020895,0.0393317234446091,0.0413122721749696,0.0430833576095551,0.0579435160183901,0.0717994796836309,0.0856251178183189,0.0983093562952851,0.1106136895106073,0.1251188438866704,0.1383363184501415,0.1512032241942173,0.1632988546236697,0.1746154258455271,0.187349923009831,0.1995543585250565,0.2110492672957342,0.2225999693915477,0.2327711320256838,0.2442649255795938,0.2541932461970825,0.2641691870074092,0.2724581125996846,0.2807154233074005,0.2882372002592352,0.2952346409893414,0.3027872872220709,0.3088429335700405,0.3149607256632864,0.3209698315750509,0.3265017047733654,0.3318250184821679,0.3373057600186938,0.3422730881185499,0.3424522572373304,0.3426254155229727,0.3435581090046724,0.3445873526259378,0.3440913086883316,0.3429361604056234,0.342259068674163,0.3429940553625241,0.3443673434421314,0.346105707338006,0.3480969897154868,0.3492245835726594,0.3508023861535876,0.3512223541802048,0.3532164306905617,0.353163731245923,0.3550430960671271,0.3589517727372825,0.3630488233227959,0.3669808694268782,0.3694558756287151,0.3700180678074184,0.3711771037801558,0.3718701700154559,0.3755859561848273,0.375075693351096,0.3787902592301649,0.3810794171967986,0.3866222592284207,0.3859176606387072,0.0,2.606554951573784,60.26873035732906,206.8043104795896,299.09737287805774,fqhc4_80Compliance_baseline,54 -100000,95730,42475,401.2744176329259,6650,68.29624986942441,5208,53.797137783349,2032,20.83986211219053,77.38965647392791,79.75619763709362,63.34469261111818,65.09379338997904,77.14742701843106,79.51459936126852,63.256723600931934,65.00864379125964,0.2422294554968544,241.59827582509763,0.0879690101862493,85.14959871939709,118.52896,82.99884104158178,123815.66906925727,86700.80310067261,278.11627,174.44455322441354,289879.8182387966,181589.5852323353,303.66343,145.2384013598654,313315.3034576413,148798.64426535758,3763.0139,1672.518545676243,3889628.3087851247,1706444.9412443005,1254.49577,544.2577346860269,1289469.4557609945,547855.9223074099,2001.19206,817.4732252495608,2053852.2511229496,823201.2447600384,0.37881,100000,0,538768,5627.984957693513,0,0.0,0,0.0,23512,244.9493366760681,0,0.0,28131,289.9926877676799,1868713,0,67019,0,0,4668,0,0,43,0.4387339392040112,0,0.0,1,0.010446046171524,0,0.0,0.0665,0.1755497478947229,0.3055639097744361,0.02032,0.3256314580941447,0.6743685419058554,24.78963286125573,4.504487478803715,0.3283410138248848,0.2167818740399385,0.2236943164362519,0.2311827956989247,11.134620505737956,5.7349263178551,21.306236278719357,12657.91591393446,58.37436934285363,13.297474638514288,19.207259811403084,12.997127021723422,12.87250787121284,0.5539554531490015,0.7714791851195748,0.6964912280701754,0.5914163090128756,0.1112956810631229,0.7480916030534351,0.9441624365482234,0.8578088578088578,0.7436823104693141,0.1619047619047619,0.4887121600820934,0.6789115646258503,0.6424668227946917,0.543918918918919,0.1006036217303823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093752532209,0.0045213547844246,0.0067790418007083,0.0091025458682975,0.0111487483088691,0.013217384220602,0.0154668080464106,0.017598840354835,0.0196050372066399,0.0218337035406835,0.0238832284384673,0.0260042912727011,0.027941403238242,0.0298721090676936,0.0317163986673955,0.0337739378468597,0.0358063681076883,0.0379503885298114,0.0397958759457886,0.0416141367202558,0.0564099351645942,0.0709007556885976,0.0837687545902843,0.0961243082879205,0.1088653529684796,0.1252472263059366,0.1377920176536739,0.1494216177675616,0.1611384023921401,0.1716265053780737,0.1848486153581119,0.1985721239656011,0.210483397481897,0.2221128824159723,0.2319243971131843,0.2425708591674047,0.2526397948374868,0.2615388072446182,0.2707837402797615,0.2794573510403441,0.2882327780539403,0.2958176060205906,0.302921088081677,0.3092967319635741,0.3157371122138238,0.3208183563937171,0.3267502468657425,0.3316299940256009,0.3376522616184343,0.3424281967126682,0.3422308881866469,0.3416237024816113,0.3416912902771915,0.3412894375857339,0.3412464227991874,0.3407319086489956,0.3402413597017754,0.3416074876460385,0.3414961593365508,0.3424087863654943,0.3429668138707213,0.3441200771137427,0.346302123491779,0.3469900968064983,0.3477262397435591,0.3491210303549635,0.3482370975983648,0.3504681706780619,0.3531439020959347,0.3557795752480376,0.3578691828508611,0.3606214840610768,0.3666624477914188,0.3668231374924288,0.3688967573611629,0.3724519853894191,0.3764831153027076,0.3783403656821378,0.3754778809393774,0.3794285714285714,0.0,2.303872424517013,57.5410130147013,193.2050972197453,294.54086236560846,fqhc4_80Compliance_baseline,55 -100000,95760,42754,403.2163742690058,6742,69.35045948203843,5291,54.66791979949874,2059,21.125730994152047,77.34687979821054,79.70616591389205,63.33382307926016,65.08134955378928,77.1026188960982,79.46266994978565,63.2448313636782,64.99506799609836,0.2442609021123303,243.4959641064012,0.0889917155819617,86.28155769092416,119.68462,83.78485656573014,124983.93901420216,87494.62882803899,280.63515,175.96927904632832,292458.3646616541,183158.165253058,305.94934,146.37711262442127,315526.6917293233,149891.32189640182,3789.01061,1693.697542128855,3919931.328320802,1731843.3292907835,1300.23015,563.0793903957216,1341065.9461152882,571276.0969044709,2024.39302,829.6262315037277,2079107.3308270676,837178.9936079392,0.38101,100000,0,544021,5681.088137009189,0,0.0,0,0.0,23672,246.5747702589808,0,0.0,28279,291.40559732665,1862866,0,66865,0,0,4800,0,0,67,0.6892230576441103,0,0.0,0,0.0,0,0.0,0.06742,0.1769507362011495,0.3053989913972115,0.02059,0.3203047834062367,0.6796952165937632,25.29875381382642,4.426824632975699,0.3233793233793234,0.2235872235872235,0.2277452277452277,0.2252882252882252,11.272755792237875,5.848468716685552,21.77146412072149,12755.52283808561,59.51615734074215,13.989009121586628,19.163363905915386,13.298336016440333,13.065448296799792,0.5556605556605556,0.7962806424344886,0.6826417299824664,0.5643153526970954,0.1258389261744966,0.7318181818181818,0.9376558603491272,0.8387850467289719,0.78,0.1493775933609958,0.4971040040292118,0.7237851662404092,0.6305533904910366,0.5078534031413613,0.1198738170347003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019760042154756,0.0042286942765586,0.0062944162436548,0.0084352165208288,0.0104683812159192,0.0125455693366733,0.0148129269038637,0.0170477746018783,0.0194537016213121,0.0216959495433509,0.0235910474999231,0.0258129434353598,0.0279508854198803,0.030069224113066,0.0321685105680317,0.0340610721743265,0.0360981671326498,0.0381231975767132,0.0402174590964844,0.0423912364370951,0.057456868209287,0.0714345488399338,0.0853272380313293,0.097789642958494,0.1103347245057122,0.1257581841621404,0.1392716326790181,0.1513788777614764,0.163744,0.1745445197776421,0.187918163629714,0.2013313305741363,0.2134515312496605,0.224422045799526,0.2348818560302308,0.2454253789135966,0.2558136942320126,0.2652301951263375,0.2740855872209112,0.2820586214792764,0.2906699671494008,0.297233756360021,0.3044522533394858,0.3114948589506986,0.3176841849739046,0.3229985605137858,0.3273127532896382,0.3332316142813549,0.3388549539289781,0.3438126120426025,0.3441943685846125,0.3432710563244641,0.3437891389088248,0.3436827898786068,0.344605427231162,0.3441140005816356,0.3430814027092037,0.342759085012398,0.343984962406015,0.3446446750370595,0.3465739821251241,0.3469965363681346,0.3476455165180912,0.3480435026348245,0.3495005067323005,0.3514462376860197,0.3524627720504009,0.3549889135254989,0.3584606158947405,0.3594904356854758,0.3604202991649077,0.3611452379680572,0.362870000633834,0.3631920580374189,0.3640281030444965,0.3632488752071987,0.3705350298942204,0.3735161686451084,0.3719495091164095,0.3811410459587955,0.0,2.280381877636246,58.036108659332335,198.251273466428,301.6575593664317,fqhc4_80Compliance_baseline,56 -100000,95750,42801,402.78851174934726,6870,70.38120104438643,5402,55.80156657963447,2091,21.389033942558747,77.36211040614715,79.72421348829458,63.32787542470121,65.07576156751499,77.09405237033593,79.45861739402076,63.22755115549484,64.97968418698412,0.2680580358112223,265.5960942738176,0.100324269206375,96.07738053087188,118.74852,83.10931120581172,124019.34203655351,86798.23624627855,281.68283,176.28218521384957,293593.4725848564,183514.4701972319,305.80993,146.41438712871206,315773.9321148825,150151.1112460718,3889.97173,1754.9391823184642,4018542.088772846,1788743.0833613193,1286.63769,566.9740151251756,1327952.9712793734,576346.0001307311,2059.1546,875.9136242127197,2108016.0835509137,877732.1188861253,0.38217,100000,0,539766,5637.242819843342,0,0.0,0,0.0,23712,247.01827676240208,0,0.0,28317,292.1671018276762,1864675,0,66987,0,0,4623,0,0,51,0.5326370757180157,0,0.0,0,0.0,0,0.0,0.0687,0.1797629327262736,0.3043668122270742,0.02091,0.3287082003607603,0.6712917996392397,25.210258092599812,4.543408066805589,0.3293224731580896,0.2165864494631618,0.2260273972602739,0.2280636801184746,11.07021505631342,5.463129752718571,22.3979692982822,12782.53306816254,60.777028169450006,13.749129435644674,20.028190048766135,13.504124008771903,13.495584676267276,0.541095890410959,0.7521367521367521,0.6919617762788083,0.5561015561015561,0.1079545454545454,0.6869125090383225,0.8850267379679144,0.8675496688741722,0.6992753623188406,0.1178571428571428,0.4909181388405076,0.6896984924623115,0.6319758672699849,0.5142857142857142,0.1050420168067226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024619312482903,0.0045226844058652,0.0068317937265252,0.009032992267596,0.0115660444534865,0.0140954088075935,0.0163155425937633,0.0185412072204525,0.0207155346059856,0.0229583738671855,0.0252074124970516,0.0271591749527487,0.0293312757201646,0.0314303380049464,0.0334915883992156,0.035545170695395,0.0375482815396245,0.0395928658138014,0.0414665585563109,0.04321875,0.0574572254757654,0.0710504289600334,0.0848593543515197,0.0979583679565798,0.1098945147679325,0.1252300467497303,0.1383286831245159,0.1515309598841666,0.1626669515973929,0.1739801827306653,0.1871896776417116,0.2000129864508029,0.2123951568160308,0.2234146128012427,0.2337369290038525,0.244408981093601,0.2544179084470856,0.2638623111731466,0.2728521322602981,0.2816155829275279,0.289466674387631,0.2971381752209281,0.3039611581502753,0.3108802073334613,0.3162603009456207,0.3218511344428953,0.3272392361285148,0.3335413535749764,0.339998704075682,0.3446736575186878,0.3445090291170481,0.3447468136410609,0.3452344036309305,0.3450425174986984,0.3451166939200238,0.3438232904640005,0.3427896730430924,0.3434799750303906,0.3444694951151192,0.3454655747649378,0.3465550499091709,0.3479135839005623,0.3495249257042401,0.3510854740984193,0.3517645927493028,0.3543941012480133,0.3547183780397517,0.3581053491220906,0.3595781211675251,0.3625603673501702,0.3648857039187227,0.3690048594971477,0.3738388149635953,0.3734712365997282,0.3756633460571641,0.3750886315291893,0.3745050258909534,0.3764235764235764,0.3674078091106291,0.373070987654321,0.0,2.4032300909492923,60.847187370264685,199.831635148113,304.3253555983826,fqhc4_80Compliance_baseline,57 -100000,95772,42690,401.818903228501,6736,69.26867978114689,5222,54.07634799315039,2128,21.93751827256401,77.32840490063373,79.6908606329719,63.31625382636724,65.06553336721566,77.06378779871035,79.42185253470319,63.219531401143286,64.9686752834033,0.2646171019233776,269.0080982687135,0.0967224252239518,96.85808381236428,119.65052,83.83255623461544,124931.98429603642,87532.8410691137,281.27514,176.83313342699427,293222.10040512885,184171.7091981185,305.17739,146.2697849221812,315966.618635927,150566.0596099515,3750.90361,1692.9650700543862,3886864.699494633,1738243.3346488082,1235.60578,547.6225545667583,1276167.0216764817,558094.9477855522,2092.23396,876.0576252403915,2158316.146681702,893488.313487905,0.37892,100000,0,543866,5678.7265589107465,0,0.0,0,0.0,23739,247.37919224825623,0,0.0,28183,291.5987971432151,1857622,0,66717,0,0,4807,0,0,50,0.5220732573194671,0,0.0,0,0.0,0,0.0,0.06736,0.1777683943840388,0.3159144893111639,0.02128,0.3209112642385037,0.6790887357614963,25.03638898533685,4.4856348239968185,0.3184603600153198,0.2221371122175411,0.2330524703178858,0.2263500574492531,10.95304045850621,5.465354680690084,22.876052228476173,12670.97877096817,59.21258037801034,13.749508751989437,18.86766038471364,13.621625529920466,12.973785711386784,0.5507468402910762,0.771551724137931,0.6885147324113049,0.5883319638455218,0.1015228426395939,0.7196745562130178,0.9201101928374656,0.8452914798206278,0.7560137457044673,0.1666666666666666,0.4917312661498708,0.7038895859473023,0.6310599835661462,0.5356371490280778,0.0838709677419354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020672253579643,0.0043611432280573,0.0066908987531982,0.0087095266163946,0.011067933511017,0.013394312255541,0.015622450644477,0.0178053661126311,0.0200474350324071,0.0222941019919339,0.0243964942852749,0.0266546193810707,0.0290415466886055,0.0312088002636783,0.0332483721506186,0.0350911646752387,0.0370458544664113,0.0389924192929512,0.0411912629631938,0.0432622710088628,0.0581039755351682,0.0719836015854589,0.0850633283006207,0.0980629158214477,0.1101769025718831,0.1252694990488269,0.1382718143934172,0.1507438227594866,0.1614639512158655,0.1720562691656123,0.1859821438187242,0.1983772380591767,0.2098581436839127,0.2206985543380793,0.2316624840399771,0.2432076203134518,0.2537806497695338,0.2631099105183184,0.2719127916879577,0.2806189111747851,0.2887090799648099,0.2958456660856137,0.3030353272776797,0.3089063043817433,0.314423649872922,0.3194542112340698,0.3255253748196474,0.3309569963781054,0.3358820245868654,0.3409592535321095,0.3412464910386525,0.3407887479316051,0.3407161522706405,0.3411919648025935,0.3409950841650528,0.3398715900712706,0.3390013495276653,0.339643780996161,0.33925664444711,0.3406020426446873,0.3425845945844443,0.3444002296529468,0.3452767365401126,0.3453274483005847,0.3465904982283607,0.3477783872737246,0.3482012743949481,0.3503950640601882,0.3536889419531552,0.3559450007947862,0.3578429137986051,0.3609771607228021,0.3622052182639237,0.3615390453062154,0.3613903240958196,0.3647642679900744,0.3649579188982402,0.3627792580446813,0.3626495964375174,0.3673469387755102,0.0,1.6405943965897245,60.23820433642848,197.6693858132388,291.37083084382743,fqhc4_80Compliance_baseline,58 -100000,95734,42469,399.7534836108384,6699,68.77389433221218,5284,54.64098439425909,2123,21.73731380700692,77.31464774318667,79.67875347347979,63.30648041847581,65.05515872277655,77.04958591652647,79.41775063033475,63.20702364527337,64.96029551572113,0.2650618266602009,261.002843145036,0.0994567732024407,94.8632070554254,118.32238,82.79903807609159,123594.94014665636,86488.64361260534,279.31786,175.86860797459946,291218.28190611483,183159.2307587685,306.4591,147.00902173447588,317479.9653205758,151427.35532846107,3805.23161,1724.2291401404902,3935507.646186308,1761773.6855667694,1268.48582,552.0010950719657,1310834.5937702383,562422.6137756341,2083.23678,882.0849953032833,2135388.26331293,885069.2234589508,0.37807,100000,0,537829,5617.951824848016,0,0.0,0,0.0,23603,245.9836630664132,0,0.0,28440,294.4304009025007,1862546,0,66874,0,0,4702,0,0,39,0.4073787786993127,0,0.0,0,0.0,0,0.0,0.06699,0.1771894093686354,0.3169129720853859,0.02123,0.3286931818181818,0.6713068181818181,24.892938604876885,4.523781656326226,0.3230507191521574,0.2200984102952309,0.2286146858440575,0.2282361847085541,11.18989414738402,5.673689996895318,22.805512975294533,12670.466669736728,59.825822716302056,13.74703217917886,19.367056075518384,13.518062427620578,13.193672033984235,0.5603709311127933,0.764402407566638,0.715875805506737,0.5827814569536424,0.12106135986733,0.7197640117994101,0.91644908616188,0.8789954337899544,0.6798679867986799,0.146551724137931,0.505346232179226,0.6897435897435897,0.6595744680851063,0.5502762430939226,0.1149897330595482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0048057912826596,0.0071053005542134,0.0093994512752769,0.0115061803754005,0.0136415501854191,0.0157823323573519,0.0178983480018786,0.0199537955144849,0.0220711682568281,0.0242789619923513,0.0264190077213734,0.0284823798062087,0.0305712401599142,0.0327105697770437,0.0347971715668031,0.0369672368802551,0.0390254531870959,0.0411229529503509,0.0430053756719589,0.0574575828765335,0.0713941804479799,0.084747896514824,0.0978818728703041,0.1100659108884787,0.1261663457673021,0.1394697178763241,0.1507917070417735,0.1616296597214055,0.1722261575117522,0.1853773228788058,0.1977307454728697,0.20956511316211,0.2207108957988535,0.2313766142105669,0.2424568845850592,0.2526570156400331,0.2625558413428996,0.2719670508459149,0.2808019301470588,0.2885480952159993,0.2958086640483029,0.302348475862887,0.3080683715510924,0.3142116725268575,0.3198804923517574,0.325992734560942,0.3309944350350834,0.3360532587296653,0.3402275487038699,0.3402764678936164,0.3411622176025992,0.3406988043432337,0.3406272582743171,0.341128168511246,0.3405145976447497,0.3390685209558998,0.3402774349607543,0.3418957102491651,0.342262916003505,0.3432208162805542,0.3451782675794388,0.3466345650580969,0.3477561237260861,0.3477821610699509,0.3483916375580001,0.3481407322654462,0.3507119455645161,0.3534821679303566,0.3545411165897884,0.3564514656195781,0.3611539894607973,0.3656356952718976,0.363218038193113,0.3691841182602103,0.3691739182262487,0.3674067221708295,0.3698347107438016,0.3714764164108289,0.3689358372456964,0.0,2.136033212949409,59.7261956397506,201.4055894124295,294.78678235731047,fqhc4_80Compliance_baseline,59 -100000,95818,42461,400.509298879125,6634,68.09785217808762,5191,53.63292909474212,2049,21.039888121229836,77.3504688262772,79.6837189000995,63.33176974345843,65.06078997469578,77.09600398655797,79.4296454668313,63.23780412192483,64.96931414288933,0.254464839719219,254.07343326820356,0.0939656215335986,91.47583180644858,117.91164,82.64871940829472,123057.69270909432,86255.7133401811,280.96345,176.81290877427298,292675.88553298963,183980.29971177725,303.16166,145.3797756958271,313363.71036757185,149394.5428013948,3714.09363,1680.775987831003,3839591.6320524327,1717565.8577664972,1246.85442,547.1026259367578,1288887.9125007826,558620.2355221834,2011.52146,847.2875081004858,2067220.146527792,856353.1087309659,0.37801,100000,0,535962,5593.531486777015,0,0.0,0,0.0,23703,246.81166377924816,0,0.0,27988,289.0688597132063,1866694,0,67038,0,0,4521,0,0,64,0.6679329562295184,0,0.0,0,0.0,0,0.0,0.06634,0.1754980026983413,0.3088634308109738,0.02049,0.3159100673063153,0.6840899326936847,25.01432765741813,4.498046271226796,0.329608938547486,0.2192255827393565,0.2267385860142554,0.2244268926989019,11.28448930434202,5.783766997277854,21.95252080472054,12666.12206003897,58.80040698382809,13.634532740908773,19.20584088948706,13.088237752238324,12.871795601193938,0.5559622423425159,0.7864674868189807,0.6820572764465225,0.5751911639762107,0.1261802575107296,0.7107806691449814,0.918918918918919,0.8470873786407767,0.6819787985865724,0.1646090534979424,0.5018200728029121,0.7127222982216143,0.6297151655119323,0.5413870246085011,0.1160520607375271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0044918528132382,0.0066172739267228,0.0087073143472562,0.010873324246801,0.0130879387260393,0.0152261485900769,0.0176762519402009,0.0197231197088053,0.0219171631554163,0.0238305202928569,0.0260515074344861,0.0279925956396544,0.0299591138940668,0.0320022276768218,0.033890599491641,0.0360130015320276,0.0379939840265532,0.0399692384436315,0.0419429725481214,0.056040058418527,0.0696631328022081,0.0832678382428453,0.0958604748896827,0.1081903999325719,0.1234702289108241,0.1367058274662821,0.1490484346244268,0.1611077895456098,0.1727267856186036,0.1862517217630854,0.198650796224824,0.2103210386224129,0.2215919027632039,0.2323905701682012,0.2431087968092178,0.2528293042255407,0.2624572380266474,0.2711922146645015,0.2795303550973654,0.2879149113466969,0.2951352742329781,0.3022686122057727,0.308612382847144,0.3148067104303428,0.3210994460824831,0.326419350795839,0.331973898858075,0.3375427860180479,0.3427083608680711,0.3429284750337382,0.3420544506661517,0.3425175733280637,0.3418740319335273,0.3421765266039757,0.3419785276073619,0.3406412107175151,0.3412254434170259,0.3424723177765227,0.3435246972109415,0.3438795221394947,0.3448255399952528,0.3460038577658504,0.3463960027783379,0.3486561407737736,0.3509779855326039,0.3512096429487362,0.3542413381123058,0.3583829191459573,0.362564041463124,0.3650786435130466,0.3678945697046681,0.3707470182046453,0.37062884017295,0.370318087709392,0.3716240122655974,0.3773642464917632,0.3740427247077791,0.3716381418092909,0.375996961640714,0.0,2.0577743887749893,59.45386091712479,193.87049110838987,292.3356752292267,fqhc4_80Compliance_baseline,60 -100000,95729,42431,399.4818706974898,6704,68.94462493079422,5259,54.47669985061998,2123,21.874249182588347,77.30949638025908,79.66877920938853,63.31695901961641,65.05914070454118,77.05083101061275,79.40860078954476,63.222687281584285,64.96648144376985,0.258665369646323,260.17841984376844,0.0942717380321269,92.65926077132748,117.85312,82.47435633285835,123111.19932308914,86153.99339056957,280.34341,175.78589535400533,292381.01306814025,183158.6958123844,299.79526,143.30323220426394,310048.81488368206,147331.53557394232,3773.43809,1681.2437816440183,3910839.9857932287,1725312.0910325877,1245.18862,540.6085990729538,1286696.0273271422,550680.7958643186,2093.14858,859.4757436476265,2158403.890148231,872390.4404184672,0.37816,100000,0,535696,5595.96360559496,0,0.0,0,0.0,23650,246.57104952522224,0,0.0,27646,285.6605626299241,1868641,0,67084,0,0,4601,0,0,54,0.5640923857974073,0,0.0,0,0.0,0,0.0,0.06704,0.177279458430294,0.3166766109785203,0.02123,0.3221371882086167,0.6778628117913832,25.28288083539057,4.531955669225957,0.3320022818026241,0.2112568929454268,0.2314128161247385,0.2253280091272105,11.29530114992174,5.599315268944091,22.286793397691845,12709.81030448748,59.06470978297324,13.031372796087645,19.638833358427377,13.420232350277246,12.97427127818097,0.5499144324015972,0.783978397839784,0.6907216494845361,0.5571076417419885,0.1156118143459915,0.706495589414595,0.8997134670487106,0.8424821002386634,0.7154471544715447,0.1630901287553648,0.501246261216351,0.7309711286089239,0.6428033157498116,0.5169927909371782,0.1039915966386554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381786694483,0.0043893439299326,0.0065132700267835,0.0086739254083042,0.0108778528948304,0.0133032051869268,0.015726443459206,0.0177202527381669,0.0200829892481909,0.0220241323904166,0.0241084881968859,0.0264184652031952,0.0283907455012853,0.0304621848739495,0.0325890785334914,0.0345807331487374,0.0365544435589869,0.0384858698470313,0.0404909633232521,0.0428528275158067,0.0572639844622886,0.0712947554606633,0.08416713863193,0.0964753632941473,0.108704592186429,0.1246840596876024,0.1380053050397878,0.1501596763891846,0.1619554302074653,0.1730150559773517,0.1863431661962119,0.198830725924322,0.2116677911506736,0.2227949787131584,0.2330408165512381,0.2441027801179444,0.2541219839142091,0.2632373484746068,0.2726725293703274,0.2806369879504259,0.2882203772536214,0.2952760973098211,0.3020997406411729,0.3089371401151631,0.3152591404122909,0.3211999358586918,0.3273673934266189,0.3321192980668823,0.3369686438260238,0.3413814989157455,0.3415595104772442,0.3419199228171732,0.3426461868594178,0.3425686135505432,0.3425836323303905,0.3416023210475415,0.3411336701299526,0.3423236514522821,0.3443699525042437,0.3456336107921929,0.3466694280227435,0.3471559268098647,0.3485627581556099,0.3497244404453942,0.3513454598299707,0.3516140865737344,0.3543612588015519,0.3577413133516709,0.359750070601525,0.3623765530423702,0.3686520089591809,0.3703070761014686,0.3702011548956152,0.3708029197080292,0.3719935355071775,0.3761325703385789,0.374806800618238,0.3746379809681423,0.3732217573221757,0.3760217983651226,0.0,1.7001300146996448,55.42446006241249,198.58076679041977,309.1717831127193,fqhc4_80Compliance_baseline,61 -100000,95747,42811,403.4486720210555,6714,68.98388461257272,5257,54.45601428765392,2153,22.235683624552205,77.40440741590693,79.76110865956193,63.3594678928421,65.09908463217829,77.14298057348154,79.49583714835885,63.26423763543401,65.003748263577,0.2614268424253936,265.2715112030819,0.0952302574080903,95.33636860129492,119.4556,83.6404242204028,124761.71577177352,87355.66045975624,285.20789,179.23141652813047,297428.0447429162,186744.18679241175,307.98187,147.4287216618061,318539.1604958902,151533.5727052049,3787.76291,1700.7512750821627,3927456.3067250154,1747741.3966830943,1248.62661,543.8771848855398,1292154.7411407146,556100.9482130408,2119.50376,873.941477849986,2190768.4836078417,894319.402485426,0.3814,100000,0,542980,5670.98708053516,0,0.0,0,0.0,24057,250.77548121612165,0,0.0,28458,294.07709902137924,1860904,0,66706,0,0,4818,0,0,57,0.5953189133863201,0,0.0,0,0.0,0,0.0,0.06714,0.1760356581017304,0.3206732201370271,0.02153,0.3268741159830268,0.6731258840169732,24.99524619804561,4.531236856962009,0.3249001331557923,0.2179950542134297,0.2242723987064866,0.2328324139242914,11.256402443634864,5.657409510348002,22.67859384484719,12707.45972350373,59.19835576047432,13.502179916883694,19.246401044980868,13.218791656181478,13.230983142428274,0.5487920867414875,0.7678883071553229,0.7008196721311475,0.5843935538592027,0.0972222222222222,0.7196969696969697,0.9270833333333334,0.8425925925925926,0.724907063197026,0.1489361702127659,0.491490982981966,0.6876640419947506,0.6528213166144201,0.5428571428571428,0.0849342770475227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022072149604625,0.0045300228021281,0.0068577921155679,0.0091301477682425,0.0113062133336044,0.0133448697068403,0.0158878980891719,0.0178565962266461,0.0200261566127186,0.0221335379892555,0.0242182615736233,0.0262334116777683,0.0283229328371251,0.0306419882787957,0.0327493344889494,0.0345875542691751,0.0366999078360102,0.0387954731699221,0.0410279859083209,0.0429199300116647,0.0576389033888042,0.0714808923862542,0.0850106459970002,0.0976430268497298,0.1098474867459974,0.1249061591329632,0.1373333191891118,0.1498009325299665,0.1614732996485531,0.1728855721393034,0.1865321243188524,0.1999004555241774,0.2119465320905343,0.2234735829251224,0.2334723246014544,0.2437071571743391,0.2539358437935843,0.2632141130437715,0.2722406206051808,0.2802019184542478,0.2880866259115019,0.2965700009339684,0.3040475122204643,0.3100325016728802,0.3160955045971581,0.3214961772008752,0.3273201993828625,0.3323217573487397,0.3380458240181952,0.3430700172443298,0.3430248173614095,0.3424495791973859,0.3422040403188393,0.3422840084795869,0.3421040928564016,0.3412885273972603,0.3407634747116799,0.3422661487272787,0.34327034586261,0.3434892676317478,0.3448954351248032,0.3450577307745628,0.344850010488777,0.3455119026311079,0.3470143867584083,0.3481133307220264,0.349864768683274,0.3526249607041811,0.3542917324907846,0.3562638932994601,0.3579517031242894,0.35951773953686,0.3592550648043286,0.3620137299771167,0.3645921336712663,0.3695780640586219,0.3709900230237912,0.3647391831783259,0.3718732629238466,0.3773285770907649,0.0,1.7728419048884547,58.37828685709929,195.51071581285143,301.8787961862731,fqhc4_80Compliance_baseline,62 -100000,95757,42977,406.0590870641311,6639,68.13078939398686,5190,53.708867236859966,2087,21.512787576887327,77.33232137485312,79.69789780012745,63.31916690730778,65.07107512885594,77.08286425638128,79.44619730552597,63.2268341450452,64.97998523897265,0.2494571184718381,251.70049460147936,0.0923327622625862,91.0898898832926,117.94442,82.62388303529723,123170.54627860105,86284.95361727834,280.81478,176.43423495479527,292753.5114926324,183761.0863181461,307.86085,147.84527075596168,318094.80246874905,151879.19517490276,3743.79901,1684.0202234718067,3878987.58315319,1728858.1977111942,1251.46649,548.3763600157347,1294917.4681746503,560963.7825565919,2058.63582,856.2359881904088,2123946.844617104,872091.8248415357,0.38139,100000,0,536111,5598.661194481865,0,0.0,0,0.0,23711,247.0942072120054,0,0.0,28411,293.3780298046096,1866411,0,67012,0,0,4669,0,0,50,0.511711937508485,0,0.0,0,0.0,0,0.0,0.06639,0.174073782742075,0.3143545714716071,0.02087,0.3237266371807676,0.6762733628192324,24.87716008197789,4.467744645978437,0.3246628131021195,0.2198458574181117,0.2221579961464354,0.2333333333333333,11.047474817961564,5.595745548767181,22.252332755528226,12727.212180499262,58.510564449873776,13.516252479730056,18.928615622310037,12.795239764654871,13.270456583178827,0.5491329479768786,0.7624890446976337,0.6967359050445104,0.585429314830876,0.1081750619322873,0.723404255319149,0.9107142857142856,0.8647342995169082,0.7727272727272727,0.1341463414634146,0.4899328859060403,0.684913217623498,0.6420141620771046,0.5298087739032621,0.1015544041450777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0045441174978953,0.0066810169766875,0.0091674119847142,0.0112415561162203,0.0131213007202453,0.015154605531533,0.0176112058316062,0.0196206737896835,0.021529484029484,0.0235376130235991,0.0259842923874544,0.0280619852132155,0.030289922241104,0.0322307739925303,0.0342514598728747,0.0361262399304189,0.0379914928934536,0.0400723297237752,0.0419925638168241,0.0573829531812725,0.0717432018163365,0.0846181276613596,0.0974186425529677,0.1096255838719541,0.1252525252525252,0.1383188676442501,0.1507349419390546,0.1626441691584793,0.1735965175622936,0.1868995821307026,0.1993140161433425,0.2122609698261796,0.2229245726659303,0.2334015536629915,0.2441508974344778,0.2541760117832156,0.263809341630003,0.272607605278985,0.2818466048993895,0.2897562894901289,0.2969090015677282,0.3031952662721893,0.3096827546532114,0.3162830245976313,0.3226295547556826,0.3279509325322318,0.3333206121436476,0.3380257977621218,0.3430833168414803,0.3438299361856808,0.343389993806345,0.3440158900095791,0.343832627761483,0.3434712807706029,0.3426680556406642,0.3419199289385191,0.3430665330200305,0.3437708194536975,0.343391164371311,0.3454377914848804,0.3460165053166164,0.3475069921981789,0.3485589872508529,0.3487321902921999,0.3493909770505515,0.3508556759840274,0.3534088399533079,0.356864123747583,0.362161731298075,0.3652435412584863,0.3673055362767604,0.3691781255940688,0.3711489947251739,0.3708075697957654,0.3695396899953029,0.3671839686605394,0.3685782556750299,0.3740210640021604,0.3633942161339422,0.0,1.850389449593926,58.33458666029763,192.59658515434688,295.9752183741685,fqhc4_80Compliance_baseline,63 -100000,95728,42953,405.576215945178,6680,68.60061841885341,5215,53.92361691459134,2080,21.393949523650345,77.41699606751023,79.77269859439696,63.36600846061516,65.10165266383098,77.17522553577716,79.52996930530652,63.27725032204057,65.01502882603846,0.2417705317330671,242.729289090434,0.0887581385745903,86.6238377925157,119.65162,83.88182258437887,124991.24603041953,87625.16983994115,285.90462,180.0783529103328,298106.1758315227,187557.25901547383,308.32036,147.64424243084528,318366.0266588668,151365.6561468555,3735.3896,1671.1100530721226,3869998.6106468327,1713597.6131039197,1276.26714,550.4394798407732,1321732.795002507,563514.029166778,2046.26278,837.128695089847,2107824.189369881,848445.7501877676,0.38285,100000,0,543871,5681.420274109979,0,0.0,0,0.0,24186,252.089252883169,0,0.0,28583,294.9084907237172,1857449,0,66548,0,0,4710,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.0668,0.1744808671803578,0.311377245508982,0.0208,0.3193479801559178,0.6806520198440822,24.959394472511,4.532683100226181,0.335378715244487,0.2164908916586768,0.2216682646212847,0.2264621284755513,11.243704654948338,5.65474974820488,21.741239055259904,12758.959825932972,58.66685715551591,13.407246123766493,19.731110005439565,12.754303610821092,12.774197415488755,0.5516778523489932,0.7776793622674933,0.6958261863922242,0.5527681660899654,0.1210838272650296,0.7270642201834863,0.9333333333333332,0.8502304147465438,0.7,0.1324200913242009,0.4929613514205272,0.6906077348066298,0.6448669201520912,0.5121412803532008,0.1185031185031185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0045183316617532,0.0065116845180136,0.0086922084911503,0.0111131446233935,0.0133044239499989,0.0154421657764912,0.0173810981833027,0.0197539191039712,0.021791173040329,0.0237224220439197,0.0257704978601557,0.0278791492336317,0.0296592278302421,0.0321039872079228,0.0340491051130492,0.0359254159376326,0.0379601107688478,0.0400856379717103,0.0422227083789105,0.0566049556745919,0.070616917088687,0.0842950062945866,0.0971762107587947,0.109516225993229,0.1250647743736714,0.1382068116971966,0.150522069545411,0.1629027433552687,0.1739834434245517,0.1878694561390285,0.2000302928671117,0.2122361585114014,0.2230644879412792,0.2335201054713249,0.2448582207618352,0.2556091797724005,0.265245341545101,0.2735229759299781,0.2823091886943586,0.2902409137149727,0.2978126752664049,0.3047137251193797,0.3103650508677438,0.3167772695839955,0.3228233034571062,0.3285434030164065,0.3337653262181564,0.3382930865091266,0.34417244196158,0.3444520630823216,0.3441132023629619,0.3449522951788579,0.3449426998280272,0.3452117467060798,0.3442239123448666,0.3427212990459342,0.3432789407355275,0.3442310311946601,0.345462625544396,0.3477879573824939,0.3500363965452793,0.350529238606234,0.3501590620898311,0.3500419111483654,0.3510217877385471,0.3518202987448174,0.3575003127736769,0.361561582552775,0.3645302689254827,0.3664615941373382,0.3693365054189796,0.3730362395944169,0.3736489572233216,0.3777321128339249,0.3825944170771757,0.3765347885402456,0.3789599521817095,0.3766163793103448,0.3839252336448598,0.0,2.202163371410262,57.50631956404425,197.9724630626884,292.6446596971197,fqhc4_80Compliance_baseline,64 -100000,95701,42803,403.41271251084106,6766,69.51860482126624,5257,54.41949404917399,2086,21.49402827556661,77.3508434030137,79.74193303576145,63.31502979323547,65.08302180745295,77.08666399915406,79.47647114499776,63.21789849524792,64.98788076520009,0.264179403859643,265.4618907636888,0.0971312979875449,95.14104225286246,119.23802,83.48947514449372,124594.33025778204,87239.91927408671,285.2406,180.1498268151268,297561.8750065308,187750.3023114981,307.88582,147.78230598738458,318387.7597935236,151838.83941090276,3776.96003,1709.256066660692,3912726.6068275142,1752138.9814742706,1248.16777,549.0961534761647,1291581.1538019455,561106.4288525352,2054.27634,859.9014321531363,2117729.616200458,872714.4537033036,0.38108,100000,0,541991,5663.378648081003,0,0.0,0,0.0,24007,250.33176246852176,0,0.0,28547,294.99169287677245,1856610,0,66604,0,0,4677,0,0,56,0.5851558499911182,0,0.0,1,0.0104492116069842,0,0.0,0.06766,0.1775480214128267,0.3083062370676914,0.02086,0.320754716981132,0.6792452830188679,25.04794182596852,4.555969817311287,0.322237017310253,0.217234163971847,0.2301692980787521,0.2303595206391478,11.12201483500852,5.580669905996798,22.17612386319493,12717.555139531874,59.64636690654618,13.649265496695696,19.12124935353611,13.505510795143604,13.37034126117078,0.5503138672246528,0.7793345008756567,0.6847697756788665,0.5785123966942148,0.1180842279108175,0.7138621200889548,0.9240506329113924,0.8666666666666667,0.6942446043165468,0.16015625,0.4938587512794268,0.7028112449799196,0.6248037676609105,0.5439914163090128,0.1068062827225131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0045025402845524,0.0068014090083139,0.0094418245385803,0.0114854829192862,0.0136814653328171,0.0159340603290862,0.0181587924096656,0.0203311481780714,0.0223776653489277,0.024551328068916,0.0267455475442164,0.028738351401946,0.0306514594215889,0.0327977130354913,0.0349725533168618,0.0370270606274087,0.0391198297784005,0.0410867710998772,0.0429248970657215,0.0579903906413202,0.0713156379247159,0.0852629369161331,0.0983525500757448,0.1101206801974766,0.1259032766592253,0.1397864300271739,0.1524535696029988,0.1633636907815974,0.1738869155568909,0.1875478328356921,0.2006409076638266,0.2122399233916601,0.2223717906625517,0.2329255805247569,0.2430580198722498,0.2530315549699636,0.2633825019704988,0.2723245220433711,0.2806516704501158,0.2886027283044213,0.2960585651537335,0.303201261066929,0.3096723868954758,0.3155936078612604,0.3214052307730249,0.3265334217739009,0.3317341342054695,0.3373291217895608,0.3418592367621814,0.3419037346636106,0.3419635602440334,0.3416091306185712,0.3418466163674732,0.3424864929050644,0.3415183013639912,0.3410781551707765,0.3411507910457559,0.3419735155916275,0.3427709445346948,0.3443855078439825,0.3453081204847815,0.3455545562922217,0.3460963139916501,0.3475921700492374,0.3483049523511951,0.3497404181678913,0.352895124166223,0.3558984047019311,0.356754199195647,0.3600379558085942,0.3608863504151462,0.3628956439987464,0.3660429027841168,0.3644171779141104,0.3660842508377214,0.3671646388418296,0.3685691318327974,0.3633396790862115,0.3690937257939581,0.0,2.035750767527407,59.550499610569005,207.21049044502053,285.3016807604764,fqhc4_80Compliance_baseline,65 -100000,95709,43039,405.6044886060872,6799,69.67996740118484,5278,54.425393641141376,2155,22.04599358472035,77.26691653433518,79.62555196401307,63.2951211478972,65.03841231668339,77.00194965425479,79.36421208280424,63.19806554018358,64.9460160365945,0.2649668800803937,261.33988120882634,0.0970556077136208,92.39628008889156,117.84762,82.56096312389158,123131.17888599818,86262.48641600223,280.94321,176.5604645017229,292794.857327942,183732.6260609677,309.81456,148.6794499254015,318799.87253027403,151649.7501602041,3786.60197,1697.449063318582,3907775.601040655,1725196.6727598982,1253.96846,545.5603589769687,1290778.9758538904,550751.2728630588,2115.2336,871.7723769561376,2166278.887043016,873525.2045624279,0.38208,100000,0,535671,5596.871767545372,0,0.0,0,0.0,23674,246.5494363121545,0,0.0,28506,293.0445412657117,1864426,0,66927,0,0,4643,0,0,60,0.6164519533168249,0,0.0,1,0.0104483381918105,0,0.0,0.06799,0.17794702680067,0.3169583762317988,0.02155,0.335484776203171,0.6645152237968289,25.008016072708017,4.445645329716239,0.330428192497158,0.2167487684729064,0.2231906025009473,0.2296324365289882,11.188272679619246,5.736259639345629,22.997495404974263,12811.129112557735,59.7333045743837,13.573524022583442,19.760849682294744,13.149215039386617,13.249715830118896,0.5450928381962865,0.7622377622377622,0.6915137614678899,0.5619694397283531,0.113036303630363,0.7184466019417476,0.9075,0.8729792147806005,0.6911196911196911,0.1700404858299595,0.4861640010154862,0.6841397849462365,0.631578947368421,0.5255712731229597,0.0984455958549222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0045524135903233,0.0067175386613629,0.0091933239199114,0.0114211907328682,0.0136641788765234,0.0159946990162597,0.0180786231255295,0.0200975230773948,0.022181051424828,0.0242124793701885,0.0264876185782924,0.0284950383053113,0.0307659030982201,0.0328075189055906,0.0347418908023402,0.0371555500326198,0.0391758139148839,0.0413608864680567,0.0431262633629941,0.0580993452859544,0.0721411001203747,0.085517892748452,0.0981702248550595,0.1102975311247098,0.1255211971130442,0.1383966961451488,0.1504862124423521,0.1626424859385359,0.1740217916375932,0.1881454968843657,0.2008386789181692,0.2130287058413555,0.2239221140472879,0.2346614950634696,0.2461456494955212,0.2558227947178335,0.2656767535657151,0.2738641526578828,0.282616171110245,0.2908653289823879,0.2982092696629213,0.3047190479010006,0.31165513188039,0.3182702360979405,0.3240025660638062,0.330663256991714,0.3357249359619722,0.3406008695087924,0.3453243125157224,0.3461429247515381,0.3459863701082373,0.3457929375132687,0.3461415723817813,0.3462238534300122,0.3455076923076923,0.3440211421202617,0.3449426141524234,0.345679012345679,0.3458968094279965,0.3465641373591164,0.3473211089455471,0.3489653716216216,0.3502926609635299,0.3519456903867135,0.3534247294883916,0.3548878665899942,0.3585589020205871,0.360747530225757,0.3606504328128792,0.362657174556213,0.3621405836974699,0.3662115605461273,0.368319876970396,0.3733383972654766,0.373136108791602,0.3755384615384615,0.3832310838445807,0.3849360755975542,0.3930387172467736,0.0,2.7230706177778186,58.50906738296511,199.3259990904142,299.01751925877454,fqhc4_80Compliance_baseline,66 -100000,95697,42511,400.8903100410671,6861,70.45152930603885,5322,55.006949016165606,2151,22.132355246245965,77.288290147924,79.65778974228205,63.294707477804174,65.04401049265633,77.02997987251057,79.39849613067501,63.19981172025162,64.95152735060417,0.2583102754134359,259.2936116070348,0.0948957575525568,92.4831420521599,117.87578,82.58520840029458,123176.04522607816,86298.63882911122,281.24037,176.8225526260957,293264.2716072604,184151.8433172492,306.79924,147.56214659134446,316595.72400388727,151277.37021802308,3840.01918,1729.2338176583194,3971297.731381339,1765631.28418888,1318.27473,574.3799753387881,1363387.6819545024,586066.7655022449,2116.27192,877.5476558570001,2178155.3444726584,887511.0726014544,0.37857,100000,0,535799,5598.911146639915,0,0.0,0,0.0,23726,247.28047901188123,0,0.0,28364,292.33936278044246,1861799,0,66875,0,0,4600,0,0,54,0.5642810119439481,0,0.0,1,0.0104496483693323,0,0.0,0.06861,0.1812346461684761,0.3135111499781373,0.02151,0.3218088784400498,0.6781911215599502,25.08031466806696,4.481875054244894,0.3248778654641112,0.2093198045847425,0.2343104096204434,0.2314919203307027,11.003237046304838,5.5509714108981925,22.875640657951138,12702.61220977957,60.153965780069086,13.235243475204602,19.49291930334732,13.955051511689692,13.470751489827466,0.5578729800826757,0.7845601436265709,0.6899942163100058,0.5966319165998396,0.1282467532467532,0.7293510324483776,0.9207161125319692,0.8634259259259259,0.7634408602150538,0.1692913385826771,0.4992435703479576,0.710926694329184,0.6322282189668466,0.5485537190082644,0.1175869120654396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179685838422,0.004450482051074,0.0065450338921134,0.0087466222393791,0.0109124562688145,0.0131047052714109,0.0153443037458453,0.0174654213239422,0.0199940712876549,0.0220436985109757,0.0242072683296779,0.0264929892632054,0.0286651381334759,0.0307212226696464,0.0325432190452613,0.0344670779979123,0.0364997514910536,0.0385653202706629,0.0406707025317772,0.0425873426165263,0.0574135193850267,0.0715340236841278,0.0850668569869224,0.0975163123552936,0.1095839799009827,0.125324242199659,0.1384322969758749,0.1498412630771525,0.1616986699739126,0.1722712534089201,0.1860881379325217,0.1985115694600918,0.2106266199115719,0.2217417483168208,0.2321196502125597,0.2427496838041138,0.2530745494387549,0.2625455201416057,0.2723187878236338,0.2804906059074831,0.2885695063103192,0.295867148285406,0.3036646729326877,0.3102905481723583,0.3166106401636948,0.3220248909322358,0.3265890509023774,0.3326442326097775,0.3378773505217606,0.3431541313559322,0.3437824848460302,0.3439200198845591,0.3441231396072661,0.3433373000899776,0.3440163604066217,0.3426076797737264,0.341497506274024,0.3421420926977854,0.3432608061999554,0.3441694593286858,0.3448969993415483,0.3457443644798668,0.3468237273874632,0.3467218617140299,0.3482951678400653,0.3491695735929609,0.3495311653888904,0.3521051304676667,0.3533471845617494,0.3564336696040512,0.3588437715072264,0.3610486891385768,0.3623966159479765,0.3634489078967466,0.3651743153565754,0.3596181046676096,0.3599939292760661,0.3662650602409638,0.3596112311015119,0.3680866965620329,0.0,2.3627591912919184,59.8507387437712,199.1612752637537,301.0017702472983,fqhc4_80Compliance_baseline,67 -100000,95834,43153,406.71369242648746,6867,70.2151637206002,5350,55.28309368282656,2139,21.95462988083561,77.36488025655099,79.67954612250743,63.35773544642036,65.07125815381349,77.09198666850851,79.40801298755801,63.25679879639247,64.97350505022322,0.2728935880424785,271.5331349494221,0.1009366500278901,97.75310359026436,118.25924,82.81210550273839,123400.08765156416,86412.0307017743,280.3641,175.95731625260422,291986.2366174844,183043.65051866425,304.59517,146.13193853576007,315298.9961808962,150441.18083461167,3885.123,1757.195589879563,4014097.752363462,1793898.7945841467,1295.0008,570.2903887110687,1333019.429430056,576887.3268282402,2110.13594,894.230165645803,2166676.210948098,901834.273640286,0.38372,100000,0,537542,5609.094893252916,0,0.0,0,0.0,23608,245.7687250871298,0,0.0,28183,291.46232026212,1870648,0,67115,0,0,4619,0,0,48,0.5008660809316109,0,0.0,0,0.0,0,0.0,0.06867,0.17895861565725,0.3114897335080821,0.02139,0.3189226519337017,0.6810773480662984,24.979315896203527,4.532173500030358,0.3192523364485981,0.2171962616822429,0.2272897196261682,0.2362616822429906,11.060802318384209,5.507029356576242,23.098133944430508,12801.928298529569,60.598228105033854,13.709671926479196,19.25220119250213,13.574708343501582,14.061646642550931,0.5493457943925234,0.774526678141136,0.7066744730679156,0.5641447368421053,0.115506329113924,0.6819505094614265,0.9088541666666666,0.8551068883610451,0.6945454545454546,0.1258503401360544,0.5035211267605634,0.7082262210796915,0.6581196581196581,0.5260361317747078,0.1123711340206185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044912607972748,0.0066969721568309,0.0091415105838378,0.0114092799544442,0.0134810410133181,0.0156781993516687,0.0181820037977009,0.0202302093555773,0.0222324581606018,0.0243614971508219,0.0265591166117627,0.0284381134441258,0.0308560018937639,0.032665051796114,0.034705949148868,0.0367286568337436,0.038801052653391,0.0407118605351413,0.0427599409059697,0.057877444589309,0.0723095576553223,0.0858711252186848,0.0986915338247957,0.1114352514954924,0.1270987771653044,0.1399709718087529,0.1524706582752168,0.1635977639327473,0.1750554311849955,0.1891641832793622,0.2015048811338501,0.2133357960842261,0.2242245522062035,0.2343088876921893,0.2452832275331224,0.2552169795554565,0.265534629336388,0.2752516959037836,0.2831431381068904,0.2912850129945134,0.2986092460034798,0.3052025581312874,0.3123556512894154,0.3172885390856532,0.322615219721329,0.3281162031302781,0.3345583560110888,0.3399994822408616,0.3444183654632242,0.3450438809023852,0.3447924694484201,0.3452122408687068,0.3453719378970062,0.3453083109919571,0.3455544808315293,0.3446292677501866,0.3451760749142706,0.3455126113906011,0.3464154329295648,0.3475955005284614,0.3480529827706404,0.3488269052240695,0.3492456653906777,0.3501568911416847,0.3511560315257521,0.3512448606669712,0.3519997474667761,0.3541343304642302,0.3556907315511445,0.3575707308082204,0.3589950505702604,0.3605612146838362,0.3616164744135635,0.3637234246312967,0.366754617414248,0.3709152857364101,0.3712636569779426,0.3746525847693163,0.3767441860465116,0.0,2.0594267006380345,60.82662969726639,199.40902369731,304.1018820430378,fqhc4_80Compliance_baseline,68 -100000,95645,42827,404.4539704114172,6694,68.7960687960688,5245,54.325892623764965,2105,21.72617491766428,77.2563444549925,79.66603415828392,63.27473565930678,65.0555819130529,77.00131965308937,79.4095902483089,63.18151038861042,64.96378498851739,0.2550248019031329,256.44390997501887,0.0932252706963581,91.79692453551525,118.09116,82.75583269601843,123468.20011500864,86523.95075123469,280.78945,176.2037412669139,293086.1100946208,183749.69838317152,305.53919,146.37588566601184,316545.0781535888,150818.5293213113,3792.0473,1697.6457300896082,3930519.14893617,1741596.4503700205,1264.87399,551.8523665924979,1308214.3342568874,562726.7254874776,2080.8811,857.0540510678829,2148527.638663809,872537.467638064,0.38061,100000,0,536778,5612.190914318574,0,0.0,0,0.0,23650,246.7457786606723,0,0.0,28200,291.8605259030791,1861475,0,66877,0,0,4677,0,0,51,0.5332218098175545,0,0.0,0,0.0,0,0.0,0.06694,0.1758755681668899,0.3144607110845533,0.02105,0.3261979018996314,0.6738020981003686,24.922438401444342,4.542641501061703,0.3302192564346997,0.2114394661582459,0.2238322211630123,0.2345090562440419,11.128586763535226,5.494996265257342,22.20551338021664,12726.443485451582,58.98445680120963,13.184106829075407,19.33779564810195,13.074091409025884,13.388462915006382,0.5506196377502384,0.7772768259693418,0.6899538106235565,0.5826235093696763,0.1195121951219512,0.7135258358662614,0.8956043956043956,0.8518518518518519,0.7605633802816901,0.1228813559322034,0.4960549758208195,0.7194630872483222,0.6361538461538462,0.5258426966292135,0.1187122736418511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0042062373939572,0.0064745938156465,0.0087165889488281,0.0108149353952589,0.0131719690718498,0.0152297209074587,0.0170521884833871,0.0192705030378659,0.0216259962710266,0.0240313577409292,0.026195174086406,0.0284546568248967,0.0306516965141814,0.032735574241266,0.0346543874172185,0.0363447882651739,0.0382274115471713,0.0403321470937129,0.0422751168224299,0.056695266859657,0.0706586073602279,0.0835660444705734,0.0965758976032335,0.1090241431706905,0.1249497365135129,0.1383434866591666,0.1509094394275004,0.162671141369986,0.1737576856630862,0.1871590884591337,0.2001083247576233,0.2118624685522604,0.223288736947065,0.2333811204234671,0.244094925187586,0.2534951347723968,0.2632261118499651,0.2718757814808921,0.2801973382285452,0.2884131420552727,0.2964126980404113,0.3032550522730778,0.3099505116994186,0.3160459534861055,0.3214758049564303,0.3273530223571625,0.3329507046744467,0.3381012953973157,0.343103812999101,0.3430796852009341,0.3435588750983667,0.3434839184181494,0.343462928294658,0.3441624365482233,0.3435613062230437,0.3423639834552975,0.3436536082474227,0.3445937806535992,0.3450154642882831,0.3469684385382059,0.3479152562621958,0.349537085855284,0.3512810158388298,0.3526145526531795,0.3538336777670233,0.3545603119534363,0.3566325240263024,0.3601152818782511,0.3631773545899097,0.3648654821175718,0.3654051172707889,0.3665969714249509,0.368316680649836,0.3718377976190476,0.3727133246783902,0.377589596249811,0.3778801843317972,0.3794885745375408,0.3945525291828793,0.0,1.9812326944141383,58.24879713521871,189.7550715249793,306.51408579041447,fqhc4_80Compliance_baseline,69 -100000,95676,42959,404.5633178644592,6783,69.47405828002843,5303,54.67410844934989,2120,21.698231531418536,77.32722884548278,79.7045569603273,63.32110870231941,65.07607540626437,77.06523412597625,79.44517292013393,63.2237238269846,64.98286140206604,0.2619947195065322,259.3840401933676,0.0973848753348178,93.21400419833026,116.70054,81.79601884516023,121974.72720431456,85492.72424135648,281.5139,177.34636325267388,293406.3715038254,184531.0665712132,310.01615,149.38760808815712,318915.6423763535,152161.47131883368,3830.0797,1726.340318784455,3955426.470588235,1756610.277169253,1306.75502,569.0712518242531,1349306.1582842092,578283.3645054692,2092.78686,873.3684436041841,2145613.508089803,877507.8815559711,0.38146,100000,0,530457,5544.3057820142985,0,0.0,0,0.0,23750,247.4601781010912,0,0.0,28652,294.3998494920356,1869763,0,67126,0,0,4590,0,0,59,0.6062126343074543,0,0.0,0,0.0,0,0.0,0.06783,0.1778168091018717,0.3125460710600029,0.0212,0.3154202329170759,0.6845797670829241,24.988067667995686,4.473846519105125,0.3262304356024891,0.2145955119743541,0.2236469922685272,0.2355270601546294,11.008223472681795,5.588471138758044,22.58668470255242,12810.216312184495,59.7341096253929,13.40694544743758,19.51282664867314,13.274328503851992,13.540009025430196,0.5545917405242315,0.7899824253075571,0.7017341040462428,0.581787521079258,0.11048839071257,0.7239309827456865,0.9388888888888888,0.8733031674208145,0.7298245614035088,0.1341463414634146,0.4977329974811083,0.7210796915167095,0.6428571428571429,0.5349611542730299,0.1046859421734795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766861724745,0.0044592636134223,0.0067363295120219,0.0090191657271702,0.0112567494737698,0.0137252705853603,0.0159484428854037,0.018026206938813,0.0203710142556194,0.0226213761251804,0.024674645417346,0.0267860810977363,0.0288312195924748,0.0309531169500257,0.0331179821664465,0.035347528878869,0.0375968671004102,0.0396187628480657,0.0415557127402846,0.0435408045198211,0.057920905843274,0.0716618173445251,0.0856480510216926,0.0979389578007133,0.1109177398770158,0.1267230162172455,0.1401069745723139,0.1534496895865058,0.1653328774587843,0.1763166081984272,0.1894317263668193,0.2016000692858148,0.2137495920809311,0.225055238345256,0.2360134279896538,0.2468280791179566,0.2572257884454368,0.2673238358877411,0.2758585457228813,0.2837171994958176,0.2918442509033633,0.3000749309230553,0.3070499609125151,0.3124632745326122,0.318412860547692,0.3240284822232917,0.3291266151166142,0.334441853649835,0.3402147414284973,0.3447751724867165,0.3445147878673344,0.3443314314065988,0.3443092643820922,0.3438806661168743,0.343594096710301,0.3430977776411643,0.3417916369118464,0.3420015760441292,0.3424442242645802,0.3431414508880804,0.343403148220937,0.3446531934649045,0.3453802639849151,0.3465151650711282,0.3471448887603345,0.3481661696227698,0.3476194566119843,0.3495501183898974,0.3524074139204445,0.354470766531068,0.356346109708515,0.3604389721627409,0.3627594085168497,0.3603020496224379,0.3613204846865757,0.3621517771373679,0.3659937888198757,0.3645128205128205,0.3639664804469273,0.36282151208106,0.0,2.94198748437734,57.75587766089781,200.3869334753273,299.847161986711,fqhc4_80Compliance_baseline,70 -100000,95775,42844,403.3724876011485,6711,68.67136517880448,5276,54.46097624641086,2066,21.23727486296006,77.38146625236273,79.7033374289426,63.35451413110488,65.06737823630378,77.12602768620123,79.44864475653314,63.26071486851087,64.97648126681969,0.2554385661615015,254.6926724094618,0.0937992625940111,90.89696948409198,119.44548,83.64989160418222,124714.67501957712,87340.00689551784,283.07956,178.311850010137,294965.6590968415,185576.24642144292,309.61865,148.88276793140386,318929.5745236231,152229.6016873875,3809.41254,1713.2441706982502,3936791.782824328,1748153.4436943356,1284.42795,561.1037576920531,1324991.2503262856,569758.4731840802,2035.31214,844.8161855465111,2093497.635082224,854566.9784986613,0.38081,100000,0,542934,5668.848864526233,0,0.0,0,0.0,23900,248.90629078569563,0,0.0,28711,295.3902375358914,1857245,0,66679,0,0,4828,0,0,48,0.5011746280344557,0,0.0,1,0.0104411380840511,0,0.0,0.06711,0.1762296158189123,0.3078527790195202,0.02066,0.3307812278463065,0.6692187721536934,24.89353970306676,4.481563583740466,0.3296057619408643,0.2168309325246399,0.2221379833206975,0.2314253222137983,11.316589363338204,5.765104591446897,21.79854574937641,12728.274823665231,59.409498829285866,13.481678861907456,19.623099358469396,13.028054509018258,13.27666609989078,0.559325246398787,0.7823426573426573,0.7038527889591719,0.5844709897610921,0.1203931203931203,0.74090571640683,0.9348958333333334,0.8820960698689956,0.7443609022556391,0.1548117154811715,0.497073046576737,0.7052631578947368,0.6401249024199844,0.5375275938189845,0.1120162932790224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023591114351092,0.0047934654829948,0.0067862975624106,0.0089568608335364,0.0111340457766886,0.0131013701976912,0.0155332681017612,0.0175920162450637,0.019840621168778,0.0220064658700278,0.0243207802319386,0.0265830836787458,0.0285999095655033,0.0306046818060159,0.032681423136798,0.0348545403847941,0.0369427542530733,0.0391051027390159,0.0411688932288961,0.0430844196409978,0.0579407651687503,0.0720863068455308,0.0849642355211545,0.0975232849063347,0.1096644281150833,0.1251784864350309,0.1383505701405462,0.1511299886096296,0.1628284554582354,0.1744794458859606,0.1885167361088681,0.2008587218671252,0.2127819221818656,0.2243565201220779,0.2341167667965053,0.2447512159452243,0.2555278990077128,0.2654461985079833,0.2741475821193782,0.2820277659952538,0.2890384303551159,0.2965847602539176,0.3031943243595362,0.3100344029823909,0.3166373079025694,0.3222809546692295,0.3281128818393335,0.3332061651152144,0.3381044286991101,0.3432887012730031,0.3429413823743235,0.3427659545198168,0.342108229988726,0.3423638547591137,0.3426351743537081,0.3426810383158798,0.340999382706279,0.341355776487187,0.3413022318607947,0.3411930349854747,0.3424903626632733,0.3436236315218463,0.3442238418363073,0.3456417142217746,0.3468224770973094,0.3470744680851064,0.346917271821159,0.3489620952799673,0.3506917620619425,0.3519933158271663,0.3540335827705785,0.3568735729835926,0.3607174212968769,0.3598056335889454,0.3606696935300794,0.361755262219051,0.3686860979703952,0.3660606060606061,0.3637359627499315,0.3564053537284894,0.0,2.496956101935379,59.0419076503112,193.74116533954933,300.9642290869878,fqhc4_80Compliance_baseline,71 -100000,95753,42807,403.1727465458001,6726,69.03177968314309,5210,53.79465917516945,2127,21.82699236577444,77.31912755708531,79.66908219568627,63.32066847763053,65.05820038217429,77.05541686758723,79.40620316766818,63.22260424341346,64.96363885168698,0.2637106894980832,262.8790280180908,0.0980642342170696,94.56153048731152,119.40918,83.6629692466572,124705.1893935438,87373.52822599708,284.71182,179.78105120822684,296729.41839942354,187145.67411757295,305.80152,146.82998412789837,315152.8724948566,150186.62057785213,3747.81904,1690.0852484107088,3873759.318245904,1724820.6148484794,1244.28396,545.7974160238596,1284955.2912180298,555521.5999715559,2087.31414,869.3203338591496,2143924.326130774,876390.3781398014,0.3801,100000,0,542769,5668.417699706537,0,0.0,0,0.0,24042,250.42557413344755,0,0.0,28340,291.82375486929914,1855065,0,66636,0,0,4638,0,0,50,0.5221768508558479,0,0.0,0,0.0,0,0.0,0.06726,0.1769534333070244,0.316235504014273,0.02127,0.3227363042861197,0.6772636957138802,25.14400050312313,4.491314550811602,0.327063339731286,0.2170825335892514,0.2259117082533589,0.2299424184261036,11.222405859516796,5.666293338693801,22.600649208217085,12718.240106103682,59.065071448541936,13.508093220742715,19.32312313960531,13.156267600266018,13.077587487927891,0.5460652591170825,0.7727674624226348,0.6842723004694836,0.5743415463041631,0.1076794657762938,0.7084898572501879,0.9042821158690176,0.8495370370370371,0.7068273092369478,0.1620553359683794,0.4903325599381284,0.7016348773841962,0.6281446540880503,0.5387931034482759,0.0931216931216931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0046007762543195,0.0068787792703218,0.0091714233480265,0.011440949446258,0.0137382501807664,0.0160591384144787,0.0182677776416288,0.0206335248767918,0.0229417907086259,0.0251507197637698,0.0272110240586525,0.0290953595524107,0.0312152305600197,0.033555177217149,0.0353466451692918,0.0372391088288885,0.0391693118400033,0.0411393062742897,0.0431100926986772,0.057444387611303,0.0716893496385718,0.0848140300824435,0.0975517415446744,0.1094265622199496,0.1253621809106867,0.1378370351513608,0.149630764647045,0.1621105012493859,0.1735974871085667,0.1867717688613211,0.1997467450241891,0.2122678965746048,0.2239378861610804,0.2339238556338028,0.2451904440186512,0.2545856452279146,0.2646148652450346,0.2732050627163857,0.2815496168340989,0.2895650965680144,0.2967853714499777,0.3035591573659392,0.3091430766645057,0.3151888261631302,0.3203437546303156,0.3261087572392007,0.3304734708447005,0.3357646234312338,0.3408733358892664,0.3417171539987316,0.3421506058141618,0.3420205102127299,0.3424173020612878,0.342637968272883,0.3413495500476058,0.3413100436681223,0.342047643349851,0.3428072458309077,0.3439717582968963,0.3442832684239243,0.34546463685379,0.3458372802862856,0.3464209461737274,0.3471403729108299,0.3470290936706209,0.3481859053291715,0.3511842810735799,0.3533601297510754,0.3557119007870259,0.3567158048468805,0.3590455346180537,0.3598629093678598,0.3637202861758596,0.3650703154694033,0.3657462508926446,0.3661084652020279,0.3622095393395841,0.3700221238938053,0.3720751822017645,0.0,2.3396099704971465,58.45061037926043,202.3586576621585,287.2832723410302,fqhc4_80Compliance_baseline,72 -100000,95684,42539,401.394172484428,6816,70.07441160486601,5357,55.44291626604239,2137,21.93679194013628,77.34181859432726,79.7247841819157,63.3271521787835,65.08549702029663,77.08619906175485,79.46858588717996,63.23283955350973,64.99313287020958,0.2556195325724104,256.1982947357393,0.0943126252737656,92.36415008705023,118.4469,82.97536610857084,123789.66180343632,86718.12017533845,279.63133,175.42891851375893,291709.9933113164,182807.34345737944,306.90152,147.16040787421895,317022.7728773881,150865.71534590007,3824.01675,1717.8328000605595,3962666.7885957942,1761479.5995783622,1248.03971,540.7464250272523,1290779.3675013585,551582.3387685004,2095.4735,866.7263999831255,2154471.301367,877358.4042247668,0.37818,100000,0,538395,5626.802809247105,0,0.0,0,0.0,23549,245.5373939216588,0,0.0,28327,292.3581790058944,1866627,0,66955,0,0,4647,0,0,70,0.7315747669411814,0,0.0,0,0.0,0,0.0,0.06816,0.1802316357290179,0.3135269953051643,0.02137,0.3289675351818308,0.6710324648181691,24.975630179952603,4.4184749412047575,0.3292887810341609,0.2170991226432705,0.2331528840769087,0.2204592122456599,11.265783515143823,5.837988387657793,22.58431691689439,12679.55024132959,60.25786715076356,13.674464095803854,19.80576140474928,13.964672340641195,12.812969309569237,0.5508680231472839,0.7592433361994841,0.7040816326530612,0.5652522017614091,0.1016088060965283,0.7077039274924471,0.9104859335038364,0.8478802992518704,0.7093425605536332,0.1481481481481481,0.4993801140590131,0.6826424870466321,0.6617754952311079,0.521875,0.0895522388059701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784579396664,0.0045511215625855,0.0066860789545772,0.0090390201295931,0.0110627567413673,0.0130935896391626,0.0153808519096107,0.0175066096383328,0.0196956224000654,0.0219574363541442,0.0243109671068821,0.0261993036798159,0.0282295813915208,0.03016095459885,0.0322647234894618,0.0341845864233923,0.0360821537377463,0.0382690670487344,0.0403732523302263,0.0422830336200156,0.056722623238517,0.0708639157339252,0.0847510994028064,0.0973074211639432,0.1093448381346188,0.1246707916864984,0.1374323607427055,0.149310766938102,0.1609188034188034,0.1713816918325326,0.1859573551583028,0.1990568486631478,0.2110929853181076,0.2226024401976647,0.232195111218675,0.2433132870385752,0.2535689172145145,0.2626742106388005,0.2713570690848835,0.279371005795176,0.2874329076439015,0.2953506052985554,0.3021604865235808,0.3090264044203133,0.3152344272054624,0.3210133760710102,0.3258711139490916,0.3309349769503094,0.3364446000077781,0.3410024433731757,0.3409568733153639,0.3407466571188565,0.3413684641099059,0.3417710533167472,0.3426395561571299,0.3419324145974647,0.3412176613171527,0.3424797081923039,0.3438109578727627,0.3460184738525307,0.3472261229380816,0.3478604605198142,0.3490473096191334,0.3499563338334415,0.3505455070927964,0.3504879516496167,0.3517878068997056,0.3548183652875883,0.3575588577882884,0.3598168060533652,0.3621154637290305,0.3651359548768158,0.365559671040241,0.3649039926851569,0.3688601424821897,0.3669768551658315,0.3674318286858727,0.3741386299148763,0.3733296213808463,0.3744186046511628,0.0,2.159916359959526,58.26296627042066,201.56615067777977,307.155209277859,fqhc4_80Compliance_baseline,73 -100000,95685,42791,403.8250509484245,6929,71.40095103725767,5464,56.591942310707005,2197,22.594973088780897,77.38307130315455,79.75837696246211,63.34642469116329,65.09715634838265,77.1078737050955,79.48290653958605,63.24655864946716,64.99934050155187,0.2751975980590515,275.4704228760545,0.0998660416961314,97.81584683078393,118.1191,82.75767692667368,123445.78565083344,86489.7078190664,285.27324,178.46446577885644,297645.743846998,186020.33315447197,308.06525,147.42908561085372,318884.38104196056,151686.56929007376,3929.66617,1756.8060066641597,4071639.0029785233,1800791.7820600506,1271.7959,552.33984516056,1317806.542300256,565905.9781162774,2160.82672,892.6517165893954,2224742.7705491977,906087.2788648792,0.38181,100000,0,536905,5611.1720750378845,0,0.0,0,0.0,24039,250.70805246381357,0,0.0,28564,295.364999738726,1864968,0,67080,0,0,4743,0,0,51,0.532998902649318,0,0.0,0,0.0,0,0.0,0.06929,0.1814776983316309,0.3170731707317073,0.02197,0.3288821585903084,0.6711178414096917,24.815562736986703,4.533542915624048,0.3217423133235724,0.2185212298682284,0.2256588579795022,0.2340775988286969,11.261116140357265,5.666881035533267,23.329596797530044,12735.775764678989,61.5393570765535,14.04910932661313,19.980242552043418,13.654367369934452,13.855637827962497,0.5453879941434846,0.7738693467336684,0.6996587030716723,0.5709651257096513,0.0953870211102423,0.7240865026099925,0.942643391521197,0.863849765258216,0.6931407942238267,0.1392405063291139,0.4872665534804754,0.6885245901639344,0.6471471471471472,0.5355648535564853,0.0854126679462572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002591539029995,0.0047210909164589,0.0069167655500451,0.0092712945286161,0.0115194957043363,0.0138033531154249,0.0158311076678423,0.0176280251916422,0.0196866088129772,0.0217126477964887,0.0241549360755405,0.0262466113529943,0.0281900177923133,0.030385744450739,0.0326507453448186,0.0348288014551618,0.037023224977728,0.0386611312921639,0.0405569825604975,0.0424995310252829,0.0566721684808724,0.0711047832413814,0.0847137566748145,0.0971462819650067,0.1095764757978639,0.1244198708122337,0.1379189722063219,0.1509060745278203,0.1630691093778342,0.1739395952301874,0.1887815478623835,0.2013946699821611,0.2129613528670173,0.2234511098239363,0.2337193827608583,0.2445714792165204,0.2545811883731058,0.2642199975225504,0.2739732249310184,0.2823830040793876,0.2901590388221404,0.2974428624953166,0.3045734597156398,0.3106171535562543,0.3172508574347498,0.3228242494539801,0.3281336139928832,0.3330530392793894,0.3389021479713603,0.3435657438988921,0.3429480267414276,0.3434198746642793,0.3440628260440459,0.3436224711296344,0.3432962389907165,0.3417120921305182,0.3406345729568433,0.3412691883709834,0.3412180113470801,0.3416638321488032,0.3433028691287736,0.3447465592480698,0.3437807714064235,0.3452168082253017,0.3460485884386403,0.3473133395813808,0.3495835583728929,0.3521507064364207,0.3551595669900182,0.3563815033482585,0.3602005926601322,0.3609050445103857,0.3637106918238993,0.3642575159429092,0.3674878686076894,0.3689286134305539,0.3694209891435464,0.3651951123374063,0.3725331170586645,0.3713111692192753,0.0,1.992363370032884,59.26870460799148,210.5960572150444,309.06429556216506,fqhc4_80Compliance_baseline,74 -100000,95696,42571,401.42743688346434,6632,68.13241932787159,5162,53.387811402775455,2138,22.00718943320515,77.3960056150407,79.77977257203706,63.35197710932333,65.11286871493789,77.1305643697311,79.5143302201682,63.25471978837511,65.01826721886223,0.2654412453096029,265.442351868856,0.0972573209482163,94.60149607565428,117.8386,82.53074874928876,123138.48018725966,86242.63161395332,279.35092,175.7531423653612,291379.5351947835,183122.36913283856,301.21422,144.6757945442755,311065.03929108847,148434.95165731886,3754.43402,1703.558701918311,3885405.481942819,1742290.4948151547,1283.20906,560.4568322789416,1328222.1722956027,572983.8911150149,2108.03656,877.9842093242273,2171310.169704063,890086.91343716,0.3798,100000,0,535630,5597.203644875439,0,0.0,0,0.0,23574,245.77829794348773,0,0.0,27854,287.3892325698044,1872714,0,67070,0,0,4626,0,0,62,0.6478849690687176,0,0.0,0,0.0,0,0.0,0.06632,0.1746182201158504,0.3223763570566948,0.02138,0.3217913864644441,0.6782086135355558,25.27830381940373,4.45223011834695,0.3159628051142968,0.2074777218132506,0.2390546299883766,0.2375048430840759,11.000067345727285,5.575208346859379,22.82053414534799,12650.24157958499,58.39213658574248,12.779834180990765,18.28907806520577,13.859059344363168,13.464164995182776,0.5523053080201472,0.7964519140989729,0.683629675045984,0.5940032414910859,0.1223491027732463,0.7207743857036486,0.936842105263158,0.8722358722358723,0.7152317880794702,0.1614173228346456,0.4930610107357947,0.7192474674384949,0.6209150326797386,0.5547210300429185,0.1121399176954732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044716189085599,0.0065467611294939,0.009001778003556,0.0109148983785323,0.0130737588074777,0.0154674388490675,0.0176928809890861,0.0200269888977488,0.0222113042232184,0.0242464629895427,0.0262841771307124,0.0283957092756574,0.0306235965472487,0.0327593144791011,0.0348149679553442,0.0369886993360471,0.0390492007473531,0.040957264246118,0.0425248061369132,0.0571154006852176,0.0708193358659592,0.0834058799467175,0.0956231009430887,0.1086644882470749,0.1239055031513049,0.1363525455374855,0.1484213663749973,0.1603093389162456,0.1713801572235985,0.1848042647138011,0.1973456496344048,0.2095042489839386,0.2204297549566092,0.2307049562425788,0.2417980164703798,0.2520993409240445,0.2616319561456718,0.2705810383696034,0.2790772115142785,0.2872715095668641,0.294178090189393,0.3013988327307956,0.3078064601060328,0.3142139798901112,0.3201126524990161,0.3264307557885539,0.3313117728408846,0.3367244183944847,0.3414521816937733,0.3416497697090142,0.3412914025410938,0.3420897201518774,0.3421937457609997,0.3425035612535612,0.3410724664280689,0.3405305367057372,0.3415750615258408,0.342941548129301,0.3440946568155049,0.3448256478480016,0.3452688957794323,0.3466245476036066,0.3482286275209709,0.3494688266115464,0.350028665242091,0.3507519972706337,0.352744900528834,0.3553852643419573,0.356801148142242,0.3600734281780633,0.3607591553060679,0.3642707606420097,0.3688926328687394,0.3738237810094098,0.3754816955684008,0.375096435735226,0.3741816693944353,0.3758351893095768,0.3736434108527132,0.0,2.1454826042948296,59.2308589627612,194.37182232559564,286.3661294149643,fqhc4_80Compliance_baseline,75 -100000,95811,42797,403.2939850330338,6729,68.88561856154303,5232,53.87690348707351,2126,21.69896984688605,77.38566316619061,79.7067423734104,63.36611244363343,65.08442550812794,77.11987463502484,79.44392637517373,63.26736162995393,64.99025407870946,0.2657885311657679,262.81599823667534,0.0987508136794943,94.17142941848056,117.8067,82.5494633319229,122957.38485142624,86158.64914458976,283.26261,178.73329759231277,294905.7206375051,185809.17328946423,309.64443,149.05413614184263,318960.4847042615,152337.7773921259,3729.69051,1692.8723270485402,3843611.933911555,1718108.4973556777,1219.67584,538.6657190606359,1256754.6628257716,545969.7624079032,2083.54922,877.6488946683636,2128701.8609554223,876270.1327249953,0.37961,100000,0,535485,5588.972038701193,0,0.0,0,0.0,23888,248.56227364290112,0,0.0,28613,294.36077277139367,1869255,0,67056,0,0,4697,0,0,59,0.6157956810804605,0,0.0,0,0.0,0,0.0,0.06729,0.1772608730012381,0.3159459057809481,0.02126,0.3283307376468922,0.6716692623531078,24.840093262878565,4.397429907663364,0.3302752293577982,0.22782874617737,0.2173165137614678,0.2245795107033639,10.890545268161704,5.452837380879199,22.74542755088565,12671.078710091,59.33094675923423,14.221194028878791,19.54888112656124,12.63646278685929,12.924408816934903,0.5525611620795107,0.7810402684563759,0.6747685185185185,0.5760773966578716,0.1182978723404255,0.7216946676406136,0.9396984924623116,0.8243243243243243,0.752851711026616,0.1893939393939394,0.4926223142635257,0.7015113350125944,0.6230529595015576,0.522883295194508,0.097694840834248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370767625819,0.0043895664162687,0.0069419776517035,0.0089813667120476,0.0109849871841816,0.0133794929233275,0.0156866342537381,0.0177160934789264,0.0197250753743165,0.0218690517611903,0.0240932987630535,0.0262244939853019,0.028314782269088,0.0303663520232225,0.0325960299046145,0.0345101846878486,0.036349526618035,0.0383311738792433,0.0404456812942618,0.0424675067900142,0.0574981223399816,0.0711903741414817,0.0843378545523154,0.0968352036313201,0.1082809257445037,0.1241497317165913,0.1371163401739646,0.1486579856497475,0.1607996245093019,0.172359865891149,0.1855305327912929,0.1977313239345325,0.2097017599096702,0.2208964674031701,0.2314950078534318,0.2426162437109526,0.2520696609432974,0.261869452870464,0.2709431054605613,0.279108590507335,0.287371327564495,0.2954874404706322,0.3030811200207848,0.3096052222567609,0.3158647090177836,0.3218541907265891,0.3271222824052118,0.3321914766744059,0.3377847806994886,0.3417203196797935,0.3416100612011568,0.341811132954811,0.3425820347143038,0.342140255535642,0.3420352337768527,0.3409557674033657,0.3397656460589531,0.3408877851421805,0.3413593364409103,0.3425332234838987,0.3442422876884658,0.3463544248577264,0.3480296033904738,0.3481684816848168,0.3483908491663435,0.3497621112951134,0.3520241171403962,0.3542741399499952,0.3563307951124491,0.3572773526701654,0.3598143723580224,0.3626121315677061,0.3651557356292732,0.3678169714591782,0.3703034338438124,0.374414976599064,0.3782110801609409,0.3817698753321071,0.3820754716981132,0.3850287907869482,0.0,2.799372888626113,59.60276741581145,196.827053166484,291.5397401735134,fqhc4_80Compliance_baseline,76 -100000,95773,42858,404.13268875361535,6833,70.3016507784031,5294,54.76491286688315,2120,21.81199294164326,77.37657405990127,79.72128739946298,63.3458979718325,65.07899297448462,77.11429238889569,79.45840651341939,63.24988292363874,64.98542562469238,0.2622816710055815,262.8808860435896,0.0960150481937631,93.56734979223802,118.5316,83.06994385270009,123763.06474684933,86736.28669113436,280.0636,176.03437116012938,291913.639543504,183300.42647692983,309.23562,148.19810692446336,319498.2093074249,152173.8571417332,3841.58257,1730.9500197812445,3972746.5047560376,1769845.393793026,1284.46737,562.4749809291714,1329936.5269961264,576078.5617336531,2088.86838,867.2261156366924,2149802.449542146,877470.0547098349,0.38105,100000,0,538780,5625.593852129515,0,0.0,0,0.0,23616,246.04011569022583,0,0.0,28537,294.67595251271234,1866120,0,66948,0,0,4771,0,0,50,0.5116264500433316,0,0.0,2,0.0208827122466665,0,0.0,0.06833,0.1793202991733368,0.3102590370261964,0.0212,0.3318466898954704,0.6681533101045296,25.056266242750382,4.530976996592112,0.3326407253494522,0.2145825462788061,0.2164714771439365,0.236305251227805,11.157604839367854,5.5033574827679965,22.50348496956357,12739.441798520797,60.06041396488405,13.735628724481224,19.850320727380957,12.709855302056097,13.764609210965776,0.5553456743483188,0.7922535211267606,0.6950596252129472,0.5785340314136126,0.1223021582733813,0.7331378299120235,0.938118811881188,0.8763796909492274,0.700374531835206,0.1541666666666666,0.4936386768447837,0.7117486338797814,0.632262996941896,0.5415244596131968,0.1147378832838773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0048150513436527,0.0070009537531199,0.0091633142346296,0.0111972174762021,0.0131770552234702,0.0152440578764364,0.0173153101645771,0.0193827375049836,0.0215168234535422,0.0237270416530009,0.0260724073864977,0.0281375935521013,0.0301438708149246,0.0322284464527044,0.0341609128870881,0.0362926607024519,0.0382684288055768,0.0401917059123184,0.042429102573449,0.0573426573426573,0.0717826441613854,0.0849442301241194,0.0976291563327588,0.1094869741168535,0.1251479790292575,0.1387225019878081,0.1509219163944717,0.1627154481963221,0.1737204988258505,0.1879637706913077,0.2000021638230425,0.2117223449041086,0.2240760596048226,0.2343791281373844,0.2456303685231366,0.2550247889588637,0.2644384424938105,0.2730811129771685,0.2818672070896163,0.2894188951605441,0.2964010944040409,0.3037498669630926,0.309619622496886,0.3157300231984745,0.3212124946090814,0.3270747653036989,0.3322788428555094,0.3372429846114056,0.3430688695789765,0.3436067072760767,0.3437852253044841,0.3442535286584765,0.3440659848616167,0.3444574753937738,0.3434031020808133,0.3429765806850031,0.3443893468194804,0.3458322646832521,0.346320037138878,0.3476539039039039,0.3470732576087387,0.3484028040129286,0.3491371602288984,0.3500264843260943,0.3501188392927103,0.3515040812831783,0.3542465581190671,0.3580342391113298,0.3610315186246418,0.3641597368180572,0.3650852878464818,0.3661998485995458,0.3637056805184903,0.3649017210570864,0.3632463353593135,0.3636224333435489,0.3680499597099114,0.3675824175824176,0.3648183556405354,0.0,1.9127917782654715,60.488727995966016,205.74882401049692,289.6840813416045,fqhc4_80Compliance_baseline,77 -100000,95758,42655,401.2301844232336,6744,69.25792100921072,5271,54.5228597088494,2103,21.66920779464901,77.3313489084019,79.69642939165442,63.31030609897547,65.06274007544337,77.0743487023268,79.43863056942244,63.21728846120429,64.9716150022915,0.2570002060751051,257.79882223197603,0.093017637771176,91.12507315187202,118.35164,82.88711374263315,123594.5195179515,86558.94415363013,283.36652,177.77288218285292,295397.3662774912,185126.01786049517,303.87977,145.52175624464306,313610.25710645586,149146.1364698494,3747.48172,1669.3241498226168,3881895.2776791495,1711677.0502961809,1242.98655,536.298208421907,1286431.306000543,548437.2568578158,2057.15904,843.1928384265937,2121792.2888949225,857224.9594792314,0.38083,100000,0,537962,5617.932705361432,0,0.0,0,0.0,23917,249.23244010944256,0,0.0,28097,289.7408049458009,1863395,0,66866,0,0,4584,0,0,49,0.5117065937049646,0,0.0,0,0.0,0,0.0,0.06744,0.1770868891631436,0.3118327402135231,0.02103,0.3284106891701828,0.6715893108298172,25.1580335055706,4.378657702840051,0.3297287042306963,0.2225384177575412,0.2251944602542212,0.2225384177575412,11.08577329755894,5.719276573553544,22.14120259969049,12775.497786266174,59.27573046338494,13.949971558763776,19.33056973419411,13.266560887355883,12.72862828307115,0.5509391007398976,0.7706734867860188,0.6766398158803222,0.586352148272957,0.1091219096334185,0.7264367816091954,0.8995215311004785,0.8366834170854272,0.7703703703703704,0.1415525114155251,0.4931921331316187,0.6993377483443709,0.6291044776119403,0.5321701199563795,0.1016771488469601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.004613808978168,0.0070134483633595,0.0092054460475513,0.0114346171844798,0.0137792669389251,0.0160495967207431,0.0181341066195615,0.0202518180609395,0.0224614376139459,0.024706678700361,0.0268454307289258,0.0289692504013501,0.0312789858806554,0.033370491938647,0.0355189279177739,0.037836270631847,0.0394620788411451,0.0413492022244166,0.0432015830859761,0.0579227557411273,0.071477152633176,0.0852197629287737,0.0980262258536021,0.1100743318045231,0.1251070850652029,0.1384656196943972,0.1508270404413722,0.1624472348383649,0.1734460670178864,0.1866971290628502,0.1998527309741413,0.2116389445266916,0.2229495276771347,0.2329626775294506,0.2433675901597543,0.2542378559463986,0.2638801332853026,0.2742480989672001,0.2831360506021611,0.2904484107692663,0.2977017011860299,0.3038670759312151,0.3104624214988172,0.3171016608870232,0.3237071943156024,0.3299145941342951,0.3359481452239357,0.3406953973050436,0.3450912548532791,0.3452658534941707,0.3450415497220846,0.3456127751256812,0.3451668833983528,0.3453101810626298,0.3439159105861473,0.3422691493061043,0.3418182414590543,0.3429020572756476,0.3445882038011957,0.3456753110478189,0.3479713698196773,0.3496154732717252,0.3500492302184032,0.3507006308084942,0.3512080449262113,0.3513976041072447,0.353457253763373,0.3560340864891623,0.3579757182353648,0.358996698459281,0.36208,0.363102009859689,0.3661369193154034,0.3659199550098416,0.3666862170087976,0.3674853096278439,0.3663228877429591,0.3667117726657645,0.3561178247734139,0.0,2.0529764198475706,57.681083997269845,199.7997746866777,298.7097643568139,fqhc4_80Compliance_baseline,78 -100000,95503,42858,404.36426080856097,6519,67.12878129482843,5148,53.453818204663726,2058,21.30823115504225,77.22623088476638,79.71407964146523,63.24095407219974,65.0764274848913,76.96802768832414,79.45158383381262,63.14669625268786,64.98238557554419,0.2582031964422384,262.4958076526127,0.0942578195118812,94.0419093471121,117.83288,82.5872720160566,123381.3388061108,86476.1023382057,279.90714,176.8928357559922,292651.48738783074,184786.49440959157,312.72374,150.5788826735661,324230.89327036845,155258.4448600725,3678.16209,1670.4933911271953,3820692.020145964,1718667.7894469353,1276.02804,563.8244968186332,1322899.092175115,577233.2920491084,2015.47564,839.1314698334085,2087328.3352355424,858618.215774477,0.38052,100000,0,535604,5608.2426730050365,0,0.0,0,0.0,23597,246.6205250096856,0,0.0,28873,299.1424353161681,1857951,0,66713,0,0,4793,0,0,53,0.5549563888045401,0,0.0,0,0.0,0,0.0,0.06519,0.1713181961526332,0.315692590888173,0.02058,0.3313367421475529,0.6686632578524471,24.733778824801043,4.4045630445651645,0.3339160839160839,0.2121212121212121,0.2294094794094794,0.2245532245532245,11.16241873953096,5.807519605431277,21.99144984212431,12704.279157779683,58.6454874978196,13.111327097820382,19.624436746114245,13.196598809185511,12.713124844699456,0.5672105672105672,0.7875457875457875,0.7271669575334497,0.563082133784928,0.1254325259515571,0.7410909090909091,0.9321608040201004,0.9,0.703971119133574,0.192,0.5038430956798303,0.7046109510086456,0.6658786446020488,0.5199115044247787,0.1070640176600441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205147692151,0.0046354996094819,0.0069141267488374,0.0092628368073207,0.0116977520768854,0.0137695561331091,0.0158164879233461,0.0178918112521202,0.0201438407316848,0.0223151164935144,0.0245935293151584,0.0268661320172732,0.028903876847037,0.0310656380213705,0.0333009588361712,0.035543453502578,0.0376651936681811,0.0396137374745332,0.0414839200325037,0.043687090172493,0.0583950009943583,0.0720003357148102,0.0853444377845778,0.0975265315585907,0.1098242684898502,0.1246502458877395,0.1379303012906381,0.1500005334300619,0.1619563704124142,0.1732368935795198,0.1870223239345395,0.1995748649762488,0.2110736828335023,0.2219201806403525,0.2319149170904998,0.2429384181167633,0.2531741858982247,0.2631845956122748,0.2718162791755767,0.2805348330081487,0.2880223616604229,0.2958684664188293,0.3027649222736442,0.3097172805077411,0.3155507875359633,0.3213941058570262,0.3271406304992709,0.3321997928944912,0.337815344603381,0.3424744644489487,0.3434829637641968,0.3432254858657244,0.3433455778468494,0.342783094676184,0.3428733267745878,0.3410296220005226,0.3400760141850739,0.3402174092341191,0.3419091127674922,0.3413517637554977,0.3420032370986562,0.343097148304075,0.3441760646355832,0.3444644060184145,0.3451534363474194,0.3459637561779242,0.3466003316749585,0.3495565445191427,0.3526384433712856,0.3553900087642418,0.3588006408789196,0.3610785463071512,0.3624913407645317,0.365056495032987,0.366316376825072,0.3676005157660297,0.3709998468840912,0.3697031729785056,0.366076369673492,0.3644752018454441,0.0,1.738096198923179,61.26921818855936,191.52008006434733,286.861535243094,fqhc4_80Compliance_baseline,79 -100000,95700,42380,399.7387669801463,6808,69.87460815047022,5268,54.36781609195402,2142,21.974921630094045,77.36399481233721,79.74782635792052,63.33329461681414,65.09686465044823,77.10168971845673,79.48842758627487,63.23663490951788,65.00482787718245,0.2623050938804852,259.3987716456496,0.0966597072962685,92.0367732657752,119.17246,83.4709519010263,124527.12643678162,87221.47534067533,282.11408,177.3546035448406,294133.5841170324,184667.04654633292,306.66715,147.57643916197878,315933.7617554859,150906.84659840606,3812.25081,1726.590287907758,3937213.072100314,1757839.4857970304,1308.8936,575.0376776620672,1352514.6394984326,585685.0445789623,2113.94954,874.9977541970527,2170288.3803552766,879002.2580465078,0.37742,100000,0,541693,5660.323928944618,0,0.0,0,0.0,23815,248.17136886102404,0,0.0,28399,292.3197492163009,1862109,0,66848,0,0,4811,0,0,50,0.522466039707419,0,0.0,0,0.0,0,0.0,0.06808,0.1803825976365852,0.3146298472385428,0.02142,0.331041257367387,0.668958742632613,24.99248503856161,4.511401020041036,0.3261199696279423,0.2190584662110858,0.2152619589977221,0.2395596051632498,11.144240543006156,5.651388770914979,22.658093872581105,12620.2595922662,59.71351879303588,13.696581130133929,19.56990616728385,12.689834651557604,13.757196844060488,0.5537205770690964,0.7720970537261699,0.6990686845168801,0.5934744268077602,0.1204437400950871,0.7343522561863173,0.9307692307692308,0.8738938053097345,0.75,0.1893939393939394,0.4899845916795069,0.6910994764397905,0.636650868878357,0.5450346420323325,0.1022044088176352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0046142768768951,0.0070657029156176,0.0091977153078439,0.0111622133132542,0.0132546814189946,0.0153515035293157,0.0178724621103803,0.0199134730447055,0.022046099181847,0.0241403710274527,0.0264974118807,0.0285540892212427,0.0302009273570324,0.0323755856915804,0.0342756110674552,0.0364320046407557,0.0384268147148861,0.0401663201663201,0.0421871906811006,0.057107049608355,0.0704446491374979,0.084019682932715,0.0968657972233908,0.1083596879612059,0.1237588689978957,0.1369758415169576,0.1490079259535081,0.1608267674503021,0.1713220004716071,0.1848168835222075,0.1976503932237859,0.2096042801683358,0.220316925667917,0.2301785498190299,0.2411257999512832,0.2513497233624844,0.2608099141954275,0.2699412258606213,0.2785868022164217,0.2872459778623393,0.2938741625059925,0.3008913457782407,0.3080113146035094,0.3142225515323041,0.3202265870328182,0.3259205523313988,0.3313759135684779,0.3364152431691516,0.3417464729361242,0.342016829314192,0.3420803165400415,0.3420626995400908,0.3415507187806708,0.3416384884617666,0.3406439000549819,0.3387315718028854,0.3393061504757545,0.3389461139014216,0.3392147427328949,0.3397760047945462,0.3412629415948787,0.3424132660538933,0.3425697773397249,0.3434396864706306,0.3448149601150778,0.3473970251716247,0.3500251952632905,0.3534488832523075,0.3567221205126164,0.3599325525224445,0.3630329740349386,0.3645582456585118,0.3615662743287945,0.3589352161053334,0.3618967384763509,0.3644903710662283,0.3683991683991684,0.3686596769623123,0.3705021747726374,0.0,2.684753085837057,60.13904815834677,201.17441759795653,289.0371829615394,fqhc4_80Compliance_baseline,80 -100000,95682,42474,400.6187161639598,6734,69.28157856232102,5167,53.55239229949207,2060,21.23701427645743,77.31725194233033,79.72566382630505,63.30264576078415,65.08491696414312,77.06307598024974,79.46990116596042,63.20822239565524,64.99220746360582,0.2541759620805948,255.76266034462947,0.094423365128911,92.7095005372962,117.34932,82.17121965827549,122645.13701636672,85879.4963088935,278.04441,174.81430183981098,290140.7683785874,182252.0242467873,298.18201,142.37219314589146,309117.4515582868,146779.4303052423,3725.3912,1682.9405368506357,3864850.87059217,1730227.1554217462,1249.31535,547.2063575168921,1293784.295896825,559990.0686826067,2030.21622,855.2402664727165,2095235.8437323635,870319.8103840277,0.37965,100000,0,533406,5574.778955289396,0,0.0,0,0.0,23471,244.85274137246296,0,0.0,27581,285.69636922305136,1872297,0,67185,0,0,4600,0,0,54,0.5643694738822349,0,0.0,0,0.0,0,0.0,0.06734,0.1773738970104043,0.3059103059103059,0.0206,0.3259417199715707,0.6740582800284293,25.068674038576575,4.549320115497188,0.3305593187536288,0.2161796013160441,0.2214050706406038,0.2318560092897232,11.022576942571993,5.389772571730756,22.139362435998738,12732.752851125812,58.41814279933077,13.208157351134972,19.064848340568084,12.825444074244515,13.319693033383189,0.546738920069673,0.7699194270367055,0.680327868852459,0.5743006993006993,0.1218697829716193,0.6815728604471858,0.9086021505376344,0.8245614035087719,0.6872586872586872,0.146067415730337,0.5015503875968992,0.7006711409395974,0.6363636363636364,0.5412429378531074,0.1149301825993555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0049079754601227,0.0069821488374925,0.0089625948846142,0.0111919418019026,0.0134766221860038,0.0157815273498867,0.0180818895063746,0.020011867978965,0.0220885797125206,0.0242125782291987,0.026470195340999,0.0284211393160809,0.0305379714209126,0.0325019364833462,0.0344328104953855,0.0364987716261182,0.0384958876796544,0.0405543186499927,0.0424363090522453,0.057325838940198,0.0709865231368524,0.0847242342172114,0.0968247622254019,0.108568836566558,0.123868987777131,0.1369000870285071,0.1501975442744108,0.1624971948235143,0.1734265884296456,0.1870684919703154,0.200090920898818,0.2129782788490837,0.2241971849484491,0.2347537805777978,0.2456470901171489,0.2558308224528512,0.2646764378353449,0.2737503687064643,0.2819485159399047,0.2893019164892139,0.2971243389957415,0.304405495026054,0.3108670367750213,0.3172700527608257,0.3229937814628368,0.3282267762300832,0.3333503042028358,0.3378971774977008,0.3424361156185274,0.3426914121906249,0.3427541912502923,0.3435802156349407,0.3427853294234908,0.3423774725029395,0.3415525394583307,0.3402882374391578,0.3416783101832826,0.3420652415372259,0.3419666922513967,0.3428442878032319,0.3444035899260665,0.3464227966653367,0.345878979322087,0.3466505733252866,0.3494404351009308,0.3497359783074069,0.3536796400591511,0.3565804274465692,0.3606986899563318,0.3628560993425858,0.3662728820774797,0.366822429906542,0.3688674919761577,0.3708995206316383,0.3718403023860146,0.3713977500385267,0.3744646135019376,0.3768666847678523,0.3692191053828658,0.0,1.7851767099825964,57.564541182075,198.803688450394,289.6526096230629,fqhc4_80Compliance_baseline,81 -100000,95838,42588,402.0012938500386,6838,69.89920490828273,5342,54.967758091779885,2129,21.76589661720821,77.4717338221379,79.75796968094927,63.40399372213196,65.09062047338838,77.2060251090644,79.4947278450205,63.30510420145961,64.99529843822566,0.2657087130735078,263.24183592876693,0.0988895206723441,95.32203516272376,118.1147,82.70596887135942,123244.1202863165,86297.67823969554,278.92516,174.83417628153595,290289.0189695111,181677.62920922384,305.93197,147.11256999573894,314252.1233748618,149647.80400832696,3836.58998,1743.1951019404078,3953227.665435422,1768921.9849542012,1307.23926,575.5725494293592,1346261.0655481124,582819.935129447,2099.9781,887.4132160783777,2150550.0532148,892431.7698381232,0.38021,100000,0,536885,5602.005467559841,0,0.0,0,0.0,23505,244.46461737515392,0,0.0,28307,290.30238527515183,1873678,0,67173,0,0,4696,0,0,57,0.5947536467789395,0,0.0,0,0.0,0,0.0,0.06838,0.1798479787485863,0.3113483474700205,0.02129,0.3140644447517632,0.6859355552482368,25.145132659500696,4.468805750863031,0.3328341445151628,0.2104080868588543,0.2244477723698989,0.2323099962560838,11.305733441939676,5.802139094454776,22.7785944428343,12738.538521558125,60.22310395986548,13.296435588556994,19.91275861424326,13.368210554913254,13.645699202151988,0.55672032946462,0.7820284697508897,0.6979752530933633,0.5921601334445371,0.1160354552780016,0.7259475218658892,0.9354005167958656,0.8807339449541285,0.7294520547945206,0.1439688715953307,0.4982367758186398,0.7014925373134329,0.6385991058122206,0.5479603087100331,0.1087398373983739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022876809393663,0.0044878483654303,0.0066519296680119,0.0086987413723101,0.0108832615234533,0.0129518654552484,0.0150965691467688,0.0171870378114831,0.0196168535424708,0.021557719054242,0.0235868863876115,0.0255881689331938,0.0275823103395141,0.0296323733679044,0.0317695931389223,0.0339322593969434,0.0360175846909749,0.0379939682243571,0.0397582730227294,0.0415747408733297,0.0563381750310209,0.070342881037006,0.084169932722738,0.0966535329655897,0.1088017369491668,0.1244132448090667,0.1374856852016796,0.1502063741968426,0.162366153879002,0.1731399909973635,0.1874219792518617,0.200758722061303,0.2122923227277663,0.2241352956590095,0.2347333274756172,0.2458570559946934,0.2555538225005013,0.265448460208001,0.2744318310561258,0.2824085194971575,0.2900311886334758,0.2979830991176058,0.3050304806011058,0.3115330772820273,0.3173256632442535,0.3237130157479345,0.3290587073631057,0.3335959639603004,0.3385972400056907,0.3421080368906455,0.3421682856604687,0.3422299106223485,0.3432632289265028,0.3430552752227444,0.3433977933325424,0.3423545951893395,0.3419378266155133,0.3426316995710964,0.3435908789019261,0.3443314005193696,0.3460683393427616,0.3473609551391926,0.3491927567409511,0.3503833467058928,0.3508095420578654,0.3516791771642295,0.3519363154763591,0.3546916471506635,0.3593516815326415,0.3605765454402639,0.3648849461881389,0.3688489968321014,0.3732412060301507,0.3706106870229008,0.3722980659840728,0.3739234449760765,0.3720397249809014,0.3710361543122601,0.3734610123119015,0.3742846241892407,0.0,3.056594271536373,59.350146740613766,202.74793870678525,295.8471084968968,fqhc4_80Compliance_baseline,82 -100000,95737,42631,402.44628513531865,6802,69.76404107085035,5253,54.25279672435945,2109,21.600843978816968,77.34438518034166,79.69594313308711,63.33412346583962,65.07184403405792,77.08422270516837,79.4392823219176,63.23802931011044,64.97975655844671,0.2601624751732885,256.66081116951034,0.0960941557291761,92.08747561120845,118.92848,83.26878243139774,124224.15576005095,86976.59466183162,281.06477,176.8435976822113,292979.0885446588,184118.65797399933,303.97379,146.29307188656549,313539.64506930445,149717.2787753793,3788.76473,1711.389299129175,3915662.982963745,1745914.0025475698,1271.28217,557.8747180743849,1316029.9675151715,570919.5415272586,2077.04258,865.3901577067403,2130560.786320858,871302.9237146734,0.37983,100000,0,540584,5646.552534547772,0,0.0,0,0.0,23803,247.98144917847856,0,0.0,28097,289.6267900602693,1862538,0,66833,0,0,4731,0,0,42,0.428256577916584,0,0.0,0,0.0,0,0.0,0.06802,0.1790801147881947,0.3100558659217877,0.02109,0.3230530911139276,0.6769469088860723,25.13435207389782,4.457757290269419,0.3306681896059394,0.2149248048734056,0.2236817056919855,0.2307252998286693,11.324713677281704,5.81022368874619,22.40603520589414,12706.264108380808,58.98800870398936,13.168699333949643,19.461200268341745,12.973694551988736,13.384414549709245,0.5537787930706263,0.7732506643046945,0.7000575705238917,0.5702127659574469,0.1237623762376237,0.7295401402961809,0.8997134670487106,0.8917647058823529,0.7674418604651163,0.1792828685258964,0.4969773299748111,0.7166666666666667,0.6379573170731707,0.514721919302072,0.109261186264308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0045522289700201,0.0068081047900242,0.009049084427653,0.0111027512861703,0.0132033023525699,0.0151851776360041,0.0175315067095259,0.0196891826996761,0.021590095160135,0.0235060250840232,0.0256694481222608,0.0277917724837804,0.0298552038063067,0.031906662952991,0.0338951523731773,0.0357930256389024,0.0378002240013274,0.0397630430263978,0.0419565851422857,0.0567834212037375,0.070798405073624,0.0849084310558224,0.0974686339878216,0.109548014257693,0.1246549992068947,0.1381054909156475,0.1505128096008171,0.1626580656185919,0.1742048219894726,0.1873270822792305,0.2000064902051986,0.2121531703922762,0.2234853039229617,0.2342241284504564,0.244727840324134,0.2547172969414285,0.2641925326135852,0.2732626084983264,0.2808556443670842,0.2889786190299889,0.2968393461038885,0.3038362747535007,0.3096035030891968,0.3155873667837309,0.3208301458431014,0.3265014478582979,0.3324452149968767,0.337789649762056,0.3429798480343574,0.3433431274766154,0.3433012542508226,0.3425965090375885,0.3429720385933951,0.3435676866293606,0.3433805239075024,0.3427831776888381,0.3434087620049993,0.3442572426546127,0.3450490090863561,0.3447065668224386,0.3455448679887583,0.3463669563027327,0.3458363244795405,0.3464464246902847,0.3457587243497582,0.3467801839894863,0.3493306390502652,0.3520084566596194,0.3522228430042302,0.3539774542467254,0.3577335538601078,0.3586585827965138,0.3594781157551392,0.3634566506636543,0.3696396928529238,0.3708812260536398,0.3786067600989283,0.3862433862433862,0.3911684251660805,0.0,2.358570661070132,55.95482298945981,198.09468117822493,303.24091208012726,fqhc4_80Compliance_baseline,83 -100000,95676,42497,400.1630502947448,6687,68.54383544462561,5241,54.24557882854634,2100,21.60416405368117,77.28108161739658,79.66897717633387,63.29287913429015,65.05605561102597,77.02309881030139,79.40845951006185,63.19772543519024,64.96184655529969,0.257982807095189,260.5176662720225,0.0951536990999173,94.20905572628158,117.45756,82.31363875540963,122765.73017266608,86033.52121473478,279.64391,175.4370428390894,291696.12023914047,182792.09572481396,307.38347,147.8085011051987,317417.81638028345,151572.00259314696,3781.45998,1706.5963830099631,3917878.558886241,1750160.7037411253,1279.78102,559.5109249036695,1319350.8403361344,567197.7282221966,2061.54488,857.9263844515945,2122652.619256658,870936.5401108855,0.37891,100000,0,533898,5580.260462393912,0,0.0,0,0.0,23564,245.68334796605208,0,0.0,28362,292.6648271248798,1866653,0,67026,0,0,4753,0,0,57,0.5957606923366361,0,0.0,1,0.0104519419708181,0,0.0,0.06687,0.1764799028793117,0.3140421713772992,0.021,0.3261948659764572,0.6738051340235428,25.06243888277156,4.477028474141959,0.3257012020606754,0.2156077084525854,0.2302995611524518,0.2283915283342873,11.274490641983313,5.768505386070279,22.378389782464318,12749.07591517522,59.33565095946635,13.343026259386075,19.446555886536828,13.480185407810168,13.065883405733285,0.5531387139858805,0.7628318584070797,0.6977152899824253,0.5766362883181442,0.12531328320802,0.7265336289726534,0.9088471849865952,0.8640350877192983,0.6986754966887417,0.1756756756756756,0.492798353909465,0.6908850726552179,0.6370903277378097,0.5359116022099447,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387681709973,0.0043593304879408,0.0065559130072967,0.0087980412674868,0.0108414864837377,0.0131868355667793,0.0154475192201806,0.0175501286396863,0.0198415537950421,0.021873304742116,0.024105156309276,0.0261612386545648,0.0284245166598107,0.0305802835476425,0.0326752190560721,0.0348332264935172,0.0366687383467992,0.0387126236364957,0.0407647419827953,0.0432018343842826,0.0580541365008723,0.0720164178166816,0.0854587820391712,0.0981345285817998,0.111107594268954,0.1266000888644394,0.1397758152173913,0.1519463230203951,0.1637551317139924,0.1757051288933744,0.1893212259776114,0.2020632185776361,0.2132573942588317,0.2241215054587663,0.2348903066565292,0.2459127309833847,0.2561534506270819,0.2655167363309636,0.274354690217206,0.2825648084423033,0.2894925940520618,0.296900642378206,0.3044473706063086,0.3108054537810079,0.3169559185064382,0.3223445483942633,0.3273237882701035,0.3318964417803851,0.33722303708415,0.341888260909849,0.3417167555885729,0.3419327232321559,0.342161856253537,0.3420193549323158,0.3430695064252772,0.3424868156029459,0.3416625629457832,0.341718317288672,0.3422624154854652,0.3431233760415733,0.3443175188663266,0.3454820355707635,0.3466579430573436,0.3472209710836861,0.3476745030627315,0.3489084341133972,0.3489771359807461,0.3521095578467961,0.3523822929129425,0.3551349846924576,0.3572177879133409,0.3589648011076202,0.3603614990836125,0.3614549320373604,0.3645070422535211,0.3672488571093658,0.3670131458269642,0.3686746987951807,0.3751354279523293,0.3711538461538461,0.0,1.8683558298974448,59.84280536140727,198.1033294356569,293.19346279310867,fqhc4_80Compliance_baseline,84 -100000,95725,42853,404.4398015147559,6756,69.41760250718204,5315,54.92817968137896,2132,21.927396186993995,77.3612597271838,79.72849230386034,63.34108899169471,65.08995429228496,77.1006926771601,79.46690890847185,63.24555261928651,64.99612425083399,0.2605670500237096,261.5833953884845,0.0955363724082047,93.83004145097118,118.60794,83.07984741905084,123904.87333507444,86790.1252745373,282.1226,177.35546946628702,294153.80517106294,184707.8605027809,309.80553,148.65719074914713,319980.01566988765,152396.7474716238,3821.16036,1726.8380544616664,3955078.8717680858,1767225.849529032,1279.36434,557.3145706565884,1321658.8769913814,567362.9570713905,2089.15578,866.0193431819798,2150748.143118308,877686.0923921994,0.38182,100000,0,539127,5632.039697048838,0,0.0,0,0.0,23797,247.99164272656049,0,0.0,28754,296.68320710368243,1865598,0,66922,0,0,4774,0,0,44,0.4596500391747192,0,0.0,1,0.0104465917994254,0,0.0,0.06756,0.1769420145618354,0.3155713439905269,0.02132,0.3321116436425148,0.6678883563574852,24.87162145235385,4.402474496572007,0.3149576669802446,0.2289746001881467,0.2270931326434619,0.2289746001881467,11.04585727166418,5.674618049730942,22.612443098989036,12765.26316778842,60.27847015417734,14.496932038960544,18.97650745586962,13.55846763587032,13.246563023476885,0.5548447789275635,0.7896466721446179,0.7025089605734767,0.5550952775476388,0.1166803615447822,0.7329013678905687,0.9282296650717704,0.8654292343387471,0.7384105960264901,0.1428571428571428,0.4918492103922567,0.7171464330413017,0.6460176991150443,0.4939226519337016,0.1103166496424923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487616616525,0.0045522751236921,0.0066164681049704,0.0089605916835143,0.011207159564731,0.0135129630761084,0.0155405543205596,0.017480982284168,0.0198247569192389,0.0221027846027846,0.0240739031917402,0.0260463205463975,0.0279540475774187,0.0302349778002122,0.032041359668132,0.0340332268502724,0.03632748586459,0.0385924496191602,0.0406359505464225,0.0424372505912874,0.0574053771861132,0.0712132629992464,0.0848883434553216,0.0977615157345782,0.1101707419898819,0.1256421640134458,0.1388352808941106,0.1520913356670887,0.163214953271028,0.1746708974743793,0.1882442879600318,0.2014279532669839,0.2136854350354964,0.2249185632146214,0.2349461833613685,0.2449176082602007,0.2552010167904208,0.2652980965864401,0.2741430903155604,0.2825114160477013,0.2901092548702237,0.2982564797718933,0.30450363081581,0.3109410736310187,0.3171344022121425,0.323058756964859,0.3297016342645809,0.3349476922294678,0.3400046604354918,0.3444589618719563,0.3452597288966065,0.3445018835757692,0.3440012390352421,0.3450035415371716,0.3448973218932623,0.3435899794560451,0.3418980784767215,0.3421316295189133,0.3429928578751324,0.3436282394995532,0.344696898628492,0.3463217204983731,0.3469649502743844,0.3476700901466565,0.3478470747248504,0.3485933034426702,0.3501907575801038,0.3527921193500364,0.3552204012432891,0.357479434549956,0.3612354930092296,0.3616874502520562,0.361516218254966,0.3614256402462193,0.3625714553462655,0.3633345191509546,0.3635525507068223,0.3651639344262295,0.36980491942324,0.3743402354851807,0.0,2.3038125359895223,61.04490034093945,199.77191770642835,296.8736291947721,fqhc4_80Compliance_baseline,85 -100000,95648,42808,402.6639344262295,6797,69.75577116092339,5335,55.16058882569421,2197,22.561893609902977,77.2430810454354,79.64808632354475,63.27207635196621,65.05030455490898,76.97053279876786,79.374411538443,63.17029836561474,64.95057950218244,0.2725482466675402,273.6747851017469,0.1017779863514718,99.72505272654077,117.27694,82.25480400279706,122613.06038808968,85997.41134451014,282.36467,177.45770569173382,294614.40908330545,184935.0735878168,311.2324,149.42553448258516,321282.1700401472,153061.8540319117,3859.05152,1764.3897423534977,3992819.233021077,1803280.5277583983,1289.42225,576.1888606078963,1328969.0531950484,583616.6858336462,2161.27884,915.8608899265926,2221469.534125125,926366.951003182,0.38131,100000,0,533077,5573.320926731349,0,0.0,0,0.0,23773,247.90899966543995,0,0.0,28811,297.07887253261964,1864193,0,66887,0,0,4668,0,0,51,0.5332050853128136,0,0.0,0,0.0,0,0.0,0.06797,0.1782539141381028,0.3232308371340297,0.02197,0.3242827151854444,0.6757172848145556,24.99527820299876,4.506060218565464,0.3270852858481724,0.2084348641049672,0.2314901593252108,0.2329896907216495,11.395393678608594,5.948903714728007,23.61896012192109,12845.175511485468,60.77599600332056,13.182656262463595,19.79634721501224,13.858810255587848,13.938182270256892,0.5501405810684161,0.7769784172661871,0.7025787965616046,0.562753036437247,0.1206757843925985,0.7005689900426743,0.9222222222222224,0.8596881959910914,0.7364864864864865,0.1627906976744186,0.4963094935097989,0.7074468085106383,0.6481481481481481,0.5079872204472844,0.1072186836518046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025741851791795,0.0047876980504331,0.0072180542724587,0.0092969853381968,0.0118092215678496,0.0142064259891033,0.0162834565383634,0.0186039862767521,0.0210037630890052,0.0230507710897659,0.0252279230035585,0.0274192057672756,0.0294943386912658,0.0316163593283197,0.0339787787457165,0.0357977458380725,0.0378822408220767,0.0400332139706264,0.042094861660079,0.0440670544817664,0.0593226537926998,0.0732167172933905,0.0870149504451537,0.0997421188358507,0.1116729833303421,0.1274575194537081,0.1404621513944223,0.1527577860943181,0.1644087747458534,0.1753149805050429,0.1897028036172922,0.2032049614016827,0.2158419940301109,0.2262142090389291,0.2358920086869288,0.2469511180158686,0.2565671024233139,0.2665080778813741,0.2755895663247902,0.2834447872816324,0.2917608597363753,0.2992034672601616,0.3057599563944877,0.3117805917301806,0.3179737527695941,0.3236762125966742,0.3292725767194439,0.3338907327035997,0.3391949675725556,0.3424029672804345,0.3434436191762323,0.3428938001821041,0.3436625293335972,0.3436511850541034,0.3439948657482724,0.3434467699026588,0.342592150686457,0.3434781891102345,0.3448317307692308,0.3459825437304694,0.3467426802333264,0.3478104881305934,0.3495065789473684,0.3501339396258695,0.3513055683275657,0.3524924371958437,0.3513388868071369,0.355315772770549,0.3587187854710556,0.3608525726258109,0.3620418363569048,0.3646691433801755,0.3641928079571538,0.3687413341549838,0.3706962509563887,0.3694298035457594,0.369640062597809,0.3711574169589436,0.3806218767351471,0.3701550387596899,0.0,2.4029731060732678,62.00948502491177,198.51403719611884,300.98153072832207,fqhc4_80Compliance_baseline,86 -100000,95825,43070,406.010957474563,6863,70.53482911557526,5360,55.43438559874772,2206,22.78111140099139,77.44904619750217,79.77722002667197,63.38601454967061,65.1077097628836,77.17648851966902,79.50020887403265,63.28667429501748,65.00867448314234,0.2725576778331486,277.011152639318,0.0993402546531356,99.03527974125836,118.95554,83.22620914969784,124138.31463605532,86852.2923555417,284.66257,178.99785823879873,296592.64283850766,186324.22461653923,305.16832,146.33100522961436,315353.8012001044,150313.98902975456,3886.4469,1744.208153709197,4022542.5723976,1787371.4577994344,1282.74875,559.1576454459778,1325557.4849986956,570595.6483480149,2167.18066,901.6148005557862,2239439.833028959,920683.8333381102,0.38367,100000,0,540707,5642.650665275241,0,0.0,0,0.0,23996,249.9139055570049,0,0.0,28159,290.6444038612053,1867000,0,66950,0,0,4697,0,0,57,0.5948343334202973,0,0.0,0,0.0,0,0.0,0.06863,0.1788776813407355,0.3214337753169168,0.02206,0.3113780723557028,0.6886219276442972,25.08046785871321,4.488681562311022,0.3158582089552239,0.2136194029850746,0.2348880597014925,0.2356343283582089,10.9719614551837,5.475553927926543,23.47453036154052,12854.057350316469,60.16143856466033,13.463949449580973,18.993086070824905,13.95553141770089,13.74887162655356,0.5330223880597015,0.7580786026200873,0.6739515652687537,0.5647339158061954,0.1084718923198733,0.7083641746854182,0.9137466307277629,0.841726618705036,0.7348242811501597,0.148,0.4739336492890995,0.6834625322997416,0.6191222570532915,0.5084566596194503,0.0987166831194471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026027161419037,0.0048655388077402,0.0071332176595334,0.0094777582511351,0.0116843100765734,0.0140205471780721,0.0161597830408939,0.0182488084181304,0.0203883495145631,0.0227256448823812,0.0246861710303837,0.0264675697865353,0.0284745065789473,0.0305579293090489,0.032569796103588,0.0346302456763848,0.0368143241564893,0.0390079011219178,0.0409446037484935,0.0426816572975223,0.057757703461081,0.072297848315664,0.0862110525378077,0.0991038315665612,0.1115196982308997,0.126886333854673,0.1401026097648879,0.1527532594593444,0.164287543208296,0.1750942345583826,0.1891110083554676,0.2017197982045825,0.2144826837476929,0.2258279229636095,0.2361516675082881,0.2466954022988505,0.2569936300057909,0.2668634537251116,0.2756239741920878,0.2842568262310065,0.291928333949021,0.2991924755525474,0.3056142380002596,0.3122669025533136,0.3185553266270755,0.3244854803412919,0.3305251859617593,0.3359388879019364,0.3416171531903901,0.3459549097800766,0.3467773345689458,0.3467560292259518,0.3468205654515036,0.3463280911845333,0.3464411703672961,0.3463459335624284,0.3449712076989824,0.3463854435972118,0.347200952867109,0.347609561752988,0.3488932474082376,0.3510036837854343,0.3517317828160294,0.352423104434907,0.3526498028277388,0.3518104255540527,0.3527870346634766,0.3547504481554863,0.3545044409981672,0.3591037304834929,0.3605890154113504,0.3624993318723609,0.3616994292961319,0.3648183556405354,0.3647125674779808,0.3663660099691431,0.3663290362185389,0.3728571428571428,0.3781163434903047,0.3820826952526799,0.0,1.991641917520904,59.64614427731181,199.3195157337192,303.57534945041107,fqhc4_80Compliance_baseline,87 -100000,95814,42617,401.1209217859603,6737,68.93564614774459,5269,54.48055607739997,2131,21.823533095372284,77.3497797498425,79.68199791780377,63.33168066437421,65.05952855673442,77.08772366534741,79.42252057736668,63.23454711125965,64.96616545007275,0.2620560844950859,259.4773404370869,0.0971335531145598,93.3631066616698,118.57516,83.01771240925945,123755.56807982131,86644.65778410195,279.89902,175.9853813379899,291635.9926524307,183182.49038552816,303.48263,145.8008798680563,314135.1472644916,150051.3657089602,3793.08284,1712.6650153930382,3922684.492871605,1751375.6814171618,1276.54818,558.5852285448109,1318772.475838604,569442.5747227033,2093.11712,870.5050015908273,2146276.3896716554,876577.8855282746,0.37985,100000,0,538978,5625.253094537333,0,0.0,0,0.0,23615,245.94526895860733,0,0.0,28030,289.8845680172,1864953,0,66933,0,0,4631,0,0,55,0.5740288475588119,0,0.0,0,0.0,0,0.0,0.06737,0.1773594840068448,0.3163128989164316,0.02131,0.3237664357415524,0.6762335642584476,24.947209572545088,4.455385382658649,0.3374454355665212,0.2106661605617764,0.2176883659138356,0.2342000379578667,11.043679553799588,5.651906043643028,22.62091085417101,12716.008403537748,59.53226664866725,13.094447581590613,20.20411987213024,12.838911333156265,13.394787861790116,0.5420383374454356,0.7594594594594595,0.6901012373453318,0.5588491717523976,0.1175040518638573,0.7228739002932552,0.9191374663072776,0.8495762711864406,0.7282229965156795,0.1495726495726495,0.4788732394366197,0.6792963464140731,0.6324655436447167,0.5023255813953489,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022286605749944,0.0044815314264856,0.0065053687052185,0.0088490180739416,0.0109551418980775,0.0133801741255536,0.0156912724306688,0.0178638873860539,0.0200742050553471,0.0222520189561817,0.0243257373066396,0.0266138223486287,0.0288011680873597,0.0307685970837795,0.0326277568030368,0.0345946392775217,0.0366133907498654,0.038720451410138,0.0406990638280186,0.0427607604689419,0.0569315194257814,0.0713240061066148,0.084762284085192,0.0974010278183557,0.1098321949574163,0.125604017975152,0.1387427334832605,0.1504859019255127,0.1626073580310216,0.1733944068396606,0.1871982758620689,0.1993484213830351,0.2118832129492646,0.2220533732740054,0.2321131905249144,0.2427308186693852,0.2529324449503912,0.2627949877393084,0.2721031309222546,0.280482777574203,0.2883520755240872,0.2966497105770917,0.3037248266559386,0.3100094620977111,0.3157313193618106,0.3212350362086802,0.3271606481944583,0.3322011042414065,0.3374851105702004,0.3425976049327295,0.3430735639000458,0.3433148592384261,0.3430377781854616,0.3432688683348314,0.343243565300286,0.3423286514697981,0.3421616389228303,0.3435556579250436,0.3439212328767123,0.3447281713344316,0.3457209957726632,0.3466510687234801,0.3483219221237451,0.3480792921939747,0.3490259349338984,0.3487139313226269,0.3492384918145,0.3531704863403439,0.3561821366024518,0.3580685949107002,0.3597907664316579,0.3625079567154678,0.365267947421638,0.3661290322580645,0.3661785545583372,0.3700367429180988,0.3724646588813767,0.3745961227786752,0.3726725082146769,0.376800311405216,0.0,2.0256099464422026,60.30711237530412,195.98365479727187,296.16800518235084,fqhc4_80Compliance_baseline,88 -100000,95803,42804,403.1293383296974,6760,69.40283707190798,5269,54.44505913175997,2070,21.241506007118776,77.41775944651599,79.74606568930463,63.37436231324406,65.09522673376509,77.16053157772829,79.48926805735589,63.27964471415969,65.00320635941715,0.2572278687876945,256.79763194874283,0.094717599084376,92.02037434793908,119.66966,83.81847752337003,124912.22613070572,87490.45178477712,280.02633,176.19647043168305,291719.3094161978,183340.8039744925,307.46795,147.59157735576412,317535.3798941578,151358.94499216756,3755.72703,1698.2847292555296,3879585.169566715,1732009.101234334,1238.27677,544.7847511932241,1275508.480945273,551692.2469898764,2031.49314,851.2900583855442,2085823.679843011,858600.4433107593,0.38036,100000,0,543953,5677.828460486624,0,0.0,0,0.0,23619,245.95263196350845,0,0.0,28512,294.24965815266745,1863402,0,66899,0,0,4743,0,0,47,0.4801519785392942,0,0.0,0,0.0,0,0.0,0.0676,0.1777263644967925,0.3062130177514793,0.0207,0.3078775857183338,0.6921224142816662,25.18323739383424,4.408177508471455,0.3296640728791042,0.2258493072689315,0.2218637312583032,0.222622888593661,11.114035151123204,5.628955056846225,22.14533653696326,12748.361522015894,59.68073323325446,14.21787871133582,19.644823583798843,12.952552288942522,12.865478649177277,0.5547542228126779,0.7747899159663866,0.690846286701209,0.5688622754491018,0.1159420289855072,0.7218543046357616,0.9154589371980676,0.851508120649652,0.7481203007518797,0.1451612903225806,0.4966751918158568,0.6997422680412371,0.6378254211332313,0.5160575858250277,0.1081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390273291548,0.0043992580053318,0.006727481202626,0.0092421441774491,0.0115512893516635,0.0135388248707194,0.0157782081337274,0.0178717236874336,0.0202477564954312,0.0226491177795062,0.0249589995899959,0.0270589322192225,0.0289776114800271,0.0308230812786328,0.032778940639081,0.0348282344192195,0.0367177555392273,0.0389077224520262,0.0408252306158065,0.0426838790276404,0.0574376845466022,0.0720184828970477,0.0851808757088797,0.0979473496228754,0.1104136165910072,0.1267563969826948,0.1395127118644067,0.1521720640455889,0.1638408433722084,0.1751282902842205,0.1889653688965369,0.201776087637609,0.2130517400510342,0.2240468183604839,0.2351668149710531,0.2457770550559187,0.2561167277875001,0.264695312324521,0.2732782057091074,0.2817821080197148,0.2884768670940911,0.2959533927987671,0.3033449082276238,0.308821065230401,0.3152038055019598,0.3211805555555556,0.3266517539145974,0.3310919883568696,0.3362392322218485,0.3415360295086286,0.3415499583344534,0.341460396039604,0.3414036766982911,0.3410764299945139,0.3408139016783009,0.3396784073506891,0.3396886174488149,0.3409661281062905,0.3420850737362543,0.3440547720505643,0.3459457435455788,0.3472359036999093,0.3490126423571205,0.3495708393713075,0.3517004184905479,0.3536353452991898,0.3550619393421614,0.3576319095477387,0.3596257621417058,0.3618176055780049,0.3635991634082022,0.365629645359949,0.3689711623221257,0.3715415019762846,0.3742789598108747,0.3772476624310716,0.3769698860976751,0.3748463744367062,0.3781928041746772,0.3760650658404337,0.0,2.111799783903462,59.9627371941037,203.60801939613785,288.6674951308762,fqhc4_80Compliance_baseline,89 -100000,95723,42711,403.2886558089488,6746,69.42949970226591,5234,54.10402933464267,2127,21.82338622901497,77.3893283971574,79.75128406182125,63.35181630130408,65.09397386065474,77.12055628951705,79.48239923582742,63.25352684913136,64.99854314646569,0.2687721076403448,268.8848259938368,0.0982894521727217,95.43071418904958,118.00404,82.61297275180122,123276.57929651182,86304.20353708223,279.36429,175.2094994513324,291281.3743823323,182472.84294404936,298.20063,142.72995423663755,308188.7947515226,146512.8378348187,3811.23503,1706.8985831372154,3939969.2968252143,1741608.9791766,1254.87936,546.7538021349517,1299027.4228764246,559262.1022481036,2095.22052,871.5901736983143,2151841.45921043,879412.489698309,0.38153,100000,0,536382,5603.480877114173,0,0.0,0,0.0,23612,246.07461111749527,0,0.0,27541,284.43529768185283,1871681,0,67134,0,0,4573,0,0,49,0.5014468831942166,0,0.0,0,0.0,0,0.0,0.06746,0.1768144051581789,0.3152979543433145,0.02127,0.3157301788480495,0.6842698211519505,25.06303752588113,4.489208381139495,0.3171570500573175,0.2130301872372946,0.2309896828429499,0.2388230798624379,11.143930680364472,5.6782492769682245,22.66502197777763,12755.074710204628,58.73536611529024,13.032238840145668,18.57096605102062,13.377655191036702,13.754506033087244,0.542223920519679,0.7713004484304933,0.6819277108433734,0.5847808105872622,0.1112,0.7037319116527038,0.926027397260274,0.8595238095238096,0.68,0.150197628458498,0.4881407804131599,0.696,0.6217741935483871,0.556745182012848,0.1013039117352056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0047432272188269,0.0068064473590781,0.0088949361818791,0.0110406246187629,0.0130895914337479,0.0152250122289254,0.017550662231383,0.0196082438411313,0.0216005484554226,0.0236192232810738,0.0254545081462633,0.0277949034114262,0.0297889861039629,0.0320318462141369,0.0340922008535967,0.0361328529423945,0.0382357212505964,0.0400715154413064,0.0419831025825337,0.0563056712926704,0.0697968879168716,0.0833543108873505,0.0957563140075284,0.1082497048406139,0.1241103626230687,0.1372565658279944,0.1491941493325385,0.1617403565744074,0.1737699293426399,0.1874064582817395,0.2003569303985722,0.2121521739130434,0.2234103035073908,0.2337700914221591,0.2447302251907974,0.2556081337470146,0.2658973839890231,0.2755474866674231,0.2839387378718627,0.2917943676632163,0.2988950599239988,0.3062669977533404,0.312866022347573,0.3188469151093464,0.3237977957022351,0.3301172554466844,0.3353472398880692,0.3401235447234489,0.3439400535612986,0.3438643210673552,0.3441513793008608,0.3441785880069207,0.3435336291756407,0.3439073290265092,0.3436491303217121,0.3426995590814988,0.3437556331219376,0.344118500315705,0.3449155869650569,0.3454399010995186,0.3464154375420143,0.3472548690396239,0.3479215194409604,0.3495492020635456,0.3509379885356957,0.353847907228538,0.3557831249607338,0.3580848824973693,0.3611606611963373,0.3618574100260001,0.3657002771264123,0.3655669321198331,0.3657108085494789,0.3697232977618283,0.3674949470930924,0.37014970974641,0.3747725894481504,0.3737741664331745,0.3774912075029308,0.0,2.1984853759062237,57.78509196139792,195.91163073115507,295.3028414919108,fqhc4_80Compliance_baseline,90 -100000,95672,42381,399.5212810435655,6692,68.80801070323606,5233,54.11196588343507,2096,21.531900660590352,77.35982293729873,79.73613855606713,63.33991942654043,65.09027067623808,77.10188478235584,79.47901734846424,63.245808724561606,64.99926244805971,0.2579381549428916,257.1212076028928,0.0941107019788276,91.00822817836728,117.4019,82.16230552865275,122712.91495944478,85879.15537320507,278.44561,174.86286253344656,290463.0403879923,182194.4273491163,303.63195,145.10242669922286,314232.1682414918,149126.89702714415,3786.97726,1704.8915027233145,3918102.328790032,1741827.3922603428,1256.65133,550.6846110676353,1295516.274354043,557613.1063086739,2061.37062,850.2975034778976,2119681.0979178865,858394.5745724245,0.37825,100000,0,533645,5577.859770883853,0,0.0,0,0.0,23497,244.9933104774647,0,0.0,28110,290.6074922652396,1872927,0,67173,0,0,4780,0,0,48,0.5017141901496781,0,0.0,0,0.0,0,0.0,0.06692,0.1769200264375413,0.3132098027495517,0.02096,0.3303038909400738,0.6696961090599262,24.95965035354206,4.482558059933708,0.3313586852665774,0.210968851519205,0.2253009745843684,0.232371488629849,11.16509920521938,5.729381527284325,22.136714062645407,12690.026603190854,59.10955734435005,13.040510544632689,19.716326902963957,12.994086728215535,13.358633168537889,0.5646856487674374,0.7898550724637681,0.709919261822376,0.5996607294317218,0.1192434210526315,0.7413533834586467,0.91869918699187,0.899343544857768,0.7651515151515151,0.1416666666666666,0.5044837304637458,0.7251700680272108,0.6421299921691465,0.5519125683060109,0.1137295081967213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023494146716895,0.0047333799576327,0.0070106021407193,0.0090694887367715,0.0111741499918659,0.0134866914346786,0.0155697531052894,0.0179875933559156,0.0202659911336288,0.0223729437760864,0.0243715040875284,0.0263554757630161,0.0284915512066768,0.0305498352553542,0.0324197757537623,0.0346866214651893,0.0367517651199867,0.0388951697385207,0.04064043249987,0.0425325690463783,0.0566786815023768,0.0709618646729911,0.0831374113102985,0.0953367984680457,0.1076223724594728,0.1230689465442079,0.1360582485114151,0.1483694378767546,0.1601962502939478,0.1713261571813391,0.1846823549693992,0.197702244696863,0.2096031858291533,0.2211838347139996,0.2316611244466956,0.2422852838882612,0.2527034718269778,0.2625366741982261,0.2720334754604009,0.279752775552249,0.2880368169098772,0.2957548824698865,0.3024559909142533,0.3095734233910565,0.315174530762791,0.321035072817028,0.3267127482719398,0.3327360073204209,0.3383391540551028,0.3432457748987427,0.3432922153916518,0.34309410502572,0.3432440430059041,0.3423941302212722,0.3426650239724502,0.3422853730611995,0.3415712180979991,0.3429445028932141,0.3437398318291576,0.3459852185895027,0.3473771168938455,0.3489620473813485,0.3500661889853123,0.351684562103517,0.3523570808830618,0.3526880037561624,0.3538527275316906,0.354842771254997,0.3571353306873661,0.3598104793756967,0.3625680186565458,0.3650360866078588,0.3685552227391498,0.3699738098906178,0.3694950645406226,0.3743546644255012,0.3761171032357473,0.3796954314720812,0.3833605220228385,0.3906491499227202,0.0,2.317570616035011,58.527667729817125,195.22903659948497,297.7315908681862,fqhc4_80Compliance_baseline,91 -100000,95845,42685,401.5963274036204,6731,68.92378319161146,5256,54.17079659867495,2114,21.607804267306587,77.34109898624328,79.63185800385185,63.34986309044478,65.04428124525693,77.07745617775186,79.37149539105734,63.252246042263934,64.95101386754888,0.2636428084914257,260.3626127945091,0.0976170481808438,93.26737770804527,119.28972,83.5771052124416,124461.07778183524,87200.27670973091,282.69751,177.91270016064956,294264.447806354,184938.4142962148,306.80373,147.43209674534356,316132.0047994157,150802.28903963327,3756.70553,1702.4930047265807,3875797.057749491,1732697.7280829956,1258.76589,554.5686829823376,1298992.4878710418,564267.9484569781,2074.3876,866.805163328846,2123427.554906359,869438.2563412869,0.38062,100000,0,542226,5657.321717356148,0,0.0,0,0.0,23864,248.26542855652357,0,0.0,28338,291.6584068026501,1859499,0,66797,0,0,4754,0,0,64,0.6677447962856696,0,0.0,0,0.0,0,0.0,0.06731,0.1768430455572487,0.3140692319120487,0.02114,0.3315886263969444,0.6684113736030556,24.77719056648261,4.386483071085659,0.3297184170471842,0.2201293759512937,0.2248858447488584,0.2252663622526636,11.139294217135287,5.748684041039829,22.48359051148984,12680.564552015469,59.634862543925216,13.786510298281287,19.72580364884944,13.1384092132657,12.98413938352879,0.5570776255707762,0.7709593777009507,0.7120600115406809,0.577834179357022,0.1005067567567567,0.7229778095919828,0.9164619164619164,0.8733905579399142,0.7142857142857143,0.1229508196721311,0.4970199533557916,0.692,0.6527229676400947,0.5354767184035477,0.0946808510638297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022074831654093,0.0046711452918705,0.0069277505604073,0.0093305175949804,0.0115666863171589,0.0138300903688024,0.0160559104292103,0.0184238714613618,0.0204175433579147,0.0225766193379434,0.0246962899227664,0.0270250866648889,0.0290975945440726,0.031071876864827,0.0330661116148709,0.0348649987614565,0.0369355489147855,0.0389373562384731,0.0408845514950166,0.042877060096554,0.0569900098024902,0.0714173730363619,0.0844751728472658,0.0966779746463193,0.1088996303667898,0.1242764797836833,0.1371408593948639,0.1497740683642549,0.1616473149492017,0.1727974276527331,0.1871495452833234,0.1998961746860906,0.2119413369861822,0.2229582745766788,0.2327945690802865,0.2440221606648199,0.2539558551119245,0.2632792898209926,0.2725023549306005,0.2806056996243013,0.2878300511420174,0.2954540137104887,0.3026139846403256,0.3092484510013063,0.3153489163183983,0.3210881333777268,0.326381934708592,0.3304361105101742,0.3360519910931593,0.341116496520028,0.3407348522615502,0.3401393325256086,0.3398744445228187,0.3401625686425084,0.3404661143231805,0.3397101271264509,0.3391808223527544,0.3402313243483705,0.3413951251352697,0.341747118997537,0.3424148022278863,0.3434526416371382,0.345233822442732,0.34534127843987,0.344631532910562,0.3457063128521034,0.3475036647408812,0.3506604852025911,0.3540129232724833,0.3544561571633924,0.3557163796262367,0.358283913020249,0.3614671912679274,0.3647355934797581,0.3691619899172453,0.3696955166626708,0.3758129451842675,0.3796617077644181,0.3764184887904788,0.3895800933125972,0.0,2.529887879649036,61.38578254911823,192.75338404981005,294.9602878534827,fqhc4_80Compliance_baseline,92 -100000,95631,43149,405.9353138626596,6703,68.81659712854618,5261,54.30247513881482,2123,21.729355543704447,77.31769350596971,79.74075632646081,63.289715480586615,65.0816427284864,77.0539569974068,79.47920068272177,63.19255035315828,64.98827280798744,0.2637365085629142,261.55564373904383,0.0971651274283331,93.36992049895798,118.8165,83.30008102555597,124244.75327038302,87105.73038612581,282.32596,177.44467367215353,294540.2955108699,184867.6046138688,310.36632,149.03659433678567,320220.25284688023,152399.0393686939,3788.84837,1709.246460529893,3915717.2778701466,1741150.836831602,1290.75548,563.6817739471411,1333235.206156999,572987.8322727047,2091.28282,870.3158585812577,2143965.617843586,874668.3800323138,0.38318,100000,0,540075,5647.488785017411,0,0.0,0,0.0,23804,248.19357739645093,0,0.0,28704,295.793205132227,1859147,0,66653,0,0,4699,0,0,48,0.5019292907111711,0,0.0,0,0.0,0,0.0,0.06703,0.1749308419019782,0.3167238549903028,0.02123,0.3292181069958848,0.6707818930041153,25.234762220488932,4.486955732185837,0.3288348222771336,0.2075651016916936,0.2317049990496103,0.2318950769815624,11.067234210167795,5.593490980444143,22.524273240580296,12831.733934620624,59.280836904745634,12.825203032117146,19.579245224917504,13.550936242212591,13.325452405498387,0.5561680288918457,0.7710622710622711,0.7057803468208093,0.5898277276456112,0.1180327868852459,0.7098248286367098,0.9327731092436976,0.851258581235698,0.7089552238805971,0.147410358565737,0.5050658561296859,0.6925170068027211,0.6566125290023201,0.5562565720294427,0.110423116615067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026643163951697,0.004908124771833,0.0074720812182741,0.0097053831847884,0.012107399757852,0.01420130399348,0.0167506579886968,0.018635444124318,0.0208778950169377,0.0230534257247119,0.0251609128145114,0.0272071071626873,0.0293181747968735,0.0316284635540242,0.0337762440072739,0.0360846079019806,0.0383020198249761,0.0402106619021897,0.0424615192481813,0.0444277579625805,0.058764513465779,0.0727825221354848,0.0863436308442138,0.0995460338526032,0.1121237723096419,0.1271818335875275,0.1402110498294385,0.1526760683487363,0.164536108941924,0.1757642155915018,0.189306093391006,0.2017401291552897,0.2142203633511959,0.2257301488222346,0.2363351846954068,0.2465836993655441,0.2563446387662736,0.2666989514939241,0.2754399909163165,0.2831615986796107,0.2912588749001031,0.2986444408025659,0.3057556513909293,0.3119022762998428,0.3171690375652555,0.3234325467799829,0.3279275669041864,0.333604877614144,0.3384876607216922,0.3438697571160504,0.3436214824103663,0.3435395231602,0.3435825105782792,0.3437879576609405,0.3435865430337613,0.3438841859894491,0.3439274272845497,0.3440600565083119,0.3443572783674306,0.3449216451837193,0.3464119483335514,0.3468740145064648,0.3477119279819955,0.3485057676034382,0.3492417163803636,0.3497607406636845,0.3529445202364711,0.3547589229805886,0.355489406408685,0.3568594779020868,0.3577402989167695,0.3603776604256681,0.3614663796378372,0.3652831919284567,0.3641345427059713,0.3659321024419297,0.3701138811942136,0.3733145502113101,0.3733443708609271,0.3732771822358346,0.0,2.739844003871329,57.20973290785114,198.80010162776645,299.0076286844831,fqhc4_80Compliance_baseline,93 -100000,95704,42884,404.51809746719056,6758,69.48507899356349,5350,55.25369890495696,2164,22.13073643734849,77.34880342590687,79.7056147479038,63.338894218876014,65.07680703555091,77.07369505749517,79.43243545310544,63.237768272225054,64.97907628609275,0.2751083684116935,273.1792947983536,0.1011259466509599,97.73074945816518,117.447,82.31210522257648,122719.00860988046,86006.96441379303,281.86055,177.17820796689347,293845.49235141685,184464.36960460883,309.74856,149.02660153780903,319433.12714202126,152415.00142015686,3849.69676,1751.5235497191206,3976245.8831396806,1783919.3360581226,1261.84529,554.3180941008071,1299225.8944244755,559972.1460026412,2121.41326,892.4766449867493,2172596.7775641563,897238.1176553778,0.38154,100000,0,533850,5578.136754994567,0,0.0,0,0.0,23750,247.47137005767783,0,0.0,28627,295.003343642899,1868658,0,67019,0,0,4763,0,0,54,0.5537908551366715,0,0.0,1,0.0104488840591824,0,0.0,0.06758,0.1771242857891702,0.320213080793134,0.02164,0.3195467422096317,0.6804532577903682,24.8090120549584,4.508157831375159,0.3265420560747663,0.2136448598130841,0.2334579439252336,0.2263551401869158,11.158566132146696,5.771086926829733,23.15601399761884,12801.54308808686,60.4620507211038,13.44438044487289,19.689475422134343,13.98237022678597,13.34582462731058,0.5482242990654206,0.7655293088363955,0.6846021751574127,0.5748598879103283,0.1189099917423616,0.7042151162790697,0.9291338582677166,0.8378995433789954,0.7104377104377104,0.1423076923076923,0.494212380473075,0.6837270341207349,0.6333078686019863,0.532563025210084,0.1125131440588853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189168936639,0.0043993025990349,0.0068692608188321,0.0089903391948313,0.0112758256059866,0.0135898610474881,0.0157684976607173,0.0178013677656425,0.0196515252158806,0.0217184381556726,0.0240350121968718,0.0260994509159952,0.0282527116640106,0.0303298603961619,0.0323905015370015,0.03455295053679,0.036653171948934,0.0387317002313734,0.0406641851566886,0.0427199033071456,0.0580433602071932,0.0716378859236002,0.0849691030980832,0.097242532955992,0.1093672541636342,0.1250925553745583,0.1380532475938836,0.1504540663692789,0.1630466137458733,0.1741471787170135,0.1871465351014208,0.2002943117757171,0.2125127803519763,0.223539577158232,0.2343478356550252,0.2453574436023578,0.2565325706880564,0.2663168916560646,0.275198419457029,0.2832378551787351,0.2906825970176901,0.2983839825877342,0.3059910016575894,0.3121179431859043,0.319782769806461,0.3252156766083313,0.3305109123882184,0.3357926069147989,0.3413141104453274,0.3456824328781582,0.3456439138753402,0.3453861729823546,0.3449229163434278,0.3450501425408448,0.3449620479237982,0.3441031696134206,0.3430351452893898,0.3442752230272561,0.3454900015395405,0.3468329069996243,0.3476484150936322,0.3489163107103306,0.3500356708212682,0.3500056097834623,0.3510928631807752,0.3536001256314288,0.3544463568559954,0.3584738523838147,0.3607992656922968,0.3616085705148705,0.3624247437841812,0.3640086206896551,0.3688161693936477,0.3691842431761786,0.3718107978977544,0.3721940622737147,0.3754705144291091,0.3769470404984423,0.3800508618253744,0.3788771103258735,0.0,2.3809826504924025,60.44218011740715,196.56873234060487,306.33505315052884,fqhc4_80Compliance_baseline,94 -100000,95639,42732,402.53453089220926,6688,68.59126506968914,5206,53.869237444975376,2087,21.497506247451355,77.26744378178137,79.68305811697789,63.28338998351626,65.06952113633425,77.01203715530482,79.42497479328132,63.18964758727063,64.97655136793279,0.2554066264765424,258.0833236965674,0.0937423962456307,92.96976840145987,118.63302,83.10350066606938,124041.59391043404,86892.1213836391,283.78234,179.10926709452332,296133.8052468136,186690.620579722,309.11524,148.8791811697627,318960.2777109757,152486.8063410258,3721.29017,1689.9190850661885,3852949.633517707,1729179.6249271696,1297.25052,574.7608258704117,1336358.1279603508,580927.2454873638,2044.94714,851.87947874091,2107226.0479511498,866536.014158083,0.37971,100000,0,539241,5638.254268656093,0,0.0,0,0.0,23939,249.6889344305148,0,0.0,28571,294.57648030615127,1858486,0,66703,0,0,4795,0,0,57,0.5855351896192976,0,0.0,0,0.0,0,0.0,0.06688,0.1761344183719154,0.3120514354066985,0.02087,0.3188014768531667,0.6811985231468333,24.928637685571186,4.520498251899992,0.3357664233576642,0.2103342297349212,0.2305032654629274,0.2233960814444871,11.457213839540636,5.990088261601688,22.25230857640518,12740.883622895066,59.27630543641227,13.123895900100448,19.89904713454228,13.5221159174769,12.731246484292626,0.5647330003841721,0.7789954337899543,0.6973684210526315,0.5975,0.1298366294067068,0.7427953890489913,0.9117647058823528,0.8900634249471459,0.7392739273927392,0.1890756302521008,0.5,0.710124826629681,0.6258823529411764,0.5496098104793757,0.1145945945945945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0043601703508416,0.0066906270305393,0.0091354361434029,0.0113022512945197,0.0133111989245121,0.0156616432489752,0.0179481158562108,0.0199081790202353,0.0219557403406007,0.0239987692938823,0.026225500267083,0.0281458316187968,0.0302830470577325,0.0326686071716108,0.0347255246562596,0.0367562529128476,0.0390044422302486,0.0412939463282712,0.0434315738993546,0.0583249728283588,0.0725776046248586,0.0858849966397849,0.0984680178994472,0.110564539965376,0.1266001037618982,0.1397561700862325,0.1520321391274695,0.1633222804578029,0.1746348797250859,0.1882973331464127,0.2010117203578933,0.212163427004201,0.2236302156856308,0.2340008587187476,0.2441312993674321,0.2549275653474407,0.2639248340272307,0.2735613389653449,0.2816433205713106,0.2891747623403541,0.2961242849288146,0.3033980582524271,0.3101119282123877,0.3162689435403439,0.3222899745722961,0.3281805882647692,0.3325354587354536,0.3376202452874219,0.3426418088060293,0.3425674672282748,0.3423026025584473,0.3423110584116767,0.3424335956179629,0.342685072001431,0.3416106145766147,0.3404708199637831,0.3416226706797585,0.3428595890410958,0.3428065214667931,0.3441994247363374,0.3449701789264413,0.3465223525447998,0.3486310592459605,0.3504240461980815,0.3524815815002228,0.3537049217833958,0.355335880996747,0.3564436905897735,0.3578669017188188,0.3600184672206833,0.3613586046762784,0.3620193230532983,0.3617465224111282,0.3616050204430921,0.3618175244064119,0.3584758942457232,0.3621900826446281,0.3629862700228833,0.3622078968573731,0.0,2.0568924921314875,61.51416809282424,196.05488545471587,286.87010987506346,fqhc4_80Compliance_baseline,95 -100000,95847,42505,400.44028503761206,6609,67.89988210376956,5099,52.71943827141173,1992,20.511857439460808,77.40182060844235,79.71503228132518,63.36325590393732,65.07552436245491,77.15210288011704,79.46369600707379,63.2715070750683,64.98496416659428,0.249717728325308,251.33627425138627,0.0917488288690222,90.56019586063258,118.33096,82.88192320959755,123458.17813807422,86473.1532646797,279.34289,175.97494690668546,290959.6857491627,183112.8641550445,301.09109,144.383176473303,311162.8532974428,148347.98993867726,3681.43096,1657.384532193862,3808496.332696902,1696820.3340676932,1217.12587,534.3814815790216,1258996.671778981,546669.3288042624,1958.29204,818.1451786927888,2018030.3608876648,832395.7638363037,0.37867,100000,0,537868,5611.735369912465,0,0.0,0,0.0,23574,245.44325852661007,0,0.0,27850,287.5207361732762,1868491,0,67124,0,0,4622,0,0,55,0.5738312101578558,0,0.0,0,0.0,0,0.0,0.06609,0.17453191433174,0.3014071720381298,0.01992,0.3132026520611127,0.6867973479388872,25.11445205414292,4.416280738699114,0.3181015885467739,0.2188664444008629,0.2386742498529123,0.2243577171994508,10.999941670505423,5.601894995045617,21.211014028965412,12617.012362850355,57.5179745407403,13.159832430602444,18.304579629809712,13.50422782325162,12.549334657076534,0.5493233967444597,0.7867383512544803,0.6787916152897657,0.5677896466721446,0.1145104895104895,0.7149569303054033,0.9423076923076924,0.8405797101449275,0.7307692307692307,0.1338912133891213,0.4939822082679225,0.711436170212766,0.6233443708609272,0.5235109717868338,0.1093922651933701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024605601571518,0.004672186806393,0.0067463377023901,0.0090699493179763,0.0114781264932239,0.0136304409788672,0.0159404780104978,0.0180547050418452,0.0199521638694114,0.0219338198417653,0.0241914817282558,0.0263681898427556,0.0284313423170618,0.0303117664017132,0.0323232739949256,0.0342005744869913,0.0362177828382155,0.038209493789013,0.0402779364568294,0.0423032094243017,0.056858001001168,0.0708514085611247,0.0844955310833324,0.0966881295757486,0.1084747190715406,0.1239821298437945,0.1368687564223439,0.1492154945148397,0.1615295950820721,0.1721153434165988,0.1852971228824953,0.1975147225673996,0.20972122634335,0.2206889770231735,0.2305755870196112,0.2413071634950682,0.2514275517487508,0.2611707031864894,0.270315335753176,0.2790564590891923,0.2869466672834081,0.2940942672776583,0.3014557194044677,0.3075946182323553,0.3134676332374048,0.3190150040651408,0.32421273880569,0.3290261862671533,0.3344551738421311,0.3391851431736946,0.3392184304015502,0.3391189536371013,0.3390904100333601,0.3399760458303871,0.3398465898132075,0.3392411650366561,0.3386060932013034,0.3395802590588621,0.3402693614188416,0.3412255522473212,0.3423873393568662,0.3432405762778764,0.3438761635812153,0.3452380952380952,0.3465505661101516,0.349255050833355,0.3508039315947957,0.3538962054618825,0.3557762932391312,0.3575985734099465,0.3588843822631363,0.3602831594634873,0.3627024642339446,0.364825802525483,0.3700111898545319,0.3718930380492402,0.3699969446990528,0.3757096512570965,0.3826039086154693,0.3832886163280951,0.0,1.772521592453529,56.46275165867859,196.934800145836,284.3929764214409,fqhc4_80Compliance_baseline,96 -100000,95696,42646,402.3679150643705,6681,68.66535696371844,5200,53.74310316000669,2064,21.21300785821769,77.32145341825886,79.70967860713903,63.3143933609397,65.08045862282538,77.0667753376256,79.45459780082619,63.22107543979394,64.98944262107243,0.2546780806332549,255.0808063128329,0.0933179211457542,91.01600175294776,119.08314,83.40864263370098,124438.76442066544,87159.78644217203,281.19692,177.11158127257772,293241.1699548571,184474.80027647727,303.89828,145.7039725555261,314014.57741180406,149494.80464515596,3750.71299,1688.0820691233748,3878968.441732152,1723604.8380531848,1268.88197,557.6366882587319,1310745.6738003676,567511.5974113146,2033.3178,845.638217028147,2090888.6055843504,854194.7271965068,0.37952,100000,0,541287,5656.307473666611,0,0.0,0,0.0,23781,247.8682494566126,0,0.0,28051,289.55233238588863,1861889,0,66743,0,0,4667,0,0,54,0.5642869085437218,0,0.0,0,0.0,0,0.0,0.06681,0.1760381534569983,0.3089357880556803,0.02064,0.3262138687170725,0.6737861312829275,24.88531424437019,4.45931304080796,0.3234615384615384,0.2142307692307692,0.2319230769230769,0.2303846153846153,10.987401050365456,5.524648838910677,21.85120344452551,12636.01040003072,58.64721077387588,13.191276931336487,18.995705880313253,13.255694139296912,13.204533822929235,0.5461538461538461,0.7495511669658886,0.6938168846611177,0.5762852404643449,0.1193656093489148,0.724373576309795,0.9013698630136986,0.8713968957871396,0.7509881422924901,0.1693548387096774,0.4857069276332732,0.6755674232309746,0.628757108042242,0.5299055613850997,0.1063157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365566993596,0.0043403305952743,0.0065981809322722,0.008709261084745,0.0107235878235389,0.0131712981827071,0.0153482158336477,0.0176638758423524,0.0196587575010989,0.0217208835752451,0.0236315730118209,0.0259706918329413,0.0281758237236526,0.0300579106815324,0.0319570602807597,0.0341187539417499,0.0361282303589,0.0384607401564997,0.0403298771800284,0.0423771209405094,0.0569969292473522,0.0699682818829884,0.0834251650346861,0.0953929368186218,0.1074360110569517,0.1230684560348842,0.1357277802543038,0.1477777422756174,0.1593408354974191,0.170660031317703,0.1852047356911243,0.1972180125568305,0.2097518000478562,0.2202531368623718,0.231133943500836,0.2416145285421626,0.2521420921099607,0.2609839456761254,0.2698877169105138,0.2780100095055945,0.2869304708916984,0.2938493919550982,0.3021494176687813,0.3087866911174236,0.3152548962433785,0.3209944955484133,0.3269663764635244,0.3319560629560883,0.3365057608006931,0.3413270754505543,0.3412953667693881,0.3419001937851321,0.3421522959793974,0.3424829617650456,0.3430597258970776,0.3418010670264303,0.3404268804766356,0.3417615456651387,0.3418465904234405,0.3431384813338813,0.3434586014746993,0.3454426670890085,0.3462095302041587,0.3473960436011304,0.3489568241089539,0.3491409836065574,0.350947187141217,0.3539663461538461,0.3553867891204521,0.3588331537571331,0.3602819996337667,0.3626473740621651,0.3673156718799872,0.3721254355400696,0.3684962835906232,0.3704866562009419,0.3750972762645914,0.3795876288659793,0.3879598662207358,0.3882854926299457,0.0,2.266112123556884,57.93438721600694,195.5791048596752,293.52088264472866,fqhc4_80Compliance_baseline,97 -100000,95726,42404,400.6539498150972,6754,69.54223512943192,5272,54.708229739046864,2112,21.79136284812904,77.3455376358958,79.73135117392815,63.32130932583449,65.086863592586,77.09057394990583,79.47390498757821,63.22756031543804,64.99408686656035,0.2549636859899635,257.446186349938,0.0937490103964506,92.77672602564736,118.26012,82.81269531569554,123540.22940475942,86510.13864122133,280.57836,175.9005646248905,292706.6418736811,183355.16434917416,304.18473,144.95570428464632,315741.1048200071,149906.33966700145,3791.50623,1698.504533706131,3935575.2460146663,1749124.6513028129,1256.62203,543.5658967426834,1303300.0647681924,558418.9999287645,2079.26268,865.1972854177915,2147119.027223534,882165.9406270545,0.37747,100000,0,537546,5615.46497294361,0,0.0,0,0.0,23677,246.94440381923403,0,0.0,28122,291.7180285397907,1868783,0,66978,0,0,4588,0,0,50,0.5223241334642625,0,0.0,0,0.0,0,0.0,0.06754,0.1789281267385487,0.3127035830618892,0.02112,0.3289027149321267,0.6710972850678733,25.08257392039855,4.521848085405993,0.3254931714719272,0.2175644916540212,0.2245827010622154,0.2323596358118361,11.087837832380131,5.534310837127557,22.447521633832544,12628.80330123233,59.52126183016455,13.43763886550157,19.533208417145023,13.206645299560464,13.343769247957487,0.5515933232169955,0.7759372275501307,0.6940559440559441,0.5869932432432432,0.1077551020408163,0.714968152866242,0.923943661971831,0.8313253012048193,0.7433962264150943,0.1266968325791855,0.5004980079681275,0.7095959595959596,0.6502690238278247,0.5418933623503809,0.1035856573705179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107417501697,0.0042091383944419,0.006406416569369,0.0085875729181487,0.0107227150647025,0.0129048686086779,0.0149191327935387,0.0170542160677266,0.0188870255235602,0.0209519518289435,0.0230757397056561,0.0251229958607656,0.0272071756997233,0.029357212043773,0.0312177502579979,0.033361591266231,0.0354575400360479,0.0375075243373393,0.0396822095586706,0.041633673682017,0.0566857429299469,0.0705577009617699,0.0833394553182557,0.0965647851017938,0.1087788876348792,0.1245491374112818,0.1374831541751117,0.1495670511550627,0.1615017050252814,0.1731322455989695,0.1859174059741071,0.198795637434881,0.2106351711750939,0.2215984942989079,0.2311519621333039,0.242013938903724,0.2519755346220813,0.2617030611900502,0.2711554824437007,0.2799056754962339,0.2876414373973205,0.2954813818904542,0.3024633687720999,0.3086979946123915,0.3147723550605961,0.320612659162207,0.3253989079231797,0.3307692307692307,0.3362212552776666,0.3410540714727275,0.3415898076174366,0.3409527204914436,0.3407245032740353,0.3405512946196875,0.3406103182013546,0.3397967759187104,0.3395671160053161,0.3401436578510495,0.3411477035669095,0.3414782484258729,0.3419148736258574,0.3433054932846628,0.3440873792537408,0.3457252404762438,0.3469560179597354,0.3489212400502723,0.3500357295983993,0.3541410511050159,0.3556087599464826,0.357919904363419,0.3597391344005108,0.3621285418106427,0.3626512096774194,0.3638931297709923,0.3692540991375225,0.3674329040799133,0.3679157633942397,0.3700205338809035,0.3680593732820231,0.365011636927851,0.0,1.3609479353588658,56.06348137586284,211.929871020094,295.6538938602786,fqhc4_80Compliance_baseline,98 -100000,95612,42564,400.1798937371878,6639,68.33870225494708,5220,54.03087478559177,2070,21.283939254486885,77.23812690061078,79.67018773049968,63.25655152000609,65.05460332137294,76.98437942563297,79.41442364218186,63.16348246105019,64.96284247824548,0.2537474749778141,255.76408831781805,0.0930690589559049,91.76084312746012,117.49034,82.29268004641243,122882.420616659,86069.40556249469,279.80154,176.5336014417045,292092.09095092665,184085.792866194,304.70222,146.91746055673653,314956.2502614734,150789.0938759207,3750.66921,1694.8267822604844,3887497.207463498,1737429.2871123734,1259.29715,549.0504494103277,1305252.0499518889,562409.4145194404,2036.4951,846.5536286228664,2097299.502154541,859211.3701438946,0.37906,100000,0,534047,5585.5645734845,0,0.0,0,0.0,23666,246.94599004309083,0,0.0,28141,290.5806802493411,1862515,0,66878,0,0,4575,0,0,49,0.5020290340124671,0,0.0,0,0.0,0,0.0,0.06639,0.1751437767108109,0.3117939448712155,0.0207,0.3141795311606632,0.6858204688393368,25.02850516785483,4.484695761918082,0.325095785440613,0.2183908045977011,0.2298850574712643,0.2266283524904214,11.26109177421129,5.822291192045582,21.894358906547687,12765.921881703587,58.90494912524721,13.405239094355746,19.388579180033457,13.253058837813848,12.858072013044174,0.553639846743295,0.7789473684210526,0.6841484973482617,0.5841666666666666,0.1183431952662721,0.7249451353328457,0.93573264781491,0.854586129753915,0.723404255319149,0.1646586345381526,0.4928627043861925,0.6977363515312917,0.6232,0.5413943355119826,0.1059957173447537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0046250748024707,0.0068739338802696,0.0091987436853928,0.0116430548770558,0.0140285461047098,0.0161966443979805,0.0183773954970784,0.0207127222142667,0.0228611227761105,0.0251580070590166,0.0273008435827091,0.0293633313435293,0.0316691236353514,0.033892704084267,0.0361629037932247,0.0381489467573395,0.0403980595635056,0.0423454464071949,0.0441994137344697,0.0586341351229863,0.0729936185596177,0.0859955247870071,0.0984887578326575,0.1106464761663393,0.1266536037705873,0.1394046910852383,0.1513691548440048,0.1629307854445074,0.1740442763998839,0.1873435476909797,0.1998395472630882,0.2122239051552233,0.2233313974512102,0.2331676457297785,0.2440212626649354,0.2542590914683938,0.2634896649714137,0.2722454735692839,0.2798392190640252,0.2878031797609376,0.2951242684056815,0.3024710406380554,0.3095301077337437,0.3158908350702697,0.3220582053754667,0.3280225988700564,0.332231383861333,0.3370536874382828,0.3415987079008684,0.3420928190231709,0.342183746168503,0.3420673484377649,0.3425725924529943,0.3432137750238322,0.342764927380312,0.3423913043478261,0.3433544303797468,0.3444043940954343,0.3464854884104476,0.3475146638592269,0.3489687754332334,0.3492263972213451,0.3512353033743228,0.3518478234597443,0.353687300172965,0.3566305158661846,0.3594392759951901,0.3606117331261258,0.3621711966254128,0.3630199743448781,0.3654657058980518,0.3691169028340081,0.3706619782907812,0.3736584447373376,0.3768030267202648,0.3732928679817905,0.3739935587761674,0.3764446890478811,0.3789152024446142,0.0,2.1988243369753246,60.33953465224285,189.7631410999532,294.9924595547915,fqhc4_80Compliance_baseline,99 -100000,95717,42914,404.8288182872426,6833,70.16517442042688,5330,55.07903507213975,2079,21.38596069663696,77.33641368994157,79.71142178484101,63.332022412709286,65.08953978934765,77.07705466641168,79.45182103115717,63.23609200259587,64.99580401911079,0.2593590235298819,259.6007536838414,0.0959304101134179,93.73577023686153,118.23416,82.87446436885834,123524.72392573942,86582.80594759378,280.99665,176.76364175118528,292992.5300625803,184095.46031654283,313.75227,151.14639128092455,323444.1217338613,154659.84047659463,3047.38972,1387.5448968295404,3151894.1462854035,1418076.112135286,1280.66617,561.6052713183503,1324406.4481753502,573295.6866358778,2045.34168,862.6215372465894,2105840.63437007,874060.0160367374,0.38031,100000,0,537428,5614.760178442701,0,0.0,0,0.0,23712,247.11388781512167,0,0.0,28945,298.06617424282,1865902,0,66977,0,0,4601,0,0,55,0.5746105707450088,0,0.0,0,0.0,0,0.0,0.06833,0.179669217217533,0.3042587443289916,0.02079,0.3236363636363636,0.6763636363636364,24.867367194590084,4.359469337082597,0.3264540337711069,0.222701688555347,0.224765478424015,0.2260787992495309,11.194359935456662,5.911105187186099,22.428239661724287,12773.393696503252,60.319658166369,14.094891968534558,19.61391476466275,13.331965060563444,13.278886372608252,0.550281425891182,0.7700084245998315,0.6925287356321839,0.5667779632721202,0.1120331950207468,0.7084569732937686,0.897172236503856,0.8680555555555556,0.717948717948718,0.1377952755905512,0.496735308890005,0.7080200501253133,0.6345565749235474,0.5221621621621622,0.1051524710830704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.0044828040852341,0.0068632925529214,0.00922839255224,0.0117392144695482,0.0142077281893548,0.0162657175781927,0.0183888094751888,0.020477850592457,0.0226235079745306,0.0247860181436112,0.0269088221102019,0.0289063705074811,0.030971263775878,0.0330602389747611,0.0350494578755335,0.037027066205554,0.0387887212897068,0.0406888523976802,0.042791220924782,0.0577872918080718,0.0714390340873422,0.0847971307822184,0.0980237569641543,0.1098545531197301,0.1252893120977372,0.1389760440958236,0.1519321154377831,0.1639165795034901,0.1746703373217786,0.1879499402769856,0.2010099153357914,0.2135561543810848,0.2246810555749737,0.235496418054762,0.2457872622733304,0.2556437055690504,0.265436400008991,0.2746734397677794,0.28287230878349,0.2907804697614203,0.2978295913837815,0.3041407671763844,0.31042903658303,0.3169811320754717,0.3222256416569213,0.3279610897860688,0.333621533649506,0.3386359812055865,0.3425965041981306,0.3428917935588195,0.3426408538098783,0.3427648104767012,0.3433590129749768,0.3441831351158008,0.3427913050157462,0.3417132511752001,0.3423488716850601,0.3430389080371075,0.3444165621079046,0.3455717857612844,0.3476373582811385,0.3482530689329556,0.3490536489328381,0.348325704649482,0.3511607865667354,0.3518252783836528,0.3533882203926535,0.3542776503792556,0.3560839160839161,0.3595857307249712,0.3598837522200097,0.3610468106995885,0.3639742894757221,0.3672224868985231,0.3702761627906977,0.3776810693192415,0.3866011063306699,0.3827092511013216,0.3782857142857143,0.0,2.355442865316918,59.0230870556633,206.5688647165861,296.6578284394704,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95610,42935,405.1772827110135,6837,70.31691245685597,5306,54.9210333647108,2165,22.257086078862045,77.26635035352784,79.7044694628387,63.26822878755484,65.0719527097998,76.99522196966502,79.43405027507033,63.16797778144729,64.97512522295321,0.2711283838628162,270.4191877683684,0.1002510061075483,96.8274868465926,117.38166,82.23401814065527,122771.32099152807,86009.85058116858,281.65404,176.9931136893448,294035.75985775545,184569.2539371873,304.69278,146.28935236904624,315391.8418575463,150474.87656412454,3071.69672,1391.7061489327943,3181314.0884844684,1424185.5757063003,1280.14435,564.0007021168808,1324337.9458215667,575312.0616220906,2131.96754,892.3414568775329,2193898.0023010145,901353.8491533356,0.3821,100000,0,533553,5580.514590524004,0,0.0,0,0.0,23756,247.8924798661228,0,0.0,28164,291.27706306871664,1866047,0,66936,0,0,4654,0,0,56,0.5752536345570547,0,0.0,1,0.0104591569919464,0,0.0,0.06837,0.1789322166971997,0.3166593535176247,0.02165,0.324106273473362,0.6758937265266379,24.968349485097573,4.529737774487864,0.3224651338107802,0.2208820203543158,0.2191858273652469,0.2374670184696569,11.08783877198156,5.559134480421291,23.167864992402997,12808.51706249471,59.90187381753904,13.773145750528494,19.318304279105877,12.98240704174979,13.828016746154878,0.5346777233320769,0.7465870307167235,0.6884862653419053,0.5649183147033534,0.1007936507936508,0.6900149031296572,0.9015151515151516,0.8480392156862745,0.6666666666666666,0.13671875,0.4820887991927346,0.6675257731958762,0.6385264773599386,0.5323496027241771,0.0916334661354581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0048085214303829,0.0068652441934861,0.0089677891654465,0.0115123877771218,0.0137998511980594,0.016278167864141,0.018495243350398,0.0205553736596545,0.0227687263039245,0.0248470791083377,0.0269309047550521,0.0290705454844919,0.0310444375708835,0.0329700976088416,0.0351813911135945,0.0375115312457891,0.0392916493560448,0.040914247650371,0.0429495202336253,0.058148895463717,0.0725401632730054,0.0854342619437791,0.0979943961067689,0.1105125848939024,0.1256753034893328,0.1390111174882554,0.1509520507760414,0.1624173142380065,0.173765418833541,0.1874460648947186,0.2003815759520428,0.2120842499618827,0.2230682428213022,0.2337147014086369,0.2451381724187661,0.2551479871733276,0.2644531293995742,0.2740712962647302,0.2824166494573323,0.291187339983086,0.2987910594630055,0.3056724058252657,0.3124617654467595,0.319388028117627,0.3248962860529435,0.3307585238316174,0.33591220780545,0.3401206147461254,0.344503614043897,0.3445416672284316,0.3436621658859189,0.3443406872425661,0.3437291962140728,0.3446442929037253,0.3441363232000982,0.3435179897201599,0.3443170964660936,0.345372924626904,0.3460945345000717,0.3471233186390867,0.3496900826446281,0.3512403655814345,0.3522214489369822,0.3521572990229273,0.3540765216479165,0.3546044321965783,0.3578837187172899,0.3603906443508722,0.3635417500600432,0.3641618497109826,0.3658614964383268,0.3663644489848039,0.3702287156735256,0.3711194731890875,0.3739037686655606,0.3747513389441469,0.3758648758648759,0.3768356885563868,0.3765290519877676,0.0,2.276701108197634,59.070528033789486,198.2130817249899,302.6278246988678,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95718,42901,404.8872730311958,6655,68.3988382540379,5183,53.69940867966317,2066,21.24992164483169,77.34534288058313,79.71442798383032,63.32656324425341,65.07459988928014,77.08795208990867,79.45551557606352,63.23214779983297,64.98165958692326,0.2573907906744637,258.9124077668004,0.0944154444204343,92.94030235687956,119.67912,83.87050194065974,125033.0345389582,87622.4972739294,281.94498,177.6382673391102,294133.52765415073,185160.59397303555,302.21316,145.42193723503246,313294.7721431706,149936.8928303357,2968.39852,1350.0932842607438,3077070.1435466683,1386369.088636144,1256.67621,552.3658077911517,1302071.4703608516,566267.9714673378,2026.08088,852.3243266823359,2086097.6409870663,865442.862425381,0.38158,100000,0,543996,5683.319751770827,0,0.0,0,0.0,23799,248.17693641739277,0,0.0,27923,289.2454919659834,1856612,0,66592,0,0,4803,0,0,55,0.5746045675839445,0,0.0,0,0.0,0,0.0,0.06655,0.1744064154305781,0.3104432757325319,0.02066,0.32693401592719,0.67306598407281,25.149478576550795,4.419177335434912,0.3337835230561451,0.2203357129075824,0.2182133899286127,0.2276673741076596,11.296031387141324,5.896251161186866,22.16480918370592,12770.651736466936,58.72932306144542,13.469828065934433,19.578003401044224,12.513169961900577,13.16832163256619,0.5606791433532703,0.7889667250437828,0.7017341040462428,0.5694076038903625,0.1245762711864406,0.7134099616858237,0.9191374663072776,0.8631346578366446,0.7276785714285714,0.1400778210116731,0.5092831356369263,0.7263294422827496,0.6444792482380579,0.5303197353914002,0.1202600216684723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0044898952019946,0.0068381965017653,0.0091915498679666,0.0113689519819398,0.0136022561826123,0.0158812676472686,0.0179353429355981,0.0201684623719665,0.022294786623128,0.0245115125171713,0.0265454918874512,0.0284300716923298,0.0305871202365376,0.0327454359694114,0.0347843165631234,0.0368790066177155,0.0387401411374014,0.0407365433202674,0.0423292553302348,0.0572183466310205,0.0707169021454735,0.0842462016284731,0.0975486586007364,0.1100067527644129,0.1260542439602535,0.1394724271535481,0.1518930720485649,0.1631990083245172,0.1741294065915209,0.1876791139649637,0.2008791779902337,0.2129768666623142,0.2242170138698836,0.2341020727328795,0.2442350332594235,0.2539461052443571,0.2639728139171139,0.2728789891352474,0.2814379489294429,0.2897127055202657,0.2972378791776785,0.3044111207110817,0.3114911261039941,0.317748833592535,0.3231596075144223,0.3294152991099928,0.3341090002797487,0.3396280215151319,0.3438264018290184,0.3437533729087965,0.343972755725296,0.3441117031049054,0.3442285681169499,0.3443333680964229,0.3432785425971116,0.3424214564245633,0.3443290839794979,0.3449029416283953,0.3458716415245916,0.3468287110728263,0.348463590554293,0.3476893399312253,0.3484325245548728,0.3503633773571238,0.3523217225430505,0.3524121246620179,0.3553651570787434,0.3576936558009113,0.3589164785553047,0.3603246249943008,0.363235372269756,0.3684210526315789,0.3725400457665904,0.3742591024555461,0.376229411067662,0.3805309734513274,0.3853914447134786,0.3905992303463441,0.3945525291828793,0.0,1.7286487998787687,57.91252965946542,206.99321592581703,281.2751797430375,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95666,42520,400.16306733844834,6698,68.73915497668973,5260,54.42895072439529,2120,21.81548303472498,77.2498286400838,79.64887123222375,63.26585613190741,65.0389721612541,76.99282347028277,79.38990479253508,63.17225845846341,64.94682023909034,0.2570051698010331,258.9664396886775,0.0935976734440018,92.151922163751,118.90252,83.20990656228982,124289.21455898648,86979.60253620912,278.73605,174.39620914775494,290813.4551460289,181746.6593646175,300.68059,144.42208253643952,310535.66575376835,148069.09907131604,3022.21772,1359.1889212283525,3129124.5374532226,1390754.794000326,1237.20415,541.600718473828,1278321.09631426,551204.4284007155,2086.63306,859.8779268867813,2149237.785629168,872779.4935129111,0.37978,100000,0,540466,5649.509752681203,0,0.0,0,0.0,23576,245.86582484895365,0,0.0,27833,287.28074760102857,1858886,0,66830,0,0,4663,0,0,46,0.4599335187004787,0,0.0,0,0.0,0,0.0,0.06698,0.1763652641002685,0.3165123917587339,0.0212,0.3197375926982316,0.6802624073017683,25.025194581871336,4.52550410261734,0.3307984790874524,0.2123574144486692,0.2249049429657794,0.2319391634980988,11.005565161211958,5.50874200059155,22.452533593745912,12755.569597621205,59.19843825893306,13.238533373648,19.677475423501026,13.079229778683498,13.203199683100523,0.5427756653992395,0.7681289167412713,0.7040229885057471,0.5469146238377007,0.1024590163934426,0.7174578866768759,0.9237057220708448,0.8732718894009217,0.6992481203007519,0.1380753138075313,0.485078401618614,0.692,0.6477794793261868,0.5027262813522355,0.0937818552497451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024616070343206,0.0048272435019826,0.0071152343155266,0.0094289778500304,0.0119518670342077,0.0142790214490864,0.0163559978790227,0.0185531219686526,0.0205052157905502,0.0227875585051361,0.025027437867334,0.0272829994863893,0.0293049338889746,0.0314464760569767,0.0333164703331647,0.0354228505827963,0.0375221495704796,0.0394422641666147,0.0413554172995692,0.0433118893951558,0.0572876397450632,0.0710613121105817,0.084218369574343,0.0964436026936026,0.108363935671774,0.1242525901389521,0.1377040128274558,0.1501960700737394,0.1617389071926746,0.1727823490235675,0.1861466256675837,0.1990522354880336,0.2112046406140963,0.2227766749651791,0.233323768320678,0.2441921183907918,0.2549752635938304,0.264391025279473,0.2731163214204416,0.2814697366606921,0.2895033270237943,0.297317296624304,0.3046537890044576,0.3107921113744931,0.3173877531117044,0.3242130001855402,0.3294526913319769,0.3344533735355368,0.339034819792303,0.3434449139632539,0.3433449128830375,0.3428508311702656,0.3436412997369983,0.3442442181016221,0.3445163792589056,0.3435153190509099,0.341814141734783,0.3426095266340435,0.3444951452979723,0.346084802355222,0.3470152768097651,0.3471289489370157,0.347790404040404,0.3479689434004726,0.3501791941108098,0.3496887586964481,0.3504080817304948,0.3523273721595373,0.3540577523595663,0.355568814638027,0.3609251923689842,0.3630677903217257,0.3655575822378766,0.3669250645994832,0.36727613689639,0.3684769775678866,0.3725910064239828,0.3718788374948833,0.3734107241569928,0.3783371472158657,0.0,2.146663918050604,57.7037604498109,196.50305609155336,301.7021392533524,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95749,42402,398.8135646325288,6783,69.62997002579662,5330,55.11284713156274,2138,22.015895727370523,77.32698317968122,79.68584377221362,63.31555014592704,65.06101607465604,77.06267660886698,79.4196910633751,63.219527107012894,64.9659825395069,0.2643065708142416,266.1527088385185,0.0960230389141472,95.0335351491418,118.32634,82.91051665099029,123579.71362625198,86591.52226236336,281.01314,176.38147399560577,292934.35962777684,183657.32696488296,304.98695,146.69482451429116,314229.1721062361,149943.3280808667,3066.78084,1389.380809071493,3174184.6703359825,1422615.4511074258,1303.62157,574.0171807469014,1348549.060564601,586554.3450551981,2102.18686,869.0434272968403,2168189.934098528,886570.3307246922,0.37733,100000,0,537847,5617.259710284181,0,0.0,0,0.0,23679,246.7284253621448,0,0.0,28298,291.2615275355356,1862967,0,66854,0,0,4707,0,0,54,0.5639745584810285,0,0.0,0,0.0,0,0.0,0.06783,0.1797630721119444,0.3151997641161728,0.02138,0.3201735965280694,0.6798264034719306,24.898308882497297,4.543712899036089,0.3279549718574109,0.2138836772983114,0.2288930581613508,0.2292682926829268,11.22127162040838,5.641098132613452,22.81890202835182,12595.68605135591,60.31421844253499,13.379298220148833,19.902724538846883,13.621876769369766,13.410318914169492,0.5566604127579737,0.7640350877192983,0.7088100686498856,0.5737704918032787,0.1284779050736497,0.7248716067498165,0.9202127659574468,0.852017937219731,0.7624113475177305,0.1814671814671814,0.4988656415427275,0.68717277486911,0.6597542242703534,0.5170575692963753,0.1142263759086189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795197811661,0.0047656709456307,0.0067900858656598,0.009051934330299,0.0112789219425375,0.0136041953057379,0.0155708284047803,0.0179960394422554,0.0202056334573402,0.0225483874269454,0.0248741941765483,0.0268536292433558,0.0290383923523667,0.0312715590473346,0.033256999030348,0.0352865807664886,0.0372490760200014,0.0391975852876806,0.0413951506459223,0.0432413850577107,0.0570372767414428,0.0709368984852288,0.0838470247829915,0.0968949061324027,0.1087068792883567,0.123674500724201,0.1366094720990901,0.1484202009879066,0.1593886929571444,0.1703333261788757,0.1836404784998383,0.1962381019415898,0.2078577723617926,0.2188443530389883,0.2292274333263623,0.2402580130336481,0.2497458980688253,0.2590761677401919,0.2681727318159102,0.2763382573717324,0.284422366577506,0.2922307584203869,0.299625468164794,0.3071373697604072,0.313575200136263,0.319934838144368,0.3253046792717789,0.3309751434034417,0.334842626949324,0.3399659122438463,0.3404005822730213,0.3401989419155737,0.3403133240266791,0.3395207413306305,0.3395855662736691,0.3388203860387267,0.338110883608717,0.3388327795506135,0.3406156901688182,0.3411344350156319,0.3428512466465302,0.3432090941498,0.3426635238656452,0.343850914962325,0.3461028152365329,0.3468218676432121,0.3487887098617301,0.3517882464156294,0.3556461819715933,0.3581081081081081,0.3609162947445122,0.3601913366994419,0.3634244676830036,0.3663494480395889,0.3682378398720481,0.3706517867743084,0.3641396278640627,0.3640065146579804,0.3720346078704996,0.378988326848249,0.0,2.1129582279447727,60.32998770629203,200.22892469702745,300.84513452087907,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95761,42500,400.215118889736,6793,69.83009784776684,5300,54.80310355990435,2185,22.493499441317446,77.39144353273707,79.73122402322437,63.36142006586866,65.08755525610874,77.12563619536527,79.4643909293193,63.26382230764533,64.99223718420495,0.2658073373717968,266.8330939050776,0.0975977582233298,95.31807190379028,117.91956,82.57727825397866,123139.44089974,86232.68162819798,282.37773,177.4636446555558,294337.3607209616,184779.100735744,302.29522,144.91061005153284,312254.7905723624,148644.8032434826,3059.19128,1385.0716009906232,3166230.8455425487,1418003.8230496985,1249.24797,544.830463610041,1292286.703355228,556687.1310972533,2152.8273,899.1439885579761,2218335.4601560137,912209.9136942514,0.37928,100000,0,535998,5597.247313624544,0,0.0,0,0.0,23816,248.1385950439114,0,0.0,27919,288.1026722778584,1870329,0,67056,0,0,4615,0,0,67,0.6996585248692057,0,0.0,0,0.0,0,0.0,0.06793,0.1791025100189833,0.3216546444869719,0.02185,0.3134286515278945,0.6865713484721054,24.908054031191828,4.472848756961899,0.3192452830188679,0.2073584905660377,0.2360377358490566,0.2373584905660377,11.00199999197726,5.515909851892624,23.297435901939487,12674.578753859903,59.81171870731353,12.973723562877783,19.01997062717045,13.866756332554608,13.951268184710688,0.5384905660377358,0.7779799818016379,0.692080378250591,0.5523581135091926,0.1089030206677265,0.7041053446940356,0.9116809116809116,0.8843373493975903,0.7038461538461539,0.1471698113207547,0.4851583936143677,0.7152406417112299,0.6296006264682851,0.5126135216952573,0.0986908358509567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019945731410983,0.0042461769206603,0.0066049796067449,0.0089070799605935,0.0113166109139713,0.0133539614037944,0.0154167515793764,0.0177015528393902,0.0200022474435329,0.0219980355242694,0.0242622950819672,0.026263952724885,0.0284419601113839,0.0305366295465305,0.0326986712299112,0.0349458200336752,0.0368342613483471,0.038851263755069,0.0408303275365633,0.0428034209402377,0.0574100749462432,0.071079534158566,0.0847653217515368,0.0972277727530866,0.1089963938505662,0.1245928683219829,0.1381742210533013,0.1499425507468403,0.1619731094949754,0.1729930215356909,0.1867807739921416,0.1990439315610737,0.2115428509320145,0.2224225142844657,0.2329339342640431,0.2431167279004913,0.2534779506844428,0.2628031588052257,0.2723532078893675,0.2805849237951394,0.2880756426854078,0.294916601404977,0.3023759121066263,0.3082895036361676,0.3140745594874035,0.321035981141598,0.3263576357635763,0.3313989742806602,0.336341507626175,0.3416210512431576,0.3421675725125114,0.3414996288047513,0.3409375571724108,0.3410779998556894,0.3416983260121097,0.3404437381578143,0.3400243405143119,0.340756034016615,0.3418628454452405,0.3418164296039833,0.3423323702675321,0.3443837135614702,0.3449905482041588,0.3452447756503782,0.346644749564881,0.3484138003300762,0.3500871503271709,0.3515681753576956,0.3529640358934501,0.3561381074168798,0.3607542668379519,0.3603536030002678,0.362994978707176,0.3629879591993251,0.363447559709242,0.363076193861832,0.3644248326232501,0.3578242338136797,0.3561042524005487,0.3539110429447852,0.0,2.1688377588209824,56.66903962345136,210.62394319961356,295.0780483755682,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95718,42588,401.2098037986585,6742,69.08836373513863,5255,54.2113291126016,2156,22.19018366451451,77.37264048070351,79.73224909285125,63.34029949113111,65.08201523729336,77.11444197320381,79.47320249121036,63.24571093693207,64.9894688826848,0.2581985074996993,259.04660164088966,0.0945885541990421,92.54635460855808,118.22558,82.81370049378724,123514.46958774734,86518.41920410711,282.72359,178.11639879730168,294706.1994609164,185419.345156921,308.24026,148.31808253569943,316715.0170291899,150961.8195905562,3012.79,1375.3582894276185,3112361.185983828,1401783.8546543252,1315.24178,575.9791324428004,1360766.6478614262,588479.3240154528,2120.82888,878.9139464384632,2185283.917340521,892572.3195749014,0.37902,100000,0,537389,5614.2940721703335,0,0.0,0,0.0,23897,248.970935456236,0,0.0,28489,292.44238283290497,1863447,0,66894,0,0,4620,0,0,64,0.6581834137779727,0,0.0,0,0.0,0,0.0,0.06742,0.1778797952614637,0.3197864135271432,0.02156,0.3161171642847035,0.6838828357152964,24.93615033604434,4.533133363613175,0.3252140818268316,0.2119885823025689,0.2258801141769743,0.2369172216936251,11.21694518405774,5.748494425628145,22.785369536381307,12684.117390403262,59.66929356651701,13.303967921900826,19.330160566302023,13.38924874664957,13.6459163316646,0.5478591817316841,0.7710951526032316,0.70040959625512,0.5703454085930918,0.1172690763052208,0.7164835164835165,0.9236842105263158,0.8680555555555556,0.7157534246575342,0.1647509578544061,0.4886889460154242,0.6920980926430518,0.6436961628817541,0.5229050279329609,0.1046747967479674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0044591732287454,0.0066242632662791,0.0088864965875853,0.0109813012842021,0.0135798196143901,0.0158607192367283,0.0180662019127718,0.0204233918367764,0.0226225816357866,0.0246578151432819,0.0266524301349048,0.0288525803831244,0.0307723995880535,0.0330031981842566,0.0350461977304202,0.0369392593512853,0.039113388374891,0.0408871705329674,0.0427546269775967,0.0571234664578439,0.0715062989160005,0.0842446292082997,0.0970813583192323,0.1090824759655928,0.1240498567516994,0.1373370527901229,0.1499781838304937,0.1619961981246929,0.1727133312599869,0.1863645663949343,0.1996148769986369,0.2115148285499885,0.2229501383526735,0.2336333428690887,0.2442245687123973,0.2535555605170912,0.2632817602414251,0.27252277839631,0.2807188568020735,0.2894404760526529,0.2967627162285527,0.303957345971564,0.310423441043424,0.3161548374547134,0.3218752312587878,0.3271853048345291,0.3324681273379647,0.3366699471666839,0.3411316074208956,0.3411459034490186,0.340561961636899,0.3405529564286116,0.3409018598328175,0.3404587647268832,0.3396608298322549,0.3381024812244509,0.3390984118633479,0.3396232859167677,0.3396391256284991,0.3403630788789799,0.3409171562635543,0.3428320177550721,0.3449145356361851,0.3458105384393896,0.3469860092578145,0.3485205923315237,0.3499169773489144,0.3520590085995945,0.3555800843615721,0.3578098087208775,0.3609110169491525,0.3631778058007566,0.3630209917858229,0.3633467628595521,0.3630543040075883,0.3649724433557869,0.3665991902834008,0.3703396851698425,0.3781609195402299,0.0,2.7231333118192684,59.67150521863479,203.69145478926544,286.7595653618361,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95745,42402,400.1671105540759,6849,70.40576531411561,5318,54.989816700610994,2142,21.9959266802444,77.33281654085012,79.69834834413928,63.319784280511655,65.07074543789982,77.07447434439969,79.4386502816685,63.22571846110996,64.9784413720682,0.2583421964504282,259.6980624707754,0.094065819401699,92.30406583161256,118.32458,82.84724227616955,123582.80850174944,86528.87881908887,277.98691,174.57644577604614,289747.77795185125,181747.20941521507,304.65072,146.19132784906233,314526.628022351,149960.80234910027,3048.98392,1384.4715609886775,3152617.013943287,1414404.4218858993,1281.69602,558.858903178276,1322223.8445871847,567325.4795029325,2091.22548,864.0031182777941,2148590.2553658155,873798.6880139388,0.37829,100000,0,537839,5617.400386443156,0,0.0,0,0.0,23453,244.3365188782704,0,0.0,28244,291.3050289832367,1867636,0,67040,0,0,4649,0,0,51,0.5326648911170296,0,0.0,1,0.0104444096297456,0,0.0,0.06849,0.1810515741891141,0.3127463863337713,0.02142,0.3201888364343238,0.6798111635656762,24.858519999012632,4.393215879740122,0.3253102670176758,0.2154945468221135,0.2376833396013539,0.2215118465588567,11.442947903403326,6.076733605103707,22.656413726108187,12652.907202874652,60.13925105964292,13.674656605174786,19.45138490267742,14.087418693466448,12.925790858324268,0.5588567130500188,0.7766143106457243,0.6953757225433526,0.5925632911392406,0.1103565365025466,0.7278810408921933,0.9240837696335078,0.8599562363238512,0.7230215827338129,0.1403508771929824,0.5016360432922226,0.7028795811518325,0.6362922230950511,0.5557809330628803,0.1031578947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023406863986867,0.0045845039708701,0.006904254239009,0.0089244874518453,0.0112318398241972,0.0135470990873533,0.0156641987395215,0.0179276970668409,0.0201020439463809,0.021953716977268,0.024236956231994,0.0261839240974247,0.0281627868717611,0.0301132852729145,0.0319328944924784,0.0339442049882683,0.0356983813005519,0.0376820016812129,0.039855675248513,0.0419522866965308,0.0568234016787071,0.0706416547221728,0.0834714037037813,0.0958158116063919,0.1081773336706299,0.1235989510637397,0.1369849939021157,0.1493129835988803,0.1610894526034713,0.1721216540837337,0.1858196500672947,0.1990024451994027,0.2109006285478153,0.2217411744126297,0.2320552585846587,0.2432788555230755,0.2531022630897647,0.2626828719333783,0.271755413318807,0.2796601435916226,0.2871462468892876,0.2947512615471075,0.3019831303606122,0.3087392378348562,0.3147959059635815,0.3209055579544753,0.3264605671911013,0.3315382754713618,0.3366077445440879,0.3411411887492899,0.340902658922146,0.3409413352801003,0.3418235667442352,0.341787352247573,0.3417706441142312,0.3410620907515603,0.3402967095669815,0.3415275404232943,0.3430871519647221,0.3436930661236738,0.3447253901560624,0.3454361777989065,0.3461312520980195,0.3460875405798724,0.3459025484003182,0.3471335913798514,0.3485702836534333,0.3512651230375588,0.3532275132275132,0.3551517571884984,0.3568943416956601,0.3575971353749131,0.3580692098437401,0.3600152613506295,0.3606356968215159,0.3650473933649289,0.3712364358856793,0.3678556951763275,0.3705135284373274,0.3766781741465286,0.0,2.0612484325886755,59.37780637600675,201.73339584540585,300.7196887365345,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95781,42691,401.3426462450799,6685,68.56265856485106,5102,52.70356333719631,2016,20.63039642517827,77.34910350822409,79.67845173700563,63.34642956891118,65.06693646683709,77.09664656721057,79.42825212860174,63.25302001437149,64.97739502934898,0.25245694101352,250.19960840388933,0.0934095545396829,89.5414374881085,118.95642,83.28019360768188,124196.03052797528,86948.32337069137,279.06183,175.73172099896752,290785.3749699836,182903.73978029832,302.79627,145.16059326742047,312783.34951608354,148948.035218057,2925.9012,1326.6233686111186,3024204.7587726167,1354481.2944228172,1217.55393,530.8248335222931,1256868.7004729535,539911.2486269489,1972.53678,825.9395348467398,2020907.82096658,829421.1966678754,0.3787,100000,0,540711,5645.274114907967,0,0.0,0,0.0,23517,244.93375512888773,0,0.0,27974,288.7837880164124,1864062,0,66955,0,0,4553,0,0,53,0.5533456531044779,0,0.0,1,0.0104404840208392,0,0.0,0.06685,0.1765249537892791,0.3015706806282722,0.02016,0.3115059464106605,0.6884940535893395,25.11426723246971,4.529796010846315,0.3369266954135633,0.2144257154057232,0.2261858094864759,0.2224617796942375,11.269053625236504,5.796428254731226,21.56156066532192,12686.733126900275,57.74891575264065,12.978797917184906,19.45786959329933,12.916920976090644,12.395327266065772,0.5564484515876127,0.7641681901279708,0.6893542757417103,0.598786828422877,0.1118942731277533,0.7395348837209302,0.9105691056910568,0.859375,0.7631578947368421,0.144927536231884,0.4944910807974816,0.6896551724137931,0.6294256490952006,0.5495495495495496,0.1045258620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0047436118347033,0.0070710452364285,0.0093752221917502,0.0115304835888884,0.0137424162221588,0.0158074970953341,0.0179823442363627,0.020445697820556,0.0223652305583122,0.0242698056571492,0.0265466747390996,0.0288066266546082,0.0310434979517055,0.0333133995958262,0.0354800392501162,0.037552126988069,0.0393309691200564,0.0415441367485842,0.0435706252343066,0.0581378360327266,0.0713837464700345,0.0847688646109649,0.0968850494987073,0.1090269142411532,0.1235879064557376,0.1367943527017573,0.1488243989068133,0.160135322618514,0.1709308305476986,0.1841762546953536,0.1972403650676932,0.2095025822234302,0.2203912477720309,0.2306329698863448,0.2421255482213263,0.2526615333110144,0.2623306537748046,0.2717732878033285,0.2803063256942695,0.2879877865420647,0.2956975411178438,0.3033816882410015,0.3102072600934467,0.316397901690305,0.3222549587642845,0.3280853034304093,0.333040544841194,0.3378485229496934,0.3422342604214838,0.3420520426048267,0.3417817470161801,0.3418183869466499,0.3415368143871985,0.3410891898722885,0.3411507000398272,0.3405063892451665,0.3419272201786653,0.3436304644808743,0.3446034042401186,0.344603454089087,0.345026924295217,0.3463425887090009,0.3459814424671657,0.346263465533066,0.3484812747333385,0.3495340501792114,0.3522453380692629,0.3542153323423232,0.3580929487179487,0.3609301898908357,0.3604508306180225,0.3646092107777565,0.3655071796053137,0.3686013320647003,0.3671526689962646,0.3715310258808855,0.3701498665571751,0.3823284245623784,0.3936044216344256,0.0,2.1415284967275863,56.675676131925286,196.47729645367144,285.62351407252544,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95663,42898,402.8621306043089,6759,69.36851238200768,5324,55.0474059981393,2120,21.763900358550327,77.31532774038504,79.70606698733855,63.31028192710126,65.0754820112392,77.05036014168074,79.44229970896093,63.21228696560786,64.98108865817017,0.2649675987043025,263.76727837761393,0.0979949614933985,94.39335306903727,118.04188,82.73617693467273,123393.45410451273,86487.12348000033,282.61551,178.0682076381255,294830.2478492207,185543.3227694062,313.69505,150.77325350415032,323979.9922645119,154609.10842896526,3036.14572,1374.0291570188383,3139658.384119252,1402201.5849118675,1264.75733,552.9317234478735,1307807.8462937605,563726.4781533659,2073.22228,866.5732255150222,2129322.036733115,872351.0057132582,0.38096,100000,0,536554,5608.793368386941,0,0.0,0,0.0,23799,248.1523682092345,0,0.0,29068,299.9174184376405,1862069,0,66783,0,0,4739,0,0,52,0.5435748408475586,0,0.0,0,0.0,0,0.0,0.06759,0.177420201595968,0.3136558662524042,0.0212,0.3186782413889666,0.6813217586110333,25.001681406375265,4.419294480104661,0.3240045078888054,0.2272727272727272,0.2267092411720511,0.2220135236664162,11.129722228969866,5.762744426728698,22.51688703044719,12776.314787282874,60.00680651651932,14.110610737403231,19.63365340319819,13.417515770449937,12.845026605467952,0.5619834710743802,0.7793388429752066,0.7136231884057971,0.5700082850041425,0.1099830795262267,0.7158920539730135,0.9236842105263158,0.8660508083140878,0.7116104868913857,0.1535433070866141,0.5105263157894737,0.7132530120481928,0.6625386996904025,0.5297872340425532,0.0980603448275862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0047040694255763,0.0071038584099535,0.0093674435616605,0.011688232421875,0.01414820473644,0.0166557871975847,0.0189060824268423,0.0211791174515518,0.0232146148647264,0.0254958669210099,0.0276216988012449,0.0298949664118839,0.0320556414219474,0.0340937241948802,0.036343703458547,0.0382339836909782,0.0404380092376355,0.0425456663754004,0.0446410889799151,0.0588763857108526,0.0727942870306381,0.086278378974106,0.0984762385823125,0.1100756704273215,0.1256179275741248,0.1383594372179453,0.1511013591240254,0.1628153056861906,0.1743414696979455,0.187735788044064,0.2008035172832019,0.2118774154918077,0.2225274424611209,0.2333168125998127,0.2441185931208891,0.2540436084178544,0.2632100210459973,0.2728924212319046,0.2811224723737906,0.2898028677986518,0.2969245718165748,0.3039945996518196,0.3105964238569543,0.3166050853225728,0.3221335832213358,0.3278596122050203,0.333163583586897,0.3388080774063184,0.3432005812033551,0.3435676258507986,0.3433181310883613,0.3432457191177507,0.3428186831478238,0.3422685013015991,0.3425566814342434,0.3414251533061845,0.3430746763369049,0.3441457453899133,0.3449483578142311,0.3456272126173038,0.3467107084932157,0.3472204714483802,0.347672019377411,0.3487670704048641,0.3497687544093439,0.3513180515759312,0.3545070914109845,0.3551209834555567,0.3582992706580107,0.3597462885508112,0.3638989942221271,0.3653784936652448,0.3697803897309001,0.3742835307604127,0.376607765356413,0.3771069567882317,0.3778089887640449,0.3749653835502631,0.3800076306753148,0.0,2.36353571318515,58.57252343022619,200.6710135607593,302.4704867146356,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95625,42577,402.237908496732,6916,71.15294117647059,5441,56.30326797385621,2138,21.96078431372549,77.3146043072854,79.73322090573177,63.296484254502126,65.08277260282894,77.04942941856406,79.4682963585781,63.199599389209965,64.98838792937036,0.2651748887213472,264.92454715366875,0.0968848652921607,94.3846734585776,116.70912,81.77650681794665,122048.29281045753,85517.48918367233,280.07268,175.17058610494,292281.6836601307,182581.55301173337,307.58015,147.23118653808618,317711.90588235296,150934.25494185646,3140.05744,1420.186286514011,3252819.325490196,1454334.3143675923,1329.11793,582.2942366893769,1373050.122875817,592097.1930782284,2110.63958,875.1752485815545,2171152.962091504,885295.4313402723,0.38033,100000,0,530496,5547.649673202614,0,0.0,0,0.0,23564,245.7934640522876,0,0.0,28531,294.4522875816993,1873094,0,67168,0,0,4677,0,0,43,0.4392156862745098,0,0.0,0,0.0,0,0.0,0.06916,0.1818420845055609,0.3091382301908618,0.02138,0.3264156129741616,0.6735843870258383,25.02874292176781,4.494434246616119,0.3260430068002205,0.208968939533174,0.2328616063223672,0.2321264473442381,11.187702185604364,5.624074821494974,22.731499565590926,12741.732335504676,61.31797350196884,13.397206132933004,19.857809965512413,14.155554470830872,13.907402932692545,0.5565153464436684,0.7678100263852242,0.7029312288613303,0.6045777426992897,0.11243072050673,0.7055837563451777,0.8994708994708994,0.871264367816092,0.7222222222222222,0.1269230769230769,0.5059084194977843,0.7022397891963109,0.6482449589245706,0.5671175858480749,0.1086739780658025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020974131903985,0.0043200048676111,0.0063852682015673,0.00873850530915,0.0109659830729166,0.0129863515991036,0.0150855254434369,0.0172744917764838,0.0193308854363768,0.0215563588698528,0.0235487179487179,0.0257216230097586,0.0279926751985515,0.0301687720238217,0.0322260988046821,0.0342763198709597,0.0363474350605617,0.0383105961502522,0.040203932993445,0.0422190006362052,0.0570792482806196,0.0706017912323888,0.0841182338425998,0.097403349226899,0.1101377381392157,0.1255426381212544,0.1391305271431454,0.1516649794874527,0.1628195528933576,0.1740587571835222,0.1872552509789961,0.1999328066239663,0.2117953411344272,0.2229306340651154,0.2330287565994687,0.2440542910095775,0.2544342986152247,0.2639555585603858,0.2741000818107444,0.2825388814974537,0.2894078688372739,0.2966356561933181,0.3038361354487331,0.3110229139438122,0.3174884624726742,0.3235156384787913,0.328574288645862,0.3332909315253202,0.3376446826691525,0.3428379074096075,0.3431673671731867,0.3440673767649244,0.3443466734354288,0.3444836869988131,0.3445651040502897,0.3442592734812994,0.3427100219319157,0.3432779207071706,0.3429764133926577,0.3437528005305325,0.3445009285486503,0.3448554958938724,0.3469724847369742,0.3489172458488837,0.3504810806919884,0.3504608594054265,0.3538854950987356,0.3560584718439916,0.3585803787056806,0.3627967814816283,0.3636487530095852,0.3671148429611521,0.3692268597928975,0.3711024285604842,0.3746452223273415,0.380768767321364,0.3858797745773325,0.3855695679139962,0.3824756606397774,0.3860958366064415,0.0,2.3216279263895028,60.79502276122417,203.97003771339487,306.85046902662174,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95636,42663,403.9483039859467,6758,69.40900915973064,5278,54.508762390731526,2081,21.362248525659798,77.29129418892526,79.69205534798745,63.29829466637945,65.07021080730377,77.0295226296413,79.4310441945557,63.20254672101076,64.97771060185809,0.2617715592839573,261.0111534317525,0.0957479453686929,92.50020544567406,118.73202,83.21754801614641,124149.92262327994,87014.87725976245,279.14965,175.06458981227448,291227.2366054624,182392.6343764633,308.05692,148.00404368324095,317779.7900372245,151436.81350584712,3003.90004,1371.08317116001,3102628.424442678,1395303.9139654636,1271.3119,555.4054118208819,1310414.4778117028,561840.2085207257,2041.7955,851.7063811846144,2096222.2384875985,856772.8466255915,0.37893,100000,0,539691,5643.178301058179,0,0.0,0,0.0,23565,245.702455142415,0,0.0,28530,293.92697310636163,1862143,0,66818,0,0,4673,0,0,42,0.4391651679283951,0,0.0,0,0.0,0,0.0,0.06758,0.1783442852241838,0.3079313406333234,0.02081,0.3244650900900901,0.6755349099099099,24.868020720031463,4.478701797262361,0.315081470253884,0.2303902993558166,0.2258431223948465,0.2286851079954528,11.131241055599563,5.5965527061624005,22.194111544897464,12670.392369795663,59.86861609296965,14.41589898748065,18.908429153533547,13.32146760800298,13.222820343952485,0.5570291777188329,0.7796052631578947,0.6993385447985568,0.575503355704698,0.1184755592377796,0.7055435565154787,0.896551724137931,0.8458049886621315,0.7243816254416962,0.1467181467181467,0.5039856004114168,0.7209876543209877,0.646481178396072,0.5291529152915292,0.110759493670886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451303141112,0.0045219507249315,0.006912091592826,0.0090234732242658,0.0109167862120888,0.0129245811478331,0.0149377001040031,0.0172360977801376,0.019528054964829,0.0216042430323756,0.0237201575190745,0.0257071256906928,0.0277763489532431,0.0298112196529409,0.0314971197324138,0.0335112324686607,0.0353808048252204,0.0371612501297892,0.0392783194081719,0.0413360994985456,0.0555334935729961,0.0693747577697005,0.0828476925500078,0.0951959917477158,0.1074545895912271,0.1227202963747023,0.1369803388678925,0.1494934861574187,0.1610589002576685,0.1718396049170648,0.1860194300378465,0.1988304726839569,0.2108631762272776,0.2225956906367697,0.2335787339093634,0.2446489963402462,0.2541390173604129,0.2632752079791964,0.2721255265279244,0.2804331633530052,0.2883304200863555,0.2957659143823196,0.3025368326306314,0.3086205035324033,0.3158842130868401,0.3222294903916172,0.3280776076003309,0.3328872404695446,0.3376913099870298,0.3424454921226048,0.3423680841027023,0.3425546871769425,0.3424707808706453,0.3420515271321197,0.3424851401075573,0.3424316473788556,0.341944806122773,0.3429955671275316,0.3441832532601235,0.3457345716642163,0.3458397621646031,0.3472473327637931,0.3477986096481988,0.3478055686644644,0.3487149814359419,0.349717632294499,0.3491308064975776,0.3527019358093196,0.3547954393024815,0.3551495282264513,0.3574799541809851,0.3603944562899787,0.3635036496350365,0.3649325626204239,0.3645306083468627,0.3645820733034958,0.3655258634161588,0.3606934001670844,0.3582933031929923,0.3629658385093168,0.0,2.641477990850656,60.83686263910815,192.711400509064,300.27795047720025,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95626,42713,402.88206136406416,6838,70.28423232175349,5422,56.05170142011587,2132,21.866437998034005,77.27514686010801,79.68612592539615,63.27600815666828,65.0565483011138,77.00492772559006,79.41775001738007,63.17633218006816,64.96018865595514,0.2702191345179443,268.3759080160826,0.0996759766001247,96.359645158671,117.58054,82.41540520117834,122958.29586095831,86184.71693380283,282.34862,176.94308472724472,294608.0040993035,184383.6467246724,312.35699,149.70758980474653,322966.348064334,153658.41886750393,3096.66956,1408.0892936439768,3203423.169430908,1437825.4197577315,1299.55173,569.2111050188964,1342901.5016836424,579452.3410184857,2087.15888,872.959669438844,2143976.094367641,881648.7867877629,0.37992,100000,0,534457,5589.013448225378,0,0.0,0,0.0,23743,247.60002509777675,0,0.0,28894,298.4021082132474,1862812,0,66881,0,0,4602,0,0,59,0.6169870119005291,0,0.0,0,0.0,0,0.0,0.06838,0.1799852600547483,0.311787072243346,0.02132,0.3332402624598632,0.6667597375401368,24.89748232814877,4.437898930374043,0.3321652526742899,0.2203983769826632,0.2264846919955735,0.2209516783474732,11.19069941431598,5.704928169723124,22.72209867125096,12731.842230333988,61.51017841021757,14.18667406985844,20.40281570580067,13.813351994313098,13.10733664024537,0.5592032460346735,0.7665271966527196,0.7018323153803443,0.5765472312703583,0.1202003338898163,0.7119370979270908,0.8987654320987655,0.8408071748878924,0.7439446366782007,0.1621621621621621,0.5060899826000497,0.6987341772151898,0.6560885608856089,0.5250266240681576,0.108626198083067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0043582700708472,0.0067677946324387,0.0088471305231081,0.0107812325186383,0.012974580413883,0.0151323571399437,0.0173454073975763,0.0195986218600799,0.0217787516382699,0.0237760659739673,0.0259497442008588,0.0278206473650636,0.0299232077513786,0.0319599339116067,0.0342837043780518,0.0365068670640062,0.0388426147103421,0.0407526120800899,0.0427795217287014,0.0583003229616313,0.0728461554582224,0.0866852250643416,0.0987452723844038,0.1103317875967845,0.1258539065230515,0.1384227920470123,0.1512434841006726,0.1623698376515662,0.173384063111283,0.1871059677001468,0.2000433768909613,0.2119639859606287,0.2232432669532415,0.2340249420593753,0.244892517913681,0.2547878353723374,0.2643381108227062,0.2731846691481975,0.2814471008581965,0.2886686472936589,0.2960616619153204,0.3036521821699445,0.3102068285882536,0.3164142397974092,0.3227989576772504,0.3282518412566969,0.3336647926467026,0.3383080699840237,0.3438550517483258,0.3435968075193453,0.3426927534632154,0.3425582084915917,0.3423243423243423,0.3425291805621724,0.342009545880078,0.3418779030135857,0.3429722839049264,0.3439170609233292,0.3445456168541332,0.3461228014191053,0.3466508360542198,0.3477923114069159,0.3484196368527236,0.3481352908560546,0.3485509708103588,0.3499814280408012,0.3516476572620138,0.3524367434802555,0.3549880287310455,0.3573094334446019,0.3623963626638138,0.3635100132667888,0.3640380952380952,0.3674184988627748,0.3675851281434243,0.3665375677769171,0.3733031674208145,0.3701425775789768,0.3665632273079907,0.0,2.405482013159499,61.64469315447668,204.65188270343376,304.44402934924085,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95681,42885,404.6048849823894,6733,69.12553171476051,5256,54.31590388896437,2126,21.812063001013787,77.28391542799022,79.67998446097752,63.28504443165552,65.05906414010248,77.01693796950367,79.41430740370062,63.18623066297583,64.96372158179967,0.2669774584865507,265.6770572769034,0.0988137686796903,95.34255830280358,118.8957,83.32681564220299,124262.60177046644,87088.15296893111,282.99253,178.4692549327623,295150.6150646419,185909.20342885453,311.86243,150.06457656650124,321965.35362297634,154003.27509937686,3018.26816,1375.3669253228231,3120993.551488801,1404078.7489799338,1261.46073,552.4958269881392,1305463.3208264962,564564.3568340486,2089.52042,871.9922703844336,2146365.485310564,879315.0511114678,0.38074,100000,0,540435,5648.300080475748,0,0.0,0,0.0,23887,248.99405315579892,0,0.0,28740,296.4538414105204,1856224,0,66642,0,0,4700,0,0,58,0.5957295596826956,0,0.0,0,0.0,0,0.0,0.06733,0.1768398382098019,0.3157582058517748,0.02126,0.3319695259593679,0.6680304740406321,24.90112488989484,4.444549805685051,0.3198249619482496,0.2258371385083714,0.2205098934550989,0.23382800608828,11.221678733967307,5.721084575303856,22.721195213227137,12766.500697395884,59.61690984520381,14.085370933723482,19.021420707912604,12.95681622410362,13.553301979464107,0.552130898021309,0.785172704296546,0.7031528851873885,0.5539257981018119,0.1187957689178193,0.7259148618371919,0.924812030075188,0.877030162412993,0.6931818181818182,0.1714285714285714,0.4927240234873627,0.7144670050761421,0.6432,0.5128491620111731,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205853144443,0.0045135507951963,0.0067717798511629,0.0090344610319,0.0112939165471139,0.0137723086952978,0.0158906624509153,0.017822854107938,0.0201278445410381,0.022239750865619,0.0244065084022406,0.0264069130626881,0.0285249747885323,0.0304648046995774,0.0326403369325102,0.034417498319458,0.0366087434072139,0.0384906835521876,0.0406411883412736,0.0425882303891934,0.0579269566670845,0.0723484451889854,0.0858024496992978,0.098553012365167,0.1102819324670938,0.1266104188941702,0.138865880853775,0.151681683600656,0.1634740780331373,0.1746989245003542,0.1879688712598085,0.2011309349712391,0.2125412397513093,0.2232735396543794,0.2337135614702154,0.2447271435549043,0.2548324706250628,0.2642494054529265,0.2733059034802573,0.2813446535107847,0.2889530568698395,0.295939669731657,0.3039469312194427,0.3105469219129056,0.3173089802130898,0.3228924885179515,0.3282771934662973,0.3332908715701511,0.339257703625922,0.3443594924005335,0.3447797012349674,0.3449667387441982,0.3456377730796335,0.3452707977908221,0.3451341932024664,0.3445278788716389,0.343078095722044,0.3427603112712436,0.3455137543919787,0.3459905026431323,0.3468519355324597,0.3478823084727555,0.3489581131915972,0.3492074229407653,0.350029163021289,0.3501787028277094,0.3495418098510882,0.3520002533971049,0.3516010720835096,0.3549785271194528,0.357573542846702,0.3584574468085106,0.3605467770253323,0.3645535310947146,0.3694315004659832,0.3714925725064843,0.3716638706725637,0.3712090578245046,0.3732962447844228,0.3829869130100077,0.0,2.3519483817054727,58.90811860115653,201.5111078718079,294.26828390768566,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95656,42923,404.6479049928912,6651,68.30726770929162,5234,54.13147110479217,2004,20.57372250564523,77.35161970545354,79.75774359697016,63.31721993396855,65.09455480057815,77.10734740080255,79.5128474429787,63.22676166923478,65.00567945599178,0.2442723046509911,244.89615399146203,0.090458264733769,88.87534458636992,119.394,83.48929637171045,124816.0073597056,87280.77315768007,281.39929,177.35408359378758,293587.51149954,184818.4218249793,307.10446,147.40307113495788,316947.54118926154,150894.34237598185,2967.13376,1354.2520043428892,3071558.626745839,1385527.4291195082,1239.32429,551.1446371503537,1278126.0035962197,558938.8140215075,1962.0685,826.5903284246679,2017042.0674082127,836720.6810923569,0.38185,100000,0,542700,5673.454879986618,0,0.0,0,0.0,23783,248.03462406958263,0,0.0,28464,293.4682612695492,1859919,0,66756,0,0,4804,0,0,55,0.5749770009199632,0,0.0,0,0.0,0,0.0,0.06651,0.1741783422810004,0.3013080739738385,0.02004,0.3346727898966705,0.6653272101033295,25.01001785555376,4.355709434394635,0.3366450133740924,0.2164692395873137,0.2329002674818494,0.2139854795567443,11.169294165534264,5.755191617593397,21.37328201574733,12702.382845241924,59.29996371505557,13.556267960440854,19.802216937874068,13.551627977860106,12.38985083888054,0.5638135269392434,0.7969991173874669,0.6821793416572077,0.5758818703855619,0.1285714285714285,0.7295918367346939,0.9238578680203046,0.8822222222222222,0.6725978647686833,0.2064777327935222,0.5049197307094769,0.7293640054127198,0.6135670731707317,0.5469083155650319,0.1065292096219931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505334292459,0.0046544643309841,0.0067083443278462,0.0089713890920913,0.0112502415852058,0.0133937665512324,0.0157854484270636,0.0183190205348663,0.020521472392638,0.0226262419338318,0.0246632400767392,0.0268926042769208,0.0289277885832484,0.0307738303882554,0.0328981345673146,0.0348552096588969,0.0369176555941338,0.0389702065815426,0.0412917052465122,0.0432175998331769,0.0575703434368763,0.0710666275807194,0.0846845712246675,0.0973980198436497,0.1095563716179139,0.1248505116997745,0.1379888742621767,0.1505696047401344,0.1619832058619029,0.1726870543767717,0.1858178053830227,0.1991246790670465,0.2109966907602543,0.2215958227058269,0.2323517103147507,0.2432288606303839,0.2531596062085843,0.2628900224076388,0.2719375936776128,0.2802978235967927,0.2891822778658459,0.2967665006663393,0.3035773434912223,0.309897455556088,0.3164311039875662,0.3224749682870056,0.3274261076048241,0.3320841484793821,0.3375547600894253,0.3417604845611956,0.3420461424631735,0.3420134117517726,0.3422926458585461,0.3423931870669746,0.3423154581625987,0.3414037287980056,0.3398033698985236,0.3403592225047158,0.3415350465294971,0.3422672686069128,0.3433367052564535,0.3443810576600407,0.3452348543547002,0.3474806979961619,0.3485647194134279,0.3485933769334579,0.3490016757079155,0.3534431372549019,0.3564425770308123,0.3575839138695377,0.3571979842920053,0.3605850168350168,0.3594775326542091,0.3651659845384266,0.3671407185628742,0.3690547145070926,0.367952066369642,0.3705645161290322,0.3619332066250339,0.3595336592704024,0.0,2.276255521012423,60.5266679655824,194.26923406238936,293.0830395395155,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95788,42862,403.610055539316,6751,69.18403140268093,5256,54.26567002129703,2070,21.265711780181235,77.3507064425629,79.6816044249581,63.34838135415546,65.07104914214985,77.08740169315129,79.41764120519773,63.24978992869336,64.97490071552855,0.2633047494116027,263.9632197603703,0.0985914254620965,96.14842662129774,118.8451,83.21921701499248,124070.96922370236,86878.54116903212,280.94644,176.74408789753377,292708.2306760763,183923.88179890357,307.60382,147.49651667388918,317458.5856265921,151135.08131943934,3014.9588,1375.9349450001853,3113663.54866998,1402568.3645134969,1255.69958,550.0991329433492,1295123.3975028188,558496.2134540332,2038.59296,865.4426279334822,2095708.627385476,874427.8366936569,0.3816,100000,0,540205,5639.589510168288,0,0.0,0,0.0,23738,247.19171503737425,0,0.0,28370,292.5314235603625,1864127,0,66900,0,0,4654,0,0,53,0.5428654946339834,0,0.0,1,0.0104397210506535,0,0.0,0.06751,0.1769129979035639,0.3066212412975855,0.0207,0.3306440198159943,0.6693559801840057,24.83449028845593,4.41236986188973,0.3375190258751903,0.2113774733637747,0.2256468797564688,0.2254566210045662,11.025573270898995,5.574740444594659,22.189708431767844,12710.403976221714,59.45386893419075,13.030611371845897,20.01534031374881,13.239029584927732,13.1688876636683,0.5578386605783866,0.7695769576957696,0.7080045095828635,0.5809443507588533,0.1113924050632911,0.7130111524163569,0.922437673130194,0.88,0.6970802919708029,0.15,0.5044745589363334,0.696,0.649546827794562,0.5460526315789473,0.1005405405405405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0045924574209245,0.0068596710199194,0.0091012514220705,0.0113469985358711,0.0133669968542254,0.0156842362724715,0.0179710381565653,0.0198555034386911,0.0218276708964388,0.0242023075189048,0.0263295607293473,0.0285699604336878,0.0306149760144942,0.0327294100663043,0.0347837765243083,0.036826257463034,0.0390727858927442,0.0410102499662488,0.0430785887545936,0.0576917057086511,0.0720700939953786,0.084921483531459,0.0977909029762905,0.1095207479157224,0.1248784303776058,0.138004538995058,0.1498834523644801,0.1615930809887352,0.1724533439097857,0.1859794169573267,0.1985234507582718,0.2105085850901978,0.2219963940337649,0.2324584070991082,0.2433476062446753,0.2538898796255016,0.2633779076300708,0.2733363564221743,0.2818015337072221,0.2892501819946615,0.2969060360339308,0.3044893032942067,0.3107839378983181,0.317103969111594,0.3232181358960143,0.3283768743043658,0.3336343861702263,0.3375772254529912,0.3415184164369832,0.3420794144162327,0.3416594415314534,0.342347801578354,0.342496274541009,0.342484087799655,0.3416863478820967,0.3407623610031566,0.3412642220868391,0.3411278994072703,0.3422423515511716,0.3421518082263952,0.3426076602500496,0.3453752659406399,0.3468261476776141,0.3476789986226228,0.3500537817771598,0.3500258427611554,0.3521645296432652,0.3544317255555161,0.3567550303417438,0.3589024726537365,0.3607404218682737,0.3622579001019368,0.3654618473895582,0.3681913076485101,0.3683075817463169,0.3662889958094055,0.3795816939324912,0.3844856661045531,0.386907095256762,0.0,2.352275999428952,58.98181739629988,197.13027154513404,297.78193169182714,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95729,42764,402.9499942546146,6697,68.72525566965079,5213,53.78725360131204,2068,21.21614139915804,77.31652017658898,79.67772911145116,63.31665033110207,65.0626347164379,77.0654157681681,79.4278454027086,63.22364305470775,64.97288284575332,0.2511044084208862,249.8837087425585,0.0930072763943172,89.75187068458013,117.39772,82.31906681295534,122634.10251856803,85990.6427964489,279.6287,176.2472647941672,291462.4304024904,183472.59523027128,310.08126,149.44714940407704,319298.74959521147,152576.7499667118,2975.88212,1357.9854163997536,3071827.3041607034,1381947.655937939,1266.20703,560.0694650349614,1304762.872274859,567210.1675657826,2027.60252,847.8156208034803,2081423.8736433056,853858.8642391021,0.3799,100000,0,533626,5574.277387207639,0,0.0,0,0.0,23616,246.01740329471735,0,0.0,28672,294.9576408402887,1867402,0,66977,0,0,4744,0,0,46,0.4805231434570506,0,0.0,0,0.0,0,0.0,0.06697,0.1762832324295867,0.308794982828132,0.02068,0.32589348778076,0.67410651221924,25.057794417017345,4.534319719766742,0.3309035104546327,0.2159984653750239,0.2290427776712066,0.2240552464991367,11.33579844423164,5.814083831290362,22.094521631293865,12697.703969782187,59.0151548395676,13.356427647524074,19.4526651506196,13.35100422144603,12.855057819977905,0.564358334931901,0.7895204262877442,0.7066666666666667,0.5871021775544388,0.1138698630136986,0.7154236060825488,0.9164556962025316,0.8861047835990888,0.7127659574468085,0.1358490566037735,0.5099164926931107,0.7209302325581395,0.645412130637636,0.5482456140350878,0.1074197120708748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026438143859969,0.0048864062610881,0.0069424004059883,0.0093581393458447,0.0117899576822916,0.0140040331615505,0.0158995645212283,0.0178303360803896,0.0199793458144599,0.0222677245968774,0.024413501763596,0.0265019663411678,0.0286390045760707,0.0306656231979569,0.0328327109937491,0.035140105802612,0.0373065576315925,0.0392099912866686,0.0412270397821183,0.0429337917382924,0.057622234519049,0.071061581122796,0.0846293402686745,0.0966130745207726,0.1092366090257275,0.1245557999830781,0.1376713200661942,0.1494853590777975,0.1608050937994102,0.1723597820023173,0.1855462438330784,0.1988399649392388,0.2104181393072698,0.221924578226309,0.2327161037474129,0.2437180638224764,0.2539280170632838,0.2629962192816635,0.2720473066533493,0.2807520020163369,0.2890287790596758,0.2962715988722376,0.3041367715659113,0.3102538265918142,0.3167235992754768,0.3221156812656572,0.3281674789210589,0.3331210515589973,0.337768334866367,0.342779010779962,0.3428941125727841,0.3420773166728729,0.3418252723496248,0.3411640242311817,0.3413126377882381,0.34039907904835,0.3394131641554322,0.3390821638004875,0.3402102519250227,0.3405927095292766,0.3414611202046998,0.3432542829949238,0.3445954474691799,0.3461244835638584,0.3485290923570722,0.3478397076099725,0.3485900402845633,0.35208562883677,0.3554369204832818,0.3573188175460903,0.3586901992976695,0.3607055312799744,0.3651795292484382,0.3676626725314728,0.3694040356640075,0.3708025720409621,0.3697660098522167,0.3687309644670051,0.3810444874274661,0.3783365570599613,0.0,2.6145432752312097,60.50752965414848,189.03009244969547,294.8618263688637,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95681,42820,402.514605825608,6823,70.07660873109604,5301,54.848925073943626,2100,21.59258368955174,77.40264542862671,79.7820920232446,63.35728834693722,65.1114781846886,77.134759289877,79.51374816955108,63.258607318734825,65.01480755578912,0.2678861387497164,268.3438536935228,0.0986810282023924,96.67062889947432,118.88206,83.24540533904505,124248.3460666172,87003.06783901197,282.06951,177.23035656084667,294275.37337611435,184703.82475188043,306.11,147.36017760404525,315852.16500663664,150840.51651810695,3053.5712,1388.9899138364715,3161496.0964036747,1421776.3127856848,1303.08356,574.2987692159821,1347243.0681117463,585561.2391341873,2069.62046,867.7223418613204,2130498.949634724,879917.9535552515,0.38145,100000,0,540373,5647.652093937146,0,0.0,0,0.0,23851,248.72231686541735,0,0.0,28354,292.32554007587714,1865019,0,66835,0,0,4808,0,0,48,0.5016669976275332,0,0.0,1,0.0104513957839069,0,0.0,0.06823,0.1788701009306593,0.3077825003664077,0.021,0.3230340988169798,0.6769659011830201,25.09496673836567,4.559639468305454,0.3338992642897566,0.2120354650066025,0.2214676476136578,0.232597623089983,11.40913039189943,5.811624246170582,22.31223654291337,12812.775647699887,59.6251378761114,13.195673394975776,20.015346237838592,13.09523028479089,13.318887958506146,0.5459347292963592,0.7588967971530249,0.6819209039548022,0.5698466780238501,0.1338199513381995,0.7323008849557522,0.8991825613079019,0.8779443254817987,0.7630662020905923,0.1446808510638297,0.4818757921419518,0.6908850726552179,0.6116653875671527,0.5073280721533259,0.1312625250501002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759283450294,0.0043479582839247,0.0069182389937106,0.0093943918019966,0.011714340915793,0.0139400851271816,0.0162202942285929,0.0184015268266296,0.0205916917888712,0.0227188996684268,0.0247852559503064,0.0267226511169513,0.0291383919391322,0.0310408041360275,0.0333880170448096,0.035533414639188,0.0375141079138925,0.0397438957319414,0.0418811685542832,0.0442214092903521,0.0588020223967909,0.0724434346501376,0.0856147493677793,0.09853791942779,0.1106892369350841,0.1264388489208633,0.1394902160533129,0.1514248304787047,0.1635908998621515,0.1747327106411727,0.1879004555097294,0.2010259074086098,0.2128524975258561,0.2239426147049818,0.234932335790516,0.2460132890365448,0.2566936158349596,0.2664696230698343,0.275,0.2830378588585154,0.2909712516892087,0.2979617566715696,0.3046847315079496,0.311262161482953,0.3179607234264504,0.323512754850783,0.3295937765771174,0.3341761536897743,0.3391857473463741,0.3446522655426765,0.3450036959881728,0.3440969410860585,0.3446362602014299,0.3447898202988774,0.3442882979038809,0.3430702679567723,0.342520806303598,0.3432213133602707,0.3450099817427952,0.345036125234145,0.3470798748383953,0.3478732211140458,0.3490203450724819,0.348311346235407,0.3494769748707466,0.3514430353321852,0.3527296595416797,0.3554290745574038,0.3587568632971983,0.3606922617863536,0.3609483705602343,0.3627996575342466,0.3656574613630605,0.3671331345109734,0.3706970128022759,0.3771773906861002,0.3804532141205488,0.3828837963901845,0.3910414949161858,0.3940661848611639,0.0,2.199988866114738,59.54001976015735,193.5856781036748,303.4654724496153,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95727,42840,402.61368266006457,6865,70.49212865753654,5329,55.094174057475946,2176,22.386578499273977,77.33907921770925,79.7056672874268,63.32552877917672,65.07540933971983,77.07054417966116,79.43827104099019,63.2276119816578,64.98047966577855,0.2685350380480997,267.3962464366184,0.0979167975189128,94.92967394128016,118.9386,83.32467464228361,124247.70440941426,87044.0676531006,285.0074,179.23998378055026,297170.7564219081,186682.16258793263,311.1355,149.02289652771813,321488.2843920733,152947.89747199515,3062.20884,1389.276308864544,3164646.08731079,1417038.2743265177,1287.17347,564.6613287408999,1324258.892475477,569600.5540791679,2140.1457,885.4491211312773,2201614.3616743446,894051.9035909874,0.38114,100000,0,540630,5647.622927700649,0,0.0,0,0.0,24021,250.33689554671096,0,0.0,28878,298.1499472458136,1859651,0,66720,0,0,4737,0,0,42,0.4387476887398539,0,0.0,0,0.0,0,0.0,0.06865,0.1801175421105105,0.3169701383831027,0.02176,0.3235294117647059,0.6764705882352942,24.879130495748147,4.475336021604134,0.3267029461437418,0.2112966785513229,0.2347532370050666,0.2272471382998686,11.024002599282689,5.520060787132333,23.034750212716904,12796.158990679814,60.226672511126296,13.299184618104308,19.76829246947047,13.968445977698993,13.190749445852523,0.5507599924939013,0.7539964476021315,0.7099368179207353,0.5739408473221422,0.1090008257638315,0.7156937073540561,0.9093406593406592,0.8715596330275229,0.7381818181818182,0.1229508196721311,0.4965087281795511,0.6797900262467191,0.6559386973180077,0.5276639344262295,0.1054808686659772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876519202722,0.0046335726162955,0.0068714919358931,0.0093683953828645,0.0115764523971801,0.0138406542484392,0.0162953143323306,0.0185300513532552,0.0206854945908914,0.022993096949958,0.0250956341595987,0.0272793566344504,0.0294447358407125,0.0316498732768745,0.0337740893279245,0.0357800252321565,0.0380921795522589,0.0397990846729418,0.0416987292806189,0.0439747049079562,0.0592239903103203,0.0733873921004446,0.0857133870156014,0.0983922018107446,0.1110689317009901,0.1267769504146217,0.1400154889084563,0.1525833342205282,0.1644119595648736,0.1745222793257727,0.1879956896551724,0.2006237343931042,0.2125082964300869,0.2233505871023517,0.234652865716016,0.2455710516396532,0.2548159067305437,0.2640180078784468,0.2738158746013189,0.2820207206381223,0.2899047310359197,0.2975338106603023,0.3046851897850798,0.3115292032430749,0.3178376410629778,0.3236705465462509,0.328743674642344,0.3339007164270108,0.3397836118974677,0.3448148538875409,0.3448363973802063,0.3439585081649218,0.3439015450546971,0.343782563390066,0.3438299518057952,0.3433538239847929,0.3417657314946901,0.3427254772876892,0.3438625372980759,0.3443434289095701,0.3460019557695201,0.3484388938447814,0.3479940377469401,0.3483726150392817,0.3486870633582269,0.3493447501696862,0.3493331043562883,0.3518337176611807,0.3534351953138784,0.3566545396393875,0.3580786026200873,0.3584063659336523,0.358917055105038,0.3633624352932086,0.3642390377876693,0.3666866387058118,0.3670727897532021,0.3758734073160707,0.3914261697954609,0.3938688397361273,0.0,2.191597961301618,58.00481482049835,207.63112726276287,299.15990182016645,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95689,42599,401.9688783454734,6715,68.96299470158534,5197,53.75748518638506,2117,21.716184723426935,77.30793472821749,79.68467939874988,63.31631099018998,65.07044627939308,77.04372121748175,79.42058322409747,63.21892202876455,64.97572153504908,0.2642135107357433,264.0961746524084,0.0973889614254375,94.72474434400624,119.5689,83.7728364625043,124955.74203931486,87546.98707532139,280.932,176.6172194291523,293034.10005329765,184019.70908793312,301.97705,144.54606251279185,312271.0133871187,148459.10166979197,3020.4118,1364.9049833473807,3127129.3879129263,1397038.346463419,1300.09424,566.3287272398184,1349496.410245692,582673.1465892821,2082.05518,869.6476010931765,2139229.9428356444,878697.0502435178,0.37985,100000,0,543495,5679.806456332494,0,0.0,0,0.0,23758,247.69827252871283,0,0.0,27970,288.9987354868376,1858156,0,66739,0,0,4754,0,0,45,0.4702734901608336,0,0.0,1,0.010450522003574,0,0.0,0.06715,0.1767803080163222,0.3152643335815339,0.02117,0.3269530696157663,0.6730469303842337,24.863166717643352,4.517637070259129,0.3271117952664999,0.212430248220127,0.2226284394843178,0.2378295170290552,11.40091038262264,5.85263044643856,22.65991023556129,12666.554446476375,58.84817042706617,13.02220907466779,19.201571457127336,12.984653174928342,13.639736720342706,0.5537810275158745,0.7771739130434783,0.6935294117647058,0.6032843560933449,0.1156957928802589,0.7011406844106464,0.9056603773584906,0.8419753086419753,0.723404255319149,0.159533073929961,0.5038639876352395,0.7121418826739427,0.6471042471042471,0.5645714285714286,0.1041879468845761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0044181427587045,0.0066545613163046,0.0091208255464369,0.011237897648686,0.0133395788358926,0.0156417289514739,0.0179275140377743,0.0199656504937741,0.0223562047680953,0.0248288022306966,0.0268483249314674,0.0287653622666735,0.0307413359706597,0.032887540503168,0.0348495813087976,0.0368969661803713,0.038735465116279,0.0405600807248593,0.0422317900816279,0.0563987924244481,0.071272308578008,0.0839777150591222,0.096822374856686,0.1087540987063375,0.1235154143091322,0.1368825326769648,0.1489323199420919,0.160534188034188,0.1713669666705999,0.1856765925367508,0.1981825066262779,0.2104313222358735,0.2217423629485469,0.2325530229692863,0.2436444198283024,0.2533616024103107,0.2631981637337414,0.2723641356770804,0.2810098163866075,0.287962116037004,0.295103831529687,0.3018007885109456,0.3081935344517243,0.3146437914461276,0.3203654546576949,0.3262974389846239,0.3316834209317753,0.337688481369404,0.3424934838120692,0.3428876023912662,0.3427364818239531,0.342094479065101,0.3418942239366562,0.3417689428396737,0.3407764604705449,0.339741960086437,0.3404536082474226,0.3409473431113248,0.3414052269995874,0.3422980582707121,0.343208551899539,0.3436710991415586,0.3448291336639217,0.344929288045449,0.3457052797478329,0.348258849176754,0.3528182393920203,0.353867432705607,0.355129740518962,0.3578183821503994,0.3597753410002674,0.3615751032073674,0.364488854727133,0.3644115974985787,0.3662408976960726,0.3716638706725637,0.3727511623205983,0.3712183156173344,0.3639817629179331,0.0,2.110525948476373,58.04073645314767,195.79627442687053,296.35861948430414,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95720,42945,405.0355202674467,6879,70.84203928123694,5355,55.49519431675721,2072,21.41663184287505,77.38171245272493,79.75478818732824,63.34258245905804,65.09474984405712,77.12546604904173,79.49458759903392,63.24891448057387,65.00101026264588,0.2562464036831926,260.2005882943246,0.09366797848417,93.73958141124206,118.78196,83.17725494829958,124092.22732971166,86895.6197456066,283.8708,178.6831293266586,296098.1299623903,186208.71565187385,310.1514,148.85026508904514,320891.56916005013,153116.4538832067,3084.82456,1397.5500838614958,3199555.244463017,1436975.9990154128,1300.74493,568.924470807394,1346406.445883828,581946.8122920301,2052.70184,856.9030179892081,2122989.0305056414,877388.0131415615,0.38191,100000,0,539918,5640.555787714166,0,0.0,0,0.0,23922,249.4358545758462,0,0.0,28688,296.5315503552027,1862342,0,66778,0,0,4698,0,0,58,0.6059339740910991,0,0.0,1,0.0104471374843292,0,0.0,0.06879,0.1801209709093765,0.3012065707224887,0.02072,0.3264542936288088,0.6735457063711912,25.0578937587995,4.421650004177212,0.330532212885154,0.2134453781512605,0.2248366013071895,0.2311858076563959,10.96901611089606,5.485294414864966,22.06973248167381,12766.13186273749,60.35197500467787,13.545676349527032,19.90221989984079,13.263957620568428,13.640121134741626,0.5497665732959851,0.7847769028871391,0.6932203389830508,0.5780730897009967,0.1001615508885298,0.7205663189269746,0.9255583126550868,0.8648018648018648,0.7441860465116279,0.123015873015873,0.4926488911039123,0.7081081081081081,0.6383296047725578,0.53276955602537,0.0943204868154158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023395721925133,0.0045717645389208,0.0067073913219953,0.0085427544034292,0.0107716093333604,0.0128105906313645,0.0151516696405811,0.0172832700396096,0.0195352831133782,0.0219572115876752,0.0242252134955865,0.0264679007402388,0.0285679027580675,0.0306860321384425,0.0327956822802183,0.0349455139471888,0.03694190995992,0.0389436546643146,0.0409655344551448,0.0428815572830912,0.0573639525047777,0.0707959969851771,0.0843510008812791,0.0973649608162836,0.1100388136522803,0.1259860837933295,0.1388815210125937,0.1515670910871694,0.1637396914925437,0.1750136762954938,0.1896193175083776,0.201957218325106,0.2148194068321968,0.2258018671972363,0.23608025166641,0.2466953036777893,0.2568975131036021,0.2666126873812174,0.2756657442271923,0.2841048304919797,0.2911571079820897,0.2982919672188643,0.305076520648147,0.3111531915913612,0.3173777820973855,0.3232390460343871,0.3291679175422796,0.3336641726472235,0.3377916461661962,0.3425138168915621,0.343324947194231,0.3434060271261904,0.3431378068002702,0.3422240814736811,0.3421395955642531,0.3409115215963086,0.3409313648003541,0.3411841781999836,0.3416565890548619,0.3426087576157052,0.3423116518483856,0.3436623612592329,0.3454180937265057,0.3472343084097552,0.3484011907048204,0.3501207760837381,0.3515625,0.353416674499483,0.3560039163577873,0.3577570834158906,0.3591039475481491,0.3610815414094103,0.360685932041918,0.3588560885608856,0.3634298693923907,0.3623119178409362,0.3640978311029072,0.3707796193984039,0.3685236768802228,0.3580870917573872,0.0,1.70069878433218,59.649937766307886,206.13572914974637,298.0671145065776,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95861,42998,404.12680860829744,6863,70.46661311690886,5373,55.50745350038076,2146,22.05276389772692,77.44506122741345,79.72377661130209,63.40474875222951,65.08467316981228,77.17905953498983,79.45585627072228,63.30717402249589,64.98837967145434,0.2660016924236146,267.9203405798063,0.0975747297336155,96.29349835793732,117.2105,82.06863442006956,122271.30950021384,85612.1200697568,281.51181,176.5684830404491,293107.97926163924,183633.50376112197,307.22924,146.6727378138743,316850.9195606138,150243.56077252812,3066.54052,1381.772770818713,3169191.516883821,1411835.1988069925,1295.2309,564.0317223334357,1335026.2463358403,572258.5704541055,2108.2817,879.9153383722866,2168072.2713095,891822.3826756264,0.38269,100000,0,532775,5557.786795464266,0,0.0,0,0.0,23712,246.7739748177048,0,0.0,28399,292.61117659945126,1874451,0,67385,0,0,4728,0,0,48,0.5007250080846225,0,0.0,1,0.0104317710017629,0,0.0,0.06863,0.179335754788471,0.3126912428966924,0.02146,0.3203534935100801,0.6796465064899199,25.13388081434665,4.495709629454798,0.3299832495812395,0.2149637074260189,0.2283640424343942,0.2266890005583473,11.109622775218602,5.57201980417328,22.8043281230209,12847.046461921069,60.44390747077015,13.503127763825226,20.0045856967286,13.646389256249126,13.289804753967209,0.5510887772194305,0.7748917748917749,0.6807670614777214,0.5778321108394459,0.1231527093596059,0.701098901098901,0.9238845144356956,0.8344671201814059,0.6840277777777778,0.1568627450980392,0.5,0.7015503875968992,0.6298798798798799,0.5452609158679447,0.1142263759086189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.0047305989728421,0.0069253622380175,0.0090333319800251,0.0115938789196659,0.013846639061562,0.0160209402754012,0.01821203870823,0.0205148628087696,0.0227402862985685,0.0246976787049077,0.0268906528828995,0.0290864273609613,0.0313830772079244,0.0334428864322436,0.0355797318359637,0.0376334077934971,0.0395938034298741,0.0418479107189203,0.0436795721524519,0.0581831831831831,0.0729918619349581,0.0866069185023871,0.0992906312961719,0.1114676486059968,0.1268628361548528,0.1400391762401397,0.1516738735484419,0.163483583394649,0.1750018728796327,0.1885458199443304,0.2016111615049026,0.2137894348307532,0.2246811948641802,0.2356934162254783,0.2459255817041192,0.2559412341715713,0.2658471081345304,0.2747896873086778,0.2835206078220473,0.2915028447199222,0.2991544947433663,0.3053655534780242,0.311909466499012,0.3179903109481429,0.3237239900949846,0.3291494425654516,0.33449193435443,0.3398955403776617,0.3444993134044576,0.3446747753936504,0.344888301969847,0.345642540620384,0.345857181989879,0.3465461013934183,0.3451319325677986,0.3446212623535726,0.3452795915361579,0.346975634690748,0.3481075697211155,0.3489759655849621,0.3491872247131091,0.3499434697039487,0.3514485469856374,0.3527659676683241,0.3545766947828803,0.3548671308796362,0.3583620960150612,0.3604305735155349,0.3641843127924498,0.3667641414602942,0.3690730457069628,0.3735435663627153,0.3750096472948985,0.3814560701353154,0.3839942147764252,0.3863352095059412,0.3845020004211413,0.3876101165103722,0.3865546218487395,0.0,2.055185525175033,60.38266814684375,199.50474229225503,303.7620067974251,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95672,42523,400.51425704490345,6898,70.79396270591187,5385,55.5752989380383,2194,22.4935195250439,77.29747507811412,79.70248617523072,63.28577397120039,65.06663818140521,77.02391837917021,79.43177446229319,63.1842911177225,64.96969629655591,0.2735566989439064,270.7117129375263,0.1014828534778899,96.94188484930066,117.26858,82.2106487833033,122573.5638431307,85929.6855749888,283.3861,177.72259959783003,295464.9740781002,185021.47921840247,304.88182,146.4624918790766,314560.41475039715,149948.8094416982,3089.2944,1397.440861224999,3190021.1138055017,1421631.6803505723,1269.76646,555.4522407334103,1306506.5849987457,559886.664482277,2150.20974,900.6527420368337,2205305.920227444,902583.55647821,0.37903,100000,0,533039,5571.525629233213,0,0.0,0,0.0,23828,248.27535747136048,0,0.0,28248,291.24508738188814,1866119,0,66959,0,0,4747,0,0,49,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06898,0.1819908714349787,0.3180632067265874,0.02194,0.3171440431714404,0.6828559568285596,25.098861550351177,4.456267043680852,0.3331476323119777,0.2089136490250696,0.2315691736304549,0.2263695450324976,10.957707316526362,5.5637892556896205,23.345735055439626,12675.293672133928,60.61828603116172,13.428376277609932,20.07117905605712,13.732978997172657,13.385751700322029,0.5450324976787372,0.7715555555555556,0.6806020066889632,0.5725741780272654,0.1082854799015586,0.7057079318013343,0.9065656565656566,0.8337236533957846,0.7216117216117216,0.1581027667984189,0.4913280475718533,0.6982167352537723,0.6327724945135332,0.5308008213552361,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020977745348412,0.0041486620818371,0.0065485557642519,0.0087592724316634,0.0110575358072916,0.0132208845158793,0.0155440414507772,0.0179939135230081,0.0201785696022582,0.0226213761251804,0.0248838378139969,0.0267410443697927,0.0287651361611506,0.030656197188904,0.0327816381526643,0.0350441672355654,0.0369602620177857,0.0388652953575544,0.0410224931854595,0.0431261789871913,0.057643691369116,0.0712393873726746,0.0844106783075889,0.0970239535446407,0.1097748802666835,0.1246455626560582,0.1381407840681096,0.150746650192787,0.1632535209761418,0.1744387059366712,0.1880123392872551,0.2009562115807847,0.2124321851101379,0.223529798494461,0.232903745025191,0.2429292649098474,0.2521851876690586,0.2624884522656092,0.2723295454545454,0.2807892504184724,0.289434342731982,0.2973859655289582,0.3035259259259259,0.3098172035262184,0.3153082963053137,0.3205566737876786,0.3259511925961225,0.3312664268034397,0.3366680091985085,0.3407424077947523,0.3406397383748429,0.3401462073158934,0.3396135607615542,0.3389987953031336,0.3395852575753061,0.3387869114126097,0.3379027273735757,0.3383422837529355,0.3392844951184542,0.340048535027301,0.3416418720410187,0.3424070747547326,0.3433729892761394,0.3438121411175905,0.3443332691937656,0.3446863997913678,0.3468043236460086,0.3484514667002392,0.3490974348147366,0.3520280221311149,0.3562840031088556,0.3581548950676467,0.3593325327096897,0.3654241939172193,0.3660352464423711,0.3655632293403191,0.3643818660064985,0.3642139782742365,0.3697829716193656,0.3726176584986386,0.0,2.6704509586874905,59.01936977378424,200.4557162999848,308.0544681406532,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95837,42951,402.9132798397279,6736,68.96083975917443,5232,54.10227782589188,2172,22.350449200204512,77.32864418348662,79.63989841139644,63.32870225298407,65.0387055536641,77.06461716102973,79.37410278480313,63.23092494910226,64.94254064518961,0.2640270224568866,265.79562659331657,0.0977773038818057,96.164908474492,118.13054,82.81301648060908,123261.47521312228,86409.87592965683,279.8346,175.8095895473068,291484.08234815364,182941.7426390564,303.19232,145.44289965114112,313563.947118545,149605.94130958474,3031.9472,1373.6217773984886,3137542.1183885136,1407299.7174138664,1292.30222,564.1998838054454,1336312.1550131997,576608.0988688648,2134.99604,890.0916651020395,2198402.20374177,902444.950596384,0.38276,100000,0,536957,5602.794327869195,0,0.0,0,0.0,23600,245.71929421830816,0,0.0,28012,289.44979496436656,1865167,0,66962,0,0,4799,0,0,53,0.55302231914605,0,0.0,1,0.0104343833801141,0,0.0,0.06736,0.1759849514055805,0.3224465558194774,0.02172,0.3202429721712106,0.6797570278287893,25.127172850291025,4.496382131728148,0.3207186544342507,0.2041284403669724,0.235282874617737,0.2398700305810397,10.91932734496253,5.429190834058066,23.074344778606125,12850.628623951889,58.95199652186608,12.673713603577616,18.967185663844187,13.596609718588669,13.714487535855609,0.5508409785932722,0.7930711610486891,0.7079856972586412,0.5515840779853778,0.1338645418326693,0.6965361445783133,0.9035812672176308,0.8505747126436781,0.7192307692307692,0.1481481481481481,0.501280737704918,0.7361702127659574,0.6580852775543041,0.5066941297631308,0.1299492385786802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611333367093,0.0052305072375623,0.0075178816009739,0.0098833902161547,0.0118568232662192,0.0141111789859499,0.01634899602487,0.0185024544072172,0.0208984814110818,0.0231054171868284,0.0252669112071968,0.0273490415007594,0.0294531739751508,0.0318406423718344,0.0340606760574999,0.0361149563025557,0.0381745744295545,0.0403836184551581,0.0424924176326394,0.0445055059430879,0.0582106053652634,0.0720140515222482,0.0857930485094964,0.0988282276286059,0.1112645471411705,0.1267918305213751,0.140425667292336,0.1526805286568625,0.1638328776486671,0.1740915865204198,0.1875242321113169,0.1999047814843268,0.2129193627317709,0.2234283278129406,0.2336520581406863,0.2446214521525269,0.2552231639364399,0.2645233939530432,0.2744536822497842,0.2821895181178954,0.2894367585495112,0.2969723274719344,0.3050314091983233,0.3116467986925591,0.3183754960921331,0.3244047251675657,0.3303488576229528,0.3358754288192009,0.3410504447185613,0.3464286659433138,0.3472891444304976,0.3467861037114739,0.3471292982729111,0.346861754630436,0.3466839702855097,0.3461112648768336,0.3458640640895218,0.3463286137635825,0.3474973485237264,0.347863370015721,0.3497953973795847,0.350949448547611,0.3518526280492916,0.3521136211138447,0.3536876068478967,0.3554043444124575,0.3566898994515539,0.358711059312691,0.3588447906797207,0.3614539105591048,0.3640140620006392,0.3665831422935437,0.3662694891621245,0.3686841498115819,0.3731385753580575,0.3743824557175563,0.3748070392096326,0.3783617327037569,0.3819290465631929,0.3856695379796397,0.0,1.8503893172901364,58.83260175615863,190.01613221190416,303.70255564900765,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95735,42769,403.5096882018071,6853,70.18331853554082,5329,54.96422416044289,2148,22.04000626730036,77.35098256499538,79.69901541785464,63.33757887846742,65.07090092545639,77.08673504423166,79.43524749810535,63.240074043006274,64.97615829865715,0.2642475207637176,263.7679197492844,0.0975048354611445,94.74262679923127,118.80858,83.2418598133274,124101.5093748368,86950.28966765279,281.56018,176.52934426554327,293400.69984854024,183691.0064808763,307.05373,147.8020017428236,316023.408366846,150728.36218837005,3033.6566,1379.0374020801216,3133324.322348149,1405015.6351402262,1287.34095,562.3506046616658,1329747.9500705071,572463.900398938,2106.62434,879.1462561602197,2164799.3314879616,887066.990317169,0.38038,100000,0,540039,5640.977698856218,0,0.0,0,0.0,23773,247.5792552358072,0,0.0,28395,291.8577322818196,1862356,0,66857,0,0,4769,0,0,57,0.5953935342351282,0,0.0,0,0.0,0,0.0,0.06853,0.180161943319838,0.3134393696191449,0.02148,0.3303186308612773,0.6696813691387227,24.786045846030035,4.421042714060137,0.3150684931506849,0.2272471382998686,0.2341902796021767,0.2234940889472696,11.068752369010587,5.666328246788127,22.772669579395775,12694.068830654624,60.05662574684532,14.35371704365652,18.785084888261892,13.868812368275572,13.049011446651356,0.5501970350910115,0.7762180016515277,0.6873138773079214,0.5625,0.1141897565071368,0.7174231332357247,0.9429280397022332,0.8741258741258742,0.6749116607773852,0.1354581673306772,0.4925561443350997,0.693069306930693,0.6232,0.5295336787564767,0.1085106382978723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369548266888,0.0047131085231246,0.0067476383265856,0.0091208255464369,0.0109912456406137,0.0130508698883244,0.0152903640125992,0.0174213894246961,0.0198182728768691,0.0219736357309534,0.0239152050680143,0.0261961219064042,0.0285820036190162,0.0305735763567088,0.0325988280927622,0.0346866214651893,0.036747879930004,0.0385593176370484,0.0405260695534646,0.0425347945662138,0.0576758460863937,0.0715115123492305,0.0846762778505897,0.097900480460906,0.1103720180052919,0.1254215071722286,0.1384997189491881,0.1505108556832694,0.1624272207681213,0.1732054541748468,0.1860457600827301,0.1985949948042951,0.2108698490057003,0.2212895883035303,0.2317152388606912,0.2420906773085024,0.2521754672088113,0.2614439393257415,0.2705230657464584,0.2786937876946362,0.2867182253919003,0.2948495844551094,0.3020649665700254,0.3084590226779917,0.3153114869540934,0.3212860801891439,0.3272256547514821,0.3318708988249657,0.3381204594605094,0.3425021128248468,0.3425682507583417,0.3425412841507457,0.3427760840108401,0.3432591433373906,0.343150246415437,0.3430281636098534,0.3418905188289833,0.3424966646352511,0.3432585232139797,0.3433244457169443,0.3439378004807692,0.34495863188314,0.3471204518255684,0.3477091365551869,0.3496412577647229,0.3502198032237806,0.3513065828930458,0.3549109960863527,0.3585654571639327,0.3614146632227299,0.3647074941772845,0.3681965989658297,0.3695033217336286,0.3706363150255901,0.3743280203715929,0.3755661501787842,0.3760910224438902,0.3774008990600735,0.3857938718662952,0.3776575183610359,0.0,2.6895100276059973,59.56808775838305,196.51316621553968,303.040168714847,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95839,42742,400.2128569788917,6848,70.2741055311512,5285,54.52894959254584,2106,21.588288692494704,77.51248185563044,79.79857849535239,63.42745123530996,65.11100671200535,77.26092303648247,79.54997129961059,63.33555818044045,65.02339561154604,0.2515588191479736,248.60719574179768,0.0918930548695158,87.61110045931275,118.30258,82.83957390918737,123438.87144064523,86436.18350482304,282.53564,177.52514244379498,294176.0765450391,184606.38408559663,309.41828,148.98594463406775,319146.0052796878,152550.60433234257,3040.61192,1374.1587523898788,3137509.8237669426,1398704.986894562,1304.0503,566.9843056105799,1342195.6510397648,573128.7843264015,2078.55064,855.1813559811443,2131436.7011341937,858728.9207594676,0.37981,100000,0,537739,5610.857792756602,0,0.0,0,0.0,23842,248.12445872765784,0,0.0,28614,294.8903890900364,1871376,0,67086,0,0,4656,0,0,42,0.4278007909097549,0,0.0,0,0.0,0,0.0,0.06848,0.1803006766541165,0.307535046728972,0.02106,0.3302815924538771,0.6697184075461229,25.247042283344094,4.561506783274063,0.3288552507095553,0.2211920529801324,0.2157048249763481,0.234247871333964,11.163196902268798,5.52185869596266,22.264952577440013,12774.007909444656,59.25114208884996,13.635820633857616,19.51424303838501,12.589893277027391,13.511185139579933,0.5532639545884579,0.7690333618477331,0.7025316455696202,0.5754385964912281,0.1195476575121163,0.7338830584707646,0.9300518134715026,0.8820861678004536,0.7490196078431373,0.1587301587301587,0.4922804353328271,0.6896551724137931,0.6414803392444102,0.5254237288135594,0.1095334685598377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024993422783478,0.0051346451828521,0.0074904468928328,0.0100760012582317,0.0122107316280298,0.0144309976609376,0.016554336095783,0.0187326643824441,0.02101436696517,0.0234379793434911,0.0256620312532,0.0280284694589161,0.0305891781919812,0.0328520115681895,0.0349907729105023,0.0371739916335278,0.0390529605331236,0.0408709175738724,0.042810247034136,0.0448085952547031,0.0596032706186642,0.0737170103308377,0.0868786151395758,0.0992248550541971,0.1120131408535237,0.1276615969581749,0.1406269871550299,0.1526405886168143,0.1639687129853915,0.1746407384404514,0.1883077783273478,0.2007840850181441,0.2129488905293325,0.2237714135977027,0.2337448378877075,0.2450633527187493,0.2547586959669425,0.2640060190228072,0.2727128641133917,0.2814167380748357,0.2888476307990359,0.2963610101574876,0.3035019455252918,0.3099260886697154,0.3159423798571601,0.3220532599616764,0.3274024014663159,0.3317034240762088,0.3367591685149843,0.341373107676956,0.3416674486882147,0.341833520501794,0.3419175855739726,0.341503432593083,0.3407970875079546,0.3399599957247339,0.3392030096580939,0.3394563062251134,0.3401959948870899,0.3416755793226381,0.3430704741943935,0.3446227327451793,0.3449004792900647,0.3460534243824061,0.347453775683498,0.3488884282530963,0.3496840375187736,0.3523135003588031,0.3535676992690567,0.3552492461918001,0.357242121307213,0.3601754660817797,0.36525086934923,0.3689437255492025,0.3686063750926612,0.3688438700663639,0.3717852308617837,0.3742101105845181,0.3782172852885397,0.3841234010534236,0.0,2.437606370044743,58.335032855013424,197.4213014897609,296.9509831085752,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95739,42641,401.6336080385214,6754,69.32389099531017,5306,54.86792216338169,2099,21.62128286278319,77.31288813594676,79.67227316425854,63.318020272784125,65.06230754340012,77.05273914615418,79.41008387595359,63.22300609821602,64.96845459979714,0.260148989792583,262.1892883049526,0.0950141745681065,93.85294360298246,119.306,83.55756401974378,124615.8827645996,87276.4119321737,281.37223,177.0598157161473,293326.1680193025,184371.18177142783,308.33977,148.11250934498685,318556.62791547854,151948.80505492186,3038.31468,1384.1468654833732,3144102.570530296,1416313.671004891,1277.33808,559.9114480682603,1321954.7728720792,572598.0510223213,2056.96926,854.9012446178119,2120344.499106947,869565.406921833,0.37962,100000,0,542300,5664.358307481799,0,0.0,0,0.0,23759,247.56891131096,0,0.0,28611,295.2506293151171,1858750,0,66781,0,0,4713,0,0,59,0.6162587869102455,0,0.0,0,0.0,0,0.0,0.06754,0.1779147568621253,0.3107787977494818,0.02099,0.3211873944850872,0.6788126055149127,24.991174638941008,4.436956327940468,0.3277421786656615,0.2203166226912928,0.2293629852996607,0.2225782133433848,11.145377421474246,5.710196300400054,22.44931006944609,12715.90632956443,60.34619691189224,13.94892102266762,19.75041135991101,13.615470097319667,13.03139443199395,0.559743686392763,0.7810094097519247,0.7055779183438758,0.5809367296631059,0.1041490262489415,0.7296908698777858,0.911904761904762,0.8758169934640523,0.7316176470588235,0.1291666666666666,0.4993614303959131,0.7076101468624834,0.64453125,0.5375661375661376,0.0977683315621679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339524803014,0.0047030681438084,0.0068182509968648,0.008948523138179,0.0113098931052369,0.0136150712830957,0.0159477923931885,0.0181825606680891,0.0202016071319034,0.0221378032172515,0.02444351026853,0.026605740103712,0.0285911161848343,0.0308283377623962,0.0326527664579228,0.0347468400219105,0.0368310967528164,0.0389923011475647,0.04091967888191,0.042947342099231,0.0570966226444641,0.0712006277792309,0.0846581375838926,0.0977679181605038,0.1106811879935476,0.1264000676897693,0.1386386545705342,0.1509313464608834,0.162011471540113,0.1724389354721108,0.1861717017290756,0.1983021520493132,0.2104135861529094,0.2209559225637099,0.2312457364170499,0.2418522211144344,0.2521848805152188,0.2618259969394185,0.2717051842598376,0.2806462701959436,0.2886169449139787,0.2967693639319718,0.3028940580704702,0.3100629307761462,0.31620265163023,0.3220000493108804,0.3277214079919829,0.3332569478923984,0.3387633969648665,0.343331526696366,0.3435063007636471,0.3438029741313965,0.3431906724634408,0.3432424993118634,0.3426880004771775,0.3411648932898702,0.3401476343504406,0.3415788518939956,0.3428537100290074,0.3441425597588113,0.3441681880634658,0.3461148547915797,0.3474282107920479,0.3488695808356346,0.3510031423737007,0.3522643883006604,0.353256507281275,0.3559150015857913,0.3576838677709351,0.359148151118954,0.3608825557343139,0.3628157880681514,0.3639972276479112,0.3681755620125401,0.3706896551724138,0.3700974566199191,0.3750965549204387,0.3811750355763366,0.3839509612705489,0.3930877326243828,0.0,2.18729238916164,61.492043236884896,201.78704363081675,293.5634740819414,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95782,42836,402.6852644546992,6853,70.38900837318077,5377,55.57411622225471,2155,22.08139316364244,77.37208356525132,79.71286711775113,63.35007434272507,65.08058704688887,77.10695427799081,79.44885721156244,63.25272523371541,64.98655271545368,0.2651292872605069,264.00990618869,0.0973491090096629,94.03433143518214,118.19544,82.70568187105684,123400.4719049508,86347.83348756221,282.6011,177.4558281783408,294486.1351819757,184710.5282603629,302.32083,144.81645848755778,312984.9763003487,149046.29245420618,3076.00444,1390.15081210684,3179962.748741935,1419868.3386302658,1301.45147,569.023148250646,1341868.1693846444,577185.5340780584,2118.8184,888.1846375768394,2173147.8565910086,892554.1365007198,0.38201,100000,0,537252,5609.112359315947,0,0.0,0,0.0,23901,248.96118268568208,0,0.0,28008,289.70996638199244,1868024,0,67083,0,0,4791,0,0,51,0.5324591259318034,0,0.0,0,0.0,0,0.0,0.06853,0.1793932096018428,0.3144608200787976,0.02155,0.3256200637383954,0.6743799362616045,25.077698749691884,4.482356748014331,0.3282499535056723,0.2146178166263715,0.2276362283801376,0.2294960014878184,11.094609000461556,5.622158884379907,22.99038673332148,12798.467078145362,60.6551303448061,13.528778392515392,19.92962587806951,13.709632691582074,13.48709338263913,0.5512367491166078,0.7590987868284229,0.7014164305949009,0.5735294117647058,0.119935170178282,0.7196122296793438,0.919889502762431,0.868663594470046,0.7491289198606271,0.1550387596899224,0.4952923686818632,0.6856060606060606,0.6468820435762584,0.5197438633938101,0.110655737704918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0048152954057013,0.0071949016662945,0.0094879166201074,0.0116953117054815,0.0138764456751913,0.0162676207075803,0.0184092903647162,0.0204790712884238,0.0226384198137345,0.0246564392658406,0.0268475661696035,0.0288433863739155,0.0311576519527589,0.0335247955616511,0.0357600429823111,0.0379463823620743,0.0398743103662836,0.0419467794391163,0.0437693260731501,0.058397512157452,0.0728801681850035,0.0863393821220031,0.0987937121721587,0.1106147605752515,0.1261291719933649,0.1387920345072437,0.1510601646073031,0.1626564517333731,0.1736517323391399,0.1872559250373844,0.2004172431684538,0.2126998272058424,0.2242932417954828,0.2342065901192204,0.2450907641019393,0.2558461263834345,0.2648249342238413,0.2733539689558601,0.2813841908186284,0.2898580895874535,0.297054937860241,0.3045966140168353,0.3109559677631815,0.3178381133861708,0.3238633564849022,0.3298615457800255,0.3354653306715155,0.3402556737313356,0.3447052617697481,0.3446833689702935,0.3435309639647068,0.3440752545623783,0.3438232485458807,0.3438773385681568,0.3429736233083513,0.3416427631891729,0.3427867236279986,0.3446574497610115,0.3458070978820836,0.3469778261358947,0.3480326181616657,0.3495888916855441,0.3498109069751829,0.3516255753982599,0.3515353001230334,0.3536753313823377,0.3560411718131433,0.3585398573748499,0.3603935055586659,0.3630491547940813,0.3659799316823228,0.3666877770740975,0.3689663111042898,0.3708420452385478,0.3742683072512244,0.3720036877688998,0.3736307508464449,0.3764289602612956,0.3814549566528458,0.0,2.232102020271303,58.90397016745774,206.53867851192092,302.6197548277963,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95651,42701,403.0590375427335,6830,70.32859039633668,5332,55.22158681038359,2190,22.561185978191556,77.25911226955019,79.653967989389,63.27736057920528,65.04506825998287,76.99676459269057,79.39251457699501,63.18199952650953,64.95276541488721,0.2623476768596191,261.45341239399045,0.0953610526957504,92.30284509565934,118.3864,82.91708370827565,123769.11898464207,86687.10594586116,280.79223,176.16537864346395,293007.8723693427,183623.9126025488,304.91278,146.11073484089803,315597.5055148404,150305.76266244682,3061.06228,1378.2883047307537,3171578.593010005,1412293.3003635646,1304.94034,566.2606438560193,1350952.5880544898,578687.0642816266,2153.56936,882.9496359266941,2220062.2889462733,894610.2553221853,0.38094,100000,0,538120,5625.869044756459,0,0.0,0,0.0,23683,247.03348632005935,0,0.0,28217,291.83176338982344,1859885,0,66843,0,0,4628,0,0,57,0.5959164044285998,0,0.0,1,0.0104546737619052,0,0.0,0.0683,0.1792933270331285,0.3206442166910688,0.0219,0.3148793752614698,0.6851206247385302,25.236705034081776,4.483731043726125,0.3332708177044261,0.2091147786946736,0.2259939984996249,0.2316204051012753,11.040286716273616,5.496928838668314,23.166953709558623,12777.773740320656,60.20803165236277,13.379401408448553,20.011526727825867,13.410397973424685,13.406705542663664,0.5508252063015754,0.7901345291479821,0.7000562746201463,0.570954356846473,0.1004048582995951,0.7272727272727273,0.9335038363171356,0.8834498834498834,0.7105263157894737,0.1428571428571428,0.4921269682579355,0.712707182320442,0.6416913946587537,0.531416400425985,0.0898989898989899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271638827831,0.0046035753759417,0.0070945740210705,0.0092058201918387,0.0115265272902996,0.0138920008962581,0.0161000876888879,0.0180283185479342,0.0200672657200396,0.0219870206972792,0.0239703907235203,0.0260188313088478,0.0282437644638724,0.0300804549153729,0.0320942808197973,0.0343586827276017,0.0362163450083392,0.0384164253313818,0.0402949834097835,0.0425223609865938,0.0573070693348659,0.0713043842560589,0.0851316300706717,0.0978445144102688,0.1097253170839889,0.1247338932607475,0.1369724780387283,0.1494480671695861,0.1609778005902733,0.1727085301950004,0.1865966259653967,0.1999588272260385,0.2117284421256712,0.2227273723187485,0.2333359062289803,0.2450674512851829,0.255604528369429,0.2652743634272311,0.2747430182843627,0.2833773693279724,0.2912073886710138,0.2988199690329846,0.3058136637117732,0.3120918766159581,0.3180692918379044,0.3237442978823355,0.3289551339201627,0.334167198468411,0.3396103896103896,0.3440734955389055,0.343992758616031,0.3438989678471253,0.344686995668054,0.3455320015121114,0.345912419668211,0.3451418718150047,0.3439190479221027,0.3450340629793972,0.3452074096985943,0.3460254799928225,0.3470543948804818,0.3478096901609734,0.3504503746106575,0.3511999462208977,0.3524064429012346,0.3540306149104018,0.3558615173674588,0.3584172798181071,0.3597883597883597,0.3620435042905607,0.3652894833272261,0.3691074291822555,0.3688883251950028,0.3694938544927094,0.3720296797219874,0.3716159809183065,0.3758245129621108,0.3790518638573744,0.3785216178521617,0.3632797175362887,0.0,1.9844488627960053,58.940850588879385,202.77379467218068,302.5545365648496,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95618,42770,403.1667677633919,6809,70.04957225626974,5356,55.43935242318392,2169,22.338890167123346,77.28554750318864,79.7183844649842,63.27381344368565,65.07218626135541,77.01046624068402,79.44152424284295,63.17171019926888,64.97210164973977,0.2750812625046137,276.86022214125217,0.1021032444167673,100.08461161564242,118.94168,83.31257006093992,124392.56206990316,87130.63446311356,286.37453,180.06903038933453,298958.37603798445,187781.0876501648,311.19798,149.2986857783769,321682.49701938964,153242.9807750048,3081.5164,1395.764547369866,3192200.757179611,1429454.6526288127,1270.9476,556.8570653722644,1315831.9563262148,569111.0967314207,2137.08816,897.62758443582,2203941.161705955,911914.2439180498,0.3795,100000,0,540644,5654.20736681378,0,0.0,0,0.0,24130,251.7831370662428,0,0.0,28725,296.73283273023907,1854175,0,66597,0,0,4570,0,0,62,0.6274969148068356,0,0.0,0,0.0,0,0.0,0.06809,0.1794202898550724,0.3185489792921134,0.02169,0.3209445298309347,0.6790554701690652,25.155289078483037,4.513917657121962,0.3246825989544436,0.217513069454817,0.2231142643764003,0.234690067214339,10.978009561661269,5.465694747309314,23.274606194181487,12733.846484184152,60.68071881837936,13.744784561694203,19.69548196323445,13.45112429115016,13.78932800230056,0.5498506348020911,0.7656652360515022,0.6975273145485912,0.5983263598326359,0.0994431185361972,0.6989795918367347,0.8969072164948454,0.8449074074074074,0.7368421052631579,0.1348314606741573,0.4984939759036144,0.7001287001287001,0.648814078041316,0.554945054945055,0.0898989898989899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022294284556141,0.0045035450202355,0.0068635016041912,0.0090257661228845,0.011170797216457,0.0133952673450885,0.0155257010537483,0.0178367113435763,0.0198218285585705,0.0218553491325454,0.0243226885239174,0.0265207562679819,0.0287078877211763,0.0307697065281256,0.0331037616033537,0.0352406959184095,0.0373794003958672,0.0390914661376925,0.0410109084853026,0.0431948095297701,0.0577554305784951,0.0724466056045775,0.0860874956651499,0.0986608506917006,0.1114620747939995,0.1267475851550584,0.139699475037725,0.1527243265140773,0.1640877474585339,0.1746945880027076,0.1880354792066814,0.2004662257399978,0.2131592427495558,0.2240961742885009,0.2344664850977495,0.2453517155638438,0.2552632461622746,0.2649396327234604,0.2734816364111716,0.2814137776809367,0.2896002038948551,0.2972377761638123,0.3040100577609621,0.3104893928837421,0.3166835113183883,0.321818922824221,0.3275795068506888,0.3326532433914385,0.3377567714960916,0.3421466834204087,0.3418869146395758,0.3417067423626517,0.3416886729837741,0.3416733067729083,0.3421123153882801,0.3403398789219753,0.340001271092186,0.3399162572945172,0.3404350136263133,0.3411308840413318,0.3416303203489246,0.3417503416315133,0.3426112934444164,0.3439687668282175,0.3454304316373282,0.3475608166245144,0.3499587915991701,0.35326973766788,0.3549074397485155,0.3564497603865499,0.3560733627633914,0.3581986388770736,0.3575447246981478,0.3580256332010986,0.3605769230769231,0.3623874940786357,0.3628821631587033,0.3676710097719869,0.3681905283328771,0.3677639046538025,0.0,2.270093958898859,60.66399280879168,203.6203504219632,299.0622033988504,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95814,42765,402.2167950403908,6841,70.17763583609911,5328,55.09633247750851,2181,22.40799883106853,77.35864855579545,79.66359536605046,63.35358995694328,65.05446117746243,77.08366325718036,79.38761632636644,63.252280479779934,64.9550645218329,0.2749852986150927,275.9790396840174,0.1013094771633404,99.39665562953336,118.91264,83.28632287406569,124107.7921806834,86925.0035214746,283.02923,178.6462349189838,294854.00880873355,185920.9866658077,309.31326,148.97499273982865,319780.00083495106,153150.88363005064,3061.45112,1402.1355371487043,3166343.99983301,1435108.159243519,1288.86924,571.0295272429571,1329547.7278894526,580493.14851336,2141.02094,905.5292412318338,2200683.553551673,917405.1580220006,0.38168,100000,0,540512,5641.263280940156,0,0.0,0,0.0,23905,248.9197820777757,0,0.0,28689,296.345001774271,1859397,0,66797,0,0,4756,0,0,49,0.5114075187342142,0,0.0,0,0.0,0,0.0,0.06841,0.1792339132257388,0.3188130390293817,0.02181,0.3316184649610678,0.6683815350389322,24.90069583128624,4.446763273100123,0.3299549549549549,0.2147147147147147,0.223536036036036,0.2317942942942943,10.992057245144306,5.555989667877472,23.51129028222583,12785.803951283013,60.62769323277087,13.57765369913326,19.985931260367767,13.288733412563753,13.7753748607061,0.5497372372372372,0.7840909090909091,0.6979522184300341,0.5667506297229219,0.1052631578947368,0.7139830508474576,0.9238578680203046,0.8771551724137931,0.697594501718213,0.1385767790262172,0.4902862985685071,0.7106666666666667,0.633693972179289,0.5244444444444445,0.0960743801652892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023682772301277,0.0047908922403751,0.0072285247929276,0.0094269739312206,0.0117347042448133,0.0140277707135954,0.016206250254655,0.0184733712117348,0.0206464662975297,0.0227398269195359,0.0247357423795476,0.0267811352493486,0.0289412852519648,0.03090205602091,0.0329834618715717,0.0351669007684045,0.0372278784868802,0.0394758666445513,0.0414641239768997,0.0431826936090029,0.0570647638123852,0.0715532833589478,0.0847946167471988,0.0970416688560769,0.1089565923006396,0.1244663313184258,0.13721706864564,0.1499542562924193,0.1620507783305929,0.1731317679854186,0.1869522148286926,0.1995542862088364,0.2116229501065727,0.223058494054326,0.2336775813093167,0.2445629281486243,0.2558243377501926,0.2652466468629039,0.2746112813528544,0.2826086956521739,0.2906840783060697,0.2984941804641577,0.3057634907850476,0.3125442353138758,0.318724227274386,0.3246724405951587,0.3301240719642432,0.3342157848515317,0.3397050438028096,0.3439638544666684,0.3439361673450683,0.3444025122582778,0.3438147453876619,0.3444536028805692,0.3442354621748705,0.3436239552181581,0.3441015470051566,0.3452829877978494,0.3464110566205974,0.3474804393080181,0.3477049365515683,0.3494143339289259,0.3502508114488049,0.3512572968118545,0.3508309981640738,0.3526509186351706,0.3528601755694532,0.3544612847992897,0.3553306677046106,0.3575204228736184,0.3609470165315748,0.3628038984684588,0.3620842853516121,0.3618871700146233,0.365025466893039,0.3654642223536369,0.3727510379824696,0.376689881196231,0.3741189737806597,0.3741035856573705,0.0,1.8627054275617452,62.81370716451291,203.3186439071792,291.0846437899118,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95871,42523,400.6320993835467,6741,69.19715033743259,5214,53.90576921071023,2096,21.560221547704728,77.41454581429173,79.7032502911355,63.37712166936033,65.06809053089725,77.15877450305643,79.44736463921933,63.2832970560566,64.97666909664645,0.2557713112352928,255.88565191617363,0.093824613303731,91.42143425080462,118.1818,82.83855255363471,123271.6879974132,86406.26733176321,278.37436,175.16757567596852,289889.59122153727,182237.8672132016,306.21526,147.15404632604734,316630.4930583805,151310.44756379648,2989.97004,1363.5508006076168,3091662.9637742387,1395196.6294370736,1238.01136,541.6154622992065,1278284.413430547,551895.9354749676,2056.8692,853.2498779449484,2116230.893596604,864037.0471486876,0.37896,100000,0,537190,5603.258545336964,0,0.0,0,0.0,23472,244.3491775406536,0,0.0,28322,292.64323935288047,1869255,0,67056,0,0,4636,0,0,49,0.5111034619436535,0,0.0,0,0.0,0,0.0,0.06741,0.1778815706143128,0.3109330959798249,0.02096,0.328255043024404,0.671744956975596,24.979267520218617,4.429163202547529,0.3262370540851553,0.2217107786728039,0.2209436133486766,0.231108553893364,11.203770915931084,5.804763678613976,22.218538826628134,12688.747817748384,59.12274921219237,13.730872811770888,19.30899426378365,12.907961704771273,13.174920431866544,0.547180667433832,0.7863321799307958,0.6766607877718989,0.5876736111111112,0.0962655601659751,0.7111436950146628,0.908653846153846,0.8590604026845637,0.7192307692307692,0.0871369294605809,0.4890909090909091,0.7175675675675676,0.6116427432216905,0.5493273542600897,0.0985477178423236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022371817583641,0.004680613950661,0.0069257835870083,0.0089436176476559,0.0112003252363045,0.0133090487286195,0.015403422982885,0.0176261781386429,0.0198169485985127,0.0218578676049423,0.0237948907053448,0.0259313966847201,0.0279279094141098,0.0300354084321475,0.0324971905189034,0.0344966484543642,0.0363457658682944,0.0382104215893545,0.0402470673725734,0.0421278189231921,0.0565032427585344,0.0700833977802395,0.0837672201560944,0.0971135774210145,0.1096111116961342,0.125145222956845,0.1388938910839698,0.1520662386803282,0.1630732794947566,0.1739665881345041,0.1871624965039478,0.2002075698115655,0.2116345777739145,0.2222003693141464,0.2325765401437394,0.2432728479752157,0.2524751371359764,0.2624481677510704,0.2716973429047732,0.2801236546828486,0.2879777944833169,0.2952828644262026,0.3022061867865381,0.308995698074319,0.3151485689979947,0.3208377505485565,0.3266108336150023,0.3318188759926695,0.3373834563066509,0.3414150756424655,0.3415872930335322,0.3411803576591087,0.3415706275183859,0.3416953267246611,0.3417725280439789,0.3414888079125455,0.3413658428600793,0.3430174379500976,0.3433705101709679,0.3442514799229726,0.345243662894023,0.3460664836358608,0.3477596954357194,0.3480132967449746,0.3489020229686224,0.3501561686621551,0.3506430685180969,0.3510634965385458,0.3531599817524651,0.3565410904466699,0.3585865467593223,0.360283988555685,0.3626023373539154,0.3661218648791142,0.3683031547507933,0.3709829867674858,0.3778998778998779,0.3826934795856185,0.3809262811729241,0.3913701741105223,0.0,1.893544615137516,60.40089833552357,194.8847159023269,292.0746975439407,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95725,42620,402.528075215461,6908,71.22486288848263,5390,55.889266126926096,2206,22.77357012274745,77.36002699221102,79.7323526579541,63.33690834044432,65.08873805934006,77.09463655212245,79.464182443824,63.24050037260307,64.99358392454764,0.2653904400885665,268.17021413009456,0.0964079678412517,95.1541347924234,117.79922,82.48420941993751,123060.03656307128,86167.88657084096,280.74972,176.05022411447405,292876.3854792374,183501.10022057185,306.50066,146.01899029705874,317702.7526769392,150608.423998757,3101.02772,1391.9868966066945,3215379.806738052,1430014.8631886065,1331.16945,576.2216406511382,1377595.5393053016,588932.3798914998,2176.81706,897.7574348058355,2247864.110733873,913982.3123364148,0.37975,100000,0,535451,5593.63802559415,0,0.0,0,0.0,23712,247.28127448419957,0,0.0,28300,293.16270566727604,1870413,0,67075,0,0,4608,0,0,53,0.5536693653695482,0,0.0,1,0.0104465917994254,0,0.0,0.06908,0.181909150757077,0.3193398957730168,0.02206,0.3238292011019283,0.6761707988980716,25.20820961738692,4.477687179118612,0.3148423005565863,0.2185528756957328,0.2270871985157699,0.2395176252319109,10.921838319212618,5.409404592357222,23.26623565191335,12715.14523671414,60.75077417052604,13.83059972397528,19.12043423304876,13.574409768390993,14.225330445110991,0.5452690166975881,0.766553480475382,0.6823806717737183,0.5906862745098039,0.1200619674670797,0.6997690531177829,0.8991825613079019,0.8429561200923787,0.7165354330708661,0.1306122448979592,0.4962111953067709,0.7065351418002466,0.627373417721519,0.5577319587628866,0.1175908221797323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168629913603,0.0043690255349775,0.0065859573993079,0.0087872569536154,0.0110256723219008,0.0129831778746283,0.0151172273190621,0.0174324848435363,0.0194428826986966,0.0214377853764409,0.0234062621747421,0.0254507001765841,0.0275286907161367,0.0294887112722478,0.0316859265373503,0.0338495895452947,0.0357727451671052,0.0380208008968051,0.0398477236558804,0.0418785428476158,0.0563527372224659,0.0707101365848553,0.0837765538945712,0.0959928481278923,0.108255139694254,0.1242784954648286,0.1372093516632722,0.1493577669231342,0.161351645769699,0.1728791015478348,0.1872427983539094,0.1997316278717441,0.2114301863002978,0.2225623421630899,0.2330492163871322,0.2449994462288182,0.2549115858760529,0.2645719233926744,0.2731354452481915,0.281540170137736,0.2892810472633076,0.2971365123889668,0.3046774288924369,0.3115136856725496,0.3175227686703096,0.3232743755234764,0.3283703472005004,0.333223148901546,0.3379928037068675,0.3421861600369417,0.3425008081025751,0.3431436008318299,0.3432227300942385,0.3428827863750199,0.3431994047619047,0.3430520426151606,0.3424969911952872,0.3437802536796679,0.3442194309151499,0.3452580818003214,0.346320427486641,0.3467421199469716,0.3470584539342786,0.3481100424960859,0.3496533795493934,0.3504177545691906,0.3518142567123209,0.3541462489330088,0.3564713366791546,0.3575179380286207,0.3626621285990249,0.3644709292961829,0.3663115169964485,0.3717702982442689,0.3729724632214258,0.3756544502617801,0.3763820638820638,0.3829352929169218,0.3851707858928075,0.3853639548462437,0.0,1.6176327044493164,57.7929119705044,210.86394659663577,305.7907583344392,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95759,42516,401.9256675612736,6786,69.61225576708195,5321,55.05487734834324,2082,21.460123852588268,77.33346816806463,79.69662292904854,63.32120940122799,65.07073101454124,77.07969036378068,79.4394468904888,63.22928137451962,64.97914078862881,0.253777804283942,257.1760385597486,0.0919280267083664,91.5902259124266,119.29544,83.55957125378724,124578.82809970864,87260.27971656685,281.70114,176.43386001868345,293601.43694065313,183672.05173266577,304.20072,145.53854820057668,314273.8541547009,149380.2106485891,3050.8152,1374.281491507735,3157985.2755354587,1407200.7973221669,1283.94705,561.2496943802449,1326084.2427343645,571379.8748736354,2048.9578,843.6939389011704,2113012.1868440565,859015.5332864013,0.37876,100000,0,542252,5662.674004532211,0,0.0,0,0.0,23816,248.18554913898436,0,0.0,28135,290.3330235278146,1862712,0,66805,0,0,4637,0,0,55,0.5639156632796917,0,0.0,0,0.0,0,0.0,0.06786,0.1791635864399619,0.3068081343943413,0.02082,0.3238883433861692,0.6761116566138309,25.012822459170827,4.487141081891034,0.3358391279834617,0.2054125164442773,0.2307836872768276,0.2279646682954332,11.060103390040542,5.570248056735939,22.12683277871399,12610.992664971813,59.98231545508749,12.98745968365893,20.04785994721,13.68164229304509,13.265353531173476,0.5487690283781244,0.7822506861848124,0.6832680470061556,0.5781758957654723,0.110469909315746,0.7187028657616893,0.8983516483516484,0.8709677419354839,0.7054794520547946,0.1779661016949152,0.4923654568210263,0.7242798353909465,0.623059866962306,0.5384615384615384,0.0941658137154554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669740108414,0.0041881312619153,0.006201408765199,0.0083216484789367,0.0105571489595411,0.0127483224551721,0.01456795661216,0.0165744728623624,0.018498834880013,0.0207486718598057,0.0229744830485016,0.0252348442071762,0.0276215254568452,0.0296701372797396,0.0317665022800899,0.0334780361757105,0.0355463977303319,0.0375408560311284,0.039452755455292,0.0413359995000937,0.0564277065675754,0.0702220733825899,0.0832161668730195,0.0957524003827992,0.107477670332915,0.1221954365708727,0.1355322625135267,0.1474654377880184,0.1589290100712355,0.1700176934212642,0.1835591650330669,0.1959129804519737,0.2083383173301725,0.2194505806959602,0.2308335257954183,0.2416908394411107,0.251635081140204,0.2618385968070384,0.2714554778977943,0.2799757309339011,0.2883937140808751,0.296254721062663,0.3035984669253336,0.3099036941210292,0.3161036691904484,0.3216096480433177,0.3279911992299326,0.3326850969176994,0.3373578166854303,0.3413017938936336,0.3410772278295085,0.3406570728888644,0.3411284074100162,0.3410964848835527,0.3410257554791769,0.3412405957316137,0.3409137796962531,0.3409823661008027,0.3412675308663116,0.3421495293654486,0.3427107574506418,0.3441330824834142,0.345361148967397,0.3454073294678636,0.346989462515975,0.3485296813218466,0.3478397262227292,0.350502789773981,0.3542107490478205,0.3570490629103497,0.3591452835357501,0.3606015358361775,0.3586075949367088,0.3605426534835594,0.3613190561925519,0.3627380091588335,0.3644094001236858,0.3709113351162312,0.3740845070422535,0.3788409179307662,0.0,2.025915885914189,58.513463803304745,204.712915469418,298.3022746274458,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95809,42670,402.0394743708837,6732,69.18974209103528,5239,54.232900875700615,2067,21.28192549760461,77.34149214859087,79.68063429736276,63.33904717832892,65.072675237102,77.09331544246577,79.4316151732374,63.24909212371516,64.98424605244153,0.2481767061251076,249.0191241253541,0.0899550546137604,88.42918466046967,119.2444,83.55280774390397,124460.54128526548,87207.68168324894,281.13077,176.09735706819785,292980.106253066,183352.18723522616,302.653,145.06614538436293,313390.5061111169,149443.6870835742,3003.86816,1352.9764370411797,3110739.15811667,1387632.0147806385,1284.11072,559.8242874687803,1329042.897848845,573073.8004454488,2043.3987,840.1084517151037,2105982.465112881,855220.8726738188,0.38043,100000,0,542020,5657.297331148431,0,0.0,0,0.0,23727,247.16884635055163,0,0.0,27961,289.2838877349727,1865661,0,66905,0,0,4842,0,0,58,0.6053711029235249,0,0.0,1,0.0104374328090262,0,0.0,0.06732,0.1769576531819257,0.3070409982174688,0.02067,0.3169004108230627,0.6830995891769372,25.182000225671207,4.414250686445261,0.3202901317045237,0.2231341859133422,0.2227524336705478,0.2338232487115862,11.068980982016091,5.5988137205225925,21.98292505776272,12691.898943957647,59.091831946048025,13.808659519623395,18.949020065567986,12.785607058566615,13.548545302290034,0.5499141057453713,0.7801539777587682,0.6847437425506555,0.583547557840617,0.113469387755102,0.7301710730948678,0.9299191374663072,0.8419753086419753,0.803030303030303,0.1666666666666666,0.491272451302808,0.7105263157894737,0.6347211311861743,0.5193798449612403,0.1001021450459652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020563833990092,0.0043388785823626,0.0064539043076766,0.0087489330569442,0.0111512438317138,0.0132421998349818,0.0152170365535248,0.0173084581686732,0.0195105989181229,0.021718428409056,0.024023870068083,0.0261963442185253,0.0283686484262497,0.0303595343566498,0.0324927255092143,0.0344203834823505,0.0362312837823844,0.0384348060624293,0.0403794798258466,0.0424521918364372,0.057268354773754,0.0713367138899053,0.0847400794274517,0.0975107440448045,0.1097049525816649,0.1255204920631565,0.1389701517849571,0.1507528070772371,0.1625494861972191,0.1734713560084871,0.1869094509373453,0.1987094263756931,0.2104554291983012,0.2217038340089376,0.2323817480295918,0.2428361132940043,0.2533960350802902,0.262850086995566,0.2719449225473322,0.2805720033835532,0.2880528266164875,0.2955699527228156,0.3020939191265095,0.308962546368314,0.3154575662761648,0.3214193437257773,0.3271443743362279,0.332761926529783,0.3381581328026053,0.3424572767727835,0.3419972824259057,0.3420690793092069,0.3420007324562639,0.3417511094407262,0.3423178187335445,0.3417785543498253,0.3409710770011417,0.3423862084848086,0.3434786332105849,0.3448245001700406,0.3455386176951561,0.3463995239039873,0.3478526058974467,0.3485093390804598,0.3489569484396528,0.3490242305173543,0.3500747900126568,0.3513711268053699,0.3526487714813237,0.3556998556998557,0.3574892614659831,0.3586214312597451,0.3617673349508364,0.363953488372093,0.3647204731921389,0.3672661870503597,0.3688972079238808,0.3736286483129787,0.3740543569627346,0.3804597701149425,0.0,1.6924257292005005,57.04409841786538,204.97294115170297,293.3565286395617,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95713,43004,405.6815688568951,6753,69.32182671110507,5215,54.01565095650539,2089,21.439093957978542,77.3419109081298,79.71059245386503,63.33255108723839,65.08078122171807,77.07295607717138,79.44349955309534,63.231537330582825,64.98340843981121,0.2689548309584211,267.09290076969694,0.1010137566555613,97.37278190685572,118.69638,83.1371147505478,124012.8091272868,86860.8389148264,280.41245,176.86270355651055,292513.9427246037,184326.187201854,307.40941,147.92191154371667,318875.64907588315,152639.16429951938,2994.7962,1377.3922050041592,3101797.289814341,1411949.5209680598,1248.87602,555.4303553046974,1292415.2727424696,567910.0700058485,2047.21258,878.4957255994254,2102916.782464242,885638.3564638318,0.38192,100000,0,539529,5636.945869422127,0,0.0,0,0.0,23679,246.9048091690784,0,0.0,28380,294.2024594360223,1863027,0,66889,0,0,4651,0,0,50,0.5223950769487948,0,0.0,0,0.0,0,0.0,0.06753,0.1768171344784248,0.3093439952613653,0.02089,0.3279197853410535,0.6720802146589465,24.988183404962225,4.48511054412622,0.3263662511984659,0.2205177372962607,0.2253116011505273,0.2278044103547459,11.190740220209596,5.710003754954953,22.57848145977936,12766.509291134653,59.42337660873429,13.65303672043112,19.318320582256323,13.245235845904478,13.206783460142358,0.5551294343240653,0.7695652173913043,0.6962397179788484,0.5965957446808511,0.1043771043771043,0.6976744186046512,0.907651715039578,0.8590909090909091,0.6979166666666666,0.137546468401487,0.5040375097681687,0.7016861219195849,0.6394611727416799,0.5636978579481398,0.0946681175190424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00224805573558,0.0048241613459004,0.0069892473118279,0.0094966279353213,0.011774514987595,0.0138673943145719,0.0159128209833124,0.0179737894994692,0.0202575633687653,0.0223832478737449,0.024551512045105,0.026645719742476,0.0285158981530994,0.0304856689538645,0.0324231729717458,0.0344339232550446,0.0366308332815509,0.0386263867412488,0.0408330907124734,0.0427070740756179,0.0577772671728618,0.072206927594184,0.0850313726313138,0.098325479636486,0.1112236286919831,0.1269720344094213,0.139548454177011,0.1514277196942273,0.1629931943717347,0.1744681307599051,0.1886404274111894,0.2011992510092974,0.2131853785900783,0.223148178527292,0.234200539024256,0.2452360125341866,0.2551143335192415,0.2648120452935422,0.2734854588160537,0.2820633194023015,0.2899880796694712,0.297352985939567,0.3037829259048702,0.310492043124228,0.3161337386018237,0.3224146230082816,0.3281675130085888,0.3335795801915631,0.3393697419078854,0.3436432011611796,0.3438725589293656,0.3436360383667964,0.3431551976573938,0.3426232112171665,0.3433192728136882,0.3424655436447167,0.341422104030139,0.3418994413407821,0.3430204696378449,0.3436252662478297,0.3454542037809599,0.3470468108729702,0.348171232444042,0.3483087987414316,0.3501957751244743,0.3512763450713444,0.3520267949158365,0.3541646939999369,0.3553523513628018,0.3591363454618153,0.3616398243045388,0.363107003579251,0.3657949724561514,0.3680368805224741,0.3721151106467851,0.3764071856287425,0.3765973826020015,0.3796868562010713,0.3794555150154364,0.3812451960030745,0.0,1.827755908966533,61.05915213948162,203.2412669505992,281.9704290193689,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95719,42728,402.887618968021,6766,69.59955703674297,5280,54.69133609837128,2095,21.563117040503972,77.33810060160408,79.72121816267337,63.31256206328344,65.07502598319674,77.07851267785946,79.4597895052751,63.21737820868762,64.98127073639894,0.2595879237446183,261.4286573982696,0.0951838545958168,93.755246797798,118.93728,83.33937670248105,124256.25006529527,87066.33638328456,280.75149,176.2310623443605,292835.09021197463,183642.0821413956,303.02201,145.05665987462004,313173.1004293819,148929.06060791056,3037.51348,1357.092466523167,3148152.028332933,1392755.4945576286,1266.08291,544.644211266318,1312149.5941244685,558444.7928481472,2067.69222,857.636814306629,2130266.2794220583,870676.6595447779,0.37995,100000,0,540624,5648.011366604332,0,0.0,0,0.0,23681,246.89977956309616,0,0.0,28009,289.4096260930432,1861806,0,66752,0,0,4814,0,0,48,0.4910205915231041,0,0.0,0,0.0,0,0.0,0.06766,0.178076062639821,0.3096364173810227,0.02095,0.3190054782975137,0.6809945217024863,25.037754940765893,4.504738442187007,0.3183712121212121,0.2196969696969697,0.2314393939393939,0.2304924242424242,11.065973964739358,5.36338831800831,22.22659216226773,12734.377583523175,59.153478840913714,13.619731759972954,18.76748903863469,13.43113407326696,13.335123969039108,0.5450757575757575,0.7612068965517241,0.6906603212373588,0.5556464811783961,0.1273623664749383,0.7164658634538152,0.9032258064516128,0.8549618320610687,0.7142857142857143,0.175438596491228,0.4921933085501859,0.6941624365482234,0.640527950310559,0.5144329896907216,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432547485354,0.0045952525867315,0.0068938209434077,0.0090249405451551,0.0112025722163999,0.0133124191527719,0.0154417314321848,0.0177515397264751,0.0199928414378483,0.0221368965340705,0.024272193111086,0.0265438564064649,0.0286149068961617,0.030626325870698,0.0326913356097259,0.0346908617429135,0.0367866313260995,0.038656665317937,0.0407630730845202,0.0426163590149589,0.0570616984836459,0.0708812260536398,0.0849929697173196,0.0976030458881561,0.1095631815401489,0.1252803283544196,0.1377499044950974,0.1499462233912274,0.1617595195092496,0.1730412299241489,0.1860683116043529,0.1991728647677201,0.2104982419472475,0.2221358925816088,0.2335706974542973,0.2447717525019117,0.2543387460632999,0.2643682042277301,0.2723132658739622,0.2808813582638801,0.2888628940724097,0.2967247860045199,0.3040166779195243,0.3110343835419364,0.3171712997289446,0.322915895233158,0.3289292250607967,0.3343446834006858,0.3396896591954991,0.3442534199545766,0.3437537881338811,0.3432903652288878,0.3435530934156552,0.3426968728765777,0.3429297961247342,0.3422768343381349,0.3412357574124843,0.3425933531566756,0.3436724778019195,0.3441087073127123,0.3453279273191425,0.3463106642387776,0.3484708452360948,0.3479900343411218,0.3485586193598148,0.3496994770119428,0.3511437350631615,0.3553446270861489,0.3575885033298283,0.3608835055219095,0.3629287718345552,0.3631756756756756,0.3668228678537957,0.3703955314009662,0.3728323699421965,0.3714454277286135,0.3719383126700937,0.3694955964771817,0.3689926690198208,0.3698213606993538,0.0,1.8150994394499225,55.12959861506217,203.26361238890016,304.6054736527681,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95654,42749,403.55865933468544,6663,68.5909632634286,5226,54.09078553954879,2078,21.347774269763946,77.27782633283482,79.68896911841766,63.2892740309558,65.07264541259508,77.01996839825676,79.43182358039672,63.194267026111085,64.98045301499462,0.2578579345780554,257.14553802093576,0.0950070048447102,92.1923976004564,118.3292,82.89934623160835,123705.43835072238,86665.84380329975,279.49077,175.55868531429832,291663.2132477471,183009.0704876832,305.49537,146.54762587683004,316509.9839003074,150931.76988742422,2998.53756,1352.3166625834103,3103888.013047024,1382876.4229777972,1261.72439,545.5925308916258,1301119.336358124,552484.3821985289,2051.6822,856.3366780506642,2109491.291529889,865477.8382898628,0.3795,100000,0,537860,5622.974470487382,0,0.0,0,0.0,23491,245.02895853806427,0,0.0,28244,292.3557822987016,1864172,0,66926,0,0,4697,0,0,59,0.6168064064231501,0,0.0,0,0.0,0,0.0,0.06663,0.1755731225296442,0.3118715293411376,0.02078,0.3251928020565552,0.6748071979434447,25.08528595204413,4.534142228420061,0.3082663605051665,0.2248373517030233,0.2298124760811328,0.2370838117106773,11.022093403721051,5.5022222328375765,22.208265469530023,12733.293348435473,58.961294565298886,13.846550485639924,18.035136036755382,13.471834067690564,13.607773975213023,0.5545350172215844,0.7608510638297873,0.7200496585971446,0.582014987510408,0.1170298627925746,0.711969111969112,0.9205128205128204,0.8779220779220779,0.7007299270072993,0.1341463414634146,0.5026710760620707,0.6815286624203821,0.6704730831973899,0.5469255663430421,0.1127895266868076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021887603104797,0.0045229595975985,0.0066290378251071,0.0089027104484892,0.0111297624497685,0.0135186071861533,0.0157572667006629,0.0181907320212037,0.0202123524477813,0.0223005295991641,0.0244102564102564,0.0266858404807149,0.0288833552848205,0.0309813864325026,0.032893174614646,0.0347313440554377,0.0365373456022548,0.0386164932610636,0.0406668192886428,0.0425933456369191,0.0573070693348659,0.0711525370477038,0.0847354444596055,0.0979259399564352,0.1100629926244816,0.1252791684748669,0.1384198789423383,0.1507271080807542,0.1629093320214745,0.1739452495974235,0.1871450891654544,0.1996037159747937,0.2119041658049136,0.2226794195539407,0.2326492865950326,0.2432950616189378,0.2539698492462311,0.2632603680153058,0.2726839345304306,0.2807469487760756,0.288050518134715,0.2959221848110737,0.3031683308882684,0.3094932687581668,0.3157862751294455,0.3216823767457928,0.3274754180497276,0.3343732888487056,0.3394755952072203,0.3434866457083982,0.3433156090582742,0.3431710885950139,0.3436934644957033,0.3432227955243782,0.3420891693143002,0.3413921891090174,0.3414932680538555,0.3424741112063848,0.3434572222794193,0.3454049983864606,0.3469594975743673,0.3476716026837111,0.3490030287733467,0.349961850904358,0.3504201274869615,0.3510262779448294,0.3520856594806608,0.3551055333713633,0.3572696924497479,0.360639280407983,0.3616091954022988,0.363509898341359,0.3652907234798047,0.3678425947275382,0.3683561123766135,0.3708513708513709,0.3763975155279503,0.3762417218543046,0.3769662921348314,0.3759194734804491,0.0,2.10396912729667,56.96931654098446,198.1491312326924,299.4729641765037,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95827,42877,403.6962442735346,6770,69.50024523359805,5252,54.316633099230906,2053,21.09008943199725,77.39792083527668,79.70238993554445,63.37134666233783,65.07170097012701,77.15053166571964,79.45479773232368,63.27976552716025,64.9824476069614,0.2473891695570387,247.59220322076203,0.0915811351775772,89.25336316561072,118.18246,82.77103483180166,123328.97826291127,86375.48376950301,280.78396,176.3762695286895,292533.7535350162,183579.3977988349,303.04471,144.87740301535723,313029.78283782233,148657.4413934265,3023.23464,1360.1826948239125,3128116.1676771683,1392855.2826147825,1243.01131,541.5743124753252,1285227.9941978776,553345.0847979829,2016.741,838.7571583851797,2074091.7695430308,848889.8174170085,0.38049,100000,0,537193,5605.86264831415,0,0.0,0,0.0,23711,246.934580024419,0,0.0,28077,289.8139355296524,1869385,0,67007,0,0,4663,0,0,34,0.3548060567480981,0,0.0,0,0.0,0,0.0,0.0677,0.1779284606691371,0.3032496307237814,0.02053,0.3107994389901823,0.6892005610098176,25.36068970820556,4.444331651870729,0.3307311500380807,0.2189642041127189,0.2286747905559786,0.2216298552932216,10.95452369121861,5.459717987568754,21.83323174380094,12708.193561606244,59.13629701089621,13.514188475024106,19.536462447113404,13.317999766161233,12.76764632259749,0.5485529322162985,0.7660869565217391,0.6614853195164075,0.5795170691090757,0.1331615120274914,0.7269260106788711,0.9098360655737704,0.863961813842482,0.7686832740213523,0.1714285714285714,0.4892159350418675,0.6989795918367347,0.5971168437025797,0.5217391304347826,0.1229597388465723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0045293801740822,0.0064404888686038,0.0087121635206076,0.0109995120364346,0.0131994056705542,0.0152228403741517,0.0174243042520199,0.0194333472970073,0.0217718255389243,0.0238104995696897,0.0261303130097565,0.0281202482225783,0.0301109350237717,0.0324778396206967,0.0348366579936397,0.0369642358345144,0.0389191766339835,0.0408199291803823,0.0428990695834981,0.0570379488035382,0.0708473654485744,0.0838916674530527,0.0963309503784693,0.1083847167325428,0.1238437549553359,0.1370600897051183,0.1492187832602494,0.1610280843063315,0.1713985391438653,0.1849921385341058,0.1982110602766691,0.2104582268848182,0.221154371808749,0.231373239049389,0.2430885397637315,0.2541673635502035,0.2639040348964013,0.2732250969365774,0.2816883681548777,0.2899220863292719,0.2977721702356335,0.3043231482357393,0.3109169260234618,0.3170486237419668,0.3233568291692807,0.3290949514126552,0.3334476234015264,0.3382651543565138,0.3434850160636225,0.3441079701873363,0.3440536979080876,0.3433752723694384,0.3434873495278598,0.3434329951948745,0.3427986619212733,0.342083649229214,0.3430575586731349,0.3440753763697812,0.3443837475007141,0.3454746343564486,0.346286820633384,0.347875235503454,0.3484767025089605,0.3490891543008806,0.3501829587036069,0.349875361737486,0.3517405063291139,0.3543420820856086,0.3543664213248458,0.3570676313017995,0.3600385067921703,0.3612133519482168,0.3606959454280677,0.3647125674779808,0.3678639391056137,0.3700859950859951,0.3757085020242915,0.3705625341343528,0.3801369863013699,0.0,1.910094553584536,58.16347447260143,197.229528010024,298.87007198021166,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95547,42476,400.3998032381969,6745,69.37946769652632,5290,54.716526944854365,2165,22.19849916794876,77.19945181010942,79.67026521271184,63.224607941291474,65.05361341521458,76.93285065053405,79.40638850421466,63.12680013645139,64.96013668862507,0.266601159575373,263.8767084971789,0.0978078048400803,93.47672658951468,118.2764,82.76952783561845,123788.71131485028,86627.02945735444,278.76279,174.68075010108691,291130.9407935362,182198.122495826,301.19414,144.6863735868499,311338.21051419724,148401.547828687,3043.93176,1377.8850940609511,3151079.908317372,1407386.5783969697,1307.24121,566.3083437932545,1353158.047871728,577693.7567827915,2134.89224,887.585488545772,2192094.8224434047,892573.8931771901,0.37907,100000,0,537620,5626.759605220467,0,0.0,0,0.0,23568,246.01505018472585,0,0.0,27879,287.88972966184184,1861185,0,66828,0,0,4544,0,0,54,0.5651668812207605,0,0.0,0,0.0,0,0.0,0.06745,0.1779354736592186,0.3209785025945144,0.02165,0.3286477368569019,0.6713522631430981,25.12771453563895,4.556745852912073,0.3217391304347826,0.2149338374291115,0.2194706994328922,0.2438563327032136,11.26623020533481,5.73191716226561,23.07336895600126,12746.413331250067,59.96050158439248,13.548758739144,19.223418475919157,13.009349518874474,14.178974850454848,0.5421550094517958,0.7660510114335972,0.6880141010575793,0.5753660637381568,0.1224806201550387,0.7196048632218845,0.9152119700748128,0.8734491315136477,0.73828125,0.15234375,0.4833920483140412,0.6847826086956522,0.6304849884526559,0.5292817679558011,0.1150870406189555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023010410436792,0.0045859459020717,0.0065703956454626,0.008754270375793,0.0112696990674756,0.0134355440477889,0.0156044292493749,0.0178113408066708,0.0199551776010806,0.0222283711492344,0.0244005091566067,0.026560138199093,0.0287744593202883,0.0311842376727872,0.0333381559638716,0.0354532844750843,0.0377088453999564,0.0395555971273864,0.0414678860857065,0.0431900277702378,0.0579202276222057,0.0723124030032297,0.0852280491522395,0.0978051273405477,0.1095961357558846,0.1251351752507368,0.1388631793955254,0.1515581643543223,0.1632685858769834,0.1738344894337796,0.1876208270782257,0.2000434121988278,0.2119899629063932,0.2231985169096433,0.2337840075051045,0.2446286133268158,0.2545242918378081,0.2645140174258498,0.2731297588290862,0.2808518948226942,0.2889953485134963,0.2966151392179399,0.3035447362801622,0.3101799572331275,0.3168524270662038,0.323114198828096,0.3280027134655729,0.3332439883596262,0.3388242936018187,0.3431464689919915,0.3429505804132488,0.3434751998232996,0.343352127404016,0.3427142235754676,0.3427159977911437,0.3422672164440888,0.3408650023851168,0.3422099028197132,0.3434926856101628,0.34434420042414,0.3457263102270368,0.3471122079369502,0.3480853403252067,0.347695707070707,0.3485021224984839,0.3498197890084449,0.35024168488894,0.3523299648366965,0.3554445271251905,0.3557143427408087,0.3595218541837759,0.362292641429179,0.3654572940287226,0.3654919348673648,0.3674409856108342,0.3665433719126595,0.3704212454212454,0.3662170324139319,0.3657931034482758,0.3694638694638694,0.0,2.5771462479438045,57.61739282849143,205.15175899560373,298.7322934871009,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95672,42760,401.8939710678151,6829,70.08320093653316,5363,55.36625135880927,2228,22.807090893887448,77.33990302576841,79.72760308955587,63.32261558699434,65.08778737353042,77.05976831418229,79.45145704977945,63.21969947408471,64.98945274316554,0.2801347115861148,276.14603977642105,0.1029161129096252,98.33463036487444,118.04298,82.7160066378503,123382.99606990552,86457.90475567596,283.34921,178.3692793333527,295491.606739694,185763.0782682709,310.11467,149.01498060394246,319715.5803160799,152328.57199195583,3111.47368,1406.3846921836812,3214344.1341249268,1432180.4717147492,1295.71578,566.366347847705,1338556.5787273182,576283.0104142051,2194.89172,912.0885246250511,2250258.466426959,916247.9552557354,0.37912,100000,0,536559,5608.318003177524,0,0.0,0,0.0,23853,248.6202859770884,0,0.0,28607,294.65256292332134,1864700,0,66907,0,0,4509,0,0,50,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06829,0.1801276640641485,0.326255674330063,0.02228,0.3229296712442779,0.677070328755722,25.0942102920769,4.497379509206097,0.3220212567592765,0.2097706507551743,0.2269252284169308,0.2412828640686183,11.087644767515744,5.6016511972590255,23.719885725765632,12741.988350450456,60.55793035509805,13.21806246500065,19.48296418736586,13.694541912648535,14.16236179008301,0.5439119895580832,0.7626666666666667,0.6988998262883613,0.5792933442892358,0.1136012364760432,0.7140718562874252,0.9295774647887324,0.8600917431192661,0.7473684210526316,0.1384615384615384,0.4874596473801837,0.6857142857142857,0.6444616576297444,0.5278969957081545,0.1073500967117988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713866099463,0.004835031169226,0.0072551267871457,0.0095579571771015,0.012069999898315,0.0143223599828986,0.0166551147714763,0.0188005225769576,0.0209048904154399,0.0232860447501484,0.0254856732789994,0.0276027017594284,0.0295841559723593,0.0315808990152857,0.033728970998039,0.0355470082818946,0.0377837406628472,0.040107118390733,0.0420892758688845,0.0441785070208174,0.058791576132375,0.0724082333479908,0.0860761087387604,0.0987228312327729,0.1110771178394345,0.126281488377998,0.1391149353336233,0.1514896697073882,0.1629052069425901,0.1738934637159032,0.1880088743376556,0.2003743697388068,0.2121558136500065,0.2230774276780443,0.2328002729503956,0.2433073046463975,0.2537519945547261,0.2626125112511251,0.2715462467096305,0.2798872890965946,0.2884295034935912,0.2965137357175436,0.3037550740245446,0.3102345032533282,0.3169502434995931,0.322611653356995,0.3277014342569648,0.3335030031558587,0.3380031621782742,0.3424567058108661,0.3421112953898844,0.3419362839662679,0.341768757409812,0.3424651580563845,0.3418249534450652,0.3398487242823609,0.3395612935970435,0.3407584107921362,0.341214483536773,0.3416355482499241,0.3425693167748471,0.3433841155377696,0.3444453774456293,0.3456751291844529,0.3468266834426189,0.3480825185457024,0.3488298726626133,0.351378763866878,0.3541777258732349,0.356023447780835,0.3562408491947291,0.3581012455230662,0.3617021276595745,0.36783988957902,0.3704648526077097,0.3677049767275331,0.3701358863495985,0.3709942481511915,0.3737714125245717,0.374611801242236,0.0,2.650728892104479,58.435285446428686,201.3296581397225,308.66075862913,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95781,42679,401.86467044612186,6754,69.30393293033065,5254,54.22787400423884,2087,21.402992242720373,77.331780499572,79.67348577528678,63.32970022966426,65.06300285819081,77.0779197606781,79.4210015188356,63.23627533121658,64.97300749882255,0.2538607388939056,252.4842564511829,0.0934248984476795,89.99535936825964,118.87128,83.24200973866648,124107.36993767032,86908.6872539089,280.45547,176.49081383351975,292167.0268633654,183623.74505667412,307.56354,147.587359060779,317401.0085507564,151240.94487978125,2995.7002,1359.7208374494862,3093876.1132166088,1385881.1480880524,1243.68079,540.8536709646223,1282890.782096658,549150.0940797682,2044.902,846.4662738280463,2098172.6020818325,851543.7641094155,0.37972,100000,0,540324,5641.244088075923,0,0.0,0,0.0,23773,247.5438761340976,0,0.0,28358,292.3335525834977,1862297,0,66880,0,0,4676,0,0,47,0.4907027489794426,0,0.0,1,0.0104404840208392,0,0.0,0.06754,0.1778679026651216,0.309002072845721,0.02087,0.3251369959252494,0.6748630040747506,24.926598691136885,4.460848515935365,0.3229920060905976,0.227255424438523,0.2223068138561096,0.2274457556147697,11.196943279485955,5.708856470647041,22.05414692159188,12668.011545050878,59.32480421698198,13.997348279394023,19.30644786649156,13.08916118437885,12.931846886717551,0.549486105824134,0.7646566164154104,0.6923983500294637,0.577054794520548,0.104602510460251,0.7145003756574004,0.8790931989924433,0.8660714285714286,0.704119850187266,0.1187214611872146,0.4934998725465205,0.7076537013801757,0.6301040832666133,0.5394006659267481,0.1014344262295082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018232463914915,0.003973885892705,0.0061696449409926,0.0082286968182372,0.0105873379099923,0.0129532887300278,0.0150486327766562,0.0173853566907591,0.0197910490482713,0.0218150176588012,0.0241214581539344,0.025915354128591,0.028122236617517,0.030078595782816,0.0323965611550886,0.0344250093040565,0.0363416048717842,0.0386358686069306,0.0406950160036579,0.0428584816268729,0.0570402913583854,0.0708980983661429,0.0836766571269826,0.0966982619112671,0.1083655598992634,0.1237490356874887,0.1369500005299922,0.1493911841335672,0.1608661778674265,0.1715776615806617,0.1852306367404058,0.198197905849775,0.2099894515915047,0.2219038453125683,0.2320373284618516,0.2427764236649678,0.2529984714768657,0.2634432184993983,0.2727674774621534,0.2811498305705651,0.2885602626954028,0.296094544519387,0.3034476231040439,0.3104192133457971,0.3167421913913962,0.322644697408828,0.3290035698628421,0.3344591580530454,0.339907162491572,0.344452223998309,0.3441507705571721,0.3436679000288854,0.3426305483948217,0.3418360703175866,0.3415548481152003,0.3403403249812038,0.339134711491171,0.3396453013951039,0.3395770496298327,0.3402379035864413,0.3408557094270843,0.3414358730536075,0.3429948640229014,0.343541615213633,0.343741679374531,0.3441418752295503,0.3453117835855112,0.3487299380765828,0.3529266833268804,0.3548631612542887,0.3547766323024055,0.3552786394266766,0.3561914473264929,0.3574170761670762,0.3607672682604176,0.3628782463664522,0.3722436391673092,0.376391982182628,0.3723640399556049,0.376577287066246,0.0,2.3540509711815423,58.36166776399151,197.30309578519663,298.4521042236211,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95693,43097,406.759115086788,6706,69.03326262109036,5226,54.08964083057277,2103,21.57942587232086,77.34192318165195,79.71575823955851,63.32298576779221,65.07419502260043,77.08768970794854,79.46305381492242,63.22966398023641,64.9840719602249,0.2542334737034082,252.704424636093,0.0933217875557943,90.12306237553958,118.53886,83.04335023961639,123874.11827406392,86781.00826561649,280.83813,177.05345858053676,292975.0660967887,184519.20054814537,305.44946,146.49185913133493,316060.1924905688,150656.21850746288,3002.43616,1352.8032876646807,3108596.198259016,1384715.7970433375,1245.20832,536.287228811695,1288454.1398012394,547625.5617565494,2075.13078,856.5736015943972,2132303.4077727734,865412.5197426106,0.3832,100000,0,538813,5630.641739730179,0,0.0,0,0.0,23694,247.0818137167818,0,0.0,28202,291.5364760222796,1862434,0,66753,0,0,4676,0,0,65,0.6792555359326179,0,0.0,0,0.0,0,0.0,0.06706,0.175,0.3135997614076946,0.02103,0.3277872582480091,0.6722127417519909,25.003456685042217,4.464677204687597,0.3249138920780712,0.2183314198239571,0.2198622273249139,0.2368924607730577,10.960450010925562,5.469640973092493,22.238436337332026,12797.619895054191,58.89912393921373,13.3767575664608,19.327445425227907,12.796455587289865,13.398465360235155,0.554726368159204,0.7791411042944786,0.7025912838633687,0.598781549173194,0.104200323101777,0.7198772064466615,0.904632152588556,0.8549107142857143,0.74609375,0.1379310344827586,0.49987254652052,0.7196382428940569,0.648,0.5565509518477044,0.0964214711729622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161771108613,0.0043279512674714,0.0065126753705225,0.0088772421638531,0.0111661395462357,0.0133982203579646,0.0157208979874803,0.0177264047869461,0.0199907970755151,0.0221268840104849,0.0240956443277827,0.0259496205625327,0.0281717665209565,0.0303342538020854,0.032516464686087,0.0344877509022657,0.0362969638584169,0.0384571470090615,0.0405994238708805,0.0426405460324076,0.0575233718075938,0.0713582677165354,0.0845744513366289,0.0976472073740477,0.1094838137846621,0.125107148526377,0.1383462159177779,0.1505006391137622,0.1622109865207213,0.1731425627374793,0.1870599777899968,0.1997790701452289,0.2121165944663343,0.2231791123172546,0.233979086406164,0.2458313482610767,0.256405390017081,0.2658366074142453,0.2754603106174912,0.2835870474095964,0.2908112486980673,0.2986588962224407,0.3053305863408165,0.3115900314216497,0.3183679918326669,0.3238448641451748,0.3295504365362695,0.3352005092297899,0.3401675485008818,0.3457838966255318,0.346084304835924,0.3457824011478712,0.3462195552417931,0.3461416093017874,0.345701384350306,0.3451908794389232,0.3445638922752965,0.3456668311133037,0.3463718723775924,0.3477196368575309,0.3496218731820826,0.3506184586108468,0.3524407662577718,0.3528949730700179,0.3526606123383036,0.3539481237931214,0.3547890535917902,0.3557141958613749,0.3584370071841598,0.3608092026973423,0.3624279816721862,0.3648032247798876,0.3689859830786715,0.3668437025796661,0.3694636516538964,0.3721857410881801,0.3743033589395993,0.3718612993224392,0.3697547683923706,0.3696788648244959,0.0,2.025193216504193,57.630799571342855,198.9080014622605,294.9388539935283,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95746,42730,403.9333235853195,6802,70.04992375660602,5334,55.208572681887496,2189,22.549244877070585,77.32392886815877,79.68995845362171,63.31606620966248,65.0661785516906,77.05528156993068,79.41842895399652,63.21755931096507,64.9688138080425,0.2686472982280889,271.52949962518846,0.0985068986974084,97.36474364810022,117.93166,82.66194060511062,123171.37008334552,86334.61513286259,281.27911,176.50773185027745,293254.4127169804,183839.7793180212,310.29836,148.88329342725933,321313.0679088421,153379.08370868425,3084.02612,1400.0745535403412,3192931.1302822046,1434827.8405404382,1307.19381,567.1869008852814,1353563.772899129,580974.6048871442,2149.25474,896.9446520368235,2215500.4491049238,910810.4771323882,0.37987,100000,0,536053,5598.698640152069,0,0.0,0,0.0,23725,247.24792680634175,0,0.0,28662,296.5659139807408,1864690,0,67045,0,0,4675,0,0,45,0.469993524533662,0,0.0,0,0.0,0,0.0,0.06802,0.1790612577987206,0.3218171126139371,0.02189,0.3382743672213676,0.6617256327786324,24.771193881589344,4.489046948036434,0.3233970753655793,0.213535808023997,0.228158980127484,0.2349081364829396,10.992430469348896,5.524224072658627,23.362186379874107,12687.175931791708,60.31210641610712,13.430291372018385,19.522058078092844,13.611806432392632,13.747950533603271,0.5374953130858643,0.7743634767339772,0.6753623188405797,0.5653245686113394,0.1053471667996807,0.7048710601719198,0.92,0.8637362637362638,0.7380952380952381,0.1066176470588235,0.4781615033011681,0.7028795811518325,0.6078740157480315,0.5102925243770314,0.1049949031600407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002106819816261,0.0040758803191759,0.0062719467391966,0.0087687211688918,0.0110774301175896,0.0132382892057026,0.0152417266480435,0.0173017444649728,0.0194971832857916,0.0217159823896795,0.02375508781283,0.0257808168545555,0.0277683537406573,0.029675332701578,0.0319381668833715,0.0337702342312542,0.0358178654292343,0.0376347992153362,0.0396402017365985,0.0416419232171693,0.0564290486928923,0.0711416136591898,0.0848529334661563,0.0972429601901116,0.1093993842000927,0.1253847537047418,0.1383813949540603,0.1506398654259736,0.1624586136921926,0.1730517740379462,0.1871010795741978,0.200300586034643,0.2119617797006294,0.2227992303319193,0.2323197888601748,0.2437965741366137,0.2544943256000803,0.2644341671448986,0.2731216005995435,0.2812779523405426,0.2888319695880949,0.2961638986884823,0.3030123339658444,0.3097502401536983,0.3164540008766376,0.3218603732108233,0.3276251411366202,0.3326614960710276,0.3374483994080536,0.3420756639451641,0.3420068325749085,0.3418863551711294,0.3418914527136821,0.3415886088797378,0.3420903618048518,0.3404764461352027,0.3396363982184464,0.3412089446790332,0.3421498349044499,0.3429950827000447,0.3435336497870504,0.3433214427269124,0.3439370078740157,0.3450247807853602,0.3457594402219809,0.3459101382488479,0.3468424665370095,0.3508660818898635,0.3537082314588427,0.3563861682990206,0.3599633111671635,0.361720292407022,0.363946653182479,0.3680672268907563,0.3712444318074116,0.3730272596843615,0.3740886998784933,0.3741564112743152,0.3654103180967655,0.3652239939255884,0.0,1.823100421361889,62.059680921243626,192.881470267576,304.8400420410639,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95799,42667,402.05012578419394,6855,70.58528794663827,5257,54.36382425703817,2109,21.659933819768472,77.4066300966336,79.74344255971964,63.35719594835807,65.08687153909808,77.15090606241053,79.48888821694142,63.26438245508223,64.9970338084697,0.2557240342230784,254.55434277822064,0.0928134932758411,89.83773062838907,119.55262,83.66563443477182,124795.26926168332,87334.55926969156,280.03264,175.11467086923537,291791.89761897305,182273.04133575017,297.65748,141.90199662554798,308068.5810916607,146096.09225317655,3023.51288,1345.9182738154946,3127986.1793964445,1376825.3048732183,1255.22441,542.1736354106931,1292934.644411737,548681.810460559,2075.53432,853.628942921627,2133284.2722784164,862360.9280762334,0.38158,100000,0,543421,5672.512239167423,0,0.0,0,0.0,23647,246.286495683671,0,0.0,27472,284.01131535819786,1865249,0,66991,0,0,4806,0,0,55,0.5741187277528993,0,0.0,0,0.0,0,0.0,0.06855,0.1796477802819854,0.3076586433260393,0.02109,0.3211719181868435,0.6788280818131565,25.400246547258877,4.535835218689024,0.3340308160547841,0.202587026821381,0.2282670724747955,0.2351150846490393,10.837444598465703,5.3784937852613925,22.28014827636175,12825.108166657415,58.72908558942382,12.439980741756006,19.605082294721925,13.234839219415225,13.449183333530645,0.5421342971276394,0.7549295774647887,0.6810933940774487,0.59,0.1148867313915857,0.7089430894308943,0.8987730061349694,0.8613138686131386,0.748062015503876,0.1361702127659574,0.4911845045939905,0.6914749661705006,0.6260223048327137,0.5467091295116773,0.1098901098901098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019960686566559,0.004218125773154,0.0065556468880973,0.0088698779756764,0.0109132331851791,0.0131463717643225,0.0155278236577557,0.017751237686929,0.0196962263379533,0.0217671619796143,0.0238485662164101,0.0259606998101687,0.028027585639845,0.0302347127856701,0.0323262310459638,0.0341370230781145,0.0363626959085501,0.038624607378689,0.040516954787234,0.0425073396214629,0.0575849584207176,0.0716870241780306,0.0849099122705881,0.098021081836621,0.1103220844352196,0.1266153147156095,0.1397774244833068,0.152021603461657,0.1638821320360176,0.1751451153426007,0.1883384433327954,0.2020648648648648,0.2143268468116083,0.225460223178215,0.2361599297012302,0.2474887158155589,0.2575178119459899,0.2676197219506164,0.2766420626551923,0.2852205360617089,0.2924302512458231,0.2999415751343772,0.3066786533866427,0.3131534509395322,0.3191484193779527,0.325356729181556,0.330808997484009,0.3362555985342019,0.3412659342937092,0.3454915218424806,0.3458597953157235,0.3454452828110371,0.3454158383735848,0.3460309196349805,0.3459155013300441,0.3452404648527813,0.3440163169794615,0.3449207935389807,0.3456407813244402,0.3460417333191141,0.3462789827973074,0.3481669720071705,0.3481229381550925,0.3481422008118114,0.3486794804198821,0.349283042394015,0.3502882621907927,0.3521175291316877,0.3551221903228065,0.360188261351052,0.360867789225253,0.361379601753552,0.3637045838284035,0.3643901703603196,0.3667037449017427,0.3714585519412381,0.3712364358856793,0.3664596273291925,0.3706872757383384,0.3663328197226502,0.0,1.9745966933869368,54.28957762043165,202.31036438974436,302.8661685392325,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95699,43048,406.9635001410673,6917,71.2128653381958,5386,55.81040554237767,2205,22.80065622420297,77.29491858535671,79.69854719207558,63.29396199958445,65.07464796673726,77.03479910508835,79.43266370021139,63.20083737693041,64.98092199936518,0.2601194802683579,265.88349186418725,0.0931246226540452,93.72596737208028,118.67064,83.0762741511039,124004.05437883364,86809.97100398531,282.49691,177.19684125966504,294719.4746026604,184686.9050456797,307.96987,147.849490105046,318113.2613715922,151755.27191808095,3103.83084,1396.508141574261,3218980.4282176406,1434925.5285575192,1319.57865,574.3585018043757,1368812.5999226742,590115.7466655206,2166.4824,880.8533503447566,2242204.516243639,902368.7211787644,0.38258,100000,0,539412,5636.54792631062,0,0.0,0,0.0,23796,248.1530632503997,0,0.0,28505,294.1932517581166,1863547,0,66913,0,0,4760,0,0,46,0.4806737792453421,0,0.0,0,0.0,0,0.0,0.06917,0.1807987871817659,0.3187798178401041,0.02205,0.3228302929795467,0.6771697070204533,24.982193116486837,4.482759249557115,0.3330857779428147,0.2109171927218715,0.2218715187523208,0.2341255105829929,11.19184599366547,5.670741476489779,23.27340028840006,12759.680303169458,60.6844663377163,13.370562922833154,20.199569545431093,13.41851783208446,13.695816037367594,0.5477163015224656,0.7588028169014085,0.6811594202898551,0.59581589958159,0.1221252973830293,0.7319116527037319,0.8900804289544236,0.8701594533029613,0.7638376383763837,0.1739130434782608,0.4883378345200098,0.6946264744429882,0.6199261992619927,0.5465367965367965,0.110572259941804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022301742577067,0.0043228104356297,0.006448992027624,0.0086218290885059,0.0109327442816861,0.0129340658220623,0.0150414302624596,0.0173269855540344,0.0194172770798379,0.0214917178008379,0.0236033892046037,0.0255385595266223,0.0276805927145503,0.029701847863054,0.0318025578298702,0.034033795942005,0.0361335917018123,0.0379979443735011,0.0398626859461146,0.0418990046380738,0.0567578859410904,0.0712281730245802,0.0839970199683109,0.0975917684562699,0.1099670858300278,0.1249576809140922,0.1381839409860425,0.1509912058428976,0.1624569951065239,0.1732376385268149,0.1873741127303669,0.2001882139148494,0.2123787990782208,0.2243044780033656,0.2344837443514782,0.2453448466733089,0.2549358616843279,0.2636902685734217,0.2730998467389453,0.2818120336088217,0.2899136314168615,0.296870611365977,0.3050040842419292,0.3110644677661169,0.3177012444098775,0.3236045464081648,0.3291450046977764,0.3343516891977902,0.3396409572746923,0.3448084836973726,0.3451872989379888,0.3454582960874647,0.3464361694633472,0.3462044439304353,0.3456808482162773,0.3449556489978822,0.3440745799320268,0.3445749007854826,0.3450893698695868,0.3460304371986305,0.3467819404418828,0.3478252226463104,0.3492458077020308,0.3491677912730544,0.3494481503941783,0.3527046207222835,0.3543535771796641,0.3573444983664795,0.3586065573770491,0.3620110391168706,0.3633849557522124,0.3658536585365853,0.3684343914338212,0.3706969255539369,0.3690702087286527,0.3696693818878773,0.3697118332311465,0.3769058751778817,0.3708971553610503,0.3560864618885097,0.0,1.7302007868917104,58.29969040330015,204.3224495113768,311.26327153981094,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95720,42935,403.7818637693272,7017,72.07480150438779,5528,57.17718345173422,2248,23.129962390305057,77.3593554540744,79.73072409852614,63.33143217950936,65.0838730771568,77.08372373184426,79.45431919227374,63.2300146046076,64.98480315978829,0.2756317222301447,276.4049062523952,0.1014175749017667,99.06991736851012,116.9619,81.95682410836335,122191.70497283744,85621.42092390655,283.33938,177.78139790854928,295395.34057668195,185118.12473183067,311.74557,150.05418346185633,322388.9155871292,154229.78585949494,3156.82784,1431.6683271385732,3267413.957375679,1465152.2420431392,1318.21122,579.3198216370365,1364288.915587129,592398.5156726362,2199.46756,913.7742242137988,2264982.3443376515,926120.4615749144,0.38217,100000,0,531645,5554.168407856248,0,0.0,0,0.0,23915,249.2164646886753,0,0.0,28894,298.4956122022566,1870095,0,67102,0,0,4690,0,0,44,0.4596740493104889,0,0.0,0,0.0,0,0.0,0.07017,0.1836093884920323,0.3203648282741912,0.02248,0.3158609451385117,0.6841390548614883,24.777985190299603,4.442699399524341,0.3288712011577424,0.2141823444283647,0.2339001447178003,0.2230463096960926,11.12439666011624,5.657930762104607,23.909861351789036,12857.66434502416,62.46178550129029,14.213643721083889,20.36622142706621,14.448410716313685,13.433509636826503,0.5452243125904487,0.7829391891891891,0.6776677667766776,0.5467904098994586,0.1200324412003244,0.7277777777777777,0.9190371991247264,0.8619909502262444,0.688135593220339,0.1788617886178861,0.4809197651663405,0.6973865199449794,0.6184593023255814,0.5050100200400801,0.105369807497467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0045313086054314,0.0070524724243254,0.0093233937965915,0.0119784834711164,0.0143137833793152,0.0166165451857892,0.0187411959251168,0.0209973216658829,0.0231574852322403,0.0251653591755114,0.0275269877463819,0.0296411374953701,0.0315268905831444,0.0337846204647707,0.0358597448779176,0.0380470230145665,0.0398390258575088,0.0419053361471208,0.0438845024061998,0.058768861274996,0.0730224185209218,0.0867503750091785,0.0996982028875779,0.111917240506596,0.1278324341478895,0.1404102683830162,0.1530738272183301,0.1650511376387983,0.1759030714086411,0.1893318965517241,0.2024877937880936,0.2139632043345337,0.2251600547195622,0.2355053704213715,0.2469639668614903,0.2567298885240042,0.2663231207173959,0.275231544538273,0.2837088308771286,0.2915523766535884,0.2993251383057111,0.3066843275462415,0.3125127234842588,0.3181619521670511,0.3238808544186848,0.3286313286188121,0.3336682266761623,0.3391074688313201,0.3438893138832467,0.3443650697555528,0.3439400192598706,0.3441956625692667,0.3444761575275327,0.3447150128359227,0.3447759140048013,0.3449708535410183,0.3456458326505194,0.3476086437032738,0.3483202198076683,0.3495384268988292,0.3506318583369647,0.3503830933737475,0.3505493515850144,0.3512011213688433,0.3517680006281571,0.3520086986379764,0.3545109211775878,0.3585671431092289,0.3599840573933838,0.3623401036174407,0.3650530148870087,0.3695652173913043,0.3735438381361128,0.3713638080846241,0.3689839572192513,0.3753652160541288,0.3718857605833502,0.374106652006597,0.3782026768642447,0.0,2.17473609765593,63.66282470115085,203.35361390810837,311.97925058048736,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95889,42863,403.768941171563,6758,69.34059172584968,5249,54.16679702572767,2160,22.17146909447382,77.4394230829848,79.71939285201069,63.39129033748679,65.07723150022247,77.1684997323258,79.44777493708257,63.291980835857046,64.98013822020089,0.2709233506590038,271.6179149281146,0.0993095016297402,97.09328002158202,118.30214,82.86305134751346,123374.0470752641,86415.59652046998,280.06025,176.15141178353454,291484.3934132174,183120.7247792078,306.81135,147.67143088056338,316339.87214383297,151218.88018527583,3028.91852,1377.8394582833082,3127921.492559105,1406162.2071913497,1266.42255,558.7158231182029,1305706.8276861787,567672.8427140667,2124.79578,887.4181467761582,2183241.6022692905,897548.7782819944,0.38023,100000,0,537737,5607.911230693823,0,0.0,0,0.0,23630,245.82590286685647,0,0.0,28313,291.6705774384966,1869069,0,67134,0,0,4850,0,0,51,0.5214362439904473,0,0.0,0,0.0,0,0.0,0.06758,0.1777345291008074,0.319621189701095,0.0216,0.3211151995471271,0.6788848004528729,24.91412068049537,4.579697679014937,0.3257763383501619,0.2114688512097542,0.2291865117165174,0.2335682987235663,11.202900653884209,5.682621275071807,23.160482889279976,12689.71361739353,59.315582875773416,13.045500993865392,19.286998338405883,13.490426491911364,13.492657051590788,0.5532482377595732,0.772972972972973,0.695906432748538,0.5918536990856192,0.1174551386623164,0.7105069801616458,0.9222222222222224,0.8363636363636363,0.7305194805194806,0.1660079051383399,0.4981995884773662,0.7013333333333334,0.647244094488189,0.5441340782122905,0.1048304213771839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024093946142943,0.0046921237180266,0.0069994623601375,0.0093817583689549,0.0116783721426611,0.0137766834211758,0.015737203972498,0.0174010607915136,0.0195026766376527,0.0216248286585241,0.0238429459921923,0.0257228458270915,0.0278274451774667,0.0301102498378678,0.0322896584430446,0.0343232415017967,0.0363235704900733,0.0384523723176076,0.0402807192392342,0.0422882466762374,0.0566639564700731,0.0706546157463037,0.0835593344572308,0.0959065187036084,0.1082816628593685,0.1237898159781243,0.1367878062472857,0.1491568287836445,0.1609653657964587,0.1727093722577745,0.1870659815535441,0.2002009572479661,0.2123305526590198,0.2235321110941153,0.233767233228523,0.2445555949008498,0.254466026991185,0.2634617544647871,0.2723411003749476,0.2801499925689657,0.288111710421455,0.2957050773039376,0.3029092241674843,0.3091845287989462,0.3148903620601734,0.3219794027791465,0.3278784921617936,0.3330790841946023,0.3377278666890921,0.3422554329920004,0.3423656261357671,0.3420969405293915,0.3418740849194729,0.341774347411326,0.3425837889232232,0.3411663781614302,0.3399325298151697,0.3408341129548476,0.3420386955629999,0.3440351409745906,0.3456331795852552,0.3462055867690116,0.347481441093822,0.3477182317972556,0.3487986942850971,0.3491451209341117,0.3489759395506064,0.3509908894524279,0.3543738441676262,0.3570441170662348,0.3596717892923523,0.3601526474797265,0.3631053325796118,0.3658313656790311,0.365453856357779,0.3670720076299475,0.3670278637770898,0.3658988070752776,0.3692006707657909,0.3689839572192513,0.0,2.2191188585243604,59.91439457852392,196.58456011122703,293.04878712843663,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95737,42420,400.22143998663006,6711,68.82396565591151,5214,53.8663212759957,2059,21.151696836123964,77.34647984393533,79.69857950390258,63.33814763576003,65.07519135829016,77.08705204839065,79.4387309299361,63.24307866137252,64.98220411977383,0.2594277955446813,259.84857396647953,0.0950689743875159,92.98723851632928,118.89636,83.20247197796803,124190.60551302004,86907.33152069527,280.12724,176.10593895689004,292011.95984833455,183358.77346991244,300.56372,144.74481334596183,309716.1703416652,147974.86590663405,2987.60184,1359.164990452734,3089539.467499504,1388591.1930107814,1258.2252,546.5298822025651,1301281.1452207612,557895.2883446993,2023.69068,847.7602979158564,2081674.1489706172,859186.6102959466,0.379,100000,0,540438,5645.027523319093,0,0.0,0,0.0,23737,247.3338416704096,0,0.0,27893,287.14081285187547,1863643,0,66913,0,0,4676,0,0,40,0.4178112955283746,0,0.0,0,0.0,0,0.0,0.06711,0.1770712401055409,0.3068097153926389,0.02059,0.3317743764172335,0.6682256235827665,25.03614983104302,4.423304982569813,0.3200997314921365,0.2232451093210586,0.2293824319140774,0.2272727272727272,11.251310116552744,5.823624793499958,22.06347113532186,12648.28369754295,58.90210664696732,13.725216302735264,18.93292154098056,13.283696098322368,12.96027270492913,0.5496739547372459,0.7697594501718213,0.6896345116836429,0.5735785953177257,0.1122362869198312,0.7304860088365243,0.9193154034229828,0.8861047835990888,0.6892857142857143,0.1478260869565217,0.4859958506224066,0.6887417218543046,0.6195121951219512,0.5382096069868996,0.1036649214659685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025420295726149,0.0046629970906952,0.0069311251154341,0.0092237053290262,0.0116643276994732,0.0139069881088125,0.015973496432212,0.0181977770746792,0.0203616440596538,0.0224422307085888,0.0243544931784868,0.026307145936403,0.0281293373772682,0.0300960973951735,0.0323046604966931,0.0341302572689592,0.0361247437410697,0.0381387145302692,0.0401567600158007,0.0419756686942754,0.0558855770736545,0.0690745062742676,0.082363802310089,0.0948034741645811,0.1071914305896741,0.1224929957181371,0.1352575526137135,0.1471248709570992,0.1593876439880005,0.1708124792352127,0.1850125415809927,0.197506299135964,0.2097655867937446,0.2203658376677302,0.230766694509166,0.2417541063443573,0.2526396771064456,0.2620747821197638,0.2719238536065164,0.2805130848078795,0.2880591317625013,0.2953971372438956,0.301975685689596,0.3080316999772201,0.3142895321857651,0.3211281482849929,0.3271011663412925,0.332089552238806,0.3364591439688716,0.3409439247397072,0.3419040813299716,0.3415484226477476,0.3422930475250317,0.34277157242896,0.3432487128359275,0.3430417235717464,0.341756709654932,0.3423343516967248,0.3427046080662548,0.3430119254080921,0.3438180316793033,0.3451499188022339,0.3459241187852275,0.3472268983009,0.3479887971413395,0.3486802363755745,0.3497818348834539,0.3527868230533337,0.3552835778781038,0.3600668337510442,0.3620058565153733,0.3635975674810626,0.3648904006046863,0.3663707332006735,0.3696125793312494,0.3722182340272792,0.3683159188690842,0.3685397867104183,0.3698283141007599,0.3795966785290628,0.0,2.3226186014483456,59.60328212268267,189.3869514882825,298.175625967594,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95736,42316,399.588451575165,6768,69.49318960474638,5259,54.32648115651374,2168,22.206902314698755,77.41222784566315,79.76786074696264,63.350809200748486,65.08965644925874,77.14064095130102,79.49820774319161,63.25106785882049,64.99358833745502,0.2715868943621302,269.6530037710261,0.0997413419279951,96.06811180371722,118.31094,82.78730159377562,123580.4086237152,86474.57758186641,279.53043,175.1007097746069,291350.0355143311,182269.10438560927,302.56936,144.77786801702894,312279.47689479403,148328.33370061725,3046.89948,1376.878223450512,3149697.6268070526,1405295.0441323142,1281.10902,560.4038196898082,1321949.141388819,569145.9825409667,2143.38336,894.0246863246126,2198000.167126264,899745.4801183781,0.37782,100000,0,537777,5617.291301077964,0,0.0,0,0.0,23620,246.05164201554277,0,0.0,27976,288.5017130442049,1869582,0,67006,0,0,4698,0,0,48,0.5013787916771121,0,0.0,1,0.0104453914932731,0,0.0,0.06768,0.1791329204383039,0.3203309692671395,0.02168,0.3124649073554183,0.6875350926445817,25.192092597067564,4.4769010345388764,0.3108956075299486,0.2226659060657919,0.2198136527857007,0.2466248336185586,11.031169833048423,5.538429032061905,23.031137366304907,12671.336854770554,59.34192523408616,13.891253380345704,18.364662764414494,12.873201693299183,14.212807396026786,0.5343221144704317,0.7566182749786508,0.7039755351681957,0.5501730103806228,0.1056283731688512,0.7032306536438768,0.9263157894736842,0.8688118811881188,0.7054545454545454,0.1433823529411764,0.4770875763747454,0.6750948166877371,0.6498781478472786,0.5017026106696936,0.0956097560975609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078185132671,0.0041757462119292,0.0062593840035709,0.0087232919002356,0.0110310190221535,0.0131826741996233,0.0154921825631408,0.0176219095333816,0.0195705715833256,0.0218321392016376,0.0240940395179142,0.0258892367705178,0.0280456461396113,0.0300917582360998,0.0320906379949026,0.0338935747953361,0.0354964638149379,0.037402861500472,0.0393316836830176,0.0414092694258956,0.0558339597427545,0.0691437600058596,0.082755509865833,0.0960320632850139,0.1081497425508567,0.1234245198158632,0.1366878223769395,0.1491683880997508,0.1612517099863201,0.1726092089728453,0.1862769409912775,0.1986377025036818,0.2112127150010886,0.2225883795530934,0.2326014388172173,0.2435412483776858,0.2541270355757731,0.2629788576127237,0.2714739950034067,0.2800376043290837,0.2885666635782452,0.2955125354057913,0.3027932299680435,0.3093226938883098,0.3150217407146501,0.3205873657238592,0.3257500906737371,0.3317662007623888,0.3370551290997906,0.3427074281802143,0.342585878118873,0.3428936065101343,0.343462867740032,0.3434541393472152,0.3435063686258265,0.3424333882080361,0.3412458230880776,0.341840819594451,0.3421352615908124,0.3437644464990576,0.3440775974631598,0.3458821214208403,0.3469643753135976,0.3480946328628448,0.3486088772595242,0.3496838325223139,0.351148296764279,0.3535356705690342,0.3547414548641542,0.3570523982903277,0.3603579052550302,0.3630867143993636,0.3683020290219235,0.3697281744529416,0.3731941467051915,0.3730496453900709,0.3733859942275558,0.3714285714285714,0.3696786597088712,0.3777006172839506,0.0,2.3567725137018694,58.54824579968154,199.3006523136108,295.0352025683088,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95730,43151,406.497440718688,6770,69.36174657891988,5287,54.64326752324245,2118,21.72777603677008,77.32373385663094,79.69514318576289,63.321321634088775,65.07575093820549,77.0600708317588,79.43149060393847,63.222994419714965,64.9800202186674,0.2636630248721445,263.65258182441664,0.0983272143738105,95.7307195380821,118.50674,83.00411536983503,123792.45795466416,86706.2724138463,281.80841,177.4383272099691,293781.6567429228,184757.54734185504,312.68682,150.3806895260065,323211.10414708033,154432.81216898412,3040.6076,1391.981395189329,3143862.4464640133,1421819.2846425788,1250.97091,548.2023166350436,1290214.7811553327,556362.725084417,2083.71214,880.3515839279479,2139365.841429019,887903.0458281713,0.38356,100000,0,538667,5626.929907030189,0,0.0,0,0.0,23753,247.48772589574844,0,0.0,28820,297.628747519064,1863567,0,66902,0,0,4840,0,0,55,0.5745325394338243,0,0.0,0,0.0,0,0.0,0.0677,0.1765043278756909,0.3128508124076809,0.02118,0.3289640591966173,0.6710359408033827,24.91899113728948,4.42144142780961,0.3334594287875922,0.2152449404198978,0.2205409494987705,0.2307546812937393,10.978708168215665,5.57815398597085,22.785140963970417,12765.712794452782,60.07481185176142,13.558233762456558,20.015961998468903,13.027923431705076,13.47269265913087,0.5515415169283148,0.7697715289982425,0.7022121384004538,0.5771869639794168,0.1057377049180327,0.7081199707388441,0.9103260869565216,0.8565310492505354,0.7407407407407407,0.1259541984732824,0.4969387755102041,0.7025974025974026,0.6466049382716049,0.5279017857142857,0.1002087682672233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0045635705375886,0.0067904993909866,0.0089323821718187,0.0113747354712681,0.0134563864356365,0.0157875413046138,0.0177606650802242,0.0196639841297434,0.0219058835577858,0.023967018429068,0.0262714649576863,0.0287745360273239,0.030966292597974,0.0333402146985962,0.0354495549421579,0.0377102493992874,0.0395605079681274,0.0414032606887373,0.0434084941441253,0.0578961106760636,0.0713605392336435,0.084652587626811,0.0979886810713008,0.1105463518543905,0.1264353232252743,0.1398669651287382,0.1523138640305606,0.1638346274204056,0.1745801968731905,0.1880181751620475,0.2010276936391172,0.2131463056597618,0.2240408480117208,0.233786950351489,0.2438951460181401,0.2542849177585726,0.2644081128153267,0.2734871166757394,0.2813601611500251,0.2891293290793915,0.296914446002805,0.30453239366671,0.3107117181883537,0.3169434086022811,0.3223865877712031,0.3281935015156449,0.3329086183171092,0.3382805101127386,0.3435976697182261,0.3439796152238685,0.3434401930368838,0.3432052060247597,0.3431051472293067,0.3429324831654847,0.3425010743446497,0.3421636352113568,0.3436771035253146,0.3449954729487333,0.3453087037301701,0.3457719380572501,0.3463666104887479,0.3479093856583435,0.3492042082546533,0.3500411045021519,0.3505206011172598,0.3521219778326537,0.3538178589548452,0.3572616898516866,0.3614095574085952,0.3616287094547964,0.3628304319793681,0.3669724770642202,0.3696777683332045,0.3697670013260087,0.3706772334293948,0.3747320061255743,0.3800730519480519,0.375,0.3819230769230769,0.0,2.158882626169996,60.19242378189728,205.4611196820752,290.4399574708097,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95789,42665,401.8415475680924,6636,68.25418367453466,5179,53.58652872459259,2084,21.484721627744317,77.38153749659537,79.72259161792186,63.350937847410606,65.0826194515191,77.12155549392442,79.45990083355377,63.25523628070542,64.98778316199784,0.2599820026709523,262.6907843680897,0.0957015667051877,94.836289521254,117.50882,82.35167358068517,122674.64949002497,85971.9525004804,279.11919,176.3133395052033,290883.2851371243,183557.96542943685,303.98638,146.45642008897818,313743.0080698201,150236.8250935744,2985.37284,1358.6473932262506,3090404.8272766187,1392215.80404343,1258.16733,550.4808139565151,1300925.0435853803,562162.79538655,2062.82296,852.7569772263877,2127929.887565378,868168.4146242498,0.37926,100000,0,534131,5576.12043136477,0,0.0,0,0.0,23549,245.31000428024092,0,0.0,28081,289.58439904373154,1870774,0,67060,0,0,4725,0,0,61,0.6368163359049578,0,0.0,0,0.0,0,0.0,0.06636,0.1749723145071982,0.3140446051838457,0.02084,0.317816091954023,0.6821839080459771,25.090132892194656,4.428655490077362,0.3151187487932033,0.2185750144815601,0.227263950569608,0.2390422861556285,10.881156175189185,5.37300209522553,22.017852240266915,12706.576739996495,58.32193282929325,13.368892038993204,18.51606082397468,13.069673345932172,13.367306620393208,0.5446997489862908,0.7835689045936396,0.6893382352941176,0.5641461342395921,0.117124394184168,0.700589970501475,0.9014778325123152,0.8356807511737089,0.6845878136200717,0.1510204081632653,0.4894062254773738,0.7176308539944903,0.6376451077943616,0.5267260579064588,0.1087613293051359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0045107142133111,0.0069700904995738,0.0089779917329352,0.0113569351526119,0.0135895843724869,0.0157071798426224,0.0182181896120597,0.0201720860839175,0.0224896146683856,0.024685918062017,0.026646958592515,0.0287068548926063,0.0308683923312946,0.032872614749871,0.0350467531125691,0.0365805703878471,0.0386864037815648,0.0405555613267818,0.0427286356821589,0.0574773815859499,0.0714913198075716,0.0850062373549421,0.0973110992024714,0.1095585833359677,0.1246988206450522,0.1380914533990356,0.150124386043248,0.1620675672791685,0.1735029635266503,0.1867108704778101,0.1991175325518017,0.2106830408085638,0.2212691093068744,0.2311863437383136,0.2422145711786912,0.2527712724434036,0.2618413212362418,0.2712806378803861,0.2794955713729888,0.2872542216053666,0.2948770419916507,0.3020247801853188,0.3084286826813634,0.3141319925186426,0.3207779570620912,0.3269576957695769,0.3320528638844016,0.3378033784221086,0.3425085729359008,0.342967919117944,0.3431398180892491,0.3434314955523915,0.3430802603036876,0.3436258979965195,0.342574014795301,0.3414113292310612,0.3427672440635191,0.3444056242011078,0.3464109374164453,0.3477715355805243,0.3493070794535713,0.3500513702220452,0.3498474925989055,0.3496798112571621,0.3516302643954436,0.3530619812316381,0.3545297534934841,0.3570302924181404,0.3603835638150335,0.362949476558944,0.3655502392344497,0.3657395701643489,0.3656967840735068,0.3655903796988921,0.3684712616265204,0.3733312874021789,0.3774579363470505,0.3774427694025684,0.3773657782927771,0.0,1.825468364180612,59.92031656282302,188.52175787381037,292.0637307053907,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95851,42648,400.8304556029671,6810,69.71236606816831,5321,54.86640723623123,2157,22.086363209564844,77.37299817448195,79.67550687925093,63.35320242165369,65.05747945447513,77.10610568261039,79.40990127406968,63.2552222274747,64.96306674497528,0.2668924918715589,265.60560518124987,0.0979801941789944,94.41270949984926,117.9112,82.68171226141037,123015.09634745595,86260.66734975156,282.38827,177.40107875313967,293995.86858770385,184464.20877522373,310.38567,149.13975380504874,319886.907804822,152555.80947587432,3068.45552,1401.1103270555864,3165847.32553651,1426329.5396559115,1270.48824,555.8055053256666,1311283.022608006,565664.5786957527,2120.73174,883.6350084993976,2173103.733920356,887528.0277765786,0.37982,100000,0,535960,5591.595288520725,0,0.0,0,0.0,23843,248.1038278160896,0,0.0,28728,295.77156211202805,1866921,0,67012,0,0,4633,0,0,46,0.4799115293528497,0,0.0,0,0.0,0,0.0,0.0681,0.1792954557421936,0.3167400881057268,0.02157,0.3200892234769273,0.6799107765230726,25.040889168554564,4.510908989553529,0.329073482428115,0.2102988160120278,0.2238301071227213,0.2367975944371358,11.216828356812496,5.716659512337053,23.001875096577507,12685.906757039576,60.37502341582719,13.363439638069762,19.94962865542949,13.187808066503129,13.874147055824803,0.5566622815260289,0.7971403038427167,0.7144488863506567,0.5684298908480269,0.1126984126984127,0.7173756308579669,0.931297709923664,0.8471337579617835,0.7106227106227107,0.144,0.5,0.7245179063360881,0.665625,0.5261437908496732,0.1049504950495049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0043682284857145,0.0067050099915806,0.0089962025059399,0.0111928918528759,0.0133754071661237,0.0154515711475543,0.017593811550276,0.0196793673175367,0.0218450078785274,0.0239844270273039,0.0261832209876163,0.0283030502343171,0.030560673590596,0.0328855808583239,0.035286828109671,0.0372550642471394,0.0394491420044764,0.0414243582287945,0.0433452638588313,0.0582181067384095,0.0719712407645442,0.0847345758556746,0.0978545099398254,0.1094880517319459,0.1242605425504943,0.1376598878797834,0.150135558981447,0.1621910088374674,0.1734336323014112,0.186924235901851,0.1996800449666533,0.2112230591150673,0.2219889792705326,0.2319025560335816,0.2423188534213499,0.2527584091035867,0.2621897711675629,0.2712370104823705,0.2794050290844135,0.2874937833242734,0.2948974457977933,0.3025901460804508,0.3094667465548232,0.314948866810795,0.3208651713088489,0.3269327120597224,0.3323702364890665,0.3370429870701941,0.3406647116324535,0.3407384441179246,0.3413165401204371,0.3417966269141204,0.3416731821735731,0.3419635151623367,0.3417917541896015,0.3403955026245262,0.341146689460188,0.3423572869993501,0.3429394297162892,0.3439756889080643,0.3450589912107055,0.3456101346532992,0.3465220308655781,0.3492612612612613,0.350611425442599,0.3518629721769466,0.3543796541713997,0.3559447459299457,0.3570491672959974,0.3587748042963772,0.3607386121753937,0.3618662283474522,0.3665082042631498,0.3697654543728041,0.3700759373516848,0.3652777777777777,0.3598352214212152,0.3638405390230207,0.3761609907120743,0.0,2.5670700452471142,60.77371760464226,202.82669945787575,293.89813535623426,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95795,43079,406.43039824625504,6909,70.81789237434104,5412,55.93193799258834,2169,22.224541990709326,77.39816222968327,79.7277840159173,63.35848721039546,65.07977805845782,77.12710457611732,79.45806389084265,63.25741031405671,64.98216983633972,0.271057653565947,269.7201250746417,0.1010768963387462,97.6082221180974,116.94342,81.97285291731288,122076.74722062738,85571.11844805353,282.75076,178.00972227728545,294597.2127981627,185258.72143417527,311.0649,149.65070610358097,321531.26989926404,153857.7605262501,3129.97,1436.197974394062,3234606.9419071977,1466498.564318771,1299.4465,578.3164315309936,1342504.5461662926,589747.5754862234,2143.65776,905.2020394418896,2197381.8675296204,909448.0893655128,0.38392,100000,0,531561,5548.943055483062,0,0.0,0,0.0,23833,248.2175478887207,0,0.0,28819,297.79216034239784,1871482,0,67126,0,0,4667,0,0,57,0.5845816587504566,0,0.0,1,0.0104389581919724,0,0.0,0.06909,0.1799593665346947,0.3139383412939644,0.02169,0.3311679336558397,0.6688320663441604,24.81937726409911,4.501995342510722,0.3305617147080562,0.2161862527716186,0.2148928307464893,0.2383592017738359,11.417912633214812,5.831813984066833,23.13339908140213,12792.472738560577,61.33637163804632,13.857142628950507,20.424056020605647,12.88949894892346,14.1656740395667,0.5593126385809313,0.794017094017094,0.6975964225824483,0.5950128976784179,0.1224806201550387,0.7242827151854444,0.9215686274509804,0.8528138528138528,0.7678571428571429,0.1792114695340501,0.5001255335174492,0.7257217847769029,0.6435568952524491,0.5402038505096263,0.1068249258160237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698122379534,0.0043376033727906,0.0065332954591567,0.0089263953204971,0.0114471610837188,0.0136991878193254,0.0156824782187802,0.0179263763620781,0.0201268913658701,0.0222733783507264,0.0247415709616941,0.0266187788609543,0.0287141330263915,0.0306617124859763,0.0327649132936057,0.0348987327391219,0.0368508172977446,0.0387514906413646,0.0407599093762341,0.0424572511611438,0.0572442218396201,0.0711394655650264,0.0846832111890458,0.0971854374238029,0.1091326944769495,0.1246154659337174,0.138291666224716,0.1513951854926249,0.1631312483978467,0.174064105176241,0.1876824316318947,0.2005365236297554,0.2127488481265756,0.2239693171760438,0.2347612923083687,0.2460210293303818,0.2561210944907361,0.2659204679678272,0.2755509657504709,0.2839760775417612,0.2920035627118252,0.2995415955282176,0.3062787861565967,0.3125389594821385,0.3184628277847279,0.3243199960579481,0.3295015323034586,0.3346518786090407,0.3391187213429008,0.3439541728812217,0.3443504271201056,0.3442571054985892,0.3447711957594384,0.3445809248554913,0.3449565798263193,0.3440096714462791,0.3437366463559389,0.3443900997899159,0.3444594617713982,0.3455468372982537,0.3464906523655047,0.3470204712550286,0.3480979458234541,0.3490384615384615,0.3497468384805509,0.3510203017904146,0.3521482490493217,0.355781289189867,0.3580937074176304,0.3601517426697226,0.360387395989633,0.3626907439674745,0.3637557041945364,0.3662228984404717,0.3694669429271049,0.3705741626794258,0.3733537519142419,0.3721735587696068,0.3781372002230898,0.3763936947327951,0.0,2.138111710483974,62.964537938136615,203.58454296214083,298.8522830583233,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95866,42709,401.58137400121,6873,70.42121294306637,5383,55.45240231155989,2165,22.14549475309286,77.3584022892406,79.64060972229916,63.35300198276878,65.04158226413665,77.09594811498172,79.38143716105697,63.25660898449479,64.94958426707008,0.2624541742588775,259.17256124219534,0.0963929982739912,91.99799706657076,118.0784,82.67909692840827,123170.02899881084,86244.21268062529,280.42633,175.90058377250648,291811.84152880067,182778.6637311524,310.4104,148.8249162803779,319316.9945548996,151781.64291715118,3101.87116,1402.697480610516,3198321.1983393487,1425874.5755643442,1288.69599,558.9679590968511,1325696.93113304,564544.2584499652,2132.0317,881.1768847478102,2183203.0542632425,882827.4573424786,0.37925,100000,0,536720,5598.637681764129,0,0.0,0,0.0,23678,246.2499739219327,0,0.0,28660,294.5256921119062,1866922,0,67100,0,0,4817,0,0,52,0.5319925729664323,0,0.0,0,0.0,0,0.0,0.06873,0.1812261041529334,0.3150007274843591,0.02165,0.3214534317137686,0.6785465682862314,24.964289927158568,4.488368943140874,0.3280698495262865,0.2169793795281441,0.2219951699795653,0.2329556009660041,11.07382551973897,5.555361531840688,22.950623665117632,12744.871346917624,60.98632073270843,13.85905795620287,20.02387521833083,13.380562482930875,13.722825075243843,0.5561954300575888,0.7799657534246576,0.7061155152887882,0.5799163179916318,0.1140350877192982,0.7128279883381924,0.917312661498708,0.8682505399568035,0.6851851851851852,0.1428571428571428,0.5026178010471204,0.7119078104993598,0.6485034535686877,0.5491891891891892,0.1067864271457085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021767963632313,0.0043469009332157,0.0064711789108539,0.0088131669526546,0.0108457003455986,0.0130369737123316,0.0153734871021639,0.0174103727880055,0.0198993292016785,0.0220304848751265,0.0243021077523109,0.0264603965471284,0.028613096705283,0.0307157405311992,0.0330997526793075,0.0351349956119973,0.0371573394020895,0.0393317234446091,0.0413122721749696,0.0430833576095551,0.0579435160183901,0.0717994796836309,0.0856251178183189,0.0983093562952851,0.1106136895106073,0.1251188438866704,0.1383363184501415,0.1512032241942173,0.1632988546236697,0.1746154258455271,0.187349923009831,0.1995543585250565,0.2110492672957342,0.2225999693915477,0.2327711320256838,0.2442649255795938,0.2541932461970825,0.2641691870074092,0.2724581125996846,0.2807154233074005,0.2882372002592352,0.2952346409893414,0.3027872872220709,0.3088429335700405,0.3149607256632864,0.3209698315750509,0.3265017047733654,0.3318250184821679,0.3373057600186938,0.3422730881185499,0.3424522572373304,0.3426254155229727,0.3435581090046724,0.3445873526259378,0.3440913086883316,0.3429361604056234,0.342259068674163,0.3429940553625241,0.3443673434421314,0.346105707338006,0.3480969897154868,0.3492245835726594,0.3508023861535876,0.3512223541802048,0.3532164306905617,0.353163731245923,0.3550430960671271,0.3589517727372825,0.3630488233227959,0.3669808694268782,0.3694558756287151,0.3700180678074184,0.3711771037801558,0.3718701700154559,0.3755859561848273,0.375075693351096,0.3787902592301649,0.3810794171967986,0.3866222592284207,0.3859176606387072,0.0,2.606554951573784,60.26873035732906,206.8043104795896,299.09737287805774,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95730,42475,401.2744176329259,6650,68.29624986942441,5208,53.797137783349,2032,20.83986211219053,77.38965647392791,79.75619763709362,63.34469261111818,65.09379338997904,77.14742701843106,79.51459936126852,63.256723600931934,65.00864379125964,0.2422294554968544,241.59827582509763,0.0879690101862493,85.14959871939709,118.52896,82.99884104158178,123815.66906925727,86700.80310067261,278.11627,174.44455322441354,289879.8182387966,181589.5852323353,303.66343,145.2384013598654,313315.3034576413,148798.64426535758,3005.86252,1346.3499096454811,3106924.099028517,1373769.06166583,1254.49577,544.2577346860269,1289469.4557609945,547855.9223074099,2001.19206,817.4732252495608,2053852.2511229496,823201.2447600384,0.37881,100000,0,538768,5627.984957693513,0,0.0,0,0.0,23512,244.9493366760681,0,0.0,28131,289.9926877676799,1868713,0,67019,0,0,4668,0,0,43,0.4387339392040112,0,0.0,1,0.010446046171524,0,0.0,0.0665,0.1755497478947229,0.3055639097744361,0.02032,0.3256314580941447,0.6743685419058554,24.78963286125573,4.504487478803715,0.3283410138248848,0.2167818740399385,0.2236943164362519,0.2311827956989247,11.134620505737956,5.7349263178551,21.306236278719357,12657.91591393446,58.37436934285363,13.297474638514288,19.207259811403084,12.997127021723422,12.87250787121284,0.5539554531490015,0.7714791851195748,0.6964912280701754,0.5914163090128756,0.1112956810631229,0.7480916030534351,0.9441624365482234,0.8578088578088578,0.7436823104693141,0.1619047619047619,0.4887121600820934,0.6789115646258503,0.6424668227946917,0.543918918918919,0.1006036217303823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093752532209,0.0045213547844246,0.0067790418007083,0.0091025458682975,0.0111487483088691,0.013217384220602,0.0154668080464106,0.017598840354835,0.0196050372066399,0.0218337035406835,0.0238832284384673,0.0260042912727011,0.027941403238242,0.0298721090676936,0.0317163986673955,0.0337739378468597,0.0358063681076883,0.0379503885298114,0.0397958759457886,0.0416141367202558,0.0564099351645942,0.0709007556885976,0.0837687545902843,0.0961243082879205,0.1088653529684796,0.1252472263059366,0.1377920176536739,0.1494216177675616,0.1611384023921401,0.1716265053780737,0.1848486153581119,0.1985721239656011,0.210483397481897,0.2221128824159723,0.2319243971131843,0.2425708591674047,0.2526397948374868,0.2615388072446182,0.2707837402797615,0.2794573510403441,0.2882327780539403,0.2958176060205906,0.302921088081677,0.3092967319635741,0.3157371122138238,0.3208183563937171,0.3267502468657425,0.3316299940256009,0.3376522616184343,0.3424281967126682,0.3422308881866469,0.3416237024816113,0.3416912902771915,0.3412894375857339,0.3412464227991874,0.3407319086489956,0.3402413597017754,0.3416074876460385,0.3414961593365508,0.3424087863654943,0.3429668138707213,0.3441200771137427,0.346302123491779,0.3469900968064983,0.3477262397435591,0.3491210303549635,0.3482370975983648,0.3504681706780619,0.3531439020959347,0.3557795752480376,0.3578691828508611,0.3606214840610768,0.3666624477914188,0.3668231374924288,0.3688967573611629,0.3724519853894191,0.3764831153027076,0.3783403656821378,0.3754778809393774,0.3794285714285714,0.0,2.303872424517013,57.5410130147013,193.2050972197453,294.54086236560846,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95760,42754,403.2163742690058,6742,69.35045948203843,5291,54.66791979949874,2059,21.125730994152047,77.34687979821054,79.70616591389205,63.33382307926016,65.08134955378928,77.1026188960982,79.46266994978565,63.2448313636782,64.99506799609836,0.2442609021123303,243.4959641064012,0.0889917155819617,86.28155769092416,119.68462,83.78485656573011,124983.93901420216,87494.62882803897,280.63515,175.96927904632832,292458.3646616541,183158.165253058,305.94934,146.37711262442127,315526.6917293233,149891.32189640182,3028.15004,1363.534080180298,3131575.8980785296,1393255.138032893,1300.23015,563.0793903957216,1341065.9461152882,571276.0969044709,2024.39302,829.6262315037277,2079107.3308270676,837178.9936079392,0.38101,100000,0,544021,5681.088137009189,0,0.0,0,0.0,23672,246.5747702589808,0,0.0,28279,291.40559732665,1862866,0,66865,0,0,4800,0,0,67,0.6892230576441103,0,0.0,0,0.0,0,0.0,0.06742,0.1769507362011495,0.3053989913972115,0.02059,0.3203047834062367,0.6796952165937632,25.29875381382642,4.426824632975699,0.3233793233793234,0.2235872235872235,0.2277452277452277,0.2252882252882252,11.272755792237875,5.848468716685552,21.77146412072149,12755.52283808561,59.51615734074215,13.989009121586628,19.163363905915386,13.298336016440333,13.065448296799792,0.5556605556605556,0.7962806424344886,0.6826417299824664,0.5643153526970954,0.1258389261744966,0.7318181818181818,0.9376558603491272,0.8387850467289719,0.78,0.1493775933609958,0.4971040040292118,0.7237851662404092,0.6305533904910366,0.5078534031413613,0.1198738170347003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019760042154756,0.0042286942765586,0.0062944162436548,0.0084352165208288,0.0104683812159192,0.0125455693366733,0.0148129269038637,0.0170477746018783,0.0194537016213121,0.0216959495433509,0.0235910474999231,0.0258129434353598,0.0279508854198803,0.030069224113066,0.0321685105680317,0.0340610721743265,0.0360981671326498,0.0381231975767132,0.0402174590964844,0.0423912364370951,0.057456868209287,0.0714345488399338,0.0853272380313293,0.097789642958494,0.1103347245057122,0.1257581841621404,0.1392716326790181,0.1513788777614764,0.163744,0.1745445197776421,0.187918163629714,0.2013313305741363,0.2134515312496605,0.224422045799526,0.2348818560302308,0.2454253789135966,0.2558136942320126,0.2652301951263375,0.2740855872209112,0.2820586214792764,0.2906699671494008,0.297233756360021,0.3044522533394858,0.3114948589506986,0.3176841849739046,0.3229985605137858,0.3273127532896382,0.3332316142813549,0.3388549539289781,0.3438126120426025,0.3441943685846125,0.3432710563244641,0.3437891389088248,0.3436827898786068,0.344605427231162,0.3441140005816356,0.3430814027092037,0.342759085012398,0.343984962406015,0.3446446750370595,0.3465739821251241,0.3469965363681346,0.3476455165180912,0.3480435026348245,0.3495005067323005,0.3514462376860197,0.3524627720504009,0.3549889135254989,0.3584606158947405,0.3594904356854758,0.3604202991649077,0.3611452379680572,0.362870000633834,0.3631920580374189,0.3640281030444965,0.3632488752071987,0.3705350298942204,0.3735161686451084,0.3719495091164095,0.3811410459587955,0.0,2.280381877636246,58.036108659332335,198.251273466428,301.6575593664317,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95750,42801,402.78851174934726,6870,70.38120104438643,5402,55.80156657963447,2091,21.389033942558747,77.36211040614715,79.72421348829458,63.32787542470121,65.07576156751499,77.09405237033593,79.45861739402076,63.22755115549484,64.97968418698412,0.2680580358112223,265.5960942738176,0.100324269206375,96.07738053087188,118.74852,83.10931120581172,124019.34203655351,86798.23624627855,281.68283,176.28218521384957,293593.4725848564,183514.4701972319,305.80993,146.414387128712,315773.9321148825,150151.1112460718,3106.18636,1408.2173808803673,3208968.772845953,1435633.0244181394,1286.63769,566.9740151251756,1327952.9712793734,576346.0001307311,2059.1546,875.9136242127197,2108016.0835509137,877732.1188861253,0.38217,100000,0,539766,5637.242819843342,0,0.0,0,0.0,23712,247.01827676240208,0,0.0,28317,292.1671018276762,1864675,0,66987,0,0,4623,0,0,51,0.5326370757180157,0,0.0,0,0.0,0,0.0,0.0687,0.1797629327262736,0.3043668122270742,0.02091,0.3287082003607603,0.6712917996392397,25.210258092599812,4.543408066805589,0.3293224731580896,0.2165864494631618,0.2260273972602739,0.2280636801184746,11.07021505631342,5.463129752718571,22.3979692982822,12782.53306816254,60.777028169450006,13.749129435644674,20.028190048766135,13.504124008771903,13.495584676267276,0.541095890410959,0.7521367521367521,0.6919617762788083,0.5561015561015561,0.1079545454545454,0.6869125090383225,0.8850267379679144,0.8675496688741722,0.6992753623188406,0.1178571428571428,0.4909181388405076,0.6896984924623115,0.6319758672699849,0.5142857142857142,0.1050420168067226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024619312482903,0.0045226844058652,0.0068317937265252,0.009032992267596,0.0115660444534865,0.0140954088075935,0.0163155425937633,0.0185412072204525,0.0207155346059856,0.0229583738671855,0.0252074124970516,0.0271591749527487,0.0293312757201646,0.0314303380049464,0.0334915883992156,0.035545170695395,0.0375482815396245,0.0395928658138014,0.0414665585563109,0.04321875,0.0574572254757654,0.0710504289600334,0.0848593543515197,0.0979583679565798,0.1098945147679325,0.1252300467497303,0.1383286831245159,0.1515309598841666,0.1626669515973929,0.1739801827306653,0.1871896776417116,0.2000129864508029,0.2123951568160308,0.2234146128012427,0.2337369290038525,0.244408981093601,0.2544179084470856,0.2638623111731466,0.2728521322602981,0.2816155829275279,0.289466674387631,0.2971381752209281,0.3039611581502753,0.3108802073334613,0.3162603009456207,0.3218511344428953,0.3272392361285148,0.3335413535749764,0.339998704075682,0.3446736575186878,0.3445090291170481,0.3447468136410609,0.3452344036309305,0.3450425174986984,0.3451166939200238,0.3438232904640005,0.3427896730430924,0.3434799750303906,0.3444694951151192,0.3454655747649378,0.3465550499091709,0.3479135839005623,0.3495249257042401,0.3510854740984193,0.3517645927493028,0.3543941012480133,0.3547183780397517,0.3581053491220906,0.3595781211675251,0.3625603673501702,0.3648857039187227,0.3690048594971477,0.3738388149635953,0.3734712365997282,0.3756633460571641,0.3750886315291893,0.3745050258909534,0.3764235764235764,0.3674078091106291,0.373070987654321,0.0,2.4032300909492923,60.847187370264685,199.831635148113,304.3253555983826,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95772,42690,401.818903228501,6736,69.26867978114689,5222,54.07634799315039,2128,21.93751827256401,77.32840490063373,79.6908606329719,63.31625382636724,65.06553336721566,77.06378779871035,79.42185253470319,63.219531401143286,64.9686752834033,0.2646171019233776,269.0080982687135,0.0967224252239518,96.85808381236428,119.65052,83.83255623461544,124931.98429603642,87532.8410691137,281.27514,176.83313342699427,293222.10040512885,184171.7091981185,305.17739,146.2697849221812,315966.618635927,150566.0596099515,2992.87388,1358.2828105475378,3100224.1573737627,1393589.5912448072,1235.60578,547.6225545667583,1276167.0216764817,558094.9477855522,2092.23396,876.0576252403915,2158316.146681702,893488.313487905,0.37892,100000,0,543866,5678.7265589107465,0,0.0,0,0.0,23739,247.37919224825623,0,0.0,28183,291.5987971432151,1857622,0,66717,0,0,4807,0,0,50,0.5220732573194671,0,0.0,0,0.0,0,0.0,0.06736,0.1777683943840388,0.3159144893111639,0.02128,0.3209112642385037,0.6790887357614963,25.03638898533685,4.4856348239968185,0.3184603600153198,0.2221371122175411,0.2330524703178858,0.2263500574492531,10.95304045850621,5.465354680690084,22.876052228476173,12670.97877096817,59.21258037801034,13.749508751989437,18.86766038471364,13.621625529920466,12.973785711386784,0.5507468402910762,0.771551724137931,0.6885147324113049,0.5883319638455218,0.1015228426395939,0.7196745562130178,0.9201101928374656,0.8452914798206278,0.7560137457044673,0.1666666666666666,0.4917312661498708,0.7038895859473023,0.6310599835661462,0.5356371490280778,0.0838709677419354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020672253579643,0.0043611432280573,0.0066908987531982,0.0087095266163946,0.011067933511017,0.013394312255541,0.015622450644477,0.0178053661126311,0.0200474350324071,0.0222941019919339,0.0243964942852749,0.0266546193810707,0.0290415466886055,0.0312088002636783,0.0332483721506186,0.0350911646752387,0.0370458544664113,0.0389924192929512,0.0411912629631938,0.0432622710088628,0.0581039755351682,0.0719836015854589,0.0850633283006207,0.0980629158214477,0.1101769025718831,0.1252694990488269,0.1382718143934172,0.1507438227594866,0.1614639512158655,0.1720562691656123,0.1859821438187242,0.1983772380591767,0.2098581436839127,0.2206985543380793,0.2316624840399771,0.2432076203134518,0.2537806497695338,0.2631099105183184,0.2719127916879577,0.2806189111747851,0.2887090799648099,0.2958456660856137,0.3030353272776797,0.3089063043817433,0.314423649872922,0.3194542112340698,0.3255253748196474,0.3309569963781054,0.3358820245868654,0.3409592535321095,0.3412464910386525,0.3407887479316051,0.3407161522706405,0.3411919648025935,0.3409950841650528,0.3398715900712706,0.3390013495276653,0.339643780996161,0.33925664444711,0.3406020426446873,0.3425845945844443,0.3444002296529468,0.3452767365401126,0.3453274483005847,0.3465904982283607,0.3477783872737246,0.3482012743949481,0.3503950640601882,0.3536889419531552,0.3559450007947862,0.3578429137986051,0.3609771607228021,0.3622052182639237,0.3615390453062154,0.3613903240958196,0.3647642679900744,0.3649579188982402,0.3627792580446813,0.3626495964375174,0.3673469387755102,0.0,1.6405943965897245,60.23820433642848,197.6693858132388,291.37083084382743,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95734,42469,399.7534836108384,6699,68.77389433221218,5284,54.64098439425909,2123,21.73731380700692,77.31464774318667,79.67875347347979,63.30648041847581,65.05515872277655,77.04958591652647,79.41775063033475,63.20702364527337,64.96029551572113,0.2650618266602009,261.002843145036,0.0994567732024407,94.8632070554254,118.32238,82.79903807609159,123594.94014665636,86488.64361260534,279.31786,175.86860797459946,291218.28190611483,183159.2307587685,306.4591,147.00902173447588,317479.9653205758,151427.35532846107,3034.54156,1383.2278700372967,3138694.173438904,1413796.3419864392,1268.48582,552.0010950719657,1310834.5937702383,562422.6137756341,2083.23678,882.0849953032833,2135388.26331293,885069.2234589508,0.37807,100000,0,537829,5617.951824848016,0,0.0,0,0.0,23603,245.9836630664132,0,0.0,28440,294.4304009025007,1862546,0,66874,0,0,4702,0,0,39,0.4073787786993127,0,0.0,0,0.0,0,0.0,0.06699,0.1771894093686354,0.3169129720853859,0.02123,0.3286931818181818,0.6713068181818181,24.892938604876885,4.523781656326226,0.3230507191521574,0.2200984102952309,0.2286146858440575,0.2282361847085541,11.18989414738402,5.673689996895318,22.805512975294533,12670.466669736728,59.825822716302056,13.74703217917886,19.367056075518384,13.518062427620578,13.193672033984235,0.5603709311127933,0.764402407566638,0.715875805506737,0.5827814569536424,0.12106135986733,0.7197640117994101,0.91644908616188,0.8789954337899544,0.6798679867986799,0.146551724137931,0.505346232179226,0.6897435897435897,0.6595744680851063,0.5502762430939226,0.1149897330595482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0048057912826596,0.0071053005542134,0.0093994512752769,0.0115061803754005,0.0136415501854191,0.0157823323573519,0.0178983480018786,0.0199537955144849,0.0220711682568281,0.0242789619923513,0.0264190077213734,0.0284823798062087,0.0305712401599142,0.0327105697770437,0.0347971715668031,0.0369672368802551,0.0390254531870959,0.0411229529503509,0.0430053756719589,0.0574575828765335,0.0713941804479799,0.084747896514824,0.0978818728703041,0.1100659108884787,0.1261663457673021,0.1394697178763241,0.1507917070417735,0.1616296597214055,0.1722261575117522,0.1853773228788058,0.1977307454728697,0.20956511316211,0.2207108957988535,0.2313766142105669,0.2424568845850592,0.2526570156400331,0.2625558413428996,0.2719670508459149,0.2808019301470588,0.2885480952159993,0.2958086640483029,0.302348475862887,0.3080683715510924,0.3142116725268575,0.3198804923517574,0.325992734560942,0.3309944350350834,0.3360532587296653,0.3402275487038699,0.3402764678936164,0.3411622176025992,0.3406988043432337,0.3406272582743171,0.341128168511246,0.3405145976447497,0.3390685209558998,0.3402774349607543,0.3418957102491651,0.342262916003505,0.3432208162805542,0.3451782675794388,0.3466345650580969,0.3477561237260861,0.3477821610699509,0.3483916375580001,0.3481407322654462,0.3507119455645161,0.3534821679303566,0.3545411165897884,0.3564514656195781,0.3611539894607973,0.3656356952718976,0.363218038193113,0.3691841182602103,0.3691739182262487,0.3674067221708295,0.3698347107438016,0.3714764164108289,0.3689358372456964,0.0,2.136033212949409,59.7261956397506,201.4055894124295,294.78678235731047,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95818,42461,400.509298879125,6634,68.09785217808762,5191,53.63292909474212,2049,21.039888121229836,77.3504688262772,79.6837189000995,63.33176974345843,65.06078997469578,77.09600398655797,79.4296454668313,63.23780412192483,64.96931414288933,0.254464839719219,254.07343326820356,0.0939656215335986,91.47583180644858,117.91164,82.64871940829472,123057.69270909432,86255.7133401811,280.96345,176.81290877427298,292675.88553298963,183980.29971177725,303.16166,145.3797756958271,313363.71036757185,149394.5428013948,2968.43756,1350.760230436528,3068339.8943831013,1380095.1556077416,1246.85442,547.1026259367578,1288887.9125007826,558620.2355221834,2011.52146,847.2875081004858,2067220.146527792,856353.1087309659,0.37801,100000,0,535962,5593.531486777015,0,0.0,0,0.0,23703,246.81166377924816,0,0.0,27988,289.0688597132063,1866694,0,67038,0,0,4521,0,0,64,0.6679329562295184,0,0.0,0,0.0,0,0.0,0.06634,0.1754980026983413,0.3088634308109738,0.02049,0.3159100673063153,0.6840899326936847,25.01432765741813,4.498046271226796,0.329608938547486,0.2192255827393565,0.2267385860142554,0.2244268926989019,11.28448930434202,5.783766997277854,21.95252080472054,12666.12206003897,58.80040698382809,13.634532740908773,19.20584088948706,13.088237752238324,12.871795601193938,0.5559622423425159,0.7864674868189807,0.6820572764465225,0.5751911639762107,0.1261802575107296,0.7107806691449814,0.918918918918919,0.8470873786407767,0.6819787985865724,0.1646090534979424,0.5018200728029121,0.7127222982216143,0.6297151655119323,0.5413870246085011,0.1160520607375271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0044918528132382,0.0066172739267228,0.0087073143472562,0.010873324246801,0.0130879387260393,0.0152261485900769,0.0176762519402009,0.0197231197088053,0.0219171631554163,0.0238305202928569,0.0260515074344861,0.0279925956396544,0.0299591138940668,0.0320022276768218,0.033890599491641,0.0360130015320276,0.0379939840265532,0.0399692384436315,0.0419429725481214,0.056040058418527,0.0696631328022081,0.0832678382428453,0.0958604748896827,0.1081903999325719,0.1234702289108241,0.1367058274662821,0.1490484346244268,0.1611077895456098,0.1727267856186036,0.1862517217630854,0.198650796224824,0.2103210386224129,0.2215919027632039,0.2323905701682012,0.2431087968092178,0.2528293042255407,0.2624572380266474,0.2711922146645015,0.2795303550973654,0.2879149113466969,0.2951352742329781,0.3022686122057727,0.308612382847144,0.3148067104303428,0.3210994460824831,0.326419350795839,0.331973898858075,0.3375427860180479,0.3427083608680711,0.3429284750337382,0.3420544506661517,0.3425175733280637,0.3418740319335273,0.3421765266039757,0.3419785276073619,0.3406412107175151,0.3412254434170259,0.3424723177765227,0.3435246972109415,0.3438795221394947,0.3448255399952528,0.3460038577658504,0.3463960027783379,0.3486561407737736,0.3509779855326039,0.3512096429487362,0.3542413381123058,0.3583829191459573,0.362564041463124,0.3650786435130466,0.3678945697046681,0.3707470182046453,0.37062884017295,0.370318087709392,0.3716240122655974,0.3773642464917632,0.3740427247077791,0.3716381418092909,0.375996961640714,0.0,2.0577743887749893,59.45386091712479,193.87049110838987,292.3356752292267,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95729,42431,399.4818706974898,6704,68.94462493079422,5259,54.47669985061998,2123,21.874249182588347,77.30949638025908,79.66877920938853,63.31695901961641,65.05914070454118,77.05083101061275,79.40860078954476,63.222687281584285,64.96648144376985,0.258665369646323,260.17841984376844,0.0942717380321269,92.65926077132748,117.85312,82.47435633285835,123111.19932308914,86153.99339056957,280.34341,175.78589535400533,292381.01306814025,183158.6958123844,299.79526,143.30323220426396,310048.81488368206,147331.53557394232,3009.40612,1349.1299898652926,3118891.704708082,1384549.041555765,1245.18862,540.6085990729538,1286696.0273271422,550680.7958643187,2093.14858,859.4757436476265,2158403.890148231,872390.4404184672,0.37816,100000,0,535696,5595.96360559496,0,0.0,0,0.0,23650,246.57104952522224,0,0.0,27646,285.6605626299241,1868641,0,67084,0,0,4601,0,0,54,0.5640923857974073,0,0.0,0,0.0,0,0.0,0.06704,0.177279458430294,0.3166766109785203,0.02123,0.3221371882086167,0.6778628117913832,25.28288083539057,4.531955669225957,0.3320022818026241,0.2112568929454268,0.2314128161247385,0.2253280091272105,11.29530114992174,5.599315268944091,22.286793397691845,12709.81030448748,59.06470978297324,13.031372796087645,19.638833358427377,13.420232350277246,12.97427127818097,0.5499144324015972,0.783978397839784,0.6907216494845361,0.5571076417419885,0.1156118143459915,0.706495589414595,0.8997134670487106,0.8424821002386634,0.7154471544715447,0.1630901287553648,0.501246261216351,0.7309711286089239,0.6428033157498116,0.5169927909371782,0.1039915966386554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381786694483,0.0043893439299326,0.0065132700267835,0.0086739254083042,0.0108778528948304,0.0133032051869268,0.015726443459206,0.0177202527381669,0.0200829892481909,0.0220241323904166,0.0241084881968859,0.0264184652031952,0.0283907455012853,0.0304621848739495,0.0325890785334914,0.0345807331487374,0.0365544435589869,0.0384858698470313,0.0404909633232521,0.0428528275158067,0.0572639844622886,0.0712947554606633,0.08416713863193,0.0964753632941473,0.108704592186429,0.1246840596876024,0.1380053050397878,0.1501596763891846,0.1619554302074653,0.1730150559773517,0.1863431661962119,0.198830725924322,0.2116677911506736,0.2227949787131584,0.2330408165512381,0.2441027801179444,0.2541219839142091,0.2632373484746068,0.2726725293703274,0.2806369879504259,0.2882203772536214,0.2952760973098211,0.3020997406411729,0.3089371401151631,0.3152591404122909,0.3211999358586918,0.3273673934266189,0.3321192980668823,0.3369686438260238,0.3413814989157455,0.3415595104772442,0.3419199228171732,0.3426461868594178,0.3425686135505432,0.3425836323303905,0.3416023210475415,0.3411336701299526,0.3423236514522821,0.3443699525042437,0.3456336107921929,0.3466694280227435,0.3471559268098647,0.3485627581556099,0.3497244404453942,0.3513454598299707,0.3516140865737344,0.3543612588015519,0.3577413133516709,0.359750070601525,0.3623765530423702,0.3686520089591809,0.3703070761014686,0.3702011548956152,0.3708029197080292,0.3719935355071775,0.3761325703385789,0.374806800618238,0.3746379809681423,0.3732217573221757,0.3760217983651226,0.0,1.7001300146996448,55.42446006241249,198.58076679041977,309.1717831127193,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95747,42811,403.4486720210555,6714,68.98388461257272,5257,54.45601428765392,2153,22.235683624552205,77.40440741590693,79.76110865956193,63.3594678928421,65.09908463217829,77.14298057348154,79.49583714835885,63.26423763543401,65.003748263577,0.2614268424253936,265.2715112030819,0.0952302574080903,95.33636860129492,119.4556,83.6404242204028,124761.71577177352,87355.66045975624,285.20789,179.23141652813047,297428.0447429162,186744.18679241175,307.98187,147.4287216618061,318539.1604958902,151533.5727052049,3022.694,1366.0968855198776,3133309.576279152,1403127.8322243812,1248.62661,543.8771848855398,1292154.7411407146,556100.9482130408,2119.50376,873.941477849986,2190768.4836078417,894319.402485426,0.3814,100000,0,542980,5670.98708053516,0,0.0,0,0.0,24057,250.77548121612165,0,0.0,28458,294.07709902137924,1860904,0,66706,0,0,4818,0,0,57,0.5953189133863201,0,0.0,0,0.0,0,0.0,0.06714,0.1760356581017304,0.3206732201370271,0.02153,0.3268741159830268,0.6731258840169732,24.99524619804561,4.531236856962009,0.3249001331557923,0.2179950542134297,0.2242723987064866,0.2328324139242914,11.256402443634864,5.657409510348002,22.67859384484719,12707.45972350373,59.19835576047432,13.502179916883694,19.246401044980868,13.218791656181478,13.230983142428274,0.5487920867414875,0.7678883071553229,0.7008196721311475,0.5843935538592027,0.0972222222222222,0.7196969696969697,0.9270833333333334,0.8425925925925926,0.724907063197026,0.1489361702127659,0.491490982981966,0.6876640419947506,0.6528213166144201,0.5428571428571428,0.0849342770475227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022072149604625,0.0045300228021281,0.0068577921155679,0.0091301477682425,0.0113062133336044,0.0133448697068403,0.0158878980891719,0.0178565962266461,0.0200261566127186,0.0221335379892555,0.0242182615736233,0.0262334116777683,0.0283229328371251,0.0306419882787957,0.0327493344889494,0.0345875542691751,0.0366999078360102,0.0387954731699221,0.0410279859083209,0.0429199300116647,0.0576389033888042,0.0714808923862542,0.0850106459970002,0.0976430268497298,0.1098474867459974,0.1249061591329632,0.1373333191891118,0.1498009325299665,0.1614732996485531,0.1728855721393034,0.1865321243188524,0.1999004555241774,0.2119465320905343,0.2234735829251224,0.2334723246014544,0.2437071571743391,0.2539358437935843,0.2632141130437715,0.2722406206051808,0.2802019184542478,0.2880866259115019,0.2965700009339684,0.3040475122204643,0.3100325016728802,0.3160955045971581,0.3214961772008752,0.3273201993828625,0.3323217573487397,0.3380458240181952,0.3430700172443298,0.3430248173614095,0.3424495791973859,0.3422040403188393,0.3422840084795869,0.3421040928564016,0.3412885273972603,0.3407634747116799,0.3422661487272787,0.34327034586261,0.3434892676317478,0.3448954351248032,0.3450577307745628,0.344850010488777,0.3455119026311079,0.3470143867584083,0.3481133307220264,0.349864768683274,0.3526249607041811,0.3542917324907846,0.3562638932994601,0.3579517031242894,0.35951773953686,0.3592550648043286,0.3620137299771167,0.3645921336712663,0.3695780640586219,0.3709900230237912,0.3647391831783259,0.3718732629238466,0.3773285770907649,0.0,1.7728419048884547,58.37828685709929,195.51071581285143,301.8787961862731,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95757,42977,406.0590870641311,6639,68.13078939398686,5190,53.708867236859966,2087,21.512787576887327,77.33232137485312,79.69789780012745,63.31916690730778,65.07107512885594,77.08286425638128,79.44619730552597,63.2268341450452,64.97998523897265,0.2494571184718381,251.70049460147936,0.0923327622625862,91.0898898832926,117.94442,82.62388303529723,123170.54627860105,86284.95361727834,280.81478,176.43423495479527,292753.5114926324,183761.0863181461,307.86085,147.84527075596168,318094.80246874905,151879.19517490276,2987.4468,1351.483885294652,3093975.6675752164,1386164.7594513523,1251.46649,548.3763600157347,1294917.4681746503,560963.7825565919,2058.63582,856.2359881904088,2123946.844617104,872091.8248415357,0.38139,100000,0,536111,5598.661194481865,0,0.0,0,0.0,23711,247.0942072120054,0,0.0,28411,293.3780298046096,1866411,0,67012,0,0,4669,0,0,50,0.511711937508485,0,0.0,0,0.0,0,0.0,0.06639,0.174073782742075,0.3143545714716071,0.02087,0.3237266371807676,0.6762733628192324,24.87716008197789,4.467744645978437,0.3246628131021195,0.2198458574181117,0.2221579961464354,0.2333333333333333,11.047474817961564,5.595745548767181,22.252332755528226,12727.212180499262,58.510564449873776,13.516252479730056,18.928615622310037,12.795239764654871,13.270456583178827,0.5491329479768786,0.7624890446976337,0.6967359050445104,0.585429314830876,0.1081750619322873,0.723404255319149,0.9107142857142856,0.8647342995169082,0.7727272727272727,0.1341463414634146,0.4899328859060403,0.684913217623498,0.6420141620771046,0.5298087739032621,0.1015544041450777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0045441174978953,0.0066810169766875,0.0091674119847142,0.0112415561162203,0.0131213007202453,0.015154605531533,0.0176112058316062,0.0196206737896835,0.021529484029484,0.0235376130235991,0.0259842923874544,0.0280619852132155,0.030289922241104,0.0322307739925303,0.0342514598728747,0.0361262399304189,0.0379914928934536,0.0400723297237752,0.0419925638168241,0.0573829531812725,0.0717432018163365,0.0846181276613596,0.0974186425529677,0.1096255838719541,0.1252525252525252,0.1383188676442501,0.1507349419390546,0.1626441691584793,0.1735965175622936,0.1868995821307026,0.1993140161433425,0.2122609698261796,0.2229245726659303,0.2334015536629915,0.2441508974344778,0.2541760117832156,0.263809341630003,0.272607605278985,0.2818466048993895,0.2897562894901289,0.2969090015677282,0.3031952662721893,0.3096827546532114,0.3162830245976313,0.3226295547556826,0.3279509325322318,0.3333206121436476,0.3380257977621218,0.3430833168414803,0.3438299361856808,0.343389993806345,0.3440158900095791,0.343832627761483,0.3434712807706029,0.3426680556406642,0.3419199289385191,0.3430665330200305,0.3437708194536975,0.343391164371311,0.3454377914848804,0.3460165053166164,0.3475069921981789,0.3485589872508529,0.3487321902921999,0.3493909770505515,0.3508556759840274,0.3534088399533079,0.356864123747583,0.362161731298075,0.3652435412584863,0.3673055362767604,0.3691781255940688,0.3711489947251739,0.3708075697957654,0.3695396899953029,0.3671839686605394,0.3685782556750299,0.3740210640021604,0.3633942161339422,0.0,1.850389449593926,58.33458666029763,192.59658515434688,295.9752183741685,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95728,42953,405.576215945178,6680,68.60061841885341,5215,53.92361691459134,2080,21.393949523650345,77.41699606751023,79.77269859439696,63.36600846061516,65.10165266383098,77.17522553577716,79.52996930530652,63.27725032204057,65.01502882603846,0.2417705317330671,242.729289090434,0.0887581385745903,86.6238377925157,119.65162,83.88182258437887,124991.24603041953,87625.16983994115,285.90462,180.0783529103328,298106.1758315227,187557.25901547383,308.32036,147.64424243084528,318366.0266588668,151365.6561468555,2989.0102,1348.2239268204123,3094458.7163630286,1380449.990410759,1276.26714,550.4394798407732,1321732.795002507,563514.029166778,2046.26278,837.128695089847,2107824.189369881,848445.7501877676,0.38285,100000,0,543871,5681.420274109979,0,0.0,0,0.0,24186,252.089252883169,0,0.0,28583,294.9084907237172,1857449,0,66548,0,0,4710,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.0668,0.1744808671803578,0.311377245508982,0.0208,0.3193479801559178,0.6806520198440822,24.959394472511,4.532683100226181,0.335378715244487,0.2164908916586768,0.2216682646212847,0.2264621284755513,11.243704654948338,5.65474974820488,21.741239055259904,12758.959825932972,58.66685715551591,13.407246123766493,19.731110005439565,12.754303610821092,12.774197415488755,0.5516778523489932,0.7776793622674933,0.6958261863922242,0.5527681660899654,0.1210838272650296,0.7270642201834863,0.9333333333333332,0.8502304147465438,0.7,0.1324200913242009,0.4929613514205272,0.6906077348066298,0.6448669201520912,0.5121412803532008,0.1185031185031185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0045183316617532,0.0065116845180136,0.0086922084911503,0.0111131446233935,0.0133044239499989,0.0154421657764912,0.0173810981833027,0.0197539191039712,0.021791173040329,0.0237224220439197,0.0257704978601557,0.0278791492336317,0.0296592278302421,0.0321039872079228,0.0340491051130492,0.0359254159376326,0.0379601107688478,0.0400856379717103,0.0422227083789105,0.0566049556745919,0.070616917088687,0.0842950062945866,0.0971762107587947,0.109516225993229,0.1250647743736714,0.1382068116971966,0.150522069545411,0.1629027433552687,0.1739834434245517,0.1878694561390285,0.2000302928671117,0.2122361585114014,0.2230644879412792,0.2335201054713249,0.2448582207618352,0.2556091797724005,0.265245341545101,0.2735229759299781,0.2823091886943586,0.2902409137149727,0.2978126752664049,0.3047137251193797,0.3103650508677438,0.3167772695839955,0.3228233034571062,0.3285434030164065,0.3337653262181564,0.3382930865091266,0.34417244196158,0.3444520630823216,0.3441132023629619,0.3449522951788579,0.3449426998280272,0.3452117467060798,0.3442239123448666,0.3427212990459342,0.3432789407355275,0.3442310311946601,0.345462625544396,0.3477879573824939,0.3500363965452793,0.350529238606234,0.3501590620898311,0.3500419111483654,0.3510217877385471,0.3518202987448174,0.3575003127736769,0.361561582552775,0.3645302689254827,0.3664615941373382,0.3693365054189796,0.3730362395944169,0.3736489572233216,0.3777321128339249,0.3825944170771757,0.3765347885402456,0.3789599521817095,0.3766163793103448,0.3839252336448598,0.0,2.202163371410262,57.50631956404425,197.9724630626884,292.6446596971197,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95701,42803,403.41271251084106,6766,69.51860482126624,5257,54.41949404917399,2086,21.49402827556661,77.3508434030137,79.74193303576145,63.31502979323547,65.08302180745295,77.08666399915406,79.47647114499776,63.21789849524792,64.98788076520009,0.264179403859643,265.4618907636888,0.0971312979875449,95.14104225286246,119.23802,83.48947514449372,124594.33025778204,87239.91927408671,285.2406,180.1498268151268,297561.8750065308,187750.3023114981,307.88582,147.78230598738458,318387.7597935236,151838.83941090276,3009.68416,1371.4978583404495,3116903.3134450004,1405127.781674643,1248.16777,549.0961534761647,1291581.1538019455,561106.4288525352,2054.27634,859.9014321531363,2117729.616200458,872714.4537033036,0.38108,100000,0,541991,5663.378648081003,0,0.0,0,0.0,24007,250.33176246852176,0,0.0,28547,294.99169287677245,1856610,0,66604,0,0,4677,0,0,56,0.5851558499911182,0,0.0,1,0.0104492116069842,0,0.0,0.06766,0.1775480214128267,0.3083062370676914,0.02086,0.320754716981132,0.6792452830188679,25.04794182596852,4.555969817311287,0.322237017310253,0.217234163971847,0.2301692980787521,0.2303595206391478,11.12201483500852,5.580669905996798,22.17612386319493,12717.555139531874,59.64636690654618,13.649265496695696,19.12124935353611,13.505510795143604,13.37034126117078,0.5503138672246528,0.7793345008756567,0.6847697756788665,0.5785123966942148,0.1180842279108175,0.7138621200889548,0.9240506329113924,0.8666666666666667,0.6942446043165468,0.16015625,0.4938587512794268,0.7028112449799196,0.6248037676609105,0.5439914163090128,0.1068062827225131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0045025402845524,0.0068014090083139,0.0094418245385803,0.0114854829192862,0.0136814653328171,0.0159340603290862,0.0181587924096656,0.0203311481780714,0.0223776653489277,0.024551328068916,0.0267455475442164,0.028738351401946,0.0306514594215889,0.0327977130354913,0.0349725533168618,0.0370270606274087,0.0391198297784005,0.0410867710998772,0.0429248970657215,0.0579903906413202,0.0713156379247159,0.0852629369161331,0.0983525500757448,0.1101206801974766,0.1259032766592253,0.1397864300271739,0.1524535696029988,0.1633636907815974,0.1738869155568909,0.1875478328356921,0.2006409076638266,0.2122399233916601,0.2223717906625517,0.2329255805247569,0.2430580198722498,0.2530315549699636,0.2633825019704988,0.2723245220433711,0.2806516704501158,0.2886027283044213,0.2960585651537335,0.303201261066929,0.3096723868954758,0.3155936078612604,0.3214052307730249,0.3265334217739009,0.3317341342054695,0.3373291217895608,0.3418592367621814,0.3419037346636106,0.3419635602440334,0.3416091306185712,0.3418466163674732,0.3424864929050644,0.3415183013639912,0.3410781551707765,0.3411507910457559,0.3419735155916275,0.3427709445346948,0.3443855078439825,0.3453081204847815,0.3455545562922217,0.3460963139916501,0.3475921700492374,0.3483049523511951,0.3497404181678913,0.352895124166223,0.3558984047019311,0.356754199195647,0.3600379558085942,0.3608863504151462,0.3628956439987464,0.3660429027841168,0.3644171779141104,0.3660842508377214,0.3671646388418296,0.3685691318327974,0.3633396790862115,0.3690937257939581,0.0,2.035750767527407,59.550499610569005,207.21049044502053,285.3016807604764,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95709,43039,405.6044886060872,6799,69.67996740118484,5278,54.425393641141376,2155,22.04599358472035,77.26691653433518,79.62555196401307,63.2951211478972,65.03841231668339,77.00194965425479,79.36421208280424,63.19806554018358,64.9460160365945,0.2649668800803937,261.33988120882634,0.0970556077136208,92.39628008889156,117.84762,82.56096312389155,123131.17888599818,86262.48641600221,280.94321,176.5604645017229,292794.857327942,183732.6260609677,309.81456,148.6794499254015,318799.87253027403,151649.7501602041,3027.34308,1366.7909660771834,3123886.740014001,1389109.87207305,1253.96846,545.5603589769687,1290778.9758538904,550751.2728630588,2115.2336,871.7723769561376,2166278.887043016,873525.2045624279,0.38208,100000,0,535671,5596.871767545372,0,0.0,0,0.0,23674,246.5494363121545,0,0.0,28506,293.0445412657117,1864426,0,66927,0,0,4643,0,0,60,0.6164519533168249,0,0.0,1,0.0104483381918105,0,0.0,0.06799,0.17794702680067,0.3169583762317988,0.02155,0.335484776203171,0.6645152237968289,25.008016072708017,4.445645329716239,0.330428192497158,0.2167487684729064,0.2231906025009473,0.2296324365289882,11.188272679619246,5.736259639345629,22.997495404974263,12811.129112557735,59.7333045743837,13.573524022583442,19.760849682294744,13.149215039386617,13.249715830118896,0.5450928381962865,0.7622377622377622,0.6915137614678899,0.5619694397283531,0.113036303630363,0.7184466019417476,0.9075,0.8729792147806005,0.6911196911196911,0.1700404858299595,0.4861640010154862,0.6841397849462365,0.631578947368421,0.5255712731229597,0.0984455958549222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0045524135903233,0.0067175386613629,0.0091933239199114,0.0114211907328682,0.0136641788765234,0.0159946990162597,0.0180786231255295,0.0200975230773948,0.022181051424828,0.0242124793701885,0.0264876185782924,0.0284950383053113,0.0307659030982201,0.0328075189055906,0.0347418908023402,0.0371555500326198,0.0391758139148839,0.0413608864680567,0.0431262633629941,0.0580993452859544,0.0721411001203747,0.085517892748452,0.0981702248550595,0.1102975311247098,0.1255211971130442,0.1383966961451488,0.1504862124423521,0.1626424859385359,0.1740217916375932,0.1881454968843657,0.2008386789181692,0.2130287058413555,0.2239221140472879,0.2346614950634696,0.2461456494955212,0.2558227947178335,0.2656767535657151,0.2738641526578828,0.282616171110245,0.2908653289823879,0.2982092696629213,0.3047190479010006,0.31165513188039,0.3182702360979405,0.3240025660638062,0.330663256991714,0.3357249359619722,0.3406008695087924,0.3453243125157224,0.3461429247515381,0.3459863701082373,0.3457929375132687,0.3461415723817813,0.3462238534300122,0.3455076923076923,0.3440211421202617,0.3449426141524234,0.345679012345679,0.3458968094279965,0.3465641373591164,0.3473211089455471,0.3489653716216216,0.3502926609635299,0.3519456903867135,0.3534247294883916,0.3548878665899942,0.3585589020205871,0.360747530225757,0.3606504328128792,0.362657174556213,0.3621405836974699,0.3662115605461273,0.368319876970396,0.3733383972654766,0.373136108791602,0.3755384615384615,0.3832310838445807,0.3849360755975542,0.3930387172467736,0.0,2.7230706177778186,58.50906738296511,199.3259990904142,299.01751925877454,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95697,42511,400.8903100410671,6861,70.45152930603885,5322,55.006949016165606,2151,22.132355246245965,77.288290147924,79.65778974228205,63.294707477804174,65.04401049265633,77.02997987251057,79.39849613067501,63.19981172025162,64.95152735060417,0.2583102754134359,259.2936116070348,0.0948957575525568,92.4831420521599,117.87578,82.58520840029459,123176.04522607816,86298.63882911124,281.24037,176.8225526260957,293264.2716072604,184151.8433172492,306.79924,147.56214659134446,316595.72400388727,151277.3702180231,3058.55548,1385.6579259866903,3162715.487423848,1414626.4024562992,1318.27473,574.3799753387881,1363387.6819545024,586066.7655022449,2116.27192,877.5476558570002,2178155.3444726584,887511.0726014544,0.37857,100000,0,535799,5598.911146639915,0,0.0,0,0.0,23726,247.28047901188123,0,0.0,28364,292.33936278044246,1861799,0,66875,0,0,4600,0,0,54,0.5642810119439481,0,0.0,1,0.0104496483693323,0,0.0,0.06861,0.1812346461684761,0.3135111499781373,0.02151,0.3218088784400498,0.6781911215599502,25.08031466806696,4.481875054244894,0.3248778654641112,0.2093198045847425,0.2343104096204434,0.2314919203307027,11.003237046304838,5.5509714108981925,22.875640657951138,12702.61220977957,60.153965780069086,13.235243475204602,19.49291930334732,13.955051511689692,13.470751489827466,0.5578729800826757,0.7845601436265709,0.6899942163100058,0.5966319165998396,0.1282467532467532,0.7293510324483776,0.9207161125319692,0.8634259259259259,0.7634408602150538,0.1692913385826771,0.4992435703479576,0.710926694329184,0.6322282189668466,0.5485537190082644,0.1175869120654396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179685838422,0.004450482051074,0.0065450338921134,0.0087466222393791,0.0109124562688145,0.0131047052714109,0.0153443037458453,0.0174654213239422,0.0199940712876549,0.0220436985109757,0.0242072683296779,0.0264929892632054,0.0286651381334759,0.0307212226696464,0.0325432190452613,0.0344670779979123,0.0364997514910536,0.0385653202706629,0.0406707025317772,0.0425873426165263,0.0574135193850267,0.0715340236841278,0.0850668569869224,0.0975163123552936,0.1095839799009827,0.125324242199659,0.1384322969758749,0.1498412630771525,0.1616986699739126,0.1722712534089201,0.1860881379325217,0.1985115694600918,0.2106266199115719,0.2217417483168208,0.2321196502125597,0.2427496838041138,0.2530745494387549,0.2625455201416057,0.2723187878236338,0.2804906059074831,0.2885695063103192,0.295867148285406,0.3036646729326877,0.3102905481723583,0.3166106401636948,0.3220248909322358,0.3265890509023774,0.3326442326097775,0.3378773505217606,0.3431541313559322,0.3437824848460302,0.3439200198845591,0.3441231396072661,0.3433373000899776,0.3440163604066217,0.3426076797737264,0.341497506274024,0.3421420926977854,0.3432608061999554,0.3441694593286858,0.3448969993415483,0.3457443644798668,0.3468237273874632,0.3467218617140299,0.3482951678400653,0.3491695735929609,0.3495311653888904,0.3521051304676667,0.3533471845617494,0.3564336696040512,0.3588437715072264,0.3610486891385768,0.3623966159479765,0.3634489078967466,0.3651743153565754,0.3596181046676096,0.3599939292760661,0.3662650602409638,0.3596112311015119,0.3680866965620329,0.0,2.3627591912919184,59.8507387437712,199.1612752637537,301.0017702472983,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95834,43153,406.71369242648746,6867,70.2151637206002,5350,55.28309368282656,2139,21.95462988083561,77.36488025655099,79.67954612250743,63.35773544642036,65.07125815381349,77.09198666850851,79.40801298755801,63.25679879639247,64.97350505022322,0.2728935880424785,271.5331349494221,0.1009366500278901,97.75310359026436,118.25924,82.81210550273839,123400.08765156416,86412.0307017743,280.3641,175.95731625260422,291986.2366174844,183043.65051866425,304.59517,146.13193853576007,315298.9961808962,150441.18083461167,3092.4776,1405.8621711986134,3194876.974768871,1435105.360322415,1295.0008,570.2903887110687,1333019.429430056,576887.3268282402,2110.13594,894.230165645803,2166676.210948098,901834.273640286,0.38372,100000,0,537542,5609.094893252916,0,0.0,0,0.0,23608,245.7687250871298,0,0.0,28183,291.46232026212,1870648,0,67115,0,0,4619,0,0,48,0.5008660809316109,0,0.0,0,0.0,0,0.0,0.06867,0.17895861565725,0.3114897335080821,0.02139,0.3189226519337017,0.6810773480662984,24.979315896203527,4.532173500030358,0.3192523364485981,0.2171962616822429,0.2272897196261682,0.2362616822429906,11.060802318384209,5.507029356576242,23.098133944430508,12801.928298529569,60.598228105033854,13.709671926479196,19.25220119250213,13.574708343501582,14.061646642550931,0.5493457943925234,0.774526678141136,0.7066744730679156,0.5641447368421053,0.115506329113924,0.6819505094614265,0.9088541666666666,0.8551068883610451,0.6945454545454546,0.1258503401360544,0.5035211267605634,0.7082262210796915,0.6581196581196581,0.5260361317747078,0.1123711340206185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044912607972748,0.0066969721568309,0.0091415105838378,0.0114092799544442,0.0134810410133181,0.0156781993516687,0.0181820037977009,0.0202302093555773,0.0222324581606018,0.0243614971508219,0.0265591166117627,0.0284381134441258,0.0308560018937639,0.032665051796114,0.034705949148868,0.0367286568337436,0.038801052653391,0.0407118605351413,0.0427599409059697,0.057877444589309,0.0723095576553223,0.0858711252186848,0.0986915338247957,0.1114352514954924,0.1270987771653044,0.1399709718087529,0.1524706582752168,0.1635977639327473,0.1750554311849955,0.1891641832793622,0.2015048811338501,0.2133357960842261,0.2242245522062035,0.2343088876921893,0.2452832275331224,0.2552169795554565,0.265534629336388,0.2752516959037836,0.2831431381068904,0.2912850129945134,0.2986092460034798,0.3052025581312874,0.3123556512894154,0.3172885390856532,0.322615219721329,0.3281162031302781,0.3345583560110888,0.3399994822408616,0.3444183654632242,0.3450438809023852,0.3447924694484201,0.3452122408687068,0.3453719378970062,0.3453083109919571,0.3455544808315293,0.3446292677501866,0.3451760749142706,0.3455126113906011,0.3464154329295648,0.3475955005284614,0.3480529827706404,0.3488269052240695,0.3492456653906777,0.3501568911416847,0.3511560315257521,0.3512448606669712,0.3519997474667761,0.3541343304642302,0.3556907315511445,0.3575707308082204,0.3589950505702604,0.3605612146838362,0.3616164744135635,0.3637234246312967,0.366754617414248,0.3709152857364101,0.3712636569779426,0.3746525847693163,0.3767441860465116,0.0,2.0594267006380345,60.82662969726639,199.40902369731,304.1018820430378,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95645,42827,404.4539704114172,6694,68.7960687960688,5245,54.325892623764965,2105,21.72617491766428,77.2563444549925,79.66603415828392,63.27473565930678,65.0555819130529,77.00131965308937,79.4095902483089,63.18151038861042,64.96378498851739,0.2550248019031329,256.44390997501887,0.0932252706963581,91.79692453551525,118.09116,82.75583269601843,123468.20011500864,86523.95075123469,280.78945,176.2037412669139,293086.1100946208,183749.69838317152,305.53919,146.37588566601184,316545.0781535888,150818.52932131133,3026.567,1362.9323198246702,3136588.467771447,1397795.8540873553,1264.87399,551.8523665924979,1308214.3342568874,562726.7254874776,2080.8811,857.0540510678829,2148527.638663809,872537.467638064,0.38061,100000,0,536778,5612.190914318574,0,0.0,0,0.0,23650,246.7457786606723,0,0.0,28200,291.8605259030791,1861475,0,66877,0,0,4677,0,0,51,0.5332218098175545,0,0.0,0,0.0,0,0.0,0.06694,0.1758755681668899,0.3144607110845533,0.02105,0.3261979018996314,0.6738020981003686,24.922438401444342,4.542641501061703,0.3302192564346997,0.2114394661582459,0.2238322211630123,0.2345090562440419,11.128586763535226,5.494996265257342,22.20551338021664,12726.443485451582,58.98445680120963,13.184106829075407,19.33779564810195,13.074091409025884,13.388462915006382,0.5506196377502384,0.7772768259693418,0.6899538106235565,0.5826235093696763,0.1195121951219512,0.7135258358662614,0.8956043956043956,0.8518518518518519,0.7605633802816901,0.1228813559322034,0.4960549758208195,0.7194630872483222,0.6361538461538462,0.5258426966292135,0.1187122736418511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0042062373939572,0.0064745938156465,0.0087165889488281,0.0108149353952589,0.0131719690718498,0.0152297209074587,0.0170521884833871,0.0192705030378659,0.0216259962710266,0.0240313577409292,0.026195174086406,0.0284546568248967,0.0306516965141814,0.032735574241266,0.0346543874172185,0.0363447882651739,0.0382274115471713,0.0403321470937129,0.0422751168224299,0.056695266859657,0.0706586073602279,0.0835660444705734,0.0965758976032335,0.1090241431706905,0.1249497365135129,0.1383434866591666,0.1509094394275004,0.162671141369986,0.1737576856630862,0.1871590884591337,0.2001083247576233,0.2118624685522604,0.223288736947065,0.2333811204234671,0.244094925187586,0.2534951347723968,0.2632261118499651,0.2718757814808921,0.2801973382285452,0.2884131420552727,0.2964126980404113,0.3032550522730778,0.3099505116994186,0.3160459534861055,0.3214758049564303,0.3273530223571625,0.3329507046744467,0.3381012953973157,0.343103812999101,0.3430796852009341,0.3435588750983667,0.3434839184181494,0.343462928294658,0.3441624365482233,0.3435613062230437,0.3423639834552975,0.3436536082474227,0.3445937806535992,0.3450154642882831,0.3469684385382059,0.3479152562621958,0.349537085855284,0.3512810158388298,0.3526145526531795,0.3538336777670233,0.3545603119534363,0.3566325240263024,0.3601152818782511,0.3631773545899097,0.3648654821175718,0.3654051172707889,0.3665969714249509,0.368316680649836,0.3718377976190476,0.3727133246783902,0.377589596249811,0.3778801843317972,0.3794885745375408,0.3945525291828793,0.0,1.9812326944141383,58.24879713521871,189.7550715249793,306.51408579041447,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95676,42959,404.5633178644592,6783,69.47405828002843,5303,54.67410844934989,2120,21.698231531418536,77.32722884548278,79.7045569603273,63.32110870231941,65.07607540626437,77.06523412597625,79.44517292013393,63.2237238269846,64.98286140206604,0.2619947195065322,259.3840401933676,0.0973848753348178,93.21400419833026,116.70054,81.79601884516023,121974.72720431456,85492.72424135648,281.5139,177.34636325267388,293406.3715038254,184531.0665712132,310.01615,149.38760808815712,318915.6423763535,152161.47131883368,3056.61104,1386.6967167721157,3154871.566537062,1409486.8062754676,1306.75502,569.0712518242531,1349306.1582842092,578283.3645054692,2092.78686,873.3684436041841,2145613.508089803,877507.8815559711,0.38146,100000,0,530457,5544.3057820142985,0,0.0,0,0.0,23750,247.4601781010912,0,0.0,28652,294.3998494920356,1869763,0,67126,0,0,4590,0,0,59,0.6062126343074543,0,0.0,0,0.0,0,0.0,0.06783,0.1778168091018717,0.3125460710600029,0.0212,0.3154202329170759,0.6845797670829241,24.988067667995686,4.473846519105125,0.3262304356024891,0.2145955119743541,0.2236469922685272,0.2355270601546294,11.008223472681795,5.588471138758044,22.58668470255242,12810.216312184495,59.7341096253929,13.40694544743758,19.51282664867314,13.274328503851992,13.540009025430196,0.5545917405242315,0.7899824253075571,0.7017341040462428,0.581787521079258,0.11048839071257,0.7239309827456865,0.9388888888888888,0.8733031674208145,0.7298245614035088,0.1341463414634146,0.4977329974811083,0.7210796915167095,0.6428571428571429,0.5349611542730299,0.1046859421734795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766861724745,0.0044592636134223,0.0067363295120219,0.0090191657271702,0.0112567494737698,0.0137252705853603,0.0159484428854037,0.018026206938813,0.0203710142556194,0.0226213761251804,0.024674645417346,0.0267860810977363,0.0288312195924748,0.0309531169500257,0.0331179821664465,0.035347528878869,0.0375968671004102,0.0396187628480657,0.0415557127402846,0.0435408045198211,0.057920905843274,0.0716618173445251,0.0856480510216926,0.0979389578007133,0.1109177398770158,0.1267230162172455,0.1401069745723139,0.1534496895865058,0.1653328774587843,0.1763166081984272,0.1894317263668193,0.2016000692858148,0.2137495920809311,0.225055238345256,0.2360134279896538,0.2468280791179566,0.2572257884454368,0.2673238358877411,0.2758585457228813,0.2837171994958176,0.2918442509033633,0.3000749309230553,0.3070499609125151,0.3124632745326122,0.318412860547692,0.3240284822232917,0.3291266151166142,0.334441853649835,0.3402147414284973,0.3447751724867165,0.3445147878673344,0.3443314314065988,0.3443092643820922,0.3438806661168743,0.343594096710301,0.3430977776411643,0.3417916369118464,0.3420015760441292,0.3424442242645802,0.3431414508880804,0.343403148220937,0.3446531934649045,0.3453802639849151,0.3465151650711282,0.3471448887603345,0.3481661696227698,0.3476194566119843,0.3495501183898974,0.3524074139204445,0.354470766531068,0.356346109708515,0.3604389721627409,0.3627594085168497,0.3603020496224379,0.3613204846865757,0.3621517771373679,0.3659937888198757,0.3645128205128205,0.3639664804469273,0.36282151208106,0.0,2.94198748437734,57.75587766089781,200.3869334753273,299.847161986711,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95775,42844,403.3724876011485,6711,68.67136517880448,5276,54.46097624641086,2066,21.23727486296006,77.38146625236273,79.7033374289426,63.35451413110488,65.06737823630378,77.12602768620123,79.44864475653314,63.26071486851087,64.97648126681969,0.2554385661615015,254.6926724094618,0.0937992625940111,90.89696948409198,119.44548,83.64989160418222,124714.67501957712,87340.00689551784,283.07956,178.311850010137,294965.6590968415,185576.24642144292,309.61865,148.88276793140386,318929.5745236231,152229.6016873875,3043.49724,1379.342283074409,3143282.109109893,1405714.9392580611,1284.42795,561.1037576920531,1324991.2503262856,569758.4731840802,2035.31214,844.8161855465111,2093497.635082224,854566.9784986613,0.38081,100000,0,542934,5668.848864526233,0,0.0,0,0.0,23900,248.90629078569563,0,0.0,28711,295.3902375358914,1857245,0,66679,0,0,4828,0,0,48,0.5011746280344557,0,0.0,1,0.0104411380840511,0,0.0,0.06711,0.1762296158189123,0.3078527790195202,0.02066,0.3307812278463065,0.6692187721536934,24.89353970306676,4.481563583740466,0.3296057619408643,0.2168309325246399,0.2221379833206975,0.2314253222137983,11.316589363338204,5.765104591446897,21.79854574937641,12728.274823665231,59.409498829285866,13.481678861907456,19.623099358469396,13.028054509018258,13.27666609989078,0.559325246398787,0.7823426573426573,0.7038527889591719,0.5844709897610921,0.1203931203931203,0.74090571640683,0.9348958333333334,0.8820960698689956,0.7443609022556391,0.1548117154811715,0.497073046576737,0.7052631578947368,0.6401249024199844,0.5375275938189845,0.1120162932790224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023591114351092,0.0047934654829948,0.0067862975624106,0.0089568608335364,0.0111340457766886,0.0131013701976912,0.0155332681017612,0.0175920162450637,0.019840621168778,0.0220064658700278,0.0243207802319386,0.0265830836787458,0.0285999095655033,0.0306046818060159,0.032681423136798,0.0348545403847941,0.0369427542530733,0.0391051027390159,0.0411688932288961,0.0430844196409978,0.0579407651687503,0.0720863068455308,0.0849642355211545,0.0975232849063347,0.1096644281150833,0.1251784864350309,0.1383505701405462,0.1511299886096296,0.1628284554582354,0.1744794458859606,0.1885167361088681,0.2008587218671252,0.2127819221818656,0.2243565201220779,0.2341167667965053,0.2447512159452243,0.2555278990077128,0.2654461985079833,0.2741475821193782,0.2820277659952538,0.2890384303551159,0.2965847602539176,0.3031943243595362,0.3100344029823909,0.3166373079025694,0.3222809546692295,0.3281128818393335,0.3332061651152144,0.3381044286991101,0.3432887012730031,0.3429413823743235,0.3427659545198168,0.342108229988726,0.3423638547591137,0.3426351743537081,0.3426810383158798,0.340999382706279,0.341355776487187,0.3413022318607947,0.3411930349854747,0.3424903626632733,0.3436236315218463,0.3442238418363073,0.3456417142217746,0.3468224770973094,0.3470744680851064,0.346917271821159,0.3489620952799673,0.3506917620619425,0.3519933158271663,0.3540335827705785,0.3568735729835926,0.3607174212968769,0.3598056335889454,0.3606696935300794,0.361755262219051,0.3686860979703952,0.3660606060606061,0.3637359627499315,0.3564053537284894,0.0,2.496956101935379,59.0419076503112,193.74116533954933,300.9642290869878,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95753,42807,403.1727465458001,6726,69.03177968314309,5210,53.79465917516945,2127,21.82699236577444,77.31912755708531,79.66908219568627,63.32066847763053,65.05820038217429,77.05541686758723,79.40620316766818,63.22260424341346,64.96363885168698,0.2637106894980832,262.8790280180908,0.0980642342170696,94.56153048731152,119.40918,83.6629692466572,124705.1893935438,87373.52822599708,284.71182,179.78105120822684,296729.41839942354,187145.67411757295,305.80152,146.82998412789837,315152.8724948566,150186.62057785213,2991.29488,1358.9413760333923,3090785.333096613,1386094.107713126,1244.28396,545.7974160238596,1284955.2912180298,555521.5999715559,2087.31414,869.3203338591496,2143924.326130774,876390.3781398014,0.3801,100000,0,542769,5668.417699706537,0,0.0,0,0.0,24042,250.42557413344755,0,0.0,28340,291.82375486929914,1855065,0,66636,0,0,4638,0,0,50,0.5221768508558479,0,0.0,0,0.0,0,0.0,0.06726,0.1769534333070244,0.316235504014273,0.02127,0.3227363042861197,0.6772636957138802,25.14400050312313,4.491314550811602,0.327063339731286,0.2170825335892514,0.2259117082533589,0.2299424184261036,11.222405859516796,5.666293338693801,22.600649208217085,12718.240106103682,59.065071448541936,13.508093220742715,19.32312313960531,13.156267600266018,13.077587487927891,0.5460652591170825,0.7727674624226348,0.6842723004694836,0.5743415463041631,0.1076794657762938,0.7084898572501879,0.9042821158690176,0.8495370370370371,0.7068273092369478,0.1620553359683794,0.4903325599381284,0.7016348773841962,0.6281446540880503,0.5387931034482759,0.0931216931216931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0046007762543195,0.0068787792703218,0.0091714233480265,0.011440949446258,0.0137382501807664,0.0160591384144787,0.0182677776416288,0.0206335248767918,0.0229417907086259,0.0251507197637698,0.0272110240586525,0.0290953595524107,0.0312152305600197,0.033555177217149,0.0353466451692918,0.0372391088288885,0.0391693118400033,0.0411393062742897,0.0431100926986772,0.057444387611303,0.0716893496385718,0.0848140300824435,0.0975517415446744,0.1094265622199496,0.1253621809106867,0.1378370351513608,0.149630764647045,0.1621105012493859,0.1735974871085667,0.1867717688613211,0.1997467450241891,0.2122678965746048,0.2239378861610804,0.2339238556338028,0.2451904440186512,0.2545856452279146,0.2646148652450346,0.2732050627163857,0.2815496168340989,0.2895650965680144,0.2967853714499777,0.3035591573659392,0.3091430766645057,0.3151888261631302,0.3203437546303156,0.3261087572392007,0.3304734708447005,0.3357646234312338,0.3408733358892664,0.3417171539987316,0.3421506058141618,0.3420205102127299,0.3424173020612878,0.342637968272883,0.3413495500476058,0.3413100436681223,0.342047643349851,0.3428072458309077,0.3439717582968963,0.3442832684239243,0.34546463685379,0.3458372802862856,0.3464209461737274,0.3471403729108299,0.3470290936706209,0.3481859053291715,0.3511842810735799,0.3533601297510754,0.3557119007870259,0.3567158048468805,0.3590455346180537,0.3598629093678598,0.3637202861758596,0.3650703154694033,0.3657462508926446,0.3661084652020279,0.3622095393395841,0.3700221238938053,0.3720751822017645,0.0,2.3396099704971465,58.45061037926043,202.3586576621585,287.2832723410302,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95684,42539,401.394172484428,6816,70.07441160486601,5357,55.44291626604239,2137,21.93679194013628,77.34181859432726,79.7247841819157,63.3271521787835,65.08549702029663,77.08619906175485,79.46858588717996,63.23283955350973,64.99313287020958,0.2556195325724104,256.1982947357393,0.0943126252737656,92.36415008705023,118.4469,82.97536610857084,123789.66180343632,86718.12017533845,279.63133,175.42891851375893,291709.9933113164,182807.34345737944,306.90152,147.16040787421895,317022.7728773881,150865.71534590007,3054.96892,1380.126811898526,3164547.134317127,1414158.241606254,1248.03971,540.7464250272523,1290779.3675013585,551582.3387685004,2095.4735,866.7263999831255,2154471.301367,877358.4042247668,0.37818,100000,0,538395,5626.802809247105,0,0.0,0,0.0,23549,245.5373939216588,0,0.0,28327,292.3581790058944,1866627,0,66955,0,0,4647,0,0,70,0.7315747669411814,0,0.0,0,0.0,0,0.0,0.06816,0.1802316357290179,0.3135269953051643,0.02137,0.3289675351818308,0.6710324648181691,24.975630179952603,4.4184749412047575,0.3292887810341609,0.2170991226432705,0.2331528840769087,0.2204592122456599,11.265783515143823,5.837988387657793,22.58431691689439,12679.55024132959,60.25786715076356,13.674464095803854,19.80576140474928,13.964672340641195,12.812969309569237,0.5508680231472839,0.7592433361994841,0.7040816326530612,0.5652522017614091,0.1016088060965283,0.7077039274924471,0.9104859335038364,0.8478802992518704,0.7093425605536332,0.1481481481481481,0.4993801140590131,0.6826424870466321,0.6617754952311079,0.521875,0.0895522388059701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784579396664,0.0045511215625855,0.0066860789545772,0.0090390201295931,0.0110627567413673,0.0130935896391626,0.0153808519096107,0.0175066096383328,0.0196956224000654,0.0219574363541442,0.0243109671068821,0.0261993036798159,0.0282295813915208,0.03016095459885,0.0322647234894618,0.0341845864233923,0.0360821537377463,0.0382690670487344,0.0403732523302263,0.0422830336200156,0.056722623238517,0.0708639157339252,0.0847510994028064,0.0973074211639432,0.1093448381346188,0.1246707916864984,0.1374323607427055,0.149310766938102,0.1609188034188034,0.1713816918325326,0.1859573551583028,0.1990568486631478,0.2110929853181076,0.2226024401976647,0.232195111218675,0.2433132870385752,0.2535689172145145,0.2626742106388005,0.2713570690848835,0.279371005795176,0.2874329076439015,0.2953506052985554,0.3021604865235808,0.3090264044203133,0.3152344272054624,0.3210133760710102,0.3258711139490916,0.3309349769503094,0.3364446000077781,0.3410024433731757,0.3409568733153639,0.3407466571188565,0.3413684641099059,0.3417710533167472,0.3426395561571299,0.3419324145974647,0.3412176613171527,0.3424797081923039,0.3438109578727627,0.3460184738525307,0.3472261229380816,0.3478604605198142,0.3490473096191334,0.3499563338334415,0.3505455070927964,0.3504879516496167,0.3517878068997056,0.3548183652875883,0.3575588577882884,0.3598168060533652,0.3621154637290305,0.3651359548768158,0.365559671040241,0.3649039926851569,0.3688601424821897,0.3669768551658315,0.3674318286858727,0.3741386299148763,0.3733296213808463,0.3744186046511628,0.0,2.159916359959526,58.26296627042066,201.56615067777977,307.155209277859,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95685,42791,403.8250509484245,6929,71.40095103725767,5464,56.591942310707005,2197,22.594973088780897,77.38307130315455,79.75837696246211,63.34642469116329,65.09715634838265,77.1078737050955,79.48290653958605,63.24655864946716,64.99934050155187,0.2751975980590515,275.4704228760545,0.0998660416961314,97.81584683078393,118.1191,82.75767692667368,123445.78565083344,86489.7078190664,285.27324,178.46446577885644,297645.743846998,186020.3331544719,308.06525,147.42908561085372,318884.38104196056,151686.56929007376,3133.80048,1412.2103585134291,3246487.2028008574,1447260.446792525,1271.7959,552.33984516056,1317806.542300256,565905.9781162774,2160.82672,892.6517165893954,2224742.7705491977,906087.2788648792,0.38181,100000,0,536905,5611.1720750378845,0,0.0,0,0.0,24039,250.70805246381357,0,0.0,28564,295.364999738726,1864968,0,67080,0,0,4743,0,0,51,0.532998902649318,0,0.0,0,0.0,0,0.0,0.06929,0.1814776983316309,0.3170731707317073,0.02197,0.3288821585903084,0.6711178414096917,24.815562736986703,4.533542915624048,0.3217423133235724,0.2185212298682284,0.2256588579795022,0.2340775988286969,11.261116140357265,5.666881035533267,23.329596797530044,12735.775764678989,61.5393570765535,14.04910932661313,19.980242552043418,13.654367369934452,13.855637827962497,0.5453879941434846,0.7738693467336684,0.6996587030716723,0.5709651257096513,0.0953870211102423,0.7240865026099925,0.942643391521197,0.863849765258216,0.6931407942238267,0.1392405063291139,0.4872665534804754,0.6885245901639344,0.6471471471471472,0.5355648535564853,0.0854126679462572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002591539029995,0.0047210909164589,0.0069167655500451,0.0092712945286161,0.0115194957043363,0.0138033531154249,0.0158311076678423,0.0176280251916422,0.0196866088129772,0.0217126477964887,0.0241549360755405,0.0262466113529943,0.0281900177923133,0.030385744450739,0.0326507453448186,0.0348288014551618,0.037023224977728,0.0386611312921639,0.0405569825604975,0.0424995310252829,0.0566721684808724,0.0711047832413814,0.0847137566748145,0.0971462819650067,0.1095764757978639,0.1244198708122337,0.1379189722063219,0.1509060745278203,0.1630691093778342,0.1739395952301874,0.1887815478623835,0.2013946699821611,0.2129613528670173,0.2234511098239363,0.2337193827608583,0.2445714792165204,0.2545811883731058,0.2642199975225504,0.2739732249310184,0.2823830040793876,0.2901590388221404,0.2974428624953166,0.3045734597156398,0.3106171535562543,0.3172508574347498,0.3228242494539801,0.3281336139928832,0.3330530392793894,0.3389021479713603,0.3435657438988921,0.3429480267414276,0.3434198746642793,0.3440628260440459,0.3436224711296344,0.3432962389907165,0.3417120921305182,0.3406345729568433,0.3412691883709834,0.3412180113470801,0.3416638321488032,0.3433028691287736,0.3447465592480698,0.3437807714064235,0.3452168082253017,0.3460485884386403,0.3473133395813808,0.3495835583728929,0.3521507064364207,0.3551595669900182,0.3563815033482585,0.3602005926601322,0.3609050445103857,0.3637106918238993,0.3642575159429092,0.3674878686076894,0.3689286134305539,0.3694209891435464,0.3651951123374063,0.3725331170586645,0.3713111692192753,0.0,1.992363370032884,59.26870460799148,210.5960572150444,309.06429556216506,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95696,42571,401.42743688346434,6632,68.13241932787159,5162,53.387811402775455,2138,22.00718943320515,77.3960056150407,79.77977257203706,63.35197710932333,65.11286871493789,77.1305643697311,79.5143302201682,63.25471978837511,65.01826721886223,0.2654412453096029,265.442351868856,0.0972573209482163,94.60149607565428,117.8386,82.53074874928876,123138.48018725966,86242.63161395332,279.35092,175.7531423653612,291379.5351947835,183122.36913283856,301.21422,144.6757945442755,311065.03929108847,148434.95165731886,2975.39144,1357.4975437889311,3079041.757231232,1388381.859000304,1283.20906,560.4568322789416,1328222.1722956027,572983.8911150149,2108.03656,877.9842093242273,2171310.169704063,890086.91343716,0.3798,100000,0,535630,5597.203644875439,0,0.0,0,0.0,23574,245.77829794348773,0,0.0,27854,287.3892325698044,1872714,0,67070,0,0,4626,0,0,62,0.6478849690687176,0,0.0,0,0.0,0,0.0,0.06632,0.1746182201158504,0.3223763570566948,0.02138,0.3217913864644441,0.6782086135355558,25.27830381940373,4.45223011834695,0.3159628051142968,0.2074777218132506,0.2390546299883766,0.2375048430840759,11.000067345727285,5.575208346859379,22.82053414534799,12650.24157958499,58.39213658574248,12.779834180990765,18.28907806520577,13.859059344363168,13.464164995182776,0.5523053080201472,0.7964519140989729,0.683629675045984,0.5940032414910859,0.1223491027732463,0.7207743857036486,0.936842105263158,0.8722358722358723,0.7152317880794702,0.1614173228346456,0.4930610107357947,0.7192474674384949,0.6209150326797386,0.5547210300429185,0.1121399176954732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044716189085599,0.0065467611294939,0.009001778003556,0.0109148983785323,0.0130737588074777,0.0154674388490675,0.0176928809890861,0.0200269888977488,0.0222113042232184,0.0242464629895427,0.0262841771307124,0.0283957092756574,0.0306235965472487,0.0327593144791011,0.0348149679553442,0.0369886993360471,0.0390492007473531,0.040957264246118,0.0425248061369132,0.0571154006852176,0.0708193358659592,0.0834058799467175,0.0956231009430887,0.1086644882470749,0.1239055031513049,0.1363525455374855,0.1484213663749973,0.1603093389162456,0.1713801572235985,0.1848042647138011,0.1973456496344048,0.2095042489839386,0.2204297549566092,0.2307049562425788,0.2417980164703798,0.2520993409240445,0.2616319561456718,0.2705810383696034,0.2790772115142785,0.2872715095668641,0.294178090189393,0.3013988327307956,0.3078064601060328,0.3142139798901112,0.3201126524990161,0.3264307557885539,0.3313117728408846,0.3367244183944847,0.3414521816937733,0.3416497697090142,0.3412914025410938,0.3420897201518774,0.3421937457609997,0.3425035612535612,0.3410724664280689,0.3405305367057372,0.3415750615258408,0.342941548129301,0.3440946568155049,0.3448256478480016,0.3452688957794323,0.3466245476036066,0.3482286275209709,0.3494688266115464,0.350028665242091,0.3507519972706337,0.352744900528834,0.3553852643419573,0.356801148142242,0.3600734281780633,0.3607591553060679,0.3642707606420097,0.3688926328687394,0.3738237810094098,0.3754816955684008,0.375096435735226,0.3741816693944353,0.3758351893095768,0.3736434108527132,0.0,2.1454826042948296,59.2308589627612,194.37182232559564,286.3661294149643,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95811,42797,403.2939850330338,6729,68.88561856154303,5232,53.87690348707351,2126,21.69896984688605,77.38566316619061,79.7067423734104,63.36611244363343,65.08442550812794,77.11987463502484,79.44392637517373,63.26736162995393,64.99025407870946,0.2657885311657679,262.81599823667534,0.0987508136794943,94.17142941848056,117.8067,82.5494633319229,122957.38485142624,86158.64914458976,283.26261,178.73329759231277,294905.7206375051,185809.17328946423,309.64443,149.05413614184263,318960.4847042615,152337.7773921259,2991.5692,1366.5796529156264,3082214.610013464,1386436.224615273,1219.67584,538.6657190606359,1256754.6628257716,545969.7624079032,2083.54922,877.6488946683636,2128701.8609554223,876270.1327249953,0.37961,100000,0,535485,5588.972038701193,0,0.0,0,0.0,23888,248.56227364290112,0,0.0,28613,294.36077277139367,1869255,0,67056,0,0,4697,0,0,59,0.6157956810804605,0,0.0,0,0.0,0,0.0,0.06729,0.1772608730012381,0.3159459057809481,0.02126,0.3283307376468922,0.6716692623531078,24.840093262878565,4.397429907663364,0.3302752293577982,0.22782874617737,0.2173165137614678,0.2245795107033639,10.890545268161704,5.452837380879199,22.74542755088565,12671.078710091,59.33094675923423,14.221194028878791,19.54888112656124,12.63646278685929,12.924408816934903,0.5525611620795107,0.7810402684563759,0.6747685185185185,0.5760773966578716,0.1182978723404255,0.7216946676406136,0.9396984924623116,0.8243243243243243,0.752851711026616,0.1893939393939394,0.4926223142635257,0.7015113350125944,0.6230529595015576,0.522883295194508,0.097694840834248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370767625819,0.0043895664162687,0.0069419776517035,0.0089813667120476,0.0109849871841816,0.0133794929233275,0.0156866342537381,0.0177160934789264,0.0197250753743165,0.0218690517611903,0.0240932987630535,0.0262244939853019,0.028314782269088,0.0303663520232225,0.0325960299046145,0.0345101846878486,0.036349526618035,0.0383311738792433,0.0404456812942618,0.0424675067900142,0.0574981223399816,0.0711903741414817,0.0843378545523154,0.0968352036313201,0.1082809257445037,0.1241497317165913,0.1371163401739646,0.1486579856497475,0.1607996245093019,0.172359865891149,0.1855305327912929,0.1977313239345325,0.2097017599096702,0.2208964674031701,0.2314950078534318,0.2426162437109526,0.2520696609432974,0.261869452870464,0.2709431054605613,0.279108590507335,0.287371327564495,0.2954874404706322,0.3030811200207848,0.3096052222567609,0.3158647090177836,0.3218541907265891,0.3271222824052118,0.3321914766744059,0.3377847806994886,0.3417203196797935,0.3416100612011568,0.341811132954811,0.3425820347143038,0.342140255535642,0.3420352337768527,0.3409557674033657,0.3397656460589531,0.3408877851421805,0.3413593364409103,0.3425332234838987,0.3442422876884658,0.3463544248577264,0.3480296033904738,0.3481684816848168,0.3483908491663435,0.3497621112951134,0.3520241171403962,0.3542741399499952,0.3563307951124491,0.3572773526701654,0.3598143723580224,0.3626121315677061,0.3651557356292732,0.3678169714591782,0.3703034338438124,0.374414976599064,0.3782110801609409,0.3817698753321071,0.3820754716981132,0.3850287907869482,0.0,2.799372888626113,59.60276741581145,196.827053166484,291.5397401735134,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95773,42858,404.13268875361535,6833,70.3016507784031,5294,54.76491286688315,2120,21.81199294164326,77.37657405990127,79.72128739946298,63.3458979718325,65.07899297448462,77.11429238889569,79.45840651341939,63.24988292363874,64.98542562469238,0.2622816710055815,262.8808860435896,0.0960150481937631,93.56734979223802,118.5316,83.06994385270009,123763.06474684933,86736.28669113436,280.0636,176.03437116012938,291913.639543504,183300.42647692983,309.23562,148.19810692446336,319498.2093074249,152173.8571417332,3068.21336,1392.090277576702,3173055.2034498244,1423577.4110744384,1284.46737,562.4749809291714,1329936.5269961264,576078.5617336531,2088.86838,867.2261156366924,2149802.449542146,877470.0547098349,0.38105,100000,0,538780,5625.593852129515,0,0.0,0,0.0,23616,246.04011569022583,0,0.0,28537,294.67595251271234,1866120,0,66948,0,0,4771,0,0,50,0.5116264500433316,0,0.0,2,0.0208827122466665,0,0.0,0.06833,0.1793202991733368,0.3102590370261964,0.0212,0.3318466898954704,0.6681533101045296,25.056266242750382,4.530976996592112,0.3326407253494522,0.2145825462788061,0.2164714771439365,0.236305251227805,11.157604839367854,5.5033574827679965,22.50348496956357,12739.441798520797,60.06041396488405,13.735628724481224,19.850320727380957,12.709855302056097,13.764609210965776,0.5553456743483188,0.7922535211267606,0.6950596252129472,0.5785340314136126,0.1223021582733813,0.7331378299120235,0.938118811881188,0.8763796909492274,0.700374531835206,0.1541666666666666,0.4936386768447837,0.7117486338797814,0.632262996941896,0.5415244596131968,0.1147378832838773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0048150513436527,0.0070009537531199,0.0091633142346296,0.0111972174762021,0.0131770552234702,0.0152440578764364,0.0173153101645771,0.0193827375049836,0.0215168234535422,0.0237270416530009,0.0260724073864977,0.0281375935521013,0.0301438708149246,0.0322284464527044,0.0341609128870881,0.0362926607024519,0.0382684288055768,0.0401917059123184,0.042429102573449,0.0573426573426573,0.0717826441613854,0.0849442301241194,0.0976291563327588,0.1094869741168535,0.1251479790292575,0.1387225019878081,0.1509219163944717,0.1627154481963221,0.1737204988258505,0.1879637706913077,0.2000021638230425,0.2117223449041086,0.2240760596048226,0.2343791281373844,0.2456303685231366,0.2550247889588637,0.2644384424938105,0.2730811129771685,0.2818672070896163,0.2894188951605441,0.2964010944040409,0.3037498669630926,0.309619622496886,0.3157300231984745,0.3212124946090814,0.3270747653036989,0.3322788428555094,0.3372429846114056,0.3430688695789765,0.3436067072760767,0.3437852253044841,0.3442535286584765,0.3440659848616167,0.3444574753937738,0.3434031020808133,0.3429765806850031,0.3443893468194804,0.3458322646832521,0.346320037138878,0.3476539039039039,0.3470732576087387,0.3484028040129286,0.3491371602288984,0.3500264843260943,0.3501188392927103,0.3515040812831783,0.3542465581190671,0.3580342391113298,0.3610315186246418,0.3641597368180572,0.3650852878464818,0.3661998485995458,0.3637056805184903,0.3649017210570864,0.3632463353593135,0.3636224333435489,0.3680499597099114,0.3675824175824176,0.3648183556405354,0.0,1.9127917782654715,60.488727995966016,205.74882401049692,289.6840813416045,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95758,42655,401.2301844232336,6744,69.25792100921072,5271,54.5228597088494,2103,21.66920779464901,77.3313489084019,79.69642939165442,63.31030609897547,65.06274007544337,77.0743487023268,79.43863056942244,63.21728846120429,64.9716150022915,0.2570002060751051,257.79882223197603,0.093017637771176,91.12507315187202,118.35164,82.88711374263315,123594.5195179515,86558.94415363013,283.36652,177.77288218285292,295397.3662774912,185126.01786049517,303.87977,145.52175624464306,313610.25710645586,149146.1364698494,3001.36704,1345.6483949913932,3107633.659850874,1378568.051746479,1242.98655,536.298208421907,1286431.306000543,548437.2568578158,2057.15904,843.1928384265937,2121792.2888949225,857224.9594792314,0.38083,100000,0,537962,5617.932705361432,0,0.0,0,0.0,23917,249.23244010944256,0,0.0,28097,289.7408049458009,1863395,0,66866,0,0,4584,0,0,49,0.5117065937049646,0,0.0,0,0.0,0,0.0,0.06744,0.1770868891631436,0.3118327402135231,0.02103,0.3284106891701828,0.6715893108298172,25.1580335055706,4.378657702840051,0.3297287042306963,0.2225384177575412,0.2251944602542212,0.2225384177575412,11.08577329755894,5.719276573553544,22.14120259969049,12775.497786266174,59.27573046338494,13.949971558763776,19.33056973419411,13.266560887355883,12.72862828307115,0.5509391007398976,0.7706734867860188,0.6766398158803222,0.586352148272957,0.1091219096334185,0.7264367816091954,0.8995215311004785,0.8366834170854272,0.7703703703703704,0.1415525114155251,0.4931921331316187,0.6993377483443709,0.6291044776119403,0.5321701199563795,0.1016771488469601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.004613808978168,0.0070134483633595,0.0092054460475513,0.0114346171844798,0.0137792669389251,0.0160495967207431,0.0181341066195615,0.0202518180609395,0.0224614376139459,0.024706678700361,0.0268454307289258,0.0289692504013501,0.0312789858806554,0.033370491938647,0.0355189279177739,0.037836270631847,0.0394620788411451,0.0413492022244166,0.0432015830859761,0.0579227557411273,0.071477152633176,0.0852197629287737,0.0980262258536021,0.1100743318045231,0.1251070850652029,0.1384656196943972,0.1508270404413722,0.1624472348383649,0.1734460670178864,0.1866971290628502,0.1998527309741413,0.2116389445266916,0.2229495276771347,0.2329626775294506,0.2433675901597543,0.2542378559463986,0.2638801332853026,0.2742480989672001,0.2831360506021611,0.2904484107692663,0.2977017011860299,0.3038670759312151,0.3104624214988172,0.3171016608870232,0.3237071943156024,0.3299145941342951,0.3359481452239357,0.3406953973050436,0.3450912548532791,0.3452658534941707,0.3450415497220846,0.3456127751256812,0.3451668833983528,0.3453101810626298,0.3439159105861473,0.3422691493061043,0.3418182414590543,0.3429020572756476,0.3445882038011957,0.3456753110478189,0.3479713698196773,0.3496154732717252,0.3500492302184032,0.3507006308084942,0.3512080449262113,0.3513976041072447,0.353457253763373,0.3560340864891623,0.3579757182353648,0.358996698459281,0.36208,0.363102009859689,0.3661369193154034,0.3659199550098416,0.3666862170087976,0.3674853096278439,0.3663228877429591,0.3667117726657645,0.3561178247734139,0.0,2.0529764198475706,57.681083997269845,199.7997746866777,298.7097643568139,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95503,42858,404.36426080856097,6519,67.12878129482843,5148,53.453818204663726,2058,21.30823115504225,77.22623088476638,79.71407964146523,63.24095407219974,65.0764274848913,76.96802768832414,79.45158383381262,63.14669625268786,64.98238557554419,0.2582031964422384,262.4958076526127,0.0942578195118812,94.0419093471121,117.83288,82.5872720160566,123381.3388061108,86476.1023382057,279.90714,176.8928357559922,292651.48738783074,184786.49440959157,312.72374,150.5788826735661,324230.89327036845,155258.4448600725,2939.9616,1344.4979086777776,3053232.5057851584,1382822.996666168,1276.02804,563.8244968186332,1322899.092175115,577233.2920491084,2015.47564,839.1314698334085,2087328.3352355424,858618.215774477,0.38052,100000,0,535604,5608.2426730050365,0,0.0,0,0.0,23597,246.6205250096856,0,0.0,28873,299.1424353161681,1857951,0,66713,0,0,4793,0,0,53,0.5549563888045401,0,0.0,0,0.0,0,0.0,0.06519,0.1713181961526332,0.315692590888173,0.02058,0.3313367421475529,0.6686632578524471,24.733778824801043,4.4045630445651645,0.3339160839160839,0.2121212121212121,0.2294094794094794,0.2245532245532245,11.16241873953096,5.807519605431277,21.99144984212431,12704.279157779683,58.6454874978196,13.111327097820382,19.624436746114245,13.196598809185511,12.713124844699456,0.5672105672105672,0.7875457875457875,0.7271669575334497,0.563082133784928,0.1254325259515571,0.7410909090909091,0.9321608040201004,0.9,0.703971119133574,0.192,0.5038430956798303,0.7046109510086456,0.6658786446020488,0.5199115044247787,0.1070640176600441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205147692151,0.0046354996094819,0.0069141267488374,0.0092628368073207,0.0116977520768854,0.0137695561331091,0.0158164879233461,0.0178918112521202,0.0201438407316848,0.0223151164935144,0.0245935293151584,0.0268661320172732,0.028903876847037,0.0310656380213705,0.0333009588361712,0.035543453502578,0.0376651936681811,0.0396137374745332,0.0414839200325037,0.043687090172493,0.0583950009943583,0.0720003357148102,0.0853444377845778,0.0975265315585907,0.1098242684898502,0.1246502458877395,0.1379303012906381,0.1500005334300619,0.1619563704124142,0.1732368935795198,0.1870223239345395,0.1995748649762488,0.2110736828335023,0.2219201806403525,0.2319149170904998,0.2429384181167633,0.2531741858982247,0.2631845956122748,0.2718162791755767,0.2805348330081487,0.2880223616604229,0.2958684664188293,0.3027649222736442,0.3097172805077411,0.3155507875359633,0.3213941058570262,0.3271406304992709,0.3321997928944912,0.337815344603381,0.3424744644489487,0.3434829637641968,0.3432254858657244,0.3433455778468494,0.342783094676184,0.3428733267745878,0.3410296220005226,0.3400760141850739,0.3402174092341191,0.3419091127674922,0.3413517637554977,0.3420032370986562,0.343097148304075,0.3441760646355832,0.3444644060184145,0.3451534363474194,0.3459637561779242,0.3466003316749585,0.3495565445191427,0.3526384433712856,0.3553900087642418,0.3588006408789196,0.3610785463071512,0.3624913407645317,0.365056495032987,0.366316376825072,0.3676005157660297,0.3709998468840912,0.3697031729785056,0.366076369673492,0.3644752018454441,0.0,1.738096198923179,61.26921818855936,191.52008006434733,286.861535243094,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95700,42380,399.7387669801463,6808,69.87460815047022,5268,54.36781609195402,2142,21.974921630094045,77.36399481233721,79.74782635792052,63.33329461681414,65.09686465044823,77.10168971845673,79.48842758627487,63.23663490951788,65.00482787718245,0.2623050938804852,259.3987716456496,0.0966597072962685,92.0367732657752,119.17246,83.4709519010263,124527.12643678162,87221.47534067533,282.11408,177.3546035448406,294133.5841170324,184667.04654633292,306.66715,147.57643916197878,315933.7617554859,150906.84659840606,3045.44524,1388.5037514490143,3145364.723093,1413973.4079927008,1308.8936,575.0376776620672,1352514.6394984326,585685.0445789623,2113.94954,874.9977541970527,2170288.3803552766,879002.2580465078,0.37742,100000,0,541693,5660.323928944618,0,0.0,0,0.0,23815,248.17136886102404,0,0.0,28399,292.3197492163009,1862109,0,66848,0,0,4811,0,0,50,0.522466039707419,0,0.0,0,0.0,0,0.0,0.06808,0.1803825976365852,0.3146298472385428,0.02142,0.331041257367387,0.668958742632613,24.99248503856161,4.511401020041036,0.3261199696279423,0.2190584662110858,0.2152619589977221,0.2395596051632498,11.144240543006156,5.651388770914979,22.658093872581105,12620.2595922662,59.71351879303588,13.696581130133929,19.56990616728385,12.689834651557604,13.757196844060488,0.5537205770690964,0.7720970537261699,0.6990686845168801,0.5934744268077602,0.1204437400950871,0.7343522561863173,0.9307692307692308,0.8738938053097345,0.75,0.1893939393939394,0.4899845916795069,0.6910994764397905,0.636650868878357,0.5450346420323325,0.1022044088176352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0046142768768951,0.0070657029156176,0.0091977153078439,0.0111622133132542,0.0132546814189946,0.0153515035293157,0.0178724621103803,0.0199134730447055,0.022046099181847,0.0241403710274527,0.0264974118807,0.0285540892212427,0.0302009273570324,0.0323755856915804,0.0342756110674552,0.0364320046407557,0.0384268147148861,0.0401663201663201,0.0421871906811006,0.057107049608355,0.0704446491374979,0.084019682932715,0.0968657972233908,0.1083596879612059,0.1237588689978957,0.1369758415169576,0.1490079259535081,0.1608267674503021,0.1713220004716071,0.1848168835222075,0.1976503932237859,0.2096042801683358,0.220316925667917,0.2301785498190299,0.2411257999512832,0.2513497233624844,0.2608099141954275,0.2699412258606213,0.2785868022164217,0.2872459778623393,0.2938741625059925,0.3008913457782407,0.3080113146035094,0.3142225515323041,0.3202265870328182,0.3259205523313988,0.3313759135684779,0.3364152431691516,0.3417464729361242,0.342016829314192,0.3420803165400415,0.3420626995400908,0.3415507187806708,0.3416384884617666,0.3406439000549819,0.3387315718028854,0.3393061504757545,0.3389461139014216,0.3392147427328949,0.3397760047945462,0.3412629415948787,0.3424132660538933,0.3425697773397249,0.3434396864706306,0.3448149601150778,0.3473970251716247,0.3500251952632905,0.3534488832523075,0.3567221205126164,0.3599325525224445,0.3630329740349386,0.3645582456585118,0.3615662743287945,0.3589352161053334,0.3618967384763509,0.3644903710662283,0.3683991683991684,0.3686596769623123,0.3705021747726374,0.0,2.684753085837057,60.13904815834677,201.17441759795653,289.0371829615394,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95682,42474,400.6187161639598,6734,69.28157856232102,5167,53.55239229949207,2060,21.23701427645743,77.31725194233033,79.72566382630505,63.30264576078415,65.08491696414312,77.06307598024974,79.46990116596042,63.20822239565524,64.99220746360582,0.2541759620805948,255.76266034462947,0.094423365128911,92.7095005372962,117.34932,82.17121965827549,122645.13701636672,85879.4963088935,278.04441,174.81430183981098,290140.7683785874,182252.0242467873,298.18201,142.37219314589146,309117.4515582868,146779.4303052423,2976.49624,1349.7510553724514,3087346.9200058524,1387188.9126193556,1249.31535,547.2063575168921,1293784.295896825,559990.0686826067,2030.21622,855.2402664727165,2095235.8437323635,870319.8103840277,0.37965,100000,0,533406,5574.778955289396,0,0.0,0,0.0,23471,244.85274137246296,0,0.0,27581,285.69636922305136,1872297,0,67185,0,0,4600,0,0,54,0.5643694738822349,0,0.0,0,0.0,0,0.0,0.06734,0.1773738970104043,0.3059103059103059,0.0206,0.3259417199715707,0.6740582800284293,25.068674038576575,4.549320115497188,0.3305593187536288,0.2161796013160441,0.2214050706406038,0.2318560092897232,11.022576942571993,5.389772571730756,22.139362435998738,12732.752851125812,58.41814279933077,13.208157351134972,19.064848340568084,12.825444074244515,13.319693033383189,0.546738920069673,0.7699194270367055,0.680327868852459,0.5743006993006993,0.1218697829716193,0.6815728604471858,0.9086021505376344,0.8245614035087719,0.6872586872586872,0.146067415730337,0.5015503875968992,0.7006711409395974,0.6363636363636364,0.5412429378531074,0.1149301825993555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0049079754601227,0.0069821488374925,0.0089625948846142,0.0111919418019026,0.0134766221860038,0.0157815273498867,0.0180818895063746,0.020011867978965,0.0220885797125206,0.0242125782291987,0.026470195340999,0.0284211393160809,0.0305379714209126,0.0325019364833462,0.0344328104953855,0.0364987716261182,0.0384958876796544,0.0405543186499927,0.0424363090522453,0.057325838940198,0.0709865231368524,0.0847242342172114,0.0968247622254019,0.108568836566558,0.123868987777131,0.1369000870285071,0.1501975442744108,0.1624971948235143,0.1734265884296456,0.1870684919703154,0.200090920898818,0.2129782788490837,0.2241971849484491,0.2347537805777978,0.2456470901171489,0.2558308224528512,0.2646764378353449,0.2737503687064643,0.2819485159399047,0.2893019164892139,0.2971243389957415,0.304405495026054,0.3108670367750213,0.3172700527608257,0.3229937814628368,0.3282267762300832,0.3333503042028358,0.3378971774977008,0.3424361156185274,0.3426914121906249,0.3427541912502923,0.3435802156349407,0.3427853294234908,0.3423774725029395,0.3415525394583307,0.3402882374391578,0.3416783101832826,0.3420652415372259,0.3419666922513967,0.3428442878032319,0.3444035899260665,0.3464227966653367,0.345878979322087,0.3466505733252866,0.3494404351009308,0.3497359783074069,0.3536796400591511,0.3565804274465692,0.3606986899563318,0.3628560993425858,0.3662728820774797,0.366822429906542,0.3688674919761577,0.3708995206316383,0.3718403023860146,0.3713977500385267,0.3744646135019376,0.3768666847678523,0.3692191053828658,0.0,1.7851767099825964,57.564541182075,198.803688450394,289.6526096230629,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95838,42588,402.0012938500386,6838,69.89920490828273,5342,54.967758091779885,2129,21.76589661720821,77.4717338221379,79.75796968094927,63.40399372213196,65.09062047338838,77.2060251090644,79.4947278450205,63.30510420145961,64.99529843822566,0.2657087130735078,263.24183592876693,0.0988895206723441,95.32203516272376,118.1147,82.70596887135942,123244.1202863165,86297.67823969554,278.92516,174.83417628153595,290289.0189695111,181677.62920922384,305.93197,147.11256999573894,314252.1233748618,149647.80400832696,3062.8752,1399.193289665503,3155285.627830297,1419354.2537046913,1307.23926,575.5725494293592,1346261.0655481124,582819.935129447,2099.9781,887.4132160783777,2150550.0532148,892431.7698381232,0.38021,100000,0,536885,5602.005467559841,0,0.0,0,0.0,23505,244.46461737515392,0,0.0,28307,290.30238527515183,1873678,0,67173,0,0,4696,0,0,57,0.5947536467789395,0,0.0,0,0.0,0,0.0,0.06838,0.1798479787485863,0.3113483474700205,0.02129,0.3140644447517632,0.6859355552482368,25.145132659500696,4.468805750863031,0.3328341445151628,0.2104080868588543,0.2244477723698989,0.2323099962560838,11.305733441939676,5.802139094454776,22.7785944428343,12738.538521558125,60.22310395986548,13.296435588556994,19.91275861424326,13.368210554913254,13.645699202151988,0.55672032946462,0.7820284697508897,0.6979752530933633,0.5921601334445371,0.1160354552780016,0.7259475218658892,0.9354005167958656,0.8807339449541285,0.7294520547945206,0.1439688715953307,0.4982367758186398,0.7014925373134329,0.6385991058122206,0.5479603087100331,0.1087398373983739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022876809393663,0.0044878483654303,0.0066519296680119,0.0086987413723101,0.0108832615234533,0.0129518654552484,0.0150965691467688,0.0171870378114831,0.0196168535424708,0.021557719054242,0.0235868863876115,0.0255881689331938,0.0275823103395141,0.0296323733679044,0.0317695931389223,0.0339322593969434,0.0360175846909749,0.0379939682243571,0.0397582730227294,0.0415747408733297,0.0563381750310209,0.070342881037006,0.084169932722738,0.0966535329655897,0.1088017369491668,0.1244132448090667,0.1374856852016796,0.1502063741968426,0.162366153879002,0.1731399909973635,0.1874219792518617,0.200758722061303,0.2122923227277663,0.2241352956590095,0.2347333274756172,0.2458570559946934,0.2555538225005013,0.265448460208001,0.2744318310561258,0.2824085194971575,0.2900311886334758,0.2979830991176058,0.3050304806011058,0.3115330772820273,0.3173256632442535,0.3237130157479345,0.3290587073631057,0.3335959639603004,0.3385972400056907,0.3421080368906455,0.3421682856604687,0.3422299106223485,0.3432632289265028,0.3430552752227444,0.3433977933325424,0.3423545951893395,0.3419378266155133,0.3426316995710964,0.3435908789019261,0.3443314005193696,0.3460683393427616,0.3473609551391926,0.3491927567409511,0.3503833467058928,0.3508095420578654,0.3516791771642295,0.3519363154763591,0.3546916471506635,0.3593516815326415,0.3605765454402639,0.3648849461881389,0.3688489968321014,0.3732412060301507,0.3706106870229008,0.3722980659840728,0.3739234449760765,0.3720397249809014,0.3710361543122601,0.3734610123119015,0.3742846241892407,0.0,3.056594271536373,59.350146740613766,202.74793870678525,295.8471084968968,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95737,42631,402.44628513531865,6802,69.76404107085035,5253,54.25279672435945,2109,21.600843978816968,77.34438518034166,79.69594313308711,63.33412346583962,65.07184403405792,77.08422270516837,79.4392823219176,63.23802931011044,64.97975655844671,0.2601624751732885,256.66081116951034,0.0960941557291761,92.08747561120845,118.92848,83.26878243139774,124224.15576005095,86976.59466183162,281.06477,176.8435976822113,292979.0885446588,184118.65797399933,303.97379,146.29307188656549,313539.64506930445,149717.2787753793,3025.29416,1373.301966524229,3127149.7957947296,1401681.016409256,1271.28217,557.8747180743849,1316029.9675151715,570919.5415272586,2077.04258,865.3901577067403,2130560.786320858,871302.9237146734,0.37983,100000,0,540584,5646.552534547772,0,0.0,0,0.0,23803,247.98144917847856,0,0.0,28097,289.6267900602693,1862538,0,66833,0,0,4731,0,0,42,0.428256577916584,0,0.0,0,0.0,0,0.0,0.06802,0.1790801147881947,0.3100558659217877,0.02109,0.3230530911139276,0.6769469088860723,25.13435207389782,4.457757290269419,0.3306681896059394,0.2149248048734056,0.2236817056919855,0.2307252998286693,11.324713677281704,5.81022368874619,22.40603520589414,12706.264108380808,58.98800870398936,13.168699333949643,19.461200268341745,12.973694551988736,13.384414549709245,0.5537787930706263,0.7732506643046945,0.7000575705238917,0.5702127659574469,0.1237623762376237,0.7295401402961809,0.8997134670487106,0.8917647058823529,0.7674418604651163,0.1792828685258964,0.4969773299748111,0.7166666666666667,0.6379573170731707,0.514721919302072,0.109261186264308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0045522289700201,0.0068081047900242,0.009049084427653,0.0111027512861703,0.0132033023525699,0.0151851776360041,0.0175315067095259,0.0196891826996761,0.021590095160135,0.0235060250840232,0.0256694481222608,0.0277917724837804,0.0298552038063067,0.031906662952991,0.0338951523731773,0.0357930256389024,0.0378002240013274,0.0397630430263978,0.0419565851422857,0.0567834212037375,0.070798405073624,0.0849084310558224,0.0974686339878216,0.109548014257693,0.1246549992068947,0.1381054909156475,0.1505128096008171,0.1626580656185919,0.1742048219894726,0.1873270822792305,0.2000064902051986,0.2121531703922762,0.2234853039229617,0.2342241284504564,0.244727840324134,0.2547172969414285,0.2641925326135852,0.2732626084983264,0.2808556443670842,0.2889786190299889,0.2968393461038885,0.3038362747535007,0.3096035030891968,0.3155873667837309,0.3208301458431014,0.3265014478582979,0.3324452149968767,0.337789649762056,0.3429798480343574,0.3433431274766154,0.3433012542508226,0.3425965090375885,0.3429720385933951,0.3435676866293606,0.3433805239075024,0.3427831776888381,0.3434087620049993,0.3442572426546127,0.3450490090863561,0.3447065668224386,0.3455448679887583,0.3463669563027327,0.3458363244795405,0.3464464246902847,0.3457587243497582,0.3467801839894863,0.3493306390502652,0.3520084566596194,0.3522228430042302,0.3539774542467254,0.3577335538601078,0.3586585827965138,0.3594781157551392,0.3634566506636543,0.3696396928529238,0.3708812260536398,0.3786067600989283,0.3862433862433862,0.3911684251660805,0.0,2.358570661070132,55.95482298945981,198.09468117822493,303.24091208012726,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95676,42497,400.1630502947448,6687,68.54383544462561,5241,54.24557882854634,2100,21.60416405368117,77.28108161739658,79.66897717633387,63.29287913429015,65.05605561102597,77.02309881030139,79.40845951006185,63.19772543519024,64.96184655529969,0.257982807095189,260.5176662720225,0.0951536990999173,94.20905572628158,117.45756,82.31363875540963,122765.73017266608,86033.52121473479,279.64391,175.4370428390894,291696.12023914047,182792.095724814,307.38347,147.80850110519873,317417.81638028345,151572.002593147,3015.70828,1371.1198026950678,3123567.2477946403,1405294.9834338157,1279.78102,559.5109249036695,1319350.8403361344,567197.7282221966,2061.54488,857.9263844515945,2122652.619256658,870936.5401108855,0.37891,100000,0,533898,5580.260462393912,0,0.0,0,0.0,23564,245.68334796605208,0,0.0,28362,292.6648271248798,1866653,0,67026,0,0,4753,0,0,57,0.5957606923366361,0,0.0,1,0.0104519419708181,0,0.0,0.06687,0.1764799028793117,0.3140421713772992,0.021,0.3261948659764572,0.6738051340235428,25.06243888277156,4.477028474141959,0.3257012020606754,0.2156077084525854,0.2302995611524518,0.2283915283342873,11.274490641983313,5.768505386070279,22.378389782464318,12749.07591517522,59.33565095946635,13.343026259386075,19.446555886536828,13.480185407810168,13.065883405733285,0.5531387139858805,0.7628318584070797,0.6977152899824253,0.5766362883181442,0.12531328320802,0.7265336289726534,0.9088471849865952,0.8640350877192983,0.6986754966887417,0.1756756756756756,0.492798353909465,0.6908850726552179,0.6370903277378097,0.5359116022099447,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387681709973,0.0043593304879408,0.0065559130072967,0.0087980412674868,0.0108414864837377,0.0131868355667793,0.0154475192201806,0.0175501286396863,0.0198415537950421,0.021873304742116,0.024105156309276,0.0261612386545648,0.0284245166598107,0.0305802835476425,0.0326752190560721,0.0348332264935172,0.0366687383467992,0.0387126236364957,0.0407647419827953,0.0432018343842826,0.0580541365008723,0.0720164178166816,0.0854587820391712,0.0981345285817998,0.111107594268954,0.1266000888644394,0.1397758152173913,0.1519463230203951,0.1637551317139924,0.1757051288933744,0.1893212259776114,0.2020632185776361,0.2132573942588317,0.2241215054587663,0.2348903066565292,0.2459127309833847,0.2561534506270819,0.2655167363309636,0.274354690217206,0.2825648084423033,0.2894925940520618,0.296900642378206,0.3044473706063086,0.3108054537810079,0.3169559185064382,0.3223445483942633,0.3273237882701035,0.3318964417803851,0.33722303708415,0.341888260909849,0.3417167555885729,0.3419327232321559,0.342161856253537,0.3420193549323158,0.3430695064252772,0.3424868156029459,0.3416625629457832,0.341718317288672,0.3422624154854652,0.3431233760415733,0.3443175188663266,0.3454820355707635,0.3466579430573436,0.3472209710836861,0.3476745030627315,0.3489084341133972,0.3489771359807461,0.3521095578467961,0.3523822929129425,0.3551349846924576,0.3572177879133409,0.3589648011076202,0.3603614990836125,0.3614549320373604,0.3645070422535211,0.3672488571093658,0.3670131458269642,0.3686746987951807,0.3751354279523293,0.3711538461538461,0.0,1.8683558298974448,59.84280536140727,198.1033294356569,293.19346279310867,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95725,42853,404.4398015147559,6756,69.41760250718204,5315,54.92817968137896,2132,21.927396186993995,77.3612597271838,79.72849230386034,63.34108899169471,65.08995429228496,77.1006926771601,79.46690890847185,63.24555261928651,64.99612425083399,0.2605670500237096,261.5833953884845,0.0955363724082047,93.83004145097118,118.60794,83.07984741905084,123904.87333507444,86790.1252745373,282.1226,177.35546946628702,294153.80517106294,184707.8605027809,309.80553,148.65719074914713,319980.01566988765,152396.7474716238,3048.58364,1387.1224689961914,3153968.597545051,1418307.9331378343,1279.36434,557.3145706565883,1321658.8769913814,567362.9570713905,2089.15578,866.0193431819798,2150748.143118308,877686.0923921994,0.38182,100000,0,539127,5632.039697048838,0,0.0,0,0.0,23797,247.99164272656049,0,0.0,28754,296.68320710368243,1865598,0,66922,0,0,4774,0,0,44,0.4596500391747192,0,0.0,1,0.0104465917994254,0,0.0,0.06756,0.1769420145618354,0.3155713439905269,0.02132,0.3321116436425148,0.6678883563574852,24.87162145235385,4.402474496572007,0.3149576669802446,0.2289746001881467,0.2270931326434619,0.2289746001881467,11.04585727166418,5.674618049730942,22.612443098989036,12765.26316778842,60.27847015417734,14.496932038960544,18.97650745586962,13.55846763587032,13.246563023476885,0.5548447789275635,0.7896466721446179,0.7025089605734767,0.5550952775476388,0.1166803615447822,0.7329013678905687,0.9282296650717704,0.8654292343387471,0.7384105960264901,0.1428571428571428,0.4918492103922567,0.7171464330413017,0.6460176991150443,0.4939226519337016,0.1103166496424923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487616616525,0.0045522751236921,0.0066164681049704,0.0089605916835143,0.011207159564731,0.0135129630761084,0.0155405543205596,0.017480982284168,0.0198247569192389,0.0221027846027846,0.0240739031917402,0.0260463205463975,0.0279540475774187,0.0302349778002122,0.032041359668132,0.0340332268502724,0.03632748586459,0.0385924496191602,0.0406359505464225,0.0424372505912874,0.0574053771861132,0.0712132629992464,0.0848883434553216,0.0977615157345782,0.1101707419898819,0.1256421640134458,0.1388352808941106,0.1520913356670887,0.163214953271028,0.1746708974743793,0.1882442879600318,0.2014279532669839,0.2136854350354964,0.2249185632146214,0.2349461833613685,0.2449176082602007,0.2552010167904208,0.2652980965864401,0.2741430903155604,0.2825114160477013,0.2901092548702237,0.2982564797718933,0.30450363081581,0.3109410736310187,0.3171344022121425,0.323058756964859,0.3297016342645809,0.3349476922294678,0.3400046604354918,0.3444589618719563,0.3452597288966065,0.3445018835757692,0.3440012390352421,0.3450035415371716,0.3448973218932623,0.3435899794560451,0.3418980784767215,0.3421316295189133,0.3429928578751324,0.3436282394995532,0.344696898628492,0.3463217204983731,0.3469649502743844,0.3476700901466565,0.3478470747248504,0.3485933034426702,0.3501907575801038,0.3527921193500364,0.3552204012432891,0.357479434549956,0.3612354930092296,0.3616874502520562,0.361516218254966,0.3614256402462193,0.3625714553462655,0.3633345191509546,0.3635525507068223,0.3651639344262295,0.36980491942324,0.3743402354851807,0.0,2.3038125359895223,61.04490034093945,199.77191770642835,296.8736291947721,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95648,42808,402.6639344262295,6797,69.75577116092339,5335,55.16058882569421,2197,22.561893609902977,77.2430810454354,79.64808632354475,63.27207635196621,65.05030455490898,76.97053279876786,79.374411538443,63.17029836561474,64.95057950218244,0.2725482466675402,273.6747851017469,0.1017779863514718,99.72505272654077,117.27694,82.25480400279706,122613.06038808968,85997.41134451014,282.36467,177.45770569173382,294614.40908330545,184935.07358781685,311.2324,149.4255344825852,321282.1700401472,153061.85403191173,3072.38308,1410.4477931157553,3178508.1130812983,1441351.091307473,1289.42225,576.1888606078963,1328969.0531950484,583616.6858336462,2161.27884,915.8608899265926,2221469.534125125,926366.951003182,0.38131,100000,0,533077,5573.320926731349,0,0.0,0,0.0,23773,247.90899966543995,0,0.0,28811,297.07887253261964,1864193,0,66887,0,0,4668,0,0,51,0.5332050853128136,0,0.0,0,0.0,0,0.0,0.06797,0.1782539141381028,0.3232308371340297,0.02197,0.3242827151854444,0.6757172848145556,24.99527820299876,4.506060218565464,0.3270852858481724,0.2084348641049672,0.2314901593252108,0.2329896907216495,11.395393678608594,5.948903714728007,23.61896012192109,12845.175511485468,60.77599600332056,13.182656262463595,19.79634721501224,13.858810255587848,13.938182270256892,0.5501405810684161,0.7769784172661871,0.7025787965616046,0.562753036437247,0.1206757843925985,0.7005689900426743,0.9222222222222224,0.8596881959910914,0.7364864864864865,0.1627906976744186,0.4963094935097989,0.7074468085106383,0.6481481481481481,0.5079872204472844,0.1072186836518046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025741851791795,0.0047876980504331,0.0072180542724587,0.0092969853381968,0.0118092215678496,0.0142064259891033,0.0162834565383634,0.0186039862767521,0.0210037630890052,0.0230507710897659,0.0252279230035585,0.0274192057672756,0.0294943386912658,0.0316163593283197,0.0339787787457165,0.0357977458380725,0.0378822408220767,0.0400332139706264,0.042094861660079,0.0440670544817664,0.0593226537926998,0.0732167172933905,0.0870149504451537,0.0997421188358507,0.1116729833303421,0.1274575194537081,0.1404621513944223,0.1527577860943181,0.1644087747458534,0.1753149805050429,0.1897028036172922,0.2032049614016827,0.2158419940301109,0.2262142090389291,0.2358920086869288,0.2469511180158686,0.2565671024233139,0.2665080778813741,0.2755895663247902,0.2834447872816324,0.2917608597363753,0.2992034672601616,0.3057599563944877,0.3117805917301806,0.3179737527695941,0.3236762125966742,0.3292725767194439,0.3338907327035997,0.3391949675725556,0.3424029672804345,0.3434436191762323,0.3428938001821041,0.3436625293335972,0.3436511850541034,0.3439948657482724,0.3434467699026588,0.342592150686457,0.3434781891102345,0.3448317307692308,0.3459825437304694,0.3467426802333264,0.3478104881305934,0.3495065789473684,0.3501339396258695,0.3513055683275657,0.3524924371958437,0.3513388868071369,0.355315772770549,0.3587187854710556,0.3608525726258109,0.3620418363569048,0.3646691433801755,0.3641928079571538,0.3687413341549838,0.3706962509563887,0.3694298035457594,0.369640062597809,0.3711574169589436,0.3806218767351471,0.3701550387596899,0.0,2.4029731060732678,62.00948502491177,198.51403719611884,300.98153072832207,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95825,43070,406.010957474563,6863,70.53482911557526,5360,55.43438559874772,2206,22.78111140099139,77.44904619750217,79.77722002667197,63.38601454967061,65.1077097628836,77.17648851966902,79.50020887403265,63.28667429501748,65.00867448314234,0.2725576778331486,277.011152639318,0.0993402546531356,99.03527974125836,118.95554,83.22620914969784,124138.31463605532,86852.2923555417,284.66257,178.99785823879873,296592.64283850766,186324.22461653923,305.16832,146.33100522961436,315353.8012001044,150313.98902975456,3087.28508,1393.866759139055,3195207.597182364,1428271.5428456897,1282.74875,559.1576454459778,1325557.4849986956,570595.6483480149,2167.18066,901.6148005557862,2239439.833028959,920683.8333381102,0.38367,100000,0,540707,5642.650665275241,0,0.0,0,0.0,23996,249.9139055570049,0,0.0,28159,290.6444038612053,1867000,0,66950,0,0,4697,0,0,57,0.5948343334202973,0,0.0,0,0.0,0,0.0,0.06863,0.1788776813407355,0.3214337753169168,0.02206,0.3113780723557028,0.6886219276442972,25.08046785871321,4.488681562311022,0.3158582089552239,0.2136194029850746,0.2348880597014925,0.2356343283582089,10.9719614551837,5.475553927926543,23.47453036154052,12854.057350316469,60.16143856466033,13.463949449580973,18.993086070824905,13.95553141770089,13.74887162655356,0.5330223880597015,0.7580786026200873,0.6739515652687537,0.5647339158061954,0.1084718923198733,0.7083641746854182,0.9137466307277629,0.841726618705036,0.7348242811501597,0.148,0.4739336492890995,0.6834625322997416,0.6191222570532915,0.5084566596194503,0.0987166831194471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026027161419037,0.0048655388077402,0.0071332176595334,0.0094777582511351,0.0116843100765734,0.0140205471780721,0.0161597830408939,0.0182488084181304,0.0203883495145631,0.0227256448823812,0.0246861710303837,0.0264675697865353,0.0284745065789473,0.0305579293090489,0.032569796103588,0.0346302456763848,0.0368143241564893,0.0390079011219178,0.0409446037484935,0.0426816572975223,0.057757703461081,0.072297848315664,0.0862110525378077,0.0991038315665612,0.1115196982308997,0.126886333854673,0.1401026097648879,0.1527532594593444,0.164287543208296,0.1750942345583826,0.1891110083554676,0.2017197982045825,0.2144826837476929,0.2258279229636095,0.2361516675082881,0.2466954022988505,0.2569936300057909,0.2668634537251116,0.2756239741920878,0.2842568262310065,0.291928333949021,0.2991924755525474,0.3056142380002596,0.3122669025533136,0.3185553266270755,0.3244854803412919,0.3305251859617593,0.3359388879019364,0.3416171531903901,0.3459549097800766,0.3467773345689458,0.3467560292259518,0.3468205654515036,0.3463280911845333,0.3464411703672961,0.3463459335624284,0.3449712076989824,0.3463854435972118,0.347200952867109,0.347609561752988,0.3488932474082376,0.3510036837854343,0.3517317828160294,0.352423104434907,0.3526498028277388,0.3518104255540527,0.3527870346634766,0.3547504481554863,0.3545044409981672,0.3591037304834929,0.3605890154113504,0.3624993318723609,0.3616994292961319,0.3648183556405354,0.3647125674779808,0.3663660099691431,0.3663290362185389,0.3728571428571428,0.3781163434903047,0.3820826952526799,0.0,1.991641917520904,59.64614427731181,199.3195157337192,303.57534945041107,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95814,42617,401.1209217859603,6737,68.93564614774459,5269,54.48055607739997,2131,21.823533095372284,77.3497797498425,79.68199791780377,63.33168066437421,65.05952855673442,77.08772366534741,79.42252057736668,63.23454711125965,64.96616545007275,0.2620560844950859,259.4773404370869,0.0971335531145598,93.3631066616698,118.57516,83.01771240925945,123755.56807982131,86644.65778410195,279.89902,175.9853813379899,291635.9926524307,183182.49038552816,303.48263,145.8008798680563,314135.1472644916,150051.3657089602,3035.15924,1379.431507197256,3139709.186548939,1411644.673218167,1276.54818,558.5852285448109,1318772.475838604,569442.5747227033,2093.11712,870.5050015908273,2146276.3896716554,876577.8855282746,0.37985,100000,0,538978,5625.253094537333,0,0.0,0,0.0,23615,245.94526895860733,0,0.0,28030,289.8845680172,1864953,0,66933,0,0,4631,0,0,55,0.5740288475588119,0,0.0,0,0.0,0,0.0,0.06737,0.1773594840068448,0.3163128989164316,0.02131,0.3237664357415524,0.6762335642584476,24.947209572545088,4.455385382658649,0.3374454355665212,0.2106661605617764,0.2176883659138356,0.2342000379578667,11.043679553799588,5.651906043643028,22.62091085417101,12716.008403537748,59.53226664866725,13.094447581590613,20.20411987213024,12.838911333156265,13.394787861790116,0.5420383374454356,0.7594594594594595,0.6901012373453318,0.5588491717523976,0.1175040518638573,0.7228739002932552,0.9191374663072776,0.8495762711864406,0.7282229965156795,0.1495726495726495,0.4788732394366197,0.6792963464140731,0.6324655436447167,0.5023255813953489,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022286605749944,0.0044815314264856,0.0065053687052185,0.0088490180739416,0.0109551418980775,0.0133801741255536,0.0156912724306688,0.0178638873860539,0.0200742050553471,0.0222520189561817,0.0243257373066396,0.0266138223486287,0.0288011680873597,0.0307685970837795,0.0326277568030368,0.0345946392775217,0.0366133907498654,0.038720451410138,0.0406990638280186,0.0427607604689419,0.0569315194257814,0.0713240061066148,0.084762284085192,0.0974010278183557,0.1098321949574163,0.125604017975152,0.1387427334832605,0.1504859019255127,0.1626073580310216,0.1733944068396606,0.1871982758620689,0.1993484213830351,0.2118832129492646,0.2220533732740054,0.2321131905249144,0.2427308186693852,0.2529324449503912,0.2627949877393084,0.2721031309222546,0.280482777574203,0.2883520755240872,0.2966497105770917,0.3037248266559386,0.3100094620977111,0.3157313193618106,0.3212350362086802,0.3271606481944583,0.3322011042414065,0.3374851105702004,0.3425976049327295,0.3430735639000458,0.3433148592384261,0.3430377781854616,0.3432688683348314,0.343243565300286,0.3423286514697981,0.3421616389228303,0.3435556579250436,0.3439212328767123,0.3447281713344316,0.3457209957726632,0.3466510687234801,0.3483219221237451,0.3480792921939747,0.3490259349338984,0.3487139313226269,0.3492384918145,0.3531704863403439,0.3561821366024518,0.3580685949107002,0.3597907664316579,0.3625079567154678,0.365267947421638,0.3661290322580645,0.3661785545583372,0.3700367429180988,0.3724646588813767,0.3745961227786752,0.3726725082146769,0.376800311405216,0.0,2.0256099464422026,60.30711237530412,195.98365479727187,296.16800518235084,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95803,42804,403.1293383296974,6760,69.40283707190798,5269,54.44505913175997,2070,21.241506007118776,77.41775944651599,79.74606568930463,63.37436231324406,65.09522673376509,77.16053157772829,79.48926805735589,63.27964471415969,65.00320635941715,0.2572278687876945,256.79763194874283,0.094717599084376,92.02037434793908,119.66966,83.81847752337003,124912.22613070572,87490.45178477712,280.02633,176.19647043168305,291719.3094161978,183340.8039744925,307.46795,147.59157735576414,317535.3798941578,151358.9449921676,3010.41152,1370.5555199127978,3110185.484796928,1398489.6087938775,1238.27677,544.7847511932241,1275508.480945273,551692.2469898764,2031.49314,851.2900583855443,2085823.679843011,858600.4433107595,0.38036,100000,0,543953,5677.828460486624,0,0.0,0,0.0,23619,245.95263196350845,0,0.0,28512,294.24965815266745,1863402,0,66899,0,0,4743,0,0,47,0.4801519785392942,0,0.0,0,0.0,0,0.0,0.0676,0.1777263644967925,0.3062130177514793,0.0207,0.3078775857183338,0.6921224142816662,25.18323739383424,4.408177508471455,0.3296640728791042,0.2258493072689315,0.2218637312583032,0.222622888593661,11.114035151123204,5.628955056846225,22.14533653696326,12748.361522015894,59.68073323325446,14.21787871133582,19.644823583798843,12.952552288942522,12.865478649177277,0.5547542228126779,0.7747899159663866,0.690846286701209,0.5688622754491018,0.1159420289855072,0.7218543046357616,0.9154589371980676,0.851508120649652,0.7481203007518797,0.1451612903225806,0.4966751918158568,0.6997422680412371,0.6378254211332313,0.5160575858250277,0.1081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390273291548,0.0043992580053318,0.006727481202626,0.0092421441774491,0.0115512893516635,0.0135388248707194,0.0157782081337274,0.0178717236874336,0.0202477564954312,0.0226491177795062,0.0249589995899959,0.0270589322192225,0.0289776114800271,0.0308230812786328,0.032778940639081,0.0348282344192195,0.0367177555392273,0.0389077224520262,0.0408252306158065,0.0426838790276404,0.0574376845466022,0.0720184828970477,0.0851808757088797,0.0979473496228754,0.1104136165910072,0.1267563969826948,0.1395127118644067,0.1521720640455889,0.1638408433722084,0.1751282902842205,0.1889653688965369,0.201776087637609,0.2130517400510342,0.2240468183604839,0.2351668149710531,0.2457770550559187,0.2561167277875001,0.264695312324521,0.2732782057091074,0.2817821080197148,0.2884768670940911,0.2959533927987671,0.3033449082276238,0.308821065230401,0.3152038055019598,0.3211805555555556,0.3266517539145974,0.3310919883568696,0.3362392322218485,0.3415360295086286,0.3415499583344534,0.341460396039604,0.3414036766982911,0.3410764299945139,0.3408139016783009,0.3396784073506891,0.3396886174488149,0.3409661281062905,0.3420850737362543,0.3440547720505643,0.3459457435455788,0.3472359036999093,0.3490126423571205,0.3495708393713075,0.3517004184905479,0.3536353452991898,0.3550619393421614,0.3576319095477387,0.3596257621417058,0.3618176055780049,0.3635991634082022,0.365629645359949,0.3689711623221257,0.3715415019762846,0.3742789598108747,0.3772476624310716,0.3769698860976751,0.3748463744367062,0.3781928041746772,0.3760650658404337,0.0,2.111799783903462,59.9627371941037,203.60801939613785,288.6674951308762,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95723,42711,403.2886558089488,6746,69.42949970226591,5234,54.10402933464267,2127,21.82338622901497,77.3893283971574,79.75128406182125,63.35181630130408,65.09397386065474,77.12055628951705,79.48239923582742,63.25352684913136,64.99854314646569,0.2687721076403448,268.8848259938368,0.0982894521727217,95.43071418904958,118.00404,82.61297275180122,123276.57929651182,86304.20353708223,279.36429,175.2094994513324,291281.3743823323,182472.84294404936,298.20063,142.72995423663755,308188.7947515226,146512.8378348187,3024.98132,1362.4863001627534,3127842.6292531574,1391065.658371294,1254.87936,546.7538021349517,1299027.4228764246,559262.1022481036,2095.22052,871.5901736983143,2151841.45921043,879412.489698309,0.38153,100000,0,536382,5603.480877114173,0,0.0,0,0.0,23612,246.07461111749527,0,0.0,27541,284.43529768185283,1871681,0,67134,0,0,4573,0,0,49,0.5014468831942166,0,0.0,0,0.0,0,0.0,0.06746,0.1768144051581789,0.3152979543433145,0.02127,0.3157301788480495,0.6842698211519505,25.06303752588113,4.489208381139495,0.3171570500573175,0.2130301872372946,0.2309896828429499,0.2388230798624379,11.143930680364472,5.6782492769682245,22.66502197777763,12755.074710204628,58.73536611529024,13.032238840145668,18.57096605102062,13.377655191036702,13.754506033087244,0.542223920519679,0.7713004484304933,0.6819277108433734,0.5847808105872622,0.1112,0.7037319116527038,0.926027397260274,0.8595238095238096,0.68,0.150197628458498,0.4881407804131599,0.696,0.6217741935483871,0.556745182012848,0.1013039117352056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0047432272188269,0.0068064473590781,0.0088949361818791,0.0110406246187629,0.0130895914337479,0.0152250122289254,0.017550662231383,0.0196082438411313,0.0216005484554226,0.0236192232810738,0.0254545081462633,0.0277949034114262,0.0297889861039629,0.0320318462141369,0.0340922008535967,0.0361328529423945,0.0382357212505964,0.0400715154413064,0.0419831025825337,0.0563056712926704,0.0697968879168716,0.0833543108873505,0.0957563140075284,0.1082497048406139,0.1241103626230687,0.1372565658279944,0.1491941493325385,0.1617403565744074,0.1737699293426399,0.1874064582817395,0.2003569303985722,0.2121521739130434,0.2234103035073908,0.2337700914221591,0.2447302251907974,0.2556081337470146,0.2658973839890231,0.2755474866674231,0.2839387378718627,0.2917943676632163,0.2988950599239988,0.3062669977533404,0.312866022347573,0.3188469151093464,0.3237977957022351,0.3301172554466844,0.3353472398880692,0.3401235447234489,0.3439400535612986,0.3438643210673552,0.3441513793008608,0.3441785880069207,0.3435336291756407,0.3439073290265092,0.3436491303217121,0.3426995590814988,0.3437556331219376,0.344118500315705,0.3449155869650569,0.3454399010995186,0.3464154375420143,0.3472548690396239,0.3479215194409604,0.3495492020635456,0.3509379885356957,0.353847907228538,0.3557831249607338,0.3580848824973693,0.3611606611963373,0.3618574100260001,0.3657002771264123,0.3655669321198331,0.3657108085494789,0.3697232977618283,0.3674949470930924,0.37014970974641,0.3747725894481504,0.3737741664331745,0.3774912075029308,0.0,2.1984853759062237,57.78509196139792,195.91163073115507,295.3028414919108,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95672,42381,399.5212810435655,6692,68.80801070323606,5233,54.11196588343507,2096,21.531900660590352,77.35982293729873,79.73613855606713,63.33991942654043,65.09027067623808,77.10188478235584,79.47901734846424,63.245808724561606,64.99926244805971,0.2579381549428916,257.1212076028928,0.0941107019788276,91.00822817836728,117.4019,82.16230552865277,122712.91495944478,85879.15537320508,278.44561,174.86286253344656,290463.0403879923,182194.4273491164,303.63195,145.10242669922286,314232.1682414918,149126.89702714415,3021.18168,1369.9790092593626,3125736.8090977506,1399837.2034235343,1256.65133,550.6846110676352,1295516.274354043,557613.1063086739,2061.37062,850.2975034778976,2119681.0979178865,858394.5745724245,0.37825,100000,0,533645,5577.859770883853,0,0.0,0,0.0,23497,244.9933104774647,0,0.0,28110,290.6074922652396,1872927,0,67173,0,0,4780,0,0,48,0.5017141901496781,0,0.0,0,0.0,0,0.0,0.06692,0.1769200264375413,0.3132098027495517,0.02096,0.3303038909400738,0.6696961090599262,24.95965035354206,4.482558059933708,0.3313586852665774,0.210968851519205,0.2253009745843684,0.232371488629849,11.16509920521938,5.729381527284325,22.136714062645407,12690.026603190854,59.10955734435005,13.040510544632689,19.716326902963957,12.994086728215535,13.358633168537889,0.5646856487674374,0.7898550724637681,0.709919261822376,0.5996607294317218,0.1192434210526315,0.7413533834586467,0.91869918699187,0.899343544857768,0.7651515151515151,0.1416666666666666,0.5044837304637458,0.7251700680272108,0.6421299921691465,0.5519125683060109,0.1137295081967213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023494146716895,0.0047333799576327,0.0070106021407193,0.0090694887367715,0.0111741499918659,0.0134866914346786,0.0155697531052894,0.0179875933559156,0.0202659911336288,0.0223729437760864,0.0243715040875284,0.0263554757630161,0.0284915512066768,0.0305498352553542,0.0324197757537623,0.0346866214651893,0.0367517651199867,0.0388951697385207,0.04064043249987,0.0425325690463783,0.0566786815023768,0.0709618646729911,0.0831374113102985,0.0953367984680457,0.1076223724594728,0.1230689465442079,0.1360582485114151,0.1483694378767546,0.1601962502939478,0.1713261571813391,0.1846823549693992,0.197702244696863,0.2096031858291533,0.2211838347139996,0.2316611244466956,0.2422852838882612,0.2527034718269778,0.2625366741982261,0.2720334754604009,0.279752775552249,0.2880368169098772,0.2957548824698865,0.3024559909142533,0.3095734233910565,0.315174530762791,0.321035072817028,0.3267127482719398,0.3327360073204209,0.3383391540551028,0.3432457748987427,0.3432922153916518,0.34309410502572,0.3432440430059041,0.3423941302212722,0.3426650239724502,0.3422853730611995,0.3415712180979991,0.3429445028932141,0.3437398318291576,0.3459852185895027,0.3473771168938455,0.3489620473813485,0.3500661889853123,0.351684562103517,0.3523570808830618,0.3526880037561624,0.3538527275316906,0.354842771254997,0.3571353306873661,0.3598104793756967,0.3625680186565458,0.3650360866078588,0.3685552227391498,0.3699738098906178,0.3694950645406226,0.3743546644255012,0.3761171032357473,0.3796954314720812,0.3833605220228385,0.3906491499227202,0.0,2.317570616035011,58.527667729817125,195.22903659948497,297.7315908681862,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95845,42685,401.5963274036204,6731,68.92378319161146,5256,54.17079659867495,2114,21.607804267306587,77.34109898624328,79.63185800385185,63.34986309044478,65.04428124525693,77.07745617775186,79.37149539105734,63.252246042263934,64.95101386754888,0.2636428084914257,260.3626127945091,0.0976170481808438,93.26737770804527,119.28972,83.5771052124416,124461.07778183524,87200.27670973091,282.69751,177.91270016064956,294264.447806354,184938.4142962148,306.80373,147.43209674534356,316132.0047994157,150802.28903963327,3003.88388,1370.4886316729358,3099358.589389118,1395270.1343112444,1258.76589,554.5686829823376,1298992.4878710418,564267.9484569781,2074.3876,866.805163328846,2123427.554906359,869438.2563412869,0.38062,100000,0,542226,5657.321717356148,0,0.0,0,0.0,23864,248.26542855652357,0,0.0,28338,291.6584068026501,1859499,0,66797,0,0,4754,0,0,64,0.6677447962856696,0,0.0,0,0.0,0,0.0,0.06731,0.1768430455572487,0.3140692319120487,0.02114,0.3315886263969444,0.6684113736030556,24.77719056648261,4.386483071085659,0.3297184170471842,0.2201293759512937,0.2248858447488584,0.2252663622526636,11.139294217135287,5.748684041039829,22.48359051148984,12680.564552015469,59.634862543925216,13.786510298281287,19.72580364884944,13.1384092132657,12.98413938352879,0.5570776255707762,0.7709593777009507,0.7120600115406809,0.577834179357022,0.1005067567567567,0.7229778095919828,0.9164619164619164,0.8733905579399142,0.7142857142857143,0.1229508196721311,0.4970199533557916,0.692,0.6527229676400947,0.5354767184035477,0.0946808510638297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022074831654093,0.0046711452918705,0.0069277505604073,0.0093305175949804,0.0115666863171589,0.0138300903688024,0.0160559104292103,0.0184238714613618,0.0204175433579147,0.0225766193379434,0.0246962899227664,0.0270250866648889,0.0290975945440726,0.031071876864827,0.0330661116148709,0.0348649987614565,0.0369355489147855,0.0389373562384731,0.0408845514950166,0.042877060096554,0.0569900098024902,0.0714173730363619,0.0844751728472658,0.0966779746463193,0.1088996303667898,0.1242764797836833,0.1371408593948639,0.1497740683642549,0.1616473149492017,0.1727974276527331,0.1871495452833234,0.1998961746860906,0.2119413369861822,0.2229582745766788,0.2327945690802865,0.2440221606648199,0.2539558551119245,0.2632792898209926,0.2725023549306005,0.2806056996243013,0.2878300511420174,0.2954540137104887,0.3026139846403256,0.3092484510013063,0.3153489163183983,0.3210881333777268,0.326381934708592,0.3304361105101742,0.3360519910931593,0.341116496520028,0.3407348522615502,0.3401393325256086,0.3398744445228187,0.3401625686425084,0.3404661143231805,0.3397101271264509,0.3391808223527544,0.3402313243483705,0.3413951251352697,0.341747118997537,0.3424148022278863,0.3434526416371382,0.345233822442732,0.34534127843987,0.344631532910562,0.3457063128521034,0.3475036647408812,0.3506604852025911,0.3540129232724833,0.3544561571633924,0.3557163796262367,0.358283913020249,0.3614671912679274,0.3647355934797581,0.3691619899172453,0.3696955166626708,0.3758129451842675,0.3796617077644181,0.3764184887904788,0.3895800933125972,0.0,2.529887879649036,61.38578254911823,192.75338404981005,294.9602878534827,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95631,43149,405.9353138626596,6703,68.81659712854618,5261,54.30247513881482,2123,21.729355543704447,77.31769350596971,79.74075632646081,63.289715480586615,65.0816427284864,77.0539569974068,79.47920068272177,63.19255035315828,64.98827280798744,0.2637365085629142,261.55564373904383,0.0971651274283331,93.36992049895798,118.8165,83.30008102555597,124244.75327038302,87105.73038612581,282.32596,177.44467367215353,294540.2955108699,184867.6046138688,310.36632,149.03659433678567,320220.25284688023,152399.0393686939,3019.22388,1369.7559170758825,3118451.088036306,1393665.8416056165,1290.75548,563.6817739471411,1333235.206156999,572987.8322727047,2091.28282,870.3158585812577,2143965.617843586,874668.3800323138,0.38318,100000,0,540075,5647.488785017411,0,0.0,0,0.0,23804,248.19357739645093,0,0.0,28704,295.793205132227,1859147,0,66653,0,0,4699,0,0,48,0.5019292907111711,0,0.0,0,0.0,0,0.0,0.06703,0.1749308419019782,0.3167238549903028,0.02123,0.3292181069958848,0.6707818930041153,25.234762220488932,4.486955732185837,0.3288348222771336,0.2075651016916936,0.2317049990496103,0.2318950769815624,11.067234210167795,5.593490980444143,22.524273240580296,12831.733934620624,59.280836904745634,12.825203032117146,19.579245224917504,13.550936242212591,13.325452405498387,0.5561680288918457,0.7710622710622711,0.7057803468208093,0.5898277276456112,0.1180327868852459,0.7098248286367098,0.9327731092436976,0.851258581235698,0.7089552238805971,0.147410358565737,0.5050658561296859,0.6925170068027211,0.6566125290023201,0.5562565720294427,0.110423116615067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026643163951697,0.004908124771833,0.0074720812182741,0.0097053831847884,0.012107399757852,0.01420130399348,0.0167506579886968,0.018635444124318,0.0208778950169377,0.0230534257247119,0.0251609128145114,0.0272071071626873,0.0293181747968735,0.0316284635540242,0.0337762440072739,0.0360846079019806,0.0383020198249761,0.0402106619021897,0.0424615192481813,0.0444277579625805,0.058764513465779,0.0727825221354848,0.0863436308442138,0.0995460338526032,0.1121237723096419,0.1271818335875275,0.1402110498294385,0.1526760683487363,0.164536108941924,0.1757642155915018,0.189306093391006,0.2017401291552897,0.2142203633511959,0.2257301488222346,0.2363351846954068,0.2465836993655441,0.2563446387662736,0.2666989514939241,0.2754399909163165,0.2831615986796107,0.2912588749001031,0.2986444408025659,0.3057556513909293,0.3119022762998428,0.3171690375652555,0.3234325467799829,0.3279275669041864,0.333604877614144,0.3384876607216922,0.3438697571160504,0.3436214824103663,0.3435395231602,0.3435825105782792,0.3437879576609405,0.3435865430337613,0.3438841859894491,0.3439274272845497,0.3440600565083119,0.3443572783674306,0.3449216451837193,0.3464119483335514,0.3468740145064648,0.3477119279819955,0.3485057676034382,0.3492417163803636,0.3497607406636845,0.3529445202364711,0.3547589229805886,0.355489406408685,0.3568594779020868,0.3577402989167695,0.3603776604256681,0.3614663796378372,0.3652831919284567,0.3641345427059713,0.3659321024419297,0.3701138811942136,0.3733145502113101,0.3733443708609271,0.3732771822358346,0.0,2.739844003871329,57.20973290785114,198.80010162776645,299.0076286844831,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95704,42884,404.51809746719056,6758,69.48507899356349,5350,55.25369890495696,2164,22.13073643734849,77.34880342590687,79.7056147479038,63.338894218876014,65.07680703555091,77.07369505749517,79.43243545310544,63.237768272225054,64.97907628609275,0.2751083684116935,273.1792947983536,0.1011259466509599,97.73074945816518,117.447,82.31210522257648,122719.00860988046,86006.96441379303,281.86055,177.17820796689347,293845.49235141685,184464.36960460883,309.74856,149.02660153780903,319433.12714202126,152415.00142015686,3067.64972,1402.7626392642344,3169391.1226281035,1429791.2084843528,1261.84529,554.3180941008071,1299225.8944244755,559972.1460026412,2121.41326,892.4766449867493,2172596.7775641563,897238.1176553778,0.38154,100000,0,533850,5578.136754994567,0,0.0,0,0.0,23750,247.47137005767783,0,0.0,28627,295.003343642899,1868658,0,67019,0,0,4763,0,0,54,0.5537908551366715,0,0.0,1,0.0104488840591824,0,0.0,0.06758,0.1771242857891702,0.320213080793134,0.02164,0.3195467422096317,0.6804532577903682,24.8090120549584,4.508157831375159,0.3265420560747663,0.2136448598130841,0.2334579439252336,0.2263551401869158,11.158566132146696,5.771086926829733,23.15601399761884,12801.54308808686,60.4620507211038,13.44438044487289,19.689475422134343,13.98237022678597,13.34582462731058,0.5482242990654206,0.7655293088363955,0.6846021751574127,0.5748598879103283,0.1189099917423616,0.7042151162790697,0.9291338582677166,0.8378995433789954,0.7104377104377104,0.1423076923076923,0.494212380473075,0.6837270341207349,0.6333078686019863,0.532563025210084,0.1125131440588853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189168936639,0.0043993025990349,0.0068692608188321,0.0089903391948313,0.0112758256059866,0.0135898610474881,0.0157684976607173,0.0178013677656425,0.0196515252158806,0.0217184381556726,0.0240350121968718,0.0260994509159952,0.0282527116640106,0.0303298603961619,0.0323905015370015,0.03455295053679,0.036653171948934,0.0387317002313734,0.0406641851566886,0.0427199033071456,0.0580433602071932,0.0716378859236002,0.0849691030980832,0.097242532955992,0.1093672541636342,0.1250925553745583,0.1380532475938836,0.1504540663692789,0.1630466137458733,0.1741471787170135,0.1871465351014208,0.2002943117757171,0.2125127803519763,0.223539577158232,0.2343478356550252,0.2453574436023578,0.2565325706880564,0.2663168916560646,0.275198419457029,0.2832378551787351,0.2906825970176901,0.2983839825877342,0.3059910016575894,0.3121179431859043,0.319782769806461,0.3252156766083313,0.3305109123882184,0.3357926069147989,0.3413141104453274,0.3456824328781582,0.3456439138753402,0.3453861729823546,0.3449229163434278,0.3450501425408448,0.3449620479237982,0.3441031696134206,0.3430351452893898,0.3442752230272561,0.3454900015395405,0.3468329069996243,0.3476484150936322,0.3489163107103306,0.3500356708212682,0.3500056097834623,0.3510928631807752,0.3536001256314288,0.3544463568559954,0.3584738523838147,0.3607992656922968,0.3616085705148705,0.3624247437841812,0.3640086206896551,0.3688161693936477,0.3691842431761786,0.3718107978977544,0.3721940622737147,0.3754705144291091,0.3769470404984423,0.3800508618253744,0.3788771103258735,0.0,2.3809826504924025,60.44218011740715,196.56873234060487,306.33505315052884,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95639,42732,402.53453089220926,6688,68.59126506968914,5206,53.869237444975376,2087,21.497506247451355,77.26744378178137,79.68305811697789,63.28338998351626,65.06952113633425,77.01203715530482,79.42497479328132,63.18964758727063,64.97655136793279,0.2554066264765424,258.0833236965674,0.0937423962456307,92.96976840145987,118.63302,83.10350066606935,124041.59391043404,86892.12138363907,283.78234,179.10926709452332,296133.8052468136,186690.620579722,309.11524,148.8791811697627,318960.2777109757,152486.80634102575,2975.68132,1359.3707676435918,3080582.314746076,1390730.9584664896,1297.25052,574.7608258704117,1336358.1279603508,580927.2454873638,2044.94714,851.87947874091,2107226.0479511498,866536.014158083,0.37971,100000,0,539241,5638.254268656093,0,0.0,0,0.0,23939,249.6889344305148,0,0.0,28571,294.57648030615127,1858486,0,66703,0,0,4795,0,0,57,0.5855351896192976,0,0.0,0,0.0,0,0.0,0.06688,0.1761344183719154,0.3120514354066985,0.02087,0.3188014768531667,0.6811985231468333,24.928637685571186,4.520498251899992,0.3357664233576642,0.2103342297349212,0.2305032654629274,0.2233960814444871,11.457213839540636,5.990088261601688,22.25230857640518,12740.883622895066,59.27630543641227,13.123895900100448,19.89904713454228,13.5221159174769,12.731246484292626,0.5647330003841721,0.7789954337899543,0.6973684210526315,0.5975,0.1298366294067068,0.7427953890489913,0.9117647058823528,0.8900634249471459,0.7392739273927392,0.1890756302521008,0.5,0.710124826629681,0.6258823529411764,0.5496098104793757,0.1145945945945945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0043601703508416,0.0066906270305393,0.0091354361434029,0.0113022512945197,0.0133111989245121,0.0156616432489752,0.0179481158562108,0.0199081790202353,0.0219557403406007,0.0239987692938823,0.026225500267083,0.0281458316187968,0.0302830470577325,0.0326686071716108,0.0347255246562596,0.0367562529128476,0.0390044422302486,0.0412939463282712,0.0434315738993546,0.0583249728283588,0.0725776046248586,0.0858849966397849,0.0984680178994472,0.110564539965376,0.1266001037618982,0.1397561700862325,0.1520321391274695,0.1633222804578029,0.1746348797250859,0.1882973331464127,0.2010117203578933,0.212163427004201,0.2236302156856308,0.2340008587187476,0.2441312993674321,0.2549275653474407,0.2639248340272307,0.2735613389653449,0.2816433205713106,0.2891747623403541,0.2961242849288146,0.3033980582524271,0.3101119282123877,0.3162689435403439,0.3222899745722961,0.3281805882647692,0.3325354587354536,0.3376202452874219,0.3426418088060293,0.3425674672282748,0.3423026025584473,0.3423110584116767,0.3424335956179629,0.342685072001431,0.3416106145766147,0.3404708199637831,0.3416226706797585,0.3428595890410958,0.3428065214667931,0.3441994247363374,0.3449701789264413,0.3465223525447998,0.3486310592459605,0.3504240461980815,0.3524815815002228,0.3537049217833958,0.355335880996747,0.3564436905897735,0.3578669017188188,0.3600184672206833,0.3613586046762784,0.3620193230532983,0.3617465224111282,0.3616050204430921,0.3618175244064119,0.3584758942457232,0.3621900826446281,0.3629862700228833,0.3622078968573731,0.0,2.0568924921314875,61.51416809282424,196.05488545471587,286.87010987506346,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95847,42505,400.44028503761206,6609,67.89988210376956,5099,52.71943827141173,1992,20.511857439460808,77.40182060844235,79.71503228132518,63.36325590393732,65.07552436245491,77.15210288011704,79.46369600707379,63.2715070750683,64.98496416659428,0.249717728325308,251.33627425138627,0.0917488288690222,90.56019586063258,118.33096,82.88192320959753,123458.17813807422,86473.15326467968,279.34289,175.97494690668546,290959.6857491627,183112.8641550445,301.09109,144.383176473303,311162.8532974428,148347.98993867726,2930.05764,1327.7129027884362,3031210.4082548227,1359486.9978073768,1217.12587,534.3814815790215,1258996.671778981,546669.3288042624,1958.29204,818.1451786927888,2018030.3608876648,832395.7638363037,0.37867,100000,0,537868,5611.735369912465,0,0.0,0,0.0,23574,245.44325852661007,0,0.0,27850,287.5207361732762,1868491,0,67124,0,0,4622,0,0,55,0.5738312101578558,0,0.0,0,0.0,0,0.0,0.06609,0.17453191433174,0.3014071720381298,0.01992,0.3132026520611127,0.6867973479388872,25.11445205414292,4.416280738699114,0.3181015885467739,0.2188664444008629,0.2386742498529123,0.2243577171994508,10.999941670505423,5.601894995045617,21.211014028965412,12617.012362850355,57.5179745407403,13.159832430602444,18.304579629809712,13.50422782325162,12.549334657076534,0.5493233967444597,0.7867383512544803,0.6787916152897657,0.5677896466721446,0.1145104895104895,0.7149569303054033,0.9423076923076924,0.8405797101449275,0.7307692307692307,0.1338912133891213,0.4939822082679225,0.711436170212766,0.6233443708609272,0.5235109717868338,0.1093922651933701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024605601571518,0.004672186806393,0.0067463377023901,0.0090699493179763,0.0114781264932239,0.0136304409788672,0.0159404780104978,0.0180547050418452,0.0199521638694114,0.0219338198417653,0.0241914817282558,0.0263681898427556,0.0284313423170618,0.0303117664017132,0.0323232739949256,0.0342005744869913,0.0362177828382155,0.038209493789013,0.0402779364568294,0.0423032094243017,0.056858001001168,0.0708514085611247,0.0844955310833324,0.0966881295757486,0.1084747190715406,0.1239821298437945,0.1368687564223439,0.1492154945148397,0.1615295950820721,0.1721153434165988,0.1852971228824953,0.1975147225673996,0.20972122634335,0.2206889770231735,0.2305755870196112,0.2413071634950682,0.2514275517487508,0.2611707031864894,0.270315335753176,0.2790564590891923,0.2869466672834081,0.2940942672776583,0.3014557194044677,0.3075946182323553,0.3134676332374048,0.3190150040651408,0.32421273880569,0.3290261862671533,0.3344551738421311,0.3391851431736946,0.3392184304015502,0.3391189536371013,0.3390904100333601,0.3399760458303871,0.3398465898132075,0.3392411650366561,0.3386060932013034,0.3395802590588621,0.3402693614188416,0.3412255522473212,0.3423873393568662,0.3432405762778764,0.3438761635812153,0.3452380952380952,0.3465505661101516,0.349255050833355,0.3508039315947957,0.3538962054618825,0.3557762932391312,0.3575985734099465,0.3588843822631363,0.3602831594634873,0.3627024642339446,0.364825802525483,0.3700111898545319,0.3718930380492402,0.3699969446990528,0.3757096512570965,0.3826039086154693,0.3832886163280951,0.0,1.772521592453529,56.46275165867859,196.934800145836,284.3929764214409,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95696,42646,402.3679150643705,6681,68.66535696371844,5200,53.74310316000669,2064,21.21300785821769,77.32145341825886,79.70967860713903,63.3143933609397,65.08045862282538,77.0667753376256,79.45459780082619,63.22107543979394,64.98944262107243,0.2546780806332549,255.0808063128329,0.0933179211457542,91.01600175294776,119.08314,83.40864263370098,124438.76442066544,87159.78644217203,281.19692,177.11158127257772,293241.1699548571,184474.80027647727,303.89828,145.7039725555261,314014.57741180406,149494.80464515596,2986.60852,1353.3533235770003,3087885.2198628997,1381198.2147393818,1268.88197,557.6366882587319,1310745.6738003676,567511.5974113146,2033.3178,845.638217028147,2090888.6055843504,854194.7271965068,0.37952,100000,0,541287,5656.307473666611,0,0.0,0,0.0,23781,247.8682494566126,0,0.0,28051,289.55233238588863,1861889,0,66743,0,0,4667,0,0,54,0.5642869085437218,0,0.0,0,0.0,0,0.0,0.06681,0.1760381534569983,0.3089357880556803,0.02064,0.3262138687170725,0.6737861312829275,24.88531424437019,4.45931304080796,0.3234615384615384,0.2142307692307692,0.2319230769230769,0.2303846153846153,10.987401050365456,5.524648838910677,21.85120344452551,12636.01040003072,58.64721077387588,13.191276931336487,18.995705880313253,13.255694139296912,13.204533822929235,0.5461538461538461,0.7495511669658886,0.6938168846611177,0.5762852404643449,0.1193656093489148,0.724373576309795,0.9013698630136986,0.8713968957871396,0.7509881422924901,0.1693548387096774,0.4857069276332732,0.6755674232309746,0.628757108042242,0.5299055613850997,0.1063157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365566993596,0.0043403305952743,0.0065981809322722,0.008709261084745,0.0107235878235389,0.0131712981827071,0.0153482158336477,0.0176638758423524,0.0196587575010989,0.0217208835752451,0.0236315730118209,0.0259706918329413,0.0281758237236526,0.0300579106815324,0.0319570602807597,0.0341187539417499,0.0361282303589,0.0384607401564997,0.0403298771800284,0.0423771209405094,0.0569969292473522,0.0699682818829884,0.0834251650346861,0.0953929368186218,0.1074360110569517,0.1230684560348842,0.1357277802543038,0.1477777422756174,0.1593408354974191,0.170660031317703,0.1852047356911243,0.1972180125568305,0.2097518000478562,0.2202531368623718,0.231133943500836,0.2416145285421626,0.2521420921099607,0.2609839456761254,0.2698877169105138,0.2780100095055945,0.2869304708916984,0.2938493919550982,0.3021494176687813,0.3087866911174236,0.3152548962433785,0.3209944955484133,0.3269663764635244,0.3319560629560883,0.3365057608006931,0.3413270754505543,0.3412953667693881,0.3419001937851321,0.3421522959793974,0.3424829617650456,0.3430597258970776,0.3418010670264303,0.3404268804766356,0.3417615456651387,0.3418465904234405,0.3431384813338813,0.3434586014746993,0.3454426670890085,0.3462095302041587,0.3473960436011304,0.3489568241089539,0.3491409836065574,0.350947187141217,0.3539663461538461,0.3553867891204521,0.3588331537571331,0.3602819996337667,0.3626473740621651,0.3673156718799872,0.3721254355400696,0.3684962835906232,0.3704866562009419,0.3750972762645914,0.3795876288659793,0.3879598662207358,0.3882854926299457,0.0,2.266112123556884,57.93438721600694,195.5791048596752,293.52088264472866,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95726,42404,400.6539498150972,6754,69.54223512943192,5272,54.708229739046864,2112,21.79136284812904,77.3455376358958,79.73135117392815,63.32130932583449,65.086863592586,77.09057394990583,79.47390498757821,63.22756031543804,64.99408686656035,0.2549636859899635,257.446186349938,0.0937490103964506,92.77672602564736,118.26012,82.81269531569554,123540.22940475942,86510.13864122133,280.57836,175.9005646248905,292706.6418736811,183355.16434917416,304.18473,144.95570428464632,315741.1048200071,149906.33966700145,3026.8976,1363.6800385324389,3142013.413283748,1404536.0701715725,1256.62203,543.5658967426834,1303300.0647681924,558418.9999287645,2079.26268,865.1972854177915,2147119.027223534,882165.9406270545,0.37747,100000,0,537546,5615.46497294361,0,0.0,0,0.0,23677,246.94440381923403,0,0.0,28122,291.7180285397907,1868783,0,66978,0,0,4588,0,0,50,0.5223241334642625,0,0.0,0,0.0,0,0.0,0.06754,0.1789281267385487,0.3127035830618892,0.02112,0.3289027149321267,0.6710972850678733,25.08257392039855,4.521848085405993,0.3254931714719272,0.2175644916540212,0.2245827010622154,0.2323596358118361,11.087837832380131,5.534310837127557,22.447521633832544,12628.80330123233,59.52126183016455,13.43763886550157,19.533208417145023,13.206645299560464,13.343769247957487,0.5515933232169955,0.7759372275501307,0.6940559440559441,0.5869932432432432,0.1077551020408163,0.714968152866242,0.923943661971831,0.8313253012048193,0.7433962264150943,0.1266968325791855,0.5004980079681275,0.7095959595959596,0.6502690238278247,0.5418933623503809,0.1035856573705179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107417501697,0.0042091383944419,0.006406416569369,0.0085875729181487,0.0107227150647025,0.0129048686086779,0.0149191327935387,0.0170542160677266,0.0188870255235602,0.0209519518289435,0.0230757397056561,0.0251229958607656,0.0272071756997233,0.029357212043773,0.0312177502579979,0.033361591266231,0.0354575400360479,0.0375075243373393,0.0396822095586706,0.041633673682017,0.0566857429299469,0.0705577009617699,0.0833394553182557,0.0965647851017938,0.1087788876348792,0.1245491374112818,0.1374831541751117,0.1495670511550627,0.1615017050252814,0.1731322455989695,0.1859174059741071,0.198795637434881,0.2106351711750939,0.2215984942989079,0.2311519621333039,0.242013938903724,0.2519755346220813,0.2617030611900502,0.2711554824437007,0.2799056754962339,0.2876414373973205,0.2954813818904542,0.3024633687720999,0.3086979946123915,0.3147723550605961,0.320612659162207,0.3253989079231797,0.3307692307692307,0.3362212552776666,0.3410540714727275,0.3415898076174366,0.3409527204914436,0.3407245032740353,0.3405512946196875,0.3406103182013546,0.3397967759187104,0.3395671160053161,0.3401436578510495,0.3411477035669095,0.3414782484258729,0.3419148736258574,0.3433054932846628,0.3440873792537408,0.3457252404762438,0.3469560179597354,0.3489212400502723,0.3500357295983993,0.3541410511050159,0.3556087599464826,0.357919904363419,0.3597391344005108,0.3621285418106427,0.3626512096774194,0.3638931297709923,0.3692540991375225,0.3674329040799133,0.3679157633942397,0.3700205338809035,0.3680593732820231,0.365011636927851,0.0,1.3609479353588658,56.06348137586284,211.929871020094,295.6538938602786,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95612,42564,400.1798937371878,6639,68.33870225494708,5220,54.03087478559177,2070,21.283939254486885,77.23812690061078,79.67018773049968,63.25655152000609,65.05460332137294,76.98437942563297,79.41442364218186,63.16348246105019,64.96284247824548,0.2537474749778141,255.76408831781805,0.0930690589559049,91.76084312746012,117.49034,82.29268004641243,122882.420616659,86069.40556249469,279.80154,176.5336014417045,292092.09095092665,184085.792866194,304.70222,146.91746055673653,314956.2502614734,150789.09387592072,2993.12504,1361.6396389831382,3101289.545245366,1395016.830259931,1259.29715,549.0504494103277,1305252.0499518889,562409.4145194404,2036.4951,846.5536286228665,2097299.502154541,859211.3701438948,0.37906,100000,0,534047,5585.5645734845,0,0.0,0,0.0,23666,246.94599004309083,0,0.0,28141,290.5806802493411,1862515,0,66878,0,0,4575,0,0,49,0.5020290340124671,0,0.0,0,0.0,0,0.0,0.06639,0.1751437767108109,0.3117939448712155,0.0207,0.3141795311606632,0.6858204688393368,25.02850516785483,4.484695761918082,0.325095785440613,0.2183908045977011,0.2298850574712643,0.2266283524904214,11.26109177421129,5.822291192045582,21.894358906547687,12765.921881703587,58.90494912524721,13.405239094355746,19.388579180033457,13.253058837813848,12.858072013044174,0.553639846743295,0.7789473684210526,0.6841484973482617,0.5841666666666666,0.1183431952662721,0.7249451353328457,0.93573264781491,0.854586129753915,0.723404255319149,0.1646586345381526,0.4928627043861925,0.6977363515312917,0.6232,0.5413943355119826,0.1059957173447537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0046250748024707,0.0068739338802696,0.0091987436853928,0.0116430548770558,0.0140285461047098,0.0161966443979805,0.0183773954970784,0.0207127222142667,0.0228611227761105,0.0251580070590166,0.0273008435827091,0.0293633313435293,0.0316691236353514,0.033892704084267,0.0361629037932247,0.0381489467573395,0.0403980595635056,0.0423454464071949,0.0441994137344697,0.0586341351229863,0.0729936185596177,0.0859955247870071,0.0984887578326575,0.1106464761663393,0.1266536037705873,0.1394046910852383,0.1513691548440048,0.1629307854445074,0.1740442763998839,0.1873435476909797,0.1998395472630882,0.2122239051552233,0.2233313974512102,0.2331676457297785,0.2440212626649354,0.2542590914683938,0.2634896649714137,0.2722454735692839,0.2798392190640252,0.2878031797609376,0.2951242684056815,0.3024710406380554,0.3095301077337437,0.3158908350702697,0.3220582053754667,0.3280225988700564,0.332231383861333,0.3370536874382828,0.3415987079008684,0.3420928190231709,0.342183746168503,0.3420673484377649,0.3425725924529943,0.3432137750238322,0.342764927380312,0.3423913043478261,0.3433544303797468,0.3444043940954343,0.3464854884104476,0.3475146638592269,0.3489687754332334,0.3492263972213451,0.3512353033743228,0.3518478234597443,0.353687300172965,0.3566305158661846,0.3594392759951901,0.3606117331261258,0.3621711966254128,0.3630199743448781,0.3654657058980518,0.3691169028340081,0.3706619782907812,0.3736584447373376,0.3768030267202648,0.3732928679817905,0.3739935587761674,0.3764446890478811,0.3789152024446142,0.0,2.1988243369753246,60.33953465224285,189.7631410999532,294.9924595547915,fqhc4_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95717,42914,404.8288182872426,6833,70.16517442042688,5330,55.07903507213975,2079,21.38596069663696,77.33641368994157,79.71142178484101,63.332022412709286,65.08953978934765,77.07705466641168,79.45182103115717,63.23609200259587,64.99580401911079,0.2593590235298819,259.6007536838414,0.0959304101134179,93.73577023686153,118.23416,82.87446436885834,123524.72392573942,86582.80594759378,280.99665,176.76364175118528,292992.5300625803,184095.46031654283,313.75227,151.14639128092458,323444.1217338613,154659.84047659463,3491.04897,1583.5522736248608,3611905.586259494,1619354.1262762658,1280.66617,561.6052713183503,1324406.4481753502,573295.6866358778,2045.34168,862.6215372465894,2105840.63437007,874060.0160367375,0.38031,100000,0,537428,5614.760178442701,0,0.0,0,0.0,23712,247.11388781512167,0,0.0,28945,298.06617424282,1865902,0,66977,0,0,4601,0,0,55,0.5746105707450088,0,0.0,0,0.0,0,0.0,0.06833,0.179669217217533,0.3042587443289916,0.02079,0.3236363636363636,0.6763636363636364,24.867367194590084,4.359469337082597,0.3264540337711069,0.222701688555347,0.224765478424015,0.2260787992495309,11.194359935456662,5.911105187186099,22.428239661724287,12773.393696503252,60.319658166369,14.094891968534558,19.61391476466275,13.331965060563444,13.278886372608252,0.550281425891182,0.7700084245998315,0.6925287356321839,0.5667779632721202,0.1120331950207468,0.7084569732937686,0.897172236503856,0.8680555555555556,0.717948717948718,0.1377952755905512,0.496735308890005,0.7080200501253133,0.6345565749235474,0.5221621621621622,0.1051524710830704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.0044828040852341,0.0068632925529214,0.00922839255224,0.0117392144695482,0.0142077281893548,0.0162657175781927,0.0183888094751888,0.020477850592457,0.0226235079745306,0.0247860181436112,0.0269088221102019,0.0289063705074811,0.030971263775878,0.0330602389747611,0.0350494578755335,0.037027066205554,0.0387887212897068,0.0406888523976802,0.042791220924782,0.0577872918080718,0.0714390340873422,0.0847971307822184,0.0980237569641543,0.1098545531197301,0.1252893120977372,0.1389760440958236,0.1519321154377831,0.1639165795034901,0.1746703373217786,0.1879499402769856,0.2010099153357914,0.2135561543810848,0.2246810555749737,0.235496418054762,0.2457872622733304,0.2556437055690504,0.265436400008991,0.2746734397677794,0.28287230878349,0.2907804697614203,0.2978295913837815,0.3041407671763844,0.31042903658303,0.3169811320754717,0.3222256416569213,0.3279610897860688,0.333621533649506,0.3386359812055865,0.3425965041981306,0.3428917935588195,0.3426408538098783,0.3427648104767012,0.3433590129749768,0.3441831351158008,0.3427913050157462,0.3417132511752001,0.3423488716850601,0.3430389080371075,0.3444165621079046,0.3455717857612844,0.3476373582811385,0.3482530689329556,0.3490536489328381,0.348325704649482,0.3511607865667354,0.3518252783836528,0.3533882203926535,0.3542776503792556,0.3560839160839161,0.3595857307249712,0.3598837522200097,0.3610468106995885,0.3639742894757221,0.3672224868985231,0.3702761627906977,0.3776810693192415,0.3866011063306699,0.3827092511013216,0.3782857142857143,0.0,2.355442865316918,59.0230870556633,206.5688647165861,296.6578284394704,fqhc4_80Compliance_baseline_low_initial_treat_cost,0 -100000,95610,42935,405.1772827110135,6837,70.31691245685597,5306,54.9210333647108,2165,22.257086078862045,77.26635035352784,79.7044694628387,63.26822878755484,65.0719527097998,76.99522196966502,79.43405027507033,63.16797778144729,64.97512522295321,0.2711283838628162,270.4191877683684,0.1002510061075483,96.8274868465926,117.38166,82.23401814065527,122771.32099152807,86009.85058116858,281.65404,176.9931136893448,294035.75985775545,184569.2539371873,304.69278,146.28935236904624,315391.8418575463,150474.87656412454,3522.69874,1590.6148582557205,3649326.1165150087,1628529.2524377378,1280.14435,564.0007021168808,1324337.9458215667,575312.0616220908,2131.96754,892.341456877533,2193898.0023010145,901353.8491533358,0.3821,100000,0,533553,5580.514590524004,0,0.0,0,0.0,23756,247.8924798661228,0,0.0,28164,291.27706306871664,1866047,0,66936,0,0,4654,0,0,56,0.5752536345570547,0,0.0,1,0.0104591569919464,0,0.0,0.06837,0.1789322166971997,0.3166593535176247,0.02165,0.324106273473362,0.6758937265266379,24.968349485097573,4.529737774487864,0.3224651338107802,0.2208820203543158,0.2191858273652469,0.2374670184696569,11.08783877198156,5.559134480421291,23.167864992402997,12808.51706249471,59.90187381753904,13.773145750528494,19.318304279105877,12.98240704174979,13.828016746154878,0.5346777233320769,0.7465870307167235,0.6884862653419053,0.5649183147033534,0.1007936507936508,0.6900149031296572,0.9015151515151516,0.8480392156862745,0.6666666666666666,0.13671875,0.4820887991927346,0.6675257731958762,0.6385264773599386,0.5323496027241771,0.0916334661354581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0048085214303829,0.0068652441934861,0.0089677891654465,0.0115123877771218,0.0137998511980594,0.016278167864141,0.018495243350398,0.0205553736596545,0.0227687263039245,0.0248470791083377,0.0269309047550521,0.0290705454844919,0.0310444375708835,0.0329700976088416,0.0351813911135945,0.0375115312457891,0.0392916493560448,0.040914247650371,0.0429495202336253,0.058148895463717,0.0725401632730054,0.0854342619437791,0.0979943961067689,0.1105125848939024,0.1256753034893328,0.1390111174882554,0.1509520507760414,0.1624173142380065,0.173765418833541,0.1874460648947186,0.2003815759520428,0.2120842499618827,0.2230682428213022,0.2337147014086369,0.2451381724187661,0.2551479871733276,0.2644531293995742,0.2740712962647302,0.2824166494573323,0.291187339983086,0.2987910594630055,0.3056724058252657,0.3124617654467595,0.319388028117627,0.3248962860529435,0.3307585238316174,0.33591220780545,0.3401206147461254,0.344503614043897,0.3445416672284316,0.3436621658859189,0.3443406872425661,0.3437291962140728,0.3446442929037253,0.3441363232000982,0.3435179897201599,0.3443170964660936,0.345372924626904,0.3460945345000717,0.3471233186390867,0.3496900826446281,0.3512403655814345,0.3522214489369822,0.3521572990229273,0.3540765216479165,0.3546044321965783,0.3578837187172899,0.3603906443508722,0.3635417500600432,0.3641618497109826,0.3658614964383268,0.3663644489848039,0.3702287156735256,0.3711194731890875,0.3739037686655606,0.3747513389441469,0.3758648758648759,0.3768356885563868,0.3765290519877676,0.0,2.276701108197634,59.070528033789486,198.2130817249899,302.6278246988678,fqhc4_80Compliance_baseline_low_initial_treat_cost,1 -100000,95718,42901,404.8872730311958,6655,68.3988382540379,5183,53.69940867966317,2066,21.24992164483169,77.34534288058313,79.71442798383032,63.32656324425341,65.07459988928014,77.08795208990867,79.45551557606352,63.23214779983297,64.98165958692326,0.2573907906744637,258.9124077668004,0.0944154444204343,92.94030235687956,119.67912,83.87050194065974,125033.0345389582,87622.4972739294,281.94498,177.6382673391102,294133.52765415073,185160.59397303555,302.21316,145.42193723503246,313294.7721431706,149936.8928303357,3396.50933,1538.3453449692186,3521388.1715037925,1580098.1476516607,1256.67621,552.3658077911517,1302071.4703608516,566267.9714673378,2026.08088,852.3243266823359,2086097.6409870663,865442.862425381,0.38158,100000,0,543996,5683.319751770827,0,0.0,0,0.0,23799,248.17693641739277,0,0.0,27923,289.2454919659834,1856612,0,66592,0,0,4803,0,0,55,0.5746045675839445,0,0.0,0,0.0,0,0.0,0.06655,0.1744064154305781,0.3104432757325319,0.02066,0.32693401592719,0.67306598407281,25.149478576550795,4.419177335434912,0.3337835230561451,0.2203357129075824,0.2182133899286127,0.2276673741076596,11.296031387141324,5.896251161186866,22.16480918370592,12770.651736466936,58.72932306144542,13.469828065934433,19.578003401044224,12.513169961900577,13.16832163256619,0.5606791433532703,0.7889667250437828,0.7017341040462428,0.5694076038903625,0.1245762711864406,0.7134099616858237,0.9191374663072776,0.8631346578366446,0.7276785714285714,0.1400778210116731,0.5092831356369263,0.7263294422827496,0.6444792482380579,0.5303197353914002,0.1202600216684723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0044898952019946,0.0068381965017653,0.0091915498679666,0.0113689519819398,0.0136022561826123,0.0158812676472686,0.0179353429355981,0.0201684623719665,0.022294786623128,0.0245115125171713,0.0265454918874512,0.0284300716923298,0.0305871202365376,0.0327454359694114,0.0347843165631234,0.0368790066177155,0.0387401411374014,0.0407365433202674,0.0423292553302348,0.0572183466310205,0.0707169021454735,0.0842462016284731,0.0975486586007364,0.1100067527644129,0.1260542439602535,0.1394724271535481,0.1518930720485649,0.1631990083245172,0.1741294065915209,0.1876791139649637,0.2008791779902337,0.2129768666623142,0.2242170138698836,0.2341020727328795,0.2442350332594235,0.2539461052443571,0.2639728139171139,0.2728789891352474,0.2814379489294429,0.2897127055202657,0.2972378791776785,0.3044111207110817,0.3114911261039941,0.317748833592535,0.3231596075144223,0.3294152991099928,0.3341090002797487,0.3396280215151319,0.3438264018290184,0.3437533729087965,0.343972755725296,0.3441117031049054,0.3442285681169499,0.3443333680964229,0.3432785425971116,0.3424214564245633,0.3443290839794979,0.3449029416283953,0.3458716415245916,0.3468287110728263,0.348463590554293,0.3476893399312253,0.3484325245548728,0.3503633773571238,0.3523217225430505,0.3524121246620179,0.3553651570787434,0.3576936558009113,0.3589164785553047,0.3603246249943008,0.363235372269756,0.3684210526315789,0.3725400457665904,0.3742591024555461,0.376229411067662,0.3805309734513274,0.3853914447134786,0.3905992303463441,0.3945525291828793,0.0,1.7286487998787687,57.91252965946542,206.99321592581703,281.2751797430375,fqhc4_80Compliance_baseline_low_initial_treat_cost,2 -100000,95666,42520,400.16306733844834,6698,68.73915497668973,5260,54.42895072439529,2120,21.81548303472498,77.2498286400838,79.64887123222375,63.26585613190741,65.0389721612541,76.99282347028277,79.38990479253508,63.17225845846341,64.94682023909034,0.2570051698010331,258.9664396886775,0.0935976734440018,92.151922163751,118.90252,83.20990656228982,124289.21455898648,86979.60253620912,278.73605,174.39620914775494,290813.4551460289,181746.6593646175,300.68059,144.42208253643952,310535.66575376835,148069.09907131604,3465.77969,1551.636077458087,3589105.282963644,1588244.357930808,1237.20415,541.600718473828,1278321.09631426,551204.4284007155,2086.63306,859.8779268867813,2149237.785629168,872779.4935129111,0.37978,100000,0,540466,5649.509752681203,0,0.0,0,0.0,23576,245.86582484895365,0,0.0,27833,287.28074760102857,1858886,0,66830,0,0,4663,0,0,46,0.4599335187004787,0,0.0,0,0.0,0,0.0,0.06698,0.1763652641002685,0.3165123917587339,0.0212,0.3197375926982316,0.6802624073017683,25.025194581871336,4.52550410261734,0.3307984790874524,0.2123574144486692,0.2249049429657794,0.2319391634980988,11.005565161211958,5.50874200059155,22.452533593745912,12755.569597621205,59.19843825893306,13.238533373648,19.677475423501026,13.079229778683498,13.203199683100523,0.5427756653992395,0.7681289167412713,0.7040229885057471,0.5469146238377007,0.1024590163934426,0.7174578866768759,0.9237057220708448,0.8732718894009217,0.6992481203007519,0.1380753138075313,0.485078401618614,0.692,0.6477794793261868,0.5027262813522355,0.0937818552497451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024616070343206,0.0048272435019826,0.0071152343155266,0.0094289778500304,0.0119518670342077,0.0142790214490864,0.0163559978790227,0.0185531219686526,0.0205052157905502,0.0227875585051361,0.025027437867334,0.0272829994863893,0.0293049338889746,0.0314464760569767,0.0333164703331647,0.0354228505827963,0.0375221495704796,0.0394422641666147,0.0413554172995692,0.0433118893951558,0.0572876397450632,0.0710613121105817,0.084218369574343,0.0964436026936026,0.108363935671774,0.1242525901389521,0.1377040128274558,0.1501960700737394,0.1617389071926746,0.1727823490235675,0.1861466256675837,0.1990522354880336,0.2112046406140963,0.2227766749651791,0.233323768320678,0.2441921183907918,0.2549752635938304,0.264391025279473,0.2731163214204416,0.2814697366606921,0.2895033270237943,0.297317296624304,0.3046537890044576,0.3107921113744931,0.3173877531117044,0.3242130001855402,0.3294526913319769,0.3344533735355368,0.339034819792303,0.3434449139632539,0.3433449128830375,0.3428508311702656,0.3436412997369983,0.3442442181016221,0.3445163792589056,0.3435153190509099,0.341814141734783,0.3426095266340435,0.3444951452979723,0.346084802355222,0.3470152768097651,0.3471289489370157,0.347790404040404,0.3479689434004726,0.3501791941108098,0.3496887586964481,0.3504080817304948,0.3523273721595373,0.3540577523595663,0.355568814638027,0.3609251923689842,0.3630677903217257,0.3655575822378766,0.3669250645994832,0.36727613689639,0.3684769775678866,0.3725910064239828,0.3718788374948833,0.3734107241569928,0.3783371472158657,0.0,2.146663918050604,57.7037604498109,196.50305609155336,301.7021392533524,fqhc4_80Compliance_baseline_low_initial_treat_cost,3 -100000,95749,42402,398.8135646325288,6783,69.62997002579662,5330,55.11284713156274,2138,22.015895727370523,77.32698317968122,79.68584377221362,63.31555014592704,65.06101607465604,77.06267660886698,79.4196910633751,63.219527107012894,64.9659825395069,0.2643065708142416,266.1527088385185,0.0960230389141472,95.0335351491418,118.32634,82.91051665099029,123579.71362625198,86591.52226236336,281.01314,176.38147399560577,292934.35962777684,183657.32696488296,304.98695,146.69482451429113,314229.1721062361,149943.3280808667,3519.40191,1588.082916868879,3643615.703558262,1626854.1980367762,1303.62157,574.0171807469014,1348549.060564601,586554.3450551981,2102.18686,869.0434272968402,2168189.934098528,886570.3307246921,0.37733,100000,0,537847,5617.259710284181,0,0.0,0,0.0,23679,246.7284253621448,0,0.0,28298,291.2615275355356,1862967,0,66854,0,0,4707,0,0,54,0.5639745584810285,0,0.0,0,0.0,0,0.0,0.06783,0.1797630721119444,0.3151997641161728,0.02138,0.3201735965280694,0.6798264034719306,24.898308882497297,4.543712899036089,0.3279549718574109,0.2138836772983114,0.2288930581613508,0.2292682926829268,11.22127162040838,5.641098132613452,22.81890202835182,12595.68605135591,60.31421844253499,13.379298220148833,19.902724538846883,13.621876769369766,13.410318914169492,0.5566604127579737,0.7640350877192983,0.7088100686498856,0.5737704918032787,0.1284779050736497,0.7248716067498165,0.9202127659574468,0.852017937219731,0.7624113475177305,0.1814671814671814,0.4988656415427275,0.68717277486911,0.6597542242703534,0.5170575692963753,0.1142263759086189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795197811661,0.0047656709456307,0.0067900858656598,0.009051934330299,0.0112789219425375,0.0136041953057379,0.0155708284047803,0.0179960394422554,0.0202056334573402,0.0225483874269454,0.0248741941765483,0.0268536292433558,0.0290383923523667,0.0312715590473346,0.033256999030348,0.0352865807664886,0.0372490760200014,0.0391975852876806,0.0413951506459223,0.0432413850577107,0.0570372767414428,0.0709368984852288,0.0838470247829915,0.0968949061324027,0.1087068792883567,0.123674500724201,0.1366094720990901,0.1484202009879066,0.1593886929571444,0.1703333261788757,0.1836404784998383,0.1962381019415898,0.2078577723617926,0.2188443530389883,0.2292274333263623,0.2402580130336481,0.2497458980688253,0.2590761677401919,0.2681727318159102,0.2763382573717324,0.284422366577506,0.2922307584203869,0.299625468164794,0.3071373697604072,0.313575200136263,0.319934838144368,0.3253046792717789,0.3309751434034417,0.334842626949324,0.3399659122438463,0.3404005822730213,0.3401989419155737,0.3403133240266791,0.3395207413306305,0.3395855662736691,0.3388203860387267,0.338110883608717,0.3388327795506135,0.3406156901688182,0.3411344350156319,0.3428512466465302,0.3432090941498,0.3426635238656452,0.343850914962325,0.3461028152365329,0.3468218676432121,0.3487887098617301,0.3517882464156294,0.3556461819715933,0.3581081081081081,0.3609162947445122,0.3601913366994419,0.3634244676830036,0.3663494480395889,0.3682378398720481,0.3706517867743084,0.3641396278640627,0.3640065146579804,0.3720346078704996,0.378988326848249,0.0,2.1129582279447727,60.32998770629203,200.22892469702745,300.84513452087907,fqhc4_80Compliance_baseline_low_initial_treat_cost,4 -100000,95761,42500,400.215118889736,6793,69.83009784776684,5300,54.80310355990435,2185,22.493499441317446,77.39144353273707,79.73122402322437,63.36142006586866,65.08755525610874,77.12563619536527,79.4643909293193,63.26382230764533,64.99223718420495,0.2658073373717968,266.8330939050776,0.0975977582233298,95.31807190379028,117.91956,82.57727825397866,123139.44089974,86232.68162819798,282.37773,177.4636446555558,294337.3607209616,184779.100735744,302.29522,144.91061005153284,312254.7905723624,148644.8032434826,3521.03551,1588.1535078897712,3644311.431584884,1625867.595252524,1249.24797,544.830463610041,1292286.703355228,556687.1310972533,2152.8273,899.1439885579761,2218335.4601560137,912209.9136942514,0.37928,100000,0,535998,5597.247313624544,0,0.0,0,0.0,23816,248.1385950439114,0,0.0,27919,288.1026722778584,1870329,0,67056,0,0,4615,0,0,67,0.6996585248692057,0,0.0,0,0.0,0,0.0,0.06793,0.1791025100189833,0.3216546444869719,0.02185,0.3134286515278945,0.6865713484721054,24.908054031191828,4.472848756961899,0.3192452830188679,0.2073584905660377,0.2360377358490566,0.2373584905660377,11.00199999197726,5.515909851892624,23.297435901939487,12674.578753859903,59.81171870731353,12.973723562877783,19.01997062717045,13.866756332554608,13.951268184710688,0.5384905660377358,0.7779799818016379,0.692080378250591,0.5523581135091926,0.1089030206677265,0.7041053446940356,0.9116809116809116,0.8843373493975903,0.7038461538461539,0.1471698113207547,0.4851583936143677,0.7152406417112299,0.6296006264682851,0.5126135216952573,0.0986908358509567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019945731410983,0.0042461769206603,0.0066049796067449,0.0089070799605935,0.0113166109139713,0.0133539614037944,0.0154167515793764,0.0177015528393902,0.0200022474435329,0.0219980355242694,0.0242622950819672,0.026263952724885,0.0284419601113839,0.0305366295465305,0.0326986712299112,0.0349458200336752,0.0368342613483471,0.038851263755069,0.0408303275365633,0.0428034209402377,0.0574100749462432,0.071079534158566,0.0847653217515368,0.0972277727530866,0.1089963938505662,0.1245928683219829,0.1381742210533013,0.1499425507468403,0.1619731094949754,0.1729930215356909,0.1867807739921416,0.1990439315610737,0.2115428509320145,0.2224225142844657,0.2329339342640431,0.2431167279004913,0.2534779506844428,0.2628031588052257,0.2723532078893675,0.2805849237951394,0.2880756426854078,0.294916601404977,0.3023759121066263,0.3082895036361676,0.3140745594874035,0.321035981141598,0.3263576357635763,0.3313989742806602,0.336341507626175,0.3416210512431576,0.3421675725125114,0.3414996288047513,0.3409375571724108,0.3410779998556894,0.3416983260121097,0.3404437381578143,0.3400243405143119,0.340756034016615,0.3418628454452405,0.3418164296039833,0.3423323702675321,0.3443837135614702,0.3449905482041588,0.3452447756503782,0.346644749564881,0.3484138003300762,0.3500871503271709,0.3515681753576956,0.3529640358934501,0.3561381074168798,0.3607542668379519,0.3603536030002678,0.362994978707176,0.3629879591993251,0.363447559709242,0.363076193861832,0.3644248326232501,0.3578242338136797,0.3561042524005487,0.3539110429447852,0.0,2.1688377588209824,56.66903962345136,210.62394319961356,295.0780483755682,fqhc4_80Compliance_baseline_low_initial_treat_cost,5 -100000,95718,42588,401.2098037986585,6742,69.08836373513863,5255,54.2113291126016,2156,22.19018366451451,77.37264048070351,79.73224909285125,63.34029949113111,65.08201523729336,77.11444197320381,79.47320249121036,63.24571093693207,64.9894688826848,0.2581985074996993,259.04660164088966,0.0945885541990421,92.54635460855808,118.22558,82.81370049378724,123514.46958774734,86518.41920410711,282.72359,178.11639879730168,294706.1994609164,185419.345156921,308.24026,148.31808253569943,316715.0170291899,150961.8195905562,3459.59848,1573.354031443832,3576032.595750016,1605511.7449322373,1315.24178,575.9791324428004,1360766.6478614262,588479.3240154528,2120.82888,878.9139464384632,2185283.917340521,892572.3195749014,0.37902,100000,0,537389,5614.2940721703335,0,0.0,0,0.0,23897,248.970935456236,0,0.0,28489,292.44238283290497,1863447,0,66894,0,0,4620,0,0,64,0.6581834137779727,0,0.0,0,0.0,0,0.0,0.06742,0.1778797952614637,0.3197864135271432,0.02156,0.3161171642847035,0.6838828357152964,24.93615033604434,4.533133363613175,0.3252140818268316,0.2119885823025689,0.2258801141769743,0.2369172216936251,11.21694518405774,5.748494425628145,22.785369536381307,12684.117390403262,59.66929356651701,13.303967921900826,19.330160566302023,13.38924874664957,13.6459163316646,0.5478591817316841,0.7710951526032316,0.70040959625512,0.5703454085930918,0.1172690763052208,0.7164835164835165,0.9236842105263158,0.8680555555555556,0.7157534246575342,0.1647509578544061,0.4886889460154242,0.6920980926430518,0.6436961628817541,0.5229050279329609,0.1046747967479674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0044591732287454,0.0066242632662791,0.0088864965875853,0.0109813012842021,0.0135798196143901,0.0158607192367283,0.0180662019127718,0.0204233918367764,0.0226225816357866,0.0246578151432819,0.0266524301349048,0.0288525803831244,0.0307723995880535,0.0330031981842566,0.0350461977304202,0.0369392593512853,0.039113388374891,0.0408871705329674,0.0427546269775967,0.0571234664578439,0.0715062989160005,0.0842446292082997,0.0970813583192323,0.1090824759655928,0.1240498567516994,0.1373370527901229,0.1499781838304937,0.1619961981246929,0.1727133312599869,0.1863645663949343,0.1996148769986369,0.2115148285499885,0.2229501383526735,0.2336333428690887,0.2442245687123973,0.2535555605170912,0.2632817602414251,0.27252277839631,0.2807188568020735,0.2894404760526529,0.2967627162285527,0.303957345971564,0.310423441043424,0.3161548374547134,0.3218752312587878,0.3271853048345291,0.3324681273379647,0.3366699471666839,0.3411316074208956,0.3411459034490186,0.340561961636899,0.3405529564286116,0.3409018598328175,0.3404587647268832,0.3396608298322549,0.3381024812244509,0.3390984118633479,0.3396232859167677,0.3396391256284991,0.3403630788789799,0.3409171562635543,0.3428320177550721,0.3449145356361851,0.3458105384393896,0.3469860092578145,0.3485205923315237,0.3499169773489144,0.3520590085995945,0.3555800843615721,0.3578098087208775,0.3609110169491525,0.3631778058007566,0.3630209917858229,0.3633467628595521,0.3630543040075883,0.3649724433557869,0.3665991902834008,0.3703396851698425,0.3781609195402299,0.0,2.7231333118192684,59.67150521863479,203.69145478926544,286.7595653618361,fqhc4_80Compliance_baseline_low_initial_treat_cost,6 -100000,95745,42402,400.1671105540759,6849,70.40576531411561,5318,54.989816700610994,2142,21.9959266802444,77.33281654085012,79.69834834413928,63.319784280511655,65.07074543789982,77.07447434439969,79.4386502816685,63.22571846110996,64.9784413720682,0.2583421964504282,259.6980624707754,0.094065819401699,92.30406583161256,118.32458,82.84724227616955,123582.80850174944,86528.87881908887,277.98691,174.57644577604614,289747.77795185125,181747.20941521507,304.65072,146.19132784906233,314526.628022351,149960.80234910027,3501.52559,1582.3737481664778,3620479.910178077,1616381.2130643586,1281.69602,558.858903178276,1322223.8445871847,567325.4795029325,2091.22548,864.0031182777941,2148590.2553658155,873798.6880139388,0.37829,100000,0,537839,5617.400386443156,0,0.0,0,0.0,23453,244.3365188782704,0,0.0,28244,291.3050289832367,1867636,0,67040,0,0,4649,0,0,51,0.5326648911170296,0,0.0,1,0.0104444096297456,0,0.0,0.06849,0.1810515741891141,0.3127463863337713,0.02142,0.3201888364343238,0.6798111635656762,24.858519999012632,4.393215879740122,0.3253102670176758,0.2154945468221135,0.2376833396013539,0.2215118465588567,11.442947903403326,6.076733605103707,22.656413726108187,12652.907202874652,60.13925105964292,13.674656605174786,19.45138490267742,14.087418693466448,12.925790858324268,0.5588567130500188,0.7766143106457243,0.6953757225433526,0.5925632911392406,0.1103565365025466,0.7278810408921933,0.9240837696335078,0.8599562363238512,0.7230215827338129,0.1403508771929824,0.5016360432922226,0.7028795811518325,0.6362922230950511,0.5557809330628803,0.1031578947368421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023406863986867,0.0045845039708701,0.006904254239009,0.0089244874518453,0.0112318398241972,0.0135470990873533,0.0156641987395215,0.0179276970668409,0.0201020439463809,0.021953716977268,0.024236956231994,0.0261839240974247,0.0281627868717611,0.0301132852729145,0.0319328944924784,0.0339442049882683,0.0356983813005519,0.0376820016812129,0.039855675248513,0.0419522866965308,0.0568234016787071,0.0706416547221728,0.0834714037037813,0.0958158116063919,0.1081773336706299,0.1235989510637397,0.1369849939021157,0.1493129835988803,0.1610894526034713,0.1721216540837337,0.1858196500672947,0.1990024451994027,0.2109006285478153,0.2217411744126297,0.2320552585846587,0.2432788555230755,0.2531022630897647,0.2626828719333783,0.271755413318807,0.2796601435916226,0.2871462468892876,0.2947512615471075,0.3019831303606122,0.3087392378348562,0.3147959059635815,0.3209055579544753,0.3264605671911013,0.3315382754713618,0.3366077445440879,0.3411411887492899,0.340902658922146,0.3409413352801003,0.3418235667442352,0.341787352247573,0.3417706441142312,0.3410620907515603,0.3402967095669815,0.3415275404232943,0.3430871519647221,0.3436930661236738,0.3447253901560624,0.3454361777989065,0.3461312520980195,0.3460875405798724,0.3459025484003182,0.3471335913798514,0.3485702836534333,0.3512651230375588,0.3532275132275132,0.3551517571884984,0.3568943416956601,0.3575971353749131,0.3580692098437401,0.3600152613506295,0.3606356968215159,0.3650473933649289,0.3712364358856793,0.3678556951763275,0.3705135284373274,0.3766781741465286,0.0,2.0612484325886755,59.37780637600675,201.73339584540585,300.7196887365345,fqhc4_80Compliance_baseline_low_initial_treat_cost,7 -100000,95781,42691,401.3426462450799,6685,68.56265856485106,5102,52.70356333719631,2016,20.63039642517827,77.34910350822409,79.67845173700563,63.34642956891118,65.06693646683709,77.09664656721057,79.42825212860174,63.25302001437149,64.97739502934898,0.25245694101352,250.19960840388933,0.0934095545396829,89.5414374881085,118.95642,83.28019360768188,124196.03052797528,86948.32337069137,279.06183,175.73172099896752,290785.3749699836,182903.73978029832,302.79627,145.16059326742047,312783.34951608354,148948.035218057,3350.83123,1513.5853176336043,3463625.5416001086,1545451.882558758,1217.55393,530.8248335222931,1256868.7004729535,539911.2486269489,1972.53678,825.9395348467398,2020907.82096658,829421.1966678754,0.3787,100000,0,540711,5645.274114907967,0,0.0,0,0.0,23517,244.93375512888773,0,0.0,27974,288.7837880164124,1864062,0,66955,0,0,4553,0,0,53,0.5533456531044779,0,0.0,1,0.0104404840208392,0,0.0,0.06685,0.1765249537892791,0.3015706806282722,0.02016,0.3115059464106605,0.6884940535893395,25.11426723246971,4.529796010846315,0.3369266954135633,0.2144257154057232,0.2261858094864759,0.2224617796942375,11.269053625236504,5.796428254731226,21.56156066532192,12686.733126900275,57.74891575264065,12.978797917184906,19.45786959329933,12.916920976090644,12.395327266065772,0.5564484515876127,0.7641681901279708,0.6893542757417103,0.598786828422877,0.1118942731277533,0.7395348837209302,0.9105691056910568,0.859375,0.7631578947368421,0.144927536231884,0.4944910807974816,0.6896551724137931,0.6294256490952006,0.5495495495495496,0.1045258620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0047436118347033,0.0070710452364285,0.0093752221917502,0.0115304835888884,0.0137424162221588,0.0158074970953341,0.0179823442363627,0.020445697820556,0.0223652305583122,0.0242698056571492,0.0265466747390996,0.0288066266546082,0.0310434979517055,0.0333133995958262,0.0354800392501162,0.037552126988069,0.0393309691200564,0.0415441367485842,0.0435706252343066,0.0581378360327266,0.0713837464700345,0.0847688646109649,0.0968850494987073,0.1090269142411532,0.1235879064557376,0.1367943527017573,0.1488243989068133,0.160135322618514,0.1709308305476986,0.1841762546953536,0.1972403650676932,0.2095025822234302,0.2203912477720309,0.2306329698863448,0.2421255482213263,0.2526615333110144,0.2623306537748046,0.2717732878033285,0.2803063256942695,0.2879877865420647,0.2956975411178438,0.3033816882410015,0.3102072600934467,0.316397901690305,0.3222549587642845,0.3280853034304093,0.333040544841194,0.3378485229496934,0.3422342604214838,0.3420520426048267,0.3417817470161801,0.3418183869466499,0.3415368143871985,0.3410891898722885,0.3411507000398272,0.3405063892451665,0.3419272201786653,0.3436304644808743,0.3446034042401186,0.344603454089087,0.345026924295217,0.3463425887090009,0.3459814424671657,0.346263465533066,0.3484812747333385,0.3495340501792114,0.3522453380692629,0.3542153323423232,0.3580929487179487,0.3609301898908357,0.3604508306180225,0.3646092107777565,0.3655071796053137,0.3686013320647003,0.3671526689962646,0.3715310258808855,0.3701498665571751,0.3823284245623784,0.3936044216344256,0.0,2.1415284967275863,56.675676131925286,196.47729645367144,285.62351407252544,fqhc4_80Compliance_baseline_low_initial_treat_cost,8 -100000,95663,42898,402.8621306043089,6759,69.36851238200768,5324,55.0474059981393,2120,21.763900358550327,77.31532774038504,79.70606698733855,63.31028192710126,65.0754820112392,77.05036014168074,79.44229970896093,63.21228696560786,64.98108865817017,0.2649675987043025,263.76727837761393,0.0979949614933985,94.39335306903727,118.04188,82.73617693467273,123393.45410451273,86487.12348000033,282.61551,178.0682076381255,294830.2478492207,185543.3227694062,313.69505,150.77325350415032,323979.9922645119,154609.10842896526,3475.48891,1566.5171469572956,3593944.62853977,1598444.2525652184,1264.75733,552.9317234478735,1307807.8462937605,563726.4781533659,2073.22228,866.5732255150222,2129322.036733115,872351.0057132582,0.38096,100000,0,536554,5608.793368386941,0,0.0,0,0.0,23799,248.1523682092345,0,0.0,29068,299.9174184376405,1862069,0,66783,0,0,4739,0,0,52,0.5435748408475586,0,0.0,0,0.0,0,0.0,0.06759,0.177420201595968,0.3136558662524042,0.0212,0.3186782413889666,0.6813217586110333,25.001681406375265,4.419294480104661,0.3240045078888054,0.2272727272727272,0.2267092411720511,0.2220135236664162,11.129722228969866,5.762744426728698,22.51688703044719,12776.314787282874,60.00680651651932,14.110610737403231,19.63365340319819,13.417515770449937,12.845026605467952,0.5619834710743802,0.7793388429752066,0.7136231884057971,0.5700082850041425,0.1099830795262267,0.7158920539730135,0.9236842105263158,0.8660508083140878,0.7116104868913857,0.1535433070866141,0.5105263157894737,0.7132530120481928,0.6625386996904025,0.5297872340425532,0.0980603448275862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0047040694255763,0.0071038584099535,0.0093674435616605,0.011688232421875,0.01414820473644,0.0166557871975847,0.0189060824268423,0.0211791174515518,0.0232146148647264,0.0254958669210099,0.0276216988012449,0.0298949664118839,0.0320556414219474,0.0340937241948802,0.036343703458547,0.0382339836909782,0.0404380092376355,0.0425456663754004,0.0446410889799151,0.0588763857108526,0.0727942870306381,0.086278378974106,0.0984762385823125,0.1100756704273215,0.1256179275741248,0.1383594372179453,0.1511013591240254,0.1628153056861906,0.1743414696979455,0.187735788044064,0.2008035172832019,0.2118774154918077,0.2225274424611209,0.2333168125998127,0.2441185931208891,0.2540436084178544,0.2632100210459973,0.2728924212319046,0.2811224723737906,0.2898028677986518,0.2969245718165748,0.3039945996518196,0.3105964238569543,0.3166050853225728,0.3221335832213358,0.3278596122050203,0.333163583586897,0.3388080774063184,0.3432005812033551,0.3435676258507986,0.3433181310883613,0.3432457191177507,0.3428186831478238,0.3422685013015991,0.3425566814342434,0.3414251533061845,0.3430746763369049,0.3441457453899133,0.3449483578142311,0.3456272126173038,0.3467107084932157,0.3472204714483802,0.347672019377411,0.3487670704048641,0.3497687544093439,0.3513180515759312,0.3545070914109845,0.3551209834555567,0.3582992706580107,0.3597462885508112,0.3638989942221271,0.3653784936652448,0.3697803897309001,0.3742835307604127,0.376607765356413,0.3771069567882317,0.3778089887640449,0.3749653835502631,0.3800076306753148,0.0,2.36353571318515,58.57252343022619,200.6710135607593,302.4704867146356,fqhc4_80Compliance_baseline_low_initial_treat_cost,9 -100000,95625,42577,402.237908496732,6916,71.15294117647059,5441,56.30326797385621,2138,21.96078431372549,77.3146043072854,79.73322090573177,63.296484254502126,65.08277260282894,77.04942941856406,79.4682963585781,63.199599389209965,64.98838792937036,0.2651748887213472,264.92454715366875,0.0968848652921607,94.3846734585776,116.70912,81.77650681794664,122048.29281045753,85517.48918367231,280.07268,175.17058610494,292281.6836601307,182581.55301173337,307.58015,147.23118653808618,317711.90588235296,150934.25494185646,3608.16122,1627.761177255844,3737402.122875817,1666484.9751217908,1329.11793,582.2942366893768,1373050.122875817,592097.1930782284,2110.63958,875.1752485815545,2171152.962091504,885295.4313402723,0.38033,100000,0,530496,5547.649673202614,0,0.0,0,0.0,23564,245.7934640522876,0,0.0,28531,294.4522875816993,1873094,0,67168,0,0,4677,0,0,43,0.4392156862745098,0,0.0,0,0.0,0,0.0,0.06916,0.1818420845055609,0.3091382301908618,0.02138,0.3264156129741616,0.6735843870258383,25.02874292176781,4.494434246616119,0.3260430068002205,0.208968939533174,0.2328616063223672,0.2321264473442381,11.187702185604364,5.624074821494974,22.731499565590926,12741.732335504676,61.31797350196884,13.397206132933004,19.857809965512413,14.155554470830872,13.907402932692545,0.5565153464436684,0.7678100263852242,0.7029312288613303,0.6045777426992897,0.11243072050673,0.7055837563451777,0.8994708994708994,0.871264367816092,0.7222222222222222,0.1269230769230769,0.5059084194977843,0.7022397891963109,0.6482449589245706,0.5671175858480749,0.1086739780658025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020974131903985,0.0043200048676111,0.0063852682015673,0.00873850530915,0.0109659830729166,0.0129863515991036,0.0150855254434369,0.0172744917764838,0.0193308854363768,0.0215563588698528,0.0235487179487179,0.0257216230097586,0.0279926751985515,0.0301687720238217,0.0322260988046821,0.0342763198709597,0.0363474350605617,0.0383105961502522,0.040203932993445,0.0422190006362052,0.0570792482806196,0.0706017912323888,0.0841182338425998,0.097403349226899,0.1101377381392157,0.1255426381212544,0.1391305271431454,0.1516649794874527,0.1628195528933576,0.1740587571835222,0.1872552509789961,0.1999328066239663,0.2117953411344272,0.2229306340651154,0.2330287565994687,0.2440542910095775,0.2544342986152247,0.2639555585603858,0.2741000818107444,0.2825388814974537,0.2894078688372739,0.2966356561933181,0.3038361354487331,0.3110229139438122,0.3174884624726742,0.3235156384787913,0.328574288645862,0.3332909315253202,0.3376446826691525,0.3428379074096075,0.3431673671731867,0.3440673767649244,0.3443466734354288,0.3444836869988131,0.3445651040502897,0.3442592734812994,0.3427100219319157,0.3432779207071706,0.3429764133926577,0.3437528005305325,0.3445009285486503,0.3448554958938724,0.3469724847369742,0.3489172458488837,0.3504810806919884,0.3504608594054265,0.3538854950987356,0.3560584718439916,0.3585803787056806,0.3627967814816283,0.3636487530095852,0.3671148429611521,0.3692268597928975,0.3711024285604842,0.3746452223273415,0.380768767321364,0.3858797745773325,0.3855695679139962,0.3824756606397774,0.3860958366064415,0.0,2.3216279263895028,60.79502276122417,203.97003771339487,306.85046902662174,fqhc4_80Compliance_baseline_low_initial_treat_cost,10 -100000,95636,42663,403.9483039859467,6758,69.40900915973064,5278,54.508762390731526,2081,21.362248525659798,77.29129418892526,79.69205534798745,63.29829466637945,65.07021080730377,77.0295226296413,79.4310441945557,63.20254672101076,64.97771060185809,0.2617715592839573,261.0111534317525,0.0957479453686929,92.50020544567406,118.73202,83.21754801614641,124149.92262327994,87014.87725976245,279.14965,175.06458981227448,291227.2366054624,182392.6343764633,308.05692,148.00404368324098,317779.7900372245,151436.81350584712,3443.37574,1564.855039884162,3556438.1090802625,1592197.9692627904,1271.3119,555.405411820882,1310414.4778117028,561840.2085207258,2041.7955,851.7063811846144,2096222.2384875985,856772.8466255915,0.37893,100000,0,539691,5643.178301058179,0,0.0,0,0.0,23565,245.702455142415,0,0.0,28530,293.92697310636163,1862143,0,66818,0,0,4673,0,0,42,0.4391651679283951,0,0.0,0,0.0,0,0.0,0.06758,0.1783442852241838,0.3079313406333234,0.02081,0.3244650900900901,0.6755349099099099,24.868020720031463,4.478701797262361,0.315081470253884,0.2303902993558166,0.2258431223948465,0.2286851079954528,11.131241055599563,5.5965527061624005,22.194111544897464,12670.392369795663,59.86861609296965,14.41589898748065,18.908429153533547,13.32146760800298,13.222820343952485,0.5570291777188329,0.7796052631578947,0.6993385447985568,0.575503355704698,0.1184755592377796,0.7055435565154787,0.896551724137931,0.8458049886621315,0.7243816254416962,0.1467181467181467,0.5039856004114168,0.7209876543209877,0.646481178396072,0.5291529152915292,0.110759493670886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451303141112,0.0045219507249315,0.006912091592826,0.0090234732242658,0.0109167862120888,0.0129245811478331,0.0149377001040031,0.0172360977801376,0.019528054964829,0.0216042430323756,0.0237201575190745,0.0257071256906928,0.0277763489532431,0.0298112196529409,0.0314971197324138,0.0335112324686607,0.0353808048252204,0.0371612501297892,0.0392783194081719,0.0413360994985456,0.0555334935729961,0.0693747577697005,0.0828476925500078,0.0951959917477158,0.1074545895912271,0.1227202963747023,0.1369803388678925,0.1494934861574187,0.1610589002576685,0.1718396049170648,0.1860194300378465,0.1988304726839569,0.2108631762272776,0.2225956906367697,0.2335787339093634,0.2446489963402462,0.2541390173604129,0.2632752079791964,0.2721255265279244,0.2804331633530052,0.2883304200863555,0.2957659143823196,0.3025368326306314,0.3086205035324033,0.3158842130868401,0.3222294903916172,0.3280776076003309,0.3328872404695446,0.3376913099870298,0.3424454921226048,0.3423680841027023,0.3425546871769425,0.3424707808706453,0.3420515271321197,0.3424851401075573,0.3424316473788556,0.341944806122773,0.3429955671275316,0.3441832532601235,0.3457345716642163,0.3458397621646031,0.3472473327637931,0.3477986096481988,0.3478055686644644,0.3487149814359419,0.349717632294499,0.3491308064975776,0.3527019358093196,0.3547954393024815,0.3551495282264513,0.3574799541809851,0.3603944562899787,0.3635036496350365,0.3649325626204239,0.3645306083468627,0.3645820733034958,0.3655258634161588,0.3606934001670844,0.3582933031929923,0.3629658385093168,0.0,2.641477990850656,60.83686263910815,192.711400509064,300.27795047720025,fqhc4_80Compliance_baseline_low_initial_treat_cost,11 -100000,95626,42713,402.88206136406416,6838,70.28423232175349,5422,56.05170142011587,2132,21.866437998034005,77.27514686010801,79.68612592539615,63.27600815666828,65.0565483011138,77.00492772559006,79.41775001738007,63.17633218006816,64.96018865595514,0.2702191345179443,268.3759080160826,0.0996759766001247,96.359645158671,117.58054,82.41540520117834,122958.29586095831,86184.71693380286,282.34862,176.94308472724475,294608.0040993035,184383.6467246724,312.35699,149.70758980474656,322966.348064334,153658.41886750393,3545.50619,1606.2620662967258,3668033.3695856775,1640355.3888454854,1299.55173,569.2111050188964,1342901.5016836424,579452.3410184857,2087.15888,872.959669438844,2143976.094367641,881648.7867877629,0.37992,100000,0,534457,5589.013448225378,0,0.0,0,0.0,23743,247.60002509777675,0,0.0,28894,298.4021082132474,1862812,0,66881,0,0,4602,0,0,59,0.6169870119005291,0,0.0,0,0.0,0,0.0,0.06838,0.1799852600547483,0.311787072243346,0.02132,0.3332402624598632,0.6667597375401368,24.89748232814877,4.437898930374043,0.3321652526742899,0.2203983769826632,0.2264846919955735,0.2209516783474732,11.19069941431598,5.704928169723124,22.72209867125096,12731.842230333988,61.51017841021757,14.18667406985844,20.40281570580067,13.813351994313098,13.10733664024537,0.5592032460346735,0.7665271966527196,0.7018323153803443,0.5765472312703583,0.1202003338898163,0.7119370979270908,0.8987654320987655,0.8408071748878924,0.7439446366782007,0.1621621621621621,0.5060899826000497,0.6987341772151898,0.6560885608856089,0.5250266240681576,0.108626198083067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0043582700708472,0.0067677946324387,0.0088471305231081,0.0107812325186383,0.012974580413883,0.0151323571399437,0.0173454073975763,0.0195986218600799,0.0217787516382699,0.0237760659739673,0.0259497442008588,0.0278206473650636,0.0299232077513786,0.0319599339116067,0.0342837043780518,0.0365068670640062,0.0388426147103421,0.0407526120800899,0.0427795217287014,0.0583003229616313,0.0728461554582224,0.0866852250643416,0.0987452723844038,0.1103317875967845,0.1258539065230515,0.1384227920470123,0.1512434841006726,0.1623698376515662,0.173384063111283,0.1871059677001468,0.2000433768909613,0.2119639859606287,0.2232432669532415,0.2340249420593753,0.244892517913681,0.2547878353723374,0.2643381108227062,0.2731846691481975,0.2814471008581965,0.2886686472936589,0.2960616619153204,0.3036521821699445,0.3102068285882536,0.3164142397974092,0.3227989576772504,0.3282518412566969,0.3336647926467026,0.3383080699840237,0.3438550517483258,0.3435968075193453,0.3426927534632154,0.3425582084915917,0.3423243423243423,0.3425291805621724,0.342009545880078,0.3418779030135857,0.3429722839049264,0.3439170609233292,0.3445456168541332,0.3461228014191053,0.3466508360542198,0.3477923114069159,0.3484196368527236,0.3481352908560546,0.3485509708103588,0.3499814280408012,0.3516476572620138,0.3524367434802555,0.3549880287310455,0.3573094334446019,0.3623963626638138,0.3635100132667888,0.3640380952380952,0.3674184988627748,0.3675851281434243,0.3665375677769171,0.3733031674208145,0.3701425775789768,0.3665632273079907,0.0,2.405482013159499,61.64469315447668,204.65188270343376,304.44402934924085,fqhc4_80Compliance_baseline_low_initial_treat_cost,12 -100000,95681,42885,404.6048849823894,6733,69.12553171476051,5256,54.31590388896437,2126,21.812063001013787,77.28391542799022,79.67998446097752,63.28504443165552,65.05906414010248,77.01693796950367,79.41430740370062,63.18623066297583,64.96372158179967,0.2669774584865507,265.6770572769034,0.0988137686796903,95.34255830280358,118.8957,83.32681564220299,124262.60177046644,87088.15296893111,282.99253,178.4692549327623,295150.6150646419,185909.20342885453,311.86243,150.06457656650127,321965.35362297634,154003.27509937686,3459.30454,1569.6505716046436,3577171.1416059616,1602365.2910121256,1261.46073,552.4958269881392,1305463.3208264962,564564.3568340486,2089.52042,871.9922703844336,2146365.485310564,879315.0511114676,0.38074,100000,0,540435,5648.300080475748,0,0.0,0,0.0,23887,248.99405315579892,0,0.0,28740,296.4538414105204,1856224,0,66642,0,0,4700,0,0,58,0.5957295596826956,0,0.0,0,0.0,0,0.0,0.06733,0.1768398382098019,0.3157582058517748,0.02126,0.3319695259593679,0.6680304740406321,24.90112488989484,4.444549805685051,0.3198249619482496,0.2258371385083714,0.2205098934550989,0.23382800608828,11.221678733967307,5.721084575303856,22.721195213227137,12766.500697395884,59.61690984520381,14.085370933723482,19.021420707912604,12.95681622410362,13.553301979464107,0.552130898021309,0.785172704296546,0.7031528851873885,0.5539257981018119,0.1187957689178193,0.7259148618371919,0.924812030075188,0.877030162412993,0.6931818181818182,0.1714285714285714,0.4927240234873627,0.7144670050761421,0.6432,0.5128491620111731,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205853144443,0.0045135507951963,0.0067717798511629,0.0090344610319,0.0112939165471139,0.0137723086952978,0.0158906624509153,0.017822854107938,0.0201278445410381,0.022239750865619,0.0244065084022406,0.0264069130626881,0.0285249747885323,0.0304648046995774,0.0326403369325102,0.034417498319458,0.0366087434072139,0.0384906835521876,0.0406411883412736,0.0425882303891934,0.0579269566670845,0.0723484451889854,0.0858024496992978,0.098553012365167,0.1102819324670938,0.1266104188941702,0.138865880853775,0.151681683600656,0.1634740780331373,0.1746989245003542,0.1879688712598085,0.2011309349712391,0.2125412397513093,0.2232735396543794,0.2337135614702154,0.2447271435549043,0.2548324706250628,0.2642494054529265,0.2733059034802573,0.2813446535107847,0.2889530568698395,0.295939669731657,0.3039469312194427,0.3105469219129056,0.3173089802130898,0.3228924885179515,0.3282771934662973,0.3332908715701511,0.339257703625922,0.3443594924005335,0.3447797012349674,0.3449667387441982,0.3456377730796335,0.3452707977908221,0.3451341932024664,0.3445278788716389,0.343078095722044,0.3427603112712436,0.3455137543919787,0.3459905026431323,0.3468519355324597,0.3478823084727555,0.3489581131915972,0.3492074229407653,0.350029163021289,0.3501787028277094,0.3495418098510882,0.3520002533971049,0.3516010720835096,0.3549785271194528,0.357573542846702,0.3584574468085106,0.3605467770253323,0.3645535310947146,0.3694315004659832,0.3714925725064843,0.3716638706725637,0.3712090578245046,0.3732962447844228,0.3829869130100077,0.0,2.3519483817054727,58.90811860115653,201.5111078718079,294.26828390768566,fqhc4_80Compliance_baseline_low_initial_treat_cost,13 -100000,95656,42923,404.6479049928912,6651,68.30726770929162,5234,54.13147110479217,2004,20.57372250564523,77.35161970545354,79.75774359697016,63.31721993396855,65.09455480057815,77.10734740080255,79.5128474429787,63.22676166923478,65.00567945599178,0.2442723046509911,244.89615399146203,0.090458264733769,88.87534458636992,119.394,83.48929637171045,124816.0073597056,87280.77315768007,281.39929,177.35408359378758,293587.51149954,184818.4218249793,307.10446,147.40307113495788,316947.54118926154,150894.34237598185,3398.07725,1545.91070371627,3518040.8233670653,1581879.759050429,1239.32429,551.1446371503537,1278126.0035962197,558938.8140215075,1962.0685,826.5903284246679,2017042.0674082127,836720.6810923569,0.38185,100000,0,542700,5673.454879986618,0,0.0,0,0.0,23783,248.03462406958263,0,0.0,28464,293.4682612695492,1859919,0,66756,0,0,4804,0,0,55,0.5749770009199632,0,0.0,0,0.0,0,0.0,0.06651,0.1741783422810004,0.3013080739738385,0.02004,0.3346727898966705,0.6653272101033295,25.01001785555376,4.355709434394635,0.3366450133740924,0.2164692395873137,0.2329002674818494,0.2139854795567443,11.169294165534264,5.755191617593397,21.37328201574733,12702.382845241924,59.29996371505557,13.556267960440854,19.802216937874068,13.551627977860106,12.38985083888054,0.5638135269392434,0.7969991173874669,0.6821793416572077,0.5758818703855619,0.1285714285714285,0.7295918367346939,0.9238578680203046,0.8822222222222222,0.6725978647686833,0.2064777327935222,0.5049197307094769,0.7293640054127198,0.6135670731707317,0.5469083155650319,0.1065292096219931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505334292459,0.0046544643309841,0.0067083443278462,0.0089713890920913,0.0112502415852058,0.0133937665512324,0.0157854484270636,0.0183190205348663,0.020521472392638,0.0226262419338318,0.0246632400767392,0.0268926042769208,0.0289277885832484,0.0307738303882554,0.0328981345673146,0.0348552096588969,0.0369176555941338,0.0389702065815426,0.0412917052465122,0.0432175998331769,0.0575703434368763,0.0710666275807194,0.0846845712246675,0.0973980198436497,0.1095563716179139,0.1248505116997745,0.1379888742621767,0.1505696047401344,0.1619832058619029,0.1726870543767717,0.1858178053830227,0.1991246790670465,0.2109966907602543,0.2215958227058269,0.2323517103147507,0.2432288606303839,0.2531596062085843,0.2628900224076388,0.2719375936776128,0.2802978235967927,0.2891822778658459,0.2967665006663393,0.3035773434912223,0.309897455556088,0.3164311039875662,0.3224749682870056,0.3274261076048241,0.3320841484793821,0.3375547600894253,0.3417604845611956,0.3420461424631735,0.3420134117517726,0.3422926458585461,0.3423931870669746,0.3423154581625987,0.3414037287980056,0.3398033698985236,0.3403592225047158,0.3415350465294971,0.3422672686069128,0.3433367052564535,0.3443810576600407,0.3452348543547002,0.3474806979961619,0.3485647194134279,0.3485933769334579,0.3490016757079155,0.3534431372549019,0.3564425770308123,0.3575839138695377,0.3571979842920053,0.3605850168350168,0.3594775326542091,0.3651659845384266,0.3671407185628742,0.3690547145070926,0.367952066369642,0.3705645161290322,0.3619332066250339,0.3595336592704024,0.0,2.276255521012423,60.5266679655824,194.26923406238936,293.0830395395155,fqhc4_80Compliance_baseline_low_initial_treat_cost,14 -100000,95788,42862,403.610055539316,6751,69.18403140268093,5256,54.26567002129703,2070,21.265711780181235,77.3507064425629,79.6816044249581,63.34838135415546,65.07104914214985,77.08740169315129,79.41764120519773,63.24978992869336,64.97490071552855,0.2633047494116027,263.9632197603703,0.0985914254620965,96.14842662129774,118.8451,83.21921701499248,124070.96922370236,86878.54116903212,280.94644,176.74408789753377,292708.2306760763,183923.88179890357,307.60382,147.49651667388918,317458.5856265921,151135.08131943934,3451.24478,1570.494843189373,3564352.5180607177,1600902.0474269986,1255.69958,550.0991329433492,1295123.3975028188,558496.2134540332,2038.59296,865.4426279334822,2095708.627385476,874427.8366936569,0.3816,100000,0,540205,5639.589510168288,0,0.0,0,0.0,23738,247.19171503737425,0,0.0,28370,292.5314235603625,1864127,0,66900,0,0,4654,0,0,53,0.5428654946339834,0,0.0,1,0.0104397210506535,0,0.0,0.06751,0.1769129979035639,0.3066212412975855,0.0207,0.3306440198159943,0.6693559801840057,24.83449028845593,4.41236986188973,0.3375190258751903,0.2113774733637747,0.2256468797564688,0.2254566210045662,11.025573270898995,5.574740444594659,22.189708431767844,12710.403976221714,59.45386893419075,13.030611371845897,20.01534031374881,13.239029584927732,13.1688876636683,0.5578386605783866,0.7695769576957696,0.7080045095828635,0.5809443507588533,0.1113924050632911,0.7130111524163569,0.922437673130194,0.88,0.6970802919708029,0.15,0.5044745589363334,0.696,0.649546827794562,0.5460526315789473,0.1005405405405405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0045924574209245,0.0068596710199194,0.0091012514220705,0.0113469985358711,0.0133669968542254,0.0156842362724715,0.0179710381565653,0.0198555034386911,0.0218276708964388,0.0242023075189048,0.0263295607293473,0.0285699604336878,0.0306149760144942,0.0327294100663043,0.0347837765243083,0.036826257463034,0.0390727858927442,0.0410102499662488,0.0430785887545936,0.0576917057086511,0.0720700939953786,0.084921483531459,0.0977909029762905,0.1095207479157224,0.1248784303776058,0.138004538995058,0.1498834523644801,0.1615930809887352,0.1724533439097857,0.1859794169573267,0.1985234507582718,0.2105085850901978,0.2219963940337649,0.2324584070991082,0.2433476062446753,0.2538898796255016,0.2633779076300708,0.2733363564221743,0.2818015337072221,0.2892501819946615,0.2969060360339308,0.3044893032942067,0.3107839378983181,0.317103969111594,0.3232181358960143,0.3283768743043658,0.3336343861702263,0.3375772254529912,0.3415184164369832,0.3420794144162327,0.3416594415314534,0.342347801578354,0.342496274541009,0.342484087799655,0.3416863478820967,0.3407623610031566,0.3412642220868391,0.3411278994072703,0.3422423515511716,0.3421518082263952,0.3426076602500496,0.3453752659406399,0.3468261476776141,0.3476789986226228,0.3500537817771598,0.3500258427611554,0.3521645296432652,0.3544317255555161,0.3567550303417438,0.3589024726537365,0.3607404218682737,0.3622579001019368,0.3654618473895582,0.3681913076485101,0.3683075817463169,0.3662889958094055,0.3795816939324912,0.3844856661045531,0.386907095256762,0.0,2.352275999428952,58.98181739629988,197.13027154513404,297.78193169182714,fqhc4_80Compliance_baseline_low_initial_treat_cost,15 -100000,95729,42764,402.9499942546146,6697,68.72525566965079,5213,53.78725360131204,2068,21.21614139915804,77.31652017658898,79.67772911145116,63.31665033110207,65.0626347164379,77.0654157681681,79.4278454027086,63.22364305470775,64.97288284575332,0.2511044084208862,249.8837087425585,0.0930072763943172,89.75187068458013,117.39772,82.31906681295534,122634.10251856803,85990.6427964489,279.6287,176.2472647941672,291462.4304024904,183472.59523027128,310.08126,149.44714940407704,319298.74959521147,152576.7499667118,3408.99994,1549.465762432121,3519658.661429661,1577405.6665734188,1266.20703,560.0694650349614,1304762.872274859,567210.1675657826,2027.60252,847.8156208034803,2081423.8736433056,853858.8642391021,0.3799,100000,0,533626,5574.277387207639,0,0.0,0,0.0,23616,246.01740329471735,0,0.0,28672,294.9576408402887,1867402,0,66977,0,0,4744,0,0,46,0.4805231434570506,0,0.0,0,0.0,0,0.0,0.06697,0.1762832324295867,0.308794982828132,0.02068,0.32589348778076,0.67410651221924,25.057794417017345,4.534319719766742,0.3309035104546327,0.2159984653750239,0.2290427776712066,0.2240552464991367,11.33579844423164,5.814083831290362,22.094521631293865,12697.703969782187,59.0151548395676,13.356427647524074,19.4526651506196,13.35100422144603,12.855057819977905,0.564358334931901,0.7895204262877442,0.7066666666666667,0.5871021775544388,0.1138698630136986,0.7154236060825488,0.9164556962025316,0.8861047835990888,0.7127659574468085,0.1358490566037735,0.5099164926931107,0.7209302325581395,0.645412130637636,0.5482456140350878,0.1074197120708748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026438143859969,0.0048864062610881,0.0069424004059883,0.0093581393458447,0.0117899576822916,0.0140040331615505,0.0158995645212283,0.0178303360803896,0.0199793458144599,0.0222677245968774,0.024413501763596,0.0265019663411678,0.0286390045760707,0.0306656231979569,0.0328327109937491,0.035140105802612,0.0373065576315925,0.0392099912866686,0.0412270397821183,0.0429337917382924,0.057622234519049,0.071061581122796,0.0846293402686745,0.0966130745207726,0.1092366090257275,0.1245557999830781,0.1376713200661942,0.1494853590777975,0.1608050937994102,0.1723597820023173,0.1855462438330784,0.1988399649392388,0.2104181393072698,0.221924578226309,0.2327161037474129,0.2437180638224764,0.2539280170632838,0.2629962192816635,0.2720473066533493,0.2807520020163369,0.2890287790596758,0.2962715988722376,0.3041367715659113,0.3102538265918142,0.3167235992754768,0.3221156812656572,0.3281674789210589,0.3331210515589973,0.337768334866367,0.342779010779962,0.3428941125727841,0.3420773166728729,0.3418252723496248,0.3411640242311817,0.3413126377882381,0.34039907904835,0.3394131641554322,0.3390821638004875,0.3402102519250227,0.3405927095292766,0.3414611202046998,0.3432542829949238,0.3445954474691799,0.3461244835638584,0.3485290923570722,0.3478397076099725,0.3485900402845633,0.35208562883677,0.3554369204832818,0.3573188175460903,0.3586901992976695,0.3607055312799744,0.3651795292484382,0.3676626725314728,0.3694040356640075,0.3708025720409621,0.3697660098522167,0.3687309644670051,0.3810444874274661,0.3783365570599613,0.0,2.6145432752312097,60.50752965414848,189.03009244969547,294.8618263688637,fqhc4_80Compliance_baseline_low_initial_treat_cost,16 -100000,95681,42820,402.514605825608,6823,70.07660873109604,5301,54.848925073943626,2100,21.59258368955174,77.40264542862671,79.7820920232446,63.35728834693722,65.1114781846886,77.134759289877,79.51374816955108,63.258607318734825,65.01480755578912,0.2678861387497164,268.3438536935228,0.0986810282023924,96.67062889947432,118.88206,83.24540533904504,124248.3460666172,87003.06783901196,282.06951,177.23035656084667,294275.37337611435,184703.82475188043,306.11,147.36017760404525,315852.16500663664,150840.51651810692,3497.2152,1584.625824278235,3621858.67622621,1622935.822449844,1303.08356,574.2987692159821,1347243.0681117463,585561.2391341872,2069.62046,867.7223418613203,2130498.949634724,879917.9535552515,0.38145,100000,0,540373,5647.652093937146,0,0.0,0,0.0,23851,248.72231686541735,0,0.0,28354,292.32554007587714,1865019,0,66835,0,0,4808,0,0,48,0.5016669976275332,0,0.0,1,0.0104513957839069,0,0.0,0.06823,0.1788701009306593,0.3077825003664077,0.021,0.3230340988169798,0.6769659011830201,25.09496673836567,4.559639468305454,0.3338992642897566,0.2120354650066025,0.2214676476136578,0.232597623089983,11.40913039189943,5.811624246170582,22.31223654291337,12812.775647699887,59.6251378761114,13.195673394975776,20.015346237838592,13.09523028479089,13.318887958506146,0.5459347292963592,0.7588967971530249,0.6819209039548022,0.5698466780238501,0.1338199513381995,0.7323008849557522,0.8991825613079019,0.8779443254817987,0.7630662020905923,0.1446808510638297,0.4818757921419518,0.6908850726552179,0.6116653875671527,0.5073280721533259,0.1312625250501002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759283450294,0.0043479582839247,0.0069182389937106,0.0093943918019966,0.011714340915793,0.0139400851271816,0.0162202942285929,0.0184015268266296,0.0205916917888712,0.0227188996684268,0.0247852559503064,0.0267226511169513,0.0291383919391322,0.0310408041360275,0.0333880170448096,0.035533414639188,0.0375141079138925,0.0397438957319414,0.0418811685542832,0.0442214092903521,0.0588020223967909,0.0724434346501376,0.0856147493677793,0.09853791942779,0.1106892369350841,0.1264388489208633,0.1394902160533129,0.1514248304787047,0.1635908998621515,0.1747327106411727,0.1879004555097294,0.2010259074086098,0.2128524975258561,0.2239426147049818,0.234932335790516,0.2460132890365448,0.2566936158349596,0.2664696230698343,0.275,0.2830378588585154,0.2909712516892087,0.2979617566715696,0.3046847315079496,0.311262161482953,0.3179607234264504,0.323512754850783,0.3295937765771174,0.3341761536897743,0.3391857473463741,0.3446522655426765,0.3450036959881728,0.3440969410860585,0.3446362602014299,0.3447898202988774,0.3442882979038809,0.3430702679567723,0.342520806303598,0.3432213133602707,0.3450099817427952,0.345036125234145,0.3470798748383953,0.3478732211140458,0.3490203450724819,0.348311346235407,0.3494769748707466,0.3514430353321852,0.3527296595416797,0.3554290745574038,0.3587568632971983,0.3606922617863536,0.3609483705602343,0.3627996575342466,0.3656574613630605,0.3671331345109734,0.3706970128022759,0.3771773906861002,0.3804532141205488,0.3828837963901845,0.3910414949161858,0.3940661848611639,0.0,2.199988866114738,59.54001976015735,193.5856781036748,303.4654724496153,fqhc4_80Compliance_baseline_low_initial_treat_cost,17 -100000,95727,42840,402.61368266006457,6865,70.49212865753654,5329,55.094174057475946,2176,22.386578499273977,77.33907921770925,79.7056672874268,63.32552877917672,65.07540933971983,77.07054417966116,79.43827104099019,63.2276119816578,64.98047966577855,0.2685350380480997,267.3962464366184,0.0979167975189128,94.92967394128016,118.9386,83.32467464228361,124247.70440941426,87044.0676531006,285.0074,179.23998378055026,297170.7564219081,186682.16258793263,311.1355,149.02289652771813,321488.2843920733,152947.89747199515,3516.88698,1589.0669098815606,3634615.11381324,1620742.2565018868,1287.17347,564.6613287408999,1324258.892475477,569600.5540791679,2140.1457,885.4491211312773,2201614.3616743446,894051.9035909874,0.38114,100000,0,540630,5647.622927700649,0,0.0,0,0.0,24021,250.33689554671096,0,0.0,28878,298.1499472458136,1859651,0,66720,0,0,4737,0,0,42,0.4387476887398539,0,0.0,0,0.0,0,0.0,0.06865,0.1801175421105105,0.3169701383831027,0.02176,0.3235294117647059,0.6764705882352942,24.879130495748147,4.475336021604134,0.3267029461437418,0.2112966785513229,0.2347532370050666,0.2272471382998686,11.024002599282689,5.520060787132333,23.034750212716904,12796.158990679814,60.226672511126296,13.299184618104308,19.76829246947047,13.968445977698993,13.190749445852523,0.5507599924939013,0.7539964476021315,0.7099368179207353,0.5739408473221422,0.1090008257638315,0.7156937073540561,0.9093406593406592,0.8715596330275229,0.7381818181818182,0.1229508196721311,0.4965087281795511,0.6797900262467191,0.6559386973180077,0.5276639344262295,0.1054808686659772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876519202722,0.0046335726162955,0.0068714919358931,0.0093683953828645,0.0115764523971801,0.0138406542484392,0.0162953143323306,0.0185300513532552,0.0206854945908914,0.022993096949958,0.0250956341595987,0.0272793566344504,0.0294447358407125,0.0316498732768745,0.0337740893279245,0.0357800252321565,0.0380921795522589,0.0397990846729418,0.0416987292806189,0.0439747049079562,0.0592239903103203,0.0733873921004446,0.0857133870156014,0.0983922018107446,0.1110689317009901,0.1267769504146217,0.1400154889084563,0.1525833342205282,0.1644119595648736,0.1745222793257727,0.1879956896551724,0.2006237343931042,0.2125082964300869,0.2233505871023517,0.234652865716016,0.2455710516396532,0.2548159067305437,0.2640180078784468,0.2738158746013189,0.2820207206381223,0.2899047310359197,0.2975338106603023,0.3046851897850798,0.3115292032430749,0.3178376410629778,0.3236705465462509,0.328743674642344,0.3339007164270108,0.3397836118974677,0.3448148538875409,0.3448363973802063,0.3439585081649218,0.3439015450546971,0.343782563390066,0.3438299518057952,0.3433538239847929,0.3417657314946901,0.3427254772876892,0.3438625372980759,0.3443434289095701,0.3460019557695201,0.3484388938447814,0.3479940377469401,0.3483726150392817,0.3486870633582269,0.3493447501696862,0.3493331043562883,0.3518337176611807,0.3534351953138784,0.3566545396393875,0.3580786026200873,0.3584063659336523,0.358917055105038,0.3633624352932086,0.3642390377876693,0.3666866387058118,0.3670727897532021,0.3758734073160707,0.3914261697954609,0.3938688397361273,0.0,2.191597961301618,58.00481482049835,207.63112726276287,299.15990182016645,fqhc4_80Compliance_baseline_low_initial_treat_cost,18 -100000,95689,42599,401.9688783454734,6715,68.96299470158534,5197,53.75748518638506,2117,21.716184723426935,77.30793472821749,79.68467939874988,63.31631099018998,65.07044627939308,77.04372121748175,79.42058322409747,63.21892202876455,64.97572153504908,0.2642135107357433,264.0961746524084,0.0973889614254375,94.72474434400624,119.5689,83.7728364625043,124955.74203931486,87546.98707532139,280.932,176.6172194291523,293034.10005329765,184019.70908793312,301.97705,144.54606251279182,312271.0133871187,148459.10166979197,3468.161,1562.8406660530468,3591013.857392177,1599854.6500152035,1300.09424,566.3287272398184,1349496.410245692,582673.1465892821,2082.05518,869.6476010931765,2139229.9428356444,878697.0502435178,0.37985,100000,0,543495,5679.806456332494,0,0.0,0,0.0,23758,247.69827252871283,0,0.0,27970,288.9987354868376,1858156,0,66739,0,0,4754,0,0,45,0.4702734901608336,0,0.0,1,0.010450522003574,0,0.0,0.06715,0.1767803080163222,0.3152643335815339,0.02117,0.3269530696157663,0.6730469303842337,24.863166717643352,4.517637070259129,0.3271117952664999,0.212430248220127,0.2226284394843178,0.2378295170290552,11.40091038262264,5.85263044643856,22.65991023556129,12666.554446476375,58.84817042706617,13.02220907466779,19.201571457127336,12.984653174928342,13.639736720342706,0.5537810275158745,0.7771739130434783,0.6935294117647058,0.6032843560933449,0.1156957928802589,0.7011406844106464,0.9056603773584906,0.8419753086419753,0.723404255319149,0.159533073929961,0.5038639876352395,0.7121418826739427,0.6471042471042471,0.5645714285714286,0.1041879468845761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0044181427587045,0.0066545613163046,0.0091208255464369,0.011237897648686,0.0133395788358926,0.0156417289514739,0.0179275140377743,0.0199656504937741,0.0223562047680953,0.0248288022306966,0.0268483249314674,0.0287653622666735,0.0307413359706597,0.032887540503168,0.0348495813087976,0.0368969661803713,0.038735465116279,0.0405600807248593,0.0422317900816279,0.0563987924244481,0.071272308578008,0.0839777150591222,0.096822374856686,0.1087540987063375,0.1235154143091322,0.1368825326769648,0.1489323199420919,0.160534188034188,0.1713669666705999,0.1856765925367508,0.1981825066262779,0.2104313222358735,0.2217423629485469,0.2325530229692863,0.2436444198283024,0.2533616024103107,0.2631981637337414,0.2723641356770804,0.2810098163866075,0.287962116037004,0.295103831529687,0.3018007885109456,0.3081935344517243,0.3146437914461276,0.3203654546576949,0.3262974389846239,0.3316834209317753,0.337688481369404,0.3424934838120692,0.3428876023912662,0.3427364818239531,0.342094479065101,0.3418942239366562,0.3417689428396737,0.3407764604705449,0.339741960086437,0.3404536082474226,0.3409473431113248,0.3414052269995874,0.3422980582707121,0.343208551899539,0.3436710991415586,0.3448291336639217,0.344929288045449,0.3457052797478329,0.348258849176754,0.3528182393920203,0.353867432705607,0.355129740518962,0.3578183821503994,0.3597753410002674,0.3615751032073674,0.364488854727133,0.3644115974985787,0.3662408976960726,0.3716638706725637,0.3727511623205983,0.3712183156173344,0.3639817629179331,0.0,2.110525948476373,58.04073645314767,195.79627442687053,296.35861948430414,fqhc4_80Compliance_baseline_low_initial_treat_cost,19 -100000,95720,42945,405.0355202674467,6879,70.84203928123694,5355,55.49519431675721,2072,21.41663184287505,77.38171245272493,79.75478818732824,63.34258245905804,65.09474984405712,77.12546604904173,79.49458759903392,63.24891448057387,65.00101026264588,0.2562464036831926,260.2005882943246,0.09366797848417,93.73958141124206,118.78196,83.17725494829958,124092.22732971166,86895.6197456066,283.8708,178.6831293266586,296098.1299623903,186208.71565187385,310.1514,148.85026508904514,320891.56916005013,153116.4538832067,3536.50228,1595.6666603479227,3668846.1345591303,1641399.3653716838,1300.74493,568.924470807394,1346406.445883828,581946.8122920301,2052.70184,856.9030179892081,2122989.0305056414,877388.0131415615,0.38191,100000,0,539918,5640.555787714166,0,0.0,0,0.0,23922,249.4358545758462,0,0.0,28688,296.5315503552027,1862342,0,66778,0,0,4698,0,0,58,0.6059339740910991,0,0.0,1,0.0104471374843292,0,0.0,0.06879,0.1801209709093765,0.3012065707224887,0.02072,0.3264542936288088,0.6735457063711912,25.0578937587995,4.421650004177212,0.330532212885154,0.2134453781512605,0.2248366013071895,0.2311858076563959,10.96901611089606,5.485294414864966,22.06973248167381,12766.13186273749,60.35197500467787,13.545676349527032,19.90221989984079,13.263957620568428,13.640121134741626,0.5497665732959851,0.7847769028871391,0.6932203389830508,0.5780730897009967,0.1001615508885298,0.7205663189269746,0.9255583126550868,0.8648018648018648,0.7441860465116279,0.123015873015873,0.4926488911039123,0.7081081081081081,0.6383296047725578,0.53276955602537,0.0943204868154158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023395721925133,0.0045717645389208,0.0067073913219953,0.0085427544034292,0.0107716093333604,0.0128105906313645,0.0151516696405811,0.0172832700396096,0.0195352831133782,0.0219572115876752,0.0242252134955865,0.0264679007402388,0.0285679027580675,0.0306860321384425,0.0327956822802183,0.0349455139471888,0.03694190995992,0.0389436546643146,0.0409655344551448,0.0428815572830912,0.0573639525047777,0.0707959969851771,0.0843510008812791,0.0973649608162836,0.1100388136522803,0.1259860837933295,0.1388815210125937,0.1515670910871694,0.1637396914925437,0.1750136762954938,0.1896193175083776,0.201957218325106,0.2148194068321968,0.2258018671972363,0.23608025166641,0.2466953036777893,0.2568975131036021,0.2666126873812174,0.2756657442271923,0.2841048304919797,0.2911571079820897,0.2982919672188643,0.305076520648147,0.3111531915913612,0.3173777820973855,0.3232390460343871,0.3291679175422796,0.3336641726472235,0.3377916461661962,0.3425138168915621,0.343324947194231,0.3434060271261904,0.3431378068002702,0.3422240814736811,0.3421395955642531,0.3409115215963086,0.3409313648003541,0.3411841781999836,0.3416565890548619,0.3426087576157052,0.3423116518483856,0.3436623612592329,0.3454180937265057,0.3472343084097552,0.3484011907048204,0.3501207760837381,0.3515625,0.353416674499483,0.3560039163577873,0.3577570834158906,0.3591039475481491,0.3610815414094103,0.360685932041918,0.3588560885608856,0.3634298693923907,0.3623119178409362,0.3640978311029072,0.3707796193984039,0.3685236768802228,0.3580870917573872,0.0,1.70069878433218,59.649937766307886,206.13572914974637,298.0671145065776,fqhc4_80Compliance_baseline_low_initial_treat_cost,20 -100000,95861,42998,404.12680860829744,6863,70.46661311690886,5373,55.50745350038076,2146,22.05276389772692,77.44506122741345,79.72377661130209,63.40474875222951,65.08467316981228,77.17905953498983,79.45585627072228,63.30717402249589,64.98837967145434,0.2660016924236146,267.9203405798063,0.0975747297336155,96.29349835793732,117.2105,82.06863442006956,122271.30950021384,85612.1200697568,281.51181,176.5684830404491,293107.97926163924,183633.50376112197,307.22924,146.6727378138743,316850.9195606138,150243.56077252812,3515.88984,1579.2285016476817,3633177.819968496,1613105.4446639195,1295.2309,564.0317223334357,1335026.2463358403,572258.5704541055,2108.2817,879.9153383722866,2168072.2713095,891822.3826756264,0.38269,100000,0,532775,5557.786795464266,0,0.0,0,0.0,23712,246.7739748177048,0,0.0,28399,292.61117659945126,1874451,0,67385,0,0,4728,0,0,48,0.5007250080846225,0,0.0,1,0.0104317710017629,0,0.0,0.06863,0.179335754788471,0.3126912428966924,0.02146,0.3203534935100801,0.6796465064899199,25.13388081434665,4.495709629454798,0.3299832495812395,0.2149637074260189,0.2283640424343942,0.2266890005583473,11.109622775218602,5.57201980417328,22.8043281230209,12847.046461921069,60.44390747077015,13.503127763825226,20.0045856967286,13.646389256249126,13.289804753967209,0.5510887772194305,0.7748917748917749,0.6807670614777214,0.5778321108394459,0.1231527093596059,0.701098901098901,0.9238845144356956,0.8344671201814059,0.6840277777777778,0.1568627450980392,0.5,0.7015503875968992,0.6298798798798799,0.5452609158679447,0.1142263759086189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.0047305989728421,0.0069253622380175,0.0090333319800251,0.0115938789196659,0.013846639061562,0.0160209402754012,0.01821203870823,0.0205148628087696,0.0227402862985685,0.0246976787049077,0.0268906528828995,0.0290864273609613,0.0313830772079244,0.0334428864322436,0.0355797318359637,0.0376334077934971,0.0395938034298741,0.0418479107189203,0.0436795721524519,0.0581831831831831,0.0729918619349581,0.0866069185023871,0.0992906312961719,0.1114676486059968,0.1268628361548528,0.1400391762401397,0.1516738735484419,0.163483583394649,0.1750018728796327,0.1885458199443304,0.2016111615049026,0.2137894348307532,0.2246811948641802,0.2356934162254783,0.2459255817041192,0.2559412341715713,0.2658471081345304,0.2747896873086778,0.2835206078220473,0.2915028447199222,0.2991544947433663,0.3053655534780242,0.311909466499012,0.3179903109481429,0.3237239900949846,0.3291494425654516,0.33449193435443,0.3398955403776617,0.3444993134044576,0.3446747753936504,0.344888301969847,0.345642540620384,0.345857181989879,0.3465461013934183,0.3451319325677986,0.3446212623535726,0.3452795915361579,0.346975634690748,0.3481075697211155,0.3489759655849621,0.3491872247131091,0.3499434697039487,0.3514485469856374,0.3527659676683241,0.3545766947828803,0.3548671308796362,0.3583620960150612,0.3604305735155349,0.3641843127924498,0.3667641414602942,0.3690730457069628,0.3735435663627153,0.3750096472948985,0.3814560701353154,0.3839942147764252,0.3863352095059412,0.3845020004211413,0.3876101165103722,0.3865546218487395,0.0,2.055185525175033,60.38266814684375,199.50474229225503,303.7620067974251,fqhc4_80Compliance_baseline_low_initial_treat_cost,21 -100000,95672,42523,400.51425704490345,6898,70.79396270591187,5385,55.5752989380383,2194,22.4935195250439,77.29747507811412,79.70248617523072,63.28577397120039,65.06663818140521,77.02391837917021,79.43177446229319,63.1842911177225,64.96969629655591,0.2735566989439064,270.7117129375263,0.1014828534778899,96.94188484930066,117.26858,82.2106487833033,122573.5638431307,85929.6855749888,283.3861,177.72259959783003,295464.9740781002,185021.47921840247,304.88182,146.4624918790766,314560.41475039715,149948.8094416982,3545.51692,1597.840147075067,3660260.316498035,1624474.743995178,1269.76646,555.4522407334103,1306506.5849987457,559886.664482277,2150.20974,900.6527420368337,2205305.920227444,902583.55647821,0.37903,100000,0,533039,5571.525629233213,0,0.0,0,0.0,23828,248.27535747136048,0,0.0,28248,291.24508738188814,1866119,0,66959,0,0,4747,0,0,49,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06898,0.1819908714349787,0.3180632067265874,0.02194,0.3171440431714404,0.6828559568285596,25.098861550351177,4.456267043680852,0.3331476323119777,0.2089136490250696,0.2315691736304549,0.2263695450324976,10.957707316526362,5.5637892556896205,23.345735055439626,12675.293672133928,60.61828603116172,13.428376277609932,20.07117905605712,13.732978997172657,13.385751700322029,0.5450324976787372,0.7715555555555556,0.6806020066889632,0.5725741780272654,0.1082854799015586,0.7057079318013343,0.9065656565656566,0.8337236533957846,0.7216117216117216,0.1581027667984189,0.4913280475718533,0.6982167352537723,0.6327724945135332,0.5308008213552361,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020977745348412,0.0041486620818371,0.0065485557642519,0.0087592724316634,0.0110575358072916,0.0132208845158793,0.0155440414507772,0.0179939135230081,0.0201785696022582,0.0226213761251804,0.0248838378139969,0.0267410443697927,0.0287651361611506,0.030656197188904,0.0327816381526643,0.0350441672355654,0.0369602620177857,0.0388652953575544,0.0410224931854595,0.0431261789871913,0.057643691369116,0.0712393873726746,0.0844106783075889,0.0970239535446407,0.1097748802666835,0.1246455626560582,0.1381407840681096,0.150746650192787,0.1632535209761418,0.1744387059366712,0.1880123392872551,0.2009562115807847,0.2124321851101379,0.223529798494461,0.232903745025191,0.2429292649098474,0.2521851876690586,0.2624884522656092,0.2723295454545454,0.2807892504184724,0.289434342731982,0.2973859655289582,0.3035259259259259,0.3098172035262184,0.3153082963053137,0.3205566737876786,0.3259511925961225,0.3312664268034397,0.3366680091985085,0.3407424077947523,0.3406397383748429,0.3401462073158934,0.3396135607615542,0.3389987953031336,0.3395852575753061,0.3387869114126097,0.3379027273735757,0.3383422837529355,0.3392844951184542,0.340048535027301,0.3416418720410187,0.3424070747547326,0.3433729892761394,0.3438121411175905,0.3443332691937656,0.3446863997913678,0.3468043236460086,0.3484514667002392,0.3490974348147366,0.3520280221311149,0.3562840031088556,0.3581548950676467,0.3593325327096897,0.3654241939172193,0.3660352464423711,0.3655632293403191,0.3643818660064985,0.3642139782742365,0.3697829716193656,0.3726176584986386,0.0,2.6704509586874905,59.01936977378424,200.4557162999848,308.0544681406532,fqhc4_80Compliance_baseline_low_initial_treat_cost,22 -100000,95837,42951,402.9132798397279,6736,68.96083975917443,5232,54.10227782589188,2172,22.350449200204512,77.32864418348662,79.63989841139644,63.32870225298407,65.0387055536641,77.06461716102973,79.37410278480313,63.23092494910226,64.94254064518961,0.2640270224568866,265.79562659331657,0.0977773038818057,96.164908474492,118.13054,82.81301648060908,123261.47521312228,86409.87592965683,279.8346,175.8095895473068,291484.08234815364,182941.7426390564,303.19232,145.44289965114112,313563.947118545,149605.94130958474,3492.70926,1574.5835495021452,3615364.838214886,1614063.2873351995,1292.30222,564.1998838054454,1336312.1550131997,576608.0988688648,2134.99604,890.0916651020395,2198402.20374177,902444.950596384,0.38276,100000,0,536957,5602.794327869195,0,0.0,0,0.0,23600,245.71929421830816,0,0.0,28012,289.44979496436656,1865167,0,66962,0,0,4799,0,0,53,0.55302231914605,0,0.0,1,0.0104343833801141,0,0.0,0.06736,0.1759849514055805,0.3224465558194774,0.02172,0.3202429721712106,0.6797570278287893,25.127172850291025,4.496382131728148,0.3207186544342507,0.2041284403669724,0.235282874617737,0.2398700305810397,10.91932734496253,5.429190834058066,23.074344778606125,12850.628623951889,58.95199652186608,12.673713603577616,18.967185663844187,13.596609718588669,13.714487535855609,0.5508409785932722,0.7930711610486891,0.7079856972586412,0.5515840779853778,0.1338645418326693,0.6965361445783133,0.9035812672176308,0.8505747126436781,0.7192307692307692,0.1481481481481481,0.501280737704918,0.7361702127659574,0.6580852775543041,0.5066941297631308,0.1299492385786802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611333367093,0.0052305072375623,0.0075178816009739,0.0098833902161547,0.0118568232662192,0.0141111789859499,0.01634899602487,0.0185024544072172,0.0208984814110818,0.0231054171868284,0.0252669112071968,0.0273490415007594,0.0294531739751508,0.0318406423718344,0.0340606760574999,0.0361149563025557,0.0381745744295545,0.0403836184551581,0.0424924176326394,0.0445055059430879,0.0582106053652634,0.0720140515222482,0.0857930485094964,0.0988282276286059,0.1112645471411705,0.1267918305213751,0.140425667292336,0.1526805286568625,0.1638328776486671,0.1740915865204198,0.1875242321113169,0.1999047814843268,0.2129193627317709,0.2234283278129406,0.2336520581406863,0.2446214521525269,0.2552231639364399,0.2645233939530432,0.2744536822497842,0.2821895181178954,0.2894367585495112,0.2969723274719344,0.3050314091983233,0.3116467986925591,0.3183754960921331,0.3244047251675657,0.3303488576229528,0.3358754288192009,0.3410504447185613,0.3464286659433138,0.3472891444304976,0.3467861037114739,0.3471292982729111,0.346861754630436,0.3466839702855097,0.3461112648768336,0.3458640640895218,0.3463286137635825,0.3474973485237264,0.347863370015721,0.3497953973795847,0.350949448547611,0.3518526280492916,0.3521136211138447,0.3536876068478967,0.3554043444124575,0.3566898994515539,0.358711059312691,0.3588447906797207,0.3614539105591048,0.3640140620006392,0.3665831422935437,0.3662694891621245,0.3686841498115819,0.3731385753580575,0.3743824557175563,0.3748070392096326,0.3783617327037569,0.3819290465631929,0.3856695379796397,0.0,1.8503893172901364,58.83260175615863,190.01613221190416,303.70255564900765,fqhc4_80Compliance_baseline_low_initial_treat_cost,23 -100000,95735,42769,403.5096882018071,6853,70.18331853554082,5329,54.96422416044289,2148,22.04000626730036,77.35098256499538,79.69901541785464,63.33757887846742,65.07090092545639,77.08673504423166,79.43524749810535,63.240074043006274,64.97615829865715,0.2642475207637176,263.7679197492844,0.0975048354611445,94.74262679923127,118.80858,83.2418598133274,124101.5093748368,86950.28966765279,281.56018,176.52934426554327,293400.69984854024,183691.0064808763,307.05373,147.8020017428236,316023.408366846,150728.36218837005,3480.98303,1576.3678298793652,3596021.9459967623,1606585.2755207715,1287.34095,562.3506046616658,1329747.9500705071,572463.900398938,2106.62434,879.1462561602197,2164799.3314879616,887066.990317169,0.38038,100000,0,540039,5640.977698856218,0,0.0,0,0.0,23773,247.5792552358072,0,0.0,28395,291.8577322818196,1862356,0,66857,0,0,4769,0,0,57,0.5953935342351282,0,0.0,0,0.0,0,0.0,0.06853,0.180161943319838,0.3134393696191449,0.02148,0.3303186308612773,0.6696813691387227,24.786045846030035,4.421042714060137,0.3150684931506849,0.2272471382998686,0.2341902796021767,0.2234940889472696,11.068752369010587,5.666328246788127,22.772669579395775,12694.068830654624,60.05662574684532,14.35371704365652,18.785084888261892,13.868812368275572,13.049011446651356,0.5501970350910115,0.7762180016515277,0.6873138773079214,0.5625,0.1141897565071368,0.7174231332357247,0.9429280397022332,0.8741258741258742,0.6749116607773852,0.1354581673306772,0.4925561443350997,0.693069306930693,0.6232,0.5295336787564767,0.1085106382978723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369548266888,0.0047131085231246,0.0067476383265856,0.0091208255464369,0.0109912456406137,0.0130508698883244,0.0152903640125992,0.0174213894246961,0.0198182728768691,0.0219736357309534,0.0239152050680143,0.0261961219064042,0.0285820036190162,0.0305735763567088,0.0325988280927622,0.0346866214651893,0.036747879930004,0.0385593176370484,0.0405260695534646,0.0425347945662138,0.0576758460863937,0.0715115123492305,0.0846762778505897,0.097900480460906,0.1103720180052919,0.1254215071722286,0.1384997189491881,0.1505108556832694,0.1624272207681213,0.1732054541748468,0.1860457600827301,0.1985949948042951,0.2108698490057003,0.2212895883035303,0.2317152388606912,0.2420906773085024,0.2521754672088113,0.2614439393257415,0.2705230657464584,0.2786937876946362,0.2867182253919003,0.2948495844551094,0.3020649665700254,0.3084590226779917,0.3153114869540934,0.3212860801891439,0.3272256547514821,0.3318708988249657,0.3381204594605094,0.3425021128248468,0.3425682507583417,0.3425412841507457,0.3427760840108401,0.3432591433373906,0.343150246415437,0.3430281636098534,0.3418905188289833,0.3424966646352511,0.3432585232139797,0.3433244457169443,0.3439378004807692,0.34495863188314,0.3471204518255684,0.3477091365551869,0.3496412577647229,0.3502198032237806,0.3513065828930458,0.3549109960863527,0.3585654571639327,0.3614146632227299,0.3647074941772845,0.3681965989658297,0.3695033217336286,0.3706363150255901,0.3743280203715929,0.3755661501787842,0.3760910224438902,0.3774008990600735,0.3857938718662952,0.3776575183610359,0.0,2.6895100276059973,59.56808775838305,196.51316621553968,303.040168714847,fqhc4_80Compliance_baseline_low_initial_treat_cost,24 -100000,95839,42742,400.2128569788917,6848,70.2741055311512,5285,54.52894959254584,2106,21.588288692494704,77.51248185563044,79.79857849535239,63.42745123530996,65.11100671200535,77.26092303648247,79.54997129961059,63.33555818044045,65.02339561154604,0.2515588191479736,248.60719574179768,0.0918930548695158,87.61110045931275,118.30258,82.83957390918737,123438.87144064523,86436.18350482304,282.53564,177.52514244379498,294176.0765450391,184606.38408559663,309.41828,148.98594463406775,319146.0052796878,152550.60433234257,3481.90333,1566.1542204003156,3593161.959118939,1594237.607237466,1304.0503,566.9843056105799,1342195.6510397648,573128.7843264015,2078.55064,855.1813559811443,2131436.7011341937,858728.9207594676,0.37981,100000,0,537739,5610.857792756602,0,0.0,0,0.0,23842,248.12445872765784,0,0.0,28614,294.8903890900364,1871376,0,67086,0,0,4656,0,0,42,0.4278007909097549,0,0.0,0,0.0,0,0.0,0.06848,0.1803006766541165,0.307535046728972,0.02106,0.3302815924538771,0.6697184075461229,25.247042283344094,4.561506783274063,0.3288552507095553,0.2211920529801324,0.2157048249763481,0.234247871333964,11.163196902268798,5.52185869596266,22.264952577440013,12774.007909444656,59.25114208884996,13.635820633857616,19.51424303838501,12.589893277027391,13.511185139579933,0.5532639545884579,0.7690333618477331,0.7025316455696202,0.5754385964912281,0.1195476575121163,0.7338830584707646,0.9300518134715026,0.8820861678004536,0.7490196078431373,0.1587301587301587,0.4922804353328271,0.6896551724137931,0.6414803392444102,0.5254237288135594,0.1095334685598377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024993422783478,0.0051346451828521,0.0074904468928328,0.0100760012582317,0.0122107316280298,0.0144309976609376,0.016554336095783,0.0187326643824441,0.02101436696517,0.0234379793434911,0.0256620312532,0.0280284694589161,0.0305891781919812,0.0328520115681895,0.0349907729105023,0.0371739916335278,0.0390529605331236,0.0408709175738724,0.042810247034136,0.0448085952547031,0.0596032706186642,0.0737170103308377,0.0868786151395758,0.0992248550541971,0.1120131408535237,0.1276615969581749,0.1406269871550299,0.1526405886168143,0.1639687129853915,0.1746407384404514,0.1883077783273478,0.2007840850181441,0.2129488905293325,0.2237714135977027,0.2337448378877075,0.2450633527187493,0.2547586959669425,0.2640060190228072,0.2727128641133917,0.2814167380748357,0.2888476307990359,0.2963610101574876,0.3035019455252918,0.3099260886697154,0.3159423798571601,0.3220532599616764,0.3274024014663159,0.3317034240762088,0.3367591685149843,0.341373107676956,0.3416674486882147,0.341833520501794,0.3419175855739726,0.341503432593083,0.3407970875079546,0.3399599957247339,0.3392030096580939,0.3394563062251134,0.3401959948870899,0.3416755793226381,0.3430704741943935,0.3446227327451793,0.3449004792900647,0.3460534243824061,0.347453775683498,0.3488884282530963,0.3496840375187736,0.3523135003588031,0.3535676992690567,0.3552492461918001,0.357242121307213,0.3601754660817797,0.36525086934923,0.3689437255492025,0.3686063750926612,0.3688438700663639,0.3717852308617837,0.3742101105845181,0.3782172852885397,0.3841234010534236,0.0,2.437606370044743,58.335032855013424,197.4213014897609,296.9509831085752,fqhc4_80Compliance_baseline_low_initial_treat_cost,25 -100000,95739,42641,401.6336080385214,6754,69.32389099531017,5306,54.86792216338169,2099,21.62128286278319,77.31288813594676,79.67227316425854,63.318020272784125,65.06230754340012,77.05273914615418,79.41008387595359,63.22300609821602,64.96845459979714,0.260148989792583,262.1892883049526,0.0950141745681065,93.85294360298246,119.306,83.55756401974378,124615.8827645996,87276.4119321737,281.37223,177.0598157161473,293326.1680193025,184371.18177142783,308.33977,148.11250934498685,318556.62791547854,151948.80505492186,3482.14956,1579.4114461657834,3603488.724553212,1616066.5519441226,1277.33808,559.9114480682603,1321954.7728720792,572598.0510223213,2056.96926,854.9012446178119,2120344.499106947,869565.406921833,0.37962,100000,0,542300,5664.358307481799,0,0.0,0,0.0,23759,247.56891131096,0,0.0,28611,295.2506293151171,1858750,0,66781,0,0,4713,0,0,59,0.6162587869102455,0,0.0,0,0.0,0,0.0,0.06754,0.1779147568621253,0.3107787977494818,0.02099,0.3211873944850872,0.6788126055149127,24.991174638941008,4.436956327940468,0.3277421786656615,0.2203166226912928,0.2293629852996607,0.2225782133433848,11.145377421474246,5.710196300400054,22.44931006944609,12715.90632956443,60.34619691189224,13.94892102266762,19.75041135991101,13.615470097319667,13.03139443199395,0.559743686392763,0.7810094097519247,0.7055779183438758,0.5809367296631059,0.1041490262489415,0.7296908698777858,0.911904761904762,0.8758169934640523,0.7316176470588235,0.1291666666666666,0.4993614303959131,0.7076101468624834,0.64453125,0.5375661375661376,0.0977683315621679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339524803014,0.0047030681438084,0.0068182509968648,0.008948523138179,0.0113098931052369,0.0136150712830957,0.0159477923931885,0.0181825606680891,0.0202016071319034,0.0221378032172515,0.02444351026853,0.026605740103712,0.0285911161848343,0.0308283377623962,0.0326527664579228,0.0347468400219105,0.0368310967528164,0.0389923011475647,0.04091967888191,0.042947342099231,0.0570966226444641,0.0712006277792309,0.0846581375838926,0.0977679181605038,0.1106811879935476,0.1264000676897693,0.1386386545705342,0.1509313464608834,0.162011471540113,0.1724389354721108,0.1861717017290756,0.1983021520493132,0.2104135861529094,0.2209559225637099,0.2312457364170499,0.2418522211144344,0.2521848805152188,0.2618259969394185,0.2717051842598376,0.2806462701959436,0.2886169449139787,0.2967693639319718,0.3028940580704702,0.3100629307761462,0.31620265163023,0.3220000493108804,0.3277214079919829,0.3332569478923984,0.3387633969648665,0.343331526696366,0.3435063007636471,0.3438029741313965,0.3431906724634408,0.3432424993118634,0.3426880004771775,0.3411648932898702,0.3401476343504406,0.3415788518939956,0.3428537100290074,0.3441425597588113,0.3441681880634658,0.3461148547915797,0.3474282107920479,0.3488695808356346,0.3510031423737007,0.3522643883006604,0.353256507281275,0.3559150015857913,0.3576838677709351,0.359148151118954,0.3608825557343139,0.3628157880681514,0.3639972276479112,0.3681755620125401,0.3706896551724138,0.3700974566199191,0.3750965549204387,0.3811750355763366,0.3839509612705489,0.3930877326243828,0.0,2.18729238916164,61.492043236884896,201.78704363081675,293.5634740819414,fqhc4_80Compliance_baseline_low_initial_treat_cost,26 -100000,95782,42836,402.6852644546992,6853,70.38900837318077,5377,55.57411622225471,2155,22.08139316364244,77.37208356525132,79.71286711775113,63.35007434272507,65.08058704688887,77.10695427799081,79.44885721156244,63.25272523371541,64.98655271545368,0.2651292872605069,264.00990618869,0.0973491090096629,94.03433143518214,118.19544,82.70568187105684,123400.4719049508,86347.83348756221,282.6011,177.4558281783408,294486.1351819757,184710.5282603629,302.32083,144.81645848755778,312984.9763003487,149046.29245420618,3528.15068,1589.8265463510468,3646522.7704579146,1622839.684231949,1301.45147,569.023148250646,1341868.1693846444,577185.5340780584,2118.8184,888.1846375768394,2173147.8565910086,892554.1365007198,0.38201,100000,0,537252,5609.112359315947,0,0.0,0,0.0,23901,248.96118268568208,0,0.0,28008,289.70996638199244,1868024,0,67083,0,0,4791,0,0,51,0.5324591259318034,0,0.0,0,0.0,0,0.0,0.06853,0.1793932096018428,0.3144608200787976,0.02155,0.3256200637383954,0.6743799362616045,25.077698749691884,4.482356748014331,0.3282499535056723,0.2146178166263715,0.2276362283801376,0.2294960014878184,11.094609000461556,5.622158884379907,22.99038673332148,12798.467078145362,60.6551303448061,13.528778392515392,19.92962587806951,13.709632691582074,13.48709338263913,0.5512367491166078,0.7590987868284229,0.7014164305949009,0.5735294117647058,0.119935170178282,0.7196122296793438,0.919889502762431,0.868663594470046,0.7491289198606271,0.1550387596899224,0.4952923686818632,0.6856060606060606,0.6468820435762584,0.5197438633938101,0.110655737704918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0048152954057013,0.0071949016662945,0.0094879166201074,0.0116953117054815,0.0138764456751913,0.0162676207075803,0.0184092903647162,0.0204790712884238,0.0226384198137345,0.0246564392658406,0.0268475661696035,0.0288433863739155,0.0311576519527589,0.0335247955616511,0.0357600429823111,0.0379463823620743,0.0398743103662836,0.0419467794391163,0.0437693260731501,0.058397512157452,0.0728801681850035,0.0863393821220031,0.0987937121721587,0.1106147605752515,0.1261291719933649,0.1387920345072437,0.1510601646073031,0.1626564517333731,0.1736517323391399,0.1872559250373844,0.2004172431684538,0.2126998272058424,0.2242932417954828,0.2342065901192204,0.2450907641019393,0.2558461263834345,0.2648249342238413,0.2733539689558601,0.2813841908186284,0.2898580895874535,0.297054937860241,0.3045966140168353,0.3109559677631815,0.3178381133861708,0.3238633564849022,0.3298615457800255,0.3354653306715155,0.3402556737313356,0.3447052617697481,0.3446833689702935,0.3435309639647068,0.3440752545623783,0.3438232485458807,0.3438773385681568,0.3429736233083513,0.3416427631891729,0.3427867236279986,0.3446574497610115,0.3458070978820836,0.3469778261358947,0.3480326181616657,0.3495888916855441,0.3498109069751829,0.3516255753982599,0.3515353001230334,0.3536753313823377,0.3560411718131433,0.3585398573748499,0.3603935055586659,0.3630491547940813,0.3659799316823228,0.3666877770740975,0.3689663111042898,0.3708420452385478,0.3742683072512244,0.3720036877688998,0.3736307508464449,0.3764289602612956,0.3814549566528458,0.0,2.232102020271303,58.90397016745774,206.53867851192092,302.6197548277963,fqhc4_80Compliance_baseline_low_initial_treat_cost,27 -100000,95651,42701,403.0590375427335,6830,70.32859039633668,5332,55.22158681038359,2190,22.561185978191556,77.25911226955019,79.653967989389,63.27736057920528,65.04506825998287,76.99676459269057,79.39251457699501,63.18199952650953,64.95276541488721,0.2623476768596191,261.45341239399045,0.0953610526957504,92.30284509565934,118.3864,82.91708370827565,123769.11898464207,86687.10594586116,280.79223,176.16537864346395,293007.8723693427,183623.9126025488,304.91278,146.11073484089803,315597.5055148404,150305.76266244682,3511.9849,1574.2598286688733,3639313.598394162,1613485.2522910102,1304.94034,566.2606438560193,1350952.5880544898,578687.0642816266,2153.56936,882.9496359266941,2220062.2889462733,894610.2553221853,0.38094,100000,0,538120,5625.869044756459,0,0.0,0,0.0,23683,247.03348632005935,0,0.0,28217,291.83176338982344,1859885,0,66843,0,0,4628,0,0,57,0.5959164044285998,0,0.0,1,0.0104546737619052,0,0.0,0.0683,0.1792933270331285,0.3206442166910688,0.0219,0.3148793752614698,0.6851206247385302,25.236705034081776,4.483731043726125,0.3332708177044261,0.2091147786946736,0.2259939984996249,0.2316204051012753,11.040286716273616,5.496928838668314,23.166953709558623,12777.773740320656,60.20803165236277,13.379401408448553,20.011526727825867,13.410397973424685,13.406705542663664,0.5508252063015754,0.7901345291479821,0.7000562746201463,0.570954356846473,0.1004048582995951,0.7272727272727273,0.9335038363171356,0.8834498834498834,0.7105263157894737,0.1428571428571428,0.4921269682579355,0.712707182320442,0.6416913946587537,0.531416400425985,0.0898989898989899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271638827831,0.0046035753759417,0.0070945740210705,0.0092058201918387,0.0115265272902996,0.0138920008962581,0.0161000876888879,0.0180283185479342,0.0200672657200396,0.0219870206972792,0.0239703907235203,0.0260188313088478,0.0282437644638724,0.0300804549153729,0.0320942808197973,0.0343586827276017,0.0362163450083392,0.0384164253313818,0.0402949834097835,0.0425223609865938,0.0573070693348659,0.0713043842560589,0.0851316300706717,0.0978445144102688,0.1097253170839889,0.1247338932607475,0.1369724780387283,0.1494480671695861,0.1609778005902733,0.1727085301950004,0.1865966259653967,0.1999588272260385,0.2117284421256712,0.2227273723187485,0.2333359062289803,0.2450674512851829,0.255604528369429,0.2652743634272311,0.2747430182843627,0.2833773693279724,0.2912073886710138,0.2988199690329846,0.3058136637117732,0.3120918766159581,0.3180692918379044,0.3237442978823355,0.3289551339201627,0.334167198468411,0.3396103896103896,0.3440734955389055,0.343992758616031,0.3438989678471253,0.344686995668054,0.3455320015121114,0.345912419668211,0.3451418718150047,0.3439190479221027,0.3450340629793972,0.3452074096985943,0.3460254799928225,0.3470543948804818,0.3478096901609734,0.3504503746106575,0.3511999462208977,0.3524064429012346,0.3540306149104018,0.3558615173674588,0.3584172798181071,0.3597883597883597,0.3620435042905607,0.3652894833272261,0.3691074291822555,0.3688883251950028,0.3694938544927094,0.3720296797219874,0.3716159809183065,0.3758245129621108,0.3790518638573744,0.3785216178521617,0.3632797175362887,0.0,1.9844488627960053,58.940850588879385,202.77379467218068,302.5545365648496,fqhc4_80Compliance_baseline_low_initial_treat_cost,28 -100000,95618,42770,403.1667677633919,6809,70.04957225626974,5356,55.43935242318392,2169,22.338890167123346,77.28554750318864,79.7183844649842,63.27381344368566,65.07218626135541,77.01046624068402,79.44152424284295,63.17171019926888,64.97210164973977,0.2750812625046137,276.86022214125217,0.1021032444167815,100.08461161564242,118.94168,83.31257006093992,124392.56206990316,87130.63446311356,286.37453,180.06903038933453,298958.37603798445,187781.0876501648,311.19798,149.2986857783769,321682.49701938964,153242.9807750048,3533.83932,1595.5894875176614,3661407.1304566087,1634591.5203187834,1270.9476,556.8570653722644,1315831.9563262148,569111.0967314207,2137.08816,897.6275844358202,2203941.161705955,911914.2439180498,0.3795,100000,0,540644,5654.20736681378,0,0.0,0,0.0,24130,251.7831370662428,0,0.0,28725,296.73283273023907,1854175,0,66597,0,0,4570,0,0,62,0.6274969148068356,0,0.0,0,0.0,0,0.0,0.06809,0.1794202898550724,0.3185489792921134,0.02169,0.3209445298309347,0.6790554701690652,25.155289078483037,4.513917657121962,0.3246825989544436,0.217513069454817,0.2231142643764003,0.234690067214339,10.978009561661269,5.465694747309314,23.274606194181487,12733.846484184152,60.68071881837936,13.744784561694203,19.69548196323445,13.45112429115016,13.78932800230056,0.5498506348020911,0.7656652360515022,0.6975273145485912,0.5983263598326359,0.0994431185361972,0.6989795918367347,0.8969072164948454,0.8449074074074074,0.7368421052631579,0.1348314606741573,0.4984939759036144,0.7001287001287001,0.648814078041316,0.554945054945055,0.0898989898989899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022294284556141,0.0045035450202355,0.0068635016041912,0.0090257661228845,0.011170797216457,0.0133952673450885,0.0155257010537483,0.0178367113435763,0.0198218285585705,0.0218553491325454,0.0243226885239174,0.0265207562679819,0.0287078877211763,0.0307697065281256,0.0331037616033537,0.0352406959184095,0.0373794003958672,0.0390914661376925,0.0410109084853026,0.0431948095297701,0.0577554305784951,0.0724466056045775,0.0860874956651499,0.0986608506917006,0.1114620747939995,0.1267475851550584,0.139699475037725,0.1527243265140773,0.1640877474585339,0.1746945880027076,0.1880354792066814,0.2004662257399978,0.2131592427495558,0.2240961742885009,0.2344664850977495,0.2453517155638438,0.2552632461622746,0.2649396327234604,0.2734816364111716,0.2814137776809367,0.2896002038948551,0.2972377761638123,0.3040100577609621,0.3104893928837421,0.3166835113183883,0.321818922824221,0.3275795068506888,0.3326532433914385,0.3377567714960916,0.3421466834204087,0.3418869146395758,0.3417067423626517,0.3416886729837741,0.3416733067729083,0.3421123153882801,0.3403398789219753,0.340001271092186,0.3399162572945172,0.3404350136263133,0.3411308840413318,0.3416303203489246,0.3417503416315133,0.3426112934444164,0.3439687668282175,0.3454304316373282,0.3475608166245144,0.3499587915991701,0.35326973766788,0.3549074397485155,0.3564497603865499,0.3560733627633914,0.3581986388770736,0.3575447246981478,0.3580256332010986,0.3605769230769231,0.3623874940786357,0.3628821631587033,0.3676710097719869,0.3681905283328771,0.3677639046538025,0.0,2.270093958898859,60.66399280879168,203.6203504219632,299.0622033988504,fqhc4_80Compliance_baseline_low_initial_treat_cost,29 -100000,95814,42765,402.2167950403908,6841,70.17763583609911,5328,55.09633247750851,2181,22.40799883106853,77.35864855579545,79.66359536605046,63.35358995694328,65.05446117746243,77.08366325718036,79.38761632636644,63.252280479779934,64.9550645218329,0.2749852986150927,275.9790396840174,0.1013094771633404,99.39665562953336,118.91264,83.28632287406569,124107.7921806834,86925.0035214746,283.02923,178.6462349189838,294854.00880873355,185920.9866658077,309.31326,148.97499273982865,319780.00083495106,153150.88363005064,3509.2976,1601.4528586792171,3629150.2076940737,1638655.7562071234,1288.86924,571.0295272429571,1329547.7278894526,580493.14851336,2141.02094,905.5292412318338,2200683.553551673,917405.1580220006,0.38168,100000,0,540512,5641.263280940156,0,0.0,0,0.0,23905,248.9197820777757,0,0.0,28689,296.345001774271,1859397,0,66797,0,0,4756,0,0,49,0.5114075187342142,0,0.0,0,0.0,0,0.0,0.06841,0.1792339132257388,0.3188130390293817,0.02181,0.3316184649610678,0.6683815350389322,24.90069583128624,4.446763273100123,0.3299549549549549,0.2147147147147147,0.223536036036036,0.2317942942942943,10.992057245144306,5.555989667877472,23.51129028222583,12785.803951283013,60.62769323277087,13.57765369913326,19.985931260367767,13.288733412563753,13.7753748607061,0.5497372372372372,0.7840909090909091,0.6979522184300341,0.5667506297229219,0.1052631578947368,0.7139830508474576,0.9238578680203046,0.8771551724137931,0.697594501718213,0.1385767790262172,0.4902862985685071,0.7106666666666667,0.633693972179289,0.5244444444444445,0.0960743801652892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023682772301277,0.0047908922403751,0.0072285247929276,0.0094269739312206,0.0117347042448133,0.0140277707135954,0.016206250254655,0.0184733712117348,0.0206464662975297,0.0227398269195359,0.0247357423795476,0.0267811352493486,0.0289412852519648,0.03090205602091,0.0329834618715717,0.0351669007684045,0.0372278784868802,0.0394758666445513,0.0414641239768997,0.0431826936090029,0.0570647638123852,0.0715532833589478,0.0847946167471988,0.0970416688560769,0.1089565923006396,0.1244663313184258,0.13721706864564,0.1499542562924193,0.1620507783305929,0.1731317679854186,0.1869522148286926,0.1995542862088364,0.2116229501065727,0.223058494054326,0.2336775813093167,0.2445629281486243,0.2558243377501926,0.2652466468629039,0.2746112813528544,0.2826086956521739,0.2906840783060697,0.2984941804641577,0.3057634907850476,0.3125442353138758,0.318724227274386,0.3246724405951587,0.3301240719642432,0.3342157848515317,0.3397050438028096,0.3439638544666684,0.3439361673450683,0.3444025122582778,0.3438147453876619,0.3444536028805692,0.3442354621748705,0.3436239552181581,0.3441015470051566,0.3452829877978494,0.3464110566205974,0.3474804393080181,0.3477049365515683,0.3494143339289259,0.3502508114488049,0.3512572968118545,0.3508309981640738,0.3526509186351706,0.3528601755694532,0.3544612847992897,0.3553306677046106,0.3575204228736184,0.3609470165315748,0.3628038984684588,0.3620842853516121,0.3618871700146233,0.365025466893039,0.3654642223536369,0.3727510379824696,0.376689881196231,0.3741189737806597,0.3741035856573705,0.0,1.8627054275617452,62.81370716451291,203.3186439071792,291.0846437899118,fqhc4_80Compliance_baseline_low_initial_treat_cost,30 -100000,95871,42523,400.6320993835467,6741,69.19715033743259,5214,53.90576921071023,2096,21.560221547704728,77.41454581429173,79.7032502911355,63.37712166936033,65.06809053089725,77.15877450305643,79.44736463921933,63.2832970560566,64.97666909664645,0.2557713112352928,255.88565191617363,0.093824613303731,91.42143425080462,118.1818,82.83855255363471,123271.6879974132,86406.26733176321,278.37436,175.16757567596852,289889.59122153727,182237.8672132016,306.21526,147.15404632604734,316630.4930583805,151310.44756379648,3423.73674,1554.1580192474903,3539701.4529941278,1589603.174314955,1238.01136,541.6154622992065,1278284.413430547,551895.9354749677,2056.8692,853.2498779449484,2116230.893596604,864037.0471486876,0.37896,100000,0,537190,5603.258545336964,0,0.0,0,0.0,23472,244.3491775406536,0,0.0,28322,292.64323935288047,1869255,0,67056,0,0,4636,0,0,49,0.5111034619436535,0,0.0,0,0.0,0,0.0,0.06741,0.1778815706143128,0.3109330959798249,0.02096,0.328255043024404,0.671744956975596,24.979267520218617,4.429163202547529,0.3262370540851553,0.2217107786728039,0.2209436133486766,0.231108553893364,11.203770915931084,5.804763678613976,22.218538826628134,12688.747817748384,59.12274921219237,13.730872811770888,19.30899426378365,12.907961704771273,13.174920431866544,0.547180667433832,0.7863321799307958,0.6766607877718989,0.5876736111111112,0.0962655601659751,0.7111436950146628,0.908653846153846,0.8590604026845637,0.7192307692307692,0.0871369294605809,0.4890909090909091,0.7175675675675676,0.6116427432216905,0.5493273542600897,0.0985477178423236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022371817583641,0.004680613950661,0.0069257835870083,0.0089436176476559,0.0112003252363045,0.0133090487286195,0.015403422982885,0.0176261781386429,0.0198169485985127,0.0218578676049423,0.0237948907053448,0.0259313966847201,0.0279279094141098,0.0300354084321475,0.0324971905189034,0.0344966484543642,0.0363457658682944,0.0382104215893545,0.0402470673725734,0.0421278189231921,0.0565032427585344,0.0700833977802395,0.0837672201560944,0.0971135774210145,0.1096111116961342,0.125145222956845,0.1388938910839698,0.1520662386803282,0.1630732794947566,0.1739665881345041,0.1871624965039478,0.2002075698115655,0.2116345777739145,0.2222003693141464,0.2325765401437394,0.2432728479752157,0.2524751371359764,0.2624481677510704,0.2716973429047732,0.2801236546828486,0.2879777944833169,0.2952828644262026,0.3022061867865381,0.308995698074319,0.3151485689979947,0.3208377505485565,0.3266108336150023,0.3318188759926695,0.3373834563066509,0.3414150756424655,0.3415872930335322,0.3411803576591087,0.3415706275183859,0.3416953267246611,0.3417725280439789,0.3414888079125455,0.3413658428600793,0.3430174379500976,0.3433705101709679,0.3442514799229726,0.345243662894023,0.3460664836358608,0.3477596954357194,0.3480132967449746,0.3489020229686224,0.3501561686621551,0.3506430685180969,0.3510634965385458,0.3531599817524651,0.3565410904466699,0.3585865467593223,0.360283988555685,0.3626023373539154,0.3661218648791142,0.3683031547507933,0.3709829867674858,0.3778998778998779,0.3826934795856185,0.3809262811729241,0.3913701741105223,0.0,1.893544615137516,60.40089833552357,194.8847159023269,292.0746975439407,fqhc4_80Compliance_baseline_low_initial_treat_cost,31 -100000,95725,42620,402.528075215461,6908,71.22486288848263,5390,55.889266126926096,2206,22.77357012274745,77.36002699221102,79.7323526579541,63.33690834044432,65.08873805934006,77.09463655212245,79.464182443824,63.24050037260307,64.99358392454764,0.2653904400885665,268.17021413009456,0.0964079678412517,95.1541347924234,117.79922,82.48420941993751,123060.03656307128,86167.88657084096,280.74972,176.05022411447405,292876.3854792374,183501.10022057185,306.50066,146.01899029705874,317702.7526769392,150608.423998757,3565.55266,1594.175798673221,3697860.0574562554,1638443.417780162,1331.16945,576.2216406511382,1377595.5393053016,588932.3798914998,2176.81706,897.7574348058355,2247864.110733873,913982.3123364148,0.37975,100000,0,535451,5593.63802559415,0,0.0,0,0.0,23712,247.28127448419957,0,0.0,28300,293.16270566727604,1870413,0,67075,0,0,4608,0,0,53,0.5536693653695482,0,0.0,1,0.0104465917994254,0,0.0,0.06908,0.181909150757077,0.3193398957730168,0.02206,0.3238292011019283,0.6761707988980716,25.20820961738692,4.477687179118612,0.3148423005565863,0.2185528756957328,0.2270871985157699,0.2395176252319109,10.921838319212618,5.409404592357222,23.26623565191335,12715.14523671414,60.75077417052604,13.83059972397528,19.12043423304876,13.574409768390993,14.225330445110991,0.5452690166975881,0.766553480475382,0.6823806717737183,0.5906862745098039,0.1200619674670797,0.6997690531177829,0.8991825613079019,0.8429561200923787,0.7165354330708661,0.1306122448979592,0.4962111953067709,0.7065351418002466,0.627373417721519,0.5577319587628866,0.1175908221797323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168629913603,0.0043690255349775,0.0065859573993079,0.0087872569536154,0.0110256723219008,0.0129831778746283,0.0151172273190621,0.0174324848435363,0.0194428826986966,0.0214377853764409,0.0234062621747421,0.0254507001765841,0.0275286907161367,0.0294887112722478,0.0316859265373503,0.0338495895452947,0.0357727451671052,0.0380208008968051,0.0398477236558804,0.0418785428476158,0.0563527372224659,0.0707101365848553,0.0837765538945712,0.0959928481278923,0.108255139694254,0.1242784954648286,0.1372093516632722,0.1493577669231342,0.161351645769699,0.1728791015478348,0.1872427983539094,0.1997316278717441,0.2114301863002978,0.2225623421630899,0.2330492163871322,0.2449994462288182,0.2549115858760529,0.2645719233926744,0.2731354452481915,0.281540170137736,0.2892810472633076,0.2971365123889668,0.3046774288924369,0.3115136856725496,0.3175227686703096,0.3232743755234764,0.3283703472005004,0.333223148901546,0.3379928037068675,0.3421861600369417,0.3425008081025751,0.3431436008318299,0.3432227300942385,0.3428827863750199,0.3431994047619047,0.3430520426151606,0.3424969911952872,0.3437802536796679,0.3442194309151499,0.3452580818003214,0.346320427486641,0.3467421199469716,0.3470584539342786,0.3481100424960859,0.3496533795493934,0.3504177545691906,0.3518142567123209,0.3541462489330088,0.3564713366791546,0.3575179380286207,0.3626621285990249,0.3644709292961829,0.3663115169964485,0.3717702982442689,0.3729724632214258,0.3756544502617801,0.3763820638820638,0.3829352929169218,0.3851707858928075,0.3853639548462437,0.0,1.6176327044493164,57.7929119705044,210.86394659663577,305.7907583344392,fqhc4_80Compliance_baseline_low_initial_treat_cost,32 -100000,95759,42516,401.9256675612736,6786,69.61225576708195,5321,55.05487734834324,2082,21.460123852588268,77.33346816806463,79.69662292904854,63.32120940122799,65.07073101454124,77.07969036378068,79.4394468904888,63.22928137451962,64.97914078862881,0.253777804283942,257.1760385597486,0.0919280267083664,91.5902259124266,119.29544,83.55957125378724,124578.82809970864,87260.27971656685,281.70114,176.43386001868345,293601.43694065313,183672.05173266577,304.20072,145.53854820057668,314273.8541547009,149380.2106485891,3501.43862,1570.673728366391,3625060.96554893,1608785.8460994705,1283.94705,561.2496943802449,1326084.2427343645,571379.8748736354,2048.9578,843.6939389011704,2113012.1868440565,859015.5332864013,0.37876,100000,0,542252,5662.674004532211,0,0.0,0,0.0,23816,248.18554913898436,0,0.0,28135,290.3330235278146,1862712,0,66805,0,0,4637,0,0,55,0.5639156632796917,0,0.0,0,0.0,0,0.0,0.06786,0.1791635864399619,0.3068081343943413,0.02082,0.3238883433861692,0.6761116566138309,25.012822459170827,4.487141081891034,0.3358391279834617,0.2054125164442773,0.2307836872768276,0.2279646682954332,11.060103390040542,5.570248056735939,22.12683277871399,12610.992664971813,59.98231545508749,12.98745968365893,20.04785994721,13.68164229304509,13.265353531173476,0.5487690283781244,0.7822506861848124,0.6832680470061556,0.5781758957654723,0.110469909315746,0.7187028657616893,0.8983516483516484,0.8709677419354839,0.7054794520547946,0.1779661016949152,0.4923654568210263,0.7242798353909465,0.623059866962306,0.5384615384615384,0.0941658137154554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669740108414,0.0041881312619153,0.006201408765199,0.0083216484789367,0.0105571489595411,0.0127483224551721,0.01456795661216,0.0165744728623624,0.018498834880013,0.0207486718598057,0.0229744830485016,0.0252348442071762,0.0276215254568452,0.0296701372797396,0.0317665022800899,0.0334780361757105,0.0355463977303319,0.0375408560311284,0.039452755455292,0.0413359995000937,0.0564277065675754,0.0702220733825899,0.0832161668730195,0.0957524003827992,0.107477670332915,0.1221954365708727,0.1355322625135267,0.1474654377880184,0.1589290100712355,0.1700176934212642,0.1835591650330669,0.1959129804519737,0.2083383173301725,0.2194505806959602,0.2308335257954183,0.2416908394411107,0.251635081140204,0.2618385968070384,0.2714554778977943,0.2799757309339011,0.2883937140808751,0.296254721062663,0.3035984669253336,0.3099036941210292,0.3161036691904484,0.3216096480433177,0.3279911992299326,0.3326850969176994,0.3373578166854303,0.3413017938936336,0.3410772278295085,0.3406570728888644,0.3411284074100162,0.3410964848835527,0.3410257554791769,0.3412405957316137,0.3409137796962531,0.3409823661008027,0.3412675308663116,0.3421495293654486,0.3427107574506418,0.3441330824834142,0.345361148967397,0.3454073294678636,0.346989462515975,0.3485296813218466,0.3478397262227292,0.350502789773981,0.3542107490478205,0.3570490629103497,0.3591452835357501,0.3606015358361775,0.3586075949367088,0.3605426534835594,0.3613190561925519,0.3627380091588335,0.3644094001236858,0.3709113351162312,0.3740845070422535,0.3788409179307662,0.0,2.025915885914189,58.513463803304745,204.712915469418,298.3022746274458,fqhc4_80Compliance_baseline_low_initial_treat_cost,33 -100000,95809,42670,402.0394743708837,6732,69.18974209103528,5239,54.232900875700615,2067,21.28192549760461,77.34149214859087,79.68063429736276,63.33904717832892,65.072675237102,77.09331544246577,79.4316151732374,63.24909212371516,64.98424605244153,0.2481767061251076,249.0191241253541,0.0899550546137604,88.42918466046967,119.2444,83.55280774390397,124460.54128526548,87207.68168324894,281.13077,176.09735706819785,292980.106253066,183352.18723522616,302.653,145.06614538436293,313390.5061111169,149443.6870835742,3443.33492,1545.663373944099,3566126.731309167,1585444.8057532166,1284.11072,559.8242874687803,1329042.897848845,573073.800445449,2043.3987,840.1084517151037,2105982.465112881,855220.8726738187,0.38043,100000,0,542020,5657.297331148431,0,0.0,0,0.0,23727,247.16884635055163,0,0.0,27961,289.2838877349727,1865661,0,66905,0,0,4842,0,0,58,0.6053711029235249,0,0.0,1,0.0104374328090262,0,0.0,0.06732,0.1769576531819257,0.3070409982174688,0.02067,0.3169004108230627,0.6830995891769372,25.182000225671207,4.414250686445261,0.3202901317045237,0.2231341859133422,0.2227524336705478,0.2338232487115862,11.068980982016091,5.5988137205225925,21.98292505776272,12691.898943957647,59.091831946048025,13.808659519623395,18.949020065567986,12.785607058566615,13.548545302290034,0.5499141057453713,0.7801539777587682,0.6847437425506555,0.583547557840617,0.113469387755102,0.7301710730948678,0.9299191374663072,0.8419753086419753,0.803030303030303,0.1666666666666666,0.491272451302808,0.7105263157894737,0.6347211311861743,0.5193798449612403,0.1001021450459652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020563833990092,0.0043388785823626,0.0064539043076766,0.0087489330569442,0.0111512438317138,0.0132421998349818,0.0152170365535248,0.0173084581686732,0.0195105989181229,0.021718428409056,0.024023870068083,0.0261963442185253,0.0283686484262497,0.0303595343566498,0.0324927255092143,0.0344203834823505,0.0362312837823844,0.0384348060624293,0.0403794798258466,0.0424521918364372,0.057268354773754,0.0713367138899053,0.0847400794274517,0.0975107440448045,0.1097049525816649,0.1255204920631565,0.1389701517849571,0.1507528070772371,0.1625494861972191,0.1734713560084871,0.1869094509373453,0.1987094263756931,0.2104554291983012,0.2217038340089376,0.2323817480295918,0.2428361132940043,0.2533960350802902,0.262850086995566,0.2719449225473322,0.2805720033835532,0.2880528266164875,0.2955699527228156,0.3020939191265095,0.308962546368314,0.3154575662761648,0.3214193437257773,0.3271443743362279,0.332761926529783,0.3381581328026053,0.3424572767727835,0.3419972824259057,0.3420690793092069,0.3420007324562639,0.3417511094407262,0.3423178187335445,0.3417785543498253,0.3409710770011417,0.3423862084848086,0.3434786332105849,0.3448245001700406,0.3455386176951561,0.3463995239039873,0.3478526058974467,0.3485093390804598,0.3489569484396528,0.3490242305173543,0.3500747900126568,0.3513711268053699,0.3526487714813237,0.3556998556998557,0.3574892614659831,0.3586214312597451,0.3617673349508364,0.363953488372093,0.3647204731921389,0.3672661870503597,0.3688972079238808,0.3736286483129787,0.3740543569627346,0.3804597701149425,0.0,1.6924257292005005,57.04409841786538,204.97294115170297,293.3565286395617,fqhc4_80Compliance_baseline_low_initial_treat_cost,34 -100000,95713,43004,405.6815688568951,6753,69.32182671110507,5215,54.01565095650539,2089,21.439093957978542,77.3419109081298,79.71059245386503,63.33255108723839,65.08078122171807,77.07295607717138,79.44349955309534,63.231537330582825,64.98340843981121,0.2689548309584211,267.09290076969694,0.1010137566555613,97.37278190685572,118.69638,83.1371147505478,124012.8091272868,86860.8389148264,280.41245,176.86270355651055,292513.9427246037,184326.187201854,307.40941,147.92191154371665,318875.64907588315,152639.16429951938,3433.88804,1575.550739950683,3556145.633299552,1614573.1195873937,1248.87602,555.4303553046974,1292415.2727424696,567910.0700058484,2047.21258,878.4957255994254,2102916.782464242,885638.3564638318,0.38192,100000,0,539529,5636.945869422127,0,0.0,0,0.0,23679,246.9048091690784,0,0.0,28380,294.2024594360223,1863027,0,66889,0,0,4651,0,0,50,0.5223950769487948,0,0.0,0,0.0,0,0.0,0.06753,0.1768171344784248,0.3093439952613653,0.02089,0.3279197853410535,0.6720802146589465,24.988183404962225,4.48511054412622,0.3263662511984659,0.2205177372962607,0.2253116011505273,0.2278044103547459,11.190740220209596,5.710003754954953,22.57848145977936,12766.509291134653,59.42337660873429,13.65303672043112,19.318320582256323,13.245235845904478,13.206783460142358,0.5551294343240653,0.7695652173913043,0.6962397179788484,0.5965957446808511,0.1043771043771043,0.6976744186046512,0.907651715039578,0.8590909090909091,0.6979166666666666,0.137546468401487,0.5040375097681687,0.7016861219195849,0.6394611727416799,0.5636978579481398,0.0946681175190424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00224805573558,0.0048241613459004,0.0069892473118279,0.0094966279353213,0.011774514987595,0.0138673943145719,0.0159128209833124,0.0179737894994692,0.0202575633687653,0.0223832478737449,0.024551512045105,0.026645719742476,0.0285158981530994,0.0304856689538645,0.0324231729717458,0.0344339232550446,0.0366308332815509,0.0386263867412488,0.0408330907124734,0.0427070740756179,0.0577772671728618,0.072206927594184,0.0850313726313138,0.098325479636486,0.1112236286919831,0.1269720344094213,0.139548454177011,0.1514277196942273,0.1629931943717347,0.1744681307599051,0.1886404274111894,0.2011992510092974,0.2131853785900783,0.223148178527292,0.234200539024256,0.2452360125341866,0.2551143335192415,0.2648120452935422,0.2734854588160537,0.2820633194023015,0.2899880796694712,0.297352985939567,0.3037829259048702,0.310492043124228,0.3161337386018237,0.3224146230082816,0.3281675130085888,0.3335795801915631,0.3393697419078854,0.3436432011611796,0.3438725589293656,0.3436360383667964,0.3431551976573938,0.3426232112171665,0.3433192728136882,0.3424655436447167,0.341422104030139,0.3418994413407821,0.3430204696378449,0.3436252662478297,0.3454542037809599,0.3470468108729702,0.348171232444042,0.3483087987414316,0.3501957751244743,0.3512763450713444,0.3520267949158365,0.3541646939999369,0.3553523513628018,0.3591363454618153,0.3616398243045388,0.363107003579251,0.3657949724561514,0.3680368805224741,0.3721151106467851,0.3764071856287425,0.3765973826020015,0.3796868562010713,0.3794555150154364,0.3812451960030745,0.0,1.827755908966533,61.05915213948162,203.2412669505992,281.9704290193689,fqhc4_80Compliance_baseline_low_initial_treat_cost,35 -100000,95719,42728,402.887618968021,6766,69.59955703674297,5280,54.69133609837128,2095,21.563117040503972,77.33810060160408,79.72121816267337,63.31256206328344,65.07502598319674,77.07851267785946,79.4597895052751,63.217378208687634,64.98127073639894,0.2595879237446183,261.4286573982696,0.0951838545958025,93.755246797798,118.93728,83.33937670248105,124256.25006529527,87066.33638328456,280.75149,176.2310623443605,292835.09021197463,183642.0821413956,303.02201,145.05665987462004,313173.1004293819,148929.0606079106,3489.10286,1553.5605163749733,3615909.6313166665,1594022.0631908432,1266.08291,544.6442112663179,1312149.5941244685,558444.7928481472,2067.69222,857.636814306629,2130266.2794220583,870676.659544778,0.37995,100000,0,540624,5648.011366604332,0,0.0,0,0.0,23681,246.89977956309616,0,0.0,28009,289.4096260930432,1861806,0,66752,0,0,4814,0,0,48,0.4910205915231041,0,0.0,0,0.0,0,0.0,0.06766,0.178076062639821,0.3096364173810227,0.02095,0.3190054782975137,0.6809945217024863,25.037754940765893,4.504738442187007,0.3183712121212121,0.2196969696969697,0.2314393939393939,0.2304924242424242,11.065973964739358,5.36338831800831,22.22659216226773,12734.377583523175,59.153478840913714,13.619731759972954,18.76748903863469,13.43113407326696,13.335123969039108,0.5450757575757575,0.7612068965517241,0.6906603212373588,0.5556464811783961,0.1273623664749383,0.7164658634538152,0.9032258064516128,0.8549618320610687,0.7142857142857143,0.175438596491228,0.4921933085501859,0.6941624365482234,0.640527950310559,0.5144329896907216,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432547485354,0.0045952525867315,0.0068938209434077,0.0090249405451551,0.0112025722163999,0.0133124191527719,0.0154417314321848,0.0177515397264751,0.0199928414378483,0.0221368965340705,0.024272193111086,0.0265438564064649,0.0286149068961617,0.030626325870698,0.0326913356097259,0.0346908617429135,0.0367866313260995,0.038656665317937,0.0407630730845202,0.0426163590149589,0.0570616984836459,0.0708812260536398,0.0849929697173196,0.0976030458881561,0.1095631815401489,0.1252803283544196,0.1377499044950974,0.1499462233912274,0.1617595195092496,0.1730412299241489,0.1860683116043529,0.1991728647677201,0.2104982419472475,0.2221358925816088,0.2335706974542973,0.2447717525019117,0.2543387460632999,0.2643682042277301,0.2723132658739622,0.2808813582638801,0.2888628940724097,0.2967247860045199,0.3040166779195243,0.3110343835419364,0.3171712997289446,0.322915895233158,0.3289292250607967,0.3343446834006858,0.3396896591954991,0.3442534199545766,0.3437537881338811,0.3432903652288878,0.3435530934156552,0.3426968728765777,0.3429297961247342,0.3422768343381349,0.3412357574124843,0.3425933531566756,0.3436724778019195,0.3441087073127123,0.3453279273191425,0.3463106642387776,0.3484708452360948,0.3479900343411218,0.3485586193598148,0.3496994770119428,0.3511437350631615,0.3553446270861489,0.3575885033298283,0.3608835055219095,0.3629287718345552,0.3631756756756756,0.3668228678537957,0.3703955314009662,0.3728323699421965,0.3714454277286135,0.3719383126700937,0.3694955964771817,0.3689926690198208,0.3698213606993538,0.0,1.8150994394499225,55.12959861506217,203.26361238890016,304.6054736527681,fqhc4_80Compliance_baseline_low_initial_treat_cost,36 -100000,95654,42749,403.55865933468544,6663,68.5909632634286,5226,54.09078553954879,2078,21.347774269763946,77.27782633283482,79.68896911841766,63.2892740309558,65.07264541259508,77.01996839825676,79.43182358039672,63.194267026111085,64.98045301499462,0.2578579345780554,257.14553802093576,0.0950070048447102,92.1923976004564,118.3292,82.89934623160835,123705.43835072238,86665.84380329975,279.49077,175.55868531429832,291663.2132477471,183009.0704876832,305.49537,146.54762587683004,316509.9839003074,150931.7698874242,3447.12021,1549.6864386557093,3567708.5851088297,1584071.4155579987,1261.72439,545.5925308916258,1301119.336358124,552484.3821985289,2051.6822,856.3366780506642,2109491.291529889,865477.8382898628,0.3795,100000,0,537860,5622.974470487382,0,0.0,0,0.0,23491,245.02895853806427,0,0.0,28244,292.3557822987016,1864172,0,66926,0,0,4697,0,0,59,0.6168064064231501,0,0.0,0,0.0,0,0.0,0.06663,0.1755731225296442,0.3118715293411376,0.02078,0.3251928020565552,0.6748071979434447,25.08528595204413,4.534142228420061,0.3082663605051665,0.2248373517030233,0.2298124760811328,0.2370838117106773,11.022093403721051,5.5022222328375765,22.208265469530023,12733.293348435473,58.961294565298886,13.846550485639924,18.035136036755382,13.471834067690564,13.607773975213023,0.5545350172215844,0.7608510638297873,0.7200496585971446,0.582014987510408,0.1170298627925746,0.711969111969112,0.9205128205128204,0.8779220779220779,0.7007299270072993,0.1341463414634146,0.5026710760620707,0.6815286624203821,0.6704730831973899,0.5469255663430421,0.1127895266868076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021887603104797,0.0045229595975985,0.0066290378251071,0.0089027104484892,0.0111297624497685,0.0135186071861533,0.0157572667006629,0.0181907320212037,0.0202123524477813,0.0223005295991641,0.0244102564102564,0.0266858404807149,0.0288833552848205,0.0309813864325026,0.032893174614646,0.0347313440554377,0.0365373456022548,0.0386164932610636,0.0406668192886428,0.0425933456369191,0.0573070693348659,0.0711525370477038,0.0847354444596055,0.0979259399564352,0.1100629926244816,0.1252791684748669,0.1384198789423383,0.1507271080807542,0.1629093320214745,0.1739452495974235,0.1871450891654544,0.1996037159747937,0.2119041658049136,0.2226794195539407,0.2326492865950326,0.2432950616189378,0.2539698492462311,0.2632603680153058,0.2726839345304306,0.2807469487760756,0.288050518134715,0.2959221848110737,0.3031683308882684,0.3094932687581668,0.3157862751294455,0.3216823767457928,0.3274754180497276,0.3343732888487056,0.3394755952072203,0.3434866457083982,0.3433156090582742,0.3431710885950139,0.3436934644957033,0.3432227955243782,0.3420891693143002,0.3413921891090174,0.3414932680538555,0.3424741112063848,0.3434572222794193,0.3454049983864606,0.3469594975743673,0.3476716026837111,0.3490030287733467,0.349961850904358,0.3504201274869615,0.3510262779448294,0.3520856594806608,0.3551055333713633,0.3572696924497479,0.360639280407983,0.3616091954022988,0.363509898341359,0.3652907234798047,0.3678425947275382,0.3683561123766135,0.3708513708513709,0.3763975155279503,0.3762417218543046,0.3769662921348314,0.3759194734804491,0.0,2.10396912729667,56.96931654098446,198.1491312326924,299.4729641765037,fqhc4_80Compliance_baseline_low_initial_treat_cost,37 -100000,95827,42877,403.6962442735346,6770,69.50024523359805,5252,54.316633099230906,2053,21.09008943199725,77.39792083527668,79.70238993554445,63.37134666233783,65.07170097012701,77.15053166571964,79.45479773232368,63.27976552716025,64.9824476069614,0.2473891695570387,247.59220322076203,0.0915811351775772,89.25336316561072,118.18246,82.77103483180166,123328.97826291127,86375.48376950301,280.78396,176.3762695286895,292533.7535350162,183579.3977988349,303.04471,144.87740301535723,313029.78283782233,148657.4413934265,3464.4619,1554.0231600969175,3585081.417554552,1591660.7291726486,1243.01131,541.5743124753252,1285227.9941978776,553345.0847979829,2016.741,838.7571583851797,2074091.7695430308,848889.8174170085,0.38049,100000,0,537193,5605.86264831415,0,0.0,0,0.0,23711,246.934580024419,0,0.0,28077,289.8139355296524,1869385,0,67007,0,0,4663,0,0,34,0.3548060567480981,0,0.0,0,0.0,0,0.0,0.0677,0.1779284606691371,0.3032496307237814,0.02053,0.3107994389901823,0.6892005610098176,25.36068970820556,4.444331651870729,0.3307311500380807,0.2189642041127189,0.2286747905559786,0.2216298552932216,10.95452369121861,5.459717987568754,21.83323174380094,12708.193561606244,59.13629701089621,13.514188475024106,19.536462447113404,13.317999766161233,12.76764632259749,0.5485529322162985,0.7660869565217391,0.6614853195164075,0.5795170691090757,0.1331615120274914,0.7269260106788711,0.9098360655737704,0.863961813842482,0.7686832740213523,0.1714285714285714,0.4892159350418675,0.6989795918367347,0.5971168437025797,0.5217391304347826,0.1229597388465723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0045293801740822,0.0064404888686038,0.0087121635206076,0.0109995120364346,0.0131994056705542,0.0152228403741517,0.0174243042520199,0.0194333472970073,0.0217718255389243,0.0238104995696897,0.0261303130097565,0.0281202482225783,0.0301109350237717,0.0324778396206967,0.0348366579936397,0.0369642358345144,0.0389191766339835,0.0408199291803823,0.0428990695834981,0.0570379488035382,0.0708473654485744,0.0838916674530527,0.0963309503784693,0.1083847167325428,0.1238437549553359,0.1370600897051183,0.1492187832602494,0.1610280843063315,0.1713985391438653,0.1849921385341058,0.1982110602766691,0.2104582268848182,0.221154371808749,0.231373239049389,0.2430885397637315,0.2541673635502035,0.2639040348964013,0.2732250969365774,0.2816883681548777,0.2899220863292719,0.2977721702356335,0.3043231482357393,0.3109169260234618,0.3170486237419668,0.3233568291692807,0.3290949514126552,0.3334476234015264,0.3382651543565138,0.3434850160636225,0.3441079701873363,0.3440536979080876,0.3433752723694384,0.3434873495278598,0.3434329951948745,0.3427986619212733,0.342083649229214,0.3430575586731349,0.3440753763697812,0.3443837475007141,0.3454746343564486,0.346286820633384,0.347875235503454,0.3484767025089605,0.3490891543008806,0.3501829587036069,0.349875361737486,0.3517405063291139,0.3543420820856086,0.3543664213248458,0.3570676313017995,0.3600385067921703,0.3612133519482168,0.3606959454280677,0.3647125674779808,0.3678639391056137,0.3700859950859951,0.3757085020242915,0.3705625341343528,0.3801369863013699,0.0,1.910094553584536,58.16347447260143,197.229528010024,298.87007198021166,fqhc4_80Compliance_baseline_low_initial_treat_cost,38 -100000,95547,42476,400.3998032381969,6745,69.37946769652632,5290,54.716526944854365,2165,22.19849916794876,77.19945181010942,79.67026521271184,63.224607941291474,65.05361341521458,76.93285065053405,79.40638850421466,63.12680013645139,64.96013668862507,0.266601159575373,263.8767084971789,0.0978078048400803,93.47672658951468,118.2764,82.76952783561845,123788.71131485028,86627.02945735444,278.76279,174.68075010108691,291130.9407935362,182198.122495826,301.19414,144.6863735868499,311338.21051419724,148401.547828687,3492.58119,1574.644308646928,3616220.64533685,1608897.671980207,1307.24121,566.3083437932545,1353158.047871728,577693.7567827915,2134.89224,887.585488545772,2192094.8224434047,892573.8931771901,0.37907,100000,0,537620,5626.759605220467,0,0.0,0,0.0,23568,246.01505018472585,0,0.0,27879,287.88972966184184,1861185,0,66828,0,0,4544,0,0,54,0.5651668812207605,0,0.0,0,0.0,0,0.0,0.06745,0.1779354736592186,0.3209785025945144,0.02165,0.3286477368569019,0.6713522631430981,25.12771453563895,4.556745852912073,0.3217391304347826,0.2149338374291115,0.2194706994328922,0.2438563327032136,11.26623020533481,5.73191716226561,23.07336895600126,12746.413331250067,59.96050158439248,13.548758739144,19.223418475919157,13.009349518874474,14.178974850454848,0.5421550094517958,0.7660510114335972,0.6880141010575793,0.5753660637381568,0.1224806201550387,0.7196048632218845,0.9152119700748128,0.8734491315136477,0.73828125,0.15234375,0.4833920483140412,0.6847826086956522,0.6304849884526559,0.5292817679558011,0.1150870406189555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023010410436792,0.0045859459020717,0.0065703956454626,0.008754270375793,0.0112696990674756,0.0134355440477889,0.0156044292493749,0.0178113408066708,0.0199551776010806,0.0222283711492344,0.0244005091566067,0.026560138199093,0.0287744593202883,0.0311842376727872,0.0333381559638716,0.0354532844750843,0.0377088453999564,0.0395555971273864,0.0414678860857065,0.0431900277702378,0.0579202276222057,0.0723124030032297,0.0852280491522395,0.0978051273405477,0.1095961357558846,0.1251351752507368,0.1388631793955254,0.1515581643543223,0.1632685858769834,0.1738344894337796,0.1876208270782257,0.2000434121988278,0.2119899629063932,0.2231985169096433,0.2337840075051045,0.2446286133268158,0.2545242918378081,0.2645140174258498,0.2731297588290862,0.2808518948226942,0.2889953485134963,0.2966151392179399,0.3035447362801622,0.3101799572331275,0.3168524270662038,0.323114198828096,0.3280027134655729,0.3332439883596262,0.3388242936018187,0.3431464689919915,0.3429505804132488,0.3434751998232996,0.343352127404016,0.3427142235754676,0.3427159977911437,0.3422672164440888,0.3408650023851168,0.3422099028197132,0.3434926856101628,0.34434420042414,0.3457263102270368,0.3471122079369502,0.3480853403252067,0.347695707070707,0.3485021224984839,0.3498197890084449,0.35024168488894,0.3523299648366965,0.3554445271251905,0.3557143427408087,0.3595218541837759,0.362292641429179,0.3654572940287226,0.3654919348673648,0.3674409856108342,0.3665433719126595,0.3704212454212454,0.3662170324139319,0.3657931034482758,0.3694638694638694,0.0,2.5771462479438045,57.61739282849143,205.15175899560373,298.7322934871009,fqhc4_80Compliance_baseline_low_initial_treat_cost,39 -100000,95672,42760,401.8939710678151,6829,70.08320093653316,5363,55.36625135880927,2228,22.807090893887448,77.33990302576841,79.72760308955587,63.32261558699434,65.08778737353042,77.05976831418229,79.45145704977945,63.21969947408471,64.98945274316554,0.2801347115861148,276.14603977642105,0.1029161129096252,98.33463036487444,118.04298,82.7160066378503,123382.99606990552,86457.90475567596,283.34921,178.3692793333527,295491.606739694,185763.0782682709,310.11467,149.01498060394246,319715.5803160799,152328.57199195583,3577.59348,1611.2684361820322,3696957.0093653314,1641745.5458430203,1295.71578,566.366347847705,1338556.5787273182,576283.0104142051,2194.89172,912.0885246250511,2250258.466426959,916247.9552557354,0.37912,100000,0,536559,5608.318003177524,0,0.0,0,0.0,23853,248.6202859770884,0,0.0,28607,294.65256292332134,1864700,0,66907,0,0,4509,0,0,50,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06829,0.1801276640641485,0.326255674330063,0.02228,0.3229296712442779,0.677070328755722,25.0942102920769,4.497379509206097,0.3220212567592765,0.2097706507551743,0.2269252284169308,0.2412828640686183,11.087644767515744,5.6016511972590255,23.719885725765632,12741.988350450456,60.55793035509805,13.21806246500065,19.48296418736586,13.694541912648535,14.16236179008301,0.5439119895580832,0.7626666666666667,0.6988998262883613,0.5792933442892358,0.1136012364760432,0.7140718562874252,0.9295774647887324,0.8600917431192661,0.7473684210526316,0.1384615384615384,0.4874596473801837,0.6857142857142857,0.6444616576297444,0.5278969957081545,0.1073500967117988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713866099463,0.004835031169226,0.0072551267871457,0.0095579571771015,0.012069999898315,0.0143223599828986,0.0166551147714763,0.0188005225769576,0.0209048904154399,0.0232860447501484,0.0254856732789994,0.0276027017594284,0.0295841559723593,0.0315808990152857,0.033728970998039,0.0355470082818946,0.0377837406628472,0.040107118390733,0.0420892758688845,0.0441785070208174,0.058791576132375,0.0724082333479908,0.0860761087387604,0.0987228312327729,0.1110771178394345,0.126281488377998,0.1391149353336233,0.1514896697073882,0.1629052069425901,0.1738934637159032,0.1880088743376556,0.2003743697388068,0.2121558136500065,0.2230774276780443,0.2328002729503956,0.2433073046463975,0.2537519945547261,0.2626125112511251,0.2715462467096305,0.2798872890965946,0.2884295034935912,0.2965137357175436,0.3037550740245446,0.3102345032533282,0.3169502434995931,0.322611653356995,0.3277014342569648,0.3335030031558587,0.3380031621782742,0.3424567058108661,0.3421112953898844,0.3419362839662679,0.341768757409812,0.3424651580563845,0.3418249534450652,0.3398487242823609,0.3395612935970435,0.3407584107921362,0.341214483536773,0.3416355482499241,0.3425693167748471,0.3433841155377696,0.3444453774456293,0.3456751291844529,0.3468266834426189,0.3480825185457024,0.3488298726626133,0.351378763866878,0.3541777258732349,0.356023447780835,0.3562408491947291,0.3581012455230662,0.3617021276595745,0.36783988957902,0.3704648526077097,0.3677049767275331,0.3701358863495985,0.3709942481511915,0.3737714125245717,0.374611801242236,0.0,2.650728892104479,58.435285446428686,201.3296581397225,308.66075862913,fqhc4_80Compliance_baseline_low_initial_treat_cost,40 -100000,95781,42679,401.86467044612186,6754,69.30393293033065,5254,54.22787400423884,2087,21.402992242720373,77.331780499572,79.67348577528678,63.32970022966426,65.06300285819081,77.0779197606781,79.4210015188356,63.23627533121658,64.97300749882255,0.2538607388939056,252.4842564511829,0.0934248984476795,89.99535936825964,118.87128,83.24200973866648,124107.36993767032,86908.6872539089,280.45547,176.49081383351975,292167.0268633654,183623.74505667412,307.56354,147.587359060779,317401.0085507564,151240.94487978125,3428.84063,1550.4120425326178,3540404.224219835,1579296.6824982022,1243.68079,540.8536709646223,1282890.782096658,549150.0940797682,2044.902,846.4662738280463,2098172.6020818325,851543.7641094155,0.37972,100000,0,540324,5641.244088075923,0,0.0,0,0.0,23773,247.5438761340976,0,0.0,28358,292.3335525834977,1862297,0,66880,0,0,4676,0,0,47,0.4907027489794426,0,0.0,1,0.0104404840208392,0,0.0,0.06754,0.1778679026651216,0.309002072845721,0.02087,0.3251369959252494,0.6748630040747506,24.926598691136885,4.460848515935365,0.3229920060905976,0.227255424438523,0.2223068138561096,0.2274457556147697,11.196943279485955,5.708856470647041,22.05414692159188,12668.011545050878,59.32480421698198,13.997348279394023,19.30644786649156,13.08916118437885,12.931846886717551,0.549486105824134,0.7646566164154104,0.6923983500294637,0.577054794520548,0.104602510460251,0.7145003756574004,0.8790931989924433,0.8660714285714286,0.704119850187266,0.1187214611872146,0.4934998725465205,0.7076537013801757,0.6301040832666133,0.5394006659267481,0.1014344262295082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018232463914915,0.003973885892705,0.0061696449409926,0.0082286968182372,0.0105873379099923,0.0129532887300278,0.0150486327766562,0.0173853566907591,0.0197910490482713,0.0218150176588012,0.0241214581539344,0.025915354128591,0.028122236617517,0.030078595782816,0.0323965611550886,0.0344250093040565,0.0363416048717842,0.0386358686069306,0.0406950160036579,0.0428584816268729,0.0570402913583854,0.0708980983661429,0.0836766571269826,0.0966982619112671,0.1083655598992634,0.1237490356874887,0.1369500005299922,0.1493911841335672,0.1608661778674265,0.1715776615806617,0.1852306367404058,0.198197905849775,0.2099894515915047,0.2219038453125683,0.2320373284618516,0.2427764236649678,0.2529984714768657,0.2634432184993983,0.2727674774621534,0.2811498305705651,0.2885602626954028,0.296094544519387,0.3034476231040439,0.3104192133457971,0.3167421913913962,0.322644697408828,0.3290035698628421,0.3344591580530454,0.339907162491572,0.344452223998309,0.3441507705571721,0.3436679000288854,0.3426305483948217,0.3418360703175866,0.3415548481152003,0.3403403249812038,0.339134711491171,0.3396453013951039,0.3395770496298327,0.3402379035864413,0.3408557094270843,0.3414358730536075,0.3429948640229014,0.343541615213633,0.343741679374531,0.3441418752295503,0.3453117835855112,0.3487299380765828,0.3529266833268804,0.3548631612542887,0.3547766323024055,0.3552786394266766,0.3561914473264929,0.3574170761670762,0.3607672682604176,0.3628782463664522,0.3722436391673092,0.376391982182628,0.3723640399556049,0.376577287066246,0.0,2.3540509711815423,58.36166776399151,197.30309578519663,298.4521042236211,fqhc4_80Compliance_baseline_low_initial_treat_cost,41 -100000,95693,43097,406.759115086788,6706,69.03326262109036,5226,54.08964083057277,2103,21.57942587232086,77.34192318165195,79.71575823955851,63.32298576779221,65.07419502260043,77.08768970794854,79.46305381492242,63.22966398023641,64.9840719602249,0.2542334737034082,252.704424636093,0.0933217875557943,90.12306237553958,118.53886,83.04335023961639,123874.11827406392,86781.00826561649,280.83813,177.05345858053676,292975.0660967887,184519.20054814537,305.44946,146.49185913133493,316060.1924905688,150656.21850746288,3441.59478,1543.343099398605,3563303.261471581,1579614.088176363,1245.20832,536.287228811695,1288454.1398012394,547625.5617565494,2075.13078,856.5736015943972,2132303.4077727734,865412.5197426106,0.3832,100000,0,538813,5630.641739730179,0,0.0,0,0.0,23694,247.0818137167818,0,0.0,28202,291.5364760222796,1862434,0,66753,0,0,4676,0,0,65,0.6792555359326179,0,0.0,0,0.0,0,0.0,0.06706,0.175,0.3135997614076946,0.02103,0.3277872582480091,0.6722127417519909,25.003456685042217,4.464677204687597,0.3249138920780712,0.2183314198239571,0.2198622273249139,0.2368924607730577,10.960450010925562,5.469640973092493,22.238436337332026,12797.619895054191,58.89912393921373,13.3767575664608,19.327445425227907,12.796455587289865,13.398465360235155,0.554726368159204,0.7791411042944786,0.7025912838633687,0.598781549173194,0.104200323101777,0.7198772064466615,0.904632152588556,0.8549107142857143,0.74609375,0.1379310344827586,0.49987254652052,0.7196382428940569,0.648,0.5565509518477044,0.0964214711729622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021161771108613,0.0043279512674714,0.0065126753705225,0.0088772421638531,0.0111661395462357,0.0133982203579646,0.0157208979874803,0.0177264047869461,0.0199907970755151,0.0221268840104849,0.0240956443277827,0.0259496205625327,0.0281717665209565,0.0303342538020854,0.032516464686087,0.0344877509022657,0.0362969638584169,0.0384571470090615,0.0405994238708805,0.0426405460324076,0.0575233718075938,0.0713582677165354,0.0845744513366289,0.0976472073740477,0.1094838137846621,0.125107148526377,0.1383462159177779,0.1505006391137622,0.1622109865207213,0.1731425627374793,0.1870599777899968,0.1997790701452289,0.2121165944663343,0.2231791123172546,0.233979086406164,0.2458313482610767,0.256405390017081,0.2658366074142453,0.2754603106174912,0.2835870474095964,0.2908112486980673,0.2986588962224407,0.3053305863408165,0.3115900314216497,0.3183679918326669,0.3238448641451748,0.3295504365362695,0.3352005092297899,0.3401675485008818,0.3457838966255318,0.346084304835924,0.3457824011478712,0.3462195552417931,0.3461416093017874,0.345701384350306,0.3451908794389232,0.3445638922752965,0.3456668311133037,0.3463718723775924,0.3477196368575309,0.3496218731820826,0.3506184586108468,0.3524407662577718,0.3528949730700179,0.3526606123383036,0.3539481237931214,0.3547890535917902,0.3557141958613749,0.3584370071841598,0.3608092026973423,0.3624279816721862,0.3648032247798876,0.3689859830786715,0.3668437025796661,0.3694636516538964,0.3721857410881801,0.3743033589395993,0.3718612993224392,0.3697547683923706,0.3696788648244959,0.0,2.025193216504193,57.630799571342855,198.9080014622605,294.9388539935283,fqhc4_80Compliance_baseline_low_initial_treat_cost,42 -100000,95746,42730,403.9333235853195,6802,70.04992375660602,5334,55.208572681887496,2189,22.549244877070585,77.32392886815877,79.68995845362171,63.31606620966248,65.0661785516906,77.05528156993068,79.41842895399652,63.21755931096507,64.9688138080425,0.2686472982280889,271.52949962518846,0.0985068986974084,97.36474364810022,117.93166,82.66194060511062,123171.37008334552,86334.61513286259,281.27911,176.50773185027745,293254.4127169804,183839.7793180212,310.29836,148.88329342725933,321313.0679088421,153379.08370868425,3542.80052,1601.9129279790195,3667673.344056149,1641369.0459694497,1307.19381,567.1869008852814,1353563.772899129,580974.6048871442,2149.25474,896.9446520368235,2215500.4491049238,910810.4771323882,0.37987,100000,0,536053,5598.698640152069,0,0.0,0,0.0,23725,247.24792680634175,0,0.0,28662,296.5659139807408,1864690,0,67045,0,0,4675,0,0,45,0.469993524533662,0,0.0,0,0.0,0,0.0,0.06802,0.1790612577987206,0.3218171126139371,0.02189,0.3382743672213676,0.6617256327786324,24.771193881589344,4.489046948036434,0.3233970753655793,0.213535808023997,0.228158980127484,0.2349081364829396,10.992430469348896,5.524224072658627,23.362186379874107,12687.175931791708,60.31210641610712,13.430291372018385,19.522058078092844,13.611806432392632,13.747950533603271,0.5374953130858643,0.7743634767339772,0.6753623188405797,0.5653245686113394,0.1053471667996807,0.7048710601719198,0.92,0.8637362637362638,0.7380952380952381,0.1066176470588235,0.4781615033011681,0.7028795811518325,0.6078740157480315,0.5102925243770314,0.1049949031600407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002106819816261,0.0040758803191759,0.0062719467391966,0.0087687211688918,0.0110774301175896,0.0132382892057026,0.0152417266480435,0.0173017444649728,0.0194971832857916,0.0217159823896795,0.02375508781283,0.0257808168545555,0.0277683537406573,0.029675332701578,0.0319381668833715,0.0337702342312542,0.0358178654292343,0.0376347992153362,0.0396402017365985,0.0416419232171693,0.0564290486928923,0.0711416136591898,0.0848529334661563,0.0972429601901116,0.1093993842000927,0.1253847537047418,0.1383813949540603,0.1506398654259736,0.1624586136921926,0.1730517740379462,0.1871010795741978,0.200300586034643,0.2119617797006294,0.2227992303319193,0.2323197888601748,0.2437965741366137,0.2544943256000803,0.2644341671448986,0.2731216005995435,0.2812779523405426,0.2888319695880949,0.2961638986884823,0.3030123339658444,0.3097502401536983,0.3164540008766376,0.3218603732108233,0.3276251411366202,0.3326614960710276,0.3374483994080536,0.3420756639451641,0.3420068325749085,0.3418863551711294,0.3418914527136821,0.3415886088797378,0.3420903618048518,0.3404764461352027,0.3396363982184464,0.3412089446790332,0.3421498349044499,0.3429950827000447,0.3435336497870504,0.3433214427269124,0.3439370078740157,0.3450247807853602,0.3457594402219809,0.3459101382488479,0.3468424665370095,0.3508660818898635,0.3537082314588427,0.3563861682990206,0.3599633111671635,0.361720292407022,0.363946653182479,0.3680672268907563,0.3712444318074116,0.3730272596843615,0.3740886998784933,0.3741564112743152,0.3654103180967655,0.3652239939255884,0.0,1.823100421361889,62.059680921243626,192.881470267576,304.8400420410639,fqhc4_80Compliance_baseline_low_initial_treat_cost,43 -100000,95799,42667,402.05012578419394,6855,70.58528794663827,5257,54.36382425703817,2109,21.659933819768472,77.4066300966336,79.74344255971964,63.35719594835807,65.08687153909808,77.15090606241053,79.48888821694142,63.26438245508223,64.9970338084697,0.2557240342230784,254.55434277822064,0.0928134932758411,89.83773062838907,119.55262,83.66563443477182,124795.26926168332,87334.55926969156,280.03264,175.11467086923537,291791.89761897305,182273.04133575017,297.65748,141.90199662554798,308068.5810916607,146096.09225317655,3472.68026,1540.7965721192634,3592444.0234240443,1575842.9233282844,1255.22441,542.1736354106931,1292934.644411737,548681.8104605591,2075.53432,853.628942921627,2133284.2722784164,862360.9280762334,0.38158,100000,0,543421,5672.512239167423,0,0.0,0,0.0,23647,246.286495683671,0,0.0,27472,284.01131535819786,1865249,0,66991,0,0,4806,0,0,55,0.5741187277528993,0,0.0,0,0.0,0,0.0,0.06855,0.1796477802819854,0.3076586433260393,0.02109,0.3211719181868435,0.6788280818131565,25.400246547258877,4.535835218689024,0.3340308160547841,0.202587026821381,0.2282670724747955,0.2351150846490393,10.837444598465703,5.3784937852613925,22.28014827636175,12825.108166657415,58.72908558942382,12.439980741756006,19.605082294721925,13.234839219415225,13.449183333530645,0.5421342971276394,0.7549295774647887,0.6810933940774487,0.59,0.1148867313915857,0.7089430894308943,0.8987730061349694,0.8613138686131386,0.748062015503876,0.1361702127659574,0.4911845045939905,0.6914749661705006,0.6260223048327137,0.5467091295116773,0.1098901098901098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019960686566559,0.004218125773154,0.0065556468880973,0.0088698779756764,0.0109132331851791,0.0131463717643225,0.0155278236577557,0.017751237686929,0.0196962263379533,0.0217671619796143,0.0238485662164101,0.0259606998101687,0.028027585639845,0.0302347127856701,0.0323262310459638,0.0341370230781145,0.0363626959085501,0.038624607378689,0.040516954787234,0.0425073396214629,0.0575849584207176,0.0716870241780306,0.0849099122705881,0.098021081836621,0.1103220844352196,0.1266153147156095,0.1397774244833068,0.152021603461657,0.1638821320360176,0.1751451153426007,0.1883384433327954,0.2020648648648648,0.2143268468116083,0.225460223178215,0.2361599297012302,0.2474887158155589,0.2575178119459899,0.2676197219506164,0.2766420626551923,0.2852205360617089,0.2924302512458231,0.2999415751343772,0.3066786533866427,0.3131534509395322,0.3191484193779527,0.325356729181556,0.330808997484009,0.3362555985342019,0.3412659342937092,0.3454915218424806,0.3458597953157235,0.3454452828110371,0.3454158383735848,0.3460309196349805,0.3459155013300441,0.3452404648527813,0.3440163169794615,0.3449207935389807,0.3456407813244402,0.3460417333191141,0.3462789827973074,0.3481669720071705,0.3481229381550925,0.3481422008118114,0.3486794804198821,0.349283042394015,0.3502882621907927,0.3521175291316877,0.3551221903228065,0.360188261351052,0.360867789225253,0.361379601753552,0.3637045838284035,0.3643901703603196,0.3667037449017427,0.3714585519412381,0.3712364358856793,0.3664596273291925,0.3706872757383384,0.3663328197226502,0.0,1.9745966933869368,54.28957762043165,202.31036438974436,302.8661685392325,fqhc4_80Compliance_baseline_low_initial_treat_cost,44 -100000,95699,43048,406.9635001410673,6917,71.2128653381958,5386,55.81040554237767,2205,22.80065622420297,77.29491858535671,79.69854719207558,63.29396199958445,65.07464796673726,77.03479910508835,79.43266370021139,63.20083737693041,64.98092199936518,0.2601194802683579,265.88349186418725,0.0931246226540452,93.72596737208028,118.67064,83.07627415110389,124004.05437883364,86809.9710039853,282.49691,177.19684125966504,294719.4746026604,184686.9050456797,307.96987,147.849490105046,318113.2613715922,151755.27191808095,3556.99352,1594.2078244628992,3689945.7779078153,1638946.608076258,1319.57865,574.3585018043758,1368812.5999226742,590115.7466655205,2166.4824,880.8533503447566,2242204.516243639,902368.7211787644,0.38258,100000,0,539412,5636.54792631062,0,0.0,0,0.0,23796,248.1530632503997,0,0.0,28505,294.1932517581166,1863547,0,66913,0,0,4760,0,0,46,0.4806737792453421,0,0.0,0,0.0,0,0.0,0.06917,0.1807987871817659,0.3187798178401041,0.02205,0.3228302929795467,0.6771697070204533,24.982193116486837,4.482759249557115,0.3330857779428147,0.2109171927218715,0.2218715187523208,0.2341255105829929,11.19184599366547,5.670741476489779,23.27340028840006,12759.680303169458,60.6844663377163,13.370562922833154,20.199569545431093,13.41851783208446,13.695816037367594,0.5477163015224656,0.7588028169014085,0.6811594202898551,0.59581589958159,0.1221252973830293,0.7319116527037319,0.8900804289544236,0.8701594533029613,0.7638376383763837,0.1739130434782608,0.4883378345200098,0.6946264744429882,0.6199261992619927,0.5465367965367965,0.110572259941804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022301742577067,0.0043228104356297,0.006448992027624,0.0086218290885059,0.0109327442816861,0.0129340658220623,0.0150414302624596,0.0173269855540344,0.0194172770798379,0.0214917178008379,0.0236033892046037,0.0255385595266223,0.0276805927145503,0.029701847863054,0.0318025578298702,0.034033795942005,0.0361335917018123,0.0379979443735011,0.0398626859461146,0.0418990046380738,0.0567578859410904,0.0712281730245802,0.0839970199683109,0.0975917684562699,0.1099670858300278,0.1249576809140922,0.1381839409860425,0.1509912058428976,0.1624569951065239,0.1732376385268149,0.1873741127303669,0.2001882139148494,0.2123787990782208,0.2243044780033656,0.2344837443514782,0.2453448466733089,0.2549358616843279,0.2636902685734217,0.2730998467389453,0.2818120336088217,0.2899136314168615,0.296870611365977,0.3050040842419292,0.3110644677661169,0.3177012444098775,0.3236045464081648,0.3291450046977764,0.3343516891977902,0.3396409572746923,0.3448084836973726,0.3451872989379888,0.3454582960874647,0.3464361694633472,0.3462044439304353,0.3456808482162773,0.3449556489978822,0.3440745799320268,0.3445749007854826,0.3450893698695868,0.3460304371986305,0.3467819404418828,0.3478252226463104,0.3492458077020308,0.3491677912730544,0.3494481503941783,0.3527046207222835,0.3543535771796641,0.3573444983664795,0.3586065573770491,0.3620110391168706,0.3633849557522124,0.3658536585365853,0.3684343914338212,0.3706969255539369,0.3690702087286527,0.3696693818878773,0.3697118332311465,0.3769058751778817,0.3708971553610503,0.3560864618885097,0.0,1.7302007868917104,58.29969040330015,204.3224495113768,311.26327153981094,fqhc4_80Compliance_baseline_low_initial_treat_cost,45 -100000,95720,42935,403.7818637693272,7017,72.07480150438779,5528,57.17718345173422,2248,23.129962390305057,77.3593554540744,79.73072409852614,63.33143217950936,65.0838730771568,77.08372373184426,79.45431919227374,63.2300146046076,64.98480315978829,0.2756317222301447,276.4049062523952,0.1014175749017667,99.06991736851012,116.9619,81.95682410836335,122191.70497283744,85621.42092390655,283.33938,177.78139790854928,295395.34057668195,185118.12473183067,311.74557,150.05418346185633,322388.9155871292,154229.78585949494,3622.05898,1635.4943304359924,3749585.959047221,1674243.210004308,1318.21122,579.3198216370365,1364288.915587129,592398.5156726362,2199.46756,913.7742242137988,2264982.3443376515,926120.4615749144,0.38217,100000,0,531645,5554.168407856248,0,0.0,0,0.0,23915,249.2164646886753,0,0.0,28894,298.4956122022566,1870095,0,67102,0,0,4690,0,0,44,0.4596740493104889,0,0.0,0,0.0,0,0.0,0.07017,0.1836093884920323,0.3203648282741912,0.02248,0.3158609451385117,0.6841390548614883,24.777985190299603,4.442699399524341,0.3288712011577424,0.2141823444283647,0.2339001447178003,0.2230463096960926,11.12439666011624,5.657930762104607,23.909861351789036,12857.66434502416,62.46178550129029,14.213643721083889,20.36622142706621,14.448410716313685,13.433509636826503,0.5452243125904487,0.7829391891891891,0.6776677667766776,0.5467904098994586,0.1200324412003244,0.7277777777777777,0.9190371991247264,0.8619909502262444,0.688135593220339,0.1788617886178861,0.4809197651663405,0.6973865199449794,0.6184593023255814,0.5050100200400801,0.105369807497467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0045313086054314,0.0070524724243254,0.0093233937965915,0.0119784834711164,0.0143137833793152,0.0166165451857892,0.0187411959251168,0.0209973216658829,0.0231574852322403,0.0251653591755114,0.0275269877463819,0.0296411374953701,0.0315268905831444,0.0337846204647707,0.0358597448779176,0.0380470230145665,0.0398390258575088,0.0419053361471208,0.0438845024061998,0.058768861274996,0.0730224185209218,0.0867503750091785,0.0996982028875779,0.111917240506596,0.1278324341478895,0.1404102683830162,0.1530738272183301,0.1650511376387983,0.1759030714086411,0.1893318965517241,0.2024877937880936,0.2139632043345337,0.2251600547195622,0.2355053704213715,0.2469639668614903,0.2567298885240042,0.2663231207173959,0.275231544538273,0.2837088308771286,0.2915523766535884,0.2993251383057111,0.3066843275462415,0.3125127234842588,0.3181619521670511,0.3238808544186848,0.3286313286188121,0.3336682266761623,0.3391074688313201,0.3438893138832467,0.3443650697555528,0.3439400192598706,0.3441956625692667,0.3444761575275327,0.3447150128359227,0.3447759140048013,0.3449708535410183,0.3456458326505194,0.3476086437032738,0.3483202198076683,0.3495384268988292,0.3506318583369647,0.3503830933737475,0.3505493515850144,0.3512011213688433,0.3517680006281571,0.3520086986379764,0.3545109211775878,0.3585671431092289,0.3599840573933838,0.3623401036174407,0.3650530148870087,0.3695652173913043,0.3735438381361128,0.3713638080846241,0.3689839572192513,0.3753652160541288,0.3718857605833502,0.374106652006597,0.3782026768642447,0.0,2.17473609765593,63.66282470115085,203.35361390810837,311.97925058048736,fqhc4_80Compliance_baseline_low_initial_treat_cost,46 -100000,95889,42863,403.768941171563,6758,69.34059172584968,5249,54.16679702572767,2160,22.17146909447382,77.4394230829848,79.71939285201069,63.39129033748679,65.07723150022247,77.1684997323258,79.44777493708257,63.291980835857046,64.98013822020089,0.2709233506590038,271.6179149281146,0.0993095016297402,97.09328002158202,118.30214,82.86305134751346,123374.0470752641,86415.59652046998,280.06025,176.15141178353454,291484.3934132174,183120.7247792078,306.81135,147.67143088056338,316339.87214383297,151218.88018527583,3477.95076,1577.0103522569557,3593071.968630396,1610739.1596818876,1266.42255,558.7158231182029,1305706.8276861787,567672.8427140667,2124.79578,887.4181467761582,2183241.6022692905,897548.7782819944,0.38023,100000,0,537737,5607.911230693823,0,0.0,0,0.0,23630,245.82590286685647,0,0.0,28313,291.6705774384966,1869069,0,67134,0,0,4850,0,0,51,0.5214362439904473,0,0.0,0,0.0,0,0.0,0.06758,0.1777345291008074,0.319621189701095,0.0216,0.3211151995471271,0.6788848004528729,24.91412068049537,4.579697679014937,0.3257763383501619,0.2114688512097542,0.2291865117165174,0.2335682987235663,11.202900653884209,5.682621275071807,23.160482889279976,12689.71361739353,59.315582875773416,13.045500993865392,19.286998338405883,13.490426491911364,13.492657051590788,0.5532482377595732,0.772972972972973,0.695906432748538,0.5918536990856192,0.1174551386623164,0.7105069801616458,0.9222222222222224,0.8363636363636363,0.7305194805194806,0.1660079051383399,0.4981995884773662,0.7013333333333334,0.647244094488189,0.5441340782122905,0.1048304213771839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024093946142943,0.0046921237180266,0.0069994623601375,0.0093817583689549,0.0116783721426611,0.0137766834211758,0.015737203972498,0.0174010607915136,0.0195026766376527,0.0216248286585241,0.0238429459921923,0.0257228458270915,0.0278274451774667,0.0301102498378678,0.0322896584430446,0.0343232415017967,0.0363235704900733,0.0384523723176076,0.0402807192392342,0.0422882466762374,0.0566639564700731,0.0706546157463037,0.0835593344572308,0.0959065187036084,0.1082816628593685,0.1237898159781243,0.1367878062472857,0.1491568287836445,0.1609653657964587,0.1727093722577745,0.1870659815535441,0.2002009572479661,0.2123305526590198,0.2235321110941153,0.233767233228523,0.2445555949008498,0.254466026991185,0.2634617544647871,0.2723411003749476,0.2801499925689657,0.288111710421455,0.2957050773039376,0.3029092241674843,0.3091845287989462,0.3148903620601734,0.3219794027791465,0.3278784921617936,0.3330790841946023,0.3377278666890921,0.3422554329920004,0.3423656261357671,0.3420969405293915,0.3418740849194729,0.341774347411326,0.3425837889232232,0.3411663781614302,0.3399325298151697,0.3408341129548476,0.3420386955629999,0.3440351409745906,0.3456331795852552,0.3462055867690116,0.347481441093822,0.3477182317972556,0.3487986942850971,0.3491451209341117,0.3489759395506064,0.3509908894524279,0.3543738441676262,0.3570441170662348,0.3596717892923523,0.3601526474797265,0.3631053325796118,0.3658313656790311,0.365453856357779,0.3670720076299475,0.3670278637770898,0.3658988070752776,0.3692006707657909,0.3689839572192513,0.0,2.2191188585243604,59.91439457852392,196.58456011122703,293.04878712843663,fqhc4_80Compliance_baseline_low_initial_treat_cost,47 -100000,95737,42420,400.22143998663006,6711,68.82396565591151,5214,53.8663212759957,2059,21.151696836123964,77.34647984393533,79.69857950390258,63.33814763576003,65.07519135829016,77.08705204839065,79.4387309299361,63.24307866137252,64.98220411977383,0.2594277955446813,259.84857396647953,0.0950689743875159,92.98723851632928,118.89636,83.20247197796803,124190.60551302004,86907.33152069527,280.12724,176.10593895689004,292011.95984833455,183358.77346991244,300.56372,144.74481334596183,309716.1703416652,147974.86590663405,3429.12199,1553.2955940336058,3547233.6400764594,1587879.9983638544,1258.2252,546.5298822025651,1301281.1452207612,557895.2883446993,2023.69068,847.7602979158564,2081674.1489706172,859186.6102959466,0.379,100000,0,540438,5645.027523319093,0,0.0,0,0.0,23737,247.3338416704096,0,0.0,27893,287.14081285187547,1863643,0,66913,0,0,4676,0,0,40,0.4178112955283746,0,0.0,0,0.0,0,0.0,0.06711,0.1770712401055409,0.3068097153926389,0.02059,0.3317743764172335,0.6682256235827665,25.03614983104302,4.423304982569813,0.3200997314921365,0.2232451093210586,0.2293824319140774,0.2272727272727272,11.251310116552744,5.823624793499958,22.06347113532186,12648.28369754295,58.90210664696732,13.725216302735264,18.93292154098056,13.283696098322368,12.96027270492913,0.5496739547372459,0.7697594501718213,0.6896345116836429,0.5735785953177257,0.1122362869198312,0.7304860088365243,0.9193154034229828,0.8861047835990888,0.6892857142857143,0.1478260869565217,0.4859958506224066,0.6887417218543046,0.6195121951219512,0.5382096069868996,0.1036649214659685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025420295726149,0.0046629970906952,0.0069311251154341,0.0092237053290262,0.0116643276994732,0.0139069881088125,0.015973496432212,0.0181977770746792,0.0203616440596538,0.0224422307085888,0.0243544931784868,0.026307145936403,0.0281293373772682,0.0300960973951735,0.0323046604966931,0.0341302572689592,0.0361247437410697,0.0381387145302692,0.0401567600158007,0.0419756686942754,0.0558855770736545,0.0690745062742676,0.082363802310089,0.0948034741645811,0.1071914305896741,0.1224929957181371,0.1352575526137135,0.1471248709570992,0.1593876439880005,0.1708124792352127,0.1850125415809927,0.197506299135964,0.2097655867937446,0.2203658376677302,0.230766694509166,0.2417541063443573,0.2526396771064456,0.2620747821197638,0.2719238536065164,0.2805130848078795,0.2880591317625013,0.2953971372438956,0.301975685689596,0.3080316999772201,0.3142895321857651,0.3211281482849929,0.3271011663412925,0.332089552238806,0.3364591439688716,0.3409439247397072,0.3419040813299716,0.3415484226477476,0.3422930475250317,0.34277157242896,0.3432487128359275,0.3430417235717464,0.341756709654932,0.3423343516967248,0.3427046080662548,0.3430119254080921,0.3438180316793033,0.3451499188022339,0.3459241187852275,0.3472268983009,0.3479887971413395,0.3486802363755745,0.3497818348834539,0.3527868230533337,0.3552835778781038,0.3600668337510442,0.3620058565153733,0.3635975674810626,0.3648904006046863,0.3663707332006735,0.3696125793312494,0.3722182340272792,0.3683159188690842,0.3685397867104183,0.3698283141007599,0.3795966785290628,0.0,2.3226186014483456,59.60328212268267,189.3869514882825,298.175625967594,fqhc4_80Compliance_baseline_low_initial_treat_cost,48 -100000,95736,42316,399.588451575165,6768,69.49318960474638,5259,54.32648115651374,2168,22.206902314698755,77.41222784566315,79.76786074696264,63.350809200748486,65.08965644925874,77.14064095130102,79.49820774319161,63.25106785882049,64.99358833745502,0.2715868943621302,269.6530037710261,0.0997413419279951,96.06811180371722,118.31094,82.78730159377562,123580.4086237152,86474.57758186641,279.53043,175.1007097746069,291350.0355143311,182269.10438560927,302.56936,144.77786801702894,312279.47689479403,148328.33370061725,3501.42197,1577.0230002603755,3618963.911172391,1608853.8483541987,1281.10902,560.4038196898082,1321949.141388819,569145.9825409667,2143.38336,894.0246863246126,2198000.167126264,899745.4801183781,0.37782,100000,0,537777,5617.291301077964,0,0.0,0,0.0,23620,246.05164201554277,0,0.0,27976,288.5017130442049,1869582,0,67006,0,0,4698,0,0,48,0.5013787916771121,0,0.0,1,0.0104453914932731,0,0.0,0.06768,0.1791329204383039,0.3203309692671395,0.02168,0.3124649073554183,0.6875350926445817,25.192092597067564,4.4769010345388764,0.3108956075299486,0.2226659060657919,0.2198136527857007,0.2466248336185586,11.031169833048423,5.538429032061905,23.031137366304907,12671.336854770554,59.34192523408616,13.891253380345704,18.364662764414494,12.873201693299183,14.212807396026786,0.5343221144704317,0.7566182749786508,0.7039755351681957,0.5501730103806228,0.1056283731688512,0.7032306536438768,0.9263157894736842,0.8688118811881188,0.7054545454545454,0.1433823529411764,0.4770875763747454,0.6750948166877371,0.6498781478472786,0.5017026106696936,0.0956097560975609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078185132671,0.0041757462119292,0.0062593840035709,0.0087232919002356,0.0110310190221535,0.0131826741996233,0.0154921825631408,0.0176219095333816,0.0195705715833256,0.0218321392016376,0.0240940395179142,0.0258892367705178,0.0280456461396113,0.0300917582360998,0.0320906379949026,0.0338935747953361,0.0354964638149379,0.037402861500472,0.0393316836830176,0.0414092694258956,0.0558339597427545,0.0691437600058596,0.082755509865833,0.0960320632850139,0.1081497425508567,0.1234245198158632,0.1366878223769395,0.1491683880997508,0.1612517099863201,0.1726092089728453,0.1862769409912775,0.1986377025036818,0.2112127150010886,0.2225883795530934,0.2326014388172173,0.2435412483776858,0.2541270355757731,0.2629788576127237,0.2714739950034067,0.2800376043290837,0.2885666635782452,0.2955125354057913,0.3027932299680435,0.3093226938883098,0.3150217407146501,0.3205873657238592,0.3257500906737371,0.3317662007623888,0.3370551290997906,0.3427074281802143,0.342585878118873,0.3428936065101343,0.343462867740032,0.3434541393472152,0.3435063686258265,0.3424333882080361,0.3412458230880776,0.341840819594451,0.3421352615908124,0.3437644464990576,0.3440775974631598,0.3458821214208403,0.3469643753135976,0.3480946328628448,0.3486088772595242,0.3496838325223139,0.351148296764279,0.3535356705690342,0.3547414548641542,0.3570523982903277,0.3603579052550302,0.3630867143993636,0.3683020290219235,0.3697281744529416,0.3731941467051915,0.3730496453900709,0.3733859942275558,0.3714285714285714,0.3696786597088712,0.3777006172839506,0.0,2.3567725137018694,58.54824579968154,199.3006523136108,295.0352025683088,fqhc4_80Compliance_baseline_low_initial_treat_cost,49 -100000,95730,43151,406.497440718688,6770,69.36174657891988,5287,54.64326752324245,2118,21.72777603677008,77.32373385663094,79.69514318576289,63.321321634088775,65.07575093820549,77.0600708317588,79.43149060393847,63.222994419714965,64.9800202186674,0.2636630248721445,263.65258182441664,0.0983272143738105,95.7307195380821,118.50674,83.00411536983503,123792.45795466416,86706.2724138463,281.80841,177.4383272099691,293781.6567429228,184757.54734185504,312.68682,150.3806895260065,323211.10414708033,154432.81216898412,3482.98381,1588.2445302107394,3601005.6408649324,1621898.3829393664,1250.97091,548.2023166350436,1290214.7811553327,556362.7250844172,2083.71214,880.3515839279479,2139365.841429019,887903.0458281713,0.38356,100000,0,538667,5626.929907030189,0,0.0,0,0.0,23753,247.48772589574844,0,0.0,28820,297.628747519064,1863567,0,66902,0,0,4840,0,0,55,0.5745325394338243,0,0.0,0,0.0,0,0.0,0.0677,0.1765043278756909,0.3128508124076809,0.02118,0.3289640591966173,0.6710359408033827,24.91899113728948,4.42144142780961,0.3334594287875922,0.2152449404198978,0.2205409494987705,0.2307546812937393,10.978708168215665,5.57815398597085,22.785140963970417,12765.712794452782,60.07481185176142,13.558233762456558,20.015961998468903,13.027923431705076,13.47269265913087,0.5515415169283148,0.7697715289982425,0.7022121384004538,0.5771869639794168,0.1057377049180327,0.7081199707388441,0.9103260869565216,0.8565310492505354,0.7407407407407407,0.1259541984732824,0.4969387755102041,0.7025974025974026,0.6466049382716049,0.5279017857142857,0.1002087682672233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201621073961,0.0045635705375886,0.0067904993909866,0.0089323821718187,0.0113747354712681,0.0134563864356365,0.0157875413046138,0.0177606650802242,0.0196639841297434,0.0219058835577858,0.023967018429068,0.0262714649576863,0.0287745360273239,0.030966292597974,0.0333402146985962,0.0354495549421579,0.0377102493992874,0.0395605079681274,0.0414032606887373,0.0434084941441253,0.0578961106760636,0.0713605392336435,0.084652587626811,0.0979886810713008,0.1105463518543905,0.1264353232252743,0.1398669651287382,0.1523138640305606,0.1638346274204056,0.1745801968731905,0.1880181751620475,0.2010276936391172,0.2131463056597618,0.2240408480117208,0.233786950351489,0.2438951460181401,0.2542849177585726,0.2644081128153267,0.2734871166757394,0.2813601611500251,0.2891293290793915,0.296914446002805,0.30453239366671,0.3107117181883537,0.3169434086022811,0.3223865877712031,0.3281935015156449,0.3329086183171092,0.3382805101127386,0.3435976697182261,0.3439796152238685,0.3434401930368838,0.3432052060247597,0.3431051472293067,0.3429324831654847,0.3425010743446497,0.3421636352113568,0.3436771035253146,0.3449954729487333,0.3453087037301701,0.3457719380572501,0.3463666104887479,0.3479093856583435,0.3492042082546533,0.3500411045021519,0.3505206011172598,0.3521219778326537,0.3538178589548452,0.3572616898516866,0.3614095574085952,0.3616287094547964,0.3628304319793681,0.3669724770642202,0.3696777683332045,0.3697670013260087,0.3706772334293948,0.3747320061255743,0.3800730519480519,0.375,0.3819230769230769,0.0,2.158882626169996,60.19242378189728,205.4611196820752,290.4399574708097,fqhc4_80Compliance_baseline_low_initial_treat_cost,50 -100000,95789,42665,401.8415475680924,6636,68.25418367453466,5179,53.58652872459259,2084,21.484721627744317,77.38153749659537,79.72259161792186,63.350937847410606,65.0826194515191,77.12155549392442,79.45990083355377,63.25523628070542,64.98778316199784,0.2599820026709523,262.6907843680897,0.0957015667051877,94.836289521254,117.50882,82.35167358068517,122674.64949002497,85971.9525004804,279.11919,176.3133395052033,290883.2851371243,183557.96542943685,303.98638,146.45642008897818,313743.0080698201,150236.8250935744,3429.55477,1553.8108749129865,3550622.7437388427,1592485.156674336,1258.16733,550.4808139565151,1300925.0435853803,562162.79538655,2062.82296,852.7569772263877,2127929.887565378,868168.4146242498,0.37926,100000,0,534131,5576.12043136477,0,0.0,0,0.0,23549,245.31000428024092,0,0.0,28081,289.58439904373154,1870774,0,67060,0,0,4725,0,0,61,0.6368163359049578,0,0.0,0,0.0,0,0.0,0.06636,0.1749723145071982,0.3140446051838457,0.02084,0.317816091954023,0.6821839080459771,25.090132892194656,4.428655490077362,0.3151187487932033,0.2185750144815601,0.227263950569608,0.2390422861556285,10.881156175189185,5.37300209522553,22.017852240266915,12706.576739996495,58.32193282929325,13.368892038993204,18.51606082397468,13.069673345932172,13.367306620393208,0.5446997489862908,0.7835689045936396,0.6893382352941176,0.5641461342395921,0.117124394184168,0.700589970501475,0.9014778325123152,0.8356807511737089,0.6845878136200717,0.1510204081632653,0.4894062254773738,0.7176308539944903,0.6376451077943616,0.5267260579064588,0.1087613293051359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0045107142133111,0.0069700904995738,0.0089779917329352,0.0113569351526119,0.0135895843724869,0.0157071798426224,0.0182181896120597,0.0201720860839175,0.0224896146683856,0.024685918062017,0.026646958592515,0.0287068548926063,0.0308683923312946,0.032872614749871,0.0350467531125691,0.0365805703878471,0.0386864037815648,0.0405555613267818,0.0427286356821589,0.0574773815859499,0.0714913198075716,0.0850062373549421,0.0973110992024714,0.1095585833359677,0.1246988206450522,0.1380914533990356,0.150124386043248,0.1620675672791685,0.1735029635266503,0.1867108704778101,0.1991175325518017,0.2106830408085638,0.2212691093068744,0.2311863437383136,0.2422145711786912,0.2527712724434036,0.2618413212362418,0.2712806378803861,0.2794955713729888,0.2872542216053666,0.2948770419916507,0.3020247801853188,0.3084286826813634,0.3141319925186426,0.3207779570620912,0.3269576957695769,0.3320528638844016,0.3378033784221086,0.3425085729359008,0.342967919117944,0.3431398180892491,0.3434314955523915,0.3430802603036876,0.3436258979965195,0.342574014795301,0.3414113292310612,0.3427672440635191,0.3444056242011078,0.3464109374164453,0.3477715355805243,0.3493070794535713,0.3500513702220452,0.3498474925989055,0.3496798112571621,0.3516302643954436,0.3530619812316381,0.3545297534934841,0.3570302924181404,0.3603835638150335,0.362949476558944,0.3655502392344497,0.3657395701643489,0.3656967840735068,0.3655903796988921,0.3684712616265204,0.3733312874021789,0.3774579363470505,0.3774427694025684,0.3773657782927771,0.0,1.825468364180612,59.92031656282302,188.52175787381037,292.0637307053907,fqhc4_80Compliance_baseline_low_initial_treat_cost,51 -100000,95851,42648,400.8304556029671,6810,69.71236606816831,5321,54.86640723623123,2157,22.086363209564844,77.37299817448195,79.67550687925093,63.35320242165369,65.05747945447513,77.10610568261039,79.40990127406968,63.2552222274747,64.96306674497528,0.2668924918715589,265.60560518124987,0.0979801941789944,94.41270949984926,117.9112,82.68171226141037,123015.09634745595,86260.66734975156,282.38827,177.40107875313967,293995.86858770385,184464.20877522373,310.38567,149.13975380504874,319886.907804822,152555.80947587432,3522.03361,1600.6513156185897,3633913.125580328,1629362.005214959,1270.48824,555.8055053256666,1311283.022608006,565664.5786957527,2120.73174,883.6350084993976,2173103.733920356,887528.0277765786,0.37982,100000,0,535960,5591.595288520725,0,0.0,0,0.0,23843,248.1038278160896,0,0.0,28728,295.77156211202805,1866921,0,67012,0,0,4633,0,0,46,0.4799115293528497,0,0.0,0,0.0,0,0.0,0.0681,0.1792954557421936,0.3167400881057268,0.02157,0.3200892234769273,0.6799107765230726,25.040889168554564,4.510908989553529,0.329073482428115,0.2102988160120278,0.2238301071227213,0.2367975944371358,11.216828356812496,5.716659512337053,23.001875096577507,12685.906757039576,60.37502341582719,13.363439638069762,19.94962865542949,13.187808066503129,13.874147055824803,0.5566622815260289,0.7971403038427167,0.7144488863506567,0.5684298908480269,0.1126984126984127,0.7173756308579669,0.931297709923664,0.8471337579617835,0.7106227106227107,0.144,0.5,0.7245179063360881,0.665625,0.5261437908496732,0.1049504950495049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147052866113,0.0043682284857145,0.0067050099915806,0.0089962025059399,0.0111928918528759,0.0133754071661237,0.0154515711475543,0.017593811550276,0.0196793673175367,0.0218450078785274,0.0239844270273039,0.0261832209876163,0.0283030502343171,0.030560673590596,0.0328855808583239,0.035286828109671,0.0372550642471394,0.0394491420044764,0.0414243582287945,0.0433452638588313,0.0582181067384095,0.0719712407645442,0.0847345758556746,0.0978545099398254,0.1094880517319459,0.1242605425504943,0.1376598878797834,0.150135558981447,0.1621910088374674,0.1734336323014112,0.186924235901851,0.1996800449666533,0.2112230591150673,0.2219889792705326,0.2319025560335816,0.2423188534213499,0.2527584091035867,0.2621897711675629,0.2712370104823705,0.2794050290844135,0.2874937833242734,0.2948974457977933,0.3025901460804508,0.3094667465548232,0.314948866810795,0.3208651713088489,0.3269327120597224,0.3323702364890665,0.3370429870701941,0.3406647116324535,0.3407384441179246,0.3413165401204371,0.3417966269141204,0.3416731821735731,0.3419635151623367,0.3417917541896015,0.3403955026245262,0.341146689460188,0.3423572869993501,0.3429394297162892,0.3439756889080643,0.3450589912107055,0.3456101346532992,0.3465220308655781,0.3492612612612613,0.350611425442599,0.3518629721769466,0.3543796541713997,0.3559447459299457,0.3570491672959974,0.3587748042963772,0.3607386121753937,0.3618662283474522,0.3665082042631498,0.3697654543728041,0.3700759373516848,0.3652777777777777,0.3598352214212152,0.3638405390230207,0.3761609907120743,0.0,2.5670700452471142,60.77371760464226,202.82669945787575,293.89813535623426,fqhc4_80Compliance_baseline_low_initial_treat_cost,52 -100000,95795,43079,406.43039824625504,6909,70.81789237434104,5412,55.93193799258834,2169,22.224541990709326,77.39816222968327,79.7277840159173,63.35848721039546,65.07977805845782,77.12710457611732,79.45806389084265,63.25741031405671,64.98216983633972,0.271057653565947,269.7201250746417,0.1010768963387462,97.6082221180974,116.94342,81.97285291731288,122076.74722062738,85571.11844805353,282.75076,178.00972227728545,294597.2127981627,185258.72143417527,311.0649,149.65070610358097,321531.26989926404,153857.7605262501,3581.96322,1637.1872244369972,3700556.3755937153,1670430.5560459436,1299.4465,578.3164315309936,1342504.5461662926,589747.5754862234,2143.65776,905.2020394418896,2197381.8675296204,909448.0893655128,0.38392,100000,0,531561,5548.943055483062,0,0.0,0,0.0,23833,248.2175478887207,0,0.0,28819,297.79216034239784,1871482,0,67126,0,0,4667,0,0,57,0.5845816587504566,0,0.0,1,0.0104389581919724,0,0.0,0.06909,0.1799593665346947,0.3139383412939644,0.02169,0.3311679336558397,0.6688320663441604,24.81937726409911,4.501995342510722,0.3305617147080562,0.2161862527716186,0.2148928307464893,0.2383592017738359,11.417912633214812,5.831813984066833,23.13339908140213,12792.472738560577,61.33637163804632,13.857142628950507,20.424056020605647,12.88949894892346,14.1656740395667,0.5593126385809313,0.794017094017094,0.6975964225824483,0.5950128976784179,0.1224806201550387,0.7242827151854444,0.9215686274509804,0.8528138528138528,0.7678571428571429,0.1792114695340501,0.5001255335174492,0.7257217847769029,0.6435568952524491,0.5402038505096263,0.1068249258160237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698122379534,0.0043376033727906,0.0065332954591567,0.0089263953204971,0.0114471610837188,0.0136991878193254,0.0156824782187802,0.0179263763620781,0.0201268913658701,0.0222733783507264,0.0247415709616941,0.0266187788609543,0.0287141330263915,0.0306617124859763,0.0327649132936057,0.0348987327391219,0.0368508172977446,0.0387514906413646,0.0407599093762341,0.0424572511611438,0.0572442218396201,0.0711394655650264,0.0846832111890458,0.0971854374238029,0.1091326944769495,0.1246154659337174,0.138291666224716,0.1513951854926249,0.1631312483978467,0.174064105176241,0.1876824316318947,0.2005365236297554,0.2127488481265756,0.2239693171760438,0.2347612923083687,0.2460210293303818,0.2561210944907361,0.2659204679678272,0.2755509657504709,0.2839760775417612,0.2920035627118252,0.2995415955282176,0.3062787861565967,0.3125389594821385,0.3184628277847279,0.3243199960579481,0.3295015323034586,0.3346518786090407,0.3391187213429008,0.3439541728812217,0.3443504271201056,0.3442571054985892,0.3447711957594384,0.3445809248554913,0.3449565798263193,0.3440096714462791,0.3437366463559389,0.3443900997899159,0.3444594617713982,0.3455468372982537,0.3464906523655047,0.3470204712550286,0.3480979458234541,0.3490384615384615,0.3497468384805509,0.3510203017904146,0.3521482490493217,0.355781289189867,0.3580937074176304,0.3601517426697226,0.360387395989633,0.3626907439674745,0.3637557041945364,0.3662228984404717,0.3694669429271049,0.3705741626794258,0.3733537519142419,0.3721735587696068,0.3781372002230898,0.3763936947327951,0.0,2.138111710483974,62.964537938136615,203.58454296214083,298.8522830583233,fqhc4_80Compliance_baseline_low_initial_treat_cost,53 -100000,95866,42709,401.58137400121,6873,70.42121294306637,5383,55.45240231155989,2165,22.14549475309286,77.3584022892406,79.64060972229916,63.35300198276878,65.04158226413665,77.09594811498172,79.38143716105697,63.25660898449479,64.94958426707008,0.2624541742588775,259.17256124219534,0.0963929982739912,91.99799706657076,118.0784,82.67909692840827,123170.02899881084,86244.21268062529,280.42633,175.90058377250648,291811.84152880067,182778.6637311524,310.4104,148.8249162803779,319316.9945548996,151781.64291715118,3555.30149,1600.7700731025566,3666714.17395114,1627898.100580556,1288.69599,558.9679590968511,1325696.93113304,564544.2584499652,2132.0317,881.1768847478102,2183203.0542632425,882827.4573424786,0.37925,100000,0,536720,5598.637681764129,0,0.0,0,0.0,23678,246.2499739219327,0,0.0,28660,294.5256921119062,1866922,0,67100,0,0,4817,0,0,52,0.5319925729664323,0,0.0,0,0.0,0,0.0,0.06873,0.1812261041529334,0.3150007274843591,0.02165,0.3214534317137686,0.6785465682862314,24.964289927158568,4.488368943140874,0.3280698495262865,0.2169793795281441,0.2219951699795653,0.2329556009660041,11.07382551973897,5.555361531840688,22.950623665117632,12744.871346917624,60.98632073270843,13.85905795620287,20.02387521833083,13.380562482930875,13.722825075243843,0.5561954300575888,0.7799657534246576,0.7061155152887882,0.5799163179916318,0.1140350877192982,0.7128279883381924,0.917312661498708,0.8682505399568035,0.6851851851851852,0.1428571428571428,0.5026178010471204,0.7119078104993598,0.6485034535686877,0.5491891891891892,0.1067864271457085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021767963632313,0.0043469009332157,0.0064711789108539,0.0088131669526546,0.0108457003455986,0.0130369737123316,0.0153734871021639,0.0174103727880055,0.0198993292016785,0.0220304848751265,0.0243021077523109,0.0264603965471284,0.028613096705283,0.0307157405311992,0.0330997526793075,0.0351349956119973,0.0371573394020895,0.0393317234446091,0.0413122721749696,0.0430833576095551,0.0579435160183901,0.0717994796836309,0.0856251178183189,0.0983093562952851,0.1106136895106073,0.1251188438866704,0.1383363184501415,0.1512032241942173,0.1632988546236697,0.1746154258455271,0.187349923009831,0.1995543585250565,0.2110492672957342,0.2225999693915477,0.2327711320256838,0.2442649255795938,0.2541932461970825,0.2641691870074092,0.2724581125996846,0.2807154233074005,0.2882372002592352,0.2952346409893414,0.3027872872220709,0.3088429335700405,0.3149607256632864,0.3209698315750509,0.3265017047733654,0.3318250184821679,0.3373057600186938,0.3422730881185499,0.3424522572373304,0.3426254155229727,0.3435581090046724,0.3445873526259378,0.3440913086883316,0.3429361604056234,0.342259068674163,0.3429940553625241,0.3443673434421314,0.346105707338006,0.3480969897154868,0.3492245835726594,0.3508023861535876,0.3512223541802048,0.3532164306905617,0.353163731245923,0.3550430960671271,0.3589517727372825,0.3630488233227959,0.3669808694268782,0.3694558756287151,0.3700180678074184,0.3711771037801558,0.3718701700154559,0.3755859561848273,0.375075693351096,0.3787902592301649,0.3810794171967986,0.3866222592284207,0.3859176606387072,0.0,2.606554951573784,60.26873035732906,206.8043104795896,299.09737287805774,fqhc4_80Compliance_baseline_low_initial_treat_cost,54 -100000,95730,42475,401.2744176329259,6650,68.29624986942441,5208,53.797137783349,2032,20.83986211219053,77.38965647392791,79.75619763709362,63.34469261111818,65.09379338997904,77.14742701843106,79.51459936126852,63.256723600931934,65.00864379125964,0.2422294554968544,241.59827582509763,0.0879690101862493,85.14959871939709,118.52896,82.9988410415818,123815.66906925727,86700.80310067261,278.11627,174.44455322441354,289879.8182387966,181589.5852323353,303.66343,145.2384013598654,313315.3034576413,148798.64426535758,3445.09949,1536.0960115619105,3560968.745429855,1567298.961177725,1254.49577,544.2577346860268,1289469.4557609945,547855.9223074099,2001.19206,817.4732252495608,2053852.2511229496,823201.2447600384,0.37881,100000,0,538768,5627.984957693513,0,0.0,0,0.0,23512,244.9493366760681,0,0.0,28131,289.9926877676799,1868713,0,67019,0,0,4668,0,0,43,0.4387339392040112,0,0.0,1,0.010446046171524,0,0.0,0.0665,0.1755497478947229,0.3055639097744361,0.02032,0.3256314580941447,0.6743685419058554,24.78963286125573,4.504487478803715,0.3283410138248848,0.2167818740399385,0.2236943164362519,0.2311827956989247,11.134620505737956,5.7349263178551,21.306236278719357,12657.91591393446,58.37436934285363,13.297474638514288,19.207259811403084,12.997127021723422,12.87250787121284,0.5539554531490015,0.7714791851195748,0.6964912280701754,0.5914163090128756,0.1112956810631229,0.7480916030534351,0.9441624365482234,0.8578088578088578,0.7436823104693141,0.1619047619047619,0.4887121600820934,0.6789115646258503,0.6424668227946917,0.543918918918919,0.1006036217303823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093752532209,0.0045213547844246,0.0067790418007083,0.0091025458682975,0.0111487483088691,0.013217384220602,0.0154668080464106,0.017598840354835,0.0196050372066399,0.0218337035406835,0.0238832284384673,0.0260042912727011,0.027941403238242,0.0298721090676936,0.0317163986673955,0.0337739378468597,0.0358063681076883,0.0379503885298114,0.0397958759457886,0.0416141367202558,0.0564099351645942,0.0709007556885976,0.0837687545902843,0.0961243082879205,0.1088653529684796,0.1252472263059366,0.1377920176536739,0.1494216177675616,0.1611384023921401,0.1716265053780737,0.1848486153581119,0.1985721239656011,0.210483397481897,0.2221128824159723,0.2319243971131843,0.2425708591674047,0.2526397948374868,0.2615388072446182,0.2707837402797615,0.2794573510403441,0.2882327780539403,0.2958176060205906,0.302921088081677,0.3092967319635741,0.3157371122138238,0.3208183563937171,0.3267502468657425,0.3316299940256009,0.3376522616184343,0.3424281967126682,0.3422308881866469,0.3416237024816113,0.3416912902771915,0.3412894375857339,0.3412464227991874,0.3407319086489956,0.3402413597017754,0.3416074876460385,0.3414961593365508,0.3424087863654943,0.3429668138707213,0.3441200771137427,0.346302123491779,0.3469900968064983,0.3477262397435591,0.3491210303549635,0.3482370975983648,0.3504681706780619,0.3531439020959347,0.3557795752480376,0.3578691828508611,0.3606214840610768,0.3666624477914188,0.3668231374924288,0.3688967573611629,0.3724519853894191,0.3764831153027076,0.3783403656821378,0.3754778809393774,0.3794285714285714,0.0,2.303872424517013,57.5410130147013,193.2050972197453,294.54086236560846,fqhc4_80Compliance_baseline_low_initial_treat_cost,55 -100000,95760,42754,403.2163742690058,6742,69.35045948203843,5291,54.66791979949874,2059,21.125730994152047,77.34687979821054,79.70616591389205,63.33382307926016,65.08134955378928,77.1026188960982,79.46266994978565,63.2448313636782,64.99506799609836,0.2442609021123303,243.4959641064012,0.0889917155819617,86.28155769092416,119.68462,83.78485656573014,124983.93901420216,87494.62882803899,280.63515,175.96927904632832,292458.3646616541,183158.165253058,305.94934,146.37711262442127,315526.6917293233,149891.32189640182,3470.85595,1555.7801033836408,3590372.044695071,1590501.695262783,1300.23015,563.0793903957216,1341065.9461152882,571276.0969044709,2024.39302,829.6262315037277,2079107.3308270676,837178.9936079392,0.38101,100000,0,544021,5681.088137009189,0,0.0,0,0.0,23672,246.5747702589808,0,0.0,28279,291.40559732665,1862866,0,66865,0,0,4800,0,0,67,0.6892230576441103,0,0.0,0,0.0,0,0.0,0.06742,0.1769507362011495,0.3053989913972115,0.02059,0.3203047834062367,0.6796952165937632,25.29875381382642,4.426824632975699,0.3233793233793234,0.2235872235872235,0.2277452277452277,0.2252882252882252,11.272755792237875,5.848468716685552,21.77146412072149,12755.52283808561,59.51615734074215,13.989009121586628,19.163363905915386,13.298336016440333,13.065448296799792,0.5556605556605556,0.7962806424344886,0.6826417299824664,0.5643153526970954,0.1258389261744966,0.7318181818181818,0.9376558603491272,0.8387850467289719,0.78,0.1493775933609958,0.4971040040292118,0.7237851662404092,0.6305533904910366,0.5078534031413613,0.1198738170347003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019760042154756,0.0042286942765586,0.0062944162436548,0.0084352165208288,0.0104683812159192,0.0125455693366733,0.0148129269038637,0.0170477746018783,0.0194537016213121,0.0216959495433509,0.0235910474999231,0.0258129434353598,0.0279508854198803,0.030069224113066,0.0321685105680317,0.0340610721743265,0.0360981671326498,0.0381231975767132,0.0402174590964844,0.0423912364370951,0.057456868209287,0.0714345488399338,0.0853272380313293,0.097789642958494,0.1103347245057122,0.1257581841621404,0.1392716326790181,0.1513788777614764,0.163744,0.1745445197776421,0.187918163629714,0.2013313305741363,0.2134515312496605,0.224422045799526,0.2348818560302308,0.2454253789135966,0.2558136942320126,0.2652301951263375,0.2740855872209112,0.2820586214792764,0.2906699671494008,0.297233756360021,0.3044522533394858,0.3114948589506986,0.3176841849739046,0.3229985605137858,0.3273127532896382,0.3332316142813549,0.3388549539289781,0.3438126120426025,0.3441943685846125,0.3432710563244641,0.3437891389088248,0.3436827898786068,0.344605427231162,0.3441140005816356,0.3430814027092037,0.342759085012398,0.343984962406015,0.3446446750370595,0.3465739821251241,0.3469965363681346,0.3476455165180912,0.3480435026348245,0.3495005067323005,0.3514462376860197,0.3524627720504009,0.3549889135254989,0.3584606158947405,0.3594904356854758,0.3604202991649077,0.3611452379680572,0.362870000633834,0.3631920580374189,0.3640281030444965,0.3632488752071987,0.3705350298942204,0.3735161686451084,0.3719495091164095,0.3811410459587955,0.0,2.280381877636246,58.036108659332335,198.251273466428,301.6575593664317,fqhc4_80Compliance_baseline_low_initial_treat_cost,56 -100000,95750,42801,402.78851174934726,6870,70.38120104438643,5402,55.80156657963447,2091,21.389033942558747,77.36211040614715,79.72421348829458,63.32787542470121,65.07576156751499,77.09405237033593,79.45861739402076,63.22755115549484,64.97968418698412,0.2680580358112223,265.5960942738176,0.100324269206375,96.07738053087188,118.74852,83.10931120581172,124019.34203655351,86798.23624627855,281.68283,176.28218521384957,293593.4725848564,183514.4701972319,305.80993,146.414387128712,315773.9321148825,150151.1112460718,3561.37456,1609.6313852686992,3679196.699738904,1640822.6269124812,1286.63769,566.9740151251756,1327952.9712793734,576346.0001307311,2059.1546,875.9136242127197,2108016.0835509137,877732.1188861253,0.38217,100000,0,539766,5637.242819843342,0,0.0,0,0.0,23712,247.01827676240208,0,0.0,28317,292.1671018276762,1864675,0,66987,0,0,4623,0,0,51,0.5326370757180157,0,0.0,0,0.0,0,0.0,0.0687,0.1797629327262736,0.3043668122270742,0.02091,0.3287082003607603,0.6712917996392397,25.210258092599812,4.543408066805589,0.3293224731580896,0.2165864494631618,0.2260273972602739,0.2280636801184746,11.07021505631342,5.463129752718571,22.3979692982822,12782.53306816254,60.777028169450006,13.749129435644674,20.028190048766135,13.504124008771903,13.495584676267276,0.541095890410959,0.7521367521367521,0.6919617762788083,0.5561015561015561,0.1079545454545454,0.6869125090383225,0.8850267379679144,0.8675496688741722,0.6992753623188406,0.1178571428571428,0.4909181388405076,0.6896984924623115,0.6319758672699849,0.5142857142857142,0.1050420168067226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024619312482903,0.0045226844058652,0.0068317937265252,0.009032992267596,0.0115660444534865,0.0140954088075935,0.0163155425937633,0.0185412072204525,0.0207155346059856,0.0229583738671855,0.0252074124970516,0.0271591749527487,0.0293312757201646,0.0314303380049464,0.0334915883992156,0.035545170695395,0.0375482815396245,0.0395928658138014,0.0414665585563109,0.04321875,0.0574572254757654,0.0710504289600334,0.0848593543515197,0.0979583679565798,0.1098945147679325,0.1252300467497303,0.1383286831245159,0.1515309598841666,0.1626669515973929,0.1739801827306653,0.1871896776417116,0.2000129864508029,0.2123951568160308,0.2234146128012427,0.2337369290038525,0.244408981093601,0.2544179084470856,0.2638623111731466,0.2728521322602981,0.2816155829275279,0.289466674387631,0.2971381752209281,0.3039611581502753,0.3108802073334613,0.3162603009456207,0.3218511344428953,0.3272392361285148,0.3335413535749764,0.339998704075682,0.3446736575186878,0.3445090291170481,0.3447468136410609,0.3452344036309305,0.3450425174986984,0.3451166939200238,0.3438232904640005,0.3427896730430924,0.3434799750303906,0.3444694951151192,0.3454655747649378,0.3465550499091709,0.3479135839005623,0.3495249257042401,0.3510854740984193,0.3517645927493028,0.3543941012480133,0.3547183780397517,0.3581053491220906,0.3595781211675251,0.3625603673501702,0.3648857039187227,0.3690048594971477,0.3738388149635953,0.3734712365997282,0.3756633460571641,0.3750886315291893,0.3745050258909534,0.3764235764235764,0.3674078091106291,0.373070987654321,0.0,2.4032300909492923,60.847187370264685,199.831635148113,304.3253555983826,fqhc4_80Compliance_baseline_low_initial_treat_cost,57 -100000,95772,42690,401.818903228501,6736,69.26867978114689,5222,54.07634799315039,2128,21.93751827256401,77.32840490063373,79.6908606329719,63.31625382636724,65.06553336721566,77.06378779871035,79.42185253470319,63.219531401143286,64.9686752834033,0.2646171019233776,269.0080982687135,0.0967224252239518,96.85808381236428,119.65052,83.83255623461544,124931.98429603642,87532.8410691137,281.27514,176.83313342699427,293222.10040512885,184171.7091981185,305.17739,146.2697849221812,315966.618635927,150566.0596099515,3434.43452,1553.5354601128752,3558509.303345445,1594719.556127225,1235.60578,547.6225545667583,1276167.0216764817,558094.9477855522,2092.23396,876.0576252403915,2158316.146681702,893488.313487905,0.37892,100000,0,543866,5678.7265589107465,0,0.0,0,0.0,23739,247.37919224825623,0,0.0,28183,291.5987971432151,1857622,0,66717,0,0,4807,0,0,50,0.5220732573194671,0,0.0,0,0.0,0,0.0,0.06736,0.1777683943840388,0.3159144893111639,0.02128,0.3209112642385037,0.6790887357614963,25.03638898533685,4.4856348239968185,0.3184603600153198,0.2221371122175411,0.2330524703178858,0.2263500574492531,10.95304045850621,5.465354680690084,22.876052228476173,12670.97877096817,59.21258037801034,13.749508751989437,18.86766038471364,13.621625529920466,12.973785711386784,0.5507468402910762,0.771551724137931,0.6885147324113049,0.5883319638455218,0.1015228426395939,0.7196745562130178,0.9201101928374656,0.8452914798206278,0.7560137457044673,0.1666666666666666,0.4917312661498708,0.7038895859473023,0.6310599835661462,0.5356371490280778,0.0838709677419354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020672253579643,0.0043611432280573,0.0066908987531982,0.0087095266163946,0.011067933511017,0.013394312255541,0.015622450644477,0.0178053661126311,0.0200474350324071,0.0222941019919339,0.0243964942852749,0.0266546193810707,0.0290415466886055,0.0312088002636783,0.0332483721506186,0.0350911646752387,0.0370458544664113,0.0389924192929512,0.0411912629631938,0.0432622710088628,0.0581039755351682,0.0719836015854589,0.0850633283006207,0.0980629158214477,0.1101769025718831,0.1252694990488269,0.1382718143934172,0.1507438227594866,0.1614639512158655,0.1720562691656123,0.1859821438187242,0.1983772380591767,0.2098581436839127,0.2206985543380793,0.2316624840399771,0.2432076203134518,0.2537806497695338,0.2631099105183184,0.2719127916879577,0.2806189111747851,0.2887090799648099,0.2958456660856137,0.3030353272776797,0.3089063043817433,0.314423649872922,0.3194542112340698,0.3255253748196474,0.3309569963781054,0.3358820245868654,0.3409592535321095,0.3412464910386525,0.3407887479316051,0.3407161522706405,0.3411919648025935,0.3409950841650528,0.3398715900712706,0.3390013495276653,0.339643780996161,0.33925664444711,0.3406020426446873,0.3425845945844443,0.3444002296529468,0.3452767365401126,0.3453274483005847,0.3465904982283607,0.3477783872737246,0.3482012743949481,0.3503950640601882,0.3536889419531552,0.3559450007947862,0.3578429137986051,0.3609771607228021,0.3622052182639237,0.3615390453062154,0.3613903240958196,0.3647642679900744,0.3649579188982402,0.3627792580446813,0.3626495964375174,0.3673469387755102,0.0,1.6405943965897245,60.23820433642848,197.6693858132388,291.37083084382743,fqhc4_80Compliance_baseline_low_initial_treat_cost,58 -100000,95734,42469,399.7534836108384,6699,68.77389433221218,5284,54.64098439425909,2123,21.73731380700692,77.31464774318667,79.67875347347979,63.30648041847581,65.05515872277655,77.04958591652647,79.41775063033475,63.20702364527337,64.96029551572113,0.2650618266602009,261.002843145036,0.0994567732024407,94.8632070554254,118.32238,82.79903807609159,123594.94014665636,86488.64361260534,279.31786,175.86860797459946,291218.28190611483,183159.2307587685,306.4591,147.00902173447588,317479.9653205758,151427.35532846107,3482.89705,1582.1749202543772,3602244.698853072,1616824.5453594087,1268.48582,552.0010950719657,1310834.5937702383,562422.6137756341,2083.23678,882.0849953032833,2135388.26331293,885069.2234589508,0.37807,100000,0,537829,5617.951824848016,0,0.0,0,0.0,23603,245.9836630664132,0,0.0,28440,294.4304009025007,1862546,0,66874,0,0,4702,0,0,39,0.4073787786993127,0,0.0,0,0.0,0,0.0,0.06699,0.1771894093686354,0.3169129720853859,0.02123,0.3286931818181818,0.6713068181818181,24.892938604876885,4.523781656326226,0.3230507191521574,0.2200984102952309,0.2286146858440575,0.2282361847085541,11.18989414738402,5.673689996895318,22.805512975294533,12670.466669736728,59.825822716302056,13.74703217917886,19.367056075518384,13.518062427620578,13.193672033984235,0.5603709311127933,0.764402407566638,0.715875805506737,0.5827814569536424,0.12106135986733,0.7197640117994101,0.91644908616188,0.8789954337899544,0.6798679867986799,0.146551724137931,0.505346232179226,0.6897435897435897,0.6595744680851063,0.5502762430939226,0.1149897330595482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0048057912826596,0.0071053005542134,0.0093994512752769,0.0115061803754005,0.0136415501854191,0.0157823323573519,0.0178983480018786,0.0199537955144849,0.0220711682568281,0.0242789619923513,0.0264190077213734,0.0284823798062087,0.0305712401599142,0.0327105697770437,0.0347971715668031,0.0369672368802551,0.0390254531870959,0.0411229529503509,0.0430053756719589,0.0574575828765335,0.0713941804479799,0.084747896514824,0.0978818728703041,0.1100659108884787,0.1261663457673021,0.1394697178763241,0.1507917070417735,0.1616296597214055,0.1722261575117522,0.1853773228788058,0.1977307454728697,0.20956511316211,0.2207108957988535,0.2313766142105669,0.2424568845850592,0.2526570156400331,0.2625558413428996,0.2719670508459149,0.2808019301470588,0.2885480952159993,0.2958086640483029,0.302348475862887,0.3080683715510924,0.3142116725268575,0.3198804923517574,0.325992734560942,0.3309944350350834,0.3360532587296653,0.3402275487038699,0.3402764678936164,0.3411622176025992,0.3406988043432337,0.3406272582743171,0.341128168511246,0.3405145976447497,0.3390685209558998,0.3402774349607543,0.3418957102491651,0.342262916003505,0.3432208162805542,0.3451782675794388,0.3466345650580969,0.3477561237260861,0.3477821610699509,0.3483916375580001,0.3481407322654462,0.3507119455645161,0.3534821679303566,0.3545411165897884,0.3564514656195781,0.3611539894607973,0.3656356952718976,0.363218038193113,0.3691841182602103,0.3691739182262487,0.3674067221708295,0.3698347107438016,0.3714764164108289,0.3689358372456964,0.0,2.136033212949409,59.7261956397506,201.4055894124295,294.78678235731047,fqhc4_80Compliance_baseline_low_initial_treat_cost,59 -100000,95818,42461,400.509298879125,6634,68.09785217808762,5191,53.63292909474212,2049,21.039888121229836,77.3504688262772,79.6837189000995,63.33176974345843,65.06078997469578,77.09600398655797,79.4296454668313,63.23780412192483,64.96931414288933,0.254464839719219,254.07343326820356,0.0939656215335986,91.47583180644858,117.91164,82.64871940829472,123057.69270909432,86255.7133401811,280.96345,176.81290877427298,292675.88553298963,183980.29971177725,303.16166,145.3797756958271,313363.71036757185,149394.5428013948,3402.32941,1543.0315017109403,3517124.506877622,1576713.6002365295,1246.85442,547.1026259367578,1288887.9125007826,558620.2355221834,2011.52146,847.2875081004858,2067220.146527792,856353.1087309659,0.37801,100000,0,535962,5593.531486777015,0,0.0,0,0.0,23703,246.81166377924816,0,0.0,27988,289.0688597132063,1866694,0,67038,0,0,4521,0,0,64,0.6679329562295184,0,0.0,0,0.0,0,0.0,0.06634,0.1754980026983413,0.3088634308109738,0.02049,0.3159100673063153,0.6840899326936847,25.01432765741813,4.498046271226796,0.329608938547486,0.2192255827393565,0.2267385860142554,0.2244268926989019,11.28448930434202,5.783766997277854,21.95252080472054,12666.12206003897,58.80040698382809,13.634532740908773,19.20584088948706,13.088237752238324,12.871795601193938,0.5559622423425159,0.7864674868189807,0.6820572764465225,0.5751911639762107,0.1261802575107296,0.7107806691449814,0.918918918918919,0.8470873786407767,0.6819787985865724,0.1646090534979424,0.5018200728029121,0.7127222982216143,0.6297151655119323,0.5413870246085011,0.1160520607375271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0044918528132382,0.0066172739267228,0.0087073143472562,0.010873324246801,0.0130879387260393,0.0152261485900769,0.0176762519402009,0.0197231197088053,0.0219171631554163,0.0238305202928569,0.0260515074344861,0.0279925956396544,0.0299591138940668,0.0320022276768218,0.033890599491641,0.0360130015320276,0.0379939840265532,0.0399692384436315,0.0419429725481214,0.056040058418527,0.0696631328022081,0.0832678382428453,0.0958604748896827,0.1081903999325719,0.1234702289108241,0.1367058274662821,0.1490484346244268,0.1611077895456098,0.1727267856186036,0.1862517217630854,0.198650796224824,0.2103210386224129,0.2215919027632039,0.2323905701682012,0.2431087968092178,0.2528293042255407,0.2624572380266474,0.2711922146645015,0.2795303550973654,0.2879149113466969,0.2951352742329781,0.3022686122057727,0.308612382847144,0.3148067104303428,0.3210994460824831,0.326419350795839,0.331973898858075,0.3375427860180479,0.3427083608680711,0.3429284750337382,0.3420544506661517,0.3425175733280637,0.3418740319335273,0.3421765266039757,0.3419785276073619,0.3406412107175151,0.3412254434170259,0.3424723177765227,0.3435246972109415,0.3438795221394947,0.3448255399952528,0.3460038577658504,0.3463960027783379,0.3486561407737736,0.3509779855326039,0.3512096429487362,0.3542413381123058,0.3583829191459573,0.362564041463124,0.3650786435130466,0.3678945697046681,0.3707470182046453,0.37062884017295,0.370318087709392,0.3716240122655974,0.3773642464917632,0.3740427247077791,0.3716381418092909,0.375996961640714,0.0,2.0577743887749893,59.45386091712479,193.87049110838987,292.3356752292267,fqhc4_80Compliance_baseline_low_initial_treat_cost,60 -100000,95729,42431,399.4818706974898,6704,68.94462493079422,5259,54.47669985061998,2123,21.874249182588347,77.30949638025908,79.66877920938853,63.31695901961641,65.05914070454118,77.05083101061275,79.40860078954476,63.222687281584285,64.96648144376985,0.258665369646323,260.17841984376844,0.0942717380321269,92.65926077132748,117.85312,82.47435633285835,123111.19932308914,86153.99339056957,280.34341,175.78589535400533,292381.01306814025,183158.6958123844,299.79526,143.30323220426394,310048.81488368206,147331.53557394232,3453.8862,1542.4114171312713,3579535.3967972086,1582788.4157244184,1245.18862,540.6085990729538,1286696.0273271422,550680.7958643186,2093.14858,859.4757436476265,2158403.890148231,872390.4404184672,0.37816,100000,0,535696,5595.96360559496,0,0.0,0,0.0,23650,246.57104952522224,0,0.0,27646,285.6605626299241,1868641,0,67084,0,0,4601,0,0,54,0.5640923857974073,0,0.0,0,0.0,0,0.0,0.06704,0.177279458430294,0.3166766109785203,0.02123,0.3221371882086167,0.6778628117913832,25.28288083539057,4.531955669225957,0.3320022818026241,0.2112568929454268,0.2314128161247385,0.2253280091272105,11.29530114992174,5.599315268944091,22.286793397691845,12709.81030448748,59.06470978297324,13.031372796087645,19.638833358427377,13.420232350277246,12.97427127818097,0.5499144324015972,0.783978397839784,0.6907216494845361,0.5571076417419885,0.1156118143459915,0.706495589414595,0.8997134670487106,0.8424821002386634,0.7154471544715447,0.1630901287553648,0.501246261216351,0.7309711286089239,0.6428033157498116,0.5169927909371782,0.1039915966386554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381786694483,0.0043893439299326,0.0065132700267835,0.0086739254083042,0.0108778528948304,0.0133032051869268,0.015726443459206,0.0177202527381669,0.0200829892481909,0.0220241323904166,0.0241084881968859,0.0264184652031952,0.0283907455012853,0.0304621848739495,0.0325890785334914,0.0345807331487374,0.0365544435589869,0.0384858698470313,0.0404909633232521,0.0428528275158067,0.0572639844622886,0.0712947554606633,0.08416713863193,0.0964753632941473,0.108704592186429,0.1246840596876024,0.1380053050397878,0.1501596763891846,0.1619554302074653,0.1730150559773517,0.1863431661962119,0.198830725924322,0.2116677911506736,0.2227949787131584,0.2330408165512381,0.2441027801179444,0.2541219839142091,0.2632373484746068,0.2726725293703274,0.2806369879504259,0.2882203772536214,0.2952760973098211,0.3020997406411729,0.3089371401151631,0.3152591404122909,0.3211999358586918,0.3273673934266189,0.3321192980668823,0.3369686438260238,0.3413814989157455,0.3415595104772442,0.3419199228171732,0.3426461868594178,0.3425686135505432,0.3425836323303905,0.3416023210475415,0.3411336701299526,0.3423236514522821,0.3443699525042437,0.3456336107921929,0.3466694280227435,0.3471559268098647,0.3485627581556099,0.3497244404453942,0.3513454598299707,0.3516140865737344,0.3543612588015519,0.3577413133516709,0.359750070601525,0.3623765530423702,0.3686520089591809,0.3703070761014686,0.3702011548956152,0.3708029197080292,0.3719935355071775,0.3761325703385789,0.374806800618238,0.3746379809681423,0.3732217573221757,0.3760217983651226,0.0,1.7001300146996448,55.42446006241249,198.58076679041977,309.1717831127193,fqhc4_80Compliance_baseline_low_initial_treat_cost,61 -100000,95747,42811,403.4486720210555,6714,68.98388461257272,5257,54.45601428765392,2153,22.235683624552205,77.40440741590693,79.76110865956193,63.3594678928421,65.09908463217829,77.14298057348154,79.49583714835885,63.26423763543401,65.003748263577,0.2614268424253936,265.2715112030819,0.0952302574080903,95.33636860129492,119.4556,83.6404242204028,124761.71577177352,87355.66045975624,285.20789,179.23141652813047,297428.0447429162,186744.18679241175,307.98187,147.4287216618061,318539.1604958902,151533.5727052049,3466.66507,1560.7796897066526,3594070.9682809906,1603527.786465007,1248.62661,543.8771848855398,1292154.7411407146,556100.9482130408,2119.50376,873.941477849986,2190768.4836078417,894319.402485426,0.3814,100000,0,542980,5670.98708053516,0,0.0,0,0.0,24057,250.77548121612165,0,0.0,28458,294.07709902137924,1860904,0,66706,0,0,4818,0,0,57,0.5953189133863201,0,0.0,0,0.0,0,0.0,0.06714,0.1760356581017304,0.3206732201370271,0.02153,0.3268741159830268,0.6731258840169732,24.99524619804561,4.531236856962009,0.3249001331557923,0.2179950542134297,0.2242723987064866,0.2328324139242914,11.256402443634864,5.657409510348002,22.67859384484719,12707.45972350373,59.19835576047432,13.502179916883694,19.246401044980868,13.218791656181478,13.230983142428274,0.5487920867414875,0.7678883071553229,0.7008196721311475,0.5843935538592027,0.0972222222222222,0.7196969696969697,0.9270833333333334,0.8425925925925926,0.724907063197026,0.1489361702127659,0.491490982981966,0.6876640419947506,0.6528213166144201,0.5428571428571428,0.0849342770475227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022072149604625,0.0045300228021281,0.0068577921155679,0.0091301477682425,0.0113062133336044,0.0133448697068403,0.0158878980891719,0.0178565962266461,0.0200261566127186,0.0221335379892555,0.0242182615736233,0.0262334116777683,0.0283229328371251,0.0306419882787957,0.0327493344889494,0.0345875542691751,0.0366999078360102,0.0387954731699221,0.0410279859083209,0.0429199300116647,0.0576389033888042,0.0714808923862542,0.0850106459970002,0.0976430268497298,0.1098474867459974,0.1249061591329632,0.1373333191891118,0.1498009325299665,0.1614732996485531,0.1728855721393034,0.1865321243188524,0.1999004555241774,0.2119465320905343,0.2234735829251224,0.2334723246014544,0.2437071571743391,0.2539358437935843,0.2632141130437715,0.2722406206051808,0.2802019184542478,0.2880866259115019,0.2965700009339684,0.3040475122204643,0.3100325016728802,0.3160955045971581,0.3214961772008752,0.3273201993828625,0.3323217573487397,0.3380458240181952,0.3430700172443298,0.3430248173614095,0.3424495791973859,0.3422040403188393,0.3422840084795869,0.3421040928564016,0.3412885273972603,0.3407634747116799,0.3422661487272787,0.34327034586261,0.3434892676317478,0.3448954351248032,0.3450577307745628,0.344850010488777,0.3455119026311079,0.3470143867584083,0.3481133307220264,0.349864768683274,0.3526249607041811,0.3542917324907846,0.3562638932994601,0.3579517031242894,0.35951773953686,0.3592550648043286,0.3620137299771167,0.3645921336712663,0.3695780640586219,0.3709900230237912,0.3647391831783259,0.3718732629238466,0.3773285770907649,0.0,1.7728419048884547,58.37828685709929,195.51071581285143,301.8787961862731,fqhc4_80Compliance_baseline_low_initial_treat_cost,62 -100000,95757,42977,406.0590870641311,6639,68.13078939398686,5190,53.708867236859966,2087,21.512787576887327,77.33232137485312,79.69789780012745,63.31916690730778,65.07107512885594,77.08286425638128,79.44619730552597,63.2268341450452,64.97998523897265,0.2494571184718381,251.70049460147936,0.0923327622625862,91.0898898832926,117.94442,82.62388303529723,123170.54627860105,86284.95361727834,280.81478,176.43423495479527,292753.5114926324,183761.0863181461,307.86085,147.84527075596168,318094.80246874905,151879.19517490276,3426.16477,1544.658599313168,3549363.973390979,1585279.053767878,1251.46649,548.3763600157347,1294917.4681746503,560963.7825565919,2058.63582,856.2359881904088,2123946.844617104,872091.8248415357,0.38139,100000,0,536111,5598.661194481865,0,0.0,0,0.0,23711,247.0942072120054,0,0.0,28411,293.3780298046096,1866411,0,67012,0,0,4669,0,0,50,0.511711937508485,0,0.0,0,0.0,0,0.0,0.06639,0.174073782742075,0.3143545714716071,0.02087,0.3237266371807676,0.6762733628192324,24.87716008197789,4.467744645978437,0.3246628131021195,0.2198458574181117,0.2221579961464354,0.2333333333333333,11.047474817961564,5.595745548767181,22.252332755528226,12727.212180499262,58.510564449873776,13.516252479730056,18.928615622310037,12.795239764654871,13.270456583178827,0.5491329479768786,0.7624890446976337,0.6967359050445104,0.585429314830876,0.1081750619322873,0.723404255319149,0.9107142857142856,0.8647342995169082,0.7727272727272727,0.1341463414634146,0.4899328859060403,0.684913217623498,0.6420141620771046,0.5298087739032621,0.1015544041450777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0045441174978953,0.0066810169766875,0.0091674119847142,0.0112415561162203,0.0131213007202453,0.015154605531533,0.0176112058316062,0.0196206737896835,0.021529484029484,0.0235376130235991,0.0259842923874544,0.0280619852132155,0.030289922241104,0.0322307739925303,0.0342514598728747,0.0361262399304189,0.0379914928934536,0.0400723297237752,0.0419925638168241,0.0573829531812725,0.0717432018163365,0.0846181276613596,0.0974186425529677,0.1096255838719541,0.1252525252525252,0.1383188676442501,0.1507349419390546,0.1626441691584793,0.1735965175622936,0.1868995821307026,0.1993140161433425,0.2122609698261796,0.2229245726659303,0.2334015536629915,0.2441508974344778,0.2541760117832156,0.263809341630003,0.272607605278985,0.2818466048993895,0.2897562894901289,0.2969090015677282,0.3031952662721893,0.3096827546532114,0.3162830245976313,0.3226295547556826,0.3279509325322318,0.3333206121436476,0.3380257977621218,0.3430833168414803,0.3438299361856808,0.343389993806345,0.3440158900095791,0.343832627761483,0.3434712807706029,0.3426680556406642,0.3419199289385191,0.3430665330200305,0.3437708194536975,0.343391164371311,0.3454377914848804,0.3460165053166164,0.3475069921981789,0.3485589872508529,0.3487321902921999,0.3493909770505515,0.3508556759840274,0.3534088399533079,0.356864123747583,0.362161731298075,0.3652435412584863,0.3673055362767604,0.3691781255940688,0.3711489947251739,0.3708075697957654,0.3695396899953029,0.3671839686605394,0.3685782556750299,0.3740210640021604,0.3633942161339422,0.0,1.850389449593926,58.33458666029763,192.59658515434688,295.9752183741685,fqhc4_80Compliance_baseline_low_initial_treat_cost,63 -100000,95728,42953,405.576215945178,6680,68.60061841885341,5215,53.92361691459134,2080,21.393949523650345,77.41699606751023,79.77269859439696,63.36600846061516,65.10165266383098,77.17522553577716,79.52996930530652,63.27725032204057,65.01502882603846,0.2417705317330671,242.729289090434,0.0887581385745903,86.6238377925157,119.65162,83.88182258437887,124991.24603041953,87625.16983994115,285.90462,180.0783529103328,298106.1758315227,187557.25901547383,308.32036,147.64424243084528,318366.0266588668,151365.6561468555,3422.51556,1536.0580805500867,3544914.371970584,1574271.008012375,1276.26714,550.4394798407732,1321732.795002507,563514.029166778,2046.26278,837.128695089847,2107824.189369881,848445.7501877676,0.38285,100000,0,543871,5681.420274109979,0,0.0,0,0.0,24186,252.089252883169,0,0.0,28583,294.9084907237172,1857449,0,66548,0,0,4710,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.0668,0.1744808671803578,0.311377245508982,0.0208,0.3193479801559178,0.6806520198440822,24.959394472511,4.532683100226181,0.335378715244487,0.2164908916586768,0.2216682646212847,0.2264621284755513,11.243704654948338,5.65474974820488,21.741239055259904,12758.959825932972,58.66685715551591,13.407246123766493,19.731110005439565,12.754303610821092,12.774197415488755,0.5516778523489932,0.7776793622674933,0.6958261863922242,0.5527681660899654,0.1210838272650296,0.7270642201834863,0.9333333333333332,0.8502304147465438,0.7,0.1324200913242009,0.4929613514205272,0.6906077348066298,0.6448669201520912,0.5121412803532008,0.1185031185031185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0045183316617532,0.0065116845180136,0.0086922084911503,0.0111131446233935,0.0133044239499989,0.0154421657764912,0.0173810981833027,0.0197539191039712,0.021791173040329,0.0237224220439197,0.0257704978601557,0.0278791492336317,0.0296592278302421,0.0321039872079228,0.0340491051130492,0.0359254159376326,0.0379601107688478,0.0400856379717103,0.0422227083789105,0.0566049556745919,0.070616917088687,0.0842950062945866,0.0971762107587947,0.109516225993229,0.1250647743736714,0.1382068116971966,0.150522069545411,0.1629027433552687,0.1739834434245517,0.1878694561390285,0.2000302928671117,0.2122361585114014,0.2230644879412792,0.2335201054713249,0.2448582207618352,0.2556091797724005,0.265245341545101,0.2735229759299781,0.2823091886943586,0.2902409137149727,0.2978126752664049,0.3047137251193797,0.3103650508677438,0.3167772695839955,0.3228233034571062,0.3285434030164065,0.3337653262181564,0.3382930865091266,0.34417244196158,0.3444520630823216,0.3441132023629619,0.3449522951788579,0.3449426998280272,0.3452117467060798,0.3442239123448666,0.3427212990459342,0.3432789407355275,0.3442310311946601,0.345462625544396,0.3477879573824939,0.3500363965452793,0.350529238606234,0.3501590620898311,0.3500419111483654,0.3510217877385471,0.3518202987448174,0.3575003127736769,0.361561582552775,0.3645302689254827,0.3664615941373382,0.3693365054189796,0.3730362395944169,0.3736489572233216,0.3777321128339249,0.3825944170771757,0.3765347885402456,0.3789599521817095,0.3766163793103448,0.3839252336448598,0.0,2.202163371410262,57.50631956404425,197.9724630626884,292.6446596971197,fqhc4_80Compliance_baseline_low_initial_treat_cost,64 -100000,95701,42803,403.41271251084106,6766,69.51860482126624,5257,54.41949404917399,2086,21.49402827556661,77.3508434030137,79.74193303576145,63.31502979323547,65.08302180745295,77.08666399915406,79.47647114499776,63.21789849524792,64.98788076520009,0.264179403859643,265.4618907636888,0.0971312979875449,95.14104225286246,119.23802,83.48947514449372,124594.33025778204,87239.91927408671,285.2406,180.1498268151268,297561.8750065308,187750.3023114981,307.88582,147.78230598738458,318387.7597935236,151838.83941090276,3455.94472,1568.0935366797012,3579877.4098494267,1607221.7601484845,1248.16777,549.0961534761647,1291581.1538019455,561106.4288525352,2054.27634,859.9014321531363,2117729.616200458,872714.4537033036,0.38108,100000,0,541991,5663.378648081003,0,0.0,0,0.0,24007,250.33176246852176,0,0.0,28547,294.99169287677245,1856610,0,66604,0,0,4677,0,0,56,0.5851558499911182,0,0.0,1,0.0104492116069842,0,0.0,0.06766,0.1775480214128267,0.3083062370676914,0.02086,0.320754716981132,0.6792452830188679,25.04794182596852,4.555969817311287,0.322237017310253,0.217234163971847,0.2301692980787521,0.2303595206391478,11.12201483500852,5.580669905996798,22.17612386319493,12717.555139531874,59.64636690654618,13.649265496695696,19.12124935353611,13.505510795143604,13.37034126117078,0.5503138672246528,0.7793345008756567,0.6847697756788665,0.5785123966942148,0.1180842279108175,0.7138621200889548,0.9240506329113924,0.8666666666666667,0.6942446043165468,0.16015625,0.4938587512794268,0.7028112449799196,0.6248037676609105,0.5439914163090128,0.1068062827225131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0045025402845524,0.0068014090083139,0.0094418245385803,0.0114854829192862,0.0136814653328171,0.0159340603290862,0.0181587924096656,0.0203311481780714,0.0223776653489277,0.024551328068916,0.0267455475442164,0.028738351401946,0.0306514594215889,0.0327977130354913,0.0349725533168618,0.0370270606274087,0.0391198297784005,0.0410867710998772,0.0429248970657215,0.0579903906413202,0.0713156379247159,0.0852629369161331,0.0983525500757448,0.1101206801974766,0.1259032766592253,0.1397864300271739,0.1524535696029988,0.1633636907815974,0.1738869155568909,0.1875478328356921,0.2006409076638266,0.2122399233916601,0.2223717906625517,0.2329255805247569,0.2430580198722498,0.2530315549699636,0.2633825019704988,0.2723245220433711,0.2806516704501158,0.2886027283044213,0.2960585651537335,0.303201261066929,0.3096723868954758,0.3155936078612604,0.3214052307730249,0.3265334217739009,0.3317341342054695,0.3373291217895608,0.3418592367621814,0.3419037346636106,0.3419635602440334,0.3416091306185712,0.3418466163674732,0.3424864929050644,0.3415183013639912,0.3410781551707765,0.3411507910457559,0.3419735155916275,0.3427709445346948,0.3443855078439825,0.3453081204847815,0.3455545562922217,0.3460963139916501,0.3475921700492374,0.3483049523511951,0.3497404181678913,0.352895124166223,0.3558984047019311,0.356754199195647,0.3600379558085942,0.3608863504151462,0.3628956439987464,0.3660429027841168,0.3644171779141104,0.3660842508377214,0.3671646388418296,0.3685691318327974,0.3633396790862115,0.3690937257939581,0.0,2.035750767527407,59.550499610569005,207.21049044502053,285.3016807604764,fqhc4_80Compliance_baseline_low_initial_treat_cost,65 -100000,95709,43039,405.6044886060872,6799,69.67996740118484,5278,54.425393641141376,2155,22.04599358472035,77.26691653433518,79.62555196401307,63.2951211478972,65.03841231668339,77.00194965425479,79.36421208280424,63.19806554018358,64.9460160365945,0.2649668800803937,261.33988120882634,0.0970556077136208,92.39628008889156,117.84762,82.56096312389155,123131.17888599818,86262.48641600221,280.94321,176.5604645017229,292794.857327942,183732.6260609677,309.81456,148.6794499254015,318799.87253027403,151649.7501602041,3468.11181,1559.0323540195698,3578901.8274143497,1584462.882270469,1253.96846,545.5603589769687,1290778.9758538904,550751.2728630588,2115.2336,871.7723769561376,2166278.887043016,873525.2045624279,0.38208,100000,0,535671,5596.871767545372,0,0.0,0,0.0,23674,246.5494363121545,0,0.0,28506,293.0445412657117,1864426,0,66927,0,0,4643,0,0,60,0.6164519533168249,0,0.0,1,0.0104483381918105,0,0.0,0.06799,0.17794702680067,0.3169583762317988,0.02155,0.335484776203171,0.6645152237968289,25.008016072708017,4.445645329716239,0.330428192497158,0.2167487684729064,0.2231906025009473,0.2296324365289882,11.188272679619246,5.736259639345629,22.997495404974263,12811.129112557735,59.7333045743837,13.573524022583442,19.760849682294744,13.149215039386617,13.249715830118896,0.5450928381962865,0.7622377622377622,0.6915137614678899,0.5619694397283531,0.113036303630363,0.7184466019417476,0.9075,0.8729792147806005,0.6911196911196911,0.1700404858299595,0.4861640010154862,0.6841397849462365,0.631578947368421,0.5255712731229597,0.0984455958549222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0045524135903233,0.0067175386613629,0.0091933239199114,0.0114211907328682,0.0136641788765234,0.0159946990162597,0.0180786231255295,0.0200975230773948,0.022181051424828,0.0242124793701885,0.0264876185782924,0.0284950383053113,0.0307659030982201,0.0328075189055906,0.0347418908023402,0.0371555500326198,0.0391758139148839,0.0413608864680567,0.0431262633629941,0.0580993452859544,0.0721411001203747,0.085517892748452,0.0981702248550595,0.1102975311247098,0.1255211971130442,0.1383966961451488,0.1504862124423521,0.1626424859385359,0.1740217916375932,0.1881454968843657,0.2008386789181692,0.2130287058413555,0.2239221140472879,0.2346614950634696,0.2461456494955212,0.2558227947178335,0.2656767535657151,0.2738641526578828,0.282616171110245,0.2908653289823879,0.2982092696629213,0.3047190479010006,0.31165513188039,0.3182702360979405,0.3240025660638062,0.330663256991714,0.3357249359619722,0.3406008695087924,0.3453243125157224,0.3461429247515381,0.3459863701082373,0.3457929375132687,0.3461415723817813,0.3462238534300122,0.3455076923076923,0.3440211421202617,0.3449426141524234,0.345679012345679,0.3458968094279965,0.3465641373591164,0.3473211089455471,0.3489653716216216,0.3502926609635299,0.3519456903867135,0.3534247294883916,0.3548878665899942,0.3585589020205871,0.360747530225757,0.3606504328128792,0.362657174556213,0.3621405836974699,0.3662115605461273,0.368319876970396,0.3733383972654766,0.373136108791602,0.3755384615384615,0.3832310838445807,0.3849360755975542,0.3930387172467736,0.0,2.7230706177778186,58.50906738296511,199.3259990904142,299.01751925877454,fqhc4_80Compliance_baseline_low_initial_treat_cost,66 -100000,95697,42511,400.8903100410671,6861,70.45152930603885,5322,55.006949016165606,2151,22.132355246245965,77.288290147924,79.65778974228205,63.294707477804174,65.04401049265633,77.02997987251057,79.39849613067501,63.19981172025162,64.95152735060417,0.2583102754134359,259.2936116070348,0.0948957575525568,92.4831420521599,117.87578,82.58520840029458,123176.04522607816,86298.63882911122,281.24037,176.8225526260957,293264.2716072604,184151.8433172492,306.79924,147.56214659134446,316595.72400388727,151277.37021802308,3513.09217,1585.6198071204874,3633078.560456441,1618967.7518547068,1318.27473,574.3799753387881,1363387.6819545024,586066.7655022449,2116.27192,877.5476558570001,2178155.3444726584,887511.0726014544,0.37857,100000,0,535799,5598.911146639915,0,0.0,0,0.0,23726,247.28047901188123,0,0.0,28364,292.33936278044246,1861799,0,66875,0,0,4600,0,0,54,0.5642810119439481,0,0.0,1,0.0104496483693323,0,0.0,0.06861,0.1812346461684761,0.3135111499781373,0.02151,0.3218088784400498,0.6781911215599502,25.08031466806696,4.481875054244894,0.3248778654641112,0.2093198045847425,0.2343104096204434,0.2314919203307027,11.003237046304838,5.5509714108981925,22.875640657951138,12702.61220977957,60.153965780069086,13.235243475204602,19.49291930334732,13.955051511689692,13.470751489827466,0.5578729800826757,0.7845601436265709,0.6899942163100058,0.5966319165998396,0.1282467532467532,0.7293510324483776,0.9207161125319692,0.8634259259259259,0.7634408602150538,0.1692913385826771,0.4992435703479576,0.710926694329184,0.6322282189668466,0.5485537190082644,0.1175869120654396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179685838422,0.004450482051074,0.0065450338921134,0.0087466222393791,0.0109124562688145,0.0131047052714109,0.0153443037458453,0.0174654213239422,0.0199940712876549,0.0220436985109757,0.0242072683296779,0.0264929892632054,0.0286651381334759,0.0307212226696464,0.0325432190452613,0.0344670779979123,0.0364997514910536,0.0385653202706629,0.0406707025317772,0.0425873426165263,0.0574135193850267,0.0715340236841278,0.0850668569869224,0.0975163123552936,0.1095839799009827,0.125324242199659,0.1384322969758749,0.1498412630771525,0.1616986699739126,0.1722712534089201,0.1860881379325217,0.1985115694600918,0.2106266199115719,0.2217417483168208,0.2321196502125597,0.2427496838041138,0.2530745494387549,0.2625455201416057,0.2723187878236338,0.2804906059074831,0.2885695063103192,0.295867148285406,0.3036646729326877,0.3102905481723583,0.3166106401636948,0.3220248909322358,0.3265890509023774,0.3326442326097775,0.3378773505217606,0.3431541313559322,0.3437824848460302,0.3439200198845591,0.3441231396072661,0.3433373000899776,0.3440163604066217,0.3426076797737264,0.341497506274024,0.3421420926977854,0.3432608061999554,0.3441694593286858,0.3448969993415483,0.3457443644798668,0.3468237273874632,0.3467218617140299,0.3482951678400653,0.3491695735929609,0.3495311653888904,0.3521051304676667,0.3533471845617494,0.3564336696040512,0.3588437715072264,0.3610486891385768,0.3623966159479765,0.3634489078967466,0.3651743153565754,0.3596181046676096,0.3599939292760661,0.3662650602409638,0.3596112311015119,0.3680866965620329,0.0,2.3627591912919184,59.8507387437712,199.1612752637537,301.0017702472983,fqhc4_80Compliance_baseline_low_initial_treat_cost,67 -100000,95834,43153,406.71369242648746,6867,70.2151637206002,5350,55.28309368282656,2139,21.95462988083561,77.36488025655099,79.67954612250743,63.35773544642036,65.07125815381349,77.09198666850851,79.40801298755801,63.25679879639247,64.97350505022322,0.2728935880424785,271.5331349494221,0.1009366500278901,97.75310359026436,118.25924,82.81210550273839,123400.08765156416,86412.0307017743,280.3641,175.95731625260422,291986.2366174844,183043.65051866425,304.59517,146.13193853576007,315298.9961808962,150441.18083461167,3552.48193,1609.8645233951258,3670440.313458689,1643574.5207360454,1295.0008,570.2903887110687,1333019.429430056,576887.3268282402,2110.13594,894.230165645803,2166676.210948098,901834.273640286,0.38372,100000,0,537542,5609.094893252916,0,0.0,0,0.0,23608,245.7687250871298,0,0.0,28183,291.46232026212,1870648,0,67115,0,0,4619,0,0,48,0.5008660809316109,0,0.0,0,0.0,0,0.0,0.06867,0.17895861565725,0.3114897335080821,0.02139,0.3189226519337017,0.6810773480662984,24.979315896203527,4.532173500030358,0.3192523364485981,0.2171962616822429,0.2272897196261682,0.2362616822429906,11.060802318384209,5.507029356576242,23.098133944430508,12801.928298529569,60.598228105033854,13.709671926479196,19.25220119250213,13.574708343501582,14.061646642550931,0.5493457943925234,0.774526678141136,0.7066744730679156,0.5641447368421053,0.115506329113924,0.6819505094614265,0.9088541666666666,0.8551068883610451,0.6945454545454546,0.1258503401360544,0.5035211267605634,0.7082262210796915,0.6581196581196581,0.5260361317747078,0.1123711340206185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044912607972748,0.0066969721568309,0.0091415105838378,0.0114092799544442,0.0134810410133181,0.0156781993516687,0.0181820037977009,0.0202302093555773,0.0222324581606018,0.0243614971508219,0.0265591166117627,0.0284381134441258,0.0308560018937639,0.032665051796114,0.034705949148868,0.0367286568337436,0.038801052653391,0.0407118605351413,0.0427599409059697,0.057877444589309,0.0723095576553223,0.0858711252186848,0.0986915338247957,0.1114352514954924,0.1270987771653044,0.1399709718087529,0.1524706582752168,0.1635977639327473,0.1750554311849955,0.1891641832793622,0.2015048811338501,0.2133357960842261,0.2242245522062035,0.2343088876921893,0.2452832275331224,0.2552169795554565,0.265534629336388,0.2752516959037836,0.2831431381068904,0.2912850129945134,0.2986092460034798,0.3052025581312874,0.3123556512894154,0.3172885390856532,0.322615219721329,0.3281162031302781,0.3345583560110888,0.3399994822408616,0.3444183654632242,0.3450438809023852,0.3447924694484201,0.3452122408687068,0.3453719378970062,0.3453083109919571,0.3455544808315293,0.3446292677501866,0.3451760749142706,0.3455126113906011,0.3464154329295648,0.3475955005284614,0.3480529827706404,0.3488269052240695,0.3492456653906777,0.3501568911416847,0.3511560315257521,0.3512448606669712,0.3519997474667761,0.3541343304642302,0.3556907315511445,0.3575707308082204,0.3589950505702604,0.3605612146838362,0.3616164744135635,0.3637234246312967,0.366754617414248,0.3709152857364101,0.3712636569779426,0.3746525847693163,0.3767441860465116,0.0,2.0594267006380345,60.82662969726639,199.40902369731,304.1018820430378,fqhc4_80Compliance_baseline_low_initial_treat_cost,68 -100000,95645,42827,404.4539704114172,6694,68.7960687960688,5245,54.325892623764965,2105,21.72617491766428,77.2563444549925,79.66603415828392,63.27473565930678,65.0555819130529,77.00131965308937,79.4095902483089,63.18151038861042,64.96378498851739,0.2550248019031329,256.44390997501887,0.0932252706963581,91.79692453551525,118.09116,82.75583269601843,123468.20011500864,86523.95075123469,280.78945,176.2037412669139,293086.1100946208,183749.69838317152,305.53919,146.37588566601184,316545.0781535888,150818.5293213113,3470.72369,1557.4986187728268,3597278.812274557,1597663.9699730433,1264.87399,551.8523665924979,1308214.3342568874,562726.7254874776,2080.8811,857.0540510678829,2148527.638663809,872537.467638064,0.38061,100000,0,536778,5612.190914318574,0,0.0,0,0.0,23650,246.7457786606723,0,0.0,28200,291.8605259030791,1861475,0,66877,0,0,4677,0,0,51,0.5332218098175545,0,0.0,0,0.0,0,0.0,0.06694,0.1758755681668899,0.3144607110845533,0.02105,0.3261979018996314,0.6738020981003686,24.922438401444342,4.542641501061703,0.3302192564346997,0.2114394661582459,0.2238322211630123,0.2345090562440419,11.128586763535226,5.494996265257342,22.20551338021664,12726.443485451582,58.98445680120963,13.184106829075407,19.33779564810195,13.074091409025884,13.388462915006382,0.5506196377502384,0.7772768259693418,0.6899538106235565,0.5826235093696763,0.1195121951219512,0.7135258358662614,0.8956043956043956,0.8518518518518519,0.7605633802816901,0.1228813559322034,0.4960549758208195,0.7194630872483222,0.6361538461538462,0.5258426966292135,0.1187122736418511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0042062373939572,0.0064745938156465,0.0087165889488281,0.0108149353952589,0.0131719690718498,0.0152297209074587,0.0170521884833871,0.0192705030378659,0.0216259962710266,0.0240313577409292,0.026195174086406,0.0284546568248967,0.0306516965141814,0.032735574241266,0.0346543874172185,0.0363447882651739,0.0382274115471713,0.0403321470937129,0.0422751168224299,0.056695266859657,0.0706586073602279,0.0835660444705734,0.0965758976032335,0.1090241431706905,0.1249497365135129,0.1383434866591666,0.1509094394275004,0.162671141369986,0.1737576856630862,0.1871590884591337,0.2001083247576233,0.2118624685522604,0.223288736947065,0.2333811204234671,0.244094925187586,0.2534951347723968,0.2632261118499651,0.2718757814808921,0.2801973382285452,0.2884131420552727,0.2964126980404113,0.3032550522730778,0.3099505116994186,0.3160459534861055,0.3214758049564303,0.3273530223571625,0.3329507046744467,0.3381012953973157,0.343103812999101,0.3430796852009341,0.3435588750983667,0.3434839184181494,0.343462928294658,0.3441624365482233,0.3435613062230437,0.3423639834552975,0.3436536082474227,0.3445937806535992,0.3450154642882831,0.3469684385382059,0.3479152562621958,0.349537085855284,0.3512810158388298,0.3526145526531795,0.3538336777670233,0.3545603119534363,0.3566325240263024,0.3601152818782511,0.3631773545899097,0.3648654821175718,0.3654051172707889,0.3665969714249509,0.368316680649836,0.3718377976190476,0.3727133246783902,0.377589596249811,0.3778801843317972,0.3794885745375408,0.3945525291828793,0.0,1.9812326944141383,58.24879713521871,189.7550715249793,306.51408579041447,fqhc4_80Compliance_baseline_low_initial_treat_cost,69 -100000,95676,42959,404.5633178644592,6783,69.47405828002843,5303,54.67410844934989,2120,21.698231531418536,77.32722884548278,79.7045569603273,63.32110870231941,65.07607540626437,77.06523412597625,79.44517292013393,63.2237238269846,64.98286140206604,0.2619947195065322,259.3840401933676,0.0973848753348178,93.21400419833026,116.70054,81.79601884516023,121974.72720431456,85492.72424135648,281.5139,177.34636325267388,293406.3715038254,184531.0665712132,310.01615,149.38760808815712,318915.6423763535,152161.47131883368,3505.05855,1584.0779005977329,3618986.694677871,1611188.867216159,1306.75502,569.0712518242531,1349306.1582842092,578283.3645054692,2092.78686,873.3684436041841,2145613.508089803,877507.8815559711,0.38146,100000,0,530457,5544.3057820142985,0,0.0,0,0.0,23750,247.4601781010912,0,0.0,28652,294.3998494920356,1869763,0,67126,0,0,4590,0,0,59,0.6062126343074543,0,0.0,0,0.0,0,0.0,0.06783,0.1778168091018717,0.3125460710600029,0.0212,0.3154202329170759,0.6845797670829241,24.988067667995686,4.473846519105125,0.3262304356024891,0.2145955119743541,0.2236469922685272,0.2355270601546294,11.008223472681795,5.588471138758044,22.58668470255242,12810.216312184495,59.7341096253929,13.40694544743758,19.51282664867314,13.274328503851992,13.540009025430196,0.5545917405242315,0.7899824253075571,0.7017341040462428,0.581787521079258,0.11048839071257,0.7239309827456865,0.9388888888888888,0.8733031674208145,0.7298245614035088,0.1341463414634146,0.4977329974811083,0.7210796915167095,0.6428571428571429,0.5349611542730299,0.1046859421734795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766861724745,0.0044592636134223,0.0067363295120219,0.0090191657271702,0.0112567494737698,0.0137252705853603,0.0159484428854037,0.018026206938813,0.0203710142556194,0.0226213761251804,0.024674645417346,0.0267860810977363,0.0288312195924748,0.0309531169500257,0.0331179821664465,0.035347528878869,0.0375968671004102,0.0396187628480657,0.0415557127402846,0.0435408045198211,0.057920905843274,0.0716618173445251,0.0856480510216926,0.0979389578007133,0.1109177398770158,0.1267230162172455,0.1401069745723139,0.1534496895865058,0.1653328774587843,0.1763166081984272,0.1894317263668193,0.2016000692858148,0.2137495920809311,0.225055238345256,0.2360134279896538,0.2468280791179566,0.2572257884454368,0.2673238358877411,0.2758585457228813,0.2837171994958176,0.2918442509033633,0.3000749309230553,0.3070499609125151,0.3124632745326122,0.318412860547692,0.3240284822232917,0.3291266151166142,0.334441853649835,0.3402147414284973,0.3447751724867165,0.3445147878673344,0.3443314314065988,0.3443092643820922,0.3438806661168743,0.343594096710301,0.3430977776411643,0.3417916369118464,0.3420015760441292,0.3424442242645802,0.3431414508880804,0.343403148220937,0.3446531934649045,0.3453802639849151,0.3465151650711282,0.3471448887603345,0.3481661696227698,0.3476194566119843,0.3495501183898974,0.3524074139204445,0.354470766531068,0.356346109708515,0.3604389721627409,0.3627594085168497,0.3603020496224379,0.3613204846865757,0.3621517771373679,0.3659937888198757,0.3645128205128205,0.3639664804469273,0.36282151208106,0.0,2.94198748437734,57.75587766089781,200.3869334753273,299.847161986711,fqhc4_80Compliance_baseline_low_initial_treat_cost,70 -100000,95775,42844,403.3724876011485,6711,68.67136517880448,5276,54.46097624641086,2066,21.23727486296006,77.38146625236273,79.7033374289426,63.35451413110488,65.06737823630378,77.12602768620123,79.44864475653314,63.26071486851087,64.97648126681969,0.2554385661615015,254.6926724094618,0.0937992625940111,90.89696948409198,119.44548,83.64989160418222,124714.67501957712,87340.00689551784,283.07956,178.311850010137,294965.6590968415,185576.24642144292,309.61865,148.88276793140386,318929.5745236231,152229.6016873875,3487.69179,1573.2172659963494,3603560.7099973895,1604631.4236453683,1284.42795,561.1037576920531,1324991.2503262856,569758.4731840802,2035.31214,844.8161855465111,2093497.635082224,854566.9784986613,0.38081,100000,0,542934,5668.848864526233,0,0.0,0,0.0,23900,248.90629078569563,0,0.0,28711,295.3902375358914,1857245,0,66679,0,0,4828,0,0,48,0.5011746280344557,0,0.0,1,0.0104411380840511,0,0.0,0.06711,0.1762296158189123,0.3078527790195202,0.02066,0.3307812278463065,0.6692187721536934,24.89353970306676,4.481563583740466,0.3296057619408643,0.2168309325246399,0.2221379833206975,0.2314253222137983,11.316589363338204,5.765104591446897,21.79854574937641,12728.274823665231,59.409498829285866,13.481678861907456,19.623099358469396,13.028054509018258,13.27666609989078,0.559325246398787,0.7823426573426573,0.7038527889591719,0.5844709897610921,0.1203931203931203,0.74090571640683,0.9348958333333334,0.8820960698689956,0.7443609022556391,0.1548117154811715,0.497073046576737,0.7052631578947368,0.6401249024199844,0.5375275938189845,0.1120162932790224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023591114351092,0.0047934654829948,0.0067862975624106,0.0089568608335364,0.0111340457766886,0.0131013701976912,0.0155332681017612,0.0175920162450637,0.019840621168778,0.0220064658700278,0.0243207802319386,0.0265830836787458,0.0285999095655033,0.0306046818060159,0.032681423136798,0.0348545403847941,0.0369427542530733,0.0391051027390159,0.0411688932288961,0.0430844196409978,0.0579407651687503,0.0720863068455308,0.0849642355211545,0.0975232849063347,0.1096644281150833,0.1251784864350309,0.1383505701405462,0.1511299886096296,0.1628284554582354,0.1744794458859606,0.1885167361088681,0.2008587218671252,0.2127819221818656,0.2243565201220779,0.2341167667965053,0.2447512159452243,0.2555278990077128,0.2654461985079833,0.2741475821193782,0.2820277659952538,0.2890384303551159,0.2965847602539176,0.3031943243595362,0.3100344029823909,0.3166373079025694,0.3222809546692295,0.3281128818393335,0.3332061651152144,0.3381044286991101,0.3432887012730031,0.3429413823743235,0.3427659545198168,0.342108229988726,0.3423638547591137,0.3426351743537081,0.3426810383158798,0.340999382706279,0.341355776487187,0.3413022318607947,0.3411930349854747,0.3424903626632733,0.3436236315218463,0.3442238418363073,0.3456417142217746,0.3468224770973094,0.3470744680851064,0.346917271821159,0.3489620952799673,0.3506917620619425,0.3519933158271663,0.3540335827705785,0.3568735729835926,0.3607174212968769,0.3598056335889454,0.3606696935300794,0.361755262219051,0.3686860979703952,0.3660606060606061,0.3637359627499315,0.3564053537284894,0.0,2.496956101935379,59.0419076503112,193.74116533954933,300.9642290869878,fqhc4_80Compliance_baseline_low_initial_treat_cost,71 -100000,95753,42807,403.1727465458001,6726,69.03177968314309,5210,53.79465917516945,2127,21.82699236577444,77.31912755708531,79.66908219568627,63.32066847763053,65.05820038217429,77.05541686758723,79.40620316766818,63.22260424341346,64.96363885168698,0.2637106894980832,262.8790280180908,0.0980642342170696,94.56153048731152,119.40918,83.6629692466572,124705.1893935438,87373.52822599708,284.71182,179.78105120822684,296729.41839942354,187145.67411757295,305.80152,146.82998412789837,315152.8724948566,150186.62057785213,3430.77689,1551.45001451237,3545699.518552944,1583080.7383972586,1244.28396,545.7974160238596,1284955.2912180298,555521.5999715559,2087.31414,869.3203338591496,2143924.326130774,876390.3781398014,0.3801,100000,0,542769,5668.417699706537,0,0.0,0,0.0,24042,250.42557413344755,0,0.0,28340,291.82375486929914,1855065,0,66636,0,0,4638,0,0,50,0.5221768508558479,0,0.0,0,0.0,0,0.0,0.06726,0.1769534333070244,0.316235504014273,0.02127,0.3227363042861197,0.6772636957138802,25.14400050312313,4.491314550811602,0.327063339731286,0.2170825335892514,0.2259117082533589,0.2299424184261036,11.222405859516796,5.666293338693801,22.600649208217085,12718.240106103682,59.065071448541936,13.508093220742715,19.32312313960531,13.156267600266018,13.077587487927891,0.5460652591170825,0.7727674624226348,0.6842723004694836,0.5743415463041631,0.1076794657762938,0.7084898572501879,0.9042821158690176,0.8495370370370371,0.7068273092369478,0.1620553359683794,0.4903325599381284,0.7016348773841962,0.6281446540880503,0.5387931034482759,0.0931216931216931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0046007762543195,0.0068787792703218,0.0091714233480265,0.011440949446258,0.0137382501807664,0.0160591384144787,0.0182677776416288,0.0206335248767918,0.0229417907086259,0.0251507197637698,0.0272110240586525,0.0290953595524107,0.0312152305600197,0.033555177217149,0.0353466451692918,0.0372391088288885,0.0391693118400033,0.0411393062742897,0.0431100926986772,0.057444387611303,0.0716893496385718,0.0848140300824435,0.0975517415446744,0.1094265622199496,0.1253621809106867,0.1378370351513608,0.149630764647045,0.1621105012493859,0.1735974871085667,0.1867717688613211,0.1997467450241891,0.2122678965746048,0.2239378861610804,0.2339238556338028,0.2451904440186512,0.2545856452279146,0.2646148652450346,0.2732050627163857,0.2815496168340989,0.2895650965680144,0.2967853714499777,0.3035591573659392,0.3091430766645057,0.3151888261631302,0.3203437546303156,0.3261087572392007,0.3304734708447005,0.3357646234312338,0.3408733358892664,0.3417171539987316,0.3421506058141618,0.3420205102127299,0.3424173020612878,0.342637968272883,0.3413495500476058,0.3413100436681223,0.342047643349851,0.3428072458309077,0.3439717582968963,0.3442832684239243,0.34546463685379,0.3458372802862856,0.3464209461737274,0.3471403729108299,0.3470290936706209,0.3481859053291715,0.3511842810735799,0.3533601297510754,0.3557119007870259,0.3567158048468805,0.3590455346180537,0.3598629093678598,0.3637202861758596,0.3650703154694033,0.3657462508926446,0.3661084652020279,0.3622095393395841,0.3700221238938053,0.3720751822017645,0.0,2.3396099704971465,58.45061037926043,202.3586576621585,287.2832723410302,fqhc4_80Compliance_baseline_low_initial_treat_cost,72 -100000,95684,42539,401.394172484428,6816,70.07441160486601,5357,55.44291626604239,2137,21.93679194013628,77.34181859432726,79.7247841819157,63.3271521787835,65.08549702029663,77.08619906175485,79.46858588717996,63.23283955350973,64.99313287020958,0.2556195325724104,256.1982947357393,0.0943126252737656,92.36415008705023,118.4469,82.97536610857084,123789.66180343632,86718.12017533844,279.63133,175.42891851375893,291709.9933113164,182807.34345737944,306.90152,147.16040787421895,317022.7728773881,150865.71534590007,3503.48111,1577.4497629281393,3629983.0588186113,1617074.581882175,1248.03971,540.7464250272523,1290779.3675013585,551582.3387685004,2095.4735,866.7263999831256,2154471.301367,877358.4042247668,0.37818,100000,0,538395,5626.802809247105,0,0.0,0,0.0,23549,245.5373939216588,0,0.0,28327,292.3581790058944,1866627,0,66955,0,0,4647,0,0,70,0.7315747669411814,0,0.0,0,0.0,0,0.0,0.06816,0.1802316357290179,0.3135269953051643,0.02137,0.3289675351818308,0.6710324648181691,24.975630179952603,4.4184749412047575,0.3292887810341609,0.2170991226432705,0.2331528840769087,0.2204592122456599,11.265783515143823,5.837988387657793,22.58431691689439,12679.55024132959,60.25786715076356,13.674464095803854,19.80576140474928,13.964672340641195,12.812969309569237,0.5508680231472839,0.7592433361994841,0.7040816326530612,0.5652522017614091,0.1016088060965283,0.7077039274924471,0.9104859335038364,0.8478802992518704,0.7093425605536332,0.1481481481481481,0.4993801140590131,0.6826424870466321,0.6617754952311079,0.521875,0.0895522388059701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784579396664,0.0045511215625855,0.0066860789545772,0.0090390201295931,0.0110627567413673,0.0130935896391626,0.0153808519096107,0.0175066096383328,0.0196956224000654,0.0219574363541442,0.0243109671068821,0.0261993036798159,0.0282295813915208,0.03016095459885,0.0322647234894618,0.0341845864233923,0.0360821537377463,0.0382690670487344,0.0403732523302263,0.0422830336200156,0.056722623238517,0.0708639157339252,0.0847510994028064,0.0973074211639432,0.1093448381346188,0.1246707916864984,0.1374323607427055,0.149310766938102,0.1609188034188034,0.1713816918325326,0.1859573551583028,0.1990568486631478,0.2110929853181076,0.2226024401976647,0.232195111218675,0.2433132870385752,0.2535689172145145,0.2626742106388005,0.2713570690848835,0.279371005795176,0.2874329076439015,0.2953506052985554,0.3021604865235808,0.3090264044203133,0.3152344272054624,0.3210133760710102,0.3258711139490916,0.3309349769503094,0.3364446000077781,0.3410024433731757,0.3409568733153639,0.3407466571188565,0.3413684641099059,0.3417710533167472,0.3426395561571299,0.3419324145974647,0.3412176613171527,0.3424797081923039,0.3438109578727627,0.3460184738525307,0.3472261229380816,0.3478604605198142,0.3490473096191334,0.3499563338334415,0.3505455070927964,0.3504879516496167,0.3517878068997056,0.3548183652875883,0.3575588577882884,0.3598168060533652,0.3621154637290305,0.3651359548768158,0.365559671040241,0.3649039926851569,0.3688601424821897,0.3669768551658315,0.3674318286858727,0.3741386299148763,0.3733296213808463,0.3744186046511628,0.0,2.159916359959526,58.26296627042066,201.56615067777977,307.155209277859,fqhc4_80Compliance_baseline_low_initial_treat_cost,73 -100000,95685,42791,403.8250509484245,6929,71.40095103725767,5464,56.591942310707005,2197,22.594973088780897,77.38307130315455,79.75837696246211,63.34642469116329,65.09715634838265,77.1078737050955,79.48290653958605,63.24655864946716,64.99934050155187,0.2751975980590515,275.4704228760545,0.0998660416961314,97.81584683078393,118.1191,82.75767692667368,123445.78565083344,86489.7078190664,285.27324,178.46446577885644,297645.743846998,186020.3331544719,308.06525,147.42908561085372,318884.38104196056,151686.56929007376,3595.73305,1612.636680767531,3725388.253122224,1652862.3930266316,1271.7959,552.33984516056,1317806.542300256,565905.9781162774,2160.82672,892.6517165893954,2224742.7705491977,906087.2788648792,0.38181,100000,0,536905,5611.1720750378845,0,0.0,0,0.0,24039,250.70805246381357,0,0.0,28564,295.364999738726,1864968,0,67080,0,0,4743,0,0,51,0.532998902649318,0,0.0,0,0.0,0,0.0,0.06929,0.1814776983316309,0.3170731707317073,0.02197,0.3288821585903084,0.6711178414096917,24.815562736986703,4.533542915624048,0.3217423133235724,0.2185212298682284,0.2256588579795022,0.2340775988286969,11.261116140357265,5.666881035533267,23.329596797530044,12735.775764678989,61.5393570765535,14.04910932661313,19.980242552043418,13.654367369934452,13.855637827962497,0.5453879941434846,0.7738693467336684,0.6996587030716723,0.5709651257096513,0.0953870211102423,0.7240865026099925,0.942643391521197,0.863849765258216,0.6931407942238267,0.1392405063291139,0.4872665534804754,0.6885245901639344,0.6471471471471472,0.5355648535564853,0.0854126679462572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002591539029995,0.0047210909164589,0.0069167655500451,0.0092712945286161,0.0115194957043363,0.0138033531154249,0.0158311076678423,0.0176280251916422,0.0196866088129772,0.0217126477964887,0.0241549360755405,0.0262466113529943,0.0281900177923133,0.030385744450739,0.0326507453448186,0.0348288014551618,0.037023224977728,0.0386611312921639,0.0405569825604975,0.0424995310252829,0.0566721684808724,0.0711047832413814,0.0847137566748145,0.0971462819650067,0.1095764757978639,0.1244198708122337,0.1379189722063219,0.1509060745278203,0.1630691093778342,0.1739395952301874,0.1887815478623835,0.2013946699821611,0.2129613528670173,0.2234511098239363,0.2337193827608583,0.2445714792165204,0.2545811883731058,0.2642199975225504,0.2739732249310184,0.2823830040793876,0.2901590388221404,0.2974428624953166,0.3045734597156398,0.3106171535562543,0.3172508574347498,0.3228242494539801,0.3281336139928832,0.3330530392793894,0.3389021479713603,0.3435657438988921,0.3429480267414276,0.3434198746642793,0.3440628260440459,0.3436224711296344,0.3432962389907165,0.3417120921305182,0.3406345729568433,0.3412691883709834,0.3412180113470801,0.3416638321488032,0.3433028691287736,0.3447465592480698,0.3437807714064235,0.3452168082253017,0.3460485884386403,0.3473133395813808,0.3495835583728929,0.3521507064364207,0.3551595669900182,0.3563815033482585,0.3602005926601322,0.3609050445103857,0.3637106918238993,0.3642575159429092,0.3674878686076894,0.3689286134305539,0.3694209891435464,0.3651951123374063,0.3725331170586645,0.3713111692192753,0.0,1.992363370032884,59.26870460799148,210.5960572150444,309.06429556216506,fqhc4_80Compliance_baseline_low_initial_treat_cost,74 -100000,95696,42571,401.42743688346434,6632,68.13241932787159,5162,53.387811402775455,2138,22.00718943320515,77.3960056150407,79.77977257203706,63.35197710932333,65.1128687149379,77.1305643697311,79.5143302201682,63.25471978837511,65.01826721886223,0.2654412453096029,265.442351868856,0.0972573209482163,94.60149607566848,117.8386,82.53074874928876,123138.48018725966,86242.63161395332,279.35092,175.7531423653612,291379.5351947835,183122.36913283856,301.21422,144.6757945442755,311065.03929108847,148434.95165731886,3428.51889,1559.2843471529602,3547963.498996823,1594658.7183925754,1283.20906,560.4568322789416,1328222.1722956027,572983.8911150149,2108.03656,877.9842093242273,2171310.169704063,890086.91343716,0.3798,100000,0,535630,5597.203644875439,0,0.0,0,0.0,23574,245.77829794348773,0,0.0,27854,287.3892325698044,1872714,0,67070,0,0,4626,0,0,62,0.6478849690687176,0,0.0,0,0.0,0,0.0,0.06632,0.1746182201158504,0.3223763570566948,0.02138,0.3217913864644441,0.6782086135355558,25.27830381940373,4.45223011834695,0.3159628051142968,0.2074777218132506,0.2390546299883766,0.2375048430840759,11.000067345727285,5.575208346859379,22.82053414534799,12650.24157958499,58.39213658574248,12.779834180990765,18.28907806520577,13.859059344363168,13.464164995182776,0.5523053080201472,0.7964519140989729,0.683629675045984,0.5940032414910859,0.1223491027732463,0.7207743857036486,0.936842105263158,0.8722358722358723,0.7152317880794702,0.1614173228346456,0.4930610107357947,0.7192474674384949,0.6209150326797386,0.5547210300429185,0.1121399176954732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044716189085599,0.0065467611294939,0.009001778003556,0.0109148983785323,0.0130737588074777,0.0154674388490675,0.0176928809890861,0.0200269888977488,0.0222113042232184,0.0242464629895427,0.0262841771307124,0.0283957092756574,0.0306235965472487,0.0327593144791011,0.0348149679553442,0.0369886993360471,0.0390492007473531,0.040957264246118,0.0425248061369132,0.0571154006852176,0.0708193358659592,0.0834058799467175,0.0956231009430887,0.1086644882470749,0.1239055031513049,0.1363525455374855,0.1484213663749973,0.1603093389162456,0.1713801572235985,0.1848042647138011,0.1973456496344048,0.2095042489839386,0.2204297549566092,0.2307049562425788,0.2417980164703798,0.2520993409240445,0.2616319561456718,0.2705810383696034,0.2790772115142785,0.2872715095668641,0.294178090189393,0.3013988327307956,0.3078064601060328,0.3142139798901112,0.3201126524990161,0.3264307557885539,0.3313117728408846,0.3367244183944847,0.3414521816937733,0.3416497697090142,0.3412914025410938,0.3420897201518774,0.3421937457609997,0.3425035612535612,0.3410724664280689,0.3405305367057372,0.3415750615258408,0.342941548129301,0.3440946568155049,0.3448256478480016,0.3452688957794323,0.3466245476036066,0.3482286275209709,0.3494688266115464,0.350028665242091,0.3507519972706337,0.352744900528834,0.3553852643419573,0.356801148142242,0.3600734281780633,0.3607591553060679,0.3642707606420097,0.3688926328687394,0.3738237810094098,0.3754816955684008,0.375096435735226,0.3741816693944353,0.3758351893095768,0.3736434108527132,0.0,2.1454826042948296,59.2308589627612,194.37182232559564,286.3661294149643,fqhc4_80Compliance_baseline_low_initial_treat_cost,75 -100000,95811,42797,403.2939850330338,6729,68.88561856154303,5232,53.87690348707351,2126,21.69896984688605,77.38566316619061,79.7067423734104,63.36611244363343,65.08442550812794,77.11987463502484,79.44392637517373,63.26736162995393,64.99025407870946,0.2657885311657679,262.81599823667534,0.0987508136794943,94.17142941848056,117.8067,82.5494633319229,122957.38485142624,86158.64914458976,283.26261,178.73329759231277,294905.7206375051,185809.17328946423,309.64443,149.05413614184263,318960.4847042615,152337.7773921259,3419.71156,1556.0806838311453,3523914.832326142,1579119.2194800498,1219.67584,538.6657190606359,1256754.6628257716,545969.7624079032,2083.54922,877.6488946683636,2128701.8609554223,876270.1327249953,0.37961,100000,0,535485,5588.972038701193,0,0.0,0,0.0,23888,248.56227364290112,0,0.0,28613,294.36077277139367,1869255,0,67056,0,0,4697,0,0,59,0.6157956810804605,0,0.0,0,0.0,0,0.0,0.06729,0.1772608730012381,0.3159459057809481,0.02126,0.3283307376468922,0.6716692623531078,24.840093262878565,4.397429907663364,0.3302752293577982,0.22782874617737,0.2173165137614678,0.2245795107033639,10.890545268161704,5.452837380879199,22.74542755088565,12671.078710091,59.33094675923423,14.221194028878791,19.54888112656124,12.63646278685929,12.924408816934903,0.5525611620795107,0.7810402684563759,0.6747685185185185,0.5760773966578716,0.1182978723404255,0.7216946676406136,0.9396984924623116,0.8243243243243243,0.752851711026616,0.1893939393939394,0.4926223142635257,0.7015113350125944,0.6230529595015576,0.522883295194508,0.097694840834248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370767625819,0.0043895664162687,0.0069419776517035,0.0089813667120476,0.0109849871841816,0.0133794929233275,0.0156866342537381,0.0177160934789264,0.0197250753743165,0.0218690517611903,0.0240932987630535,0.0262244939853019,0.028314782269088,0.0303663520232225,0.0325960299046145,0.0345101846878486,0.036349526618035,0.0383311738792433,0.0404456812942618,0.0424675067900142,0.0574981223399816,0.0711903741414817,0.0843378545523154,0.0968352036313201,0.1082809257445037,0.1241497317165913,0.1371163401739646,0.1486579856497475,0.1607996245093019,0.172359865891149,0.1855305327912929,0.1977313239345325,0.2097017599096702,0.2208964674031701,0.2314950078534318,0.2426162437109526,0.2520696609432974,0.261869452870464,0.2709431054605613,0.279108590507335,0.287371327564495,0.2954874404706322,0.3030811200207848,0.3096052222567609,0.3158647090177836,0.3218541907265891,0.3271222824052118,0.3321914766744059,0.3377847806994886,0.3417203196797935,0.3416100612011568,0.341811132954811,0.3425820347143038,0.342140255535642,0.3420352337768527,0.3409557674033657,0.3397656460589531,0.3408877851421805,0.3413593364409103,0.3425332234838987,0.3442422876884658,0.3463544248577264,0.3480296033904738,0.3481684816848168,0.3483908491663435,0.3497621112951134,0.3520241171403962,0.3542741399499952,0.3563307951124491,0.3572773526701654,0.3598143723580224,0.3626121315677061,0.3651557356292732,0.3678169714591782,0.3703034338438124,0.374414976599064,0.3782110801609409,0.3817698753321071,0.3820754716981132,0.3850287907869482,0.0,2.799372888626113,59.60276741581145,196.827053166484,291.5397401735134,fqhc4_80Compliance_baseline_low_initial_treat_cost,76 -100000,95773,42858,404.13268875361535,6833,70.3016507784031,5294,54.76491286688315,2120,21.81199294164326,77.37657405990127,79.72128739946298,63.3458979718325,65.07899297448462,77.11429238889569,79.45840651341939,63.24988292363874,64.98542562469238,0.2622816710055815,262.8808860435896,0.0960150481937631,93.56734979223802,118.5316,83.06994385270009,123763.06474684933,86736.28669113436,280.0636,176.03437116012938,291913.639543504,183300.42647692983,309.23562,148.19810692446336,319498.2093074249,152173.8571417332,3515.90314,1588.5045624003446,3636069.967527382,1624365.8975924794,1284.46737,562.4749809291714,1329936.5269961264,576078.5617336531,2088.86838,867.2261156366924,2149802.449542146,877470.0547098349,0.38105,100000,0,538780,5625.593852129515,0,0.0,0,0.0,23616,246.04011569022583,0,0.0,28537,294.67595251271234,1866120,0,66948,0,0,4771,0,0,50,0.5116264500433316,0,0.0,2,0.0208827122466665,0,0.0,0.06833,0.1793202991733368,0.3102590370261964,0.0212,0.3318466898954704,0.6681533101045296,25.056266242750382,4.530976996592112,0.3326407253494522,0.2145825462788061,0.2164714771439365,0.236305251227805,11.157604839367854,5.5033574827679965,22.50348496956357,12739.441798520797,60.06041396488405,13.735628724481224,19.850320727380957,12.709855302056097,13.764609210965776,0.5553456743483188,0.7922535211267606,0.6950596252129472,0.5785340314136126,0.1223021582733813,0.7331378299120235,0.938118811881188,0.8763796909492274,0.700374531835206,0.1541666666666666,0.4936386768447837,0.7117486338797814,0.632262996941896,0.5415244596131968,0.1147378832838773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0048150513436527,0.0070009537531199,0.0091633142346296,0.0111972174762021,0.0131770552234702,0.0152440578764364,0.0173153101645771,0.0193827375049836,0.0215168234535422,0.0237270416530009,0.0260724073864977,0.0281375935521013,0.0301438708149246,0.0322284464527044,0.0341609128870881,0.0362926607024519,0.0382684288055768,0.0401917059123184,0.042429102573449,0.0573426573426573,0.0717826441613854,0.0849442301241194,0.0976291563327588,0.1094869741168535,0.1251479790292575,0.1387225019878081,0.1509219163944717,0.1627154481963221,0.1737204988258505,0.1879637706913077,0.2000021638230425,0.2117223449041086,0.2240760596048226,0.2343791281373844,0.2456303685231366,0.2550247889588637,0.2644384424938105,0.2730811129771685,0.2818672070896163,0.2894188951605441,0.2964010944040409,0.3037498669630926,0.309619622496886,0.3157300231984745,0.3212124946090814,0.3270747653036989,0.3322788428555094,0.3372429846114056,0.3430688695789765,0.3436067072760767,0.3437852253044841,0.3442535286584765,0.3440659848616167,0.3444574753937738,0.3434031020808133,0.3429765806850031,0.3443893468194804,0.3458322646832521,0.346320037138878,0.3476539039039039,0.3470732576087387,0.3484028040129286,0.3491371602288984,0.3500264843260943,0.3501188392927103,0.3515040812831783,0.3542465581190671,0.3580342391113298,0.3610315186246418,0.3641597368180572,0.3650852878464818,0.3661998485995458,0.3637056805184903,0.3649017210570864,0.3632463353593135,0.3636224333435489,0.3680499597099114,0.3675824175824176,0.3648183556405354,0.0,1.9127917782654715,60.488727995966016,205.74882401049692,289.6840813416045,fqhc4_80Compliance_baseline_low_initial_treat_cost,77 -100000,95758,42655,401.2301844232336,6744,69.25792100921072,5271,54.5228597088494,2103,21.66920779464901,77.3313489084019,79.69642939165442,63.31030609897547,65.06274007544337,77.0743487023268,79.43863056942244,63.21728846120429,64.9716150022915,0.2570002060751051,257.79882223197603,0.093017637771176,91.12507315187202,118.35164,82.88711374263316,123594.5195179515,86558.94415363015,283.36652,177.77288218285292,295397.3662774912,185126.0178604952,303.87977,145.52175624464306,313610.25710645586,149146.1364698494,3435.14899,1534.2611946451432,3557701.633283903,1572606.0847606915,1242.98655,536.298208421907,1286431.306000543,548437.2568578158,2057.15904,843.1928384265937,2121792.2888949225,857224.9594792316,0.38083,100000,0,537962,5617.932705361432,0,0.0,0,0.0,23917,249.23244010944256,0,0.0,28097,289.7408049458009,1863395,0,66866,0,0,4584,0,0,49,0.5117065937049646,0,0.0,0,0.0,0,0.0,0.06744,0.1770868891631436,0.3118327402135231,0.02103,0.3284106891701828,0.6715893108298172,25.1580335055706,4.378657702840051,0.3297287042306963,0.2225384177575412,0.2251944602542212,0.2225384177575412,11.08577329755894,5.719276573553544,22.14120259969049,12775.497786266174,59.27573046338494,13.949971558763776,19.33056973419411,13.266560887355883,12.72862828307115,0.5509391007398976,0.7706734867860188,0.6766398158803222,0.586352148272957,0.1091219096334185,0.7264367816091954,0.8995215311004785,0.8366834170854272,0.7703703703703704,0.1415525114155251,0.4931921331316187,0.6993377483443709,0.6291044776119403,0.5321701199563795,0.1016771488469601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.004613808978168,0.0070134483633595,0.0092054460475513,0.0114346171844798,0.0137792669389251,0.0160495967207431,0.0181341066195615,0.0202518180609395,0.0224614376139459,0.024706678700361,0.0268454307289258,0.0289692504013501,0.0312789858806554,0.033370491938647,0.0355189279177739,0.037836270631847,0.0394620788411451,0.0413492022244166,0.0432015830859761,0.0579227557411273,0.071477152633176,0.0852197629287737,0.0980262258536021,0.1100743318045231,0.1251070850652029,0.1384656196943972,0.1508270404413722,0.1624472348383649,0.1734460670178864,0.1866971290628502,0.1998527309741413,0.2116389445266916,0.2229495276771347,0.2329626775294506,0.2433675901597543,0.2542378559463986,0.2638801332853026,0.2742480989672001,0.2831360506021611,0.2904484107692663,0.2977017011860299,0.3038670759312151,0.3104624214988172,0.3171016608870232,0.3237071943156024,0.3299145941342951,0.3359481452239357,0.3406953973050436,0.3450912548532791,0.3452658534941707,0.3450415497220846,0.3456127751256812,0.3451668833983528,0.3453101810626298,0.3439159105861473,0.3422691493061043,0.3418182414590543,0.3429020572756476,0.3445882038011957,0.3456753110478189,0.3479713698196773,0.3496154732717252,0.3500492302184032,0.3507006308084942,0.3512080449262113,0.3513976041072447,0.353457253763373,0.3560340864891623,0.3579757182353648,0.358996698459281,0.36208,0.363102009859689,0.3661369193154034,0.3659199550098416,0.3666862170087976,0.3674853096278439,0.3663228877429591,0.3667117726657645,0.3561178247734139,0.0,2.0529764198475706,57.681083997269845,199.7997746866777,298.7097643568139,fqhc4_80Compliance_baseline_low_initial_treat_cost,78 -100000,95503,42858,404.36426080856097,6519,67.12878129482843,5148,53.453818204663726,2058,21.30823115504225,77.22623088476638,79.71407964146523,63.24095407219974,65.0764274848913,76.96802768832414,79.45158383381262,63.14669625268786,64.98238557554419,0.2582031964422384,262.4958076526127,0.0942578195118812,94.0419093471121,117.83288,82.5872720160566,123381.3388061108,86476.1023382057,279.90714,176.8928357559922,292651.48738783074,184786.49440959157,312.72374,150.5788826735661,324230.89327036845,155258.4448600725,3369.90863,1534.619263468211,3500279.122121818,1578751.140065258,1276.02804,563.8244968186332,1322899.092175115,577233.2920491084,2015.47564,839.1314698334085,2087328.3352355424,858618.215774477,0.38052,100000,0,535604,5608.2426730050365,0,0.0,0,0.0,23597,246.6205250096856,0,0.0,28873,299.1424353161681,1857951,0,66713,0,0,4793,0,0,53,0.5549563888045401,0,0.0,0,0.0,0,0.0,0.06519,0.1713181961526332,0.315692590888173,0.02058,0.3313367421475529,0.6686632578524471,24.733778824801043,4.4045630445651645,0.3339160839160839,0.2121212121212121,0.2294094794094794,0.2245532245532245,11.16241873953096,5.807519605431277,21.99144984212431,12704.279157779683,58.6454874978196,13.111327097820382,19.624436746114245,13.196598809185511,12.713124844699456,0.5672105672105672,0.7875457875457875,0.7271669575334497,0.563082133784928,0.1254325259515571,0.7410909090909091,0.9321608040201004,0.9,0.703971119133574,0.192,0.5038430956798303,0.7046109510086456,0.6658786446020488,0.5199115044247787,0.1070640176600441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205147692151,0.0046354996094819,0.0069141267488374,0.0092628368073207,0.0116977520768854,0.0137695561331091,0.0158164879233461,0.0178918112521202,0.0201438407316848,0.0223151164935144,0.0245935293151584,0.0268661320172732,0.028903876847037,0.0310656380213705,0.0333009588361712,0.035543453502578,0.0376651936681811,0.0396137374745332,0.0414839200325037,0.043687090172493,0.0583950009943583,0.0720003357148102,0.0853444377845778,0.0975265315585907,0.1098242684898502,0.1246502458877395,0.1379303012906381,0.1500005334300619,0.1619563704124142,0.1732368935795198,0.1870223239345395,0.1995748649762488,0.2110736828335023,0.2219201806403525,0.2319149170904998,0.2429384181167633,0.2531741858982247,0.2631845956122748,0.2718162791755767,0.2805348330081487,0.2880223616604229,0.2958684664188293,0.3027649222736442,0.3097172805077411,0.3155507875359633,0.3213941058570262,0.3271406304992709,0.3321997928944912,0.337815344603381,0.3424744644489487,0.3434829637641968,0.3432254858657244,0.3433455778468494,0.342783094676184,0.3428733267745878,0.3410296220005226,0.3400760141850739,0.3402174092341191,0.3419091127674922,0.3413517637554977,0.3420032370986562,0.343097148304075,0.3441760646355832,0.3444644060184145,0.3451534363474194,0.3459637561779242,0.3466003316749585,0.3495565445191427,0.3526384433712856,0.3553900087642418,0.3588006408789196,0.3610785463071512,0.3624913407645317,0.365056495032987,0.366316376825072,0.3676005157660297,0.3709998468840912,0.3697031729785056,0.366076369673492,0.3644752018454441,0.0,1.738096198923179,61.26921818855936,191.52008006434733,286.861535243094,fqhc4_80Compliance_baseline_low_initial_treat_cost,79 -100000,95700,42380,399.7387669801463,6808,69.87460815047022,5268,54.36781609195402,2142,21.974921630094045,77.36399481233721,79.74782635792052,63.33329461681414,65.09686465044823,77.10168971845673,79.48842758627487,63.23663490951788,65.00482787718245,0.2623050938804852,259.3987716456496,0.0966597072962685,92.0367732657752,119.17246,83.4709519010263,124527.12643678162,87221.47534067533,282.11408,177.3546035448406,294133.5841170324,184667.04654633292,306.66715,147.57643916197878,315933.7617554859,150906.84659840606,3488.66857,1584.3787200639138,3602987.4921630095,1613133.9394607255,1308.8936,575.0376776620672,1352514.6394984326,585685.0445789623,2113.94954,874.9977541970527,2170288.3803552766,879002.2580465078,0.37742,100000,0,541693,5660.323928944618,0,0.0,0,0.0,23815,248.17136886102404,0,0.0,28399,292.3197492163009,1862109,0,66848,0,0,4811,0,0,50,0.522466039707419,0,0.0,0,0.0,0,0.0,0.06808,0.1803825976365852,0.3146298472385428,0.02142,0.331041257367387,0.668958742632613,24.99248503856161,4.511401020041036,0.3261199696279423,0.2190584662110858,0.2152619589977221,0.2395596051632498,11.144240543006156,5.651388770914979,22.658093872581105,12620.2595922662,59.71351879303588,13.696581130133929,19.56990616728385,12.689834651557604,13.757196844060488,0.5537205770690964,0.7720970537261699,0.6990686845168801,0.5934744268077602,0.1204437400950871,0.7343522561863173,0.9307692307692308,0.8738938053097345,0.75,0.1893939393939394,0.4899845916795069,0.6910994764397905,0.636650868878357,0.5450346420323325,0.1022044088176352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022390857235489,0.0046142768768951,0.0070657029156176,0.0091977153078439,0.0111622133132542,0.0132546814189946,0.0153515035293157,0.0178724621103803,0.0199134730447055,0.022046099181847,0.0241403710274527,0.0264974118807,0.0285540892212427,0.0302009273570324,0.0323755856915804,0.0342756110674552,0.0364320046407557,0.0384268147148861,0.0401663201663201,0.0421871906811006,0.057107049608355,0.0704446491374979,0.084019682932715,0.0968657972233908,0.1083596879612059,0.1237588689978957,0.1369758415169576,0.1490079259535081,0.1608267674503021,0.1713220004716071,0.1848168835222075,0.1976503932237859,0.2096042801683358,0.220316925667917,0.2301785498190299,0.2411257999512832,0.2513497233624844,0.2608099141954275,0.2699412258606213,0.2785868022164217,0.2872459778623393,0.2938741625059925,0.3008913457782407,0.3080113146035094,0.3142225515323041,0.3202265870328182,0.3259205523313988,0.3313759135684779,0.3364152431691516,0.3417464729361242,0.342016829314192,0.3420803165400415,0.3420626995400908,0.3415507187806708,0.3416384884617666,0.3406439000549819,0.3387315718028854,0.3393061504757545,0.3389461139014216,0.3392147427328949,0.3397760047945462,0.3412629415948787,0.3424132660538933,0.3425697773397249,0.3434396864706306,0.3448149601150778,0.3473970251716247,0.3500251952632905,0.3534488832523075,0.3567221205126164,0.3599325525224445,0.3630329740349386,0.3645582456585118,0.3615662743287945,0.3589352161053334,0.3618967384763509,0.3644903710662283,0.3683991683991684,0.3686596769623123,0.3705021747726374,0.0,2.684753085837057,60.13904815834677,201.17441759795653,289.0371829615394,fqhc4_80Compliance_baseline_low_initial_treat_cost,80 -100000,95682,42474,400.6187161639598,6734,69.28157856232102,5167,53.55239229949207,2060,21.23701427645743,77.31725194233033,79.72566382630505,63.30264576078415,65.08491696414312,77.06307598024974,79.46990116596042,63.20822239565524,64.99220746360582,0.2541759620805948,255.76266034462947,0.094423365128911,92.7095005372962,117.34932,82.17121965827549,122645.13701636672,85879.4963088935,278.04441,174.81430183981098,290140.7683785874,182252.0242467873,298.18201,142.37219314589146,309117.4515582868,146779.4303052423,3410.8198,1543.2252079217844,3538157.626303798,1586281.001569557,1249.31535,547.2063575168921,1293784.295896825,559990.0686826067,2030.21622,855.2402664727165,2095235.8437323635,870319.8103840277,0.37965,100000,0,533406,5574.778955289396,0,0.0,0,0.0,23471,244.85274137246296,0,0.0,27581,285.69636922305136,1872297,0,67185,0,0,4600,0,0,54,0.5643694738822349,0,0.0,0,0.0,0,0.0,0.06734,0.1773738970104043,0.3059103059103059,0.0206,0.3259417199715707,0.6740582800284293,25.068674038576575,4.549320115497188,0.3305593187536288,0.2161796013160441,0.2214050706406038,0.2318560092897232,11.022576942571993,5.389772571730756,22.139362435998738,12732.752851125812,58.41814279933077,13.208157351134972,19.064848340568084,12.825444074244515,13.319693033383189,0.546738920069673,0.7699194270367055,0.680327868852459,0.5743006993006993,0.1218697829716193,0.6815728604471858,0.9086021505376344,0.8245614035087719,0.6872586872586872,0.146067415730337,0.5015503875968992,0.7006711409395974,0.6363636363636364,0.5412429378531074,0.1149301825993555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0049079754601227,0.0069821488374925,0.0089625948846142,0.0111919418019026,0.0134766221860038,0.0157815273498867,0.0180818895063746,0.020011867978965,0.0220885797125206,0.0242125782291987,0.026470195340999,0.0284211393160809,0.0305379714209126,0.0325019364833462,0.0344328104953855,0.0364987716261182,0.0384958876796544,0.0405543186499927,0.0424363090522453,0.057325838940198,0.0709865231368524,0.0847242342172114,0.0968247622254019,0.108568836566558,0.123868987777131,0.1369000870285071,0.1501975442744108,0.1624971948235143,0.1734265884296456,0.1870684919703154,0.200090920898818,0.2129782788490837,0.2241971849484491,0.2347537805777978,0.2456470901171489,0.2558308224528512,0.2646764378353449,0.2737503687064643,0.2819485159399047,0.2893019164892139,0.2971243389957415,0.304405495026054,0.3108670367750213,0.3172700527608257,0.3229937814628368,0.3282267762300832,0.3333503042028358,0.3378971774977008,0.3424361156185274,0.3426914121906249,0.3427541912502923,0.3435802156349407,0.3427853294234908,0.3423774725029395,0.3415525394583307,0.3402882374391578,0.3416783101832826,0.3420652415372259,0.3419666922513967,0.3428442878032319,0.3444035899260665,0.3464227966653367,0.345878979322087,0.3466505733252866,0.3494404351009308,0.3497359783074069,0.3536796400591511,0.3565804274465692,0.3606986899563318,0.3628560993425858,0.3662728820774797,0.366822429906542,0.3688674919761577,0.3708995206316383,0.3718403023860146,0.3713977500385267,0.3744646135019376,0.3768666847678523,0.3692191053828658,0.0,1.7851767099825964,57.564541182075,198.803688450394,289.6526096230629,fqhc4_80Compliance_baseline_low_initial_treat_cost,81 -100000,95838,42588,402.0012938500386,6838,69.89920490828273,5342,54.967758091779885,2129,21.76589661720821,77.4717338221379,79.75796968094927,63.40399372213196,65.09062047338838,77.2060251090644,79.4947278450205,63.30510420145961,64.99529843822566,0.2657087130735078,263.24183592876693,0.0988895206723441,95.32203516272376,118.1147,82.70596887135942,123244.1202863165,86297.67823969554,278.92516,174.83417628153595,290289.0189695111,181677.62920922384,305.93197,147.11256999573894,314252.1233748618,149647.80400832696,3512.54265,1599.3923056223844,3618819.247062752,1622585.6608259615,1307.23926,575.5725494293592,1346261.0655481124,582819.935129447,2099.9781,887.4132160783777,2150550.0532148,892431.7698381232,0.38021,100000,0,536885,5602.005467559841,0,0.0,0,0.0,23505,244.46461737515392,0,0.0,28307,290.30238527515183,1873678,0,67173,0,0,4696,0,0,57,0.5947536467789395,0,0.0,0,0.0,0,0.0,0.06838,0.1798479787485863,0.3113483474700205,0.02129,0.3140644447517632,0.6859355552482368,25.145132659500696,4.468805750863031,0.3328341445151628,0.2104080868588543,0.2244477723698989,0.2323099962560838,11.305733441939676,5.802139094454776,22.7785944428343,12738.538521558125,60.22310395986548,13.296435588556994,19.91275861424326,13.368210554913254,13.645699202151988,0.55672032946462,0.7820284697508897,0.6979752530933633,0.5921601334445371,0.1160354552780016,0.7259475218658892,0.9354005167958656,0.8807339449541285,0.7294520547945206,0.1439688715953307,0.4982367758186398,0.7014925373134329,0.6385991058122206,0.5479603087100331,0.1087398373983739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022876809393663,0.0044878483654303,0.0066519296680119,0.0086987413723101,0.0108832615234533,0.0129518654552484,0.0150965691467688,0.0171870378114831,0.0196168535424708,0.021557719054242,0.0235868863876115,0.0255881689331938,0.0275823103395141,0.0296323733679044,0.0317695931389223,0.0339322593969434,0.0360175846909749,0.0379939682243571,0.0397582730227294,0.0415747408733297,0.0563381750310209,0.070342881037006,0.084169932722738,0.0966535329655897,0.1088017369491668,0.1244132448090667,0.1374856852016796,0.1502063741968426,0.162366153879002,0.1731399909973635,0.1874219792518617,0.200758722061303,0.2122923227277663,0.2241352956590095,0.2347333274756172,0.2458570559946934,0.2555538225005013,0.265448460208001,0.2744318310561258,0.2824085194971575,0.2900311886334758,0.2979830991176058,0.3050304806011058,0.3115330772820273,0.3173256632442535,0.3237130157479345,0.3290587073631057,0.3335959639603004,0.3385972400056907,0.3421080368906455,0.3421682856604687,0.3422299106223485,0.3432632289265028,0.3430552752227444,0.3433977933325424,0.3423545951893395,0.3419378266155133,0.3426316995710964,0.3435908789019261,0.3443314005193696,0.3460683393427616,0.3473609551391926,0.3491927567409511,0.3503833467058928,0.3508095420578654,0.3516791771642295,0.3519363154763591,0.3546916471506635,0.3593516815326415,0.3605765454402639,0.3648849461881389,0.3688489968321014,0.3732412060301507,0.3706106870229008,0.3722980659840728,0.3739234449760765,0.3720397249809014,0.3710361543122601,0.3734610123119015,0.3742846241892407,0.0,3.056594271536373,59.350146740613766,202.74793870678525,295.8471084968968,fqhc4_80Compliance_baseline_low_initial_treat_cost,82 -100000,95737,42631,402.44628513531865,6802,69.76404107085035,5253,54.25279672435945,2109,21.600843978816968,77.34438518034166,79.69594313308711,63.33412346583962,65.07184403405792,77.08422270516837,79.4392823219176,63.23802931011044,64.97975655844671,0.2601624751732885,256.66081116951034,0.0960941557291761,92.08747561120845,118.92848,83.26878243139774,124224.15576005095,86976.59466183162,281.06477,176.8435976822113,292979.0885446588,184118.65797399933,303.97379,146.29307188656549,313539.64506930445,149717.2787753793,3468.22723,1569.667255998115,3584332.065972404,1601345.2431300585,1271.28217,557.8747180743849,1316029.9675151715,570919.5415272586,2077.04258,865.3901577067403,2130560.786320858,871302.9237146734,0.37983,100000,0,540584,5646.552534547772,0,0.0,0,0.0,23803,247.98144917847856,0,0.0,28097,289.6267900602693,1862538,0,66833,0,0,4731,0,0,42,0.428256577916584,0,0.0,0,0.0,0,0.0,0.06802,0.1790801147881947,0.3100558659217877,0.02109,0.3230530911139276,0.6769469088860723,25.13435207389782,4.457757290269419,0.3306681896059394,0.2149248048734056,0.2236817056919855,0.2307252998286693,11.324713677281704,5.81022368874619,22.40603520589414,12706.264108380808,58.98800870398936,13.168699333949643,19.461200268341745,12.973694551988736,13.384414549709245,0.5537787930706263,0.7732506643046945,0.7000575705238917,0.5702127659574469,0.1237623762376237,0.7295401402961809,0.8997134670487106,0.8917647058823529,0.7674418604651163,0.1792828685258964,0.4969773299748111,0.7166666666666667,0.6379573170731707,0.514721919302072,0.109261186264308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022689518252907,0.0045522289700201,0.0068081047900242,0.009049084427653,0.0111027512861703,0.0132033023525699,0.0151851776360041,0.0175315067095259,0.0196891826996761,0.021590095160135,0.0235060250840232,0.0256694481222608,0.0277917724837804,0.0298552038063067,0.031906662952991,0.0338951523731773,0.0357930256389024,0.0378002240013274,0.0397630430263978,0.0419565851422857,0.0567834212037375,0.070798405073624,0.0849084310558224,0.0974686339878216,0.109548014257693,0.1246549992068947,0.1381054909156475,0.1505128096008171,0.1626580656185919,0.1742048219894726,0.1873270822792305,0.2000064902051986,0.2121531703922762,0.2234853039229617,0.2342241284504564,0.244727840324134,0.2547172969414285,0.2641925326135852,0.2732626084983264,0.2808556443670842,0.2889786190299889,0.2968393461038885,0.3038362747535007,0.3096035030891968,0.3155873667837309,0.3208301458431014,0.3265014478582979,0.3324452149968767,0.337789649762056,0.3429798480343574,0.3433431274766154,0.3433012542508226,0.3425965090375885,0.3429720385933951,0.3435676866293606,0.3433805239075024,0.3427831776888381,0.3434087620049993,0.3442572426546127,0.3450490090863561,0.3447065668224386,0.3455448679887583,0.3463669563027327,0.3458363244795405,0.3464464246902847,0.3457587243497582,0.3467801839894863,0.3493306390502652,0.3520084566596194,0.3522228430042302,0.3539774542467254,0.3577335538601078,0.3586585827965138,0.3594781157551392,0.3634566506636543,0.3696396928529238,0.3708812260536398,0.3786067600989283,0.3862433862433862,0.3911684251660805,0.0,2.358570661070132,55.95482298945981,198.09468117822493,303.24091208012726,fqhc4_80Compliance_baseline_low_initial_treat_cost,83 -100000,95676,42497,400.1630502947448,6687,68.54383544462561,5241,54.24557882854634,2100,21.60416405368117,77.28108161739658,79.66897717633387,63.29287913429015,65.05605561102597,77.02309881030139,79.40845951006185,63.19772543519024,64.96184655529969,0.257982807095189,260.5176662720225,0.0951536990999173,94.20905572628158,117.45756,82.31363875540963,122765.73017266608,86033.52121473478,279.64391,175.4370428390894,291696.12023914047,182792.09572481396,307.38347,147.8085011051987,317417.81638028345,151572.00259314696,3461.38674,1566.925979979101,3585886.2828713576,1606596.7539935242,1279.78102,559.5109249036695,1319350.8403361344,567197.7282221966,2061.54488,857.9263844515945,2122652.619256658,870936.5401108855,0.37891,100000,0,533898,5580.260462393912,0,0.0,0,0.0,23564,245.68334796605208,0,0.0,28362,292.6648271248798,1866653,0,67026,0,0,4753,0,0,57,0.5957606923366361,0,0.0,1,0.0104519419708181,0,0.0,0.06687,0.1764799028793117,0.3140421713772992,0.021,0.3261948659764572,0.6738051340235428,25.06243888277156,4.477028474141959,0.3257012020606754,0.2156077084525854,0.2302995611524518,0.2283915283342873,11.274490641983313,5.768505386070279,22.378389782464318,12749.07591517522,59.33565095946635,13.343026259386075,19.446555886536828,13.480185407810168,13.065883405733285,0.5531387139858805,0.7628318584070797,0.6977152899824253,0.5766362883181442,0.12531328320802,0.7265336289726534,0.9088471849865952,0.8640350877192983,0.6986754966887417,0.1756756756756756,0.492798353909465,0.6908850726552179,0.6370903277378097,0.5359116022099447,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387681709973,0.0043593304879408,0.0065559130072967,0.0087980412674868,0.0108414864837377,0.0131868355667793,0.0154475192201806,0.0175501286396863,0.0198415537950421,0.021873304742116,0.024105156309276,0.0261612386545648,0.0284245166598107,0.0305802835476425,0.0326752190560721,0.0348332264935172,0.0366687383467992,0.0387126236364957,0.0407647419827953,0.0432018343842826,0.0580541365008723,0.0720164178166816,0.0854587820391712,0.0981345285817998,0.111107594268954,0.1266000888644394,0.1397758152173913,0.1519463230203951,0.1637551317139924,0.1757051288933744,0.1893212259776114,0.2020632185776361,0.2132573942588317,0.2241215054587663,0.2348903066565292,0.2459127309833847,0.2561534506270819,0.2655167363309636,0.274354690217206,0.2825648084423033,0.2894925940520618,0.296900642378206,0.3044473706063086,0.3108054537810079,0.3169559185064382,0.3223445483942633,0.3273237882701035,0.3318964417803851,0.33722303708415,0.341888260909849,0.3417167555885729,0.3419327232321559,0.342161856253537,0.3420193549323158,0.3430695064252772,0.3424868156029459,0.3416625629457832,0.341718317288672,0.3422624154854652,0.3431233760415733,0.3443175188663266,0.3454820355707635,0.3466579430573436,0.3472209710836861,0.3476745030627315,0.3489084341133972,0.3489771359807461,0.3521095578467961,0.3523822929129425,0.3551349846924576,0.3572177879133409,0.3589648011076202,0.3603614990836125,0.3614549320373604,0.3645070422535211,0.3672488571093658,0.3670131458269642,0.3686746987951807,0.3751354279523293,0.3711538461538461,0.0,1.8683558298974448,59.84280536140727,198.1033294356569,293.19346279310867,fqhc4_80Compliance_baseline_low_initial_treat_cost,84 -100000,95725,42853,404.4398015147559,6756,69.41760250718204,5315,54.92817968137896,2132,21.927396186993995,77.3612597271838,79.72849230386034,63.34108899169471,65.08995429228496,77.1006926771601,79.46690890847185,63.24555261928651,64.99612425083399,0.2605670500237096,261.5833953884845,0.0955363724082047,93.83004145097118,118.60794,83.07984741905084,123904.87333507444,86790.1252745373,282.1226,177.35546946628702,294153.80517106294,184707.8605027809,309.80553,148.65719074914713,319980.01566988765,152396.7474716238,3497.55278,1585.0069304499327,3619495.21023766,1621536.63144417,1279.36434,557.3145706565884,1321658.8769913814,567362.9570713905,2089.15578,866.0193431819798,2150748.143118308,877686.0923921994,0.38182,100000,0,539127,5632.039697048838,0,0.0,0,0.0,23797,247.99164272656049,0,0.0,28754,296.68320710368243,1865598,0,66922,0,0,4774,0,0,44,0.4596500391747192,0,0.0,1,0.0104465917994254,0,0.0,0.06756,0.1769420145618354,0.3155713439905269,0.02132,0.3321116436425148,0.6678883563574852,24.87162145235385,4.402474496572007,0.3149576669802446,0.2289746001881467,0.2270931326434619,0.2289746001881467,11.04585727166418,5.674618049730942,22.612443098989036,12765.26316778842,60.27847015417734,14.496932038960544,18.97650745586962,13.55846763587032,13.246563023476885,0.5548447789275635,0.7896466721446179,0.7025089605734767,0.5550952775476388,0.1166803615447822,0.7329013678905687,0.9282296650717704,0.8654292343387471,0.7384105960264901,0.1428571428571428,0.4918492103922567,0.7171464330413017,0.6460176991150443,0.4939226519337016,0.1103166496424923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487616616525,0.0045522751236921,0.0066164681049704,0.0089605916835143,0.011207159564731,0.0135129630761084,0.0155405543205596,0.017480982284168,0.0198247569192389,0.0221027846027846,0.0240739031917402,0.0260463205463975,0.0279540475774187,0.0302349778002122,0.032041359668132,0.0340332268502724,0.03632748586459,0.0385924496191602,0.0406359505464225,0.0424372505912874,0.0574053771861132,0.0712132629992464,0.0848883434553216,0.0977615157345782,0.1101707419898819,0.1256421640134458,0.1388352808941106,0.1520913356670887,0.163214953271028,0.1746708974743793,0.1882442879600318,0.2014279532669839,0.2136854350354964,0.2249185632146214,0.2349461833613685,0.2449176082602007,0.2552010167904208,0.2652980965864401,0.2741430903155604,0.2825114160477013,0.2901092548702237,0.2982564797718933,0.30450363081581,0.3109410736310187,0.3171344022121425,0.323058756964859,0.3297016342645809,0.3349476922294678,0.3400046604354918,0.3444589618719563,0.3452597288966065,0.3445018835757692,0.3440012390352421,0.3450035415371716,0.3448973218932623,0.3435899794560451,0.3418980784767215,0.3421316295189133,0.3429928578751324,0.3436282394995532,0.344696898628492,0.3463217204983731,0.3469649502743844,0.3476700901466565,0.3478470747248504,0.3485933034426702,0.3501907575801038,0.3527921193500364,0.3552204012432891,0.357479434549956,0.3612354930092296,0.3616874502520562,0.361516218254966,0.3614256402462193,0.3625714553462655,0.3633345191509546,0.3635525507068223,0.3651639344262295,0.36980491942324,0.3743402354851807,0.0,2.3038125359895223,61.04490034093945,199.77191770642835,296.8736291947721,fqhc4_80Compliance_baseline_low_initial_treat_cost,85 -100000,95648,42808,402.6639344262295,6797,69.75577116092339,5335,55.16058882569421,2197,22.561893609902977,77.2430810454354,79.64808632354475,63.27207635196621,65.05030455490898,76.97053279876786,79.374411538443,63.17029836561474,64.95057950218244,0.2725482466675402,273.6747851017469,0.1017779863514718,99.72505272654077,117.27694,82.25480400279706,122613.06038808968,85997.41134451014,282.36467,177.45770569173382,294614.40908330545,184935.0735878168,311.2324,149.42553448258516,321282.1700401472,153061.8540319117,3529.7698,1616.3037169107297,3651924.180327869,1651809.624379153,1289.42225,576.1888606078963,1328969.0531950484,583616.6858336462,2161.27884,915.8608899265926,2221469.534125125,926366.951003182,0.38131,100000,0,533077,5573.320926731349,0,0.0,0,0.0,23773,247.90899966543995,0,0.0,28811,297.07887253261964,1864193,0,66887,0,0,4668,0,0,51,0.5332050853128136,0,0.0,0,0.0,0,0.0,0.06797,0.1782539141381028,0.3232308371340297,0.02197,0.3242827151854444,0.6757172848145556,24.99527820299876,4.506060218565464,0.3270852858481724,0.2084348641049672,0.2314901593252108,0.2329896907216495,11.395393678608594,5.948903714728007,23.61896012192109,12845.175511485468,60.77599600332056,13.182656262463595,19.79634721501224,13.858810255587848,13.938182270256892,0.5501405810684161,0.7769784172661871,0.7025787965616046,0.562753036437247,0.1206757843925985,0.7005689900426743,0.9222222222222224,0.8596881959910914,0.7364864864864865,0.1627906976744186,0.4963094935097989,0.7074468085106383,0.6481481481481481,0.5079872204472844,0.1072186836518046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025741851791795,0.0047876980504331,0.0072180542724587,0.0092969853381968,0.0118092215678496,0.0142064259891033,0.0162834565383634,0.0186039862767521,0.0210037630890052,0.0230507710897659,0.0252279230035585,0.0274192057672756,0.0294943386912658,0.0316163593283197,0.0339787787457165,0.0357977458380725,0.0378822408220767,0.0400332139706264,0.042094861660079,0.0440670544817664,0.0593226537926998,0.0732167172933905,0.0870149504451537,0.0997421188358507,0.1116729833303421,0.1274575194537081,0.1404621513944223,0.1527577860943181,0.1644087747458534,0.1753149805050429,0.1897028036172922,0.2032049614016827,0.2158419940301109,0.2262142090389291,0.2358920086869288,0.2469511180158686,0.2565671024233139,0.2665080778813741,0.2755895663247902,0.2834447872816324,0.2917608597363753,0.2992034672601616,0.3057599563944877,0.3117805917301806,0.3179737527695941,0.3236762125966742,0.3292725767194439,0.3338907327035997,0.3391949675725556,0.3424029672804345,0.3434436191762323,0.3428938001821041,0.3436625293335972,0.3436511850541034,0.3439948657482724,0.3434467699026588,0.342592150686457,0.3434781891102345,0.3448317307692308,0.3459825437304694,0.3467426802333264,0.3478104881305934,0.3495065789473684,0.3501339396258695,0.3513055683275657,0.3524924371958437,0.3513388868071369,0.355315772770549,0.3587187854710556,0.3608525726258109,0.3620418363569048,0.3646691433801755,0.3641928079571538,0.3687413341549838,0.3706962509563887,0.3694298035457594,0.369640062597809,0.3711574169589436,0.3806218767351471,0.3701550387596899,0.0,2.4029731060732678,62.00948502491177,198.51403719611884,300.98153072832207,fqhc4_80Compliance_baseline_low_initial_treat_cost,86 -100000,95825,43070,406.010957474563,6863,70.53482911557526,5360,55.43438559874772,2206,22.78111140099139,77.44904619750217,79.77722002667197,63.38601454967061,65.1077097628836,77.17648851966902,79.50020887403265,63.28667429501748,65.00867448314234,0.2725576778331486,277.011152639318,0.0993402546531356,99.03527974125836,118.95554,83.22620914969784,124138.31463605532,86852.2923555417,284.66257,178.99785823879873,296592.64283850766,186324.22461653923,305.16832,146.33100522961436,315353.8012001044,150313.98902975456,3552.05138,1598.1050009893324,3676205.384816071,1637481.2593503587,1282.74875,559.1576454459778,1325557.4849986956,570595.6483480149,2167.18066,901.6148005557862,2239439.833028959,920683.83333811,0.38367,100000,0,540707,5642.650665275241,0,0.0,0,0.0,23996,249.9139055570049,0,0.0,28159,290.6444038612053,1867000,0,66950,0,0,4697,0,0,57,0.5948343334202973,0,0.0,0,0.0,0,0.0,0.06863,0.1788776813407355,0.3214337753169168,0.02206,0.3113780723557028,0.6886219276442972,25.08046785871321,4.488681562311022,0.3158582089552239,0.2136194029850746,0.2348880597014925,0.2356343283582089,10.9719614551837,5.475553927926543,23.47453036154052,12854.057350316469,60.16143856466033,13.463949449580973,18.993086070824905,13.95553141770089,13.74887162655356,0.5330223880597015,0.7580786026200873,0.6739515652687537,0.5647339158061954,0.1084718923198733,0.7083641746854182,0.9137466307277629,0.841726618705036,0.7348242811501597,0.148,0.4739336492890995,0.6834625322997416,0.6191222570532915,0.5084566596194503,0.0987166831194471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026027161419037,0.0048655388077402,0.0071332176595334,0.0094777582511351,0.0116843100765734,0.0140205471780721,0.0161597830408939,0.0182488084181304,0.0203883495145631,0.0227256448823812,0.0246861710303837,0.0264675697865353,0.0284745065789473,0.0305579293090489,0.032569796103588,0.0346302456763848,0.0368143241564893,0.0390079011219178,0.0409446037484935,0.0426816572975223,0.057757703461081,0.072297848315664,0.0862110525378077,0.0991038315665612,0.1115196982308997,0.126886333854673,0.1401026097648879,0.1527532594593444,0.164287543208296,0.1750942345583826,0.1891110083554676,0.2017197982045825,0.2144826837476929,0.2258279229636095,0.2361516675082881,0.2466954022988505,0.2569936300057909,0.2668634537251116,0.2756239741920878,0.2842568262310065,0.291928333949021,0.2991924755525474,0.3056142380002596,0.3122669025533136,0.3185553266270755,0.3244854803412919,0.3305251859617593,0.3359388879019364,0.3416171531903901,0.3459549097800766,0.3467773345689458,0.3467560292259518,0.3468205654515036,0.3463280911845333,0.3464411703672961,0.3463459335624284,0.3449712076989824,0.3463854435972118,0.347200952867109,0.347609561752988,0.3488932474082376,0.3510036837854343,0.3517317828160294,0.352423104434907,0.3526498028277388,0.3518104255540527,0.3527870346634766,0.3547504481554863,0.3545044409981672,0.3591037304834929,0.3605890154113504,0.3624993318723609,0.3616994292961319,0.3648183556405354,0.3647125674779808,0.3663660099691431,0.3663290362185389,0.3728571428571428,0.3781163434903047,0.3820826952526799,0.0,1.991641917520904,59.64614427731181,199.3195157337192,303.57534945041107,fqhc4_80Compliance_baseline_low_initial_treat_cost,87 -100000,95814,42617,401.1209217859603,6737,68.93564614774459,5269,54.48055607739997,2131,21.823533095372284,77.3497797498425,79.68199791780377,63.33168066437421,65.05952855673442,77.08772366534741,79.42252057736668,63.23454711125965,64.96616545007275,0.2620560844950859,259.4773404370869,0.0971335531145598,93.3631066616698,118.57516,83.01771240925945,123755.56807982131,86644.65778410195,279.89902,175.9853813379899,291635.9926524307,183182.49038552816,303.48263,145.8008798680563,314135.1472644916,150051.3657089602,3474.16379,1572.9080816664607,3593126.369841568,1608807.05498827,1276.54818,558.5852285448109,1318772.475838604,569442.5747227033,2093.11712,870.5050015908273,2146276.3896716554,876577.8855282746,0.37985,100000,0,538978,5625.253094537333,0,0.0,0,0.0,23615,245.94526895860733,0,0.0,28030,289.8845680172,1864953,0,66933,0,0,4631,0,0,55,0.5740288475588119,0,0.0,0,0.0,0,0.0,0.06737,0.1773594840068448,0.3163128989164316,0.02131,0.3237664357415524,0.6762335642584476,24.947209572545088,4.455385382658649,0.3374454355665212,0.2106661605617764,0.2176883659138356,0.2342000379578667,11.043679553799588,5.651906043643028,22.62091085417101,12716.008403537748,59.53226664866725,13.094447581590613,20.20411987213024,12.838911333156265,13.394787861790116,0.5420383374454356,0.7594594594594595,0.6901012373453318,0.5588491717523976,0.1175040518638573,0.7228739002932552,0.9191374663072776,0.8495762711864406,0.7282229965156795,0.1495726495726495,0.4788732394366197,0.6792963464140731,0.6324655436447167,0.5023255813953489,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022286605749944,0.0044815314264856,0.0065053687052185,0.0088490180739416,0.0109551418980775,0.0133801741255536,0.0156912724306688,0.0178638873860539,0.0200742050553471,0.0222520189561817,0.0243257373066396,0.0266138223486287,0.0288011680873597,0.0307685970837795,0.0326277568030368,0.0345946392775217,0.0366133907498654,0.038720451410138,0.0406990638280186,0.0427607604689419,0.0569315194257814,0.0713240061066148,0.084762284085192,0.0974010278183557,0.1098321949574163,0.125604017975152,0.1387427334832605,0.1504859019255127,0.1626073580310216,0.1733944068396606,0.1871982758620689,0.1993484213830351,0.2118832129492646,0.2220533732740054,0.2321131905249144,0.2427308186693852,0.2529324449503912,0.2627949877393084,0.2721031309222546,0.280482777574203,0.2883520755240872,0.2966497105770917,0.3037248266559386,0.3100094620977111,0.3157313193618106,0.3212350362086802,0.3271606481944583,0.3322011042414065,0.3374851105702004,0.3425976049327295,0.3430735639000458,0.3433148592384261,0.3430377781854616,0.3432688683348314,0.343243565300286,0.3423286514697981,0.3421616389228303,0.3435556579250436,0.3439212328767123,0.3447281713344316,0.3457209957726632,0.3466510687234801,0.3483219221237451,0.3480792921939747,0.3490259349338984,0.3487139313226269,0.3492384918145,0.3531704863403439,0.3561821366024518,0.3580685949107002,0.3597907664316579,0.3625079567154678,0.365267947421638,0.3661290322580645,0.3661785545583372,0.3700367429180988,0.3724646588813767,0.3745961227786752,0.3726725082146769,0.376800311405216,0.0,2.0256099464422026,60.30711237530412,195.98365479727187,296.16800518235084,fqhc4_80Compliance_baseline_low_initial_treat_cost,88 -100000,95803,42804,403.1293383296974,6760,69.40283707190798,5269,54.44505913175997,2070,21.241506007118776,77.41775944651599,79.74606568930463,63.37436231324406,65.09522673376509,77.16053157772829,79.48926805735589,63.27964471415969,65.00320635941715,0.2572278687876945,256.79763194874283,0.094717599084376,92.02037434793908,119.66966,83.81847752337003,124912.22613070572,87490.45178477712,280.02633,176.19647043168305,291719.3094161978,183340.8039744925,307.46795,147.59157735576412,317535.3798941578,151358.94499216756,3443.67447,1561.309261957072,3557461.2590419925,1592632.1743129862,1238.27677,544.7847511932241,1275508.480945273,551692.2469898764,2031.49314,851.2900583855442,2085823.679843011,858600.4433107593,0.38036,100000,0,543953,5677.828460486624,0,0.0,0,0.0,23619,245.95263196350845,0,0.0,28512,294.24965815266745,1863402,0,66899,0,0,4743,0,0,47,0.4801519785392942,0,0.0,0,0.0,0,0.0,0.0676,0.1777263644967925,0.3062130177514793,0.0207,0.3078775857183338,0.6921224142816662,25.18323739383424,4.408177508471455,0.3296640728791042,0.2258493072689315,0.2218637312583032,0.222622888593661,11.114035151123204,5.628955056846225,22.14533653696326,12748.361522015894,59.68073323325446,14.21787871133582,19.644823583798843,12.952552288942522,12.865478649177277,0.5547542228126779,0.7747899159663866,0.690846286701209,0.5688622754491018,0.1159420289855072,0.7218543046357616,0.9154589371980676,0.851508120649652,0.7481203007518797,0.1451612903225806,0.4966751918158568,0.6997422680412371,0.6378254211332313,0.5160575858250277,0.1081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390273291548,0.0043992580053318,0.006727481202626,0.0092421441774491,0.0115512893516635,0.0135388248707194,0.0157782081337274,0.0178717236874336,0.0202477564954312,0.0226491177795062,0.0249589995899959,0.0270589322192225,0.0289776114800271,0.0308230812786328,0.032778940639081,0.0348282344192195,0.0367177555392273,0.0389077224520262,0.0408252306158065,0.0426838790276404,0.0574376845466022,0.0720184828970477,0.0851808757088797,0.0979473496228754,0.1104136165910072,0.1267563969826948,0.1395127118644067,0.1521720640455889,0.1638408433722084,0.1751282902842205,0.1889653688965369,0.201776087637609,0.2130517400510342,0.2240468183604839,0.2351668149710531,0.2457770550559187,0.2561167277875001,0.264695312324521,0.2732782057091074,0.2817821080197148,0.2884768670940911,0.2959533927987671,0.3033449082276238,0.308821065230401,0.3152038055019598,0.3211805555555556,0.3266517539145974,0.3310919883568696,0.3362392322218485,0.3415360295086286,0.3415499583344534,0.341460396039604,0.3414036766982911,0.3410764299945139,0.3408139016783009,0.3396784073506891,0.3396886174488149,0.3409661281062905,0.3420850737362543,0.3440547720505643,0.3459457435455788,0.3472359036999093,0.3490126423571205,0.3495708393713075,0.3517004184905479,0.3536353452991898,0.3550619393421614,0.3576319095477387,0.3596257621417058,0.3618176055780049,0.3635991634082022,0.365629645359949,0.3689711623221257,0.3715415019762846,0.3742789598108747,0.3772476624310716,0.3769698860976751,0.3748463744367062,0.3781928041746772,0.3760650658404337,0.0,2.111799783903462,59.9627371941037,203.60801939613785,288.6674951308762,fqhc4_80Compliance_baseline_low_initial_treat_cost,89 -100000,95723,42711,403.2886558089488,6746,69.42949970226591,5234,54.10402933464267,2127,21.82338622901497,77.3893283971574,79.75128406182125,63.35181630130408,65.09397386065474,77.12055628951705,79.48239923582742,63.25352684913136,64.99854314646569,0.2687721076403448,268.8848259938368,0.0982894521727217,95.43071418904958,118.00404,82.61297275180122,123276.57929651182,86304.20353708223,279.36429,175.2094994513324,291281.3743823323,182472.84294404936,298.20063,142.72995423663755,308188.7947515226,146512.8378348187,3481.28324,1562.7113540104351,3599031.5807068315,1594735.9715120036,1254.87936,546.7538021349517,1299027.4228764246,559262.1022481036,2095.22052,871.5901736983143,2151841.45921043,879412.489698309,0.38153,100000,0,536382,5603.480877114173,0,0.0,0,0.0,23612,246.07461111749527,0,0.0,27541,284.43529768185283,1871681,0,67134,0,0,4573,0,0,49,0.5014468831942166,0,0.0,0,0.0,0,0.0,0.06746,0.1768144051581789,0.3152979543433145,0.02127,0.3157301788480495,0.6842698211519505,25.06303752588113,4.489208381139495,0.3171570500573175,0.2130301872372946,0.2309896828429499,0.2388230798624379,11.143930680364472,5.6782492769682245,22.66502197777763,12755.074710204628,58.73536611529024,13.032238840145668,18.57096605102062,13.377655191036702,13.754506033087244,0.542223920519679,0.7713004484304933,0.6819277108433734,0.5847808105872622,0.1112,0.7037319116527038,0.926027397260274,0.8595238095238096,0.68,0.150197628458498,0.4881407804131599,0.696,0.6217741935483871,0.556745182012848,0.1013039117352056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0047432272188269,0.0068064473590781,0.0088949361818791,0.0110406246187629,0.0130895914337479,0.0152250122289254,0.017550662231383,0.0196082438411313,0.0216005484554226,0.0236192232810738,0.0254545081462633,0.0277949034114262,0.0297889861039629,0.0320318462141369,0.0340922008535967,0.0361328529423945,0.0382357212505964,0.0400715154413064,0.0419831025825337,0.0563056712926704,0.0697968879168716,0.0833543108873505,0.0957563140075284,0.1082497048406139,0.1241103626230687,0.1372565658279944,0.1491941493325385,0.1617403565744074,0.1737699293426399,0.1874064582817395,0.2003569303985722,0.2121521739130434,0.2234103035073908,0.2337700914221591,0.2447302251907974,0.2556081337470146,0.2658973839890231,0.2755474866674231,0.2839387378718627,0.2917943676632163,0.2988950599239988,0.3062669977533404,0.312866022347573,0.3188469151093464,0.3237977957022351,0.3301172554466844,0.3353472398880692,0.3401235447234489,0.3439400535612986,0.3438643210673552,0.3441513793008608,0.3441785880069207,0.3435336291756407,0.3439073290265092,0.3436491303217121,0.3426995590814988,0.3437556331219376,0.344118500315705,0.3449155869650569,0.3454399010995186,0.3464154375420143,0.3472548690396239,0.3479215194409604,0.3495492020635456,0.3509379885356957,0.353847907228538,0.3557831249607338,0.3580848824973693,0.3611606611963373,0.3618574100260001,0.3657002771264123,0.3655669321198331,0.3657108085494789,0.3697232977618283,0.3674949470930924,0.37014970974641,0.3747725894481504,0.3737741664331745,0.3774912075029308,0.0,2.1984853759062237,57.78509196139792,195.91163073115507,295.3028414919108,fqhc4_80Compliance_baseline_low_initial_treat_cost,90 -100000,95672,42381,399.5212810435655,6692,68.80801070323606,5233,54.11196588343507,2096,21.531900660590352,77.35982293729873,79.73613855606713,63.33991942654043,65.09027067623808,77.10188478235584,79.47901734846424,63.245808724561606,64.99926244805971,0.2579381549428916,257.1212076028928,0.0941107019788276,91.00822817836728,117.4019,82.16230552865277,122712.91495944478,85879.15537320508,278.44561,174.86286253344656,290463.0403879923,182194.4273491164,303.63195,145.10242669922286,314232.1682414918,149126.89702714415,3465.66544,1564.63290684713,3585554.04925161,1598522.8037953945,1256.65133,550.6846110676352,1295516.274354043,557613.1063086739,2061.37062,850.2975034778976,2119681.0979178865,858394.5745724245,0.37825,100000,0,533645,5577.859770883853,0,0.0,0,0.0,23497,244.9933104774647,0,0.0,28110,290.6074922652396,1872927,0,67173,0,0,4780,0,0,48,0.5017141901496781,0,0.0,0,0.0,0,0.0,0.06692,0.1769200264375413,0.3132098027495517,0.02096,0.3303038909400738,0.6696961090599262,24.95965035354206,4.482558059933708,0.3313586852665774,0.210968851519205,0.2253009745843684,0.232371488629849,11.16509920521938,5.729381527284325,22.136714062645407,12690.026603190854,59.10955734435005,13.040510544632689,19.716326902963957,12.994086728215535,13.358633168537889,0.5646856487674374,0.7898550724637681,0.709919261822376,0.5996607294317218,0.1192434210526315,0.7413533834586467,0.91869918699187,0.899343544857768,0.7651515151515151,0.1416666666666666,0.5044837304637458,0.7251700680272108,0.6421299921691465,0.5519125683060109,0.1137295081967213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023494146716895,0.0047333799576327,0.0070106021407193,0.0090694887367715,0.0111741499918659,0.0134866914346786,0.0155697531052894,0.0179875933559156,0.0202659911336288,0.0223729437760864,0.0243715040875284,0.0263554757630161,0.0284915512066768,0.0305498352553542,0.0324197757537623,0.0346866214651893,0.0367517651199867,0.0388951697385207,0.04064043249987,0.0425325690463783,0.0566786815023768,0.0709618646729911,0.0831374113102985,0.0953367984680457,0.1076223724594728,0.1230689465442079,0.1360582485114151,0.1483694378767546,0.1601962502939478,0.1713261571813391,0.1846823549693992,0.197702244696863,0.2096031858291533,0.2211838347139996,0.2316611244466956,0.2422852838882612,0.2527034718269778,0.2625366741982261,0.2720334754604009,0.279752775552249,0.2880368169098772,0.2957548824698865,0.3024559909142533,0.3095734233910565,0.315174530762791,0.321035072817028,0.3267127482719398,0.3327360073204209,0.3383391540551028,0.3432457748987427,0.3432922153916518,0.34309410502572,0.3432440430059041,0.3423941302212722,0.3426650239724502,0.3422853730611995,0.3415712180979991,0.3429445028932141,0.3437398318291576,0.3459852185895027,0.3473771168938455,0.3489620473813485,0.3500661889853123,0.351684562103517,0.3523570808830618,0.3526880037561624,0.3538527275316906,0.354842771254997,0.3571353306873661,0.3598104793756967,0.3625680186565458,0.3650360866078588,0.3685552227391498,0.3699738098906178,0.3694950645406226,0.3743546644255012,0.3761171032357473,0.3796954314720812,0.3833605220228385,0.3906491499227202,0.0,2.317570616035011,58.527667729817125,195.22903659948497,297.7315908681862,fqhc4_80Compliance_baseline_low_initial_treat_cost,91 -100000,95845,42685,401.5963274036204,6731,68.92378319161146,5256,54.17079659867495,2114,21.607804267306587,77.34109898624328,79.63185800385185,63.34986309044478,65.04428124525693,77.07745617775186,79.37149539105734,63.252246042263934,64.95101386754888,0.2636428084914257,260.3626127945091,0.0976170481808438,93.26737770804527,119.28972,83.5771052124416,124461.07778183524,87200.27670973091,282.69751,177.91270016064956,294264.447806354,184938.4142962148,306.80373,147.43209674534356,316132.0047994157,150802.28903963327,3441.69531,1563.9321289890247,3550675.444728468,1591651.5171976096,1258.76589,554.5686829823376,1298992.4878710418,564267.9484569781,2074.3876,866.805163328846,2123427.554906359,869438.2563412869,0.38062,100000,0,542226,5657.321717356148,0,0.0,0,0.0,23864,248.26542855652357,0,0.0,28338,291.6584068026501,1859499,0,66797,0,0,4754,0,0,64,0.6677447962856696,0,0.0,0,0.0,0,0.0,0.06731,0.1768430455572487,0.3140692319120487,0.02114,0.3315886263969444,0.6684113736030556,24.77719056648261,4.386483071085659,0.3297184170471842,0.2201293759512937,0.2248858447488584,0.2252663622526636,11.139294217135287,5.748684041039829,22.48359051148984,12680.564552015469,59.634862543925216,13.786510298281287,19.72580364884944,13.1384092132657,12.98413938352879,0.5570776255707762,0.7709593777009507,0.7120600115406809,0.577834179357022,0.1005067567567567,0.7229778095919828,0.9164619164619164,0.8733905579399142,0.7142857142857143,0.1229508196721311,0.4970199533557916,0.692,0.6527229676400947,0.5354767184035477,0.0946808510638297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022074831654093,0.0046711452918705,0.0069277505604073,0.0093305175949804,0.0115666863171589,0.0138300903688024,0.0160559104292103,0.0184238714613618,0.0204175433579147,0.0225766193379434,0.0246962899227664,0.0270250866648889,0.0290975945440726,0.031071876864827,0.0330661116148709,0.0348649987614565,0.0369355489147855,0.0389373562384731,0.0408845514950166,0.042877060096554,0.0569900098024902,0.0714173730363619,0.0844751728472658,0.0966779746463193,0.1088996303667898,0.1242764797836833,0.1371408593948639,0.1497740683642549,0.1616473149492017,0.1727974276527331,0.1871495452833234,0.1998961746860906,0.2119413369861822,0.2229582745766788,0.2327945690802865,0.2440221606648199,0.2539558551119245,0.2632792898209926,0.2725023549306005,0.2806056996243013,0.2878300511420174,0.2954540137104887,0.3026139846403256,0.3092484510013063,0.3153489163183983,0.3210881333777268,0.326381934708592,0.3304361105101742,0.3360519910931593,0.341116496520028,0.3407348522615502,0.3401393325256086,0.3398744445228187,0.3401625686425084,0.3404661143231805,0.3397101271264509,0.3391808223527544,0.3402313243483705,0.3413951251352697,0.341747118997537,0.3424148022278863,0.3434526416371382,0.345233822442732,0.34534127843987,0.344631532910562,0.3457063128521034,0.3475036647408812,0.3506604852025911,0.3540129232724833,0.3544561571633924,0.3557163796262367,0.358283913020249,0.3614671912679274,0.3647355934797581,0.3691619899172453,0.3696955166626708,0.3758129451842675,0.3796617077644181,0.3764184887904788,0.3895800933125972,0.0,2.529887879649036,61.38578254911823,192.75338404981005,294.9602878534827,fqhc4_80Compliance_baseline_low_initial_treat_cost,92 -100000,95631,43149,405.9353138626596,6703,68.81659712854618,5261,54.30247513881482,2123,21.729355543704447,77.31769350596971,79.74075632646081,63.289715480586615,65.0816427284864,77.0539569974068,79.47920068272177,63.19255035315828,64.98827280798744,0.2637365085629142,261.55564373904383,0.0971651274283331,93.36992049895798,118.8165,83.30008102555597,124244.75327038302,87105.73038612581,282.32596,177.44467367215353,294540.2955108699,184867.6046138688,310.36632,149.03659433678567,320220.25284688023,152399.0393686939,3466.88737,1567.486189861775,3582152.2727985694,1596017.8620520702,1290.75548,563.6817739471411,1333235.206156999,572987.8322727047,2091.28282,870.3158585812577,2143965.617843586,874668.3800323138,0.38318,100000,0,540075,5647.488785017411,0,0.0,0,0.0,23804,248.19357739645093,0,0.0,28704,295.793205132227,1859147,0,66653,0,0,4699,0,0,48,0.5019292907111711,0,0.0,0,0.0,0,0.0,0.06703,0.1749308419019782,0.3167238549903028,0.02123,0.3292181069958848,0.6707818930041153,25.234762220488932,4.486955732185837,0.3288348222771336,0.2075651016916936,0.2317049990496103,0.2318950769815624,11.067234210167795,5.593490980444143,22.524273240580296,12831.733934620624,59.280836904745634,12.825203032117146,19.579245224917504,13.550936242212591,13.325452405498387,0.5561680288918457,0.7710622710622711,0.7057803468208093,0.5898277276456112,0.1180327868852459,0.7098248286367098,0.9327731092436976,0.851258581235698,0.7089552238805971,0.147410358565737,0.5050658561296859,0.6925170068027211,0.6566125290023201,0.5562565720294427,0.110423116615067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026643163951697,0.004908124771833,0.0074720812182741,0.0097053831847884,0.012107399757852,0.01420130399348,0.0167506579886968,0.018635444124318,0.0208778950169377,0.0230534257247119,0.0251609128145114,0.0272071071626873,0.0293181747968735,0.0316284635540242,0.0337762440072739,0.0360846079019806,0.0383020198249761,0.0402106619021897,0.0424615192481813,0.0444277579625805,0.058764513465779,0.0727825221354848,0.0863436308442138,0.0995460338526032,0.1121237723096419,0.1271818335875275,0.1402110498294385,0.1526760683487363,0.164536108941924,0.1757642155915018,0.189306093391006,0.2017401291552897,0.2142203633511959,0.2257301488222346,0.2363351846954068,0.2465836993655441,0.2563446387662736,0.2666989514939241,0.2754399909163165,0.2831615986796107,0.2912588749001031,0.2986444408025659,0.3057556513909293,0.3119022762998428,0.3171690375652555,0.3234325467799829,0.3279275669041864,0.333604877614144,0.3384876607216922,0.3438697571160504,0.3436214824103663,0.3435395231602,0.3435825105782792,0.3437879576609405,0.3435865430337613,0.3438841859894491,0.3439274272845497,0.3440600565083119,0.3443572783674306,0.3449216451837193,0.3464119483335514,0.3468740145064648,0.3477119279819955,0.3485057676034382,0.3492417163803636,0.3497607406636845,0.3529445202364711,0.3547589229805886,0.355489406408685,0.3568594779020868,0.3577402989167695,0.3603776604256681,0.3614663796378372,0.3652831919284567,0.3641345427059713,0.3659321024419297,0.3701138811942136,0.3733145502113101,0.3733443708609271,0.3732771822358346,0.0,2.739844003871329,57.20973290785114,198.80010162776645,299.0076286844831,fqhc4_80Compliance_baseline_low_initial_treat_cost,93 -100000,95704,42884,404.51809746719056,6758,69.48507899356349,5350,55.25369890495696,2164,22.13073643734849,77.34880342590687,79.7056147479038,63.338894218876014,65.07680703555091,77.07369505749517,79.43243545310544,63.237768272225054,64.97907628609275,0.2751083684116935,273.1792947983536,0.1011259466509599,97.73074945816518,117.447,82.31210522257648,122719.00860988046,86006.96441379303,281.86055,177.17820796689347,293845.49235141685,184464.36960460883,309.74856,149.02660153780903,319433.12714202126,152415.00142015686,3523.13607,1606.1380477675968,3639104.9694892582,1636082.028282768,1261.84529,554.3180941008071,1299225.8944244755,559972.1460026412,2121.41326,892.4766449867493,2172596.7775641563,897238.1176553778,0.38154,100000,0,533850,5578.136754994567,0,0.0,0,0.0,23750,247.47137005767783,0,0.0,28627,295.003343642899,1868658,0,67019,0,0,4763,0,0,54,0.5537908551366715,0,0.0,1,0.0104488840591824,0,0.0,0.06758,0.1771242857891702,0.320213080793134,0.02164,0.3195467422096317,0.6804532577903682,24.8090120549584,4.508157831375159,0.3265420560747663,0.2136448598130841,0.2334579439252336,0.2263551401869158,11.158566132146696,5.771086926829733,23.15601399761884,12801.54308808686,60.4620507211038,13.44438044487289,19.689475422134343,13.98237022678597,13.34582462731058,0.5482242990654206,0.7655293088363955,0.6846021751574127,0.5748598879103283,0.1189099917423616,0.7042151162790697,0.9291338582677166,0.8378995433789954,0.7104377104377104,0.1423076923076923,0.494212380473075,0.6837270341207349,0.6333078686019863,0.532563025210084,0.1125131440588853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189168936639,0.0043993025990349,0.0068692608188321,0.0089903391948313,0.0112758256059866,0.0135898610474881,0.0157684976607173,0.0178013677656425,0.0196515252158806,0.0217184381556726,0.0240350121968718,0.0260994509159952,0.0282527116640106,0.0303298603961619,0.0323905015370015,0.03455295053679,0.036653171948934,0.0387317002313734,0.0406641851566886,0.0427199033071456,0.0580433602071932,0.0716378859236002,0.0849691030980832,0.097242532955992,0.1093672541636342,0.1250925553745583,0.1380532475938836,0.1504540663692789,0.1630466137458733,0.1741471787170135,0.1871465351014208,0.2002943117757171,0.2125127803519763,0.223539577158232,0.2343478356550252,0.2453574436023578,0.2565325706880564,0.2663168916560646,0.275198419457029,0.2832378551787351,0.2906825970176901,0.2983839825877342,0.3059910016575894,0.3121179431859043,0.319782769806461,0.3252156766083313,0.3305109123882184,0.3357926069147989,0.3413141104453274,0.3456824328781582,0.3456439138753402,0.3453861729823546,0.3449229163434278,0.3450501425408448,0.3449620479237982,0.3441031696134206,0.3430351452893898,0.3442752230272561,0.3454900015395405,0.3468329069996243,0.3476484150936322,0.3489163107103306,0.3500356708212682,0.3500056097834623,0.3510928631807752,0.3536001256314288,0.3544463568559954,0.3584738523838147,0.3607992656922968,0.3616085705148705,0.3624247437841812,0.3640086206896551,0.3688161693936477,0.3691842431761786,0.3718107978977544,0.3721940622737147,0.3754705144291091,0.3769470404984423,0.3800508618253744,0.3788771103258735,0.0,2.3809826504924025,60.44218011740715,196.56873234060487,306.33505315052884,fqhc4_80Compliance_baseline_low_initial_treat_cost,94 -100000,95639,42732,402.53453089220926,6688,68.59126506968914,5206,53.869237444975376,2087,21.497506247451355,77.26744378178137,79.68305811697789,63.28338998351626,65.06952113633425,77.01203715530482,79.42497479328132,63.18964758727063,64.97655136793279,0.2554066264765424,258.0833236965674,0.0937423962456307,92.96976840145987,118.63302,83.10350066606935,124041.59391043404,86892.12138363907,283.78234,179.10926709452332,296133.8052468136,186690.620579722,309.11524,148.8791811697627,318960.2777109757,152486.80634102575,3409.86869,1552.2305992762524,3530334.9888643757,1588187.9082764676,1297.25052,574.7608258704117,1336358.1279603508,580927.2454873638,2044.94714,851.87947874091,2107226.0479511498,866536.014158083,0.37971,100000,0,539241,5638.254268656093,0,0.0,0,0.0,23939,249.6889344305148,0,0.0,28571,294.57648030615127,1858486,0,66703,0,0,4795,0,0,57,0.5855351896192976,0,0.0,0,0.0,0,0.0,0.06688,0.1761344183719154,0.3120514354066985,0.02087,0.3188014768531667,0.6811985231468333,24.928637685571186,4.520498251899992,0.3357664233576642,0.2103342297349212,0.2305032654629274,0.2233960814444871,11.457213839540636,5.990088261601688,22.25230857640518,12740.883622895066,59.27630543641227,13.123895900100448,19.89904713454228,13.5221159174769,12.731246484292626,0.5647330003841721,0.7789954337899543,0.6973684210526315,0.5975,0.1298366294067068,0.7427953890489913,0.9117647058823528,0.8900634249471459,0.7392739273927392,0.1890756302521008,0.5,0.710124826629681,0.6258823529411764,0.5496098104793757,0.1145945945945945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0043601703508416,0.0066906270305393,0.0091354361434029,0.0113022512945197,0.0133111989245121,0.0156616432489752,0.0179481158562108,0.0199081790202353,0.0219557403406007,0.0239987692938823,0.026225500267083,0.0281458316187968,0.0302830470577325,0.0326686071716108,0.0347255246562596,0.0367562529128476,0.0390044422302486,0.0412939463282712,0.0434315738993546,0.0583249728283588,0.0725776046248586,0.0858849966397849,0.0984680178994472,0.110564539965376,0.1266001037618982,0.1397561700862325,0.1520321391274695,0.1633222804578029,0.1746348797250859,0.1882973331464127,0.2010117203578933,0.212163427004201,0.2236302156856308,0.2340008587187476,0.2441312993674321,0.2549275653474407,0.2639248340272307,0.2735613389653449,0.2816433205713106,0.2891747623403541,0.2961242849288146,0.3033980582524271,0.3101119282123877,0.3162689435403439,0.3222899745722961,0.3281805882647692,0.3325354587354536,0.3376202452874219,0.3426418088060293,0.3425674672282748,0.3423026025584473,0.3423110584116767,0.3424335956179629,0.342685072001431,0.3416106145766147,0.3404708199637831,0.3416226706797585,0.3428595890410958,0.3428065214667931,0.3441994247363374,0.3449701789264413,0.3465223525447998,0.3486310592459605,0.3504240461980815,0.3524815815002228,0.3537049217833958,0.355335880996747,0.3564436905897735,0.3578669017188188,0.3600184672206833,0.3613586046762784,0.3620193230532983,0.3617465224111282,0.3616050204430921,0.3618175244064119,0.3584758942457232,0.3621900826446281,0.3629862700228833,0.3622078968573731,0.0,2.0568924921314875,61.51416809282424,196.05488545471587,286.87010987506346,fqhc4_80Compliance_baseline_low_initial_treat_cost,95 -100000,95847,42505,400.44028503761206,6609,67.89988210376956,5099,52.71943827141173,1992,20.511857439460808,77.40182060844235,79.71503228132518,63.36325590393732,65.07552436245491,77.15210288011704,79.46369600707379,63.2715070750683,64.98496416659428,0.249717728325308,251.33627425138627,0.0917488288690222,90.56019586063258,118.33096,82.88192320959755,123458.17813807422,86473.1532646797,279.34289,175.97494690668546,290959.6857491627,183112.8641550445,301.09109,144.383176473303,311162.8532974428,148347.98993867726,3368.19246,1520.0635549914605,3484312.383277515,1556166.331331662,1217.12587,534.3814815790216,1258996.671778981,546669.3288042624,1958.29204,818.1451786927888,2018030.3608876648,832395.7638363037,0.37867,100000,0,537868,5611.735369912465,0,0.0,0,0.0,23574,245.44325852661007,0,0.0,27850,287.5207361732762,1868491,0,67124,0,0,4622,0,0,55,0.5738312101578558,0,0.0,0,0.0,0,0.0,0.06609,0.17453191433174,0.3014071720381298,0.01992,0.3132026520611127,0.6867973479388872,25.11445205414292,4.416280738699114,0.3181015885467739,0.2188664444008629,0.2386742498529123,0.2243577171994508,10.999941670505423,5.601894995045617,21.211014028965412,12617.012362850355,57.5179745407403,13.159832430602444,18.304579629809712,13.50422782325162,12.549334657076534,0.5493233967444597,0.7867383512544803,0.6787916152897657,0.5677896466721446,0.1145104895104895,0.7149569303054033,0.9423076923076924,0.8405797101449275,0.7307692307692307,0.1338912133891213,0.4939822082679225,0.711436170212766,0.6233443708609272,0.5235109717868338,0.1093922651933701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024605601571518,0.004672186806393,0.0067463377023901,0.0090699493179763,0.0114781264932239,0.0136304409788672,0.0159404780104978,0.0180547050418452,0.0199521638694114,0.0219338198417653,0.0241914817282558,0.0263681898427556,0.0284313423170618,0.0303117664017132,0.0323232739949256,0.0342005744869913,0.0362177828382155,0.038209493789013,0.0402779364568294,0.0423032094243017,0.056858001001168,0.0708514085611247,0.0844955310833324,0.0966881295757486,0.1084747190715406,0.1239821298437945,0.1368687564223439,0.1492154945148397,0.1615295950820721,0.1721153434165988,0.1852971228824953,0.1975147225673996,0.20972122634335,0.2206889770231735,0.2305755870196112,0.2413071634950682,0.2514275517487508,0.2611707031864894,0.270315335753176,0.2790564590891923,0.2869466672834081,0.2940942672776583,0.3014557194044677,0.3075946182323553,0.3134676332374048,0.3190150040651408,0.32421273880569,0.3290261862671533,0.3344551738421311,0.3391851431736946,0.3392184304015502,0.3391189536371013,0.3390904100333601,0.3399760458303871,0.3398465898132075,0.3392411650366561,0.3386060932013034,0.3395802590588621,0.3402693614188416,0.3412255522473212,0.3423873393568662,0.3432405762778764,0.3438761635812153,0.3452380952380952,0.3465505661101516,0.349255050833355,0.3508039315947957,0.3538962054618825,0.3557762932391312,0.3575985734099465,0.3588843822631363,0.3602831594634873,0.3627024642339446,0.364825802525483,0.3700111898545319,0.3718930380492402,0.3699969446990528,0.3757096512570965,0.3826039086154693,0.3832886163280951,0.0,1.772521592453529,56.46275165867859,196.934800145836,284.3929764214409,fqhc4_80Compliance_baseline_low_initial_treat_cost,96 -100000,95696,42646,402.3679150643705,6681,68.66535696371844,5200,53.74310316000669,2064,21.21300785821769,77.32145341825886,79.70967860713903,63.3143933609397,65.08045862282536,77.0667753376256,79.45459780082619,63.22107543979394,64.98944262107243,0.2546780806332549,255.0808063128329,0.0933179211457542,91.01600175293356,119.08314,83.40864263370096,124438.76442066544,87159.78644217202,281.19692,177.1115812725777,293241.1699548571,184474.80027647727,303.89828,145.7039725555261,314014.57741180406,149494.8046451559,3431.09491,1548.045495672732,3548119.0436381875,1580408.75791332,1268.88197,557.6366882587319,1310745.6738003676,567511.5974113146,2033.3178,845.6382170281469,2090888.6055843504,854194.7271965067,0.37952,100000,0,541287,5656.307473666611,0,0.0,0,0.0,23781,247.8682494566126,0,0.0,28051,289.55233238588863,1861889,0,66743,0,0,4667,0,0,54,0.5642869085437218,0,0.0,0,0.0,0,0.0,0.06681,0.1760381534569983,0.3089357880556803,0.02064,0.3262138687170725,0.6737861312829275,24.88531424437019,4.45931304080796,0.3234615384615384,0.2142307692307692,0.2319230769230769,0.2303846153846153,10.987401050365456,5.524648838910677,21.85120344452551,12636.01040003072,58.64721077387588,13.191276931336487,18.995705880313253,13.255694139296912,13.204533822929235,0.5461538461538461,0.7495511669658886,0.6938168846611177,0.5762852404643449,0.1193656093489148,0.724373576309795,0.9013698630136986,0.8713968957871396,0.7509881422924901,0.1693548387096774,0.4857069276332732,0.6755674232309746,0.628757108042242,0.5299055613850997,0.1063157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365566993596,0.0043403305952743,0.0065981809322722,0.008709261084745,0.0107235878235389,0.0131712981827071,0.0153482158336477,0.0176638758423524,0.0196587575010989,0.0217208835752451,0.0236315730118209,0.0259706918329413,0.0281758237236526,0.0300579106815324,0.0319570602807597,0.0341187539417499,0.0361282303589,0.0384607401564997,0.0403298771800284,0.0423771209405094,0.0569969292473522,0.0699682818829884,0.0834251650346861,0.0953929368186218,0.1074360110569517,0.1230684560348842,0.1357277802543038,0.1477777422756174,0.1593408354974191,0.170660031317703,0.1852047356911243,0.1972180125568305,0.2097518000478562,0.2202531368623718,0.231133943500836,0.2416145285421626,0.2521420921099607,0.2609839456761254,0.2698877169105138,0.2780100095055945,0.2869304708916984,0.2938493919550982,0.3021494176687813,0.3087866911174236,0.3152548962433785,0.3209944955484133,0.3269663764635244,0.3319560629560883,0.3365057608006931,0.3413270754505543,0.3412953667693881,0.3419001937851321,0.3421522959793974,0.3424829617650456,0.3430597258970776,0.3418010670264303,0.3404268804766356,0.3417615456651387,0.3418465904234405,0.3431384813338813,0.3434586014746993,0.3454426670890085,0.3462095302041587,0.3473960436011304,0.3489568241089539,0.3491409836065574,0.350947187141217,0.3539663461538461,0.3553867891204521,0.3588331537571331,0.3602819996337667,0.3626473740621651,0.3673156718799872,0.3721254355400696,0.3684962835906232,0.3704866562009419,0.3750972762645914,0.3795876288659793,0.3879598662207358,0.3882854926299457,0.0,2.266112123556884,57.93438721600694,195.5791048596752,293.52088264472866,fqhc4_80Compliance_baseline_low_initial_treat_cost,97 -100000,95726,42404,400.6539498150972,6754,69.54223512943192,5272,54.708229739046864,2112,21.79136284812904,77.3455376358958,79.73135117392815,63.32130932583449,65.086863592586,77.09057394990583,79.47390498757821,63.22756031543804,64.99408686656035,0.2549636859899635,257.446186349938,0.0937490103964506,92.77672602564736,118.26012,82.81269531569554,123540.22940475942,86510.13864122133,280.57836,175.9005646248905,292706.6418736811,183355.16434917416,304.18473,144.95570428464632,315741.1048200071,149906.33966700145,3470.52898,1558.3691032294616,3602340.3046194348,1604805.80326083,1256.62203,543.5658967426834,1303300.0647681924,558418.9999287645,2079.26268,865.1972854177915,2147119.027223534,882165.9406270545,0.37747,100000,0,537546,5615.46497294361,0,0.0,0,0.0,23677,246.94440381923403,0,0.0,28122,291.7180285397907,1868783,0,66978,0,0,4588,0,0,50,0.5223241334642625,0,0.0,0,0.0,0,0.0,0.06754,0.1789281267385487,0.3127035830618892,0.02112,0.3289027149321267,0.6710972850678733,25.08257392039855,4.521848085405993,0.3254931714719272,0.2175644916540212,0.2245827010622154,0.2323596358118361,11.087837832380131,5.534310837127557,22.447521633832544,12628.80330123233,59.52126183016455,13.43763886550157,19.533208417145023,13.206645299560464,13.343769247957487,0.5515933232169955,0.7759372275501307,0.6940559440559441,0.5869932432432432,0.1077551020408163,0.714968152866242,0.923943661971831,0.8313253012048193,0.7433962264150943,0.1266968325791855,0.5004980079681275,0.7095959595959596,0.6502690238278247,0.5418933623503809,0.1035856573705179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107417501697,0.0042091383944419,0.006406416569369,0.0085875729181487,0.0107227150647025,0.0129048686086779,0.0149191327935387,0.0170542160677266,0.0188870255235602,0.0209519518289435,0.0230757397056561,0.0251229958607656,0.0272071756997233,0.029357212043773,0.0312177502579979,0.033361591266231,0.0354575400360479,0.0375075243373393,0.0396822095586706,0.041633673682017,0.0566857429299469,0.0705577009617699,0.0833394553182557,0.0965647851017938,0.1087788876348792,0.1245491374112818,0.1374831541751117,0.1495670511550627,0.1615017050252814,0.1731322455989695,0.1859174059741071,0.198795637434881,0.2106351711750939,0.2215984942989079,0.2311519621333039,0.242013938903724,0.2519755346220813,0.2617030611900502,0.2711554824437007,0.2799056754962339,0.2876414373973205,0.2954813818904542,0.3024633687720999,0.3086979946123915,0.3147723550605961,0.320612659162207,0.3253989079231797,0.3307692307692307,0.3362212552776666,0.3410540714727275,0.3415898076174366,0.3409527204914436,0.3407245032740353,0.3405512946196875,0.3406103182013546,0.3397967759187104,0.3395671160053161,0.3401436578510495,0.3411477035669095,0.3414782484258729,0.3419148736258574,0.3433054932846628,0.3440873792537408,0.3457252404762438,0.3469560179597354,0.3489212400502723,0.3500357295983993,0.3541410511050159,0.3556087599464826,0.357919904363419,0.3597391344005108,0.3621285418106427,0.3626512096774194,0.3638931297709923,0.3692540991375225,0.3674329040799133,0.3679157633942397,0.3700205338809035,0.3680593732820231,0.365011636927851,0.0,1.3609479353588658,56.06348137586284,211.929871020094,295.6538938602786,fqhc4_80Compliance_baseline_low_initial_treat_cost,98 -100000,95612,42564,400.1798937371878,6639,68.33870225494708,5220,54.03087478559177,2070,21.283939254486885,77.23812690061078,79.67018773049968,63.25655152000609,65.05460332137294,76.98437942563297,79.41442364218186,63.16348246105019,64.96284247824548,0.2537474749778141,255.76408831781805,0.0930690589559049,91.76084312746012,117.49034,82.29268004641243,122882.420616659,86069.40556249469,279.80154,176.5336014417045,292092.09095092665,184085.792866194,304.70222,146.91746055673653,314956.2502614734,150789.0938759207,3434.04416,1555.9832040927056,3558779.1386018493,1594634.2502382607,1259.29715,549.0504494103277,1305252.0499518889,562409.4145194404,2036.4951,846.5536286228664,2097299.502154541,859211.3701438946,0.37906,100000,0,534047,5585.5645734845,0,0.0,0,0.0,23666,246.94599004309083,0,0.0,28141,290.5806802493411,1862515,0,66878,0,0,4575,0,0,49,0.5020290340124671,0,0.0,0,0.0,0,0.0,0.06639,0.1751437767108109,0.3117939448712155,0.0207,0.3141795311606632,0.6858204688393368,25.02850516785483,4.484695761918082,0.325095785440613,0.2183908045977011,0.2298850574712643,0.2266283524904214,11.26109177421129,5.822291192045582,21.894358906547687,12765.921881703587,58.90494912524721,13.405239094355746,19.388579180033457,13.253058837813848,12.858072013044174,0.553639846743295,0.7789473684210526,0.6841484973482617,0.5841666666666666,0.1183431952662721,0.7249451353328457,0.93573264781491,0.854586129753915,0.723404255319149,0.1646586345381526,0.4928627043861925,0.6977363515312917,0.6232,0.5413943355119826,0.1059957173447537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0046250748024707,0.0068739338802696,0.0091987436853928,0.0116430548770558,0.0140285461047098,0.0161966443979805,0.0183773954970784,0.0207127222142667,0.0228611227761105,0.0251580070590166,0.0273008435827091,0.0293633313435293,0.0316691236353514,0.033892704084267,0.0361629037932247,0.0381489467573395,0.0403980595635056,0.0423454464071949,0.0441994137344697,0.0586341351229863,0.0729936185596177,0.0859955247870071,0.0984887578326575,0.1106464761663393,0.1266536037705873,0.1394046910852383,0.1513691548440048,0.1629307854445074,0.1740442763998839,0.1873435476909797,0.1998395472630882,0.2122239051552233,0.2233313974512102,0.2331676457297785,0.2440212626649354,0.2542590914683938,0.2634896649714137,0.2722454735692839,0.2798392190640252,0.2878031797609376,0.2951242684056815,0.3024710406380554,0.3095301077337437,0.3158908350702697,0.3220582053754667,0.3280225988700564,0.332231383861333,0.3370536874382828,0.3415987079008684,0.3420928190231709,0.342183746168503,0.3420673484377649,0.3425725924529943,0.3432137750238322,0.342764927380312,0.3423913043478261,0.3433544303797468,0.3444043940954343,0.3464854884104476,0.3475146638592269,0.3489687754332334,0.3492263972213451,0.3512353033743228,0.3518478234597443,0.353687300172965,0.3566305158661846,0.3594392759951901,0.3606117331261258,0.3621711966254128,0.3630199743448781,0.3654657058980518,0.3691169028340081,0.3706619782907812,0.3736584447373376,0.3768030267202648,0.3732928679817905,0.3739935587761674,0.3764446890478811,0.3789152024446142,0.0,2.1988243369753246,60.33953465224285,189.7631410999532,294.9924595547915,fqhc4_80Compliance_baseline_low_initial_treat_cost,99 -100000,95723,44403,421.0168924918776,6064,62.22120075634905,4773,49.31939032416452,1894,19.4101731036428,77.33641368994157,79.71049064699628,63.332022412709286,65.08906251673301,77.0983949036805,79.47521582174298,63.24347056781739,65.00430262465764,0.2380187862610654,235.274825253299,0.0885518448918958,84.75989207536827,159.99632,112.15159127395356,167144.88680881294,117162.4074401696,350.0405,226.1502154919456,365106.6201435392,235680.7930089379,358.6951,173.17512544432842,371477.7012839129,178425.24822935078,3427.72331,1562.0579830703157,3541561.2757644453,1592536.1439469247,1166.59426,518.5638152035976,1203293.283745808,526374.189175598,1856.71664,782.0064770949581,1904415.532317207,786227.3592236575,0.37966,100000,0,727256,7597.494854946042,0,0.0,0,0.0,29848,311.2104718824108,0,0.0,32807,339.50043354261777,1613072,0,57875,0,0,6312,0,0,53,0.5536809335269476,0,0.0,0,0.0,0,0.0,0.06064,0.1597218563978296,0.3123350923482849,0.01894,0.3206863979848866,0.6793136020151134,24.32833833869694,4.365259572175974,0.3184579928765975,0.2260632725749004,0.2321391158600461,0.2233396186884559,11.03412265886344,5.6424849144385485,20.31473106203873,12286.336176598035,54.23649952007601,12.930155180761874,17.127262208868107,12.473136551555523,11.705945578890514,0.5560444165095327,0.7636700648748842,0.7019736842105263,0.5622743682310469,0.1313320825515947,0.7116903633491312,0.8943298969072165,0.837696335078534,0.7063197026022305,0.1938325991189427,0.4998574280011406,0.6903039073806078,0.656414762741652,0.5160905840286055,0.1144219308700834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874711199383,0.004269820180732,0.0065384029646174,0.0091064314171883,0.01147472610195,0.0135253498462102,0.0157048307651515,0.0179803961609148,0.0198439880179526,0.0216612411195053,0.023884207720852,0.0258413584936654,0.0277143621069085,0.0295817153686899,0.0317404628989485,0.0337891614210259,0.0357435000051772,0.0380218275375549,0.0399521904069012,0.0419791666666666,0.0566067289016978,0.0706550739194576,0.0840027686305765,0.0963774362424573,0.1088251104061047,0.1243724833278728,0.1367953528800695,0.148613297035178,0.1599171701214695,0.1702663324119903,0.1834501017014819,0.196018211114836,0.2076677316293929,0.2179873719167158,0.2276298583563179,0.2384395939759835,0.2484762721873711,0.2572995571939131,0.2658912355882052,0.2737639106515846,0.2808823869282858,0.2870889387144992,0.2933227814460022,0.2995069647216504,0.3045767173303897,0.3101012711186582,0.3155355580552431,0.3204906571755434,0.3249915892445847,0.3298585453393856,0.3286376124548834,0.3277719607627025,0.326740071336933,0.3256500412380084,0.3242321835315835,0.3223846708497614,0.321582060675262,0.3226257212842559,0.3235691675934639,0.3245534037873505,0.3254527728823728,0.3252595155709342,0.3258944459564134,0.3269917827795641,0.3273111666346339,0.3299414443721535,0.3306908591380001,0.3349230915005843,0.3378159543758361,0.3387450636243966,0.3417122374890859,0.3417966648735879,0.3433669212502406,0.3478294513657819,0.348078939841739,0.3511515151515151,0.3532990173139916,0.3537861686845885,0.3548209366391184,0.3475609756097561,0.0,1.90527989081255,55.72993218600524,181.46213295447163,261.91485014272735,fqhc4_80Compliance_implementation,0 -100000,95620,44007,416.29366241372094,6152,63.145785400543815,4794,49.65488391549885,1894,19.47291361639824,77.26635035352784,79.70434365294103,63.26822878755484,65.07209700841591,77.02740855910622,79.46459281131106,63.17956190544641,64.98540719022704,0.2389417944216205,239.75084162997007,0.0886668821084271,86.68981818887289,160.93484,112.5954647431062,168306.4421669107,117752.83177693596,349.96611,225.79294537403237,365518.1656557206,235657.64941019905,351.99707,170.11868748630653,365097.39594227145,175580.64293586457,3447.16925,1574.74958344883,3573108.38736666,1614990.4641788637,1133.79479,503.8441526357028,1170703.6184898557,511897.2627438849,1859.83938,786.2257283988819,1914288.203304748,794551.4192201861,0.37889,100000,0,731522,7650.292825768667,0,0.0,0,0.0,29884,312.0267726417067,0,0.0,32298,334.79397615561595,1606003,0,57672,0,0,6389,0,0,65,0.6797741058355992,0,0.0,1,0.0104580631667015,0,0.0,0.06152,0.1623690253107762,0.3078673602080624,0.01894,0.3283095090118085,0.6716904909881914,24.59574263067597,4.442204922983997,0.3137254901960784,0.2321652065081351,0.2288277012932832,0.2252816020025031,11.143407038995308,5.609792096937506,20.362466929944464,12304.343256775448,54.45479050226338,13.309309170855752,17.005192847059185,12.20505837949758,11.935230104850882,0.5611180642469754,0.8032345013477089,0.6974734042553191,0.568824065633546,0.1138888888888888,0.7216174183514774,0.9166666666666666,0.8358585858585859,0.7098039215686275,0.185022026431718,0.5022805017103763,0.7375886524822695,0.648014440433213,0.5261282660332541,0.0949589683470105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024423365357331,0.0049708343900583,0.0071902261671422,0.0096286806572311,0.0119704403411982,0.0141769520062782,0.0162373448726322,0.0182806576540674,0.020606531881804,0.022840454964648,0.0246623424606921,0.0269309047550521,0.0291426042020526,0.0309619548407052,0.0328354817385556,0.034704330280925,0.0367218755830103,0.0389988056291218,0.0409645827045367,0.0431341057703338,0.0576846682974764,0.0712459394320444,0.0839871855469775,0.0968992248062015,0.1088614279678918,0.1242147858603192,0.1368080945497831,0.1486111703716346,0.1599053776331563,0.1700529703129868,0.1828880235580916,0.1949506227709785,0.2060879982574602,0.2167482827751668,0.2270994048931011,0.2369174116550944,0.2465705987488829,0.2562075605553866,0.2645501443083426,0.2726824344474777,0.2804063053776393,0.2870125307413046,0.2931922908350016,0.2988416155026861,0.3049351344121974,0.3108359973832652,0.3159411934275007,0.3201253694832331,0.3244875999844432,0.328750841884236,0.3280336306556361,0.3265086948739484,0.3258859349891461,0.3255030646466982,0.3251141416695171,0.3233888752756677,0.3221136331237229,0.3219748624003943,0.3237893369344113,0.3243900693997281,0.3253193087903832,0.3256906186833657,0.3263677412580069,0.3284597989387188,0.3295956015336757,0.3311628879997908,0.3327806523541351,0.336302473230361,0.3394783221713077,0.3415217738076248,0.344452568086273,0.3491360921501706,0.3520965692503177,0.3540651644336175,0.3593413789877444,0.3624366678449393,0.3674121405750798,0.3727620197143432,0.382618201694452,0.3831951770911831,0.0,1.865282633341686,56.818887917855456,177.33686932849707,266.1828966076836,fqhc4_80Compliance_implementation,1 -100000,95704,44268,419.4077572515256,6159,63.24709521023155,4850,50.08150129566162,1914,19.664799799381427,77.34534288058313,79.71602623744651,63.32656324425341,65.07538421740223,77.1046829837591,79.47494787945008,63.23850905668386,64.98943325769716,0.2406598968240274,241.07835799642885,0.088054187569547,85.95095970507316,158.21608,110.8460697649574,165318.14762183398,115821.77313900922,348.28317,224.27025965179376,363347.22686617065,233767.57465915088,357.36747,171.92409699504512,369697.9645573853,176661.71396819045,3476.92588,1580.8249419229437,3595186.3662960795,1613972.4796486504,1172.28654,518.746795720701,1208344.499707431,525468.3981032146,1873.7965,783.1468223277617,1926978.057343476,791357.256734413,0.38072,100000,0,719164,7514.461255537909,0,0.0,0,0.0,29651,309.22427484744634,0,0.0,32729,338.24082587979603,1621702,0,58241,0,0,6330,0,0,68,0.7105241160244087,0,0.0,0,0.0,0,0.0,0.06159,0.1617724311830216,0.310764734534827,0.01914,0.3323543051476271,0.6676456948523729,24.29615129063039,4.384939505763701,0.3138144329896907,0.236701030927835,0.228659793814433,0.2208247422680412,11.561192928397109,6.085158812242248,20.391413979272805,12335.062430884182,55.06424260593292,13.844226304202929,16.958959521107133,12.404084461906944,11.856972318715904,0.5604123711340206,0.7839721254355401,0.683311432325887,0.5779981965734896,0.1279178338001867,0.7402799377916018,0.9267734553775744,0.8707124010554089,0.7379032258064516,0.1531531531531531,0.4955106621773288,0.6962025316455697,0.621172353455818,0.5319396051103368,0.1213191990577149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0044189487766809,0.0067164481960959,0.0089274832419256,0.0108910085623055,0.012767387165416,0.0149638645097499,0.0170370445984708,0.0191257947784842,0.0213428053761349,0.0233223299776515,0.025200246457178,0.0275657772932052,0.0299168632622155,0.0319604544844738,0.0340710571744591,0.0363301194088588,0.0383769198837692,0.0404870085985506,0.0422146266230382,0.0564479070933244,0.0709471480900052,0.0843607365825507,0.0974539715938979,0.1100184647850171,0.1260344134267391,0.1376403898006411,0.1495910368918803,0.1606112417183158,0.171805789422881,0.1848476033485245,0.1973906453009961,0.2086724700761697,0.2197092437710732,0.2297560707009525,0.2400975555678731,0.2496372201013551,0.2585432818354694,0.2676315341392815,0.2757522650997102,0.2829326422472638,0.2896284775414264,0.2964497041420118,0.3016331372290586,0.3068924467335585,0.3121625952128577,0.3169312036851592,0.3217850104888436,0.3263753919510741,0.330902750257589,0.3296749228093357,0.32819862768332,0.3272994267318065,0.3264821676702177,0.3251421427083023,0.3222056951834757,0.3212149029786965,0.3222098324095634,0.3231285563392279,0.3231224064542556,0.3233327106295535,0.3246098060854485,0.3262805770436964,0.3268267596816027,0.3278897800900835,0.327762423736768,0.3281822571939891,0.3294467951731703,0.3324812661951117,0.3370662023663487,0.338761917795721,0.3429923436835389,0.3463405408812961,0.3513100603468031,0.352802637776731,0.3552178558708299,0.3572958091159376,0.3672350791717417,0.3767955801104972,0.365633581796783,0.0,2.3590697896589568,56.47782375933582,181.48743841667863,268.2054451818777,fqhc4_80Compliance_implementation,2 -100000,95669,44140,417.67970816042816,6232,64.05418683168007,4931,51.019661541356136,1926,19.807879250331872,77.2498286400838,79.64861596324202,63.26585613190741,65.03880323695654,77.01418256439763,79.41315073865441,63.17965025011014,64.95490726696319,0.2356460756861764,235.46522458761387,0.0862058817972695,83.8959699933497,159.8201,111.89730343506726,167054.573581829,116962.30026138798,346.51298,223.47799192290023,361673.8337392468,233069.53236147575,358.92276,173.29126639159813,372042.490252851,178665.1197103582,3476.29359,1582.143546206364,3599735.191127742,1619906.0558857769,1159.93967,513.5844085034489,1200085.0850327692,524468.8859541221,1880.10288,779.3385673405107,1935203.9218555645,787517.9142145701,0.37988,100000,0,726455,7593.3897082649555,0,0.0,0,0.0,29590,308.74159863696707,0,0.0,33028,342.0857331005864,1609039,0,57824,0,0,6331,0,0,59,0.616709696976032,0,0.0,0,0.0,0,0.0,0.06232,0.164051805833421,0.3090500641848523,0.01926,0.3442948914040991,0.6557051085959009,24.533959202961476,4.28246486880139,0.3161630500912594,0.2441695396471304,0.2261204623808558,0.2135469478807544,11.150552683802792,5.915191332908708,20.37238600240889,12394.4790024289,56.17339336934776,14.48852306010535,17.683946852913813,12.655131852891548,11.34579160343706,0.578178868383695,0.8039867109634552,0.699807568954458,0.6125560538116592,0.1035137701804368,0.7410782080485953,0.90625,0.8592964824120602,0.7366412213740458,0.1674641148325359,0.5188157166574433,0.7433862433862434,0.6451335055986219,0.5744431418522861,0.0876777251184834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501762632197,0.0045838530733112,0.0067193796246485,0.0092460881934566,0.0116975719909267,0.0139938484101603,0.0162438308112738,0.018471435135549,0.0204233994681939,0.0226134513165575,0.0244632948006523,0.0264406779661016,0.0285229202037351,0.0305494573451655,0.0326037580012389,0.0348115666239192,0.0365876404028681,0.0387134952192103,0.0408539059330233,0.042913890713459,0.0574425626612894,0.0711114368887306,0.084764083620183,0.0972317210467061,0.1098729475328183,0.1244192814434626,0.1363872872266998,0.1487117191995396,0.1597137539310699,0.1699394147724831,0.1835699797160243,0.196330394612707,0.2076023072980841,0.2192695766615486,0.2289753664135617,0.239428482545608,0.2494907210494504,0.2583501596146688,0.2668548276960896,0.2748210860050774,0.2825874921622814,0.2904040404040404,0.2973422716683307,0.3026515242655374,0.3086195548838456,0.3144401296099334,0.3194275312284225,0.3238907762650387,0.3286345329349097,0.3330287863139218,0.3317344070911253,0.3300902542022025,0.3293911519929917,0.3285691507095539,0.3281629490560696,0.326349050526122,0.3246139700053901,0.3241135335252982,0.3247100344360876,0.3253374926047437,0.3262357986607478,0.327718588179275,0.3294194253066711,0.3302325581395349,0.3309891490852848,0.3330810585103607,0.3352494237500356,0.3380895634721525,0.341735812064559,0.3441563590231525,0.3477334542157752,0.3519514767932489,0.3559470813217129,0.3593382408742506,0.3600748013090229,0.3612386671376427,0.3591967138293017,0.3567941415785191,0.3586926668497665,0.3510034078000757,0.0,1.944285470748715,58.26079259557287,190.514205878284,265.36902505210605,fqhc4_80Compliance_implementation,3 -100000,95755,44453,420.7508746279568,6381,65.50049605764713,5059,52.352357579238685,2011,20.646441439089344,77.32698317968122,79.68619399231505,63.31555014592704,65.0612230161757,77.08135024707352,79.44018720475547,63.225865765461045,64.97316130969014,0.2456329326077053,246.0067875595797,0.0896843804659965,88.06170648556133,158.29704,110.94778602958708,165314.64675473864,115866.310928502,352.5023,226.86844439061005,367635.2148712861,236431.9055511572,365.10002,176.2171776366844,378014.43266670144,181497.8378271177,3637.28612,1649.622054572263,3765641.7419455904,1689877.307065529,1204.52604,528.5631948294254,1246541.7784972065,540687.1627727724,1967.25786,820.6066296001248,2022040.937810036,831048.4461600524,0.3818,100000,0,719532,7514.302125215394,0,0.0,0,0.0,29954,312.31789462691245,0,0.0,33473,346.34222755991857,1618112,0,58117,0,0,6319,0,0,66,0.6892590465249857,0,0.0,0,0.0,0,0.0,0.06381,0.1671293871136721,0.3151543645196678,0.02011,0.3387000596302922,0.6612999403697079,24.58496170121943,4.315210473240222,0.3277327535085985,0.22751531923305,0.221585293536272,0.2231666337220794,11.306821535809355,6.080441657506967,21.51556488445264,12441.852621230686,57.56815911532251,13.798737677899478,18.81877400546396,12.571282354925389,12.379365077033697,0.5651314489029452,0.7862728062554301,0.695416164053076,0.5958965209634255,0.1178033658104517,0.7393939393939394,0.9232673267326732,0.8832116788321168,0.7822878228782287,0.1196581196581196,0.5036105910671302,0.7121820615796519,0.6335204490777867,0.5364705882352941,0.1173184357541899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019350590142343,0.0039240737360832,0.0062318575807401,0.0085947659297789,0.0106992117976099,0.0128404867369278,0.0149386140229228,0.0171283914827593,0.0191222762765218,0.0214429739716072,0.0235930758114603,0.0255807507929827,0.0276815541964331,0.0298505925842025,0.0319469373439788,0.0342739643931018,0.0364729998343548,0.0386171272093602,0.0406680662661872,0.0427105578415542,0.0581879678055807,0.0725800546076513,0.0855078997305599,0.0986670591203431,0.1111661537164298,0.1270893463160899,0.1396059134197297,0.1510635126791151,0.1624931867004392,0.1731865159857046,0.1865831707606247,0.1987718899249488,0.2106586005418521,0.2214041920098017,0.2309597182478538,0.2417717591258671,0.2515523788251061,0.2596191741641988,0.2680106763586802,0.2767305687013716,0.2843596957382515,0.2913431927026615,0.297871836193004,0.3038197986295287,0.3088757540377505,0.3144143588478381,0.3194416599839615,0.3239490445859873,0.328316415820791,0.3332056683263117,0.3319232634585332,0.3296659414502492,0.3290120760353404,0.3285251309355016,0.3287756832755568,0.3265459567285561,0.3245614035087719,0.3260358627944053,0.3269655042670725,0.3280879230673161,0.3293238154122871,0.3296029737424865,0.3297827639816799,0.3309524875733285,0.3332209593527259,0.3347266125029389,0.3355388871459943,0.3410320956576463,0.3441875153514158,0.3477433172047275,0.3501749284383661,0.3524299114950447,0.3568693905730245,0.3560066656567187,0.3602472836268265,0.35915575993397,0.3610009154714678,0.3610268849807964,0.3633073496659242,0.3614035087719298,0.0,1.8190624608063275,58.47827958330823,198.0399583636053,274.3339318789074,fqhc4_80Compliance_implementation,4 -100000,95769,44177,418.0684772734392,6132,62.91179818103979,4808,49.72381459553718,1893,19.44261713080433,77.39144353273707,79.73127943140018,63.36142006586866,65.08757662388376,77.15261205454283,79.49142114986385,63.27258773872262,65.00061608748558,0.2388314781942426,239.8582815363284,0.0888323271460365,86.96053639818047,159.984,111.99552428339956,167051.96879992483,116943.39951696224,347.56257,224.38856304692567,362459.6581357224,233843.91927129417,356.51975,172.3775616988191,369366.4024893233,177719.7056606118,3419.23947,1569.9919194516317,3537138.719209765,1606192.8488880869,1138.03476,508.8349212677027,1177813.0605937203,520815.6619236937,1850.499,783.9486875686243,1902196.5562969227,792817.2502157586,0.37939,100000,0,727200,7593.271309087491,0,0.0,0,0.0,29605,308.6384947112322,0,0.0,32682,338.3662771878165,1617271,0,58046,0,0,6273,0,0,55,0.5742985726070022,0,0.0,2,0.0208835844584364,0,0.0,0.06132,0.1616278763277893,0.3087084148727984,0.01893,0.324804992199688,0.675195007800312,24.455986028235102,4.287097639003673,0.3227953410981697,0.2352329450915141,0.2225457570715474,0.2194259567387687,11.09178676145,5.738665978863862,20.324376617002915,12265.167606122171,54.675900478831466,13.676528750564788,17.398993790653808,11.840272100669338,11.760105836943538,0.5628119800332779,0.7966401414677277,0.7016752577319587,0.5476635514018692,0.1232227488151658,0.7387944358578052,0.9363207547169812,0.8671679197994987,0.7261410788381742,0.1652173913043478,0.49800796812749,0.7128712871287128,0.6444058976582827,0.4957780458383595,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020553215616393,0.0042259087730676,0.0065542501166778,0.0088156732107128,0.0107777246799727,0.012865401840241,0.014988791522315,0.0170485848960352,0.019430170907865,0.0216399279692232,0.0238524590163934,0.0260177281680892,0.0280720502255422,0.0304128114611529,0.0323787728847105,0.0346772444141436,0.0367093061765192,0.0385393223467916,0.040496855672782,0.0423654659472072,0.056970481399524,0.0706475678277337,0.0840903845750372,0.0974224690033757,0.1094123973303248,0.1246827679553337,0.1376000848401294,0.1491722699804238,0.1596253657703069,0.1699915315102854,0.1828770736223396,0.1955983345049478,0.2071319110087056,0.2178525000273107,0.2280771175449009,0.2380894425881259,0.2472970864263581,0.2564500005616021,0.2651606175330416,0.2722571196466778,0.2791133096019601,0.2860632267866534,0.292929531828341,0.2982788151732564,0.3044306408172179,0.310757756636678,0.3161058894110589,0.3210828276660433,0.3258869057634314,0.3296598998154495,0.3281567235421456,0.3265743488295417,0.3253178085273934,0.3238691257263983,0.3224629621390755,0.3204813022034234,0.3189731437598736,0.3197059497691476,0.3205418761182585,0.3217907362192796,0.3224531094830332,0.3237922036846683,0.3240880503144654,0.325300125425551,0.3263228980753461,0.3276898155405758,0.3287749287749287,0.3319475938523558,0.335573776260689,0.3380365659777424,0.3399808332953041,0.3433400874480111,0.3478398180899444,0.3504872107186358,0.3542680643953575,0.3562705495537811,0.3644284212107556,0.3680223285486443,0.3719676549865229,0.3821536144578313,0.0,1.8974026880363208,57.017167212695526,184.94132525213135,257.5860561586716,fqhc4_80Compliance_implementation,5 -100000,95728,44858,423.9303025238175,6340,64.79817817148589,5011,51.75079391609561,2008,20.631372221293667,77.37264048070351,79.73254868747559,63.34029949113111,65.0823336581796,77.12104882984738,79.47942756989241,63.24718129132315,64.99080724349271,0.2515916508561275,253.12111758317712,0.0931181998079608,91.52641468689636,158.8675,111.28554281310672,165957.19120842387,116251.820588654,348.84311,224.050554402171,363832.2121009527,233470.60881055804,360.92021,174.087829697694,372727.9270432893,178609.7732367553,3572.46094,1625.3720760586546,3695999.373224135,1662018.861836303,1184.07981,526.1078647010409,1226556.493397961,539221.6015178846,1963.34674,825.0752229559616,2020218.243356176,836776.5969528102,0.38415,100000,0,722125,7543.508691291994,0,0.0,0,0.0,29665,309.2825505599198,0,0.0,33100,341.5510613404647,1619455,0,58214,0,0,6353,0,0,55,0.5640982784556243,0,0.0,1,0.0104462644158448,0,0.0,0.0634,0.1650396980346219,0.3167192429022082,0.02008,0.332226916113458,0.667773083886542,24.36811534572768,4.321819801403347,0.3270804230692476,0.226701257234085,0.2231091598483336,0.2231091598483336,11.188172426971096,5.882831562970012,21.45206826004434,12491.011368459023,56.768024898075474,13.601369446014916,18.433534083421584,12.358031065170453,12.375090303468529,0.5503891438834564,0.7860915492957746,0.6833435021354485,0.5679785330948122,0.0983899821109123,0.7243788819875776,0.9258312020460358,0.8501228501228502,0.7421875,0.1495726495726495,0.4901960784313725,0.7127516778523489,0.6282467532467533,0.5162412993039444,0.084841628959276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023291139240506,0.0046618629209611,0.006989460016028,0.0094450763730906,0.0120692635410629,0.0143840218254372,0.0165436679442224,0.018699220185359,0.020883591609764,0.0230120383260994,0.0251504618949483,0.0272179385825316,0.0293984575835475,0.0314527590681579,0.0336022614724331,0.0357397550514185,0.0376754876382159,0.0395087595556431,0.0419065832415241,0.0437449875535094,0.058679808716353,0.0727828234210856,0.0864473242744506,0.0995259667230741,0.1111720183002677,0.12643131284296,0.139052124657912,0.1510988133879636,0.1619462599854756,0.1731814818389473,0.1866613538951948,0.1990609007995326,0.2107541382985665,0.2209012359181887,0.2309181933212301,0.2417326760095275,0.2511356914044624,0.2609630605374855,0.2694348196535075,0.2769507775586036,0.2839263178613191,0.290700941143419,0.298043537511702,0.3043530442505491,0.3097539917064925,0.3151428430453446,0.3200751408891671,0.3246933374052018,0.3296084321748588,0.3344767533906802,0.3342753710955899,0.3327557040887898,0.331418271938718,0.3297681678903856,0.3294376542659172,0.3277804171583577,0.3257298547418777,0.3260376614413881,0.3267431537253295,0.3278670992121493,0.3274749929886884,0.3278711153178735,0.3301993466789513,0.3316293501796995,0.3319332773310932,0.3328654241077231,0.3335887829246139,0.3379920582809617,0.3405554392575535,0.3435483870967742,0.3469332368373439,0.3488310589230932,0.3504085480829667,0.3550075872534142,0.3558831762620136,0.3592255932003305,0.3633181126331811,0.3618394513916902,0.3677117711771177,0.3727064220183486,0.0,2.3696573901712408,56.32012234459159,196.5107502754772,272.0444493810579,fqhc4_80Compliance_implementation,6 -100000,95748,44187,417.0844299619835,6233,64.03266908969378,4834,49.96449011989807,1881,19.34244057317124,77.33281654085012,79.69742123631691,63.319784280511655,65.07046112760541,77.10024641585355,79.46517366868376,63.23417177090927,64.9870716520483,0.2325701249965703,232.24756763315213,0.0856125096023845,83.38947555711229,159.03184,111.35796725527383,166093.934076952,116302.9686961752,346.1603,222.91246089118297,361015.7496762335,232295.522949224,354.80449,171.05636224276125,367262.15691189375,176154.35022460597,3457.84108,1560.9610622538453,3577587.04098258,1596573.7959026578,1165.52438,509.01505916826255,1203153.9457743242,517490.2025820508,1859.85278,771.9672462054756,1914516.230104023,781097.432515165,0.37976,100000,0,722872,7549.724276225091,0,0.0,0,0.0,29495,307.51556168275056,0,0.0,32539,336.4874462129757,1620602,0,58204,0,0,6228,0,0,49,0.51176003676317,0,0.0,1,0.0104440823829218,0,0.0,0.06233,0.16412997682747,0.3017808438953955,0.01881,0.3268702290076336,0.6731297709923664,24.8627268329312,4.4054308880551485,0.3266446007447248,0.2312784443525031,0.2134877947869259,0.2285891601158461,11.099410240832084,5.413631882000994,19.96656583465943,12387.816935266335,54.71564253252074,13.396920225188804,17.82284097396165,11.43735743311381,12.058523900256468,0.5614398014067026,0.7960644007155635,0.695376820772641,0.5717054263565892,0.123076923076923,0.7299444003177125,0.931372549019608,0.865979381443299,0.7125,0.1434977578475336,0.5020979020979021,0.7183098591549296,0.6397984886649875,0.5290404040404041,0.1179138321995464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0047569300051727,0.0070667072799268,0.0094733739238267,0.0117405282220323,0.01404620273794,0.0158985916642021,0.0181725370086778,0.0203678898988762,0.0222916240016383,0.0245445318186944,0.0267486754014868,0.0290984617915604,0.031101956745623,0.0332325660575921,0.0353909124736428,0.0375199353783061,0.0396106389381816,0.0416220431505068,0.0436680312926445,0.0582917510491262,0.0724575517591304,0.085421866152136,0.0983799581585559,0.1101566287918713,0.1263904749820242,0.1388877105162686,0.151204870572207,0.1625934629352702,0.1726671171026243,0.1859528603576927,0.1983576583107033,0.2104135628609023,0.2200865914458147,0.2298960567563108,0.2395942908394326,0.2498716775647749,0.2588424618223968,0.2674777555838024,0.2753543541480616,0.2822969829531646,0.2882423164251773,0.2946561811592486,0.3002997242536866,0.3064067190937488,0.3121614785752181,0.3173255173104864,0.3213694794450808,0.3252005131062363,0.3294243492730082,0.3293098570678018,0.3286253131797032,0.3275446485206433,0.3263208120065932,0.3256554474302889,0.3250130244246269,0.3228181861371086,0.3237152658099037,0.3239907826235385,0.3252754305273291,0.3260592903129211,0.3269314364750049,0.3277697600970488,0.3279401919214461,0.3287931200153742,0.3307281490165429,0.3321552756085048,0.3343185963146972,0.3385431300927227,0.3394426112193376,0.3413511912896906,0.3456993825846285,0.3494704992435703,0.3519854225191709,0.3545913596409201,0.3597633136094674,0.3608655897592197,0.3637648959806099,0.362938596491228,0.3628386112170927,0.0,2.0186240349804714,55.37045532822239,182.56857582343184,268.2687121780585,fqhc4_80Compliance_implementation,7 -100000,95774,44709,423.0271263599725,6166,63.0024850168104,4872,50.23283981038695,1988,20.318666861569945,77.34910350822409,79.6778080241205,63.34642956891118,65.0665041234559,77.09858666351819,79.43032211853416,63.25236583290551,64.97690076525626,0.2505168447058992,247.48590558633052,0.0940637360056655,89.60335819963916,160.58416,112.5183841128912,167669.88953160567,117483.22521027752,352.23237,227.3753406482916,367173.7527930336,236807.4431978319,363.10545,175.66924834682885,375182.62785307074,180392.8836784525,3487.45165,1597.3643601719757,3597806.3253074945,1624319.4814584083,1187.70324,532.0751873503168,1223125.388936455,538567.9384282965,1950.33122,822.2927905396618,1995543.6757366296,823260.2003400073,0.38314,100000,0,729928,7621.358615072984,0,0.0,0,0.0,29948,312.0471109069267,0,0.0,33238,343.0889385428196,1608323,0,57783,0,0,6353,0,0,69,0.7204460500762211,0,0.0,0,0.0,0,0.0,0.06166,0.1609333402933653,0.3224132338631203,0.01988,0.3322535863026377,0.6677464136973623,24.28470834866104,4.362562744516683,0.3216338259441708,0.2323481116584564,0.2155172413793103,0.2305008210180624,11.285352055685449,5.913550943745725,21.22822742181757,12375.562126541454,55.50048763555344,13.604487019779205,17.779253648350203,11.831702841118844,12.285044126305197,0.5619868637110016,0.7932862190812721,0.6879387364390556,0.6028571428571429,0.1148708815672306,0.7297297297297297,0.908235294117647,0.8399014778325123,0.7575757575757576,0.1845493562231759,0.50125803746156,0.7241867043847242,0.6347975882859603,0.5592185592185592,0.096629213483146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.004277359389412,0.0066753913422811,0.0088267259855156,0.0110627567413673,0.0132232582759884,0.0154609755600399,0.0179823442363627,0.0203741736402742,0.0223547707229236,0.0245771480673284,0.0265158900370442,0.0285285593899656,0.0304764453410459,0.0325700322710354,0.0346847079481485,0.0366829126957025,0.0387399158008254,0.0408371087742632,0.0428733585345788,0.0576804667035409,0.0721069366580202,0.0856313041290079,0.0986642284369055,0.110602914984877,0.1260660501981506,0.1394983993724692,0.1519785607180458,0.1626268771413019,0.1734457707391295,0.1863972527531676,0.1983559569520307,0.2100220755353045,0.220113748222684,0.2295561840411132,0.2402853471576055,0.2496763103848558,0.2586586901763224,0.2667793802267131,0.2750483736160566,0.2818605619628211,0.2889967826849956,0.2945408930071833,0.300497214401246,0.3059212124156021,0.3114212446986882,0.3159251934005958,0.3206141858599748,0.3250495858126239,0.3301799540205586,0.3293070908600701,0.3286582257553421,0.3283733513696313,0.3272301622855821,0.3272624636044922,0.3257085113224013,0.3233869435825999,0.322700918154493,0.3241419370269762,0.3245817843866171,0.3258224763333021,0.3273249480043577,0.328557944415312,0.3286949896925696,0.3291408154889795,0.3304955993294216,0.3314041772913503,0.3345679012345679,0.3373472702874496,0.3399241062512482,0.3423641938584046,0.3451086956521739,0.3470348689233902,0.3502837858567265,0.3540041848963287,0.3581765557163531,0.3622464898595944,0.3628899835796387,0.3662677428332869,0.3655744176865377,0.0,2.4880107372038105,56.349808651868905,186.58807490149928,267.2075158136508,fqhc4_80Compliance_implementation,8 -100000,95654,45017,425.7218725824325,6282,64.3987705689255,4932,50.83948397348778,1914,19.570535471595544,77.31532774038504,79.7078742753156,63.31028192710126,65.07632602565623,77.06846600197771,79.46477320329653,63.218098859706345,64.98910295076335,0.2468617384073326,243.10107201907272,0.0921830673949131,87.22307489287573,158.5353,111.09041880462628,165738.2859054509,116137.76612021062,350.93362,226.05746961594136,366148.566709181,235599.3400986411,362.24575,175.5157193889039,374416.3652330274,180178.30981042987,3531.94102,1610.3179380640934,3641722.698475756,1632841.5885919288,1208.68045,537.5843495132633,1241729.6297070694,540166.7349027399,1881.72174,795.9164126809519,1925239.090890083,793882.2257482107,0.38524,100000,0,720615,7533.558450247769,0,0.0,0,0.0,29863,311.4558722060761,0,0.0,33170,342.5157337905368,1617392,0,58041,0,0,6408,0,0,53,0.5436259853220984,0,0.0,0,0.0,0,0.0,0.06282,0.163067178901464,0.3046800382043935,0.01914,0.3324242424242424,0.6675757575757576,24.722502144518003,4.424193068601309,0.3116382806163828,0.2374290348742903,0.225669099756691,0.2252635847526358,11.019234147298883,5.576824515483692,20.39645717486048,12538.610395018664,55.72611005705711,13.89536193570158,17.32502220629142,12.391259724983165,12.11446619008094,0.5535279805352799,0.7830913748932536,0.6805465191932336,0.5705300988319856,0.1188118811881188,0.726928895612708,0.9114219114219114,0.8704156479217604,0.6991869918699187,0.1764705882352941,0.4900277008310249,0.7088948787061995,0.6117021276595744,0.5340253748558247,0.1030927835051546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325688352209,0.0050690403292848,0.007570683391179,0.0097128807428931,0.011962890625,0.0145658263305322,0.0166761862021133,0.0189673663244982,0.0210666257605972,0.0232862965162717,0.0253420302340368,0.0275811770023318,0.0295458052569312,0.0316235265023493,0.0337228266479489,0.0358166040936216,0.0380263594164456,0.0398472125634451,0.0417347161685616,0.0439957890787046,0.0584498359559484,0.0725968586387434,0.0862477957847006,0.0996022225028412,0.1116939313984168,0.12716224513561,0.1402389169100079,0.1515248351601529,0.1625819001913231,0.1736418964610414,0.1869334166927165,0.1995191787052478,0.2107795643322919,0.2217491709441933,0.2312953641800579,0.2424487803795853,0.2529072040572392,0.2621306770217795,0.271490695218739,0.2795914624360943,0.2871505015172925,0.2945845332584111,0.3007686203915345,0.3063972255889023,0.3117306079791953,0.3165343458750431,0.3214245463766482,0.3258086682106227,0.3298376446826691,0.3337953612398189,0.3330953663793103,0.3321810744928454,0.3310604246206731,0.3306568287037037,0.3287793420250643,0.3263214340432051,0.3247439813862201,0.3260018028353683,0.3273776003003464,0.3286315489140126,0.3294141837078022,0.3302218187559204,0.330587865451116,0.3314841740297506,0.3317772751335483,0.3320644522083746,0.3326850474774053,0.3362655444103408,0.3409468585369303,0.3454261829526819,0.348346557813145,0.3527024140140996,0.3596368715083798,0.3627874672017286,0.3639835768165759,0.3647496698283107,0.3670440636474908,0.3641653290529695,0.3684210526315789,0.3710355368742835,0.0,2.7741964744427743,57.38558662849892,179.37081053117228,274.6150222030293,fqhc4_80Compliance_implementation,9 -100000,95617,44270,419.7057008690923,6102,62.59347187215662,4821,49.74010897643724,1961,20.00690253825157,77.3146043072854,79.73317116261912,63.296484254502126,65.08263376196545,77.0645976785104,79.48821039220063,63.20297663848448,64.99472629459474,0.2500066287750115,244.96077041848707,0.0935076160176464,87.90746737071231,158.78984,111.20077279952264,166068.62796364664,116298.11937157896,347.29515,223.97669321414065,362548.9609588253,233577.6935211737,352.69145,170.5443920498614,364787.1089868957,175251.69027602344,3503.81828,1578.19082373083,3619164.479119822,1605267.937428318,1166.82281,511.0475257507427,1203278.1199995817,517442.6678841032,1932.63274,816.9350770268941,1975372.3291883245,814810.2911307903,0.381,100000,0,721772,7548.573998347574,0,0.0,0,0.0,29501,307.8427476285598,0,0.0,32355,334.3233943754772,1618235,0,58031,0,0,6122,0,0,61,0.6379618687053558,0,0.0,1,0.0104583912902517,0,0.0,0.06102,0.1601574803149606,0.3213700426089806,0.01961,0.3350070610387572,0.6649929389612428,24.726558641571053,4.48672258346575,0.3159095623314665,0.2217382285832815,0.2223605061190624,0.2399917029661895,11.01560587304907,5.4643018246376815,21.0675576693458,12390.247364995765,54.25261068775917,12.756843263733192,17.000000171125407,11.830660896935786,12.665106355964769,0.547396805641983,0.7680074836295603,0.6848325673013789,0.5960820895522388,0.1175453759723422,0.7169206094627105,0.9194805194805196,0.856020942408377,0.7366255144032922,0.1434599156118143,0.4882484611080022,0.6827485380116959,0.6275197195442594,0.5548854041013269,0.1108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190023608563,0.0046445122755067,0.0068928411905632,0.0089315653101661,0.011260986328125,0.0136178447749032,0.0158505115206903,0.0179180713045254,0.0198934244305571,0.0221712459933025,0.0242158813514123,0.0265131281587705,0.0285587893377776,0.0304991138770968,0.0323709445998534,0.0341732755679174,0.0360166198671654,0.0380725943768428,0.0401752268375926,0.0423172805123551,0.0568250716062804,0.07124148768989,0.08445793381573,0.0975250286869282,0.1095300426466241,0.1248411555404947,0.1379401922770489,0.1500634145821565,0.1620360959849368,0.1723426656066694,0.1848802960501472,0.1972209577073985,0.2089194460485742,0.2200335243270484,0.2297000892788255,0.2400008878235006,0.2497988197424892,0.2588899405083829,0.2673544047808402,0.2748282466824943,0.2826655859194071,0.2900002340221385,0.2962200044985853,0.3019845314467294,0.3076474660254308,0.3133449172489432,0.3184946075119486,0.3241297740019586,0.3284629023282299,0.3324227668025918,0.3312100195273045,0.3309487123046445,0.3297768882750067,0.3296495060103282,0.3287383699292892,0.3267692968857919,0.3251448067920336,0.3252841377038379,0.3256915368247649,0.3259261912009598,0.3264097180563887,0.3273283346487766,0.327851381284741,0.329009354975552,0.3300656727865395,0.3302119270576639,0.3307986948503333,0.3339787028073572,0.3387653976340859,0.3418141592920354,0.3432383536861149,0.3462596550629563,0.3494790022102936,0.3491821985545835,0.3489529533289511,0.3497666626779945,0.3536737235367372,0.3575087072321246,0.3580520199225235,0.3617520531873289,0.0,2.7027896308346278,54.25303631920599,175.37803189494224,273.49597773331425,fqhc4_80Compliance_implementation,10 -100000,95635,44569,421.0383227897736,6272,64.24426203795682,4951,51.07962566006169,1979,20.19135253829665,77.29129418892526,79.6915965384479,63.29829466637945,65.07029215856903,77.03367128696249,79.43711556798385,63.20237858888071,64.9779945701108,0.257622901962776,254.48097046404428,0.0959160774987353,92.2975884582371,159.68062,111.81650024342753,166968.80849061537,116920.0609017907,351.62776,227.38336634237345,366991.5093846395,237086.23422205137,358.98321,173.9790779108312,371224.29027029854,178587.17485158786,3541.01867,1619.6696711484856,3657382.1927118734,1649072.282711203,1170.47079,525.1159456096121,1205147.9061013227,530350.3365640667,1942.57494,828.6470935778041,1985698.3949390915,829557.7652407294,0.38188,100000,0,725821,7589.49129502797,0,0.0,0,0.0,29922,312.1555915721232,0,0.0,32967,340.64934385946566,1608791,0,57772,0,0,6169,0,0,62,0.6378417943221624,0,0.0,0,0.0,0,0.0,0.06272,0.1642400754163611,0.3155293367346938,0.01979,0.3413929440389294,0.6586070559610706,24.46310915193089,4.458189112610028,0.3156937992324783,0.2357099575843264,0.2191476469400121,0.2294485962431832,11.221723718908756,5.71986454445645,21.330145401829714,12419.773435116991,56.18798629908515,13.970444214411064,17.677366177962444,11.9565341390063,12.58364176770534,0.5548374065845284,0.7694944301628106,0.6986564299424184,0.5824884792626728,0.1100352112676056,0.7151335311572701,0.9097560975609756,0.8838862559241706,0.763265306122449,0.1143911439114391,0.4948653899528171,0.6935270805812418,0.6301489921121823,0.5297619047619048,0.1086705202312138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.004775423299199,0.0073586878190879,0.009694136774718,0.0120257607667185,0.0142587971686102,0.0165793176580949,0.0185839442890109,0.020509569769344,0.0227100526283455,0.0249097546968578,0.0271244582297722,0.0291031417813715,0.0310880295114738,0.0332304452404794,0.0354442686193593,0.0375563500699518,0.0396615272802782,0.0417945543266779,0.0440675138916399,0.0583735657407988,0.0729645651559112,0.0862470862470862,0.0990969181542607,0.1106174142480211,0.1261246004360803,0.1384376924220226,0.1504111807064638,0.1619801133326205,0.1723945416089584,0.1860106532099803,0.1983042404816563,0.2094939533466131,0.2203961415072647,0.2302358906525573,0.2405572995818034,0.2498491451558833,0.2594894661577092,0.2683367211364849,0.2761209426004034,0.2832993701370878,0.2902448158030239,0.2963665012024784,0.3019363662539591,0.3070502056411379,0.3129599446831629,0.3174031902086677,0.3220693436707004,0.3266018611049824,0.3312808858116857,0.331001105449055,0.3305209755021575,0.3286735010872942,0.3278291979895421,0.3280344452555832,0.3265296712417195,0.3246217113097601,0.3249563297188623,0.3249755612341148,0.3248610862161677,0.3255634571245814,0.3265411503018748,0.3272302544352548,0.3270029407143017,0.328573148705599,0.3291644908616188,0.3293970349714025,0.3336478284114854,0.3377350517642087,0.3401897472693932,0.3431882471028378,0.3480014862784649,0.3511513157894737,0.3531578543473256,0.3543822998765549,0.3549590755897929,0.356160100062539,0.3568889818105791,0.3544375353306953,0.3547008547008547,0.0,2.6369450510536536,58.85157811203492,179.87828948986726,274.6183307036244,fqhc4_80Compliance_implementation,11 -100000,95640,44439,420.4621497281472,6093,62.59933082392305,4770,49.37264742785445,1872,19.24926808866583,77.27514686010801,79.68598171342151,63.27600815666828,65.05623506743297,77.04426232875146,79.45615968815463,63.19057344059477,64.97362551847415,0.2308845313565513,229.8220252668841,0.0854347160735145,82.60954895881412,158.19936,110.75479136808129,165411.2923462986,115803.83873701516,348.51444,225.3939702400905,363899.6131325805,235166.37415316867,359.95378,174.01855554286814,373240.0250941029,179548.93896007878,3409.98748,1541.74670416634,3532102.164366374,1578692.737522314,1122.77079,497.1574321885926,1160439.9937264742,506324.2486203766,1840.25678,765.8428352703718,1893942.199916353,774578.7859498735,0.37974,100000,0,719088,7518.695106649937,0,0.0,0,0.0,29642,309.4102885821832,0,0.0,32823,340.077373483898,1615500,0,58037,0,0,6230,0,0,75,0.7841907151819323,0,0.0,0,0.0,0,0.0,0.06093,0.1604518881339864,0.3072378138847858,0.01872,0.334378429220881,0.665621570779119,24.63195723423185,4.344182647658824,0.3153039832285115,0.2358490566037736,0.2234800838574423,0.2253668763102725,10.835750203966418,5.480675249992851,19.75554097175113,12325.425610576636,54.01060056439055,13.49005818856842,17.11858268289949,11.72148785100648,11.680471841916155,0.560377358490566,0.7884444444444444,0.6968085106382979,0.5684803001876173,0.1227906976744186,0.7208201892744479,0.9004739336492891,0.8354114713216958,0.7318181818181818,0.1688888888888889,0.5022844089091948,0.7211948790896159,0.6464188576609248,0.5260047281323877,0.1105882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0046826064482126,0.0068489675815534,0.0091010665312341,0.0113406360927186,0.0136874694476128,0.0161520577558428,0.018274443344121,0.0204267326429002,0.0227514744429882,0.0249866655725598,0.0269876002917578,0.0293019188229847,0.0315109159502752,0.033334021768314,0.0351737479697505,0.0370976937030318,0.0393515152774027,0.0413141435900637,0.0431753712664775,0.0586974926053283,0.0724270176247459,0.0854570666218459,0.0984988148538319,0.1109104160725037,0.1259875876384741,0.1388009266146685,0.1501652275876772,0.1616617794995826,0.1724790164322024,0.1847721654270076,0.1977206926838789,0.2096095572365983,0.2193466317209312,0.2292361003818394,0.2396218660090423,0.2490933918338108,0.2571347965919991,0.2659799681311177,0.2738506770181342,0.2807707477784738,0.2878871389537134,0.2939278554737079,0.3000564422187796,0.3055954263471597,0.3104316280447176,0.3138594621701247,0.3178871212217707,0.3222524977293369,0.3264628890240355,0.3268722348116974,0.3262406460592864,0.3260584528190162,0.3247310895211658,0.3243142848652343,0.32269427512482,0.3205233680346802,0.321197105681986,0.3225658062867365,0.322866760468057,0.3228778487294245,0.3232576505429417,0.3238896915635404,0.325256499094709,0.3264359528959384,0.3279683308591817,0.3296243597040409,0.3316573439758657,0.3343283582089552,0.338057805304113,0.3385454545454545,0.3427142629142948,0.3465626768979181,0.3489764973464746,0.3527474595408355,0.3532148395562448,0.3573957211020471,0.3574780657008773,0.3630590833793484,0.3609831029185867,0.0,1.905043420623053,56.0986137579801,176.0931126710712,264.6087631233179,fqhc4_80Compliance_implementation,12 -100000,95686,44263,418.4206676002759,6169,63.34259975335994,4806,49.64153585686516,1866,19.17730911523107,77.28391542799022,79.68217673982574,63.28504443165552,65.05973515675142,77.05617446958578,79.45457744951318,63.20042624475303,64.97722686656033,0.2277409584044392,227.5992903125541,0.0846181869024889,82.50829019108608,159.6463,111.81577966826538,166843.48807558056,116856.57684069476,347.25859,224.28996330849904,362320.5484605898,233816.97887984835,360.47523,174.64326133203852,372864.0448968501,179538.9974834401,3403.55886,1545.723772746553,3518681.792529733,1577869.448533959,1093.17322,487.75753023539136,1128800.2842631105,496089.4490681928,1823.36348,765.547113599734,1874844.6167673436,773571.5009869986,0.37948,100000,0,725665,7583.794912526388,0,0.0,0,0.0,29605,308.78080387935535,0,0.0,33003,341.1157327090692,1612366,0,57882,0,0,6204,0,0,57,0.5956984302823819,0,0.0,0,0.0,0,0.0,0.06169,0.1625645620322546,0.3024801426487275,0.01866,0.326775284352905,0.673224715647095,24.67751309481184,4.274278133903421,0.3208489388264669,0.2434456928838951,0.2188930503537245,0.2168123179359134,11.24775172113792,5.895698906183735,19.779010288014398,12365.486177963536,54.28494761007907,13.960312296757412,17.397260968797433,11.47704201359749,11.450332330926736,0.5628381190178943,0.7923076923076923,0.6867704280155642,0.5903041825095057,0.0940499040307101,0.7406523468575974,0.9392523364485982,0.8629441624365483,0.7330316742081447,0.1261682242990654,0.4998591152437306,0.7075471698113207,0.6263066202090593,0.5523465703971119,0.0857487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022192497111935,0.004635264524505,0.0068022376316029,0.0091970610054775,0.0115482840369138,0.014037160785592,0.016166046203274,0.01841524696654,0.0205164919457939,0.0228646356204798,0.0249399839957321,0.0271361637417286,0.0292032393163272,0.0311749610957097,0.033392858986137,0.0355022854660903,0.037674852346907,0.039651235208636,0.0413563553151653,0.0433038040646169,0.0584659096844282,0.0723842626520655,0.0860531010599223,0.0989572921160341,0.1113550021105952,0.1267648864333947,0.1388225301268779,0.1500026622650551,0.1615858220920538,0.1720777478454058,0.1847057555507652,0.1968628470529611,0.2083714447493357,0.2189659515282934,0.2291643705777327,0.2393321788552906,0.2495276426854491,0.2584498867337623,0.2671015695143711,0.2742697840901268,0.2814757272548087,0.2890126641651032,0.2955748012812907,0.3010987691383969,0.3067830448226328,0.3125910381434391,0.317416152804933,0.3219706616411144,0.3267030361146026,0.3301447401406499,0.329378333243549,0.3288670004952402,0.3279479854201556,0.3272582972582972,0.3268041849958388,0.3242940969189992,0.3216825301300223,0.3217297155418485,0.3221787356223616,0.32323358642251,0.3239021459549781,0.3243023463376902,0.3245560447431063,0.3241390162755148,0.3239242101182399,0.3244977605489929,0.3265247903235009,0.3304761604638704,0.3332281587435142,0.3352987732489118,0.3376351904026174,0.3404187817258883,0.344197930948523,0.347601586470104,0.3506337311499676,0.3530031612223393,0.3556263269639065,0.356266344799839,0.355979011322839,0.3564356435643564,0.0,2.236543905580876,54.88964720612077,175.8273107263385,272.7156703765322,fqhc4_80Compliance_implementation,13 -100000,95665,44689,422.0038676631997,6139,62.77112841687137,4829,49.986933570271255,1899,19.54737887419641,77.35161970545354,79.75867236460752,63.31721993396855,65.09477633813928,77.11448285819473,79.5201810049384,63.22936321759615,65.00829275931792,0.2371368472588102,238.49135966912627,0.0878567163724,86.48357882135826,159.8465,111.9346899673836,167089.84477081485,117006.94085337751,348.88921,225.4061762375023,364216.1919197199,235137.60125176643,366.25641,176.92278854781824,380210.17090890085,182828.024752482,3448.93309,1575.5096602613753,3573672.774787017,1615356.3270384923,1177.31362,522.5931267954652,1217192.452830189,532803.7075162962,1854.48194,779.9604238075499,1911042.8056237916,792227.9138507164,0.38193,100000,0,726575,7594.992944127946,0,0.0,0,0.0,29659,309.5175874144149,0,0.0,33561,348.08968797365804,1612351,0,57806,0,0,6300,0,0,54,0.5644697642816077,0,0.0,1,0.0104531437829927,0,0.0,0.06139,0.1607362605713088,0.3093337677146115,0.01899,0.3310409502969678,0.6689590497030322,24.41540052160565,4.384280180022636,0.3222199213087596,0.2362808034789811,0.2195071443363015,0.2219921308759577,11.490441186456575,6.115541476278277,20.22926156344177,12392.68071665225,54.841325349088514,13.739809665697669,17.476751709641924,11.848971508041998,11.775792465706928,0.5754814661420584,0.7992988606485539,0.6998714652956298,0.5952830188679246,0.1371268656716417,0.7486712224753227,0.9145496535796768,0.8813131313131313,0.7845528455284553,0.1983471074380165,0.5105353075170843,0.7288135593220338,0.6379310344827587,0.538083538083538,0.1192771084337349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025531656214222,0.0046950261116463,0.0067793857957659,0.0089917093391855,0.0112705856025389,0.0139132206151965,0.0163870901952786,0.0186457812133032,0.0206952965235173,0.0229130390248898,0.0250220571639616,0.027231436381199,0.0292567970856401,0.0315157888225651,0.0335488668994153,0.0355280582684985,0.0377057335931346,0.0402267230013806,0.0421244277985851,0.0442607054603843,0.0592021398867364,0.0727994220439958,0.085636315927578,0.0987825794164378,0.1110747604373337,0.1256958997481001,0.1379822903616248,0.1498369252414146,0.1610321807600137,0.1711266698165886,0.1840876494883159,0.1965181405527208,0.208545147771186,0.21964381492387,0.2298661967953306,0.2393184186603401,0.2494832690911122,0.2580151296829971,0.2667430984380675,0.2754557530230854,0.2830225779587304,0.2890688921616757,0.2960036899932586,0.302205829521232,0.3071461514187926,0.3125130793377239,0.3166618784116317,0.3213872979185451,0.3263784817322102,0.3305644779105892,0.3303663865546218,0.329212850412735,0.3282263397065237,0.3264204586454229,0.3256007242827671,0.3241610327633148,0.3228228228228228,0.3231695315575383,0.3237493597404814,0.3250459583430009,0.3266751611452556,0.327463676563487,0.3277335567658148,0.3300665267669777,0.3313193795104174,0.3334371674064844,0.3335225982284805,0.3359869616999937,0.3388230357704815,0.3402151558297738,0.3412586777984482,0.3432953411418667,0.3462666084461356,0.3506836896577774,0.3548176476074993,0.3568381132969898,0.36029974002141,0.3619372990353697,0.3666125541125541,0.3537542024654464,0.0,1.850607043126516,58.28965549075336,178.45052116592242,263.6461887737806,fqhc4_80Compliance_implementation,14 -100000,95786,44484,420.3745850124235,6098,62.389075647798215,4834,49.84026893282943,1911,19.491366170421564,77.3507064425629,79.67741578776678,63.34838135415546,65.06942659411149,77.10813902849868,79.43922848510834,63.25753347514345,64.98310696394951,0.2425674140642115,238.1873026584316,0.0908478790120099,86.31963016198085,159.57766,111.78690495324848,166598.104107072,116704.84721488366,348.06896,224.89107139631813,362688.367819932,234091.40312396188,359.14294,174.02859363756642,371013.7389597645,178591.93463478802,3422.19346,1561.1520144845215,3531337.763347462,1588647.8826938844,1112.0835,494.4145560956045,1145586.6723738334,500770.0983718891,1865.67012,792.7174233532505,1905819.681373061,791881.8390332769,0.38161,100000,0,725353,7572.641095776001,0,0.0,0,0.0,29658,308.9699956152256,0,0.0,32941,340.08101392687865,1616840,0,58016,0,0,6381,0,0,62,0.6159564028146075,0,0.0,2,0.0208798780615121,0,0.0,0.06098,0.1597966510311574,0.3133814365365693,0.01911,0.3250233717669056,0.6749766282330945,24.34298587431832,4.407643058316823,0.3295407529995862,0.2372776168804302,0.2161770790235829,0.2170045510964005,10.979039308513096,5.568340314608908,20.61669417493689,12397.720627219787,55.083814497836265,13.772830004980214,18.153241057417112,11.733120296042914,11.42462313939602,0.5550268928423666,0.7855274629468177,0.6854990583804144,0.5521531100478468,0.107721639656816,0.7408513816280806,0.9370629370629372,0.8824884792626728,0.6792452830188679,0.1279620853080568,0.4838340486409156,0.6949860724233984,0.6117342536669542,0.5089743589743589,0.1026252983293556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349985819051,0.0044910786699107,0.0067683440388849,0.0090199902486591,0.0111741499918659,0.0134586213566534,0.0160307366189719,0.0180628833260197,0.0202540441664878,0.0223700368399508,0.0245916757177695,0.0266476497327026,0.0288474384666769,0.0310264249611397,0.032873774193881,0.0349903923634785,0.036981467876618,0.0391967821525574,0.0412092762413152,0.0431432973805855,0.0580071582857679,0.0714569522574708,0.0850673515383405,0.0977857645785386,0.1106321536223941,0.1263544012093151,0.1388167173929181,0.1510259248222723,0.1618340984306608,0.1726525406471389,0.1863947042678004,0.1986424997027766,0.2097685537324785,0.2203867584398557,0.2297585539625297,0.2401013375225409,0.2490778403075723,0.2578528737698288,0.2671200272016321,0.2749324911895281,0.2819982673982096,0.2888146521515675,0.2956755222256393,0.3022241918290594,0.3067521149668038,0.3122744793783328,0.3176805941039682,0.322647099965665,0.3272230636788483,0.3326216177032673,0.3316974789915966,0.3300876071020891,0.3291226587804534,0.3276699731050638,0.3265463840917873,0.3249555569177956,0.3232142290986335,0.323215696602581,0.3246015032444741,0.325913466700068,0.3268395419244438,0.3270783329696705,0.3280230649438108,0.3287726720374454,0.3295756288321344,0.3316227679740273,0.3323302668156936,0.3338398708329376,0.3362297340256437,0.3400397614314115,0.3426036044277742,0.3461167648634172,0.3531612657746211,0.3557382086341988,0.3586843841296767,0.3628686964795433,0.3661776061776062,0.3675954592363261,0.3743001119820828,0.3767441860465116,0.0,2.402571701913802,58.58558392057704,178.75407014679354,262.722678118478,fqhc4_80Compliance_implementation,15 -100000,95736,44270,418.49461017798944,6178,63.30951784072867,4849,50.07520681875157,1891,19.41798278599482,77.31652017658898,79.67671514628489,63.31665033110207,65.06216791538009,77.07844881437997,79.43964160852454,63.22838699287583,64.97673254141672,0.2380713622090127,237.07353776035237,0.0882633382262341,85.43537396336376,160.07178,112.1466252314252,167201.2409125094,117141.54051916228,351.42165,227.1394281628177,366497.4931060416,236688.5137024274,362.37248,175.4253791887934,374366.7899222863,180145.89837417472,3440.04016,1575.6466870314446,3554862.214840812,1608071.6079014926,1150.41389,514.1796444487879,1182902.6385058912,518519.6559580513,1849.6345,774.8505225317155,1899863.102699089,781724.3494089901,0.37942,100000,0,727599,7600.056405114064,0,0.0,0,0.0,29973,312.48433191276007,0,0.0,33227,342.9430935071446,1608702,0,57768,0,0,6354,0,0,71,0.7416227960223949,0,0.0,0,0.0,0,0.0,0.06178,0.1628274735122028,0.3060861120103593,0.01891,0.3318885448916409,0.6681114551083591,24.37398789281385,4.337754150560852,0.3299649412249948,0.2346875644462775,0.2206640544442153,0.2146834398845122,11.31330599523921,5.88255585894147,20.123934254700668,12325.854130817232,55.3063861339068,13.76641926235168,18.157764085695483,11.889986867296262,11.492215918563373,0.5597030315528975,0.7864674868189807,0.685,0.5654205607476636,0.1133525456292026,0.7351837959489872,0.9298642533936652,0.8534883720930233,0.7094017094017094,0.158590308370044,0.4931740614334471,0.6954022988505747,0.6230769230769231,0.5251196172248804,0.1007371007371007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183729905491,0.0047242019038736,0.007064196904339,0.0092158874991109,0.011688232421875,0.0142280976921353,0.0159913516159627,0.0181060629269936,0.0202145172339751,0.0222882006654722,0.0243622344352391,0.0266354516423826,0.0287823788908655,0.0308403612286717,0.03277048284114,0.0349430702787593,0.0368614460949226,0.0387527747235649,0.0408935458051371,0.0431838308068969,0.0572574077554344,0.0712835645968062,0.0840552048157392,0.0967884409110984,0.1090220806883607,0.1248294462954148,0.1368294856560855,0.1490392292542715,0.1606154503686291,0.1712228826470399,0.1847443203240296,0.1972317215704948,0.2084697284423225,0.2182241611178535,0.2286532005063569,0.2388283016358558,0.2490173746036,0.2583686834021581,0.2667287089159252,0.274229024423773,0.2813866839462174,0.2881340071121093,0.2939867424242424,0.3002961950330371,0.3065517786176974,0.3118184061189242,0.3162382460841148,0.3199913429833607,0.3246406836721481,0.3297028265145814,0.3292615587668853,0.3283082307872507,0.3268527538932892,0.3267960602549247,0.3270951508925514,0.3244516030065961,0.3232739491536169,0.3229682793132397,0.3227442513964565,0.3239964157706093,0.3242435632399925,0.3247455344766129,0.3252941176470588,0.3260021522733387,0.3275845457173138,0.3284169381107492,0.3287976037655113,0.3311965811965812,0.3329125021918289,0.3352380952380952,0.3380557580174927,0.3384853168469861,0.3406392117230924,0.3433300432768962,0.3449995295888606,0.3465665236051502,0.3470016956990905,0.3470504763835394,0.3418803418803419,0.3370441458733205,0.0,2.241468350162308,58.46710767130906,183.79047642425377,260.10569086302064,fqhc4_80Compliance_implementation,16 -100000,95688,44254,419.1643675277987,6234,63.96831368614664,4925,50.99908034445281,1901,19.55313100911295,77.40264542862671,79.78208738818718,63.35728834693722,65.11167561521765,77.1711205592491,79.55044158732794,63.27191937804015,65.02792981577916,0.2315248693776084,231.64580085924055,0.0853689688970646,83.74579943848914,159.2811,111.50453421624115,166458.57369785136,116529.06678808332,347.67128,224.3862418918684,362870.5584817323,234030.9325233833,359.62114,173.58580749939176,372215.4815650865,178619.8366375554,3496.43937,1592.2057280163576,3622558.753448708,1632675.8291627672,1170.06047,514.7817341221986,1210806.7573781456,526069.3448547986,1869.50342,778.6734794306202,1924779.3453724603,789679.4631896472,0.38086,100000,0,724005,7566.298804447789,0,0.0,0,0.0,29654,309.4013878438258,0,0.0,33034,341.79834462001503,1620768,0,58096,0,0,6330,0,0,56,0.5747847169969066,0,0.0,3,0.0313518936543767,0,0.0,0.06234,0.1636821929317859,0.3049406480590311,0.01901,0.3317550022911257,0.6682449977088742,24.66454344655964,4.280949384147051,0.313502538071066,0.2436548223350254,0.221725888324873,0.2211167512690355,11.111283363006937,5.739369133613639,20.124193372887778,12347.84171113454,55.79147216259023,14.3983598307754,17.43399988196805,12.18444464687833,11.774667802968454,0.5681218274111676,0.8075,0.6884715025906736,0.5915750915750916,0.1101928374655647,0.7450076804915514,0.94,0.8548812664907651,0.7607843137254902,0.1330275229357798,0.5045542368203146,0.728,0.6343347639484979,0.5400238948626045,0.1044776119402985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569401828842,0.0043074178803449,0.0063907486305538,0.0087037770533093,0.0108093267304583,0.0130134614992973,0.0151804010725172,0.0172278298853859,0.0193449491594706,0.0216034221621842,0.0240369831279854,0.0260245565045992,0.0281921839175003,0.0302271931450699,0.0321911660011762,0.0342101183401374,0.0363743670984375,0.038414444329148,0.0405070926411248,0.0425937698664971,0.0572338869737804,0.0718144696890377,0.0853314305501631,0.0982865076944114,0.1101185453931825,0.1256625371602678,0.1384747615156885,0.1496694945022193,0.1615271188613924,0.1720569627040127,0.185124162736103,0.1981906915843352,0.209482383645063,0.2192860657081944,0.2290727092729072,0.2387679635083368,0.2483053870852657,0.2576089521048906,0.2661976458326253,0.2740203757275004,0.2817223421821415,0.2885400863578014,0.2949692961738309,0.3010131457757682,0.3062914509499618,0.3123300481094582,0.3171097528966215,0.3212739759066733,0.3264409975590541,0.3311142394779428,0.3305988184747583,0.3293024021059559,0.3275194342323127,0.3265831894070236,0.3264381431850152,0.3247865858314371,0.3231743925174582,0.3242543003787941,0.3251068758196651,0.3251855939897812,0.3253280005980637,0.3260668724077605,0.3263236794436694,0.3285351962267509,0.3295705109768957,0.3314013930762033,0.3318643200363936,0.3332602842652307,0.3372565503713045,0.3412915231420992,0.3426516117282826,0.3429301261242084,0.3453686200378071,0.3468208092485549,0.3481823318892447,0.3502412616217488,0.3565097799511002,0.3610776035383997,0.3591491682574311,0.3558490566037736,0.0,1.7729134465897702,57.41352878180772,189.7367353920406,265.6055476869752,fqhc4_80Compliance_implementation,17 -100000,95744,44798,424.1936831550802,6134,63.06400401069519,4822,49.95613302139037,1846,18.95680147058824,77.33907921770925,79.70591599003278,63.32552877917672,65.07563499140585,77.10419702839006,79.47153883238389,63.23928257089175,64.99167512452978,0.2348821893191939,234.37715764889333,0.0862462082849688,83.95986687607149,158.28626,110.9256252980596,165322.38051470587,115856.47695736508,349.57037,226.16547209741407,364712.8384024064,235822.3618163165,366.07444,176.9191441316366,380169.5354278075,183018.02283472905,3463.82302,1570.669949209878,3590015.771223262,1612708.5031018944,1155.64116,512.3242570134552,1197631.1413770055,525717.5979836393,1813.27726,763.4418315247628,1864393.0063502677,772629.8939700996,0.38153,100000,0,719483,7514.653659759359,0,0.0,0,0.0,29792,310.745320855615,0,0.0,33535,348.0949197860963,1617255,0,58060,0,0,6249,0,0,57,0.5953375668449198,0,0.0,0,0.0,0,0.0,0.06134,0.1607737268366838,0.3009455493968047,0.01846,0.3405977584059775,0.6594022415940224,24.37328947386647,4.315160886099709,0.328494400663625,0.2258399004562422,0.2235586893405226,0.2221070095396101,10.934701876380036,5.535362298219967,19.83439634739344,12365.793127096757,54.79469962795381,13.083334200665158,17.94790424327334,11.942822304173198,11.820638879842104,0.5653255910410618,0.7878787878787878,0.7013888888888888,0.5862708719851577,0.1167133520074696,0.7349304482225657,0.9007444168734492,0.8819095477386935,0.7481481481481481,0.1569506726457399,0.5031179138321995,0.7215743440233237,0.6408094435075885,0.5321782178217822,0.1061320754716981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0044612077706128,0.0068714919358931,0.0090534059502519,0.0112305829933979,0.0135962276833453,0.015887421608117,0.0180297910136908,0.0201537863759995,0.0221635019152379,0.0242341575476632,0.026283084950135,0.0284677012948278,0.0304347826086956,0.0322883656595476,0.0342909143554424,0.0365589615555946,0.0385856761833598,0.0407121242057756,0.042746262436839,0.0579280389249692,0.071524232024776,0.084830883432238,0.0979074658254469,0.1108158552402644,0.125918874609974,0.1383257481726658,0.1509299379331637,0.1624353549600376,0.1727944726367625,0.1859888807481791,0.1983976614518486,0.2097923397404518,0.2200306312219669,0.2298538024571755,0.2397721100876755,0.249143099579086,0.2586932547095496,0.2663345098795837,0.2742460353836282,0.2811581456708403,0.2882840734979356,0.2954093940683979,0.3011026902769297,0.3069233662093144,0.3117488590653561,0.3172650640024976,0.3216747705315543,0.3265551320974097,0.3307284803120552,0.3301212267827863,0.3284616336463503,0.327913431868457,0.3272114647655131,0.3267095700251178,0.3250371414130584,0.322880390046223,0.323671021280092,0.3247042306572842,0.3262044527167299,0.327468487394958,0.3279875022246831,0.3276461229274828,0.3280735916202242,0.328563539890999,0.3294564566908646,0.3302932710120557,0.3332809306712781,0.3352049410443571,0.3387411030259653,0.340109639104614,0.3411142567170557,0.3429856798884805,0.3439344011035328,0.343418209151555,0.3480275665399239,0.3499690976514215,0.354924397221087,0.3404848147116188,0.3459915611814346,0.0,1.5701852789504578,57.621231251108505,181.3703517919254,263.18919954777004,fqhc4_80Compliance_implementation,18 -100000,95696,44101,417.4051162013041,6129,63.106085938806224,4819,49.87669286072563,1867,19.24845343588029,77.30793472821749,79.68316030267697,63.31631099018998,65.06974186009978,77.07691138150815,79.45008797656115,63.23157170205396,64.98619221017344,0.2310233467093354,233.07232611581696,0.0847392881360278,83.54964992633995,159.15988,111.48857648981377,166318.21601738842,116502.85956551346,345.87769,223.5085847983561,360935.6608426685,233062.91255471087,358.65465,172.6839717771094,371197.4795184752,177822.00148184848,3422.38541,1552.9350292031197,3541833.430864404,1588303.1048352283,1138.90986,501.0478121601422,1178814.2660090283,512302.450223474,1838.82524,763.3888640334525,1895898.1775622808,776527.3746047788,0.37953,100000,0,723454,7559.918909881291,0,0.0,0,0.0,29515,307.91255642869083,0,0.0,32837,339.5544223374018,1617221,0,58079,0,0,6287,0,0,70,0.7314830295937135,0,0.0,0,0.0,0,0.0,0.06129,0.1614892103391036,0.3046173927231196,0.01867,0.3367915763394239,0.6632084236605761,24.606650197219757,4.310962568202913,0.3208134467731894,0.2492218302552396,0.2035692052293007,0.2263955177422701,11.079412463625776,5.673074146347172,19.868254381680543,12332.447253834016,54.91384197608192,14.398637819228988,17.716318587262244,10.84895205842557,11.94993351116512,0.5590371446358166,0.7893422148209825,0.6875808538163001,0.5759429153924567,0.1081576535288725,0.730098559514784,0.9322799097065464,0.8544152744630071,0.7288888888888889,0.1206896551724138,0.4945714285714285,0.7058047493403694,0.6255545696539485,0.5304232804232805,0.1047729918509895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363627159143,0.0042661424344371,0.0065125432394323,0.0088770618347282,0.0111667073468391,0.0134719563357908,0.0153460248187537,0.0175701888718734,0.0196282892719131,0.0218546232508624,0.0241422083713491,0.026253105813261,0.0283848408494883,0.0302880454938805,0.0323199801869853,0.034560115786209,0.0367208222811671,0.0388500711178479,0.0406853362183755,0.042554522330178,0.0573992249276633,0.0712282023906717,0.0846543638595423,0.0974096315850362,0.1099854519386873,0.1248757481547279,0.1372576059744558,0.1499031440917896,0.1613344300471088,0.1711999656784933,0.1832425214825662,0.1966512714568483,0.2080638323314237,0.2188213946065303,0.2284240511201786,0.2385814911620077,0.2482149232416994,0.2573003374578178,0.2659132684321601,0.2738028427116858,0.2810405306845414,0.2877010351482543,0.2944984967923679,0.3005482179916268,0.3063768715260463,0.3105035225604264,0.3154107485363988,0.3201132061039507,0.3246038646716067,0.3279395045080775,0.3280346236298184,0.3276808117572449,0.3269917437019264,0.3264200677808997,0.3265072083879423,0.3252803215069103,0.3239302543273731,0.3245237036671112,0.3259166566672952,0.3268428870554969,0.3273413727037079,0.3276002140012285,0.3277794099131237,0.328805746380541,0.3304341540982026,0.3320688572624529,0.3330285453038832,0.3357311878845244,0.3382093138294113,0.3430038204393505,0.3462189487167757,0.3495388880004265,0.3533582325758055,0.3529907329401853,0.359240721503447,0.3633879781420765,0.3642846305568199,0.3607937462417318,0.3665499596014004,0.3587729143284698,0.0,1.778524097200043,58.54956417904874,180.24541494079105,261.3379449111165,fqhc4_80Compliance_implementation,19 -100000,95697,44084,417.4634523548282,6249,64.04589485563811,4954,51.08833087766597,1974,20.16782135281148,77.38171245272493,79.75638155275098,63.34258245905804,65.09524721751556,77.13330441930388,79.51155774741024,63.24984696121932,65.00702719622613,0.2484080334210432,244.8238053407437,0.0927354978387242,88.2200212894304,158.4561,110.96433376830414,165580.59291304846,115953.40081950751,346.54736,223.48194604013327,361381.9555471959,232783.7575497385,358.74943,173.55430524256633,370855.14697430434,178225.8458879518,3545.32588,1624.1940499440193,3657653.709102688,1650242.4274439637,1172.09505,522.4314166859269,1209303.248795678,530433.1635229812,1933.02248,815.5536345088133,1976074.380597093,814026.1724618297,0.37841,100000,0,720255,7526.390586956749,0,0.0,0,0.0,29443,306.96887049750774,0,0.0,32846,339.2791832554834,1623488,0,58258,0,0,6188,0,0,69,0.7001264407452689,0,0.0,0,0.0,0,0.0,0.06249,0.1651383420099891,0.3158905424867979,0.01974,0.3317586101798232,0.6682413898201768,24.60075989709365,4.334452004407698,0.3116673395236173,0.2408155026241421,0.2246669358094469,0.2228502220427937,11.215810601841032,5.82470403672915,21.073490922432693,12260.748711752663,56.15863503230175,14.140831409520285,17.44617144015552,12.535856236932853,12.035775945693096,0.5565199838514332,0.7493713327745181,0.7176165803108808,0.5651392632524708,0.1141304347826086,0.7246484085862325,0.8995215311004785,0.8476658476658476,0.7184466019417476,0.1658986175115207,0.4934776575076325,0.6683870967741935,0.6710642040457344,0.5062189054726368,0.1014656144306651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686760654675,0.0044501211365548,0.0069001907699801,0.0089287528188042,0.0112191549524991,0.0136048879837067,0.0158654091256691,0.0176405733186328,0.0197295114645839,0.0221414679086907,0.0243074778044329,0.0262628336755646,0.0281160016454134,0.0303673334844145,0.0323213143175579,0.0344706368899917,0.036560609826829,0.0386443351389494,0.0404996411819155,0.0424157157000677,0.0576820645646429,0.0716731053110964,0.0842225649742411,0.0968576748687629,0.108886662095881,0.1236450545150749,0.1364441756586137,0.1481315873522836,0.1586706406435278,0.1687048121688013,0.1821610612412039,0.1944288065130781,0.2056037155070209,0.2158997737037158,0.2261467385326146,0.2357728077945084,0.2458478801601731,0.2556075502261018,0.2638367383980125,0.2717632778324897,0.2786346543245588,0.2855672995977925,0.2920671369726812,0.2981181829078269,0.3037530222216822,0.3099355379438699,0.3154688184149621,0.3198228015683079,0.3238440616500453,0.3276210076384216,0.3277049753787369,0.3272327562517175,0.3266394596115958,0.3253858358574931,0.3245205844867957,0.3222047436504421,0.3206736389775348,0.3218149972991111,0.3222874648966045,0.3237974863816,0.324776097077576,0.3268160833366215,0.3282015979306172,0.3290825994872366,0.3305035971223021,0.3318378672752262,0.332822521141949,0.3360955627130304,0.3389735896451872,0.3426119963623423,0.3444348654657652,0.3477130425554494,0.352289979757085,0.3546045089797478,0.3563164330730881,0.3537455410225921,0.3602703948379167,0.3603843008994276,0.3598770606314613,0.3584018801410106,0.0,2.609794844198609,58.999959380512415,181.7310049449733,271.0545434432772,fqhc4_80Compliance_implementation,20 -100000,95874,44472,420.0408869975176,6222,63.85464255168242,4889,50.57679871498008,1966,20.20360055906711,77.44506122741345,79.72248933061816,63.40474875222951,65.08390930981156,77.2014453393216,79.47827115755224,63.31498547079477,64.99615248951714,0.2436158880918526,244.2181730659172,0.0897632814347346,87.75682029441612,158.62924,111.11333903052122,165455.4936687736,115894.72185422666,347.15889,223.82790081355307,361664.9978096251,233029.01159047545,357.3985,172.1664719039987,370420.03045664105,177702.8133386683,3517.07988,1601.3159960605617,3636987.9842293006,1639025.75733492,1165.79308,517.5573338145078,1201224.1379310344,525314.472109967,1927.2153,807.2842288595937,1981127.47981726,816098.4437203375,0.38078,100000,0,721042,7520.704257671528,0,0.0,0,0.0,29612,308.404781275424,0,0.0,32708,338.8822829964328,1625083,0,58360,0,0,6238,0,0,47,0.4797963994409329,0,0.0,1,0.0104303565095854,0,0.0,0.06222,0.1634014391512159,0.3159755705560912,0.01966,0.3353238401469913,0.6646761598530088,24.400471877017345,4.408469417984557,0.3176518715483739,0.2315401922683575,0.2227449376150542,0.2280629985682143,11.087831796830306,5.64038501967231,20.940082920820814,12339.689268579048,55.34277170451162,13.431439791786977,17.49222651529535,12.097926091168404,12.321179306260882,0.5536919615463285,0.773851590106007,0.6947842884739215,0.5702479338842975,0.1174887892376681,0.7107692307692308,0.9226932668329176,0.8693467336683417,0.676923076923077,0.1327800829875518,0.4967957648370019,0.6922024623803009,0.6346320346320347,0.5367913148371531,0.1132723112128146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024291989716391,0.0046596906370607,0.0067529886537623,0.00893183386789,0.0112077549942081,0.0133074238740067,0.015379287867677,0.0175594236593349,0.0196877329493816,0.0217382413087934,0.0240013925722652,0.0261932599019547,0.0281206992173859,0.0302612631145854,0.0326282929643633,0.034804508484373,0.0369910753989182,0.0389708625191694,0.0409957748087244,0.0430855989428889,0.057586437002127,0.0717471924784539,0.0847022856006114,0.0972738147705093,0.1096580746975276,0.1245448692917374,0.1368747617635847,0.1490283990098063,0.1602759591392804,0.1701590291303696,0.1833207952713594,0.1965683680851753,0.2078552275909984,0.218955390091054,0.229117469383272,0.2395587861086218,0.2494064670017945,0.2581935440378414,0.2665865629852979,0.2744705438152882,0.2816872094905533,0.2884970652199331,0.2954335738790962,0.3009420524054057,0.3060857957648201,0.3116104407781335,0.3166520595968449,0.3214122079112151,0.3256546130624619,0.3301356486857384,0.3296000646142663,0.3288569386408621,0.3279253187869926,0.3265811842673966,0.3261735819989038,0.3239782681683607,0.3217068938318346,0.3223385118560916,0.3233496228439101,0.3247582136253733,0.3252046193519453,0.325609852372306,0.3263111650383883,0.327681220856295,0.329607062323082,0.3308737561381173,0.332397402081738,0.3354715564177983,0.3377093707559981,0.34298925071135,0.3452310493967676,0.3478584729981378,0.350267548001259,0.352846525170485,0.3533756273080201,0.356246264196055,0.3576076851564921,0.3554216867469879,0.3692911179602129,0.3711137347500984,0.0,1.5255814046816971,57.72946305209325,182.101221171345,269.7267900296838,fqhc4_80Compliance_implementation,21 -100000,95690,44441,419.9289371930191,6017,61.55293134078797,4755,49.17964259588254,1835,18.85254467551468,77.29747507811412,79.70068116954569,63.28577397120039,65.06568197478164,77.0700204178956,79.47442600637476,63.200889194635245,64.984318737512,0.2274546602185125,226.2551631709329,0.084884776565147,81.36323726964179,159.7563,111.89866939697497,166951.46828299717,116938.3024463528,345.9454,223.21204413408915,360974.5218936148,232724.52112902957,354.89189,171.14415906332326,367858.2715017243,176646.25594593,3370.77885,1533.8772833523676,3483990.124359912,1565151.6571270144,1122.60388,493.8780165939865,1159468.199393876,502444.37581875286,1793.89082,751.4973826881812,1842508.3498798204,755907.0395901432,0.38131,100000,0,726165,7588.703103772599,0,0.0,0,0.0,29470,307.3884418434528,0,0.0,32620,337.8722959556903,1612591,0,57874,0,0,6191,0,0,50,0.5225206395652628,0,0.0,2,0.0209008255826105,0,0.0,0.06017,0.1577981170176496,0.3049692537809539,0.01835,0.3280927425758297,0.6719072574241702,24.7988267206874,4.333599361013431,0.3249211356466877,0.2351209253417455,0.2262881177707676,0.2136698212407991,11.275863720575082,5.907145962550111,19.438110224188303,12390.696948263409,53.6644903023299,13.42060285119479,17.28978109091105,11.787718909558969,11.166387450665075,0.5623554153522607,0.7701252236135957,0.6731391585760518,0.5920074349442379,0.1338582677165354,0.724960254372019,0.9051094890510948,0.8575197889182058,0.7520325203252033,0.1351351351351351,0.5038604518158422,0.6916548797736917,0.6132075471698113,0.5445783132530121,0.1335012594458438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023105922412744,0.0047166940539224,0.0070968069445149,0.0096026826542018,0.0116475423177083,0.0138117889118632,0.0161765755841824,0.0183719529008077,0.0207003763704794,0.0228880992124855,0.0249253777271748,0.0271625231148551,0.02928013662692,0.0312963726298433,0.033381517811048,0.0355110991579949,0.0374278340364224,0.0392822653499891,0.0413350395871698,0.0434923083336807,0.0582397492817968,0.0719422954114802,0.0852099817407182,0.0977403269582781,0.1099097008312587,0.1250740584003385,0.1374694830697378,0.1493886853540086,0.1607729075996877,0.1712224345622812,0.1851604205985441,0.1965358017732879,0.2080732825757823,0.2181162834010758,0.2281906567605106,0.238341968911917,0.2483821573470733,0.2580314499414256,0.266855240886526,0.2745358698143479,0.2814154166907974,0.2888188939498612,0.2950072238933232,0.3014448231171698,0.3080366374329469,0.3135658053848622,0.3186477207227526,0.3227755330945613,0.3268906254056439,0.3318830421730563,0.3309488459981104,0.3296077051510259,0.3290516766289372,0.3285768094106739,0.3285202313857867,0.3269808199031803,0.325461102850454,0.3251175824716081,0.325248258359025,0.3262610800612295,0.3269643423581438,0.3296219065979462,0.3298409650624034,0.3307207588341386,0.330962303012885,0.3331949130547625,0.3321882807176924,0.3366231162076636,0.3391295220768315,0.340106740462542,0.3422258518216052,0.3456600982619261,0.3486537257357545,0.3487334593572779,0.3495881692250093,0.3525943396226415,0.3535369034831978,0.3529649868447683,0.3586926668497665,0.3574990410433448,0.0,1.8670535085296325,55.341273945837074,176.3955067160727,262.7952141174646,fqhc4_80Compliance_implementation,22 -100000,95827,44729,422.9079486992184,6228,63.69812265854091,4880,50.31984722468616,1965,20.07784862303944,77.32864418348662,79.63866665327524,63.32870225298407,65.03815701136031,77.08701144398809,79.40183251139226,63.23836585796391,64.95312516993944,0.2416327394985273,236.83414188298,0.0903363950201523,85.0318414208715,159.5363,111.82840716537378,166483.6632681812,116698.22405519716,351.30156,226.9370451254868,366018.3664311729,236238.12195465455,362.01858,175.24782157516725,374652.9892410281,180417.00821188837,3511.19544,1591.2592104795706,3624831.926283824,1621287.8003898389,1190.71515,523.2320090874606,1226915.2222233815,530374.4132029985,1921.1699,798.8262218043787,1965672.0757197868,798219.7162082131,0.38355,100000,0,725165,7567.439239462782,0,0.0,0,0.0,29899,311.3840566854853,0,0.0,33274,344.04708485082494,1610113,0,57842,0,0,6311,0,0,62,0.6469992799524142,0,0.0,0,0.0,0,0.0,0.06228,0.1623777864685178,0.3155105973025048,0.01965,0.3305683563748079,0.669431643625192,24.37316653257662,4.367239998835505,0.3110655737704918,0.2420081967213114,0.2215163934426229,0.2254098360655737,11.313151070795824,5.930243672465158,20.67670688590074,12445.283853687835,55.26301063967457,14.246985821498749,17.140246877093762,11.973517502306184,11.90226043877588,0.5661885245901639,0.7984758679085521,0.7114624505928854,0.5541165587419057,0.1281818181818181,0.7364341085271318,0.9049773755656108,0.8578680203045685,0.7208333333333333,0.1822429906542056,0.5050139275766017,0.7347767253044655,0.6601423487544484,0.5065398335315101,0.1151241534988713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079303185293,0.0047844949924988,0.006868563891848,0.0090098326019827,0.0113382143583485,0.0133984931785787,0.015839363979207,0.0179411554593976,0.0201933492754511,0.0224607576284714,0.0246111600647554,0.0263946471819711,0.0285696668242451,0.0306471205913236,0.0327513844059686,0.0347830578512396,0.0367369325178769,0.0389743696084936,0.0409776466677746,0.0429044278368757,0.0577460675094922,0.0716429146495749,0.0851458580098741,0.0975345748034806,0.1098356681318449,0.1258681381409951,0.1391896334156919,0.1516499420046183,0.1630887536046139,0.1736468519471607,0.1864129322692858,0.1985608396905264,0.2098440524610131,0.2208800218638972,0.2305982548607519,0.2408154221138932,0.2508822872459236,0.2603069854390252,0.2699559311253464,0.2777669446324314,0.2844884564987998,0.2913656408331769,0.2982451974449694,0.3036823451672974,0.309276343012925,0.3136645196317958,0.3180188537331394,0.3227105853559045,0.3280384141197845,0.3317329312488427,0.3317058696590418,0.330657508172301,0.3302250667570889,0.3296602920067855,0.3288703552014297,0.3277651538414297,0.3261718130176764,0.3264893477117306,0.3263765541740674,0.3277875853706378,0.328719399127161,0.3296373159403103,0.3294833971502103,0.3310106085985483,0.3308650286098956,0.3324192326777925,0.3329061289587605,0.3357840826970811,0.3383403361344538,0.3405088837006846,0.3446816257794365,0.3471904736590293,0.3497126255289585,0.3520036778790897,0.3543537865179162,0.356062424969988,0.3595574677320221,0.3615980432123929,0.3670256835128417,0.3644133644133644,0.0,2.353592005807136,56.337800718014655,183.13218564841767,269.3804293230769,fqhc4_80Compliance_implementation,23 -100000,95750,44347,419.15404699738906,6119,62.83028720626632,4779,49.36814621409922,1853,19.01827676240209,77.35098256499538,79.6994527627462,63.33757887846742,65.07081822739256,77.11426494567618,79.46252781519445,63.249295305249824,64.98488485218424,0.2367176193191937,236.9249475517563,0.0882835732175948,85.93337520832733,159.5187,111.73803810744624,166599.1644908616,116697.68992944776,348.20697,224.6856161975069,363115.1122715405,234114.41268495817,359.4758,173.69825945830542,372079.6971279373,178757.97835550187,3381.69221,1542.324622048533,3498151.53002611,1577556.2486382008,1098.6801,483.9801709813698,1136241.9425587468,494257.68248707015,1815.68882,770.2563975879311,1865428.7415143603,777742.2935630243,0.37989,100000,0,725085,7572.689295039165,0,0.0,0,0.0,29673,309.3368146214099,0,0.0,32849,339.7284595300261,1615574,0,57950,0,0,6413,0,0,71,0.741514360313316,0,0.0,0,0.0,0,0.0,0.06119,0.1610729421674695,0.3028272593561039,0.01853,0.3439639079029247,0.6560360920970753,24.67507054178851,4.327898033996585,0.3241263862732789,0.2452395898723582,0.2090395480225988,0.2215944758317639,11.29513024521198,5.881648645648051,19.818928648235715,12349.886034696856,54.16324623955537,13.863505547260132,17.532691477086303,11.122161139809773,11.644888075399152,0.5591127851014857,0.7935153583617748,0.697869593285991,0.5495495495495496,0.1057601510859301,0.7192307692307692,0.9285714285714286,0.8520286396181385,0.6652542372881356,0.1377777777777777,0.4992814027019258,0.7180851063829787,0.6407079646017699,0.5137614678899083,0.0971223021582733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.0043076798329633,0.0066055827828681,0.0089075322986918,0.0110319162997834,0.0132035711740692,0.0154228805007084,0.0175438596491228,0.0200226903382086,0.0224646654862909,0.0248170244172458,0.0271299527817696,0.0292602683390736,0.0311605395942745,0.0332384253528101,0.0353488372093023,0.03726598740888,0.0393483449206184,0.0412122472318968,0.0430144492712858,0.0584796542580954,0.0726293216172394,0.0858077503774534,0.0983641027797636,0.1107936876060762,0.1256686187868665,0.1387816569804437,0.1506576706964073,0.1618826847272222,0.1726901168216779,0.1860693087438463,0.1980993202580421,0.2096033766290277,0.2201175273300285,0.2301213308964393,0.2407910343527951,0.2508014163008634,0.2596617949843048,0.2678885547296147,0.2755075138412866,0.2828286336065194,0.2891986470512505,0.296115758213935,0.301936071308765,0.3074588452386733,0.311975966806614,0.3164180224342541,0.3206652341415656,0.3247928534438115,0.3283745611024578,0.3272602315145471,0.3263798947339414,0.3250998039188026,0.3247933764673527,0.3232752851597936,0.3206179405048353,0.3189910744011288,0.3195125160356567,0.3207176084279655,0.3213482343699789,0.3228875943581771,0.3237331964705185,0.3244199681715387,0.3251910785321593,0.3255858624663849,0.3268939986443506,0.3273270708795901,0.3303257042253521,0.3333566678333917,0.3345483359746434,0.3385378732702112,0.3408692883298838,0.3432807689891311,0.3445715584513978,0.3490875058493214,0.3506401137980085,0.350271107668474,0.3553382233088835,0.3554568175506803,0.3597372488408037,0.0,2.1063251487058547,57.22363955237479,172.53120318705746,265.8278761941335,fqhc4_80Compliance_implementation,24 -100000,95824,44621,421.8776089497412,6204,63.39747871097011,4889,50.2483720153615,1892,19.24361329103356,77.51248185563044,79.79885381354792,63.42745123530996,65.11106084759234,77.2759466675441,79.56854330002092,63.33885955059744,65.0283335144863,0.2365351880863357,230.3105135270016,0.0885916847125258,82.72733310603542,160.8464,112.56735037134384,167856.0694606779,117473.02384720302,350.07906,226.15416220340188,364561.310318918,235235.7783054369,360.0338,173.81645942845046,370896.8316914343,177682.52714730517,3509.52605,1592.207629797611,3606316.277759225,1605441.3192912107,1160.77466,511.4300354427744,1187954.2494573384,510312.826016564,1856.5913,779.9627650320112,1889363.791951912,773379.788088018,0.38216,100000,0,731120,7629.821339121723,0,0.0,0,0.0,29825,310.4337118049758,0,0.0,33040,340.0087660711304,1614618,0,57903,0,0,6261,0,0,59,0.6157121389213558,0,0.0,1,0.0104357989647687,0,0.0,0.06204,0.1623403809922545,0.3049645390070922,0.01892,0.3316923076923077,0.6683076923076923,24.65960450349706,4.3316661969839005,0.3180609531601554,0.2350173859685007,0.2229494784209449,0.2239721824503988,11.11165710868672,5.70876546361749,20.035581167107583,12341.891765140092,55.16800567028126,13.788123060850012,17.50640109572502,12.080637187012837,11.7928443266934,0.5561464512170178,0.7893820713664056,0.6945337620578779,0.5614678899082569,0.1095890410958904,0.7272727272727273,0.9060240963855422,0.8880778588807786,0.6944444444444444,0.1558441558441558,0.4935754189944134,0.723433242506812,0.625,0.5214797136038186,0.0972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021957784388723,0.0045877598971045,0.0066390293840399,0.0088177694797617,0.0112659745220341,0.01319027763653,0.0153936999857465,0.0176517376407244,0.0195848181920292,0.0218836281828407,0.024115508678511,0.0263155195930632,0.0283800168512772,0.0305151031750115,0.0326701030927835,0.0347666215643946,0.0369519552147683,0.0390556960975407,0.0412736339081653,0.0431229242798096,0.0572683089631004,0.0710730493339189,0.0843471973340878,0.0970327188698072,0.1093139577739167,0.1252376727088351,0.1377618078521156,0.14923325605632,0.1606723585912486,0.1707382377826091,0.1840336405579514,0.1962279640511579,0.2076270726330991,0.2188052855738779,0.2289496813887057,0.2390506105114139,0.2486853246579616,0.2581859028362819,0.2660792552408349,0.2743157533855208,0.2821089541737315,0.2888912187507281,0.2952296715608231,0.3014043803291217,0.3064855835572663,0.3127172671326266,0.3172160989476834,0.3220957181393346,0.3261578519960298,0.3301265224695506,0.329014711005118,0.3279406531439052,0.3267143717354469,0.3264343348627152,0.3259040153812024,0.3240422902650007,0.3234913316701929,0.3239302953448417,0.3246408388370668,0.3256910945371046,0.3261775311548306,0.326069394912616,0.3273046238670064,0.328177164478077,0.3288792383497578,0.3301279565723148,0.3314494023228869,0.3344429580312976,0.3374279963911444,0.3394921875,0.341633510662077,0.3435106549262752,0.3482269942446933,0.3524700598802395,0.3536033957737381,0.3543847406373575,0.3560162235241099,0.356718192627824,0.3570462537192318,0.3564467766116941,0.0,3.017787796613016,56.58142148763261,183.2122018862789,263.6420522370923,fqhc4_80Compliance_implementation,25 -100000,95743,44127,417.90000313338834,6206,63.6077833366408,4897,50.62511097417044,1954,20.032796131309865,77.31288813594676,79.67297258799786,63.318020272784125,65.06275786082733,77.07371561490898,79.43385330550825,63.22961619908386,64.9766529593805,0.239172521037787,239.1192824896109,0.0884040737002678,86.1049014468307,160.37912,112.30345156629616,167510.02162037956,117296.77529040884,350.21694,225.80867361279368,365239.5579833513,235299.75414682395,355.84381,171.87439079585624,368733.7037694661,177167.0669093581,3513.30811,1589.91283911389,3632352.61063472,1623437.837872104,1175.49871,508.7594868123196,1215492.046415926,519107.7434510304,1914.36556,795.5175444767915,1964784.3079911848,803243.8799858505,0.37976,100000,0,728996,7614.091891835435,0,0.0,0,0.0,29836,311.041016053393,0,0.0,32659,338.134380581348,1610117,0,57841,0,0,6388,0,0,56,0.5848991571185361,0,0.0,0,0.0,0,0.0,0.06206,0.1634190014746155,0.3148565903963906,0.01954,0.3232864137086903,0.6767135862913096,24.61176111673447,4.330902923746064,0.3250969981621401,0.2289156626506024,0.2231978762507658,0.2227894629364917,11.112762343693012,5.775458605253048,20.686151891247132,12314.009618377302,55.57115269233013,13.486834576383838,18.024664355514165,12.31856391799341,11.741089842438711,0.5599346538697162,0.7716324710080286,0.714824120603015,0.5617566331198536,0.1145737855178735,0.7228177641653905,0.907621247113164,0.8465473145780051,0.7014388489208633,0.1225490196078431,0.5006961849067112,0.686046511627907,0.671940049958368,0.5141104294478528,0.1127395715896279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0044699419211627,0.0069095668584299,0.0090297810100353,0.0110657946928936,0.0134114052953156,0.0157540532272866,0.0177741932190585,0.0198233381724497,0.0220456476996958,0.0242794598640432,0.0262979544894438,0.0283651472766167,0.0304375592270611,0.0325086662264773,0.0343337880854934,0.0361281103413997,0.0379870298313878,0.0401613943137621,0.042031779109143,0.057014887974776,0.0708478513356562,0.0849124867602797,0.0971442390595756,0.1093326585054671,0.125241968752975,0.1378589468769234,0.1500425803704492,0.160789633918366,0.1705235164175263,0.1836044746390465,0.1956740388255015,0.2070693891752016,0.2174184093096509,0.2264009770804221,0.2373572322724302,0.2472178504057417,0.256039788902767,0.2653756601737748,0.2731262892505157,0.2801648777889703,0.2874121211412261,0.2944273544723142,0.3001750011986383,0.3051755558255376,0.3106554447881111,0.3161064162754303,0.3210823601251812,0.3247503464711749,0.3291632539829321,0.3285693098008548,0.3270596982046481,0.3266195573985528,0.3263285863146926,0.3251921129445404,0.3238699177005282,0.322814261891527,0.3235177930671231,0.3243155261624919,0.3248915654012976,0.3265490218187968,0.3282868367792372,0.3286512135718485,0.3289299867899604,0.329948871310052,0.3318692810457516,0.334124306707073,0.3381501976284585,0.3422816424439114,0.3436963036963037,0.3463510667521289,0.349339863713799,0.3546157229937787,0.3581838992750858,0.3568527439312364,0.3588738417676407,0.3591288229842446,0.3594067452255181,0.3668622520257055,0.3641221374045801,0.0,2.030567550149327,57.58685452178548,183.6070182661773,269.0889560924808,fqhc4_80Compliance_implementation,26 -100000,95784,44653,422.4191931846655,6209,63.6118767226259,4851,50.10231353879562,1857,19.02196609037,77.37208356525132,79.7107204166842,63.35007434272507,65.07950052973905,77.14234803240117,79.48297955870866,63.26418303504364,64.99669295474497,0.2297355328501424,227.74085797553312,0.085891307681436,82.80757499407798,158.86244,111.34761904016167,165854.88181742252,116248.66265781518,351.0995,226.90648948747213,365992.7127704001,236333.5671819295,362.29532,175.10940306601546,374976.69756953145,180235.5932201529,3433.51187,1561.8475299804345,3546467.729474651,1592459.1653040603,1150.23953,506.8885883022207,1186348.1583563015,514776.4037272414,1824.63234,767.6859227922645,1870354.485091456,772098.8284324169,0.38287,100000,0,722102,7538.858264428297,0,0.0,0,0.0,29886,311.4403240624739,0,0.0,33171,343.0635596759375,1618079,0,58089,0,0,6382,0,0,68,0.7099306773573875,0,0.0,1,0.0104401570199615,0,0.0,0.06209,0.1621699271293128,0.2990819777741987,0.01857,0.3379742962056303,0.6620257037943696,24.551455203455923,4.278607205200431,0.3257060399917543,0.240775097917955,0.2131519274376417,0.2203669346526489,11.152999573528216,5.866477553007867,19.72787291714568,12420.485533653418,54.94666353846655,13.996040564761808,17.776234394955473,11.376447979687672,11.797940599061596,0.5642135642135642,0.7868150684931506,0.7031645569620253,0.5696324951644101,0.1103835360149672,0.7392,0.9184149184149184,0.8919597989949749,0.6948356807511737,0.1285714285714285,0.5034712579838934,0.7104194857916103,0.6395939086294417,0.5371498172959805,0.1059371362048894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0045213089493532,0.0068092792920785,0.0092136406578559,0.0113393674361842,0.0136321062062225,0.0158701036602146,0.0179806926954711,0.0202338129496402,0.0223416231706068,0.0245642081962677,0.0265499440675704,0.0287505781980778,0.0306939868204283,0.0327304225874976,0.0347677842640905,0.0369630473035917,0.0390542362335372,0.0412086199372415,0.0429155951649678,0.0585423884459656,0.0725365297520056,0.085752324642786,0.098227326699381,0.1109788345852779,0.1267880913643374,0.1398488750410665,0.1513105428252432,0.1626457815384287,0.1727141250200867,0.1855796540149754,0.1985817136185761,0.209383966611599,0.2197257937549199,0.2297928971304759,0.2406205705173635,0.2514194563119792,0.25997706679857,0.2678433773182787,0.2760310517758593,0.2829715131677866,0.2897708674304419,0.2968890359793863,0.302568093385214,0.3088263845071106,0.3138671754785498,0.3186305792259469,0.3228262389262427,0.3275427181828765,0.3318874591287838,0.33119126682172,0.3299918981640415,0.3293694963015146,0.3283280100588209,0.3281542437836071,0.3263394701804324,0.3242486554887693,0.32436156079319,0.3248533962489955,0.3254373438057836,0.3260841084763526,0.3262148186160344,0.3266676428138139,0.3277631520235599,0.3287766673073227,0.3301795814111085,0.3323435358611238,0.3357057378597972,0.3374719416386083,0.3414643836160661,0.343724438789421,0.3478099676923892,0.3526200188264826,0.3585608884156081,0.3593705832469612,0.3576590451368321,0.3574798356414548,0.3556038742834552,0.3619897269532306,0.3662024840045164,0.0,2.065524033021927,54.75499215766759,187.34021207181445,267.368251103119,fqhc4_80Compliance_implementation,27 -100000,95641,44601,422.5593626164511,6120,62.77642433684298,4800,49.53942346901433,1777,18.16166706747106,77.25911226955019,79.65715086510743,63.27736057920528,65.04679544606228,77.05013292391817,79.45045326400846,63.19909682402508,64.9719048929535,0.2089793456320166,206.6976010989663,0.0782637551802025,74.8905531087729,158.84242,111.23009559922733,166081.7013623864,116299.37181671806,349.00253,225.7483639730424,364237.3040850681,235366.0837643295,363.33331,175.8811900554039,375797.7750128083,180730.65383385963,3347.15523,1518.1975680266994,3455351.87837852,1543072.1079105188,1131.06811,499.4686101056356,1162832.1640300709,502535.60255680594,1743.0335,724.0896941787148,1783187.335975157,724192.4589774815,0.38158,100000,0,722011,7549.168243744837,0,0.0,0,0.0,29718,310.03439947302934,0,0.0,33255,343.58695538524273,1610646,0,57902,0,0,6282,0,0,59,0.6168902458150792,0,0.0,0,0.0,0,0.0,0.0612,0.1603857644530635,0.290359477124183,0.01777,0.3428929634853471,0.6571070365146529,24.59645996369002,4.335391498915434,0.336875,0.2429166666666666,0.2077083333333333,0.2125,11.1984517541424,5.772999632065094,18.62988093006152,12376.126903516271,54.37323682928419,14.038072715929394,18.308872332123112,10.953473161408972,11.07281861982271,0.57375,0.7830188679245284,0.7142857142857143,0.5667001003009027,0.1186274509803921,0.7400318979266348,0.9154589371980676,0.8710462287104623,0.7361111111111112,0.1502347417840375,0.514946418499718,0.7101063829787234,0.6608623548922057,0.5198463508322664,0.1102850061957868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025222086038714,0.0048266561210314,0.0069727787589062,0.0092566249390343,0.0115468742051986,0.0137188601226244,0.0158553745131227,0.0182426983268168,0.0203126118113697,0.0224374065961062,0.0245650368578078,0.0265014221026583,0.0283774749292877,0.0305958463820669,0.0326109391124871,0.0347826086956521,0.0370347349556101,0.0389561859682994,0.0410131058872477,0.0427643581697438,0.0578522760523345,0.0719866772801541,0.0849522209387798,0.0979634387767996,0.1103800783601398,0.1259598174096315,0.1378936746508046,0.1491225266118978,0.1603109761314056,0.1710551749318098,0.1845375504304114,0.1971760779341807,0.2084177504738252,0.219003374676776,0.2289224389867331,0.2386785119378123,0.249068552312116,0.2581823923488146,0.2665013874357458,0.2742417279411764,0.2818671245910009,0.2888255576665963,0.2954486129897249,0.3028335797838448,0.3070808543840827,0.3122991744525186,0.3178897701034032,0.3218867154624977,0.3266256681716747,0.3315352477656142,0.3305276788604726,0.3289431948256127,0.328125,0.3279409204341013,0.3270816250465896,0.3248065348237317,0.323748651906363,0.3239075395390129,0.3246957742139764,0.3251081013472465,0.3259614663767898,0.3278536286578016,0.3287252314523899,0.3293755986723397,0.3309609393721543,0.3317149162663897,0.3341561684258313,0.336770836598439,0.3394713810607386,0.3417115262824572,0.3459773770044973,0.34908358936328,0.3529337856514637,0.3512471655328798,0.3518311953894776,0.3553113553113553,0.3660429027841168,0.3691936456867082,0.3635105204872647,0.3641640866873065,0.0,2.531789611989971,54.727484520473766,181.4751187788696,265.32689751361465,fqhc4_80Compliance_implementation,28 -100000,95625,44249,419.6496732026144,6052,62.16993464052288,4779,49.45359477124183,1888,19.419607843137253,77.28554750318864,79.71723311257472,63.27381344368566,65.07174616918248,77.04882294649796,79.4801564657536,63.18627527629261,64.98619457885708,0.2367245566906746,237.07664682112292,0.0875381673930491,85.5515903253945,159.02458,111.3303195177208,166300.21437908497,116423.86354794331,343.65428,221.78571250444497,358842.08104575163,231398.8665828559,353.57228,171.49809267033905,366171.9843137255,176657.164728828,3426.70197,1563.386272233481,3548241.537254902,1600259.0930237563,1155.77008,509.7489312382551,1197018.7503267974,521664.8736367569,1861.13678,785.8428525012063,1916340.7477124184,795911.8854763084,0.37934,100000,0,722839,7559.100653594771,0,0.0,0,0.0,29357,306.42614379084966,0,0.0,32402,335.4248366013072,1616560,0,58040,0,0,6156,0,0,56,0.5751633986928104,0,0.0,0,0.0,0,0.0,0.06052,0.1595402541255865,0.3119629874421679,0.01888,0.3392885375494071,0.6607114624505929,24.546687651934224,4.272401016201204,0.3165934295877798,0.2322661644695543,0.2186649926762921,0.2324754132663737,10.809191781983262,5.396604882783966,20.26706692164812,12305.74075805635,54.25425920582102,13.29812992976869,17.211425837403404,11.631848869095968,12.112854569552962,0.5473948524795983,0.7594594594594595,0.6939854593522803,0.5665071770334928,0.1179117911791179,0.7033962264150944,0.906801007556675,0.8279816513761468,0.7093023255813954,0.1196581196581196,0.4875506658946149,0.6774193548387096,0.6397400185701021,0.5196950444726811,0.1174458380843785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307661126874,0.0045441174978953,0.006893960930837,0.0091070793311988,0.0112623611280673,0.0134156403752712,0.0153522865216105,0.0176834749918273,0.0196888647963097,0.021783435576539,0.024014936243986,0.0260686395396629,0.0278023674729799,0.0298419766830565,0.032091856226832,0.0342887286794443,0.0364359883106385,0.0383221344078762,0.0404171827672707,0.0422538149426845,0.0573354936497151,0.0712264744100264,0.0846406842708081,0.0972999167746489,0.1092451176104016,0.1251932648522715,0.1375715909936139,0.1501071280099773,0.1606835229035813,0.1707081233817162,0.18410348808355,0.1957502168256721,0.2077912171733682,0.2186904214055617,0.2288357017650236,0.2392368394765757,0.2495640314791629,0.2588218057230443,0.2670121369153143,0.2744457436320701,0.2818514486879588,0.2889346901970887,0.294696529564506,0.3001140661583718,0.3048156984953985,0.3098918465109388,0.3148937236815721,0.319716011930558,0.3245280570872527,0.3295098648130773,0.3282574420202945,0.3270990738064764,0.3265127691678535,0.3250267565300396,0.3240784780023781,0.322239263803681,0.3202759495678376,0.3211084614752076,0.32163802684449,0.3227082363890181,0.3231423858438929,0.3238441189244679,0.3247202313592355,0.3255507395325975,0.3275489631336405,0.3290925613397377,0.3304928799932055,0.3334167318217357,0.3352943224144533,0.33989972760649,0.3429725803522789,0.3461843986654663,0.346296412640573,0.3478293810137131,0.3470935130581297,0.3484242709313264,0.3569797533871213,0.358948432760364,0.3673859601201857,0.3569010906355773,0.0,1.9805810753469044,58.62919052992491,172.6534424145322,261.2855824081566,fqhc4_80Compliance_implementation,29 -100000,95824,44650,422.3367841041911,6062,62.145182835197865,4749,49.14217732509601,1909,19.640173651694774,77.35864855579545,79.66315097061617,63.35358995694328,65.05421206316014,77.12017045540026,79.42288018594671,63.265194803530015,64.96723032868584,0.2384781003951985,240.2707846694625,0.0883951534132592,86.9817344742927,159.98312,112.0823559238948,166955.16780764735,116966.8933919423,348.97669,225.50620668488023,363758.7138921356,234907.3996961933,357.27253,172.75081604463122,370167.4945733845,178240.20888427977,3402.60949,1555.4973985504762,3522957.724578394,1595348.6794023206,1132.99926,503.9208139156882,1174162.7358490566,517705.712237844,1868.93986,786.752423016203,1924302.3459676076,798389.5163136123,0.38289,100000,0,727196,7588.87126398397,0,0.0,0,0.0,29638,308.8579061612957,0,0.0,32777,339.36174653531475,1612922,0,57922,0,0,6428,0,0,75,0.7826849223576557,0,0.0,0,0.0,0,0.0,0.06062,0.1583222335396589,0.3149125701088749,0.01909,0.3382794001578532,0.6617205998421468,24.58279557293871,4.347926298626395,0.3268056432933249,0.2377342598441777,0.2109917877447883,0.224468309117709,11.360342486689762,5.987950636752753,20.39613553848808,12379.679098145236,54.06004764773415,13.490615816604524,17.683720112799424,11.103452741205496,11.782258977124709,0.5632764792587913,0.7812223206377326,0.7016752577319587,0.5798403193612774,0.1153846153846153,0.723159509202454,0.8880778588807786,0.8551724137931035,0.7587719298245614,0.1434782608695652,0.5027576197387518,0.7200557103064067,0.6418979409131602,0.5271317829457365,0.1076555023923445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022164645871708,0.0045984462518611,0.0068736883725174,0.0090819608917572,0.0112876678926299,0.0133157011342251,0.015503402192071,0.0174737078330766,0.0197168134360378,0.021901020888316,0.024264585381842,0.0263095812007015,0.0284179055407724,0.0306042644274306,0.0327772507939126,0.0348777162686937,0.03664997309714,0.0386995780678201,0.0408002160500238,0.0428287371040111,0.0577851963903813,0.0722948248823836,0.0857196763238438,0.0988092860971277,0.1108874579772154,0.1258705048135349,0.1388241031295055,0.1501877479815762,0.1613426716774854,0.1726670383394802,0.1854455797327706,0.1975661203959111,0.2088752120394937,0.2189841707415794,0.2285943916590516,0.2401055116539395,0.2501283568096077,0.2588063227766214,0.2670706658041966,0.2752291475710357,0.2820352558537912,0.2889099592639416,0.2953170327393286,0.3012146428614252,0.3065514181163913,0.3121246871108152,0.317643231610425,0.3221485900354876,0.3258301818370201,0.3303415870334196,0.329418736195658,0.328879654346809,0.3284767093204949,0.3274619926945122,0.3266745878508837,0.3252023811345585,0.3245048838792407,0.3251733315808497,0.3260516276921498,0.3262671655954022,0.3269859154929577,0.3271531574360193,0.3277713565199117,0.328993288590604,0.3308536761519572,0.3309017700734698,0.3321136584529186,0.3355121889604648,0.3382073144951025,0.341863987881687,0.3447475069441282,0.3458426487810071,0.3510054844606947,0.3493837556457169,0.351881392511964,0.3539948149893943,0.3587389041934496,0.3625076328109098,0.3721320649132624,0.3790927021696252,0.0,1.6204594493299809,57.931888558859605,177.46469156428498,256.56222059893423,fqhc4_80Compliance_implementation,30 -100000,95858,44613,420.7473554632894,6175,63.07246134907884,4823,49.6985123828997,1936,19.747960524943142,77.41454581429173,79.70343266300684,63.37712166936033,65.06826855902587,77.17775288407417,79.46909318634106,63.28901730386195,64.98331554637804,0.2367929302175611,234.3394766657809,0.0881043654983813,84.95301264782995,160.1347,112.11581166314464,167053.85048717895,116960.10442396716,348.81103,225.432807303762,363239.9904024703,234533.54868556667,359.48798,174.82576322386618,371022.8880218657,179236.27658009582,3427.43869,1574.7447155382747,3533212.741763859,1600755.0611123864,1152.22958,513.3302964032382,1187515.272590707,521009.3121108706,1894.03334,794.4592809794169,1934616.0779486324,795895.1022218656,0.3829,100000,0,727885,7593.356840326315,0,0.0,0,0.0,29676,308.93613469924264,0,0.0,32989,340.2115629368441,1613264,0,57991,0,0,6364,0,0,66,0.6885184335162428,0,0.0,1,0.0104320974775188,0,0.0,0.06175,0.1612692609036302,0.3135222672064777,0.01936,0.3305555555555555,0.6694444444444444,24.698160477684542,4.324992725586272,0.3334024466099938,0.2330499688990255,0.2135600248807796,0.2199875596102011,11.324248545370017,5.94698201955176,20.494734315411744,12390.67774646746,54.55238086528437,13.510840370871795,17.993931045009948,11.517383435630698,11.530226013771925,0.5635496578892806,0.802491103202847,0.679726368159204,0.5776699029126213,0.120640904806786,0.7423904974016332,0.9369565217391304,0.8444444444444444,0.7751004016064257,0.1459227467811159,0.4942462600690449,0.7093373493975904,0.6242726517040732,0.5147247119078106,0.1135265700483091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026623475223971,0.0049338939263461,0.0073516736465315,0.0094613526079629,0.0114239251956499,0.013746578618016,0.0162489812550937,0.0184728059080337,0.0205422080575304,0.0227579576139432,0.0249008983170639,0.0272030690642021,0.0292839308282728,0.0314349531151894,0.0334460574067964,0.0355091923156372,0.0372976048833479,0.0392666901569009,0.0415961632288671,0.0437595564755198,0.0580016890659048,0.0718234353609982,0.0852617354047287,0.098372532549349,0.1107296679689556,0.1267083500559768,0.1397290168119749,0.1513679556131885,0.1620061665830941,0.17221252396303,0.1853792361484669,0.1973704128192375,0.2094304560915443,0.2199151986711544,0.2294993680276968,0.2401868021203368,0.2498076344050048,0.2589658001506007,0.266677251797582,0.2748276888553044,0.2817173457939601,0.2880745530442103,0.2952050905994228,0.3012868131604802,0.3065454854740526,0.3121556155467623,0.3169022018050044,0.3218943644946622,0.3259657765102411,0.3307184363444268,0.328947722804277,0.3274733135248157,0.3272934617334009,0.3265665607854461,0.32558001454675,0.3237566356112411,0.3231111953739691,0.3243376099886939,0.3237807686402947,0.3247752158817769,0.3256934715606612,0.3273917501380235,0.3274644945697577,0.330060120240481,0.3316713011794036,0.3323034583030428,0.3342315765586883,0.3356643356643357,0.3375515626092428,0.339630113658865,0.3421088343058759,0.3472273518704163,0.3506849315068493,0.3525920360631104,0.3552949934859483,0.3581001645897014,0.356391893950937,0.3589691558441558,0.3662010408107368,0.3759939416887543,0.0,2.273358397914562,58.94583818876288,172.40375910268853,263.0858156241212,fqhc4_80Compliance_implementation,31 -100000,95715,44175,418.6073238259416,6149,63.10400668651726,4838,50.02350728725905,1894,19.464033850493653,77.36002699221102,79.73361128278617,63.33690834044432,65.08913435177033,77.13666934782601,79.50894027027675,63.254350182030414,65.00831979383791,0.223357644385004,224.67101250941823,0.0825581584139101,80.81455793241332,158.49196,110.94921036692048,165587.37919866267,115916.22041155562,346.82857,223.847169367335,361824.5416078984,233337.4699549025,357.56511,172.57916664890118,369991.0149924255,177539.2102597397,3435.59885,1559.214541132022,3555303.2857963745,1594916.3988215232,1143.41202,502.32047163740936,1182449.971268871,512657.8296373704,1849.53112,767.0643307193611,1902452.2175207648,776293.484312926,0.37873,100000,0,720418,7526.699054484668,0,0.0,0,0.0,29529,307.95591077678523,0,0.0,32770,338.8183670271117,1622657,0,58226,0,0,6243,0,0,67,0.6999947761583869,0,0.0,0,0.0,0,0.0,0.06149,0.1623584083647981,0.3080175638315173,0.01894,0.3301842961127458,0.6698157038872541,24.42162100838532,4.305509377143351,0.3269946258784622,0.239561802397685,0.2168251343530384,0.2166184373708143,11.271458073198604,5.964746507658688,19.90713721478865,12296.429937008672,54.75445307180658,13.695972603073372,17.94423233248171,11.65655496759602,11.457693168655494,0.572964034725093,0.7981018119068162,0.6965865992414665,0.6015252621544328,0.1087786259541984,0.7576711250983478,0.9347826086956522,0.902439024390244,0.773109243697479,0.1308411214953271,0.5071488645920942,0.7345132743362832,0.614500442086649,0.5511713933415536,0.1031175059952038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334180753765,0.0046325862401038,0.0068295059009772,0.0094069363457201,0.0114121811302331,0.0134108590281454,0.0154332313965341,0.0173304211149441,0.0195859953999488,0.0215606380147013,0.0239086304824786,0.0257792287791055,0.0278577598617909,0.0299937169754962,0.0319854724047916,0.0339640198511166,0.0359799432277313,0.0380930633258254,0.0400241309729358,0.042003584528176,0.0573541083587451,0.071337366294769,0.0842048947307688,0.0968617222666274,0.1088831256457292,0.1251427121654192,0.1369547691785471,0.1489123957091775,0.1592746457062913,0.1697075007240081,0.1826221843996079,0.1948538163561211,0.2061582270914169,0.2165486029122392,0.2263279445727482,0.2371184262992335,0.2471550339164584,0.2567496148699553,0.265203392136411,0.2733059336683877,0.2811043923645235,0.2889429032182672,0.2953626410007803,0.3010665166441233,0.3063374725368097,0.3114842903575298,0.3159329664832416,0.3210337729663795,0.325400007760862,0.3295144427891524,0.3287217721314564,0.3279259198106717,0.3270897636463574,0.3265332677905329,0.3261063393467471,0.3247872405559297,0.3229426828111663,0.3243442381373416,0.323768115942029,0.3245953021209908,0.3254953271028037,0.3250867371077117,0.3257327631167205,0.3266737939329146,0.3280149489722581,0.3278858894749149,0.3281836804370092,0.3323157298420092,0.3365898228844532,0.3381808040160962,0.3407647676915346,0.3435987447476198,0.3468324229296163,0.3507440024293957,0.3531057638500279,0.3546107643387116,0.3597570235383447,0.3646608975649024,0.3681318681318681,0.3643351268255188,0.0,2.077609952737662,55.83224626307325,183.7870600050929,264.7625126411572,fqhc4_80Compliance_implementation,32 -100000,95742,44239,420.2335443170186,6090,62.30285559106766,4817,49.633389734912576,1940,19.75099747237367,77.33346816806463,79.69653396341882,63.32120940122799,65.0708300453754,77.0923593093678,79.46036399208278,63.23114392624336,64.98543077514977,0.2411088586968333,236.16997133603945,0.0900654749846268,85.39927022563631,159.7145,111.87462256763251,166817.59311482945,116850.09981787777,348.4758,223.9796146618087,363309.6342253138,233276.64417059257,354.8963,171.09030300997117,367342.4724781183,175950.74287955437,3459.50025,1574.9751419969102,3569549.1738213114,1601475.3140259746,1142.06723,505.8148699252959,1176669.5389693135,512216.5521738498,1903.06316,796.801463639786,1941750.2454513167,794868.9301340147,0.3799,100000,0,725975,7582.617868855883,0,0.0,0,0.0,29601,308.4748595182887,0,0.0,32516,336.16385703244134,1617501,0,58044,0,0,6252,0,0,74,0.7729105303837396,0,0.0,1,0.0104447368970775,0,0.0,0.0609,0.1603053435114503,0.3185550082101806,0.0194,0.33453125,0.66546875,24.6187659243828,4.39788204813745,0.3145111064978202,0.2291882914677185,0.2296034876479136,0.2266971143865476,11.30357710859721,5.864541388192689,20.600152170300625,12289.764450621911,54.53204996411078,13.1392367786371,17.115525203982767,12.27597068712046,12.001317294370455,0.5574008719119784,0.7898550724637681,0.7122112211221122,0.5560578661844484,0.1089743589743589,0.7252146760343482,0.9316455696202532,0.8911917098445595,0.6992481203007519,0.1324786324786324,0.4966063348416289,0.7108603667136812,0.6510186005314438,0.5107142857142857,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020264451086681,0.0042185535228978,0.0063029048170026,0.0087788819118453,0.0107503915705538,0.0126872282581026,0.0145883456347102,0.0165948847747545,0.0187441232983116,0.0207691441556713,0.0229334754928595,0.024813921256609,0.0270456485299713,0.0291143151390319,0.0309724013412432,0.0330756191342456,0.0349469324359306,0.0370647075914165,0.0388306112052564,0.0407548977742597,0.0554297107425076,0.0697869133838489,0.0827798239262966,0.0957835063473532,0.10792967802491,0.1233411232248035,0.1360622168465056,0.1478990165609434,0.1592933586824172,0.169960855809963,0.1835349628879528,0.196122135422302,0.2076785034531513,0.2177279985999606,0.2274562436056809,0.2377213479662011,0.2483002690542909,0.2568232208979077,0.265692751254285,0.2741150467814157,0.2819400585302657,0.2883445629795995,0.2952348270598398,0.3013815166728573,0.3072833857245154,0.3128662169481511,0.3176800070014878,0.3220881900573273,0.3275192795403964,0.3310195571273984,0.3301048037287496,0.3289374166311418,0.3276779680108132,0.3269202971871296,0.3252809656894809,0.3242273180458624,0.3226430349244598,0.3233790779850439,0.3246751025991792,0.3251510709049952,0.3257955035532804,0.3270861751972006,0.3273602679505966,0.3270154891486556,0.3274600423647217,0.3304666056724611,0.3306954368185829,0.3355244535304293,0.3386189438154841,0.3415243153263842,0.3456941604180868,0.347135955831608,0.347984886649874,0.3490148159462349,0.3519147330692322,0.3520536462699078,0.354336773994762,0.3556193601312551,0.356341189674523,0.3688080495356037,0.0,2.634222391725554,55.7286231310914,178.6670608444405,266.59766372532,fqhc4_80Compliance_implementation,33 -100000,95802,44469,420.1164902611636,6224,63.79825055844345,4918,50.80269722970293,1931,19.769942172397236,77.34149214859087,79.679997122694,63.33904717832892,65.07203151331231,77.09596380935952,79.43552678629023,63.248274215724,64.9841967037955,0.245528339231356,244.47033640377924,0.090772962604916,87.83480951680644,158.57798,111.13835358716692,165526.7948477067,116008.3856152971,349.53974,225.65874344665812,364336.3082190351,235026.9028273503,365.4097,176.7257968076833,377980.0004175279,181833.2673333807,3490.93303,1597.8373623028674,3609086.094236029,1633035.8367287414,1171.50424,518.5614963360655,1210150.2995762094,528597.2317979195,1885.12122,795.0597145305543,1932583.014968372,800159.5153905526,0.38183,100000,0,720809,7523.945220350305,0,0.0,0,0.0,29731,309.7847644099288,0,0.0,33443,345.67128034905323,1621329,0,58155,0,0,6362,0,0,73,0.76198826746832,0,0.0,0,0.0,0,0.0,0.06224,0.1630044784328104,0.3102506426735218,0.01931,0.3505217925107428,0.6494782074892572,24.25407760155008,4.350195464434702,0.3298088653924359,0.2326148840992273,0.2214314762098414,0.2161447742984953,11.238993222451851,5.863808819093877,20.692770341409343,12371.546016540964,55.92319813996361,13.725537539071617,18.13634106265039,12.348258529313762,11.71306100892785,0.5766571777145181,0.7972027972027972,0.6960542540073983,0.6134067952249771,0.1194731890874882,0.7424242424242424,0.9280575539568344,0.8765432098765432,0.7372262773722628,0.1607142857142857,0.5158421345191774,0.7221458046767538,0.6359901396877568,0.5717791411042945,0.1084624553039332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025932716755979,0.0051093336577354,0.0072149779288649,0.009450067064992,0.01159892150379,0.0137820741359464,0.0161145561357702,0.0183806635419538,0.0204718129109445,0.0225273656293838,0.0246798388171723,0.0267913988211373,0.0286252082861903,0.030729767595187,0.0326777828222378,0.0347090865866641,0.036717957214157,0.0390460481955207,0.0412514677002047,0.0432121256285068,0.0575935895830724,0.0720925126253385,0.0853540963678662,0.0982839969315805,0.1101650262398044,0.1255562249632706,0.1379551598028303,0.1498101851359542,0.1610279835215266,0.1711912544879695,0.1843252494591016,0.1969230103899754,0.208633484359551,0.2191765850246456,0.2286216944306998,0.2401155902966153,0.2502758920509648,0.259649398632183,0.2682462737280841,0.2759566902575946,0.2827321849166397,0.2895520297012364,0.2965138265185535,0.3024282824897973,0.3075961958367703,0.3122777224006596,0.3163366027363029,0.3212902406502,0.3257950712688833,0.3301563898688852,0.3294465738686033,0.3282435404068169,0.3273060132375722,0.3256459164210161,0.3249739854318418,0.3230356869352121,0.3217103387091664,0.3225196487881877,0.3239643957548784,0.3248447538431253,0.325448122956672,0.3267114732647356,0.3274060995859343,0.3283592137151063,0.3304816452790062,0.3308010687902761,0.3318578983674408,0.3339585452695829,0.3375904640272456,0.3396732601905982,0.3449134948096886,0.3458666809904925,0.3469621704241498,0.3453687954229163,0.3463809523809524,0.3484141232794733,0.3531610090314543,0.355244178858438,0.3501683501683502,0.3538461538461538,0.0,2.076723631935213,58.00063978183345,183.1514145611948,272.6976581374549,fqhc4_80Compliance_implementation,34 -100000,95708,44402,419.4633677435533,6220,63.86091026873407,4871,50.37196472604171,1904,19.60128724871484,77.3419109081298,79.7121031047427,63.33255108723839,65.0815402937718,77.10445109446772,79.47139646461758,63.24491796733951,64.99405788720789,0.2374598136620846,240.70664012511145,0.0876331198988751,87.48240656390749,160.08938,112.14617258116476,167268.5459940653,117175.33809207666,349.15938,225.95839219741416,364295.8686839136,235569.965099484,364.96613,176.7377940403159,377551.8974380407,181733.345878334,3502.11745,1611.2343246438993,3626040.665357128,1650511.3180557643,1167.89146,524.0178238214464,1205589.2610858027,532909.9685941051,1877.76382,789.9806218223634,1935222.3011660464,804516.7741673386,0.38019,100000,0,727679,7603.115727002967,0,0.0,0,0.0,29767,310.4756133238601,0,0.0,33479,346.00033435031554,1610701,0,57832,0,0,6297,0,0,50,0.5224223680361099,0,0.0,1,0.0104484473607221,0,0.0,0.0622,0.1636024093216549,0.3061093247588424,0.01904,0.3433225756877209,0.656677424312279,24.267729629950683,4.318954593464643,0.3180045165263806,0.236091151714227,0.2137138164647916,0.2321905152946007,11.017711591493358,5.622118705581109,20.422869736653205,12364.680371048344,55.68565910225585,13.750714631258887,17.940998162523023,11.627357057673466,12.36658925080045,0.5579963046602341,0.7860869565217391,0.6998063266623629,0.5725264169068204,0.1184792219274978,0.7240618101545254,0.912718204488778,0.8577680525164114,0.7352941176470589,0.1939163498098859,0.4937357630979498,0.7182910547396528,0.6336996336996337,0.5242839352428393,0.0956221198156682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0045403871490828,0.0065733414485696,0.008917689120013,0.0112864521901818,0.0135415818196627,0.0157802990917153,0.0180350289866906,0.0202677841373671,0.0225265334111169,0.0244182470527934,0.0267278645432235,0.0289683682283739,0.0312165169372784,0.033423108276837,0.0353942050258944,0.037302458524057,0.0394446001058497,0.0417355500795408,0.0436313996019299,0.0581391705742901,0.0717822041260637,0.0854630911914054,0.0981247962306616,0.1104407716404214,0.1254218639244189,0.1384032757669623,0.1503161525196397,0.1614874320325602,0.1724197112393538,0.186012449652142,0.1978422715664632,0.2092401057130738,0.219960202051125,0.2294477987836396,0.2404162284828693,0.2493922430135825,0.2584670031361352,0.2675112280542576,0.2758794314878813,0.2825184208395507,0.2883938078466705,0.2942151303874336,0.3005465135789448,0.3053195756006854,0.3108339809298252,0.3165156584834016,0.3213222004429397,0.3257350084185986,0.33020845694395,0.3291004578507945,0.3278742626129285,0.3266428491054349,0.3255954871380549,0.3253636093796379,0.3232905623441968,0.3214511539677521,0.3221156211562115,0.3224544864569457,0.3243450775906712,0.3246013454007158,0.3263886143506622,0.3278767655144914,0.3283297860423435,0.32952027742992,0.3304640425698411,0.3309642061996917,0.3340162642627498,0.3378697598984592,0.3400015971889474,0.3415570175438596,0.3448588655888159,0.3465966599190283,0.3501647383342273,0.3525125390366234,0.3531722413998333,0.3518149793230203,0.3560885608856088,0.3620352250489236,0.3667180277349769,0.0,2.052742979807191,59.92778966133924,184.43073206623225,259.010711550399,fqhc4_80Compliance_implementation,35 -100000,95715,44610,421.8043148931724,6293,64.59802538787024,4897,50.63992059760748,1948,20.017761061484617,77.33810060160408,79.72152618191802,63.31256206328344,65.07527157316855,77.10356011217563,79.48652427134739,63.22648519341945,64.99108522032655,0.2345404894284541,235.0019105706309,0.0860768698639873,84.18635284199638,158.96518,111.40740286890336,166081.78446429505,116394.92542329138,347.76555,223.93761121114952,362818.1894164968,233446.7006571286,363.05881,174.94939392505012,376460.5025335632,180542.00974348967,3502.26292,1596.2512428185196,3621549.9660450295,1630211.7337314729,1167.34193,519.804645160497,1205209.3611241707,528682.9182056074,1906.14934,785.9469557774855,1959715.488690383,794625.5541900855,0.38223,100000,0,722569,7549.17202110432,0,0.0,0,0.0,29570,308.3947134722875,0,0.0,33472,346.74815859583134,1617286,0,58058,0,0,6326,0,0,54,0.5641748942172073,0,0.0,1,0.0104476832262445,0,0.0,0.06293,0.1646390916463909,0.3095502939774352,0.01948,0.332476564862413,0.6675234351375869,24.609639853761752,4.319324900525262,0.3167245252195221,0.2395344088217275,0.2236062895650398,0.2201347763937104,11.497565632220889,6.074548274641802,20.47968854107439,12393.864978224896,55.678878356026175,14.19734941258303,17.592535858034744,12.139078624814957,11.74991446059344,0.5742291198693077,0.7860187553282183,0.7163120567375887,0.5954337899543379,0.1178107606679035,0.743202416918429,0.9134396355353076,0.8722358722358723,0.7723577235772358,0.1637931034482758,0.5116148894486426,0.7098092643051771,0.6608391608391608,0.5441696113074205,0.1052009456264775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023311913401309,0.0043822276323797,0.0068836680406928,0.0091164095371669,0.0112636216562713,0.0137198382546165,0.0160128919078799,0.018333724861348,0.0204837142711049,0.0223519172682127,0.0245182989981439,0.0267797549981003,0.0288613790125233,0.0309864376409527,0.0329798427861107,0.0353832322334631,0.0373879190739475,0.0393310301181694,0.04119970890945,0.043303436565726,0.0576459162254456,0.071882425600067,0.0856687196382293,0.0983435873166114,0.1100518834099633,0.1257510366421257,0.1382277728849888,0.1508933705304853,0.162235236283583,0.1733630872555225,0.186015191509993,0.1984995615601961,0.2102920208539678,0.2198660714285714,0.2295891978739091,0.2390699633171899,0.2486962736317852,0.2582692762202739,0.2675886814734069,0.2758395415472779,0.2825996341152768,0.2895959915241339,0.2969257004808034,0.3019419803404459,0.3072576136888413,0.3126959054224152,0.3177055918991402,0.3227130222006984,0.3259942721629712,0.3295538542766631,0.3283843264998452,0.3273750550418318,0.3272158762799476,0.327261170420236,0.3266179354608665,0.3248295411016624,0.3236010887454108,0.3244932099980319,0.325222825530171,0.3261195361284567,0.3270973782771535,0.328343471048266,0.327603915567946,0.3286450167973124,0.3297729022324865,0.3307105017139295,0.3332008290979301,0.3361249647125247,0.3381740560590685,0.3413246968679648,0.3430620714543486,0.3458587344965314,0.3493159203980099,0.3512579797221179,0.3543307086614173,0.3596203421607687,0.3647836538461538,0.3666137356093688,0.3632928475033738,0.3570889894419306,0.0,2.0156554530197464,58.30526623318909,186.29896066499407,263.6995015152388,fqhc4_80Compliance_implementation,36 -100000,95662,44462,420.4072672534549,6259,64.34111768518325,4918,50.9397670966528,1924,19.777968263260227,77.27782633283482,79.6880348299692,63.2892740309558,65.07193482842337,77.04441462667997,79.453081185816,63.202450686657485,64.98637477189014,0.2334117061548539,234.95364415319384,0.0868233442983097,85.56005653322529,161.38078,113.00126014543416,168698.94001797997,118125.5463459202,349.73643,225.4879828656005,365146.36950931407,235263.608188832,364.2711,175.75354470896664,377626.7901570112,181329.66960825556,3513.57471,1598.160061454343,3639677.834458824,1637404.571778074,1177.24198,515.8918610013401,1217755.0333465743,526414.5648233778,1895.90444,795.186884140213,1950696.138487592,806288.6581570853,0.38062,100000,0,733549,7668.1336371809075,0,0.0,0,0.0,29809,311.1266751688236,0,0.0,33365,345.602224498756,1603345,0,57613,0,0,6337,0,0,53,0.5540339946896364,0,0.0,0,0.0,0,0.0,0.06259,0.1644422258420471,0.3073973478191404,0.01924,0.3321106526058383,0.6678893473941617,24.566176220236272,4.314221047238298,0.3096787311915412,0.2429849532330215,0.2204148027653517,0.2269215128100854,11.194239391217556,5.735551450284849,20.52133498137441,12374.200863721017,55.9190647583654,14.335088634187906,17.26014543507036,12.194897455564115,12.128933233543007,0.5614070760471737,0.7757322175732217,0.7005909389363099,0.5950184501845018,0.1093189964157706,0.7293404094010614,0.9235955056179777,0.8804347826086957,0.7376425855513308,0.1358024691358024,0.4998610725201445,0.688,0.6432900432900432,0.5493300852618758,0.1019473081328751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394260584074,0.0045026772675644,0.0067407061498791,0.0091669461467321,0.0113840988860064,0.0135899186031112,0.0157572667006629,0.0180170978581715,0.0203044127575131,0.0223927228772497,0.0246153846153846,0.0266755687946176,0.0285640788187477,0.0306721909591243,0.0330683460664877,0.0352270729260396,0.0373137421507471,0.0394766898556743,0.0415496035462321,0.0436332926714835,0.0579408783607276,0.0718624329758713,0.0854980740367559,0.0981689992633905,0.1107101403397699,0.1268033489632397,0.1395319203160175,0.1514696325652252,0.1626029301678964,0.1728680006870491,0.185050696606937,0.1968256717839897,0.2088462250084348,0.21896268738374,0.2285006605019815,0.2389769843644382,0.2488917672543743,0.2580641530669668,0.2669996027467227,0.2747787458640074,0.2819486693114655,0.2886454509317932,0.2951719568895146,0.3007599002780707,0.3058043037144141,0.3108518143917902,0.316397199714461,0.3210693825588797,0.325514451316762,0.3302428780855026,0.3297717338513841,0.3291378572710084,0.3278748746061574,0.3271278522274538,0.3264941218541862,0.3244948719523429,0.3226861406572471,0.3226502412753833,0.3234266333207715,0.3231824122312333,0.3247940243604902,0.3266514806378132,0.3276502044668135,0.3285468250240443,0.3305103096504102,0.3300234558248632,0.3313351031943136,0.3339440267862783,0.3385977337110482,0.3427256353812287,0.3458505272810637,0.3497416227158915,0.3529189257344597,0.3551201591917955,0.3604376945571172,0.3641680592026736,0.3664251580083243,0.3701578192252511,0.3736416829200334,0.3758673862760215,0.0,1.8179186897228377,58.38754060800202,185.22942330071777,269.2212840705351,fqhc4_80Compliance_implementation,37 -100000,95818,44406,418.8044000083492,6201,63.62061408086164,4908,50.648103696591456,1885,19.30743701600952,77.39792083527668,79.70288922376292,63.37134666233783,65.07207463299024,77.16723207422577,79.47355086818014,63.28572108538841,64.98965371238006,0.2306887610509136,229.33835558278304,0.0856255769494183,82.42092061017559,160.04758,112.06369777032924,167032.8956980943,116954.74521523016,351.23788,226.74628213856704,365979.3880064288,236054.48922630007,362.45075,174.90589156933,374559.9156734643,179742.6282729892,3507.18724,1591.9219958654935,3620199.764136175,1621546.5718941493,1156.3329,504.148214562396,1194738.0972259908,514254.023600906,1853.15128,774.3827249568596,1899875.1800288048,778663.1478985318,0.38122,100000,0,727489,7592.404349913378,0,0.0,0,0.0,29866,311.08977436389824,0,0.0,33257,343.4114675739423,1614029,0,57880,0,0,6382,0,0,55,0.5740048842597424,0,0.0,0,0.0,0,0.0,0.06201,0.1626619799590787,0.3039832285115304,0.01885,0.3260568793235972,0.6739431206764027,24.73811549036481,4.345702734336275,0.3162184189079055,0.2410350448247758,0.2214751426242868,0.2212713936430317,11.11579339701181,5.699123739845165,20.10144853406601,12399.354847638053,55.51330063045858,13.996659534609892,17.550153336521507,12.135762691548477,11.830725067778706,0.5696821515892421,0.790363482671175,0.7036082474226805,0.594296228150874,0.1132596685082873,0.7299382716049383,0.9396135265700484,0.8521303258145363,0.7374517374517374,0.1160714285714285,0.5121816168327796,0.7100130039011704,0.6522116218560278,0.5495169082125604,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025208552684862,0.0049549595192979,0.0069983264871443,0.0093823299452697,0.0115179733246584,0.0138812562333353,0.0162417721261029,0.018281050752359,0.020700083781188,0.0227742423932393,0.0251009159272995,0.027350883312473,0.0295583204052068,0.0316130692050424,0.0337452716422217,0.0356519674145354,0.0375539255749474,0.039510369917393,0.0417661841367422,0.0437755643675648,0.0584400004172795,0.072067360493698,0.0848634194935248,0.0971906804609302,0.1098274426302086,0.1257928788903924,0.1386019977519988,0.1508259185150496,0.1617510388514415,0.1722096502611512,0.1854747520434206,0.1978065953557793,0.2098506424332021,0.2203006285870456,0.2297711854156816,0.239948191117212,0.2486313512549199,0.2573432704953967,0.2662865434100003,0.2735062290505989,0.2821227113001665,0.2891690129326962,0.2964491374111693,0.3022916292706276,0.3083468690150064,0.3134862554578439,0.3190524948803756,0.3231814142440015,0.3272062150179031,0.3320041061276058,0.3309848759343505,0.3297117851214727,0.3280784578204912,0.3273248609550157,0.326156536170465,0.3252403479322447,0.323871436009909,0.3236960151926918,0.3244689918516246,0.325227313246568,0.3258853446019221,0.3263647838434838,0.327276529012023,0.3281358358873403,0.3280497205627288,0.330055043956904,0.3304452260444368,0.3335544185458909,0.3378687198959322,0.3412194347411876,0.3435888072305655,0.3458586504637032,0.3477162170699349,0.3475833588253288,0.3515817389657132,0.3521210676835081,0.3546949439065621,0.3599757183326588,0.354997269251775,0.3569254185692542,0.0,2.147034562167688,56.94253035263676,182.1702022074881,272.6054163134924,fqhc4_80Compliance_implementation,38 -100000,95551,44335,419.9118795198376,6240,64.10189322979352,4904,50.70590574666932,2056,21.11961151636299,77.19945181010942,79.6720827705257,63.224607941291474,65.05435812785983,76.93728298894979,79.41003954381789,63.12616384605426,64.9589023982427,0.2621688211596336,262.0432267078172,0.0984440952372125,95.45572961712878,159.13854,111.44518581121258,166548.04240667287,116634.02665928417,348.46282,224.4945505144195,364084.0702870718,234344.21356806267,356.42188,172.1092988375804,369854.4546891189,177680.57155276867,3557.76876,1630.32228571163,3678589.800211405,1661468.9266576276,1207.10726,529.7820143579936,1249899.9487184854,541037.4086697084,2016.0437,855.4023689381163,2071835.417735032,861756.3283605066,0.37985,100000,0,723357,7570.365563939676,0,0.0,0,0.0,29642,309.5833638580444,0,0.0,32632,338.2905464097707,1610585,0,57836,0,0,6198,0,0,68,0.7116618350409729,0,0.0,0,0.0,0,0.0,0.0624,0.164275371857312,0.3294871794871795,0.02056,0.3292645712541959,0.670735428745804,24.68165915059421,4.377022270228085,0.3179037520391517,0.2204323001631321,0.2251223491027732,0.2365415986949429,10.910669645437302,5.614516806768236,22.013051594547782,12381.773189105645,56.00998181835569,13.1218467884442,17.763400810817497,12.3418258903254,12.782908328768606,0.5548531810766721,0.7733580018501388,0.7042976266837716,0.5887681159420289,0.118103448275862,0.7085843373493976,0.8877805486284289,0.8851674641148325,0.7246963562753036,0.1374045801526717,0.4977628635346756,0.7058823529411765,0.6380368098159509,0.5495915985997666,0.1124721603563474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024125452352231,0.0046975507802195,0.0069766024859858,0.0089881242882707,0.0113206010506169,0.0134865134865134,0.015532989743328,0.0178009401185366,0.0199345067539909,0.0221871509238668,0.0244310541281295,0.0265493095328678,0.0285064005520025,0.030533721194116,0.0328211063689067,0.0352872980218824,0.0373470234391205,0.0393285870186561,0.0413446113460697,0.0430974181222137,0.0575872962738247,0.0714120928671798,0.0853893134585667,0.0975879619384819,0.1095807876878844,0.1255221696812909,0.1378928776626306,0.1499290219978439,0.1617289374149514,0.1725105943597134,0.1855260315402895,0.1975555217853808,0.2093048630129513,0.2199743271857548,0.2302130477977701,0.2405,0.2497341586541152,0.2593800794654144,0.2683035104493921,0.2756976597235785,0.283544333174745,0.2898615348509739,0.2965873345599145,0.3018040214896098,0.3066845408567424,0.312084894809098,0.3177567744205922,0.3224974463738508,0.3272375159219111,0.3313466836194109,0.3305623141389565,0.3290490916119057,0.3281062371971462,0.3272606055335739,0.3265257410529142,0.3240907343329489,0.3217260012714558,0.32208644601659,0.3232925174741108,0.3246687968980002,0.3255099347735927,0.3262689119067973,0.3269506840060801,0.3279927992799279,0.3283336160314037,0.3289539375147804,0.3301043433269137,0.332689323155861,0.3369103272418189,0.3397934362164533,0.341305635278575,0.3453860040352554,0.3490097453630933,0.3498817966903073,0.3504273504273504,0.3521160247265811,0.3577186311787072,0.36048839071257,0.3606019151846785,0.3666026871401152,0.0,2.3955141741640777,58.21488479960802,190.53276237360896,261.0508505623731,fqhc4_80Compliance_implementation,39 -100000,95687,44631,421.2693469332302,6247,64.12574330891344,4863,50.28896297302664,1947,20.05497089468789,77.33990302576841,79.73121662699698,63.32261558699434,65.089418353568,77.09607958579738,79.4858615893699,63.23267104660077,65.0010377206537,0.2438234399710239,245.35503762707836,0.0899445403935672,88.38063291430842,157.73802,110.54486370708253,164847.91037445003,115527.56770207296,346.33718,223.3588343293665,361436.7991472196,232915.3221747641,359.45894,173.85409567314446,372178.2373781183,179069.9352427923,3506.21067,1597.3875327519431,3629133.372349431,1634271.857986919,1131.79785,500.56947457001456,1169590.4668345752,509910.0761545604,1904.1973,798.7036182073144,1962052.525421426,809747.0123895963,0.38138,100000,0,716991,7493.086835202274,0,0.0,0,0.0,29429,307.0114017578145,0,0.0,32873,340.0879952344624,1625292,0,58326,0,0,6282,0,0,62,0.6479459069675086,0,0.0,1,0.0104507404349598,0,0.0,0.06247,0.1637998846295033,0.3116696014086761,0.01947,0.3375076359193646,0.6624923640806353,24.617610284207007,4.424074042548446,0.3187332922064569,0.2311330454451984,0.2317499485914045,0.2183837137569401,11.25744734237618,5.767998538239699,20.71144665225652,12399.763743524556,55.19494754402454,13.361239633735575,17.63897788856713,12.563189540315967,11.63154048140587,0.553979025293029,0.7784697508896797,0.6929032258064516,0.5590062111801242,0.1082862523540489,0.7131960335621663,0.8953771289537713,0.8640776699029126,0.6792452830188679,0.1390134529147982,0.4952139639639639,0.7110799438990182,0.6309314586994728,0.5220417633410673,0.100119189511323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.004733667832345,0.0071739505433734,0.0094766993052451,0.011795450616719,0.0142918219019116,0.0164002935540424,0.0186678370213113,0.0209457801766437,0.0231632172613564,0.0253318980983136,0.0277156172370609,0.0299440605462323,0.0320238144287421,0.0342033831831645,0.0362811088019686,0.0381985454093367,0.0401494706248702,0.0424949807030136,0.0443135619722714,0.0589992687767679,0.0721419597989949,0.0857331696723633,0.0984389463940082,0.1107735476861082,0.1259705913466624,0.1382620964747568,0.1510739297954318,0.1621419569814383,0.1723221082199564,0.1853570813232253,0.1982687729928587,0.2097696774614497,0.2204887115290001,0.2302010985019427,0.2407979707351654,0.2490961838875251,0.2584750053443445,0.2670002042066571,0.2749181041394635,0.2822840884118484,0.2889709836563866,0.2949665818891583,0.3004180291542396,0.306611961495976,0.312518474726574,0.3172824374015058,0.3217987358996859,0.3259501049195616,0.3293510402365614,0.3290218270008084,0.3279103696974702,0.3271128150194509,0.326379445039206,0.3251085727883872,0.3231263875066983,0.3219343914674094,0.3229698452042877,0.3234235617186034,0.3244563279857397,0.3255095738109944,0.3270852673369018,0.3262507850115135,0.3288928691369081,0.3291249036237471,0.3310789638604554,0.3313251292008109,0.3351312137269745,0.337839740881566,0.3426609510200841,0.343732920386227,0.3463461333900648,0.3497288434859377,0.3550625190606892,0.3581347344717583,0.3609958506224066,0.3595092024539877,0.3563265306122449,0.3621123218776194,0.3610248447204969,0.0,2.0674943908670165,57.64863240138783,181.60173665835256,266.08354214060364,fqhc4_80Compliance_implementation,40 -100000,95778,44810,424.1997118336152,6130,62.811919229885774,4788,49.33283217440331,1867,19.06492096306041,77.331780499572,79.67461872759252,63.32970022966426,65.06352204180443,77.10069481789772,79.44511047071083,63.24412207848709,64.98133615134972,0.231085681674287,229.50825688168663,0.0855781511771738,82.18589045470992,159.56314,111.78305908602331,166596.8594040385,116710.57976364436,350.28827,225.95334153921456,365064.5868571071,235249.27245897145,360.9828,174.80898695076644,372695.6399173088,179179.09777536968,3394.09621,1535.8627168271837,3501433.700849882,1561441.2955599094,1106.78111,490.4898674927181,1138833.5630311763,495569.0313524946,1830.9513,765.4627194864864,1872377.3935559315,765905.7867262702,0.38351,100000,0,725287,7572.584518365386,0,0.0,0,0.0,29818,310.63501012758667,0,0.0,32971,340.05721564451125,1614379,0,57965,0,0,6341,0,0,68,0.6995343398275178,0,0.0,2,0.0208816220844035,0,0.0,0.0613,0.1598393783734452,0.3045676998368679,0.01867,0.3335407591785936,0.6664592408214064,24.738343908211554,4.334927894311385,0.3308270676691729,0.231829573934837,0.2167919799498746,0.2205513784461152,11.37721252267431,5.924908054497228,19.81304814397903,12425.57621636689,53.87718605070475,13.282485164121702,17.667797769673804,11.424490853285889,11.502412263623368,0.5580618212197159,0.8036036036036036,0.6843434343434344,0.5674373795761078,0.1013257575757575,0.7348066298342542,0.9314420803782506,0.8663239074550129,0.7222222222222222,0.1402714932126696,0.4944618006248225,0.7248908296943232,0.6251046025104603,0.5223880597014925,0.0910179640718562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904786021777,0.0045821337334252,0.007093062193674,0.0091328375797472,0.0113602847698957,0.0137577775741097,0.0156807569176811,0.0179264159418514,0.0200159473329108,0.0221733121768951,0.0242854799688358,0.0264390003490974,0.0288214366504205,0.0309020302633883,0.0330980246454888,0.0351379570570539,0.0371275593160658,0.0391329150028522,0.0408712550270708,0.0427548002832271,0.0577818128691586,0.072251221272634,0.0859191546460919,0.0987673780776142,0.1115150365640344,0.1255376031616877,0.1389189189189189,0.1507698524095104,0.1624745216472622,0.1737658553308193,0.1864209755887544,0.1988643123681791,0.2105286051392468,0.2211990638465408,0.2317969712977637,0.2419031368073484,0.2512164092491741,0.2598287906228557,0.2685394150402032,0.2759556272967682,0.282558179863351,0.2891854933906803,0.2954545454545454,0.3013805335186827,0.3071802533921261,0.3123882566182908,0.3163536188329576,0.3212834006549522,0.3262642106218322,0.3314888671720239,0.3308870066387471,0.3295203002763532,0.328517924023542,0.3272955938475771,0.3276861346411057,0.3259477184272624,0.3240686453166843,0.3245449766738945,0.3251214671867515,0.3263772358884644,0.3278574777308954,0.3288290957940694,0.3301712558764271,0.332728941418754,0.3338720571208027,0.3350403678833643,0.3364832843235218,0.3408812152089819,0.3435668923897407,0.3477534791252485,0.350810687371546,0.3530949839914621,0.3541004450095359,0.357597118994713,0.3564000756286632,0.3590048803713843,0.3556001234186979,0.3544919894544717,0.3551427779317992,0.3521293375394321,0.0,2.5356958685731628,55.0288199459896,171.15266981883417,271.42121653796045,fqhc4_80Compliance_implementation,41 -100000,95703,44760,422.4110007000825,6248,64.15681849053844,4928,51.07467895468272,1896,19.53961735786757,77.34192318165195,79.71752193649277,63.32298576779221,65.07522916845453,77.09675656478471,79.46975159732747,63.23246075198784,64.98570382738752,0.2451666168672375,247.77033916529945,0.09052501580436,89.52534106700227,158.6431,111.08765990371728,165766.06793935402,116075.42073259696,349.43397,225.14365470881637,364686.049549126,234816.5865418588,364.94904,175.81328739667114,378674.29443173145,181646.5939511988,3514.23784,1603.2909096975518,3644376.853390176,1647747.6322956888,1173.29055,514.7259927135467,1215979.7394021086,527906.4231729332,1859.90056,785.7697081463313,1917936.0730593607,798642.3382570329,0.38286,100000,0,721105,7534.821269970638,0,0.0,0,0.0,29602,308.87224015966063,0,0.0,33401,346.3632279029915,1618378,0,58139,0,0,6299,0,0,82,0.8568174456391127,0,0.0,2,0.0208979864790027,0,0.0,0.06248,0.1631928119939403,0.3034571062740077,0.01896,0.3365413993278338,0.6634586006721662,24.83967991492244,4.382658396915265,0.3252840909090909,0.2368100649350649,0.2197646103896104,0.2181412337662337,11.242245958297447,5.759986068938422,20.18029479083683,12460.483562165213,56.01631939676161,13.976852426463482,18.17364222029988,12.003689087370182,11.86213566262807,0.5693993506493507,0.8106255355612683,0.6905801621958827,0.5854108956602031,0.1106976744186046,0.7288519637462235,0.9253393665158371,0.8689320388349514,0.7336244541484717,0.1244813278008298,0.5108213096559379,0.7406896551724138,0.6288832913518052,0.5456674473067916,0.1067146282973621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002409809341555,0.0046218870678383,0.006989460016028,0.0095476059885835,0.0118678368401248,0.0141312536906192,0.0164651428338396,0.0185841340508306,0.0207881712953495,0.0230686530486868,0.0252232669257349,0.0272534965394015,0.0292311648238621,0.031230358670005,0.0337338453280482,0.0362032594308405,0.038378271993702,0.040346270020033,0.042357370161609,0.0443911842859375,0.0593199979108998,0.0732235974115725,0.0862564813065474,0.0993139153127367,0.111569550260642,0.1273454614725211,0.1404378663042555,0.1515354871696545,0.1635506525991726,0.1739788524502173,0.1868712463474332,0.1991032070097152,0.210325797076208,0.2210256746995863,0.2303331205002312,0.2405150252637177,0.2505470459518599,0.2596795802794384,0.2683571590651236,0.2762124023549355,0.2839620458227262,0.2904814836482771,0.2969062644297368,0.3024165017689033,0.307944725999927,0.3129745587220195,0.3178175169684674,0.3224595255065675,0.3266181827609899,0.3314266087163295,0.3311971289412971,0.3299223566079629,0.3292448835568101,0.3279994217982075,0.3272271128067336,0.3266099412340842,0.3247947091119092,0.3243252128743794,0.325216052023616,0.326188307164675,0.3269270432940206,0.3276507276507276,0.3289923456013421,0.3303829520245591,0.3318657524359437,0.3338109629012088,0.3361136415395126,0.3400766476094741,0.3434085177920986,0.3454761433379529,0.3473746259182008,0.3507889441914645,0.3533834586466165,0.3566932119833144,0.3567158602652718,0.3534371706288792,0.3567022717015194,0.3604071043703851,0.3584239130434782,0.3603871928518243,0.0,1.632703236817153,58.93541931755325,186.8141143326988,266.8194032012036,fqhc4_80Compliance_implementation,42 -100000,95740,44136,418.5084604136202,6167,63.18153331940673,4842,50.0104449550867,1892,19.33361186546898,77.32392886815877,79.68802023210866,63.31606620966248,65.06499337348767,77.0838330287339,79.45121177406067,63.22640383950625,64.97966782382919,0.2400958394248675,236.8084580479888,0.0896623701562333,85.32554965847794,159.28726,111.56318772248676,166374.82765824106,116527.2485089688,346.69342,223.81662745333597,361547.9005640276,233203.64262934605,354.50917,170.82472286663344,367164.74827658245,175976.624844726,3456.32769,1570.4257428388744,3569654.856904115,1599838.7433036077,1141.61135,501.63802155341466,1178047.482765824,509598.21553521417,1853.92842,783.2396749870892,1896285.8575308125,783167.9504716814,0.37986,100000,0,724033,7562.492166283685,0,0.0,0,0.0,29531,307.8650511802799,0,0.0,32526,336.6409024441195,1616411,0,58087,0,0,6336,0,0,55,0.574472529768122,0,0.0,0,0.0,0,0.0,0.06167,0.162349286579266,0.3067942273390627,0.01892,0.3328185328185328,0.6671814671814672,24.471425097569465,4.344120943498392,0.3145394465097067,0.2434944237918215,0.2209830648492358,0.2209830648492358,11.479723213517856,6.053012234937193,20.169887045215184,12331.663621550142,54.64816560780382,13.956202079728078,17.094013677616584,11.854527338175702,11.743422512283448,0.5729037587773648,0.7896522476675149,0.7058437294812869,0.6,0.1177570093457943,0.7309205350118018,0.9308641975308642,0.8655913978494624,0.7665369649805448,0.1392405063291139,0.5166619994399327,0.7157622739018088,0.6542137271937446,0.5473554735547356,0.1116446578631452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106880589909,0.0048363057518579,0.0070939980108388,0.0095104554044991,0.011758961630793,0.0138492871690427,0.0157718736618885,0.0180060632662018,0.0199061436064165,0.0218797993242551,0.0240321522309711,0.0259661587744876,0.0280670731080428,0.0298922560309841,0.0319897632757517,0.0336985734959685,0.0359018448120487,0.0379158233431937,0.039827794184934,0.041632372399279,0.0564093462237163,0.0702650108285119,0.083502862775529,0.0974142735465146,0.1095399280841057,0.1251573458011149,0.1381128712240978,0.1500777273792031,0.1616855372783593,0.1722592679945968,0.1855225053558548,0.1985984340528615,0.2100960022614349,0.2203621492772322,0.2302226328757479,0.2407021818584561,0.2501032331506758,0.2582126337823694,0.2665811257338163,0.2750708117839983,0.2821891769723803,0.2895936617324754,0.295303048274226,0.301037314507996,0.3058138968690655,0.3108513448458889,0.3158178489932044,0.320370157928951,0.3243558807503697,0.3278818567632243,0.3274292112398656,0.3267566822816203,0.3265283088079685,0.3244894119009365,0.3238575508746876,0.3225411216957147,0.3205785542473731,0.3219488188976378,0.3225663187742343,0.3231148067520788,0.3238674653687757,0.326121747377156,0.3274775434996545,0.3282360831656606,0.328805001202212,0.3291795927943898,0.3299074733096085,0.3335225659948907,0.3371329757199322,0.3410683012259194,0.3448511959101698,0.3467587672688629,0.3489251717833953,0.3497829563628056,0.3524187452758881,0.3552082090442668,0.3581953516633753,0.3576237623762376,0.3541001064962726,0.3522727272727273,0.0,2.194033088697687,55.72868557074736,177.9124472620272,271.4288968864318,fqhc4_80Compliance_implementation,43 -100000,95791,44376,418.5361881596392,6250,63.98304642398556,4923,50.7563341023687,1975,20.179348790596197,77.4066300966336,79.7461043705561,63.35719594835807,65.08801096877166,77.16341814726768,79.50568698954577,63.26724532471655,65.0018619091072,0.2432119493659286,240.4173810103316,0.0899506236415206,86.14905966445008,160.00556,112.03652936077594,167034.96153083275,116958.36130403185,350.64663,226.38474404893324,365404.7144303744,235686.49037267623,360.37618,174.33383158881006,372457.308097838,179066.45256347497,3545.5599,1606.555253555294,3654952.803499285,1631213.6091312608,1188.89711,521.0023308917974,1225499.8277499974,528654.9989625238,1939.93814,810.9556917285737,1983456.6295372215,810931.6870941083,0.38082,100000,0,727298,7592.498251401489,0,0.0,0,0.0,29795,310.3527471265568,0,0.0,32970,340.51215667442665,1613615,0,57954,0,0,6280,0,0,76,0.7829545573174933,0,0.0,0,0.0,0,0.0,0.0625,0.1641195315372091,0.316,0.01975,0.3361357383063283,0.6638642616936716,24.777977462263404,4.414776271284056,0.3191143611618932,0.2299410928295754,0.221612837700589,0.2293317083079423,11.397267656590389,5.901716320482359,20.93475761357704,12396.067939502627,55.57174308210781,13.458599468194228,17.698887314199037,12.17111497068348,12.243141329031063,0.5553524273816779,0.7985865724381626,0.683004455760662,0.5829514207149404,0.1071744906997342,0.728049728049728,0.9305912596401028,0.8636363636363636,0.7553956834532374,0.1026785714285714,0.4942244224422442,0.7294751009421265,0.6221276595744681,0.5239852398523985,0.1082872928176795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019150100310049,0.0043195230273164,0.0063831298647263,0.0089816404702152,0.0114116007770466,0.01381845583593,0.0161497522481189,0.0182207931404072,0.0205752483748313,0.022534692373818,0.0247914403427142,0.0267097634805807,0.0289528860384805,0.0309865244649419,0.0331103299693842,0.0354388030110591,0.0374186607078199,0.0395907196616284,0.0418376570080932,0.0439150850086934,0.0587032283645318,0.0730921678745856,0.0862743042817462,0.0988639110466521,0.1107037118985154,0.1270750340775806,0.1392580816110228,0.1508585402158311,0.1620165377433982,0.1725504477100381,0.1857247374763298,0.1982916148564632,0.2103793369481359,0.2211812493857896,0.2310092166404851,0.2420393441171914,0.2521216446788817,0.2601281474820144,0.2681643437928805,0.2753702813451457,0.2824998554662658,0.2895524132289354,0.2952149997042645,0.3010551782784185,0.3060208184037604,0.3113770241293471,0.3168575899843505,0.3214317525353421,0.3253057311638512,0.3298650540048063,0.3289436439364326,0.3281299470025466,0.3269244322907123,0.3261721291329931,0.3252747252747253,0.3240617493612399,0.3230310017530283,0.3240164953852196,0.3249881025222653,0.3256453961151948,0.3259436340884896,0.327068778903867,0.3279239064683674,0.3281211716226751,0.3278704213221045,0.3275267646525132,0.3289619034131142,0.3321878221750133,0.3364968597348221,0.3378154574132492,0.339376130198915,0.3415622697126013,0.3451631011039731,0.3478718604301398,0.3522769344687153,0.3577254719179678,0.363302752293578,0.3660732146429286,0.3583608360836083,0.363356428021555,0.0,2.3598950101686893,56.27257490382124,184.3297995932678,272.36798665334766,fqhc4_80Compliance_implementation,44 -100000,95688,44605,420.95142546609816,6273,64.35498704121729,4966,51.302148649778445,1981,20.389181506562995,77.29491858535671,79.70037720773946,63.29396199958445,65.07530653854398,77.04369971781058,79.44747670756182,63.20053192271249,64.98354014271803,0.2512188675461289,252.90050017764543,0.0934300768719609,91.76639582595668,157.76332,110.61260620727109,164872.62770671348,115597.1555547938,348.42384,225.12735208703467,363463.62135272974,234611.09080447408,365.5351,177.78367615412728,378353.921076833,182891.4649949189,3545.42735,1633.8912787085524,3664873.630967311,1667208.0191876593,1168.05654,522.1612556022001,1208589.1438842907,533587.8016075166,1937.1526,816.23389779721,1995155.5889975757,827368.907265729,0.3817,100000,0,717106,7494.2103503051585,0,0.0,0,0.0,29653,309.2759802692083,0,0.0,33538,346.8459994983697,1620694,0,58180,0,0,6364,0,0,57,0.5852353482150322,0,0.0,0,0.0,0,0.0,0.06273,0.1643437254388263,0.3157978638609915,0.01981,0.3273337400854179,0.6726662599145821,24.465651112768143,4.301716135422195,0.3209826822392267,0.2368103101087394,0.2211035038260169,0.2211035038260169,11.176724793858968,5.881313111583639,21.11605274958808,12442.47562737516,56.59945331446799,14.23983460739283,18.09952779897269,12.218502549036565,12.041588359065909,0.5734997986306887,0.798469387755102,0.6951066499372648,0.6211293260473588,0.1083788706739526,0.732566498921639,0.9300225733634312,0.8531468531468531,0.7581227436823105,0.128099173553719,0.5116083916083916,0.7189631650750341,0.6369098712446352,0.5749086479902558,0.102803738317757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002615386174947,0.0051549007072767,0.0074747372162697,0.0094962126988968,0.0116045889023484,0.0138411831255796,0.0162047430507367,0.0182873255552604,0.0207472275647583,0.0231614747129144,0.0254703239439509,0.0275112489983768,0.029625742187098,0.0317633721529423,0.0341766533510874,0.0361851970588539,0.0382582744399079,0.0403251762409543,0.0423099330032041,0.0442781350649892,0.0586416529132805,0.0725001832134593,0.0859979221978529,0.0994633838383838,0.1120360405984258,0.1276663280853225,0.1398745396070606,0.1516274315648257,0.1630319802540897,0.1732977102512929,0.1865270460984885,0.1990738236153338,0.210090246819615,0.2212117568616306,0.2306008645057688,0.2411898908011606,0.2508174584574866,0.2593372205587699,0.2674504458454024,0.2755880227984266,0.2821267230394996,0.2889661713563073,0.2953912847785661,0.3015779684406312,0.3077867756134335,0.3137470367443698,0.3185401496446878,0.3228377535300034,0.3272491909385113,0.331266899690035,0.329991252271045,0.3291403747542651,0.3278824755626919,0.3272635306019221,0.3267972884581078,0.3246364807656911,0.3226359394343396,0.3234824675431524,0.325115984455515,0.3253257912072175,0.3264765056503018,0.3277094084954347,0.3280691424485847,0.3299499225258808,0.3323809293203225,0.3345921846315237,0.3346810035842293,0.3374252538994526,0.3388057072397393,0.3414322760821863,0.3429619440623567,0.3483870967741935,0.3514707738921853,0.3535245651510528,0.3576477240599378,0.3623568702290076,0.3650236532885701,0.3683353683353683,0.3672409078479628,0.365049279757392,0.0,2.288986921418239,61.03845196570845,183.206422434144,267.71569300285955,fqhc4_80Compliance_implementation,45 -100000,95711,44056,416.89043056701945,6172,63.16933267858449,4842,49.910668575189895,1851,18.94244130768668,77.3593554540744,79.73134563744915,63.33143217950936,65.08428970120575,77.13172573839378,79.5061436998378,63.246640807601146,65.00290943687833,0.2276297156806208,225.2019376113452,0.0847913719082171,81.38026432742151,159.45358,111.71279279484808,166599.01160786118,116718.86491087552,348.25985,224.95578615972968,363221.5941741284,234392.6897059781,360.88145,174.63644234937018,372392.23286769545,178893.2267854737,3426.52146,1564.9389615239652,3537665.2004471794,1592716.9020228249,1137.36819,501.1777706537112,1173758.5335018963,509098.6313297133,1819.23032,762.9973184900198,1864554.2309661373,766834.5456414064,0.37727,100000,0,724789,7572.682345811871,0,0.0,0,0.0,29606,308.63746068894903,0,0.0,33006,340.2221270282413,1617701,0,57894,0,0,6309,0,0,77,0.8045052292839904,0,0.0,0,0.0,0,0.0,0.06172,0.1635963633472049,0.2999027867790019,0.01851,0.3373438223044886,0.6626561776955113,24.428540936348725,4.286264700563509,0.3283767038413878,0.2379182156133829,0.2178851714167699,0.2158199091284593,10.902922098169771,5.541070487662368,19.680833535026174,12276.252563848488,55.13221243096618,13.979416979310828,17.96617659865425,11.858599729301742,11.328019123699342,0.5679471292854192,0.7994791666666666,0.6918238993710691,0.5781990521327014,0.1138755980861244,0.7362804878048781,0.927400468384075,0.8599033816425121,0.6867924528301886,0.1553398058252427,0.5053824362606232,0.7241379310344828,0.6326530612244898,0.5417721518987342,0.1036948748510131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573552647571,0.0044806228268472,0.0068596710199194,0.0091710507606995,0.0114293849079243,0.0137436753642073,0.0158010092257505,0.0179654165730967,0.0202101776696448,0.0223282384135791,0.0245500692201199,0.0265925758540643,0.0285508513812438,0.0305590471676729,0.032464115079406,0.0345779321466228,0.036411259848226,0.038220193953223,0.0402099901242268,0.0424352898286547,0.0564089176630292,0.0708035919871056,0.0847974992919555,0.0979905574073879,0.1099066800231981,0.1250502443461888,0.1365266665251809,0.1482502741432358,0.1590933378930044,0.1703762529243845,0.1829791361324252,0.1950459033431491,0.2061518039778909,0.2168574492766311,0.2269637919829039,0.2377952755905512,0.2471994192215335,0.2557851751020913,0.2642472935248859,0.2727408120245623,0.2800615519894482,0.2870454811177365,0.2933394807774152,0.2990592684795097,0.3042718658626839,0.3103588354773189,0.3157170554756395,0.3205367694712363,0.325400007760862,0.3293454200484874,0.3285725802117483,0.3276778722644283,0.3262746970356536,0.3257400238879855,0.3245368519258963,0.3232031977054632,0.3217291266114035,0.322921774378085,0.3230088495575221,0.32380918514304,0.3244805206950081,0.3255171324806569,0.3255131349980082,0.3264318365151922,0.3261408193211614,0.3265279550011718,0.327566090890982,0.3307017267952065,0.3328188578644591,0.3343627509205368,0.336565601383957,0.3384149580367577,0.3407853071564281,0.3437096651734872,0.3419771578356113,0.3455787118803721,0.3494599117602312,0.3509827517047734,0.3485838779956427,0.3438210765731614,0.0,2.649516123566597,57.17832004541038,186.50926640877972,257.5811980999395,fqhc4_80Compliance_implementation,46 -100000,95880,44325,417.7200667501043,6095,62.24447225698791,4716,48.52941176470589,1802,18.39799749687109,77.4394230829848,79.71912127545724,63.39129033748679,65.07691298014599,77.21855387414031,79.50123424469322,63.30901675174088,64.99835090344274,0.2208692088444905,217.88703076401816,0.0822735857459022,78.56207670324977,160.47834,112.33589999806384,167374.15519399248,117163.01626831856,348.66107,225.6463681880461,362955.068836045,234655.05929938605,355.37305,172.26252180089128,366051.8669169796,176232.93058077653,3354.30348,1524.381317513739,3458363.0267000417,1549865.6172590456,1106.03282,491.9542689655525,1139004.8289528578,498585.1997725738,1773.6136,742.9597552998384,1814260.4714226115,744116.0538898357,0.38035,100000,0,729447,7607.916145181477,0,0.0,0,0.0,29646,308.4793491864831,0,0.0,32581,335.31497705465165,1614739,0,57955,0,0,6371,0,0,66,0.6779307467667919,0,0.0,0,0.0,0,0.0,0.06095,0.1602471407913763,0.2956521739130435,0.01802,0.328982544425224,0.6710174555747759,24.728475108169544,4.331220829024669,0.3237913486005089,0.2419423240033927,0.219041560644614,0.2152247667514843,11.173714385222905,5.573204717824995,19.166814240668533,12318.27028266467,53.34805876638702,13.62647591786921,17.19309080128872,11.394376015294952,11.134116031934138,0.568490245971162,0.7765118317265557,0.6823837590045841,0.6060019361084221,0.1251231527093596,0.7586477987421384,0.9263657957244656,0.8717277486910995,0.7358490566037735,0.230392156862745,0.4982578397212543,0.6888888888888889,0.6192139737991267,0.5611979166666666,0.0986436498150431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025612472160356,0.0050265515424216,0.0074052282940585,0.0096051335682157,0.0119832904753676,0.0141124519240552,0.0160325948561242,0.018359853121175,0.0206571043275714,0.0229853311237954,0.0251542039795897,0.0274363341610063,0.0296462996074562,0.03171580334349,0.0337635827542835,0.0354070938096959,0.0374297803664352,0.0395287632625994,0.0416510942236618,0.0436297814349766,0.0583520091728774,0.0723980482096398,0.0860505539151012,0.09894909239798,0.110949704204299,0.1257931354849607,0.1375643442709767,0.1489198924674055,0.1593143003347476,0.169886235940025,0.1834121694259299,0.1959417847071407,0.2075408162156877,0.2183167072757667,0.2285456684515497,0.2384267200832235,0.24814719878746,0.2579391379562126,0.2664144274774571,0.2738474903695575,0.2811742153036007,0.2878688830780724,0.2943331127705832,0.3002501286546908,0.3048369090379574,0.3092491597828362,0.3146071629476842,0.3191754201013578,0.3238894130724192,0.3284407292832225,0.3276158726744811,0.3266889062778853,0.3259745369719794,0.3248467363865849,0.3234945296053607,0.3223332416659027,0.3197744218374826,0.3206015677418299,0.3211621649238734,0.3221071733561059,0.3232047810253058,0.3246006263911596,0.3255794546554565,0.3267799622348106,0.3280041996754796,0.3287632179141613,0.329313071969269,0.3318391233968372,0.3351026922009436,0.3375868703129294,0.3388723768350896,0.3373677840340999,0.3391721730457549,0.345839636913767,0.3472665789968063,0.3487986743993372,0.3477192443557057,0.3512742099898063,0.3598014888337469,0.355631141345427,0.0,2.4700975336873325,55.464371655957,172.14486538382496,260.8260217966501,fqhc4_80Compliance_implementation,47 -100000,95728,44224,417.9550392779543,6194,63.41927126859436,4883,50.3301019555407,1903,19.37782049139228,77.34647984393533,79.69894012333586,63.33814763576003,65.07529280160784,77.10790341494253,79.4663964855064,63.24888656035727,64.99201889234739,0.2385764289928005,232.5436378294654,0.08926107540276,83.27390926045553,160.23304,112.18325238489405,167383.67039946516,117189.59174420655,346.95592,223.5741669791252,361766.3901888685,232878.5485742157,358.0188,172.97214203542896,370153.7063346148,177695.41592594568,3463.95979,1588.1626642916926,3568576.665134548,1609069.3885714656,1173.50241,519.4140952538802,1205495.0693631957,522218.07940844406,1866.81854,786.9949887366319,1902649.0264081564,780697.4340038392,0.37951,100000,0,728332,7608.348654521143,0,0.0,0,0.0,29552,307.987213772355,0,0.0,32819,339.01261908741435,1614005,0,57984,0,0,6317,0,0,71,0.7416847735249875,0,0.0,1,0.0104462644158448,0,0.0,0.06194,0.163210455587468,0.3072328059412335,0.01903,0.3331278890600924,0.6668721109399075,24.68463517564077,4.357284187606174,0.3035019455252918,0.2469793159942658,0.2275240630759779,0.2219946754044644,11.365319131428578,5.914607197498791,20.251913549911063,12348.917590244875,55.47973342246268,14.209255776747256,16.894036573207327,12.44333297987417,11.933108092633937,0.5648167110382961,0.7819237147595357,0.6862348178137652,0.5958595859585959,0.1254612546125461,0.7298937784522003,0.9349397590361446,0.86,0.7573529411764706,0.1038961038961039,0.5037868162692847,0.7016434892541087,0.621996303142329,0.5435041716328963,0.1313012895662368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.0048251882938499,0.0070224576572188,0.0092237053290262,0.0112473813736856,0.0136117445838084,0.0159327217125382,0.0181775500622588,0.0204640703260758,0.0225653206650831,0.0244674962586358,0.0263587374903772,0.0282838460273071,0.0306934874187601,0.0326458176415357,0.0347718228332213,0.0371394255658404,0.0391562827469574,0.0410736747996215,0.0430616028832732,0.0578101671556395,0.0712805375871381,0.0840223276115331,0.0965832010011673,0.1085196119780683,0.124011418904631,0.1364513938982475,0.1485328707202077,0.1599871890680047,0.1714340831877565,0.183956424857638,0.1965415436524673,0.2083011813804871,0.2195169926783958,0.2291973530898938,0.2399486362026213,0.2490493236537196,0.257952040311333,0.2663315442486411,0.2750108817667407,0.282616995430092,0.289912870592363,0.2965882993583824,0.3025695751747623,0.3072101075138189,0.3118002783491188,0.3167167167167167,0.3208356673626317,0.3252865218067728,0.329464120645485,0.3288906258422726,0.3274506834794818,0.3260063969790477,0.32466030644695,0.3240037457080428,0.3227744318268892,0.3215986582915368,0.3237768775319414,0.3248898302189731,0.3259477299081259,0.3262184276058342,0.3276263823064771,0.3292585758617797,0.3297512705129066,0.3301543722756063,0.3311246136923158,0.331835484701909,0.3353716194918993,0.3389240506329113,0.3400119024003174,0.3435888072305655,0.3445243804956035,0.3485258062488213,0.3504690717717946,0.3532968071037219,0.3537123108092003,0.3593630378196294,0.3644136807817589,0.3673469387755102,0.3727486296006265,0.0,2.609390730683801,57.41221001466806,183.50700454044232,265.93119105071736,fqhc4_80Compliance_implementation,48 -100000,95733,44558,421.17138290871486,6179,63.36373037510576,4871,50.2230160968527,1935,19.85731148088956,77.41222784566315,79.7677361536787,63.350809200748486,65.08953012436577,77.17646528556476,79.53408635449077,63.26445448644097,65.00677690483683,0.2357625600983937,233.64979918792983,0.086354714307518,82.75321952893933,160.248,112.17585872661984,167390.55498104103,117175.74788904542,348.73984,224.59513923187296,363629.1247532199,233951.06100495427,359.54749,173.6207566855305,370753.9824303009,177764.52600565567,3529.97502,1580.6222724418376,3645037.176313288,1608798.1076972794,1184.54484,512.3108606780592,1223649.8490593631,521453.1359907851,1895.8577,778.1559572247655,1946873.1158534675,783397.1020770142,0.38209,100000,0,728400,7608.661590047319,0,0.0,0,0.0,29684,309.3813000741646,0,0.0,32999,339.9559190665706,1614021,0,57826,0,0,6309,0,0,45,0.4596116281741927,0,0.0,0,0.0,0,0.0,0.06179,0.1617158261142662,0.3131574688460916,0.01935,0.3267722589574042,0.6732277410425958,24.680025149824488,4.410446038230674,0.3360706220488606,0.2155614863477725,0.2217203859577088,0.2266475056456579,11.188653738653793,5.7299802802158855,20.2835512765669,12406.771298010644,54.65853602511134,12.58894050075277,18.23748767487408,11.92150186380015,11.910605985684334,0.5635393143091768,0.7942857142857143,0.7073915699450214,0.5546296296296296,0.1394927536231884,0.737220447284345,0.9302325581395348,0.8771929824561403,0.6929133858267716,0.1745283018867924,0.5034539928156949,0.7149321266968326,0.6526655896607432,0.5121065375302664,0.1311659192825112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0046419703035524,0.0069593799456235,0.0091701194248111,0.0116613629662765,0.0140988446073191,0.0164604439733371,0.018795342999704,0.0210013183309317,0.0232855680655066,0.0255083217184553,0.0277985936457424,0.0296491246106239,0.031687675070028,0.0337209662274411,0.0359092036715455,0.0376391405643282,0.0398821381142098,0.0415661648507028,0.043274439536628,0.0582990541020233,0.0725579448542876,0.0857688353649581,0.0980423096748403,0.1099035600481144,0.1260569118596357,0.1383830022075055,0.1505611038947211,0.1620111134857875,0.172520738761362,0.1860216908514629,0.1990688105679172,0.210495379290076,0.2200048167447563,0.229738065340471,0.2398420865862313,0.2495865367423565,0.2592592592592592,0.2675718940520657,0.275137247710628,0.2825832744787023,0.2893212743801846,0.2956118452965465,0.3011136390851395,0.3059648952441067,0.3118028023344579,0.3160624351716467,0.3213102266235003,0.3263954344149053,0.3306112250802167,0.3295914809152115,0.3291631839296235,0.3287825001052351,0.3272452504317789,0.3277499593802159,0.3251643935703848,0.3235821741046138,0.3242723196086425,0.3249796251018745,0.3259708694803697,0.3263863044287309,0.327347659699735,0.3281259776827614,0.3294193519692219,0.3291515035433825,0.330714378322313,0.3331348531246456,0.3360842789708962,0.3384303868174836,0.3421114785073217,0.3447325623418865,0.3476401647133354,0.3493116395494368,0.3515105740181269,0.3533946317451472,0.353500939849624,0.3546248870141609,0.353046953046953,0.353373231773667,0.3595591030026606,0.0,2.488309980737988,54.70586893446539,177.27171324278223,275.6368252475455,fqhc4_80Compliance_implementation,49 -100000,95733,44604,421.8294631945097,6087,62.42361568111309,4745,49.02175843230652,1826,18.739619566920496,77.32373385663094,79.69573018670907,63.321321634088775,65.07602636988817,77.09516642708996,79.46577691255729,63.235646372253385,64.99216540566326,0.2285674295409734,229.95327415178224,0.0856752618353908,83.86096422491107,159.25756,111.60034557787384,166355.9692060209,116574.58303602083,348.89878,225.5479932715513,363912.4439848328,235074.3353359833,357.33284,172.87185891431778,370093.2593776441,178156.8025573311,3397.99192,1549.584499927416,3510795.681739839,1580789.7410595878,1132.17734,500.0744967739788,1166368.5667429203,507029.42174530576,1789.31034,758.2479549339727,1837064.9410339168,764352.3389805342,0.38106,100000,0,723898,7561.634963910041,0,0.0,0,0.0,29700,309.68422592000667,0,0.0,32706,338.44128983736016,1615927,0,57992,0,0,6212,0,0,71,0.7416460363719929,0,0.0,0,0.0,0,0.0,0.06087,0.1597386238387655,0.2999835715459175,0.01826,0.3316167290886392,0.6683832709113608,24.586698910891947,4.369418845576068,0.3268703898840885,0.2320337197049525,0.2200210748155953,0.2210748155953635,11.211307256375582,5.930338135250796,19.57908332031361,12380.38654778314,53.65247478412606,13.14046497674361,17.356810091985853,11.52494547147524,11.63025424392136,0.5597471022128556,0.7811080835603996,0.6808510638297872,0.6015325670498084,0.1067683508102955,0.7156549520766773,0.9065656565656566,0.8657894736842106,0.7272727272727273,0.1367521367521367,0.5038648726023476,0.7106382978723405,0.6208368915456874,0.5635910224438903,0.0981595092024539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024214792299898,0.0044418753232529,0.006851400730816,0.0093185374875515,0.0116799609311411,0.0137823549185588,0.0156753559335862,0.017791304525446,0.0197662409374904,0.0222131189513031,0.0244180084093939,0.0265998418387782,0.0287536649349313,0.0310484120277817,0.033432768035012,0.0353974981908404,0.0373884044161816,0.0391239391612889,0.0409869303471724,0.0432413282902483,0.057008018710324,0.0721029054676379,0.0852119546403432,0.0979098951265949,0.1101609127528101,0.1255008934141106,0.1385638664644043,0.1512182147036918,0.1626317531850364,0.1729765083041161,0.1854886465185887,0.1971853838997901,0.2087877436962454,0.2194063302902749,0.2299907598891186,0.2407507889928575,0.2498996386993175,0.259308779577987,0.2671640606397333,0.2746661784729453,0.2819632724288967,0.2886821995279381,0.294937576846685,0.3011499760421658,0.3066527435433539,0.3118862507854757,0.3163810692067942,0.3215599893046766,0.3259581858951925,0.3302932713882216,0.3297502626687141,0.3291922043936368,0.3280403880866426,0.3267081644470179,0.3254620123203285,0.3238201799426758,0.3225551301926788,0.3235993375854662,0.3248103639307935,0.3261927251341092,0.3263502761396611,0.3263301446754684,0.3268500451102578,0.3272344523324301,0.3279612632796126,0.3287968235724361,0.3298170383076043,0.3338386230854255,0.3369863979138769,0.3414176871833739,0.3457332418210935,0.3499171698819003,0.3524081115335868,0.3567211103442987,0.3618081007424114,0.3686652391149179,0.3710586443259711,0.3736374646750101,0.374315443592552,0.3766833397460561,0.0,2.092093131965865,54.80610610377407,176.0671612330314,264.39757149829313,fqhc4_80Compliance_implementation,50 -100000,95782,44762,423.21104174061935,6090,62.31859848405755,4782,49.36209308638367,1881,19.21029003361801,77.38153749659537,79.72189052042178,63.350937847410606,65.08219943737494,77.14946753575322,79.49376329193514,63.263090575376665,64.99850624703392,0.2320699608421534,228.1272284866418,0.0878472720339402,83.69319034102318,159.49758,111.73809079256849,166521.22528241214,116658.5410563242,349.32868,226.16840991655909,364134.0439748596,235550.6660004585,363.15302,175.61531720892717,375771.6689983505,180646.04291617204,3390.57849,1550.4531830641863,3502473.199557328,1581383.643548044,1116.63449,499.4411262228117,1151624.595435468,507251.57777328906,1839.52246,778.0653376895724,1881410.870518469,779904.6249527801,0.38358,100000,0,724989,7569.146603746007,0,0.0,0,0.0,29749,309.98517466747404,0,0.0,33236,343.6345033513604,1614042,0,57937,0,0,6352,0,0,59,0.6159821260779688,0,0.0,0,0.0,0,0.0,0.0609,0.1587674018457688,0.3088669950738916,0.01881,0.3351631116687578,0.6648368883312421,24.55522469917794,4.338012775903818,0.3239230447511501,0.2352572145545796,0.2279381012128816,0.2128816394813885,11.194758484029576,5.829095233788415,19.987309247979702,12412.318388416194,53.953784957452896,13.36750036901104,17.491650344616545,11.922481565186793,11.172152678638524,0.5669176076955249,0.7848888888888889,0.6985151710781149,0.5825688073394495,0.1090373280943025,0.7222222222222222,0.9331683168316832,0.8509615384615384,0.7180616740088106,0.1255411255411255,0.5102739726027398,0.7018030513176144,0.6425419240953222,0.5469293163383546,0.1041931385006353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293969900139,0.0048350801792121,0.0072744612637474,0.0094350161989782,0.0115704496004229,0.0137931736514755,0.0161047009418192,0.0183406648363424,0.0204479960759467,0.0227556428673747,0.0251163076670833,0.0270986019584898,0.0288607855233395,0.0308059799843499,0.033017019082001,0.0350471152256571,0.0370876277991638,0.0390272724445688,0.0410753983918888,0.0433134813210611,0.058105922254109,0.0723847972054301,0.0860503637850418,0.0998507807738383,0.1117047622058529,0.1266632142970376,0.139104079015695,0.1508372760618787,0.1620029455081001,0.1726640297563537,0.1854351687388987,0.1976181977479962,0.2093981325478004,0.2200266672495573,0.2299298176137988,0.2402378131815816,0.2507750295514865,0.2583673423499387,0.2677684263061183,0.2756955332516966,0.2826806079252353,0.2896425940864929,0.2965009643943249,0.3018691588785047,0.3072103358671103,0.3124930730866326,0.3174603174603174,0.3218450738258447,0.3266169733674974,0.3312719217278936,0.3305254659220884,0.328515238200022,0.3274545710663474,0.3267052023121387,0.3261951821194513,0.3252842430641632,0.3236288386199924,0.3241598219837036,0.3244709804722052,0.3254846167526231,0.3267959206544884,0.3287271580358374,0.3304415084873317,0.3308378215299349,0.3318144755144132,0.3313210689287294,0.3308428737819948,0.3350541267755459,0.3378109626321482,0.342005527043032,0.3465633636899098,0.350293542074364,0.3529448779260005,0.3553763031732745,0.357727400997084,0.3605145149870191,0.3680608365019011,0.3748745735500702,0.371868978805395,0.3737181921762248,0.0,2.1548669927178525,55.80352490404818,175.00717549632614,265.4482565540025,fqhc4_80Compliance_implementation,51 -100000,95859,44262,418.0410811713037,6205,63.66642673092772,4903,50.584712963832295,1970,20.248489969642915,77.37299817448195,79.67373621024603,63.35320242165369,65.05685094942804,77.13154440934623,79.43195647300632,63.26542622752677,64.97132832260816,0.2414537651357164,241.7797372397104,0.0877761941269241,85.52262681988054,159.48944,111.7430844687388,166378.97328367704,116570.02938559635,349.91603,225.61477651379184,364475.010171189,234804.08361634472,355.32971,171.863995446451,366405.53312678,176106.89912666954,3515.01934,1590.440548268196,3631661.54456024,1623943.1334232537,1167.3967,512.1934725472313,1203078.0208431133,519594.181629854,1942.37726,803.8121132926046,1998233.739137692,814701.8226635165,0.37905,100000,0,724952,7562.680603803504,0,0.0,0,0.0,29806,310.3307983600914,0,0.0,32662,336.51508987158223,1616698,0,58045,0,0,6265,0,0,56,0.5841913643997956,0,0.0,0,0.0,0,0.0,0.06205,0.163698720485424,0.3174858984689766,0.0197,0.3299079754601227,0.6700920245398773,24.834239134711115,4.376913211289385,0.3261268611054456,0.2292473995512951,0.211503161329798,0.2331225780134611,11.005296774916234,5.566965970080916,20.982559246714537,12297.50123848346,55.619699523403824,13.42245657210244,18.061727163346244,11.550647778664173,12.584868009290984,0.5533346930450744,0.7900355871886121,0.6966854283927455,0.5593056894889104,0.1146106736657917,0.731839258114374,0.9125,0.8785714285714286,0.7510204081632653,0.1266375545851528,0.4893322249930729,0.7223756906077348,0.631891433418151,0.5,0.111597374179431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.004581065604508,0.006573141413834,0.0086814369555063,0.0109387389951812,0.0132023615635179,0.0152884938795062,0.0171447815571135,0.0193013109360471,0.0215075767652686,0.0234109257817302,0.0258038700675107,0.0283755729584181,0.0305613027411501,0.0326807492860751,0.0347302544613351,0.0367699549945683,0.0387552718568334,0.0410600427838584,0.0429173386047963,0.0572447447447447,0.0713822939307808,0.0853473291639167,0.0977013304770605,0.1093746709071378,0.1242209781345727,0.1365480996429214,0.148441486647389,0.1608461768347351,0.1711704954568832,0.1843470213498622,0.1959470413401783,0.2071592353919214,0.2175885439440315,0.2279063115394347,0.2385777246251633,0.2480814705751126,0.2562709500348699,0.2643976682468755,0.2724785659504813,0.2800920305689477,0.287296500748503,0.2937967433494272,0.2998658425566575,0.3061264126436921,0.3110196943010925,0.3159271543901371,0.3206944797761384,0.325121685998343,0.3293696880114026,0.3294412346975879,0.3276930278665051,0.3269214497250035,0.3256469975552244,0.324378168626693,0.3219170738431847,0.3199676944272887,0.3204753619382161,0.3227299115527781,0.3235530474846866,0.3244720682941441,0.3253300134376729,0.3260787599497277,0.3276216433582056,0.3280612489799837,0.3289922642148308,0.3294050506491653,0.3322420197695649,0.3355704697986577,0.3402780528379609,0.3444011596303678,0.3476901885992795,0.3491713403491083,0.3494261667941851,0.3510034078000757,0.3559422348484848,0.3597664054095589,0.3626847290640394,0.369407158836689,0.3686229382431914,0.0,2.125888204995316,57.00809802204575,185.71232335788267,268.9421927321115,fqhc4_80Compliance_implementation,52 -100000,95797,44317,419.1049824107227,6181,63.3735920749084,4838,49.980688330532274,1848,18.956752299132543,77.39816222968327,79.72789884135301,63.35848721039546,65.07984453835198,77.17139378688877,79.50093667069102,63.2751688166862,64.99813917931291,0.2267684427944942,226.96217066199156,0.0833183937092627,81.70535903906284,159.7816,111.98362021131614,166791.86195809892,116896.79239570771,350.76211,226.2815827603797,365606.2402789232,235667.65499035225,360.14618,174.18702448140323,372494.5666356984,179135.48076614496,3489.86421,1575.377388383684,3608385.21039281,1610187.552405856,1141.86095,498.4073040247407,1179868.3570466717,508311.6661098591,1818.5357,755.9938491741042,1867873.503345616,765177.2274210231,0.38006,100000,0,726280,7581.448270822677,0,0.0,0,0.0,29899,311.5442028456006,0,0.0,33003,341.085837761099,1613727,0,57851,0,0,6329,0,0,59,0.6054469346639247,0,0.0,0,0.0,0,0.0,0.06181,0.1626322159659001,0.2989807474518686,0.01848,0.3228734040916782,0.6771265959083218,24.64097171865956,4.468678109340635,0.3119057461761058,0.2312939231087226,0.2302604381976023,0.2265398925175692,11.093435203204711,5.598990417532747,19.55523275138392,12292.608033845674,54.56577037404523,13.387365590966064,17.10214800842882,12.140772260847514,11.935484513802823,0.5475403059115337,0.7676496872207328,0.7104042412193505,0.5538599640933572,0.0921532846715328,0.7236024844720497,0.9123222748815166,0.8802992518703242,0.7195121951219512,0.0776255707762557,0.4836619718309859,0.6800573888091822,0.6489169675090253,0.5069124423963134,0.0957810718358038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685382106904,0.0046923139289768,0.0070202491579758,0.0094036883581119,0.0113861637777664,0.0134956337655464,0.01562133795282,0.0180998245112843,0.0201166746697453,0.0223040720278289,0.0244854470386952,0.0264132743635262,0.0284257908042669,0.0305784273363524,0.0328463766920626,0.034825356825646,0.0368592561940723,0.0387183741186229,0.0407157999750592,0.042621209596801,0.0569386477462437,0.0711566617862371,0.084460380365268,0.0973630831643002,0.10960016023107,0.1255734308606219,0.1379303030945765,0.1501760956768777,0.1610764055742431,0.1718270900786928,0.1847971226740179,0.1972511786841991,0.2082667970235185,0.2186906088210236,0.2281623278865067,0.2385941233737498,0.2475470520024975,0.2559480975083206,0.2640927341605608,0.2719621673613338,0.2796467133707891,0.286058226102404,0.2928751464375732,0.2991901475944029,0.3050485436893204,0.3099402966701545,0.3147085661429232,0.318943167954453,0.3237132614632,0.3277251091098482,0.3265322602352561,0.3263732336284159,0.3250063367786633,0.3237649911243884,0.323270943552809,0.3217340828546988,0.3205389439100286,0.3206530638980775,0.3218710536195774,0.3221012491313103,0.323628889096515,0.3246589136572748,0.3257491791965536,0.3267015706806283,0.328560501027872,0.3303729095252934,0.3325323004721381,0.3357475103799207,0.3388257378245907,0.3416197931007355,0.346437791566647,0.3493716148709049,0.3500186776242062,0.3518602540834846,0.3507951356407858,0.3525145642610867,0.3507678272768739,0.3537716821298911,0.3536017529443988,0.3509304975313331,0.0,1.983116242761994,56.810898962634894,174.73749105594774,270.9058043320871,fqhc4_80Compliance_implementation,53 -100000,95880,44099,417.1777221526909,6183,63.33959115561118,4876,50.30246141009596,1940,19.8581560283688,77.3584022892406,79.6431589688057,63.35300198276878,65.0427893273738,77.11668363712148,79.40312661552049,63.262570607461306,64.95603288168935,0.2417186521191183,240.0323532852013,0.0904313753074745,86.7564456844434,159.42806,111.64984524543289,166278.7442636629,116447.4814825124,348.48236,224.90128314650292,362937.0984564038,234045.69581404145,357.32991,172.17564628851943,369964.9353358364,177400.0986116485,3498.34866,1594.9823609668576,3611143.5127242384,1626211.2296403428,1169.08041,511.9544752299288,1204847.7054651647,519567.94243288354,1897.13574,795.8863678621427,1943569.482686692,797745.6021004089,0.37856,100000,0,724673,7558.124739257405,0,0.0,0,0.0,29722,309.43888193575305,0,0.0,32773,339.06967042136006,1615413,0,58036,0,0,6378,0,0,67,0.6987901543596162,0,0.0,0,0.0,0,0.0,0.06183,0.1633294590025359,0.3137635452045932,0.0194,0.3381672323356988,0.6618327676643011,24.387531963111687,4.330491851124703,0.3209598031173092,0.23318293683347,0.2223133716160787,0.2235438884331419,11.01385245492289,5.625091518636595,20.61830367167351,12276.23340647782,55.3803697054767,13.68644710327242,17.632173249559447,12.077941640500772,11.983807712144054,0.5691140278917145,0.7968337730870713,0.7015974440894569,0.5885608856088561,0.1220183486238532,0.7337461300309598,0.9131403118040088,0.8819095477386935,0.7045454545454546,0.1422222222222222,0.509765625,0.7209302325581395,0.6401028277634961,0.5590277777777778,0.1167630057803468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023590397796879,0.0042557072073441,0.0061973202422127,0.0083562631359847,0.0107135596665989,0.0129453790492473,0.0149965361261665,0.0169717986638788,0.0191233676730343,0.0212024248867806,0.0233705610777278,0.025547969079986,0.0278431090615917,0.0298419948154548,0.0318641342992879,0.0338141306929057,0.0360401365470156,0.0382857438980152,0.0402018922202951,0.0418990344597969,0.0566114453120927,0.0702964193545016,0.0842008252518693,0.0968897009408602,0.1093297378150906,0.1250462175552762,0.1373251377702416,0.1489472564866014,0.1598864206492383,0.1706009733925087,0.1838251130734439,0.1966984346772536,0.2081607358361329,0.2187564914122033,0.2285453505762294,0.2390397237379495,0.2493112794030716,0.2583267738670864,0.266090330485688,0.2737522342912141,0.2806916026293862,0.2876866195535171,0.2938737799677817,0.300082756635523,0.3055656867751112,0.3109049868636907,0.3158389295379372,0.3201156967928543,0.3237813424700203,0.3274785736959052,0.3269484986645803,0.3261840436676407,0.3256919560985244,0.3244170393851231,0.3239891621508962,0.3223881055038129,0.3208909053413075,0.321200059213448,0.322002567394095,0.3226890155644109,0.3241185296324081,0.3250588444725755,0.3244802483898714,0.3253664540673604,0.3255522934013573,0.3262034868592245,0.3261828217018976,0.329559708981435,0.3335082747279661,0.3361860612544078,0.3391767598579364,0.342760479991542,0.3460064098535788,0.346771097289411,0.347830224590788,0.3532451923076923,0.3538652978690309,0.3632296115517592,0.3693495038588754,0.3710667689946277,0.0,2.186296541171319,56.639880599899655,186.1312510932694,266.28349702235926,fqhc4_80Compliance_implementation,54 -100000,95728,44194,418.5922614073208,6158,62.94918936988133,4788,49.37949189369882,1944,19.941918769847906,77.38965647392791,79.75490076804346,63.34469261111818,65.09313647508247,77.14673198766873,79.51487720996248,63.254290426719535,65.00661919311781,0.2429244862591844,240.02355808097772,0.0904021843986484,86.51728196466024,160.09422,112.09765465778584,167238.42553902726,117100.00462192668,349.76866,225.93371317236247,364655.9418351997,235297.39920055892,355.38248,172.29883584488363,366610.9393280963,176478.54009426152,3437.56383,1571.282288541327,3551831.679341468,1602577.0240446357,1187.66052,528.0734821167613,1222844.7476182517,534029.1746361121,1899.90364,797.8758293058019,1951021.0596690625,804350.8399468069,0.3792,100000,0,727701,7601.7466154103295,0,0.0,0,0.0,29839,311.0061841885342,0,0.0,32616,336.2234664883838,1612996,0,57882,0,0,6306,0,0,54,0.5432057496239345,0,0.0,1,0.0104462644158448,0,0.0,0.06158,0.1623945147679324,0.315686911334849,0.01944,0.3328175769766362,0.6671824230233637,24.81792743222264,4.439851329723475,0.3324979114452798,0.2205513784461152,0.2224310776942356,0.2245196324143692,11.315742631833816,5.844615996098972,20.72854140167295,12248.876039781546,54.02315909988002,12.523290819166684,17.880147131849135,11.861468964175426,11.758252184688777,0.5570175438596491,0.7509469696969697,0.6915829145728644,0.5981220657276995,0.1265116279069767,0.7235708692247454,0.8994708994708994,0.8561151079136691,0.7333333333333333,0.1762114537444934,0.4964397607519225,0.668141592920354,0.6331914893617021,0.5555555555555556,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0043997039830499,0.0067688935345396,0.0091025458682975,0.0114132259147364,0.0134617734511832,0.0155891559017546,0.0177315462275803,0.0197788044811513,0.0219669983212545,0.0240782311879209,0.0261790854772806,0.028168145322957,0.0299551033857813,0.0320374629960082,0.0342197463749392,0.0364916640778709,0.03846034133942,0.0402448784442527,0.0421268703371816,0.0571431554548586,0.0704843048388616,0.0835597897365411,0.0958958874709366,0.1083541686447025,0.1234544396848061,0.1367610236387556,0.1476447925757221,0.1593972275028301,0.1692406692406692,0.1821598165157372,0.1953266983989615,0.2074435697821076,0.2172786318805082,0.2273497502255672,0.238328313253012,0.2485976514146156,0.2575766088705599,0.2657610667634252,0.2725254859784213,0.279315009886336,0.2849594968965154,0.2912617916164267,0.297072732714756,0.3029784445091756,0.308685156904281,0.3144326028219754,0.3191305343220177,0.3237745224908122,0.3283568310407132,0.3273287413227143,0.3266585983056442,0.3263393422552454,0.3246715749963909,0.3240570513580832,0.3225648705645038,0.3206057447850048,0.3207053358196748,0.3212628931672586,0.3218995485728504,0.3229940945248607,0.3246714926430089,0.3244290715119186,0.3244878439397646,0.3264373863962498,0.3279394222291374,0.3292810790898013,0.3325176470588235,0.3359300979050426,0.3410239070766538,0.3409495955764748,0.3428556144011127,0.344999684124076,0.3456538170823885,0.345667534399405,0.3472842699271102,0.3504325390802853,0.3600320384461353,0.3629207383279044,0.3623574144486692,0.0,2.4425824026841787,55.39780455262002,178.8426667450302,261.4669375696352,fqhc4_80Compliance_implementation,55 -100000,95750,44237,418.30809399477806,6063,61.92167101827676,4732,48.72062663185378,1839,18.736292428198432,77.34687979821054,79.70514982948741,63.33382307926016,65.08084970043153,77.11915281963442,79.48148045496833,63.24773544187397,64.99906561949686,0.2277269785761149,223.6693745190763,0.0860876373861856,81.78408093466771,159.5154,111.70286506253872,166595.7180156658,116660.95567889164,346.21229,223.8310130633277,360856.4386422976,233045.45375168265,352.18491,170.73811141024865,363218.7154046998,174862.85891407923,3362.57256,1537.4741769602012,3465944.1566579635,1560528.1337263498,1103.48272,484.6498511295522,1133896.281984334,488319.1125550773,1800.2118,764.0629150264683,1837324.323759791,763095.8186439765,0.38042,100000,0,725070,7572.532637075718,0,0.0,0,0.0,29539,307.7597911227154,0,0.0,32321,332.9921671018277,1618619,0,58100,0,0,6405,0,0,61,0.6266318537859008,0,0.0,1,0.010443864229765,0,0.0,0.06063,0.1593764786288838,0.3033151904997526,0.01839,0.3343799058084772,0.6656200941915228,24.60033014237732,4.36383096968838,0.31614539306847,0.2311918850380389,0.2349957734573119,0.2176669484361792,11.08603187789798,5.768628911815177,19.57226226451761,12321.950533142004,53.58681807788669,13.167107969364112,17.005843681957817,12.224877138242062,11.188989288322704,0.5644547759932376,0.7842778793418648,0.7012032085561497,0.5809352517985612,0.1145631067961165,0.7215777262180975,0.9203980099502488,0.8509615384615384,0.7049808429118773,0.116822429906542,0.5053794707763885,0.7052023121387283,0.6435185185185185,0.5428907168037603,0.1139705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0047965764815641,0.0070964467005076,0.0094819964023293,0.0116891836900789,0.0139406529398586,0.0162299928636966,0.0182931808901592,0.0204350759542843,0.0227710201908506,0.0249341275618483,0.0267781052026326,0.0287324407149174,0.0306666941365528,0.0328290125495376,0.0347739794705341,0.0367398080168994,0.0386630289324356,0.0408220545125678,0.042642924086223,0.0574500287041386,0.0712395259067086,0.0845845740888311,0.0972922973427514,0.1091834691231805,0.1246393659180977,0.1369861561618859,0.1486081279373923,0.1596982919569415,0.1697161221210498,0.1831395036094286,0.196106619395564,0.2074173883751507,0.2181222349664099,0.228008483423259,0.2382854866198897,0.2477834654889758,0.2580108385239819,0.2666916346055633,0.2745080070562899,0.2818640498067443,0.2888935692221286,0.2956926245516849,0.3014925373134328,0.3067247805553195,0.3109771105094757,0.3153615211408556,0.3201957917487763,0.3248246953191709,0.3280667307971062,0.3278695137693632,0.3278118384515987,0.3266485718705613,0.3257235978713892,0.325458967286532,0.3235474006116208,0.3216611862906285,0.3218726419736885,0.3234059257236483,0.3237543453070683,0.3245159479936395,0.3259929295123733,0.325866688996818,0.325657306385262,0.3275837182448037,0.3280902986439526,0.3307264164407021,0.3328494335216335,0.3353949957829631,0.3392665580674639,0.3411146642302421,0.3434424048949188,0.3452674117572772,0.3510945576162967,0.353649430651484,0.3580523461447771,0.3552671755725191,0.3580171358629131,0.3609085810431856,0.3681078936929789,0.0,2.638161644196304,56.23305303934318,170.00708258222812,263.0184754563599,fqhc4_80Compliance_implementation,56 -100000,95759,44446,419.6994538372372,6138,63.01235393017889,4838,50.00052214413267,1880,19.277561378042797,77.36211040614715,79.7214238527834,63.32787542470121,65.07460095943395,77.13232709867988,79.4940800275889,63.24351885678969,64.99354326428102,0.2297833074672723,227.34382519450944,0.0843565679115201,81.0576951529356,158.44444,110.95809256160985,165461.66939922096,115872.23400579565,348.94362,224.534617629004,363891.2478200482,233973.2128978158,362.21211,174.45581388270932,375002.24521977047,179719.01819468391,3436.34888,1551.1208267797806,3551336.9082801617,1582718.5686942933,1169.1981,514.0865145060177,1205127.0481103605,521001.7068954543,1839.09078,759.1526853030035,1887401.4557378415,763938.7428635545,0.38142,100000,0,720202,7520.984972691862,0,0.0,0,0.0,29710,309.72545661504404,0,0.0,33180,343.2157812842657,1620492,0,58202,0,0,6359,0,0,62,0.6474587245063127,0,0.0,0,0.0,0,0.0,0.06138,0.1609249646059462,0.3062886933854676,0.0188,0.3243663504898149,0.675633649510185,24.619559855139933,4.372273613422095,0.3164530797850351,0.2385283174865647,0.2246796196775527,0.2203389830508474,11.396193416044088,6.0794833406492605,19.698771544873065,12386.3777703972,54.51648230504644,13.677675290854218,17.251816062132416,12.09453798366532,11.492452968394492,0.5663497312939231,0.7755632582322357,0.7080339647289353,0.5869365225390984,0.1153846153846153,0.7365028203062046,0.909313725490196,0.8664850136239782,0.7470817120622568,0.1578947368421052,0.5076452599388379,0.7024128686327078,0.6580756013745704,0.5373493975903615,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025632452914298,0.0047761981057456,0.0072479951273982,0.0094292652692116,0.0116677686791109,0.0141055933515297,0.0163563314502477,0.0186330964632851,0.0206950849173321,0.0227430982223314,0.0249610304372795,0.026788832508166,0.0289088701878562,0.0310793264771954,0.0329851793749742,0.0353476350478159,0.037329660771238,0.0394355968252321,0.0415466971571124,0.0437359386717773,0.0585374000542786,0.0722371008913252,0.0847551831538324,0.0973780802036115,0.1098219559530841,0.1258751612834993,0.1389563686125579,0.151069333702375,0.1614526572216167,0.1715100692731679,0.1844029681963576,0.1963680832873391,0.2075001631889292,0.2175791719083301,0.227826508039576,0.2384835257361902,0.2486628926182739,0.2574366590162459,0.266041203430594,0.2747291757323134,0.2822056066112641,0.2897245452950465,0.2954206602768903,0.3015262141975086,0.307015093927214,0.3129251700680272,0.3169944048766444,0.3219523985192912,0.3272284852642342,0.331702427895077,0.3308196765462355,0.3292422845663809,0.3283508564511815,0.3274836063205939,0.3271885296998842,0.3253347616497054,0.3233656097715334,0.3242729269812125,0.3252999727297518,0.3266276192341243,0.3275746143214673,0.3294062112778553,0.3299889447445819,0.3304967698819336,0.3309855780748407,0.333471782358133,0.3343259032386138,0.3358675927664101,0.3389055629231521,0.340605152077005,0.3439790102234687,0.3428661715910886,0.3463054495401363,0.3489037896481579,0.3524216789067584,0.3573623256913259,0.3587088915956151,0.3627665935818218,0.3673801137903007,0.3684210526315789,0.0,1.985741176027349,54.52623314084124,183.6793984025172,267.7802480924961,fqhc4_80Compliance_implementation,57 -100000,95749,44733,421.89474563703016,6203,63.48891372233653,4891,50.381727224305216,1999,20.365747945148254,77.32840490063373,79.68862078176461,63.31625382636724,65.06456022748421,77.07862773457573,79.44581994349188,63.22282999747539,64.9779114238623,0.2497771660579957,242.80083827272847,0.0934238288918507,86.6488036219124,158.96848,111.4362995092382,166026.25614888928,116383.77373052272,348.57297,225.4973881693695,363359.6382207647,234819.82910460632,362.59301,175.8070868800989,375020.79395085067,180729.40302130688,3515.73503,1616.1816568217698,3620922.025295303,1637033.5531668945,1180.49362,529.1146394106395,1213812.300911759,533570.7149471781,1956.5439,825.2832651595098,1994785.031697459,818823.3755151327,0.38402,100000,0,722584,7546.648006767695,0,0.0,0,0.0,29682,309.2773814870129,0,0.0,33375,344.8808864844541,1614663,0,57983,0,0,6298,0,0,50,0.5221986652602116,0,0.0,0,0.0,0,0.0,0.06203,0.1615280454143013,0.3222634209253587,0.01999,0.3441488543749039,0.655851145625096,24.456920719469174,4.31003290728666,0.3101615211613167,0.23860151298303,0.2267429973420568,0.2244939685135964,11.210043449815116,5.912859312056954,21.402000607836708,12479.93161082131,55.99094247758901,14.21500704227475,17.22758960484049,12.344023156697052,12.204322673776726,0.568186464935596,0.7960582690659811,0.7099538562953197,0.5653742110009017,0.1329690346083788,0.7383381924198251,0.9249448123620309,0.8704156479217604,0.724907063197026,0.1784232365145228,0.5018471156578573,0.7142857142857143,0.6507220216606499,0.5142857142857142,0.1201866977829638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813625447138,0.0047364043895413,0.0072391666328229,0.009573365312303,0.0119326158165652,0.0142804758800521,0.0167849567629303,0.0190407154816841,0.0214479952564967,0.0236247876021045,0.0256368202552406,0.0276816608996539,0.0298140606359784,0.0320344447534583,0.0340863355383329,0.0362927817574761,0.0384356593480533,0.0401161584733457,0.042286747588959,0.0444025497875177,0.0592110070673222,0.0731380753138075,0.0863893287471554,0.0992914511584878,0.1113265607216625,0.1268696948235219,0.140372460017817,0.1526369006439253,0.1631506424977835,0.1735708234587627,0.1877531236535976,0.1997900819113366,0.2113308961135048,0.2216134042041253,0.2317023501568605,0.2418750969228383,0.2514899220999531,0.2601672688796587,0.2688551767992188,0.2764343181974465,0.2836409929980903,0.2906387806903651,0.2966761003682696,0.302864136499442,0.3087818696883853,0.3145964877663773,0.3195465148360882,0.323991588606385,0.3277233504184779,0.3322366682522065,0.3307613446285005,0.3302515913913307,0.3289390111363604,0.3278278350664564,0.3276885760628562,0.3253280135041816,0.3241353061515771,0.3243198762364016,0.3253007924147255,0.3258901413490785,0.3264238013056201,0.3275517671024266,0.3280537305937984,0.3287511753906775,0.3294174289841117,0.3310898940887984,0.3325246874821622,0.3369776939993716,0.3404180818656115,0.3446376926429222,0.3481144934120854,0.3506706093568487,0.3510605017831446,0.3522649928155487,0.3597304128053917,0.3614443660315219,0.3657942787583688,0.3646363821552251,0.3756232686980609,0.3720203204376709,0.0,2.690376464595494,59.95282049860171,182.53693992736805,262.88172853529056,fqhc4_80Compliance_implementation,58 -100000,95731,44087,417.2316177622714,6072,62.247338897535805,4770,49.242147266820574,1854,18.95937575080173,77.31464774318667,79.6800870832102,63.30648041847581,65.05591166938225,77.08094283763803,79.45044302958394,63.220415832401606,64.97467602620682,0.2337049055486346,229.6440536262594,0.086064586074201,81.23564317543241,159.14338,111.4253713766764,166240.1729847176,116394.24154837658,342.98006,221.03040391213275,357641.76703471184,230259.5473001813,351.14343,169.43863361311014,363480.3564153722,174557.53395059268,3377.78321,1525.518190243957,3482812.8296998884,1548493.5281192162,1111.51236,489.7401597145242,1143859.711065381,494843.1425302028,1811.9852,752.4683749971944,1853437.883235316,751690.7127536271,0.37801,100000,0,723379,7556.371499305345,0,0.0,0,0.0,29248,304.8855647595868,0,0.0,32146,332.56729794946256,1620250,0,58074,0,0,6290,0,0,48,0.5014049785335993,0,0.0,0,0.0,0,0.0,0.06072,0.1606306711462659,0.3053359683794466,0.01854,0.3364294710327456,0.6635705289672544,24.67855912988794,4.372553783230146,0.3274633123689727,0.2333333333333333,0.2257861635220125,0.2134171907756813,10.93135937007828,5.56971355435712,19.55067068549637,12269.701222821895,53.84017420448793,13.225030831829717,17.739951780645058,11.808716526094049,11.06647506591911,0.5557651991614255,0.7735849056603774,0.7029449423815621,0.5496750232126276,0.0982318271119842,0.7238493723849372,0.919889502762431,0.8478802992518704,0.7297297297297297,0.1428571428571428,0.4995804195804196,0.7030625832223701,0.652885443583118,0.5029239766081871,0.0866336633663366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0044914884772536,0.0066180799447816,0.0088710496900721,0.0111704562795666,0.0131219691103956,0.0152620356862305,0.017520573400584,0.0194733506429783,0.0217435813439253,0.0236125208903653,0.0257107946319475,0.0277729203740086,0.0299842350928893,0.0323183319570602,0.0343847243329301,0.0364931756518857,0.0385928501011778,0.0403776763338775,0.0423616682120792,0.0572093848868655,0.0708124856072183,0.0838780070711415,0.0966703826010138,0.1088531505404692,0.124322951929587,0.1363477153319535,0.1480274716498962,0.1592303580972741,0.169978967249002,0.1830004744856144,0.1962554039851343,0.2082075975292233,0.2180606844256457,0.2277568300588741,0.2375760536483545,0.2471534348925128,0.2560673042223024,0.264884845038385,0.2733902178531644,0.2809822494811654,0.287835462322747,0.2943191786992911,0.2999147832975263,0.3052972000340421,0.3103941591436042,0.3145309625996321,0.3184147939003141,0.3236713101289563,0.3277379572045957,0.3275998870345217,0.3267928054192945,0.3261651768145274,0.3252747886795719,0.3243355605048255,0.3225534910771679,0.3204223122704824,0.3207212533254507,0.3217306607884349,0.3232056519955041,0.3234131815031933,0.3247102035980173,0.3261723647914403,0.325534192800107,0.3255590517137847,0.3266373500559444,0.3289676425269646,0.3330713859114199,0.3359840257829468,0.3387679003530485,0.3426512836882667,0.3437649688647613,0.3453957792002028,0.3476859313838361,0.35,0.3505609930771067,0.3547094188376753,0.3588684699566384,0.3572025633881304,0.3666274970622796,0.0,2.1491226585314176,52.40123684635006,183.93328344948097,266.4535290312992,fqhc4_80Compliance_implementation,59 -100000,95806,44377,419.5666242197775,6163,63.075381500114815,4812,49.54804500761957,1899,19.393357409765567,77.3504688262772,79.68467092244849,63.33176974345843,65.0609521793205,77.11818342151419,79.455723417102,63.24438482592184,64.97774130223068,0.2322854047630045,228.94750534648267,0.0873849175365961,83.21087708981167,159.33126,111.64577872123124,166306.1394902198,116533.18030314514,351.11185,226.5391491761938,365808.18529110914,235782.82568915468,359.52491,173.90091845738073,371448.844540008,178467.21122093344,3430.43955,1554.0402378272363,3534830.083710832,1576326.100234782,1151.64565,506.5841579852688,1182663.5596935472,509388.8371512816,1856.8668,780.6817896686812,1898586.7273448429,780558.0551343987,0.3802,100000,0,724233,7559.369976828174,0,0.0,0,0.0,29859,310.95129741352315,0,0.0,32885,339.45681898837233,1614947,0,58006,0,0,6358,0,0,67,0.6888921361918878,0,0.0,0,0.0,0,0.0,0.06163,0.1620988953182535,0.308129157877657,0.01899,0.3405372028403828,0.6594627971596172,24.38431526523905,4.398617692559317,0.3273067331670823,0.2325436408977556,0.2150872817955112,0.2250623441396508,11.108597349865176,5.670240980808595,20.14301702245291,12277.634846321907,54.37293348056416,13.536083674939778,17.703000208382324,11.46773410754088,11.666115489701182,0.5579800498753117,0.7953529937444147,0.6926984126984127,0.5497584541062802,0.1246537396121883,0.7086302454473475,0.8947368421052632,0.850356294536817,0.6428571428571429,0.1643835616438356,0.5043674274443505,0.7402777777777778,0.6351819757365684,0.5240443896424167,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0047656226235259,0.0070638384248452,0.0092762870467268,0.0115751571495412,0.0136175673748752,0.0158482484320024,0.0181561963891838,0.020387714203918,0.0221423745470179,0.0242099218637845,0.0262568799802842,0.0283730974907445,0.0305255460921327,0.0326526402640264,0.0346769443784292,0.036697342677612,0.0386159255686591,0.0403949077682514,0.0426300502815977,0.0576465679115376,0.0721313189398295,0.0852510898725687,0.0974605209241728,0.1092544987146529,0.1250303830911492,0.1373420137416235,0.1486500861647129,0.1596079729253632,0.1696796939464406,0.1828307612836572,0.1947129419396691,0.2060232717316906,0.2169702004853626,0.2269961600668962,0.2374641238461453,0.2473405145950773,0.2562382522763852,0.2649193136264011,0.2723211217265791,0.2802513859793289,0.2869792032189393,0.294083540409419,0.3000023964723926,0.3049718653913931,0.3102703902896334,0.314969804796151,0.3192543893178401,0.3241687730896364,0.3284002167047661,0.3279685940155951,0.3274000744529774,0.32641112819717,0.3244838611669729,0.3231773505226688,0.3212704346627036,0.3195544711325179,0.3202030323439065,0.3213394840252861,0.321410075539761,0.3221791776617446,0.3235247681073613,0.324994247704311,0.3268281790778162,0.3294162881791748,0.3312670920692798,0.3325565533704672,0.3336783664251435,0.3352302482281883,0.3379517833814972,0.3415054153260525,0.3441948750395444,0.3459567554055743,0.3440373888135082,0.3438901345291479,0.3474437148217636,0.3465271458902032,0.3514970059880239,0.3601294847585649,0.355631141345427,0.0,2.618653674423099,54.75386548196195,181.10589264547173,265.309472311697,fqhc4_80Compliance_implementation,60 -100000,95709,44687,422.6979698878893,6102,62.44971737245191,4773,49.20122454523608,1816,18.51445527588837,77.30949638025908,79.66876493456438,63.31695901961641,65.05921813388798,77.07648579847923,79.44012413215091,63.22944332961871,64.97620177920577,0.2330105817798511,228.64080241346585,0.0875156899977014,83.01635468221491,159.3922,111.6925569757836,166538.36107367123,116700.16087910604,348.49909,225.15660341076116,363478.29357740656,234605.9785088062,364.20837,176.34095598513534,376203.6799047112,180926.6063773198,3398.12318,1562.768492639755,3506203.6381113585,1588573.7627812652,1143.59021,509.19777218845,1178571.461409063,515736.78775083815,1777.18238,760.425512971541,1814653.8570040436,759143.2121153673,0.38201,100000,0,724510,7569.925503348692,0,0.0,0,0.0,29609,308.6857035388521,0,0.0,33397,344.6175385804888,1612662,0,57924,0,0,6367,0,0,62,0.6477969678922567,0,0.0,0,0.0,0,0.0,0.06102,0.1597340383759587,0.2976073418551295,0.01816,0.3379224030037547,0.6620775969962454,24.60014869011244,4.248037721807309,0.322438717787555,0.2392625183322857,0.2212445003142677,0.2170542635658914,11.264474029323164,5.955941974894892,19.51221226657642,12349.639316224224,54.580517297315815,13.669574815404074,17.52115118600862,11.938774388765404,11.451016907137722,0.5700817096165933,0.776707530647986,0.6926575698505523,0.59375,0.1361003861003861,0.7300079176563737,0.9311224489795918,0.8586118251928021,0.7581967213114754,0.1596638655462184,0.5125356125356125,0.696,0.6365217391304347,0.5443349753694581,0.1290726817042606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483061747399,0.0047846889952153,0.0070712604496388,0.0092934915088973,0.0115386570426472,0.0138935540016489,0.0159710543749681,0.0183122888319536,0.020410040472589,0.0225870168148928,0.024692750028188,0.0268191759161336,0.029110839186007,0.0310495041347847,0.033084443711068,0.035221672332028,0.0370098216780683,0.0391396332863187,0.0412301488317951,0.0433451045345167,0.0579579987259683,0.0712805375871381,0.0848568761341347,0.0976643425771103,0.1098245169999156,0.1251652617216834,0.1376708549112827,0.1497045515038594,0.1613123791412485,0.1717659170607727,0.1850730508985907,0.1970700967972455,0.208449416681177,0.2193875317397776,0.2297333010328804,0.2403161792421454,0.2498408052461653,0.2586980035152553,0.2672332496335768,0.274854404548998,0.281914708845223,0.2893181844774932,0.295244636006252,0.3017500929624431,0.3080718469727536,0.3130850919496281,0.3176391079071863,0.3221974664205232,0.326195722618276,0.3298657008406916,0.3284238353429904,0.3278507865663829,0.3271080768471239,0.324902751869044,0.3232506583743732,0.3209026201141314,0.3199676175055955,0.3202652013687813,0.3208688055636444,0.3214567211235311,0.3222721208590917,0.3231639539499801,0.323956690844108,0.3240131948028633,0.32537746104602,0.3264490861618799,0.3280359648369269,0.331360201511335,0.3349726008149501,0.3367387344579076,0.3420023642811676,0.3451369717562115,0.3483266230498238,0.3502932439637444,0.3542039355992844,0.3555292726197516,0.3568154034229829,0.3637108335039934,0.3708390646492435,0.3728423475258918,0.0,2.6030100346774545,54.863082339175286,194.18380396790204,249.4294719454836,fqhc4_80Compliance_implementation,61 -100000,95725,44233,418.5844868111779,6123,62.64821102115435,4818,49.64220423086968,1916,19.472447114129015,77.40440741590693,79.7603541894622,63.3594678928421,65.09868381619215,77.16088340473193,79.52350751073918,63.26944465229293,65.01464189629263,0.2435240111749976,236.8466787230261,0.090023240549165,84.04191989951926,160.6022,112.44821200212414,167774.5625489684,117470.0569361443,349.53437,225.5329878532283,364444.5129276573,234905.3307424688,361.74857,175.14282623028353,374233.3559676156,180062.57334068962,3419.36835,1570.576639949928,3519644.753199269,1588287.5214937855,1162.8845,521.1477249421223,1190783.5048315488,520387.291660613,1873.54052,785.662024586968,1906067.0044398017,776951.2229620677,0.37884,100000,0,730010,7626.116479498564,0,0.0,0,0.0,29744,310.0130582397493,0,0.0,33080,341.8333768607992,1612928,0,57850,0,0,6413,0,0,68,0.7103682423609298,0,0.0,0,0.0,0,0.0,0.06123,0.1616249604054482,0.3129185040013065,0.01916,0.3262698660018697,0.6737301339981303,24.58533729657944,4.316450848192061,0.317766708177667,0.2397260273972602,0.2239518472395184,0.2185554171855541,11.453968670761135,6.015048669404439,20.36190044324405,12324.315259823188,54.89747513551736,13.715266573924271,17.54531470382919,12.082988974208574,11.553904883555326,0.5620589456205894,0.7670995670995671,0.7041149575440888,0.5644114921223355,0.1282051282051282,0.7564885496183206,0.9158653846153846,0.8957345971563981,0.7354085603112841,0.2,0.4894526795895096,0.6833558863328822,0.6311992786293958,0.5109489051094891,0.1097852028639618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022578391568033,0.0044894856853306,0.0065737415545681,0.0084801706190016,0.0109910221345561,0.013426302931596,0.0157859872611464,0.0178157811495566,0.0200159391858754,0.0218777180864671,0.0241977636797819,0.0262539386039637,0.0284051772881948,0.0307243869027387,0.0329556945046327,0.0349703842297315,0.0370316674605969,0.0389929669508931,0.0409569437660434,0.0425376787592829,0.0574134204783929,0.0708073884150489,0.0844749816427147,0.0977215136635578,0.1098824645548938,0.1250211505922165,0.138199219081572,0.1500181001256361,0.1614598914483525,0.1718161831733605,0.1853890229191797,0.1976409479493561,0.2084711103376261,0.2184885895178838,0.2282234373796609,0.2396713433067204,0.2491883388559761,0.2587162564788685,0.2669138826517883,0.2742806784627006,0.2811911392551335,0.2888276699312454,0.2957816318579473,0.3016929307893574,0.3069600707270107,0.3118456623248956,0.3165151363772605,0.3211325879202467,0.3254291138750048,0.3295225816636628,0.3292889163288862,0.3270848485680174,0.326276305807648,0.3254845449960372,0.3250488773031578,0.3223264196474936,0.3202875651761732,0.3208662061740924,0.3216518731792084,0.3212619734358864,0.3219482997269088,0.3229674997530376,0.3236260172806962,0.3229975890704527,0.3242743619907329,0.3268459173570944,0.328692390748423,0.3312002007654182,0.3344900105152471,0.3383297644539614,0.3393181818181818,0.3415994052676295,0.3423134890730972,0.3453401076818078,0.3476963253124417,0.3497768381489312,0.3531655225019069,0.3543434343434343,0.3604456824512534,0.3556967050416832,0.0,2.67729309974102,56.88370188873113,188.36331687495385,252.79280585547477,fqhc4_80Compliance_implementation,62 -100000,95742,44100,415.564746924025,6018,61.54038979758099,4762,49.07981867936746,1869,19.07208957406363,77.33232137485312,79.69694164873508,63.31916690730778,65.07065356156286,77.10159403922387,79.47108469368406,63.232758758763175,64.9891000503964,0.230727335629254,225.85695505101452,0.0864081485446064,81.55351116646159,159.31058,111.5538311898612,166395.7093020827,116515.04166391052,346.67675,224.0382359757302,361416.7136679827,233324.0124247773,353.71451,171.14906278195045,365278.6238014664,175559.45465130324,3411.34397,1561.4235907558907,3519737.001524932,1587543.837350265,1122.05813,492.579223294836,1156648.868834994,499178.601613068,1826.97878,769.5877858587281,1866807.5034989868,768250.9294571158,0.37877,100000,0,724139,7563.441331912849,0,0.0,0,0.0,29576,308.1928516220676,0,0.0,32508,335.4118359758518,1618217,0,58033,0,0,6172,0,0,49,0.5117921079568005,0,0.0,0,0.0,0,0.0,0.06018,0.1588826992634052,0.310568295114656,0.01869,0.3303755347805419,0.6696244652194581,24.67984358193789,4.3837894287820935,0.3254934901301974,0.2286854262914741,0.2286854262914741,0.2171356572868542,11.438154057189372,6.020476437533549,19.885539064974576,12291.46847862665,53.95158793467215,12.992541450405549,17.459978267682136,12.142737929819218,11.356330286765248,0.5730785384292314,0.7915518824609734,0.7135483870967742,0.5904499540863177,0.1141199226305609,0.7285491419656787,0.918918918918919,0.8737623762376238,0.7154471544715447,0.1377777777777777,0.5158045977011494,0.7155425219941349,0.6570680628272252,0.5539739027283511,0.107540173053152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0045339743784803,0.0066404028917228,0.0092792096918448,0.0115467567347603,0.0140687238312568,0.0163783960186016,0.0188159144044349,0.0210725423035632,0.0231674856674856,0.025454396342276,0.0274113238540116,0.029758660757437,0.031680313095422,0.0338199638896053,0.0360295181594559,0.0379390324718356,0.0400767714493204,0.0421299856587616,0.0441697217130478,0.0583648245192809,0.0716617490112373,0.0850517085859327,0.0971524111968706,0.1092377608367865,0.1243561130913975,0.1368637728521863,0.1495598675877337,0.160625413845398,0.1712649717453543,0.184047824213701,0.1963184208817609,0.2080853795189242,0.2181569592562209,0.2282060875497942,0.2382597526270914,0.2474363695198563,0.2562305208321613,0.2642072534156416,0.2716965574108431,0.2787769367867972,0.2862223886184949,0.2918338125835729,0.2978835598379712,0.3037531883881939,0.3098102045846684,0.3151519701690504,0.3189563094450943,0.3228805220363561,0.3268302334784329,0.3261056825217368,0.3255842744542416,0.3254684442442245,0.324791013961278,0.3232176262731241,0.3220707279376884,0.3204675398723451,0.3202453585252247,0.3205359882709945,0.3214808206958073,0.3229145182157388,0.3243842120882382,0.3255823705784916,0.3270944342452872,0.3276721832767218,0.3292829204693611,0.3291301377661391,0.3314426167517489,0.3332513526807673,0.3350201219269235,0.335975581978042,0.3377260844048445,0.3417025044270174,0.348223814605885,0.353874883286648,0.3555295494441193,0.3557793476627086,0.3545634920634921,0.3604651162790697,0.3686214775323686,0.0,2.4426851334913184,55.88377153076173,174.1329626889144,264.9131989200447,fqhc4_80Compliance_implementation,63 -100000,95734,44642,422.221990097562,6262,64.19871727912759,4945,51.18348758017006,1980,20.368938934965637,77.41699606751023,79.76995544115466,63.36600846061516,65.10048181609984,77.1657429365702,79.51962235865587,63.27276534409851,65.00989908365753,0.2512531309400287,250.3330824987984,0.0932431165166534,90.5827324423143,159.60032,111.78828666551976,166712.26523492177,116769.68126843104,351.57992,227.4168480690818,366764.29481688846,237068.39583542084,365.26434,177.03711040576718,378622.16140556126,182616.4217230545,3582.19844,1633.491591468644,3710352.445317233,1674809.3273744355,1194.6807,526.2173263241145,1236318.7164434786,538067.9657426978,1945.92496,819.3853289774372,2003595.5251008,830140.9775425626,0.38219,100000,0,725456,7577.83023795099,0,0.0,0,0.0,29886,311.6656569243947,0,0.0,33434,346.3450811623875,1613764,0,57917,0,0,6280,0,0,73,0.7625295088474314,0,0.0,0,0.0,0,0.0,0.06262,0.1638452078808969,0.316192909613542,0.0198,0.3294674195025179,0.6705325804974821,24.44840073851394,4.364245389008614,0.3120323559150657,0.2343781597573306,0.2153690596562184,0.2382204246713852,11.122874522267646,5.814569299638224,21.088540686993984,12427.587031727644,55.963357104127205,13.797852234829978,17.520730367322066,11.888480111923926,12.756294390051243,0.5494438827098079,0.7782571182053495,0.6986390149060272,0.5699530516431925,0.1103565365025466,0.721048798252003,0.916083916083916,0.8796296296296297,0.7186311787072244,0.1124497991967871,0.4834826427771556,0.6972602739726027,0.6282628262826283,0.5211970074812967,0.1097954790096878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048830400470068,0.0070188250567997,0.0091694676022299,0.0112351553603383,0.0136912396425008,0.0159721939087536,0.0180342927127985,0.0204897091585423,0.0227730774346015,0.0250440627946058,0.0270841672054763,0.0291843993503155,0.0312963420662382,0.0333109815855985,0.035279164212419,0.0373338302894769,0.039287677484261,0.0411877195535138,0.0433061432842662,0.0582222175815225,0.072341850294013,0.0854717891688873,0.0980280801388231,0.1105333656777024,0.1259849181922983,0.1381881828789646,0.1503826625650632,0.1612431092688346,0.1718195369387339,0.1848166693587465,0.1969142881873066,0.2083736399900003,0.2190896479404022,0.2289208253675258,0.2394171405810891,0.249615444635174,0.2582385469585937,0.2668700178026738,0.2751702432045779,0.2823462756978008,0.2899848077597289,0.2958430871816698,0.3019071220773623,0.3068456245525041,0.3120897525892538,0.3173100965144771,0.3223973560442354,0.3270422353017269,0.3319136030381349,0.3317052167009782,0.3307536873359084,0.3298173470968469,0.3294486777229942,0.3293355328666756,0.3273634582414891,0.3261704245603501,0.3258438006648871,0.3273706088793485,0.3290283559255701,0.3307636309334926,0.330781191568091,0.3327553791518696,0.3331107698470988,0.3347714580187436,0.3349802371541502,0.3365534877113226,0.3405094186119282,0.3452830188679245,0.3484525501342176,0.3508724346804086,0.3556741899677573,0.3571607411116675,0.3605084874781152,0.3636873073690109,0.3670811825434068,0.3715582450832073,0.3713147410358566,0.3758461955050095,0.3674924924924925,0.0,1.8236803767674932,60.667375030786346,177.8567897973886,270.0446187839433,fqhc4_80Compliance_implementation,64 -100000,95686,44391,421.3678072027256,6343,65.12969504420708,4959,51.14645820705223,1920,19.68940074828084,77.3508434030137,79.7426230465851,63.31502979323547,65.0833310788456,77.11435125498998,79.50764098956574,63.22869930710615,65.00020562301492,0.2364921480237143,234.9820570193515,0.0863304861293201,83.12545583068243,158.37888,111.01965983080233,165519.3863261083,116024.97735384728,350.30415,225.8700373887285,365403.59091194114,235359.63666817825,360.92473,174.22623494667488,372798.549422068,178632.16790067797,3511.76298,1597.9729422480627,3625746.044353406,1625706.070338684,1157.12325,512.5574728795826,1188658.675250298,515082.3023856556,1880.363,781.2435086156978,1930502.2260309765,786294.0200518529,0.38094,100000,0,719904,7523.608469368559,0,0.0,0,0.0,29859,311.3308111949501,0,0.0,33150,341.97270238070354,1618849,0,58016,0,0,6254,0,0,60,0.6270509792446125,0,0.0,0,0.0,0,0.0,0.06343,0.1665091615477503,0.3026958852278101,0.0192,0.3376818113660219,0.6623181886339781,24.635421609803466,4.277554191889045,0.3266787658802177,0.2369429320427505,0.2173825368017745,0.2189957652752571,11.232403381451432,5.838061429674043,20.30460464912211,12425.78611245946,56.232106376252574,14.058350302628112,18.226829772055535,11.978633748462164,11.96829255310676,0.5646299657188949,0.8093617021276596,0.6765432098765433,0.5862708719851577,0.1114180478821362,0.7424124513618677,0.9519230769230768,0.875,0.7478991596638656,0.1548117154811715,0.502449646162221,0.7312252964426877,0.6131921824104235,0.5404761904761904,0.0991735537190082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0044923994280556,0.0068115603650427,0.0091064314171883,0.0111701153634865,0.0133452863633585,0.0155260178110559,0.017699205425169,0.0198402552643151,0.0216710022326457,0.023812942262332,0.0260368521599802,0.0281520643475756,0.0300641877620828,0.0322817011878592,0.0342175450203651,0.0359603410586077,0.0377501453126297,0.0397653397684602,0.0417583104875277,0.0567050688837593,0.0709783473635716,0.0840969445056732,0.0964799697020703,0.1090412346121794,0.1250476069569633,0.1387267285116861,0.150688432418618,0.1614685763146643,0.172165888727936,0.1856482329737128,0.1978132611637347,0.2097486671744097,0.2203523361418098,0.2304034344212669,0.2412500970055764,0.2505776894654,0.2599963976945245,0.268593492703424,0.2764601364131369,0.283869847151459,0.2910085125815252,0.2973129872283961,0.3038670057093509,0.3090723453908985,0.3137201735357917,0.3176507380535401,0.3228748028692069,0.3281765383073122,0.3324669498904926,0.3318830818965517,0.3312009905076352,0.3313299646712739,0.3301090016602901,0.3300914738106181,0.3275245345317802,0.3260037938665823,0.3266801042229978,0.327367343456748,0.3283906612012119,0.3296668350262828,0.3303518657157492,0.3310523241258449,0.3311950105802428,0.3333573003547119,0.3342337662337662,0.3356435643564356,0.3381820451991509,0.3422126146229211,0.3447097635692404,0.3467825460440402,0.3513997996520272,0.3554902451225613,0.35790273556231,0.3584212509419743,0.3651625193475413,0.3708690330477356,0.3763763763763764,0.3852235550708833,0.3797909407665505,0.0,2.575263839685072,55.98634134519472,192.5371037487208,270.4879272476779,fqhc4_80Compliance_implementation,65 -100000,95722,44509,421.2615699630179,6171,63.26654269655879,4821,49.76912308560206,1876,19.24322517289652,77.26691653433518,79.62667633566912,63.2951211478972,65.03917226194085,77.03771292112307,79.39871609400095,63.2108795330153,64.95787133861658,0.2292036132121069,227.9602416681712,0.0842416148818969,81.30092332426386,160.22226,112.20912922643082,167382.90048264767,117223.97069266294,348.37602,224.2155710721388,363378.2933912789,233668.87556897965,357.48075,172.31741320512202,369378.0635590564,176944.40352449642,3419.52623,1534.8117838108617,3533204.5297841663,1564350.6310983298,1101.34246,480.7362336076069,1136268.3291197424,487968.3712711122,1837.09292,762.6729167041346,1886165.5000940224,768458.7473271976,0.38164,100000,0,728283,7608.313658302167,0,0.0,0,0.0,29729,309.96009276864254,0,0.0,32640,336.9235912329454,1609875,0,57823,0,0,6348,0,0,59,0.616368233008086,0,0.0,1,0.0104469192035268,0,0.0,0.06171,0.1616968871187506,0.3040025927726462,0.01876,0.3297757153905646,0.6702242846094354,24.823491199385487,4.333854995631669,0.3190209500103713,0.2375025928230657,0.2273387264053101,0.2161377307612528,10.894868272131966,5.537220031437251,19.95754955255657,12394.435140819209,54.52325111144555,13.66617863913711,17.304727316247558,12.16084361337559,11.391501542685305,0.552582451773491,0.7650655021834061,0.7002600780234071,0.5684306569343066,0.0844529750479846,0.7222678718159409,0.925925925925926,0.8579234972677595,0.6776859504132231,0.1274509803921568,0.4952830188679245,0.677027027027027,0.6510238907849829,0.5374707259953162,0.0739856801909307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155572661345,0.0044206065153251,0.0067479806794658,0.0088580977438262,0.0113194882330207,0.0134503578955942,0.0159539222182578,0.0182521615745041,0.0204450896006051,0.0226518997707173,0.0248992855165909,0.0271346878432902,0.0290197852823824,0.0311885216352343,0.0331999009574116,0.0352694307480799,0.0372905577532464,0.0392272816873644,0.0411621017618626,0.0430411135885307,0.0573678055300309,0.071552680608763,0.08479983210032,0.0974211129933397,0.1092378460499662,0.124870367626828,0.1373972864513663,0.149206518266056,0.1604824739622318,0.1714632287428749,0.1849835606101439,0.1966390742827425,0.2081840652460337,0.219542910958529,0.2296732962371219,0.2403161002463983,0.2503605970816794,0.2594470357601568,0.2687877686401018,0.2767647362207883,0.2831422190851972,0.2895186389909437,0.2957448067704326,0.301089705935241,0.3066370175950228,0.3121185594338343,0.3168629416186419,0.3208859227937898,0.3259981586420634,0.3309918776622483,0.3304924498230638,0.3300247111282908,0.3289432778452929,0.3284677874799079,0.3276742766087357,0.3262251289609432,0.3245587557786709,0.3247104183486843,0.3253001715265866,0.3261609574315608,0.3269104239120218,0.3272312574375248,0.3291440360405878,0.3293465577596266,0.3299908181510655,0.3312571966921386,0.3329226714036042,0.3370387965162312,0.3423868605353905,0.3478173243580958,0.3517451242565356,0.3520430107526882,0.3547813947585507,0.3568969474408997,0.3594900849858357,0.3612528176533396,0.3573830632833996,0.3648839556004036,0.3647349629222741,0.3598615916955017,0.0,2.359555383608342,53.30994611170527,184.54703944077792,270.2930820422946,fqhc4_80Compliance_implementation,66 -100000,95704,44017,416.71194516425646,6165,63.24709521023155,4825,49.84117696230043,1890,19.33043550948759,77.288290147924,79.65415932069294,63.294707477804174,65.04254336105804,77.0441279260043,79.41470904628035,63.20333954984862,64.95566941558552,0.2441622219197086,239.45027441259012,0.0913679279555523,86.8739454725187,159.52068,111.7257134833513,166681.30903619493,116740.90266169784,349.66441,225.8250355002156,364784.9515171779,235389.27220670457,357.81656,172.97069736297237,370604.47839170776,178193.63510325504,3456.74101,1585.9321855759088,3571308.1375909057,1616719.983754574,1141.32739,505.42994416408686,1179464.5051408508,515050.3026908885,1858.5926,786.2317139536019,1902887.507314219,788352.467013699,0.37751,100000,0,725094,7576.423138008861,0,0.0,0,0.0,29765,310.3945498620748,0,0.0,32849,339.9335450973836,1609799,0,57809,0,0,6301,0,0,68,0.7105241160244087,0,0.0,2,0.0208977681183649,0,0.0,0.06165,0.1633069322666949,0.3065693430656934,0.0189,0.327658257235722,0.6723417427642779,24.56801328522105,4.452555747720555,0.3181347150259067,0.230880829015544,0.2302590673575129,0.2207253886010362,11.319910324231405,5.789958172684749,20.21049321628812,12239.07814650684,54.82197695622407,13.36861867393254,17.397345529918454,12.320644432859298,11.735368319513784,0.5546113989637306,0.7926391382405745,0.6840390879478827,0.5751575157515751,0.0976525821596244,0.7156789197299325,0.9216152019002376,0.8309178743961353,0.752,0.1370967741935483,0.493127147766323,0.7142857142857143,0.6297948260481713,0.5238095238095238,0.0856793145654834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0046025486359627,0.006636359946422,0.00873646356082,0.0111361972174762,0.0132778054964412,0.0156705613670194,0.0174756290511917,0.0194218424173038,0.0215731624946271,0.0236438358972256,0.0261342640114966,0.0285214887929261,0.030453141091658,0.0323369228864958,0.0344770566349731,0.0364361151377096,0.0384292074429996,0.0404401822304507,0.0423970818134445,0.0570043970046058,0.0705991979981363,0.0840671277589446,0.0971469464644657,0.1089951334860496,0.1242932469347563,0.1371214373699188,0.1485222357177864,0.1598836587608802,0.1707149453428688,0.1830799094144289,0.1953412784398699,0.2068924202982213,0.2179007073560651,0.2280228254164096,0.2369965930907436,0.2458064949006978,0.2546604865175762,0.2633686797433213,0.2704667616116139,0.2786723589874475,0.2854495772203262,0.2924493598034911,0.2979899316360491,0.3034448315345823,0.3085888736450493,0.3130730775994172,0.3180356322425851,0.3227994490501312,0.3278174188167701,0.3267421614544669,0.3262945787788451,0.3257359386929842,0.3242361403152597,0.323027591349739,0.3216002457191123,0.3202107234096571,0.3204586205194848,0.3209942101476584,0.3221024741308317,0.3230225696728243,0.3237780373369232,0.3254993384159788,0.3267992847563701,0.3278389596679383,0.3269155818847922,0.329940000568715,0.3328202067167227,0.3355226187131216,0.338937912393672,0.341225945056452,0.3437199871945363,0.345773805777582,0.3470753784133262,0.3479880774962742,0.3482394366197183,0.352506038647343,0.354125149461937,0.354110693175712,0.3627194620844228,0.0,2.1929782856054936,58.57422014319345,175.231699163943,264.99795682649625,fqhc4_80Compliance_implementation,67 -100000,95840,44455,419.7725375626043,6148,63.09474123539232,4806,49.686978297161936,1913,19.626460767946572,77.36488025655099,79.68014088814992,63.35773544642036,65.0713179131192,77.1205261390767,79.43629605931659,63.26633348502372,64.98250414256401,0.2443541174742876,243.84482883333192,0.0914019613966417,88.81377055519124,158.19144,110.78084027912136,165057.84641068446,115589.35755334032,346.63981,224.39968105317428,361208.4411519199,233662.3967583204,360.59684,174.3143320560994,373883.69156928215,179964.28258669577,3427.64478,1569.1961116121342,3542329.434474124,1603213.5450877852,1124.16481,496.0484837025977,1157302.5876460767,501951.4322022745,1877.72552,797.9041887847353,1926929.1736227043,803915.1301971914,0.37965,100000,0,719052,7502.629382303839,0,0.0,0,0.0,29475,307.0429883138564,0,0.0,33014,342.1535893155259,1624176,0,58359,0,0,6293,0,0,55,0.5634390651085142,0,0.0,0,0.0,0,0.0,0.06148,0.1619386276833926,0.3111581001951854,0.01913,0.3387825003892262,0.6612174996107738,24.37926577528035,4.386737876619206,0.3281315022888056,0.2378277153558052,0.2084893882646691,0.2255513940907199,11.05966364575217,5.690539350742873,20.670172397403345,12322.565232696756,54.84059486828387,13.729297149313563,17.890476441844132,11.284512985511215,11.936308291614964,0.5661672908863921,0.7970253718285214,0.7203551046290425,0.5538922155688623,0.1097785977859778,0.7025993883792049,0.9125295508274232,0.8455696202531645,0.6549019607843137,0.1361702127659574,0.5151515151515151,0.7291666666666666,0.6785109983079526,0.5194109772423026,0.1024734982332155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0044608459386025,0.0066259436642584,0.0090500954779994,0.0114804608454256,0.0139188693845965,0.0160349854227405,0.0180901239357249,0.0202097644749754,0.022140334715185,0.0244127413602262,0.0263743932350194,0.0284181423887684,0.0305684496546897,0.0326557539273491,0.0348825205434199,0.0368845676458419,0.0390919640266898,0.0414494860346796,0.0433104452767374,0.058313690314775,0.0719967388236769,0.0849675256652,0.0976583009555812,0.109757253435838,0.1246185523467609,0.1379978813559322,0.1493930310181346,0.1604796040279911,0.171562904970494,0.1849827882960413,0.1977514728933571,0.2089698181265074,0.2188994954018218,0.2293049632918626,0.2393549956866995,0.2486463602130172,0.2576431475616056,0.265877555643654,0.2735173707202159,0.280529082192572,0.2871255911718339,0.2939368868928023,0.2985810341939652,0.3043340983885266,0.3098144020099265,0.3145454772832435,0.3196771323249014,0.3243299182448515,0.3278913178110711,0.3276349061171786,0.3267882187938289,0.3262790075098981,0.3251611784093209,0.3246138737612713,0.3239520866244382,0.3217577536289363,0.3222408742306046,0.3227222079369161,0.3239476983700519,0.3248470012239902,0.3256756756756757,0.3269582781038944,0.3274743529306126,0.3288982989678319,0.3295398188509827,0.3304956865871366,0.3333228425756908,0.336698086662915,0.3435592611800375,0.3445478296741073,0.3475864283420742,0.3501115004778592,0.353090405904059,0.3573057191715751,0.3556560009515879,0.3557810578105781,0.3555510120629728,0.3641124586549062,0.3653846153846153,0.0,1.689576674867351,57.89815049063652,183.9241036394245,258.4379582000085,fqhc4_80Compliance_implementation,68 -100000,95632,44229,418.5732809101556,6217,63.79663710891752,4843,49.993725949472974,1919,19.627321398694995,77.2563444549925,79.66635895270599,63.27473565930678,65.05557712299614,77.0244574719619,79.4371236796734,63.18907097592538,64.97350168832263,0.2318869830306056,229.23527303258595,0.0856646833813954,82.07543467351286,159.11808,111.4689691327284,166385.81228040822,116560.324088933,345.7373,222.85786406648367,360872.6263175506,232381.69262997963,353.63436,171.17166408380007,365672.2958842229,175858.07979681736,3485.33283,1560.8869663309529,3602072.2143215663,1589810.4744498385,1174.96343,512.8915777601402,1212484.5867492054,520379.27796976216,1879.80942,778.6049204814075,1925365.5470972057,781280.8194414795,0.37859,100000,0,723264,7562.991467291283,0,0.0,0,0.0,29385,306.59193575372257,0,0.0,32362,334.2500418270035,1615793,0,57961,0,0,6340,0,0,69,0.7215158106073281,0,0.0,0,0.0,0,0.0,0.06217,0.1642145856995694,0.3086697764194949,0.01919,0.3118296046582899,0.6881703953417101,24.84298010418078,4.392088086751977,0.3245921949205038,0.2267189758414206,0.2242411728267602,0.2244476564113153,11.476767758582785,6.0836291514861065,20.37795896239769,12353.13165048908,54.35977010324567,13.096931417142882,17.51473759613444,11.900202181226051,11.847898908742287,0.5606029320669007,0.7914389799635702,0.6787531806615776,0.5948434622467772,0.1223551057957681,0.7258464079273328,0.9158163265306124,0.8525469168900804,0.7253218884120172,0.1549295774647887,0.5055066079295154,0.7223796033994334,0.6246872393661385,0.5592028135990621,0.11441647597254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0047130129835906,0.0069211175270705,0.0091331159265693,0.0114864177434123,0.0138137587482045,0.0158927697078504,0.0180534553925374,0.0205183806231205,0.022497003472898,0.0245241393463649,0.0267606647003812,0.0287020260253664,0.0309100844408244,0.0328702029853829,0.0349023706294429,0.0369460426061265,0.0394328156650911,0.0411563316232556,0.0429648791580177,0.0582026065236248,0.0715722427086825,0.0846359771140622,0.0980716195448516,0.1103736453903702,0.1256917916212526,0.1384679062659195,0.1504051622246121,0.162069444592876,0.1721103910039057,0.1847356222713307,0.1969104440424218,0.2083319719000163,0.2197701048663693,0.2295450785773366,0.2398654648787851,0.2495386164084782,0.2581430471338728,0.2664469197544896,0.273972445596687,0.2812485506238115,0.2880539273153575,0.2944895151342632,0.3005017766253721,0.3058595794932979,0.3113411485676874,0.3160442426826516,0.3210055965630219,0.3250259470679813,0.3289329369012223,0.3283282067886244,0.3271987307718838,0.326459072469504,0.3264755382740409,0.3254769083798549,0.3237367983496012,0.3221621621621621,0.3230269450216022,0.323718610251118,0.3251752021563342,0.3253677857412297,0.3258625832753306,0.3271360592917,0.3288604135397298,0.3302493675460788,0.3307750541676456,0.3317427208046404,0.3337954065719417,0.3374071998879395,0.3390977443609022,0.3419009127650879,0.3464737985481905,0.348652732309242,0.3514045581888392,0.352073732718894,0.3542837078651685,0.3581507054938457,0.3586826347305389,0.3587806851901807,0.3635312259059368,0.0,2.446121577442704,52.70699278675941,178.57130729837044,278.6560263218713,fqhc4_80Compliance_implementation,69 -100000,95696,44010,415.9212506269855,6184,63.46137769603745,4851,50.14838655743187,1873,19.20665440561779,77.32722884548278,79.70461785279129,63.32110870231941,65.07626618547772,77.09633761211931,79.47539060707867,63.23583259530795,64.99408030305852,0.2308912333634651,229.22724571262165,0.0852761070114667,82.18588241919633,159.93538,111.98587970895748,167128.5947166026,117022.52937317912,350.45802,225.8631773750268,365594.6330045143,235397.3116300141,356.17001,171.63357964607124,369038.5700551747,176857.72111792612,3488.77539,1572.561903535231,3606438.5449757567,1604144.4446096243,1155.2368,507.59491263156673,1192936.4550242436,516205.1355200426,1847.55438,768.7837732250172,1895689.2033104831,773694.3329290329,0.37713,100000,0,726979,7596.754305300117,0,0.0,0,0.0,29829,311.1519812740344,0,0.0,32610,337.6107674301956,1612819,0,57923,0,0,6422,0,0,61,0.6269854539374686,0,0.0,0,0.0,0,0.0,0.06184,0.1639752870363005,0.3028783958602846,0.01873,0.3241326137239784,0.6758673862760216,25.01644996732381,4.4146471326939976,0.3199340342197485,0.2269635126777983,0.2275819418676561,0.2255205112347969,11.101789512753504,5.606048156635014,19.728526793276,12323.842028188885,54.67246647726683,13.180519502766744,17.41005658238688,12.171615003057765,11.910275389055435,0.5534941249226963,0.7584014532243415,0.6952319587628866,0.5806159420289855,0.1188299817184643,0.7191283292978208,0.9042821158690176,0.8579234972677595,0.7418032786885246,0.1594827586206896,0.4966777408637873,0.6761363636363636,0.6450252951096122,0.5348837209302325,0.1078886310904872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791686071233,0.0049659981149476,0.0071522775692401,0.0095574717897153,0.0116634974222348,0.0140409110810177,0.0162441620949156,0.0183532151319552,0.020504167305824,0.0228469022017409,0.0249720538616948,0.026909329937143,0.0291192232130918,0.0311183010644107,0.0333453738583002,0.0352854793840553,0.0373785301369579,0.0393995078954745,0.0413567854876793,0.0431320227647022,0.0579602665608222,0.0716057393433873,0.0848682554334144,0.0974729621680764,0.1094259226055498,0.1245027928232904,0.1370717833340408,0.1486257680471104,0.1604803726734619,0.1714009869126797,0.1842085420369472,0.1961463520242476,0.208232261152386,0.2179372197309417,0.2270831269741693,0.2375354547066123,0.2479462452004643,0.2564549699049333,0.2646571486937376,0.2729126335925955,0.2804787701995647,0.2870465714954364,0.2935891669231315,0.2995338135014321,0.3054309915296462,0.3108206424563783,0.314854931817328,0.3198339847479853,0.3239566192000207,0.3291304692244725,0.3283135372709746,0.3282998609715473,0.3279776753625639,0.3267755774147419,0.3266543789761579,0.3245105259927576,0.3234655552209949,0.3241196144009443,0.324141341792012,0.3247988035040239,0.3249733689659683,0.3252741184822907,0.3250836820083682,0.3253725341256898,0.3270164975229667,0.3279240261942654,0.3292620284230352,0.3341196452160785,0.3385559060637925,0.3421826563866147,0.34449629426297,0.3459525843656557,0.345842298443235,0.3489639293937068,0.3511870845204178,0.3552725541537729,0.3544655252198056,0.3520667888413765,0.3563122923588039,0.3671423062090242,0.0,2.1100338061739565,54.44002303348484,182.36344129935577,271.6556903685426,fqhc4_80Compliance_implementation,70 -100000,95774,44130,416.7623780984401,6187,63.37836991250235,4963,51.19343454382192,1930,19.765280765134587,77.38146625236273,79.70425633923676,63.35451413110488,65.06781745836803,77.13359359506502,79.45900275298057,63.26301368681554,64.97981578703735,0.2478726572977052,245.2535862561973,0.0915004442893376,88.00167133067305,159.16802,111.55423093505038,166191.03305698832,116476.29934538643,349.70414,224.76270097600823,364500.20882494206,234045.7650051248,363.28627,174.62371811031508,375230.7097959781,179124.64076274622,3576.73172,1623.980954001952,3692865.287029883,1653949.9592811756,1212.51288,530.026296814911,1249046.1398709463,536452.6212004371,1912.27262,801.2872429029194,1961045.8788397687,807363.3333741846,0.37856,100000,0,723491,7554.137866226742,0,0.0,0,0.0,29725,309.6873890617495,0,0.0,33313,343.7362958631779,1617050,0,58122,0,0,6431,0,0,66,0.6891223087685593,0,0.0,0,0.0,0,0.0,0.06187,0.1634351225697379,0.3119443995474382,0.0193,0.3384118190212373,0.6615881809787627,24.471339085440118,4.410569510712404,0.3250050372758412,0.234535563167439,0.2087447108603667,0.231714688696353,11.21431072793331,5.556740599696479,20.55219299832085,12326.984669660387,56.1881011312641,13.839759265606869,18.17908297630516,11.661994843546422,12.507264045805655,0.5641748942172073,0.788659793814433,0.707997520148791,0.5617760617760618,0.1373913043478261,0.7105864432597105,0.9289340101522844,0.8581730769230769,0.6756756756756757,0.1434426229508196,0.5115068493150685,0.7168831168831169,0.6558061821219716,0.5238095238095238,0.1357615894039735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047022578945234,0.0073036386321907,0.0097083434885043,0.0121101812968367,0.0145061791233177,0.0165728962818003,0.0185614138919784,0.0204434000817327,0.022579391062367,0.0247103297784061,0.0269937517313552,0.0290112735979939,0.0310782153960182,0.0331762838025918,0.0351440669214086,0.037150485336424,0.039105913577175,0.0410849331006399,0.0432387972680326,0.058032266816939,0.0717910619552365,0.0851311525270852,0.097225872236647,0.1097805232864582,0.1253186111199247,0.1381475667189952,0.149947842377536,0.1612479439471941,0.17221823171843,0.1854654667585256,0.1975410101971301,0.2090441552228419,0.2198718088946251,0.2292489683631361,0.2386308231018128,0.2487747697460229,0.2577309146561037,0.2659202398255814,0.2735984227599408,0.2811577082102776,0.2888495906871069,0.2951885719700559,0.300800824801592,0.3056301571291424,0.3108412942989214,0.3151077516081396,0.3190712468193384,0.3235362724515978,0.3278753413993746,0.3269890837629386,0.3265553034990032,0.3261194029850746,0.3258366839258338,0.3247464080673469,0.3225653133815773,0.3201303941892298,0.3204356455131464,0.3207444084002049,0.3226283616403201,0.3231882973549328,0.3238542241855328,0.3254913452079452,0.3260091291506309,0.3276636636636637,0.3277190607590982,0.3286218076332404,0.3308355541620943,0.3343028349160739,0.3381406436233611,0.3384832740862273,0.3419826307985596,0.3425068801601201,0.3410776449220524,0.3450193195740269,0.3458985301090564,0.3467962344366839,0.3446122860020141,0.3493413830954994,0.3494068120933792,0.0,2.3556123467747625,57.63967580152745,184.9165420834224,274.2734799968224,fqhc4_80Compliance_implementation,71 -100000,95759,44493,420.23204085255696,6124,62.68862456792573,4769,49.24863459309308,1932,19.820591276015836,77.31912755708531,79.66774174812859,63.32066847763053,65.05779759461248,77.078280609367,79.42775842337421,63.23013711894573,64.97005891835322,0.2408469477183104,239.9833247543768,0.0905313586847995,87.73867625926357,159.03426,111.4180334167821,166077.6115038795,116352.54484359911,345.09461,222.89346815857115,359844.05643333786,232230.83799806933,353.38721,170.89570761667795,364991.5203792855,175455.27821532905,3418.13903,1550.9708562094486,3533081.23518416,1583219.421891883,1170.01267,519.5269236361905,1204977.9028603055,525683.271166356,1899.4446,803.5036944928913,1950511.241763176,811026.1593738121,0.38168,100000,0,722883,7548.982341085433,0,0.0,0,0.0,29372,306.153990747606,0,0.0,32423,334.6004030952704,1618312,0,58098,0,0,6347,0,0,62,0.6474587245063127,0,0.0,0,0.0,0,0.0,0.06124,0.1604485432823307,0.3154800783801437,0.01932,0.3358348968105065,0.6641651031894934,24.72265149449,4.418247342309257,0.3076116586286433,0.2367372614803942,0.2222688194590061,0.2333822604319564,11.187181854722413,5.799122294879686,20.618319678388637,12345.168081149932,53.93592951071145,13.560514238735534,16.424148998211496,11.7457082280492,12.205558045715234,0.5600754875235898,0.7847652790079717,0.6952965235173824,0.5792452830188679,0.1356693620844564,0.7199354317998385,0.9197994987468672,0.8387096774193549,0.7391304347826086,0.180672268907563,0.5039660056657224,0.7109589041095891,0.6465753424657534,0.5349397590361445,0.1234285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002319010825426,0.0048034536223512,0.0069903818838521,0.0094558085681204,0.0116443441030804,0.0140743230169156,0.0163038490950802,0.0184822121472041,0.0205926259176703,0.0226758530318076,0.0248741425803078,0.0268921541447186,0.028971645429021,0.0309979293506814,0.0333168245320786,0.0354075589867609,0.0374135574972048,0.03936517815466,0.0415848374325883,0.0435353177661591,0.0573050948300157,0.0716848502599399,0.0850394361470045,0.0976056027004006,0.1093435381679791,0.1249762080998202,0.1376629437532482,0.149146049481245,0.1604980458321765,0.1703117629400917,0.1837310475534114,0.1960845850828968,0.2077228476641105,0.2178591345996129,0.22790590202896,0.2386142122984228,0.2481522831305124,0.2577566706805163,0.266798351667064,0.2743413516609393,0.2818514486879588,0.2891181153990259,0.2950942054745823,0.3008776247703889,0.3073273397486587,0.3116171095525042,0.3165488367428801,0.3206816125208702,0.3247411981423345,0.3293870486106523,0.3282819430774831,0.3276771572205771,0.3261921899036086,0.3253580894173534,0.3246822822107801,0.3225192888807081,0.3222572919475329,0.3228728300894266,0.3232231701687497,0.3242570712495524,0.3253371905173385,0.3263532904502721,0.3274198633736206,0.3287932504599919,0.3310273345224895,0.3321230801379166,0.3330097364588984,0.3366374020579628,0.3392316892985295,0.3406432168775032,0.343892019632794,0.3462640628316705,0.3486775818639798,0.349553128103277,0.3506088926649674,0.3536829699469652,0.3542300669506999,0.3588807785888078,0.362561847168774,0.3631859756097561,0.0,2.1615171998061227,54.29978967460503,180.27266370855665,264.4500050923083,fqhc4_80Compliance_implementation,72 -100000,95680,44286,420.0146321070234,6098,62.61496655518394,4757,49.111622073578594,1856,19.032190635451503,77.34181859432726,79.72409918645441,63.3271521787835,65.08534828798837,77.11094948312169,79.49415170665597,63.242759769616704,65.0035473628163,0.2308691112055783,229.9474797984402,0.0843924091667958,81.80092517206106,158.28142,110.8435559384124,165427.4456521739,115847.74512793936,345.27925,222.97771639311875,360221.70777591976,232398.5500304591,357.77038,172.7303447069139,369808.3612040133,177375.72882604392,3389.92783,1525.8536357082085,3505000.574832776,1556794.7055632751,1128.60703,491.63223946034645,1165791.220735786,500141.5796954079,1820.85598,754.8620912165818,1869870.8821070236,761759.6185075458,0.37897,100000,0,719461,7519.429347826086,0,0.0,0,0.0,29366,306.25,0,0.0,32704,337.6881270903009,1623235,0,58272,0,0,6306,0,0,61,0.6375418060200668,0,0.0,0,0.0,0,0.0,0.06098,0.1609098345515476,0.304362085929813,0.01856,0.3244639223665675,0.6755360776334325,24.6926427322572,4.352969562993836,0.3279377759091864,0.2402774858103847,0.2095858734496531,0.2221988648307757,11.23636399571615,5.7641777373436085,19.6527230934188,12282.0290996337,53.79356425821936,13.70245609758989,17.54392857810263,10.995276794292147,11.551902788234685,0.549505991170906,0.7699037620297463,0.676923076923077,0.5737211634904714,0.1002838221381267,0.7289644012944984,0.9146067415730336,0.8498659517426274,0.751219512195122,0.107981220657277,0.4865095143425163,0.6776504297994269,0.6225779275484414,0.5277777777777778,0.0983412322274881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493432977893,0.0047842525112257,0.0068991406511571,0.0091710507606995,0.011398299914589,0.0138673943145719,0.0160535730666911,0.0182722048120208,0.0202679912918161,0.022213350530766,0.0241981789844967,0.0261890334706117,0.0280444019217513,0.0299648623862664,0.0320063579221154,0.0341428600980534,0.0360407038196099,0.0381452718136135,0.0400927939080591,0.0418247779492097,0.0561805969057841,0.0695760520171296,0.0833333333333333,0.0955502477930112,0.1083732410708634,0.1238325911980284,0.1362290855463486,0.1481654940446412,0.1591329152466319,0.1694869815124608,0.1827629283421999,0.1951522886562256,0.2074624268656067,0.2185016343620522,0.228041228041228,0.2389063001805114,0.2487751526176579,0.2580333142130895,0.2670456479558838,0.2738733168452871,0.2817417646582723,0.288276071683247,0.2938012083091947,0.2998466992430775,0.3054526911355827,0.309588636055637,0.3148268614891913,0.3195465764229918,0.3241503471142887,0.3289175067292975,0.3277902702411569,0.3271551427588579,0.3262861169837914,0.3257256012950971,0.3251660450810538,0.3235289609613291,0.3206836524766577,0.3213658664653857,0.3229321446260525,0.3233279828785447,0.3236558737755178,0.3242587441557673,0.325778326050139,0.3256780304722756,0.3269281579516249,0.3280544757233426,0.329201926090549,0.3322852471387247,0.3353164824332887,0.3380942908295206,0.3401261080142557,0.3427492286413448,0.34402460456942,0.3444655762647394,0.3468489558947467,0.351142313184198,0.3514881865602945,0.3566504460665045,0.3598885793871866,0.3621558743699108,0.0,2.23739752280699,54.22843567512855,178.16017674380709,265.34736340888924,fqhc4_80Compliance_implementation,73 -100000,95701,44112,417.7699292588375,6134,63.12368731779188,4756,49.34117720817965,1920,19.832603630056116,77.38307130315455,79.75848731446489,63.34642469116329,65.09700681762283,77.15101826040944,79.52384788818995,63.26121395009008,65.01282162123941,0.2320530427451075,234.6394262749385,0.0852107410732188,84.18519638341593,159.47668,111.71905458451272,166640.55756993135,116737.60418857976,347.75123,223.75665505828,363028.6935350728,233464.13836666275,349.90734,168.26080461539894,363271.3973730682,174103.5648681985,3402.49198,1528.061041170545,3531576.597945685,1572944.0456949717,1114.99805,488.8890578214604,1155542.512617423,501307.9777865021,1879.87278,774.200240765902,1942953.3442701744,789980.1900995414,0.37939,100000,0,724894,7574.570798633244,0,0.0,0,0.0,29618,309.1190269694152,0,0.0,32024,332.2744798904923,1618447,0,58151,0,0,6231,0,0,57,0.5956050615981024,0,0.0,1,0.0104492116069842,0,0.0,0.06134,0.1616805925301141,0.313009455493968,0.0192,0.3338528678304239,0.6661471321695761,25.0120367903287,4.442064023069723,0.3191757779646762,0.2264507989907485,0.2375946173254836,0.2167788057190916,11.227167704729652,5.74087650623041,20.17501885634377,12335.13833446718,53.498000018149945,12.699817139782402,17.10212216843449,12.462782290552951,11.233278419380106,0.5567703952901598,0.7641597028783659,0.7022397891963109,0.5637168141592921,0.1183317167798254,0.7221764220939819,0.8991825613079019,0.8740740740740741,0.6853448275862069,0.1578947368421052,0.5001411233418007,0.6943661971830986,0.6397124887690926,0.532293986636971,0.108272506082725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022878430499174,0.0044779446031649,0.006724069735601,0.0088955684633819,0.0110213003914391,0.0132027647424086,0.0154437399335358,0.0174851228449815,0.0197172733126859,0.0219173875211137,0.024011400801747,0.025959089788877,0.0280048954573035,0.0300870371324097,0.0321662161883343,0.0342097647691099,0.0364956698296937,0.0382882882882882,0.0403398573181638,0.0423753543438385,0.0572362785450139,0.0700138185168125,0.0830544569516276,0.0959435589014593,0.1086042024691878,0.1239930650992663,0.1364609611837781,0.1488196512122501,0.1603187812059915,0.1709125190152765,0.1846345818721628,0.1969428349044365,0.2083659363588941,0.2182926962546857,0.2283740829951276,0.2391208012053531,0.2489726639271038,0.2580438087730165,0.2665955079145186,0.274288726181064,0.2810036920868971,0.2876741191618869,0.2949064202795546,0.3004451483627899,0.3065080986429301,0.3119348670819712,0.3178260597332665,0.3217714620419181,0.3263388459743895,0.3303263640325968,0.329442492292365,0.3291243707188248,0.3288099327120696,0.3280326992792871,0.3272667893830532,0.3256893382352941,0.3238711924513963,0.3241895261845386,0.3249820555764432,0.3264847110904839,0.3270677393463125,0.3283717267178578,0.328886105021401,0.3302376339057036,0.3320742989648825,0.3322364159303501,0.3321636764955571,0.3352267407384289,0.3389824585924942,0.3406853091768412,0.3410090204433162,0.3426661754644492,0.344866350237322,0.3448275862068966,0.3463997775924381,0.3500175008750437,0.3520705636119001,0.361062292520992,0.3696808510638298,0.3721100917431192,0.0,1.3700479670203745,53.99329181836829,177.09921158376966,267.81814013947405,fqhc4_80Compliance_implementation,74 -100000,95676,44447,421.589531334922,6220,63.600066892428615,4900,50.45152389313935,1956,20.025920816087627,77.3960056150407,79.78071926218784,63.35197710932333,65.11320161275096,77.14972038670673,79.53636237017876,63.259965100588005,65.02478520204798,0.2462852283339742,244.35689200907973,0.092012008735324,88.41641070297612,159.72902,111.82973914312468,166947.84480956563,116883.79441356732,347.18945,223.84007784878216,362099.8474016473,233176.2532775336,358.31661,173.34756863021212,368761.3821648062,177041.3946165438,3547.34499,1628.0580390381483,3658175.989798904,1652205.0836320317,1178.25595,523.8620780131256,1212918.0254191228,529055.4397781701,1921.21284,814.0711109207048,1968334.6920857893,816378.5303195122,0.38215,100000,0,726041,7588.538400434801,0,0.0,0,0.0,29587,308.4263556168736,0,0.0,32836,337.5768217734855,1619603,0,58042,0,0,6353,0,0,74,0.762991763869727,0,0.0,0,0.0,0,0.0,0.0622,0.1627633128352741,0.3144694533762058,0.01956,0.3422059048493193,0.6577940951506808,24.077013713525893,4.406053531768483,0.3106122448979592,0.2344897959183673,0.230204081632653,0.2246938775510204,11.203173425241149,5.667520212958178,20.814773279635546,12314.19817981474,55.60627155476926,13.778059312815742,17.121534468954316,12.565293414353812,12.1413843586454,0.5502040816326531,0.7919930374238469,0.6727989487516426,0.5602836879432624,0.1180744777475022,0.7199091597274792,0.92,0.8663239074550129,0.7132075471698113,0.140495867768595,0.4875663593182453,0.7168508287292817,0.6063548102383054,0.5133256083429896,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.0044716189085599,0.0070136619232252,0.0091643383286766,0.011270929546518,0.0134810410133181,0.0155795956238465,0.0178664406987309,0.0198634198204829,0.0221396548547564,0.0244720114824687,0.0264589921557353,0.0284271477203772,0.0302949144511171,0.0323475999834908,0.0340931410554607,0.0360901632551586,0.0380443244926558,0.0400216333153055,0.0420557825398148,0.0564155594551683,0.070160750167448,0.0840378443013279,0.0964777625906844,0.1083200691494408,0.1238354078319814,0.1368039126237282,0.1487955205927124,0.1598068644312221,0.1706315157235402,0.182920656119075,0.1951926613444105,0.206699053394629,0.2164735461303017,0.2262055314235443,0.2379513070050154,0.2476993608406117,0.2568792907785481,0.2656853746699754,0.2749319673443253,0.2815722319088253,0.2880275523904033,0.2950341373526424,0.3007382060516146,0.3072445490043899,0.3123040415093875,0.3177269210611695,0.3216785877339826,0.3262308833967864,0.3305574193208878,0.3294041833364659,0.3286233623705329,0.3281702414752762,0.3267669411476284,0.325246893442866,0.323591899121131,0.3221723603956641,0.3238869049569177,0.3243031284630466,0.3249136057572411,0.3261951073539313,0.3260016949486588,0.327280317261532,0.3283392698130009,0.3301520310776462,0.3305606820722102,0.3310931518502765,0.3353407985947743,0.3386593783944777,0.3398934478371501,0.3429094236047575,0.3432192109046376,0.3490399191510864,0.3518998931786968,0.3528019689511548,0.3529129705106689,0.351044226044226,0.3512742099898063,0.3540510543840177,0.3486024844720496,0.0,2.937798702779344,57.19813663368913,179.2599519096608,273.1110570238583,fqhc4_80Compliance_implementation,75 -100000,95834,44612,421.3535905837177,6156,63.150865037460605,4785,49.47096020201599,1859,19.074649915478847,77.38566316619061,79.70703370669138,63.36611244363343,65.08437740328351,77.15044019825359,79.4725499616217,63.27832242502701,64.99951639167509,0.2352229679370197,234.4837450696815,0.0877900186064124,84.86101160842452,158.24974,110.8826318529999,165129.01475467996,115702.8109574889,349.70381,226.5545989673698,364370.07742554834,235867.7721267021,358.67763,173.95517832781405,371915.4892835528,179682.25951069134,3394.17284,1542.3825654026457,3505548.698791661,1573715.6314444342,1105.77059,490.2550318452022,1139809.0865454848,497788.19761185977,1815.77086,766.8100296191936,1863005.5095268905,771380.85958512,0.38192,100000,0,719317,7505.864307030907,0,0.0,0,0.0,29762,310.0674082267254,0,0.0,32797,339.8480706221174,1623568,0,58214,0,0,6369,0,0,63,0.6469520212033307,0,0.0,0,0.0,0,0.0,0.06156,0.1611855886049434,0.3019818063677713,0.01859,0.3369969040247678,0.6630030959752322,24.510214586594017,4.4037235730366255,0.3414838035527691,0.2307210031347962,0.2135841170323928,0.2142110762800418,11.11143910331569,5.793366698231142,19.96742779333512,12422.577231723975,54.19239345926312,13.16355347695538,18.426867092854444,11.264688603176896,11.337284286276397,0.5538140020898642,0.7762681159420289,0.6682986536107711,0.5684931506849316,0.1170731707317073,0.7190146266358738,0.9127358490566038,0.8409638554216867,0.7043478260869566,0.1565217391304348,0.4922547332185886,0.6911764705882353,0.6095159967186218,0.5290404040404041,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020256651778027,0.0043186034488002,0.0067694431194243,0.0086054497795298,0.0108832743398836,0.0130332959983708,0.0152585389719597,0.0174915807735483,0.0196126526649292,0.0220225546982132,0.0244314862829092,0.0265731968920957,0.0287564234326824,0.0312715519459798,0.0332037493426276,0.0352011568455301,0.037114831446723,0.0392528789245105,0.0414001495264994,0.0433307665091885,0.0583123832969967,0.072622544663858,0.0853641919017221,0.0975791707819362,0.1099945223949774,0.1261855974988909,0.1384318752449863,0.1509135162137171,0.1621549554161866,0.1735926655813555,0.1872116656450624,0.1990429691719415,0.2106205833505205,0.2213660474558512,0.2316418303811646,0.2419736434794145,0.2506238303181534,0.2588594727560682,0.267613771539272,0.2748545365173356,0.2821125817106691,0.2896051157580284,0.2966665879742203,0.3025373794356332,0.3084423449612403,0.3138312246652745,0.3183440221595588,0.322654288105928,0.3267361245594329,0.3306663859353616,0.3300940860215053,0.3290834901836866,0.3284140628297294,0.3269750046929375,0.326160882671775,0.325591720505833,0.3245199923959191,0.3252788409415707,0.326053843125845,0.326466012125114,0.3278848316712904,0.328393351800554,0.3289241251682369,0.3309777000044869,0.3317387837935783,0.3343382969798658,0.336368843069874,0.3412302839116719,0.3438778389053463,0.3484153876818816,0.3493238304093567,0.3516571064372211,0.351291745431632,0.3526375711574953,0.3562817856470145,0.3627509205368808,0.3643054277828886,0.361555600567146,0.360759493670886,0.3667174409748667,0.0,1.742954928781361,57.38928977299239,175.42771061177294,263.1616702659806,fqhc4_80Compliance_implementation,76 -100000,95763,44225,417.7813978258826,6127,62.65467873813477,4817,49.695602685797226,1921,19.69445401668703,77.37657405990127,79.72181321982609,63.3458979718325,65.07931651450345,77.13652131040119,79.48198729326793,63.2566477220042,64.99221073600944,0.2400527495000801,239.8259265581544,0.0892502498283036,87.10577849400636,159.57876,111.72249540234358,166639.2656871652,116665.61762094294,347.68129,224.44968836027908,362477.34511241294,233793.4049270377,358.80437,173.15553226824358,370732.49584912753,177742.99348938194,3435.98826,1567.55698282846,3551302.977141485,1600203.6202170586,1142.58687,504.4872302608289,1179694.6210958303,513362.4889162085,1879.50276,794.2518612225708,1930350.511157754,802248.2040303834,0.37907,100000,0,725358,7574.512076689326,0,0.0,0,0.0,29584,308.30278917744846,0,0.0,32781,338.2934954001023,1617445,0,58039,0,0,6290,0,0,73,0.762298591313973,0,0.0,1,0.0104424464563557,0,0.0,0.06127,0.1616324161764318,0.3135302758283009,0.01921,0.3287181082762912,0.6712818917237088,24.5460413997166,4.379025820639876,0.3205314511106498,0.2362466265310359,0.2202615735935229,0.2229603487647913,11.14217211835893,5.762745747637014,20.499477306806774,12289.291536623294,54.65497180488925,13.652297258168666,17.41688083111907,11.760973806027833,11.8248199095737,0.567780776416857,0.8031634446397188,0.6968911917098446,0.590009425070688,0.1108007448789571,0.7244897959183674,0.906801007556675,0.8430379746835444,0.77734375,0.1371681415929203,0.5114309906858594,0.747638326585695,0.6466492602262838,0.5304347826086957,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.0045109428377378,0.0067574423182288,0.0088179121459628,0.0109836465706614,0.0130548568751845,0.0151318942398874,0.0172336341732347,0.01942362935626,0.0216498961009714,0.0238397835355854,0.0260826721138152,0.0282606684280324,0.030421931802968,0.0326304495842532,0.0347183462532299,0.036665424121935,0.0388074565088849,0.0412192155354339,0.0432491538661806,0.0574741434192262,0.070869106005626,0.0843099436046877,0.0972436766390298,0.1098688023605037,0.1253884367403022,0.1364474883908314,0.1483002606798957,0.1589329004560163,0.1700945803933343,0.18319188350853,0.1952478332846431,0.2064099914054765,0.2171829352357401,0.2274393667499697,0.2374027355960008,0.2479564945506521,0.2570007203313524,0.2655703844931681,0.2733882972632543,0.2805251894268031,0.2881395566364231,0.2943290923709974,0.3003460373337165,0.3053764224383964,0.3105228782333296,0.3156368363813643,0.3199883109292811,0.3243861758659478,0.3280112857293534,0.3271507869306345,0.326646422731832,0.3263621276476048,0.3255427878507911,0.3241471373479679,0.3226497360972998,0.3211421339871866,0.3214982698394477,0.322301912568306,0.323527838690699,0.325501217912685,0.3263847763433218,0.3269911041339612,0.3277245375529307,0.3293270960777258,0.330201447087606,0.3301288432549276,0.3323513742204393,0.3351203616104278,0.3377339042182049,0.3418585601165013,0.3463070142834386,0.3490198542347323,0.3519306780176345,0.3524674594999532,0.3559843731502308,0.3559115179252479,0.360655737704918,0.3589465109964703,0.3605751040484298,0.0,2.354350657311616,55.807794855587005,184.66785157480288,260.8825982664259,fqhc4_80Compliance_implementation,77 -100000,95760,44193,418.4837092731829,6099,62.59398496240601,4851,50.16708437761069,1942,20.00835421888053,77.3313489084019,79.69802120918347,63.31030609897547,65.06336419157608,77.09419657655289,79.4599485025741,63.22380999434134,64.97845090809544,0.2371523318490176,238.07270660937263,0.0864961046341292,84.91328348064542,158.87564,111.30361803441222,165909.77443609023,116231.4290500128,349.28105,225.52769015973348,364254.5321637427,235023.81685401368,362.81294,175.14863559893342,375372.7339181287,180246.05777092796,3462.906,1574.1250104747637,3583975.396825397,1611716.1409293166,1140.29926,503.85568346190496,1178046.0108604846,513450.9858785198,1903.96846,783.8552360560584,1962603.1537176275,796645.5349908165,0.37861,100000,0,722162,7541.353383458646,0,0.0,0,0.0,29787,310.5367585630744,0,0.0,33181,343.05555555555554,1616701,0,57980,0,0,6244,0,0,52,0.5430242272347535,0,0.0,0,0.0,0,0.0,0.06099,0.161089247510631,0.3184128545663223,0.01942,0.34140625,0.65859375,24.622749419381343,4.338921534869925,0.3310657596371882,0.225314368171511,0.2228406514120799,0.2207792207792207,11.431676916331575,5.904467698226558,20.492476553756266,12273.077263361383,55.10123113554537,13.14572761899032,18.19105417615417,12.144228645982691,11.6202206944182,0.5687487116058545,0.7959743824336688,0.7017434620174346,0.5975948196114709,0.1083099906629318,0.7329721362229102,0.890625,0.8657074340527577,0.7818181818181819,0.1342592592592592,0.5091317785894914,0.7447108603667136,0.6442388561816653,0.5347394540942928,0.1017543859649122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022087356508171,0.0045326870620684,0.0068003044912458,0.0092054460475513,0.0112515005391767,0.0131987656709881,0.0153562215129854,0.0177358914404157,0.0198426904233448,0.0220722289366409,0.0242964391204463,0.0264036574716186,0.0283212069444587,0.0303317633236109,0.0325147864862354,0.0346096973331816,0.036324852702101,0.0381658002054602,0.0403733810107898,0.0421088810890191,0.0565025417271218,0.0704285774076089,0.0834740651387213,0.0966361370782027,0.1087107793522267,0.1243336999746171,0.1381622929422626,0.149769928848366,0.1604826126915596,0.1712035536861983,0.1835023548049876,0.1958743909041689,0.2081378514591746,0.2184349653564509,0.2286113771729916,0.239067055393586,0.2480711039649839,0.2570087672897932,0.2647219007420519,0.2729793206163716,0.2801805451073433,0.2870640300656809,0.2944166646918027,0.3000108034138788,0.3055244721222147,0.3104558235903507,0.3152821591307396,0.3195381520991929,0.3241189741462023,0.3284788148461122,0.3280961556600595,0.3270098497771419,0.3257814700084483,0.3248064478853709,0.3241655540720961,0.3214755452237482,0.3186860068259385,0.3189194505458479,0.3192008879023307,0.319396175301645,0.320148932587423,0.3225176150156907,0.3241858227530381,0.3254110078627591,0.3254864280566898,0.3254741558982909,0.3263415188722146,0.3296959023868675,0.3334037980481274,0.3374561123523779,0.3395631511606653,0.3420465412814791,0.3460401333584953,0.3460633209323513,0.345909600298842,0.3498480953493807,0.3532412965186074,0.3559889676910953,0.3667114093959731,0.3674698795180723,0.0,1.8342476321823364,57.23072683607035,183.5155416647349,265.0273630535658,fqhc4_80Compliance_implementation,78 -100000,95494,44116,418.466081638637,6038,62.02483925691666,4747,49.15492072800385,1900,19.519550966552877,77.22623088476638,79.71190544513253,63.24095407219974,65.07571870996593,76.98414766857401,79.47059174519364,63.15087221407739,64.98812203824602,0.2420832161923698,241.3136999388854,0.0900818581223532,87.5966717199077,157.6927,110.4661547400699,165133.39057951284,115678.4300329358,346.2625,223.44579630434524,362056.0872934426,233445.2242380863,353.64325,170.95786510547612,366615.16953944747,176143.95442937705,3387.3663,1544.7834929793155,3512127.0865185247,1582736.5822469827,1117.71505,491.4471445636122,1158492.7744151463,502779.0737747828,1856.17756,786.0193827949637,1909406.78995539,795004.164572683,0.37783,100000,0,716785,7506.063208159675,0,0.0,0,0.0,29437,307.67378055165767,0,0.0,32337,334.95298133914173,1618976,0,58120,0,0,6368,0,0,75,0.7853896579889836,0,0.0,2,0.0209437242130395,0,0.0,0.06038,0.1598073207527194,0.3146737330241801,0.019,0.3316118935837245,0.6683881064162754,24.74786998041007,4.339280086472943,0.3267326732673267,0.2254055192753317,0.2285654097324626,0.2192963977248788,11.152279146038632,5.809096156622607,20.432310203105853,12254.96063820856,53.90068964965013,12.786256459061963,17.55763650839517,12.113746563482254,11.443050118710758,0.5546661049083632,0.7813084112149533,0.6924564796905223,0.567741935483871,0.1027857829010566,0.7145085803432137,0.9088607594936708,0.8514851485148515,0.7410358565737052,0.1163793103448275,0.4955266955266955,0.7066666666666667,0.6364428945074107,0.5155875299760192,0.0988875154511742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698485078786,0.0044427764309696,0.0066603041809653,0.009059481443823,0.0109952761035999,0.0130866839932732,0.0153470953785242,0.0175137432816299,0.019611855095297,0.0219770086678551,0.0240803087534899,0.0259204803668555,0.0282860526180301,0.0302198935599653,0.0324017151418091,0.0343838651564408,0.0365971307351583,0.0384499443884286,0.0407663617610901,0.0426864923565282,0.0576844573306676,0.071991355162248,0.084855559411511,0.0976064754798115,0.1095282380791342,0.1247257348186934,0.1375776133367355,0.1498682371517886,0.1611973867409232,0.1709319947977686,0.1840471589130129,0.1962360342770365,0.208013956277599,0.2184923697596912,0.2273885842280064,0.2378533961593172,0.2474127611013526,0.256928315331364,0.2650551700602889,0.272963077735312,0.2803808772703022,0.2866540030955396,0.2921472305282643,0.2977186403192461,0.3036332601804438,0.3094301338678148,0.3142824821830339,0.3189191261999412,0.3240966987262802,0.3282094057832856,0.327084487815427,0.3259807978811455,0.3241956896308222,0.3233374339677256,0.3221581511778641,0.3200368776889981,0.3182251605110927,0.3190675591018497,0.3198318029691925,0.3205551172631428,0.3215339233038348,0.3219700723416906,0.3224194056494802,0.3227063963257533,0.3227520861890676,0.3237419455821355,0.3249408343075475,0.3294213887927508,0.3329114369089055,0.3351890881616097,0.3386588761583056,0.3433667781493868,0.345661182971242,0.345179584120983,0.3481481481481481,0.3531056986365225,0.3516182950919313,0.3516595398085929,0.3564738292011019,0.3579915676504407,0.0,2.1255506537671214,56.48667397459248,174.6482643026389,262.2861787699781,fqhc4_80Compliance_implementation,79 -100000,95713,44321,419.3474240698756,6218,63.67995988005809,4841,50.04544837169455,1953,20.049523053294745,77.36399481233721,79.7489430348444,63.33329461681414,65.09742487199833,77.12019470827046,79.50469081945243,63.24204668800552,65.00833218739596,0.2438001040667501,244.25221539196684,0.0912479288086203,89.09268460236319,159.02458,111.35910806260178,166147.31541169956,116346.89965062402,346.58776,223.47752363077095,361580.50630530855,232956.1435027331,357.41805,173.14788949965154,370018.83756647474,178297.5431390186,3484.50632,1593.3968796002232,3607897.631460721,1632085.1081882534,1150.87918,513.2785697513789,1187545.2446376146,521386.4049307609,1914.65186,811.3975857117111,1968179.4113652275,820797.0506678699,0.37918,100000,0,722839,7552.150700531799,0,0.0,0,0.0,29508,307.7429398305351,0,0.0,32661,337.8120004597077,1621497,0,58183,0,0,6524,0,0,63,0.6582177969554815,0,0.0,0,0.0,0,0.0,0.06218,0.1639854422701619,0.3140881312319074,0.01953,0.3459226144596886,0.6540773855403114,24.50907649920425,4.426942919671335,0.3218343317496385,0.2282586242511877,0.2230944019830613,0.2268126420161123,11.028330957408825,5.648951908035968,20.93163688984481,12326.411403675133,54.800947315566255,13.1675131820621,17.644341521368535,11.989705921271849,11.999386690863778,0.552984920470977,0.7638009049773755,0.7207958921694481,0.5546296296296296,0.1010928961748633,0.7192851824274014,0.888631090487239,0.8655256723716381,0.7286245353159851,0.141025641025641,0.489136649514008,0.6839762611275965,0.6692776327241079,0.4969173859432799,0.0902777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021782960658959,0.0042897563053332,0.0066900836514253,0.009055430209159,0.011182563747736,0.013723332722049,0.0160961279529968,0.0182707626945545,0.0204350894418704,0.0230188717885704,0.0251758721824558,0.0271030820897821,0.029109236782555,0.0312825215608288,0.0333243890356671,0.0354846047271448,0.037540010565897,0.0390797679703633,0.0409559152191765,0.042863096478433,0.0576047453945444,0.0712356869230286,0.0852295974569603,0.097506598942066,0.1096763992832296,0.1250806204337115,0.1377108983128135,0.1496063829787234,0.1613750400341624,0.1718416737226825,0.1844047952133956,0.1967461382025875,0.208721183123097,0.219020330493553,0.2287974300581977,0.2399459650987687,0.2490405640590834,0.257793872868775,0.2671145052027188,0.2743427681597508,0.2811220358588779,0.2885858952021236,0.2949866824504291,0.3006700468673211,0.3064888370624104,0.3112777695680015,0.315895472911272,0.3208683936243232,0.324629809246686,0.3279217784337238,0.3277037475292124,0.3264181790704384,0.3255284141247943,0.325036793351225,0.3232856401512343,0.3215915508005067,0.3201160389108739,0.3205389955083708,0.3213860645424559,0.322249911000356,0.3231784859365649,0.3234359895042121,0.3251359263906315,0.3259595598103247,0.3278200542525866,0.3279741086808999,0.3274050813588353,0.3306213482440158,0.333380153100639,0.3376803551609323,0.341255055209706,0.3451107108803898,0.3461684130791567,0.3490328006728343,0.3482784714339765,0.3495469718645684,0.3516890328551596,0.3558282208588957,0.3516666666666667,0.3499029126213592,0.0,2.1080382422400183,59.10705892554866,170.6431904398564,269.1940284256867,fqhc4_80Compliance_implementation,80 -100000,95666,44375,419.72069491773465,6143,62.85409654422679,4852,50.09094140028851,1913,19.588986682834022,77.31725194233033,79.72440741838892,63.30264576078415,65.08473496922852,77.07921005256,79.49005651718805,63.21377062401166,64.99992024133341,0.2380418897703293,234.35090120086957,0.0888751367724935,84.81472789510747,158.70514,111.16523889651371,165895.03062739113,116201.40791557472,349.00276,225.2434148778635,364191.7400121255,234826.52229299556,358.60794,173.12008413023494,371110.66627642006,178051.22568929664,3485.62412,1582.5963515802569,3599817.939497836,1610646.869547143,1152.94254,509.0590124220557,1188416.9192816676,515428.7298067595,1877.8786,789.0649120726422,1924401.7519285849,791976.331330954,0.38006,100000,0,721387,7540.683210335961,0,0.0,0,0.0,29717,309.97428553509087,0,0.0,32794,339.03372148934835,1618421,0,58069,0,0,6243,0,0,57,0.5958229674074385,0,0.0,0,0.0,0,0.0,0.06143,0.1616323738357101,0.3114113625264528,0.01913,0.3319913285847011,0.6680086714152988,24.52334792642866,4.355969532764683,0.3161582852431986,0.2351607584501236,0.2236191261335531,0.2250618301731244,11.284901824312188,5.800453952563377,20.274408486942477,12327.549125067657,54.89153312948703,13.70889635834238,17.199388714228416,12.03006425930525,11.95318379761098,0.5467848309975268,0.7905346187554777,0.6792698826597132,0.5511520737327189,0.1016483516483516,0.7039106145251397,0.9150943396226416,0.8347107438016529,0.6877637130801688,0.1222707423580786,0.4920811336482356,0.7168758716875872,0.6310845431255337,0.5129716981132075,0.0961761297798377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024010455185549,0.0048876945697916,0.0070328911982301,0.0092369600341432,0.0113649081752047,0.0134766221860038,0.0156183053475608,0.0181329682902909,0.0203597225348366,0.0226623090557029,0.0248589309531137,0.0269426005466614,0.0290696477466905,0.0309091283996948,0.0328221017299251,0.0348884129496849,0.0367897830346128,0.0389644107048279,0.0409834359913434,0.0431260945709282,0.0579858535413162,0.0722461332244248,0.0852097964496793,0.0975578960659084,0.1095543551654287,0.1246798331957409,0.137499469236975,0.1502204895507126,0.1619082231462379,0.1725839851503739,0.1847817889962617,0.1970466281977719,0.208792285254038,0.2196350181177269,0.2292109582401603,0.2397472844158723,0.2488142932071555,0.258548931383577,0.2671295035847173,0.2751273684813097,0.2821527319844052,0.2884489452266242,0.294655115277186,0.300232468964195,0.3056895357737307,0.3103108163089176,0.314816437395952,0.3189600345976748,0.3238811378872984,0.3284168347239247,0.3271736937663909,0.3262614048587446,0.3256376367368747,0.3245887445887446,0.3244199354905837,0.3230460245914206,0.3218672829734693,0.3221888489503832,0.322888399638182,0.3231885608329767,0.323387278040009,0.3238251387709144,0.324339068401175,0.325256186512731,0.3253851532174458,0.3275461452105579,0.3279949846118773,0.3316169544740973,0.3349591213726797,0.3376695486634409,0.339889563272943,0.3428692970328618,0.3456634263350587,0.3511963917131718,0.350943396226415,0.3501954744698495,0.3457987072945521,0.3498880521066558,0.3492706645056726,0.3419962335216572,0.0,2.450258658425465,54.69217401999194,184.04828704955585,269.65906686602074,fqhc4_80Compliance_implementation,81 -100000,95857,44508,420.79347361173416,6267,64.04331452058796,4884,50.37712425800933,1920,19.68557330189762,77.4717338221379,79.75743591354401,63.40399372213196,65.09041881167435,77.2372180603626,79.52391090036821,63.31619078580557,65.00490089364614,0.234515761775313,233.5250131758073,0.0878029363263905,85.5179180282164,159.92768,111.93581187092047,166839.85520097645,116773.74826138988,344.91155,222.2201326703274,359249.75745120336,231255.53967923828,358.54186,173.27854250871127,370076.6141231209,177763.35015852645,3499.58769,1592.2368143512172,3614016.315970664,1624228.532450649,1154.39976,513.5148747788494,1190423.6936269652,521848.3814114172,1886.4514,793.3088428823447,1936882.752433312,802075.0034329994,0.38138,100000,0,726944,7583.629781862566,0,0.0,0,0.0,29421,306.3417382142149,0,0.0,32833,338.5563912911942,1621192,0,58123,0,0,6298,0,0,62,0.6467967910533399,0,0.0,0,0.0,0,0.0,0.06267,0.1643242959777649,0.3063666826232647,0.0192,0.3338409990862016,0.6661590009137983,24.32735655052977,4.351057264932794,0.3144963144963145,0.2454954954954954,0.2158067158067158,0.2242014742014742,11.095230434490157,5.663199877692332,20.292431664983354,12389.226346777445,54.97475825565223,14.4009789097912,17.106394411792714,11.638889191189778,11.828495742878536,0.561015561015561,0.7906588824020017,0.693359375,0.5749525616698292,0.1105022831050228,0.7252081756245269,0.9006772009029346,0.8638743455497382,0.7335907335907336,0.1645569620253164,0.5001403311815885,0.7261904761904762,0.6369150779896013,0.5232704402515723,0.0955710955710955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021257212268448,0.0041738002856824,0.0064592670709201,0.008597239139261,0.0110458499308999,0.013277442591594,0.0155040339010675,0.0177174389783657,0.020086596001062,0.0222122228585453,0.0245291328260223,0.0267470719750579,0.0288355847757974,0.0307024312950787,0.0327378804902435,0.0346547433421794,0.0367313162658391,0.0387090756459285,0.0406088735216854,0.0427701753473125,0.057817632031698,0.0720654798615974,0.0852702617735208,0.098835865431087,0.1106040325045584,0.1251612221165028,0.1379204309284472,0.1492159407646971,0.1606610934947631,0.1712806662165203,0.1855335083717126,0.1973997060349299,0.2089912042567054,0.2198067369110662,0.2296158789090389,0.2401039363113666,0.2496824654054415,0.2587169150262209,0.2673923385361212,0.2749093736777705,0.282477393724521,0.2897279133803145,0.296741197453433,0.3021747972342513,0.3077828328783742,0.3143247501353946,0.3186174666050208,0.3225253371942391,0.3274019512825483,0.3312930274190788,0.3303097493784855,0.3296676173760421,0.3285650110902097,0.3273794959628089,0.3272544259577239,0.3251395285004117,0.3231530509329299,0.3239993465120078,0.3247068819031435,0.3258245464550715,0.3267858141225144,0.3279171660412205,0.3288067814966779,0.3299204903833341,0.3312007639054667,0.3322975737331365,0.3328621108880658,0.3356192138649044,0.3372705230342916,0.3402530257334221,0.3432661670331643,0.3463622494607817,0.3513395092638958,0.3554239732786761,0.3565307467746492,0.3591356998694052,0.3598967820279296,0.3661858974358974,0.3716234652114598,0.3679031037093111,0.0,2.229615116144264,57.85826343813364,174.7627138616131,270.86401381999883,fqhc4_80Compliance_implementation,82 -100000,95754,44556,422.1233577709547,6042,61.939971176138855,4726,48.927459949453805,1782,18.349102909539027,77.34438518034166,79.69822053230315,63.33412346583962,65.07259739792192,77.1181370273917,79.46917950638145,63.24981294542484,64.98856677765907,0.2262481529499638,229.0410259217026,0.0843105204147747,84.03062026285113,159.24502,111.51825792775703,166306.3892892203,116463.28918662098,345.69032,223.5780520435881,360597.0507759467,233069.9835449047,355.96331,172.13074792139545,368703.4901936212,177425.92483109495,3350.15861,1522.2386890101352,3471054.0238527893,1562079.0243855452,1089.00914,480.24625979947314,1126170.7082732837,490413.58042428776,1749.28952,740.9436446941767,1803346.0534285773,755420.071288039,0.38161,100000,0,723841,7559.381331328194,0,0.0,0,0.0,29449,307.1098857488982,0,0.0,32587,337.29139252668296,1617939,0,58101,0,0,6276,0,0,67,0.6892662447521775,0,0.0,2,0.0208868559015811,0,0.0,0.06042,0.1583291842456958,0.29493545183714,0.01782,0.3354390397978521,0.6645609602021478,24.41849732520192,4.337078555091471,0.3256453660600931,0.2369868810833686,0.2228099873042742,0.214557765552264,11.101273411935614,5.656743716985278,19.23594574132809,12302.382592297685,53.46673387028511,13.4095416356725,17.350245862551084,11.548926698208994,11.158019673852529,0.5592467202708421,0.7875,0.6770630279402209,0.5688509021842355,0.1183431952662721,0.71953125,0.9138755980861244,0.8492462311557789,0.7049180327868853,0.1318181818181818,0.4997098084735926,0.7122507122507122,0.6170026292725679,0.5278121137206427,0.114609571788413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0043291798890837,0.0064834261711259,0.0086529965570823,0.0107367265184944,0.0129386255128113,0.0151647948472309,0.0175008929026991,0.0195359197310745,0.0216412565230737,0.0237314533978194,0.0258849852716281,0.0280385362794188,0.0299993820930567,0.0322371000020631,0.0340708284677944,0.0361346016499156,0.038266099761485,0.0402190744416615,0.0424856003083044,0.0572275636006806,0.0716699978024967,0.0848033560566334,0.0974973711882229,0.1095072909966998,0.1251876757808369,0.1373923556611377,0.1496292513750146,0.1609888936351986,0.1712849317711627,0.1847881077706375,0.1969931317938456,0.2080860130889483,0.2188111345479185,0.2289066537645286,0.239109979520673,0.2489818688981868,0.2579281183932346,0.266690868662575,0.2741303899791614,0.2814372642928206,0.2884318405166362,0.2943661471830736,0.3002734665483244,0.3058536170419608,0.3104150217133833,0.3145374559765375,0.319929134058987,0.3245874437717945,0.3287231513037965,0.3286774510728284,0.3274160921438302,0.3270106114626344,0.3256516647631164,0.3251892277722426,0.3228428575810558,0.3202981287662543,0.3213734441196755,0.321934546697428,0.3217091636311692,0.3225196201464721,0.3248278175754346,0.3268217183970551,0.3277429152057884,0.3287266259674085,0.3284618385125471,0.3291185997613229,0.3322872206879236,0.3348390937423399,0.3372752887019326,0.3403752669119985,0.3407427055702918,0.3429593822587733,0.3470893892612395,0.3451335699607696,0.345697851860547,0.347474439188158,0.3489039131325548,0.3493642896627971,0.3531237873496313,0.0,1.695001983945547,56.61612035049521,172.7516243515178,260.23765828328976,fqhc4_80Compliance_implementation,83 -100000,95660,44592,421.8900271795944,6334,64.9278695379469,4951,51.066276395567634,1997,20.342881037006062,77.28108161739658,79.66872112404353,63.29287913429015,65.05583306832634,77.03101611505973,79.42476704454313,63.19965685760665,64.96881830089193,0.2500655023368523,243.95407950039785,0.0932222766835053,87.01476743441106,158.6552,111.16231058007142,165853.23019025716,116205.63514538096,348.94741,225.42537807629105,364066.4018398494,234941.6765548561,360.82238,175.01294410460693,373862.32490068994,180345.4844907652,3567.33043,1630.2040121740165,3673887.831904663,1649048.1769404344,1176.40666,529.7944659658907,1207935.4380096174,532211.9594852729,1966.36222,823.4802928931207,2003369.579761656,814785.8092939742,0.38163,100000,0,721160,7538.783190466235,0,0.0,0,0.0,29755,310.2968848003345,0,0.0,33075,342.3688061885846,1612758,0,57907,0,0,6267,0,0,66,0.6899435500731759,0,0.0,0,0.0,0,0.0,0.06334,0.1659722768126195,0.3152826018313862,0.01997,0.3229495861550037,0.6770504138449962,24.623361430299163,4.419592565310948,0.3169056756210866,0.2290446374469804,0.2217733791153302,0.2322763078166027,11.145949778709864,5.678376863685293,21.268652908678572,12410.763964981765,56.247319422172815,13.653995507628297,17.72755994280886,12.333845152756949,12.531918818978722,0.5574631387598465,0.783068783068783,0.7004461440407903,0.5801457194899818,0.1182608695652173,0.7193240264511389,0.9140811455847256,0.8523809523809524,0.7198581560283688,0.1458333333333333,0.496100278551532,0.7062937062937062,0.6449086161879896,0.5318627450980392,0.1109890109890109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026338449070556,0.0049777471385557,0.0071546728640003,0.0093974459265881,0.0116347659825478,0.0141847582583194,0.0162326406590941,0.0183158410585208,0.0204855609506772,0.0226102621316492,0.0246075606730167,0.0266027352252659,0.0286816125051419,0.0309199748601337,0.0329851793749742,0.034999379626949,0.0370531506054673,0.0390994768745329,0.0411937876439442,0.0432996997998665,0.0582599337575358,0.073051710055082,0.0865964013521174,0.0989245727754861,0.1117981618461733,0.1269243384507951,0.1390746756693632,0.1512323981167849,0.1624430615256303,0.172223832995071,0.1851835871769426,0.1972774369757007,0.2093476674400113,0.2204808060894803,0.2308328098654412,0.2404743153154152,0.2494355145201314,0.2581680937359171,0.2666787898074694,0.274442558267572,0.2818605297921157,0.2882839598762539,0.2948968821527259,0.3008707139854681,0.3061460399352664,0.311147860642486,0.3167901141732777,0.3220369237046103,0.3264816184581046,0.3312958920420718,0.3309392339782101,0.3298430041663218,0.3290580765586775,0.3282480386327711,0.3269686889329773,0.3257810819944087,0.3246738819944774,0.325417085261615,0.3266586662094977,0.3269729894213041,0.3280251184477701,0.3299876773860158,0.3302907013512658,0.3303123664740144,0.3315760199269667,0.3325664688504876,0.3332856243201466,0.3374190491233612,0.3417249745086319,0.344565865289092,0.3474533764990196,0.3490721539852183,0.3508339651250948,0.3518856447688564,0.3561695329386335,0.3588117881883292,0.3626339969372129,0.366350615291507,0.3688212927756654,0.3786707882534776,0.0,2.52554597785246,59.66315807761825,180.1288426475191,272.0245415099171,fqhc4_80Compliance_implementation,84 -100000,95735,44570,421.3714942288609,6142,63.08037812712174,4782,49.459445343918105,1862,19.14660260092965,77.3612597271838,79.72667243723578,63.34108899169471,65.08908003218514,77.13178106154693,79.49697323220126,63.256740553559,65.00682003174153,0.2294786656368757,229.699205034521,0.0843484381357129,82.26000044361115,158.8411,111.30547120010422,165917.48054525512,116264.13662725672,347.97001,224.64153933209016,362969.8229487648,234147.06150529085,359.73469,173.5643848822882,372444.0904580352,178762.87621912864,3387.70018,1524.2952232656517,3508259.288661409,1561839.529185411,1106.07539,482.0467170737259,1145103.7342664646,493284.88816894894,1821.06236,756.7262084893583,1874944.6075103148,765984.1538168376,0.38229,100000,0,722005,7541.703661147961,0,0.0,0,0.0,29571,308.3616232307933,0,0.0,32993,341.40074163054265,1621970,0,58122,0,0,6395,0,0,62,0.6371755366375934,0,0.0,1,0.0104455006006162,0,0.0,0.06142,0.1606633707394909,0.303158580267014,0.01862,0.329922480620155,0.6700775193798449,24.8226321969616,4.374827168711888,0.3283145127561689,0.2356754496026767,0.219155165202844,0.2168548724383103,11.02060795918904,5.584317386095278,19.817504275705595,12370.246115526345,54.11771457330431,13.576485422690467,17.70595378536973,11.653519073116,11.181756292128105,0.568590547887913,0.8021295474711624,0.7063694267515923,0.5772900763358778,0.0973963355834136,0.745748987854251,0.9221411192214112,0.8533007334963325,0.6942148760330579,0.1445086705202312,0.5069072455596279,0.7332402234636871,0.6546080964685616,0.5421836228287841,0.0879629629629629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0049071295319977,0.007123865965781,0.0092755331145675,0.0114715753076375,0.0137166249159894,0.0156017376052862,0.017889416449686,0.0201826045170591,0.0222870597870597,0.0244737678529318,0.0266009346274328,0.0287768304347378,0.0306882449290739,0.0329288176170722,0.0352944825233384,0.0374570233213205,0.0393923041799842,0.0414275018717244,0.0434479093949592,0.0579796397807361,0.0718756541762612,0.0849338634051168,0.0981641536811557,0.1100630256529162,0.1266489091831557,0.1397533639419355,0.1512656005617798,0.16215956424223,0.1730890849259858,0.1857808782525379,0.1984403391883706,0.2099461927278656,0.2191704464724848,0.2295211713494262,0.2401102123468811,0.2497045773784308,0.2582497219194858,0.2670414617006325,0.2750846836949556,0.2825089299131862,0.2901469660506086,0.2968966128746231,0.3025997653987025,0.3077538551061972,0.3121641726813314,0.317278755260299,0.3215379337509371,0.3254246497367365,0.3298381672140228,0.3283082302313072,0.3274380029110482,0.3264482564679415,0.3260467802483396,0.3245125555011063,0.3232210368420247,0.3213873563400098,0.321983351904044,0.3224827351010316,0.3242404238996628,0.324634205744047,0.3250609043554041,0.3261804375642397,0.3259527643585614,0.327926453600308,0.3288913276371142,0.3296455117209834,0.3331439035170802,0.3351756671125818,0.3377135348226018,0.3405833371251763,0.3396056874041968,0.3430844399899774,0.3435345807135823,0.3460963765409039,0.3480259281084266,0.3480570734669095,0.3532849657396211,0.3538761851645287,0.3581135091926459,0.0,1.8579763191583365,54.443269396883146,178.99948938480864,269.6570418022316,fqhc4_80Compliance_implementation,85 -100000,95663,44394,420.1938053374868,6073,62.33339953796138,4789,49.60120422733973,1851,19.0878396036085,77.2430810454354,79.64746385226798,63.27207635196621,65.05004067514335,77.01175334347842,79.41322487704049,63.18645121009175,64.96501715194078,0.2313277019569852,234.23897522748405,0.0856251418744662,85.02352320256534,157.86628,110.75204011143676,165023.3423580695,115773.12034060898,348.6066,225.43097176275995,363945.23483478464,235195.4813586026,363.77215,175.58685265051562,376894.43149389,181046.52158299595,3408.45106,1563.375537255656,3535656.732488005,1607818.5864890155,1130.71922,505.1351942830869,1171836.457146441,518093.7727085968,1814.15292,761.9725692645089,1872796.2117014937,777650.8354800338,0.37995,100000,0,717574,7501.061016275886,0,0.0,0,0.0,29687,309.8481126454324,0,0.0,33342,345.11775712657976,1616935,0,57967,0,0,6305,0,0,63,0.6585618264114653,0,0.0,0,0.0,0,0.0,0.06073,0.159836820634294,0.3047917009715132,0.01851,0.3434009753028157,0.6565990246971842,24.333590199310365,4.387880307104368,0.3349342242639382,0.2347045312173731,0.2113176028398413,0.2190436416788473,11.211392086171037,5.848350060135381,19.764272269417276,12344.436503003786,54.77830409619545,13.483996006524873,18.29283808377907,11.428413306464252,11.573056699427246,0.5779912299018585,0.7927046263345195,0.7082294264339152,0.6136363636363636,0.1143946615824594,0.7392966360856269,0.9193154034229828,0.858139534883721,0.7838983050847458,0.1587982832618025,0.5173800632002298,0.7202797202797203,0.6533219761499148,0.5618556701030928,0.1017156862745098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044833952082445,0.006598783793387,0.0084942948008006,0.0107005177341755,0.0131880441977697,0.0154881468264083,0.017776915536677,0.0201959260471204,0.0224058656672094,0.0241823831646309,0.0263414634146341,0.0284768143813568,0.0306383154077553,0.0326379785510058,0.0348157875688922,0.0372204323909958,0.0392751126149502,0.0413138898712321,0.0430966181560402,0.0577023553261301,0.0718019084329272,0.0855721079651034,0.0985991095767858,0.1107381133350223,0.125849547966378,0.1382830675746019,0.1499024530655323,0.1608426773945048,0.1709572445790508,0.1850177486701984,0.1969453899017929,0.2079398791047214,0.2175108142145321,0.2275502556868277,0.2385014754498458,0.2491308090462935,0.2585313077581932,0.2672054193519055,0.2753319116736603,0.28228095994067,0.289212070116275,0.2956957407495144,0.3011024868937222,0.307458328263779,0.3132568790351451,0.3177846585852001,0.32168126362489,0.3262991226704044,0.3300402052584246,0.3286585036949134,0.3275470138458359,0.3263355545516151,0.3254399304801216,0.324523241954708,0.3228296905697446,0.3216184897693541,0.3217255289371861,0.3225469549882719,0.3235589152008025,0.3247181070346178,0.3251580077115713,0.3262702066384982,0.3263547627061595,0.3270297650634376,0.3290246460409019,0.3305359965512286,0.3326688815060908,0.3364664310954063,0.3394440210196959,0.340993874637314,0.3437316068275456,0.347586817635524,0.3502716767429402,0.3523881872566707,0.3544198236835835,0.3523364485981308,0.3530859134713963,0.3511197124688969,0.3507549361207898,0.0,1.7479630022547157,58.08598972939518,184.18433773815107,256.0624537875713,fqhc4_80Compliance_implementation,86 -100000,95808,44600,421.3113727454909,6166,62.99056446225784,4871,50.17326319305277,1962,20.081830327321303,77.44904619750217,79.77535186016355,63.38601454967061,65.10682424365599,77.19887175179376,79.5261232309692,63.2935546430416,65.01696769354672,0.2501744457084101,249.22862919434863,0.0924599066290099,89.85655010927474,160.0137,112.09708446342172,167014.96743486973,117001.79991589607,351.71842,226.7416618660096,366456.3502004008,236011.33711799595,361.54954,174.84840958726025,372502.7868236473,178763.577018461,3513.67749,1597.8946802057308,3627813.4393787575,1628423.1117195035,1145.35397,503.9662918139812,1182964.7837341349,513594.84339426976,1916.58042,808.7448868286384,1965521.5430861723,816289.8423818576,0.38297,100000,0,727335,7591.589428857715,0,0.0,0,0.0,29876,311.1535571142284,0,0.0,33200,341.6520541082164,1616357,0,58007,0,0,6342,0,0,61,0.636690046760187,0,0.0,1,0.010437541750167,0,0.0,0.06166,0.1610047784421756,0.3181965617904638,0.01962,0.3399691358024691,0.6600308641975309,24.568175763897823,4.449999620304967,0.3297064257852597,0.2227468692260316,0.2213097926503798,0.2262369123383288,11.063314442651285,5.6544206116692,20.94133059107536,12363.721320535717,55.07895801690334,12.990316142388457,18.183470164519825,11.944172500629897,11.960999209365164,0.5522479983576267,0.7705069124423963,0.688667496886675,0.5797773654916512,0.1116152450090744,0.7108895705521472,0.8987951807228916,0.833729216152019,0.7203389830508474,0.1422413793103448,0.4942528735632184,0.691044776119403,0.6371308016877637,0.5403800475059383,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025723342414145,0.0048858118861058,0.0070520430631233,0.0097520342133866,0.0119792143343807,0.0140409110810177,0.0163025192948829,0.0184733463293154,0.0206847215125191,0.0229507525759482,0.0250038428037095,0.0271038587848932,0.0290296052631578,0.0310524473364495,0.0333030796839868,0.0356327420371307,0.0375913390879546,0.0395997511406055,0.0414969661707256,0.0432867984634123,0.0584166988306228,0.0728415197708215,0.0860957690977498,0.0987676370780496,0.1110057425846899,0.1264662989030499,0.1395045632333768,0.15089484150193,0.1612682968463278,0.1729245202193283,0.186423908718423,0.1985047859812882,0.210134306157237,0.2203985420258856,0.2305192666593479,0.2407610077493671,0.2505430605220065,0.260176474550394,0.2691663270388987,0.276329319287983,0.2825713065460044,0.2894727631225863,0.2967726709540386,0.3024392575860791,0.3070361439943779,0.311929988446127,0.316886033310461,0.3209909429941396,0.3251342836483834,0.3285712406435402,0.3280629227960915,0.3263936541047951,0.325452016689847,0.3247668602891365,0.3238341968911917,0.3218224249172526,0.3191643559364759,0.3191764033009233,0.3194418478168499,0.3208720527353814,0.3213785896885671,0.3216625031963649,0.3221407838960931,0.3228081137170017,0.3239294710327456,0.3250233475147868,0.3270017035775128,0.3293988728866625,0.3310059296165046,0.3328719449497745,0.3353799972711147,0.3369137509305541,0.3386099899091826,0.3411961649672805,0.3421550094517958,0.3421426878407205,0.3424846625766871,0.3463584288052373,0.355444997236042,0.3499809378574152,0.0,2.655712070141706,56.53331434904237,181.3217390322041,266.9816985380268,fqhc4_80Compliance_implementation,87 -100000,95794,44152,417.0929285759025,6084,62.13332776583085,4793,49.32459235442721,1906,19.354030523832392,77.3497797498425,79.6848211824511,63.33168066437421,65.06062119813708,77.10506893072471,79.44368729238099,63.240300900907634,64.97387243300967,0.2447108191177847,241.1338900701168,0.0913797634665769,86.74876512741037,160.0456,112.01007372070248,167072.21746664718,116927.66773994052,345.90923,223.7635000694002,360375.1800739086,232867.77712078608,357.11035,172.78071986881756,368276.7396705431,176911.90598545596,3438.35306,1577.8414563730344,3541499.812096792,1599467.2033514683,1139.149,505.3164099044427,1172969.423972274,511307.3260375829,1868.69176,790.6402956400376,1901262.6051736015,785343.8512524691,0.37847,100000,0,727480,7594.191703029417,0,0.0,0,0.0,29470,306.8876965154394,0,0.0,32706,336.9313318161889,1613920,0,57955,0,0,6232,0,0,64,0.6681002985573209,0,0.0,1,0.0104390671649581,0,0.0,0.06084,0.1607525035009379,0.3132807363576594,0.01906,0.3486656200941915,0.6513343799058084,24.254859164311693,4.251113479648834,0.325266012935531,0.2322136448988107,0.2230335906530356,0.2194867515126225,11.198423710199569,5.888568205298814,20.239406258261692,12296.178389726192,54.44497236200479,13.40769811608316,17.507611377071907,11.91499891898634,11.614663949863385,0.5604005841852702,0.7870619946091644,0.6978832584990379,0.558465855940131,0.1188212927756654,0.7229470452801228,0.9112709832134293,0.8504901960784313,0.7230769230769231,0.1238532110091743,0.4997134670487106,0.7126436781609196,0.6437880104257168,0.5055624227441285,0.1175059952038369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312660818121,0.0046437588084398,0.0068301297014228,0.0091842851192229,0.0114739090631675,0.0137671198004174,0.0159869494290375,0.0180272143564406,0.0203092899414332,0.0224260227842659,0.0242539799694518,0.0265724787974618,0.0286880610366775,0.0306553258093747,0.0326999649274824,0.0347913243849261,0.0368415059573719,0.0388046387154326,0.0405847698014401,0.0429382060492477,0.0579852272253056,0.0715981219479039,0.0845046801463266,0.097329507834915,0.1094257283804865,0.1242584779367446,0.1367681846630387,0.1485699688128665,0.1597282312598147,0.1703803035992061,0.1827303393794389,0.1951092780826811,0.2071610418434623,0.2171113054887382,0.2269341226438969,0.2378677896603313,0.2484625258105921,0.2581243883508251,0.2666106830380953,0.2746063555682794,0.2818382718763378,0.2881415391091829,0.2953230558086156,0.3007580929112923,0.3059433343853942,0.3115434340946869,0.3152625,0.3200030517655735,0.3246603700349333,0.3294851835237617,0.3285512224691856,0.3272258882199782,0.3269512745319197,0.3255938586326767,0.324457402972197,0.3230983842781371,0.3211145785480064,0.3214479281291573,0.3223677461272783,0.3234037227099612,0.3234052928709417,0.323953695458593,0.3246290552435242,0.325083836351442,0.3262082231305602,0.3265359340773964,0.3268880282492311,0.329619633442129,0.3314233806163091,0.3310053661616162,0.332151461430065,0.3351351351351351,0.3383150460335477,0.339561954357482,0.3411188547749105,0.3442157558552164,0.3432560994322541,0.3454913880445795,0.3494932895097233,0.3450429352068696,0.0,2.778416271363807,56.52349857839838,177.5130719048033,262.74115461425873,fqhc4_80Compliance_implementation,88 -100000,95793,44185,417.159917739292,6241,63.75204868831752,4901,50.5151733425198,1973,20.14760995062269,77.41775944651599,79.74584942320836,63.37436231324406,65.09507685691656,77.16954549753179,79.50071520956439,63.282202042450834,65.00696862981263,0.2482139489842012,245.13421364396493,0.0921602707932294,88.1082271039304,159.1128,111.41986802775722,166100.19521259383,116312.71035227751,348.9984,225.5099296222145,363675.7905066132,234764.2867664804,362.83553,175.62363778806937,374736.3272890503,180200.8271391049,3529.07161,1622.2161103652888,3638894.209388995,1648329.83314573,1192.22537,528.4308118617561,1229201.7057613814,536324.4982344697,1942.91854,818.9127991061349,1986257.6179887883,819498.9189705445,0.37958,100000,0,723240,7550.008873299718,0,0.0,0,0.0,29613,308.4463374150512,0,0.0,33319,343.7933878258328,1620314,0,58205,0,0,6319,0,0,73,0.762059858235988,0,0.0,0,0.0,0,0.0,0.06241,0.1644185678908267,0.3161352347380227,0.01973,0.3317979425763857,0.6682020574236143,24.298826485216857,4.373151688374458,0.3197306672107733,0.2299530708018771,0.2217914711283411,0.2285247908590083,11.357200466002547,5.853055928712922,20.98918959439485,12271.932747077391,55.68594072088435,13.566770870925362,17.71203106348186,12.063689184991622,12.343449601485515,0.5686594572536217,0.7870452528837621,0.7051691129546905,0.609935602575897,0.1178571428571428,0.7225130890052356,0.9178403755868544,0.8438287153652393,0.7695167286245354,0.1346938775510204,0.5109427609427609,0.7075606276747504,0.6581196581196581,0.5574572127139364,0.1131428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020960115027491,0.004338438770235,0.0065143935627238,0.0087241778554163,0.0112462376962498,0.0135591840058634,0.015839363979207,0.0179533763370621,0.0202170935628283,0.0223932533671756,0.0244464944649446,0.0268944137633702,0.0291006650699505,0.0312139680448031,0.0333670165597739,0.0353553611452534,0.0372877146139277,0.0391884466653534,0.0412208348050113,0.0434022174795689,0.0584074120445724,0.0717168126790306,0.0854315604100715,0.0977267474840851,0.1098881422342061,0.1253922469808868,0.1375101967306898,0.1486167520785931,0.1591365033293495,0.1701129229252823,0.1828213732576148,0.195274008125162,0.2065636436692983,0.2170641680863146,0.2265550318093417,0.2364636116212687,0.2470820373900538,0.2557758184983433,0.2644589710763932,0.2724111503837663,0.2795577174151656,0.2868401695330834,0.293340892447972,0.2995655868168164,0.305676538027588,0.3104072286783533,0.3154067224790703,0.3198988602721624,0.32417511377741,0.328759547010798,0.3277897932590911,0.3271485314531535,0.3267907644253092,0.3247174957786725,0.323988186230131,0.3220040705770731,0.3198552076253102,0.319520710738112,0.3196613807082389,0.3198988405848724,0.3211239149955103,0.3219608229156413,0.3225968166436896,0.323135840402556,0.3243243243243243,0.3253168839957315,0.3278259633157969,0.3320887327037118,0.3354332913341733,0.3361700443318556,0.3388651450395562,0.3401804670912951,0.3429057245418477,0.3449193793732887,0.345779374231969,0.3474728163460389,0.3453271028037383,0.3437436211471729,0.338255400601586,0.3410493827160494,0.0,2.40334124001869,58.4109047008175,184.7532018725177,263.6521086536728,fqhc4_80Compliance_implementation,89 -100000,95719,44397,420.2404956173801,6257,64.0102800906821,4909,50.69004063978939,1914,19.59903467441156,77.3893283971574,79.74765944606287,63.35181630130408,65.09249032459178,77.15136158507374,79.51279606242016,63.26392045863955,65.00839190378609,0.2379668120836555,234.8633836427041,0.0878958426645297,84.09842080568808,158.95396,111.368662951664,166063.12226412728,116349.58885034735,347.87794,224.35289342546244,362858.0846018032,233808.42196999805,361.73087,175.228948091683,373849.6118847877,179945.9927328654,3478.50094,1574.660773052779,3595154.170018492,1606165.3935506833,1160.78855,510.8144299354223,1197436.151652232,518392.1582292144,1870.3688,777.4024149004921,1918009.799517337,782149.1679584502,0.38147,100000,0,722518,7548.323739278514,0,0.0,0,0.0,29611,308.74747960175097,0,0.0,33141,342.1473270719502,1619990,0,58078,0,0,6181,0,0,65,0.6790710308298249,0,0.0,1,0.0104472466281511,0,0.0,0.06257,0.1640233832280389,0.3058973949176922,0.01914,0.3281464530892448,0.6718535469107552,24.678686068243117,4.300281116634341,0.3271542065593807,0.2373192096149928,0.2212263190059075,0.2143002648197189,11.278594706397715,5.946421991050051,20.150170250693662,12356.77996705364,55.20758706552422,13.86299844976363,18.028227016071096,11.903053415004722,11.413308184684784,0.5640660012222448,0.7759656652360515,0.7004981320049813,0.574585635359116,0.1102661596958174,0.7421383647798742,0.8985507246376812,0.8710462287104623,0.7479674796747967,0.1492537313432835,0.5017871872422326,0.7083888149134487,0.6418410041841004,0.5238095238095238,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382693417867,0.0044594443937689,0.0066847225180812,0.0086715473736583,0.0112236183969745,0.0135272682857317,0.0157549323332789,0.0180302442807289,0.0202417566697661,0.0223884415066152,0.0243877446459678,0.02666516189929,0.0287091172511585,0.030488934637159,0.032640306911701,0.0346085482804232,0.0366072075616245,0.0386482449589245,0.0405895620900766,0.0424917964477316,0.0573475205446552,0.0715197555667168,0.0854694579627454,0.0979897384136596,0.1101308119617578,0.1257799115923944,0.1376987620795366,0.1490897476844458,0.1609846259041229,0.1717297361056006,0.1842842066722664,0.1974124035871529,0.2089362396042833,0.2189454577264576,0.2293821238392817,0.2396707946565054,0.2494698542378178,0.2590484759869531,0.2680139799832058,0.2749412910246864,0.2818766334389527,0.2882978723404255,0.2939263883469892,0.300674017407128,0.3051620968818653,0.3108673708053278,0.3150765459275565,0.3190975532252939,0.3239119462670342,0.3287109658199649,0.3289081185670904,0.3277925075213276,0.3271194774179953,0.3275170303660085,0.3269772545298182,0.3253302787323406,0.3238254504149181,0.324033948749816,0.3257682812633012,0.3265237060520785,0.3272594752186589,0.3279496736279556,0.3286401673640167,0.3289356192517189,0.3308903039769314,0.3320004154549231,0.3339486538679995,0.3367474785441333,0.3409313382743672,0.3443049964480227,0.34505444646098,0.3504903260005301,0.3563247325361863,0.3590151515151515,0.3544054104828104,0.3554558337269721,0.3588494901841424,0.3568698451015892,0.3605042016806722,0.3642384105960264,0.0,2.3566886590861595,55.4292745877541,181.5304996766561,274.8859797035232,fqhc4_80Compliance_implementation,90 -100000,95672,44402,420.1229199765867,6024,61.64813111464169,4701,48.54084789698136,1868,19.20102015218664,77.35982293729873,79.73616713350759,63.33991942654043,65.09002105742564,77.12972859433394,79.50611385364557,63.25341755709789,65.00608944104405,0.2300943429647901,230.0532798620196,0.086501869442543,83.93161638159086,158.87014,111.19817716938846,166057.09089388745,116228.54875970865,346.8747,224.7789606014711,362001.7664520445,234382.67267483813,354.02569,171.0554005048425,366000.271761853,175755.7729620137,3331.53854,1519.9861672759932,3443442.5328204697,1550089.3311699417,1108.32712,486.228852402062,1143624.3833096412,493452.411701086,1820.69756,764.6812169763668,1872653.9217325863,771963.5818206788,0.38029,100000,0,722137,7548.049586085794,0,0.0,0,0.0,29553,308.3033698469772,0,0.0,32516,335.82448365247933,1618938,0,58016,0,0,6300,0,0,49,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06024,0.158405427436956,0.3100929614873838,0.01868,0.3334387351778656,0.6665612648221344,24.41888359900208,4.389094130027621,0.3237609019357583,0.2397362263348224,0.2174005530738141,0.2191023186556052,11.402824805298138,5.898307595796895,19.659958822287507,12350.727187714218,53.22764739321816,13.44317258309945,17.21831277482415,11.380217009757835,11.185945025536729,0.5664752180387151,0.7905944986690329,0.6938239159001314,0.5880626223091977,0.1116504854368932,0.7153225806451613,0.9275,0.8453865336658354,0.6681614349775785,0.1296296296296296,0.5131464894539151,0.7152682255845942,0.639607493309545,0.5657071339173968,0.1068796068796068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022481467979098,0.0047029728058706,0.0069903109623091,0.0092421441774491,0.0113775012201073,0.0136495495953992,0.0159671486361181,0.0183446924866342,0.0203987824061778,0.0224138636549635,0.0246481037556088,0.0268273916388817,0.0290357062100437,0.0312393818020819,0.0331927095689486,0.0351713089762803,0.0371236904219636,0.0391636242947228,0.0409207161125319,0.0430110888777722,0.0575440356045884,0.0715370197794833,0.0842691912088834,0.0968929852803467,0.1091001139096316,0.1249325446792301,0.1375013268230548,0.1494737739145255,0.1608433477312577,0.1717478583850398,0.1848135374003018,0.1975543978598273,0.2091967784066173,0.2191255993169429,0.2286453744493392,0.2392311101263018,0.2483675451227271,0.2587499859460553,0.2660565025574722,0.2738157924860917,0.2808368897678776,0.2878461826347305,0.2941308694263371,0.3007209062821833,0.3057412147163357,0.3112016343408487,0.3164523747048018,0.3212157405877943,0.3252346841138896,0.3295758678426874,0.3290904447640425,0.3284127769531035,0.3277252953019189,0.3268781205806805,0.3261862396204033,0.324391698655696,0.3228919474766651,0.3239136142838388,0.3243885347052489,0.3253446674762483,0.3268272580826434,0.3286188369152971,0.3288652452561471,0.3291919914193779,0.3308994836075417,0.3321457363534704,0.3332765764231795,0.335308502633559,0.3382877526753864,0.3399088928500693,0.3402572610335894,0.3449705085286147,0.3424882926211872,0.3450752655306793,0.3498352941176471,0.3521982604551412,0.3529051050130308,0.3581667676155865,0.3552489177489177,0.3537753928708317,0.0,2.3512682733636,54.08923771735931,177.60378206525152,258.1152524096888,fqhc4_80Compliance_implementation,91 -100000,95862,44307,418.7582149339676,6114,62.51695145104421,4809,49.675575306169286,1841,18.85001356116084,77.34109898624328,79.63259341576412,63.34986309044478,65.04448082795629,77.1046770698753,79.39689253112117,63.26235760913198,64.95962329351224,0.2364219163679877,235.70088464295225,0.087505481312796,84.85753444405475,159.40232,111.69187739347136,166283.11531159375,116513.1933336164,344.59958,222.34604393190827,359012.79964949616,231482.0407793581,359.05369,173.05187532921116,371745.968162567,178306.74407365214,3395.16809,1552.9078031445083,3507605.245039745,1585821.5488353134,1133.85855,497.94072181446313,1169760.2178131065,506392.2219591317,1798.93052,759.673249626102,1843615.0299388703,764663.6124339006,0.37913,100000,0,724556,7558.323423254262,0,0.0,0,0.0,29301,305.15741378231206,0,0.0,32866,339.98873380484446,1618449,0,58115,0,0,6401,0,0,54,0.5633097577768041,0,0.0,0,0.0,0,0.0,0.06114,0.1612639464036082,0.3011122015047432,0.01841,0.3359375,0.6640625,24.787862401437728,4.291823142870157,0.3256394260761073,0.2416302765647743,0.2166770638386358,0.2160532335204824,11.074151577246903,5.730842465408702,19.66985546186052,12303.692269578827,54.72204359035468,13.817014519993428,17.786280022157136,11.82459304450514,11.294156003698973,0.5687253067165731,0.7624784853700516,0.7113665389527458,0.5978886756238004,0.107795957651588,0.7298578199052133,0.9137055837563453,0.8603491271820449,0.7346153846153847,0.1327014218009478,0.511148744002258,0.6848958333333334,0.6600858369098712,0.5524296675191815,0.1014492753623188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.0045090231125431,0.0068161762468429,0.0092899059841208,0.0113125851238997,0.0134433770251567,0.015465020324582,0.0176689619994899,0.0197229996118726,0.0219728510490297,0.0243785018488737,0.0262556023917212,0.0284505248454222,0.0304651569557478,0.032262718064443,0.0343179753942696,0.0363044152621238,0.0385635542293505,0.0405514835655405,0.0426151733322235,0.0570072992700729,0.0700513131355356,0.0832931811040117,0.0965668616557619,0.1094707579554788,0.1255518705507087,0.1385787232239337,0.1505454081524166,0.1615550433260767,0.1724149018262882,0.185227835295637,0.1971795953238382,0.2091251032743401,0.2203202710826911,0.2296952359995599,0.2398657257126397,0.2492774969593501,0.2583922062727805,0.2672877470893947,0.2747803978606686,0.2823428697030344,0.288706451952426,0.2951628358155986,0.3013106191297681,0.3067451885131443,0.3117489739829182,0.3156623792602973,0.3198631356686763,0.3234087703634693,0.3273629608120059,0.3258375525153506,0.3250570854769044,0.324374603622014,0.3235494188991649,0.3231144710994702,0.3214608791646862,0.319610671654804,0.3195918703200855,0.3196072709795911,0.3198455459770115,0.3208073422158566,0.322265469854635,0.3232184973045822,0.3245238845617036,0.3251120533010296,0.3271209575808483,0.329608938547486,0.3328479169304799,0.3360675937334976,0.3378174003024755,0.3412296316582226,0.3423600766120451,0.3421966778247963,0.3457908357436444,0.3468169761273209,0.346585482330468,0.3451886066204773,0.3466313861184612,0.3449035812672176,0.3404255319148936,0.0,1.9518790259494987,55.67889454775077,185.5649252981501,263.07916697700495,fqhc4_80Compliance_implementation,92 -100000,95642,44509,420.5579138872044,6278,64.4173062043872,4934,51.002697559649526,1949,19.980761590096403,77.31769350596971,79.74141025773815,63.289715480586615,65.08189487020067,77.07890785765004,79.50267112664653,63.20176560999854,64.9963982430237,0.238785648319677,238.73913109162004,0.0879498705880763,85.49662717696549,159.0963,111.436288031658,166345.6431274963,116513.96670046424,349.39638,225.280285717429,364726.7727567387,234955.234852292,361.55585,175.0476534805392,374188.0031785199,180014.8057634286,3518.12613,1583.7531029898307,3640443.35124736,1618238.2966667458,1162.17639,509.61823456979175,1199624.1504778236,517331.6896026768,1905.7822,790.2193229172079,1956303.088601242,795877.1065537189,0.3814,100000,0,723165,7561.165596704377,0,0.0,0,0.0,29780,310.76305388845907,0,0.0,33084,342.1091152422576,1613757,0,57878,0,0,6198,0,0,65,0.6796177411597416,0,0.0,0,0.0,0,0.0,0.06278,0.164604090194022,0.3104491876393756,0.01949,0.3349529304585484,0.6650470695414515,24.60761208435328,4.386565999676051,0.3305634373733279,0.2259829752736116,0.2239562221321443,0.2194973652209161,11.224911764703933,5.802866779064875,20.605117393468163,12419.730523039843,55.53998594563107,13.302927811077849,18.392838746681715,12.152127176888555,11.692092210982937,0.5614106201864613,0.7865470852017937,0.7014101778050276,0.5619909502262443,0.1181902123730378,0.7235521235521235,0.922077922077922,0.8496583143507973,0.6785714285714286,0.1735159817351598,0.5037098103874691,0.7150684931506849,0.6468120805369127,0.5275498241500586,0.1041666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806629386498,0.0046039021620086,0.0069644670050761,0.0092683868738503,0.0114867683416932,0.0136715566422167,0.0159753534776487,0.0179813851796606,0.020109913726935,0.0226531909223231,0.0248832315351845,0.0269803405445422,0.0290080423432978,0.0312867487776196,0.0335992065132041,0.0356270695364238,0.0376779437837613,0.039606120095977,0.0418570283799394,0.0439153604688754,0.0588991420121435,0.0735167759917849,0.0865089702113356,0.0997293226747553,0.1119347821495702,0.1277733651045803,0.1395751644404773,0.1511175536393771,0.1626464138631866,0.1727708203552939,0.1854364638500285,0.1979694881463182,0.2098613486107632,0.2194905602523106,0.2299656175614916,0.2406610470275066,0.2506481315930627,0.2598898685855207,0.2681614349775785,0.2757700064167201,0.2827501563115114,0.2897982587530425,0.2969305101605798,0.3026337882894768,0.3077418884078416,0.312470715888634,0.3176919707115589,0.3222223635831605,0.3271104316733171,0.3312813738441215,0.3305926594869998,0.3290607704380868,0.3283382203676553,0.3272256983078768,0.3262093240854881,0.3249210873096135,0.3238789415306607,0.3240795432171687,0.324244078902464,0.3250876474880319,0.325997685444432,0.3263856085655802,0.3272867217241164,0.328768645932908,0.3304645102679959,0.3312229170450712,0.3318782243891377,0.3356234970800412,0.3366506040924645,0.3384591058228248,0.3413767983973775,0.3443423777411989,0.3472187264032217,0.3484572123423012,0.3517753146721773,0.3525724423418095,0.3597001223990208,0.3653269346130773,0.356343792633015,0.3484848484848485,0.0,2.28335867032493,56.74356116986202,178.09747471932744,278.96377224936003,fqhc4_80Compliance_implementation,93 -100000,95713,44380,419.3996635775705,6236,64.00384482776634,4904,50.6723224640331,1949,19.96593984098294,77.34880342590687,79.70520310879488,63.338894218876014,65.07677827822782,77.10209977920991,79.46083352290744,63.24740772047315,64.98872825611329,0.2467036466969574,244.36958588744065,0.0914864984028653,88.05002211452972,159.3493,111.58696834276265,166486.57967047318,116584.96582780044,350.10514,225.7492046078926,365251.9511456124,235326.09426921385,360.37178,173.8756748953377,373200.8818028899,179116.44827273986,3501.44722,1596.8026009470598,3620855.578657027,1630901.6339964892,1190.0254,530.2306980677632,1229176.966556267,539831.7732398278,1916.5615,811.5679270429954,1965853.896544879,817338.3094695577,0.38039,100000,0,724315,7567.571803203327,0,0.0,0,0.0,29736,310.1041655783436,0,0.0,33022,341.7090677337457,1616130,0,58026,0,0,6335,0,0,72,0.7418010092672888,0,0.0,1,0.0104479015389758,0,0.0,0.06236,0.1639370120139856,0.3125400898011546,0.01949,0.3325168401714635,0.6674831598285365,24.46944868869,4.355582236960513,0.3164763458401305,0.241231647634584,0.2177814029363784,0.224510603588907,11.020125841316789,5.675142639506844,21.09045439668803,12367.02325657626,55.80018374094031,14.09222614395989,17.45111353719649,11.969434669403425,12.287409390380503,0.5570962479608483,0.7819103972950127,0.6733247422680413,0.5758426966292135,0.1335149863760218,0.7069625095638867,0.909307875894988,0.8481675392670157,0.6975806451612904,0.1782945736434108,0.5026410897970531,0.7120418848167539,0.6162393162393163,0.5390243902439025,0.1198102016607354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050023796745,0.0043688926732352,0.006656181827406,0.0088176434136876,0.0111538148690418,0.0135491423627016,0.015727725850347,0.0179238542410942,0.0199685245365544,0.0221997052321296,0.0243837441705529,0.0263463097718432,0.0287259417667379,0.0306696042498867,0.0328753275154215,0.0349463198900565,0.0369549685742982,0.0392313518785602,0.0413408750623856,0.0434089464525742,0.0580973964262216,0.0725409750277353,0.0858845500136391,0.0985586533403471,0.1105848847634618,0.1254839323869766,0.1373924300463704,0.150155968870104,0.1606679273100221,0.1715830347757063,0.1849478117560886,0.1977475089526241,0.2090724205809742,0.2194956586400717,0.2300541277944024,0.2405357795725728,0.2496761079342387,0.2584759117514633,0.2673969803609944,0.2754722168130949,0.2830653842147296,0.2903761579489098,0.2965299311193694,0.3022573147060938,0.3072914768793499,0.3125184820108427,0.3172018807523009,0.3219239914048494,0.3256884887526356,0.3298301598185558,0.3289206114066393,0.3274777317345154,0.3264112107370439,0.3259759607735366,0.3261597037345509,0.3238592835473294,0.3221724187085227,0.3230327398047099,0.32334643650658,0.3240495926825782,0.3244730635318782,0.3261208615481807,0.3271135683022345,0.3277995301487862,0.3271882746504296,0.3276936312208347,0.3282699940039402,0.3312759793424865,0.334480578773618,0.3380651318143862,0.3413173652694611,0.3440796872489691,0.3462420382165605,0.3478461894120366,0.353594833317504,0.3542966874699952,0.3576323987538941,0.3653128885205138,0.368376787216148,0.3744647722849358,0.0,2.1912600486844287,57.50093861769432,187.7399251285376,266.1521640771663,fqhc4_80Compliance_implementation,94 -100000,95622,44353,421.3151785154044,6226,63.54186275124971,4947,50.99244943632218,1967,20.02677208173851,77.26744378178137,79.67977798614298,63.28338998351626,65.06828912837348,77.00787134795328,79.42688721741692,63.18650353647997,64.97692583521622,0.2595724338280831,252.8907687260613,0.0968864470362902,91.36329315725789,160.53246,112.3753238927896,167881.4289598628,117519.5867026614,349.36061,225.59040556792428,364541.5490159168,235108.18126474207,362.07528,175.37106454430167,374121.5933571772,179829.5110719202,3489.10114,1617.010410742422,3598931.7625651,1641420.7271482577,1169.86028,526.5231486985588,1204288.1240718665,531513.5288648078,1920.823,820.1843211916381,1959123.2352387528,816959.3223782751,0.37966,100000,0,729693,7630.974043630127,0,0.0,0,0.0,29717,309.9914245675681,0,0.0,33219,342.82905607496184,1607789,0,57755,0,0,6336,0,0,73,0.7529647988956516,0,0.0,0,0.0,0,0.0,0.06226,0.1639888321129431,0.3159331834243495,0.01967,0.33548288039306,0.6645171196069399,23.9529396031617,4.351820663777616,0.3327269051950677,0.2328684050939963,0.2195269860521528,0.2148777036587831,11.338874002926504,6.000511150968937,21.228799115324783,12276.216405888244,56.63459798655353,13.86026551855138,18.78811097132092,12.244394343540767,11.741827153140466,0.5666060238528401,0.7916666666666666,0.6938031591737546,0.5911602209944752,0.1006585136406397,0.7318996415770609,0.9174528301886792,0.8581081081081081,0.775438596491228,0.1239669421487603,0.5016891891891891,0.7184065934065934,0.6331114808652246,0.5255930087390761,0.0937880633373934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021379212515451,0.0044007300750354,0.0066703216374269,0.0086883180229249,0.0108953295557431,0.0129343707988756,0.015029467544915,0.0170905267026717,0.0192742257078293,0.0212593829044249,0.0233013691605558,0.0251366232485515,0.0270862480454283,0.0292217493894962,0.0314609524989162,0.0336307339212422,0.0356802551992708,0.0377924477382657,0.0397049951109909,0.0417144525303918,0.0560397984991952,0.0702577584130209,0.0832974533998424,0.0965904304607867,0.1088776512072296,0.1247498332221481,0.1372644815939843,0.1485953619234376,0.1599413765805858,0.1702596161075844,0.1839391651386042,0.1962708963066489,0.2075237566534957,0.2182673890439446,0.2276070917299857,0.2384561683454672,0.248961821835231,0.2576059429343238,0.26536661820825,0.2727574979363478,0.2797382593085876,0.2867857853289804,0.2939532460150162,0.2999868005807744,0.3057778859019584,0.3121118970902312,0.3169512546509151,0.3207455883476356,0.3257179902755267,0.32990795111887,0.3283739266619863,0.3276760602216952,0.326810397164923,0.3259742141098073,0.3240196809303712,0.3227124057552631,0.3211653323166857,0.3218872827141611,0.3220611640682491,0.3232952207132249,0.3234525666810774,0.3239484194003457,0.3250263102504735,0.3255944369672499,0.327011355399855,0.3280795153549605,0.3279021820056125,0.3307327858496525,0.3349341431547724,0.337284267008369,0.3394440339859623,0.3453524775990499,0.3477648264378122,0.3495280829336221,0.3528179741051028,0.3529979490891543,0.3550848777448995,0.3624119353501865,0.3634285714285714,0.3695038321903993,0.0,2.8500344321077056,60.761601944868254,183.71227119744967,266.0549844993559,fqhc4_80Compliance_implementation,95 -100000,95845,44218,417.9978089623872,6105,62.5802076268976,4815,49.71568678595649,1880,19.270697480306744,77.40182060844235,79.71499220760538,63.36325590393732,65.07521671170761,77.16976453320954,79.48408596039998,63.2780952910512,64.99301426982471,0.2320560752328049,230.90624720539665,0.0851606128861206,82.20244188289882,159.2789,111.54172624364372,166183.8384892274,116377.19885611533,346.56034,223.6341547491505,361060.5456727007,232805.3573469148,357.09652,172.44780951074847,369275.89336950285,177377.35561122172,3418.26412,1549.0427430365664,3527866.471907768,1577612.022574538,1150.41047,507.2342744658711,1184627.596640409,513586.7038783314,1842.4555,764.0505725336519,1889088.4448849703,768247.8573847375,0.37851,100000,0,723995,7553.810840419427,0,0.0,0,0.0,29552,307.7990505503678,0,0.0,32668,337.5762950597319,1620634,0,58203,0,0,6232,0,0,69,0.7199123584954875,0,0.0,0,0.0,0,0.0,0.06105,0.1612903225806451,0.3079443079443079,0.0188,0.3355820520866018,0.6644179479133981,24.59415841436951,4.464094621570316,0.3356178608515057,0.2274143302180685,0.2166147455867082,0.2203530633437175,11.502377105699832,5.947699582837932,19.86752241600416,12330.77456218006,54.572886543232215,13.123534804589246,18.349410143894573,11.59732415478921,11.502617439959192,0.563447559709242,0.7881278538812785,0.6974009900990099,0.5848513902205177,0.1065032987747408,0.7532971295577967,0.9343434343434344,0.8530066815144766,0.7708333333333334,0.1617647058823529,0.494044242768009,0.7052932761087267,0.6375321336760925,0.5292652552926526,0.0933488914819136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001964397820936,0.0042566560925924,0.0064318467719027,0.0085316432554313,0.0106749626376307,0.0128771529785414,0.0151760688987412,0.0174831598285364,0.0197272931700635,0.0220975814458102,0.0242632361232125,0.0266761095372993,0.0285652611886602,0.0307651122803043,0.0327052198397227,0.03498620597018,0.0368909728907244,0.0388009249178254,0.0408699535733945,0.0426900341353759,0.0575799924909265,0.0716294337176847,0.0853478356543334,0.0977626050420168,0.109771252843542,0.1254435994930291,0.1376800847457627,0.1493744618884129,0.1604345413411875,0.1706653528126472,0.1830529983653101,0.1958553477466965,0.2069827061788476,0.2180258917354017,0.2283214438814206,0.239183131329902,0.2492472734571893,0.257970949318703,0.2666591050870527,0.2737667391553164,0.2801064075873236,0.2872673711774058,0.293424148899689,0.2995220011261126,0.3049026273614686,0.3101091213636475,0.3147441749940593,0.3200971108258233,0.3256102767105212,0.3299062833643086,0.3291423499986553,0.3286833424958768,0.3283225289328252,0.326562973000245,0.3265756753953082,0.3254587155963303,0.3228936224006067,0.3232374524963963,0.3237690943807965,0.3255590371741917,0.3273569400866577,0.3283749704468437,0.3296097550790303,0.3301375666094401,0.331458388185452,0.3334457968908151,0.3334656159646238,0.3362063581287864,0.3389387014618149,0.3406619478824785,0.3436676061460132,0.3484381640458988,0.3491354919836529,0.3523917995444191,0.3565833644162626,0.3593915811814644,0.3632890111569616,0.3616026032133415,0.3602535832414553,0.366705024932873,0.0,1.9817735840749309,56.82469052522502,180.5116163744516,262.81267913005536,fqhc4_80Compliance_implementation,96 -100000,95692,44299,419.9201605149856,6215,63.69393470718556,4904,50.63119174016637,1917,19.677716005517706,77.32145341825886,79.7092438090893,63.3143933609397,65.08038221832817,77.08106378191509,79.47177682477921,63.22439537160143,64.99456093645935,0.2403896363437638,237.46698431008892,0.0899979893382649,85.82128186881732,158.27196,110.81924937727914,165397.27458930734,115808.26963307188,346.95751,224.09896207581627,361954.78200894536,233566.64220049093,358.91466,173.75049299595935,371354.99310287175,178687.47072204348,3471.96552,1594.5318155462485,3587487.553818501,1625630.032191773,1141.03934,508.2250716531957,1176782.0820967269,515507.4847098621,1872.2258,789.6678105378841,1923421.9161476404,795208.6355857373,0.38073,100000,0,719418,7518.057935877608,0,0.0,0,0.0,29592,308.58378965848766,0,0.0,32992,341.07344396605777,1622740,0,58228,0,0,6217,0,0,53,0.5434101074279982,0,0.0,0,0.0,0,0.0,0.06215,0.1632390407900611,0.3084473049074819,0.01917,0.3311329444273871,0.6688670555726128,24.36008568884029,4.252256007314672,0.3134176182707993,0.2453099510603588,0.2267536704730832,0.2145187601957585,11.10268501444746,5.822438440683307,20.42150345469109,12338.587491520691,55.93565164465574,14.413240944810772,17.5163619343167,12.379652464794717,11.62639630073355,0.5613784665579119,0.8029925187032418,0.6844502277163305,0.545863309352518,0.1216730038022813,0.7217327459618208,0.9365079365079364,0.8392434988179669,0.7233201581027668,0.1306122448979592,0.4997176736307171,0.7257217847769029,0.625673249551167,0.4935972060535506,0.1189591078066914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405203858312,0.0046749822533211,0.0068824102647393,0.0091259235170374,0.0114561289272342,0.0136908157444381,0.0157969344360932,0.0177865814435515,0.0199963196957615,0.0219362895631167,0.0240831684386437,0.0259712252379925,0.0281866905327696,0.0300791393594658,0.0321744874997419,0.0343369383155152,0.0363886846003252,0.0382543718540812,0.0404147556498497,0.0421704327524389,0.0567805550623061,0.0699802150177436,0.0833866854186127,0.0967786068342787,0.1091344581262595,0.1247499391386263,0.1369657983567925,0.1488022325660662,0.1606532147742818,0.1714717806808675,0.184762233091293,0.1975469022333365,0.2088776253820468,0.2198313113301462,0.2300177131352249,0.2393998117490726,0.2491326320016957,0.2582367554321557,0.2666840547497817,0.2739264857437307,0.2814914187907665,0.2881310356115696,0.294570890885204,0.3003475967877262,0.3057148410924288,0.3102976857610878,0.3163709616876454,0.3215907212168228,0.3263059870403663,0.3306877958102068,0.3296015716457876,0.3287434036939314,0.3284039903758213,0.3272246772376744,0.3261512400255583,0.3246721411937737,0.32205805501449,0.3231372935342987,0.3241548946927899,0.324669296820608,0.3254249358145462,0.3258475832756746,0.3265190708585552,0.3279000514967646,0.3299284492519694,0.3308650374169239,0.3310512747063878,0.3339962748997696,0.3382783043799993,0.3425524294639659,0.3459188326493388,0.3473897726059571,0.3487809535934814,0.3508474576271186,0.3540166729821902,0.3569204980842911,0.3614197530864197,0.3732653061224489,0.3778699861687413,0.37557781201849,0.0,2.356840445100139,59.78310612311215,183.75203069183948,262.7323595038217,fqhc4_80Compliance_implementation,97 -100000,95698,44460,421.2000250788941,6191,63.49140002925871,4839,49.89654956216431,1958,20.042216138268305,77.3455376358958,79.73244001386635,63.32130932583449,65.08750605923142,77.10289480934013,79.49248863150434,63.23127437966736,65.0013229380149,0.2426428265556666,239.9513823620083,0.0900349461671297,86.18312121652139,159.58052,111.71480068261874,166754.28953583149,116736.81861963548,349.37558,225.632529680743,364431.6286651759,235125.84346667948,359.4657,173.9468993013444,371507.4087232753,178628.49142222264,3471.1522,1586.2293872797402,3583179.658927041,1613522.1815291224,1142.4226,503.5947315558445,1177648.2162636628,510154.6753890594,1912.02636,800.2441800093959,1959330.1218416267,802969.7713043068,0.38072,100000,0,725366,7579.740433446886,0,0.0,0,0.0,29841,311.13502894522355,0,0.0,32950,340.2056469309704,1615923,0,57920,0,0,6273,0,0,55,0.5642751154674079,0,0.0,1,0.0104495391753223,0,0.0,0.06191,0.1626129438957764,0.3162655467614279,0.01958,0.3358601485148514,0.6641398514851485,24.534611267507028,4.426438300550909,0.3244471998346765,0.2250464972101674,0.2283529654887373,0.2221533374664187,11.569723299509803,6.131135866500175,20.802895987411897,12385.60072329818,54.908540538361336,13.039154013900005,17.768157383387592,12.38996401689494,11.711265124178796,0.5577598677412688,0.7658402203856749,0.7025477707006369,0.5846153846153846,0.107906976744186,0.7329240214888718,0.9129353233830846,0.8747044917257684,0.7333333333333333,0.1390134529147982,0.4932126696832579,0.6797671033478894,0.6390584132519617,0.54,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0046148384806531,0.0070663485456114,0.0093192951076241,0.0115976235045169,0.013750254634345,0.0160306744712528,0.0182592445084403,0.020379990183246,0.0225904231352148,0.0245525870468181,0.0265714872637633,0.0287195523370638,0.0307074037817507,0.0326112756581595,0.0347576167977917,0.0367949448386595,0.03851702699617,0.0405066713811787,0.0424498812153544,0.057245809180636,0.0714966036234993,0.0850134867074591,0.0969276094276094,0.1098054934390954,0.1261357506267122,0.1384535393300155,0.1508009202061943,0.1622375678795912,0.172416754331351,0.1849344601586754,0.1975199003628093,0.2094263633395014,0.2203998118017791,0.230273078489428,0.2399224376731302,0.2488839285714285,0.2577995792221235,0.2659935333824947,0.2743475274725275,0.2827034967785219,0.2895481216541599,0.2962236042469673,0.3018624024512855,0.3078303900640403,0.3124861606593677,0.3172243184487368,0.3216371299446504,0.3268776387651547,0.3307599231922561,0.3301165038118758,0.3285114901552131,0.3277502213104388,0.3270588913551065,0.3257681253888774,0.3237221093785793,0.3216934731381758,0.3224762655628921,0.3238635392999299,0.3251970051641263,0.325935522634672,0.3272024576355168,0.3295366186823579,0.3310639822632298,0.331839321429432,0.3328805057735514,0.3339324945076892,0.3366186982397581,0.3405802191626861,0.3443861323155216,0.3485282744188162,0.3557937181663837,0.3550455831499528,0.3608239586500456,0.3604343720491029,0.3648891551827442,0.363257107540173,0.3642696168817865,0.3683342495876855,0.3809708737864077,0.0,2.6117495426876904,56.77690560928569,180.18990602279803,265.2634982047488,fqhc4_80Compliance_implementation,98 -100000,95610,44343,418.0629641250915,6214,63.66488860997804,4862,50.28762681727853,1954,20.02928563957745,77.23812690061078,79.66864233237351,63.25655152000609,65.05412344954591,76.99383776155052,79.42704115466401,63.164748891232,64.96609499428442,0.2442891390602568,241.601177709498,0.0918026287740971,88.02845526149383,159.9015,112.01459706817003,167243.48917477252,117157.82561256149,350.7963,226.57997321136855,366324.1188160234,236404.31253150155,358.99082,173.1653569958974,372351.4172157725,178685.7804030102,3470.24279,1583.2090254058976,3589882.4181570965,1616204.1788577538,1158.03714,510.7510432730121,1196968.967681205,520010.66212182445,1910.01628,808.1549955874506,1959766.802635708,811874.1082004703,0.38105,100000,0,726825,7601.976780671478,0,0.0,0,0.0,29886,311.97573475577866,0,0.0,32879,340.7384164836314,1605790,0,57698,0,0,6470,0,0,77,0.8053550883798766,0,0.0,0,0.0,0,0.0,0.06214,0.1630757118488387,0.3144512391374316,0.01954,0.3364572130895683,0.6635427869104317,24.590468302329963,4.230131724047466,0.3284656519950638,0.2295351707116413,0.2202797202797203,0.2217194570135746,11.003610066098137,5.778251274324969,20.82460792764691,12369.04831774995,55.35255518258717,13.550055176419113,18.065437470581475,11.884468571610036,11.852593963976547,0.564993829699712,0.7741935483870968,0.7119599248591109,0.5723622782446312,0.1233766233766233,0.7270624518118736,0.8971291866028708,0.8768115942028986,0.6761133603238867,0.1743119266055046,0.506030855539972,0.7005730659025788,0.6542688081149619,0.5412621359223301,0.1104651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.0045439331392695,0.0067520916253756,0.0090056208897878,0.0113479075069206,0.0137636643336695,0.0161048498138609,0.0183876108364319,0.020733179223861,0.0231274261776243,0.0252708692440285,0.027578270295819,0.0297029702970297,0.0319680834613362,0.0340575818910322,0.0362153884359091,0.0382633755947876,0.0404504186317079,0.0425748964253742,0.0448366872176843,0.0591925063248792,0.0729248535529776,0.0866226111805679,0.0993196132538495,0.1113129435620142,0.1273052763153713,0.1398561273389933,0.1514670135187001,0.1631637523275474,0.1732651460618627,0.1859897907425993,0.1981177082881554,0.2095202807262265,0.2200050407092058,0.2308726607445941,0.2406201103059492,0.2502936537235292,0.2587881043407653,0.267691012897209,0.2752965765931302,0.282282491383212,0.2893455795239938,0.2945149382173846,0.3005844999278395,0.306181658600807,0.3110256663864299,0.3149119943756748,0.319459866498194,0.3238955301455301,0.3282327557679325,0.3271909323029951,0.3257936672328321,0.3250787551738264,0.3242436103741719,0.3233629267711375,0.3215695914698788,0.3205877680698967,0.3217375541749748,0.3219655361801455,0.3218924099385558,0.3223491395506124,0.3230040246634548,0.323327237182317,0.323852922690132,0.3247151409810738,0.3254420843360887,0.3274736601007787,0.3309438848012126,0.3348719213558366,0.3386764005713379,0.3412839844642449,0.3421794394511514,0.3438090439601965,0.3457673568818514,0.3474592162010125,0.3498940428537791,0.3523190814322405,0.3583699560527367,0.3625922887612797,0.3582032736962314,0.0,2.1415933226875894,57.08182576280628,186.4119545724317,263.7315036052285,fqhc4_80Compliance_implementation,99 -100000,95723,44403,421.0168924918776,6064,62.22120075634905,4773,49.31939032416452,1894,19.4101731036428,77.33641368994157,79.71049064699628,63.332022412709286,65.08906251673301,77.0983949036805,79.47521582174298,63.24347056781739,65.00430262465764,0.2380187862610654,235.274825253299,0.0885518448918958,84.75989207536827,159.99632,112.15159127395356,167144.88680881294,117162.4074401696,350.0405,226.1502154919456,365106.6201435392,235680.7930089379,358.6951,173.17512544432842,371477.7012839129,178425.24822935078,2738.623,1255.6134492339197,2830094.042184219,1280822.1318114968,1166.59426,518.5638152035976,1203293.283745808,526374.189175598,1856.71664,782.0064770949581,1904415.532317207,786227.3592236575,0.37966,100000,0,727256,7597.494854946042,0,0.0,0,0.0,29848,311.2104718824108,0,0.0,32807,339.50043354261777,1613072,0,57875,0,0,6312,0,0,53,0.5536809335269476,0,0.0,0,0.0,0,0.0,0.06064,0.1597218563978296,0.3123350923482849,0.01894,0.3206863979848866,0.6793136020151134,24.32833833869694,4.365259572175974,0.3184579928765975,0.2260632725749004,0.2321391158600461,0.2233396186884559,11.03412265886344,5.6424849144385485,20.31473106203873,12286.336176598035,54.23649952007601,12.930155180761874,17.127262208868107,12.473136551555523,11.705945578890514,0.5560444165095327,0.7636700648748842,0.7019736842105263,0.5622743682310469,0.1313320825515947,0.7116903633491312,0.8943298969072165,0.837696335078534,0.7063197026022305,0.1938325991189427,0.4998574280011406,0.6903039073806078,0.656414762741652,0.5160905840286055,0.1144219308700834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874711199383,0.004269820180732,0.0065384029646174,0.0091064314171883,0.01147472610195,0.0135253498462102,0.0157048307651515,0.0179803961609148,0.0198439880179526,0.0216612411195053,0.023884207720852,0.0258413584936654,0.0277143621069085,0.0295817153686899,0.0317404628989485,0.0337891614210259,0.0357435000051772,0.0380218275375549,0.0399521904069012,0.0419791666666666,0.0566067289016978,0.0706550739194576,0.0840027686305765,0.0963774362424573,0.1088251104061047,0.1243724833278728,0.1367953528800695,0.148613297035178,0.1599171701214695,0.1702663324119903,0.1834501017014819,0.196018211114836,0.2076677316293929,0.2179873719167158,0.2276298583563179,0.2384395939759835,0.2484762721873711,0.2572995571939131,0.2658912355882052,0.2737639106515846,0.2808823869282858,0.2870889387144992,0.2933227814460022,0.2995069647216504,0.3045767173303897,0.3101012711186582,0.3155355580552431,0.3204906571755434,0.3249915892445847,0.3298585453393856,0.3286376124548834,0.3277719607627025,0.326740071336933,0.3256500412380084,0.3242321835315835,0.3223846708497614,0.321582060675262,0.3226257212842559,0.3235691675934639,0.3245534037873505,0.3254527728823728,0.3252595155709342,0.3258944459564134,0.3269917827795641,0.3273111666346339,0.3299414443721535,0.3306908591380001,0.3349230915005843,0.3378159543758361,0.3387450636243966,0.3417122374890859,0.3417966648735879,0.3433669212502406,0.3478294513657819,0.348078939841739,0.3511515151515151,0.3532990173139916,0.3537861686845885,0.3548209366391184,0.3475609756097561,0.0,1.90527989081255,55.72993218600524,181.46213295447163,261.91485014272735,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95620,44007,416.29366241372094,6152,63.145785400543815,4794,49.65488391549885,1894,19.47291361639824,77.26635035352784,79.70434365294103,63.26822878755484,65.07209700841591,77.02740855910622,79.46459281131106,63.17956190544641,64.98540719022704,0.2389417944216205,239.75084162997007,0.0886668821084271,86.68981818887289,160.93484,112.5954647431062,168306.4421669107,117752.83177693596,349.96611,225.79294537403237,365518.1656557206,235657.64941019905,351.99707,170.11868748630653,365097.39594227145,175580.64293586457,2750.92864,1266.7363061657857,2851989.751098097,1299861.4789435111,1133.79479,503.8441526357028,1170703.6184898557,511897.2627438849,1859.83938,786.2257283988819,1914288.203304748,794551.4192201861,0.37889,100000,0,731522,7650.292825768667,0,0.0,0,0.0,29884,312.0267726417067,0,0.0,32298,334.79397615561595,1606003,0,57672,0,0,6389,0,0,65,0.6797741058355992,0,0.0,1,0.0104580631667015,0,0.0,0.06152,0.1623690253107762,0.3078673602080624,0.01894,0.3283095090118085,0.6716904909881914,24.59574263067597,4.442204922983997,0.3137254901960784,0.2321652065081351,0.2288277012932832,0.2252816020025031,11.143407038995308,5.609792096937506,20.362466929944464,12304.343256775448,54.45479050226338,13.309309170855752,17.005192847059185,12.20505837949758,11.935230104850882,0.5611180642469754,0.8032345013477089,0.6974734042553191,0.568824065633546,0.1138888888888888,0.7216174183514774,0.9166666666666666,0.8358585858585859,0.7098039215686275,0.185022026431718,0.5022805017103763,0.7375886524822695,0.648014440433213,0.5261282660332541,0.0949589683470105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024423365357331,0.0049708343900583,0.0071902261671422,0.0096286806572311,0.0119704403411982,0.0141769520062782,0.0162373448726322,0.0182806576540674,0.020606531881804,0.022840454964648,0.0246623424606921,0.0269309047550521,0.0291426042020526,0.0309619548407052,0.0328354817385556,0.034704330280925,0.0367218755830103,0.0389988056291218,0.0409645827045367,0.0431341057703338,0.0576846682974764,0.0712459394320444,0.0839871855469775,0.0968992248062015,0.1088614279678918,0.1242147858603192,0.1368080945497831,0.1486111703716346,0.1599053776331563,0.1700529703129868,0.1828880235580916,0.1949506227709785,0.2060879982574602,0.2167482827751668,0.2270994048931011,0.2369174116550944,0.2465705987488829,0.2562075605553866,0.2645501443083426,0.2726824344474777,0.2804063053776393,0.2870125307413046,0.2931922908350016,0.2988416155026861,0.3049351344121974,0.3108359973832652,0.3159411934275007,0.3201253694832331,0.3244875999844432,0.328750841884236,0.3280336306556361,0.3265086948739484,0.3258859349891461,0.3255030646466982,0.3251141416695171,0.3233888752756677,0.3221136331237229,0.3219748624003943,0.3237893369344113,0.3243900693997281,0.3253193087903832,0.3256906186833657,0.3263677412580069,0.3284597989387188,0.3295956015336757,0.3311628879997908,0.3327806523541351,0.336302473230361,0.3394783221713077,0.3415217738076248,0.344452568086273,0.3491360921501706,0.3520965692503177,0.3540651644336175,0.3593413789877444,0.3624366678449393,0.3674121405750798,0.3727620197143432,0.382618201694452,0.3831951770911831,0.0,1.865282633341686,56.818887917855456,177.33686932849707,266.1828966076836,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95704,44268,419.4077572515256,6159,63.24709521023155,4850,50.08150129566162,1914,19.664799799381427,77.34534288058313,79.71602623744651,63.32656324425341,65.07538421740223,77.1046829837591,79.47494787945008,63.23850905668386,64.98943325769716,0.2406598968240274,241.07835799642885,0.088054187569547,85.95095970507316,158.21608,110.8460697649574,165318.14762183398,115821.77313900924,348.28317,224.27025965179376,363347.22686617065,233767.57465915088,357.36747,171.92409699504512,369697.9645573853,176661.71396819045,2780.36832,1271.6705558558358,2874166.889576193,1297746.0877871728,1172.28654,518.746795720701,1208344.499707431,525468.3981032148,1873.7965,783.1468223277618,1926978.057343476,791357.256734413,0.38072,100000,0,719164,7514.461255537909,0,0.0,0,0.0,29651,309.22427484744634,0,0.0,32729,338.24082587979603,1621702,0,58241,0,0,6330,0,0,68,0.7105241160244087,0,0.0,0,0.0,0,0.0,0.06159,0.1617724311830216,0.310764734534827,0.01914,0.3323543051476271,0.6676456948523729,24.29615129063039,4.384939505763701,0.3138144329896907,0.236701030927835,0.228659793814433,0.2208247422680412,11.561192928397109,6.085158812242248,20.391413979272805,12335.062430884182,55.06424260593292,13.844226304202929,16.958959521107133,12.404084461906944,11.856972318715904,0.5604123711340206,0.7839721254355401,0.683311432325887,0.5779981965734896,0.1279178338001867,0.7402799377916018,0.9267734553775744,0.8707124010554089,0.7379032258064516,0.1531531531531531,0.4955106621773288,0.6962025316455697,0.621172353455818,0.5319396051103368,0.1213191990577149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0044189487766809,0.0067164481960959,0.0089274832419256,0.0108910085623055,0.012767387165416,0.0149638645097499,0.0170370445984708,0.0191257947784842,0.0213428053761349,0.0233223299776515,0.025200246457178,0.0275657772932052,0.0299168632622155,0.0319604544844738,0.0340710571744591,0.0363301194088588,0.0383769198837692,0.0404870085985506,0.0422146266230382,0.0564479070933244,0.0709471480900052,0.0843607365825507,0.0974539715938979,0.1100184647850171,0.1260344134267391,0.1376403898006411,0.1495910368918803,0.1606112417183158,0.171805789422881,0.1848476033485245,0.1973906453009961,0.2086724700761697,0.2197092437710732,0.2297560707009525,0.2400975555678731,0.2496372201013551,0.2585432818354694,0.2676315341392815,0.2757522650997102,0.2829326422472638,0.2896284775414264,0.2964497041420118,0.3016331372290586,0.3068924467335585,0.3121625952128577,0.3169312036851592,0.3217850104888436,0.3263753919510741,0.330902750257589,0.3296749228093357,0.32819862768332,0.3272994267318065,0.3264821676702177,0.3251421427083023,0.3222056951834757,0.3212149029786965,0.3222098324095634,0.3231285563392279,0.3231224064542556,0.3233327106295535,0.3246098060854485,0.3262805770436964,0.3268267596816027,0.3278897800900835,0.327762423736768,0.3281822571939891,0.3294467951731703,0.3324812661951117,0.3370662023663487,0.338761917795721,0.3429923436835389,0.3463405408812961,0.3513100603468031,0.352802637776731,0.3552178558708299,0.3572958091159376,0.3672350791717417,0.3767955801104972,0.365633581796783,0.0,2.3590697896589568,56.47782375933582,181.48743841667863,268.2054451818777,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95669,44140,417.67970816042816,6232,64.05418683168007,4931,51.019661541356136,1926,19.807879250331872,77.2498286400838,79.64861596324202,63.26585613190741,65.03880323695654,77.01418256439763,79.41315073865441,63.17965025011014,64.95490726696319,0.2356460756861764,235.46522458761387,0.0862058817972695,83.8959699933497,159.8201,111.89730343506726,167054.573581829,116962.30026138798,346.51298,223.47799192290023,361673.8337392468,233069.53236147575,358.92276,173.29126639159813,372042.490252851,178665.1197103582,2793.34052,1282.5203986599795,2891912.7408042317,1312746.196427243,1159.93967,513.5844085034489,1200085.0850327692,524468.8859541221,1880.10288,779.3385673405107,1935203.9218555645,787517.9142145701,0.37988,100000,0,726455,7593.3897082649555,0,0.0,0,0.0,29590,308.74159863696707,0,0.0,33028,342.0857331005864,1609039,0,57824,0,0,6331,0,0,59,0.616709696976032,0,0.0,0,0.0,0,0.0,0.06232,0.164051805833421,0.3090500641848523,0.01926,0.3442948914040991,0.6557051085959009,24.533959202961476,4.28246486880139,0.3161630500912594,0.2441695396471304,0.2261204623808558,0.2135469478807544,11.150552683802792,5.915191332908708,20.37238600240889,12394.4790024289,56.17339336934776,14.48852306010535,17.683946852913813,12.655131852891548,11.34579160343706,0.578178868383695,0.8039867109634552,0.699807568954458,0.6125560538116592,0.1035137701804368,0.7410782080485953,0.90625,0.8592964824120602,0.7366412213740458,0.1674641148325359,0.5188157166574433,0.7433862433862434,0.6451335055986219,0.5744431418522861,0.0876777251184834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501762632197,0.0045838530733112,0.0067193796246485,0.0092460881934566,0.0116975719909267,0.0139938484101603,0.0162438308112738,0.018471435135549,0.0204233994681939,0.0226134513165575,0.0244632948006523,0.0264406779661016,0.0285229202037351,0.0305494573451655,0.0326037580012389,0.0348115666239192,0.0365876404028681,0.0387134952192103,0.0408539059330233,0.042913890713459,0.0574425626612894,0.0711114368887306,0.084764083620183,0.0972317210467061,0.1098729475328183,0.1244192814434626,0.1363872872266998,0.1487117191995396,0.1597137539310699,0.1699394147724831,0.1835699797160243,0.196330394612707,0.2076023072980841,0.2192695766615486,0.2289753664135617,0.239428482545608,0.2494907210494504,0.2583501596146688,0.2668548276960896,0.2748210860050774,0.2825874921622814,0.2904040404040404,0.2973422716683307,0.3026515242655374,0.3086195548838456,0.3144401296099334,0.3194275312284225,0.3238907762650387,0.3286345329349097,0.3330287863139218,0.3317344070911253,0.3300902542022025,0.3293911519929917,0.3285691507095539,0.3281629490560696,0.326349050526122,0.3246139700053901,0.3241135335252982,0.3247100344360876,0.3253374926047437,0.3262357986607478,0.327718588179275,0.3294194253066711,0.3302325581395349,0.3309891490852848,0.3330810585103607,0.3352494237500356,0.3380895634721525,0.341735812064559,0.3441563590231525,0.3477334542157752,0.3519514767932489,0.3559470813217129,0.3593382408742506,0.3600748013090229,0.3612386671376427,0.3591967138293017,0.3567941415785191,0.3586926668497665,0.3510034078000757,0.0,1.944285470748715,58.26079259557287,190.514205878284,265.36902505210605,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95755,44453,420.7508746279568,6381,65.50049605764713,5059,52.352357579238685,2011,20.646441439089344,77.32698317968122,79.68619399231505,63.31555014592704,65.0612230161757,77.08135024707352,79.44018720475547,63.225865765461045,64.97316130969014,0.2456329326077053,246.0067875595797,0.0896843804659965,88.06170648556133,158.29704,110.94778602958708,165314.64675473864,115866.310928502,352.5023,226.86844439061005,367635.2148712861,236431.9055511572,365.10002,176.2171776366844,378014.43266670144,181497.8378271177,2914.17208,1330.5511131879211,3017399.279410997,1363585.0173407467,1204.52604,528.5631948294254,1246541.7784972065,540687.1627727724,1967.25786,820.6066296001248,2022040.937810036,831048.4461600524,0.3818,100000,0,719532,7514.302125215394,0,0.0,0,0.0,29954,312.31789462691245,0,0.0,33473,346.34222755991857,1618112,0,58117,0,0,6319,0,0,66,0.6892590465249857,0,0.0,0,0.0,0,0.0,0.06381,0.1671293871136721,0.3151543645196678,0.02011,0.3387000596302922,0.6612999403697079,24.58496170121943,4.315210473240222,0.3277327535085985,0.22751531923305,0.221585293536272,0.2231666337220794,11.306821535809355,6.080441657506967,21.51556488445264,12441.852621230686,57.56815911532251,13.798737677899478,18.81877400546396,12.571282354925389,12.379365077033697,0.5651314489029452,0.7862728062554301,0.695416164053076,0.5958965209634255,0.1178033658104517,0.7393939393939394,0.9232673267326732,0.8832116788321168,0.7822878228782287,0.1196581196581196,0.5036105910671302,0.7121820615796519,0.6335204490777867,0.5364705882352941,0.1173184357541899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019350590142343,0.0039240737360832,0.0062318575807401,0.0085947659297789,0.0106992117976099,0.0128404867369278,0.0149386140229228,0.0171283914827593,0.0191222762765218,0.0214429739716072,0.0235930758114603,0.0255807507929827,0.0276815541964331,0.0298505925842025,0.0319469373439788,0.0342739643931018,0.0364729998343548,0.0386171272093602,0.0406680662661872,0.0427105578415542,0.0581879678055807,0.0725800546076513,0.0855078997305599,0.0986670591203431,0.1111661537164298,0.1270893463160899,0.1396059134197297,0.1510635126791151,0.1624931867004392,0.1731865159857046,0.1865831707606247,0.1987718899249488,0.2106586005418521,0.2214041920098017,0.2309597182478538,0.2417717591258671,0.2515523788251061,0.2596191741641988,0.2680106763586802,0.2767305687013716,0.2843596957382515,0.2913431927026615,0.297871836193004,0.3038197986295287,0.3088757540377505,0.3144143588478381,0.3194416599839615,0.3239490445859873,0.328316415820791,0.3332056683263117,0.3319232634585332,0.3296659414502492,0.3290120760353404,0.3285251309355016,0.3287756832755568,0.3265459567285561,0.3245614035087719,0.3260358627944053,0.3269655042670725,0.3280879230673161,0.3293238154122871,0.3296029737424865,0.3297827639816799,0.3309524875733285,0.3332209593527259,0.3347266125029389,0.3355388871459943,0.3410320956576463,0.3441875153514158,0.3477433172047275,0.3501749284383661,0.3524299114950447,0.3568693905730245,0.3560066656567187,0.3602472836268265,0.35915575993397,0.3610009154714678,0.3610268849807964,0.3633073496659242,0.3614035087719298,0.0,1.8190624608063275,58.47827958330823,198.0399583636053,274.3339318789074,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95769,44177,418.0684772734392,6132,62.91179818103979,4808,49.72381459553718,1893,19.44261713080433,77.39144353273707,79.73127943140018,63.36142006586866,65.08757662388376,77.15261205454283,79.49142114986385,63.27258773872262,65.00061608748558,0.2388314781942426,239.8582815363284,0.0888323271460365,86.96053639818047,159.984,111.99552428339956,167051.96879992483,116943.39951696224,347.56257,224.38856304692567,362459.6581357224,233843.91927129417,356.51975,172.3775616988191,369366.4024893233,177719.7056606118,2746.04672,1269.2442072642164,2841688.730173647,1299642.2300162015,1138.03476,508.8349212677027,1177813.0605937203,520815.6619236937,1850.499,783.9486875686243,1902196.5562969227,792817.2502157586,0.37939,100000,0,727200,7593.271309087491,0,0.0,0,0.0,29605,308.6384947112322,0,0.0,32682,338.3662771878165,1617271,0,58046,0,0,6273,0,0,55,0.5742985726070022,0,0.0,2,0.0208835844584364,0,0.0,0.06132,0.1616278763277893,0.3087084148727984,0.01893,0.324804992199688,0.675195007800312,24.455986028235102,4.287097639003673,0.3227953410981697,0.2352329450915141,0.2225457570715474,0.2194259567387687,11.09178676145,5.738665978863862,20.324376617002915,12265.167606122171,54.675900478831466,13.676528750564788,17.398993790653808,11.840272100669338,11.760105836943538,0.5628119800332779,0.7966401414677277,0.7016752577319587,0.5476635514018692,0.1232227488151658,0.7387944358578052,0.9363207547169812,0.8671679197994987,0.7261410788381742,0.1652173913043478,0.49800796812749,0.7128712871287128,0.6444058976582827,0.4957780458383595,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020553215616393,0.0042259087730676,0.0065542501166778,0.0088156732107128,0.0107777246799727,0.012865401840241,0.014988791522315,0.0170485848960352,0.019430170907865,0.0216399279692232,0.0238524590163934,0.0260177281680892,0.0280720502255422,0.0304128114611529,0.0323787728847105,0.0346772444141436,0.0367093061765192,0.0385393223467916,0.040496855672782,0.0423654659472072,0.056970481399524,0.0706475678277337,0.0840903845750372,0.0974224690033757,0.1094123973303248,0.1246827679553337,0.1376000848401294,0.1491722699804238,0.1596253657703069,0.1699915315102854,0.1828770736223396,0.1955983345049478,0.2071319110087056,0.2178525000273107,0.2280771175449009,0.2380894425881259,0.2472970864263581,0.2564500005616021,0.2651606175330416,0.2722571196466778,0.2791133096019601,0.2860632267866534,0.292929531828341,0.2982788151732564,0.3044306408172179,0.310757756636678,0.3161058894110589,0.3210828276660433,0.3258869057634314,0.3296598998154495,0.3281567235421456,0.3265743488295417,0.3253178085273934,0.3238691257263983,0.3224629621390755,0.3204813022034234,0.3189731437598736,0.3197059497691476,0.3205418761182585,0.3217907362192796,0.3224531094830332,0.3237922036846683,0.3240880503144654,0.325300125425551,0.3263228980753461,0.3276898155405758,0.3287749287749287,0.3319475938523558,0.335573776260689,0.3380365659777424,0.3399808332953041,0.3433400874480111,0.3478398180899444,0.3504872107186358,0.3542680643953575,0.3562705495537811,0.3644284212107556,0.3680223285486443,0.3719676549865229,0.3821536144578313,0.0,1.8974026880363208,57.017167212695526,184.94132525213135,257.5860561586716,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95728,44858,423.9303025238175,6340,64.79817817148589,5011,51.75079391609561,2008,20.631372221293667,77.37264048070351,79.73254868747559,63.34029949113111,65.0823336581796,77.12104882984738,79.47942756989241,63.24718129132315,64.99080724349271,0.2515916508561275,253.12111758317712,0.0931181998079608,91.52641468689636,158.8675,111.28554281310672,165957.19120842387,116251.820588654,348.84311,224.050554402171,363832.2121009527,233470.60881055804,360.92021,174.087829697694,372727.9270432893,178609.7732367553,2866.22224,1312.8492145536404,2963074.8788233325,1340380.3427979702,1184.07981,526.1078647010409,1226556.493397961,539221.6015178846,1963.34674,825.0752229559616,2020218.243356176,836776.5969528102,0.38415,100000,0,722125,7543.508691291994,0,0.0,0,0.0,29665,309.2825505599198,0,0.0,33100,341.5510613404647,1619455,0,58214,0,0,6353,0,0,55,0.5640982784556243,0,0.0,1,0.0104462644158448,0,0.0,0.0634,0.1650396980346219,0.3167192429022082,0.02008,0.332226916113458,0.667773083886542,24.36811534572768,4.321819801403347,0.3270804230692476,0.226701257234085,0.2231091598483336,0.2231091598483336,11.188172426971096,5.882831562970012,21.45206826004434,12491.011368459023,56.768024898075474,13.601369446014916,18.433534083421584,12.358031065170453,12.375090303468529,0.5503891438834564,0.7860915492957746,0.6833435021354485,0.5679785330948122,0.0983899821109123,0.7243788819875776,0.9258312020460358,0.8501228501228502,0.7421875,0.1495726495726495,0.4901960784313725,0.7127516778523489,0.6282467532467533,0.5162412993039444,0.084841628959276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023291139240506,0.0046618629209611,0.006989460016028,0.0094450763730906,0.0120692635410629,0.0143840218254372,0.0165436679442224,0.018699220185359,0.020883591609764,0.0230120383260994,0.0251504618949483,0.0272179385825316,0.0293984575835475,0.0314527590681579,0.0336022614724331,0.0357397550514185,0.0376754876382159,0.0395087595556431,0.0419065832415241,0.0437449875535094,0.058679808716353,0.0727828234210856,0.0864473242744506,0.0995259667230741,0.1111720183002677,0.12643131284296,0.139052124657912,0.1510988133879636,0.1619462599854756,0.1731814818389473,0.1866613538951948,0.1990609007995326,0.2107541382985665,0.2209012359181887,0.2309181933212301,0.2417326760095275,0.2511356914044624,0.2609630605374855,0.2694348196535075,0.2769507775586036,0.2839263178613191,0.290700941143419,0.298043537511702,0.3043530442505491,0.3097539917064925,0.3151428430453446,0.3200751408891671,0.3246933374052018,0.3296084321748588,0.3344767533906802,0.3342753710955899,0.3327557040887898,0.331418271938718,0.3297681678903856,0.3294376542659172,0.3277804171583577,0.3257298547418777,0.3260376614413881,0.3267431537253295,0.3278670992121493,0.3274749929886884,0.3278711153178735,0.3301993466789513,0.3316293501796995,0.3319332773310932,0.3328654241077231,0.3335887829246139,0.3379920582809617,0.3405554392575535,0.3435483870967742,0.3469332368373439,0.3488310589230932,0.3504085480829667,0.3550075872534142,0.3558831762620136,0.3592255932003305,0.3633181126331811,0.3618394513916902,0.3677117711771177,0.3727064220183486,0.0,2.3696573901712408,56.32012234459159,196.5107502754772,272.0444493810579,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95748,44187,417.0844299619835,6233,64.03266908969378,4834,49.96449011989807,1881,19.34244057317124,77.33281654085012,79.69742123631691,63.319784280511655,65.07046112760541,77.10024641585355,79.46517366868376,63.23417177090927,64.9870716520483,0.2325701249965703,232.24756763315213,0.0856125096023845,83.38947555711229,159.03184,111.35796725527383,166093.934076952,116302.9686961752,346.1603,222.91246089118297,361015.7496762335,232295.522949224,354.80449,171.05636224276125,367262.15691189375,176154.35022460597,2776.15748,1263.0529286799745,2872281.9484480093,1292056.053682556,1165.52438,509.01505916826255,1203153.9457743242,517490.2025820508,1859.85278,771.9672462054756,1914516.230104023,781097.432515165,0.37976,100000,0,722872,7549.724276225091,0,0.0,0,0.0,29495,307.51556168275056,0,0.0,32539,336.4874462129757,1620602,0,58204,0,0,6228,0,0,49,0.51176003676317,0,0.0,1,0.0104440823829218,0,0.0,0.06233,0.16412997682747,0.3017808438953955,0.01881,0.3268702290076336,0.6731297709923664,24.8627268329312,4.4054308880551485,0.3266446007447248,0.2312784443525031,0.2134877947869259,0.2285891601158461,11.099410240832084,5.413631882000994,19.96656583465943,12387.816935266335,54.71564253252074,13.396920225188804,17.82284097396165,11.43735743311381,12.058523900256468,0.5614398014067026,0.7960644007155635,0.695376820772641,0.5717054263565892,0.123076923076923,0.7299444003177125,0.931372549019608,0.865979381443299,0.7125,0.1434977578475336,0.5020979020979021,0.7183098591549296,0.6397984886649875,0.5290404040404041,0.1179138321995464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0047569300051727,0.0070667072799268,0.0094733739238267,0.0117405282220323,0.01404620273794,0.0158985916642021,0.0181725370086778,0.0203678898988762,0.0222916240016383,0.0245445318186944,0.0267486754014868,0.0290984617915604,0.031101956745623,0.0332325660575921,0.0353909124736428,0.0375199353783061,0.0396106389381816,0.0416220431505068,0.0436680312926445,0.0582917510491262,0.0724575517591304,0.085421866152136,0.0983799581585559,0.1101566287918713,0.1263904749820242,0.1388877105162686,0.151204870572207,0.1625934629352702,0.1726671171026243,0.1859528603576927,0.1983576583107033,0.2104135628609023,0.2200865914458147,0.2298960567563108,0.2395942908394326,0.2498716775647749,0.2588424618223968,0.2674777555838024,0.2753543541480616,0.2822969829531646,0.2882423164251773,0.2946561811592486,0.3002997242536866,0.3064067190937488,0.3121614785752181,0.3173255173104864,0.3213694794450808,0.3252005131062363,0.3294243492730082,0.3293098570678018,0.3286253131797032,0.3275446485206433,0.3263208120065932,0.3256554474302889,0.3250130244246269,0.3228181861371086,0.3237152658099037,0.3239907826235385,0.3252754305273291,0.3260592903129211,0.3269314364750049,0.3277697600970488,0.3279401919214461,0.3287931200153742,0.3307281490165429,0.3321552756085048,0.3343185963146972,0.3385431300927227,0.3394426112193376,0.3413511912896906,0.3456993825846285,0.3494704992435703,0.3519854225191709,0.3545913596409201,0.3597633136094674,0.3608655897592197,0.3637648959806099,0.362938596491228,0.3628386112170927,0.0,2.0186240349804714,55.37045532822239,182.56857582343184,268.2687121780585,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95774,44709,423.0271263599725,6166,63.0024850168104,4872,50.23283981038695,1988,20.318666861569945,77.34910350822409,79.6778080241205,63.34642956891118,65.0665041234559,77.09858666351819,79.43032211853416,63.25236583290551,64.97690076525626,0.2505168447058992,247.48590558633052,0.0940637360056655,89.60335819963916,160.58416,112.5183841128912,167669.88953160567,117483.22521027752,352.23237,227.3753406482916,367173.7527930336,236807.44319783183,363.10545,175.66924834682882,375182.62785307074,180392.8836784525,2795.4294,1289.1522653381203,2884020.9242591937,1311279.7474660354,1187.70324,532.0751873503168,1223125.388936455,538567.9384282965,1950.33122,822.2927905396618,1995543.6757366296,823260.2003400073,0.38314,100000,0,729928,7621.358615072984,0,0.0,0,0.0,29948,312.0471109069267,0,0.0,33238,343.0889385428196,1608323,0,57783,0,0,6353,0,0,69,0.7204460500762211,0,0.0,0,0.0,0,0.0,0.06166,0.1609333402933653,0.3224132338631203,0.01988,0.3322535863026377,0.6677464136973623,24.28470834866104,4.362562744516683,0.3216338259441708,0.2323481116584564,0.2155172413793103,0.2305008210180624,11.285352055685449,5.913550943745725,21.22822742181757,12375.562126541454,55.50048763555344,13.604487019779205,17.779253648350203,11.831702841118844,12.285044126305197,0.5619868637110016,0.7932862190812721,0.6879387364390556,0.6028571428571429,0.1148708815672306,0.7297297297297297,0.908235294117647,0.8399014778325123,0.7575757575757576,0.1845493562231759,0.50125803746156,0.7241867043847242,0.6347975882859603,0.5592185592185592,0.096629213483146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.004277359389412,0.0066753913422811,0.0088267259855156,0.0110627567413673,0.0132232582759884,0.0154609755600399,0.0179823442363627,0.0203741736402742,0.0223547707229236,0.0245771480673284,0.0265158900370442,0.0285285593899656,0.0304764453410459,0.0325700322710354,0.0346847079481485,0.0366829126957025,0.0387399158008254,0.0408371087742632,0.0428733585345788,0.0576804667035409,0.0721069366580202,0.0856313041290079,0.0986642284369055,0.110602914984877,0.1260660501981506,0.1394983993724692,0.1519785607180458,0.1626268771413019,0.1734457707391295,0.1863972527531676,0.1983559569520307,0.2100220755353045,0.220113748222684,0.2295561840411132,0.2402853471576055,0.2496763103848558,0.2586586901763224,0.2667793802267131,0.2750483736160566,0.2818605619628211,0.2889967826849956,0.2945408930071833,0.300497214401246,0.3059212124156021,0.3114212446986882,0.3159251934005958,0.3206141858599748,0.3250495858126239,0.3301799540205586,0.3293070908600701,0.3286582257553421,0.3283733513696313,0.3272301622855821,0.3272624636044922,0.3257085113224013,0.3233869435825999,0.322700918154493,0.3241419370269762,0.3245817843866171,0.3258224763333021,0.3273249480043577,0.328557944415312,0.3286949896925696,0.3291408154889795,0.3304955993294216,0.3314041772913503,0.3345679012345679,0.3373472702874496,0.3399241062512482,0.3423641938584046,0.3451086956521739,0.3470348689233902,0.3502837858567265,0.3540041848963287,0.3581765557163531,0.3622464898595944,0.3628899835796387,0.3662677428332869,0.3655744176865377,0.0,2.4880107372038105,56.349808651868905,186.58807490149928,267.2075158136508,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95654,45017,425.7218725824325,6282,64.3987705689255,4932,50.83948397348778,1914,19.570535471595544,77.31532774038504,79.7078742753156,63.31028192710126,65.07632602565623,77.06846600197771,79.46477320329653,63.218098859706345,64.98910295076335,0.2468617384073326,243.10107201907272,0.0921830673949131,87.22307489287573,158.5353,111.09041880462628,165738.2859054509,116137.76612021062,350.93362,226.05746961594136,366148.566709181,235599.3400986411,362.24575,175.5157193889039,374416.3652330274,180178.30981042987,2824.78176,1297.498306824333,2912355.740481318,1315716.0027725506,1208.68045,537.5843495132633,1241729.6297070694,540166.7349027399,1881.72174,795.9164126809519,1925239.090890083,793882.2257482107,0.38524,100000,0,720615,7533.558450247769,0,0.0,0,0.0,29863,311.4558722060761,0,0.0,33170,342.5157337905368,1617392,0,58041,0,0,6408,0,0,53,0.5436259853220984,0,0.0,0,0.0,0,0.0,0.06282,0.163067178901464,0.3046800382043935,0.01914,0.3324242424242424,0.6675757575757576,24.722502144518003,4.424193068601309,0.3116382806163828,0.2374290348742903,0.225669099756691,0.2252635847526358,11.019234147298883,5.576824515483692,20.39645717486048,12538.610395018664,55.72611005705711,13.89536193570158,17.32502220629142,12.391259724983165,12.11446619008094,0.5535279805352799,0.7830913748932536,0.6805465191932336,0.5705300988319856,0.1188118811881188,0.726928895612708,0.9114219114219114,0.8704156479217604,0.6991869918699187,0.1764705882352941,0.4900277008310249,0.7088948787061995,0.6117021276595744,0.5340253748558247,0.1030927835051546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325688352209,0.0050690403292848,0.007570683391179,0.0097128807428931,0.011962890625,0.0145658263305322,0.0166761862021133,0.0189673663244982,0.0210666257605972,0.0232862965162717,0.0253420302340368,0.0275811770023318,0.0295458052569312,0.0316235265023493,0.0337228266479489,0.0358166040936216,0.0380263594164456,0.0398472125634451,0.0417347161685616,0.0439957890787046,0.0584498359559484,0.0725968586387434,0.0862477957847006,0.0996022225028412,0.1116939313984168,0.12716224513561,0.1402389169100079,0.1515248351601529,0.1625819001913231,0.1736418964610414,0.1869334166927165,0.1995191787052478,0.2107795643322919,0.2217491709441933,0.2312953641800579,0.2424487803795853,0.2529072040572392,0.2621306770217795,0.271490695218739,0.2795914624360943,0.2871505015172925,0.2945845332584111,0.3007686203915345,0.3063972255889023,0.3117306079791953,0.3165343458750431,0.3214245463766482,0.3258086682106227,0.3298376446826691,0.3337953612398189,0.3330953663793103,0.3321810744928454,0.3310604246206731,0.3306568287037037,0.3287793420250643,0.3263214340432051,0.3247439813862201,0.3260018028353683,0.3273776003003464,0.3286315489140126,0.3294141837078022,0.3302218187559204,0.330587865451116,0.3314841740297506,0.3317772751335483,0.3320644522083746,0.3326850474774053,0.3362655444103408,0.3409468585369303,0.3454261829526819,0.348346557813145,0.3527024140140996,0.3596368715083798,0.3627874672017286,0.3639835768165759,0.3647496698283107,0.3670440636474908,0.3641653290529695,0.3684210526315789,0.3710355368742835,0.0,2.7741964744427743,57.38558662849892,179.37081053117228,274.6150222030293,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95617,44270,419.7057008690923,6102,62.59347187215662,4821,49.74010897643724,1961,20.00690253825157,77.3146043072854,79.73317116261912,63.296484254502126,65.08263376196545,77.0645976785104,79.48821039220063,63.20297663848448,64.99472629459474,0.2500066287750115,244.96077041848707,0.0935076160176464,87.90746737071231,158.78984,111.20077279952264,166068.62796364664,116298.11937157896,347.29515,223.97669321414065,362548.9609588253,233577.6935211737,352.69145,170.5443920498614,364787.1089868957,175251.69027602344,2790.19984,1265.2873951948857,2882102.3039836013,1287289.2008689728,1166.82281,511.0475257507427,1203278.1199995817,517442.6678841032,1932.63274,816.9350770268941,1975372.3291883245,814810.2911307903,0.381,100000,0,721772,7548.573998347574,0,0.0,0,0.0,29501,307.8427476285598,0,0.0,32355,334.3233943754772,1618235,0,58031,0,0,6122,0,0,61,0.6379618687053558,0,0.0,1,0.0104583912902517,0,0.0,0.06102,0.1601574803149606,0.3213700426089806,0.01961,0.3350070610387572,0.6649929389612428,24.726558641571053,4.48672258346575,0.3159095623314665,0.2217382285832815,0.2223605061190624,0.2399917029661895,11.01560587304907,5.4643018246376815,21.0675576693458,12390.247364995765,54.25261068775917,12.756843263733192,17.000000171125407,11.830660896935786,12.665106355964769,0.547396805641983,0.7680074836295603,0.6848325673013789,0.5960820895522388,0.1175453759723422,0.7169206094627105,0.9194805194805196,0.856020942408377,0.7366255144032922,0.1434599156118143,0.4882484611080022,0.6827485380116959,0.6275197195442594,0.5548854041013269,0.1108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190023608563,0.0046445122755067,0.0068928411905632,0.0089315653101661,0.011260986328125,0.0136178447749032,0.0158505115206903,0.0179180713045254,0.0198934244305571,0.0221712459933025,0.0242158813514123,0.0265131281587705,0.0285587893377776,0.0304991138770968,0.0323709445998534,0.0341732755679174,0.0360166198671654,0.0380725943768428,0.0401752268375926,0.0423172805123551,0.0568250716062804,0.07124148768989,0.08445793381573,0.0975250286869282,0.1095300426466241,0.1248411555404947,0.1379401922770489,0.1500634145821565,0.1620360959849368,0.1723426656066694,0.1848802960501472,0.1972209577073985,0.2089194460485742,0.2200335243270484,0.2297000892788255,0.2400008878235006,0.2497988197424892,0.2588899405083829,0.2673544047808402,0.2748282466824943,0.2826655859194071,0.2900002340221385,0.2962200044985853,0.3019845314467294,0.3076474660254308,0.3133449172489432,0.3184946075119486,0.3241297740019586,0.3284629023282299,0.3324227668025918,0.3312100195273045,0.3309487123046445,0.3297768882750067,0.3296495060103282,0.3287383699292892,0.3267692968857919,0.3251448067920336,0.3252841377038379,0.3256915368247649,0.3259261912009598,0.3264097180563887,0.3273283346487766,0.327851381284741,0.329009354975552,0.3300656727865395,0.3302119270576639,0.3307986948503333,0.3339787028073572,0.3387653976340859,0.3418141592920354,0.3432383536861149,0.3462596550629563,0.3494790022102936,0.3491821985545835,0.3489529533289511,0.3497666626779945,0.3536737235367372,0.3575087072321246,0.3580520199225235,0.3617520531873289,0.0,2.7027896308346278,54.25303631920599,175.37803189494224,273.49597773331425,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95635,44569,421.0383227897736,6272,64.24426203795682,4951,51.07962566006169,1979,20.19135253829665,77.29129418892526,79.6915965384479,63.29829466637945,65.07029215856903,77.03367128696249,79.43711556798385,63.20237858888071,64.9779945701108,0.257622901962776,254.48097046404428,0.0959160774987353,92.2975884582371,159.68062,111.81650024342753,166968.80849061537,116920.0609017907,351.62776,227.38336634237345,366991.5093846395,237086.23422205137,358.98321,173.9790779108312,371224.29027029854,178587.17485158786,2835.2672,1306.4158987606925,2927697.516599572,1329581.4309852726,1170.47079,525.1159456096121,1205147.9061013227,530350.3365640667,1942.57494,828.6470935778043,1985698.3949390915,829557.7652407298,0.38188,100000,0,725821,7589.49129502797,0,0.0,0,0.0,29922,312.1555915721232,0,0.0,32967,340.64934385946566,1608791,0,57772,0,0,6169,0,0,62,0.6378417943221624,0,0.0,0,0.0,0,0.0,0.06272,0.1642400754163611,0.3155293367346938,0.01979,0.3413929440389294,0.6586070559610706,24.46310915193089,4.458189112610028,0.3156937992324783,0.2357099575843264,0.2191476469400121,0.2294485962431832,11.221723718908756,5.71986454445645,21.330145401829714,12419.773435116991,56.18798629908515,13.970444214411064,17.677366177962444,11.9565341390063,12.58364176770534,0.5548374065845284,0.7694944301628106,0.6986564299424184,0.5824884792626728,0.1100352112676056,0.7151335311572701,0.9097560975609756,0.8838862559241706,0.763265306122449,0.1143911439114391,0.4948653899528171,0.6935270805812418,0.6301489921121823,0.5297619047619048,0.1086705202312138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.004775423299199,0.0073586878190879,0.009694136774718,0.0120257607667185,0.0142587971686102,0.0165793176580949,0.0185839442890109,0.020509569769344,0.0227100526283455,0.0249097546968578,0.0271244582297722,0.0291031417813715,0.0310880295114738,0.0332304452404794,0.0354442686193593,0.0375563500699518,0.0396615272802782,0.0417945543266779,0.0440675138916399,0.0583735657407988,0.0729645651559112,0.0862470862470862,0.0990969181542607,0.1106174142480211,0.1261246004360803,0.1384376924220226,0.1504111807064638,0.1619801133326205,0.1723945416089584,0.1860106532099803,0.1983042404816563,0.2094939533466131,0.2203961415072647,0.2302358906525573,0.2405572995818034,0.2498491451558833,0.2594894661577092,0.2683367211364849,0.2761209426004034,0.2832993701370878,0.2902448158030239,0.2963665012024784,0.3019363662539591,0.3070502056411379,0.3129599446831629,0.3174031902086677,0.3220693436707004,0.3266018611049824,0.3312808858116857,0.331001105449055,0.3305209755021575,0.3286735010872942,0.3278291979895421,0.3280344452555832,0.3265296712417195,0.3246217113097601,0.3249563297188623,0.3249755612341148,0.3248610862161677,0.3255634571245814,0.3265411503018748,0.3272302544352548,0.3270029407143017,0.328573148705599,0.3291644908616188,0.3293970349714025,0.3336478284114854,0.3377350517642087,0.3401897472693932,0.3431882471028378,0.3480014862784649,0.3511513157894737,0.3531578543473256,0.3543822998765549,0.3549590755897929,0.356160100062539,0.3568889818105791,0.3544375353306953,0.3547008547008547,0.0,2.6369450510536536,58.85157811203492,179.87828948986726,274.6183307036244,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95640,44439,420.4621497281472,6093,62.59933082392305,4770,49.37264742785445,1872,19.24926808866583,77.27514686010801,79.68598171342151,63.27600815666828,65.05623506743297,77.04426232875146,79.45615968815463,63.19057344059477,64.97362551847415,0.2308845313565513,229.8220252668841,0.0854347160735145,82.60954895881412,158.19936,110.75479136808129,165411.2923462986,115803.83873701516,348.51444,225.3939702400905,363899.6131325805,235166.37415316867,359.95378,174.01855554286814,373240.0250941029,179548.93896007878,2729.67804,1246.4354723905517,2827310.4976997077,1276450.4311904565,1122.77079,497.1574321885926,1160439.9937264742,506324.2486203766,1840.25678,765.8428352703718,1893942.199916353,774578.7859498735,0.37974,100000,0,719088,7518.695106649937,0,0.0,0,0.0,29642,309.4102885821832,0,0.0,32823,340.077373483898,1615500,0,58037,0,0,6230,0,0,75,0.7841907151819323,0,0.0,0,0.0,0,0.0,0.06093,0.1604518881339864,0.3072378138847858,0.01872,0.334378429220881,0.665621570779119,24.63195723423185,4.344182647658824,0.3153039832285115,0.2358490566037736,0.2234800838574423,0.2253668763102725,10.835750203966418,5.480675249992851,19.75554097175113,12325.425610576636,54.01060056439055,13.49005818856842,17.11858268289949,11.72148785100648,11.680471841916155,0.560377358490566,0.7884444444444444,0.6968085106382979,0.5684803001876173,0.1227906976744186,0.7208201892744479,0.9004739336492891,0.8354114713216958,0.7318181818181818,0.1688888888888889,0.5022844089091948,0.7211948790896159,0.6464188576609248,0.5260047281323877,0.1105882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0046826064482126,0.0068489675815534,0.0091010665312341,0.0113406360927186,0.0136874694476128,0.0161520577558428,0.018274443344121,0.0204267326429002,0.0227514744429882,0.0249866655725598,0.0269876002917578,0.0293019188229847,0.0315109159502752,0.033334021768314,0.0351737479697505,0.0370976937030318,0.0393515152774027,0.0413141435900637,0.0431753712664775,0.0586974926053283,0.0724270176247459,0.0854570666218459,0.0984988148538319,0.1109104160725037,0.1259875876384741,0.1388009266146685,0.1501652275876772,0.1616617794995826,0.1724790164322024,0.1847721654270076,0.1977206926838789,0.2096095572365983,0.2193466317209312,0.2292361003818394,0.2396218660090423,0.2490933918338108,0.2571347965919991,0.2659799681311177,0.2738506770181342,0.2807707477784738,0.2878871389537134,0.2939278554737079,0.3000564422187796,0.3055954263471597,0.3104316280447176,0.3138594621701247,0.3178871212217707,0.3222524977293369,0.3264628890240355,0.3268722348116974,0.3262406460592864,0.3260584528190162,0.3247310895211658,0.3243142848652343,0.32269427512482,0.3205233680346802,0.321197105681986,0.3225658062867365,0.322866760468057,0.3228778487294245,0.3232576505429417,0.3238896915635404,0.325256499094709,0.3264359528959384,0.3279683308591817,0.3296243597040409,0.3316573439758657,0.3343283582089552,0.338057805304113,0.3385454545454545,0.3427142629142948,0.3465626768979181,0.3489764973464746,0.3527474595408355,0.3532148395562448,0.3573957211020471,0.3574780657008773,0.3630590833793484,0.3609831029185867,0.0,1.905043420623053,56.0986137579801,176.0931126710712,264.6087631233179,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95686,44263,418.4206676002759,6169,63.34259975335994,4806,49.64153585686516,1866,19.17730911523107,77.28391542799022,79.68217673982574,63.28504443165552,65.05973515675142,77.05617446958578,79.45457744951318,63.20042624475303,64.97722686656033,0.2277409584044392,227.5992903125541,0.0846181869024889,82.50829019108608,159.6463,111.81577966826538,166843.48807558056,116856.57684069476,347.25859,224.28996330849904,362320.5484605898,233816.97887984835,360.47523,174.64326133203852,372864.0448968501,179538.9974834401,2737.55864,1254.686225820023,2829132.203248124,1279954.6689441346,1093.17322,487.75753023539136,1128800.2842631105,496089.4490681928,1823.36348,765.547113599734,1874844.6167673436,773571.5009869986,0.37948,100000,0,725665,7583.794912526388,0,0.0,0,0.0,29605,308.78080387935535,0,0.0,33003,341.1157327090692,1612366,0,57882,0,0,6204,0,0,57,0.5956984302823819,0,0.0,0,0.0,0,0.0,0.06169,0.1625645620322546,0.3024801426487275,0.01866,0.326775284352905,0.673224715647095,24.67751309481184,4.274278133903421,0.3208489388264669,0.2434456928838951,0.2188930503537245,0.2168123179359134,11.24775172113792,5.895698906183735,19.779010288014398,12365.486177963536,54.28494761007907,13.960312296757412,17.397260968797433,11.47704201359749,11.450332330926736,0.5628381190178943,0.7923076923076923,0.6867704280155642,0.5903041825095057,0.0940499040307101,0.7406523468575974,0.9392523364485982,0.8629441624365483,0.7330316742081447,0.1261682242990654,0.4998591152437306,0.7075471698113207,0.6263066202090593,0.5523465703971119,0.0857487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022192497111935,0.004635264524505,0.0068022376316029,0.0091970610054775,0.0115482840369138,0.014037160785592,0.016166046203274,0.01841524696654,0.0205164919457939,0.0228646356204798,0.0249399839957321,0.0271361637417286,0.0292032393163272,0.0311749610957097,0.033392858986137,0.0355022854660903,0.037674852346907,0.039651235208636,0.0413563553151653,0.0433038040646169,0.0584659096844282,0.0723842626520655,0.0860531010599223,0.0989572921160341,0.1113550021105952,0.1267648864333947,0.1388225301268779,0.1500026622650551,0.1615858220920538,0.1720777478454058,0.1847057555507652,0.1968628470529611,0.2083714447493357,0.2189659515282934,0.2291643705777327,0.2393321788552906,0.2495276426854491,0.2584498867337623,0.2671015695143711,0.2742697840901268,0.2814757272548087,0.2890126641651032,0.2955748012812907,0.3010987691383969,0.3067830448226328,0.3125910381434391,0.317416152804933,0.3219706616411144,0.3267030361146026,0.3301447401406499,0.329378333243549,0.3288670004952402,0.3279479854201556,0.3272582972582972,0.3268041849958388,0.3242940969189992,0.3216825301300223,0.3217297155418485,0.3221787356223616,0.32323358642251,0.3239021459549781,0.3243023463376902,0.3245560447431063,0.3241390162755148,0.3239242101182399,0.3244977605489929,0.3265247903235009,0.3304761604638704,0.3332281587435142,0.3352987732489118,0.3376351904026174,0.3404187817258883,0.344197930948523,0.347601586470104,0.3506337311499676,0.3530031612223393,0.3556263269639065,0.356266344799839,0.355979011322839,0.3564356435643564,0.0,2.236543905580876,54.88964720612077,175.8273107263385,272.7156703765322,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95665,44689,422.0038676631997,6139,62.77112841687137,4829,49.986933570271255,1899,19.54737887419641,77.35161970545354,79.75867236460752,63.31721993396855,65.09477633813928,77.11448285819473,79.5201810049384,63.22936321759615,65.00829275931792,0.2371368472588102,238.49135966912627,0.0878567163724,86.48357882135826,159.8465,111.9346899673836,167089.84477081485,117006.94085337751,348.88921,225.4061762375023,364216.1919197199,235137.60125176643,366.25641,176.92278854781824,380210.17090890085,182828.024752482,2766.66448,1272.537727664267,2866789.985888256,1304957.8086701173,1177.31362,522.5931267954652,1217192.452830189,532803.7075162962,1854.48194,779.9604238075499,1911042.8056237916,792227.9138507164,0.38193,100000,0,726575,7594.992944127946,0,0.0,0,0.0,29659,309.5175874144149,0,0.0,33561,348.08968797365804,1612351,0,57806,0,0,6300,0,0,54,0.5644697642816077,0,0.0,1,0.0104531437829927,0,0.0,0.06139,0.1607362605713088,0.3093337677146115,0.01899,0.3310409502969678,0.6689590497030322,24.41540052160565,4.384280180022636,0.3222199213087596,0.2362808034789811,0.2195071443363015,0.2219921308759577,11.490441186456575,6.115541476278277,20.22926156344177,12392.68071665225,54.841325349088514,13.739809665697669,17.476751709641924,11.848971508041998,11.775792465706928,0.5754814661420584,0.7992988606485539,0.6998714652956298,0.5952830188679246,0.1371268656716417,0.7486712224753227,0.9145496535796768,0.8813131313131313,0.7845528455284553,0.1983471074380165,0.5105353075170843,0.7288135593220338,0.6379310344827587,0.538083538083538,0.1192771084337349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025531656214222,0.0046950261116463,0.0067793857957659,0.0089917093391855,0.0112705856025389,0.0139132206151965,0.0163870901952786,0.0186457812133032,0.0206952965235173,0.0229130390248898,0.0250220571639616,0.027231436381199,0.0292567970856401,0.0315157888225651,0.0335488668994153,0.0355280582684985,0.0377057335931346,0.0402267230013806,0.0421244277985851,0.0442607054603843,0.0592021398867364,0.0727994220439958,0.085636315927578,0.0987825794164378,0.1110747604373337,0.1256958997481001,0.1379822903616248,0.1498369252414146,0.1610321807600137,0.1711266698165886,0.1840876494883159,0.1965181405527208,0.208545147771186,0.21964381492387,0.2298661967953306,0.2393184186603401,0.2494832690911122,0.2580151296829971,0.2667430984380675,0.2754557530230854,0.2830225779587304,0.2890688921616757,0.2960036899932586,0.302205829521232,0.3071461514187926,0.3125130793377239,0.3166618784116317,0.3213872979185451,0.3263784817322102,0.3305644779105892,0.3303663865546218,0.329212850412735,0.3282263397065237,0.3264204586454229,0.3256007242827671,0.3241610327633148,0.3228228228228228,0.3231695315575383,0.3237493597404814,0.3250459583430009,0.3266751611452556,0.327463676563487,0.3277335567658148,0.3300665267669777,0.3313193795104174,0.3334371674064844,0.3335225982284805,0.3359869616999937,0.3388230357704815,0.3402151558297738,0.3412586777984482,0.3432953411418667,0.3462666084461356,0.3506836896577774,0.3548176476074993,0.3568381132969898,0.36029974002141,0.3619372990353697,0.3666125541125541,0.3537542024654464,0.0,1.850607043126516,58.28965549075336,178.45052116592242,263.6461887737806,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95786,44484,420.3745850124235,6098,62.389075647798215,4834,49.84026893282943,1911,19.491366170421564,77.3507064425629,79.67741578776678,63.34838135415546,65.06942659411149,77.10813902849868,79.43922848510834,63.25753347514345,64.98310696394951,0.2425674140642115,238.1873026584316,0.0908478790120099,86.31963016198085,159.57766,111.78690495324848,166598.104107072,116704.84721488367,348.06896,224.89107139631813,362688.367819932,234091.40312396188,359.14294,174.02859363756644,371013.7389597645,178591.93463478802,2756.04824,1268.2054115288506,2843747.2281961874,1290674.4283731363,1112.0835,494.4145560956045,1145586.6723738334,500770.0983718891,1865.67012,792.7174233532505,1905819.681373061,791881.8390332769,0.38161,100000,0,725353,7572.641095776001,0,0.0,0,0.0,29658,308.9699956152256,0,0.0,32941,340.08101392687865,1616840,0,58016,0,0,6381,0,0,62,0.6159564028146075,0,0.0,2,0.0208798780615121,0,0.0,0.06098,0.1597966510311574,0.3133814365365693,0.01911,0.3250233717669056,0.6749766282330945,24.34298587431832,4.407643058316823,0.3295407529995862,0.2372776168804302,0.2161770790235829,0.2170045510964005,10.979039308513096,5.568340314608908,20.61669417493689,12397.720627219787,55.083814497836265,13.772830004980214,18.153241057417112,11.733120296042914,11.42462313939602,0.5550268928423666,0.7855274629468177,0.6854990583804144,0.5521531100478468,0.107721639656816,0.7408513816280806,0.9370629370629372,0.8824884792626728,0.6792452830188679,0.1279620853080568,0.4838340486409156,0.6949860724233984,0.6117342536669542,0.5089743589743589,0.1026252983293556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349985819051,0.0044910786699107,0.0067683440388849,0.0090199902486591,0.0111741499918659,0.0134586213566534,0.0160307366189719,0.0180628833260197,0.0202540441664878,0.0223700368399508,0.0245916757177695,0.0266476497327026,0.0288474384666769,0.0310264249611397,0.032873774193881,0.0349903923634785,0.036981467876618,0.0391967821525574,0.0412092762413152,0.0431432973805855,0.0580071582857679,0.0714569522574708,0.0850673515383405,0.0977857645785386,0.1106321536223941,0.1263544012093151,0.1388167173929181,0.1510259248222723,0.1618340984306608,0.1726525406471389,0.1863947042678004,0.1986424997027766,0.2097685537324785,0.2203867584398557,0.2297585539625297,0.2401013375225409,0.2490778403075723,0.2578528737698288,0.2671200272016321,0.2749324911895281,0.2819982673982096,0.2888146521515675,0.2956755222256393,0.3022241918290594,0.3067521149668038,0.3122744793783328,0.3176805941039682,0.322647099965665,0.3272230636788483,0.3326216177032673,0.3316974789915966,0.3300876071020891,0.3291226587804534,0.3276699731050638,0.3265463840917873,0.3249555569177956,0.3232142290986335,0.323215696602581,0.3246015032444741,0.325913466700068,0.3268395419244438,0.3270783329696705,0.3280230649438108,0.3287726720374454,0.3295756288321344,0.3316227679740273,0.3323302668156936,0.3338398708329376,0.3362297340256437,0.3400397614314115,0.3426036044277742,0.3461167648634172,0.3531612657746211,0.3557382086341988,0.3586843841296767,0.3628686964795433,0.3661776061776062,0.3675954592363261,0.3743001119820828,0.3767441860465116,0.0,2.402571701913802,58.58558392057704,178.75407014679354,262.722678118478,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95736,44270,418.49461017798944,6178,63.30951784072867,4849,50.07520681875157,1891,19.41798278599482,77.31652017658898,79.67671514628489,63.31665033110207,65.06216791538009,77.07844881437997,79.43964160852454,63.22838699287583,64.97673254141672,0.2380713622090127,237.07353776035237,0.0882633382262341,85.43537396336376,160.07178,112.1466252314252,167201.2409125094,117141.54051916228,351.42165,227.1394281628177,366497.4931060416,236688.5137024274,362.37248,175.4253791887934,374366.7899222863,180145.89837417472,2767.4038,1278.931133936075,2859170.7612601323,1304853.308447559,1150.41389,514.1796444487879,1182902.6385058912,518519.6559580513,1849.6345,774.8505225317155,1899863.102699089,781724.3494089901,0.37942,100000,0,727599,7600.056405114064,0,0.0,0,0.0,29973,312.48433191276007,0,0.0,33227,342.9430935071446,1608702,0,57768,0,0,6354,0,0,71,0.7416227960223949,0,0.0,0,0.0,0,0.0,0.06178,0.1628274735122028,0.3060861120103593,0.01891,0.3318885448916409,0.6681114551083591,24.37398789281385,4.337754150560852,0.3299649412249948,0.2346875644462775,0.2206640544442153,0.2146834398845122,11.31330599523921,5.88255585894147,20.123934254700668,12325.854130817232,55.3063861339068,13.76641926235168,18.157764085695483,11.889986867296262,11.492215918563373,0.5597030315528975,0.7864674868189807,0.685,0.5654205607476636,0.1133525456292026,0.7351837959489872,0.9298642533936652,0.8534883720930233,0.7094017094017094,0.158590308370044,0.4931740614334471,0.6954022988505747,0.6230769230769231,0.5251196172248804,0.1007371007371007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183729905491,0.0047242019038736,0.007064196904339,0.0092158874991109,0.011688232421875,0.0142280976921353,0.0159913516159627,0.0181060629269936,0.0202145172339751,0.0222882006654722,0.0243622344352391,0.0266354516423826,0.0287823788908655,0.0308403612286717,0.03277048284114,0.0349430702787593,0.0368614460949226,0.0387527747235649,0.0408935458051371,0.0431838308068969,0.0572574077554344,0.0712835645968062,0.0840552048157392,0.0967884409110984,0.1090220806883607,0.1248294462954148,0.1368294856560855,0.1490392292542715,0.1606154503686291,0.1712228826470399,0.1847443203240296,0.1972317215704948,0.2084697284423225,0.2182241611178535,0.2286532005063569,0.2388283016358558,0.2490173746036,0.2583686834021581,0.2667287089159252,0.274229024423773,0.2813866839462174,0.2881340071121093,0.2939867424242424,0.3002961950330371,0.3065517786176974,0.3118184061189242,0.3162382460841148,0.3199913429833607,0.3246406836721481,0.3297028265145814,0.3292615587668853,0.3283082307872507,0.3268527538932892,0.3267960602549247,0.3270951508925514,0.3244516030065961,0.3232739491536169,0.3229682793132397,0.3227442513964565,0.3239964157706093,0.3242435632399925,0.3247455344766129,0.3252941176470588,0.3260021522733387,0.3275845457173138,0.3284169381107492,0.3287976037655113,0.3311965811965812,0.3329125021918289,0.3352380952380952,0.3380557580174927,0.3384853168469861,0.3406392117230924,0.3433300432768962,0.3449995295888606,0.3465665236051502,0.3470016956990905,0.3470504763835394,0.3418803418803419,0.3370441458733205,0.0,2.241468350162308,58.46710767130906,183.79047642425377,260.10569086302064,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95688,44254,419.1643675277987,6234,63.96831368614664,4925,50.99908034445281,1901,19.55313100911295,77.40264542862671,79.78208738818718,63.35728834693722,65.11167561521765,77.1711205592491,79.55044158732794,63.27191937804015,65.02792981577916,0.2315248693776084,231.64580085924055,0.0853689688970646,83.74579943848914,159.2811,111.50453421624115,166458.57369785136,116529.06678808332,347.67128,224.3862418918684,362870.5584817323,234030.9325233833,359.62114,173.58580749939176,372215.4815650865,178619.8366375554,2804.896,1286.919219287346,2906304.698603796,1320046.6422052148,1170.06047,514.7817341221986,1210806.7573781456,526069.3448547986,1869.50342,778.6734794306202,1924779.3453724603,789679.4631896472,0.38086,100000,0,724005,7566.298804447789,0,0.0,0,0.0,29654,309.4013878438258,0,0.0,33034,341.79834462001503,1620768,0,58096,0,0,6330,0,0,56,0.5747847169969066,0,0.0,3,0.0313518936543767,0,0.0,0.06234,0.1636821929317859,0.3049406480590311,0.01901,0.3317550022911257,0.6682449977088742,24.66454344655964,4.280949384147051,0.313502538071066,0.2436548223350254,0.221725888324873,0.2211167512690355,11.111283363006937,5.739369133613639,20.124193372887778,12347.84171113454,55.79147216259023,14.3983598307754,17.43399988196805,12.18444464687833,11.774667802968454,0.5681218274111676,0.8075,0.6884715025906736,0.5915750915750916,0.1101928374655647,0.7450076804915514,0.94,0.8548812664907651,0.7607843137254902,0.1330275229357798,0.5045542368203146,0.728,0.6343347639484979,0.5400238948626045,0.1044776119402985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569401828842,0.0043074178803449,0.0063907486305538,0.0087037770533093,0.0108093267304583,0.0130134614992973,0.0151804010725172,0.0172278298853859,0.0193449491594706,0.0216034221621842,0.0240369831279854,0.0260245565045992,0.0281921839175003,0.0302271931450699,0.0321911660011762,0.0342101183401374,0.0363743670984375,0.038414444329148,0.0405070926411248,0.0425937698664971,0.0572338869737804,0.0718144696890377,0.0853314305501631,0.0982865076944114,0.1101185453931825,0.1256625371602678,0.1384747615156885,0.1496694945022193,0.1615271188613924,0.1720569627040127,0.185124162736103,0.1981906915843352,0.209482383645063,0.2192860657081944,0.2290727092729072,0.2387679635083368,0.2483053870852657,0.2576089521048906,0.2661976458326253,0.2740203757275004,0.2817223421821415,0.2885400863578014,0.2949692961738309,0.3010131457757682,0.3062914509499618,0.3123300481094582,0.3171097528966215,0.3212739759066733,0.3264409975590541,0.3311142394779428,0.3305988184747583,0.3293024021059559,0.3275194342323127,0.3265831894070236,0.3264381431850152,0.3247865858314371,0.3231743925174582,0.3242543003787941,0.3251068758196651,0.3251855939897812,0.3253280005980637,0.3260668724077605,0.3263236794436694,0.3285351962267509,0.3295705109768957,0.3314013930762033,0.3318643200363936,0.3332602842652307,0.3372565503713045,0.3412915231420992,0.3426516117282826,0.3429301261242084,0.3453686200378071,0.3468208092485549,0.3481823318892447,0.3502412616217488,0.3565097799511002,0.3610776035383997,0.3591491682574311,0.3558490566037736,0.0,1.7729134465897702,57.41352878180772,189.7367353920406,265.6055476869752,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95744,44798,424.1936831550802,6134,63.06400401069519,4822,49.95613302139037,1846,18.95680147058824,77.33907921770925,79.70591599003278,63.32552877917672,65.07563499140585,77.10419702839006,79.47153883238389,63.23928257089175,64.99167512452978,0.2348821893191939,234.37715764889333,0.0862462082849688,83.95986687607149,158.28626,110.9256252980596,165322.38051470587,115856.47695736508,349.57037,226.16547209741407,364712.8384024064,235822.3618163165,366.07444,176.9191441316366,380169.5354278075,183018.02283472905,2774.3366,1267.1546379562742,2874937.876002674,1300758.8548172994,1155.64116,512.3242570134552,1197631.1413770055,525717.5979836393,1813.27726,763.4418315247628,1864393.0063502677,772629.8939700996,0.38153,100000,0,719483,7514.653659759359,0,0.0,0,0.0,29792,310.745320855615,0,0.0,33535,348.0949197860963,1617255,0,58060,0,0,6249,0,0,57,0.5953375668449198,0,0.0,0,0.0,0,0.0,0.06134,0.1607737268366838,0.3009455493968047,0.01846,0.3405977584059775,0.6594022415940224,24.37328947386647,4.315160886099709,0.328494400663625,0.2258399004562422,0.2235586893405226,0.2221070095396101,10.934701876380036,5.535362298219967,19.83439634739344,12365.793127096757,54.79469962795381,13.083334200665158,17.94790424327334,11.942822304173198,11.820638879842104,0.5653255910410618,0.7878787878787878,0.7013888888888888,0.5862708719851577,0.1167133520074696,0.7349304482225657,0.9007444168734492,0.8819095477386935,0.7481481481481481,0.1569506726457399,0.5031179138321995,0.7215743440233237,0.6408094435075885,0.5321782178217822,0.1061320754716981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0044612077706128,0.0068714919358931,0.0090534059502519,0.0112305829933979,0.0135962276833453,0.015887421608117,0.0180297910136908,0.0201537863759995,0.0221635019152379,0.0242341575476632,0.026283084950135,0.0284677012948278,0.0304347826086956,0.0322883656595476,0.0342909143554424,0.0365589615555946,0.0385856761833598,0.0407121242057756,0.042746262436839,0.0579280389249692,0.071524232024776,0.084830883432238,0.0979074658254469,0.1108158552402644,0.125918874609974,0.1383257481726658,0.1509299379331637,0.1624353549600376,0.1727944726367625,0.1859888807481791,0.1983976614518486,0.2097923397404518,0.2200306312219669,0.2298538024571755,0.2397721100876755,0.249143099579086,0.2586932547095496,0.2663345098795837,0.2742460353836282,0.2811581456708403,0.2882840734979356,0.2954093940683979,0.3011026902769297,0.3069233662093144,0.3117488590653561,0.3172650640024976,0.3216747705315543,0.3265551320974097,0.3307284803120552,0.3301212267827863,0.3284616336463503,0.327913431868457,0.3272114647655131,0.3267095700251178,0.3250371414130584,0.322880390046223,0.323671021280092,0.3247042306572842,0.3262044527167299,0.327468487394958,0.3279875022246831,0.3276461229274828,0.3280735916202242,0.328563539890999,0.3294564566908646,0.3302932710120557,0.3332809306712781,0.3352049410443571,0.3387411030259653,0.340109639104614,0.3411142567170557,0.3429856798884805,0.3439344011035328,0.343418209151555,0.3480275665399239,0.3499690976514215,0.354924397221087,0.3404848147116188,0.3459915611814346,0.0,1.5701852789504578,57.621231251108505,181.3703517919254,263.18919954777004,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95696,44101,417.4051162013041,6129,63.106085938806224,4819,49.87669286072563,1867,19.24845343588029,77.30793472821749,79.68316030267697,63.31631099018998,65.06974186009978,77.07691138150815,79.45008797656115,63.23157170205396,64.98619221017344,0.2310233467093354,233.07232611581696,0.0847392881360278,83.54964992633995,159.15988,111.48857648981377,166318.21601738842,116502.85956551346,345.87769,223.5085847983561,360935.6608426685,233062.91255471087,358.65465,172.6839717771094,371197.4795184752,177822.00148184848,2758.1116,1263.5758700109252,2854033.104831968,1292279.4996770243,1138.90986,501.0478121601422,1178814.2660090283,512302.450223474,1838.82524,763.3888640334525,1895898.1775622808,776527.3746047788,0.37953,100000,0,723454,7559.918909881291,0,0.0,0,0.0,29515,307.91255642869083,0,0.0,32837,339.5544223374018,1617221,0,58079,0,0,6287,0,0,70,0.7314830295937135,0,0.0,0,0.0,0,0.0,0.06129,0.1614892103391036,0.3046173927231196,0.01867,0.3367915763394239,0.6632084236605761,24.606650197219757,4.310962568202913,0.3208134467731894,0.2492218302552396,0.2035692052293007,0.2263955177422701,11.079412463625776,5.673074146347172,19.868254381680543,12332.447253834016,54.91384197608192,14.398637819228988,17.716318587262244,10.84895205842557,11.94993351116512,0.5590371446358166,0.7893422148209825,0.6875808538163001,0.5759429153924567,0.1081576535288725,0.730098559514784,0.9322799097065464,0.8544152744630071,0.7288888888888889,0.1206896551724138,0.4945714285714285,0.7058047493403694,0.6255545696539485,0.5304232804232805,0.1047729918509895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363627159143,0.0042661424344371,0.0065125432394323,0.0088770618347282,0.0111667073468391,0.0134719563357908,0.0153460248187537,0.0175701888718734,0.0196282892719131,0.0218546232508624,0.0241422083713491,0.026253105813261,0.0283848408494883,0.0302880454938805,0.0323199801869853,0.034560115786209,0.0367208222811671,0.0388500711178479,0.0406853362183755,0.042554522330178,0.0573992249276633,0.0712282023906717,0.0846543638595423,0.0974096315850362,0.1099854519386873,0.1248757481547279,0.1372576059744558,0.1499031440917896,0.1613344300471088,0.1711999656784933,0.1832425214825662,0.1966512714568483,0.2080638323314237,0.2188213946065303,0.2284240511201786,0.2385814911620077,0.2482149232416994,0.2573003374578178,0.2659132684321601,0.2738028427116858,0.2810405306845414,0.2877010351482543,0.2944984967923679,0.3005482179916268,0.3063768715260463,0.3105035225604264,0.3154107485363988,0.3201132061039507,0.3246038646716067,0.3279395045080775,0.3280346236298184,0.3276808117572449,0.3269917437019264,0.3264200677808997,0.3265072083879423,0.3252803215069103,0.3239302543273731,0.3245237036671112,0.3259166566672952,0.3268428870554969,0.3273413727037079,0.3276002140012285,0.3277794099131237,0.328805746380541,0.3304341540982026,0.3320688572624529,0.3330285453038832,0.3357311878845244,0.3382093138294113,0.3430038204393505,0.3462189487167757,0.3495388880004265,0.3533582325758055,0.3529907329401853,0.359240721503447,0.3633879781420765,0.3642846305568199,0.3607937462417318,0.3665499596014004,0.3587729143284698,0.0,1.778524097200043,58.54956417904874,180.24541494079105,261.3379449111165,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95697,44084,417.4634523548282,6249,64.04589485563811,4954,51.08833087766597,1974,20.16782135281148,77.38171245272493,79.75638155275098,63.34258245905804,65.09524721751556,77.13330441930388,79.51155774741024,63.24984696121932,65.00702719622613,0.2484080334210432,244.8238053407437,0.0927354978387242,88.2200212894304,158.4561,110.96433376830414,165580.59291304846,115953.40081950751,346.54736,223.48194604013327,361381.9555471959,232783.7575497385,358.74943,173.55430524256633,370855.14697430434,178225.8458879518,2840.92496,1309.444173605321,2930940.1130651957,1330669.5457593452,1172.09505,522.4314166859269,1209303.248795678,530433.1635229812,1933.02248,815.5536345088133,1976074.380597093,814026.1724618297,0.37841,100000,0,720255,7526.390586956749,0,0.0,0,0.0,29443,306.96887049750774,0,0.0,32846,339.2791832554834,1623488,0,58258,0,0,6188,0,0,69,0.7001264407452689,0,0.0,0,0.0,0,0.0,0.06249,0.1651383420099891,0.3158905424867979,0.01974,0.3317586101798232,0.6682413898201768,24.60075989709365,4.334452004407698,0.3116673395236173,0.2408155026241421,0.2246669358094469,0.2228502220427937,11.215810601841032,5.82470403672915,21.073490922432693,12260.748711752663,56.15863503230175,14.140831409520285,17.44617144015552,12.535856236932853,12.035775945693096,0.5565199838514332,0.7493713327745181,0.7176165803108808,0.5651392632524708,0.1141304347826086,0.7246484085862325,0.8995215311004785,0.8476658476658476,0.7184466019417476,0.1658986175115207,0.4934776575076325,0.6683870967741935,0.6710642040457344,0.5062189054726368,0.1014656144306651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686760654675,0.0044501211365548,0.0069001907699801,0.0089287528188042,0.0112191549524991,0.0136048879837067,0.0158654091256691,0.0176405733186328,0.0197295114645839,0.0221414679086907,0.0243074778044329,0.0262628336755646,0.0281160016454134,0.0303673334844145,0.0323213143175579,0.0344706368899917,0.036560609826829,0.0386443351389494,0.0404996411819155,0.0424157157000677,0.0576820645646429,0.0716731053110964,0.0842225649742411,0.0968576748687629,0.108886662095881,0.1236450545150749,0.1364441756586137,0.1481315873522836,0.1586706406435278,0.1687048121688013,0.1821610612412039,0.1944288065130781,0.2056037155070209,0.2158997737037158,0.2261467385326146,0.2357728077945084,0.2458478801601731,0.2556075502261018,0.2638367383980125,0.2717632778324897,0.2786346543245588,0.2855672995977925,0.2920671369726812,0.2981181829078269,0.3037530222216822,0.3099355379438699,0.3154688184149621,0.3198228015683079,0.3238440616500453,0.3276210076384216,0.3277049753787369,0.3272327562517175,0.3266394596115958,0.3253858358574931,0.3245205844867957,0.3222047436504421,0.3206736389775348,0.3218149972991111,0.3222874648966045,0.3237974863816,0.324776097077576,0.3268160833366215,0.3282015979306172,0.3290825994872366,0.3305035971223021,0.3318378672752262,0.332822521141949,0.3360955627130304,0.3389735896451872,0.3426119963623423,0.3444348654657652,0.3477130425554494,0.352289979757085,0.3546045089797478,0.3563164330730881,0.3537455410225921,0.3602703948379167,0.3603843008994276,0.3598770606314613,0.3584018801410106,0.0,2.609794844198609,58.999959380512415,181.7310049449733,271.0545434432772,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95874,44472,420.0408869975176,6222,63.85464255168242,4889,50.57679871498008,1966,20.20360055906711,77.44506122741345,79.72248933061816,63.40474875222951,65.08390930981156,77.2014453393216,79.47827115755224,63.31498547079477,64.99615248951714,0.2436158880918526,244.2181730659172,0.0897632814347346,87.75682029441612,158.62924,111.11333903052122,165455.4936687736,115894.72185422666,347.15889,223.82790081355307,361664.9978096251,233029.01159047545,357.3985,172.1664719039987,370420.03045664105,177702.8133386683,2812.6098,1288.8911920934904,2909700.899096731,1320582.1352600309,1165.79308,517.5573338145078,1201224.1379310344,525314.472109967,1927.2153,807.2842288595937,1981127.47981726,816098.4437203375,0.38078,100000,0,721042,7520.704257671528,0,0.0,0,0.0,29612,308.404781275424,0,0.0,32708,338.8822829964328,1625083,0,58360,0,0,6238,0,0,47,0.4797963994409329,0,0.0,1,0.0104303565095854,0,0.0,0.06222,0.1634014391512159,0.3159755705560912,0.01966,0.3353238401469913,0.6646761598530088,24.400471877017345,4.408469417984557,0.3176518715483739,0.2315401922683575,0.2227449376150542,0.2280629985682143,11.087831796830306,5.64038501967231,20.940082920820814,12339.689268579048,55.34277170451162,13.431439791786977,17.49222651529535,12.097926091168404,12.321179306260882,0.5536919615463285,0.773851590106007,0.6947842884739215,0.5702479338842975,0.1174887892376681,0.7107692307692308,0.9226932668329176,0.8693467336683417,0.676923076923077,0.1327800829875518,0.4967957648370019,0.6922024623803009,0.6346320346320347,0.5367913148371531,0.1132723112128146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024291989716391,0.0046596906370607,0.0067529886537623,0.00893183386789,0.0112077549942081,0.0133074238740067,0.015379287867677,0.0175594236593349,0.0196877329493816,0.0217382413087934,0.0240013925722652,0.0261932599019547,0.0281206992173859,0.0302612631145854,0.0326282929643633,0.034804508484373,0.0369910753989182,0.0389708625191694,0.0409957748087244,0.0430855989428889,0.057586437002127,0.0717471924784539,0.0847022856006114,0.0972738147705093,0.1096580746975276,0.1245448692917374,0.1368747617635847,0.1490283990098063,0.1602759591392804,0.1701590291303696,0.1833207952713594,0.1965683680851753,0.2078552275909984,0.218955390091054,0.229117469383272,0.2395587861086218,0.2494064670017945,0.2581935440378414,0.2665865629852979,0.2744705438152882,0.2816872094905533,0.2884970652199331,0.2954335738790962,0.3009420524054057,0.3060857957648201,0.3116104407781335,0.3166520595968449,0.3214122079112151,0.3256546130624619,0.3301356486857384,0.3296000646142663,0.3288569386408621,0.3279253187869926,0.3265811842673966,0.3261735819989038,0.3239782681683607,0.3217068938318346,0.3223385118560916,0.3233496228439101,0.3247582136253733,0.3252046193519453,0.325609852372306,0.3263111650383883,0.327681220856295,0.329607062323082,0.3308737561381173,0.332397402081738,0.3354715564177983,0.3377093707559981,0.34298925071135,0.3452310493967676,0.3478584729981378,0.350267548001259,0.352846525170485,0.3533756273080201,0.356246264196055,0.3576076851564921,0.3554216867469879,0.3692911179602129,0.3711137347500984,0.0,1.5255814046816971,57.72946305209325,182.101221171345,269.7267900296838,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95690,44441,419.9289371930191,6017,61.55293134078797,4755,49.17964259588254,1835,18.85254467551468,77.29747507811412,79.70068116954569,63.28577397120039,65.06568197478164,77.0700204178956,79.47442600637476,63.200889194635245,64.984318737512,0.2274546602185125,226.2551631709329,0.084884776565147,81.36323726964179,159.7563,111.89866939697497,166951.46828299717,116938.3024463528,345.9454,223.21204413408915,360974.5218936148,232724.52112902957,354.89189,171.14415906332326,367858.2715017243,176646.25594593,2706.37196,1240.7409674270668,2797778.367645522,1266695.0768045527,1122.60388,493.8780165939865,1159468.199393876,502444.37581875286,1793.89082,751.4973826881811,1842508.3498798204,755907.0395901432,0.38131,100000,0,726165,7588.703103772599,0,0.0,0,0.0,29470,307.3884418434528,0,0.0,32620,337.8722959556903,1612591,0,57874,0,0,6191,0,0,50,0.5225206395652628,0,0.0,2,0.0209008255826105,0,0.0,0.06017,0.1577981170176496,0.3049692537809539,0.01835,0.3280927425758297,0.6719072574241702,24.7988267206874,4.333599361013431,0.3249211356466877,0.2351209253417455,0.2262881177707676,0.2136698212407991,11.275863720575082,5.907145962550111,19.438110224188303,12390.696948263409,53.6644903023299,13.42060285119479,17.28978109091105,11.787718909558969,11.166387450665075,0.5623554153522607,0.7701252236135957,0.6731391585760518,0.5920074349442379,0.1338582677165354,0.724960254372019,0.9051094890510948,0.8575197889182058,0.7520325203252033,0.1351351351351351,0.5038604518158422,0.6916548797736917,0.6132075471698113,0.5445783132530121,0.1335012594458438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023105922412744,0.0047166940539224,0.0070968069445149,0.0096026826542018,0.0116475423177083,0.0138117889118632,0.0161765755841824,0.0183719529008077,0.0207003763704794,0.0228880992124855,0.0249253777271748,0.0271625231148551,0.02928013662692,0.0312963726298433,0.033381517811048,0.0355110991579949,0.0374278340364224,0.0392822653499891,0.0413350395871698,0.0434923083336807,0.0582397492817968,0.0719422954114802,0.0852099817407182,0.0977403269582781,0.1099097008312587,0.1250740584003385,0.1374694830697378,0.1493886853540086,0.1607729075996877,0.1712224345622812,0.1851604205985441,0.1965358017732879,0.2080732825757823,0.2181162834010758,0.2281906567605106,0.238341968911917,0.2483821573470733,0.2580314499414256,0.266855240886526,0.2745358698143479,0.2814154166907974,0.2888188939498612,0.2950072238933232,0.3014448231171698,0.3080366374329469,0.3135658053848622,0.3186477207227526,0.3227755330945613,0.3268906254056439,0.3318830421730563,0.3309488459981104,0.3296077051510259,0.3290516766289372,0.3285768094106739,0.3285202313857867,0.3269808199031803,0.325461102850454,0.3251175824716081,0.325248258359025,0.3262610800612295,0.3269643423581438,0.3296219065979462,0.3298409650624034,0.3307207588341386,0.330962303012885,0.3331949130547625,0.3321882807176924,0.3366231162076636,0.3391295220768315,0.340106740462542,0.3422258518216052,0.3456600982619261,0.3486537257357545,0.3487334593572779,0.3495881692250093,0.3525943396226415,0.3535369034831978,0.3529649868447683,0.3586926668497665,0.3574990410433448,0.0,1.8670535085296325,55.341273945837074,176.3955067160727,262.7952141174646,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95827,44729,422.9079486992184,6228,63.69812265854091,4880,50.31984722468616,1965,20.07784862303944,77.32864418348662,79.63866665327524,63.32870225298407,65.03815701136031,77.08701144398809,79.40183251139226,63.23836585796391,64.95312516993944,0.2416327394985273,236.83414188298,0.0903363950201523,85.0318414208715,159.5363,111.82840716537376,166483.6632681812,116698.22405519712,351.30156,226.9370451254868,366018.3664311729,236238.12195465455,362.01858,175.24782157516725,374652.9892410281,180417.00821188837,2809.31676,1285.3439027618374,2898982.7501643584,1308645.1029061086,1190.71515,523.2320090874606,1226915.2222233815,530374.4132029985,1921.1699,798.8262218043787,1965672.0757197868,798219.7162082131,0.38355,100000,0,725165,7567.439239462782,0,0.0,0,0.0,29899,311.3840566854853,0,0.0,33274,344.04708485082494,1610113,0,57842,0,0,6311,0,0,62,0.6469992799524142,0,0.0,0,0.0,0,0.0,0.06228,0.1623777864685178,0.3155105973025048,0.01965,0.3305683563748079,0.669431643625192,24.37316653257662,4.367239998835505,0.3110655737704918,0.2420081967213114,0.2215163934426229,0.2254098360655737,11.313151070795824,5.930243672465158,20.67670688590074,12445.283853687835,55.26301063967457,14.246985821498749,17.140246877093762,11.973517502306184,11.90226043877588,0.5661885245901639,0.7984758679085521,0.7114624505928854,0.5541165587419057,0.1281818181818181,0.7364341085271318,0.9049773755656108,0.8578680203045685,0.7208333333333333,0.1822429906542056,0.5050139275766017,0.7347767253044655,0.6601423487544484,0.5065398335315101,0.1151241534988713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079303185293,0.0047844949924988,0.006868563891848,0.0090098326019827,0.0113382143583485,0.0133984931785787,0.015839363979207,0.0179411554593976,0.0201933492754511,0.0224607576284714,0.0246111600647554,0.0263946471819711,0.0285696668242451,0.0306471205913236,0.0327513844059686,0.0347830578512396,0.0367369325178769,0.0389743696084936,0.0409776466677746,0.0429044278368757,0.0577460675094922,0.0716429146495749,0.0851458580098741,0.0975345748034806,0.1098356681318449,0.1258681381409951,0.1391896334156919,0.1516499420046183,0.1630887536046139,0.1736468519471607,0.1864129322692858,0.1985608396905264,0.2098440524610131,0.2208800218638972,0.2305982548607519,0.2408154221138932,0.2508822872459236,0.2603069854390252,0.2699559311253464,0.2777669446324314,0.2844884564987998,0.2913656408331769,0.2982451974449694,0.3036823451672974,0.309276343012925,0.3136645196317958,0.3180188537331394,0.3227105853559045,0.3280384141197845,0.3317329312488427,0.3317058696590418,0.330657508172301,0.3302250667570889,0.3296602920067855,0.3288703552014297,0.3277651538414297,0.3261718130176764,0.3264893477117306,0.3263765541740674,0.3277875853706378,0.328719399127161,0.3296373159403103,0.3294833971502103,0.3310106085985483,0.3308650286098956,0.3324192326777925,0.3329061289587605,0.3357840826970811,0.3383403361344538,0.3405088837006846,0.3446816257794365,0.3471904736590293,0.3497126255289585,0.3520036778790897,0.3543537865179162,0.356062424969988,0.3595574677320221,0.3615980432123929,0.3670256835128417,0.3644133644133644,0.0,2.353592005807136,56.337800718014655,183.13218564841767,269.3804293230769,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95750,44347,419.15404699738906,6119,62.83028720626632,4779,49.36814621409922,1853,19.01827676240209,77.35098256499538,79.6994527627462,63.33757887846742,65.07081822739256,77.11426494567618,79.46252781519445,63.249295305249824,64.98488485218424,0.2367176193191937,236.9249475517563,0.0882835732175948,85.93337520832733,159.5187,111.73803810744624,166599.1644908616,116697.68992944776,348.20697,224.6856161975069,363115.1122715405,234114.41268495817,359.4758,173.69825945830542,372079.6971279373,178757.97835550187,2725.04092,1252.6921244227713,2817411.0078328983,1280001.6064092503,1098.6801,483.9801709813698,1136241.9425587468,494257.68248707015,1815.68882,770.2563975879311,1865428.7415143603,777742.2935630243,0.37989,100000,0,725085,7572.689295039165,0,0.0,0,0.0,29673,309.3368146214099,0,0.0,32849,339.7284595300261,1615574,0,57950,0,0,6413,0,0,71,0.741514360313316,0,0.0,0,0.0,0,0.0,0.06119,0.1610729421674695,0.3028272593561039,0.01853,0.3439639079029247,0.6560360920970753,24.67507054178851,4.327898033996585,0.3241263862732789,0.2452395898723582,0.2090395480225988,0.2215944758317639,11.29513024521198,5.881648645648051,19.818928648235715,12349.886034696856,54.16324623955537,13.863505547260132,17.532691477086303,11.122161139809773,11.644888075399152,0.5591127851014857,0.7935153583617748,0.697869593285991,0.5495495495495496,0.1057601510859301,0.7192307692307692,0.9285714285714286,0.8520286396181385,0.6652542372881356,0.1377777777777777,0.4992814027019258,0.7180851063829787,0.6407079646017699,0.5137614678899083,0.0971223021582733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.0043076798329633,0.0066055827828681,0.0089075322986918,0.0110319162997834,0.0132035711740692,0.0154228805007084,0.0175438596491228,0.0200226903382086,0.0224646654862909,0.0248170244172458,0.0271299527817696,0.0292602683390736,0.0311605395942745,0.0332384253528101,0.0353488372093023,0.03726598740888,0.0393483449206184,0.0412122472318968,0.0430144492712858,0.0584796542580954,0.0726293216172394,0.0858077503774534,0.0983641027797636,0.1107936876060762,0.1256686187868665,0.1387816569804437,0.1506576706964073,0.1618826847272222,0.1726901168216779,0.1860693087438463,0.1980993202580421,0.2096033766290277,0.2201175273300285,0.2301213308964393,0.2407910343527951,0.2508014163008634,0.2596617949843048,0.2678885547296147,0.2755075138412866,0.2828286336065194,0.2891986470512505,0.296115758213935,0.301936071308765,0.3074588452386733,0.311975966806614,0.3164180224342541,0.3206652341415656,0.3247928534438115,0.3283745611024578,0.3272602315145471,0.3263798947339414,0.3250998039188026,0.3247933764673527,0.3232752851597936,0.3206179405048353,0.3189910744011288,0.3195125160356567,0.3207176084279655,0.3213482343699789,0.3228875943581771,0.3237331964705185,0.3244199681715387,0.3251910785321593,0.3255858624663849,0.3268939986443506,0.3273270708795901,0.3303257042253521,0.3333566678333917,0.3345483359746434,0.3385378732702112,0.3408692883298838,0.3432807689891311,0.3445715584513978,0.3490875058493214,0.3506401137980085,0.350271107668474,0.3553382233088835,0.3554568175506803,0.3597372488408037,0.0,2.1063251487058547,57.22363955237479,172.53120318705746,265.8278761941335,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95824,44621,421.8776089497412,6204,63.39747871097011,4889,50.2483720153615,1892,19.24361329103356,77.51248185563044,79.79885381354792,63.42745123530996,65.11106084759234,77.2759466675441,79.56854330002092,63.33885955059744,65.0283335144863,0.2365351880863357,230.3105135270016,0.0885916847125258,82.72733310603542,160.8464,112.56735037134384,167856.0694606779,117473.02384720302,350.07906,226.15416220340188,364561.310318918,235235.7783054369,360.0338,173.81645942845046,370896.8316914343,177682.52714730517,2808.46848,1284.2419055279604,2886303.514777092,1295651.30398226,1160.77466,511.4300354427744,1187954.2494573384,510312.826016564,1856.5913,779.9627650320112,1889363.791951912,773379.788088018,0.38216,100000,0,731120,7629.821339121723,0,0.0,0,0.0,29825,310.4337118049758,0,0.0,33040,340.0087660711304,1614618,0,57903,0,0,6261,0,0,59,0.6157121389213558,0,0.0,1,0.0104357989647687,0,0.0,0.06204,0.1623403809922545,0.3049645390070922,0.01892,0.3316923076923077,0.6683076923076923,24.65960450349706,4.3316661969839005,0.3180609531601554,0.2350173859685007,0.2229494784209449,0.2239721824503988,11.11165710868672,5.70876546361749,20.035581167107583,12341.891765140092,55.16800567028126,13.788123060850012,17.50640109572502,12.080637187012837,11.7928443266934,0.5561464512170178,0.7893820713664056,0.6945337620578779,0.5614678899082569,0.1095890410958904,0.7272727272727273,0.9060240963855422,0.8880778588807786,0.6944444444444444,0.1558441558441558,0.4935754189944134,0.723433242506812,0.625,0.5214797136038186,0.0972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021957784388723,0.0045877598971045,0.0066390293840399,0.0088177694797617,0.0112659745220341,0.01319027763653,0.0153936999857465,0.0176517376407244,0.0195848181920292,0.0218836281828407,0.024115508678511,0.0263155195930632,0.0283800168512772,0.0305151031750115,0.0326701030927835,0.0347666215643946,0.0369519552147683,0.0390556960975407,0.0412736339081653,0.0431229242798096,0.0572683089631004,0.0710730493339189,0.0843471973340878,0.0970327188698072,0.1093139577739167,0.1252376727088351,0.1377618078521156,0.14923325605632,0.1606723585912486,0.1707382377826091,0.1840336405579514,0.1962279640511579,0.2076270726330991,0.2188052855738779,0.2289496813887057,0.2390506105114139,0.2486853246579616,0.2581859028362819,0.2660792552408349,0.2743157533855208,0.2821089541737315,0.2888912187507281,0.2952296715608231,0.3014043803291217,0.3064855835572663,0.3127172671326266,0.3172160989476834,0.3220957181393346,0.3261578519960298,0.3301265224695506,0.329014711005118,0.3279406531439052,0.3267143717354469,0.3264343348627152,0.3259040153812024,0.3240422902650007,0.3234913316701929,0.3239302953448417,0.3246408388370668,0.3256910945371046,0.3261775311548306,0.326069394912616,0.3273046238670064,0.328177164478077,0.3288792383497578,0.3301279565723148,0.3314494023228869,0.3344429580312976,0.3374279963911444,0.3394921875,0.341633510662077,0.3435106549262752,0.3482269942446933,0.3524700598802395,0.3536033957737381,0.3543847406373575,0.3560162235241099,0.356718192627824,0.3570462537192318,0.3564467766116941,0.0,3.017787796613016,56.58142148763261,183.2122018862789,263.6420522370923,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95743,44127,417.90000313338834,6206,63.6077833366408,4897,50.62511097417044,1954,20.032796131309865,77.31288813594676,79.67297258799786,63.318020272784125,65.06275786082733,77.07371561490898,79.43385330550825,63.22961619908386,64.9766529593805,0.239172521037787,239.1192824896109,0.0884040737002678,86.1049014468307,160.37912,112.30345156629616,167510.02162037956,117296.77529040884,350.21694,225.80867361279368,365239.5579833513,235299.75414682395,355.84381,171.87439079585624,368733.7037694661,177167.0669093581,2813.94332,1282.401446402018,2910237.4063900234,1310598.9225343033,1175.49871,508.7594868123196,1215492.046415926,519107.7434510304,1914.36556,795.5175444767915,1964784.3079911848,803243.8799858505,0.37976,100000,0,728996,7614.091891835435,0,0.0,0,0.0,29836,311.041016053393,0,0.0,32659,338.134380581348,1610117,0,57841,0,0,6388,0,0,56,0.5848991571185361,0,0.0,0,0.0,0,0.0,0.06206,0.1634190014746155,0.3148565903963906,0.01954,0.3232864137086903,0.6767135862913096,24.61176111673447,4.330902923746064,0.3250969981621401,0.2289156626506024,0.2231978762507658,0.2227894629364917,11.112762343693012,5.775458605253048,20.686151891247132,12314.009618377302,55.57115269233013,13.486834576383838,18.024664355514165,12.31856391799341,11.741089842438711,0.5599346538697162,0.7716324710080286,0.714824120603015,0.5617566331198536,0.1145737855178735,0.7228177641653905,0.907621247113164,0.8465473145780051,0.7014388489208633,0.1225490196078431,0.5006961849067112,0.686046511627907,0.671940049958368,0.5141104294478528,0.1127395715896279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0044699419211627,0.0069095668584299,0.0090297810100353,0.0110657946928936,0.0134114052953156,0.0157540532272866,0.0177741932190585,0.0198233381724497,0.0220456476996958,0.0242794598640432,0.0262979544894438,0.0283651472766167,0.0304375592270611,0.0325086662264773,0.0343337880854934,0.0361281103413997,0.0379870298313878,0.0401613943137621,0.042031779109143,0.057014887974776,0.0708478513356562,0.0849124867602797,0.0971442390595756,0.1093326585054671,0.125241968752975,0.1378589468769234,0.1500425803704492,0.160789633918366,0.1705235164175263,0.1836044746390465,0.1956740388255015,0.2070693891752016,0.2174184093096509,0.2264009770804221,0.2373572322724302,0.2472178504057417,0.256039788902767,0.2653756601737748,0.2731262892505157,0.2801648777889703,0.2874121211412261,0.2944273544723142,0.3001750011986383,0.3051755558255376,0.3106554447881111,0.3161064162754303,0.3210823601251812,0.3247503464711749,0.3291632539829321,0.3285693098008548,0.3270596982046481,0.3266195573985528,0.3263285863146926,0.3251921129445404,0.3238699177005282,0.322814261891527,0.3235177930671231,0.3243155261624919,0.3248915654012976,0.3265490218187968,0.3282868367792372,0.3286512135718485,0.3289299867899604,0.329948871310052,0.3318692810457516,0.334124306707073,0.3381501976284585,0.3422816424439114,0.3436963036963037,0.3463510667521289,0.349339863713799,0.3546157229937787,0.3581838992750858,0.3568527439312364,0.3588738417676407,0.3591288229842446,0.3594067452255181,0.3668622520257055,0.3641221374045801,0.0,2.030567550149327,57.58685452178548,183.6070182661773,269.0889560924808,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95784,44653,422.4191931846655,6209,63.6118767226259,4851,50.10231353879562,1857,19.02196609037,77.37208356525132,79.7107204166842,63.35007434272507,65.07950052973905,77.14234803240117,79.48297955870866,63.26418303504364,64.99669295474497,0.2297355328501424,227.74085797553312,0.085891307681436,82.80757499407798,158.86244,111.34761904016167,165854.88181742252,116248.66265781516,351.0995,226.9064894874721,365992.7127704001,236333.5671819295,362.29532,175.10940306601546,374976.69756953145,180235.5932201529,2765.11748,1267.604484876737,2855831.704668838,1292431.5944118116,1150.23953,506.8885883022207,1186348.1583563015,514776.40372724127,1824.63234,767.6859227922645,1870354.485091456,772098.8284324169,0.38287,100000,0,722102,7538.858264428297,0,0.0,0,0.0,29886,311.4403240624739,0,0.0,33171,343.0635596759375,1618079,0,58089,0,0,6382,0,0,68,0.7099306773573875,0,0.0,1,0.0104401570199615,0,0.0,0.06209,0.1621699271293128,0.2990819777741987,0.01857,0.3379742962056303,0.6620257037943696,24.551455203455923,4.278607205200431,0.3257060399917543,0.240775097917955,0.2131519274376417,0.2203669346526489,11.152999573528216,5.866477553007867,19.72787291714568,12420.485533653418,54.94666353846655,13.996040564761808,17.776234394955473,11.376447979687672,11.797940599061596,0.5642135642135642,0.7868150684931506,0.7031645569620253,0.5696324951644101,0.1103835360149672,0.7392,0.9184149184149184,0.8919597989949749,0.6948356807511737,0.1285714285714285,0.5034712579838934,0.7104194857916103,0.6395939086294417,0.5371498172959805,0.1059371362048894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0045213089493532,0.0068092792920785,0.0092136406578559,0.0113393674361842,0.0136321062062225,0.0158701036602146,0.0179806926954711,0.0202338129496402,0.0223416231706068,0.0245642081962677,0.0265499440675704,0.0287505781980778,0.0306939868204283,0.0327304225874976,0.0347677842640905,0.0369630473035917,0.0390542362335372,0.0412086199372415,0.0429155951649678,0.0585423884459656,0.0725365297520056,0.085752324642786,0.098227326699381,0.1109788345852779,0.1267880913643374,0.1398488750410665,0.1513105428252432,0.1626457815384287,0.1727141250200867,0.1855796540149754,0.1985817136185761,0.209383966611599,0.2197257937549199,0.2297928971304759,0.2406205705173635,0.2514194563119792,0.25997706679857,0.2678433773182787,0.2760310517758593,0.2829715131677866,0.2897708674304419,0.2968890359793863,0.302568093385214,0.3088263845071106,0.3138671754785498,0.3186305792259469,0.3228262389262427,0.3275427181828765,0.3318874591287838,0.33119126682172,0.3299918981640415,0.3293694963015146,0.3283280100588209,0.3281542437836071,0.3263394701804324,0.3242486554887693,0.32436156079319,0.3248533962489955,0.3254373438057836,0.3260841084763526,0.3262148186160344,0.3266676428138139,0.3277631520235599,0.3287766673073227,0.3301795814111085,0.3323435358611238,0.3357057378597972,0.3374719416386083,0.3414643836160661,0.343724438789421,0.3478099676923892,0.3526200188264826,0.3585608884156081,0.3593705832469612,0.3576590451368321,0.3574798356414548,0.3556038742834552,0.3619897269532306,0.3662024840045164,0.0,2.065524033021927,54.75499215766759,187.34021207181445,267.368251103119,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95641,44601,422.5593626164511,6120,62.77642433684298,4800,49.53942346901433,1777,18.16166706747106,77.25911226955019,79.65715086510743,63.27736057920528,65.04679544606228,77.05013292391817,79.45045326400846,63.19909682402508,64.9719048929535,0.2089793456320166,206.6976010989663,0.0782637551802025,74.8905531087729,158.84242,111.23009559922733,166081.7013623864,116299.37181671806,349.00253,225.7483639730424,364237.3040850681,235366.0837643295,363.33331,175.88119005540392,375797.7750128083,180730.65383385963,2710.03984,1239.853346517696,2797501.9500005227,1260334.319504915,1131.06811,499.46861010563566,1162832.1640300709,502535.602556806,1743.0335,724.0896941787148,1783187.335975157,724192.4589774815,0.38158,100000,0,722011,7549.168243744837,0,0.0,0,0.0,29718,310.03439947302934,0,0.0,33255,343.58695538524273,1610646,0,57902,0,0,6282,0,0,59,0.6168902458150792,0,0.0,0,0.0,0,0.0,0.0612,0.1603857644530635,0.290359477124183,0.01777,0.3428929634853471,0.6571070365146529,24.59645996369002,4.335391498915434,0.336875,0.2429166666666666,0.2077083333333333,0.2125,11.1984517541424,5.772999632065094,18.62988093006152,12376.126903516271,54.37323682928419,14.038072715929394,18.308872332123112,10.953473161408972,11.07281861982271,0.57375,0.7830188679245284,0.7142857142857143,0.5667001003009027,0.1186274509803921,0.7400318979266348,0.9154589371980676,0.8710462287104623,0.7361111111111112,0.1502347417840375,0.514946418499718,0.7101063829787234,0.6608623548922057,0.5198463508322664,0.1102850061957868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025222086038714,0.0048266561210314,0.0069727787589062,0.0092566249390343,0.0115468742051986,0.0137188601226244,0.0158553745131227,0.0182426983268168,0.0203126118113697,0.0224374065961062,0.0245650368578078,0.0265014221026583,0.0283774749292877,0.0305958463820669,0.0326109391124871,0.0347826086956521,0.0370347349556101,0.0389561859682994,0.0410131058872477,0.0427643581697438,0.0578522760523345,0.0719866772801541,0.0849522209387798,0.0979634387767996,0.1103800783601398,0.1259598174096315,0.1378936746508046,0.1491225266118978,0.1603109761314056,0.1710551749318098,0.1845375504304114,0.1971760779341807,0.2084177504738252,0.219003374676776,0.2289224389867331,0.2386785119378123,0.249068552312116,0.2581823923488146,0.2665013874357458,0.2742417279411764,0.2818671245910009,0.2888255576665963,0.2954486129897249,0.3028335797838448,0.3070808543840827,0.3122991744525186,0.3178897701034032,0.3218867154624977,0.3266256681716747,0.3315352477656142,0.3305276788604726,0.3289431948256127,0.328125,0.3279409204341013,0.3270816250465896,0.3248065348237317,0.323748651906363,0.3239075395390129,0.3246957742139764,0.3251081013472465,0.3259614663767898,0.3278536286578016,0.3287252314523899,0.3293755986723397,0.3309609393721543,0.3317149162663897,0.3341561684258313,0.336770836598439,0.3394713810607386,0.3417115262824572,0.3459773770044973,0.34908358936328,0.3529337856514637,0.3512471655328798,0.3518311953894776,0.3553113553113553,0.3660429027841168,0.3691936456867082,0.3635105204872647,0.3641640866873065,0.0,2.531789611989971,54.727484520473766,181.4751187788696,265.32689751361465,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95625,44249,419.6496732026144,6052,62.16993464052288,4779,49.45359477124183,1888,19.419607843137253,77.28554750318864,79.71723311257472,63.27381344368565,65.07174616918248,77.04882294649796,79.4801564657536,63.18627527629261,64.98619457885708,0.2367245566906746,237.07664682112292,0.0875381673930348,85.5515903253945,159.02458,111.3303195177208,166300.21437908497,116423.86354794331,343.65428,221.78571250444497,358842.08104575163,231398.8665828559,353.57228,171.49809267033902,366171.9843137255,176657.164728828,2741.60252,1261.1623904760002,2838127.393464052,1290364.2244642642,1155.77008,509.7489312382551,1197018.7503267974,521664.87363675673,1861.13678,785.8428525012062,1916340.7477124184,795911.8854763084,0.37934,100000,0,722839,7559.100653594771,0,0.0,0,0.0,29357,306.42614379084966,0,0.0,32402,335.4248366013072,1616560,0,58040,0,0,6156,0,0,56,0.5751633986928104,0,0.0,0,0.0,0,0.0,0.06052,0.1595402541255865,0.3119629874421679,0.01888,0.3392885375494071,0.6607114624505929,24.546687651934224,4.272401016201204,0.3165934295877798,0.2322661644695543,0.2186649926762921,0.2324754132663737,10.809191781983262,5.396604882783966,20.26706692164812,12305.74075805635,54.25425920582102,13.29812992976869,17.211425837403404,11.631848869095968,12.112854569552962,0.5473948524795983,0.7594594594594595,0.6939854593522803,0.5665071770334928,0.1179117911791179,0.7033962264150944,0.906801007556675,0.8279816513761468,0.7093023255813954,0.1196581196581196,0.4875506658946149,0.6774193548387096,0.6397400185701021,0.5196950444726811,0.1174458380843785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307661126874,0.0045441174978953,0.006893960930837,0.0091070793311988,0.0112623611280673,0.0134156403752712,0.0153522865216105,0.0176834749918273,0.0196888647963097,0.021783435576539,0.024014936243986,0.0260686395396629,0.0278023674729799,0.0298419766830565,0.032091856226832,0.0342887286794443,0.0364359883106385,0.0383221344078762,0.0404171827672707,0.0422538149426845,0.0573354936497151,0.0712264744100264,0.0846406842708081,0.0972999167746489,0.1092451176104016,0.1251932648522715,0.1375715909936139,0.1501071280099773,0.1606835229035813,0.1707081233817162,0.18410348808355,0.1957502168256721,0.2077912171733682,0.2186904214055617,0.2288357017650236,0.2392368394765757,0.2495640314791629,0.2588218057230443,0.2670121369153143,0.2744457436320701,0.2818514486879588,0.2889346901970887,0.294696529564506,0.3001140661583718,0.3048156984953985,0.3098918465109388,0.3148937236815721,0.319716011930558,0.3245280570872527,0.3295098648130773,0.3282574420202945,0.3270990738064764,0.3265127691678535,0.3250267565300396,0.3240784780023781,0.322239263803681,0.3202759495678376,0.3211084614752076,0.32163802684449,0.3227082363890181,0.3231423858438929,0.3238441189244679,0.3247202313592355,0.3255507395325975,0.3275489631336405,0.3290925613397377,0.3304928799932055,0.3334167318217357,0.3352943224144533,0.33989972760649,0.3429725803522789,0.3461843986654663,0.346296412640573,0.3478293810137131,0.3470935130581297,0.3484242709313264,0.3569797533871213,0.358948432760364,0.3673859601201857,0.3569010906355773,0.0,1.9805810753469044,58.62919052992491,172.6534424145322,261.2855824081566,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95824,44650,422.3367841041911,6062,62.145182835197865,4749,49.14217732509601,1909,19.640173651694774,77.35864855579545,79.66315097061617,63.35358995694328,65.05421206316014,77.12017045540026,79.42288018594671,63.265194803530015,64.96723032868584,0.2384781003951985,240.2707846694625,0.0883951534132592,86.9817344742927,159.98312,112.0823559238948,166955.16780764735,116966.8933919423,348.97669,225.50620668488023,363758.7138921356,234907.3996961933,357.27253,172.75081604463122,370167.4945733845,178240.20888427977,2736.61428,1260.7671612946608,2832511.4376356653,1292347.0542814531,1132.99926,503.9208139156882,1174162.7358490566,517705.712237844,1868.93986,786.752423016203,1924302.3459676076,798389.5163136123,0.38289,100000,0,727196,7588.87126398397,0,0.0,0,0.0,29638,308.8579061612957,0,0.0,32777,339.36174653531475,1612922,0,57922,0,0,6428,0,0,75,0.7826849223576557,0,0.0,0,0.0,0,0.0,0.06062,0.1583222335396589,0.3149125701088749,0.01909,0.3382794001578532,0.6617205998421468,24.58279557293871,4.347926298626395,0.3268056432933249,0.2377342598441777,0.2109917877447883,0.224468309117709,11.360342486689762,5.987950636752753,20.39613553848808,12379.679098145236,54.06004764773415,13.490615816604524,17.683720112799424,11.103452741205496,11.782258977124709,0.5632764792587913,0.7812223206377326,0.7016752577319587,0.5798403193612774,0.1153846153846153,0.723159509202454,0.8880778588807786,0.8551724137931035,0.7587719298245614,0.1434782608695652,0.5027576197387518,0.7200557103064067,0.6418979409131602,0.5271317829457365,0.1076555023923445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022164645871708,0.0045984462518611,0.0068736883725174,0.0090819608917572,0.0112876678926299,0.0133157011342251,0.015503402192071,0.0174737078330766,0.0197168134360378,0.021901020888316,0.024264585381842,0.0263095812007015,0.0284179055407724,0.0306042644274306,0.0327772507939126,0.0348777162686937,0.03664997309714,0.0386995780678201,0.0408002160500238,0.0428287371040111,0.0577851963903813,0.0722948248823836,0.0857196763238438,0.0988092860971277,0.1108874579772154,0.1258705048135349,0.1388241031295055,0.1501877479815762,0.1613426716774854,0.1726670383394802,0.1854455797327706,0.1975661203959111,0.2088752120394937,0.2189841707415794,0.2285943916590516,0.2401055116539395,0.2501283568096077,0.2588063227766214,0.2670706658041966,0.2752291475710357,0.2820352558537912,0.2889099592639416,0.2953170327393286,0.3012146428614252,0.3065514181163913,0.3121246871108152,0.317643231610425,0.3221485900354876,0.3258301818370201,0.3303415870334196,0.329418736195658,0.328879654346809,0.3284767093204949,0.3274619926945122,0.3266745878508837,0.3252023811345585,0.3245048838792407,0.3251733315808497,0.3260516276921498,0.3262671655954022,0.3269859154929577,0.3271531574360193,0.3277713565199117,0.328993288590604,0.3308536761519572,0.3309017700734698,0.3321136584529186,0.3355121889604648,0.3382073144951025,0.341863987881687,0.3447475069441282,0.3458426487810071,0.3510054844606947,0.3493837556457169,0.351881392511964,0.3539948149893943,0.3587389041934496,0.3625076328109098,0.3721320649132624,0.3790927021696252,0.0,1.6204594493299809,57.931888558859605,177.46469156428498,256.56222059893423,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95858,44613,420.7473554632894,6175,63.07246134907884,4823,49.6985123828997,1936,19.747960524943142,77.41454581429173,79.70343266300684,63.37712166936033,65.06826855902587,77.17775288407417,79.46909318634106,63.28901730386195,64.98331554637804,0.2367929302175611,234.3394766657809,0.0881043654983813,84.95301264782995,160.1347,112.11581166314464,167053.85048717895,116960.10442396716,348.81103,225.432807303762,363239.9904024703,234533.54868556667,359.48798,174.82576322386618,371022.8880218657,179236.27658009582,2761.65764,1277.5955061454713,2847276.6383609087,1299292.776136028,1152.22958,513.3302964032382,1187515.272590707,521009.3121108706,1894.03334,794.4592809794169,1934616.0779486324,795895.1022218656,0.3829,100000,0,727885,7593.356840326315,0,0.0,0,0.0,29676,308.93613469924264,0,0.0,32989,340.2115629368441,1613264,0,57991,0,0,6364,0,0,66,0.6885184335162428,0,0.0,1,0.0104320974775188,0,0.0,0.06175,0.1612692609036302,0.3135222672064777,0.01936,0.3305555555555555,0.6694444444444444,24.698160477684542,4.324992725586272,0.3334024466099938,0.2330499688990255,0.2135600248807796,0.2199875596102011,11.324248545370017,5.94698201955176,20.494734315411744,12390.67774646746,54.55238086528437,13.510840370871795,17.993931045009948,11.517383435630698,11.530226013771925,0.5635496578892806,0.802491103202847,0.679726368159204,0.5776699029126213,0.120640904806786,0.7423904974016332,0.9369565217391304,0.8444444444444444,0.7751004016064257,0.1459227467811159,0.4942462600690449,0.7093373493975904,0.6242726517040732,0.5147247119078106,0.1135265700483091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026623475223971,0.0049338939263461,0.0073516736465315,0.0094613526079629,0.0114239251956499,0.013746578618016,0.0162489812550937,0.0184728059080337,0.0205422080575304,0.0227579576139432,0.0249008983170639,0.0272030690642021,0.0292839308282728,0.0314349531151894,0.0334460574067964,0.0355091923156372,0.0372976048833479,0.0392666901569009,0.0415961632288671,0.0437595564755198,0.0580016890659048,0.0718234353609982,0.0852617354047287,0.098372532549349,0.1107296679689556,0.1267083500559768,0.1397290168119749,0.1513679556131885,0.1620061665830941,0.17221252396303,0.1853792361484669,0.1973704128192375,0.2094304560915443,0.2199151986711544,0.2294993680276968,0.2401868021203368,0.2498076344050048,0.2589658001506007,0.266677251797582,0.2748276888553044,0.2817173457939601,0.2880745530442103,0.2952050905994228,0.3012868131604802,0.3065454854740526,0.3121556155467623,0.3169022018050044,0.3218943644946622,0.3259657765102411,0.3307184363444268,0.328947722804277,0.3274733135248157,0.3272934617334009,0.3265665607854461,0.32558001454675,0.3237566356112411,0.3231111953739691,0.3243376099886939,0.3237807686402947,0.3247752158817769,0.3256934715606612,0.3273917501380235,0.3274644945697577,0.330060120240481,0.3316713011794036,0.3323034583030428,0.3342315765586883,0.3356643356643357,0.3375515626092428,0.339630113658865,0.3421088343058759,0.3472273518704163,0.3506849315068493,0.3525920360631104,0.3552949934859483,0.3581001645897014,0.356391893950937,0.3589691558441558,0.3662010408107368,0.3759939416887543,0.0,2.273358397914562,58.94583818876288,172.40375910268853,263.0858156241212,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95715,44175,418.6073238259416,6149,63.10400668651726,4838,50.02350728725905,1894,19.464033850493653,77.36002699221102,79.73361128278617,63.33690834044432,65.08913435177033,77.13666934782601,79.50894027027675,63.254350182030414,65.00831979383791,0.223357644385004,224.67101250941823,0.0825581584139101,80.81455793241332,158.49196,110.94921036692048,165587.37919866267,115916.22041155562,346.82857,223.847169367335,361824.5416078984,233337.4699549025,357.56511,172.57916664890118,369991.0149924255,177539.21025973963,2764.31972,1264.2022746228783,2859309.449929478,1292034.262783136,1143.41202,502.32047163740936,1182449.971268871,512657.8296373704,1849.53112,767.0643307193611,1902452.2175207648,776293.484312926,0.37873,100000,0,720418,7526.699054484668,0,0.0,0,0.0,29529,307.95591077678523,0,0.0,32770,338.8183670271117,1622657,0,58226,0,0,6243,0,0,67,0.6999947761583869,0,0.0,0,0.0,0,0.0,0.06149,0.1623584083647981,0.3080175638315173,0.01894,0.3301842961127458,0.6698157038872541,24.42162100838532,4.305509377143351,0.3269946258784622,0.239561802397685,0.2168251343530384,0.2166184373708143,11.271458073198604,5.964746507658688,19.90713721478865,12296.429937008672,54.75445307180658,13.695972603073372,17.94423233248171,11.65655496759602,11.457693168655494,0.572964034725093,0.7981018119068162,0.6965865992414665,0.6015252621544328,0.1087786259541984,0.7576711250983478,0.9347826086956522,0.902439024390244,0.773109243697479,0.1308411214953271,0.5071488645920942,0.7345132743362832,0.614500442086649,0.5511713933415536,0.1031175059952038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334180753765,0.0046325862401038,0.0068295059009772,0.0094069363457201,0.0114121811302331,0.0134108590281454,0.0154332313965341,0.0173304211149441,0.0195859953999488,0.0215606380147013,0.0239086304824786,0.0257792287791055,0.0278577598617909,0.0299937169754962,0.0319854724047916,0.0339640198511166,0.0359799432277313,0.0380930633258254,0.0400241309729358,0.042003584528176,0.0573541083587451,0.071337366294769,0.0842048947307688,0.0968617222666274,0.1088831256457292,0.1251427121654192,0.1369547691785471,0.1489123957091775,0.1592746457062913,0.1697075007240081,0.1826221843996079,0.1948538163561211,0.2061582270914169,0.2165486029122392,0.2263279445727482,0.2371184262992335,0.2471550339164584,0.2567496148699553,0.265203392136411,0.2733059336683877,0.2811043923645235,0.2889429032182672,0.2953626410007803,0.3010665166441233,0.3063374725368097,0.3114842903575298,0.3159329664832416,0.3210337729663795,0.325400007760862,0.3295144427891524,0.3287217721314564,0.3279259198106717,0.3270897636463574,0.3265332677905329,0.3261063393467471,0.3247872405559297,0.3229426828111663,0.3243442381373416,0.323768115942029,0.3245953021209908,0.3254953271028037,0.3250867371077117,0.3257327631167205,0.3266737939329146,0.3280149489722581,0.3278858894749149,0.3281836804370092,0.3323157298420092,0.3365898228844532,0.3381808040160962,0.3407647676915346,0.3435987447476198,0.3468324229296163,0.3507440024293957,0.3531057638500279,0.3546107643387116,0.3597570235383447,0.3646608975649024,0.3681318681318681,0.3643351268255188,0.0,2.077609952737662,55.83224626307325,183.7870600050929,264.7625126411572,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95742,44239,420.2335443170186,6090,62.30285559106766,4817,49.633389734912576,1940,19.75099747237367,77.33346816806463,79.69653396341882,63.32120940122799,65.0708300453754,77.0923593093678,79.46036399208278,63.23114392624336,64.98543077514977,0.2411088586968333,236.16997133603945,0.0900654749846268,85.39927022563631,159.7145,111.87462256763251,166817.59311482945,116850.09981787777,348.4758,223.9796146618087,363309.6342253138,233276.64417059257,354.8963,171.09030300997117,367342.4724781183,175950.74287955434,2762.21936,1266.214951714758,2848692.5696141715,1286418.3585809714,1142.06723,505.8148699252959,1176669.5389693135,512216.5521738498,1903.06316,796.801463639786,1941750.2454513167,794868.9301340147,0.3799,100000,0,725975,7582.617868855883,0,0.0,0,0.0,29601,308.4748595182887,0,0.0,32516,336.16385703244134,1617501,0,58044,0,0,6252,0,0,74,0.7729105303837396,0,0.0,1,0.0104447368970775,0,0.0,0.0609,0.1603053435114503,0.3185550082101806,0.0194,0.33453125,0.66546875,24.6187659243828,4.39788204813745,0.3145111064978202,0.2291882914677185,0.2296034876479136,0.2266971143865476,11.30357710859721,5.864541388192689,20.600152170300625,12289.764450621911,54.53204996411078,13.1392367786371,17.115525203982767,12.27597068712046,12.001317294370455,0.5574008719119784,0.7898550724637681,0.7122112211221122,0.5560578661844484,0.1089743589743589,0.7252146760343482,0.9316455696202532,0.8911917098445595,0.6992481203007519,0.1324786324786324,0.4966063348416289,0.7108603667136812,0.6510186005314438,0.5107142857142857,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020264451086681,0.0042185535228978,0.0063029048170026,0.0087788819118453,0.0107503915705538,0.0126872282581026,0.0145883456347102,0.0165948847747545,0.0187441232983116,0.0207691441556713,0.0229334754928595,0.024813921256609,0.0270456485299713,0.0291143151390319,0.0309724013412432,0.0330756191342456,0.0349469324359306,0.0370647075914165,0.0388306112052564,0.0407548977742597,0.0554297107425076,0.0697869133838489,0.0827798239262966,0.0957835063473532,0.10792967802491,0.1233411232248035,0.1360622168465056,0.1478990165609434,0.1592933586824172,0.169960855809963,0.1835349628879528,0.196122135422302,0.2076785034531513,0.2177279985999606,0.2274562436056809,0.2377213479662011,0.2483002690542909,0.2568232208979077,0.265692751254285,0.2741150467814157,0.2819400585302657,0.2883445629795995,0.2952348270598398,0.3013815166728573,0.3072833857245154,0.3128662169481511,0.3176800070014878,0.3220881900573273,0.3275192795403964,0.3310195571273984,0.3301048037287496,0.3289374166311418,0.3276779680108132,0.3269202971871296,0.3252809656894809,0.3242273180458624,0.3226430349244598,0.3233790779850439,0.3246751025991792,0.3251510709049952,0.3257955035532804,0.3270861751972006,0.3273602679505966,0.3270154891486556,0.3274600423647217,0.3304666056724611,0.3306954368185829,0.3355244535304293,0.3386189438154841,0.3415243153263842,0.3456941604180868,0.347135955831608,0.347984886649874,0.3490148159462349,0.3519147330692322,0.3520536462699078,0.354336773994762,0.3556193601312551,0.356341189674523,0.3688080495356037,0.0,2.634222391725554,55.7286231310914,178.6670608444405,266.59766372532,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95802,44469,420.1164902611636,6224,63.79825055844345,4918,50.80269722970293,1931,19.769942172397236,77.34149214859087,79.679997122694,63.33904717832892,65.07203151331231,77.09596380935952,79.43552678629023,63.248274215724,64.9841967037955,0.245528339231356,244.47033640377924,0.090772962604916,87.83480951680644,158.57798,111.13835358716692,165526.7948477067,116008.3856152971,349.53974,225.65874344665812,364336.3082190351,235026.9028273503,365.4097,176.7257968076833,377980.0004175279,181833.2673333807,2804.7394,1290.6856430844382,2899824.638316528,1319425.735459008,1171.50424,518.5614963360655,1210150.2995762094,528597.2317979195,1885.12122,795.0597145305543,1932583.014968372,800159.5153905526,0.38183,100000,0,720809,7523.945220350305,0,0.0,0,0.0,29731,309.7847644099288,0,0.0,33443,345.67128034905323,1621329,0,58155,0,0,6362,0,0,73,0.76198826746832,0,0.0,0,0.0,0,0.0,0.06224,0.1630044784328104,0.3102506426735218,0.01931,0.3505217925107428,0.6494782074892572,24.25407760155008,4.350195464434702,0.3298088653924359,0.2326148840992273,0.2214314762098414,0.2161447742984953,11.238993222451851,5.863808819093877,20.692770341409343,12371.546016540964,55.92319813996361,13.725537539071617,18.13634106265039,12.348258529313762,11.71306100892785,0.5766571777145181,0.7972027972027972,0.6960542540073983,0.6134067952249771,0.1194731890874882,0.7424242424242424,0.9280575539568344,0.8765432098765432,0.7372262773722628,0.1607142857142857,0.5158421345191774,0.7221458046767538,0.6359901396877568,0.5717791411042945,0.1084624553039332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025932716755979,0.0051093336577354,0.0072149779288649,0.009450067064992,0.01159892150379,0.0137820741359464,0.0161145561357702,0.0183806635419538,0.0204718129109445,0.0225273656293838,0.0246798388171723,0.0267913988211373,0.0286252082861903,0.030729767595187,0.0326777828222378,0.0347090865866641,0.036717957214157,0.0390460481955207,0.0412514677002047,0.0432121256285068,0.0575935895830724,0.0720925126253385,0.0853540963678662,0.0982839969315805,0.1101650262398044,0.1255562249632706,0.1379551598028303,0.1498101851359542,0.1610279835215266,0.1711912544879695,0.1843252494591016,0.1969230103899754,0.208633484359551,0.2191765850246456,0.2286216944306998,0.2401155902966153,0.2502758920509648,0.259649398632183,0.2682462737280841,0.2759566902575946,0.2827321849166397,0.2895520297012364,0.2965138265185535,0.3024282824897973,0.3075961958367703,0.3122777224006596,0.3163366027363029,0.3212902406502,0.3257950712688833,0.3301563898688852,0.3294465738686033,0.3282435404068169,0.3273060132375722,0.3256459164210161,0.3249739854318418,0.3230356869352121,0.3217103387091664,0.3225196487881877,0.3239643957548784,0.3248447538431253,0.325448122956672,0.3267114732647356,0.3274060995859343,0.3283592137151063,0.3304816452790062,0.3308010687902761,0.3318578983674408,0.3339585452695829,0.3375904640272456,0.3396732601905982,0.3449134948096886,0.3458666809904925,0.3469621704241498,0.3453687954229163,0.3463809523809524,0.3484141232794733,0.3531610090314543,0.355244178858438,0.3501683501683502,0.3538461538461538,0.0,2.076723631935213,58.00063978183345,183.1514145611948,272.6976581374549,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95708,44402,419.4633677435533,6220,63.86091026873407,4871,50.37196472604171,1904,19.60128724871484,77.3419109081298,79.7121031047427,63.33255108723839,65.0815402937718,77.10445109446772,79.47139646461758,63.24491796733951,64.99405788720789,0.2374598136620846,240.70664012511145,0.0876331198988751,87.48240656390749,160.08938,112.1461725811647,167268.5459940653,117175.33809207664,349.15938,225.95839219741416,364295.8686839136,235569.965099484,364.96613,176.7377940403159,377551.8974380407,181733.345878334,2807.2138,1303.230716254171,2905236.218497931,1333957.3430591836,1167.89146,524.0178238214464,1205589.2610858027,532909.9685941051,1877.76382,789.9806218223634,1935222.3011660464,804516.7741673386,0.38019,100000,0,727679,7603.115727002967,0,0.0,0,0.0,29767,310.4756133238601,0,0.0,33479,346.00033435031554,1610701,0,57832,0,0,6297,0,0,50,0.5224223680361099,0,0.0,1,0.0104484473607221,0,0.0,0.0622,0.1636024093216549,0.3061093247588424,0.01904,0.3433225756877209,0.656677424312279,24.267729629950683,4.318954593464643,0.3180045165263806,0.236091151714227,0.2137138164647916,0.2321905152946007,11.017711591493358,5.622118705581109,20.422869736653205,12364.680371048344,55.68565910225585,13.750714631258887,17.940998162523023,11.627357057673466,12.36658925080045,0.5579963046602341,0.7860869565217391,0.6998063266623629,0.5725264169068204,0.1184792219274978,0.7240618101545254,0.912718204488778,0.8577680525164114,0.7352941176470589,0.1939163498098859,0.4937357630979498,0.7182910547396528,0.6336996336996337,0.5242839352428393,0.0956221198156682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0045403871490828,0.0065733414485696,0.008917689120013,0.0112864521901818,0.0135415818196627,0.0157802990917153,0.0180350289866906,0.0202677841373671,0.0225265334111169,0.0244182470527934,0.0267278645432235,0.0289683682283739,0.0312165169372784,0.033423108276837,0.0353942050258944,0.037302458524057,0.0394446001058497,0.0417355500795408,0.0436313996019299,0.0581391705742901,0.0717822041260637,0.0854630911914054,0.0981247962306616,0.1104407716404214,0.1254218639244189,0.1384032757669623,0.1503161525196397,0.1614874320325602,0.1724197112393538,0.186012449652142,0.1978422715664632,0.2092401057130738,0.219960202051125,0.2294477987836396,0.2404162284828693,0.2493922430135825,0.2584670031361352,0.2675112280542576,0.2758794314878813,0.2825184208395507,0.2883938078466705,0.2942151303874336,0.3005465135789448,0.3053195756006854,0.3108339809298252,0.3165156584834016,0.3213222004429397,0.3257350084185986,0.33020845694395,0.3291004578507945,0.3278742626129285,0.3266428491054349,0.3255954871380549,0.3253636093796379,0.3232905623441968,0.3214511539677521,0.3221156211562115,0.3224544864569457,0.3243450775906712,0.3246013454007158,0.3263886143506622,0.3278767655144914,0.3283297860423435,0.32952027742992,0.3304640425698411,0.3309642061996917,0.3340162642627498,0.3378697598984592,0.3400015971889474,0.3415570175438596,0.3448588655888159,0.3465966599190283,0.3501647383342273,0.3525125390366234,0.3531722413998333,0.3518149793230203,0.3560885608856088,0.3620352250489236,0.3667180277349769,0.0,2.052742979807191,59.92778966133924,184.43073206623225,259.010711550399,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95715,44610,421.8043148931724,6293,64.59802538787024,4897,50.63992059760748,1948,20.017761061484617,77.33810060160408,79.72152618191802,63.31256206328344,65.07527157316855,77.10356011217563,79.48652427134739,63.22648519341945,64.99108522032655,0.2345404894284541,235.0019105706309,0.0860768698639873,84.18635284199638,158.96518,111.40740286890336,166081.78446429505,116394.92542329138,347.76555,223.93761121114952,362818.1894164968,233446.7006571286,363.05881,174.94939392505012,376460.5025335632,180542.00974348967,2810.74316,1291.1400388549928,2907495.502272371,1319863.97755838,1167.34193,519.804645160497,1205209.3611241707,528682.9182056074,1906.14934,785.9469557774855,1959715.488690383,794625.5541900855,0.38223,100000,0,722569,7549.17202110432,0,0.0,0,0.0,29570,308.3947134722875,0,0.0,33472,346.74815859583134,1617286,0,58058,0,0,6326,0,0,54,0.5641748942172073,0,0.0,1,0.0104476832262445,0,0.0,0.06293,0.1646390916463909,0.3095502939774352,0.01948,0.332476564862413,0.6675234351375869,24.609639853761752,4.319324900525262,0.3167245252195221,0.2395344088217275,0.2236062895650398,0.2201347763937104,11.497565632220889,6.074548274641802,20.47968854107439,12393.864978224896,55.678878356026175,14.19734941258303,17.592535858034744,12.139078624814957,11.74991446059344,0.5742291198693077,0.7860187553282183,0.7163120567375887,0.5954337899543379,0.1178107606679035,0.743202416918429,0.9134396355353076,0.8722358722358723,0.7723577235772358,0.1637931034482758,0.5116148894486426,0.7098092643051771,0.6608391608391608,0.5441696113074205,0.1052009456264775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023311913401309,0.0043822276323797,0.0068836680406928,0.0091164095371669,0.0112636216562713,0.0137198382546165,0.0160128919078799,0.018333724861348,0.0204837142711049,0.0223519172682127,0.0245182989981439,0.0267797549981003,0.0288613790125233,0.0309864376409527,0.0329798427861107,0.0353832322334631,0.0373879190739475,0.0393310301181694,0.04119970890945,0.043303436565726,0.0576459162254456,0.071882425600067,0.0856687196382293,0.0983435873166114,0.1100518834099633,0.1257510366421257,0.1382277728849888,0.1508933705304853,0.162235236283583,0.1733630872555225,0.186015191509993,0.1984995615601961,0.2102920208539678,0.2198660714285714,0.2295891978739091,0.2390699633171899,0.2486962736317852,0.2582692762202739,0.2675886814734069,0.2758395415472779,0.2825996341152768,0.2895959915241339,0.2969257004808034,0.3019419803404459,0.3072576136888413,0.3126959054224152,0.3177055918991402,0.3227130222006984,0.3259942721629712,0.3295538542766631,0.3283843264998452,0.3273750550418318,0.3272158762799476,0.327261170420236,0.3266179354608665,0.3248295411016624,0.3236010887454108,0.3244932099980319,0.325222825530171,0.3261195361284567,0.3270973782771535,0.328343471048266,0.327603915567946,0.3286450167973124,0.3297729022324865,0.3307105017139295,0.3332008290979301,0.3361249647125247,0.3381740560590685,0.3413246968679648,0.3430620714543486,0.3458587344965314,0.3493159203980099,0.3512579797221179,0.3543307086614173,0.3596203421607687,0.3647836538461538,0.3666137356093688,0.3632928475033738,0.3570889894419306,0.0,2.0156554530197464,58.30526623318909,186.29896066499407,263.6995015152388,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95662,44462,420.4072672534549,6259,64.34111768518325,4918,50.9397670966528,1924,19.777968263260227,77.27782633283482,79.6880348299692,63.2892740309558,65.07193482842337,77.04441462667997,79.453081185816,63.202450686657485,64.98637477189014,0.2334117061548539,234.95364415319384,0.0868233442983097,85.56005653322529,161.38078,113.00126014543416,168698.94001797997,118125.5463459202,349.73643,225.4879828656005,365146.36950931407,235263.608188832,364.2711,175.75354470896664,377626.7901570112,181329.66960825556,2812.7852,1287.749195551108,2913993.727917041,1319801.6720862074,1177.24198,515.8918610013401,1217755.0333465743,526414.5648233778,1895.90444,795.186884140213,1950696.138487592,806288.6581570853,0.38062,100000,0,733549,7668.1336371809075,0,0.0,0,0.0,29809,311.1266751688236,0,0.0,33365,345.602224498756,1603345,0,57613,0,0,6337,0,0,53,0.5540339946896364,0,0.0,0,0.0,0,0.0,0.06259,0.1644422258420471,0.3073973478191404,0.01924,0.3321106526058383,0.6678893473941617,24.566176220236272,4.314221047238298,0.3096787311915412,0.2429849532330215,0.2204148027653517,0.2269215128100854,11.194239391217556,5.735551450284849,20.52133498137441,12374.200863721017,55.9190647583654,14.335088634187906,17.26014543507036,12.194897455564115,12.128933233543007,0.5614070760471737,0.7757322175732217,0.7005909389363099,0.5950184501845018,0.1093189964157706,0.7293404094010614,0.9235955056179777,0.8804347826086957,0.7376425855513308,0.1358024691358024,0.4998610725201445,0.688,0.6432900432900432,0.5493300852618758,0.1019473081328751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394260584074,0.0045026772675644,0.0067407061498791,0.0091669461467321,0.0113840988860064,0.0135899186031112,0.0157572667006629,0.0180170978581715,0.0203044127575131,0.0223927228772497,0.0246153846153846,0.0266755687946176,0.0285640788187477,0.0306721909591243,0.0330683460664877,0.0352270729260396,0.0373137421507471,0.0394766898556743,0.0415496035462321,0.0436332926714835,0.0579408783607276,0.0718624329758713,0.0854980740367559,0.0981689992633905,0.1107101403397699,0.1268033489632397,0.1395319203160175,0.1514696325652252,0.1626029301678964,0.1728680006870491,0.185050696606937,0.1968256717839897,0.2088462250084348,0.21896268738374,0.2285006605019815,0.2389769843644382,0.2488917672543743,0.2580641530669668,0.2669996027467227,0.2747787458640074,0.2819486693114655,0.2886454509317932,0.2951719568895146,0.3007599002780707,0.3058043037144141,0.3108518143917902,0.316397199714461,0.3210693825588797,0.325514451316762,0.3302428780855026,0.3297717338513841,0.3291378572710084,0.3278748746061574,0.3271278522274538,0.3264941218541862,0.3244948719523429,0.3226861406572471,0.3226502412753833,0.3234266333207715,0.3231824122312333,0.3247940243604902,0.3266514806378132,0.3276502044668135,0.3285468250240443,0.3305103096504102,0.3300234558248632,0.3313351031943136,0.3339440267862783,0.3385977337110482,0.3427256353812287,0.3458505272810637,0.3497416227158915,0.3529189257344597,0.3551201591917955,0.3604376945571172,0.3641680592026736,0.3664251580083243,0.3701578192252511,0.3736416829200334,0.3758673862760215,0.0,1.8179186897228377,58.38754060800202,185.22942330071777,269.2212840705351,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95818,44406,418.8044000083492,6201,63.62061408086164,4908,50.648103696591456,1885,19.30743701600952,77.39792083527668,79.70288922376292,63.37134666233783,65.07207463299024,77.16723207422577,79.47355086818014,63.28572108538841,64.98965371238006,0.2306887610509136,229.33835558278304,0.0856255769494183,82.42092061017559,160.04758,112.06369777032924,167032.8956980943,116954.74521523016,351.23788,226.74628213856704,365979.3880064288,236054.48922630007,362.45075,174.90589156933,374559.9156734643,179742.6282729892,2811.1658,1284.987295418329,2901178.3172264085,1308567.602274239,1156.3329,504.148214562396,1194738.0972259908,514254.023600906,1853.15128,774.3827249568596,1899875.1800288048,778663.1478985318,0.38122,100000,0,727489,7592.404349913378,0,0.0,0,0.0,29866,311.08977436389824,0,0.0,33257,343.4114675739423,1614029,0,57880,0,0,6382,0,0,55,0.5740048842597424,0,0.0,0,0.0,0,0.0,0.06201,0.1626619799590787,0.3039832285115304,0.01885,0.3260568793235972,0.6739431206764027,24.73811549036481,4.345702734336275,0.3162184189079055,0.2410350448247758,0.2214751426242868,0.2212713936430317,11.11579339701181,5.699123739845165,20.10144853406601,12399.354847638053,55.51330063045858,13.996659534609892,17.550153336521507,12.135762691548477,11.830725067778706,0.5696821515892421,0.790363482671175,0.7036082474226805,0.594296228150874,0.1132596685082873,0.7299382716049383,0.9396135265700484,0.8521303258145363,0.7374517374517374,0.1160714285714285,0.5121816168327796,0.7100130039011704,0.6522116218560278,0.5495169082125604,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025208552684862,0.0049549595192979,0.0069983264871443,0.0093823299452697,0.0115179733246584,0.0138812562333353,0.0162417721261029,0.018281050752359,0.020700083781188,0.0227742423932393,0.0251009159272995,0.027350883312473,0.0295583204052068,0.0316130692050424,0.0337452716422217,0.0356519674145354,0.0375539255749474,0.039510369917393,0.0417661841367422,0.0437755643675648,0.0584400004172795,0.072067360493698,0.0848634194935248,0.0971906804609302,0.1098274426302086,0.1257928788903924,0.1386019977519988,0.1508259185150496,0.1617510388514415,0.1722096502611512,0.1854747520434206,0.1978065953557793,0.2098506424332021,0.2203006285870456,0.2297711854156816,0.239948191117212,0.2486313512549199,0.2573432704953967,0.2662865434100003,0.2735062290505989,0.2821227113001665,0.2891690129326962,0.2964491374111693,0.3022916292706276,0.3083468690150064,0.3134862554578439,0.3190524948803756,0.3231814142440015,0.3272062150179031,0.3320041061276058,0.3309848759343505,0.3297117851214727,0.3280784578204912,0.3273248609550157,0.326156536170465,0.3252403479322447,0.323871436009909,0.3236960151926918,0.3244689918516246,0.325227313246568,0.3258853446019221,0.3263647838434838,0.327276529012023,0.3281358358873403,0.3280497205627288,0.330055043956904,0.3304452260444368,0.3335544185458909,0.3378687198959322,0.3412194347411876,0.3435888072305655,0.3458586504637032,0.3477162170699349,0.3475833588253288,0.3515817389657132,0.3521210676835081,0.3546949439065621,0.3599757183326588,0.354997269251775,0.3569254185692542,0.0,2.147034562167688,56.94253035263676,182.1702022074881,272.6054163134924,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95551,44335,419.9118795198376,6240,64.10189322979352,4904,50.70590574666932,2056,21.11961151636299,77.19945181010942,79.6720827705257,63.224607941291474,65.05435812785983,76.93728298894979,79.41003954381789,63.12616384605426,64.9589023982427,0.2621688211596336,262.0432267078172,0.0984440952372125,95.45572961712878,159.13854,111.44518581121258,166548.04240667287,116634.02665928417,348.46282,224.4945505144195,364084.0702870718,234344.21356806267,356.42188,172.1092988375804,369854.4546891189,177680.57155276867,2835.8214,1309.0253167033225,2931971.8265638244,1334135.2750921734,1207.10726,529.7820143579936,1249899.9487184854,541037.4086697084,2016.0437,855.4023689381163,2071835.417735032,861756.3283605066,0.37985,100000,0,723357,7570.365563939676,0,0.0,0,0.0,29642,309.5833638580444,0,0.0,32632,338.2905464097707,1610585,0,57836,0,0,6198,0,0,68,0.7116618350409729,0,0.0,0,0.0,0,0.0,0.0624,0.164275371857312,0.3294871794871795,0.02056,0.3292645712541959,0.670735428745804,24.68165915059421,4.377022270228085,0.3179037520391517,0.2204323001631321,0.2251223491027732,0.2365415986949429,10.910669645437302,5.614516806768236,22.013051594547782,12381.773189105645,56.00998181835569,13.1218467884442,17.763400810817497,12.3418258903254,12.782908328768606,0.5548531810766721,0.7733580018501388,0.7042976266837716,0.5887681159420289,0.118103448275862,0.7085843373493976,0.8877805486284289,0.8851674641148325,0.7246963562753036,0.1374045801526717,0.4977628635346756,0.7058823529411765,0.6380368098159509,0.5495915985997666,0.1124721603563474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024125452352231,0.0046975507802195,0.0069766024859858,0.0089881242882707,0.0113206010506169,0.0134865134865134,0.015532989743328,0.0178009401185366,0.0199345067539909,0.0221871509238668,0.0244310541281295,0.0265493095328678,0.0285064005520025,0.030533721194116,0.0328211063689067,0.0352872980218824,0.0373470234391205,0.0393285870186561,0.0413446113460697,0.0430974181222137,0.0575872962738247,0.0714120928671798,0.0853893134585667,0.0975879619384819,0.1095807876878844,0.1255221696812909,0.1378928776626306,0.1499290219978439,0.1617289374149514,0.1725105943597134,0.1855260315402895,0.1975555217853808,0.2093048630129513,0.2199743271857548,0.2302130477977701,0.2405,0.2497341586541152,0.2593800794654144,0.2683035104493921,0.2756976597235785,0.283544333174745,0.2898615348509739,0.2965873345599145,0.3018040214896098,0.3066845408567424,0.312084894809098,0.3177567744205922,0.3224974463738508,0.3272375159219111,0.3313466836194109,0.3305623141389565,0.3290490916119057,0.3281062371971462,0.3272606055335739,0.3265257410529142,0.3240907343329489,0.3217260012714558,0.32208644601659,0.3232925174741108,0.3246687968980002,0.3255099347735927,0.3262689119067973,0.3269506840060801,0.3279927992799279,0.3283336160314037,0.3289539375147804,0.3301043433269137,0.332689323155861,0.3369103272418189,0.3397934362164533,0.341305635278575,0.3453860040352554,0.3490097453630933,0.3498817966903073,0.3504273504273504,0.3521160247265811,0.3577186311787072,0.36048839071257,0.3606019151846785,0.3666026871401152,0.0,2.3955141741640777,58.21488479960802,190.53276237360896,261.0508505623731,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95687,44631,421.2693469332302,6247,64.12574330891344,4863,50.28896297302664,1947,20.05497089468789,77.33990302576841,79.73121662699698,63.32261558699434,65.089418353568,77.09607958579738,79.4858615893699,63.23267104660077,65.0010377206537,0.2438234399710239,245.35503762707836,0.0899445403935672,88.38063291430842,157.73802,110.54486370708253,164847.91037445003,115527.56770207296,346.33718,223.3588343293665,361436.7991472196,232915.3221747641,359.45894,173.85409567314446,372178.2373781183,179069.93524279224,2802.99336,1286.217172647613,2900620.6067699897,1315477.1835752125,1131.79785,500.56947457001456,1169590.4668345752,509910.0761545604,1904.1973,798.7036182073144,1962052.525421426,809747.0123895963,0.38138,100000,0,716991,7493.086835202274,0,0.0,0,0.0,29429,307.0114017578145,0,0.0,32873,340.0879952344624,1625292,0,58326,0,0,6282,0,0,62,0.6479459069675086,0,0.0,1,0.0104507404349598,0,0.0,0.06247,0.1637998846295033,0.3116696014086761,0.01947,0.3375076359193646,0.6624923640806353,24.617610284207007,4.424074042548446,0.3187332922064569,0.2311330454451984,0.2317499485914045,0.2183837137569401,11.25744734237618,5.767998538239699,20.71144665225652,12399.763743524556,55.19494754402454,13.361239633735575,17.63897788856713,12.563189540315967,11.63154048140587,0.553979025293029,0.7784697508896797,0.6929032258064516,0.5590062111801242,0.1082862523540489,0.7131960335621663,0.8953771289537713,0.8640776699029126,0.6792452830188679,0.1390134529147982,0.4952139639639639,0.7110799438990182,0.6309314586994728,0.5220417633410673,0.100119189511323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.004733667832345,0.0071739505433734,0.0094766993052451,0.011795450616719,0.0142918219019116,0.0164002935540424,0.0186678370213113,0.0209457801766437,0.0231632172613564,0.0253318980983136,0.0277156172370609,0.0299440605462323,0.0320238144287421,0.0342033831831645,0.0362811088019686,0.0381985454093367,0.0401494706248702,0.0424949807030136,0.0443135619722714,0.0589992687767679,0.0721419597989949,0.0857331696723633,0.0984389463940082,0.1107735476861082,0.1259705913466624,0.1382620964747568,0.1510739297954318,0.1621419569814383,0.1723221082199564,0.1853570813232253,0.1982687729928587,0.2097696774614497,0.2204887115290001,0.2302010985019427,0.2407979707351654,0.2490961838875251,0.2584750053443445,0.2670002042066571,0.2749181041394635,0.2822840884118484,0.2889709836563866,0.2949665818891583,0.3004180291542396,0.306611961495976,0.312518474726574,0.3172824374015058,0.3217987358996859,0.3259501049195616,0.3293510402365614,0.3290218270008084,0.3279103696974702,0.3271128150194509,0.326379445039206,0.3251085727883872,0.3231263875066983,0.3219343914674094,0.3229698452042877,0.3234235617186034,0.3244563279857397,0.3255095738109944,0.3270852673369018,0.3262507850115135,0.3288928691369081,0.3291249036237471,0.3310789638604554,0.3313251292008109,0.3351312137269745,0.337839740881566,0.3426609510200841,0.343732920386227,0.3463461333900648,0.3497288434859377,0.3550625190606892,0.3581347344717583,0.3609958506224066,0.3595092024539877,0.3563265306122449,0.3621123218776194,0.3610248447204969,0.0,2.0674943908670165,57.64863240138783,181.60173665835256,266.08354214060364,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95778,44810,424.1997118336152,6130,62.811919229885774,4788,49.33283217440331,1867,19.06492096306041,77.331780499572,79.67461872759252,63.32970022966426,65.06352204180443,77.10069481789772,79.44511047071083,63.24412207848709,64.98133615134972,0.231085681674287,229.50825688168663,0.0855781511771738,82.18589045470992,159.56314,111.78305908602331,166596.8594040385,116710.57976364436,350.28827,225.95334153921456,365064.5868571071,235249.27245897145,360.9828,174.80898695076647,372695.6399173088,179179.09777536968,2729.81572,1244.474301097389,2815935.099918561,1265261.800694089,1106.78111,490.4898674927182,1138833.5630311763,495569.03135249467,1830.9513,765.4627194864864,1872377.3935559315,765905.7867262702,0.38351,100000,0,725287,7572.584518365386,0,0.0,0,0.0,29818,310.63501012758667,0,0.0,32971,340.05721564451125,1614379,0,57965,0,0,6341,0,0,68,0.6995343398275178,0,0.0,2,0.0208816220844035,0,0.0,0.0613,0.1598393783734452,0.3045676998368679,0.01867,0.3335407591785936,0.6664592408214064,24.738343908211554,4.334927894311385,0.3308270676691729,0.231829573934837,0.2167919799498746,0.2205513784461152,11.37721252267431,5.924908054497228,19.81304814397903,12425.57621636689,53.87718605070475,13.282485164121702,17.667797769673804,11.424490853285889,11.502412263623368,0.5580618212197159,0.8036036036036036,0.6843434343434344,0.5674373795761078,0.1013257575757575,0.7348066298342542,0.9314420803782506,0.8663239074550129,0.7222222222222222,0.1402714932126696,0.4944618006248225,0.7248908296943232,0.6251046025104603,0.5223880597014925,0.0910179640718562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904786021777,0.0045821337334252,0.007093062193674,0.0091328375797472,0.0113602847698957,0.0137577775741097,0.0156807569176811,0.0179264159418514,0.0200159473329108,0.0221733121768951,0.0242854799688358,0.0264390003490974,0.0288214366504205,0.0309020302633883,0.0330980246454888,0.0351379570570539,0.0371275593160658,0.0391329150028522,0.0408712550270708,0.0427548002832271,0.0577818128691586,0.072251221272634,0.0859191546460919,0.0987673780776142,0.1115150365640344,0.1255376031616877,0.1389189189189189,0.1507698524095104,0.1624745216472622,0.1737658553308193,0.1864209755887544,0.1988643123681791,0.2105286051392468,0.2211990638465408,0.2317969712977637,0.2419031368073484,0.2512164092491741,0.2598287906228557,0.2685394150402032,0.2759556272967682,0.282558179863351,0.2891854933906803,0.2954545454545454,0.3013805335186827,0.3071802533921261,0.3123882566182908,0.3163536188329576,0.3212834006549522,0.3262642106218322,0.3314888671720239,0.3308870066387471,0.3295203002763532,0.328517924023542,0.3272955938475771,0.3276861346411057,0.3259477184272624,0.3240686453166843,0.3245449766738945,0.3251214671867515,0.3263772358884644,0.3278574777308954,0.3288290957940694,0.3301712558764271,0.332728941418754,0.3338720571208027,0.3350403678833643,0.3364832843235218,0.3408812152089819,0.3435668923897407,0.3477534791252485,0.350810687371546,0.3530949839914621,0.3541004450095359,0.357597118994713,0.3564000756286632,0.3590048803713843,0.3556001234186979,0.3544919894544717,0.3551427779317992,0.3521293375394321,0.0,2.5356958685731628,55.0288199459896,171.15266981883417,271.42121653796045,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95703,44760,422.4110007000825,6248,64.15681849053844,4928,51.07467895468272,1896,19.53961735786757,77.34192318165195,79.71752193649277,63.32298576779221,65.07522916845453,77.09675656478471,79.46975159732747,63.23246075198784,64.98570382738752,0.2451666168672375,247.77033916529945,0.09052501580436,89.52534106700227,158.6431,111.08765990371728,165766.06793935402,116075.42073259696,349.43397,225.14365470881637,364686.049549126,234816.5865418588,364.94904,175.81328739667114,378674.29443173145,181646.5939511988,2824.8492,1298.261977249501,2928689.591757834,1333636.576314134,1173.29055,514.7259927135467,1215979.7394021086,527906.4231729332,1859.90056,785.7697081463313,1917936.0730593607,798642.3382570329,0.38286,100000,0,721105,7534.821269970638,0,0.0,0,0.0,29602,308.87224015966063,0,0.0,33401,346.3632279029915,1618378,0,58139,0,0,6299,0,0,82,0.8568174456391127,0,0.0,2,0.0208979864790027,0,0.0,0.06248,0.1631928119939403,0.3034571062740077,0.01896,0.3365413993278338,0.6634586006721662,24.83967991492244,4.382658396915265,0.3252840909090909,0.2368100649350649,0.2197646103896104,0.2181412337662337,11.242245958297447,5.759986068938422,20.18029479083683,12460.483562165213,56.01631939676161,13.976852426463482,18.17364222029988,12.003689087370182,11.86213566262807,0.5693993506493507,0.8106255355612683,0.6905801621958827,0.5854108956602031,0.1106976744186046,0.7288519637462235,0.9253393665158371,0.8689320388349514,0.7336244541484717,0.1244813278008298,0.5108213096559379,0.7406896551724138,0.6288832913518052,0.5456674473067916,0.1067146282973621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002409809341555,0.0046218870678383,0.006989460016028,0.0095476059885835,0.0118678368401248,0.0141312536906192,0.0164651428338396,0.0185841340508306,0.0207881712953495,0.0230686530486868,0.0252232669257349,0.0272534965394015,0.0292311648238621,0.031230358670005,0.0337338453280482,0.0362032594308405,0.038378271993702,0.040346270020033,0.042357370161609,0.0443911842859375,0.0593199979108998,0.0732235974115725,0.0862564813065474,0.0993139153127367,0.111569550260642,0.1273454614725211,0.1404378663042555,0.1515354871696545,0.1635506525991726,0.1739788524502173,0.1868712463474332,0.1991032070097152,0.210325797076208,0.2210256746995863,0.2303331205002312,0.2405150252637177,0.2505470459518599,0.2596795802794384,0.2683571590651236,0.2762124023549355,0.2839620458227262,0.2904814836482771,0.2969062644297368,0.3024165017689033,0.307944725999927,0.3129745587220195,0.3178175169684674,0.3224595255065675,0.3266181827609899,0.3314266087163295,0.3311971289412971,0.3299223566079629,0.3292448835568101,0.3279994217982075,0.3272271128067336,0.3266099412340842,0.3247947091119092,0.3243252128743794,0.325216052023616,0.326188307164675,0.3269270432940206,0.3276507276507276,0.3289923456013421,0.3303829520245591,0.3318657524359437,0.3338109629012088,0.3361136415395126,0.3400766476094741,0.3434085177920986,0.3454761433379529,0.3473746259182008,0.3507889441914645,0.3533834586466165,0.3566932119833144,0.3567158602652718,0.3534371706288792,0.3567022717015194,0.3604071043703851,0.3584239130434782,0.3603871928518243,0.0,1.632703236817153,58.93541931755325,186.8141143326988,266.8194032012036,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95740,44136,418.5084604136202,6167,63.18153331940673,4842,50.0104449550867,1892,19.33361186546898,77.32392886815877,79.68802023210866,63.31606620966248,65.06499337348767,77.0838330287339,79.45121177406067,63.22640383950625,64.97966782382919,0.2400958394248675,236.8084580479888,0.0896623701562333,85.32554965847794,159.28726,111.56318772248676,166374.82765824106,116527.2485089688,346.69342,223.81662745333597,361547.9005640276,233203.64262934605,354.50917,170.82472286663344,367164.74827658245,175976.624844726,2770.40212,1265.9172079287312,2861149.195738458,1289721.4622192718,1141.61135,501.63802155341466,1178047.482765824,509598.21553521417,1853.92842,783.2396749870892,1896285.8575308125,783167.9504716814,0.37986,100000,0,724033,7562.492166283685,0,0.0,0,0.0,29531,307.8650511802799,0,0.0,32526,336.6409024441195,1616411,0,58087,0,0,6336,0,0,55,0.574472529768122,0,0.0,0,0.0,0,0.0,0.06167,0.162349286579266,0.3067942273390627,0.01892,0.3328185328185328,0.6671814671814672,24.471425097569465,4.344120943498392,0.3145394465097067,0.2434944237918215,0.2209830648492358,0.2209830648492358,11.479723213517856,6.053012234937193,20.169887045215184,12331.663621550142,54.64816560780382,13.956202079728078,17.094013677616584,11.854527338175702,11.743422512283448,0.5729037587773648,0.7896522476675149,0.7058437294812869,0.6,0.1177570093457943,0.7309205350118018,0.9308641975308642,0.8655913978494624,0.7665369649805448,0.1392405063291139,0.5166619994399327,0.7157622739018088,0.6542137271937446,0.5473554735547356,0.1116446578631452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106880589909,0.0048363057518579,0.0070939980108388,0.0095104554044991,0.011758961630793,0.0138492871690427,0.0157718736618885,0.0180060632662018,0.0199061436064165,0.0218797993242551,0.0240321522309711,0.0259661587744876,0.0280670731080428,0.0298922560309841,0.0319897632757517,0.0336985734959685,0.0359018448120487,0.0379158233431937,0.039827794184934,0.041632372399279,0.0564093462237163,0.0702650108285119,0.083502862775529,0.0974142735465146,0.1095399280841057,0.1251573458011149,0.1381128712240978,0.1500777273792031,0.1616855372783593,0.1722592679945968,0.1855225053558548,0.1985984340528615,0.2100960022614349,0.2203621492772322,0.2302226328757479,0.2407021818584561,0.2501032331506758,0.2582126337823694,0.2665811257338163,0.2750708117839983,0.2821891769723803,0.2895936617324754,0.295303048274226,0.301037314507996,0.3058138968690655,0.3108513448458889,0.3158178489932044,0.320370157928951,0.3243558807503697,0.3278818567632243,0.3274292112398656,0.3267566822816203,0.3265283088079685,0.3244894119009365,0.3238575508746876,0.3225411216957147,0.3205785542473731,0.3219488188976378,0.3225663187742343,0.3231148067520788,0.3238674653687757,0.326121747377156,0.3274775434996545,0.3282360831656606,0.328805001202212,0.3291795927943898,0.3299074733096085,0.3335225659948907,0.3371329757199322,0.3410683012259194,0.3448511959101698,0.3467587672688629,0.3489251717833953,0.3497829563628056,0.3524187452758881,0.3552082090442668,0.3581953516633753,0.3576237623762376,0.3541001064962726,0.3522727272727273,0.0,2.194033088697687,55.72868557074736,177.9124472620272,271.4288968864318,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95791,44376,418.5361881596392,6250,63.98304642398556,4923,50.7563341023687,1975,20.179348790596197,77.4066300966336,79.7461043705561,63.35719594835807,65.08801096877166,77.16341814726768,79.50568698954577,63.26724532471655,65.0018619091072,0.2432119493659286,240.4173810103316,0.0899506236415206,86.14905966445008,160.00556,112.03652936077594,167034.96153083275,116958.36130403185,350.64663,226.38474404893324,365404.7144303744,235686.49037267623,360.37618,174.33383158881006,372457.308097838,179066.45256347497,2835.1348,1293.8171390070434,2923346.368656764,1314669.4645988815,1188.89711,521.0023308917974,1225499.8277499974,528654.9989625238,1939.93814,810.9556917285737,1983456.6295372215,810931.6870941083,0.38082,100000,0,727298,7592.498251401489,0,0.0,0,0.0,29795,310.3527471265568,0,0.0,32970,340.51215667442665,1613615,0,57954,0,0,6280,0,0,76,0.7829545573174933,0,0.0,0,0.0,0,0.0,0.0625,0.1641195315372091,0.316,0.01975,0.3361357383063283,0.6638642616936716,24.777977462263404,4.414776271284056,0.3191143611618932,0.2299410928295754,0.221612837700589,0.2293317083079423,11.397267656590389,5.901716320482359,20.93475761357704,12396.067939502627,55.57174308210781,13.458599468194228,17.698887314199037,12.17111497068348,12.243141329031063,0.5553524273816779,0.7985865724381626,0.683004455760662,0.5829514207149404,0.1071744906997342,0.728049728049728,0.9305912596401028,0.8636363636363636,0.7553956834532374,0.1026785714285714,0.4942244224422442,0.7294751009421265,0.6221276595744681,0.5239852398523985,0.1082872928176795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019150100310049,0.0043195230273164,0.0063831298647263,0.0089816404702152,0.0114116007770466,0.01381845583593,0.0161497522481189,0.0182207931404072,0.0205752483748313,0.022534692373818,0.0247914403427142,0.0267097634805807,0.0289528860384805,0.0309865244649419,0.0331103299693842,0.0354388030110591,0.0374186607078199,0.0395907196616284,0.0418376570080932,0.0439150850086934,0.0587032283645318,0.0730921678745856,0.0862743042817462,0.0988639110466521,0.1107037118985154,0.1270750340775806,0.1392580816110228,0.1508585402158311,0.1620165377433982,0.1725504477100381,0.1857247374763298,0.1982916148564632,0.2103793369481359,0.2211812493857896,0.2310092166404851,0.2420393441171914,0.2521216446788817,0.2601281474820144,0.2681643437928805,0.2753702813451457,0.2824998554662658,0.2895524132289354,0.2952149997042645,0.3010551782784185,0.3060208184037604,0.3113770241293471,0.3168575899843505,0.3214317525353421,0.3253057311638512,0.3298650540048063,0.3289436439364326,0.3281299470025466,0.3269244322907123,0.3261721291329931,0.3252747252747253,0.3240617493612399,0.3230310017530283,0.3240164953852196,0.3249881025222653,0.3256453961151948,0.3259436340884896,0.327068778903867,0.3279239064683674,0.3281211716226751,0.3278704213221045,0.3275267646525132,0.3289619034131142,0.3321878221750133,0.3364968597348221,0.3378154574132492,0.339376130198915,0.3415622697126013,0.3451631011039731,0.3478718604301398,0.3522769344687153,0.3577254719179678,0.363302752293578,0.3660732146429286,0.3583608360836083,0.363356428021555,0.0,2.3598950101686893,56.27257490382124,184.3297995932678,272.36798665334766,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95688,44605,420.95142546609816,6273,64.35498704121729,4966,51.302148649778445,1981,20.389181506562995,77.29491858535671,79.70037720773946,63.29396199958445,65.07530653854398,77.04369971781058,79.44747670756182,63.20053192271249,64.98354014271803,0.2512188675461289,252.90050017764543,0.0934300768719609,91.76639582595668,157.76332,110.61260620727109,164872.62770671348,115597.1555547938,348.42384,225.12735208703467,363463.62135272974,234611.09080447408,365.5351,177.78367615412728,378353.921076833,182891.4649949189,2842.62644,1319.5534590190575,2938119.8478388097,1346419.6381998598,1168.05654,522.1612556022001,1208589.1438842907,533587.8016075166,1937.1526,816.23389779721,1995155.5889975757,827368.907265729,0.3817,100000,0,717106,7494.2103503051585,0,0.0,0,0.0,29653,309.2759802692083,0,0.0,33538,346.8459994983697,1620694,0,58180,0,0,6364,0,0,57,0.5852353482150322,0,0.0,0,0.0,0,0.0,0.06273,0.1643437254388263,0.3157978638609915,0.01981,0.3273337400854179,0.6726662599145821,24.465651112768143,4.301716135422195,0.3209826822392267,0.2368103101087394,0.2211035038260169,0.2211035038260169,11.176724793858968,5.881313111583639,21.11605274958808,12442.47562737516,56.59945331446799,14.23983460739283,18.09952779897269,12.218502549036565,12.041588359065909,0.5734997986306887,0.798469387755102,0.6951066499372648,0.6211293260473588,0.1083788706739526,0.732566498921639,0.9300225733634312,0.8531468531468531,0.7581227436823105,0.128099173553719,0.5116083916083916,0.7189631650750341,0.6369098712446352,0.5749086479902558,0.102803738317757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002615386174947,0.0051549007072767,0.0074747372162697,0.0094962126988968,0.0116045889023484,0.0138411831255796,0.0162047430507367,0.0182873255552604,0.0207472275647583,0.0231614747129144,0.0254703239439509,0.0275112489983768,0.029625742187098,0.0317633721529423,0.0341766533510874,0.0361851970588539,0.0382582744399079,0.0403251762409543,0.0423099330032041,0.0442781350649892,0.0586416529132805,0.0725001832134593,0.0859979221978529,0.0994633838383838,0.1120360405984258,0.1276663280853225,0.1398745396070606,0.1516274315648257,0.1630319802540897,0.1732977102512929,0.1865270460984885,0.1990738236153338,0.210090246819615,0.2212117568616306,0.2306008645057688,0.2411898908011606,0.2508174584574866,0.2593372205587699,0.2674504458454024,0.2755880227984266,0.2821267230394996,0.2889661713563073,0.2953912847785661,0.3015779684406312,0.3077867756134335,0.3137470367443698,0.3185401496446878,0.3228377535300034,0.3272491909385113,0.331266899690035,0.329991252271045,0.3291403747542651,0.3278824755626919,0.3272635306019221,0.3267972884581078,0.3246364807656911,0.3226359394343396,0.3234824675431524,0.325115984455515,0.3253257912072175,0.3264765056503018,0.3277094084954347,0.3280691424485847,0.3299499225258808,0.3323809293203225,0.3345921846315237,0.3346810035842293,0.3374252538994526,0.3388057072397393,0.3414322760821863,0.3429619440623567,0.3483870967741935,0.3514707738921853,0.3535245651510528,0.3576477240599378,0.3623568702290076,0.3650236532885701,0.3683353683353683,0.3672409078479628,0.365049279757392,0.0,2.288986921418239,61.03845196570845,183.206422434144,267.71569300285955,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95711,44056,416.89043056701945,6172,63.16933267858449,4842,49.910668575189895,1851,18.94244130768668,77.3593554540744,79.73134563744915,63.33143217950936,65.08428970120575,77.13172573839378,79.5061436998378,63.246640807601146,65.00290943687833,0.2276297156806208,225.2019376113452,0.0847913719082171,81.38026432742151,159.45358,111.71279279484808,166599.01160786118,116718.86491087552,348.25985,224.95578615972968,363221.5941741284,234392.6897059781,360.88145,174.63644234937018,372392.23286769545,178893.2267854737,2758.82512,1270.044113168581,2847966.3152615684,1292506.224063797,1137.36819,501.1777706537112,1173758.5335018963,509098.6313297133,1819.23032,762.9973184900198,1864554.2309661373,766834.5456414064,0.37727,100000,0,724789,7572.682345811871,0,0.0,0,0.0,29606,308.63746068894903,0,0.0,33006,340.2221270282413,1617701,0,57894,0,0,6309,0,0,77,0.8045052292839904,0,0.0,0,0.0,0,0.0,0.06172,0.1635963633472049,0.2999027867790019,0.01851,0.3373438223044886,0.6626561776955113,24.428540936348725,4.286264700563509,0.3283767038413878,0.2379182156133829,0.2178851714167699,0.2158199091284593,10.902922098169771,5.541070487662368,19.680833535026174,12276.252563848488,55.13221243096618,13.979416979310828,17.96617659865425,11.858599729301742,11.328019123699342,0.5679471292854192,0.7994791666666666,0.6918238993710691,0.5781990521327014,0.1138755980861244,0.7362804878048781,0.927400468384075,0.8599033816425121,0.6867924528301886,0.1553398058252427,0.5053824362606232,0.7241379310344828,0.6326530612244898,0.5417721518987342,0.1036948748510131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573552647571,0.0044806228268472,0.0068596710199194,0.0091710507606995,0.0114293849079243,0.0137436753642073,0.0158010092257505,0.0179654165730967,0.0202101776696448,0.0223282384135791,0.0245500692201199,0.0265925758540643,0.0285508513812438,0.0305590471676729,0.032464115079406,0.0345779321466228,0.036411259848226,0.038220193953223,0.0402099901242268,0.0424352898286547,0.0564089176630292,0.0708035919871056,0.0847974992919555,0.0979905574073879,0.1099066800231981,0.1250502443461888,0.1365266665251809,0.1482502741432358,0.1590933378930044,0.1703762529243845,0.1829791361324252,0.1950459033431491,0.2061518039778909,0.2168574492766311,0.2269637919829039,0.2377952755905512,0.2471994192215335,0.2557851751020913,0.2642472935248859,0.2727408120245623,0.2800615519894482,0.2870454811177365,0.2933394807774152,0.2990592684795097,0.3042718658626839,0.3103588354773189,0.3157170554756395,0.3205367694712363,0.325400007760862,0.3293454200484874,0.3285725802117483,0.3276778722644283,0.3262746970356536,0.3257400238879855,0.3245368519258963,0.3232031977054632,0.3217291266114035,0.322921774378085,0.3230088495575221,0.32380918514304,0.3244805206950081,0.3255171324806569,0.3255131349980082,0.3264318365151922,0.3261408193211614,0.3265279550011718,0.327566090890982,0.3307017267952065,0.3328188578644591,0.3343627509205368,0.336565601383957,0.3384149580367577,0.3407853071564281,0.3437096651734872,0.3419771578356113,0.3455787118803721,0.3494599117602312,0.3509827517047734,0.3485838779956427,0.3438210765731614,0.0,2.649516123566597,57.17832004541038,186.50926640877972,257.5811980999395,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95880,44325,417.7200667501043,6095,62.24447225698791,4716,48.52941176470589,1802,18.39799749687109,77.4394230829848,79.71912127545724,63.39129033748679,65.07691298014599,77.21855387414031,79.50123424469322,63.30901675174088,64.99835090344274,0.2208692088444905,217.88703076401816,0.0822735857459022,78.56207670324977,160.47834,112.33589999806384,167374.15519399248,117163.01626831856,348.66107,225.6463681880461,362955.068836045,234655.05929938605,355.37305,172.26252180089128,366051.8669169796,176232.93058077653,2697.42968,1232.6611332610546,2780587.108886108,1252914.2214321534,1106.03282,491.9542689655525,1139004.8289528578,498585.1997725738,1773.6136,742.9597552998384,1814260.4714226115,744116.0538898357,0.38035,100000,0,729447,7607.916145181477,0,0.0,0,0.0,29646,308.4793491864831,0,0.0,32581,335.31497705465165,1614739,0,57955,0,0,6371,0,0,66,0.6779307467667919,0,0.0,0,0.0,0,0.0,0.06095,0.1602471407913763,0.2956521739130435,0.01802,0.328982544425224,0.6710174555747759,24.728475108169544,4.331220829024669,0.3237913486005089,0.2419423240033927,0.219041560644614,0.2152247667514843,11.173714385222905,5.573204717824995,19.166814240668533,12318.27028266467,53.34805876638702,13.62647591786921,17.19309080128872,11.394376015294952,11.134116031934138,0.568490245971162,0.7765118317265557,0.6823837590045841,0.6060019361084221,0.1251231527093596,0.7586477987421384,0.9263657957244656,0.8717277486910995,0.7358490566037735,0.230392156862745,0.4982578397212543,0.6888888888888889,0.6192139737991267,0.5611979166666666,0.0986436498150431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025612472160356,0.0050265515424216,0.0074052282940585,0.0096051335682157,0.0119832904753676,0.0141124519240552,0.0160325948561242,0.018359853121175,0.0206571043275714,0.0229853311237954,0.0251542039795897,0.0274363341610063,0.0296462996074562,0.03171580334349,0.0337635827542835,0.0354070938096959,0.0374297803664352,0.0395287632625994,0.0416510942236618,0.0436297814349766,0.0583520091728774,0.0723980482096398,0.0860505539151012,0.09894909239798,0.110949704204299,0.1257931354849607,0.1375643442709767,0.1489198924674055,0.1593143003347476,0.169886235940025,0.1834121694259299,0.1959417847071407,0.2075408162156877,0.2183167072757667,0.2285456684515497,0.2384267200832235,0.24814719878746,0.2579391379562126,0.2664144274774571,0.2738474903695575,0.2811742153036007,0.2878688830780724,0.2943331127705832,0.3002501286546908,0.3048369090379574,0.3092491597828362,0.3146071629476842,0.3191754201013578,0.3238894130724192,0.3284407292832225,0.3276158726744811,0.3266889062778853,0.3259745369719794,0.3248467363865849,0.3234945296053607,0.3223332416659027,0.3197744218374826,0.3206015677418299,0.3211621649238734,0.3221071733561059,0.3232047810253058,0.3246006263911596,0.3255794546554565,0.3267799622348106,0.3280041996754796,0.3287632179141613,0.329313071969269,0.3318391233968372,0.3351026922009436,0.3375868703129294,0.3388723768350896,0.3373677840340999,0.3391721730457549,0.345839636913767,0.3472665789968063,0.3487986743993372,0.3477192443557057,0.3512742099898063,0.3598014888337469,0.355631141345427,0.0,2.4700975336873325,55.464371655957,172.14486538382496,260.8260217966501,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95728,44224,417.9550392779543,6194,63.41927126859436,4883,50.3301019555407,1903,19.37782049139228,77.34647984393533,79.69894012333586,63.33814763576003,65.07529280160784,77.10790341494253,79.4663964855064,63.24888656035727,64.99201889234739,0.2385764289928005,232.5436378294654,0.08926107540276,83.27390926045553,160.23304,112.18325238489405,167383.67039946516,117189.59174420655,346.95592,223.5741669791252,361766.3901888685,232878.5485742157,358.0188,172.97214203542896,370153.7063346148,177695.41592594568,2772.60864,1279.8946125549055,2858235.0409493567,1298906.4981561357,1173.50241,519.4140952538802,1205495.0693631957,522218.07940844406,1866.81854,786.9949887366319,1902649.0264081564,780697.4340038392,0.37951,100000,0,728332,7608.348654521143,0,0.0,0,0.0,29552,307.987213772355,0,0.0,32819,339.01261908741435,1614005,0,57984,0,0,6317,0,0,71,0.7416847735249875,0,0.0,1,0.0104462644158448,0,0.0,0.06194,0.163210455587468,0.3072328059412335,0.01903,0.3331278890600924,0.6668721109399075,24.68463517564077,4.357284187606174,0.3035019455252918,0.2469793159942658,0.2275240630759779,0.2219946754044644,11.365319131428578,5.914607197498791,20.251913549911063,12348.917590244875,55.47973342246268,14.209255776747256,16.894036573207327,12.44333297987417,11.933108092633937,0.5648167110382961,0.7819237147595357,0.6862348178137652,0.5958595859585959,0.1254612546125461,0.7298937784522003,0.9349397590361446,0.86,0.7573529411764706,0.1038961038961039,0.5037868162692847,0.7016434892541087,0.621996303142329,0.5435041716328963,0.1313012895662368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.0048251882938499,0.0070224576572188,0.0092237053290262,0.0112473813736856,0.0136117445838084,0.0159327217125382,0.0181775500622588,0.0204640703260758,0.0225653206650831,0.0244674962586358,0.0263587374903772,0.0282838460273071,0.0306934874187601,0.0326458176415357,0.0347718228332213,0.0371394255658404,0.0391562827469574,0.0410736747996215,0.0430616028832732,0.0578101671556395,0.0712805375871381,0.0840223276115331,0.0965832010011673,0.1085196119780683,0.124011418904631,0.1364513938982475,0.1485328707202077,0.1599871890680047,0.1714340831877565,0.183956424857638,0.1965415436524673,0.2083011813804871,0.2195169926783958,0.2291973530898938,0.2399486362026213,0.2490493236537196,0.257952040311333,0.2663315442486411,0.2750108817667407,0.282616995430092,0.289912870592363,0.2965882993583824,0.3025695751747623,0.3072101075138189,0.3118002783491188,0.3167167167167167,0.3208356673626317,0.3252865218067728,0.329464120645485,0.3288906258422726,0.3274506834794818,0.3260063969790477,0.32466030644695,0.3240037457080428,0.3227744318268892,0.3215986582915368,0.3237768775319414,0.3248898302189731,0.3259477299081259,0.3262184276058342,0.3276263823064771,0.3292585758617797,0.3297512705129066,0.3301543722756063,0.3311246136923158,0.331835484701909,0.3353716194918993,0.3389240506329113,0.3400119024003174,0.3435888072305655,0.3445243804956035,0.3485258062488213,0.3504690717717946,0.3532968071037219,0.3537123108092003,0.3593630378196294,0.3644136807817589,0.3673469387755102,0.3727486296006265,0.0,2.609390730683801,57.41221001466806,183.50700454044232,265.93119105071736,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95733,44558,421.17138290871486,6179,63.36373037510576,4871,50.2230160968527,1935,19.85731148088956,77.41222784566315,79.7677361536787,63.350809200748486,65.08953012436577,77.17646528556476,79.53408635449077,63.26445448644097,65.00677690483683,0.2357625600983937,233.64979918792983,0.086354714307518,82.75321952893933,160.248,112.17585872661984,167390.55498104103,117175.74788904542,348.73984,224.59513923187296,363629.1247532199,233951.06100495427,359.54749,173.6207566855305,370753.9824303009,177764.52600565567,2827.56356,1276.7344464746827,2918348.490071344,1298396.0039638197,1184.54484,512.3108606780592,1223649.8490593631,521453.1359907851,1895.8577,778.1559572247655,1946873.1158534675,783397.1020770142,0.38209,100000,0,728400,7608.661590047319,0,0.0,0,0.0,29684,309.3813000741646,0,0.0,32999,339.9559190665706,1614021,0,57826,0,0,6309,0,0,45,0.4596116281741927,0,0.0,0,0.0,0,0.0,0.06179,0.1617158261142662,0.3131574688460916,0.01935,0.3267722589574042,0.6732277410425958,24.680025149824488,4.410446038230674,0.3360706220488606,0.2155614863477725,0.2217203859577088,0.2266475056456579,11.188653738653793,5.7299802802158855,20.2835512765669,12406.771298010644,54.65853602511134,12.58894050075277,18.23748767487408,11.92150186380015,11.910605985684334,0.5635393143091768,0.7942857142857143,0.7073915699450214,0.5546296296296296,0.1394927536231884,0.737220447284345,0.9302325581395348,0.8771929824561403,0.6929133858267716,0.1745283018867924,0.5034539928156949,0.7149321266968326,0.6526655896607432,0.5121065375302664,0.1311659192825112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0046419703035524,0.0069593799456235,0.0091701194248111,0.0116613629662765,0.0140988446073191,0.0164604439733371,0.018795342999704,0.0210013183309317,0.0232855680655066,0.0255083217184553,0.0277985936457424,0.0296491246106239,0.031687675070028,0.0337209662274411,0.0359092036715455,0.0376391405643282,0.0398821381142098,0.0415661648507028,0.043274439536628,0.0582990541020233,0.0725579448542876,0.0857688353649581,0.0980423096748403,0.1099035600481144,0.1260569118596357,0.1383830022075055,0.1505611038947211,0.1620111134857875,0.172520738761362,0.1860216908514629,0.1990688105679172,0.210495379290076,0.2200048167447563,0.229738065340471,0.2398420865862313,0.2495865367423565,0.2592592592592592,0.2675718940520657,0.275137247710628,0.2825832744787023,0.2893212743801846,0.2956118452965465,0.3011136390851395,0.3059648952441067,0.3118028023344579,0.3160624351716467,0.3213102266235003,0.3263954344149053,0.3306112250802167,0.3295914809152115,0.3291631839296235,0.3287825001052351,0.3272452504317789,0.3277499593802159,0.3251643935703848,0.3235821741046138,0.3242723196086425,0.3249796251018745,0.3259708694803697,0.3263863044287309,0.327347659699735,0.3281259776827614,0.3294193519692219,0.3291515035433825,0.330714378322313,0.3331348531246456,0.3360842789708962,0.3384303868174836,0.3421114785073217,0.3447325623418865,0.3476401647133354,0.3493116395494368,0.3515105740181269,0.3533946317451472,0.353500939849624,0.3546248870141609,0.353046953046953,0.353373231773667,0.3595591030026606,0.0,2.488309980737988,54.70586893446539,177.27171324278223,275.6368252475455,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95733,44604,421.8294631945097,6087,62.42361568111309,4745,49.02175843230652,1826,18.739619566920496,77.32373385663094,79.69573018670907,63.321321634088775,65.07602636988817,77.09516642708996,79.46577691255729,63.235646372253385,64.99216540566326,0.2285674295409734,229.95327415178224,0.0856752618353908,83.86096422491107,159.25756,111.60034557787388,166355.9692060209,116574.58303602088,348.89878,225.5479932715513,363912.4439848328,235074.3353359833,357.33284,172.87185891431778,370093.2593776441,178156.80255733113,2727.68224,1251.6870806557165,2818550.134227487,1277320.9491095494,1132.17734,500.0744967739788,1166368.5667429203,507029.42174530576,1789.31034,758.2479549339727,1837064.9410339168,764352.3389805342,0.38106,100000,0,723898,7561.634963910041,0,0.0,0,0.0,29700,309.68422592000667,0,0.0,32706,338.44128983736016,1615927,0,57992,0,0,6212,0,0,71,0.7416460363719929,0,0.0,0,0.0,0,0.0,0.06087,0.1597386238387655,0.2999835715459175,0.01826,0.3316167290886392,0.6683832709113608,24.586698910891947,4.369418845576068,0.3268703898840885,0.2320337197049525,0.2200210748155953,0.2210748155953635,11.211307256375582,5.930338135250796,19.57908332031361,12380.38654778314,53.65247478412606,13.14046497674361,17.356810091985853,11.52494547147524,11.63025424392136,0.5597471022128556,0.7811080835603996,0.6808510638297872,0.6015325670498084,0.1067683508102955,0.7156549520766773,0.9065656565656566,0.8657894736842106,0.7272727272727273,0.1367521367521367,0.5038648726023476,0.7106382978723405,0.6208368915456874,0.5635910224438903,0.0981595092024539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024214792299898,0.0044418753232529,0.006851400730816,0.0093185374875515,0.0116799609311411,0.0137823549185588,0.0156753559335862,0.017791304525446,0.0197662409374904,0.0222131189513031,0.0244180084093939,0.0265998418387782,0.0287536649349313,0.0310484120277817,0.033432768035012,0.0353974981908404,0.0373884044161816,0.0391239391612889,0.0409869303471724,0.0432413282902483,0.057008018710324,0.0721029054676379,0.0852119546403432,0.0979098951265949,0.1101609127528101,0.1255008934141106,0.1385638664644043,0.1512182147036918,0.1626317531850364,0.1729765083041161,0.1854886465185887,0.1971853838997901,0.2087877436962454,0.2194063302902749,0.2299907598891186,0.2407507889928575,0.2498996386993175,0.259308779577987,0.2671640606397333,0.2746661784729453,0.2819632724288967,0.2886821995279381,0.294937576846685,0.3011499760421658,0.3066527435433539,0.3118862507854757,0.3163810692067942,0.3215599893046766,0.3259581858951925,0.3302932713882216,0.3297502626687141,0.3291922043936368,0.3280403880866426,0.3267081644470179,0.3254620123203285,0.3238201799426758,0.3225551301926788,0.3235993375854662,0.3248103639307935,0.3261927251341092,0.3263502761396611,0.3263301446754684,0.3268500451102578,0.3272344523324301,0.3279612632796126,0.3287968235724361,0.3298170383076043,0.3338386230854255,0.3369863979138769,0.3414176871833739,0.3457332418210935,0.3499171698819003,0.3524081115335868,0.3567211103442987,0.3618081007424114,0.3686652391149179,0.3710586443259711,0.3736374646750101,0.374315443592552,0.3766833397460561,0.0,2.092093131965865,54.80610610377407,176.0671612330314,264.39757149829313,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95782,44762,423.21104174061935,6090,62.31859848405755,4782,49.36209308638367,1881,19.21029003361801,77.38153749659537,79.72189052042178,63.350937847410606,65.08219943737494,77.14946753575322,79.49376329193514,63.263090575376665,64.99850624703392,0.2320699608421534,228.1272284866418,0.0878472720339402,83.69319034102318,159.49758,111.73809079256849,166521.22528241214,116658.5410563242,349.32868,226.16840991655909,364134.0439748596,235550.6660004585,363.15302,175.6153172089272,375771.6689983505,180646.04291617204,2722.48936,1255.218814247751,2812116.806915704,1280280.693917178,1116.63449,499.4411262228117,1151624.595435468,507251.57777328906,1839.52246,778.0653376895724,1881410.870518469,779904.6249527801,0.38358,100000,0,724989,7569.146603746007,0,0.0,0,0.0,29749,309.98517466747404,0,0.0,33236,343.6345033513604,1614042,0,57937,0,0,6352,0,0,59,0.6159821260779688,0,0.0,0,0.0,0,0.0,0.0609,0.1587674018457688,0.3088669950738916,0.01881,0.3351631116687578,0.6648368883312421,24.55522469917794,4.338012775903818,0.3239230447511501,0.2352572145545796,0.2279381012128816,0.2128816394813885,11.194758484029576,5.829095233788415,19.987309247979702,12412.318388416194,53.953784957452896,13.36750036901104,17.491650344616545,11.922481565186793,11.172152678638524,0.5669176076955249,0.7848888888888889,0.6985151710781149,0.5825688073394495,0.1090373280943025,0.7222222222222222,0.9331683168316832,0.8509615384615384,0.7180616740088106,0.1255411255411255,0.5102739726027398,0.7018030513176144,0.6425419240953222,0.5469293163383546,0.1041931385006353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293969900139,0.0048350801792121,0.0072744612637474,0.0094350161989782,0.0115704496004229,0.0137931736514755,0.0161047009418192,0.0183406648363424,0.0204479960759467,0.0227556428673747,0.0251163076670833,0.0270986019584898,0.0288607855233395,0.0308059799843499,0.033017019082001,0.0350471152256571,0.0370876277991638,0.0390272724445688,0.0410753983918888,0.0433134813210611,0.058105922254109,0.0723847972054301,0.0860503637850418,0.0998507807738383,0.1117047622058529,0.1266632142970376,0.139104079015695,0.1508372760618787,0.1620029455081001,0.1726640297563537,0.1854351687388987,0.1976181977479962,0.2093981325478004,0.2200266672495573,0.2299298176137988,0.2402378131815816,0.2507750295514865,0.2583673423499387,0.2677684263061183,0.2756955332516966,0.2826806079252353,0.2896425940864929,0.2965009643943249,0.3018691588785047,0.3072103358671103,0.3124930730866326,0.3174603174603174,0.3218450738258447,0.3266169733674974,0.3312719217278936,0.3305254659220884,0.328515238200022,0.3274545710663474,0.3267052023121387,0.3261951821194513,0.3252842430641632,0.3236288386199924,0.3241598219837036,0.3244709804722052,0.3254846167526231,0.3267959206544884,0.3287271580358374,0.3304415084873317,0.3308378215299349,0.3318144755144132,0.3313210689287294,0.3308428737819948,0.3350541267755459,0.3378109626321482,0.342005527043032,0.3465633636899098,0.350293542074364,0.3529448779260005,0.3553763031732745,0.357727400997084,0.3605145149870191,0.3680608365019011,0.3748745735500702,0.371868978805395,0.3737181921762248,0.0,2.1548669927178525,55.80352490404818,175.00717549632614,265.4482565540025,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95859,44262,418.0410811713037,6205,63.66642673092772,4903,50.584712963832295,1970,20.248489969642915,77.37299817448195,79.67373621024603,63.35320242165369,65.05685094942804,77.13154440934623,79.43195647300632,63.26542622752677,64.97132832260816,0.2414537651357164,241.7797372397104,0.0877761941269241,85.52262681988054,159.48944,111.7430844687388,166378.97328367704,116570.02938559635,349.91603,225.61477651379184,364475.010171189,234804.08361634472,355.32971,171.863995446451,366405.53312678,176106.89912666954,2817.72152,1284.9095882936329,2909848.46493287,1310820.79751889,1167.3967,512.1934725472313,1203078.0208431133,519594.181629854,1942.37726,803.8121132926046,1998233.739137692,814701.8226635165,0.37905,100000,0,724952,7562.680603803504,0,0.0,0,0.0,29806,310.3307983600914,0,0.0,32662,336.51508987158223,1616698,0,58045,0,0,6265,0,0,56,0.5841913643997956,0,0.0,0,0.0,0,0.0,0.06205,0.163698720485424,0.3174858984689766,0.0197,0.3299079754601227,0.6700920245398773,24.834239134711115,4.376913211289385,0.3261268611054456,0.2292473995512951,0.211503161329798,0.2331225780134611,11.005296774916234,5.566965970080916,20.982559246714537,12297.50123848346,55.619699523403824,13.42245657210244,18.061727163346244,11.550647778664173,12.584868009290984,0.5533346930450744,0.7900355871886121,0.6966854283927455,0.5593056894889104,0.1146106736657917,0.731839258114374,0.9125,0.8785714285714286,0.7510204081632653,0.1266375545851528,0.4893322249930729,0.7223756906077348,0.631891433418151,0.5,0.111597374179431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.004581065604508,0.006573141413834,0.0086814369555063,0.0109387389951812,0.0132023615635179,0.0152884938795062,0.0171447815571135,0.0193013109360471,0.0215075767652686,0.0234109257817302,0.0258038700675107,0.0283755729584181,0.0305613027411501,0.0326807492860751,0.0347302544613351,0.0367699549945683,0.0387552718568334,0.0410600427838584,0.0429173386047963,0.0572447447447447,0.0713822939307808,0.0853473291639167,0.0977013304770605,0.1093746709071378,0.1242209781345727,0.1365480996429214,0.148441486647389,0.1608461768347351,0.1711704954568832,0.1843470213498622,0.1959470413401783,0.2071592353919214,0.2175885439440315,0.2279063115394347,0.2385777246251633,0.2480814705751126,0.2562709500348699,0.2643976682468755,0.2724785659504813,0.2800920305689477,0.287296500748503,0.2937967433494272,0.2998658425566575,0.3061264126436921,0.3110196943010925,0.3159271543901371,0.3206944797761384,0.325121685998343,0.3293696880114026,0.3294412346975879,0.3276930278665051,0.3269214497250035,0.3256469975552244,0.324378168626693,0.3219170738431847,0.3199676944272887,0.3204753619382161,0.3227299115527781,0.3235530474846866,0.3244720682941441,0.3253300134376729,0.3260787599497277,0.3276216433582056,0.3280612489799837,0.3289922642148308,0.3294050506491653,0.3322420197695649,0.3355704697986577,0.3402780528379609,0.3444011596303678,0.3476901885992795,0.3491713403491083,0.3494261667941851,0.3510034078000757,0.3559422348484848,0.3597664054095589,0.3626847290640394,0.369407158836689,0.3686229382431914,0.0,2.125888204995316,57.00809802204575,185.71232335788267,268.9421927321115,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95797,44317,419.1049824107227,6181,63.3735920749084,4838,49.980688330532274,1848,18.956752299132543,77.39816222968327,79.72789884135301,63.35848721039546,65.07984453835198,77.17139378688877,79.50093667069102,63.2751688166862,64.99813917931291,0.2267684427944942,226.96217066199156,0.0833183937092627,81.70535903906284,159.7816,111.98362021131616,166791.86195809892,116896.79239570776,350.76211,226.2815827603797,365606.2402789232,235667.65499035225,360.14618,174.18702448140326,372494.5666356984,179135.480766145,2786.33496,1269.0937900225483,2880914.8511957577,1297306.6844764866,1141.86095,498.4073040247408,1179868.3570466717,508311.6661098591,1818.5357,755.9938491741042,1867873.503345616,765177.2274210231,0.38006,100000,0,726280,7581.448270822677,0,0.0,0,0.0,29899,311.5442028456006,0,0.0,33003,341.085837761099,1613727,0,57851,0,0,6329,0,0,59,0.6054469346639247,0,0.0,0,0.0,0,0.0,0.06181,0.1626322159659001,0.2989807474518686,0.01848,0.3228734040916782,0.6771265959083218,24.64097171865956,4.468678109340635,0.3119057461761058,0.2312939231087226,0.2302604381976023,0.2265398925175692,11.093435203204711,5.598990417532747,19.55523275138392,12292.608033845674,54.56577037404523,13.387365590966064,17.10214800842882,12.140772260847514,11.935484513802823,0.5475403059115337,0.7676496872207328,0.7104042412193505,0.5538599640933572,0.0921532846715328,0.7236024844720497,0.9123222748815166,0.8802992518703242,0.7195121951219512,0.0776255707762557,0.4836619718309859,0.6800573888091822,0.6489169675090253,0.5069124423963134,0.0957810718358038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685382106904,0.0046923139289768,0.0070202491579758,0.0094036883581119,0.0113861637777664,0.0134956337655464,0.01562133795282,0.0180998245112843,0.0201166746697453,0.0223040720278289,0.0244854470386952,0.0264132743635262,0.0284257908042669,0.0305784273363524,0.0328463766920626,0.034825356825646,0.0368592561940723,0.0387183741186229,0.0407157999750592,0.042621209596801,0.0569386477462437,0.0711566617862371,0.084460380365268,0.0973630831643002,0.10960016023107,0.1255734308606219,0.1379303030945765,0.1501760956768777,0.1610764055742431,0.1718270900786928,0.1847971226740179,0.1972511786841991,0.2082667970235185,0.2186906088210236,0.2281623278865067,0.2385941233737498,0.2475470520024975,0.2559480975083206,0.2640927341605608,0.2719621673613338,0.2796467133707891,0.286058226102404,0.2928751464375732,0.2991901475944029,0.3050485436893204,0.3099402966701545,0.3147085661429232,0.318943167954453,0.3237132614632,0.3277251091098482,0.3265322602352561,0.3263732336284159,0.3250063367786633,0.3237649911243884,0.323270943552809,0.3217340828546988,0.3205389439100286,0.3206530638980775,0.3218710536195774,0.3221012491313103,0.323628889096515,0.3246589136572748,0.3257491791965536,0.3267015706806283,0.328560501027872,0.3303729095252934,0.3325323004721381,0.3357475103799207,0.3388257378245907,0.3416197931007355,0.346437791566647,0.3493716148709049,0.3500186776242062,0.3518602540834846,0.3507951356407858,0.3525145642610867,0.3507678272768739,0.3537716821298911,0.3536017529443988,0.3509304975313331,0.0,1.983116242761994,56.810898962634894,174.73749105594774,270.9058043320871,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95880,44099,417.1777221526909,6183,63.33959115561118,4876,50.30246141009596,1940,19.8581560283688,77.3584022892406,79.6431589688057,63.35300198276878,65.0427893273738,77.11668363712148,79.40312661552049,63.262570607461306,64.95603288168935,0.2417186521191183,240.0323532852013,0.0904313753074745,86.7564456844434,159.42806,111.64984524543291,166278.7442636629,116447.48148251242,348.48236,224.90128314650292,362937.0984564038,234045.69581404145,357.32991,172.17564628851943,369964.9353358364,177400.0986116485,2803.005,1288.6176010287124,2893420.5256570717,1314181.7136431106,1169.08041,511.9544752299288,1204847.7054651647,519567.94243288366,1897.13574,795.8863678621427,1943569.482686692,797745.6021004089,0.37856,100000,0,724673,7558.124739257405,0,0.0,0,0.0,29722,309.43888193575305,0,0.0,32773,339.06967042136006,1615413,0,58036,0,0,6378,0,0,67,0.6987901543596162,0,0.0,0,0.0,0,0.0,0.06183,0.1633294590025359,0.3137635452045932,0.0194,0.3381672323356988,0.6618327676643011,24.387531963111687,4.330491851124703,0.3209598031173092,0.23318293683347,0.2223133716160787,0.2235438884331419,11.01385245492289,5.625091518636595,20.61830367167351,12276.23340647782,55.3803697054767,13.68644710327242,17.632173249559447,12.077941640500772,11.983807712144054,0.5691140278917145,0.7968337730870713,0.7015974440894569,0.5885608856088561,0.1220183486238532,0.7337461300309598,0.9131403118040088,0.8819095477386935,0.7045454545454546,0.1422222222222222,0.509765625,0.7209302325581395,0.6401028277634961,0.5590277777777778,0.1167630057803468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023590397796879,0.0042557072073441,0.0061973202422127,0.0083562631359847,0.0107135596665989,0.0129453790492473,0.0149965361261665,0.0169717986638788,0.0191233676730343,0.0212024248867806,0.0233705610777278,0.025547969079986,0.0278431090615917,0.0298419948154548,0.0318641342992879,0.0338141306929057,0.0360401365470156,0.0382857438980152,0.0402018922202951,0.0418990344597969,0.0566114453120927,0.0702964193545016,0.0842008252518693,0.0968897009408602,0.1093297378150906,0.1250462175552762,0.1373251377702416,0.1489472564866014,0.1598864206492383,0.1706009733925087,0.1838251130734439,0.1966984346772536,0.2081607358361329,0.2187564914122033,0.2285453505762294,0.2390397237379495,0.2493112794030716,0.2583267738670864,0.266090330485688,0.2737522342912141,0.2806916026293862,0.2876866195535171,0.2938737799677817,0.300082756635523,0.3055656867751112,0.3109049868636907,0.3158389295379372,0.3201156967928543,0.3237813424700203,0.3274785736959052,0.3269484986645803,0.3261840436676407,0.3256919560985244,0.3244170393851231,0.3239891621508962,0.3223881055038129,0.3208909053413075,0.321200059213448,0.322002567394095,0.3226890155644109,0.3241185296324081,0.3250588444725755,0.3244802483898714,0.3253664540673604,0.3255522934013573,0.3262034868592245,0.3261828217018976,0.329559708981435,0.3335082747279661,0.3361860612544078,0.3391767598579364,0.342760479991542,0.3460064098535788,0.346771097289411,0.347830224590788,0.3532451923076923,0.3538652978690309,0.3632296115517592,0.3693495038588754,0.3710667689946277,0.0,2.186296541171319,56.639880599899655,186.1312510932694,266.28349702235926,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95728,44194,418.5922614073208,6158,62.94918936988133,4788,49.37949189369882,1944,19.941918769847906,77.38965647392791,79.75490076804346,63.34469261111818,65.09313647508247,77.14673198766873,79.51487720996248,63.254290426719535,65.00661919311781,0.2429244862591844,240.02355808097772,0.0904021843986484,86.51728196466024,160.09422,112.09765465778584,167238.42553902726,117100.00462192664,349.76866,225.93371317236247,364655.9418351997,235297.39920055887,355.38248,172.29883584488363,366610.9393280963,176478.54009426152,2756.118,1268.8386009707228,2845817.441083069,1292385.4897931712,1187.66052,528.0734821167613,1222844.7476182517,534029.1746361121,1899.90364,797.8758293058019,1951021.0596690625,804350.8399468069,0.3792,100000,0,727701,7601.7466154103295,0,0.0,0,0.0,29839,311.0061841885342,0,0.0,32616,336.2234664883838,1612996,0,57882,0,0,6306,0,0,54,0.5432057496239345,0,0.0,1,0.0104462644158448,0,0.0,0.06158,0.1623945147679324,0.315686911334849,0.01944,0.3328175769766362,0.6671824230233637,24.81792743222264,4.439851329723475,0.3324979114452798,0.2205513784461152,0.2224310776942356,0.2245196324143692,11.315742631833816,5.844615996098972,20.72854140167295,12248.876039781546,54.02315909988002,12.523290819166684,17.880147131849135,11.861468964175426,11.758252184688777,0.5570175438596491,0.7509469696969697,0.6915829145728644,0.5981220657276995,0.1265116279069767,0.7235708692247454,0.8994708994708994,0.8561151079136691,0.7333333333333333,0.1762114537444934,0.4964397607519225,0.668141592920354,0.6331914893617021,0.5555555555555556,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0043997039830499,0.0067688935345396,0.0091025458682975,0.0114132259147364,0.0134617734511832,0.0155891559017546,0.0177315462275803,0.0197788044811513,0.0219669983212545,0.0240782311879209,0.0261790854772806,0.028168145322957,0.0299551033857813,0.0320374629960082,0.0342197463749392,0.0364916640778709,0.03846034133942,0.0402448784442527,0.0421268703371816,0.0571431554548586,0.0704843048388616,0.0835597897365411,0.0958958874709366,0.1083541686447025,0.1234544396848061,0.1367610236387556,0.1476447925757221,0.1593972275028301,0.1692406692406692,0.1821598165157372,0.1953266983989615,0.2074435697821076,0.2172786318805082,0.2273497502255672,0.238328313253012,0.2485976514146156,0.2575766088705599,0.2657610667634252,0.2725254859784213,0.279315009886336,0.2849594968965154,0.2912617916164267,0.297072732714756,0.3029784445091756,0.308685156904281,0.3144326028219754,0.3191305343220177,0.3237745224908122,0.3283568310407132,0.3273287413227143,0.3266585983056442,0.3263393422552454,0.3246715749963909,0.3240570513580832,0.3225648705645038,0.3206057447850048,0.3207053358196748,0.3212628931672586,0.3218995485728504,0.3229940945248607,0.3246714926430089,0.3244290715119186,0.3244878439397646,0.3264373863962498,0.3279394222291374,0.3292810790898013,0.3325176470588235,0.3359300979050426,0.3410239070766538,0.3409495955764748,0.3428556144011127,0.344999684124076,0.3456538170823885,0.345667534399405,0.3472842699271102,0.3504325390802853,0.3600320384461353,0.3629207383279044,0.3623574144486692,0.0,2.4425824026841787,55.39780455262002,178.8426667450302,261.4669375696352,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95750,44237,418.30809399477806,6063,61.92167101827676,4732,48.72062663185378,1839,18.736292428198432,77.34687979821054,79.70514982948741,63.33382307926016,65.08084970043153,77.11915281963442,79.48148045496833,63.24773544187397,64.99906561949686,0.2277269785761149,223.6693745190763,0.0860876373861856,81.78408093466771,159.5154,111.70286506253872,166595.7180156658,116660.95567889164,346.21229,223.8310130633277,360856.4386422976,233045.45375168265,352.18491,170.73811141024865,363218.7154046998,174862.85891407923,2688.9398,1241.333509333631,2770755.92689295,1259381.6225497583,1103.48272,484.6498511295522,1133896.281984334,488319.1125550773,1800.2118,764.0629150264683,1837324.323759791,763095.8186439765,0.38042,100000,0,725070,7572.532637075718,0,0.0,0,0.0,29539,307.7597911227154,0,0.0,32321,332.9921671018277,1618619,0,58100,0,0,6405,0,0,61,0.6266318537859008,0,0.0,1,0.010443864229765,0,0.0,0.06063,0.1593764786288838,0.3033151904997526,0.01839,0.3343799058084772,0.6656200941915228,24.60033014237732,4.36383096968838,0.31614539306847,0.2311918850380389,0.2349957734573119,0.2176669484361792,11.08603187789798,5.768628911815177,19.57226226451761,12321.950533142004,53.58681807788669,13.167107969364112,17.005843681957817,12.224877138242062,11.188989288322704,0.5644547759932376,0.7842778793418648,0.7012032085561497,0.5809352517985612,0.1145631067961165,0.7215777262180975,0.9203980099502488,0.8509615384615384,0.7049808429118773,0.116822429906542,0.5053794707763885,0.7052023121387283,0.6435185185185185,0.5428907168037603,0.1139705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0047965764815641,0.0070964467005076,0.0094819964023293,0.0116891836900789,0.0139406529398586,0.0162299928636966,0.0182931808901592,0.0204350759542843,0.0227710201908506,0.0249341275618483,0.0267781052026326,0.0287324407149174,0.0306666941365528,0.0328290125495376,0.0347739794705341,0.0367398080168994,0.0386630289324356,0.0408220545125678,0.042642924086223,0.0574500287041386,0.0712395259067086,0.0845845740888311,0.0972922973427514,0.1091834691231805,0.1246393659180977,0.1369861561618859,0.1486081279373923,0.1596982919569415,0.1697161221210498,0.1831395036094286,0.196106619395564,0.2074173883751507,0.2181222349664099,0.228008483423259,0.2382854866198897,0.2477834654889758,0.2580108385239819,0.2666916346055633,0.2745080070562899,0.2818640498067443,0.2888935692221286,0.2956926245516849,0.3014925373134328,0.3067247805553195,0.3109771105094757,0.3153615211408556,0.3201957917487763,0.3248246953191709,0.3280667307971062,0.3278695137693632,0.3278118384515987,0.3266485718705613,0.3257235978713892,0.325458967286532,0.3235474006116208,0.3216611862906285,0.3218726419736885,0.3234059257236483,0.3237543453070683,0.3245159479936395,0.3259929295123733,0.325866688996818,0.325657306385262,0.3275837182448037,0.3280902986439526,0.3307264164407021,0.3328494335216335,0.3353949957829631,0.3392665580674639,0.3411146642302421,0.3434424048949188,0.3452674117572772,0.3510945576162967,0.353649430651484,0.3580523461447771,0.3552671755725191,0.3580171358629131,0.3609085810431856,0.3681078936929789,0.0,2.638161644196304,56.23305303934318,170.00708258222812,263.0184754563599,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95759,44446,419.6994538372372,6138,63.01235393017889,4838,50.00052214413267,1880,19.277561378042797,77.36211040614715,79.7214238527834,63.32787542470121,65.07460095943395,77.13232709867988,79.4940800275889,63.24351885678969,64.99354326428102,0.2297833074672723,227.34382519450944,0.0843565679115201,81.0576951529356,158.44444,110.95809256160985,165461.66939922096,115872.23400579565,348.94362,224.534617629004,363891.2478200482,233973.2128978158,362.21211,174.45581388270932,375002.24521977047,179719.01819468391,2753.10748,1250.1837577844913,2845142.7855345192,1275729.6660639634,1169.1981,514.0865145060177,1205127.0481103605,521001.7068954543,1839.09078,759.1526853030035,1887401.4557378415,763938.7428635544,0.38142,100000,0,720202,7520.984972691862,0,0.0,0,0.0,29710,309.72545661504404,0,0.0,33180,343.2157812842657,1620492,0,58202,0,0,6359,0,0,62,0.6474587245063127,0,0.0,0,0.0,0,0.0,0.06138,0.1609249646059462,0.3062886933854676,0.0188,0.3243663504898149,0.675633649510185,24.619559855139933,4.372273613422095,0.3164530797850351,0.2385283174865647,0.2246796196775527,0.2203389830508474,11.396193416044088,6.0794833406492605,19.698771544873065,12386.3777703972,54.51648230504644,13.677675290854218,17.251816062132416,12.09453798366532,11.492452968394492,0.5663497312939231,0.7755632582322357,0.7080339647289353,0.5869365225390984,0.1153846153846153,0.7365028203062046,0.909313725490196,0.8664850136239782,0.7470817120622568,0.1578947368421052,0.5076452599388379,0.7024128686327078,0.6580756013745704,0.5373493975903615,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025632452914298,0.0047761981057456,0.0072479951273982,0.0094292652692116,0.0116677686791109,0.0141055933515297,0.0163563314502477,0.0186330964632851,0.0206950849173321,0.0227430982223314,0.0249610304372795,0.026788832508166,0.0289088701878562,0.0310793264771954,0.0329851793749742,0.0353476350478159,0.037329660771238,0.0394355968252321,0.0415466971571124,0.0437359386717773,0.0585374000542786,0.0722371008913252,0.0847551831538324,0.0973780802036115,0.1098219559530841,0.1258751612834993,0.1389563686125579,0.151069333702375,0.1614526572216167,0.1715100692731679,0.1844029681963576,0.1963680832873391,0.2075001631889292,0.2175791719083301,0.227826508039576,0.2384835257361902,0.2486628926182739,0.2574366590162459,0.266041203430594,0.2747291757323134,0.2822056066112641,0.2897245452950465,0.2954206602768903,0.3015262141975086,0.307015093927214,0.3129251700680272,0.3169944048766444,0.3219523985192912,0.3272284852642342,0.331702427895077,0.3308196765462355,0.3292422845663809,0.3283508564511815,0.3274836063205939,0.3271885296998842,0.3253347616497054,0.3233656097715334,0.3242729269812125,0.3252999727297518,0.3266276192341243,0.3275746143214673,0.3294062112778553,0.3299889447445819,0.3304967698819336,0.3309855780748407,0.333471782358133,0.3343259032386138,0.3358675927664101,0.3389055629231521,0.340605152077005,0.3439790102234687,0.3428661715910886,0.3463054495401363,0.3489037896481579,0.3524216789067584,0.3573623256913259,0.3587088915956151,0.3627665935818218,0.3673801137903007,0.3684210526315789,0.0,1.985741176027349,54.52623314084124,183.6793984025172,267.7802480924961,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95749,44733,421.89474563703016,6203,63.48891372233653,4891,50.381727224305216,1999,20.365747945148254,77.32840490063373,79.68862078176461,63.31625382636724,65.06456022748421,77.07862773457573,79.44581994349188,63.22282999747539,64.9779114238623,0.2497771660579957,242.80083827272847,0.0934238288918507,86.6488036219124,158.96848,111.4362995092382,166026.25614888928,116383.77373052272,348.57297,225.4973881693695,363359.6382207647,234819.82910460632,362.59301,175.8070868800989,375020.79395085067,180729.40302130688,2808.67188,1301.3303952943252,2893365.194414563,1319101.7716052656,1180.49362,529.1146394106395,1213812.300911759,533570.7149471781,1956.5439,825.2832651595098,1994785.031697459,818823.3755151327,0.38402,100000,0,722584,7546.648006767695,0,0.0,0,0.0,29682,309.2773814870129,0,0.0,33375,344.8808864844541,1614663,0,57983,0,0,6298,0,0,50,0.5221986652602116,0,0.0,0,0.0,0,0.0,0.06203,0.1615280454143013,0.3222634209253587,0.01999,0.3441488543749039,0.655851145625096,24.456920719469174,4.31003290728666,0.3101615211613167,0.23860151298303,0.2267429973420568,0.2244939685135964,11.210043449815116,5.912859312056954,21.402000607836708,12479.93161082131,55.99094247758901,14.21500704227475,17.22758960484049,12.344023156697052,12.204322673776726,0.568186464935596,0.7960582690659811,0.7099538562953197,0.5653742110009017,0.1329690346083788,0.7383381924198251,0.9249448123620309,0.8704156479217604,0.724907063197026,0.1784232365145228,0.5018471156578573,0.7142857142857143,0.6507220216606499,0.5142857142857142,0.1201866977829638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813625447138,0.0047364043895413,0.0072391666328229,0.009573365312303,0.0119326158165652,0.0142804758800521,0.0167849567629303,0.0190407154816841,0.0214479952564967,0.0236247876021045,0.0256368202552406,0.0276816608996539,0.0298140606359784,0.0320344447534583,0.0340863355383329,0.0362927817574761,0.0384356593480533,0.0401161584733457,0.042286747588959,0.0444025497875177,0.0592110070673222,0.0731380753138075,0.0863893287471554,0.0992914511584878,0.1113265607216625,0.1268696948235219,0.140372460017817,0.1526369006439253,0.1631506424977835,0.1735708234587627,0.1877531236535976,0.1997900819113366,0.2113308961135048,0.2216134042041253,0.2317023501568605,0.2418750969228383,0.2514899220999531,0.2601672688796587,0.2688551767992188,0.2764343181974465,0.2836409929980903,0.2906387806903651,0.2966761003682696,0.302864136499442,0.3087818696883853,0.3145964877663773,0.3195465148360882,0.323991588606385,0.3277233504184779,0.3322366682522065,0.3307613446285005,0.3302515913913307,0.3289390111363604,0.3278278350664564,0.3276885760628562,0.3253280135041816,0.3241353061515771,0.3243198762364016,0.3253007924147255,0.3258901413490785,0.3264238013056201,0.3275517671024266,0.3280537305937984,0.3287511753906775,0.3294174289841117,0.3310898940887984,0.3325246874821622,0.3369776939993716,0.3404180818656115,0.3446376926429222,0.3481144934120854,0.3506706093568487,0.3510605017831446,0.3522649928155487,0.3597304128053917,0.3614443660315219,0.3657942787583688,0.3646363821552251,0.3756232686980609,0.3720203204376709,0.0,2.690376464595494,59.95282049860171,182.53693992736805,262.88172853529056,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95731,44087,417.2316177622714,6072,62.247338897535805,4770,49.242147266820574,1854,18.95937575080173,77.31464774318667,79.6800870832102,63.30648041847581,65.05591166938225,77.08094283763803,79.45044302958394,63.220415832401606,64.97467602620682,0.2337049055486346,229.6440536262594,0.086064586074201,81.23564317543241,159.14338,111.4253713766764,166240.1729847176,116394.24154837658,342.98006,221.03040391213275,357641.76703471184,230259.5473001813,351.14343,169.4386336131102,363480.3564153722,174557.53395059268,2713.6916,1235.481813410178,2799931.2657341924,1256185.5116626185,1111.51236,489.7401597145242,1143859.711065381,494843.1425302028,1811.9852,752.4683749971946,1853437.883235316,751690.7127536272,0.37801,100000,0,723379,7556.371499305345,0,0.0,0,0.0,29248,304.8855647595868,0,0.0,32146,332.56729794946256,1620250,0,58074,0,0,6290,0,0,48,0.5014049785335993,0,0.0,0,0.0,0,0.0,0.06072,0.1606306711462659,0.3053359683794466,0.01854,0.3364294710327456,0.6635705289672544,24.67855912988794,4.372553783230146,0.3274633123689727,0.2333333333333333,0.2257861635220125,0.2134171907756813,10.93135937007828,5.56971355435712,19.55067068549637,12269.701222821895,53.84017420448793,13.225030831829717,17.739951780645058,11.808716526094049,11.06647506591911,0.5557651991614255,0.7735849056603774,0.7029449423815621,0.5496750232126276,0.0982318271119842,0.7238493723849372,0.919889502762431,0.8478802992518704,0.7297297297297297,0.1428571428571428,0.4995804195804196,0.7030625832223701,0.652885443583118,0.5029239766081871,0.0866336633663366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0044914884772536,0.0066180799447816,0.0088710496900721,0.0111704562795666,0.0131219691103956,0.0152620356862305,0.017520573400584,0.0194733506429783,0.0217435813439253,0.0236125208903653,0.0257107946319475,0.0277729203740086,0.0299842350928893,0.0323183319570602,0.0343847243329301,0.0364931756518857,0.0385928501011778,0.0403776763338775,0.0423616682120792,0.0572093848868655,0.0708124856072183,0.0838780070711415,0.0966703826010138,0.1088531505404692,0.124322951929587,0.1363477153319535,0.1480274716498962,0.1592303580972741,0.169978967249002,0.1830004744856144,0.1962554039851343,0.2082075975292233,0.2180606844256457,0.2277568300588741,0.2375760536483545,0.2471534348925128,0.2560673042223024,0.264884845038385,0.2733902178531644,0.2809822494811654,0.287835462322747,0.2943191786992911,0.2999147832975263,0.3052972000340421,0.3103941591436042,0.3145309625996321,0.3184147939003141,0.3236713101289563,0.3277379572045957,0.3275998870345217,0.3267928054192945,0.3261651768145274,0.3252747886795719,0.3243355605048255,0.3225534910771679,0.3204223122704824,0.3207212533254507,0.3217306607884349,0.3232056519955041,0.3234131815031933,0.3247102035980173,0.3261723647914403,0.325534192800107,0.3255590517137847,0.3266373500559444,0.3289676425269646,0.3330713859114199,0.3359840257829468,0.3387679003530485,0.3426512836882667,0.3437649688647613,0.3453957792002028,0.3476859313838361,0.35,0.3505609930771067,0.3547094188376753,0.3588684699566384,0.3572025633881304,0.3666274970622796,0.0,2.1491226585314176,52.40123684635006,183.93328344948097,266.4535290312992,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95806,44377,419.5666242197775,6163,63.075381500114815,4812,49.54804500761957,1899,19.393357409765567,77.3504688262772,79.68467092244849,63.33176974345843,65.0609521793205,77.11818342151419,79.455723417102,63.24438482592184,64.97774130223068,0.2322854047630045,228.94750534648267,0.0873849175365961,83.21087708981167,159.33126,111.64577872123124,166306.1394902198,116533.18030314514,351.11185,226.5391491761938,365808.18529110914,235782.82568915468,359.52491,173.90091845738073,371448.844540008,178467.21122093344,2757.83348,1260.426171744745,2841624.908669603,1278703.669403213,1151.64565,506.5841579852688,1182663.5596935472,509388.8371512816,1856.8668,780.6817896686812,1898586.7273448429,780558.0551343987,0.3802,100000,0,724233,7559.369976828174,0,0.0,0,0.0,29859,310.95129741352315,0,0.0,32885,339.45681898837233,1614947,0,58006,0,0,6358,0,0,67,0.6888921361918878,0,0.0,0,0.0,0,0.0,0.06163,0.1620988953182535,0.308129157877657,0.01899,0.3405372028403828,0.6594627971596172,24.38431526523905,4.398617692559317,0.3273067331670823,0.2325436408977556,0.2150872817955112,0.2250623441396508,11.108597349865176,5.670240980808595,20.14301702245291,12277.634846321907,54.37293348056416,13.536083674939778,17.703000208382324,11.46773410754088,11.666115489701182,0.5579800498753117,0.7953529937444147,0.6926984126984127,0.5497584541062802,0.1246537396121883,0.7086302454473475,0.8947368421052632,0.850356294536817,0.6428571428571429,0.1643835616438356,0.5043674274443505,0.7402777777777778,0.6351819757365684,0.5240443896424167,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0047656226235259,0.0070638384248452,0.0092762870467268,0.0115751571495412,0.0136175673748752,0.0158482484320024,0.0181561963891838,0.020387714203918,0.0221423745470179,0.0242099218637845,0.0262568799802842,0.0283730974907445,0.0305255460921327,0.0326526402640264,0.0346769443784292,0.036697342677612,0.0386159255686591,0.0403949077682514,0.0426300502815977,0.0576465679115376,0.0721313189398295,0.0852510898725687,0.0974605209241728,0.1092544987146529,0.1250303830911492,0.1373420137416235,0.1486500861647129,0.1596079729253632,0.1696796939464406,0.1828307612836572,0.1947129419396691,0.2060232717316906,0.2169702004853626,0.2269961600668962,0.2374641238461453,0.2473405145950773,0.2562382522763852,0.2649193136264011,0.2723211217265791,0.2802513859793289,0.2869792032189393,0.294083540409419,0.3000023964723926,0.3049718653913931,0.3102703902896334,0.314969804796151,0.3192543893178401,0.3241687730896364,0.3284002167047661,0.3279685940155951,0.3274000744529774,0.32641112819717,0.3244838611669729,0.3231773505226688,0.3212704346627036,0.3195544711325179,0.3202030323439065,0.3213394840252861,0.321410075539761,0.3221791776617446,0.3235247681073613,0.324994247704311,0.3268281790778162,0.3294162881791748,0.3312670920692798,0.3325565533704672,0.3336783664251435,0.3352302482281883,0.3379517833814972,0.3415054153260525,0.3441948750395444,0.3459567554055743,0.3440373888135082,0.3438901345291479,0.3474437148217636,0.3465271458902032,0.3514970059880239,0.3601294847585649,0.355631141345427,0.0,2.618653674423099,54.75386548196195,181.10589264547173,265.309472311697,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95709,44687,422.6979698878893,6102,62.44971737245191,4773,49.20122454523608,1816,18.51445527588837,77.30949638025908,79.66876493456438,63.31695901961641,65.05921813388798,77.07648579847923,79.44012413215091,63.22944332961871,64.97620177920577,0.2330105817798511,228.64080241346585,0.0875156899977014,83.01635468221491,159.3922,111.6925569757836,166538.36107367123,116700.16087910604,348.49909,225.15660341076116,363478.29357740656,234605.9785088062,364.20837,176.34095598513534,376203.6799047112,180926.6063773198,2730.13684,1262.871400737935,2816895.506169744,1283854.5203309616,1143.59021,509.19777218845,1178571.461409063,515736.78775083815,1777.18238,760.425512971541,1814653.8570040436,759143.2121153673,0.38201,100000,0,724510,7569.925503348692,0,0.0,0,0.0,29609,308.6857035388521,0,0.0,33397,344.6175385804888,1612662,0,57924,0,0,6367,0,0,62,0.6477969678922567,0,0.0,0,0.0,0,0.0,0.06102,0.1597340383759587,0.2976073418551295,0.01816,0.3379224030037547,0.6620775969962454,24.60014869011244,4.248037721807309,0.322438717787555,0.2392625183322857,0.2212445003142677,0.2170542635658914,11.264474029323164,5.955941974894892,19.51221226657642,12349.639316224224,54.580517297315815,13.669574815404074,17.52115118600862,11.938774388765404,11.451016907137722,0.5700817096165933,0.776707530647986,0.6926575698505523,0.59375,0.1361003861003861,0.7300079176563737,0.9311224489795918,0.8586118251928021,0.7581967213114754,0.1596638655462184,0.5125356125356125,0.696,0.6365217391304347,0.5443349753694581,0.1290726817042606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483061747399,0.0047846889952153,0.0070712604496388,0.0092934915088973,0.0115386570426472,0.0138935540016489,0.0159710543749681,0.0183122888319536,0.020410040472589,0.0225870168148928,0.024692750028188,0.0268191759161336,0.029110839186007,0.0310495041347847,0.033084443711068,0.035221672332028,0.0370098216780683,0.0391396332863187,0.0412301488317951,0.0433451045345167,0.0579579987259683,0.0712805375871381,0.0848568761341347,0.0976643425771103,0.1098245169999156,0.1251652617216834,0.1376708549112827,0.1497045515038594,0.1613123791412485,0.1717659170607727,0.1850730508985907,0.1970700967972455,0.208449416681177,0.2193875317397776,0.2297333010328804,0.2403161792421454,0.2498408052461653,0.2586980035152553,0.2672332496335768,0.274854404548998,0.281914708845223,0.2893181844774932,0.295244636006252,0.3017500929624431,0.3080718469727536,0.3130850919496281,0.3176391079071863,0.3221974664205232,0.326195722618276,0.3298657008406916,0.3284238353429904,0.3278507865663829,0.3271080768471239,0.324902751869044,0.3232506583743732,0.3209026201141314,0.3199676175055955,0.3202652013687813,0.3208688055636444,0.3214567211235311,0.3222721208590917,0.3231639539499801,0.323956690844108,0.3240131948028633,0.32537746104602,0.3264490861618799,0.3280359648369269,0.331360201511335,0.3349726008149501,0.3367387344579076,0.3420023642811676,0.3451369717562115,0.3483266230498238,0.3502932439637444,0.3542039355992844,0.3555292726197516,0.3568154034229829,0.3637108335039934,0.3708390646492435,0.3728423475258918,0.0,2.6030100346774545,54.863082339175286,194.18380396790204,249.4294719454836,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95725,44233,418.5844868111779,6123,62.64821102115435,4818,49.64220423086968,1916,19.472447114129015,77.40440741590693,79.7603541894622,63.3594678928421,65.09868381619215,77.16088340473193,79.52350751073918,63.26944465229293,65.01464189629263,0.2435240111749976,236.8466787230261,0.090023240549165,84.04191989951926,160.6022,112.44821200212414,167774.5625489684,117470.0569361443,349.53437,225.5329878532283,364444.5129276573,234905.3307424688,361.74857,175.14282623028353,374233.3559676156,180062.57334068962,2744.47948,1270.2546472099068,2825870.692086707,1285808.1872132749,1162.8845,521.1477249421223,1190783.5048315488,520387.291660613,1873.54052,785.662024586968,1906067.0044398017,776951.2229620677,0.37884,100000,0,730010,7626.116479498564,0,0.0,0,0.0,29744,310.0130582397493,0,0.0,33080,341.8333768607992,1612928,0,57850,0,0,6413,0,0,68,0.7103682423609298,0,0.0,0,0.0,0,0.0,0.06123,0.1616249604054482,0.3129185040013065,0.01916,0.3262698660018697,0.6737301339981303,24.58533729657944,4.316450848192061,0.317766708177667,0.2397260273972602,0.2239518472395184,0.2185554171855541,11.453968670761135,6.015048669404439,20.36190044324405,12324.315259823188,54.89747513551736,13.715266573924271,17.54531470382919,12.082988974208574,11.553904883555326,0.5620589456205894,0.7670995670995671,0.7041149575440888,0.5644114921223355,0.1282051282051282,0.7564885496183206,0.9158653846153846,0.8957345971563981,0.7354085603112841,0.2,0.4894526795895096,0.6833558863328822,0.6311992786293958,0.5109489051094891,0.1097852028639618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022578391568033,0.0044894856853306,0.0065737415545681,0.0084801706190016,0.0109910221345561,0.013426302931596,0.0157859872611464,0.0178157811495566,0.0200159391858754,0.0218777180864671,0.0241977636797819,0.0262539386039637,0.0284051772881948,0.0307243869027387,0.0329556945046327,0.0349703842297315,0.0370316674605969,0.0389929669508931,0.0409569437660434,0.0425376787592829,0.0574134204783929,0.0708073884150489,0.0844749816427147,0.0977215136635578,0.1098824645548938,0.1250211505922165,0.138199219081572,0.1500181001256361,0.1614598914483525,0.1718161831733605,0.1853890229191797,0.1976409479493561,0.2084711103376261,0.2184885895178838,0.2282234373796609,0.2396713433067204,0.2491883388559761,0.2587162564788685,0.2669138826517883,0.2742806784627006,0.2811911392551335,0.2888276699312454,0.2957816318579473,0.3016929307893574,0.3069600707270107,0.3118456623248956,0.3165151363772605,0.3211325879202467,0.3254291138750048,0.3295225816636628,0.3292889163288862,0.3270848485680174,0.326276305807648,0.3254845449960372,0.3250488773031578,0.3223264196474936,0.3202875651761732,0.3208662061740924,0.3216518731792084,0.3212619734358864,0.3219482997269088,0.3229674997530376,0.3236260172806962,0.3229975890704527,0.3242743619907329,0.3268459173570944,0.328692390748423,0.3312002007654182,0.3344900105152471,0.3383297644539614,0.3393181818181818,0.3415994052676295,0.3423134890730972,0.3453401076818078,0.3476963253124417,0.3497768381489312,0.3531655225019069,0.3543434343434343,0.3604456824512534,0.3556967050416832,0.0,2.67729309974102,56.88370188873113,188.36331687495385,252.79280585547477,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95742,44100,415.564746924025,6018,61.54038979758099,4762,49.07981867936746,1869,19.07208957406363,77.33232137485312,79.69694164873508,63.31916690730778,65.07065356156286,77.10159403922387,79.47108469368406,63.232758758763175,64.9891000503964,0.230727335629254,225.85695505101452,0.0864081485446064,81.55351116646159,159.31058,111.5538311898612,166395.7093020827,116515.04166391052,346.67675,224.0382359757302,361416.7136679827,233324.01242477723,353.71451,171.14906278195045,365278.6238014664,175559.4546513032,2735.92232,1261.0616815024368,2822849.407783418,1282396.2748871308,1122.05813,492.579223294836,1156648.868834994,499178.601613068,1826.97878,769.587785858728,1866807.5034989868,768250.9294571158,0.37877,100000,0,724139,7563.441331912849,0,0.0,0,0.0,29576,308.1928516220676,0,0.0,32508,335.4118359758518,1618217,0,58033,0,0,6172,0,0,49,0.5117921079568005,0,0.0,0,0.0,0,0.0,0.06018,0.1588826992634052,0.310568295114656,0.01869,0.3303755347805419,0.6696244652194581,24.67984358193789,4.3837894287820935,0.3254934901301974,0.2286854262914741,0.2286854262914741,0.2171356572868542,11.438154057189372,6.020476437533549,19.885539064974576,12291.46847862665,53.95158793467215,12.992541450405549,17.459978267682136,12.142737929819218,11.356330286765248,0.5730785384292314,0.7915518824609734,0.7135483870967742,0.5904499540863177,0.1141199226305609,0.7285491419656787,0.918918918918919,0.8737623762376238,0.7154471544715447,0.1377777777777777,0.5158045977011494,0.7155425219941349,0.6570680628272252,0.5539739027283511,0.107540173053152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0045339743784803,0.0066404028917228,0.0092792096918448,0.0115467567347603,0.0140687238312568,0.0163783960186016,0.0188159144044349,0.0210725423035632,0.0231674856674856,0.025454396342276,0.0274113238540116,0.029758660757437,0.031680313095422,0.0338199638896053,0.0360295181594559,0.0379390324718356,0.0400767714493204,0.0421299856587616,0.0441697217130478,0.0583648245192809,0.0716617490112373,0.0850517085859327,0.0971524111968706,0.1092377608367865,0.1243561130913975,0.1368637728521863,0.1495598675877337,0.160625413845398,0.1712649717453543,0.184047824213701,0.1963184208817609,0.2080853795189242,0.2181569592562209,0.2282060875497942,0.2382597526270914,0.2474363695198563,0.2562305208321613,0.2642072534156416,0.2716965574108431,0.2787769367867972,0.2862223886184949,0.2918338125835729,0.2978835598379712,0.3037531883881939,0.3098102045846684,0.3151519701690504,0.3189563094450943,0.3228805220363561,0.3268302334784329,0.3261056825217368,0.3255842744542416,0.3254684442442245,0.324791013961278,0.3232176262731241,0.3220707279376884,0.3204675398723451,0.3202453585252247,0.3205359882709945,0.3214808206958073,0.3229145182157388,0.3243842120882382,0.3255823705784916,0.3270944342452872,0.3276721832767218,0.3292829204693611,0.3291301377661391,0.3314426167517489,0.3332513526807673,0.3350201219269235,0.335975581978042,0.3377260844048445,0.3417025044270174,0.348223814605885,0.353874883286648,0.3555295494441193,0.3557793476627086,0.3545634920634921,0.3604651162790697,0.3686214775323686,0.0,2.4426851334913184,55.88377153076173,174.1329626889144,264.9131989200447,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95734,44642,422.221990097562,6262,64.19871727912759,4945,51.18348758017006,1980,20.368938934965637,77.41699606751023,79.76995544115466,63.36600846061516,65.10048181609984,77.1657429365702,79.51962235865587,63.27276534409851,65.00989908365753,0.2512531309400287,250.3330824987984,0.0932431165166534,90.5827324423143,159.60032,111.78828666551976,166712.26523492177,116769.68126843104,351.57992,227.4168480690818,366764.29481688846,237068.39583542087,365.26434,177.03711040576718,378622.16140556126,182616.4217230545,2862.74804,1315.590620925553,2965772.7453151443,1349672.4893199424,1194.6807,526.2173263241147,1236318.7164434786,538067.9657426979,1945.92496,819.3853289774372,2003595.5251008,830140.9775425626,0.38219,100000,0,725456,7577.83023795099,0,0.0,0,0.0,29886,311.6656569243947,0,0.0,33434,346.3450811623875,1613764,0,57917,0,0,6280,0,0,73,0.7625295088474314,0,0.0,0,0.0,0,0.0,0.06262,0.1638452078808969,0.316192909613542,0.0198,0.3294674195025179,0.6705325804974821,24.44840073851394,4.364245389008614,0.3120323559150657,0.2343781597573306,0.2153690596562184,0.2382204246713852,11.122874522267646,5.814569299638224,21.088540686993984,12427.587031727644,55.963357104127205,13.797852234829978,17.520730367322066,11.888480111923926,12.756294390051243,0.5494438827098079,0.7782571182053495,0.6986390149060272,0.5699530516431925,0.1103565365025466,0.721048798252003,0.916083916083916,0.8796296296296297,0.7186311787072244,0.1124497991967871,0.4834826427771556,0.6972602739726027,0.6282628262826283,0.5211970074812967,0.1097954790096878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048830400470068,0.0070188250567997,0.0091694676022299,0.0112351553603383,0.0136912396425008,0.0159721939087536,0.0180342927127985,0.0204897091585423,0.0227730774346015,0.0250440627946058,0.0270841672054763,0.0291843993503155,0.0312963420662382,0.0333109815855985,0.035279164212419,0.0373338302894769,0.039287677484261,0.0411877195535138,0.0433061432842662,0.0582222175815225,0.072341850294013,0.0854717891688873,0.0980280801388231,0.1105333656777024,0.1259849181922983,0.1381881828789646,0.1503826625650632,0.1612431092688346,0.1718195369387339,0.1848166693587465,0.1969142881873066,0.2083736399900003,0.2190896479404022,0.2289208253675258,0.2394171405810891,0.249615444635174,0.2582385469585937,0.2668700178026738,0.2751702432045779,0.2823462756978008,0.2899848077597289,0.2958430871816698,0.3019071220773623,0.3068456245525041,0.3120897525892538,0.3173100965144771,0.3223973560442354,0.3270422353017269,0.3319136030381349,0.3317052167009782,0.3307536873359084,0.3298173470968469,0.3294486777229942,0.3293355328666756,0.3273634582414891,0.3261704245603501,0.3258438006648871,0.3273706088793485,0.3290283559255701,0.3307636309334926,0.330781191568091,0.3327553791518696,0.3331107698470988,0.3347714580187436,0.3349802371541502,0.3365534877113226,0.3405094186119282,0.3452830188679245,0.3484525501342176,0.3508724346804086,0.3556741899677573,0.3571607411116675,0.3605084874781152,0.3636873073690109,0.3670811825434068,0.3715582450832073,0.3713147410358566,0.3758461955050095,0.3674924924924925,0.0,1.8236803767674932,60.667375030786346,177.8567897973886,270.0446187839433,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95686,44391,421.3678072027256,6343,65.12969504420708,4959,51.14645820705223,1920,19.68940074828084,77.3508434030137,79.7426230465851,63.31502979323547,65.0833310788456,77.11435125498998,79.50764098956574,63.22869930710615,65.00020562301492,0.2364921480237143,234.9820570193515,0.0863304861293201,83.12545583068243,158.37888,111.01965983080233,165519.3863261083,116024.97735384728,350.30415,225.8700373887285,365403.59091194114,235359.63666817825,360.92473,174.22623494667488,372798.549422068,178632.16790067797,2825.6688,1294.9799667061088,2917347.9923917814,1317671.441974694,1157.12325,512.5574728795826,1188658.675250298,515082.3023856556,1880.363,781.2435086156978,1930502.2260309765,786294.0200518529,0.38094,100000,0,719904,7523.608469368559,0,0.0,0,0.0,29859,311.3308111949501,0,0.0,33150,341.97270238070354,1618849,0,58016,0,0,6254,0,0,60,0.6270509792446125,0,0.0,0,0.0,0,0.0,0.06343,0.1665091615477503,0.3026958852278101,0.0192,0.3376818113660219,0.6623181886339781,24.635421609803466,4.277554191889045,0.3266787658802177,0.2369429320427505,0.2173825368017745,0.2189957652752571,11.232403381451432,5.838061429674043,20.30460464912211,12425.78611245946,56.232106376252574,14.058350302628112,18.226829772055535,11.978633748462164,11.96829255310676,0.5646299657188949,0.8093617021276596,0.6765432098765433,0.5862708719851577,0.1114180478821362,0.7424124513618677,0.9519230769230768,0.875,0.7478991596638656,0.1548117154811715,0.502449646162221,0.7312252964426877,0.6131921824104235,0.5404761904761904,0.0991735537190082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0044923994280556,0.0068115603650427,0.0091064314171883,0.0111701153634865,0.0133452863633585,0.0155260178110559,0.017699205425169,0.0198402552643151,0.0216710022326457,0.023812942262332,0.0260368521599802,0.0281520643475756,0.0300641877620828,0.0322817011878592,0.0342175450203651,0.0359603410586077,0.0377501453126297,0.0397653397684602,0.0417583104875277,0.0567050688837593,0.0709783473635716,0.0840969445056732,0.0964799697020703,0.1090412346121794,0.1250476069569633,0.1387267285116861,0.150688432418618,0.1614685763146643,0.172165888727936,0.1856482329737128,0.1978132611637347,0.2097486671744097,0.2203523361418098,0.2304034344212669,0.2412500970055764,0.2505776894654,0.2599963976945245,0.268593492703424,0.2764601364131369,0.283869847151459,0.2910085125815252,0.2973129872283961,0.3038670057093509,0.3090723453908985,0.3137201735357917,0.3176507380535401,0.3228748028692069,0.3281765383073122,0.3324669498904926,0.3318830818965517,0.3312009905076352,0.3313299646712739,0.3301090016602901,0.3300914738106181,0.3275245345317802,0.3260037938665823,0.3266801042229978,0.327367343456748,0.3283906612012119,0.3296668350262828,0.3303518657157492,0.3310523241258449,0.3311950105802428,0.3333573003547119,0.3342337662337662,0.3356435643564356,0.3381820451991509,0.3422126146229211,0.3447097635692404,0.3467825460440402,0.3513997996520272,0.3554902451225613,0.35790273556231,0.3584212509419743,0.3651625193475413,0.3708690330477356,0.3763763763763764,0.3852235550708833,0.3797909407665505,0.0,2.575263839685072,55.98634134519472,192.5371037487208,270.4879272476779,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95722,44509,421.2615699630179,6171,63.26654269655879,4821,49.76912308560206,1876,19.24322517289652,77.26691653433518,79.62667633566912,63.2951211478972,65.03917226194085,77.03771292112307,79.39871609400095,63.2108795330153,64.95787133861658,0.2292036132121069,227.9602416681712,0.0842416148818969,81.30092332426386,160.22226,112.20912922643082,167382.90048264767,117223.97069266294,348.37602,224.21557107213877,363378.2933912789,233668.87556897965,357.48075,172.31741320512197,369378.0635590564,176944.4035244964,2744.4418,1240.8883978154774,2834550.8869434404,1263892.8512824182,1101.34246,480.7362336076069,1136268.3291197424,487968.3712711122,1837.09292,762.6729167041346,1886165.5000940224,768458.7473271976,0.38164,100000,0,728283,7608.313658302167,0,0.0,0,0.0,29729,309.96009276864254,0,0.0,32640,336.9235912329454,1609875,0,57823,0,0,6348,0,0,59,0.616368233008086,0,0.0,1,0.0104469192035268,0,0.0,0.06171,0.1616968871187506,0.3040025927726462,0.01876,0.3297757153905646,0.6702242846094354,24.823491199385487,4.333854995631669,0.3190209500103713,0.2375025928230657,0.2273387264053101,0.2161377307612528,10.894868272131966,5.537220031437251,19.95754955255657,12394.435140819209,54.52325111144555,13.66617863913711,17.304727316247558,12.16084361337559,11.391501542685305,0.552582451773491,0.7650655021834061,0.7002600780234071,0.5684306569343066,0.0844529750479846,0.7222678718159409,0.925925925925926,0.8579234972677595,0.6776859504132231,0.1274509803921568,0.4952830188679245,0.677027027027027,0.6510238907849829,0.5374707259953162,0.0739856801909307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155572661345,0.0044206065153251,0.0067479806794658,0.0088580977438262,0.0113194882330207,0.0134503578955942,0.0159539222182578,0.0182521615745041,0.0204450896006051,0.0226518997707173,0.0248992855165909,0.0271346878432902,0.0290197852823824,0.0311885216352343,0.0331999009574116,0.0352694307480799,0.0372905577532464,0.0392272816873644,0.0411621017618626,0.0430411135885307,0.0573678055300309,0.071552680608763,0.08479983210032,0.0974211129933397,0.1092378460499662,0.124870367626828,0.1373972864513663,0.149206518266056,0.1604824739622318,0.1714632287428749,0.1849835606101439,0.1966390742827425,0.2081840652460337,0.219542910958529,0.2296732962371219,0.2403161002463983,0.2503605970816794,0.2594470357601568,0.2687877686401018,0.2767647362207883,0.2831422190851972,0.2895186389909437,0.2957448067704326,0.301089705935241,0.3066370175950228,0.3121185594338343,0.3168629416186419,0.3208859227937898,0.3259981586420634,0.3309918776622483,0.3304924498230638,0.3300247111282908,0.3289432778452929,0.3284677874799079,0.3276742766087357,0.3262251289609432,0.3245587557786709,0.3247104183486843,0.3253001715265866,0.3261609574315608,0.3269104239120218,0.3272312574375248,0.3291440360405878,0.3293465577596266,0.3299908181510655,0.3312571966921386,0.3329226714036042,0.3370387965162312,0.3423868605353905,0.3478173243580958,0.3517451242565356,0.3520430107526882,0.3547813947585507,0.3568969474408997,0.3594900849858357,0.3612528176533396,0.3573830632833996,0.3648839556004036,0.3647349629222741,0.3598615916955017,0.0,2.359555383608342,53.30994611170527,184.54703944077792,270.2930820422946,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95704,44017,416.71194516425646,6165,63.24709521023155,4825,49.84117696230043,1890,19.33043550948759,77.288290147924,79.65415932069294,63.294707477804174,65.04254336105804,77.0441279260043,79.41470904628035,63.20333954984862,64.95566941558552,0.2441622219197086,239.45027441259012,0.0913679279555523,86.8739454725187,159.52068,111.7257134833513,166681.30903619493,116740.90266169784,349.66441,225.8250355002156,364784.9515171779,235389.27220670457,357.81656,172.97069736297237,370604.47839170776,178193.63510325504,2765.72708,1278.0077110859986,2858256.833570175,1303894.4027536467,1141.32739,505.42994416408686,1179464.5051408508,515050.3026908885,1858.5926,786.2317139536019,1902887.507314219,788352.467013699,0.37751,100000,0,725094,7576.423138008861,0,0.0,0,0.0,29765,310.3945498620748,0,0.0,32849,339.9335450973836,1609799,0,57809,0,0,6301,0,0,68,0.7105241160244087,0,0.0,2,0.0208977681183649,0,0.0,0.06165,0.1633069322666949,0.3065693430656934,0.0189,0.327658257235722,0.6723417427642779,24.56801328522105,4.452555747720555,0.3181347150259067,0.230880829015544,0.2302590673575129,0.2207253886010362,11.319910324231405,5.789958172684749,20.21049321628812,12239.07814650684,54.82197695622407,13.36861867393254,17.397345529918454,12.320644432859298,11.735368319513784,0.5546113989637306,0.7926391382405745,0.6840390879478827,0.5751575157515751,0.0976525821596244,0.7156789197299325,0.9216152019002376,0.8309178743961353,0.752,0.1370967741935483,0.493127147766323,0.7142857142857143,0.6297948260481713,0.5238095238095238,0.0856793145654834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0046025486359627,0.006636359946422,0.00873646356082,0.0111361972174762,0.0132778054964412,0.0156705613670194,0.0174756290511917,0.0194218424173038,0.0215731624946271,0.0236438358972256,0.0261342640114966,0.0285214887929261,0.030453141091658,0.0323369228864958,0.0344770566349731,0.0364361151377096,0.0384292074429996,0.0404401822304507,0.0423970818134445,0.0570043970046058,0.0705991979981363,0.0840671277589446,0.0971469464644657,0.1089951334860496,0.1242932469347563,0.1371214373699188,0.1485222357177864,0.1598836587608802,0.1707149453428688,0.1830799094144289,0.1953412784398699,0.2068924202982213,0.2179007073560651,0.2280228254164096,0.2369965930907436,0.2458064949006978,0.2546604865175762,0.2633686797433213,0.2704667616116139,0.2786723589874475,0.2854495772203262,0.2924493598034911,0.2979899316360491,0.3034448315345823,0.3085888736450493,0.3130730775994172,0.3180356322425851,0.3227994490501312,0.3278174188167701,0.3267421614544669,0.3262945787788451,0.3257359386929842,0.3242361403152597,0.323027591349739,0.3216002457191123,0.3202107234096571,0.3204586205194848,0.3209942101476584,0.3221024741308317,0.3230225696728243,0.3237780373369232,0.3254993384159788,0.3267992847563701,0.3278389596679383,0.3269155818847922,0.329940000568715,0.3328202067167227,0.3355226187131216,0.338937912393672,0.341225945056452,0.3437199871945363,0.345773805777582,0.3470753784133262,0.3479880774962742,0.3482394366197183,0.352506038647343,0.354125149461937,0.354110693175712,0.3627194620844228,0.0,2.1929782856054936,58.57422014319345,175.231699163943,264.99795682649625,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95840,44455,419.7725375626043,6148,63.09474123539232,4806,49.686978297161936,1913,19.626460767946572,77.36488025655099,79.68014088814992,63.35773544642036,65.07131791311919,77.1205261390767,79.43629605931659,63.26633348502372,64.98250414256401,0.2443541174742876,243.84482883333192,0.0914019613966417,88.81377055517703,158.19144,110.78084027912136,165057.84641068446,115589.3575533403,346.63981,224.39968105317425,361208.4411519199,233662.3967583204,360.59684,174.31433205609932,373883.69156928215,179964.28258669577,2759.49484,1271.0844187996854,2852629.9666110184,1299614.0847242128,1124.16481,496.0484837025977,1157302.5876460767,501951.4322022745,1877.72552,797.9041887847351,1926929.1736227043,803915.1301971911,0.37965,100000,0,719052,7502.629382303839,0,0.0,0,0.0,29475,307.0429883138564,0,0.0,33014,342.1535893155259,1624176,0,58359,0,0,6293,0,0,55,0.5634390651085142,0,0.0,0,0.0,0,0.0,0.06148,0.1619386276833926,0.3111581001951854,0.01913,0.3387825003892262,0.6612174996107738,24.37926577528035,4.386737876619206,0.3281315022888056,0.2378277153558052,0.2084893882646691,0.2255513940907199,11.05966364575217,5.690539350742873,20.670172397403345,12322.565232696756,54.84059486828387,13.729297149313563,17.890476441844132,11.284512985511215,11.936308291614964,0.5661672908863921,0.7970253718285214,0.7203551046290425,0.5538922155688623,0.1097785977859778,0.7025993883792049,0.9125295508274232,0.8455696202531645,0.6549019607843137,0.1361702127659574,0.5151515151515151,0.7291666666666666,0.6785109983079526,0.5194109772423026,0.1024734982332155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0044608459386025,0.0066259436642584,0.0090500954779994,0.0114804608454256,0.0139188693845965,0.0160349854227405,0.0180901239357249,0.0202097644749754,0.022140334715185,0.0244127413602262,0.0263743932350194,0.0284181423887684,0.0305684496546897,0.0326557539273491,0.0348825205434199,0.0368845676458419,0.0390919640266898,0.0414494860346796,0.0433104452767374,0.058313690314775,0.0719967388236769,0.0849675256652,0.0976583009555812,0.109757253435838,0.1246185523467609,0.1379978813559322,0.1493930310181346,0.1604796040279911,0.171562904970494,0.1849827882960413,0.1977514728933571,0.2089698181265074,0.2188994954018218,0.2293049632918626,0.2393549956866995,0.2486463602130172,0.2576431475616056,0.265877555643654,0.2735173707202159,0.280529082192572,0.2871255911718339,0.2939368868928023,0.2985810341939652,0.3043340983885266,0.3098144020099265,0.3145454772832435,0.3196771323249014,0.3243299182448515,0.3278913178110711,0.3276349061171786,0.3267882187938289,0.3262790075098981,0.3251611784093209,0.3246138737612713,0.3239520866244382,0.3217577536289363,0.3222408742306046,0.3227222079369161,0.3239476983700519,0.3248470012239902,0.3256756756756757,0.3269582781038944,0.3274743529306126,0.3288982989678319,0.3295398188509827,0.3304956865871366,0.3333228425756908,0.336698086662915,0.3435592611800375,0.3445478296741073,0.3475864283420742,0.3501115004778592,0.353090405904059,0.3573057191715751,0.3556560009515879,0.3557810578105781,0.3555510120629728,0.3641124586549062,0.3653846153846153,0.0,1.689576674867351,57.89815049063652,183.9241036394245,258.4379582000085,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95632,44229,418.5732809101556,6217,63.79663710891752,4843,49.993725949472974,1919,19.627321398694995,77.2563444549925,79.66635895270599,63.27473565930678,65.05557712299614,77.0244574719619,79.4371236796734,63.18907097592538,64.97350168832263,0.2318869830306056,229.23527303258595,0.0856646833813954,82.07543467351286,159.11808,111.4689691327284,166385.81228040822,116560.324088933,345.7373,222.85786406648367,360872.6263175506,232381.69262997963,353.63436,171.17166408380007,365672.2958842229,175858.07979681736,2787.68944,1257.9496899409562,2880361.761753388,1280809.567857501,1174.96343,512.8915777601402,1212484.5867492054,520379.27796976216,1879.80942,778.6049204814075,1925365.5470972057,781280.8194414795,0.37859,100000,0,723264,7562.991467291283,0,0.0,0,0.0,29385,306.59193575372257,0,0.0,32362,334.2500418270035,1615793,0,57961,0,0,6340,0,0,69,0.7215158106073281,0,0.0,0,0.0,0,0.0,0.06217,0.1642145856995694,0.3086697764194949,0.01919,0.3118296046582899,0.6881703953417101,24.84298010418078,4.392088086751977,0.3245921949205038,0.2267189758414206,0.2242411728267602,0.2244476564113153,11.476767758582785,6.0836291514861065,20.37795896239769,12353.13165048908,54.35977010324567,13.096931417142882,17.51473759613444,11.900202181226051,11.847898908742287,0.5606029320669007,0.7914389799635702,0.6787531806615776,0.5948434622467772,0.1223551057957681,0.7258464079273328,0.9158163265306124,0.8525469168900804,0.7253218884120172,0.1549295774647887,0.5055066079295154,0.7223796033994334,0.6246872393661385,0.5592028135990621,0.11441647597254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0047130129835906,0.0069211175270705,0.0091331159265693,0.0114864177434123,0.0138137587482045,0.0158927697078504,0.0180534553925374,0.0205183806231205,0.022497003472898,0.0245241393463649,0.0267606647003812,0.0287020260253664,0.0309100844408244,0.0328702029853829,0.0349023706294429,0.0369460426061265,0.0394328156650911,0.0411563316232556,0.0429648791580177,0.0582026065236248,0.0715722427086825,0.0846359771140622,0.0980716195448516,0.1103736453903702,0.1256917916212526,0.1384679062659195,0.1504051622246121,0.162069444592876,0.1721103910039057,0.1847356222713307,0.1969104440424218,0.2083319719000163,0.2197701048663693,0.2295450785773366,0.2398654648787851,0.2495386164084782,0.2581430471338728,0.2664469197544896,0.273972445596687,0.2812485506238115,0.2880539273153575,0.2944895151342632,0.3005017766253721,0.3058595794932979,0.3113411485676874,0.3160442426826516,0.3210055965630219,0.3250259470679813,0.3289329369012223,0.3283282067886244,0.3271987307718838,0.326459072469504,0.3264755382740409,0.3254769083798549,0.3237367983496012,0.3221621621621621,0.3230269450216022,0.323718610251118,0.3251752021563342,0.3253677857412297,0.3258625832753306,0.3271360592917,0.3288604135397298,0.3302493675460788,0.3307750541676456,0.3317427208046404,0.3337954065719417,0.3374071998879395,0.3390977443609022,0.3419009127650879,0.3464737985481905,0.348652732309242,0.3514045581888392,0.352073732718894,0.3542837078651685,0.3581507054938457,0.3586826347305389,0.3587806851901807,0.3635312259059368,0.0,2.446121577442704,52.70699278675941,178.57130729837044,278.6560263218713,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95696,44010,415.9212506269855,6184,63.46137769603745,4851,50.14838655743187,1873,19.20665440561779,77.32722884548278,79.70461785279129,63.32110870231941,65.07626618547772,77.09633761211931,79.47539060707867,63.23583259530795,64.99408030305852,0.2308912333634651,229.22724571262165,0.0852761070114667,82.18588241919633,159.93538,111.98587970895753,167128.5947166026,117022.52937317916,350.45802,225.8631773750268,365594.6330045143,235397.3116300141,356.17001,171.63357964607124,369038.5700551747,176857.72111792612,2786.86976,1265.0816266999575,2880224.7533857217,1290065.073654962,1155.2368,507.59491263156673,1192936.4550242436,516205.1355200426,1847.55438,768.7837732250172,1895689.2033104831,773694.3329290329,0.37713,100000,0,726979,7596.754305300117,0,0.0,0,0.0,29829,311.1519812740344,0,0.0,32610,337.6107674301956,1612819,0,57923,0,0,6422,0,0,61,0.6269854539374686,0,0.0,0,0.0,0,0.0,0.06184,0.1639752870363005,0.3028783958602846,0.01873,0.3241326137239784,0.6758673862760216,25.01644996732381,4.4146471326939976,0.3199340342197485,0.2269635126777983,0.2275819418676561,0.2255205112347969,11.101789512753504,5.606048156635014,19.728526793276,12323.842028188885,54.67246647726683,13.180519502766744,17.41005658238688,12.171615003057765,11.910275389055435,0.5534941249226963,0.7584014532243415,0.6952319587628866,0.5806159420289855,0.1188299817184643,0.7191283292978208,0.9042821158690176,0.8579234972677595,0.7418032786885246,0.1594827586206896,0.4966777408637873,0.6761363636363636,0.6450252951096122,0.5348837209302325,0.1078886310904872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791686071233,0.0049659981149476,0.0071522775692401,0.0095574717897153,0.0116634974222348,0.0140409110810177,0.0162441620949156,0.0183532151319552,0.020504167305824,0.0228469022017409,0.0249720538616948,0.026909329937143,0.0291192232130918,0.0311183010644107,0.0333453738583002,0.0352854793840553,0.0373785301369579,0.0393995078954745,0.0413567854876793,0.0431320227647022,0.0579602665608222,0.0716057393433873,0.0848682554334144,0.0974729621680764,0.1094259226055498,0.1245027928232904,0.1370717833340408,0.1486257680471104,0.1604803726734619,0.1714009869126797,0.1842085420369472,0.1961463520242476,0.208232261152386,0.2179372197309417,0.2270831269741693,0.2375354547066123,0.2479462452004643,0.2564549699049333,0.2646571486937376,0.2729126335925955,0.2804787701995647,0.2870465714954364,0.2935891669231315,0.2995338135014321,0.3054309915296462,0.3108206424563783,0.314854931817328,0.3198339847479853,0.3239566192000207,0.3291304692244725,0.3283135372709746,0.3282998609715473,0.3279776753625639,0.3267755774147419,0.3266543789761579,0.3245105259927576,0.3234655552209949,0.3241196144009443,0.324141341792012,0.3247988035040239,0.3249733689659683,0.3252741184822907,0.3250836820083682,0.3253725341256898,0.3270164975229667,0.3279240261942654,0.3292620284230352,0.3341196452160785,0.3385559060637925,0.3421826563866147,0.34449629426297,0.3459525843656557,0.345842298443235,0.3489639293937068,0.3511870845204178,0.3552725541537729,0.3544655252198056,0.3520667888413765,0.3563122923588039,0.3671423062090242,0.0,2.1100338061739565,54.44002303348484,182.36344129935577,271.6556903685426,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95774,44130,416.7623780984401,6187,63.37836991250235,4963,51.19343454382192,1930,19.765280765134587,77.38146625236273,79.70425633923676,63.35451413110488,65.06781745836803,77.13359359506502,79.45900275298057,63.26301368681554,64.97981578703735,0.2478726572977052,245.2535862561973,0.0915004442893376,88.00167133067305,159.16802,111.55423093505038,166191.03305698832,116476.29934538643,349.70414,224.76270097600815,364500.20882494206,234045.7650051248,363.28627,174.62371811031508,375230.7097959781,179124.64076274622,2872.26832,1311.7950857198828,2964750.0991918477,1335421.435587824,1212.51288,530.0262968149109,1249046.1398709463,536452.6212004371,1912.27262,801.2872429029194,1961045.8788397687,807363.3333741843,0.37856,100000,0,723491,7554.137866226742,0,0.0,0,0.0,29725,309.6873890617495,0,0.0,33313,343.7362958631779,1617050,0,58122,0,0,6431,0,0,66,0.6891223087685593,0,0.0,0,0.0,0,0.0,0.06187,0.1634351225697379,0.3119443995474382,0.0193,0.3384118190212373,0.6615881809787627,24.471339085440118,4.410569510712404,0.3250050372758412,0.234535563167439,0.2087447108603667,0.231714688696353,11.21431072793331,5.556740599696479,20.55219299832085,12326.984669660387,56.1881011312641,13.839759265606869,18.17908297630516,11.661994843546422,12.507264045805655,0.5641748942172073,0.788659793814433,0.707997520148791,0.5617760617760618,0.1373913043478261,0.7105864432597105,0.9289340101522844,0.8581730769230769,0.6756756756756757,0.1434426229508196,0.5115068493150685,0.7168831168831169,0.6558061821219716,0.5238095238095238,0.1357615894039735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047022578945234,0.0073036386321907,0.0097083434885043,0.0121101812968367,0.0145061791233177,0.0165728962818003,0.0185614138919784,0.0204434000817327,0.022579391062367,0.0247103297784061,0.0269937517313552,0.0290112735979939,0.0310782153960182,0.0331762838025918,0.0351440669214086,0.037150485336424,0.039105913577175,0.0410849331006399,0.0432387972680326,0.058032266816939,0.0717910619552365,0.0851311525270852,0.097225872236647,0.1097805232864582,0.1253186111199247,0.1381475667189952,0.149947842377536,0.1612479439471941,0.17221823171843,0.1854654667585256,0.1975410101971301,0.2090441552228419,0.2198718088946251,0.2292489683631361,0.2386308231018128,0.2487747697460229,0.2577309146561037,0.2659202398255814,0.2735984227599408,0.2811577082102776,0.2888495906871069,0.2951885719700559,0.300800824801592,0.3056301571291424,0.3108412942989214,0.3151077516081396,0.3190712468193384,0.3235362724515978,0.3278753413993746,0.3269890837629386,0.3265553034990032,0.3261194029850746,0.3258366839258338,0.3247464080673469,0.3225653133815773,0.3201303941892298,0.3204356455131464,0.3207444084002049,0.3226283616403201,0.3231882973549328,0.3238542241855328,0.3254913452079452,0.3260091291506309,0.3276636636636637,0.3277190607590982,0.3286218076332404,0.3308355541620943,0.3343028349160739,0.3381406436233611,0.3384832740862273,0.3419826307985596,0.3425068801601201,0.3410776449220524,0.3450193195740269,0.3458985301090564,0.3467962344366839,0.3446122860020141,0.3493413830954994,0.3494068120933792,0.0,2.3556123467747625,57.63967580152745,184.9165420834224,274.2734799968224,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95759,44493,420.23204085255696,6124,62.68862456792573,4769,49.24863459309308,1932,19.820591276015836,77.31912755708531,79.66774174812859,63.32066847763053,65.05779759461248,77.078280609367,79.42775842337421,63.23013711894573,64.97005891835322,0.2408469477183104,239.9833247543768,0.0905313586847995,87.73867625926357,159.03426,111.4180334167821,166077.6115038795,116352.54484359911,345.09461,222.89346815857115,359844.05643333786,232230.83799806933,353.38721,170.89570761667795,364991.5203792855,175455.27821532905,2729.6254,1246.4187463741157,2820749.297716141,1271853.994271156,1170.01267,519.5269236361905,1204977.9028603055,525683.271166356,1899.4446,803.5036944928913,1950511.241763176,811026.1593738121,0.38168,100000,0,722883,7548.982341085433,0,0.0,0,0.0,29372,306.153990747606,0,0.0,32423,334.6004030952704,1618312,0,58098,0,0,6347,0,0,62,0.6474587245063127,0,0.0,0,0.0,0,0.0,0.06124,0.1604485432823307,0.3154800783801437,0.01932,0.3358348968105065,0.6641651031894934,24.72265149449,4.418247342309257,0.3076116586286433,0.2367372614803942,0.2222688194590061,0.2333822604319564,11.187181854722413,5.799122294879686,20.618319678388637,12345.168081149932,53.93592951071145,13.560514238735534,16.424148998211496,11.7457082280492,12.205558045715234,0.5600754875235898,0.7847652790079717,0.6952965235173824,0.5792452830188679,0.1356693620844564,0.7199354317998385,0.9197994987468672,0.8387096774193549,0.7391304347826086,0.180672268907563,0.5039660056657224,0.7109589041095891,0.6465753424657534,0.5349397590361445,0.1234285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002319010825426,0.0048034536223512,0.0069903818838521,0.0094558085681204,0.0116443441030804,0.0140743230169156,0.0163038490950802,0.0184822121472041,0.0205926259176703,0.0226758530318076,0.0248741425803078,0.0268921541447186,0.028971645429021,0.0309979293506814,0.0333168245320786,0.0354075589867609,0.0374135574972048,0.03936517815466,0.0415848374325883,0.0435353177661591,0.0573050948300157,0.0716848502599399,0.0850394361470045,0.0976056027004006,0.1093435381679791,0.1249762080998202,0.1376629437532482,0.149146049481245,0.1604980458321765,0.1703117629400917,0.1837310475534114,0.1960845850828968,0.2077228476641105,0.2178591345996129,0.22790590202896,0.2386142122984228,0.2481522831305124,0.2577566706805163,0.266798351667064,0.2743413516609393,0.2818514486879588,0.2891181153990259,0.2950942054745823,0.3008776247703889,0.3073273397486587,0.3116171095525042,0.3165488367428801,0.3206816125208702,0.3247411981423345,0.3293870486106523,0.3282819430774831,0.3276771572205771,0.3261921899036086,0.3253580894173534,0.3246822822107801,0.3225192888807081,0.3222572919475329,0.3228728300894266,0.3232231701687497,0.3242570712495524,0.3253371905173385,0.3263532904502721,0.3274198633736206,0.3287932504599919,0.3310273345224895,0.3321230801379166,0.3330097364588984,0.3366374020579628,0.3392316892985295,0.3406432168775032,0.343892019632794,0.3462640628316705,0.3486775818639798,0.349553128103277,0.3506088926649674,0.3536829699469652,0.3542300669506999,0.3588807785888078,0.362561847168774,0.3631859756097561,0.0,2.1615171998061227,54.29978967460503,180.27266370855665,264.4500050923083,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95680,44286,420.0146321070234,6098,62.61496655518394,4757,49.111622073578594,1856,19.032190635451503,77.34181859432726,79.72409918645441,63.3271521787835,65.08534828798837,77.11094948312169,79.49415170665597,63.242759769616704,65.0035473628163,0.2308691112055783,229.9474797984402,0.0843924091667958,81.80092517206106,158.28142,110.8435559384124,165427.4456521739,115847.74512793936,345.27925,222.97771639311875,360221.70777591976,232398.5500304591,357.77038,172.7303447069139,369808.3612040133,177375.72882604392,2728.3618,1238.954850727899,2820220.108695652,1263587.1118570094,1128.60703,491.63223946034645,1165791.220735786,500141.5796954079,1820.85598,754.8620912165818,1869870.8821070236,761759.6185075458,0.37897,100000,0,719461,7519.429347826086,0,0.0,0,0.0,29366,306.25,0,0.0,32704,337.6881270903009,1623235,0,58272,0,0,6306,0,0,61,0.6375418060200668,0,0.0,0,0.0,0,0.0,0.06098,0.1609098345515476,0.304362085929813,0.01856,0.3244639223665675,0.6755360776334325,24.6926427322572,4.352969562993836,0.3279377759091864,0.2402774858103847,0.2095858734496531,0.2221988648307757,11.23636399571615,5.7641777373436085,19.6527230934188,12282.0290996337,53.79356425821936,13.70245609758989,17.54392857810263,10.995276794292147,11.551902788234685,0.549505991170906,0.7699037620297463,0.676923076923077,0.5737211634904714,0.1002838221381267,0.7289644012944984,0.9146067415730336,0.8498659517426274,0.751219512195122,0.107981220657277,0.4865095143425163,0.6776504297994269,0.6225779275484414,0.5277777777777778,0.0983412322274881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493432977893,0.0047842525112257,0.0068991406511571,0.0091710507606995,0.011398299914589,0.0138673943145719,0.0160535730666911,0.0182722048120208,0.0202679912918161,0.022213350530766,0.0241981789844967,0.0261890334706117,0.0280444019217513,0.0299648623862664,0.0320063579221154,0.0341428600980534,0.0360407038196099,0.0381452718136135,0.0400927939080591,0.0418247779492097,0.0561805969057841,0.0695760520171296,0.0833333333333333,0.0955502477930112,0.1083732410708634,0.1238325911980284,0.1362290855463486,0.1481654940446412,0.1591329152466319,0.1694869815124608,0.1827629283421999,0.1951522886562256,0.2074624268656067,0.2185016343620522,0.228041228041228,0.2389063001805114,0.2487751526176579,0.2580333142130895,0.2670456479558838,0.2738733168452871,0.2817417646582723,0.288276071683247,0.2938012083091947,0.2998466992430775,0.3054526911355827,0.309588636055637,0.3148268614891913,0.3195465764229918,0.3241503471142887,0.3289175067292975,0.3277902702411569,0.3271551427588579,0.3262861169837914,0.3257256012950971,0.3251660450810538,0.3235289609613291,0.3206836524766577,0.3213658664653857,0.3229321446260525,0.3233279828785447,0.3236558737755178,0.3242587441557673,0.325778326050139,0.3256780304722756,0.3269281579516249,0.3280544757233426,0.329201926090549,0.3322852471387247,0.3353164824332887,0.3380942908295206,0.3401261080142557,0.3427492286413448,0.34402460456942,0.3444655762647394,0.3468489558947467,0.351142313184198,0.3514881865602945,0.3566504460665045,0.3598885793871866,0.3621558743699108,0.0,2.23739752280699,54.22843567512855,178.16017674380709,265.34736340888924,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95701,44112,417.7699292588375,6134,63.12368731779188,4756,49.34117720817965,1920,19.832603630056116,77.38307130315455,79.75848731446489,63.34642469116329,65.09700681762283,77.15101826040944,79.52384788818995,63.26121395009008,65.01282162123941,0.2320530427451075,234.6394262749385,0.0852107410732188,84.18519638341593,159.47668,111.71905458451272,166640.55756993135,116737.60418857976,347.75123,223.75665505828,363028.6935350728,233464.13836666275,349.90734,168.26080461539894,363271.3973730682,174103.5648681985,2716.65584,1229.8856289258115,2819283.4348648395,1265725.780217355,1114.99805,488.8890578214604,1155542.512617423,501307.9777865021,1879.87278,774.200240765902,1942953.3442701744,789980.1900995414,0.37939,100000,0,724894,7574.570798633244,0,0.0,0,0.0,29618,309.1190269694152,0,0.0,32024,332.2744798904923,1618447,0,58151,0,0,6231,0,0,57,0.5956050615981024,0,0.0,1,0.0104492116069842,0,0.0,0.06134,0.1616805925301141,0.313009455493968,0.0192,0.3338528678304239,0.6661471321695761,25.0120367903287,4.442064023069723,0.3191757779646762,0.2264507989907485,0.2375946173254836,0.2167788057190916,11.227167704729652,5.74087650623041,20.17501885634377,12335.13833446718,53.498000018149945,12.699817139782402,17.10212216843449,12.462782290552951,11.233278419380106,0.5567703952901598,0.7641597028783659,0.7022397891963109,0.5637168141592921,0.1183317167798254,0.7221764220939819,0.8991825613079019,0.8740740740740741,0.6853448275862069,0.1578947368421052,0.5001411233418007,0.6943661971830986,0.6397124887690926,0.532293986636971,0.108272506082725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022878430499174,0.0044779446031649,0.006724069735601,0.0088955684633819,0.0110213003914391,0.0132027647424086,0.0154437399335358,0.0174851228449815,0.0197172733126859,0.0219173875211137,0.024011400801747,0.025959089788877,0.0280048954573035,0.0300870371324097,0.0321662161883343,0.0342097647691099,0.0364956698296937,0.0382882882882882,0.0403398573181638,0.0423753543438385,0.0572362785450139,0.0700138185168125,0.0830544569516276,0.0959435589014593,0.1086042024691878,0.1239930650992663,0.1364609611837781,0.1488196512122501,0.1603187812059915,0.1709125190152765,0.1846345818721628,0.1969428349044365,0.2083659363588941,0.2182926962546857,0.2283740829951276,0.2391208012053531,0.2489726639271038,0.2580438087730165,0.2665955079145186,0.274288726181064,0.2810036920868971,0.2876741191618869,0.2949064202795546,0.3004451483627899,0.3065080986429301,0.3119348670819712,0.3178260597332665,0.3217714620419181,0.3263388459743895,0.3303263640325968,0.329442492292365,0.3291243707188248,0.3288099327120696,0.3280326992792871,0.3272667893830532,0.3256893382352941,0.3238711924513963,0.3241895261845386,0.3249820555764432,0.3264847110904839,0.3270677393463125,0.3283717267178578,0.328886105021401,0.3302376339057036,0.3320742989648825,0.3322364159303501,0.3321636764955571,0.3352267407384289,0.3389824585924942,0.3406853091768412,0.3410090204433162,0.3426661754644492,0.344866350237322,0.3448275862068966,0.3463997775924381,0.3500175008750437,0.3520705636119001,0.361062292520992,0.3696808510638298,0.3721100917431192,0.0,1.3700479670203745,53.99329181836829,177.09921158376966,267.81814013947405,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95676,44447,421.589531334922,6220,63.600066892428615,4900,50.45152389313935,1956,20.025920816087627,77.3960056150407,79.78071926218784,63.35197710932333,65.11320161275096,77.14972038670673,79.53636237017876,63.259965100588005,65.02478520204798,0.2462852283339742,244.35689200907973,0.092012008735324,88.41641070297612,159.72902,111.82973914312468,166947.84480956563,116883.79441356732,347.18945,223.84007784878216,362099.8474016473,233176.2532775336,358.31661,173.34756863021212,368761.3821648062,177041.3946165438,2830.28208,1306.775289435802,2916473.8492411887,1324153.2049870575,1178.25595,523.8620780131256,1212918.0254191228,529055.4397781701,1921.21284,814.0711109207048,1968334.6920857893,816378.5303195122,0.38215,100000,0,726041,7588.538400434801,0,0.0,0,0.0,29587,308.4263556168736,0,0.0,32836,337.5768217734855,1619603,0,58042,0,0,6353,0,0,74,0.762991763869727,0,0.0,0,0.0,0,0.0,0.0622,0.1627633128352741,0.3144694533762058,0.01956,0.3422059048493193,0.6577940951506808,24.077013713525893,4.406053531768483,0.3106122448979592,0.2344897959183673,0.230204081632653,0.2246938775510204,11.203173425241149,5.667520212958178,20.814773279635546,12314.19817981474,55.60627155476926,13.778059312815742,17.121534468954316,12.565293414353812,12.1413843586454,0.5502040816326531,0.7919930374238469,0.6727989487516426,0.5602836879432624,0.1180744777475022,0.7199091597274792,0.92,0.8663239074550129,0.7132075471698113,0.140495867768595,0.4875663593182453,0.7168508287292817,0.6063548102383054,0.5133256083429896,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.0044716189085599,0.0070136619232252,0.0091643383286766,0.011270929546518,0.0134810410133181,0.0155795956238465,0.0178664406987309,0.0198634198204829,0.0221396548547564,0.0244720114824687,0.0264589921557353,0.0284271477203772,0.0302949144511171,0.0323475999834908,0.0340931410554607,0.0360901632551586,0.0380443244926558,0.0400216333153055,0.0420557825398148,0.0564155594551683,0.070160750167448,0.0840378443013279,0.0964777625906844,0.1083200691494408,0.1238354078319814,0.1368039126237282,0.1487955205927124,0.1598068644312221,0.1706315157235402,0.182920656119075,0.1951926613444105,0.206699053394629,0.2164735461303017,0.2262055314235443,0.2379513070050154,0.2476993608406117,0.2568792907785481,0.2656853746699754,0.2749319673443253,0.2815722319088253,0.2880275523904033,0.2950341373526424,0.3007382060516146,0.3072445490043899,0.3123040415093875,0.3177269210611695,0.3216785877339826,0.3262308833967864,0.3305574193208878,0.3294041833364659,0.3286233623705329,0.3281702414752762,0.3267669411476284,0.325246893442866,0.323591899121131,0.3221723603956641,0.3238869049569177,0.3243031284630466,0.3249136057572411,0.3261951073539313,0.3260016949486588,0.327280317261532,0.3283392698130009,0.3301520310776462,0.3305606820722102,0.3310931518502765,0.3353407985947743,0.3386593783944777,0.3398934478371501,0.3429094236047575,0.3432192109046376,0.3490399191510864,0.3518998931786968,0.3528019689511548,0.3529129705106689,0.351044226044226,0.3512742099898063,0.3540510543840177,0.3486024844720496,0.0,2.937798702779344,57.19813663368913,179.2599519096608,273.1110570238583,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95834,44612,421.3535905837177,6156,63.150865037460605,4785,49.47096020201599,1859,19.074649915478847,77.38566316619061,79.70703370669138,63.36611244363343,65.08437740328351,77.15044019825359,79.4725499616217,63.27832242502701,64.99951639167509,0.2352229679370197,234.4837450696815,0.0877900186064124,84.86101160842452,158.24974,110.8826318529999,165129.01475467996,115702.8109574889,349.70381,226.5545989673698,364370.07742554834,235867.7721267021,358.67763,173.95517832781405,371915.4892835528,179682.25951069134,2740.956,1254.120983974733,2832373.520879855,1281224.8799205737,1105.77059,490.2550318452022,1139809.0865454848,497788.19761185977,1815.77086,766.8100296191936,1863005.5095268905,771380.85958512,0.38192,100000,0,719317,7505.864307030907,0,0.0,0,0.0,29762,310.0674082267254,0,0.0,32797,339.8480706221174,1623568,0,58214,0,0,6369,0,0,63,0.6469520212033307,0,0.0,0,0.0,0,0.0,0.06156,0.1611855886049434,0.3019818063677713,0.01859,0.3369969040247678,0.6630030959752322,24.510214586594017,4.4037235730366255,0.3414838035527691,0.2307210031347962,0.2135841170323928,0.2142110762800418,11.11143910331569,5.793366698231142,19.96742779333512,12422.577231723975,54.19239345926312,13.16355347695538,18.426867092854444,11.264688603176896,11.337284286276397,0.5538140020898642,0.7762681159420289,0.6682986536107711,0.5684931506849316,0.1170731707317073,0.7190146266358738,0.9127358490566038,0.8409638554216867,0.7043478260869566,0.1565217391304348,0.4922547332185886,0.6911764705882353,0.6095159967186218,0.5290404040404041,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020256651778027,0.0043186034488002,0.0067694431194243,0.0086054497795298,0.0108832743398836,0.0130332959983708,0.0152585389719597,0.0174915807735483,0.0196126526649292,0.0220225546982132,0.0244314862829092,0.0265731968920957,0.0287564234326824,0.0312715519459798,0.0332037493426276,0.0352011568455301,0.037114831446723,0.0392528789245105,0.0414001495264994,0.0433307665091885,0.0583123832969967,0.072622544663858,0.0853641919017221,0.0975791707819362,0.1099945223949774,0.1261855974988909,0.1384318752449863,0.1509135162137171,0.1621549554161866,0.1735926655813555,0.1872116656450624,0.1990429691719415,0.2106205833505205,0.2213660474558512,0.2316418303811646,0.2419736434794145,0.2506238303181534,0.2588594727560682,0.267613771539272,0.2748545365173356,0.2821125817106691,0.2896051157580284,0.2966665879742203,0.3025373794356332,0.3084423449612403,0.3138312246652745,0.3183440221595588,0.322654288105928,0.3267361245594329,0.3306663859353616,0.3300940860215053,0.3290834901836866,0.3284140628297294,0.3269750046929375,0.326160882671775,0.325591720505833,0.3245199923959191,0.3252788409415707,0.326053843125845,0.326466012125114,0.3278848316712904,0.328393351800554,0.3289241251682369,0.3309777000044869,0.3317387837935783,0.3343382969798658,0.336368843069874,0.3412302839116719,0.3438778389053463,0.3484153876818816,0.3493238304093567,0.3516571064372211,0.351291745431632,0.3526375711574953,0.3562817856470145,0.3627509205368808,0.3643054277828886,0.361555600567146,0.360759493670886,0.3667174409748667,0.0,1.742954928781361,57.38928977299239,175.42771061177294,263.1616702659806,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95763,44225,417.7813978258826,6127,62.65467873813477,4817,49.695602685797226,1921,19.69445401668703,77.37657405990127,79.72181321982609,63.3458979718325,65.07931651450345,77.13652131040119,79.48198729326793,63.2566477220042,64.99221073600944,0.2400527495000801,239.8259265581544,0.0892502498283036,87.10577849400636,159.57876,111.72249540234358,166639.2656871652,116665.61762094294,347.68129,224.44968836027908,362477.34511241294,233793.4049270377,358.80437,173.15553226824358,370732.49584912753,177742.99348938194,2755.46132,1264.7592087776943,2847442.958136232,1290785.2602546858,1142.58687,504.4872302608289,1179694.6210958303,513362.4889162085,1879.50276,794.2518612225708,1930350.511157754,802248.2040303834,0.37907,100000,0,725358,7574.512076689326,0,0.0,0,0.0,29584,308.30278917744846,0,0.0,32781,338.2934954001023,1617445,0,58039,0,0,6290,0,0,73,0.762298591313973,0,0.0,1,0.0104424464563557,0,0.0,0.06127,0.1616324161764318,0.3135302758283009,0.01921,0.3287181082762912,0.6712818917237088,24.5460413997166,4.379025820639876,0.3205314511106498,0.2362466265310359,0.2202615735935229,0.2229603487647913,11.14217211835893,5.762745747637014,20.499477306806774,12289.291536623294,54.65497180488925,13.652297258168666,17.41688083111907,11.760973806027833,11.8248199095737,0.567780776416857,0.8031634446397188,0.6968911917098446,0.590009425070688,0.1108007448789571,0.7244897959183674,0.906801007556675,0.8430379746835444,0.77734375,0.1371681415929203,0.5114309906858594,0.747638326585695,0.6466492602262838,0.5304347826086957,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.0045109428377378,0.0067574423182288,0.0088179121459628,0.0109836465706614,0.0130548568751845,0.0151318942398874,0.0172336341732347,0.01942362935626,0.0216498961009714,0.0238397835355854,0.0260826721138152,0.0282606684280324,0.030421931802968,0.0326304495842532,0.0347183462532299,0.036665424121935,0.0388074565088849,0.0412192155354339,0.0432491538661806,0.0574741434192262,0.070869106005626,0.0843099436046877,0.0972436766390298,0.1098688023605037,0.1253884367403022,0.1364474883908314,0.1483002606798957,0.1589329004560163,0.1700945803933343,0.18319188350853,0.1952478332846431,0.2064099914054765,0.2171829352357401,0.2274393667499697,0.2374027355960008,0.2479564945506521,0.2570007203313524,0.2655703844931681,0.2733882972632543,0.2805251894268031,0.2881395566364231,0.2943290923709974,0.3003460373337165,0.3053764224383964,0.3105228782333296,0.3156368363813643,0.3199883109292811,0.3243861758659478,0.3280112857293534,0.3271507869306345,0.326646422731832,0.3263621276476048,0.3255427878507911,0.3241471373479679,0.3226497360972998,0.3211421339871866,0.3214982698394477,0.322301912568306,0.323527838690699,0.325501217912685,0.3263847763433218,0.3269911041339612,0.3277245375529307,0.3293270960777258,0.330201447087606,0.3301288432549276,0.3323513742204393,0.3351203616104278,0.3377339042182049,0.3418585601165013,0.3463070142834386,0.3490198542347323,0.3519306780176345,0.3524674594999532,0.3559843731502308,0.3559115179252479,0.360655737704918,0.3589465109964703,0.3605751040484298,0.0,2.354350657311616,55.807794855587005,184.66785157480288,260.8825982664259,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95760,44193,418.4837092731829,6099,62.59398496240601,4851,50.16708437761069,1942,20.00835421888053,77.3313489084019,79.69802120918347,63.31030609897547,65.06336419157608,77.09419657655289,79.4599485025741,63.22380999434134,64.97845090809544,0.2371523318490176,238.07270660937263,0.0864961046341292,84.91328348064542,158.87564,111.30361803441222,165909.77443609023,116231.4290500128,349.28105,225.52769015973348,364254.5321637427,235023.81685401368,362.81294,175.14863559893342,375372.7339181287,180246.05777092796,2780.00516,1273.4109670359865,2876526.232247285,1303345.0907143964,1140.29926,503.85568346190496,1178046.0108604846,513450.9858785198,1903.96846,783.8552360560584,1962603.1537176275,796645.5349908165,0.37861,100000,0,722162,7541.353383458646,0,0.0,0,0.0,29787,310.5367585630744,0,0.0,33181,343.05555555555554,1616701,0,57980,0,0,6244,0,0,52,0.5430242272347535,0,0.0,0,0.0,0,0.0,0.06099,0.161089247510631,0.3184128545663223,0.01942,0.34140625,0.65859375,24.622749419381343,4.338921534869925,0.3310657596371882,0.225314368171511,0.2228406514120799,0.2207792207792207,11.431676916331575,5.904467698226558,20.492476553756266,12273.077263361383,55.10123113554537,13.14572761899032,18.19105417615417,12.144228645982691,11.6202206944182,0.5687487116058545,0.7959743824336688,0.7017434620174346,0.5975948196114709,0.1083099906629318,0.7329721362229102,0.890625,0.8657074340527577,0.7818181818181819,0.1342592592592592,0.5091317785894914,0.7447108603667136,0.6442388561816653,0.5347394540942928,0.1017543859649122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022087356508171,0.0045326870620684,0.0068003044912458,0.0092054460475513,0.0112515005391767,0.0131987656709881,0.0153562215129854,0.0177358914404157,0.0198426904233448,0.0220722289366409,0.0242964391204463,0.0264036574716186,0.0283212069444587,0.0303317633236109,0.0325147864862354,0.0346096973331816,0.036324852702101,0.0381658002054602,0.0403733810107898,0.0421088810890191,0.0565025417271218,0.0704285774076089,0.0834740651387213,0.0966361370782027,0.1087107793522267,0.1243336999746171,0.1381622929422626,0.149769928848366,0.1604826126915596,0.1712035536861983,0.1835023548049876,0.1958743909041689,0.2081378514591746,0.2184349653564509,0.2286113771729916,0.239067055393586,0.2480711039649839,0.2570087672897932,0.2647219007420519,0.2729793206163716,0.2801805451073433,0.2870640300656809,0.2944166646918027,0.3000108034138788,0.3055244721222147,0.3104558235903507,0.3152821591307396,0.3195381520991929,0.3241189741462023,0.3284788148461122,0.3280961556600595,0.3270098497771419,0.3257814700084483,0.3248064478853709,0.3241655540720961,0.3214755452237482,0.3186860068259385,0.3189194505458479,0.3192008879023307,0.319396175301645,0.320148932587423,0.3225176150156907,0.3241858227530381,0.3254110078627591,0.3254864280566898,0.3254741558982909,0.3263415188722146,0.3296959023868675,0.3334037980481274,0.3374561123523779,0.3395631511606653,0.3420465412814791,0.3460401333584953,0.3460633209323513,0.345909600298842,0.3498480953493807,0.3532412965186074,0.3559889676910953,0.3667114093959731,0.3674698795180723,0.0,1.8342476321823364,57.23072683607035,183.5155416647349,265.0273630535658,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95494,44116,418.466081638637,6038,62.02483925691666,4747,49.15492072800385,1900,19.519550966552877,77.22623088476638,79.71190544513253,63.24095407219974,65.07571870996593,76.98414766857401,79.47059174519364,63.15087221407739,64.98812203824602,0.2420832161923698,241.3136999388854,0.0900818581223532,87.5966717199077,157.6927,110.4661547400699,165133.39057951284,115678.4300329358,346.2625,223.44579630434524,362056.0872934426,233445.2242380863,353.64325,170.95786510547612,366615.16953944747,176143.95442937705,2713.73688,1246.138221964027,2812492.135631558,1275739.1539950434,1117.71505,491.4471445636122,1158492.7744151463,502779.0737747828,1856.17756,786.0193827949637,1909406.78995539,795004.164572683,0.37783,100000,0,716785,7506.063208159675,0,0.0,0,0.0,29437,307.67378055165767,0,0.0,32337,334.95298133914173,1618976,0,58120,0,0,6368,0,0,75,0.7853896579889836,0,0.0,2,0.0209437242130395,0,0.0,0.06038,0.1598073207527194,0.3146737330241801,0.019,0.3316118935837245,0.6683881064162754,24.74786998041007,4.339280086472943,0.3267326732673267,0.2254055192753317,0.2285654097324626,0.2192963977248788,11.152279146038632,5.809096156622607,20.432310203105853,12254.96063820856,53.90068964965013,12.786256459061963,17.55763650839517,12.113746563482254,11.443050118710758,0.5546661049083632,0.7813084112149533,0.6924564796905223,0.567741935483871,0.1027857829010566,0.7145085803432137,0.9088607594936708,0.8514851485148515,0.7410358565737052,0.1163793103448275,0.4955266955266955,0.7066666666666667,0.6364428945074107,0.5155875299760192,0.0988875154511742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698485078786,0.0044427764309696,0.0066603041809653,0.009059481443823,0.0109952761035999,0.0130866839932732,0.0153470953785242,0.0175137432816299,0.019611855095297,0.0219770086678551,0.0240803087534899,0.0259204803668555,0.0282860526180301,0.0302198935599653,0.0324017151418091,0.0343838651564408,0.0365971307351583,0.0384499443884286,0.0407663617610901,0.0426864923565282,0.0576844573306676,0.071991355162248,0.084855559411511,0.0976064754798115,0.1095282380791342,0.1247257348186934,0.1375776133367355,0.1498682371517886,0.1611973867409232,0.1709319947977686,0.1840471589130129,0.1962360342770365,0.208013956277599,0.2184923697596912,0.2273885842280064,0.2378533961593172,0.2474127611013526,0.256928315331364,0.2650551700602889,0.272963077735312,0.2803808772703022,0.2866540030955396,0.2921472305282643,0.2977186403192461,0.3036332601804438,0.3094301338678148,0.3142824821830339,0.3189191261999412,0.3240966987262802,0.3282094057832856,0.327084487815427,0.3259807978811455,0.3241956896308222,0.3233374339677256,0.3221581511778641,0.3200368776889981,0.3182251605110927,0.3190675591018497,0.3198318029691925,0.3205551172631428,0.3215339233038348,0.3219700723416906,0.3224194056494802,0.3227063963257533,0.3227520861890676,0.3237419455821355,0.3249408343075475,0.3294213887927508,0.3329114369089055,0.3351890881616097,0.3386588761583056,0.3433667781493868,0.345661182971242,0.345179584120983,0.3481481481481481,0.3531056986365225,0.3516182950919313,0.3516595398085929,0.3564738292011019,0.3579915676504407,0.0,2.1255506537671214,56.48667397459248,174.6482643026389,262.2861787699781,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95713,44321,419.3474240698756,6218,63.67995988005809,4841,50.04544837169455,1953,20.049523053294745,77.36399481233721,79.7489430348444,63.33329461681414,65.09742487199833,77.12019470827046,79.50469081945243,63.24204668800552,65.00833218739596,0.2438001040667501,244.25221539196684,0.0912479288086203,89.09268460236319,159.02458,111.35910806260178,166147.31541169956,116346.89965062402,346.58776,223.47752363077095,361580.50630530855,232956.1435027331,357.41805,173.14788949965154,370018.83756647474,178297.5431390186,2787.10404,1284.437765848077,2884393.4679719578,1314422.540144052,1150.87918,513.2785697513789,1187545.2446376146,521386.4049307609,1914.65186,811.3975857117111,1968179.4113652275,820797.0506678699,0.37918,100000,0,722839,7552.150700531799,0,0.0,0,0.0,29508,307.7429398305351,0,0.0,32661,337.8120004597077,1621497,0,58183,0,0,6524,0,0,63,0.6582177969554815,0,0.0,0,0.0,0,0.0,0.06218,0.1639854422701619,0.3140881312319074,0.01953,0.3459226144596886,0.6540773855403114,24.50907649920425,4.426942919671335,0.3218343317496385,0.2282586242511877,0.2230944019830613,0.2268126420161123,11.028330957408825,5.648951908035968,20.93163688984481,12326.411403675133,54.800947315566255,13.1675131820621,17.644341521368535,11.989705921271849,11.999386690863778,0.552984920470977,0.7638009049773755,0.7207958921694481,0.5546296296296296,0.1010928961748633,0.7192851824274014,0.888631090487239,0.8655256723716381,0.7286245353159851,0.141025641025641,0.489136649514008,0.6839762611275965,0.6692776327241079,0.4969173859432799,0.0902777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021782960658959,0.0042897563053332,0.0066900836514253,0.009055430209159,0.011182563747736,0.013723332722049,0.0160961279529968,0.0182707626945545,0.0204350894418704,0.0230188717885704,0.0251758721824558,0.0271030820897821,0.029109236782555,0.0312825215608288,0.0333243890356671,0.0354846047271448,0.037540010565897,0.0390797679703633,0.0409559152191765,0.042863096478433,0.0576047453945444,0.0712356869230286,0.0852295974569603,0.097506598942066,0.1096763992832296,0.1250806204337115,0.1377108983128135,0.1496063829787234,0.1613750400341624,0.1718416737226825,0.1844047952133956,0.1967461382025875,0.208721183123097,0.219020330493553,0.2287974300581977,0.2399459650987687,0.2490405640590834,0.257793872868775,0.2671145052027188,0.2743427681597508,0.2811220358588779,0.2885858952021236,0.2949866824504291,0.3006700468673211,0.3064888370624104,0.3112777695680015,0.315895472911272,0.3208683936243232,0.324629809246686,0.3279217784337238,0.3277037475292124,0.3264181790704384,0.3255284141247943,0.325036793351225,0.3232856401512343,0.3215915508005067,0.3201160389108739,0.3205389955083708,0.3213860645424559,0.322249911000356,0.3231784859365649,0.3234359895042121,0.3251359263906315,0.3259595598103247,0.3278200542525866,0.3279741086808999,0.3274050813588353,0.3306213482440158,0.333380153100639,0.3376803551609323,0.341255055209706,0.3451107108803898,0.3461684130791567,0.3490328006728343,0.3482784714339765,0.3495469718645684,0.3516890328551596,0.3558282208588957,0.3516666666666667,0.3499029126213592,0.0,2.1080382422400183,59.10705892554866,170.6431904398564,269.1940284256867,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95666,44375,419.72069491773465,6143,62.85409654422679,4852,50.09094140028851,1913,19.588986682834022,77.31725194233033,79.72440741838892,63.30264576078415,65.08473496922852,77.07921005256,79.49005651718805,63.21377062401166,64.99992024133341,0.2380418897703293,234.35090120086957,0.0888751367724935,84.81472789510747,158.70514,111.16523889651374,165895.03062739113,116201.40791557476,349.00276,225.24341487786356,364191.7400121255,234826.5222929956,358.60794,173.12008413023494,371110.66627642006,178051.22568929664,2789.62796,1275.451535935004,2880870.110593105,1298142.2140317203,1152.94254,509.0590124220557,1188416.9192816676,515428.7298067595,1877.8786,789.0649120726423,1924401.7519285849,791976.331330954,0.38006,100000,0,721387,7540.683210335961,0,0.0,0,0.0,29717,309.97428553509087,0,0.0,32794,339.03372148934835,1618421,0,58069,0,0,6243,0,0,57,0.5958229674074385,0,0.0,0,0.0,0,0.0,0.06143,0.1616323738357101,0.3114113625264528,0.01913,0.3319913285847011,0.6680086714152988,24.52334792642866,4.355969532764683,0.3161582852431986,0.2351607584501236,0.2236191261335531,0.2250618301731244,11.284901824312188,5.800453952563377,20.274408486942477,12327.549125067657,54.89153312948703,13.70889635834238,17.199388714228416,12.03006425930525,11.95318379761098,0.5467848309975268,0.7905346187554777,0.6792698826597132,0.5511520737327189,0.1016483516483516,0.7039106145251397,0.9150943396226416,0.8347107438016529,0.6877637130801688,0.1222707423580786,0.4920811336482356,0.7168758716875872,0.6310845431255337,0.5129716981132075,0.0961761297798377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024010455185549,0.0048876945697916,0.0070328911982301,0.0092369600341432,0.0113649081752047,0.0134766221860038,0.0156183053475608,0.0181329682902909,0.0203597225348366,0.0226623090557029,0.0248589309531137,0.0269426005466614,0.0290696477466905,0.0309091283996948,0.0328221017299251,0.0348884129496849,0.0367897830346128,0.0389644107048279,0.0409834359913434,0.0431260945709282,0.0579858535413162,0.0722461332244248,0.0852097964496793,0.0975578960659084,0.1095543551654287,0.1246798331957409,0.137499469236975,0.1502204895507126,0.1619082231462379,0.1725839851503739,0.1847817889962617,0.1970466281977719,0.208792285254038,0.2196350181177269,0.2292109582401603,0.2397472844158723,0.2488142932071555,0.258548931383577,0.2671295035847173,0.2751273684813097,0.2821527319844052,0.2884489452266242,0.294655115277186,0.300232468964195,0.3056895357737307,0.3103108163089176,0.314816437395952,0.3189600345976748,0.3238811378872984,0.3284168347239247,0.3271736937663909,0.3262614048587446,0.3256376367368747,0.3245887445887446,0.3244199354905837,0.3230460245914206,0.3218672829734693,0.3221888489503832,0.322888399638182,0.3231885608329767,0.323387278040009,0.3238251387709144,0.324339068401175,0.325256186512731,0.3253851532174458,0.3275461452105579,0.3279949846118773,0.3316169544740973,0.3349591213726797,0.3376695486634409,0.339889563272943,0.3428692970328618,0.3456634263350587,0.3511963917131718,0.350943396226415,0.3501954744698495,0.3457987072945521,0.3498880521066558,0.3492706645056726,0.3419962335216572,0.0,2.450258658425465,54.69217401999194,184.04828704955585,269.65906686602074,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95857,44508,420.79347361173416,6267,64.04331452058796,4884,50.37712425800933,1920,19.68557330189762,77.4717338221379,79.75743591354401,63.40399372213196,65.09041881167435,77.2372180603626,79.52391090036821,63.31619078580557,65.00490089364614,0.234515761775313,233.5250131758073,0.0878029363263905,85.5179180282164,159.92768,111.93581187092047,166839.85520097645,116773.74826138988,344.91155,222.2201326703274,359249.75745120336,231255.53967923828,358.54186,173.27854250871127,370076.6141231209,177763.35015852645,2805.69904,1286.7686225211824,2896578.4032465024,1311998.8550874556,1154.39976,513.5148747788494,1190423.6936269652,521848.3814114172,1886.4514,793.3088428823447,1936882.752433312,802075.0034329994,0.38138,100000,0,726944,7583.629781862566,0,0.0,0,0.0,29421,306.3417382142149,0,0.0,32833,338.5563912911942,1621192,0,58123,0,0,6298,0,0,62,0.6467967910533399,0,0.0,0,0.0,0,0.0,0.06267,0.1643242959777649,0.3063666826232647,0.0192,0.3338409990862016,0.6661590009137983,24.32735655052977,4.351057264932794,0.3144963144963145,0.2454954954954954,0.2158067158067158,0.2242014742014742,11.095230434490157,5.663199877692332,20.292431664983354,12389.226346777445,54.97475825565223,14.4009789097912,17.106394411792714,11.638889191189778,11.828495742878536,0.561015561015561,0.7906588824020017,0.693359375,0.5749525616698292,0.1105022831050228,0.7252081756245269,0.9006772009029346,0.8638743455497382,0.7335907335907336,0.1645569620253164,0.5001403311815885,0.7261904761904762,0.6369150779896013,0.5232704402515723,0.0955710955710955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021257212268448,0.0041738002856824,0.0064592670709201,0.008597239139261,0.0110458499308999,0.013277442591594,0.0155040339010675,0.0177174389783657,0.020086596001062,0.0222122228585453,0.0245291328260223,0.0267470719750579,0.0288355847757974,0.0307024312950787,0.0327378804902435,0.0346547433421794,0.0367313162658391,0.0387090756459285,0.0406088735216854,0.0427701753473125,0.057817632031698,0.0720654798615974,0.0852702617735208,0.098835865431087,0.1106040325045584,0.1251612221165028,0.1379204309284472,0.1492159407646971,0.1606610934947631,0.1712806662165203,0.1855335083717126,0.1973997060349299,0.2089912042567054,0.2198067369110662,0.2296158789090389,0.2401039363113666,0.2496824654054415,0.2587169150262209,0.2673923385361212,0.2749093736777705,0.282477393724521,0.2897279133803145,0.296741197453433,0.3021747972342513,0.3077828328783742,0.3143247501353946,0.3186174666050208,0.3225253371942391,0.3274019512825483,0.3312930274190788,0.3303097493784855,0.3296676173760421,0.3285650110902097,0.3273794959628089,0.3272544259577239,0.3251395285004117,0.3231530509329299,0.3239993465120078,0.3247068819031435,0.3258245464550715,0.3267858141225144,0.3279171660412205,0.3288067814966779,0.3299204903833341,0.3312007639054667,0.3322975737331365,0.3328621108880658,0.3356192138649044,0.3372705230342916,0.3402530257334221,0.3432661670331643,0.3463622494607817,0.3513395092638958,0.3554239732786761,0.3565307467746492,0.3591356998694052,0.3598967820279296,0.3661858974358974,0.3716234652114598,0.3679031037093111,0.0,2.229615116144264,57.85826343813364,174.7627138616131,270.86401381999883,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95754,44556,422.1233577709547,6042,61.939971176138855,4726,48.927459949453805,1782,18.349102909539027,77.34438518034166,79.69822053230315,63.33412346583962,65.07259739792192,77.1181370273917,79.46917950638145,63.24981294542484,64.98856677765907,0.2262481529499638,229.0410259217026,0.0843105204147747,84.03062026285113,159.24502,111.51825792775703,166306.3892892203,116463.28918662098,345.69032,223.5780520435881,360597.0507759467,233069.9835449047,355.96331,172.13074792139545,368703.4901936212,177425.92483109495,2693.21064,1234.5936620595323,2790285.64864131,1266989.5169491947,1089.00914,480.24625979947314,1126170.7082732837,490413.58042428776,1749.28952,740.9436446941767,1803346.0534285773,755420.071288039,0.38161,100000,0,723841,7559.381331328194,0,0.0,0,0.0,29449,307.1098857488982,0,0.0,32587,337.29139252668296,1617939,0,58101,0,0,6276,0,0,67,0.6892662447521775,0,0.0,2,0.0208868559015811,0,0.0,0.06042,0.1583291842456958,0.29493545183714,0.01782,0.3354390397978521,0.6645609602021478,24.41849732520192,4.337078555091471,0.3256453660600931,0.2369868810833686,0.2228099873042742,0.214557765552264,11.101273411935614,5.656743716985278,19.23594574132809,12302.382592297685,53.46673387028511,13.4095416356725,17.350245862551084,11.548926698208994,11.158019673852529,0.5592467202708421,0.7875,0.6770630279402209,0.5688509021842355,0.1183431952662721,0.71953125,0.9138755980861244,0.8492462311557789,0.7049180327868853,0.1318181818181818,0.4997098084735926,0.7122507122507122,0.6170026292725679,0.5278121137206427,0.114609571788413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0043291798890837,0.0064834261711259,0.0086529965570823,0.0107367265184944,0.0129386255128113,0.0151647948472309,0.0175008929026991,0.0195359197310745,0.0216412565230737,0.0237314533978194,0.0258849852716281,0.0280385362794188,0.0299993820930567,0.0322371000020631,0.0340708284677944,0.0361346016499156,0.038266099761485,0.0402190744416615,0.0424856003083044,0.0572275636006806,0.0716699978024967,0.0848033560566334,0.0974973711882229,0.1095072909966998,0.1251876757808369,0.1373923556611377,0.1496292513750146,0.1609888936351986,0.1712849317711627,0.1847881077706375,0.1969931317938456,0.2080860130889483,0.2188111345479185,0.2289066537645286,0.239109979520673,0.2489818688981868,0.2579281183932346,0.266690868662575,0.2741303899791614,0.2814372642928206,0.2884318405166362,0.2943661471830736,0.3002734665483244,0.3058536170419608,0.3104150217133833,0.3145374559765375,0.319929134058987,0.3245874437717945,0.3287231513037965,0.3286774510728284,0.3274160921438302,0.3270106114626344,0.3256516647631164,0.3251892277722426,0.3228428575810558,0.3202981287662543,0.3213734441196755,0.321934546697428,0.3217091636311692,0.3225196201464721,0.3248278175754346,0.3268217183970551,0.3277429152057884,0.3287266259674085,0.3284618385125471,0.3291185997613229,0.3322872206879236,0.3348390937423399,0.3372752887019326,0.3403752669119985,0.3407427055702918,0.3429593822587733,0.3470893892612395,0.3451335699607696,0.345697851860547,0.347474439188158,0.3489039131325548,0.3493642896627971,0.3531237873496313,0.0,1.695001983945547,56.61612035049521,172.7516243515178,260.23765828328976,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95660,44592,421.8900271795944,6334,64.9278695379469,4951,51.066276395567634,1997,20.342881037006062,77.28108161739658,79.66872112404353,63.29287913429015,65.05583306832634,77.03101611505973,79.42476704454313,63.19965685760665,64.96881830089193,0.2500655023368523,243.95407950039785,0.0932222766835053,87.01476743441106,158.6552,111.16231058007142,165853.23019025716,116205.63514538096,348.94741,225.42537807629105,364066.4018398494,234941.6765548561,360.82238,175.01294410460693,373862.32490068994,180345.4844907652,2848.28808,1310.7860564368427,2936497.804725068,1329361.8450822122,1176.40666,529.7944659658907,1207935.4380096174,532211.9594852729,1966.36222,823.4802928931207,2003369.579761656,814785.8092939742,0.38163,100000,0,721160,7538.783190466235,0,0.0,0,0.0,29755,310.2968848003345,0,0.0,33075,342.3688061885846,1612758,0,57907,0,0,6267,0,0,66,0.6899435500731759,0,0.0,0,0.0,0,0.0,0.06334,0.1659722768126195,0.3152826018313862,0.01997,0.3229495861550037,0.6770504138449962,24.623361430299163,4.419592565310948,0.3169056756210866,0.2290446374469804,0.2217733791153302,0.2322763078166027,11.145949778709864,5.678376863685293,21.268652908678572,12410.763964981765,56.247319422172815,13.653995507628297,17.72755994280886,12.333845152756949,12.531918818978722,0.5574631387598465,0.783068783068783,0.7004461440407903,0.5801457194899818,0.1182608695652173,0.7193240264511389,0.9140811455847256,0.8523809523809524,0.7198581560283688,0.1458333333333333,0.496100278551532,0.7062937062937062,0.6449086161879896,0.5318627450980392,0.1109890109890109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026338449070556,0.0049777471385557,0.0071546728640003,0.0093974459265881,0.0116347659825478,0.0141847582583194,0.0162326406590941,0.0183158410585208,0.0204855609506772,0.0226102621316492,0.0246075606730167,0.0266027352252659,0.0286816125051419,0.0309199748601337,0.0329851793749742,0.034999379626949,0.0370531506054673,0.0390994768745329,0.0411937876439442,0.0432996997998665,0.0582599337575358,0.073051710055082,0.0865964013521174,0.0989245727754861,0.1117981618461733,0.1269243384507951,0.1390746756693632,0.1512323981167849,0.1624430615256303,0.172223832995071,0.1851835871769426,0.1972774369757007,0.2093476674400113,0.2204808060894803,0.2308328098654412,0.2404743153154152,0.2494355145201314,0.2581680937359171,0.2666787898074694,0.274442558267572,0.2818605297921157,0.2882839598762539,0.2948968821527259,0.3008707139854681,0.3061460399352664,0.311147860642486,0.3167901141732777,0.3220369237046103,0.3264816184581046,0.3312958920420718,0.3309392339782101,0.3298430041663218,0.3290580765586775,0.3282480386327711,0.3269686889329773,0.3257810819944087,0.3246738819944774,0.325417085261615,0.3266586662094977,0.3269729894213041,0.3280251184477701,0.3299876773860158,0.3302907013512658,0.3303123664740144,0.3315760199269667,0.3325664688504876,0.3332856243201466,0.3374190491233612,0.3417249745086319,0.344565865289092,0.3474533764990196,0.3490721539852183,0.3508339651250948,0.3518856447688564,0.3561695329386335,0.3588117881883292,0.3626339969372129,0.366350615291507,0.3688212927756654,0.3786707882534776,0.0,2.52554597785246,59.66315807761825,180.1288426475191,272.0245415099171,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95735,44570,421.3714942288609,6142,63.08037812712174,4782,49.459445343918105,1862,19.14660260092965,77.3612597271838,79.72667243723578,63.34108899169471,65.08908003218514,77.13178106154693,79.49697323220126,63.256740553559,65.00682003174153,0.2294786656368757,229.699205034521,0.0843484381357129,82.26000044361115,158.8411,111.30547120010422,165917.48054525512,116264.13662725672,347.97001,224.64153933209016,362969.8229487648,234147.06150529085,359.73469,173.5643848822882,372444.0904580352,178762.87621912864,2723.20052,1235.750697397612,2819340.888912101,1265625.0873741182,1106.07539,482.0467170737259,1145103.7342664646,493284.88816894894,1821.06236,756.7262084893583,1874944.6075103148,765984.1538168376,0.38229,100000,0,722005,7541.703661147961,0,0.0,0,0.0,29571,308.3616232307933,0,0.0,32993,341.40074163054265,1621970,0,58122,0,0,6395,0,0,62,0.6371755366375934,0,0.0,1,0.0104455006006162,0,0.0,0.06142,0.1606633707394909,0.303158580267014,0.01862,0.329922480620155,0.6700775193798449,24.8226321969616,4.374827168711888,0.3283145127561689,0.2356754496026767,0.219155165202844,0.2168548724383103,11.02060795918904,5.584317386095278,19.817504275705595,12370.246115526345,54.11771457330431,13.576485422690467,17.70595378536973,11.653519073116,11.181756292128105,0.568590547887913,0.8021295474711624,0.7063694267515923,0.5772900763358778,0.0973963355834136,0.745748987854251,0.9221411192214112,0.8533007334963325,0.6942148760330579,0.1445086705202312,0.5069072455596279,0.7332402234636871,0.6546080964685616,0.5421836228287841,0.0879629629629629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0049071295319977,0.007123865965781,0.0092755331145675,0.0114715753076375,0.0137166249159894,0.0156017376052862,0.017889416449686,0.0201826045170591,0.0222870597870597,0.0244737678529318,0.0266009346274328,0.0287768304347378,0.0306882449290739,0.0329288176170722,0.0352944825233384,0.0374570233213205,0.0393923041799842,0.0414275018717244,0.0434479093949592,0.0579796397807361,0.0718756541762612,0.0849338634051168,0.0981641536811557,0.1100630256529162,0.1266489091831557,0.1397533639419355,0.1512656005617798,0.16215956424223,0.1730890849259858,0.1857808782525379,0.1984403391883706,0.2099461927278656,0.2191704464724848,0.2295211713494262,0.2401102123468811,0.2497045773784308,0.2582497219194858,0.2670414617006325,0.2750846836949556,0.2825089299131862,0.2901469660506086,0.2968966128746231,0.3025997653987025,0.3077538551061972,0.3121641726813314,0.317278755260299,0.3215379337509371,0.3254246497367365,0.3298381672140228,0.3283082302313072,0.3274380029110482,0.3264482564679415,0.3260467802483396,0.3245125555011063,0.3232210368420247,0.3213873563400098,0.321983351904044,0.3224827351010316,0.3242404238996628,0.324634205744047,0.3250609043554041,0.3261804375642397,0.3259527643585614,0.327926453600308,0.3288913276371142,0.3296455117209834,0.3331439035170802,0.3351756671125818,0.3377135348226018,0.3405833371251763,0.3396056874041968,0.3430844399899774,0.3435345807135823,0.3460963765409039,0.3480259281084266,0.3480570734669095,0.3532849657396211,0.3538761851645287,0.3581135091926459,0.0,1.8579763191583365,54.443269396883146,178.99948938480864,269.6570418022316,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95663,44394,420.1938053374868,6073,62.33339953796138,4789,49.60120422733973,1851,19.0878396036085,77.2430810454354,79.64746385226798,63.27207635196621,65.05004067514335,77.01175334347842,79.41322487704049,63.18645121009175,64.96501715194078,0.2313277019569852,234.23897522748405,0.0856251418744662,85.02352320256534,157.86628,110.75204011143676,165023.3423580695,115773.12034060898,348.6066,225.43097176275995,363945.23483478464,235195.4813586026,363.77215,175.58685265051562,376894.43149389,181046.52158299595,2748.21364,1268.9646179100976,2849282.962064748,1303592.8278729056,1130.71922,505.1351942830869,1171836.457146441,518093.7727085968,1814.15292,761.9725692645089,1872796.2117014937,777650.8354800338,0.37995,100000,0,717574,7501.061016275886,0,0.0,0,0.0,29687,309.8481126454324,0,0.0,33342,345.11775712657976,1616935,0,57967,0,0,6305,0,0,63,0.6585618264114653,0,0.0,0,0.0,0,0.0,0.06073,0.159836820634294,0.3047917009715132,0.01851,0.3434009753028157,0.6565990246971842,24.333590199310365,4.387880307104368,0.3349342242639382,0.2347045312173731,0.2113176028398413,0.2190436416788473,11.211392086171037,5.848350060135381,19.764272269417276,12344.436503003786,54.77830409619545,13.483996006524873,18.29283808377907,11.428413306464252,11.573056699427246,0.5779912299018585,0.7927046263345195,0.7082294264339152,0.6136363636363636,0.1143946615824594,0.7392966360856269,0.9193154034229828,0.858139534883721,0.7838983050847458,0.1587982832618025,0.5173800632002298,0.7202797202797203,0.6533219761499148,0.5618556701030928,0.1017156862745098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044833952082445,0.006598783793387,0.0084942948008006,0.0107005177341755,0.0131880441977697,0.0154881468264083,0.017776915536677,0.0201959260471204,0.0224058656672094,0.0241823831646309,0.0263414634146341,0.0284768143813568,0.0306383154077553,0.0326379785510058,0.0348157875688922,0.0372204323909958,0.0392751126149502,0.0413138898712321,0.0430966181560402,0.0577023553261301,0.0718019084329272,0.0855721079651034,0.0985991095767858,0.1107381133350223,0.125849547966378,0.1382830675746019,0.1499024530655323,0.1608426773945048,0.1709572445790508,0.1850177486701984,0.1969453899017929,0.2079398791047214,0.2175108142145321,0.2275502556868277,0.2385014754498458,0.2491308090462935,0.2585313077581932,0.2672054193519055,0.2753319116736603,0.28228095994067,0.289212070116275,0.2956957407495144,0.3011024868937222,0.307458328263779,0.3132568790351451,0.3177846585852001,0.32168126362489,0.3262991226704044,0.3300402052584246,0.3286585036949134,0.3275470138458359,0.3263355545516151,0.3254399304801216,0.324523241954708,0.3228296905697446,0.3216184897693541,0.3217255289371861,0.3225469549882719,0.3235589152008025,0.3247181070346178,0.3251580077115713,0.3262702066384982,0.3263547627061595,0.3270297650634376,0.3290246460409019,0.3305359965512286,0.3326688815060908,0.3364664310954063,0.3394440210196959,0.340993874637314,0.3437316068275456,0.347586817635524,0.3502716767429402,0.3523881872566707,0.3544198236835835,0.3523364485981308,0.3530859134713963,0.3511197124688969,0.3507549361207898,0.0,1.7479630022547157,58.08598972939518,184.18433773815107,256.0624537875713,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95808,44600,421.3113727454909,6166,62.99056446225784,4871,50.17326319305277,1962,20.081830327321303,77.44904619750217,79.77535186016355,63.38601454967061,65.10682424365599,77.19887175179376,79.5261232309692,63.2935546430416,65.01696769354672,0.2501744457084101,249.22862919434863,0.0924599066290099,89.85655010927474,160.0137,112.09708446342172,167014.96743486973,117001.79991589607,351.71842,226.7416618660096,366456.3502004008,236011.33711799595,361.54954,174.84840958726025,372502.7868236473,178763.577018461,2815.35632,1292.0666107097336,2904118.612224449,1314394.596881497,1145.35397,503.9662918139812,1182964.7837341349,513594.84339426976,1916.58042,808.7448868286384,1965521.5430861723,816289.8423818576,0.38297,100000,0,727335,7591.589428857715,0,0.0,0,0.0,29876,311.1535571142284,0,0.0,33200,341.6520541082164,1616357,0,58007,0,0,6342,0,0,61,0.636690046760187,0,0.0,1,0.010437541750167,0,0.0,0.06166,0.1610047784421756,0.3181965617904638,0.01962,0.3399691358024691,0.6600308641975309,24.568175763897823,4.449999620304967,0.3297064257852597,0.2227468692260316,0.2213097926503798,0.2262369123383288,11.063314442651285,5.6544206116692,20.94133059107536,12363.721320535717,55.07895801690334,12.990316142388457,18.183470164519825,11.944172500629897,11.960999209365164,0.5522479983576267,0.7705069124423963,0.688667496886675,0.5797773654916512,0.1116152450090744,0.7108895705521472,0.8987951807228916,0.833729216152019,0.7203389830508474,0.1422413793103448,0.4942528735632184,0.691044776119403,0.6371308016877637,0.5403800475059383,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025723342414145,0.0048858118861058,0.0070520430631233,0.0097520342133866,0.0119792143343807,0.0140409110810177,0.0163025192948829,0.0184733463293154,0.0206847215125191,0.0229507525759482,0.0250038428037095,0.0271038587848932,0.0290296052631578,0.0310524473364495,0.0333030796839868,0.0356327420371307,0.0375913390879546,0.0395997511406055,0.0414969661707256,0.0432867984634123,0.0584166988306228,0.0728415197708215,0.0860957690977498,0.0987676370780496,0.1110057425846899,0.1264662989030499,0.1395045632333768,0.15089484150193,0.1612682968463278,0.1729245202193283,0.186423908718423,0.1985047859812882,0.210134306157237,0.2203985420258856,0.2305192666593479,0.2407610077493671,0.2505430605220065,0.260176474550394,0.2691663270388987,0.276329319287983,0.2825713065460044,0.2894727631225863,0.2967726709540386,0.3024392575860791,0.3070361439943779,0.311929988446127,0.316886033310461,0.3209909429941396,0.3251342836483834,0.3285712406435402,0.3280629227960915,0.3263936541047951,0.325452016689847,0.3247668602891365,0.3238341968911917,0.3218224249172526,0.3191643559364759,0.3191764033009233,0.3194418478168499,0.3208720527353814,0.3213785896885671,0.3216625031963649,0.3221407838960931,0.3228081137170017,0.3239294710327456,0.3250233475147868,0.3270017035775128,0.3293988728866625,0.3310059296165046,0.3328719449497745,0.3353799972711147,0.3369137509305541,0.3386099899091826,0.3411961649672805,0.3421550094517958,0.3421426878407205,0.3424846625766871,0.3463584288052373,0.355444997236042,0.3499809378574152,0.0,2.655712070141706,56.53331434904237,181.3217390322041,266.9816985380268,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95794,44152,417.0929285759025,6084,62.13332776583085,4793,49.32459235442721,1906,19.354030523832392,77.3497797498425,79.6848211824511,63.33168066437421,65.06062119813708,77.10506893072471,79.44368729238099,63.240300900907634,64.97387243300967,0.2447108191177847,241.1338900701168,0.0913797634665769,86.74876512741037,160.0456,112.01007372070248,167072.21746664718,116927.66773994052,345.90923,223.7635000694002,360375.1800739086,232867.77712078608,357.11035,172.78071986881756,368276.7396705431,176911.90598545596,2757.34056,1273.2692156520077,2839483.307931603,1290369.2386072692,1139.149,505.3164099044427,1172969.423972274,511307.3260375829,1868.69176,790.6402956400376,1901262.6051736015,785343.8512524691,0.37847,100000,0,727480,7594.191703029417,0,0.0,0,0.0,29470,306.8876965154394,0,0.0,32706,336.9313318161889,1613920,0,57955,0,0,6232,0,0,64,0.6681002985573209,0,0.0,1,0.0104390671649581,0,0.0,0.06084,0.1607525035009379,0.3132807363576594,0.01906,0.3486656200941915,0.6513343799058084,24.254859164311693,4.251113479648834,0.325266012935531,0.2322136448988107,0.2230335906530356,0.2194867515126225,11.198423710199569,5.888568205298814,20.239406258261692,12296.178389726192,54.44497236200479,13.40769811608316,17.507611377071907,11.91499891898634,11.614663949863385,0.5604005841852702,0.7870619946091644,0.6978832584990379,0.558465855940131,0.1188212927756654,0.7229470452801228,0.9112709832134293,0.8504901960784313,0.7230769230769231,0.1238532110091743,0.4997134670487106,0.7126436781609196,0.6437880104257168,0.5055624227441285,0.1175059952038369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312660818121,0.0046437588084398,0.0068301297014228,0.0091842851192229,0.0114739090631675,0.0137671198004174,0.0159869494290375,0.0180272143564406,0.0203092899414332,0.0224260227842659,0.0242539799694518,0.0265724787974618,0.0286880610366775,0.0306553258093747,0.0326999649274824,0.0347913243849261,0.0368415059573719,0.0388046387154326,0.0405847698014401,0.0429382060492477,0.0579852272253056,0.0715981219479039,0.0845046801463266,0.097329507834915,0.1094257283804865,0.1242584779367446,0.1367681846630387,0.1485699688128665,0.1597282312598147,0.1703803035992061,0.1827303393794389,0.1951092780826811,0.2071610418434623,0.2171113054887382,0.2269341226438969,0.2378677896603313,0.2484625258105921,0.2581243883508251,0.2666106830380953,0.2746063555682794,0.2818382718763378,0.2881415391091829,0.2953230558086156,0.3007580929112923,0.3059433343853942,0.3115434340946869,0.3152625,0.3200030517655735,0.3246603700349333,0.3294851835237617,0.3285512224691856,0.3272258882199782,0.3269512745319197,0.3255938586326767,0.324457402972197,0.3230983842781371,0.3211145785480064,0.3214479281291573,0.3223677461272783,0.3234037227099612,0.3234052928709417,0.323953695458593,0.3246290552435242,0.325083836351442,0.3262082231305602,0.3265359340773964,0.3268880282492311,0.329619633442129,0.3314233806163091,0.3310053661616162,0.332151461430065,0.3351351351351351,0.3383150460335477,0.339561954357482,0.3411188547749105,0.3442157558552164,0.3432560994322541,0.3454913880445795,0.3494932895097233,0.3450429352068696,0.0,2.778416271363807,56.52349857839838,177.5130719048033,262.74115461425873,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95793,44185,417.159917739292,6241,63.75204868831752,4901,50.5151733425198,1973,20.14760995062269,77.41775944651599,79.74584942320836,63.37436231324406,65.09507685691656,77.16954549753179,79.50071520956439,63.282202042450834,65.00696862981263,0.2482139489842012,245.13421364396493,0.0921602707932294,88.1082271039304,159.1128,111.41986802775722,166100.19521259383,116312.71035227751,348.9984,225.5099296222145,363675.7905066132,234764.2867664804,362.83553,175.62363778806937,374736.3272890503,180200.8271391049,2824.57792,1306.327649726154,2913267.9005772867,1328364.7549676432,1192.22537,528.4308118617561,1229201.7057613814,536324.4982344697,1942.91854,818.9127991061349,1986257.6179887883,819498.9189705445,0.37958,100000,0,723240,7550.008873299718,0,0.0,0,0.0,29613,308.4463374150512,0,0.0,33319,343.7933878258328,1620314,0,58205,0,0,6319,0,0,73,0.762059858235988,0,0.0,0,0.0,0,0.0,0.06241,0.1644185678908267,0.3161352347380227,0.01973,0.3317979425763857,0.6682020574236143,24.298826485216857,4.373151688374458,0.3197306672107733,0.2299530708018771,0.2217914711283411,0.2285247908590083,11.357200466002547,5.853055928712922,20.98918959439485,12271.932747077391,55.68594072088435,13.566770870925362,17.71203106348186,12.063689184991622,12.343449601485515,0.5686594572536217,0.7870452528837621,0.7051691129546905,0.609935602575897,0.1178571428571428,0.7225130890052356,0.9178403755868544,0.8438287153652393,0.7695167286245354,0.1346938775510204,0.5109427609427609,0.7075606276747504,0.6581196581196581,0.5574572127139364,0.1131428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020960115027491,0.004338438770235,0.0065143935627238,0.0087241778554163,0.0112462376962498,0.0135591840058634,0.015839363979207,0.0179533763370621,0.0202170935628283,0.0223932533671756,0.0244464944649446,0.0268944137633702,0.0291006650699505,0.0312139680448031,0.0333670165597739,0.0353553611452534,0.0372877146139277,0.0391884466653534,0.0412208348050113,0.0434022174795689,0.0584074120445724,0.0717168126790306,0.0854315604100715,0.0977267474840851,0.1098881422342061,0.1253922469808868,0.1375101967306898,0.1486167520785931,0.1591365033293495,0.1701129229252823,0.1828213732576148,0.195274008125162,0.2065636436692983,0.2170641680863146,0.2265550318093417,0.2364636116212687,0.2470820373900538,0.2557758184983433,0.2644589710763932,0.2724111503837663,0.2795577174151656,0.2868401695330834,0.293340892447972,0.2995655868168164,0.305676538027588,0.3104072286783533,0.3154067224790703,0.3198988602721624,0.32417511377741,0.328759547010798,0.3277897932590911,0.3271485314531535,0.3267907644253092,0.3247174957786725,0.323988186230131,0.3220040705770731,0.3198552076253102,0.319520710738112,0.3196613807082389,0.3198988405848724,0.3211239149955103,0.3219608229156413,0.3225968166436896,0.323135840402556,0.3243243243243243,0.3253168839957315,0.3278259633157969,0.3320887327037118,0.3354332913341733,0.3361700443318556,0.3388651450395562,0.3401804670912951,0.3429057245418477,0.3449193793732887,0.345779374231969,0.3474728163460389,0.3453271028037383,0.3437436211471729,0.338255400601586,0.3410493827160494,0.0,2.40334124001869,58.4109047008175,184.7532018725177,263.6521086536728,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95719,44397,420.2404956173801,6257,64.0102800906821,4909,50.69004063978939,1914,19.59903467441156,77.3893283971574,79.74765944606287,63.35181630130408,65.09249032459178,77.15136158507374,79.51279606242016,63.26392045863955,65.00839190378609,0.2379668120836555,234.8633836427041,0.0878958426645297,84.09842080568808,158.95396,111.368662951664,166063.12226412728,116349.58885034735,347.87794,224.35289342546244,362858.0846018032,233808.42196999805,361.73087,175.228948091683,373849.6118847877,179945.9927328654,2798.52872,1277.470893095232,2892207.148006143,1303120.5226707675,1160.78855,510.8144299354223,1197436.151652232,518392.1582292144,1870.3688,777.4024149004921,1918009.799517337,782149.1679584502,0.38147,100000,0,722518,7548.323739278514,0,0.0,0,0.0,29611,308.74747960175097,0,0.0,33141,342.1473270719502,1619990,0,58078,0,0,6181,0,0,65,0.6790710308298249,0,0.0,1,0.0104472466281511,0,0.0,0.06257,0.1640233832280389,0.3058973949176922,0.01914,0.3281464530892448,0.6718535469107552,24.678686068243117,4.300281116634341,0.3271542065593807,0.2373192096149928,0.2212263190059075,0.2143002648197189,11.278594706397715,5.946421991050051,20.150170250693662,12356.77996705364,55.20758706552422,13.86299844976363,18.028227016071096,11.903053415004722,11.413308184684784,0.5640660012222448,0.7759656652360515,0.7004981320049813,0.574585635359116,0.1102661596958174,0.7421383647798742,0.8985507246376812,0.8710462287104623,0.7479674796747967,0.1492537313432835,0.5017871872422326,0.7083888149134487,0.6418410041841004,0.5238095238095238,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382693417867,0.0044594443937689,0.0066847225180812,0.0086715473736583,0.0112236183969745,0.0135272682857317,0.0157549323332789,0.0180302442807289,0.0202417566697661,0.0223884415066152,0.0243877446459678,0.02666516189929,0.0287091172511585,0.030488934637159,0.032640306911701,0.0346085482804232,0.0366072075616245,0.0386482449589245,0.0405895620900766,0.0424917964477316,0.0573475205446552,0.0715197555667168,0.0854694579627454,0.0979897384136596,0.1101308119617578,0.1257799115923944,0.1376987620795366,0.1490897476844458,0.1609846259041229,0.1717297361056006,0.1842842066722664,0.1974124035871529,0.2089362396042833,0.2189454577264576,0.2293821238392817,0.2396707946565054,0.2494698542378178,0.2590484759869531,0.2680139799832058,0.2749412910246864,0.2818766334389527,0.2882978723404255,0.2939263883469892,0.300674017407128,0.3051620968818653,0.3108673708053278,0.3150765459275565,0.3190975532252939,0.3239119462670342,0.3287109658199649,0.3289081185670904,0.3277925075213276,0.3271194774179953,0.3275170303660085,0.3269772545298182,0.3253302787323406,0.3238254504149181,0.324033948749816,0.3257682812633012,0.3265237060520785,0.3272594752186589,0.3279496736279556,0.3286401673640167,0.3289356192517189,0.3308903039769314,0.3320004154549231,0.3339486538679995,0.3367474785441333,0.3409313382743672,0.3443049964480227,0.34505444646098,0.3504903260005301,0.3563247325361863,0.3590151515151515,0.3544054104828104,0.3554558337269721,0.3588494901841424,0.3568698451015892,0.3605042016806722,0.3642384105960264,0.0,2.3566886590861595,55.4292745877541,181.5304996766561,274.8859797035232,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95672,44402,420.1229199765867,6024,61.64813111464169,4701,48.54084789698136,1868,19.20102015218664,77.35982293729873,79.73616713350759,63.33991942654043,65.09002105742564,77.12972859433394,79.50611385364557,63.25341755709789,65.00608944104405,0.2300943429647901,230.0532798620196,0.086501869442543,83.93161638159086,158.87014,111.19817716938846,166057.09089388745,116228.54875970865,346.8747,224.7789606014711,362001.7664520445,234382.67267483813,354.02569,171.05540050484248,366000.271761853,175755.7729620137,2678.8292,1231.583958720266,2767051.509323522,1254485.9272944832,1108.32712,486.228852402062,1143624.3833096412,493452.411701086,1820.69756,764.6812169763666,1872653.9217325863,771963.5818206788,0.38029,100000,0,722137,7548.049586085794,0,0.0,0,0.0,29553,308.3033698469772,0,0.0,32516,335.82448365247933,1618938,0,58016,0,0,6300,0,0,49,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06024,0.158405427436956,0.3100929614873838,0.01868,0.3334387351778656,0.6665612648221344,24.41888359900208,4.389094130027621,0.3237609019357583,0.2397362263348224,0.2174005530738141,0.2191023186556052,11.402824805298138,5.898307595796895,19.659958822287507,12350.727187714218,53.22764739321816,13.44317258309945,17.21831277482415,11.380217009757835,11.185945025536729,0.5664752180387151,0.7905944986690329,0.6938239159001314,0.5880626223091977,0.1116504854368932,0.7153225806451613,0.9275,0.8453865336658354,0.6681614349775785,0.1296296296296296,0.5131464894539151,0.7152682255845942,0.639607493309545,0.5657071339173968,0.1068796068796068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022481467979098,0.0047029728058706,0.0069903109623091,0.0092421441774491,0.0113775012201073,0.0136495495953992,0.0159671486361181,0.0183446924866342,0.0203987824061778,0.0224138636549635,0.0246481037556088,0.0268273916388817,0.0290357062100437,0.0312393818020819,0.0331927095689486,0.0351713089762803,0.0371236904219636,0.0391636242947228,0.0409207161125319,0.0430110888777722,0.0575440356045884,0.0715370197794833,0.0842691912088834,0.0968929852803467,0.1091001139096316,0.1249325446792301,0.1375013268230548,0.1494737739145255,0.1608433477312577,0.1717478583850398,0.1848135374003018,0.1975543978598273,0.2091967784066173,0.2191255993169429,0.2286453744493392,0.2392311101263018,0.2483675451227271,0.2587499859460553,0.2660565025574722,0.2738157924860917,0.2808368897678776,0.2878461826347305,0.2941308694263371,0.3007209062821833,0.3057412147163357,0.3112016343408487,0.3164523747048018,0.3212157405877943,0.3252346841138896,0.3295758678426874,0.3290904447640425,0.3284127769531035,0.3277252953019189,0.3268781205806805,0.3261862396204033,0.324391698655696,0.3228919474766651,0.3239136142838388,0.3243885347052489,0.3253446674762483,0.3268272580826434,0.3286188369152971,0.3288652452561471,0.3291919914193779,0.3308994836075417,0.3321457363534704,0.3332765764231795,0.335308502633559,0.3382877526753864,0.3399088928500693,0.3402572610335894,0.3449705085286147,0.3424882926211872,0.3450752655306793,0.3498352941176471,0.3521982604551412,0.3529051050130308,0.3581667676155865,0.3552489177489177,0.3537753928708317,0.0,2.3512682733636,54.08923771735931,177.60378206525152,258.1152524096888,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95862,44307,418.7582149339676,6114,62.51695145104421,4809,49.675575306169286,1841,18.85001356116084,77.34109898624328,79.63259341576412,63.34986309044478,65.04448082795629,77.1046770698753,79.39689253112117,63.26235760913198,64.95962329351224,0.2364219163679877,235.70088464295225,0.087505481312796,84.85753444405475,159.40232,111.69187739347136,166283.11531159375,116513.1933336164,344.59958,222.34604393190827,359012.79964949616,231482.0407793581,359.05369,173.05187532921116,371745.968162567,178306.74407365214,2732.24316,1256.926915876634,2823136.467004652,1284136.4001133232,1133.85855,497.94072181446313,1169760.2178131065,506392.2219591317,1798.93052,759.673249626102,1843615.0299388703,764663.6124339006,0.37913,100000,0,724556,7558.323423254262,0,0.0,0,0.0,29301,305.15741378231206,0,0.0,32866,339.98873380484446,1618449,0,58115,0,0,6401,0,0,54,0.5633097577768041,0,0.0,0,0.0,0,0.0,0.06114,0.1612639464036082,0.3011122015047432,0.01841,0.3359375,0.6640625,24.787862401437728,4.291823142870157,0.3256394260761073,0.2416302765647743,0.2166770638386358,0.2160532335204824,11.074151577246903,5.730842465408702,19.66985546186052,12303.692269578827,54.72204359035468,13.817014519993428,17.786280022157136,11.82459304450514,11.294156003698973,0.5687253067165731,0.7624784853700516,0.7113665389527458,0.5978886756238004,0.107795957651588,0.7298578199052133,0.9137055837563453,0.8603491271820449,0.7346153846153847,0.1327014218009478,0.511148744002258,0.6848958333333334,0.6600858369098712,0.5524296675191815,0.1014492753623188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.0045090231125431,0.0068161762468429,0.0092899059841208,0.0113125851238997,0.0134433770251567,0.015465020324582,0.0176689619994899,0.0197229996118726,0.0219728510490297,0.0243785018488737,0.0262556023917212,0.0284505248454222,0.0304651569557478,0.032262718064443,0.0343179753942696,0.0363044152621238,0.0385635542293505,0.0405514835655405,0.0426151733322235,0.0570072992700729,0.0700513131355356,0.0832931811040117,0.0965668616557619,0.1094707579554788,0.1255518705507087,0.1385787232239337,0.1505454081524166,0.1615550433260767,0.1724149018262882,0.185227835295637,0.1971795953238382,0.2091251032743401,0.2203202710826911,0.2296952359995599,0.2398657257126397,0.2492774969593501,0.2583922062727805,0.2672877470893947,0.2747803978606686,0.2823428697030344,0.288706451952426,0.2951628358155986,0.3013106191297681,0.3067451885131443,0.3117489739829182,0.3156623792602973,0.3198631356686763,0.3234087703634693,0.3273629608120059,0.3258375525153506,0.3250570854769044,0.324374603622014,0.3235494188991649,0.3231144710994702,0.3214608791646862,0.319610671654804,0.3195918703200855,0.3196072709795911,0.3198455459770115,0.3208073422158566,0.322265469854635,0.3232184973045822,0.3245238845617036,0.3251120533010296,0.3271209575808483,0.329608938547486,0.3328479169304799,0.3360675937334976,0.3378174003024755,0.3412296316582226,0.3423600766120451,0.3421966778247963,0.3457908357436444,0.3468169761273209,0.346585482330468,0.3451886066204773,0.3466313861184612,0.3449035812672176,0.3404255319148936,0.0,1.9518790259494987,55.67889454775077,185.5649252981501,263.07916697700495,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95642,44509,420.5579138872044,6278,64.4173062043872,4934,51.002697559649526,1949,19.980761590096403,77.31769350596971,79.74141025773815,63.289715480586615,65.08189487020067,77.07890785765004,79.50267112664653,63.20176560999854,64.9963982430237,0.238785648319677,238.73913109162004,0.0879498705880763,85.49662717696549,159.0963,111.436288031658,166345.6431274963,116513.96670046424,349.39638,225.280285717429,364726.7727567387,234955.2348522919,361.55585,175.0476534805392,374188.0031785199,180014.80576342857,2822.7808,1282.2703368273617,2919666.8827502565,1309271.037342945,1162.17639,509.6182345697919,1199624.1504778236,517331.6896026768,1905.7822,790.2193229172079,1956303.088601242,795877.1065537189,0.3814,100000,0,723165,7561.165596704377,0,0.0,0,0.0,29780,310.76305388845907,0,0.0,33084,342.1091152422576,1613757,0,57878,0,0,6198,0,0,65,0.6796177411597416,0,0.0,0,0.0,0,0.0,0.06278,0.164604090194022,0.3104491876393756,0.01949,0.3349529304585484,0.6650470695414515,24.60761208435328,4.386565999676051,0.3305634373733279,0.2259829752736116,0.2239562221321443,0.2194973652209161,11.224911764703933,5.802866779064875,20.605117393468163,12419.730523039843,55.53998594563107,13.302927811077849,18.392838746681715,12.152127176888555,11.692092210982937,0.5614106201864613,0.7865470852017937,0.7014101778050276,0.5619909502262443,0.1181902123730378,0.7235521235521235,0.922077922077922,0.8496583143507973,0.6785714285714286,0.1735159817351598,0.5037098103874691,0.7150684931506849,0.6468120805369127,0.5275498241500586,0.1041666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806629386498,0.0046039021620086,0.0069644670050761,0.0092683868738503,0.0114867683416932,0.0136715566422167,0.0159753534776487,0.0179813851796606,0.020109913726935,0.0226531909223231,0.0248832315351845,0.0269803405445422,0.0290080423432978,0.0312867487776196,0.0335992065132041,0.0356270695364238,0.0376779437837613,0.039606120095977,0.0418570283799394,0.0439153604688754,0.0588991420121435,0.0735167759917849,0.0865089702113356,0.0997293226747553,0.1119347821495702,0.1277733651045803,0.1395751644404773,0.1511175536393771,0.1626464138631866,0.1727708203552939,0.1854364638500285,0.1979694881463182,0.2098613486107632,0.2194905602523106,0.2299656175614916,0.2406610470275066,0.2506481315930627,0.2598898685855207,0.2681614349775785,0.2757700064167201,0.2827501563115114,0.2897982587530425,0.2969305101605798,0.3026337882894768,0.3077418884078416,0.312470715888634,0.3176919707115589,0.3222223635831605,0.3271104316733171,0.3312813738441215,0.3305926594869998,0.3290607704380868,0.3283382203676553,0.3272256983078768,0.3262093240854881,0.3249210873096135,0.3238789415306607,0.3240795432171687,0.324244078902464,0.3250876474880319,0.325997685444432,0.3263856085655802,0.3272867217241164,0.328768645932908,0.3304645102679959,0.3312229170450712,0.3318782243891377,0.3356234970800412,0.3366506040924645,0.3384591058228248,0.3413767983973775,0.3443423777411989,0.3472187264032217,0.3484572123423012,0.3517753146721773,0.3525724423418095,0.3597001223990208,0.3653269346130773,0.356343792633015,0.3484848484848485,0.0,2.28335867032493,56.74356116986202,178.09747471932744,278.96377224936003,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95713,44380,419.3996635775705,6236,64.00384482776634,4904,50.6723224640331,1949,19.96593984098294,77.34880342590687,79.70520310879488,63.338894218876014,65.07677827822782,77.10209977920991,79.46083352290744,63.24740772047315,64.98872825611329,0.2467036466969574,244.36958588744065,0.0914864984028653,88.05002211452972,159.3493,111.58696834276265,166486.57967047318,116584.96582780044,350.10514,225.7492046078926,365251.9511456124,235326.09426921385,360.37178,173.8756748953377,373200.8818028899,179116.44827273992,2807.65468,1287.991637310919,2902944.26044529,1315215.2762016847,1190.0254,530.2306980677632,1229176.966556267,539831.7732398278,1916.5615,811.5679270429954,1965853.896544879,817338.3094695577,0.38039,100000,0,724315,7567.571803203327,0,0.0,0,0.0,29736,310.1041655783436,0,0.0,33022,341.7090677337457,1616130,0,58026,0,0,6335,0,0,72,0.7418010092672888,0,0.0,1,0.0104479015389758,0,0.0,0.06236,0.1639370120139856,0.3125400898011546,0.01949,0.3325168401714635,0.6674831598285365,24.46944868869,4.355582236960513,0.3164763458401305,0.241231647634584,0.2177814029363784,0.224510603588907,11.020125841316789,5.675142639506844,21.09045439668803,12367.02325657626,55.80018374094031,14.09222614395989,17.45111353719649,11.969434669403425,12.287409390380503,0.5570962479608483,0.7819103972950127,0.6733247422680413,0.5758426966292135,0.1335149863760218,0.7069625095638867,0.909307875894988,0.8481675392670157,0.6975806451612904,0.1782945736434108,0.5026410897970531,0.7120418848167539,0.6162393162393163,0.5390243902439025,0.1198102016607354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050023796745,0.0043688926732352,0.006656181827406,0.0088176434136876,0.0111538148690418,0.0135491423627016,0.015727725850347,0.0179238542410942,0.0199685245365544,0.0221997052321296,0.0243837441705529,0.0263463097718432,0.0287259417667379,0.0306696042498867,0.0328753275154215,0.0349463198900565,0.0369549685742982,0.0392313518785602,0.0413408750623856,0.0434089464525742,0.0580973964262216,0.0725409750277353,0.0858845500136391,0.0985586533403471,0.1105848847634618,0.1254839323869766,0.1373924300463704,0.150155968870104,0.1606679273100221,0.1715830347757063,0.1849478117560886,0.1977475089526241,0.2090724205809742,0.2194956586400717,0.2300541277944024,0.2405357795725728,0.2496761079342387,0.2584759117514633,0.2673969803609944,0.2754722168130949,0.2830653842147296,0.2903761579489098,0.2965299311193694,0.3022573147060938,0.3072914768793499,0.3125184820108427,0.3172018807523009,0.3219239914048494,0.3256884887526356,0.3298301598185558,0.3289206114066393,0.3274777317345154,0.3264112107370439,0.3259759607735366,0.3261597037345509,0.3238592835473294,0.3221724187085227,0.3230327398047099,0.32334643650658,0.3240495926825782,0.3244730635318782,0.3261208615481807,0.3271135683022345,0.3277995301487862,0.3271882746504296,0.3276936312208347,0.3282699940039402,0.3312759793424865,0.334480578773618,0.3380651318143862,0.3413173652694611,0.3440796872489691,0.3462420382165605,0.3478461894120366,0.353594833317504,0.3542966874699952,0.3576323987538941,0.3653128885205138,0.368376787216148,0.3744647722849358,0.0,2.1912600486844287,57.50093861769432,187.7399251285376,266.1521640771663,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95622,44353,421.3151785154044,6226,63.54186275124971,4947,50.99244943632218,1967,20.02677208173851,77.26744378178137,79.67977798614298,63.28338998351626,65.06828912837348,77.00787134795328,79.42688721741692,63.18650353647997,64.97692583521622,0.2595724338280831,252.8907687260613,0.0968864470362902,91.36329315725789,160.53246,112.3753238927896,167881.4289598628,117519.5867026614,349.36061,225.59040556792428,364541.5490159168,235108.18126474207,362.07528,175.37106454430167,374121.5933571772,179829.5110719202,2808.95864,1309.0100425237354,2896713.977954864,1328293.226656685,1169.86028,526.5231486985588,1204288.1240718665,531513.5288648078,1920.823,820.1843211916381,1959123.2352387528,816959.3223782751,0.37966,100000,0,729693,7630.974043630127,0,0.0,0,0.0,29717,309.9914245675681,0,0.0,33219,342.82905607496184,1607789,0,57755,0,0,6336,0,0,73,0.7529647988956516,0,0.0,0,0.0,0,0.0,0.06226,0.1639888321129431,0.3159331834243495,0.01967,0.33548288039306,0.6645171196069399,23.9529396031617,4.351820663777616,0.3327269051950677,0.2328684050939963,0.2195269860521528,0.2148777036587831,11.338874002926504,6.000511150968937,21.228799115324783,12276.216405888244,56.63459798655353,13.86026551855138,18.78811097132092,12.244394343540767,11.741827153140466,0.5666060238528401,0.7916666666666666,0.6938031591737546,0.5911602209944752,0.1006585136406397,0.7318996415770609,0.9174528301886792,0.8581081081081081,0.775438596491228,0.1239669421487603,0.5016891891891891,0.7184065934065934,0.6331114808652246,0.5255930087390761,0.0937880633373934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021379212515451,0.0044007300750354,0.0066703216374269,0.0086883180229249,0.0108953295557431,0.0129343707988756,0.015029467544915,0.0170905267026717,0.0192742257078293,0.0212593829044249,0.0233013691605558,0.0251366232485515,0.0270862480454283,0.0292217493894962,0.0314609524989162,0.0336307339212422,0.0356802551992708,0.0377924477382657,0.0397049951109909,0.0417144525303918,0.0560397984991952,0.0702577584130209,0.0832974533998424,0.0965904304607867,0.1088776512072296,0.1247498332221481,0.1372644815939843,0.1485953619234376,0.1599413765805858,0.1702596161075844,0.1839391651386042,0.1962708963066489,0.2075237566534957,0.2182673890439446,0.2276070917299857,0.2384561683454672,0.248961821835231,0.2576059429343238,0.26536661820825,0.2727574979363478,0.2797382593085876,0.2867857853289804,0.2939532460150162,0.2999868005807744,0.3057778859019584,0.3121118970902312,0.3169512546509151,0.3207455883476356,0.3257179902755267,0.32990795111887,0.3283739266619863,0.3276760602216952,0.326810397164923,0.3259742141098073,0.3240196809303712,0.3227124057552631,0.3211653323166857,0.3218872827141611,0.3220611640682491,0.3232952207132249,0.3234525666810774,0.3239484194003457,0.3250263102504735,0.3255944369672499,0.327011355399855,0.3280795153549605,0.3279021820056125,0.3307327858496525,0.3349341431547724,0.337284267008369,0.3394440339859623,0.3453524775990499,0.3477648264378122,0.3495280829336221,0.3528179741051028,0.3529979490891543,0.3550848777448995,0.3624119353501865,0.3634285714285714,0.3695038321903993,0.0,2.8500344321077056,60.761601944868254,183.71227119744967,266.0549844993559,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95845,44218,417.9978089623872,6105,62.5802076268976,4815,49.71568678595649,1880,19.270697480306744,77.40182060844235,79.71499220760538,63.36325590393732,65.07521671170761,77.16976453320954,79.48408596039998,63.2780952910512,64.99301426982471,0.2320560752328049,230.90624720539665,0.0851606128861206,82.20244188289882,159.2789,111.54172624364372,166183.8384892274,116377.19885611533,346.56034,223.6341547491505,361060.5456727007,232805.3573469148,357.09652,172.4478095107484,369275.89336950285,177377.3556112217,2750.25584,1257.70398240185,2838704.366424957,1281448.5287723404,1150.41047,507.2342744658711,1184627.596640409,513586.7038783314,1842.4555,764.0505725336519,1889088.4448849703,768247.8573847375,0.37851,100000,0,723995,7553.810840419427,0,0.0,0,0.0,29552,307.7990505503678,0,0.0,32668,337.5762950597319,1620634,0,58203,0,0,6232,0,0,69,0.7199123584954875,0,0.0,0,0.0,0,0.0,0.06105,0.1612903225806451,0.3079443079443079,0.0188,0.3355820520866018,0.6644179479133981,24.59415841436951,4.464094621570316,0.3356178608515057,0.2274143302180685,0.2166147455867082,0.2203530633437175,11.502377105699832,5.947699582837932,19.86752241600416,12330.77456218006,54.572886543232215,13.123534804589246,18.349410143894573,11.59732415478921,11.502617439959192,0.563447559709242,0.7881278538812785,0.6974009900990099,0.5848513902205177,0.1065032987747408,0.7532971295577967,0.9343434343434344,0.8530066815144766,0.7708333333333334,0.1617647058823529,0.494044242768009,0.7052932761087267,0.6375321336760925,0.5292652552926526,0.0933488914819136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001964397820936,0.0042566560925924,0.0064318467719027,0.0085316432554313,0.0106749626376307,0.0128771529785414,0.0151760688987412,0.0174831598285364,0.0197272931700635,0.0220975814458102,0.0242632361232125,0.0266761095372993,0.0285652611886602,0.0307651122803043,0.0327052198397227,0.03498620597018,0.0368909728907244,0.0388009249178254,0.0408699535733945,0.0426900341353759,0.0575799924909265,0.0716294337176847,0.0853478356543334,0.0977626050420168,0.109771252843542,0.1254435994930291,0.1376800847457627,0.1493744618884129,0.1604345413411875,0.1706653528126472,0.1830529983653101,0.1958553477466965,0.2069827061788476,0.2180258917354017,0.2283214438814206,0.239183131329902,0.2492472734571893,0.257970949318703,0.2666591050870527,0.2737667391553164,0.2801064075873236,0.2872673711774058,0.293424148899689,0.2995220011261126,0.3049026273614686,0.3101091213636475,0.3147441749940593,0.3200971108258233,0.3256102767105212,0.3299062833643086,0.3291423499986553,0.3286833424958768,0.3283225289328252,0.326562973000245,0.3265756753953082,0.3254587155963303,0.3228936224006067,0.3232374524963963,0.3237690943807965,0.3255590371741917,0.3273569400866577,0.3283749704468437,0.3296097550790303,0.3301375666094401,0.331458388185452,0.3334457968908151,0.3334656159646238,0.3362063581287864,0.3389387014618149,0.3406619478824785,0.3436676061460132,0.3484381640458988,0.3491354919836529,0.3523917995444191,0.3565833644162626,0.3593915811814644,0.3632890111569616,0.3616026032133415,0.3602535832414553,0.366705024932873,0.0,1.9817735840749309,56.82469052522502,180.5116163744516,262.81267913005536,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95692,44299,419.9201605149856,6215,63.69393470718556,4904,50.63119174016637,1917,19.677716005517706,77.32145341825886,79.7092438090893,63.3143933609397,65.08038221832817,77.08106378191509,79.47177682477921,63.22439537160143,64.99456093645935,0.2403896363437638,237.46698431008892,0.089997989338272,85.82128186881732,158.27196,110.81924937727912,165397.27458930734,115808.26963307185,346.95751,224.09896207581627,361954.78200894536,233566.64220049093,358.91466,173.7504929959593,371354.99310287175,178687.47072204348,2782.79104,1288.0207399967796,2875560.7992308657,1313593.973221879,1141.03934,508.2250716531957,1176782.0820967269,515507.4847098621,1872.2258,789.6678105378841,1923421.9161476404,795208.6355857373,0.38073,100000,0,719418,7518.057935877608,0,0.0,0,0.0,29592,308.58378965848766,0,0.0,32992,341.07344396605777,1622740,0,58228,0,0,6217,0,0,53,0.5434101074279982,0,0.0,0,0.0,0,0.0,0.06215,0.1632390407900611,0.3084473049074819,0.01917,0.3311329444273871,0.6688670555726128,24.36008568884029,4.252256007314672,0.3134176182707993,0.2453099510603588,0.2267536704730832,0.2145187601957585,11.10268501444746,5.822438440683307,20.42150345469109,12338.587491520691,55.93565164465574,14.413240944810772,17.5163619343167,12.379652464794717,11.62639630073355,0.5613784665579119,0.8029925187032418,0.6844502277163305,0.545863309352518,0.1216730038022813,0.7217327459618208,0.9365079365079364,0.8392434988179669,0.7233201581027668,0.1306122448979592,0.4997176736307171,0.7257217847769029,0.625673249551167,0.4935972060535506,0.1189591078066914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405203858312,0.0046749822533211,0.0068824102647393,0.0091259235170374,0.0114561289272342,0.0136908157444381,0.0157969344360932,0.0177865814435515,0.0199963196957615,0.0219362895631167,0.0240831684386437,0.0259712252379925,0.0281866905327696,0.0300791393594658,0.0321744874997419,0.0343369383155152,0.0363886846003252,0.0382543718540812,0.0404147556498497,0.0421704327524389,0.0567805550623061,0.0699802150177436,0.0833866854186127,0.0967786068342787,0.1091344581262595,0.1247499391386263,0.1369657983567925,0.1488022325660662,0.1606532147742818,0.1714717806808675,0.184762233091293,0.1975469022333365,0.2088776253820468,0.2198313113301462,0.2300177131352249,0.2393998117490726,0.2491326320016957,0.2582367554321557,0.2666840547497817,0.2739264857437307,0.2814914187907665,0.2881310356115696,0.294570890885204,0.3003475967877262,0.3057148410924288,0.3102976857610878,0.3163709616876454,0.3215907212168228,0.3263059870403663,0.3306877958102068,0.3296015716457876,0.3287434036939314,0.3284039903758213,0.3272246772376744,0.3261512400255583,0.3246721411937737,0.32205805501449,0.3231372935342987,0.3241548946927899,0.324669296820608,0.3254249358145462,0.3258475832756746,0.3265190708585552,0.3279000514967646,0.3299284492519694,0.3308650374169239,0.3310512747063878,0.3339962748997696,0.3382783043799993,0.3425524294639659,0.3459188326493388,0.3473897726059571,0.3487809535934814,0.3508474576271186,0.3540166729821902,0.3569204980842911,0.3614197530864197,0.3732653061224489,0.3778699861687413,0.37557781201849,0.0,2.356840445100139,59.78310612311215,183.75203069183948,262.7323595038217,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95698,44460,421.2000250788941,6191,63.49140002925871,4839,49.89654956216431,1958,20.042216138268305,77.3455376358958,79.73244001386635,63.32130932583449,65.08750605923142,77.10289480934013,79.49248863150434,63.23127437966736,65.0013229380149,0.2426428265556666,239.9513823620083,0.0900349461671297,86.18312121652139,159.58052,111.71480068261874,166754.28953583149,116736.81861963548,349.37558,225.632529680743,364431.6286651759,235125.84346667948,359.4657,173.9468993013444,371507.4087232753,178628.49142222264,2773.38408,1277.2992883208865,2861836.611005455,1298496.9469799646,1142.4226,503.5947315558445,1177648.2162636628,510154.6753890594,1912.02636,800.2441800093959,1959330.1218416267,802969.7713043068,0.38072,100000,0,725366,7579.740433446886,0,0.0,0,0.0,29841,311.13502894522355,0,0.0,32950,340.2056469309704,1615923,0,57920,0,0,6273,0,0,55,0.5642751154674079,0,0.0,1,0.0104495391753223,0,0.0,0.06191,0.1626129438957764,0.3162655467614279,0.01958,0.3358601485148514,0.6641398514851485,24.534611267507028,4.426438300550909,0.3244471998346765,0.2250464972101674,0.2283529654887373,0.2221533374664187,11.569723299509803,6.131135866500175,20.802895987411897,12385.60072329818,54.908540538361336,13.039154013900005,17.768157383387592,12.38996401689494,11.711265124178796,0.5577598677412688,0.7658402203856749,0.7025477707006369,0.5846153846153846,0.107906976744186,0.7329240214888718,0.9129353233830846,0.8747044917257684,0.7333333333333333,0.1390134529147982,0.4932126696832579,0.6797671033478894,0.6390584132519617,0.54,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0046148384806531,0.0070663485456114,0.0093192951076241,0.0115976235045169,0.013750254634345,0.0160306744712528,0.0182592445084403,0.020379990183246,0.0225904231352148,0.0245525870468181,0.0265714872637633,0.0287195523370638,0.0307074037817507,0.0326112756581595,0.0347576167977917,0.0367949448386595,0.03851702699617,0.0405066713811787,0.0424498812153544,0.057245809180636,0.0714966036234993,0.0850134867074591,0.0969276094276094,0.1098054934390954,0.1261357506267122,0.1384535393300155,0.1508009202061943,0.1622375678795912,0.172416754331351,0.1849344601586754,0.1975199003628093,0.2094263633395014,0.2203998118017791,0.230273078489428,0.2399224376731302,0.2488839285714285,0.2577995792221235,0.2659935333824947,0.2743475274725275,0.2827034967785219,0.2895481216541599,0.2962236042469673,0.3018624024512855,0.3078303900640403,0.3124861606593677,0.3172243184487368,0.3216371299446504,0.3268776387651547,0.3307599231922561,0.3301165038118758,0.3285114901552131,0.3277502213104388,0.3270588913551065,0.3257681253888774,0.3237221093785793,0.3216934731381758,0.3224762655628921,0.3238635392999299,0.3251970051641263,0.325935522634672,0.3272024576355168,0.3295366186823579,0.3310639822632298,0.331839321429432,0.3328805057735514,0.3339324945076892,0.3366186982397581,0.3405802191626861,0.3443861323155216,0.3485282744188162,0.3557937181663837,0.3550455831499528,0.3608239586500456,0.3604343720491029,0.3648891551827442,0.363257107540173,0.3642696168817865,0.3683342495876855,0.3809708737864077,0.0,2.6117495426876904,56.77690560928569,180.18990602279803,265.2634982047488,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95610,44343,418.0629641250915,6214,63.66488860997804,4862,50.28762681727853,1954,20.02928563957745,77.23812690061078,79.66864233237351,63.25655152000609,65.05412344954591,76.99383776155052,79.42704115466401,63.164748891232,64.96609499428442,0.2442891390602568,241.601177709498,0.0918026287740971,88.02845526149383,159.9015,112.01459706817003,167243.48917477252,117157.8256125615,350.7963,226.57997321136855,366324.1188160234,236404.31253150155,358.99082,173.1653569958974,372351.4172157725,178685.7804030102,2784.85,1279.3567423532108,2881933.479761531,1307314.446557066,1158.03714,510.7510432730121,1196968.967681205,520010.66212182445,1910.01628,808.1549955874506,1959766.802635708,811874.1082004703,0.38105,100000,0,726825,7601.976780671478,0,0.0,0,0.0,29886,311.97573475577866,0,0.0,32879,340.7384164836314,1605790,0,57698,0,0,6470,0,0,77,0.8053550883798766,0,0.0,0,0.0,0,0.0,0.06214,0.1630757118488387,0.3144512391374316,0.01954,0.3364572130895683,0.6635427869104317,24.590468302329963,4.230131724047466,0.3284656519950638,0.2295351707116413,0.2202797202797203,0.2217194570135746,11.003610066098137,5.778251274324969,20.82460792764691,12369.04831774995,55.35255518258717,13.550055176419113,18.065437470581475,11.884468571610036,11.852593963976547,0.564993829699712,0.7741935483870968,0.7119599248591109,0.5723622782446312,0.1233766233766233,0.7270624518118736,0.8971291866028708,0.8768115942028986,0.6761133603238867,0.1743119266055046,0.506030855539972,0.7005730659025788,0.6542688081149619,0.5412621359223301,0.1104651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.0045439331392695,0.0067520916253756,0.0090056208897878,0.0113479075069206,0.0137636643336695,0.0161048498138609,0.0183876108364319,0.020733179223861,0.0231274261776243,0.0252708692440285,0.027578270295819,0.0297029702970297,0.0319680834613362,0.0340575818910322,0.0362153884359091,0.0382633755947876,0.0404504186317079,0.0425748964253742,0.0448366872176843,0.0591925063248792,0.0729248535529776,0.0866226111805679,0.0993196132538495,0.1113129435620142,0.1273052763153713,0.1398561273389933,0.1514670135187001,0.1631637523275474,0.1732651460618627,0.1859897907425993,0.1981177082881554,0.2095202807262265,0.2200050407092058,0.2308726607445941,0.2406201103059492,0.2502936537235292,0.2587881043407653,0.267691012897209,0.2752965765931302,0.282282491383212,0.2893455795239938,0.2945149382173846,0.3005844999278395,0.306181658600807,0.3110256663864299,0.3149119943756748,0.319459866498194,0.3238955301455301,0.3282327557679325,0.3271909323029951,0.3257936672328321,0.3250787551738264,0.3242436103741719,0.3233629267711375,0.3215695914698788,0.3205877680698967,0.3217375541749748,0.3219655361801455,0.3218924099385558,0.3223491395506124,0.3230040246634548,0.323327237182317,0.323852922690132,0.3247151409810738,0.3254420843360887,0.3274736601007787,0.3309438848012126,0.3348719213558366,0.3386764005713379,0.3412839844642449,0.3421794394511514,0.3438090439601965,0.3457673568818514,0.3474592162010125,0.3498940428537791,0.3523190814322405,0.3583699560527367,0.3625922887612797,0.3582032736962314,0.0,2.1415933226875894,57.08182576280628,186.4119545724317,263.7315036052285,fqhc4_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95723,44403,421.0168924918776,6064,62.22120075634905,4773,49.31939032416452,1894,19.4101731036428,77.33641368994157,79.71049064699628,63.332022412709286,65.08906251673301,77.0983949036805,79.47521582174298,63.24347056781739,65.00430262465764,0.2380187862610654,235.274825253299,0.0885518448918958,84.75989207536827,159.99632,112.15159127395356,167144.88680881294,117162.4074401696,350.0405,226.1502154919456,365106.6201435392,235680.7930089379,358.6951,173.17512544432842,371477.7012839129,178425.24822935078,3140.02661,1434.4398999938446,3244473.961325909,1462679.920179942,1166.59426,518.5638152035976,1203293.283745808,526374.189175598,1856.71664,782.0064770949581,1904415.532317207,786227.3592236575,0.37966,100000,0,727256,7597.494854946042,0,0.0,0,0.0,29848,311.2104718824108,0,0.0,32807,339.50043354261777,1613072,0,57875,0,0,6312,0,0,53,0.5536809335269476,0,0.0,0,0.0,0,0.0,0.06064,0.1597218563978296,0.3123350923482849,0.01894,0.3206863979848866,0.6793136020151134,24.32833833869694,4.365259572175974,0.3184579928765975,0.2260632725749004,0.2321391158600461,0.2233396186884559,11.03412265886344,5.6424849144385485,20.31473106203873,12286.336176598035,54.23649952007601,12.930155180761874,17.127262208868107,12.473136551555523,11.705945578890514,0.5560444165095327,0.7636700648748842,0.7019736842105263,0.5622743682310469,0.1313320825515947,0.7116903633491312,0.8943298969072165,0.837696335078534,0.7063197026022305,0.1938325991189427,0.4998574280011406,0.6903039073806078,0.656414762741652,0.5160905840286055,0.1144219308700834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874711199383,0.004269820180732,0.0065384029646174,0.0091064314171883,0.01147472610195,0.0135253498462102,0.0157048307651515,0.0179803961609148,0.0198439880179526,0.0216612411195053,0.023884207720852,0.0258413584936654,0.0277143621069085,0.0295817153686899,0.0317404628989485,0.0337891614210259,0.0357435000051772,0.0380218275375549,0.0399521904069012,0.0419791666666666,0.0566067289016978,0.0706550739194576,0.0840027686305765,0.0963774362424573,0.1088251104061047,0.1243724833278728,0.1367953528800695,0.148613297035178,0.1599171701214695,0.1702663324119903,0.1834501017014819,0.196018211114836,0.2076677316293929,0.2179873719167158,0.2276298583563179,0.2384395939759835,0.2484762721873711,0.2572995571939131,0.2658912355882052,0.2737639106515846,0.2808823869282858,0.2870889387144992,0.2933227814460022,0.2995069647216504,0.3045767173303897,0.3101012711186582,0.3155355580552431,0.3204906571755434,0.3249915892445847,0.3298585453393856,0.3286376124548834,0.3277719607627025,0.326740071336933,0.3256500412380084,0.3242321835315835,0.3223846708497614,0.321582060675262,0.3226257212842559,0.3235691675934639,0.3245534037873505,0.3254527728823728,0.3252595155709342,0.3258944459564134,0.3269917827795641,0.3273111666346339,0.3299414443721535,0.3306908591380001,0.3349230915005843,0.3378159543758361,0.3387450636243966,0.3417122374890859,0.3417966648735879,0.3433669212502406,0.3478294513657819,0.348078939841739,0.3511515151515151,0.3532990173139916,0.3537861686845885,0.3548209366391184,0.3475609756097561,0.0,1.90527989081255,55.72993218600524,181.46213295447163,261.91485014272735,fqhc4_80Compliance_implementation_low_initial_treat_cost,0 -100000,95620,44007,416.29366241372094,6152,63.145785400543815,4794,49.65488391549885,1894,19.47291361639824,77.26635035352784,79.70434365294103,63.26822878755484,65.07209700841591,77.02740855910622,79.46459281131106,63.17956190544641,64.98540719022704,0.2389417944216205,239.75084162997007,0.0886668821084271,86.68981818887289,160.93484,112.5954647431062,168306.4421669107,117752.83177693596,349.96611,225.79294537403237,365518.1656557206,235657.64941019905,351.99707,170.11868748630653,365097.39594227145,175580.64293586457,3155.95,1446.117271933759,3271349.5921355365,1483256.253037815,1133.79479,503.8441526357028,1170703.6184898557,511897.2627438849,1859.83938,786.2257283988819,1914288.203304748,794551.4192201861,0.37889,100000,0,731522,7650.292825768667,0,0.0,0,0.0,29884,312.0267726417067,0,0.0,32298,334.79397615561595,1606003,0,57672,0,0,6389,0,0,65,0.6797741058355992,0,0.0,1,0.0104580631667015,0,0.0,0.06152,0.1623690253107762,0.3078673602080624,0.01894,0.3283095090118085,0.6716904909881914,24.59574263067597,4.442204922983997,0.3137254901960784,0.2321652065081351,0.2288277012932832,0.2252816020025031,11.143407038995308,5.609792096937506,20.362466929944464,12304.343256775448,54.45479050226338,13.309309170855752,17.005192847059185,12.20505837949758,11.935230104850882,0.5611180642469754,0.8032345013477089,0.6974734042553191,0.568824065633546,0.1138888888888888,0.7216174183514774,0.9166666666666666,0.8358585858585859,0.7098039215686275,0.185022026431718,0.5022805017103763,0.7375886524822695,0.648014440433213,0.5261282660332541,0.0949589683470105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024423365357331,0.0049708343900583,0.0071902261671422,0.0096286806572311,0.0119704403411982,0.0141769520062782,0.0162373448726322,0.0182806576540674,0.020606531881804,0.022840454964648,0.0246623424606921,0.0269309047550521,0.0291426042020526,0.0309619548407052,0.0328354817385556,0.034704330280925,0.0367218755830103,0.0389988056291218,0.0409645827045367,0.0431341057703338,0.0576846682974764,0.0712459394320444,0.0839871855469775,0.0968992248062015,0.1088614279678918,0.1242147858603192,0.1368080945497831,0.1486111703716346,0.1599053776331563,0.1700529703129868,0.1828880235580916,0.1949506227709785,0.2060879982574602,0.2167482827751668,0.2270994048931011,0.2369174116550944,0.2465705987488829,0.2562075605553866,0.2645501443083426,0.2726824344474777,0.2804063053776393,0.2870125307413046,0.2931922908350016,0.2988416155026861,0.3049351344121974,0.3108359973832652,0.3159411934275007,0.3201253694832331,0.3244875999844432,0.328750841884236,0.3280336306556361,0.3265086948739484,0.3258859349891461,0.3255030646466982,0.3251141416695171,0.3233888752756677,0.3221136331237229,0.3219748624003943,0.3237893369344113,0.3243900693997281,0.3253193087903832,0.3256906186833657,0.3263677412580069,0.3284597989387188,0.3295956015336757,0.3311628879997908,0.3327806523541351,0.336302473230361,0.3394783221713077,0.3415217738076248,0.344452568086273,0.3491360921501706,0.3520965692503177,0.3540651644336175,0.3593413789877444,0.3624366678449393,0.3674121405750798,0.3727620197143432,0.382618201694452,0.3831951770911831,0.0,1.865282633341686,56.818887917855456,177.33686932849707,266.1828966076836,fqhc4_80Compliance_implementation_low_initial_treat_cost,1 -100000,95704,44268,419.4077572515256,6159,63.24709521023155,4850,50.08150129566162,1914,19.664799799381427,77.34534288058313,79.71602623744651,63.32656324425341,65.07538421740223,77.1046829837591,79.47494787945008,63.23850905668386,64.98943325769716,0.2406598968240274,241.07835799642885,0.088054187569547,85.95095970507316,158.21608,110.8460697649574,165318.14762183398,115821.77313900922,348.28317,224.27025965179376,363347.22686617065,233767.57465915088,357.36747,171.92409699504512,369697.9645573853,176661.71396819045,3186.16634,1452.0387041729048,3294144.3513332773,1482174.4902751248,1172.28654,518.746795720701,1208344.499707431,525468.3981032146,1873.7965,783.1468223277617,1926978.057343476,791357.256734413,0.38072,100000,0,719164,7514.461255537909,0,0.0,0,0.0,29651,309.22427484744634,0,0.0,32729,338.24082587979603,1621702,0,58241,0,0,6330,0,0,68,0.7105241160244087,0,0.0,0,0.0,0,0.0,0.06159,0.1617724311830216,0.310764734534827,0.01914,0.3323543051476271,0.6676456948523729,24.29615129063039,4.384939505763701,0.3138144329896907,0.236701030927835,0.228659793814433,0.2208247422680412,11.561192928397109,6.085158812242248,20.391413979272805,12335.062430884182,55.06424260593292,13.844226304202929,16.958959521107133,12.404084461906944,11.856972318715904,0.5604123711340206,0.7839721254355401,0.683311432325887,0.5779981965734896,0.1279178338001867,0.7402799377916018,0.9267734553775744,0.8707124010554089,0.7379032258064516,0.1531531531531531,0.4955106621773288,0.6962025316455697,0.621172353455818,0.5319396051103368,0.1213191990577149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0044189487766809,0.0067164481960959,0.0089274832419256,0.0108910085623055,0.012767387165416,0.0149638645097499,0.0170370445984708,0.0191257947784842,0.0213428053761349,0.0233223299776515,0.025200246457178,0.0275657772932052,0.0299168632622155,0.0319604544844738,0.0340710571744591,0.0363301194088588,0.0383769198837692,0.0404870085985506,0.0422146266230382,0.0564479070933244,0.0709471480900052,0.0843607365825507,0.0974539715938979,0.1100184647850171,0.1260344134267391,0.1376403898006411,0.1495910368918803,0.1606112417183158,0.171805789422881,0.1848476033485245,0.1973906453009961,0.2086724700761697,0.2197092437710732,0.2297560707009525,0.2400975555678731,0.2496372201013551,0.2585432818354694,0.2676315341392815,0.2757522650997102,0.2829326422472638,0.2896284775414264,0.2964497041420118,0.3016331372290586,0.3068924467335585,0.3121625952128577,0.3169312036851592,0.3217850104888436,0.3263753919510741,0.330902750257589,0.3296749228093357,0.32819862768332,0.3272994267318065,0.3264821676702177,0.3251421427083023,0.3222056951834757,0.3212149029786965,0.3222098324095634,0.3231285563392279,0.3231224064542556,0.3233327106295535,0.3246098060854485,0.3262805770436964,0.3268267596816027,0.3278897800900835,0.327762423736768,0.3281822571939891,0.3294467951731703,0.3324812661951117,0.3370662023663487,0.338761917795721,0.3429923436835389,0.3463405408812961,0.3513100603468031,0.352802637776731,0.3552178558708299,0.3572958091159376,0.3672350791717417,0.3767955801104972,0.365633581796783,0.0,2.3590697896589568,56.47782375933582,181.48743841667863,268.2054451818777,fqhc4_80Compliance_implementation_low_initial_treat_cost,2 -100000,95669,44140,417.67970816042816,6232,64.05418683168007,4931,51.019661541356136,1926,19.807879250331872,77.2498286400838,79.64861596324202,63.26585613190741,65.03880323695654,77.01418256439763,79.41315073865441,63.17965025011014,64.95490726696319,0.2356460756861764,235.46522458761387,0.0862058817972695,83.8959699933497,159.8201,111.89730343506726,167054.573581829,116962.30026138798,346.51298,223.47799192290023,361673.8337392468,233069.53236147575,358.92276,173.29126639159813,372042.490252851,178665.1197103582,3191.81207,1457.9108926072354,3304921.604699537,1492586.051728601,1159.93967,513.5844085034489,1200085.0850327692,524468.8859541221,1880.10288,779.3385673405107,1935203.9218555645,787517.9142145701,0.37988,100000,0,726455,7593.3897082649555,0,0.0,0,0.0,29590,308.74159863696707,0,0.0,33028,342.0857331005864,1609039,0,57824,0,0,6331,0,0,59,0.616709696976032,0,0.0,0,0.0,0,0.0,0.06232,0.164051805833421,0.3090500641848523,0.01926,0.3442948914040991,0.6557051085959009,24.533959202961476,4.28246486880139,0.3161630500912594,0.2441695396471304,0.2261204623808558,0.2135469478807544,11.150552683802792,5.915191332908708,20.37238600240889,12394.4790024289,56.17339336934776,14.48852306010535,17.683946852913813,12.655131852891548,11.34579160343706,0.578178868383695,0.8039867109634552,0.699807568954458,0.6125560538116592,0.1035137701804368,0.7410782080485953,0.90625,0.8592964824120602,0.7366412213740458,0.1674641148325359,0.5188157166574433,0.7433862433862434,0.6451335055986219,0.5744431418522861,0.0876777251184834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501762632197,0.0045838530733112,0.0067193796246485,0.0092460881934566,0.0116975719909267,0.0139938484101603,0.0162438308112738,0.018471435135549,0.0204233994681939,0.0226134513165575,0.0244632948006523,0.0264406779661016,0.0285229202037351,0.0305494573451655,0.0326037580012389,0.0348115666239192,0.0365876404028681,0.0387134952192103,0.0408539059330233,0.042913890713459,0.0574425626612894,0.0711114368887306,0.084764083620183,0.0972317210467061,0.1098729475328183,0.1244192814434626,0.1363872872266998,0.1487117191995396,0.1597137539310699,0.1699394147724831,0.1835699797160243,0.196330394612707,0.2076023072980841,0.2192695766615486,0.2289753664135617,0.239428482545608,0.2494907210494504,0.2583501596146688,0.2668548276960896,0.2748210860050774,0.2825874921622814,0.2904040404040404,0.2973422716683307,0.3026515242655374,0.3086195548838456,0.3144401296099334,0.3194275312284225,0.3238907762650387,0.3286345329349097,0.3330287863139218,0.3317344070911253,0.3300902542022025,0.3293911519929917,0.3285691507095539,0.3281629490560696,0.326349050526122,0.3246139700053901,0.3241135335252982,0.3247100344360876,0.3253374926047437,0.3262357986607478,0.327718588179275,0.3294194253066711,0.3302325581395349,0.3309891490852848,0.3330810585103607,0.3352494237500356,0.3380895634721525,0.341735812064559,0.3441563590231525,0.3477334542157752,0.3519514767932489,0.3559470813217129,0.3593382408742506,0.3600748013090229,0.3612386671376427,0.3591967138293017,0.3567941415785191,0.3586926668497665,0.3510034078000757,0.0,1.944285470748715,58.26079259557287,190.514205878284,265.36902505210605,fqhc4_80Compliance_implementation_low_initial_treat_cost,3 -100000,95755,44453,420.7508746279568,6381,65.50049605764713,5059,52.352357579238685,2011,20.646441439089344,77.32698317968122,79.68619399231505,63.31555014592704,65.0612230161757,77.08135024707352,79.44018720475547,63.225865765461045,64.97316130969014,0.2456329326077053,246.0067875595797,0.0896843804659965,88.06170648556133,158.29704,110.94778602958708,165314.64675473864,115866.310928502,352.5023,226.86844439061005,367635.2148712861,236431.9055511572,365.10002,176.2171776366844,378014.43266670144,181497.8378271177,3334.56625,1516.4566231357762,3452228.7922301707,1553533.1478761982,1204.52604,528.5631948294254,1246541.7784972065,540687.1627727724,1967.25786,820.6066296001248,2022040.937810036,831048.4461600524,0.3818,100000,0,719532,7514.302125215394,0,0.0,0,0.0,29954,312.31789462691245,0,0.0,33473,346.34222755991857,1618112,0,58117,0,0,6319,0,0,66,0.6892590465249857,0,0.0,0,0.0,0,0.0,0.06381,0.1671293871136721,0.3151543645196678,0.02011,0.3387000596302922,0.6612999403697079,24.58496170121943,4.315210473240222,0.3277327535085985,0.22751531923305,0.221585293536272,0.2231666337220794,11.306821535809355,6.080441657506967,21.51556488445264,12441.852621230686,57.56815911532251,13.798737677899478,18.81877400546396,12.571282354925389,12.379365077033697,0.5651314489029452,0.7862728062554301,0.695416164053076,0.5958965209634255,0.1178033658104517,0.7393939393939394,0.9232673267326732,0.8832116788321168,0.7822878228782287,0.1196581196581196,0.5036105910671302,0.7121820615796519,0.6335204490777867,0.5364705882352941,0.1173184357541899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019350590142343,0.0039240737360832,0.0062318575807401,0.0085947659297789,0.0106992117976099,0.0128404867369278,0.0149386140229228,0.0171283914827593,0.0191222762765218,0.0214429739716072,0.0235930758114603,0.0255807507929827,0.0276815541964331,0.0298505925842025,0.0319469373439788,0.0342739643931018,0.0364729998343548,0.0386171272093602,0.0406680662661872,0.0427105578415542,0.0581879678055807,0.0725800546076513,0.0855078997305599,0.0986670591203431,0.1111661537164298,0.1270893463160899,0.1396059134197297,0.1510635126791151,0.1624931867004392,0.1731865159857046,0.1865831707606247,0.1987718899249488,0.2106586005418521,0.2214041920098017,0.2309597182478538,0.2417717591258671,0.2515523788251061,0.2596191741641988,0.2680106763586802,0.2767305687013716,0.2843596957382515,0.2913431927026615,0.297871836193004,0.3038197986295287,0.3088757540377505,0.3144143588478381,0.3194416599839615,0.3239490445859873,0.328316415820791,0.3332056683263117,0.3319232634585332,0.3296659414502492,0.3290120760353404,0.3285251309355016,0.3287756832755568,0.3265459567285561,0.3245614035087719,0.3260358627944053,0.3269655042670725,0.3280879230673161,0.3293238154122871,0.3296029737424865,0.3297827639816799,0.3309524875733285,0.3332209593527259,0.3347266125029389,0.3355388871459943,0.3410320956576463,0.3441875153514158,0.3477433172047275,0.3501749284383661,0.3524299114950447,0.3568693905730245,0.3560066656567187,0.3602472836268265,0.35915575993397,0.3610009154714678,0.3610268849807964,0.3633073496659242,0.3614035087719298,0.0,1.8190624608063275,58.47827958330823,198.0399583636053,274.3339318789074,fqhc4_80Compliance_implementation_low_initial_treat_cost,4 -100000,95769,44177,418.0684772734392,6132,62.91179818103979,4808,49.72381459553718,1893,19.44261713080433,77.39144353273707,79.73127943140018,63.36142006586866,65.08757662388376,77.15261205454283,79.49142114986385,63.27258773872262,65.00061608748558,0.2388314781942426,239.8582815363284,0.0888323271460365,86.96053639818047,159.984,111.99552428339956,167051.96879992483,116943.39951696224,347.56257,224.38856304692567,362459.6581357224,233843.91927129417,356.51975,172.3775616988191,369366.4024893233,177719.7056606118,3137.97582,1444.3716889891036,3246370.756716683,1477944.5112605374,1138.03476,508.8349212677027,1177813.0605937203,520815.6619236937,1850.499,783.9486875686243,1902196.5562969227,792817.2502157586,0.37939,100000,0,727200,7593.271309087491,0,0.0,0,0.0,29605,308.6384947112322,0,0.0,32682,338.3662771878165,1617271,0,58046,0,0,6273,0,0,55,0.5742985726070022,0,0.0,2,0.0208835844584364,0,0.0,0.06132,0.1616278763277893,0.3087084148727984,0.01893,0.324804992199688,0.675195007800312,24.455986028235102,4.287097639003673,0.3227953410981697,0.2352329450915141,0.2225457570715474,0.2194259567387687,11.09178676145,5.738665978863862,20.324376617002915,12265.167606122171,54.675900478831466,13.676528750564788,17.398993790653808,11.840272100669338,11.760105836943538,0.5628119800332779,0.7966401414677277,0.7016752577319587,0.5476635514018692,0.1232227488151658,0.7387944358578052,0.9363207547169812,0.8671679197994987,0.7261410788381742,0.1652173913043478,0.49800796812749,0.7128712871287128,0.6444058976582827,0.4957780458383595,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020553215616393,0.0042259087730676,0.0065542501166778,0.0088156732107128,0.0107777246799727,0.012865401840241,0.014988791522315,0.0170485848960352,0.019430170907865,0.0216399279692232,0.0238524590163934,0.0260177281680892,0.0280720502255422,0.0304128114611529,0.0323787728847105,0.0346772444141436,0.0367093061765192,0.0385393223467916,0.040496855672782,0.0423654659472072,0.056970481399524,0.0706475678277337,0.0840903845750372,0.0974224690033757,0.1094123973303248,0.1246827679553337,0.1376000848401294,0.1491722699804238,0.1596253657703069,0.1699915315102854,0.1828770736223396,0.1955983345049478,0.2071319110087056,0.2178525000273107,0.2280771175449009,0.2380894425881259,0.2472970864263581,0.2564500005616021,0.2651606175330416,0.2722571196466778,0.2791133096019601,0.2860632267866534,0.292929531828341,0.2982788151732564,0.3044306408172179,0.310757756636678,0.3161058894110589,0.3210828276660433,0.3258869057634314,0.3296598998154495,0.3281567235421456,0.3265743488295417,0.3253178085273934,0.3238691257263983,0.3224629621390755,0.3204813022034234,0.3189731437598736,0.3197059497691476,0.3205418761182585,0.3217907362192796,0.3224531094830332,0.3237922036846683,0.3240880503144654,0.325300125425551,0.3263228980753461,0.3276898155405758,0.3287749287749287,0.3319475938523558,0.335573776260689,0.3380365659777424,0.3399808332953041,0.3433400874480111,0.3478398180899444,0.3504872107186358,0.3542680643953575,0.3562705495537811,0.3644284212107556,0.3680223285486443,0.3719676549865229,0.3821536144578313,0.0,1.8974026880363208,57.017167212695526,184.94132525213135,257.5860561586716,fqhc4_80Compliance_implementation_low_initial_treat_cost,5 -100000,95728,44858,423.9303025238175,6340,64.79817817148589,5011,51.75079391609561,2008,20.631372221293667,77.37264048070351,79.73254868747559,63.34029949113111,65.0823336581796,77.12104882984738,79.47942756989241,63.24718129132315,64.99080724349271,0.2515916508561275,253.12111758317712,0.0931181998079608,91.52641468689636,158.8675,111.28554281310672,165957.19120842387,116251.820588654,348.84311,224.050554402171,363832.2121009527,233470.60881055804,360.92021,174.087829697694,372727.9270432893,178609.7732367553,3276.75804,1494.67714255625,3389006.9467658363,1527398.1202534772,1184.07981,526.1078647010409,1226556.493397961,539221.6015178846,1963.34674,825.0752229559616,2020218.243356176,836776.5969528102,0.38415,100000,0,722125,7543.508691291994,0,0.0,0,0.0,29665,309.2825505599198,0,0.0,33100,341.5510613404647,1619455,0,58214,0,0,6353,0,0,55,0.5640982784556243,0,0.0,1,0.0104462644158448,0,0.0,0.0634,0.1650396980346219,0.3167192429022082,0.02008,0.332226916113458,0.667773083886542,24.36811534572768,4.321819801403347,0.3270804230692476,0.226701257234085,0.2231091598483336,0.2231091598483336,11.188172426971096,5.882831562970012,21.45206826004434,12491.011368459023,56.768024898075474,13.601369446014916,18.433534083421584,12.358031065170453,12.375090303468529,0.5503891438834564,0.7860915492957746,0.6833435021354485,0.5679785330948122,0.0983899821109123,0.7243788819875776,0.9258312020460358,0.8501228501228502,0.7421875,0.1495726495726495,0.4901960784313725,0.7127516778523489,0.6282467532467533,0.5162412993039444,0.084841628959276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023291139240506,0.0046618629209611,0.006989460016028,0.0094450763730906,0.0120692635410629,0.0143840218254372,0.0165436679442224,0.018699220185359,0.020883591609764,0.0230120383260994,0.0251504618949483,0.0272179385825316,0.0293984575835475,0.0314527590681579,0.0336022614724331,0.0357397550514185,0.0376754876382159,0.0395087595556431,0.0419065832415241,0.0437449875535094,0.058679808716353,0.0727828234210856,0.0864473242744506,0.0995259667230741,0.1111720183002677,0.12643131284296,0.139052124657912,0.1510988133879636,0.1619462599854756,0.1731814818389473,0.1866613538951948,0.1990609007995326,0.2107541382985665,0.2209012359181887,0.2309181933212301,0.2417326760095275,0.2511356914044624,0.2609630605374855,0.2694348196535075,0.2769507775586036,0.2839263178613191,0.290700941143419,0.298043537511702,0.3043530442505491,0.3097539917064925,0.3151428430453446,0.3200751408891671,0.3246933374052018,0.3296084321748588,0.3344767533906802,0.3342753710955899,0.3327557040887898,0.331418271938718,0.3297681678903856,0.3294376542659172,0.3277804171583577,0.3257298547418777,0.3260376614413881,0.3267431537253295,0.3278670992121493,0.3274749929886884,0.3278711153178735,0.3301993466789513,0.3316293501796995,0.3319332773310932,0.3328654241077231,0.3335887829246139,0.3379920582809617,0.3405554392575535,0.3435483870967742,0.3469332368373439,0.3488310589230932,0.3504085480829667,0.3550075872534142,0.3558831762620136,0.3592255932003305,0.3633181126331811,0.3618394513916902,0.3677117711771177,0.3727064220183486,0.0,2.3696573901712408,56.32012234459159,196.5107502754772,272.0444493810579,fqhc4_80Compliance_implementation_low_initial_treat_cost,6 -100000,95748,44187,417.0844299619835,6233,64.03266908969378,4834,49.96449011989807,1881,19.34244057317124,77.33281654085012,79.69742123631691,63.319784280511655,65.07046112760541,77.10024641585355,79.46517366868376,63.23417177090927,64.9870716520483,0.2325701249965703,232.24756763315213,0.0856125096023845,83.38947555711229,159.03184,111.35796725527383,166093.934076952,116302.9686961752,346.1603,222.91246089118303,361015.7496762335,232295.522949224,354.80449,171.05636224276128,367262.15691189375,176154.35022460602,3171.0728,1436.0670523789674,3280713.612816978,1468748.6345232648,1165.52438,509.01505916826255,1203153.9457743242,517490.2025820508,1859.85278,771.9672462054756,1914516.230104023,781097.432515165,0.37976,100000,0,722872,7549.724276225091,0,0.0,0,0.0,29495,307.51556168275056,0,0.0,32539,336.4874462129757,1620602,0,58204,0,0,6228,0,0,49,0.51176003676317,0,0.0,1,0.0104440823829218,0,0.0,0.06233,0.16412997682747,0.3017808438953955,0.01881,0.3268702290076336,0.6731297709923664,24.8627268329312,4.4054308880551485,0.3266446007447248,0.2312784443525031,0.2134877947869259,0.2285891601158461,11.099410240832084,5.413631882000994,19.96656583465943,12387.816935266335,54.71564253252074,13.396920225188804,17.82284097396165,11.43735743311381,12.058523900256468,0.5614398014067026,0.7960644007155635,0.695376820772641,0.5717054263565892,0.123076923076923,0.7299444003177125,0.931372549019608,0.865979381443299,0.7125,0.1434977578475336,0.5020979020979021,0.7183098591549296,0.6397984886649875,0.5290404040404041,0.1179138321995464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0047569300051727,0.0070667072799268,0.0094733739238267,0.0117405282220323,0.01404620273794,0.0158985916642021,0.0181725370086778,0.0203678898988762,0.0222916240016383,0.0245445318186944,0.0267486754014868,0.0290984617915604,0.031101956745623,0.0332325660575921,0.0353909124736428,0.0375199353783061,0.0396106389381816,0.0416220431505068,0.0436680312926445,0.0582917510491262,0.0724575517591304,0.085421866152136,0.0983799581585559,0.1101566287918713,0.1263904749820242,0.1388877105162686,0.151204870572207,0.1625934629352702,0.1726671171026243,0.1859528603576927,0.1983576583107033,0.2104135628609023,0.2200865914458147,0.2298960567563108,0.2395942908394326,0.2498716775647749,0.2588424618223968,0.2674777555838024,0.2753543541480616,0.2822969829531646,0.2882423164251773,0.2946561811592486,0.3002997242536866,0.3064067190937488,0.3121614785752181,0.3173255173104864,0.3213694794450808,0.3252005131062363,0.3294243492730082,0.3293098570678018,0.3286253131797032,0.3275446485206433,0.3263208120065932,0.3256554474302889,0.3250130244246269,0.3228181861371086,0.3237152658099037,0.3239907826235385,0.3252754305273291,0.3260592903129211,0.3269314364750049,0.3277697600970488,0.3279401919214461,0.3287931200153742,0.3307281490165429,0.3321552756085048,0.3343185963146972,0.3385431300927227,0.3394426112193376,0.3413511912896906,0.3456993825846285,0.3494704992435703,0.3519854225191709,0.3545913596409201,0.3597633136094674,0.3608655897592197,0.3637648959806099,0.362938596491228,0.3628386112170927,0.0,2.0186240349804714,55.37045532822239,182.56857582343184,268.2687121780585,fqhc4_80Compliance_implementation_low_initial_treat_cost,7 -100000,95774,44709,423.0271263599725,6166,63.0024850168104,4872,50.23283981038695,1988,20.318666861569945,77.34910350822409,79.6778080241205,63.34642956891118,65.0665041234559,77.09858666351819,79.43032211853416,63.25236583290551,64.97690076525626,0.2505168447058992,247.48590558633052,0.0940637360056655,89.60335819963916,160.58416,112.5183841128912,167669.88953160567,117483.22521027752,352.23237,227.3753406482916,367173.7527930336,236807.44319783183,363.10545,175.66924834682882,375182.62785307074,180392.8836784525,3196.48806,1468.1416581804883,3297632.79178065,1493023.6057599017,1187.70324,532.0751873503168,1223125.388936455,538567.9384282965,1950.33122,822.2927905396618,1995543.6757366296,823260.2003400073,0.38314,100000,0,729928,7621.358615072984,0,0.0,0,0.0,29948,312.0471109069267,0,0.0,33238,343.0889385428196,1608323,0,57783,0,0,6353,0,0,69,0.7204460500762211,0,0.0,0,0.0,0,0.0,0.06166,0.1609333402933653,0.3224132338631203,0.01988,0.3322535863026377,0.6677464136973623,24.28470834866104,4.362562744516683,0.3216338259441708,0.2323481116584564,0.2155172413793103,0.2305008210180624,11.285352055685449,5.913550943745725,21.22822742181757,12375.562126541454,55.50048763555344,13.604487019779205,17.779253648350203,11.831702841118844,12.285044126305197,0.5619868637110016,0.7932862190812721,0.6879387364390556,0.6028571428571429,0.1148708815672306,0.7297297297297297,0.908235294117647,0.8399014778325123,0.7575757575757576,0.1845493562231759,0.50125803746156,0.7241867043847242,0.6347975882859603,0.5592185592185592,0.096629213483146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.004277359389412,0.0066753913422811,0.0088267259855156,0.0110627567413673,0.0132232582759884,0.0154609755600399,0.0179823442363627,0.0203741736402742,0.0223547707229236,0.0245771480673284,0.0265158900370442,0.0285285593899656,0.0304764453410459,0.0325700322710354,0.0346847079481485,0.0366829126957025,0.0387399158008254,0.0408371087742632,0.0428733585345788,0.0576804667035409,0.0721069366580202,0.0856313041290079,0.0986642284369055,0.110602914984877,0.1260660501981506,0.1394983993724692,0.1519785607180458,0.1626268771413019,0.1734457707391295,0.1863972527531676,0.1983559569520307,0.2100220755353045,0.220113748222684,0.2295561840411132,0.2402853471576055,0.2496763103848558,0.2586586901763224,0.2667793802267131,0.2750483736160566,0.2818605619628211,0.2889967826849956,0.2945408930071833,0.300497214401246,0.3059212124156021,0.3114212446986882,0.3159251934005958,0.3206141858599748,0.3250495858126239,0.3301799540205586,0.3293070908600701,0.3286582257553421,0.3283733513696313,0.3272301622855821,0.3272624636044922,0.3257085113224013,0.3233869435825999,0.322700918154493,0.3241419370269762,0.3245817843866171,0.3258224763333021,0.3273249480043577,0.328557944415312,0.3286949896925696,0.3291408154889795,0.3304955993294216,0.3314041772913503,0.3345679012345679,0.3373472702874496,0.3399241062512482,0.3423641938584046,0.3451086956521739,0.3470348689233902,0.3502837858567265,0.3540041848963287,0.3581765557163531,0.3622464898595944,0.3628899835796387,0.3662677428332869,0.3655744176865377,0.0,2.4880107372038105,56.349808651868905,186.58807490149928,267.2075158136508,fqhc4_80Compliance_implementation_low_initial_treat_cost,8 -100000,95654,45017,425.7218725824325,6282,64.3987705689255,4932,50.83948397348778,1914,19.570535471595544,77.31532774038504,79.7078742753156,63.31028192710126,65.07632602565623,77.06846600197771,79.46477320329653,63.218098859706345,64.98910295076335,0.2468617384073326,243.10107201907272,0.0921830673949131,87.22307489287573,158.5353,111.09041880462628,165738.2859054509,116137.76612021062,350.93362,226.05746961594136,366148.566709181,235599.34009864103,362.24575,175.5157193889039,374416.3652330274,180178.30981042987,3235.99694,1479.4979389732482,3336535.50295858,1500273.7951873755,1208.68045,537.5843495132633,1241729.6297070694,540166.7349027399,1881.72174,795.9164126809519,1925239.090890083,793882.2257482107,0.38524,100000,0,720615,7533.558450247769,0,0.0,0,0.0,29863,311.4558722060761,0,0.0,33170,342.5157337905368,1617392,0,58041,0,0,6408,0,0,53,0.5436259853220984,0,0.0,0,0.0,0,0.0,0.06282,0.163067178901464,0.3046800382043935,0.01914,0.3324242424242424,0.6675757575757576,24.722502144518003,4.424193068601309,0.3116382806163828,0.2374290348742903,0.225669099756691,0.2252635847526358,11.019234147298883,5.576824515483692,20.39645717486048,12538.610395018664,55.72611005705711,13.89536193570158,17.32502220629142,12.391259724983165,12.11446619008094,0.5535279805352799,0.7830913748932536,0.6805465191932336,0.5705300988319856,0.1188118811881188,0.726928895612708,0.9114219114219114,0.8704156479217604,0.6991869918699187,0.1764705882352941,0.4900277008310249,0.7088948787061995,0.6117021276595744,0.5340253748558247,0.1030927835051546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325688352209,0.0050690403292848,0.007570683391179,0.0097128807428931,0.011962890625,0.0145658263305322,0.0166761862021133,0.0189673663244982,0.0210666257605972,0.0232862965162717,0.0253420302340368,0.0275811770023318,0.0295458052569312,0.0316235265023493,0.0337228266479489,0.0358166040936216,0.0380263594164456,0.0398472125634451,0.0417347161685616,0.0439957890787046,0.0584498359559484,0.0725968586387434,0.0862477957847006,0.0996022225028412,0.1116939313984168,0.12716224513561,0.1402389169100079,0.1515248351601529,0.1625819001913231,0.1736418964610414,0.1869334166927165,0.1995191787052478,0.2107795643322919,0.2217491709441933,0.2312953641800579,0.2424487803795853,0.2529072040572392,0.2621306770217795,0.271490695218739,0.2795914624360943,0.2871505015172925,0.2945845332584111,0.3007686203915345,0.3063972255889023,0.3117306079791953,0.3165343458750431,0.3214245463766482,0.3258086682106227,0.3298376446826691,0.3337953612398189,0.3330953663793103,0.3321810744928454,0.3310604246206731,0.3306568287037037,0.3287793420250643,0.3263214340432051,0.3247439813862201,0.3260018028353683,0.3273776003003464,0.3286315489140126,0.3294141837078022,0.3302218187559204,0.330587865451116,0.3314841740297506,0.3317772751335483,0.3320644522083746,0.3326850474774053,0.3362655444103408,0.3409468585369303,0.3454261829526819,0.348346557813145,0.3527024140140996,0.3596368715083798,0.3627874672017286,0.3639835768165759,0.3647496698283107,0.3670440636474908,0.3641653290529695,0.3684210526315789,0.3710355368742835,0.0,2.7741964744427743,57.38558662849892,179.37081053117228,274.6150222030293,fqhc4_80Compliance_implementation_low_initial_treat_cost,9 -100000,95617,44270,419.7057008690923,6102,62.59347187215662,4821,49.74010897643724,1961,20.00690253825157,77.3146043072854,79.73317116261912,63.296484254502126,65.08263376196545,77.0645976785104,79.48821039220063,63.20297663848448,64.99472629459474,0.2500066287750115,244.96077041848707,0.0935076160176464,87.90746737071231,158.78984,111.20077279952268,166068.62796364664,116298.11937157896,347.29515,223.97669321414065,362548.9609588253,233577.6935211737,352.69145,170.54439204986144,364787.1089868957,175251.69027602344,3203.77497,1446.8649943047292,3309128.2617107835,1471683.0629540046,1166.82281,511.0475257507427,1203278.1199995817,517442.6678841032,1932.63274,816.9350770268941,1975372.3291883245,814810.2911307903,0.381,100000,0,721772,7548.573998347574,0,0.0,0,0.0,29501,307.8427476285598,0,0.0,32355,334.3233943754772,1618235,0,58031,0,0,6122,0,0,61,0.6379618687053558,0,0.0,1,0.0104583912902517,0,0.0,0.06102,0.1601574803149606,0.3213700426089806,0.01961,0.3350070610387572,0.6649929389612428,24.726558641571053,4.48672258346575,0.3159095623314665,0.2217382285832815,0.2223605061190624,0.2399917029661895,11.01560587304907,5.4643018246376815,21.0675576693458,12390.247364995765,54.25261068775917,12.756843263733192,17.000000171125407,11.830660896935786,12.665106355964769,0.547396805641983,0.7680074836295603,0.6848325673013789,0.5960820895522388,0.1175453759723422,0.7169206094627105,0.9194805194805196,0.856020942408377,0.7366255144032922,0.1434599156118143,0.4882484611080022,0.6827485380116959,0.6275197195442594,0.5548854041013269,0.1108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190023608563,0.0046445122755067,0.0068928411905632,0.0089315653101661,0.011260986328125,0.0136178447749032,0.0158505115206903,0.0179180713045254,0.0198934244305571,0.0221712459933025,0.0242158813514123,0.0265131281587705,0.0285587893377776,0.0304991138770968,0.0323709445998534,0.0341732755679174,0.0360166198671654,0.0380725943768428,0.0401752268375926,0.0423172805123551,0.0568250716062804,0.07124148768989,0.08445793381573,0.0975250286869282,0.1095300426466241,0.1248411555404947,0.1379401922770489,0.1500634145821565,0.1620360959849368,0.1723426656066694,0.1848802960501472,0.1972209577073985,0.2089194460485742,0.2200335243270484,0.2297000892788255,0.2400008878235006,0.2497988197424892,0.2588899405083829,0.2673544047808402,0.2748282466824943,0.2826655859194071,0.2900002340221385,0.2962200044985853,0.3019845314467294,0.3076474660254308,0.3133449172489432,0.3184946075119486,0.3241297740019586,0.3284629023282299,0.3324227668025918,0.3312100195273045,0.3309487123046445,0.3297768882750067,0.3296495060103282,0.3287383699292892,0.3267692968857919,0.3251448067920336,0.3252841377038379,0.3256915368247649,0.3259261912009598,0.3264097180563887,0.3273283346487766,0.327851381284741,0.329009354975552,0.3300656727865395,0.3302119270576639,0.3307986948503333,0.3339787028073572,0.3387653976340859,0.3418141592920354,0.3432383536861149,0.3462596550629563,0.3494790022102936,0.3491821985545835,0.3489529533289511,0.3497666626779945,0.3536737235367372,0.3575087072321246,0.3580520199225235,0.3617520531873289,0.0,2.7027896308346278,54.25303631920599,175.37803189494224,273.49597773331425,fqhc4_80Compliance_implementation_low_initial_treat_cost,10 -100000,95635,44569,421.0383227897736,6272,64.24426203795682,4951,51.07962566006169,1979,20.19135253829665,77.29129418892526,79.6915965384479,63.29829466637945,65.07029215856903,77.03367128696249,79.43711556798385,63.20237858888071,64.9779945701108,0.257622901962776,254.48097046404428,0.0959160774987353,92.2975884582371,159.68062,111.81650024342753,166968.80849061537,116920.0609017907,351.62776,227.38336634237345,366991.5093846395,237086.23422205137,358.98321,173.9790779108312,371224.29027029854,178587.17485158786,3244.71189,1488.069190833567,3350880.02300413,1514691.1585920174,1170.47079,525.1159456096121,1205147.9061013227,530350.3365640667,1942.57494,828.6470935778043,1985698.3949390915,829557.7652407298,0.38188,100000,0,725821,7589.49129502797,0,0.0,0,0.0,29922,312.1555915721232,0,0.0,32967,340.64934385946566,1608791,0,57772,0,0,6169,0,0,62,0.6378417943221624,0,0.0,0,0.0,0,0.0,0.06272,0.1642400754163611,0.3155293367346938,0.01979,0.3413929440389294,0.6586070559610706,24.46310915193089,4.458189112610028,0.3156937992324783,0.2357099575843264,0.2191476469400121,0.2294485962431832,11.221723718908756,5.71986454445645,21.330145401829714,12419.773435116991,56.18798629908515,13.970444214411064,17.677366177962444,11.9565341390063,12.58364176770534,0.5548374065845284,0.7694944301628106,0.6986564299424184,0.5824884792626728,0.1100352112676056,0.7151335311572701,0.9097560975609756,0.8838862559241706,0.763265306122449,0.1143911439114391,0.4948653899528171,0.6935270805812418,0.6301489921121823,0.5297619047619048,0.1086705202312138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.004775423299199,0.0073586878190879,0.009694136774718,0.0120257607667185,0.0142587971686102,0.0165793176580949,0.0185839442890109,0.020509569769344,0.0227100526283455,0.0249097546968578,0.0271244582297722,0.0291031417813715,0.0310880295114738,0.0332304452404794,0.0354442686193593,0.0375563500699518,0.0396615272802782,0.0417945543266779,0.0440675138916399,0.0583735657407988,0.0729645651559112,0.0862470862470862,0.0990969181542607,0.1106174142480211,0.1261246004360803,0.1384376924220226,0.1504111807064638,0.1619801133326205,0.1723945416089584,0.1860106532099803,0.1983042404816563,0.2094939533466131,0.2203961415072647,0.2302358906525573,0.2405572995818034,0.2498491451558833,0.2594894661577092,0.2683367211364849,0.2761209426004034,0.2832993701370878,0.2902448158030239,0.2963665012024784,0.3019363662539591,0.3070502056411379,0.3129599446831629,0.3174031902086677,0.3220693436707004,0.3266018611049824,0.3312808858116857,0.331001105449055,0.3305209755021575,0.3286735010872942,0.3278291979895421,0.3280344452555832,0.3265296712417195,0.3246217113097601,0.3249563297188623,0.3249755612341148,0.3248610862161677,0.3255634571245814,0.3265411503018748,0.3272302544352548,0.3270029407143017,0.328573148705599,0.3291644908616188,0.3293970349714025,0.3336478284114854,0.3377350517642087,0.3401897472693932,0.3431882471028378,0.3480014862784649,0.3511513157894737,0.3531578543473256,0.3543822998765549,0.3549590755897929,0.356160100062539,0.3568889818105791,0.3544375353306953,0.3547008547008547,0.0,2.6369450510536536,58.85157811203492,179.87828948986726,274.6183307036244,fqhc4_80Compliance_implementation_low_initial_treat_cost,11 -100000,95640,44439,420.4621497281472,6093,62.59933082392305,4770,49.37264742785445,1872,19.24926808866583,77.27514686010801,79.68598171342151,63.27600815666828,65.05623506743297,77.04426232875146,79.45615968815463,63.19057344059477,64.97362551847415,0.2308845313565513,229.8220252668841,0.0854347160735145,82.60954895881412,158.19936,110.75479136808129,165411.2923462986,115803.83873701516,348.51444,225.3939702400905,363899.6131325805,235166.37415316867,359.95378,174.01855554286814,373240.0250941029,179548.93896007878,3125.37265,1418.2729230875063,3237185.8845671266,1452263.543587939,1122.77079,497.1574321885926,1160439.9937264742,506324.2486203766,1840.25678,765.8428352703718,1893942.199916353,774578.7859498735,0.37974,100000,0,719088,7518.695106649937,0,0.0,0,0.0,29642,309.4102885821832,0,0.0,32823,340.077373483898,1615500,0,58037,0,0,6230,0,0,75,0.7841907151819323,0,0.0,0,0.0,0,0.0,0.06093,0.1604518881339864,0.3072378138847858,0.01872,0.334378429220881,0.665621570779119,24.63195723423185,4.344182647658824,0.3153039832285115,0.2358490566037736,0.2234800838574423,0.2253668763102725,10.835750203966418,5.480675249992851,19.75554097175113,12325.425610576636,54.01060056439055,13.49005818856842,17.11858268289949,11.72148785100648,11.680471841916155,0.560377358490566,0.7884444444444444,0.6968085106382979,0.5684803001876173,0.1227906976744186,0.7208201892744479,0.9004739336492891,0.8354114713216958,0.7318181818181818,0.1688888888888889,0.5022844089091948,0.7211948790896159,0.6464188576609248,0.5260047281323877,0.1105882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265392093324,0.0046826064482126,0.0068489675815534,0.0091010665312341,0.0113406360927186,0.0136874694476128,0.0161520577558428,0.018274443344121,0.0204267326429002,0.0227514744429882,0.0249866655725598,0.0269876002917578,0.0293019188229847,0.0315109159502752,0.033334021768314,0.0351737479697505,0.0370976937030318,0.0393515152774027,0.0413141435900637,0.0431753712664775,0.0586974926053283,0.0724270176247459,0.0854570666218459,0.0984988148538319,0.1109104160725037,0.1259875876384741,0.1388009266146685,0.1501652275876772,0.1616617794995826,0.1724790164322024,0.1847721654270076,0.1977206926838789,0.2096095572365983,0.2193466317209312,0.2292361003818394,0.2396218660090423,0.2490933918338108,0.2571347965919991,0.2659799681311177,0.2738506770181342,0.2807707477784738,0.2878871389537134,0.2939278554737079,0.3000564422187796,0.3055954263471597,0.3104316280447176,0.3138594621701247,0.3178871212217707,0.3222524977293369,0.3264628890240355,0.3268722348116974,0.3262406460592864,0.3260584528190162,0.3247310895211658,0.3243142848652343,0.32269427512482,0.3205233680346802,0.321197105681986,0.3225658062867365,0.322866760468057,0.3228778487294245,0.3232576505429417,0.3238896915635404,0.325256499094709,0.3264359528959384,0.3279683308591817,0.3296243597040409,0.3316573439758657,0.3343283582089552,0.338057805304113,0.3385454545454545,0.3427142629142948,0.3465626768979181,0.3489764973464746,0.3527474595408355,0.3532148395562448,0.3573957211020471,0.3574780657008773,0.3630590833793484,0.3609831029185867,0.0,1.905043420623053,56.0986137579801,176.0931126710712,264.6087631233179,fqhc4_80Compliance_implementation_low_initial_treat_cost,12 -100000,95686,44263,418.4206676002759,6169,63.34259975335994,4806,49.64153585686516,1866,19.17730911523107,77.28391542799022,79.68217673982574,63.28504443165552,65.05973515675142,77.05617446958578,79.45457744951318,63.20042624475303,64.97722686656033,0.2277409584044392,227.5992903125541,0.0846181869024889,82.50829019108608,159.6463,111.81577966826538,166843.48807558056,116856.57684069476,347.25859,224.28996330849904,362320.5484605898,233816.97887984835,360.47523,174.64326133203852,372864.0448968501,179538.9974834401,3124.81674,1423.9573728412386,3230154.69347658,1453285.5770301158,1093.17322,487.75753023539136,1128800.2842631105,496089.4490681928,1823.36348,765.547113599734,1874844.6167673436,773571.5009869986,0.37948,100000,0,725665,7583.794912526388,0,0.0,0,0.0,29605,308.78080387935535,0,0.0,33003,341.1157327090692,1612366,0,57882,0,0,6204,0,0,57,0.5956984302823819,0,0.0,0,0.0,0,0.0,0.06169,0.1625645620322546,0.3024801426487275,0.01866,0.326775284352905,0.673224715647095,24.67751309481184,4.274278133903421,0.3208489388264669,0.2434456928838951,0.2188930503537245,0.2168123179359134,11.24775172113792,5.895698906183735,19.779010288014398,12365.486177963536,54.28494761007907,13.960312296757412,17.397260968797433,11.47704201359749,11.450332330926736,0.5628381190178943,0.7923076923076923,0.6867704280155642,0.5903041825095057,0.0940499040307101,0.7406523468575974,0.9392523364485982,0.8629441624365483,0.7330316742081447,0.1261682242990654,0.4998591152437306,0.7075471698113207,0.6263066202090593,0.5523465703971119,0.0857487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022192497111935,0.004635264524505,0.0068022376316029,0.0091970610054775,0.0115482840369138,0.014037160785592,0.016166046203274,0.01841524696654,0.0205164919457939,0.0228646356204798,0.0249399839957321,0.0271361637417286,0.0292032393163272,0.0311749610957097,0.033392858986137,0.0355022854660903,0.037674852346907,0.039651235208636,0.0413563553151653,0.0433038040646169,0.0584659096844282,0.0723842626520655,0.0860531010599223,0.0989572921160341,0.1113550021105952,0.1267648864333947,0.1388225301268779,0.1500026622650551,0.1615858220920538,0.1720777478454058,0.1847057555507652,0.1968628470529611,0.2083714447493357,0.2189659515282934,0.2291643705777327,0.2393321788552906,0.2495276426854491,0.2584498867337623,0.2671015695143711,0.2742697840901268,0.2814757272548087,0.2890126641651032,0.2955748012812907,0.3010987691383969,0.3067830448226328,0.3125910381434391,0.317416152804933,0.3219706616411144,0.3267030361146026,0.3301447401406499,0.329378333243549,0.3288670004952402,0.3279479854201556,0.3272582972582972,0.3268041849958388,0.3242940969189992,0.3216825301300223,0.3217297155418485,0.3221787356223616,0.32323358642251,0.3239021459549781,0.3243023463376902,0.3245560447431063,0.3241390162755148,0.3239242101182399,0.3244977605489929,0.3265247903235009,0.3304761604638704,0.3332281587435142,0.3352987732489118,0.3376351904026174,0.3404187817258883,0.344197930948523,0.347601586470104,0.3506337311499676,0.3530031612223393,0.3556263269639065,0.356266344799839,0.355979011322839,0.3564356435643564,0.0,2.236543905580876,54.88964720612077,175.8273107263385,272.7156703765322,fqhc4_80Compliance_implementation_low_initial_treat_cost,13 -100000,95665,44689,422.0038676631997,6139,62.77112841687137,4829,49.986933570271255,1899,19.54737887419641,77.35161970545354,79.75867236460752,63.31721993396855,65.09477633813928,77.11448285819473,79.5201810049384,63.22936321759615,65.00829275931792,0.2371368472588102,238.49135966912627,0.0878567163724,86.48357882135826,159.8465,111.9346899673836,167089.84477081485,117006.94085337751,348.88921,225.4061762375023,364216.1919197199,235137.60125176643,366.25641,176.92278854781824,380210.17090890085,182828.024752482,3162.97905,1448.8205039152265,3277226.1015000264,1485391.5265930365,1177.31362,522.5931267954652,1217192.452830189,532803.7075162962,1854.48194,779.9604238075499,1911042.8056237916,792227.9138507164,0.38193,100000,0,726575,7594.992944127946,0,0.0,0,0.0,29659,309.5175874144149,0,0.0,33561,348.08968797365804,1612351,0,57806,0,0,6300,0,0,54,0.5644697642816077,0,0.0,1,0.0104531437829927,0,0.0,0.06139,0.1607362605713088,0.3093337677146115,0.01899,0.3310409502969678,0.6689590497030322,24.41540052160565,4.384280180022636,0.3222199213087596,0.2362808034789811,0.2195071443363015,0.2219921308759577,11.490441186456575,6.115541476278277,20.22926156344177,12392.68071665225,54.841325349088514,13.739809665697669,17.476751709641924,11.848971508041998,11.775792465706928,0.5754814661420584,0.7992988606485539,0.6998714652956298,0.5952830188679246,0.1371268656716417,0.7486712224753227,0.9145496535796768,0.8813131313131313,0.7845528455284553,0.1983471074380165,0.5105353075170843,0.7288135593220338,0.6379310344827587,0.538083538083538,0.1192771084337349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025531656214222,0.0046950261116463,0.0067793857957659,0.0089917093391855,0.0112705856025389,0.0139132206151965,0.0163870901952786,0.0186457812133032,0.0206952965235173,0.0229130390248898,0.0250220571639616,0.027231436381199,0.0292567970856401,0.0315157888225651,0.0335488668994153,0.0355280582684985,0.0377057335931346,0.0402267230013806,0.0421244277985851,0.0442607054603843,0.0592021398867364,0.0727994220439958,0.085636315927578,0.0987825794164378,0.1110747604373337,0.1256958997481001,0.1379822903616248,0.1498369252414146,0.1610321807600137,0.1711266698165886,0.1840876494883159,0.1965181405527208,0.208545147771186,0.21964381492387,0.2298661967953306,0.2393184186603401,0.2494832690911122,0.2580151296829971,0.2667430984380675,0.2754557530230854,0.2830225779587304,0.2890688921616757,0.2960036899932586,0.302205829521232,0.3071461514187926,0.3125130793377239,0.3166618784116317,0.3213872979185451,0.3263784817322102,0.3305644779105892,0.3303663865546218,0.329212850412735,0.3282263397065237,0.3264204586454229,0.3256007242827671,0.3241610327633148,0.3228228228228228,0.3231695315575383,0.3237493597404814,0.3250459583430009,0.3266751611452556,0.327463676563487,0.3277335567658148,0.3300665267669777,0.3313193795104174,0.3334371674064844,0.3335225982284805,0.3359869616999937,0.3388230357704815,0.3402151558297738,0.3412586777984482,0.3432953411418667,0.3462666084461356,0.3506836896577774,0.3548176476074993,0.3568381132969898,0.36029974002141,0.3619372990353697,0.3666125541125541,0.3537542024654464,0.0,1.850607043126516,58.28965549075336,178.45052116592242,263.6461887737806,fqhc4_80Compliance_implementation_low_initial_treat_cost,14 -100000,95786,44484,420.3745850124235,6098,62.389075647798215,4834,49.84026893282943,1911,19.491366170421564,77.3507064425629,79.67741578776678,63.34838135415546,65.06942659411149,77.10813902849868,79.43922848510834,63.25753347514345,64.98310696394951,0.2425674140642115,238.1873026584316,0.0908478790120099,86.31963016198085,159.57766,111.78690495324848,166598.104107072,116704.84721488366,348.06896,224.89107139631813,362688.367819932,234091.40312396188,359.14294,174.02859363756642,371013.7389597645,178591.93463478802,3143.31896,1439.0104678098917,3243461.1738667446,1464399.5408958842,1112.0835,494.4145560956045,1145586.6723738334,500770.0983718891,1865.67012,792.7174233532505,1905819.681373061,791881.8390332769,0.38161,100000,0,725353,7572.641095776001,0,0.0,0,0.0,29658,308.9699956152256,0,0.0,32941,340.08101392687865,1616840,0,58016,0,0,6381,0,0,62,0.6159564028146075,0,0.0,2,0.0208798780615121,0,0.0,0.06098,0.1597966510311574,0.3133814365365693,0.01911,0.3250233717669056,0.6749766282330945,24.34298587431832,4.407643058316823,0.3295407529995862,0.2372776168804302,0.2161770790235829,0.2170045510964005,10.979039308513096,5.568340314608908,20.61669417493689,12397.720627219787,55.083814497836265,13.772830004980214,18.153241057417112,11.733120296042914,11.42462313939602,0.5550268928423666,0.7855274629468177,0.6854990583804144,0.5521531100478468,0.107721639656816,0.7408513816280806,0.9370629370629372,0.8824884792626728,0.6792452830188679,0.1279620853080568,0.4838340486409156,0.6949860724233984,0.6117342536669542,0.5089743589743589,0.1026252983293556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349985819051,0.0044910786699107,0.0067683440388849,0.0090199902486591,0.0111741499918659,0.0134586213566534,0.0160307366189719,0.0180628833260197,0.0202540441664878,0.0223700368399508,0.0245916757177695,0.0266476497327026,0.0288474384666769,0.0310264249611397,0.032873774193881,0.0349903923634785,0.036981467876618,0.0391967821525574,0.0412092762413152,0.0431432973805855,0.0580071582857679,0.0714569522574708,0.0850673515383405,0.0977857645785386,0.1106321536223941,0.1263544012093151,0.1388167173929181,0.1510259248222723,0.1618340984306608,0.1726525406471389,0.1863947042678004,0.1986424997027766,0.2097685537324785,0.2203867584398557,0.2297585539625297,0.2401013375225409,0.2490778403075723,0.2578528737698288,0.2671200272016321,0.2749324911895281,0.2819982673982096,0.2888146521515675,0.2956755222256393,0.3022241918290594,0.3067521149668038,0.3122744793783328,0.3176805941039682,0.322647099965665,0.3272230636788483,0.3326216177032673,0.3316974789915966,0.3300876071020891,0.3291226587804534,0.3276699731050638,0.3265463840917873,0.3249555569177956,0.3232142290986335,0.323215696602581,0.3246015032444741,0.325913466700068,0.3268395419244438,0.3270783329696705,0.3280230649438108,0.3287726720374454,0.3295756288321344,0.3316227679740273,0.3323302668156936,0.3338398708329376,0.3362297340256437,0.3400397614314115,0.3426036044277742,0.3461167648634172,0.3531612657746211,0.3557382086341988,0.3586843841296767,0.3628686964795433,0.3661776061776062,0.3675954592363261,0.3743001119820828,0.3767441860465116,0.0,2.402571701913802,58.58558392057704,178.75407014679354,262.722678118478,fqhc4_80Compliance_implementation_low_initial_treat_cost,15 -100000,95736,44270,418.49461017798944,6178,63.30951784072867,4849,50.07520681875157,1891,19.41798278599482,77.31652017658898,79.67671514628489,63.31665033110207,65.06216791538009,77.07844881437997,79.43964160852454,63.22838699287583,64.97673254141672,0.2380713622090127,237.07353776035237,0.0882633382262341,85.43537396336376,160.07178,112.1466252314252,167201.2409125094,117141.54051916228,351.42165,227.1394281628177,366497.4931060416,236688.5137024274,362.37248,175.4253791887934,374366.7899222863,180145.89837417472,3159.13466,1451.6749936130095,3264461.8952118326,1481504.9257037423,1150.41389,514.1796444487879,1182902.6385058912,518519.6559580513,1849.6345,774.8505225317155,1899863.102699089,781724.3494089901,0.37942,100000,0,727599,7600.056405114064,0,0.0,0,0.0,29973,312.48433191276007,0,0.0,33227,342.9430935071446,1608702,0,57768,0,0,6354,0,0,71,0.7416227960223949,0,0.0,0,0.0,0,0.0,0.06178,0.1628274735122028,0.3060861120103593,0.01891,0.3318885448916409,0.6681114551083591,24.37398789281385,4.337754150560852,0.3299649412249948,0.2346875644462775,0.2206640544442153,0.2146834398845122,11.31330599523921,5.88255585894147,20.123934254700668,12325.854130817232,55.3063861339068,13.76641926235168,18.157764085695483,11.889986867296262,11.492215918563373,0.5597030315528975,0.7864674868189807,0.685,0.5654205607476636,0.1133525456292026,0.7351837959489872,0.9298642533936652,0.8534883720930233,0.7094017094017094,0.158590308370044,0.4931740614334471,0.6954022988505747,0.6230769230769231,0.5251196172248804,0.1007371007371007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183729905491,0.0047242019038736,0.007064196904339,0.0092158874991109,0.011688232421875,0.0142280976921353,0.0159913516159627,0.0181060629269936,0.0202145172339751,0.0222882006654722,0.0243622344352391,0.0266354516423826,0.0287823788908655,0.0308403612286717,0.03277048284114,0.0349430702787593,0.0368614460949226,0.0387527747235649,0.0408935458051371,0.0431838308068969,0.0572574077554344,0.0712835645968062,0.0840552048157392,0.0967884409110984,0.1090220806883607,0.1248294462954148,0.1368294856560855,0.1490392292542715,0.1606154503686291,0.1712228826470399,0.1847443203240296,0.1972317215704948,0.2084697284423225,0.2182241611178535,0.2286532005063569,0.2388283016358558,0.2490173746036,0.2583686834021581,0.2667287089159252,0.274229024423773,0.2813866839462174,0.2881340071121093,0.2939867424242424,0.3002961950330371,0.3065517786176974,0.3118184061189242,0.3162382460841148,0.3199913429833607,0.3246406836721481,0.3297028265145814,0.3292615587668853,0.3283082307872507,0.3268527538932892,0.3267960602549247,0.3270951508925514,0.3244516030065961,0.3232739491536169,0.3229682793132397,0.3227442513964565,0.3239964157706093,0.3242435632399925,0.3247455344766129,0.3252941176470588,0.3260021522733387,0.3275845457173138,0.3284169381107492,0.3287976037655113,0.3311965811965812,0.3329125021918289,0.3352380952380952,0.3380557580174927,0.3384853168469861,0.3406392117230924,0.3433300432768962,0.3449995295888606,0.3465665236051502,0.3470016956990905,0.3470504763835394,0.3418803418803419,0.3370441458733205,0.0,2.241468350162308,58.46710767130906,183.79047642425377,260.10569086302064,fqhc4_80Compliance_implementation_low_initial_treat_cost,16 -100000,95688,44254,419.1643675277987,6234,63.96831368614664,4925,50.99908034445281,1901,19.55313100911295,77.40264542862671,79.78208738818718,63.35728834693722,65.11167561521765,77.1711205592491,79.55044158732794,63.27191937804015,65.02792981577916,0.2315248693776084,231.64580085924055,0.0853689688970646,83.74579943848914,159.2811,111.50453421624115,166458.57369785136,116529.06678808332,347.67128,224.3862418918684,362870.5584817323,234030.9325233833,359.62114,173.58580749939176,372215.4815650865,178619.8366375554,3207.1115,1464.8552109106008,3322795.8155672606,1502171.5869035788,1170.06047,514.7817341221986,1210806.7573781456,526069.3448547986,1869.50342,778.6734794306202,1924779.3453724603,789679.4631896472,0.38086,100000,0,724005,7566.298804447789,0,0.0,0,0.0,29654,309.4013878438258,0,0.0,33034,341.79834462001503,1620768,0,58096,0,0,6330,0,0,56,0.5747847169969066,0,0.0,3,0.0313518936543767,0,0.0,0.06234,0.1636821929317859,0.3049406480590311,0.01901,0.3317550022911257,0.6682449977088742,24.66454344655964,4.280949384147051,0.313502538071066,0.2436548223350254,0.221725888324873,0.2211167512690355,11.111283363006937,5.739369133613639,20.124193372887778,12347.84171113454,55.79147216259023,14.3983598307754,17.43399988196805,12.18444464687833,11.774667802968454,0.5681218274111676,0.8075,0.6884715025906736,0.5915750915750916,0.1101928374655647,0.7450076804915514,0.94,0.8548812664907651,0.7607843137254902,0.1330275229357798,0.5045542368203146,0.728,0.6343347639484979,0.5400238948626045,0.1044776119402985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569401828842,0.0043074178803449,0.0063907486305538,0.0087037770533093,0.0108093267304583,0.0130134614992973,0.0151804010725172,0.0172278298853859,0.0193449491594706,0.0216034221621842,0.0240369831279854,0.0260245565045992,0.0281921839175003,0.0302271931450699,0.0321911660011762,0.0342101183401374,0.0363743670984375,0.038414444329148,0.0405070926411248,0.0425937698664971,0.0572338869737804,0.0718144696890377,0.0853314305501631,0.0982865076944114,0.1101185453931825,0.1256625371602678,0.1384747615156885,0.1496694945022193,0.1615271188613924,0.1720569627040127,0.185124162736103,0.1981906915843352,0.209482383645063,0.2192860657081944,0.2290727092729072,0.2387679635083368,0.2483053870852657,0.2576089521048906,0.2661976458326253,0.2740203757275004,0.2817223421821415,0.2885400863578014,0.2949692961738309,0.3010131457757682,0.3062914509499618,0.3123300481094582,0.3171097528966215,0.3212739759066733,0.3264409975590541,0.3311142394779428,0.3305988184747583,0.3293024021059559,0.3275194342323127,0.3265831894070236,0.3264381431850152,0.3247865858314371,0.3231743925174582,0.3242543003787941,0.3251068758196651,0.3251855939897812,0.3253280005980637,0.3260668724077605,0.3263236794436694,0.3285351962267509,0.3295705109768957,0.3314013930762033,0.3318643200363936,0.3332602842652307,0.3372565503713045,0.3412915231420992,0.3426516117282826,0.3429301261242084,0.3453686200378071,0.3468208092485549,0.3481823318892447,0.3502412616217488,0.3565097799511002,0.3610776035383997,0.3591491682574311,0.3558490566037736,0.0,1.7729134465897702,57.41352878180772,189.7367353920406,265.6055476869752,fqhc4_80Compliance_implementation_low_initial_treat_cost,17 -100000,95744,44798,424.1936831550802,6134,63.06400401069519,4822,49.95613302139037,1846,18.95680147058824,77.33907921770925,79.70591599003278,63.32552877917672,65.07563499140585,77.10419702839006,79.47153883238389,63.23928257089175,64.99167512452978,0.2348821893191939,234.37715764889333,0.0862462082849688,83.95986687607149,158.28626,110.9256252980596,165322.38051470587,115856.47695736508,349.57037,226.16547209741407,364712.8384024064,235822.3618163165,366.07444,176.9191441316366,380169.5354278075,183018.02283472905,3175.624,1444.1293693815187,3291119.4852941176,1482656.6775792935,1155.64116,512.3242570134552,1197631.1413770055,525717.5979836393,1813.27726,763.4418315247628,1864393.0063502677,772629.8939700996,0.38153,100000,0,719483,7514.653659759359,0,0.0,0,0.0,29792,310.745320855615,0,0.0,33535,348.0949197860963,1617255,0,58060,0,0,6249,0,0,57,0.5953375668449198,0,0.0,0,0.0,0,0.0,0.06134,0.1607737268366838,0.3009455493968047,0.01846,0.3405977584059775,0.6594022415940224,24.37328947386647,4.315160886099709,0.328494400663625,0.2258399004562422,0.2235586893405226,0.2221070095396101,10.934701876380036,5.535362298219967,19.83439634739344,12365.793127096757,54.79469962795381,13.083334200665158,17.94790424327334,11.942822304173198,11.820638879842104,0.5653255910410618,0.7878787878787878,0.7013888888888888,0.5862708719851577,0.1167133520074696,0.7349304482225657,0.9007444168734492,0.8819095477386935,0.7481481481481481,0.1569506726457399,0.5031179138321995,0.7215743440233237,0.6408094435075885,0.5321782178217822,0.1061320754716981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0044612077706128,0.0068714919358931,0.0090534059502519,0.0112305829933979,0.0135962276833453,0.015887421608117,0.0180297910136908,0.0201537863759995,0.0221635019152379,0.0242341575476632,0.026283084950135,0.0284677012948278,0.0304347826086956,0.0322883656595476,0.0342909143554424,0.0365589615555946,0.0385856761833598,0.0407121242057756,0.042746262436839,0.0579280389249692,0.071524232024776,0.084830883432238,0.0979074658254469,0.1108158552402644,0.125918874609974,0.1383257481726658,0.1509299379331637,0.1624353549600376,0.1727944726367625,0.1859888807481791,0.1983976614518486,0.2097923397404518,0.2200306312219669,0.2298538024571755,0.2397721100876755,0.249143099579086,0.2586932547095496,0.2663345098795837,0.2742460353836282,0.2811581456708403,0.2882840734979356,0.2954093940683979,0.3011026902769297,0.3069233662093144,0.3117488590653561,0.3172650640024976,0.3216747705315543,0.3265551320974097,0.3307284803120552,0.3301212267827863,0.3284616336463503,0.327913431868457,0.3272114647655131,0.3267095700251178,0.3250371414130584,0.322880390046223,0.323671021280092,0.3247042306572842,0.3262044527167299,0.327468487394958,0.3279875022246831,0.3276461229274828,0.3280735916202242,0.328563539890999,0.3294564566908646,0.3302932710120557,0.3332809306712781,0.3352049410443571,0.3387411030259653,0.340109639104614,0.3411142567170557,0.3429856798884805,0.3439344011035328,0.343418209151555,0.3480275665399239,0.3499690976514215,0.354924397221087,0.3404848147116188,0.3459915611814346,0.0,1.5701852789504578,57.621231251108505,181.3703517919254,263.18919954777004,fqhc4_80Compliance_implementation_low_initial_treat_cost,18 -100000,95696,44101,417.4051162013041,6129,63.106085938806224,4819,49.87669286072563,1867,19.24845343588029,77.30793472821749,79.68316030267697,63.31631099018998,65.06974186009978,77.07691138150815,79.45008797656115,63.23157170205396,64.98619221017344,0.2310233467093354,233.07232611581696,0.0847392881360278,83.54964992633995,159.15988,111.48857648981377,166318.21601738842,116502.85956551346,345.87769,223.5085847983561,360935.6608426685,233062.91255471087,358.65465,172.6839717771094,371197.4795184752,177822.00148184848,3142.37296,1431.1110641786863,3252049.7617455274,1463822.567483161,1138.90986,501.0478121601422,1178814.2660090283,512302.450223474,1838.82524,763.3888640334525,1895898.1775622808,776527.3746047788,0.37953,100000,0,723454,7559.918909881291,0,0.0,0,0.0,29515,307.91255642869083,0,0.0,32837,339.5544223374018,1617221,0,58079,0,0,6287,0,0,70,0.7314830295937135,0,0.0,0,0.0,0,0.0,0.06129,0.1614892103391036,0.3046173927231196,0.01867,0.3367915763394239,0.6632084236605761,24.606650197219757,4.310962568202913,0.3208134467731894,0.2492218302552396,0.2035692052293007,0.2263955177422701,11.079412463625776,5.673074146347172,19.868254381680543,12332.447253834016,54.91384197608192,14.398637819228988,17.716318587262244,10.84895205842557,11.94993351116512,0.5590371446358166,0.7893422148209825,0.6875808538163001,0.5759429153924567,0.1081576535288725,0.730098559514784,0.9322799097065464,0.8544152744630071,0.7288888888888889,0.1206896551724138,0.4945714285714285,0.7058047493403694,0.6255545696539485,0.5304232804232805,0.1047729918509895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363627159143,0.0042661424344371,0.0065125432394323,0.0088770618347282,0.0111667073468391,0.0134719563357908,0.0153460248187537,0.0175701888718734,0.0196282892719131,0.0218546232508624,0.0241422083713491,0.026253105813261,0.0283848408494883,0.0302880454938805,0.0323199801869853,0.034560115786209,0.0367208222811671,0.0388500711178479,0.0406853362183755,0.042554522330178,0.0573992249276633,0.0712282023906717,0.0846543638595423,0.0974096315850362,0.1099854519386873,0.1248757481547279,0.1372576059744558,0.1499031440917896,0.1613344300471088,0.1711999656784933,0.1832425214825662,0.1966512714568483,0.2080638323314237,0.2188213946065303,0.2284240511201786,0.2385814911620077,0.2482149232416994,0.2573003374578178,0.2659132684321601,0.2738028427116858,0.2810405306845414,0.2877010351482543,0.2944984967923679,0.3005482179916268,0.3063768715260463,0.3105035225604264,0.3154107485363988,0.3201132061039507,0.3246038646716067,0.3279395045080775,0.3280346236298184,0.3276808117572449,0.3269917437019264,0.3264200677808997,0.3265072083879423,0.3252803215069103,0.3239302543273731,0.3245237036671112,0.3259166566672952,0.3268428870554969,0.3273413727037079,0.3276002140012285,0.3277794099131237,0.328805746380541,0.3304341540982026,0.3320688572624529,0.3330285453038832,0.3357311878845244,0.3382093138294113,0.3430038204393505,0.3462189487167757,0.3495388880004265,0.3533582325758055,0.3529907329401853,0.359240721503447,0.3633879781420765,0.3642846305568199,0.3607937462417318,0.3665499596014004,0.3587729143284698,0.0,1.778524097200043,58.54956417904874,180.24541494079105,261.3379449111165,fqhc4_80Compliance_implementation_low_initial_treat_cost,19 -100000,95697,44084,417.4634523548282,6249,64.04589485563811,4954,51.08833087766597,1974,20.16782135281148,77.38171245272493,79.75638155275098,63.34258245905804,65.09524721751556,77.13330441930388,79.51155774741024,63.24984696121932,65.00702719622613,0.2484080334210432,244.8238053407437,0.0927354978387242,88.2200212894304,158.4561,110.96433376830414,165580.59291304846,115953.40081950751,346.54736,223.48194604013327,361381.9555471959,232783.7575497385,358.74943,173.55430524256633,370855.14697430434,178225.8458879518,3251.00118,1493.2091482487106,3354100.661462742,1517359.1632476244,1172.09505,522.4314166859269,1209303.248795678,530433.1635229812,1933.02248,815.5536345088133,1976074.380597093,814026.1724618297,0.37841,100000,0,720255,7526.390586956749,0,0.0,0,0.0,29443,306.96887049750774,0,0.0,32846,339.2791832554834,1623488,0,58258,0,0,6188,0,0,69,0.7001264407452689,0,0.0,0,0.0,0,0.0,0.06249,0.1651383420099891,0.3158905424867979,0.01974,0.3317586101798232,0.6682413898201768,24.60075989709365,4.334452004407698,0.3116673395236173,0.2408155026241421,0.2246669358094469,0.2228502220427937,11.215810601841032,5.82470403672915,21.073490922432693,12260.748711752663,56.15863503230175,14.140831409520285,17.44617144015552,12.535856236932853,12.035775945693096,0.5565199838514332,0.7493713327745181,0.7176165803108808,0.5651392632524708,0.1141304347826086,0.7246484085862325,0.8995215311004785,0.8476658476658476,0.7184466019417476,0.1658986175115207,0.4934776575076325,0.6683870967741935,0.6710642040457344,0.5062189054726368,0.1014656144306651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686760654675,0.0044501211365548,0.0069001907699801,0.0089287528188042,0.0112191549524991,0.0136048879837067,0.0158654091256691,0.0176405733186328,0.0197295114645839,0.0221414679086907,0.0243074778044329,0.0262628336755646,0.0281160016454134,0.0303673334844145,0.0323213143175579,0.0344706368899917,0.036560609826829,0.0386443351389494,0.0404996411819155,0.0424157157000677,0.0576820645646429,0.0716731053110964,0.0842225649742411,0.0968576748687629,0.108886662095881,0.1236450545150749,0.1364441756586137,0.1481315873522836,0.1586706406435278,0.1687048121688013,0.1821610612412039,0.1944288065130781,0.2056037155070209,0.2158997737037158,0.2261467385326146,0.2357728077945084,0.2458478801601731,0.2556075502261018,0.2638367383980125,0.2717632778324897,0.2786346543245588,0.2855672995977925,0.2920671369726812,0.2981181829078269,0.3037530222216822,0.3099355379438699,0.3154688184149621,0.3198228015683079,0.3238440616500453,0.3276210076384216,0.3277049753787369,0.3272327562517175,0.3266394596115958,0.3253858358574931,0.3245205844867957,0.3222047436504421,0.3206736389775348,0.3218149972991111,0.3222874648966045,0.3237974863816,0.324776097077576,0.3268160833366215,0.3282015979306172,0.3290825994872366,0.3305035971223021,0.3318378672752262,0.332822521141949,0.3360955627130304,0.3389735896451872,0.3426119963623423,0.3444348654657652,0.3477130425554494,0.352289979757085,0.3546045089797478,0.3563164330730881,0.3537455410225921,0.3602703948379167,0.3603843008994276,0.3598770606314613,0.3584018801410106,0.0,2.609794844198609,58.999959380512415,181.7310049449733,271.0545434432772,fqhc4_80Compliance_implementation_low_initial_treat_cost,20 -100000,95874,44472,420.0408869975176,6222,63.85464255168242,4889,50.57679871498008,1966,20.20360055906711,77.44506122741345,79.72248933061816,63.40474875222951,65.08390930981156,77.2014453393216,79.47827115755224,63.31498547079477,64.99615248951714,0.2436158880918526,244.2181730659172,0.0897632814347346,87.75682029441612,158.62924,111.11333903052122,165455.4936687736,115894.72185422666,347.15889,223.82790081355307,361664.9978096251,233029.01159047545,357.3985,172.1664719039987,370420.03045664105,177702.8133386683,3221.79315,1470.501905004932,3332090.6397980684,1505644.5170669293,1165.79308,517.5573338145078,1201224.1379310344,525314.472109967,1927.2153,807.2842288595937,1981127.47981726,816098.4437203375,0.38078,100000,0,721042,7520.704257671528,0,0.0,0,0.0,29612,308.404781275424,0,0.0,32708,338.8822829964328,1625083,0,58360,0,0,6238,0,0,47,0.4797963994409329,0,0.0,1,0.0104303565095854,0,0.0,0.06222,0.1634014391512159,0.3159755705560912,0.01966,0.3353238401469913,0.6646761598530088,24.400471877017345,4.408469417984557,0.3176518715483739,0.2315401922683575,0.2227449376150542,0.2280629985682143,11.087831796830306,5.64038501967231,20.940082920820814,12339.689268579048,55.34277170451162,13.431439791786977,17.49222651529535,12.097926091168404,12.321179306260882,0.5536919615463285,0.773851590106007,0.6947842884739215,0.5702479338842975,0.1174887892376681,0.7107692307692308,0.9226932668329176,0.8693467336683417,0.676923076923077,0.1327800829875518,0.4967957648370019,0.6922024623803009,0.6346320346320347,0.5367913148371531,0.1132723112128146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024291989716391,0.0046596906370607,0.0067529886537623,0.00893183386789,0.0112077549942081,0.0133074238740067,0.015379287867677,0.0175594236593349,0.0196877329493816,0.0217382413087934,0.0240013925722652,0.0261932599019547,0.0281206992173859,0.0302612631145854,0.0326282929643633,0.034804508484373,0.0369910753989182,0.0389708625191694,0.0409957748087244,0.0430855989428889,0.057586437002127,0.0717471924784539,0.0847022856006114,0.0972738147705093,0.1096580746975276,0.1245448692917374,0.1368747617635847,0.1490283990098063,0.1602759591392804,0.1701590291303696,0.1833207952713594,0.1965683680851753,0.2078552275909984,0.218955390091054,0.229117469383272,0.2395587861086218,0.2494064670017945,0.2581935440378414,0.2665865629852979,0.2744705438152882,0.2816872094905533,0.2884970652199331,0.2954335738790962,0.3009420524054057,0.3060857957648201,0.3116104407781335,0.3166520595968449,0.3214122079112151,0.3256546130624619,0.3301356486857384,0.3296000646142663,0.3288569386408621,0.3279253187869926,0.3265811842673966,0.3261735819989038,0.3239782681683607,0.3217068938318346,0.3223385118560916,0.3233496228439101,0.3247582136253733,0.3252046193519453,0.325609852372306,0.3263111650383883,0.327681220856295,0.329607062323082,0.3308737561381173,0.332397402081738,0.3354715564177983,0.3377093707559981,0.34298925071135,0.3452310493967676,0.3478584729981378,0.350267548001259,0.352846525170485,0.3533756273080201,0.356246264196055,0.3576076851564921,0.3554216867469879,0.3692911179602129,0.3711137347500984,0.0,1.5255814046816971,57.72946305209325,182.101221171345,269.7267900296838,fqhc4_80Compliance_implementation_low_initial_treat_cost,21 -100000,95690,44441,419.9289371930191,6017,61.55293134078797,4755,49.17964259588254,1835,18.85254467551468,77.29747507811412,79.70068116954569,63.28577397120039,65.06568197478164,77.0700204178956,79.47442600637476,63.200889194635245,64.984318737512,0.2274546602185125,226.2551631709329,0.084884776565147,81.36323726964179,159.7563,111.89866939697497,166951.46828299717,116938.3024463528,345.9454,223.21204413408915,360974.5218936148,232724.52112902957,354.89189,171.14415906332326,367858.2715017243,176646.25594593,3093.94083,1411.7460233871293,3198339.533911589,1441063.9926394948,1122.60388,493.8780165939865,1159468.199393876,502444.37581875286,1793.89082,751.4973826881811,1842508.3498798204,755907.0395901432,0.38131,100000,0,726165,7588.703103772599,0,0.0,0,0.0,29470,307.3884418434528,0,0.0,32620,337.8722959556903,1612591,0,57874,0,0,6191,0,0,50,0.5225206395652628,0,0.0,2,0.0209008255826105,0,0.0,0.06017,0.1577981170176496,0.3049692537809539,0.01835,0.3280927425758297,0.6719072574241702,24.7988267206874,4.333599361013431,0.3249211356466877,0.2351209253417455,0.2262881177707676,0.2136698212407991,11.275863720575082,5.907145962550111,19.438110224188303,12390.696948263409,53.6644903023299,13.42060285119479,17.28978109091105,11.787718909558969,11.166387450665075,0.5623554153522607,0.7701252236135957,0.6731391585760518,0.5920074349442379,0.1338582677165354,0.724960254372019,0.9051094890510948,0.8575197889182058,0.7520325203252033,0.1351351351351351,0.5038604518158422,0.6916548797736917,0.6132075471698113,0.5445783132530121,0.1335012594458438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023105922412744,0.0047166940539224,0.0070968069445149,0.0096026826542018,0.0116475423177083,0.0138117889118632,0.0161765755841824,0.0183719529008077,0.0207003763704794,0.0228880992124855,0.0249253777271748,0.0271625231148551,0.02928013662692,0.0312963726298433,0.033381517811048,0.0355110991579949,0.0374278340364224,0.0392822653499891,0.0413350395871698,0.0434923083336807,0.0582397492817968,0.0719422954114802,0.0852099817407182,0.0977403269582781,0.1099097008312587,0.1250740584003385,0.1374694830697378,0.1493886853540086,0.1607729075996877,0.1712224345622812,0.1851604205985441,0.1965358017732879,0.2080732825757823,0.2181162834010758,0.2281906567605106,0.238341968911917,0.2483821573470733,0.2580314499414256,0.266855240886526,0.2745358698143479,0.2814154166907974,0.2888188939498612,0.2950072238933232,0.3014448231171698,0.3080366374329469,0.3135658053848622,0.3186477207227526,0.3227755330945613,0.3268906254056439,0.3318830421730563,0.3309488459981104,0.3296077051510259,0.3290516766289372,0.3285768094106739,0.3285202313857867,0.3269808199031803,0.325461102850454,0.3251175824716081,0.325248258359025,0.3262610800612295,0.3269643423581438,0.3296219065979462,0.3298409650624034,0.3307207588341386,0.330962303012885,0.3331949130547625,0.3321882807176924,0.3366231162076636,0.3391295220768315,0.340106740462542,0.3422258518216052,0.3456600982619261,0.3486537257357545,0.3487334593572779,0.3495881692250093,0.3525943396226415,0.3535369034831978,0.3529649868447683,0.3586926668497665,0.3574990410433448,0.0,1.8670535085296325,55.341273945837074,176.3955067160727,262.7952141174646,fqhc4_80Compliance_implementation_low_initial_treat_cost,22 -100000,95827,44729,422.9079486992184,6228,63.69812265854091,4880,50.31984722468616,1965,20.07784862303944,77.32864418348662,79.63866665327524,63.32870225298407,65.03815701136031,77.08701144398809,79.40183251139226,63.23836585796391,64.95312516993944,0.2416327394985273,236.83414188298,0.0903363950201523,85.0318414208715,159.5363,111.82840716537376,166483.6632681812,116698.22405519712,351.30156,226.9370451254868,366018.3664311729,236238.12195465455,362.01858,175.24782157516725,374652.9892410281,180417.00821188837,3216.77642,1463.282154191909,3320329.093053106,1490475.016636133,1190.71515,523.2320090874606,1226915.2222233815,530374.4132029985,1921.1699,798.8262218043787,1965672.0757197868,798219.7162082131,0.38355,100000,0,725165,7567.439239462782,0,0.0,0,0.0,29899,311.3840566854853,0,0.0,33274,344.04708485082494,1610113,0,57842,0,0,6311,0,0,62,0.6469992799524142,0,0.0,0,0.0,0,0.0,0.06228,0.1623777864685178,0.3155105973025048,0.01965,0.3305683563748079,0.669431643625192,24.37316653257662,4.367239998835505,0.3110655737704918,0.2420081967213114,0.2215163934426229,0.2254098360655737,11.313151070795824,5.930243672465158,20.67670688590074,12445.283853687835,55.26301063967457,14.246985821498749,17.140246877093762,11.973517502306184,11.90226043877588,0.5661885245901639,0.7984758679085521,0.7114624505928854,0.5541165587419057,0.1281818181818181,0.7364341085271318,0.9049773755656108,0.8578680203045685,0.7208333333333333,0.1822429906542056,0.5050139275766017,0.7347767253044655,0.6601423487544484,0.5065398335315101,0.1151241534988713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079303185293,0.0047844949924988,0.006868563891848,0.0090098326019827,0.0113382143583485,0.0133984931785787,0.015839363979207,0.0179411554593976,0.0201933492754511,0.0224607576284714,0.0246111600647554,0.0263946471819711,0.0285696668242451,0.0306471205913236,0.0327513844059686,0.0347830578512396,0.0367369325178769,0.0389743696084936,0.0409776466677746,0.0429044278368757,0.0577460675094922,0.0716429146495749,0.0851458580098741,0.0975345748034806,0.1098356681318449,0.1258681381409951,0.1391896334156919,0.1516499420046183,0.1630887536046139,0.1736468519471607,0.1864129322692858,0.1985608396905264,0.2098440524610131,0.2208800218638972,0.2305982548607519,0.2408154221138932,0.2508822872459236,0.2603069854390252,0.2699559311253464,0.2777669446324314,0.2844884564987998,0.2913656408331769,0.2982451974449694,0.3036823451672974,0.309276343012925,0.3136645196317958,0.3180188537331394,0.3227105853559045,0.3280384141197845,0.3317329312488427,0.3317058696590418,0.330657508172301,0.3302250667570889,0.3296602920067855,0.3288703552014297,0.3277651538414297,0.3261718130176764,0.3264893477117306,0.3263765541740674,0.3277875853706378,0.328719399127161,0.3296373159403103,0.3294833971502103,0.3310106085985483,0.3308650286098956,0.3324192326777925,0.3329061289587605,0.3357840826970811,0.3383403361344538,0.3405088837006846,0.3446816257794365,0.3471904736590293,0.3497126255289585,0.3520036778790897,0.3543537865179162,0.356062424969988,0.3595574677320221,0.3615980432123929,0.3670256835128417,0.3644133644133644,0.0,2.353592005807136,56.337800718014655,183.13218564841767,269.3804293230769,fqhc4_80Compliance_implementation_low_initial_treat_cost,23 -100000,95750,44347,419.15404699738906,6119,62.83028720626632,4779,49.36814621409922,1853,19.01827676240209,77.35098256499538,79.6994527627462,63.33757887846742,65.07081822739256,77.11426494567618,79.46252781519445,63.249295305249824,64.98488485218424,0.2367176193191937,236.9249475517563,0.0882835732175948,85.93337520832733,159.5187,111.73803810744624,166599.1644908616,116697.68992944776,348.20697,224.6856161975069,363115.1122715405,234114.41268495817,359.4758,173.69825945830542,372079.6971279373,178757.97835550187,3105.94219,1420.921577931961,3212275.540469974,1452819.9601471403,1098.6801,483.9801709813698,1136241.9425587468,494257.68248707015,1815.68882,770.2563975879311,1865428.7415143603,777742.2935630243,0.37989,100000,0,725085,7572.689295039165,0,0.0,0,0.0,29673,309.3368146214099,0,0.0,32849,339.7284595300261,1615574,0,57950,0,0,6413,0,0,71,0.741514360313316,0,0.0,0,0.0,0,0.0,0.06119,0.1610729421674695,0.3028272593561039,0.01853,0.3439639079029247,0.6560360920970753,24.67507054178851,4.327898033996585,0.3241263862732789,0.2452395898723582,0.2090395480225988,0.2215944758317639,11.29513024521198,5.881648645648051,19.818928648235715,12349.886034696856,54.16324623955537,13.863505547260132,17.532691477086303,11.122161139809773,11.644888075399152,0.5591127851014857,0.7935153583617748,0.697869593285991,0.5495495495495496,0.1057601510859301,0.7192307692307692,0.9285714285714286,0.8520286396181385,0.6652542372881356,0.1377777777777777,0.4992814027019258,0.7180851063829787,0.6407079646017699,0.5137614678899083,0.0971223021582733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.0043076798329633,0.0066055827828681,0.0089075322986918,0.0110319162997834,0.0132035711740692,0.0154228805007084,0.0175438596491228,0.0200226903382086,0.0224646654862909,0.0248170244172458,0.0271299527817696,0.0292602683390736,0.0311605395942745,0.0332384253528101,0.0353488372093023,0.03726598740888,0.0393483449206184,0.0412122472318968,0.0430144492712858,0.0584796542580954,0.0726293216172394,0.0858077503774534,0.0983641027797636,0.1107936876060762,0.1256686187868665,0.1387816569804437,0.1506576706964073,0.1618826847272222,0.1726901168216779,0.1860693087438463,0.1980993202580421,0.2096033766290277,0.2201175273300285,0.2301213308964393,0.2407910343527951,0.2508014163008634,0.2596617949843048,0.2678885547296147,0.2755075138412866,0.2828286336065194,0.2891986470512505,0.296115758213935,0.301936071308765,0.3074588452386733,0.311975966806614,0.3164180224342541,0.3206652341415656,0.3247928534438115,0.3283745611024578,0.3272602315145471,0.3263798947339414,0.3250998039188026,0.3247933764673527,0.3232752851597936,0.3206179405048353,0.3189910744011288,0.3195125160356567,0.3207176084279655,0.3213482343699789,0.3228875943581771,0.3237331964705185,0.3244199681715387,0.3251910785321593,0.3255858624663849,0.3268939986443506,0.3273270708795901,0.3303257042253521,0.3333566678333917,0.3345483359746434,0.3385378732702112,0.3408692883298838,0.3432807689891311,0.3445715584513978,0.3490875058493214,0.3506401137980085,0.350271107668474,0.3553382233088835,0.3554568175506803,0.3597372488408037,0.0,2.1063251487058547,57.22363955237479,172.53120318705746,265.8278761941335,fqhc4_80Compliance_implementation_low_initial_treat_cost,24 -100000,95824,44621,421.8776089497412,6204,63.39747871097011,4889,50.2483720153615,1892,19.24361329103356,77.51248185563044,79.79885381354792,63.42745123530996,65.11106084759234,77.2759466675441,79.56854330002092,63.33885955059744,65.0283335144863,0.2365351880863357,230.3105135270016,0.0885916847125258,82.72733310603542,160.8464,112.56735037134384,167856.0694606779,117473.02384720302,350.07906,226.15416220340188,364561.310318918,235235.7783054369,360.0338,173.81645942845046,370896.8316914343,177682.52714730517,3216.00649,1463.5504957311916,3304964.2886959426,1476136.44361662,1160.77466,511.4300354427744,1187954.2494573384,510312.826016564,1856.5913,779.9627650320112,1889363.791951912,773379.788088018,0.38216,100000,0,731120,7629.821339121723,0,0.0,0,0.0,29825,310.4337118049758,0,0.0,33040,340.0087660711304,1614618,0,57903,0,0,6261,0,0,59,0.6157121389213558,0,0.0,1,0.0104357989647687,0,0.0,0.06204,0.1623403809922545,0.3049645390070922,0.01892,0.3316923076923077,0.6683076923076923,24.65960450349706,4.3316661969839005,0.3180609531601554,0.2350173859685007,0.2229494784209449,0.2239721824503988,11.11165710868672,5.70876546361749,20.035581167107583,12341.891765140092,55.16800567028126,13.788123060850012,17.50640109572502,12.080637187012837,11.7928443266934,0.5561464512170178,0.7893820713664056,0.6945337620578779,0.5614678899082569,0.1095890410958904,0.7272727272727273,0.9060240963855422,0.8880778588807786,0.6944444444444444,0.1558441558441558,0.4935754189944134,0.723433242506812,0.625,0.5214797136038186,0.0972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021957784388723,0.0045877598971045,0.0066390293840399,0.0088177694797617,0.0112659745220341,0.01319027763653,0.0153936999857465,0.0176517376407244,0.0195848181920292,0.0218836281828407,0.024115508678511,0.0263155195930632,0.0283800168512772,0.0305151031750115,0.0326701030927835,0.0347666215643946,0.0369519552147683,0.0390556960975407,0.0412736339081653,0.0431229242798096,0.0572683089631004,0.0710730493339189,0.0843471973340878,0.0970327188698072,0.1093139577739167,0.1252376727088351,0.1377618078521156,0.14923325605632,0.1606723585912486,0.1707382377826091,0.1840336405579514,0.1962279640511579,0.2076270726330991,0.2188052855738779,0.2289496813887057,0.2390506105114139,0.2486853246579616,0.2581859028362819,0.2660792552408349,0.2743157533855208,0.2821089541737315,0.2888912187507281,0.2952296715608231,0.3014043803291217,0.3064855835572663,0.3127172671326266,0.3172160989476834,0.3220957181393346,0.3261578519960298,0.3301265224695506,0.329014711005118,0.3279406531439052,0.3267143717354469,0.3264343348627152,0.3259040153812024,0.3240422902650007,0.3234913316701929,0.3239302953448417,0.3246408388370668,0.3256910945371046,0.3261775311548306,0.326069394912616,0.3273046238670064,0.328177164478077,0.3288792383497578,0.3301279565723148,0.3314494023228869,0.3344429580312976,0.3374279963911444,0.3394921875,0.341633510662077,0.3435106549262752,0.3482269942446933,0.3524700598802395,0.3536033957737381,0.3543847406373575,0.3560162235241099,0.356718192627824,0.3570462537192318,0.3564467766116941,0.0,3.017787796613016,56.58142148763261,183.2122018862789,263.6420522370923,fqhc4_80Compliance_implementation_low_initial_treat_cost,25 -100000,95743,44127,417.90000313338834,6206,63.6077833366408,4897,50.62511097417044,1954,20.032796131309865,77.31288813594676,79.67297258799786,63.318020272784125,65.06275786082733,77.07371561490898,79.43385330550825,63.22961619908386,64.9766529593805,0.239172521037787,239.1192824896109,0.0884040737002678,86.1049014468307,160.37912,112.30345156629616,167510.02162037956,117296.77529040884,350.21694,225.80867361279368,365239.5579833513,235299.75414682395,355.84381,171.87439079585624,368733.7037694661,177167.0669093581,3221.03437,1461.9103176709216,3330477.6746080653,1493138.0755469564,1175.49871,508.7594868123196,1215492.046415926,519107.7434510304,1914.36556,795.5175444767915,1964784.3079911848,803243.8799858505,0.37976,100000,0,728996,7614.091891835435,0,0.0,0,0.0,29836,311.041016053393,0,0.0,32659,338.134380581348,1610117,0,57841,0,0,6388,0,0,56,0.5848991571185361,0,0.0,0,0.0,0,0.0,0.06206,0.1634190014746155,0.3148565903963906,0.01954,0.3232864137086903,0.6767135862913096,24.61176111673447,4.330902923746064,0.3250969981621401,0.2289156626506024,0.2231978762507658,0.2227894629364917,11.112762343693012,5.775458605253048,20.686151891247132,12314.009618377302,55.57115269233013,13.486834576383838,18.024664355514165,12.31856391799341,11.741089842438711,0.5599346538697162,0.7716324710080286,0.714824120603015,0.5617566331198536,0.1145737855178735,0.7228177641653905,0.907621247113164,0.8465473145780051,0.7014388489208633,0.1225490196078431,0.5006961849067112,0.686046511627907,0.671940049958368,0.5141104294478528,0.1127395715896279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0044699419211627,0.0069095668584299,0.0090297810100353,0.0110657946928936,0.0134114052953156,0.0157540532272866,0.0177741932190585,0.0198233381724497,0.0220456476996958,0.0242794598640432,0.0262979544894438,0.0283651472766167,0.0304375592270611,0.0325086662264773,0.0343337880854934,0.0361281103413997,0.0379870298313878,0.0401613943137621,0.042031779109143,0.057014887974776,0.0708478513356562,0.0849124867602797,0.0971442390595756,0.1093326585054671,0.125241968752975,0.1378589468769234,0.1500425803704492,0.160789633918366,0.1705235164175263,0.1836044746390465,0.1956740388255015,0.2070693891752016,0.2174184093096509,0.2264009770804221,0.2373572322724302,0.2472178504057417,0.256039788902767,0.2653756601737748,0.2731262892505157,0.2801648777889703,0.2874121211412261,0.2944273544723142,0.3001750011986383,0.3051755558255376,0.3106554447881111,0.3161064162754303,0.3210823601251812,0.3247503464711749,0.3291632539829321,0.3285693098008548,0.3270596982046481,0.3266195573985528,0.3263285863146926,0.3251921129445404,0.3238699177005282,0.322814261891527,0.3235177930671231,0.3243155261624919,0.3248915654012976,0.3265490218187968,0.3282868367792372,0.3286512135718485,0.3289299867899604,0.329948871310052,0.3318692810457516,0.334124306707073,0.3381501976284585,0.3422816424439114,0.3436963036963037,0.3463510667521289,0.349339863713799,0.3546157229937787,0.3581838992750858,0.3568527439312364,0.3588738417676407,0.3591288229842446,0.3594067452255181,0.3668622520257055,0.3641221374045801,0.0,2.030567550149327,57.58685452178548,183.6070182661773,269.0889560924808,fqhc4_80Compliance_implementation_low_initial_treat_cost,26 -100000,95784,44653,422.4191931846655,6209,63.6118767226259,4851,50.10231353879562,1857,19.02196609037,77.37208356525132,79.7107204166842,63.35007434272507,65.07950052973905,77.14234803240117,79.48297955870866,63.26418303504364,64.99669295474497,0.2297355328501424,227.74085797553312,0.085891307681436,82.80757499407798,158.86244,111.34761904016167,165854.88181742252,116248.66265781516,351.0995,226.9064894874721,365992.7127704001,236333.5671819295,362.29532,175.10940306601546,374976.69756953145,180235.5932201529,3153.0334,1438.3664153043198,3256756.264094212,1466650.0240942,1150.23953,506.8885883022207,1186348.1583563015,514776.40372724127,1824.63234,767.6859227922645,1870354.485091456,772098.8284324169,0.38287,100000,0,722102,7538.858264428297,0,0.0,0,0.0,29886,311.4403240624739,0,0.0,33171,343.0635596759375,1618079,0,58089,0,0,6382,0,0,68,0.7099306773573875,0,0.0,1,0.0104401570199615,0,0.0,0.06209,0.1621699271293128,0.2990819777741987,0.01857,0.3379742962056303,0.6620257037943696,24.551455203455923,4.278607205200431,0.3257060399917543,0.240775097917955,0.2131519274376417,0.2203669346526489,11.152999573528216,5.866477553007867,19.72787291714568,12420.485533653418,54.94666353846655,13.996040564761808,17.776234394955473,11.376447979687672,11.797940599061596,0.5642135642135642,0.7868150684931506,0.7031645569620253,0.5696324951644101,0.1103835360149672,0.7392,0.9184149184149184,0.8919597989949749,0.6948356807511737,0.1285714285714285,0.5034712579838934,0.7104194857916103,0.6395939086294417,0.5371498172959805,0.1059371362048894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020763698977008,0.0045213089493532,0.0068092792920785,0.0092136406578559,0.0113393674361842,0.0136321062062225,0.0158701036602146,0.0179806926954711,0.0202338129496402,0.0223416231706068,0.0245642081962677,0.0265499440675704,0.0287505781980778,0.0306939868204283,0.0327304225874976,0.0347677842640905,0.0369630473035917,0.0390542362335372,0.0412086199372415,0.0429155951649678,0.0585423884459656,0.0725365297520056,0.085752324642786,0.098227326699381,0.1109788345852779,0.1267880913643374,0.1398488750410665,0.1513105428252432,0.1626457815384287,0.1727141250200867,0.1855796540149754,0.1985817136185761,0.209383966611599,0.2197257937549199,0.2297928971304759,0.2406205705173635,0.2514194563119792,0.25997706679857,0.2678433773182787,0.2760310517758593,0.2829715131677866,0.2897708674304419,0.2968890359793863,0.302568093385214,0.3088263845071106,0.3138671754785498,0.3186305792259469,0.3228262389262427,0.3275427181828765,0.3318874591287838,0.33119126682172,0.3299918981640415,0.3293694963015146,0.3283280100588209,0.3281542437836071,0.3263394701804324,0.3242486554887693,0.32436156079319,0.3248533962489955,0.3254373438057836,0.3260841084763526,0.3262148186160344,0.3266676428138139,0.3277631520235599,0.3287766673073227,0.3301795814111085,0.3323435358611238,0.3357057378597972,0.3374719416386083,0.3414643836160661,0.343724438789421,0.3478099676923892,0.3526200188264826,0.3585608884156081,0.3593705832469612,0.3576590451368321,0.3574798356414548,0.3556038742834552,0.3619897269532306,0.3662024840045164,0.0,2.065524033021927,54.75499215766759,187.34021207181445,267.368251103119,fqhc4_80Compliance_implementation_low_initial_treat_cost,27 -100000,95641,44601,422.5593626164511,6120,62.77642433684298,4800,49.53942346901433,1777,18.16166706747106,77.25911226955019,79.65715086510743,63.27736057920528,65.04679544606228,77.05013292391817,79.45045326400846,63.19909682402508,64.9719048929535,0.2089793456320166,206.6976010989663,0.0782637551802025,74.8905531087729,158.84242,111.23009559922733,166081.7013623864,116299.37181671806,349.00253,225.7483639730424,364237.3040850681,235366.0837643295,363.33331,175.8811900554039,375797.7750128083,180730.65383385963,3080.25192,1401.7255423105985,3179791.7002122523,1424794.368116808,1131.06811,499.4686101056356,1162832.1640300709,502535.60255680594,1743.0335,724.0896941787148,1783187.335975157,724192.4589774815,0.38158,100000,0,722011,7549.168243744837,0,0.0,0,0.0,29718,310.03439947302934,0,0.0,33255,343.58695538524273,1610646,0,57902,0,0,6282,0,0,59,0.6168902458150792,0,0.0,0,0.0,0,0.0,0.0612,0.1603857644530635,0.290359477124183,0.01777,0.3428929634853471,0.6571070365146529,24.59645996369002,4.335391498915434,0.336875,0.2429166666666666,0.2077083333333333,0.2125,11.1984517541424,5.772999632065094,18.62988093006152,12376.126903516271,54.37323682928419,14.038072715929394,18.308872332123112,10.953473161408972,11.07281861982271,0.57375,0.7830188679245284,0.7142857142857143,0.5667001003009027,0.1186274509803921,0.7400318979266348,0.9154589371980676,0.8710462287104623,0.7361111111111112,0.1502347417840375,0.514946418499718,0.7101063829787234,0.6608623548922057,0.5198463508322664,0.1102850061957868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025222086038714,0.0048266561210314,0.0069727787589062,0.0092566249390343,0.0115468742051986,0.0137188601226244,0.0158553745131227,0.0182426983268168,0.0203126118113697,0.0224374065961062,0.0245650368578078,0.0265014221026583,0.0283774749292877,0.0305958463820669,0.0326109391124871,0.0347826086956521,0.0370347349556101,0.0389561859682994,0.0410131058872477,0.0427643581697438,0.0578522760523345,0.0719866772801541,0.0849522209387798,0.0979634387767996,0.1103800783601398,0.1259598174096315,0.1378936746508046,0.1491225266118978,0.1603109761314056,0.1710551749318098,0.1845375504304114,0.1971760779341807,0.2084177504738252,0.219003374676776,0.2289224389867331,0.2386785119378123,0.249068552312116,0.2581823923488146,0.2665013874357458,0.2742417279411764,0.2818671245910009,0.2888255576665963,0.2954486129897249,0.3028335797838448,0.3070808543840827,0.3122991744525186,0.3178897701034032,0.3218867154624977,0.3266256681716747,0.3315352477656142,0.3305276788604726,0.3289431948256127,0.328125,0.3279409204341013,0.3270816250465896,0.3248065348237317,0.323748651906363,0.3239075395390129,0.3246957742139764,0.3251081013472465,0.3259614663767898,0.3278536286578016,0.3287252314523899,0.3293755986723397,0.3309609393721543,0.3317149162663897,0.3341561684258313,0.336770836598439,0.3394713810607386,0.3417115262824572,0.3459773770044973,0.34908358936328,0.3529337856514637,0.3512471655328798,0.3518311953894776,0.3553113553113553,0.3660429027841168,0.3691936456867082,0.3635105204872647,0.3641640866873065,0.0,2.531789611989971,54.727484520473766,181.4751187788696,265.32689751361465,fqhc4_80Compliance_implementation_low_initial_treat_cost,28 -100000,95625,44249,419.6496732026144,6052,62.16993464052288,4779,49.45359477124183,1888,19.419607843137253,77.28554750318864,79.71723311257472,63.27381344368565,65.07174616918248,77.04882294649796,79.4801564657536,63.18627527629261,64.98619457885708,0.2367245566906746,237.07664682112292,0.0875381673930348,85.5515903253945,159.02458,111.3303195177208,166300.21437908497,116423.86354794331,343.65428,221.78571250444497,358842.08104575163,231398.8665828559,353.57228,171.49809267033902,366171.9843137255,176657.164728828,3139.06236,1436.7441400452572,3250087.383006536,1470386.6261664983,1155.77008,509.7489312382551,1197018.7503267974,521664.87363675673,1861.13678,785.8428525012062,1916340.7477124184,795911.8854763084,0.37934,100000,0,722839,7559.100653594771,0,0.0,0,0.0,29357,306.42614379084966,0,0.0,32402,335.4248366013072,1616560,0,58040,0,0,6156,0,0,56,0.5751633986928104,0,0.0,0,0.0,0,0.0,0.06052,0.1595402541255865,0.3119629874421679,0.01888,0.3392885375494071,0.6607114624505929,24.546687651934224,4.272401016201204,0.3165934295877798,0.2322661644695543,0.2186649926762921,0.2324754132663737,10.809191781983262,5.396604882783966,20.26706692164812,12305.74075805635,54.25425920582102,13.29812992976869,17.211425837403404,11.631848869095968,12.112854569552962,0.5473948524795983,0.7594594594594595,0.6939854593522803,0.5665071770334928,0.1179117911791179,0.7033962264150944,0.906801007556675,0.8279816513761468,0.7093023255813954,0.1196581196581196,0.4875506658946149,0.6774193548387096,0.6397400185701021,0.5196950444726811,0.1174458380843785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307661126874,0.0045441174978953,0.006893960930837,0.0091070793311988,0.0112623611280673,0.0134156403752712,0.0153522865216105,0.0176834749918273,0.0196888647963097,0.021783435576539,0.024014936243986,0.0260686395396629,0.0278023674729799,0.0298419766830565,0.032091856226832,0.0342887286794443,0.0364359883106385,0.0383221344078762,0.0404171827672707,0.0422538149426845,0.0573354936497151,0.0712264744100264,0.0846406842708081,0.0972999167746489,0.1092451176104016,0.1251932648522715,0.1375715909936139,0.1501071280099773,0.1606835229035813,0.1707081233817162,0.18410348808355,0.1957502168256721,0.2077912171733682,0.2186904214055617,0.2288357017650236,0.2392368394765757,0.2495640314791629,0.2588218057230443,0.2670121369153143,0.2744457436320701,0.2818514486879588,0.2889346901970887,0.294696529564506,0.3001140661583718,0.3048156984953985,0.3098918465109388,0.3148937236815721,0.319716011930558,0.3245280570872527,0.3295098648130773,0.3282574420202945,0.3270990738064764,0.3265127691678535,0.3250267565300396,0.3240784780023781,0.322239263803681,0.3202759495678376,0.3211084614752076,0.32163802684449,0.3227082363890181,0.3231423858438929,0.3238441189244679,0.3247202313592355,0.3255507395325975,0.3275489631336405,0.3290925613397377,0.3304928799932055,0.3334167318217357,0.3352943224144533,0.33989972760649,0.3429725803522789,0.3461843986654663,0.346296412640573,0.3478293810137131,0.3470935130581297,0.3484242709313264,0.3569797533871213,0.358948432760364,0.3673859601201857,0.3569010906355773,0.0,1.9805810753469044,58.62919052992491,172.6534424145322,261.2855824081566,fqhc4_80Compliance_implementation_low_initial_treat_cost,29 -100000,95824,44650,422.3367841041911,6062,62.145182835197865,4749,49.14217732509601,1909,19.640173651694774,77.35864855579545,79.66315097061617,63.35358995694328,65.05421206316014,77.12017045540026,79.42288018594671,63.265194803530015,64.96723032868584,0.2384781003951985,240.2707846694625,0.0883951534132592,86.9817344742927,159.98312,112.0823559238948,166955.16780764735,116966.8933919423,348.97669,225.50620668488023,363758.7138921356,234907.3996961933,357.27253,172.75081604463122,370167.4945733845,178240.20888427977,3122.52361,1431.6227818326686,3232651.8408749374,1468061.7296634114,1132.99926,503.9208139156882,1174162.7358490566,517705.712237844,1868.93986,786.752423016203,1924302.3459676076,798389.5163136123,0.38289,100000,0,727196,7588.87126398397,0,0.0,0,0.0,29638,308.8579061612957,0,0.0,32777,339.36174653531475,1612922,0,57922,0,0,6428,0,0,75,0.7826849223576557,0,0.0,0,0.0,0,0.0,0.06062,0.1583222335396589,0.3149125701088749,0.01909,0.3382794001578532,0.6617205998421468,24.58279557293871,4.347926298626395,0.3268056432933249,0.2377342598441777,0.2109917877447883,0.224468309117709,11.360342486689762,5.987950636752753,20.39613553848808,12379.679098145236,54.06004764773415,13.490615816604524,17.683720112799424,11.103452741205496,11.782258977124709,0.5632764792587913,0.7812223206377326,0.7016752577319587,0.5798403193612774,0.1153846153846153,0.723159509202454,0.8880778588807786,0.8551724137931035,0.7587719298245614,0.1434782608695652,0.5027576197387518,0.7200557103064067,0.6418979409131602,0.5271317829457365,0.1076555023923445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022164645871708,0.0045984462518611,0.0068736883725174,0.0090819608917572,0.0112876678926299,0.0133157011342251,0.015503402192071,0.0174737078330766,0.0197168134360378,0.021901020888316,0.024264585381842,0.0263095812007015,0.0284179055407724,0.0306042644274306,0.0327772507939126,0.0348777162686937,0.03664997309714,0.0386995780678201,0.0408002160500238,0.0428287371040111,0.0577851963903813,0.0722948248823836,0.0857196763238438,0.0988092860971277,0.1108874579772154,0.1258705048135349,0.1388241031295055,0.1501877479815762,0.1613426716774854,0.1726670383394802,0.1854455797327706,0.1975661203959111,0.2088752120394937,0.2189841707415794,0.2285943916590516,0.2401055116539395,0.2501283568096077,0.2588063227766214,0.2670706658041966,0.2752291475710357,0.2820352558537912,0.2889099592639416,0.2953170327393286,0.3012146428614252,0.3065514181163913,0.3121246871108152,0.317643231610425,0.3221485900354876,0.3258301818370201,0.3303415870334196,0.329418736195658,0.328879654346809,0.3284767093204949,0.3274619926945122,0.3266745878508837,0.3252023811345585,0.3245048838792407,0.3251733315808497,0.3260516276921498,0.3262671655954022,0.3269859154929577,0.3271531574360193,0.3277713565199117,0.328993288590604,0.3308536761519572,0.3309017700734698,0.3321136584529186,0.3355121889604648,0.3382073144951025,0.341863987881687,0.3447475069441282,0.3458426487810071,0.3510054844606947,0.3493837556457169,0.351881392511964,0.3539948149893943,0.3587389041934496,0.3625076328109098,0.3721320649132624,0.3790927021696252,0.0,1.6204594493299809,57.931888558859605,177.46469156428498,256.56222059893423,fqhc4_80Compliance_implementation_low_initial_treat_cost,30 -100000,95858,44613,420.7473554632894,6175,63.07246134907884,4823,49.6985123828997,1936,19.747960524943142,77.41454581429173,79.70343266300684,63.37712166936033,65.06826855902587,77.17775288407417,79.46909318634106,63.28901730386195,64.98331554637804,0.2367929302175611,234.3394766657809,0.0881043654983813,84.95301264782995,160.1347,112.11581166314464,167053.85048717895,116960.10442396716,348.81103,225.432807303762,363239.9904024703,234533.54868556667,359.48798,174.82576322386618,371022.8880218657,179236.27658009582,3148.44722,1450.5951910231015,3245653.581339064,1474687.7903784942,1152.22958,513.3302964032382,1187515.272590707,521009.3121108706,1894.03334,794.4592809794169,1934616.0779486324,795895.1022218656,0.3829,100000,0,727885,7593.356840326315,0,0.0,0,0.0,29676,308.93613469924264,0,0.0,32989,340.2115629368441,1613264,0,57991,0,0,6364,0,0,66,0.6885184335162428,0,0.0,1,0.0104320974775188,0,0.0,0.06175,0.1612692609036302,0.3135222672064777,0.01936,0.3305555555555555,0.6694444444444444,24.698160477684542,4.324992725586272,0.3334024466099938,0.2330499688990255,0.2135600248807796,0.2199875596102011,11.324248545370017,5.94698201955176,20.494734315411744,12390.67774646746,54.55238086528437,13.510840370871795,17.993931045009948,11.517383435630698,11.530226013771925,0.5635496578892806,0.802491103202847,0.679726368159204,0.5776699029126213,0.120640904806786,0.7423904974016332,0.9369565217391304,0.8444444444444444,0.7751004016064257,0.1459227467811159,0.4942462600690449,0.7093373493975904,0.6242726517040732,0.5147247119078106,0.1135265700483091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026623475223971,0.0049338939263461,0.0073516736465315,0.0094613526079629,0.0114239251956499,0.013746578618016,0.0162489812550937,0.0184728059080337,0.0205422080575304,0.0227579576139432,0.0249008983170639,0.0272030690642021,0.0292839308282728,0.0314349531151894,0.0334460574067964,0.0355091923156372,0.0372976048833479,0.0392666901569009,0.0415961632288671,0.0437595564755198,0.0580016890659048,0.0718234353609982,0.0852617354047287,0.098372532549349,0.1107296679689556,0.1267083500559768,0.1397290168119749,0.1513679556131885,0.1620061665830941,0.17221252396303,0.1853792361484669,0.1973704128192375,0.2094304560915443,0.2199151986711544,0.2294993680276968,0.2401868021203368,0.2498076344050048,0.2589658001506007,0.266677251797582,0.2748276888553044,0.2817173457939601,0.2880745530442103,0.2952050905994228,0.3012868131604802,0.3065454854740526,0.3121556155467623,0.3169022018050044,0.3218943644946622,0.3259657765102411,0.3307184363444268,0.328947722804277,0.3274733135248157,0.3272934617334009,0.3265665607854461,0.32558001454675,0.3237566356112411,0.3231111953739691,0.3243376099886939,0.3237807686402947,0.3247752158817769,0.3256934715606612,0.3273917501380235,0.3274644945697577,0.330060120240481,0.3316713011794036,0.3323034583030428,0.3342315765586883,0.3356643356643357,0.3375515626092428,0.339630113658865,0.3421088343058759,0.3472273518704163,0.3506849315068493,0.3525920360631104,0.3552949934859483,0.3581001645897014,0.356391893950937,0.3589691558441558,0.3662010408107368,0.3759939416887543,0.0,2.273358397914562,58.94583818876288,172.40375910268853,263.0858156241212,fqhc4_80Compliance_implementation_low_initial_treat_cost,31 -100000,95715,44175,418.6073238259416,6149,63.10400668651726,4838,50.02350728725905,1894,19.464033850493653,77.36002699221102,79.73361128278617,63.33690834044432,65.08913435177033,77.13666934782601,79.50894027027675,63.254350182030414,65.00831979383791,0.223357644385004,224.67101250941823,0.0825581584139101,80.81455793241332,158.49196,110.94921036692048,165587.37919866267,115916.22041155562,346.82857,223.847169367335,361824.5416078984,233337.4699549025,357.56511,172.57916664890118,369991.0149924255,177539.21025973963,3154.88375,1436.0225437022343,3264232.972888262,1468421.233560292,1143.41202,502.32047163740936,1182449.971268871,512657.8296373704,1849.53112,767.0643307193611,1902452.2175207648,776293.484312926,0.37873,100000,0,720418,7526.699054484668,0,0.0,0,0.0,29529,307.95591077678523,0,0.0,32770,338.8183670271117,1622657,0,58226,0,0,6243,0,0,67,0.6999947761583869,0,0.0,0,0.0,0,0.0,0.06149,0.1623584083647981,0.3080175638315173,0.01894,0.3301842961127458,0.6698157038872541,24.42162100838532,4.305509377143351,0.3269946258784622,0.239561802397685,0.2168251343530384,0.2166184373708143,11.271458073198604,5.964746507658688,19.90713721478865,12296.429937008672,54.75445307180658,13.695972603073372,17.94423233248171,11.65655496759602,11.457693168655494,0.572964034725093,0.7981018119068162,0.6965865992414665,0.6015252621544328,0.1087786259541984,0.7576711250983478,0.9347826086956522,0.902439024390244,0.773109243697479,0.1308411214953271,0.5071488645920942,0.7345132743362832,0.614500442086649,0.5511713933415536,0.1031175059952038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334180753765,0.0046325862401038,0.0068295059009772,0.0094069363457201,0.0114121811302331,0.0134108590281454,0.0154332313965341,0.0173304211149441,0.0195859953999488,0.0215606380147013,0.0239086304824786,0.0257792287791055,0.0278577598617909,0.0299937169754962,0.0319854724047916,0.0339640198511166,0.0359799432277313,0.0380930633258254,0.0400241309729358,0.042003584528176,0.0573541083587451,0.071337366294769,0.0842048947307688,0.0968617222666274,0.1088831256457292,0.1251427121654192,0.1369547691785471,0.1489123957091775,0.1592746457062913,0.1697075007240081,0.1826221843996079,0.1948538163561211,0.2061582270914169,0.2165486029122392,0.2263279445727482,0.2371184262992335,0.2471550339164584,0.2567496148699553,0.265203392136411,0.2733059336683877,0.2811043923645235,0.2889429032182672,0.2953626410007803,0.3010665166441233,0.3063374725368097,0.3114842903575298,0.3159329664832416,0.3210337729663795,0.325400007760862,0.3295144427891524,0.3287217721314564,0.3279259198106717,0.3270897636463574,0.3265332677905329,0.3261063393467471,0.3247872405559297,0.3229426828111663,0.3243442381373416,0.323768115942029,0.3245953021209908,0.3254953271028037,0.3250867371077117,0.3257327631167205,0.3266737939329146,0.3280149489722581,0.3278858894749149,0.3281836804370092,0.3323157298420092,0.3365898228844532,0.3381808040160962,0.3407647676915346,0.3435987447476198,0.3468324229296163,0.3507440024293957,0.3531057638500279,0.3546107643387116,0.3597570235383447,0.3646608975649024,0.3681318681318681,0.3643351268255188,0.0,2.077609952737662,55.83224626307325,183.7870600050929,264.7625126411572,fqhc4_80Compliance_implementation_low_initial_treat_cost,32 -100000,95742,44239,420.2335443170186,6090,62.30285559106766,4817,49.633389734912576,1940,19.75099747237367,77.33346816806463,79.69653396341882,63.32120940122799,65.0708300453754,77.0923593093678,79.46036399208278,63.23114392624336,64.98543077514977,0.2411088586968333,236.16997133603945,0.0900654749846268,85.39927022563631,159.7145,111.87462256763251,166817.59311482945,116850.09981787777,348.4758,223.9796146618087,363309.6342253138,233276.64417059257,354.8963,171.09030300997117,367342.4724781183,175950.74287955434,3167.63089,1445.9412391688404,3267731.685153851,1469735.1761261278,1142.06723,505.8148699252959,1176669.5389693135,512216.5521738498,1903.06316,796.801463639786,1941750.2454513167,794868.9301340147,0.3799,100000,0,725975,7582.617868855883,0,0.0,0,0.0,29601,308.4748595182887,0,0.0,32516,336.16385703244134,1617501,0,58044,0,0,6252,0,0,74,0.7729105303837396,0,0.0,1,0.0104447368970775,0,0.0,0.0609,0.1603053435114503,0.3185550082101806,0.0194,0.33453125,0.66546875,24.6187659243828,4.39788204813745,0.3145111064978202,0.2291882914677185,0.2296034876479136,0.2266971143865476,11.30357710859721,5.864541388192689,20.600152170300625,12289.764450621911,54.53204996411078,13.1392367786371,17.115525203982767,12.27597068712046,12.001317294370455,0.5574008719119784,0.7898550724637681,0.7122112211221122,0.5560578661844484,0.1089743589743589,0.7252146760343482,0.9316455696202532,0.8911917098445595,0.6992481203007519,0.1324786324786324,0.4966063348416289,0.7108603667136812,0.6510186005314438,0.5107142857142857,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020264451086681,0.0042185535228978,0.0063029048170026,0.0087788819118453,0.0107503915705538,0.0126872282581026,0.0145883456347102,0.0165948847747545,0.0187441232983116,0.0207691441556713,0.0229334754928595,0.024813921256609,0.0270456485299713,0.0291143151390319,0.0309724013412432,0.0330756191342456,0.0349469324359306,0.0370647075914165,0.0388306112052564,0.0407548977742597,0.0554297107425076,0.0697869133838489,0.0827798239262966,0.0957835063473532,0.10792967802491,0.1233411232248035,0.1360622168465056,0.1478990165609434,0.1592933586824172,0.169960855809963,0.1835349628879528,0.196122135422302,0.2076785034531513,0.2177279985999606,0.2274562436056809,0.2377213479662011,0.2483002690542909,0.2568232208979077,0.265692751254285,0.2741150467814157,0.2819400585302657,0.2883445629795995,0.2952348270598398,0.3013815166728573,0.3072833857245154,0.3128662169481511,0.3176800070014878,0.3220881900573273,0.3275192795403964,0.3310195571273984,0.3301048037287496,0.3289374166311418,0.3276779680108132,0.3269202971871296,0.3252809656894809,0.3242273180458624,0.3226430349244598,0.3233790779850439,0.3246751025991792,0.3251510709049952,0.3257955035532804,0.3270861751972006,0.3273602679505966,0.3270154891486556,0.3274600423647217,0.3304666056724611,0.3306954368185829,0.3355244535304293,0.3386189438154841,0.3415243153263842,0.3456941604180868,0.347135955831608,0.347984886649874,0.3490148159462349,0.3519147330692322,0.3520536462699078,0.354336773994762,0.3556193601312551,0.356341189674523,0.3688080495356037,0.0,2.634222391725554,55.7286231310914,178.6670608444405,266.59766372532,fqhc4_80Compliance_implementation_low_initial_treat_cost,33 -100000,95802,44469,420.1164902611636,6224,63.79825055844345,4918,50.80269722970293,1931,19.769942172397236,77.34149214859087,79.679997122694,63.33904717832892,65.07203151331231,77.09596380935952,79.43552678629023,63.248274215724,64.9841967037955,0.245528339231356,244.47033640377924,0.090772962604916,87.83480951680644,158.57798,111.13835358716696,165526.7948477067,116008.38561529714,349.53974,225.65874344665812,364336.3082190351,235026.9028273503,365.4097,176.7257968076833,377980.0004175279,181833.2673333807,3204.09225,1469.8996297897977,3312470.8983111,1502286.7474476502,1171.50424,518.5614963360655,1210150.2995762094,528597.2317979195,1885.12122,795.0597145305543,1932583.014968372,800159.5153905526,0.38183,100000,0,720809,7523.945220350305,0,0.0,0,0.0,29731,309.7847644099288,0,0.0,33443,345.67128034905323,1621329,0,58155,0,0,6362,0,0,73,0.76198826746832,0,0.0,0,0.0,0,0.0,0.06224,0.1630044784328104,0.3102506426735218,0.01931,0.3505217925107428,0.6494782074892572,24.25407760155008,4.350195464434702,0.3298088653924359,0.2326148840992273,0.2214314762098414,0.2161447742984953,11.238993222451851,5.863808819093877,20.692770341409343,12371.546016540964,55.92319813996361,13.725537539071617,18.13634106265039,12.348258529313762,11.71306100892785,0.5766571777145181,0.7972027972027972,0.6960542540073983,0.6134067952249771,0.1194731890874882,0.7424242424242424,0.9280575539568344,0.8765432098765432,0.7372262773722628,0.1607142857142857,0.5158421345191774,0.7221458046767538,0.6359901396877568,0.5717791411042945,0.1084624553039332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025932716755979,0.0051093336577354,0.0072149779288649,0.009450067064992,0.01159892150379,0.0137820741359464,0.0161145561357702,0.0183806635419538,0.0204718129109445,0.0225273656293838,0.0246798388171723,0.0267913988211373,0.0286252082861903,0.030729767595187,0.0326777828222378,0.0347090865866641,0.036717957214157,0.0390460481955207,0.0412514677002047,0.0432121256285068,0.0575935895830724,0.0720925126253385,0.0853540963678662,0.0982839969315805,0.1101650262398044,0.1255562249632706,0.1379551598028303,0.1498101851359542,0.1610279835215266,0.1711912544879695,0.1843252494591016,0.1969230103899754,0.208633484359551,0.2191765850246456,0.2286216944306998,0.2401155902966153,0.2502758920509648,0.259649398632183,0.2682462737280841,0.2759566902575946,0.2827321849166397,0.2895520297012364,0.2965138265185535,0.3024282824897973,0.3075961958367703,0.3122777224006596,0.3163366027363029,0.3212902406502,0.3257950712688833,0.3301563898688852,0.3294465738686033,0.3282435404068169,0.3273060132375722,0.3256459164210161,0.3249739854318418,0.3230356869352121,0.3217103387091664,0.3225196487881877,0.3239643957548784,0.3248447538431253,0.325448122956672,0.3267114732647356,0.3274060995859343,0.3283592137151063,0.3304816452790062,0.3308010687902761,0.3318578983674408,0.3339585452695829,0.3375904640272456,0.3396732601905982,0.3449134948096886,0.3458666809904925,0.3469621704241498,0.3453687954229163,0.3463809523809524,0.3484141232794733,0.3531610090314543,0.355244178858438,0.3501683501683502,0.3538461538461538,0.0,2.076723631935213,58.00063978183345,183.1514145611948,272.6976581374549,fqhc4_80Compliance_implementation_low_initial_treat_cost,34 -100000,95708,44402,419.4633677435533,6220,63.86091026873407,4871,50.37196472604171,1904,19.60128724871484,77.3419109081298,79.7121031047427,63.33255108723839,65.0815402937718,77.10445109446772,79.47139646461758,63.24491796733951,64.99405788720789,0.2374598136620846,240.70664012511145,0.0876331198988751,87.48240656390749,160.08938,112.1461725811647,167268.5459940653,117175.33809207664,349.15938,225.95839219741416,364295.8686839136,235569.965099484,364.96613,176.7377940403159,377551.8974380407,181733.345878334,3210.02139,1481.8348555962243,3322988.569398588,1517451.898730656,1167.89146,524.0178238214464,1205589.2610858027,532909.9685941051,1877.76382,789.9806218223634,1935222.3011660464,804516.7741673386,0.38019,100000,0,727679,7603.115727002967,0,0.0,0,0.0,29767,310.4756133238601,0,0.0,33479,346.00033435031554,1610701,0,57832,0,0,6297,0,0,50,0.5224223680361099,0,0.0,1,0.0104484473607221,0,0.0,0.0622,0.1636024093216549,0.3061093247588424,0.01904,0.3433225756877209,0.656677424312279,24.267729629950683,4.318954593464643,0.3180045165263806,0.236091151714227,0.2137138164647916,0.2321905152946007,11.017711591493358,5.622118705581109,20.422869736653205,12364.680371048344,55.68565910225585,13.750714631258887,17.940998162523023,11.627357057673466,12.36658925080045,0.5579963046602341,0.7860869565217391,0.6998063266623629,0.5725264169068204,0.1184792219274978,0.7240618101545254,0.912718204488778,0.8577680525164114,0.7352941176470589,0.1939163498098859,0.4937357630979498,0.7182910547396528,0.6336996336996337,0.5242839352428393,0.0956221198156682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0045403871490828,0.0065733414485696,0.008917689120013,0.0112864521901818,0.0135415818196627,0.0157802990917153,0.0180350289866906,0.0202677841373671,0.0225265334111169,0.0244182470527934,0.0267278645432235,0.0289683682283739,0.0312165169372784,0.033423108276837,0.0353942050258944,0.037302458524057,0.0394446001058497,0.0417355500795408,0.0436313996019299,0.0581391705742901,0.0717822041260637,0.0854630911914054,0.0981247962306616,0.1104407716404214,0.1254218639244189,0.1384032757669623,0.1503161525196397,0.1614874320325602,0.1724197112393538,0.186012449652142,0.1978422715664632,0.2092401057130738,0.219960202051125,0.2294477987836396,0.2404162284828693,0.2493922430135825,0.2584670031361352,0.2675112280542576,0.2758794314878813,0.2825184208395507,0.2883938078466705,0.2942151303874336,0.3005465135789448,0.3053195756006854,0.3108339809298252,0.3165156584834016,0.3213222004429397,0.3257350084185986,0.33020845694395,0.3291004578507945,0.3278742626129285,0.3266428491054349,0.3255954871380549,0.3253636093796379,0.3232905623441968,0.3214511539677521,0.3221156211562115,0.3224544864569457,0.3243450775906712,0.3246013454007158,0.3263886143506622,0.3278767655144914,0.3283297860423435,0.32952027742992,0.3304640425698411,0.3309642061996917,0.3340162642627498,0.3378697598984592,0.3400015971889474,0.3415570175438596,0.3448588655888159,0.3465966599190283,0.3501647383342273,0.3525125390366234,0.3531722413998333,0.3518149793230203,0.3560885608856088,0.3620352250489236,0.3667180277349769,0.0,2.052742979807191,59.92778966133924,184.43073206623225,259.010711550399,fqhc4_80Compliance_implementation_low_initial_treat_cost,35 -100000,95715,44610,421.8043148931724,6293,64.59802538787024,4897,50.63992059760748,1948,20.017761061484617,77.33810060160408,79.72152618191802,63.31256206328344,65.07527157316855,77.10356011217563,79.48652427134739,63.22648519341945,64.99108522032655,0.2345404894284541,235.0019105706309,0.0860768698639873,84.18635284199638,158.96518,111.40740286890336,166081.78446429505,116394.92542329138,347.76555,223.93761121114952,362818.1894164968,233446.7006571286,363.05881,174.94939392505012,376460.5025335632,180542.00974348967,3213.10642,1468.9410886540552,3322912.667815912,1500666.0358015215,1167.34193,519.804645160497,1205209.3611241707,528682.9182056074,1906.14934,785.9469557774855,1959715.488690383,794625.5541900855,0.38223,100000,0,722569,7549.17202110432,0,0.0,0,0.0,29570,308.3947134722875,0,0.0,33472,346.74815859583134,1617286,0,58058,0,0,6326,0,0,54,0.5641748942172073,0,0.0,1,0.0104476832262445,0,0.0,0.06293,0.1646390916463909,0.3095502939774352,0.01948,0.332476564862413,0.6675234351375869,24.609639853761752,4.319324900525262,0.3167245252195221,0.2395344088217275,0.2236062895650398,0.2201347763937104,11.497565632220889,6.074548274641802,20.47968854107439,12393.864978224896,55.678878356026175,14.19734941258303,17.592535858034744,12.139078624814957,11.74991446059344,0.5742291198693077,0.7860187553282183,0.7163120567375887,0.5954337899543379,0.1178107606679035,0.743202416918429,0.9134396355353076,0.8722358722358723,0.7723577235772358,0.1637931034482758,0.5116148894486426,0.7098092643051771,0.6608391608391608,0.5441696113074205,0.1052009456264775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023311913401309,0.0043822276323797,0.0068836680406928,0.0091164095371669,0.0112636216562713,0.0137198382546165,0.0160128919078799,0.018333724861348,0.0204837142711049,0.0223519172682127,0.0245182989981439,0.0267797549981003,0.0288613790125233,0.0309864376409527,0.0329798427861107,0.0353832322334631,0.0373879190739475,0.0393310301181694,0.04119970890945,0.043303436565726,0.0576459162254456,0.071882425600067,0.0856687196382293,0.0983435873166114,0.1100518834099633,0.1257510366421257,0.1382277728849888,0.1508933705304853,0.162235236283583,0.1733630872555225,0.186015191509993,0.1984995615601961,0.2102920208539678,0.2198660714285714,0.2295891978739091,0.2390699633171899,0.2486962736317852,0.2582692762202739,0.2675886814734069,0.2758395415472779,0.2825996341152768,0.2895959915241339,0.2969257004808034,0.3019419803404459,0.3072576136888413,0.3126959054224152,0.3177055918991402,0.3227130222006984,0.3259942721629712,0.3295538542766631,0.3283843264998452,0.3273750550418318,0.3272158762799476,0.327261170420236,0.3266179354608665,0.3248295411016624,0.3236010887454108,0.3244932099980319,0.325222825530171,0.3261195361284567,0.3270973782771535,0.328343471048266,0.327603915567946,0.3286450167973124,0.3297729022324865,0.3307105017139295,0.3332008290979301,0.3361249647125247,0.3381740560590685,0.3413246968679648,0.3430620714543486,0.3458587344965314,0.3493159203980099,0.3512579797221179,0.3543307086614173,0.3596203421607687,0.3647836538461538,0.3666137356093688,0.3632928475033738,0.3570889894419306,0.0,2.0156554530197464,58.30526623318909,186.29896066499407,263.6995015152388,fqhc4_80Compliance_implementation_low_initial_treat_cost,36 -100000,95662,44462,420.4072672534549,6259,64.34111768518325,4918,50.9397670966528,1924,19.777968263260227,77.27782633283482,79.6880348299692,63.2892740309558,65.07193482842337,77.04441462667997,79.453081185816,63.202450686657485,64.98637477189014,0.2334117061548539,234.95364415319384,0.0868233442983097,85.56005653322529,161.38078,113.00126014543416,168698.94001797997,118125.5463459202,349.73643,225.4879828656005,365146.36950931407,235263.608188832,364.2711,175.75354470896664,377626.7901570112,181329.66960825556,3219.70062,1468.358756932295,3335317.053793565,1504556.8114113174,1177.24198,515.8918610013401,1217755.0333465743,526414.5648233778,1895.90444,795.186884140213,1950696.138487592,806288.6581570853,0.38062,100000,0,733549,7668.1336371809075,0,0.0,0,0.0,29809,311.1266751688236,0,0.0,33365,345.602224498756,1603345,0,57613,0,0,6337,0,0,53,0.5540339946896364,0,0.0,0,0.0,0,0.0,0.06259,0.1644422258420471,0.3073973478191404,0.01924,0.3321106526058383,0.6678893473941617,24.566176220236272,4.314221047238298,0.3096787311915412,0.2429849532330215,0.2204148027653517,0.2269215128100854,11.194239391217556,5.735551450284849,20.52133498137441,12374.200863721017,55.9190647583654,14.335088634187906,17.26014543507036,12.194897455564115,12.128933233543007,0.5614070760471737,0.7757322175732217,0.7005909389363099,0.5950184501845018,0.1093189964157706,0.7293404094010614,0.9235955056179777,0.8804347826086957,0.7376425855513308,0.1358024691358024,0.4998610725201445,0.688,0.6432900432900432,0.5493300852618758,0.1019473081328751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394260584074,0.0045026772675644,0.0067407061498791,0.0091669461467321,0.0113840988860064,0.0135899186031112,0.0157572667006629,0.0180170978581715,0.0203044127575131,0.0223927228772497,0.0246153846153846,0.0266755687946176,0.0285640788187477,0.0306721909591243,0.0330683460664877,0.0352270729260396,0.0373137421507471,0.0394766898556743,0.0415496035462321,0.0436332926714835,0.0579408783607276,0.0718624329758713,0.0854980740367559,0.0981689992633905,0.1107101403397699,0.1268033489632397,0.1395319203160175,0.1514696325652252,0.1626029301678964,0.1728680006870491,0.185050696606937,0.1968256717839897,0.2088462250084348,0.21896268738374,0.2285006605019815,0.2389769843644382,0.2488917672543743,0.2580641530669668,0.2669996027467227,0.2747787458640074,0.2819486693114655,0.2886454509317932,0.2951719568895146,0.3007599002780707,0.3058043037144141,0.3108518143917902,0.316397199714461,0.3210693825588797,0.325514451316762,0.3302428780855026,0.3297717338513841,0.3291378572710084,0.3278748746061574,0.3271278522274538,0.3264941218541862,0.3244948719523429,0.3226861406572471,0.3226502412753833,0.3234266333207715,0.3231824122312333,0.3247940243604902,0.3266514806378132,0.3276502044668135,0.3285468250240443,0.3305103096504102,0.3300234558248632,0.3313351031943136,0.3339440267862783,0.3385977337110482,0.3427256353812287,0.3458505272810637,0.3497416227158915,0.3529189257344597,0.3551201591917955,0.3604376945571172,0.3641680592026736,0.3664251580083243,0.3701578192252511,0.3736416829200334,0.3758673862760215,0.0,1.8179186897228377,58.38754060800202,185.22942330071777,269.2212840705351,fqhc4_80Compliance_implementation_low_initial_treat_cost,37 -100000,95818,44406,418.8044000083492,6201,63.62061408086164,4908,50.648103696591456,1885,19.30743701600952,77.39792083527668,79.70288922376292,63.37134666233783,65.07207463299024,77.16723207422577,79.47355086818014,63.28572108538841,64.98965371238006,0.2306887610509136,229.33835558278304,0.0856255769494183,82.42092061017559,160.04758,112.06369777032924,167032.8956980943,116954.74521523016,351.23788,226.74628213856704,365979.3880064288,236054.48922630007,362.45075,174.90589156933,374559.9156734643,179742.6282729892,3215.71864,1463.700594811114,3319149.6900373627,1490856.9756161056,1156.3329,504.148214562396,1194738.0972259908,514254.023600906,1853.15128,774.3827249568596,1899875.1800288048,778663.1478985318,0.38122,100000,0,727489,7592.404349913378,0,0.0,0,0.0,29866,311.08977436389824,0,0.0,33257,343.4114675739423,1614029,0,57880,0,0,6382,0,0,55,0.5740048842597424,0,0.0,0,0.0,0,0.0,0.06201,0.1626619799590787,0.3039832285115304,0.01885,0.3260568793235972,0.6739431206764027,24.73811549036481,4.345702734336275,0.3162184189079055,0.2410350448247758,0.2214751426242868,0.2212713936430317,11.11579339701181,5.699123739845165,20.10144853406601,12399.354847638053,55.51330063045858,13.996659534609892,17.550153336521507,12.135762691548477,11.830725067778706,0.5696821515892421,0.790363482671175,0.7036082474226805,0.594296228150874,0.1132596685082873,0.7299382716049383,0.9396135265700484,0.8521303258145363,0.7374517374517374,0.1160714285714285,0.5121816168327796,0.7100130039011704,0.6522116218560278,0.5495169082125604,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025208552684862,0.0049549595192979,0.0069983264871443,0.0093823299452697,0.0115179733246584,0.0138812562333353,0.0162417721261029,0.018281050752359,0.020700083781188,0.0227742423932393,0.0251009159272995,0.027350883312473,0.0295583204052068,0.0316130692050424,0.0337452716422217,0.0356519674145354,0.0375539255749474,0.039510369917393,0.0417661841367422,0.0437755643675648,0.0584400004172795,0.072067360493698,0.0848634194935248,0.0971906804609302,0.1098274426302086,0.1257928788903924,0.1386019977519988,0.1508259185150496,0.1617510388514415,0.1722096502611512,0.1854747520434206,0.1978065953557793,0.2098506424332021,0.2203006285870456,0.2297711854156816,0.239948191117212,0.2486313512549199,0.2573432704953967,0.2662865434100003,0.2735062290505989,0.2821227113001665,0.2891690129326962,0.2964491374111693,0.3022916292706276,0.3083468690150064,0.3134862554578439,0.3190524948803756,0.3231814142440015,0.3272062150179031,0.3320041061276058,0.3309848759343505,0.3297117851214727,0.3280784578204912,0.3273248609550157,0.326156536170465,0.3252403479322447,0.323871436009909,0.3236960151926918,0.3244689918516246,0.325227313246568,0.3258853446019221,0.3263647838434838,0.327276529012023,0.3281358358873403,0.3280497205627288,0.330055043956904,0.3304452260444368,0.3335544185458909,0.3378687198959322,0.3412194347411876,0.3435888072305655,0.3458586504637032,0.3477162170699349,0.3475833588253288,0.3515817389657132,0.3521210676835081,0.3546949439065621,0.3599757183326588,0.354997269251775,0.3569254185692542,0.0,2.147034562167688,56.94253035263676,182.1702022074881,272.6054163134924,fqhc4_80Compliance_implementation_low_initial_treat_cost,38 -100000,95551,44335,419.9118795198376,6240,64.10189322979352,4904,50.70590574666932,2056,21.11961151636299,77.19945181010942,79.6720827705257,63.224607941291474,65.05435812785983,76.93728298894979,79.41003954381789,63.12616384605426,64.9589023982427,0.2621688211596336,262.0432267078172,0.0984440952372125,95.45572961712878,159.13854,111.44518581121258,166548.04240667287,116634.02665928417,348.46282,224.4945505144195,364084.0702870718,234344.21356806267,356.42188,172.1092988375804,369854.4546891189,177680.57155276867,3254.31625,1495.4697849094305,3364783.8327176063,1524103.3711111636,1207.10726,529.7820143579936,1249899.9487184854,541037.4086697084,2016.0437,855.4023689381163,2071835.417735032,861756.3283605066,0.37985,100000,0,723357,7570.365563939676,0,0.0,0,0.0,29642,309.5833638580444,0,0.0,32632,338.2905464097707,1610585,0,57836,0,0,6198,0,0,68,0.7116618350409729,0,0.0,0,0.0,0,0.0,0.0624,0.164275371857312,0.3294871794871795,0.02056,0.3292645712541959,0.670735428745804,24.68165915059421,4.377022270228085,0.3179037520391517,0.2204323001631321,0.2251223491027732,0.2365415986949429,10.910669645437302,5.614516806768236,22.013051594547782,12381.773189105645,56.00998181835569,13.1218467884442,17.763400810817497,12.3418258903254,12.782908328768606,0.5548531810766721,0.7733580018501388,0.7042976266837716,0.5887681159420289,0.118103448275862,0.7085843373493976,0.8877805486284289,0.8851674641148325,0.7246963562753036,0.1374045801526717,0.4977628635346756,0.7058823529411765,0.6380368098159509,0.5495915985997666,0.1124721603563474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024125452352231,0.0046975507802195,0.0069766024859858,0.0089881242882707,0.0113206010506169,0.0134865134865134,0.015532989743328,0.0178009401185366,0.0199345067539909,0.0221871509238668,0.0244310541281295,0.0265493095328678,0.0285064005520025,0.030533721194116,0.0328211063689067,0.0352872980218824,0.0373470234391205,0.0393285870186561,0.0413446113460697,0.0430974181222137,0.0575872962738247,0.0714120928671798,0.0853893134585667,0.0975879619384819,0.1095807876878844,0.1255221696812909,0.1378928776626306,0.1499290219978439,0.1617289374149514,0.1725105943597134,0.1855260315402895,0.1975555217853808,0.2093048630129513,0.2199743271857548,0.2302130477977701,0.2405,0.2497341586541152,0.2593800794654144,0.2683035104493921,0.2756976597235785,0.283544333174745,0.2898615348509739,0.2965873345599145,0.3018040214896098,0.3066845408567424,0.312084894809098,0.3177567744205922,0.3224974463738508,0.3272375159219111,0.3313466836194109,0.3305623141389565,0.3290490916119057,0.3281062371971462,0.3272606055335739,0.3265257410529142,0.3240907343329489,0.3217260012714558,0.32208644601659,0.3232925174741108,0.3246687968980002,0.3255099347735927,0.3262689119067973,0.3269506840060801,0.3279927992799279,0.3283336160314037,0.3289539375147804,0.3301043433269137,0.332689323155861,0.3369103272418189,0.3397934362164533,0.341305635278575,0.3453860040352554,0.3490097453630933,0.3498817966903073,0.3504273504273504,0.3521160247265811,0.3577186311787072,0.36048839071257,0.3606019151846785,0.3666026871401152,0.0,2.3955141741640777,58.21488479960802,190.53276237360896,261.0508505623731,fqhc4_80Compliance_implementation_low_initial_treat_cost,39 -100000,95687,44631,421.2693469332302,6247,64.12574330891344,4863,50.28896297302664,1947,20.05497089468789,77.33990302576841,79.73121662699698,63.32261558699434,65.089418353568,77.09607958579738,79.4858615893699,63.23267104660077,65.0010377206537,0.2438234399710239,245.35503762707836,0.0899445403935672,88.38063291430842,157.73802,110.54486370708253,164847.91037445003,115527.56770207296,346.33718,223.3588343293665,361436.7991472196,232915.3221747641,359.45894,173.85409567314446,372178.2373781183,179069.9352427923,3213.11638,1467.9914536946746,3325541.034832318,1501756.2716927836,1131.79785,500.56947457001456,1169590.4668345752,509910.0761545604,1904.1973,798.7036182073144,1962052.525421426,809747.0123895963,0.38138,100000,0,716991,7493.086835202274,0,0.0,0,0.0,29429,307.0114017578145,0,0.0,32873,340.0879952344624,1625292,0,58326,0,0,6282,0,0,62,0.6479459069675086,0,0.0,1,0.0104507404349598,0,0.0,0.06247,0.1637998846295033,0.3116696014086761,0.01947,0.3375076359193646,0.6624923640806353,24.617610284207007,4.424074042548446,0.3187332922064569,0.2311330454451984,0.2317499485914045,0.2183837137569401,11.25744734237618,5.767998538239699,20.71144665225652,12399.763743524556,55.19494754402454,13.361239633735575,17.63897788856713,12.563189540315967,11.63154048140587,0.553979025293029,0.7784697508896797,0.6929032258064516,0.5590062111801242,0.1082862523540489,0.7131960335621663,0.8953771289537713,0.8640776699029126,0.6792452830188679,0.1390134529147982,0.4952139639639639,0.7110799438990182,0.6309314586994728,0.5220417633410673,0.100119189511323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.004733667832345,0.0071739505433734,0.0094766993052451,0.011795450616719,0.0142918219019116,0.0164002935540424,0.0186678370213113,0.0209457801766437,0.0231632172613564,0.0253318980983136,0.0277156172370609,0.0299440605462323,0.0320238144287421,0.0342033831831645,0.0362811088019686,0.0381985454093367,0.0401494706248702,0.0424949807030136,0.0443135619722714,0.0589992687767679,0.0721419597989949,0.0857331696723633,0.0984389463940082,0.1107735476861082,0.1259705913466624,0.1382620964747568,0.1510739297954318,0.1621419569814383,0.1723221082199564,0.1853570813232253,0.1982687729928587,0.2097696774614497,0.2204887115290001,0.2302010985019427,0.2407979707351654,0.2490961838875251,0.2584750053443445,0.2670002042066571,0.2749181041394635,0.2822840884118484,0.2889709836563866,0.2949665818891583,0.3004180291542396,0.306611961495976,0.312518474726574,0.3172824374015058,0.3217987358996859,0.3259501049195616,0.3293510402365614,0.3290218270008084,0.3279103696974702,0.3271128150194509,0.326379445039206,0.3251085727883872,0.3231263875066983,0.3219343914674094,0.3229698452042877,0.3234235617186034,0.3244563279857397,0.3255095738109944,0.3270852673369018,0.3262507850115135,0.3288928691369081,0.3291249036237471,0.3310789638604554,0.3313251292008109,0.3351312137269745,0.337839740881566,0.3426609510200841,0.343732920386227,0.3463461333900648,0.3497288434859377,0.3550625190606892,0.3581347344717583,0.3609958506224066,0.3595092024539877,0.3563265306122449,0.3621123218776194,0.3610248447204969,0.0,2.0674943908670165,57.64863240138783,181.60173665835256,266.08354214060364,fqhc4_80Compliance_implementation_low_initial_treat_cost,40 -100000,95778,44810,424.1997118336152,6130,62.811919229885774,4788,49.33283217440331,1867,19.06492096306041,77.331780499572,79.67461872759252,63.32970022966426,65.06352204180443,77.10069481789772,79.44511047071083,63.24412207848709,64.98133615134972,0.231085681674287,229.50825688168663,0.0855781511771738,82.18589045470992,159.56314,111.78305908602331,166596.8594040385,116710.57976364436,350.28827,225.95334153921456,365064.5868571071,235249.27245897145,360.9828,174.80898695076647,372695.6399173088,179179.09777536968,3115.87544,1414.130157148093,3214244.0121948672,1437633.0636008296,1106.78111,490.4898674927182,1138833.5630311763,495569.03135249467,1830.9513,765.4627194864864,1872377.3935559315,765905.7867262702,0.38351,100000,0,725287,7572.584518365386,0,0.0,0,0.0,29818,310.63501012758667,0,0.0,32971,340.05721564451125,1614379,0,57965,0,0,6341,0,0,68,0.6995343398275178,0,0.0,2,0.0208816220844035,0,0.0,0.0613,0.1598393783734452,0.3045676998368679,0.01867,0.3335407591785936,0.6664592408214064,24.738343908211554,4.334927894311385,0.3308270676691729,0.231829573934837,0.2167919799498746,0.2205513784461152,11.37721252267431,5.924908054497228,19.81304814397903,12425.57621636689,53.87718605070475,13.282485164121702,17.667797769673804,11.424490853285889,11.502412263623368,0.5580618212197159,0.8036036036036036,0.6843434343434344,0.5674373795761078,0.1013257575757575,0.7348066298342542,0.9314420803782506,0.8663239074550129,0.7222222222222222,0.1402714932126696,0.4944618006248225,0.7248908296943232,0.6251046025104603,0.5223880597014925,0.0910179640718562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904786021777,0.0045821337334252,0.007093062193674,0.0091328375797472,0.0113602847698957,0.0137577775741097,0.0156807569176811,0.0179264159418514,0.0200159473329108,0.0221733121768951,0.0242854799688358,0.0264390003490974,0.0288214366504205,0.0309020302633883,0.0330980246454888,0.0351379570570539,0.0371275593160658,0.0391329150028522,0.0408712550270708,0.0427548002832271,0.0577818128691586,0.072251221272634,0.0859191546460919,0.0987673780776142,0.1115150365640344,0.1255376031616877,0.1389189189189189,0.1507698524095104,0.1624745216472622,0.1737658553308193,0.1864209755887544,0.1988643123681791,0.2105286051392468,0.2211990638465408,0.2317969712977637,0.2419031368073484,0.2512164092491741,0.2598287906228557,0.2685394150402032,0.2759556272967682,0.282558179863351,0.2891854933906803,0.2954545454545454,0.3013805335186827,0.3071802533921261,0.3123882566182908,0.3163536188329576,0.3212834006549522,0.3262642106218322,0.3314888671720239,0.3308870066387471,0.3295203002763532,0.328517924023542,0.3272955938475771,0.3276861346411057,0.3259477184272624,0.3240686453166843,0.3245449766738945,0.3251214671867515,0.3263772358884644,0.3278574777308954,0.3288290957940694,0.3301712558764271,0.332728941418754,0.3338720571208027,0.3350403678833643,0.3364832843235218,0.3408812152089819,0.3435668923897407,0.3477534791252485,0.350810687371546,0.3530949839914621,0.3541004450095359,0.357597118994713,0.3564000756286632,0.3590048803713843,0.3556001234186979,0.3544919894544717,0.3551427779317992,0.3521293375394321,0.0,2.5356958685731628,55.0288199459896,171.15266981883417,271.42121653796045,fqhc4_80Compliance_implementation_low_initial_treat_cost,41 -100000,95703,44760,422.4110007000825,6248,64.15681849053844,4928,51.07467895468272,1896,19.53961735786757,77.34192318165195,79.71752193649277,63.32298576779221,65.07522916845453,77.09675656478471,79.46975159732747,63.23246075198784,64.98570382738752,0.2451666168672375,247.77033916529945,0.09052501580436,89.52534106700227,158.6431,111.08765990371728,165766.06793935402,116075.42073259696,349.43397,225.14365470881637,364686.049549126,234816.5865418588,364.94904,175.81328739667114,378674.29443173145,181646.5939511988,3225.82846,1475.537208552967,3345075.870139912,1516301.2881257718,1173.29055,514.7259927135467,1215979.7394021086,527906.4231729332,1859.90056,785.7697081463313,1917936.0730593607,798642.3382570329,0.38286,100000,0,721105,7534.821269970638,0,0.0,0,0.0,29602,308.87224015966063,0,0.0,33401,346.3632279029915,1618378,0,58139,0,0,6299,0,0,82,0.8568174456391127,0,0.0,2,0.0208979864790027,0,0.0,0.06248,0.1631928119939403,0.3034571062740077,0.01896,0.3365413993278338,0.6634586006721662,24.83967991492244,4.382658396915265,0.3252840909090909,0.2368100649350649,0.2197646103896104,0.2181412337662337,11.242245958297447,5.759986068938422,20.18029479083683,12460.483562165213,56.01631939676161,13.976852426463482,18.17364222029988,12.003689087370182,11.86213566262807,0.5693993506493507,0.8106255355612683,0.6905801621958827,0.5854108956602031,0.1106976744186046,0.7288519637462235,0.9253393665158371,0.8689320388349514,0.7336244541484717,0.1244813278008298,0.5108213096559379,0.7406896551724138,0.6288832913518052,0.5456674473067916,0.1067146282973621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002409809341555,0.0046218870678383,0.006989460016028,0.0095476059885835,0.0118678368401248,0.0141312536906192,0.0164651428338396,0.0185841340508306,0.0207881712953495,0.0230686530486868,0.0252232669257349,0.0272534965394015,0.0292311648238621,0.031230358670005,0.0337338453280482,0.0362032594308405,0.038378271993702,0.040346270020033,0.042357370161609,0.0443911842859375,0.0593199979108998,0.0732235974115725,0.0862564813065474,0.0993139153127367,0.111569550260642,0.1273454614725211,0.1404378663042555,0.1515354871696545,0.1635506525991726,0.1739788524502173,0.1868712463474332,0.1991032070097152,0.210325797076208,0.2210256746995863,0.2303331205002312,0.2405150252637177,0.2505470459518599,0.2596795802794384,0.2683571590651236,0.2762124023549355,0.2839620458227262,0.2904814836482771,0.2969062644297368,0.3024165017689033,0.307944725999927,0.3129745587220195,0.3178175169684674,0.3224595255065675,0.3266181827609899,0.3314266087163295,0.3311971289412971,0.3299223566079629,0.3292448835568101,0.3279994217982075,0.3272271128067336,0.3266099412340842,0.3247947091119092,0.3243252128743794,0.325216052023616,0.326188307164675,0.3269270432940206,0.3276507276507276,0.3289923456013421,0.3303829520245591,0.3318657524359437,0.3338109629012088,0.3361136415395126,0.3400766476094741,0.3434085177920986,0.3454761433379529,0.3473746259182008,0.3507889441914645,0.3533834586466165,0.3566932119833144,0.3567158602652718,0.3534371706288792,0.3567022717015194,0.3604071043703851,0.3584239130434782,0.3603871928518243,0.0,1.632703236817153,58.93541931755325,186.8141143326988,266.8194032012036,fqhc4_80Compliance_implementation_low_initial_treat_cost,42 -100000,95740,44136,418.5084604136202,6167,63.18153331940673,4842,50.0104449550867,1892,19.33361186546898,77.32392886815877,79.68802023210866,63.31606620966248,65.06499337348768,77.0838330287339,79.45121177406067,63.22640383950625,64.97966782382919,0.2400958394248675,236.8084580479888,0.0896623701562333,85.32554965849215,159.28726,111.56318772248676,166374.82765824106,116527.2485089688,346.69342,223.816627453336,361547.9005640276,233203.64262934605,354.50917,170.82472286663344,367164.74827658245,175976.62484472603,3169.13238,1443.2328422063918,3273018.038437435,1470323.7227975673,1141.61135,501.63802155341466,1178047.482765824,509598.21553521417,1853.92842,783.2396749870892,1896285.8575308125,783167.9504716813,0.37986,100000,0,724033,7562.492166283685,0,0.0,0,0.0,29531,307.8650511802799,0,0.0,32526,336.6409024441195,1616411,0,58087,0,0,6336,0,0,55,0.574472529768122,0,0.0,0,0.0,0,0.0,0.06167,0.162349286579266,0.3067942273390627,0.01892,0.3328185328185328,0.6671814671814672,24.471425097569465,4.344120943498392,0.3145394465097067,0.2434944237918215,0.2209830648492358,0.2209830648492358,11.479723213517856,6.053012234937193,20.169887045215184,12331.663621550142,54.64816560780382,13.956202079728078,17.094013677616584,11.854527338175702,11.743422512283448,0.5729037587773648,0.7896522476675149,0.7058437294812869,0.6,0.1177570093457943,0.7309205350118018,0.9308641975308642,0.8655913978494624,0.7665369649805448,0.1392405063291139,0.5166619994399327,0.7157622739018088,0.6542137271937446,0.5473554735547356,0.1116446578631452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106880589909,0.0048363057518579,0.0070939980108388,0.0095104554044991,0.011758961630793,0.0138492871690427,0.0157718736618885,0.0180060632662018,0.0199061436064165,0.0218797993242551,0.0240321522309711,0.0259661587744876,0.0280670731080428,0.0298922560309841,0.0319897632757517,0.0336985734959685,0.0359018448120487,0.0379158233431937,0.039827794184934,0.041632372399279,0.0564093462237163,0.0702650108285119,0.083502862775529,0.0974142735465146,0.1095399280841057,0.1251573458011149,0.1381128712240978,0.1500777273792031,0.1616855372783593,0.1722592679945968,0.1855225053558548,0.1985984340528615,0.2100960022614349,0.2203621492772322,0.2302226328757479,0.2407021818584561,0.2501032331506758,0.2582126337823694,0.2665811257338163,0.2750708117839983,0.2821891769723803,0.2895936617324754,0.295303048274226,0.301037314507996,0.3058138968690655,0.3108513448458889,0.3158178489932044,0.320370157928951,0.3243558807503697,0.3278818567632243,0.3274292112398656,0.3267566822816203,0.3265283088079685,0.3244894119009365,0.3238575508746876,0.3225411216957147,0.3205785542473731,0.3219488188976378,0.3225663187742343,0.3231148067520788,0.3238674653687757,0.326121747377156,0.3274775434996545,0.3282360831656606,0.328805001202212,0.3291795927943898,0.3299074733096085,0.3335225659948907,0.3371329757199322,0.3410683012259194,0.3448511959101698,0.3467587672688629,0.3489251717833953,0.3497829563628056,0.3524187452758881,0.3552082090442668,0.3581953516633753,0.3576237623762376,0.3541001064962726,0.3522727272727273,0.0,2.194033088697687,55.72868557074736,177.9124472620272,271.4288968864318,fqhc4_80Compliance_implementation_low_initial_treat_cost,43 -100000,95791,44376,418.5361881596392,6250,63.98304642398556,4923,50.7563341023687,1975,20.179348790596197,77.4066300966336,79.7461043705561,63.35719594835807,65.08801096877166,77.16341814726768,79.50568698954577,63.26724532471655,65.0018619091072,0.2432119493659286,240.4173810103316,0.0899506236415206,86.14905966445008,160.00556,112.03652936077594,167034.96153083275,116958.36130403185,350.64663,226.38474404893324,365404.7144303744,235686.49037267623,360.37618,174.33383158881006,372457.308097838,179066.45256347497,3247.53311,1475.867958510809,3347987.15954526,1498893.7223101896,1188.89711,521.0023308917974,1225499.8277499974,528654.9989625238,1939.93814,810.9556917285737,1983456.6295372215,810931.6870941083,0.38082,100000,0,727298,7592.498251401489,0,0.0,0,0.0,29795,310.3527471265568,0,0.0,32970,340.51215667442665,1613615,0,57954,0,0,6280,0,0,76,0.7829545573174933,0,0.0,0,0.0,0,0.0,0.0625,0.1641195315372091,0.316,0.01975,0.3361357383063283,0.6638642616936716,24.777977462263404,4.414776271284056,0.3191143611618932,0.2299410928295754,0.221612837700589,0.2293317083079423,11.397267656590389,5.901716320482359,20.93475761357704,12396.067939502627,55.57174308210781,13.458599468194228,17.698887314199037,12.17111497068348,12.243141329031063,0.5553524273816779,0.7985865724381626,0.683004455760662,0.5829514207149404,0.1071744906997342,0.728049728049728,0.9305912596401028,0.8636363636363636,0.7553956834532374,0.1026785714285714,0.4942244224422442,0.7294751009421265,0.6221276595744681,0.5239852398523985,0.1082872928176795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019150100310049,0.0043195230273164,0.0063831298647263,0.0089816404702152,0.0114116007770466,0.01381845583593,0.0161497522481189,0.0182207931404072,0.0205752483748313,0.022534692373818,0.0247914403427142,0.0267097634805807,0.0289528860384805,0.0309865244649419,0.0331103299693842,0.0354388030110591,0.0374186607078199,0.0395907196616284,0.0418376570080932,0.0439150850086934,0.0587032283645318,0.0730921678745856,0.0862743042817462,0.0988639110466521,0.1107037118985154,0.1270750340775806,0.1392580816110228,0.1508585402158311,0.1620165377433982,0.1725504477100381,0.1857247374763298,0.1982916148564632,0.2103793369481359,0.2211812493857896,0.2310092166404851,0.2420393441171914,0.2521216446788817,0.2601281474820144,0.2681643437928805,0.2753702813451457,0.2824998554662658,0.2895524132289354,0.2952149997042645,0.3010551782784185,0.3060208184037604,0.3113770241293471,0.3168575899843505,0.3214317525353421,0.3253057311638512,0.3298650540048063,0.3289436439364326,0.3281299470025466,0.3269244322907123,0.3261721291329931,0.3252747252747253,0.3240617493612399,0.3230310017530283,0.3240164953852196,0.3249881025222653,0.3256453961151948,0.3259436340884896,0.327068778903867,0.3279239064683674,0.3281211716226751,0.3278704213221045,0.3275267646525132,0.3289619034131142,0.3321878221750133,0.3364968597348221,0.3378154574132492,0.339376130198915,0.3415622697126013,0.3451631011039731,0.3478718604301398,0.3522769344687153,0.3577254719179678,0.363302752293578,0.3660732146429286,0.3583608360836083,0.363356428021555,0.0,2.3598950101686893,56.27257490382124,184.3297995932678,272.36798665334766,fqhc4_80Compliance_implementation_low_initial_treat_cost,44 -100000,95688,44605,420.95142546609816,6273,64.35498704121729,4966,51.302148649778445,1981,20.389181506562995,77.29491858535671,79.70037720773946,63.29396199958445,65.07530653854398,77.04369971781058,79.44747670756182,63.20053192271249,64.98354014271803,0.2512188675461289,252.90050017764543,0.0934300768719609,91.76639582595668,157.76332,110.61260620727109,164872.62770671348,115597.1555547938,348.42384,225.12735208703467,363463.62135272974,234611.09080447408,365.5351,177.78367615412728,378353.921076833,182891.4649949189,3251.21507,1502.6363129343877,3360534.9155589,1533168.5481607912,1168.05654,522.1612556022001,1208589.1438842907,533587.8016075166,1937.1526,816.23389779721,1995155.5889975757,827368.907265729,0.3817,100000,0,717106,7494.2103503051585,0,0.0,0,0.0,29653,309.2759802692083,0,0.0,33538,346.8459994983697,1620694,0,58180,0,0,6364,0,0,57,0.5852353482150322,0,0.0,0,0.0,0,0.0,0.06273,0.1643437254388263,0.3157978638609915,0.01981,0.3273337400854179,0.6726662599145821,24.465651112768143,4.301716135422195,0.3209826822392267,0.2368103101087394,0.2211035038260169,0.2211035038260169,11.176724793858968,5.881313111583639,21.11605274958808,12442.47562737516,56.59945331446799,14.23983460739283,18.09952779897269,12.218502549036565,12.041588359065909,0.5734997986306887,0.798469387755102,0.6951066499372648,0.6211293260473588,0.1083788706739526,0.732566498921639,0.9300225733634312,0.8531468531468531,0.7581227436823105,0.128099173553719,0.5116083916083916,0.7189631650750341,0.6369098712446352,0.5749086479902558,0.102803738317757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002615386174947,0.0051549007072767,0.0074747372162697,0.0094962126988968,0.0116045889023484,0.0138411831255796,0.0162047430507367,0.0182873255552604,0.0207472275647583,0.0231614747129144,0.0254703239439509,0.0275112489983768,0.029625742187098,0.0317633721529423,0.0341766533510874,0.0361851970588539,0.0382582744399079,0.0403251762409543,0.0423099330032041,0.0442781350649892,0.0586416529132805,0.0725001832134593,0.0859979221978529,0.0994633838383838,0.1120360405984258,0.1276663280853225,0.1398745396070606,0.1516274315648257,0.1630319802540897,0.1732977102512929,0.1865270460984885,0.1990738236153338,0.210090246819615,0.2212117568616306,0.2306008645057688,0.2411898908011606,0.2508174584574866,0.2593372205587699,0.2674504458454024,0.2755880227984266,0.2821267230394996,0.2889661713563073,0.2953912847785661,0.3015779684406312,0.3077867756134335,0.3137470367443698,0.3185401496446878,0.3228377535300034,0.3272491909385113,0.331266899690035,0.329991252271045,0.3291403747542651,0.3278824755626919,0.3272635306019221,0.3267972884581078,0.3246364807656911,0.3226359394343396,0.3234824675431524,0.325115984455515,0.3253257912072175,0.3264765056503018,0.3277094084954347,0.3280691424485847,0.3299499225258808,0.3323809293203225,0.3345921846315237,0.3346810035842293,0.3374252538994526,0.3388057072397393,0.3414322760821863,0.3429619440623567,0.3483870967741935,0.3514707738921853,0.3535245651510528,0.3576477240599378,0.3623568702290076,0.3650236532885701,0.3683353683353683,0.3672409078479628,0.365049279757392,0.0,2.288986921418239,61.03845196570845,183.206422434144,267.71569300285955,fqhc4_80Compliance_implementation_low_initial_treat_cost,45 -100000,95711,44056,416.89043056701945,6172,63.16933267858449,4842,49.910668575189895,1851,18.94244130768668,77.3593554540744,79.73134563744915,63.33143217950936,65.08428970120575,77.13172573839378,79.5061436998378,63.246640807601146,65.00290943687833,0.2276297156806208,225.2019376113452,0.0847913719082171,81.38026432742151,159.45358,111.71279279484808,166599.01160786118,116718.86491087552,348.25985,224.95578615972968,363221.5941741284,234392.6897059781,360.88145,174.63644234937018,372392.23286769545,178893.2267854737,3147.42936,1442.2880694862274,3249225.7838701927,1467722.3826585868,1137.36819,501.1777706537112,1173758.5335018963,509098.6313297133,1819.23032,762.9973184900198,1864554.2309661373,766834.5456414064,0.37727,100000,0,724789,7572.682345811871,0,0.0,0,0.0,29606,308.63746068894903,0,0.0,33006,340.2221270282413,1617701,0,57894,0,0,6309,0,0,77,0.8045052292839904,0,0.0,0,0.0,0,0.0,0.06172,0.1635963633472049,0.2999027867790019,0.01851,0.3373438223044886,0.6626561776955113,24.428540936348725,4.286264700563509,0.3283767038413878,0.2379182156133829,0.2178851714167699,0.2158199091284593,10.902922098169771,5.541070487662368,19.680833535026174,12276.252563848488,55.13221243096618,13.979416979310828,17.96617659865425,11.858599729301742,11.328019123699342,0.5679471292854192,0.7994791666666666,0.6918238993710691,0.5781990521327014,0.1138755980861244,0.7362804878048781,0.927400468384075,0.8599033816425121,0.6867924528301886,0.1553398058252427,0.5053824362606232,0.7241379310344828,0.6326530612244898,0.5417721518987342,0.1036948748510131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021573552647571,0.0044806228268472,0.0068596710199194,0.0091710507606995,0.0114293849079243,0.0137436753642073,0.0158010092257505,0.0179654165730967,0.0202101776696448,0.0223282384135791,0.0245500692201199,0.0265925758540643,0.0285508513812438,0.0305590471676729,0.032464115079406,0.0345779321466228,0.036411259848226,0.038220193953223,0.0402099901242268,0.0424352898286547,0.0564089176630292,0.0708035919871056,0.0847974992919555,0.0979905574073879,0.1099066800231981,0.1250502443461888,0.1365266665251809,0.1482502741432358,0.1590933378930044,0.1703762529243845,0.1829791361324252,0.1950459033431491,0.2061518039778909,0.2168574492766311,0.2269637919829039,0.2377952755905512,0.2471994192215335,0.2557851751020913,0.2642472935248859,0.2727408120245623,0.2800615519894482,0.2870454811177365,0.2933394807774152,0.2990592684795097,0.3042718658626839,0.3103588354773189,0.3157170554756395,0.3205367694712363,0.325400007760862,0.3293454200484874,0.3285725802117483,0.3276778722644283,0.3262746970356536,0.3257400238879855,0.3245368519258963,0.3232031977054632,0.3217291266114035,0.322921774378085,0.3230088495575221,0.32380918514304,0.3244805206950081,0.3255171324806569,0.3255131349980082,0.3264318365151922,0.3261408193211614,0.3265279550011718,0.327566090890982,0.3307017267952065,0.3328188578644591,0.3343627509205368,0.336565601383957,0.3384149580367577,0.3407853071564281,0.3437096651734872,0.3419771578356113,0.3455787118803721,0.3494599117602312,0.3509827517047734,0.3485838779956427,0.3438210765731614,0.0,2.649516123566597,57.17832004541038,186.50926640877972,257.5811980999395,fqhc4_80Compliance_implementation_low_initial_treat_cost,46 -100000,95880,44325,417.7200667501043,6095,62.24447225698791,4716,48.52941176470589,1802,18.39799749687109,77.4394230829848,79.71912127545724,63.39129033748679,65.07691298014599,77.21855387414031,79.50123424469322,63.30901675174088,64.99835090344274,0.2208692088444905,217.88703076401816,0.0822735857459022,78.56207670324977,160.47834,112.33589999806384,167374.15519399248,117163.01626831856,348.66107,225.6463681880461,362955.068836045,234655.05929938605,355.37305,172.26252180089128,366051.8669169796,176232.93058077653,3079.69865,1402.9030111719132,3174738.569044639,1425940.6175196553,1106.03282,491.9542689655525,1139004.8289528578,498585.1997725738,1773.6136,742.9597552998384,1814260.4714226115,744116.0538898357,0.38035,100000,0,729447,7607.916145181477,0,0.0,0,0.0,29646,308.4793491864831,0,0.0,32581,335.31497705465165,1614739,0,57955,0,0,6371,0,0,66,0.6779307467667919,0,0.0,0,0.0,0,0.0,0.06095,0.1602471407913763,0.2956521739130435,0.01802,0.328982544425224,0.6710174555747759,24.728475108169544,4.331220829024669,0.3237913486005089,0.2419423240033927,0.219041560644614,0.2152247667514843,11.173714385222905,5.573204717824995,19.166814240668533,12318.27028266467,53.34805876638702,13.62647591786921,17.19309080128872,11.394376015294952,11.134116031934138,0.568490245971162,0.7765118317265557,0.6823837590045841,0.6060019361084221,0.1251231527093596,0.7586477987421384,0.9263657957244656,0.8717277486910995,0.7358490566037735,0.230392156862745,0.4982578397212543,0.6888888888888889,0.6192139737991267,0.5611979166666666,0.0986436498150431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025612472160356,0.0050265515424216,0.0074052282940585,0.0096051335682157,0.0119832904753676,0.0141124519240552,0.0160325948561242,0.018359853121175,0.0206571043275714,0.0229853311237954,0.0251542039795897,0.0274363341610063,0.0296462996074562,0.03171580334349,0.0337635827542835,0.0354070938096959,0.0374297803664352,0.0395287632625994,0.0416510942236618,0.0436297814349766,0.0583520091728774,0.0723980482096398,0.0860505539151012,0.09894909239798,0.110949704204299,0.1257931354849607,0.1375643442709767,0.1489198924674055,0.1593143003347476,0.169886235940025,0.1834121694259299,0.1959417847071407,0.2075408162156877,0.2183167072757667,0.2285456684515497,0.2384267200832235,0.24814719878746,0.2579391379562126,0.2664144274774571,0.2738474903695575,0.2811742153036007,0.2878688830780724,0.2943331127705832,0.3002501286546908,0.3048369090379574,0.3092491597828362,0.3146071629476842,0.3191754201013578,0.3238894130724192,0.3284407292832225,0.3276158726744811,0.3266889062778853,0.3259745369719794,0.3248467363865849,0.3234945296053607,0.3223332416659027,0.3197744218374826,0.3206015677418299,0.3211621649238734,0.3221071733561059,0.3232047810253058,0.3246006263911596,0.3255794546554565,0.3267799622348106,0.3280041996754796,0.3287632179141613,0.329313071969269,0.3318391233968372,0.3351026922009436,0.3375868703129294,0.3388723768350896,0.3373677840340999,0.3391721730457549,0.345839636913767,0.3472665789968063,0.3487986743993372,0.3477192443557057,0.3512742099898063,0.3598014888337469,0.355631141345427,0.0,2.4700975336873325,55.464371655957,172.14486538382496,260.8260217966501,fqhc4_80Compliance_implementation_low_initial_treat_cost,47 -100000,95728,44224,417.9550392779543,6194,63.41927126859436,4883,50.3301019555407,1903,19.37782049139228,77.34647984393533,79.69894012333586,63.33814763576003,65.07529280160784,77.10790341494253,79.4663964855064,63.24888656035727,64.99201889234739,0.2385764289928005,232.5436378294654,0.08926107540276,83.27390926045553,160.23304,112.18325238489405,167383.67039946516,117189.59174420655,346.95592,223.5741669791252,361766.3901888685,232878.5485742157,358.0188,172.97214203542896,370153.7063346148,177695.41592594568,3175.10704,1459.7043400762252,3271716.0809794418,1479761.0626736428,1173.50241,519.4140952538802,1205495.0693631957,522218.07940844406,1866.81854,786.9949887366319,1902649.0264081564,780697.4340038392,0.37951,100000,0,728332,7608.348654521143,0,0.0,0,0.0,29552,307.987213772355,0,0.0,32819,339.01261908741435,1614005,0,57984,0,0,6317,0,0,71,0.7416847735249875,0,0.0,1,0.0104462644158448,0,0.0,0.06194,0.163210455587468,0.3072328059412335,0.01903,0.3331278890600924,0.6668721109399075,24.68463517564077,4.357284187606174,0.3035019455252918,0.2469793159942658,0.2275240630759779,0.2219946754044644,11.365319131428578,5.914607197498791,20.251913549911063,12348.917590244875,55.47973342246268,14.209255776747256,16.894036573207327,12.44333297987417,11.933108092633937,0.5648167110382961,0.7819237147595357,0.6862348178137652,0.5958595859585959,0.1254612546125461,0.7298937784522003,0.9349397590361446,0.86,0.7573529411764706,0.1038961038961039,0.5037868162692847,0.7016434892541087,0.621996303142329,0.5435041716328963,0.1313012895662368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.0048251882938499,0.0070224576572188,0.0092237053290262,0.0112473813736856,0.0136117445838084,0.0159327217125382,0.0181775500622588,0.0204640703260758,0.0225653206650831,0.0244674962586358,0.0263587374903772,0.0282838460273071,0.0306934874187601,0.0326458176415357,0.0347718228332213,0.0371394255658404,0.0391562827469574,0.0410736747996215,0.0430616028832732,0.0578101671556395,0.0712805375871381,0.0840223276115331,0.0965832010011673,0.1085196119780683,0.124011418904631,0.1364513938982475,0.1485328707202077,0.1599871890680047,0.1714340831877565,0.183956424857638,0.1965415436524673,0.2083011813804871,0.2195169926783958,0.2291973530898938,0.2399486362026213,0.2490493236537196,0.257952040311333,0.2663315442486411,0.2750108817667407,0.282616995430092,0.289912870592363,0.2965882993583824,0.3025695751747623,0.3072101075138189,0.3118002783491188,0.3167167167167167,0.3208356673626317,0.3252865218067728,0.329464120645485,0.3288906258422726,0.3274506834794818,0.3260063969790477,0.32466030644695,0.3240037457080428,0.3227744318268892,0.3215986582915368,0.3237768775319414,0.3248898302189731,0.3259477299081259,0.3262184276058342,0.3276263823064771,0.3292585758617797,0.3297512705129066,0.3301543722756063,0.3311246136923158,0.331835484701909,0.3353716194918993,0.3389240506329113,0.3400119024003174,0.3435888072305655,0.3445243804956035,0.3485258062488213,0.3504690717717946,0.3532968071037219,0.3537123108092003,0.3593630378196294,0.3644136807817589,0.3673469387755102,0.3727486296006265,0.0,2.609390730683801,57.41221001466806,183.50700454044232,265.93119105071736,fqhc4_80Compliance_implementation_low_initial_treat_cost,48 -100000,95733,44558,421.17138290871486,6179,63.36373037510576,4871,50.2230160968527,1935,19.85731148088956,77.41222784566315,79.7677361536787,63.350809200748486,65.08953012436577,77.17646528556476,79.53408635449077,63.26445448644097,65.00677690483683,0.2357625600983937,233.64979918792983,0.086354714307518,82.75321952893933,160.248,112.1758587266199,167390.55498104103,117175.74788904548,348.73984,224.59513923187296,363629.1247532199,233951.06100495427,359.54749,173.6207566855305,370753.9824303009,177764.52600565567,3235.36922,1453.554278167191,3340276.0803484693,1479042.2928010086,1184.54484,512.3108606780593,1223649.8490593631,521453.1359907852,1895.8577,778.1559572247655,1946873.1158534675,783397.1020770142,0.38209,100000,0,728400,7608.661590047319,0,0.0,0,0.0,29684,309.3813000741646,0,0.0,32999,339.9559190665706,1614021,0,57826,0,0,6309,0,0,45,0.4596116281741927,0,0.0,0,0.0,0,0.0,0.06179,0.1617158261142662,0.3131574688460916,0.01935,0.3267722589574042,0.6732277410425958,24.680025149824488,4.410446038230674,0.3360706220488606,0.2155614863477725,0.2217203859577088,0.2266475056456579,11.188653738653793,5.7299802802158855,20.2835512765669,12406.771298010644,54.65853602511134,12.58894050075277,18.23748767487408,11.92150186380015,11.910605985684334,0.5635393143091768,0.7942857142857143,0.7073915699450214,0.5546296296296296,0.1394927536231884,0.737220447284345,0.9302325581395348,0.8771929824561403,0.6929133858267716,0.1745283018867924,0.5034539928156949,0.7149321266968326,0.6526655896607432,0.5121065375302664,0.1311659192825112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0046419703035524,0.0069593799456235,0.0091701194248111,0.0116613629662765,0.0140988446073191,0.0164604439733371,0.018795342999704,0.0210013183309317,0.0232855680655066,0.0255083217184553,0.0277985936457424,0.0296491246106239,0.031687675070028,0.0337209662274411,0.0359092036715455,0.0376391405643282,0.0398821381142098,0.0415661648507028,0.043274439536628,0.0582990541020233,0.0725579448542876,0.0857688353649581,0.0980423096748403,0.1099035600481144,0.1260569118596357,0.1383830022075055,0.1505611038947211,0.1620111134857875,0.172520738761362,0.1860216908514629,0.1990688105679172,0.210495379290076,0.2200048167447563,0.229738065340471,0.2398420865862313,0.2495865367423565,0.2592592592592592,0.2675718940520657,0.275137247710628,0.2825832744787023,0.2893212743801846,0.2956118452965465,0.3011136390851395,0.3059648952441067,0.3118028023344579,0.3160624351716467,0.3213102266235003,0.3263954344149053,0.3306112250802167,0.3295914809152115,0.3291631839296235,0.3287825001052351,0.3272452504317789,0.3277499593802159,0.3251643935703848,0.3235821741046138,0.3242723196086425,0.3249796251018745,0.3259708694803697,0.3263863044287309,0.327347659699735,0.3281259776827614,0.3294193519692219,0.3291515035433825,0.330714378322313,0.3331348531246456,0.3360842789708962,0.3384303868174836,0.3421114785073217,0.3447325623418865,0.3476401647133354,0.3493116395494368,0.3515105740181269,0.3533946317451472,0.353500939849624,0.3546248870141609,0.353046953046953,0.353373231773667,0.3595591030026606,0.0,2.488309980737988,54.70586893446539,177.27171324278223,275.6368252475455,fqhc4_80Compliance_implementation_low_initial_treat_cost,49 -100000,95733,44604,421.8294631945097,6087,62.42361568111309,4745,49.02175843230652,1826,18.739619566920496,77.32373385663094,79.69573018670907,63.321321634088775,65.07602636988817,77.09516642708996,79.46577691255729,63.235646372253385,64.99216540566326,0.2285674295409734,229.95327415178224,0.0856752618353908,83.86096422491107,159.25756,111.60034557787384,166355.9692060209,116574.58303602083,348.89878,225.5479932715513,363912.4439848328,235074.3353359833,357.33284,172.87185891431778,370093.2593776441,178156.8025573311,3117.41282,1425.001558129307,3221048.280112396,1453881.0594745448,1132.17734,500.0744967739788,1166368.5667429203,507029.42174530576,1789.31034,758.2479549339727,1837064.9410339168,764352.3389805342,0.38106,100000,0,723898,7561.634963910041,0,0.0,0,0.0,29700,309.68422592000667,0,0.0,32706,338.44128983736016,1615927,0,57992,0,0,6212,0,0,71,0.7416460363719929,0,0.0,0,0.0,0,0.0,0.06087,0.1597386238387655,0.2999835715459175,0.01826,0.3316167290886392,0.6683832709113608,24.586698910891947,4.369418845576068,0.3268703898840885,0.2320337197049525,0.2200210748155953,0.2210748155953635,11.211307256375582,5.930338135250796,19.57908332031361,12380.38654778314,53.65247478412606,13.14046497674361,17.356810091985853,11.52494547147524,11.63025424392136,0.5597471022128556,0.7811080835603996,0.6808510638297872,0.6015325670498084,0.1067683508102955,0.7156549520766773,0.9065656565656566,0.8657894736842106,0.7272727272727273,0.1367521367521367,0.5038648726023476,0.7106382978723405,0.6208368915456874,0.5635910224438903,0.0981595092024539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024214792299898,0.0044418753232529,0.006851400730816,0.0093185374875515,0.0116799609311411,0.0137823549185588,0.0156753559335862,0.017791304525446,0.0197662409374904,0.0222131189513031,0.0244180084093939,0.0265998418387782,0.0287536649349313,0.0310484120277817,0.033432768035012,0.0353974981908404,0.0373884044161816,0.0391239391612889,0.0409869303471724,0.0432413282902483,0.057008018710324,0.0721029054676379,0.0852119546403432,0.0979098951265949,0.1101609127528101,0.1255008934141106,0.1385638664644043,0.1512182147036918,0.1626317531850364,0.1729765083041161,0.1854886465185887,0.1971853838997901,0.2087877436962454,0.2194063302902749,0.2299907598891186,0.2407507889928575,0.2498996386993175,0.259308779577987,0.2671640606397333,0.2746661784729453,0.2819632724288967,0.2886821995279381,0.294937576846685,0.3011499760421658,0.3066527435433539,0.3118862507854757,0.3163810692067942,0.3215599893046766,0.3259581858951925,0.3302932713882216,0.3297502626687141,0.3291922043936368,0.3280403880866426,0.3267081644470179,0.3254620123203285,0.3238201799426758,0.3225551301926788,0.3235993375854662,0.3248103639307935,0.3261927251341092,0.3263502761396611,0.3263301446754684,0.3268500451102578,0.3272344523324301,0.3279612632796126,0.3287968235724361,0.3298170383076043,0.3338386230854255,0.3369863979138769,0.3414176871833739,0.3457332418210935,0.3499171698819003,0.3524081115335868,0.3567211103442987,0.3618081007424114,0.3686652391149179,0.3710586443259711,0.3736374646750101,0.374315443592552,0.3766833397460561,0.0,2.092093131965865,54.80610610377407,176.0671612330314,264.39757149829313,fqhc4_80Compliance_implementation_low_initial_treat_cost,50 -100000,95782,44762,423.21104174061935,6090,62.31859848405755,4782,49.36209308638367,1881,19.21029003361801,77.38153749659537,79.72189052042178,63.350937847410606,65.08219943737494,77.14946753575322,79.49376329193514,63.263090575376665,64.99850624703392,0.2320699608421534,228.1272284866418,0.0878472720339402,83.69319034102318,159.49758,111.73809079256849,166521.22528241214,116658.5410563242,349.32868,226.16840991655909,364134.0439748596,235550.6660004585,363.15302,175.6153172089272,375771.6689983505,180646.04291617204,3112.77575,1427.582393392415,3215370.3305422734,1456025.694403347,1116.63449,499.4411262228117,1151624.595435468,507251.57777328906,1839.52246,778.0653376895724,1881410.870518469,779904.6249527801,0.38358,100000,0,724989,7569.146603746007,0,0.0,0,0.0,29749,309.98517466747404,0,0.0,33236,343.6345033513604,1614042,0,57937,0,0,6352,0,0,59,0.6159821260779688,0,0.0,0,0.0,0,0.0,0.0609,0.1587674018457688,0.3088669950738916,0.01881,0.3351631116687578,0.6648368883312421,24.55522469917794,4.338012775903818,0.3239230447511501,0.2352572145545796,0.2279381012128816,0.2128816394813885,11.194758484029576,5.829095233788415,19.987309247979702,12412.318388416194,53.953784957452896,13.36750036901104,17.491650344616545,11.922481565186793,11.172152678638524,0.5669176076955249,0.7848888888888889,0.6985151710781149,0.5825688073394495,0.1090373280943025,0.7222222222222222,0.9331683168316832,0.8509615384615384,0.7180616740088106,0.1255411255411255,0.5102739726027398,0.7018030513176144,0.6425419240953222,0.5469293163383546,0.1041931385006353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293969900139,0.0048350801792121,0.0072744612637474,0.0094350161989782,0.0115704496004229,0.0137931736514755,0.0161047009418192,0.0183406648363424,0.0204479960759467,0.0227556428673747,0.0251163076670833,0.0270986019584898,0.0288607855233395,0.0308059799843499,0.033017019082001,0.0350471152256571,0.0370876277991638,0.0390272724445688,0.0410753983918888,0.0433134813210611,0.058105922254109,0.0723847972054301,0.0860503637850418,0.0998507807738383,0.1117047622058529,0.1266632142970376,0.139104079015695,0.1508372760618787,0.1620029455081001,0.1726640297563537,0.1854351687388987,0.1976181977479962,0.2093981325478004,0.2200266672495573,0.2299298176137988,0.2402378131815816,0.2507750295514865,0.2583673423499387,0.2677684263061183,0.2756955332516966,0.2826806079252353,0.2896425940864929,0.2965009643943249,0.3018691588785047,0.3072103358671103,0.3124930730866326,0.3174603174603174,0.3218450738258447,0.3266169733674974,0.3312719217278936,0.3305254659220884,0.328515238200022,0.3274545710663474,0.3267052023121387,0.3261951821194513,0.3252842430641632,0.3236288386199924,0.3241598219837036,0.3244709804722052,0.3254846167526231,0.3267959206544884,0.3287271580358374,0.3304415084873317,0.3308378215299349,0.3318144755144132,0.3313210689287294,0.3308428737819948,0.3350541267755459,0.3378109626321482,0.342005527043032,0.3465633636899098,0.350293542074364,0.3529448779260005,0.3553763031732745,0.357727400997084,0.3605145149870191,0.3680608365019011,0.3748745735500702,0.371868978805395,0.3737181921762248,0.0,2.1548669927178525,55.80352490404818,175.00717549632614,265.4482565540025,fqhc4_80Compliance_implementation_low_initial_treat_cost,51 -100000,95859,44262,418.0410811713037,6205,63.66642673092772,4903,50.584712963832295,1970,20.248489969642915,77.37299817448195,79.67373621024603,63.35320242165369,65.05685094942804,77.13154440934623,79.43195647300632,63.26542622752677,64.97132832260816,0.2414537651357164,241.7797372397104,0.0877761941269241,85.52262681988054,159.48944,111.7430844687388,166378.97328367704,116570.02938559635,349.91603,225.61477651379184,364475.010171189,234804.08361634472,355.32971,171.863995446451,366405.53312678,176106.89912666954,3221.18693,1462.012333595223,3327441.9407671685,1492272.9984615142,1167.3967,512.1934725472313,1203078.0208431133,519594.181629854,1942.37726,803.8121132926046,1998233.739137692,814701.8226635165,0.37905,100000,0,724952,7562.680603803504,0,0.0,0,0.0,29806,310.3307983600914,0,0.0,32662,336.51508987158223,1616698,0,58045,0,0,6265,0,0,56,0.5841913643997956,0,0.0,0,0.0,0,0.0,0.06205,0.163698720485424,0.3174858984689766,0.0197,0.3299079754601227,0.6700920245398773,24.834239134711115,4.376913211289385,0.3261268611054456,0.2292473995512951,0.211503161329798,0.2331225780134611,11.005296774916234,5.566965970080916,20.982559246714537,12297.50123848346,55.619699523403824,13.42245657210244,18.061727163346244,11.550647778664173,12.584868009290984,0.5533346930450744,0.7900355871886121,0.6966854283927455,0.5593056894889104,0.1146106736657917,0.731839258114374,0.9125,0.8785714285714286,0.7510204081632653,0.1266375545851528,0.4893322249930729,0.7223756906077348,0.631891433418151,0.5,0.111597374179431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002430625886,0.004581065604508,0.006573141413834,0.0086814369555063,0.0109387389951812,0.0132023615635179,0.0152884938795062,0.0171447815571135,0.0193013109360471,0.0215075767652686,0.0234109257817302,0.0258038700675107,0.0283755729584181,0.0305613027411501,0.0326807492860751,0.0347302544613351,0.0367699549945683,0.0387552718568334,0.0410600427838584,0.0429173386047963,0.0572447447447447,0.0713822939307808,0.0853473291639167,0.0977013304770605,0.1093746709071378,0.1242209781345727,0.1365480996429214,0.148441486647389,0.1608461768347351,0.1711704954568832,0.1843470213498622,0.1959470413401783,0.2071592353919214,0.2175885439440315,0.2279063115394347,0.2385777246251633,0.2480814705751126,0.2562709500348699,0.2643976682468755,0.2724785659504813,0.2800920305689477,0.287296500748503,0.2937967433494272,0.2998658425566575,0.3061264126436921,0.3110196943010925,0.3159271543901371,0.3206944797761384,0.325121685998343,0.3293696880114026,0.3294412346975879,0.3276930278665051,0.3269214497250035,0.3256469975552244,0.324378168626693,0.3219170738431847,0.3199676944272887,0.3204753619382161,0.3227299115527781,0.3235530474846866,0.3244720682941441,0.3253300134376729,0.3260787599497277,0.3276216433582056,0.3280612489799837,0.3289922642148308,0.3294050506491653,0.3322420197695649,0.3355704697986577,0.3402780528379609,0.3444011596303678,0.3476901885992795,0.3491713403491083,0.3494261667941851,0.3510034078000757,0.3559422348484848,0.3597664054095589,0.3626847290640394,0.369407158836689,0.3686229382431914,0.0,2.125888204995316,57.00809802204575,185.71232335788267,268.9421927321115,fqhc4_80Compliance_implementation_low_initial_treat_cost,52 -100000,95797,44317,419.1049824107227,6181,63.3735920749084,4838,49.980688330532274,1848,18.956752299132543,77.39816222968327,79.72789884135301,63.35848721039546,65.07984453835198,77.17139378688877,79.50093667069102,63.2751688166862,64.99813917931291,0.2267684427944942,226.96217066199156,0.0833183937092627,81.70535903906284,159.7816,111.98362021131614,166791.86195809892,116896.79239570771,350.76211,226.2815827603797,365606.2402789232,235667.65499035225,360.14618,174.18702448140323,372494.5666356984,179135.48076614496,3195.88587,1447.5355197611032,3304234.725513325,1479422.6237598222,1141.86095,498.4073040247407,1179868.3570466717,508311.6661098591,1818.5357,755.9938491741042,1867873.503345616,765177.2274210231,0.38006,100000,0,726280,7581.448270822677,0,0.0,0,0.0,29899,311.5442028456006,0,0.0,33003,341.085837761099,1613727,0,57851,0,0,6329,0,0,59,0.6054469346639247,0,0.0,0,0.0,0,0.0,0.06181,0.1626322159659001,0.2989807474518686,0.01848,0.3228734040916782,0.6771265959083218,24.64097171865956,4.468678109340635,0.3119057461761058,0.2312939231087226,0.2302604381976023,0.2265398925175692,11.093435203204711,5.598990417532747,19.55523275138392,12292.608033845674,54.56577037404523,13.387365590966064,17.10214800842882,12.140772260847514,11.935484513802823,0.5475403059115337,0.7676496872207328,0.7104042412193505,0.5538599640933572,0.0921532846715328,0.7236024844720497,0.9123222748815166,0.8802992518703242,0.7195121951219512,0.0776255707762557,0.4836619718309859,0.6800573888091822,0.6489169675090253,0.5069124423963134,0.0957810718358038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685382106904,0.0046923139289768,0.0070202491579758,0.0094036883581119,0.0113861637777664,0.0134956337655464,0.01562133795282,0.0180998245112843,0.0201166746697453,0.0223040720278289,0.0244854470386952,0.0264132743635262,0.0284257908042669,0.0305784273363524,0.0328463766920626,0.034825356825646,0.0368592561940723,0.0387183741186229,0.0407157999750592,0.042621209596801,0.0569386477462437,0.0711566617862371,0.084460380365268,0.0973630831643002,0.10960016023107,0.1255734308606219,0.1379303030945765,0.1501760956768777,0.1610764055742431,0.1718270900786928,0.1847971226740179,0.1972511786841991,0.2082667970235185,0.2186906088210236,0.2281623278865067,0.2385941233737498,0.2475470520024975,0.2559480975083206,0.2640927341605608,0.2719621673613338,0.2796467133707891,0.286058226102404,0.2928751464375732,0.2991901475944029,0.3050485436893204,0.3099402966701545,0.3147085661429232,0.318943167954453,0.3237132614632,0.3277251091098482,0.3265322602352561,0.3263732336284159,0.3250063367786633,0.3237649911243884,0.323270943552809,0.3217340828546988,0.3205389439100286,0.3206530638980775,0.3218710536195774,0.3221012491313103,0.323628889096515,0.3246589136572748,0.3257491791965536,0.3267015706806283,0.328560501027872,0.3303729095252934,0.3325323004721381,0.3357475103799207,0.3388257378245907,0.3416197931007355,0.346437791566647,0.3493716148709049,0.3500186776242062,0.3518602540834846,0.3507951356407858,0.3525145642610867,0.3507678272768739,0.3537716821298911,0.3536017529443988,0.3509304975313331,0.0,1.983116242761994,56.810898962634894,174.73749105594774,270.9058043320871,fqhc4_80Compliance_implementation_low_initial_treat_cost,53 -100000,95880,44099,417.1777221526909,6183,63.33959115561118,4876,50.30246141009596,1940,19.8581560283688,77.3584022892406,79.6431589688057,63.35300198276878,65.0427893273738,77.11668363712148,79.40312661552049,63.262570607461306,64.95603288168935,0.2417186521191183,240.0323532852013,0.0904313753074745,86.7564456844434,159.42806,111.64984524543289,166278.7442636629,116447.4814825124,348.48236,224.90128314650292,362937.0984564038,234045.69581404145,357.32991,172.17564628851943,369964.9353358364,177400.0986116485,3207.19922,1466.8168193475524,3310580.3191489363,1495635.4144345582,1169.08041,511.9544752299288,1204847.7054651647,519567.94243288354,1897.13574,795.8863678621427,1943569.482686692,797745.6021004089,0.37856,100000,0,724673,7558.124739257405,0,0.0,0,0.0,29722,309.43888193575305,0,0.0,32773,339.06967042136006,1615413,0,58036,0,0,6378,0,0,67,0.6987901543596162,0,0.0,0,0.0,0,0.0,0.06183,0.1633294590025359,0.3137635452045932,0.0194,0.3381672323356988,0.6618327676643011,24.387531963111687,4.330491851124703,0.3209598031173092,0.23318293683347,0.2223133716160787,0.2235438884331419,11.01385245492289,5.625091518636595,20.61830367167351,12276.23340647782,55.3803697054767,13.68644710327242,17.632173249559447,12.077941640500772,11.983807712144054,0.5691140278917145,0.7968337730870713,0.7015974440894569,0.5885608856088561,0.1220183486238532,0.7337461300309598,0.9131403118040088,0.8819095477386935,0.7045454545454546,0.1422222222222222,0.509765625,0.7209302325581395,0.6401028277634961,0.5590277777777778,0.1167630057803468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023590397796879,0.0042557072073441,0.0061973202422127,0.0083562631359847,0.0107135596665989,0.0129453790492473,0.0149965361261665,0.0169717986638788,0.0191233676730343,0.0212024248867806,0.0233705610777278,0.025547969079986,0.0278431090615917,0.0298419948154548,0.0318641342992879,0.0338141306929057,0.0360401365470156,0.0382857438980152,0.0402018922202951,0.0418990344597969,0.0566114453120927,0.0702964193545016,0.0842008252518693,0.0968897009408602,0.1093297378150906,0.1250462175552762,0.1373251377702416,0.1489472564866014,0.1598864206492383,0.1706009733925087,0.1838251130734439,0.1966984346772536,0.2081607358361329,0.2187564914122033,0.2285453505762294,0.2390397237379495,0.2493112794030716,0.2583267738670864,0.266090330485688,0.2737522342912141,0.2806916026293862,0.2876866195535171,0.2938737799677817,0.300082756635523,0.3055656867751112,0.3109049868636907,0.3158389295379372,0.3201156967928543,0.3237813424700203,0.3274785736959052,0.3269484986645803,0.3261840436676407,0.3256919560985244,0.3244170393851231,0.3239891621508962,0.3223881055038129,0.3208909053413075,0.321200059213448,0.322002567394095,0.3226890155644109,0.3241185296324081,0.3250588444725755,0.3244802483898714,0.3253664540673604,0.3255522934013573,0.3262034868592245,0.3261828217018976,0.329559708981435,0.3335082747279661,0.3361860612544078,0.3391767598579364,0.342760479991542,0.3460064098535788,0.346771097289411,0.347830224590788,0.3532451923076923,0.3538652978690309,0.3632296115517592,0.3693495038588754,0.3710667689946277,0.0,2.186296541171319,56.639880599899655,186.1312510932694,266.28349702235926,fqhc4_80Compliance_implementation_low_initial_treat_cost,54 -100000,95728,44194,418.5922614073208,6158,62.94918936988133,4788,49.37949189369882,1944,19.941918769847906,77.38965647392791,79.75490076804346,63.34469261111818,65.09313647508247,77.14673198766873,79.51487720996248,63.254290426719535,65.00661919311781,0.2429244862591844,240.02355808097772,0.0904021843986484,86.51728196466024,160.09422,112.09765465778584,167238.42553902726,117100.00462192664,349.76866,225.93371317236247,364655.9418351997,235297.39920055887,355.38248,172.29883584488363,366610.9393280963,176478.54009426152,3152.06133,1444.9110324104345,3256104.8387096776,1473039.1166521024,1187.66052,528.0734821167613,1222844.7476182517,534029.1746361121,1899.90364,797.8758293058019,1951021.0596690625,804350.8399468069,0.3792,100000,0,727701,7601.7466154103295,0,0.0,0,0.0,29839,311.0061841885342,0,0.0,32616,336.2234664883838,1612996,0,57882,0,0,6306,0,0,54,0.5432057496239345,0,0.0,1,0.0104462644158448,0,0.0,0.06158,0.1623945147679324,0.315686911334849,0.01944,0.3328175769766362,0.6671824230233637,24.81792743222264,4.439851329723475,0.3324979114452798,0.2205513784461152,0.2224310776942356,0.2245196324143692,11.315742631833816,5.844615996098972,20.72854140167295,12248.876039781546,54.02315909988002,12.523290819166684,17.880147131849135,11.861468964175426,11.758252184688777,0.5570175438596491,0.7509469696969697,0.6915829145728644,0.5981220657276995,0.1265116279069767,0.7235708692247454,0.8994708994708994,0.8561151079136691,0.7333333333333333,0.1762114537444934,0.4964397607519225,0.668141592920354,0.6331914893617021,0.5555555555555556,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0043997039830499,0.0067688935345396,0.0091025458682975,0.0114132259147364,0.0134617734511832,0.0155891559017546,0.0177315462275803,0.0197788044811513,0.0219669983212545,0.0240782311879209,0.0261790854772806,0.028168145322957,0.0299551033857813,0.0320374629960082,0.0342197463749392,0.0364916640778709,0.03846034133942,0.0402448784442527,0.0421268703371816,0.0571431554548586,0.0704843048388616,0.0835597897365411,0.0958958874709366,0.1083541686447025,0.1234544396848061,0.1367610236387556,0.1476447925757221,0.1593972275028301,0.1692406692406692,0.1821598165157372,0.1953266983989615,0.2074435697821076,0.2172786318805082,0.2273497502255672,0.238328313253012,0.2485976514146156,0.2575766088705599,0.2657610667634252,0.2725254859784213,0.279315009886336,0.2849594968965154,0.2912617916164267,0.297072732714756,0.3029784445091756,0.308685156904281,0.3144326028219754,0.3191305343220177,0.3237745224908122,0.3283568310407132,0.3273287413227143,0.3266585983056442,0.3263393422552454,0.3246715749963909,0.3240570513580832,0.3225648705645038,0.3206057447850048,0.3207053358196748,0.3212628931672586,0.3218995485728504,0.3229940945248607,0.3246714926430089,0.3244290715119186,0.3244878439397646,0.3264373863962498,0.3279394222291374,0.3292810790898013,0.3325176470588235,0.3359300979050426,0.3410239070766538,0.3409495955764748,0.3428556144011127,0.344999684124076,0.3456538170823885,0.345667534399405,0.3472842699271102,0.3504325390802853,0.3600320384461353,0.3629207383279044,0.3623574144486692,0.0,2.4425824026841787,55.39780455262002,178.8426667450302,261.4669375696352,fqhc4_80Compliance_implementation_low_initial_treat_cost,55 -100000,95750,44237,418.30809399477806,6063,61.92167101827676,4732,48.72062663185378,1839,18.736292428198432,77.34687979821054,79.70514982948741,63.33382307926016,65.08084970043153,77.11915281963442,79.48148045496833,63.24773544187397,64.99906561949686,0.2277269785761149,223.6693745190763,0.0860876373861856,81.78408093466771,159.5154,111.70286506253872,166595.7180156658,116660.95567889164,346.21229,223.8310130633277,360856.4386422976,233045.45375168265,352.18491,170.73811141024865,363218.7154046998,174862.85891407923,3082.25553,1414.3653595882618,3176578.7154047,1435251.860210416,1103.48272,484.6498511295522,1133896.281984334,488319.1125550773,1800.2118,764.0629150264683,1837324.323759791,763095.8186439765,0.38042,100000,0,725070,7572.532637075718,0,0.0,0,0.0,29539,307.7597911227154,0,0.0,32321,332.9921671018277,1618619,0,58100,0,0,6405,0,0,61,0.6266318537859008,0,0.0,1,0.010443864229765,0,0.0,0.06063,0.1593764786288838,0.3033151904997526,0.01839,0.3343799058084772,0.6656200941915228,24.60033014237732,4.36383096968838,0.31614539306847,0.2311918850380389,0.2349957734573119,0.2176669484361792,11.08603187789798,5.768628911815177,19.57226226451761,12321.950533142004,53.58681807788669,13.167107969364112,17.005843681957817,12.224877138242062,11.188989288322704,0.5644547759932376,0.7842778793418648,0.7012032085561497,0.5809352517985612,0.1145631067961165,0.7215777262180975,0.9203980099502488,0.8509615384615384,0.7049808429118773,0.116822429906542,0.5053794707763885,0.7052023121387283,0.6435185185185185,0.5428907168037603,0.1139705882352941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0047965764815641,0.0070964467005076,0.0094819964023293,0.0116891836900789,0.0139406529398586,0.0162299928636966,0.0182931808901592,0.0204350759542843,0.0227710201908506,0.0249341275618483,0.0267781052026326,0.0287324407149174,0.0306666941365528,0.0328290125495376,0.0347739794705341,0.0367398080168994,0.0386630289324356,0.0408220545125678,0.042642924086223,0.0574500287041386,0.0712395259067086,0.0845845740888311,0.0972922973427514,0.1091834691231805,0.1246393659180977,0.1369861561618859,0.1486081279373923,0.1596982919569415,0.1697161221210498,0.1831395036094286,0.196106619395564,0.2074173883751507,0.2181222349664099,0.228008483423259,0.2382854866198897,0.2477834654889758,0.2580108385239819,0.2666916346055633,0.2745080070562899,0.2818640498067443,0.2888935692221286,0.2956926245516849,0.3014925373134328,0.3067247805553195,0.3109771105094757,0.3153615211408556,0.3201957917487763,0.3248246953191709,0.3280667307971062,0.3278695137693632,0.3278118384515987,0.3266485718705613,0.3257235978713892,0.325458967286532,0.3235474006116208,0.3216611862906285,0.3218726419736885,0.3234059257236483,0.3237543453070683,0.3245159479936395,0.3259929295123733,0.325866688996818,0.325657306385262,0.3275837182448037,0.3280902986439526,0.3307264164407021,0.3328494335216335,0.3353949957829631,0.3392665580674639,0.3411146642302421,0.3434424048949188,0.3452674117572772,0.3510945576162967,0.353649430651484,0.3580523461447771,0.3552671755725191,0.3580171358629131,0.3609085810431856,0.3681078936929789,0.0,2.638161644196304,56.23305303934318,170.00708258222812,263.0184754563599,fqhc4_80Compliance_implementation_low_initial_treat_cost,56 -100000,95759,44446,419.6994538372372,6138,63.01235393017889,4838,50.00052214413267,1880,19.277561378042797,77.36211040614715,79.7214238527834,63.32787542470121,65.07460095943395,77.13232709867988,79.4940800275889,63.24351885678969,64.99354326428102,0.2297833074672723,227.34382519450944,0.0843565679115201,81.0576951529356,158.44444,110.95809256160985,165461.66939922096,115872.23400579565,348.94362,224.534617629004,363891.2478200482,233973.2128978158,362.21211,174.45581388270932,375002.24521977047,179719.01819468391,3151.15468,1426.106780571345,3256584.509027872,1455225.9649757126,1169.1981,514.0865145060177,1205127.0481103605,521001.7068954543,1839.09078,759.1526853030035,1887401.4557378415,763938.7428635544,0.38142,100000,0,720202,7520.984972691862,0,0.0,0,0.0,29710,309.72545661504404,0,0.0,33180,343.2157812842657,1620492,0,58202,0,0,6359,0,0,62,0.6474587245063127,0,0.0,0,0.0,0,0.0,0.06138,0.1609249646059462,0.3062886933854676,0.0188,0.3243663504898149,0.675633649510185,24.619559855139933,4.372273613422095,0.3164530797850351,0.2385283174865647,0.2246796196775527,0.2203389830508474,11.396193416044088,6.0794833406492605,19.698771544873065,12386.3777703972,54.51648230504644,13.677675290854218,17.251816062132416,12.09453798366532,11.492452968394492,0.5663497312939231,0.7755632582322357,0.7080339647289353,0.5869365225390984,0.1153846153846153,0.7365028203062046,0.909313725490196,0.8664850136239782,0.7470817120622568,0.1578947368421052,0.5076452599388379,0.7024128686327078,0.6580756013745704,0.5373493975903615,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025632452914298,0.0047761981057456,0.0072479951273982,0.0094292652692116,0.0116677686791109,0.0141055933515297,0.0163563314502477,0.0186330964632851,0.0206950849173321,0.0227430982223314,0.0249610304372795,0.026788832508166,0.0289088701878562,0.0310793264771954,0.0329851793749742,0.0353476350478159,0.037329660771238,0.0394355968252321,0.0415466971571124,0.0437359386717773,0.0585374000542786,0.0722371008913252,0.0847551831538324,0.0973780802036115,0.1098219559530841,0.1258751612834993,0.1389563686125579,0.151069333702375,0.1614526572216167,0.1715100692731679,0.1844029681963576,0.1963680832873391,0.2075001631889292,0.2175791719083301,0.227826508039576,0.2384835257361902,0.2486628926182739,0.2574366590162459,0.266041203430594,0.2747291757323134,0.2822056066112641,0.2897245452950465,0.2954206602768903,0.3015262141975086,0.307015093927214,0.3129251700680272,0.3169944048766444,0.3219523985192912,0.3272284852642342,0.331702427895077,0.3308196765462355,0.3292422845663809,0.3283508564511815,0.3274836063205939,0.3271885296998842,0.3253347616497054,0.3233656097715334,0.3242729269812125,0.3252999727297518,0.3266276192341243,0.3275746143214673,0.3294062112778553,0.3299889447445819,0.3304967698819336,0.3309855780748407,0.333471782358133,0.3343259032386138,0.3358675927664101,0.3389055629231521,0.340605152077005,0.3439790102234687,0.3428661715910886,0.3463054495401363,0.3489037896481579,0.3524216789067584,0.3573623256913259,0.3587088915956151,0.3627665935818218,0.3673801137903007,0.3684210526315789,0.0,1.985741176027349,54.52623314084124,183.6793984025172,267.7802480924961,fqhc4_80Compliance_implementation_low_initial_treat_cost,57 -100000,95749,44733,421.89474563703016,6203,63.48891372233653,4891,50.381727224305216,1999,20.365747945148254,77.32840490063373,79.68862078176461,63.31625382636724,65.06456022748421,77.07862773457573,79.44581994349188,63.22282999747539,64.9779114238623,0.2497771660579957,242.80083827272847,0.0934238288918507,86.6488036219124,158.96848,111.4362995092382,166026.25614888928,116383.77373052272,348.57297,225.4973881693695,363359.6382207647,234819.82910460632,362.59301,175.8070868800989,375020.79395085067,180729.40302130688,3220.02851,1484.580252655811,3316716.602784363,1504219.0755577695,1180.49362,529.1146394106395,1213812.300911759,533570.7149471781,1956.5439,825.2832651595098,1994785.031697459,818823.3755151327,0.38402,100000,0,722584,7546.648006767695,0,0.0,0,0.0,29682,309.2773814870129,0,0.0,33375,344.8808864844541,1614663,0,57983,0,0,6298,0,0,50,0.5221986652602116,0,0.0,0,0.0,0,0.0,0.06203,0.1615280454143013,0.3222634209253587,0.01999,0.3441488543749039,0.655851145625096,24.456920719469174,4.31003290728666,0.3101615211613167,0.23860151298303,0.2267429973420568,0.2244939685135964,11.210043449815116,5.912859312056954,21.402000607836708,12479.93161082131,55.99094247758901,14.21500704227475,17.22758960484049,12.344023156697052,12.204322673776726,0.568186464935596,0.7960582690659811,0.7099538562953197,0.5653742110009017,0.1329690346083788,0.7383381924198251,0.9249448123620309,0.8704156479217604,0.724907063197026,0.1784232365145228,0.5018471156578573,0.7142857142857143,0.6507220216606499,0.5142857142857142,0.1201866977829638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813625447138,0.0047364043895413,0.0072391666328229,0.009573365312303,0.0119326158165652,0.0142804758800521,0.0167849567629303,0.0190407154816841,0.0214479952564967,0.0236247876021045,0.0256368202552406,0.0276816608996539,0.0298140606359784,0.0320344447534583,0.0340863355383329,0.0362927817574761,0.0384356593480533,0.0401161584733457,0.042286747588959,0.0444025497875177,0.0592110070673222,0.0731380753138075,0.0863893287471554,0.0992914511584878,0.1113265607216625,0.1268696948235219,0.140372460017817,0.1526369006439253,0.1631506424977835,0.1735708234587627,0.1877531236535976,0.1997900819113366,0.2113308961135048,0.2216134042041253,0.2317023501568605,0.2418750969228383,0.2514899220999531,0.2601672688796587,0.2688551767992188,0.2764343181974465,0.2836409929980903,0.2906387806903651,0.2966761003682696,0.302864136499442,0.3087818696883853,0.3145964877663773,0.3195465148360882,0.323991588606385,0.3277233504184779,0.3322366682522065,0.3307613446285005,0.3302515913913307,0.3289390111363604,0.3278278350664564,0.3276885760628562,0.3253280135041816,0.3241353061515771,0.3243198762364016,0.3253007924147255,0.3258901413490785,0.3264238013056201,0.3275517671024266,0.3280537305937984,0.3287511753906775,0.3294174289841117,0.3310898940887984,0.3325246874821622,0.3369776939993716,0.3404180818656115,0.3446376926429222,0.3481144934120854,0.3506706093568487,0.3510605017831446,0.3522649928155487,0.3597304128053917,0.3614443660315219,0.3657942787583688,0.3646363821552251,0.3756232686980609,0.3720203204376709,0.0,2.690376464595494,59.95282049860171,182.53693992736805,262.88172853529056,fqhc4_80Compliance_implementation_low_initial_treat_cost,58 -100000,95731,44087,417.2316177622714,6072,62.247338897535805,4770,49.242147266820574,1854,18.95937575080173,77.31464774318667,79.6800870832102,63.30648041847581,65.05591166938225,77.08094283763803,79.45044302958394,63.220415832401606,64.97467602620682,0.2337049055486346,229.6440536262594,0.086064586074201,81.23564317543241,159.14338,111.4253713766764,166240.1729847176,116394.24154837658,342.98006,221.03040391213275,357641.76703471184,230259.5473001813,351.14343,169.43863361311014,363480.3564153722,174557.53395059268,3100.9334,1404.6741156690532,3198178.667307351,1426745.5991369963,1111.51236,489.7401597145242,1143859.711065381,494843.1425302028,1811.9852,752.4683749971944,1853437.883235316,751690.7127536271,0.37801,100000,0,723379,7556.371499305345,0,0.0,0,0.0,29248,304.8855647595868,0,0.0,32146,332.56729794946256,1620250,0,58074,0,0,6290,0,0,48,0.5014049785335993,0,0.0,0,0.0,0,0.0,0.06072,0.1606306711462659,0.3053359683794466,0.01854,0.3364294710327456,0.6635705289672544,24.67855912988794,4.372553783230146,0.3274633123689727,0.2333333333333333,0.2257861635220125,0.2134171907756813,10.93135937007828,5.56971355435712,19.55067068549637,12269.701222821895,53.84017420448793,13.225030831829717,17.739951780645058,11.808716526094049,11.06647506591911,0.5557651991614255,0.7735849056603774,0.7029449423815621,0.5496750232126276,0.0982318271119842,0.7238493723849372,0.919889502762431,0.8478802992518704,0.7297297297297297,0.1428571428571428,0.4995804195804196,0.7030625832223701,0.652885443583118,0.5029239766081871,0.0866336633663366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0044914884772536,0.0066180799447816,0.0088710496900721,0.0111704562795666,0.0131219691103956,0.0152620356862305,0.017520573400584,0.0194733506429783,0.0217435813439253,0.0236125208903653,0.0257107946319475,0.0277729203740086,0.0299842350928893,0.0323183319570602,0.0343847243329301,0.0364931756518857,0.0385928501011778,0.0403776763338775,0.0423616682120792,0.0572093848868655,0.0708124856072183,0.0838780070711415,0.0966703826010138,0.1088531505404692,0.124322951929587,0.1363477153319535,0.1480274716498962,0.1592303580972741,0.169978967249002,0.1830004744856144,0.1962554039851343,0.2082075975292233,0.2180606844256457,0.2277568300588741,0.2375760536483545,0.2471534348925128,0.2560673042223024,0.264884845038385,0.2733902178531644,0.2809822494811654,0.287835462322747,0.2943191786992911,0.2999147832975263,0.3052972000340421,0.3103941591436042,0.3145309625996321,0.3184147939003141,0.3236713101289563,0.3277379572045957,0.3275998870345217,0.3267928054192945,0.3261651768145274,0.3252747886795719,0.3243355605048255,0.3225534910771679,0.3204223122704824,0.3207212533254507,0.3217306607884349,0.3232056519955041,0.3234131815031933,0.3247102035980173,0.3261723647914403,0.325534192800107,0.3255590517137847,0.3266373500559444,0.3289676425269646,0.3330713859114199,0.3359840257829468,0.3387679003530485,0.3426512836882667,0.3437649688647613,0.3453957792002028,0.3476859313838361,0.35,0.3505609930771067,0.3547094188376753,0.3588684699566384,0.3572025633881304,0.3666274970622796,0.0,2.1491226585314176,52.40123684635006,183.93328344948097,266.4535290312992,fqhc4_80Compliance_implementation_low_initial_treat_cost,59 -100000,95806,44377,419.5666242197775,6163,63.075381500114815,4812,49.54804500761957,1899,19.393357409765567,77.3504688262772,79.68467092244849,63.33176974345843,65.0609521793205,77.11818342151419,79.455723417102,63.24438482592184,64.97774130223068,0.2322854047630045,228.94750534648267,0.0873849175365961,83.21087708981167,159.33126,111.6457787212313,166306.1394902198,116533.1803031452,351.11185,226.5391491761938,365808.18529110914,235782.82568915468,359.52491,173.90091845738075,371448.844540008,178467.21122093344,3147.91374,1431.1077250679684,3243633.050122122,1451708.71430982,1151.64565,506.5841579852688,1182663.5596935472,509388.8371512817,1856.8668,780.6817896686812,1898586.7273448429,780558.0551343987,0.3802,100000,0,724233,7559.369976828174,0,0.0,0,0.0,29859,310.95129741352315,0,0.0,32885,339.45681898837233,1614947,0,58006,0,0,6358,0,0,67,0.6888921361918878,0,0.0,0,0.0,0,0.0,0.06163,0.1620988953182535,0.308129157877657,0.01899,0.3405372028403828,0.6594627971596172,24.38431526523905,4.398617692559317,0.3273067331670823,0.2325436408977556,0.2150872817955112,0.2250623441396508,11.108597349865176,5.670240980808595,20.14301702245291,12277.634846321907,54.37293348056416,13.536083674939778,17.703000208382324,11.46773410754088,11.666115489701182,0.5579800498753117,0.7953529937444147,0.6926984126984127,0.5497584541062802,0.1246537396121883,0.7086302454473475,0.8947368421052632,0.850356294536817,0.6428571428571429,0.1643835616438356,0.5043674274443505,0.7402777777777778,0.6351819757365684,0.5240443896424167,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0047656226235259,0.0070638384248452,0.0092762870467268,0.0115751571495412,0.0136175673748752,0.0158482484320024,0.0181561963891838,0.020387714203918,0.0221423745470179,0.0242099218637845,0.0262568799802842,0.0283730974907445,0.0305255460921327,0.0326526402640264,0.0346769443784292,0.036697342677612,0.0386159255686591,0.0403949077682514,0.0426300502815977,0.0576465679115376,0.0721313189398295,0.0852510898725687,0.0974605209241728,0.1092544987146529,0.1250303830911492,0.1373420137416235,0.1486500861647129,0.1596079729253632,0.1696796939464406,0.1828307612836572,0.1947129419396691,0.2060232717316906,0.2169702004853626,0.2269961600668962,0.2374641238461453,0.2473405145950773,0.2562382522763852,0.2649193136264011,0.2723211217265791,0.2802513859793289,0.2869792032189393,0.294083540409419,0.3000023964723926,0.3049718653913931,0.3102703902896334,0.314969804796151,0.3192543893178401,0.3241687730896364,0.3284002167047661,0.3279685940155951,0.3274000744529774,0.32641112819717,0.3244838611669729,0.3231773505226688,0.3212704346627036,0.3195544711325179,0.3202030323439065,0.3213394840252861,0.321410075539761,0.3221791776617446,0.3235247681073613,0.324994247704311,0.3268281790778162,0.3294162881791748,0.3312670920692798,0.3325565533704672,0.3336783664251435,0.3352302482281883,0.3379517833814972,0.3415054153260525,0.3441948750395444,0.3459567554055743,0.3440373888135082,0.3438901345291479,0.3474437148217636,0.3465271458902032,0.3514970059880239,0.3601294847585649,0.355631141345427,0.0,2.618653674423099,54.75386548196195,181.10589264547173,265.309472311697,fqhc4_80Compliance_implementation_low_initial_treat_cost,60 -100000,95709,44687,422.6979698878893,6102,62.44971737245191,4773,49.20122454523608,1816,18.51445527588837,77.30949638025908,79.66876493456438,63.31695901961641,65.05921813388798,77.07648579847923,79.44012413215091,63.22944332961871,64.97620177920577,0.2330105817798511,228.64080241346585,0.0875156899977014,83.01635468221491,159.3922,111.69255697578362,166538.36107367123,116700.16087910606,348.49909,225.15660341076116,363478.29357740656,234605.9785088062,364.20837,176.34095598513537,376203.6799047112,180926.6063773198,3118.76632,1437.56350234438,3217815.0330689903,1461246.735105306,1143.59021,509.19777218845,1178571.461409063,515736.78775083815,1777.18238,760.425512971541,1814653.8570040436,759143.2121153673,0.38201,100000,0,724510,7569.925503348692,0,0.0,0,0.0,29609,308.6857035388521,0,0.0,33397,344.6175385804888,1612662,0,57924,0,0,6367,0,0,62,0.6477969678922567,0,0.0,0,0.0,0,0.0,0.06102,0.1597340383759587,0.2976073418551295,0.01816,0.3379224030037547,0.6620775969962454,24.60014869011244,4.248037721807309,0.322438717787555,0.2392625183322857,0.2212445003142677,0.2170542635658914,11.264474029323164,5.955941974894892,19.51221226657642,12349.639316224224,54.580517297315815,13.669574815404074,17.52115118600862,11.938774388765404,11.451016907137722,0.5700817096165933,0.776707530647986,0.6926575698505523,0.59375,0.1361003861003861,0.7300079176563737,0.9311224489795918,0.8586118251928021,0.7581967213114754,0.1596638655462184,0.5125356125356125,0.696,0.6365217391304347,0.5443349753694581,0.1290726817042606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483061747399,0.0047846889952153,0.0070712604496388,0.0092934915088973,0.0115386570426472,0.0138935540016489,0.0159710543749681,0.0183122888319536,0.020410040472589,0.0225870168148928,0.024692750028188,0.0268191759161336,0.029110839186007,0.0310495041347847,0.033084443711068,0.035221672332028,0.0370098216780683,0.0391396332863187,0.0412301488317951,0.0433451045345167,0.0579579987259683,0.0712805375871381,0.0848568761341347,0.0976643425771103,0.1098245169999156,0.1251652617216834,0.1376708549112827,0.1497045515038594,0.1613123791412485,0.1717659170607727,0.1850730508985907,0.1970700967972455,0.208449416681177,0.2193875317397776,0.2297333010328804,0.2403161792421454,0.2498408052461653,0.2586980035152553,0.2672332496335768,0.274854404548998,0.281914708845223,0.2893181844774932,0.295244636006252,0.3017500929624431,0.3080718469727536,0.3130850919496281,0.3176391079071863,0.3221974664205232,0.326195722618276,0.3298657008406916,0.3284238353429904,0.3278507865663829,0.3271080768471239,0.324902751869044,0.3232506583743732,0.3209026201141314,0.3199676175055955,0.3202652013687813,0.3208688055636444,0.3214567211235311,0.3222721208590917,0.3231639539499801,0.323956690844108,0.3240131948028633,0.32537746104602,0.3264490861618799,0.3280359648369269,0.331360201511335,0.3349726008149501,0.3367387344579076,0.3420023642811676,0.3451369717562115,0.3483266230498238,0.3502932439637444,0.3542039355992844,0.3555292726197516,0.3568154034229829,0.3637108335039934,0.3708390646492435,0.3728423475258918,0.0,2.6030100346774545,54.863082339175286,194.18380396790204,249.4294719454836,fqhc4_80Compliance_implementation_low_initial_treat_cost,61 -100000,95725,44233,418.5844868111779,6123,62.64821102115435,4818,49.64220423086968,1916,19.472447114129015,77.40440741590693,79.7603541894622,63.3594678928421,65.09868381619215,77.16088340473193,79.52350751073918,63.26944465229293,65.01464189629263,0.2435240111749976,236.8466787230261,0.090023240549165,84.04191989951926,160.6022,112.44821200212414,167774.5625489684,117470.0569361443,349.53437,225.5329878532283,364444.5129276573,234905.3307424688,361.74857,175.14282623028353,374233.3559676156,180062.57334068962,3137.75472,1445.5767549509687,3230252.034473753,1462502.789188788,1162.8845,521.1477249421223,1190783.5048315488,520387.291660613,1873.54052,785.662024586968,1906067.0044398017,776951.2229620677,0.37884,100000,0,730010,7626.116479498564,0,0.0,0,0.0,29744,310.0130582397493,0,0.0,33080,341.8333768607992,1612928,0,57850,0,0,6413,0,0,68,0.7103682423609298,0,0.0,0,0.0,0,0.0,0.06123,0.1616249604054482,0.3129185040013065,0.01916,0.3262698660018697,0.6737301339981303,24.58533729657944,4.316450848192061,0.317766708177667,0.2397260273972602,0.2239518472395184,0.2185554171855541,11.453968670761135,6.015048669404439,20.36190044324405,12324.315259823188,54.89747513551736,13.715266573924271,17.54531470382919,12.082988974208574,11.553904883555326,0.5620589456205894,0.7670995670995671,0.7041149575440888,0.5644114921223355,0.1282051282051282,0.7564885496183206,0.9158653846153846,0.8957345971563981,0.7354085603112841,0.2,0.4894526795895096,0.6833558863328822,0.6311992786293958,0.5109489051094891,0.1097852028639618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022578391568033,0.0044894856853306,0.0065737415545681,0.0084801706190016,0.0109910221345561,0.013426302931596,0.0157859872611464,0.0178157811495566,0.0200159391858754,0.0218777180864671,0.0241977636797819,0.0262539386039637,0.0284051772881948,0.0307243869027387,0.0329556945046327,0.0349703842297315,0.0370316674605969,0.0389929669508931,0.0409569437660434,0.0425376787592829,0.0574134204783929,0.0708073884150489,0.0844749816427147,0.0977215136635578,0.1098824645548938,0.1250211505922165,0.138199219081572,0.1500181001256361,0.1614598914483525,0.1718161831733605,0.1853890229191797,0.1976409479493561,0.2084711103376261,0.2184885895178838,0.2282234373796609,0.2396713433067204,0.2491883388559761,0.2587162564788685,0.2669138826517883,0.2742806784627006,0.2811911392551335,0.2888276699312454,0.2957816318579473,0.3016929307893574,0.3069600707270107,0.3118456623248956,0.3165151363772605,0.3211325879202467,0.3254291138750048,0.3295225816636628,0.3292889163288862,0.3270848485680174,0.326276305807648,0.3254845449960372,0.3250488773031578,0.3223264196474936,0.3202875651761732,0.3208662061740924,0.3216518731792084,0.3212619734358864,0.3219482997269088,0.3229674997530376,0.3236260172806962,0.3229975890704527,0.3242743619907329,0.3268459173570944,0.328692390748423,0.3312002007654182,0.3344900105152471,0.3383297644539614,0.3393181818181818,0.3415994052676295,0.3423134890730972,0.3453401076818078,0.3476963253124417,0.3497768381489312,0.3531655225019069,0.3543434343434343,0.3604456824512534,0.3556967050416832,0.0,2.67729309974102,56.88370188873113,188.36331687495385,252.79280585547477,fqhc4_80Compliance_implementation_low_initial_treat_cost,62 -100000,95742,44100,415.564746924025,6018,61.54038979758099,4762,49.07981867936746,1869,19.07208957406363,77.33232137485312,79.69694164873508,63.31916690730778,65.07065356156286,77.10159403922387,79.47108469368406,63.232758758763175,64.9891000503964,0.230727335629254,225.85695505101452,0.0864081485446064,81.55351116646159,159.31058,111.5538311898612,166395.7093020827,116515.04166391052,346.67675,224.0382359757302,361416.7136679827,233324.01242477723,353.71451,171.14906278195045,365278.6238014664,175559.4546513032,3129.54356,1436.2905534347635,3229005.4312631865,1460447.2158872436,1122.05813,492.579223294836,1156648.868834994,499178.601613068,1826.97878,769.587785858728,1866807.5034989868,768250.9294571158,0.37877,100000,0,724139,7563.441331912849,0,0.0,0,0.0,29576,308.1928516220676,0,0.0,32508,335.4118359758518,1618217,0,58033,0,0,6172,0,0,49,0.5117921079568005,0,0.0,0,0.0,0,0.0,0.06018,0.1588826992634052,0.310568295114656,0.01869,0.3303755347805419,0.6696244652194581,24.67984358193789,4.3837894287820935,0.3254934901301974,0.2286854262914741,0.2286854262914741,0.2171356572868542,11.438154057189372,6.020476437533549,19.885539064974576,12291.46847862665,53.95158793467215,12.992541450405549,17.459978267682136,12.142737929819218,11.356330286765248,0.5730785384292314,0.7915518824609734,0.7135483870967742,0.5904499540863177,0.1141199226305609,0.7285491419656787,0.918918918918919,0.8737623762376238,0.7154471544715447,0.1377777777777777,0.5158045977011494,0.7155425219941349,0.6570680628272252,0.5539739027283511,0.107540173053152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0045339743784803,0.0066404028917228,0.0092792096918448,0.0115467567347603,0.0140687238312568,0.0163783960186016,0.0188159144044349,0.0210725423035632,0.0231674856674856,0.025454396342276,0.0274113238540116,0.029758660757437,0.031680313095422,0.0338199638896053,0.0360295181594559,0.0379390324718356,0.0400767714493204,0.0421299856587616,0.0441697217130478,0.0583648245192809,0.0716617490112373,0.0850517085859327,0.0971524111968706,0.1092377608367865,0.1243561130913975,0.1368637728521863,0.1495598675877337,0.160625413845398,0.1712649717453543,0.184047824213701,0.1963184208817609,0.2080853795189242,0.2181569592562209,0.2282060875497942,0.2382597526270914,0.2474363695198563,0.2562305208321613,0.2642072534156416,0.2716965574108431,0.2787769367867972,0.2862223886184949,0.2918338125835729,0.2978835598379712,0.3037531883881939,0.3098102045846684,0.3151519701690504,0.3189563094450943,0.3228805220363561,0.3268302334784329,0.3261056825217368,0.3255842744542416,0.3254684442442245,0.324791013961278,0.3232176262731241,0.3220707279376884,0.3204675398723451,0.3202453585252247,0.3205359882709945,0.3214808206958073,0.3229145182157388,0.3243842120882382,0.3255823705784916,0.3270944342452872,0.3276721832767218,0.3292829204693611,0.3291301377661391,0.3314426167517489,0.3332513526807673,0.3350201219269235,0.335975581978042,0.3377260844048445,0.3417025044270174,0.348223814605885,0.353874883286648,0.3555295494441193,0.3557793476627086,0.3545634920634921,0.3604651162790697,0.3686214775323686,0.0,2.4426851334913184,55.88377153076173,174.1329626889144,264.9131989200447,fqhc4_80Compliance_implementation_low_initial_treat_cost,63 -100000,95734,44642,422.221990097562,6262,64.19871727912759,4945,51.18348758017006,1980,20.368938934965637,77.41699606751023,79.76995544115466,63.36600846061516,65.10048181609984,77.1657429365702,79.51962235865587,63.27276534409851,65.00989908365753,0.2512531309400287,250.3330824987984,0.0932431165166534,90.5827324423143,159.60032,111.78828666551976,166712.26523492177,116769.68126843104,351.57992,227.4168480690818,366764.29481688846,237068.39583542084,365.26434,177.03711040576718,378622.16140556126,182616.4217230545,3278.92816,1499.981369064549,3396295.8092213846,1538077.4218820364,1194.6807,526.2173263241145,1236318.7164434786,538067.9657426978,1945.92496,819.3853289774372,2003595.5251008,830140.9775425626,0.38219,100000,0,725456,7577.83023795099,0,0.0,0,0.0,29886,311.6656569243947,0,0.0,33434,346.3450811623875,1613764,0,57917,0,0,6280,0,0,73,0.7625295088474314,0,0.0,0,0.0,0,0.0,0.06262,0.1638452078808969,0.316192909613542,0.0198,0.3294674195025179,0.6705325804974821,24.44840073851394,4.364245389008614,0.3120323559150657,0.2343781597573306,0.2153690596562184,0.2382204246713852,11.122874522267646,5.814569299638224,21.088540686993984,12427.587031727644,55.963357104127205,13.797852234829978,17.520730367322066,11.888480111923926,12.756294390051243,0.5494438827098079,0.7782571182053495,0.6986390149060272,0.5699530516431925,0.1103565365025466,0.721048798252003,0.916083916083916,0.8796296296296297,0.7186311787072244,0.1124497991967871,0.4834826427771556,0.6972602739726027,0.6282628262826283,0.5211970074812967,0.1097954790096878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048830400470068,0.0070188250567997,0.0091694676022299,0.0112351553603383,0.0136912396425008,0.0159721939087536,0.0180342927127985,0.0204897091585423,0.0227730774346015,0.0250440627946058,0.0270841672054763,0.0291843993503155,0.0312963420662382,0.0333109815855985,0.035279164212419,0.0373338302894769,0.039287677484261,0.0411877195535138,0.0433061432842662,0.0582222175815225,0.072341850294013,0.0854717891688873,0.0980280801388231,0.1105333656777024,0.1259849181922983,0.1381881828789646,0.1503826625650632,0.1612431092688346,0.1718195369387339,0.1848166693587465,0.1969142881873066,0.2083736399900003,0.2190896479404022,0.2289208253675258,0.2394171405810891,0.249615444635174,0.2582385469585937,0.2668700178026738,0.2751702432045779,0.2823462756978008,0.2899848077597289,0.2958430871816698,0.3019071220773623,0.3068456245525041,0.3120897525892538,0.3173100965144771,0.3223973560442354,0.3270422353017269,0.3319136030381349,0.3317052167009782,0.3307536873359084,0.3298173470968469,0.3294486777229942,0.3293355328666756,0.3273634582414891,0.3261704245603501,0.3258438006648871,0.3273706088793485,0.3290283559255701,0.3307636309334926,0.330781191568091,0.3327553791518696,0.3331107698470988,0.3347714580187436,0.3349802371541502,0.3365534877113226,0.3405094186119282,0.3452830188679245,0.3484525501342176,0.3508724346804086,0.3556741899677573,0.3571607411116675,0.3605084874781152,0.3636873073690109,0.3670811825434068,0.3715582450832073,0.3713147410358566,0.3758461955050095,0.3674924924924925,0.0,1.8236803767674932,60.667375030786346,177.8567897973886,270.0446187839433,fqhc4_80Compliance_implementation_low_initial_treat_cost,64 -100000,95686,44391,421.3678072027256,6343,65.12969504420708,4959,51.14645820705223,1920,19.68940074828084,77.3508434030137,79.7426230465851,63.31502979323547,65.0833310788456,77.11435125498998,79.50764098956574,63.22869930710615,65.00020562301492,0.2364921480237143,234.9820570193515,0.0863304861293201,83.12545583068243,158.37888,111.01965983080233,165519.3863261083,116024.97735384728,350.30415,225.8700373887285,365403.59091194114,235359.63666817825,360.92473,174.22623494667488,372798.549422068,178632.16790067797,3224.26392,1471.1582805929577,3328778.828668771,1496663.0485961086,1157.12325,512.5574728795826,1188658.675250298,515082.3023856556,1880.363,781.2435086156978,1930502.2260309765,786294.0200518529,0.38094,100000,0,719904,7523.608469368559,0,0.0,0,0.0,29859,311.3308111949501,0,0.0,33150,341.97270238070354,1618849,0,58016,0,0,6254,0,0,60,0.6270509792446125,0,0.0,0,0.0,0,0.0,0.06343,0.1665091615477503,0.3026958852278101,0.0192,0.3376818113660219,0.6623181886339781,24.635421609803466,4.277554191889045,0.3266787658802177,0.2369429320427505,0.2173825368017745,0.2189957652752571,11.232403381451432,5.838061429674043,20.30460464912211,12425.78611245946,56.232106376252574,14.058350302628112,18.226829772055535,11.978633748462164,11.96829255310676,0.5646299657188949,0.8093617021276596,0.6765432098765433,0.5862708719851577,0.1114180478821362,0.7424124513618677,0.9519230769230768,0.875,0.7478991596638656,0.1548117154811715,0.502449646162221,0.7312252964426877,0.6131921824104235,0.5404761904761904,0.0991735537190082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0044923994280556,0.0068115603650427,0.0091064314171883,0.0111701153634865,0.0133452863633585,0.0155260178110559,0.017699205425169,0.0198402552643151,0.0216710022326457,0.023812942262332,0.0260368521599802,0.0281520643475756,0.0300641877620828,0.0322817011878592,0.0342175450203651,0.0359603410586077,0.0377501453126297,0.0397653397684602,0.0417583104875277,0.0567050688837593,0.0709783473635716,0.0840969445056732,0.0964799697020703,0.1090412346121794,0.1250476069569633,0.1387267285116861,0.150688432418618,0.1614685763146643,0.172165888727936,0.1856482329737128,0.1978132611637347,0.2097486671744097,0.2203523361418098,0.2304034344212669,0.2412500970055764,0.2505776894654,0.2599963976945245,0.268593492703424,0.2764601364131369,0.283869847151459,0.2910085125815252,0.2973129872283961,0.3038670057093509,0.3090723453908985,0.3137201735357917,0.3176507380535401,0.3228748028692069,0.3281765383073122,0.3324669498904926,0.3318830818965517,0.3312009905076352,0.3313299646712739,0.3301090016602901,0.3300914738106181,0.3275245345317802,0.3260037938665823,0.3266801042229978,0.327367343456748,0.3283906612012119,0.3296668350262828,0.3303518657157492,0.3310523241258449,0.3311950105802428,0.3333573003547119,0.3342337662337662,0.3356435643564356,0.3381820451991509,0.3422126146229211,0.3447097635692404,0.3467825460440402,0.3513997996520272,0.3554902451225613,0.35790273556231,0.3584212509419743,0.3651625193475413,0.3708690330477356,0.3763763763763764,0.3852235550708833,0.3797909407665505,0.0,2.575263839685072,55.98634134519472,192.5371037487208,270.4879272476779,fqhc4_80Compliance_implementation_low_initial_treat_cost,65 -100000,95722,44509,421.2615699630179,6171,63.26654269655879,4821,49.76912308560206,1876,19.24322517289652,77.26691653433518,79.62667633566912,63.2951211478972,65.03917226194085,77.03771292112307,79.39871609400095,63.2108795330153,64.95787133861658,0.2292036132121069,227.9602416681712,0.0842416148818969,81.30092332426386,160.22226,112.20912922643082,167382.90048264767,117223.97069266294,348.37602,224.21557107213877,363378.2933912789,233668.87556897965,357.48075,172.31741320512197,369378.0635590564,176944.4035244964,3138.33332,1412.6682422352008,3242184.889576064,1439488.581020329,1101.34246,480.7362336076069,1136268.3291197424,487968.3712711122,1837.09292,762.6729167041346,1886165.5000940224,768458.7473271976,0.38164,100000,0,728283,7608.313658302167,0,0.0,0,0.0,29729,309.96009276864254,0,0.0,32640,336.9235912329454,1609875,0,57823,0,0,6348,0,0,59,0.616368233008086,0,0.0,1,0.0104469192035268,0,0.0,0.06171,0.1616968871187506,0.3040025927726462,0.01876,0.3297757153905646,0.6702242846094354,24.823491199385487,4.333854995631669,0.3190209500103713,0.2375025928230657,0.2273387264053101,0.2161377307612528,10.894868272131966,5.537220031437251,19.95754955255657,12394.435140819209,54.52325111144555,13.66617863913711,17.304727316247558,12.16084361337559,11.391501542685305,0.552582451773491,0.7650655021834061,0.7002600780234071,0.5684306569343066,0.0844529750479846,0.7222678718159409,0.925925925925926,0.8579234972677595,0.6776859504132231,0.1274509803921568,0.4952830188679245,0.677027027027027,0.6510238907849829,0.5374707259953162,0.0739856801909307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155572661345,0.0044206065153251,0.0067479806794658,0.0088580977438262,0.0113194882330207,0.0134503578955942,0.0159539222182578,0.0182521615745041,0.0204450896006051,0.0226518997707173,0.0248992855165909,0.0271346878432902,0.0290197852823824,0.0311885216352343,0.0331999009574116,0.0352694307480799,0.0372905577532464,0.0392272816873644,0.0411621017618626,0.0430411135885307,0.0573678055300309,0.071552680608763,0.08479983210032,0.0974211129933397,0.1092378460499662,0.124870367626828,0.1373972864513663,0.149206518266056,0.1604824739622318,0.1714632287428749,0.1849835606101439,0.1966390742827425,0.2081840652460337,0.219542910958529,0.2296732962371219,0.2403161002463983,0.2503605970816794,0.2594470357601568,0.2687877686401018,0.2767647362207883,0.2831422190851972,0.2895186389909437,0.2957448067704326,0.301089705935241,0.3066370175950228,0.3121185594338343,0.3168629416186419,0.3208859227937898,0.3259981586420634,0.3309918776622483,0.3304924498230638,0.3300247111282908,0.3289432778452929,0.3284677874799079,0.3276742766087357,0.3262251289609432,0.3245587557786709,0.3247104183486843,0.3253001715265866,0.3261609574315608,0.3269104239120218,0.3272312574375248,0.3291440360405878,0.3293465577596266,0.3299908181510655,0.3312571966921386,0.3329226714036042,0.3370387965162312,0.3423868605353905,0.3478173243580958,0.3517451242565356,0.3520430107526882,0.3547813947585507,0.3568969474408997,0.3594900849858357,0.3612528176533396,0.3573830632833996,0.3648839556004036,0.3647349629222741,0.3598615916955017,0.0,2.359555383608342,53.30994611170527,184.54703944077792,270.2930820422946,fqhc4_80Compliance_implementation_low_initial_treat_cost,66 -100000,95704,44017,416.71194516425646,6165,63.24709521023155,4825,49.84117696230043,1890,19.33043550948759,77.288290147924,79.65415932069294,63.294707477804174,65.04254336105804,77.0441279260043,79.41470904628035,63.20333954984862,64.95566941558552,0.2441622219197086,239.45027441259012,0.0913679279555523,86.8739454725187,159.52068,111.7257134833513,166681.30903619493,116740.90266169784,349.66441,225.8250355002156,364784.9515171779,235389.27220670457,357.81656,172.97069736297237,370604.47839170776,178193.63510325504,3168.49576,1457.605020150195,3273783.8334865835,1486264.812804125,1141.32739,505.42994416408686,1179464.5051408508,515050.3026908885,1858.5926,786.2317139536019,1902887.507314219,788352.467013699,0.37751,100000,0,725094,7576.423138008861,0,0.0,0,0.0,29765,310.3945498620748,0,0.0,32849,339.9335450973836,1609799,0,57809,0,0,6301,0,0,68,0.7105241160244087,0,0.0,2,0.0208977681183649,0,0.0,0.06165,0.1633069322666949,0.3065693430656934,0.0189,0.327658257235722,0.6723417427642779,24.56801328522105,4.452555747720555,0.3181347150259067,0.230880829015544,0.2302590673575129,0.2207253886010362,11.319910324231405,5.789958172684749,20.21049321628812,12239.07814650684,54.82197695622407,13.36861867393254,17.397345529918454,12.320644432859298,11.735368319513784,0.5546113989637306,0.7926391382405745,0.6840390879478827,0.5751575157515751,0.0976525821596244,0.7156789197299325,0.9216152019002376,0.8309178743961353,0.752,0.1370967741935483,0.493127147766323,0.7142857142857143,0.6297948260481713,0.5238095238095238,0.0856793145654834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0046025486359627,0.006636359946422,0.00873646356082,0.0111361972174762,0.0132778054964412,0.0156705613670194,0.0174756290511917,0.0194218424173038,0.0215731624946271,0.0236438358972256,0.0261342640114966,0.0285214887929261,0.030453141091658,0.0323369228864958,0.0344770566349731,0.0364361151377096,0.0384292074429996,0.0404401822304507,0.0423970818134445,0.0570043970046058,0.0705991979981363,0.0840671277589446,0.0971469464644657,0.1089951334860496,0.1242932469347563,0.1371214373699188,0.1485222357177864,0.1598836587608802,0.1707149453428688,0.1830799094144289,0.1953412784398699,0.2068924202982213,0.2179007073560651,0.2280228254164096,0.2369965930907436,0.2458064949006978,0.2546604865175762,0.2633686797433213,0.2704667616116139,0.2786723589874475,0.2854495772203262,0.2924493598034911,0.2979899316360491,0.3034448315345823,0.3085888736450493,0.3130730775994172,0.3180356322425851,0.3227994490501312,0.3278174188167701,0.3267421614544669,0.3262945787788451,0.3257359386929842,0.3242361403152597,0.323027591349739,0.3216002457191123,0.3202107234096571,0.3204586205194848,0.3209942101476584,0.3221024741308317,0.3230225696728243,0.3237780373369232,0.3254993384159788,0.3267992847563701,0.3278389596679383,0.3269155818847922,0.329940000568715,0.3328202067167227,0.3355226187131216,0.338937912393672,0.341225945056452,0.3437199871945363,0.345773805777582,0.3470753784133262,0.3479880774962742,0.3482394366197183,0.352506038647343,0.354125149461937,0.354110693175712,0.3627194620844228,0.0,2.1929782856054936,58.57422014319345,175.231699163943,264.99795682649625,fqhc4_80Compliance_implementation_low_initial_treat_cost,67 -100000,95840,44455,419.7725375626043,6148,63.09474123539232,4806,49.686978297161936,1913,19.626460767946572,77.36488025655099,79.68014088814992,63.35773544642036,65.0713179131192,77.1205261390767,79.43629605931659,63.26633348502372,64.98250414256401,0.2443541174742876,243.84482883333192,0.0914019613966417,88.81377055519124,158.19144,110.78084027912136,165057.84641068446,115589.35755334032,346.63981,224.39968105317428,361208.4411519199,233662.3967583204,360.59684,174.3143320560994,373883.69156928215,179964.28258669577,3146.64041,1444.1676394138717,3252335.966193656,1475966.2139126356,1124.16481,496.0484837025977,1157302.5876460767,501951.4322022745,1877.72552,797.9041887847353,1926929.1736227043,803915.1301971914,0.37965,100000,0,719052,7502.629382303839,0,0.0,0,0.0,29475,307.0429883138564,0,0.0,33014,342.1535893155259,1624176,0,58359,0,0,6293,0,0,55,0.5634390651085142,0,0.0,0,0.0,0,0.0,0.06148,0.1619386276833926,0.3111581001951854,0.01913,0.3387825003892262,0.6612174996107738,24.37926577528035,4.386737876619206,0.3281315022888056,0.2378277153558052,0.2084893882646691,0.2255513940907199,11.05966364575217,5.690539350742873,20.670172397403345,12322.565232696756,54.84059486828387,13.729297149313563,17.890476441844132,11.284512985511215,11.936308291614964,0.5661672908863921,0.7970253718285214,0.7203551046290425,0.5538922155688623,0.1097785977859778,0.7025993883792049,0.9125295508274232,0.8455696202531645,0.6549019607843137,0.1361702127659574,0.5151515151515151,0.7291666666666666,0.6785109983079526,0.5194109772423026,0.1024734982332155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0044608459386025,0.0066259436642584,0.0090500954779994,0.0114804608454256,0.0139188693845965,0.0160349854227405,0.0180901239357249,0.0202097644749754,0.022140334715185,0.0244127413602262,0.0263743932350194,0.0284181423887684,0.0305684496546897,0.0326557539273491,0.0348825205434199,0.0368845676458419,0.0390919640266898,0.0414494860346796,0.0433104452767374,0.058313690314775,0.0719967388236769,0.0849675256652,0.0976583009555812,0.109757253435838,0.1246185523467609,0.1379978813559322,0.1493930310181346,0.1604796040279911,0.171562904970494,0.1849827882960413,0.1977514728933571,0.2089698181265074,0.2188994954018218,0.2293049632918626,0.2393549956866995,0.2486463602130172,0.2576431475616056,0.265877555643654,0.2735173707202159,0.280529082192572,0.2871255911718339,0.2939368868928023,0.2985810341939652,0.3043340983885266,0.3098144020099265,0.3145454772832435,0.3196771323249014,0.3243299182448515,0.3278913178110711,0.3276349061171786,0.3267882187938289,0.3262790075098981,0.3251611784093209,0.3246138737612713,0.3239520866244382,0.3217577536289363,0.3222408742306046,0.3227222079369161,0.3239476983700519,0.3248470012239902,0.3256756756756757,0.3269582781038944,0.3274743529306126,0.3288982989678319,0.3295398188509827,0.3304956865871366,0.3333228425756908,0.336698086662915,0.3435592611800375,0.3445478296741073,0.3475864283420742,0.3501115004778592,0.353090405904059,0.3573057191715751,0.3556560009515879,0.3557810578105781,0.3555510120629728,0.3641124586549062,0.3653846153846153,0.0,1.689576674867351,57.89815049063652,183.9241036394245,258.4379582000085,fqhc4_80Compliance_implementation_low_initial_treat_cost,68 -100000,95632,44229,418.5732809101556,6217,63.79663710891752,4843,49.993725949472974,1919,19.627321398694995,77.2563444549925,79.66635895270599,63.27473565930678,65.05557712299614,77.0244574719619,79.4371236796734,63.18907097592538,64.97350168832263,0.2318869830306056,229.23527303258595,0.0856646833813954,82.07543467351286,159.11808,111.4689691327284,166385.81228040822,116560.324088933,345.7373,222.85786406648367,360872.6263175506,232381.69262997963,353.63436,171.17166408380007,365672.2958842229,175858.07979681736,3193.13252,1434.243450771123,3299728.3649824327,1460573.560696659,1174.96343,512.8915777601402,1212484.5867492054,520379.27796976216,1879.80942,778.6049204814075,1925365.5470972057,781280.8194414795,0.37859,100000,0,723264,7562.991467291283,0,0.0,0,0.0,29385,306.59193575372257,0,0.0,32362,334.2500418270035,1615793,0,57961,0,0,6340,0,0,69,0.7215158106073281,0,0.0,0,0.0,0,0.0,0.06217,0.1642145856995694,0.3086697764194949,0.01919,0.3118296046582899,0.6881703953417101,24.84298010418078,4.392088086751977,0.3245921949205038,0.2267189758414206,0.2242411728267602,0.2244476564113153,11.476767758582785,6.0836291514861065,20.37795896239769,12353.13165048908,54.35977010324567,13.096931417142882,17.51473759613444,11.900202181226051,11.847898908742287,0.5606029320669007,0.7914389799635702,0.6787531806615776,0.5948434622467772,0.1223551057957681,0.7258464079273328,0.9158163265306124,0.8525469168900804,0.7253218884120172,0.1549295774647887,0.5055066079295154,0.7223796033994334,0.6246872393661385,0.5592028135990621,0.11441647597254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0047130129835906,0.0069211175270705,0.0091331159265693,0.0114864177434123,0.0138137587482045,0.0158927697078504,0.0180534553925374,0.0205183806231205,0.022497003472898,0.0245241393463649,0.0267606647003812,0.0287020260253664,0.0309100844408244,0.0328702029853829,0.0349023706294429,0.0369460426061265,0.0394328156650911,0.0411563316232556,0.0429648791580177,0.0582026065236248,0.0715722427086825,0.0846359771140622,0.0980716195448516,0.1103736453903702,0.1256917916212526,0.1384679062659195,0.1504051622246121,0.162069444592876,0.1721103910039057,0.1847356222713307,0.1969104440424218,0.2083319719000163,0.2197701048663693,0.2295450785773366,0.2398654648787851,0.2495386164084782,0.2581430471338728,0.2664469197544896,0.273972445596687,0.2812485506238115,0.2880539273153575,0.2944895151342632,0.3005017766253721,0.3058595794932979,0.3113411485676874,0.3160442426826516,0.3210055965630219,0.3250259470679813,0.3289329369012223,0.3283282067886244,0.3271987307718838,0.326459072469504,0.3264755382740409,0.3254769083798549,0.3237367983496012,0.3221621621621621,0.3230269450216022,0.323718610251118,0.3251752021563342,0.3253677857412297,0.3258625832753306,0.3271360592917,0.3288604135397298,0.3302493675460788,0.3307750541676456,0.3317427208046404,0.3337954065719417,0.3374071998879395,0.3390977443609022,0.3419009127650879,0.3464737985481905,0.348652732309242,0.3514045581888392,0.352073732718894,0.3542837078651685,0.3581507054938457,0.3586826347305389,0.3587806851901807,0.3635312259059368,0.0,2.446121577442704,52.70699278675941,178.57130729837044,278.6560263218713,fqhc4_80Compliance_implementation_low_initial_treat_cost,69 -100000,95696,44010,415.9212506269855,6184,63.46137769603745,4851,50.14838655743187,1873,19.20665440561779,77.32722884548278,79.70461785279129,63.32110870231941,65.07626618547772,77.09633761211931,79.47539060707867,63.23583259530795,64.99408030305852,0.2308912333634651,229.22724571262165,0.0852761070114667,82.18588241919633,159.93538,111.98587970895748,167128.5947166026,117022.52937317912,350.45802,225.8631773750268,365594.6330045143,235397.3116300141,356.17001,171.63357964607124,369038.5700551747,176857.72111792612,3195.08084,1443.9470039995726,3302719.35086106,1472915.1157072766,1155.2368,507.59491263156673,1192936.4550242436,516205.1355200426,1847.55438,768.7837732250172,1895689.2033104831,773694.3329290329,0.37713,100000,0,726979,7596.754305300117,0,0.0,0,0.0,29829,311.1519812740344,0,0.0,32610,337.6107674301956,1612819,0,57923,0,0,6422,0,0,61,0.6269854539374686,0,0.0,0,0.0,0,0.0,0.06184,0.1639752870363005,0.3028783958602846,0.01873,0.3241326137239784,0.6758673862760216,25.01644996732381,4.4146471326939976,0.3199340342197485,0.2269635126777983,0.2275819418676561,0.2255205112347969,11.101789512753504,5.606048156635014,19.728526793276,12323.842028188885,54.67246647726683,13.180519502766744,17.41005658238688,12.171615003057765,11.910275389055435,0.5534941249226963,0.7584014532243415,0.6952319587628866,0.5806159420289855,0.1188299817184643,0.7191283292978208,0.9042821158690176,0.8579234972677595,0.7418032786885246,0.1594827586206896,0.4966777408637873,0.6761363636363636,0.6450252951096122,0.5348837209302325,0.1078886310904872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791686071233,0.0049659981149476,0.0071522775692401,0.0095574717897153,0.0116634974222348,0.0140409110810177,0.0162441620949156,0.0183532151319552,0.020504167305824,0.0228469022017409,0.0249720538616948,0.026909329937143,0.0291192232130918,0.0311183010644107,0.0333453738583002,0.0352854793840553,0.0373785301369579,0.0393995078954745,0.0413567854876793,0.0431320227647022,0.0579602665608222,0.0716057393433873,0.0848682554334144,0.0974729621680764,0.1094259226055498,0.1245027928232904,0.1370717833340408,0.1486257680471104,0.1604803726734619,0.1714009869126797,0.1842085420369472,0.1961463520242476,0.208232261152386,0.2179372197309417,0.2270831269741693,0.2375354547066123,0.2479462452004643,0.2564549699049333,0.2646571486937376,0.2729126335925955,0.2804787701995647,0.2870465714954364,0.2935891669231315,0.2995338135014321,0.3054309915296462,0.3108206424563783,0.314854931817328,0.3198339847479853,0.3239566192000207,0.3291304692244725,0.3283135372709746,0.3282998609715473,0.3279776753625639,0.3267755774147419,0.3266543789761579,0.3245105259927576,0.3234655552209949,0.3241196144009443,0.324141341792012,0.3247988035040239,0.3249733689659683,0.3252741184822907,0.3250836820083682,0.3253725341256898,0.3270164975229667,0.3279240261942654,0.3292620284230352,0.3341196452160785,0.3385559060637925,0.3421826563866147,0.34449629426297,0.3459525843656557,0.345842298443235,0.3489639293937068,0.3511870845204178,0.3552725541537729,0.3544655252198056,0.3520667888413765,0.3563122923588039,0.3671423062090242,0.0,2.1100338061739565,54.44002303348484,182.36344129935577,271.6556903685426,fqhc4_80Compliance_implementation_low_initial_treat_cost,70 -100000,95774,44130,416.7623780984401,6187,63.37836991250235,4963,51.19343454382192,1930,19.765280765134587,77.38146625236273,79.70425633923676,63.35451413110488,65.06781745836803,77.13359359506502,79.45900275298057,63.26301368681554,64.97981578703735,0.2478726572977052,245.2535862561973,0.0915004442893376,88.00167133067305,159.16802,111.55423093505038,166191.03305698832,116476.29934538643,349.70414,224.76270097600815,364500.20882494206,234045.7650051248,363.28627,174.62371811031508,375230.7097959781,179124.64076274622,3279.65331,1492.887232302027,3385709.743771796,1520103.1306012352,1212.51288,530.0262968149109,1249046.1398709463,536452.6212004371,1912.27262,801.2872429029194,1961045.8788397687,807363.3333741843,0.37856,100000,0,723491,7554.137866226742,0,0.0,0,0.0,29725,309.6873890617495,0,0.0,33313,343.7362958631779,1617050,0,58122,0,0,6431,0,0,66,0.6891223087685593,0,0.0,0,0.0,0,0.0,0.06187,0.1634351225697379,0.3119443995474382,0.0193,0.3384118190212373,0.6615881809787627,24.471339085440118,4.410569510712404,0.3250050372758412,0.234535563167439,0.2087447108603667,0.231714688696353,11.21431072793331,5.556740599696479,20.55219299832085,12326.984669660387,56.1881011312641,13.839759265606869,18.17908297630516,11.661994843546422,12.507264045805655,0.5641748942172073,0.788659793814433,0.707997520148791,0.5617760617760618,0.1373913043478261,0.7105864432597105,0.9289340101522844,0.8581730769230769,0.6756756756756757,0.1434426229508196,0.5115068493150685,0.7168831168831169,0.6558061821219716,0.5238095238095238,0.1357615894039735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047022578945234,0.0073036386321907,0.0097083434885043,0.0121101812968367,0.0145061791233177,0.0165728962818003,0.0185614138919784,0.0204434000817327,0.022579391062367,0.0247103297784061,0.0269937517313552,0.0290112735979939,0.0310782153960182,0.0331762838025918,0.0351440669214086,0.037150485336424,0.039105913577175,0.0410849331006399,0.0432387972680326,0.058032266816939,0.0717910619552365,0.0851311525270852,0.097225872236647,0.1097805232864582,0.1253186111199247,0.1381475667189952,0.149947842377536,0.1612479439471941,0.17221823171843,0.1854654667585256,0.1975410101971301,0.2090441552228419,0.2198718088946251,0.2292489683631361,0.2386308231018128,0.2487747697460229,0.2577309146561037,0.2659202398255814,0.2735984227599408,0.2811577082102776,0.2888495906871069,0.2951885719700559,0.300800824801592,0.3056301571291424,0.3108412942989214,0.3151077516081396,0.3190712468193384,0.3235362724515978,0.3278753413993746,0.3269890837629386,0.3265553034990032,0.3261194029850746,0.3258366839258338,0.3247464080673469,0.3225653133815773,0.3201303941892298,0.3204356455131464,0.3207444084002049,0.3226283616403201,0.3231882973549328,0.3238542241855328,0.3254913452079452,0.3260091291506309,0.3276636636636637,0.3277190607590982,0.3286218076332404,0.3308355541620943,0.3343028349160739,0.3381406436233611,0.3384832740862273,0.3419826307985596,0.3425068801601201,0.3410776449220524,0.3450193195740269,0.3458985301090564,0.3467962344366839,0.3446122860020141,0.3493413830954994,0.3494068120933792,0.0,2.3556123467747625,57.63967580152745,184.9165420834224,274.2734799968224,fqhc4_80Compliance_implementation_low_initial_treat_cost,71 -100000,95759,44493,420.23204085255696,6124,62.68862456792573,4769,49.24863459309308,1932,19.820591276015836,77.31912755708531,79.66774174812859,63.32066847763053,65.05779759461248,77.078280609367,79.42775842337421,63.23013711894573,64.97005891835322,0.2408469477183104,239.9833247543768,0.0905313586847995,87.73867625926357,159.03426,111.4180334167821,166077.6115038795,116352.54484359911,345.09461,222.89346815857115,359844.05643333786,232230.83799806933,353.38721,170.89570761667795,364991.5203792855,175455.27821532905,3129.18017,1423.3408958973869,3234133.272068422,1452745.3355793068,1170.01267,519.5269236361905,1204977.9028603055,525683.271166356,1899.4446,803.5036944928913,1950511.241763176,811026.1593738121,0.38168,100000,0,722883,7548.982341085433,0,0.0,0,0.0,29372,306.153990747606,0,0.0,32423,334.6004030952704,1618312,0,58098,0,0,6347,0,0,62,0.6474587245063127,0,0.0,0,0.0,0,0.0,0.06124,0.1604485432823307,0.3154800783801437,0.01932,0.3358348968105065,0.6641651031894934,24.72265149449,4.418247342309257,0.3076116586286433,0.2367372614803942,0.2222688194590061,0.2333822604319564,11.187181854722413,5.799122294879686,20.618319678388637,12345.168081149932,53.93592951071145,13.560514238735534,16.424148998211496,11.7457082280492,12.205558045715234,0.5600754875235898,0.7847652790079717,0.6952965235173824,0.5792452830188679,0.1356693620844564,0.7199354317998385,0.9197994987468672,0.8387096774193549,0.7391304347826086,0.180672268907563,0.5039660056657224,0.7109589041095891,0.6465753424657534,0.5349397590361445,0.1234285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002319010825426,0.0048034536223512,0.0069903818838521,0.0094558085681204,0.0116443441030804,0.0140743230169156,0.0163038490950802,0.0184822121472041,0.0205926259176703,0.0226758530318076,0.0248741425803078,0.0268921541447186,0.028971645429021,0.0309979293506814,0.0333168245320786,0.0354075589867609,0.0374135574972048,0.03936517815466,0.0415848374325883,0.0435353177661591,0.0573050948300157,0.0716848502599399,0.0850394361470045,0.0976056027004006,0.1093435381679791,0.1249762080998202,0.1376629437532482,0.149146049481245,0.1604980458321765,0.1703117629400917,0.1837310475534114,0.1960845850828968,0.2077228476641105,0.2178591345996129,0.22790590202896,0.2386142122984228,0.2481522831305124,0.2577566706805163,0.266798351667064,0.2743413516609393,0.2818514486879588,0.2891181153990259,0.2950942054745823,0.3008776247703889,0.3073273397486587,0.3116171095525042,0.3165488367428801,0.3206816125208702,0.3247411981423345,0.3293870486106523,0.3282819430774831,0.3276771572205771,0.3261921899036086,0.3253580894173534,0.3246822822107801,0.3225192888807081,0.3222572919475329,0.3228728300894266,0.3232231701687497,0.3242570712495524,0.3253371905173385,0.3263532904502721,0.3274198633736206,0.3287932504599919,0.3310273345224895,0.3321230801379166,0.3330097364588984,0.3366374020579628,0.3392316892985295,0.3406432168775032,0.343892019632794,0.3462640628316705,0.3486775818639798,0.349553128103277,0.3506088926649674,0.3536829699469652,0.3542300669506999,0.3588807785888078,0.362561847168774,0.3631859756097561,0.0,2.1615171998061227,54.29978967460503,180.27266370855665,264.4500050923083,fqhc4_80Compliance_implementation_low_initial_treat_cost,72 -100000,95680,44286,420.0146321070234,6098,62.61496655518394,4757,49.111622073578594,1856,19.032190635451503,77.34181859432726,79.72409918645441,63.3271521787835,65.08534828798837,77.11094948312169,79.49415170665597,63.242759769616704,65.0035473628163,0.2308691112055783,229.9474797984402,0.0843924091667958,81.80092517206106,158.28142,110.8435559384124,165427.4456521739,115847.74512793936,345.27925,222.97771639311875,360221.70777591976,232398.5500304591,357.77038,172.7303447069139,369808.3612040133,177375.72882604392,3112.08786,1405.4427957788455,3217247.585702341,1433574.7762966116,1128.60703,491.63223946034645,1165791.220735786,500141.5796954079,1820.85598,754.8620912165818,1869870.8821070236,761759.6185075458,0.37897,100000,0,719461,7519.429347826086,0,0.0,0,0.0,29366,306.25,0,0.0,32704,337.6881270903009,1623235,0,58272,0,0,6306,0,0,61,0.6375418060200668,0,0.0,0,0.0,0,0.0,0.06098,0.1609098345515476,0.304362085929813,0.01856,0.3244639223665675,0.6755360776334325,24.6926427322572,4.352969562993836,0.3279377759091864,0.2402774858103847,0.2095858734496531,0.2221988648307757,11.23636399571615,5.7641777373436085,19.6527230934188,12282.0290996337,53.79356425821936,13.70245609758989,17.54392857810263,10.995276794292147,11.551902788234685,0.549505991170906,0.7699037620297463,0.676923076923077,0.5737211634904714,0.1002838221381267,0.7289644012944984,0.9146067415730336,0.8498659517426274,0.751219512195122,0.107981220657277,0.4865095143425163,0.6776504297994269,0.6225779275484414,0.5277777777777778,0.0983412322274881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493432977893,0.0047842525112257,0.0068991406511571,0.0091710507606995,0.011398299914589,0.0138673943145719,0.0160535730666911,0.0182722048120208,0.0202679912918161,0.022213350530766,0.0241981789844967,0.0261890334706117,0.0280444019217513,0.0299648623862664,0.0320063579221154,0.0341428600980534,0.0360407038196099,0.0381452718136135,0.0400927939080591,0.0418247779492097,0.0561805969057841,0.0695760520171296,0.0833333333333333,0.0955502477930112,0.1083732410708634,0.1238325911980284,0.1362290855463486,0.1481654940446412,0.1591329152466319,0.1694869815124608,0.1827629283421999,0.1951522886562256,0.2074624268656067,0.2185016343620522,0.228041228041228,0.2389063001805114,0.2487751526176579,0.2580333142130895,0.2670456479558838,0.2738733168452871,0.2817417646582723,0.288276071683247,0.2938012083091947,0.2998466992430775,0.3054526911355827,0.309588636055637,0.3148268614891913,0.3195465764229918,0.3241503471142887,0.3289175067292975,0.3277902702411569,0.3271551427588579,0.3262861169837914,0.3257256012950971,0.3251660450810538,0.3235289609613291,0.3206836524766577,0.3213658664653857,0.3229321446260525,0.3233279828785447,0.3236558737755178,0.3242587441557673,0.325778326050139,0.3256780304722756,0.3269281579516249,0.3280544757233426,0.329201926090549,0.3322852471387247,0.3353164824332887,0.3380942908295206,0.3401261080142557,0.3427492286413448,0.34402460456942,0.3444655762647394,0.3468489558947467,0.351142313184198,0.3514881865602945,0.3566504460665045,0.3598885793871866,0.3621558743699108,0.0,2.23739752280699,54.22843567512855,178.16017674380709,265.34736340888924,fqhc4_80Compliance_implementation_low_initial_treat_cost,73 -100000,95701,44112,417.7699292588375,6134,63.12368731779188,4756,49.34117720817965,1920,19.832603630056116,77.38307130315455,79.75848731446489,63.34642469116329,65.09700681762283,77.15101826040944,79.52384788818995,63.26121395009008,65.01282162123941,0.2320530427451075,234.6394262749385,0.0852107410732188,84.18519638341593,159.47668,111.71905458451272,166640.55756993135,116737.60418857976,347.75123,223.75665505828,363028.6935350728,233464.13836666275,349.90734,168.26080461539894,363271.3973730682,174103.5648681985,3117.32591,1404.273543201463,3235381.7097000037,1445377.042247692,1114.99805,488.8890578214604,1155542.512617423,501307.9777865021,1879.87278,774.200240765902,1942953.3442701744,789980.1900995414,0.37939,100000,0,724894,7574.570798633244,0,0.0,0,0.0,29618,309.1190269694152,0,0.0,32024,332.2744798904923,1618447,0,58151,0,0,6231,0,0,57,0.5956050615981024,0,0.0,1,0.0104492116069842,0,0.0,0.06134,0.1616805925301141,0.313009455493968,0.0192,0.3338528678304239,0.6661471321695761,25.0120367903287,4.442064023069723,0.3191757779646762,0.2264507989907485,0.2375946173254836,0.2167788057190916,11.227167704729652,5.74087650623041,20.17501885634377,12335.13833446718,53.498000018149945,12.699817139782402,17.10212216843449,12.462782290552951,11.233278419380106,0.5567703952901598,0.7641597028783659,0.7022397891963109,0.5637168141592921,0.1183317167798254,0.7221764220939819,0.8991825613079019,0.8740740740740741,0.6853448275862069,0.1578947368421052,0.5001411233418007,0.6943661971830986,0.6397124887690926,0.532293986636971,0.108272506082725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022878430499174,0.0044779446031649,0.006724069735601,0.0088955684633819,0.0110213003914391,0.0132027647424086,0.0154437399335358,0.0174851228449815,0.0197172733126859,0.0219173875211137,0.024011400801747,0.025959089788877,0.0280048954573035,0.0300870371324097,0.0321662161883343,0.0342097647691099,0.0364956698296937,0.0382882882882882,0.0403398573181638,0.0423753543438385,0.0572362785450139,0.0700138185168125,0.0830544569516276,0.0959435589014593,0.1086042024691878,0.1239930650992663,0.1364609611837781,0.1488196512122501,0.1603187812059915,0.1709125190152765,0.1846345818721628,0.1969428349044365,0.2083659363588941,0.2182926962546857,0.2283740829951276,0.2391208012053531,0.2489726639271038,0.2580438087730165,0.2665955079145186,0.274288726181064,0.2810036920868971,0.2876741191618869,0.2949064202795546,0.3004451483627899,0.3065080986429301,0.3119348670819712,0.3178260597332665,0.3217714620419181,0.3263388459743895,0.3303263640325968,0.329442492292365,0.3291243707188248,0.3288099327120696,0.3280326992792871,0.3272667893830532,0.3256893382352941,0.3238711924513963,0.3241895261845386,0.3249820555764432,0.3264847110904839,0.3270677393463125,0.3283717267178578,0.328886105021401,0.3302376339057036,0.3320742989648825,0.3322364159303501,0.3321636764955571,0.3352267407384289,0.3389824585924942,0.3406853091768412,0.3410090204433162,0.3426661754644492,0.344866350237322,0.3448275862068966,0.3463997775924381,0.3500175008750437,0.3520705636119001,0.361062292520992,0.3696808510638298,0.3721100917431192,0.0,1.3700479670203745,53.99329181836829,177.09921158376966,267.81814013947405,fqhc4_80Compliance_implementation_low_initial_treat_cost,74 -100000,95676,44447,421.589531334922,6220,63.600066892428615,4900,50.45152389313935,1956,20.025920816087627,77.3960056150407,79.78071926218784,63.35197710932333,65.11320161275096,77.14972038670673,79.53636237017876,63.259965100588005,65.02478520204798,0.2462852283339742,244.35689200907973,0.092012008735324,88.41641070297612,159.72902,111.82973914312468,166947.84480956563,116883.79441356732,347.18945,223.84007784878216,362099.8474016473,233176.2532775336,358.31661,173.34756863021212,368761.3821648062,177041.3946165438,3247.60274,1493.9011183149278,3348377.44052845,1515467.4180534263,1178.25595,523.8620780131256,1212918.0254191228,529055.4397781701,1921.21284,814.0711109207048,1968334.6920857893,816378.5303195122,0.38215,100000,0,726041,7588.538400434801,0,0.0,0,0.0,29587,308.4263556168736,0,0.0,32836,337.5768217734855,1619603,0,58042,0,0,6353,0,0,74,0.762991763869727,0,0.0,0,0.0,0,0.0,0.0622,0.1627633128352741,0.3144694533762058,0.01956,0.3422059048493193,0.6577940951506808,24.077013713525893,4.406053531768483,0.3106122448979592,0.2344897959183673,0.230204081632653,0.2246938775510204,11.203173425241149,5.667520212958178,20.814773279635546,12314.19817981474,55.60627155476926,13.778059312815742,17.121534468954316,12.565293414353812,12.1413843586454,0.5502040816326531,0.7919930374238469,0.6727989487516426,0.5602836879432624,0.1180744777475022,0.7199091597274792,0.92,0.8663239074550129,0.7132075471698113,0.140495867768595,0.4875663593182453,0.7168508287292817,0.6063548102383054,0.5133256083429896,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.0044716189085599,0.0070136619232252,0.0091643383286766,0.011270929546518,0.0134810410133181,0.0155795956238465,0.0178664406987309,0.0198634198204829,0.0221396548547564,0.0244720114824687,0.0264589921557353,0.0284271477203772,0.0302949144511171,0.0323475999834908,0.0340931410554607,0.0360901632551586,0.0380443244926558,0.0400216333153055,0.0420557825398148,0.0564155594551683,0.070160750167448,0.0840378443013279,0.0964777625906844,0.1083200691494408,0.1238354078319814,0.1368039126237282,0.1487955205927124,0.1598068644312221,0.1706315157235402,0.182920656119075,0.1951926613444105,0.206699053394629,0.2164735461303017,0.2262055314235443,0.2379513070050154,0.2476993608406117,0.2568792907785481,0.2656853746699754,0.2749319673443253,0.2815722319088253,0.2880275523904033,0.2950341373526424,0.3007382060516146,0.3072445490043899,0.3123040415093875,0.3177269210611695,0.3216785877339826,0.3262308833967864,0.3305574193208878,0.3294041833364659,0.3286233623705329,0.3281702414752762,0.3267669411476284,0.325246893442866,0.323591899121131,0.3221723603956641,0.3238869049569177,0.3243031284630466,0.3249136057572411,0.3261951073539313,0.3260016949486588,0.327280317261532,0.3283392698130009,0.3301520310776462,0.3305606820722102,0.3310931518502765,0.3353407985947743,0.3386593783944777,0.3398934478371501,0.3429094236047575,0.3432192109046376,0.3490399191510864,0.3518998931786968,0.3528019689511548,0.3529129705106689,0.351044226044226,0.3512742099898063,0.3540510543840177,0.3486024844720496,0.0,2.937798702779344,57.19813663368913,179.2599519096608,273.1110570238583,fqhc4_80Compliance_implementation_low_initial_treat_cost,75 -100000,95834,44612,421.3535905837177,6156,63.150865037460605,4785,49.47096020201599,1859,19.074649915478847,77.38566316619061,79.70703370669138,63.36611244363343,65.08437740328351,77.15044019825359,79.4725499616217,63.27832242502701,64.99951639167509,0.2352229679370197,234.4837450696815,0.0877900186064124,84.86101160842452,158.24974,110.8826318529999,165129.01475467996,115702.8109574889,349.70381,226.5545989673698,364370.07742554834,235867.7721267021,358.67763,173.95517832781405,371915.4892835528,179682.25951069134,3120.80928,1421.8119485307814,3223940.522152889,1451478.511980442,1105.77059,490.2550318452022,1139809.0865454848,497788.19761185977,1815.77086,766.8100296191936,1863005.5095268905,771380.85958512,0.38192,100000,0,719317,7505.864307030907,0,0.0,0,0.0,29762,310.0674082267254,0,0.0,32797,339.8480706221174,1623568,0,58214,0,0,6369,0,0,63,0.6469520212033307,0,0.0,0,0.0,0,0.0,0.06156,0.1611855886049434,0.3019818063677713,0.01859,0.3369969040247678,0.6630030959752322,24.510214586594017,4.4037235730366255,0.3414838035527691,0.2307210031347962,0.2135841170323928,0.2142110762800418,11.11143910331569,5.793366698231142,19.96742779333512,12422.577231723975,54.19239345926312,13.16355347695538,18.426867092854444,11.264688603176896,11.337284286276397,0.5538140020898642,0.7762681159420289,0.6682986536107711,0.5684931506849316,0.1170731707317073,0.7190146266358738,0.9127358490566038,0.8409638554216867,0.7043478260869566,0.1565217391304348,0.4922547332185886,0.6911764705882353,0.6095159967186218,0.5290404040404041,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020256651778027,0.0043186034488002,0.0067694431194243,0.0086054497795298,0.0108832743398836,0.0130332959983708,0.0152585389719597,0.0174915807735483,0.0196126526649292,0.0220225546982132,0.0244314862829092,0.0265731968920957,0.0287564234326824,0.0312715519459798,0.0332037493426276,0.0352011568455301,0.037114831446723,0.0392528789245105,0.0414001495264994,0.0433307665091885,0.0583123832969967,0.072622544663858,0.0853641919017221,0.0975791707819362,0.1099945223949774,0.1261855974988909,0.1384318752449863,0.1509135162137171,0.1621549554161866,0.1735926655813555,0.1872116656450624,0.1990429691719415,0.2106205833505205,0.2213660474558512,0.2316418303811646,0.2419736434794145,0.2506238303181534,0.2588594727560682,0.267613771539272,0.2748545365173356,0.2821125817106691,0.2896051157580284,0.2966665879742203,0.3025373794356332,0.3084423449612403,0.3138312246652745,0.3183440221595588,0.322654288105928,0.3267361245594329,0.3306663859353616,0.3300940860215053,0.3290834901836866,0.3284140628297294,0.3269750046929375,0.326160882671775,0.325591720505833,0.3245199923959191,0.3252788409415707,0.326053843125845,0.326466012125114,0.3278848316712904,0.328393351800554,0.3289241251682369,0.3309777000044869,0.3317387837935783,0.3343382969798658,0.336368843069874,0.3412302839116719,0.3438778389053463,0.3484153876818816,0.3493238304093567,0.3516571064372211,0.351291745431632,0.3526375711574953,0.3562817856470145,0.3627509205368808,0.3643054277828886,0.361555600567146,0.360759493670886,0.3667174409748667,0.0,1.742954928781361,57.38928977299239,175.42771061177294,263.1616702659806,fqhc4_80Compliance_implementation_low_initial_treat_cost,76 -100000,95763,44225,417.7813978258826,6127,62.65467873813477,4817,49.695602685797226,1921,19.69445401668703,77.37657405990127,79.72181321982609,63.3458979718325,65.07931651450345,77.13652131040119,79.48198729326793,63.2566477220042,64.99221073600944,0.2400527495000801,239.8259265581544,0.0892502498283036,87.10577849400636,159.57876,111.72249540234358,166639.2656871652,116665.61762094294,347.68129,224.44968836027908,362477.34511241294,233793.4049270377,358.80437,173.15553226824358,370732.49584912753,177742.99348938194,3151.17486,1441.0510824823684,3256476.708123179,1470689.110076301,1142.58687,504.4872302608289,1179694.6210958303,513362.4889162085,1879.50276,794.2518612225708,1930350.511157754,802248.2040303834,0.37907,100000,0,725358,7574.512076689326,0,0.0,0,0.0,29584,308.30278917744846,0,0.0,32781,338.2934954001023,1617445,0,58039,0,0,6290,0,0,73,0.762298591313973,0,0.0,1,0.0104424464563557,0,0.0,0.06127,0.1616324161764318,0.3135302758283009,0.01921,0.3287181082762912,0.6712818917237088,24.5460413997166,4.379025820639876,0.3205314511106498,0.2362466265310359,0.2202615735935229,0.2229603487647913,11.14217211835893,5.762745747637014,20.499477306806774,12289.291536623294,54.65497180488925,13.652297258168666,17.41688083111907,11.760973806027833,11.8248199095737,0.567780776416857,0.8031634446397188,0.6968911917098446,0.590009425070688,0.1108007448789571,0.7244897959183674,0.906801007556675,0.8430379746835444,0.77734375,0.1371681415929203,0.5114309906858594,0.747638326585695,0.6466492602262838,0.5304347826086957,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.0045109428377378,0.0067574423182288,0.0088179121459628,0.0109836465706614,0.0130548568751845,0.0151318942398874,0.0172336341732347,0.01942362935626,0.0216498961009714,0.0238397835355854,0.0260826721138152,0.0282606684280324,0.030421931802968,0.0326304495842532,0.0347183462532299,0.036665424121935,0.0388074565088849,0.0412192155354339,0.0432491538661806,0.0574741434192262,0.070869106005626,0.0843099436046877,0.0972436766390298,0.1098688023605037,0.1253884367403022,0.1364474883908314,0.1483002606798957,0.1589329004560163,0.1700945803933343,0.18319188350853,0.1952478332846431,0.2064099914054765,0.2171829352357401,0.2274393667499697,0.2374027355960008,0.2479564945506521,0.2570007203313524,0.2655703844931681,0.2733882972632543,0.2805251894268031,0.2881395566364231,0.2943290923709974,0.3003460373337165,0.3053764224383964,0.3105228782333296,0.3156368363813643,0.3199883109292811,0.3243861758659478,0.3280112857293534,0.3271507869306345,0.326646422731832,0.3263621276476048,0.3255427878507911,0.3241471373479679,0.3226497360972998,0.3211421339871866,0.3214982698394477,0.322301912568306,0.323527838690699,0.325501217912685,0.3263847763433218,0.3269911041339612,0.3277245375529307,0.3293270960777258,0.330201447087606,0.3301288432549276,0.3323513742204393,0.3351203616104278,0.3377339042182049,0.3418585601165013,0.3463070142834386,0.3490198542347323,0.3519306780176345,0.3524674594999532,0.3559843731502308,0.3559115179252479,0.360655737704918,0.3589465109964703,0.3605751040484298,0.0,2.354350657311616,55.807794855587005,184.66785157480288,260.8825982664259,fqhc4_80Compliance_implementation_low_initial_treat_cost,77 -100000,95760,44193,418.4837092731829,6099,62.59398496240601,4851,50.16708437761069,1942,20.00835421888053,77.3313489084019,79.69802120918347,63.31030609897547,65.06336419157608,77.09419657655289,79.4599485025741,63.22380999434134,64.97845090809544,0.2371523318490176,238.07270660937263,0.0864961046341292,84.91328348064542,158.87564,111.30361803441222,165909.77443609023,116231.4290500128,349.28105,225.52769015973348,364254.5321637427,235023.81685401368,362.81294,175.14863559893342,375372.7339181287,180246.05777092796,3177.42346,1448.8162202452338,3288229.9812030075,1483221.9931931111,1140.29926,503.85568346190496,1178046.0108604846,513450.9858785198,1903.96846,783.8552360560584,1962603.1537176275,796645.5349908165,0.37861,100000,0,722162,7541.353383458646,0,0.0,0,0.0,29787,310.5367585630744,0,0.0,33181,343.05555555555554,1616701,0,57980,0,0,6244,0,0,52,0.5430242272347535,0,0.0,0,0.0,0,0.0,0.06099,0.161089247510631,0.3184128545663223,0.01942,0.34140625,0.65859375,24.622749419381343,4.338921534869925,0.3310657596371882,0.225314368171511,0.2228406514120799,0.2207792207792207,11.431676916331575,5.904467698226558,20.492476553756266,12273.077263361383,55.10123113554537,13.14572761899032,18.19105417615417,12.144228645982691,11.6202206944182,0.5687487116058545,0.7959743824336688,0.7017434620174346,0.5975948196114709,0.1083099906629318,0.7329721362229102,0.890625,0.8657074340527577,0.7818181818181819,0.1342592592592592,0.5091317785894914,0.7447108603667136,0.6442388561816653,0.5347394540942928,0.1017543859649122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022087356508171,0.0045326870620684,0.0068003044912458,0.0092054460475513,0.0112515005391767,0.0131987656709881,0.0153562215129854,0.0177358914404157,0.0198426904233448,0.0220722289366409,0.0242964391204463,0.0264036574716186,0.0283212069444587,0.0303317633236109,0.0325147864862354,0.0346096973331816,0.036324852702101,0.0381658002054602,0.0403733810107898,0.0421088810890191,0.0565025417271218,0.0704285774076089,0.0834740651387213,0.0966361370782027,0.1087107793522267,0.1243336999746171,0.1381622929422626,0.149769928848366,0.1604826126915596,0.1712035536861983,0.1835023548049876,0.1958743909041689,0.2081378514591746,0.2184349653564509,0.2286113771729916,0.239067055393586,0.2480711039649839,0.2570087672897932,0.2647219007420519,0.2729793206163716,0.2801805451073433,0.2870640300656809,0.2944166646918027,0.3000108034138788,0.3055244721222147,0.3104558235903507,0.3152821591307396,0.3195381520991929,0.3241189741462023,0.3284788148461122,0.3280961556600595,0.3270098497771419,0.3257814700084483,0.3248064478853709,0.3241655540720961,0.3214755452237482,0.3186860068259385,0.3189194505458479,0.3192008879023307,0.319396175301645,0.320148932587423,0.3225176150156907,0.3241858227530381,0.3254110078627591,0.3254864280566898,0.3254741558982909,0.3263415188722146,0.3296959023868675,0.3334037980481274,0.3374561123523779,0.3395631511606653,0.3420465412814791,0.3460401333584953,0.3460633209323513,0.345909600298842,0.3498480953493807,0.3532412965186074,0.3559889676910953,0.3667114093959731,0.3674698795180723,0.0,1.8342476321823364,57.23072683607035,183.5155416647349,265.0273630535658,fqhc4_80Compliance_implementation_low_initial_treat_cost,78 -100000,95494,44116,418.466081638637,6038,62.02483925691666,4747,49.15492072800385,1900,19.519550966552877,77.22623088476638,79.71190544513253,63.24095407219974,65.07571870996593,76.98414766857401,79.47059174519364,63.15087221407739,64.98812203824602,0.2420832161923698,241.3136999388854,0.0900818581223532,87.5966717199077,157.6927,110.4661547400699,165133.39057951284,115678.4300329358,346.2625,223.44579630434524,362056.0872934426,233445.2242380863,353.64325,170.95786510547612,366615.16953944747,176143.95442937705,3106.15343,1420.3666332368612,3220098.320313318,1454883.267153014,1117.71505,491.4471445636122,1158492.7744151463,502779.0737747828,1856.17756,786.0193827949637,1909406.78995539,795004.164572683,0.37783,100000,0,716785,7506.063208159675,0,0.0,0,0.0,29437,307.67378055165767,0,0.0,32337,334.95298133914173,1618976,0,58120,0,0,6368,0,0,75,0.7853896579889836,0,0.0,2,0.0209437242130395,0,0.0,0.06038,0.1598073207527194,0.3146737330241801,0.019,0.3316118935837245,0.6683881064162754,24.74786998041007,4.339280086472943,0.3267326732673267,0.2254055192753317,0.2285654097324626,0.2192963977248788,11.152279146038632,5.809096156622607,20.432310203105853,12254.96063820856,53.90068964965013,12.786256459061963,17.55763650839517,12.113746563482254,11.443050118710758,0.5546661049083632,0.7813084112149533,0.6924564796905223,0.567741935483871,0.1027857829010566,0.7145085803432137,0.9088607594936708,0.8514851485148515,0.7410358565737052,0.1163793103448275,0.4955266955266955,0.7066666666666667,0.6364428945074107,0.5155875299760192,0.0988875154511742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698485078786,0.0044427764309696,0.0066603041809653,0.009059481443823,0.0109952761035999,0.0130866839932732,0.0153470953785242,0.0175137432816299,0.019611855095297,0.0219770086678551,0.0240803087534899,0.0259204803668555,0.0282860526180301,0.0302198935599653,0.0324017151418091,0.0343838651564408,0.0365971307351583,0.0384499443884286,0.0407663617610901,0.0426864923565282,0.0576844573306676,0.071991355162248,0.084855559411511,0.0976064754798115,0.1095282380791342,0.1247257348186934,0.1375776133367355,0.1498682371517886,0.1611973867409232,0.1709319947977686,0.1840471589130129,0.1962360342770365,0.208013956277599,0.2184923697596912,0.2273885842280064,0.2378533961593172,0.2474127611013526,0.256928315331364,0.2650551700602889,0.272963077735312,0.2803808772703022,0.2866540030955396,0.2921472305282643,0.2977186403192461,0.3036332601804438,0.3094301338678148,0.3142824821830339,0.3189191261999412,0.3240966987262802,0.3282094057832856,0.327084487815427,0.3259807978811455,0.3241956896308222,0.3233374339677256,0.3221581511778641,0.3200368776889981,0.3182251605110927,0.3190675591018497,0.3198318029691925,0.3205551172631428,0.3215339233038348,0.3219700723416906,0.3224194056494802,0.3227063963257533,0.3227520861890676,0.3237419455821355,0.3249408343075475,0.3294213887927508,0.3329114369089055,0.3351890881616097,0.3386588761583056,0.3433667781493868,0.345661182971242,0.345179584120983,0.3481481481481481,0.3531056986365225,0.3516182950919313,0.3516595398085929,0.3564738292011019,0.3579915676504407,0.0,2.1255506537671214,56.48667397459248,174.6482643026389,262.2861787699781,fqhc4_80Compliance_implementation_low_initial_treat_cost,79 -100000,95713,44321,419.3474240698756,6218,63.67995988005809,4841,50.04544837169455,1953,20.049523053294745,77.36399481233721,79.7489430348444,63.33329461681414,65.09742487199833,77.12019470827046,79.50469081945243,63.24204668800552,65.00833218739596,0.2438001040667501,244.25221539196684,0.0912479288086203,89.09268460236319,159.02458,111.35910806260178,166147.31541169956,116346.89965062402,346.58776,223.47752363077095,361580.50630530855,232956.1435027331,357.41805,173.14788949965148,370018.83756647474,178297.5431390186,3192.67595,1464.3320269451872,3305179.693458569,1499422.9801021684,1150.87918,513.2785697513789,1187545.2446376146,521386.4049307609,1914.65186,811.3975857117111,1968179.4113652275,820797.0506678699,0.37918,100000,0,722839,7552.150700531799,0,0.0,0,0.0,29508,307.7429398305351,0,0.0,32661,337.8120004597077,1621497,0,58183,0,0,6524,0,0,63,0.6582177969554815,0,0.0,0,0.0,0,0.0,0.06218,0.1639854422701619,0.3140881312319074,0.01953,0.3459226144596886,0.6540773855403114,24.50907649920425,4.426942919671335,0.3218343317496385,0.2282586242511877,0.2230944019830613,0.2268126420161123,11.028330957408825,5.648951908035968,20.93163688984481,12326.411403675133,54.800947315566255,13.1675131820621,17.644341521368535,11.989705921271849,11.999386690863778,0.552984920470977,0.7638009049773755,0.7207958921694481,0.5546296296296296,0.1010928961748633,0.7192851824274014,0.888631090487239,0.8655256723716381,0.7286245353159851,0.141025641025641,0.489136649514008,0.6839762611275965,0.6692776327241079,0.4969173859432799,0.0902777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021782960658959,0.0042897563053332,0.0066900836514253,0.009055430209159,0.011182563747736,0.013723332722049,0.0160961279529968,0.0182707626945545,0.0204350894418704,0.0230188717885704,0.0251758721824558,0.0271030820897821,0.029109236782555,0.0312825215608288,0.0333243890356671,0.0354846047271448,0.037540010565897,0.0390797679703633,0.0409559152191765,0.042863096478433,0.0576047453945444,0.0712356869230286,0.0852295974569603,0.097506598942066,0.1096763992832296,0.1250806204337115,0.1377108983128135,0.1496063829787234,0.1613750400341624,0.1718416737226825,0.1844047952133956,0.1967461382025875,0.208721183123097,0.219020330493553,0.2287974300581977,0.2399459650987687,0.2490405640590834,0.257793872868775,0.2671145052027188,0.2743427681597508,0.2811220358588779,0.2885858952021236,0.2949866824504291,0.3006700468673211,0.3064888370624104,0.3112777695680015,0.315895472911272,0.3208683936243232,0.324629809246686,0.3279217784337238,0.3277037475292124,0.3264181790704384,0.3255284141247943,0.325036793351225,0.3232856401512343,0.3215915508005067,0.3201160389108739,0.3205389955083708,0.3213860645424559,0.322249911000356,0.3231784859365649,0.3234359895042121,0.3251359263906315,0.3259595598103247,0.3278200542525866,0.3279741086808999,0.3274050813588353,0.3306213482440158,0.333380153100639,0.3376803551609323,0.341255055209706,0.3451107108803898,0.3461684130791567,0.3490328006728343,0.3482784714339765,0.3495469718645684,0.3516890328551596,0.3558282208588957,0.3516666666666667,0.3499029126213592,0.0,2.1080382422400183,59.10705892554866,170.6431904398564,269.1940284256867,fqhc4_80Compliance_implementation_low_initial_treat_cost,80 -100000,95666,44375,419.72069491773465,6143,62.85409654422679,4852,50.09094140028851,1913,19.588986682834022,77.31725194233033,79.72440741838892,63.30264576078415,65.08473496922852,77.07921005256,79.49005651718805,63.21377062401166,64.99992024133341,0.2380418897703293,234.35090120086957,0.0888751367724935,84.81472789510747,158.70514,111.16523889651374,165895.03062739113,116201.40791557476,349.00276,225.24341487786356,364191.7400121255,234826.5222929956,358.60794,173.12008413023494,371110.66627642006,178051.22568929664,3193.87897,1453.9056263332625,3298460.1321263565,1479721.8334046423,1152.94254,509.0590124220557,1188416.9192816676,515428.7298067595,1877.8786,789.0649120726423,1924401.7519285849,791976.331330954,0.38006,100000,0,721387,7540.683210335961,0,0.0,0,0.0,29717,309.97428553509087,0,0.0,32794,339.03372148934835,1618421,0,58069,0,0,6243,0,0,57,0.5958229674074385,0,0.0,0,0.0,0,0.0,0.06143,0.1616323738357101,0.3114113625264528,0.01913,0.3319913285847011,0.6680086714152988,24.52334792642866,4.355969532764683,0.3161582852431986,0.2351607584501236,0.2236191261335531,0.2250618301731244,11.284901824312188,5.800453952563377,20.274408486942477,12327.549125067657,54.89153312948703,13.70889635834238,17.199388714228416,12.03006425930525,11.95318379761098,0.5467848309975268,0.7905346187554777,0.6792698826597132,0.5511520737327189,0.1016483516483516,0.7039106145251397,0.9150943396226416,0.8347107438016529,0.6877637130801688,0.1222707423580786,0.4920811336482356,0.7168758716875872,0.6310845431255337,0.5129716981132075,0.0961761297798377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024010455185549,0.0048876945697916,0.0070328911982301,0.0092369600341432,0.0113649081752047,0.0134766221860038,0.0156183053475608,0.0181329682902909,0.0203597225348366,0.0226623090557029,0.0248589309531137,0.0269426005466614,0.0290696477466905,0.0309091283996948,0.0328221017299251,0.0348884129496849,0.0367897830346128,0.0389644107048279,0.0409834359913434,0.0431260945709282,0.0579858535413162,0.0722461332244248,0.0852097964496793,0.0975578960659084,0.1095543551654287,0.1246798331957409,0.137499469236975,0.1502204895507126,0.1619082231462379,0.1725839851503739,0.1847817889962617,0.1970466281977719,0.208792285254038,0.2196350181177269,0.2292109582401603,0.2397472844158723,0.2488142932071555,0.258548931383577,0.2671295035847173,0.2751273684813097,0.2821527319844052,0.2884489452266242,0.294655115277186,0.300232468964195,0.3056895357737307,0.3103108163089176,0.314816437395952,0.3189600345976748,0.3238811378872984,0.3284168347239247,0.3271736937663909,0.3262614048587446,0.3256376367368747,0.3245887445887446,0.3244199354905837,0.3230460245914206,0.3218672829734693,0.3221888489503832,0.322888399638182,0.3231885608329767,0.323387278040009,0.3238251387709144,0.324339068401175,0.325256186512731,0.3253851532174458,0.3275461452105579,0.3279949846118773,0.3316169544740973,0.3349591213726797,0.3376695486634409,0.339889563272943,0.3428692970328618,0.3456634263350587,0.3511963917131718,0.350943396226415,0.3501954744698495,0.3457987072945521,0.3498880521066558,0.3492706645056726,0.3419962335216572,0.0,2.450258658425465,54.69217401999194,184.04828704955585,269.65906686602074,fqhc4_80Compliance_implementation_low_initial_treat_cost,81 -100000,95857,44508,420.79347361173416,6267,64.04331452058796,4884,50.37712425800933,1920,19.68557330189762,77.4717338221379,79.75743591354401,63.40399372213196,65.09041881167435,77.2372180603626,79.52391090036821,63.31619078580557,65.00490089364614,0.234515761775313,233.5250131758073,0.0878029363263905,85.5179180282164,159.92768,111.93581187092047,166839.85520097645,116773.74826138988,344.91155,222.2201326703274,359249.75745120336,231255.53967923828,358.54186,173.27854250871127,370076.6141231209,177763.35015852645,3208.41829,1464.3056799391072,3312860.75091021,1493366.4937762571,1154.39976,513.5148747788494,1190423.6936269652,521848.3814114172,1886.4514,793.3088428823447,1936882.752433312,802075.0034329994,0.38138,100000,0,726944,7583.629781862566,0,0.0,0,0.0,29421,306.3417382142149,0,0.0,32833,338.5563912911942,1621192,0,58123,0,0,6298,0,0,62,0.6467967910533399,0,0.0,0,0.0,0,0.0,0.06267,0.1643242959777649,0.3063666826232647,0.0192,0.3338409990862016,0.6661590009137983,24.32735655052977,4.351057264932794,0.3144963144963145,0.2454954954954954,0.2158067158067158,0.2242014742014742,11.095230434490157,5.663199877692332,20.292431664983354,12389.226346777445,54.97475825565223,14.4009789097912,17.106394411792714,11.638889191189778,11.828495742878536,0.561015561015561,0.7906588824020017,0.693359375,0.5749525616698292,0.1105022831050228,0.7252081756245269,0.9006772009029346,0.8638743455497382,0.7335907335907336,0.1645569620253164,0.5001403311815885,0.7261904761904762,0.6369150779896013,0.5232704402515723,0.0955710955710955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021257212268448,0.0041738002856824,0.0064592670709201,0.008597239139261,0.0110458499308999,0.013277442591594,0.0155040339010675,0.0177174389783657,0.020086596001062,0.0222122228585453,0.0245291328260223,0.0267470719750579,0.0288355847757974,0.0307024312950787,0.0327378804902435,0.0346547433421794,0.0367313162658391,0.0387090756459285,0.0406088735216854,0.0427701753473125,0.057817632031698,0.0720654798615974,0.0852702617735208,0.098835865431087,0.1106040325045584,0.1251612221165028,0.1379204309284472,0.1492159407646971,0.1606610934947631,0.1712806662165203,0.1855335083717126,0.1973997060349299,0.2089912042567054,0.2198067369110662,0.2296158789090389,0.2401039363113666,0.2496824654054415,0.2587169150262209,0.2673923385361212,0.2749093736777705,0.282477393724521,0.2897279133803145,0.296741197453433,0.3021747972342513,0.3077828328783742,0.3143247501353946,0.3186174666050208,0.3225253371942391,0.3274019512825483,0.3312930274190788,0.3303097493784855,0.3296676173760421,0.3285650110902097,0.3273794959628089,0.3272544259577239,0.3251395285004117,0.3231530509329299,0.3239993465120078,0.3247068819031435,0.3258245464550715,0.3267858141225144,0.3279171660412205,0.3288067814966779,0.3299204903833341,0.3312007639054667,0.3322975737331365,0.3328621108880658,0.3356192138649044,0.3372705230342916,0.3402530257334221,0.3432661670331643,0.3463622494607817,0.3513395092638958,0.3554239732786761,0.3565307467746492,0.3591356998694052,0.3598967820279296,0.3661858974358974,0.3716234652114598,0.3679031037093111,0.0,2.229615116144264,57.85826343813364,174.7627138616131,270.86401381999883,fqhc4_80Compliance_implementation_low_initial_treat_cost,82 -100000,95754,44556,422.1233577709547,6042,61.939971176138855,4726,48.927459949453805,1782,18.349102909539027,77.34438518034166,79.69822053230315,63.33412346583962,65.07259739792192,77.1181370273917,79.46917950638145,63.24981294542484,64.98856677765907,0.2262481529499638,229.0410259217026,0.0843105204147747,84.03062026285113,159.24502,111.51825792775703,166306.3892892203,116463.28918662098,345.69032,223.5780520435881,360597.0507759467,233069.9835449047,355.96331,172.13074792139545,368703.4901936212,177425.92483109495,3075.93551,1402.3696561372333,3186703.166447355,1438926.724875444,1089.00914,480.24625979947314,1126170.7082732837,490413.58042428776,1749.28952,740.9436446941767,1803346.0534285773,755420.071288039,0.38161,100000,0,723841,7559.381331328194,0,0.0,0,0.0,29449,307.1098857488982,0,0.0,32587,337.29139252668296,1617939,0,58101,0,0,6276,0,0,67,0.6892662447521775,0,0.0,2,0.0208868559015811,0,0.0,0.06042,0.1583291842456958,0.29493545183714,0.01782,0.3354390397978521,0.6645609602021478,24.41849732520192,4.337078555091471,0.3256453660600931,0.2369868810833686,0.2228099873042742,0.214557765552264,11.101273411935614,5.656743716985278,19.23594574132809,12302.382592297685,53.46673387028511,13.4095416356725,17.350245862551084,11.548926698208994,11.158019673852529,0.5592467202708421,0.7875,0.6770630279402209,0.5688509021842355,0.1183431952662721,0.71953125,0.9138755980861244,0.8492462311557789,0.7049180327868853,0.1318181818181818,0.4997098084735926,0.7122507122507122,0.6170026292725679,0.5278121137206427,0.114609571788413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777885823102,0.0043291798890837,0.0064834261711259,0.0086529965570823,0.0107367265184944,0.0129386255128113,0.0151647948472309,0.0175008929026991,0.0195359197310745,0.0216412565230737,0.0237314533978194,0.0258849852716281,0.0280385362794188,0.0299993820930567,0.0322371000020631,0.0340708284677944,0.0361346016499156,0.038266099761485,0.0402190744416615,0.0424856003083044,0.0572275636006806,0.0716699978024967,0.0848033560566334,0.0974973711882229,0.1095072909966998,0.1251876757808369,0.1373923556611377,0.1496292513750146,0.1609888936351986,0.1712849317711627,0.1847881077706375,0.1969931317938456,0.2080860130889483,0.2188111345479185,0.2289066537645286,0.239109979520673,0.2489818688981868,0.2579281183932346,0.266690868662575,0.2741303899791614,0.2814372642928206,0.2884318405166362,0.2943661471830736,0.3002734665483244,0.3058536170419608,0.3104150217133833,0.3145374559765375,0.319929134058987,0.3245874437717945,0.3287231513037965,0.3286774510728284,0.3274160921438302,0.3270106114626344,0.3256516647631164,0.3251892277722426,0.3228428575810558,0.3202981287662543,0.3213734441196755,0.321934546697428,0.3217091636311692,0.3225196201464721,0.3248278175754346,0.3268217183970551,0.3277429152057884,0.3287266259674085,0.3284618385125471,0.3291185997613229,0.3322872206879236,0.3348390937423399,0.3372752887019326,0.3403752669119985,0.3407427055702918,0.3429593822587733,0.3470893892612395,0.3451335699607696,0.345697851860547,0.347474439188158,0.3489039131325548,0.3493642896627971,0.3531237873496313,0.0,1.695001983945547,56.61612035049521,172.7516243515178,260.23765828328976,fqhc4_80Compliance_implementation_low_initial_treat_cost,83 -100000,95660,44592,421.8900271795944,6334,64.9278695379469,4951,51.066276395567634,1997,20.342881037006062,77.28108161739658,79.66872112404353,63.29287913429015,65.05583306832634,77.03101611505973,79.42476704454313,63.19965685760665,64.96881830089193,0.2500655023368523,243.95407950039785,0.0932222766835053,87.01476743441106,158.6552,111.16231058007142,165853.23019025716,116205.63514538096,348.94741,225.42537807629105,364066.4018398494,234941.6765548561,360.82238,175.01294410460693,373862.32490068994,180345.4844907652,3265.18176,1496.4146526808129,3364015.6282667783,1515149.4401324005,1176.40666,529.7944659658907,1207935.4380096174,532211.9594852729,1966.36222,823.4802928931207,2003369.579761656,814785.8092939742,0.38163,100000,0,721160,7538.783190466235,0,0.0,0,0.0,29755,310.2968848003345,0,0.0,33075,342.3688061885846,1612758,0,57907,0,0,6267,0,0,66,0.6899435500731759,0,0.0,0,0.0,0,0.0,0.06334,0.1659722768126195,0.3152826018313862,0.01997,0.3229495861550037,0.6770504138449962,24.623361430299163,4.419592565310948,0.3169056756210866,0.2290446374469804,0.2217733791153302,0.2322763078166027,11.145949778709864,5.678376863685293,21.268652908678572,12410.763964981765,56.247319422172815,13.653995507628297,17.72755994280886,12.333845152756949,12.531918818978722,0.5574631387598465,0.783068783068783,0.7004461440407903,0.5801457194899818,0.1182608695652173,0.7193240264511389,0.9140811455847256,0.8523809523809524,0.7198581560283688,0.1458333333333333,0.496100278551532,0.7062937062937062,0.6449086161879896,0.5318627450980392,0.1109890109890109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026338449070556,0.0049777471385557,0.0071546728640003,0.0093974459265881,0.0116347659825478,0.0141847582583194,0.0162326406590941,0.0183158410585208,0.0204855609506772,0.0226102621316492,0.0246075606730167,0.0266027352252659,0.0286816125051419,0.0309199748601337,0.0329851793749742,0.034999379626949,0.0370531506054673,0.0390994768745329,0.0411937876439442,0.0432996997998665,0.0582599337575358,0.073051710055082,0.0865964013521174,0.0989245727754861,0.1117981618461733,0.1269243384507951,0.1390746756693632,0.1512323981167849,0.1624430615256303,0.172223832995071,0.1851835871769426,0.1972774369757007,0.2093476674400113,0.2204808060894803,0.2308328098654412,0.2404743153154152,0.2494355145201314,0.2581680937359171,0.2666787898074694,0.274442558267572,0.2818605297921157,0.2882839598762539,0.2948968821527259,0.3008707139854681,0.3061460399352664,0.311147860642486,0.3167901141732777,0.3220369237046103,0.3264816184581046,0.3312958920420718,0.3309392339782101,0.3298430041663218,0.3290580765586775,0.3282480386327711,0.3269686889329773,0.3257810819944087,0.3246738819944774,0.325417085261615,0.3266586662094977,0.3269729894213041,0.3280251184477701,0.3299876773860158,0.3302907013512658,0.3303123664740144,0.3315760199269667,0.3325664688504876,0.3332856243201466,0.3374190491233612,0.3417249745086319,0.344565865289092,0.3474533764990196,0.3490721539852183,0.3508339651250948,0.3518856447688564,0.3561695329386335,0.3588117881883292,0.3626339969372129,0.366350615291507,0.3688212927756654,0.3786707882534776,0.0,2.52554597785246,59.66315807761825,180.1288426475191,272.0245415099171,fqhc4_80Compliance_implementation_low_initial_treat_cost,84 -100000,95735,44570,421.3714942288609,6142,63.08037812712174,4782,49.459445343918105,1862,19.14660260092965,77.3612597271838,79.72667243723578,63.34108899169471,65.08908003218514,77.13178106154693,79.49697323220126,63.256740553559,65.00682003174153,0.2294786656368757,229.699205034521,0.0843484381357129,82.26000044361115,158.8411,111.30547120010422,165917.48054525512,116264.13662725672,347.97001,224.64153933209016,362969.8229487648,234147.06150529085,359.73469,173.5643848822882,372444.0904580352,178762.87621912864,3109.72876,1404.158907610228,3219977.416827701,1438424.3250746634,1106.07539,482.0467170737259,1145103.7342664646,493284.88816894894,1821.06236,756.7262084893583,1874944.6075103148,765984.1538168376,0.38229,100000,0,722005,7541.703661147961,0,0.0,0,0.0,29571,308.3616232307933,0,0.0,32993,341.40074163054265,1621970,0,58122,0,0,6395,0,0,62,0.6371755366375934,0,0.0,1,0.0104455006006162,0,0.0,0.06142,0.1606633707394909,0.303158580267014,0.01862,0.329922480620155,0.6700775193798449,24.8226321969616,4.374827168711888,0.3283145127561689,0.2356754496026767,0.219155165202844,0.2168548724383103,11.02060795918904,5.584317386095278,19.817504275705595,12370.246115526345,54.11771457330431,13.576485422690467,17.70595378536973,11.653519073116,11.181756292128105,0.568590547887913,0.8021295474711624,0.7063694267515923,0.5772900763358778,0.0973963355834136,0.745748987854251,0.9221411192214112,0.8533007334963325,0.6942148760330579,0.1445086705202312,0.5069072455596279,0.7332402234636871,0.6546080964685616,0.5421836228287841,0.0879629629629629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0049071295319977,0.007123865965781,0.0092755331145675,0.0114715753076375,0.0137166249159894,0.0156017376052862,0.017889416449686,0.0201826045170591,0.0222870597870597,0.0244737678529318,0.0266009346274328,0.0287768304347378,0.0306882449290739,0.0329288176170722,0.0352944825233384,0.0374570233213205,0.0393923041799842,0.0414275018717244,0.0434479093949592,0.0579796397807361,0.0718756541762612,0.0849338634051168,0.0981641536811557,0.1100630256529162,0.1266489091831557,0.1397533639419355,0.1512656005617798,0.16215956424223,0.1730890849259858,0.1857808782525379,0.1984403391883706,0.2099461927278656,0.2191704464724848,0.2295211713494262,0.2401102123468811,0.2497045773784308,0.2582497219194858,0.2670414617006325,0.2750846836949556,0.2825089299131862,0.2901469660506086,0.2968966128746231,0.3025997653987025,0.3077538551061972,0.3121641726813314,0.317278755260299,0.3215379337509371,0.3254246497367365,0.3298381672140228,0.3283082302313072,0.3274380029110482,0.3264482564679415,0.3260467802483396,0.3245125555011063,0.3232210368420247,0.3213873563400098,0.321983351904044,0.3224827351010316,0.3242404238996628,0.324634205744047,0.3250609043554041,0.3261804375642397,0.3259527643585614,0.327926453600308,0.3288913276371142,0.3296455117209834,0.3331439035170802,0.3351756671125818,0.3377135348226018,0.3405833371251763,0.3396056874041968,0.3430844399899774,0.3435345807135823,0.3460963765409039,0.3480259281084266,0.3480570734669095,0.3532849657396211,0.3538761851645287,0.3581135091926459,0.0,1.8579763191583365,54.443269396883146,178.99948938480864,269.6570418022316,fqhc4_80Compliance_implementation_low_initial_treat_cost,85 -100000,95663,44394,420.1938053374868,6073,62.33339953796138,4789,49.60120422733973,1851,19.0878396036085,77.2430810454354,79.64746385226798,63.27207635196621,65.05004067514335,77.01175334347842,79.41322487704049,63.18645121009175,64.96501715194078,0.2313277019569852,234.23897522748405,0.0856251418744662,85.02352320256534,157.86628,110.75204011143676,165023.3423580695,115773.12034060898,348.6066,225.43097176275995,363945.23483478464,235195.4813586026,363.77215,175.58685265051562,376894.43149389,181046.52158299595,3131.97388,1440.344507267297,3248231.7510427227,1480672.2590994134,1130.71922,505.1351942830869,1171836.457146441,518093.7727085968,1814.15292,761.9725692645089,1872796.2117014937,777650.8354800338,0.37995,100000,0,717574,7501.061016275886,0,0.0,0,0.0,29687,309.8481126454324,0,0.0,33342,345.11775712657976,1616935,0,57967,0,0,6305,0,0,63,0.6585618264114653,0,0.0,0,0.0,0,0.0,0.06073,0.159836820634294,0.3047917009715132,0.01851,0.3434009753028157,0.6565990246971842,24.333590199310365,4.387880307104368,0.3349342242639382,0.2347045312173731,0.2113176028398413,0.2190436416788473,11.211392086171037,5.848350060135381,19.764272269417276,12344.436503003786,54.77830409619545,13.483996006524873,18.29283808377907,11.428413306464252,11.573056699427246,0.5779912299018585,0.7927046263345195,0.7082294264339152,0.6136363636363636,0.1143946615824594,0.7392966360856269,0.9193154034229828,0.858139534883721,0.7838983050847458,0.1587982832618025,0.5173800632002298,0.7202797202797203,0.6533219761499148,0.5618556701030928,0.1017156862745098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044833952082445,0.006598783793387,0.0084942948008006,0.0107005177341755,0.0131880441977697,0.0154881468264083,0.017776915536677,0.0201959260471204,0.0224058656672094,0.0241823831646309,0.0263414634146341,0.0284768143813568,0.0306383154077553,0.0326379785510058,0.0348157875688922,0.0372204323909958,0.0392751126149502,0.0413138898712321,0.0430966181560402,0.0577023553261301,0.0718019084329272,0.0855721079651034,0.0985991095767858,0.1107381133350223,0.125849547966378,0.1382830675746019,0.1499024530655323,0.1608426773945048,0.1709572445790508,0.1850177486701984,0.1969453899017929,0.2079398791047214,0.2175108142145321,0.2275502556868277,0.2385014754498458,0.2491308090462935,0.2585313077581932,0.2672054193519055,0.2753319116736603,0.28228095994067,0.289212070116275,0.2956957407495144,0.3011024868937222,0.307458328263779,0.3132568790351451,0.3177846585852001,0.32168126362489,0.3262991226704044,0.3300402052584246,0.3286585036949134,0.3275470138458359,0.3263355545516151,0.3254399304801216,0.324523241954708,0.3228296905697446,0.3216184897693541,0.3217255289371861,0.3225469549882719,0.3235589152008025,0.3247181070346178,0.3251580077115713,0.3262702066384982,0.3263547627061595,0.3270297650634376,0.3290246460409019,0.3305359965512286,0.3326688815060908,0.3364664310954063,0.3394440210196959,0.340993874637314,0.3437316068275456,0.347586817635524,0.3502716767429402,0.3523881872566707,0.3544198236835835,0.3523364485981308,0.3530859134713963,0.3511197124688969,0.3507549361207898,0.0,1.7479630022547157,58.08598972939518,184.18433773815107,256.0624537875713,fqhc4_80Compliance_implementation_low_initial_treat_cost,86 -100000,95808,44600,421.3113727454909,6166,62.99056446225784,4871,50.17326319305277,1962,20.081830327321303,77.44904619750217,79.77535186016355,63.38601454967061,65.10682424365599,77.19887175179376,79.5261232309692,63.2935546430416,65.01696769354673,0.2501744457084101,249.22862919434863,0.0924599066290099,89.85655010926052,160.0137,112.09708446342172,167014.96743486973,117001.79991589607,351.71842,226.7416618660096,366456.3502004008,236011.33711799595,361.54954,174.84840958726025,372502.7868236473,178763.577018461,3221.15802,1469.9689381363296,3324566.6332665333,1496971.696316404,1145.35397,503.9662918139812,1182964.7837341349,513594.84339426976,1916.58042,808.7448868286384,1965521.5430861723,816289.8423818576,0.38297,100000,0,727335,7591.589428857715,0,0.0,0,0.0,29876,311.1535571142284,0,0.0,33200,341.6520541082164,1616357,0,58007,0,0,6342,0,0,61,0.636690046760187,0,0.0,1,0.010437541750167,0,0.0,0.06166,0.1610047784421756,0.3181965617904638,0.01962,0.3399691358024691,0.6600308641975309,24.568175763897823,4.449999620304967,0.3297064257852597,0.2227468692260316,0.2213097926503798,0.2262369123383288,11.063314442651285,5.6544206116692,20.94133059107536,12363.721320535717,55.07895801690334,12.990316142388457,18.183470164519825,11.944172500629897,11.960999209365164,0.5522479983576267,0.7705069124423963,0.688667496886675,0.5797773654916512,0.1116152450090744,0.7108895705521472,0.8987951807228916,0.833729216152019,0.7203389830508474,0.1422413793103448,0.4942528735632184,0.691044776119403,0.6371308016877637,0.5403800475059383,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025723342414145,0.0048858118861058,0.0070520430631233,0.0097520342133866,0.0119792143343807,0.0140409110810177,0.0163025192948829,0.0184733463293154,0.0206847215125191,0.0229507525759482,0.0250038428037095,0.0271038587848932,0.0290296052631578,0.0310524473364495,0.0333030796839868,0.0356327420371307,0.0375913390879546,0.0395997511406055,0.0414969661707256,0.0432867984634123,0.0584166988306228,0.0728415197708215,0.0860957690977498,0.0987676370780496,0.1110057425846899,0.1264662989030499,0.1395045632333768,0.15089484150193,0.1612682968463278,0.1729245202193283,0.186423908718423,0.1985047859812882,0.210134306157237,0.2203985420258856,0.2305192666593479,0.2407610077493671,0.2505430605220065,0.260176474550394,0.2691663270388987,0.276329319287983,0.2825713065460044,0.2894727631225863,0.2967726709540386,0.3024392575860791,0.3070361439943779,0.311929988446127,0.316886033310461,0.3209909429941396,0.3251342836483834,0.3285712406435402,0.3280629227960915,0.3263936541047951,0.325452016689847,0.3247668602891365,0.3238341968911917,0.3218224249172526,0.3191643559364759,0.3191764033009233,0.3194418478168499,0.3208720527353814,0.3213785896885671,0.3216625031963649,0.3221407838960931,0.3228081137170017,0.3239294710327456,0.3250233475147868,0.3270017035775128,0.3293988728866625,0.3310059296165046,0.3328719449497745,0.3353799972711147,0.3369137509305541,0.3386099899091826,0.3411961649672805,0.3421550094517958,0.3421426878407205,0.3424846625766871,0.3463584288052373,0.355444997236042,0.3499809378574152,0.0,2.655712070141706,56.53331434904237,181.3217390322041,266.9816985380268,fqhc4_80Compliance_implementation_low_initial_treat_cost,87 -100000,95794,44152,417.0929285759025,6084,62.13332776583085,4793,49.32459235442721,1906,19.354030523832392,77.3497797498425,79.6848211824511,63.33168066437421,65.06062119813708,77.10506893072471,79.44368729238099,63.240300900907634,64.97387243300967,0.2447108191177847,241.1338900701168,0.0913797634665769,86.74876512741037,160.0456,112.0100737207025,167072.21746664718,116927.66773994056,345.90923,223.7635000694002,360375.1800739086,232867.77712078608,357.11035,172.78071986881756,368276.7396705431,176911.90598545596,3153.69562,1450.7258946040183,3247931.2796208533,1470334.1626670863,1139.149,505.3164099044427,1172969.423972274,511307.3260375829,1868.69176,790.6402956400378,1901262.6051736015,785343.8512524691,0.37847,100000,0,727480,7594.191703029417,0,0.0,0,0.0,29470,306.8876965154394,0,0.0,32706,336.9313318161889,1613920,0,57955,0,0,6232,0,0,64,0.6681002985573209,0,0.0,1,0.0104390671649581,0,0.0,0.06084,0.1607525035009379,0.3132807363576594,0.01906,0.3486656200941915,0.6513343799058084,24.254859164311693,4.251113479648834,0.325266012935531,0.2322136448988107,0.2230335906530356,0.2194867515126225,11.198423710199569,5.888568205298814,20.239406258261692,12296.178389726192,54.44497236200479,13.40769811608316,17.507611377071907,11.91499891898634,11.614663949863385,0.5604005841852702,0.7870619946091644,0.6978832584990379,0.558465855940131,0.1188212927756654,0.7229470452801228,0.9112709832134293,0.8504901960784313,0.7230769230769231,0.1238532110091743,0.4997134670487106,0.7126436781609196,0.6437880104257168,0.5055624227441285,0.1175059952038369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312660818121,0.0046437588084398,0.0068301297014228,0.0091842851192229,0.0114739090631675,0.0137671198004174,0.0159869494290375,0.0180272143564406,0.0203092899414332,0.0224260227842659,0.0242539799694518,0.0265724787974618,0.0286880610366775,0.0306553258093747,0.0326999649274824,0.0347913243849261,0.0368415059573719,0.0388046387154326,0.0405847698014401,0.0429382060492477,0.0579852272253056,0.0715981219479039,0.0845046801463266,0.097329507834915,0.1094257283804865,0.1242584779367446,0.1367681846630387,0.1485699688128665,0.1597282312598147,0.1703803035992061,0.1827303393794389,0.1951092780826811,0.2071610418434623,0.2171113054887382,0.2269341226438969,0.2378677896603313,0.2484625258105921,0.2581243883508251,0.2666106830380953,0.2746063555682794,0.2818382718763378,0.2881415391091829,0.2953230558086156,0.3007580929112923,0.3059433343853942,0.3115434340946869,0.3152625,0.3200030517655735,0.3246603700349333,0.3294851835237617,0.3285512224691856,0.3272258882199782,0.3269512745319197,0.3255938586326767,0.324457402972197,0.3230983842781371,0.3211145785480064,0.3214479281291573,0.3223677461272783,0.3234037227099612,0.3234052928709417,0.323953695458593,0.3246290552435242,0.325083836351442,0.3262082231305602,0.3265359340773964,0.3268880282492311,0.329619633442129,0.3314233806163091,0.3310053661616162,0.332151461430065,0.3351351351351351,0.3383150460335477,0.339561954357482,0.3411188547749105,0.3442157558552164,0.3432560994322541,0.3454913880445795,0.3494932895097233,0.3450429352068696,0.0,2.778416271363807,56.52349857839838,177.5130719048033,262.74115461425873,fqhc4_80Compliance_implementation_low_initial_treat_cost,88 -100000,95793,44185,417.159917739292,6241,63.75204868831752,4901,50.5151733425198,1973,20.14760995062269,77.41775944651599,79.74584942320836,63.37436231324406,65.09507685691656,77.16954549753179,79.50071520956439,63.282202042450834,65.00696862981263,0.2482139489842012,245.13421364396493,0.0921602707932294,88.1082271039304,159.1128,111.41986802775725,166100.19521259383,116312.71035227751,348.9984,225.50992962221451,363675.7905066132,234764.2867664804,362.83553,175.62363778806937,374736.3272890503,180200.8271391049,3233.61351,1490.016003075961,3334409.1843871684,1514267.7047132482,1192.22537,528.4308118617561,1229201.7057613814,536324.4982344697,1942.91854,818.9127991061349,1986257.6179887883,819498.9189705445,0.37958,100000,0,723240,7550.008873299718,0,0.0,0,0.0,29613,308.4463374150512,0,0.0,33319,343.7933878258328,1620314,0,58205,0,0,6319,0,0,73,0.762059858235988,0,0.0,0,0.0,0,0.0,0.06241,0.1644185678908267,0.3161352347380227,0.01973,0.3317979425763857,0.6682020574236143,24.298826485216857,4.373151688374458,0.3197306672107733,0.2299530708018771,0.2217914711283411,0.2285247908590083,11.357200466002547,5.853055928712922,20.98918959439485,12271.932747077391,55.68594072088435,13.566770870925362,17.71203106348186,12.063689184991622,12.343449601485515,0.5686594572536217,0.7870452528837621,0.7051691129546905,0.609935602575897,0.1178571428571428,0.7225130890052356,0.9178403755868544,0.8438287153652393,0.7695167286245354,0.1346938775510204,0.5109427609427609,0.7075606276747504,0.6581196581196581,0.5574572127139364,0.1131428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020960115027491,0.004338438770235,0.0065143935627238,0.0087241778554163,0.0112462376962498,0.0135591840058634,0.015839363979207,0.0179533763370621,0.0202170935628283,0.0223932533671756,0.0244464944649446,0.0268944137633702,0.0291006650699505,0.0312139680448031,0.0333670165597739,0.0353553611452534,0.0372877146139277,0.0391884466653534,0.0412208348050113,0.0434022174795689,0.0584074120445724,0.0717168126790306,0.0854315604100715,0.0977267474840851,0.1098881422342061,0.1253922469808868,0.1375101967306898,0.1486167520785931,0.1591365033293495,0.1701129229252823,0.1828213732576148,0.195274008125162,0.2065636436692983,0.2170641680863146,0.2265550318093417,0.2364636116212687,0.2470820373900538,0.2557758184983433,0.2644589710763932,0.2724111503837663,0.2795577174151656,0.2868401695330834,0.293340892447972,0.2995655868168164,0.305676538027588,0.3104072286783533,0.3154067224790703,0.3198988602721624,0.32417511377741,0.328759547010798,0.3277897932590911,0.3271485314531535,0.3267907644253092,0.3247174957786725,0.323988186230131,0.3220040705770731,0.3198552076253102,0.319520710738112,0.3196613807082389,0.3198988405848724,0.3211239149955103,0.3219608229156413,0.3225968166436896,0.323135840402556,0.3243243243243243,0.3253168839957315,0.3278259633157969,0.3320887327037118,0.3354332913341733,0.3361700443318556,0.3388651450395562,0.3401804670912951,0.3429057245418477,0.3449193793732887,0.345779374231969,0.3474728163460389,0.3453271028037383,0.3437436211471729,0.338255400601586,0.3410493827160494,0.0,2.40334124001869,58.4109047008175,184.7532018725177,263.6521086536728,fqhc4_80Compliance_implementation_low_initial_treat_cost,89 -100000,95719,44397,420.2404956173801,6257,64.0102800906821,4909,50.69004063978939,1914,19.59903467441156,77.3893283971574,79.74765944606287,63.35181630130408,65.09249032459178,77.15136158507374,79.51279606242016,63.26392045863955,65.00839190378609,0.2379668120836555,234.8633836427041,0.0878958426645297,84.09842080568808,158.95396,111.368662951664,166063.12226412728,116349.58885034735,347.87794,224.35289342546244,362858.0846018032,233808.42196999805,361.73087,175.228948091683,373849.6118847877,179945.9927328654,3194.49361,1450.7625563076704,3301477.815271785,1479758.9781628214,1160.78855,510.8144299354223,1197436.151652232,518392.1582292144,1870.3688,777.4024149004921,1918009.799517337,782149.1679584502,0.38147,100000,0,722518,7548.323739278514,0,0.0,0,0.0,29611,308.74747960175097,0,0.0,33141,342.1473270719502,1619990,0,58078,0,0,6181,0,0,65,0.6790710308298249,0,0.0,1,0.0104472466281511,0,0.0,0.06257,0.1640233832280389,0.3058973949176922,0.01914,0.3281464530892448,0.6718535469107552,24.678686068243117,4.300281116634341,0.3271542065593807,0.2373192096149928,0.2212263190059075,0.2143002648197189,11.278594706397715,5.946421991050051,20.150170250693662,12356.77996705364,55.20758706552422,13.86299844976363,18.028227016071096,11.903053415004722,11.413308184684784,0.5640660012222448,0.7759656652360515,0.7004981320049813,0.574585635359116,0.1102661596958174,0.7421383647798742,0.8985507246376812,0.8710462287104623,0.7479674796747967,0.1492537313432835,0.5017871872422326,0.7083888149134487,0.6418410041841004,0.5238095238095238,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382693417867,0.0044594443937689,0.0066847225180812,0.0086715473736583,0.0112236183969745,0.0135272682857317,0.0157549323332789,0.0180302442807289,0.0202417566697661,0.0223884415066152,0.0243877446459678,0.02666516189929,0.0287091172511585,0.030488934637159,0.032640306911701,0.0346085482804232,0.0366072075616245,0.0386482449589245,0.0405895620900766,0.0424917964477316,0.0573475205446552,0.0715197555667168,0.0854694579627454,0.0979897384136596,0.1101308119617578,0.1257799115923944,0.1376987620795366,0.1490897476844458,0.1609846259041229,0.1717297361056006,0.1842842066722664,0.1974124035871529,0.2089362396042833,0.2189454577264576,0.2293821238392817,0.2396707946565054,0.2494698542378178,0.2590484759869531,0.2680139799832058,0.2749412910246864,0.2818766334389527,0.2882978723404255,0.2939263883469892,0.300674017407128,0.3051620968818653,0.3108673708053278,0.3150765459275565,0.3190975532252939,0.3239119462670342,0.3287109658199649,0.3289081185670904,0.3277925075213276,0.3271194774179953,0.3275170303660085,0.3269772545298182,0.3253302787323406,0.3238254504149181,0.324033948749816,0.3257682812633012,0.3265237060520785,0.3272594752186589,0.3279496736279556,0.3286401673640167,0.3289356192517189,0.3308903039769314,0.3320004154549231,0.3339486538679995,0.3367474785441333,0.3409313382743672,0.3443049964480227,0.34505444646098,0.3504903260005301,0.3563247325361863,0.3590151515151515,0.3544054104828104,0.3554558337269721,0.3588494901841424,0.3568698451015892,0.3605042016806722,0.3642384105960264,0.0,2.3566886590861595,55.4292745877541,181.5304996766561,274.8859797035232,fqhc4_80Compliance_implementation_low_initial_treat_cost,90 -100000,95672,44402,420.1229199765867,6024,61.64813111464169,4701,48.54084789698136,1868,19.20102015218664,77.35982293729873,79.73616713350759,63.33991942654043,65.09002105742564,77.12972859433394,79.50611385364557,63.25341755709789,65.00608944104405,0.2300943429647901,230.0532798620196,0.086501869442543,83.93161638159086,158.87014,111.19817716938846,166057.09089388745,116228.54875970865,346.8747,224.7789606014711,362001.7664520445,234382.67267483813,354.02569,171.05540050484248,366000.271761853,175755.7729620137,3058.63831,1399.4787905564908,3160714.963625721,1426648.5473256567,1108.32712,486.228852402062,1143624.3833096412,493452.411701086,1820.69756,764.6812169763666,1872653.9217325863,771963.5818206788,0.38029,100000,0,722137,7548.049586085794,0,0.0,0,0.0,29553,308.3033698469772,0,0.0,32516,335.82448365247933,1618938,0,58016,0,0,6300,0,0,49,0.5121665691111297,0,0.0,1,0.0104523789614516,0,0.0,0.06024,0.158405427436956,0.3100929614873838,0.01868,0.3334387351778656,0.6665612648221344,24.41888359900208,4.389094130027621,0.3237609019357583,0.2397362263348224,0.2174005530738141,0.2191023186556052,11.402824805298138,5.898307595796895,19.659958822287507,12350.727187714218,53.22764739321816,13.44317258309945,17.21831277482415,11.380217009757835,11.185945025536729,0.5664752180387151,0.7905944986690329,0.6938239159001314,0.5880626223091977,0.1116504854368932,0.7153225806451613,0.9275,0.8453865336658354,0.6681614349775785,0.1296296296296296,0.5131464894539151,0.7152682255845942,0.639607493309545,0.5657071339173968,0.1068796068796068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022481467979098,0.0047029728058706,0.0069903109623091,0.0092421441774491,0.0113775012201073,0.0136495495953992,0.0159671486361181,0.0183446924866342,0.0203987824061778,0.0224138636549635,0.0246481037556088,0.0268273916388817,0.0290357062100437,0.0312393818020819,0.0331927095689486,0.0351713089762803,0.0371236904219636,0.0391636242947228,0.0409207161125319,0.0430110888777722,0.0575440356045884,0.0715370197794833,0.0842691912088834,0.0968929852803467,0.1091001139096316,0.1249325446792301,0.1375013268230548,0.1494737739145255,0.1608433477312577,0.1717478583850398,0.1848135374003018,0.1975543978598273,0.2091967784066173,0.2191255993169429,0.2286453744493392,0.2392311101263018,0.2483675451227271,0.2587499859460553,0.2660565025574722,0.2738157924860917,0.2808368897678776,0.2878461826347305,0.2941308694263371,0.3007209062821833,0.3057412147163357,0.3112016343408487,0.3164523747048018,0.3212157405877943,0.3252346841138896,0.3295758678426874,0.3290904447640425,0.3284127769531035,0.3277252953019189,0.3268781205806805,0.3261862396204033,0.324391698655696,0.3228919474766651,0.3239136142838388,0.3243885347052489,0.3253446674762483,0.3268272580826434,0.3286188369152971,0.3288652452561471,0.3291919914193779,0.3308994836075417,0.3321457363534704,0.3332765764231795,0.335308502633559,0.3382877526753864,0.3399088928500693,0.3402572610335894,0.3449705085286147,0.3424882926211872,0.3450752655306793,0.3498352941176471,0.3521982604551412,0.3529051050130308,0.3581667676155865,0.3552489177489177,0.3537753928708317,0.0,2.3512682733636,54.08923771735931,177.60378206525152,258.1152524096888,fqhc4_80Compliance_implementation_low_initial_treat_cost,91 -100000,95862,44307,418.7582149339676,6114,62.51695145104421,4809,49.675575306169286,1841,18.85001356116084,77.34109898624328,79.63259341576412,63.34986309044478,65.04448082795629,77.1046770698753,79.39689253112117,63.26235760913198,64.95962329351224,0.2364219163679877,235.70088464295225,0.087505481312796,84.85753444405475,159.40232,111.69187739347136,166283.11531159375,116513.1933336164,344.59958,222.34604393190827,359012.79964949616,231482.0407793581,359.05369,173.05187532921116,371745.968162567,178306.74407365214,3117.58564,1429.4691348728302,3220902.7247501616,1459916.614375698,1133.85855,497.94072181446313,1169760.2178131065,506392.2219591317,1798.93052,759.673249626102,1843615.0299388703,764663.6124339006,0.37913,100000,0,724556,7558.323423254262,0,0.0,0,0.0,29301,305.15741378231206,0,0.0,32866,339.98873380484446,1618449,0,58115,0,0,6401,0,0,54,0.5633097577768041,0,0.0,0,0.0,0,0.0,0.06114,0.1612639464036082,0.3011122015047432,0.01841,0.3359375,0.6640625,24.787862401437728,4.291823142870157,0.3256394260761073,0.2416302765647743,0.2166770638386358,0.2160532335204824,11.074151577246903,5.730842465408702,19.66985546186052,12303.692269578827,54.72204359035468,13.817014519993428,17.786280022157136,11.82459304450514,11.294156003698973,0.5687253067165731,0.7624784853700516,0.7113665389527458,0.5978886756238004,0.107795957651588,0.7298578199052133,0.9137055837563453,0.8603491271820449,0.7346153846153847,0.1327014218009478,0.511148744002258,0.6848958333333334,0.6600858369098712,0.5524296675191815,0.1014492753623188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.0045090231125431,0.0068161762468429,0.0092899059841208,0.0113125851238997,0.0134433770251567,0.015465020324582,0.0176689619994899,0.0197229996118726,0.0219728510490297,0.0243785018488737,0.0262556023917212,0.0284505248454222,0.0304651569557478,0.032262718064443,0.0343179753942696,0.0363044152621238,0.0385635542293505,0.0405514835655405,0.0426151733322235,0.0570072992700729,0.0700513131355356,0.0832931811040117,0.0965668616557619,0.1094707579554788,0.1255518705507087,0.1385787232239337,0.1505454081524166,0.1615550433260767,0.1724149018262882,0.185227835295637,0.1971795953238382,0.2091251032743401,0.2203202710826911,0.2296952359995599,0.2398657257126397,0.2492774969593501,0.2583922062727805,0.2672877470893947,0.2747803978606686,0.2823428697030344,0.288706451952426,0.2951628358155986,0.3013106191297681,0.3067451885131443,0.3117489739829182,0.3156623792602973,0.3198631356686763,0.3234087703634693,0.3273629608120059,0.3258375525153506,0.3250570854769044,0.324374603622014,0.3235494188991649,0.3231144710994702,0.3214608791646862,0.319610671654804,0.3195918703200855,0.3196072709795911,0.3198455459770115,0.3208073422158566,0.322265469854635,0.3232184973045822,0.3245238845617036,0.3251120533010296,0.3271209575808483,0.329608938547486,0.3328479169304799,0.3360675937334976,0.3378174003024755,0.3412296316582226,0.3423600766120451,0.3421966778247963,0.3457908357436444,0.3468169761273209,0.346585482330468,0.3451886066204773,0.3466313861184612,0.3449035812672176,0.3404255319148936,0.0,1.9518790259494987,55.67889454775077,185.5649252981501,263.07916697700495,fqhc4_80Compliance_implementation_low_initial_treat_cost,92 -100000,95642,44509,420.5579138872044,6278,64.4173062043872,4934,51.002697559649526,1949,19.980761590096403,77.31769350596971,79.74141025773815,63.289715480586615,65.08189487020067,77.07890785765004,79.50267112664653,63.20176560999854,64.9963982430237,0.238785648319677,238.73913109162004,0.0879498705880763,85.49662717696549,159.0963,111.436288031658,166345.6431274963,116513.96670046424,349.39638,225.280285717429,364726.7727567387,234955.2348522919,361.55585,175.0476534805392,374188.0031785199,180014.80576342857,3227.42461,1458.1031044060403,3339071.558520315,1489438.722647186,1162.17639,509.6182345697919,1199624.1504778236,517331.6896026768,1905.7822,790.2193229172079,1956303.088601242,795877.1065537189,0.3814,100000,0,723165,7561.165596704377,0,0.0,0,0.0,29780,310.76305388845907,0,0.0,33084,342.1091152422576,1613757,0,57878,0,0,6198,0,0,65,0.6796177411597416,0,0.0,0,0.0,0,0.0,0.06278,0.164604090194022,0.3104491876393756,0.01949,0.3349529304585484,0.6650470695414515,24.60761208435328,4.386565999676051,0.3305634373733279,0.2259829752736116,0.2239562221321443,0.2194973652209161,11.224911764703933,5.802866779064875,20.605117393468163,12419.730523039843,55.53998594563107,13.302927811077849,18.392838746681715,12.152127176888555,11.692092210982937,0.5614106201864613,0.7865470852017937,0.7014101778050276,0.5619909502262443,0.1181902123730378,0.7235521235521235,0.922077922077922,0.8496583143507973,0.6785714285714286,0.1735159817351598,0.5037098103874691,0.7150684931506849,0.6468120805369127,0.5275498241500586,0.1041666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806629386498,0.0046039021620086,0.0069644670050761,0.0092683868738503,0.0114867683416932,0.0136715566422167,0.0159753534776487,0.0179813851796606,0.020109913726935,0.0226531909223231,0.0248832315351845,0.0269803405445422,0.0290080423432978,0.0312867487776196,0.0335992065132041,0.0356270695364238,0.0376779437837613,0.039606120095977,0.0418570283799394,0.0439153604688754,0.0588991420121435,0.0735167759917849,0.0865089702113356,0.0997293226747553,0.1119347821495702,0.1277733651045803,0.1395751644404773,0.1511175536393771,0.1626464138631866,0.1727708203552939,0.1854364638500285,0.1979694881463182,0.2098613486107632,0.2194905602523106,0.2299656175614916,0.2406610470275066,0.2506481315930627,0.2598898685855207,0.2681614349775785,0.2757700064167201,0.2827501563115114,0.2897982587530425,0.2969305101605798,0.3026337882894768,0.3077418884078416,0.312470715888634,0.3176919707115589,0.3222223635831605,0.3271104316733171,0.3312813738441215,0.3305926594869998,0.3290607704380868,0.3283382203676553,0.3272256983078768,0.3262093240854881,0.3249210873096135,0.3238789415306607,0.3240795432171687,0.324244078902464,0.3250876474880319,0.325997685444432,0.3263856085655802,0.3272867217241164,0.328768645932908,0.3304645102679959,0.3312229170450712,0.3318782243891377,0.3356234970800412,0.3366506040924645,0.3384591058228248,0.3413767983973775,0.3443423777411989,0.3472187264032217,0.3484572123423012,0.3517753146721773,0.3525724423418095,0.3597001223990208,0.3653269346130773,0.356343792633015,0.3484848484848485,0.0,2.28335867032493,56.74356116986202,178.09747471932744,278.96377224936003,fqhc4_80Compliance_implementation_low_initial_treat_cost,93 -100000,95713,44380,419.3996635775705,6236,64.00384482776634,4904,50.6723224640331,1949,19.96593984098294,77.34880342590687,79.70520310879488,63.338894218876014,65.07677827822782,77.10209977920991,79.46083352290744,63.24740772047315,64.98872825611329,0.2467036466969574,244.36958588744065,0.0914864984028653,88.05002211452972,159.3493,111.58696834276265,166486.57967047318,116584.96582780044,350.10514,225.7492046078926,365251.9511456124,235326.09426921385,360.37178,173.8756748953377,373200.8818028899,179116.44827273986,3210.51538,1467.5209995047442,3319800.1629872643,1498736.7959469932,1190.0254,530.2306980677632,1229176.966556267,539831.7732398278,1916.5615,811.5679270429954,1965853.896544879,817338.3094695577,0.38039,100000,0,724315,7567.571803203327,0,0.0,0,0.0,29736,310.1041655783436,0,0.0,33022,341.7090677337457,1616130,0,58026,0,0,6335,0,0,72,0.7418010092672888,0,0.0,1,0.0104479015389758,0,0.0,0.06236,0.1639370120139856,0.3125400898011546,0.01949,0.3325168401714635,0.6674831598285365,24.46944868869,4.355582236960513,0.3164763458401305,0.241231647634584,0.2177814029363784,0.224510603588907,11.020125841316789,5.675142639506844,21.09045439668803,12367.02325657626,55.80018374094031,14.09222614395989,17.45111353719649,11.969434669403425,12.287409390380503,0.5570962479608483,0.7819103972950127,0.6733247422680413,0.5758426966292135,0.1335149863760218,0.7069625095638867,0.909307875894988,0.8481675392670157,0.6975806451612904,0.1782945736434108,0.5026410897970531,0.7120418848167539,0.6162393162393163,0.5390243902439025,0.1198102016607354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050023796745,0.0043688926732352,0.006656181827406,0.0088176434136876,0.0111538148690418,0.0135491423627016,0.015727725850347,0.0179238542410942,0.0199685245365544,0.0221997052321296,0.0243837441705529,0.0263463097718432,0.0287259417667379,0.0306696042498867,0.0328753275154215,0.0349463198900565,0.0369549685742982,0.0392313518785602,0.0413408750623856,0.0434089464525742,0.0580973964262216,0.0725409750277353,0.0858845500136391,0.0985586533403471,0.1105848847634618,0.1254839323869766,0.1373924300463704,0.150155968870104,0.1606679273100221,0.1715830347757063,0.1849478117560886,0.1977475089526241,0.2090724205809742,0.2194956586400717,0.2300541277944024,0.2405357795725728,0.2496761079342387,0.2584759117514633,0.2673969803609944,0.2754722168130949,0.2830653842147296,0.2903761579489098,0.2965299311193694,0.3022573147060938,0.3072914768793499,0.3125184820108427,0.3172018807523009,0.3219239914048494,0.3256884887526356,0.3298301598185558,0.3289206114066393,0.3274777317345154,0.3264112107370439,0.3259759607735366,0.3261597037345509,0.3238592835473294,0.3221724187085227,0.3230327398047099,0.32334643650658,0.3240495926825782,0.3244730635318782,0.3261208615481807,0.3271135683022345,0.3277995301487862,0.3271882746504296,0.3276936312208347,0.3282699940039402,0.3312759793424865,0.334480578773618,0.3380651318143862,0.3413173652694611,0.3440796872489691,0.3462420382165605,0.3478461894120366,0.353594833317504,0.3542966874699952,0.3576323987538941,0.3653128885205138,0.368376787216148,0.3744647722849358,0.0,2.1912600486844287,57.50093861769432,187.7399251285376,266.1521640771663,fqhc4_80Compliance_implementation_low_initial_treat_cost,94 -100000,95622,44353,421.3151785154044,6226,63.54186275124971,4947,50.99244943632218,1967,20.02677208173851,77.26744378178137,79.67977798614298,63.28338998351626,65.06828912837348,77.00787134795328,79.42688721741692,63.18650353647997,64.97692583521622,0.2595724338280831,252.8907687260613,0.0968864470362902,91.36329315725789,160.53246,112.3753238927896,167881.4289598628,117519.5867026614,349.36061,225.59040556792428,364541.5490159168,235108.18126474207,362.07528,175.37106454430167,374121.5933571772,179829.5110719202,3205.23798,1488.7594078523534,3305804.260525821,1510990.1998259856,1169.86028,526.5231486985588,1204288.1240718665,531513.5288648078,1920.823,820.1843211916381,1959123.2352387528,816959.3223782751,0.37966,100000,0,729693,7630.974043630127,0,0.0,0,0.0,29717,309.9914245675681,0,0.0,33219,342.82905607496184,1607789,0,57755,0,0,6336,0,0,73,0.7529647988956516,0,0.0,0,0.0,0,0.0,0.06226,0.1639888321129431,0.3159331834243495,0.01967,0.33548288039306,0.6645171196069399,23.9529396031617,4.351820663777616,0.3327269051950677,0.2328684050939963,0.2195269860521528,0.2148777036587831,11.338874002926504,6.000511150968937,21.228799115324783,12276.216405888244,56.63459798655353,13.86026551855138,18.78811097132092,12.244394343540767,11.741827153140466,0.5666060238528401,0.7916666666666666,0.6938031591737546,0.5911602209944752,0.1006585136406397,0.7318996415770609,0.9174528301886792,0.8581081081081081,0.775438596491228,0.1239669421487603,0.5016891891891891,0.7184065934065934,0.6331114808652246,0.5255930087390761,0.0937880633373934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021379212515451,0.0044007300750354,0.0066703216374269,0.0086883180229249,0.0108953295557431,0.0129343707988756,0.015029467544915,0.0170905267026717,0.0192742257078293,0.0212593829044249,0.0233013691605558,0.0251366232485515,0.0270862480454283,0.0292217493894962,0.0314609524989162,0.0336307339212422,0.0356802551992708,0.0377924477382657,0.0397049951109909,0.0417144525303918,0.0560397984991952,0.0702577584130209,0.0832974533998424,0.0965904304607867,0.1088776512072296,0.1247498332221481,0.1372644815939843,0.1485953619234376,0.1599413765805858,0.1702596161075844,0.1839391651386042,0.1962708963066489,0.2075237566534957,0.2182673890439446,0.2276070917299857,0.2384561683454672,0.248961821835231,0.2576059429343238,0.26536661820825,0.2727574979363478,0.2797382593085876,0.2867857853289804,0.2939532460150162,0.2999868005807744,0.3057778859019584,0.3121118970902312,0.3169512546509151,0.3207455883476356,0.3257179902755267,0.32990795111887,0.3283739266619863,0.3276760602216952,0.326810397164923,0.3259742141098073,0.3240196809303712,0.3227124057552631,0.3211653323166857,0.3218872827141611,0.3220611640682491,0.3232952207132249,0.3234525666810774,0.3239484194003457,0.3250263102504735,0.3255944369672499,0.327011355399855,0.3280795153549605,0.3279021820056125,0.3307327858496525,0.3349341431547724,0.337284267008369,0.3394440339859623,0.3453524775990499,0.3477648264378122,0.3495280829336221,0.3528179741051028,0.3529979490891543,0.3550848777448995,0.3624119353501865,0.3634285714285714,0.3695038321903993,0.0,2.8500344321077056,60.761601944868254,183.71227119744967,266.0549844993559,fqhc4_80Compliance_implementation_low_initial_treat_cost,95 -100000,95845,44218,417.9978089623872,6105,62.5802076268976,4815,49.71568678595649,1880,19.270697480306744,77.40182060844235,79.71499220760538,63.36325590393732,65.07521671170761,77.16976453320954,79.48408596039998,63.2780952910512,64.99301426982471,0.2320560752328049,230.90624720539665,0.0851606128861206,82.20244188289882,159.2789,111.54172624364372,166183.8384892274,116377.19885611533,346.56034,223.6341547491505,361060.5456727007,232805.3573469148,357.09652,172.4478095107484,369275.89336950285,177377.3556112217,3138.28797,1427.2808742673978,3239127.4244874534,1453946.0423260469,1150.41047,507.2342744658711,1184627.596640409,513586.7038783314,1842.4555,764.0505725336519,1889088.4448849703,768247.8573847375,0.37851,100000,0,723995,7553.810840419427,0,0.0,0,0.0,29552,307.7990505503678,0,0.0,32668,337.5762950597319,1620634,0,58203,0,0,6232,0,0,69,0.7199123584954875,0,0.0,0,0.0,0,0.0,0.06105,0.1612903225806451,0.3079443079443079,0.0188,0.3355820520866018,0.6644179479133981,24.59415841436951,4.464094621570316,0.3356178608515057,0.2274143302180685,0.2166147455867082,0.2203530633437175,11.502377105699832,5.947699582837932,19.86752241600416,12330.77456218006,54.572886543232215,13.123534804589246,18.349410143894573,11.59732415478921,11.502617439959192,0.563447559709242,0.7881278538812785,0.6974009900990099,0.5848513902205177,0.1065032987747408,0.7532971295577967,0.9343434343434344,0.8530066815144766,0.7708333333333334,0.1617647058823529,0.494044242768009,0.7052932761087267,0.6375321336760925,0.5292652552926526,0.0933488914819136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001964397820936,0.0042566560925924,0.0064318467719027,0.0085316432554313,0.0106749626376307,0.0128771529785414,0.0151760688987412,0.0174831598285364,0.0197272931700635,0.0220975814458102,0.0242632361232125,0.0266761095372993,0.0285652611886602,0.0307651122803043,0.0327052198397227,0.03498620597018,0.0368909728907244,0.0388009249178254,0.0408699535733945,0.0426900341353759,0.0575799924909265,0.0716294337176847,0.0853478356543334,0.0977626050420168,0.109771252843542,0.1254435994930291,0.1376800847457627,0.1493744618884129,0.1604345413411875,0.1706653528126472,0.1830529983653101,0.1958553477466965,0.2069827061788476,0.2180258917354017,0.2283214438814206,0.239183131329902,0.2492472734571893,0.257970949318703,0.2666591050870527,0.2737667391553164,0.2801064075873236,0.2872673711774058,0.293424148899689,0.2995220011261126,0.3049026273614686,0.3101091213636475,0.3147441749940593,0.3200971108258233,0.3256102767105212,0.3299062833643086,0.3291423499986553,0.3286833424958768,0.3283225289328252,0.326562973000245,0.3265756753953082,0.3254587155963303,0.3228936224006067,0.3232374524963963,0.3237690943807965,0.3255590371741917,0.3273569400866577,0.3283749704468437,0.3296097550790303,0.3301375666094401,0.331458388185452,0.3334457968908151,0.3334656159646238,0.3362063581287864,0.3389387014618149,0.3406619478824785,0.3436676061460132,0.3484381640458988,0.3491354919836529,0.3523917995444191,0.3565833644162626,0.3593915811814644,0.3632890111569616,0.3616026032133415,0.3602535832414553,0.366705024932873,0.0,1.9817735840749309,56.82469052522502,180.5116163744516,262.81267913005536,fqhc4_80Compliance_implementation_low_initial_treat_cost,96 -100000,95692,44299,419.9201605149856,6215,63.69393470718556,4904,50.63119174016637,1917,19.677716005517706,77.32145341825886,79.7092438090893,63.3143933609397,65.08038221832817,77.08106378191509,79.47177682477921,63.22439537160143,64.99456093645935,0.2403896363437638,237.46698431008892,0.0899979893382649,85.82128186881732,158.27196,110.81924937727914,165397.27458930734,115808.26963307188,346.95751,224.09896207581627,361954.78200894536,233566.64220049093,358.91466,173.75049299595935,371354.99310287175,178687.47072204348,3184.65055,1466.9128487911028,3290564.571751035,1495592.4775841287,1141.03934,508.2250716531957,1176782.0820967269,515507.4847098621,1872.2258,789.6678105378841,1923421.9161476404,795208.6355857373,0.38073,100000,0,719418,7518.057935877608,0,0.0,0,0.0,29592,308.58378965848766,0,0.0,32992,341.07344396605777,1622740,0,58228,0,0,6217,0,0,53,0.5434101074279982,0,0.0,0,0.0,0,0.0,0.06215,0.1632390407900611,0.3084473049074819,0.01917,0.3311329444273871,0.6688670555726128,24.36008568884029,4.252256007314672,0.3134176182707993,0.2453099510603588,0.2267536704730832,0.2145187601957585,11.10268501444746,5.822438440683307,20.42150345469109,12338.587491520691,55.93565164465574,14.413240944810772,17.5163619343167,12.379652464794717,11.62639630073355,0.5613784665579119,0.8029925187032418,0.6844502277163305,0.545863309352518,0.1216730038022813,0.7217327459618208,0.9365079365079364,0.8392434988179669,0.7233201581027668,0.1306122448979592,0.4997176736307171,0.7257217847769029,0.625673249551167,0.4935972060535506,0.1189591078066914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405203858312,0.0046749822533211,0.0068824102647393,0.0091259235170374,0.0114561289272342,0.0136908157444381,0.0157969344360932,0.0177865814435515,0.0199963196957615,0.0219362895631167,0.0240831684386437,0.0259712252379925,0.0281866905327696,0.0300791393594658,0.0321744874997419,0.0343369383155152,0.0363886846003252,0.0382543718540812,0.0404147556498497,0.0421704327524389,0.0567805550623061,0.0699802150177436,0.0833866854186127,0.0967786068342787,0.1091344581262595,0.1247499391386263,0.1369657983567925,0.1488022325660662,0.1606532147742818,0.1714717806808675,0.184762233091293,0.1975469022333365,0.2088776253820468,0.2198313113301462,0.2300177131352249,0.2393998117490726,0.2491326320016957,0.2582367554321557,0.2666840547497817,0.2739264857437307,0.2814914187907665,0.2881310356115696,0.294570890885204,0.3003475967877262,0.3057148410924288,0.3102976857610878,0.3163709616876454,0.3215907212168228,0.3263059870403663,0.3306877958102068,0.3296015716457876,0.3287434036939314,0.3284039903758213,0.3272246772376744,0.3261512400255583,0.3246721411937737,0.32205805501449,0.3231372935342987,0.3241548946927899,0.324669296820608,0.3254249358145462,0.3258475832756746,0.3265190708585552,0.3279000514967646,0.3299284492519694,0.3308650374169239,0.3310512747063878,0.3339962748997696,0.3382783043799993,0.3425524294639659,0.3459188326493388,0.3473897726059571,0.3487809535934814,0.3508474576271186,0.3540166729821902,0.3569204980842911,0.3614197530864197,0.3732653061224489,0.3778699861687413,0.37557781201849,0.0,2.356840445100139,59.78310612311215,183.75203069183948,262.7323595038217,fqhc4_80Compliance_implementation_low_initial_treat_cost,97 -100000,95698,44460,421.2000250788941,6191,63.49140002925871,4839,49.89654956216431,1958,20.042216138268305,77.3455376358958,79.73244001386635,63.32130932583449,65.08750605923142,77.10289480934013,79.49248863150434,63.23127437966736,65.0013229380149,0.2426428265556666,239.9513823620083,0.0900349461671297,86.18312121652139,159.58052,111.71480068261874,166754.28953583149,116736.81861963548,349.37558,225.632529680743,364431.6286651759,235125.84346667948,359.4657,173.94689930134442,371507.4087232753,178628.49142222264,3179.88672,1457.6028960782155,3282021.1812159084,1482313.95230644,1142.4226,503.5947315558445,1177648.2162636628,510154.6753890594,1912.02636,800.2441800093959,1959330.1218416267,802969.7713043068,0.38072,100000,0,725366,7579.740433446886,0,0.0,0,0.0,29841,311.13502894522355,0,0.0,32950,340.2056469309704,1615923,0,57920,0,0,6273,0,0,55,0.5642751154674079,0,0.0,1,0.0104495391753223,0,0.0,0.06191,0.1626129438957764,0.3162655467614279,0.01958,0.3358601485148514,0.6641398514851485,24.534611267507028,4.426438300550909,0.3244471998346765,0.2250464972101674,0.2283529654887373,0.2221533374664187,11.569723299509803,6.131135866500175,20.802895987411897,12385.60072329818,54.908540538361336,13.039154013900005,17.768157383387592,12.38996401689494,11.711265124178796,0.5577598677412688,0.7658402203856749,0.7025477707006369,0.5846153846153846,0.107906976744186,0.7329240214888718,0.9129353233830846,0.8747044917257684,0.7333333333333333,0.1390134529147982,0.4932126696832579,0.6797671033478894,0.6390584132519617,0.54,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0046148384806531,0.0070663485456114,0.0093192951076241,0.0115976235045169,0.013750254634345,0.0160306744712528,0.0182592445084403,0.020379990183246,0.0225904231352148,0.0245525870468181,0.0265714872637633,0.0287195523370638,0.0307074037817507,0.0326112756581595,0.0347576167977917,0.0367949448386595,0.03851702699617,0.0405066713811787,0.0424498812153544,0.057245809180636,0.0714966036234993,0.0850134867074591,0.0969276094276094,0.1098054934390954,0.1261357506267122,0.1384535393300155,0.1508009202061943,0.1622375678795912,0.172416754331351,0.1849344601586754,0.1975199003628093,0.2094263633395014,0.2203998118017791,0.230273078489428,0.2399224376731302,0.2488839285714285,0.2577995792221235,0.2659935333824947,0.2743475274725275,0.2827034967785219,0.2895481216541599,0.2962236042469673,0.3018624024512855,0.3078303900640403,0.3124861606593677,0.3172243184487368,0.3216371299446504,0.3268776387651547,0.3307599231922561,0.3301165038118758,0.3285114901552131,0.3277502213104388,0.3270588913551065,0.3257681253888774,0.3237221093785793,0.3216934731381758,0.3224762655628921,0.3238635392999299,0.3251970051641263,0.325935522634672,0.3272024576355168,0.3295366186823579,0.3310639822632298,0.331839321429432,0.3328805057735514,0.3339324945076892,0.3366186982397581,0.3405802191626861,0.3443861323155216,0.3485282744188162,0.3557937181663837,0.3550455831499528,0.3608239586500456,0.3604343720491029,0.3648891551827442,0.363257107540173,0.3642696168817865,0.3683342495876855,0.3809708737864077,0.0,2.6117495426876904,56.77690560928569,180.18990602279803,265.2634982047488,fqhc4_80Compliance_implementation_low_initial_treat_cost,98 -100000,95610,44343,418.0629641250915,6214,63.66488860997804,4862,50.28762681727853,1954,20.02928563957745,77.23812690061078,79.66864233237351,63.25655152000609,65.05412344954591,76.99383776155052,79.42704115466401,63.164748891232,64.96609499428442,0.2442891390602568,241.601177709498,0.0918026287740971,88.02845526149383,159.9015,112.01459706817003,167243.48917477252,117157.8256125615,350.7963,226.57997321136855,366324.1188160234,236404.31253150155,358.99082,173.1653569958974,372351.4172157725,178685.7804030102,3183.23426,1456.2625368604854,3293289.875536032,1487023.0382391843,1158.03714,510.7510432730121,1196968.967681205,520010.66212182445,1910.01628,808.1549955874506,1959766.802635708,811874.1082004703,0.38105,100000,0,726825,7601.976780671478,0,0.0,0,0.0,29886,311.97573475577866,0,0.0,32879,340.7384164836314,1605790,0,57698,0,0,6470,0,0,77,0.8053550883798766,0,0.0,0,0.0,0,0.0,0.06214,0.1630757118488387,0.3144512391374316,0.01954,0.3364572130895683,0.6635427869104317,24.590468302329963,4.230131724047466,0.3284656519950638,0.2295351707116413,0.2202797202797203,0.2217194570135746,11.003610066098137,5.778251274324969,20.82460792764691,12369.04831774995,55.35255518258717,13.550055176419113,18.065437470581475,11.884468571610036,11.852593963976547,0.564993829699712,0.7741935483870968,0.7119599248591109,0.5723622782446312,0.1233766233766233,0.7270624518118736,0.8971291866028708,0.8768115942028986,0.6761133603238867,0.1743119266055046,0.506030855539972,0.7005730659025788,0.6542688081149619,0.5412621359223301,0.1104651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.0045439331392695,0.0067520916253756,0.0090056208897878,0.0113479075069206,0.0137636643336695,0.0161048498138609,0.0183876108364319,0.020733179223861,0.0231274261776243,0.0252708692440285,0.027578270295819,0.0297029702970297,0.0319680834613362,0.0340575818910322,0.0362153884359091,0.0382633755947876,0.0404504186317079,0.0425748964253742,0.0448366872176843,0.0591925063248792,0.0729248535529776,0.0866226111805679,0.0993196132538495,0.1113129435620142,0.1273052763153713,0.1398561273389933,0.1514670135187001,0.1631637523275474,0.1732651460618627,0.1859897907425993,0.1981177082881554,0.2095202807262265,0.2200050407092058,0.2308726607445941,0.2406201103059492,0.2502936537235292,0.2587881043407653,0.267691012897209,0.2752965765931302,0.282282491383212,0.2893455795239938,0.2945149382173846,0.3005844999278395,0.306181658600807,0.3110256663864299,0.3149119943756748,0.319459866498194,0.3238955301455301,0.3282327557679325,0.3271909323029951,0.3257936672328321,0.3250787551738264,0.3242436103741719,0.3233629267711375,0.3215695914698788,0.3205877680698967,0.3217375541749748,0.3219655361801455,0.3218924099385558,0.3223491395506124,0.3230040246634548,0.323327237182317,0.323852922690132,0.3247151409810738,0.3254420843360887,0.3274736601007787,0.3309438848012126,0.3348719213558366,0.3386764005713379,0.3412839844642449,0.3421794394511514,0.3438090439601965,0.3457673568818514,0.3474592162010125,0.3498940428537791,0.3523190814322405,0.3583699560527367,0.3625922887612797,0.3582032736962314,0.0,2.1415933226875894,57.08182576280628,186.4119545724317,263.7315036052285,fqhc4_80Compliance_implementation_low_initial_treat_cost,99 -100000,95718,45073,427.3072985227439,5871,60.07229570195784,4555,47.00265362836666,1778,18.19929375874966,77.33641368994157,79.71336803421676,63.332022412709286,65.09012884318743,77.11049089887044,79.48892019815645,63.24736275537304,65.00853172455085,0.2259227910711274,224.44783606030683,0.0846596573362461,81.59711863658003,156.618,110.18098141136058,163624.39666520405,115109.99123608996,392.56923,258.0751445816282,409541.3924235776,269030.6364337201,375.20559,182.28492871221428,388455.3480014208,187629.3674576275,3270.61107,1494.9032871963216,3377630.4874736206,1522485.391667527,1065.15056,474.6222902908127,1095868.6558432062,478926.08840949135,1745.07922,736.73695798751,1788659.4997806055,740386.2077561986,0.38064,100000,0,711900,7437.472575691092,0,0.0,0,0.0,33905,353.61165089115946,0,0.0,34231,354.0713345452266,1589537,0,57008,0,0,0,0,0,74,0.7731043272947616,0,0.0,0,0.0,0,0.0,0.05871,0.1542402269861286,0.3028444898654403,0.01778,0.3332254933678421,0.6667745066321579,24.60638754036705,4.391382883331096,0.3185510428100988,0.236443468715697,0.2221734357848518,0.2228320526893523,11.024522599914038,5.6002986625604185,19.009351850149844,12125.459503727214,51.74509776476446,12.776933386726672,16.418569618076102,11.567351345096762,10.982243414864914,0.5571899012074644,0.7845868152274837,0.6919365954514128,0.5721343873517787,0.1083743842364532,0.7310574521232306,0.9224598930481284,0.8384401114206128,0.7416974169741697,0.1573604060913705,0.4949314251639833,0.7112375533428165,0.6437728937728938,0.5101214574898786,0.0965770171149144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0044929461759247,0.0068023757551144,0.0087812017237173,0.0111797198457829,0.0132096225531134,0.0155212678081563,0.0175821931794976,0.0197110813491049,0.0218966893925434,0.0237199528471118,0.0257281603236039,0.0278780400020566,0.0302505948150665,0.0325140333498431,0.0346570471741017,0.0368096253805214,0.0390273253522003,0.0408547168438665,0.0426648889629598,0.0573702017459588,0.07116849418264,0.0844354018311292,0.0970091984231274,0.1096600790513834,0.1251030459320636,0.1365997413445841,0.1479740508348399,0.1593599555939838,0.1689273163623896,0.1809199905288761,0.1935825754052797,0.2052552650453152,0.2151096740365289,0.2248313298024306,0.2350534614491535,0.2443728828668211,0.2538856609838055,0.2626316445794742,0.2699438427138494,0.2770798904438871,0.2836821451929365,0.2899925573263081,0.2963259932982288,0.3015403274711946,0.3063635021408534,0.3108498169413587,0.314404432132964,0.319396847155586,0.3233754072198261,0.3222611036339166,0.320586088656926,0.3188799954906713,0.3184138599256678,0.3181622055913466,0.3161760196258816,0.3145324881141046,0.3150336033652661,0.3161557269136731,0.3163941749307603,0.3164974333995279,0.3172292559600229,0.3185838857405742,0.3182193277873185,0.3202007106501489,0.3221626684706249,0.3231341149556763,0.326917615877323,0.3303643724696356,0.3338383033009089,0.3370363569592361,0.3389375302143202,0.3416180898084683,0.3437741089338065,0.3436018957345971,0.3455289445179925,0.3487258687258687,0.354301948051948,0.3628922237380627,0.3631221719457013,0.0,2.2690422713524905,52.33696207052603,173.83323974276502,250.44468909322777,fqhc5_100Compliance_baseline,0 -100000,95607,44904,425.5755331722573,5994,61.28212369387179,4710,48.65752507661573,1878,19.287290679552758,77.26635035352784,79.70558672473081,63.26822878755484,65.072568603254,77.02697556035992,79.4665737462784,63.17769239211851,64.98450671981414,0.2393747931679257,239.01297845240776,0.0905363954363309,88.06188343986321,155.47224,109.3736548450102,162615.95908249397,114399.21223865428,392.93987,258.676345287438,410421.67414519854,269988.93939506315,377.97642,184.1387571840361,391456.8912318136,189610.62088942417,3377.78485,1563.6338996098043,3495410.8171995776,1597902.3184597408,1139.64622,516.9907567309474,1177284.7071867122,526019.1478981107,1835.92772,787.5617032010101,1887917.286391164,796150.3745935763,0.37896,100000,0,706692,7391.634503749726,0,0.0,0,0.0,33935,354.3255200979008,0,0.0,34571,357.68301484200947,1586933,0,56962,0,0,0,0,0,57,0.5961906554959365,0,0.0,0,0.0,0,0.0,0.05994,0.1581697276757441,0.3133133133133133,0.01878,0.3314249363867684,0.6685750636132316,24.57897790419815,4.430020340421225,0.3343949044585987,0.2205944798301486,0.2201698513800424,0.2248407643312102,11.329019599015307,5.969816087753634,20.166667014331697,12112.661675916384,53.89636204748323,12.66925967419236,18.03698129771842,11.484961109388774,11.705159966183665,0.5558386411889596,0.7901828681424446,0.6831746031746032,0.562198649951784,0.1303116147308781,0.7260377358490566,0.9240196078431372,0.8571428571428571,0.7095435684647303,0.1735537190082644,0.4892171344165436,0.7036450079239303,0.6170026292725679,0.5175879396984925,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0048693887902612,0.0070277351803142,0.0089474540426224,0.0109729036460984,0.0133208312524842,0.0154821195297191,0.0176471189315676,0.0197061471719734,0.0218465006660518,0.0242210271357609,0.0264580720761466,0.0286176049741103,0.0308279204041653,0.032814485059442,0.0349109119880802,0.0372612224168489,0.0392281088042541,0.0410586790449824,0.0432288679146894,0.0579158651835744,0.0720243958669545,0.0847890253253642,0.0979134409791344,0.1094928286263492,0.125217151815601,0.1369081150023914,0.1479182001472141,0.1589916506101477,0.1683125758927132,0.1819927504962458,0.1942495961490508,0.2057407407407407,0.2152187253440869,0.225154902868735,0.2356244035597771,0.2445745703238495,0.2531990628097684,0.260840408724611,0.2686318833262573,0.2754785187931594,0.282002319560455,0.2887812044595571,0.2943201170516418,0.2989700750252313,0.3045657084315637,0.3095733480397072,0.3138314137192947,0.3187286114279788,0.3221807042792822,0.3207021041571247,0.3203737854724615,0.3191888159192761,0.3175924721391093,0.3172436354984534,0.314885145482389,0.3126454984559347,0.3133994874153907,0.3141816814250059,0.3149403494965032,0.3159101157372614,0.3170997601633268,0.3182887386062922,0.3201128703558552,0.3217257096004051,0.322954248366013,0.3230179613316554,0.3269637724645463,0.3313484373348367,0.3332004623908797,0.3386581469648562,0.3435540440004251,0.3432987078794021,0.3456724569521353,0.3489413300998041,0.3527546105955597,0.3559399180700955,0.3568556493767591,0.3603603603603603,0.3595632530120481,0.0,2.415434978845567,57.86152176341845,178.42891203330896,249.37060715820556,fqhc5_100Compliance_baseline,1 -100000,95694,45181,427.9474157209438,6151,63.05515497314356,4865,50.138984680335234,1940,19.844504357639977,77.34534288058313,79.71525904038619,63.32656324425341,65.07506747074348,77.1007523303041,79.47379261589776,63.23587597335217,64.98854892085834,0.2445905502790282,241.46642448842212,0.0906872709012347,86.51854988514174,154.94424,108.90661731150529,161916.12849290448,113806.92343459908,394.27818,259.19262961612765,411300.1860095722,270136.11053579923,382.22503,186.5188710406129,395471.6283152549,191799.66388352556,3479.0679,1589.8536265400187,3588564.3405020167,1614339.9654524,1159.62507,512.9876238619713,1193934.3532509874,518299.1148846215,1902.87934,798.1482777521584,1948018.6009572176,798903.5699825716,0.38262,100000,0,704292,7359.824022404749,0,0.0,0,0.0,34009,354.6512843020461,0,0.0,34898,360.66002048195287,1591857,0,57182,0,0,0,0,0,73,0.7628482454490354,0,0.0,0,0.0,0,0.0,0.06151,0.1607600229993204,0.3153958705901479,0.0194,0.3412747524752475,0.6587252475247525,24.307251621334288,4.305892023599704,0.3169578622816033,0.2378211716341212,0.2170606372045221,0.2281603288797533,10.885809834060948,5.654857368332228,20.787560913211777,12278.554669703975,55.2131246965155,13.727298754624728,17.388852947787512,11.797524518457177,12.29944847564608,0.5603288797533402,0.7891097666378565,0.6984435797665369,0.5776515151515151,0.1135135135135135,0.7324492979719188,0.9325581395348838,0.8643617021276596,0.7551020408163265,0.1212121212121212,0.498744069215741,0.7042640990371389,0.6449399656946827,0.5240443896424167,0.111490329920364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0043885431658322,0.0066352826589829,0.0084602884420069,0.010514755231955,0.012757205835938,0.015106571664475,0.0170778763410675,0.019452906180361,0.0214963507385531,0.0234453488610501,0.025765044156911,0.0281520643475756,0.0305761880724021,0.0326628757778718,0.0350327689222435,0.0370562160818592,0.0392598435002802,0.0415696223590084,0.0433106150607557,0.0576218079273069,0.0716857507692951,0.0855247969441937,0.098771017908626,0.1114464506189124,0.1273931863642617,0.1385984096482753,0.1509916281447713,0.1614406326814149,0.1715505405869229,0.1844177953044359,0.1962990233232995,0.207458268950358,0.2179029644874545,0.2275755740322669,0.2378978173393488,0.2476479582156847,0.2564067949150636,0.2643723823252329,0.2719410780967217,0.2784616808589411,0.2858579480343319,0.2929306079937508,0.2986088644451634,0.3043367346938775,0.3098199208687185,0.3157209558501383,0.3194954799171,0.3234714770753959,0.3265470591343867,0.3252201351150905,0.3242606322868719,0.3236927250377948,0.3236082339818342,0.3232442094287629,0.321869772723785,0.3206805868001647,0.321140080120838,0.3216204690831556,0.323167469234885,0.32358331774827,0.3238444694324436,0.3257307861312799,0.3263794068270845,0.3277088104134024,0.3279505374099968,0.3289208306110274,0.3327488492970535,0.336269882887607,0.3386212067400655,0.3408222666909223,0.3438825275657337,0.3490897677338355,0.3494058500914077,0.3535486293653774,0.3555924564108647,0.3532741738066095,0.3558120696638315,0.3583608360836083,0.3589243959469992,0.0,2.733010430007904,55.66824526925351,186.84965940588796,264.5986365964523,fqhc5_100Compliance_baseline,2 -100000,95674,44883,426.1763906599494,5917,60.758408763091325,4611,47.714112507055205,1825,18.80343667035976,77.2498286400838,79.64916973179938,63.26585613190741,65.03939363601324,77.01400333719408,79.41249351568025,63.177537184191046,64.95294075775577,0.2358253028897223,236.67621611912185,0.0883189477163668,86.45287825747516,153.78308,108.17760162612409,160736.54284340574,113068.9650543764,388.9967,256.23129381957966,406121.1300875891,267352.59717329644,373.73616,181.48185783485292,388025.5241758471,187698.02441564505,3327.59642,1519.3303940684405,3446483.24518678,1556454.579163032,1132.90331,501.19055002646746,1171013.8491126115,510737.5358263145,1792.06774,765.0990478010036,1847548.299433493,776152.7840267809,0.38018,100000,0,699014,7306.206492882078,0,0.0,0,0.0,33592,350.62817484374017,0,0.0,34056,353.3248322428246,1593753,0,57297,0,0,0,0,0,74,0.7734598741559879,0,0.0,0,0.0,0,0.0,0.05917,0.1556368036193382,0.3084333276998479,0.01825,0.3293211362542128,0.6706788637457872,24.600172900927127,4.403043969796867,0.3131641726306658,0.2379093472131858,0.2235957492951637,0.2253307308609846,11.233919298611566,5.7089293632091564,19.599353073155957,12151.474386263988,52.292807485418855,13.156660009757708,16.202871833497838,11.408171885984556,11.525103756178746,0.5619171546302321,0.7939835916134913,0.6800554016620498,0.5926285160038798,0.12223291626564,0.7062193126022913,0.9194805194805196,0.8732782369146006,0.7112068965517241,0.1115702479338843,0.5098849218058424,0.726123595505618,0.6151711378353376,0.55819774718398,0.1254705144291091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805664735199,0.0048982323770117,0.0072776362399894,0.0096118675066043,0.0118094618099704,0.0139225551504287,0.0158461475710731,0.017685199366927,0.0198506852116997,0.0219579889595559,0.023827351707302,0.0258654340010272,0.0278232237485208,0.02969429613902,0.0319643188998327,0.0337577180444518,0.0360188591264701,0.0381644518272425,0.0401190253240943,0.0419481981981982,0.056454140806219,0.0699123477605219,0.083886947304346,0.0969391512957838,0.1094543113728221,0.1244165987575273,0.1362082147559784,0.1479539641943734,0.1581604818091377,0.1689081768573024,0.1818937056297607,0.1936932052310828,0.2049006030337066,0.215243882374878,0.2246506391151732,0.2358961252541864,0.2452673883596225,0.2544028882495628,0.2625042686397268,0.2698491134120134,0.276888589481509,0.2839115977958196,0.2905818294219749,0.2964389298737559,0.3021628343615127,0.3069976868173328,0.3117400261280273,0.3164788264458585,0.32058230974199,0.3240518737332927,0.3228274091093391,0.3221487626119722,0.320960606103439,0.320672351780949,0.320627301322282,0.3190160513151029,0.317109916424822,0.3170627345138569,0.3180175705992156,0.3192705254294978,0.3194812517620524,0.3202569032846353,0.3218108550560383,0.3224518184469722,0.3235478731109072,0.3238683771380893,0.3241014558689717,0.3257110637764691,0.3298002588589219,0.3322105096298645,0.3349650983591696,0.3389759004376944,0.3427230046948357,0.3439085333535246,0.3473037161218217,0.3532646852328575,0.3556935190793459,0.3583535108958838,0.3620501635768811,0.3647279549718574,0.0,1.9015794146264315,53.91748348605456,171.33628853347926,256.5016370010956,fqhc5_100Compliance_baseline,3 -100000,95738,44892,425.5572499947774,5959,60.89536025402661,4679,48.2149198855209,1918,19.636925776598638,77.32698317968122,79.68636983404942,63.31555014592704,65.06113040052327,77.08140206241123,79.44228824506847,63.22439348219192,64.97278891154929,0.2455811172699924,244.08158898094712,0.0911566637351271,88.34148897398109,155.6335,109.4633818581329,162561.65785790386,114336.18297868448,390.61874,256.7177215788264,407332.9607888195,267471.5897249018,373.02455,181.4194528747985,384987.2046627253,185968.99539059887,3360.75849,1543.2585234927142,3466646.6920136204,1568656.156480567,1102.82391,497.5858114817027,1129941.204119576,498056.4585784497,1879.46632,796.5066706426213,1925751.8644634315,801598.5070272932,0.37951,100000,0,707425,7389.166266268357,0,0.0,0,0.0,33677,351.0518289498423,0,0.0,34176,352.43059182351834,1590389,0,57118,0,0,0,0,0,61,0.6267103971254883,0,0.0,0,0.0,0,0.0,0.05959,0.1570182603883955,0.3218660849135761,0.01918,0.3355105942329138,0.6644894057670861,24.509723320418757,4.413783084840034,0.3178029493481513,0.2318871553750801,0.2269715751228895,0.223338320153879,11.240917114375344,5.771021074094947,20.501002491042957,12110.105085373494,53.18304667806491,13.075181648662909,16.684299482330086,11.845235760323687,11.578329786748226,0.5524684761701218,0.7963133640552995,0.6778749159381304,0.5621468926553672,0.1110047846889952,0.7152671755725191,0.913151364764268,0.853904282115869,0.7303370786516854,0.1440329218106996,0.4891659246067082,0.7272727272727273,0.6137614678899083,0.5056603773584906,0.1009975062344139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896509801935,0.0048062298472957,0.0071453220469723,0.0091941644993498,0.0111772184083396,0.013431088030141,0.0156931924786882,0.0180164546883612,0.0204918032786885,0.0223743871608274,0.024433489458958,0.0265662050771425,0.0285347175823611,0.0305095915236261,0.0324107980978513,0.034397602810498,0.0363069787665772,0.0383993029624097,0.0403991061684768,0.0426389699141595,0.0571225755266509,0.0710743801652892,0.0846464328772867,0.0974361130675188,0.1097818066828291,0.1254810742228801,0.1371407360271502,0.1486367072300829,0.1593522873022659,0.1692481081951376,0.1821435115820335,0.1945975803918595,0.2057764090063227,0.215889445696654,0.2251615531116175,0.2352869447616091,0.2442296950061445,0.2532357082511968,0.2617849230244845,0.2688040164141124,0.2759986564899642,0.2826771930235555,0.2889028495566829,0.2945638735851548,0.3002408641915235,0.3050082051155502,0.3096052845987039,0.3144360768123144,0.3189740131749572,0.3227472005070779,0.3221482838515006,0.3201387837149426,0.3190419161676647,0.3183803326102675,0.3177857737599619,0.3155562370620256,0.3131734060083661,0.3138404440503169,0.3145132350176866,0.3146113509078586,0.3158466465641563,0.3162139722452852,0.316226034732576,0.3173302893977036,0.3177583592113815,0.3194853996503223,0.3210569824121319,0.3258073645482846,0.3281485902882624,0.3290632188466725,0.3314696122551025,0.3363549618320611,0.3373138080573188,0.3405192044936997,0.3403837154890032,0.3442835276109737,0.3480974124809741,0.3539608949808506,0.3591802824702299,0.3551004636785162,0.0,2.5565290284995763,57.22787281195724,167.11488996438544,257.2722428204903,fqhc5_100Compliance_baseline,4 -100000,95760,45187,428.0597326649958,6014,61.76900584795321,4701,48.52756892230576,1865,19.09983291562239,77.39144353273707,79.72975670813581,63.36142006586866,65.08678273117069,77.15963598400735,79.49938844477171,63.27552993324086,65.0038399492366,0.2318075487297193,230.36826336409888,0.0858901326277958,82.94278193407933,155.6038,109.46937569924488,162493.5254803676,114316.39066337184,394.98094,259.49793965118323,411909.5133667502,270427.6834285539,377.62783,183.21883583580424,390648.3709273183,188433.98367812045,3348.60401,1524.3705846155358,3462863.3980785296,1557857.732472364,1121.14112,487.9937852616114,1160699.2585630745,499517.831309118,1824.21878,764.8466856879304,1872058.3333333333,771249.3434427824,0.38203,100000,0,707290,7386.069340016708,0,0.0,0,0.0,34065,355.1587301587301,0,0.0,34493,356.49540517961566,1594598,0,57158,0,0,0,0,0,71,0.7414369256474519,0,0.0,1,0.0104427736006683,0,0.0,0.06014,0.1574221919744522,0.3101097439308281,0.01865,0.3308044886992255,0.6691955113007745,24.60122119003561,4.381281288867752,0.3212082535630717,0.2320782812167623,0.2256966602850457,0.2210168049351202,11.21654214529569,5.823728454043374,19.888602240066174,12256.90362522004,53.3831460608488,13.207829833927333,16.9869500810151,11.722551026151022,11.465815119755344,0.5588172729206552,0.7763519706691109,0.7086092715231788,0.5730442978322338,0.0981713185755534,0.723186119873817,0.8827751196172249,0.8638743455497382,0.7448559670781894,0.1644444444444444,0.4981066122924555,0.7102526002971769,0.6560283687943262,0.5220048899755502,0.0798525798525798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894378746152,0.0049555620864031,0.0070818368133763,0.0092422380434893,0.0112657725900092,0.0137814510219037,0.0156816792337477,0.017732160711735,0.0198387970047707,0.02199826060265,0.0243137737066978,0.0262950005642703,0.0285758323057953,0.0309894814845309,0.0328532992464461,0.0347702128978276,0.0366682880887573,0.0386222918243951,0.0410165791798763,0.0429383945498864,0.0580763008193726,0.0717133141511901,0.0856717263372111,0.0981144774063285,0.1110162164441913,0.1266984593585771,0.1391348611302586,0.1504696858477217,0.1618683524838751,0.1720046305228632,0.1844122015800917,0.1965957999005125,0.2078828119057192,0.2177085495199292,0.2276164516058121,0.2383881746365427,0.2479185938945421,0.2574916883817054,0.2652816031373616,0.2724755737592385,0.2794466083378601,0.2862101609340486,0.2919967835773242,0.2984658131429871,0.3037033442909302,0.3093600423275215,0.3133475820865674,0.3181864441278241,0.3230044396122135,0.3265351860152398,0.3249657138247236,0.3233920378053136,0.3226291739894552,0.3213961333852342,0.3210299284030773,0.3182699204859362,0.3161873796521355,0.3168668390221553,0.3178017336807507,0.3189579957621837,0.3210943932929112,0.3216810838566971,0.3235953173755523,0.3244748674585598,0.3242696466848101,0.3253713420523664,0.3250754598781252,0.3283619658926436,0.3320550258593392,0.3352534562211982,0.3392474344355758,0.3451784762919552,0.3449213071234435,0.347362000609942,0.3505386416861826,0.3507103440178467,0.3484529888855512,0.3503795445465441,0.3485667928610059,0.3395155185465556,0.0,2.2382108585824008,55.58267358092275,175.57151265559312,257.07931382890285,fqhc5_100Compliance_baseline,5 -100000,95732,45154,427.10901266034347,5988,61.37968495382944,4712,48.6775581832616,1870,19.220323402832907,77.37264048070351,79.7317332444638,63.34029949113111,65.08177862044995,77.14248432692095,79.50088159577048,63.2565800433392,64.99961671224196,0.2301561537825591,230.8516486933172,0.083719447791914,82.1619082079934,154.37928,108.62961433774797,161261.70977311663,113472.41627636312,392.81433,258.0318133672841,409771.97802197805,268984.8302710996,380.61611,185.16933782347755,393714.0872435549,190507.3276363452,3380.36496,1541.6317672782789,3495386.370283709,1575288.5417751544,1138.68522,504.2572998323302,1174911.72230811,512505.4887131967,1837.45526,760.8835459202992,1890483.95520829,772130.7719450475,0.38305,100000,0,701724,7330.077716959846,0,0.0,0,0.0,33877,353.2987924622906,0,0.0,34804,359.73342247106507,1596631,0,57336,0,0,0,0,0,68,0.7103162996699118,0,0.0,0,0.0,0,0.0,0.05988,0.1563242396553974,0.3122912491649967,0.0187,0.3335448057097541,0.6664551942902458,24.559377957455187,4.415528901076789,0.3160016977928693,0.2398132427843803,0.2171052631578947,0.2270797962648557,11.259260518189787,5.731073850225312,19.83379385493372,12274.93372007018,53.46614289999861,13.581993770428404,16.827813712571835,11.368802306466463,11.687533110531916,0.5666383701188455,0.7831858407079646,0.7098723975822699,0.5962854349951124,0.1102803738317757,0.7382602001539645,0.913953488372093,0.8784810126582279,0.7431906614785992,0.1290322580645161,0.5013184881336068,0.7028571428571428,0.6489945155393053,0.5469973890339426,0.1055099648300117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024,0.0046922663747935,0.0070097487243474,0.009272424439389,0.0115201984768528,0.0138139544353278,0.0162786430726575,0.0182703397874924,0.0207402712896993,0.0231855870611116,0.0252114625519044,0.0275459184197287,0.0293875704355694,0.0313491246138002,0.0334777674610543,0.0357076417453854,0.03773682575836,0.0398174557900741,0.0418221312242119,0.0438061116087237,0.0583020975808388,0.072622834184314,0.0859614174879429,0.0993074020746408,0.111545637576818,0.1271618250243139,0.138840573561853,0.150086721501612,0.1613898706873538,0.1722337197207716,0.18551738989986,0.1976246105919003,0.2087093617483962,0.2179138098831042,0.2276347634763476,0.2382360760334972,0.2477204495485541,0.2573680063041765,0.2659050128330342,0.2730232611462047,0.2799370355795273,0.287165205995577,0.293289107386128,0.2987259159728387,0.3035651338900436,0.3090353126849477,0.3133801494611138,0.3177436992955418,0.3218367003584879,0.325887735861496,0.3240749458619715,0.3231822117168497,0.3222020517583485,0.3210917755794642,0.3202216313373639,0.3189215671264755,0.3168127313569779,0.3168729684473191,0.3178996555134895,0.3190330390202222,0.3189027803694719,0.3189626335569941,0.3206186644372453,0.3220085993717557,0.3232594367884961,0.323933796824738,0.3244460814869382,0.3284849241525688,0.3314403177478921,0.3352578453320765,0.3372460496613995,0.3380467472167994,0.3430060925821242,0.3432813210119679,0.3477408513816281,0.3522888154789995,0.3544804503270957,0.3553452788403463,0.3575923392612859,0.3528511289705319,0.0,2.0612140363531286,57.13170549750807,172.59464765870223,256.39613886703256,fqhc5_100Compliance_baseline,6 -100000,95740,45287,428.48339252141216,6124,62.544391059118446,4799,49.51953206601212,1850,18.957593482348027,77.33281654085012,79.69983975095722,63.319784280511655,65.07131923875687,77.102902888875,79.47067969667106,63.23504424472506,64.98937415033832,0.2299136519751243,229.1600542861687,0.084740035786595,81.94508841854997,156.26336,109.9258432793624,163216.37768957592,114817.0495919808,396.3218,260.2088860417189,413335.4501775642,271168.1507999654,385.49974,187.72318737198128,398790.43242114055,193125.08428540584,3374.60562,1543.6094552272975,3482956.9145602672,1570599.9478585168,1080.89526,481.55008506093935,1112198.8406099854,486261.4910708624,1800.72208,754.878536664926,1846015.5629830796,758655.6781470765,0.3824,100000,0,710288,7418.926258617088,0,0.0,0,0.0,34129,355.8178399832881,0,0.0,35311,364.9989555044913,1585691,0,56987,0,0,0,0,0,72,0.7415918111552121,0,0.0,0,0.0,0,0.0,0.06124,0.1601464435146443,0.3020901371652514,0.0185,0.327545753167527,0.672454246832473,24.65639150759777,4.281917755587807,0.3256928526776412,0.2479683267347364,0.2196290893936236,0.2067097311939987,11.241681237207167,5.864326779183068,19.699497500984865,12216.419125839197,54.480350955876254,14.340403846857322,17.551828707752072,11.759478870350982,10.828639530915884,0.5699103979995832,0.8084033613445378,0.6871401151631478,0.5683111954459203,0.1008064516129032,0.7501909854851031,0.92901878914405,0.8600508905852418,0.7359307359307359,0.1407766990291262,0.5022922636103152,0.7271448663853727,0.629059829059829,0.5212636695018226,0.0903307888040712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024926790219781,0.004645360218271,0.0068128744034927,0.0093310700236834,0.0115065315590282,0.0138832301173402,0.0162861134623033,0.01843797856049,0.0208993681110815,0.0232129509220671,0.0253029588468084,0.0275903849510725,0.0297048027391344,0.031626862751156,0.0337174870773707,0.0357737190817286,0.0378624689312344,0.0395911166459111,0.0417693483482546,0.0437124313737746,0.0582425957051436,0.0722431471019041,0.0857250715686377,0.0986953459278182,0.1109483203862005,0.1267420958020514,0.1389436843779828,0.1502788658038147,0.1609685240368697,0.1712189943055689,0.1843298125477782,0.1956531146547807,0.2065616912068553,0.2173570796024795,0.2271522377553153,0.2370871485988241,0.2466105004742509,0.2556922418935497,0.2639494234086988,0.2715155956579489,0.2786560807370029,0.2853748185606592,0.2918971419095787,0.2968144924408637,0.3018556099694985,0.3060728645075355,0.3103603716410809,0.3153575018769007,0.3206503433087187,0.32511521650138,0.3231407519161604,0.3221507922304971,0.3212267275520415,0.3200422154433344,0.3187823602928049,0.3170649509803921,0.3151138126444423,0.3160416051448633,0.3158316838441062,0.3173926992727791,0.3182626270187323,0.3186784959196981,0.3186153524367287,0.319483185682726,0.3210683062734172,0.3212648468430923,0.3220546734699695,0.3253538848694558,0.3291205897840969,0.3331875819851334,0.3366719781470521,0.3390389113331916,0.3418287080737524,0.3416672999468044,0.3449761213596778,0.3425772952560774,0.3471313346522599,0.3533212194629517,0.3591220850480109,0.3658629927286643,0.0,2.233657826827053,57.28700656048326,177.3365918642686,262.6959475411373,fqhc5_100Compliance_baseline,7 -100000,95771,44997,425.90136889037393,5937,60.65510436353384,4674,48.13565693163901,1881,19.149847030938385,77.34910350822409,79.67729473467247,63.34642956891118,65.0665733324028,77.1107238136576,79.44608044403148,63.25618479013025,64.98272087036354,0.2383796945664897,231.21429064099172,0.0902447787809279,83.85246203926044,154.89848,108.96500446554136,161738.39680070168,113776.61762489832,390.74519,256.9865368057597,407302.3984295873,267637.3085858556,373.95674,182.16612869462907,386865.4916415199,187317.58484117183,3329.13482,1533.651036691396,3426804.4815236344,1552036.7717695269,1117.89437,503.1402527386506,1145446.7740756597,503563.9116665824,1835.06292,776.1244945694394,1869307.076254816,768210.7638196958,0.38016,100000,0,704084,7351.7453091228035,0,0.0,0,0.0,33680,350.9935157824394,0,0.0,34168,353.21757108101616,1597057,0,57312,0,0,0,0,0,80,0.814442785394326,0,0.0,0,0.0,0,0.0,0.05937,0.1561710858585858,0.3168266801414856,0.01881,0.3253634894991922,0.6746365105008078,24.580866342189,4.357951586377856,0.3243474540008558,0.2327770646127513,0.2250748823277706,0.2178005990586221,11.309873072286416,5.963251381099723,19.902411710017983,12165.133624208676,53.00163595851794,13.159183059554838,16.94346033103728,11.73217009199394,11.1668224759319,0.5592640136927685,0.7803308823529411,0.6992084432717678,0.5627376425855514,0.1110019646365422,0.7170846394984326,0.8985849056603774,0.8579088471849866,0.7003891050583657,0.1531531531531531,0.5,0.7048192771084337,0.647419072615923,0.5182389937106918,0.0992462311557789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0044293982302678,0.006685536313926,0.0087860966369056,0.0109712449668524,0.0132436174111323,0.0154304001304551,0.0174618564065928,0.0196691495774964,0.021761371774672,0.0238085481293283,0.0260435906908016,0.0282816241380373,0.0306925903434647,0.0329305509732761,0.0349112242684652,0.0368795206904044,0.038926967865031,0.0409626535320157,0.0429892526868282,0.0575060532687651,0.0711999497928956,0.0846597462514417,0.0969382928854461,0.1091848026558465,0.1243579717190505,0.1365770922775216,0.147620313746344,0.1582722295155454,0.1684220676945495,0.1817604511990356,0.1940259768349789,0.2056955831502946,0.2160755104942525,0.2255700325732899,0.2356049360834791,0.2447760860829575,0.253655135183769,0.2618958453908918,0.2700551904183937,0.2769777099166001,0.2839409397229502,0.2912534027695585,0.2961280812971107,0.3024487416188903,0.3080897130808971,0.3121760685044693,0.3168132805438505,0.3208554763447829,0.3249841471147749,0.3241232444672076,0.3236744250103291,0.3227642161903286,0.3212810215814867,0.3204144339384583,0.3189367754565197,0.3172362555720653,0.3176378004393875,0.3186747604269686,0.3190893357360786,0.3197066362326703,0.3204585886538841,0.3215452261306533,0.3221143087320413,0.3219014543086607,0.3215817554137462,0.3230430304417487,0.3277231168338131,0.3294628361685607,0.3329604921503615,0.3347830067753158,0.3373847220001066,0.3358759216882787,0.3396327467482785,0.3454062766663506,0.3475075075075075,0.3546132339235787,0.3552550706822373,0.3582962138084632,0.3553359683794466,0.0,2.619475048973421,55.37239835170448,170.38292073034316,258.05137991193885,fqhc5_100Compliance_baseline,8 -100000,95673,44861,424.4771252077389,6134,63.00628181409593,4820,49.86777878816385,1920,19.681623864622203,77.31532774038504,79.70744946010439,63.31028192710126,65.07616134812864,77.0786039732331,79.47312057622663,63.22121025571608,64.99107688442884,0.2367237671519433,234.32888387775108,0.0890716713851773,85.0844636998005,155.97648,109.68793169391078,163030.82374337586,114648.78460371346,394.0557,258.2338529974753,411356.1610903808,269392.1233362475,375.62031,182.32233781530252,390050.1395378006,188476.40228414023,3493.73694,1588.9962905681623,3612757.350558674,1621921.164441161,1197.34045,527.9594860763369,1236434.751706333,536841.8558062448,1890.6748,795.884241538495,1938606.6915430685,798497.1876279917,0.37808,100000,0,708984,7410.491988335267,0,0.0,0,0.0,34005,354.875461206401,0,0.0,34374,356.7464174845568,1589209,0,57051,0,0,0,0,0,68,0.7003020705946296,0,0.0,0,0.0,0,0.0,0.06134,0.162240795598815,0.313009455493968,0.0192,0.342874922215308,0.657125077784692,24.797944132248013,4.482619741228386,0.3228215767634855,0.2197095435684647,0.2246887966804979,0.2327800829875518,11.258169479408862,5.682154147099477,20.39387176987696,12142.002002839705,54.53108143347222,12.571404133078364,17.64851203397403,11.906631428253943,12.404533838165888,0.554149377593361,0.7969782813975449,0.6902313624678663,0.5530932594644506,0.1372549019607843,0.7240031274433151,0.9285714285714286,0.8668280871670703,0.7172995780590717,0.1872509960159362,0.4927986444507201,0.723935389133627,0.626421697287839,0.5070921985815603,0.1228473019517795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020057945174949,0.0043796508445021,0.006779110596927,0.0093572836445654,0.0116984049479166,0.0140565317035905,0.0162173740093632,0.0184159993462984,0.0203305244211732,0.0224570673712021,0.0247679606174042,0.0269751101706232,0.0292577542307494,0.0313868537924923,0.0336089348568833,0.0355687483193016,0.0376963567787126,0.0397745554944313,0.0417559554769582,0.0435679889933501,0.0580411250888118,0.0717770983414307,0.0849444759325734,0.0975111812680873,0.1093403693931398,0.1251376185636856,0.1368757499495609,0.1483067548709426,0.1586548226063346,0.1683877200515242,0.1807637998124454,0.1928204017542909,0.203857918857429,0.2142192749198428,0.2240809673795731,0.2343807189361254,0.2439882501424056,0.2529034436191762,0.2616752392955683,0.2690112107109287,0.27624430982359,0.2838494409647017,0.2896235686966406,0.2953705481424594,0.3009150676275079,0.3062794309804985,0.3108771314820843,0.3151312357663584,0.3197996479602402,0.3239187530520397,0.3229621248855126,0.3213400528750826,0.3204095428555333,0.3190212439803901,0.3180359053620259,0.3168124243770198,0.3150923390989223,0.3160369630042272,0.3163578667212611,0.3166895518661839,0.3173813885669421,0.3192542907871375,0.3192041884816753,0.3198211291224148,0.3203897509924215,0.3220559870718865,0.3237420350315741,0.3269607533337547,0.3292153471462355,0.3318025716795783,0.337298682284041,0.3394720034064296,0.3415991902834008,0.3445571955719557,0.3466831166366138,0.3477378536468903,0.3503039513677811,0.3504086107235399,0.348075348075348,0.3524774774774775,0.0,1.9512337764351848,56.378164890263946,174.14719052213297,273.3259550252246,fqhc5_100Compliance_baseline,9 -100000,95624,44969,426.4306031958504,6019,61.69999163389944,4666,48.18873922864553,1846,18.896929641094285,77.3146043072854,79.73347013992348,63.296484254502126,65.08270377983074,77.08324710693408,79.50423942969447,63.210483435507165,64.99985015917443,0.2313572003513258,229.2307102290181,0.086000818994961,82.85362065630864,154.36762,108.5997367748343,161431.8790261859,113569.53983815185,388.50985,254.9683532966696,405701.2256337321,266048.5268307847,373.19388,181.8232263808391,386246.01564460807,186949.93168939205,3327.01938,1520.429253892571,3442003.241863967,1552738.9085298383,1099.43731,484.6158172500028,1135337.373462729,492380.0690726211,1808.51956,758.6719967189867,1854832.740734544,763367.9792817534,0.38063,100000,0,701671,7337.81268300845,0,0.0,0,0.0,33505,349.75529155860454,0,0.0,34137,352.9866979001088,1598822,0,57323,0,0,0,0,0,68,0.7006609219442818,0,0.0,2,0.0209152514013218,0,0.0,0.06019,0.1581325696870977,0.3066954643628509,0.01846,0.3457438345266507,0.6542561654733492,24.518345942048647,4.288510217723515,0.3326189455636519,0.2293184740677239,0.2173167595370767,0.2207458208315473,11.49585443275243,6.137499982136622,19.68306411273905,12148.405708399045,52.8806281564484,12.77016815376224,17.46634162825258,11.443768522359177,11.200349852074414,0.5608658379768539,0.7822429906542057,0.6849226804123711,0.5986193293885601,0.1067961165048543,0.7401883830455259,0.9434447300771208,0.854320987654321,0.7446043165467626,0.1138613861386138,0.4935141509433962,0.6901615271659325,0.6251089799476897,0.5434782608695652,0.1050724637681159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0043504274371013,0.0064461769602468,0.0088502768886856,0.0110270182291666,0.0132511713179873,0.0155139176466988,0.0176933292471141,0.0199138803939818,0.0220274241943246,0.0241743589743589,0.0264817668207498,0.0284553263721002,0.0306221278875677,0.0326080224612399,0.0346792121180788,0.0369894523074372,0.0390980253732273,0.0409626269352422,0.0430112012682255,0.0573608570681996,0.0715250934917193,0.0849303273093845,0.0980736842105263,0.1103769303032542,0.1262441235017576,0.1386401538085678,0.1499136773450987,0.160391082966069,0.170113115123911,0.1830843087545175,0.1953114839380934,0.2068882859913487,0.2170393172879944,0.2257310715033673,0.2353091324758343,0.2444593461860855,0.2537602667958583,0.2612119215080276,0.2687234774630118,0.2760125981334383,0.2818496676963399,0.2880142053862089,0.2942967420228706,0.299984217746537,0.3057916389525287,0.3103892530144594,0.3157352791620055,0.3202965301317049,0.3241129138636064,0.3236153173161047,0.322369054330936,0.320945565197791,0.3199352264183679,0.3193423597678916,0.3173809706355899,0.3162867378967058,0.3175141057064368,0.3182199832073887,0.3187921262939588,0.3195837700254529,0.3201654194564789,0.3203379224030037,0.320739997771091,0.3217541089499748,0.3222222222222222,0.3213536647582337,0.3226601753893206,0.3262757682514214,0.3283593873361756,0.3292082561763245,0.3305737186247627,0.3342357088894485,0.3346477591567453,0.3387988381898248,0.3435597469261072,0.3428571428571428,0.3472222222222222,0.3470394736842105,0.3587756683456025,0.0,2.410669175499798,55.66239019623223,171.41584195521784,254.57013454272771,fqhc5_100Compliance_baseline,10 -100000,95642,45071,426.569916982079,6026,61.64655695196671,4807,49.64346207733004,1840,18.79927228623408,77.29129418892526,79.69098368878952,63.29829466637945,65.0696669929625,77.05891088494403,79.46301986351442,63.21136417021167,64.98741263071501,0.232383303981237,227.9638252750971,0.0869304961677812,82.2543622474825,153.63392,108.10375948408874,160634.36565525606,113029.5889714652,387.98561,254.6302416039196,405071.5480646578,265639.74154024327,378.60457,184.5047383904099,392157.5458480584,190068.43639539217,3446.79377,1569.4749480313274,3561126.827126158,1598266.5544753617,1156.92451,509.6574101727993,1192570.8161686289,515813.2899326763,1809.55344,761.5117487856388,1851582.338303256,760664.5037847126,0.38097,100000,0,698336,7301.562075238912,0,0.0,0,0.0,33465,349.2712406683256,0,0.0,34745,359.5909746763974,1600998,0,57460,0,0,0,0,0,50,0.5227828778151858,0,0.0,0,0.0,0,0.0,0.06026,0.1581751843977216,0.3053435114503817,0.0184,0.3283036848792884,0.6716963151207116,24.386093871644807,4.374913771683973,0.331183690451425,0.226752652381943,0.217391304347826,0.2246723528188059,11.206583096593215,5.800459781918594,19.674953156336844,12231.028516874909,54.43798446453375,13.059325238124991,18.064134982698597,11.558639492902213,11.755884750807954,0.5679217807364261,0.8045871559633028,0.7091708542713567,0.5712918660287082,0.1175925925925926,0.7448591012947449,0.9348370927318296,0.8662131519274376,0.7450980392156863,0.1513761467889908,0.5014310246136233,0.7293777134587555,0.6490008688097306,0.5151898734177215,0.1090487238979118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0045118118219608,0.0068004425362605,0.0091962198963519,0.0115374049995421,0.0135662270204206,0.0156004649550339,0.0180631854105826,0.0205913626697202,0.0230888948047426,0.0251148576585445,0.0271449992810632,0.0290619920581034,0.0313665684314654,0.0333959615146384,0.0355687483193016,0.0377532514638064,0.0395801102677783,0.0418487534856619,0.0438186784545132,0.0584491587417703,0.072610717727406,0.0852810852810852,0.0977306696419173,0.1099911340032086,0.1250754199701495,0.1368360706209591,0.1490082450944883,0.1600735577128683,0.1707411344091216,0.1833061968277245,0.1954367765060045,0.2070684531908177,0.2167662966125818,0.2260268688627572,0.23698774469029,0.2471342703282461,0.2564902168284061,0.2647359338812951,0.2719564594672014,0.2787109171518863,0.2852797341881742,0.2911668225903864,0.297533944249868,0.3020260738434596,0.306689867091185,0.3111322788459128,0.3153797145769623,0.3200902466222349,0.3249815186397718,0.3240341613233471,0.3232587612960105,0.3222074880794515,0.3212202781516375,0.320601369455195,0.3184114747301012,0.3164231666111455,0.3178608463779566,0.318698824899791,0.3191866396978538,0.3197115384615384,0.3204513007614213,0.3212919766317824,0.3224484310958812,0.3238022009707338,0.324467946547188,0.3273258784128966,0.3303336259877085,0.3351939617342461,0.3375591145729841,0.3401320282267243,0.3449517957410742,0.3494538796641202,0.3536165327210103,0.3615733736762481,0.3633968139896993,0.3663213236431112,0.3704009921455147,0.3776418242491657,0.3779047619047619,0.0,2.388820730256988,57.40726952484261,172.95980467610838,266.98047246676634,fqhc5_100Compliance_baseline,11 -100000,95631,44896,426.3575618784704,6020,61.56999299390365,4730,48.85445096255398,1921,19.72163838085976,77.27514686010801,79.68696780087579,63.27600815666828,65.0568719650037,77.03520151310029,79.44828456690338,63.186760609798384,64.97056192183061,0.239945347007719,238.68323397240945,0.089247546869899,86.31004317308566,154.97394,108.99754655489244,162054.08288107414,113977.21089907296,390.47704,256.1881966414694,407692.3905428156,267269.13263692084,375.97868,182.83543349468184,389269.69288201525,188172.6491111833,3391.57676,1545.844520860479,3505830.337442879,1575812.4736628633,1116.84035,498.6036331056745,1153077.6735577376,506630.0405935037,1881.5298,789.8869106767457,1933431.669646872,797098.2445278751,0.37916,100000,0,704427,7366.09467641246,0,0.0,0,0.0,33659,351.3295897773734,0,0.0,34314,354.9685771350294,1591630,0,57128,0,0,0,0,0,77,0.8051782371825036,0,0.0,0,0.0,0,0.0,0.0602,0.1587720223652284,0.3191029900332225,0.01921,0.3301647655259822,0.6698352344740177,24.75187361399921,4.368882971498795,0.3173361522198731,0.2325581395348837,0.2251585623678647,0.2249471458773784,11.123207087080193,5.690779452398854,20.433188883790365,12149.72524084608,53.54971810515347,13.16482492849591,16.79404311594163,11.955845644743798,11.63500441597213,0.5587737843551797,0.7836363636363637,0.698201199200533,0.5737089201877934,0.1146616541353383,0.7285140562248996,0.9121951219512195,0.856338028169014,0.7450980392156863,0.1733333333333333,0.4981348637015781,0.7072463768115942,0.6492146596858639,0.519753086419753,0.0989272943980929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0043886766062252,0.0065445690223732,0.0089283900457084,0.0113406360927186,0.0135550757699201,0.0155606313986213,0.0177639840328327,0.0199768946868003,0.0221473623853211,0.0240530089339747,0.0263093012266031,0.0283242108728754,0.0304895018398837,0.032393638992152,0.034283349712926,0.0362058957668228,0.0383433034230641,0.0403138528138528,0.042267181145062,0.0567122371336594,0.0710655643226137,0.08493182343425,0.0975843578479399,0.10932829120409,0.1252078501149133,0.1378929246987311,0.1491754522487181,0.1598206258829573,0.1697798890847341,0.1828565259635107,0.1955319379676824,0.2062898566523137,0.2165229979601237,0.2264394583199973,0.2364939176803866,0.2459845762958485,0.2551148225469729,0.2635538911590953,0.270674446384269,0.2775476579994663,0.284546265015015,0.2907287204376357,0.2953374100460132,0.3003906392610712,0.3055133854185952,0.3100378645402342,0.3146518233578316,0.3198479324259449,0.3241671073506081,0.3233064450859255,0.3221649484536082,0.3212981115044497,0.3201706805525421,0.3188679525884505,0.3160967984183666,0.3139455728465813,0.3145770392749245,0.3156279307698866,0.3166758746056923,0.3168734305310895,0.3178037263153735,0.3189942378208486,0.3199087125788696,0.3213830580201495,0.32091108099656,0.3209180477248134,0.3242494807728617,0.326888599852357,0.3287099594626818,0.3313916446709747,0.3362615130703295,0.3385292269013199,0.3384930571363533,0.3448243383253273,0.3468366495889431,0.3508610086100861,0.3561253561253561,0.360551724137931,0.3636015325670498,0.0,2.361751856332836,54.36637666836571,178.9487870483137,259.5376737202324,fqhc5_100Compliance_baseline,12 -100000,95676,44663,423.2304862243405,5929,60.73623479242443,4666,48.09983694970526,1859,19.012082444918267,77.28391542799022,79.6819873727349,63.28504443165552,65.06000958109787,77.0490111960587,79.44838267809035,63.19839030173037,64.97627927751789,0.2349042319315231,233.6046946445407,0.0866541299251508,83.73030357998346,153.8559,108.26542272907786,160809.29386680046,113158.39158104212,389.66514,256.2724940977536,406618.9326476859,267197.7132172683,372.42736,181.64235241388016,384590.3988461056,186320.70932657784,3350.015,1531.080008678087,3456056.53455412,1554916.236755391,1124.45036,494.52785027798006,1157812.2622183205,499420.91044564976,1823.39706,767.0392733648603,1866821.4599272544,769265.130703135,0.37819,100000,0,699345,7309.513357581838,0,0.0,0,0.0,33684,351.39428905890713,0,0.0,34130,352.0632133450395,1598108,0,57361,0,0,0,0,0,53,0.5539529244533634,0,0.0,1,0.0104519419708181,0,0.0,0.05929,0.1567730505830402,0.313543599257885,0.01859,0.3459807073954984,0.6540192926045016,24.479220209674573,4.4129167200339525,0.3261894556365195,0.2306043720531504,0.2179597085297899,0.22524646378054,11.237846258137187,5.813224319886971,19.935592781803315,12094.850693018743,52.91512799138958,12.943670214985904,17.175807378657396,11.471798929169667,11.323851468576612,0.5696528075439349,0.7825278810408922,0.7082785808147175,0.6106194690265486,0.1113225499524262,0.7470449172576832,0.922879177377892,0.8672985781990521,0.7701612903225806,0.1523809523809524,0.5033853400058875,0.7030567685589519,0.6472727272727272,0.5591677503250976,0.1010701545778834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597839524938,0.0047265498214865,0.0071677309968831,0.0096238859361185,0.0118840491234496,0.0140982804987368,0.0161048498138609,0.0184050332965641,0.0204039887496803,0.0225268139770736,0.0247453140869779,0.0270645171233932,0.0290289054219533,0.0308252001937525,0.0331458064516129,0.035068668817738,0.0370331993202636,0.0388428122112999,0.0405038537950259,0.042709299538306,0.0578397576517288,0.0719243694839662,0.0843670633671263,0.0968390260327882,0.1090037889581948,0.1237615378101448,0.1364678899082568,0.1481075209269633,0.1583290576363947,0.1682301169904475,0.1810715555986678,0.1925043327556325,0.2039283147877969,0.2140205643704214,0.2236401304769461,0.2342572345125376,0.243309111235327,0.2514228398192289,0.2602568473690192,0.268116690183662,0.2745634580154442,0.2807865023625555,0.2874224505047389,0.293482698172562,0.2993804243302131,0.3047765983707726,0.3090852130325814,0.3136004277584692,0.318810906075057,0.3223886506103596,0.3215411558669002,0.3205223469837076,0.3196829776451377,0.3176509650503096,0.3170949321912919,0.3154627798979263,0.3147658341120385,0.3146377073114716,0.3147141293940637,0.3159446708127815,0.3172677944462176,0.3181277270924236,0.3195289954289806,0.3197031039136302,0.3207624860727607,0.3218420914758736,0.3226018209321574,0.3257969917699366,0.3293098003438717,0.3326207442596991,0.335547568133218,0.3375907573268323,0.3392756614749484,0.3418796992481203,0.3445550079047708,0.3468378282887763,0.3520804755372657,0.359052247873633,0.3601564682872311,0.3620889748549323,0.0,2.639070516392908,55.28278952915176,168.35346423381895,259.98137541266976,fqhc5_100Compliance_baseline,13 -100000,95654,45344,428.837267652163,6133,62.78880130470237,4809,49.6476885441278,1878,19.23599640370502,77.35161970545354,79.75747855706307,63.31721993396855,65.09420382528016,77.11687201140128,79.52324006646685,63.23061451672908,65.00988192635504,0.2347476940522597,234.23849059621205,0.0866054172394754,84.32189892512554,155.79498,109.62316348488837,162873.4605975704,114603.8466607652,396.21289,260.3625158847385,413581.4602630313,271558.7804845992,387.87632,188.93091479343605,401097.7376795534,194090.80457524757,3458.07268,1577.6897999654443,3575591.318711188,1609774.018823514,1128.3942,500.1272036388071,1166045.1523198194,509233.1043540333,1843.4123,769.2777673419505,1891184.4355698663,776028.1290169954,0.38077,100000,0,708159,7403.3391180713825,0,0.0,0,0.0,34185,356.7231898300124,0,0.0,35408,365.891651159387,1586900,0,56903,0,0,0,0,0,74,0.7631672486252535,0,0.0,2,0.0209086917431576,0,0.0,0.06133,0.1610683614780576,0.306212294146421,0.01878,0.3296635137230578,0.6703364862769422,24.511850454810585,4.372288008901152,0.3177375753794967,0.2353919733832397,0.2260345186109378,0.2208359326263256,11.391921996444974,5.9438135309641424,19.892299182229376,12247.979663128564,54.47207805186396,13.464513054549094,17.297891101261655,12.056375536654102,11.653298359399113,0.5645664379288834,0.7765017667844523,0.7166230366492147,0.5804967801287948,0.103578154425612,0.7443841982958946,0.935096153846154,0.8858560794044665,0.7593360995850622,0.1385281385281385,0.4985787379192723,0.6843575418994413,0.656,0.5295508274231678,0.0938628158844765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.0049181159052882,0.0071650394787586,0.0094590750223522,0.0118707341138654,0.0143206355673253,0.016642023147912,0.0188500066373262,0.0208486707566462,0.0229437672846461,0.0250630937480764,0.0272108843537414,0.0295346491859962,0.0317013577459561,0.0337860868667045,0.0360859939166959,0.0379018717741434,0.0399248424702328,0.0419584057262351,0.0442312705281267,0.0591726487152962,0.0734598148846169,0.0866535119022629,0.099813756747372,0.1118861931044672,0.1270916461162325,0.1391304347826087,0.1498609142357743,0.1614335383792458,0.1716280068728522,0.1835112692763938,0.1954670538016511,0.2061615501850642,0.2164532019704433,0.2262494768607238,0.2365372035523821,0.2465555965271026,0.2557055518650709,0.2642811733720824,0.2721068181297666,0.2786678542922253,0.2845739396701845,0.2912518033252134,0.2968284185194497,0.3021599320470817,0.307968740385207,0.3124586273652657,0.3168334433890384,0.32216984178237,0.3265384008001263,0.3250094080963389,0.3230044756857684,0.3219678861674306,0.3207038292348741,0.3193209977297345,0.3176724203831394,0.3161337209302325,0.3165497114375656,0.3161802355350742,0.3175905936089354,0.3179757176047366,0.3192895905278737,0.3203968852047224,0.3210886476606557,0.3224161459455577,0.3234668465290028,0.3245935132374223,0.3276629072681704,0.3315500541976992,0.3352319924053637,0.3370398947033994,0.3423973071056646,0.3455818022747157,0.3493902900855866,0.3592069578228747,0.3599140503760296,0.3619150246305418,0.3672190784155214,0.3764641786979025,0.3715474839197881,0.0,2.392197883451968,56.407981591887065,178.15440187932415,264.5891865393562,fqhc5_100Compliance_baseline,14 -100000,95793,45089,427.1606484816218,5957,61.06918042028123,4665,48.14548035869009,1846,18.87403046151597,77.3507064425629,79.67984909647417,63.34838135415546,65.07036015011968,77.12276555439757,79.45390011856378,63.26353981808692,64.98885645307749,0.2279408881653211,225.9489779103916,0.0848415360685379,81.50369704219429,154.49148,108.69453804315908,161276.3771883123,113468.14281122744,390.87893,257.5489851929534,407505.5275437662,268329.2820732504,378.95781,184.46173151884145,392673.4208136294,190274.5230602305,3355.26688,1537.2593757203126,3465121.1466391077,1568017.341511947,1125.8345,501.59320643641183,1161297.9654045703,510534.2326787586,1812.90798,764.3392077681493,1856081.4673305985,767166.6416724937,0.38083,100000,0,702234,7330.744417650559,0,0.0,0,0.0,33671,350.92334512960235,0,0.0,34626,358.4708694789807,1597957,0,57375,0,0,0,0,0,76,0.793377386656645,0,0.0,1,0.010439176140219,0,0.0,0.05957,0.1564215004070057,0.3098875272788316,0.01846,0.3428753180661578,0.6571246819338422,24.234350566754586,4.406501232330967,0.3245444801714898,0.2261521972132904,0.2227224008574491,0.2265809217577706,11.357072951983248,5.862359088925553,19.750159432994888,12155.92542500292,53.19237023291247,12.66523224827227,17.133974191329557,11.735111015826291,11.658052777484349,0.5532690246516613,0.7734597156398104,0.6941875825627477,0.5678537054860443,0.1173131504257332,0.7454688731284476,0.9326683291770572,0.8931297709923665,0.7,0.1813953488372093,0.4814487632508833,0.6758409785932722,0.6244424620874219,0.5237483953786907,0.1009501187648456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020764960901098,0.0042984590429845,0.0065755426344789,0.0085730537948967,0.0107776150967951,0.0129801378439736,0.0151135298194121,0.0174505821963241,0.0194365247248536,0.0216127711829717,0.0237004703206172,0.0257446874005971,0.027768357227275,0.0301208540075353,0.0321419732717373,0.0341845905907146,0.0361843466743926,0.0385121756528409,0.0406368130270427,0.0427354876322145,0.0574314453858675,0.0712045169385194,0.0842505817975973,0.098648535037202,0.111039679612162,0.1268247307167848,0.1383716491347132,0.149811099877614,0.1603288139212127,0.1704446802353622,0.1836244846997535,0.1956446557873122,0.2076144117519231,0.2182590836592453,0.2275760474038894,0.23680047787082,0.2452479108635097,0.2547012963670269,0.2622190995319742,0.2703352019219769,0.277289474596043,0.2840926343326287,0.2898026276888873,0.2954564501646213,0.300897840330017,0.3054857930762791,0.3104900698671399,0.314866840399161,0.3197587898080929,0.3236007167703172,0.3229119062340385,0.3213505079526552,0.3201773523822929,0.3188879094836929,0.3181244337506869,0.316182775940218,0.3150142540386443,0.3162203481777383,0.3166945878491572,0.3171376513879461,0.3187586828370818,0.3194749658490229,0.3207555098010379,0.3206326383896477,0.3215998072521382,0.3218291630716134,0.3237381252146045,0.3259343578068677,0.3298998165655425,0.3320089001907184,0.3330588342940799,0.337008295424137,0.3385562040091347,0.3398969310053072,0.3403270012286173,0.3443053070960047,0.345679012345679,0.3444375899650421,0.3516606195925202,0.3549514563106796,0.0,2.144734451912196,55.59614564708384,178.01301656112616,251.29680149409683,fqhc5_100Compliance_baseline,15 -100000,95722,45214,427.87446981885046,6207,63.297883454169366,4863,50.08253066170786,1877,19.14920290006477,77.31652017658898,79.67628425012133,63.31665033110207,65.0621213416708,77.0786946020146,79.44350518483586,63.22779212971232,64.97808253965272,0.2378255745743871,232.7790652854702,0.0888582013897476,84.03880201808533,155.15962,109.229752828589,162094.00137899333,114111.44024214808,394.78894,259.2105884357578,411734.731827584,270099.30011226854,386.73382,188.3722430779665,399380.97824951424,193300.98183960657,3476.50691,1598.038238467111,3582565.5126303253,1620416.2962353304,1168.71732,518.1860368731392,1200220.6389335785,520796.5740673872,1839.75994,777.8288469302461,1878925.5134660788,776104.688390407,0.38209,100000,0,705271,7367.909153590606,0,0.0,0,0.0,34104,355.55044817283385,0,0.0,35436,365.53770293140553,1589068,0,57051,0,0,0,0,0,65,0.6790497482292472,0,0.0,3,0.0313407576105806,0,0.0,0.06207,0.1624486377555026,0.3024005155469631,0.01877,0.3358954650269024,0.6641045349730976,24.66535607124296,4.371062310125996,0.3349784083898828,0.2315443142093358,0.2150935636438412,0.2183837137569401,11.283469616276149,5.825588996980876,20.1515788969794,12256.032733374055,55.32292934054291,13.632842459933403,18.38178176439727,11.698192217229533,11.61011289898271,0.5648776475426691,0.8001776198934281,0.6783302639656231,0.5841300191204589,0.1224105461393597,0.743993993993994,0.9250585480093676,0.8912037037037037,0.7104247104247104,0.1261682242990654,0.497309544038516,0.7238912732474965,0.6015037593984962,0.542566709021601,0.1214622641509434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.0048053040824809,0.0070844963207307,0.0093886218844305,0.0117594401041666,0.0139734789073798,0.0162259186358398,0.0185043350387549,0.0209507060255007,0.0232812899923214,0.025203535467465,0.0271288775709283,0.029235736909218,0.0313150036041602,0.0334935632942729,0.0357194519642082,0.037732138050972,0.0398016659232596,0.0416943866943866,0.0436422357660051,0.0589260918136164,0.0728419995186421,0.0863491930324989,0.099303905280646,0.1109869253479544,0.1275304071919619,0.1389820079775948,0.1499010027463754,0.1610594130279169,0.1715983949531146,0.1848404541830952,0.1963939784201469,0.2073019532779397,0.2180283414975507,0.2276630410850323,0.2381902418478863,0.2473169914568094,0.2571203510943566,0.2650163443203486,0.2718128494180185,0.2786437539778973,0.2861053271880776,0.2925056524261041,0.2974237190558434,0.3029768923140506,0.3076230307067866,0.3116006462197397,0.3163665537528971,0.3207605823532459,0.3254290995510958,0.3239846433622954,0.3224067819973809,0.3216736803456944,0.320471038108895,0.3195490961074545,0.3168748273851536,0.3149959573220032,0.315957534359312,0.3158562078064494,0.3173778247701654,0.3190897645489223,0.3206874702993822,0.3211645101663586,0.3230007172314865,0.3246549938585294,0.3266800427339292,0.3259312116454974,0.3300336255931617,0.3331930857964307,0.3381583121827411,0.3415,0.3465504411608376,0.3504972932141508,0.352006056018168,0.351947442515251,0.3545854644938741,0.3568796068796069,0.3599757183326588,0.359228650137741,0.3519230769230769,0.0,2.7737393491953672,57.8659088721996,178.52375480487785,267.9019790184039,fqhc5_100Compliance_baseline,16 -100000,95685,44962,427.0157286931076,6087,62.52808695197784,4751,49.12995767361655,1871,19.302921043005696,77.40264542862671,79.78476721212132,63.35728834693722,65.11301834702651,77.17682978267321,79.55697493127396,63.27572831995966,65.03222656096598,0.225815645953503,227.7922808473676,0.0815600269775558,80.79178606053006,154.9812,109.08604818060152,161969.98484610964,114005.16400961638,390.27643,255.79645502281335,407356.4090505304,266813.03997406166,374.98993,181.7785798903617,388353.420076292,187187.29057598507,3423.53353,1530.7536301071873,3545974.7818362336,1567927.9184700623,1171.36813,506.1621106259458,1210803.5846788944,515656.7302852814,1838.02426,752.2127670445494,1898194.973088781,767499.4349089377,0.38002,100000,0,704460,7362.272038459529,0,0.0,0,0.0,33704,351.6747661597951,0,0.0,34269,354.6219365626796,1600464,0,57292,0,0,0,0,0,69,0.7106652035324241,0,0.0,1,0.0104509588754768,0,0.0,0.06087,0.1601757802220935,0.3073763758830294,0.01871,0.3263703471022459,0.673629652897754,24.67340384487,4.36363135896885,0.328772889917912,0.2224794780046306,0.2233214060197853,0.225426226057672,10.912814807231312,5.60268640041686,19.70468083610329,12135.331590012029,53.316106008125,12.50499050836104,17.60803899187713,11.639767923522609,11.563308584364226,0.5514628499263313,0.750236518448439,0.6971830985915493,0.5721017907634307,0.1223155929038282,0.7296849087893864,0.884318766066838,0.8759305210918115,0.7149532710280374,0.15,0.4908321579689704,0.6721556886227545,0.635030198446937,0.5360094451003542,0.1159586681974741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569401828842,0.0046114709071928,0.0069689592209373,0.0094451722982236,0.0115719791338302,0.0135225953607722,0.0157921029290323,0.0177789571447525,0.0200500740892136,0.0219002005812763,0.0239754812521781,0.0257781701708278,0.027997121118651,0.0300109168057014,0.0321089558398679,0.0342208074084792,0.0362608461554391,0.0382907189108417,0.0401127358196226,0.0419272136068034,0.0560958539209643,0.0706829579838971,0.0840896928743061,0.0966099733888696,0.1085975236769389,0.1242171631685849,0.136020712413654,0.1461355870863359,0.1569949459872421,0.1672171227588573,0.1804526660349728,0.1929993507898723,0.2046623392156223,0.2147331139799521,0.2254946166789473,0.2354679475827873,0.2458932352613395,0.2541997933791493,0.262011799476837,0.2700497171266929,0.2768589795376643,0.2838012807801327,0.2898318087931543,0.2956390725705198,0.3007526999018217,0.3053146870349187,0.310523619735379,0.3149725222423881,0.320235020661157,0.3249486923117402,0.3231843200429588,0.3220884965456738,0.3211395228143015,0.3202399965468123,0.3195275031085322,0.3176517279277079,0.3161128308800303,0.3167349614817243,0.3181570523734932,0.319292438559963,0.3195433226825121,0.3197956577266922,0.3208002831386755,0.3222756196324478,0.3223293057153816,0.3241253739107816,0.327042413891261,0.3309731186164547,0.3326554227006557,0.3361587515348358,0.338434212324088,0.3412918354295459,0.3440812720848056,0.3503199268738574,0.3542000565664184,0.352878841398799,0.3549373280342403,0.3573869346733668,0.3557065217391304,0.3584834834834834,0.0,1.983119121069831,53.08975153471779,175.80018557241172,268.1461701304161,fqhc5_100Compliance_baseline,17 -100000,95729,45154,427.35221301799874,6070,62.30087016473587,4726,48.79399137147573,1914,19.63877194998381,77.33907921770925,79.70598036665068,63.32552877917672,65.07541937264422,77.09487503916026,79.4618883201597,63.23462310580223,64.98687511562592,0.2442041785489976,244.0920464909766,0.0909056733744861,88.54425701829882,155.298,109.2639253417104,162226.7024621588,114138.7931992504,391.74469,257.7093216264564,408663.29952261073,268647.87225026527,379.85959,185.21311726202083,393065.9779168277,190584.501428927,3411.71196,1573.6637371557474,3527679.4283863823,1607625.711284717,1152.83684,511.6199918957871,1191185.398364132,521360.32121487486,1875.323,795.506181282211,1926836.214731168,803592.6437867994,0.38152,100000,0,705900,7373.941021007218,0,0.0,0,0.0,33808,352.5681872786721,0,0.0,34685,358.5538342613001,1592724,0,57123,0,0,0,0,0,65,0.6790000940153976,0,0.0,0,0.0,0,0.0,0.0607,0.1591004403438876,0.315321252059308,0.01914,0.3394683026584867,0.6605316973415133,24.24360292218785,4.388621581858534,0.3250105797714769,0.2257723233178163,0.2228099873042742,0.2264071096064325,11.143739503501676,5.771244364417016,20.566477500810787,12147.56278104782,53.95847341563923,12.836912600363227,17.43666372854206,11.826972582504776,11.857924504229157,0.5639018197206941,0.7994376757263355,0.685546875,0.5859449192782527,0.1327102803738317,0.7183951551854656,0.9197994987468672,0.8657074340527577,0.6917293233082706,0.1548117154811715,0.5039647577092511,0.7275449101796407,0.6184092940125112,0.5501905972045743,0.1263537906137184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408523740074,0.0047451028105608,0.0069628411639921,0.0090330840513737,0.0112611008819669,0.0135453054822841,0.0156528832916942,0.0176214152262912,0.0199799586903617,0.0221942276572645,0.0243674813090342,0.026580939371219,0.0288482305390145,0.03094897128669,0.0330821635012386,0.0352519027134348,0.0374387502460349,0.0394570248448494,0.0415436129944677,0.0434646719313233,0.0578967151836615,0.0724337445201251,0.0859746060370948,0.0997697136668103,0.1121293288902012,0.1274460028347189,0.1386136513122997,0.1498168810152457,0.1606539858944219,0.1713969933364094,0.1831564200657363,0.194737127077806,0.2053575314444879,0.2154886576277863,0.224785543601546,0.2343510942592962,0.2442124071695795,0.2529040972534894,0.2611449783741443,0.2690346021157835,0.275983007882583,0.2830301257677683,0.2891661738616203,0.2948440026348883,0.3002633463186126,0.3058190901595973,0.3099420318824646,0.3134764384605614,0.3171418969573197,0.3217096676378689,0.3213186163133058,0.3204181280517158,0.3200462323457277,0.3194317869490373,0.318583281291819,0.3162184938328353,0.3142608282524349,0.3147642843053455,0.3158020886834446,0.3154277122451536,0.3165124702084936,0.3177026679587841,0.3191627420198848,0.3197700429491768,0.3215477304913468,0.3230036687221919,0.3245864232743867,0.3266622612417005,0.3308616811920157,0.3343010538874528,0.3361797342344399,0.3370510699610438,0.3389948665948412,0.3422242661148156,0.3456627863312054,0.3505706134094151,0.3521017527532185,0.3500205170291341,0.351555929352397,0.3581684128831975,0.0,2.2963600355243345,57.932083294983165,177.39038104828353,251.97791169422,fqhc5_100Compliance_baseline,18 -100000,95690,45149,429.1253004493678,5982,61.36482391054447,4712,48.7093740202738,1847,18.94659839063643,77.30793472821749,79.68559111549132,63.31631099018998,65.07086274613049,77.07915228649975,79.45626122486262,63.23230818509779,64.98848263143182,0.2287824417177404,229.3298906287049,0.0840028050921901,82.38011469866535,153.86668,108.32057630883662,160796.34235552303,113198.9744018976,389.93514,256.26005163860737,406957.8639356255,267267.91166834976,377.55123,184.00340341306904,391241.4985891943,189613.185860106,3392.4062,1542.5904479216697,3510165.29417912,1577767.3703176824,1119.06703,493.7114710255179,1157227.7876476122,503762.3365317708,1809.76076,755.0917243998423,1858491.0857978887,762791.1043698156,0.38105,100000,0,699394,7308.924652523775,0,0.0,0,0.0,33664,351.2279235029784,0,0.0,34489,357.0488034277354,1599870,0,57399,0,0,0,0,0,70,0.731528895391368,0,0.0,0,0.0,0,0.0,0.05982,0.156987272011547,0.3087596121698429,0.01847,0.3361572890025575,0.6638427109974424,24.452534036238116,4.365555938777262,0.3100594227504245,0.239176570458404,0.2285653650254669,0.2221986417657045,11.285785493624449,5.881513159214109,19.64934833436398,12156.822098291545,53.47902691360947,13.5872182859886,16.634295426679685,11.890498105415867,11.367015095525304,0.5657894736842105,0.7728482697426797,0.7152635181382615,0.584958217270195,0.1146131805157593,0.7403008709422011,0.9345794392523364,0.8396946564885496,0.7531380753138075,0.1231527093596059,0.5018846042331111,0.6738197424892703,0.6694756554307116,0.5369928400954654,0.1125592417061611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021869874248223,0.0043674759839487,0.0066748496130007,0.008816120906801,0.0109226263119355,0.0130646409514887,0.0153052380418268,0.0174578866768759,0.0195465047332801,0.0217422458798239,0.0239781848749833,0.0260269612624359,0.0278806203463737,0.029751725558875,0.0318859124117719,0.0339601575503199,0.0357261273209549,0.037593048244931,0.0397682353430699,0.0417392029521833,0.0562588785827692,0.0706727095741006,0.0842137289255851,0.096960454354228,0.1093059787249744,0.1242954581504785,0.1365830371824113,0.1481714066757493,0.1590287569969662,0.169457166453938,0.181903356774395,0.1945024393937754,0.2055424489840293,0.2158702045546481,0.2262042262042262,0.2362407930442487,0.2456986007899846,0.254089507909007,0.2631943262411347,0.2713380757643447,0.2788551712959211,0.2849556072853182,0.2910175671196552,0.2972003646483063,0.3029816625322243,0.3074408506648903,0.3125274119371937,0.3168792446579427,0.3211098427852436,0.3254390949819604,0.3244011915513081,0.3233084779402643,0.3222948090245933,0.3207454279549963,0.3196278377372534,0.3176304611185229,0.3165207460982109,0.3165069643386348,0.3173365326934613,0.3183371807949035,0.3182979522825474,0.3184458320943601,0.3189078011207421,0.3207006868162598,0.320426013830992,0.3219154782153605,0.3230092288351096,0.3267429760665973,0.32811837830202,0.3294365581136427,0.3324342857142857,0.336066010114453,0.3397014170040486,0.3426520012221203,0.3424179554884949,0.3460532572515454,0.3498098859315589,0.3501609010458568,0.3553808620222282,0.3593335857629686,0.0,2.0329490778780515,55.293982292860505,176.75467752312474,259.05366348249623,fqhc5_100Compliance_baseline,19 -100000,95698,45214,427.2294091830551,6210,63.522748646784684,4877,50.29363205082656,1921,19.592885953729443,77.38171245272493,79.75499289449294,63.34258245905804,65.0946104548656,77.13581579638361,79.51233119488128,63.25045421525481,65.00673991211869,0.2458966563413156,242.6616996116593,0.0921282438032307,87.87054274691286,154.66044,108.91758735854576,161612.57288553574,113813.44626436036,395.4465,258.9218410087926,412549.3636230642,269888.47952764475,385.30095,187.46953204856544,398276.2126690213,192546.21163077236,3503.24829,1596.4283464599273,3613570.806077452,1621239.752901361,1167.69343,517.9402320402015,1203095.425191749,524181.4752723461,1880.68458,797.2980483852189,1920115.5301051224,796032.9437638351,0.38119,100000,0,703002,7346.026040251625,0,0.0,0,0.0,34047,355.0648916382788,0,0.0,35199,363.497669752764,1595544,0,57173,0,0,0,0,0,73,0.7628163597985329,0,0.0,0,0.0,0,0.0,0.0621,0.1629108843358954,0.3093397745571659,0.01921,0.3234439516745679,0.676556048325432,24.508077326335663,4.468200165666173,0.3251999179823662,0.2288291982776296,0.2241131843346319,0.2218576994053721,11.280374165754155,5.794748862773859,20.457155656656948,12216.872081215291,55.277852958983445,13.335261811904465,18.07417026215136,12.020063088244594,11.848357796683016,0.5644863645683822,0.78584229390681,0.694829760403531,0.5864592863677951,0.1229205175600739,0.7169811320754716,0.9124668435013262,0.8481308411214953,0.7304347826086957,0.1561181434599156,0.5106796116504855,0.7212449255751014,0.6381692573402418,0.5480880648899189,0.1136094674556213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205963377086,0.0049164208456243,0.0071640215935381,0.0094874347357942,0.0118396159244868,0.0138289205702647,0.0159673719092531,0.0182735105557597,0.0205677601382088,0.0227966014945234,0.0251068759418922,0.0272687138735741,0.0295245832519204,0.0317888708049197,0.0339108987523348,0.035846852156291,0.0380002485707183,0.0401183002127328,0.0421442389698999,0.0443133617500234,0.0590926181225717,0.0722930669849446,0.0856540261484543,0.0982178551139352,0.110590717299578,0.1256067768647482,0.1385870718560332,0.1500383321265812,0.1602153869165269,0.1699779012637044,0.1831328936592094,0.1943139250373514,0.206323826926842,0.2167386431968512,0.2263241845883064,0.2360965023970593,0.2462552560256081,0.2539002305832068,0.2631471482372158,0.2710740583809535,0.2784855532798741,0.2855489301999298,0.2916489135066041,0.2973934927197555,0.3025267249757045,0.3071282443124399,0.3117009832128293,0.3163467902051621,0.3211964262592257,0.325414831033846,0.3244766722273045,0.323229547390695,0.3223019558182074,0.3211366290385364,0.320895301297624,0.3185642090477426,0.3160422063562267,0.3156809141061109,0.3160089174792804,0.3168500124603937,0.3179625266464714,0.3173021916240901,0.3186160006673896,0.3197441155492154,0.3214182968929804,0.3230306487579733,0.3244370072040388,0.3286446611652913,0.3300991204802457,0.3327934263026903,0.3357087740002723,0.3381088825214899,0.3414063488048564,0.3426471714001378,0.3461901169370049,0.3485877726135145,0.3545914456538402,0.3506916192026037,0.3547400611620795,0.3584758942457232,0.0,2.556369703848827,55.29580688240778,186.9984338155925,267.8224542191868,fqhc5_100Compliance_baseline,20 -100000,95849,45290,429.4984819872925,6158,63.02621832256988,4876,50.20396665588582,1961,20.010641738567955,77.44506122741345,79.72486824782045,63.40474875222951,65.08512800980195,77.20056834360084,79.481775486253,63.31543673076671,64.99868401932936,0.2444928838126117,243.0927615674534,0.0893120214627956,86.44399047258844,155.75164,109.5280297179956,162496.65619881274,114271.21442894088,395.95539,258.9681380627146,412395.2779893374,269479.4575896546,377.18535,183.50244337516375,389350.196663502,188181.6959694097,3528.76571,1601.96212564242,3636907.218645996,1627081.1026873451,1164.38753,514.7162356805273,1194604.9411052803,517112.6358867147,1931.43004,802.6303073630413,1973534.5804338076,804267.1270914889,0.38363,100000,0,707962,7386.211645400577,0,0.0,0,0.0,34167,355.7261943264927,0,0.0,34495,355.809658942712,1595609,0,57309,0,0,0,0,0,76,0.782480777055577,0,0.0,1,0.0104330770274076,0,0.0,0.06158,0.1605192503193181,0.318447547905164,0.01961,0.3324022346368715,0.6675977653631285,24.47739139582772,4.4613265384161735,0.3234208367514356,0.2233388022969647,0.2212879409351927,0.2319524200164069,11.036446219577574,5.579973459533552,20.778739191171013,12270.260606273418,55.20244338334773,12.968997414908992,17.964959280798958,11.995893814447346,12.272592873192435,0.5518867924528302,0.7897153351698806,0.673430564362714,0.5848007414272475,0.1220159151193634,0.7245600612088753,0.9175,0.8537735849056604,0.7338709677419355,0.1531914893617021,0.4886522835528159,0.7155297532656023,0.6071118820468343,0.5403128760529483,0.1138392857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025202939330755,0.0044773549164801,0.0067529886537623,0.0089927327351711,0.0113398500213384,0.0134396842030297,0.0157153915098183,0.0177735629722536,0.0198919625442922,0.0220347648261758,0.0242678681138644,0.0265217168350341,0.0284293989564931,0.0303444870753057,0.0325468782196579,0.0343307769325254,0.0361235211384131,0.0380605985244134,0.0399480923955359,0.0421713072793107,0.0567540795578958,0.0713181371832104,0.085326018677499,0.0985268194409468,0.1113577545395249,0.1272122843121735,0.1398456277065444,0.151773667491793,0.1625883632408918,0.1728089887640449,0.1858928206836523,0.1985229812457487,0.2097738892567545,0.22052883250726,0.2304025481904552,0.2410519677372957,0.2504792688363798,0.2590312032989876,0.2675682722501218,0.2742708726644469,0.281500751531969,0.2874463632218312,0.2935888336881949,0.2993045830490622,0.3040734853356955,0.3082169855457881,0.3129318978467701,0.3176352322903279,0.3214257959225967,0.3252183780645502,0.3241191828385325,0.3234069452651541,0.3222985985183935,0.3214239407603763,0.3198358980435137,0.317616540779736,0.315142816585966,0.3165631131458469,0.3170656949221809,0.3174191254888019,0.3183567478702735,0.319027238121536,0.3188917929952953,0.3192044415706035,0.3206886629579896,0.3214991163322591,0.3233866159393543,0.3274430554250086,0.33182135380321,0.3358288770053476,0.3406458086290249,0.3435635123614663,0.3442550505050505,0.3491001384402399,0.3505370211957038,0.3529552811413499,0.3534429280397022,0.3467691668398088,0.3460033538289547,0.3571990558615263,0.0,2.4688304615582606,57.09390197110089,180.48688056816687,268.31699757045567,fqhc5_100Compliance_baseline,21 -100000,95700,45140,428.1818181818182,6099,62.476489028213166,4677,48.45350052246604,1856,19.13270637408568,77.29747507811412,79.70099539203197,63.28577397120039,65.06592287916543,77.06398984748688,79.46647265694462,63.19910110847008,64.98083288090841,0.2334852306272381,234.52273508735288,0.0866728627303103,85.08999825701835,156.25698,109.98674246604008,163277.93103448275,114928.67551310352,396.68602,261.2119715958131,414084.58725182863,272523.4081460952,377.69346,183.9088001278752,392020.30303030304,190117.7014707369,3347.42697,1529.686962094827,3468907.993730408,1569700.3422199285,1077.30318,483.7790343648341,1115367.460815047,495196.86535362,1823.39266,765.1562829346168,1880369.2998955068,777286.7477075612,0.38029,100000,0,710259,7421.724137931034,0,0.0,0,0.0,34285,357.80564263322884,0,0.0,34610,359.03866248693834,1581153,0,56714,0,0,0,0,0,62,0.6478578892371996,0,0.0,0,0.0,0,0.0,0.06099,0.1603776065634121,0.3043121823249713,0.01856,0.3226108682073704,0.6773891317926296,24.50414473355304,4.380196638432039,0.3211460337823391,0.238400684199273,0.2148813341885824,0.2255719478298054,11.113554193955611,5.674039544394702,19.66778772689057,12170.603111262611,53.04894670455958,13.286120225115557,17.008206411765848,11.2671323708839,11.487487696794298,0.5606157793457345,0.7901345291479821,0.6917443408788282,0.5800995024875621,0.1127962085308056,0.7260383386581469,0.9246753246753248,0.8575063613231552,0.7109375,0.1559633027522936,0.5001459854014598,0.7191780821917808,0.6330027051397655,0.5353805073431241,0.1015531660692951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0043211003590773,0.0067211533580384,0.0088100802763946,0.0108642578125,0.0129051314958544,0.0151360613602056,0.017330119891342,0.0195649283573846,0.0216178021730448,0.023827351707302,0.0259702903166156,0.0281372811259027,0.0302234038168253,0.0323683069362132,0.0347334995190268,0.0368147756599608,0.0390509812065206,0.040718662546945,0.0426545223381306,0.0575669577570718,0.0715706389749602,0.0850918706779856,0.0977708580986545,0.109573289730471,0.124661447312738,0.136536848921016,0.1480941071219366,0.1585931819153941,0.1694778771513544,0.1829731245416505,0.1949181020932476,0.2065791623549915,0.2167829869290355,0.226657406794982,0.23656677502746,0.2460266010953392,0.2539088901906006,0.2624887808314114,0.2700459667342985,0.2771463988229706,0.2837867909722303,0.2905858384857745,0.2967666050553302,0.3018893173882894,0.3072660858405114,0.3115734068550661,0.3153271456984038,0.3201401960147985,0.3246653616210782,0.3239248400421154,0.3225971158490305,0.3215158751465996,0.3203592380676468,0.3193855853444558,0.3172573283915826,0.3161790289419579,0.317013223221747,0.317287061948711,0.3181559273762905,0.3187645796398246,0.3197456993268511,0.3208035751576661,0.3219345927642131,0.3240115025161754,0.3249844107254209,0.3252159581723119,0.3295490183779715,0.332714275702572,0.3360938304869834,0.3402483963422956,0.3443473656341011,0.3456177800100452,0.3470548100977939,0.3493998499624906,0.3497816078385078,0.3512561274509804,0.3497267759562841,0.3600439077936334,0.3675115207373272,0.0,1.65521869134719,55.29626606606708,178.3529682256927,252.4484909341864,fqhc5_100Compliance_baseline,22 -100000,95821,45581,431.2833303764311,6149,62.78373216727022,4789,49.31069389799731,1893,19.27552415441292,77.32864418348662,79.63881817116774,63.32870225298407,65.0380994062409,77.09191317180533,79.40668608583016,63.2411658248299,64.95549822171888,0.2367310116812859,232.13208533758237,0.0875364281541664,82.60118452201937,154.59158,108.84791542384852,161333.7159912754,113595.05267514275,396.16711,261.27169999082395,412770.9792216738,271993.2392117871,389.74994,190.2233883352852,402566.87991150166,195316.0811203065,3433.06303,1574.2958181566742,3536776.844324313,1597306.114820597,1148.04095,513.2861492268819,1178108.5461433297,515759.6076382024,1853.43606,773.565830036462,1889872.6166497949,770161.3265426712,0.38365,100000,0,702689,7333.350726876155,0,0.0,0,0.0,34213,356.35194790286056,0,0.0,35602,367.41424113712026,1588068,0,57091,0,0,0,0,0,66,0.6887842957180577,0,0.0,1,0.0104361256926978,0,0.0,0.06149,0.1602762934966766,0.3078549357619125,0.01893,0.339649013822022,0.6603509861779779,24.112632130610564,4.37914999925497,0.3165587805387346,0.2426393819168928,0.21862601795782,0.2221758195865525,11.385960857719466,5.992072746317469,20.2082896732082,12289.651089371602,54.80491022938714,14.216919796343191,17.202074833774784,11.747619881913772,11.638295717355398,0.5729797452495302,0.8055077452667814,0.7084432717678101,0.5768863419293219,0.1221804511278195,0.7432835820895523,0.9323467230443976,0.8707317073170732,0.7292576419213974,0.1359649122807017,0.5068135691504784,0.7184325108853411,0.6482820976491862,0.5342298288508558,0.1184210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025725426647085,0.0048858614118314,0.0071120580327702,0.0092739314155696,0.0115212527964205,0.0135208055467882,0.0156968269985424,0.0180535994938052,0.0205410156050402,0.0226451777948324,0.0248473298085987,0.0270417273865478,0.029309901854992,0.0314398072844818,0.0336279170490755,0.0355368229667048,0.0374708956382263,0.0397200622083981,0.0418484357472267,0.0436728491434043,0.0581075161149008,0.0720394805629326,0.0850374718306168,0.0978993053731123,0.1100874881416675,0.1265737148655933,0.1390868219027017,0.1507719481182767,0.1616833607415159,0.1718212321644887,0.1846344352320447,0.1971462261599541,0.2086092355198921,0.2196609502574023,0.2284743077786211,0.2390071550406486,0.2482973449746555,0.257188534372115,0.2653925643296768,0.2725239689894032,0.2791517386111981,0.2863307496570081,0.2918100890207715,0.2976576576576576,0.3041964850786232,0.3100844069302532,0.3153408378669742,0.3191012095181045,0.3230012715053066,0.3271104647319363,0.326569409988135,0.3254890607552008,0.3244900265581737,0.3229076039672873,0.3224220391257059,0.3194851868347898,0.3182806622117109,0.3195054177148588,0.3205809483126869,0.319977154687751,0.3203659611166313,0.3210272238050016,0.323092710100312,0.3238067572398999,0.3247337164290351,0.3246292040944224,0.3261148311725317,0.3297949185013033,0.3347565883876386,0.3371559633027522,0.3387756958340913,0.3419515820768741,0.3423491583128428,0.3420409410326917,0.3436940755392295,0.3484195402298851,0.349070971672251,0.3481871581932347,0.3465644675609088,0.3464077669902912,0.0,2.512202004256295,58.46623768971795,183.13668322979916,252.56405010601875,fqhc5_100Compliance_baseline,23 -100000,95744,45046,426.3348094919786,6018,61.5704378342246,4749,48.99523729946524,1855,18.95680147058824,77.35098256499538,79.69929610190324,63.33757887846742,65.07105030006544,77.12329316290565,79.47434022119938,63.25340757602833,64.99067906526075,0.2276894020897231,224.95588070385963,0.0841713024390884,80.37123480468722,155.56046,109.4456952847522,162475.41360294115,114310.76128504366,392.17424,257.65663313317555,409000.1148897058,268505.6240870325,380.9834,185.22735790663756,394412.9867145722,190727.72710132712,3390.56088,1540.662891007457,3498066.2704712567,1566121.179812079,1134.76314,500.851678740762,1168183.8235294118,506198.2932976503,1815.10654,754.5963613245196,1856457.0103609627,754555.3612788836,0.38029,100000,0,707093,7385.246072860962,0,0.0,0,0.0,33873,353.15006684491976,0,0.0,34816,360.14789438502675,1591269,0,57091,0,0,0,0,0,70,0.7311163101604278,0,0.0,0,0.0,0,0.0,0.06018,0.1582476531068395,0.3082419408441342,0.01855,0.3432646592709984,0.6567353407290016,24.45653941678918,4.336764899282064,0.3287007791113919,0.2286797220467467,0.2238365971783533,0.2187829016635081,11.439302678616828,6.063624103230452,19.62222304070498,12167.55542327682,53.8210620716294,12.999767882531994,17.911628146722958,11.601330134975422,11.308335907399028,0.5634870499052432,0.783609576427256,0.7110826393337604,0.561618062088429,0.1135707410972088,0.7364280094413848,0.914572864321608,0.8794326241134752,0.7196652719665272,0.1327014218009478,0.5002875215641173,0.7078488372093024,0.648506151142355,0.5157766990291263,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505584640466,0.0046421585023464,0.006879547045752,0.0090700414398309,0.0114691258858577,0.0138347364884812,0.0159529464531452,0.018207240031434,0.0204826296262226,0.0226795893929934,0.024745269286754,0.0268117429685896,0.0290652245435104,0.0311605395942745,0.0334244596894826,0.0353385012919896,0.037174336246531,0.0390697964012203,0.0410372110915877,0.0432449889569529,0.0578238039064212,0.0715854883253828,0.0851831269463463,0.0979697406188558,0.1103649665816272,0.1254875844353534,0.1374482978046452,0.1484414077881719,0.1591688478179584,0.1687942501609096,0.1811327258234774,0.1941275785190155,0.2054229840551652,0.2159018796910216,0.2252479334294614,0.2348501640216331,0.2439945054331438,0.252832056517386,0.2619747398522519,0.2697117313313084,0.2770005207429266,0.2833540052889003,0.2899330605293658,0.2953388968043965,0.30033123430277,0.3056099031587237,0.3108400304965691,0.3145841805612037,0.3189729918600287,0.3233803931917139,0.3231637504882746,0.3215028440000551,0.3209843463545339,0.3202831007931453,0.319409332897124,0.3176084724201879,0.3165644366252991,0.3172857166346043,0.3181942497692386,0.3189507494646681,0.3190437859188678,0.3208578305646529,0.3227622875324458,0.3237810189631681,0.3249226488859041,0.3257698119105924,0.3272024334081928,0.3304650943692491,0.3334382321060177,0.3381240844122422,0.3400018186778212,0.3403656073971729,0.3453663453663453,0.3498061278795712,0.349620181937541,0.347340930674264,0.347839553972433,0.3523442256951491,0.3418803418803419,0.3521288837744534,0.0,2.27383217443592,55.69665234850955,177.3046082251219,260.21913148497305,fqhc5_100Compliance_baseline,24 -100000,95851,45299,427.778531262063,6186,63.3900533119112,4883,50.45330773805177,1929,19.86416417147448,77.51248185563044,79.79891570257166,63.42745123530996,65.11129402911813,77.2781202077374,79.5616031604464,63.34092199957716,65.0252739261321,0.2343616478930386,237.31254212526665,0.0865292357327973,86.02010298602636,155.93842,109.68663280931374,162688.13053593598,114434.29156640386,395.46764,258.9661562965851,412068.6064829788,269658.5286502856,382.97905,186.0837883323817,395841.2744780962,191371.47248133432,3472.31291,1583.6109325378482,3592560.8287863457,1622104.6233611014,1170.73377,513.9815391009801,1210009.066154761,524854.8749503567,1883.53276,782.6950451355135,1941143.629174448,796914.3443177488,0.38397,100000,0,708811,7394.915024360726,0,0.0,0,0.0,34128,355.5309803757916,0,0.0,35043,361.926323147385,1596549,0,57236,0,0,0,0,0,65,0.6677029973604865,0,0.0,1,0.0104328593337576,0,0.0,0.06186,0.1611063364325338,0.3118331716779825,0.01929,0.3354391371340524,0.6645608628659476,24.786458504147884,4.374314101536445,0.3268482490272373,0.2389924226909686,0.2181036248208069,0.2160557034609871,11.29029354954855,5.874672946006164,20.218487913250296,12313.690295656766,55.184302787897145,13.912535045329829,18.093546383991253,11.729227610553412,11.448993748022664,0.5635879582224043,0.778063410454156,0.7017543859649122,0.5699530516431925,0.1109004739336492,0.7380772142316427,0.9061032863849764,0.8624708624708625,0.7461538461538462,0.1213592233009708,0.4988770353733857,0.7044534412955465,0.6426735218508998,0.5130434782608696,0.1083627797408716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021451844656264,0.0047801824976453,0.0069836507566466,0.009548355673712,0.0118551778784615,0.01430895962575,0.0167172323919284,0.0189468102463697,0.0211062665291576,0.0233970753655793,0.0256720086017101,0.0277923063512086,0.0299518099524264,0.0320585389951217,0.0342367604457686,0.0361912434542806,0.0379955092453669,0.0401215049192904,0.0422150432641868,0.0440662086196127,0.0583039606231881,0.0726653004893145,0.0860148579691314,0.0994255227532898,0.1114059193278372,0.1275083435427316,0.1394597115211378,0.1510170230411806,0.1618772208765059,0.172631285873383,0.1854595896597703,0.1980903827875227,0.2094674556213017,0.218861248826086,0.2286169394705042,0.2391285113912851,0.2477661162733694,0.2563667614051249,0.2652568865530989,0.2732562127066139,0.2806432633849774,0.2871839683094489,0.2939712715522324,0.2998889432894281,0.3057727217717536,0.31074327394182,0.3154700332755892,0.3202218030358657,0.3237814227364677,0.3275604187987089,0.3268573725463924,0.325403452099046,0.3245540339970316,0.3222276544346025,0.3217131621353912,0.3194088579795022,0.3175014210825491,0.3178775430039771,0.3192735195492689,0.3190204808548531,0.3187382033600568,0.3188394370639019,0.3203569040454697,0.3198431966501102,0.3222179787081682,0.3232017781913106,0.3232574579386399,0.3280773776202028,0.3313439050626323,0.3343233420610418,0.3360923448615274,0.3351235791010533,0.336285378088809,0.3376603886846252,0.3414070444670426,0.343946084127353,0.3498651483368294,0.3548703849175176,0.3558364712210866,0.362486043915147,0.0,1.8290722412825688,58.260812230613446,182.4943255253411,263.0820670667208,fqhc5_100Compliance_baseline,25 -100000,95724,45032,427.5521290376499,5966,61.02962684384271,4650,47.85633696878526,1838,18.741381471731227,77.31288813594676,79.67206635061851,63.318020272784125,65.06232803014818,77.08113632853917,79.44416585695194,63.23218289193248,64.98106436773602,0.2317518074075906,227.9004936665672,0.0858373808516432,81.26366241215521,155.1429,109.26538355669018,162073.14779992477,114146.27842201556,390.33039,256.0034230384694,407083.991475492,266756.62638258893,372.4497,180.7286697683666,384493.5334921232,185222.485524427,3333.6221,1503.4020096269203,3434674.8777735992,1522926.6446754085,1086.28841,477.0546378388393,1114520.538214032,478170.62305803294,1795.28284,752.7786030512151,1833278.509046843,750978.3468058822,0.38073,100000,0,705195,7366.961263632945,0,0.0,0,0.0,33726,351.59416656219963,0,0.0,34076,351.3747858426309,1595385,0,57234,0,0,0,0,0,52,0.5327817475241319,0,0.0,1,0.0104467009318457,0,0.0,0.05966,0.1566989730255036,0.3080791149849145,0.01838,0.3219715154424707,0.6780284845575292,24.64208226411384,4.382852419149852,0.3255913978494623,0.2243010752688172,0.232258064516129,0.2178494623655913,10.928249302332452,5.5121146378545145,19.66395756951029,12186.767276277782,52.71996387418432,12.604777854279757,17.027046111950177,12.11325641977612,10.974883488178271,0.5544086021505377,0.7622243528283796,0.7040951122853368,0.5601851851851852,0.1105626850937808,0.7319932998324958,0.9302325581395348,0.8421052631578947,0.6575875486381323,0.1470588235294117,0.4930555555555556,0.663109756097561,0.6578483245149912,0.5297691373025516,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0046726603756372,0.0068588358242271,0.0089282086702149,0.0108725501164552,0.0130855397148676,0.015642047945834,0.0179070954568657,0.0201506957152934,0.02215850911325,0.0242899620629549,0.0263701056652598,0.0286431282204235,0.0308804746405174,0.0326021913624827,0.034448188188602,0.0367190978658189,0.0386934099799736,0.0403593972608437,0.0420834375260481,0.056357144348625,0.0706161782093269,0.0840849028902219,0.0969329281756337,0.1093853794325119,0.1248730642294998,0.1372420013795299,0.1490127202086327,0.160725540256161,0.1701107762919432,0.1828518514530595,0.1939304139042407,0.2054627696590118,0.215718441717523,0.2257429228416455,0.2366278618978522,0.2460017187308177,0.2547197407799104,0.2633312136627907,0.2718731380906549,0.2789758192404301,0.2853919184360677,0.2917006706170386,0.2968542153514291,0.3025837878548608,0.3075406604238541,0.3113395350001878,0.3156180418601692,0.319693790316313,0.3238234866796106,0.3230719465185864,0.3230362600148674,0.3224978493562171,0.3218151299415407,0.3205931837470036,0.3184601924759405,0.3162023949433027,0.3172836253458042,0.3181210584041678,0.3192637201132738,0.3200142838348337,0.3213598205957649,0.3224004703510835,0.323177829512894,0.3241015257791597,0.3258796792142316,0.3274295834999714,0.3308482072342442,0.3327224669603524,0.335621084553689,0.3377816370366985,0.3383055526064338,0.3411027568922306,0.3437048307341194,0.3442761734549901,0.3480368968779564,0.3463316892725031,0.3509127789046653,0.3540510543840177,0.3578987150415721,0.0,2.858666811210331,51.64811596110395,178.15964961064626,258.538249297843,fqhc5_100Compliance_baseline,26 -100000,95783,45086,425.503481828717,6159,63.059206748587954,4819,49.74786757566583,1907,19.51285718760114,77.37208356525132,79.71092566545049,63.35007434272507,65.0795575941577,77.13094199671872,79.47188383898005,63.25985212702064,64.99255854463239,0.2411415685325977,239.0418264704408,0.0902222157044363,86.99904952531767,154.6644,108.77342213321177,161473.74795109782,113562.3462756562,394.6962,259.4497399909848,411518.5158117829,270317.61376338673,380.76379,185.3449514484048,394433.8556946431,191012.24442275608,3463.89606,1585.5743346927268,3577351.0539448545,1616333.2059892956,1157.36695,512.9180934072809,1196040.7901193325,523219.0403383488,1874.63308,790.9125199194126,1919587.672133886,794287.7926359957,0.38113,100000,0,703020,7339.715815958991,0,0.0,0,0.0,34007,354.46791184239373,0,0.0,34825,360.42930373865926,1595353,0,57381,0,0,0,0,0,85,0.8874226115281417,0,0.0,2,0.0208805320359562,0,0.0,0.06159,0.1615984047437882,0.3096281863938951,0.01907,0.3412869458128079,0.6587130541871922,24.58228894073566,4.428169851073555,0.329321435982569,0.2297157086532475,0.2172649927370823,0.223697862627101,11.318601294702493,5.8265486555463175,20.3491691520057,12201.38101959388,54.69939019515446,13.14507534991844,18.090149080993925,11.620639602271496,11.843526161970608,0.5582070969080722,0.7777777777777778,0.6868304977945809,0.5807067812798472,0.12152133580705,0.7253086419753086,0.913151364764268,0.8548009367681498,0.7544642857142857,0.1570247933884297,0.4967357365881351,0.7002840909090909,0.625,0.5334143377885784,0.1112440191387559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0047240582295932,0.0070629782224838,0.0093558578234678,0.0116037831790908,0.0137949991855351,0.0161860787491463,0.018235810355736,0.0204279758011772,0.0227919353188005,0.0247794140252713,0.0269501944806494,0.0293776018913501,0.0315383031301482,0.0335969806028482,0.0357187138369978,0.0379678701556806,0.0400514384087279,0.042031214281261,0.0442387581080096,0.0589407774589094,0.0732873130425687,0.0864223414961422,0.0990333088158033,0.1107552596369612,0.1266004648214663,0.1387046181887544,0.1495970057206048,0.1601293241426407,0.1703322013562299,0.1826279665210749,0.1944936873054306,0.2050819458331522,0.2157272170718908,0.225668437434696,0.2356407132572821,0.2456629664751492,0.2548737436197243,0.2637552010702584,0.2713646096943741,0.2782835000867503,0.2851163334502514,0.2913366278107488,0.2959658975249362,0.3011931204408355,0.3063245000492562,0.3108969143143268,0.3146021694070372,0.3188653363356368,0.3233540831399029,0.3222157967642589,0.3207808979502116,0.3196797564344713,0.3184170955988664,0.3175454761621686,0.3162329008440434,0.3148429584599797,0.3163534914252892,0.317049382293556,0.3173990710968203,0.3193700610464027,0.3198127000434662,0.3220356724166806,0.3239320247426364,0.3245205018506946,0.3251226385554743,0.3269494626114795,0.331367292225201,0.333930516036112,0.3363455414012739,0.3400647308200756,0.3436936459106821,0.3469541711196329,0.3470257112429636,0.3505649717514124,0.3497869318181818,0.3536399634480658,0.3581027667984189,0.3606158833063209,0.347940074906367,0.0,2.231413520835986,56.74883108250496,181.23858393744047,262.74038508165125,fqhc5_100Compliance_baseline,27 -100000,95643,44861,426.1158683855588,5935,60.8199240927198,4650,48.02233305103353,1825,18.684064698932488,77.25911226955019,79.65512462142888,63.27736057920528,65.045632316355,77.02689736941933,79.42571744012342,63.19146549391602,64.9633954486318,0.232214900130856,229.40718130546145,0.085895085289259,82.23686772319638,155.4927,109.3739677196915,162576.14253003357,114356.47953294178,388.70543,255.33395105765268,405816.44239515695,266369.24924736016,372.41105,181.2116290117326,385743.0862687285,186583.38213780176,3367.55958,1522.3182743221037,3481610.3217172194,1552647.562554506,1099.53119,483.3141755803785,1134055.6548832636,489900.8556537767,1797.3791,754.7083070284185,1843249.0825256424,758695.2304643613,0.37969,100000,0,706785,7389.824660456071,0,0.0,0,0.0,33574,350.386332507345,0,0.0,34049,352.362431124076,1588492,0,57089,0,0,0,0,0,71,0.742343924803697,0,0.0,1,0.0104555482366717,0,0.0,0.05935,0.1563117279886223,0.3074978938500421,0.01825,0.3298985670584446,0.6701014329415553,24.646111130741627,4.429717046108725,0.3290322580645161,0.2227956989247312,0.2191397849462365,0.2290322580645161,11.025558116005111,5.556109746858506,19.482697135047687,12149.499802338516,52.50848463625909,12.316935246602302,17.40705068768925,11.220290695401156,11.564208006566377,0.5470967741935484,0.7837837837837838,0.6875816993464052,0.5525024533856723,0.1098591549295774,0.7323272438443209,0.9263157894736842,0.8650602409638555,0.7213114754098361,0.1590909090909091,0.4783249778826305,0.7012195121951219,0.62152466367713,0.4993548387096774,0.0970414201183432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0044616149017937,0.0065769441568722,0.0089009917086652,0.0111297624497685,0.013189253050333,0.0153149662499745,0.0174668476984799,0.019637910060212,0.0215673429279177,0.0236835629921259,0.0255262347263579,0.0278017773389286,0.0300395582660293,0.0323013415892672,0.0342966447810577,0.0361330957609911,0.0381772887689433,0.0402850010401497,0.0421171147691377,0.0567433694902501,0.0703011259492013,0.0841664216406939,0.0973085104142535,0.109159837796739,0.1242083412763974,0.1366557265610893,0.1481221032443663,0.1592634573023375,0.1693333619689876,0.1816416783518498,0.194246397226135,0.2059970374243018,0.2160699417152373,0.2259579864365661,0.2371524384827218,0.2463636770497672,0.2553796183516037,0.2633237040238382,0.2711019188785476,0.2779105932596787,0.2839178885630498,0.2901610357553965,0.2949585793125007,0.3000694943977762,0.3053114300194064,0.310129283293586,0.3152409623185447,0.3188332424643664,0.3230095520334453,0.3220245166864672,0.3212732769211656,0.3210901479365259,0.3206327532610906,0.3200740331656641,0.3180944768112154,0.3162725699131346,0.3166016171796518,0.3177991529928158,0.3177847784062433,0.3192252106833837,0.3203126545958247,0.3212891854463049,0.3225597642909756,0.324621667067019,0.3261163734776725,0.3278068479126379,0.3302201257861635,0.3322327982859752,0.3338233541261075,0.3372098326264423,0.3396757905926122,0.3410608542270379,0.3462792990973223,0.3496451251400821,0.3493661888401848,0.3522483940042826,0.3568825910931174,0.3572421462329719,0.3615775087856306,0.0,2.3532519686803006,55.27961819506877,161.90447529409423,264.6399094690019,fqhc5_100Compliance_baseline,28 -100000,95621,45379,430.4912100898338,6074,62.37123644387739,4768,49.29879419792724,1889,19.378588385396515,77.28554750318864,79.71883533514418,63.27381344368565,65.07242475309694,77.0541543074383,79.488999746805,63.18731377404615,64.9897962206832,0.2313931957503427,229.83558833917076,0.0864996696394939,82.62853241373591,155.30636,109.26515603115574,162418.44364731596,114268.7916532325,393.278,258.1950680061524,410704.8033381789,269437.1618370672,381.95395,185.11563306639184,396704.949749532,191458.27131348223,3418.06984,1555.499908239391,3534196.7768586394,1586487.808128659,1147.37839,505.869009869356,1187006.17019274,516138.8893002416,1851.44098,775.2369474779184,1899995.3566685144,776147.1957679667,0.38341,100000,0,705938,7382.656529423453,0,0.0,0,0.0,33949,354.4200541722007,0,0.0,34852,361.6778741071522,1589693,0,56966,0,0,0,0,0,66,0.6902249505861684,0,0.0,0,0.0,0,0.0,0.06074,0.1584204898150804,0.3109976950938426,0.01889,0.3306704260651629,0.669329573934837,24.585742568028987,4.369331885488899,0.3267617449664429,0.2342701342281879,0.2139261744966443,0.2250419463087248,11.289105526235524,5.860209862223165,20.04073713480464,12350.638716617172,54.03229692298084,13.543190770373773,17.44186252316063,11.38246339469226,11.66478023475417,0.5698406040268457,0.8021486123545211,0.686777920410783,0.5990196078431372,0.1304753028890959,0.7360126083530338,0.900709219858156,0.8632911392405064,0.7424892703862661,0.1788990825688073,0.5095741640468705,0.7420749279538905,0.6268271711092004,0.5565438373570522,0.1181286549707602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024118362383461,0.0046354055726298,0.0070462575640661,0.009147735935356,0.0115879217026818,0.0139860852203852,0.016260162601626,0.0185620300751879,0.0205071033332992,0.0227870917526089,0.0251123284298639,0.0273838882038635,0.029130211013896,0.0311098741379843,0.0331966916889526,0.035395484024452,0.0375033679454496,0.0391425811878823,0.0411050160818561,0.0432587492828456,0.0580093458920936,0.0719877592513021,0.0861400393026408,0.0986808833445718,0.1112038367277951,0.1268746822572445,0.1393334608599545,0.1508198818687762,0.1621433616574987,0.1723274630105193,0.1850281114096711,0.1966754497251228,0.2085204237325079,0.2199381999079573,0.2294597574421168,0.2393753399114287,0.2492845644786263,0.2579256404187939,0.2665393968318902,0.2740748383546567,0.2815731872560714,0.2882806918923983,0.2949538782575703,0.3005499255559291,0.3057898516327698,0.310564449436538,0.3145731035173865,0.3187469744452088,0.3237597572677057,0.3283852137508419,0.3279635790579583,0.3268368497785602,0.3258305027413285,0.3254694479378984,0.325261468980271,0.3236177976756309,0.3220524363567194,0.3218078984577949,0.3215524755182609,0.3227231272688257,0.3232345942705113,0.3251953895950106,0.32634755637522,0.3267348853836185,0.326771653543307,0.3279033515198753,0.3290006513182114,0.332738988988989,0.3366384858922172,0.3404641616671929,0.3439016646255726,0.3468685478320715,0.3524018838304552,0.352887745060934,0.3533096484667165,0.3574108818011257,0.3524416135881104,0.3544303797468354,0.3620081411126187,0.3698526633925198,0.0,2.1221566949777766,55.77636438297747,177.95351197749838,262.6953591340826,fqhc5_100Compliance_baseline,29 -100000,95823,45451,430.62730242217424,5962,61.15442012877911,4681,48.41217661730482,1811,18.575916011813447,77.35864855579545,79.66242824157696,63.35358995694328,65.05372317391614,77.13404462750363,79.43796429362703,63.27001213244756,64.97213242263926,0.2246039282918275,224.4639479499284,0.0835778244957197,81.59075127687743,156.01586,109.76459303957016,162816.71415004748,114549.31805471562,392.82442,258.67314148435173,409513.6136418188,269514.5752943988,385.65938,187.6188556751169,399203.08276718535,193313.83941181155,3337.58611,1521.3336167754348,3454865.126326665,1559440.757203838,1104.53883,488.172870013326,1143348.9350156016,500115.097641825,1776.43796,747.0726478520367,1824848.2514636363,756379.4169267045,0.38252,100000,0,709163,7400.759734093068,0,0.0,0,0.0,33914,353.4641996180458,0,0.0,35148,363.7540047796458,1586697,0,57004,0,0,0,0,0,67,0.6783340116673451,0,0.0,1,0.0104359078718053,0,0.0,0.05962,0.1558611314441075,0.3037571284803757,0.01811,0.3248040940348632,0.6751959059651368,24.494254517280712,4.36536728586299,0.3170262764366588,0.2362743003631702,0.2294381542405469,0.217261268959624,11.323503276186168,5.743072082148104,19.32069262033634,12225.536850894405,53.225563604656514,13.26692703688982,16.800148847458786,11.993563536821483,11.164924183486423,0.5639820551164281,0.7884267631103075,0.6880053908355795,0.5847299813780261,0.1170108161258603,0.7369668246445498,0.9078014184397164,0.8540540540540541,0.7677165354330708,0.1735159817351598,0.4998535871156662,0.7144948755490483,0.6328545780969479,0.5280487804878049,0.1015037593984962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021861020585794,0.0045984462518611,0.0068939647393979,0.009264614853826,0.0113689472293906,0.0136513910787854,0.0158191745100435,0.0180551446961737,0.0201560999530065,0.0222795065365494,0.0245104064241232,0.0266580507518411,0.028725535521652,0.0308920835177048,0.0330140531400468,0.0349289956106377,0.0368346991143117,0.0390093713717034,0.0409447837467281,0.0428903069988236,0.0579717704497324,0.0718026993967653,0.0850443878460103,0.0976932373495875,0.1095982801500653,0.1254028806627849,0.1370700988083626,0.1494463178273958,0.1601985800459082,0.1701564225445734,0.1823065825455954,0.1948897687198459,0.2064439659859507,0.2170327266363318,0.2262389643556945,0.2360138310133877,0.2449134476947287,0.2539545035213644,0.262445390070922,0.2710536264592331,0.2784181654051802,0.2858865115408024,0.2923770957658426,0.2983200834562394,0.3037859261780868,0.3086976893294863,0.3133601921825734,0.3175794266527612,0.3217569212441405,0.3261761794787199,0.324685640431891,0.323897943745272,0.3229238498670082,0.3219270013999336,0.3216766609273882,0.3200159014112502,0.3178856130583323,0.3184944436237094,0.3185002905089032,0.3200407718030793,0.3213294320654212,0.3223037519036411,0.3226530697889126,0.3243665936815765,0.3256887350353382,0.3263100180151954,0.3266854974464321,0.3298355076574021,0.3337317630515029,0.3361468328223912,0.3388249214945615,0.3417061359161301,0.3439486437157782,0.3486932599724897,0.3510807523158978,0.356439127375088,0.3551970780703089,0.3631217145167812,0.3697222222222222,0.3736306729264476,0.0,1.7352375349504054,56.08277247397142,176.34580166307796,253.9101110047044,fqhc5_100Compliance_baseline,30 -100000,95865,44755,424.4614822928076,6010,61.57617482918688,4750,49.00641527147552,1864,19.07891305481667,77.41454581429173,79.70234276392078,63.37712166936033,65.06781358246026,77.18371470476083,79.47403528101175,63.29143867273072,64.98537509600123,0.2308311095308965,228.30748290903105,0.0856829966296075,82.43848645902574,154.44066,108.6361803132394,161102.0080321285,113321.83750605484,391.68858,257.1651951903561,408063.0678558389,267738.49228371785,378.07891,183.83733254353533,391189.4226255672,189241.08358866465,3403.87707,1551.1949877420896,3515161.497939812,1582885.4575840284,1116.38535,492.3147761272938,1151539.5608407657,500775.5108756476,1820.43174,761.5707409523995,1865368.716424138,766452.8509875711,0.37845,100000,0,702003,7322.818546914933,0,0.0,0,0.0,33792,351.9428362801857,0,0.0,34651,358.21206905544256,1599755,0,57498,0,0,0,0,0,72,0.7510561727429198,0,0.0,0,0.0,0,0.0,0.0601,0.1588056546439424,0.3101497504159733,0.01864,0.3274900398406374,0.6725099601593626,24.264011503498583,4.344081621657648,0.3208421052631579,0.2317894736842105,0.2288421052631579,0.2185263157894736,11.267015741234296,5.872896694368139,19.903179670712085,12076.6270054995,54.04717973577248,13.38495897207069,17.26761615244407,12.13131681658638,11.263287794671324,0.5696842105263158,0.7938237965485921,0.708005249343832,0.5850965961361545,0.1127167630057803,0.7486712224753227,0.9175946547884188,0.8961352657004831,0.6973180076628352,0.1088082901554404,0.5010195164579085,0.7085889570552147,0.6378378378378379,0.549636803874092,0.1136094674556213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020752138482563,0.0044273339749759,0.0065505947250474,0.0085781576756745,0.0106718162414879,0.0126680165650851,0.0147616136919315,0.0167185188963125,0.0188365085040094,0.0210807327625886,0.023426136480036,0.0253774823568028,0.0273216744415445,0.0295619235836627,0.0320126194673842,0.0340731866020801,0.0360660486674391,0.0378776102388724,0.0396657323782829,0.0416484636668122,0.0558672033032344,0.070049848989957,0.0835768984988005,0.0961120502294131,0.1082131199326102,0.123679874957756,0.135444030166935,0.1473982910343068,0.1582877318740866,0.1684958936085918,0.1812412606217059,0.1929126622920337,0.2043348362214134,0.2141741229938929,0.2238217162448764,0.2344909994136065,0.2432824172148511,0.2532954251744637,0.2613858017691086,0.2692021477555039,0.2756291635825315,0.281693928375171,0.2891104566582692,0.2941296298515332,0.3000291644388276,0.3048939842209073,0.310130702589013,0.3150365892459433,0.3180769131032336,0.3229521620836305,0.3219711253568927,0.3211617572197075,0.3199690184481059,0.318109599329809,0.3174433455107072,0.3164853325988156,0.3143471252015045,0.3152115123006572,0.3160031385392147,0.3167197707328361,0.317455278784031,0.3176398715093707,0.3184075449651546,0.319729404957942,0.3209956398830914,0.3220985444072546,0.3221837972674188,0.3262245502447541,0.3297508549096238,0.3343342552350849,0.3392647457320928,0.3426540284360189,0.3437694510145649,0.3463469464218808,0.3466963622865627,0.3491075622357914,0.3544861090025808,0.3578371810449575,0.3532623532623533,0.3576835730507191,0.0,2.1050562327367643,57.787938676566846,179.028747903792,252.4959913149337,fqhc5_100Compliance_baseline,31 -100000,95725,44983,426.9313136589188,6126,62.84669626534343,4803,49.76756333246279,1905,19.65003917471925,77.36002699221102,79.73504145495419,63.33690834044432,65.09016174386568,77.1260560082048,79.49773236560496,63.2504854570945,65.0040482348366,0.2339709840062198,237.30908934922468,0.0864228833498259,86.11350902907589,155.21616,109.11924171783797,162147.98641943064,113992.4175689088,392.70639,256.8932030913951,409852.8597545051,267974.3672931785,375.88961,182.14045410759016,390474.7035779577,188460.74625630263,3415.39693,1549.69063910024,3543593.627579002,1594566.4237140133,1116.82211,494.05628712247193,1158951.256202664,508373.2223791815,1865.81736,777.7810235972206,1926657.5711674064,794063.9061436724,0.38047,100000,0,705528,7370.36301906503,0,0.0,0,0.0,33934,354.0767824497258,0,0.0,34359,356.6988769913816,1596738,0,57337,0,0,0,0,0,64,0.6685818751632281,0,0.0,2,0.0208931835988508,0,0.0,0.06126,0.1610113806607616,0.3109696376101861,0.01905,0.3278637770897832,0.6721362229102167,24.761243393429936,4.371734153676798,0.3337497397459921,0.2263168852800333,0.2206953987091401,0.2192379762648345,11.079835035625388,5.696801924427155,20.192740600980898,12203.809635906637,54.24533157540934,13.041792577093888,18.078959904395788,11.595104441300046,11.529474652619625,0.5536123256298147,0.7709291628334867,0.6974422956955708,0.5490566037735849,0.1149097815764482,0.7468253968253968,0.9154228855721394,0.8982630272952854,0.7792207792207793,0.1383928571428571,0.4848998024273215,0.6861313868613139,0.63,0.4849215922798552,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024004618610162,0.0047136818416811,0.0069005408806307,0.0093459842743655,0.0117274909475568,0.0136654311433342,0.0158409785932721,0.0179428034864969,0.0201073345259391,0.0224001310428141,0.0245237753490947,0.026610816804238,0.0285364649747028,0.0308170853546745,0.032531313839995,0.0345112797502119,0.036652577490469,0.0386842979324088,0.0403461510458379,0.0421798478691257,0.05643451653665,0.0705404613388035,0.0830623334662106,0.0957835063473532,0.1085070268104711,0.1245612922322297,0.1365531287458497,0.1479561973884448,0.1583826387850567,0.1685563195211687,0.1811003264136512,0.1927975501282287,0.204504200949969,0.2156826306066005,0.2253906808459161,0.2368316129889691,0.2467228203268812,0.2564944558152088,0.2650967142112066,0.2724785346307956,0.2790264770493699,0.2858411629972421,0.2924386639077742,0.298382752552761,0.3030910062160062,0.3092118226600985,0.3139214852253109,0.317581565602003,0.3221323672122663,0.3261979187274957,0.3249639871296059,0.3243775205428544,0.3230964467005076,0.3220858895705521,0.3204539032406788,0.3179659251087822,0.317114465647647,0.3178518166472738,0.318833407283525,0.3198082611639759,0.3204840459357349,0.320868587657535,0.3221923181239698,0.3228809407153356,0.3227970955450646,0.3247590095356873,0.324511979966991,0.3279410839050796,0.3320561043343762,0.3367241104196585,0.3397271561984984,0.3417937506665244,0.3476864966949953,0.3503005402115194,0.3558988764044943,0.3533861245715636,0.3562290587876942,0.3528937285743093,0.3569069895432031,0.3662947287418238,0.0,1.6054998674308067,55.77231748609528,180.16061479555745,265.12182531793826,fqhc5_100Compliance_baseline,32 -100000,95755,45219,427.4345987154718,5970,61.1143021252154,4623,47.73641063129863,1800,18.44290115398674,77.33346816806463,79.69747204679295,63.32120940122799,65.07101280212025,77.10315245894128,79.468189739276,63.23530090107718,64.98781528493653,0.2303157091233458,229.2823075169537,0.0859085001508077,83.19751718372004,156.2748,109.94768317928778,163202.7570361861,114821.87162998044,392.64913,257.8377368675837,409506.2189963971,268718.5611587761,377.7667,183.4132271268596,391291.5043600856,188924.56074371908,3281.08012,1490.1426369099738,3391736.327084748,1521425.551984459,1119.52897,490.54624118289865,1155298.7729100308,498462.0239638008,1762.18994,742.9322302852853,1807668.4872852592,748365.8066033327,0.38211,100000,0,710340,7418.307138008459,0,0.0,0,0.0,33860,353.0363949663203,0,0.0,34449,356.61845334447287,1589030,0,57006,0,0,0,0,0,75,0.7728055976189233,0,0.0,0,0.0,0,0.0,0.0597,0.1562377325900918,0.3015075376884422,0.018,0.3269815852682146,0.6730184147317855,24.89252023781297,4.409125564884995,0.3220852260436945,0.2383733506381137,0.2206359506813757,0.2189054726368159,11.115581452956864,5.704217780507242,19.129127269308636,12250.604290398109,52.2541022897446,13.260342218141698,16.734544327779787,11.255719152993349,11.003496590829773,0.5602422669262384,0.7813067150635209,0.6957689724647415,0.5637254901960784,0.116600790513834,0.7218700475435816,0.8946078431372549,0.8560606060606061,0.7543103448275862,0.1415929203539823,0.4995537042546861,0.7146974063400576,0.6376944190301921,0.5076142131979695,0.1094147582697201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002441866355945,0.0046748874376343,0.0069626291537259,0.0093275620313357,0.0116860926344053,0.0140109358612754,0.0162602454838315,0.018166602028944,0.0204713625771636,0.0225299922204479,0.0246457936068565,0.0267032154736971,0.0289895312724954,0.0311122554067971,0.0334378804448754,0.0354939069137665,0.0374838208646129,0.0396795749802847,0.0418555329147087,0.0439324660715959,0.0579356131780032,0.0713672709004898,0.0843703439447673,0.0974296411593959,0.1096874209060997,0.1261261261261261,0.1385284600286457,0.1497009174702514,0.1604503118858412,0.1696625839250091,0.1822618701315491,0.1945851188157382,0.205962973437466,0.2159282354228202,0.2265350804810157,0.2376237623762376,0.2467483169400127,0.2562714534916437,0.2647516144775221,0.2722921366327336,0.2786168613391928,0.2858713064627401,0.2918618405488526,0.2973095996741812,0.3024203821656051,0.308643646476828,0.3135561443855614,0.3185844081580786,0.3233079788885439,0.3278623637754967,0.3266125230649049,0.3257940327237729,0.3246203003814591,0.3228337354968284,0.3215527230590961,0.3199393131350282,0.3174929929850675,0.3174227870548249,0.3187517081169718,0.3185794886444794,0.3191094967046135,0.3206783542604438,0.3217264081931236,0.322760652664003,0.3247493327562576,0.3283644432841666,0.3285409859355022,0.3304443397707646,0.3337781836060968,0.3386924325822674,0.3422117176491978,0.3452836201402167,0.3489501229585724,0.349308262630895,0.3511904761904761,0.3506898620275945,0.3526145303100416,0.353678586107686,0.3547572270558518,0.3462582396277627,0.0,2.0206812158534917,55.48643540739019,167.43925407166432,253.8688825021312,fqhc5_100Compliance_baseline,33 -100000,95805,45294,429.1216533583842,6037,61.81305777360262,4697,48.51521319346589,1887,19.351808360732736,77.34149214859087,79.679775300543,63.33904717832892,65.07216707037873,77.0973346639729,79.43766798911666,63.24791851961125,64.98411068172099,0.2441574846179719,242.1073114263379,0.0911286587176647,88.05638865773346,155.9921,109.73425812357412,162822.50404467407,114539.1765811535,394.00853,258.6326778484405,410778.91550545377,269475.3800411675,372.91834,181.4738740206648,386657.1577683837,187331.2433887063,3370.79692,1544.2602433300308,3483454.391733208,1576939.4116486928,1102.96315,486.7488356740208,1137596.5346276292,494400.1311768913,1842.76612,784.2400130149995,1891588.3095871825,790382.7217364927,0.38409,100000,0,709055,7401.0229111215485,0,0.0,0,0.0,34070,355.10672720630447,0,0.0,34128,353.5514847868065,1592408,0,57109,0,0,0,0,0,62,0.6471478524085381,0,0.0,0,0.0,0,0.0,0.06037,0.1571767033768127,0.3125724697697531,0.01887,0.3404592240696754,0.6595407759303247,24.36762316101061,4.34688581006546,0.323397913561848,0.2314243133915265,0.2241856504151586,0.2209921226314669,11.207132550817652,5.917556843174255,20.36651529122062,12248.838491015164,53.48584760955668,13.09121217935662,17.28950650024357,11.626552937911931,11.47857599204456,0.5692995529061102,0.7930082796688133,0.7057274522712311,0.584045584045584,0.1204238921001926,0.7340507302075326,0.913953488372093,0.8567901234567902,0.714859437751004,0.1705069124423963,0.5061837455830389,0.7138508371385084,0.6508078994614004,0.5435323383084577,0.1071863580998782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0046227304522368,0.006798924349282,0.009063935292444,0.0113445591901103,0.013578347984639,0.0156351990861618,0.0179313584331505,0.0201445911261542,0.0222713728381408,0.0242799577561545,0.0267195169538518,0.0289234946822735,0.0311930196862155,0.0331317842255148,0.0348534336627113,0.0367589955992751,0.0389211618257261,0.0408877897733767,0.0428278453866894,0.0576347227294068,0.0712657619037661,0.0848606788435138,0.0976755427586641,0.109620511955823,0.1253184225268743,0.1372763124416928,0.1492470648289943,0.1606130791644875,0.1701249705258193,0.1836998288611191,0.1958159900535164,0.2072251195132551,0.2173708714944588,0.2273117097306212,0.2378748796067708,0.2473719999554104,0.2559124087591241,0.2637254346718015,0.2716221625021442,0.2794068393638768,0.2858277279521674,0.2923291525303512,0.2982319635140473,0.3044264324022617,0.309617302034737,0.3139882254415459,0.3185103329141739,0.3222996290503949,0.3267939433838051,0.3262934165568081,0.3251715083107634,0.3239589347829148,0.3232009477440513,0.3225787275780588,0.3197065310623698,0.3175219499825668,0.3178029493481513,0.3181561424830113,0.3187568215570148,0.3198512145178561,0.3217436121077566,0.3225670876499884,0.3232332294166461,0.3249233443588691,0.3254433226970759,0.3271902629463773,0.3305092812946216,0.3357158021371453,0.3401550883363978,0.3434776594273067,0.3452310665020665,0.3486904989485758,0.3496984691510746,0.3502954068991805,0.349526208468274,0.3481446835048332,0.3468756444627758,0.3506020722486698,0.3536632144227081,0.0,2.033931381374078,57.13353836174242,174.68460095140583,253.85414622847756,fqhc5_100Compliance_baseline,34 -100000,95708,45189,428.4072386843315,6060,62.074225770050575,4721,48.79424917457266,1872,19.193797801646674,77.3419109081298,79.70989449492447,63.33255108723839,65.08072040260548,77.11537155715912,79.48286701367877,63.24935571323293,64.99905218608694,0.2265393509706825,227.0274812456989,0.0831953740054558,81.66821651853695,155.21704,109.2383681806806,162177.70719271115,114137.1339707032,392.21018,257.92846496114066,409254.7331466544,268953.3021671054,385.56946,187.2635604217935,398932.7537927864,192777.38211497935,3367.73759,1536.3301843709326,3483828.217076943,1570555.5888274591,1131.51666,502.3036175044788,1170189.3572115183,512910.0953310109,1838.55588,761.9350398242744,1887088.665524303,770437.6078141866,0.38072,100000,0,705532,7371.713963305053,0,0.0,0,0.0,33814,352.7186860032599,0,0.0,35207,363.92987002131485,1593859,0,57164,0,0,0,0,0,70,0.7313913152505538,0,0.0,1,0.0104484473607221,0,0.0,0.0606,0.1591720949779365,0.3089108910891089,0.01872,0.3336987159411212,0.6663012840588788,24.53859051296466,4.326648713948402,0.3304384664266045,0.235543317093836,0.2092776954035162,0.2247405210760432,11.30953956227757,5.859330294525244,19.73046715684756,12221.236314022712,53.810731473349925,13.603895750391182,17.78797847729773,10.97374825853185,11.445108987129151,0.5659817835204406,0.8057553956834532,0.6897435897435897,0.5748987854251012,0.1244109330819981,0.7580893682588598,0.9466357308584686,0.8594847775175644,0.7807017543859649,0.1462264150943396,0.4931346771837569,0.7165932452276065,0.6257722859664607,0.5131578947368421,0.1189634864546525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0048140265531569,0.0068269425847027,0.0090598846185097,0.0113779639646967,0.0137350329885151,0.0160147608999255,0.0183616395852045,0.0204210956663941,0.0227209923546931,0.0246847770374167,0.0267586688435038,0.0288758175311587,0.0308562480038737,0.0328252860990434,0.0348983853294465,0.0367539689936931,0.0389991801662498,0.0409778110508037,0.0429454246084265,0.0583277633887542,0.0716483838553006,0.0845119187510491,0.0979226926110965,0.1109270999251062,0.1268581706607416,0.1393880885192336,0.1500963452673714,0.1607306911654737,0.1706464139366244,0.1829597958018761,0.1951779066747467,0.2069066782684359,0.2165569575961685,0.2267068449762449,0.2370457287711569,0.2471955217556145,0.2563027571401274,0.2648990099459042,0.2729675610732879,0.280023595544606,0.2867405318763089,0.2934145908526123,0.298797143815594,0.3039924208378375,0.3085760777110736,0.313080718274938,0.3178239356898459,0.3215635516438002,0.3247352057754123,0.3243152343539794,0.3234954816381465,0.3220829586330935,0.3216838646451836,0.320367625259413,0.318791638652894,0.3158542939699683,0.3160085203998033,0.3165682493088029,0.3171497929458803,0.3187173387776508,0.3187173809900364,0.3185978169605373,0.3192533500649845,0.3200404809522662,0.3208684533284622,0.3218689348099098,0.3249141813371964,0.3272394237204551,0.3284808359589997,0.3300447611217685,0.3330667519727021,0.3362820674838873,0.3401162790697674,0.3393532526475037,0.3406789755807028,0.3391077724973171,0.3361396303901437,0.3423700391280044,0.3505194305502116,0.0,1.9844943190709008,57.24680525634029,178.05193860029985,253.4841891366804,fqhc5_100Compliance_baseline,35 -100000,95708,44838,425.8369206335939,5861,59.994984745266855,4590,47.37326033351444,1783,18.33702511806745,77.33810060160408,79.72274575831302,63.31256206328344,65.07597972076321,77.11625152955604,79.49923022081124,63.23035678942073,64.99474150385825,0.2218490720480446,223.51553750178252,0.082205273862705,81.23821690496413,155.6489,109.49343973252384,162628.9338404313,114403.64413896836,391.83944,257.5905037849595,408818.00894387095,268548.7146162907,371.41708,180.80787306163333,383842.34337777406,185615.74799633972,3252.09056,1479.194675638569,3362306.2335436954,1509905.3011645505,1079.23988,480.4171830866218,1111808.918794667,486152.2508655677,1747.68752,733.9931923912218,1799074.4556358925,745116.4638158323,0.37852,100000,0,707495,7392.22426547415,0,0.0,0,0.0,33840,352.95900029255654,0,0.0,33892,349.90805366322564,1591856,0,57105,0,0,0,0,0,78,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05861,0.1548399027792454,0.304214297901382,0.01783,0.3375,0.6625,24.501920370131653,4.379478986620157,0.3156862745098039,0.2396514161220043,0.229193899782135,0.2154684095860566,11.228942778390955,5.820280782363662,18.84861828876862,12073.078271991317,51.805139843101394,13.120279348602027,16.278104656013152,11.58552151189558,10.821234326590629,0.5610021786492375,0.7709090909090909,0.6894409937888198,0.5750950570342205,0.1243680485338726,0.7242524916943521,0.9172932330827068,0.834733893557423,0.7359307359307359,0.1751152073732718,0.5029533372711164,0.6875891583452212,0.641941391941392,0.5298416565164433,0.1101036269430051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024426830998763,0.0044430919050517,0.0066806099863951,0.0090655934304937,0.0113144961894974,0.0136485399117937,0.0159006996715827,0.0184154350557161,0.0204632612363859,0.0223928735985255,0.0242209210512823,0.0262149978949962,0.0279874149170248,0.0298536665739854,0.031968887330046,0.034112164019469,0.0361443288295283,0.0380956333191546,0.0398478028089946,0.0416979166666666,0.0563805346700083,0.0703339265152308,0.0838868078944883,0.0961360481258676,0.1083669035918419,0.1235905138674395,0.1355842281736768,0.1471026683987477,0.1584166880396683,0.1688409217697292,0.1811345148952216,0.1933332611590468,0.2046718697275468,0.2153972422849638,0.2248893878359638,0.2349348850096979,0.2443037126390564,0.2526229286743516,0.2607787015583117,0.2679560227911082,0.274751873255585,0.2815192956163357,0.2884588051357369,0.2946958345819598,0.2997180839429363,0.3049046825837497,0.3100786849095374,0.3148473729806859,0.3186034460422334,0.3226500237504618,0.3215540095006123,0.3193953481974609,0.318562520234794,0.3168302540415704,0.3167465819515164,0.3144068704744118,0.3130444405798934,0.3144051130776794,0.3139971336927591,0.3146982797040734,0.3156072825253073,0.3168379321906865,0.3175111445972248,0.316955899454334,0.318634628771694,0.3207420073578942,0.3211219719507012,0.3241340467473951,0.3277967757694187,0.3298530396753477,0.3313681368136814,0.3322487536079769,0.3349493442724843,0.3371595768624803,0.3400982300064868,0.3460321181573086,0.3477020126164013,0.3510025809013301,0.3474165769644779,0.3567383918459796,0.0,2.284482261025833,52.52990842894704,169.95583739395343,255.8341519725281,fqhc5_100Compliance_baseline,36 -100000,95659,45283,429.2643661338713,6137,63.09913338002697,4814,49.8332618990372,1880,19.33952895179753,77.27782633283482,79.68793069520454,63.2892740309558,65.07183547955503,77.04605311584834,79.45541921095727,63.20366640669777,64.98814844400312,0.2317732169864825,232.51148424726864,0.0856076242580243,83.68703555191814,155.08614,109.1284027209984,162123.94024608243,114080.64345330645,391.87054,256.4258413923138,409150.074744666,267558.9033884045,378.27575,183.19491799808472,391788.2164772787,188729.7834629196,3463.58095,1555.3665646484392,3587913.5575324856,1593104.5114923194,1162.35692,504.6444155919307,1202756.4473808007,515200.7339756577,1857.81248,772.7114230403711,1912927.6910693191,783648.4736102486,0.38147,100000,0,704937,7369.270011185565,0,0.0,0,0.0,33763,352.4393940977848,0,0.0,34442,356.5372834756792,1595211,0,57256,0,0,0,0,0,74,0.7631273586384971,0,0.0,0,0.0,0,0.0,0.06137,0.1608776574828951,0.3063386019227636,0.0188,0.3278561463339017,0.6721438536660983,24.51781126491752,4.420371839777234,0.3194848358953053,0.2299542999584545,0.214374740340673,0.236186123805567,10.929478577703676,5.458258340034857,19.96750311553325,12269.037650599588,54.3651319200417,13.146846618960067,17.536288480122675,11.248697081402383,12.433299739556572,0.5481927710843374,0.7750677506775068,0.6996098829648895,0.5532945736434108,0.1178540017590149,0.7133388566694283,0.897172236503856,0.875968992248062,0.6666666666666666,0.1348837209302325,0.4929304130856667,0.7089136490250696,0.6403127715030409,0.5232843137254902,0.113882863340564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090266096508,0.0045635242576667,0.006517369500335,0.0086486376617173,0.010763517981586,0.012897179124092,0.0153799082100968,0.0178128223722512,0.0201714367545672,0.0223005295991641,0.0244820512820512,0.0265317651892558,0.0287287132787981,0.0306515779275658,0.0327173239727441,0.03511403009774,0.0373045397552407,0.0393022169150096,0.0413024475524475,0.0431677180543245,0.0576008694470859,0.0719597000544593,0.0860159751451093,0.0991371145953909,0.1114100900102356,0.1267121112687088,0.1390691204111756,0.1507713287309298,0.1616291257567007,0.1718951301211028,0.1852566243898233,0.1974729867261427,0.2091441382612859,0.2192191534993653,0.228744716449454,0.2392412356512875,0.2482723202822342,0.2569673376163098,0.2655235804094231,0.2726939761242546,0.2793238602860413,0.2859280037400654,0.2918322452455293,0.2976380217383489,0.302768901794501,0.3074703074703074,0.3130102679689456,0.3176963324125113,0.3223192989733485,0.3264586661737327,0.3254173746527496,0.324739281575898,0.3250338944752005,0.3229735405291894,0.3222202359671076,0.3197561949212393,0.3175605961999397,0.317833797111949,0.318926234282386,0.3191531247762904,0.3204909264923902,0.3207954522946501,0.321122860020141,0.3228684510632589,0.3244101306010534,0.3271164365720239,0.3277958554547011,0.3300590632007833,0.3343245539507222,0.335349489284999,0.3359662013225569,0.3402188417400587,0.3420337483410225,0.3483499616270146,0.3515942851736209,0.3537594435783667,0.3552631578947368,0.3580983741510599,0.3572228443449048,0.362095531587057,0.0,1.911573922327746,53.12852172154399,183.435689627886,272.5529791908869,fqhc5_100Compliance_baseline,37 -100000,95824,45155,427.8573217565537,5955,61.18508933043914,4673,48.2446986141259,1863,19.07664050759726,77.39792083527668,79.7032425600403,63.37134666233783,65.07212024056115,77.16418764778598,79.46990366481324,63.28603079291216,64.98923069759238,0.2337331874906993,233.33889522704965,0.0853158694256706,82.88954296877193,156.28646,109.88234878626795,163097.40774753716,114671.01017100931,392.89503,258.7963570325132,409505.17615628656,269562.49690319045,380.62339,185.10346998697537,394184.244030723,190688.69931004167,3328.63549,1518.9780813094003,3437878.182918684,1549356.0916987397,1130.05269,499.1413770412567,1162660.9721990314,504254.6095354576,1827.10438,760.1873193328181,1873019.7445316412,764436.1941339064,0.38167,100000,0,710393,7413.518533978961,0,0.0,0,0.0,33883,353.0743863750209,0,0.0,34752,359.62806812489566,1590515,0,57005,0,0,0,0,0,76,0.7931207213224245,0,0.0,1,0.0104357989647687,0,0.0,0.05955,0.1560248382110199,0.3128463476070529,0.01863,0.3341338456612231,0.6658661543387768,24.56876428458025,4.367177661737552,0.3158570511448748,0.2392467365717954,0.2221271132035095,0.2227690990798202,11.015444240840887,5.648141810836661,19.83613605151249,12154.857678405226,53.26621975383287,13.550854738364755,16.694338046017798,11.605143821484567,11.415883147965769,0.5673015193665739,0.7969588550983899,0.698509485094851,0.5915221579961464,0.1104707012487992,0.7503912363067292,0.9331797235023042,0.8708860759493671,0.7429718875502008,0.125,0.498379970544919,0.7105263157894737,0.635522664199815,0.5437262357414449,0.1070154577883472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791204341135,0.0045496458571877,0.0067853339418834,0.0089863225125148,0.0108978529603122,0.0129144531965561,0.0150190540237614,0.0175057383320581,0.0195659725769867,0.0216590616111804,0.0238919738540663,0.0260169274172864,0.0280269173473056,0.0301717484589974,0.0324874770670569,0.0346703835630581,0.0363324126087541,0.0386385307408482,0.0405802519132321,0.042576441937431,0.0574963230308656,0.0714330537369004,0.0844360098139954,0.0971078941558646,0.1089316581643408,0.1245639258303909,0.1362768800101794,0.1480693090382732,0.1588027303900099,0.168259382004998,0.1812660190829007,0.1932574061455595,0.2052873588207798,0.2150501196969862,0.2249343052852634,0.2355578185360238,0.2457024369579273,0.2547549460431654,0.2633547553470026,0.2706465043923865,0.2776095249104149,0.2838584562903772,0.2903626281376734,0.2967843080936823,0.3024462385143162,0.3082854718303796,0.3124328913526606,0.3175199624236731,0.3215777022222796,0.3251112222602469,0.3241262683201804,0.3231066736154922,0.3219867717066184,0.3201105815611006,0.3194857896061966,0.3175828198401562,0.3149161685146922,0.3161717791411043,0.3166504779919227,0.3169209925841414,0.3176048307191864,0.3185638192937463,0.3191320178283705,0.3201558022922636,0.3209507509100113,0.3225831722985324,0.322745109271618,0.3263530825926043,0.330961606199366,0.3331211204838453,0.3369515434643217,0.3376157593276591,0.3407792867115116,0.3443063228974831,0.3482879635777293,0.3489812939354224,0.3499691928527418,0.3568682986040866,0.3621207980322492,0.3617994662600076,0.0,2.0584293263424343,56.26703983649049,174.63126584749264,254.5388346523951,fqhc5_100Compliance_baseline,38 -100000,95543,45225,428.8330908596129,6015,61.61623562165726,4731,48.836649466732254,1865,19.05948107135007,77.19945181010942,79.67207449364156,63.224607941291474,65.05444502573664,76.9609262075069,79.43655998437836,63.13408628090404,64.96812169964863,0.2385256026025217,235.5145092631972,0.0905216603874308,86.32332608800652,154.03784,108.4289562045054,161223.34446270266,113486.8649890054,390.80541,257.0844180095445,408365.57361606817,268407.4442207011,380.86308,185.250737722179,394755.9423505647,190886.28185911095,3394.71583,1565.8158290407823,3508775.493756738,1594662.9526891685,1127.08431,506.9152203381343,1164326.669667061,515314.6967289506,1823.74898,783.2820313852541,1866348.4713689124,782792.4122021344,0.38137,100000,0,700172,7328.333839213757,0,0.0,0,0.0,33696,351.9671770825701,0,0.0,34874,361.12535716902335,1591213,0,57122,0,0,0,0,0,63,0.6593889662246318,0,0.0,2,0.0209329830547502,0,0.0,0.06015,0.1577208485198101,0.3100581878636742,0.01865,0.3481363996827914,0.6518636003172086,24.365693977944638,4.3646330132200575,0.3250898330162756,0.2318748678926231,0.2223631367575565,0.2206721623335447,10.91180875728302,5.584979053592833,20.21815925030544,12214.630484045672,54.11342514914514,13.168649892527943,17.63269827624824,11.750181554855544,11.561895425513402,0.5649968294229549,0.7821330902461258,0.6963589076723017,0.594106463878327,0.1139846743295019,0.7279752704791345,0.9090909090909092,0.8687350835322196,0.7519685039370079,0.12,0.5036368926389293,0.7104136947218259,0.6318141197497766,0.543859649122807,0.1123321123321123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024936391927096,0.0046062376980986,0.0067328783816719,0.0091609728322759,0.0114020442236429,0.0136190340271972,0.0157881308363525,0.0177498467198038,0.0199447400736799,0.0221359103905553,0.0243899935329562,0.0267652411750794,0.0290622232291816,0.0310598089579336,0.0331628171342944,0.0353708400186325,0.0375117969778994,0.0395044534749576,0.0414895833333333,0.0434001858367351,0.058361403435362,0.0728817114093959,0.0865666621114486,0.0999178064869649,0.1112285560265096,0.1262391196022095,0.1386122813736754,0.1495762983201349,0.1603364225638827,0.1699793495095508,0.1831948930102939,0.1950067842605156,0.2062742102678815,0.2162912410440965,0.2263594815975978,0.2368359648440538,0.2466559957017652,0.2555561826288165,0.2641079924423501,0.2720234334616047,0.2789273452723392,0.2856120845354538,0.2918139755605647,0.2976791120080727,0.3029184632999586,0.3072682323856613,0.310910963722239,0.3141343883606662,0.3190298022708966,0.3233620119126406,0.3228260282116413,0.3217450109028679,0.3212913795051406,0.3202822738404022,0.3201539172843741,0.3187828654017651,0.3168634680482494,0.3176063303659743,0.3177026098901099,0.3178743788011984,0.3179532571234863,0.3195966333174527,0.320582532456584,0.3221226213744917,0.3233580700524547,0.3249043551176563,0.3266387806555123,0.3299180327868852,0.3326877706961513,0.3363712010143836,0.3399683329563447,0.3429249011857707,0.3431305109123882,0.3468892261001517,0.3472545912184208,0.3504313910885238,0.3492424242424242,0.3569292123629112,0.3591415376256452,0.3626331811263318,0.0,2.6477708469351,56.23168399374025,184.62435571559897,249.9031704296684,fqhc5_100Compliance_baseline,39 -100000,95682,44989,425.55548588031183,6144,62.81223218578207,4854,50.14527288309191,1938,19.826090591751843,77.33990302576841,79.72987924290035,63.32261558699434,65.08868495023658,77.09316434869646,79.48616867222132,63.22966835332942,65.00004200002384,0.2467386770719457,243.71057067902768,0.0929472336649155,88.64295021274415,155.25576,109.21435356465116,162262.24368219727,114143.05048457511,393.79874,258.35818750167266,411011.465061349,269458.6625506079,381.60947,185.81261525274695,395659.47618151794,191793.7082160772,3449.77542,1580.9907322217507,3564215.505528731,1611095.077675793,1167.11081,522.1594333049537,1204379.9356200749,530322.77053673,1888.60418,801.2416481743561,1933398.9674128883,801448.1291097889,0.38016,100000,0,705708,7375.556531008967,0,0.0,0,0.0,33862,353.3057419368324,0,0.0,34956,362.1684329340942,1593988,0,57199,0,0,0,0,0,85,0.8883593570368512,0,0.0,0,0.0,0,0.0,0.06144,0.1616161616161616,0.3154296875,0.01938,0.3307525549705791,0.6692474450294209,24.216227897457305,4.361987192083175,0.3271528636176349,0.2348578491965389,0.2204367531932426,0.2175525339925834,11.376649884032672,5.978414049116687,20.736556338958582,12176.146506772584,55.11857362172902,13.603997330698627,18.16833427454,11.700641670395024,11.645600346095351,0.5700453234445818,0.7921052631578948,0.7065491183879093,0.569158878504673,0.1259469696969697,0.7303543913713405,0.9039408866995072,0.863013698630137,0.721030042918455,0.1583710407239819,0.5115298087739033,0.7302452316076294,0.6469565217391304,0.5268817204301075,0.1173652694610778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0045208048248948,0.0067782163549837,0.0090500954779994,0.0111650041182392,0.0134367556342759,0.0158193011782933,0.0180758553115048,0.0203119888779849,0.0224671948248684,0.024686042339433,0.0267712332423166,0.0289160591072218,0.0311692057311784,0.03334675047218,0.0354329080419363,0.0376486676888649,0.0396097155906165,0.041933671770972,0.0438354165146413,0.0574255150223559,0.0715399997906044,0.0846378210508645,0.0976687426359198,0.1093703844368485,0.1250343849848706,0.1371579539305457,0.1482206917107546,0.1585985900448622,0.1688845044446112,0.1816899132963541,0.1936866254720962,0.2052035067110444,0.2151050266256984,0.2249790850248778,0.2357476790818248,0.2460439683071086,0.2554407759998199,0.2637174366887537,0.2713141888409067,0.2786454717941598,0.2849140451409191,0.2915088981446422,0.2973487798157443,0.3025000910669402,0.3068905616676317,0.3107546792112902,0.3156401841817395,0.3199896359632077,0.3236703496891212,0.3222282096187525,0.3217338637521164,0.3208938389961934,0.3205295138888889,0.3201124715473764,0.3186357092535302,0.3168859128397524,0.31606175069798,0.317543470470795,0.317776509612298,0.3185759499597355,0.31947107307335,0.3205963024224786,0.319926546334035,0.3205483412436457,0.3213884901474618,0.3221350078492935,0.3255234611503532,0.3286191732629727,0.331615460852329,0.3351506065149243,0.3375748899846243,0.3396392432908051,0.3420712711800015,0.3454630495790458,0.3501536279839281,0.3533466074437126,0.3553921568627451,0.3605688789737869,0.3717156105100463,0.0,2.314899348194704,56.63298844954031,186.6880819534991,261.16995986110965,fqhc5_100Compliance_baseline,40 -100000,95789,45334,430.9471860025681,5874,60.059088204282325,4571,47.187046529350965,1750,17.903934689786926,77.331780499572,79.6740903683221,63.32970022966426,65.06343051869432,77.11555060437477,79.45914666491008,63.24983891254495,64.98639407426568,0.2162298951972303,214.9437034120183,0.0798613171193096,77.03644442864288,155.56662,109.47457617300545,162405.51629101465,114287.21061187134,390.3279,257.0966225694741,406937.5919990813,267849.5232015837,378.53268,183.9154040208267,392194.2081032269,189656.3110774728,3235.18856,1464.9738090399317,3339258.547432377,1491359.4028585502,1076.7872,474.2795652764258,1111096.3471797388,482158.6132835292,1704.55136,710.9868214855328,1744589.7754439446,712473.8418847005,0.38083,100000,0,707121,7382.0689223188465,0,0.0,0,0.0,33731,351.5643758677928,0,0.0,34553,357.69242814937,1592180,0,57129,0,0,0,0,0,73,0.7620916806731461,0,0.0,0,0.0,0,0.0,0.05874,0.1542420502586456,0.2979230507320395,0.0175,0.3233863120337333,0.6766136879662666,24.37657306539043,4.442699703470138,0.3307810107197549,0.2386786261211988,0.2192080507547582,0.2113323124042879,11.505834169612683,6.022080734400939,18.527030372834616,12110.57642353649,51.66847059253528,13.018538274486003,17.15957735850252,11.04994383541086,10.440411124135904,0.5690220958214832,0.7919340054995417,0.7017195767195767,0.5658682634730539,0.1128364389233954,0.7363945578231292,0.91644908616188,0.8367346938775511,0.730593607305936,0.1483516483516483,0.5110456553755522,0.7245762711864406,0.6544642857142857,0.5197956577266922,0.1045918367346938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021878956697898,0.0044402092372572,0.0068089338082336,0.0091328375797472,0.011207729468599,0.0133402580474342,0.0154972370057706,0.017803911960472,0.0197399358017623,0.0216409888928699,0.0237934145241317,0.0258434811179333,0.0279063071955909,0.0296353522867737,0.0316118645117344,0.0337120468102263,0.0356887641496732,0.0378472006140187,0.0397069520939416,0.041493559907954,0.055911509965564,0.0698722843425415,0.0833176090739459,0.0958565829156289,0.1080927291886196,0.1238719222233963,0.1357917386557561,0.1468630370055295,0.1576627534685165,0.1680220286501023,0.1815549239977608,0.193448936101165,0.2047350276771829,0.2148130324937386,0.2235819778575044,0.2337340054284606,0.2432981180066712,0.2521449695824759,0.2604476088977574,0.2685123721015405,0.2761506276150627,0.2829381726398448,0.2900833776831648,0.2964054283900487,0.3014325603982032,0.3062466881092338,0.3114760253826802,0.3169396123576904,0.3207104731305384,0.3241730682928117,0.3237019890722148,0.3228310753249608,0.3216375914462577,0.32037502528098,0.3201877515856394,0.3185042204758184,0.315770291255982,0.3158655583664618,0.316309776287884,0.3177480064933906,0.3182780390026414,0.3193660442900564,0.3206724521024609,0.3198452974447251,0.3191187093667229,0.3199332168105809,0.3225135366201196,0.3269049563414787,0.3300311548289985,0.3345631992382766,0.3371928704927747,0.3385361176219902,0.3438491811603402,0.3500879810267003,0.3543396226415094,0.3549000951474786,0.3553706272152874,0.3557439935392691,0.3551867219917012,0.3583792289535799,0.0,2.0219802829319664,51.44160173786522,175.57842899782344,252.0677532988734,fqhc5_100Compliance_baseline,41 -100000,95689,44863,424.4479511751612,6082,62.38961636133725,4750,49.07565132878388,1898,19.448421448651363,77.34192318165195,79.71752820020996,63.32298576779221,65.07516331056554,77.1066005334532,79.48344547881476,63.236348018735015,64.99117522018192,0.2353226481987462,234.0827213951968,0.0866377490571892,83.98809038362742,154.49588,108.71588314328592,161456.02942866995,113613.55656897448,390.95319,256.7350654889958,408026.7115342412,267762.3284609472,377.27073,183.43167740414083,390921.2030640931,189048.8604084389,3418.88587,1545.568433887174,3537841.38197703,1580197.214189902,1107.03305,484.2561027686472,1144970.2055617678,494252.9309934204,1863.60018,777.642004890436,1913075.776735048,784298.2866276453,0.37857,100000,0,702254,7338.910428575908,0,0.0,0,0.0,33705,351.66006542026776,0,0.0,34414,356.2478445798368,1596165,0,57253,0,0,0,0,0,81,0.8464922822895005,0,0.0,0,0.0,0,0.0,0.06082,0.1606572100272076,0.3120683985531075,0.01898,0.3427810836204196,0.6572189163795803,24.542827152398303,4.441918144008943,0.3265263157894736,0.2229473684210526,0.2273684210526315,0.2231578947368421,11.423410885130572,5.866662143022294,20.225832563166747,12122.813620949284,53.652142782999285,12.5939145820767,17.63857053991588,11.93405082290232,11.48560683810438,0.5635789473684211,0.7884796978281398,0.7034171502256609,0.5861111111111111,0.1113207547169811,0.7419354838709677,0.9247311827956988,0.8947368421052632,0.7379912663755459,0.1291866028708134,0.5026828579497317,0.7147016011644832,0.6371527777777778,0.54524089306698,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781811002095,0.0048144656956649,0.0069083051827505,0.0094257216568143,0.0116847853721538,0.0138054610983282,0.0160675325734559,0.0184513902361818,0.020706368358624,0.0227719528178243,0.0250697235665654,0.0271408180240498,0.0291488814605297,0.0313436988037464,0.0334547931913663,0.0353342639987591,0.0374559767971825,0.0396504120736542,0.0415973377703826,0.0434420165265143,0.0584733015793432,0.0715669336683943,0.0849199185541258,0.0977313860010943,0.1096455592018487,0.1248650707981459,0.1368660218501491,0.1476822461761322,0.158017935206661,0.1689761396202518,0.1818613075728825,0.1932748538011696,0.2054421768707483,0.2151361288628206,0.2246230049532196,0.2342259497667822,0.2441725462177369,0.2529354152360152,0.2614703880190606,0.268933840373866,0.2761589557247668,0.2824179167349231,0.2895023438609783,0.2947784904981715,0.299052247873633,0.3038172831593349,0.30960341610629,0.3134529718722159,0.3185771878200225,0.3223910171730515,0.321522504417259,0.3197192614756698,0.3197115723820678,0.3181975886893919,0.3171282203578588,0.3155551475650617,0.3138619184667446,0.3152682662462432,0.3159901514892453,0.3169090746854644,0.3174255199550309,0.3184084523762415,0.3195355563473267,0.3196372592924317,0.3205710577547047,0.3218689838180967,0.321657046998948,0.3253983189060344,0.3288097653107621,0.3313553287443627,0.3338315217391304,0.3360490953338271,0.3408761424519382,0.3401890359168242,0.3404553088262735,0.3433185115843669,0.3428657435279952,0.3450886630802949,0.3556280587275693,0.3568759342301943,0.0,2.1784807437397866,52.80386814520391,183.0368804382388,263.090716221005,fqhc5_100Compliance_baseline,42 -100000,95728,45272,430.0100284138392,6106,62.57312385091092,4767,49.10788901888685,1955,20.025488885174664,77.32392886815877,79.68903105597778,63.31606620966248,65.06531400342486,77.08111759118512,79.44674877483057,63.225666611174056,64.97762831031079,0.2428112769736543,242.2822811472116,0.0903995984884247,87.68569311406793,155.97208,109.72784335838271,162932.5589169313,114624.6065502076,394.54786,259.6925261172715,411465.9347317399,270594.86811044207,381.08255,185.47632970031336,393428.69379909744,190186.2461934994,3429.43796,1569.1604183734216,3537779.2495403644,1594676.5915629228,1153.82293,511.3621392240311,1187521.3103794083,516389.7806535506,1908.79624,806.2344105133699,1957010.049306368,811095.7034749825,0.3813,100000,0,708964,7406.02540531506,0,0.0,0,0.0,34058,355.05808123015214,0,0.0,34849,359.4246197559753,1585998,0,57008,0,0,0,0,0,68,0.6998997158616079,0,0.0,1,0.0104462644158448,0,0.0,0.06106,0.1601363755573039,0.3201768752047166,0.01955,0.3274266896659871,0.6725733103340129,24.29838696365891,4.43274776528928,0.3209565764631844,0.2294944409481854,0.224250052443885,0.2252989301447451,11.519926754760997,6.116413343279271,20.92684789560941,12175.801011126508,54.09486925819473,13.075250736392457,17.323967634491748,11.876943279412927,11.818707607897595,0.5697503671071953,0.7851919561243145,0.7137254901960784,0.5958840037418148,0.1191806331471136,0.7253685027152832,0.9057591623036648,0.8591885441527446,0.77734375,0.1293103448275862,0.5120759056929269,0.7205056179775281,0.6588658865886589,0.5387453874538746,0.1163895486935867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790118204746,0.0042583824230195,0.0067286418901089,0.0087992033977524,0.0111384627904138,0.0134521384928716,0.0159146055502314,0.0180673083793522,0.0201208477747446,0.0219924234667758,0.0239088756061802,0.0259142898211462,0.0279225652571734,0.0300049441720571,0.0321229194398869,0.0339869551285364,0.0360043089161418,0.0381329984327483,0.0400657190096394,0.0421315830598531,0.0567422534034911,0.0704287238716966,0.0838864596768274,0.0964468606399646,0.1087151368165761,0.1242767535091338,0.137073072393341,0.1491833301390574,0.1601508256959131,0.1707583781813503,0.1845093923246676,0.1964034689331516,0.2073853445370843,0.2177482835527179,0.2276891269204121,0.2372821296480854,0.2475143670144507,0.2551678350793883,0.2633497212539598,0.2706620336922741,0.2773991655076495,0.2841439118715574,0.2906068044635763,0.2969329572054499,0.3027765267245262,0.3072982248228526,0.3114480648155115,0.3161733763501192,0.3204667281010292,0.3248713505218737,0.3228510115665447,0.3219588865450635,0.3213292488388836,0.3199565532223026,0.3188440304171193,0.3179938110848984,0.315428806558311,0.3161788831288142,0.3160241952019684,0.3163258021915265,0.3176140088023223,0.3183706575927831,0.3195329532114707,0.3212887347578029,0.3228120861923679,0.3234580146694161,0.3249294932057089,0.3295694685380855,0.3338856961534393,0.3366852146263911,0.338559708295351,0.338390536311071,0.3409005156584077,0.3449638920562524,0.3496787603930461,0.3528081865778201,0.3515767131594906,0.3514048278591214,0.3538011695906433,0.345179584120983,0.0,2.6777806095503007,56.03705483217794,175.65594397455072,263.00557889754026,fqhc5_100Compliance_baseline,43 -100000,95781,45098,427.0053559683026,6039,61.64061765903467,4694,48.28723859638133,1860,18.91815704576064,77.4066300966336,79.7460924788947,63.35719594835807,65.08780033489093,77.1681347369989,79.51287746064114,63.26717820279772,65.00312741111216,0.2384953596347117,233.21501825355995,0.0900177455603525,84.67292377876845,155.41966,109.32280411198272,162265.64767542624,114138.29894444904,393.74897,258.8786173422907,410401.3739676972,269590.1977869208,377.43757,183.6162898714564,389981.77091489965,188421.499419743,3366.09872,1544.3955425123786,3466276.7772313925,1564599.4646346425,1122.20524,500.8683785132412,1157621.9396331217,509013.9010039727,1819.60256,776.3598249182336,1853905.9730009085,771293.8828167705,0.38193,100000,0,706453,7375.71125797392,0,0.0,0,0.0,33954,353.7549200780948,0,0.0,34510,356.2815172111379,1593204,0,57206,0,0,0,0,0,68,0.6890719453753875,0,0.0,1,0.0104404840208392,0,0.0,0.06039,0.1581179797345063,0.3079980129160457,0.0186,0.339034045922407,0.6609659540775931,24.32862185643037,4.44460445314766,0.3308478909245845,0.2275244993608862,0.2215594375798892,0.2200681721346399,11.215178743819592,5.830482648304723,20.024398550413512,12246.511882742294,53.24818231275906,12.828527439053296,17.514942665255695,11.538685860965124,11.366026347484937,0.5654026416702173,0.7837078651685393,0.6928525434642627,0.5932692307692308,0.1200387221684414,0.7209480122324159,0.8872180451127819,0.8177570093457944,0.7846153846153846,0.1583710407239819,0.5053160070880095,0.7219730941704036,0.6453333333333333,0.5294871794871795,0.1096059113300492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0049786051793717,0.0071340863194,0.0094998120358046,0.0114827961473133,0.0137369910999775,0.0159662323362084,0.0182003776859082,0.020503700069504,0.0226267960211224,0.0247914403427142,0.0269557543917254,0.0289320328478781,0.0310685608400247,0.0331199554689674,0.0352632611546523,0.0369650006724671,0.0391967821525574,0.0409142857142857,0.0428015159087123,0.0575578604670576,0.0715652746839017,0.0853869456295007,0.0987429844659786,0.1108453538727385,0.1261835319976329,0.1381477830423675,0.1492307201565141,0.1602927995219599,0.1709942798380358,0.1832795351839896,0.1955971714637891,0.207365710000978,0.2177459866768592,0.2271374117078422,0.2379566727888296,0.2478030066467413,0.2570484284365304,0.2651809005330611,0.2722818745850409,0.2788847385889237,0.2854822121452947,0.2914369543099164,0.2979707228251755,0.3037751667658959,0.3075917844021993,0.3121516863079062,0.3176108233317636,0.3225655976676385,0.3261127988376701,0.3254867065739092,0.3242145551670017,0.3228567399887196,0.3216723549488055,0.3200184200362458,0.3176663248595785,0.3162583518930957,0.3168149990183888,0.3178459186273677,0.3179487179487179,0.3187332039414751,0.3199315486142528,0.3208546117769671,0.3224148289904092,0.3244806731527741,0.3251586171177004,0.3274393866523326,0.3323875152006486,0.3347844257156788,0.3394726485635576,0.3431009571970381,0.3456666841856309,0.3471331631700181,0.3496771286980027,0.3542762247439801,0.3561484918793503,0.3581818181818181,0.355119825708061,0.3583265417006248,0.3538344722854973,0.0,2.7803790831629533,56.77688498117181,170.9960466963555,253.67371919688995,fqhc5_100Compliance_baseline,44 -100000,95689,45044,427.6144593422442,5978,61.37591572699057,4595,47.44536989622632,1763,18.03760097816886,77.29491858535671,79.69625946839233,63.29396199958445,65.07355547222245,77.07040970003575,79.47556720606114,63.210128969057386,64.99411821318135,0.224508885320958,220.692262331184,0.0838330305270673,79.4372590411001,156.2792,109.91437211489188,163319.9218300954,114866.25642957068,391.71738,257.3288390033288,408775.4600842312,268333.5615586805,375.31289,182.198568260893,388536.6552059276,187651.6537242707,3238.59574,1480.0498556939876,3342239.745425284,1504555.732349476,1071.60635,476.4546326509659,1104108.6436267493,482347.2809757234,1718.87172,726.0080197488896,1759130.0985484223,726482.1151703063,0.38063,100000,0,710360,7423.632810458883,0,0.0,0,0.0,33842,353.04998484674314,0,0.0,34244,354.2726959211613,1589288,0,57027,0,0,0,0,0,59,0.6165807982108706,0,0.0,0,0.0,0,0.0,0.05978,0.1570554081391377,0.2949146871863499,0.01763,0.3286970423661071,0.6713029576338929,24.432289927490864,4.337970451816401,0.3357997823721436,0.2467899891186072,0.2093579978237214,0.2080522306855277,11.6017355548712,6.153018463499188,18.982659097394187,12145.066761432188,52.1909531122414,13.48919894741682,17.519804904048954,10.587944757767328,10.594004503008309,0.5778019586507073,0.781305114638448,0.6992871030460143,0.5945945945945946,0.1234309623430962,0.7354581673306773,0.915,0.8419753086419753,0.7415254237288136,0.1915887850467289,0.518562874251497,0.7084468664850136,0.648506151142355,0.546831955922865,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019767453647855,0.0040792718195378,0.0063474330980551,0.0085811600833714,0.0107698728584952,0.0130971430901103,0.0154087921955998,0.0174291493839521,0.0195502721283299,0.0215634251528903,0.0236957101532527,0.025826202192248,0.0280101668055855,0.030094095579672,0.0321848097607299,0.0340448415653181,0.0358652849740932,0.037813032102662,0.0399787778540665,0.0421313765139986,0.0569100595424631,0.0701295165900595,0.0834024243060292,0.0957121060661861,0.1075954041421804,0.1232250555496772,0.135790937364002,0.1470810574844816,0.1578834893362397,0.168351143727737,0.182415546363323,0.1948266908996495,0.2060965799143347,0.2167954448585261,0.2262335463012855,0.236508780088133,0.2453615378607847,0.2538682270860293,0.2612645348837209,0.2688250940108227,0.2760485421153801,0.2834837365544202,0.2903126516792745,0.2960635210017511,0.3009686318834239,0.3062655033258876,0.3113090540083437,0.3157646879136544,0.3200905855710126,0.3246785784927803,0.323777879415642,0.3228430860566748,0.3221873372097935,0.3215312387143373,0.3205610114846896,0.3187104484930205,0.3166822555842673,0.3164993674941267,0.3172165177427346,0.3181972515591773,0.3194376665790758,0.3203145114970985,0.3224486369645967,0.32306899872349,0.323855956748407,0.3255874741877304,0.3282,0.3312838945642578,0.3336843952957697,0.3363777151252829,0.3379619056319372,0.3434960429170872,0.3504209071491393,0.3501901140684411,0.3535106682958924,0.3573295319553338,0.3562414474684506,0.3560728744939271,0.3687347602275806,0.3711069418386492,0.0,2.097763661616544,55.201904396649816,170.11975539806002,250.08810072671145,fqhc5_100Compliance_baseline,45 -100000,95716,44892,425.9580425425216,5990,61.48397342137156,4699,48.476743700112834,1926,19.72501985039074,77.3593554540744,79.73083420566752,63.33143217950936,65.0839525198635,77.12047410818937,79.49196278578002,63.24327538824527,64.99807648327183,0.2388813458850336,238.87141988750216,0.0881567912640903,85.87603659167087,155.75736,109.51457720859526,162728.65560616823,114416.16574929506,394.59122,259.3259997485176,411639.2243721008,270320.39919769,378.3824,183.9723473372848,390873.3231643613,188851.3278718445,3412.41568,1543.8080567785423,3526038.917213423,1573797.2614594656,1116.83031,491.5261979358629,1151343.8819006225,498052.7789876957,1887.55266,789.3688555962024,1936175.2267123573,796005.9966398949,0.37919,100000,0,707988,7396.757073007648,0,0.0,0,0.0,34031,354.8936436959338,0,0.0,34537,356.35630406619583,1589474,0,57047,0,0,0,0,0,83,0.867148648083915,0,0.0,0,0.0,0,0.0,0.0599,0.1579683008518157,0.3215358931552587,0.01926,0.3426161680458306,0.6573838319541693,24.454407747788657,4.408211992161855,0.3094275377739944,0.2296233241115131,0.2300489465843796,0.2309001915301128,11.290559079533445,5.837986630836868,20.551908612974223,12071.738870724874,53.24565916491658,12.92814395908476,16.37848616039996,12.03768148872658,11.901347556705293,0.5494786124707385,0.7849860982391103,0.6980742778541953,0.5624421831637373,0.1032258064516129,0.714987714987715,0.9134615384615384,0.8296089385474861,0.7130434782608696,0.1474654377880184,0.4913743530764807,0.7043740573152338,0.6551094890510949,0.5217391304347826,0.0921658986175115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.0044502113596966,0.0068089338082336,0.0089882391176291,0.0111141616586844,0.0131124843474808,0.0152811050512258,0.0172917134516056,0.0193003618817852,0.0216218429754604,0.0237399374455212,0.0260479257182181,0.0280669986419194,0.0300950967967937,0.0319897632757517,0.0339377274230896,0.0358529439170091,0.0379724515620462,0.0400960558870615,0.0421649097954251,0.0575250347196842,0.0716707832712354,0.0857109889648806,0.098473218228849,0.1100320553376354,0.1254852597395728,0.1367330914029838,0.1485739835840439,0.1592422024426469,0.1689002864899084,0.1815723121349912,0.1934834379735873,0.2045976261192162,0.2142864958911005,0.2237458009802302,0.2337417530631479,0.242582273392221,0.2516198704103671,0.2596202948218926,0.2676198331958574,0.2754914324721454,0.2816303623417167,0.2870350665626256,0.2933143431635389,0.2987539280991033,0.3045929609887607,0.3094082322031777,0.3144534973879221,0.3191935400383042,0.3234642762984445,0.321972141551038,0.3209033180306237,0.3192975061468212,0.3182944039630195,0.3176531594932958,0.3151048822936704,0.3129770992366412,0.3129744764397906,0.3128172805015161,0.3138870597447899,0.3143846513804398,0.3155056978650287,0.3157839516535168,0.3165874226249215,0.3167601666144993,0.3174097941506431,0.3209925841414717,0.3248542159180457,0.3264516582843879,0.3300019829466587,0.3317823092012226,0.336774880255455,0.3410749413033822,0.3438783269961977,0.3456212574850299,0.3448885744605588,0.3459902794653706,0.3495398159263705,0.3504901960784313,0.3546180159635119,0.0,2.4533285111285115,53.27058215621374,175.75330219483752,264.14677171859825,fqhc5_100Compliance_baseline,46 -100000,95879,45003,424.9522836074635,6147,62.787471709133385,4840,49.79192523910345,1893,19.32644270382461,77.4394230829848,79.71984487964475,63.39129033748679,65.07720686439659,77.20006842249606,79.48421826874814,63.30177216242532,64.99223321697235,0.2393546604887433,235.62661089661677,0.0895181750614639,84.97364742423485,155.40712,109.29695571913864,162086.7134617591,113994.67633072796,392.99453,257.4626968087495,409217.5241710906,267860.3623408145,378.78388,184.39838739868145,391099.3648244141,189280.8908954339,3504.44961,1593.2602585351508,3607535.257981414,1614200.5846276556,1161.29835,514.9184099065745,1196705.5768207845,522543.4139974077,1856.92482,785.1357636517035,1897837.7538355635,783950.3613454945,0.38108,100000,0,706396,7367.577884625412,0,0.0,0,0.0,33840,352.2460601382993,0,0.0,34610,356.9394757976199,1597333,0,57370,0,0,0,0,0,83,0.8656744438302443,0,0.0,1,0.010429812576268,0,0.0,0.06147,0.1613047129211714,0.3079551000488043,0.01893,0.3320912901723334,0.6679087098276665,24.579044221226493,4.302273661897204,0.3188016528925619,0.2303719008264463,0.2285123966942149,0.2223140495867768,10.885686483527982,5.604613289331732,20.174788003051702,12240.015040218326,54.66488569412584,13.360484345363858,17.306729386635716,12.266970304858429,11.730701657267852,0.5599173553719008,0.7650224215246637,0.6876215165262476,0.608499095840868,0.1143122676579925,0.731764705882353,0.8920308483290489,0.8811881188118812,0.7576923076923077,0.1486486486486486,0.4984572230014025,0.696969696969697,0.6189640035118525,0.5626477541371159,0.1053864168618267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023587770803806,0.0047225262475171,0.0070603272502257,0.0093716049508066,0.0115868966428491,0.0138377322398811,0.0161242678889737,0.0181048551611587,0.0204323484941359,0.0227909736287567,0.0250107584171806,0.0270153801955613,0.0291016708798322,0.0313040434818413,0.0335367739541021,0.0357684960503898,0.0376163873370577,0.0394993161188709,0.0416316275786173,0.0436415463359826,0.0584697175023454,0.072672747980732,0.0862121323182927,0.0987883751207425,0.1108608002694935,0.1254275940706955,0.1370463741711332,0.1481174482736634,0.159135978847261,0.1700166966349858,0.1824495763987442,0.1943637011983618,0.2051758417261497,0.2157368449811485,0.2251217929684493,0.2357602992938259,0.2454270841461103,0.2543475330277703,0.2626916061495236,0.2699022466129309,0.2774671964516725,0.2853639453001833,0.2918730421419706,0.297191159215536,0.3025491624180626,0.3082180815034668,0.3133284978240208,0.3180674831038163,0.3222416133410898,0.3264779460171165,0.3254594587327409,0.3242096300162057,0.3241871775769247,0.3235204987228884,0.3228031145717464,0.3209032810445525,0.3188062155198305,0.3192775030295091,0.3199638632257184,0.3210502892745883,0.3216848557332935,0.3227205519960571,0.3225355054302423,0.3240699537201851,0.3251284502330027,0.3260305264250857,0.3273828047641949,0.3330629056415377,0.3360712794097173,0.3387687581235968,0.3418162093748587,0.3457351231370891,0.3462718337194015,0.3493966760264096,0.3534458376543792,0.3581859195061142,0.3642547928262214,0.3623872026251025,0.361949598449183,0.3577358490566037,0.0,2.711330487099618,55.31093633252242,183.3078338370436,263.4502771227924,fqhc5_100Compliance_baseline,47 -100000,95738,45079,425.5885855146337,6081,62.28456830098811,4723,48.74762372307757,1841,18.84309260690635,77.34647984393533,79.70010310551372,63.33814763576003,65.0760176360757,77.1132665607579,79.4678398859328,63.25158141324413,64.99221953668734,0.2332132831774203,232.2632195809149,0.0865662225158985,83.79809938836047,155.87396,109.65926928240494,162813.05228853747,114541.00700077807,394.76425,259.8950964505243,411778.6876684284,270905.51970014453,385.23477,188.06611800243087,398695.1889531848,193610.0914373073,3380.83089,1551.9542047312189,3492364.452986275,1582071.0634557016,1108.08361,495.0233116390686,1140718.3563475318,500366.25126811536,1806.9125,768.1134625058303,1851705.195429192,771834.7044987483,0.38039,100000,0,708518,7400.593285842612,0,0.0,0,0.0,34092,355.5119179427187,0,0.0,35190,363.8993920909148,1586879,0,57021,0,0,0,0,0,73,0.7624976498360108,0,0.0,0,0.0,0,0.0,0.06081,0.1598622466416046,0.3027462588390067,0.01841,0.330132241813602,0.669867758186398,24.4071612926528,4.335589269760496,0.3078551767944103,0.2447596866398475,0.2267626508575058,0.2206224857082362,11.189247060862934,5.819295983242889,19.79047230226996,12170.827576141057,53.697329054547694,13.889267326570351,16.579418888910173,11.789141391395676,11.439501447671503,0.5744230362058014,0.8079584775086506,0.7138927097661623,0.5882352941176471,0.1065259117082533,0.7308868501529052,0.9225512528473804,0.8663239074550129,0.7233201581027668,0.1365638766519823,0.5144948755490483,0.7377963737796374,0.6582159624413145,0.5464547677261614,0.0981595092024539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192221997164,0.0046731340408924,0.0071340863194,0.0094776619735478,0.0116338194317326,0.0139884345984688,0.0161977573904179,0.0185039651353861,0.0207500689965348,0.0228722369539176,0.0251232587459896,0.0274156795927165,0.0296612347709864,0.0317746420846637,0.0338829161593859,0.0359693640244343,0.0379872651032769,0.0400473097752785,0.042245761390451,0.0443916716141195,0.0589979432675944,0.0721746593263977,0.0855566163433595,0.0984153022703134,0.1104504048582996,0.1254413972469498,0.1369836858518785,0.1483168548653164,0.1585459592185331,0.169206696246758,0.1821019883091298,0.1941906111105103,0.2042668347606833,0.2146119719387197,0.2246916837037525,0.2350453841044941,0.2445418255614281,0.2536071344226898,0.2628898140690406,0.270521277083047,0.2768563497571131,0.2836096625587541,0.2896387652684405,0.2949357375791291,0.3005940449724844,0.3059643591669848,0.3106804618983874,0.3152869890652647,0.3198558483815351,0.324283639244685,0.3231695815031394,0.3221272319277523,0.3204441688743588,0.3197976147452114,0.3188838841070924,0.3175744015692525,0.3157345146744719,0.3159060336625217,0.316002597047567,0.3157725666559589,0.3164507189934092,0.3184196497324619,0.3197324554966138,0.32044025860719,0.321735157621372,0.3231304075071228,0.3226,0.3256348132532016,0.3289201053555751,0.3335314158941447,0.3341084211006246,0.3383714741883981,0.3418755103322655,0.3456931410696574,0.3496034743202417,0.3553857176976355,0.3551459293394777,0.3598856209150327,0.3560033585222502,0.3569182389937106,0.0,2.3202595384753373,57.20052092915377,173.35875489682516,257.0776936753298,fqhc5_100Compliance_baseline,48 -100000,95734,45444,430.2337727453152,6110,62.57964777404057,4795,49.42862514884994,1979,20.3062652767042,77.41222784566315,79.76831453962131,63.350809200748486,65.08978071486233,77.17033647573088,79.52773281229531,63.262965254854166,65.00500699020141,0.2418913699322757,240.5817273260027,0.0878439458943205,84.77372466091992,156.08912,109.7799356156843,163044.60275346274,114671.83614565808,396.50597,260.56415019146846,413508.8996594731,271509.3803575204,386.73277,188.2508603788022,399420.48801888566,193152.0372716308,3446.6696,1574.3928909831989,3557587.9311425406,1601880.7539465572,1145.78492,505.3800557647726,1181303.2047130591,512361.2778790945,1933.55766,793.7696026598616,1986063.44663338,801350.800116433,0.384,100000,0,709496,7411.118306975579,0,0.0,0,0.0,34187,356.41464892305765,0,0.0,35352,364.698017423277,1586455,0,56943,0,0,0,0,0,82,0.8565399962395805,0,0.0,0,0.0,0,0.0,0.0611,0.1591145833333333,0.3238952536824877,0.01979,0.3369820172009382,0.6630179827990618,24.40391058505647,4.405277228238199,0.3184567257559958,0.2344108446298227,0.2221063607924921,0.2250260688216892,11.51573247003964,6.044482025013118,20.772993794726016,12243.56243890516,54.58879677845922,13.392147361805916,17.51827765945867,11.945058366018738,11.7333133911759,0.5655891553701773,0.7731316725978647,0.7079240340537001,0.5924882629107981,0.1214087117701575,0.7520976353928299,0.9191176470588236,0.8598130841121495,0.7660377358490567,0.1904761904761904,0.4954075774971297,0.6899441340782123,0.6487716105550501,0.535,0.1047180667433832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0045102113211371,0.0066854684900377,0.008906084978471,0.011346190994215,0.0137730951290273,0.0158794871272193,0.0181933206126343,0.0200917721842393,0.022517911975435,0.024657702713782,0.0269462921901946,0.0291659384605894,0.0313690758171819,0.0334843309840988,0.0356925048840743,0.037836270631847,0.0398717629482071,0.0419499719293868,0.0435643151797991,0.058402238369665,0.0722619259383272,0.0860352658575729,0.0991984178746502,0.1111779353422807,0.1269458289681153,0.138865305429384,0.1500149056684127,0.1609249444349461,0.1712326562147893,0.1841898170606815,0.196353360257257,0.2078888937263268,0.2181223113718708,0.227594638353177,0.237402413058907,0.2468125998681461,0.2553915109744699,0.2631082952971365,0.2704369354912658,0.2777764912930715,0.2853816633125848,0.2926269461927973,0.2985642953791625,0.3035805316179148,0.3090826264143509,0.3137404389341598,0.3182909021649419,0.3222573771550333,0.3265158490069709,0.3254366431465135,0.3237281862173907,0.323004378578646,0.3221751900483759,0.3212533979435055,0.3191414871755841,0.3166616830078217,0.3172355282908046,0.3183663761615956,0.3185360052539093,0.3187842013177977,0.3198092097515015,0.3208342022940563,0.3218526259616667,0.3231513178368803,0.3240229259057548,0.3254845290717443,0.3284580286267892,0.3297604915857831,0.3294688276351591,0.3315677486531758,0.334321249007674,0.3357810832862612,0.3379320800485142,0.336663243394641,0.3427152317880794,0.3420215184118806,0.3429776974080771,0.3408096280087527,0.3433803891644411,0.0,2.576634792940028,57.15358630895584,184.0553686654916,253.72888813143464,fqhc5_100Compliance_baseline,49 -100000,95741,44682,424.2800889900879,5952,60.99790058595586,4686,48.47453024305157,1822,18.738053707398084,77.32373385663094,79.69334758328768,63.321321634088775,65.07509195276413,77.09745780050356,79.46637036479291,63.23854520257705,64.99384817291242,0.2262760561273751,226.97721849476693,0.0827764315117249,81.24377985170383,154.98274,109.00208833287624,161877.0850523809,113851.00253065692,390.20655,256.3965822376122,407116.16757710907,267353.71704662824,372.95724,180.93944192812623,386462.2262144745,186669.82320385528,3347.3474,1521.456933837613,3466041.612266427,1558927.1407626965,1105.51264,488.4415635949858,1143429.17872176,498907.9428823444,1791.66454,744.4907728849123,1844725.707899437,755287.50852465,0.37782,100000,0,704467,7358.049320562768,0,0.0,0,0.0,33791,352.4613279577193,0,0.0,34157,353.6938197846273,1596470,0,57286,0,0,0,0,0,47,0.4909077615650557,0,0.0,1,0.0104448459907458,0,0.0,0.05952,0.157535334286168,0.3061155913978494,0.01822,0.3442465093885412,0.6557534906114588,24.51507476749379,4.3175722736735,0.3171148100725565,0.2373026034997866,0.2217242851045668,0.22385830132309,11.021858082282469,5.69601558282857,19.398855946313542,12059.688100479205,53.35116073360342,13.4319132584916,16.89833152343292,11.553589287505297,11.467326664173616,0.558898847631242,0.8066546762589928,0.7052489905787349,0.5399422521655438,0.107721639656816,0.7344854673998429,0.928921568627451,0.8875305623471883,0.6708860759493671,0.1552511415525114,0.493407559331966,0.7357954545454546,0.6360259981429898,0.5012468827930174,0.0951807228915662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681864235055,0.0041680610909975,0.0063641900121802,0.0085259028921,0.0107744587335178,0.0130387393168922,0.015257210459756,0.0174951232216355,0.0196026300450952,0.0218956423780019,0.0238537190675923,0.0260449830543288,0.0279612369606814,0.0298321362694887,0.0316154536915661,0.0335876442128768,0.0355652218942571,0.0376191810098872,0.0394996776809665,0.0416675349573842,0.0565689048518955,0.0702885430512093,0.0834985471672383,0.0961261346544234,0.1079314198949788,0.1233519765708425,0.1356996615994992,0.1471890028514278,0.1574203607394197,0.1665183501484952,0.1798098765166277,0.1911715395182313,0.2027962904576044,0.2127903798852145,0.2225815322004069,0.2322859926486869,0.2421070234113712,0.251171045684823,0.2599045535441014,0.2680652947299786,0.2750713353280269,0.2829611287609792,0.2893570761795602,0.2944423159810354,0.3002451872891025,0.3054693274205469,0.3101596916299559,0.3143584521384929,0.3193272955779272,0.3234091388771634,0.3222796671782858,0.3208911041044211,0.3199678665050596,0.3183587250604048,0.3179140885292718,0.3165749835276811,0.3151378105283132,0.3156177767577581,0.3170548843866614,0.3171288046190035,0.3172187909414187,0.318358795976046,0.319749018949489,0.3205510135513495,0.3214449237294262,0.3223445138689184,0.323618665903235,0.3264286391954714,0.3287439101885194,0.3319732789311572,0.3351693748278711,0.3355323142933762,0.3380129589632829,0.3382793880218344,0.3411320754716981,0.3431712271478074,0.3402989627821842,0.3470707070707071,0.3478499041358532,0.3408829174664107,0.0,1.8536411762216327,56.29820665856837,178.5403264998667,251.08416457043447,fqhc5_100Compliance_baseline,50 -100000,95774,44995,426.0550880197131,5989,61.20659051517113,4688,48.29076784931192,1891,19.32674838682732,77.38153749659537,79.72353220625817,63.350937847410606,65.08306348776973,77.14460597189981,79.48845770374447,63.263098674705226,64.99847618101985,0.2369315246955636,235.07450251369733,0.0878391727053795,84.58730674988146,154.94512,109.0458800481535,161781.79881805083,113857.27509360944,394.26377,258.87111046276874,410997.45233570697,269631.52090780606,374.84178,182.35909583466795,387129.5549940485,187076.32693615105,3381.03373,1538.1046994657308,3486803.589700754,1562666.9891174312,1112.99606,490.54608701242586,1142572.3265186793,492678.1816665893,1856.8899,778.6048630038124,1899868.064401612,779744.7035016879,0.3799,100000,0,704296,7353.718128093219,0,0.0,0,0.0,34084,355.16946144047444,0,0.0,34306,353.94783552947564,1596241,0,57258,0,0,0,0,0,69,0.7204460500762211,0,0.0,0,0.0,0,0.0,0.05989,0.1576467491445117,0.315745533478043,0.01891,0.3398244213886672,0.6601755786113328,24.42694383330604,4.434313713045808,0.3195392491467577,0.2290955631399317,0.2197098976109215,0.231655290102389,11.206314754478486,5.75565395977894,20.108322529990403,12141.3298932741,53.00642848134857,12.78314480759331,17.04238636312077,11.338589133297823,11.842308177336674,0.547994880546075,0.7690875232774674,0.6889185580774366,0.579611650485437,0.1049723756906077,0.721958925750395,0.8929503916449086,0.8300970873786407,0.7862595419847328,0.1148325358851674,0.483635300993571,0.7004341534008683,0.6353591160220995,0.5091145833333334,0.1026225769669327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914419980149,0.0049668538528594,0.0071121301895215,0.0094654844967145,0.0116212863737112,0.0135997638364363,0.0156460227504382,0.0178201451331407,0.0201516483067301,0.0225203102298074,0.0249318549791978,0.027026749604812,0.0292309274110631,0.0313928586137309,0.0333876557471738,0.0354083793976339,0.0374808559956951,0.0390795065823572,0.0411260582766322,0.0429884746327395,0.057843219100889,0.0714218480363959,0.0843074149010892,0.0977870247777567,0.1102013719849524,0.1251889035667107,0.1365457165868339,0.1477598928320823,0.158000896458987,0.1677296260169573,0.1806077306437897,0.1934440767417213,0.2051167795154927,0.2158609083358832,0.2261233019853709,0.2365490213444336,0.2456901358192644,0.2547269497965332,0.2630582204985144,0.2703441805116939,0.2771732216992587,0.2833196960841613,0.2890723893574986,0.2947736610725794,0.3006410567723763,0.3063294879529197,0.310268136042182,0.3137746020444489,0.3179324621555182,0.3220189291081173,0.3211128899891025,0.3204465464144302,0.3191402453624801,0.3183939433343447,0.3178054907323454,0.316334027182564,0.3150366670881274,0.315662808401958,0.3168930188229688,0.3163448705400836,0.3171511356201514,0.3182024512029051,0.3187040873987568,0.3198782779915868,0.3208770623694132,0.3227310617901427,0.3239308462238398,0.3283563401884371,0.3316094765532182,0.3350735643094447,0.3378286337011306,0.3399046104928457,0.3386934039601463,0.3434497483605307,0.3452212472874799,0.3462679482615403,0.3531473860691967,0.346688141735454,0.3432918395573997,0.3380497131931166,0.0,2.494294587504379,55.10914855201511,169.83199440799672,260.6707854639562,fqhc5_100Compliance_baseline,51 -100000,95867,44789,424.1292624156383,5976,61.14721436990831,4650,48.00400554935484,1812,18.640408065340523,77.37299817448195,79.67293246170644,63.35320242165369,65.05630869009501,77.14837597703422,79.44779774540164,63.26977379799229,64.97471142614431,0.2246221974477293,225.13471630479387,0.0834286236613977,81.5972639506981,154.56342,108.6908762517896,161226.92897451678,113376.73678303232,388.25439,255.13394804672916,404490.3042757153,265630.79896807985,370.33903,179.9637888074689,382686.1067937873,185079.26715201532,3334.68527,1520.961982252226,3441149.6448204285,1549233.4612037772,1120.5359,494.68426669775727,1154400.304588649,501573.60413892695,1791.11746,748.708126914552,1842724.2951171936,757592.022622791,0.37924,100000,0,702561,7328.496771568944,0,0.0,0,0.0,33590,349.8701325795112,0,0.0,33885,349.8388392251765,1601220,0,57514,0,0,0,0,0,57,0.5945737323583715,0,0.0,2,0.0208622362231007,0,0.0,0.05976,0.1575783145237844,0.3032128514056225,0.01812,0.3274009940676607,0.6725990059323392,24.541306497173853,4.316288630150378,0.3221505376344086,0.2318279569892473,0.2165591397849462,0.2294623655913978,10.887438180583162,5.474416216679216,19.19750166113879,12096.639154138877,52.43699003501227,12.780953002407813,16.94632465769083,11.03817582803207,11.67153654688156,0.566236559139785,0.7736549165120594,0.6902536715620827,0.6276067527308838,0.1246485473289597,0.7422764227642277,0.921760391198044,0.8623376623376623,0.7813953488372093,0.1628959276018099,0.5029239766081871,0.6831091180866966,0.6307277628032345,0.5858585858585859,0.1146572104018912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293498075754,0.0045506603018233,0.0068165910958278,0.0090165099608066,0.0111827257385682,0.0134059446254071,0.0155942637570964,0.0179305840451479,0.0200676414390665,0.0222849775922401,0.024466210401213,0.0266964890320727,0.0287346871659952,0.0310650430772714,0.0330608331701081,0.0347804535503325,0.0368098159509202,0.0388580902543909,0.0405503634475597,0.0423030504806691,0.0572864531197864,0.0708568443051201,0.0838658314303073,0.0959666495153889,0.1076404612711284,0.1227908942058839,0.1345823707691329,0.1455015204031726,0.1559654572431976,0.1661272692200527,0.1793663093546859,0.1912874283861204,0.2028476713222107,0.2131774893668201,0.2231868748555772,0.2333643452064504,0.2424414842582055,0.251825433434965,0.2604755098799882,0.2678779968400082,0.2750398926944335,0.2813731797181121,0.2886504011169747,0.2947038110522912,0.3005352396441445,0.305531610964707,0.3111328027231316,0.3153490028490028,0.319992233512394,0.3246938344594595,0.3232517741479376,0.3222636627626925,0.3212659476985973,0.3200387557663663,0.3187268755850755,0.3178179480507553,0.3161175986581854,0.3161165494285667,0.3168693397915849,0.3169009060426624,0.3180143965597831,0.3192236380133338,0.3200376293508937,0.3216267409470752,0.3231181765945221,0.324262567511425,0.3247311216070107,0.3278014807378592,0.3315581093864966,0.3347024209154456,0.3352914595571622,0.3384981491274458,0.3432788944723618,0.3440311023021802,0.3505416862929816,0.3521524347212421,0.3576229758631225,0.3650275453988982,0.3716347488204274,0.3706240487062405,0.0,1.8941086772427755,53.946253452380176,172.9363766635964,256.2151670824749,fqhc5_100Compliance_baseline,52 -100000,95789,45050,427.2620029439706,5974,61.02997212623579,4715,48.61727338212112,1841,18.78086210316425,77.39816222968327,79.72623346233125,63.35848721039546,65.07900465546219,77.16654278659074,79.49856749245313,63.27263860365126,64.99749842081798,0.2316194430925264,227.66596987811735,0.0858486067442001,81.50623464420903,155.94062,109.76000266986397,162795.9577822088,114585.18480187074,393.84917,258.5050053490491,410560.8681581393,269266.8123695273,380.04818,185.2230914222106,392870.8933176043,190402.77965897333,3334.44299,1525.524606087395,3437925.419411415,1549485.0033388245,1119.14702,500.70573982306735,1151904.1434820285,506374.8937675458,1797.5967,757.179040580808,1835796.156134838,755952.7723839555,0.38018,100000,0,708821,7399.816262827673,0,0.0,0,0.0,33997,354.28911461650085,0,0.0,34714,358.5902347868753,1590495,0,57044,0,0,0,0,0,67,0.6890143962250362,0,0.0,1,0.0104396120640157,0,0.0,0.05974,0.1571360934294281,0.3081687311683964,0.01841,0.3269907259354013,0.6730092740645987,24.398365262537965,4.3004506544904135,0.3143160127253446,0.2430540827147402,0.2267232237539766,0.2159066808059385,11.186104492262787,5.903410801147201,19.62382557055543,12106.82483164448,53.125751003858,13.669340402494674,16.58395047993951,11.744900824998975,11.12755929642483,0.5643690349946978,0.7783595113438045,0.7044534412955465,0.5622076707202993,0.1218074656188605,0.7440758293838863,0.9049881235154394,0.8776595744680851,0.7423076923076923,0.1818181818181818,0.4984053348796752,0.7048275862068966,0.6455696202531646,0.5043263288009888,0.1063040791100123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293026270482,0.0046213718177395,0.0069188004707219,0.0091802745958241,0.011111675900981,0.0134447452521016,0.0156315279971467,0.0175488715667469,0.0195649730790057,0.0214037241661551,0.0236863403989386,0.0259925501021025,0.0279122347258619,0.0300123507616303,0.0322278008598204,0.0343506325845597,0.0365285938922453,0.0382832671429608,0.0402702000519615,0.0421751989003207,0.0574940523394131,0.0712649688856351,0.0845232853158877,0.0971088060030898,0.1096996594946183,0.125306553911205,0.1371860682165281,0.147987741290144,0.1578643825228823,0.1689221068885648,0.1812689147128194,0.1929116826371915,0.2042785280472832,0.2145627355656306,0.2239831188385409,0.2336129060812605,0.2433234090478261,0.2521674594339304,0.2606846331836123,0.2685789533951677,0.2761251835323768,0.2823446905499386,0.2894864541785515,0.2951424668695631,0.2997900001213872,0.304872943957451,0.3099077476936923,0.3142980583511233,0.3183141603799221,0.3227286511002413,0.3223961347455688,0.3206659975526927,0.3197600743431613,0.3187740790441972,0.3178523251159963,0.3172240981527601,0.3156414873787634,0.3155369220942991,0.3168580349069319,0.3170140744699804,0.3179422976306151,0.3192535545023696,0.3204701846855326,0.3213569295234699,0.3222357752744493,0.3244394793588112,0.3236426428126592,0.3274056942838391,0.3300128870467765,0.3329263008626462,0.3360566448801743,0.3400937681083074,0.3434349719975109,0.3445981704090118,0.3470170188890967,0.3495318241080953,0.3539487645899651,0.3614579138139348,0.3652365236523652,0.3665278303672851,0.0,2.348907053088647,55.127354299877965,171.871656852327,260.11653987008714,fqhc5_100Compliance_baseline,53 -100000,95875,45067,426.1903520208605,6001,61.34028683181226,4752,48.928292046936114,1901,19.410691003911342,77.3584022892406,79.64085986554393,63.35300198276878,65.04168631991068,77.11964177163789,79.40586597378913,63.263837127614615,64.95711794330157,0.2387605176027136,234.99389175479732,0.0891648551541663,84.56837660911276,155.18976,109.2135324073599,161866.76401564537,113912.41972084476,391.88641,257.6771879633893,408152.2816166884,268168.7384233526,378.12724,183.83641234275785,390878.9048239896,188945.08379579007,3443.82831,1558.6485384765797,3548938.7118644067,1582649.5107969542,1157.52462,512.9922392734833,1189128.0,516864.76065030775,1869.57624,786.3559322480131,1910556.89178618,784191.7406337669,0.37968,100000,0,705408,7357.580182529335,0,0.0,0,0.0,33717,351.0299869621904,0,0.0,34607,357.3924380704042,1594002,0,57200,0,0,0,0,0,70,0.7301173402868318,0,0.0,0,0.0,0,0.0,0.06001,0.1580541508638853,0.3167805365772371,0.01901,0.3308870453095086,0.6691129546904914,24.717256527958263,4.34517817990672,0.3112373737373737,0.2331649831649831,0.2234848484848484,0.2321127946127946,10.891574841110549,5.571408892303948,20.288086845793103,12133.908050223085,53.73320391012952,13.236342484055823,16.73793016494384,11.815945124384449,11.942986136745414,0.5484006734006734,0.7752707581227437,0.6788370520622042,0.5800376647834274,0.1151405258386219,0.7119871279163315,0.9093198992443324,0.837696335078534,0.7125,0.1473214285714285,0.4904531205471644,0.70042194092827,0.6235186873290793,0.5413625304136253,0.1069397042093287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00230841660845,0.0044786252039193,0.0067146088385349,0.0089857750611743,0.0111811343769058,0.0131590999297774,0.0152817963242185,0.0175735631597735,0.0197563889200861,0.0217851337674684,0.024209976762517,0.0265939451102613,0.0288598806577177,0.0308806435353296,0.0328324986087924,0.0348875627232742,0.0369818659549597,0.0388976410596575,0.040835825855766,0.0428965301982,0.05726647206005,0.071172592491981,0.0848187168799614,0.0978493720334355,0.1103034899767194,0.1254410615056308,0.1369662671287317,0.149451811520997,0.1598757458982269,0.1692360470850575,0.1816174886926556,0.1933013111774633,0.2041206849687415,0.2143419412677935,0.2240892046141834,0.2351189817376867,0.2452653416315331,0.2538650955170514,0.2618564185165439,0.2692845196911728,0.2771639148896782,0.2842755377759062,0.2902542122026593,0.296024941543258,0.3010989278160025,0.3060318243493277,0.3110373340015034,0.3155078169794733,0.3200352999195369,0.3227099009508192,0.3218404759014204,0.3213060076905054,0.3196062392463261,0.3182107609041706,0.3179382609472211,0.3152645872010065,0.3129193433261956,0.3131220081920021,0.3148344688281009,0.3155234012147195,0.3164238981684569,0.3169930761622156,0.3189779950074469,0.320678694542687,0.3220192099371705,0.323023249759171,0.3249409017117143,0.3267463379442301,0.3309644670050761,0.3336239004675489,0.3360036413290851,0.3395927003438244,0.341167598818576,0.3462068965517241,0.3483210017074559,0.3504201680672268,0.3594040968342644,0.35357432981316,0.3559275521405049,0.3589645984012181,0.0,2.499487838510118,54.02876183414448,177.90273583865084,264.483648273761,fqhc5_100Compliance_baseline,54 -100000,95724,45078,427.2282813087627,5937,60.7057791149555,4663,48.04437758555848,1814,18.49066064936693,77.38965647392791,79.75554651940969,63.34469261111818,65.09360475680818,77.16187848640094,79.53034285883015,63.25921964578615,65.01144754512521,0.2277779875269772,225.20366057953825,0.0854729653320305,82.15721168296852,156.51526,110.10381551411042,163506.81124900756,115022.16321310269,394.90525,259.5863039673179,411907.3691028373,270543.71314123727,381.58145,185.2583707239268,393699.0096527517,189804.4626331053,3324.50993,1523.1160372808697,3432845.3783795075,1550983.0526104944,1074.08451,481.0869728598973,1109414.7235802934,489927.93119792,1771.93396,745.676447450202,1810385.378797376,747434.6692186729,0.38107,100000,0,711433,7432.127784045798,0,0.0,0,0.0,34096,355.4907860097781,0,0.0,34960,360.3902887468137,1587050,0,56990,0,0,0,0,0,69,0.7103756633655092,0,0.0,1,0.0104467009318457,0,0.0,0.05937,0.1557981473220143,0.3055415192858346,0.01814,0.3332264271969211,0.6667735728030789,24.417038401523545,4.423468469777146,0.3111730645507184,0.2380441775680892,0.2404031739223675,0.2103795839588247,11.502832923384217,6.0142845035902,19.267524735144946,12140.88188517272,53.11060503807035,13.4032495645993,16.596040503850492,12.4667901482586,10.64452482136196,0.5661591250268068,0.8063063063063063,0.6919365954514128,0.5744870651204282,0.0988786952089704,0.7178707224334601,0.9132530120481928,0.8448275862068966,0.7003610108303249,0.1290322580645161,0.5065710872162486,0.7424460431654676,0.6325358851674641,0.533175355450237,0.0903141361256544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195040920508,0.0047443812536115,0.0068602279300581,0.0091533413251518,0.0113318481898542,0.013512687874221,0.0157930689939947,0.0179561253968416,0.0202285550740044,0.0223762193811224,0.0244982471965394,0.026568932417588,0.0285896394683005,0.0306859019904647,0.0325322331098504,0.0348188263502759,0.0368322408954883,0.0388218572658705,0.0407104847426623,0.0427815287155122,0.0572562121528502,0.0711414875133449,0.0847751046573847,0.0979210066704543,0.1095274768169302,0.1251586562870198,0.137600662061941,0.1485312899106002,0.1592015891323849,0.1688366007464287,0.181644915363742,0.1940411536880368,0.2051125922865313,0.2158086948915325,0.2254153372208163,0.2345587421105082,0.24367995539448,0.2529134778553207,0.2606846814156281,0.2685966016362492,0.2759641514888696,0.2827769205592182,0.2898917308874285,0.2958729322768295,0.3019330412940334,0.306981039152918,0.3110377511848045,0.3148786287400023,0.3200434658870404,0.3236786943166387,0.322747693218196,0.3215508352237575,0.3200968114147412,0.3188163118007939,0.3178294573643411,0.3153030673347183,0.3131716400246169,0.3143011262402537,0.3158833118250356,0.3174129883037822,0.3174213239536225,0.3194152437466842,0.3205120199812675,0.3218482727979562,0.3227393204231237,0.3253320904218131,0.3271390185263753,0.3311328723836936,0.3328899002275512,0.3352782408509963,0.3365257445158936,0.3424759871931697,0.3428301292152537,0.3433476394849785,0.3479789103690685,0.3484210526315789,0.3514492753623188,0.3511146496815286,0.3500674763832658,0.3511161558834658,0.0,2.608250324264256,57.31585310762885,172.85585030929096,247.503035629535,fqhc5_100Compliance_baseline,55 -100000,95757,45033,426.7468696805455,6220,63.640256064830766,4867,50.199985379658926,1978,20.259615485029816,77.34687979821054,79.7077854271308,63.33382307926016,65.08192259011496,77.10133061605309,79.46250280984994,63.24227588712902,64.99290213126882,0.2455491821574469,245.2826172808642,0.0915471921311379,89.02045884613585,154.93918,108.9558854738498,161804.5469260733,113783.72909954345,392.61343,257.35783766416887,409359.2739956348,268112.855005981,376.35391,183.0180145029503,388606.68149586977,187738.01001539495,3484.31154,1598.8241666870058,3597799.5237946054,1629376.777886456,1171.50781,517.766280760136,1207076.1197614796,524894.2761337708,1938.86012,816.5230906251826,1987882.494230187,822067.7673119613,0.38232,100000,0,704269,7354.75213300333,0,0.0,0,0.0,33943,353.79136773290725,0,0.0,34495,355.9008740875341,1597744,0,57467,0,0,0,0,0,60,0.6265860459287571,0,0.0,0,0.0,0,0.0,0.0622,0.1626909395270977,0.3180064308681672,0.01978,0.3364041148472286,0.6635958851527713,24.248460305359444,4.388484024496563,0.3260735566057119,0.2319704129854119,0.213889459626053,0.2280665707828231,11.17685339833893,5.811799524105793,21.025421544824862,12224.90653358776,55.403607431907176,13.58456871923173,18.07980867699141,11.5173205642078,12.221909471476248,0.5570166426957057,0.7785651018600531,0.6981726528040327,0.5696445725264169,0.118018018018018,0.716338880484115,0.8796992481203008,0.8615384615384616,0.7192982456140351,0.1666666666666666,0.4976022566995768,0.7232876712328767,0.6325088339222615,0.5276752767527675,0.1045977011494252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712050585707,0.0046343244229911,0.0067106598984771,0.009004339563198,0.0113025962399283,0.0132787519602452,0.0153838311754511,0.0175071457737852,0.0197297131524605,0.0220031125854937,0.0241139259973138,0.0259566909326132,0.0282182595997614,0.0306258047901107,0.0324990969606274,0.0343412415361554,0.0362231795211664,0.0383103208606077,0.0405197505197505,0.0426737199446012,0.0575520045089709,0.0717789935041161,0.084908726788504,0.0975225201551446,0.1105325842933482,0.125538975312817,0.1372526156227143,0.149189775433821,0.160310229685183,0.1705712847211063,0.1831101070410413,0.1951646546413479,0.206464580617123,0.2171909130624727,0.2274789869801681,0.2376668215921917,0.2472789722544384,0.2562932149080892,0.265219957325101,0.2727928794803945,0.2799907418122902,0.2864632704888296,0.2925939956435268,0.2978465744226757,0.3030718795531811,0.3073429499803072,0.3121777866760098,0.3166516170878429,0.3219786193150933,0.3263124596343698,0.3249761254657215,0.3231507716006932,0.3220785069879382,0.3210471627316285,0.3203056606573188,0.3194718563057481,0.3179539091786217,0.3184742647058823,0.3197820405513896,0.3208823371941534,0.3210699835156601,0.3218884120171674,0.3231804460841858,0.3240282289682984,0.3254232383157285,0.3270651092137656,0.3265592351947792,0.329091887443421,0.3315345818784608,0.3320694472161245,0.3366645273677455,0.3378486480721028,0.3404686510449651,0.3441934991606897,0.3473210940427126,0.3498283414229904,0.3540963485731819,0.3528565556925606,0.3589310829817159,0.366877971473851,0.0,2.360062927732507,58.05314146551014,184.46593644490832,261.823689927586,fqhc5_100Compliance_baseline,56 -100000,95754,44931,425.1832821605364,6031,61.78331975687699,4707,48.57238339912693,1889,19.330785136913335,77.36211040614715,79.7236253356723,63.32787542470121,65.07533597594842,77.12659349928542,79.48953843466977,63.240031526005545,64.9903955775558,0.2355169068617328,234.08690100252727,0.0878438986956666,84.94039839261802,155.54924,109.44511538679608,162446.728074023,114298.2177107965,391.62026,256.8546220288403,408372.4857447209,267633.02103286714,377.07831,183.1402291654429,390007.017983583,188331.95822629143,3358.84708,1533.252487518942,3469430.854063538,1563036.6149223952,1122.21667,494.188595647029,1158885.414708524,503278.903021474,1846.2587,776.6599825819081,1891591.9334962508,780957.8542740641,0.38049,100000,0,707042,7383.942185182864,0,0.0,0,0.0,33742,351.7346533826263,0,0.0,34468,356.1835536896631,1592995,0,57163,0,0,0,0,0,79,0.8250308081124548,0,0.0,0,0.0,0,0.0,0.06031,0.1585061368235696,0.3132150555463439,0.01889,0.3248931793005222,0.6751068206994778,24.7429449290914,4.358814786714136,0.3203739111960909,0.2392181856809007,0.2198852772466539,0.2205226258763543,11.22389019094254,5.790024002321628,20.14634215026548,12148.085133192182,53.2401583402339,13.406739109070887,16.964383300821524,11.50453369344251,11.364502236898982,0.5646908859145953,0.7655417406749556,0.7095490716180372,0.5768115942028985,0.1242774566473988,0.7253012048192771,0.924812030075188,0.8619791666666666,0.7333333333333333,0.1216216216216216,0.5069324090121318,0.6781292984869326,0.6574733096085409,0.529559748427673,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086461404415,0.0045835276938365,0.0072682976347578,0.0095003911925785,0.0116677686791109,0.0139120870167433,0.0161727815960679,0.0183063791554357,0.0203883395875297,0.0226714180388301,0.0249917958815325,0.0270148119234956,0.0290734758544062,0.0310174975783681,0.0328823110505619,0.0350478159731196,0.0371846912148448,0.0391459074733096,0.0411005893787096,0.0431010238836751,0.0569525777930876,0.0701462557278262,0.0829523050463526,0.0955270658266987,0.1073504129267701,0.1231929271671654,0.1355121350984385,0.1474282551307161,0.1589889320969189,0.1698331689325385,0.1825925886039824,0.1938513813290625,0.2062112476884586,0.2161975913630347,0.2250775901917193,0.235590027700831,0.2461079716780952,0.2547347099532999,0.2630486089048245,0.270721902165821,0.2779166956078813,0.2840679076624273,0.2897692972384323,0.2950941585702291,0.3008795801341238,0.3056559105313128,0.3102269311692215,0.3155328682723153,0.3196741481356766,0.3231609931231108,0.3218915932185116,0.3208757917928945,0.3199712663915376,0.3195988033471594,0.3190588654694532,0.3170765320184975,0.3155037041727347,0.3157704799711295,0.3163764729957878,0.3168720615472289,0.3175335962469394,0.3185575938902448,0.3205227230027347,0.321231166978693,0.322008721069529,0.3240512247707613,0.325419113266956,0.3279622039360471,0.3320544122776421,0.334069313567007,0.3350655219159512,0.3386410215986126,0.3402699662542182,0.3424945558308928,0.3464209649041578,0.3433239304184297,0.3411764705882353,0.3472497032053819,0.3526725758796669,0.3531428571428571,0.0,2.142622610863298,54.56723361106474,175.06200139416373,260.7426786311025,fqhc5_100Compliance_baseline,57 -100000,95772,45253,428.8309735622102,6055,62.31466399365159,4733,48.94958860627323,1845,18.95125924069665,77.32840490063373,79.68757882738844,63.31625382636724,65.06415226416213,77.10322581519382,79.46353920181842,63.23345106839604,64.98390169532763,0.2251790854399047,224.0396255700148,0.0828027579712014,80.25056883450077,155.60644,109.50634419003802,162475.92198137243,114340.66761687968,394.9294,259.46161695091865,411926.11619262415,270477.90267606254,379.94176,183.86029766333647,393891.8890698743,189781.08436324596,3340.87816,1511.9530487542395,3457300.035500982,1547634.2550580942,1114.42116,486.6130779807113,1152645.073716744,497150.2165820769,1791.91866,740.9333690414533,1842092.114605521,749150.1541350271,0.38113,100000,0,707302,7385.269180971473,0,0.0,0,0.0,34084,355.4065906528004,0,0.0,34636,358.8209497556697,1589289,0,57050,0,0,0,0,0,68,0.7100196299544752,0,0.0,1,0.0104414651463893,0,0.0,0.06055,0.1588696770130926,0.3047068538398018,0.01845,0.3426860025220681,0.657313997477932,24.66987018890206,4.3029597674514735,0.3291781111345869,0.2421297274455947,0.2207901964927107,0.2079019649271075,11.12847548221961,5.747761447338089,19.41249535624716,12181.415167142632,53.31328967587435,13.521371858445873,17.58314872787574,11.618728278162529,10.590040811390216,0.5624339742235369,0.7652705061082025,0.696405648267009,0.5598086124401914,0.1168699186991869,0.7421937550040032,0.913793103448276,0.8507462686567164,0.744,0.1465968586387434,0.4979908151549942,0.6837837837837838,0.6427335640138409,0.5018867924528302,0.1097099621689785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786933919722,0.0046349824540051,0.0067924298420176,0.0088721315473891,0.0111594881080751,0.013394312255541,0.0155816609561102,0.0177441091191244,0.0197305199452043,0.0221303253014514,0.024622008097996,0.0269115850215107,0.0288261790657973,0.0308798384937066,0.0327437463881779,0.0347821592847175,0.0368300105583504,0.0389948456281177,0.0408916138418372,0.0429407598733544,0.0575114553216362,0.0715159755268524,0.0851385073500115,0.0979598700875542,0.1101347578257525,0.124890349718344,0.1363858079019362,0.1476657195458076,0.1585979302169107,0.1677532113829855,0.1808058071533963,0.1931582136056777,0.205402700262193,0.2160252835099461,0.2262470831682296,0.2363130904781419,0.2462642427488924,0.2547836657512043,0.2628489685630272,0.2712105239033781,0.2785094317787293,0.2847267708430804,0.2906147870979965,0.2960896536001823,0.3013638684268105,0.3076164410582637,0.3123558608242254,0.3161863036030414,0.3206627427593538,0.326178784518718,0.3254908302003746,0.3244299494970345,0.3225383672261446,0.3208220206804921,0.3200879721817695,0.3180773825935116,0.3165827554542288,0.3166455810590999,0.3176778117578719,0.3177548396314022,0.3183213536987122,0.3202919996054059,0.3212190794280346,0.3216016436275933,0.3240197962713819,0.3236175145216327,0.3229059829059829,0.3256266273488722,0.3301979159381775,0.3333861511646331,0.3363141171130276,0.3408071748878923,0.3427857589006871,0.3461480362537764,0.351808580241144,0.3553728714034057,0.3561205846528623,0.3599755948749237,0.3622547665100856,0.3594847775175644,0.0,1.818192761422007,55.14485376991298,169.9938552167477,267.90801200058445,fqhc5_100Compliance_baseline,58 -100000,95739,45078,427.1404547780946,6012,61.76166452542851,4690,48.47554288221101,1850,18.9369013672589,77.31464774318667,79.68143231835532,63.30648041847581,65.05662439393679,77.08169895182215,79.44927042116457,63.22162801602666,64.97412641655924,0.2329487913645209,232.16189719074976,0.0848524024491439,82.4979773775425,155.49314,109.3337170848528,162413.58276146607,114199.7692527108,393.21559,258.4476447493772,410189.03477161867,269427.2157776068,378.76164,184.01907808278293,392947.1688653527,190029.2287118342,3384.57487,1538.164162106979,3498395.4501300408,1570144.256159607,1135.55765,502.59448783489233,1171521.208702827,510602.7170356026,1819.447,755.0728342472696,1864257.345491388,759748.0296803021,0.3803,100000,0,706787,7382.435580066639,0,0.0,0,0.0,33882,353.35652137582383,0,0.0,34598,358.7043942385026,1589760,0,57091,0,0,0,0,0,71,0.7415995571292785,0,0.0,0,0.0,0,0.0,0.06012,0.15808572179858,0.3077178975382568,0.0185,0.3389803673210892,0.6610196326789107,24.49107345795735,4.387012462685583,0.332409381663113,0.2219616204690831,0.2215351812366737,0.22409381663113,11.10048779643462,5.703732298195409,19.663204865790878,12159.504794469096,53.35158512708572,12.578355404982185,17.80202579078343,11.462904207803913,11.508299723516206,0.5556503198294243,0.777137367915466,0.6927517639512508,0.5803657362848893,0.1084681255946717,0.7363344051446945,0.9338842975206612,0.8627450980392157,0.7935222672064778,0.1283185840707964,0.4904236796285548,0.6932153392330384,0.63249348392702,0.5138888888888888,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0042988512739402,0.0065977790860553,0.0087795955695559,0.0109975075029248,0.012867272504992,0.0150477958804745,0.0171836392967266,0.0193506838672745,0.0216104991605585,0.0235407503101514,0.0257005267427175,0.0278552105084501,0.0301291100371977,0.0323606222323152,0.0343226953654023,0.0361606726796383,0.0384140457191478,0.0406346829704493,0.0429007490441613,0.0577788450495411,0.0718539684533341,0.0847329605656557,0.0976843477895091,0.1097262642878231,0.1255064154775379,0.1379936113086204,0.1501847100531241,0.161064500614546,0.1711802575107296,0.1845166855356083,0.1966481415277281,0.2079643607925149,0.2181439684452722,0.227692104189861,0.2379535792383088,0.2468718900604935,0.2554969217238346,0.2628586374336172,0.271207458779222,0.2777764896823557,0.2842681226493573,0.2905114680258401,0.2965616561656166,0.3015585489204435,0.3066250647460721,0.3114097654979103,0.3158376796845185,0.3192697821249288,0.3228719057285213,0.3220489498257558,0.3204932568977605,0.3188894983334036,0.3175501132870564,0.3171398434134094,0.3156871152491501,0.3141409342834521,0.3147804373182632,0.3157490003075976,0.3151611406545558,0.3160123676567038,0.3175318005846567,0.3175366348224178,0.3171455340412242,0.3193987562129325,0.3206245933636955,0.321623241345852,0.3251358396934577,0.3290815432596278,0.3333994919021911,0.3348525591358643,0.3389361702127659,0.3423685877137429,0.3478694052728387,0.3461065379884568,0.3459478757586576,0.3471303277427296,0.3498662276188516,0.348103018554417,0.3448409619860357,0.0,1.9176652992537424,55.076179113522144,179.9468805787776,254.2552238307753,fqhc5_100Compliance_baseline,59 -100000,95820,45015,425.7774994781883,6125,62.77395115842205,4793,49.49906073888541,1866,19.18179920684617,77.3504688262772,79.6818706644371,63.33176974345843,65.05976050797216,77.11951146444673,79.4500758194011,63.24696041674992,64.97635682602143,0.2309573618304625,231.79484503599213,0.084809326708509,83.40368195072756,154.2068,108.55724678173344,160933.83427259445,113292.88956557446,392.84878,257.86315585108423,409494.7505739929,268620.58636097296,379.93528,184.3930088835061,392870.7159256941,189704.4595883237,3433.4841,1557.7398909918547,3552152.494260071,1594581.8315506713,1135.70706,494.9289179828997,1173150.0626174076,504418.960533186,1831.8604,764.7960339933923,1885510.791066583,777438.6977245597,0.38072,100000,0,700940,7315.17428511793,0,0.0,0,0.0,33883,353.08912544354,0,0.0,34704,358.4742225005218,1598235,0,57437,0,0,0,0,0,76,0.7931538300981007,0,0.0,1,0.0104362346065539,0,0.0,0.06125,0.1608793864257197,0.3046530612244898,0.01866,0.3325023371766905,0.6674976628233095,24.5349116437484,4.3233668666229175,0.3242228249530565,0.233674108074275,0.2180262883371583,0.2240767786355101,11.111061794646703,5.771097534576919,19.804618506887596,12269.110359988788,54.39614495275243,13.410025389772008,17.498400504909505,11.763713683135393,11.724005374935532,0.5643646985186731,0.7857142857142857,0.6911196911196911,0.6057416267942584,0.1098696461824953,0.7317262830482115,0.9107981220657276,0.8611825192802056,0.763265306122449,0.1371681415929203,0.5029940119760479,0.7089337175792507,0.6343347639484979,0.5575,0.1025943396226415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172275462447,0.0044512943228253,0.006911600527758,0.0091340438718592,0.0112293264438431,0.0137397893707604,0.0160726123094181,0.0181664079732048,0.0203161424890597,0.0224392441086747,0.0246916112096633,0.0268008420187913,0.0288150060159809,0.0310092687950566,0.0329606864403283,0.0351711026615969,0.0372647661635923,0.039298864284603,0.0412765382576977,0.0432940539640239,0.0577889971418438,0.0722320961840041,0.0863651605331545,0.0990743950998623,0.1118848702577987,0.1278016717566125,0.1392081601492917,0.1506222742261461,0.161942887643448,0.1724743902961724,0.184860386291494,0.1977493351782587,0.2091095734164702,0.2190550096728711,0.2288162627740438,0.2394558124591471,0.2492411730571798,0.2580986351310296,0.2661708770933863,0.273318673263698,0.2811881646397204,0.2879282313999322,0.2940731011797001,0.2993470316899299,0.3043050340830386,0.3087234252454003,0.3125156570970489,0.3179542704286351,0.3217553591332072,0.3257693831726324,0.3243622242597486,0.3231261111034549,0.3220757244588592,0.3201145435612634,0.319324483030312,0.3182890584306155,0.3164950087149422,0.3166784417462169,0.3175978130873056,0.3183425611716378,0.3184387869711718,0.3187184144030322,0.3194534535791258,0.3202744379385867,0.3211201193254264,0.3215114006514658,0.3227988404479054,0.3271124772598958,0.330353713467649,0.3322515534095856,0.3341639106600824,0.3368543361149255,0.338456712672522,0.3426150121065375,0.3472469749554451,0.3487469114013413,0.3535046373726623,0.3531181070784038,0.3476964769647696,0.3448669201520912,0.0,2.067201638666777,56.54979521945593,179.73504027061563,262.1979909395405,fqhc5_100Compliance_baseline,60 -100000,95703,44931,425.1695349153109,6089,62.30734668714669,4745,48.83859440142942,1870,19.0171676958925,77.30949638025908,79.66911766678882,63.31695901961641,65.05917760470977,77.07979620392004,79.44662437538396,63.2305487533633,64.97934132256405,0.2297001763390369,222.4932914048594,0.0864102662531109,79.83628214572036,154.9372,109.0334689191044,161893.77553472723,113928.9979615105,391.85201,257.03458774186083,408611.6527172607,267741.0193430308,376.67915,183.47611765520568,389550.89182157296,188576.8555832268,3405.22102,1544.9171325543225,3506538.405274652,1562865.0702131705,1138.98334,496.194165166737,1174381.524090154,502803.36896224914,1831.12156,765.8031266227538,1864842.188855104,758684.08571534,0.37987,100000,0,704260,7358.807978851238,0,0.0,0,0.0,33700,351.3369486849942,0,0.0,34416,355.5060969875552,1594928,0,57256,0,0,0,0,0,88,0.9090624118366196,0,0.0,1,0.0104489932395013,0,0.0,0.06089,0.1602916787321978,0.3071111841024799,0.0187,0.341034103410341,0.658965896589659,24.544728902650988,4.379487364391753,0.325395152792413,0.2250790305584826,0.2290832455216017,0.2204425711275026,11.336936739160263,5.945399568892843,19.83974396220752,12114.66542565446,53.63539640461821,12.756541213289111,17.416894338142395,12.021942909110548,11.440017944076164,0.5597471022128556,0.7659176029962547,0.6949481865284974,0.594296228150874,0.1137667304015296,0.7307692307692307,0.8790931989924433,0.8721804511278195,0.7511111111111111,0.1343283582089552,0.5004257734885041,0.698956780923994,0.6331877729257642,0.5533642691415314,0.1088757396449704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483061747399,0.0044805774065363,0.0068785001217433,0.0092934915088973,0.0115996543485996,0.013639093305648,0.0157672119451663,0.0179550256719099,0.0200523281959036,0.0220036638658902,0.0246722496130546,0.026839711272884,0.0293576283560756,0.0314002945386762,0.0335289446272212,0.0356153909737146,0.0375813780183611,0.0396710157854342,0.0414622484616663,0.0434311550041149,0.0579819119827892,0.0712730546192978,0.0848298577602484,0.0973003670322967,0.1095561016252017,0.1248360482335519,0.1372540696563872,0.1488768231661875,0.1591312151449755,0.1690367415224245,0.1819376804723527,0.1935986833557105,0.2048516640184576,0.2151495583841346,0.2254409724516086,0.235146100297078,0.2444593386952636,0.252771268925739,0.2612355721166954,0.2685451606616762,0.2752312697548946,0.2819318833288484,0.28750059205229,0.2927417323401345,0.2980872059109469,0.3034051527447183,0.3087232365197151,0.3134579153724731,0.3180245441704356,0.3219561827743862,0.3209643492799741,0.3199895342752485,0.3191024230628191,0.3185359718989867,0.3179154644694964,0.3160356381592062,0.3139352197165664,0.3141189046953375,0.3150206360351412,0.3156527658354829,0.3162118478424297,0.3164152441445018,0.3190769424770391,0.3200439737952077,0.320788443886178,0.321914410297919,0.3232464929859719,0.3282243343614275,0.3318930691678083,0.333082438695876,0.3364511442063204,0.3382976468094127,0.3428481609556743,0.3471049227725785,0.3496470588235294,0.3566863905325443,0.3606004901960784,0.3571282051282051,0.3587617468214483,0.3643351268255188,0.0,2.811896909299765,52.68323037564648,180.2418524083632,264.2975261122366,fqhc5_100Compliance_baseline,61 -100000,95745,45246,428.1372395425348,6043,62.00845997180009,4772,49.37072431980782,1876,19.280380176510523,77.40440741590693,79.76235852663288,63.3594678928421,65.09954567015453,77.17333184401706,79.530996357436,63.273946437284366,65.01625256850747,0.2310755718898747,231.3621691968848,0.0855214555577319,83.29310164705817,155.05644,109.0623093543538,161947.29750900832,113909.1434062915,393.83956,258.0971473518777,410852.27427019685,269082.39901700855,376.90328,182.93960374068425,391109.5305237872,189106.84556141103,3436.19998,1549.7689373215571,3556219.5937124654,1586344.772969731,1132.00901,496.8633081133384,1171669.027103243,508296.8385955802,1843.96176,771.8452316881143,1896042.4460807357,779596.4803763813,0.38159,100000,0,704802,7361.240795864013,0,0.0,0,0.0,34034,354.9741500861664,0,0.0,34437,357.0943652410047,1598278,0,57271,0,0,0,0,0,65,0.678886625933469,0,0.0,0,0.0,0,0.0,0.06043,0.1583636887759113,0.3104418335263941,0.01876,0.3235852039203288,0.6764147960796711,24.60771175457462,4.473163740348656,0.3143336127409891,0.2351215423302598,0.2206621961441743,0.2298826487845767,10.990953656495044,5.524352864442008,19.942466482783445,12181.484691374326,53.67313026840059,13.365387234368626,16.76926257745113,11.632733023279837,11.905747433301004,0.5496647108130763,0.7780748663101604,0.6946666666666667,0.5584045584045584,0.1093892433910665,0.7185725871857259,0.8925,0.841688654353562,0.7530864197530864,0.1279620853080568,0.4908166148629556,0.7146814404432132,0.6449598572702944,0.5,0.1049661399548532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024805856207032,0.0045300228021281,0.0069490940816036,0.0092723302696389,0.011387552997875,0.0137418566775244,0.016,0.0182443394589961,0.0204757233938205,0.0223995906881555,0.0245769747158479,0.0266644771278724,0.0288061189871595,0.030714403427818,0.032904444008791,0.0350645054581541,0.0370232288398007,0.0392435527708043,0.0414977863690216,0.0436417419200283,0.0583641337259078,0.0719136868322188,0.0847109171771419,0.0976355933094334,0.1100582859913361,0.1254454136928363,0.1373453843379373,0.1491622133747791,0.1595124139994017,0.1696405593205799,0.1820658611703388,0.194681265417406,0.2065249306726116,0.2165713723475199,0.2264867005478186,0.2373391793440953,0.2466141591735647,0.2556719807523666,0.263118500289191,0.2710582040863046,0.277923518738949,0.2848319985056156,0.2913380248429604,0.2967189217607417,0.3021729124778954,0.3071818315882613,0.3112737445517103,0.3157674294635038,0.3196311650071675,0.3233092597708407,0.3220204785485191,0.3207288293727018,0.3193461408830468,0.3186172128195895,0.3179449215279834,0.3163857334799071,0.3143430259188476,0.3148690431396928,0.3156774973192858,0.316283702070143,0.3169943190312453,0.3176270784786129,0.3190381599581808,0.3205914494078815,0.3223245550918597,0.3223405086025144,0.3244140514159241,0.3276947655295555,0.3300899513492702,0.3343492716909436,0.3364011424944462,0.341666225305863,0.3472439466933616,0.3495013599274705,0.3510371128267138,0.3568080618701664,0.3620480097234883,0.3727727727727727,0.3757575757575757,0.3759310074480596,0.0,1.8091401311998871,54.15337625198476,179.9127388180565,263.53975172637365,fqhc5_100Compliance_baseline,62 -100000,95762,44910,425.0433366053341,6080,62.53002234706877,4780,49.476827969340654,1919,19.736429899124914,77.33232137485312,79.69866688690666,63.31916690730778,65.07136552352254,77.09406718859123,79.45837200961613,63.23248823188414,64.98590576336456,0.2382541862618978,240.2948772905376,0.0866786754236415,85.45976015798828,156.12828,109.81936140378608,163036.67425492368,114678.6520282202,390.09967,256.155161382396,406904.8996470416,267036.65872010926,374.71183,182.2980152126724,388772.24786449736,188370.5550786868,3436.26819,1556.534329852959,3557713.205655688,1595226.860765401,1144.1404,501.3395827939067,1186096.6249660617,515262.4937289082,1882.59028,778.3809044345534,1937766.629769637,789156.9055975671,0.37938,100000,0,709674,7410.7579206783485,0,0.0,0,0.0,33620,350.598358430275,0,0.0,34284,355.4437041832877,1592980,0,57118,0,0,0,0,0,80,0.8354044401745995,0,0.0,1,0.0104425555021824,0,0.0,0.0608,0.1602614792556276,0.315625,0.01919,0.3231879510511453,0.6768120489488547,24.70354255646159,4.383583081044446,0.3209205020920502,0.2255230125523012,0.2297071129707113,0.2238493723849372,11.042978918327822,5.561444430518471,20.430059382010008,12138.30041509268,54.220437851977394,12.9131799149087,17.404104029041473,12.293600895564923,11.609553012462309,0.5602510460251046,0.8042671614100185,0.6981747066492829,0.569216757741348,0.1074766355140186,0.7256778309409888,0.9196891191709844,0.8769633507853403,0.6726618705035972,0.1586538461538461,0.5014180374361883,0.7398843930635838,0.6388888888888888,0.5341463414634147,0.0951276102088167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0047571230056091,0.0071582324750223,0.0091979022684771,0.0114043297794416,0.013895538961502,0.0161336379211878,0.0184892137745153,0.0209702980420223,0.0230651105651105,0.0250238346643156,0.0272775804365234,0.0292445166531275,0.0313198413924506,0.0330561459257577,0.0350786530789424,0.0370999306253041,0.0389563232700487,0.04094484915876,0.0430435642945667,0.0577575498188878,0.0712185731175258,0.0845744011410832,0.0973609504783934,0.1092801113360324,0.1240785591149937,0.1359735203318445,0.1474000127711202,0.1582802955875443,0.1687161618868936,0.1803017413122839,0.1925453070056803,0.2040854063108433,0.2141505823172398,0.2239605681530624,0.2345497221053563,0.2437027286316682,0.2525393415147186,0.2611147035133694,0.2690053123282652,0.2752501590606744,0.2817145196187357,0.2877642521678437,0.2935911721361561,0.2990454446090695,0.3052040074430985,0.3097925373507845,0.3140553669298948,0.3184354648678742,0.3226529831550344,0.3219362481154426,0.321122380172568,0.3206489592428809,0.3191246569406327,0.3184930998113404,0.3174238596168864,0.3152789005658852,0.3155251366389285,0.3165168136761469,0.3180324941974647,0.3200540428965491,0.3215254539334297,0.3220666344760985,0.3232293791897406,0.3249885440030871,0.3274858380974756,0.3293617991619872,0.3335541256623769,0.338379935366025,0.3427512552801466,0.3438070047427946,0.347496125273903,0.3505776310778215,0.3532787512434004,0.3557034398725279,0.361441526321988,0.3657428441617447,0.3609550561797753,0.3674863387978142,0.3659378596087457,0.0,1.6061067329053114,55.64471307207423,181.3524734832884,263.6523211921107,fqhc5_100Compliance_baseline,63 -100000,95737,45098,426.3346459571535,6053,62.149430209845725,4751,49.165944201301485,1911,19.699802584162864,77.41699606751023,79.77108203173856,63.36600846061516,65.10074664274285,77.17951661899136,79.53079767420299,63.27922480043545,65.01468760871701,0.2374794485188687,240.28435753557176,0.0867836601797122,86.05903402583692,156.02576,109.70070847498368,162972.85271107304,114585.03512224498,393.62437,258.4514796009962,410678.0868420778,269486.471480197,378.18551,183.2593958404906,392167.3543144239,189228.79485974816,3438.09795,1562.0326429240167,3561377.899871523,1601810.3968413642,1168.55655,516.4880941828451,1211359.1088085065,530305.1333621122,1879.51422,786.3984931957654,1938636.8906483387,800537.9201479857,0.38108,100000,0,709208,7407.856941412411,0,0.0,0,0.0,33903,353.6354805352163,0,0.0,34544,357.8867104672175,1592101,0,57182,0,0,0,0,0,86,0.8982942853860054,0,0.0,1,0.0104452823882093,0,0.0,0.06053,0.1588380392568489,0.3157112175780605,0.01911,0.3369479805123369,0.663052019487663,24.62224415395413,4.450507121454858,0.3247737318459271,0.2239528520311513,0.2191117659440118,0.2321616501789097,11.421290136104622,5.954140993320782,20.4582830905367,12197.711767760542,53.88593920742292,12.714607446579867,17.478723652363676,11.491547537410655,12.20106057106872,0.561355504104399,0.7894736842105263,0.6843810758263124,0.5975024015369836,0.1350861287398005,0.7234878240377062,0.8952879581151832,0.8581560283687943,0.7725321888412017,0.1531914893617021,0.5020126509488212,0.7302052785923754,0.61875,0.5470297029702971,0.130184331797235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023988339844936,0.0043461082576056,0.0066232554365465,0.0090273053138232,0.0114385065885797,0.0137726745251328,0.0160639295470298,0.0184119208001633,0.0206123408343041,0.0225480065884374,0.0246854121408369,0.0267965270223116,0.0292457776087336,0.0313272367770637,0.0334241148799207,0.0357331073749909,0.0377678848742105,0.0397017185409514,0.0419554982800012,0.0439710401583415,0.0586699800570098,0.0715018100399673,0.0850659840966787,0.097463509022841,0.1098128130767202,0.1252498334443704,0.1370752195494463,0.148716529734792,0.1595317439972656,0.1699848830851371,0.1829730428042373,0.1946304368989799,0.2059635320452915,0.2164730036694041,0.2257079461323843,0.2363286434828776,0.2452024873515055,0.2537784719803126,0.2618464607989842,0.2695568599183057,0.2761119844645829,0.28261326728509,0.2888754920387247,0.2962896469180132,0.3019639239661802,0.3070521028267507,0.3111588787382681,0.3160121997712543,0.320904495326257,0.3249940684891783,0.3238252777105355,0.3228758708826318,0.3213214904069481,0.3196397854902357,0.3200784593437946,0.3180036742192284,0.3164514956623421,0.317316825521601,0.3181237327699306,0.3192905050792577,0.3206056984950894,0.3223921128756125,0.3226345354689164,0.3242106668446699,0.3241864808562603,0.3251441333818106,0.3284073181109062,0.3327085285848172,0.336217121328403,0.3409162592651001,0.3426134825376771,0.3451294762934444,0.3483959555611035,0.3524279210925645,0.3526237439523632,0.3521718822979915,0.3559040868647263,0.355979340484704,0.3556992724333064,0.3553903345724907,0.0,1.776247822944597,56.321856715810455,179.45820520900193,257.70251588865415,fqhc5_100Compliance_baseline,64 -100000,95695,45143,427.7966455927687,6020,61.706463242593664,4776,49.31292126025394,1874,19.217304979361515,77.3508434030137,79.74077638844727,63.31502979323547,65.0824795980355,77.11512861297575,79.50642583586412,63.22688685616428,64.99729169434869,0.2357147900379459,234.3505525831517,0.0881429370711899,85.1879036868155,154.98494,109.0945340393911,161956.96744866503,114002.11154124158,393.67063,258.19875123138485,410798.359370918,269232.33693650126,377.77844,183.5059825231704,390500.3291708031,188508.50175611625,3440.83952,1552.087329587912,3553465.311667276,1579948.9239897022,1141.28838,503.0131174054124,1173954.0728355714,507170.08615194017,1844.56848,780.6690383657399,1892705.4496055176,786004.9174813309,0.38082,100000,0,704477,7361.680338575684,0,0.0,0,0.0,33918,353.8115889022415,0,0.0,34485,356.16280892418627,1592859,0,57112,0,0,0,0,0,75,0.7837400073149068,0,0.0,0,0.0,0,0.0,0.0602,0.1580799327766398,0.3112956810631229,0.01874,0.3384126984126984,0.6615873015873016,24.685961309266407,4.374377553447694,0.3086264656616415,0.2384840871021775,0.2229899497487437,0.2298994974874371,10.935060275333054,5.48940448669922,20.09369958342545,12195.880279968906,53.70241704464639,13.396860424427327,16.52230380529294,11.806582845173512,11.976669969752605,0.5458542713567839,0.7796312554872695,0.6811397557666214,0.5690140845070423,0.099271402550091,0.7160699417152373,0.9018087855297158,0.8910614525139665,0.6848739495798319,0.1330275229357798,0.4886713286713287,0.7167553191489362,0.6137992831541219,0.535671100362757,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0046140897060165,0.0066998954410256,0.0090251239938206,0.0110276913060286,0.0131415415333835,0.0152607901743361,0.0177706967338684,0.0199936592998639,0.0222140289427597,0.0246131126357567,0.0268998880455213,0.0289752214027833,0.0310635798844002,0.0329937975375914,0.0348994676177185,0.0369852369852369,0.0389014593236875,0.0410035573862572,0.0430703802535023,0.0572690905672595,0.0719857599078582,0.0853687978251057,0.0973952196599899,0.1098335407919998,0.1255025178790571,0.138293016887266,0.1497060828079741,0.1595976655193791,0.1698698344225176,0.1825815144165993,0.1946823137131783,0.2063029142272618,0.2169616180188462,0.2262727913326874,0.2368263473053892,0.2464408937125247,0.2551852268888638,0.2635913397096576,0.2703985690042654,0.2771201556672612,0.2836443288704595,0.2904143358300938,0.2958723302135829,0.3014334869356937,0.3062822061687911,0.3110226860367631,0.3153348006972098,0.3202748874048765,0.3243671303751023,0.3237347059774699,0.3228482972136223,0.3212998423068258,0.3200901174125904,0.3199946605757679,0.3188935441450808,0.317653009610521,0.3184893913328418,0.318654882959121,0.3191561391942697,0.3203373349788698,0.321890694239291,0.322976833413266,0.32427681352915,0.3249395600450008,0.325247126585891,0.3256385623869801,0.3297159073190507,0.3330780210980747,0.335947609897651,0.3385320688570273,0.3414826498422713,0.3460076045627376,0.3483069464434512,0.3515032312447316,0.3532344213649852,0.3611999390893863,0.3589385474860335,0.3639077340569878,0.3691950464396284,0.0,2.266730904957132,52.48625082553266,182.81797696558647,265.11338141943537,fqhc5_100Compliance_baseline,65 -100000,95727,45080,427.8521211361476,5945,61.0694997231711,4664,48.178674773052535,1808,18.552759409570967,77.26691653433518,79.62636942741868,63.2951211478972,65.0388625397368,77.04855352994285,79.40878369497875,63.21548259891966,64.9614312651432,0.2183630043923301,217.58573243992885,0.0796385489775417,77.431274593593,155.518,109.46226546705796,162459.9120415348,114348.3713759524,392.40909,257.8993001919494,409389.106521671,268875.1555903239,381.81542,185.5233107125436,394892.5486017529,190742.3274677512,3325.63826,1495.190558731631,3439873.83914674,1527909.5685265926,1091.64698,473.58558159196,1128290.973288623,482774.1218604376,1767.432,723.8154481883473,1816478.2140879792,732057.6997681168,0.37973,100000,0,706900,7384.541456433399,0,0.0,0,0.0,33882,353.3903705328695,0,0.0,34832,359.96113949042586,1586905,0,57004,0,0,0,0,0,59,0.6163360389440805,0,0.0,1,0.010446373541425,0,0.0,0.05945,0.1565586074315961,0.304121110176619,0.01808,0.3346715914565601,0.6653284085434399,24.673885281469,4.299415696221312,0.309819897084048,0.2476415094339622,0.2223413379073756,0.220197255574614,11.348460264616664,6.051472278825166,19.13970752934935,12123.514884808876,52.94508287193128,13.905186005850805,16.371680439993806,11.545413406041565,11.122803020045115,0.5617495711835334,0.7887445887445887,0.6892733564013841,0.5814850530376084,0.107108081791626,0.7470542026708562,0.8976034858387799,0.8677248677248677,0.7590361445783133,0.1176470588235294,0.4921851961073429,0.7169540229885057,0.6260543580131209,0.5253807106598984,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0042482434172505,0.0065348865527458,0.0088377810058816,0.0108923377336614,0.0128699866616435,0.0152709108517253,0.0174967589142618,0.0197601790989849,0.021792089747789,0.0238537000399782,0.0259642926809235,0.0278986066121651,0.0300758075148319,0.0323329447327425,0.0344210950663097,0.0362753321528058,0.0382624212808781,0.0401438609621221,0.0421858720566784,0.0574796654589498,0.0715272544586787,0.0847542996253895,0.097625385335676,0.1092497257152502,0.1238109346397621,0.1365382982336956,0.1473178628100405,0.1582734582157215,0.1686756040228836,0.1818563990902329,0.1940652626105044,0.2052652781255784,0.2157684980401603,0.225964239680074,0.2361485624244038,0.2453608477910928,0.2541311375694155,0.262252814029827,0.2701441899915182,0.2768353082762451,0.2838954291197603,0.2902935606060606,0.2950731239510908,0.3002916160388821,0.3054093044475407,0.3100899501390594,0.3150749481030552,0.3190358258885157,0.3239783097473879,0.323017094709552,0.3214063944583201,0.3196796564923233,0.3190707099949337,0.3177041469441219,0.3158427845731211,0.3137980311209908,0.3137106338120964,0.3148297314435551,0.3155115629698575,0.3167132854005143,0.3182736491839645,0.319756071916728,0.3197076036504697,0.3208412817231304,0.3225519675774611,0.3233610077297452,0.3279580092329096,0.3326949675497393,0.335665460394049,0.3378701489792164,0.3373054213633923,0.3416397184706106,0.3420750821928282,0.3444339622641509,0.3490878938640133,0.355875152998776,0.3588187702265372,0.3615850302696753,0.3632130384167636,0.0,2.1091117803809625,56.19737451631958,168.3870012758195,258.81739455754604,fqhc5_100Compliance_baseline,66 -100000,95707,44889,426.2593122760091,6106,62.73313341761836,4809,49.693334865788295,1895,19.444763705894037,77.288290147924,79.65716566455029,63.294707477804174,65.04383369943413,77.05565990537418,79.42555964462049,63.209003377172685,64.96082739845319,0.232630242549817,231.60601992979932,0.0857041006314887,83.00630098094075,155.55144,109.46404347895606,162528.57157783653,114373.89478194495,395.31899,259.78677118669526,412448.1594867669,270836.5544700966,382.95255,186.74550330775216,396646.7656493256,192430.68422397683,3403.94733,1556.4357605743933,3518245.4365929347,1587902.6973926343,1124.00249,499.7230876528434,1156439.831987211,504195.8880441198,1852.39146,774.8450643187721,1902348.93999394,780300.8169863756,0.37826,100000,0,707052,7387.662344447115,0,0.0,0,0.0,34096,355.6897614594544,0,0.0,35039,362.752985675029,1584177,0,56958,0,0,0,0,0,77,0.7836417398936337,0,0.0,1,0.0104485565319151,0,0.0,0.06106,0.1614233595939301,0.3103504749426793,0.01895,0.3396611233134609,0.660338876686539,24.1904014175047,4.409179943089633,0.330214181742566,0.238927011852776,0.2164691203992514,0.2143896860054065,11.181646476589226,5.731429431387012,20.17523723749925,12084.683762445327,54.71399120680242,13.84330035175538,17.94750115740899,11.553390241452956,11.369799456185095,0.5658140985651903,0.7798085291557877,0.698992443324937,0.579250720461095,0.1086323957322987,0.7376923076923076,0.918141592920354,0.8713910761154856,0.7349397590361446,0.1330275229357798,0.5021373610715304,0.6901004304160688,0.6445733222866611,0.5303030303030303,0.1020910209102091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019850312439866,0.004004420068734,0.0062203190323497,0.0084012271683699,0.0104548043283703,0.0127279577228156,0.0149160906180542,0.0171285663247078,0.019360312381809,0.021593409404902,0.023910058007256,0.0260002874094147,0.028161339077328,0.0301232737046992,0.0320368020959041,0.0339596122444761,0.0358973297025294,0.0376504773765047,0.0397624446154806,0.0418959479739869,0.0566370757180156,0.0704077893524577,0.0840933180811653,0.0965705205779288,0.1088170408604874,0.1246294571017193,0.1364881508536481,0.1482002279675732,0.1584287562412462,0.168819316949571,0.1816113519225378,0.1930797647033333,0.2040271818439222,0.2146305682975159,0.223930569628618,0.2341147884745537,0.2442084078711985,0.2531234495512156,0.261425564594118,0.2694207092980522,0.2768775735080902,0.2836118440340076,0.2892941469607622,0.2943197654860877,0.2998843085916093,0.304912402085547,0.3099647210957803,0.3140076282321125,0.3182095678491173,0.3216710113667941,0.3204106133570744,0.3190139193532811,0.3187529149059457,0.3177370961429752,0.3174106211050481,0.3163041309119936,0.3143110913733762,0.3142528357718231,0.3146573115427398,0.3158195929754283,0.3176185648304607,0.3191060126582278,0.3195761644985312,0.3212571709189937,0.3231776014574394,0.3241510021809118,0.326494074852937,0.3291767440399535,0.3315308988764044,0.3325248508946322,0.3347188599095601,0.3359266759032292,0.3380946388119809,0.3395150870259177,0.3411753766040543,0.3464021598779199,0.3458339634054135,0.3502802241793434,0.3448831587429492,0.3400749063670412,0.0,2.1066767632581658,57.08558137523849,181.97326674057825,261.00761808438205,fqhc5_100Compliance_baseline,67 -100000,95823,45499,431.2638928023544,5966,61.10224058942008,4654,47.932124855201785,1870,19.076839589660104,77.36488025655099,79.6808839107357,63.35773544642036,65.07181718691922,77.12958014351314,79.44980570738238,63.270231925241696,64.98914754006091,0.2353001130378516,231.07820335332008,0.087503521178661,82.66964685830658,155.23002,109.2469348177821,161996.61876584953,114009.09470354934,393.79978,258.64494916644924,410307.40010227193,269261.0638014352,380.30329,184.35762411467132,393443.7556745249,189640.21930763268,3326.26131,1513.556803516753,3427338.2173382174,1535616.4944916696,1106.33662,492.0849966475516,1137183.755465807,496163.9914589745,1834.20184,769.8293957119749,1873290.212162007,767083.7474972381,0.38343,100000,0,705591,7363.482671174979,0,0.0,0,0.0,33966,353.76684094632816,0,0.0,34733,359.12046168456425,1595975,0,57272,0,0,0,0,0,65,0.6574621959237344,0,0.0,1,0.0104359078718053,0,0.0,0.05966,0.155595545471142,0.3134428427757291,0.0187,0.3386607000159821,0.6613392999840179,24.543713300627704,4.379550723210995,0.327245380318006,0.2337773957885689,0.2110012892135797,0.2279759346798452,11.058210904625792,5.597586283562381,19.84793714406549,12224.472550813554,53.08922246934949,13.205571229960375,17.34874456755779,10.876149105798206,11.658757566033106,0.5567253975075204,0.7794117647058824,0.6966513460275772,0.575356415478615,0.1102733270499528,0.7203252032520325,0.8917525773195877,0.8651960784313726,0.7345971563981043,0.1434977578475336,0.4979556074766355,0.7171428571428572,0.6349775784753363,0.5317769130998703,0.1014319809069212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0042580802141206,0.00638241740401,0.008725063990574,0.0108906763201513,0.0132061255243758,0.0153214132805969,0.017416338281234,0.0194839712136081,0.0216285377962024,0.0237468100152709,0.0258102255700827,0.0277911960286545,0.0301876305849175,0.0324599018678101,0.0346967006648222,0.0366570128258171,0.0389170370830872,0.0408074263285776,0.042772124768504,0.0580571810036403,0.0717585817619266,0.0846995966685873,0.0977904729900025,0.1104826903430334,0.1262579861661122,0.1390598679958894,0.1506479424240169,0.1611440641802509,0.171045725731301,0.1839659178931061,0.1966227757237681,0.2080291177748804,0.2178718477987833,0.2270894005165118,0.2371974212382921,0.2476994719368998,0.2564770621595822,0.2647248677847865,0.2726763397706354,0.279941796681025,0.2865482055712517,0.2927705433318365,0.2987547400026317,0.3030516374936272,0.3081354555190368,0.3124796880077998,0.3172122921351169,0.3218638919408001,0.3258992048027805,0.3235313881758436,0.3226435834020335,0.3215246194787457,0.3204802219075963,0.3195373591413195,0.3187013544156401,0.3166513426968073,0.3166376163383431,0.3175070627514768,0.3182899987473829,0.3196582483345252,0.3199904693828925,0.320459180455396,0.3210743616209666,0.3219303310238645,0.3233222001878718,0.3240266393442623,0.3278394615166861,0.334141712357655,0.3368299298021697,0.3375539040278925,0.3432532248568217,0.3455784045330107,0.3468884781269254,0.3508287292817679,0.3522876597778043,0.3582458307597282,0.3555464424851343,0.3569648296870673,0.3515503875968992,0.0,2.458845859877471,53.68742284343803,183.20811803044109,249.5137987630993,fqhc5_100Compliance_baseline,68 -100000,95630,44875,424.8562166684095,6025,61.58109379901705,4727,48.78176304506954,1833,18.738889469831644,77.2563444549925,79.66574852595944,63.27473565930678,65.05524623071207,77.02701603203049,79.44136754170567,63.18838342945863,64.97398490227151,0.2293284229620127,224.38098425377007,0.0863522298481527,81.26132844056144,155.3233,109.279326879016,162421.1021645927,114273.05958278368,393.11536,258.3933236912619,410435.375928056,269556.9843497255,375.53495,183.1156185928938,388876.01171180594,188486.26774992247,3371.3476,1540.6002125025996,3481448.154344871,1567045.15747674,1129.72673,498.7439787646306,1164289.417546795,504598.9813722328,1795.42604,759.7186333015168,1837252.6822126948,758377.7623042241,0.38059,100000,0,706015,7382.777371117851,0,0.0,0,0.0,33910,353.89522116490645,0,0.0,34363,355.50559447872007,1588110,0,57048,0,0,0,0,0,82,0.8470145351877026,0,0.0,0,0.0,0,0.0,0.06025,0.1583068393809611,0.3042323651452282,0.01833,0.3347029077117572,0.6652970922882427,24.51616771448492,4.34792395851297,0.3166913475777448,0.2409562090120584,0.2214935477046752,0.2208588957055214,11.199807977447968,5.759941917457788,19.584296496938425,12250.674575880568,53.57379769674811,13.621696140635803,16.891908931627434,11.57346077732462,11.486731847160256,0.5648402792468796,0.7936786654960492,0.6887107548430194,0.5826170009551098,0.1197318007662835,0.7283558379666402,0.9238329238329238,0.8417085427135679,0.7575757575757576,0.1390134529147982,0.5054786620530565,0.7213114754098361,0.6333030027297544,0.5330882352941176,0.1144945188794153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025117739403453,0.0049461297548219,0.0072763068429758,0.0095699612934686,0.0119035507172652,0.0140989986043621,0.0163314019911865,0.0185132208100044,0.0207434077286582,0.0227016616468949,0.0250061566245279,0.0269456462536097,0.0293200185309105,0.0315493190089802,0.0338102370745312,0.0359164329839302,0.0379934483330568,0.0398495771955704,0.0416246084685265,0.0435190787140383,0.0579320868301961,0.0716897321194724,0.0853150230453452,0.0978672786222577,0.1101648409632959,0.1257765125459028,0.137748386548913,0.1499169258296766,0.1607265030360044,0.170292693921798,0.1836688483227844,0.1954816339798461,0.2069389978213507,0.2177057875875371,0.2275825557540864,0.2380968239695385,0.2474691544458986,0.256900690914419,0.2658452305174138,0.2731090026731526,0.2797833725690297,0.2858399296394019,0.2927057874380087,0.2976669348350764,0.3025011568154697,0.3070204696784395,0.3126771515288333,0.3172725070444084,0.3210925841821839,0.3254120352625527,0.3241580310880829,0.3230314987789566,0.3228314181119168,0.3217010413947147,0.3207113657386686,0.3176376450312375,0.3161080222398729,0.3162688804335293,0.3165535606906623,0.316593377007987,0.3180122819575782,0.3192588032015253,0.3196693728179026,0.3215836354684213,0.3237439514672958,0.3260047466291109,0.327119079567191,0.3292728989612842,0.3336249431360885,0.3373551168954468,0.341522114249387,0.3436174724342663,0.3492563650113436,0.3520721266762633,0.3564622074197428,0.3602535508862542,0.3656592993534807,0.3691449073151285,0.3677697067527576,0.367816091954023,0.0,2.457065758853138,54.63334167291542,178.84959798695894,258.3740000021747,fqhc5_100Compliance_baseline,69 -100000,95696,44474,421.8985119545227,5997,61.45502424343756,4667,48.21518140779134,1857,18.9976592543053,77.32722884548278,79.70386882946762,63.32110870231941,65.07579695895599,77.08549683505782,79.46480348830706,63.22909292182019,64.98749102977642,0.241732010424954,239.06534116056832,0.0920157804992243,88.30592917956892,156.03214,109.67803577586236,163049.57364989133,114610.68488906974,391.86303,257.48377965436254,408947.6258150811,268525.66019889584,366.90315,178.28483394792352,380731.8487711085,184133.3413095372,3321.93567,1542.855939189896,3431950.844340411,1572992.1711059147,1120.87358,499.1658436244591,1158652.054422337,509153.78403404687,1820.09424,784.1903580598087,1863628.824611269,786299.8104418281,0.37671,100000,0,709237,7411.344256813242,0,0.0,0,0.0,33936,354.04823608092295,0,0.0,33574,348.1023240260826,1590131,0,57155,0,0,0,0,0,66,0.6896839993312155,0,0.0,0,0.0,0,0.0,0.05997,0.1591940750179183,0.3096548274137068,0.01857,0.3358304112209117,0.6641695887790883,24.114645518174804,4.385357690098019,0.3113349046496679,0.2356974501821298,0.2350546389543604,0.2179130062138418,11.33608161571521,5.799717933359723,20.0069864427542,12066.759190328772,53.25532476147693,13.246400129067869,16.515708306476697,12.114935937135773,11.378280388796586,0.5631026355260339,0.7854545454545454,0.6896077081899519,0.5970829535095715,0.1052114060963618,0.710955710955711,0.8825,0.8567839195979899,0.7651515151515151,0.0844444444444444,0.5068047337278107,0.73,0.6265402843601896,0.5438175270108043,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0046011492738494,0.0067667647357208,0.0092426135267172,0.0114601234480023,0.0137049066824147,0.0160096261701303,0.0185266512107687,0.0204732783834086,0.0223960840134765,0.0243564762588452,0.0263749807425666,0.0285634938594145,0.0304788204140091,0.0324055440312909,0.0343950361944157,0.0361760318249627,0.0384435700715301,0.0401601830663615,0.0420280186791194,0.0569384237739593,0.0709732790471306,0.0836698941538074,0.0967657085139514,0.1078774709394316,0.1236894169426253,0.1350789118967512,0.1472066622649145,0.1580117109031072,0.1681829885846708,0.1808711203042349,0.1927723887060453,0.2036704633225634,0.214509971229475,0.2238771466314399,0.2337334175615919,0.243404378844887,0.2522113934592271,0.2594661489378612,0.2673076702689694,0.2748983680985858,0.2817607117771014,0.2885075439967787,0.2940873172895907,0.2992801906522056,0.3039374159396863,0.3092526467455992,0.3140072616090197,0.3190893533163926,0.3220688288526322,0.3210252951096121,0.3206479071112764,0.3193968374874811,0.3172533429707264,0.3165538278401905,0.3149470838517426,0.3130660998397868,0.3133850773699151,0.314864772572053,0.3148973335234564,0.3154398832466414,0.3170789489270132,0.3174569957728205,0.3185241468701812,0.3191243407268261,0.3204689662375643,0.3199235356215584,0.322227465785748,0.3250927936129981,0.3279606177299615,0.3308511124309014,0.3336172931530188,0.3384392334846192,0.3393703194253401,0.3403007661023361,0.3452113176275601,0.3513761467889908,0.3588187702265372,0.3629120879120879,0.3596323247797778,0.0,2.10959857401941,56.37745813805887,178.44097218351152,248.2747200765185,fqhc5_100Compliance_baseline,70 -100000,95784,45093,427.55575043848654,6070,62.15025473983128,4728,48.81817422534034,1927,19.77365739580723,77.38146625236273,79.70421729503339,63.35451413110488,65.06771457300866,77.14221808017766,79.4663850480613,63.26692817946222,64.9830718784754,0.2392481721850714,237.83224697208996,0.0875859516426587,84.64269453325812,154.66242,108.88452410840704,161469.99498872465,113677.15287355616,395.44237,259.26978804935925,412264.16729307605,270102.0226285453,374.9702,181.9542596516456,388347.57370750856,187546.17935405183,3398.93111,1542.1895699321833,3511270.306105404,1573253.0324778317,1127.25366,491.5044276154629,1162368.0886160529,498868.4567505886,1887.07246,782.921685025529,1937727.92950806,788891.8447281568,0.38176,100000,0,703011,7339.54522676021,0,0.0,0,0.0,34118,355.58130794287143,0,0.0,34355,355.5917480998914,1594910,0,57260,0,0,0,0,0,59,0.6055291071577716,0,0.0,2,0.0208803140399231,0,0.0,0.0607,0.1590004191114836,0.3174629324546952,0.01927,0.3272527126906746,0.6727472873093253,24.57339682464769,4.397404480147025,0.3185279187817258,0.229906937394247,0.2231387478849407,0.2284263959390862,11.071103073963428,5.597094666696083,20.434289628296327,12195.06463566148,53.618112420598194,13.058471144633923,17.00878686187291,11.833659061001535,11.717195353089812,0.5537225042301185,0.7856485740570377,0.6839309428950863,0.571563981042654,0.1212962962962962,0.721875,0.9047619047619048,0.8525798525798526,0.72,0.083743842364532,0.4912993039443155,0.7106446776611695,0.62147406733394,0.5254658385093167,0.1299885974914481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186116679829,0.0046211844825489,0.007121047666386,0.0093427573320334,0.0115712731450883,0.0138037746605045,0.015737116764514,0.0178471208889886,0.0202901512055578,0.0223133900802095,0.0245051837888784,0.0267985390076743,0.0288259958071278,0.0307999547059489,0.0329498123633964,0.0345860313329409,0.0364456678083963,0.0384312343196002,0.0403153761452641,0.0423017657837747,0.0571237751364438,0.0712648969897356,0.0853259501636043,0.0981488684025186,0.1107081866289979,0.1265625991496922,0.1383523721640627,0.1500569445774925,0.1607091365408234,0.1705777044048755,0.1837468381680211,0.1953244955775178,0.2059383120060013,0.2171074217468337,0.2270141815101272,0.2371852393454972,0.2471511322923758,0.2557464474972153,0.2646845128624299,0.272328183026913,0.2790896983033181,0.28559383563248,0.2918117435277955,0.2974301193843793,0.302985020228159,0.3080221811460258,0.3125304973412574,0.3170126698214013,0.320831228056538,0.3245739011133977,0.3232032301480484,0.3221317786822131,0.320475989297282,0.3187563268257411,0.3179195050123449,0.3154805688365821,0.3130675526024363,0.313813567657956,0.3151537897268803,0.3162956366874443,0.3173653813804833,0.3185561729124798,0.3184393752482907,0.3197076703021634,0.3212218726735669,0.3218719904214061,0.3235745551702575,0.326647025637811,0.3311847544314439,0.3341011079782375,0.3381576551975241,0.3397883597883598,0.3416859338873961,0.3437358319480127,0.345668549905838,0.3407048249763481,0.3412336675782437,0.3496475327291037,0.3502329405316525,0.3532110091743119,0.0,1.9871535928241075,56.403325944273405,177.08317815159805,255.84737904214643,fqhc5_100Compliance_baseline,71 -100000,95770,44628,422.8255194737392,6062,62.14889840242248,4690,48.53294351049389,1828,18.80547144199645,77.31912755708531,79.66826687315721,63.32066847763053,65.05809364221318,77.09266195186463,79.44127423467212,63.23646687158232,64.975805912918,0.2264656052206817,226.99263848508625,0.084201606048218,82.28772929517447,156.30648,109.94143978463848,163210.27461626814,114797.36847096008,389.82501,255.9733786977435,406617.8761616373,266854.24318444554,372.6195,181.61458318819456,386143.1137099301,187441.1497862414,3366.37919,1529.2468288766074,3486320.8102746163,1568241.049274794,1133.17152,496.0763123292775,1173787.53263026,508594.823771011,1790.39314,747.29007606106,1844016.7275764851,758899.5630663976,0.37661,100000,0,710484,7418.648846194007,0,0.0,0,0.0,33708,351.5192649055028,0,0.0,34113,353.29435104938915,1590035,0,57083,0,0,0,0,0,62,0.6473843583585674,0,0.0,0,0.0,0,0.0,0.06062,0.1609622686598869,0.301550643352029,0.01828,0.3259433962264151,0.6740566037735849,24.677115861346596,4.375959530822095,0.3189765458422174,0.2383795309168443,0.2204690831556503,0.2221748400852878,11.235077334161751,5.89954077013105,19.38592268030854,12055.341608887802,53.11002360274079,13.403470637708844,16.830779460732145,11.535823683909742,11.339949820390045,0.5637526652452025,0.7969588550983899,0.6878342245989305,0.5831721470019342,0.1161228406909788,0.7408585055643879,0.9324009324009324,0.8846153846153846,0.7131474103585658,0.1448598130841121,0.4988344988344988,0.7126269956458636,0.6245583038869258,0.541507024265645,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045590335092,0.0043575634126815,0.0066048455825656,0.0089682910479595,0.0113290823850057,0.0137382501807664,0.0157838388988019,0.0179003584156191,0.019774848927925,0.0220104216787297,0.024207439609564,0.0263990142725125,0.0282311560889821,0.0303183269805295,0.0322647213595138,0.0344057794268115,0.0364101289935192,0.0382863959338208,0.0402128057524054,0.0422950341609731,0.0571595582555687,0.0715817441969936,0.0844529750479846,0.0969431212341083,0.1089184060721062,0.124111825410252,0.1353498287180901,0.1460233015906793,0.1570714728053129,0.1664504925553923,0.179192867602722,0.191344998863747,0.2032648533426138,0.2139186529630439,0.2236597467463172,0.2337515642130209,0.2436713099383873,0.2525680982009248,0.2612988899734411,0.2691250572606505,0.2760329239068776,0.28203567582752,0.2875690018716387,0.2927162968208058,0.2984165207238762,0.3030475085475888,0.307868688134319,0.3131265524488886,0.3173878651918513,0.3213285789751717,0.3198113207547169,0.3179321263853514,0.3174688258195565,0.3163653732034563,0.3157127775051672,0.3140224739770967,0.3130755940209552,0.3142322035847475,0.314830950062358,0.3162460426764921,0.3165036881322847,0.3177836223773458,0.3182839503580353,0.3194207836456559,0.3210794934758534,0.3225503495773766,0.324370562573066,0.3267043669494188,0.3309456090452614,0.333926523510104,0.3361607547854486,0.3379303028695698,0.338734081452528,0.3397494653223342,0.3427252167357708,0.344717936638794,0.3524390243902439,0.3469884404786047,0.3496136865342163,0.3559127439724455,0.0,1.6959974505672042,55.54935917819039,172.3129206881886,260.51166635315263,fqhc5_100Compliance_baseline,72 -100000,95674,45370,428.9566653427263,5926,60.71660012124506,4637,47.81863411167088,1853,19.002027719129543,77.34181859432726,79.72407120266517,63.3271521787835,65.08559571125444,77.120157804827,79.5025724105983,63.24618713455638,65.00648454595229,0.2216607895002624,221.4987920668676,0.0809650442271205,79.11116530215168,154.38258,108.70139022622912,161362.68996801638,113615.9974895678,392.43945,257.4384002827159,409517.1519953174,268412.721016113,376.55732,183.4902152634452,388519.043836361,188048.6309170251,3310.08681,1500.3517409577423,3420950.9480109536,1529434.9679012722,1094.64226,482.5309663887936,1128084.4011957273,488354.882137424,1808.26728,744.2432868702007,1856854.9658214357,752490.536091516,0.38318,100000,0,701739,7334.667725818927,0,0.0,0,0.0,33806,352.65589397328426,0,0.0,34431,354.82994334929026,1598702,0,57375,0,0,0,0,0,75,0.7839120346175554,0,0.0,1,0.0104521604615674,0,0.0,0.05926,0.1546531656140717,0.3126898413769828,0.01853,0.3391737662755184,0.6608262337244816,24.551987109830996,4.393316742547317,0.328876428725469,0.229458701746819,0.2255768816044856,0.2160879879232262,11.239533497480409,5.759308046284081,19.616640380064705,12252.764774646072,52.45443609480773,12.68689481033748,17.239954359261315,11.71152391153685,10.816063013672093,0.5585507871468622,0.7772556390977443,0.6963934426229508,0.5630975143403442,0.1117764471057884,0.7482014388489209,0.9523809523809524,0.8345679012345679,0.7527272727272727,0.160621761658031,0.4884819846426462,0.6807580174927114,0.6464285714285715,0.4954604409857328,0.1001236093943139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417464126945,0.004652482844603,0.0067773911102543,0.0093030813918059,0.0116626672631878,0.0139183025169015,0.0160229948322783,0.0182415810050733,0.0203599791494189,0.0227968348534635,0.0251517512919366,0.0274830798303361,0.0297007294013559,0.0317165909301678,0.0338332284000949,0.0358805155044372,0.0380394798196984,0.0400643687707641,0.0422964496364336,0.0443149478249085,0.0584978585605348,0.0721719646521757,0.085525072941374,0.0987247743103049,0.1104911185182059,0.1262533316410712,0.1378933520062809,0.1502788658038147,0.1617452245630528,0.1718602556403877,0.1847245552827669,0.1961501027360224,0.2066764529984233,0.2173784720324439,0.226704795424549,0.2375268507651084,0.2470680131674384,0.2559711227060093,0.263974133529979,0.2711526793584651,0.2777385976067981,0.2840743035503443,0.2908897428318061,0.2973545860627762,0.3030310387103822,0.3078505271455315,0.3124351100158863,0.3175931815290675,0.322406424038337,0.3267883298365068,0.3254884008993847,0.3237770318604523,0.3227461037680015,0.3214517923451474,0.3202989199066989,0.3191521969011969,0.3179775280898876,0.3185711472827514,0.3196124666803362,0.320290346168251,0.3216214700880259,0.3227130146580126,0.3235515582514118,0.3233270794246404,0.3247635508185703,0.3255468363010663,0.3250647908182155,0.3276122218030932,0.3298624547085517,0.3333333333333333,0.336795590178124,0.3383015965628812,0.3438280859570214,0.3486384266263237,0.3513362510475836,0.3474857685009487,0.3393893129770992,0.3392318520008043,0.3401435670900055,0.3346139070303496,0.0,2.448649030773384,54.48342539755212,169.94057363564966,255.63554089359957,fqhc5_100Compliance_baseline,73 -100000,95680,44846,424.16387959866216,6070,62.405936454849495,4676,48.29640468227424,1883,19.27257525083612,77.38307130315455,79.76024120157375,63.34642469116329,65.09787597866443,77.15244842281628,79.53160259811519,63.261197167736746,65.01590188538374,0.2306228803382737,228.63860345856324,0.0852275234265462,81.97409328069227,155.27358,109.1969155656398,162284.03010033446,114126.98115137946,391.70716,257.3077324336555,408789.1826923077,268321.5535468807,372.07394,180.48982367175168,385807.97449832776,186194.5939929121,3359.28315,1514.1069576545517,3470902.278428093,1542415.455324574,1093.25702,480.58721141253056,1126977.7382943144,486663.5481166992,1841.46084,770.3079102931243,1886016.5969899665,772167.9992031581,0.37909,100000,0,705789,7376.546822742474,0,0.0,0,0.0,33876,353.4280936454849,0,0.0,33987,352.1425585284281,1594246,0,57253,0,0,0,0,0,61,0.6270903010033444,0,0.0,0,0.0,0,0.0,0.0607,0.1601202880582447,0.3102141680395387,0.01883,0.3338577721837634,0.6661422278162367,24.73808167005628,4.373919061945809,0.3284858853721129,0.2228400342172797,0.2286142001710864,0.2200598802395209,11.12528979460165,5.709515208263329,19.992562054934663,12155.590767049734,52.71129622780994,12.463242270958787,17.200139361840844,11.90496903015919,11.142945564851107,0.5624465355004277,0.7773512476007678,0.6998697916666666,0.6043030869971936,0.0962099125364431,0.7360995850622407,0.906166219839142,0.8733509234828496,0.758893280632411,0.13,0.5021607605877269,0.7055306427503737,0.6430423509075195,0.5563725490196079,0.0880579010856453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890750432766,0.0043057159645816,0.0066936440806888,0.0087432470855843,0.0109806313863047,0.0133045593819029,0.0152704438418724,0.01746470822403,0.019502621814725,0.0218559656037262,0.0240524108799737,0.0262674183379029,0.0282828698370906,0.0307877714144452,0.0327648994666419,0.0349022282855843,0.0370869159846679,0.0392850841230136,0.041297045456909,0.0435634483908621,0.0586889527291721,0.0724335755114005,0.0858048069155799,0.0979738610196936,0.1099665777515366,0.1255616284847395,0.1373557065476632,0.1485042166944943,0.1593329207656686,0.1695004231885921,0.18284509375706,0.1950763309259179,0.2056991946790127,0.2147650273224043,0.2242765538556297,0.2343497241119507,0.2446422389243157,0.2532915854798563,0.262000749514519,0.2694312986283789,0.2759478727836674,0.2826858019127442,0.2889073141841871,0.2959434652716954,0.3011040319050629,0.3062966389145852,0.3113676487159903,0.3164895309616241,0.3202234086668049,0.3247368907551928,0.3231355236416006,0.3219772511587605,0.3211454798879299,0.3201907101061909,0.3189701253192374,0.3177598725529242,0.3164328466922126,0.3165892643221688,0.316856390797525,0.3172225396371947,0.3189133681852128,0.319711822369198,0.3186210062814332,0.3192100458654317,0.3213995506906935,0.3216893676523901,0.3224074597343882,0.3266776900758119,0.3307284398548702,0.3335562549173879,0.3378464046368411,0.3397348205829738,0.3418819418445026,0.3467790487658037,0.3516117080400148,0.3551510908878777,0.3602521765235665,0.3587382445141066,0.3632968791677781,0.3633000369959304,0.0,2.189203938259173,52.75705928390239,174.64733459330395,261.6208899971311,fqhc5_100Compliance_baseline,74 -100000,95700,44945,425.3187042842215,6064,62.215256008359454,4756,49.18495297805642,1903,19.54022988505747,77.3960056150407,79.77983733051151,63.35197710932333,65.11279454550632,77.15990798222413,79.54516871920734,63.26445959545088,65.02843030590464,0.2360976328165804,234.6686113041727,0.0875175138724486,84.36423960168327,155.17436,108.996473051691,162146.4367816092,113893.70771919833,394.67428,259.8985015301483,411868.0982236154,271037.6569067095,375.38871,182.90726433500316,389166.2277951933,188780.6924206278,3431.28289,1562.5696310378935,3550734.1379310344,1598192.2151614556,1142.06767,502.58671057028505,1180596.9696969695,512580.3830635267,1862.56972,782.8261048090003,1913986.144200627,790203.9004225676,0.38042,100000,0,705338,7370.292580982236,0,0.0,0,0.0,34007,354.7753396029258,0,0.0,34318,355.4649947753396,1597090,0,57257,0,0,0,0,0,69,0.7210031347962382,0,0.0,1,0.0104493207941483,0,0.0,0.06064,0.159402765364597,0.3138192612137203,0.01903,0.3298742138364779,0.670125786163522,24.585765412884264,4.441441663887382,0.31959629941127,0.2300252312867956,0.229184188393608,0.2211942809083263,11.277187883428486,5.759354458827159,20.408859522399005,12113.787080706012,53.769205635238784,13.01120892133246,17.06248079310693,12.086534562774784,11.608981358024606,0.5616063919259883,0.773308957952468,0.6828947368421052,0.5889908256880734,0.1378326996197718,0.7315112540192926,0.9345549738219896,0.8600508905852418,0.7007874015748031,0.1720930232558139,0.5014236902050114,0.6867977528089888,0.6211180124223602,0.5550239234449761,0.1290322580645161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380542358459,0.0048569284743769,0.0071557621647956,0.0092862585725171,0.0113319634610298,0.0135930436199242,0.0157631248916667,0.0180195816190058,0.0201803349076857,0.0225695510655284,0.0247488209965142,0.0267256691684548,0.0286628134191743,0.0307575039657197,0.0330901699392263,0.0348880481300006,0.0372392218608216,0.0393726125228367,0.0415188925521846,0.0434315850913032,0.0581697776199379,0.0725147300451058,0.0853777493418361,0.0979897384136596,0.1102854372206762,0.1257138022926272,0.1380788203468944,0.1488605277443665,0.1589173369222717,0.1685843887059933,0.1812230130614091,0.193070109982805,0.2046807770872267,0.2146463542577373,0.2237893695377343,0.234958161774472,0.2448421991747518,0.2536394680086269,0.2613847478363315,0.2692087876917449,0.27632384008866,0.2818234882091991,0.2885544517028339,0.2936102503977891,0.2984747077937824,0.3034680304390052,0.3087268417441207,0.3128772890985644,0.3178761792909412,0.3222713282298161,0.3213399004200609,0.3200724071255194,0.3185613088210491,0.3180146263360595,0.3179964105074237,0.3164717572422227,0.3144316044074173,0.3147483488208204,0.3158406385373674,0.3161616701401877,0.3168561172599461,0.3168987728248665,0.3180955162845041,0.3204982760538316,0.3212548230162724,0.3218349005143124,0.3220852812013033,0.324039847127373,0.3276808503199189,0.3304282375311967,0.3326191995624031,0.3358105956046289,0.3380832282471627,0.3428984624752626,0.3445052870090634,0.3462455303933254,0.3456998313659359,0.3502135448444173,0.3519029233314947,0.3495934959349593,0.0,1.8683248008050943,54.68237353379081,182.1909283302532,259.0576633706579,fqhc5_100Compliance_baseline,75 -100000,95837,44995,426.1089140937216,5999,61.552427559293385,4656,48.1442449158467,1841,18.89666830138673,77.38566316619061,79.70580181261414,63.36611244363343,65.08384611555394,77.1684859229064,79.4895576637905,63.28643913454027,65.00686987108992,0.2171772432842118,216.244148823634,0.0796733090931596,76.97624446402074,156.21738,109.90270035364784,163002.97379926333,114676.46144354247,394.25871,258.927754770122,410938.6562601083,269729.1492535472,375.86292,182.011299536634,389833.7489696047,188125.1641786026,3339.89877,1494.6719962422812,3453572.7433037343,1528192.3852398128,1127.16128,492.4955892288776,1165175.986310089,502941.47273900185,1800.71088,740.666971507685,1849175.6211066707,746618.9863977022,0.38125,100000,0,710079,7409.226081784696,0,0.0,0,0.0,33988,354.1847094545948,0,0.0,34353,356.10463599653576,1592896,0,57149,0,0,0,0,0,75,0.7825787535085614,0,0.0,1,0.0104343833801141,0,0.0,0.05999,0.1573508196721311,0.3068844807467911,0.01841,0.3272234619062799,0.6727765380937201,24.69371181903104,4.40123357251492,0.3251718213058419,0.227233676975945,0.2289518900343642,0.2186426116838488,11.00505238553833,5.68405867706684,19.45980321013137,12153.230921315266,52.32564071404476,12.605202518820626,17.107747957836825,11.717402101860852,10.895288135526464,0.5657216494845361,0.7892249527410208,0.7034346103038309,0.573170731707317,0.1208251473477406,0.7317073170731707,0.919889502762431,0.853904282115869,0.6820083682008368,0.1832460732984293,0.5087972310354774,0.7212643678160919,0.6499552372426142,0.5417170495767836,0.1064087061668681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890016509171,0.0043692912827063,0.0068607849306309,0.0089610468778574,0.0111680703039179,0.0133285816108339,0.0156968269985424,0.0181140932748239,0.020276968674945,0.0222886264557195,0.0245544635628567,0.0263271338834831,0.0285097636176772,0.0303039660727336,0.0324922404281427,0.0344781283891958,0.0363380514858041,0.0383909785346337,0.040308177929144,0.0424340804561819,0.0574319390841764,0.071333744498918,0.0849090223042093,0.097173776003362,0.1098424201567371,0.1254079401793352,0.1379551449789709,0.1495015198860617,0.1605746770907772,0.1704365334361478,0.182457498628988,0.1952497191739393,0.2061352090660414,0.2171341263778238,0.2267641665843187,0.2367050968861573,0.2457011760513186,0.2541489815625772,0.2613973502434605,0.2686488710119755,0.2757963769036265,0.2821930592009332,0.2891783779956812,0.2949601615041869,0.3004236262406197,0.3061995998674408,0.3109462660516145,0.3155813540848141,0.3206894772152552,0.3250539104823016,0.3233986541845191,0.3218026328432785,0.3211344407903982,0.3202054300470296,0.3190255048294485,0.3165832989154544,0.3148573146990392,0.3153774188783298,0.3161522017956392,0.3170675052710574,0.3174092100336952,0.3183435461553667,0.3197158828226789,0.3204473129846264,0.3219741764209002,0.3229150306266687,0.3231393620669944,0.3255975060616557,0.329330985915493,0.3315290933694181,0.3345650289676566,0.3377167400180285,0.3397520609149833,0.3423293294815265,0.3455951707225052,0.3487100225894661,0.3528058877644894,0.3570271364925071,0.3611340489953206,0.347693480747236,0.0,1.6440098669435217,52.4347074809446,173.21352295212046,262.17596938818264,fqhc5_100Compliance_baseline,76 -100000,95765,44861,424.64365895682135,6024,61.5882629353104,4771,49.2351067717851,1887,19.339006944081863,77.37657405990127,79.72168282500397,63.3458979718325,65.07921774574965,77.13273431212873,79.47921462241013,63.255917787774976,64.99217893472836,0.2438397477725402,242.4682025938409,0.0899801840575236,87.03881102128719,155.48522,109.37777717697752,162360.98783480396,114214.55665324234,391.70641,257.4022051145522,408451.3339946745,268208.3789553096,378.38946,184.6832685975234,391363.911658748,189929.5661098548,3406.71961,1566.3134934539726,3522138.2655458674,1600414.4539789816,1155.46464,517.0242945681305,1193647.6583302876,527090.720970895,1851.75758,782.9691306179675,1901083.088811152,789563.7727853497,0.37996,100000,0,706751,7380.044901581998,0,0.0,0,0.0,33801,352.3416697123166,0,0.0,34611,357.77162846551454,1593559,0,57161,0,0,0,0,0,63,0.6369759306636036,0,0.0,0,0.0,0,0.0,0.06024,0.1585430045267923,0.3132470119521912,0.01887,0.347323408299018,0.6526765917009819,24.294102569429963,4.380711757167865,0.3164954936072102,0.2454412072940683,0.2127436596101446,0.2253196394885768,11.287637810037603,5.793120562553783,20.25541568573932,12169.645342887272,54.19138909069009,13.91051210158194,17.067376225529365,11.262654146567302,11.95084661701148,0.5592119052609515,0.7771135781383433,0.6854304635761589,0.5733990147783251,0.1311627906976744,0.7404287901990811,0.9247058823529412,0.8666666666666667,0.7704918032786885,0.1508620689655172,0.4909090909090909,0.693029490616622,0.6190045248868778,0.5110246433203631,0.1257413997627521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0045413536883293,0.0068284664867387,0.009142996464708,0.0115226588560735,0.0138287797476604,0.0160495967207431,0.0182750030628496,0.0201903515676913,0.0225097501305135,0.0244649885208265,0.0266267026616437,0.0287746856784513,0.0305554983419497,0.0327126424923918,0.0348626887577389,0.0368617786843658,0.0390352697095435,0.041177632468059,0.0430105287274923,0.0576852827904355,0.0724922613569815,0.0859925360617242,0.0986044263225372,0.1102446015871175,0.1256196949356785,0.1378590133692391,0.150267061051646,0.1604886852700263,0.1709398959841295,0.183094950887472,0.1950425205028888,0.2065443232129842,0.2162496307399424,0.2262964960755606,0.2360927923035146,0.2449170993133478,0.2537582140606715,0.2616391880084875,0.2688542608854948,0.2751529591376458,0.2826079332234419,0.2893794114517445,0.295102969348659,0.3003910329584922,0.3053009019665829,0.3097625,0.3138791843994156,0.3193539209600662,0.322830285691685,0.3221361937790682,0.321594437879579,0.3210678819590964,0.3189790821555918,0.3186498516320474,0.3180872544820412,0.3169709241623691,0.3174715093875543,0.3186475409836065,0.3190791233482533,0.3199947520335869,0.3207610542537638,0.3220711757189837,0.3230045063133003,0.3258874957967046,0.3266454739694617,0.3257012672647017,0.3284804367606915,0.3300228110194771,0.3326318297331639,0.3349282296650718,0.3381845222287141,0.3427421889734079,0.3461538461538461,0.3472599531615925,0.3498283414229904,0.3514420875934686,0.3539787532571657,0.351063829787234,0.3503208758021895,0.0,2.280529470275822,57.14595240813847,176.31808336253798,260.40476070954765,fqhc5_100Compliance_baseline,77 -100000,95749,45181,428.3908970328672,5974,61.14946370197078,4687,48.34515242979039,1816,18.54849659004272,77.3313489084019,79.69968590500665,63.31030609897547,65.06411379662556,77.1041307934066,79.47386240712481,63.22689698348523,64.98352300171057,0.2272181149953098,225.82349788183365,0.0834091154902338,80.59079491499688,154.60148,108.77120629868789,161465.3730065066,113600.35749583588,390.98388,256.73309718366573,407738.3471367848,267527.18794312805,374.64928,182.42332072365372,387285.20402301854,187346.077161205,3361.78294,1530.1339365175622,3471542.01088262,1558572.6811951688,1132.95962,499.0339741389669,1166732.0389769084,504661.7866912095,1780.7005,744.6663495247984,1821689.5424495293,745901.8590430064,0.38073,100000,0,702734,7339.335136659391,0,0.0,0,0.0,33710,351.4501456934276,0,0.0,34181,353.0167416892083,1596998,0,57260,0,0,0,0,0,62,0.6475263449226624,0,0.0,1,0.0104439733052042,0,0.0,0.05974,0.1569090956846059,0.3039839303649146,0.01816,0.3394172270252962,0.6605827729747038,24.8014217429429,4.4517326248695,0.3277149562620012,0.2244506080648602,0.2272242372519735,0.2206101984211649,11.522653760036729,5.978724003816368,19.330505832442967,12152.240615523096,52.86275480520649,12.41055220259086,17.266118315117293,11.799438297621675,11.38664598987666,0.5609131640708342,0.7775665399239544,0.6868489583333334,0.596244131455399,0.1170212765957446,0.7444717444717445,0.9080779944289692,0.8860103626943006,0.8015564202334631,0.1598173515981735,0.4962492787074437,0.70995670995671,0.62,0.530940594059406,0.105521472392638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0049382966425666,0.0071149454453184,0.0090936801463117,0.0113634051557508,0.0138200038700084,0.0159578264726575,0.0181545279107998,0.0202518180609395,0.0223999836122662,0.0242964391204463,0.0263831098782555,0.0282900423990449,0.0302689889724827,0.0322457447796781,0.034371154701217,0.0363551643800155,0.0383414097601975,0.0405488280234915,0.0426074820863189,0.0568464123922256,0.0705137595479753,0.0837275654809981,0.0964037854889589,0.1083229656495793,0.1237507006652353,0.1361162102225099,0.1467706203135651,0.1584251530923042,0.1690774084168508,0.1819886620826417,0.1942065082029346,0.2054949600505083,0.2160582343604619,0.2255887436831848,0.2353612841717846,0.2449412605529995,0.2541646031245779,0.2625134751773049,0.2697714383914762,0.2779295021640012,0.283841210006907,0.2908194701170671,0.2965412920033134,0.3018548926594903,0.3071431213701772,0.3124264650662127,0.3170663408176773,0.3213544907695498,0.3251323205258503,0.3237556408702094,0.3227802838596105,0.3213637195422362,0.3205411414793318,0.3191530374697884,0.3172077525067253,0.3143470573377115,0.3157584490437516,0.3155946084285958,0.3166708233868956,0.3173335826477187,0.3193466295792152,0.3197432520019235,0.3200044652824291,0.321898722014029,0.3239330260656719,0.3242275221012536,0.3268439727446855,0.3311756842327447,0.33572339069471,0.3392580439340078,0.3408910314138899,0.340723527195076,0.3410882085480448,0.3413251556546789,0.3434848308729513,0.3474360891015099,0.3480814408770556,0.3504273504273504,0.3547904191616766,0.0,2.359659322669939,53.28234586684,176.62035664043285,257.844860634696,fqhc5_100Compliance_baseline,78 -100000,95492,45306,430.75859757885473,5901,60.44485401918485,4661,48.22393498931847,1861,19.04871612281657,77.22623088476638,79.71342638921287,63.24095407219974,65.0761424298526,76.99415157358193,79.48450449810332,63.153670866796624,64.99279146346394,0.2320793111844494,228.9218911095503,0.0872832054031178,83.35096638865025,154.76318,109.03718681755316,162069.262346584,114184.62993502404,393.24256,258.79581416607755,411214.4053952164,270420.67834591115,381.9989,186.1547568384844,397224.3329284129,192610.9045270852,3305.46426,1527.919763133203,3417733.7996900263,1556274.727865372,1081.51015,488.4103326138053,1113445.6080090478,492356.9076088109,1814.6717,770.8893759056991,1858881.3932057132,771799.3886714325,0.38204,100000,0,703469,7366.784652117454,0,0.0,0,0.0,33935,354.7627026347757,0,0.0,34874,362.2921291835965,1586399,0,56892,0,0,0,0,0,67,0.7016294558706488,0,0.0,2,0.0209441628618104,0,0.0,0.05901,0.1544602659407392,0.3153702762243687,0.01861,0.3421733505821475,0.6578266494178525,24.36806631516022,4.32015940198255,0.3186011585496675,0.240506329113924,0.2242008152756919,0.2166916970607166,11.250603092347324,5.910140245692517,19.930686581910862,12190.511879112844,53.10744630794823,13.348900636208375,16.88588553801657,11.699465743282673,11.173194390440598,0.553743831795752,0.7876895628902766,0.6828282828282828,0.5559808612440191,0.1019801980198019,0.7276923076923076,0.9476309226932668,0.8388625592417062,0.6848249027237354,0.1636363636363636,0.4864623623921452,0.6986111111111111,0.6208842897460018,0.5139593908629442,0.0848101265822784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0048890827391035,0.0072694783438585,0.0095271987798678,0.0119522723570614,0.0140039749273811,0.016163430239084,0.0182494431160975,0.0203791420708563,0.0226634700108604,0.0249835769420266,0.0270923298375488,0.0291613036091232,0.0309934403234456,0.0326806839902877,0.0346526965326596,0.0366278707910624,0.0386998191305794,0.0408501328332552,0.0426873838314224,0.0573193070602397,0.0704191365472381,0.0837715054894207,0.096272015346185,0.1086451067427605,0.124128135003922,0.136251023424458,0.1480260349978659,0.1592956373646383,0.1696729946466579,0.1826024986232736,0.1949819933180023,0.2067713444553484,0.2166686766140791,0.225451576241076,0.2353751778093883,0.2454436625233551,0.2544140528107876,0.2622413812713975,0.2699132311082545,0.2770638584120062,0.2839386015314438,0.2903130116993759,0.2961841235502674,0.3014089313572543,0.3069026504891593,0.3111946113052002,0.3161452742421919,0.3204366755474689,0.3252731245447924,0.3242545484036657,0.3230900790312125,0.3225305592411709,0.3207631776890586,0.3201090113032211,0.3185496874856028,0.3173861939705835,0.3181563693847978,0.3192696725527173,0.3197893152746426,0.3208075117370892,0.32210205213533,0.3225745524752891,0.3240054624012178,0.3250666858914282,0.3250958004223039,0.3275670438029012,0.3316348996666037,0.3358730381657947,0.3386661373560937,0.3401803607214428,0.3448969863884328,0.3464640780341399,0.3474238435502068,0.350244442394613,0.3524418604651163,0.3587253414264036,0.35880195599022,0.3646348160351455,0.3629770992366412,0.0,2.205190842148087,57.08010797141223,171.65693791311142,252.1297058517173,fqhc5_100Compliance_baseline,79 -100000,95708,45194,428.28185731600286,6062,62.168261796297074,4740,48.93007899026205,1855,18.963931959710788,77.36399481233721,79.74730321011836,63.33329461681414,65.09668979800554,77.12982085885616,79.51785871321017,63.24593464041977,65.01412875986188,0.2341739534810472,229.44449690818655,0.0873599763943744,82.56103814366611,154.87846,109.01247624402134,161823.02419860408,113900.21298744238,393.05423,257.77040315520503,409999.7596857107,268650.0353932848,378.61672,183.6771793563111,392237.25289422,189253.9569024724,3432.20656,1549.883158556824,3544914.437664564,1578249.0669074918,1178.29927,520.0923666582651,1214090.2432398545,526416.4875144243,1825.81362,766.8479549464251,1868611.3804488648,766786.7970883284,0.38101,100000,0,703993,7355.592009027458,0,0.0,0,0.0,33844,352.979897187278,0,0.0,34559,357.73394073640657,1597545,0,57312,0,0,0,0,0,66,0.6791490784469428,0,0.0,1,0.0104484473607221,0,0.0,0.06062,0.1591034356053647,0.3060046189376443,0.01855,0.329654737505912,0.670345262494088,24.73490996325334,4.486190423876192,0.3181434599156118,0.230590717299578,0.220675105485232,0.230590717299578,11.238383041384848,5.66343341265468,19.66378244795225,12180.787610101568,53.30348650750058,12.948416575539907,16.891982078446958,11.55612520054589,11.906962652967811,0.5540084388185654,0.7795059469350412,0.6843501326259946,0.5717017208413002,0.131747483989021,0.720164609053498,0.9104859335038364,0.8753462603878116,0.7268722466960352,0.1610169491525423,0.4967375886524822,0.7065527065527065,0.6242371403661726,0.5286935286935287,0.1236872812135355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023707966484635,0.0044317340553916,0.0071570697636644,0.0095534280545561,0.0118236024339119,0.0140085987326038,0.0161369292912807,0.0181379958331631,0.0204146338968835,0.0227116804390788,0.0247349098590971,0.027092811880578,0.0292840979222382,0.0312519319938176,0.0333243890356671,0.035267478649269,0.0370945854957166,0.0391005219629126,0.0411642411642411,0.0430728195296789,0.058223326927897,0.0715721163910404,0.0853623994209162,0.097894670424431,0.1098005734041656,0.1250660802266816,0.1367660937152067,0.1480969299831925,0.1588538608534124,0.1682725801438355,0.1811695579182988,0.1931917747466115,0.204332412623154,0.2142365022254787,0.2240239381304936,0.2339537407132655,0.2438839370377394,0.2529917221522404,0.2622560145256468,0.269885615489426,0.2772013833466347,0.2833272920734773,0.2902183561157465,0.2957121971095079,0.3010093158271896,0.3068880158622643,0.312145090681676,0.3166922910763523,0.3205625355462489,0.3247652783081602,0.3245036670875534,0.3230788238201136,0.3221051152332771,0.3215336255623486,0.3208665500992798,0.3191021865511085,0.3174345475466166,0.318682754004147,0.3193908594931761,0.3213517118719431,0.321955047362816,0.3224827586206896,0.3235441557356504,0.3236805648657103,0.3246750131913464,0.3262348494721752,0.3276501111934766,0.3313979034586655,0.3343747805939759,0.3347993185149966,0.3366777137149861,0.3397283441678558,0.3418479974771365,0.3413068398930072,0.3468054898248935,0.3476441042812724,0.346493265211333,0.3438013136288998,0.3513815238626849,0.3545631067961165,0.0,2.2401498176060928,53.179260057694336,173.76532806078134,269.2042737540569,fqhc5_100Compliance_baseline,80 -100000,95670,44902,425.1698547088952,6150,63.081425734294974,4778,49.36761785303648,1854,19.02372739625797,77.31725194233033,79.72476472519172,63.30264576078415,65.08475756125151,77.0830554737273,79.49299132649634,63.21458064522492,65.00038590321152,0.2341964686030309,231.7733986953812,0.0880651155592318,84.37165803998425,155.92192,109.64983796769776,162978.67670116024,114612.33883944571,393.66265,258.30371688324146,410909.7000104526,269424.7418033255,376.3755,182.9246833839652,389817.4035747883,188444.94425321065,3403.05626,1556.1577762422714,3516153.590467231,1585700.6615890767,1123.14186,500.95905446545606,1157917.7276053098,507575.0856751914,1817.945,772.7370235485697,1865479.690603115,776295.8570226433,0.38017,100000,0,708736,7408.121668234556,0,0.0,0,0.0,33977,354.5521061983903,0,0.0,34492,356.9980140064806,1589732,0,57057,0,0,0,0,0,63,0.658513640639699,0,0.0,0,0.0,0,0.0,0.0615,0.1617697345924191,0.3014634146341463,0.01854,0.3342105263157894,0.6657894736842105,24.58291639071106,4.337906642079314,0.3200083717036417,0.2427794056090414,0.2178735872750104,0.2193386354123064,11.146750736550285,5.677785529666142,19.906003318106496,12220.017846224144,54.33514605425256,14.008647650265058,17.243416470311857,11.52607548643194,11.557006447243706,0.5602762662201758,0.7836206896551724,0.670372792674951,0.6032660902977905,0.1097328244274809,0.7095310136157338,0.906318082788671,0.830238726790451,0.7377049180327869,0.1198347107438016,0.5031828703703703,0.703281027104137,0.6180555555555556,0.562107904642409,0.1066997518610421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021680326623238,0.00439081275668,0.0066168038401818,0.0089930799012285,0.0110291499211476,0.0134053173067128,0.0158835411013404,0.017979731938542,0.0202369503386466,0.0226520638888604,0.0245719151730293,0.0267990176433716,0.0290181788236262,0.0310950274762096,0.0330290010741138,0.0350025866528711,0.0371844710516767,0.0391002274355858,0.0412227401365074,0.0433037622358668,0.0579342193246405,0.0721653803055849,0.0852685507915844,0.0978019549869001,0.1101838859759249,0.1264075861485056,0.1387131697376241,0.1492017509292492,0.1598225737494656,0.1695955369595537,0.1829150059248087,0.1957474910413666,0.2072249553746353,0.217799671592775,0.2275400951709552,0.2379152487890309,0.2475586754907759,0.2558830146231721,0.2646641786812164,0.2723120249107061,0.2792521807538351,0.2864108890629933,0.2925183756080817,0.2978608664389718,0.3026635559443958,0.3078051968872939,0.3119405040628012,0.3164964320693997,0.3208765889144899,0.3254050918296043,0.3241367250030266,0.3225930609776213,0.3214637302056085,0.3208383250819128,0.319278631004594,0.3177190346223435,0.316084403146914,0.3172177167810355,0.317775350694563,0.3183746212796293,0.3191357909123247,0.3208362947168917,0.3209959341073898,0.320398766149582,0.3229048663501169,0.3247088924860321,0.3247955782216017,0.3269725692046952,0.3290562333473566,0.3335972134262191,0.3349580903790087,0.3371734975578679,0.341710758377425,0.3435592185592185,0.3469924812030075,0.3446487505893446,0.3504980842911877,0.3520728008088978,0.3502961766289714,0.3522130532633158,0.0,2.226879907316908,58.09410934798391,176.98025005963638,257.55193775358765,fqhc5_100Compliance_baseline,81 -100000,95856,45342,429.112418627942,6014,61.51936237689869,4773,49.209230512435326,1893,19.36237689868136,77.4717338221379,79.75781393921204,63.40399372213196,65.09039412903337,77.23386916936822,79.52248170697236,63.31531843097654,65.00543587175872,0.2378646527696872,235.3322322396849,0.0886752911554182,84.9582572746499,156.2715,109.91711727877887,163027.35353029546,114669.00066639423,396.58896,260.66347079852466,413170.19278918375,271368.43890682334,381.72014,185.66323678676545,394818.9576030713,191081.8157173117,3447.92023,1584.2439615297126,3554814.690786179,1610770.7222629471,1181.64745,524.3419446853131,1220099.399098648,534433.8711681897,1855.01716,783.8883786751577,1899095.580871307,787075.2454332339,0.38266,100000,0,710325,7410.334251377066,0,0.0,0,0.0,34194,356.1383742280087,0,0.0,35022,361.9074445000835,1590111,0,57033,0,0,0,0,0,63,0.6572358537806711,0,0.0,0,0.0,0,0.0,0.06014,0.1571630167772957,0.3147655470568673,0.01893,0.3381351907551053,0.6618648092448948,24.18708610822692,4.355267861504851,0.3079824010056568,0.2352817934213283,0.2331866750471401,0.2235491305258747,11.232379825102395,5.800796291329596,20.18297354145092,12171.793018550095,54.14173511880357,13.367188850505237,16.585083241478163,12.541688954964528,11.647774071855638,0.5610727006075843,0.7791629563668745,0.689795918367347,0.5992812219227314,0.1143392689784442,0.7255496588324488,0.9288990825688074,0.8482384823848238,0.7132616487455197,0.1702127659574468,0.4982628836132021,0.6841339155749636,0.6366939146230699,0.5611510791366906,0.0985576923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022674359753011,0.0046803294465662,0.0068344521284146,0.0088205440519691,0.0112490854402081,0.0134707540162992,0.0153817944747779,0.0175134385295647,0.0200457488307497,0.0220076904197005,0.0244474487392203,0.0262960873801343,0.0285071499013806,0.030630723325445,0.0326560905464328,0.0348099958694754,0.037041634341867,0.0389893043694552,0.041056631985546,0.0431683127100916,0.0576758639387682,0.0717466755875219,0.0855576864631475,0.0978459598613008,0.1095581414959102,0.1252444942537242,0.1369762780882493,0.1483573769096557,0.1586538974835314,0.1693229440198926,0.1815961087316789,0.1937788441792851,0.2050733529520355,0.2157402251411226,0.2254283831282952,0.2355340836226148,0.2452128192846242,0.2545703633831918,0.263345074809437,0.2709507746841232,0.2787636674325432,0.2857359476514294,0.2919618399924436,0.2970616725863739,0.3024415092966561,0.3071745015998031,0.3123493035167718,0.3160474388602484,0.3201860945980873,0.3236231044650379,0.3230080765457648,0.3222149104768172,0.3210164256633441,0.3195877772500252,0.318963092365316,0.3170579172958709,0.314615420995381,0.3156853770963418,0.316093712809004,0.3172208119574672,0.3178479549606651,0.3198443426819441,0.320426791147418,0.3220553887220554,0.323585626911315,0.3258103801207473,0.3260967887833559,0.3279306797992706,0.331417093780302,0.3344699196551048,0.3372844827586206,0.3408803706823926,0.3444904099285445,0.345797233622131,0.3473584905660377,0.3476604357661626,0.3413146255909715,0.3458601286173633,0.3402399127589967,0.3356086461888509,0.0,2.2679034658919006,57.678602998308335,179.22754873457058,253.2763013505072,fqhc5_100Compliance_baseline,82 -100000,95732,44973,425.8868507917937,6011,61.48414323319266,4691,48.33284586136297,1871,19.14720260727865,77.34438518034166,79.69602705322555,63.33412346583962,65.07181034705722,77.11561535108542,79.46965458790707,63.24979788388402,64.99071870486509,0.2287698292562368,226.37246531847663,0.0843255819555963,81.09164219213483,155.79102,109.65678518915637,162736.61889441358,114545.59101361757,394.17042,258.69225793789167,411088.24635440606,269570.0893514098,376.54538,183.2865755826839,387887.0492625246,187377.6942348889,3373.3159,1532.4772394991514,3480929.43843229,1558021.0478201143,1141.78426,505.5602922004699,1179533.9907241047,514964.8448334034,1836.88632,761.678139258263,1883283.416203568,766994.208690248,0.38117,100000,0,708141,7397.119040655162,0,0.0,0,0.0,34022,354.69853340575776,0,0.0,34393,354.04044624576943,1589846,0,57066,0,0,0,0,0,78,0.7938829231604897,0,0.0,0,0.0,0,0.0,0.06011,0.1576986646378256,0.3112626850773581,0.01871,0.330575882914413,0.669424117085587,24.6628367894956,4.35027867512321,0.3231720315497761,0.2334257088040929,0.215732253250906,0.2276700063952249,11.097837770327684,5.719782130254519,19.810114513183237,12154.49165335632,53.21186380855215,13.103854941633,17.161513778585824,11.1955741930467,11.75092089528661,0.5634193135791942,0.7726027397260274,0.6985488126649076,0.599802371541502,0.1226591760299625,0.7380191693290735,0.914004914004914,0.8743718592964824,0.7424892703862661,0.1448598130841121,0.4998546088979354,0.688953488372093,0.6359570661896243,0.5571245186136072,0.117096018735363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00213727158543,0.0042176553486155,0.0063819641027201,0.0087951819465179,0.0110315798035667,0.0131829425956654,0.0155214936507612,0.0180009184142048,0.0203124521053223,0.0227054128721989,0.0249815558652348,0.0269626710184643,0.0289947459875178,0.0311219130398961,0.032989818339368,0.0350525478200663,0.0370558218008301,0.0390442709143514,0.0410093325850637,0.0430697761621548,0.0576579774295587,0.0716513185433235,0.0850927703134996,0.0975971397024028,0.1094603429005251,0.1249682794789375,0.1367348237390234,0.1474956381122601,0.1579413900636507,0.1675350013936236,0.180740788581393,0.1928871967378019,0.2045966014720431,0.2149743141326921,0.2238522021223951,0.2347380422630314,0.2448312412831241,0.2548605098334664,0.2628880596168461,0.2707031160565057,0.2778368876347319,0.2841788880312492,0.2901149860407893,0.2953329975777634,0.3009377353448485,0.305372604158958,0.3102536799248356,0.3152838650494343,0.3201404818371499,0.3240987719529909,0.3231674476221253,0.3223374693922469,0.3209586068922764,0.3193715764066542,0.3193732066663693,0.3185679239497087,0.317043003932513,0.317505664466555,0.3184241098886079,0.3193445315149676,0.3207504774744411,0.3216520897909222,0.3232866957104557,0.3231812383914785,0.3235202004384591,0.324202460383653,0.3241241811449729,0.3264240556097254,0.3305509767474485,0.3325654367081066,0.3349393209399572,0.3376147762857597,0.3380847723704867,0.3423274042809768,0.3422159887798036,0.3447829667097988,0.3498470948012232,0.3512625744200369,0.3534626038781163,0.3491879350348028,0.0,2.569815597600796,54.41225153430714,177.33503601988065,255.78044960983175,fqhc5_100Compliance_baseline,83 -100000,95672,45178,427.4709423864872,6057,62.04532151517686,4742,49.000752571285226,1886,19.28463918387825,77.28108161739658,79.66857315595225,63.29287913429015,65.05577602322033,77.04869456368318,79.43852343712722,63.20727410421213,64.97379234448276,0.2323870537133956,230.049718825029,0.0856050300780211,81.98367873757206,154.14608,108.48527445812026,161119.32435822394,113392.92003733615,392.10523,257.0077158739001,409292.9801822895,268083.9387426835,380.06794,184.536844071892,393998.76661928254,190274.5680233537,3403.95151,1543.4408053895816,3519351.419433063,1574675.124790514,1130.58919,504.6546330836953,1164923.9798478133,510673.46045205946,1847.85828,769.6340379168745,1891965.4862446692,771323.3601176083,0.38064,100000,0,700664,7323.605652646543,0,0.0,0,0.0,33817,352.8932184965298,0,0.0,34606,358.3911698302534,1595559,0,57301,0,0,0,0,0,84,0.8779998327619366,0,0.0,1,0.0104523789614516,0,0.0,0.06057,0.1591267339218159,0.3113752682846293,0.01886,0.3468809073724007,0.6531190926275993,24.545339259576448,4.3971541197772686,0.321383382539013,0.233024040489245,0.2165752846900042,0.2290172922817376,11.2909973975635,5.820027662470546,19.942424404479677,12235.54792704221,53.86264131901402,13.2909836560328,17.24670054790012,11.442469765162333,11.882487349918764,0.5619991564740616,0.7936651583710407,0.7034120734908137,0.5881207400194742,0.1031307550644567,0.7482732156561781,0.9447115384615384,0.8980582524271845,0.7478632478632479,0.1535269709543568,0.4914219249781913,0.7024673439767779,0.6312949640287769,0.5409836065573771,0.0887573964497041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312414526667,0.0048459534261296,0.0071952667525903,0.0094076053275898,0.0115127229827309,0.0138181744124475,0.0157636070722107,0.0178359946093845,0.0200971121901354,0.0222315479175836,0.024566548071895,0.0269004887264364,0.0291341011929247,0.0311057533794922,0.0332325348580392,0.0353191753344775,0.0373316759892272,0.0394710894767978,0.0417641857804129,0.0437565144882218,0.0578691127920096,0.0719566082385709,0.085809654767028,0.0987899831649831,0.1114510904544351,0.1265738409124574,0.1389578954073508,0.1500607145139643,0.1600603073106575,0.1703068960333311,0.1827535997411422,0.1950429165944165,0.2060703745249011,0.2172741905460597,0.2268936263978405,0.2372988499373398,0.2476390580819652,0.256605771180141,0.2646290194296102,0.2722061066076567,0.2791993420519176,0.2855067710041704,0.2917625020747872,0.2973871905093537,0.3026214950428806,0.3073174342714027,0.3124686779593064,0.3169137045486407,0.3213581655945217,0.3257840181923951,0.3242444684295736,0.3225935423387652,0.3224242938092613,0.3210559870175032,0.319853379425438,0.3177402274506192,0.3160689939440058,0.3164338253443254,0.3167457232392074,0.3177820677820678,0.3187246507435782,0.3204573424907698,0.321474433193693,0.3216869635554756,0.3230483001908812,0.3233956939799331,0.3260596007550191,0.3301967223467744,0.334024458813607,0.3370001191374449,0.342038100446632,0.344889832758163,0.3488401412002017,0.3508904888215233,0.3521535580524345,0.356225181032469,0.3646071700991609,0.3643488745980707,0.3678938819707634,0.372021521906226,0.0,2.236240948548377,57.41434069932059,172.01333910952872,260.78615684511925,fqhc5_100Compliance_baseline,84 -100000,95732,44880,424.5288931600719,6071,62.27802615635315,4765,49.252078719759325,1938,19.89930221869385,77.3612597271838,79.72712554742861,63.34108899169471,65.08925390271634,77.12054297688192,79.48627912647187,63.25145846874226,65.00188492450307,0.2407167503018854,240.8464209567427,0.0896305229524543,87.36897821326295,155.76286,109.58732226634515,162707.20344294488,114473.0312396536,394.77328,259.84071062839286,411877.136171813,270928.89590564586,382.70276,187.252804740158,396489.7108594827,193045.5558701637,3409.74545,1569.0085797893896,3528206.054401872,1605403.992175435,1101.70661,490.9639399503031,1139462.6457192996,501491.361248384,1890.49872,796.6370941887582,1943295.6796055653,804835.0195812425,0.37937,100000,0,708013,7395.781974679313,0,0.0,0,0.0,34125,355.93114110224377,0,0.0,34970,362.03150461705593,1589086,0,57028,0,0,0,0,0,57,0.5954121923703672,0,0.0,1,0.0104458279363222,0,0.0,0.06071,0.1600284682499934,0.3192225333552956,0.01938,0.33449037551278,0.66550962448722,24.585783526628976,4.250933090481922,0.3250786988457502,0.2310598111227702,0.2287513116474291,0.2151101783840503,11.011037819825129,5.742544324752916,20.73369258623912,12127.929075356444,54.1417615832811,13.16438001072617,17.472594434233276,12.178491354890122,11.326295783431538,0.5588667366211962,0.7865576748410535,0.6726920593931569,0.5779816513761468,0.1219512195121951,0.7213740458015268,0.9048780487804878,0.8553299492385786,0.7017543859649122,0.167420814479638,0.4972503617945007,0.7163531114327062,0.6103896103896104,0.5341614906832298,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0048361586503366,0.0069817945647541,0.0095396775406122,0.0118173497406691,0.0141748640557218,0.0163563314502477,0.0185531219686526,0.0207244880223296,0.0229422604422604,0.0249248972142761,0.027114466183947,0.0290030957205006,0.0314196532506464,0.0334757393763028,0.0355529365547043,0.0375812932355743,0.0395379969490364,0.0412719539966932,0.0433020411140169,0.0575736376640598,0.0712999790663596,0.0847258499333899,0.0980010725439269,0.1105337493148952,0.1260332762520876,0.1376399728537495,0.1486407405437037,0.15861317610869,0.1688837912294054,0.1813522825150732,0.1940700517058607,0.2053509305966255,0.2156191933544649,0.225559281042159,0.2361755104299231,0.2452030816228691,0.2540955976538798,0.2621454965881526,0.2695464066201971,0.2761841998774467,0.2825891344232409,0.2885293213162065,0.294089472171664,0.3000667030501485,0.3053860538359332,0.3095455283841703,0.31415422948819,0.3185760517799352,0.3223188482297206,0.3209398086472084,0.319541019650955,0.3185067402133228,0.316541255650717,0.3151248644392613,0.3126263554493659,0.3113828340029738,0.312708124866718,0.3143666587022562,0.3151467542669428,0.3167578505583452,0.3176489226869455,0.3180874053248851,0.3185856551415463,0.3191791709819601,0.3198357268042585,0.3212731852530341,0.323823966132752,0.3274174237622367,0.3317529880478088,0.3328324910076037,0.3399598181241408,0.3427356307461379,0.3429198516612427,0.3495245198582882,0.3518889019653995,0.3563708326990409,0.3638203156616754,0.3712206047032474,0.3763052208835341,0.0,2.058986067343753,57.35351890567541,180.66358813654807,253.70338879130728,fqhc5_100Compliance_baseline,85 -100000,95659,44978,426.358209891385,5910,60.72612090864424,4587,47.44979562822108,1779,18.304602807890525,77.2430810454354,79.64816863711269,63.27207635196621,65.05048911383892,77.02194853950904,79.42693483456532,63.19077683674824,64.97149768846684,0.2211325059263629,221.23380254737413,0.0812995152179709,78.99142537208093,155.3706,109.39994634982465,162421.30902476504,114364.50971662326,394.25319,259.501641478341,411622.63874805294,270757.44874468347,378.82826,184.20697627670452,392747.7916348697,190083.10284164923,3275.61083,1478.5232221031197,3391575.983441181,1513011.4942120465,1066.71578,467.9592864474026,1103576.4434083567,477694.3885953116,1749.49942,725.1833026012832,1801468.717005196,733253.5221000114,0.37891,100000,0,706230,7382.786773852957,0,0.0,0,0.0,34092,355.84733271307454,0,0.0,34612,358.61758956292664,1585407,0,56858,0,0,0,0,0,67,0.6899507626046686,0,0.0,0,0.0,0,0.0,0.0591,0.1559737140745823,0.3010152284263959,0.01779,0.3340332741075755,0.6659667258924244,24.550403717180732,4.486717093719909,0.3270111183780249,0.2317418792238936,0.2204054937867887,0.2208415086112927,11.119984695745648,5.449941488190207,18.8471950833093,12099.674997217257,51.91627551933488,12.955186913218247,16.861941198128193,11.084880520651751,11.0142668873367,0.5498146936995858,0.7920978363123237,0.6613333333333333,0.5657764589515332,0.1145113524185587,0.7448389760528489,0.9301204819277108,0.8489583333333334,0.7453703703703703,0.1479591836734693,0.4798578199052132,0.7037037037037037,0.5967741935483871,0.5169811320754717,0.1064871481028151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002533646829901,0.0045341123486093,0.0065277199679197,0.0087178288745059,0.0109446360094799,0.0134426396456031,0.0155493244965587,0.0176645972880248,0.0201141197643979,0.022518278821144,0.0244998000225615,0.0268030438399211,0.0288361665586853,0.0310085505305449,0.0330088870080406,0.0349912108365215,0.0371268154225454,0.0391302091442212,0.0409918765147023,0.0427335279399499,0.0565848459199348,0.0710687014905049,0.085259842519685,0.098026419662123,0.1098372078292265,0.1249126595947405,0.1363375613487156,0.1476573743403869,0.1588796045663175,0.1690488718978533,0.1809256661991584,0.1925319748536744,0.2038813804820143,0.2149865311754013,0.2248156842000859,0.2342226413001275,0.2439831427389695,0.252743909310135,0.261314300002273,0.2687126692423217,0.275166852057842,0.2816151162518439,0.2875497347480106,0.2932469713326136,0.2989843702487381,0.3046660002714943,0.3096792790986226,0.3136480095856012,0.3179571022616684,0.3226254213761649,0.320965524677215,0.32060017895244,0.3195966433960933,0.3177924408172715,0.3170023670224643,0.3156457994663068,0.3142172726695856,0.3148852135275241,0.3162947498117598,0.3176375838926174,0.3177867248645394,0.3177033682872577,0.318285942458441,0.3174752708431465,0.3182344149269562,0.3201330504701291,0.3203111544864803,0.3240775840283043,0.3260861892492853,0.3309819639278557,0.3372296364473078,0.3407875026749412,0.3460953346855984,0.3486252584820403,0.3480783866057839,0.3532000951701166,0.3589424572317263,0.3590376310919185,0.353726362625139,0.3502715283165244,0.0,1.9091573713155423,53.30337033928326,168.3310419682896,258.0584132505147,fqhc5_100Compliance_baseline,86 -100000,95833,45289,428.92323103732537,6078,62.44195631984807,4733,48.960170296244506,1862,19.200066782840985,77.44904619750217,79.7750068747065,63.38601454967061,65.10665161960937,77.22462517934278,79.54824201894483,63.30379651226647,65.02504797046787,0.2244210181593899,226.7648557616724,0.0822180374041394,81.60364914149909,155.8513,109.6222436341704,162627.77957488547,114388.59644816552,393.82404,258.1565055787791,410478.0190539793,268922.3280930007,375.02917,181.5989158127257,388231.9764590486,187112.35556573755,3381.2486,1521.7025453138388,3499363.152567487,1559768.941087963,1112.45025,488.4631787974917,1149248.5156470109,498169.731480063,1828.36246,759.2728098345432,1885591.831623762,774309.2607723238,0.38262,100000,0,708415,7392.1717988584305,0,0.0,0,0.0,33998,354.282971419031,0,0.0,34221,354.12644913547524,1597338,0,57229,0,0,0,0,0,63,0.6365239531267934,0,0.0,0,0.0,0,0.0,0.06078,0.1588521248235847,0.3063507732806844,0.01862,0.3328625235404896,0.6671374764595104,24.872730127146216,4.378824378669334,0.3093175575744771,0.234946122966406,0.2294527783646735,0.2262835410944432,11.017475666507757,5.595498362342045,19.645627376546987,12230.84907484193,53.124325481880994,13.13098226109214,16.45232369926672,11.88254646691074,11.658473054611392,0.5467990703570674,0.7508992805755396,0.694672131147541,0.5598526703499079,0.1195144724556489,0.7368852459016394,0.9206349206349206,0.8564102564102564,0.7787234042553192,0.1566820276497695,0.4807856532877882,0.6634877384196185,0.6359404096834265,0.4994124559341951,0.1100702576112412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.00468308110245,0.0069404279930595,0.0094269664062738,0.012050398120748,0.0143565515766751,0.0164656464422988,0.0187182967778809,0.0211037301992846,0.0232167889410729,0.0252497822411231,0.0272885878489326,0.0292043585526315,0.0311962688027016,0.0331060942028238,0.0349294901596156,0.0368346425725256,0.0388515615279333,0.0408095416199143,0.0429097874289521,0.0574441674403079,0.0714681498363843,0.0847001121369957,0.0972957639939485,0.1102377139003624,0.1253249635406759,0.1376389904707391,0.149560834520746,0.159992319344584,0.1700359773856433,0.1834525025536261,0.1955195022629322,0.20741609135513,0.2170772688589696,0.227457824316463,0.2375921403074475,0.2463116168758142,0.2556894694317264,0.2639376174200412,0.2721021611001964,0.2786542789543539,0.2855509804150287,0.2910806984426616,0.296538374218834,0.3017999467041353,0.3076998685358332,0.3123028391167192,0.3169009621113209,0.3215064445791993,0.3243516778170633,0.3239143845720569,0.3229769380535827,0.3224475475405234,0.3214347425411819,0.3208370304643596,0.319125916218399,0.3174143601202184,0.3188472020497087,0.3195710091805392,0.319755889866591,0.3198934247545229,0.320837753939251,0.3219752262584977,0.3226661912508635,0.3243256192803411,0.324224213852769,0.3256757140020987,0.3304692870086859,0.3333566629339305,0.3381964433579117,0.3420575161026943,0.3437748449674034,0.3452523094325394,0.3502726446531354,0.3488699240363875,0.3513481690804191,0.354951397326853,0.3614262560777957,0.361247947454844,0.3673084182710456,0.0,1.5457356662204025,54.15981092279987,172.14480639031638,267.8745081326855,fqhc5_100Compliance_baseline,87 -100000,95807,45344,429.2588224242488,5956,60.94544239982464,4660,48.05494379325101,1840,18.871272453996053,77.3497797498425,79.68305360629618,63.33168066437421,65.05996982758158,77.12409374607554,79.45881767152994,63.24846676665897,64.97983814679274,0.2256860037669525,224.23593476624148,0.0832138977152396,80.13168078883837,155.6082,109.44871762410888,162418.40366570294,114238.74834209283,392.02219,257.5670466995987,408620.91496445984,268281.3329919512,383.67246,186.86028491181173,396439.6442848644,192056.73107686057,3338.56161,1526.4380774595302,3445247.9568298766,1553816.712202169,1097.29802,487.0899733582178,1134544.3756719236,497630.5315459385,1801.10848,753.0665959236087,1848461.3232853548,756938.5769719526,0.38155,100000,0,707310,7382.654712077406,0,0.0,0,0.0,33813,352.3333368125502,0,0.0,34955,360.8713350799002,1590791,0,57164,0,0,0,0,0,67,0.6888849457764046,0,0.0,0,0.0,0,0.0,0.05956,0.1561001179399816,0.3089321692411014,0.0184,0.3311866044115279,0.6688133955884721,24.40303846237161,4.425236100101542,0.3354077253218884,0.223175965665236,0.2218884120171673,0.2195278969957081,11.219598902904911,5.650671083769981,19.53964471533344,12227.670134878108,52.878535653456666,12.436070412424918,17.600962199328684,11.530507499138729,11.31099554256435,0.567381974248927,0.8125,0.6948176583493282,0.5686653771760155,0.1221896383186705,0.7384370015948963,0.9325,0.8779904306220095,0.6681222707423581,0.1594202898550724,0.5044039929536113,0.7375,0.6279475982532751,0.5403726708074534,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020463156188585,0.0042888864104149,0.0067083443278462,0.0090115717928659,0.0113009866748041,0.0136041953057379,0.0158849918433931,0.018108877841634,0.0203603953514519,0.0224669648614622,0.0245512603663724,0.0266646131731608,0.0288622692920672,0.031076878719855,0.0332250244984269,0.0351928581023134,0.0374192613448161,0.0392490405559589,0.0410298502810477,0.0432288358824325,0.05750412085046,0.0719513980383545,0.0852872430744075,0.0982566021080507,0.1106778106851885,0.1259026654402047,0.1374460366791476,0.1486755425007715,0.1598863599953006,0.17001287001287,0.1827378900189622,0.1948400502142764,0.206354558705158,0.2167349838771383,0.2266332266332266,0.2367415219968315,0.2458824317086234,0.2548075841748948,0.2643868566760461,0.2724431265241633,0.2800666219436026,0.2866595742193437,0.2927114875094625,0.2980832545165036,0.3039188319963105,0.3094980181688372,0.3144103166470897,0.3188462907408349,0.3230741377749615,0.3268495318475537,0.3253065564723459,0.3242975343144678,0.3226279223798988,0.3209213440852431,0.3200404436910816,0.3185050108798921,0.3161579522595156,0.3168576964760747,0.3180388940155166,0.3182386790092569,0.319843293094399,0.3197562857312417,0.3208048913271075,0.3211533736850334,0.3223164316767948,0.3232107511199083,0.3232024564296477,0.327706088699574,0.3308226104543711,0.3313136876893418,0.3344049990943669,0.3369915053025906,0.3430294653515109,0.3422378262860632,0.3435386927122464,0.3485008818342152,0.3509549274255156,0.3536266827406067,0.3564437194127243,0.3637065637065637,0.0,2.2337181894170977,54.899739137021015,176.814146179761,251.1813056676344,fqhc5_100Compliance_baseline,88 -100000,95789,45419,429.9763020806147,6111,62.60635354790216,4788,49.29584816628214,1929,19.65778951654157,77.41775944651599,79.74267624395014,63.37436231324406,65.09376311594929,77.18367116823056,79.51397026255147,63.28809558453145,65.012369862314,0.2340882782854265,228.70598139867585,0.0862667287126157,81.39325363528371,156.43254,110.0130059515938,163308.81416446564,114848.68170487836,397.78157,261.0212606491732,414517.282777772,271748.90186582215,383.9972,186.6222942100684,396179.5195690528,191269.29915880383,3407.85036,1542.1159669896326,3508280.4601781,1561146.1649506,1153.0522,508.2246230586927,1182684.3165707963,509879.4244553803,1882.32062,773.4586431904314,1920231.6758709247,770827.9665643687,0.38315,100000,0,711057,7423.12791656662,0,0.0,0,0.0,34272,357.01385336520894,0,0.0,34989,360.6259591393584,1588917,0,57030,0,0,0,0,0,81,0.835168965121256,0,0.0,1,0.0104396120640157,0,0.0,0.06111,0.1594936708860759,0.3156602847324496,0.01929,0.3341645885286783,0.6658354114713217,24.877326504513505,4.391973638272405,0.3201754385964912,0.2449874686716792,0.2157477025898078,0.2190893901420217,11.595854160209242,6.186993994479655,20.16869242161297,12275.797372029165,53.74986345634072,13.819119839031856,17.23370805946968,11.340037209006042,11.356998348833152,0.556390977443609,0.782608695652174,0.6823222439660795,0.5624394966118103,0.1134413727359389,0.7413096200485044,0.917910447761194,0.8631840796019901,0.7316017316017316,0.1584158415841584,0.4919740918051253,0.7120622568093385,0.6180371352785146,0.513715710723192,0.1027154663518299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0047641734159123,0.0069710099339428,0.0092827689870203,0.0115817945172049,0.014017264546602,0.0163388033839567,0.0187086633461255,0.0208099102598172,0.022730994391452,0.0246924969249692,0.0266891128949475,0.0286689349629431,0.030575687695602,0.0329023344056751,0.0348378434207808,0.0369971747612,0.0390536715842292,0.0408780204026511,0.0432664279170483,0.0578335628730019,0.0717772876004892,0.0854848684969129,0.0985965796882221,0.1109894045036125,0.1270337657947005,0.1392025592678121,0.1504858497586698,0.1609351159291941,0.1708053906969768,0.1835437592755898,0.195702432911283,0.2070425746766995,0.2172033148809329,0.2271523833587836,0.2387716270631444,0.2488240408408944,0.2581333453120262,0.2659485297449141,0.273386395864782,0.280745327264746,0.2872919147346548,0.2936661628566031,0.2993718217170206,0.3043921254685055,0.3096322371012209,0.3143752966747445,0.3181968295904888,0.3224884959412646,0.3263170365689914,0.3249039778679057,0.3245348869163758,0.3240369604658031,0.3234013095272434,0.3219408719386468,0.3199333057990302,0.3177415021886506,0.3185630508141401,0.319654133546663,0.3208584699161817,0.3207229771406142,0.3211469252099353,0.3218503526269666,0.3223287579809125,0.3245622451427201,0.3245301655792675,0.3263776509666979,0.3306825297432686,0.3332517995667062,0.3370608922432528,0.338322674286751,0.3410113846968493,0.3420440982473773,0.3429589207215401,0.3380746043707611,0.3395326657129232,0.3410188502882069,0.3441784325762226,0.343500961802693,0.3510267338240992,0.0,2.472891078055463,53.78414043959547,175.88585434206811,268.78421671803915,fqhc5_100Compliance_baseline,89 -100000,95721,44636,421.66295797160495,6028,61.50165585399233,4729,48.80851641750504,1817,18.59571045016245,77.3893283971574,79.75139527426175,63.35181630130408,65.09404269819603,77.15439284627409,79.51728035967922,63.26378930172267,65.00876016697532,0.2349355508833071,234.11491458253408,0.0880269995814089,85.28253122071305,155.14796,109.06486629791742,162083.51354457226,113940.37494167154,390.96202,257.1742494004146,407859.2053990242,268090.7422617969,373.7391,182.69848143526272,386839.06352837937,188101.4632922409,3392.54332,1556.5388947664555,3502910.2286854503,1584831.2018955678,1129.63172,502.767783276444,1165501.833453474,510615.302051215,1784.3982,758.1834378367448,1828901.641228153,762179.6358421529,0.37899,100000,0,705218,7367.432433844193,0,0.0,0,0.0,33747,351.9499378401813,0,0.0,34235,354.0393435087389,1596130,0,57250,0,0,0,0,0,78,0.8148682107374557,0,0.0,0,0.0,0,0.0,0.06028,0.1590543286102535,0.3014266755142668,0.01817,0.3351282863477985,0.6648717136522014,24.57378688423219,4.295328781431635,0.3231127088179319,0.2326073165574117,0.216959187989004,0.2273207866356523,11.36896701085349,6.023731630675479,19.40228400744047,12170.35119763426,53.46242719155764,13.164019609535364,17.27044175197084,11.198207104762346,11.82975872528907,0.564389934447029,0.7972727272727272,0.7028795811518325,0.5799220272904484,0.1144186046511628,0.7290715372907154,0.933649289099526,0.8472222222222222,0.7402597402597403,0.1179039301310043,0.5010248901903368,0.7123893805309734,0.6459854014598541,0.5333333333333333,0.1134751773049645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901880753922,0.0048851186313559,0.0070701845145714,0.0093518678350578,0.011569273311374,0.0139038739490666,0.0163867601500081,0.0187343115446623,0.0209365771914945,0.023186566935096,0.0255149093144789,0.0278142569869085,0.0299630086313193,0.0318991250643335,0.0337231606955015,0.0357655860864533,0.0378805917613077,0.0399132861039944,0.0417822955317888,0.0436680312926445,0.0583806699523849,0.072568408936326,0.0854871192414198,0.0978938624438766,0.1098460889732237,0.1251982993844787,0.1369605804726948,0.1479691243013042,0.1587764565103582,0.1691383840008578,0.1820805513676502,0.193961553855973,0.2056860186997173,0.2153831013329542,0.2246831264853446,0.2351390273623573,0.2448767747120278,0.2538327428153647,0.2617483176159511,0.2689923812797158,0.2765010004742132,0.2826193705279895,0.288658452952444,0.2940746772686992,0.3002051543513359,0.3053301648669613,0.3110346553234079,0.3162873490146217,0.3208404536274662,0.3258527709286534,0.3245034002634196,0.322749505385799,0.3217526902868702,0.3204001212488633,0.3196530506338498,0.3182359588308951,0.3166012206084118,0.3165424105683082,0.3167534810880741,0.3165728936685421,0.3173912231210417,0.3179292133060066,0.3189857011455807,0.3197099832682655,0.3200768491834774,0.3204629197156053,0.3215177659212169,0.325443971985993,0.328551984085436,0.3324395725720594,0.3361592166107535,0.3390387366859202,0.341233419249387,0.3434381614756577,0.343767572633552,0.3477594339622641,0.3499394306480921,0.3501102867455384,0.3546866333887964,0.3609926328034121,0.0,2.3106944035618304,57.36899397015035,169.70031224513448,258.16972468166074,fqhc5_100Compliance_baseline,90 -100000,95678,45079,427.76813896611554,6087,62.48040301845774,4795,49.59342795626999,1858,19.09529881477456,77.35982293729873,79.73659470235245,63.33991942654043,65.09032104670288,77.13363007372374,79.50977548131219,63.25548784591797,65.0077705581573,0.2261928635749939,226.81922104025887,0.0844315806224642,82.55048854557856,154.9361,108.95630673196426,161934.4676937227,113877.66605903582,392.60302,257.7571640771544,409819.8436422166,268883.1254595146,378.79372,184.36356820023968,392633.4685089571,190137.4044240482,3401.58915,1550.4869721280938,3520395.764961642,1585733.9919606317,1135.0678,503.0348940240491,1174624.4695750328,514077.37932891736,1819.38072,762.8512621690058,1871913.9405087896,772195.9753696956,0.38218,100000,0,704255,7360.65762244194,0,0.0,0,0.0,33851,353.2682539350739,0,0.0,34676,359.1630259829846,1595677,0,57222,0,0,0,0,0,70,0.7211689207550325,0,0.0,0,0.0,0,0.0,0.06087,0.1592705008111361,0.3052406768523082,0.01858,0.3291020216267042,0.6708979783732957,24.565582543887228,4.323243560621215,0.3363920750782064,0.2281543274244004,0.2206465067778936,0.2148070907194994,11.246887795422706,5.897590202917383,19.684703054410075,12229.043291340651,54.27058412125203,13.079994457220778,18.207114147959537,11.866207913830737,11.117267602240991,0.5639207507820646,0.7861060329067642,0.7017978921264724,0.5661625708884688,0.1097087378640776,0.740139211136891,0.9338422391857506,0.8628841607565012,0.7245283018867924,0.1556603773584905,0.4988577955454026,0.703281027104137,0.6445378151260505,0.5132408575031526,0.097799511002445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.004530665612552,0.0068381271242327,0.0087851150697731,0.0109402960793883,0.0128963306020662,0.0152131160904431,0.0173448149206219,0.0195918200576109,0.0220660446845077,0.0240334378265412,0.0262221082328802,0.0283984623923366,0.030394761228146,0.0326563450886548,0.034571499441895,0.0365746348230276,0.0385305495918769,0.0405343590809855,0.0425194880987119,0.0570628610829615,0.0711481074289304,0.0849907116843861,0.0980051764408812,0.109593519944312,0.1256890732295711,0.1386055595062462,0.1501709392606477,0.160974097473889,0.1708044866634465,0.1839019764208893,0.1963765526352836,0.2072650502764114,0.2168883051496744,0.226709100519778,0.2374432258779218,0.2475222108129827,0.2562029927261689,0.2643756379720993,0.2721174868079164,0.2788551604509974,0.2847170252572498,0.2916947608739368,0.2978483937786611,0.3035757605162292,0.3084865490167122,0.313624550179928,0.318252274228795,0.3220843030773209,0.3252511668380666,0.324758064516129,0.3235876288659793,0.3227855231657513,0.3224996391975754,0.3216631819327669,0.3204195205479452,0.3181775050607287,0.3183787331801772,0.3183620453923981,0.3190755987355562,0.3200224761191234,0.3208818126148193,0.3209317915200268,0.3223572513627021,0.3242841026379587,0.3255602350127385,0.3267576849933297,0.3310342665454431,0.3323424494649227,0.3352333452084075,0.3383489408128011,0.3414686021162333,0.343900278410529,0.3472147933063345,0.3530462579917262,0.3593992132554536,0.3594512195121951,0.3566981321550512,0.3596467754883596,0.3624620060790273,0.0,1.9991245573894092,56.78130557216895,176.2659539168685,264.58541914578177,fqhc5_100Compliance_baseline,91 -100000,95848,44997,425.96611301226943,6096,62.400884734162425,4778,49.20290459894834,1910,19.510057591186044,77.34109898624328,79.63126249378938,63.34986309044478,65.04389746567391,77.10827786567278,79.40355597966419,63.26303450693758,64.96224270595556,0.2328211205705059,227.70651412518816,0.0868285835071986,81.65475971834724,154.43384,108.74762153146816,161123.69585176528,113458.41491890092,395.85853,260.12456520727073,412356.9714548034,270745.6536335266,379.58101,184.7503068015945,392389.585593857,189995.347796166,3417.19261,1564.3335079952178,3520398.370336366,1587474.112949229,1160.50643,513.0356870146411,1191441.3133294384,515988.3591406554,1869.83312,783.317766299792,1911349.2195976968,781655.4761954256,0.38157,100000,0,701972,7323.804356898422,0,0.0,0,0.0,34196,356.09506718971704,0,0.0,34778,359.22502295300893,1594742,0,57302,0,0,0,0,0,70,0.7198898255571321,0,0.0,0,0.0,0,0.0,0.06096,0.1597609874990172,0.3133202099737532,0.0191,0.3418119013973936,0.6581880986026064,24.6373993060254,4.328881198390262,0.3292172457095019,0.2308497279196316,0.2189200502302218,0.2210129761406446,11.191457828358846,5.849817079225388,20.317565786380616,12190.734182511704,54.39839539828332,13.237592952987312,17.853359921250963,11.72783983749222,11.579602686552825,0.5606948514022604,0.7833182230281052,0.6865861411315957,0.5793499043977055,0.1221590909090909,0.7372429550647372,0.9214285714285714,0.8679245283018868,0.7377049180327869,0.1466666666666666,0.4937950937950938,0.698389458272328,0.6196692776327241,0.5311720698254364,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657181914839,0.0042962377521759,0.0064814533061497,0.008741649237517,0.010712906307808,0.0130363103476349,0.0153529549599111,0.0174547309359857,0.0195697914325986,0.0217478032263674,0.0238048900406649,0.02613252925551,0.02846050347668,0.0304545548079099,0.0321490396504822,0.0341624522654556,0.0362733946851411,0.038377056653819,0.0404904535969019,0.0426685255896704,0.0578352955898762,0.0717092748594243,0.0854266619178311,0.0983038386808801,0.1100334870790421,0.1250805386849749,0.1372073312850937,0.1489750786765331,0.1599667047285688,0.1699908900916349,0.1829550468687781,0.1954213167228999,0.2064178796212755,0.2167559296097934,0.2275567681746171,0.2384671629885668,0.2473863319386331,0.256167666017932,0.2641338144844647,0.271730789054715,0.2791512893783912,0.2853634290392374,0.2918490476753815,0.2975414549985622,0.302299311299785,0.3067059563292934,0.3117725099501864,0.3166157760814249,0.3211129084438693,0.3250448738253616,0.3238338830181059,0.3225664507789832,0.3218803707773364,0.3210028354840576,0.3204975598143078,0.3184625522980491,0.3164318207034284,0.3171020596170297,0.3179502135909005,0.3182389485402377,0.3189055757598598,0.3193233933570251,0.3195737332041616,0.3207148001440403,0.3226751931787903,0.3236513434089,0.3243722980904119,0.3276314541372878,0.3298425639583919,0.3314263011521652,0.3331053975200583,0.3340069130550385,0.3360515835387824,0.3379594326673784,0.3406916153481762,0.3428844317096466,0.3476249228871067,0.3492416582406471,0.348111658456486,0.3426600229973169,0.0,2.5238832684037478,57.363679665077335,175.0893561717553,262.96031128334363,fqhc5_100Compliance_baseline,92 -100000,95629,45009,426.6592769975635,5921,60.45237323406079,4628,47.6842798732602,1849,18.84365621307344,77.31769350596971,79.73951878054064,63.289715480586615,65.08103730783525,77.09072028767365,79.51868030808474,63.20453568721008,65.00171493402776,0.2269732182960666,220.83847245589536,0.0851797933765396,79.32237380748575,155.12442,109.08346219324616,162214.83022932376,114069.4372975208,390.78476,257.3167534315804,407943.60497338674,268375.05718096014,378.63919,184.5462861021499,391859.7182862939,189797.854957244,3302.7169,1514.6576034809632,3407371.989668406,1537584.2720105457,1118.78234,495.87526433715215,1151808.0080310367,500441.7890481147,1806.87408,756.1258785207299,1845048.78227316,750884.662882067,0.38043,100000,0,705111,7373.4013740601695,0,0.0,0,0.0,33790,352.6022440891361,0,0.0,34629,357.95626849595834,1591630,0,57070,0,0,0,0,0,72,0.7529096822093716,0,0.0,1,0.0104570789195746,0,0.0,0.05921,0.1556396708987198,0.3122783313629454,0.01849,0.3294741919922817,0.6705258080077183,24.41187106694713,4.375895599125295,0.3243301642178046,0.2327139152981849,0.2242869490060501,0.2186689714779602,11.554013197338035,6.038378315627814,19.532331583630373,12156.901052247193,52.51698172976585,12.849039634466427,17.159154824387834,11.45119208992612,11.057595180985482,0.5648228176318064,0.7845868152274837,0.7081945369753497,0.5529865125240848,0.1304347826086956,0.7309486780715396,0.91871921182266,0.8743961352657005,0.6798418972332015,0.1549295774647887,0.5008976660682226,0.7034277198211625,0.6448942042318307,0.5121019108280255,0.1239048811013767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185752492098,0.0043402425668275,0.0065380710659898,0.0087196008089513,0.011089971206772,0.0133251833740831,0.0157713259747413,0.0179200850029117,0.0197824240377431,0.0219561696631747,0.0242057178052661,0.0263325656000658,0.0286785225154719,0.0308231896018155,0.0329906493774861,0.0349252341284213,0.0368596223832778,0.0387859398371281,0.0410036528634911,0.0431023694310028,0.0575202742245631,0.0714323137698699,0.0854069724693549,0.0983273294149866,0.1109057496514722,0.1262975045545057,0.1376099987246524,0.1485070410523735,0.1592207458758585,0.1691856530566208,0.1822604830792798,0.1941744416631449,0.205640461432882,0.2151055813545956,0.2245489513187043,0.2350494192818396,0.2449374161823871,0.2533336336606901,0.2625340599455041,0.2700491560963872,0.277211672070403,0.2832299590403745,0.2900203714231571,0.2950349675515517,0.3003393046079755,0.3052884615384615,0.3102067377484107,0.3154212146655472,0.3196471822503141,0.3239306419449836,0.3232583209809999,0.3225775380466191,0.3224261546913076,0.3207560792468087,0.3202267196866283,0.3177349707530701,0.3154478238153291,0.3159948837361844,0.3170448926702017,0.3166364379956613,0.3178589406566363,0.3188733390989857,0.3198280516675665,0.319886388851906,0.3208474495395333,0.3241157889285899,0.3255728429985856,0.3286181648231812,0.3323688338853059,0.3353184776178268,0.3387235975471269,0.3427829588808817,0.3460788629645934,0.3463170657775083,0.3448696304633277,0.3448683122711704,0.3519877675840978,0.3557422969187675,0.3525869148644949,0.3496583143507972,0.0,2.785237215304805,55.6393367854869,170.6160864854159,248.8071537820649,fqhc5_100Compliance_baseline,93 -100000,95722,45007,426.2551973423038,5933,60.93687971417229,4650,48.11850985144481,1819,18.65819769749901,77.34880342590687,79.7061714600945,63.338894218876014,65.07699376751208,77.11774088088633,79.47580080860179,63.25317537606185,64.9938426189436,0.231062545020535,230.37065149270572,0.0857188428141668,83.15114856847572,156.27238,109.90263233438246,163256.492760285,114814.39202522144,395.65392,259.6569421289141,412873.0803785963,270798.13640428975,374.35779,181.65553212563145,388391.49829715217,187702.5473470665,3329.90229,1509.5529630064216,3447094.795344853,1545567.854318602,1108.85324,490.118789482749,1145057.332692589,498757.7764570285,1788.56242,751.6387252983184,1837123.29454044,758463.0381731843,0.37997,100000,0,710329,7420.749670922046,0,0.0,0,0.0,34095,355.69670504168323,0,0.0,34141,354.0147510499154,1589295,0,57015,0,0,0,0,0,84,0.8670942938927311,0,0.0,0,0.0,0,0.0,0.05933,0.1561439060978498,0.3065902578796561,0.01819,0.3349428617415097,0.6650571382584902,24.67671411219693,4.431934164230783,0.3193548387096774,0.2324731182795699,0.2221505376344086,0.226021505376344,11.014892591262464,5.5628224591315965,19.414286413339124,12178.515256729568,52.47607634994098,12.972767474069716,16.754513272198366,11.312054321949182,11.436741281723704,0.5552688172043011,0.7835337650323775,0.6902356902356902,0.5672797676669894,0.1179828734538534,0.7152209492635024,0.9168831168831169,0.8225806451612904,0.7213114754098361,0.1764705882352941,0.4982497082847141,0.7097701149425287,0.6460017969451932,0.5196451204055766,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0043993025990349,0.0065445690223732,0.0087262162354351,0.0111639824304538,0.0133150099251794,0.0156359892770138,0.0178421965907931,0.0200909508967349,0.0218926553672316,0.0240967560088146,0.0262741958659194,0.0283452423790674,0.030442794930662,0.0322457526587788,0.0343569819587096,0.0366121350176019,0.0385660925503216,0.0409652834818411,0.0430737171138317,0.0583124477861319,0.0720221026853925,0.0856168694922366,0.0987143879139839,0.1112072148093454,0.1264174494372514,0.1387642059020151,0.1497530022996337,0.1604452896305634,0.1711450791096808,0.1841702751028673,0.1967087183260121,0.2081502588419541,0.2183046992049518,0.2275287697757828,0.2372826893884832,0.2469785313763599,0.2554908869851062,0.2638396911898274,0.2710786784585071,0.2774382480264833,0.2846815230742235,0.2903588505420632,0.295641861133739,0.3003630535352186,0.3058504741963296,0.3102814718528147,0.3145714721431476,0.3194124796359028,0.3231545791214729,0.3220220395312226,0.3206309477969085,0.3193437081895641,0.3176781612516433,0.3166426459444601,0.3150370415722769,0.313978324499644,0.3150570416994492,0.3162878787878788,0.3180317924747105,0.3190085425350954,0.3196128294596566,0.3201011747982775,0.3212482687754099,0.32139595250685,0.32296875,0.3229847339135397,0.3267329849524649,0.3303502491752649,0.3330419927694569,0.3373246195329281,0.3412507355694645,0.3454834605597964,0.3491342824163139,0.3485122159901131,0.3478521718262539,0.3521914827479018,0.3525654234494127,0.3552704963747908,0.351686700271423,0.0,1.6934563201831685,53.92724789196023,172.20727999159027,258.8473002148384,fqhc5_100Compliance_baseline,94 -100000,95628,45122,426.4023089471703,6032,61.530095787844566,4733,48.81415485004392,1874,19.22031204249801,77.26744378178137,79.68396420667484,63.28338998351626,65.06996454345077,77.02703051388023,79.44455910868756,63.19271751288439,64.98226444982748,0.2404132679011326,239.4050979872873,0.0906724706318726,87.70009362328324,154.44286,108.61302470110324,161503.80641653072,113578.6848005848,391.01306,257.6499944456058,408171.0168569875,268710.74836408347,378.42917,184.29865717287527,391248.1595348642,189306.76041884292,3406.99217,1559.4827761629997,3517529.656585937,1585554.3001662688,1126.00064,499.8224953984652,1161985.6422805036,507179.3673385044,1845.46482,787.3486554879825,1894560.923578868,792532.3652098718,0.38105,100000,0,702013,7341.082109842306,0,0.0,0,0.0,33778,352.4804450579328,0,0.0,34558,356.9456644497428,1594131,0,57185,0,0,0,0,0,72,0.742460367256452,0,0.0,0,0.0,0,0.0,0.06032,0.158299435769584,0.3106763925729442,0.01874,0.3221434200157604,0.6778565799842395,24.611569147309996,4.490274176830323,0.3120642298753433,0.2408620325375026,0.2174096767377984,0.2296640608493556,11.16475037351914,5.532050726194137,20.173485094883336,12222.604685394674,53.71014034934925,13.686305057960686,16.69026609690955,11.46747175735308,11.866097437125935,0.5582083245298964,0.7850877192982456,0.6980365605958023,0.5801749271137027,0.1094756209751609,0.7238979118329466,0.9080717488789236,0.8497409326424871,0.7446808510638298,0.1238938053097345,0.4959302325581395,0.7060518731988472,0.6443629697525206,0.5314861460957179,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0045528290407625,0.0069038336582196,0.0092980245508495,0.0116379617290104,0.0140241170000407,0.0161306768358586,0.018693401668215,0.0207670835080113,0.0232155657962109,0.0255681818181818,0.0277461041429114,0.0298438368001975,0.0321593438298573,0.0343211635132484,0.036215327674796,0.0382380661398402,0.0403138752802457,0.0424602390338787,0.0446536552817048,0.0588610306951078,0.0729906365864387,0.0862702679996639,0.0992523954933136,0.1114383742412246,0.1273482008598598,0.1384719965161605,0.1496355032612866,0.1597578065661806,0.1694270799767996,0.1814818410294577,0.1945609187930007,0.2060027433647586,0.2157547366001554,0.2257666685018994,0.2361649786130626,0.2450683784538096,0.2539757571664922,0.2625572072634771,0.2700270542920029,0.2781907871882165,0.284380593609977,0.2907846758535777,0.2963647270545891,0.3013195500152021,0.3076068576506745,0.3121015119061039,0.3164186324808086,0.3204386942881589,0.3249203432182662,0.3236885787932361,0.3223125689084895,0.3212139168712435,0.3204545454545454,0.3201310791688389,0.3187718652181918,0.3165037140499016,0.3177912497740976,0.3182750837835989,0.3185050201879444,0.3196915109209637,0.3208228362857312,0.3221108379042935,0.3220244093606539,0.3242272266962434,0.3257201161604269,0.327176705680845,0.3287451178026962,0.3322297749445286,0.3361810850732564,0.339531458553873,0.3420302329334552,0.3438078814587724,0.3476685934489402,0.3466717238763512,0.3494120470362371,0.3524208566108007,0.3555692814494544,0.3561488213575688,0.356027232679215,0.0,2.6040304648365167,56.22434134200438,172.34322188062907,261.69101727408986,fqhc5_100Compliance_baseline,95 -100000,95840,45332,429.3301335559265,6040,61.85308848080133,4766,49.165275459098496,1852,18.896076794657763,77.40182060844235,79.71474507152395,63.36325590393732,65.07553562595722,77.17180490348827,79.48848686458489,63.277550934213146,64.99393934792685,0.2300157049540843,226.25820693906465,0.0857049697241763,81.59627803036074,155.15676,109.13591812107686,161891.4440734558,113873.0364368498,395.21444,259.6298866784809,411804.1318864775,270334.43935567705,378.65549,184.33887476452705,392067.6857262104,189953.15044019572,3416.51753,1563.6229747672594,3521342.779632721,1588386.8908814527,1126.03803,502.64204006048783,1159128.7458263773,508707.8356944173,1817.5515,763.53859958146,1855651.314691152,763191.6342068583,0.38282,100000,0,705258,7358.702003338898,0,0.0,0,0.0,34037,354.57011686143574,0,0.0,34651,358.48288814691153,1595130,0,57309,0,0,0,0,0,66,0.6886477462437396,0,0.0,0,0.0,0,0.0,0.0604,0.1577765007052923,0.3066225165562914,0.01852,0.3276160503540519,0.672383949645948,24.209095079144543,4.47216067585222,0.331934536298783,0.2305916911456147,0.2104490138480906,0.2270247587075115,11.40745332841864,5.915737301324212,19.821720641256988,12210.150609929298,54.05027151094065,13.106998407600065,17.85865087890132,11.194721753577538,11.88990047086171,0.5589592950062946,0.7761601455868972,0.6833122629582806,0.6051844466600199,0.1136783733826247,0.7358490566037735,0.9138755980861244,0.8468677494199536,0.7520325203252033,0.1869565217391304,0.4908456843940715,0.6916299559471366,0.6220677671589921,0.5574636723910171,0.0938967136150234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377933939528,0.0048850196110227,0.0070303940267012,0.0094051210172968,0.0117424589013938,0.0139969054114581,0.0163175865056311,0.0181465605225556,0.0202485843367336,0.0223329887516248,0.0243657424017221,0.0263681898427556,0.0284521925045741,0.0304359465414633,0.0327055571599488,0.0346149474576096,0.0367675220222137,0.0387498833459492,0.0408716515886452,0.0428153652419161,0.0572787384493439,0.0709932362503528,0.0840319403110198,0.0967992688845236,0.1092984802687702,0.1248547831780833,0.1371927966101695,0.1480489386353731,0.1583974557368651,0.1691660061269521,0.181686187203562,0.1940983889963371,0.2059270846912614,0.2172089059802914,0.2268240673569434,0.2370194915160437,0.2464762032204826,0.2553148433371932,0.2647355706524821,0.2727470414539794,0.2791918677938268,0.2855773389915711,0.2919948903555461,0.2970738370839025,0.3022755974353993,0.3066983642096965,0.3119394583776346,0.3165990770521605,0.321119434848426,0.3261032950514893,0.325473474658345,0.3242830826757581,0.3233792356490794,0.3219348976736807,0.3210918040564583,0.3185259969712266,0.3169767772736614,0.3175622542595019,0.3167462482946794,0.3168963920646793,0.3175074738415545,0.3194915254237288,0.3221159868063964,0.32325213399006,0.3246989538196356,0.3269435293507302,0.3281117217154835,0.3316905801621959,0.3346812144873984,0.3369505169284192,0.340066270255549,0.3432701471989833,0.3475368685283966,0.3505068845513693,0.3549883990719257,0.356146724481425,0.3577063106796116,0.3623363544813696,0.3683206106870229,0.3699466056445461,0.0,2.13908224131286,58.354823208196166,172.87600345362085,258.52062217669373,fqhc5_100Compliance_baseline,96 -100000,95682,44816,424.6253213770615,5970,61.025062185154994,4680,48.18043101105746,1844,18.739156790200877,77.32145341825886,79.70853737116592,63.3143933609397,65.08008188738211,77.09262541758154,79.48644413049492,63.22859375684618,65.00044184675448,0.2288280006773106,222.09324067100056,0.0857996040935162,79.64004062762342,155.26808,109.2433613890356,162275.11966723102,114173.36739306829,391.50097,256.6590999439086,408434.50178717,267508.83042012714,372.38426,180.8340205952597,385233.78482891247,185930.3127083604,3338.60152,1521.0277745470369,3440115.235885537,1540565.8840467562,1102.72099,488.4000947664589,1135259.8503375766,493235.0966701131,1806.8405,762.1098768577227,1839625.1541564765,754330.715294125,0.37942,100000,0,705764,7376.141803055956,0,0.0,0,0.0,33780,352.29196714115506,0,0.0,34133,352.7413724629501,1595993,0,57237,0,0,0,0,0,55,0.5748207604356096,0,0.0,1,0.0104512865533747,0,0.0,0.0597,0.1573454219598334,0.3088777219430486,0.01844,0.3278976818545164,0.6721023181454836,24.53333342780532,4.407915852498263,0.327991452991453,0.235042735042735,0.2177350427350427,0.2192307692307692,11.235697213921744,5.801320058124144,19.68254860954579,12126.275165183371,52.981465375201694,13.074569163150452,17.215257032991754,11.382982293334068,11.308656885725409,0.5551282051282052,0.77,0.6846905537459284,0.5799803729146222,0.1062378167641325,0.7217675941080196,0.9194805194805196,0.8571428571428571,0.708,0.1291866028708134,0.4962406015037593,0.6895104895104895,0.6283491789109766,0.5383615084525357,0.1003671970624235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277458053011,0.0045127269039651,0.0067402955985057,0.0087397485797908,0.010764284551522,0.0130388721375601,0.0152768287832587,0.017418827853788,0.0195360819472699,0.0216389952300038,0.0237033391771496,0.0259090769056983,0.0280109451508044,0.0302430780961802,0.0324731626754748,0.034770111971547,0.036656101754604,0.0384407820997135,0.0407770625123495,0.0428977894506456,0.0575719911009912,0.0710666806238877,0.084016414949779,0.0965080300574627,0.1081648588190604,0.1239216267425982,0.1360012738177379,0.1473216663293674,0.1584139368353551,0.169321363065933,0.1824959062311471,0.1942796518425497,0.205460379616033,0.2156970001969236,0.2251559457407835,0.2352341933340715,0.2453200651509404,0.2540439068805432,0.2620621619476352,0.2696108178664254,0.2764773910026599,0.2827327362439492,0.2896474988755001,0.2951963181360564,0.3007252979553158,0.3061709542750883,0.3106705028771578,0.3152522119393878,0.32016908837065,0.3240052700922266,0.322754168908015,0.3227370097769966,0.3216952346133835,0.3200046176712506,0.3188420865019011,0.3167006265990532,0.313863643560594,0.314494418910046,0.3153634671539079,0.3174858121854588,0.3172905859660293,0.3187564193726791,0.3194485124900623,0.3215204024594745,0.3214870067372473,0.3229583169998693,0.3236817258447541,0.3268818560080696,0.3290760678347759,0.3311360838661001,0.3345477730212223,0.335002663825253,0.3380460280225702,0.3403813624481008,0.3424463153911645,0.348065636603186,0.3548387096774194,0.3571866693927622,0.3551505109085888,0.358974358974359,0.0,2.794827526585875,52.868087153698006,178.7313758272594,256.3322547213366,fqhc5_100Compliance_baseline,97 -100000,95708,44906,425.0637355289004,6069,62.18915869101851,4768,49.26442930580516,1887,19.350524512057508,77.3455376358958,79.73129371093908,63.32130932583449,65.08676889913629,77.1161508380444,79.5032022109539,63.23623274772208,65.0045289711461,0.2293867978513901,228.09149998518308,0.0850765781124067,82.23992799018731,154.46002,108.66389050321828,161386.73883060977,113536.8939934157,390.55347,256.5191190873439,407528.0645296109,267482.9785256654,375.28837,182.94224517321817,388438.6362686505,188365.86921943267,3379.3259,1540.479129950884,3495513.69791449,1574204.3297852683,1122.73008,498.3919282861246,1157519.0161741967,505191.6808373879,1841.85784,769.4198431964343,1890990.5963973757,776408.9471041443,0.3804,100000,0,702091,7335.760855936808,0,0.0,0,0.0,33665,351.17231579387305,0,0.0,34288,354.557612738747,1601699,0,57343,0,0,0,0,0,79,0.8254273414970535,0,0.0,1,0.0104484473607221,0,0.0,0.06069,0.1595425867507886,0.3109243697478991,0.01887,0.3392857142857143,0.6607142857142857,24.332284504630504,4.30788668828699,0.3160654362416107,0.2491610738255033,0.2193791946308725,0.2153942953020134,11.29488912919775,5.947931698939774,19.945274502628862,12138.333165655687,53.911346867814935,14.0591302777709,16.989871643774492,11.644641056592004,11.217703889677551,0.5606124161073825,0.7803030303030303,0.681486396814864,0.5688336520076482,0.1207400194741966,0.72890625,0.9285714285714286,0.8350253807106599,0.7458333333333333,0.1548672566371681,0.4988532110091743,0.69921875,0.6271338724168913,0.5161290322580645,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021783402060811,0.0044322734418581,0.0068125285547489,0.0090855505193194,0.011353463009685,0.0135058056630678,0.0159388958006159,0.0181060629269936,0.0203902159685863,0.0223756029124125,0.0245118148999015,0.0266844700082169,0.0288944206714944,0.031088349854708,0.0329411764705882,0.0350467289719626,0.0371774552762153,0.039179259382265,0.0411913353646488,0.0431353345072256,0.0581084468209541,0.0715324800368389,0.0841169556273876,0.0970372240809713,0.1090824710734213,0.1239158945720692,0.1353310060163619,0.1464492630143989,0.1572004318869397,0.167393031194315,0.1801041363474661,0.1914312944030497,0.2031239795363013,0.2142575774154721,0.2240494903463003,0.2343646114977173,0.243967229948434,0.2527139980425465,0.2608957052430973,0.2684752747252747,0.2759789461507316,0.2835316671732167,0.2899560117302053,0.2949830613979434,0.3003311539441284,0.3046210993714714,0.3095746674161514,0.3148216302651116,0.3186553580419038,0.3228651803554527,0.3228926329344851,0.3221585927224901,0.3221245647534539,0.3221095685235324,0.3217193096711169,0.3198114358943064,0.3176067350065549,0.3185882816217369,0.3187661107222725,0.3195406814772484,0.3209235155107093,0.322117763483424,0.3235929600805521,0.3247763864042934,0.32674029692726,0.3259145227782706,0.3271619004215563,0.3300245021046679,0.3332982566908695,0.3351068053680616,0.3373028498704604,0.3399014778325123,0.3440050219711236,0.3425834410400669,0.3467018967632349,0.3452909418116376,0.3456370656370656,0.3476210008203445,0.3474669603524229,0.3533307362680171,0.0,2.1517552607190904,56.07231882001811,172.79477362676113,266.7753871722272,fqhc5_100Compliance_baseline,98 -100000,95598,45432,430.1554425824808,6060,61.957363124751566,4760,49.0805246971694,1876,19.15312035816649,77.23812690061078,79.6709367635558,63.25655152000609,65.0549062918974,76.99641601108858,79.43270393238464,63.16561984754893,64.96844461259454,0.2417108895221957,238.23283117116037,0.0909316724571596,86.46167930285742,153.43966,108.00000809843644,160505.09424883366,112973.08322186283,394.25722,258.9135087211751,411718.6447415218,270142.76315527014,382.053,186.07750489654745,395695.4538797883,191497.03178812712,3403.1819,1568.0477731838969,3510022.8038243474,1590702.9327407049,1158.64303,517.6566754850724,1192231.1763844432,521846.1467984156,1840.84954,782.2963171164894,1881595.3681039352,780255.0948227908,0.38375,100000,0,697453,7295.686102219712,0,0.0,0,0.0,34016,355.080650222808,0,0.0,34949,361.5766020209628,1593920,0,57325,0,0,0,0,0,66,0.6903910123642754,0,0.0,1,0.0104604698843072,0,0.0,0.0606,0.157915309446254,0.3095709570957096,0.01876,0.3266781952523188,0.6733218047476812,24.35180797179303,4.389937728132045,0.3102941176470588,0.242016806722689,0.220798319327731,0.226890756302521,11.201016467377238,5.775814836017082,20.2275590792093,12299.158453783895,54.44198865326774,13.998252990943431,16.740642141513852,11.909693187784912,11.793400333025554,0.5571428571428572,0.7890625,0.6885578876100203,0.566127497621313,0.1212962962962962,0.733131159969674,0.925,0.8376288659793815,0.7137681159420289,0.1767441860465116,0.4896832316187154,0.7050561797752809,0.63544536271809,0.5135483870967742,0.107514450867052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023005513215501,0.0046757883419715,0.0070059296564048,0.0094121951963245,0.0118160723009281,0.0139877950630112,0.016247641389158,0.0185714869447963,0.0210604913773704,0.0230659715465057,0.02546581301814,0.0276707458668557,0.0298779358185298,0.031720668432935,0.034057933598389,0.0362874437373894,0.0381286088966754,0.0402019446522064,0.0420869637633636,0.0441808546152562,0.0593708508881059,0.0732198061304689,0.0863434827376074,0.0988708895957532,0.1115687641256363,0.1273039277996695,0.1396500249678605,0.1509908642212201,0.1615554176386243,0.1713199196467896,0.1837153092494281,0.1953467192853115,0.2071332832063813,0.2173446129569562,0.2275171927349673,0.2384260286741533,0.2474271779497964,0.2567893715883971,0.2657044392124748,0.2733922829581993,0.2804660122072919,0.2876863352216084,0.2942398063321783,0.3008741027521612,0.3067669356214806,0.3116608560195831,0.3153784340314399,0.3191790787609603,0.3237480183996465,0.3275832395578208,0.3257856197141235,0.3243858995070626,0.3230382322190511,0.3207952090251294,0.3199886766590184,0.3187356904685075,0.3170138723363684,0.3176806052314944,0.3192990285263122,0.3202630777226214,0.3197480966256227,0.3198936465732767,0.3209178093715824,0.321779733309388,0.3224211135771495,0.3242444839485517,0.3251967377307197,0.3279982321558228,0.3328052944696729,0.3344302592974387,0.3371976266544956,0.3375457972707482,0.3409790737133161,0.340827952905431,0.3420436452186944,0.3433642882332197,0.3448068540508041,0.3497017892644135,0.347920630606143,0.3528966300643695,0.0,2.718816935462342,57.33823400675965,180.79965267131303,254.714299288648,fqhc5_100Compliance_baseline,99 -100000,95718,45073,427.3072985227439,5871,60.07229570195784,4555,47.00265362836666,1778,18.19929375874966,77.33641368994157,79.71336803421676,63.332022412709286,65.09012884318743,77.11049089887044,79.48892019815645,63.24736275537304,65.00853172455085,0.2259227910711274,224.44783606030683,0.0846596573362461,81.59711863658003,156.618,110.18098141136058,163624.39666520405,115109.99123608996,392.56923,258.0751445816282,409541.3924235776,269030.6364337201,375.20559,182.28492871221428,388455.3480014208,187629.3674576275,2622.28536,1206.263436803125,2708219.227313567,1228850.7457355189,1065.15056,474.6222902908127,1095868.6558432062,478926.08840949135,1745.07922,736.73695798751,1788659.4997806055,740386.2077561986,0.38064,100000,0,711900,7437.472575691092,0,0.0,0,0.0,33905,353.61165089115946,0,0.0,34231,354.0713345452266,1589537,0,57008,0,0,0,0,0,74,0.7731043272947616,0,0.0,0,0.0,0,0.0,0.05871,0.1542402269861286,0.3028444898654403,0.01778,0.3332254933678421,0.6667745066321579,24.60638754036705,4.391382883331096,0.3185510428100988,0.236443468715697,0.2221734357848518,0.2228320526893523,11.024522599914038,5.6002986625604185,19.009351850149844,12125.459503727214,51.74509776476446,12.776933386726672,16.418569618076102,11.567351345096762,10.982243414864914,0.5571899012074644,0.7845868152274837,0.6919365954514128,0.5721343873517787,0.1083743842364532,0.7310574521232306,0.9224598930481284,0.8384401114206128,0.7416974169741697,0.1573604060913705,0.4949314251639833,0.7112375533428165,0.6437728937728938,0.5101214574898786,0.0965770171149144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0044929461759247,0.0068023757551144,0.0087812017237173,0.0111797198457829,0.0132096225531134,0.0155212678081563,0.0175821931794976,0.0197110813491049,0.0218966893925434,0.0237199528471118,0.0257281603236039,0.0278780400020566,0.0302505948150665,0.0325140333498431,0.0346570471741017,0.0368096253805214,0.0390273253522003,0.0408547168438665,0.0426648889629598,0.0573702017459588,0.07116849418264,0.0844354018311292,0.0970091984231274,0.1096600790513834,0.1251030459320636,0.1365997413445841,0.1479740508348399,0.1593599555939838,0.1689273163623896,0.1809199905288761,0.1935825754052797,0.2052552650453152,0.2151096740365289,0.2248313298024306,0.2350534614491535,0.2443728828668211,0.2538856609838055,0.2626316445794742,0.2699438427138494,0.2770798904438871,0.2836821451929365,0.2899925573263081,0.2963259932982288,0.3015403274711946,0.3063635021408534,0.3108498169413587,0.314404432132964,0.319396847155586,0.3233754072198261,0.3222611036339166,0.320586088656926,0.3188799954906713,0.3184138599256678,0.3181622055913466,0.3161760196258816,0.3145324881141046,0.3150336033652661,0.3161557269136731,0.3163941749307603,0.3164974333995279,0.3172292559600229,0.3185838857405742,0.3182193277873185,0.3202007106501489,0.3221626684706249,0.3231341149556763,0.326917615877323,0.3303643724696356,0.3338383033009089,0.3370363569592361,0.3389375302143202,0.3416180898084683,0.3437741089338065,0.3436018957345971,0.3455289445179925,0.3487258687258687,0.354301948051948,0.3628922237380627,0.3631221719457013,0.0,2.2690422713524905,52.33696207052603,173.83323974276502,250.44468909322777,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95607,44904,425.5755331722573,5994,61.28212369387179,4710,48.65752507661573,1878,19.287290679552758,77.26635035352784,79.70558672473081,63.26822878755484,65.072568603254,77.02697556035992,79.4665737462784,63.17769239211851,64.98450671981414,0.2393747931679257,239.01297845240776,0.0905363954363309,88.06188343986321,155.47224,109.3736548450102,162615.95908249397,114399.21223865428,392.93987,258.676345287438,410421.67414519854,269988.93939506315,377.97642,184.1387571840361,391456.8912318136,189610.62088942417,2710.50324,1264.798631377613,2802811.9698348446,1290679.3763820778,1139.64622,516.9907567309474,1177284.7071867122,526019.1478981107,1835.92772,787.5617032010101,1887917.286391164,796150.3745935763,0.37896,100000,0,706692,7391.634503749726,0,0.0,0,0.0,33935,354.3255200979008,0,0.0,34571,357.68301484200947,1586933,0,56962,0,0,0,0,0,57,0.5961906554959365,0,0.0,0,0.0,0,0.0,0.05994,0.1581697276757441,0.3133133133133133,0.01878,0.3314249363867684,0.6685750636132316,24.57897790419815,4.430020340421225,0.3343949044585987,0.2205944798301486,0.2201698513800424,0.2248407643312102,11.329019599015307,5.969816087753634,20.166667014331697,12112.661675916384,53.89636204748323,12.66925967419236,18.03698129771842,11.484961109388774,11.705159966183665,0.5558386411889596,0.7901828681424446,0.6831746031746032,0.562198649951784,0.1303116147308781,0.7260377358490566,0.9240196078431372,0.8571428571428571,0.7095435684647303,0.1735537190082644,0.4892171344165436,0.7036450079239303,0.6170026292725679,0.5175879396984925,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0048693887902612,0.0070277351803142,0.0089474540426224,0.0109729036460984,0.0133208312524842,0.0154821195297191,0.0176471189315676,0.0197061471719734,0.0218465006660518,0.0242210271357609,0.0264580720761466,0.0286176049741103,0.0308279204041653,0.032814485059442,0.0349109119880802,0.0372612224168489,0.0392281088042541,0.0410586790449824,0.0432288679146894,0.0579158651835744,0.0720243958669545,0.0847890253253642,0.0979134409791344,0.1094928286263492,0.125217151815601,0.1369081150023914,0.1479182001472141,0.1589916506101477,0.1683125758927132,0.1819927504962458,0.1942495961490508,0.2057407407407407,0.2152187253440869,0.225154902868735,0.2356244035597771,0.2445745703238495,0.2531990628097684,0.260840408724611,0.2686318833262573,0.2754785187931594,0.282002319560455,0.2887812044595571,0.2943201170516418,0.2989700750252313,0.3045657084315637,0.3095733480397072,0.3138314137192947,0.3187286114279788,0.3221807042792822,0.3207021041571247,0.3203737854724615,0.3191888159192761,0.3175924721391093,0.3172436354984534,0.314885145482389,0.3126454984559347,0.3133994874153907,0.3141816814250059,0.3149403494965032,0.3159101157372614,0.3170997601633268,0.3182887386062922,0.3201128703558552,0.3217257096004051,0.322954248366013,0.3230179613316554,0.3269637724645463,0.3313484373348367,0.3332004623908797,0.3386581469648562,0.3435540440004251,0.3432987078794021,0.3456724569521353,0.3489413300998041,0.3527546105955597,0.3559399180700955,0.3568556493767591,0.3603603603603603,0.3595632530120481,0.0,2.415434978845567,57.86152176341845,178.42891203330896,249.37060715820556,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95694,45181,427.9474157209438,6151,63.05515497314356,4865,50.138984680335234,1940,19.844504357639977,77.34534288058313,79.71525904038619,63.32656324425341,65.07506747074348,77.1007523303041,79.47379261589776,63.23587597335217,64.98854892085834,0.2445905502790282,241.46642448842212,0.0906872709012347,86.51854988514174,154.94424,108.90661731150529,161916.12849290448,113806.92343459908,394.27818,259.19262961612765,411300.1860095722,270136.11053579923,382.22503,186.5188710406129,395471.6283152549,191799.66388352556,2789.27288,1283.09333181486,2876180.199385541,1302226.191626288,1159.62507,512.9876238619713,1193934.3532509874,518299.1148846215,1902.87934,798.1482777521584,1948018.6009572176,798903.5699825716,0.38262,100000,0,704292,7359.824022404749,0,0.0,0,0.0,34009,354.6512843020461,0,0.0,34898,360.66002048195287,1591857,0,57182,0,0,0,0,0,73,0.7628482454490354,0,0.0,0,0.0,0,0.0,0.06151,0.1607600229993204,0.3153958705901479,0.0194,0.3412747524752475,0.6587252475247525,24.307251621334288,4.305892023599704,0.3169578622816033,0.2378211716341212,0.2170606372045221,0.2281603288797533,10.885809834060948,5.654857368332228,20.787560913211777,12278.554669703975,55.2131246965155,13.727298754624728,17.388852947787512,11.797524518457177,12.29944847564608,0.5603288797533402,0.7891097666378565,0.6984435797665369,0.5776515151515151,0.1135135135135135,0.7324492979719188,0.9325581395348838,0.8643617021276596,0.7551020408163265,0.1212121212121212,0.498744069215741,0.7042640990371389,0.6449399656946827,0.5240443896424167,0.111490329920364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0043885431658322,0.0066352826589829,0.0084602884420069,0.010514755231955,0.012757205835938,0.015106571664475,0.0170778763410675,0.019452906180361,0.0214963507385531,0.0234453488610501,0.025765044156911,0.0281520643475756,0.0305761880724021,0.0326628757778718,0.0350327689222435,0.0370562160818592,0.0392598435002802,0.0415696223590084,0.0433106150607557,0.0576218079273069,0.0716857507692951,0.0855247969441937,0.098771017908626,0.1114464506189124,0.1273931863642617,0.1385984096482753,0.1509916281447713,0.1614406326814149,0.1715505405869229,0.1844177953044359,0.1962990233232995,0.207458268950358,0.2179029644874545,0.2275755740322669,0.2378978173393488,0.2476479582156847,0.2564067949150636,0.2643723823252329,0.2719410780967217,0.2784616808589411,0.2858579480343319,0.2929306079937508,0.2986088644451634,0.3043367346938775,0.3098199208687185,0.3157209558501383,0.3194954799171,0.3234714770753959,0.3265470591343867,0.3252201351150905,0.3242606322868719,0.3236927250377948,0.3236082339818342,0.3232442094287629,0.321869772723785,0.3206805868001647,0.321140080120838,0.3216204690831556,0.323167469234885,0.32358331774827,0.3238444694324436,0.3257307861312799,0.3263794068270845,0.3277088104134024,0.3279505374099968,0.3289208306110274,0.3327488492970535,0.336269882887607,0.3386212067400655,0.3408222666909223,0.3438825275657337,0.3490897677338355,0.3494058500914077,0.3535486293653774,0.3555924564108647,0.3532741738066095,0.3558120696638315,0.3583608360836083,0.3589243959469992,0.0,2.733010430007904,55.66824526925351,186.84965940588796,264.5986365964523,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95674,44883,426.1763906599494,5917,60.758408763091325,4611,47.714112507055205,1825,18.80343667035976,77.2498286400838,79.64916973179938,63.26585613190741,65.03939363601324,77.01400333719408,79.41249351568025,63.177537184191046,64.95294075775577,0.2358253028897223,236.67621611912185,0.0883189477163668,86.45287825747516,153.78308,108.17760162612409,160736.54284340574,113068.9650543764,388.9967,256.23129381957966,406121.1300875891,267352.59717329644,373.73616,181.48185783485292,388025.5241758471,187698.02441564505,2661.50176,1222.3970922415217,2755964.253611221,1251788.9627709952,1132.90331,501.19055002646746,1171013.8491126115,510737.5358263145,1792.06774,765.0990478010036,1847548.299433493,776152.7840267809,0.38018,100000,0,699014,7306.206492882078,0,0.0,0,0.0,33592,350.62817484374017,0,0.0,34056,353.3248322428246,1593753,0,57297,0,0,0,0,0,74,0.7734598741559879,0,0.0,0,0.0,0,0.0,0.05917,0.1556368036193382,0.3084333276998479,0.01825,0.3293211362542128,0.6706788637457872,24.600172900927127,4.403043969796867,0.3131641726306658,0.2379093472131858,0.2235957492951637,0.2253307308609846,11.233919298611566,5.7089293632091564,19.599353073155957,12151.474386263988,52.292807485418855,13.156660009757708,16.202871833497838,11.408171885984556,11.525103756178746,0.5619171546302321,0.7939835916134913,0.6800554016620498,0.5926285160038798,0.12223291626564,0.7062193126022913,0.9194805194805196,0.8732782369146006,0.7112068965517241,0.1115702479338843,0.5098849218058424,0.726123595505618,0.6151711378353376,0.55819774718398,0.1254705144291091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805664735199,0.0048982323770117,0.0072776362399894,0.0096118675066043,0.0118094618099704,0.0139225551504287,0.0158461475710731,0.017685199366927,0.0198506852116997,0.0219579889595559,0.023827351707302,0.0258654340010272,0.0278232237485208,0.02969429613902,0.0319643188998327,0.0337577180444518,0.0360188591264701,0.0381644518272425,0.0401190253240943,0.0419481981981982,0.056454140806219,0.0699123477605219,0.083886947304346,0.0969391512957838,0.1094543113728221,0.1244165987575273,0.1362082147559784,0.1479539641943734,0.1581604818091377,0.1689081768573024,0.1818937056297607,0.1936932052310828,0.2049006030337066,0.215243882374878,0.2246506391151732,0.2358961252541864,0.2452673883596225,0.2544028882495628,0.2625042686397268,0.2698491134120134,0.276888589481509,0.2839115977958196,0.2905818294219749,0.2964389298737559,0.3021628343615127,0.3069976868173328,0.3117400261280273,0.3164788264458585,0.32058230974199,0.3240518737332927,0.3228274091093391,0.3221487626119722,0.320960606103439,0.320672351780949,0.320627301322282,0.3190160513151029,0.317109916424822,0.3170627345138569,0.3180175705992156,0.3192705254294978,0.3194812517620524,0.3202569032846353,0.3218108550560383,0.3224518184469722,0.3235478731109072,0.3238683771380893,0.3241014558689717,0.3257110637764691,0.3298002588589219,0.3322105096298645,0.3349650983591696,0.3389759004376944,0.3427230046948357,0.3439085333535246,0.3473037161218217,0.3532646852328575,0.3556935190793459,0.3583535108958838,0.3620501635768811,0.3647279549718574,0.0,1.9015794146264315,53.91748348605456,171.33628853347926,256.5016370010956,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95738,44892,425.5572499947774,5959,60.89536025402661,4679,48.2149198855209,1918,19.636925776598638,77.32698317968122,79.68636983404942,63.31555014592704,65.06113040052327,77.08140206241123,79.44228824506847,63.22439348219192,64.97278891154929,0.2455811172699924,244.08158898094712,0.0911566637351271,88.34148897398109,155.6335,109.4633818581329,162561.65785790386,114336.18297868448,390.61874,256.7177215788264,407332.9607888195,267471.5897249018,373.02455,181.4194528747985,384987.2046627253,185968.99539059887,2688.72908,1240.7773130116625,2772919.258810504,1260907.3013968444,1102.82391,497.5858114817027,1129941.204119576,498056.4585784497,1879.46632,796.5066706426213,1925751.8644634315,801598.5070272932,0.37951,100000,0,707425,7389.166266268357,0,0.0,0,0.0,33677,351.0518289498423,0,0.0,34176,352.43059182351834,1590389,0,57118,0,0,0,0,0,61,0.6267103971254883,0,0.0,0,0.0,0,0.0,0.05959,0.1570182603883955,0.3218660849135761,0.01918,0.3355105942329138,0.6644894057670861,24.509723320418757,4.413783084840034,0.3178029493481513,0.2318871553750801,0.2269715751228895,0.223338320153879,11.240917114375344,5.771021074094947,20.501002491042957,12110.105085373494,53.18304667806491,13.075181648662909,16.684299482330086,11.845235760323687,11.578329786748226,0.5524684761701218,0.7963133640552995,0.6778749159381304,0.5621468926553672,0.1110047846889952,0.7152671755725191,0.913151364764268,0.853904282115869,0.7303370786516854,0.1440329218106996,0.4891659246067082,0.7272727272727273,0.6137614678899083,0.5056603773584906,0.1009975062344139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896509801935,0.0048062298472957,0.0071453220469723,0.0091941644993498,0.0111772184083396,0.013431088030141,0.0156931924786882,0.0180164546883612,0.0204918032786885,0.0223743871608274,0.024433489458958,0.0265662050771425,0.0285347175823611,0.0305095915236261,0.0324107980978513,0.034397602810498,0.0363069787665772,0.0383993029624097,0.0403991061684768,0.0426389699141595,0.0571225755266509,0.0710743801652892,0.0846464328772867,0.0974361130675188,0.1097818066828291,0.1254810742228801,0.1371407360271502,0.1486367072300829,0.1593522873022659,0.1692481081951376,0.1821435115820335,0.1945975803918595,0.2057764090063227,0.215889445696654,0.2251615531116175,0.2352869447616091,0.2442296950061445,0.2532357082511968,0.2617849230244845,0.2688040164141124,0.2759986564899642,0.2826771930235555,0.2889028495566829,0.2945638735851548,0.3002408641915235,0.3050082051155502,0.3096052845987039,0.3144360768123144,0.3189740131749572,0.3227472005070779,0.3221482838515006,0.3201387837149426,0.3190419161676647,0.3183803326102675,0.3177857737599619,0.3155562370620256,0.3131734060083661,0.3138404440503169,0.3145132350176866,0.3146113509078586,0.3158466465641563,0.3162139722452852,0.316226034732576,0.3173302893977036,0.3177583592113815,0.3194853996503223,0.3210569824121319,0.3258073645482846,0.3281485902882624,0.3290632188466725,0.3314696122551025,0.3363549618320611,0.3373138080573188,0.3405192044936997,0.3403837154890032,0.3442835276109737,0.3480974124809741,0.3539608949808506,0.3591802824702299,0.3551004636785162,0.0,2.5565290284995763,57.22787281195724,167.11488996438544,257.2722428204903,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95760,45187,428.0597326649958,6014,61.76900584795321,4701,48.52756892230576,1865,19.09983291562239,77.39144353273707,79.72975670813581,63.36142006586866,65.08678273117069,77.15963598400735,79.49938844477171,63.27552993324086,65.0038399492366,0.2318075487297193,230.36826336409888,0.0858901326277958,82.94278193407933,155.6038,109.46937569924488,162493.5254803676,114316.39066337184,394.98094,259.49793965118323,411909.5133667502,270427.6834285539,377.62783,183.21883583580424,390648.3709273183,188433.98367812045,2685.33852,1232.1636848681076,2775540.4344193814,1258022.8538722931,1121.14112,487.9937852616114,1160699.2585630745,499517.831309118,1824.21878,764.8466856879304,1872058.3333333333,771249.3434427824,0.38203,100000,0,707290,7386.069340016708,0,0.0,0,0.0,34065,355.1587301587301,0,0.0,34493,356.49540517961566,1594598,0,57158,0,0,0,0,0,71,0.7414369256474519,0,0.0,1,0.0104427736006683,0,0.0,0.06014,0.1574221919744522,0.3101097439308281,0.01865,0.3308044886992255,0.6691955113007745,24.60122119003561,4.381281288867752,0.3212082535630717,0.2320782812167623,0.2256966602850457,0.2210168049351202,11.21654214529569,5.823728454043374,19.888602240066174,12256.90362522004,53.3831460608488,13.207829833927333,16.9869500810151,11.722551026151022,11.465815119755344,0.5588172729206552,0.7763519706691109,0.7086092715231788,0.5730442978322338,0.0981713185755534,0.723186119873817,0.8827751196172249,0.8638743455497382,0.7448559670781894,0.1644444444444444,0.4981066122924555,0.7102526002971769,0.6560283687943262,0.5220048899755502,0.0798525798525798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894378746152,0.0049555620864031,0.0070818368133763,0.0092422380434893,0.0112657725900092,0.0137814510219037,0.0156816792337477,0.017732160711735,0.0198387970047707,0.02199826060265,0.0243137737066978,0.0262950005642703,0.0285758323057953,0.0309894814845309,0.0328532992464461,0.0347702128978276,0.0366682880887573,0.0386222918243951,0.0410165791798763,0.0429383945498864,0.0580763008193726,0.0717133141511901,0.0856717263372111,0.0981144774063285,0.1110162164441913,0.1266984593585771,0.1391348611302586,0.1504696858477217,0.1618683524838751,0.1720046305228632,0.1844122015800917,0.1965957999005125,0.2078828119057192,0.2177085495199292,0.2276164516058121,0.2383881746365427,0.2479185938945421,0.2574916883817054,0.2652816031373616,0.2724755737592385,0.2794466083378601,0.2862101609340486,0.2919967835773242,0.2984658131429871,0.3037033442909302,0.3093600423275215,0.3133475820865674,0.3181864441278241,0.3230044396122135,0.3265351860152398,0.3249657138247236,0.3233920378053136,0.3226291739894552,0.3213961333852342,0.3210299284030773,0.3182699204859362,0.3161873796521355,0.3168668390221553,0.3178017336807507,0.3189579957621837,0.3210943932929112,0.3216810838566971,0.3235953173755523,0.3244748674585598,0.3242696466848101,0.3253713420523664,0.3250754598781252,0.3283619658926436,0.3320550258593392,0.3352534562211982,0.3392474344355758,0.3451784762919552,0.3449213071234435,0.347362000609942,0.3505386416861826,0.3507103440178467,0.3484529888855512,0.3503795445465441,0.3485667928610059,0.3395155185465556,0.0,2.2382108585824008,55.58267358092275,175.57151265559312,257.07931382890285,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95732,45154,427.10901266034347,5988,61.37968495382944,4712,48.6775581832616,1870,19.220323402832907,77.37264048070351,79.7317332444638,63.34029949113111,65.08177862044995,77.14248432692095,79.50088159577048,63.2565800433392,64.99961671224196,0.2301561537825591,230.8516486933172,0.083719447791914,82.1619082079934,154.37928,108.62961433774797,161261.70977311663,113472.41627636312,392.81433,258.0318133672841,409771.97802197805,268984.8302710995,380.61611,185.1693378234775,393714.0872435549,190507.3276363452,2709.09084,1247.160136493397,2800356.160949317,1273744.1995092852,1138.68522,504.2572998323302,1174911.72230811,512505.4887131967,1837.45526,760.8835459202992,1890483.95520829,772130.7719450475,0.38305,100000,0,701724,7330.077716959846,0,0.0,0,0.0,33877,353.2987924622906,0,0.0,34804,359.73342247106507,1596631,0,57336,0,0,0,0,0,68,0.7103162996699118,0,0.0,0,0.0,0,0.0,0.05988,0.1563242396553974,0.3122912491649967,0.0187,0.3335448057097541,0.6664551942902458,24.559377957455187,4.415528901076789,0.3160016977928693,0.2398132427843803,0.2171052631578947,0.2270797962648557,11.259260518189787,5.731073850225312,19.83379385493372,12274.93372007018,53.46614289999861,13.581993770428404,16.827813712571835,11.368802306466463,11.687533110531916,0.5666383701188455,0.7831858407079646,0.7098723975822699,0.5962854349951124,0.1102803738317757,0.7382602001539645,0.913953488372093,0.8784810126582279,0.7431906614785992,0.1290322580645161,0.5013184881336068,0.7028571428571428,0.6489945155393053,0.5469973890339426,0.1055099648300117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024,0.0046922663747935,0.0070097487243474,0.009272424439389,0.0115201984768528,0.0138139544353278,0.0162786430726575,0.0182703397874924,0.0207402712896993,0.0231855870611116,0.0252114625519044,0.0275459184197287,0.0293875704355694,0.0313491246138002,0.0334777674610543,0.0357076417453854,0.03773682575836,0.0398174557900741,0.0418221312242119,0.0438061116087237,0.0583020975808388,0.072622834184314,0.0859614174879429,0.0993074020746408,0.111545637576818,0.1271618250243139,0.138840573561853,0.150086721501612,0.1613898706873538,0.1722337197207716,0.18551738989986,0.1976246105919003,0.2087093617483962,0.2179138098831042,0.2276347634763476,0.2382360760334972,0.2477204495485541,0.2573680063041765,0.2659050128330342,0.2730232611462047,0.2799370355795273,0.287165205995577,0.293289107386128,0.2987259159728387,0.3035651338900436,0.3090353126849477,0.3133801494611138,0.3177436992955418,0.3218367003584879,0.325887735861496,0.3240749458619715,0.3231822117168497,0.3222020517583485,0.3210917755794642,0.3202216313373639,0.3189215671264755,0.3168127313569779,0.3168729684473191,0.3178996555134895,0.3190330390202222,0.3189027803694719,0.3189626335569941,0.3206186644372453,0.3220085993717557,0.3232594367884961,0.323933796824738,0.3244460814869382,0.3284849241525688,0.3314403177478921,0.3352578453320765,0.3372460496613995,0.3380467472167994,0.3430060925821242,0.3432813210119679,0.3477408513816281,0.3522888154789995,0.3544804503270957,0.3553452788403463,0.3575923392612859,0.3528511289705319,0.0,2.0612140363531286,57.13170549750807,172.59464765870223,256.39613886703256,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95740,45287,428.48339252141216,6124,62.544391059118446,4799,49.51953206601212,1850,18.957593482348027,77.33281654085012,79.69983975095722,63.319784280511655,65.07131923875687,77.102902888875,79.47067969667106,63.23504424472506,64.98937415033832,0.2299136519751243,229.1600542861687,0.084740035786595,81.94508841854997,156.26336,109.9258432793624,163216.37768957592,114817.0495919808,396.3218,260.2088860417189,413335.4501775642,271168.1507999654,385.49974,187.72318737198128,398790.43242114055,193125.08428540584,2722.57072,1255.8216965816544,2810406.392312513,1278465.5882332951,1080.89526,481.55008506093935,1112198.8406099854,486261.4910708624,1800.72208,754.878536664926,1846015.5629830796,758655.6781470765,0.3824,100000,0,710288,7418.926258617088,0,0.0,0,0.0,34129,355.8178399832881,0,0.0,35311,364.9989555044913,1585691,0,56987,0,0,0,0,0,72,0.7415918111552121,0,0.0,0,0.0,0,0.0,0.06124,0.1601464435146443,0.3020901371652514,0.0185,0.327545753167527,0.672454246832473,24.65639150759777,4.281917755587807,0.3256928526776412,0.2479683267347364,0.2196290893936236,0.2067097311939987,11.241681237207167,5.864326779183068,19.699497500984865,12216.419125839197,54.480350955876254,14.340403846857322,17.551828707752072,11.759478870350982,10.828639530915884,0.5699103979995832,0.8084033613445378,0.6871401151631478,0.5683111954459203,0.1008064516129032,0.7501909854851031,0.92901878914405,0.8600508905852418,0.7359307359307359,0.1407766990291262,0.5022922636103152,0.7271448663853727,0.629059829059829,0.5212636695018226,0.0903307888040712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024926790219781,0.004645360218271,0.0068128744034927,0.0093310700236834,0.0115065315590282,0.0138832301173402,0.0162861134623033,0.01843797856049,0.0208993681110815,0.0232129509220671,0.0253029588468084,0.0275903849510725,0.0297048027391344,0.031626862751156,0.0337174870773707,0.0357737190817286,0.0378624689312344,0.0395911166459111,0.0417693483482546,0.0437124313737746,0.0582425957051436,0.0722431471019041,0.0857250715686377,0.0986953459278182,0.1109483203862005,0.1267420958020514,0.1389436843779828,0.1502788658038147,0.1609685240368697,0.1712189943055689,0.1843298125477782,0.1956531146547807,0.2065616912068553,0.2173570796024795,0.2271522377553153,0.2370871485988241,0.2466105004742509,0.2556922418935497,0.2639494234086988,0.2715155956579489,0.2786560807370029,0.2853748185606592,0.2918971419095787,0.2968144924408637,0.3018556099694985,0.3060728645075355,0.3103603716410809,0.3153575018769007,0.3206503433087187,0.32511521650138,0.3231407519161604,0.3221507922304971,0.3212267275520415,0.3200422154433344,0.3187823602928049,0.3170649509803921,0.3151138126444423,0.3160416051448633,0.3158316838441062,0.3173926992727791,0.3182626270187323,0.3186784959196981,0.3186153524367287,0.319483185682726,0.3210683062734172,0.3212648468430923,0.3220546734699695,0.3253538848694558,0.3291205897840969,0.3331875819851334,0.3366719781470521,0.3390389113331916,0.3418287080737524,0.3416672999468044,0.3449761213596778,0.3425772952560774,0.3471313346522599,0.3533212194629517,0.3591220850480109,0.3658629927286643,0.0,2.233657826827053,57.28700656048326,177.3365918642686,262.6959475411373,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95771,44997,425.90136889037393,5937,60.65510436353384,4674,48.13565693163901,1881,19.149847030938385,77.34910350822409,79.67729473467247,63.34642956891118,65.0665733324028,77.1107238136576,79.44608044403148,63.25618479013025,64.98272087036354,0.2383796945664897,231.21429064099172,0.0902447787809279,83.85246203926044,154.89848,108.96500446554136,161738.39680070168,113776.61762489832,390.74519,256.9865368057597,407302.3984295873,267637.3085858556,373.95674,182.16612869462907,386865.4916415199,187317.58484117183,2671.67768,1237.9334501088142,2751135.5629574712,1254080.8909887278,1117.89437,503.1402527386506,1145446.7740756597,503563.9116665824,1835.06292,776.1244945694394,1869307.076254816,768210.7638196958,0.38016,100000,0,704084,7351.7453091228035,0,0.0,0,0.0,33680,350.9935157824394,0,0.0,34168,353.21757108101616,1597057,0,57312,0,0,0,0,0,80,0.814442785394326,0,0.0,0,0.0,0,0.0,0.05937,0.1561710858585858,0.3168266801414856,0.01881,0.3253634894991922,0.6746365105008078,24.580866342189,4.357951586377856,0.3243474540008558,0.2327770646127513,0.2250748823277706,0.2178005990586221,11.309873072286416,5.963251381099723,19.902411710017983,12165.133624208676,53.00163595851794,13.159183059554838,16.94346033103728,11.73217009199394,11.1668224759319,0.5592640136927685,0.7803308823529411,0.6992084432717678,0.5627376425855514,0.1110019646365422,0.7170846394984326,0.8985849056603774,0.8579088471849866,0.7003891050583657,0.1531531531531531,0.5,0.7048192771084337,0.647419072615923,0.5182389937106918,0.0992462311557789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0044293982302678,0.006685536313926,0.0087860966369056,0.0109712449668524,0.0132436174111323,0.0154304001304551,0.0174618564065928,0.0196691495774964,0.021761371774672,0.0238085481293283,0.0260435906908016,0.0282816241380373,0.0306925903434647,0.0329305509732761,0.0349112242684652,0.0368795206904044,0.038926967865031,0.0409626535320157,0.0429892526868282,0.0575060532687651,0.0711999497928956,0.0846597462514417,0.0969382928854461,0.1091848026558465,0.1243579717190505,0.1365770922775216,0.147620313746344,0.1582722295155454,0.1684220676945495,0.1817604511990356,0.1940259768349789,0.2056955831502946,0.2160755104942525,0.2255700325732899,0.2356049360834791,0.2447760860829575,0.253655135183769,0.2618958453908918,0.2700551904183937,0.2769777099166001,0.2839409397229502,0.2912534027695585,0.2961280812971107,0.3024487416188903,0.3080897130808971,0.3121760685044693,0.3168132805438505,0.3208554763447829,0.3249841471147749,0.3241232444672076,0.3236744250103291,0.3227642161903286,0.3212810215814867,0.3204144339384583,0.3189367754565197,0.3172362555720653,0.3176378004393875,0.3186747604269686,0.3190893357360786,0.3197066362326703,0.3204585886538841,0.3215452261306533,0.3221143087320413,0.3219014543086607,0.3215817554137462,0.3230430304417487,0.3277231168338131,0.3294628361685607,0.3329604921503615,0.3347830067753158,0.3373847220001066,0.3358759216882787,0.3396327467482785,0.3454062766663506,0.3475075075075075,0.3546132339235787,0.3552550706822373,0.3582962138084632,0.3553359683794466,0.0,2.619475048973421,55.37239835170448,170.38292073034316,258.05137991193885,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95673,44861,424.4771252077389,6134,63.00628181409593,4820,49.86777878816385,1920,19.681623864622203,77.31532774038504,79.70744946010439,63.31028192710126,65.07616134812864,77.0786039732331,79.47312057622663,63.22121025571608,64.99107688442884,0.2367237671519433,234.32888387775108,0.0890716713851773,85.0844636998005,155.97648,109.68793169391078,163030.82374337586,114648.78460371346,394.0557,258.2338529974753,411356.1610903808,269392.1233362475,375.62031,182.32233781530252,390050.1395378006,188476.40228414023,2787.6938,1278.046096597052,2883309.64849017,1305420.353772512,1197.34045,527.9594860763369,1236434.751706333,536841.8558062448,1890.6748,795.884241538495,1938606.6915430685,798497.1876279917,0.37808,100000,0,708984,7410.491988335267,0,0.0,0,0.0,34005,354.875461206401,0,0.0,34374,356.7464174845568,1589209,0,57051,0,0,0,0,0,68,0.7003020705946296,0,0.0,0,0.0,0,0.0,0.06134,0.162240795598815,0.313009455493968,0.0192,0.342874922215308,0.657125077784692,24.797944132248013,4.482619741228386,0.3228215767634855,0.2197095435684647,0.2246887966804979,0.2327800829875518,11.258169479408862,5.682154147099477,20.39387176987696,12142.002002839705,54.53108143347222,12.571404133078364,17.64851203397403,11.906631428253943,12.404533838165888,0.554149377593361,0.7969782813975449,0.6902313624678663,0.5530932594644506,0.1372549019607843,0.7240031274433151,0.9285714285714286,0.8668280871670703,0.7172995780590717,0.1872509960159362,0.4927986444507201,0.723935389133627,0.626421697287839,0.5070921985815603,0.1228473019517795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020057945174949,0.0043796508445021,0.006779110596927,0.0093572836445654,0.0116984049479166,0.0140565317035905,0.0162173740093632,0.0184159993462984,0.0203305244211732,0.0224570673712021,0.0247679606174042,0.0269751101706232,0.0292577542307494,0.0313868537924923,0.0336089348568833,0.0355687483193016,0.0376963567787126,0.0397745554944313,0.0417559554769582,0.0435679889933501,0.0580411250888118,0.0717770983414307,0.0849444759325734,0.0975111812680873,0.1093403693931398,0.1251376185636856,0.1368757499495609,0.1483067548709426,0.1586548226063346,0.1683877200515242,0.1807637998124454,0.1928204017542909,0.203857918857429,0.2142192749198428,0.2240809673795731,0.2343807189361254,0.2439882501424056,0.2529034436191762,0.2616752392955683,0.2690112107109287,0.27624430982359,0.2838494409647017,0.2896235686966406,0.2953705481424594,0.3009150676275079,0.3062794309804985,0.3108771314820843,0.3151312357663584,0.3197996479602402,0.3239187530520397,0.3229621248855126,0.3213400528750826,0.3204095428555333,0.3190212439803901,0.3180359053620259,0.3168124243770198,0.3150923390989223,0.3160369630042272,0.3163578667212611,0.3166895518661839,0.3173813885669421,0.3192542907871375,0.3192041884816753,0.3198211291224148,0.3203897509924215,0.3220559870718865,0.3237420350315741,0.3269607533337547,0.3292153471462355,0.3318025716795783,0.337298682284041,0.3394720034064296,0.3415991902834008,0.3445571955719557,0.3466831166366138,0.3477378536468903,0.3503039513677811,0.3504086107235399,0.348075348075348,0.3524774774774775,0.0,1.9512337764351848,56.378164890263946,174.14719052213297,273.3259550252246,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95624,44969,426.4306031958504,6019,61.69999163389944,4666,48.18873922864553,1846,18.896929641094285,77.3146043072854,79.73347013992348,63.296484254502126,65.08270377983074,77.08324710693408,79.50423942969447,63.210483435507165,64.99985015917443,0.2313572003513258,229.2307102290181,0.086000818994961,82.85362065630864,154.36762,108.5997367748343,161431.8790261859,113569.53983815185,388.50985,254.9683532966696,405701.2256337321,266048.5268307847,373.19388,181.8232263808391,386246.01564460807,186949.93168939205,2676.92672,1231.8727314181594,2767705.8479042915,1256522.4749206891,1099.43731,484.6158172500028,1135337.373462729,492380.0690726211,1808.51956,758.6719967189867,1854832.740734544,763367.9792817534,0.38063,100000,0,701671,7337.81268300845,0,0.0,0,0.0,33505,349.75529155860454,0,0.0,34137,352.9866979001088,1598822,0,57323,0,0,0,0,0,68,0.7006609219442818,0,0.0,2,0.0209152514013218,0,0.0,0.06019,0.1581325696870977,0.3066954643628509,0.01846,0.3457438345266507,0.6542561654733492,24.518345942048647,4.288510217723515,0.3326189455636519,0.2293184740677239,0.2173167595370767,0.2207458208315473,11.49585443275243,6.137499982136622,19.68306411273905,12148.405708399045,52.8806281564484,12.77016815376224,17.46634162825258,11.443768522359177,11.200349852074414,0.5608658379768539,0.7822429906542057,0.6849226804123711,0.5986193293885601,0.1067961165048543,0.7401883830455259,0.9434447300771208,0.854320987654321,0.7446043165467626,0.1138613861386138,0.4935141509433962,0.6901615271659325,0.6251089799476897,0.5434782608695652,0.1050724637681159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0043504274371013,0.0064461769602468,0.0088502768886856,0.0110270182291666,0.0132511713179873,0.0155139176466988,0.0176933292471141,0.0199138803939818,0.0220274241943246,0.0241743589743589,0.0264817668207498,0.0284553263721002,0.0306221278875677,0.0326080224612399,0.0346792121180788,0.0369894523074372,0.0390980253732273,0.0409626269352422,0.0430112012682255,0.0573608570681996,0.0715250934917193,0.0849303273093845,0.0980736842105263,0.1103769303032542,0.1262441235017576,0.1386401538085678,0.1499136773450987,0.160391082966069,0.170113115123911,0.1830843087545175,0.1953114839380934,0.2068882859913487,0.2170393172879944,0.2257310715033673,0.2353091324758343,0.2444593461860855,0.2537602667958583,0.2612119215080276,0.2687234774630118,0.2760125981334383,0.2818496676963399,0.2880142053862089,0.2942967420228706,0.299984217746537,0.3057916389525287,0.3103892530144594,0.3157352791620055,0.3202965301317049,0.3241129138636064,0.3236153173161047,0.322369054330936,0.320945565197791,0.3199352264183679,0.3193423597678916,0.3173809706355899,0.3162867378967058,0.3175141057064368,0.3182199832073887,0.3187921262939588,0.3195837700254529,0.3201654194564789,0.3203379224030037,0.320739997771091,0.3217541089499748,0.3222222222222222,0.3213536647582337,0.3226601753893206,0.3262757682514214,0.3283593873361756,0.3292082561763245,0.3305737186247627,0.3342357088894485,0.3346477591567453,0.3387988381898248,0.3435597469261072,0.3428571428571428,0.3472222222222222,0.3470394736842105,0.3587756683456025,0.0,2.410669175499798,55.66239019623223,171.41584195521784,254.57013454272771,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95642,45071,426.569916982079,6026,61.64655695196671,4807,49.64346207733004,1840,18.79927228623408,77.29129418892526,79.69098368878952,63.29829466637945,65.0696669929625,77.05891088494403,79.46301986351442,63.21136417021167,64.98741263071501,0.232383303981237,227.9638252750971,0.0869304961677812,82.2543622474825,153.63392,108.10375948408874,160634.36565525606,113029.5889714652,387.98561,254.6302416039196,405071.5480646578,265639.74154024327,378.60457,184.5047383904099,392157.5458480584,190068.43639539217,2767.28684,1270.659255120506,2859087.5556763764,1294265.0039945906,1156.92451,509.6574101727993,1192570.8161686289,515813.2899326763,1809.55344,761.5117487856388,1851582.338303256,760664.5037847126,0.38097,100000,0,698336,7301.562075238912,0,0.0,0,0.0,33465,349.2712406683256,0,0.0,34745,359.5909746763974,1600998,0,57460,0,0,0,0,0,50,0.5227828778151858,0,0.0,0,0.0,0,0.0,0.06026,0.1581751843977216,0.3053435114503817,0.0184,0.3283036848792884,0.6716963151207116,24.386093871644807,4.374913771683973,0.331183690451425,0.226752652381943,0.217391304347826,0.2246723528188059,11.206583096593215,5.800459781918594,19.674953156336844,12231.028516874909,54.43798446453375,13.059325238124991,18.064134982698597,11.558639492902213,11.755884750807954,0.5679217807364261,0.8045871559633028,0.7091708542713567,0.5712918660287082,0.1175925925925926,0.7448591012947449,0.9348370927318296,0.8662131519274376,0.7450980392156863,0.1513761467889908,0.5014310246136233,0.7293777134587555,0.6490008688097306,0.5151898734177215,0.1090487238979118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0045118118219608,0.0068004425362605,0.0091962198963519,0.0115374049995421,0.0135662270204206,0.0156004649550339,0.0180631854105826,0.0205913626697202,0.0230888948047426,0.0251148576585445,0.0271449992810632,0.0290619920581034,0.0313665684314654,0.0333959615146384,0.0355687483193016,0.0377532514638064,0.0395801102677783,0.0418487534856619,0.0438186784545132,0.0584491587417703,0.072610717727406,0.0852810852810852,0.0977306696419173,0.1099911340032086,0.1250754199701495,0.1368360706209591,0.1490082450944883,0.1600735577128683,0.1707411344091216,0.1833061968277245,0.1954367765060045,0.2070684531908177,0.2167662966125818,0.2260268688627572,0.23698774469029,0.2471342703282461,0.2564902168284061,0.2647359338812951,0.2719564594672014,0.2787109171518863,0.2852797341881742,0.2911668225903864,0.297533944249868,0.3020260738434596,0.306689867091185,0.3111322788459128,0.3153797145769623,0.3200902466222349,0.3249815186397718,0.3240341613233471,0.3232587612960105,0.3222074880794515,0.3212202781516375,0.320601369455195,0.3184114747301012,0.3164231666111455,0.3178608463779566,0.318698824899791,0.3191866396978538,0.3197115384615384,0.3204513007614213,0.3212919766317824,0.3224484310958812,0.3238022009707338,0.324467946547188,0.3273258784128966,0.3303336259877085,0.3351939617342461,0.3375591145729841,0.3401320282267243,0.3449517957410742,0.3494538796641202,0.3536165327210103,0.3615733736762481,0.3633968139896993,0.3663213236431112,0.3704009921455147,0.3776418242491657,0.3779047619047619,0.0,2.388820730256988,57.40726952484261,172.95980467610838,266.98047246676634,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95631,44896,426.3575618784704,6020,61.56999299390365,4730,48.85445096255398,1921,19.72163838085976,77.27514686010801,79.68696780087579,63.27600815666828,65.0568719650037,77.03520151310029,79.44828456690338,63.186760609798384,64.97056192183061,0.239945347007719,238.68323397240945,0.089247546869899,86.31004317308566,154.97394,108.99754655489248,162054.08288107414,113977.21089907298,390.47704,256.18819664146946,407692.3905428156,267269.13263692084,375.97868,182.8354334946819,389269.69288201525,188172.6491111833,2714.754,1244.281702941557,2806922.6087774886,1269295.4251532413,1116.84035,498.6036331056745,1153077.6735577376,506630.0405935037,1881.5298,789.8869106767457,1933431.669646872,797098.2445278751,0.37916,100000,0,704427,7366.09467641246,0,0.0,0,0.0,33659,351.3295897773734,0,0.0,34314,354.9685771350294,1591630,0,57128,0,0,0,0,0,77,0.8051782371825036,0,0.0,0,0.0,0,0.0,0.0602,0.1587720223652284,0.3191029900332225,0.01921,0.3301647655259822,0.6698352344740177,24.75187361399921,4.368882971498795,0.3173361522198731,0.2325581395348837,0.2251585623678647,0.2249471458773784,11.123207087080193,5.690779452398854,20.433188883790365,12149.72524084608,53.54971810515347,13.16482492849591,16.79404311594163,11.955845644743798,11.63500441597213,0.5587737843551797,0.7836363636363637,0.698201199200533,0.5737089201877934,0.1146616541353383,0.7285140562248996,0.9121951219512195,0.856338028169014,0.7450980392156863,0.1733333333333333,0.4981348637015781,0.7072463768115942,0.6492146596858639,0.519753086419753,0.0989272943980929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0043886766062252,0.0065445690223732,0.0089283900457084,0.0113406360927186,0.0135550757699201,0.0155606313986213,0.0177639840328327,0.0199768946868003,0.0221473623853211,0.0240530089339747,0.0263093012266031,0.0283242108728754,0.0304895018398837,0.032393638992152,0.034283349712926,0.0362058957668228,0.0383433034230641,0.0403138528138528,0.042267181145062,0.0567122371336594,0.0710655643226137,0.08493182343425,0.0975843578479399,0.10932829120409,0.1252078501149133,0.1378929246987311,0.1491754522487181,0.1598206258829573,0.1697798890847341,0.1828565259635107,0.1955319379676824,0.2062898566523137,0.2165229979601237,0.2264394583199973,0.2364939176803866,0.2459845762958485,0.2551148225469729,0.2635538911590953,0.270674446384269,0.2775476579994663,0.284546265015015,0.2907287204376357,0.2953374100460132,0.3003906392610712,0.3055133854185952,0.3100378645402342,0.3146518233578316,0.3198479324259449,0.3241671073506081,0.3233064450859255,0.3221649484536082,0.3212981115044497,0.3201706805525421,0.3188679525884505,0.3160967984183666,0.3139455728465813,0.3145770392749245,0.3156279307698866,0.3166758746056923,0.3168734305310895,0.3178037263153735,0.3189942378208486,0.3199087125788696,0.3213830580201495,0.32091108099656,0.3209180477248134,0.3242494807728617,0.326888599852357,0.3287099594626818,0.3313916446709747,0.3362615130703295,0.3385292269013199,0.3384930571363533,0.3448243383253273,0.3468366495889431,0.3508610086100861,0.3561253561253561,0.360551724137931,0.3636015325670498,0.0,2.361751856332836,54.36637666836571,178.9487870483137,259.5376737202324,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95676,44663,423.2304862243405,5929,60.73623479242443,4666,48.09983694970526,1859,19.012082444918267,77.28391542799022,79.6819873727349,63.28504443165552,65.06000958109787,77.0490111960587,79.44838267809035,63.19839030173037,64.97627927751789,0.2349042319315231,233.6046946445407,0.0866541299251508,83.73030357998346,153.8559,108.26542272907786,160809.29386680046,113158.39158104212,389.66514,256.2724940977536,406618.9326476859,267197.7132172683,372.42736,181.64235241388016,384590.3988461056,186320.70932657784,2688.6648,1238.1401061363722,2774281.993394373,1258202.000644229,1124.45036,494.52785027798006,1157812.2622183205,499420.91044564976,1823.39706,767.0392733648603,1866821.4599272544,769265.130703135,0.37819,100000,0,699345,7309.513357581838,0,0.0,0,0.0,33684,351.39428905890713,0,0.0,34130,352.0632133450395,1598108,0,57361,0,0,0,0,0,53,0.5539529244533634,0,0.0,1,0.0104519419708181,0,0.0,0.05929,0.1567730505830402,0.313543599257885,0.01859,0.3459807073954984,0.6540192926045016,24.479220209674573,4.4129167200339525,0.3261894556365195,0.2306043720531504,0.2179597085297899,0.22524646378054,11.237846258137187,5.813224319886971,19.935592781803315,12094.850693018743,52.91512799138958,12.943670214985904,17.175807378657396,11.471798929169667,11.323851468576612,0.5696528075439349,0.7825278810408922,0.7082785808147175,0.6106194690265486,0.1113225499524262,0.7470449172576832,0.922879177377892,0.8672985781990521,0.7701612903225806,0.1523809523809524,0.5033853400058875,0.7030567685589519,0.6472727272727272,0.5591677503250976,0.1010701545778834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597839524938,0.0047265498214865,0.0071677309968831,0.0096238859361185,0.0118840491234496,0.0140982804987368,0.0161048498138609,0.0184050332965641,0.0204039887496803,0.0225268139770736,0.0247453140869779,0.0270645171233932,0.0290289054219533,0.0308252001937525,0.0331458064516129,0.035068668817738,0.0370331993202636,0.0388428122112999,0.0405038537950259,0.042709299538306,0.0578397576517288,0.0719243694839662,0.0843670633671263,0.0968390260327882,0.1090037889581948,0.1237615378101448,0.1364678899082568,0.1481075209269633,0.1583290576363947,0.1682301169904475,0.1810715555986678,0.1925043327556325,0.2039283147877969,0.2140205643704214,0.2236401304769461,0.2342572345125376,0.243309111235327,0.2514228398192289,0.2602568473690192,0.268116690183662,0.2745634580154442,0.2807865023625555,0.2874224505047389,0.293482698172562,0.2993804243302131,0.3047765983707726,0.3090852130325814,0.3136004277584692,0.318810906075057,0.3223886506103596,0.3215411558669002,0.3205223469837076,0.3196829776451377,0.3176509650503096,0.3170949321912919,0.3154627798979263,0.3147658341120385,0.3146377073114716,0.3147141293940637,0.3159446708127815,0.3172677944462176,0.3181277270924236,0.3195289954289806,0.3197031039136302,0.3207624860727607,0.3218420914758736,0.3226018209321574,0.3257969917699366,0.3293098003438717,0.3326207442596991,0.335547568133218,0.3375907573268323,0.3392756614749484,0.3418796992481203,0.3445550079047708,0.3468378282887763,0.3520804755372657,0.359052247873633,0.3601564682872311,0.3620889748549323,0.0,2.639070516392908,55.28278952915176,168.35346423381895,259.98137541266976,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95654,45344,428.837267652163,6133,62.78880130470237,4809,49.6476885441278,1878,19.23599640370502,77.35161970545354,79.75747855706307,63.31721993396855,65.09420382528016,77.11687201140128,79.52324006646685,63.23061451672908,65.00988192635504,0.2347476940522597,234.23849059621205,0.0866054172394754,84.32189892512554,155.79498,109.62316348488838,162873.4605975704,114603.84666076522,396.21289,260.3625158847385,413581.4602630313,271558.7804845992,387.87632,188.93091479343613,401097.7376795534,194090.80457524757,2769.69904,1273.7936896982856,2863231.8983001234,1299360.7059801852,1128.3942,500.12720363880726,1166045.1523198194,509233.1043540334,1843.4123,769.2777673419504,1891184.4355698663,776028.1290169953,0.38077,100000,0,708159,7403.3391180713825,0,0.0,0,0.0,34185,356.7231898300124,0,0.0,35408,365.891651159387,1586900,0,56903,0,0,0,0,0,74,0.7631672486252535,0,0.0,2,0.0209086917431576,0,0.0,0.06133,0.1610683614780576,0.306212294146421,0.01878,0.3296635137230578,0.6703364862769422,24.511850454810585,4.372288008901152,0.3177375753794967,0.2353919733832397,0.2260345186109378,0.2208359326263256,11.391921996444974,5.9438135309641424,19.892299182229376,12247.979663128564,54.47207805186396,13.464513054549094,17.297891101261655,12.056375536654102,11.653298359399113,0.5645664379288834,0.7765017667844523,0.7166230366492147,0.5804967801287948,0.103578154425612,0.7443841982958946,0.935096153846154,0.8858560794044665,0.7593360995850622,0.1385281385281385,0.4985787379192723,0.6843575418994413,0.656,0.5295508274231678,0.0938628158844765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.0049181159052882,0.0071650394787586,0.0094590750223522,0.0118707341138654,0.0143206355673253,0.016642023147912,0.0188500066373262,0.0208486707566462,0.0229437672846461,0.0250630937480764,0.0272108843537414,0.0295346491859962,0.0317013577459561,0.0337860868667045,0.0360859939166959,0.0379018717741434,0.0399248424702328,0.0419584057262351,0.0442312705281267,0.0591726487152962,0.0734598148846169,0.0866535119022629,0.099813756747372,0.1118861931044672,0.1270916461162325,0.1391304347826087,0.1498609142357743,0.1614335383792458,0.1716280068728522,0.1835112692763938,0.1954670538016511,0.2061615501850642,0.2164532019704433,0.2262494768607238,0.2365372035523821,0.2465555965271026,0.2557055518650709,0.2642811733720824,0.2721068181297666,0.2786678542922253,0.2845739396701845,0.2912518033252134,0.2968284185194497,0.3021599320470817,0.307968740385207,0.3124586273652657,0.3168334433890384,0.32216984178237,0.3265384008001263,0.3250094080963389,0.3230044756857684,0.3219678861674306,0.3207038292348741,0.3193209977297345,0.3176724203831394,0.3161337209302325,0.3165497114375656,0.3161802355350742,0.3175905936089354,0.3179757176047366,0.3192895905278737,0.3203968852047224,0.3210886476606557,0.3224161459455577,0.3234668465290028,0.3245935132374223,0.3276629072681704,0.3315500541976992,0.3352319924053637,0.3370398947033994,0.3423973071056646,0.3455818022747157,0.3493902900855866,0.3592069578228747,0.3599140503760296,0.3619150246305418,0.3672190784155214,0.3764641786979025,0.3715474839197881,0.0,2.392197883451968,56.407981591887065,178.15440187932415,264.5891865393562,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95793,45089,427.1606484816218,5957,61.06918042028123,4665,48.14548035869009,1846,18.87403046151597,77.3507064425629,79.67984909647417,63.34838135415546,65.07036015011968,77.12276555439757,79.45390011856378,63.26353981808692,64.98885645307749,0.2279408881653211,225.9489779103916,0.0848415360685379,81.50369704219429,154.49148,108.69453804315908,161276.3771883123,113468.14281122744,390.87893,257.5489851929534,407505.5275437662,268329.2820732504,378.95781,184.46173151884145,392673.4208136294,190274.5230602305,2686.50832,1239.8343393941109,2774498.9717411506,1264814.7169625806,1125.8345,501.59320643641183,1161297.9654045703,510534.2326787586,1812.90798,764.3392077681493,1856081.4673305985,767166.6416724937,0.38083,100000,0,702234,7330.744417650559,0,0.0,0,0.0,33671,350.92334512960235,0,0.0,34626,358.4708694789807,1597957,0,57375,0,0,0,0,0,76,0.793377386656645,0,0.0,1,0.010439176140219,0,0.0,0.05957,0.1564215004070057,0.3098875272788316,0.01846,0.3428753180661578,0.6571246819338422,24.234350566754586,4.406501232330967,0.3245444801714898,0.2261521972132904,0.2227224008574491,0.2265809217577706,11.357072951983248,5.862359088925553,19.750159432994888,12155.92542500292,53.19237023291247,12.66523224827227,17.133974191329557,11.735111015826291,11.658052777484349,0.5532690246516613,0.7734597156398104,0.6941875825627477,0.5678537054860443,0.1173131504257332,0.7454688731284476,0.9326683291770572,0.8931297709923665,0.7,0.1813953488372093,0.4814487632508833,0.6758409785932722,0.6244424620874219,0.5237483953786907,0.1009501187648456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020764960901098,0.0042984590429845,0.0065755426344789,0.0085730537948967,0.0107776150967951,0.0129801378439736,0.0151135298194121,0.0174505821963241,0.0194365247248536,0.0216127711829717,0.0237004703206172,0.0257446874005971,0.027768357227275,0.0301208540075353,0.0321419732717373,0.0341845905907146,0.0361843466743926,0.0385121756528409,0.0406368130270427,0.0427354876322145,0.0574314453858675,0.0712045169385194,0.0842505817975973,0.098648535037202,0.111039679612162,0.1268247307167848,0.1383716491347132,0.149811099877614,0.1603288139212127,0.1704446802353622,0.1836244846997535,0.1956446557873122,0.2076144117519231,0.2182590836592453,0.2275760474038894,0.23680047787082,0.2452479108635097,0.2547012963670269,0.2622190995319742,0.2703352019219769,0.277289474596043,0.2840926343326287,0.2898026276888873,0.2954564501646213,0.300897840330017,0.3054857930762791,0.3104900698671399,0.314866840399161,0.3197587898080929,0.3236007167703172,0.3229119062340385,0.3213505079526552,0.3201773523822929,0.3188879094836929,0.3181244337506869,0.316182775940218,0.3150142540386443,0.3162203481777383,0.3166945878491572,0.3171376513879461,0.3187586828370818,0.3194749658490229,0.3207555098010379,0.3206326383896477,0.3215998072521382,0.3218291630716134,0.3237381252146045,0.3259343578068677,0.3298998165655425,0.3320089001907184,0.3330588342940799,0.337008295424137,0.3385562040091347,0.3398969310053072,0.3403270012286173,0.3443053070960047,0.345679012345679,0.3444375899650421,0.3516606195925202,0.3549514563106796,0.0,2.144734451912196,55.59614564708384,178.01301656112616,251.29680149409683,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95722,45214,427.87446981885046,6207,63.297883454169366,4863,50.08253066170786,1877,19.14920290006477,77.31652017658898,79.67628425012133,63.31665033110207,65.0621213416708,77.0786946020146,79.44350518483586,63.22779212971232,64.97808253965272,0.2378255745743871,232.7790652854702,0.0888582013897476,84.03880201808533,155.15962,109.229752828589,162094.00137899333,114111.44024214808,394.78894,259.2105884357578,411734.731827584,270099.30011226854,386.73382,188.3722430779665,399380.97824951424,193300.98183960657,2799.61332,1297.019031475195,2884551.179457178,1314994.0086483145,1168.71732,518.1860368731392,1200220.6389335785,520796.5740673872,1839.75994,777.8288469302461,1878925.5134660788,776104.688390407,0.38209,100000,0,705271,7367.909153590606,0,0.0,0,0.0,34104,355.55044817283385,0,0.0,35436,365.53770293140553,1589068,0,57051,0,0,0,0,0,65,0.6790497482292472,0,0.0,3,0.0313407576105806,0,0.0,0.06207,0.1624486377555026,0.3024005155469631,0.01877,0.3358954650269024,0.6641045349730976,24.66535607124296,4.371062310125996,0.3349784083898828,0.2315443142093358,0.2150935636438412,0.2183837137569401,11.283469616276149,5.825588996980876,20.1515788969794,12256.032733374055,55.32292934054291,13.632842459933403,18.38178176439727,11.698192217229533,11.61011289898271,0.5648776475426691,0.8001776198934281,0.6783302639656231,0.5841300191204589,0.1224105461393597,0.743993993993994,0.9250585480093676,0.8912037037037037,0.7104247104247104,0.1261682242990654,0.497309544038516,0.7238912732474965,0.6015037593984962,0.542566709021601,0.1214622641509434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.0048053040824809,0.0070844963207307,0.0093886218844305,0.0117594401041666,0.0139734789073798,0.0162259186358398,0.0185043350387549,0.0209507060255007,0.0232812899923214,0.025203535467465,0.0271288775709283,0.029235736909218,0.0313150036041602,0.0334935632942729,0.0357194519642082,0.037732138050972,0.0398016659232596,0.0416943866943866,0.0436422357660051,0.0589260918136164,0.0728419995186421,0.0863491930324989,0.099303905280646,0.1109869253479544,0.1275304071919619,0.1389820079775948,0.1499010027463754,0.1610594130279169,0.1715983949531146,0.1848404541830952,0.1963939784201469,0.2073019532779397,0.2180283414975507,0.2276630410850323,0.2381902418478863,0.2473169914568094,0.2571203510943566,0.2650163443203486,0.2718128494180185,0.2786437539778973,0.2861053271880776,0.2925056524261041,0.2974237190558434,0.3029768923140506,0.3076230307067866,0.3116006462197397,0.3163665537528971,0.3207605823532459,0.3254290995510958,0.3239846433622954,0.3224067819973809,0.3216736803456944,0.320471038108895,0.3195490961074545,0.3168748273851536,0.3149959573220032,0.315957534359312,0.3158562078064494,0.3173778247701654,0.3190897645489223,0.3206874702993822,0.3211645101663586,0.3230007172314865,0.3246549938585294,0.3266800427339292,0.3259312116454974,0.3300336255931617,0.3331930857964307,0.3381583121827411,0.3415,0.3465504411608376,0.3504972932141508,0.352006056018168,0.351947442515251,0.3545854644938741,0.3568796068796069,0.3599757183326588,0.359228650137741,0.3519230769230769,0.0,2.7737393491953672,57.8659088721996,178.52375480487785,267.9019790184039,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95685,44962,427.0157286931076,6087,62.52808695197784,4751,49.12995767361655,1871,19.302921043005696,77.40264542862671,79.78476721212132,63.35728834693722,65.11301834702651,77.17682978267321,79.55697493127396,63.27572831995966,65.03222656096598,0.225815645953503,227.7922808473676,0.0815600269775558,80.79178606053006,154.9812,109.08604818060152,161969.98484610964,114005.16400961638,390.27643,255.79645502281335,407356.4090505304,266813.03997406166,374.98993,181.7785798903617,388353.420076292,187187.29057598507,2740.65964,1237.1296986328489,2837215.153890369,1265944.187458037,1171.36813,506.1621106259458,1210803.5846788944,515656.7302852814,1838.02426,752.2127670445494,1898194.973088781,767499.4349089377,0.38002,100000,0,704460,7362.272038459529,0,0.0,0,0.0,33704,351.6747661597951,0,0.0,34269,354.6219365626796,1600464,0,57292,0,0,0,0,0,69,0.7106652035324241,0,0.0,1,0.0104509588754768,0,0.0,0.06087,0.1601757802220935,0.3073763758830294,0.01871,0.3263703471022459,0.673629652897754,24.67340384487,4.36363135896885,0.328772889917912,0.2224794780046306,0.2233214060197853,0.225426226057672,10.912814807231312,5.60268640041686,19.70468083610329,12135.331590012029,53.316106008125,12.50499050836104,17.60803899187713,11.639767923522609,11.563308584364226,0.5514628499263313,0.750236518448439,0.6971830985915493,0.5721017907634307,0.1223155929038282,0.7296849087893864,0.884318766066838,0.8759305210918115,0.7149532710280374,0.15,0.4908321579689704,0.6721556886227545,0.635030198446937,0.5360094451003542,0.1159586681974741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569401828842,0.0046114709071928,0.0069689592209373,0.0094451722982236,0.0115719791338302,0.0135225953607722,0.0157921029290323,0.0177789571447525,0.0200500740892136,0.0219002005812763,0.0239754812521781,0.0257781701708278,0.027997121118651,0.0300109168057014,0.0321089558398679,0.0342208074084792,0.0362608461554391,0.0382907189108417,0.0401127358196226,0.0419272136068034,0.0560958539209643,0.0706829579838971,0.0840896928743061,0.0966099733888696,0.1085975236769389,0.1242171631685849,0.136020712413654,0.1461355870863359,0.1569949459872421,0.1672171227588573,0.1804526660349728,0.1929993507898723,0.2046623392156223,0.2147331139799521,0.2254946166789473,0.2354679475827873,0.2458932352613395,0.2541997933791493,0.262011799476837,0.2700497171266929,0.2768589795376643,0.2838012807801327,0.2898318087931543,0.2956390725705198,0.3007526999018217,0.3053146870349187,0.310523619735379,0.3149725222423881,0.320235020661157,0.3249486923117402,0.3231843200429588,0.3220884965456738,0.3211395228143015,0.3202399965468123,0.3195275031085322,0.3176517279277079,0.3161128308800303,0.3167349614817243,0.3181570523734932,0.319292438559963,0.3195433226825121,0.3197956577266922,0.3208002831386755,0.3222756196324478,0.3223293057153816,0.3241253739107816,0.327042413891261,0.3309731186164547,0.3326554227006557,0.3361587515348358,0.338434212324088,0.3412918354295459,0.3440812720848056,0.3503199268738574,0.3542000565664184,0.352878841398799,0.3549373280342403,0.3573869346733668,0.3557065217391304,0.3584834834834834,0.0,1.983119121069831,53.08975153471779,175.80018557241172,268.1461701304161,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95729,45154,427.35221301799874,6070,62.30087016473587,4726,48.79399137147573,1914,19.63877194998381,77.33907921770925,79.70598036665068,63.32552877917672,65.07541937264422,77.09487503916026,79.4618883201597,63.23462310580223,64.98687511562592,0.2442041785489976,244.0920464909766,0.0909056733744861,88.54425701829882,155.298,109.2639253417104,162226.7024621588,114138.7931992504,391.74469,257.7093216264565,408663.29952261073,268647.87225026527,379.85959,185.2131172620209,393065.9779168277,190584.501428927,2729.61196,1266.751385760441,2821799.3711414514,1293672.4981567145,1152.83684,511.6199918957871,1191185.398364132,521360.32121487486,1875.323,795.506181282211,1926836.214731168,803592.6437867994,0.38152,100000,0,705900,7373.941021007218,0,0.0,0,0.0,33808,352.5681872786721,0,0.0,34685,358.5538342613001,1592724,0,57123,0,0,0,0,0,65,0.6790000940153976,0,0.0,0,0.0,0,0.0,0.0607,0.1591004403438876,0.315321252059308,0.01914,0.3394683026584867,0.6605316973415133,24.24360292218785,4.388621581858534,0.3250105797714769,0.2257723233178163,0.2228099873042742,0.2264071096064325,11.143739503501676,5.771244364417016,20.566477500810787,12147.56278104782,53.95847341563923,12.836912600363227,17.43666372854206,11.826972582504776,11.857924504229157,0.5639018197206941,0.7994376757263355,0.685546875,0.5859449192782527,0.1327102803738317,0.7183951551854656,0.9197994987468672,0.8657074340527577,0.6917293233082706,0.1548117154811715,0.5039647577092511,0.7275449101796407,0.6184092940125112,0.5501905972045743,0.1263537906137184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408523740074,0.0047451028105608,0.0069628411639921,0.0090330840513737,0.0112611008819669,0.0135453054822841,0.0156528832916942,0.0176214152262912,0.0199799586903617,0.0221942276572645,0.0243674813090342,0.026580939371219,0.0288482305390145,0.03094897128669,0.0330821635012386,0.0352519027134348,0.0374387502460349,0.0394570248448494,0.0415436129944677,0.0434646719313233,0.0578967151836615,0.0724337445201251,0.0859746060370948,0.0997697136668103,0.1121293288902012,0.1274460028347189,0.1386136513122997,0.1498168810152457,0.1606539858944219,0.1713969933364094,0.1831564200657363,0.194737127077806,0.2053575314444879,0.2154886576277863,0.224785543601546,0.2343510942592962,0.2442124071695795,0.2529040972534894,0.2611449783741443,0.2690346021157835,0.275983007882583,0.2830301257677683,0.2891661738616203,0.2948440026348883,0.3002633463186126,0.3058190901595973,0.3099420318824646,0.3134764384605614,0.3171418969573197,0.3217096676378689,0.3213186163133058,0.3204181280517158,0.3200462323457277,0.3194317869490373,0.318583281291819,0.3162184938328353,0.3142608282524349,0.3147642843053455,0.3158020886834446,0.3154277122451536,0.3165124702084936,0.3177026679587841,0.3191627420198848,0.3197700429491768,0.3215477304913468,0.3230036687221919,0.3245864232743867,0.3266622612417005,0.3308616811920157,0.3343010538874528,0.3361797342344399,0.3370510699610438,0.3389948665948412,0.3422242661148156,0.3456627863312054,0.3505706134094151,0.3521017527532185,0.3500205170291341,0.351555929352397,0.3581684128831975,0.0,2.2963600355243345,57.932083294983165,177.39038104828353,251.97791169422,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95690,45149,429.1253004493678,5982,61.36482391054447,4712,48.7093740202738,1847,18.94659839063643,77.30793472821749,79.68559111549132,63.31631099018998,65.07086274613049,77.07915228649975,79.45626122486262,63.23230818509779,64.98848263143182,0.2287824417177404,229.3298906287049,0.0840028050921901,82.38011469866535,153.86668,108.32057630883662,160796.34235552303,113198.9744018976,389.93514,256.26005163860737,406957.8639356255,267267.91166834976,377.55123,184.00340341306904,391241.4985891943,189613.185860106,2710.83564,1245.3769910532594,2804499.73873968,1273587.2951019185,1119.06703,493.7114710255179,1157227.7876476122,503762.3365317708,1809.76076,755.0917243998423,1858491.0857978887,762791.1043698156,0.38105,100000,0,699394,7308.924652523775,0,0.0,0,0.0,33664,351.2279235029784,0,0.0,34489,357.0488034277354,1599870,0,57399,0,0,0,0,0,70,0.731528895391368,0,0.0,0,0.0,0,0.0,0.05982,0.156987272011547,0.3087596121698429,0.01847,0.3361572890025575,0.6638427109974424,24.452534036238116,4.365555938777262,0.3100594227504245,0.239176570458404,0.2285653650254669,0.2221986417657045,11.285785493624449,5.881513159214109,19.64934833436398,12156.822098291545,53.47902691360947,13.5872182859886,16.634295426679685,11.890498105415867,11.367015095525304,0.5657894736842105,0.7728482697426797,0.7152635181382615,0.584958217270195,0.1146131805157593,0.7403008709422011,0.9345794392523364,0.8396946564885496,0.7531380753138075,0.1231527093596059,0.5018846042331111,0.6738197424892703,0.6694756554307116,0.5369928400954654,0.1125592417061611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021869874248223,0.0043674759839487,0.0066748496130007,0.008816120906801,0.0109226263119355,0.0130646409514887,0.0153052380418268,0.0174578866768759,0.0195465047332801,0.0217422458798239,0.0239781848749833,0.0260269612624359,0.0278806203463737,0.029751725558875,0.0318859124117719,0.0339601575503199,0.0357261273209549,0.037593048244931,0.0397682353430699,0.0417392029521833,0.0562588785827692,0.0706727095741006,0.0842137289255851,0.096960454354228,0.1093059787249744,0.1242954581504785,0.1365830371824113,0.1481714066757493,0.1590287569969662,0.169457166453938,0.181903356774395,0.1945024393937754,0.2055424489840293,0.2158702045546481,0.2262042262042262,0.2362407930442487,0.2456986007899846,0.254089507909007,0.2631943262411347,0.2713380757643447,0.2788551712959211,0.2849556072853182,0.2910175671196552,0.2972003646483063,0.3029816625322243,0.3074408506648903,0.3125274119371937,0.3168792446579427,0.3211098427852436,0.3254390949819604,0.3244011915513081,0.3233084779402643,0.3222948090245933,0.3207454279549963,0.3196278377372534,0.3176304611185229,0.3165207460982109,0.3165069643386348,0.3173365326934613,0.3183371807949035,0.3182979522825474,0.3184458320943601,0.3189078011207421,0.3207006868162598,0.320426013830992,0.3219154782153605,0.3230092288351096,0.3267429760665973,0.32811837830202,0.3294365581136427,0.3324342857142857,0.336066010114453,0.3397014170040486,0.3426520012221203,0.3424179554884949,0.3460532572515454,0.3498098859315589,0.3501609010458568,0.3553808620222282,0.3593335857629686,0.0,2.0329490778780515,55.293982292860505,176.75467752312474,259.05366348249623,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95698,45214,427.2294091830551,6210,63.522748646784684,4877,50.29363205082656,1921,19.592885953729443,77.38171245272493,79.75499289449294,63.34258245905804,65.0946104548656,77.13581579638361,79.51233119488128,63.25045421525481,65.00673991211869,0.2458966563413156,242.6616996116593,0.0921282438032307,87.87054274691286,154.66044,108.91758735854576,161612.57288553574,113813.44626436036,395.4465,258.9218410087926,412549.3636230642,269888.47952764475,385.30095,187.46953204856544,398276.2126690213,192546.21163077236,2808.50824,1290.8248778802258,2896681.602541328,1310918.4764908622,1167.69343,517.9402320402015,1203095.425191749,524181.4752723461,1880.68458,797.2980483852189,1920115.5301051224,796032.9437638351,0.38119,100000,0,703002,7346.026040251625,0,0.0,0,0.0,34047,355.0648916382788,0,0.0,35199,363.497669752764,1595544,0,57173,0,0,0,0,0,73,0.7628163597985329,0,0.0,0,0.0,0,0.0,0.0621,0.1629108843358954,0.3093397745571659,0.01921,0.3234439516745679,0.676556048325432,24.508077326335663,4.468200165666173,0.3251999179823662,0.2288291982776296,0.2241131843346319,0.2218576994053721,11.280374165754155,5.794748862773859,20.457155656656948,12216.872081215291,55.277852958983445,13.335261811904465,18.07417026215136,12.020063088244594,11.848357796683016,0.5644863645683822,0.78584229390681,0.694829760403531,0.5864592863677951,0.1229205175600739,0.7169811320754716,0.9124668435013262,0.8481308411214953,0.7304347826086957,0.1561181434599156,0.5106796116504855,0.7212449255751014,0.6381692573402418,0.5480880648899189,0.1136094674556213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205963377086,0.0049164208456243,0.0071640215935381,0.0094874347357942,0.0118396159244868,0.0138289205702647,0.0159673719092531,0.0182735105557597,0.0205677601382088,0.0227966014945234,0.0251068759418922,0.0272687138735741,0.0295245832519204,0.0317888708049197,0.0339108987523348,0.035846852156291,0.0380002485707183,0.0401183002127328,0.0421442389698999,0.0443133617500234,0.0590926181225717,0.0722930669849446,0.0856540261484543,0.0982178551139352,0.110590717299578,0.1256067768647482,0.1385870718560332,0.1500383321265812,0.1602153869165269,0.1699779012637044,0.1831328936592094,0.1943139250373514,0.206323826926842,0.2167386431968512,0.2263241845883064,0.2360965023970593,0.2462552560256081,0.2539002305832068,0.2631471482372158,0.2710740583809535,0.2784855532798741,0.2855489301999298,0.2916489135066041,0.2973934927197555,0.3025267249757045,0.3071282443124399,0.3117009832128293,0.3163467902051621,0.3211964262592257,0.325414831033846,0.3244766722273045,0.323229547390695,0.3223019558182074,0.3211366290385364,0.320895301297624,0.3185642090477426,0.3160422063562267,0.3156809141061109,0.3160089174792804,0.3168500124603937,0.3179625266464714,0.3173021916240901,0.3186160006673896,0.3197441155492154,0.3214182968929804,0.3230306487579733,0.3244370072040388,0.3286446611652913,0.3300991204802457,0.3327934263026903,0.3357087740002723,0.3381088825214899,0.3414063488048564,0.3426471714001378,0.3461901169370049,0.3485877726135145,0.3545914456538402,0.3506916192026037,0.3547400611620795,0.3584758942457232,0.0,2.556369703848827,55.29580688240778,186.9984338155925,267.8224542191868,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95849,45290,429.4984819872925,6158,63.02621832256988,4876,50.20396665588582,1961,20.010641738567955,77.44506122741345,79.72486824782045,63.40474875222951,65.08512800980196,77.20056834360084,79.481775486253,63.31543673076671,64.99868401932936,0.2444928838126117,243.0927615674534,0.0893120214627956,86.44399047260265,155.75164,109.5280297179956,162496.65619881274,114271.21442894088,395.95539,258.9681380627146,412395.2779893374,269479.4575896546,377.18535,183.50244337516375,389350.196663502,188181.69596940972,2818.317,1290.071280633631,2904658.1602311973,1310524.694411202,1164.38753,514.7162356805273,1194604.9411052803,517112.6358867147,1931.43004,802.6303073630413,1973534.5804338076,804267.1270914889,0.38363,100000,0,707962,7386.211645400577,0,0.0,0,0.0,34167,355.7261943264927,0,0.0,34495,355.809658942712,1595609,0,57309,0,0,0,0,0,76,0.782480777055577,0,0.0,1,0.0104330770274076,0,0.0,0.06158,0.1605192503193181,0.318447547905164,0.01961,0.3324022346368715,0.6675977653631285,24.47739139582772,4.4613265384161735,0.3234208367514356,0.2233388022969647,0.2212879409351927,0.2319524200164069,11.036446219577574,5.579973459533552,20.778739191171013,12270.260606273418,55.20244338334773,12.968997414908992,17.964959280798958,11.995893814447346,12.272592873192435,0.5518867924528302,0.7897153351698806,0.673430564362714,0.5848007414272475,0.1220159151193634,0.7245600612088753,0.9175,0.8537735849056604,0.7338709677419355,0.1531914893617021,0.4886522835528159,0.7155297532656023,0.6071118820468343,0.5403128760529483,0.1138392857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025202939330755,0.0044773549164801,0.0067529886537623,0.0089927327351711,0.0113398500213384,0.0134396842030297,0.0157153915098183,0.0177735629722536,0.0198919625442922,0.0220347648261758,0.0242678681138644,0.0265217168350341,0.0284293989564931,0.0303444870753057,0.0325468782196579,0.0343307769325254,0.0361235211384131,0.0380605985244134,0.0399480923955359,0.0421713072793107,0.0567540795578958,0.0713181371832104,0.085326018677499,0.0985268194409468,0.1113577545395249,0.1272122843121735,0.1398456277065444,0.151773667491793,0.1625883632408918,0.1728089887640449,0.1858928206836523,0.1985229812457487,0.2097738892567545,0.22052883250726,0.2304025481904552,0.2410519677372957,0.2504792688363798,0.2590312032989876,0.2675682722501218,0.2742708726644469,0.281500751531969,0.2874463632218312,0.2935888336881949,0.2993045830490622,0.3040734853356955,0.3082169855457881,0.3129318978467701,0.3176352322903279,0.3214257959225967,0.3252183780645502,0.3241191828385325,0.3234069452651541,0.3222985985183935,0.3214239407603763,0.3198358980435137,0.317616540779736,0.315142816585966,0.3165631131458469,0.3170656949221809,0.3174191254888019,0.3183567478702735,0.319027238121536,0.3188917929952953,0.3192044415706035,0.3206886629579896,0.3214991163322591,0.3233866159393543,0.3274430554250086,0.33182135380321,0.3358288770053476,0.3406458086290249,0.3435635123614663,0.3442550505050505,0.3491001384402399,0.3505370211957038,0.3529552811413499,0.3534429280397022,0.3467691668398088,0.3460033538289547,0.3571990558615263,0.0,2.4688304615582606,57.09390197110089,180.48688056816687,268.31699757045567,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95700,45140,428.1818181818182,6099,62.476489028213166,4677,48.45350052246604,1856,19.13270637408568,77.29747507811412,79.70099539203197,63.28577397120039,65.06592287916543,77.06398984748688,79.46647265694462,63.19910110847008,64.98083288090841,0.2334852306272381,234.52273508735288,0.0866728627303103,85.08999825701835,156.25698,109.98674246604008,163277.93103448275,114928.67551310352,396.68602,261.2119715958131,414084.58725182863,272523.4081460952,377.69346,183.9088001278752,392020.30303030304,190117.7014707369,2687.434,1237.526536608931,2784547.251828631,1269699.6259337268,1077.30318,483.7790343648341,1115367.460815047,495196.86535362,1823.39266,765.1562829346168,1880369.2998955068,777286.7477075612,0.38029,100000,0,710259,7421.724137931034,0,0.0,0,0.0,34285,357.80564263322884,0,0.0,34610,359.03866248693834,1581153,0,56714,0,0,0,0,0,62,0.6478578892371996,0,0.0,0,0.0,0,0.0,0.06099,0.1603776065634121,0.3043121823249713,0.01856,0.3226108682073704,0.6773891317926296,24.50414473355304,4.380196638432039,0.3211460337823391,0.238400684199273,0.2148813341885824,0.2255719478298054,11.113554193955611,5.674039544394702,19.66778772689057,12170.603111262611,53.04894670455958,13.286120225115557,17.008206411765848,11.2671323708839,11.487487696794298,0.5606157793457345,0.7901345291479821,0.6917443408788282,0.5800995024875621,0.1127962085308056,0.7260383386581469,0.9246753246753248,0.8575063613231552,0.7109375,0.1559633027522936,0.5001459854014598,0.7191780821917808,0.6330027051397655,0.5353805073431241,0.1015531660692951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0043211003590773,0.0067211533580384,0.0088100802763946,0.0108642578125,0.0129051314958544,0.0151360613602056,0.017330119891342,0.0195649283573846,0.0216178021730448,0.023827351707302,0.0259702903166156,0.0281372811259027,0.0302234038168253,0.0323683069362132,0.0347334995190268,0.0368147756599608,0.0390509812065206,0.040718662546945,0.0426545223381306,0.0575669577570718,0.0715706389749602,0.0850918706779856,0.0977708580986545,0.109573289730471,0.124661447312738,0.136536848921016,0.1480941071219366,0.1585931819153941,0.1694778771513544,0.1829731245416505,0.1949181020932476,0.2065791623549915,0.2167829869290355,0.226657406794982,0.23656677502746,0.2460266010953392,0.2539088901906006,0.2624887808314114,0.2700459667342985,0.2771463988229706,0.2837867909722303,0.2905858384857745,0.2967666050553302,0.3018893173882894,0.3072660858405114,0.3115734068550661,0.3153271456984038,0.3201401960147985,0.3246653616210782,0.3239248400421154,0.3225971158490305,0.3215158751465996,0.3203592380676468,0.3193855853444558,0.3172573283915826,0.3161790289419579,0.317013223221747,0.317287061948711,0.3181559273762905,0.3187645796398246,0.3197456993268511,0.3208035751576661,0.3219345927642131,0.3240115025161754,0.3249844107254209,0.3252159581723119,0.3295490183779715,0.332714275702572,0.3360938304869834,0.3402483963422956,0.3443473656341011,0.3456177800100452,0.3470548100977939,0.3493998499624906,0.3497816078385078,0.3512561274509804,0.3497267759562841,0.3600439077936334,0.3675115207373272,0.0,1.65521869134719,55.29626606606708,178.3529682256927,252.4484909341864,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95821,45581,431.2833303764311,6149,62.78373216727022,4789,49.31069389799731,1893,19.27552415441292,77.32864418348662,79.63881817116774,63.32870225298407,65.0380994062409,77.09191317180533,79.40668608583016,63.2411658248299,64.95549822171888,0.2367310116812859,232.13208533758237,0.0875364281541664,82.60118452201937,154.59158,108.84791542384852,161333.7159912754,113595.05267514275,396.16711,261.27169999082395,412770.9792216738,271993.2392117871,389.74994,190.2233883352852,402566.87991150166,195316.0811203065,2753.74832,1275.7358865852866,2836400.955949113,1294169.8696382244,1148.04095,513.2861492268819,1178108.5461433297,515759.6076382024,1853.43606,773.565830036462,1889872.6166497949,770161.3265426712,0.38365,100000,0,702689,7333.350726876155,0,0.0,0,0.0,34213,356.35194790286056,0,0.0,35602,367.41424113712026,1588068,0,57091,0,0,0,0,0,66,0.6887842957180577,0,0.0,1,0.0104361256926978,0,0.0,0.06149,0.1602762934966766,0.3078549357619125,0.01893,0.339649013822022,0.6603509861779779,24.112632130610564,4.37914999925497,0.3165587805387346,0.2426393819168928,0.21862601795782,0.2221758195865525,11.385960857719466,5.992072746317469,20.2082896732082,12289.651089371602,54.80491022938714,14.216919796343191,17.202074833774784,11.747619881913772,11.638295717355398,0.5729797452495302,0.8055077452667814,0.7084432717678101,0.5768863419293219,0.1221804511278195,0.7432835820895523,0.9323467230443976,0.8707317073170732,0.7292576419213974,0.1359649122807017,0.5068135691504784,0.7184325108853411,0.6482820976491862,0.5342298288508558,0.1184210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025725426647085,0.0048858614118314,0.0071120580327702,0.0092739314155696,0.0115212527964205,0.0135208055467882,0.0156968269985424,0.0180535994938052,0.0205410156050402,0.0226451777948324,0.0248473298085987,0.0270417273865478,0.029309901854992,0.0314398072844818,0.0336279170490755,0.0355368229667048,0.0374708956382263,0.0397200622083981,0.0418484357472267,0.0436728491434043,0.0581075161149008,0.0720394805629326,0.0850374718306168,0.0978993053731123,0.1100874881416675,0.1265737148655933,0.1390868219027017,0.1507719481182767,0.1616833607415159,0.1718212321644887,0.1846344352320447,0.1971462261599541,0.2086092355198921,0.2196609502574023,0.2284743077786211,0.2390071550406486,0.2482973449746555,0.257188534372115,0.2653925643296768,0.2725239689894032,0.2791517386111981,0.2863307496570081,0.2918100890207715,0.2976576576576576,0.3041964850786232,0.3100844069302532,0.3153408378669742,0.3191012095181045,0.3230012715053066,0.3271104647319363,0.326569409988135,0.3254890607552008,0.3244900265581737,0.3229076039672873,0.3224220391257059,0.3194851868347898,0.3182806622117109,0.3195054177148588,0.3205809483126869,0.319977154687751,0.3203659611166313,0.3210272238050016,0.323092710100312,0.3238067572398999,0.3247337164290351,0.3246292040944224,0.3261148311725317,0.3297949185013033,0.3347565883876386,0.3371559633027522,0.3387756958340913,0.3419515820768741,0.3423491583128428,0.3420409410326917,0.3436940755392295,0.3484195402298851,0.349070971672251,0.3481871581932347,0.3465644675609088,0.3464077669902912,0.0,2.512202004256295,58.46623768971795,183.13668322979916,252.56405010601875,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95744,45046,426.3348094919786,6018,61.5704378342246,4749,48.99523729946524,1855,18.95680147058824,77.35098256499538,79.69929610190324,63.33757887846742,65.07105030006544,77.12329316290565,79.47434022119938,63.25340757602833,64.99067906526075,0.2276894020897231,224.95588070385963,0.0841713024390884,80.37123480468722,155.56046,109.4456952847522,162475.41360294115,114310.76128504366,392.17424,257.65663313317555,409000.1148897058,268505.6240870325,380.9834,185.22735790663756,394412.9867145722,190727.72710132712,2723.54232,1249.211234747456,2810374.874665776,1270627.2694447478,1134.76314,500.851678740762,1168183.8235294118,506198.2932976503,1815.10654,754.5963613245196,1856457.0103609627,754555.3612788836,0.38029,100000,0,707093,7385.246072860962,0,0.0,0,0.0,33873,353.15006684491976,0,0.0,34816,360.14789438502675,1591269,0,57091,0,0,0,0,0,70,0.7311163101604278,0,0.0,0,0.0,0,0.0,0.06018,0.1582476531068395,0.3082419408441342,0.01855,0.3432646592709984,0.6567353407290016,24.45653941678918,4.336764899282064,0.3287007791113919,0.2286797220467467,0.2238365971783533,0.2187829016635081,11.439302678616828,6.063624103230452,19.62222304070498,12167.55542327682,53.8210620716294,12.999767882531994,17.911628146722958,11.601330134975422,11.308335907399028,0.5634870499052432,0.783609576427256,0.7110826393337604,0.561618062088429,0.1135707410972088,0.7364280094413848,0.914572864321608,0.8794326241134752,0.7196652719665272,0.1327014218009478,0.5002875215641173,0.7078488372093024,0.648506151142355,0.5157766990291263,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505584640466,0.0046421585023464,0.006879547045752,0.0090700414398309,0.0114691258858577,0.0138347364884812,0.0159529464531452,0.018207240031434,0.0204826296262226,0.0226795893929934,0.024745269286754,0.0268117429685896,0.0290652245435104,0.0311605395942745,0.0334244596894826,0.0353385012919896,0.037174336246531,0.0390697964012203,0.0410372110915877,0.0432449889569529,0.0578238039064212,0.0715854883253828,0.0851831269463463,0.0979697406188558,0.1103649665816272,0.1254875844353534,0.1374482978046452,0.1484414077881719,0.1591688478179584,0.1687942501609096,0.1811327258234774,0.1941275785190155,0.2054229840551652,0.2159018796910216,0.2252479334294614,0.2348501640216331,0.2439945054331438,0.252832056517386,0.2619747398522519,0.2697117313313084,0.2770005207429266,0.2833540052889003,0.2899330605293658,0.2953388968043965,0.30033123430277,0.3056099031587237,0.3108400304965691,0.3145841805612037,0.3189729918600287,0.3233803931917139,0.3231637504882746,0.3215028440000551,0.3209843463545339,0.3202831007931453,0.319409332897124,0.3176084724201879,0.3165644366252991,0.3172857166346043,0.3181942497692386,0.3189507494646681,0.3190437859188678,0.3208578305646529,0.3227622875324458,0.3237810189631681,0.3249226488859041,0.3257698119105924,0.3272024334081928,0.3304650943692491,0.3334382321060177,0.3381240844122422,0.3400018186778212,0.3403656073971729,0.3453663453663453,0.3498061278795712,0.349620181937541,0.347340930674264,0.347839553972433,0.3523442256951491,0.3418803418803419,0.3521288837744534,0.0,2.27383217443592,55.69665234850955,177.3046082251219,260.21913148497305,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95851,45299,427.778531262063,6186,63.3900533119112,4883,50.45330773805177,1929,19.86416417147448,77.51248185563044,79.79891570257166,63.42745123530996,65.11129402911813,77.2781202077374,79.5616031604464,63.34092199957716,65.0252739261321,0.2343616478930386,237.31254212526665,0.0865292357327973,86.02010298602636,155.93842,109.68663280931374,162688.13053593598,114434.29156640386,395.46764,258.9661562965851,412068.6064829788,269658.5286502856,382.97905,186.0837883323817,395841.2744780962,191371.47248133432,2793.8682,1284.757539892276,2889447.287978216,1315013.3643804195,1170.73377,513.9815391009801,1210009.066154761,524854.8749503567,1883.53276,782.6950451355135,1941143.629174448,796914.3443177488,0.38397,100000,0,708811,7394.915024360726,0,0.0,0,0.0,34128,355.5309803757916,0,0.0,35043,361.926323147385,1596549,0,57236,0,0,0,0,0,65,0.6677029973604865,0,0.0,1,0.0104328593337576,0,0.0,0.06186,0.1611063364325338,0.3118331716779825,0.01929,0.3354391371340524,0.6645608628659476,24.786458504147884,4.374314101536445,0.3268482490272373,0.2389924226909686,0.2181036248208069,0.2160557034609871,11.29029354954855,5.874672946006164,20.218487913250296,12313.690295656766,55.184302787897145,13.912535045329829,18.093546383991253,11.729227610553412,11.448993748022664,0.5635879582224043,0.778063410454156,0.7017543859649122,0.5699530516431925,0.1109004739336492,0.7380772142316427,0.9061032863849764,0.8624708624708625,0.7461538461538462,0.1213592233009708,0.4988770353733857,0.7044534412955465,0.6426735218508998,0.5130434782608696,0.1083627797408716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021451844656264,0.0047801824976453,0.0069836507566466,0.009548355673712,0.0118551778784615,0.01430895962575,0.0167172323919284,0.0189468102463697,0.0211062665291576,0.0233970753655793,0.0256720086017101,0.0277923063512086,0.0299518099524264,0.0320585389951217,0.0342367604457686,0.0361912434542806,0.0379955092453669,0.0401215049192904,0.0422150432641868,0.0440662086196127,0.0583039606231881,0.0726653004893145,0.0860148579691314,0.0994255227532898,0.1114059193278372,0.1275083435427316,0.1394597115211378,0.1510170230411806,0.1618772208765059,0.172631285873383,0.1854595896597703,0.1980903827875227,0.2094674556213017,0.218861248826086,0.2286169394705042,0.2391285113912851,0.2477661162733694,0.2563667614051249,0.2652568865530989,0.2732562127066139,0.2806432633849774,0.2871839683094489,0.2939712715522324,0.2998889432894281,0.3057727217717536,0.31074327394182,0.3154700332755892,0.3202218030358657,0.3237814227364677,0.3275604187987089,0.3268573725463924,0.325403452099046,0.3245540339970316,0.3222276544346025,0.3217131621353912,0.3194088579795022,0.3175014210825491,0.3178775430039771,0.3192735195492689,0.3190204808548531,0.3187382033600568,0.3188394370639019,0.3203569040454697,0.3198431966501102,0.3222179787081682,0.3232017781913106,0.3232574579386399,0.3280773776202028,0.3313439050626323,0.3343233420610418,0.3360923448615274,0.3351235791010533,0.336285378088809,0.3376603886846252,0.3414070444670426,0.343946084127353,0.3498651483368294,0.3548703849175176,0.3558364712210866,0.362486043915147,0.0,1.8290722412825688,58.260812230613446,182.4943255253411,263.0820670667208,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95724,45032,427.5521290376499,5966,61.02962684384271,4650,47.85633696878526,1838,18.741381471731227,77.31288813594676,79.67206635061851,63.318020272784125,65.06232803014818,77.08113632853917,79.44416585695194,63.23218289193248,64.98106436773602,0.2317518074075906,227.9004936665672,0.0858373808516432,81.26366241215521,155.1429,109.26538355669018,162073.14779992477,114146.27842201556,390.33039,256.0034230384694,407083.991475492,266756.62638258893,372.4497,180.7286697683666,384493.5334921232,185222.485524427,2668.87632,1213.004969278477,2748935.8154694745,1228258.5151066026,1086.28841,477.0546378388393,1114520.538214032,478170.62305803294,1795.28284,752.7786030512151,1833278.509046843,750978.3468058822,0.38073,100000,0,705195,7366.961263632945,0,0.0,0,0.0,33726,351.59416656219963,0,0.0,34076,351.3747858426309,1595385,0,57234,0,0,0,0,0,52,0.5327817475241319,0,0.0,1,0.0104467009318457,0,0.0,0.05966,0.1566989730255036,0.3080791149849145,0.01838,0.3219715154424707,0.6780284845575292,24.64208226411384,4.382852419149852,0.3255913978494623,0.2243010752688172,0.232258064516129,0.2178494623655913,10.928249302332452,5.5121146378545145,19.66395756951029,12186.767276277782,52.71996387418432,12.604777854279757,17.027046111950177,12.11325641977612,10.974883488178271,0.5544086021505377,0.7622243528283796,0.7040951122853368,0.5601851851851852,0.1105626850937808,0.7319932998324958,0.9302325581395348,0.8421052631578947,0.6575875486381323,0.1470588235294117,0.4930555555555556,0.663109756097561,0.6578483245149912,0.5297691373025516,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0046726603756372,0.0068588358242271,0.0089282086702149,0.0108725501164552,0.0130855397148676,0.015642047945834,0.0179070954568657,0.0201506957152934,0.02215850911325,0.0242899620629549,0.0263701056652598,0.0286431282204235,0.0308804746405174,0.0326021913624827,0.034448188188602,0.0367190978658189,0.0386934099799736,0.0403593972608437,0.0420834375260481,0.056357144348625,0.0706161782093269,0.0840849028902219,0.0969329281756337,0.1093853794325119,0.1248730642294998,0.1372420013795299,0.1490127202086327,0.160725540256161,0.1701107762919432,0.1828518514530595,0.1939304139042407,0.2054627696590118,0.215718441717523,0.2257429228416455,0.2366278618978522,0.2460017187308177,0.2547197407799104,0.2633312136627907,0.2718731380906549,0.2789758192404301,0.2853919184360677,0.2917006706170386,0.2968542153514291,0.3025837878548608,0.3075406604238541,0.3113395350001878,0.3156180418601692,0.319693790316313,0.3238234866796106,0.3230719465185864,0.3230362600148674,0.3224978493562171,0.3218151299415407,0.3205931837470036,0.3184601924759405,0.3162023949433027,0.3172836253458042,0.3181210584041678,0.3192637201132738,0.3200142838348337,0.3213598205957649,0.3224004703510835,0.323177829512894,0.3241015257791597,0.3258796792142316,0.3274295834999714,0.3308482072342442,0.3327224669603524,0.335621084553689,0.3377816370366985,0.3383055526064338,0.3411027568922306,0.3437048307341194,0.3442761734549901,0.3480368968779564,0.3463316892725031,0.3509127789046653,0.3540510543840177,0.3578987150415721,0.0,2.858666811210331,51.64811596110395,178.15964961064626,258.538249297843,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95783,45086,425.503481828717,6159,63.059206748587954,4819,49.74786757566583,1907,19.51285718760114,77.37208356525132,79.71092566545049,63.35007434272507,65.0795575941577,77.13094199671872,79.47188383898005,63.25985212702064,64.99255854463239,0.2411415685325977,239.0418264704408,0.0902222157044363,86.99904952531767,154.6644,108.77342213321177,161473.74795109782,113562.3462756562,394.6962,259.4497399909848,411518.5158117829,270317.61376338673,380.76379,185.3449514484048,394433.8556946431,191012.24442275608,2782.20912,1283.3773070701684,2872830.042909493,1308009.7585899048,1157.36695,512.9180934072809,1196040.7901193325,523219.0403383488,1874.63308,790.9125199194126,1919587.672133886,794287.7926359957,0.38113,100000,0,703020,7339.715815958991,0,0.0,0,0.0,34007,354.46791184239373,0,0.0,34825,360.42930373865926,1595353,0,57381,0,0,0,0,0,85,0.8874226115281417,0,0.0,2,0.0208805320359562,0,0.0,0.06159,0.1615984047437882,0.3096281863938951,0.01907,0.3412869458128079,0.6587130541871922,24.58228894073566,4.428169851073555,0.329321435982569,0.2297157086532475,0.2172649927370823,0.223697862627101,11.318601294702493,5.8265486555463175,20.3491691520057,12201.38101959388,54.69939019515446,13.14507534991844,18.090149080993925,11.620639602271496,11.843526161970608,0.5582070969080722,0.7777777777777778,0.6868304977945809,0.5807067812798472,0.12152133580705,0.7253086419753086,0.913151364764268,0.8548009367681498,0.7544642857142857,0.1570247933884297,0.4967357365881351,0.7002840909090909,0.625,0.5334143377885784,0.1112440191387559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0047240582295932,0.0070629782224838,0.0093558578234678,0.0116037831790908,0.0137949991855351,0.0161860787491463,0.018235810355736,0.0204279758011772,0.0227919353188005,0.0247794140252713,0.0269501944806494,0.0293776018913501,0.0315383031301482,0.0335969806028482,0.0357187138369978,0.0379678701556806,0.0400514384087279,0.042031214281261,0.0442387581080096,0.0589407774589094,0.0732873130425687,0.0864223414961422,0.0990333088158033,0.1107552596369612,0.1266004648214663,0.1387046181887544,0.1495970057206048,0.1601293241426407,0.1703322013562299,0.1826279665210749,0.1944936873054306,0.2050819458331522,0.2157272170718908,0.225668437434696,0.2356407132572821,0.2456629664751492,0.2548737436197243,0.2637552010702584,0.2713646096943741,0.2782835000867503,0.2851163334502514,0.2913366278107488,0.2959658975249362,0.3011931204408355,0.3063245000492562,0.3108969143143268,0.3146021694070372,0.3188653363356368,0.3233540831399029,0.3222157967642589,0.3207808979502116,0.3196797564344713,0.3184170955988664,0.3175454761621686,0.3162329008440434,0.3148429584599797,0.3163534914252892,0.317049382293556,0.3173990710968203,0.3193700610464027,0.3198127000434662,0.3220356724166806,0.3239320247426364,0.3245205018506946,0.3251226385554743,0.3269494626114795,0.331367292225201,0.333930516036112,0.3363455414012739,0.3400647308200756,0.3436936459106821,0.3469541711196329,0.3470257112429636,0.3505649717514124,0.3497869318181818,0.3536399634480658,0.3581027667984189,0.3606158833063209,0.347940074906367,0.0,2.231413520835986,56.74883108250496,181.23858393744047,262.74038508165125,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95643,44861,426.1158683855588,5935,60.8199240927198,4650,48.02233305103353,1825,18.684064698932488,77.25911226955019,79.65512462142888,63.27736057920528,65.045632316355,77.02689736941933,79.42571744012342,63.19146549391602,64.9633954486318,0.232214900130856,229.40718130546145,0.085895085289259,82.23686772319638,155.4927,109.3739677196915,162576.14253003357,114356.47953294178,388.70543,255.33395105765268,405816.44239515695,266369.24924736016,372.41105,181.21162901173253,385743.0862687285,186583.38213780176,2700.88492,1231.725578838612,2792261.890572232,1256395.8922318844,1099.53119,483.3141755803785,1134055.6548832636,489900.8556537767,1797.3791,754.7083070284185,1843249.0825256424,758695.2304643613,0.37969,100000,0,706785,7389.824660456071,0,0.0,0,0.0,33574,350.386332507345,0,0.0,34049,352.362431124076,1588492,0,57089,0,0,0,0,0,71,0.742343924803697,0,0.0,1,0.0104555482366717,0,0.0,0.05935,0.1563117279886223,0.3074978938500421,0.01825,0.3298985670584446,0.6701014329415553,24.646111130741627,4.429717046108725,0.3290322580645161,0.2227956989247312,0.2191397849462365,0.2290322580645161,11.025558116005111,5.556109746858506,19.482697135047687,12149.499802338516,52.50848463625909,12.316935246602302,17.40705068768925,11.220290695401156,11.564208006566377,0.5470967741935484,0.7837837837837838,0.6875816993464052,0.5525024533856723,0.1098591549295774,0.7323272438443209,0.9263157894736842,0.8650602409638555,0.7213114754098361,0.1590909090909091,0.4783249778826305,0.7012195121951219,0.62152466367713,0.4993548387096774,0.0970414201183432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0044616149017937,0.0065769441568722,0.0089009917086652,0.0111297624497685,0.013189253050333,0.0153149662499745,0.0174668476984799,0.019637910060212,0.0215673429279177,0.0236835629921259,0.0255262347263579,0.0278017773389286,0.0300395582660293,0.0323013415892672,0.0342966447810577,0.0361330957609911,0.0381772887689433,0.0402850010401497,0.0421171147691377,0.0567433694902501,0.0703011259492013,0.0841664216406939,0.0973085104142535,0.109159837796739,0.1242083412763974,0.1366557265610893,0.1481221032443663,0.1592634573023375,0.1693333619689876,0.1816416783518498,0.194246397226135,0.2059970374243018,0.2160699417152373,0.2259579864365661,0.2371524384827218,0.2463636770497672,0.2553796183516037,0.2633237040238382,0.2711019188785476,0.2779105932596787,0.2839178885630498,0.2901610357553965,0.2949585793125007,0.3000694943977762,0.3053114300194064,0.310129283293586,0.3152409623185447,0.3188332424643664,0.3230095520334453,0.3220245166864672,0.3212732769211656,0.3210901479365259,0.3206327532610906,0.3200740331656641,0.3180944768112154,0.3162725699131346,0.3166016171796518,0.3177991529928158,0.3177847784062433,0.3192252106833837,0.3203126545958247,0.3212891854463049,0.3225597642909756,0.324621667067019,0.3261163734776725,0.3278068479126379,0.3302201257861635,0.3322327982859752,0.3338233541261075,0.3372098326264423,0.3396757905926122,0.3410608542270379,0.3462792990973223,0.3496451251400821,0.3493661888401848,0.3522483940042826,0.3568825910931174,0.3572421462329719,0.3615775087856306,0.0,2.3532519686803006,55.27961819506877,161.90447529409423,264.6399094690019,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95621,45379,430.4912100898338,6074,62.37123644387739,4768,49.29879419792724,1889,19.378588385396515,77.28554750318864,79.71883533514418,63.27381344368565,65.07242475309694,77.0541543074383,79.488999746805,63.18731377404615,64.9897962206832,0.2313931957503427,229.83558833917076,0.0864996696394939,82.62853241373591,155.30636,109.26515603115574,162418.44364731596,114268.7916532325,393.278,258.1950680061524,410704.8033381789,269437.1618370672,381.95395,185.11563306639184,396704.949749532,191458.27131348223,2745.29516,1259.0309133331957,2839068.572803045,1284857.69756109,1147.37839,505.869009869356,1187006.17019274,516138.8893002416,1851.44098,775.2369474779184,1899995.3566685144,776147.1957679667,0.38341,100000,0,705938,7382.656529423453,0,0.0,0,0.0,33949,354.4200541722007,0,0.0,34852,361.6778741071522,1589693,0,56966,0,0,0,0,0,66,0.6902249505861684,0,0.0,0,0.0,0,0.0,0.06074,0.1584204898150804,0.3109976950938426,0.01889,0.3306704260651629,0.669329573934837,24.585742568028987,4.369331885488899,0.3267617449664429,0.2342701342281879,0.2139261744966443,0.2250419463087248,11.289105526235524,5.860209862223165,20.04073713480464,12350.638716617172,54.03229692298084,13.543190770373773,17.44186252316063,11.38246339469226,11.66478023475417,0.5698406040268457,0.8021486123545211,0.686777920410783,0.5990196078431372,0.1304753028890959,0.7360126083530338,0.900709219858156,0.8632911392405064,0.7424892703862661,0.1788990825688073,0.5095741640468705,0.7420749279538905,0.6268271711092004,0.5565438373570522,0.1181286549707602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024118362383461,0.0046354055726298,0.0070462575640661,0.009147735935356,0.0115879217026818,0.0139860852203852,0.016260162601626,0.0185620300751879,0.0205071033332992,0.0227870917526089,0.0251123284298639,0.0273838882038635,0.029130211013896,0.0311098741379843,0.0331966916889526,0.035395484024452,0.0375033679454496,0.0391425811878823,0.0411050160818561,0.0432587492828456,0.0580093458920936,0.0719877592513021,0.0861400393026408,0.0986808833445718,0.1112038367277951,0.1268746822572445,0.1393334608599545,0.1508198818687762,0.1621433616574987,0.1723274630105193,0.1850281114096711,0.1966754497251228,0.2085204237325079,0.2199381999079573,0.2294597574421168,0.2393753399114287,0.2492845644786263,0.2579256404187939,0.2665393968318902,0.2740748383546567,0.2815731872560714,0.2882806918923983,0.2949538782575703,0.3005499255559291,0.3057898516327698,0.310564449436538,0.3145731035173865,0.3187469744452088,0.3237597572677057,0.3283852137508419,0.3279635790579583,0.3268368497785602,0.3258305027413285,0.3254694479378984,0.325261468980271,0.3236177976756309,0.3220524363567194,0.3218078984577949,0.3215524755182609,0.3227231272688257,0.3232345942705113,0.3251953895950106,0.32634755637522,0.3267348853836185,0.326771653543307,0.3279033515198753,0.3290006513182114,0.332738988988989,0.3366384858922172,0.3404641616671929,0.3439016646255726,0.3468685478320715,0.3524018838304552,0.352887745060934,0.3533096484667165,0.3574108818011257,0.3524416135881104,0.3544303797468354,0.3620081411126187,0.3698526633925198,0.0,2.1221566949777766,55.77636438297747,177.95351197749838,262.6953591340826,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95823,45451,430.62730242217424,5962,61.15442012877911,4681,48.41217661730482,1811,18.575916011813447,77.35864855579545,79.66242824157696,63.35358995694328,65.05372317391614,77.13404462750363,79.43796429362703,63.27001213244756,64.97213242263926,0.2246039282918275,224.4639479499284,0.0835778244957197,81.59075127687743,156.01586,109.76459303957016,162816.71415004748,114549.31805471562,392.82442,258.67314148435173,409513.6136418188,269514.5752943988,385.65938,187.6188556751169,399203.08276718535,193313.83941181155,2675.38284,1227.9950530692274,2768773.551235089,1258292.9913165185,1104.53883,488.172870013326,1143348.9350156016,500115.097641825,1776.43796,747.0726478520367,1824848.2514636363,756379.4169267045,0.38252,100000,0,709163,7400.759734093068,0,0.0,0,0.0,33914,353.4641996180458,0,0.0,35148,363.7540047796458,1586697,0,57004,0,0,0,0,0,67,0.6783340116673451,0,0.0,1,0.0104359078718053,0,0.0,0.05962,0.1558611314441075,0.3037571284803757,0.01811,0.3248040940348632,0.6751959059651368,24.494254517280712,4.36536728586299,0.3170262764366588,0.2362743003631702,0.2294381542405469,0.217261268959624,11.323503276186168,5.743072082148104,19.32069262033634,12225.536850894405,53.225563604656514,13.26692703688982,16.800148847458786,11.993563536821483,11.164924183486423,0.5639820551164281,0.7884267631103075,0.6880053908355795,0.5847299813780261,0.1170108161258603,0.7369668246445498,0.9078014184397164,0.8540540540540541,0.7677165354330708,0.1735159817351598,0.4998535871156662,0.7144948755490483,0.6328545780969479,0.5280487804878049,0.1015037593984962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021861020585794,0.0045984462518611,0.0068939647393979,0.009264614853826,0.0113689472293906,0.0136513910787854,0.0158191745100435,0.0180551446961737,0.0201560999530065,0.0222795065365494,0.0245104064241232,0.0266580507518411,0.028725535521652,0.0308920835177048,0.0330140531400468,0.0349289956106377,0.0368346991143117,0.0390093713717034,0.0409447837467281,0.0428903069988236,0.0579717704497324,0.0718026993967653,0.0850443878460103,0.0976932373495875,0.1095982801500653,0.1254028806627849,0.1370700988083626,0.1494463178273958,0.1601985800459082,0.1701564225445734,0.1823065825455954,0.1948897687198459,0.2064439659859507,0.2170327266363318,0.2262389643556945,0.2360138310133877,0.2449134476947287,0.2539545035213644,0.262445390070922,0.2710536264592331,0.2784181654051802,0.2858865115408024,0.2923770957658426,0.2983200834562394,0.3037859261780868,0.3086976893294863,0.3133601921825734,0.3175794266527612,0.3217569212441405,0.3261761794787199,0.324685640431891,0.323897943745272,0.3229238498670082,0.3219270013999336,0.3216766609273882,0.3200159014112502,0.3178856130583323,0.3184944436237094,0.3185002905089032,0.3200407718030793,0.3213294320654212,0.3223037519036411,0.3226530697889126,0.3243665936815765,0.3256887350353382,0.3263100180151954,0.3266854974464321,0.3298355076574021,0.3337317630515029,0.3361468328223912,0.3388249214945615,0.3417061359161301,0.3439486437157782,0.3486932599724897,0.3510807523158978,0.356439127375088,0.3551970780703089,0.3631217145167812,0.3697222222222222,0.3736306729264476,0.0,1.7352375349504054,56.08277247397142,176.34580166307796,253.9101110047044,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95865,44755,424.4614822928076,6010,61.57617482918688,4750,49.00641527147552,1864,19.07891305481667,77.41454581429173,79.70234276392078,63.37712166936033,65.06781358246026,77.18371470476083,79.47403528101175,63.29143867273072,64.98537509600123,0.2308311095308965,228.30748290903105,0.0856829966296075,82.43848645902574,154.44066,108.6361803132394,161102.0080321285,113321.83750605484,391.68858,257.1651951903561,408063.0678558389,267738.49228371785,378.07891,183.83733254353533,391189.4226255672,189241.08358866465,2725.8168,1255.0099138142257,2814092.317321233,1280132.2440286195,1116.38535,492.3147761272938,1151539.5608407657,500775.5108756476,1820.43174,761.5707409523995,1865368.716424138,766452.8509875711,0.37845,100000,0,702003,7322.818546914933,0,0.0,0,0.0,33792,351.9428362801857,0,0.0,34651,358.21206905544256,1599755,0,57498,0,0,0,0,0,72,0.7510561727429198,0,0.0,0,0.0,0,0.0,0.0601,0.1588056546439424,0.3101497504159733,0.01864,0.3274900398406374,0.6725099601593626,24.264011503498583,4.344081621657648,0.3208421052631579,0.2317894736842105,0.2288421052631579,0.2185263157894736,11.267015741234296,5.872896694368139,19.903179670712085,12076.6270054995,54.04717973577248,13.38495897207069,17.26761615244407,12.13131681658638,11.263287794671324,0.5696842105263158,0.7938237965485921,0.708005249343832,0.5850965961361545,0.1127167630057803,0.7486712224753227,0.9175946547884188,0.8961352657004831,0.6973180076628352,0.1088082901554404,0.5010195164579085,0.7085889570552147,0.6378378378378379,0.549636803874092,0.1136094674556213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020752138482563,0.0044273339749759,0.0065505947250474,0.0085781576756745,0.0106718162414879,0.0126680165650851,0.0147616136919315,0.0167185188963125,0.0188365085040094,0.0210807327625886,0.023426136480036,0.0253774823568028,0.0273216744415445,0.0295619235836627,0.0320126194673842,0.0340731866020801,0.0360660486674391,0.0378776102388724,0.0396657323782829,0.0416484636668122,0.0558672033032344,0.070049848989957,0.0835768984988005,0.0961120502294131,0.1082131199326102,0.123679874957756,0.135444030166935,0.1473982910343068,0.1582877318740866,0.1684958936085918,0.1812412606217059,0.1929126622920337,0.2043348362214134,0.2141741229938929,0.2238217162448764,0.2344909994136065,0.2432824172148511,0.2532954251744637,0.2613858017691086,0.2692021477555039,0.2756291635825315,0.281693928375171,0.2891104566582692,0.2941296298515332,0.3000291644388276,0.3048939842209073,0.310130702589013,0.3150365892459433,0.3180769131032336,0.3229521620836305,0.3219711253568927,0.3211617572197075,0.3199690184481059,0.318109599329809,0.3174433455107072,0.3164853325988156,0.3143471252015045,0.3152115123006572,0.3160031385392147,0.3167197707328361,0.317455278784031,0.3176398715093707,0.3184075449651546,0.319729404957942,0.3209956398830914,0.3220985444072546,0.3221837972674188,0.3262245502447541,0.3297508549096238,0.3343342552350849,0.3392647457320928,0.3426540284360189,0.3437694510145649,0.3463469464218808,0.3466963622865627,0.3491075622357914,0.3544861090025808,0.3578371810449575,0.3532623532623533,0.3576835730507191,0.0,2.1050562327367643,57.787938676566846,179.028747903792,252.4959913149337,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95725,44983,426.9313136589188,6126,62.84669626534343,4803,49.76756333246279,1905,19.65003917471925,77.36002699221102,79.73504145495419,63.33690834044432,65.09016174386568,77.1260560082048,79.49773236560496,63.2504854570945,65.0040482348366,0.2339709840062198,237.30908934922468,0.0864228833498259,86.11350902907589,155.21616,109.11924171783797,162147.98641943064,113992.4175689088,392.70639,256.8932030913951,409852.8597545051,267974.3672931785,375.88961,182.14045410759016,390474.7035779577,188460.74625630263,2745.76336,1256.0999771673175,2847418.876991382,1291228.3490909564,1116.82211,494.05628712247193,1158951.256202664,508373.2223791815,1865.81736,777.7810235972206,1926657.5711674064,794063.9061436724,0.38047,100000,0,705528,7370.36301906503,0,0.0,0,0.0,33934,354.0767824497258,0,0.0,34359,356.6988769913816,1596738,0,57337,0,0,0,0,0,64,0.6685818751632281,0,0.0,2,0.0208931835988508,0,0.0,0.06126,0.1610113806607616,0.3109696376101861,0.01905,0.3278637770897832,0.6721362229102167,24.761243393429936,4.371734153676798,0.3337497397459921,0.2263168852800333,0.2206953987091401,0.2192379762648345,11.079835035625388,5.696801924427155,20.192740600980898,12203.809635906637,54.24533157540934,13.041792577093888,18.078959904395788,11.595104441300046,11.529474652619625,0.5536123256298147,0.7709291628334867,0.6974422956955708,0.5490566037735849,0.1149097815764482,0.7468253968253968,0.9154228855721394,0.8982630272952854,0.7792207792207793,0.1383928571428571,0.4848998024273215,0.6861313868613139,0.63,0.4849215922798552,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024004618610162,0.0047136818416811,0.0069005408806307,0.0093459842743655,0.0117274909475568,0.0136654311433342,0.0158409785932721,0.0179428034864969,0.0201073345259391,0.0224001310428141,0.0245237753490947,0.026610816804238,0.0285364649747028,0.0308170853546745,0.032531313839995,0.0345112797502119,0.036652577490469,0.0386842979324088,0.0403461510458379,0.0421798478691257,0.05643451653665,0.0705404613388035,0.0830623334662106,0.0957835063473532,0.1085070268104711,0.1245612922322297,0.1365531287458497,0.1479561973884448,0.1583826387850567,0.1685563195211687,0.1811003264136512,0.1927975501282287,0.204504200949969,0.2156826306066005,0.2253906808459161,0.2368316129889691,0.2467228203268812,0.2564944558152088,0.2650967142112066,0.2724785346307956,0.2790264770493699,0.2858411629972421,0.2924386639077742,0.298382752552761,0.3030910062160062,0.3092118226600985,0.3139214852253109,0.317581565602003,0.3221323672122663,0.3261979187274957,0.3249639871296059,0.3243775205428544,0.3230964467005076,0.3220858895705521,0.3204539032406788,0.3179659251087822,0.317114465647647,0.3178518166472738,0.318833407283525,0.3198082611639759,0.3204840459357349,0.320868587657535,0.3221923181239698,0.3228809407153356,0.3227970955450646,0.3247590095356873,0.324511979966991,0.3279410839050796,0.3320561043343762,0.3367241104196585,0.3397271561984984,0.3417937506665244,0.3476864966949953,0.3503005402115194,0.3558988764044943,0.3533861245715636,0.3562290587876942,0.3528937285743093,0.3569069895432031,0.3662947287418238,0.0,1.6054998674308067,55.77231748609528,180.16061479555745,265.12182531793826,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95755,45219,427.4345987154718,5970,61.1143021252154,4623,47.73641063129863,1800,18.44290115398674,77.33346816806463,79.69747204679295,63.32120940122799,65.07101280212025,77.10315245894128,79.468189739276,63.23530090107718,64.98781528493653,0.2303157091233458,229.2823075169537,0.0859085001508077,83.19751718372004,156.2748,109.94768317928778,163202.7570361861,114821.87162998044,392.64913,257.8377368675837,409506.2189963971,268718.5611587761,377.7667,183.4132271268596,391291.5043600856,188924.56074371908,2634.66636,1206.7556984031542,2722835.528170853,1231638.588960879,1119.52897,490.54624118289865,1155298.7729100308,498462.0239638008,1762.18994,742.9322302852853,1807668.4872852592,748365.8066033327,0.38211,100000,0,710340,7418.307138008459,0,0.0,0,0.0,33860,353.0363949663203,0,0.0,34449,356.61845334447287,1589030,0,57006,0,0,0,0,0,75,0.7728055976189233,0,0.0,0,0.0,0,0.0,0.0597,0.1562377325900918,0.3015075376884422,0.018,0.3269815852682146,0.6730184147317855,24.89252023781297,4.409125564884995,0.3220852260436945,0.2383733506381137,0.2206359506813757,0.2189054726368159,11.115581452956864,5.704217780507242,19.129127269308636,12250.604290398109,52.2541022897446,13.260342218141698,16.734544327779787,11.255719152993349,11.003496590829773,0.5602422669262384,0.7813067150635209,0.6957689724647415,0.5637254901960784,0.116600790513834,0.7218700475435816,0.8946078431372549,0.8560606060606061,0.7543103448275862,0.1415929203539823,0.4995537042546861,0.7146974063400576,0.6376944190301921,0.5076142131979695,0.1094147582697201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002441866355945,0.0046748874376343,0.0069626291537259,0.0093275620313357,0.0116860926344053,0.0140109358612754,0.0162602454838315,0.018166602028944,0.0204713625771636,0.0225299922204479,0.0246457936068565,0.0267032154736971,0.0289895312724954,0.0311122554067971,0.0334378804448754,0.0354939069137665,0.0374838208646129,0.0396795749802847,0.0418555329147087,0.0439324660715959,0.0579356131780032,0.0713672709004898,0.0843703439447673,0.0974296411593959,0.1096874209060997,0.1261261261261261,0.1385284600286457,0.1497009174702514,0.1604503118858412,0.1696625839250091,0.1822618701315491,0.1945851188157382,0.205962973437466,0.2159282354228202,0.2265350804810157,0.2376237623762376,0.2467483169400127,0.2562714534916437,0.2647516144775221,0.2722921366327336,0.2786168613391928,0.2858713064627401,0.2918618405488526,0.2973095996741812,0.3024203821656051,0.308643646476828,0.3135561443855614,0.3185844081580786,0.3233079788885439,0.3278623637754967,0.3266125230649049,0.3257940327237729,0.3246203003814591,0.3228337354968284,0.3215527230590961,0.3199393131350282,0.3174929929850675,0.3174227870548249,0.3187517081169718,0.3185794886444794,0.3191094967046135,0.3206783542604438,0.3217264081931236,0.322760652664003,0.3247493327562576,0.3283644432841666,0.3285409859355022,0.3304443397707646,0.3337781836060968,0.3386924325822674,0.3422117176491978,0.3452836201402167,0.3489501229585724,0.349308262630895,0.3511904761904761,0.3506898620275945,0.3526145303100416,0.353678586107686,0.3547572270558518,0.3462582396277627,0.0,2.0206812158534917,55.48643540739019,167.43925407166432,253.8688825021312,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95805,45294,429.1216533583842,6037,61.81305777360262,4697,48.51521319346589,1887,19.351808360732736,77.34149214859087,79.679775300543,63.33904717832892,65.07216707037873,77.0973346639729,79.43766798911666,63.24791851961125,64.98411068172099,0.2441574846179719,242.1073114263379,0.0911286587176647,88.05638865773346,155.9921,109.73425812357412,162822.50404467407,114539.1765811535,394.00853,258.6326778484405,410778.91550545377,269475.3800411675,372.91834,181.47387402066477,386657.1577683837,187331.2433887063,2702.90836,1249.2860396600445,2793599.7912426284,1276327.9157246952,1102.96315,486.7488356740208,1137596.5346276292,494400.1311768913,1842.76612,784.2400130149995,1891588.3095871825,790382.7217364927,0.38409,100000,0,709055,7401.0229111215485,0,0.0,0,0.0,34070,355.10672720630447,0,0.0,34128,353.5514847868065,1592408,0,57109,0,0,0,0,0,62,0.6471478524085381,0,0.0,0,0.0,0,0.0,0.06037,0.1571767033768127,0.3125724697697531,0.01887,0.3404592240696754,0.6595407759303247,24.36762316101061,4.34688581006546,0.323397913561848,0.2314243133915265,0.2241856504151586,0.2209921226314669,11.207132550817652,5.917556843174255,20.36651529122062,12248.838491015164,53.48584760955668,13.09121217935662,17.28950650024357,11.626552937911931,11.47857599204456,0.5692995529061102,0.7930082796688133,0.7057274522712311,0.584045584045584,0.1204238921001926,0.7340507302075326,0.913953488372093,0.8567901234567902,0.714859437751004,0.1705069124423963,0.5061837455830389,0.7138508371385084,0.6508078994614004,0.5435323383084577,0.1071863580998782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0046227304522368,0.006798924349282,0.009063935292444,0.0113445591901103,0.013578347984639,0.0156351990861618,0.0179313584331505,0.0201445911261542,0.0222713728381408,0.0242799577561545,0.0267195169538518,0.0289234946822735,0.0311930196862155,0.0331317842255148,0.0348534336627113,0.0367589955992751,0.0389211618257261,0.0408877897733767,0.0428278453866894,0.0576347227294068,0.0712657619037661,0.0848606788435138,0.0976755427586641,0.109620511955823,0.1253184225268743,0.1372763124416928,0.1492470648289943,0.1606130791644875,0.1701249705258193,0.1836998288611191,0.1958159900535164,0.2072251195132551,0.2173708714944588,0.2273117097306212,0.2378748796067708,0.2473719999554104,0.2559124087591241,0.2637254346718015,0.2716221625021442,0.2794068393638768,0.2858277279521674,0.2923291525303512,0.2982319635140473,0.3044264324022617,0.309617302034737,0.3139882254415459,0.3185103329141739,0.3222996290503949,0.3267939433838051,0.3262934165568081,0.3251715083107634,0.3239589347829148,0.3232009477440513,0.3225787275780588,0.3197065310623698,0.3175219499825668,0.3178029493481513,0.3181561424830113,0.3187568215570148,0.3198512145178561,0.3217436121077566,0.3225670876499884,0.3232332294166461,0.3249233443588691,0.3254433226970759,0.3271902629463773,0.3305092812946216,0.3357158021371453,0.3401550883363978,0.3434776594273067,0.3452310665020665,0.3486904989485758,0.3496984691510746,0.3502954068991805,0.349526208468274,0.3481446835048332,0.3468756444627758,0.3506020722486698,0.3536632144227081,0.0,2.033931381374078,57.13353836174242,174.68460095140583,253.85414622847756,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95708,45189,428.4072386843315,6060,62.074225770050575,4721,48.79424917457266,1872,19.193797801646674,77.3419109081298,79.70989449492447,63.33255108723839,65.08072040260548,77.11537155715912,79.48286701367877,63.24935571323293,64.99905218608694,0.2265393509706825,227.0274812456989,0.0831953740054558,81.66821651853695,155.21704,109.2383681806806,162177.70719271115,114137.1339707032,392.21018,257.92846496114066,409254.7331466544,268953.3021671054,385.56946,187.2635604217935,398932.7537927864,192777.38211497935,2711.18408,1248.5408884357532,2803675.0532870814,1275625.2883515016,1131.51666,502.3036175044788,1170189.3572115183,512910.0953310109,1838.55588,761.9350398242744,1887088.665524303,770437.6078141866,0.38072,100000,0,705532,7371.713963305053,0,0.0,0,0.0,33814,352.7186860032599,0,0.0,35207,363.92987002131485,1593859,0,57164,0,0,0,0,0,70,0.7313913152505538,0,0.0,1,0.0104484473607221,0,0.0,0.0606,0.1591720949779365,0.3089108910891089,0.01872,0.3336987159411212,0.6663012840588788,24.53859051296466,4.326648713948402,0.3304384664266045,0.235543317093836,0.2092776954035162,0.2247405210760432,11.30953956227757,5.859330294525244,19.73046715684756,12221.236314022712,53.810731473349925,13.603895750391182,17.78797847729773,10.97374825853185,11.445108987129151,0.5659817835204406,0.8057553956834532,0.6897435897435897,0.5748987854251012,0.1244109330819981,0.7580893682588598,0.9466357308584686,0.8594847775175644,0.7807017543859649,0.1462264150943396,0.4931346771837569,0.7165932452276065,0.6257722859664607,0.5131578947368421,0.1189634864546525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0048140265531569,0.0068269425847027,0.0090598846185097,0.0113779639646967,0.0137350329885151,0.0160147608999255,0.0183616395852045,0.0204210956663941,0.0227209923546931,0.0246847770374167,0.0267586688435038,0.0288758175311587,0.0308562480038737,0.0328252860990434,0.0348983853294465,0.0367539689936931,0.0389991801662498,0.0409778110508037,0.0429454246084265,0.0583277633887542,0.0716483838553006,0.0845119187510491,0.0979226926110965,0.1109270999251062,0.1268581706607416,0.1393880885192336,0.1500963452673714,0.1607306911654737,0.1706464139366244,0.1829597958018761,0.1951779066747467,0.2069066782684359,0.2165569575961685,0.2267068449762449,0.2370457287711569,0.2471955217556145,0.2563027571401274,0.2648990099459042,0.2729675610732879,0.280023595544606,0.2867405318763089,0.2934145908526123,0.298797143815594,0.3039924208378375,0.3085760777110736,0.313080718274938,0.3178239356898459,0.3215635516438002,0.3247352057754123,0.3243152343539794,0.3234954816381465,0.3220829586330935,0.3216838646451836,0.320367625259413,0.318791638652894,0.3158542939699683,0.3160085203998033,0.3165682493088029,0.3171497929458803,0.3187173387776508,0.3187173809900364,0.3185978169605373,0.3192533500649845,0.3200404809522662,0.3208684533284622,0.3218689348099098,0.3249141813371964,0.3272394237204551,0.3284808359589997,0.3300447611217685,0.3330667519727021,0.3362820674838873,0.3401162790697674,0.3393532526475037,0.3406789755807028,0.3391077724973171,0.3361396303901437,0.3423700391280044,0.3505194305502116,0.0,1.9844943190709008,57.24680525634029,178.05193860029985,253.4841891366804,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95708,44838,425.8369206335939,5861,59.994984745266855,4590,47.37326033351444,1783,18.33702511806745,77.33810060160408,79.72274575831302,63.31256206328344,65.07597972076321,77.11625152955604,79.49923022081124,63.23035678942073,64.99474150385825,0.2218490720480446,223.51553750178252,0.082205273862705,81.23821690496413,155.6489,109.49343973252384,162628.9338404313,114403.64413896836,391.83944,257.5905037849595,408818.00894387095,268548.7146162907,371.41708,180.80787306163333,383842.34337777406,185615.74799633972,2608.7218,1194.6520006000842,2695423.496468425,1217940.1101267226,1079.23988,480.4171830866218,1111808.918794667,486152.2508655677,1747.68752,733.9931923912218,1799074.4556358925,745116.4638158323,0.37852,100000,0,707495,7392.22426547415,0,0.0,0,0.0,33840,352.95900029255654,0,0.0,33892,349.90805366322564,1591856,0,57105,0,0,0,0,0,78,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05861,0.1548399027792454,0.304214297901382,0.01783,0.3375,0.6625,24.501920370131653,4.379478986620157,0.3156862745098039,0.2396514161220043,0.229193899782135,0.2154684095860566,11.228942778390955,5.820280782363662,18.84861828876862,12073.078271991317,51.805139843101394,13.120279348602027,16.278104656013152,11.58552151189558,10.821234326590629,0.5610021786492375,0.7709090909090909,0.6894409937888198,0.5750950570342205,0.1243680485338726,0.7242524916943521,0.9172932330827068,0.834733893557423,0.7359307359307359,0.1751152073732718,0.5029533372711164,0.6875891583452212,0.641941391941392,0.5298416565164433,0.1101036269430051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024426830998763,0.0044430919050517,0.0066806099863951,0.0090655934304937,0.0113144961894974,0.0136485399117937,0.0159006996715827,0.0184154350557161,0.0204632612363859,0.0223928735985255,0.0242209210512823,0.0262149978949962,0.0279874149170248,0.0298536665739854,0.031968887330046,0.034112164019469,0.0361443288295283,0.0380956333191546,0.0398478028089946,0.0416979166666666,0.0563805346700083,0.0703339265152308,0.0838868078944883,0.0961360481258676,0.1083669035918419,0.1235905138674395,0.1355842281736768,0.1471026683987477,0.1584166880396683,0.1688409217697292,0.1811345148952216,0.1933332611590468,0.2046718697275468,0.2153972422849638,0.2248893878359638,0.2349348850096979,0.2443037126390564,0.2526229286743516,0.2607787015583117,0.2679560227911082,0.274751873255585,0.2815192956163357,0.2884588051357369,0.2946958345819598,0.2997180839429363,0.3049046825837497,0.3100786849095374,0.3148473729806859,0.3186034460422334,0.3226500237504618,0.3215540095006123,0.3193953481974609,0.318562520234794,0.3168302540415704,0.3167465819515164,0.3144068704744118,0.3130444405798934,0.3144051130776794,0.3139971336927591,0.3146982797040734,0.3156072825253073,0.3168379321906865,0.3175111445972248,0.316955899454334,0.318634628771694,0.3207420073578942,0.3211219719507012,0.3241340467473951,0.3277967757694187,0.3298530396753477,0.3313681368136814,0.3322487536079769,0.3349493442724843,0.3371595768624803,0.3400982300064868,0.3460321181573086,0.3477020126164013,0.3510025809013301,0.3474165769644779,0.3567383918459796,0.0,2.284482261025833,52.52990842894704,169.95583739395343,255.8341519725281,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95659,45283,429.2643661338713,6137,63.09913338002697,4814,49.8332618990372,1880,19.33952895179753,77.27782633283482,79.68793069520454,63.2892740309558,65.07183547955503,77.04605311584834,79.45541921095727,63.20366640669777,64.98814844400312,0.2317732169864825,232.51148424726864,0.0856076242580243,83.68703555191814,155.08614,109.1284027209984,162123.94024608243,114080.64345330645,391.87054,256.4258413923138,409150.074744666,267558.9033884045,378.27575,183.19491799808472,391788.2164772787,188729.7834629196,2771.68176,1255.1914383546298,2870310.7496419577,1285002.1831240444,1162.35692,504.6444155919307,1202756.4473808007,515200.7339756577,1857.81248,772.7114230403711,1912927.6910693191,783648.4736102486,0.38147,100000,0,704937,7369.270011185565,0,0.0,0,0.0,33763,352.4393940977848,0,0.0,34442,356.5372834756792,1595211,0,57256,0,0,0,0,0,74,0.7631273586384971,0,0.0,0,0.0,0,0.0,0.06137,0.1608776574828951,0.3063386019227636,0.0188,0.3278561463339017,0.6721438536660983,24.51781126491752,4.420371839777234,0.3194848358953053,0.2299542999584545,0.214374740340673,0.236186123805567,10.929478577703676,5.458258340034857,19.96750311553325,12269.037650599588,54.3651319200417,13.146846618960067,17.536288480122675,11.248697081402383,12.433299739556572,0.5481927710843374,0.7750677506775068,0.6996098829648895,0.5532945736434108,0.1178540017590149,0.7133388566694283,0.897172236503856,0.875968992248062,0.6666666666666666,0.1348837209302325,0.4929304130856667,0.7089136490250696,0.6403127715030409,0.5232843137254902,0.113882863340564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090266096508,0.0045635242576667,0.006517369500335,0.0086486376617173,0.010763517981586,0.012897179124092,0.0153799082100968,0.0178128223722512,0.0201714367545672,0.0223005295991641,0.0244820512820512,0.0265317651892558,0.0287287132787981,0.0306515779275658,0.0327173239727441,0.03511403009774,0.0373045397552407,0.0393022169150096,0.0413024475524475,0.0431677180543245,0.0576008694470859,0.0719597000544593,0.0860159751451093,0.0991371145953909,0.1114100900102356,0.1267121112687088,0.1390691204111756,0.1507713287309298,0.1616291257567007,0.1718951301211028,0.1852566243898233,0.1974729867261427,0.2091441382612859,0.2192191534993653,0.228744716449454,0.2392412356512875,0.2482723202822342,0.2569673376163098,0.2655235804094231,0.2726939761242546,0.2793238602860413,0.2859280037400654,0.2918322452455293,0.2976380217383489,0.302768901794501,0.3074703074703074,0.3130102679689456,0.3176963324125113,0.3223192989733485,0.3264586661737327,0.3254173746527496,0.324739281575898,0.3250338944752005,0.3229735405291894,0.3222202359671076,0.3197561949212393,0.3175605961999397,0.317833797111949,0.318926234282386,0.3191531247762904,0.3204909264923902,0.3207954522946501,0.321122860020141,0.3228684510632589,0.3244101306010534,0.3271164365720239,0.3277958554547011,0.3300590632007833,0.3343245539507222,0.335349489284999,0.3359662013225569,0.3402188417400587,0.3420337483410225,0.3483499616270146,0.3515942851736209,0.3537594435783667,0.3552631578947368,0.3580983741510599,0.3572228443449048,0.362095531587057,0.0,1.911573922327746,53.12852172154399,183.435689627886,272.5529791908869,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95824,45155,427.8573217565537,5955,61.18508933043914,4673,48.2446986141259,1863,19.07664050759726,77.39792083527668,79.7032425600403,63.37134666233783,65.07212024056115,77.16418764778598,79.46990366481324,63.28603079291216,64.98923069759238,0.2337331874906993,233.33889522704965,0.0853158694256706,82.88954296877193,156.28646,109.88234878626795,163097.40774753716,114671.01017100931,392.89503,258.7963570325132,409505.17615628656,269562.49690319045,380.62339,185.10346998697537,394184.244030723,190688.69931004167,2670.8428,1228.919690103836,2759252.2123893807,1254490.242636329,1130.05269,499.1413770412567,1162660.9721990314,504254.6095354576,1827.10438,760.1873193328181,1873019.7445316412,764436.1941339064,0.38167,100000,0,710393,7413.518533978961,0,0.0,0,0.0,33883,353.0743863750209,0,0.0,34752,359.62806812489566,1590515,0,57005,0,0,0,0,0,76,0.7931207213224245,0,0.0,1,0.0104357989647687,0,0.0,0.05955,0.1560248382110199,0.3128463476070529,0.01863,0.3341338456612231,0.6658661543387768,24.56876428458025,4.367177661737552,0.3158570511448748,0.2392467365717954,0.2221271132035095,0.2227690990798202,11.015444240840887,5.648141810836661,19.83613605151249,12154.857678405226,53.26621975383287,13.550854738364755,16.694338046017798,11.605143821484567,11.415883147965769,0.5673015193665739,0.7969588550983899,0.698509485094851,0.5915221579961464,0.1104707012487992,0.7503912363067292,0.9331797235023042,0.8708860759493671,0.7429718875502008,0.125,0.498379970544919,0.7105263157894737,0.635522664199815,0.5437262357414449,0.1070154577883472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791204341135,0.0045496458571877,0.0067853339418834,0.0089863225125148,0.0108978529603122,0.0129144531965561,0.0150190540237614,0.0175057383320581,0.0195659725769867,0.0216590616111804,0.0238919738540663,0.0260169274172864,0.0280269173473056,0.0301717484589974,0.0324874770670569,0.0346703835630581,0.0363324126087541,0.0386385307408482,0.0405802519132321,0.042576441937431,0.0574963230308656,0.0714330537369004,0.0844360098139954,0.0971078941558646,0.1089316581643408,0.1245639258303909,0.1362768800101794,0.1480693090382732,0.1588027303900099,0.168259382004998,0.1812660190829007,0.1932574061455595,0.2052873588207798,0.2150501196969862,0.2249343052852634,0.2355578185360238,0.2457024369579273,0.2547549460431654,0.2633547553470026,0.2706465043923865,0.2776095249104149,0.2838584562903772,0.2903626281376734,0.2967843080936823,0.3024462385143162,0.3082854718303796,0.3124328913526606,0.3175199624236731,0.3215777022222796,0.3251112222602469,0.3241262683201804,0.3231066736154922,0.3219867717066184,0.3201105815611006,0.3194857896061966,0.3175828198401562,0.3149161685146922,0.3161717791411043,0.3166504779919227,0.3169209925841414,0.3176048307191864,0.3185638192937463,0.3191320178283705,0.3201558022922636,0.3209507509100113,0.3225831722985324,0.322745109271618,0.3263530825926043,0.330961606199366,0.3331211204838453,0.3369515434643217,0.3376157593276591,0.3407792867115116,0.3443063228974831,0.3482879635777293,0.3489812939354224,0.3499691928527418,0.3568682986040866,0.3621207980322492,0.3617994662600076,0.0,2.0584293263424343,56.26703983649049,174.63126584749264,254.5388346523951,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95543,45225,428.8330908596129,6015,61.61623562165726,4731,48.836649466732254,1865,19.05948107135007,77.19945181010942,79.67207449364156,63.224607941291474,65.05444502573664,76.9609262075069,79.43655998437836,63.13408628090404,64.96812169964863,0.2385256026025217,235.5145092631972,0.0905216603874308,86.32332608800652,154.03784,108.4289562045054,161223.34446270266,113486.8649890054,390.80541,257.0844180095445,408365.57361606817,268407.4442207011,380.86308,185.250737722179,394755.9423505647,190886.28185911095,2726.5356,1267.3163509855865,2817585.045476905,1290367.575422152,1127.08431,506.9152203381343,1164326.669667061,515314.6967289506,1823.74898,783.2820313852541,1866348.4713689124,782792.4122021344,0.38137,100000,0,700172,7328.333839213757,0,0.0,0,0.0,33696,351.9671770825701,0,0.0,34874,361.12535716902335,1591213,0,57122,0,0,0,0,0,63,0.6593889662246318,0,0.0,2,0.0209329830547502,0,0.0,0.06015,0.1577208485198101,0.3100581878636742,0.01865,0.3481363996827914,0.6518636003172086,24.365693977944638,4.3646330132200575,0.3250898330162756,0.2318748678926231,0.2223631367575565,0.2206721623335447,10.91180875728302,5.584979053592833,20.21815925030544,12214.630484045672,54.11342514914514,13.168649892527943,17.63269827624824,11.750181554855544,11.561895425513402,0.5649968294229549,0.7821330902461258,0.6963589076723017,0.594106463878327,0.1139846743295019,0.7279752704791345,0.9090909090909092,0.8687350835322196,0.7519685039370079,0.12,0.5036368926389293,0.7104136947218259,0.6318141197497766,0.543859649122807,0.1123321123321123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024936391927096,0.0046062376980986,0.0067328783816719,0.0091609728322759,0.0114020442236429,0.0136190340271972,0.0157881308363525,0.0177498467198038,0.0199447400736799,0.0221359103905553,0.0243899935329562,0.0267652411750794,0.0290622232291816,0.0310598089579336,0.0331628171342944,0.0353708400186325,0.0375117969778994,0.0395044534749576,0.0414895833333333,0.0434001858367351,0.058361403435362,0.0728817114093959,0.0865666621114486,0.0999178064869649,0.1112285560265096,0.1262391196022095,0.1386122813736754,0.1495762983201349,0.1603364225638827,0.1699793495095508,0.1831948930102939,0.1950067842605156,0.2062742102678815,0.2162912410440965,0.2263594815975978,0.2368359648440538,0.2466559957017652,0.2555561826288165,0.2641079924423501,0.2720234334616047,0.2789273452723392,0.2856120845354538,0.2918139755605647,0.2976791120080727,0.3029184632999586,0.3072682323856613,0.310910963722239,0.3141343883606662,0.3190298022708966,0.3233620119126406,0.3228260282116413,0.3217450109028679,0.3212913795051406,0.3202822738404022,0.3201539172843741,0.3187828654017651,0.3168634680482494,0.3176063303659743,0.3177026098901099,0.3178743788011984,0.3179532571234863,0.3195966333174527,0.320582532456584,0.3221226213744917,0.3233580700524547,0.3249043551176563,0.3266387806555123,0.3299180327868852,0.3326877706961513,0.3363712010143836,0.3399683329563447,0.3429249011857707,0.3431305109123882,0.3468892261001517,0.3472545912184208,0.3504313910885238,0.3492424242424242,0.3569292123629112,0.3591415376256452,0.3626331811263318,0.0,2.6477708469351,56.23168399374025,184.62435571559897,249.9031704296684,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95682,44989,425.55548588031183,6144,62.81223218578207,4854,50.14527288309191,1938,19.826090591751843,77.33990302576841,79.72987924290035,63.32261558699434,65.08868495023658,77.09316434869646,79.48616867222132,63.22966835332942,65.00004200002384,0.2467386770719457,243.71057067902768,0.0929472336649155,88.64295021274415,155.25576,109.21435356465116,162262.24368219727,114143.05048457511,393.79874,258.35818750167266,411011.465061349,269458.6625506079,381.60947,185.81261525274695,395659.47618151794,191793.7082160772,2774.986,1283.519571079946,2866792.2075207457,1308017.904182549,1167.11081,522.1594333049537,1204379.9356200749,530322.77053673,1888.60418,801.2416481743561,1933398.9674128883,801448.1291097889,0.38016,100000,0,705708,7375.556531008967,0,0.0,0,0.0,33862,353.3057419368324,0,0.0,34956,362.1684329340942,1593988,0,57199,0,0,0,0,0,85,0.8883593570368512,0,0.0,0,0.0,0,0.0,0.06144,0.1616161616161616,0.3154296875,0.01938,0.3307525549705791,0.6692474450294209,24.216227897457305,4.361987192083175,0.3271528636176349,0.2348578491965389,0.2204367531932426,0.2175525339925834,11.376649884032672,5.978414049116687,20.736556338958582,12176.146506772584,55.11857362172902,13.603997330698627,18.16833427454,11.700641670395024,11.645600346095351,0.5700453234445818,0.7921052631578948,0.7065491183879093,0.569158878504673,0.1259469696969697,0.7303543913713405,0.9039408866995072,0.863013698630137,0.721030042918455,0.1583710407239819,0.5115298087739033,0.7302452316076294,0.6469565217391304,0.5268817204301075,0.1173652694610778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0045208048248948,0.0067782163549837,0.0090500954779994,0.0111650041182392,0.0134367556342759,0.0158193011782933,0.0180758553115048,0.0203119888779849,0.0224671948248684,0.024686042339433,0.0267712332423166,0.0289160591072218,0.0311692057311784,0.03334675047218,0.0354329080419363,0.0376486676888649,0.0396097155906165,0.041933671770972,0.0438354165146413,0.0574255150223559,0.0715399997906044,0.0846378210508645,0.0976687426359198,0.1093703844368485,0.1250343849848706,0.1371579539305457,0.1482206917107546,0.1585985900448622,0.1688845044446112,0.1816899132963541,0.1936866254720962,0.2052035067110444,0.2151050266256984,0.2249790850248778,0.2357476790818248,0.2460439683071086,0.2554407759998199,0.2637174366887537,0.2713141888409067,0.2786454717941598,0.2849140451409191,0.2915088981446422,0.2973487798157443,0.3025000910669402,0.3068905616676317,0.3107546792112902,0.3156401841817395,0.3199896359632077,0.3236703496891212,0.3222282096187525,0.3217338637521164,0.3208938389961934,0.3205295138888889,0.3201124715473764,0.3186357092535302,0.3168859128397524,0.31606175069798,0.317543470470795,0.317776509612298,0.3185759499597355,0.31947107307335,0.3205963024224786,0.319926546334035,0.3205483412436457,0.3213884901474618,0.3221350078492935,0.3255234611503532,0.3286191732629727,0.331615460852329,0.3351506065149243,0.3375748899846243,0.3396392432908051,0.3420712711800015,0.3454630495790458,0.3501536279839281,0.3533466074437126,0.3553921568627451,0.3605688789737869,0.3717156105100463,0.0,2.314899348194704,56.63298844954031,186.6880819534991,261.16995986110965,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95789,45334,430.9471860025681,5874,60.059088204282325,4571,47.187046529350965,1750,17.903934689786926,77.331780499572,79.6740903683221,63.32970022966426,65.06343051869432,77.11555060437477,79.45914666491008,63.24983891254495,64.98639407426568,0.2162298951972303,214.9437034120183,0.0798613171193096,77.03644442864288,155.56662,109.47457617300545,162405.51629101465,114287.21061187134,390.3279,257.0966225694741,406937.5919990813,267849.5232015837,378.53268,183.9154040208267,392194.2081032269,189656.3110774728,2608.0932,1190.670786019222,2693087.974610864,1213485.1408885887,1076.7872,474.2795652764258,1111096.3471797388,482158.6132835292,1704.55136,710.9868214855328,1744589.7754439446,712473.8418847005,0.38083,100000,0,707121,7382.0689223188465,0,0.0,0,0.0,33731,351.5643758677928,0,0.0,34553,357.69242814937,1592180,0,57129,0,0,0,0,0,73,0.7620916806731461,0,0.0,0,0.0,0,0.0,0.05874,0.1542420502586456,0.2979230507320395,0.0175,0.3233863120337333,0.6766136879662666,24.37657306539043,4.442699703470138,0.3307810107197549,0.2386786261211988,0.2192080507547582,0.2113323124042879,11.505834169612683,6.022080734400939,18.527030372834616,12110.57642353649,51.66847059253528,13.018538274486003,17.15957735850252,11.04994383541086,10.440411124135904,0.5690220958214832,0.7919340054995417,0.7017195767195767,0.5658682634730539,0.1128364389233954,0.7363945578231292,0.91644908616188,0.8367346938775511,0.730593607305936,0.1483516483516483,0.5110456553755522,0.7245762711864406,0.6544642857142857,0.5197956577266922,0.1045918367346938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021878956697898,0.0044402092372572,0.0068089338082336,0.0091328375797472,0.011207729468599,0.0133402580474342,0.0154972370057706,0.017803911960472,0.0197399358017623,0.0216409888928699,0.0237934145241317,0.0258434811179333,0.0279063071955909,0.0296353522867737,0.0316118645117344,0.0337120468102263,0.0356887641496732,0.0378472006140187,0.0397069520939416,0.041493559907954,0.055911509965564,0.0698722843425415,0.0833176090739459,0.0958565829156289,0.1080927291886196,0.1238719222233963,0.1357917386557561,0.1468630370055295,0.1576627534685165,0.1680220286501023,0.1815549239977608,0.193448936101165,0.2047350276771829,0.2148130324937386,0.2235819778575044,0.2337340054284606,0.2432981180066712,0.2521449695824759,0.2604476088977574,0.2685123721015405,0.2761506276150627,0.2829381726398448,0.2900833776831648,0.2964054283900487,0.3014325603982032,0.3062466881092338,0.3114760253826802,0.3169396123576904,0.3207104731305384,0.3241730682928117,0.3237019890722148,0.3228310753249608,0.3216375914462577,0.32037502528098,0.3201877515856394,0.3185042204758184,0.315770291255982,0.3158655583664618,0.316309776287884,0.3177480064933906,0.3182780390026414,0.3193660442900564,0.3206724521024609,0.3198452974447251,0.3191187093667229,0.3199332168105809,0.3225135366201196,0.3269049563414787,0.3300311548289985,0.3345631992382766,0.3371928704927747,0.3385361176219902,0.3438491811603402,0.3500879810267003,0.3543396226415094,0.3549000951474786,0.3553706272152874,0.3557439935392691,0.3551867219917012,0.3583792289535799,0.0,2.0219802829319664,51.44160173786522,175.57842899782344,252.0677532988734,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95689,44863,424.4479511751612,6082,62.38961636133725,4750,49.07565132878388,1898,19.448421448651363,77.34192318165195,79.71752820020996,63.32298576779221,65.07516331056554,77.1066005334532,79.48344547881476,63.236348018735015,64.99117522018192,0.2353226481987462,234.0827213951968,0.0866377490571892,83.98809038362742,154.49588,108.71588314328592,161456.02942866995,113613.55656897448,390.95319,256.7350654889958,408026.7115342412,267762.3284609472,377.27073,183.43167740414083,390921.2030640931,189048.8604084389,2737.2192,1247.7416244963038,2831764.946859096,1275232.5392639744,1107.03305,484.2561027686472,1144970.2055617678,494252.9309934204,1863.60018,777.642004890436,1913075.776735048,784298.2866276453,0.37857,100000,0,702254,7338.910428575908,0,0.0,0,0.0,33705,351.66006542026776,0,0.0,34414,356.2478445798368,1596165,0,57253,0,0,0,0,0,81,0.8464922822895005,0,0.0,0,0.0,0,0.0,0.06082,0.1606572100272076,0.3120683985531075,0.01898,0.3427810836204196,0.6572189163795803,24.542827152398303,4.441918144008943,0.3265263157894736,0.2229473684210526,0.2273684210526315,0.2231578947368421,11.423410885130572,5.866662143022294,20.225832563166747,12122.813620949284,53.652142782999285,12.5939145820767,17.63857053991588,11.93405082290232,11.48560683810438,0.5635789473684211,0.7884796978281398,0.7034171502256609,0.5861111111111111,0.1113207547169811,0.7419354838709677,0.9247311827956988,0.8947368421052632,0.7379912663755459,0.1291866028708134,0.5026828579497317,0.7147016011644832,0.6371527777777778,0.54524089306698,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781811002095,0.0048144656956649,0.0069083051827505,0.0094257216568143,0.0116847853721538,0.0138054610983282,0.0160675325734559,0.0184513902361818,0.020706368358624,0.0227719528178243,0.0250697235665654,0.0271408180240498,0.0291488814605297,0.0313436988037464,0.0334547931913663,0.0353342639987591,0.0374559767971825,0.0396504120736542,0.0415973377703826,0.0434420165265143,0.0584733015793432,0.0715669336683943,0.0849199185541258,0.0977313860010943,0.1096455592018487,0.1248650707981459,0.1368660218501491,0.1476822461761322,0.158017935206661,0.1689761396202518,0.1818613075728825,0.1932748538011696,0.2054421768707483,0.2151361288628206,0.2246230049532196,0.2342259497667822,0.2441725462177369,0.2529354152360152,0.2614703880190606,0.268933840373866,0.2761589557247668,0.2824179167349231,0.2895023438609783,0.2947784904981715,0.299052247873633,0.3038172831593349,0.30960341610629,0.3134529718722159,0.3185771878200225,0.3223910171730515,0.321522504417259,0.3197192614756698,0.3197115723820678,0.3181975886893919,0.3171282203578588,0.3155551475650617,0.3138619184667446,0.3152682662462432,0.3159901514892453,0.3169090746854644,0.3174255199550309,0.3184084523762415,0.3195355563473267,0.3196372592924317,0.3205710577547047,0.3218689838180967,0.321657046998948,0.3253983189060344,0.3288097653107621,0.3313553287443627,0.3338315217391304,0.3360490953338271,0.3408761424519382,0.3401890359168242,0.3404553088262735,0.3433185115843669,0.3428657435279952,0.3450886630802949,0.3556280587275693,0.3568759342301943,0.0,2.1784807437397866,52.80386814520391,183.0368804382388,263.090716221005,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95728,45272,430.0100284138392,6106,62.57312385091092,4767,49.10788901888685,1955,20.025488885174664,77.32392886815877,79.68903105597778,63.31606620966248,65.06531400342486,77.08111759118512,79.44674877483057,63.225666611174056,64.97762831031079,0.2428112769736543,242.2822811472116,0.0903995984884247,87.68569311406793,155.97208,109.72784335838271,162932.5589169313,114624.6065502076,394.54786,259.6925261172715,411465.9347317399,270594.86811044207,381.08255,185.47632970031336,393428.69379909744,190186.2461934994,2744.91684,1265.3767036492552,2830778.7063346147,1285347.143261182,1153.82293,511.3621392240311,1187521.3103794083,516389.7806535506,1908.79624,806.2344105133699,1957010.049306368,811095.7034749825,0.3813,100000,0,708964,7406.02540531506,0,0.0,0,0.0,34058,355.05808123015214,0,0.0,34849,359.4246197559753,1585998,0,57008,0,0,0,0,0,68,0.6998997158616079,0,0.0,1,0.0104462644158448,0,0.0,0.06106,0.1601363755573039,0.3201768752047166,0.01955,0.3274266896659871,0.6725733103340129,24.29838696365891,4.43274776528928,0.3209565764631844,0.2294944409481854,0.224250052443885,0.2252989301447451,11.519926754760997,6.116413343279271,20.92684789560941,12175.801011126508,54.09486925819473,13.075250736392457,17.323967634491748,11.876943279412927,11.818707607897595,0.5697503671071953,0.7851919561243145,0.7137254901960784,0.5958840037418148,0.1191806331471136,0.7253685027152832,0.9057591623036648,0.8591885441527446,0.77734375,0.1293103448275862,0.5120759056929269,0.7205056179775281,0.6588658865886589,0.5387453874538746,0.1163895486935867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790118204746,0.0042583824230195,0.0067286418901089,0.0087992033977524,0.0111384627904138,0.0134521384928716,0.0159146055502314,0.0180673083793522,0.0201208477747446,0.0219924234667758,0.0239088756061802,0.0259142898211462,0.0279225652571734,0.0300049441720571,0.0321229194398869,0.0339869551285364,0.0360043089161418,0.0381329984327483,0.0400657190096394,0.0421315830598531,0.0567422534034911,0.0704287238716966,0.0838864596768274,0.0964468606399646,0.1087151368165761,0.1242767535091338,0.137073072393341,0.1491833301390574,0.1601508256959131,0.1707583781813503,0.1845093923246676,0.1964034689331516,0.2073853445370843,0.2177482835527179,0.2276891269204121,0.2372821296480854,0.2475143670144507,0.2551678350793883,0.2633497212539598,0.2706620336922741,0.2773991655076495,0.2841439118715574,0.2906068044635763,0.2969329572054499,0.3027765267245262,0.3072982248228526,0.3114480648155115,0.3161733763501192,0.3204667281010292,0.3248713505218737,0.3228510115665447,0.3219588865450635,0.3213292488388836,0.3199565532223026,0.3188440304171193,0.3179938110848984,0.315428806558311,0.3161788831288142,0.3160241952019684,0.3163258021915265,0.3176140088023223,0.3183706575927831,0.3195329532114707,0.3212887347578029,0.3228120861923679,0.3234580146694161,0.3249294932057089,0.3295694685380855,0.3338856961534393,0.3366852146263911,0.338559708295351,0.338390536311071,0.3409005156584077,0.3449638920562524,0.3496787603930461,0.3528081865778201,0.3515767131594906,0.3514048278591214,0.3538011695906433,0.345179584120983,0.0,2.6777806095503007,56.03705483217794,175.65594397455072,263.00557889754026,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95781,45098,427.0053559683026,6039,61.64061765903467,4694,48.28723859638133,1860,18.91815704576064,77.4066300966336,79.7460924788947,63.35719594835807,65.08780033489093,77.1681347369989,79.51287746064114,63.26717820279772,65.00312741111216,0.2384953596347117,233.21501825355995,0.0900177455603525,84.67292377876845,155.41966,109.32280411198272,162265.64767542624,114138.29894444904,393.74897,258.8786173422907,410401.3739676972,269590.1977869208,377.43757,183.6162898714564,389981.77091489965,188421.499419743,2703.17212,1249.7765783094712,2782845.115419551,1265698.8014520642,1122.20524,500.8683785132412,1157621.9396331217,509013.9010039727,1819.60256,776.3598249182336,1853905.9730009085,771293.8828167705,0.38193,100000,0,706453,7375.71125797392,0,0.0,0,0.0,33954,353.7549200780948,0,0.0,34510,356.2815172111379,1593204,0,57206,0,0,0,0,0,68,0.6890719453753875,0,0.0,1,0.0104404840208392,0,0.0,0.06039,0.1581179797345063,0.3079980129160457,0.0186,0.339034045922407,0.6609659540775931,24.32862185643037,4.44460445314766,0.3308478909245845,0.2275244993608862,0.2215594375798892,0.2200681721346399,11.215178743819592,5.830482648304723,20.024398550413512,12246.511882742294,53.24818231275906,12.828527439053296,17.514942665255695,11.538685860965124,11.366026347484937,0.5654026416702173,0.7837078651685393,0.6928525434642627,0.5932692307692308,0.1200387221684414,0.7209480122324159,0.8872180451127819,0.8177570093457944,0.7846153846153846,0.1583710407239819,0.5053160070880095,0.7219730941704036,0.6453333333333333,0.5294871794871795,0.1096059113300492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0049786051793717,0.0071340863194,0.0094998120358046,0.0114827961473133,0.0137369910999775,0.0159662323362084,0.0182003776859082,0.020503700069504,0.0226267960211224,0.0247914403427142,0.0269557543917254,0.0289320328478781,0.0310685608400247,0.0331199554689674,0.0352632611546523,0.0369650006724671,0.0391967821525574,0.0409142857142857,0.0428015159087123,0.0575578604670576,0.0715652746839017,0.0853869456295007,0.0987429844659786,0.1108453538727385,0.1261835319976329,0.1381477830423675,0.1492307201565141,0.1602927995219599,0.1709942798380358,0.1832795351839896,0.1955971714637891,0.207365710000978,0.2177459866768592,0.2271374117078422,0.2379566727888296,0.2478030066467413,0.2570484284365304,0.2651809005330611,0.2722818745850409,0.2788847385889237,0.2854822121452947,0.2914369543099164,0.2979707228251755,0.3037751667658959,0.3075917844021993,0.3121516863079062,0.3176108233317636,0.3225655976676385,0.3261127988376701,0.3254867065739092,0.3242145551670017,0.3228567399887196,0.3216723549488055,0.3200184200362458,0.3176663248595785,0.3162583518930957,0.3168149990183888,0.3178459186273677,0.3179487179487179,0.3187332039414751,0.3199315486142528,0.3208546117769671,0.3224148289904092,0.3244806731527741,0.3251586171177004,0.3274393866523326,0.3323875152006486,0.3347844257156788,0.3394726485635576,0.3431009571970381,0.3456666841856309,0.3471331631700181,0.3496771286980027,0.3542762247439801,0.3561484918793503,0.3581818181818181,0.355119825708061,0.3583265417006248,0.3538344722854973,0.0,2.7803790831629533,56.77688498117181,170.9960466963555,253.67371919688995,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95689,45044,427.6144593422442,5978,61.37591572699057,4595,47.44536989622632,1763,18.03760097816886,77.29491858535671,79.69625946839233,63.29396199958445,65.07355547222245,77.07040970003575,79.47556720606114,63.210128969057386,64.99411821318135,0.224508885320958,220.692262331184,0.0838330305270673,79.4372590411001,156.2792,109.91437211489188,163319.9218300954,114866.25642957068,391.71738,257.3288390033288,408775.4600842312,268333.5615586805,375.31289,182.198568260893,388536.6552059276,187651.6537242707,2622.0582,1206.940725030068,2707059.9128426467,1228250.2599258148,1071.60635,476.4546326509659,1104108.6436267493,482347.2809757234,1718.87172,726.0080197488896,1759130.0985484223,726482.1151703063,0.38063,100000,0,710360,7423.632810458883,0,0.0,0,0.0,33842,353.04998484674314,0,0.0,34244,354.2726959211613,1589288,0,57027,0,0,0,0,0,59,0.6165807982108706,0,0.0,0,0.0,0,0.0,0.05978,0.1570554081391377,0.2949146871863499,0.01763,0.3286970423661071,0.6713029576338929,24.432289927490864,4.337970451816401,0.3357997823721436,0.2467899891186072,0.2093579978237214,0.2080522306855277,11.6017355548712,6.153018463499188,18.982659097394187,12145.066761432188,52.1909531122414,13.48919894741682,17.519804904048954,10.587944757767328,10.594004503008309,0.5778019586507073,0.781305114638448,0.6992871030460143,0.5945945945945946,0.1234309623430962,0.7354581673306773,0.915,0.8419753086419753,0.7415254237288136,0.1915887850467289,0.518562874251497,0.7084468664850136,0.648506151142355,0.546831955922865,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019767453647855,0.0040792718195378,0.0063474330980551,0.0085811600833714,0.0107698728584952,0.0130971430901103,0.0154087921955998,0.0174291493839521,0.0195502721283299,0.0215634251528903,0.0236957101532527,0.025826202192248,0.0280101668055855,0.030094095579672,0.0321848097607299,0.0340448415653181,0.0358652849740932,0.037813032102662,0.0399787778540665,0.0421313765139986,0.0569100595424631,0.0701295165900595,0.0834024243060292,0.0957121060661861,0.1075954041421804,0.1232250555496772,0.135790937364002,0.1470810574844816,0.1578834893362397,0.168351143727737,0.182415546363323,0.1948266908996495,0.2060965799143347,0.2167954448585261,0.2262335463012855,0.236508780088133,0.2453615378607847,0.2538682270860293,0.2612645348837209,0.2688250940108227,0.2760485421153801,0.2834837365544202,0.2903126516792745,0.2960635210017511,0.3009686318834239,0.3062655033258876,0.3113090540083437,0.3157646879136544,0.3200905855710126,0.3246785784927803,0.323777879415642,0.3228430860566748,0.3221873372097935,0.3215312387143373,0.3205610114846896,0.3187104484930205,0.3166822555842673,0.3164993674941267,0.3172165177427346,0.3181972515591773,0.3194376665790758,0.3203145114970985,0.3224486369645967,0.32306899872349,0.323855956748407,0.3255874741877304,0.3282,0.3312838945642578,0.3336843952957697,0.3363777151252829,0.3379619056319372,0.3434960429170872,0.3504209071491393,0.3501901140684411,0.3535106682958924,0.3573295319553338,0.3562414474684506,0.3560728744939271,0.3687347602275806,0.3711069418386492,0.0,2.097763661616544,55.201904396649816,170.11975539806002,250.08810072671145,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95716,44892,425.9580425425216,5990,61.48397342137156,4699,48.476743700112834,1926,19.72501985039074,77.3593554540744,79.73083420566752,63.33143217950936,65.0839525198635,77.12047410818937,79.49196278578002,63.24327538824527,64.99807648327183,0.2388813458850336,238.87141988750216,0.0881567912640903,85.87603659167087,155.75736,109.51457720859526,162728.65560616823,114416.16574929506,394.59122,259.3259997485176,411639.2243721008,270320.39919769,378.3824,183.9723473372848,390873.3231643613,188851.3278718445,2719.08008,1239.5498818601848,2809235.195787538,1263485.0619125173,1116.83031,491.5261979358629,1151343.8819006225,498052.7789876957,1887.55266,789.3688555962024,1936175.2267123573,796005.9966398949,0.37919,100000,0,707988,7396.757073007648,0,0.0,0,0.0,34031,354.8936436959338,0,0.0,34537,356.35630406619583,1589474,0,57047,0,0,0,0,0,83,0.867148648083915,0,0.0,0,0.0,0,0.0,0.0599,0.1579683008518157,0.3215358931552587,0.01926,0.3426161680458306,0.6573838319541693,24.454407747788657,4.408211992161855,0.3094275377739944,0.2296233241115131,0.2300489465843796,0.2309001915301128,11.290559079533445,5.837986630836868,20.551908612974223,12071.738870724874,53.24565916491658,12.92814395908476,16.37848616039996,12.03768148872658,11.901347556705293,0.5494786124707385,0.7849860982391103,0.6980742778541953,0.5624421831637373,0.1032258064516129,0.714987714987715,0.9134615384615384,0.8296089385474861,0.7130434782608696,0.1474654377880184,0.4913743530764807,0.7043740573152338,0.6551094890510949,0.5217391304347826,0.0921658986175115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.0044502113596966,0.0068089338082336,0.0089882391176291,0.0111141616586844,0.0131124843474808,0.0152811050512258,0.0172917134516056,0.0193003618817852,0.0216218429754604,0.0237399374455212,0.0260479257182181,0.0280669986419194,0.0300950967967937,0.0319897632757517,0.0339377274230896,0.0358529439170091,0.0379724515620462,0.0400960558870615,0.0421649097954251,0.0575250347196842,0.0716707832712354,0.0857109889648806,0.098473218228849,0.1100320553376354,0.1254852597395728,0.1367330914029838,0.1485739835840439,0.1592422024426469,0.1689002864899084,0.1815723121349912,0.1934834379735873,0.2045976261192162,0.2142864958911005,0.2237458009802302,0.2337417530631479,0.242582273392221,0.2516198704103671,0.2596202948218926,0.2676198331958574,0.2754914324721454,0.2816303623417167,0.2870350665626256,0.2933143431635389,0.2987539280991033,0.3045929609887607,0.3094082322031777,0.3144534973879221,0.3191935400383042,0.3234642762984445,0.321972141551038,0.3209033180306237,0.3192975061468212,0.3182944039630195,0.3176531594932958,0.3151048822936704,0.3129770992366412,0.3129744764397906,0.3128172805015161,0.3138870597447899,0.3143846513804398,0.3155056978650287,0.3157839516535168,0.3165874226249215,0.3167601666144993,0.3174097941506431,0.3209925841414717,0.3248542159180457,0.3264516582843879,0.3300019829466587,0.3317823092012226,0.336774880255455,0.3410749413033822,0.3438783269961977,0.3456212574850299,0.3448885744605588,0.3459902794653706,0.3495398159263705,0.3504901960784313,0.3546180159635119,0.0,2.4533285111285115,53.27058215621374,175.75330219483752,264.14677171859825,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95879,45003,424.9522836074635,6147,62.787471709133385,4840,49.79192523910345,1893,19.32644270382461,77.4394230829848,79.71984487964475,63.39129033748679,65.07720686439659,77.20006842249606,79.48421826874814,63.30177216242532,64.99223321697235,0.2393546604887433,235.62661089661677,0.0895181750614639,84.97364742423485,155.40712,109.29695571913864,162086.7134617591,113994.67633072796,392.99453,257.4626968087495,409217.5241710906,267860.3623408145,378.78388,184.39838739868145,391099.3648244141,189280.8908954339,2803.1712,1283.4447416068194,2885281.9908426246,1300235.7780189817,1161.29835,514.9184099065745,1196705.5768207845,522543.4139974077,1856.92482,785.1357636517035,1897837.7538355635,783950.3613454945,0.38108,100000,0,706396,7367.577884625412,0,0.0,0,0.0,33840,352.2460601382993,0,0.0,34610,356.9394757976199,1597333,0,57370,0,0,0,0,0,83,0.8656744438302443,0,0.0,1,0.010429812576268,0,0.0,0.06147,0.1613047129211714,0.3079551000488043,0.01893,0.3320912901723334,0.6679087098276665,24.579044221226493,4.302273661897204,0.3188016528925619,0.2303719008264463,0.2285123966942149,0.2223140495867768,10.885686483527982,5.604613289331732,20.174788003051702,12240.015040218326,54.66488569412584,13.360484345363858,17.306729386635716,12.266970304858429,11.730701657267852,0.5599173553719008,0.7650224215246637,0.6876215165262476,0.608499095840868,0.1143122676579925,0.731764705882353,0.8920308483290489,0.8811881188118812,0.7576923076923077,0.1486486486486486,0.4984572230014025,0.696969696969697,0.6189640035118525,0.5626477541371159,0.1053864168618267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023587770803806,0.0047225262475171,0.0070603272502257,0.0093716049508066,0.0115868966428491,0.0138377322398811,0.0161242678889737,0.0181048551611587,0.0204323484941359,0.0227909736287567,0.0250107584171806,0.0270153801955613,0.0291016708798322,0.0313040434818413,0.0335367739541021,0.0357684960503898,0.0376163873370577,0.0394993161188709,0.0416316275786173,0.0436415463359826,0.0584697175023454,0.072672747980732,0.0862121323182927,0.0987883751207425,0.1108608002694935,0.1254275940706955,0.1370463741711332,0.1481174482736634,0.159135978847261,0.1700166966349858,0.1824495763987442,0.1943637011983618,0.2051758417261497,0.2157368449811485,0.2251217929684493,0.2357602992938259,0.2454270841461103,0.2543475330277703,0.2626916061495236,0.2699022466129309,0.2774671964516725,0.2853639453001833,0.2918730421419706,0.297191159215536,0.3025491624180626,0.3082180815034668,0.3133284978240208,0.3180674831038163,0.3222416133410898,0.3264779460171165,0.3254594587327409,0.3242096300162057,0.3241871775769247,0.3235204987228884,0.3228031145717464,0.3209032810445525,0.3188062155198305,0.3192775030295091,0.3199638632257184,0.3210502892745883,0.3216848557332935,0.3227205519960571,0.3225355054302423,0.3240699537201851,0.3251284502330027,0.3260305264250857,0.3273828047641949,0.3330629056415377,0.3360712794097173,0.3387687581235968,0.3418162093748587,0.3457351231370891,0.3462718337194015,0.3493966760264096,0.3534458376543792,0.3581859195061142,0.3642547928262214,0.3623872026251025,0.361949598449183,0.3577358490566037,0.0,2.711330487099618,55.31093633252242,183.3078338370436,263.4502771227924,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95738,45079,425.5885855146337,6081,62.28456830098811,4723,48.74762372307757,1841,18.84309260690635,77.34647984393533,79.70010310551372,63.33814763576003,65.0760176360757,77.1132665607579,79.4678398859328,63.25158141324413,64.99221953668734,0.2332132831774203,232.2632195809149,0.0865662225158985,83.79809938836047,155.87396,109.65926928240494,162813.05228853747,114541.00700077807,394.76425,259.8950964505243,411778.6876684284,270905.51970014453,385.23477,188.06611800243087,398695.1889531848,193610.0914373073,2705.72452,1252.9928348851197,2794841.9227474984,1277438.5039222878,1108.08361,495.0233116390686,1140718.3563475318,500366.25126811536,1806.9125,768.1134625058303,1851705.195429192,771834.7044987483,0.38039,100000,0,708518,7400.593285842612,0,0.0,0,0.0,34092,355.5119179427187,0,0.0,35190,363.8993920909148,1586879,0,57021,0,0,0,0,0,73,0.7624976498360108,0,0.0,0,0.0,0,0.0,0.06081,0.1598622466416046,0.3027462588390067,0.01841,0.330132241813602,0.669867758186398,24.4071612926528,4.335589269760496,0.3078551767944103,0.2447596866398475,0.2267626508575058,0.2206224857082362,11.189247060862934,5.819295983242889,19.79047230226996,12170.827576141057,53.697329054547694,13.889267326570351,16.579418888910173,11.789141391395676,11.439501447671503,0.5744230362058014,0.8079584775086506,0.7138927097661623,0.5882352941176471,0.1065259117082533,0.7308868501529052,0.9225512528473804,0.8663239074550129,0.7233201581027668,0.1365638766519823,0.5144948755490483,0.7377963737796374,0.6582159624413145,0.5464547677261614,0.0981595092024539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192221997164,0.0046731340408924,0.0071340863194,0.0094776619735478,0.0116338194317326,0.0139884345984688,0.0161977573904179,0.0185039651353861,0.0207500689965348,0.0228722369539176,0.0251232587459896,0.0274156795927165,0.0296612347709864,0.0317746420846637,0.0338829161593859,0.0359693640244343,0.0379872651032769,0.0400473097752785,0.042245761390451,0.0443916716141195,0.0589979432675944,0.0721746593263977,0.0855566163433595,0.0984153022703134,0.1104504048582996,0.1254413972469498,0.1369836858518785,0.1483168548653164,0.1585459592185331,0.169206696246758,0.1821019883091298,0.1941906111105103,0.2042668347606833,0.2146119719387197,0.2246916837037525,0.2350453841044941,0.2445418255614281,0.2536071344226898,0.2628898140690406,0.270521277083047,0.2768563497571131,0.2836096625587541,0.2896387652684405,0.2949357375791291,0.3005940449724844,0.3059643591669848,0.3106804618983874,0.3152869890652647,0.3198558483815351,0.324283639244685,0.3231695815031394,0.3221272319277523,0.3204441688743588,0.3197976147452114,0.3188838841070924,0.3175744015692525,0.3157345146744719,0.3159060336625217,0.316002597047567,0.3157725666559589,0.3164507189934092,0.3184196497324619,0.3197324554966138,0.32044025860719,0.321735157621372,0.3231304075071228,0.3226,0.3256348132532016,0.3289201053555751,0.3335314158941447,0.3341084211006246,0.3383714741883981,0.3418755103322655,0.3456931410696574,0.3496034743202417,0.3553857176976355,0.3551459293394777,0.3598856209150327,0.3560033585222502,0.3569182389937106,0.0,2.3202595384753373,57.20052092915377,173.35875489682516,257.0776936753298,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95734,45444,430.2337727453152,6110,62.57964777404057,4795,49.42862514884994,1979,20.3062652767042,77.41222784566315,79.76831453962131,63.350809200748486,65.08978071486233,77.17033647573088,79.52773281229531,63.262965254854166,65.00500699020141,0.2418913699322757,240.5817273260027,0.0878439458943205,84.77372466091992,156.08912,109.7799356156843,163044.60275346274,114671.83614565808,396.50597,260.56415019146846,413508.8996594731,271509.3803575204,386.73277,188.2508603788022,399420.48801888566,193152.0372716308,2760.64792,1272.4309693069108,2848634.549898677,1294101.206788507,1145.78492,505.3800557647726,1181303.2047130591,512361.2778790945,1933.55766,793.7696026598616,1986063.44663338,801350.800116433,0.384,100000,0,709496,7411.118306975579,0,0.0,0,0.0,34187,356.41464892305765,0,0.0,35352,364.698017423277,1586455,0,56943,0,0,0,0,0,82,0.8565399962395805,0,0.0,0,0.0,0,0.0,0.0611,0.1591145833333333,0.3238952536824877,0.01979,0.3369820172009382,0.6630179827990618,24.40391058505647,4.405277228238199,0.3184567257559958,0.2344108446298227,0.2221063607924921,0.2250260688216892,11.51573247003964,6.044482025013118,20.772993794726016,12243.56243890516,54.58879677845922,13.392147361805916,17.51827765945867,11.945058366018738,11.7333133911759,0.5655891553701773,0.7731316725978647,0.7079240340537001,0.5924882629107981,0.1214087117701575,0.7520976353928299,0.9191176470588236,0.8598130841121495,0.7660377358490567,0.1904761904761904,0.4954075774971297,0.6899441340782123,0.6487716105550501,0.535,0.1047180667433832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0045102113211371,0.0066854684900377,0.008906084978471,0.011346190994215,0.0137730951290273,0.0158794871272193,0.0181933206126343,0.0200917721842393,0.022517911975435,0.024657702713782,0.0269462921901946,0.0291659384605894,0.0313690758171819,0.0334843309840988,0.0356925048840743,0.037836270631847,0.0398717629482071,0.0419499719293868,0.0435643151797991,0.058402238369665,0.0722619259383272,0.0860352658575729,0.0991984178746502,0.1111779353422807,0.1269458289681153,0.138865305429384,0.1500149056684127,0.1609249444349461,0.1712326562147893,0.1841898170606815,0.196353360257257,0.2078888937263268,0.2181223113718708,0.227594638353177,0.237402413058907,0.2468125998681461,0.2553915109744699,0.2631082952971365,0.2704369354912658,0.2777764912930715,0.2853816633125848,0.2926269461927973,0.2985642953791625,0.3035805316179148,0.3090826264143509,0.3137404389341598,0.3182909021649419,0.3222573771550333,0.3265158490069709,0.3254366431465135,0.3237281862173907,0.323004378578646,0.3221751900483759,0.3212533979435055,0.3191414871755841,0.3166616830078217,0.3172355282908046,0.3183663761615956,0.3185360052539093,0.3187842013177977,0.3198092097515015,0.3208342022940563,0.3218526259616667,0.3231513178368803,0.3240229259057548,0.3254845290717443,0.3284580286267892,0.3297604915857831,0.3294688276351591,0.3315677486531758,0.334321249007674,0.3357810832862612,0.3379320800485142,0.336663243394641,0.3427152317880794,0.3420215184118806,0.3429776974080771,0.3408096280087527,0.3433803891644411,0.0,2.576634792940028,57.15358630895584,184.0553686654916,253.72888813143464,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95741,44682,424.2800889900879,5952,60.99790058595586,4686,48.47453024305157,1822,18.738053707398084,77.32373385663094,79.69334758328768,63.321321634088775,65.07509195276413,77.09745780050356,79.46637036479291,63.23854520257705,64.99384817291242,0.2262760561273751,226.97721849476693,0.0827764315117249,81.24377985170383,154.98274,109.00208833287624,161877.0850523809,113851.0025306569,390.20655,256.3965822376122,407116.16757710907,267353.7170466281,372.95724,180.93944192812623,386462.2262144745,186669.82320385528,2682.94552,1230.9410840795542,2777066.000981816,1260469.729874927,1105.51264,488.4415635949858,1143429.17872176,498907.9428823444,1791.66454,744.4907728849123,1844725.707899437,755287.50852465,0.37782,100000,0,704467,7358.049320562768,0,0.0,0,0.0,33791,352.4613279577193,0,0.0,34157,353.6938197846273,1596470,0,57286,0,0,0,0,0,47,0.4909077615650557,0,0.0,1,0.0104448459907458,0,0.0,0.05952,0.157535334286168,0.3061155913978494,0.01822,0.3442465093885412,0.6557534906114588,24.51507476749379,4.3175722736735,0.3171148100725565,0.2373026034997866,0.2217242851045668,0.22385830132309,11.021858082282469,5.69601558282857,19.398855946313542,12059.688100479205,53.35116073360342,13.4319132584916,16.89833152343292,11.553589287505297,11.467326664173616,0.558898847631242,0.8066546762589928,0.7052489905787349,0.5399422521655438,0.107721639656816,0.7344854673998429,0.928921568627451,0.8875305623471883,0.6708860759493671,0.1552511415525114,0.493407559331966,0.7357954545454546,0.6360259981429898,0.5012468827930174,0.0951807228915662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681864235055,0.0041680610909975,0.0063641900121802,0.0085259028921,0.0107744587335178,0.0130387393168922,0.015257210459756,0.0174951232216355,0.0196026300450952,0.0218956423780019,0.0238537190675923,0.0260449830543288,0.0279612369606814,0.0298321362694887,0.0316154536915661,0.0335876442128768,0.0355652218942571,0.0376191810098872,0.0394996776809665,0.0416675349573842,0.0565689048518955,0.0702885430512093,0.0834985471672383,0.0961261346544234,0.1079314198949788,0.1233519765708425,0.1356996615994992,0.1471890028514278,0.1574203607394197,0.1665183501484952,0.1798098765166277,0.1911715395182313,0.2027962904576044,0.2127903798852145,0.2225815322004069,0.2322859926486869,0.2421070234113712,0.251171045684823,0.2599045535441014,0.2680652947299786,0.2750713353280269,0.2829611287609792,0.2893570761795602,0.2944423159810354,0.3002451872891025,0.3054693274205469,0.3101596916299559,0.3143584521384929,0.3193272955779272,0.3234091388771634,0.3222796671782858,0.3208911041044211,0.3199678665050596,0.3183587250604048,0.3179140885292718,0.3165749835276811,0.3151378105283132,0.3156177767577581,0.3170548843866614,0.3171288046190035,0.3172187909414187,0.318358795976046,0.319749018949489,0.3205510135513495,0.3214449237294262,0.3223445138689184,0.323618665903235,0.3264286391954714,0.3287439101885194,0.3319732789311572,0.3351693748278711,0.3355323142933762,0.3380129589632829,0.3382793880218344,0.3411320754716981,0.3431712271478074,0.3402989627821842,0.3470707070707071,0.3478499041358532,0.3408829174664107,0.0,1.8536411762216327,56.29820665856837,178.5403264998667,251.08416457043447,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95774,44995,426.0550880197131,5989,61.20659051517113,4688,48.29076784931192,1891,19.32674838682732,77.38153749659537,79.72353220625817,63.350937847410606,65.08306348776973,77.14460597189981,79.48845770374447,63.263098674705226,64.99847618101985,0.2369315246955636,235.07450251369733,0.0878391727053795,84.58730674988146,154.94512,109.0458800481535,161781.79881805083,113857.27509360944,394.26377,258.8711104627688,410997.45233570697,269631.52090780606,374.84178,182.35909583466795,387129.5549940485,187076.32693615105,2703.80292,1240.1859363506842,2787830.308852089,1259709.7184811935,1112.99606,490.54608701242586,1142572.3265186793,492678.1816665893,1856.8899,778.6048630038124,1899868.064401612,779744.7035016879,0.3799,100000,0,704296,7353.718128093219,0,0.0,0,0.0,34084,355.16946144047444,0,0.0,34306,353.94783552947564,1596241,0,57258,0,0,0,0,0,69,0.7204460500762211,0,0.0,0,0.0,0,0.0,0.05989,0.1576467491445117,0.315745533478043,0.01891,0.3398244213886672,0.6601755786113328,24.42694383330604,4.434313713045808,0.3195392491467577,0.2290955631399317,0.2197098976109215,0.231655290102389,11.206314754478486,5.75565395977894,20.108322529990403,12141.3298932741,53.00642848134857,12.78314480759331,17.04238636312077,11.338589133297823,11.842308177336674,0.547994880546075,0.7690875232774674,0.6889185580774366,0.579611650485437,0.1049723756906077,0.721958925750395,0.8929503916449086,0.8300970873786407,0.7862595419847328,0.1148325358851674,0.483635300993571,0.7004341534008683,0.6353591160220995,0.5091145833333334,0.1026225769669327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914419980149,0.0049668538528594,0.0071121301895215,0.0094654844967145,0.0116212863737112,0.0135997638364363,0.0156460227504382,0.0178201451331407,0.0201516483067301,0.0225203102298074,0.0249318549791978,0.027026749604812,0.0292309274110631,0.0313928586137309,0.0333876557471738,0.0354083793976339,0.0374808559956951,0.0390795065823572,0.0411260582766322,0.0429884746327395,0.057843219100889,0.0714218480363959,0.0843074149010892,0.0977870247777567,0.1102013719849524,0.1251889035667107,0.1365457165868339,0.1477598928320823,0.158000896458987,0.1677296260169573,0.1806077306437897,0.1934440767417213,0.2051167795154927,0.2158609083358832,0.2261233019853709,0.2365490213444336,0.2456901358192644,0.2547269497965332,0.2630582204985144,0.2703441805116939,0.2771732216992587,0.2833196960841613,0.2890723893574986,0.2947736610725794,0.3006410567723763,0.3063294879529197,0.310268136042182,0.3137746020444489,0.3179324621555182,0.3220189291081173,0.3211128899891025,0.3204465464144302,0.3191402453624801,0.3183939433343447,0.3178054907323454,0.316334027182564,0.3150366670881274,0.315662808401958,0.3168930188229688,0.3163448705400836,0.3171511356201514,0.3182024512029051,0.3187040873987568,0.3198782779915868,0.3208770623694132,0.3227310617901427,0.3239308462238398,0.3283563401884371,0.3316094765532182,0.3350735643094447,0.3378286337011306,0.3399046104928457,0.3386934039601463,0.3434497483605307,0.3452212472874799,0.3462679482615403,0.3531473860691967,0.346688141735454,0.3432918395573997,0.3380497131931166,0.0,2.494294587504379,55.10914855201511,169.83199440799672,260.6707854639562,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95867,44789,424.1292624156383,5976,61.14721436990831,4650,48.00400554935484,1812,18.640408065340523,77.37299817448195,79.67293246170644,63.35320242165369,65.05630869009501,77.14837597703422,79.44779774540164,63.26977379799229,64.97471142614431,0.2246221974477293,225.13471630479387,0.0834286236613977,81.5972639506981,154.56342,108.6908762517896,161226.92897451678,113376.73678303232,388.25439,255.13394804672916,404490.3042757153,265630.79896807985,370.33903,179.9637888074689,382686.1067937873,185079.26715201532,2671.90868,1229.2987136464658,2756971.5543409097,1252168.0595475663,1120.5359,494.68426669775727,1154400.304588649,501573.60413892695,1791.11746,748.708126914552,1842724.2951171936,757592.022622791,0.37924,100000,0,702561,7328.496771568944,0,0.0,0,0.0,33590,349.8701325795112,0,0.0,33885,349.8388392251765,1601220,0,57514,0,0,0,0,0,57,0.5945737323583715,0,0.0,2,0.0208622362231007,0,0.0,0.05976,0.1575783145237844,0.3032128514056225,0.01812,0.3274009940676607,0.6725990059323392,24.541306497173853,4.316288630150378,0.3221505376344086,0.2318279569892473,0.2165591397849462,0.2294623655913978,10.887438180583162,5.474416216679216,19.19750166113879,12096.639154138877,52.43699003501227,12.780953002407813,16.94632465769083,11.03817582803207,11.67153654688156,0.566236559139785,0.7736549165120594,0.6902536715620827,0.6276067527308838,0.1246485473289597,0.7422764227642277,0.921760391198044,0.8623376623376623,0.7813953488372093,0.1628959276018099,0.5029239766081871,0.6831091180866966,0.6307277628032345,0.5858585858585859,0.1146572104018912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293498075754,0.0045506603018233,0.0068165910958278,0.0090165099608066,0.0111827257385682,0.0134059446254071,0.0155942637570964,0.0179305840451479,0.0200676414390665,0.0222849775922401,0.024466210401213,0.0266964890320727,0.0287346871659952,0.0310650430772714,0.0330608331701081,0.0347804535503325,0.0368098159509202,0.0388580902543909,0.0405503634475597,0.0423030504806691,0.0572864531197864,0.0708568443051201,0.0838658314303073,0.0959666495153889,0.1076404612711284,0.1227908942058839,0.1345823707691329,0.1455015204031726,0.1559654572431976,0.1661272692200527,0.1793663093546859,0.1912874283861204,0.2028476713222107,0.2131774893668201,0.2231868748555772,0.2333643452064504,0.2424414842582055,0.251825433434965,0.2604755098799882,0.2678779968400082,0.2750398926944335,0.2813731797181121,0.2886504011169747,0.2947038110522912,0.3005352396441445,0.305531610964707,0.3111328027231316,0.3153490028490028,0.319992233512394,0.3246938344594595,0.3232517741479376,0.3222636627626925,0.3212659476985973,0.3200387557663663,0.3187268755850755,0.3178179480507553,0.3161175986581854,0.3161165494285667,0.3168693397915849,0.3169009060426624,0.3180143965597831,0.3192236380133338,0.3200376293508937,0.3216267409470752,0.3231181765945221,0.324262567511425,0.3247311216070107,0.3278014807378592,0.3315581093864966,0.3347024209154456,0.3352914595571622,0.3384981491274458,0.3432788944723618,0.3440311023021802,0.3505416862929816,0.3521524347212421,0.3576229758631225,0.3650275453988982,0.3716347488204274,0.3706240487062405,0.0,1.8941086772427755,53.946253452380176,172.9363766635964,256.2151670824749,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95789,45050,427.2620029439706,5974,61.02997212623579,4715,48.61727338212112,1841,18.78086210316425,77.39816222968327,79.72623346233125,63.35848721039546,65.07900465546219,77.16654278659074,79.49856749245313,63.27263860365126,64.99749842081798,0.2316194430925264,227.66596987811735,0.0858486067442001,81.50623464420903,155.94062,109.76000266986398,162795.9577822088,114585.18480187075,393.84917,258.5050053490492,410560.8681581393,269266.8123695273,380.04818,185.2230914222106,392870.8933176043,190402.77965897345,2676.33168,1233.6768222189232,2760412.1141258394,1254336.5504639987,1119.14702,500.70573982306735,1151904.1434820285,506374.8937675458,1797.5967,757.179040580808,1835796.156134838,755952.7723839553,0.38018,100000,0,708821,7399.816262827673,0,0.0,0,0.0,33997,354.28911461650085,0,0.0,34714,358.5902347868753,1590495,0,57044,0,0,0,0,0,67,0.6890143962250362,0,0.0,1,0.0104396120640157,0,0.0,0.05974,0.1571360934294281,0.3081687311683964,0.01841,0.3269907259354013,0.6730092740645987,24.398365262537965,4.3004506544904135,0.3143160127253446,0.2430540827147402,0.2267232237539766,0.2159066808059385,11.186104492262787,5.903410801147201,19.62382557055543,12106.82483164448,53.125751003858,13.669340402494674,16.58395047993951,11.744900824998975,11.12755929642483,0.5643690349946978,0.7783595113438045,0.7044534412955465,0.5622076707202993,0.1218074656188605,0.7440758293838863,0.9049881235154394,0.8776595744680851,0.7423076923076923,0.1818181818181818,0.4984053348796752,0.7048275862068966,0.6455696202531646,0.5043263288009888,0.1063040791100123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293026270482,0.0046213718177395,0.0069188004707219,0.0091802745958241,0.011111675900981,0.0134447452521016,0.0156315279971467,0.0175488715667469,0.0195649730790057,0.0214037241661551,0.0236863403989386,0.0259925501021025,0.0279122347258619,0.0300123507616303,0.0322278008598204,0.0343506325845597,0.0365285938922453,0.0382832671429608,0.0402702000519615,0.0421751989003207,0.0574940523394131,0.0712649688856351,0.0845232853158877,0.0971088060030898,0.1096996594946183,0.125306553911205,0.1371860682165281,0.147987741290144,0.1578643825228823,0.1689221068885648,0.1812689147128194,0.1929116826371915,0.2042785280472832,0.2145627355656306,0.2239831188385409,0.2336129060812605,0.2433234090478261,0.2521674594339304,0.2606846331836123,0.2685789533951677,0.2761251835323768,0.2823446905499386,0.2894864541785515,0.2951424668695631,0.2997900001213872,0.304872943957451,0.3099077476936923,0.3142980583511233,0.3183141603799221,0.3227286511002413,0.3223961347455688,0.3206659975526927,0.3197600743431613,0.3187740790441972,0.3178523251159963,0.3172240981527601,0.3156414873787634,0.3155369220942991,0.3168580349069319,0.3170140744699804,0.3179422976306151,0.3192535545023696,0.3204701846855326,0.3213569295234699,0.3222357752744493,0.3244394793588112,0.3236426428126592,0.3274056942838391,0.3300128870467765,0.3329263008626462,0.3360566448801743,0.3400937681083074,0.3434349719975109,0.3445981704090118,0.3470170188890967,0.3495318241080953,0.3539487645899651,0.3614579138139348,0.3652365236523652,0.3665278303672851,0.0,2.348907053088647,55.127354299877965,171.871656852327,260.11653987008714,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95875,45067,426.1903520208605,6001,61.34028683181226,4752,48.928292046936114,1901,19.410691003911342,77.3584022892406,79.64085986554393,63.35300198276878,65.04168631991068,77.11964177163789,79.40586597378913,63.263837127614615,64.95711794330157,0.2387605176027136,234.99389175479732,0.0891648551541663,84.56837660911276,155.18976,109.2135324073599,161866.76401564537,113912.41972084476,391.88641,257.6771879633893,408152.2816166884,268168.7384233526,378.12724,183.83641234275785,390878.9048239896,188945.08379579007,2750.78772,1254.849403453742,2834918.717079531,1274617.9957796528,1157.52462,512.9922392734833,1189128.0,516864.76065030775,1869.57624,786.3559322480131,1910556.89178618,784191.7406337669,0.37968,100000,0,705408,7357.580182529335,0,0.0,0,0.0,33717,351.0299869621904,0,0.0,34607,357.3924380704042,1594002,0,57200,0,0,0,0,0,70,0.7301173402868318,0,0.0,0,0.0,0,0.0,0.06001,0.1580541508638853,0.3167805365772371,0.01901,0.3308870453095086,0.6691129546904914,24.717256527958263,4.34517817990672,0.3112373737373737,0.2331649831649831,0.2234848484848484,0.2321127946127946,10.891574841110549,5.571408892303948,20.288086845793103,12133.908050223085,53.73320391012952,13.236342484055823,16.73793016494384,11.815945124384449,11.942986136745414,0.5484006734006734,0.7752707581227437,0.6788370520622042,0.5800376647834274,0.1151405258386219,0.7119871279163315,0.9093198992443324,0.837696335078534,0.7125,0.1473214285714285,0.4904531205471644,0.70042194092827,0.6235186873290793,0.5413625304136253,0.1069397042093287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00230841660845,0.0044786252039193,0.0067146088385349,0.0089857750611743,0.0111811343769058,0.0131590999297774,0.0152817963242185,0.0175735631597735,0.0197563889200861,0.0217851337674684,0.024209976762517,0.0265939451102613,0.0288598806577177,0.0308806435353296,0.0328324986087924,0.0348875627232742,0.0369818659549597,0.0388976410596575,0.040835825855766,0.0428965301982,0.05726647206005,0.071172592491981,0.0848187168799614,0.0978493720334355,0.1103034899767194,0.1254410615056308,0.1369662671287317,0.149451811520997,0.1598757458982269,0.1692360470850575,0.1816174886926556,0.1933013111774633,0.2041206849687415,0.2143419412677935,0.2240892046141834,0.2351189817376867,0.2452653416315331,0.2538650955170514,0.2618564185165439,0.2692845196911728,0.2771639148896782,0.2842755377759062,0.2902542122026593,0.296024941543258,0.3010989278160025,0.3060318243493277,0.3110373340015034,0.3155078169794733,0.3200352999195369,0.3227099009508192,0.3218404759014204,0.3213060076905054,0.3196062392463261,0.3182107609041706,0.3179382609472211,0.3152645872010065,0.3129193433261956,0.3131220081920021,0.3148344688281009,0.3155234012147195,0.3164238981684569,0.3169930761622156,0.3189779950074469,0.320678694542687,0.3220192099371705,0.323023249759171,0.3249409017117143,0.3267463379442301,0.3309644670050761,0.3336239004675489,0.3360036413290851,0.3395927003438244,0.341167598818576,0.3462068965517241,0.3483210017074559,0.3504201680672268,0.3594040968342644,0.35357432981316,0.3559275521405049,0.3589645984012181,0.0,2.499487838510118,54.02876183414448,177.90273583865084,264.483648273761,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95724,45078,427.2282813087627,5937,60.7057791149555,4663,48.04437758555848,1814,18.49066064936693,77.38965647392791,79.75554651940969,63.34469261111818,65.09360475680818,77.16187848640094,79.53034285883015,63.25921964578615,65.01144754512521,0.2277779875269772,225.20366057953825,0.0854729653320305,82.15721168296852,156.51526,110.10381551411042,163506.81124900756,115022.16321310269,394.90525,259.5863039673179,411907.3691028373,270543.71314123727,381.58145,185.2583707239268,393699.0096527517,189804.4626331053,2661.1872,1231.08155538572,2746468.7643642137,1252480.167341231,1074.08451,481.0869728598973,1109414.7235802934,489927.93119792,1771.93396,745.676447450202,1810385.378797376,747434.6692186729,0.38107,100000,0,711433,7432.127784045798,0,0.0,0,0.0,34096,355.4907860097781,0,0.0,34960,360.3902887468137,1587050,0,56990,0,0,0,0,0,69,0.7103756633655092,0,0.0,1,0.0104467009318457,0,0.0,0.05937,0.1557981473220143,0.3055415192858346,0.01814,0.3332264271969211,0.6667735728030789,24.417038401523545,4.423468469777146,0.3111730645507184,0.2380441775680892,0.2404031739223675,0.2103795839588247,11.502832923384217,6.0142845035902,19.267524735144946,12140.88188517272,53.11060503807035,13.4032495645993,16.596040503850492,12.4667901482586,10.64452482136196,0.5661591250268068,0.8063063063063063,0.6919365954514128,0.5744870651204282,0.0988786952089704,0.7178707224334601,0.9132530120481928,0.8448275862068966,0.7003610108303249,0.1290322580645161,0.5065710872162486,0.7424460431654676,0.6325358851674641,0.533175355450237,0.0903141361256544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195040920508,0.0047443812536115,0.0068602279300581,0.0091533413251518,0.0113318481898542,0.013512687874221,0.0157930689939947,0.0179561253968416,0.0202285550740044,0.0223762193811224,0.0244982471965394,0.026568932417588,0.0285896394683005,0.0306859019904647,0.0325322331098504,0.0348188263502759,0.0368322408954883,0.0388218572658705,0.0407104847426623,0.0427815287155122,0.0572562121528502,0.0711414875133449,0.0847751046573847,0.0979210066704543,0.1095274768169302,0.1251586562870198,0.137600662061941,0.1485312899106002,0.1592015891323849,0.1688366007464287,0.181644915363742,0.1940411536880368,0.2051125922865313,0.2158086948915325,0.2254153372208163,0.2345587421105082,0.24367995539448,0.2529134778553207,0.2606846814156281,0.2685966016362492,0.2759641514888696,0.2827769205592182,0.2898917308874285,0.2958729322768295,0.3019330412940334,0.306981039152918,0.3110377511848045,0.3148786287400023,0.3200434658870404,0.3236786943166387,0.322747693218196,0.3215508352237575,0.3200968114147412,0.3188163118007939,0.3178294573643411,0.3153030673347183,0.3131716400246169,0.3143011262402537,0.3158833118250356,0.3174129883037822,0.3174213239536225,0.3194152437466842,0.3205120199812675,0.3218482727979562,0.3227393204231237,0.3253320904218131,0.3271390185263753,0.3311328723836936,0.3328899002275512,0.3352782408509963,0.3365257445158936,0.3424759871931697,0.3428301292152537,0.3433476394849785,0.3479789103690685,0.3484210526315789,0.3514492753623188,0.3511146496815286,0.3500674763832658,0.3511161558834658,0.0,2.608250324264256,57.31585310762885,172.85585030929096,247.503035629535,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95757,45033,426.7468696805455,6220,63.640256064830766,4867,50.199985379658926,1978,20.259615485029816,77.34687979821054,79.7077854271308,63.33382307926016,65.08192259011496,77.10133061605309,79.46250280984994,63.24227588712902,64.99290213126882,0.2455491821574469,245.2826172808642,0.0915471921311379,89.02045884613585,154.93918,108.9558854738498,161804.5469260733,113783.72909954345,392.61343,257.35783766416887,409359.2739956348,268112.855005981,376.35391,183.0180145029503,388606.68149586977,187738.01001539495,2799.50376,1295.1450160451368,2888842.089873325,1318348.1541488853,1171.50781,517.766280760136,1207076.1197614796,524894.2761337708,1938.86012,816.5230906251826,1987882.494230187,822067.7673119613,0.38232,100000,0,704269,7354.75213300333,0,0.0,0,0.0,33943,353.79136773290725,0,0.0,34495,355.9008740875341,1597744,0,57467,0,0,0,0,0,60,0.6265860459287571,0,0.0,0,0.0,0,0.0,0.0622,0.1626909395270977,0.3180064308681672,0.01978,0.3364041148472286,0.6635958851527713,24.248460305359444,4.388484024496563,0.3260735566057119,0.2319704129854119,0.213889459626053,0.2280665707828231,11.17685339833893,5.811799524105793,21.025421544824862,12224.90653358776,55.403607431907176,13.58456871923173,18.07980867699141,11.5173205642078,12.221909471476248,0.5570166426957057,0.7785651018600531,0.6981726528040327,0.5696445725264169,0.118018018018018,0.716338880484115,0.8796992481203008,0.8615384615384616,0.7192982456140351,0.1666666666666666,0.4976022566995768,0.7232876712328767,0.6325088339222615,0.5276752767527675,0.1045977011494252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712050585707,0.0046343244229911,0.0067106598984771,0.009004339563198,0.0113025962399283,0.0132787519602452,0.0153838311754511,0.0175071457737852,0.0197297131524605,0.0220031125854937,0.0241139259973138,0.0259566909326132,0.0282182595997614,0.0306258047901107,0.0324990969606274,0.0343412415361554,0.0362231795211664,0.0383103208606077,0.0405197505197505,0.0426737199446012,0.0575520045089709,0.0717789935041161,0.084908726788504,0.0975225201551446,0.1105325842933482,0.125538975312817,0.1372526156227143,0.149189775433821,0.160310229685183,0.1705712847211063,0.1831101070410413,0.1951646546413479,0.206464580617123,0.2171909130624727,0.2274789869801681,0.2376668215921917,0.2472789722544384,0.2562932149080892,0.265219957325101,0.2727928794803945,0.2799907418122902,0.2864632704888296,0.2925939956435268,0.2978465744226757,0.3030718795531811,0.3073429499803072,0.3121777866760098,0.3166516170878429,0.3219786193150933,0.3263124596343698,0.3249761254657215,0.3231507716006932,0.3220785069879382,0.3210471627316285,0.3203056606573188,0.3194718563057481,0.3179539091786217,0.3184742647058823,0.3197820405513896,0.3208823371941534,0.3210699835156601,0.3218884120171674,0.3231804460841858,0.3240282289682984,0.3254232383157285,0.3270651092137656,0.3265592351947792,0.329091887443421,0.3315345818784608,0.3320694472161245,0.3366645273677455,0.3378486480721028,0.3404686510449651,0.3441934991606897,0.3473210940427126,0.3498283414229904,0.3540963485731819,0.3528565556925606,0.3589310829817159,0.366877971473851,0.0,2.360062927732507,58.05314146551014,184.46593644490832,261.823689927586,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95754,44931,425.1832821605364,6031,61.78331975687699,4707,48.57238339912693,1889,19.330785136913335,77.36211040614715,79.7236253356723,63.32787542470121,65.07533597594842,77.12659349928542,79.48953843466977,63.240031526005545,64.9903955775558,0.2355169068617328,234.08690100252727,0.0878438986956666,84.94039839261802,155.54924,109.44511538679608,162446.728074023,114298.2177107965,391.62026,256.8546220288403,408372.4857447209,267633.02103286714,377.07831,183.1402291654429,390007.017983583,188331.95822629143,2697.7616,1238.3443270927828,2786540.7189255804,1262515.8005356395,1122.21667,494.188595647029,1158885.414708524,503278.903021474,1846.2587,776.6599825819081,1891591.9334962508,780957.8542740641,0.38049,100000,0,707042,7383.942185182864,0,0.0,0,0.0,33742,351.7346533826263,0,0.0,34468,356.1835536896631,1592995,0,57163,0,0,0,0,0,79,0.8250308081124548,0,0.0,0,0.0,0,0.0,0.06031,0.1585061368235696,0.3132150555463439,0.01889,0.3248931793005222,0.6751068206994778,24.7429449290914,4.358814786714136,0.3203739111960909,0.2392181856809007,0.2198852772466539,0.2205226258763543,11.22389019094254,5.790024002321628,20.14634215026548,12148.085133192182,53.2401583402339,13.406739109070887,16.964383300821524,11.50453369344251,11.364502236898982,0.5646908859145953,0.7655417406749556,0.7095490716180372,0.5768115942028985,0.1242774566473988,0.7253012048192771,0.924812030075188,0.8619791666666666,0.7333333333333333,0.1216216216216216,0.5069324090121318,0.6781292984869326,0.6574733096085409,0.529559748427673,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086461404415,0.0045835276938365,0.0072682976347578,0.0095003911925785,0.0116677686791109,0.0139120870167433,0.0161727815960679,0.0183063791554357,0.0203883395875297,0.0226714180388301,0.0249917958815325,0.0270148119234956,0.0290734758544062,0.0310174975783681,0.0328823110505619,0.0350478159731196,0.0371846912148448,0.0391459074733096,0.0411005893787096,0.0431010238836751,0.0569525777930876,0.0701462557278262,0.0829523050463526,0.0955270658266987,0.1073504129267701,0.1231929271671654,0.1355121350984385,0.1474282551307161,0.1589889320969189,0.1698331689325385,0.1825925886039824,0.1938513813290625,0.2062112476884586,0.2161975913630347,0.2250775901917193,0.235590027700831,0.2461079716780952,0.2547347099532999,0.2630486089048245,0.270721902165821,0.2779166956078813,0.2840679076624273,0.2897692972384323,0.2950941585702291,0.3008795801341238,0.3056559105313128,0.3102269311692215,0.3155328682723153,0.3196741481356766,0.3231609931231108,0.3218915932185116,0.3208757917928945,0.3199712663915376,0.3195988033471594,0.3190588654694532,0.3170765320184975,0.3155037041727347,0.3157704799711295,0.3163764729957878,0.3168720615472289,0.3175335962469394,0.3185575938902448,0.3205227230027347,0.321231166978693,0.322008721069529,0.3240512247707613,0.325419113266956,0.3279622039360471,0.3320544122776421,0.334069313567007,0.3350655219159512,0.3386410215986126,0.3402699662542182,0.3424945558308928,0.3464209649041578,0.3433239304184297,0.3411764705882353,0.3472497032053819,0.3526725758796669,0.3531428571428571,0.0,2.142622610863298,54.56723361106474,175.06200139416373,260.7426786311025,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95772,45253,428.8309735622102,6055,62.31466399365159,4733,48.94958860627323,1845,18.95125924069665,77.32840490063373,79.68757882738844,63.31625382636724,65.06415226416213,77.10322581519382,79.46353920181842,63.23345106839604,64.98390169532763,0.2251790854399047,224.0396255700148,0.0828027579712014,80.25056883450077,155.60644,109.50634419003802,162475.92198137243,114340.66761687968,394.9294,259.46161695091865,411926.11619262415,270477.90267606254,379.94176,183.86029766333647,393891.8890698743,189781.08436324596,2693.63828,1228.2921215151434,2786896.6294950508,1256860.5453735362,1114.42116,486.6130779807113,1152645.073716744,497150.2165820769,1791.91866,740.9333690414533,1842092.114605521,749150.1541350271,0.38113,100000,0,707302,7385.269180971473,0,0.0,0,0.0,34084,355.4065906528004,0,0.0,34636,358.8209497556697,1589289,0,57050,0,0,0,0,0,68,0.7100196299544752,0,0.0,1,0.0104414651463893,0,0.0,0.06055,0.1588696770130926,0.3047068538398018,0.01845,0.3426860025220681,0.657313997477932,24.66987018890206,4.3029597674514735,0.3291781111345869,0.2421297274455947,0.2207901964927107,0.2079019649271075,11.12847548221961,5.747761447338089,19.41249535624716,12181.415167142632,53.31328967587435,13.521371858445873,17.58314872787574,11.618728278162529,10.590040811390216,0.5624339742235369,0.7652705061082025,0.696405648267009,0.5598086124401914,0.1168699186991869,0.7421937550040032,0.913793103448276,0.8507462686567164,0.744,0.1465968586387434,0.4979908151549942,0.6837837837837838,0.6427335640138409,0.5018867924528302,0.1097099621689785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786933919722,0.0046349824540051,0.0067924298420176,0.0088721315473891,0.0111594881080751,0.013394312255541,0.0155816609561102,0.0177441091191244,0.0197305199452043,0.0221303253014514,0.024622008097996,0.0269115850215107,0.0288261790657973,0.0308798384937066,0.0327437463881779,0.0347821592847175,0.0368300105583504,0.0389948456281177,0.0408916138418372,0.0429407598733544,0.0575114553216362,0.0715159755268524,0.0851385073500115,0.0979598700875542,0.1101347578257525,0.124890349718344,0.1363858079019362,0.1476657195458076,0.1585979302169107,0.1677532113829855,0.1808058071533963,0.1931582136056777,0.205402700262193,0.2160252835099461,0.2262470831682296,0.2363130904781419,0.2462642427488924,0.2547836657512043,0.2628489685630272,0.2712105239033781,0.2785094317787293,0.2847267708430804,0.2906147870979965,0.2960896536001823,0.3013638684268105,0.3076164410582637,0.3123558608242254,0.3161863036030414,0.3206627427593538,0.326178784518718,0.3254908302003746,0.3244299494970345,0.3225383672261446,0.3208220206804921,0.3200879721817695,0.3180773825935116,0.3165827554542288,0.3166455810590999,0.3176778117578719,0.3177548396314022,0.3183213536987122,0.3202919996054059,0.3212190794280346,0.3216016436275933,0.3240197962713819,0.3236175145216327,0.3229059829059829,0.3256266273488722,0.3301979159381775,0.3333861511646331,0.3363141171130276,0.3408071748878923,0.3427857589006871,0.3461480362537764,0.351808580241144,0.3553728714034057,0.3561205846528623,0.3599755948749237,0.3622547665100856,0.3594847775175644,0.0,1.818192761422007,55.14485376991298,169.9938552167477,267.90801200058445,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95739,45078,427.1404547780946,6012,61.76166452542851,4690,48.47554288221101,1850,18.9369013672589,77.31464774318667,79.68143231835532,63.30648041847581,65.05662439393679,77.08169895182215,79.44927042116457,63.22162801602666,64.97412641655924,0.2329487913645209,232.16189719074976,0.0848524024491439,82.4979773775425,155.49314,109.3337170848528,162413.58276146607,114199.7692527108,393.21559,258.4476447493772,410189.03477161867,269427.2157776068,378.76164,184.01907808278293,392947.1688653527,190029.2287118342,2713.9988,1242.718895116591,2806244.3518315423,1269719.5177462215,1135.55765,502.59448783489233,1171521.208702827,510602.7170356026,1819.447,755.0728342472696,1864257.345491388,759748.0296803021,0.3803,100000,0,706787,7382.435580066639,0,0.0,0,0.0,33882,353.35652137582383,0,0.0,34598,358.7043942385026,1589760,0,57091,0,0,0,0,0,71,0.7415995571292785,0,0.0,0,0.0,0,0.0,0.06012,0.15808572179858,0.3077178975382568,0.0185,0.3389803673210892,0.6610196326789107,24.49107345795735,4.387012462685583,0.332409381663113,0.2219616204690831,0.2215351812366737,0.22409381663113,11.10048779643462,5.703732298195409,19.663204865790878,12159.504794469096,53.35158512708572,12.578355404982185,17.80202579078343,11.462904207803913,11.508299723516206,0.5556503198294243,0.777137367915466,0.6927517639512508,0.5803657362848893,0.1084681255946717,0.7363344051446945,0.9338842975206612,0.8627450980392157,0.7935222672064778,0.1283185840707964,0.4904236796285548,0.6932153392330384,0.63249348392702,0.5138888888888888,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0042988512739402,0.0065977790860553,0.0087795955695559,0.0109975075029248,0.012867272504992,0.0150477958804745,0.0171836392967266,0.0193506838672745,0.0216104991605585,0.0235407503101514,0.0257005267427175,0.0278552105084501,0.0301291100371977,0.0323606222323152,0.0343226953654023,0.0361606726796383,0.0384140457191478,0.0406346829704493,0.0429007490441613,0.0577788450495411,0.0718539684533341,0.0847329605656557,0.0976843477895091,0.1097262642878231,0.1255064154775379,0.1379936113086204,0.1501847100531241,0.161064500614546,0.1711802575107296,0.1845166855356083,0.1966481415277281,0.2079643607925149,0.2181439684452722,0.227692104189861,0.2379535792383088,0.2468718900604935,0.2554969217238346,0.2628586374336172,0.271207458779222,0.2777764896823557,0.2842681226493573,0.2905114680258401,0.2965616561656166,0.3015585489204435,0.3066250647460721,0.3114097654979103,0.3158376796845185,0.3192697821249288,0.3228719057285213,0.3220489498257558,0.3204932568977605,0.3188894983334036,0.3175501132870564,0.3171398434134094,0.3156871152491501,0.3141409342834521,0.3147804373182632,0.3157490003075976,0.3151611406545558,0.3160123676567038,0.3175318005846567,0.3175366348224178,0.3171455340412242,0.3193987562129325,0.3206245933636955,0.321623241345852,0.3251358396934577,0.3290815432596278,0.3333994919021911,0.3348525591358643,0.3389361702127659,0.3423685877137429,0.3478694052728387,0.3461065379884568,0.3459478757586576,0.3471303277427296,0.3498662276188516,0.348103018554417,0.3448409619860357,0.0,1.9176652992537424,55.076179113522144,179.9468805787776,254.2552238307753,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95820,45015,425.7774994781883,6125,62.77395115842205,4793,49.49906073888541,1866,19.18179920684617,77.3504688262772,79.6818706644371,63.33176974345843,65.05976050797216,77.11951146444673,79.4500758194011,63.24696041674992,64.97635682602143,0.2309573618304625,231.79484503599213,0.084809326708509,83.40368195072756,154.2068,108.55724678173344,160933.83427259445,113292.88956557446,392.84878,257.86315585108423,409494.7505739929,268620.58636097296,379.93528,184.3930088835061,392870.7159256941,189704.4595883237,2755.59912,1259.454919194235,2848890.628261324,1287479.4397769095,1135.70706,494.9289179828997,1173150.0626174076,504418.960533186,1831.8604,764.7960339933923,1885510.791066583,777438.6977245597,0.38072,100000,0,700940,7315.17428511793,0,0.0,0,0.0,33883,353.08912544354,0,0.0,34704,358.4742225005218,1598235,0,57437,0,0,0,0,0,76,0.7931538300981007,0,0.0,1,0.0104362346065539,0,0.0,0.06125,0.1608793864257197,0.3046530612244898,0.01866,0.3325023371766905,0.6674976628233095,24.5349116437484,4.3233668666229175,0.3242228249530565,0.233674108074275,0.2180262883371583,0.2240767786355101,11.111061794646703,5.771097534576919,19.804618506887596,12269.110359988788,54.39614495275243,13.410025389772008,17.498400504909505,11.763713683135393,11.724005374935532,0.5643646985186731,0.7857142857142857,0.6911196911196911,0.6057416267942584,0.1098696461824953,0.7317262830482115,0.9107981220657276,0.8611825192802056,0.763265306122449,0.1371681415929203,0.5029940119760479,0.7089337175792507,0.6343347639484979,0.5575,0.1025943396226415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172275462447,0.0044512943228253,0.006911600527758,0.0091340438718592,0.0112293264438431,0.0137397893707604,0.0160726123094181,0.0181664079732048,0.0203161424890597,0.0224392441086747,0.0246916112096633,0.0268008420187913,0.0288150060159809,0.0310092687950566,0.0329606864403283,0.0351711026615969,0.0372647661635923,0.039298864284603,0.0412765382576977,0.0432940539640239,0.0577889971418438,0.0722320961840041,0.0863651605331545,0.0990743950998623,0.1118848702577987,0.1278016717566125,0.1392081601492917,0.1506222742261461,0.161942887643448,0.1724743902961724,0.184860386291494,0.1977493351782587,0.2091095734164702,0.2190550096728711,0.2288162627740438,0.2394558124591471,0.2492411730571798,0.2580986351310296,0.2661708770933863,0.273318673263698,0.2811881646397204,0.2879282313999322,0.2940731011797001,0.2993470316899299,0.3043050340830386,0.3087234252454003,0.3125156570970489,0.3179542704286351,0.3217553591332072,0.3257693831726324,0.3243622242597486,0.3231261111034549,0.3220757244588592,0.3201145435612634,0.319324483030312,0.3182890584306155,0.3164950087149422,0.3166784417462169,0.3175978130873056,0.3183425611716378,0.3184387869711718,0.3187184144030322,0.3194534535791258,0.3202744379385867,0.3211201193254264,0.3215114006514658,0.3227988404479054,0.3271124772598958,0.330353713467649,0.3322515534095856,0.3341639106600824,0.3368543361149255,0.338456712672522,0.3426150121065375,0.3472469749554451,0.3487469114013413,0.3535046373726623,0.3531181070784038,0.3476964769647696,0.3448669201520912,0.0,2.067201638666777,56.54979521945593,179.73504027061563,262.1979909395405,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95703,44931,425.1695349153109,6089,62.30734668714669,4745,48.83859440142942,1870,19.0171676958925,77.30949638025908,79.66911766678882,63.31695901961641,65.05917760470977,77.07979620392004,79.44662437538396,63.2305487533633,64.97934132256405,0.2297001763390369,222.4932914048594,0.0864102662531109,79.83628214572036,154.9372,109.0334689191044,161893.77553472723,113928.9979615105,391.85201,257.0345877418608,408611.6527172607,267741.0193430308,376.67915,183.47611765520568,389550.89182157296,188576.85558322672,2726.57908,1247.6512602061428,2807115.346436371,1261941.6066350378,1138.98334,496.194165166737,1174381.524090154,502803.36896224914,1831.12156,765.8031266227538,1864842.188855104,758684.08571534,0.37987,100000,0,704260,7358.807978851238,0,0.0,0,0.0,33700,351.3369486849942,0,0.0,34416,355.5060969875552,1594928,0,57256,0,0,0,0,0,88,0.9090624118366196,0,0.0,1,0.0104489932395013,0,0.0,0.06089,0.1602916787321978,0.3071111841024799,0.0187,0.341034103410341,0.658965896589659,24.544728902650988,4.379487364391753,0.325395152792413,0.2250790305584826,0.2290832455216017,0.2204425711275026,11.336936739160263,5.945399568892843,19.83974396220752,12114.66542565446,53.63539640461821,12.756541213289111,17.416894338142395,12.021942909110548,11.440017944076164,0.5597471022128556,0.7659176029962547,0.6949481865284974,0.594296228150874,0.1137667304015296,0.7307692307692307,0.8790931989924433,0.8721804511278195,0.7511111111111111,0.1343283582089552,0.5004257734885041,0.698956780923994,0.6331877729257642,0.5533642691415314,0.1088757396449704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483061747399,0.0044805774065363,0.0068785001217433,0.0092934915088973,0.0115996543485996,0.013639093305648,0.0157672119451663,0.0179550256719099,0.0200523281959036,0.0220036638658902,0.0246722496130546,0.026839711272884,0.0293576283560756,0.0314002945386762,0.0335289446272212,0.0356153909737146,0.0375813780183611,0.0396710157854342,0.0414622484616663,0.0434311550041149,0.0579819119827892,0.0712730546192978,0.0848298577602484,0.0973003670322967,0.1095561016252017,0.1248360482335519,0.1372540696563872,0.1488768231661875,0.1591312151449755,0.1690367415224245,0.1819376804723527,0.1935986833557105,0.2048516640184576,0.2151495583841346,0.2254409724516086,0.235146100297078,0.2444593386952636,0.252771268925739,0.2612355721166954,0.2685451606616762,0.2752312697548946,0.2819318833288484,0.28750059205229,0.2927417323401345,0.2980872059109469,0.3034051527447183,0.3087232365197151,0.3134579153724731,0.3180245441704356,0.3219561827743862,0.3209643492799741,0.3199895342752485,0.3191024230628191,0.3185359718989867,0.3179154644694964,0.3160356381592062,0.3139352197165664,0.3141189046953375,0.3150206360351412,0.3156527658354829,0.3162118478424297,0.3164152441445018,0.3190769424770391,0.3200439737952077,0.320788443886178,0.321914410297919,0.3232464929859719,0.3282243343614275,0.3318930691678083,0.333082438695876,0.3364511442063204,0.3382976468094127,0.3428481609556743,0.3471049227725785,0.3496470588235294,0.3566863905325443,0.3606004901960784,0.3571282051282051,0.3587617468214483,0.3643351268255188,0.0,2.811896909299765,52.68323037564648,180.2418524083632,264.2975261122366,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95745,45246,428.1372395425348,6043,62.00845997180009,4772,49.37072431980782,1876,19.280380176510523,77.40440741590693,79.76235852663288,63.3594678928421,65.09954567015453,77.17333184401706,79.530996357436,63.273946437284366,65.01625256850747,0.2310755718898747,231.3621691968848,0.0855214555577319,83.29310164705817,155.05644,109.0623093543538,161947.29750900832,113909.1434062915,393.83956,258.0971473518777,410852.27427019685,269082.39901700855,376.90328,182.93960374068425,391109.5305237872,189106.84556141103,2749.21052,1250.7653638097374,2845375.4034153223,1280612.5788332336,1132.00901,496.8633081133384,1171669.027103243,508296.8385955802,1843.96176,771.8452316881143,1896042.4460807357,779596.4803763813,0.38159,100000,0,704802,7361.240795864013,0,0.0,0,0.0,34034,354.9741500861664,0,0.0,34437,357.0943652410047,1598278,0,57271,0,0,0,0,0,65,0.678886625933469,0,0.0,0,0.0,0,0.0,0.06043,0.1583636887759113,0.3104418335263941,0.01876,0.3235852039203288,0.6764147960796711,24.60771175457462,4.473163740348656,0.3143336127409891,0.2351215423302598,0.2206621961441743,0.2298826487845767,10.990953656495044,5.524352864442008,19.942466482783445,12181.484691374326,53.67313026840059,13.365387234368626,16.76926257745113,11.632733023279837,11.905747433301004,0.5496647108130763,0.7780748663101604,0.6946666666666667,0.5584045584045584,0.1093892433910665,0.7185725871857259,0.8925,0.841688654353562,0.7530864197530864,0.1279620853080568,0.4908166148629556,0.7146814404432132,0.6449598572702944,0.5,0.1049661399548532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024805856207032,0.0045300228021281,0.0069490940816036,0.0092723302696389,0.011387552997875,0.0137418566775244,0.016,0.0182443394589961,0.0204757233938205,0.0223995906881555,0.0245769747158479,0.0266644771278724,0.0288061189871595,0.030714403427818,0.032904444008791,0.0350645054581541,0.0370232288398007,0.0392435527708043,0.0414977863690216,0.0436417419200283,0.0583641337259078,0.0719136868322188,0.0847109171771419,0.0976355933094334,0.1100582859913361,0.1254454136928363,0.1373453843379373,0.1491622133747791,0.1595124139994017,0.1696405593205799,0.1820658611703388,0.194681265417406,0.2065249306726116,0.2165713723475199,0.2264867005478186,0.2373391793440953,0.2466141591735647,0.2556719807523666,0.263118500289191,0.2710582040863046,0.277923518738949,0.2848319985056156,0.2913380248429604,0.2967189217607417,0.3021729124778954,0.3071818315882613,0.3112737445517103,0.3157674294635038,0.3196311650071675,0.3233092597708407,0.3220204785485191,0.3207288293727018,0.3193461408830468,0.3186172128195895,0.3179449215279834,0.3163857334799071,0.3143430259188476,0.3148690431396928,0.3156774973192858,0.316283702070143,0.3169943190312453,0.3176270784786129,0.3190381599581808,0.3205914494078815,0.3223245550918597,0.3223405086025144,0.3244140514159241,0.3276947655295555,0.3300899513492702,0.3343492716909436,0.3364011424944462,0.341666225305863,0.3472439466933616,0.3495013599274705,0.3510371128267138,0.3568080618701664,0.3620480097234883,0.3727727727727727,0.3757575757575757,0.3759310074480596,0.0,1.8091401311998871,54.15337625198476,179.9127388180565,263.53975172637365,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95762,44910,425.0433366053341,6080,62.53002234706877,4780,49.476827969340654,1919,19.736429899124914,77.33232137485312,79.69866688690666,63.31916690730778,65.07136552352254,77.09406718859123,79.45837200961613,63.23248823188414,64.98590576336456,0.2382541862618978,240.2948772905376,0.0866786754236415,85.45976015798828,156.12828,109.81936140378608,163036.67425492368,114678.6520282202,390.09967,256.155161382396,406904.8996470416,267036.65872010926,374.71183,182.2980152126724,388772.24786449736,188370.5550786868,2749.444,1255.726351140485,2846460.015454982,1286943.453759503,1144.1404,501.3395827939067,1186096.6249660617,515262.4937289082,1882.59028,778.3809044345534,1937766.629769637,789156.9055975671,0.37938,100000,0,709674,7410.7579206783485,0,0.0,0,0.0,33620,350.598358430275,0,0.0,34284,355.4437041832877,1592980,0,57118,0,0,0,0,0,80,0.8354044401745995,0,0.0,1,0.0104425555021824,0,0.0,0.0608,0.1602614792556276,0.315625,0.01919,0.3231879510511453,0.6768120489488547,24.70354255646159,4.383583081044446,0.3209205020920502,0.2255230125523012,0.2297071129707113,0.2238493723849372,11.042978918327822,5.561444430518471,20.430059382010008,12138.30041509268,54.220437851977394,12.9131799149087,17.404104029041473,12.293600895564923,11.609553012462309,0.5602510460251046,0.8042671614100185,0.6981747066492829,0.569216757741348,0.1074766355140186,0.7256778309409888,0.9196891191709844,0.8769633507853403,0.6726618705035972,0.1586538461538461,0.5014180374361883,0.7398843930635838,0.6388888888888888,0.5341463414634147,0.0951276102088167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0047571230056091,0.0071582324750223,0.0091979022684771,0.0114043297794416,0.013895538961502,0.0161336379211878,0.0184892137745153,0.0209702980420223,0.0230651105651105,0.0250238346643156,0.0272775804365234,0.0292445166531275,0.0313198413924506,0.0330561459257577,0.0350786530789424,0.0370999306253041,0.0389563232700487,0.04094484915876,0.0430435642945667,0.0577575498188878,0.0712185731175258,0.0845744011410832,0.0973609504783934,0.1092801113360324,0.1240785591149937,0.1359735203318445,0.1474000127711202,0.1582802955875443,0.1687161618868936,0.1803017413122839,0.1925453070056803,0.2040854063108433,0.2141505823172398,0.2239605681530624,0.2345497221053563,0.2437027286316682,0.2525393415147186,0.2611147035133694,0.2690053123282652,0.2752501590606744,0.2817145196187357,0.2877642521678437,0.2935911721361561,0.2990454446090695,0.3052040074430985,0.3097925373507845,0.3140553669298948,0.3184354648678742,0.3226529831550344,0.3219362481154426,0.321122380172568,0.3206489592428809,0.3191246569406327,0.3184930998113404,0.3174238596168864,0.3152789005658852,0.3155251366389285,0.3165168136761469,0.3180324941974647,0.3200540428965491,0.3215254539334297,0.3220666344760985,0.3232293791897406,0.3249885440030871,0.3274858380974756,0.3293617991619872,0.3335541256623769,0.338379935366025,0.3427512552801466,0.3438070047427946,0.347496125273903,0.3505776310778215,0.3532787512434004,0.3557034398725279,0.361441526321988,0.3657428441617447,0.3609550561797753,0.3674863387978142,0.3659378596087457,0.0,1.6061067329053114,55.64471307207423,181.3524734832884,263.6523211921107,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95737,45098,426.3346459571535,6053,62.149430209845725,4751,49.165944201301485,1911,19.699802584162864,77.41699606751023,79.77108203173856,63.36600846061516,65.10074664274285,77.17951661899136,79.53079767420299,63.27922480043545,65.01468760871701,0.2374794485188687,240.28435753557176,0.0867836601797122,86.05903402583692,156.02576,109.70070847498368,162972.85271107304,114585.03512224498,393.62437,258.4514796009962,410678.0868420778,269486.471480197,378.18551,183.2593958404906,392167.3543144239,189228.79485974816,2751.28044,1260.7526699685302,2849313.72405653,1292440.4461895933,1168.55655,516.4880941828451,1211359.1088085065,530305.1333621122,1879.51422,786.3984931957654,1938636.8906483387,800537.9201479857,0.38108,100000,0,709208,7407.856941412411,0,0.0,0,0.0,33903,353.6354805352163,0,0.0,34544,357.8867104672175,1592101,0,57182,0,0,0,0,0,86,0.8982942853860054,0,0.0,1,0.0104452823882093,0,0.0,0.06053,0.1588380392568489,0.3157112175780605,0.01911,0.3369479805123369,0.663052019487663,24.62224415395413,4.450507121454858,0.3247737318459271,0.2239528520311513,0.2191117659440118,0.2321616501789097,11.421290136104622,5.954140993320782,20.4582830905367,12197.711767760542,53.88593920742292,12.714607446579867,17.478723652363676,11.491547537410655,12.20106057106872,0.561355504104399,0.7894736842105263,0.6843810758263124,0.5975024015369836,0.1350861287398005,0.7234878240377062,0.8952879581151832,0.8581560283687943,0.7725321888412017,0.1531914893617021,0.5020126509488212,0.7302052785923754,0.61875,0.5470297029702971,0.130184331797235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023988339844936,0.0043461082576056,0.0066232554365465,0.0090273053138232,0.0114385065885797,0.0137726745251328,0.0160639295470298,0.0184119208001633,0.0206123408343041,0.0225480065884374,0.0246854121408369,0.0267965270223116,0.0292457776087336,0.0313272367770637,0.0334241148799207,0.0357331073749909,0.0377678848742105,0.0397017185409514,0.0419554982800012,0.0439710401583415,0.0586699800570098,0.0715018100399673,0.0850659840966787,0.097463509022841,0.1098128130767202,0.1252498334443704,0.1370752195494463,0.148716529734792,0.1595317439972656,0.1699848830851371,0.1829730428042373,0.1946304368989799,0.2059635320452915,0.2164730036694041,0.2257079461323843,0.2363286434828776,0.2452024873515055,0.2537784719803126,0.2618464607989842,0.2695568599183057,0.2761119844645829,0.28261326728509,0.2888754920387247,0.2962896469180132,0.3019639239661802,0.3070521028267507,0.3111588787382681,0.3160121997712543,0.320904495326257,0.3249940684891783,0.3238252777105355,0.3228758708826318,0.3213214904069481,0.3196397854902357,0.3200784593437946,0.3180036742192284,0.3164514956623421,0.317316825521601,0.3181237327699306,0.3192905050792577,0.3206056984950894,0.3223921128756125,0.3226345354689164,0.3242106668446699,0.3241864808562603,0.3251441333818106,0.3284073181109062,0.3327085285848172,0.336217121328403,0.3409162592651001,0.3426134825376771,0.3451294762934444,0.3483959555611035,0.3524279210925645,0.3526237439523632,0.3521718822979915,0.3559040868647263,0.355979340484704,0.3556992724333064,0.3553903345724907,0.0,1.776247822944597,56.321856715810455,179.45820520900193,257.70251588865415,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95695,45143,427.7966455927687,6020,61.706463242593664,4776,49.31292126025394,1874,19.217304979361515,77.3508434030137,79.74077638844727,63.31502979323547,65.0824795980355,77.11512861297575,79.50642583586412,63.22688685616428,64.99729169434869,0.2357147900379459,234.3505525831517,0.0881429370711899,85.1879036868155,154.98494,109.0945340393911,161956.96744866503,114002.11154124158,393.67063,258.19875123138485,410798.359370918,269232.33693650126,377.77844,183.5059825231704,390500.3291708031,188508.50175611625,2749.5406,1248.0374434067276,2839162.9238727205,1270305.992926235,1141.28838,503.0131174054124,1173954.0728355714,507170.08615194017,1844.56848,780.6690383657399,1892705.4496055176,786004.9174813309,0.38082,100000,0,704477,7361.680338575684,0,0.0,0,0.0,33918,353.8115889022415,0,0.0,34485,356.16280892418627,1592859,0,57112,0,0,0,0,0,75,0.7837400073149068,0,0.0,0,0.0,0,0.0,0.0602,0.1580799327766398,0.3112956810631229,0.01874,0.3384126984126984,0.6615873015873016,24.685961309266407,4.374377553447694,0.3086264656616415,0.2384840871021775,0.2229899497487437,0.2298994974874371,10.935060275333054,5.48940448669922,20.09369958342545,12195.880279968906,53.70241704464639,13.396860424427327,16.52230380529294,11.806582845173512,11.976669969752605,0.5458542713567839,0.7796312554872695,0.6811397557666214,0.5690140845070423,0.099271402550091,0.7160699417152373,0.9018087855297158,0.8910614525139665,0.6848739495798319,0.1330275229357798,0.4886713286713287,0.7167553191489362,0.6137992831541219,0.535671100362757,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0046140897060165,0.0066998954410256,0.0090251239938206,0.0110276913060286,0.0131415415333835,0.0152607901743361,0.0177706967338684,0.0199936592998639,0.0222140289427597,0.0246131126357567,0.0268998880455213,0.0289752214027833,0.0310635798844002,0.0329937975375914,0.0348994676177185,0.0369852369852369,0.0389014593236875,0.0410035573862572,0.0430703802535023,0.0572690905672595,0.0719857599078582,0.0853687978251057,0.0973952196599899,0.1098335407919998,0.1255025178790571,0.138293016887266,0.1497060828079741,0.1595976655193791,0.1698698344225176,0.1825815144165993,0.1946823137131783,0.2063029142272618,0.2169616180188462,0.2262727913326874,0.2368263473053892,0.2464408937125247,0.2551852268888638,0.2635913397096576,0.2703985690042654,0.2771201556672612,0.2836443288704595,0.2904143358300938,0.2958723302135829,0.3014334869356937,0.3062822061687911,0.3110226860367631,0.3153348006972098,0.3202748874048765,0.3243671303751023,0.3237347059774699,0.3228482972136223,0.3212998423068258,0.3200901174125904,0.3199946605757679,0.3188935441450808,0.317653009610521,0.3184893913328418,0.318654882959121,0.3191561391942697,0.3203373349788698,0.321890694239291,0.322976833413266,0.32427681352915,0.3249395600450008,0.325247126585891,0.3256385623869801,0.3297159073190507,0.3330780210980747,0.335947609897651,0.3385320688570273,0.3414826498422713,0.3460076045627376,0.3483069464434512,0.3515032312447316,0.3532344213649852,0.3611999390893863,0.3589385474860335,0.3639077340569878,0.3691950464396284,0.0,2.266730904957132,52.48625082553266,182.81797696558647,265.11338141943537,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95727,45080,427.8521211361476,5945,61.0694997231711,4664,48.178674773052535,1808,18.552759409570967,77.26691653433518,79.62636942741868,63.2951211478972,65.0388625397368,77.04855352994285,79.40878369497875,63.21548259891966,64.9614312651432,0.2183630043923301,217.58573243992885,0.0796385489775417,77.431274593593,155.518,109.46226546705796,162459.9120415348,114348.3713759524,392.40909,257.8993001919494,409389.106521671,268875.1555903239,381.81542,185.5233107125436,394892.5486017529,190742.3274677512,2668.86224,1210.5747664356288,2760230.864855265,1237039.0698208956,1091.64698,473.58558159196,1128290.973288623,482774.1218604376,1767.432,723.8154481883473,1816478.2140879792,732057.6997681168,0.37973,100000,0,706900,7384.541456433399,0,0.0,0,0.0,33882,353.3903705328695,0,0.0,34832,359.96113949042586,1586905,0,57004,0,0,0,0,0,59,0.6163360389440805,0,0.0,1,0.010446373541425,0,0.0,0.05945,0.1565586074315961,0.304121110176619,0.01808,0.3346715914565601,0.6653284085434399,24.673885281469,4.299415696221312,0.309819897084048,0.2476415094339622,0.2223413379073756,0.220197255574614,11.348460264616664,6.051472278825166,19.13970752934935,12123.514884808876,52.94508287193128,13.905186005850805,16.371680439993806,11.545413406041565,11.122803020045115,0.5617495711835334,0.7887445887445887,0.6892733564013841,0.5814850530376084,0.107108081791626,0.7470542026708562,0.8976034858387799,0.8677248677248677,0.7590361445783133,0.1176470588235294,0.4921851961073429,0.7169540229885057,0.6260543580131209,0.5253807106598984,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0042482434172505,0.0065348865527458,0.0088377810058816,0.0108923377336614,0.0128699866616435,0.0152709108517253,0.0174967589142618,0.0197601790989849,0.021792089747789,0.0238537000399782,0.0259642926809235,0.0278986066121651,0.0300758075148319,0.0323329447327425,0.0344210950663097,0.0362753321528058,0.0382624212808781,0.0401438609621221,0.0421858720566784,0.0574796654589498,0.0715272544586787,0.0847542996253895,0.097625385335676,0.1092497257152502,0.1238109346397621,0.1365382982336956,0.1473178628100405,0.1582734582157215,0.1686756040228836,0.1818563990902329,0.1940652626105044,0.2052652781255784,0.2157684980401603,0.225964239680074,0.2361485624244038,0.2453608477910928,0.2541311375694155,0.262252814029827,0.2701441899915182,0.2768353082762451,0.2838954291197603,0.2902935606060606,0.2950731239510908,0.3002916160388821,0.3054093044475407,0.3100899501390594,0.3150749481030552,0.3190358258885157,0.3239783097473879,0.323017094709552,0.3214063944583201,0.3196796564923233,0.3190707099949337,0.3177041469441219,0.3158427845731211,0.3137980311209908,0.3137106338120964,0.3148297314435551,0.3155115629698575,0.3167132854005143,0.3182736491839645,0.319756071916728,0.3197076036504697,0.3208412817231304,0.3225519675774611,0.3233610077297452,0.3279580092329096,0.3326949675497393,0.335665460394049,0.3378701489792164,0.3373054213633923,0.3416397184706106,0.3420750821928282,0.3444339622641509,0.3490878938640133,0.355875152998776,0.3588187702265372,0.3615850302696753,0.3632130384167636,0.0,2.1091117803809625,56.19737451631958,168.3870012758195,258.81739455754604,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95707,44889,426.2593122760091,6106,62.73313341761836,4809,49.693334865788295,1895,19.444763705894037,77.288290147924,79.65716566455029,63.294707477804174,65.04383369943413,77.05565990537418,79.42555964462049,63.209003377172685,64.96082739845319,0.232630242549817,231.60601992979932,0.0857041006314887,83.00630098094075,155.55144,109.46404347895606,162528.57157783653,114373.89478194495,395.31899,259.78677118669526,412448.1594867669,270836.5544700966,382.95255,186.74550330775216,396646.7656493256,192430.68422397683,2743.70824,1264.331778028373,2835701.7146081277,1289993.0613913806,1124.00249,499.7230876528434,1156439.831987211,504195.8880441198,1852.39146,774.8450643187721,1902348.93999394,780300.8169863756,0.37826,100000,0,707052,7387.662344447115,0,0.0,0,0.0,34096,355.6897614594544,0,0.0,35039,362.752985675029,1584177,0,56958,0,0,0,0,0,77,0.7836417398936337,0,0.0,1,0.0104485565319151,0,0.0,0.06106,0.1614233595939301,0.3103504749426793,0.01895,0.3396611233134609,0.660338876686539,24.1904014175047,4.409179943089633,0.330214181742566,0.238927011852776,0.2164691203992514,0.2143896860054065,11.181646476589226,5.731429431387012,20.17523723749925,12084.683762445327,54.71399120680242,13.84330035175538,17.94750115740899,11.553390241452956,11.369799456185095,0.5658140985651903,0.7798085291557877,0.698992443324937,0.579250720461095,0.1086323957322987,0.7376923076923076,0.918141592920354,0.8713910761154856,0.7349397590361446,0.1330275229357798,0.5021373610715304,0.6901004304160688,0.6445733222866611,0.5303030303030303,0.1020910209102091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019850312439866,0.004004420068734,0.0062203190323497,0.0084012271683699,0.0104548043283703,0.0127279577228156,0.0149160906180542,0.0171285663247078,0.019360312381809,0.021593409404902,0.023910058007256,0.0260002874094147,0.028161339077328,0.0301232737046992,0.0320368020959041,0.0339596122444761,0.0358973297025294,0.0376504773765047,0.0397624446154806,0.0418959479739869,0.0566370757180156,0.0704077893524577,0.0840933180811653,0.0965705205779288,0.1088170408604874,0.1246294571017193,0.1364881508536481,0.1482002279675732,0.1584287562412462,0.168819316949571,0.1816113519225378,0.1930797647033333,0.2040271818439222,0.2146305682975159,0.223930569628618,0.2341147884745537,0.2442084078711985,0.2531234495512156,0.261425564594118,0.2694207092980522,0.2768775735080902,0.2836118440340076,0.2892941469607622,0.2943197654860877,0.2998843085916093,0.304912402085547,0.3099647210957803,0.3140076282321125,0.3182095678491173,0.3216710113667941,0.3204106133570744,0.3190139193532811,0.3187529149059457,0.3177370961429752,0.3174106211050481,0.3163041309119936,0.3143110913733762,0.3142528357718231,0.3146573115427398,0.3158195929754283,0.3176185648304607,0.3191060126582278,0.3195761644985312,0.3212571709189937,0.3231776014574394,0.3241510021809118,0.326494074852937,0.3291767440399535,0.3315308988764044,0.3325248508946322,0.3347188599095601,0.3359266759032292,0.3380946388119809,0.3395150870259177,0.3411753766040543,0.3464021598779199,0.3458339634054135,0.3502802241793434,0.3448831587429492,0.3400749063670412,0.0,2.1066767632581658,57.08558137523849,181.97326674057825,261.00761808438205,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95823,45499,431.2638928023544,5966,61.10224058942008,4654,47.932124855201785,1870,19.076839589660104,77.36488025655099,79.6808839107357,63.35773544642036,65.07181718691922,77.12958014351314,79.44980570738238,63.270231925241696,64.98914754006091,0.2353001130378516,231.07820335332008,0.087503521178661,82.66964685830658,155.23002,109.2469348177821,161996.61876584953,114009.09470354934,393.79978,258.64494916644924,410307.40010227193,269261.0638014352,380.30329,184.35762411467132,393443.7556745249,189640.21930763268,2673.36476,1225.420313067965,2755027.039437296,1243965.5542698142,1106.33662,492.0849966475516,1137183.755465807,496163.9914589745,1834.20184,769.8293957119749,1873290.212162007,767083.7474972381,0.38343,100000,0,705591,7363.482671174979,0,0.0,0,0.0,33966,353.76684094632816,0,0.0,34733,359.12046168456425,1595975,0,57272,0,0,0,0,0,65,0.6574621959237344,0,0.0,1,0.0104359078718053,0,0.0,0.05966,0.155595545471142,0.3134428427757291,0.0187,0.3386607000159821,0.6613392999840179,24.543713300627704,4.379550723210995,0.327245380318006,0.2337773957885689,0.2110012892135797,0.2279759346798452,11.058210904625792,5.597586283562381,19.84793714406549,12224.472550813554,53.08922246934949,13.205571229960375,17.34874456755779,10.876149105798206,11.658757566033106,0.5567253975075204,0.7794117647058824,0.6966513460275772,0.575356415478615,0.1102733270499528,0.7203252032520325,0.8917525773195877,0.8651960784313726,0.7345971563981043,0.1434977578475336,0.4979556074766355,0.7171428571428572,0.6349775784753363,0.5317769130998703,0.1014319809069212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0042580802141206,0.00638241740401,0.008725063990574,0.0108906763201513,0.0132061255243758,0.0153214132805969,0.017416338281234,0.0194839712136081,0.0216285377962024,0.0237468100152709,0.0258102255700827,0.0277911960286545,0.0301876305849175,0.0324599018678101,0.0346967006648222,0.0366570128258171,0.0389170370830872,0.0408074263285776,0.042772124768504,0.0580571810036403,0.0717585817619266,0.0846995966685873,0.0977904729900025,0.1104826903430334,0.1262579861661122,0.1390598679958894,0.1506479424240169,0.1611440641802509,0.171045725731301,0.1839659178931061,0.1966227757237681,0.2080291177748804,0.2178718477987833,0.2270894005165118,0.2371974212382921,0.2476994719368998,0.2564770621595822,0.2647248677847865,0.2726763397706354,0.279941796681025,0.2865482055712517,0.2927705433318365,0.2987547400026317,0.3030516374936272,0.3081354555190368,0.3124796880077998,0.3172122921351169,0.3218638919408001,0.3258992048027805,0.3235313881758436,0.3226435834020335,0.3215246194787457,0.3204802219075963,0.3195373591413195,0.3187013544156401,0.3166513426968073,0.3166376163383431,0.3175070627514768,0.3182899987473829,0.3196582483345252,0.3199904693828925,0.320459180455396,0.3210743616209666,0.3219303310238645,0.3233222001878718,0.3240266393442623,0.3278394615166861,0.334141712357655,0.3368299298021697,0.3375539040278925,0.3432532248568217,0.3455784045330107,0.3468884781269254,0.3508287292817679,0.3522876597778043,0.3582458307597282,0.3555464424851343,0.3569648296870673,0.3515503875968992,0.0,2.458845859877471,53.68742284343803,183.20811803044109,249.5137987630993,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95630,44875,424.8562166684095,6025,61.58109379901705,4727,48.78176304506954,1833,18.738889469831644,77.2563444549925,79.66574852595944,63.27473565930678,65.05524623071207,77.02701603203049,79.44136754170567,63.18838342945863,64.97398490227151,0.2293284229620127,224.38098425377007,0.0863522298481527,81.26132844056144,155.3233,109.279326879016,162421.1021645927,114273.05958278368,393.11536,258.3933236912619,410435.375928056,269556.9843497255,375.53495,183.1156185928938,388876.01171180594,188486.26774992247,2703.14376,1245.229912422869,2791292.021332218,1266758.739733479,1129.72673,498.7439787646306,1164289.417546795,504598.9813722328,1795.42604,759.7186333015168,1837252.6822126948,758377.7623042241,0.38059,100000,0,706015,7382.777371117851,0,0.0,0,0.0,33910,353.89522116490645,0,0.0,34363,355.50559447872007,1588110,0,57048,0,0,0,0,0,82,0.8470145351877026,0,0.0,0,0.0,0,0.0,0.06025,0.1583068393809611,0.3042323651452282,0.01833,0.3347029077117572,0.6652970922882427,24.51616771448492,4.34792395851297,0.3166913475777448,0.2409562090120584,0.2214935477046752,0.2208588957055214,11.199807977447968,5.759941917457788,19.584296496938425,12250.674575880568,53.57379769674811,13.621696140635803,16.891908931627434,11.57346077732462,11.486731847160256,0.5648402792468796,0.7936786654960492,0.6887107548430194,0.5826170009551098,0.1197318007662835,0.7283558379666402,0.9238329238329238,0.8417085427135679,0.7575757575757576,0.1390134529147982,0.5054786620530565,0.7213114754098361,0.6333030027297544,0.5330882352941176,0.1144945188794153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025117739403453,0.0049461297548219,0.0072763068429758,0.0095699612934686,0.0119035507172652,0.0140989986043621,0.0163314019911865,0.0185132208100044,0.0207434077286582,0.0227016616468949,0.0250061566245279,0.0269456462536097,0.0293200185309105,0.0315493190089802,0.0338102370745312,0.0359164329839302,0.0379934483330568,0.0398495771955704,0.0416246084685265,0.0435190787140383,0.0579320868301961,0.0716897321194724,0.0853150230453452,0.0978672786222577,0.1101648409632959,0.1257765125459028,0.137748386548913,0.1499169258296766,0.1607265030360044,0.170292693921798,0.1836688483227844,0.1954816339798461,0.2069389978213507,0.2177057875875371,0.2275825557540864,0.2380968239695385,0.2474691544458986,0.256900690914419,0.2658452305174138,0.2731090026731526,0.2797833725690297,0.2858399296394019,0.2927057874380087,0.2976669348350764,0.3025011568154697,0.3070204696784395,0.3126771515288333,0.3172725070444084,0.3210925841821839,0.3254120352625527,0.3241580310880829,0.3230314987789566,0.3228314181119168,0.3217010413947147,0.3207113657386686,0.3176376450312375,0.3161080222398729,0.3162688804335293,0.3165535606906623,0.316593377007987,0.3180122819575782,0.3192588032015253,0.3196693728179026,0.3215836354684213,0.3237439514672958,0.3260047466291109,0.327119079567191,0.3292728989612842,0.3336249431360885,0.3373551168954468,0.341522114249387,0.3436174724342663,0.3492563650113436,0.3520721266762633,0.3564622074197428,0.3602535508862542,0.3656592993534807,0.3691449073151285,0.3677697067527576,0.367816091954023,0.0,2.457065758853138,54.63334167291542,178.84959798695894,258.3740000021747,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95696,44474,421.8985119545227,5997,61.45502424343756,4667,48.21518140779134,1857,18.9976592543053,77.32722884548278,79.70386882946762,63.32110870231941,65.07579695895599,77.08549683505782,79.46480348830706,63.22909292182019,64.98749102977642,0.241732010424954,239.06534116056832,0.0920157804992243,88.30592917956892,156.03214,109.67803577586236,163049.57364989133,114610.68488906974,391.86303,257.48377965436254,408947.6258150811,268525.66019889584,366.90315,178.28483394792352,380731.8487711085,184133.3413095372,2655.44488,1240.8217345722344,2743985.035947166,1265834.0372891591,1120.87358,499.1658436244591,1158652.054422337,509153.78403404687,1820.09424,784.1903580598087,1863628.824611269,786299.8104418281,0.37671,100000,0,709237,7411.344256813242,0,0.0,0,0.0,33936,354.04823608092295,0,0.0,33574,348.1023240260826,1590131,0,57155,0,0,0,0,0,66,0.6896839993312155,0,0.0,0,0.0,0,0.0,0.05997,0.1591940750179183,0.3096548274137068,0.01857,0.3358304112209117,0.6641695887790883,24.114645518174804,4.385357690098019,0.3113349046496679,0.2356974501821298,0.2350546389543604,0.2179130062138418,11.33608161571521,5.799717933359723,20.0069864427542,12066.759190328772,53.25532476147693,13.246400129067869,16.515708306476697,12.114935937135773,11.378280388796586,0.5631026355260339,0.7854545454545454,0.6896077081899519,0.5970829535095715,0.1052114060963618,0.710955710955711,0.8825,0.8567839195979899,0.7651515151515151,0.0844444444444444,0.5068047337278107,0.73,0.6265402843601896,0.5438175270108043,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0046011492738494,0.0067667647357208,0.0092426135267172,0.0114601234480023,0.0137049066824147,0.0160096261701303,0.0185266512107687,0.0204732783834086,0.0223960840134765,0.0243564762588452,0.0263749807425666,0.0285634938594145,0.0304788204140091,0.0324055440312909,0.0343950361944157,0.0361760318249627,0.0384435700715301,0.0401601830663615,0.0420280186791194,0.0569384237739593,0.0709732790471306,0.0836698941538074,0.0967657085139514,0.1078774709394316,0.1236894169426253,0.1350789118967512,0.1472066622649145,0.1580117109031072,0.1681829885846708,0.1808711203042349,0.1927723887060453,0.2036704633225634,0.214509971229475,0.2238771466314399,0.2337334175615919,0.243404378844887,0.2522113934592271,0.2594661489378612,0.2673076702689694,0.2748983680985858,0.2817607117771014,0.2885075439967787,0.2940873172895907,0.2992801906522056,0.3039374159396863,0.3092526467455992,0.3140072616090197,0.3190893533163926,0.3220688288526322,0.3210252951096121,0.3206479071112764,0.3193968374874811,0.3172533429707264,0.3165538278401905,0.3149470838517426,0.3130660998397868,0.3133850773699151,0.314864772572053,0.3148973335234564,0.3154398832466414,0.3170789489270132,0.3174569957728205,0.3185241468701812,0.3191243407268261,0.3204689662375643,0.3199235356215584,0.322227465785748,0.3250927936129981,0.3279606177299615,0.3308511124309014,0.3336172931530188,0.3384392334846192,0.3393703194253401,0.3403007661023361,0.3452113176275601,0.3513761467889908,0.3588187702265372,0.3629120879120879,0.3596323247797778,0.0,2.10959857401941,56.37745813805887,178.44097218351152,248.2747200765185,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95784,45093,427.55575043848654,6070,62.15025473983128,4728,48.81817422534034,1927,19.77365739580723,77.38146625236273,79.70421729503339,63.35451413110488,65.06771457300866,77.14221808017766,79.4663850480613,63.26692817946222,64.9830718784754,0.2392481721850714,237.83224697208996,0.0875859516426587,84.64269453325812,154.66242,108.88452410840704,161469.99498872465,113677.15287355616,395.44237,259.26978804935925,412264.16729307605,270102.0226285453,374.9702,181.9542596516456,388347.57370750856,187546.17935405183,2720.82696,1245.6434862505,2810270.0659817923,1270478.806629253,1127.25366,491.5044276154629,1162368.0886160529,498868.4567505886,1887.07246,782.921685025529,1937727.92950806,788891.8447281568,0.38176,100000,0,703011,7339.54522676021,0,0.0,0,0.0,34118,355.58130794287143,0,0.0,34355,355.5917480998914,1594910,0,57260,0,0,0,0,0,59,0.6055291071577716,0,0.0,2,0.0208803140399231,0,0.0,0.0607,0.1590004191114836,0.3174629324546952,0.01927,0.3272527126906746,0.6727472873093253,24.57339682464769,4.397404480147025,0.3185279187817258,0.229906937394247,0.2231387478849407,0.2284263959390862,11.071103073963428,5.597094666696083,20.434289628296327,12195.06463566148,53.618112420598194,13.058471144633923,17.00878686187291,11.833659061001535,11.717195353089812,0.5537225042301185,0.7856485740570377,0.6839309428950863,0.571563981042654,0.1212962962962962,0.721875,0.9047619047619048,0.8525798525798526,0.72,0.083743842364532,0.4912993039443155,0.7106446776611695,0.62147406733394,0.5254658385093167,0.1299885974914481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186116679829,0.0046211844825489,0.007121047666386,0.0093427573320334,0.0115712731450883,0.0138037746605045,0.015737116764514,0.0178471208889886,0.0202901512055578,0.0223133900802095,0.0245051837888784,0.0267985390076743,0.0288259958071278,0.0307999547059489,0.0329498123633964,0.0345860313329409,0.0364456678083963,0.0384312343196002,0.0403153761452641,0.0423017657837747,0.0571237751364438,0.0712648969897356,0.0853259501636043,0.0981488684025186,0.1107081866289979,0.1265625991496922,0.1383523721640627,0.1500569445774925,0.1607091365408234,0.1705777044048755,0.1837468381680211,0.1953244955775178,0.2059383120060013,0.2171074217468337,0.2270141815101272,0.2371852393454972,0.2471511322923758,0.2557464474972153,0.2646845128624299,0.272328183026913,0.2790896983033181,0.28559383563248,0.2918117435277955,0.2974301193843793,0.302985020228159,0.3080221811460258,0.3125304973412574,0.3170126698214013,0.320831228056538,0.3245739011133977,0.3232032301480484,0.3221317786822131,0.320475989297282,0.3187563268257411,0.3179195050123449,0.3154805688365821,0.3130675526024363,0.313813567657956,0.3151537897268803,0.3162956366874443,0.3173653813804833,0.3185561729124798,0.3184393752482907,0.3197076703021634,0.3212218726735669,0.3218719904214061,0.3235745551702575,0.326647025637811,0.3311847544314439,0.3341011079782375,0.3381576551975241,0.3397883597883598,0.3416859338873961,0.3437358319480127,0.345668549905838,0.3407048249763481,0.3412336675782437,0.3496475327291037,0.3502329405316525,0.3532110091743119,0.0,1.9871535928241075,56.403325944273405,177.08317815159805,255.84737904214643,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95770,44628,422.8255194737392,6062,62.14889840242248,4690,48.53294351049389,1828,18.80547144199645,77.31912755708531,79.66826687315721,63.32066847763053,65.05809364221318,77.09266195186463,79.44127423467212,63.23646687158232,64.975805912918,0.2264656052206817,226.99263848508625,0.084201606048218,82.28772929517447,156.30648,109.94143978463848,163210.27461626814,114797.36847096008,389.82501,255.9733786977435,406617.8761616373,266854.2431844456,372.6195,181.6145831881946,386143.1137099301,187441.1497862414,2700.35536,1235.7660877045614,2796543.301660228,1267461.2318246064,1133.17152,496.0763123292775,1173787.53263026,508594.823771011,1790.39314,747.29007606106,1844016.7275764851,758899.5630663976,0.37661,100000,0,710484,7418.648846194007,0,0.0,0,0.0,33708,351.5192649055028,0,0.0,34113,353.29435104938915,1590035,0,57083,0,0,0,0,0,62,0.6473843583585674,0,0.0,0,0.0,0,0.0,0.06062,0.1609622686598869,0.301550643352029,0.01828,0.3259433962264151,0.6740566037735849,24.677115861346596,4.375959530822095,0.3189765458422174,0.2383795309168443,0.2204690831556503,0.2221748400852878,11.235077334161751,5.89954077013105,19.38592268030854,12055.341608887802,53.11002360274079,13.403470637708844,16.830779460732145,11.535823683909742,11.339949820390045,0.5637526652452025,0.7969588550983899,0.6878342245989305,0.5831721470019342,0.1161228406909788,0.7408585055643879,0.9324009324009324,0.8846153846153846,0.7131474103585658,0.1448598130841121,0.4988344988344988,0.7126269956458636,0.6245583038869258,0.541507024265645,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045590335092,0.0043575634126815,0.0066048455825656,0.0089682910479595,0.0113290823850057,0.0137382501807664,0.0157838388988019,0.0179003584156191,0.019774848927925,0.0220104216787297,0.024207439609564,0.0263990142725125,0.0282311560889821,0.0303183269805295,0.0322647213595138,0.0344057794268115,0.0364101289935192,0.0382863959338208,0.0402128057524054,0.0422950341609731,0.0571595582555687,0.0715817441969936,0.0844529750479846,0.0969431212341083,0.1089184060721062,0.124111825410252,0.1353498287180901,0.1460233015906793,0.1570714728053129,0.1664504925553923,0.179192867602722,0.191344998863747,0.2032648533426138,0.2139186529630439,0.2236597467463172,0.2337515642130209,0.2436713099383873,0.2525680982009248,0.2612988899734411,0.2691250572606505,0.2760329239068776,0.28203567582752,0.2875690018716387,0.2927162968208058,0.2984165207238762,0.3030475085475888,0.307868688134319,0.3131265524488886,0.3173878651918513,0.3213285789751717,0.3198113207547169,0.3179321263853514,0.3174688258195565,0.3163653732034563,0.3157127775051672,0.3140224739770967,0.3130755940209552,0.3142322035847475,0.314830950062358,0.3162460426764921,0.3165036881322847,0.3177836223773458,0.3182839503580353,0.3194207836456559,0.3210794934758534,0.3225503495773766,0.324370562573066,0.3267043669494188,0.3309456090452614,0.333926523510104,0.3361607547854486,0.3379303028695698,0.338734081452528,0.3397494653223342,0.3427252167357708,0.344717936638794,0.3524390243902439,0.3469884404786047,0.3496136865342163,0.3559127439724455,0.0,1.6959974505672042,55.54935917819039,172.3129206881886,260.51166635315263,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95674,45370,428.9566653427263,5926,60.71660012124506,4637,47.81863411167088,1853,19.002027719129543,77.34181859432726,79.72407120266517,63.3271521787835,65.08559571125444,77.120157804827,79.5025724105983,63.24618713455638,65.00648454595229,0.2216607895002624,221.4987920668676,0.0809650442271205,79.11116530215168,154.38258,108.70139022622912,161362.68996801638,113615.9974895678,392.43945,257.4384002827159,409517.1519953174,268412.721016113,376.55732,183.4902152634452,388519.043836361,188048.6309170251,2658.1008,1215.374057246307,2745026.987478312,1237113.9990785662,1094.64226,482.5309663887936,1128084.4011957273,488354.882137424,1808.26728,744.2432868702007,1856854.9658214357,752490.536091516,0.38318,100000,0,701739,7334.667725818927,0,0.0,0,0.0,33806,352.65589397328426,0,0.0,34431,354.82994334929026,1598702,0,57375,0,0,0,0,0,75,0.7839120346175554,0,0.0,1,0.0104521604615674,0,0.0,0.05926,0.1546531656140717,0.3126898413769828,0.01853,0.3391737662755184,0.6608262337244816,24.551987109830996,4.393316742547317,0.328876428725469,0.229458701746819,0.2255768816044856,0.2160879879232262,11.239533497480409,5.759308046284081,19.616640380064705,12252.764774646072,52.45443609480773,12.68689481033748,17.239954359261315,11.71152391153685,10.816063013672093,0.5585507871468622,0.7772556390977443,0.6963934426229508,0.5630975143403442,0.1117764471057884,0.7482014388489209,0.9523809523809524,0.8345679012345679,0.7527272727272727,0.160621761658031,0.4884819846426462,0.6807580174927114,0.6464285714285715,0.4954604409857328,0.1001236093943139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417464126945,0.004652482844603,0.0067773911102543,0.0093030813918059,0.0116626672631878,0.0139183025169015,0.0160229948322783,0.0182415810050733,0.0203599791494189,0.0227968348534635,0.0251517512919366,0.0274830798303361,0.0297007294013559,0.0317165909301678,0.0338332284000949,0.0358805155044372,0.0380394798196984,0.0400643687707641,0.0422964496364336,0.0443149478249085,0.0584978585605348,0.0721719646521757,0.085525072941374,0.0987247743103049,0.1104911185182059,0.1262533316410712,0.1378933520062809,0.1502788658038147,0.1617452245630528,0.1718602556403877,0.1847245552827669,0.1961501027360224,0.2066764529984233,0.2173784720324439,0.226704795424549,0.2375268507651084,0.2470680131674384,0.2559711227060093,0.263974133529979,0.2711526793584651,0.2777385976067981,0.2840743035503443,0.2908897428318061,0.2973545860627762,0.3030310387103822,0.3078505271455315,0.3124351100158863,0.3175931815290675,0.322406424038337,0.3267883298365068,0.3254884008993847,0.3237770318604523,0.3227461037680015,0.3214517923451474,0.3202989199066989,0.3191521969011969,0.3179775280898876,0.3185711472827514,0.3196124666803362,0.320290346168251,0.3216214700880259,0.3227130146580126,0.3235515582514118,0.3233270794246404,0.3247635508185703,0.3255468363010663,0.3250647908182155,0.3276122218030932,0.3298624547085517,0.3333333333333333,0.336795590178124,0.3383015965628812,0.3438280859570214,0.3486384266263237,0.3513362510475836,0.3474857685009487,0.3393893129770992,0.3392318520008043,0.3401435670900055,0.3346139070303496,0.0,2.448649030773384,54.48342539755212,169.94057363564966,255.63554089359957,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95680,44846,424.16387959866216,6070,62.405936454849495,4676,48.29640468227424,1883,19.27257525083612,77.38307130315455,79.76024120157375,63.34642469116329,65.09787597866443,77.15244842281628,79.53160259811519,63.261197167736746,65.01590188538374,0.2306228803382737,228.63860345856324,0.0852275234265462,81.97409328069227,155.27358,109.1969155656398,162284.03010033446,114126.98115137946,391.70716,257.3077324336555,408789.1826923077,268321.5535468807,372.07394,180.4898236717517,385807.97449832776,186194.5939929121,2688.34124,1220.0596343430311,2777131.43812709,1242556.181378586,1093.25702,480.58721141253056,1126977.7382943144,486663.5481166992,1841.46084,770.3079102931243,1886016.5969899665,772167.9992031581,0.37909,100000,0,705789,7376.546822742474,0,0.0,0,0.0,33876,353.4280936454849,0,0.0,33987,352.1425585284281,1594246,0,57253,0,0,0,0,0,61,0.6270903010033444,0,0.0,0,0.0,0,0.0,0.0607,0.1601202880582447,0.3102141680395387,0.01883,0.3338577721837634,0.6661422278162367,24.73808167005628,4.373919061945809,0.3284858853721129,0.2228400342172797,0.2286142001710864,0.2200598802395209,11.12528979460165,5.709515208263329,19.992562054934663,12155.590767049734,52.71129622780994,12.463242270958787,17.200139361840844,11.90496903015919,11.142945564851107,0.5624465355004277,0.7773512476007678,0.6998697916666666,0.6043030869971936,0.0962099125364431,0.7360995850622407,0.906166219839142,0.8733509234828496,0.758893280632411,0.13,0.5021607605877269,0.7055306427503737,0.6430423509075195,0.5563725490196079,0.0880579010856453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890750432766,0.0043057159645816,0.0066936440806888,0.0087432470855843,0.0109806313863047,0.0133045593819029,0.0152704438418724,0.01746470822403,0.019502621814725,0.0218559656037262,0.0240524108799737,0.0262674183379029,0.0282828698370906,0.0307877714144452,0.0327648994666419,0.0349022282855843,0.0370869159846679,0.0392850841230136,0.041297045456909,0.0435634483908621,0.0586889527291721,0.0724335755114005,0.0858048069155799,0.0979738610196936,0.1099665777515366,0.1255616284847395,0.1373557065476632,0.1485042166944943,0.1593329207656686,0.1695004231885921,0.18284509375706,0.1950763309259179,0.2056991946790127,0.2147650273224043,0.2242765538556297,0.2343497241119507,0.2446422389243157,0.2532915854798563,0.262000749514519,0.2694312986283789,0.2759478727836674,0.2826858019127442,0.2889073141841871,0.2959434652716954,0.3011040319050629,0.3062966389145852,0.3113676487159903,0.3164895309616241,0.3202234086668049,0.3247368907551928,0.3231355236416006,0.3219772511587605,0.3211454798879299,0.3201907101061909,0.3189701253192374,0.3177598725529242,0.3164328466922126,0.3165892643221688,0.316856390797525,0.3172225396371947,0.3189133681852128,0.319711822369198,0.3186210062814332,0.3192100458654317,0.3213995506906935,0.3216893676523901,0.3224074597343882,0.3266776900758119,0.3307284398548702,0.3335562549173879,0.3378464046368411,0.3397348205829738,0.3418819418445026,0.3467790487658037,0.3516117080400148,0.3551510908878777,0.3602521765235665,0.3587382445141066,0.3632968791677781,0.3633000369959304,0.0,2.189203938259173,52.75705928390239,174.64733459330395,261.6208899971311,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95700,44945,425.3187042842215,6064,62.215256008359454,4756,49.18495297805642,1903,19.54022988505747,77.3960056150407,79.77983733051151,63.35197710932333,65.11279454550632,77.15990798222413,79.54516871920734,63.26445959545088,65.02843030590464,0.2360976328165804,234.6686113041727,0.0875175138724486,84.36423960168327,155.17436,108.996473051691,162146.4367816092,113893.70771919833,394.67428,259.8985015301483,411868.0982236154,271037.6569067095,375.38871,182.90726433500316,389166.2277951933,188780.6924206278,2743.63592,1257.959136594073,2838666.039707419,1286330.5980627723,1142.06767,502.58671057028505,1180596.9696969695,512580.3830635267,1862.56972,782.8261048090003,1913986.144200627,790203.9004225676,0.38042,100000,0,705338,7370.292580982236,0,0.0,0,0.0,34007,354.7753396029258,0,0.0,34318,355.4649947753396,1597090,0,57257,0,0,0,0,0,69,0.7210031347962382,0,0.0,1,0.0104493207941483,0,0.0,0.06064,0.159402765364597,0.3138192612137203,0.01903,0.3298742138364779,0.670125786163522,24.585765412884264,4.441441663887382,0.31959629941127,0.2300252312867956,0.229184188393608,0.2211942809083263,11.277187883428486,5.759354458827159,20.408859522399005,12113.787080706012,53.769205635238784,13.01120892133246,17.06248079310693,12.086534562774784,11.608981358024606,0.5616063919259883,0.773308957952468,0.6828947368421052,0.5889908256880734,0.1378326996197718,0.7315112540192926,0.9345549738219896,0.8600508905852418,0.7007874015748031,0.1720930232558139,0.5014236902050114,0.6867977528089888,0.6211180124223602,0.5550239234449761,0.1290322580645161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380542358459,0.0048569284743769,0.0071557621647956,0.0092862585725171,0.0113319634610298,0.0135930436199242,0.0157631248916667,0.0180195816190058,0.0201803349076857,0.0225695510655284,0.0247488209965142,0.0267256691684548,0.0286628134191743,0.0307575039657197,0.0330901699392263,0.0348880481300006,0.0372392218608216,0.0393726125228367,0.0415188925521846,0.0434315850913032,0.0581697776199379,0.0725147300451058,0.0853777493418361,0.0979897384136596,0.1102854372206762,0.1257138022926272,0.1380788203468944,0.1488605277443665,0.1589173369222717,0.1685843887059933,0.1812230130614091,0.193070109982805,0.2046807770872267,0.2146463542577373,0.2237893695377343,0.234958161774472,0.2448421991747518,0.2536394680086269,0.2613847478363315,0.2692087876917449,0.27632384008866,0.2818234882091991,0.2885544517028339,0.2936102503977891,0.2984747077937824,0.3034680304390052,0.3087268417441207,0.3128772890985644,0.3178761792909412,0.3222713282298161,0.3213399004200609,0.3200724071255194,0.3185613088210491,0.3180146263360595,0.3179964105074237,0.3164717572422227,0.3144316044074173,0.3147483488208204,0.3158406385373674,0.3161616701401877,0.3168561172599461,0.3168987728248665,0.3180955162845041,0.3204982760538316,0.3212548230162724,0.3218349005143124,0.3220852812013033,0.324039847127373,0.3276808503199189,0.3304282375311967,0.3326191995624031,0.3358105956046289,0.3380832282471627,0.3428984624752626,0.3445052870090634,0.3462455303933254,0.3456998313659359,0.3502135448444173,0.3519029233314947,0.3495934959349593,0.0,1.8683248008050943,54.68237353379081,182.1909283302532,259.0576633706579,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95837,44995,426.1089140937216,5999,61.552427559293385,4656,48.1442449158467,1841,18.89666830138673,77.38566316619061,79.70580181261414,63.36611244363343,65.08384611555394,77.1684859229064,79.4895576637905,63.28643913454027,65.00686987108992,0.2171772432842118,216.244148823634,0.0796733090931596,76.97624446402074,156.21738,109.90270035364784,163002.97379926333,114676.46144354247,394.25871,258.927754770122,410938.6562601083,269729.1492535472,375.86292,182.011299536634,389833.7489696047,188125.1641786026,2673.38604,1206.8649700509325,2764499.180900905,1234274.8730145271,1127.16128,492.4955892288776,1165175.986310089,502941.47273900185,1800.71088,740.666971507685,1849175.6211066707,746618.9863977022,0.38125,100000,0,710079,7409.226081784696,0,0.0,0,0.0,33988,354.1847094545948,0,0.0,34353,356.10463599653576,1592896,0,57149,0,0,0,0,0,75,0.7825787535085614,0,0.0,1,0.0104343833801141,0,0.0,0.05999,0.1573508196721311,0.3068844807467911,0.01841,0.3272234619062799,0.6727765380937201,24.69371181903104,4.40123357251492,0.3251718213058419,0.227233676975945,0.2289518900343642,0.2186426116838488,11.00505238553833,5.68405867706684,19.45980321013137,12153.230921315266,52.32564071404476,12.605202518820626,17.107747957836825,11.717402101860852,10.895288135526464,0.5657216494845361,0.7892249527410208,0.7034346103038309,0.573170731707317,0.1208251473477406,0.7317073170731707,0.919889502762431,0.853904282115869,0.6820083682008368,0.1832460732984293,0.5087972310354774,0.7212643678160919,0.6499552372426142,0.5417170495767836,0.1064087061668681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890016509171,0.0043692912827063,0.0068607849306309,0.0089610468778574,0.0111680703039179,0.0133285816108339,0.0156968269985424,0.0181140932748239,0.020276968674945,0.0222886264557195,0.0245544635628567,0.0263271338834831,0.0285097636176772,0.0303039660727336,0.0324922404281427,0.0344781283891958,0.0363380514858041,0.0383909785346337,0.040308177929144,0.0424340804561819,0.0574319390841764,0.071333744498918,0.0849090223042093,0.097173776003362,0.1098424201567371,0.1254079401793352,0.1379551449789709,0.1495015198860617,0.1605746770907772,0.1704365334361478,0.182457498628988,0.1952497191739393,0.2061352090660414,0.2171341263778238,0.2267641665843187,0.2367050968861573,0.2457011760513186,0.2541489815625772,0.2613973502434605,0.2686488710119755,0.2757963769036265,0.2821930592009332,0.2891783779956812,0.2949601615041869,0.3004236262406197,0.3061995998674408,0.3109462660516145,0.3155813540848141,0.3206894772152552,0.3250539104823016,0.3233986541845191,0.3218026328432785,0.3211344407903982,0.3202054300470296,0.3190255048294485,0.3165832989154544,0.3148573146990392,0.3153774188783298,0.3161522017956392,0.3170675052710574,0.3174092100336952,0.3183435461553667,0.3197158828226789,0.3204473129846264,0.3219741764209002,0.3229150306266687,0.3231393620669944,0.3255975060616557,0.329330985915493,0.3315290933694181,0.3345650289676566,0.3377167400180285,0.3397520609149833,0.3423293294815265,0.3455951707225052,0.3487100225894661,0.3528058877644894,0.3570271364925071,0.3611340489953206,0.347693480747236,0.0,1.6440098669435217,52.4347074809446,173.21352295212046,262.17596938818264,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95765,44861,424.64365895682135,6024,61.5882629353104,4771,49.2351067717851,1887,19.339006944081863,77.37657405990127,79.72168282500397,63.3458979718325,65.07921774574965,77.13273431212873,79.47921462241013,63.255917787774976,64.99217893472836,0.2438397477725402,242.4682025938409,0.0899801840575236,87.03881102128719,155.48522,109.37777717697752,162360.98783480396,114214.55665324234,391.70641,257.4022051145522,408451.3339946745,268208.3789553096,378.38946,184.6832685975234,391363.911658748,189929.5661098548,2734.9616,1267.1375463865538,2826134.516785882,1293448.4899353145,1155.46464,517.0242945681306,1193647.6583302876,527090.7209708951,1851.75758,782.9691306179675,1901083.088811152,789563.7727853497,0.37996,100000,0,706751,7380.044901581998,0,0.0,0,0.0,33801,352.3416697123166,0,0.0,34611,357.77162846551454,1593559,0,57161,0,0,0,0,0,63,0.6369759306636036,0,0.0,0,0.0,0,0.0,0.06024,0.1585430045267923,0.3132470119521912,0.01887,0.347323408299018,0.6526765917009819,24.294102569429963,4.380711757167865,0.3164954936072102,0.2454412072940683,0.2127436596101446,0.2253196394885768,11.287637810037603,5.793120562553783,20.25541568573932,12169.645342887272,54.19138909069009,13.91051210158194,17.067376225529365,11.262654146567302,11.95084661701148,0.5592119052609515,0.7771135781383433,0.6854304635761589,0.5733990147783251,0.1311627906976744,0.7404287901990811,0.9247058823529412,0.8666666666666667,0.7704918032786885,0.1508620689655172,0.4909090909090909,0.693029490616622,0.6190045248868778,0.5110246433203631,0.1257413997627521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0045413536883293,0.0068284664867387,0.009142996464708,0.0115226588560735,0.0138287797476604,0.0160495967207431,0.0182750030628496,0.0201903515676913,0.0225097501305135,0.0244649885208265,0.0266267026616437,0.0287746856784513,0.0305554983419497,0.0327126424923918,0.0348626887577389,0.0368617786843658,0.0390352697095435,0.041177632468059,0.0430105287274923,0.0576852827904355,0.0724922613569815,0.0859925360617242,0.0986044263225372,0.1102446015871175,0.1256196949356785,0.1378590133692391,0.150267061051646,0.1604886852700263,0.1709398959841295,0.183094950887472,0.1950425205028888,0.2065443232129842,0.2162496307399424,0.2262964960755606,0.2360927923035146,0.2449170993133478,0.2537582140606715,0.2616391880084875,0.2688542608854948,0.2751529591376458,0.2826079332234419,0.2893794114517445,0.295102969348659,0.3003910329584922,0.3053009019665829,0.3097625,0.3138791843994156,0.3193539209600662,0.322830285691685,0.3221361937790682,0.321594437879579,0.3210678819590964,0.3189790821555918,0.3186498516320474,0.3180872544820412,0.3169709241623691,0.3174715093875543,0.3186475409836065,0.3190791233482533,0.3199947520335869,0.3207610542537638,0.3220711757189837,0.3230045063133003,0.3258874957967046,0.3266454739694617,0.3257012672647017,0.3284804367606915,0.3300228110194771,0.3326318297331639,0.3349282296650718,0.3381845222287141,0.3427421889734079,0.3461538461538461,0.3472599531615925,0.3498283414229904,0.3514420875934686,0.3539787532571657,0.351063829787234,0.3503208758021895,0.0,2.280529470275822,57.14595240813847,176.31808336253798,260.40476070954765,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95749,45181,428.3908970328672,5974,61.14946370197078,4687,48.34515242979039,1816,18.54849659004272,77.3313489084019,79.69968590500665,63.31030609897547,65.06411379662556,77.1041307934066,79.47386240712481,63.22689698348523,64.98352300171057,0.2272181149953098,225.82349788183365,0.0834091154902338,80.59079491499688,154.60148,108.77120629868789,161465.3730065066,113600.35749583588,390.98388,256.7330971836657,407738.3471367848,267527.18794312805,374.64928,182.42332072365372,387285.20402301854,187346.0771612049,2694.6666,1233.3854343723658,2782166.163615286,1256008.0150940127,1132.95962,499.0339741389669,1166732.0389769084,504661.7866912095,1780.7005,744.6663495247984,1821689.5424495293,745901.8590430064,0.38073,100000,0,702734,7339.335136659391,0,0.0,0,0.0,33710,351.4501456934276,0,0.0,34181,353.0167416892083,1596998,0,57260,0,0,0,0,0,62,0.6475263449226624,0,0.0,1,0.0104439733052042,0,0.0,0.05974,0.1569090956846059,0.3039839303649146,0.01816,0.3394172270252962,0.6605827729747038,24.8014217429429,4.4517326248695,0.3277149562620012,0.2244506080648602,0.2272242372519735,0.2206101984211649,11.522653760036729,5.978724003816368,19.330505832442967,12152.240615523096,52.86275480520649,12.41055220259086,17.266118315117293,11.799438297621675,11.38664598987666,0.5609131640708342,0.7775665399239544,0.6868489583333334,0.596244131455399,0.1170212765957446,0.7444717444717445,0.9080779944289692,0.8860103626943006,0.8015564202334631,0.1598173515981735,0.4962492787074437,0.70995670995671,0.62,0.530940594059406,0.105521472392638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0049382966425666,0.0071149454453184,0.0090936801463117,0.0113634051557508,0.0138200038700084,0.0159578264726575,0.0181545279107998,0.0202518180609395,0.0223999836122662,0.0242964391204463,0.0263831098782555,0.0282900423990449,0.0302689889724827,0.0322457447796781,0.034371154701217,0.0363551643800155,0.0383414097601975,0.0405488280234915,0.0426074820863189,0.0568464123922256,0.0705137595479753,0.0837275654809981,0.0964037854889589,0.1083229656495793,0.1237507006652353,0.1361162102225099,0.1467706203135651,0.1584251530923042,0.1690774084168508,0.1819886620826417,0.1942065082029346,0.2054949600505083,0.2160582343604619,0.2255887436831848,0.2353612841717846,0.2449412605529995,0.2541646031245779,0.2625134751773049,0.2697714383914762,0.2779295021640012,0.283841210006907,0.2908194701170671,0.2965412920033134,0.3018548926594903,0.3071431213701772,0.3124264650662127,0.3170663408176773,0.3213544907695498,0.3251323205258503,0.3237556408702094,0.3227802838596105,0.3213637195422362,0.3205411414793318,0.3191530374697884,0.3172077525067253,0.3143470573377115,0.3157584490437516,0.3155946084285958,0.3166708233868956,0.3173335826477187,0.3193466295792152,0.3197432520019235,0.3200044652824291,0.321898722014029,0.3239330260656719,0.3242275221012536,0.3268439727446855,0.3311756842327447,0.33572339069471,0.3392580439340078,0.3408910314138899,0.340723527195076,0.3410882085480448,0.3413251556546789,0.3434848308729513,0.3474360891015099,0.3480814408770556,0.3504273504273504,0.3547904191616766,0.0,2.359659322669939,53.28234586684,176.62035664043285,257.844860634696,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95492,45306,430.75859757885473,5901,60.44485401918485,4661,48.22393498931847,1861,19.04871612281657,77.22623088476638,79.71342638921287,63.24095407219974,65.0761424298526,76.99415157358193,79.48450449810332,63.153670866796624,64.99279146346394,0.2320793111844494,228.9218911095503,0.0872832054031178,83.35096638865025,154.76318,109.03718681755316,162069.262346584,114184.62993502404,393.24256,258.79581416607755,411214.4053952164,270420.67834591115,381.9989,186.1547568384844,397224.3329284129,192610.9045270852,2652.99436,1235.062454512793,2743081.724123487,1258211.8863494252,1081.51015,488.4103326138053,1113445.6080090478,492356.9076088109,1814.6717,770.8893759056991,1858881.3932057132,771799.3886714325,0.38204,100000,0,703469,7366.784652117454,0,0.0,0,0.0,33935,354.7627026347757,0,0.0,34874,362.2921291835965,1586399,0,56892,0,0,0,0,0,67,0.7016294558706488,0,0.0,2,0.0209441628618104,0,0.0,0.05901,0.1544602659407392,0.3153702762243687,0.01861,0.3421733505821475,0.6578266494178525,24.36806631516022,4.32015940198255,0.3186011585496675,0.240506329113924,0.2242008152756919,0.2166916970607166,11.250603092347324,5.910140245692517,19.930686581910862,12190.511879112844,53.10744630794823,13.348900636208375,16.88588553801657,11.699465743282673,11.173194390440598,0.553743831795752,0.7876895628902766,0.6828282828282828,0.5559808612440191,0.1019801980198019,0.7276923076923076,0.9476309226932668,0.8388625592417062,0.6848249027237354,0.1636363636363636,0.4864623623921452,0.6986111111111111,0.6208842897460018,0.5139593908629442,0.0848101265822784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0048890827391035,0.0072694783438585,0.0095271987798678,0.0119522723570614,0.0140039749273811,0.016163430239084,0.0182494431160975,0.0203791420708563,0.0226634700108604,0.0249835769420266,0.0270923298375488,0.0291613036091232,0.0309934403234456,0.0326806839902877,0.0346526965326596,0.0366278707910624,0.0386998191305794,0.0408501328332552,0.0426873838314224,0.0573193070602397,0.0704191365472381,0.0837715054894207,0.096272015346185,0.1086451067427605,0.124128135003922,0.136251023424458,0.1480260349978659,0.1592956373646383,0.1696729946466579,0.1826024986232736,0.1949819933180023,0.2067713444553484,0.2166686766140791,0.225451576241076,0.2353751778093883,0.2454436625233551,0.2544140528107876,0.2622413812713975,0.2699132311082545,0.2770638584120062,0.2839386015314438,0.2903130116993759,0.2961841235502674,0.3014089313572543,0.3069026504891593,0.3111946113052002,0.3161452742421919,0.3204366755474689,0.3252731245447924,0.3242545484036657,0.3230900790312125,0.3225305592411709,0.3207631776890586,0.3201090113032211,0.3185496874856028,0.3173861939705835,0.3181563693847978,0.3192696725527173,0.3197893152746426,0.3208075117370892,0.32210205213533,0.3225745524752891,0.3240054624012178,0.3250666858914282,0.3250958004223039,0.3275670438029012,0.3316348996666037,0.3358730381657947,0.3386661373560937,0.3401803607214428,0.3448969863884328,0.3464640780341399,0.3474238435502068,0.350244442394613,0.3524418604651163,0.3587253414264036,0.35880195599022,0.3646348160351455,0.3629770992366412,0.0,2.205190842148087,57.08010797141223,171.65693791311142,252.1297058517173,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95708,45194,428.28185731600286,6062,62.168261796297074,4740,48.93007899026205,1855,18.963931959710788,77.36399481233721,79.74730321011836,63.33329461681414,65.09668979800554,77.12982085885616,79.51785871321017,63.24593464041977,65.01412875986188,0.2341739534810472,229.44449690818655,0.0873599763943744,82.56103814366611,154.87846,109.01247624402134,161823.02419860408,113900.2129874424,393.05423,257.7704031552051,409999.7596857107,268650.0353932848,378.61672,183.6771793563111,392237.25289422,189253.9569024724,2745.48516,1248.299878245782,2834859.4474861035,1270582.687179528,1178.29927,520.0923666582652,1214090.2432398545,526416.4875144243,1825.81362,766.8479549464251,1868611.3804488648,766786.7970883284,0.38101,100000,0,703993,7355.592009027458,0,0.0,0,0.0,33844,352.979897187278,0,0.0,34559,357.73394073640657,1597545,0,57312,0,0,0,0,0,66,0.6791490784469428,0,0.0,1,0.0104484473607221,0,0.0,0.06062,0.1591034356053647,0.3060046189376443,0.01855,0.329654737505912,0.670345262494088,24.73490996325334,4.486190423876192,0.3181434599156118,0.230590717299578,0.220675105485232,0.230590717299578,11.238383041384848,5.66343341265468,19.66378244795225,12180.787610101568,53.30348650750058,12.948416575539907,16.891982078446958,11.55612520054589,11.906962652967811,0.5540084388185654,0.7795059469350412,0.6843501326259946,0.5717017208413002,0.131747483989021,0.720164609053498,0.9104859335038364,0.8753462603878116,0.7268722466960352,0.1610169491525423,0.4967375886524822,0.7065527065527065,0.6242371403661726,0.5286935286935287,0.1236872812135355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023707966484635,0.0044317340553916,0.0071570697636644,0.0095534280545561,0.0118236024339119,0.0140085987326038,0.0161369292912807,0.0181379958331631,0.0204146338968835,0.0227116804390788,0.0247349098590971,0.027092811880578,0.0292840979222382,0.0312519319938176,0.0333243890356671,0.035267478649269,0.0370945854957166,0.0391005219629126,0.0411642411642411,0.0430728195296789,0.058223326927897,0.0715721163910404,0.0853623994209162,0.097894670424431,0.1098005734041656,0.1250660802266816,0.1367660937152067,0.1480969299831925,0.1588538608534124,0.1682725801438355,0.1811695579182988,0.1931917747466115,0.204332412623154,0.2142365022254787,0.2240239381304936,0.2339537407132655,0.2438839370377394,0.2529917221522404,0.2622560145256468,0.269885615489426,0.2772013833466347,0.2833272920734773,0.2902183561157465,0.2957121971095079,0.3010093158271896,0.3068880158622643,0.312145090681676,0.3166922910763523,0.3205625355462489,0.3247652783081602,0.3245036670875534,0.3230788238201136,0.3221051152332771,0.3215336255623486,0.3208665500992798,0.3191021865511085,0.3174345475466166,0.318682754004147,0.3193908594931761,0.3213517118719431,0.321955047362816,0.3224827586206896,0.3235441557356504,0.3236805648657103,0.3246750131913464,0.3262348494721752,0.3276501111934766,0.3313979034586655,0.3343747805939759,0.3347993185149966,0.3366777137149861,0.3397283441678558,0.3418479974771365,0.3413068398930072,0.3468054898248935,0.3476441042812724,0.346493265211333,0.3438013136288998,0.3513815238626849,0.3545631067961165,0.0,2.2401498176060928,53.179260057694336,173.76532806078134,269.2042737540569,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95670,44902,425.1698547088952,6150,63.081425734294974,4778,49.36761785303648,1854,19.02372739625797,77.31725194233033,79.72476472519172,63.30264576078415,65.08475756125151,77.0830554737273,79.49299132649634,63.21458064522492,65.00038590321152,0.2341964686030309,231.7733986953812,0.0880651155592318,84.37165803998425,155.92192,109.64983796769776,162978.67670116024,114612.33883944571,393.66265,258.30371688324146,410909.7000104526,269424.7418033255,376.3755,182.9246833839652,389817.4035747883,188444.94425321065,2735.55548,1259.435394459432,2826337.1171736177,1283433.2961842073,1123.14186,500.95905446545606,1157917.7276053098,507575.0856751914,1817.945,772.7370235485697,1865479.690603115,776295.8570226433,0.38017,100000,0,708736,7408.121668234556,0,0.0,0,0.0,33977,354.5521061983903,0,0.0,34492,356.9980140064806,1589732,0,57057,0,0,0,0,0,63,0.658513640639699,0,0.0,0,0.0,0,0.0,0.0615,0.1617697345924191,0.3014634146341463,0.01854,0.3342105263157894,0.6657894736842105,24.58291639071106,4.337906642079314,0.3200083717036417,0.2427794056090414,0.2178735872750104,0.2193386354123064,11.146750736550285,5.677785529666142,19.906003318106496,12220.017846224144,54.33514605425256,14.008647650265058,17.243416470311857,11.52607548643194,11.557006447243706,0.5602762662201758,0.7836206896551724,0.670372792674951,0.6032660902977905,0.1097328244274809,0.7095310136157338,0.906318082788671,0.830238726790451,0.7377049180327869,0.1198347107438016,0.5031828703703703,0.703281027104137,0.6180555555555556,0.562107904642409,0.1066997518610421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021680326623238,0.00439081275668,0.0066168038401818,0.0089930799012285,0.0110291499211476,0.0134053173067128,0.0158835411013404,0.017979731938542,0.0202369503386466,0.0226520638888604,0.0245719151730293,0.0267990176433716,0.0290181788236262,0.0310950274762096,0.0330290010741138,0.0350025866528711,0.0371844710516767,0.0391002274355858,0.0412227401365074,0.0433037622358668,0.0579342193246405,0.0721653803055849,0.0852685507915844,0.0978019549869001,0.1101838859759249,0.1264075861485056,0.1387131697376241,0.1492017509292492,0.1598225737494656,0.1695955369595537,0.1829150059248087,0.1957474910413666,0.2072249553746353,0.217799671592775,0.2275400951709552,0.2379152487890309,0.2475586754907759,0.2558830146231721,0.2646641786812164,0.2723120249107061,0.2792521807538351,0.2864108890629933,0.2925183756080817,0.2978608664389718,0.3026635559443958,0.3078051968872939,0.3119405040628012,0.3164964320693997,0.3208765889144899,0.3254050918296043,0.3241367250030266,0.3225930609776213,0.3214637302056085,0.3208383250819128,0.319278631004594,0.3177190346223435,0.316084403146914,0.3172177167810355,0.317775350694563,0.3183746212796293,0.3191357909123247,0.3208362947168917,0.3209959341073898,0.320398766149582,0.3229048663501169,0.3247088924860321,0.3247955782216017,0.3269725692046952,0.3290562333473566,0.3335972134262191,0.3349580903790087,0.3371734975578679,0.341710758377425,0.3435592185592185,0.3469924812030075,0.3446487505893446,0.3504980842911877,0.3520728008088978,0.3502961766289714,0.3522130532633158,0.0,2.226879907316908,58.09410934798391,176.98025005963638,257.55193775358765,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95856,45342,429.112418627942,6014,61.51936237689869,4773,49.209230512435326,1893,19.36237689868136,77.4717338221379,79.75781393921204,63.40399372213196,65.09039412903337,77.23386916936822,79.52248170697236,63.31531843097654,65.00543587175872,0.2378646527696872,235.3322322396849,0.0886752911554182,84.9582572746499,156.2715,109.91711727877887,163027.35353029546,114669.00066639423,396.58896,260.66347079852466,413170.19278918375,271368.43890682334,381.72014,185.66323678676545,394818.9576030713,191081.8157173117,2751.72684,1272.4428990596018,2837288.432648973,1294254.6539207352,1181.64745,524.3419446853131,1220099.399098648,534433.8711681897,1855.01716,783.8883786751577,1899095.580871307,787075.2454332339,0.38266,100000,0,710325,7410.334251377066,0,0.0,0,0.0,34194,356.1383742280087,0,0.0,35022,361.9074445000835,1590111,0,57033,0,0,0,0,0,63,0.6572358537806711,0,0.0,0,0.0,0,0.0,0.06014,0.1571630167772957,0.3147655470568673,0.01893,0.3381351907551053,0.6618648092448948,24.18708610822692,4.355267861504851,0.3079824010056568,0.2352817934213283,0.2331866750471401,0.2235491305258747,11.232379825102395,5.800796291329596,20.18297354145092,12171.793018550095,54.14173511880357,13.367188850505237,16.585083241478163,12.541688954964528,11.647774071855638,0.5610727006075843,0.7791629563668745,0.689795918367347,0.5992812219227314,0.1143392689784442,0.7255496588324488,0.9288990825688074,0.8482384823848238,0.7132616487455197,0.1702127659574468,0.4982628836132021,0.6841339155749636,0.6366939146230699,0.5611510791366906,0.0985576923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022674359753011,0.0046803294465662,0.0068344521284146,0.0088205440519691,0.0112490854402081,0.0134707540162992,0.0153817944747779,0.0175134385295647,0.0200457488307497,0.0220076904197005,0.0244474487392203,0.0262960873801343,0.0285071499013806,0.030630723325445,0.0326560905464328,0.0348099958694754,0.037041634341867,0.0389893043694552,0.041056631985546,0.0431683127100916,0.0576758639387682,0.0717466755875219,0.0855576864631475,0.0978459598613008,0.1095581414959102,0.1252444942537242,0.1369762780882493,0.1483573769096557,0.1586538974835314,0.1693229440198926,0.1815961087316789,0.1937788441792851,0.2050733529520355,0.2157402251411226,0.2254283831282952,0.2355340836226148,0.2452128192846242,0.2545703633831918,0.263345074809437,0.2709507746841232,0.2787636674325432,0.2857359476514294,0.2919618399924436,0.2970616725863739,0.3024415092966561,0.3071745015998031,0.3123493035167718,0.3160474388602484,0.3201860945980873,0.3236231044650379,0.3230080765457648,0.3222149104768172,0.3210164256633441,0.3195877772500252,0.318963092365316,0.3170579172958709,0.314615420995381,0.3156853770963418,0.316093712809004,0.3172208119574672,0.3178479549606651,0.3198443426819441,0.320426791147418,0.3220553887220554,0.323585626911315,0.3258103801207473,0.3260967887833559,0.3279306797992706,0.331417093780302,0.3344699196551048,0.3372844827586206,0.3408803706823926,0.3444904099285445,0.345797233622131,0.3473584905660377,0.3476604357661626,0.3413146255909715,0.3458601286173633,0.3402399127589967,0.3356086461888509,0.0,2.2679034658919006,57.678602998308335,179.22754873457058,253.2763013505072,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95732,44973,425.8868507917937,6011,61.48414323319266,4691,48.33284586136297,1871,19.14720260727865,77.34438518034166,79.69602705322555,63.33412346583962,65.07181034705722,77.11561535108542,79.46965458790707,63.24979788388402,64.99071870486509,0.2287698292562368,226.37246531847663,0.0843255819555963,81.09164219213483,155.79102,109.65678518915632,162736.61889441358,114545.59101361752,394.17042,258.69225793789167,411088.24635440606,269570.0893514098,376.54538,183.2865755826839,387887.0492625246,187377.6942348889,2707.4168,1239.9377884945357,2793310.2828730205,1260406.9574379886,1141.78426,505.5602922004699,1179533.9907241047,514964.8448334034,1836.88632,761.678139258263,1883283.416203568,766994.2086902478,0.38117,100000,0,708141,7397.119040655162,0,0.0,0,0.0,34022,354.69853340575776,0,0.0,34393,354.04044624576943,1589846,0,57066,0,0,0,0,0,78,0.7938829231604897,0,0.0,0,0.0,0,0.0,0.06011,0.1576986646378256,0.3112626850773581,0.01871,0.330575882914413,0.669424117085587,24.6628367894956,4.35027867512321,0.3231720315497761,0.2334257088040929,0.215732253250906,0.2276700063952249,11.097837770327684,5.719782130254519,19.810114513183237,12154.49165335632,53.21186380855215,13.103854941633,17.161513778585824,11.1955741930467,11.75092089528661,0.5634193135791942,0.7726027397260274,0.6985488126649076,0.599802371541502,0.1226591760299625,0.7380191693290735,0.914004914004914,0.8743718592964824,0.7424892703862661,0.1448598130841121,0.4998546088979354,0.688953488372093,0.6359570661896243,0.5571245186136072,0.117096018735363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00213727158543,0.0042176553486155,0.0063819641027201,0.0087951819465179,0.0110315798035667,0.0131829425956654,0.0155214936507612,0.0180009184142048,0.0203124521053223,0.0227054128721989,0.0249815558652348,0.0269626710184643,0.0289947459875178,0.0311219130398961,0.032989818339368,0.0350525478200663,0.0370558218008301,0.0390442709143514,0.0410093325850637,0.0430697761621548,0.0576579774295587,0.0716513185433235,0.0850927703134996,0.0975971397024028,0.1094603429005251,0.1249682794789375,0.1367348237390234,0.1474956381122601,0.1579413900636507,0.1675350013936236,0.180740788581393,0.1928871967378019,0.2045966014720431,0.2149743141326921,0.2238522021223951,0.2347380422630314,0.2448312412831241,0.2548605098334664,0.2628880596168461,0.2707031160565057,0.2778368876347319,0.2841788880312492,0.2901149860407893,0.2953329975777634,0.3009377353448485,0.305372604158958,0.3102536799248356,0.3152838650494343,0.3201404818371499,0.3240987719529909,0.3231674476221253,0.3223374693922469,0.3209586068922764,0.3193715764066542,0.3193732066663693,0.3185679239497087,0.317043003932513,0.317505664466555,0.3184241098886079,0.3193445315149676,0.3207504774744411,0.3216520897909222,0.3232866957104557,0.3231812383914785,0.3235202004384591,0.324202460383653,0.3241241811449729,0.3264240556097254,0.3305509767474485,0.3325654367081066,0.3349393209399572,0.3376147762857597,0.3380847723704867,0.3423274042809768,0.3422159887798036,0.3447829667097988,0.3498470948012232,0.3512625744200369,0.3534626038781163,0.3491879350348028,0.0,2.569815597600796,54.41225153430714,177.33503601988065,255.78044960983175,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95672,45178,427.4709423864872,6057,62.04532151517686,4742,49.000752571285226,1886,19.28463918387825,77.28108161739658,79.66857315595225,63.29287913429015,65.05577602322033,77.04869456368318,79.43852343712722,63.20727410421213,64.97379234448276,0.2323870537133956,230.049718825029,0.0856050300780211,81.98367873757206,154.14608,108.48527445812026,161119.32435822394,113392.92003733615,392.10523,257.0077158739001,409292.9801822895,268083.9387426835,380.06794,184.536844071892,393998.76661928254,190274.5680233537,2728.14876,1247.4927772671736,2820492.934191822,1272855.1898854135,1130.58919,504.6546330836953,1164923.9798478133,510673.46045205946,1847.85828,769.6340379168745,1891965.4862446692,771323.3601176083,0.38064,100000,0,700664,7323.605652646543,0,0.0,0,0.0,33817,352.8932184965298,0,0.0,34606,358.3911698302534,1595559,0,57301,0,0,0,0,0,84,0.8779998327619366,0,0.0,1,0.0104523789614516,0,0.0,0.06057,0.1591267339218159,0.3113752682846293,0.01886,0.3468809073724007,0.6531190926275993,24.545339259576448,4.3971541197772686,0.321383382539013,0.233024040489245,0.2165752846900042,0.2290172922817376,11.2909973975635,5.820027662470546,19.942424404479677,12235.54792704221,53.86264131901402,13.2909836560328,17.24670054790012,11.442469765162333,11.882487349918764,0.5619991564740616,0.7936651583710407,0.7034120734908137,0.5881207400194742,0.1031307550644567,0.7482732156561781,0.9447115384615384,0.8980582524271845,0.7478632478632479,0.1535269709543568,0.4914219249781913,0.7024673439767779,0.6312949640287769,0.5409836065573771,0.0887573964497041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312414526667,0.0048459534261296,0.0071952667525903,0.0094076053275898,0.0115127229827309,0.0138181744124475,0.0157636070722107,0.0178359946093845,0.0200971121901354,0.0222315479175836,0.024566548071895,0.0269004887264364,0.0291341011929247,0.0311057533794922,0.0332325348580392,0.0353191753344775,0.0373316759892272,0.0394710894767978,0.0417641857804129,0.0437565144882218,0.0578691127920096,0.0719566082385709,0.085809654767028,0.0987899831649831,0.1114510904544351,0.1265738409124574,0.1389578954073508,0.1500607145139643,0.1600603073106575,0.1703068960333311,0.1827535997411422,0.1950429165944165,0.2060703745249011,0.2172741905460597,0.2268936263978405,0.2372988499373398,0.2476390580819652,0.256605771180141,0.2646290194296102,0.2722061066076567,0.2791993420519176,0.2855067710041704,0.2917625020747872,0.2973871905093537,0.3026214950428806,0.3073174342714027,0.3124686779593064,0.3169137045486407,0.3213581655945217,0.3257840181923951,0.3242444684295736,0.3225935423387652,0.3224242938092613,0.3210559870175032,0.319853379425438,0.3177402274506192,0.3160689939440058,0.3164338253443254,0.3167457232392074,0.3177820677820678,0.3187246507435782,0.3204573424907698,0.321474433193693,0.3216869635554756,0.3230483001908812,0.3233956939799331,0.3260596007550191,0.3301967223467744,0.334024458813607,0.3370001191374449,0.342038100446632,0.344889832758163,0.3488401412002017,0.3508904888215233,0.3521535580524345,0.356225181032469,0.3646071700991609,0.3643488745980707,0.3678938819707634,0.372021521906226,0.0,2.236240948548377,57.41434069932059,172.01333910952872,260.78615684511925,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95732,44880,424.5288931600719,6071,62.27802615635315,4765,49.252078719759325,1938,19.89930221869385,77.3612597271838,79.72712554742861,63.34108899169471,65.08925390271634,77.12054297688192,79.48627912647187,63.25145846874226,65.00188492450307,0.2407167503018854,240.8464209567427,0.0896305229524543,87.36897821326295,155.76286,109.58732226634515,162707.20344294488,114473.0312396536,394.77328,259.84071062839286,411877.136171813,270928.89590564586,382.70276,187.252804740158,396489.7108594827,193045.5558701637,2733.83824,1266.8752347800844,2827982.2003091965,1295617.886161456,1101.70661,490.9639399503031,1139462.6457192996,501491.361248384,1890.49872,796.6370941887582,1943295.6796055653,804835.0195812425,0.37937,100000,0,708013,7395.781974679313,0,0.0,0,0.0,34125,355.93114110224377,0,0.0,34970,362.03150461705593,1589086,0,57028,0,0,0,0,0,57,0.5954121923703672,0,0.0,1,0.0104458279363222,0,0.0,0.06071,0.1600284682499934,0.3192225333552956,0.01938,0.33449037551278,0.66550962448722,24.585783526628976,4.250933090481922,0.3250786988457502,0.2310598111227702,0.2287513116474291,0.2151101783840503,11.011037819825129,5.742544324752916,20.73369258623912,12127.929075356444,54.1417615832811,13.16438001072617,17.472594434233276,12.178491354890122,11.326295783431538,0.5588667366211962,0.7865576748410535,0.6726920593931569,0.5779816513761468,0.1219512195121951,0.7213740458015268,0.9048780487804878,0.8553299492385786,0.7017543859649122,0.167420814479638,0.4972503617945007,0.7163531114327062,0.6103896103896104,0.5341614906832298,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0048361586503366,0.0069817945647541,0.0095396775406122,0.0118173497406691,0.0141748640557218,0.0163563314502477,0.0185531219686526,0.0207244880223296,0.0229422604422604,0.0249248972142761,0.027114466183947,0.0290030957205006,0.0314196532506464,0.0334757393763028,0.0355529365547043,0.0375812932355743,0.0395379969490364,0.0412719539966932,0.0433020411140169,0.0575736376640598,0.0712999790663596,0.0847258499333899,0.0980010725439269,0.1105337493148952,0.1260332762520876,0.1376399728537495,0.1486407405437037,0.15861317610869,0.1688837912294054,0.1813522825150732,0.1940700517058607,0.2053509305966255,0.2156191933544649,0.225559281042159,0.2361755104299231,0.2452030816228691,0.2540955976538798,0.2621454965881526,0.2695464066201971,0.2761841998774467,0.2825891344232409,0.2885293213162065,0.294089472171664,0.3000667030501485,0.3053860538359332,0.3095455283841703,0.31415422948819,0.3185760517799352,0.3223188482297206,0.3209398086472084,0.319541019650955,0.3185067402133228,0.316541255650717,0.3151248644392613,0.3126263554493659,0.3113828340029738,0.312708124866718,0.3143666587022562,0.3151467542669428,0.3167578505583452,0.3176489226869455,0.3180874053248851,0.3185856551415463,0.3191791709819601,0.3198357268042585,0.3212731852530341,0.323823966132752,0.3274174237622367,0.3317529880478088,0.3328324910076037,0.3399598181241408,0.3427356307461379,0.3429198516612427,0.3495245198582882,0.3518889019653995,0.3563708326990409,0.3638203156616754,0.3712206047032474,0.3763052208835341,0.0,2.058986067343753,57.35351890567541,180.66358813654807,253.70338879130728,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95659,44978,426.358209891385,5910,60.72612090864424,4587,47.44979562822108,1779,18.304602807890525,77.2430810454354,79.64816863711269,63.27207635196621,65.05048911383892,77.02194853950904,79.42693483456532,63.19077683674824,64.97149768846684,0.2211325059263629,221.23380254737413,0.0812995152179709,78.99142537208093,155.3706,109.39994634982465,162421.30902476504,114364.50971662324,394.25319,259.50164147834096,411622.63874805294,270757.44874468347,378.82826,184.20697627670452,392747.7916348697,190083.10284164923,2630.60152,1198.6987217953367,2722990.9156482923,1226157.284057516,1066.71578,467.9592864474026,1103576.4434083567,477694.3885953116,1749.49942,725.1833026012832,1801468.717005196,733253.5221000114,0.37891,100000,0,706230,7382.786773852957,0,0.0,0,0.0,34092,355.84733271307454,0,0.0,34612,358.61758956292664,1585407,0,56858,0,0,0,0,0,67,0.6899507626046686,0,0.0,0,0.0,0,0.0,0.0591,0.1559737140745823,0.3010152284263959,0.01779,0.3340332741075755,0.6659667258924244,24.550403717180732,4.486717093719909,0.3270111183780249,0.2317418792238936,0.2204054937867887,0.2208415086112927,11.119984695745648,5.449941488190207,18.8471950833093,12099.674997217257,51.91627551933488,12.955186913218247,16.861941198128193,11.084880520651751,11.0142668873367,0.5498146936995858,0.7920978363123237,0.6613333333333333,0.5657764589515332,0.1145113524185587,0.7448389760528489,0.9301204819277108,0.8489583333333334,0.7453703703703703,0.1479591836734693,0.4798578199052132,0.7037037037037037,0.5967741935483871,0.5169811320754717,0.1064871481028151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002533646829901,0.0045341123486093,0.0065277199679197,0.0087178288745059,0.0109446360094799,0.0134426396456031,0.0155493244965587,0.0176645972880248,0.0201141197643979,0.022518278821144,0.0244998000225615,0.0268030438399211,0.0288361665586853,0.0310085505305449,0.0330088870080406,0.0349912108365215,0.0371268154225454,0.0391302091442212,0.0409918765147023,0.0427335279399499,0.0565848459199348,0.0710687014905049,0.085259842519685,0.098026419662123,0.1098372078292265,0.1249126595947405,0.1363375613487156,0.1476573743403869,0.1588796045663175,0.1690488718978533,0.1809256661991584,0.1925319748536744,0.2038813804820143,0.2149865311754013,0.2248156842000859,0.2342226413001275,0.2439831427389695,0.252743909310135,0.261314300002273,0.2687126692423217,0.275166852057842,0.2816151162518439,0.2875497347480106,0.2932469713326136,0.2989843702487381,0.3046660002714943,0.3096792790986226,0.3136480095856012,0.3179571022616684,0.3226254213761649,0.320965524677215,0.32060017895244,0.3195966433960933,0.3177924408172715,0.3170023670224643,0.3156457994663068,0.3142172726695856,0.3148852135275241,0.3162947498117598,0.3176375838926174,0.3177867248645394,0.3177033682872577,0.318285942458441,0.3174752708431465,0.3182344149269562,0.3201330504701291,0.3203111544864803,0.3240775840283043,0.3260861892492853,0.3309819639278557,0.3372296364473078,0.3407875026749412,0.3460953346855984,0.3486252584820403,0.3480783866057839,0.3532000951701166,0.3589424572317263,0.3590376310919185,0.353726362625139,0.3502715283165244,0.0,1.9091573713155423,53.30337033928326,168.3310419682896,258.0584132505147,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95833,45289,428.92323103732537,6078,62.44195631984807,4733,48.960170296244506,1862,19.200066782840985,77.44904619750217,79.7750068747065,63.38601454967061,65.10665161960937,77.22462517934278,79.54824201894483,63.30379651226647,65.02504797046787,0.2244210181593899,226.7648557616724,0.0822180374041394,81.60364914149909,155.8513,109.6222436341704,162627.77957488547,114388.59644816552,393.82404,258.1565055787791,410478.0190539793,268922.3280930007,375.02917,181.5989158127257,388231.9764590486,187112.35556573755,2700.1636,1223.6665502387134,2794145.357027329,1254015.2902467782,1112.45025,488.46317879749176,1149248.5156470109,498169.731480063,1828.36246,759.2728098345433,1885591.831623762,774309.2607723239,0.38262,100000,0,708415,7392.1717988584305,0,0.0,0,0.0,33998,354.282971419031,0,0.0,34221,354.12644913547524,1597338,0,57229,0,0,0,0,0,63,0.6365239531267934,0,0.0,0,0.0,0,0.0,0.06078,0.1588521248235847,0.3063507732806844,0.01862,0.3328625235404896,0.6671374764595104,24.872730127146216,4.378824378669334,0.3093175575744771,0.234946122966406,0.2294527783646735,0.2262835410944432,11.017475666507757,5.595498362342045,19.645627376546987,12230.84907484193,53.124325481880994,13.13098226109214,16.45232369926672,11.88254646691074,11.658473054611392,0.5467990703570674,0.7508992805755396,0.694672131147541,0.5598526703499079,0.1195144724556489,0.7368852459016394,0.9206349206349206,0.8564102564102564,0.7787234042553192,0.1566820276497695,0.4807856532877882,0.6634877384196185,0.6359404096834265,0.4994124559341951,0.1100702576112412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.00468308110245,0.0069404279930595,0.0094269664062738,0.012050398120748,0.0143565515766751,0.0164656464422988,0.0187182967778809,0.0211037301992846,0.0232167889410729,0.0252497822411231,0.0272885878489326,0.0292043585526315,0.0311962688027016,0.0331060942028238,0.0349294901596156,0.0368346425725256,0.0388515615279333,0.0408095416199143,0.0429097874289521,0.0574441674403079,0.0714681498363843,0.0847001121369957,0.0972957639939485,0.1102377139003624,0.1253249635406759,0.1376389904707391,0.149560834520746,0.159992319344584,0.1700359773856433,0.1834525025536261,0.1955195022629322,0.20741609135513,0.2170772688589696,0.227457824316463,0.2375921403074475,0.2463116168758142,0.2556894694317264,0.2639376174200412,0.2721021611001964,0.2786542789543539,0.2855509804150287,0.2910806984426616,0.296538374218834,0.3017999467041353,0.3076998685358332,0.3123028391167192,0.3169009621113209,0.3215064445791993,0.3243516778170633,0.3239143845720569,0.3229769380535827,0.3224475475405234,0.3214347425411819,0.3208370304643596,0.319125916218399,0.3174143601202184,0.3188472020497087,0.3195710091805392,0.319755889866591,0.3198934247545229,0.320837753939251,0.3219752262584977,0.3226661912508635,0.3243256192803411,0.324224213852769,0.3256757140020987,0.3304692870086859,0.3333566629339305,0.3381964433579117,0.3420575161026943,0.3437748449674034,0.3452523094325394,0.3502726446531354,0.3488699240363875,0.3513481690804191,0.354951397326853,0.3614262560777957,0.361247947454844,0.3673084182710456,0.0,1.5457356662204025,54.15981092279987,172.14480639031638,267.8745081326855,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95807,45344,429.2588224242488,5956,60.94544239982464,4660,48.05494379325101,1840,18.871272453996053,77.3497797498425,79.68305360629618,63.33168066437421,65.05996982758158,77.12409374607554,79.45881767152994,63.24846676665897,64.97983814679274,0.2256860037669525,224.23593476624148,0.0832138977152396,80.13168078883837,155.6082,109.44871762410888,162418.40366570294,114238.74834209283,392.02219,257.5670466995987,408620.91496445984,268281.3329919512,383.67246,186.86028491181173,396439.6442848644,192056.73107686057,2682.87476,1235.38095477498,2767890.070662895,1257046.5986566534,1097.29802,487.0899733582178,1134544.3756719236,497630.5315459385,1801.10848,753.0665959236087,1848461.3232853548,756938.5769719526,0.38155,100000,0,707310,7382.654712077406,0,0.0,0,0.0,33813,352.3333368125502,0,0.0,34955,360.8713350799002,1590791,0,57164,0,0,0,0,0,67,0.6888849457764046,0,0.0,0,0.0,0,0.0,0.05956,0.1561001179399816,0.3089321692411014,0.0184,0.3311866044115279,0.6688133955884721,24.40303846237161,4.425236100101542,0.3354077253218884,0.223175965665236,0.2218884120171673,0.2195278969957081,11.219598902904911,5.650671083769981,19.53964471533344,12227.670134878108,52.878535653456666,12.436070412424918,17.600962199328684,11.530507499138729,11.31099554256435,0.567381974248927,0.8125,0.6948176583493282,0.5686653771760155,0.1221896383186705,0.7384370015948963,0.9325,0.8779904306220095,0.6681222707423581,0.1594202898550724,0.5044039929536113,0.7375,0.6279475982532751,0.5403726708074534,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020463156188585,0.0042888864104149,0.0067083443278462,0.0090115717928659,0.0113009866748041,0.0136041953057379,0.0158849918433931,0.018108877841634,0.0203603953514519,0.0224669648614622,0.0245512603663724,0.0266646131731608,0.0288622692920672,0.031076878719855,0.0332250244984269,0.0351928581023134,0.0374192613448161,0.0392490405559589,0.0410298502810477,0.0432288358824325,0.05750412085046,0.0719513980383545,0.0852872430744075,0.0982566021080507,0.1106778106851885,0.1259026654402047,0.1374460366791476,0.1486755425007715,0.1598863599953006,0.17001287001287,0.1827378900189622,0.1948400502142764,0.206354558705158,0.2167349838771383,0.2266332266332266,0.2367415219968315,0.2458824317086234,0.2548075841748948,0.2643868566760461,0.2724431265241633,0.2800666219436026,0.2866595742193437,0.2927114875094625,0.2980832545165036,0.3039188319963105,0.3094980181688372,0.3144103166470897,0.3188462907408349,0.3230741377749615,0.3268495318475537,0.3253065564723459,0.3242975343144678,0.3226279223798988,0.3209213440852431,0.3200404436910816,0.3185050108798921,0.3161579522595156,0.3168576964760747,0.3180388940155166,0.3182386790092569,0.319843293094399,0.3197562857312417,0.3208048913271075,0.3211533736850334,0.3223164316767948,0.3232107511199083,0.3232024564296477,0.327706088699574,0.3308226104543711,0.3313136876893418,0.3344049990943669,0.3369915053025906,0.3430294653515109,0.3422378262860632,0.3435386927122464,0.3485008818342152,0.3509549274255156,0.3536266827406067,0.3564437194127243,0.3637065637065637,0.0,2.2337181894170977,54.899739137021015,176.814146179761,251.1813056676344,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95789,45419,429.9763020806147,6111,62.60635354790216,4788,49.29584816628214,1929,19.65778951654157,77.41775944651599,79.74267624395014,63.37436231324406,65.09376311594929,77.18367116823056,79.51397026255147,63.28809558453145,65.012369862314,0.2340882782854265,228.70598139867585,0.0862667287126157,81.39325363528371,156.43254,110.0130059515938,163308.81416446564,114848.68170487836,397.78157,261.0212606491732,414517.282777772,271748.90186582215,383.9972,186.6222942100684,396179.5195690528,191269.29915880383,2744.82932,1251.0606677076694,2826829.677729176,1267912.3269723991,1153.0522,508.2246230586927,1182684.3165707963,509879.4244553803,1882.32062,773.4586431904316,1920231.6758709247,770827.9665643687,0.38315,100000,0,711057,7423.12791656662,0,0.0,0,0.0,34272,357.01385336520894,0,0.0,34989,360.6259591393584,1588917,0,57030,0,0,0,0,0,81,0.835168965121256,0,0.0,1,0.0104396120640157,0,0.0,0.06111,0.1594936708860759,0.3156602847324496,0.01929,0.3341645885286783,0.6658354114713217,24.877326504513505,4.391973638272405,0.3201754385964912,0.2449874686716792,0.2157477025898078,0.2190893901420217,11.595854160209242,6.186993994479655,20.16869242161297,12275.797372029165,53.74986345634072,13.819119839031856,17.23370805946968,11.340037209006042,11.356998348833152,0.556390977443609,0.782608695652174,0.6823222439660795,0.5624394966118103,0.1134413727359389,0.7413096200485044,0.917910447761194,0.8631840796019901,0.7316017316017316,0.1584158415841584,0.4919740918051253,0.7120622568093385,0.6180371352785146,0.513715710723192,0.1027154663518299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0047641734159123,0.0069710099339428,0.0092827689870203,0.0115817945172049,0.014017264546602,0.0163388033839567,0.0187086633461255,0.0208099102598172,0.022730994391452,0.0246924969249692,0.0266891128949475,0.0286689349629431,0.030575687695602,0.0329023344056751,0.0348378434207808,0.0369971747612,0.0390536715842292,0.0408780204026511,0.0432664279170483,0.0578335628730019,0.0717772876004892,0.0854848684969129,0.0985965796882221,0.1109894045036125,0.1270337657947005,0.1392025592678121,0.1504858497586698,0.1609351159291941,0.1708053906969768,0.1835437592755898,0.195702432911283,0.2070425746766995,0.2172033148809329,0.2271523833587836,0.2387716270631444,0.2488240408408944,0.2581333453120262,0.2659485297449141,0.273386395864782,0.280745327264746,0.2872919147346548,0.2936661628566031,0.2993718217170206,0.3043921254685055,0.3096322371012209,0.3143752966747445,0.3181968295904888,0.3224884959412646,0.3263170365689914,0.3249039778679057,0.3245348869163758,0.3240369604658031,0.3234013095272434,0.3219408719386468,0.3199333057990302,0.3177415021886506,0.3185630508141401,0.319654133546663,0.3208584699161817,0.3207229771406142,0.3211469252099353,0.3218503526269666,0.3223287579809125,0.3245622451427201,0.3245301655792675,0.3263776509666979,0.3306825297432686,0.3332517995667062,0.3370608922432528,0.338322674286751,0.3410113846968493,0.3420440982473773,0.3429589207215401,0.3380746043707611,0.3395326657129232,0.3410188502882069,0.3441784325762226,0.343500961802693,0.3510267338240992,0.0,2.472891078055463,53.78414043959547,175.88585434206811,268.78421671803915,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95721,44636,421.66295797160495,6028,61.50165585399233,4729,48.80851641750504,1817,18.59571045016245,77.3893283971574,79.75139527426175,63.35181630130408,65.09404269819603,77.15439284627409,79.51728035967922,63.26378930172267,65.00876016697532,0.2349355508833071,234.11491458253408,0.0880269995814089,85.28253122071305,155.14796,109.06486629791743,162083.51354457226,113940.37494167156,390.96202,257.1742494004146,407859.2053990242,268090.7422617969,373.7391,182.69848143526272,386839.06352837937,188101.4632922409,2719.1128,1258.7032132346526,2807039.249485484,1281345.21498381,1129.63172,502.767783276444,1165501.833453474,510615.302051215,1784.3982,758.1834378367449,1828901.641228153,762179.6358421529,0.37899,100000,0,705218,7367.432433844193,0,0.0,0,0.0,33747,351.9499378401813,0,0.0,34235,354.0393435087389,1596130,0,57250,0,0,0,0,0,78,0.8148682107374557,0,0.0,0,0.0,0,0.0,0.06028,0.1590543286102535,0.3014266755142668,0.01817,0.3351282863477985,0.6648717136522014,24.57378688423219,4.295328781431635,0.3231127088179319,0.2326073165574117,0.216959187989004,0.2273207866356523,11.36896701085349,6.023731630675479,19.40228400744047,12170.35119763426,53.46242719155764,13.164019609535364,17.27044175197084,11.198207104762346,11.82975872528907,0.564389934447029,0.7972727272727272,0.7028795811518325,0.5799220272904484,0.1144186046511628,0.7290715372907154,0.933649289099526,0.8472222222222222,0.7402597402597403,0.1179039301310043,0.5010248901903368,0.7123893805309734,0.6459854014598541,0.5333333333333333,0.1134751773049645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901880753922,0.0048851186313559,0.0070701845145714,0.0093518678350578,0.011569273311374,0.0139038739490666,0.0163867601500081,0.0187343115446623,0.0209365771914945,0.023186566935096,0.0255149093144789,0.0278142569869085,0.0299630086313193,0.0318991250643335,0.0337231606955015,0.0357655860864533,0.0378805917613077,0.0399132861039944,0.0417822955317888,0.0436680312926445,0.0583806699523849,0.072568408936326,0.0854871192414198,0.0978938624438766,0.1098460889732237,0.1251982993844787,0.1369605804726948,0.1479691243013042,0.1587764565103582,0.1691383840008578,0.1820805513676502,0.193961553855973,0.2056860186997173,0.2153831013329542,0.2246831264853446,0.2351390273623573,0.2448767747120278,0.2538327428153647,0.2617483176159511,0.2689923812797158,0.2765010004742132,0.2826193705279895,0.288658452952444,0.2940746772686992,0.3002051543513359,0.3053301648669613,0.3110346553234079,0.3162873490146217,0.3208404536274662,0.3258527709286534,0.3245034002634196,0.322749505385799,0.3217526902868702,0.3204001212488633,0.3196530506338498,0.3182359588308951,0.3166012206084118,0.3165424105683082,0.3167534810880741,0.3165728936685421,0.3173912231210417,0.3179292133060066,0.3189857011455807,0.3197099832682655,0.3200768491834774,0.3204629197156053,0.3215177659212169,0.325443971985993,0.328551984085436,0.3324395725720594,0.3361592166107535,0.3390387366859202,0.341233419249387,0.3434381614756577,0.343767572633552,0.3477594339622641,0.3499394306480921,0.3501102867455384,0.3546866333887964,0.3609926328034121,0.0,2.3106944035618304,57.36899397015035,169.70031224513448,258.16972468166074,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95678,45079,427.76813896611554,6087,62.48040301845774,4795,49.59342795626999,1858,19.09529881477456,77.35982293729873,79.73659470235245,63.33991942654043,65.09032104670288,77.13363007372374,79.50977548131219,63.25548784591797,65.0077705581573,0.2261928635749939,226.81922104025887,0.0844315806224642,82.55048854557856,154.9361,108.95630673196426,161934.4676937227,113877.66605903582,392.60302,257.7571640771544,409819.8436422166,268883.1254595146,378.79372,184.36356820023968,392633.4685089571,190137.4044240482,2738.51588,1257.3836885018868,2833747.235519137,1285757.23625273,1135.0678,503.0348940240491,1174624.4695750328,514077.37932891736,1819.38072,762.8512621690058,1871913.9405087896,772195.9753696956,0.38218,100000,0,704255,7360.65762244194,0,0.0,0,0.0,33851,353.2682539350739,0,0.0,34676,359.1630259829846,1595677,0,57222,0,0,0,0,0,70,0.7211689207550325,0,0.0,0,0.0,0,0.0,0.06087,0.1592705008111361,0.3052406768523082,0.01858,0.3291020216267042,0.6708979783732957,24.565582543887228,4.323243560621215,0.3363920750782064,0.2281543274244004,0.2206465067778936,0.2148070907194994,11.246887795422706,5.897590202917383,19.684703054410075,12229.043291340651,54.27058412125203,13.079994457220778,18.207114147959537,11.866207913830737,11.117267602240991,0.5639207507820646,0.7861060329067642,0.7017978921264724,0.5661625708884688,0.1097087378640776,0.740139211136891,0.9338422391857506,0.8628841607565012,0.7245283018867924,0.1556603773584905,0.4988577955454026,0.703281027104137,0.6445378151260505,0.5132408575031526,0.097799511002445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.004530665612552,0.0068381271242327,0.0087851150697731,0.0109402960793883,0.0128963306020662,0.0152131160904431,0.0173448149206219,0.0195918200576109,0.0220660446845077,0.0240334378265412,0.0262221082328802,0.0283984623923366,0.030394761228146,0.0326563450886548,0.034571499441895,0.0365746348230276,0.0385305495918769,0.0405343590809855,0.0425194880987119,0.0570628610829615,0.0711481074289304,0.0849907116843861,0.0980051764408812,0.109593519944312,0.1256890732295711,0.1386055595062462,0.1501709392606477,0.160974097473889,0.1708044866634465,0.1839019764208893,0.1963765526352836,0.2072650502764114,0.2168883051496744,0.226709100519778,0.2374432258779218,0.2475222108129827,0.2562029927261689,0.2643756379720993,0.2721174868079164,0.2788551604509974,0.2847170252572498,0.2916947608739368,0.2978483937786611,0.3035757605162292,0.3084865490167122,0.313624550179928,0.318252274228795,0.3220843030773209,0.3252511668380666,0.324758064516129,0.3235876288659793,0.3227855231657513,0.3224996391975754,0.3216631819327669,0.3204195205479452,0.3181775050607287,0.3183787331801772,0.3183620453923981,0.3190755987355562,0.3200224761191234,0.3208818126148193,0.3209317915200268,0.3223572513627021,0.3242841026379587,0.3255602350127385,0.3267576849933297,0.3310342665454431,0.3323424494649227,0.3352333452084075,0.3383489408128011,0.3414686021162333,0.343900278410529,0.3472147933063345,0.3530462579917262,0.3593992132554536,0.3594512195121951,0.3566981321550512,0.3596467754883596,0.3624620060790273,0.0,1.9991245573894092,56.78130557216895,176.2659539168685,264.58541914578177,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95848,44997,425.96611301226943,6096,62.400884734162425,4778,49.20290459894834,1910,19.510057591186044,77.34109898624328,79.63126249378938,63.34986309044478,65.04389746567391,77.10827786567278,79.40355597966419,63.26303450693758,64.96224270595556,0.2328211205705059,227.70651412518816,0.0868285835071986,81.65475971834724,154.43384,108.74762153146816,161123.69585176528,113458.41491890092,395.85853,260.12456520727073,412356.9714548034,270745.6536335266,379.58101,184.7503068015945,392389.585593857,189995.347796166,2746.10904,1267.2410880506025,2829161.0466572074,1286369.7655059951,1160.50643,513.0356870146411,1191441.3133294384,515988.3591406554,1869.83312,783.317766299792,1911349.2195976968,781655.4761954256,0.38157,100000,0,701972,7323.804356898422,0,0.0,0,0.0,34196,356.09506718971704,0,0.0,34778,359.22502295300893,1594742,0,57302,0,0,0,0,0,70,0.7198898255571321,0,0.0,0,0.0,0,0.0,0.06096,0.1597609874990172,0.3133202099737532,0.0191,0.3418119013973936,0.6581880986026064,24.6373993060254,4.328881198390262,0.3292172457095019,0.2308497279196316,0.2189200502302218,0.2210129761406446,11.191457828358846,5.849817079225388,20.317565786380616,12190.734182511704,54.39839539828332,13.237592952987312,17.853359921250963,11.72783983749222,11.579602686552825,0.5606948514022604,0.7833182230281052,0.6865861411315957,0.5793499043977055,0.1221590909090909,0.7372429550647372,0.9214285714285714,0.8679245283018868,0.7377049180327869,0.1466666666666666,0.4937950937950938,0.698389458272328,0.6196692776327241,0.5311720698254364,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657181914839,0.0042962377521759,0.0064814533061497,0.008741649237517,0.010712906307808,0.0130363103476349,0.0153529549599111,0.0174547309359857,0.0195697914325986,0.0217478032263674,0.0238048900406649,0.02613252925551,0.02846050347668,0.0304545548079099,0.0321490396504822,0.0341624522654556,0.0362733946851411,0.038377056653819,0.0404904535969019,0.0426685255896704,0.0578352955898762,0.0717092748594243,0.0854266619178311,0.0983038386808801,0.1100334870790421,0.1250805386849749,0.1372073312850937,0.1489750786765331,0.1599667047285688,0.1699908900916349,0.1829550468687781,0.1954213167228999,0.2064178796212755,0.2167559296097934,0.2275567681746171,0.2384671629885668,0.2473863319386331,0.256167666017932,0.2641338144844647,0.271730789054715,0.2791512893783912,0.2853634290392374,0.2918490476753815,0.2975414549985622,0.302299311299785,0.3067059563292934,0.3117725099501864,0.3166157760814249,0.3211129084438693,0.3250448738253616,0.3238338830181059,0.3225664507789832,0.3218803707773364,0.3210028354840576,0.3204975598143078,0.3184625522980491,0.3164318207034284,0.3171020596170297,0.3179502135909005,0.3182389485402377,0.3189055757598598,0.3193233933570251,0.3195737332041616,0.3207148001440403,0.3226751931787903,0.3236513434089,0.3243722980904119,0.3276314541372878,0.3298425639583919,0.3314263011521652,0.3331053975200583,0.3340069130550385,0.3360515835387824,0.3379594326673784,0.3406916153481762,0.3428844317096466,0.3476249228871067,0.3492416582406471,0.348111658456486,0.3426600229973169,0.0,2.5238832684037478,57.363679665077335,175.0893561717553,262.96031128334363,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95629,45009,426.6592769975635,5921,60.45237323406079,4628,47.6842798732602,1849,18.84365621307344,77.31769350596971,79.73951878054064,63.289715480586615,65.08103730783525,77.09072028767365,79.51868030808474,63.20453568721008,65.00171493402776,0.2269732182960666,220.83847245589536,0.0851797933765396,79.32237380748575,155.12442,109.08346219324616,162214.83022932376,114069.4372975208,390.78476,257.3167534315804,407943.60497338674,268375.05718096014,378.63919,184.5462861021499,391859.7182862939,189797.854957244,2646.81088,1225.0710625658985,2729638.373296804,1242913.8258958042,1118.78234,495.87526433715215,1151808.0080310367,500441.7890481147,1806.87408,756.1258785207299,1845048.78227316,750884.662882067,0.38043,100000,0,705111,7373.4013740601695,0,0.0,0,0.0,33790,352.6022440891361,0,0.0,34629,357.95626849595834,1591630,0,57070,0,0,0,0,0,72,0.7529096822093716,0,0.0,1,0.0104570789195746,0,0.0,0.05921,0.1556396708987198,0.3122783313629454,0.01849,0.3294741919922817,0.6705258080077183,24.41187106694713,4.375895599125295,0.3243301642178046,0.2327139152981849,0.2242869490060501,0.2186689714779602,11.554013197338035,6.038378315627814,19.532331583630373,12156.901052247193,52.51698172976585,12.849039634466427,17.159154824387834,11.45119208992612,11.057595180985482,0.5648228176318064,0.7845868152274837,0.7081945369753497,0.5529865125240848,0.1304347826086956,0.7309486780715396,0.91871921182266,0.8743961352657005,0.6798418972332015,0.1549295774647887,0.5008976660682226,0.7034277198211625,0.6448942042318307,0.5121019108280255,0.1239048811013767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185752492098,0.0043402425668275,0.0065380710659898,0.0087196008089513,0.011089971206772,0.0133251833740831,0.0157713259747413,0.0179200850029117,0.0197824240377431,0.0219561696631747,0.0242057178052661,0.0263325656000658,0.0286785225154719,0.0308231896018155,0.0329906493774861,0.0349252341284213,0.0368596223832778,0.0387859398371281,0.0410036528634911,0.0431023694310028,0.0575202742245631,0.0714323137698699,0.0854069724693549,0.0983273294149866,0.1109057496514722,0.1262975045545057,0.1376099987246524,0.1485070410523735,0.1592207458758585,0.1691856530566208,0.1822604830792798,0.1941744416631449,0.205640461432882,0.2151055813545956,0.2245489513187043,0.2350494192818396,0.2449374161823871,0.2533336336606901,0.2625340599455041,0.2700491560963872,0.277211672070403,0.2832299590403745,0.2900203714231571,0.2950349675515517,0.3003393046079755,0.3052884615384615,0.3102067377484107,0.3154212146655472,0.3196471822503141,0.3239306419449836,0.3232583209809999,0.3225775380466191,0.3224261546913076,0.3207560792468087,0.3202267196866283,0.3177349707530701,0.3154478238153291,0.3159948837361844,0.3170448926702017,0.3166364379956613,0.3178589406566363,0.3188733390989857,0.3198280516675665,0.319886388851906,0.3208474495395333,0.3241157889285899,0.3255728429985856,0.3286181648231812,0.3323688338853059,0.3353184776178268,0.3387235975471269,0.3427829588808817,0.3460788629645934,0.3463170657775083,0.3448696304633277,0.3448683122711704,0.3519877675840978,0.3557422969187675,0.3525869148644949,0.3496583143507972,0.0,2.785237215304805,55.6393367854869,170.6160864854159,248.8071537820649,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95722,45007,426.2551973423038,5933,60.93687971417229,4650,48.11850985144481,1819,18.65819769749901,77.34880342590687,79.7061714600945,63.338894218876014,65.07699376751208,77.11774088088633,79.47580080860179,63.25317537606185,64.9938426189436,0.231062545020535,230.37065149270572,0.0857188428141668,83.15114856847572,156.27238,109.90263233438246,163256.492760285,114814.39202522144,395.65392,259.6569421289141,412873.0803785963,270798.13640428975,374.35779,181.65553212563145,388391.49829715217,187702.5473470665,2666.54236,1218.0616084076237,2760462.422431625,1247423.577560075,1108.85324,490.118789482749,1145057.332692589,498757.7764570285,1788.56242,751.6387252983184,1837123.29454044,758463.0381731843,0.37997,100000,0,710329,7420.749670922046,0,0.0,0,0.0,34095,355.69670504168323,0,0.0,34141,354.0147510499154,1589295,0,57015,0,0,0,0,0,84,0.8670942938927311,0,0.0,0,0.0,0,0.0,0.05933,0.1561439060978498,0.3065902578796561,0.01819,0.3349428617415097,0.6650571382584902,24.67671411219693,4.431934164230783,0.3193548387096774,0.2324731182795699,0.2221505376344086,0.226021505376344,11.014892591262464,5.5628224591315965,19.414286413339124,12178.515256729568,52.47607634994098,12.972767474069716,16.754513272198366,11.312054321949182,11.436741281723704,0.5552688172043011,0.7835337650323775,0.6902356902356902,0.5672797676669894,0.1179828734538534,0.7152209492635024,0.9168831168831169,0.8225806451612904,0.7213114754098361,0.1764705882352941,0.4982497082847141,0.7097701149425287,0.6460017969451932,0.5196451204055766,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0043993025990349,0.0065445690223732,0.0087262162354351,0.0111639824304538,0.0133150099251794,0.0156359892770138,0.0178421965907931,0.0200909508967349,0.0218926553672316,0.0240967560088146,0.0262741958659194,0.0283452423790674,0.030442794930662,0.0322457526587788,0.0343569819587096,0.0366121350176019,0.0385660925503216,0.0409652834818411,0.0430737171138317,0.0583124477861319,0.0720221026853925,0.0856168694922366,0.0987143879139839,0.1112072148093454,0.1264174494372514,0.1387642059020151,0.1497530022996337,0.1604452896305634,0.1711450791096808,0.1841702751028673,0.1967087183260121,0.2081502588419541,0.2183046992049518,0.2275287697757828,0.2372826893884832,0.2469785313763599,0.2554908869851062,0.2638396911898274,0.2710786784585071,0.2774382480264833,0.2846815230742235,0.2903588505420632,0.295641861133739,0.3003630535352186,0.3058504741963296,0.3102814718528147,0.3145714721431476,0.3194124796359028,0.3231545791214729,0.3220220395312226,0.3206309477969085,0.3193437081895641,0.3176781612516433,0.3166426459444601,0.3150370415722769,0.313978324499644,0.3150570416994492,0.3162878787878788,0.3180317924747105,0.3190085425350954,0.3196128294596566,0.3201011747982775,0.3212482687754099,0.32139595250685,0.32296875,0.3229847339135397,0.3267329849524649,0.3303502491752649,0.3330419927694569,0.3373246195329281,0.3412507355694645,0.3454834605597964,0.3491342824163139,0.3485122159901131,0.3478521718262539,0.3521914827479018,0.3525654234494127,0.3552704963747908,0.351686700271423,0.0,1.6934563201831685,53.92724789196023,172.20727999159027,258.8473002148384,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95628,45122,426.4023089471703,6032,61.530095787844566,4733,48.81415485004392,1874,19.22031204249801,77.26744378178137,79.68396420667484,63.28338998351626,65.06996454345077,77.02703051388023,79.44455910868756,63.19271751288439,64.98226444982748,0.2404132679011326,239.4050979872873,0.0906724706318726,87.70009362328324,154.44286,108.61302470110324,161503.80641653072,113578.6848005848,391.01306,257.6499944456058,408171.0168569875,268710.74836408347,378.42917,184.29865717287527,391248.1595348642,189306.76041884292,2727.19524,1258.138445005754,2815160.1622955617,1278939.813658922,1126.00064,499.8224953984652,1161985.6422805036,507179.3673385044,1845.46482,787.3486554879825,1894560.923578868,792532.3652098718,0.38105,100000,0,702013,7341.082109842306,0,0.0,0,0.0,33778,352.4804450579328,0,0.0,34558,356.9456644497428,1594131,0,57185,0,0,0,0,0,72,0.742460367256452,0,0.0,0,0.0,0,0.0,0.06032,0.158299435769584,0.3106763925729442,0.01874,0.3221434200157604,0.6778565799842395,24.611569147309996,4.490274176830323,0.3120642298753433,0.2408620325375026,0.2174096767377984,0.2296640608493556,11.16475037351914,5.532050726194137,20.173485094883336,12222.604685394674,53.71014034934925,13.686305057960686,16.69026609690955,11.46747175735308,11.866097437125935,0.5582083245298964,0.7850877192982456,0.6980365605958023,0.5801749271137027,0.1094756209751609,0.7238979118329466,0.9080717488789236,0.8497409326424871,0.7446808510638298,0.1238938053097345,0.4959302325581395,0.7060518731988472,0.6443629697525206,0.5314861460957179,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0045528290407625,0.0069038336582196,0.0092980245508495,0.0116379617290104,0.0140241170000407,0.0161306768358586,0.018693401668215,0.0207670835080113,0.0232155657962109,0.0255681818181818,0.0277461041429114,0.0298438368001975,0.0321593438298573,0.0343211635132484,0.036215327674796,0.0382380661398402,0.0403138752802457,0.0424602390338787,0.0446536552817048,0.0588610306951078,0.0729906365864387,0.0862702679996639,0.0992523954933136,0.1114383742412246,0.1273482008598598,0.1384719965161605,0.1496355032612866,0.1597578065661806,0.1694270799767996,0.1814818410294577,0.1945609187930007,0.2060027433647586,0.2157547366001554,0.2257666685018994,0.2361649786130626,0.2450683784538096,0.2539757571664922,0.2625572072634771,0.2700270542920029,0.2781907871882165,0.284380593609977,0.2907846758535777,0.2963647270545891,0.3013195500152021,0.3076068576506745,0.3121015119061039,0.3164186324808086,0.3204386942881589,0.3249203432182662,0.3236885787932361,0.3223125689084895,0.3212139168712435,0.3204545454545454,0.3201310791688389,0.3187718652181918,0.3165037140499016,0.3177912497740976,0.3182750837835989,0.3185050201879444,0.3196915109209637,0.3208228362857312,0.3221108379042935,0.3220244093606539,0.3242272266962434,0.3257201161604269,0.327176705680845,0.3287451178026962,0.3322297749445286,0.3361810850732564,0.339531458553873,0.3420302329334552,0.3438078814587724,0.3476685934489402,0.3466717238763512,0.3494120470362371,0.3524208566108007,0.3555692814494544,0.3561488213575688,0.356027232679215,0.0,2.6040304648365167,56.22434134200438,172.34322188062907,261.69101727408986,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95840,45332,429.3301335559265,6040,61.85308848080133,4766,49.165275459098496,1852,18.896076794657763,77.40182060844235,79.71474507152395,63.36325590393732,65.07553562595722,77.17180490348827,79.48848686458489,63.277550934213146,64.99393934792685,0.2300157049540843,226.25820693906465,0.0857049697241763,81.59627803036074,155.15676,109.13591812107686,161891.4440734558,113873.0364368498,395.21444,259.6298866784809,411804.1318864775,270334.43935567705,378.65549,184.33887476452705,392067.6857262104,189953.15044019572,2745.85036,1266.2035586344268,2831391.736227045,1287757.8688052625,1126.03803,502.64204006048783,1159128.7458263773,508707.8356944173,1817.5515,763.53859958146,1855651.314691152,763191.6342068583,0.38282,100000,0,705258,7358.702003338898,0,0.0,0,0.0,34037,354.57011686143574,0,0.0,34651,358.48288814691153,1595130,0,57309,0,0,0,0,0,66,0.6886477462437396,0,0.0,0,0.0,0,0.0,0.0604,0.1577765007052923,0.3066225165562914,0.01852,0.3276160503540519,0.672383949645948,24.209095079144543,4.47216067585222,0.331934536298783,0.2305916911456147,0.2104490138480906,0.2270247587075115,11.40745332841864,5.915737301324212,19.821720641256988,12210.150609929298,54.05027151094065,13.106998407600065,17.85865087890132,11.194721753577538,11.88990047086171,0.5589592950062946,0.7761601455868972,0.6833122629582806,0.6051844466600199,0.1136783733826247,0.7358490566037735,0.9138755980861244,0.8468677494199536,0.7520325203252033,0.1869565217391304,0.4908456843940715,0.6916299559471366,0.6220677671589921,0.5574636723910171,0.0938967136150234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377933939528,0.0048850196110227,0.0070303940267012,0.0094051210172968,0.0117424589013938,0.0139969054114581,0.0163175865056311,0.0181465605225556,0.0202485843367336,0.0223329887516248,0.0243657424017221,0.0263681898427556,0.0284521925045741,0.0304359465414633,0.0327055571599488,0.0346149474576096,0.0367675220222137,0.0387498833459492,0.0408716515886452,0.0428153652419161,0.0572787384493439,0.0709932362503528,0.0840319403110198,0.0967992688845236,0.1092984802687702,0.1248547831780833,0.1371927966101695,0.1480489386353731,0.1583974557368651,0.1691660061269521,0.181686187203562,0.1940983889963371,0.2059270846912614,0.2172089059802914,0.2268240673569434,0.2370194915160437,0.2464762032204826,0.2553148433371932,0.2647355706524821,0.2727470414539794,0.2791918677938268,0.2855773389915711,0.2919948903555461,0.2970738370839025,0.3022755974353993,0.3066983642096965,0.3119394583776346,0.3165990770521605,0.321119434848426,0.3261032950514893,0.325473474658345,0.3242830826757581,0.3233792356490794,0.3219348976736807,0.3210918040564583,0.3185259969712266,0.3169767772736614,0.3175622542595019,0.3167462482946794,0.3168963920646793,0.3175074738415545,0.3194915254237288,0.3221159868063964,0.32325213399006,0.3246989538196356,0.3269435293507302,0.3281117217154835,0.3316905801621959,0.3346812144873984,0.3369505169284192,0.340066270255549,0.3432701471989833,0.3475368685283966,0.3505068845513693,0.3549883990719257,0.356146724481425,0.3577063106796116,0.3623363544813696,0.3683206106870229,0.3699466056445461,0.0,2.13908224131286,58.354823208196166,172.87600345362085,258.52062217669373,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95682,44816,424.6253213770615,5970,61.025062185154994,4680,48.18043101105746,1844,18.739156790200877,77.32145341825886,79.70853737116592,63.3143933609397,65.08008188738211,77.09262541758154,79.48644413049492,63.22859375684618,65.00044184675448,0.2288280006773106,222.09324067100056,0.0857996040935162,79.64004062762342,155.26808,109.2433613890356,162275.11966723102,114173.36739306829,391.50097,256.6590999439087,408434.50178717,267508.83042012714,372.38426,180.8340205952597,385233.78482891247,185930.31270836043,2686.45024,1231.265683482531,2768908.509437512,1248102.483339721,1102.72099,488.4000947664589,1135259.8503375766,493235.0966701131,1806.8405,762.1098768577228,1839625.1541564765,754330.715294125,0.37942,100000,0,705764,7376.141803055956,0,0.0,0,0.0,33780,352.29196714115506,0,0.0,34133,352.7413724629501,1595993,0,57237,0,0,0,0,0,55,0.5748207604356096,0,0.0,1,0.0104512865533747,0,0.0,0.0597,0.1573454219598334,0.3088777219430486,0.01844,0.3278976818545164,0.6721023181454836,24.53333342780532,4.407915852498263,0.327991452991453,0.235042735042735,0.2177350427350427,0.2192307692307692,11.235697213921744,5.801320058124144,19.68254860954579,12126.275165183371,52.981465375201694,13.074569163150452,17.215257032991754,11.382982293334068,11.308656885725409,0.5551282051282052,0.77,0.6846905537459284,0.5799803729146222,0.1062378167641325,0.7217675941080196,0.9194805194805196,0.8571428571428571,0.708,0.1291866028708134,0.4962406015037593,0.6895104895104895,0.6283491789109766,0.5383615084525357,0.1003671970624235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277458053011,0.0045127269039651,0.0067402955985057,0.0087397485797908,0.010764284551522,0.0130388721375601,0.0152768287832587,0.017418827853788,0.0195360819472699,0.0216389952300038,0.0237033391771496,0.0259090769056983,0.0280109451508044,0.0302430780961802,0.0324731626754748,0.034770111971547,0.036656101754604,0.0384407820997135,0.0407770625123495,0.0428977894506456,0.0575719911009912,0.0710666806238877,0.084016414949779,0.0965080300574627,0.1081648588190604,0.1239216267425982,0.1360012738177379,0.1473216663293674,0.1584139368353551,0.169321363065933,0.1824959062311471,0.1942796518425497,0.205460379616033,0.2156970001969236,0.2251559457407835,0.2352341933340715,0.2453200651509404,0.2540439068805432,0.2620621619476352,0.2696108178664254,0.2764773910026599,0.2827327362439492,0.2896474988755001,0.2951963181360564,0.3007252979553158,0.3061709542750883,0.3106705028771578,0.3152522119393878,0.32016908837065,0.3240052700922266,0.322754168908015,0.3227370097769966,0.3216952346133835,0.3200046176712506,0.3188420865019011,0.3167006265990532,0.313863643560594,0.314494418910046,0.3153634671539079,0.3174858121854588,0.3172905859660293,0.3187564193726791,0.3194485124900623,0.3215204024594745,0.3214870067372473,0.3229583169998693,0.3236817258447541,0.3268818560080696,0.3290760678347759,0.3311360838661001,0.3345477730212223,0.335002663825253,0.3380460280225702,0.3403813624481008,0.3424463153911645,0.348065636603186,0.3548387096774194,0.3571866693927622,0.3551505109085888,0.358974358974359,0.0,2.794827526585875,52.868087153698006,178.7313758272594,256.3322547213366,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95708,44906,425.0637355289004,6069,62.18915869101851,4768,49.26442930580516,1887,19.350524512057508,77.3455376358958,79.73129371093908,63.32130932583449,65.08676889913629,77.1161508380444,79.5032022109539,63.23623274772208,65.0045289711461,0.2293867978513901,228.09149998518308,0.0850765781124067,82.23992799018731,154.46002,108.66389050321828,161386.73883060977,113536.8939934157,390.55347,256.5191190873439,407528.0645296109,267482.9785256654,375.28837,182.94224517321817,388438.6362686505,188365.86921943267,2719.3532,1249.568886747046,2812471.5175324944,1276775.114668623,1122.73008,498.3919282861246,1157519.0161741967,505191.6808373879,1841.85784,769.4198431964343,1890990.5963973757,776408.9471041443,0.3804,100000,0,702091,7335.760855936808,0,0.0,0,0.0,33665,351.17231579387305,0,0.0,34288,354.557612738747,1601699,0,57343,0,0,0,0,0,79,0.8254273414970535,0,0.0,1,0.0104484473607221,0,0.0,0.06069,0.1595425867507886,0.3109243697478991,0.01887,0.3392857142857143,0.6607142857142857,24.332284504630504,4.30788668828699,0.3160654362416107,0.2491610738255033,0.2193791946308725,0.2153942953020134,11.29488912919775,5.947931698939774,19.945274502628862,12138.333165655687,53.911346867814935,14.0591302777709,16.989871643774492,11.644641056592004,11.217703889677551,0.5606124161073825,0.7803030303030303,0.681486396814864,0.5688336520076482,0.1207400194741966,0.72890625,0.9285714285714286,0.8350253807106599,0.7458333333333333,0.1548672566371681,0.4988532110091743,0.69921875,0.6271338724168913,0.5161290322580645,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021783402060811,0.0044322734418581,0.0068125285547489,0.0090855505193194,0.011353463009685,0.0135058056630678,0.0159388958006159,0.0181060629269936,0.0203902159685863,0.0223756029124125,0.0245118148999015,0.0266844700082169,0.0288944206714944,0.031088349854708,0.0329411764705882,0.0350467289719626,0.0371774552762153,0.039179259382265,0.0411913353646488,0.0431353345072256,0.0581084468209541,0.0715324800368389,0.0841169556273876,0.0970372240809713,0.1090824710734213,0.1239158945720692,0.1353310060163619,0.1464492630143989,0.1572004318869397,0.167393031194315,0.1801041363474661,0.1914312944030497,0.2031239795363013,0.2142575774154721,0.2240494903463003,0.2343646114977173,0.243967229948434,0.2527139980425465,0.2608957052430973,0.2684752747252747,0.2759789461507316,0.2835316671732167,0.2899560117302053,0.2949830613979434,0.3003311539441284,0.3046210993714714,0.3095746674161514,0.3148216302651116,0.3186553580419038,0.3228651803554527,0.3228926329344851,0.3221585927224901,0.3221245647534539,0.3221095685235324,0.3217193096711169,0.3198114358943064,0.3176067350065549,0.3185882816217369,0.3187661107222725,0.3195406814772484,0.3209235155107093,0.322117763483424,0.3235929600805521,0.3247763864042934,0.32674029692726,0.3259145227782706,0.3271619004215563,0.3300245021046679,0.3332982566908695,0.3351068053680616,0.3373028498704604,0.3399014778325123,0.3440050219711236,0.3425834410400669,0.3467018967632349,0.3452909418116376,0.3456370656370656,0.3476210008203445,0.3474669603524229,0.3533307362680171,0.0,2.1517552607190904,56.07231882001811,172.79477362676113,266.7753871722272,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95598,45432,430.1554425824808,6060,61.957363124751566,4760,49.0805246971694,1876,19.15312035816649,77.23812690061078,79.6709367635558,63.25655152000609,65.0549062918974,76.99641601108858,79.43270393238464,63.16561984754893,64.96844461259454,0.2417108895221957,238.23283117116037,0.0909316724571596,86.46167930285742,153.43966,108.00000809843644,160505.09424883366,112973.08322186283,394.25722,258.9135087211751,411718.6447415218,270142.76315527014,382.053,186.07750489654745,395695.4538797883,191497.03178812712,2724.66636,1264.7864179406254,2810318.2493357603,1283531.8881129166,1158.64303,517.6566754850724,1192231.1763844432,521846.1467984156,1840.84954,782.2963171164894,1881595.3681039352,780255.0948227908,0.38375,100000,0,697453,7295.686102219712,0,0.0,0,0.0,34016,355.080650222808,0,0.0,34949,361.5766020209628,1593920,0,57325,0,0,0,0,0,66,0.6903910123642754,0,0.0,1,0.0104604698843072,0,0.0,0.0606,0.157915309446254,0.3095709570957096,0.01876,0.3266781952523188,0.6733218047476812,24.35180797179303,4.389937728132045,0.3102941176470588,0.242016806722689,0.220798319327731,0.226890756302521,11.201016467377238,5.775814836017082,20.2275590792093,12299.158453783895,54.44198865326774,13.998252990943431,16.740642141513852,11.909693187784912,11.793400333025554,0.5571428571428572,0.7890625,0.6885578876100203,0.566127497621313,0.1212962962962962,0.733131159969674,0.925,0.8376288659793815,0.7137681159420289,0.1767441860465116,0.4896832316187154,0.7050561797752809,0.63544536271809,0.5135483870967742,0.107514450867052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023005513215501,0.0046757883419715,0.0070059296564048,0.0094121951963245,0.0118160723009281,0.0139877950630112,0.016247641389158,0.0185714869447963,0.0210604913773704,0.0230659715465057,0.02546581301814,0.0276707458668557,0.0298779358185298,0.031720668432935,0.034057933598389,0.0362874437373894,0.0381286088966754,0.0402019446522064,0.0420869637633636,0.0441808546152562,0.0593708508881059,0.0732198061304689,0.0863434827376074,0.0988708895957532,0.1115687641256363,0.1273039277996695,0.1396500249678605,0.1509908642212201,0.1615554176386243,0.1713199196467896,0.1837153092494281,0.1953467192853115,0.2071332832063813,0.2173446129569562,0.2275171927349673,0.2384260286741533,0.2474271779497964,0.2567893715883971,0.2657044392124748,0.2733922829581993,0.2804660122072919,0.2876863352216084,0.2942398063321783,0.3008741027521612,0.3067669356214806,0.3116608560195831,0.3153784340314399,0.3191790787609603,0.3237480183996465,0.3275832395578208,0.3257856197141235,0.3243858995070626,0.3230382322190511,0.3207952090251294,0.3199886766590184,0.3187356904685075,0.3170138723363684,0.3176806052314944,0.3192990285263122,0.3202630777226214,0.3197480966256227,0.3198936465732767,0.3209178093715824,0.321779733309388,0.3224211135771495,0.3242444839485517,0.3251967377307197,0.3279982321558228,0.3328052944696729,0.3344302592974387,0.3371976266544956,0.3375457972707482,0.3409790737133161,0.340827952905431,0.3420436452186944,0.3433642882332197,0.3448068540508041,0.3497017892644135,0.347920630606143,0.3528966300643695,0.0,2.718816935462342,57.33823400675965,180.79965267131303,254.714299288648,fqhc5_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95718,45073,427.3072985227439,5871,60.07229570195784,4555,47.00265362836666,1778,18.19929375874966,77.33641368994157,79.71336803421676,63.332022412709286,65.09012884318743,77.11049089887044,79.48892019815645,63.24736275537304,65.00853172455085,0.2259227910711274,224.44783606030683,0.0846596573362461,81.59711863658003,156.618,110.18098141136058,163624.39666520405,115109.99123608996,392.56923,258.0751445816282,409541.3924235776,269030.6364337201,375.20559,182.28492871221428,388455.3480014208,187629.3674576275,2999.16609,1374.694315310957,3097201.3832299043,1400057.9256889585,1065.15056,474.6222902908127,1095868.6558432062,478926.08840949135,1745.07922,736.73695798751,1788659.4997806055,740386.2077561986,0.38064,100000,0,711900,7437.472575691092,0,0.0,0,0.0,33905,353.61165089115946,0,0.0,34231,354.0713345452266,1589537,0,57008,0,0,0,0,0,74,0.7731043272947616,0,0.0,0,0.0,0,0.0,0.05871,0.1542402269861286,0.3028444898654403,0.01778,0.3332254933678421,0.6667745066321579,24.60638754036705,4.391382883331096,0.3185510428100988,0.236443468715697,0.2221734357848518,0.2228320526893523,11.024522599914038,5.6002986625604185,19.009351850149844,12125.459503727214,51.74509776476446,12.776933386726672,16.418569618076102,11.567351345096762,10.982243414864914,0.5571899012074644,0.7845868152274837,0.6919365954514128,0.5721343873517787,0.1083743842364532,0.7310574521232306,0.9224598930481284,0.8384401114206128,0.7416974169741697,0.1573604060913705,0.4949314251639833,0.7112375533428165,0.6437728937728938,0.5101214574898786,0.0965770171149144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0044929461759247,0.0068023757551144,0.0087812017237173,0.0111797198457829,0.0132096225531134,0.0155212678081563,0.0175821931794976,0.0197110813491049,0.0218966893925434,0.0237199528471118,0.0257281603236039,0.0278780400020566,0.0302505948150665,0.0325140333498431,0.0346570471741017,0.0368096253805214,0.0390273253522003,0.0408547168438665,0.0426648889629598,0.0573702017459588,0.07116849418264,0.0844354018311292,0.0970091984231274,0.1096600790513834,0.1251030459320636,0.1365997413445841,0.1479740508348399,0.1593599555939838,0.1689273163623896,0.1809199905288761,0.1935825754052797,0.2052552650453152,0.2151096740365289,0.2248313298024306,0.2350534614491535,0.2443728828668211,0.2538856609838055,0.2626316445794742,0.2699438427138494,0.2770798904438871,0.2836821451929365,0.2899925573263081,0.2963259932982288,0.3015403274711946,0.3063635021408534,0.3108498169413587,0.314404432132964,0.319396847155586,0.3233754072198261,0.3222611036339166,0.320586088656926,0.3188799954906713,0.3184138599256678,0.3181622055913466,0.3161760196258816,0.3145324881141046,0.3150336033652661,0.3161557269136731,0.3163941749307603,0.3164974333995279,0.3172292559600229,0.3185838857405742,0.3182193277873185,0.3202007106501489,0.3221626684706249,0.3231341149556763,0.326917615877323,0.3303643724696356,0.3338383033009089,0.3370363569592361,0.3389375302143202,0.3416180898084683,0.3437741089338065,0.3436018957345971,0.3455289445179925,0.3487258687258687,0.354301948051948,0.3628922237380627,0.3631221719457013,0.0,2.2690422713524905,52.33696207052603,173.83323974276502,250.44468909322777,fqhc5_100Compliance_baseline_low_initial_treat_cost,0 -100000,95607,44904,425.5755331722573,5994,61.28212369387179,4710,48.65752507661573,1878,19.287290679552758,77.26635035352784,79.70558672473081,63.26822878755484,65.072568603254,77.02697556035992,79.4665737462784,63.17769239211851,64.98450671981414,0.2393747931679257,239.01297845240776,0.0905363954363309,88.06188343986321,155.47224,109.3736548450102,162615.95908249397,114399.21223865428,392.93987,258.676345287438,410421.67414519854,269988.93939506315,377.97642,184.1387571840361,391456.8912318136,189610.62088942417,3098.02268,1438.370755659088,3205008.419885573,1469097.948538378,1139.64622,516.9907567309474,1177284.7071867122,526019.1478981107,1835.92772,787.5617032010101,1887917.286391164,796150.3745935763,0.37896,100000,0,706692,7391.634503749726,0,0.0,0,0.0,33935,354.3255200979008,0,0.0,34571,357.68301484200947,1586933,0,56962,0,0,0,0,0,57,0.5961906554959365,0,0.0,0,0.0,0,0.0,0.05994,0.1581697276757441,0.3133133133133133,0.01878,0.3314249363867684,0.6685750636132316,24.57897790419815,4.430020340421225,0.3343949044585987,0.2205944798301486,0.2201698513800424,0.2248407643312102,11.329019599015307,5.969816087753634,20.166667014331697,12112.661675916384,53.89636204748323,12.66925967419236,18.03698129771842,11.484961109388774,11.705159966183665,0.5558386411889596,0.7901828681424446,0.6831746031746032,0.562198649951784,0.1303116147308781,0.7260377358490566,0.9240196078431372,0.8571428571428571,0.7095435684647303,0.1735537190082644,0.4892171344165436,0.7036450079239303,0.6170026292725679,0.5175879396984925,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0048693887902612,0.0070277351803142,0.0089474540426224,0.0109729036460984,0.0133208312524842,0.0154821195297191,0.0176471189315676,0.0197061471719734,0.0218465006660518,0.0242210271357609,0.0264580720761466,0.0286176049741103,0.0308279204041653,0.032814485059442,0.0349109119880802,0.0372612224168489,0.0392281088042541,0.0410586790449824,0.0432288679146894,0.0579158651835744,0.0720243958669545,0.0847890253253642,0.0979134409791344,0.1094928286263492,0.125217151815601,0.1369081150023914,0.1479182001472141,0.1589916506101477,0.1683125758927132,0.1819927504962458,0.1942495961490508,0.2057407407407407,0.2152187253440869,0.225154902868735,0.2356244035597771,0.2445745703238495,0.2531990628097684,0.260840408724611,0.2686318833262573,0.2754785187931594,0.282002319560455,0.2887812044595571,0.2943201170516418,0.2989700750252313,0.3045657084315637,0.3095733480397072,0.3138314137192947,0.3187286114279788,0.3221807042792822,0.3207021041571247,0.3203737854724615,0.3191888159192761,0.3175924721391093,0.3172436354984534,0.314885145482389,0.3126454984559347,0.3133994874153907,0.3141816814250059,0.3149403494965032,0.3159101157372614,0.3170997601633268,0.3182887386062922,0.3201128703558552,0.3217257096004051,0.322954248366013,0.3230179613316554,0.3269637724645463,0.3313484373348367,0.3332004623908797,0.3386581469648562,0.3435540440004251,0.3432987078794021,0.3456724569521353,0.3489413300998041,0.3527546105955597,0.3559399180700955,0.3568556493767591,0.3603603603603603,0.3595632530120481,0.0,2.415434978845567,57.86152176341845,178.42891203330896,249.37060715820556,fqhc5_100Compliance_baseline_low_initial_treat_cost,1 -100000,95694,45181,427.9474157209438,6151,63.05515497314356,4865,50.138984680335234,1940,19.844504357639977,77.34534288058313,79.71525904038619,63.32656324425341,65.07506747074348,77.1007523303041,79.47379261589776,63.23587597335217,64.98854892085834,0.2445905502790282,241.46642448842212,0.0906872709012347,86.51854988514174,154.94424,108.90661731150529,161916.12849290448,113806.92343459908,394.27818,259.19262961612765,411300.1860095722,270136.11053579923,382.22503,186.5188710406129,395471.6283152549,191799.66388352556,3189.08899,1461.1515764578687,3289181.171233306,1483490.7271697975,1159.62507,512.9876238619713,1193934.3532509874,518299.1148846215,1902.87934,798.1482777521584,1948018.6009572176,798903.5699825716,0.38262,100000,0,704292,7359.824022404749,0,0.0,0,0.0,34009,354.6512843020461,0,0.0,34898,360.66002048195287,1591857,0,57182,0,0,0,0,0,73,0.7628482454490354,0,0.0,0,0.0,0,0.0,0.06151,0.1607600229993204,0.3153958705901479,0.0194,0.3412747524752475,0.6587252475247525,24.307251621334288,4.305892023599704,0.3169578622816033,0.2378211716341212,0.2170606372045221,0.2281603288797533,10.885809834060948,5.654857368332228,20.787560913211777,12278.554669703975,55.2131246965155,13.727298754624728,17.388852947787512,11.797524518457177,12.29944847564608,0.5603288797533402,0.7891097666378565,0.6984435797665369,0.5776515151515151,0.1135135135135135,0.7324492979719188,0.9325581395348838,0.8643617021276596,0.7551020408163265,0.1212121212121212,0.498744069215741,0.7042640990371389,0.6449399656946827,0.5240443896424167,0.111490329920364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0043885431658322,0.0066352826589829,0.0084602884420069,0.010514755231955,0.012757205835938,0.015106571664475,0.0170778763410675,0.019452906180361,0.0214963507385531,0.0234453488610501,0.025765044156911,0.0281520643475756,0.0305761880724021,0.0326628757778718,0.0350327689222435,0.0370562160818592,0.0392598435002802,0.0415696223590084,0.0433106150607557,0.0576218079273069,0.0716857507692951,0.0855247969441937,0.098771017908626,0.1114464506189124,0.1273931863642617,0.1385984096482753,0.1509916281447713,0.1614406326814149,0.1715505405869229,0.1844177953044359,0.1962990233232995,0.207458268950358,0.2179029644874545,0.2275755740322669,0.2378978173393488,0.2476479582156847,0.2564067949150636,0.2643723823252329,0.2719410780967217,0.2784616808589411,0.2858579480343319,0.2929306079937508,0.2986088644451634,0.3043367346938775,0.3098199208687185,0.3157209558501383,0.3194954799171,0.3234714770753959,0.3265470591343867,0.3252201351150905,0.3242606322868719,0.3236927250377948,0.3236082339818342,0.3232442094287629,0.321869772723785,0.3206805868001647,0.321140080120838,0.3216204690831556,0.323167469234885,0.32358331774827,0.3238444694324436,0.3257307861312799,0.3263794068270845,0.3277088104134024,0.3279505374099968,0.3289208306110274,0.3327488492970535,0.336269882887607,0.3386212067400655,0.3408222666909223,0.3438825275657337,0.3490897677338355,0.3494058500914077,0.3535486293653774,0.3555924564108647,0.3532741738066095,0.3558120696638315,0.3583608360836083,0.3589243959469992,0.0,2.733010430007904,55.66824526925351,186.84965940588796,264.5986365964523,fqhc5_100Compliance_baseline_low_initial_treat_cost,2 -100000,95674,44883,426.1763906599494,5917,60.758408763091325,4611,47.714112507055205,1825,18.80343667035976,77.2498286400838,79.64916973179938,63.26585613190741,65.03939363601324,77.01400333719408,79.41249351568025,63.177537184191046,64.95294075775577,0.2358253028897223,236.67621611912185,0.0883189477163668,86.45287825747516,153.78308,108.17760162612409,160736.54284340574,113068.9650543764,388.9967,256.23129381957966,406121.1300875891,267352.59717329644,373.73616,181.48185783485292,388025.5241758471,187698.02441564505,3048.16882,1394.7368979985013,3156800.70865648,1428607.1325527322,1132.90331,501.19055002646746,1171013.8491126115,510737.5358263145,1792.06774,765.0990478010036,1847548.299433493,776152.7840267809,0.38018,100000,0,699014,7306.206492882078,0,0.0,0,0.0,33592,350.62817484374017,0,0.0,34056,353.3248322428246,1593753,0,57297,0,0,0,0,0,74,0.7734598741559879,0,0.0,0,0.0,0,0.0,0.05917,0.1556368036193382,0.3084333276998479,0.01825,0.3293211362542128,0.6706788637457872,24.600172900927127,4.403043969796867,0.3131641726306658,0.2379093472131858,0.2235957492951637,0.2253307308609846,11.233919298611566,5.7089293632091564,19.599353073155957,12151.474386263988,52.292807485418855,13.156660009757708,16.202871833497838,11.408171885984556,11.525103756178746,0.5619171546302321,0.7939835916134913,0.6800554016620498,0.5926285160038798,0.12223291626564,0.7062193126022913,0.9194805194805196,0.8732782369146006,0.7112068965517241,0.1115702479338843,0.5098849218058424,0.726123595505618,0.6151711378353376,0.55819774718398,0.1254705144291091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805664735199,0.0048982323770117,0.0072776362399894,0.0096118675066043,0.0118094618099704,0.0139225551504287,0.0158461475710731,0.017685199366927,0.0198506852116997,0.0219579889595559,0.023827351707302,0.0258654340010272,0.0278232237485208,0.02969429613902,0.0319643188998327,0.0337577180444518,0.0360188591264701,0.0381644518272425,0.0401190253240943,0.0419481981981982,0.056454140806219,0.0699123477605219,0.083886947304346,0.0969391512957838,0.1094543113728221,0.1244165987575273,0.1362082147559784,0.1479539641943734,0.1581604818091377,0.1689081768573024,0.1818937056297607,0.1936932052310828,0.2049006030337066,0.215243882374878,0.2246506391151732,0.2358961252541864,0.2452673883596225,0.2544028882495628,0.2625042686397268,0.2698491134120134,0.276888589481509,0.2839115977958196,0.2905818294219749,0.2964389298737559,0.3021628343615127,0.3069976868173328,0.3117400261280273,0.3164788264458585,0.32058230974199,0.3240518737332927,0.3228274091093391,0.3221487626119722,0.320960606103439,0.320672351780949,0.320627301322282,0.3190160513151029,0.317109916424822,0.3170627345138569,0.3180175705992156,0.3192705254294978,0.3194812517620524,0.3202569032846353,0.3218108550560383,0.3224518184469722,0.3235478731109072,0.3238683771380893,0.3241014558689717,0.3257110637764691,0.3298002588589219,0.3322105096298645,0.3349650983591696,0.3389759004376944,0.3427230046948357,0.3439085333535246,0.3473037161218217,0.3532646852328575,0.3556935190793459,0.3583535108958838,0.3620501635768811,0.3647279549718574,0.0,1.9015794146264315,53.91748348605456,171.33628853347926,256.5016370010956,fqhc5_100Compliance_baseline_low_initial_treat_cost,3 -100000,95738,44892,425.5572499947774,5959,60.89536025402661,4679,48.2149198855209,1918,19.636925776598638,77.32698317968122,79.68636983404942,63.31555014592704,65.06113040052327,77.08140206241123,79.44228824506847,63.22439348219192,64.97278891154929,0.2455811172699924,244.08158898094712,0.0911566637351271,88.34148897398109,155.6335,109.4633818581329,162561.65785790386,114336.18297868448,390.61874,256.7177215788264,407332.9607888195,267471.5897249018,373.02455,181.4194528747985,384987.2046627253,185968.99539059887,3079.65804,1416.940160834448,3176467.41105935,1440139.596873859,1102.82391,497.5858114817027,1129941.204119576,498056.4585784497,1879.46632,796.5066706426213,1925751.8644634315,801598.5070272932,0.37951,100000,0,707425,7389.166266268357,0,0.0,0,0.0,33677,351.0518289498423,0,0.0,34176,352.43059182351834,1590389,0,57118,0,0,0,0,0,61,0.6267103971254883,0,0.0,0,0.0,0,0.0,0.05959,0.1570182603883955,0.3218660849135761,0.01918,0.3355105942329138,0.6644894057670861,24.509723320418757,4.413783084840034,0.3178029493481513,0.2318871553750801,0.2269715751228895,0.223338320153879,11.240917114375344,5.771021074094947,20.501002491042957,12110.105085373494,53.18304667806491,13.075181648662909,16.684299482330086,11.845235760323687,11.578329786748226,0.5524684761701218,0.7963133640552995,0.6778749159381304,0.5621468926553672,0.1110047846889952,0.7152671755725191,0.913151364764268,0.853904282115869,0.7303370786516854,0.1440329218106996,0.4891659246067082,0.7272727272727273,0.6137614678899083,0.5056603773584906,0.1009975062344139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896509801935,0.0048062298472957,0.0071453220469723,0.0091941644993498,0.0111772184083396,0.013431088030141,0.0156931924786882,0.0180164546883612,0.0204918032786885,0.0223743871608274,0.024433489458958,0.0265662050771425,0.0285347175823611,0.0305095915236261,0.0324107980978513,0.034397602810498,0.0363069787665772,0.0383993029624097,0.0403991061684768,0.0426389699141595,0.0571225755266509,0.0710743801652892,0.0846464328772867,0.0974361130675188,0.1097818066828291,0.1254810742228801,0.1371407360271502,0.1486367072300829,0.1593522873022659,0.1692481081951376,0.1821435115820335,0.1945975803918595,0.2057764090063227,0.215889445696654,0.2251615531116175,0.2352869447616091,0.2442296950061445,0.2532357082511968,0.2617849230244845,0.2688040164141124,0.2759986564899642,0.2826771930235555,0.2889028495566829,0.2945638735851548,0.3002408641915235,0.3050082051155502,0.3096052845987039,0.3144360768123144,0.3189740131749572,0.3227472005070779,0.3221482838515006,0.3201387837149426,0.3190419161676647,0.3183803326102675,0.3177857737599619,0.3155562370620256,0.3131734060083661,0.3138404440503169,0.3145132350176866,0.3146113509078586,0.3158466465641563,0.3162139722452852,0.316226034732576,0.3173302893977036,0.3177583592113815,0.3194853996503223,0.3210569824121319,0.3258073645482846,0.3281485902882624,0.3290632188466725,0.3314696122551025,0.3363549618320611,0.3373138080573188,0.3405192044936997,0.3403837154890032,0.3442835276109737,0.3480974124809741,0.3539608949808506,0.3591802824702299,0.3551004636785162,0.0,2.5565290284995763,57.22787281195724,167.11488996438544,257.2722428204903,fqhc5_100Compliance_baseline_low_initial_treat_cost,4 -100000,95760,45187,428.0597326649958,6014,61.76900584795321,4701,48.52756892230576,1865,19.09983291562239,77.39144353273707,79.72975670813581,63.36142006586866,65.08678273117069,77.15963598400735,79.49938844477171,63.27552993324086,65.0038399492366,0.2318075487297193,230.36826336409888,0.0858901326277958,82.94278193407933,155.6038,109.46937569924488,162493.5254803676,114316.39066337184,394.98094,259.49793965118323,411909.5133667502,270427.6834285539,377.62783,183.21883583580424,390648.3709273183,188433.98367812045,3071.3099,1402.4302674134674,3175323.370927318,1432550.1539405473,1121.14112,487.9937852616114,1160699.2585630745,499517.831309118,1824.21878,764.8466856879304,1872058.3333333333,771249.3434427824,0.38203,100000,0,707290,7386.069340016708,0,0.0,0,0.0,34065,355.1587301587301,0,0.0,34493,356.49540517961566,1594598,0,57158,0,0,0,0,0,71,0.7414369256474519,0,0.0,1,0.0104427736006683,0,0.0,0.06014,0.1574221919744522,0.3101097439308281,0.01865,0.3308044886992255,0.6691955113007745,24.60122119003561,4.381281288867752,0.3212082535630717,0.2320782812167623,0.2256966602850457,0.2210168049351202,11.21654214529569,5.823728454043374,19.888602240066174,12256.90362522004,53.3831460608488,13.207829833927333,16.9869500810151,11.722551026151022,11.465815119755344,0.5588172729206552,0.7763519706691109,0.7086092715231788,0.5730442978322338,0.0981713185755534,0.723186119873817,0.8827751196172249,0.8638743455497382,0.7448559670781894,0.1644444444444444,0.4981066122924555,0.7102526002971769,0.6560283687943262,0.5220048899755502,0.0798525798525798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894378746152,0.0049555620864031,0.0070818368133763,0.0092422380434893,0.0112657725900092,0.0137814510219037,0.0156816792337477,0.017732160711735,0.0198387970047707,0.02199826060265,0.0243137737066978,0.0262950005642703,0.0285758323057953,0.0309894814845309,0.0328532992464461,0.0347702128978276,0.0366682880887573,0.0386222918243951,0.0410165791798763,0.0429383945498864,0.0580763008193726,0.0717133141511901,0.0856717263372111,0.0981144774063285,0.1110162164441913,0.1266984593585771,0.1391348611302586,0.1504696858477217,0.1618683524838751,0.1720046305228632,0.1844122015800917,0.1965957999005125,0.2078828119057192,0.2177085495199292,0.2276164516058121,0.2383881746365427,0.2479185938945421,0.2574916883817054,0.2652816031373616,0.2724755737592385,0.2794466083378601,0.2862101609340486,0.2919967835773242,0.2984658131429871,0.3037033442909302,0.3093600423275215,0.3133475820865674,0.3181864441278241,0.3230044396122135,0.3265351860152398,0.3249657138247236,0.3233920378053136,0.3226291739894552,0.3213961333852342,0.3210299284030773,0.3182699204859362,0.3161873796521355,0.3168668390221553,0.3178017336807507,0.3189579957621837,0.3210943932929112,0.3216810838566971,0.3235953173755523,0.3244748674585598,0.3242696466848101,0.3253713420523664,0.3250754598781252,0.3283619658926436,0.3320550258593392,0.3352534562211982,0.3392474344355758,0.3451784762919552,0.3449213071234435,0.347362000609942,0.3505386416861826,0.3507103440178467,0.3484529888855512,0.3503795445465441,0.3485667928610059,0.3395155185465556,0.0,2.2382108585824008,55.58267358092275,175.57151265559312,257.07931382890285,fqhc5_100Compliance_baseline_low_initial_treat_cost,5 -100000,95732,45154,427.10901266034347,5988,61.37968495382944,4712,48.6775581832616,1870,19.220323402832907,77.37264048070351,79.7317332444638,63.34029949113111,65.08177862044995,77.14248432692095,79.50088159577048,63.2565800433392,64.99961671224196,0.2301561537825591,230.8516486933172,0.083719447791914,82.1619082079934,154.37928,108.62961433774797,161261.70977311663,113472.41627636312,392.81433,258.0318133672841,409771.97802197805,268984.8302710996,380.61611,185.16933782347755,393714.0872435549,190507.3276363452,3098.3061,1418.3475836865573,3203256.7375590187,1448957.802250832,1138.68522,504.2572998323302,1174911.72230811,512505.4887131967,1837.45526,760.8835459202992,1890483.95520829,772130.7719450475,0.38305,100000,0,701724,7330.077716959846,0,0.0,0,0.0,33877,353.2987924622906,0,0.0,34804,359.73342247106507,1596631,0,57336,0,0,0,0,0,68,0.7103162996699118,0,0.0,0,0.0,0,0.0,0.05988,0.1563242396553974,0.3122912491649967,0.0187,0.3335448057097541,0.6664551942902458,24.559377957455187,4.415528901076789,0.3160016977928693,0.2398132427843803,0.2171052631578947,0.2270797962648557,11.259260518189787,5.731073850225312,19.83379385493372,12274.93372007018,53.46614289999861,13.581993770428404,16.827813712571835,11.368802306466463,11.687533110531916,0.5666383701188455,0.7831858407079646,0.7098723975822699,0.5962854349951124,0.1102803738317757,0.7382602001539645,0.913953488372093,0.8784810126582279,0.7431906614785992,0.1290322580645161,0.5013184881336068,0.7028571428571428,0.6489945155393053,0.5469973890339426,0.1055099648300117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024,0.0046922663747935,0.0070097487243474,0.009272424439389,0.0115201984768528,0.0138139544353278,0.0162786430726575,0.0182703397874924,0.0207402712896993,0.0231855870611116,0.0252114625519044,0.0275459184197287,0.0293875704355694,0.0313491246138002,0.0334777674610543,0.0357076417453854,0.03773682575836,0.0398174557900741,0.0418221312242119,0.0438061116087237,0.0583020975808388,0.072622834184314,0.0859614174879429,0.0993074020746408,0.111545637576818,0.1271618250243139,0.138840573561853,0.150086721501612,0.1613898706873538,0.1722337197207716,0.18551738989986,0.1976246105919003,0.2087093617483962,0.2179138098831042,0.2276347634763476,0.2382360760334972,0.2477204495485541,0.2573680063041765,0.2659050128330342,0.2730232611462047,0.2799370355795273,0.287165205995577,0.293289107386128,0.2987259159728387,0.3035651338900436,0.3090353126849477,0.3133801494611138,0.3177436992955418,0.3218367003584879,0.325887735861496,0.3240749458619715,0.3231822117168497,0.3222020517583485,0.3210917755794642,0.3202216313373639,0.3189215671264755,0.3168127313569779,0.3168729684473191,0.3178996555134895,0.3190330390202222,0.3189027803694719,0.3189626335569941,0.3206186644372453,0.3220085993717557,0.3232594367884961,0.323933796824738,0.3244460814869382,0.3284849241525688,0.3314403177478921,0.3352578453320765,0.3372460496613995,0.3380467472167994,0.3430060925821242,0.3432813210119679,0.3477408513816281,0.3522888154789995,0.3544804503270957,0.3553452788403463,0.3575923392612859,0.3528511289705319,0.0,2.0612140363531286,57.13170549750807,172.59464765870223,256.39613886703256,fqhc5_100Compliance_baseline_low_initial_treat_cost,6 -100000,95740,45287,428.48339252141216,6124,62.544391059118446,4799,49.51953206601212,1850,18.957593482348027,77.33281654085012,79.69983975095722,63.319784280511655,65.07131923875687,77.102902888875,79.47067969667106,63.23504424472506,64.98937415033832,0.2299136519751243,229.1600542861687,0.084740035786595,81.94508841854997,156.26336,109.9258432793624,163216.37768957592,114817.0495919808,396.3218,260.2088860417189,413335.4501775642,271168.1507999655,385.49974,187.72318737198128,398790.43242114055,193125.08428540587,3102.92039,1424.0107332054336,3202715.395863798,1449198.6623829936,1080.89526,481.55008506093935,1112198.8406099854,486261.4910708624,1800.72208,754.878536664926,1846015.5629830796,758655.6781470765,0.3824,100000,0,710288,7418.926258617088,0,0.0,0,0.0,34129,355.8178399832881,0,0.0,35311,364.9989555044913,1585691,0,56987,0,0,0,0,0,72,0.7415918111552121,0,0.0,0,0.0,0,0.0,0.06124,0.1601464435146443,0.3020901371652514,0.0185,0.327545753167527,0.672454246832473,24.65639150759777,4.281917755587807,0.3256928526776412,0.2479683267347364,0.2196290893936236,0.2067097311939987,11.241681237207167,5.864326779183068,19.699497500984865,12216.419125839197,54.480350955876254,14.340403846857322,17.551828707752072,11.759478870350982,10.828639530915884,0.5699103979995832,0.8084033613445378,0.6871401151631478,0.5683111954459203,0.1008064516129032,0.7501909854851031,0.92901878914405,0.8600508905852418,0.7359307359307359,0.1407766990291262,0.5022922636103152,0.7271448663853727,0.629059829059829,0.5212636695018226,0.0903307888040712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024926790219781,0.004645360218271,0.0068128744034927,0.0093310700236834,0.0115065315590282,0.0138832301173402,0.0162861134623033,0.01843797856049,0.0208993681110815,0.0232129509220671,0.0253029588468084,0.0275903849510725,0.0297048027391344,0.031626862751156,0.0337174870773707,0.0357737190817286,0.0378624689312344,0.0395911166459111,0.0417693483482546,0.0437124313737746,0.0582425957051436,0.0722431471019041,0.0857250715686377,0.0986953459278182,0.1109483203862005,0.1267420958020514,0.1389436843779828,0.1502788658038147,0.1609685240368697,0.1712189943055689,0.1843298125477782,0.1956531146547807,0.2065616912068553,0.2173570796024795,0.2271522377553153,0.2370871485988241,0.2466105004742509,0.2556922418935497,0.2639494234086988,0.2715155956579489,0.2786560807370029,0.2853748185606592,0.2918971419095787,0.2968144924408637,0.3018556099694985,0.3060728645075355,0.3103603716410809,0.3153575018769007,0.3206503433087187,0.32511521650138,0.3231407519161604,0.3221507922304971,0.3212267275520415,0.3200422154433344,0.3187823602928049,0.3170649509803921,0.3151138126444423,0.3160416051448633,0.3158316838441062,0.3173926992727791,0.3182626270187323,0.3186784959196981,0.3186153524367287,0.319483185682726,0.3210683062734172,0.3212648468430923,0.3220546734699695,0.3253538848694558,0.3291205897840969,0.3331875819851334,0.3366719781470521,0.3390389113331916,0.3418287080737524,0.3416672999468044,0.3449761213596778,0.3425772952560774,0.3471313346522599,0.3533212194629517,0.3591220850480109,0.3658629927286643,0.0,2.233657826827053,57.28700656048326,177.3365918642686,262.6959475411373,fqhc5_100Compliance_baseline_low_initial_treat_cost,7 -100000,95771,44997,425.90136889037393,5937,60.65510436353384,4674,48.13565693163901,1881,19.149847030938385,77.34910350822409,79.67729473467247,63.34642956891118,65.0665733324028,77.1107238136576,79.44608044403148,63.25618479013025,64.98272087036354,0.2383796945664897,231.21429064099172,0.0902447787809279,83.85246203926044,154.89848,108.96500446554136,161738.39680070168,113776.61762489832,390.74519,256.9865368057597,407302.3984295873,267637.3085858556,373.95674,182.16612869462907,386865.4916415199,187317.58484117183,3054.89631,1410.4391356925107,3145015.808543296,1427943.6527680713,1117.89437,503.1402527386506,1145446.7740756597,503563.9116665824,1835.06292,776.1244945694394,1869307.076254816,768210.7638196958,0.38016,100000,0,704084,7351.7453091228035,0,0.0,0,0.0,33680,350.9935157824394,0,0.0,34168,353.21757108101616,1597057,0,57312,0,0,0,0,0,80,0.814442785394326,0,0.0,0,0.0,0,0.0,0.05937,0.1561710858585858,0.3168266801414856,0.01881,0.3253634894991922,0.6746365105008078,24.580866342189,4.357951586377856,0.3243474540008558,0.2327770646127513,0.2250748823277706,0.2178005990586221,11.309873072286416,5.963251381099723,19.902411710017983,12165.133624208676,53.00163595851794,13.159183059554838,16.94346033103728,11.73217009199394,11.1668224759319,0.5592640136927685,0.7803308823529411,0.6992084432717678,0.5627376425855514,0.1110019646365422,0.7170846394984326,0.8985849056603774,0.8579088471849866,0.7003891050583657,0.1531531531531531,0.5,0.7048192771084337,0.647419072615923,0.5182389937106918,0.0992462311557789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0044293982302678,0.006685536313926,0.0087860966369056,0.0109712449668524,0.0132436174111323,0.0154304001304551,0.0174618564065928,0.0196691495774964,0.021761371774672,0.0238085481293283,0.0260435906908016,0.0282816241380373,0.0306925903434647,0.0329305509732761,0.0349112242684652,0.0368795206904044,0.038926967865031,0.0409626535320157,0.0429892526868282,0.0575060532687651,0.0711999497928956,0.0846597462514417,0.0969382928854461,0.1091848026558465,0.1243579717190505,0.1365770922775216,0.147620313746344,0.1582722295155454,0.1684220676945495,0.1817604511990356,0.1940259768349789,0.2056955831502946,0.2160755104942525,0.2255700325732899,0.2356049360834791,0.2447760860829575,0.253655135183769,0.2618958453908918,0.2700551904183937,0.2769777099166001,0.2839409397229502,0.2912534027695585,0.2961280812971107,0.3024487416188903,0.3080897130808971,0.3121760685044693,0.3168132805438505,0.3208554763447829,0.3249841471147749,0.3241232444672076,0.3236744250103291,0.3227642161903286,0.3212810215814867,0.3204144339384583,0.3189367754565197,0.3172362555720653,0.3176378004393875,0.3186747604269686,0.3190893357360786,0.3197066362326703,0.3204585886538841,0.3215452261306533,0.3221143087320413,0.3219014543086607,0.3215817554137462,0.3230430304417487,0.3277231168338131,0.3294628361685607,0.3329604921503615,0.3347830067753158,0.3373847220001066,0.3358759216882787,0.3396327467482785,0.3454062766663506,0.3475075075075075,0.3546132339235787,0.3552550706822373,0.3582962138084632,0.3553359683794466,0.0,2.619475048973421,55.37239835170448,170.38292073034316,258.05137991193885,fqhc5_100Compliance_baseline_low_initial_treat_cost,8 -100000,95673,44861,424.4771252077389,6134,63.00628181409593,4820,49.86777878816385,1920,19.681623864622203,77.31532774038504,79.70744946010439,63.31028192710126,65.07616134812864,77.0786039732331,79.47312057622663,63.22121025571608,64.99107688442884,0.2367237671519433,234.32888387775108,0.0890716713851773,85.0844636998005,155.97648,109.68793169391078,163030.82374337586,114648.78460371346,394.0557,258.2338529974753,411356.1610903808,269392.1233362475,375.62031,182.32233781530252,390050.1395378006,188476.40228414023,3197.61332,1458.4188657452696,3306955.034335706,1489145.1745221235,1197.34045,527.9594860763369,1236434.751706333,536841.8558062448,1890.6748,795.884241538495,1938606.6915430685,798497.1876279917,0.37808,100000,0,708984,7410.491988335267,0,0.0,0,0.0,34005,354.875461206401,0,0.0,34374,356.7464174845568,1589209,0,57051,0,0,0,0,0,68,0.7003020705946296,0,0.0,0,0.0,0,0.0,0.06134,0.162240795598815,0.313009455493968,0.0192,0.342874922215308,0.657125077784692,24.797944132248013,4.482619741228386,0.3228215767634855,0.2197095435684647,0.2246887966804979,0.2327800829875518,11.258169479408862,5.682154147099477,20.39387176987696,12142.002002839705,54.53108143347222,12.571404133078364,17.64851203397403,11.906631428253943,12.404533838165888,0.554149377593361,0.7969782813975449,0.6902313624678663,0.5530932594644506,0.1372549019607843,0.7240031274433151,0.9285714285714286,0.8668280871670703,0.7172995780590717,0.1872509960159362,0.4927986444507201,0.723935389133627,0.626421697287839,0.5070921985815603,0.1228473019517795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020057945174949,0.0043796508445021,0.006779110596927,0.0093572836445654,0.0116984049479166,0.0140565317035905,0.0162173740093632,0.0184159993462984,0.0203305244211732,0.0224570673712021,0.0247679606174042,0.0269751101706232,0.0292577542307494,0.0313868537924923,0.0336089348568833,0.0355687483193016,0.0376963567787126,0.0397745554944313,0.0417559554769582,0.0435679889933501,0.0580411250888118,0.0717770983414307,0.0849444759325734,0.0975111812680873,0.1093403693931398,0.1251376185636856,0.1368757499495609,0.1483067548709426,0.1586548226063346,0.1683877200515242,0.1807637998124454,0.1928204017542909,0.203857918857429,0.2142192749198428,0.2240809673795731,0.2343807189361254,0.2439882501424056,0.2529034436191762,0.2616752392955683,0.2690112107109287,0.27624430982359,0.2838494409647017,0.2896235686966406,0.2953705481424594,0.3009150676275079,0.3062794309804985,0.3108771314820843,0.3151312357663584,0.3197996479602402,0.3239187530520397,0.3229621248855126,0.3213400528750826,0.3204095428555333,0.3190212439803901,0.3180359053620259,0.3168124243770198,0.3150923390989223,0.3160369630042272,0.3163578667212611,0.3166895518661839,0.3173813885669421,0.3192542907871375,0.3192041884816753,0.3198211291224148,0.3203897509924215,0.3220559870718865,0.3237420350315741,0.3269607533337547,0.3292153471462355,0.3318025716795783,0.337298682284041,0.3394720034064296,0.3415991902834008,0.3445571955719557,0.3466831166366138,0.3477378536468903,0.3503039513677811,0.3504086107235399,0.348075348075348,0.3524774774774775,0.0,1.9512337764351848,56.378164890263946,174.14719052213297,273.3259550252246,fqhc5_100Compliance_baseline_low_initial_treat_cost,9 -100000,95624,44969,426.4306031958504,6019,61.69999163389944,4666,48.18873922864553,1846,18.896929641094285,77.3146043072854,79.73347013992348,63.296484254502126,65.08270377983074,77.08324710693408,79.50423942969447,63.210483435507165,64.99985015917443,0.2313572003513258,229.2307102290181,0.086000818994961,82.85362065630864,154.36762,108.5997367748343,161431.8790261859,113569.53983815185,388.50985,254.9683532966696,405701.2256337321,266048.5268307847,373.19388,181.8232263808391,386246.01564460807,186949.93168939205,3054.71031,1400.119879286373,3159475.0899355807,1429166.348705738,1099.43731,484.6158172500028,1135337.373462729,492380.0690726211,1808.51956,758.6719967189867,1854832.740734544,763367.9792817534,0.38063,100000,0,701671,7337.81268300845,0,0.0,0,0.0,33505,349.75529155860454,0,0.0,34137,352.9866979001088,1598822,0,57323,0,0,0,0,0,68,0.7006609219442818,0,0.0,2,0.0209152514013218,0,0.0,0.06019,0.1581325696870977,0.3066954643628509,0.01846,0.3457438345266507,0.6542561654733492,24.518345942048647,4.288510217723515,0.3326189455636519,0.2293184740677239,0.2173167595370767,0.2207458208315473,11.49585443275243,6.137499982136622,19.68306411273905,12148.405708399045,52.8806281564484,12.77016815376224,17.46634162825258,11.443768522359177,11.200349852074414,0.5608658379768539,0.7822429906542057,0.6849226804123711,0.5986193293885601,0.1067961165048543,0.7401883830455259,0.9434447300771208,0.854320987654321,0.7446043165467626,0.1138613861386138,0.4935141509433962,0.6901615271659325,0.6251089799476897,0.5434782608695652,0.1050724637681159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0043504274371013,0.0064461769602468,0.0088502768886856,0.0110270182291666,0.0132511713179873,0.0155139176466988,0.0176933292471141,0.0199138803939818,0.0220274241943246,0.0241743589743589,0.0264817668207498,0.0284553263721002,0.0306221278875677,0.0326080224612399,0.0346792121180788,0.0369894523074372,0.0390980253732273,0.0409626269352422,0.0430112012682255,0.0573608570681996,0.0715250934917193,0.0849303273093845,0.0980736842105263,0.1103769303032542,0.1262441235017576,0.1386401538085678,0.1499136773450987,0.160391082966069,0.170113115123911,0.1830843087545175,0.1953114839380934,0.2068882859913487,0.2170393172879944,0.2257310715033673,0.2353091324758343,0.2444593461860855,0.2537602667958583,0.2612119215080276,0.2687234774630118,0.2760125981334383,0.2818496676963399,0.2880142053862089,0.2942967420228706,0.299984217746537,0.3057916389525287,0.3103892530144594,0.3157352791620055,0.3202965301317049,0.3241129138636064,0.3236153173161047,0.322369054330936,0.320945565197791,0.3199352264183679,0.3193423597678916,0.3173809706355899,0.3162867378967058,0.3175141057064368,0.3182199832073887,0.3187921262939588,0.3195837700254529,0.3201654194564789,0.3203379224030037,0.320739997771091,0.3217541089499748,0.3222222222222222,0.3213536647582337,0.3226601753893206,0.3262757682514214,0.3283593873361756,0.3292082561763245,0.3305737186247627,0.3342357088894485,0.3346477591567453,0.3387988381898248,0.3435597469261072,0.3428571428571428,0.3472222222222222,0.3470394736842105,0.3587756683456025,0.0,2.410669175499798,55.66239019623223,171.41584195521784,254.57013454272771,fqhc5_100Compliance_baseline_low_initial_treat_cost,10 -100000,95642,45071,426.569916982079,6026,61.64655695196671,4807,49.64346207733004,1840,18.79927228623408,77.29129418892526,79.69098368878952,63.29829466637945,65.0696669929625,77.05891088494403,79.46301986351442,63.21136417021167,64.98741263071501,0.232383303981237,227.9638252750971,0.0869304961677812,82.2543622474825,153.63392,108.10375948408874,160634.36565525606,113029.5889714652,387.98561,254.6302416039196,405071.5480646578,265639.74154024327,378.60457,184.5047383904099,392157.5458480584,190068.43639539217,3161.56327,1444.5561169738585,3266366.481253006,1471122.5998764727,1156.92451,509.6574101727993,1192570.8161686289,515813.2899326763,1809.55344,761.5117487856388,1851582.338303256,760664.5037847126,0.38097,100000,0,698336,7301.562075238912,0,0.0,0,0.0,33465,349.2712406683256,0,0.0,34745,359.5909746763974,1600998,0,57460,0,0,0,0,0,50,0.5227828778151858,0,0.0,0,0.0,0,0.0,0.06026,0.1581751843977216,0.3053435114503817,0.0184,0.3283036848792884,0.6716963151207116,24.386093871644807,4.374913771683973,0.331183690451425,0.226752652381943,0.217391304347826,0.2246723528188059,11.206583096593215,5.800459781918594,19.674953156336844,12231.028516874909,54.43798446453375,13.059325238124991,18.064134982698597,11.558639492902213,11.755884750807954,0.5679217807364261,0.8045871559633028,0.7091708542713567,0.5712918660287082,0.1175925925925926,0.7448591012947449,0.9348370927318296,0.8662131519274376,0.7450980392156863,0.1513761467889908,0.5014310246136233,0.7293777134587555,0.6490008688097306,0.5151898734177215,0.1090487238979118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0045118118219608,0.0068004425362605,0.0091962198963519,0.0115374049995421,0.0135662270204206,0.0156004649550339,0.0180631854105826,0.0205913626697202,0.0230888948047426,0.0251148576585445,0.0271449992810632,0.0290619920581034,0.0313665684314654,0.0333959615146384,0.0355687483193016,0.0377532514638064,0.0395801102677783,0.0418487534856619,0.0438186784545132,0.0584491587417703,0.072610717727406,0.0852810852810852,0.0977306696419173,0.1099911340032086,0.1250754199701495,0.1368360706209591,0.1490082450944883,0.1600735577128683,0.1707411344091216,0.1833061968277245,0.1954367765060045,0.2070684531908177,0.2167662966125818,0.2260268688627572,0.23698774469029,0.2471342703282461,0.2564902168284061,0.2647359338812951,0.2719564594672014,0.2787109171518863,0.2852797341881742,0.2911668225903864,0.297533944249868,0.3020260738434596,0.306689867091185,0.3111322788459128,0.3153797145769623,0.3200902466222349,0.3249815186397718,0.3240341613233471,0.3232587612960105,0.3222074880794515,0.3212202781516375,0.320601369455195,0.3184114747301012,0.3164231666111455,0.3178608463779566,0.318698824899791,0.3191866396978538,0.3197115384615384,0.3204513007614213,0.3212919766317824,0.3224484310958812,0.3238022009707338,0.324467946547188,0.3273258784128966,0.3303336259877085,0.3351939617342461,0.3375591145729841,0.3401320282267243,0.3449517957410742,0.3494538796641202,0.3536165327210103,0.3615733736762481,0.3633968139896993,0.3663213236431112,0.3704009921455147,0.3776418242491657,0.3779047619047619,0.0,2.388820730256988,57.40726952484261,172.95980467610838,266.98047246676634,fqhc5_100Compliance_baseline_low_initial_treat_cost,11 -100000,95631,44896,426.3575618784704,6020,61.56999299390365,4730,48.85445096255398,1921,19.72163838085976,77.27514686010801,79.68696780087579,63.27600815666828,65.0568719650037,77.03520151310029,79.44828456690338,63.186760609798384,64.97056192183061,0.239945347007719,238.68323397240945,0.089247546869899,86.31004317308566,154.97394,108.99754655489244,162054.08288107414,113977.21089907296,390.47704,256.1881966414694,407692.3905428156,267269.13263692084,375.97868,182.83543349468184,389269.69288201525,188172.6491111833,3108.34737,1419.9505995709017,3213185.5047003585,1447686.4450415175,1116.84035,498.6036331056745,1153077.6735577376,506630.0405935037,1881.5298,789.8869106767457,1933431.669646872,797098.2445278751,0.37916,100000,0,704427,7366.09467641246,0,0.0,0,0.0,33659,351.3295897773734,0,0.0,34314,354.9685771350294,1591630,0,57128,0,0,0,0,0,77,0.8051782371825036,0,0.0,0,0.0,0,0.0,0.0602,0.1587720223652284,0.3191029900332225,0.01921,0.3301647655259822,0.6698352344740177,24.75187361399921,4.368882971498795,0.3173361522198731,0.2325581395348837,0.2251585623678647,0.2249471458773784,11.123207087080193,5.690779452398854,20.433188883790365,12149.72524084608,53.54971810515347,13.16482492849591,16.79404311594163,11.955845644743798,11.63500441597213,0.5587737843551797,0.7836363636363637,0.698201199200533,0.5737089201877934,0.1146616541353383,0.7285140562248996,0.9121951219512195,0.856338028169014,0.7450980392156863,0.1733333333333333,0.4981348637015781,0.7072463768115942,0.6492146596858639,0.519753086419753,0.0989272943980929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0043886766062252,0.0065445690223732,0.0089283900457084,0.0113406360927186,0.0135550757699201,0.0155606313986213,0.0177639840328327,0.0199768946868003,0.0221473623853211,0.0240530089339747,0.0263093012266031,0.0283242108728754,0.0304895018398837,0.032393638992152,0.034283349712926,0.0362058957668228,0.0383433034230641,0.0403138528138528,0.042267181145062,0.0567122371336594,0.0710655643226137,0.08493182343425,0.0975843578479399,0.10932829120409,0.1252078501149133,0.1378929246987311,0.1491754522487181,0.1598206258829573,0.1697798890847341,0.1828565259635107,0.1955319379676824,0.2062898566523137,0.2165229979601237,0.2264394583199973,0.2364939176803866,0.2459845762958485,0.2551148225469729,0.2635538911590953,0.270674446384269,0.2775476579994663,0.284546265015015,0.2907287204376357,0.2953374100460132,0.3003906392610712,0.3055133854185952,0.3100378645402342,0.3146518233578316,0.3198479324259449,0.3241671073506081,0.3233064450859255,0.3221649484536082,0.3212981115044497,0.3201706805525421,0.3188679525884505,0.3160967984183666,0.3139455728465813,0.3145770392749245,0.3156279307698866,0.3166758746056923,0.3168734305310895,0.3178037263153735,0.3189942378208486,0.3199087125788696,0.3213830580201495,0.32091108099656,0.3209180477248134,0.3242494807728617,0.326888599852357,0.3287099594626818,0.3313916446709747,0.3362615130703295,0.3385292269013199,0.3384930571363533,0.3448243383253273,0.3468366495889431,0.3508610086100861,0.3561253561253561,0.360551724137931,0.3636015325670498,0.0,2.361751856332836,54.36637666836571,178.9487870483137,259.5376737202324,fqhc5_100Compliance_baseline_low_initial_treat_cost,12 -100000,95676,44663,423.2304862243405,5929,60.73623479242443,4666,48.09983694970526,1859,19.012082444918267,77.28391542799022,79.6819873727349,63.28504443165552,65.06000958109787,77.0490111960587,79.44838267809035,63.19839030173037,64.97627927751789,0.2349042319315231,233.6046946445407,0.0866541299251508,83.73030357998346,153.8559,108.26542272907786,160809.29386680046,113158.39158104212,389.66514,256.2724940977536,406618.9326476859,267197.7132172683,372.42736,181.64235241388016,384590.3988461056,186320.70932657784,3072.82152,1408.850165077309,3170122.444500188,1430949.240224622,1124.45036,494.52785027798006,1157812.2622183205,499420.91044564976,1823.39706,767.0392733648603,1866821.4599272544,769265.130703135,0.37819,100000,0,699345,7309.513357581838,0,0.0,0,0.0,33684,351.39428905890713,0,0.0,34130,352.0632133450395,1598108,0,57361,0,0,0,0,0,53,0.5539529244533634,0,0.0,1,0.0104519419708181,0,0.0,0.05929,0.1567730505830402,0.313543599257885,0.01859,0.3459807073954984,0.6540192926045016,24.479220209674573,4.4129167200339525,0.3261894556365195,0.2306043720531504,0.2179597085297899,0.22524646378054,11.237846258137187,5.813224319886971,19.935592781803315,12094.850693018743,52.91512799138958,12.943670214985904,17.175807378657396,11.471798929169667,11.323851468576612,0.5696528075439349,0.7825278810408922,0.7082785808147175,0.6106194690265486,0.1113225499524262,0.7470449172576832,0.922879177377892,0.8672985781990521,0.7701612903225806,0.1523809523809524,0.5033853400058875,0.7030567685589519,0.6472727272727272,0.5591677503250976,0.1010701545778834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597839524938,0.0047265498214865,0.0071677309968831,0.0096238859361185,0.0118840491234496,0.0140982804987368,0.0161048498138609,0.0184050332965641,0.0204039887496803,0.0225268139770736,0.0247453140869779,0.0270645171233932,0.0290289054219533,0.0308252001937525,0.0331458064516129,0.035068668817738,0.0370331993202636,0.0388428122112999,0.0405038537950259,0.042709299538306,0.0578397576517288,0.0719243694839662,0.0843670633671263,0.0968390260327882,0.1090037889581948,0.1237615378101448,0.1364678899082568,0.1481075209269633,0.1583290576363947,0.1682301169904475,0.1810715555986678,0.1925043327556325,0.2039283147877969,0.2140205643704214,0.2236401304769461,0.2342572345125376,0.243309111235327,0.2514228398192289,0.2602568473690192,0.268116690183662,0.2745634580154442,0.2807865023625555,0.2874224505047389,0.293482698172562,0.2993804243302131,0.3047765983707726,0.3090852130325814,0.3136004277584692,0.318810906075057,0.3223886506103596,0.3215411558669002,0.3205223469837076,0.3196829776451377,0.3176509650503096,0.3170949321912919,0.3154627798979263,0.3147658341120385,0.3146377073114716,0.3147141293940637,0.3159446708127815,0.3172677944462176,0.3181277270924236,0.3195289954289806,0.3197031039136302,0.3207624860727607,0.3218420914758736,0.3226018209321574,0.3257969917699366,0.3293098003438717,0.3326207442596991,0.335547568133218,0.3375907573268323,0.3392756614749484,0.3418796992481203,0.3445550079047708,0.3468378282887763,0.3520804755372657,0.359052247873633,0.3601564682872311,0.3620889748549323,0.0,2.639070516392908,55.28278952915176,168.35346423381895,259.98137541266976,fqhc5_100Compliance_baseline_low_initial_treat_cost,13 -100000,95654,45344,428.837267652163,6133,62.78880130470237,4809,49.6476885441278,1878,19.23599640370502,77.35161970545354,79.75747855706307,63.31721993396855,65.09420382528016,77.11687201140128,79.52324006646685,63.23061451672908,65.00988192635504,0.2347476940522597,234.23849059621205,0.0866054172394754,84.32189892512554,155.79498,109.62316348488837,162873.4605975704,114603.8466607652,396.21289,260.3625158847385,413581.4602630313,271558.7804845992,387.87632,188.93091479343605,401097.7376795534,194090.80457524757,3170.58996,1450.8768998309556,3277943.7138018277,1480096.200713989,1128.3942,500.1272036388071,1166045.1523198194,509233.1043540333,1843.4123,769.2777673419505,1891184.4355698663,776028.1290169954,0.38077,100000,0,708159,7403.3391180713825,0,0.0,0,0.0,34185,356.7231898300124,0,0.0,35408,365.891651159387,1586900,0,56903,0,0,0,0,0,74,0.7631672486252535,0,0.0,2,0.0209086917431576,0,0.0,0.06133,0.1610683614780576,0.306212294146421,0.01878,0.3296635137230578,0.6703364862769422,24.511850454810585,4.372288008901152,0.3177375753794967,0.2353919733832397,0.2260345186109378,0.2208359326263256,11.391921996444974,5.9438135309641424,19.892299182229376,12247.979663128564,54.47207805186396,13.464513054549094,17.297891101261655,12.056375536654102,11.653298359399113,0.5645664379288834,0.7765017667844523,0.7166230366492147,0.5804967801287948,0.103578154425612,0.7443841982958946,0.935096153846154,0.8858560794044665,0.7593360995850622,0.1385281385281385,0.4985787379192723,0.6843575418994413,0.656,0.5295508274231678,0.0938628158844765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113230868988,0.0049181159052882,0.0071650394787586,0.0094590750223522,0.0118707341138654,0.0143206355673253,0.016642023147912,0.0188500066373262,0.0208486707566462,0.0229437672846461,0.0250630937480764,0.0272108843537414,0.0295346491859962,0.0317013577459561,0.0337860868667045,0.0360859939166959,0.0379018717741434,0.0399248424702328,0.0419584057262351,0.0442312705281267,0.0591726487152962,0.0734598148846169,0.0866535119022629,0.099813756747372,0.1118861931044672,0.1270916461162325,0.1391304347826087,0.1498609142357743,0.1614335383792458,0.1716280068728522,0.1835112692763938,0.1954670538016511,0.2061615501850642,0.2164532019704433,0.2262494768607238,0.2365372035523821,0.2465555965271026,0.2557055518650709,0.2642811733720824,0.2721068181297666,0.2786678542922253,0.2845739396701845,0.2912518033252134,0.2968284185194497,0.3021599320470817,0.307968740385207,0.3124586273652657,0.3168334433890384,0.32216984178237,0.3265384008001263,0.3250094080963389,0.3230044756857684,0.3219678861674306,0.3207038292348741,0.3193209977297345,0.3176724203831394,0.3161337209302325,0.3165497114375656,0.3161802355350742,0.3175905936089354,0.3179757176047366,0.3192895905278737,0.3203968852047224,0.3210886476606557,0.3224161459455577,0.3234668465290028,0.3245935132374223,0.3276629072681704,0.3315500541976992,0.3352319924053637,0.3370398947033994,0.3423973071056646,0.3455818022747157,0.3493902900855866,0.3592069578228747,0.3599140503760296,0.3619150246305418,0.3672190784155214,0.3764641786979025,0.3715474839197881,0.0,2.392197883451968,56.407981591887065,178.15440187932415,264.5891865393562,fqhc5_100Compliance_baseline_low_initial_treat_cost,14 -100000,95793,45089,427.1606484816218,5957,61.06918042028123,4665,48.14548035869009,1846,18.87403046151597,77.3507064425629,79.67984909647417,63.34838135415546,65.07036015011968,77.12276555439757,79.45390011856378,63.26353981808692,64.98885645307749,0.2279408881653211,225.9489779103916,0.0848415360685379,81.50369704219429,154.49148,108.69453804315906,161276.3771883123,113468.1428112274,390.87893,257.5489851929533,407505.5275437662,268329.2820732504,378.95781,184.46173151884145,392673.4208136294,190274.5230602305,3074.90538,1412.950948617706,3175546.699654463,1441244.882185061,1125.8345,501.59320643641183,1161297.9654045703,510534.2326787586,1812.90798,764.3392077681493,1856081.4673305985,767166.6416724935,0.38083,100000,0,702234,7330.744417650559,0,0.0,0,0.0,33671,350.92334512960235,0,0.0,34626,358.4708694789807,1597957,0,57375,0,0,0,0,0,76,0.793377386656645,0,0.0,1,0.010439176140219,0,0.0,0.05957,0.1564215004070057,0.3098875272788316,0.01846,0.3428753180661578,0.6571246819338422,24.234350566754586,4.406501232330967,0.3245444801714898,0.2261521972132904,0.2227224008574491,0.2265809217577706,11.357072951983248,5.862359088925553,19.750159432994888,12155.92542500292,53.19237023291247,12.66523224827227,17.133974191329557,11.735111015826291,11.658052777484349,0.5532690246516613,0.7734597156398104,0.6941875825627477,0.5678537054860443,0.1173131504257332,0.7454688731284476,0.9326683291770572,0.8931297709923665,0.7,0.1813953488372093,0.4814487632508833,0.6758409785932722,0.6244424620874219,0.5237483953786907,0.1009501187648456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020764960901098,0.0042984590429845,0.0065755426344789,0.0085730537948967,0.0107776150967951,0.0129801378439736,0.0151135298194121,0.0174505821963241,0.0194365247248536,0.0216127711829717,0.0237004703206172,0.0257446874005971,0.027768357227275,0.0301208540075353,0.0321419732717373,0.0341845905907146,0.0361843466743926,0.0385121756528409,0.0406368130270427,0.0427354876322145,0.0574314453858675,0.0712045169385194,0.0842505817975973,0.098648535037202,0.111039679612162,0.1268247307167848,0.1383716491347132,0.149811099877614,0.1603288139212127,0.1704446802353622,0.1836244846997535,0.1956446557873122,0.2076144117519231,0.2182590836592453,0.2275760474038894,0.23680047787082,0.2452479108635097,0.2547012963670269,0.2622190995319742,0.2703352019219769,0.277289474596043,0.2840926343326287,0.2898026276888873,0.2954564501646213,0.300897840330017,0.3054857930762791,0.3104900698671399,0.314866840399161,0.3197587898080929,0.3236007167703172,0.3229119062340385,0.3213505079526552,0.3201773523822929,0.3188879094836929,0.3181244337506869,0.316182775940218,0.3150142540386443,0.3162203481777383,0.3166945878491572,0.3171376513879461,0.3187586828370818,0.3194749658490229,0.3207555098010379,0.3206326383896477,0.3215998072521382,0.3218291630716134,0.3237381252146045,0.3259343578068677,0.3298998165655425,0.3320089001907184,0.3330588342940799,0.337008295424137,0.3385562040091347,0.3398969310053072,0.3403270012286173,0.3443053070960047,0.345679012345679,0.3444375899650421,0.3516606195925202,0.3549514563106796,0.0,2.144734451912196,55.59614564708384,178.01301656112616,251.29680149409683,fqhc5_100Compliance_baseline_low_initial_treat_cost,15 -100000,95722,45214,427.87446981885046,6207,63.297883454169366,4863,50.08253066170786,1877,19.14920290006477,77.31652017658898,79.67628425012133,63.31665033110207,65.0621213416708,77.0786946020146,79.44350518483586,63.22779212971232,64.97808253965272,0.2378255745743871,232.7790652854702,0.0888582013897476,84.03880201808533,155.15962,109.229752828589,162094.00137899333,114111.44024214808,394.78894,259.2105884357578,411734.731827584,270099.30011226854,386.73382,188.3722430779665,399380.97824951424,193300.98183960657,3192.76341,1472.1590613846497,3289938.3945174566,1492670.6726346866,1168.71732,518.1860368731392,1200220.6389335785,520796.5740673872,1839.75994,777.8288469302461,1878925.5134660788,776104.688390407,0.38209,100000,0,705271,7367.909153590606,0,0.0,0,0.0,34104,355.55044817283385,0,0.0,35436,365.53770293140553,1589068,0,57051,0,0,0,0,0,65,0.6790497482292472,0,0.0,3,0.0313407576105806,0,0.0,0.06207,0.1624486377555026,0.3024005155469631,0.01877,0.3358954650269024,0.6641045349730976,24.66535607124296,4.371062310125996,0.3349784083898828,0.2315443142093358,0.2150935636438412,0.2183837137569401,11.283469616276149,5.825588996980876,20.1515788969794,12256.032733374055,55.32292934054291,13.632842459933403,18.38178176439727,11.698192217229533,11.61011289898271,0.5648776475426691,0.8001776198934281,0.6783302639656231,0.5841300191204589,0.1224105461393597,0.743993993993994,0.9250585480093676,0.8912037037037037,0.7104247104247104,0.1261682242990654,0.497309544038516,0.7238912732474965,0.6015037593984962,0.542566709021601,0.1214622641509434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.0048053040824809,0.0070844963207307,0.0093886218844305,0.0117594401041666,0.0139734789073798,0.0162259186358398,0.0185043350387549,0.0209507060255007,0.0232812899923214,0.025203535467465,0.0271288775709283,0.029235736909218,0.0313150036041602,0.0334935632942729,0.0357194519642082,0.037732138050972,0.0398016659232596,0.0416943866943866,0.0436422357660051,0.0589260918136164,0.0728419995186421,0.0863491930324989,0.099303905280646,0.1109869253479544,0.1275304071919619,0.1389820079775948,0.1499010027463754,0.1610594130279169,0.1715983949531146,0.1848404541830952,0.1963939784201469,0.2073019532779397,0.2180283414975507,0.2276630410850323,0.2381902418478863,0.2473169914568094,0.2571203510943566,0.2650163443203486,0.2718128494180185,0.2786437539778973,0.2861053271880776,0.2925056524261041,0.2974237190558434,0.3029768923140506,0.3076230307067866,0.3116006462197397,0.3163665537528971,0.3207605823532459,0.3254290995510958,0.3239846433622954,0.3224067819973809,0.3216736803456944,0.320471038108895,0.3195490961074545,0.3168748273851536,0.3149959573220032,0.315957534359312,0.3158562078064494,0.3173778247701654,0.3190897645489223,0.3206874702993822,0.3211645101663586,0.3230007172314865,0.3246549938585294,0.3266800427339292,0.3259312116454974,0.3300336255931617,0.3331930857964307,0.3381583121827411,0.3415,0.3465504411608376,0.3504972932141508,0.352006056018168,0.351947442515251,0.3545854644938741,0.3568796068796069,0.3599757183326588,0.359228650137741,0.3519230769230769,0.0,2.7737393491953672,57.8659088721996,178.52375480487785,267.9019790184039,fqhc5_100Compliance_baseline_low_initial_treat_cost,16 -100000,95685,44962,427.0157286931076,6087,62.52808695197784,4751,49.12995767361655,1871,19.302921043005696,77.40264542862671,79.78476721212132,63.35728834693722,65.11301834702651,77.17682978267321,79.55697493127396,63.27572831995966,65.03222656096598,0.225815645953503,227.7922808473676,0.0815600269775558,80.79178606053006,154.9812,109.08604818060152,161969.98484610964,114005.16400961638,390.27643,255.79645502281335,407356.4090505304,266813.03997406166,374.98993,181.7785798903617,388353.420076292,187187.29057598507,3137.32652,1407.8428473320264,3248837.686157705,1441438.8321456716,1171.36813,506.1621106259458,1210803.5846788944,515656.7302852814,1838.02426,752.2127670445494,1898194.973088781,767499.4349089377,0.38002,100000,0,704460,7362.272038459529,0,0.0,0,0.0,33704,351.6747661597951,0,0.0,34269,354.6219365626796,1600464,0,57292,0,0,0,0,0,69,0.7106652035324241,0,0.0,1,0.0104509588754768,0,0.0,0.06087,0.1601757802220935,0.3073763758830294,0.01871,0.3263703471022459,0.673629652897754,24.67340384487,4.36363135896885,0.328772889917912,0.2224794780046306,0.2233214060197853,0.225426226057672,10.912814807231312,5.60268640041686,19.70468083610329,12135.331590012029,53.316106008125,12.50499050836104,17.60803899187713,11.639767923522609,11.563308584364226,0.5514628499263313,0.750236518448439,0.6971830985915493,0.5721017907634307,0.1223155929038282,0.7296849087893864,0.884318766066838,0.8759305210918115,0.7149532710280374,0.15,0.4908321579689704,0.6721556886227545,0.635030198446937,0.5360094451003542,0.1159586681974741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569401828842,0.0046114709071928,0.0069689592209373,0.0094451722982236,0.0115719791338302,0.0135225953607722,0.0157921029290323,0.0177789571447525,0.0200500740892136,0.0219002005812763,0.0239754812521781,0.0257781701708278,0.027997121118651,0.0300109168057014,0.0321089558398679,0.0342208074084792,0.0362608461554391,0.0382907189108417,0.0401127358196226,0.0419272136068034,0.0560958539209643,0.0706829579838971,0.0840896928743061,0.0966099733888696,0.1085975236769389,0.1242171631685849,0.136020712413654,0.1461355870863359,0.1569949459872421,0.1672171227588573,0.1804526660349728,0.1929993507898723,0.2046623392156223,0.2147331139799521,0.2254946166789473,0.2354679475827873,0.2458932352613395,0.2541997933791493,0.262011799476837,0.2700497171266929,0.2768589795376643,0.2838012807801327,0.2898318087931543,0.2956390725705198,0.3007526999018217,0.3053146870349187,0.310523619735379,0.3149725222423881,0.320235020661157,0.3249486923117402,0.3231843200429588,0.3220884965456738,0.3211395228143015,0.3202399965468123,0.3195275031085322,0.3176517279277079,0.3161128308800303,0.3167349614817243,0.3181570523734932,0.319292438559963,0.3195433226825121,0.3197956577266922,0.3208002831386755,0.3222756196324478,0.3223293057153816,0.3241253739107816,0.327042413891261,0.3309731186164547,0.3326554227006557,0.3361587515348358,0.338434212324088,0.3412918354295459,0.3440812720848056,0.3503199268738574,0.3542000565664184,0.352878841398799,0.3549373280342403,0.3573869346733668,0.3557065217391304,0.3584834834834834,0.0,1.983119121069831,53.08975153471779,175.80018557241172,268.1461701304161,fqhc5_100Compliance_baseline_low_initial_treat_cost,17 -100000,95729,45154,427.35221301799874,6070,62.30087016473587,4726,48.79399137147573,1914,19.63877194998381,77.33907921770925,79.70598036665068,63.32552877917672,65.07541937264422,77.09487503916026,79.4618883201597,63.23462310580223,64.98687511562592,0.2442041785489976,244.0920464909766,0.0909056733744861,88.54425701829882,155.298,109.2639253417104,162226.7024621588,114138.7931992504,391.74469,257.7093216264564,408663.29952261073,268647.87225026527,379.85959,185.21311726202083,393065.9779168277,190584.501428927,3126.06167,1445.4462158694855,3231914.947403608,1476317.9453138402,1152.83684,511.6199918957871,1191185.398364132,521360.32121487486,1875.323,795.506181282211,1926836.214731168,803592.6437867994,0.38152,100000,0,705900,7373.941021007218,0,0.0,0,0.0,33808,352.5681872786721,0,0.0,34685,358.5538342613001,1592724,0,57123,0,0,0,0,0,65,0.6790000940153976,0,0.0,0,0.0,0,0.0,0.0607,0.1591004403438876,0.315321252059308,0.01914,0.3394683026584867,0.6605316973415133,24.24360292218785,4.388621581858534,0.3250105797714769,0.2257723233178163,0.2228099873042742,0.2264071096064325,11.143739503501676,5.771244364417016,20.566477500810787,12147.56278104782,53.95847341563923,12.836912600363227,17.43666372854206,11.826972582504776,11.857924504229157,0.5639018197206941,0.7994376757263355,0.685546875,0.5859449192782527,0.1327102803738317,0.7183951551854656,0.9197994987468672,0.8657074340527577,0.6917293233082706,0.1548117154811715,0.5039647577092511,0.7275449101796407,0.6184092940125112,0.5501905972045743,0.1263537906137184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408523740074,0.0047451028105608,0.0069628411639921,0.0090330840513737,0.0112611008819669,0.0135453054822841,0.0156528832916942,0.0176214152262912,0.0199799586903617,0.0221942276572645,0.0243674813090342,0.026580939371219,0.0288482305390145,0.03094897128669,0.0330821635012386,0.0352519027134348,0.0374387502460349,0.0394570248448494,0.0415436129944677,0.0434646719313233,0.0578967151836615,0.0724337445201251,0.0859746060370948,0.0997697136668103,0.1121293288902012,0.1274460028347189,0.1386136513122997,0.1498168810152457,0.1606539858944219,0.1713969933364094,0.1831564200657363,0.194737127077806,0.2053575314444879,0.2154886576277863,0.224785543601546,0.2343510942592962,0.2442124071695795,0.2529040972534894,0.2611449783741443,0.2690346021157835,0.275983007882583,0.2830301257677683,0.2891661738616203,0.2948440026348883,0.3002633463186126,0.3058190901595973,0.3099420318824646,0.3134764384605614,0.3171418969573197,0.3217096676378689,0.3213186163133058,0.3204181280517158,0.3200462323457277,0.3194317869490373,0.318583281291819,0.3162184938328353,0.3142608282524349,0.3147642843053455,0.3158020886834446,0.3154277122451536,0.3165124702084936,0.3177026679587841,0.3191627420198848,0.3197700429491768,0.3215477304913468,0.3230036687221919,0.3245864232743867,0.3266622612417005,0.3308616811920157,0.3343010538874528,0.3361797342344399,0.3370510699610438,0.3389948665948412,0.3422242661148156,0.3456627863312054,0.3505706134094151,0.3521017527532185,0.3500205170291341,0.351555929352397,0.3581684128831975,0.0,2.2963600355243345,57.932083294983165,177.39038104828353,251.97791169422,fqhc5_100Compliance_baseline_low_initial_treat_cost,18 -100000,95690,45149,429.1253004493678,5982,61.36482391054447,4712,48.7093740202738,1847,18.94659839063643,77.30793472821749,79.68559111549132,63.31631099018998,65.07086274613049,77.07915228649975,79.45626122486262,63.23230818509779,64.98848263143182,0.2287824417177404,229.3298906287049,0.0840028050921901,82.38011469866535,153.86668,108.32057630883662,160796.34235552303,113198.9744018976,389.93514,256.26005163860737,406957.8639356255,267267.91166834976,377.55123,184.00340341306904,391241.4985891943,189613.185860106,3107.83853,1418.7359017516285,3215521.5696520014,1450989.0583925785,1119.06703,493.7114710255179,1157227.7876476122,503762.3365317708,1809.76076,755.0917243998422,1858491.0857978887,762791.1043698156,0.38105,100000,0,699394,7308.924652523775,0,0.0,0,0.0,33664,351.2279235029784,0,0.0,34489,357.0488034277354,1599870,0,57399,0,0,0,0,0,70,0.731528895391368,0,0.0,0,0.0,0,0.0,0.05982,0.156987272011547,0.3087596121698429,0.01847,0.3361572890025575,0.6638427109974424,24.452534036238116,4.365555938777262,0.3100594227504245,0.239176570458404,0.2285653650254669,0.2221986417657045,11.285785493624449,5.881513159214109,19.64934833436398,12156.822098291545,53.47902691360947,13.5872182859886,16.634295426679685,11.890498105415867,11.367015095525304,0.5657894736842105,0.7728482697426797,0.7152635181382615,0.584958217270195,0.1146131805157593,0.7403008709422011,0.9345794392523364,0.8396946564885496,0.7531380753138075,0.1231527093596059,0.5018846042331111,0.6738197424892703,0.6694756554307116,0.5369928400954654,0.1125592417061611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021869874248223,0.0043674759839487,0.0066748496130007,0.008816120906801,0.0109226263119355,0.0130646409514887,0.0153052380418268,0.0174578866768759,0.0195465047332801,0.0217422458798239,0.0239781848749833,0.0260269612624359,0.0278806203463737,0.029751725558875,0.0318859124117719,0.0339601575503199,0.0357261273209549,0.037593048244931,0.0397682353430699,0.0417392029521833,0.0562588785827692,0.0706727095741006,0.0842137289255851,0.096960454354228,0.1093059787249744,0.1242954581504785,0.1365830371824113,0.1481714066757493,0.1590287569969662,0.169457166453938,0.181903356774395,0.1945024393937754,0.2055424489840293,0.2158702045546481,0.2262042262042262,0.2362407930442487,0.2456986007899846,0.254089507909007,0.2631943262411347,0.2713380757643447,0.2788551712959211,0.2849556072853182,0.2910175671196552,0.2972003646483063,0.3029816625322243,0.3074408506648903,0.3125274119371937,0.3168792446579427,0.3211098427852436,0.3254390949819604,0.3244011915513081,0.3233084779402643,0.3222948090245933,0.3207454279549963,0.3196278377372534,0.3176304611185229,0.3165207460982109,0.3165069643386348,0.3173365326934613,0.3183371807949035,0.3182979522825474,0.3184458320943601,0.3189078011207421,0.3207006868162598,0.320426013830992,0.3219154782153605,0.3230092288351096,0.3267429760665973,0.32811837830202,0.3294365581136427,0.3324342857142857,0.336066010114453,0.3397014170040486,0.3426520012221203,0.3424179554884949,0.3460532572515454,0.3498098859315589,0.3501609010458568,0.3553808620222282,0.3593335857629686,0.0,2.0329490778780515,55.293982292860505,176.75467752312474,259.05366348249623,fqhc5_100Compliance_baseline_low_initial_treat_cost,19 -100000,95698,45214,427.2294091830551,6210,63.522748646784684,4877,50.29363205082656,1921,19.592885953729443,77.38171245272493,79.75499289449294,63.34258245905804,65.0946104548656,77.13581579638361,79.51233119488128,63.25045421525481,65.00673991211869,0.2458966563413156,242.6616996116593,0.0921282438032307,87.87054274691286,154.66044,108.91758735854576,161612.57288553574,113813.44626436036,395.4465,258.9218410087926,412549.3636230642,269888.47952764475,385.30095,187.46953204856544,398276.2126690213,192546.21163077236,3212.79974,1468.6181579381257,3313973.7403080524,1491563.147021218,1167.69343,517.9402320402015,1203095.425191749,524181.4752723461,1880.68458,797.2980483852189,1920115.5301051224,796032.9437638351,0.38119,100000,0,703002,7346.026040251625,0,0.0,0,0.0,34047,355.0648916382788,0,0.0,35199,363.497669752764,1595544,0,57173,0,0,0,0,0,73,0.7628163597985329,0,0.0,0,0.0,0,0.0,0.0621,0.1629108843358954,0.3093397745571659,0.01921,0.3234439516745679,0.676556048325432,24.508077326335663,4.468200165666173,0.3251999179823662,0.2288291982776296,0.2241131843346319,0.2218576994053721,11.280374165754155,5.794748862773859,20.457155656656948,12216.872081215291,55.277852958983445,13.335261811904465,18.07417026215136,12.020063088244594,11.848357796683016,0.5644863645683822,0.78584229390681,0.694829760403531,0.5864592863677951,0.1229205175600739,0.7169811320754716,0.9124668435013262,0.8481308411214953,0.7304347826086957,0.1561181434599156,0.5106796116504855,0.7212449255751014,0.6381692573402418,0.5480880648899189,0.1136094674556213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205963377086,0.0049164208456243,0.0071640215935381,0.0094874347357942,0.0118396159244868,0.0138289205702647,0.0159673719092531,0.0182735105557597,0.0205677601382088,0.0227966014945234,0.0251068759418922,0.0272687138735741,0.0295245832519204,0.0317888708049197,0.0339108987523348,0.035846852156291,0.0380002485707183,0.0401183002127328,0.0421442389698999,0.0443133617500234,0.0590926181225717,0.0722930669849446,0.0856540261484543,0.0982178551139352,0.110590717299578,0.1256067768647482,0.1385870718560332,0.1500383321265812,0.1602153869165269,0.1699779012637044,0.1831328936592094,0.1943139250373514,0.206323826926842,0.2167386431968512,0.2263241845883064,0.2360965023970593,0.2462552560256081,0.2539002305832068,0.2631471482372158,0.2710740583809535,0.2784855532798741,0.2855489301999298,0.2916489135066041,0.2973934927197555,0.3025267249757045,0.3071282443124399,0.3117009832128293,0.3163467902051621,0.3211964262592257,0.325414831033846,0.3244766722273045,0.323229547390695,0.3223019558182074,0.3211366290385364,0.320895301297624,0.3185642090477426,0.3160422063562267,0.3156809141061109,0.3160089174792804,0.3168500124603937,0.3179625266464714,0.3173021916240901,0.3186160006673896,0.3197441155492154,0.3214182968929804,0.3230306487579733,0.3244370072040388,0.3286446611652913,0.3300991204802457,0.3327934263026903,0.3357087740002723,0.3381088825214899,0.3414063488048564,0.3426471714001378,0.3461901169370049,0.3485877726135145,0.3545914456538402,0.3506916192026037,0.3547400611620795,0.3584758942457232,0.0,2.556369703848827,55.29580688240778,186.9984338155925,267.8224542191868,fqhc5_100Compliance_baseline_low_initial_treat_cost,20 -100000,95849,45290,429.4984819872925,6158,63.02621832256988,4876,50.20396665588582,1961,20.010641738567955,77.44506122741345,79.72486824782045,63.40474875222951,65.08512800980195,77.20056834360084,79.481775486253,63.31543673076671,64.99868401932936,0.2444928838126117,243.0927615674534,0.0893120214627956,86.44399047258844,155.75164,109.5280297179956,162496.65619881274,114271.21442894088,395.95539,258.9681380627146,412395.2779893374,269479.4575896546,377.18535,183.50244337516375,389350.196663502,188181.6959694097,3230.56755,1471.3875289717623,3329449.060501414,1494446.6423090715,1164.38753,514.7162356805273,1194604.9411052803,517112.6358867147,1931.43004,802.6303073630413,1973534.5804338076,804267.1270914889,0.38363,100000,0,707962,7386.211645400577,0,0.0,0,0.0,34167,355.7261943264927,0,0.0,34495,355.809658942712,1595609,0,57309,0,0,0,0,0,76,0.782480777055577,0,0.0,1,0.0104330770274076,0,0.0,0.06158,0.1605192503193181,0.318447547905164,0.01961,0.3324022346368715,0.6675977653631285,24.47739139582772,4.4613265384161735,0.3234208367514356,0.2233388022969647,0.2212879409351927,0.2319524200164069,11.036446219577574,5.579973459533552,20.778739191171013,12270.260606273418,55.20244338334773,12.968997414908992,17.964959280798958,11.995893814447346,12.272592873192435,0.5518867924528302,0.7897153351698806,0.673430564362714,0.5848007414272475,0.1220159151193634,0.7245600612088753,0.9175,0.8537735849056604,0.7338709677419355,0.1531914893617021,0.4886522835528159,0.7155297532656023,0.6071118820468343,0.5403128760529483,0.1138392857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025202939330755,0.0044773549164801,0.0067529886537623,0.0089927327351711,0.0113398500213384,0.0134396842030297,0.0157153915098183,0.0177735629722536,0.0198919625442922,0.0220347648261758,0.0242678681138644,0.0265217168350341,0.0284293989564931,0.0303444870753057,0.0325468782196579,0.0343307769325254,0.0361235211384131,0.0380605985244134,0.0399480923955359,0.0421713072793107,0.0567540795578958,0.0713181371832104,0.085326018677499,0.0985268194409468,0.1113577545395249,0.1272122843121735,0.1398456277065444,0.151773667491793,0.1625883632408918,0.1728089887640449,0.1858928206836523,0.1985229812457487,0.2097738892567545,0.22052883250726,0.2304025481904552,0.2410519677372957,0.2504792688363798,0.2590312032989876,0.2675682722501218,0.2742708726644469,0.281500751531969,0.2874463632218312,0.2935888336881949,0.2993045830490622,0.3040734853356955,0.3082169855457881,0.3129318978467701,0.3176352322903279,0.3214257959225967,0.3252183780645502,0.3241191828385325,0.3234069452651541,0.3222985985183935,0.3214239407603763,0.3198358980435137,0.317616540779736,0.315142816585966,0.3165631131458469,0.3170656949221809,0.3174191254888019,0.3183567478702735,0.319027238121536,0.3188917929952953,0.3192044415706035,0.3206886629579896,0.3214991163322591,0.3233866159393543,0.3274430554250086,0.33182135380321,0.3358288770053476,0.3406458086290249,0.3435635123614663,0.3442550505050505,0.3491001384402399,0.3505370211957038,0.3529552811413499,0.3534429280397022,0.3467691668398088,0.3460033538289547,0.3571990558615263,0.0,2.4688304615582606,57.09390197110089,180.48688056816687,268.31699757045567,fqhc5_100Compliance_baseline_low_initial_treat_cost,21 -100000,95700,45140,428.1818181818182,6099,62.476489028213166,4677,48.45350052246604,1856,19.13270637408568,77.29747507811412,79.70099539203197,63.28577397120039,65.06592287916543,77.06398984748688,79.46647265694462,63.19910110847008,64.98083288090841,0.2334852306272381,234.52273508735288,0.0866728627303103,85.08999825701835,156.25698,109.98674246604008,163277.93103448275,114928.67551310352,396.68602,261.2119715958131,414084.58725182863,272523.4081460952,377.69346,183.9088001278752,392020.30303030304,190117.7014707369,3070.42389,1407.3466890444874,3181780.7732497384,1444185.2502133057,1077.30318,483.7790343648341,1115367.460815047,495196.86535362,1823.39266,765.1562829346168,1880369.2998955068,777286.7477075612,0.38029,100000,0,710259,7421.724137931034,0,0.0,0,0.0,34285,357.80564263322884,0,0.0,34610,359.03866248693834,1581153,0,56714,0,0,0,0,0,62,0.6478578892371996,0,0.0,0,0.0,0,0.0,0.06099,0.1603776065634121,0.3043121823249713,0.01856,0.3226108682073704,0.6773891317926296,24.50414473355304,4.380196638432039,0.3211460337823391,0.238400684199273,0.2148813341885824,0.2255719478298054,11.113554193955611,5.674039544394702,19.66778772689057,12170.603111262611,53.04894670455958,13.286120225115557,17.008206411765848,11.2671323708839,11.487487696794298,0.5606157793457345,0.7901345291479821,0.6917443408788282,0.5800995024875621,0.1127962085308056,0.7260383386581469,0.9246753246753248,0.8575063613231552,0.7109375,0.1559633027522936,0.5001459854014598,0.7191780821917808,0.6330027051397655,0.5353805073431241,0.1015531660692951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0043211003590773,0.0067211533580384,0.0088100802763946,0.0108642578125,0.0129051314958544,0.0151360613602056,0.017330119891342,0.0195649283573846,0.0216178021730448,0.023827351707302,0.0259702903166156,0.0281372811259027,0.0302234038168253,0.0323683069362132,0.0347334995190268,0.0368147756599608,0.0390509812065206,0.040718662546945,0.0426545223381306,0.0575669577570718,0.0715706389749602,0.0850918706779856,0.0977708580986545,0.109573289730471,0.124661447312738,0.136536848921016,0.1480941071219366,0.1585931819153941,0.1694778771513544,0.1829731245416505,0.1949181020932476,0.2065791623549915,0.2167829869290355,0.226657406794982,0.23656677502746,0.2460266010953392,0.2539088901906006,0.2624887808314114,0.2700459667342985,0.2771463988229706,0.2837867909722303,0.2905858384857745,0.2967666050553302,0.3018893173882894,0.3072660858405114,0.3115734068550661,0.3153271456984038,0.3201401960147985,0.3246653616210782,0.3239248400421154,0.3225971158490305,0.3215158751465996,0.3203592380676468,0.3193855853444558,0.3172573283915826,0.3161790289419579,0.317013223221747,0.317287061948711,0.3181559273762905,0.3187645796398246,0.3197456993268511,0.3208035751576661,0.3219345927642131,0.3240115025161754,0.3249844107254209,0.3252159581723119,0.3295490183779715,0.332714275702572,0.3360938304869834,0.3402483963422956,0.3443473656341011,0.3456177800100452,0.3470548100977939,0.3493998499624906,0.3497816078385078,0.3512561274509804,0.3497267759562841,0.3600439077936334,0.3675115207373272,0.0,1.65521869134719,55.29626606606708,178.3529682256927,252.4484909341864,fqhc5_100Compliance_baseline_low_initial_treat_cost,22 -100000,95821,45581,431.2833303764311,6149,62.78373216727022,4789,49.31069389799731,1893,19.27552415441292,77.32864418348662,79.63881817116774,63.32870225298407,65.0380994062409,77.09191317180533,79.40668608583016,63.2411658248299,64.95549822171888,0.2367310116812859,232.13208533758237,0.0875364281541664,82.60118452201937,154.59158,108.84791542384852,161333.7159912754,113595.05267514275,396.16711,261.27169999082395,412770.9792216738,271993.2392117871,389.74994,190.2233883352852,402566.87991150166,195316.0811203065,3148.30765,1449.4803672758055,3243201.12501435,1470599.7551616782,1148.04095,513.2861492268819,1178108.5461433297,515759.6076382024,1853.43606,773.565830036462,1889872.6166497949,770161.3265426712,0.38365,100000,0,702689,7333.350726876155,0,0.0,0,0.0,34213,356.35194790286056,0,0.0,35602,367.41424113712026,1588068,0,57091,0,0,0,0,0,66,0.6887842957180577,0,0.0,1,0.0104361256926978,0,0.0,0.06149,0.1602762934966766,0.3078549357619125,0.01893,0.339649013822022,0.6603509861779779,24.112632130610564,4.37914999925497,0.3165587805387346,0.2426393819168928,0.21862601795782,0.2221758195865525,11.385960857719466,5.992072746317469,20.2082896732082,12289.651089371602,54.80491022938714,14.216919796343191,17.202074833774784,11.747619881913772,11.638295717355398,0.5729797452495302,0.8055077452667814,0.7084432717678101,0.5768863419293219,0.1221804511278195,0.7432835820895523,0.9323467230443976,0.8707317073170732,0.7292576419213974,0.1359649122807017,0.5068135691504784,0.7184325108853411,0.6482820976491862,0.5342298288508558,0.1184210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025725426647085,0.0048858614118314,0.0071120580327702,0.0092739314155696,0.0115212527964205,0.0135208055467882,0.0156968269985424,0.0180535994938052,0.0205410156050402,0.0226451777948324,0.0248473298085987,0.0270417273865478,0.029309901854992,0.0314398072844818,0.0336279170490755,0.0355368229667048,0.0374708956382263,0.0397200622083981,0.0418484357472267,0.0436728491434043,0.0581075161149008,0.0720394805629326,0.0850374718306168,0.0978993053731123,0.1100874881416675,0.1265737148655933,0.1390868219027017,0.1507719481182767,0.1616833607415159,0.1718212321644887,0.1846344352320447,0.1971462261599541,0.2086092355198921,0.2196609502574023,0.2284743077786211,0.2390071550406486,0.2482973449746555,0.257188534372115,0.2653925643296768,0.2725239689894032,0.2791517386111981,0.2863307496570081,0.2918100890207715,0.2976576576576576,0.3041964850786232,0.3100844069302532,0.3153408378669742,0.3191012095181045,0.3230012715053066,0.3271104647319363,0.326569409988135,0.3254890607552008,0.3244900265581737,0.3229076039672873,0.3224220391257059,0.3194851868347898,0.3182806622117109,0.3195054177148588,0.3205809483126869,0.319977154687751,0.3203659611166313,0.3210272238050016,0.323092710100312,0.3238067572398999,0.3247337164290351,0.3246292040944224,0.3261148311725317,0.3297949185013033,0.3347565883876386,0.3371559633027522,0.3387756958340913,0.3419515820768741,0.3423491583128428,0.3420409410326917,0.3436940755392295,0.3484195402298851,0.349070971672251,0.3481871581932347,0.3465644675609088,0.3464077669902912,0.0,2.512202004256295,58.46623768971795,183.13668322979916,252.56405010601875,fqhc5_100Compliance_baseline_low_initial_treat_cost,23 -100000,95744,45046,426.3348094919786,6018,61.5704378342246,4749,48.99523729946524,1855,18.95680147058824,77.35098256499538,79.69929610190324,63.33757887846742,65.07105030006544,77.12329316290565,79.47434022119938,63.25340757602833,64.99067906526075,0.2276894020897231,224.95588070385963,0.0841713024390884,80.37123480468722,155.56046,109.4456952847522,162475.41360294115,114310.76128504366,392.17424,257.65663313317555,409000.1148897058,268505.6240870325,380.9834,185.22735790663756,394412.9867145722,190727.72710132712,3111.78794,1419.0697925512784,3210559.6382018714,1442758.865774321,1134.76314,500.851678740762,1168183.8235294118,506198.2932976503,1815.10654,754.5963613245196,1856457.0103609627,754555.3612788836,0.38029,100000,0,707093,7385.246072860962,0,0.0,0,0.0,33873,353.15006684491976,0,0.0,34816,360.14789438502675,1591269,0,57091,0,0,0,0,0,70,0.7311163101604278,0,0.0,0,0.0,0,0.0,0.06018,0.1582476531068395,0.3082419408441342,0.01855,0.3432646592709984,0.6567353407290016,24.45653941678918,4.336764899282064,0.3287007791113919,0.2286797220467467,0.2238365971783533,0.2187829016635081,11.439302678616828,6.063624103230452,19.62222304070498,12167.55542327682,53.8210620716294,12.999767882531994,17.911628146722958,11.601330134975422,11.308335907399028,0.5634870499052432,0.783609576427256,0.7110826393337604,0.561618062088429,0.1135707410972088,0.7364280094413848,0.914572864321608,0.8794326241134752,0.7196652719665272,0.1327014218009478,0.5002875215641173,0.7078488372093024,0.648506151142355,0.5157766990291263,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505584640466,0.0046421585023464,0.006879547045752,0.0090700414398309,0.0114691258858577,0.0138347364884812,0.0159529464531452,0.018207240031434,0.0204826296262226,0.0226795893929934,0.024745269286754,0.0268117429685896,0.0290652245435104,0.0311605395942745,0.0334244596894826,0.0353385012919896,0.037174336246531,0.0390697964012203,0.0410372110915877,0.0432449889569529,0.0578238039064212,0.0715854883253828,0.0851831269463463,0.0979697406188558,0.1103649665816272,0.1254875844353534,0.1374482978046452,0.1484414077881719,0.1591688478179584,0.1687942501609096,0.1811327258234774,0.1941275785190155,0.2054229840551652,0.2159018796910216,0.2252479334294614,0.2348501640216331,0.2439945054331438,0.252832056517386,0.2619747398522519,0.2697117313313084,0.2770005207429266,0.2833540052889003,0.2899330605293658,0.2953388968043965,0.30033123430277,0.3056099031587237,0.3108400304965691,0.3145841805612037,0.3189729918600287,0.3233803931917139,0.3231637504882746,0.3215028440000551,0.3209843463545339,0.3202831007931453,0.319409332897124,0.3176084724201879,0.3165644366252991,0.3172857166346043,0.3181942497692386,0.3189507494646681,0.3190437859188678,0.3208578305646529,0.3227622875324458,0.3237810189631681,0.3249226488859041,0.3257698119105924,0.3272024334081928,0.3304650943692491,0.3334382321060177,0.3381240844122422,0.3400018186778212,0.3403656073971729,0.3453663453663453,0.3498061278795712,0.349620181937541,0.347340930674264,0.347839553972433,0.3523442256951491,0.3418803418803419,0.3521288837744534,0.0,2.27383217443592,55.69665234850955,177.3046082251219,260.21913148497305,fqhc5_100Compliance_baseline_low_initial_treat_cost,24 -100000,95851,45299,427.778531262063,6186,63.3900533119112,4883,50.45330773805177,1929,19.86416417147448,77.51248185563044,79.79891570257166,63.42745123530996,65.11129402911813,77.2781202077374,79.5616031604464,63.34092199957716,65.0252739261321,0.2343616478930386,237.31254212526665,0.0865292357327973,86.02010298602636,155.93842,109.68663280931374,162688.13053593598,114434.29156640386,395.46764,258.9661562965851,412068.6064829788,269658.5286502856,382.97905,186.0837883323817,395841.2744780962,191371.47248133432,3188.35181,1458.7895208566758,3298253.0803017183,1493825.0731413085,1170.73377,513.9815391009801,1210009.066154761,524854.8749503567,1883.53276,782.6950451355135,1941143.629174448,796914.3443177488,0.38397,100000,0,708811,7394.915024360726,0,0.0,0,0.0,34128,355.5309803757916,0,0.0,35043,361.926323147385,1596549,0,57236,0,0,0,0,0,65,0.6677029973604865,0,0.0,1,0.0104328593337576,0,0.0,0.06186,0.1611063364325338,0.3118331716779825,0.01929,0.3354391371340524,0.6645608628659476,24.786458504147884,4.374314101536445,0.3268482490272373,0.2389924226909686,0.2181036248208069,0.2160557034609871,11.29029354954855,5.874672946006164,20.218487913250296,12313.690295656766,55.184302787897145,13.912535045329829,18.093546383991253,11.729227610553412,11.448993748022664,0.5635879582224043,0.778063410454156,0.7017543859649122,0.5699530516431925,0.1109004739336492,0.7380772142316427,0.9061032863849764,0.8624708624708625,0.7461538461538462,0.1213592233009708,0.4988770353733857,0.7044534412955465,0.6426735218508998,0.5130434782608696,0.1083627797408716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021451844656264,0.0047801824976453,0.0069836507566466,0.009548355673712,0.0118551778784615,0.01430895962575,0.0167172323919284,0.0189468102463697,0.0211062665291576,0.0233970753655793,0.0256720086017101,0.0277923063512086,0.0299518099524264,0.0320585389951217,0.0342367604457686,0.0361912434542806,0.0379955092453669,0.0401215049192904,0.0422150432641868,0.0440662086196127,0.0583039606231881,0.0726653004893145,0.0860148579691314,0.0994255227532898,0.1114059193278372,0.1275083435427316,0.1394597115211378,0.1510170230411806,0.1618772208765059,0.172631285873383,0.1854595896597703,0.1980903827875227,0.2094674556213017,0.218861248826086,0.2286169394705042,0.2391285113912851,0.2477661162733694,0.2563667614051249,0.2652568865530989,0.2732562127066139,0.2806432633849774,0.2871839683094489,0.2939712715522324,0.2998889432894281,0.3057727217717536,0.31074327394182,0.3154700332755892,0.3202218030358657,0.3237814227364677,0.3275604187987089,0.3268573725463924,0.325403452099046,0.3245540339970316,0.3222276544346025,0.3217131621353912,0.3194088579795022,0.3175014210825491,0.3178775430039771,0.3192735195492689,0.3190204808548531,0.3187382033600568,0.3188394370639019,0.3203569040454697,0.3198431966501102,0.3222179787081682,0.3232017781913106,0.3232574579386399,0.3280773776202028,0.3313439050626323,0.3343233420610418,0.3360923448615274,0.3351235791010533,0.336285378088809,0.3376603886846252,0.3414070444670426,0.343946084127353,0.3498651483368294,0.3548703849175176,0.3558364712210866,0.362486043915147,0.0,1.8290722412825688,58.260812230613446,182.4943255253411,263.0820670667208,fqhc5_100Compliance_baseline_low_initial_treat_cost,25 -100000,95724,45032,427.5521290376499,5966,61.02962684384271,4650,47.85633696878526,1838,18.741381471731227,77.31288813594676,79.67206635061851,63.318020272784125,65.06232803014818,77.08113632853917,79.44416585695194,63.23218289193248,64.98106436773602,0.2317518074075906,227.9004936665672,0.0858373808516432,81.26366241215521,155.1429,109.26538355669018,162073.14779992477,114146.27842201556,390.33039,256.0034230384694,407083.991475492,266756.62638258893,372.4497,180.7286697683666,384493.5334921232,185222.485524427,3056.6245,1382.7852199380943,3148865.258451381,1400483.3810332413,1086.28841,477.0546378388393,1114520.538214032,478170.62305803294,1795.28284,752.7786030512151,1833278.509046843,750978.3468058822,0.38073,100000,0,705195,7366.961263632945,0,0.0,0,0.0,33726,351.59416656219963,0,0.0,34076,351.3747858426309,1595385,0,57234,0,0,0,0,0,52,0.5327817475241319,0,0.0,1,0.0104467009318457,0,0.0,0.05966,0.1566989730255036,0.3080791149849145,0.01838,0.3219715154424707,0.6780284845575292,24.64208226411384,4.382852419149852,0.3255913978494623,0.2243010752688172,0.232258064516129,0.2178494623655913,10.928249302332452,5.5121146378545145,19.66395756951029,12186.767276277782,52.71996387418432,12.604777854279757,17.027046111950177,12.11325641977612,10.974883488178271,0.5544086021505377,0.7622243528283796,0.7040951122853368,0.5601851851851852,0.1105626850937808,0.7319932998324958,0.9302325581395348,0.8421052631578947,0.6575875486381323,0.1470588235294117,0.4930555555555556,0.663109756097561,0.6578483245149912,0.5297691373025516,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0046726603756372,0.0068588358242271,0.0089282086702149,0.0108725501164552,0.0130855397148676,0.015642047945834,0.0179070954568657,0.0201506957152934,0.02215850911325,0.0242899620629549,0.0263701056652598,0.0286431282204235,0.0308804746405174,0.0326021913624827,0.034448188188602,0.0367190978658189,0.0386934099799736,0.0403593972608437,0.0420834375260481,0.056357144348625,0.0706161782093269,0.0840849028902219,0.0969329281756337,0.1093853794325119,0.1248730642294998,0.1372420013795299,0.1490127202086327,0.160725540256161,0.1701107762919432,0.1828518514530595,0.1939304139042407,0.2054627696590118,0.215718441717523,0.2257429228416455,0.2366278618978522,0.2460017187308177,0.2547197407799104,0.2633312136627907,0.2718731380906549,0.2789758192404301,0.2853919184360677,0.2917006706170386,0.2968542153514291,0.3025837878548608,0.3075406604238541,0.3113395350001878,0.3156180418601692,0.319693790316313,0.3238234866796106,0.3230719465185864,0.3230362600148674,0.3224978493562171,0.3218151299415407,0.3205931837470036,0.3184601924759405,0.3162023949433027,0.3172836253458042,0.3181210584041678,0.3192637201132738,0.3200142838348337,0.3213598205957649,0.3224004703510835,0.323177829512894,0.3241015257791597,0.3258796792142316,0.3274295834999714,0.3308482072342442,0.3327224669603524,0.335621084553689,0.3377816370366985,0.3383055526064338,0.3411027568922306,0.3437048307341194,0.3442761734549901,0.3480368968779564,0.3463316892725031,0.3509127789046653,0.3540510543840177,0.3578987150415721,0.0,2.858666811210331,51.64811596110395,178.15964961064626,258.538249297843,fqhc5_100Compliance_baseline_low_initial_treat_cost,26 -100000,95783,45086,425.503481828717,6159,63.059206748587954,4819,49.74786757566583,1907,19.51285718760114,77.37208356525132,79.71092566545049,63.35007434272507,65.0795575941577,77.13094199671872,79.47188383898005,63.25985212702064,64.99255854463239,0.2411415685325977,239.0418264704408,0.0902222157044363,86.99904952531767,154.6644,108.77342213321177,161473.74795109782,113562.3462756562,394.6962,259.4497399909848,411518.5158117829,270317.61376338673,380.76379,185.3449514484048,394433.8556946431,191012.24442275608,3178.02362,1458.866564619019,3282005.1157303485,1487159.4172442062,1157.36695,512.9180934072809,1196040.7901193325,523219.0403383488,1874.63308,790.9125199194126,1919587.672133886,794287.7926359957,0.38113,100000,0,703020,7339.715815958991,0,0.0,0,0.0,34007,354.46791184239373,0,0.0,34825,360.42930373865926,1595353,0,57381,0,0,0,0,0,85,0.8874226115281417,0,0.0,2,0.0208805320359562,0,0.0,0.06159,0.1615984047437882,0.3096281863938951,0.01907,0.3412869458128079,0.6587130541871922,24.58228894073566,4.428169851073555,0.329321435982569,0.2297157086532475,0.2172649927370823,0.223697862627101,11.318601294702493,5.8265486555463175,20.3491691520057,12201.38101959388,54.69939019515446,13.14507534991844,18.090149080993925,11.620639602271496,11.843526161970608,0.5582070969080722,0.7777777777777778,0.6868304977945809,0.5807067812798472,0.12152133580705,0.7253086419753086,0.913151364764268,0.8548009367681498,0.7544642857142857,0.1570247933884297,0.4967357365881351,0.7002840909090909,0.625,0.5334143377885784,0.1112440191387559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0047240582295932,0.0070629782224838,0.0093558578234678,0.0116037831790908,0.0137949991855351,0.0161860787491463,0.018235810355736,0.0204279758011772,0.0227919353188005,0.0247794140252713,0.0269501944806494,0.0293776018913501,0.0315383031301482,0.0335969806028482,0.0357187138369978,0.0379678701556806,0.0400514384087279,0.042031214281261,0.0442387581080096,0.0589407774589094,0.0732873130425687,0.0864223414961422,0.0990333088158033,0.1107552596369612,0.1266004648214663,0.1387046181887544,0.1495970057206048,0.1601293241426407,0.1703322013562299,0.1826279665210749,0.1944936873054306,0.2050819458331522,0.2157272170718908,0.225668437434696,0.2356407132572821,0.2456629664751492,0.2548737436197243,0.2637552010702584,0.2713646096943741,0.2782835000867503,0.2851163334502514,0.2913366278107488,0.2959658975249362,0.3011931204408355,0.3063245000492562,0.3108969143143268,0.3146021694070372,0.3188653363356368,0.3233540831399029,0.3222157967642589,0.3207808979502116,0.3196797564344713,0.3184170955988664,0.3175454761621686,0.3162329008440434,0.3148429584599797,0.3163534914252892,0.317049382293556,0.3173990710968203,0.3193700610464027,0.3198127000434662,0.3220356724166806,0.3239320247426364,0.3245205018506946,0.3251226385554743,0.3269494626114795,0.331367292225201,0.333930516036112,0.3363455414012739,0.3400647308200756,0.3436936459106821,0.3469541711196329,0.3470257112429636,0.3505649717514124,0.3497869318181818,0.3536399634480658,0.3581027667984189,0.3606158833063209,0.347940074906367,0.0,2.231413520835986,56.74883108250496,181.23858393744047,262.74038508165125,fqhc5_100Compliance_baseline_low_initial_treat_cost,27 -100000,95643,44861,426.1158683855588,5935,60.8199240927198,4650,48.02233305103353,1825,18.684064698932488,77.25911226955019,79.65512462142888,63.27736057920528,65.045632316355,77.02689736941933,79.42571744012342,63.19146549391602,64.9633954486318,0.232214900130856,229.40718130546145,0.085895085289259,82.23686772319638,155.4927,109.3739677196915,162576.14253003357,114356.47953294178,388.70543,255.33395105765268,405816.44239515695,266369.24924736016,372.41105,181.21162901173253,385743.0862687285,186583.38213780176,3087.60246,1400.5236016201086,3191853.7896134583,1428217.3294652165,1099.53119,483.3141755803785,1134055.6548832636,489900.8556537767,1797.3791,754.7083070284185,1843249.0825256424,758695.2304643613,0.37969,100000,0,706785,7389.824660456071,0,0.0,0,0.0,33574,350.386332507345,0,0.0,34049,352.362431124076,1588492,0,57089,0,0,0,0,0,71,0.742343924803697,0,0.0,1,0.0104555482366717,0,0.0,0.05935,0.1563117279886223,0.3074978938500421,0.01825,0.3298985670584446,0.6701014329415553,24.646111130741627,4.429717046108725,0.3290322580645161,0.2227956989247312,0.2191397849462365,0.2290322580645161,11.025558116005111,5.556109746858506,19.482697135047687,12149.499802338516,52.50848463625909,12.316935246602302,17.40705068768925,11.220290695401156,11.564208006566377,0.5470967741935484,0.7837837837837838,0.6875816993464052,0.5525024533856723,0.1098591549295774,0.7323272438443209,0.9263157894736842,0.8650602409638555,0.7213114754098361,0.1590909090909091,0.4783249778826305,0.7012195121951219,0.62152466367713,0.4993548387096774,0.0970414201183432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0044616149017937,0.0065769441568722,0.0089009917086652,0.0111297624497685,0.013189253050333,0.0153149662499745,0.0174668476984799,0.019637910060212,0.0215673429279177,0.0236835629921259,0.0255262347263579,0.0278017773389286,0.0300395582660293,0.0323013415892672,0.0342966447810577,0.0361330957609911,0.0381772887689433,0.0402850010401497,0.0421171147691377,0.0567433694902501,0.0703011259492013,0.0841664216406939,0.0973085104142535,0.109159837796739,0.1242083412763974,0.1366557265610893,0.1481221032443663,0.1592634573023375,0.1693333619689876,0.1816416783518498,0.194246397226135,0.2059970374243018,0.2160699417152373,0.2259579864365661,0.2371524384827218,0.2463636770497672,0.2553796183516037,0.2633237040238382,0.2711019188785476,0.2779105932596787,0.2839178885630498,0.2901610357553965,0.2949585793125007,0.3000694943977762,0.3053114300194064,0.310129283293586,0.3152409623185447,0.3188332424643664,0.3230095520334453,0.3220245166864672,0.3212732769211656,0.3210901479365259,0.3206327532610906,0.3200740331656641,0.3180944768112154,0.3162725699131346,0.3166016171796518,0.3177991529928158,0.3177847784062433,0.3192252106833837,0.3203126545958247,0.3212891854463049,0.3225597642909756,0.324621667067019,0.3261163734776725,0.3278068479126379,0.3302201257861635,0.3322327982859752,0.3338233541261075,0.3372098326264423,0.3396757905926122,0.3410608542270379,0.3462792990973223,0.3496451251400821,0.3493661888401848,0.3522483940042826,0.3568825910931174,0.3572421462329719,0.3615775087856306,0.0,2.3532519686803006,55.27961819506877,161.90447529409423,264.6399094690019,fqhc5_100Compliance_baseline_low_initial_treat_cost,28 -100000,95621,45379,430.4912100898338,6074,62.37123644387739,4768,49.29879419792724,1889,19.378588385396515,77.28554750318864,79.71883533514418,63.27381344368565,65.07242475309694,77.0541543074383,79.488999746805,63.18731377404615,64.9897962206832,0.2313931957503427,229.83558833917076,0.0864996696394939,82.62853241373591,155.30636,109.26515603115574,162418.44364731596,114268.7916532325,393.278,258.1950680061524,410704.8033381789,269437.1618370672,381.95395,185.11563306639184,396704.949749532,191458.27131348223,3135.24028,1431.139152861282,3242061.8065069388,1460059.638216727,1147.37839,505.869009869356,1187006.17019274,516138.8893002416,1851.44098,775.2369474779184,1899995.3566685144,776147.1957679667,0.38341,100000,0,705938,7382.656529423453,0,0.0,0,0.0,33949,354.4200541722007,0,0.0,34852,361.6778741071522,1589693,0,56966,0,0,0,0,0,66,0.6902249505861684,0,0.0,0,0.0,0,0.0,0.06074,0.1584204898150804,0.3109976950938426,0.01889,0.3306704260651629,0.669329573934837,24.585742568028987,4.369331885488899,0.3267617449664429,0.2342701342281879,0.2139261744966443,0.2250419463087248,11.289105526235524,5.860209862223165,20.04073713480464,12350.638716617172,54.03229692298084,13.543190770373773,17.44186252316063,11.38246339469226,11.66478023475417,0.5698406040268457,0.8021486123545211,0.686777920410783,0.5990196078431372,0.1304753028890959,0.7360126083530338,0.900709219858156,0.8632911392405064,0.7424892703862661,0.1788990825688073,0.5095741640468705,0.7420749279538905,0.6268271711092004,0.5565438373570522,0.1181286549707602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024118362383461,0.0046354055726298,0.0070462575640661,0.009147735935356,0.0115879217026818,0.0139860852203852,0.016260162601626,0.0185620300751879,0.0205071033332992,0.0227870917526089,0.0251123284298639,0.0273838882038635,0.029130211013896,0.0311098741379843,0.0331966916889526,0.035395484024452,0.0375033679454496,0.0391425811878823,0.0411050160818561,0.0432587492828456,0.0580093458920936,0.0719877592513021,0.0861400393026408,0.0986808833445718,0.1112038367277951,0.1268746822572445,0.1393334608599545,0.1508198818687762,0.1621433616574987,0.1723274630105193,0.1850281114096711,0.1966754497251228,0.2085204237325079,0.2199381999079573,0.2294597574421168,0.2393753399114287,0.2492845644786263,0.2579256404187939,0.2665393968318902,0.2740748383546567,0.2815731872560714,0.2882806918923983,0.2949538782575703,0.3005499255559291,0.3057898516327698,0.310564449436538,0.3145731035173865,0.3187469744452088,0.3237597572677057,0.3283852137508419,0.3279635790579583,0.3268368497785602,0.3258305027413285,0.3254694479378984,0.325261468980271,0.3236177976756309,0.3220524363567194,0.3218078984577949,0.3215524755182609,0.3227231272688257,0.3232345942705113,0.3251953895950106,0.32634755637522,0.3267348853836185,0.326771653543307,0.3279033515198753,0.3290006513182114,0.332738988988989,0.3366384858922172,0.3404641616671929,0.3439016646255726,0.3468685478320715,0.3524018838304552,0.352887745060934,0.3533096484667165,0.3574108818011257,0.3524416135881104,0.3544303797468354,0.3620081411126187,0.3698526633925198,0.0,2.1221566949777766,55.77636438297747,177.95351197749838,262.6953591340826,fqhc5_100Compliance_baseline_low_initial_treat_cost,29 -100000,95823,45451,430.62730242217424,5962,61.15442012877911,4681,48.41217661730482,1811,18.575916011813447,77.35864855579545,79.66242824157696,63.35358995694328,65.05372317391614,77.13404462750363,79.43796429362703,63.27001213244756,64.97213242263926,0.2246039282918275,224.4639479499284,0.0835778244957197,81.59075127687743,156.01586,109.76459303957016,162816.71415004748,114549.31805471562,392.82442,258.67314148435173,409513.6136418188,269514.5752943988,385.65938,187.6188556751169,399203.08276718535,193313.83941181155,3061.5614,1399.343273756823,3168851.183953748,1434175.6611218827,1104.53883,488.172870013326,1143348.9350156016,500115.097641825,1776.43796,747.0726478520367,1824848.2514636363,756379.4169267045,0.38252,100000,0,709163,7400.759734093068,0,0.0,0,0.0,33914,353.4641996180458,0,0.0,35148,363.7540047796458,1586697,0,57004,0,0,0,0,0,67,0.6783340116673451,0,0.0,1,0.0104359078718053,0,0.0,0.05962,0.1558611314441075,0.3037571284803757,0.01811,0.3248040940348632,0.6751959059651368,24.494254517280712,4.36536728586299,0.3170262764366588,0.2362743003631702,0.2294381542405469,0.217261268959624,11.323503276186168,5.743072082148104,19.32069262033634,12225.536850894405,53.225563604656514,13.26692703688982,16.800148847458786,11.993563536821483,11.164924183486423,0.5639820551164281,0.7884267631103075,0.6880053908355795,0.5847299813780261,0.1170108161258603,0.7369668246445498,0.9078014184397164,0.8540540540540541,0.7677165354330708,0.1735159817351598,0.4998535871156662,0.7144948755490483,0.6328545780969479,0.5280487804878049,0.1015037593984962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021861020585794,0.0045984462518611,0.0068939647393979,0.009264614853826,0.0113689472293906,0.0136513910787854,0.0158191745100435,0.0180551446961737,0.0201560999530065,0.0222795065365494,0.0245104064241232,0.0266580507518411,0.028725535521652,0.0308920835177048,0.0330140531400468,0.0349289956106377,0.0368346991143117,0.0390093713717034,0.0409447837467281,0.0428903069988236,0.0579717704497324,0.0718026993967653,0.0850443878460103,0.0976932373495875,0.1095982801500653,0.1254028806627849,0.1370700988083626,0.1494463178273958,0.1601985800459082,0.1701564225445734,0.1823065825455954,0.1948897687198459,0.2064439659859507,0.2170327266363318,0.2262389643556945,0.2360138310133877,0.2449134476947287,0.2539545035213644,0.262445390070922,0.2710536264592331,0.2784181654051802,0.2858865115408024,0.2923770957658426,0.2983200834562394,0.3037859261780868,0.3086976893294863,0.3133601921825734,0.3175794266527612,0.3217569212441405,0.3261761794787199,0.324685640431891,0.323897943745272,0.3229238498670082,0.3219270013999336,0.3216766609273882,0.3200159014112502,0.3178856130583323,0.3184944436237094,0.3185002905089032,0.3200407718030793,0.3213294320654212,0.3223037519036411,0.3226530697889126,0.3243665936815765,0.3256887350353382,0.3263100180151954,0.3266854974464321,0.3298355076574021,0.3337317630515029,0.3361468328223912,0.3388249214945615,0.3417061359161301,0.3439486437157782,0.3486932599724897,0.3510807523158978,0.356439127375088,0.3551970780703089,0.3631217145167812,0.3697222222222222,0.3736306729264476,0.0,1.7352375349504054,56.08277247397142,176.34580166307796,253.9101110047044,fqhc5_100Compliance_baseline_low_initial_treat_cost,30 -100000,95865,44755,424.4614822928076,6010,61.57617482918688,4750,49.00641527147552,1864,19.07891305481667,77.41454581429173,79.70234276392078,63.37712166936033,65.06781358246026,77.18371470476083,79.47403528101175,63.29143867273072,64.98537509600123,0.2308311095308965,228.30748290903105,0.0856829966296075,82.43848645902574,154.44066,108.6361803132394,161102.0080321285,113321.83750605484,391.68858,257.1651951903561,408063.0678558389,267738.49228371785,378.07891,183.83733254353533,391189.4226255672,189241.08358866465,3120.86621,1428.0274068334984,3222513.1382673555,1456960.4520541178,1116.38535,492.3147761272938,1151539.5608407657,500775.5108756476,1820.43174,761.5707409523995,1865368.716424138,766452.8509875711,0.37845,100000,0,702003,7322.818546914933,0,0.0,0,0.0,33792,351.9428362801857,0,0.0,34651,358.21206905544256,1599755,0,57498,0,0,0,0,0,72,0.7510561727429198,0,0.0,0,0.0,0,0.0,0.0601,0.1588056546439424,0.3101497504159733,0.01864,0.3274900398406374,0.6725099601593626,24.264011503498583,4.344081621657648,0.3208421052631579,0.2317894736842105,0.2288421052631579,0.2185263157894736,11.267015741234296,5.872896694368139,19.903179670712085,12076.6270054995,54.04717973577248,13.38495897207069,17.26761615244407,12.13131681658638,11.263287794671324,0.5696842105263158,0.7938237965485921,0.708005249343832,0.5850965961361545,0.1127167630057803,0.7486712224753227,0.9175946547884188,0.8961352657004831,0.6973180076628352,0.1088082901554404,0.5010195164579085,0.7085889570552147,0.6378378378378379,0.549636803874092,0.1136094674556213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020752138482563,0.0044273339749759,0.0065505947250474,0.0085781576756745,0.0106718162414879,0.0126680165650851,0.0147616136919315,0.0167185188963125,0.0188365085040094,0.0210807327625886,0.023426136480036,0.0253774823568028,0.0273216744415445,0.0295619235836627,0.0320126194673842,0.0340731866020801,0.0360660486674391,0.0378776102388724,0.0396657323782829,0.0416484636668122,0.0558672033032344,0.070049848989957,0.0835768984988005,0.0961120502294131,0.1082131199326102,0.123679874957756,0.135444030166935,0.1473982910343068,0.1582877318740866,0.1684958936085918,0.1812412606217059,0.1929126622920337,0.2043348362214134,0.2141741229938929,0.2238217162448764,0.2344909994136065,0.2432824172148511,0.2532954251744637,0.2613858017691086,0.2692021477555039,0.2756291635825315,0.281693928375171,0.2891104566582692,0.2941296298515332,0.3000291644388276,0.3048939842209073,0.310130702589013,0.3150365892459433,0.3180769131032336,0.3229521620836305,0.3219711253568927,0.3211617572197075,0.3199690184481059,0.318109599329809,0.3174433455107072,0.3164853325988156,0.3143471252015045,0.3152115123006572,0.3160031385392147,0.3167197707328361,0.317455278784031,0.3176398715093707,0.3184075449651546,0.319729404957942,0.3209956398830914,0.3220985444072546,0.3221837972674188,0.3262245502447541,0.3297508549096238,0.3343342552350849,0.3392647457320928,0.3426540284360189,0.3437694510145649,0.3463469464218808,0.3466963622865627,0.3491075622357914,0.3544861090025808,0.3578371810449575,0.3532623532623533,0.3576835730507191,0.0,2.1050562327367643,57.787938676566846,179.028747903792,252.4959913149337,fqhc5_100Compliance_baseline_low_initial_treat_cost,31 -100000,95725,44983,426.9313136589188,6126,62.84669626534343,4803,49.76756333246279,1905,19.65003917471925,77.36002699221102,79.73504145495419,63.33690834044432,65.09016174386568,77.1260560082048,79.49773236560496,63.2504854570945,65.0040482348366,0.2339709840062198,237.30908934922468,0.0864228833498259,86.11350902907589,155.21616,109.11924171783797,162147.98641943064,113992.4175689088,392.70639,256.8932030913951,409852.8597545051,267974.3672931785,375.88961,182.14045410759016,390474.7035779577,188460.74625630263,3135.58491,1427.0718937697743,3252635.1841211803,1467821.3776649495,1116.82211,494.05628712247193,1158951.256202664,508373.2223791815,1865.81736,777.7810235972206,1926657.5711674064,794063.9061436724,0.38047,100000,0,705528,7370.36301906503,0,0.0,0,0.0,33934,354.0767824497258,0,0.0,34359,356.6988769913816,1596738,0,57337,0,0,0,0,0,64,0.6685818751632281,0,0.0,2,0.0208931835988508,0,0.0,0.06126,0.1610113806607616,0.3109696376101861,0.01905,0.3278637770897832,0.6721362229102167,24.761243393429936,4.371734153676798,0.3337497397459921,0.2263168852800333,0.2206953987091401,0.2192379762648345,11.079835035625388,5.696801924427155,20.192740600980898,12203.809635906637,54.24533157540934,13.041792577093888,18.078959904395788,11.595104441300046,11.529474652619625,0.5536123256298147,0.7709291628334867,0.6974422956955708,0.5490566037735849,0.1149097815764482,0.7468253968253968,0.9154228855721394,0.8982630272952854,0.7792207792207793,0.1383928571428571,0.4848998024273215,0.6861313868613139,0.63,0.4849215922798552,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024004618610162,0.0047136818416811,0.0069005408806307,0.0093459842743655,0.0117274909475568,0.0136654311433342,0.0158409785932721,0.0179428034864969,0.0201073345259391,0.0224001310428141,0.0245237753490947,0.026610816804238,0.0285364649747028,0.0308170853546745,0.032531313839995,0.0345112797502119,0.036652577490469,0.0386842979324088,0.0403461510458379,0.0421798478691257,0.05643451653665,0.0705404613388035,0.0830623334662106,0.0957835063473532,0.1085070268104711,0.1245612922322297,0.1365531287458497,0.1479561973884448,0.1583826387850567,0.1685563195211687,0.1811003264136512,0.1927975501282287,0.204504200949969,0.2156826306066005,0.2253906808459161,0.2368316129889691,0.2467228203268812,0.2564944558152088,0.2650967142112066,0.2724785346307956,0.2790264770493699,0.2858411629972421,0.2924386639077742,0.298382752552761,0.3030910062160062,0.3092118226600985,0.3139214852253109,0.317581565602003,0.3221323672122663,0.3261979187274957,0.3249639871296059,0.3243775205428544,0.3230964467005076,0.3220858895705521,0.3204539032406788,0.3179659251087822,0.317114465647647,0.3178518166472738,0.318833407283525,0.3198082611639759,0.3204840459357349,0.320868587657535,0.3221923181239698,0.3228809407153356,0.3227970955450646,0.3247590095356873,0.324511979966991,0.3279410839050796,0.3320561043343762,0.3367241104196585,0.3397271561984984,0.3417937506665244,0.3476864966949953,0.3503005402115194,0.3558988764044943,0.3533861245715636,0.3562290587876942,0.3528937285743093,0.3569069895432031,0.3662947287418238,0.0,1.6054998674308067,55.77231748609528,180.16061479555745,265.12182531793826,fqhc5_100Compliance_baseline_low_initial_treat_cost,32 -100000,95755,45219,427.4345987154718,5970,61.1143021252154,4623,47.73641063129863,1800,18.44290115398674,77.33346816806463,79.69747204679295,63.32120940122799,65.07101280212025,77.10315245894128,79.468189739276,63.23530090107718,64.98781528493653,0.2303157091233458,229.2823075169537,0.0859085001508077,83.19751718372004,156.2748,109.94768317928778,163202.7570361861,114821.87162998044,392.64913,257.8377368675837,409506.2189963971,268718.5611587761,377.7667,183.4132271268596,391291.5043600856,188924.56074371908,3010.63161,1371.7532758055545,3111801.921570675,1400288.2330939092,1119.52897,490.54624118289865,1155298.7729100308,498462.0239638008,1762.18994,742.9322302852853,1807668.4872852592,748365.8066033327,0.38211,100000,0,710340,7418.307138008459,0,0.0,0,0.0,33860,353.0363949663203,0,0.0,34449,356.61845334447287,1589030,0,57006,0,0,0,0,0,75,0.7728055976189233,0,0.0,0,0.0,0,0.0,0.0597,0.1562377325900918,0.3015075376884422,0.018,0.3269815852682146,0.6730184147317855,24.89252023781297,4.409125564884995,0.3220852260436945,0.2383733506381137,0.2206359506813757,0.2189054726368159,11.115581452956864,5.704217780507242,19.129127269308636,12250.604290398109,52.2541022897446,13.260342218141698,16.734544327779787,11.255719152993349,11.003496590829773,0.5602422669262384,0.7813067150635209,0.6957689724647415,0.5637254901960784,0.116600790513834,0.7218700475435816,0.8946078431372549,0.8560606060606061,0.7543103448275862,0.1415929203539823,0.4995537042546861,0.7146974063400576,0.6376944190301921,0.5076142131979695,0.1094147582697201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002441866355945,0.0046748874376343,0.0069626291537259,0.0093275620313357,0.0116860926344053,0.0140109358612754,0.0162602454838315,0.018166602028944,0.0204713625771636,0.0225299922204479,0.0246457936068565,0.0267032154736971,0.0289895312724954,0.0311122554067971,0.0334378804448754,0.0354939069137665,0.0374838208646129,0.0396795749802847,0.0418555329147087,0.0439324660715959,0.0579356131780032,0.0713672709004898,0.0843703439447673,0.0974296411593959,0.1096874209060997,0.1261261261261261,0.1385284600286457,0.1497009174702514,0.1604503118858412,0.1696625839250091,0.1822618701315491,0.1945851188157382,0.205962973437466,0.2159282354228202,0.2265350804810157,0.2376237623762376,0.2467483169400127,0.2562714534916437,0.2647516144775221,0.2722921366327336,0.2786168613391928,0.2858713064627401,0.2918618405488526,0.2973095996741812,0.3024203821656051,0.308643646476828,0.3135561443855614,0.3185844081580786,0.3233079788885439,0.3278623637754967,0.3266125230649049,0.3257940327237729,0.3246203003814591,0.3228337354968284,0.3215527230590961,0.3199393131350282,0.3174929929850675,0.3174227870548249,0.3187517081169718,0.3185794886444794,0.3191094967046135,0.3206783542604438,0.3217264081931236,0.322760652664003,0.3247493327562576,0.3283644432841666,0.3285409859355022,0.3304443397707646,0.3337781836060968,0.3386924325822674,0.3422117176491978,0.3452836201402167,0.3489501229585724,0.349308262630895,0.3511904761904761,0.3506898620275945,0.3526145303100416,0.353678586107686,0.3547572270558518,0.3462582396277627,0.0,2.0206812158534917,55.48643540739019,167.43925407166432,253.8688825021312,fqhc5_100Compliance_baseline_low_initial_treat_cost,33 -100000,95805,45294,429.1216533583842,6037,61.81305777360262,4697,48.51521319346589,1887,19.351808360732736,77.34149214859087,79.679775300543,63.33904717832892,65.07216707037873,77.0973346639729,79.43766798911666,63.24791851961125,64.98411068172099,0.2441574846179719,242.1073114263379,0.0911286587176647,88.05638865773346,155.9921,109.73425812357412,162822.50404467407,114539.1765811535,394.00853,258.6326778484405,410778.91550545377,269475.3800411675,372.91834,181.4738740206648,386657.1577683837,187331.2433887063,3091.2297,1421.112431412024,3194538.00949846,1451291.5520192313,1102.96315,486.7488356740208,1137596.5346276292,494400.1311768913,1842.76612,784.2400130149995,1891588.3095871825,790382.7217364927,0.38409,100000,0,709055,7401.0229111215485,0,0.0,0,0.0,34070,355.10672720630447,0,0.0,34128,353.5514847868065,1592408,0,57109,0,0,0,0,0,62,0.6471478524085381,0,0.0,0,0.0,0,0.0,0.06037,0.1571767033768127,0.3125724697697531,0.01887,0.3404592240696754,0.6595407759303247,24.36762316101061,4.34688581006546,0.323397913561848,0.2314243133915265,0.2241856504151586,0.2209921226314669,11.207132550817652,5.917556843174255,20.36651529122062,12248.838491015164,53.48584760955668,13.09121217935662,17.28950650024357,11.626552937911931,11.47857599204456,0.5692995529061102,0.7930082796688133,0.7057274522712311,0.584045584045584,0.1204238921001926,0.7340507302075326,0.913953488372093,0.8567901234567902,0.714859437751004,0.1705069124423963,0.5061837455830389,0.7138508371385084,0.6508078994614004,0.5435323383084577,0.1071863580998782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0046227304522368,0.006798924349282,0.009063935292444,0.0113445591901103,0.013578347984639,0.0156351990861618,0.0179313584331505,0.0201445911261542,0.0222713728381408,0.0242799577561545,0.0267195169538518,0.0289234946822735,0.0311930196862155,0.0331317842255148,0.0348534336627113,0.0367589955992751,0.0389211618257261,0.0408877897733767,0.0428278453866894,0.0576347227294068,0.0712657619037661,0.0848606788435138,0.0976755427586641,0.109620511955823,0.1253184225268743,0.1372763124416928,0.1492470648289943,0.1606130791644875,0.1701249705258193,0.1836998288611191,0.1958159900535164,0.2072251195132551,0.2173708714944588,0.2273117097306212,0.2378748796067708,0.2473719999554104,0.2559124087591241,0.2637254346718015,0.2716221625021442,0.2794068393638768,0.2858277279521674,0.2923291525303512,0.2982319635140473,0.3044264324022617,0.309617302034737,0.3139882254415459,0.3185103329141739,0.3222996290503949,0.3267939433838051,0.3262934165568081,0.3251715083107634,0.3239589347829148,0.3232009477440513,0.3225787275780588,0.3197065310623698,0.3175219499825668,0.3178029493481513,0.3181561424830113,0.3187568215570148,0.3198512145178561,0.3217436121077566,0.3225670876499884,0.3232332294166461,0.3249233443588691,0.3254433226970759,0.3271902629463773,0.3305092812946216,0.3357158021371453,0.3401550883363978,0.3434776594273067,0.3452310665020665,0.3486904989485758,0.3496984691510746,0.3502954068991805,0.349526208468274,0.3481446835048332,0.3468756444627758,0.3506020722486698,0.3536632144227081,0.0,2.033931381374078,57.13353836174242,174.68460095140583,253.85414622847756,fqhc5_100Compliance_baseline_low_initial_treat_cost,34 -100000,95708,45189,428.4072386843315,6060,62.074225770050575,4721,48.79424917457266,1872,19.193797801646674,77.3419109081298,79.70989449492447,63.33255108723839,65.08072040260548,77.11537155715912,79.48286701367877,63.24935571323293,64.99905218608694,0.2265393509706825,227.0274812456989,0.0831953740054558,81.66821651853695,155.21704,109.2383681806806,162177.70719271115,114137.1339707032,392.21018,257.92846496114066,409254.7331466544,268953.3021671054,385.56946,187.2635604217935,398932.7537927864,192777.38211497935,3091.77721,1415.6239562586602,3198009.612571572,1446916.5100400213,1131.51666,502.3036175044788,1170189.3572115183,512910.0953310109,1838.55588,761.9350398242744,1887088.665524303,770437.6078141866,0.38072,100000,0,705532,7371.713963305053,0,0.0,0,0.0,33814,352.7186860032599,0,0.0,35207,363.92987002131485,1593859,0,57164,0,0,0,0,0,70,0.7313913152505538,0,0.0,1,0.0104484473607221,0,0.0,0.0606,0.1591720949779365,0.3089108910891089,0.01872,0.3336987159411212,0.6663012840588788,24.53859051296466,4.326648713948402,0.3304384664266045,0.235543317093836,0.2092776954035162,0.2247405210760432,11.30953956227757,5.859330294525244,19.73046715684756,12221.236314022712,53.810731473349925,13.603895750391182,17.78797847729773,10.97374825853185,11.445108987129151,0.5659817835204406,0.8057553956834532,0.6897435897435897,0.5748987854251012,0.1244109330819981,0.7580893682588598,0.9466357308584686,0.8594847775175644,0.7807017543859649,0.1462264150943396,0.4931346771837569,0.7165932452276065,0.6257722859664607,0.5131578947368421,0.1189634864546525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0048140265531569,0.0068269425847027,0.0090598846185097,0.0113779639646967,0.0137350329885151,0.0160147608999255,0.0183616395852045,0.0204210956663941,0.0227209923546931,0.0246847770374167,0.0267586688435038,0.0288758175311587,0.0308562480038737,0.0328252860990434,0.0348983853294465,0.0367539689936931,0.0389991801662498,0.0409778110508037,0.0429454246084265,0.0583277633887542,0.0716483838553006,0.0845119187510491,0.0979226926110965,0.1109270999251062,0.1268581706607416,0.1393880885192336,0.1500963452673714,0.1607306911654737,0.1706464139366244,0.1829597958018761,0.1951779066747467,0.2069066782684359,0.2165569575961685,0.2267068449762449,0.2370457287711569,0.2471955217556145,0.2563027571401274,0.2648990099459042,0.2729675610732879,0.280023595544606,0.2867405318763089,0.2934145908526123,0.298797143815594,0.3039924208378375,0.3085760777110736,0.313080718274938,0.3178239356898459,0.3215635516438002,0.3247352057754123,0.3243152343539794,0.3234954816381465,0.3220829586330935,0.3216838646451836,0.320367625259413,0.318791638652894,0.3158542939699683,0.3160085203998033,0.3165682493088029,0.3171497929458803,0.3187173387776508,0.3187173809900364,0.3185978169605373,0.3192533500649845,0.3200404809522662,0.3208684533284622,0.3218689348099098,0.3249141813371964,0.3272394237204551,0.3284808359589997,0.3300447611217685,0.3330667519727021,0.3362820674838873,0.3401162790697674,0.3393532526475037,0.3406789755807028,0.3391077724973171,0.3361396303901437,0.3423700391280044,0.3505194305502116,0.0,1.9844943190709008,57.24680525634029,178.05193860029985,253.4841891366804,fqhc5_100Compliance_baseline_low_initial_treat_cost,35 -100000,95708,44838,425.8369206335939,5861,59.994984745266855,4590,47.37326033351444,1783,18.33702511806745,77.33810060160408,79.72274575831302,63.31256206328344,65.07597972076321,77.11625152955604,79.49923022081124,63.23035678942073,64.99474150385825,0.2218490720480446,223.51553750178252,0.082205273862705,81.23821690496413,155.6489,109.49343973252384,162628.9338404313,114403.64413896836,391.83944,257.5905037849595,408818.00894387095,268548.7146162907,371.41708,180.80787306163333,383842.34337777406,185615.74799633972,2984.42203,1360.959597455592,3084846.2719939817,1388580.0951389556,1079.23988,480.4171830866218,1111808.918794667,486152.2508655677,1747.68752,733.9931923912218,1799074.4556358925,745116.4638158323,0.37852,100000,0,707495,7392.22426547415,0,0.0,0,0.0,33840,352.95900029255654,0,0.0,33892,349.90805366322564,1591856,0,57105,0,0,0,0,0,78,0.8045304467756091,0,0.0,0,0.0,0,0.0,0.05861,0.1548399027792454,0.304214297901382,0.01783,0.3375,0.6625,24.501920370131653,4.379478986620157,0.3156862745098039,0.2396514161220043,0.229193899782135,0.2154684095860566,11.228942778390955,5.820280782363662,18.84861828876862,12073.078271991317,51.805139843101394,13.120279348602027,16.278104656013152,11.58552151189558,10.821234326590629,0.5610021786492375,0.7709090909090909,0.6894409937888198,0.5750950570342205,0.1243680485338726,0.7242524916943521,0.9172932330827068,0.834733893557423,0.7359307359307359,0.1751152073732718,0.5029533372711164,0.6875891583452212,0.641941391941392,0.5298416565164433,0.1101036269430051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024426830998763,0.0044430919050517,0.0066806099863951,0.0090655934304937,0.0113144961894974,0.0136485399117937,0.0159006996715827,0.0184154350557161,0.0204632612363859,0.0223928735985255,0.0242209210512823,0.0262149978949962,0.0279874149170248,0.0298536665739854,0.031968887330046,0.034112164019469,0.0361443288295283,0.0380956333191546,0.0398478028089946,0.0416979166666666,0.0563805346700083,0.0703339265152308,0.0838868078944883,0.0961360481258676,0.1083669035918419,0.1235905138674395,0.1355842281736768,0.1471026683987477,0.1584166880396683,0.1688409217697292,0.1811345148952216,0.1933332611590468,0.2046718697275468,0.2153972422849638,0.2248893878359638,0.2349348850096979,0.2443037126390564,0.2526229286743516,0.2607787015583117,0.2679560227911082,0.274751873255585,0.2815192956163357,0.2884588051357369,0.2946958345819598,0.2997180839429363,0.3049046825837497,0.3100786849095374,0.3148473729806859,0.3186034460422334,0.3226500237504618,0.3215540095006123,0.3193953481974609,0.318562520234794,0.3168302540415704,0.3167465819515164,0.3144068704744118,0.3130444405798934,0.3144051130776794,0.3139971336927591,0.3146982797040734,0.3156072825253073,0.3168379321906865,0.3175111445972248,0.316955899454334,0.318634628771694,0.3207420073578942,0.3211219719507012,0.3241340467473951,0.3277967757694187,0.3298530396753477,0.3313681368136814,0.3322487536079769,0.3349493442724843,0.3371595768624803,0.3400982300064868,0.3460321181573086,0.3477020126164013,0.3510025809013301,0.3474165769644779,0.3567383918459796,0.0,2.284482261025833,52.52990842894704,169.95583739395343,255.8341519725281,fqhc5_100Compliance_baseline_low_initial_treat_cost,36 -100000,95659,45283,429.2643661338713,6137,63.09913338002697,4814,49.8332618990372,1880,19.33952895179753,77.27782633283482,79.68793069520454,63.2892740309558,65.07183547955503,77.04605311584834,79.45541921095727,63.20366640669777,64.98814844400312,0.2317732169864825,232.51148424726864,0.0856076242580243,83.68703555191814,155.08614,109.1284027209984,162123.94024608243,114080.64345330645,391.87054,256.4258413923138,409150.074744666,267558.9033884045,378.27575,183.19491799808472,391788.2164772787,188729.78346291964,3172.13045,1429.195635850736,3285617.098234353,1463588.0009729725,1162.35692,504.6444155919307,1202756.4473808007,515200.7339756577,1857.81248,772.7114230403711,1912927.6910693191,783648.4736102486,0.38147,100000,0,704937,7369.270011185565,0,0.0,0,0.0,33763,352.4393940977848,0,0.0,34442,356.5372834756792,1595211,0,57256,0,0,0,0,0,74,0.7631273586384971,0,0.0,0,0.0,0,0.0,0.06137,0.1608776574828951,0.3063386019227636,0.0188,0.3278561463339017,0.6721438536660983,24.51781126491752,4.420371839777234,0.3194848358953053,0.2299542999584545,0.214374740340673,0.236186123805567,10.929478577703676,5.458258340034857,19.96750311553325,12269.037650599588,54.3651319200417,13.146846618960067,17.536288480122675,11.248697081402383,12.433299739556572,0.5481927710843374,0.7750677506775068,0.6996098829648895,0.5532945736434108,0.1178540017590149,0.7133388566694283,0.897172236503856,0.875968992248062,0.6666666666666666,0.1348837209302325,0.4929304130856667,0.7089136490250696,0.6403127715030409,0.5232843137254902,0.113882863340564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090266096508,0.0045635242576667,0.006517369500335,0.0086486376617173,0.010763517981586,0.012897179124092,0.0153799082100968,0.0178128223722512,0.0201714367545672,0.0223005295991641,0.0244820512820512,0.0265317651892558,0.0287287132787981,0.0306515779275658,0.0327173239727441,0.03511403009774,0.0373045397552407,0.0393022169150096,0.0413024475524475,0.0431677180543245,0.0576008694470859,0.0719597000544593,0.0860159751451093,0.0991371145953909,0.1114100900102356,0.1267121112687088,0.1390691204111756,0.1507713287309298,0.1616291257567007,0.1718951301211028,0.1852566243898233,0.1974729867261427,0.2091441382612859,0.2192191534993653,0.228744716449454,0.2392412356512875,0.2482723202822342,0.2569673376163098,0.2655235804094231,0.2726939761242546,0.2793238602860413,0.2859280037400654,0.2918322452455293,0.2976380217383489,0.302768901794501,0.3074703074703074,0.3130102679689456,0.3176963324125113,0.3223192989733485,0.3264586661737327,0.3254173746527496,0.324739281575898,0.3250338944752005,0.3229735405291894,0.3222202359671076,0.3197561949212393,0.3175605961999397,0.317833797111949,0.318926234282386,0.3191531247762904,0.3204909264923902,0.3207954522946501,0.321122860020141,0.3228684510632589,0.3244101306010534,0.3271164365720239,0.3277958554547011,0.3300590632007833,0.3343245539507222,0.335349489284999,0.3359662013225569,0.3402188417400587,0.3420337483410225,0.3483499616270146,0.3515942851736209,0.3537594435783667,0.3552631578947368,0.3580983741510599,0.3572228443449048,0.362095531587057,0.0,1.911573922327746,53.12852172154399,183.435689627886,272.5529791908869,fqhc5_100Compliance_baseline_low_initial_treat_cost,37 -100000,95824,45155,427.8573217565537,5955,61.18508933043914,4673,48.2446986141259,1863,19.07664050759726,77.39792083527668,79.7032425600403,63.37134666233783,65.07212024056115,77.16418764778598,79.46990366481324,63.28603079291216,64.98923069759238,0.2337331874906993,233.33889522704965,0.0853158694256706,82.88954296877193,156.28646,109.88234878626795,163097.40774753716,114671.01017100931,392.89503,258.7963570325132,409505.17615628656,269562.49690319045,380.62339,185.10346998697537,394184.244030723,190688.69931004167,3053.34156,1397.954599184881,3153673.526465186,1426144.973268576,1130.05269,499.1413770412567,1162660.9721990314,504254.6095354576,1827.10438,760.1873193328181,1873019.7445316412,764436.1941339064,0.38167,100000,0,710393,7413.518533978961,0,0.0,0,0.0,33883,353.0743863750209,0,0.0,34752,359.62806812489566,1590515,0,57005,0,0,0,0,0,76,0.7931207213224245,0,0.0,1,0.0104357989647687,0,0.0,0.05955,0.1560248382110199,0.3128463476070529,0.01863,0.3341338456612231,0.6658661543387768,24.56876428458025,4.367177661737552,0.3158570511448748,0.2392467365717954,0.2221271132035095,0.2227690990798202,11.015444240840887,5.648141810836661,19.83613605151249,12154.857678405226,53.26621975383287,13.550854738364755,16.694338046017798,11.605143821484567,11.415883147965769,0.5673015193665739,0.7969588550983899,0.698509485094851,0.5915221579961464,0.1104707012487992,0.7503912363067292,0.9331797235023042,0.8708860759493671,0.7429718875502008,0.125,0.498379970544919,0.7105263157894737,0.635522664199815,0.5437262357414449,0.1070154577883472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791204341135,0.0045496458571877,0.0067853339418834,0.0089863225125148,0.0108978529603122,0.0129144531965561,0.0150190540237614,0.0175057383320581,0.0195659725769867,0.0216590616111804,0.0238919738540663,0.0260169274172864,0.0280269173473056,0.0301717484589974,0.0324874770670569,0.0346703835630581,0.0363324126087541,0.0386385307408482,0.0405802519132321,0.042576441937431,0.0574963230308656,0.0714330537369004,0.0844360098139954,0.0971078941558646,0.1089316581643408,0.1245639258303909,0.1362768800101794,0.1480693090382732,0.1588027303900099,0.168259382004998,0.1812660190829007,0.1932574061455595,0.2052873588207798,0.2150501196969862,0.2249343052852634,0.2355578185360238,0.2457024369579273,0.2547549460431654,0.2633547553470026,0.2706465043923865,0.2776095249104149,0.2838584562903772,0.2903626281376734,0.2967843080936823,0.3024462385143162,0.3082854718303796,0.3124328913526606,0.3175199624236731,0.3215777022222796,0.3251112222602469,0.3241262683201804,0.3231066736154922,0.3219867717066184,0.3201105815611006,0.3194857896061966,0.3175828198401562,0.3149161685146922,0.3161717791411043,0.3166504779919227,0.3169209925841414,0.3176048307191864,0.3185638192937463,0.3191320178283705,0.3201558022922636,0.3209507509100113,0.3225831722985324,0.322745109271618,0.3263530825926043,0.330961606199366,0.3331211204838453,0.3369515434643217,0.3376157593276591,0.3407792867115116,0.3443063228974831,0.3482879635777293,0.3489812939354224,0.3499691928527418,0.3568682986040866,0.3621207980322492,0.3617994662600076,0.0,2.0584293263424343,56.26703983649049,174.63126584749264,254.5388346523951,fqhc5_100Compliance_baseline_low_initial_treat_cost,38 -100000,95543,45225,428.8330908596129,6015,61.61623562165726,4731,48.836649466732254,1865,19.05948107135007,77.19945181010942,79.67207449364156,63.224607941291474,65.05444502573664,76.9609262075069,79.43655998437836,63.13408628090404,64.96812169964863,0.2385256026025217,235.5145092631972,0.0905216603874308,86.32332608800652,154.03784,108.4289562045054,161223.34446270266,113486.8649890054,390.80541,257.0844180095445,408365.57361606817,268407.4442207011,380.86308,185.250737722179,394755.9423505647,190886.28185911095,3115.33177,1441.231518658234,3219731.147232136,1467625.0472170687,1127.08431,506.9152203381343,1164326.669667061,515314.6967289506,1823.74898,783.2820313852541,1866348.4713689124,782792.4122021344,0.38137,100000,0,700172,7328.333839213757,0,0.0,0,0.0,33696,351.9671770825701,0,0.0,34874,361.12535716902335,1591213,0,57122,0,0,0,0,0,63,0.6593889662246318,0,0.0,2,0.0209329830547502,0,0.0,0.06015,0.1577208485198101,0.3100581878636742,0.01865,0.3481363996827914,0.6518636003172086,24.365693977944638,4.3646330132200575,0.3250898330162756,0.2318748678926231,0.2223631367575565,0.2206721623335447,10.91180875728302,5.584979053592833,20.21815925030544,12214.630484045672,54.11342514914514,13.168649892527943,17.63269827624824,11.750181554855544,11.561895425513402,0.5649968294229549,0.7821330902461258,0.6963589076723017,0.594106463878327,0.1139846743295019,0.7279752704791345,0.9090909090909092,0.8687350835322196,0.7519685039370079,0.12,0.5036368926389293,0.7104136947218259,0.6318141197497766,0.543859649122807,0.1123321123321123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024936391927096,0.0046062376980986,0.0067328783816719,0.0091609728322759,0.0114020442236429,0.0136190340271972,0.0157881308363525,0.0177498467198038,0.0199447400736799,0.0221359103905553,0.0243899935329562,0.0267652411750794,0.0290622232291816,0.0310598089579336,0.0331628171342944,0.0353708400186325,0.0375117969778994,0.0395044534749576,0.0414895833333333,0.0434001858367351,0.058361403435362,0.0728817114093959,0.0865666621114486,0.0999178064869649,0.1112285560265096,0.1262391196022095,0.1386122813736754,0.1495762983201349,0.1603364225638827,0.1699793495095508,0.1831948930102939,0.1950067842605156,0.2062742102678815,0.2162912410440965,0.2263594815975978,0.2368359648440538,0.2466559957017652,0.2555561826288165,0.2641079924423501,0.2720234334616047,0.2789273452723392,0.2856120845354538,0.2918139755605647,0.2976791120080727,0.3029184632999586,0.3072682323856613,0.310910963722239,0.3141343883606662,0.3190298022708966,0.3233620119126406,0.3228260282116413,0.3217450109028679,0.3212913795051406,0.3202822738404022,0.3201539172843741,0.3187828654017651,0.3168634680482494,0.3176063303659743,0.3177026098901099,0.3178743788011984,0.3179532571234863,0.3195966333174527,0.320582532456584,0.3221226213744917,0.3233580700524547,0.3249043551176563,0.3266387806555123,0.3299180327868852,0.3326877706961513,0.3363712010143836,0.3399683329563447,0.3429249011857707,0.3431305109123882,0.3468892261001517,0.3472545912184208,0.3504313910885238,0.3492424242424242,0.3569292123629112,0.3591415376256452,0.3626331811263318,0.0,2.6477708469351,56.23168399374025,184.62435571559897,249.9031704296684,fqhc5_100Compliance_baseline_low_initial_treat_cost,39 -100000,95682,44989,425.55548588031183,6144,62.81223218578207,4854,50.14527288309191,1938,19.826090591751843,77.33990302576841,79.72987924290035,63.32261558699434,65.08868495023658,77.09316434869646,79.48616867222132,63.22966835332942,65.00004200002384,0.2467386770719457,243.71057067902768,0.0929472336649155,88.64295021274415,155.25576,109.21435356465116,162262.24368219727,114143.05048457511,393.79874,258.35818750167266,411011.465061349,269458.6625506079,381.60947,185.81261525274695,395659.47618151794,191793.7082160772,3167.50351,1456.6045524594035,3272585.209339269,1484475.6824265812,1167.11081,522.1594333049537,1204379.9356200749,530322.77053673,1888.60418,801.2416481743561,1933398.9674128883,801448.1291097889,0.38016,100000,0,705708,7375.556531008967,0,0.0,0,0.0,33862,353.3057419368324,0,0.0,34956,362.1684329340942,1593988,0,57199,0,0,0,0,0,85,0.8883593570368512,0,0.0,0,0.0,0,0.0,0.06144,0.1616161616161616,0.3154296875,0.01938,0.3307525549705791,0.6692474450294209,24.216227897457305,4.361987192083175,0.3271528636176349,0.2348578491965389,0.2204367531932426,0.2175525339925834,11.376649884032672,5.978414049116687,20.736556338958582,12176.146506772584,55.11857362172902,13.603997330698627,18.16833427454,11.700641670395024,11.645600346095351,0.5700453234445818,0.7921052631578948,0.7065491183879093,0.569158878504673,0.1259469696969697,0.7303543913713405,0.9039408866995072,0.863013698630137,0.721030042918455,0.1583710407239819,0.5115298087739033,0.7302452316076294,0.6469565217391304,0.5268817204301075,0.1173652694610778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0045208048248948,0.0067782163549837,0.0090500954779994,0.0111650041182392,0.0134367556342759,0.0158193011782933,0.0180758553115048,0.0203119888779849,0.0224671948248684,0.024686042339433,0.0267712332423166,0.0289160591072218,0.0311692057311784,0.03334675047218,0.0354329080419363,0.0376486676888649,0.0396097155906165,0.041933671770972,0.0438354165146413,0.0574255150223559,0.0715399997906044,0.0846378210508645,0.0976687426359198,0.1093703844368485,0.1250343849848706,0.1371579539305457,0.1482206917107546,0.1585985900448622,0.1688845044446112,0.1816899132963541,0.1936866254720962,0.2052035067110444,0.2151050266256984,0.2249790850248778,0.2357476790818248,0.2460439683071086,0.2554407759998199,0.2637174366887537,0.2713141888409067,0.2786454717941598,0.2849140451409191,0.2915088981446422,0.2973487798157443,0.3025000910669402,0.3068905616676317,0.3107546792112902,0.3156401841817395,0.3199896359632077,0.3236703496891212,0.3222282096187525,0.3217338637521164,0.3208938389961934,0.3205295138888889,0.3201124715473764,0.3186357092535302,0.3168859128397524,0.31606175069798,0.317543470470795,0.317776509612298,0.3185759499597355,0.31947107307335,0.3205963024224786,0.319926546334035,0.3205483412436457,0.3213884901474618,0.3221350078492935,0.3255234611503532,0.3286191732629727,0.331615460852329,0.3351506065149243,0.3375748899846243,0.3396392432908051,0.3420712711800015,0.3454630495790458,0.3501536279839281,0.3533466074437126,0.3553921568627451,0.3605688789737869,0.3717156105100463,0.0,2.314899348194704,56.63298844954031,186.6880819534991,261.16995986110965,fqhc5_100Compliance_baseline_low_initial_treat_cost,40 -100000,95789,45334,430.9471860025681,5874,60.059088204282325,4571,47.187046529350965,1750,17.903934689786926,77.331780499572,79.6740903683221,63.32970022966426,65.06343051869432,77.11555060437477,79.45914666491008,63.24983891254495,64.98639407426568,0.2162298951972303,214.9437034120183,0.0798613171193096,77.03644442864288,155.56662,109.47457617300545,162405.51629101465,114287.21061187134,390.3279,257.0966225694741,406937.5919990813,267849.5232015837,378.53268,183.9154040208267,392194.2081032269,189656.3110774728,2973.38819,1350.7818071083718,3069479.79413085,1375675.609579644,1076.7872,474.2795652764258,1111096.3471797388,482158.6132835292,1704.55136,710.9868214855328,1744589.7754439446,712473.8418847005,0.38083,100000,0,707121,7382.0689223188465,0,0.0,0,0.0,33731,351.5643758677928,0,0.0,34553,357.69242814937,1592180,0,57129,0,0,0,0,0,73,0.7620916806731461,0,0.0,0,0.0,0,0.0,0.05874,0.1542420502586456,0.2979230507320395,0.0175,0.3233863120337333,0.6766136879662666,24.37657306539043,4.442699703470138,0.3307810107197549,0.2386786261211988,0.2192080507547582,0.2113323124042879,11.505834169612683,6.022080734400939,18.527030372834616,12110.57642353649,51.66847059253528,13.018538274486003,17.15957735850252,11.04994383541086,10.440411124135904,0.5690220958214832,0.7919340054995417,0.7017195767195767,0.5658682634730539,0.1128364389233954,0.7363945578231292,0.91644908616188,0.8367346938775511,0.730593607305936,0.1483516483516483,0.5110456553755522,0.7245762711864406,0.6544642857142857,0.5197956577266922,0.1045918367346938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021878956697898,0.0044402092372572,0.0068089338082336,0.0091328375797472,0.011207729468599,0.0133402580474342,0.0154972370057706,0.017803911960472,0.0197399358017623,0.0216409888928699,0.0237934145241317,0.0258434811179333,0.0279063071955909,0.0296353522867737,0.0316118645117344,0.0337120468102263,0.0356887641496732,0.0378472006140187,0.0397069520939416,0.041493559907954,0.055911509965564,0.0698722843425415,0.0833176090739459,0.0958565829156289,0.1080927291886196,0.1238719222233963,0.1357917386557561,0.1468630370055295,0.1576627534685165,0.1680220286501023,0.1815549239977608,0.193448936101165,0.2047350276771829,0.2148130324937386,0.2235819778575044,0.2337340054284606,0.2432981180066712,0.2521449695824759,0.2604476088977574,0.2685123721015405,0.2761506276150627,0.2829381726398448,0.2900833776831648,0.2964054283900487,0.3014325603982032,0.3062466881092338,0.3114760253826802,0.3169396123576904,0.3207104731305384,0.3241730682928117,0.3237019890722148,0.3228310753249608,0.3216375914462577,0.32037502528098,0.3201877515856394,0.3185042204758184,0.315770291255982,0.3158655583664618,0.316309776287884,0.3177480064933906,0.3182780390026414,0.3193660442900564,0.3206724521024609,0.3198452974447251,0.3191187093667229,0.3199332168105809,0.3225135366201196,0.3269049563414787,0.3300311548289985,0.3345631992382766,0.3371928704927747,0.3385361176219902,0.3438491811603402,0.3500879810267003,0.3543396226415094,0.3549000951474786,0.3553706272152874,0.3557439935392691,0.3551867219917012,0.3583792289535799,0.0,2.0219802829319664,51.44160173786522,175.57842899782344,252.0677532988734,fqhc5_100Compliance_baseline_low_initial_treat_cost,41 -100000,95689,44863,424.4479511751612,6082,62.38961636133725,4750,49.07565132878388,1898,19.448421448651363,77.34192318165195,79.71752820020996,63.32298576779221,65.07516331056554,77.1066005334532,79.48344547881476,63.236348018735015,64.99117522018192,0.2353226481987462,234.0827213951968,0.0866377490571892,83.98809038362742,154.49588,108.71588314328592,161456.02942866995,113613.55656897448,390.95319,256.7350654889958,408026.7115342412,267762.3284609472,377.27073,183.43167740414083,390921.2030640931,189048.8604084389,3134.08064,1421.370844562404,3242669.627647901,1452858.9720693107,1107.03305,484.2561027686472,1144970.2055617678,494252.9309934204,1863.60018,777.642004890436,1913075.776735048,784298.2866276453,0.37857,100000,0,702254,7338.910428575908,0,0.0,0,0.0,33705,351.66006542026776,0,0.0,34414,356.2478445798368,1596165,0,57253,0,0,0,0,0,81,0.8464922822895005,0,0.0,0,0.0,0,0.0,0.06082,0.1606572100272076,0.3120683985531075,0.01898,0.3427810836204196,0.6572189163795803,24.542827152398303,4.441918144008943,0.3265263157894736,0.2229473684210526,0.2273684210526315,0.2231578947368421,11.423410885130572,5.866662143022294,20.225832563166747,12122.813620949284,53.652142782999285,12.5939145820767,17.63857053991588,11.93405082290232,11.48560683810438,0.5635789473684211,0.7884796978281398,0.7034171502256609,0.5861111111111111,0.1113207547169811,0.7419354838709677,0.9247311827956988,0.8947368421052632,0.7379912663755459,0.1291866028708134,0.5026828579497317,0.7147016011644832,0.6371527777777778,0.54524089306698,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781811002095,0.0048144656956649,0.0069083051827505,0.0094257216568143,0.0116847853721538,0.0138054610983282,0.0160675325734559,0.0184513902361818,0.020706368358624,0.0227719528178243,0.0250697235665654,0.0271408180240498,0.0291488814605297,0.0313436988037464,0.0334547931913663,0.0353342639987591,0.0374559767971825,0.0396504120736542,0.0415973377703826,0.0434420165265143,0.0584733015793432,0.0715669336683943,0.0849199185541258,0.0977313860010943,0.1096455592018487,0.1248650707981459,0.1368660218501491,0.1476822461761322,0.158017935206661,0.1689761396202518,0.1818613075728825,0.1932748538011696,0.2054421768707483,0.2151361288628206,0.2246230049532196,0.2342259497667822,0.2441725462177369,0.2529354152360152,0.2614703880190606,0.268933840373866,0.2761589557247668,0.2824179167349231,0.2895023438609783,0.2947784904981715,0.299052247873633,0.3038172831593349,0.30960341610629,0.3134529718722159,0.3185771878200225,0.3223910171730515,0.321522504417259,0.3197192614756698,0.3197115723820678,0.3181975886893919,0.3171282203578588,0.3155551475650617,0.3138619184667446,0.3152682662462432,0.3159901514892453,0.3169090746854644,0.3174255199550309,0.3184084523762415,0.3195355563473267,0.3196372592924317,0.3205710577547047,0.3218689838180967,0.321657046998948,0.3253983189060344,0.3288097653107621,0.3313553287443627,0.3338315217391304,0.3360490953338271,0.3408761424519382,0.3401890359168242,0.3404553088262735,0.3433185115843669,0.3428657435279952,0.3450886630802949,0.3556280587275693,0.3568759342301943,0.0,2.1784807437397866,52.80386814520391,183.0368804382388,263.090716221005,fqhc5_100Compliance_baseline_low_initial_treat_cost,42 -100000,95728,45272,430.0100284138392,6106,62.57312385091092,4767,49.10788901888685,1955,20.025488885174664,77.32392886815877,79.68903105597778,63.31606620966248,65.06531400342486,77.08111759118512,79.44674877483057,63.225666611174056,64.97762831031079,0.2428112769736543,242.2822811472116,0.0903995984884247,87.68569311406793,155.97208,109.72784335838271,162932.5589169313,114624.6065502076,394.54786,259.6925261172715,411465.9347317399,270594.86811044207,381.08255,185.47632970031336,393428.69379909744,190186.2461934994,3142.77579,1442.1603237360744,3241621.4482700983,1465279.049957918,1153.82293,511.3621392240311,1187521.3103794083,516389.7806535506,1908.79624,806.2344105133699,1957010.049306368,811095.7034749825,0.3813,100000,0,708964,7406.02540531506,0,0.0,0,0.0,34058,355.05808123015214,0,0.0,34849,359.4246197559753,1585998,0,57008,0,0,0,0,0,68,0.6998997158616079,0,0.0,1,0.0104462644158448,0,0.0,0.06106,0.1601363755573039,0.3201768752047166,0.01955,0.3274266896659871,0.6725733103340129,24.29838696365891,4.43274776528928,0.3209565764631844,0.2294944409481854,0.224250052443885,0.2252989301447451,11.519926754760997,6.116413343279271,20.92684789560941,12175.801011126508,54.09486925819473,13.075250736392457,17.323967634491748,11.876943279412927,11.818707607897595,0.5697503671071953,0.7851919561243145,0.7137254901960784,0.5958840037418148,0.1191806331471136,0.7253685027152832,0.9057591623036648,0.8591885441527446,0.77734375,0.1293103448275862,0.5120759056929269,0.7205056179775281,0.6588658865886589,0.5387453874538746,0.1163895486935867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790118204746,0.0042583824230195,0.0067286418901089,0.0087992033977524,0.0111384627904138,0.0134521384928716,0.0159146055502314,0.0180673083793522,0.0201208477747446,0.0219924234667758,0.0239088756061802,0.0259142898211462,0.0279225652571734,0.0300049441720571,0.0321229194398869,0.0339869551285364,0.0360043089161418,0.0381329984327483,0.0400657190096394,0.0421315830598531,0.0567422534034911,0.0704287238716966,0.0838864596768274,0.0964468606399646,0.1087151368165761,0.1242767535091338,0.137073072393341,0.1491833301390574,0.1601508256959131,0.1707583781813503,0.1845093923246676,0.1964034689331516,0.2073853445370843,0.2177482835527179,0.2276891269204121,0.2372821296480854,0.2475143670144507,0.2551678350793883,0.2633497212539598,0.2706620336922741,0.2773991655076495,0.2841439118715574,0.2906068044635763,0.2969329572054499,0.3027765267245262,0.3072982248228526,0.3114480648155115,0.3161733763501192,0.3204667281010292,0.3248713505218737,0.3228510115665447,0.3219588865450635,0.3213292488388836,0.3199565532223026,0.3188440304171193,0.3179938110848984,0.315428806558311,0.3161788831288142,0.3160241952019684,0.3163258021915265,0.3176140088023223,0.3183706575927831,0.3195329532114707,0.3212887347578029,0.3228120861923679,0.3234580146694161,0.3249294932057089,0.3295694685380855,0.3338856961534393,0.3366852146263911,0.338559708295351,0.338390536311071,0.3409005156584077,0.3449638920562524,0.3496787603930461,0.3528081865778201,0.3515767131594906,0.3514048278591214,0.3538011695906433,0.345179584120983,0.0,2.6777806095503007,56.03705483217794,175.65594397455072,263.00557889754026,fqhc5_100Compliance_baseline_low_initial_treat_cost,43 -100000,95781,45098,427.0053559683026,6039,61.64061765903467,4694,48.28723859638133,1860,18.91815704576064,77.4066300966336,79.7460924788947,63.35719594835807,65.08780033489093,77.1681347369989,79.51287746064114,63.26717820279772,65.00312741111216,0.2384953596347117,233.21501825355995,0.0900177455603525,84.67292377876845,155.41966,109.32280411198272,162265.64767542624,114138.29894444904,393.74897,258.8786173422907,410401.3739676972,269590.1977869208,377.43757,183.6162898714564,389981.77091489965,188421.499419743,3088.96419,1421.5855832113675,3180494.2838349985,1439939.2926788176,1122.20524,500.8683785132412,1157621.9396331217,509013.9010039727,1819.60256,776.3598249182336,1853905.9730009085,771293.8828167705,0.38193,100000,0,706453,7375.71125797392,0,0.0,0,0.0,33954,353.7549200780948,0,0.0,34510,356.2815172111379,1593204,0,57206,0,0,0,0,0,68,0.6890719453753875,0,0.0,1,0.0104404840208392,0,0.0,0.06039,0.1581179797345063,0.3079980129160457,0.0186,0.339034045922407,0.6609659540775931,24.32862185643037,4.44460445314766,0.3308478909245845,0.2275244993608862,0.2215594375798892,0.2200681721346399,11.215178743819592,5.830482648304723,20.024398550413512,12246.511882742294,53.24818231275906,12.828527439053296,17.514942665255695,11.538685860965124,11.366026347484937,0.5654026416702173,0.7837078651685393,0.6928525434642627,0.5932692307692308,0.1200387221684414,0.7209480122324159,0.8872180451127819,0.8177570093457944,0.7846153846153846,0.1583710407239819,0.5053160070880095,0.7219730941704036,0.6453333333333333,0.5294871794871795,0.1096059113300492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0049786051793717,0.0071340863194,0.0094998120358046,0.0114827961473133,0.0137369910999775,0.0159662323362084,0.0182003776859082,0.020503700069504,0.0226267960211224,0.0247914403427142,0.0269557543917254,0.0289320328478781,0.0310685608400247,0.0331199554689674,0.0352632611546523,0.0369650006724671,0.0391967821525574,0.0409142857142857,0.0428015159087123,0.0575578604670576,0.0715652746839017,0.0853869456295007,0.0987429844659786,0.1108453538727385,0.1261835319976329,0.1381477830423675,0.1492307201565141,0.1602927995219599,0.1709942798380358,0.1832795351839896,0.1955971714637891,0.207365710000978,0.2177459866768592,0.2271374117078422,0.2379566727888296,0.2478030066467413,0.2570484284365304,0.2651809005330611,0.2722818745850409,0.2788847385889237,0.2854822121452947,0.2914369543099164,0.2979707228251755,0.3037751667658959,0.3075917844021993,0.3121516863079062,0.3176108233317636,0.3225655976676385,0.3261127988376701,0.3254867065739092,0.3242145551670017,0.3228567399887196,0.3216723549488055,0.3200184200362458,0.3176663248595785,0.3162583518930957,0.3168149990183888,0.3178459186273677,0.3179487179487179,0.3187332039414751,0.3199315486142528,0.3208546117769671,0.3224148289904092,0.3244806731527741,0.3251586171177004,0.3274393866523326,0.3323875152006486,0.3347844257156788,0.3394726485635576,0.3431009571970381,0.3456666841856309,0.3471331631700181,0.3496771286980027,0.3542762247439801,0.3561484918793503,0.3581818181818181,0.355119825708061,0.3583265417006248,0.3538344722854973,0.0,2.7803790831629533,56.77688498117181,170.9960466963555,253.67371919688995,fqhc5_100Compliance_baseline_low_initial_treat_cost,44 -100000,95689,45044,427.6144593422442,5978,61.37591572699057,4595,47.44536989622632,1763,18.03760097816886,77.29491858535671,79.69625946839233,63.29396199958445,65.07355547222245,77.07040970003575,79.47556720606114,63.210128969057386,64.99411821318135,0.224508885320958,220.692262331184,0.0838330305270673,79.4372590411001,156.2792,109.91437211489188,163319.9218300954,114866.25642957068,391.71738,257.3288390033288,408775.4600842312,268333.5615586805,375.31289,182.198568260893,388536.6552059276,187651.6537242707,2980.74133,1366.001366318042,3076567.160279656,1389155.4779019775,1071.60635,476.4546326509659,1104108.6436267493,482347.2809757234,1718.87172,726.0080197488896,1759130.0985484223,726482.1151703063,0.38063,100000,0,710360,7423.632810458883,0,0.0,0,0.0,33842,353.04998484674314,0,0.0,34244,354.2726959211613,1589288,0,57027,0,0,0,0,0,59,0.6165807982108706,0,0.0,0,0.0,0,0.0,0.05978,0.1570554081391377,0.2949146871863499,0.01763,0.3286970423661071,0.6713029576338929,24.432289927490864,4.337970451816401,0.3357997823721436,0.2467899891186072,0.2093579978237214,0.2080522306855277,11.6017355548712,6.153018463499188,18.982659097394187,12145.066761432188,52.1909531122414,13.48919894741682,17.519804904048954,10.587944757767328,10.594004503008309,0.5778019586507073,0.781305114638448,0.6992871030460143,0.5945945945945946,0.1234309623430962,0.7354581673306773,0.915,0.8419753086419753,0.7415254237288136,0.1915887850467289,0.518562874251497,0.7084468664850136,0.648506151142355,0.546831955922865,0.1037735849056603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019767453647855,0.0040792718195378,0.0063474330980551,0.0085811600833714,0.0107698728584952,0.0130971430901103,0.0154087921955998,0.0174291493839521,0.0195502721283299,0.0215634251528903,0.0236957101532527,0.025826202192248,0.0280101668055855,0.030094095579672,0.0321848097607299,0.0340448415653181,0.0358652849740932,0.037813032102662,0.0399787778540665,0.0421313765139986,0.0569100595424631,0.0701295165900595,0.0834024243060292,0.0957121060661861,0.1075954041421804,0.1232250555496772,0.135790937364002,0.1470810574844816,0.1578834893362397,0.168351143727737,0.182415546363323,0.1948266908996495,0.2060965799143347,0.2167954448585261,0.2262335463012855,0.236508780088133,0.2453615378607847,0.2538682270860293,0.2612645348837209,0.2688250940108227,0.2760485421153801,0.2834837365544202,0.2903126516792745,0.2960635210017511,0.3009686318834239,0.3062655033258876,0.3113090540083437,0.3157646879136544,0.3200905855710126,0.3246785784927803,0.323777879415642,0.3228430860566748,0.3221873372097935,0.3215312387143373,0.3205610114846896,0.3187104484930205,0.3166822555842673,0.3164993674941267,0.3172165177427346,0.3181972515591773,0.3194376665790758,0.3203145114970985,0.3224486369645967,0.32306899872349,0.323855956748407,0.3255874741877304,0.3282,0.3312838945642578,0.3336843952957697,0.3363777151252829,0.3379619056319372,0.3434960429170872,0.3504209071491393,0.3501901140684411,0.3535106682958924,0.3573295319553338,0.3562414474684506,0.3560728744939271,0.3687347602275806,0.3711069418386492,0.0,2.097763661616544,55.201904396649816,170.11975539806002,250.08810072671145,fqhc5_100Compliance_baseline_low_initial_treat_cost,45 -100000,95716,44892,425.9580425425216,5990,61.48397342137156,4699,48.476743700112834,1926,19.72501985039074,77.3593554540744,79.73083420566752,63.33143217950936,65.0839525198635,77.12047410818937,79.49196278578002,63.24327538824527,64.99807648327183,0.2388813458850336,238.87141988750216,0.0881567912640903,85.87603659167087,155.75736,109.51457720859526,162728.65560616823,114416.16574929506,394.59122,259.3259997485176,411639.2243721008,270320.39919769,378.3824,183.9723473372848,390873.3231643613,188851.3278718445,3122.50027,1416.960003896644,3226140.112415897,1444264.2859048066,1116.83031,491.5261979358629,1151343.8819006225,498052.7789876957,1887.55266,789.3688555962024,1936175.2267123573,796005.9966398949,0.37919,100000,0,707988,7396.757073007648,0,0.0,0,0.0,34031,354.8936436959338,0,0.0,34537,356.35630406619583,1589474,0,57047,0,0,0,0,0,83,0.867148648083915,0,0.0,0,0.0,0,0.0,0.0599,0.1579683008518157,0.3215358931552587,0.01926,0.3426161680458306,0.6573838319541693,24.454407747788657,4.408211992161855,0.3094275377739944,0.2296233241115131,0.2300489465843796,0.2309001915301128,11.290559079533445,5.837986630836868,20.551908612974223,12071.738870724874,53.24565916491658,12.92814395908476,16.37848616039996,12.03768148872658,11.901347556705293,0.5494786124707385,0.7849860982391103,0.6980742778541953,0.5624421831637373,0.1032258064516129,0.714987714987715,0.9134615384615384,0.8296089385474861,0.7130434782608696,0.1474654377880184,0.4913743530764807,0.7043740573152338,0.6551094890510949,0.5217391304347826,0.0921658986175115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.0044502113596966,0.0068089338082336,0.0089882391176291,0.0111141616586844,0.0131124843474808,0.0152811050512258,0.0172917134516056,0.0193003618817852,0.0216218429754604,0.0237399374455212,0.0260479257182181,0.0280669986419194,0.0300950967967937,0.0319897632757517,0.0339377274230896,0.0358529439170091,0.0379724515620462,0.0400960558870615,0.0421649097954251,0.0575250347196842,0.0716707832712354,0.0857109889648806,0.098473218228849,0.1100320553376354,0.1254852597395728,0.1367330914029838,0.1485739835840439,0.1592422024426469,0.1689002864899084,0.1815723121349912,0.1934834379735873,0.2045976261192162,0.2142864958911005,0.2237458009802302,0.2337417530631479,0.242582273392221,0.2516198704103671,0.2596202948218926,0.2676198331958574,0.2754914324721454,0.2816303623417167,0.2870350665626256,0.2933143431635389,0.2987539280991033,0.3045929609887607,0.3094082322031777,0.3144534973879221,0.3191935400383042,0.3234642762984445,0.321972141551038,0.3209033180306237,0.3192975061468212,0.3182944039630195,0.3176531594932958,0.3151048822936704,0.3129770992366412,0.3129744764397906,0.3128172805015161,0.3138870597447899,0.3143846513804398,0.3155056978650287,0.3157839516535168,0.3165874226249215,0.3167601666144993,0.3174097941506431,0.3209925841414717,0.3248542159180457,0.3264516582843879,0.3300019829466587,0.3317823092012226,0.336774880255455,0.3410749413033822,0.3438783269961977,0.3456212574850299,0.3448885744605588,0.3459902794653706,0.3495398159263705,0.3504901960784313,0.3546180159635119,0.0,2.4533285111285115,53.27058215621374,175.75330219483752,264.14677171859825,fqhc5_100Compliance_baseline_low_initial_treat_cost,46 -100000,95879,45003,424.9522836074635,6147,62.787471709133385,4840,49.79192523910345,1893,19.32644270382461,77.4394230829848,79.71984487964475,63.39129033748679,65.07720686439659,77.20006842249606,79.48421826874814,63.30177216242532,64.99223321697235,0.2393546604887433,235.62661089661677,0.0895181750614639,84.97364742423485,155.40712,109.29695571913864,162086.7134617591,113994.67633072796,392.99453,257.4626968087495,409217.5241710906,267860.3623408145,378.78388,184.39838739868145,391099.3648244141,189280.8908954339,3211.62732,1464.2833814937892,3305808.602509413,1483361.6240196377,1161.29835,514.9184099065745,1196705.5768207845,522543.4139974077,1856.92482,785.1357636517035,1897837.7538355635,783950.3613454945,0.38108,100000,0,706396,7367.577884625412,0,0.0,0,0.0,33840,352.2460601382993,0,0.0,34610,356.9394757976199,1597333,0,57370,0,0,0,0,0,83,0.8656744438302443,0,0.0,1,0.010429812576268,0,0.0,0.06147,0.1613047129211714,0.3079551000488043,0.01893,0.3320912901723334,0.6679087098276665,24.579044221226493,4.302273661897204,0.3188016528925619,0.2303719008264463,0.2285123966942149,0.2223140495867768,10.885686483527982,5.604613289331732,20.174788003051702,12240.015040218326,54.66488569412584,13.360484345363858,17.306729386635716,12.266970304858429,11.730701657267852,0.5599173553719008,0.7650224215246637,0.6876215165262476,0.608499095840868,0.1143122676579925,0.731764705882353,0.8920308483290489,0.8811881188118812,0.7576923076923077,0.1486486486486486,0.4984572230014025,0.696969696969697,0.6189640035118525,0.5626477541371159,0.1053864168618267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023587770803806,0.0047225262475171,0.0070603272502257,0.0093716049508066,0.0115868966428491,0.0138377322398811,0.0161242678889737,0.0181048551611587,0.0204323484941359,0.0227909736287567,0.0250107584171806,0.0270153801955613,0.0291016708798322,0.0313040434818413,0.0335367739541021,0.0357684960503898,0.0376163873370577,0.0394993161188709,0.0416316275786173,0.0436415463359826,0.0584697175023454,0.072672747980732,0.0862121323182927,0.0987883751207425,0.1108608002694935,0.1254275940706955,0.1370463741711332,0.1481174482736634,0.159135978847261,0.1700166966349858,0.1824495763987442,0.1943637011983618,0.2051758417261497,0.2157368449811485,0.2251217929684493,0.2357602992938259,0.2454270841461103,0.2543475330277703,0.2626916061495236,0.2699022466129309,0.2774671964516725,0.2853639453001833,0.2918730421419706,0.297191159215536,0.3025491624180626,0.3082180815034668,0.3133284978240208,0.3180674831038163,0.3222416133410898,0.3264779460171165,0.3254594587327409,0.3242096300162057,0.3241871775769247,0.3235204987228884,0.3228031145717464,0.3209032810445525,0.3188062155198305,0.3192775030295091,0.3199638632257184,0.3210502892745883,0.3216848557332935,0.3227205519960571,0.3225355054302423,0.3240699537201851,0.3251284502330027,0.3260305264250857,0.3273828047641949,0.3330629056415377,0.3360712794097173,0.3387687581235968,0.3418162093748587,0.3457351231370891,0.3462718337194015,0.3493966760264096,0.3534458376543792,0.3581859195061142,0.3642547928262214,0.3623872026251025,0.361949598449183,0.3577358490566037,0.0,2.711330487099618,55.31093633252242,183.3078338370436,263.4502771227924,fqhc5_100Compliance_baseline_low_initial_treat_cost,47 -100000,95738,45079,425.5885855146337,6081,62.28456830098811,4723,48.74762372307757,1841,18.84309260690635,77.34647984393533,79.70010310551372,63.33814763576003,65.0760176360757,77.1132665607579,79.4678398859328,63.25158141324413,64.99221953668734,0.2332132831774203,232.2632195809149,0.0865662225158985,83.79809938836047,155.87396,109.65926928240494,162813.05228853747,114541.00700077807,394.76425,259.8950964505243,411778.6876684284,270905.51970014453,385.23477,188.06611800243087,398695.1889531848,193610.0914373073,3099.01869,1427.4589700759852,3201067.6429421967,1455094.54978795,1108.08361,495.0233116390686,1140718.3563475318,500366.25126811536,1806.9125,768.1134625058303,1851705.195429192,771834.7044987483,0.38039,100000,0,708518,7400.593285842612,0,0.0,0,0.0,34092,355.5119179427187,0,0.0,35190,363.8993920909148,1586879,0,57021,0,0,0,0,0,73,0.7624976498360108,0,0.0,0,0.0,0,0.0,0.06081,0.1598622466416046,0.3027462588390067,0.01841,0.330132241813602,0.669867758186398,24.4071612926528,4.335589269760496,0.3078551767944103,0.2447596866398475,0.2267626508575058,0.2206224857082362,11.189247060862934,5.819295983242889,19.79047230226996,12170.827576141057,53.697329054547694,13.889267326570351,16.579418888910173,11.789141391395676,11.439501447671503,0.5744230362058014,0.8079584775086506,0.7138927097661623,0.5882352941176471,0.1065259117082533,0.7308868501529052,0.9225512528473804,0.8663239074550129,0.7233201581027668,0.1365638766519823,0.5144948755490483,0.7377963737796374,0.6582159624413145,0.5464547677261614,0.0981595092024539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192221997164,0.0046731340408924,0.0071340863194,0.0094776619735478,0.0116338194317326,0.0139884345984688,0.0161977573904179,0.0185039651353861,0.0207500689965348,0.0228722369539176,0.0251232587459896,0.0274156795927165,0.0296612347709864,0.0317746420846637,0.0338829161593859,0.0359693640244343,0.0379872651032769,0.0400473097752785,0.042245761390451,0.0443916716141195,0.0589979432675944,0.0721746593263977,0.0855566163433595,0.0984153022703134,0.1104504048582996,0.1254413972469498,0.1369836858518785,0.1483168548653164,0.1585459592185331,0.169206696246758,0.1821019883091298,0.1941906111105103,0.2042668347606833,0.2146119719387197,0.2246916837037525,0.2350453841044941,0.2445418255614281,0.2536071344226898,0.2628898140690406,0.270521277083047,0.2768563497571131,0.2836096625587541,0.2896387652684405,0.2949357375791291,0.3005940449724844,0.3059643591669848,0.3106804618983874,0.3152869890652647,0.3198558483815351,0.324283639244685,0.3231695815031394,0.3221272319277523,0.3204441688743588,0.3197976147452114,0.3188838841070924,0.3175744015692525,0.3157345146744719,0.3159060336625217,0.316002597047567,0.3157725666559589,0.3164507189934092,0.3184196497324619,0.3197324554966138,0.32044025860719,0.321735157621372,0.3231304075071228,0.3226,0.3256348132532016,0.3289201053555751,0.3335314158941447,0.3341084211006246,0.3383714741883981,0.3418755103322655,0.3456931410696574,0.3496034743202417,0.3553857176976355,0.3551459293394777,0.3598856209150327,0.3560033585222502,0.3569182389937106,0.0,2.3202595384753373,57.20052092915377,173.35875489682516,257.0776936753298,fqhc5_100Compliance_baseline_low_initial_treat_cost,48 -100000,95734,45444,430.2337727453152,6110,62.57964777404057,4795,49.42862514884994,1979,20.3062652767042,77.41222784566315,79.76831453962131,63.350809200748486,65.08978071486233,77.17033647573088,79.52773281229531,63.262965254854166,65.00500699020141,0.2418913699322757,240.5817273260027,0.0878439458943205,84.77372466091992,156.08912,109.7799356156843,163044.60275346274,114671.83614565808,396.50597,260.56415019146846,413508.8996594731,271509.3803575204,386.73277,188.2508603788022,399420.48801888566,193152.0372716308,3159.23673,1448.4313238195548,3260407.817494307,1473367.2611815606,1145.78492,505.3800557647726,1181303.2047130591,512361.2778790945,1933.55766,793.7696026598616,1986063.44663338,801350.800116433,0.384,100000,0,709496,7411.118306975579,0,0.0,0,0.0,34187,356.41464892305765,0,0.0,35352,364.698017423277,1586455,0,56943,0,0,0,0,0,82,0.8565399962395805,0,0.0,0,0.0,0,0.0,0.0611,0.1591145833333333,0.3238952536824877,0.01979,0.3369820172009382,0.6630179827990618,24.40391058505647,4.405277228238199,0.3184567257559958,0.2344108446298227,0.2221063607924921,0.2250260688216892,11.51573247003964,6.044482025013118,20.772993794726016,12243.56243890516,54.58879677845922,13.392147361805916,17.51827765945867,11.945058366018738,11.7333133911759,0.5655891553701773,0.7731316725978647,0.7079240340537001,0.5924882629107981,0.1214087117701575,0.7520976353928299,0.9191176470588236,0.8598130841121495,0.7660377358490567,0.1904761904761904,0.4954075774971297,0.6899441340782123,0.6487716105550501,0.535,0.1047180667433832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0045102113211371,0.0066854684900377,0.008906084978471,0.011346190994215,0.0137730951290273,0.0158794871272193,0.0181933206126343,0.0200917721842393,0.022517911975435,0.024657702713782,0.0269462921901946,0.0291659384605894,0.0313690758171819,0.0334843309840988,0.0356925048840743,0.037836270631847,0.0398717629482071,0.0419499719293868,0.0435643151797991,0.058402238369665,0.0722619259383272,0.0860352658575729,0.0991984178746502,0.1111779353422807,0.1269458289681153,0.138865305429384,0.1500149056684127,0.1609249444349461,0.1712326562147893,0.1841898170606815,0.196353360257257,0.2078888937263268,0.2181223113718708,0.227594638353177,0.237402413058907,0.2468125998681461,0.2553915109744699,0.2631082952971365,0.2704369354912658,0.2777764912930715,0.2853816633125848,0.2926269461927973,0.2985642953791625,0.3035805316179148,0.3090826264143509,0.3137404389341598,0.3182909021649419,0.3222573771550333,0.3265158490069709,0.3254366431465135,0.3237281862173907,0.323004378578646,0.3221751900483759,0.3212533979435055,0.3191414871755841,0.3166616830078217,0.3172355282908046,0.3183663761615956,0.3185360052539093,0.3187842013177977,0.3198092097515015,0.3208342022940563,0.3218526259616667,0.3231513178368803,0.3240229259057548,0.3254845290717443,0.3284580286267892,0.3297604915857831,0.3294688276351591,0.3315677486531758,0.334321249007674,0.3357810832862612,0.3379320800485142,0.336663243394641,0.3427152317880794,0.3420215184118806,0.3429776974080771,0.3408096280087527,0.3433803891644411,0.0,2.576634792940028,57.15358630895584,184.0553686654916,253.72888813143464,fqhc5_100Compliance_baseline_low_initial_treat_cost,49 -100000,95741,44682,424.2800889900879,5952,60.99790058595586,4686,48.47453024305157,1822,18.738053707398084,77.32373385663094,79.69334758328768,63.321321634088775,65.07509195276413,77.09745780050356,79.46637036479291,63.23854520257705,64.99384817291242,0.2262760561273751,226.97721849476693,0.0827764315117249,81.24377985170383,154.98274,109.00208833287624,161877.0850523809,113851.0025306569,390.20655,256.3965822376122,407116.16757710907,267353.7170466281,372.95724,180.93944192812623,386462.2262144745,186669.82320385528,3069.16562,1400.0279782313614,3177529.6790298824,1434141.118466866,1105.51264,488.4415635949858,1143429.17872176,498907.9428823444,1791.66454,744.4907728849123,1844725.707899437,755287.50852465,0.37782,100000,0,704467,7358.049320562768,0,0.0,0,0.0,33791,352.4613279577193,0,0.0,34157,353.6938197846273,1596470,0,57286,0,0,0,0,0,47,0.4909077615650557,0,0.0,1,0.0104448459907458,0,0.0,0.05952,0.157535334286168,0.3061155913978494,0.01822,0.3442465093885412,0.6557534906114588,24.51507476749379,4.3175722736735,0.3171148100725565,0.2373026034997866,0.2217242851045668,0.22385830132309,11.021858082282469,5.69601558282857,19.398855946313542,12059.688100479205,53.35116073360342,13.4319132584916,16.89833152343292,11.553589287505297,11.467326664173616,0.558898847631242,0.8066546762589928,0.7052489905787349,0.5399422521655438,0.107721639656816,0.7344854673998429,0.928921568627451,0.8875305623471883,0.6708860759493671,0.1552511415525114,0.493407559331966,0.7357954545454546,0.6360259981429898,0.5012468827930174,0.0951807228915662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681864235055,0.0041680610909975,0.0063641900121802,0.0085259028921,0.0107744587335178,0.0130387393168922,0.015257210459756,0.0174951232216355,0.0196026300450952,0.0218956423780019,0.0238537190675923,0.0260449830543288,0.0279612369606814,0.0298321362694887,0.0316154536915661,0.0335876442128768,0.0355652218942571,0.0376191810098872,0.0394996776809665,0.0416675349573842,0.0565689048518955,0.0702885430512093,0.0834985471672383,0.0961261346544234,0.1079314198949788,0.1233519765708425,0.1356996615994992,0.1471890028514278,0.1574203607394197,0.1665183501484952,0.1798098765166277,0.1911715395182313,0.2027962904576044,0.2127903798852145,0.2225815322004069,0.2322859926486869,0.2421070234113712,0.251171045684823,0.2599045535441014,0.2680652947299786,0.2750713353280269,0.2829611287609792,0.2893570761795602,0.2944423159810354,0.3002451872891025,0.3054693274205469,0.3101596916299559,0.3143584521384929,0.3193272955779272,0.3234091388771634,0.3222796671782858,0.3208911041044211,0.3199678665050596,0.3183587250604048,0.3179140885292718,0.3165749835276811,0.3151378105283132,0.3156177767577581,0.3170548843866614,0.3171288046190035,0.3172187909414187,0.318358795976046,0.319749018949489,0.3205510135513495,0.3214449237294262,0.3223445138689184,0.323618665903235,0.3264286391954714,0.3287439101885194,0.3319732789311572,0.3351693748278711,0.3355323142933762,0.3380129589632829,0.3382793880218344,0.3411320754716981,0.3431712271478074,0.3402989627821842,0.3470707070707071,0.3478499041358532,0.3408829174664107,0.0,1.8536411762216327,56.29820665856837,178.5403264998667,251.08416457043447,fqhc5_100Compliance_baseline_low_initial_treat_cost,50 -100000,95774,44995,426.0550880197131,5989,61.20659051517113,4688,48.29076784931192,1891,19.32674838682732,77.38153749659537,79.72353220625817,63.350937847410606,65.08306348776973,77.14460597189981,79.48845770374447,63.263098674705226,64.99847618101985,0.2369315246955636,235.07450251369733,0.0878391727053795,84.58730674988146,154.94512,109.0458800481535,161781.79881805083,113857.27509360944,394.26377,258.87111046276874,410997.45233570697,269631.52090780606,374.84178,182.35909583466795,387129.5549940485,187076.32693615105,3096.68273,1413.3741898477615,3193270.2925637434,1435781.817516039,1112.99606,490.54608701242586,1142572.3265186793,492678.1816665893,1856.8899,778.6048630038124,1899868.064401612,779744.7035016879,0.3799,100000,0,704296,7353.718128093219,0,0.0,0,0.0,34084,355.16946144047444,0,0.0,34306,353.94783552947564,1596241,0,57258,0,0,0,0,0,69,0.7204460500762211,0,0.0,0,0.0,0,0.0,0.05989,0.1576467491445117,0.315745533478043,0.01891,0.3398244213886672,0.6601755786113328,24.42694383330604,4.434313713045808,0.3195392491467577,0.2290955631399317,0.2197098976109215,0.231655290102389,11.206314754478486,5.75565395977894,20.108322529990403,12141.3298932741,53.00642848134857,12.78314480759331,17.04238636312077,11.338589133297823,11.842308177336674,0.547994880546075,0.7690875232774674,0.6889185580774366,0.579611650485437,0.1049723756906077,0.721958925750395,0.8929503916449086,0.8300970873786407,0.7862595419847328,0.1148325358851674,0.483635300993571,0.7004341534008683,0.6353591160220995,0.5091145833333334,0.1026225769669327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914419980149,0.0049668538528594,0.0071121301895215,0.0094654844967145,0.0116212863737112,0.0135997638364363,0.0156460227504382,0.0178201451331407,0.0201516483067301,0.0225203102298074,0.0249318549791978,0.027026749604812,0.0292309274110631,0.0313928586137309,0.0333876557471738,0.0354083793976339,0.0374808559956951,0.0390795065823572,0.0411260582766322,0.0429884746327395,0.057843219100889,0.0714218480363959,0.0843074149010892,0.0977870247777567,0.1102013719849524,0.1251889035667107,0.1365457165868339,0.1477598928320823,0.158000896458987,0.1677296260169573,0.1806077306437897,0.1934440767417213,0.2051167795154927,0.2158609083358832,0.2261233019853709,0.2365490213444336,0.2456901358192644,0.2547269497965332,0.2630582204985144,0.2703441805116939,0.2771732216992587,0.2833196960841613,0.2890723893574986,0.2947736610725794,0.3006410567723763,0.3063294879529197,0.310268136042182,0.3137746020444489,0.3179324621555182,0.3220189291081173,0.3211128899891025,0.3204465464144302,0.3191402453624801,0.3183939433343447,0.3178054907323454,0.316334027182564,0.3150366670881274,0.315662808401958,0.3168930188229688,0.3163448705400836,0.3171511356201514,0.3182024512029051,0.3187040873987568,0.3198782779915868,0.3208770623694132,0.3227310617901427,0.3239308462238398,0.3283563401884371,0.3316094765532182,0.3350735643094447,0.3378286337011306,0.3399046104928457,0.3386934039601463,0.3434497483605307,0.3452212472874799,0.3462679482615403,0.3531473860691967,0.346688141735454,0.3432918395573997,0.3380497131931166,0.0,2.494294587504379,55.10914855201511,169.83199440799672,260.6707854639562,fqhc5_100Compliance_baseline_low_initial_treat_cost,51 -100000,95867,44789,424.1292624156383,5976,61.14721436990831,4650,48.00400554935484,1812,18.640408065340523,77.37299817448195,79.67293246170644,63.35320242165369,65.05630869009501,77.14837597703422,79.44779774540164,63.26977379799229,64.97471142614431,0.2246221974477293,225.13471630479387,0.0834286236613977,81.5972639506981,154.56342,108.6908762517896,161226.92897451678,113376.73678303232,388.25439,255.13394804672916,404490.3042757153,265630.79896807985,370.33903,179.9637888074689,382686.1067937873,185079.26715201532,3056.33936,1398.445710053927,3153913.505168619,1424545.0572709353,1120.5359,494.68426669775727,1154400.304588649,501573.60413892695,1791.11746,748.708126914552,1842724.2951171936,757592.022622791,0.37924,100000,0,702561,7328.496771568944,0,0.0,0,0.0,33590,349.8701325795112,0,0.0,33885,349.8388392251765,1601220,0,57514,0,0,0,0,0,57,0.5945737323583715,0,0.0,2,0.0208622362231007,0,0.0,0.05976,0.1575783145237844,0.3032128514056225,0.01812,0.3274009940676607,0.6725990059323392,24.541306497173853,4.316288630150378,0.3221505376344086,0.2318279569892473,0.2165591397849462,0.2294623655913978,10.887438180583162,5.474416216679216,19.19750166113879,12096.639154138877,52.43699003501227,12.780953002407813,16.94632465769083,11.03817582803207,11.67153654688156,0.566236559139785,0.7736549165120594,0.6902536715620827,0.6276067527308838,0.1246485473289597,0.7422764227642277,0.921760391198044,0.8623376623376623,0.7813953488372093,0.1628959276018099,0.5029239766081871,0.6831091180866966,0.6307277628032345,0.5858585858585859,0.1146572104018912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293498075754,0.0045506603018233,0.0068165910958278,0.0090165099608066,0.0111827257385682,0.0134059446254071,0.0155942637570964,0.0179305840451479,0.0200676414390665,0.0222849775922401,0.024466210401213,0.0266964890320727,0.0287346871659952,0.0310650430772714,0.0330608331701081,0.0347804535503325,0.0368098159509202,0.0388580902543909,0.0405503634475597,0.0423030504806691,0.0572864531197864,0.0708568443051201,0.0838658314303073,0.0959666495153889,0.1076404612711284,0.1227908942058839,0.1345823707691329,0.1455015204031726,0.1559654572431976,0.1661272692200527,0.1793663093546859,0.1912874283861204,0.2028476713222107,0.2131774893668201,0.2231868748555772,0.2333643452064504,0.2424414842582055,0.251825433434965,0.2604755098799882,0.2678779968400082,0.2750398926944335,0.2813731797181121,0.2886504011169747,0.2947038110522912,0.3005352396441445,0.305531610964707,0.3111328027231316,0.3153490028490028,0.319992233512394,0.3246938344594595,0.3232517741479376,0.3222636627626925,0.3212659476985973,0.3200387557663663,0.3187268755850755,0.3178179480507553,0.3161175986581854,0.3161165494285667,0.3168693397915849,0.3169009060426624,0.3180143965597831,0.3192236380133338,0.3200376293508937,0.3216267409470752,0.3231181765945221,0.324262567511425,0.3247311216070107,0.3278014807378592,0.3315581093864966,0.3347024209154456,0.3352914595571622,0.3384981491274458,0.3432788944723618,0.3440311023021802,0.3505416862929816,0.3521524347212421,0.3576229758631225,0.3650275453988982,0.3716347488204274,0.3706240487062405,0.0,1.8941086772427755,53.946253452380176,172.9363766635964,256.2151670824749,fqhc5_100Compliance_baseline_low_initial_treat_cost,52 -100000,95789,45050,427.2620029439706,5974,61.02997212623579,4715,48.61727338212112,1841,18.78086210316425,77.39816222968327,79.72623346233125,63.35848721039546,65.07900465546219,77.16654278659074,79.49856749245313,63.27263860365126,64.99749842081798,0.2316194430925264,227.66596987811735,0.0858486067442001,81.50623464420903,155.94062,109.76000266986397,162795.9577822088,114585.18480187074,393.84917,258.5050053490491,410560.8681581393,269266.8123695273,380.04818,185.2230914222106,392870.8933176043,190402.77965897333,3060.05669,1404.110065867226,3155328.325799413,1426584.4642688683,1119.14702,500.70573982306735,1151904.1434820285,506374.8937675458,1797.5967,757.179040580808,1835796.156134838,755952.7723839555,0.38018,100000,0,708821,7399.816262827673,0,0.0,0,0.0,33997,354.28911461650085,0,0.0,34714,358.5902347868753,1590495,0,57044,0,0,0,0,0,67,0.6890143962250362,0,0.0,1,0.0104396120640157,0,0.0,0.05974,0.1571360934294281,0.3081687311683964,0.01841,0.3269907259354013,0.6730092740645987,24.398365262537965,4.3004506544904135,0.3143160127253446,0.2430540827147402,0.2267232237539766,0.2159066808059385,11.186104492262787,5.903410801147201,19.62382557055543,12106.82483164448,53.125751003858,13.669340402494674,16.58395047993951,11.744900824998975,11.12755929642483,0.5643690349946978,0.7783595113438045,0.7044534412955465,0.5622076707202993,0.1218074656188605,0.7440758293838863,0.9049881235154394,0.8776595744680851,0.7423076923076923,0.1818181818181818,0.4984053348796752,0.7048275862068966,0.6455696202531646,0.5043263288009888,0.1063040791100123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293026270482,0.0046213718177395,0.0069188004707219,0.0091802745958241,0.011111675900981,0.0134447452521016,0.0156315279971467,0.0175488715667469,0.0195649730790057,0.0214037241661551,0.0236863403989386,0.0259925501021025,0.0279122347258619,0.0300123507616303,0.0322278008598204,0.0343506325845597,0.0365285938922453,0.0382832671429608,0.0402702000519615,0.0421751989003207,0.0574940523394131,0.0712649688856351,0.0845232853158877,0.0971088060030898,0.1096996594946183,0.125306553911205,0.1371860682165281,0.147987741290144,0.1578643825228823,0.1689221068885648,0.1812689147128194,0.1929116826371915,0.2042785280472832,0.2145627355656306,0.2239831188385409,0.2336129060812605,0.2433234090478261,0.2521674594339304,0.2606846331836123,0.2685789533951677,0.2761251835323768,0.2823446905499386,0.2894864541785515,0.2951424668695631,0.2997900001213872,0.304872943957451,0.3099077476936923,0.3142980583511233,0.3183141603799221,0.3227286511002413,0.3223961347455688,0.3206659975526927,0.3197600743431613,0.3187740790441972,0.3178523251159963,0.3172240981527601,0.3156414873787634,0.3155369220942991,0.3168580349069319,0.3170140744699804,0.3179422976306151,0.3192535545023696,0.3204701846855326,0.3213569295234699,0.3222357752744493,0.3244394793588112,0.3236426428126592,0.3274056942838391,0.3300128870467765,0.3329263008626462,0.3360566448801743,0.3400937681083074,0.3434349719975109,0.3445981704090118,0.3470170188890967,0.3495318241080953,0.3539487645899651,0.3614579138139348,0.3652365236523652,0.3665278303672851,0.0,2.348907053088647,55.127354299877965,171.871656852327,260.11653987008714,fqhc5_100Compliance_baseline_low_initial_treat_cost,53 -100000,95875,45067,426.1903520208605,6001,61.34028683181226,4752,48.928292046936114,1901,19.410691003911342,77.3584022892406,79.64085986554393,63.35300198276878,65.04168631991068,77.11964177163789,79.40586597378913,63.263837127614615,64.95711794330157,0.2387605176027136,234.99389175479732,0.0891648551541663,84.56837660911276,155.18976,109.21353240735992,161866.76401564537,113912.4197208448,391.88641,257.6771879633893,408152.2816166884,268168.7384233526,378.12724,183.83641234275788,390878.9048239896,188945.08379579007,3152.8339,1431.387682865547,3249118.289439374,1453607.2415807522,1157.52462,512.9922392734833,1189128.0,516864.76065030775,1869.57624,786.3559322480131,1910556.89178618,784191.7406337669,0.37968,100000,0,705408,7357.580182529335,0,0.0,0,0.0,33717,351.0299869621904,0,0.0,34607,357.3924380704042,1594002,0,57200,0,0,0,0,0,70,0.7301173402868318,0,0.0,0,0.0,0,0.0,0.06001,0.1580541508638853,0.3167805365772371,0.01901,0.3308870453095086,0.6691129546904914,24.717256527958263,4.34517817990672,0.3112373737373737,0.2331649831649831,0.2234848484848484,0.2321127946127946,10.891574841110549,5.571408892303948,20.288086845793103,12133.908050223085,53.73320391012952,13.236342484055823,16.73793016494384,11.815945124384449,11.942986136745414,0.5484006734006734,0.7752707581227437,0.6788370520622042,0.5800376647834274,0.1151405258386219,0.7119871279163315,0.9093198992443324,0.837696335078534,0.7125,0.1473214285714285,0.4904531205471644,0.70042194092827,0.6235186873290793,0.5413625304136253,0.1069397042093287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00230841660845,0.0044786252039193,0.0067146088385349,0.0089857750611743,0.0111811343769058,0.0131590999297774,0.0152817963242185,0.0175735631597735,0.0197563889200861,0.0217851337674684,0.024209976762517,0.0265939451102613,0.0288598806577177,0.0308806435353296,0.0328324986087924,0.0348875627232742,0.0369818659549597,0.0388976410596575,0.040835825855766,0.0428965301982,0.05726647206005,0.071172592491981,0.0848187168799614,0.0978493720334355,0.1103034899767194,0.1254410615056308,0.1369662671287317,0.149451811520997,0.1598757458982269,0.1692360470850575,0.1816174886926556,0.1933013111774633,0.2041206849687415,0.2143419412677935,0.2240892046141834,0.2351189817376867,0.2452653416315331,0.2538650955170514,0.2618564185165439,0.2692845196911728,0.2771639148896782,0.2842755377759062,0.2902542122026593,0.296024941543258,0.3010989278160025,0.3060318243493277,0.3110373340015034,0.3155078169794733,0.3200352999195369,0.3227099009508192,0.3218404759014204,0.3213060076905054,0.3196062392463261,0.3182107609041706,0.3179382609472211,0.3152645872010065,0.3129193433261956,0.3131220081920021,0.3148344688281009,0.3155234012147195,0.3164238981684569,0.3169930761622156,0.3189779950074469,0.320678694542687,0.3220192099371705,0.323023249759171,0.3249409017117143,0.3267463379442301,0.3309644670050761,0.3336239004675489,0.3360036413290851,0.3395927003438244,0.341167598818576,0.3462068965517241,0.3483210017074559,0.3504201680672268,0.3594040968342644,0.35357432981316,0.3559275521405049,0.3589645984012181,0.0,2.499487838510118,54.02876183414448,177.90273583865084,264.483648273761,fqhc5_100Compliance_baseline_low_initial_treat_cost,54 -100000,95724,45078,427.2282813087627,5937,60.7057791149555,4663,48.04437758555848,1814,18.49066064936693,77.38965647392791,79.75554651940969,63.34469261111818,65.09360475680818,77.16187848640094,79.53034285883015,63.25921964578615,65.01144754512521,0.2277779875269772,225.20366057953825,0.0854729653320305,82.15721168296852,156.51526,110.10381551411042,163506.81124900756,115022.16321310269,394.90525,259.5863039673179,411907.3691028373,270543.71314123727,381.58145,185.2583707239268,393699.0096527517,189804.4626331053,3049.5606,1402.2736011404656,3148175.2747482345,1427303.8121479093,1074.08451,481.0869728598973,1109414.7235802934,489927.9311979201,1771.93396,745.676447450202,1810385.378797376,747434.6692186729,0.38107,100000,0,711433,7432.127784045798,0,0.0,0,0.0,34096,355.4907860097781,0,0.0,34960,360.3902887468137,1587050,0,56990,0,0,0,0,0,69,0.7103756633655092,0,0.0,1,0.0104467009318457,0,0.0,0.05937,0.1557981473220143,0.3055415192858346,0.01814,0.3332264271969211,0.6667735728030789,24.417038401523545,4.423468469777146,0.3111730645507184,0.2380441775680892,0.2404031739223675,0.2103795839588247,11.502832923384217,6.0142845035902,19.267524735144946,12140.88188517272,53.11060503807035,13.4032495645993,16.596040503850492,12.4667901482586,10.64452482136196,0.5661591250268068,0.8063063063063063,0.6919365954514128,0.5744870651204282,0.0988786952089704,0.7178707224334601,0.9132530120481928,0.8448275862068966,0.7003610108303249,0.1290322580645161,0.5065710872162486,0.7424460431654676,0.6325358851674641,0.533175355450237,0.0903141361256544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195040920508,0.0047443812536115,0.0068602279300581,0.0091533413251518,0.0113318481898542,0.013512687874221,0.0157930689939947,0.0179561253968416,0.0202285550740044,0.0223762193811224,0.0244982471965394,0.026568932417588,0.0285896394683005,0.0306859019904647,0.0325322331098504,0.0348188263502759,0.0368322408954883,0.0388218572658705,0.0407104847426623,0.0427815287155122,0.0572562121528502,0.0711414875133449,0.0847751046573847,0.0979210066704543,0.1095274768169302,0.1251586562870198,0.137600662061941,0.1485312899106002,0.1592015891323849,0.1688366007464287,0.181644915363742,0.1940411536880368,0.2051125922865313,0.2158086948915325,0.2254153372208163,0.2345587421105082,0.24367995539448,0.2529134778553207,0.2606846814156281,0.2685966016362492,0.2759641514888696,0.2827769205592182,0.2898917308874285,0.2958729322768295,0.3019330412940334,0.306981039152918,0.3110377511848045,0.3148786287400023,0.3200434658870404,0.3236786943166387,0.322747693218196,0.3215508352237575,0.3200968114147412,0.3188163118007939,0.3178294573643411,0.3153030673347183,0.3131716400246169,0.3143011262402537,0.3158833118250356,0.3174129883037822,0.3174213239536225,0.3194152437466842,0.3205120199812675,0.3218482727979562,0.3227393204231237,0.3253320904218131,0.3271390185263753,0.3311328723836936,0.3328899002275512,0.3352782408509963,0.3365257445158936,0.3424759871931697,0.3428301292152537,0.3433476394849785,0.3479789103690685,0.3484210526315789,0.3514492753623188,0.3511146496815286,0.3500674763832658,0.3511161558834658,0.0,2.608250324264256,57.31585310762885,172.85585030929096,247.503035629535,fqhc5_100Compliance_baseline_low_initial_treat_cost,55 -100000,95757,45033,426.7468696805455,6220,63.640256064830766,4867,50.199985379658926,1978,20.259615485029816,77.34687979821054,79.7077854271308,63.33382307926016,65.08192259011496,77.10133061605309,79.46250280984994,63.24227588712902,64.99290213126882,0.2455491821574469,245.2826172808642,0.0915471921311379,89.02045884613585,154.93918,108.9558854738498,161804.5469260733,113783.72909954345,392.61343,257.35783766416887,409359.2739956348,268112.855005981,376.35391,183.0180145029503,388606.68149586977,187738.01001539495,3196.48877,1471.1731989000314,3299905.813674196,1498710.8175372018,1171.50781,517.766280760136,1207076.1197614796,524894.2761337708,1938.86012,816.5230906251826,1987882.494230187,822067.7673119613,0.38232,100000,0,704269,7354.75213300333,0,0.0,0,0.0,33943,353.79136773290725,0,0.0,34495,355.9008740875341,1597744,0,57467,0,0,0,0,0,60,0.6265860459287571,0,0.0,0,0.0,0,0.0,0.0622,0.1626909395270977,0.3180064308681672,0.01978,0.3364041148472286,0.6635958851527713,24.248460305359444,4.388484024496563,0.3260735566057119,0.2319704129854119,0.213889459626053,0.2280665707828231,11.17685339833893,5.811799524105793,21.025421544824862,12224.90653358776,55.403607431907176,13.58456871923173,18.07980867699141,11.5173205642078,12.221909471476248,0.5570166426957057,0.7785651018600531,0.6981726528040327,0.5696445725264169,0.118018018018018,0.716338880484115,0.8796992481203008,0.8615384615384616,0.7192982456140351,0.1666666666666666,0.4976022566995768,0.7232876712328767,0.6325088339222615,0.5276752767527675,0.1045977011494252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712050585707,0.0046343244229911,0.0067106598984771,0.009004339563198,0.0113025962399283,0.0132787519602452,0.0153838311754511,0.0175071457737852,0.0197297131524605,0.0220031125854937,0.0241139259973138,0.0259566909326132,0.0282182595997614,0.0306258047901107,0.0324990969606274,0.0343412415361554,0.0362231795211664,0.0383103208606077,0.0405197505197505,0.0426737199446012,0.0575520045089709,0.0717789935041161,0.084908726788504,0.0975225201551446,0.1105325842933482,0.125538975312817,0.1372526156227143,0.149189775433821,0.160310229685183,0.1705712847211063,0.1831101070410413,0.1951646546413479,0.206464580617123,0.2171909130624727,0.2274789869801681,0.2376668215921917,0.2472789722544384,0.2562932149080892,0.265219957325101,0.2727928794803945,0.2799907418122902,0.2864632704888296,0.2925939956435268,0.2978465744226757,0.3030718795531811,0.3073429499803072,0.3121777866760098,0.3166516170878429,0.3219786193150933,0.3263124596343698,0.3249761254657215,0.3231507716006932,0.3220785069879382,0.3210471627316285,0.3203056606573188,0.3194718563057481,0.3179539091786217,0.3184742647058823,0.3197820405513896,0.3208823371941534,0.3210699835156601,0.3218884120171674,0.3231804460841858,0.3240282289682984,0.3254232383157285,0.3270651092137656,0.3265592351947792,0.329091887443421,0.3315345818784608,0.3320694472161245,0.3366645273677455,0.3378486480721028,0.3404686510449651,0.3441934991606897,0.3473210940427126,0.3498283414229904,0.3540963485731819,0.3528565556925606,0.3589310829817159,0.366877971473851,0.0,2.360062927732507,58.05314146551014,184.46593644490832,261.823689927586,fqhc5_100Compliance_baseline_low_initial_treat_cost,56 -100000,95754,44931,425.1832821605364,6031,61.78331975687699,4707,48.57238339912693,1889,19.330785136913335,77.36211040614715,79.7236253356723,63.32787542470121,65.07533597594842,77.12659349928542,79.48953843466977,63.240031526005545,64.9903955775558,0.2355169068617328,234.08690100252727,0.0878438986956666,84.94039839261802,155.54924,109.44511538679608,162446.728074023,114298.2177107965,391.62026,256.8546220288403,408372.4857447209,267633.02103286714,377.07831,183.1402291654429,390007.017983583,188331.95822629143,3082.19491,1410.058205326857,3183612.2772938986,1437459.334688752,1122.21667,494.188595647029,1158885.414708524,503278.903021474,1846.2587,776.6599825819081,1891591.9334962508,780957.8542740641,0.38049,100000,0,707042,7383.942185182864,0,0.0,0,0.0,33742,351.7346533826263,0,0.0,34468,356.1835536896631,1592995,0,57163,0,0,0,0,0,79,0.8250308081124548,0,0.0,0,0.0,0,0.0,0.06031,0.1585061368235696,0.3132150555463439,0.01889,0.3248931793005222,0.6751068206994778,24.7429449290914,4.358814786714136,0.3203739111960909,0.2392181856809007,0.2198852772466539,0.2205226258763543,11.22389019094254,5.790024002321628,20.14634215026548,12148.085133192182,53.2401583402339,13.406739109070887,16.964383300821524,11.50453369344251,11.364502236898982,0.5646908859145953,0.7655417406749556,0.7095490716180372,0.5768115942028985,0.1242774566473988,0.7253012048192771,0.924812030075188,0.8619791666666666,0.7333333333333333,0.1216216216216216,0.5069324090121318,0.6781292984869326,0.6574733096085409,0.529559748427673,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022086461404415,0.0045835276938365,0.0072682976347578,0.0095003911925785,0.0116677686791109,0.0139120870167433,0.0161727815960679,0.0183063791554357,0.0203883395875297,0.0226714180388301,0.0249917958815325,0.0270148119234956,0.0290734758544062,0.0310174975783681,0.0328823110505619,0.0350478159731196,0.0371846912148448,0.0391459074733096,0.0411005893787096,0.0431010238836751,0.0569525777930876,0.0701462557278262,0.0829523050463526,0.0955270658266987,0.1073504129267701,0.1231929271671654,0.1355121350984385,0.1474282551307161,0.1589889320969189,0.1698331689325385,0.1825925886039824,0.1938513813290625,0.2062112476884586,0.2161975913630347,0.2250775901917193,0.235590027700831,0.2461079716780952,0.2547347099532999,0.2630486089048245,0.270721902165821,0.2779166956078813,0.2840679076624273,0.2897692972384323,0.2950941585702291,0.3008795801341238,0.3056559105313128,0.3102269311692215,0.3155328682723153,0.3196741481356766,0.3231609931231108,0.3218915932185116,0.3208757917928945,0.3199712663915376,0.3195988033471594,0.3190588654694532,0.3170765320184975,0.3155037041727347,0.3157704799711295,0.3163764729957878,0.3168720615472289,0.3175335962469394,0.3185575938902448,0.3205227230027347,0.321231166978693,0.322008721069529,0.3240512247707613,0.325419113266956,0.3279622039360471,0.3320544122776421,0.334069313567007,0.3350655219159512,0.3386410215986126,0.3402699662542182,0.3424945558308928,0.3464209649041578,0.3433239304184297,0.3411764705882353,0.3472497032053819,0.3526725758796669,0.3531428571428571,0.0,2.142622610863298,54.56723361106474,175.06200139416373,260.7426786311025,fqhc5_100Compliance_baseline_low_initial_treat_cost,57 -100000,95772,45253,428.8309735622102,6055,62.31466399365159,4733,48.94958860627323,1845,18.95125924069665,77.32840490063373,79.68757882738844,63.31625382636724,65.06415226416213,77.10322581519382,79.46353920181842,63.23345106839604,64.98390169532763,0.2251790854399047,224.0396255700148,0.0828027579712014,80.25056883450077,155.60644,109.50634419003802,162475.92198137243,114340.66761687968,394.9294,259.46161695091865,411926.11619262415,270477.90267606254,379.94176,183.86029766333647,393891.8890698743,189781.08436324596,3070.87395,1393.8879805353995,3177655.8075429145,1426636.752428057,1114.42116,486.6130779807113,1152645.073716744,497150.2165820769,1791.91866,740.9333690414533,1842092.114605521,749150.1541350271,0.38113,100000,0,707302,7385.269180971473,0,0.0,0,0.0,34084,355.4065906528004,0,0.0,34636,358.8209497556697,1589289,0,57050,0,0,0,0,0,68,0.7100196299544752,0,0.0,1,0.0104414651463893,0,0.0,0.06055,0.1588696770130926,0.3047068538398018,0.01845,0.3426860025220681,0.657313997477932,24.66987018890206,4.3029597674514735,0.3291781111345869,0.2421297274455947,0.2207901964927107,0.2079019649271075,11.12847548221961,5.747761447338089,19.41249535624716,12181.415167142632,53.31328967587435,13.521371858445873,17.58314872787574,11.618728278162529,10.590040811390216,0.5624339742235369,0.7652705061082025,0.696405648267009,0.5598086124401914,0.1168699186991869,0.7421937550040032,0.913793103448276,0.8507462686567164,0.744,0.1465968586387434,0.4979908151549942,0.6837837837837838,0.6427335640138409,0.5018867924528302,0.1097099621689785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786933919722,0.0046349824540051,0.0067924298420176,0.0088721315473891,0.0111594881080751,0.013394312255541,0.0155816609561102,0.0177441091191244,0.0197305199452043,0.0221303253014514,0.024622008097996,0.0269115850215107,0.0288261790657973,0.0308798384937066,0.0327437463881779,0.0347821592847175,0.0368300105583504,0.0389948456281177,0.0408916138418372,0.0429407598733544,0.0575114553216362,0.0715159755268524,0.0851385073500115,0.0979598700875542,0.1101347578257525,0.124890349718344,0.1363858079019362,0.1476657195458076,0.1585979302169107,0.1677532113829855,0.1808058071533963,0.1931582136056777,0.205402700262193,0.2160252835099461,0.2262470831682296,0.2363130904781419,0.2462642427488924,0.2547836657512043,0.2628489685630272,0.2712105239033781,0.2785094317787293,0.2847267708430804,0.2906147870979965,0.2960896536001823,0.3013638684268105,0.3076164410582637,0.3123558608242254,0.3161863036030414,0.3206627427593538,0.326178784518718,0.3254908302003746,0.3244299494970345,0.3225383672261446,0.3208220206804921,0.3200879721817695,0.3180773825935116,0.3165827554542288,0.3166455810590999,0.3176778117578719,0.3177548396314022,0.3183213536987122,0.3202919996054059,0.3212190794280346,0.3216016436275933,0.3240197962713819,0.3236175145216327,0.3229059829059829,0.3256266273488722,0.3301979159381775,0.3333861511646331,0.3363141171130276,0.3408071748878923,0.3427857589006871,0.3461480362537764,0.351808580241144,0.3553728714034057,0.3561205846528623,0.3599755948749237,0.3622547665100856,0.3594847775175644,0.0,1.818192761422007,55.14485376991298,169.9938552167477,267.90801200058445,fqhc5_100Compliance_baseline_low_initial_treat_cost,58 -100000,95739,45078,427.1404547780946,6012,61.76166452542851,4690,48.47554288221101,1850,18.9369013672589,77.31464774318667,79.68143231835532,63.30648041847581,65.05662439393679,77.08169895182215,79.44927042116457,63.22162801602666,64.97412641655924,0.2329487913645209,232.16189719074976,0.0848524024491439,82.4979773775425,155.49314,109.3337170848528,162413.58276146607,114199.7692527108,393.21559,258.4476447493772,410189.03477161867,269427.2157776068,378.76164,184.01907808278293,392947.1688653527,190029.2287118342,3103.90238,1414.8645953100845,3208556.3458987456,1444635.0104648022,1135.55765,502.59448783489233,1171521.208702827,510602.7170356026,1819.447,755.0728342472696,1864257.345491388,759748.0296803021,0.3803,100000,0,706787,7382.435580066639,0,0.0,0,0.0,33882,353.35652137582383,0,0.0,34598,358.7043942385026,1589760,0,57091,0,0,0,0,0,71,0.7415995571292785,0,0.0,0,0.0,0,0.0,0.06012,0.15808572179858,0.3077178975382568,0.0185,0.3389803673210892,0.6610196326789107,24.49107345795735,4.387012462685583,0.332409381663113,0.2219616204690831,0.2215351812366737,0.22409381663113,11.10048779643462,5.703732298195409,19.663204865790878,12159.504794469096,53.35158512708572,12.578355404982185,17.80202579078343,11.462904207803913,11.508299723516206,0.5556503198294243,0.777137367915466,0.6927517639512508,0.5803657362848893,0.1084681255946717,0.7363344051446945,0.9338842975206612,0.8627450980392157,0.7935222672064778,0.1283185840707964,0.4904236796285548,0.6932153392330384,0.63249348392702,0.5138888888888888,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0042988512739402,0.0065977790860553,0.0087795955695559,0.0109975075029248,0.012867272504992,0.0150477958804745,0.0171836392967266,0.0193506838672745,0.0216104991605585,0.0235407503101514,0.0257005267427175,0.0278552105084501,0.0301291100371977,0.0323606222323152,0.0343226953654023,0.0361606726796383,0.0384140457191478,0.0406346829704493,0.0429007490441613,0.0577788450495411,0.0718539684533341,0.0847329605656557,0.0976843477895091,0.1097262642878231,0.1255064154775379,0.1379936113086204,0.1501847100531241,0.161064500614546,0.1711802575107296,0.1845166855356083,0.1966481415277281,0.2079643607925149,0.2181439684452722,0.227692104189861,0.2379535792383088,0.2468718900604935,0.2554969217238346,0.2628586374336172,0.271207458779222,0.2777764896823557,0.2842681226493573,0.2905114680258401,0.2965616561656166,0.3015585489204435,0.3066250647460721,0.3114097654979103,0.3158376796845185,0.3192697821249288,0.3228719057285213,0.3220489498257558,0.3204932568977605,0.3188894983334036,0.3175501132870564,0.3171398434134094,0.3156871152491501,0.3141409342834521,0.3147804373182632,0.3157490003075976,0.3151611406545558,0.3160123676567038,0.3175318005846567,0.3175366348224178,0.3171455340412242,0.3193987562129325,0.3206245933636955,0.321623241345852,0.3251358396934577,0.3290815432596278,0.3333994919021911,0.3348525591358643,0.3389361702127659,0.3423685877137429,0.3478694052728387,0.3461065379884568,0.3459478757586576,0.3471303277427296,0.3498662276188516,0.348103018554417,0.3448409619860357,0.0,1.9176652992537424,55.076179113522144,179.9468805787776,254.2552238307753,fqhc5_100Compliance_baseline_low_initial_treat_cost,59 -100000,95820,45015,425.7774994781883,6125,62.77395115842205,4793,49.49906073888541,1866,19.18179920684617,77.3504688262772,79.6818706644371,63.33176974345843,65.05976050797216,77.11951146444673,79.4500758194011,63.24696041674992,64.97635682602143,0.2309573618304625,231.79484503599213,0.084809326708509,83.40368195072756,154.2068,108.55724678173344,160933.83427259445,113292.88956557446,392.84878,257.86315585108423,409494.7505739929,268620.58636097296,379.93528,184.3930088835061,392870.7159256941,189704.4595883237,3148.98531,1432.9998030175095,3256883.6881653103,1466040.9549337395,1135.70706,494.9289179828997,1173150.0626174076,504418.960533186,1831.8604,764.7960339933923,1885510.791066583,777438.6977245597,0.38072,100000,0,700940,7315.17428511793,0,0.0,0,0.0,33883,353.08912544354,0,0.0,34704,358.4742225005218,1598235,0,57437,0,0,0,0,0,76,0.7931538300981007,0,0.0,1,0.0104362346065539,0,0.0,0.06125,0.1608793864257197,0.3046530612244898,0.01866,0.3325023371766905,0.6674976628233095,24.5349116437484,4.3233668666229175,0.3242228249530565,0.233674108074275,0.2180262883371583,0.2240767786355101,11.111061794646703,5.771097534576919,19.804618506887596,12269.110359988788,54.39614495275243,13.410025389772008,17.498400504909505,11.763713683135393,11.724005374935532,0.5643646985186731,0.7857142857142857,0.6911196911196911,0.6057416267942584,0.1098696461824953,0.7317262830482115,0.9107981220657276,0.8611825192802056,0.763265306122449,0.1371681415929203,0.5029940119760479,0.7089337175792507,0.6343347639484979,0.5575,0.1025943396226415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172275462447,0.0044512943228253,0.006911600527758,0.0091340438718592,0.0112293264438431,0.0137397893707604,0.0160726123094181,0.0181664079732048,0.0203161424890597,0.0224392441086747,0.0246916112096633,0.0268008420187913,0.0288150060159809,0.0310092687950566,0.0329606864403283,0.0351711026615969,0.0372647661635923,0.039298864284603,0.0412765382576977,0.0432940539640239,0.0577889971418438,0.0722320961840041,0.0863651605331545,0.0990743950998623,0.1118848702577987,0.1278016717566125,0.1392081601492917,0.1506222742261461,0.161942887643448,0.1724743902961724,0.184860386291494,0.1977493351782587,0.2091095734164702,0.2190550096728711,0.2288162627740438,0.2394558124591471,0.2492411730571798,0.2580986351310296,0.2661708770933863,0.273318673263698,0.2811881646397204,0.2879282313999322,0.2940731011797001,0.2993470316899299,0.3043050340830386,0.3087234252454003,0.3125156570970489,0.3179542704286351,0.3217553591332072,0.3257693831726324,0.3243622242597486,0.3231261111034549,0.3220757244588592,0.3201145435612634,0.319324483030312,0.3182890584306155,0.3164950087149422,0.3166784417462169,0.3175978130873056,0.3183425611716378,0.3184387869711718,0.3187184144030322,0.3194534535791258,0.3202744379385867,0.3211201193254264,0.3215114006514658,0.3227988404479054,0.3271124772598958,0.330353713467649,0.3322515534095856,0.3341639106600824,0.3368543361149255,0.338456712672522,0.3426150121065375,0.3472469749554451,0.3487469114013413,0.3535046373726623,0.3531181070784038,0.3476964769647696,0.3448669201520912,0.0,2.067201638666777,56.54979521945593,179.73504027061563,262.1979909395405,fqhc5_100Compliance_baseline_low_initial_treat_cost,60 -100000,95703,44931,425.1695349153109,6089,62.30734668714669,4745,48.83859440142942,1870,19.0171676958925,77.30949638025908,79.66911766678882,63.31695901961641,65.05917760470977,77.07979620392004,79.44662437538396,63.2305487533633,64.97934132256405,0.2297001763390369,222.4932914048594,0.0864102662531109,79.83628214572036,154.9372,109.0334689191044,161893.77553472723,113928.9979615105,391.85201,257.0345877418608,408611.6527172607,267741.0193430308,376.67915,183.47611765520568,389550.89182157296,188576.85558322672,3122.12856,1421.0292419964064,3214728.629196577,1437408.041114901,1138.98334,496.194165166737,1174381.524090154,502803.36896224914,1831.12156,765.8031266227538,1864842.188855104,758684.08571534,0.37987,100000,0,704260,7358.807978851238,0,0.0,0,0.0,33700,351.3369486849942,0,0.0,34416,355.5060969875552,1594928,0,57256,0,0,0,0,0,88,0.9090624118366196,0,0.0,1,0.0104489932395013,0,0.0,0.06089,0.1602916787321978,0.3071111841024799,0.0187,0.341034103410341,0.658965896589659,24.544728902650988,4.379487364391753,0.325395152792413,0.2250790305584826,0.2290832455216017,0.2204425711275026,11.336936739160263,5.945399568892843,19.83974396220752,12114.66542565446,53.63539640461821,12.756541213289111,17.416894338142395,12.021942909110548,11.440017944076164,0.5597471022128556,0.7659176029962547,0.6949481865284974,0.594296228150874,0.1137667304015296,0.7307692307692307,0.8790931989924433,0.8721804511278195,0.7511111111111111,0.1343283582089552,0.5004257734885041,0.698956780923994,0.6331877729257642,0.5533642691415314,0.1088757396449704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483061747399,0.0044805774065363,0.0068785001217433,0.0092934915088973,0.0115996543485996,0.013639093305648,0.0157672119451663,0.0179550256719099,0.0200523281959036,0.0220036638658902,0.0246722496130546,0.026839711272884,0.0293576283560756,0.0314002945386762,0.0335289446272212,0.0356153909737146,0.0375813780183611,0.0396710157854342,0.0414622484616663,0.0434311550041149,0.0579819119827892,0.0712730546192978,0.0848298577602484,0.0973003670322967,0.1095561016252017,0.1248360482335519,0.1372540696563872,0.1488768231661875,0.1591312151449755,0.1690367415224245,0.1819376804723527,0.1935986833557105,0.2048516640184576,0.2151495583841346,0.2254409724516086,0.235146100297078,0.2444593386952636,0.252771268925739,0.2612355721166954,0.2685451606616762,0.2752312697548946,0.2819318833288484,0.28750059205229,0.2927417323401345,0.2980872059109469,0.3034051527447183,0.3087232365197151,0.3134579153724731,0.3180245441704356,0.3219561827743862,0.3209643492799741,0.3199895342752485,0.3191024230628191,0.3185359718989867,0.3179154644694964,0.3160356381592062,0.3139352197165664,0.3141189046953375,0.3150206360351412,0.3156527658354829,0.3162118478424297,0.3164152441445018,0.3190769424770391,0.3200439737952077,0.320788443886178,0.321914410297919,0.3232464929859719,0.3282243343614275,0.3318930691678083,0.333082438695876,0.3364511442063204,0.3382976468094127,0.3428481609556743,0.3471049227725785,0.3496470588235294,0.3566863905325443,0.3606004901960784,0.3571282051282051,0.3587617468214483,0.3643351268255188,0.0,2.811896909299765,52.68323037564648,180.2418524083632,264.2975261122366,fqhc5_100Compliance_baseline_low_initial_treat_cost,61 -100000,95745,45246,428.1372395425348,6043,62.00845997180009,4772,49.37072431980782,1876,19.280380176510523,77.40440741590693,79.76235852663288,63.3594678928421,65.09954567015453,77.17333184401706,79.530996357436,63.273946437284366,65.01625256850747,0.2310755718898747,231.3621691968848,0.0855214555577319,83.29310164705817,155.05644,109.0623093543538,161947.29750900832,113909.1434062915,393.83956,258.0971473518777,410852.27427019685,269082.39901700855,376.90328,182.93960374068425,391109.5305237872,189106.84556141103,3148.18319,1424.7641844464663,3258211.85440493,1458538.691436202,1132.00901,496.8633081133384,1171669.027103243,508296.8385955802,1843.96176,771.8452316881143,1896042.4460807357,779596.4803763813,0.38159,100000,0,704802,7361.240795864013,0,0.0,0,0.0,34034,354.9741500861664,0,0.0,34437,357.0943652410047,1598278,0,57271,0,0,0,0,0,65,0.678886625933469,0,0.0,0,0.0,0,0.0,0.06043,0.1583636887759113,0.3104418335263941,0.01876,0.3235852039203288,0.6764147960796711,24.60771175457462,4.473163740348656,0.3143336127409891,0.2351215423302598,0.2206621961441743,0.2298826487845767,10.990953656495044,5.524352864442008,19.942466482783445,12181.484691374326,53.67313026840059,13.365387234368626,16.76926257745113,11.632733023279837,11.905747433301004,0.5496647108130763,0.7780748663101604,0.6946666666666667,0.5584045584045584,0.1093892433910665,0.7185725871857259,0.8925,0.841688654353562,0.7530864197530864,0.1279620853080568,0.4908166148629556,0.7146814404432132,0.6449598572702944,0.5,0.1049661399548532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024805856207032,0.0045300228021281,0.0069490940816036,0.0092723302696389,0.011387552997875,0.0137418566775244,0.016,0.0182443394589961,0.0204757233938205,0.0223995906881555,0.0245769747158479,0.0266644771278724,0.0288061189871595,0.030714403427818,0.032904444008791,0.0350645054581541,0.0370232288398007,0.0392435527708043,0.0414977863690216,0.0436417419200283,0.0583641337259078,0.0719136868322188,0.0847109171771419,0.0976355933094334,0.1100582859913361,0.1254454136928363,0.1373453843379373,0.1491622133747791,0.1595124139994017,0.1696405593205799,0.1820658611703388,0.194681265417406,0.2065249306726116,0.2165713723475199,0.2264867005478186,0.2373391793440953,0.2466141591735647,0.2556719807523666,0.263118500289191,0.2710582040863046,0.277923518738949,0.2848319985056156,0.2913380248429604,0.2967189217607417,0.3021729124778954,0.3071818315882613,0.3112737445517103,0.3157674294635038,0.3196311650071675,0.3233092597708407,0.3220204785485191,0.3207288293727018,0.3193461408830468,0.3186172128195895,0.3179449215279834,0.3163857334799071,0.3143430259188476,0.3148690431396928,0.3156774973192858,0.316283702070143,0.3169943190312453,0.3176270784786129,0.3190381599581808,0.3205914494078815,0.3223245550918597,0.3223405086025144,0.3244140514159241,0.3276947655295555,0.3300899513492702,0.3343492716909436,0.3364011424944462,0.341666225305863,0.3472439466933616,0.3495013599274705,0.3510371128267138,0.3568080618701664,0.3620480097234883,0.3727727727727727,0.3757575757575757,0.3759310074480596,0.0,1.8091401311998871,54.15337625198476,179.9127388180565,263.53975172637365,fqhc5_100Compliance_baseline_low_initial_treat_cost,62 -100000,95762,44910,425.0433366053341,6080,62.53002234706877,4780,49.476827969340654,1919,19.736429899124914,77.33232137485312,79.69866688690666,63.31916690730778,65.07136552352254,77.09406718859123,79.45837200961613,63.23248823188414,64.98590576336456,0.2382541862618978,240.2948772905376,0.0866786754236415,85.45976015798828,156.12828,109.81936140378608,163036.67425492368,114678.6520282202,390.09967,256.155161382396,406904.8996470416,267036.65872010926,374.71183,182.2980152126724,388772.24786449736,188370.5550786868,3149.45099,1431.4256892263454,3260677.7636223137,1466995.3635098587,1144.1404,501.3395827939067,1186096.6249660617,515262.4937289082,1882.59028,778.3809044345534,1937766.629769637,789156.9055975671,0.37938,100000,0,709674,7410.7579206783485,0,0.0,0,0.0,33620,350.598358430275,0,0.0,34284,355.4437041832877,1592980,0,57118,0,0,0,0,0,80,0.8354044401745995,0,0.0,1,0.0104425555021824,0,0.0,0.0608,0.1602614792556276,0.315625,0.01919,0.3231879510511453,0.6768120489488547,24.70354255646159,4.383583081044446,0.3209205020920502,0.2255230125523012,0.2297071129707113,0.2238493723849372,11.042978918327822,5.561444430518471,20.430059382010008,12138.30041509268,54.220437851977394,12.9131799149087,17.404104029041473,12.293600895564923,11.609553012462309,0.5602510460251046,0.8042671614100185,0.6981747066492829,0.569216757741348,0.1074766355140186,0.7256778309409888,0.9196891191709844,0.8769633507853403,0.6726618705035972,0.1586538461538461,0.5014180374361883,0.7398843930635838,0.6388888888888888,0.5341463414634147,0.0951276102088167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0047571230056091,0.0071582324750223,0.0091979022684771,0.0114043297794416,0.013895538961502,0.0161336379211878,0.0184892137745153,0.0209702980420223,0.0230651105651105,0.0250238346643156,0.0272775804365234,0.0292445166531275,0.0313198413924506,0.0330561459257577,0.0350786530789424,0.0370999306253041,0.0389563232700487,0.04094484915876,0.0430435642945667,0.0577575498188878,0.0712185731175258,0.0845744011410832,0.0973609504783934,0.1092801113360324,0.1240785591149937,0.1359735203318445,0.1474000127711202,0.1582802955875443,0.1687161618868936,0.1803017413122839,0.1925453070056803,0.2040854063108433,0.2141505823172398,0.2239605681530624,0.2345497221053563,0.2437027286316682,0.2525393415147186,0.2611147035133694,0.2690053123282652,0.2752501590606744,0.2817145196187357,0.2877642521678437,0.2935911721361561,0.2990454446090695,0.3052040074430985,0.3097925373507845,0.3140553669298948,0.3184354648678742,0.3226529831550344,0.3219362481154426,0.321122380172568,0.3206489592428809,0.3191246569406327,0.3184930998113404,0.3174238596168864,0.3152789005658852,0.3155251366389285,0.3165168136761469,0.3180324941974647,0.3200540428965491,0.3215254539334297,0.3220666344760985,0.3232293791897406,0.3249885440030871,0.3274858380974756,0.3293617991619872,0.3335541256623769,0.338379935366025,0.3427512552801466,0.3438070047427946,0.347496125273903,0.3505776310778215,0.3532787512434004,0.3557034398725279,0.361441526321988,0.3657428441617447,0.3609550561797753,0.3674863387978142,0.3659378596087457,0.0,1.6061067329053114,55.64471307207423,181.3524734832884,263.6523211921107,fqhc5_100Compliance_baseline_low_initial_treat_cost,63 -100000,95737,45098,426.3346459571535,6053,62.149430209845725,4751,49.165944201301485,1911,19.699802584162864,77.41699606751023,79.77108203173856,63.36600846061516,65.10074664274285,77.17951661899136,79.53079767420299,63.27922480043545,65.01468760871701,0.2374794485188687,240.28435753557176,0.0867836601797122,86.05903402583692,156.02576,109.70070847498368,162972.85271107304,114585.03512224498,393.62437,258.4514796009962,410678.0868420778,269486.471480197,378.18551,183.2593958404906,392167.3543144239,189228.79485974816,3149.48907,1435.470810598742,3262129.19769786,1471819.411407022,1168.55655,516.4880941828451,1211359.1088085065,530305.1333621122,1879.51422,786.3984931957654,1938636.8906483387,800537.9201479857,0.38108,100000,0,709208,7407.856941412411,0,0.0,0,0.0,33903,353.6354805352163,0,0.0,34544,357.8867104672175,1592101,0,57182,0,0,0,0,0,86,0.8982942853860054,0,0.0,1,0.0104452823882093,0,0.0,0.06053,0.1588380392568489,0.3157112175780605,0.01911,0.3369479805123369,0.663052019487663,24.62224415395413,4.450507121454858,0.3247737318459271,0.2239528520311513,0.2191117659440118,0.2321616501789097,11.421290136104622,5.954140993320782,20.4582830905367,12197.711767760542,53.88593920742292,12.714607446579867,17.478723652363676,11.491547537410655,12.20106057106872,0.561355504104399,0.7894736842105263,0.6843810758263124,0.5975024015369836,0.1350861287398005,0.7234878240377062,0.8952879581151832,0.8581560283687943,0.7725321888412017,0.1531914893617021,0.5020126509488212,0.7302052785923754,0.61875,0.5470297029702971,0.130184331797235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023988339844936,0.0043461082576056,0.0066232554365465,0.0090273053138232,0.0114385065885797,0.0137726745251328,0.0160639295470298,0.0184119208001633,0.0206123408343041,0.0225480065884374,0.0246854121408369,0.0267965270223116,0.0292457776087336,0.0313272367770637,0.0334241148799207,0.0357331073749909,0.0377678848742105,0.0397017185409514,0.0419554982800012,0.0439710401583415,0.0586699800570098,0.0715018100399673,0.0850659840966787,0.097463509022841,0.1098128130767202,0.1252498334443704,0.1370752195494463,0.148716529734792,0.1595317439972656,0.1699848830851371,0.1829730428042373,0.1946304368989799,0.2059635320452915,0.2164730036694041,0.2257079461323843,0.2363286434828776,0.2452024873515055,0.2537784719803126,0.2618464607989842,0.2695568599183057,0.2761119844645829,0.28261326728509,0.2888754920387247,0.2962896469180132,0.3019639239661802,0.3070521028267507,0.3111588787382681,0.3160121997712543,0.320904495326257,0.3249940684891783,0.3238252777105355,0.3228758708826318,0.3213214904069481,0.3196397854902357,0.3200784593437946,0.3180036742192284,0.3164514956623421,0.317316825521601,0.3181237327699306,0.3192905050792577,0.3206056984950894,0.3223921128756125,0.3226345354689164,0.3242106668446699,0.3241864808562603,0.3251441333818106,0.3284073181109062,0.3327085285848172,0.336217121328403,0.3409162592651001,0.3426134825376771,0.3451294762934444,0.3483959555611035,0.3524279210925645,0.3526237439523632,0.3521718822979915,0.3559040868647263,0.355979340484704,0.3556992724333064,0.3553903345724907,0.0,1.776247822944597,56.321856715810455,179.45820520900193,257.70251588865415,fqhc5_100Compliance_baseline_low_initial_treat_cost,64 -100000,95695,45143,427.7966455927687,6020,61.706463242593664,4776,49.31292126025394,1874,19.217304979361515,77.3508434030137,79.74077638844727,63.31502979323547,65.0824795980355,77.11512861297575,79.50642583586412,63.22688685616428,64.99729169434869,0.2357147900379459,234.3505525831517,0.0881429370711899,85.1879036868155,154.98494,109.0945340393911,161956.96744866503,114002.11154124158,393.67063,258.19875123138485,410798.359370918,269232.33693650126,377.77844,183.5059825231704,390500.3291708031,188508.50175611625,3150.98575,1424.7132256484365,3254049.28157166,1450316.9773472706,1141.28838,503.0131174054124,1173954.0728355714,507170.08615194017,1844.56848,780.6690383657399,1892705.4496055176,786004.9174813309,0.38082,100000,0,704477,7361.680338575684,0,0.0,0,0.0,33918,353.8115889022415,0,0.0,34485,356.16280892418627,1592859,0,57112,0,0,0,0,0,75,0.7837400073149068,0,0.0,0,0.0,0,0.0,0.0602,0.1580799327766398,0.3112956810631229,0.01874,0.3384126984126984,0.6615873015873016,24.685961309266407,4.374377553447694,0.3086264656616415,0.2384840871021775,0.2229899497487437,0.2298994974874371,10.935060275333054,5.48940448669922,20.09369958342545,12195.880279968906,53.70241704464639,13.396860424427327,16.52230380529294,11.806582845173512,11.976669969752605,0.5458542713567839,0.7796312554872695,0.6811397557666214,0.5690140845070423,0.099271402550091,0.7160699417152373,0.9018087855297158,0.8910614525139665,0.6848739495798319,0.1330275229357798,0.4886713286713287,0.7167553191489362,0.6137992831541219,0.535671100362757,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0046140897060165,0.0066998954410256,0.0090251239938206,0.0110276913060286,0.0131415415333835,0.0152607901743361,0.0177706967338684,0.0199936592998639,0.0222140289427597,0.0246131126357567,0.0268998880455213,0.0289752214027833,0.0310635798844002,0.0329937975375914,0.0348994676177185,0.0369852369852369,0.0389014593236875,0.0410035573862572,0.0430703802535023,0.0572690905672595,0.0719857599078582,0.0853687978251057,0.0973952196599899,0.1098335407919998,0.1255025178790571,0.138293016887266,0.1497060828079741,0.1595976655193791,0.1698698344225176,0.1825815144165993,0.1946823137131783,0.2063029142272618,0.2169616180188462,0.2262727913326874,0.2368263473053892,0.2464408937125247,0.2551852268888638,0.2635913397096576,0.2703985690042654,0.2771201556672612,0.2836443288704595,0.2904143358300938,0.2958723302135829,0.3014334869356937,0.3062822061687911,0.3110226860367631,0.3153348006972098,0.3202748874048765,0.3243671303751023,0.3237347059774699,0.3228482972136223,0.3212998423068258,0.3200901174125904,0.3199946605757679,0.3188935441450808,0.317653009610521,0.3184893913328418,0.318654882959121,0.3191561391942697,0.3203373349788698,0.321890694239291,0.322976833413266,0.32427681352915,0.3249395600450008,0.325247126585891,0.3256385623869801,0.3297159073190507,0.3330780210980747,0.335947609897651,0.3385320688570273,0.3414826498422713,0.3460076045627376,0.3483069464434512,0.3515032312447316,0.3532344213649852,0.3611999390893863,0.3589385474860335,0.3639077340569878,0.3691950464396284,0.0,2.266730904957132,52.48625082553266,182.81797696558647,265.11338141943537,fqhc5_100Compliance_baseline_low_initial_treat_cost,65 -100000,95727,45080,427.8521211361476,5945,61.0694997231711,4664,48.178674773052535,1808,18.552759409570967,77.26691653433518,79.62636942741868,63.2951211478972,65.0388625397368,77.04855352994285,79.40878369497875,63.21548259891966,64.9614312651432,0.2183630043923301,217.58573243992885,0.0796385489775417,77.431274593593,155.518,109.46226546705796,162459.9120415348,114348.3713759524,392.40909,257.8993001919494,409389.106521671,268875.1555903239,381.81542,185.5233107125436,394892.5486017529,190742.3274677512,3050.82307,1376.7889721557915,3155393.514891305,1406824.7371040666,1091.64698,473.58558159196,1128290.973288623,482774.1218604376,1767.432,723.8154481883473,1816478.2140879792,732057.6997681168,0.37973,100000,0,706900,7384.541456433399,0,0.0,0,0.0,33882,353.3903705328695,0,0.0,34832,359.96113949042586,1586905,0,57004,0,0,0,0,0,59,0.6163360389440805,0,0.0,1,0.010446373541425,0,0.0,0.05945,0.1565586074315961,0.304121110176619,0.01808,0.3346715914565601,0.6653284085434399,24.673885281469,4.299415696221312,0.309819897084048,0.2476415094339622,0.2223413379073756,0.220197255574614,11.348460264616664,6.051472278825166,19.13970752934935,12123.514884808876,52.94508287193128,13.905186005850805,16.371680439993806,11.545413406041565,11.122803020045115,0.5617495711835334,0.7887445887445887,0.6892733564013841,0.5814850530376084,0.107108081791626,0.7470542026708562,0.8976034858387799,0.8677248677248677,0.7590361445783133,0.1176470588235294,0.4921851961073429,0.7169540229885057,0.6260543580131209,0.5253807106598984,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0042482434172505,0.0065348865527458,0.0088377810058816,0.0108923377336614,0.0128699866616435,0.0152709108517253,0.0174967589142618,0.0197601790989849,0.021792089747789,0.0238537000399782,0.0259642926809235,0.0278986066121651,0.0300758075148319,0.0323329447327425,0.0344210950663097,0.0362753321528058,0.0382624212808781,0.0401438609621221,0.0421858720566784,0.0574796654589498,0.0715272544586787,0.0847542996253895,0.097625385335676,0.1092497257152502,0.1238109346397621,0.1365382982336956,0.1473178628100405,0.1582734582157215,0.1686756040228836,0.1818563990902329,0.1940652626105044,0.2052652781255784,0.2157684980401603,0.225964239680074,0.2361485624244038,0.2453608477910928,0.2541311375694155,0.262252814029827,0.2701441899915182,0.2768353082762451,0.2838954291197603,0.2902935606060606,0.2950731239510908,0.3002916160388821,0.3054093044475407,0.3100899501390594,0.3150749481030552,0.3190358258885157,0.3239783097473879,0.323017094709552,0.3214063944583201,0.3196796564923233,0.3190707099949337,0.3177041469441219,0.3158427845731211,0.3137980311209908,0.3137106338120964,0.3148297314435551,0.3155115629698575,0.3167132854005143,0.3182736491839645,0.319756071916728,0.3197076036504697,0.3208412817231304,0.3225519675774611,0.3233610077297452,0.3279580092329096,0.3326949675497393,0.335665460394049,0.3378701489792164,0.3373054213633923,0.3416397184706106,0.3420750821928282,0.3444339622641509,0.3490878938640133,0.355875152998776,0.3588187702265372,0.3615850302696753,0.3632130384167636,0.0,2.1091117803809625,56.19737451631958,168.3870012758195,258.81739455754604,fqhc5_100Compliance_baseline_low_initial_treat_cost,66 -100000,95707,44889,426.2593122760091,6106,62.73313341761836,4809,49.693334865788295,1895,19.444763705894037,77.288290147924,79.65716566455029,63.294707477804174,65.04383369943413,77.05565990537418,79.42555964462049,63.209003377172685,64.96082739845319,0.232630242549817,231.60601992979932,0.0857041006314887,83.00630098094075,155.55144,109.46404347895606,162528.57157783653,114373.89478194495,395.31899,259.78677118669526,412448.1594867669,270836.5544700966,382.95255,186.74550330775216,396646.7656493256,192430.68422397683,3127.91807,1434.538693907747,3232908.930381268,1463607.1899165066,1124.00249,499.7230876528434,1156439.831987211,504195.8880441198,1852.39146,774.8450643187721,1902348.93999394,780300.8169863756,0.37826,100000,0,707052,7387.662344447115,0,0.0,0,0.0,34096,355.6897614594544,0,0.0,35039,362.752985675029,1584177,0,56958,0,0,0,0,0,77,0.7836417398936337,0,0.0,1,0.0104485565319151,0,0.0,0.06106,0.1614233595939301,0.3103504749426793,0.01895,0.3396611233134609,0.660338876686539,24.1904014175047,4.409179943089633,0.330214181742566,0.238927011852776,0.2164691203992514,0.2143896860054065,11.181646476589226,5.731429431387012,20.17523723749925,12084.683762445327,54.71399120680242,13.84330035175538,17.94750115740899,11.553390241452956,11.369799456185095,0.5658140985651903,0.7798085291557877,0.698992443324937,0.579250720461095,0.1086323957322987,0.7376923076923076,0.918141592920354,0.8713910761154856,0.7349397590361446,0.1330275229357798,0.5021373610715304,0.6901004304160688,0.6445733222866611,0.5303030303030303,0.1020910209102091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019850312439866,0.004004420068734,0.0062203190323497,0.0084012271683699,0.0104548043283703,0.0127279577228156,0.0149160906180542,0.0171285663247078,0.019360312381809,0.021593409404902,0.023910058007256,0.0260002874094147,0.028161339077328,0.0301232737046992,0.0320368020959041,0.0339596122444761,0.0358973297025294,0.0376504773765047,0.0397624446154806,0.0418959479739869,0.0566370757180156,0.0704077893524577,0.0840933180811653,0.0965705205779288,0.1088170408604874,0.1246294571017193,0.1364881508536481,0.1482002279675732,0.1584287562412462,0.168819316949571,0.1816113519225378,0.1930797647033333,0.2040271818439222,0.2146305682975159,0.223930569628618,0.2341147884745537,0.2442084078711985,0.2531234495512156,0.261425564594118,0.2694207092980522,0.2768775735080902,0.2836118440340076,0.2892941469607622,0.2943197654860877,0.2998843085916093,0.304912402085547,0.3099647210957803,0.3140076282321125,0.3182095678491173,0.3216710113667941,0.3204106133570744,0.3190139193532811,0.3187529149059457,0.3177370961429752,0.3174106211050481,0.3163041309119936,0.3143110913733762,0.3142528357718231,0.3146573115427398,0.3158195929754283,0.3176185648304607,0.3191060126582278,0.3195761644985312,0.3212571709189937,0.3231776014574394,0.3241510021809118,0.326494074852937,0.3291767440399535,0.3315308988764044,0.3325248508946322,0.3347188599095601,0.3359266759032292,0.3380946388119809,0.3395150870259177,0.3411753766040543,0.3464021598779199,0.3458339634054135,0.3502802241793434,0.3448831587429492,0.3400749063670412,0.0,2.1066767632581658,57.08558137523849,181.97326674057825,261.00761808438205,fqhc5_100Compliance_baseline_low_initial_treat_cost,67 -100000,95823,45499,431.2638928023544,5966,61.10224058942008,4654,47.932124855201785,1870,19.076839589660104,77.36488025655099,79.6808839107357,63.35773544642036,65.07181718691922,77.12958014351314,79.44980570738238,63.270231925241696,64.98914754006091,0.2353001130378516,231.07820335332008,0.087503521178661,82.66964685830658,155.23002,109.2469348177821,161996.61876584953,114009.09470354934,393.79978,258.64494916644924,410307.40010227193,269261.0638014352,380.30329,184.35762411467132,393443.7556745249,189640.21930763268,3051.5422,1392.391915364387,3144368.231009257,1412894.2794155744,1106.33662,492.0849966475516,1137183.755465807,496163.9914589745,1834.20184,769.8293957119749,1873290.212162007,767083.7474972381,0.38343,100000,0,705591,7363.482671174979,0,0.0,0,0.0,33966,353.76684094632816,0,0.0,34733,359.12046168456425,1595975,0,57272,0,0,0,0,0,65,0.6574621959237344,0,0.0,1,0.0104359078718053,0,0.0,0.05966,0.155595545471142,0.3134428427757291,0.0187,0.3386607000159821,0.6613392999840179,24.543713300627704,4.379550723210995,0.327245380318006,0.2337773957885689,0.2110012892135797,0.2279759346798452,11.058210904625792,5.597586283562381,19.84793714406549,12224.472550813554,53.08922246934949,13.205571229960375,17.34874456755779,10.876149105798206,11.658757566033106,0.5567253975075204,0.7794117647058824,0.6966513460275772,0.575356415478615,0.1102733270499528,0.7203252032520325,0.8917525773195877,0.8651960784313726,0.7345971563981043,0.1434977578475336,0.4979556074766355,0.7171428571428572,0.6349775784753363,0.5317769130998703,0.1014319809069212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0042580802141206,0.00638241740401,0.008725063990574,0.0108906763201513,0.0132061255243758,0.0153214132805969,0.017416338281234,0.0194839712136081,0.0216285377962024,0.0237468100152709,0.0258102255700827,0.0277911960286545,0.0301876305849175,0.0324599018678101,0.0346967006648222,0.0366570128258171,0.0389170370830872,0.0408074263285776,0.042772124768504,0.0580571810036403,0.0717585817619266,0.0846995966685873,0.0977904729900025,0.1104826903430334,0.1262579861661122,0.1390598679958894,0.1506479424240169,0.1611440641802509,0.171045725731301,0.1839659178931061,0.1966227757237681,0.2080291177748804,0.2178718477987833,0.2270894005165118,0.2371974212382921,0.2476994719368998,0.2564770621595822,0.2647248677847865,0.2726763397706354,0.279941796681025,0.2865482055712517,0.2927705433318365,0.2987547400026317,0.3030516374936272,0.3081354555190368,0.3124796880077998,0.3172122921351169,0.3218638919408001,0.3258992048027805,0.3235313881758436,0.3226435834020335,0.3215246194787457,0.3204802219075963,0.3195373591413195,0.3187013544156401,0.3166513426968073,0.3166376163383431,0.3175070627514768,0.3182899987473829,0.3196582483345252,0.3199904693828925,0.320459180455396,0.3210743616209666,0.3219303310238645,0.3233222001878718,0.3240266393442623,0.3278394615166861,0.334141712357655,0.3368299298021697,0.3375539040278925,0.3432532248568217,0.3455784045330107,0.3468884781269254,0.3508287292817679,0.3522876597778043,0.3582458307597282,0.3555464424851343,0.3569648296870673,0.3515503875968992,0.0,2.458845859877471,53.68742284343803,183.20811803044109,249.5137987630993,fqhc5_100Compliance_baseline_low_initial_treat_cost,68 -100000,95630,44875,424.8562166684095,6025,61.58109379901705,4727,48.78176304506954,1833,18.738889469831644,77.2563444549925,79.66574852595944,63.27473565930678,65.05524623071207,77.02701603203049,79.44136754170567,63.18838342945863,64.97398490227151,0.2293284229620127,224.38098425377007,0.0863522298481527,81.26132844056144,155.3233,109.279326879016,162421.1021645927,114273.05958278368,393.11536,258.3933236912619,410435.375928056,269556.9843497255,375.53495,183.1156185928938,388876.01171180594,188486.26774992247,3091.79217,1417.1456818753054,3192723.653665168,1441554.3352429306,1129.72673,498.7439787646306,1164289.417546795,504598.9813722328,1795.42604,759.7186333015168,1837252.6822126948,758377.7623042241,0.38059,100000,0,706015,7382.777371117851,0,0.0,0,0.0,33910,353.89522116490645,0,0.0,34363,355.50559447872007,1588110,0,57048,0,0,0,0,0,82,0.8470145351877026,0,0.0,0,0.0,0,0.0,0.06025,0.1583068393809611,0.3042323651452282,0.01833,0.3347029077117572,0.6652970922882427,24.51616771448492,4.34792395851297,0.3166913475777448,0.2409562090120584,0.2214935477046752,0.2208588957055214,11.199807977447968,5.759941917457788,19.584296496938425,12250.674575880568,53.57379769674811,13.621696140635803,16.891908931627434,11.57346077732462,11.486731847160256,0.5648402792468796,0.7936786654960492,0.6887107548430194,0.5826170009551098,0.1197318007662835,0.7283558379666402,0.9238329238329238,0.8417085427135679,0.7575757575757576,0.1390134529147982,0.5054786620530565,0.7213114754098361,0.6333030027297544,0.5330882352941176,0.1144945188794153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025117739403453,0.0049461297548219,0.0072763068429758,0.0095699612934686,0.0119035507172652,0.0140989986043621,0.0163314019911865,0.0185132208100044,0.0207434077286582,0.0227016616468949,0.0250061566245279,0.0269456462536097,0.0293200185309105,0.0315493190089802,0.0338102370745312,0.0359164329839302,0.0379934483330568,0.0398495771955704,0.0416246084685265,0.0435190787140383,0.0579320868301961,0.0716897321194724,0.0853150230453452,0.0978672786222577,0.1101648409632959,0.1257765125459028,0.137748386548913,0.1499169258296766,0.1607265030360044,0.170292693921798,0.1836688483227844,0.1954816339798461,0.2069389978213507,0.2177057875875371,0.2275825557540864,0.2380968239695385,0.2474691544458986,0.256900690914419,0.2658452305174138,0.2731090026731526,0.2797833725690297,0.2858399296394019,0.2927057874380087,0.2976669348350764,0.3025011568154697,0.3070204696784395,0.3126771515288333,0.3172725070444084,0.3210925841821839,0.3254120352625527,0.3241580310880829,0.3230314987789566,0.3228314181119168,0.3217010413947147,0.3207113657386686,0.3176376450312375,0.3161080222398729,0.3162688804335293,0.3165535606906623,0.316593377007987,0.3180122819575782,0.3192588032015253,0.3196693728179026,0.3215836354684213,0.3237439514672958,0.3260047466291109,0.327119079567191,0.3292728989612842,0.3336249431360885,0.3373551168954468,0.341522114249387,0.3436174724342663,0.3492563650113436,0.3520721266762633,0.3564622074197428,0.3602535508862542,0.3656592993534807,0.3691449073151285,0.3677697067527576,0.367816091954023,0.0,2.457065758853138,54.63334167291542,178.84959798695894,258.3740000021747,fqhc5_100Compliance_baseline_low_initial_treat_cost,69 -100000,95696,44474,421.8985119545227,5997,61.45502424343756,4667,48.21518140779134,1857,18.9976592543053,77.32722884548278,79.70386882946762,63.32110870231941,65.07579695895599,77.08549683505782,79.46480348830706,63.22909292182019,64.98749102977642,0.241732010424954,239.06534116056832,0.0920157804992243,88.30592917956892,156.03214,109.67803577586236,163049.57364989133,114610.68488906974,391.86303,257.48377965436254,408947.6258150811,268525.66019889584,366.90315,178.28483394792352,380731.8487711085,184133.3413095372,3044.69327,1417.1659609514345,3145773.3656579168,1445164.1707591468,1120.87358,499.1658436244591,1158652.054422337,509153.78403404687,1820.09424,784.1903580598087,1863628.824611269,786299.8104418281,0.37671,100000,0,709237,7411.344256813242,0,0.0,0,0.0,33936,354.04823608092295,0,0.0,33574,348.1023240260826,1590131,0,57155,0,0,0,0,0,66,0.6896839993312155,0,0.0,0,0.0,0,0.0,0.05997,0.1591940750179183,0.3096548274137068,0.01857,0.3358304112209117,0.6641695887790883,24.114645518174804,4.385357690098019,0.3113349046496679,0.2356974501821298,0.2350546389543604,0.2179130062138418,11.33608161571521,5.799717933359723,20.0069864427542,12066.759190328772,53.25532476147693,13.246400129067869,16.515708306476697,12.114935937135773,11.378280388796586,0.5631026355260339,0.7854545454545454,0.6896077081899519,0.5970829535095715,0.1052114060963618,0.710955710955711,0.8825,0.8567839195979899,0.7651515151515151,0.0844444444444444,0.5068047337278107,0.73,0.6265402843601896,0.5438175270108043,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0046011492738494,0.0067667647357208,0.0092426135267172,0.0114601234480023,0.0137049066824147,0.0160096261701303,0.0185266512107687,0.0204732783834086,0.0223960840134765,0.0243564762588452,0.0263749807425666,0.0285634938594145,0.0304788204140091,0.0324055440312909,0.0343950361944157,0.0361760318249627,0.0384435700715301,0.0401601830663615,0.0420280186791194,0.0569384237739593,0.0709732790471306,0.0836698941538074,0.0967657085139514,0.1078774709394316,0.1236894169426253,0.1350789118967512,0.1472066622649145,0.1580117109031072,0.1681829885846708,0.1808711203042349,0.1927723887060453,0.2036704633225634,0.214509971229475,0.2238771466314399,0.2337334175615919,0.243404378844887,0.2522113934592271,0.2594661489378612,0.2673076702689694,0.2748983680985858,0.2817607117771014,0.2885075439967787,0.2940873172895907,0.2992801906522056,0.3039374159396863,0.3092526467455992,0.3140072616090197,0.3190893533163926,0.3220688288526322,0.3210252951096121,0.3206479071112764,0.3193968374874811,0.3172533429707264,0.3165538278401905,0.3149470838517426,0.3130660998397868,0.3133850773699151,0.314864772572053,0.3148973335234564,0.3154398832466414,0.3170789489270132,0.3174569957728205,0.3185241468701812,0.3191243407268261,0.3204689662375643,0.3199235356215584,0.322227465785748,0.3250927936129981,0.3279606177299615,0.3308511124309014,0.3336172931530188,0.3384392334846192,0.3393703194253401,0.3403007661023361,0.3452113176275601,0.3513761467889908,0.3588187702265372,0.3629120879120879,0.3596323247797778,0.0,2.10959857401941,56.37745813805887,178.44097218351152,248.2747200765185,fqhc5_100Compliance_baseline_low_initial_treat_cost,70 -100000,95784,45093,427.55575043848654,6070,62.15025473983128,4728,48.81817422534034,1927,19.77365739580723,77.38146625236273,79.70421729503339,63.35451413110488,65.06771457300866,77.14221808017766,79.4663850480613,63.26692817946222,64.9830718784754,0.2392481721850714,237.83224697208996,0.0875859516426587,84.64269453325812,154.66242,108.88452410840704,161469.99498872465,113677.15287355616,395.44237,259.26978804935925,412264.16729307605,270102.0226285453,374.9702,181.9542596516456,388347.57370750856,187546.17935405183,3114.68167,1418.3945562583574,3217414.578635263,1446854.6316950277,1127.25366,491.5044276154629,1162368.0886160529,498868.4567505886,1887.07246,782.921685025529,1937727.92950806,788891.8447281568,0.38176,100000,0,703011,7339.54522676021,0,0.0,0,0.0,34118,355.58130794287143,0,0.0,34355,355.5917480998914,1594910,0,57260,0,0,0,0,0,59,0.6055291071577716,0,0.0,2,0.0208803140399231,0,0.0,0.0607,0.1590004191114836,0.3174629324546952,0.01927,0.3272527126906746,0.6727472873093253,24.57339682464769,4.397404480147025,0.3185279187817258,0.229906937394247,0.2231387478849407,0.2284263959390862,11.071103073963428,5.597094666696083,20.434289628296327,12195.06463566148,53.618112420598194,13.058471144633923,17.00878686187291,11.833659061001535,11.717195353089812,0.5537225042301185,0.7856485740570377,0.6839309428950863,0.571563981042654,0.1212962962962962,0.721875,0.9047619047619048,0.8525798525798526,0.72,0.083743842364532,0.4912993039443155,0.7106446776611695,0.62147406733394,0.5254658385093167,0.1299885974914481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186116679829,0.0046211844825489,0.007121047666386,0.0093427573320334,0.0115712731450883,0.0138037746605045,0.015737116764514,0.0178471208889886,0.0202901512055578,0.0223133900802095,0.0245051837888784,0.0267985390076743,0.0288259958071278,0.0307999547059489,0.0329498123633964,0.0345860313329409,0.0364456678083963,0.0384312343196002,0.0403153761452641,0.0423017657837747,0.0571237751364438,0.0712648969897356,0.0853259501636043,0.0981488684025186,0.1107081866289979,0.1265625991496922,0.1383523721640627,0.1500569445774925,0.1607091365408234,0.1705777044048755,0.1837468381680211,0.1953244955775178,0.2059383120060013,0.2171074217468337,0.2270141815101272,0.2371852393454972,0.2471511322923758,0.2557464474972153,0.2646845128624299,0.272328183026913,0.2790896983033181,0.28559383563248,0.2918117435277955,0.2974301193843793,0.302985020228159,0.3080221811460258,0.3125304973412574,0.3170126698214013,0.320831228056538,0.3245739011133977,0.3232032301480484,0.3221317786822131,0.320475989297282,0.3187563268257411,0.3179195050123449,0.3154805688365821,0.3130675526024363,0.313813567657956,0.3151537897268803,0.3162956366874443,0.3173653813804833,0.3185561729124798,0.3184393752482907,0.3197076703021634,0.3212218726735669,0.3218719904214061,0.3235745551702575,0.326647025637811,0.3311847544314439,0.3341011079782375,0.3381576551975241,0.3397883597883598,0.3416859338873961,0.3437358319480127,0.345668549905838,0.3407048249763481,0.3412336675782437,0.3496475327291037,0.3502329405316525,0.3532110091743119,0.0,1.9871535928241075,56.403325944273405,177.08317815159805,255.84737904214643,fqhc5_100Compliance_baseline_low_initial_treat_cost,71 -100000,95770,44628,422.8255194737392,6062,62.14889840242248,4690,48.53294351049389,1828,18.80547144199645,77.31912755708531,79.66826687315721,63.32066847763053,65.05809364221318,77.09266195186463,79.44127423467212,63.23646687158232,64.975805912918,0.2264656052206817,226.99263848508625,0.084201606048218,82.28772929517447,156.30648,109.94143978463848,163210.27461626814,114797.36847096008,389.82501,255.9733786977435,406617.8761616373,266854.24318444554,372.6195,181.61458318819456,386143.1137099301,187441.1497862414,3087.4657,1406.7985966720044,3197286.5302286725,1442582.834588984,1133.17152,496.0763123292775,1173787.53263026,508594.823771011,1790.39314,747.29007606106,1844016.7275764851,758899.5630663976,0.37661,100000,0,710484,7418.648846194007,0,0.0,0,0.0,33708,351.5192649055028,0,0.0,34113,353.29435104938915,1590035,0,57083,0,0,0,0,0,62,0.6473843583585674,0,0.0,0,0.0,0,0.0,0.06062,0.1609622686598869,0.301550643352029,0.01828,0.3259433962264151,0.6740566037735849,24.677115861346596,4.375959530822095,0.3189765458422174,0.2383795309168443,0.2204690831556503,0.2221748400852878,11.235077334161751,5.89954077013105,19.38592268030854,12055.341608887802,53.11002360274079,13.403470637708844,16.830779460732145,11.535823683909742,11.339949820390045,0.5637526652452025,0.7969588550983899,0.6878342245989305,0.5831721470019342,0.1161228406909788,0.7408585055643879,0.9324009324009324,0.8846153846153846,0.7131474103585658,0.1448598130841121,0.4988344988344988,0.7126269956458636,0.6245583038869258,0.541507024265645,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045590335092,0.0043575634126815,0.0066048455825656,0.0089682910479595,0.0113290823850057,0.0137382501807664,0.0157838388988019,0.0179003584156191,0.019774848927925,0.0220104216787297,0.024207439609564,0.0263990142725125,0.0282311560889821,0.0303183269805295,0.0322647213595138,0.0344057794268115,0.0364101289935192,0.0382863959338208,0.0402128057524054,0.0422950341609731,0.0571595582555687,0.0715817441969936,0.0844529750479846,0.0969431212341083,0.1089184060721062,0.124111825410252,0.1353498287180901,0.1460233015906793,0.1570714728053129,0.1664504925553923,0.179192867602722,0.191344998863747,0.2032648533426138,0.2139186529630439,0.2236597467463172,0.2337515642130209,0.2436713099383873,0.2525680982009248,0.2612988899734411,0.2691250572606505,0.2760329239068776,0.28203567582752,0.2875690018716387,0.2927162968208058,0.2984165207238762,0.3030475085475888,0.307868688134319,0.3131265524488886,0.3173878651918513,0.3213285789751717,0.3198113207547169,0.3179321263853514,0.3174688258195565,0.3163653732034563,0.3157127775051672,0.3140224739770967,0.3130755940209552,0.3142322035847475,0.314830950062358,0.3162460426764921,0.3165036881322847,0.3177836223773458,0.3182839503580353,0.3194207836456559,0.3210794934758534,0.3225503495773766,0.324370562573066,0.3267043669494188,0.3309456090452614,0.333926523510104,0.3361607547854486,0.3379303028695698,0.338734081452528,0.3397494653223342,0.3427252167357708,0.344717936638794,0.3524390243902439,0.3469884404786047,0.3496136865342163,0.3559127439724455,0.0,1.6959974505672042,55.54935917819039,172.3129206881886,260.51166635315263,fqhc5_100Compliance_baseline_low_initial_treat_cost,72 -100000,95674,45370,428.9566653427263,5926,60.71660012124506,4637,47.81863411167088,1853,19.002027719129543,77.34181859432726,79.72407120266517,63.3271521787835,65.08559571125444,77.120157804827,79.5025724105983,63.24618713455638,65.00648454595229,0.2216607895002624,221.4987920668676,0.0809650442271205,79.11116530215168,154.38258,108.70139022622912,161362.68996801638,113615.9974895678,392.43945,257.4384002827159,409517.1519953174,268412.721016113,376.55732,183.4902152634452,388519.043836361,188048.6309170251,3038.2964,1382.0634568771327,3139112.55931601,1408039.4643364477,1094.64226,482.5309663887936,1128084.4011957273,488354.882137424,1808.26728,744.2432868702007,1856854.9658214357,752490.536091516,0.38318,100000,0,701739,7334.667725818927,0,0.0,0,0.0,33806,352.65589397328426,0,0.0,34431,354.82994334929026,1598702,0,57375,0,0,0,0,0,75,0.7839120346175554,0,0.0,1,0.0104521604615674,0,0.0,0.05926,0.1546531656140717,0.3126898413769828,0.01853,0.3391737662755184,0.6608262337244816,24.551987109830996,4.393316742547317,0.328876428725469,0.229458701746819,0.2255768816044856,0.2160879879232262,11.239533497480409,5.759308046284081,19.616640380064705,12252.764774646072,52.45443609480773,12.68689481033748,17.239954359261315,11.71152391153685,10.816063013672093,0.5585507871468622,0.7772556390977443,0.6963934426229508,0.5630975143403442,0.1117764471057884,0.7482014388489209,0.9523809523809524,0.8345679012345679,0.7527272727272727,0.160621761658031,0.4884819846426462,0.6807580174927114,0.6464285714285715,0.4954604409857328,0.1001236093943139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417464126945,0.004652482844603,0.0067773911102543,0.0093030813918059,0.0116626672631878,0.0139183025169015,0.0160229948322783,0.0182415810050733,0.0203599791494189,0.0227968348534635,0.0251517512919366,0.0274830798303361,0.0297007294013559,0.0317165909301678,0.0338332284000949,0.0358805155044372,0.0380394798196984,0.0400643687707641,0.0422964496364336,0.0443149478249085,0.0584978585605348,0.0721719646521757,0.085525072941374,0.0987247743103049,0.1104911185182059,0.1262533316410712,0.1378933520062809,0.1502788658038147,0.1617452245630528,0.1718602556403877,0.1847245552827669,0.1961501027360224,0.2066764529984233,0.2173784720324439,0.226704795424549,0.2375268507651084,0.2470680131674384,0.2559711227060093,0.263974133529979,0.2711526793584651,0.2777385976067981,0.2840743035503443,0.2908897428318061,0.2973545860627762,0.3030310387103822,0.3078505271455315,0.3124351100158863,0.3175931815290675,0.322406424038337,0.3267883298365068,0.3254884008993847,0.3237770318604523,0.3227461037680015,0.3214517923451474,0.3202989199066989,0.3191521969011969,0.3179775280898876,0.3185711472827514,0.3196124666803362,0.320290346168251,0.3216214700880259,0.3227130146580126,0.3235515582514118,0.3233270794246404,0.3247635508185703,0.3255468363010663,0.3250647908182155,0.3276122218030932,0.3298624547085517,0.3333333333333333,0.336795590178124,0.3383015965628812,0.3438280859570214,0.3486384266263237,0.3513362510475836,0.3474857685009487,0.3393893129770992,0.3392318520008043,0.3401435670900055,0.3346139070303496,0.0,2.448649030773384,54.48342539755212,169.94057363564966,255.63554089359957,fqhc5_100Compliance_baseline_low_initial_treat_cost,73 -100000,95680,44846,424.16387959866216,6070,62.405936454849495,4676,48.29640468227424,1883,19.27257525083612,77.38307130315455,79.76024120157375,63.34642469116329,65.09787597866443,77.15244842281628,79.53160259811519,63.261197167736746,65.01590188538374,0.2306228803382737,228.63860345856324,0.0852275234265462,81.97409328069227,155.27358,109.1969155656398,162284.03010033446,114126.98115137946,391.70716,257.3077324336555,408789.1826923077,268321.5535468807,372.07394,180.48982367175168,385807.97449832776,186194.5939929121,3079.17555,1391.6369145952067,3181361.130852843,1417629.2794682349,1093.25702,480.58721141253056,1126977.7382943144,486663.5481166992,1841.46084,770.3079102931243,1886016.5969899665,772167.9992031581,0.37909,100000,0,705789,7376.546822742474,0,0.0,0,0.0,33876,353.4280936454849,0,0.0,33987,352.1425585284281,1594246,0,57253,0,0,0,0,0,61,0.6270903010033444,0,0.0,0,0.0,0,0.0,0.0607,0.1601202880582447,0.3102141680395387,0.01883,0.3338577721837634,0.6661422278162367,24.73808167005628,4.373919061945809,0.3284858853721129,0.2228400342172797,0.2286142001710864,0.2200598802395209,11.12528979460165,5.709515208263329,19.992562054934663,12155.590767049734,52.71129622780994,12.463242270958787,17.200139361840844,11.90496903015919,11.142945564851107,0.5624465355004277,0.7773512476007678,0.6998697916666666,0.6043030869971936,0.0962099125364431,0.7360995850622407,0.906166219839142,0.8733509234828496,0.758893280632411,0.13,0.5021607605877269,0.7055306427503737,0.6430423509075195,0.5563725490196079,0.0880579010856453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890750432766,0.0043057159645816,0.0066936440806888,0.0087432470855843,0.0109806313863047,0.0133045593819029,0.0152704438418724,0.01746470822403,0.019502621814725,0.0218559656037262,0.0240524108799737,0.0262674183379029,0.0282828698370906,0.0307877714144452,0.0327648994666419,0.0349022282855843,0.0370869159846679,0.0392850841230136,0.041297045456909,0.0435634483908621,0.0586889527291721,0.0724335755114005,0.0858048069155799,0.0979738610196936,0.1099665777515366,0.1255616284847395,0.1373557065476632,0.1485042166944943,0.1593329207656686,0.1695004231885921,0.18284509375706,0.1950763309259179,0.2056991946790127,0.2147650273224043,0.2242765538556297,0.2343497241119507,0.2446422389243157,0.2532915854798563,0.262000749514519,0.2694312986283789,0.2759478727836674,0.2826858019127442,0.2889073141841871,0.2959434652716954,0.3011040319050629,0.3062966389145852,0.3113676487159903,0.3164895309616241,0.3202234086668049,0.3247368907551928,0.3231355236416006,0.3219772511587605,0.3211454798879299,0.3201907101061909,0.3189701253192374,0.3177598725529242,0.3164328466922126,0.3165892643221688,0.316856390797525,0.3172225396371947,0.3189133681852128,0.319711822369198,0.3186210062814332,0.3192100458654317,0.3213995506906935,0.3216893676523901,0.3224074597343882,0.3266776900758119,0.3307284398548702,0.3335562549173879,0.3378464046368411,0.3397348205829738,0.3418819418445026,0.3467790487658037,0.3516117080400148,0.3551510908878777,0.3602521765235665,0.3587382445141066,0.3632968791677781,0.3633000369959304,0.0,2.189203938259173,52.75705928390239,174.64733459330395,261.6208899971311,fqhc5_100Compliance_baseline_low_initial_treat_cost,74 -100000,95700,44945,425.3187042842215,6064,62.215256008359454,4756,49.18495297805642,1903,19.54022988505747,77.3960056150407,79.77983733051151,63.35197710932333,65.11279454550632,77.15990798222413,79.54516871920734,63.26445959545088,65.02843030590464,0.2360976328165804,234.6686113041727,0.0875175138724486,84.36423960168327,155.17436,108.996473051691,162146.4367816092,113893.70771919833,394.67428,259.8985015301483,411868.0982236154,271037.6569067095,375.38871,182.90726433500316,389166.2277951933,188780.6924206278,3144.01415,1435.597934971782,3253339.5088819223,1468277.9821003373,1142.06767,502.58671057028505,1180596.9696969695,512580.3830635267,1862.56972,782.8261048090003,1913986.144200627,790203.9004225676,0.38042,100000,0,705338,7370.292580982236,0,0.0,0,0.0,34007,354.7753396029258,0,0.0,34318,355.4649947753396,1597090,0,57257,0,0,0,0,0,69,0.7210031347962382,0,0.0,1,0.0104493207941483,0,0.0,0.06064,0.159402765364597,0.3138192612137203,0.01903,0.3298742138364779,0.670125786163522,24.585765412884264,4.441441663887382,0.31959629941127,0.2300252312867956,0.229184188393608,0.2211942809083263,11.277187883428486,5.759354458827159,20.408859522399005,12113.787080706012,53.769205635238784,13.01120892133246,17.06248079310693,12.086534562774784,11.608981358024606,0.5616063919259883,0.773308957952468,0.6828947368421052,0.5889908256880734,0.1378326996197718,0.7315112540192926,0.9345549738219896,0.8600508905852418,0.7007874015748031,0.1720930232558139,0.5014236902050114,0.6867977528089888,0.6211180124223602,0.5550239234449761,0.1290322580645161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002380542358459,0.0048569284743769,0.0071557621647956,0.0092862585725171,0.0113319634610298,0.0135930436199242,0.0157631248916667,0.0180195816190058,0.0201803349076857,0.0225695510655284,0.0247488209965142,0.0267256691684548,0.0286628134191743,0.0307575039657197,0.0330901699392263,0.0348880481300006,0.0372392218608216,0.0393726125228367,0.0415188925521846,0.0434315850913032,0.0581697776199379,0.0725147300451058,0.0853777493418361,0.0979897384136596,0.1102854372206762,0.1257138022926272,0.1380788203468944,0.1488605277443665,0.1589173369222717,0.1685843887059933,0.1812230130614091,0.193070109982805,0.2046807770872267,0.2146463542577373,0.2237893695377343,0.234958161774472,0.2448421991747518,0.2536394680086269,0.2613847478363315,0.2692087876917449,0.27632384008866,0.2818234882091991,0.2885544517028339,0.2936102503977891,0.2984747077937824,0.3034680304390052,0.3087268417441207,0.3128772890985644,0.3178761792909412,0.3222713282298161,0.3213399004200609,0.3200724071255194,0.3185613088210491,0.3180146263360595,0.3179964105074237,0.3164717572422227,0.3144316044074173,0.3147483488208204,0.3158406385373674,0.3161616701401877,0.3168561172599461,0.3168987728248665,0.3180955162845041,0.3204982760538316,0.3212548230162724,0.3218349005143124,0.3220852812013033,0.324039847127373,0.3276808503199189,0.3304282375311967,0.3326191995624031,0.3358105956046289,0.3380832282471627,0.3428984624752626,0.3445052870090634,0.3462455303933254,0.3456998313659359,0.3502135448444173,0.3519029233314947,0.3495934959349593,0.0,1.8683248008050943,54.68237353379081,182.1909283302532,259.0576633706579,fqhc5_100Compliance_baseline_low_initial_treat_cost,75 -100000,95837,44995,426.1089140937216,5999,61.552427559293385,4656,48.1442449158467,1841,18.89666830138673,77.38566316619061,79.70580181261414,63.36611244363343,65.08384611555394,77.1684859229064,79.4895576637905,63.28643913454027,65.00686987108992,0.2171772432842118,216.244148823634,0.0796733090931596,76.97624446402074,156.21738,109.90270035364784,163002.97379926333,114676.46144354247,394.25871,258.927754770122,410938.6562601083,269729.1492535472,375.86292,182.011299536634,389833.7489696047,188125.1641786026,3062.03708,1375.0440498313185,3166349.854440352,1406076.6508043015,1127.16128,492.4955892288776,1165175.986310089,502941.47273900185,1800.71088,740.666971507685,1849175.6211066707,746618.9863977022,0.38125,100000,0,710079,7409.226081784696,0,0.0,0,0.0,33988,354.1847094545948,0,0.0,34353,356.10463599653576,1592896,0,57149,0,0,0,0,0,75,0.7825787535085614,0,0.0,1,0.0104343833801141,0,0.0,0.05999,0.1573508196721311,0.3068844807467911,0.01841,0.3272234619062799,0.6727765380937201,24.69371181903104,4.40123357251492,0.3251718213058419,0.227233676975945,0.2289518900343642,0.2186426116838488,11.00505238553833,5.68405867706684,19.45980321013137,12153.230921315266,52.32564071404476,12.605202518820626,17.107747957836825,11.717402101860852,10.895288135526464,0.5657216494845361,0.7892249527410208,0.7034346103038309,0.573170731707317,0.1208251473477406,0.7317073170731707,0.919889502762431,0.853904282115869,0.6820083682008368,0.1832460732984293,0.5087972310354774,0.7212643678160919,0.6499552372426142,0.5417170495767836,0.1064087061668681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890016509171,0.0043692912827063,0.0068607849306309,0.0089610468778574,0.0111680703039179,0.0133285816108339,0.0156968269985424,0.0181140932748239,0.020276968674945,0.0222886264557195,0.0245544635628567,0.0263271338834831,0.0285097636176772,0.0303039660727336,0.0324922404281427,0.0344781283891958,0.0363380514858041,0.0383909785346337,0.040308177929144,0.0424340804561819,0.0574319390841764,0.071333744498918,0.0849090223042093,0.097173776003362,0.1098424201567371,0.1254079401793352,0.1379551449789709,0.1495015198860617,0.1605746770907772,0.1704365334361478,0.182457498628988,0.1952497191739393,0.2061352090660414,0.2171341263778238,0.2267641665843187,0.2367050968861573,0.2457011760513186,0.2541489815625772,0.2613973502434605,0.2686488710119755,0.2757963769036265,0.2821930592009332,0.2891783779956812,0.2949601615041869,0.3004236262406197,0.3061995998674408,0.3109462660516145,0.3155813540848141,0.3206894772152552,0.3250539104823016,0.3233986541845191,0.3218026328432785,0.3211344407903982,0.3202054300470296,0.3190255048294485,0.3165832989154544,0.3148573146990392,0.3153774188783298,0.3161522017956392,0.3170675052710574,0.3174092100336952,0.3183435461553667,0.3197158828226789,0.3204473129846264,0.3219741764209002,0.3229150306266687,0.3231393620669944,0.3255975060616557,0.329330985915493,0.3315290933694181,0.3345650289676566,0.3377167400180285,0.3397520609149833,0.3423293294815265,0.3455951707225052,0.3487100225894661,0.3528058877644894,0.3570271364925071,0.3611340489953206,0.347693480747236,0.0,1.6440098669435217,52.4347074809446,173.21352295212046,262.17596938818264,fqhc5_100Compliance_baseline_low_initial_treat_cost,76 -100000,95765,44861,424.64365895682135,6024,61.5882629353104,4771,49.2351067717851,1887,19.339006944081863,77.37657405990127,79.72168282500397,63.3458979718325,65.07921774574965,77.13273431212873,79.47921462241013,63.255917787774976,64.99217893472836,0.2438397477725402,242.4682025938409,0.0899801840575236,87.03881102128719,155.48522,109.37777717697752,162360.98783480396,114214.55665324234,391.70641,257.4022051145522,408451.3339946745,268208.3789553096,378.38946,184.6832685975234,391363.911658748,189929.5661098548,3124.36879,1440.612319603978,3229471.153344124,1471314.6314676325,1155.46464,517.0242945681305,1193647.6583302876,527090.720970895,1851.75758,782.9691306179675,1901083.088811152,789563.7727853497,0.37996,100000,0,706751,7380.044901581998,0,0.0,0,0.0,33801,352.3416697123166,0,0.0,34611,357.77162846551454,1593559,0,57161,0,0,0,0,0,63,0.6369759306636036,0,0.0,0,0.0,0,0.0,0.06024,0.1585430045267923,0.3132470119521912,0.01887,0.347323408299018,0.6526765917009819,24.294102569429963,4.380711757167865,0.3164954936072102,0.2454412072940683,0.2127436596101446,0.2253196394885768,11.287637810037603,5.793120562553783,20.25541568573932,12169.645342887272,54.19138909069009,13.91051210158194,17.067376225529365,11.262654146567302,11.95084661701148,0.5592119052609515,0.7771135781383433,0.6854304635761589,0.5733990147783251,0.1311627906976744,0.7404287901990811,0.9247058823529412,0.8666666666666667,0.7704918032786885,0.1508620689655172,0.4909090909090909,0.693029490616622,0.6190045248868778,0.5110246433203631,0.1257413997627521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0045413536883293,0.0068284664867387,0.009142996464708,0.0115226588560735,0.0138287797476604,0.0160495967207431,0.0182750030628496,0.0201903515676913,0.0225097501305135,0.0244649885208265,0.0266267026616437,0.0287746856784513,0.0305554983419497,0.0327126424923918,0.0348626887577389,0.0368617786843658,0.0390352697095435,0.041177632468059,0.0430105287274923,0.0576852827904355,0.0724922613569815,0.0859925360617242,0.0986044263225372,0.1102446015871175,0.1256196949356785,0.1378590133692391,0.150267061051646,0.1604886852700263,0.1709398959841295,0.183094950887472,0.1950425205028888,0.2065443232129842,0.2162496307399424,0.2262964960755606,0.2360927923035146,0.2449170993133478,0.2537582140606715,0.2616391880084875,0.2688542608854948,0.2751529591376458,0.2826079332234419,0.2893794114517445,0.295102969348659,0.3003910329584922,0.3053009019665829,0.3097625,0.3138791843994156,0.3193539209600662,0.322830285691685,0.3221361937790682,0.321594437879579,0.3210678819590964,0.3189790821555918,0.3186498516320474,0.3180872544820412,0.3169709241623691,0.3174715093875543,0.3186475409836065,0.3190791233482533,0.3199947520335869,0.3207610542537638,0.3220711757189837,0.3230045063133003,0.3258874957967046,0.3266454739694617,0.3257012672647017,0.3284804367606915,0.3300228110194771,0.3326318297331639,0.3349282296650718,0.3381845222287141,0.3427421889734079,0.3461538461538461,0.3472599531615925,0.3498283414229904,0.3514420875934686,0.3539787532571657,0.351063829787234,0.3503208758021895,0.0,2.280529470275822,57.14595240813847,176.31808336253798,260.40476070954765,fqhc5_100Compliance_baseline_low_initial_treat_cost,77 -100000,95749,45181,428.3908970328672,5974,61.14946370197078,4687,48.34515242979039,1816,18.54849659004272,77.3313489084019,79.69968590500665,63.31030609897547,65.06411379662556,77.1041307934066,79.47386240712481,63.22689698348523,64.98352300171057,0.2272181149953098,225.82349788183365,0.0834091154902338,80.59079491499688,154.60148,108.77120629868789,161465.3730065066,113600.35749583588,390.98388,256.7330971836657,407738.3471367848,267527.18794312805,374.64928,182.42332072365372,387285.20402301854,187346.0771612049,3083.22036,1406.531154840866,3183575.024282238,1432445.294301632,1132.95962,499.0339741389669,1166732.0389769084,504661.7866912095,1780.7005,744.6663495247984,1821689.5424495293,745901.8590430064,0.38073,100000,0,702734,7339.335136659391,0,0.0,0,0.0,33710,351.4501456934276,0,0.0,34181,353.0167416892083,1596998,0,57260,0,0,0,0,0,62,0.6475263449226624,0,0.0,1,0.0104439733052042,0,0.0,0.05974,0.1569090956846059,0.3039839303649146,0.01816,0.3394172270252962,0.6605827729747038,24.8014217429429,4.4517326248695,0.3277149562620012,0.2244506080648602,0.2272242372519735,0.2206101984211649,11.522653760036729,5.978724003816368,19.330505832442967,12152.240615523096,52.86275480520649,12.41055220259086,17.266118315117293,11.799438297621675,11.38664598987666,0.5609131640708342,0.7775665399239544,0.6868489583333334,0.596244131455399,0.1170212765957446,0.7444717444717445,0.9080779944289692,0.8860103626943006,0.8015564202334631,0.1598173515981735,0.4962492787074437,0.70995670995671,0.62,0.530940594059406,0.105521472392638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0049382966425666,0.0071149454453184,0.0090936801463117,0.0113634051557508,0.0138200038700084,0.0159578264726575,0.0181545279107998,0.0202518180609395,0.0223999836122662,0.0242964391204463,0.0263831098782555,0.0282900423990449,0.0302689889724827,0.0322457447796781,0.034371154701217,0.0363551643800155,0.0383414097601975,0.0405488280234915,0.0426074820863189,0.0568464123922256,0.0705137595479753,0.0837275654809981,0.0964037854889589,0.1083229656495793,0.1237507006652353,0.1361162102225099,0.1467706203135651,0.1584251530923042,0.1690774084168508,0.1819886620826417,0.1942065082029346,0.2054949600505083,0.2160582343604619,0.2255887436831848,0.2353612841717846,0.2449412605529995,0.2541646031245779,0.2625134751773049,0.2697714383914762,0.2779295021640012,0.283841210006907,0.2908194701170671,0.2965412920033134,0.3018548926594903,0.3071431213701772,0.3124264650662127,0.3170663408176773,0.3213544907695498,0.3251323205258503,0.3237556408702094,0.3227802838596105,0.3213637195422362,0.3205411414793318,0.3191530374697884,0.3172077525067253,0.3143470573377115,0.3157584490437516,0.3155946084285958,0.3166708233868956,0.3173335826477187,0.3193466295792152,0.3197432520019235,0.3200044652824291,0.321898722014029,0.3239330260656719,0.3242275221012536,0.3268439727446855,0.3311756842327447,0.33572339069471,0.3392580439340078,0.3408910314138899,0.340723527195076,0.3410882085480448,0.3413251556546789,0.3434848308729513,0.3474360891015099,0.3480814408770556,0.3504273504273504,0.3547904191616766,0.0,2.359659322669939,53.28234586684,176.62035664043285,257.844860634696,fqhc5_100Compliance_baseline_low_initial_treat_cost,78 -100000,95492,45306,430.75859757885473,5901,60.44485401918485,4661,48.22393498931847,1861,19.04871612281657,77.22623088476638,79.71342638921287,63.24095407219974,65.0761424298526,76.99415157358193,79.48450449810332,63.153670866796624,64.99279146346394,0.2320793111844494,228.9218911095503,0.0872832054031178,83.35096638865025,154.76318,109.03718681755316,162069.262346584,114184.62993502404,393.24256,258.79581416607755,411214.4053952164,270420.67834591115,381.9989,186.1547568384844,397224.3329284129,192610.9045270852,3033.38189,1405.8675509890224,3136597.3589410638,1432251.0901321792,1081.51015,488.4103326138053,1113445.6080090478,492356.9076088109,1814.6717,770.8893759056991,1858881.3932057132,771799.3886714325,0.38204,100000,0,703469,7366.784652117454,0,0.0,0,0.0,33935,354.7627026347757,0,0.0,34874,362.2921291835965,1586399,0,56892,0,0,0,0,0,67,0.7016294558706488,0,0.0,2,0.0209441628618104,0,0.0,0.05901,0.1544602659407392,0.3153702762243687,0.01861,0.3421733505821475,0.6578266494178525,24.36806631516022,4.32015940198255,0.3186011585496675,0.240506329113924,0.2242008152756919,0.2166916970607166,11.250603092347324,5.910140245692517,19.930686581910862,12190.511879112844,53.10744630794823,13.348900636208375,16.88588553801657,11.699465743282673,11.173194390440598,0.553743831795752,0.7876895628902766,0.6828282828282828,0.5559808612440191,0.1019801980198019,0.7276923076923076,0.9476309226932668,0.8388625592417062,0.6848249027237354,0.1636363636363636,0.4864623623921452,0.6986111111111111,0.6208842897460018,0.5139593908629442,0.0848101265822784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024319805441556,0.0048890827391035,0.0072694783438585,0.0095271987798678,0.0119522723570614,0.0140039749273811,0.016163430239084,0.0182494431160975,0.0203791420708563,0.0226634700108604,0.0249835769420266,0.0270923298375488,0.0291613036091232,0.0309934403234456,0.0326806839902877,0.0346526965326596,0.0366278707910624,0.0386998191305794,0.0408501328332552,0.0426873838314224,0.0573193070602397,0.0704191365472381,0.0837715054894207,0.096272015346185,0.1086451067427605,0.124128135003922,0.136251023424458,0.1480260349978659,0.1592956373646383,0.1696729946466579,0.1826024986232736,0.1949819933180023,0.2067713444553484,0.2166686766140791,0.225451576241076,0.2353751778093883,0.2454436625233551,0.2544140528107876,0.2622413812713975,0.2699132311082545,0.2770638584120062,0.2839386015314438,0.2903130116993759,0.2961841235502674,0.3014089313572543,0.3069026504891593,0.3111946113052002,0.3161452742421919,0.3204366755474689,0.3252731245447924,0.3242545484036657,0.3230900790312125,0.3225305592411709,0.3207631776890586,0.3201090113032211,0.3185496874856028,0.3173861939705835,0.3181563693847978,0.3192696725527173,0.3197893152746426,0.3208075117370892,0.32210205213533,0.3225745524752891,0.3240054624012178,0.3250666858914282,0.3250958004223039,0.3275670438029012,0.3316348996666037,0.3358730381657947,0.3386661373560937,0.3401803607214428,0.3448969863884328,0.3464640780341399,0.3474238435502068,0.350244442394613,0.3524418604651163,0.3587253414264036,0.35880195599022,0.3646348160351455,0.3629770992366412,0.0,2.205190842148087,57.08010797141223,171.65693791311142,252.1297058517173,fqhc5_100Compliance_baseline_low_initial_treat_cost,79 -100000,95708,45194,428.28185731600286,6062,62.168261796297074,4740,48.93007899026205,1855,18.963931959710788,77.36399481233721,79.74730321011836,63.33329461681414,65.09668979800554,77.12982085885616,79.51785871321017,63.24593464041977,65.01412875986188,0.2341739534810472,229.44449690818655,0.0873599763943744,82.56103814366611,154.87846,109.01247624402134,161823.02419860408,113900.21298744238,393.05423,257.77040315520503,409999.7596857107,268650.0353932848,378.61672,183.6771793563111,392237.25289422,189253.9569024724,3143.83524,1423.3302876672435,3246823.692899235,1449223.6227778697,1178.29927,520.0923666582651,1214090.2432398545,526416.4875144243,1825.81362,766.8479549464251,1868611.3804488648,766786.7970883284,0.38101,100000,0,703993,7355.592009027458,0,0.0,0,0.0,33844,352.979897187278,0,0.0,34559,357.73394073640657,1597545,0,57312,0,0,0,0,0,66,0.6791490784469428,0,0.0,1,0.0104484473607221,0,0.0,0.06062,0.1591034356053647,0.3060046189376443,0.01855,0.329654737505912,0.670345262494088,24.73490996325334,4.486190423876192,0.3181434599156118,0.230590717299578,0.220675105485232,0.230590717299578,11.238383041384848,5.66343341265468,19.66378244795225,12180.787610101568,53.30348650750058,12.948416575539907,16.891982078446958,11.55612520054589,11.906962652967811,0.5540084388185654,0.7795059469350412,0.6843501326259946,0.5717017208413002,0.131747483989021,0.720164609053498,0.9104859335038364,0.8753462603878116,0.7268722466960352,0.1610169491525423,0.4967375886524822,0.7065527065527065,0.6242371403661726,0.5286935286935287,0.1236872812135355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023707966484635,0.0044317340553916,0.0071570697636644,0.0095534280545561,0.0118236024339119,0.0140085987326038,0.0161369292912807,0.0181379958331631,0.0204146338968835,0.0227116804390788,0.0247349098590971,0.027092811880578,0.0292840979222382,0.0312519319938176,0.0333243890356671,0.035267478649269,0.0370945854957166,0.0391005219629126,0.0411642411642411,0.0430728195296789,0.058223326927897,0.0715721163910404,0.0853623994209162,0.097894670424431,0.1098005734041656,0.1250660802266816,0.1367660937152067,0.1480969299831925,0.1588538608534124,0.1682725801438355,0.1811695579182988,0.1931917747466115,0.204332412623154,0.2142365022254787,0.2240239381304936,0.2339537407132655,0.2438839370377394,0.2529917221522404,0.2622560145256468,0.269885615489426,0.2772013833466347,0.2833272920734773,0.2902183561157465,0.2957121971095079,0.3010093158271896,0.3068880158622643,0.312145090681676,0.3166922910763523,0.3205625355462489,0.3247652783081602,0.3245036670875534,0.3230788238201136,0.3221051152332771,0.3215336255623486,0.3208665500992798,0.3191021865511085,0.3174345475466166,0.318682754004147,0.3193908594931761,0.3213517118719431,0.321955047362816,0.3224827586206896,0.3235441557356504,0.3236805648657103,0.3246750131913464,0.3262348494721752,0.3276501111934766,0.3313979034586655,0.3343747805939759,0.3347993185149966,0.3366777137149861,0.3397283441678558,0.3418479974771365,0.3413068398930072,0.3468054898248935,0.3476441042812724,0.346493265211333,0.3438013136288998,0.3513815238626849,0.3545631067961165,0.0,2.2401498176060928,53.179260057694336,173.76532806078134,269.2042737540569,fqhc5_100Compliance_baseline_low_initial_treat_cost,80 -100000,95670,44902,425.1698547088952,6150,63.081425734294974,4778,49.36761785303648,1854,19.02372739625797,77.31725194233033,79.72476472519172,63.30264576078415,65.08475756125151,77.0830554737273,79.49299132649634,63.21458064522492,65.00038590321152,0.2341964686030309,231.7733986953812,0.0880651155592318,84.37165803998425,155.92192,109.64983796769776,162978.67670116024,114612.33883944571,393.66265,258.30371688324146,410909.7000104526,269424.7418033255,376.3755,182.9246833839652,389817.4035747883,188444.94425321065,3123.54344,1431.8910220728972,3227439.8662067526,1459254.3967522697,1123.14186,500.95905446545606,1157917.7276053098,507575.0856751914,1817.945,772.7370235485697,1865479.690603115,776295.8570226433,0.38017,100000,0,708736,7408.121668234556,0,0.0,0,0.0,33977,354.5521061983903,0,0.0,34492,356.9980140064806,1589732,0,57057,0,0,0,0,0,63,0.658513640639699,0,0.0,0,0.0,0,0.0,0.0615,0.1617697345924191,0.3014634146341463,0.01854,0.3342105263157894,0.6657894736842105,24.58291639071106,4.337906642079314,0.3200083717036417,0.2427794056090414,0.2178735872750104,0.2193386354123064,11.146750736550285,5.677785529666142,19.906003318106496,12220.017846224144,54.33514605425256,14.008647650265058,17.243416470311857,11.52607548643194,11.557006447243706,0.5602762662201758,0.7836206896551724,0.670372792674951,0.6032660902977905,0.1097328244274809,0.7095310136157338,0.906318082788671,0.830238726790451,0.7377049180327869,0.1198347107438016,0.5031828703703703,0.703281027104137,0.6180555555555556,0.562107904642409,0.1066997518610421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021680326623238,0.00439081275668,0.0066168038401818,0.0089930799012285,0.0110291499211476,0.0134053173067128,0.0158835411013404,0.017979731938542,0.0202369503386466,0.0226520638888604,0.0245719151730293,0.0267990176433716,0.0290181788236262,0.0310950274762096,0.0330290010741138,0.0350025866528711,0.0371844710516767,0.0391002274355858,0.0412227401365074,0.0433037622358668,0.0579342193246405,0.0721653803055849,0.0852685507915844,0.0978019549869001,0.1101838859759249,0.1264075861485056,0.1387131697376241,0.1492017509292492,0.1598225737494656,0.1695955369595537,0.1829150059248087,0.1957474910413666,0.2072249553746353,0.217799671592775,0.2275400951709552,0.2379152487890309,0.2475586754907759,0.2558830146231721,0.2646641786812164,0.2723120249107061,0.2792521807538351,0.2864108890629933,0.2925183756080817,0.2978608664389718,0.3026635559443958,0.3078051968872939,0.3119405040628012,0.3164964320693997,0.3208765889144899,0.3254050918296043,0.3241367250030266,0.3225930609776213,0.3214637302056085,0.3208383250819128,0.319278631004594,0.3177190346223435,0.316084403146914,0.3172177167810355,0.317775350694563,0.3183746212796293,0.3191357909123247,0.3208362947168917,0.3209959341073898,0.320398766149582,0.3229048663501169,0.3247088924860321,0.3247955782216017,0.3269725692046952,0.3290562333473566,0.3335972134262191,0.3349580903790087,0.3371734975578679,0.341710758377425,0.3435592185592185,0.3469924812030075,0.3446487505893446,0.3504980842911877,0.3520728008088978,0.3502961766289714,0.3522130532633158,0.0,2.226879907316908,58.09410934798391,176.98025005963638,257.55193775358765,fqhc5_100Compliance_baseline_low_initial_treat_cost,81 -100000,95856,45342,429.112418627942,6014,61.51936237689869,4773,49.209230512435326,1893,19.36237689868136,77.4717338221379,79.75781393921204,63.40399372213196,65.09039412903337,77.23386916936822,79.52248170697236,63.31531843097654,65.00543587175872,0.2378646527696872,235.3322322396849,0.0886752911554182,84.9582572746499,156.2715,109.91711727877887,163027.35353029546,114669.00066639423,396.58896,260.6634707985247,413170.19278918375,271368.4389068234,381.72014,185.66323678676545,394818.9576030713,191081.8157173117,3157.04372,1454.3245579693944,3254988.785261225,1478860.3425680744,1181.64745,524.3419446853131,1220099.399098648,534433.8711681897,1855.01716,783.8883786751577,1899095.580871307,787075.2454332339,0.38266,100000,0,710325,7410.334251377066,0,0.0,0,0.0,34194,356.1383742280087,0,0.0,35022,361.9074445000835,1590111,0,57033,0,0,0,0,0,63,0.6572358537806711,0,0.0,0,0.0,0,0.0,0.06014,0.1571630167772957,0.3147655470568673,0.01893,0.3381351907551053,0.6618648092448948,24.18708610822692,4.355267861504851,0.3079824010056568,0.2352817934213283,0.2331866750471401,0.2235491305258747,11.232379825102395,5.800796291329596,20.18297354145092,12171.793018550095,54.14173511880357,13.367188850505237,16.585083241478163,12.541688954964528,11.647774071855638,0.5610727006075843,0.7791629563668745,0.689795918367347,0.5992812219227314,0.1143392689784442,0.7255496588324488,0.9288990825688074,0.8482384823848238,0.7132616487455197,0.1702127659574468,0.4982628836132021,0.6841339155749636,0.6366939146230699,0.5611510791366906,0.0985576923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022674359753011,0.0046803294465662,0.0068344521284146,0.0088205440519691,0.0112490854402081,0.0134707540162992,0.0153817944747779,0.0175134385295647,0.0200457488307497,0.0220076904197005,0.0244474487392203,0.0262960873801343,0.0285071499013806,0.030630723325445,0.0326560905464328,0.0348099958694754,0.037041634341867,0.0389893043694552,0.041056631985546,0.0431683127100916,0.0576758639387682,0.0717466755875219,0.0855576864631475,0.0978459598613008,0.1095581414959102,0.1252444942537242,0.1369762780882493,0.1483573769096557,0.1586538974835314,0.1693229440198926,0.1815961087316789,0.1937788441792851,0.2050733529520355,0.2157402251411226,0.2254283831282952,0.2355340836226148,0.2452128192846242,0.2545703633831918,0.263345074809437,0.2709507746841232,0.2787636674325432,0.2857359476514294,0.2919618399924436,0.2970616725863739,0.3024415092966561,0.3071745015998031,0.3123493035167718,0.3160474388602484,0.3201860945980873,0.3236231044650379,0.3230080765457648,0.3222149104768172,0.3210164256633441,0.3195877772500252,0.318963092365316,0.3170579172958709,0.314615420995381,0.3156853770963418,0.316093712809004,0.3172208119574672,0.3178479549606651,0.3198443426819441,0.320426791147418,0.3220553887220554,0.323585626911315,0.3258103801207473,0.3260967887833559,0.3279306797992706,0.331417093780302,0.3344699196551048,0.3372844827586206,0.3408803706823926,0.3444904099285445,0.345797233622131,0.3473584905660377,0.3476604357661626,0.3413146255909715,0.3458601286173633,0.3402399127589967,0.3356086461888509,0.0,2.2679034658919006,57.678602998308335,179.22754873457058,253.2763013505072,fqhc5_100Compliance_baseline_low_initial_treat_cost,82 -100000,95732,44973,425.8868507917937,6011,61.48414323319266,4691,48.33284586136297,1871,19.14720260727865,77.34438518034166,79.69602705322555,63.33412346583962,65.07181034705722,77.11561535108542,79.46965458790707,63.24979788388402,64.99071870486509,0.2287698292562368,226.37246531847663,0.0843255819555963,81.09164219213483,155.79102,109.65678518915632,162736.61889441358,114545.59101361752,394.17042,258.69225793789167,411088.24635440606,269570.0893514098,376.54538,183.2865755826839,387887.0492625246,187377.6942348889,3093.46758,1409.910226063778,3191653.4909956963,1433038.446980924,1141.78426,505.5602922004699,1179533.9907241047,514964.8448334034,1836.88632,761.678139258263,1883283.416203568,766994.2086902478,0.38117,100000,0,708141,7397.119040655162,0,0.0,0,0.0,34022,354.69853340575776,0,0.0,34393,354.04044624576943,1589846,0,57066,0,0,0,0,0,78,0.7938829231604897,0,0.0,0,0.0,0,0.0,0.06011,0.1576986646378256,0.3112626850773581,0.01871,0.330575882914413,0.669424117085587,24.6628367894956,4.35027867512321,0.3231720315497761,0.2334257088040929,0.215732253250906,0.2276700063952249,11.097837770327684,5.719782130254519,19.810114513183237,12154.49165335632,53.21186380855215,13.103854941633,17.161513778585824,11.1955741930467,11.75092089528661,0.5634193135791942,0.7726027397260274,0.6985488126649076,0.599802371541502,0.1226591760299625,0.7380191693290735,0.914004914004914,0.8743718592964824,0.7424892703862661,0.1448598130841121,0.4998546088979354,0.688953488372093,0.6359570661896243,0.5571245186136072,0.117096018735363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00213727158543,0.0042176553486155,0.0063819641027201,0.0087951819465179,0.0110315798035667,0.0131829425956654,0.0155214936507612,0.0180009184142048,0.0203124521053223,0.0227054128721989,0.0249815558652348,0.0269626710184643,0.0289947459875178,0.0311219130398961,0.032989818339368,0.0350525478200663,0.0370558218008301,0.0390442709143514,0.0410093325850637,0.0430697761621548,0.0576579774295587,0.0716513185433235,0.0850927703134996,0.0975971397024028,0.1094603429005251,0.1249682794789375,0.1367348237390234,0.1474956381122601,0.1579413900636507,0.1675350013936236,0.180740788581393,0.1928871967378019,0.2045966014720431,0.2149743141326921,0.2238522021223951,0.2347380422630314,0.2448312412831241,0.2548605098334664,0.2628880596168461,0.2707031160565057,0.2778368876347319,0.2841788880312492,0.2901149860407893,0.2953329975777634,0.3009377353448485,0.305372604158958,0.3102536799248356,0.3152838650494343,0.3201404818371499,0.3240987719529909,0.3231674476221253,0.3223374693922469,0.3209586068922764,0.3193715764066542,0.3193732066663693,0.3185679239497087,0.317043003932513,0.317505664466555,0.3184241098886079,0.3193445315149676,0.3207504774744411,0.3216520897909222,0.3232866957104557,0.3231812383914785,0.3235202004384591,0.324202460383653,0.3241241811449729,0.3264240556097254,0.3305509767474485,0.3325654367081066,0.3349393209399572,0.3376147762857597,0.3380847723704867,0.3423274042809768,0.3422159887798036,0.3447829667097988,0.3498470948012232,0.3512625744200369,0.3534626038781163,0.3491879350348028,0.0,2.569815597600796,54.41225153430714,177.33503601988065,255.78044960983175,fqhc5_100Compliance_baseline_low_initial_treat_cost,83 -100000,95672,45178,427.4709423864872,6057,62.04532151517686,4742,49.000752571285226,1886,19.28463918387825,77.28108161739658,79.66857315595225,63.29287913429015,65.05577602322033,77.04869456368318,79.43852343712722,63.20727410421213,64.97379234448276,0.2323870537133956,230.049718825029,0.0856050300780211,81.98367873757206,154.14608,108.48527445812026,161119.32435822394,113392.92003733615,392.10523,257.0077158739001,409292.9801822895,268083.9387426835,380.06794,184.536844071892,393998.76661928254,190274.5680233537,3120.30502,1419.4200045238535,3225977.140647212,1448147.6654860908,1130.58919,504.6546330836953,1164923.9798478133,510673.46045205946,1847.85828,769.6340379168745,1891965.4862446692,771323.3601176083,0.38064,100000,0,700664,7323.605652646543,0,0.0,0,0.0,33817,352.8932184965298,0,0.0,34606,358.3911698302534,1595559,0,57301,0,0,0,0,0,84,0.8779998327619366,0,0.0,1,0.0104523789614516,0,0.0,0.06057,0.1591267339218159,0.3113752682846293,0.01886,0.3468809073724007,0.6531190926275993,24.545339259576448,4.3971541197772686,0.321383382539013,0.233024040489245,0.2165752846900042,0.2290172922817376,11.2909973975635,5.820027662470546,19.942424404479677,12235.54792704221,53.86264131901402,13.2909836560328,17.24670054790012,11.442469765162333,11.882487349918764,0.5619991564740616,0.7936651583710407,0.7034120734908137,0.5881207400194742,0.1031307550644567,0.7482732156561781,0.9447115384615384,0.8980582524271845,0.7478632478632479,0.1535269709543568,0.4914219249781913,0.7024673439767779,0.6312949640287769,0.5409836065573771,0.0887573964497041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312414526667,0.0048459534261296,0.0071952667525903,0.0094076053275898,0.0115127229827309,0.0138181744124475,0.0157636070722107,0.0178359946093845,0.0200971121901354,0.0222315479175836,0.024566548071895,0.0269004887264364,0.0291341011929247,0.0311057533794922,0.0332325348580392,0.0353191753344775,0.0373316759892272,0.0394710894767978,0.0417641857804129,0.0437565144882218,0.0578691127920096,0.0719566082385709,0.085809654767028,0.0987899831649831,0.1114510904544351,0.1265738409124574,0.1389578954073508,0.1500607145139643,0.1600603073106575,0.1703068960333311,0.1827535997411422,0.1950429165944165,0.2060703745249011,0.2172741905460597,0.2268936263978405,0.2372988499373398,0.2476390580819652,0.256605771180141,0.2646290194296102,0.2722061066076567,0.2791993420519176,0.2855067710041704,0.2917625020747872,0.2973871905093537,0.3026214950428806,0.3073174342714027,0.3124686779593064,0.3169137045486407,0.3213581655945217,0.3257840181923951,0.3242444684295736,0.3225935423387652,0.3224242938092613,0.3210559870175032,0.319853379425438,0.3177402274506192,0.3160689939440058,0.3164338253443254,0.3167457232392074,0.3177820677820678,0.3187246507435782,0.3204573424907698,0.321474433193693,0.3216869635554756,0.3230483001908812,0.3233956939799331,0.3260596007550191,0.3301967223467744,0.334024458813607,0.3370001191374449,0.342038100446632,0.344889832758163,0.3488401412002017,0.3508904888215233,0.3521535580524345,0.356225181032469,0.3646071700991609,0.3643488745980707,0.3678938819707634,0.372021521906226,0.0,2.236240948548377,57.41434069932059,172.01333910952872,260.78615684511925,fqhc5_100Compliance_baseline_low_initial_treat_cost,84 -100000,95732,44880,424.5288931600719,6071,62.27802615635315,4765,49.252078719759325,1938,19.89930221869385,77.3612597271838,79.72712554742861,63.34108899169471,65.08925390271634,77.12054297688192,79.48627912647187,63.25145846874226,65.00188492450307,0.2407167503018854,240.8464209567427,0.0896305229524543,87.36897821326295,155.76286,109.58732226634515,162707.20344294488,114473.0312396536,394.77328,259.84071062839286,411877.136171813,270928.89590564586,382.70276,187.252804740158,396489.7108594827,193045.5558701637,3128.101,1443.4570415695446,3236342.6127104834,1476592.5203375504,1101.70661,490.9639399503031,1139462.6457192996,501491.361248384,1890.49872,796.6370941887582,1943295.6796055653,804835.0195812425,0.37937,100000,0,708013,7395.781974679313,0,0.0,0,0.0,34125,355.93114110224377,0,0.0,34970,362.03150461705593,1589086,0,57028,0,0,0,0,0,57,0.5954121923703672,0,0.0,1,0.0104458279363222,0,0.0,0.06071,0.1600284682499934,0.3192225333552956,0.01938,0.33449037551278,0.66550962448722,24.585783526628976,4.250933090481922,0.3250786988457502,0.2310598111227702,0.2287513116474291,0.2151101783840503,11.011037819825129,5.742544324752916,20.73369258623912,12127.929075356444,54.1417615832811,13.16438001072617,17.472594434233276,12.178491354890122,11.326295783431538,0.5588667366211962,0.7865576748410535,0.6726920593931569,0.5779816513761468,0.1219512195121951,0.7213740458015268,0.9048780487804878,0.8553299492385786,0.7017543859649122,0.167420814479638,0.4972503617945007,0.7163531114327062,0.6103896103896104,0.5341614906832298,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0048361586503366,0.0069817945647541,0.0095396775406122,0.0118173497406691,0.0141748640557218,0.0163563314502477,0.0185531219686526,0.0207244880223296,0.0229422604422604,0.0249248972142761,0.027114466183947,0.0290030957205006,0.0314196532506464,0.0334757393763028,0.0355529365547043,0.0375812932355743,0.0395379969490364,0.0412719539966932,0.0433020411140169,0.0575736376640598,0.0712999790663596,0.0847258499333899,0.0980010725439269,0.1105337493148952,0.1260332762520876,0.1376399728537495,0.1486407405437037,0.15861317610869,0.1688837912294054,0.1813522825150732,0.1940700517058607,0.2053509305966255,0.2156191933544649,0.225559281042159,0.2361755104299231,0.2452030816228691,0.2540955976538798,0.2621454965881526,0.2695464066201971,0.2761841998774467,0.2825891344232409,0.2885293213162065,0.294089472171664,0.3000667030501485,0.3053860538359332,0.3095455283841703,0.31415422948819,0.3185760517799352,0.3223188482297206,0.3209398086472084,0.319541019650955,0.3185067402133228,0.316541255650717,0.3151248644392613,0.3126263554493659,0.3113828340029738,0.312708124866718,0.3143666587022562,0.3151467542669428,0.3167578505583452,0.3176489226869455,0.3180874053248851,0.3185856551415463,0.3191791709819601,0.3198357268042585,0.3212731852530341,0.323823966132752,0.3274174237622367,0.3317529880478088,0.3328324910076037,0.3399598181241408,0.3427356307461379,0.3429198516612427,0.3495245198582882,0.3518889019653995,0.3563708326990409,0.3638203156616754,0.3712206047032474,0.3763052208835341,0.0,2.058986067343753,57.35351890567541,180.66358813654807,253.70338879130728,fqhc5_100Compliance_baseline_low_initial_treat_cost,85 -100000,95659,44978,426.358209891385,5910,60.72612090864424,4587,47.44979562822108,1779,18.304602807890525,77.2430810454354,79.64816863711269,63.27207635196621,65.05048911383892,77.02194853950904,79.42693483456532,63.19077683674824,64.97149768846684,0.2211325059263629,221.23380254737413,0.0812995152179709,78.99142537208093,155.3706,109.39994634982465,162421.30902476504,114364.50971662326,394.25319,259.501641478341,411622.63874805294,270757.44874468347,378.82826,184.20697627670452,392747.7916348697,190083.10284164923,3005.69546,1361.6368038180751,3111791.917122278,1393191.7034649225,1066.71578,467.9592864474026,1103576.4434083567,477694.3885953116,1749.49942,725.1833026012832,1801468.717005196,733253.5221000114,0.37891,100000,0,706230,7382.786773852957,0,0.0,0,0.0,34092,355.84733271307454,0,0.0,34612,358.61758956292664,1585407,0,56858,0,0,0,0,0,67,0.6899507626046686,0,0.0,0,0.0,0,0.0,0.0591,0.1559737140745823,0.3010152284263959,0.01779,0.3340332741075755,0.6659667258924244,24.550403717180732,4.486717093719909,0.3270111183780249,0.2317418792238936,0.2204054937867887,0.2208415086112927,11.119984695745648,5.449941488190207,18.8471950833093,12099.674997217257,51.91627551933488,12.955186913218247,16.861941198128193,11.084880520651751,11.0142668873367,0.5498146936995858,0.7920978363123237,0.6613333333333333,0.5657764589515332,0.1145113524185587,0.7448389760528489,0.9301204819277108,0.8489583333333334,0.7453703703703703,0.1479591836734693,0.4798578199052132,0.7037037037037037,0.5967741935483871,0.5169811320754717,0.1064871481028151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002533646829901,0.0045341123486093,0.0065277199679197,0.0087178288745059,0.0109446360094799,0.0134426396456031,0.0155493244965587,0.0176645972880248,0.0201141197643979,0.022518278821144,0.0244998000225615,0.0268030438399211,0.0288361665586853,0.0310085505305449,0.0330088870080406,0.0349912108365215,0.0371268154225454,0.0391302091442212,0.0409918765147023,0.0427335279399499,0.0565848459199348,0.0710687014905049,0.085259842519685,0.098026419662123,0.1098372078292265,0.1249126595947405,0.1363375613487156,0.1476573743403869,0.1588796045663175,0.1690488718978533,0.1809256661991584,0.1925319748536744,0.2038813804820143,0.2149865311754013,0.2248156842000859,0.2342226413001275,0.2439831427389695,0.252743909310135,0.261314300002273,0.2687126692423217,0.275166852057842,0.2816151162518439,0.2875497347480106,0.2932469713326136,0.2989843702487381,0.3046660002714943,0.3096792790986226,0.3136480095856012,0.3179571022616684,0.3226254213761649,0.320965524677215,0.32060017895244,0.3195966433960933,0.3177924408172715,0.3170023670224643,0.3156457994663068,0.3142172726695856,0.3148852135275241,0.3162947498117598,0.3176375838926174,0.3177867248645394,0.3177033682872577,0.318285942458441,0.3174752708431465,0.3182344149269562,0.3201330504701291,0.3203111544864803,0.3240775840283043,0.3260861892492853,0.3309819639278557,0.3372296364473078,0.3407875026749412,0.3460953346855984,0.3486252584820403,0.3480783866057839,0.3532000951701166,0.3589424572317263,0.3590376310919185,0.353726362625139,0.3502715283165244,0.0,1.9091573713155423,53.30337033928326,168.3310419682896,258.0584132505147,fqhc5_100Compliance_baseline_low_initial_treat_cost,86 -100000,95833,45289,428.92323103732537,6078,62.44195631984807,4733,48.960170296244506,1862,19.200066782840985,77.44904619750217,79.7750068747065,63.38601454967061,65.10665161960937,77.22462517934278,79.54824201894483,63.30379651226647,65.02504797046787,0.2244210181593899,226.7648557616724,0.0822180374041394,81.60364914149909,155.8513,109.6222436341704,162627.77957488547,114388.59644816552,393.82404,258.1565055787791,410478.0190539793,268922.3280930007,375.02917,181.5989158127257,388231.9764590486,187112.35556573755,3096.52497,1397.1930260213387,3204606.5447184164,1432079.5813072058,1112.45025,488.4631787974917,1149248.5156470109,498169.731480063,1828.36246,759.2728098345432,1885591.831623762,774309.2607723238,0.38262,100000,0,708415,7392.1717988584305,0,0.0,0,0.0,33998,354.282971419031,0,0.0,34221,354.12644913547524,1597338,0,57229,0,0,0,0,0,63,0.6365239531267934,0,0.0,0,0.0,0,0.0,0.06078,0.1588521248235847,0.3063507732806844,0.01862,0.3328625235404896,0.6671374764595104,24.872730127146216,4.378824378669334,0.3093175575744771,0.234946122966406,0.2294527783646735,0.2262835410944432,11.017475666507757,5.595498362342045,19.645627376546987,12230.84907484193,53.124325481880994,13.13098226109214,16.45232369926672,11.88254646691074,11.658473054611392,0.5467990703570674,0.7508992805755396,0.694672131147541,0.5598526703499079,0.1195144724556489,0.7368852459016394,0.9206349206349206,0.8564102564102564,0.7787234042553192,0.1566820276497695,0.4807856532877882,0.6634877384196185,0.6359404096834265,0.4994124559341951,0.1100702576112412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.00468308110245,0.0069404279930595,0.0094269664062738,0.012050398120748,0.0143565515766751,0.0164656464422988,0.0187182967778809,0.0211037301992846,0.0232167889410729,0.0252497822411231,0.0272885878489326,0.0292043585526315,0.0311962688027016,0.0331060942028238,0.0349294901596156,0.0368346425725256,0.0388515615279333,0.0408095416199143,0.0429097874289521,0.0574441674403079,0.0714681498363843,0.0847001121369957,0.0972957639939485,0.1102377139003624,0.1253249635406759,0.1376389904707391,0.149560834520746,0.159992319344584,0.1700359773856433,0.1834525025536261,0.1955195022629322,0.20741609135513,0.2170772688589696,0.227457824316463,0.2375921403074475,0.2463116168758142,0.2556894694317264,0.2639376174200412,0.2721021611001964,0.2786542789543539,0.2855509804150287,0.2910806984426616,0.296538374218834,0.3017999467041353,0.3076998685358332,0.3123028391167192,0.3169009621113209,0.3215064445791993,0.3243516778170633,0.3239143845720569,0.3229769380535827,0.3224475475405234,0.3214347425411819,0.3208370304643596,0.319125916218399,0.3174143601202184,0.3188472020497087,0.3195710091805392,0.319755889866591,0.3198934247545229,0.320837753939251,0.3219752262584977,0.3226661912508635,0.3243256192803411,0.324224213852769,0.3256757140020987,0.3304692870086859,0.3333566629339305,0.3381964433579117,0.3420575161026943,0.3437748449674034,0.3452523094325394,0.3502726446531354,0.3488699240363875,0.3513481690804191,0.354951397326853,0.3614262560777957,0.361247947454844,0.3673084182710456,0.0,1.5457356662204025,54.15981092279987,172.14480639031638,267.8745081326855,fqhc5_100Compliance_baseline_low_initial_treat_cost,87 -100000,95807,45344,429.2588224242488,5956,60.94544239982464,4660,48.05494379325101,1840,18.871272453996053,77.3497797498425,79.68305360629618,63.33168066437421,65.05996982758158,77.12409374607554,79.45881767152994,63.24846676665897,64.97983814679274,0.2256860037669525,224.23593476624148,0.0832138977152396,80.13168078883837,155.6082,109.44871762410888,162418.40366570294,114238.74834209283,392.02219,257.5670466995987,408620.91496445984,268281.3329919512,383.67246,186.86028491181173,396439.6442848644,192056.73107686057,3064.29135,1404.855487748498,3161947.7804335803,1429886.5925751748,1097.29802,487.0899733582178,1134544.3756719236,497630.5315459385,1801.10848,753.0665959236087,1848461.3232853548,756938.5769719526,0.38155,100000,0,707310,7382.654712077406,0,0.0,0,0.0,33813,352.3333368125502,0,0.0,34955,360.8713350799002,1590791,0,57164,0,0,0,0,0,67,0.6888849457764046,0,0.0,0,0.0,0,0.0,0.05956,0.1561001179399816,0.3089321692411014,0.0184,0.3311866044115279,0.6688133955884721,24.40303846237161,4.425236100101542,0.3354077253218884,0.223175965665236,0.2218884120171673,0.2195278969957081,11.219598902904911,5.650671083769981,19.53964471533344,12227.670134878108,52.878535653456666,12.436070412424918,17.600962199328684,11.530507499138729,11.31099554256435,0.567381974248927,0.8125,0.6948176583493282,0.5686653771760155,0.1221896383186705,0.7384370015948963,0.9325,0.8779904306220095,0.6681222707423581,0.1594202898550724,0.5044039929536113,0.7375,0.6279475982532751,0.5403726708074534,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020463156188585,0.0042888864104149,0.0067083443278462,0.0090115717928659,0.0113009866748041,0.0136041953057379,0.0158849918433931,0.018108877841634,0.0203603953514519,0.0224669648614622,0.0245512603663724,0.0266646131731608,0.0288622692920672,0.031076878719855,0.0332250244984269,0.0351928581023134,0.0374192613448161,0.0392490405559589,0.0410298502810477,0.0432288358824325,0.05750412085046,0.0719513980383545,0.0852872430744075,0.0982566021080507,0.1106778106851885,0.1259026654402047,0.1374460366791476,0.1486755425007715,0.1598863599953006,0.17001287001287,0.1827378900189622,0.1948400502142764,0.206354558705158,0.2167349838771383,0.2266332266332266,0.2367415219968315,0.2458824317086234,0.2548075841748948,0.2643868566760461,0.2724431265241633,0.2800666219436026,0.2866595742193437,0.2927114875094625,0.2980832545165036,0.3039188319963105,0.3094980181688372,0.3144103166470897,0.3188462907408349,0.3230741377749615,0.3268495318475537,0.3253065564723459,0.3242975343144678,0.3226279223798988,0.3209213440852431,0.3200404436910816,0.3185050108798921,0.3161579522595156,0.3168576964760747,0.3180388940155166,0.3182386790092569,0.319843293094399,0.3197562857312417,0.3208048913271075,0.3211533736850334,0.3223164316767948,0.3232107511199083,0.3232024564296477,0.327706088699574,0.3308226104543711,0.3313136876893418,0.3344049990943669,0.3369915053025906,0.3430294653515109,0.3422378262860632,0.3435386927122464,0.3485008818342152,0.3509549274255156,0.3536266827406067,0.3564437194127243,0.3637065637065637,0.0,2.2337181894170977,54.899739137021015,176.814146179761,251.1813056676344,fqhc5_100Compliance_baseline_low_initial_treat_cost,88 -100000,95789,45419,429.9763020806147,6111,62.60635354790216,4788,49.29584816628214,1929,19.65778951654157,77.41775944651599,79.74267624395014,63.37436231324406,65.09376311594929,77.18367116823056,79.51397026255147,63.28809558453145,65.012369862314,0.2340882782854265,228.70598139867585,0.0862667287126157,81.39325363528371,156.43254,110.0130059515938,163308.81416446564,114848.68170487836,397.78157,261.0212606491732,414517.282777772,271748.90186582215,383.9972,186.6222942100684,396179.5195690528,191269.29915880383,3130.03035,1420.3955890035152,3222557.7884725803,1438337.9599043224,1153.0522,508.2246230586927,1182684.3165707963,509879.4244553803,1882.32062,773.4586431904314,1920231.6758709247,770827.9665643687,0.38315,100000,0,711057,7423.12791656662,0,0.0,0,0.0,34272,357.01385336520894,0,0.0,34989,360.6259591393584,1588917,0,57030,0,0,0,0,0,81,0.835168965121256,0,0.0,1,0.0104396120640157,0,0.0,0.06111,0.1594936708860759,0.3156602847324496,0.01929,0.3341645885286783,0.6658354114713217,24.877326504513505,4.391973638272405,0.3201754385964912,0.2449874686716792,0.2157477025898078,0.2190893901420217,11.595854160209242,6.186993994479655,20.16869242161297,12275.797372029165,53.74986345634072,13.819119839031856,17.23370805946968,11.340037209006042,11.356998348833152,0.556390977443609,0.782608695652174,0.6823222439660795,0.5624394966118103,0.1134413727359389,0.7413096200485044,0.917910447761194,0.8631840796019901,0.7316017316017316,0.1584158415841584,0.4919740918051253,0.7120622568093385,0.6180371352785146,0.513715710723192,0.1027154663518299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0047641734159123,0.0069710099339428,0.0092827689870203,0.0115817945172049,0.014017264546602,0.0163388033839567,0.0187086633461255,0.0208099102598172,0.022730994391452,0.0246924969249692,0.0266891128949475,0.0286689349629431,0.030575687695602,0.0329023344056751,0.0348378434207808,0.0369971747612,0.0390536715842292,0.0408780204026511,0.0432664279170483,0.0578335628730019,0.0717772876004892,0.0854848684969129,0.0985965796882221,0.1109894045036125,0.1270337657947005,0.1392025592678121,0.1504858497586698,0.1609351159291941,0.1708053906969768,0.1835437592755898,0.195702432911283,0.2070425746766995,0.2172033148809329,0.2271523833587836,0.2387716270631444,0.2488240408408944,0.2581333453120262,0.2659485297449141,0.273386395864782,0.280745327264746,0.2872919147346548,0.2936661628566031,0.2993718217170206,0.3043921254685055,0.3096322371012209,0.3143752966747445,0.3181968295904888,0.3224884959412646,0.3263170365689914,0.3249039778679057,0.3245348869163758,0.3240369604658031,0.3234013095272434,0.3219408719386468,0.3199333057990302,0.3177415021886506,0.3185630508141401,0.319654133546663,0.3208584699161817,0.3207229771406142,0.3211469252099353,0.3218503526269666,0.3223287579809125,0.3245622451427201,0.3245301655792675,0.3263776509666979,0.3306825297432686,0.3332517995667062,0.3370608922432528,0.338322674286751,0.3410113846968493,0.3420440982473773,0.3429589207215401,0.3380746043707611,0.3395326657129232,0.3410188502882069,0.3441784325762226,0.343500961802693,0.3510267338240992,0.0,2.472891078055463,53.78414043959547,175.88585434206811,268.78421671803915,fqhc5_100Compliance_baseline_low_initial_treat_cost,89 -100000,95721,44636,421.66295797160495,6028,61.50165585399233,4729,48.80851641750504,1817,18.59571045016245,77.3893283971574,79.75139527426175,63.35181630130408,65.09404269819603,77.15439284627409,79.51728035967922,63.26378930172267,65.00876016697532,0.2349355508833071,234.11491458253408,0.0880269995814089,85.28253122071305,155.14796,109.06486629791743,162083.51354457226,113940.37494167156,390.96202,257.1742494004146,407859.2053990242,268090.7422617969,373.7391,182.69848143526272,386839.06352837937,188101.4632922409,3110.01389,1431.5871977811191,3210991.4229897303,1457534.300499492,1129.63172,502.767783276444,1165501.833453474,510615.302051215,1784.3982,758.1834378367449,1828901.641228153,762179.6358421529,0.37899,100000,0,705218,7367.432433844193,0,0.0,0,0.0,33747,351.9499378401813,0,0.0,34235,354.0393435087389,1596130,0,57250,0,0,0,0,0,78,0.8148682107374557,0,0.0,0,0.0,0,0.0,0.06028,0.1590543286102535,0.3014266755142668,0.01817,0.3351282863477985,0.6648717136522014,24.57378688423219,4.295328781431635,0.3231127088179319,0.2326073165574117,0.216959187989004,0.2273207866356523,11.36896701085349,6.023731630675479,19.40228400744047,12170.35119763426,53.46242719155764,13.164019609535364,17.27044175197084,11.198207104762346,11.82975872528907,0.564389934447029,0.7972727272727272,0.7028795811518325,0.5799220272904484,0.1144186046511628,0.7290715372907154,0.933649289099526,0.8472222222222222,0.7402597402597403,0.1179039301310043,0.5010248901903368,0.7123893805309734,0.6459854014598541,0.5333333333333333,0.1134751773049645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901880753922,0.0048851186313559,0.0070701845145714,0.0093518678350578,0.011569273311374,0.0139038739490666,0.0163867601500081,0.0187343115446623,0.0209365771914945,0.023186566935096,0.0255149093144789,0.0278142569869085,0.0299630086313193,0.0318991250643335,0.0337231606955015,0.0357655860864533,0.0378805917613077,0.0399132861039944,0.0417822955317888,0.0436680312926445,0.0583806699523849,0.072568408936326,0.0854871192414198,0.0978938624438766,0.1098460889732237,0.1251982993844787,0.1369605804726948,0.1479691243013042,0.1587764565103582,0.1691383840008578,0.1820805513676502,0.193961553855973,0.2056860186997173,0.2153831013329542,0.2246831264853446,0.2351390273623573,0.2448767747120278,0.2538327428153647,0.2617483176159511,0.2689923812797158,0.2765010004742132,0.2826193705279895,0.288658452952444,0.2940746772686992,0.3002051543513359,0.3053301648669613,0.3110346553234079,0.3162873490146217,0.3208404536274662,0.3258527709286534,0.3245034002634196,0.322749505385799,0.3217526902868702,0.3204001212488633,0.3196530506338498,0.3182359588308951,0.3166012206084118,0.3165424105683082,0.3167534810880741,0.3165728936685421,0.3173912231210417,0.3179292133060066,0.3189857011455807,0.3197099832682655,0.3200768491834774,0.3204629197156053,0.3215177659212169,0.325443971985993,0.328551984085436,0.3324395725720594,0.3361592166107535,0.3390387366859202,0.341233419249387,0.3434381614756577,0.343767572633552,0.3477594339622641,0.3499394306480921,0.3501102867455384,0.3546866333887964,0.3609926328034121,0.0,2.3106944035618304,57.36899397015035,169.70031224513448,258.16972468166074,fqhc5_100Compliance_baseline_low_initial_treat_cost,90 -100000,95678,45079,427.76813896611554,6087,62.48040301845774,4795,49.59342795626999,1858,19.09529881477456,77.35982293729873,79.73659470235245,63.33991942654043,65.09032104670288,77.13363007372374,79.50977548131219,63.25548784591797,65.0077705581573,0.2261928635749939,226.81922104025887,0.0844315806224642,82.55048854557856,154.9361,108.95630673196426,161934.4676937227,113877.66605903582,392.60302,257.7571640771544,409819.8436422166,268883.1254595146,378.79372,184.36356820023968,392633.4685089571,190137.4044240482,3124.77016,1428.543374904366,3233606.2522209915,1460810.9536198133,1135.0678,503.0348940240491,1174624.4695750328,514077.37932891736,1819.38072,762.8512621690058,1871913.9405087896,772195.9753696956,0.38218,100000,0,704255,7360.65762244194,0,0.0,0,0.0,33851,353.2682539350739,0,0.0,34676,359.1630259829846,1595677,0,57222,0,0,0,0,0,70,0.7211689207550325,0,0.0,0,0.0,0,0.0,0.06087,0.1592705008111361,0.3052406768523082,0.01858,0.3291020216267042,0.6708979783732957,24.565582543887228,4.323243560621215,0.3363920750782064,0.2281543274244004,0.2206465067778936,0.2148070907194994,11.246887795422706,5.897590202917383,19.684703054410075,12229.043291340651,54.27058412125203,13.079994457220778,18.207114147959537,11.866207913830737,11.117267602240991,0.5639207507820646,0.7861060329067642,0.7017978921264724,0.5661625708884688,0.1097087378640776,0.740139211136891,0.9338422391857506,0.8628841607565012,0.7245283018867924,0.1556603773584905,0.4988577955454026,0.703281027104137,0.6445378151260505,0.5132408575031526,0.097799511002445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.004530665612552,0.0068381271242327,0.0087851150697731,0.0109402960793883,0.0128963306020662,0.0152131160904431,0.0173448149206219,0.0195918200576109,0.0220660446845077,0.0240334378265412,0.0262221082328802,0.0283984623923366,0.030394761228146,0.0326563450886548,0.034571499441895,0.0365746348230276,0.0385305495918769,0.0405343590809855,0.0425194880987119,0.0570628610829615,0.0711481074289304,0.0849907116843861,0.0980051764408812,0.109593519944312,0.1256890732295711,0.1386055595062462,0.1501709392606477,0.160974097473889,0.1708044866634465,0.1839019764208893,0.1963765526352836,0.2072650502764114,0.2168883051496744,0.226709100519778,0.2374432258779218,0.2475222108129827,0.2562029927261689,0.2643756379720993,0.2721174868079164,0.2788551604509974,0.2847170252572498,0.2916947608739368,0.2978483937786611,0.3035757605162292,0.3084865490167122,0.313624550179928,0.318252274228795,0.3220843030773209,0.3252511668380666,0.324758064516129,0.3235876288659793,0.3227855231657513,0.3224996391975754,0.3216631819327669,0.3204195205479452,0.3181775050607287,0.3183787331801772,0.3183620453923981,0.3190755987355562,0.3200224761191234,0.3208818126148193,0.3209317915200268,0.3223572513627021,0.3242841026379587,0.3255602350127385,0.3267576849933297,0.3310342665454431,0.3323424494649227,0.3352333452084075,0.3383489408128011,0.3414686021162333,0.343900278410529,0.3472147933063345,0.3530462579917262,0.3593992132554536,0.3594512195121951,0.3566981321550512,0.3596467754883596,0.3624620060790273,0.0,1.9991245573894092,56.78130557216895,176.2659539168685,264.58541914578177,fqhc5_100Compliance_baseline_low_initial_treat_cost,91 -100000,95848,44997,425.96611301226943,6096,62.400884734162425,4778,49.20290459894834,1910,19.510057591186044,77.34109898624328,79.63126249378938,63.34986309044478,65.04389746567391,77.10827786567278,79.40355597966419,63.26303450693758,64.96224270595556,0.2328211205705059,227.70651412518816,0.0868285835071986,81.65475971834724,154.43384,108.74762153146816,161123.69585176528,113458.41491890092,395.85853,260.12456520727073,412356.9714548034,270745.6536335266,379.58101,184.7503068015945,392389.585593857,189995.347796166,3136.05679,1440.0674362549069,3230848.19714548,1461561.308631858,1160.50643,513.0356870146411,1191441.3133294384,515988.3591406554,1869.83312,783.317766299792,1911349.2195976968,781655.4761954256,0.38157,100000,0,701972,7323.804356898422,0,0.0,0,0.0,34196,356.09506718971704,0,0.0,34778,359.22502295300893,1594742,0,57302,0,0,0,0,0,70,0.7198898255571321,0,0.0,0,0.0,0,0.0,0.06096,0.1597609874990172,0.3133202099737532,0.0191,0.3418119013973936,0.6581880986026064,24.6373993060254,4.328881198390262,0.3292172457095019,0.2308497279196316,0.2189200502302218,0.2210129761406446,11.191457828358846,5.849817079225388,20.317565786380616,12190.734182511704,54.39839539828332,13.237592952987312,17.853359921250963,11.72783983749222,11.579602686552825,0.5606948514022604,0.7833182230281052,0.6865861411315957,0.5793499043977055,0.1221590909090909,0.7372429550647372,0.9214285714285714,0.8679245283018868,0.7377049180327869,0.1466666666666666,0.4937950937950938,0.698389458272328,0.6196692776327241,0.5311720698254364,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657181914839,0.0042962377521759,0.0064814533061497,0.008741649237517,0.010712906307808,0.0130363103476349,0.0153529549599111,0.0174547309359857,0.0195697914325986,0.0217478032263674,0.0238048900406649,0.02613252925551,0.02846050347668,0.0304545548079099,0.0321490396504822,0.0341624522654556,0.0362733946851411,0.038377056653819,0.0404904535969019,0.0426685255896704,0.0578352955898762,0.0717092748594243,0.0854266619178311,0.0983038386808801,0.1100334870790421,0.1250805386849749,0.1372073312850937,0.1489750786765331,0.1599667047285688,0.1699908900916349,0.1829550468687781,0.1954213167228999,0.2064178796212755,0.2167559296097934,0.2275567681746171,0.2384671629885668,0.2473863319386331,0.256167666017932,0.2641338144844647,0.271730789054715,0.2791512893783912,0.2853634290392374,0.2918490476753815,0.2975414549985622,0.302299311299785,0.3067059563292934,0.3117725099501864,0.3166157760814249,0.3211129084438693,0.3250448738253616,0.3238338830181059,0.3225664507789832,0.3218803707773364,0.3210028354840576,0.3204975598143078,0.3184625522980491,0.3164318207034284,0.3171020596170297,0.3179502135909005,0.3182389485402377,0.3189055757598598,0.3193233933570251,0.3195737332041616,0.3207148001440403,0.3226751931787903,0.3236513434089,0.3243722980904119,0.3276314541372878,0.3298425639583919,0.3314263011521652,0.3331053975200583,0.3340069130550385,0.3360515835387824,0.3379594326673784,0.3406916153481762,0.3428844317096466,0.3476249228871067,0.3492416582406471,0.348111658456486,0.3426600229973169,0.0,2.5238832684037478,57.363679665077335,175.0893561717553,262.96031128334363,fqhc5_100Compliance_baseline_low_initial_treat_cost,92 -100000,95629,45009,426.6592769975635,5921,60.45237323406079,4628,47.6842798732602,1849,18.84365621307344,77.31769350596971,79.73951878054064,63.289715480586615,65.08103730783525,77.09072028767365,79.51868030808474,63.20453568721008,65.00171493402776,0.2269732182960666,220.83847245589536,0.0851797933765396,79.32237380748575,155.12442,109.08346219324616,162214.83022932376,114069.4372975208,390.78476,257.3167534315804,407943.60497338674,268375.05718096014,378.63919,184.5462861021499,391859.7182862939,189797.854957244,3028.69599,1393.9739615257206,3124195.8715452426,1414754.1452129805,1118.78234,495.87526433715215,1151808.0080310367,500441.7890481147,1806.87408,756.1258785207299,1845048.78227316,750884.662882067,0.38043,100000,0,705111,7373.4013740601695,0,0.0,0,0.0,33790,352.6022440891361,0,0.0,34629,357.95626849595834,1591630,0,57070,0,0,0,0,0,72,0.7529096822093716,0,0.0,1,0.0104570789195746,0,0.0,0.05921,0.1556396708987198,0.3122783313629454,0.01849,0.3294741919922817,0.6705258080077183,24.41187106694713,4.375895599125295,0.3243301642178046,0.2327139152981849,0.2242869490060501,0.2186689714779602,11.554013197338035,6.038378315627814,19.532331583630373,12156.901052247193,52.51698172976585,12.849039634466427,17.159154824387834,11.45119208992612,11.057595180985482,0.5648228176318064,0.7845868152274837,0.7081945369753497,0.5529865125240848,0.1304347826086956,0.7309486780715396,0.91871921182266,0.8743961352657005,0.6798418972332015,0.1549295774647887,0.5008976660682226,0.7034277198211625,0.6448942042318307,0.5121019108280255,0.1239048811013767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185752492098,0.0043402425668275,0.0065380710659898,0.0087196008089513,0.011089971206772,0.0133251833740831,0.0157713259747413,0.0179200850029117,0.0197824240377431,0.0219561696631747,0.0242057178052661,0.0263325656000658,0.0286785225154719,0.0308231896018155,0.0329906493774861,0.0349252341284213,0.0368596223832778,0.0387859398371281,0.0410036528634911,0.0431023694310028,0.0575202742245631,0.0714323137698699,0.0854069724693549,0.0983273294149866,0.1109057496514722,0.1262975045545057,0.1376099987246524,0.1485070410523735,0.1592207458758585,0.1691856530566208,0.1822604830792798,0.1941744416631449,0.205640461432882,0.2151055813545956,0.2245489513187043,0.2350494192818396,0.2449374161823871,0.2533336336606901,0.2625340599455041,0.2700491560963872,0.277211672070403,0.2832299590403745,0.2900203714231571,0.2950349675515517,0.3003393046079755,0.3052884615384615,0.3102067377484107,0.3154212146655472,0.3196471822503141,0.3239306419449836,0.3232583209809999,0.3225775380466191,0.3224261546913076,0.3207560792468087,0.3202267196866283,0.3177349707530701,0.3154478238153291,0.3159948837361844,0.3170448926702017,0.3166364379956613,0.3178589406566363,0.3188733390989857,0.3198280516675665,0.319886388851906,0.3208474495395333,0.3241157889285899,0.3255728429985856,0.3286181648231812,0.3323688338853059,0.3353184776178268,0.3387235975471269,0.3427829588808817,0.3460788629645934,0.3463170657775083,0.3448696304633277,0.3448683122711704,0.3519877675840978,0.3557422969187675,0.3525869148644949,0.3496583143507972,0.0,2.785237215304805,55.6393367854869,170.6160864854159,248.8071537820649,fqhc5_100Compliance_baseline_low_initial_treat_cost,93 -100000,95722,45007,426.2551973423038,5933,60.93687971417229,4650,48.11850985144481,1819,18.65819769749901,77.34880342590687,79.7061714600945,63.338894218876014,65.07699376751208,77.11774088088633,79.47580080860179,63.25317537606185,64.9938426189436,0.231062545020535,230.37065149270572,0.0857188428141668,83.15114856847572,156.27238,109.90263233438246,163256.492760285,114814.39202522144,395.65392,259.6569421289141,412873.0803785963,270798.13640428975,374.35779,181.65553212563145,388391.49829715217,187702.5473470665,3051.9227,1387.6554852094314,3159224.640103633,1420755.4206074493,1108.85324,490.118789482749,1145057.332692589,498757.7764570285,1788.56242,751.6387252983184,1837123.29454044,758463.0381731843,0.37997,100000,0,710329,7420.749670922046,0,0.0,0,0.0,34095,355.69670504168323,0,0.0,34141,354.0147510499154,1589295,0,57015,0,0,0,0,0,84,0.8670942938927311,0,0.0,0,0.0,0,0.0,0.05933,0.1561439060978498,0.3065902578796561,0.01819,0.3349428617415097,0.6650571382584902,24.67671411219693,4.431934164230783,0.3193548387096774,0.2324731182795699,0.2221505376344086,0.226021505376344,11.014892591262464,5.5628224591315965,19.414286413339124,12178.515256729568,52.47607634994098,12.972767474069716,16.754513272198366,11.312054321949182,11.436741281723704,0.5552688172043011,0.7835337650323775,0.6902356902356902,0.5672797676669894,0.1179828734538534,0.7152209492635024,0.9168831168831169,0.8225806451612904,0.7213114754098361,0.1764705882352941,0.4982497082847141,0.7097701149425287,0.6460017969451932,0.5196451204055766,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0043993025990349,0.0065445690223732,0.0087262162354351,0.0111639824304538,0.0133150099251794,0.0156359892770138,0.0178421965907931,0.0200909508967349,0.0218926553672316,0.0240967560088146,0.0262741958659194,0.0283452423790674,0.030442794930662,0.0322457526587788,0.0343569819587096,0.0366121350176019,0.0385660925503216,0.0409652834818411,0.0430737171138317,0.0583124477861319,0.0720221026853925,0.0856168694922366,0.0987143879139839,0.1112072148093454,0.1264174494372514,0.1387642059020151,0.1497530022996337,0.1604452896305634,0.1711450791096808,0.1841702751028673,0.1967087183260121,0.2081502588419541,0.2183046992049518,0.2275287697757828,0.2372826893884832,0.2469785313763599,0.2554908869851062,0.2638396911898274,0.2710786784585071,0.2774382480264833,0.2846815230742235,0.2903588505420632,0.295641861133739,0.3003630535352186,0.3058504741963296,0.3102814718528147,0.3145714721431476,0.3194124796359028,0.3231545791214729,0.3220220395312226,0.3206309477969085,0.3193437081895641,0.3176781612516433,0.3166426459444601,0.3150370415722769,0.313978324499644,0.3150570416994492,0.3162878787878788,0.3180317924747105,0.3190085425350954,0.3196128294596566,0.3201011747982775,0.3212482687754099,0.32139595250685,0.32296875,0.3229847339135397,0.3267329849524649,0.3303502491752649,0.3330419927694569,0.3373246195329281,0.3412507355694645,0.3454834605597964,0.3491342824163139,0.3485122159901131,0.3478521718262539,0.3521914827479018,0.3525654234494127,0.3552704963747908,0.351686700271423,0.0,1.6934563201831685,53.92724789196023,172.20727999159027,258.8473002148384,fqhc5_100Compliance_baseline_low_initial_treat_cost,94 -100000,95628,45122,426.4023089471703,6032,61.530095787844566,4733,48.81415485004392,1874,19.22031204249801,77.26744378178137,79.68396420667484,63.28338998351626,65.06996454345077,77.02703051388023,79.44455910868756,63.19271751288439,64.98226444982748,0.2404132679011326,239.4050979872873,0.0906724706318726,87.70009362328324,154.44286,108.61302470110324,161503.80641653072,113578.6848005848,391.01306,257.6499944456058,408171.0168569875,268710.74836408347,378.42917,184.29865717287527,391248.1595348642,189306.76041884292,3121.49691,1433.2081555787004,3222518.50922324,1457043.173106934,1126.00064,499.8224953984652,1161985.6422805036,507179.3673385044,1845.46482,787.3486554879825,1894560.923578868,792532.3652098718,0.38105,100000,0,702013,7341.082109842306,0,0.0,0,0.0,33778,352.4804450579328,0,0.0,34558,356.9456644497428,1594131,0,57185,0,0,0,0,0,72,0.742460367256452,0,0.0,0,0.0,0,0.0,0.06032,0.158299435769584,0.3106763925729442,0.01874,0.3221434200157604,0.6778565799842395,24.611569147309996,4.490274176830323,0.3120642298753433,0.2408620325375026,0.2174096767377984,0.2296640608493556,11.16475037351914,5.532050726194137,20.173485094883336,12222.604685394674,53.71014034934925,13.686305057960686,16.69026609690955,11.46747175735308,11.866097437125935,0.5582083245298964,0.7850877192982456,0.6980365605958023,0.5801749271137027,0.1094756209751609,0.7238979118329466,0.9080717488789236,0.8497409326424871,0.7446808510638298,0.1238938053097345,0.4959302325581395,0.7060518731988472,0.6443629697525206,0.5314861460957179,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0045528290407625,0.0069038336582196,0.0092980245508495,0.0116379617290104,0.0140241170000407,0.0161306768358586,0.018693401668215,0.0207670835080113,0.0232155657962109,0.0255681818181818,0.0277461041429114,0.0298438368001975,0.0321593438298573,0.0343211635132484,0.036215327674796,0.0382380661398402,0.0403138752802457,0.0424602390338787,0.0446536552817048,0.0588610306951078,0.0729906365864387,0.0862702679996639,0.0992523954933136,0.1114383742412246,0.1273482008598598,0.1384719965161605,0.1496355032612866,0.1597578065661806,0.1694270799767996,0.1814818410294577,0.1945609187930007,0.2060027433647586,0.2157547366001554,0.2257666685018994,0.2361649786130626,0.2450683784538096,0.2539757571664922,0.2625572072634771,0.2700270542920029,0.2781907871882165,0.284380593609977,0.2907846758535777,0.2963647270545891,0.3013195500152021,0.3076068576506745,0.3121015119061039,0.3164186324808086,0.3204386942881589,0.3249203432182662,0.3236885787932361,0.3223125689084895,0.3212139168712435,0.3204545454545454,0.3201310791688389,0.3187718652181918,0.3165037140499016,0.3177912497740976,0.3182750837835989,0.3185050201879444,0.3196915109209637,0.3208228362857312,0.3221108379042935,0.3220244093606539,0.3242272266962434,0.3257201161604269,0.327176705680845,0.3287451178026962,0.3322297749445286,0.3361810850732564,0.339531458553873,0.3420302329334552,0.3438078814587724,0.3476685934489402,0.3466717238763512,0.3494120470362371,0.3524208566108007,0.3555692814494544,0.3561488213575688,0.356027232679215,0.0,2.6040304648365167,56.22434134200438,172.34322188062907,261.69101727408986,fqhc5_100Compliance_baseline_low_initial_treat_cost,95 -100000,95840,45332,429.3301335559265,6040,61.85308848080133,4766,49.165275459098496,1852,18.896076794657763,77.40182060844235,79.71474507152395,63.36325590393732,65.07553562595722,77.17180490348827,79.48848686458489,63.277550934213146,64.99393934792685,0.2300157049540843,226.25820693906465,0.0857049697241763,81.59627803036074,155.15676,109.13591812107686,161891.4440734558,113873.0364368498,395.21444,259.6298866784809,411804.1318864775,270334.43935567705,378.65549,184.33887476452705,392067.6857262104,189953.15044019572,3134.26372,1438.7566299570274,3230963.313856427,1462181.9452882286,1126.03803,502.64204006048783,1159128.7458263773,508707.8356944173,1817.5515,763.53859958146,1855651.314691152,763191.6342068583,0.38282,100000,0,705258,7358.702003338898,0,0.0,0,0.0,34037,354.57011686143574,0,0.0,34651,358.48288814691153,1595130,0,57309,0,0,0,0,0,66,0.6886477462437396,0,0.0,0,0.0,0,0.0,0.0604,0.1577765007052923,0.3066225165562914,0.01852,0.3276160503540519,0.672383949645948,24.209095079144543,4.47216067585222,0.331934536298783,0.2305916911456147,0.2104490138480906,0.2270247587075115,11.40745332841864,5.915737301324212,19.821720641256988,12210.150609929298,54.05027151094065,13.106998407600065,17.85865087890132,11.194721753577538,11.88990047086171,0.5589592950062946,0.7761601455868972,0.6833122629582806,0.6051844466600199,0.1136783733826247,0.7358490566037735,0.9138755980861244,0.8468677494199536,0.7520325203252033,0.1869565217391304,0.4908456843940715,0.6916299559471366,0.6220677671589921,0.5574636723910171,0.0938967136150234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377933939528,0.0048850196110227,0.0070303940267012,0.0094051210172968,0.0117424589013938,0.0139969054114581,0.0163175865056311,0.0181465605225556,0.0202485843367336,0.0223329887516248,0.0243657424017221,0.0263681898427556,0.0284521925045741,0.0304359465414633,0.0327055571599488,0.0346149474576096,0.0367675220222137,0.0387498833459492,0.0408716515886452,0.0428153652419161,0.0572787384493439,0.0709932362503528,0.0840319403110198,0.0967992688845236,0.1092984802687702,0.1248547831780833,0.1371927966101695,0.1480489386353731,0.1583974557368651,0.1691660061269521,0.181686187203562,0.1940983889963371,0.2059270846912614,0.2172089059802914,0.2268240673569434,0.2370194915160437,0.2464762032204826,0.2553148433371932,0.2647355706524821,0.2727470414539794,0.2791918677938268,0.2855773389915711,0.2919948903555461,0.2970738370839025,0.3022755974353993,0.3066983642096965,0.3119394583776346,0.3165990770521605,0.321119434848426,0.3261032950514893,0.325473474658345,0.3242830826757581,0.3233792356490794,0.3219348976736807,0.3210918040564583,0.3185259969712266,0.3169767772736614,0.3175622542595019,0.3167462482946794,0.3168963920646793,0.3175074738415545,0.3194915254237288,0.3221159868063964,0.32325213399006,0.3246989538196356,0.3269435293507302,0.3281117217154835,0.3316905801621959,0.3346812144873984,0.3369505169284192,0.340066270255549,0.3432701471989833,0.3475368685283966,0.3505068845513693,0.3549883990719257,0.356146724481425,0.3577063106796116,0.3623363544813696,0.3683206106870229,0.3699466056445461,0.0,2.13908224131286,58.354823208196166,172.87600345362085,258.52062217669373,fqhc5_100Compliance_baseline_low_initial_treat_cost,96 -100000,95682,44816,424.6253213770615,5970,61.025062185154994,4680,48.18043101105746,1844,18.739156790200877,77.32145341825886,79.70853737116592,63.3143933609397,65.08008188738211,77.09262541758154,79.48644413049492,63.22859375684618,65.00044184675448,0.2288280006773106,222.09324067100056,0.0857996040935162,79.64004062762342,155.26808,109.2433613890356,162275.11966723102,114173.36739306829,391.50097,256.6590999439086,408434.50178717,267508.83042012714,372.38426,180.8340205952597,385233.78482891247,185930.3127083604,3065.61152,1399.9812545713264,3158954.2442674693,1418205.3773937717,1102.72099,488.4000947664589,1135259.8503375766,493235.0966701131,1806.8405,762.1098768577227,1839625.1541564765,754330.715294125,0.37942,100000,0,705764,7376.141803055956,0,0.0,0,0.0,33780,352.29196714115506,0,0.0,34133,352.7413724629501,1595993,0,57237,0,0,0,0,0,55,0.5748207604356096,0,0.0,1,0.0104512865533747,0,0.0,0.0597,0.1573454219598334,0.3088777219430486,0.01844,0.3278976818545164,0.6721023181454836,24.53333342780532,4.407915852498263,0.327991452991453,0.235042735042735,0.2177350427350427,0.2192307692307692,11.235697213921744,5.801320058124144,19.68254860954579,12126.275165183371,52.981465375201694,13.074569163150452,17.215257032991754,11.382982293334068,11.308656885725409,0.5551282051282052,0.77,0.6846905537459284,0.5799803729146222,0.1062378167641325,0.7217675941080196,0.9194805194805196,0.8571428571428571,0.708,0.1291866028708134,0.4962406015037593,0.6895104895104895,0.6283491789109766,0.5383615084525357,0.1003671970624235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021277458053011,0.0045127269039651,0.0067402955985057,0.0087397485797908,0.010764284551522,0.0130388721375601,0.0152768287832587,0.017418827853788,0.0195360819472699,0.0216389952300038,0.0237033391771496,0.0259090769056983,0.0280109451508044,0.0302430780961802,0.0324731626754748,0.034770111971547,0.036656101754604,0.0384407820997135,0.0407770625123495,0.0428977894506456,0.0575719911009912,0.0710666806238877,0.084016414949779,0.0965080300574627,0.1081648588190604,0.1239216267425982,0.1360012738177379,0.1473216663293674,0.1584139368353551,0.169321363065933,0.1824959062311471,0.1942796518425497,0.205460379616033,0.2156970001969236,0.2251559457407835,0.2352341933340715,0.2453200651509404,0.2540439068805432,0.2620621619476352,0.2696108178664254,0.2764773910026599,0.2827327362439492,0.2896474988755001,0.2951963181360564,0.3007252979553158,0.3061709542750883,0.3106705028771578,0.3152522119393878,0.32016908837065,0.3240052700922266,0.322754168908015,0.3227370097769966,0.3216952346133835,0.3200046176712506,0.3188420865019011,0.3167006265990532,0.313863643560594,0.314494418910046,0.3153634671539079,0.3174858121854588,0.3172905859660293,0.3187564193726791,0.3194485124900623,0.3215204024594745,0.3214870067372473,0.3229583169998693,0.3236817258447541,0.3268818560080696,0.3290760678347759,0.3311360838661001,0.3345477730212223,0.335002663825253,0.3380460280225702,0.3403813624481008,0.3424463153911645,0.348065636603186,0.3548387096774194,0.3571866693927622,0.3551505109085888,0.358974358974359,0.0,2.794827526585875,52.868087153698006,178.7313758272594,256.3322547213366,fqhc5_100Compliance_baseline_low_initial_treat_cost,97 -100000,95708,44906,425.0637355289004,6069,62.18915869101851,4768,49.26442930580516,1887,19.350524512057508,77.3455376358958,79.73129371093908,63.32130932583449,65.08676889913629,77.1161508380444,79.5032022109539,63.23623274772208,65.0045289711461,0.2293867978513901,228.09149998518308,0.0850765781124067,82.23992799018731,154.46002,108.66389050321828,161386.73883060977,113536.8939934157,390.55347,256.5191190873439,407528.0645296109,267482.9785256654,375.28837,182.94224517321817,388438.6362686505,188365.86921943267,3103.39003,1419.058085585743,3209875.1201571445,1450009.754237621,1122.73008,498.3919282861246,1157519.0161741967,505191.6808373879,1841.85784,769.4198431964343,1890990.5963973757,776408.9471041443,0.3804,100000,0,702091,7335.760855936808,0,0.0,0,0.0,33665,351.17231579387305,0,0.0,34288,354.557612738747,1601699,0,57343,0,0,0,0,0,79,0.8254273414970535,0,0.0,1,0.0104484473607221,0,0.0,0.06069,0.1595425867507886,0.3109243697478991,0.01887,0.3392857142857143,0.6607142857142857,24.332284504630504,4.30788668828699,0.3160654362416107,0.2491610738255033,0.2193791946308725,0.2153942953020134,11.29488912919775,5.947931698939774,19.945274502628862,12138.333165655687,53.911346867814935,14.0591302777709,16.989871643774492,11.644641056592004,11.217703889677551,0.5606124161073825,0.7803030303030303,0.681486396814864,0.5688336520076482,0.1207400194741966,0.72890625,0.9285714285714286,0.8350253807106599,0.7458333333333333,0.1548672566371681,0.4988532110091743,0.69921875,0.6271338724168913,0.5161290322580645,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021783402060811,0.0044322734418581,0.0068125285547489,0.0090855505193194,0.011353463009685,0.0135058056630678,0.0159388958006159,0.0181060629269936,0.0203902159685863,0.0223756029124125,0.0245118148999015,0.0266844700082169,0.0288944206714944,0.031088349854708,0.0329411764705882,0.0350467289719626,0.0371774552762153,0.039179259382265,0.0411913353646488,0.0431353345072256,0.0581084468209541,0.0715324800368389,0.0841169556273876,0.0970372240809713,0.1090824710734213,0.1239158945720692,0.1353310060163619,0.1464492630143989,0.1572004318869397,0.167393031194315,0.1801041363474661,0.1914312944030497,0.2031239795363013,0.2142575774154721,0.2240494903463003,0.2343646114977173,0.243967229948434,0.2527139980425465,0.2608957052430973,0.2684752747252747,0.2759789461507316,0.2835316671732167,0.2899560117302053,0.2949830613979434,0.3003311539441284,0.3046210993714714,0.3095746674161514,0.3148216302651116,0.3186553580419038,0.3228651803554527,0.3228926329344851,0.3221585927224901,0.3221245647534539,0.3221095685235324,0.3217193096711169,0.3198114358943064,0.3176067350065549,0.3185882816217369,0.3187661107222725,0.3195406814772484,0.3209235155107093,0.322117763483424,0.3235929600805521,0.3247763864042934,0.32674029692726,0.3259145227782706,0.3271619004215563,0.3300245021046679,0.3332982566908695,0.3351068053680616,0.3373028498704604,0.3399014778325123,0.3440050219711236,0.3425834410400669,0.3467018967632349,0.3452909418116376,0.3456370656370656,0.3476210008203445,0.3474669603524229,0.3533307362680171,0.0,2.1517552607190904,56.07231882001811,172.79477362676113,266.7753871722272,fqhc5_100Compliance_baseline_low_initial_treat_cost,98 -100000,95598,45432,430.1554425824808,6060,61.957363124751566,4760,49.0805246971694,1876,19.15312035816649,77.23812690061078,79.6709367635558,63.25655152000609,65.0549062918974,76.99641601108858,79.43270393238464,63.16561984754893,64.96844461259454,0.2417108895221957,238.23283117116037,0.0909316724571596,86.46167930285742,153.43966,108.00000809843644,160505.09424883366,112973.08322186283,394.25722,258.91350872117505,411718.6447415218,270142.76315527014,382.053,186.07750489654745,395695.4538797883,191497.03178812712,3118.70669,1441.574242781992,3216613.0253771,1462570.3354040373,1158.64303,517.6566754850722,1192231.1763844432,521846.1467984156,1840.84954,782.2963171164894,1881595.3681039352,780255.0948227908,0.38375,100000,0,697453,7295.686102219712,0,0.0,0,0.0,34016,355.080650222808,0,0.0,34949,361.5766020209628,1593920,0,57325,0,0,0,0,0,66,0.6903910123642754,0,0.0,1,0.0104604698843072,0,0.0,0.0606,0.157915309446254,0.3095709570957096,0.01876,0.3266781952523188,0.6733218047476812,24.35180797179303,4.389937728132045,0.3102941176470588,0.242016806722689,0.220798319327731,0.226890756302521,11.201016467377238,5.775814836017082,20.2275590792093,12299.158453783895,54.44198865326774,13.998252990943431,16.740642141513852,11.909693187784912,11.793400333025554,0.5571428571428572,0.7890625,0.6885578876100203,0.566127497621313,0.1212962962962962,0.733131159969674,0.925,0.8376288659793815,0.7137681159420289,0.1767441860465116,0.4896832316187154,0.7050561797752809,0.63544536271809,0.5135483870967742,0.107514450867052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023005513215501,0.0046757883419715,0.0070059296564048,0.0094121951963245,0.0118160723009281,0.0139877950630112,0.016247641389158,0.0185714869447963,0.0210604913773704,0.0230659715465057,0.02546581301814,0.0276707458668557,0.0298779358185298,0.031720668432935,0.034057933598389,0.0362874437373894,0.0381286088966754,0.0402019446522064,0.0420869637633636,0.0441808546152562,0.0593708508881059,0.0732198061304689,0.0863434827376074,0.0988708895957532,0.1115687641256363,0.1273039277996695,0.1396500249678605,0.1509908642212201,0.1615554176386243,0.1713199196467896,0.1837153092494281,0.1953467192853115,0.2071332832063813,0.2173446129569562,0.2275171927349673,0.2384260286741533,0.2474271779497964,0.2567893715883971,0.2657044392124748,0.2733922829581993,0.2804660122072919,0.2876863352216084,0.2942398063321783,0.3008741027521612,0.3067669356214806,0.3116608560195831,0.3153784340314399,0.3191790787609603,0.3237480183996465,0.3275832395578208,0.3257856197141235,0.3243858995070626,0.3230382322190511,0.3207952090251294,0.3199886766590184,0.3187356904685075,0.3170138723363684,0.3176806052314944,0.3192990285263122,0.3202630777226214,0.3197480966256227,0.3198936465732767,0.3209178093715824,0.321779733309388,0.3224211135771495,0.3242444839485517,0.3251967377307197,0.3279982321558228,0.3328052944696729,0.3344302592974387,0.3371976266544956,0.3375457972707482,0.3409790737133161,0.340827952905431,0.3420436452186944,0.3433642882332197,0.3448068540508041,0.3497017892644135,0.347920630606143,0.3528966300643695,0.0,2.718816935462342,57.33823400675965,180.79965267131303,254.714299288648,fqhc5_100Compliance_baseline_low_initial_treat_cost,99 -100000,95725,48513,462.63776442935495,4733,48.15878819535127,3766,38.81953512666493,1452,14.823713763384696,77.33641368994157,79.71184319685739,63.332022412709286,65.08967111678733,77.15580002446458,79.53470242176219,63.263462700668114,65.02508522278414,0.180613665476983,177.14077509519657,0.0685597120411714,64.58589400318715,232.98902,163.93315751889315,243394.11856881692,171254.27789907876,543.44594,367.0073654692823,567217.9785844868,382899.8020049958,484.35099,237.59882873868267,503049.1616610081,245951.3481864979,2672.94911,1247.5527871917402,2758547.767041003,1269494.4133630097,887.80662,405.1385751505898,914842.1519979108,410618.5480810546,1422.0326,601.9460994610808,1453831.7889788456,601244.0170085692,0.38107,100000,0,1059041,11063.369025855316,0,0.0,0,0.0,47370,494.33272394881175,0,0.0,43812,454.6879080699922,1101481,0,39502,0,0,0,0,0,85,0.8879603029511622,0,0.0,1,0.0104465917994254,0,0.0,0.04733,0.1242029023538982,0.3067821677582928,0.01452,0.356421647819063,0.643578352180937,23.362992378442623,4.098789440356082,0.3154540626659586,0.2788104089219331,0.1898566117896973,0.215878916622411,11.669375041373389,6.285928210963457,15.45682513399195,11346.104523388663,43.08684581309977,12.8679271926106,13.42792514374815,8.011122445792866,8.779871030948154,0.575942644715879,0.820952380952381,0.6784511784511784,0.5594405594405595,0.1242312423124231,0.7519858781994704,0.927765237020316,0.8422712933753943,0.7411167512690355,0.1590909090909091,0.5001898974553741,0.742998352553542,0.618828932261768,0.4903474903474903,0.1145996860282574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0043915252690189,0.0068125285547489,0.0090962679892674,0.0112407556229209,0.0134133175809178,0.0153479027932163,0.0175311415152133,0.0198542116078639,0.0223573490571832,0.024622008097996,0.0265289570136443,0.0287726875417759,0.0308376850106603,0.032679131583292,0.0348338415421985,0.036862542065752,0.0388948831804789,0.0411699285944434,0.0431168290015104,0.057279211353502,0.0714749089691541,0.0846023156305059,0.0978712220762155,0.1103978919631093,0.125968357306672,0.1368878524485902,0.1467917224951615,0.1560802228650108,0.164772301198753,0.1762047220368895,0.1869160899653979,0.1970075625869262,0.2062020076241657,0.21474091328616,0.2243192145676473,0.2327874331550802,0.2410305965369619,0.2488241627472091,0.2550391585205511,0.2617911723596206,0.2671709389737124,0.2716141220923367,0.2757977323829115,0.2795112371808859,0.2840717649807552,0.2874057051506219,0.2903635417063477,0.2931277384999159,0.2961230298877234,0.2934659854799677,0.2908495833218735,0.2885159184592226,0.2856977918891615,0.2833132896827164,0.2794738452126032,0.2759465654888942,0.2755739074866047,0.276004909481436,0.2770110234537781,0.277765333930638,0.2786698150334514,0.2795501874219075,0.2798676496713448,0.2806451612903226,0.2827741534638086,0.2846129775552584,0.2897545357524013,0.2932222960915357,0.2988387301335659,0.3034410368747718,0.3077908217716115,0.3097542340506812,0.3130794575128343,0.3166870818807123,0.3228967495219885,0.3274988484569323,0.3348818420521107,0.3405757740358501,0.3538461538461538,0.0,2.070184676773705,49.25161754006032,134.53622976892788,196.75123254156577,fqhc5_100Compliance_implementation,0 -100000,95611,48280,460.9197686458671,4808,49.07385133509742,3833,39.52474087709573,1515,15.458472351507671,77.26635035352784,79.70392303238417,63.26822878755484,65.07179094154647,77.07055562867968,79.51217264676724,63.19420107152995,65.0021787570126,0.1957947248481559,191.7503856169276,0.0740277160248865,69.61218453386664,231.7249,162.97607738631586,242362.1759002625,170457.45509022588,542.36677,365.82853031199767,566697.9531643849,382055.7679681184,485.60513,239.00862960656252,504416.4792753972,247313.39439650316,2723.61868,1284.0817301825043,2807597.7764064805,1301979.2285223517,901.03554,410.649312467428,925150.0559559048,412258.9337632034,1470.40164,625.5826827690114,1501174.990325381,621341.8779561261,0.38016,100000,0,1053295,11016.462540921024,0,0.0,0,0.0,47312,494.2527533442805,0,0.0,43848,455.1568334187489,1103446,0,39582,0,0,0,0,0,97,1.0145276171151854,0,0.0,0,0.0,0,0.0,0.04808,0.1264730639730639,0.3150998336106489,0.01515,0.348943802311678,0.651056197688322,23.25817957807012,4.116483622152772,0.2976780589616488,0.2731541873206365,0.2170623532481085,0.212105400469606,11.607257630888398,6.397300716807646,16.084690934678807,11366.661910406729,44.10965653457182,12.873696083582113,13.100524826836914,9.358537029467833,8.776898594684965,0.5815288285937907,0.8099331423113658,0.6976336546888694,0.5973557692307693,0.1082410824108241,0.7587939698492462,0.9230769230769232,0.875,0.7489177489177489,0.12,0.5013262599469496,0.7184801381692574,0.6285018270401949,0.5391014975041597,0.1050156739811912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022092504763062,0.0045041846309916,0.0070378908669909,0.0091813079551,0.0116956088027523,0.0139221541628871,0.0163394023514043,0.0184543698844302,0.0206169744717859,0.0227074772771521,0.0247139118386616,0.026653646502544,0.0289061374070947,0.030972584519894,0.0328977947632081,0.0348185091676669,0.0371172702585045,0.0394777840094721,0.0413088956193212,0.043114596804472,0.0574681400478814,0.072172619047619,0.0854420739713652,0.0985506025111654,0.1109984473525777,0.126618080125421,0.1362293269843969,0.1461395686215945,0.1566587459593689,0.165250185342373,0.1763766787120435,0.1873495934959349,0.1983838295833242,0.2074367851351943,0.2163452000440868,0.2258089564821902,0.2336196976975411,0.2411968064141977,0.2481877883064058,0.2547456557894133,0.260674703818226,0.2663193021485861,0.2722439313203079,0.2765113380315451,0.2798104380582052,0.2843011495387044,0.2875997044865453,0.2913596273529075,0.2931246520900488,0.2959729950684353,0.2933666949163943,0.290404595679182,0.2881079332029656,0.2852731968431228,0.2826274079130925,0.2794254717701887,0.2766989524245919,0.2771194912893128,0.2778781577063375,0.2781541972755153,0.2786857624262847,0.2798412416326047,0.2797924208499864,0.2800553460242362,0.2816762728146013,0.2831367648207451,0.2848274290921517,0.2873675272807321,0.2915263748597081,0.2972029359254116,0.3022220202662789,0.3065797838525111,0.3106275622831914,0.312990343995172,0.3152476349471341,0.3154511453950444,0.3190814322405197,0.3235235235235235,0.3253796095444685,0.336322869955157,0.0,2.15041774350551,51.94640224494654,139.16398554907445,192.4419336830831,fqhc5_100Compliance_implementation,1 -100000,95717,48366,462.6137467743452,4825,49.31203443484439,3826,39.51231233741133,1442,14.78316286553068,77.34534288058313,79.71393608991798,63.32656324425341,65.07446144761009,77.15917486143313,79.52751907139236,63.25745801462598,65.00667746657531,0.1861680191500028,186.4170185256171,0.069105229627425,67.78398103477912,232.36554,163.4542093740571,242762.6231494928,170767.8110347726,543.79243,366.18011205215714,567691.2774115361,382132.7772473465,481.58398,235.54233856727555,499861.94719851227,243528.18574691107,2721.65756,1257.0598387204072,2812573.26284777,1282608.0164713454,892.67835,405.9652053485747,919133.9365003082,410704.01918427367,1410.75188,596.6512681711591,1447832.5062423602,602555.0391094409,0.37962,100000,0,1056207,11034.664688613308,0,0.0,0,0.0,47295,493.6427175945757,0,0.0,43485,451.1110878945224,1104678,0,39620,0,0,0,0,0,110,1.138773676567381,0,0.0,2,0.020894929845273,0,0.0,0.04825,0.1271007849955218,0.298860103626943,0.01442,0.3651361558338302,0.6348638441661697,23.5546267006823,4.110955461881639,0.3010977522216414,0.2762676424464192,0.2106638787245164,0.2119707266074229,11.322354012030708,5.931807440474673,15.320804862069476,11266.294290561147,43.57711419315041,12.932123150981525,12.94035787060784,8.769571094802933,8.935062076758117,0.5794563512807109,0.7956480605487228,0.7161458333333334,0.5620347394540943,0.1208384710234278,0.7516339869281046,0.908235294117647,0.8785942492012779,0.7195121951219512,0.1538461538461538,0.5125226860254084,0.7199367088607594,0.6555423122765197,0.5218068535825545,0.1121495327102803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019847699287103,0.0041047574645774,0.0062497463576965,0.0081555961811903,0.0101893469462466,0.0123906779747299,0.0147498037776622,0.0169757969845758,0.019248461554188,0.0213428053761349,0.0231685563734033,0.0252310536044362,0.0273600625372858,0.0295562950066447,0.031671499778124,0.0336568776423646,0.0358840525678068,0.0380855523961727,0.0400286958962788,0.0418898359835775,0.0561415234236304,0.0698767189233313,0.0836131279640743,0.0965797308813163,0.1087371675160109,0.1243161448027005,0.1349460767663043,0.1447345999829598,0.1540368688218007,0.1637369826578436,0.1757937491246404,0.1869816591238821,0.197410369403188,0.2062152458513945,0.2138995033531918,0.2228626533801833,0.2308044283737333,0.2394757565530431,0.2469245086022969,0.2538508228449707,0.2602484615740527,0.2659925181201777,0.2710388719331866,0.2751212502245374,0.2793876634334066,0.282792083841332,0.2856946337681177,0.2887438411134251,0.2927864398007375,0.2948330673139073,0.2927554963178372,0.2892731374491031,0.2869728236355435,0.2844719240714791,0.2822884803848781,0.2785185638265337,0.2752552751605827,0.2758355680554647,0.2762907608695652,0.2760573884015768,0.2752527603478131,0.2757841808575413,0.277458453080095,0.2786425278909746,0.2807690463633313,0.2830614415021915,0.285351181902906,0.2885567491826249,0.2920707755414189,0.2972697316805272,0.3016497175141243,0.3051606108478146,0.3108630581192317,0.3136009677175474,0.3155737704918033,0.3199296600234466,0.3262314898760955,0.3306581059390048,0.3346038660495508,0.3477088948787062,0.0,1.730319504279986,46.67892918728936,148.93939531118514,196.5677415270873,fqhc5_100Compliance_implementation,2 -100000,95666,48721,464.5014947839358,4933,50.414985470282026,3885,40.06648129952125,1451,14.82240294357452,77.2498286400838,79.65104712924781,63.26585613190741,65.04025740680542,77.06593099180739,79.46964023335885,63.19654140110539,64.97422769914664,0.1838976482764138,181.4068958889692,0.0693147308020201,66.02970765878524,228.95862,161.23945006008756,239331.23575774048,168544.15368060497,540.0412,364.7045891026296,563966.163527272,380686.1989658077,495.10921,242.9516256056428,514562.0910250245,251566.28678093024,2698.88842,1269.9338167163403,2784384.776200531,1290693.5972198483,896.56081,407.3401258469093,921714.4858152322,410330.4160798088,1400.34776,599.5225905993215,1431556.707712249,598635.1088559618,0.38291,100000,0,1040721,10878.69253444275,0,0.0,0,0.0,47030,491.0417494198566,0,0.0,44670,463.9370309200761,1111743,0,39928,0,0,0,0,0,75,0.7839775886939979,0,0.0,1,0.0104530345159199,0,0.0,0.04933,0.1288292288005014,0.2941414960470302,0.01451,0.373571013369502,0.626428986630498,23.180136062127385,3.972572162450609,0.3148005148005148,0.2813384813384813,0.2123552123552123,0.1915057915057915,11.341103632290569,6.278476272071891,15.627973092288569,11416.286429549804,44.88231568957584,13.429557523548429,14.04442571443991,9.182187897219675,8.226144554367826,0.5953667953667954,0.8142726440988106,0.7097301717089125,0.5721212121212121,0.1115591397849462,0.762384550797649,0.9077568134171908,0.8771428571428571,0.7339901477832512,0.1180124223602484,0.5215293244246474,0.7418831168831169,0.6426116838487973,0.5192926045016077,0.1097770154373928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109566838202,0.0047258308233695,0.0072979364805472,0.0095509042877463,0.0118501490168953,0.0138308923879168,0.0160398906880939,0.0180425792617552,0.020464307629372,0.0225827265185731,0.0248120377873283,0.0268823831535695,0.0293049338889746,0.031374974232117,0.0336991647480306,0.0357231507529372,0.0376875569924562,0.0398990842833115,0.0419588422563931,0.0439388567972806,0.058710439152831,0.0728437984333766,0.0869943955836359,0.1000873344065995,0.1115907004231877,0.1269023177055773,0.1374235474006116,0.1473308470964304,0.1571414818855694,0.1654116762446962,0.1776694106096732,0.1896577897293546,0.2004492225832479,0.2095150358623412,0.2177291188416034,0.2271338584426694,0.2356160397524425,0.2429231983760009,0.2503043611828556,0.2566755865902539,0.2624791047548291,0.2679816836914406,0.2731452877714937,0.2775987300976478,0.2811373160510671,0.2852622731991892,0.2885891725738661,0.2913183854213192,0.2943902185763979,0.2974342018251554,0.2949041406387026,0.2919738201860145,0.2887296122806027,0.2862519178994297,0.283544793324508,0.2790961143941945,0.2760344173098823,0.2760380764812079,0.2759374733065687,0.2767828418230563,0.2779361031948402,0.2781850878406418,0.278363453815261,0.279178964314462,0.2801904487087,0.2804691351617842,0.2812614905953896,0.2856253114100647,0.2892561983471074,0.2949247159649329,0.2994428969359331,0.3016619629978049,0.3048546097092194,0.3111111111111111,0.3133942582848703,0.3190055762081784,0.322493631050502,0.3254,0.3311740890688259,0.3370535714285714,0.0,2.1612496779889097,52.17389710584264,142.80888488614903,197.28553550869893,fqhc5_100Compliance_implementation,3 -100000,95749,48571,462.6262415273266,4856,49.51487743997327,3824,39.39466730723037,1457,14.893105933221236,77.32698317968122,79.6862979052443,63.31555014592704,65.06094087441873,77.13649774273522,79.49838709815596,63.24313152625292,64.99169247461172,0.1904854369460054,187.9108070883433,0.0724186196741243,69.24839980700881,231.57508,162.88206754170054,241856.16559964072,170113.3667627865,541.64134,365.3315267137652,565129.5992647442,380992.1009240465,482.53753,236.29525994222976,500374.8237579505,244125.969288254,2705.63209,1265.4892332164054,2788375.732383628,1284294.3771907864,868.02452,399.8968593574146,894902.4637333028,405991.65829328576,1419.90878,609.3855481273217,1452257.903476799,610247.4577405627,0.38069,100000,0,1052614,10993.462072710943,0,0.0,0,0.0,47210,492.4646732602952,0,0.0,43622,452.0882724623756,1107317,0,39693,0,0,0,0,0,84,0.8668497843319513,0,0.0,1,0.0104439733052042,0,0.0,0.04856,0.127557855472957,0.3000411861614497,0.01457,0.3578780680918448,0.6421219319081551,23.560258853725227,4.184224166211841,0.3057008368200837,0.2800732217573222,0.205020920502092,0.209205020920502,11.435842333501986,6.020472456267802,15.583527978840843,11353.46100225001,43.70711366469318,13.05341343801702,13.29887659782396,8.719932423668164,8.634891205184033,0.5706066945606695,0.7815126050420168,0.6903336184773311,0.5739795918367347,0.11,0.7497773820124666,0.9088785046728972,0.8664688427299704,0.7277777777777777,0.1685393258426966,0.4961125509070714,0.6967340590979783,0.6189903846153846,0.5281456953642384,0.0932475884244373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.0047251120439658,0.0068712827071026,0.0090824122236671,0.0114518179506737,0.0136449264294078,0.0160398906880939,0.0181593614111018,0.0205326846817382,0.0228145054810083,0.0251816625841694,0.0272747803235608,0.0291312034866987,0.0313439598006507,0.0335771242302018,0.0354419392837215,0.0375397293743723,0.039582188015393,0.0416350540964694,0.0438591921991061,0.0587854555324724,0.0723633966962034,0.0853182923760798,0.0980268483185636,0.1095487556787637,0.1247911864836861,0.135372475818768,0.1446838866293307,0.1551246833481193,0.1632050662802554,0.1746521078330979,0.1861434822163497,0.1964221591094571,0.2057768052516411,0.2146057396990345,0.2241249362683159,0.2328846690868472,0.2406725452436456,0.2486000840517486,0.2552026035936927,0.2620031722876362,0.2672302756375729,0.2726658767772512,0.2770026273799383,0.2806866117993168,0.2850572728505727,0.288627254509018,0.2927164627547837,0.2956788684230979,0.2988367799113737,0.2953851534022892,0.2917222138233394,0.2894555478980014,0.2864234587854999,0.2825309695126474,0.2799559437671138,0.2757067682242695,0.2743543976288339,0.2754995996388231,0.2756605013947373,0.2769199209279773,0.2770901792566065,0.2779914708587674,0.2788574990538525,0.2797289856113386,0.2809239553594602,0.2822132819582955,0.2857321456477574,0.2911978821972203,0.2953033345143891,0.2978349120433017,0.3007621550591327,0.3039233973761114,0.304126031507877,0.3083680073971336,0.3122598672720922,0.3204819277108434,0.3199840605698346,0.3242506811989101,0.330030487804878,0.0,2.0257971378054025,48.8108348408532,143.7669795743856,194.7883732289437,fqhc5_100Compliance_implementation,4 -100000,95759,48507,461.1994695015612,4951,50.34513727169248,3918,40.33041280715128,1473,14.954207959565158,77.39144353273707,79.72981370342254,63.36142006586866,65.08696734560532,77.20057558429944,79.54403145870651,63.28865773361984,65.01910849710676,0.1908679484376279,185.78224471602311,0.0727623322488213,67.85884849855961,231.95942,163.1424678287268,242232.0408525569,170367.36556920904,544.9654,366.7874713121756,568483.6829958542,382417.06367457705,487.1492,238.6487914653399,505297.00602554326,246565.3385061481,2754.42707,1295.9343513875203,2835073.2359360475,1312390.4978821685,896.30025,404.0764399005273,923952.9652565294,409982.3588661524,1426.7491,612.5134307155222,1450166.0209484226,605706.728733187,0.38141,100000,0,1054361,11010.54731147986,0,0.0,0,0.0,47461,494.9926377677294,0,0.0,44183,458.0248331749496,1108178,0,39791,0,0,0,0,0,92,0.9503023214528138,0,0.0,1,0.0104428826533276,0,0.0,0.04951,0.1298078183581972,0.2975156534033528,0.01473,0.3522595596755504,0.6477404403244496,23.345385201565733,4.088286154940297,0.3203164880040837,0.2761613067891781,0.2044410413476263,0.1990811638591118,11.609299813713443,6.364546518157281,15.823476111841188,11402.454771278091,45.17979850007223,13.342125738221911,14.317756817712484,9.005203921806375,8.51471202233146,0.5860132720775906,0.7994454713493531,0.698804780876494,0.5742821473158551,0.1205128205128205,0.7740345110928513,0.904862579281184,0.8851174934725848,0.7475247524752475,0.1509433962264151,0.5012958163643095,0.7175697865353038,0.6169724770642202,0.5158597662771286,0.1127214170692431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881905070468,0.0048744894960325,0.0073963596517927,0.0096484902651811,0.0123842157171762,0.014778926797492,0.0168738536784185,0.0192931622013181,0.0215652422641972,0.0233179176557256,0.0255430327868852,0.0276694845699277,0.0298907738309306,0.0321524875980321,0.0341112920850256,0.0362068074996126,0.0384185468847029,0.0402621917069426,0.0423908523908523,0.0443356424813792,0.0587983549403979,0.0724301021262347,0.0858791439362148,0.0985980669520313,0.1101210561835667,0.1254454890597404,0.1359148132828491,0.1465916224239006,0.15634278146827,0.1654285254864126,0.1771158524770168,0.1880576675571321,0.19963479451757,0.2080014858029344,0.2163522842193202,0.2261169753701122,0.2345545536619891,0.2427587910915441,0.2500906577217714,0.2562249087852135,0.2616571930311012,0.2672569886569396,0.2724328668683812,0.2769530969425623,0.2809942406789936,0.2850870720188902,0.2888419843133337,0.2924541491376352,0.2953922531933599,0.2980095834869148,0.2946530453343357,0.2916112216201386,0.2879149581531202,0.2851343764844751,0.282585533325441,0.2790481558781859,0.2754954160234397,0.2752151266267165,0.2750624331073849,0.2758320605264092,0.276484968369194,0.2771587195338032,0.2776455357888582,0.2776625404260064,0.2798281819927049,0.2795260244783411,0.2802968081792177,0.2857589788512076,0.291100317970579,0.2960214714240606,0.2994199220520257,0.3028120531695175,0.3057576517812343,0.3084599682467679,0.3115316819742091,0.3169055108936269,0.3227631383057913,0.3287833827893175,0.3322623828647925,0.3394324122479462,0.0,2.2007257737295016,53.140540780746726,143.4297213439343,196.16093256440843,fqhc5_100Compliance_implementation,5 -100000,95726,48628,464.7013350604851,4788,48.879092409585695,3842,39.53993690324468,1443,14.729540563692204,77.37264048070351,79.73254638756111,63.34029949113111,65.08203363826806,77.18518659175896,79.54791511661102,63.26943737196013,65.01472895990753,0.187453888944546,184.63127095009213,0.0708621191709824,67.30467836052867,230.63018,162.28330698210672,240927.41783841385,169528.97539028764,542.75176,366.2429456456076,566390.5730940392,382000.9460811144,490.24103,240.7275632778848,508246.7981530619,248507.3556820208,2702.73891,1270.034887357925,2786495.152832041,1289823.3785574725,873.618,401.63132835104585,899612.2474562814,406552.18890483736,1396.97118,601.8958941608633,1427816.1836909512,600193.242978405,0.38149,100000,0,1048319,10951.246265382446,0,0.0,0,0.0,47373,494.2753274972317,0,0.0,44305,459.02889497106327,1109091,0,39896,0,0,0,0,0,88,0.9088439922278168,0,0.0,0,0.0,0,0.0,0.04788,0.1255078770085716,0.3013784461152882,0.01443,0.3670962545308095,0.6329037454691905,22.752397870909554,4.022947156583089,0.312337324310255,0.2878709005726184,0.2043206663196252,0.1954711087975013,10.95825406512192,6.003096049756969,15.636416641087784,11363.792443095424,44.2640586479809,13.642735145819918,13.764446316395327,8.64075923538061,8.216117950385044,0.5939614783966684,0.8245931283905967,0.6941666666666667,0.578343949044586,0.1105193075898801,0.7785179017485429,0.9352226720647774,0.8567415730337079,0.7486910994764397,0.15625,0.5100340780007573,0.7352941176470589,0.6255924170616114,0.5235690235690236,0.0981387478849407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886075949367,0.004337559413416,0.0065228197246822,0.0086732206694832,0.0110626442566777,0.0131929881711016,0.0154326021365081,0.0176579261633307,0.0197078575882407,0.0219469751253966,0.0241349259240272,0.0262212274901952,0.028359313947271,0.0306900102986611,0.0328075189055906,0.034870862056492,0.036805052282845,0.0389578060822304,0.0408148417606402,0.0424104818047368,0.0576031573671901,0.0715055507308549,0.0845636035733758,0.0974763771665212,0.1103720180052919,0.1255867551909333,0.135668904657354,0.1459949557832902,0.1557757819758439,0.1646184532235233,0.1768842273025855,0.1877035257970638,0.1983143929095753,0.2072766641514386,0.2166886688668867,0.2255502508944692,0.2342752555689478,0.2423819440535825,0.2499261749540013,0.2558984706394882,0.2611674304494746,0.266752456715021,0.2717163463246527,0.2760940741895635,0.2796646211799016,0.2832949180954259,0.2868726303539922,0.2906731404748589,0.2937060223509933,0.2967477532087605,0.2952871276481342,0.292267545666804,0.2888442013190646,0.2865389055645347,0.2840204196717419,0.2810837257660082,0.2776286706662456,0.2779415135736975,0.2774707992587177,0.2776516092402682,0.2777664143996727,0.2795420685328942,0.2794781631676411,0.2804423954962542,0.2820354003382805,0.2846826399814304,0.2870777027027027,0.2930035028984159,0.2979289838536804,0.2996996762744257,0.302841520258157,0.3052863205322995,0.3098679292300025,0.3141848764736802,0.3200073862062598,0.3221209997664097,0.3267431331119831,0.3218781218781218,0.3256570035220807,0.3166167664670659,0.0,2.3474088775128816,52.02680281510393,140.51105714629014,191.4490328889517,fqhc5_100Compliance_implementation,6 -100000,95738,48706,464.444630136414,4862,49.38477929348848,3881,39.91100712360818,1499,15.249952996720216,77.33281654085012,79.69958964288365,63.319784280511655,65.07151528607555,77.14614658970254,79.51710380303717,63.24945240204252,65.00506585436943,0.1866699511475786,182.4858398464784,0.0703318784691404,66.44943170611839,232.33804,163.54608655645322,242681.108859596,170826.7214235238,545.53231,367.5663888224972,569211.7654431887,383323.572268136,489.16657,239.9743459705101,507205.7490233763,247680.1476640664,2727.16531,1269.9672487152532,2808313.553656855,1286281.8146842609,910.62399,405.13414208656906,936407.2573063988,408414.3517585157,1456.34066,614.4839687463527,1484994.5476195451,611278.8782000851,0.38259,100000,0,1056082,11030.959493617998,0,0.0,0,0.0,47460,495.0803233825649,0,0.0,44275,458.65800413628864,1101679,0,39547,0,0,0,0,0,98,1.0236269819716308,0,0.0,0,0.0,0,0.0,0.04862,0.1270812096500169,0.3083093377211024,0.01499,0.3614765364225407,0.6385234635774593,23.313870619382254,4.076874200885044,0.3156402988920381,0.2736408142231383,0.208966761144035,0.2017521257407884,11.518766491124186,6.254547887277168,15.924233181133909,11354.403659311907,44.21522740027817,13.042140593459017,13.648032344807056,9.066217681086677,8.458836780925418,0.5879927853645968,0.8097928436911488,0.7069387755102041,0.5721331689272503,0.1174968071519795,0.7598597721297108,0.9068736141906872,0.8765060240963856,0.7389162561576355,0.1096774193548387,0.5164233576642335,0.7381342062193126,0.6438969764837627,0.5164473684210527,0.1194267515923566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002290022190923,0.004777215420973,0.0070362473347547,0.0091481078663563,0.0114454889512879,0.0138323011734028,0.0160413628529762,0.0182848392036753,0.0201836363264554,0.0223835512640665,0.0246160470790871,0.0267586688435038,0.0289644961288133,0.0309680741503604,0.0331809787150624,0.0353706058068984,0.0373553992895535,0.0394773710810614,0.041374649058958,0.0433999020741527,0.0575646218733035,0.0722931902116485,0.0859968122142527,0.0985281749369217,0.1106133591930094,0.1254956698283792,0.1360073815609456,0.1460564129856306,0.156008673082469,0.1655584393299157,0.1768347833577397,0.1879841606439607,0.1995802431544835,0.2081688878199171,0.2165443966607639,0.2258896738047257,0.234721772798786,0.2417487199684915,0.2496567531686505,0.2561645717425647,0.2619356182453542,0.2679125174064149,0.272777863291379,0.2760881027705876,0.2798590864917396,0.2839073941665228,0.2869425914569279,0.2901974746639879,0.2928711051275744,0.2958931940211871,0.2920445676453965,0.2896643704712013,0.2873814015034207,0.2838358616110734,0.2809552806285366,0.2773174758468876,0.2739648147563248,0.2740423164405753,0.2747987679322022,0.2753527885401486,0.2768513337063981,0.2766837337534462,0.2767363789903876,0.2774553621061525,0.2785685237901586,0.2796887159533074,0.2816897412619156,0.2864250844911754,0.2917568227821596,0.2954132785979316,0.3015054930150549,0.3051920641620937,0.3072311727238666,0.3118311981914092,0.3139329805996472,0.3169104739613809,0.3211382113821138,0.325844930417495,0.3281926406926407,0.3217653715579027,0.0,2.451543931012534,49.01993800565111,140.55475782959033,203.61122495821908,fqhc5_100Compliance_implementation,7 -100000,95775,48369,461.8637431480031,4819,49.05246671887235,3823,39.30044374836857,1429,14.502740798747062,77.34910350822409,79.67708318025596,63.34642956891118,65.06658199869807,77.16381955947335,79.49793260839192,63.27564888892191,65.00079660837784,0.1852839487507367,179.15057186404226,0.0707806799892694,65.78539032022945,232.56222,163.58831065382773,242821.42521534848,170804.81404732732,545.20248,367.9197369218709,568614.3148003132,383510.9547605022,487.30181,239.75427248715312,504690.1487862177,247158.48082836045,2672.88976,1262.734679864707,2749013.928478204,1276651.5373163216,883.62368,401.6403434629688,907134.158183242,403888.7010837573,1387.04576,593.4752724530216,1409532.404072044,586276.5024523978,0.38135,100000,0,1057101,11037.337509788566,0,0.0,0,0.0,47539,495.713912816497,0,0.0,44024,455.63038371182455,1101516,0,39564,0,0,0,0,0,101,1.0545549464891673,0,0.0,2,0.0208822761681023,0,0.0,0.04819,0.1263668545955159,0.2965345507366673,0.01429,0.3596088605068848,0.6403911394931151,23.177348054038703,4.024437517747767,0.3015956055453832,0.2934867904786816,0.2021972273083965,0.2027203766675386,11.764390943636943,6.726295196322982,15.210323844879738,11380.803425310454,43.89878134800008,13.767669595058052,13.10367319626775,8.750323017062065,8.277115539612206,0.5997907402563432,0.8110516934046346,0.7042497831743278,0.630012936610608,0.1083870967741935,0.7740585774058577,0.9046653144016228,0.8648648648648649,0.8155339805825242,0.1411042944785276,0.5205479452054794,0.7376788553259142,0.6390243902439025,0.562610229276896,0.099673202614379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002420204147764,0.0045307574575051,0.0069391606050461,0.0093142781688352,0.0116423313132956,0.0138850715121901,0.0158280420314522,0.0180947909862834,0.0205174316426206,0.022692626431078,0.0245976375613404,0.0266492904126176,0.0286416048342342,0.0306716894131208,0.0325590506531399,0.0344453625284032,0.0367020891321668,0.0388424010534938,0.0408453777496077,0.0424437432965751,0.0571863879699875,0.0714771312924245,0.0850642201834862,0.0976237769440153,0.1098676445793289,0.1252113449995773,0.1360856431183422,0.1453654075208439,0.155488911182736,0.1651077325276161,0.1760451199035605,0.1876737068639219,0.1981429534433644,0.2074010891673774,0.2159753548245131,0.2256764090239553,0.2347591255537824,0.242557449296218,0.249835515121265,0.2564293317157474,0.2624154477655084,0.2677846776362722,0.2725433833705951,0.2763964740825907,0.281164662046533,0.2854361994406594,0.2892518572250431,0.2920895332570266,0.29582205880449,0.2985277433313105,0.2954545454545454,0.292616526880242,0.2906401169985375,0.2872940124854025,0.2839935998103647,0.2804902245081729,0.2769427314164945,0.2770018317414627,0.2774848629158446,0.2779269745851637,0.2776586421019262,0.2774057588529562,0.2793942807083411,0.2803582169351066,0.2816668266001343,0.2818758778546533,0.2822073673730622,0.2882096069868995,0.2928521373510862,0.2961538461538461,0.3005449591280654,0.3050372641260109,0.307541934670198,0.3127040777583719,0.3154974609742336,0.3219976218787158,0.3195402298850575,0.3190543544150333,0.3231740801757276,0.3263075722092115,0.0,2.393867665226225,51.57482533148987,137.2915233344269,192.55903642127643,fqhc5_100Compliance_implementation,8 -100000,95662,48659,465.2944742949133,4739,48.32639919717338,3754,38.604670611109945,1470,15.011185214609773,77.31532774038504,79.70726934829938,63.31028192710126,65.0762649259949,77.13371570102854,79.52836493439085,63.24238811362864,65.0116083278565,0.1816120393565086,178.9044139085263,0.0678938134726223,64.65659813841285,232.0439,163.23600808984074,242566.4318120048,170638.29743246088,543.88608,367.3423611551488,567923.355146244,383373.88007270265,487.6983,239.49286225899223,505391.5347787,246976.13024272883,2667.92834,1245.7268261640013,2748160.983462608,1261466.6703225952,914.47911,410.9398809234495,941156.2166795592,414782.9137206509,1438.40706,602.4706901531387,1470483.4939683469,601591.8565431659,0.38215,100000,0,1054745,11025.74690054567,0,0.0,0,0.0,47285,493.6233823252702,0,0.0,43961,455.2173276745207,1103761,0,39540,0,0,0,0,0,110,1.1289749325751082,0,0.0,1,0.0104534715979176,0,0.0,0.04739,0.124008897029962,0.310192023633678,0.0147,0.3632151490733279,0.636784850926672,23.25138959198216,4.025483674074254,0.299413958444326,0.2767714437932871,0.2120404901438465,0.2117741076185402,11.061048085300962,5.889622019050497,15.551341577194725,11280.695923878422,42.96595872516481,12.897937102358012,12.63556963848402,8.731407731693487,8.701044252629304,0.5844432605221097,0.8075072184793071,0.7019572953736655,0.5829145728643216,0.1283018867924528,0.7688172043010753,0.9193205944798302,0.8825503355704698,0.7431693989071039,0.1585365853658536,0.5064442759666414,0.7147887323943662,0.6368038740920097,0.5350734094616639,0.1204437400950871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.004521583973722,0.0067080720128275,0.0088391278727165,0.0110982259114583,0.0133435192258721,0.0157378319937987,0.0179051120984627,0.0202075983023981,0.0222008315071579,0.0242549176460935,0.0264712226890324,0.0284444535887333,0.0305718701700154,0.032936974876654,0.0349460141480163,0.0369787079728539,0.0389828749351323,0.0408063492723925,0.0425338989233639,0.0569724070920355,0.0704136869548828,0.0835974726589559,0.0958834918764205,0.1079392551473769,0.1238224273345047,0.1348883627599826,0.1452124826925125,0.1546682626538987,0.1633951856104916,0.174845898530109,0.1862962682285182,0.1970397779833487,0.2056306897759103,0.2137225537912656,0.2232165629816915,0.2320636941252666,0.2409405411486752,0.248683493735246,0.2542565136689658,0.2595735321355806,0.2649195671248903,0.2701196350598175,0.2739763803129308,0.2774499805749805,0.2815109490849077,0.2853711926949778,0.2881366704376454,0.2916677441878507,0.2959671997152386,0.2933367407327702,0.2902268041237113,0.287814683103046,0.2853927071759426,0.2827276366709666,0.2791585829730679,0.2748244575936883,0.2739761830863976,0.274362767603598,0.274037094940307,0.2755975873110433,0.2757285750781142,0.2775587677033143,0.2779619534987206,0.2805330271059116,0.2819330777996477,0.2828859536997585,0.2855257369115706,0.2907510601759366,0.2941129831516353,0.299963679288114,0.3044351641380768,0.3075037707390649,0.3151468904998092,0.3157745947983415,0.3141976040801802,0.3234138972809667,0.3264618434093161,0.3276097029163259,0.3379804069329314,0.0,2.520068313319403,48.08882912787404,139.05020554325915,191.6954217941991,fqhc5_100Compliance_implementation,9 -100000,95631,48236,460.2900733025901,4849,49.460948855496646,3827,39.46419048216583,1483,15.141533603120328,77.3146043072854,79.73358802832067,63.296484254502126,65.08283405456604,77.10904450232243,79.53202194666146,63.21708037784072,65.0077116884836,0.2055598049629736,201.5660816592089,0.0794038766614022,75.12236608243938,229.7317,161.65371914813718,240227.22757264905,169039.034568432,541.25063,364.8940649952056,565423.3773567149,381009.7823877253,483.63277,236.92760665919775,502909.840951156,245476.15941607565,2671.14014,1263.476809268538,2758677.332664094,1286703.4635929116,847.12675,387.2661207854612,875690.0063786848,394820.5615842996,1432.07598,630.519843006055,1464395.0183517898,629998.3581659709,0.3791,100000,0,1044235,10919.419435120411,0,0.0,0,0.0,47039,491.29466386422814,0,0.0,43714,454.25646495383296,1115672,0,40019,0,0,0,0,0,108,1.129340904100135,0,0.0,0,0.0,0,0.0,0.04849,0.1279082036402004,0.3058362548979171,0.01483,0.3621813870776526,0.6378186129223473,23.037566055098225,4.050065675604742,0.3046772929187353,0.2884766135354063,0.2059054089365037,0.2009406846093545,10.982335285884144,5.894643823125429,16.15101420761077,11333.8478054611,44.023084643003365,13.645818590086373,13.173934526392124,8.726105271680188,8.477226254844684,0.5764306245100601,0.7916666666666666,0.6912521440823327,0.5736040609137056,0.0962288686605981,0.7510305028854081,0.9281314168377824,0.8947368421052632,0.7205882352941176,0.1155778894472361,0.4954093343534813,0.6839546191247974,0.6132858837485172,0.5222602739726028,0.0894736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0043301457241078,0.0064360255004669,0.0087080221510948,0.0108235677083333,0.0130780199633326,0.0153099213594312,0.0175298804780876,0.0195149891071994,0.0218226131836847,0.0239897435897435,0.0261222393425783,0.0284659067528085,0.0305500030910627,0.0325257801129267,0.0347316286331723,0.0367733913584084,0.0390381660367955,0.0412764806259624,0.0431372549019607,0.0574677802050778,0.0715280905938675,0.0843791021265424,0.0973093603941218,0.1091628839860656,0.1252316457170692,0.1359083038550198,0.1462296829203304,0.155886254707292,0.1656083803384367,0.1773845489857574,0.187894291846424,0.1985267677152913,0.2082169268693508,0.217023246585761,0.2255826859045505,0.2342185264663805,0.2413346254394663,0.2486620382469576,0.2549235516098322,0.2609486092776581,0.2662703891788163,0.2712765327745617,0.2756201964005227,0.280327868852459,0.2844277442404829,0.2876780867324602,0.2905792772064525,0.2932615810511881,0.2963695586237818,0.2936071154648331,0.2905805565097905,0.288266347575139,0.284414139809023,0.2814111423179231,0.2778543427661399,0.2754745057067325,0.2754632671835983,0.2752762856263044,0.2763986793968055,0.2768865898522848,0.2768762278978389,0.2778089829203853,0.2789209368472512,0.2800171628805034,0.2819719471947194,0.2814800191770777,0.2860070166723586,0.290275611024441,0.294662117111817,0.2971297668777792,0.3014489710205796,0.3042168674698795,0.3089713551507823,0.3141605295049874,0.3188920454545454,0.3225061576354679,0.329483282674772,0.3337863549877684,0.335632183908046,0.0,2.1176300133387453,52.89676222365844,134.18664202122858,194.1356935183321,fqhc5_100Compliance_implementation,10 -100000,95653,48433,462.11828170574887,4711,47.96504030192466,3755,38.75466530061786,1361,13.883516460539658,77.29129418892526,79.69198657647615,63.29829466637945,65.07028535657729,77.10902548442394,79.51093856961172,63.22847423253876,65.00248635279554,0.1822687045013253,181.0480068644296,0.0698204338406895,67.79900378174375,231.4422,162.76122777078726,241959.98034562427,170157.76585239076,536.01569,362.4601291361821,559829.1637481313,378388.2410293426,486.72616,240.04978234303,505721.40967873455,248498.03737125,2637.5901,1254.600172545451,2722792.353611492,1277298.646679271,863.337,394.9881873948037,893267.9163225408,403715.65738086094,1324.41988,578.5148265613992,1352680.4386689386,579636.3762356619,0.37974,100000,0,1052010,10998.180924801103,0,0.0,0,0.0,46705,487.7107879522858,0,0.0,43923,456.0442432542628,1107613,0,39766,0,0,0,0,0,88,0.9199920546140736,0,0.0,1,0.010454455166069,0,0.0,0.04711,0.1240585663875283,0.2888983230736573,0.01361,0.360732451678535,0.6392675483214649,22.975531168500098,4.0227528793119,0.3254327563249001,0.2793608521970706,0.1904127829560586,0.2047936085219707,11.57442300797372,6.3887322065501975,14.80590052902181,11284.107354739295,43.25301687041974,12.90777244047535,13.873972153234662,8.020505513789054,8.450766762920674,0.5842876165113182,0.7940896091515729,0.6857610474631751,0.6097902097902098,0.1131339401820546,0.7672131147540984,0.9156118143459916,0.8801089918256131,0.7727272727272727,0.143646408839779,0.4962524654832347,0.6939130434782609,0.6023391812865497,0.5473887814313346,0.1037414965986394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0045320896279022,0.0065669945088963,0.0087795955695559,0.0111711381741598,0.0133930844833732,0.0154781083671513,0.0175220046153531,0.0197938818910518,0.0220854749861773,0.0243354664041348,0.026487685639751,0.0286402073946052,0.0308407266582171,0.033003334400066,0.0350512478409713,0.0372761565246227,0.0394331101074598,0.0412951421763965,0.04326341687169,0.0578400125398401,0.0721976663803758,0.0859038699787917,0.0986781173697061,0.1103641870429194,0.125879750653529,0.1355824248150232,0.1456631267242573,0.1553913917338407,0.1639756087087216,0.1755401733730107,0.186369099827827,0.1968958160999608,0.204615620415581,0.2131411316096894,0.2230638703738618,0.2316500949614568,0.2391673890283578,0.2460579641044852,0.2526466544454628,0.2589754866785491,0.2641423357664234,0.2693496252619614,0.2736200880169798,0.2778041218311143,0.2824821120157907,0.2863906807791069,0.2894522396801548,0.2927473894229523,0.2961487734107095,0.2923383298797061,0.2889020346957586,0.2858732394366197,0.2826165470016324,0.2801497459666637,0.2769445253014263,0.2729617265003243,0.2735599730790065,0.2743095290962816,0.2743705501329384,0.2753631326744534,0.2759567157695193,0.276795984523685,0.2782693979448543,0.2801999378183818,0.2811585192093469,0.2813549752999294,0.2870058610799351,0.2927841523384368,0.2980905791383935,0.3015579137502822,0.3066233153285437,0.309697536638603,0.315032184778493,0.3215755988023952,0.3244170907799739,0.3281273924360741,0.3231334149326805,0.3284851811196487,0.3387157341344348,0.0,1.7760993752913068,53.482225615236416,128.2282123673304,190.5451544166229,fqhc5_100Compliance_implementation,11 -100000,95634,48419,463.1616370746805,4664,47.60859108685196,3741,38.56369073760378,1430,14.565949348558044,77.27514686010801,79.68568990719244,63.27600815666828,65.0560055615967,77.08826739221291,79.50233510335632,63.20629378601146,64.99014542519289,0.1868794678950962,183.35480383612435,0.0697143706568255,65.86013640381339,230.9362,162.4046453370634,241479.1810443985,169818.94026921745,541.89924,366.5701551850931,566074.3250308468,382741.61153526703,485.62687,238.5812001453776,504239.841478972,246825.0582716165,2625.85845,1234.2908563579217,2707976.911976912,1252918.31585626,847.84043,392.1146753581722,872728.2242717025,396257.1900408724,1387.08856,589.9967113673001,1414648.4304745174,586813.050172441,0.37952,100000,0,1049710,10976.32641110902,0,0.0,0,0.0,47207,493.025493025493,0,0.0,43848,454.9218897044984,1104704,0,39623,0,0,0,0,0,95,0.99337055858795,0,0.0,0,0.0,0,0.0,0.04664,0.1228920741989881,0.3066037735849056,0.0143,0.3611626468769326,0.6388373531230674,23.08679766800717,3.998926652656837,0.3151563753007217,0.280940924886394,0.2031542368350708,0.2007484629778134,11.49865893962108,6.339418784112,15.291262840706109,11300.83570218082,43.21506435676149,12.94402751423128,13.389823687900632,8.573273427095495,8.307939727534073,0.586741512964448,0.7897240723120837,0.7048346055979644,0.5907894736842105,0.1131824234354194,0.7543859649122807,0.9074889867841408,0.8710691823899371,0.7198067632850241,0.1366459627329192,0.5132641291810842,0.7001675041876047,0.6434378629500581,0.5424954792043399,0.1067796610169491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0046217933774565,0.0066663284460453,0.0086642965972574,0.0107202066741931,0.0128421867361903,0.0149895990537178,0.0171514328592867,0.0193430321122959,0.0214613368283093,0.023663237360631,0.0259808302770672,0.0282421935284736,0.0301908963469943,0.0322693900310818,0.0343864440444416,0.0365053534966158,0.0385709834873818,0.0407288317256162,0.0423905562391807,0.0565862223940968,0.0702055871073202,0.0842174926991197,0.0962158403742019,0.108800135207935,0.1238376649509648,0.1345638867635807,0.1440434059608578,0.1539218938964222,0.1626989671442236,0.173877841829134,0.1851550639774452,0.1966321525885558,0.2057914126573395,0.2139397349751194,0.2237658948303626,0.232343463277089,0.2392824909747292,0.2468226968107499,0.2536424069162677,0.2600795463769292,0.2658101724319825,0.2713972375363092,0.2762821513016551,0.280558223216348,0.2849533297986461,0.2882428099007916,0.2914169370745053,0.2946567458259878,0.298452274047858,0.2958951353244688,0.2919740173951338,0.2883751707049233,0.2859534668899024,0.2819417245267343,0.2779468203850094,0.2745141377622709,0.2750519784555441,0.27540493227051,0.2754596322941646,0.2760179305192379,0.2766568903411215,0.2788824670853589,0.2803020179072564,0.2830260952836964,0.2844179414052372,0.2849983010533469,0.2899049286965224,0.2950997170898676,0.2990325765054294,0.3048372513562387,0.3077979712595097,0.3101984770939957,0.3119777158774373,0.3169184853572094,0.3224778761061947,0.3286235186873291,0.326497788500201,0.3297872340425531,0.3313046785850133,0.0,2.0271150205638278,49.724367455102254,142.08557389753875,186.03863315345973,fqhc5_100Compliance_implementation,12 -100000,95691,48065,458.611572666186,4838,49.39858502889509,3811,39.31404207292222,1446,14.808080174729076,77.28391542799022,79.68215492144529,63.28504443165552,65.05981050310669,77.09512326854153,79.49412089346838,63.21327096247912,64.99029942124028,0.1887921594486954,188.0340279769115,0.0717734691763993,69.51108186640909,230.5655,162.2253114576102,240947.94703786145,169530.375330606,537.08784,361.9549243202234,560795.7070152889,377776.4934217674,480.49762,235.4303422897661,498620.36137149786,243331.4967211396,2669.19468,1259.4836650780026,2756677.7753393734,1283486.968552949,875.14694,399.4436683596224,901322.7158248946,404198.35549803305,1405.8803,606.5361462692377,1440751.021517175,609553.4724064566,0.37996,100000,0,1048025,10952.179410811885,0,0.0,0,0.0,46849,489.0742076057309,0,0.0,43631,452.4354432496264,1112752,0,39946,0,0,0,0,0,67,0.7001703399483755,0,0.0,0,0.0,0,0.0,0.04838,0.1273291925465838,0.2988838362959901,0.01446,0.3615079365079365,0.6384920634920634,23.21784158349549,4.029307557595767,0.3059564418787719,0.2852269745473629,0.2046706901075833,0.2041458934662818,11.205628713570322,6.119654949252746,15.63372131642342,11307.018977626662,44.03020640294019,13.47705592552562,13.273109446242112,8.647497818204789,8.632543212967672,0.5896090265022303,0.8233670653173873,0.7015437392795884,0.5807692307692308,0.1041131105398457,0.7495667244367418,0.9171974522292994,0.8785942492012779,0.7005347593582888,0.1475409836065573,0.5201354911554384,0.7516233766233766,0.6365767878077374,0.5430016863406408,0.0907563025210084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021077805476175,0.0042295520934761,0.0065788805750428,0.0085466611111675,0.0107343080695542,0.0129879390432727,0.0153500943444336,0.0176798627282755,0.019892610585528,0.0221680427789956,0.0243039169419537,0.0264682914800049,0.0284417735977197,0.0304950944018468,0.0325777282299021,0.034716333326439,0.036763029737851,0.0386455878841981,0.0405458819613472,0.0428030974143052,0.0570243703711441,0.0713597721847648,0.0853430724345654,0.0981407241390195,0.1102468575529545,0.1255094155878523,0.136109754284622,0.1460232597767743,0.1561411010154997,0.1655020662265872,0.1771921315009431,0.1877999371689181,0.1982860938401733,0.2071246317772156,0.2158191716811038,0.2255583181636549,0.233581130177184,0.2409456627076243,0.2483267996136583,0.2548059276931547,0.2607128368588814,0.2664509928030569,0.2711683506475025,0.274968493068475,0.278588200941686,0.2819184368292502,0.2851006274342822,0.2879117523569602,0.2920178675470965,0.294754327449145,0.2916571336285211,0.2892443858057777,0.2861018950683237,0.2831692587094077,0.2804382032479292,0.2775542056217771,0.2741060555740064,0.2738514454180656,0.2744238412855461,0.2743836129285294,0.2744532654284002,0.275587281499644,0.2772029967891545,0.2788760774655771,0.279530217527613,0.2807703333072733,0.2825038306566029,0.2886862800388508,0.294642235072807,0.2976190476190476,0.3017957047464357,0.3046743697478991,0.3074158974041261,0.313369540956774,0.3158330268481059,0.3144983141495175,0.3167692538657859,0.322304165836157,0.3247535596933187,0.3334590720482837,0.0,2.0495338177093734,50.31123819516169,147.4850433143721,187.3568530156007,fqhc5_100Compliance_implementation,13 -100000,95655,48492,463.906748209712,4726,48.183576394333805,3807,39.1720244629136,1427,14.510480372170822,77.35161970545354,79.75886683612065,63.31721993396855,65.09484656833764,77.16391145728369,79.57594343578785,63.24513032227435,65.02765431923298,0.1877082481698551,182.9234003327969,0.0720896116942029,67.19224910466437,231.8206,163.0406588408379,242350.50964403324,170446.33886450046,545.89585,368.8952965651681,570100.4547592913,385060.1747584215,488.85207,239.96418911967064,508005.76028435526,248429.3215813045,2670.47723,1259.1766974355778,2750345.8575087558,1274974.6109827794,865.08856,393.4790134722668,891154.2627149653,398122.4854657532,1383.7443,599.653301448356,1408384.611363755,593065.9295163221,0.38021,100000,0,1053730,11015.932256546965,0,0.0,0,0.0,47526,496.210339239977,0,0.0,44098,457.89556217657207,1102957,0,39524,0,0,0,0,0,97,1.0140609481992575,0,0.0,1,0.0104542365793737,0,0.0,0.04726,0.1242997290970779,0.3019466779517562,0.01427,0.3636363636363636,0.6363636363636364,23.16828146279606,4.069624919887517,0.3146834778040451,0.2779091147885474,0.2061991069083267,0.2012083004990806,11.284858663856154,6.022772625046053,15.423232488450278,11250.421679592231,43.88317334372267,13.057466358597123,13.689064365336002,8.714448305132441,8.422194314657101,0.5797215655371684,0.8005671077504726,0.6936560934891486,0.5656050955414013,0.1109660574412532,0.7536480686695279,0.9121338912133892,0.8495575221238938,0.6963350785340314,0.1337579617834395,0.5030280090840272,0.7086206896551724,0.6321303841676368,0.5235690235690236,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025025075733781,0.0046848856664807,0.0069620638561308,0.0091339510688449,0.0114231657325372,0.0135465471582807,0.015856829653801,0.017890147144418,0.0201022494887525,0.0221653180374884,0.0243962492562119,0.0263890744299322,0.0284341168237763,0.0302592917160678,0.0323620249765006,0.0345673136613831,0.0363191608449594,0.0383393546779618,0.040410346047402,0.0423044838373305,0.0572640730639414,0.0706596858638743,0.0847932652439984,0.0975186260891526,0.1093332770430726,0.1245249865037948,0.1352757544224765,0.145521990321274,0.1550460580513325,0.1632230073669967,0.1754429478815067,0.1860976587469258,0.196570682053236,0.2057451886234755,0.2148308864830335,0.2233358463789968,0.2309411278338305,0.2384833611023551,0.2461349860382755,0.2520751519869938,0.2575314267210972,0.2628344432760836,0.2687911490407915,0.2738402987218153,0.278123446009048,0.2822014195564193,0.2859942334336033,0.2892960462873674,0.2923291348337807,0.2959320518551632,0.2926920959707845,0.289902771492437,0.2868317207094609,0.2828063098753872,0.28101573379952,0.2770834287109524,0.2731701933083157,0.2730037774107566,0.2730057173972229,0.2734966750826784,0.2734213129748194,0.2744303996540132,0.274822842851188,0.2758046614872364,0.2777989609646823,0.2789593227338426,0.2795686783718173,0.2849572969266255,0.2888672621737166,0.2933223283417835,0.2950214012164902,0.2975681035382528,0.2994678876376686,0.3049985034420832,0.3064501245732213,0.3071235770449477,0.3097867191045227,0.3119047619047619,0.3132337246531483,0.3215744522836984,0.0,2.453520472968492,50.38508214729124,142.5837587216702,189.9000360416448,fqhc5_100Compliance_implementation,14 -100000,95787,48930,468.02802050382616,4843,49.349076597033,3852,39.59827534007746,1482,15.08555440717425,77.3507064425629,79.67860682290141,63.34838135415546,65.06985035405474,77.15659913839133,79.49052809470801,63.27491543569069,65.00161710853658,0.1941073041715668,188.0787281934033,0.0734659184647696,68.23324551815801,232.08416,163.3154357293875,242291.9185275664,170498.5391852626,540.66313,365.12152276282177,563846.7641746793,380584.3097318236,493.41033,241.84475979400037,511505.5696493261,249688.55644959904,2747.56102,1285.3217079369604,2824170.5868228464,1297843.636787457,907.49879,411.9018032353966,927274.1916961592,409879.36070176034,1444.47844,618.8975059100112,1470771.5451992445,611554.8812252177,0.38309,100000,0,1054928,11013.269023980289,0,0.0,0,0.0,47046,490.5154144090534,0,0.0,44624,462.2339148318665,1105798,0,39664,0,0,0,0,0,76,0.7934270830070886,0,0.0,0,0.0,0,0.0,0.04843,0.1264193792581378,0.3060086723105513,0.01482,0.3653049141503848,0.6346950858496152,23.15737935831049,4.090872447393811,0.2897196261682243,0.2917964693665628,0.2050882658359294,0.2133956386292834,11.029577707259566,5.849494779266639,15.866247153823428,11354.344094174194,44.16353227129427,13.775367537938944,12.63429756402148,8.77913335653935,8.974733812794511,0.5802180685358256,0.800711743772242,0.6783154121863799,0.6063291139240506,0.1204379562043795,0.7478411053540587,0.9047619047619048,0.8594249201277955,0.746031746031746,0.1098265895953757,0.508166295471418,0.7223088923556942,0.6077210460772104,0.562396006655574,0.12326656394453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0045214922952149,0.006707459384862,0.008918413781895,0.0111029770619814,0.0132142893501786,0.0152765888060005,0.0173485320080415,0.0191912688923633,0.0212239050347932,0.0235362829682152,0.0254673808204559,0.0274803198158386,0.0291734865095786,0.0312751345666027,0.0335540656411739,0.0356777004025123,0.0377143331052642,0.0398055933453106,0.0419642299444085,0.0567323344046078,0.0713531373840668,0.084220899027172,0.0966318112553202,0.1093674248013321,0.1253792243210959,0.1361958896265032,0.1472478821676386,0.1566720403130237,0.1656180666459447,0.1774861952789468,0.1883254436590796,0.1986243317251271,0.2072763028515241,0.2153874907923524,0.2244949886054384,0.2331873544389841,0.2410996146630267,0.2487393053430789,0.2550538274090769,0.2608143375135684,0.2656073042300552,0.2716224523573083,0.2772677765676054,0.280514723718042,0.2851306787419402,0.2891742340024232,0.2924093247792669,0.2955821111714647,0.2989468141126909,0.295522909169039,0.2927632933811112,0.2897204143883274,0.2868705814456788,0.2844349553717047,0.2816841140062657,0.2782309054122407,0.2773794483912779,0.2769217643545772,0.2772409612779006,0.2776393909313955,0.2793658941051052,0.2808435778759764,0.2818417871692707,0.2831121457198396,0.283984375,0.2847655693316232,0.2892616604771196,0.2940205751202556,0.2983759434148654,0.3015274115828711,0.306766116142781,0.3100662669611865,0.3142791551882461,0.3192867198498357,0.3249555423829283,0.3258633921719109,0.3296319144560971,0.3335195530726257,0.3457508731082654,0.0,2.4288546286536383,49.97873930165681,140.77269399142858,198.39394140929127,fqhc5_100Compliance_implementation,15 -100000,95730,48519,462.9374281834325,4836,49.15909328319231,3863,39.705421497963016,1454,14.770709286535046,77.31652017658898,79.67651288734321,63.31665033110207,65.06197479003588,77.12961172122021,79.49474670427853,63.24549267010864,64.99550322882476,0.1869084553687656,181.7661830646813,0.0711576609934283,66.47156121111664,231.65428,163.00129469661073,241987.13047111663,170271.90504189985,544.43315,367.3692846078098,568075.1593022041,383113.42798266985,488.97458,240.50338330997548,506457.609944636,247953.9328077519,2742.33964,1286.4662860212668,2819899.968661861,1299087.9411065157,902.96162,411.6532468864587,926871.6912148752,413648.6962148301,1418.69254,609.6618252161255,1442452.668964797,602689.4597586195,0.37998,100000,0,1052974,10999.415021414394,0,0.0,0,0.0,47458,495.0799122532121,0,0.0,44193,457.3487934816672,1102760,0,39598,0,0,0,0,0,89,0.9296981092656428,0,0.0,0,0.0,0,0.0,0.04836,0.1272698563082267,0.3006617038875103,0.01454,0.3606264869151467,0.6393735130848532,23.36589687125963,4.048833686229903,0.3083096039347657,0.2736215376650271,0.2130468547760807,0.2050220036241263,11.31103424687494,6.099570893701945,15.622367132432272,11337.318671797122,44.32294322939445,13.005211596078787,13.641298527097744,9.01307955497676,8.663353551241173,0.5847786694279058,0.8174077578051088,0.6960537363560033,0.583232077764277,0.1085858585858585,0.7698887938408896,0.9328859060402684,0.8526912181303116,0.7524271844660194,0.1656441717791411,0.5044543429844098,0.7327868852459016,0.630071599045346,0.526742301458671,0.0937996820349761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023601867890317,0.0045113086850295,0.006688657701091,0.0090025097290102,0.0111287434895833,0.0134744260892591,0.015828174558657,0.0182183960867212,0.0205826116297379,0.0227386741745584,0.0246493314740382,0.0267686620802957,0.0290083086541625,0.030922421072142,0.0329351817469158,0.0352947254223278,0.0372237461829097,0.0391054498682654,0.0411001621554197,0.0430787502474293,0.0576431159231146,0.0717955694149409,0.0851887198095497,0.0975835453952764,0.1097134060186845,0.1246985658078436,0.1353263810059303,0.145708476597013,0.1550871269992201,0.1631923955841174,0.1749706443168474,0.1864678253717452,0.1965788729637443,0.2059932873432529,0.2152118877270225,0.224200984086174,0.2327103012438311,0.2403294403564436,0.2476196960927836,0.2544157063984788,0.2602931479274881,0.2658901402191582,0.2712058987135028,0.2755395683453237,0.2792364798367009,0.2829188296075264,0.286433041301627,0.2903800399506342,0.2941359142901506,0.2982893469974544,0.2953695482551726,0.2917721867430081,0.2891965431193695,0.2863815142576204,0.2843261073057664,0.2798732510792027,0.2772059637306518,0.2772399081063341,0.277551996174994,0.2777182645956079,0.2775864650396766,0.2780636892438134,0.2788966267227137,0.2792123806975292,0.2810336981773765,0.2822252725907125,0.2839933104679837,0.2880673841834347,0.2922349011967715,0.2976546513458208,0.3022878028969812,0.3043592991344733,0.3065474329310237,0.3101375216051702,0.315902112217363,0.3213483146067415,0.3254961832061068,0.3234821069561721,0.322057205720572,0.3189292543021032,0.0,2.515034290223265,50.46913780974358,139.72709128554095,199.54613539182927,fqhc5_100Compliance_implementation,16 -100000,95684,48207,460.67263074286194,4779,48.94235190836503,3792,39.107896827055725,1470,15.091342335186656,77.40264542862671,79.78459542928448,63.35728834693722,65.11263348083068,77.21543779169808,79.59803642124281,63.28639425566175,65.04400060443656,0.1872076369286333,186.55900804166947,0.0708940912754698,68.63287639411908,232.98176,163.8091211644349,243490.82396220893,171198.02805530172,544.33536,366.7555991607493,568349.5464236445,382775.40681047423,483.48616,236.88995423506387,502005.1105723005,245036.06796723028,2663.49171,1252.705691987166,2747913.1934283683,1274586.1354944035,881.38453,399.8677462707219,909054.8681075206,406360.0870842917,1420.34844,603.6681785083485,1459284.3317587057,609587.071789003,0.37835,100000,0,1059008,11067.764725554953,0,0.0,0,0.0,47470,495.5582960578572,0,0.0,43780,454.2243217256804,1103526,0,39569,0,0,0,0,0,93,0.9719493332218552,0,0.0,0,0.0,0,0.0,0.04779,0.1263116162283599,0.3075957313245449,0.0147,0.3591746794871794,0.6408253205128205,23.14034327796177,4.043350651487606,0.3032700421940928,0.2811181434599156,0.2128164556962025,0.202795358649789,11.352342644558677,6.392323452294374,15.71968091861366,11230.353300015406,43.43879518833425,13.049204133389756,13.06799869610825,9.029695794245704,8.291896564590543,0.5946729957805907,0.8292682926829268,0.7095652173913043,0.5749690210656754,0.118335500650195,0.7687763713080169,0.9293361884368307,0.8794117647058823,0.7077625570776256,0.1446540880503144,0.5155350978135789,0.7512520868113522,0.6382716049382716,0.5255102040816326,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050429869064,0.0043479582839247,0.0065631974031243,0.0087240892518001,0.0109415198137094,0.0131152882715923,0.0154046917532394,0.0178299874465457,0.0199887588779316,0.0220846338842552,0.0242422378711932,0.0261172195016785,0.0281310727027832,0.0300318238462568,0.0321295914156005,0.034293510278751,0.0363651424784625,0.0383849075400037,0.0403852354158649,0.042274219604982,0.0567882662655133,0.0705191296881871,0.0836656312961719,0.0967443328249092,0.1089031632018057,0.123731736476264,0.1345692637476919,0.1443976070341274,0.1537516295172354,0.1632440779385113,0.1740932977257064,0.1848934098041337,0.1962006045975511,0.2047820002623868,0.213161454953419,0.2225875372233846,0.2302908033037217,0.2387648968313695,0.2463303583563629,0.2529120609046535,0.2586889522468343,0.2645847672153331,0.2702504898836084,0.2746254021022924,0.2779225501484758,0.2819510035419126,0.285867759303444,0.2891147399540685,0.2925034849501781,0.2946196123806769,0.2918689808729243,0.2897421501636381,0.2869576185671039,0.2844474467137128,0.2813945583258206,0.2766171428571428,0.2729322359915492,0.2729978576217967,0.2741831397323551,0.2743793146284761,0.2739447900756249,0.2741850220264317,0.2735227037113829,0.2740226930236681,0.2757205573582745,0.2760734609415416,0.2766980678378455,0.2815555140419702,0.2853559983279922,0.2893215339233038,0.2950241786053238,0.2985248241949981,0.3006936199462601,0.3019977384093479,0.3040351204931814,0.3076743915220682,0.3154067565520376,0.3207696885538583,0.3239247311827957,0.3293856402664692,0.0,1.9896306252187623,51.66814158430531,132.1940714454916,194.68575188817144,fqhc5_100Compliance_implementation,17 -100000,95723,48301,460.3177919622244,4686,47.65834752358367,3722,38.24577165362557,1407,14.343470221367904,77.33907921770925,79.70541241985407,63.32552877917672,65.07523733506325,77.15400562193685,79.5235481163541,63.2556138491202,65.00853562652408,0.1850735957724083,181.86430349996385,0.0699149300565125,66.70170853917057,233.19978,163.92131486935625,243619.38092203543,171245.4842298677,542.50838,366.6247329957681,566116.8162301641,382374.5108236977,480.3985,236.17191902738375,497151.9070651776,243186.4432556618,2638.77165,1255.7188801862326,2716630.088902354,1271781.12907685,866.54547,401.4766879140233,887965.3374841992,402116.8140509829,1373.16064,593.9163464530184,1402077.724266895,594315.1670370293,0.38001,100000,0,1059999,11073.608223728885,0,0.0,0,0.0,47386,494.3743927791649,0,0.0,43518,449.9963436164768,1100701,0,39486,0,0,0,0,0,85,0.8775320455898792,0,0.0,0,0.0,0,0.0,0.04686,0.1233125444067261,0.3002560819462228,0.01407,0.3582887700534759,0.6417112299465241,23.01371411657012,4.021629423019367,0.307898979043525,0.2815690488984417,0.2020419129500268,0.2084900591080064,11.446140401660376,6.230881203738202,15.201541352764922,11251.336792347103,43.07181937814341,12.841183275876196,13.126557480313869,8.476448145694077,8.627630476259265,0.5803331542181622,0.8015267175572519,0.6928446771378709,0.5824468085106383,0.1134020618556701,0.7547495682210709,0.9406392694063926,0.8700906344410876,0.7246376811594203,0.1318681318681318,0.5015600624024961,0.7016393442622951,0.6208588957055214,0.5284403669724771,0.1077441077441077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045423206391694,0.0067192432223947,0.0088705088603479,0.0112102377343519,0.0136369654441943,0.015826237699485,0.0181012567764857,0.0202049121658929,0.0221430180872201,0.0243162029392761,0.0264679601080492,0.028724815649008,0.0311653256132614,0.0329686209744013,0.035323923271806,0.0372929464535443,0.0394034993047051,0.0415852086019716,0.0434442881700265,0.0574796654589498,0.0710952540386708,0.0842883355176933,0.0962721489037278,0.107878391631252,0.1232137757422548,0.1342548880236789,0.1439491530837121,0.1538436878886965,0.1622158085040181,0.1746209631361731,0.1862683528953181,0.196342511504444,0.2061291699033906,0.2150626417420789,0.2253477417567193,0.2333541731791184,0.2414786473864851,0.2481389014979573,0.2539869850144356,0.2599710731848423,0.2654161452912491,0.2704348237296952,0.2733921453622685,0.2777440873256519,0.2812542268675069,0.2845730405801805,0.288237309209942,0.2913977384210254,0.2942500592370271,0.2902953020134228,0.2875965906751396,0.2844106356951025,0.2820764380834211,0.2802247490845477,0.2758710229268814,0.2713424259645134,0.2710364604670217,0.2710869082777104,0.2697948260481713,0.2714237643012039,0.272048539290428,0.2731857780000833,0.2755656511669339,0.2766673830503617,0.2786139125937419,0.2816801676768821,0.2853215881048324,0.289872755795712,0.296069765606503,0.2982829701445204,0.2998941798941799,0.3047738693467337,0.3100857554830386,0.3099637849382486,0.3092043314500942,0.3174773668866043,0.3218693101355452,0.3228389947528307,0.3231707317073171,0.0,2.5186415257349077,49.88144070976782,139.42942935273297,184.68047096593705,fqhc5_100Compliance_implementation,18 -100000,95686,48114,458.4160692264281,4831,49.23395272035616,3837,39.51466254206467,1399,14.24450807850678,77.30793472821749,79.68340778461274,63.31631099018998,65.06990844153694,77.13361973557336,79.51271007364586,63.25017814989035,65.00720713566746,0.1743149926441276,170.69771096687705,0.0661328402996304,62.701305869481416,230.45176,162.1950515396863,240840.9798716636,169507.11058673734,540.9471,364.2408149290957,564748.2285809837,380079.7356016801,484.27426,238.0373767810605,502129.7472984553,245734.16470891304,2681.56352,1251.3030845186288,2765309.6691261,1271002.5093240738,854.65137,386.2935332189704,879542.1064732563,390069.5563785979,1358.56208,578.2455502975347,1385854.503271116,576200.6907334591,0.38042,100000,0,1047508,10947.317266893797,0,0.0,0,0.0,47185,492.4962899483728,0,0.0,43798,453.75499028070976,1112693,0,39951,0,0,0,0,0,87,0.9092239199046882,0,0.0,0,0.0,0,0.0,0.04831,0.1269912202302718,0.2895880770026909,0.01399,0.3486985893105503,0.6513014106894496,23.53620985728984,4.098344537630696,0.3137868126140213,0.2825123794631222,0.2097993223872817,0.1939014855355746,11.322636978848198,5.93468144112126,14.904493616752704,11288.33274445704,44.04285353703001,13.282295446005593,13.706619252212056,9.048009656993472,8.005929181818887,0.5900443054469637,0.7878228782287823,0.6976744186046512,0.5987577639751552,0.1182795698924731,0.7789382071366405,0.9135254988913526,0.8681948424068768,0.7666666666666667,0.1366906474820144,0.5093005952380952,0.69826224328594,0.6280701754385964,0.5394957983193277,0.1140495867768595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047626768270438,0.0071617687337059,0.0094661574713577,0.0116141892441623,0.0138181744124475,0.0160292033322796,0.0185706993363961,0.0205585883988631,0.0231136952226919,0.0251055890433427,0.027135523613963,0.0293201147711262,0.0313481884393897,0.0336294874573053,0.0355618041412961,0.0374860126818351,0.0393982808022922,0.0414733601015249,0.0435639229422066,0.0583172298532407,0.0728064391203776,0.0861974904528096,0.0988041271811268,0.1103098544032219,0.1260019881136185,0.1369326741496743,0.1468734697353573,0.1553715476254073,0.1641206633911905,0.1757977835456807,0.1862437525692896,0.1968753057829674,0.2048433827146996,0.2134882134882134,0.2222985246555314,0.2299530275475024,0.2382511079615756,0.2462904982303294,0.2525965028799138,0.2583728735100104,0.2640913820719973,0.2695233475694157,0.2743490145302834,0.2778155918029997,0.2807229509813591,0.2844997057460902,0.2890521544259957,0.2920149824384048,0.2944748828305498,0.2908846102060051,0.2872028520695398,0.2846355414048632,0.2821606151711378,0.2805146184929878,0.2774888331395704,0.2743708577845969,0.274985225556504,0.2755298980341252,0.2753659362798409,0.2759491775977246,0.2772625014800489,0.278701537433155,0.2786717411141528,0.2789237883035051,0.2796098829648895,0.2814718073931065,0.2867920984253201,0.2904107668582644,0.2940828168791695,0.299364502950522,0.3028511087645195,0.305752018526632,0.3111346284677602,0.311237314961363,0.3161471760018748,0.3219096079018258,0.323186400474402,0.325803879883072,0.3330871491875923,0.0,2.234233781917147,49.8064223015765,140.1151529906402,199.29596429675715,fqhc5_100Compliance_implementation,19 -100000,95707,48348,460.5514748137545,4835,49.22314982185211,3857,39.71496337780936,1421,14.471250796702437,77.38171245272493,79.75444519237982,63.34258245905804,65.09449863353416,77.19653582223339,79.57514136127365,63.27025933655295,65.02730648268067,0.1851766304915401,179.30383110616788,0.0723231225050966,67.19215085348651,231.69146,162.8951079283004,242083.9019089513,170201.64452788248,540.23854,364.8678666225834,563868.389981924,380631.35049952805,490.6019,240.8516981875171,509391.4238247986,249139.84243627236,2705.8056,1277.79633431591,2785467.719184594,1293690.0204230824,900.10148,418.4191931996163,920372.1880322234,417196.4503679078,1386.41928,603.2461330065396,1412587.5014366766,597349.7282298482,0.37975,100000,0,1053143,11003.81372313415,0,0.0,0,0.0,47090,491.395613695968,0,0.0,44318,459.8514215261162,1108872,0,39771,0,0,0,0,0,98,1.0135099835957664,0,0.0,1,0.0104485565319151,0,0.0,0.04835,0.1273206056616194,0.2938986556359876,0.01421,0.3569579932311367,0.6430420067688633,23.12952642046259,4.046110142901384,0.3095670210007778,0.2875291677469536,0.1941923774954627,0.2087114337568058,11.29477526087306,6.237686814048396,15.125465151083183,11304.20053572434,44.26371895082544,13.571003379458816,13.677403540141576,8.235819980450826,8.77949205077423,0.599170339642209,0.8277727682596934,0.7252931323283082,0.5767690253671562,0.1180124223602484,0.7594617325483599,0.9309623430962344,0.8476454293628809,0.7485029940119761,0.1475409836065573,0.527736131934033,0.7496038034865293,0.6722689075630253,0.5274914089347079,0.1093247588424437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0052306663017364,0.0073466737021552,0.0096296446783007,0.0119006448725512,0.0139103869653767,0.0159979607443283,0.0181305892441504,0.0204348670558048,0.0225202170130003,0.0247685636078447,0.0268580404718637,0.0292263551382647,0.0314074104595226,0.0333429650574807,0.0355455381974958,0.0375851854920562,0.0397227295367756,0.0417477040842858,0.0437079881194309,0.0577644097711773,0.0714323104787629,0.0849108079748163,0.0980377715818822,0.1093481311122598,0.1244936166612017,0.1353284516608298,0.1448833989990416,0.154174101657246,0.1629276771057967,0.1755025057929622,0.1866317282600457,0.1965711550595043,0.2054957792065783,0.2142692117278178,0.2241155954160438,0.2327905420477359,0.2412327072320323,0.2482560711409548,0.2549800796812749,0.2607694799185637,0.2661765393426528,0.2708084381396339,0.27497274829003,0.2793876634334066,0.2840465488578289,0.2863105279600125,0.2903521037244184,0.2931377874343653,0.2952147627138736,0.292390355295856,0.2890041010026197,0.2869520038194737,0.2837925329113013,0.2815677465121778,0.2777600146165441,0.2728761772765931,0.2728295977292747,0.2727765910555046,0.2733814224695602,0.2733853110288234,0.2753463908623464,0.2765538129615799,0.2768460464807142,0.2774482479334905,0.2776576019777503,0.2795372012498944,0.2834433392209723,0.2874779541446208,0.2931379080612925,0.2949565843343681,0.3009458749343142,0.3047178075334751,0.3083446918067545,0.3088385955108503,0.3125586854460094,0.3193162910301013,0.326645264847512,0.334614328849849,0.3348659003831418,0.0,2.238614951887811,51.44946462946098,141.42888884853951,193.2479774137792,fqhc5_100Compliance_implementation,20 -100000,95844,48745,464.014440131881,4790,48.65197612787446,3775,38.65656692124703,1443,14.554901715287343,77.44506122741345,79.72475218644782,63.40474875222951,65.08522198993323,77.25567650486606,79.54398587605768,63.331280309288594,65.01879495460219,0.1893847225473877,180.7663103901405,0.0734684429409142,66.42703533104566,232.1979,163.3966682968604,242266.4955552773,170481.89589005095,544.77177,367.7983047797538,567677.1524560745,383029.7408077229,483.33065,237.8138711717849,500174.0015024415,244885.30026283007,2670.71815,1257.5522535826328,2734203.73732315,1259759.9574127048,890.55514,414.4341461734503,904849.8288886108,408083.2145710218,1402.28986,607.2341904601843,1416003.4222277869,592359.903041593,0.38285,100000,0,1055445,11012.113434330788,0,0.0,0,0.0,47550,495.37790576353245,0,0.0,43693,451.9740411502024,1105782,0,39664,0,0,0,0,0,78,0.792955218897375,0,0.0,0,0.0,0,0.0,0.0479,0.125114274520047,0.3012526096033402,0.01443,0.350688210652304,0.649311789347696,23.1644255623454,4.098373698479303,0.2956291390728476,0.2852980132450331,0.2129801324503311,0.206092715231788,11.17096405587519,6.056897622468607,15.40166433242842,11341.221224650848,43.275382874544256,13.165952912794635,12.527280374686017,9.006084864622656,8.576064722440947,0.5854304635761589,0.8161559888579387,0.6765232974910395,0.585820895522388,0.1349614395886889,0.7596412556053812,0.9320175438596492,0.8412162162162162,0.7014925373134329,0.1975308641975308,0.512406015037594,0.7310789049919485,0.6170731707317073,0.5472636815920398,0.1185064935064935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002196400736857,0.0045786525390249,0.006702290540746,0.0092261783930818,0.0115430731400004,0.0139483777761951,0.0162144544936038,0.0185689375630946,0.0210254367960461,0.0231699710630988,0.0252713495801761,0.027424234654633,0.0295084324479776,0.0317234994599598,0.0336506758984503,0.0354263653911661,0.0373449991209291,0.0393989637305699,0.0414244186046511,0.0435162639695323,0.0583751316516679,0.0725912614664521,0.0859285011204423,0.0987007807908655,0.1107685508649354,0.1265042435502259,0.1370808887382712,0.1472350915968887,0.1569719075958277,0.1655445544554455,0.1772009029345372,0.1876512009676862,0.1981585833251902,0.2073988338319757,0.2153661939339345,0.2238315481986368,0.2318076425736835,0.2395064225750986,0.2466584284693958,0.2524571781640102,0.2587556511383214,0.2644445483667313,0.2693112869460313,0.2739608012061167,0.2774422045945224,0.281972094396732,0.2860466279767861,0.2902163687676387,0.2928284017544086,0.2959546712346818,0.2929546798559217,0.2899990395565495,0.2876844940793535,0.285525351120567,0.2827927595123753,0.2794565151238513,0.2753274525527934,0.27518823951237,0.2761083869216282,0.277129552577064,0.2779266205254149,0.2789254575445762,0.2798435256663684,0.2804888869171731,0.2822230699537456,0.2836487568097906,0.2845950059184939,0.2890498694192264,0.2921309433178766,0.297256994859318,0.3008857556037599,0.3021795345400813,0.3056161565791934,0.3124384143106192,0.3174751826184678,0.320543093270366,0.3274282223579719,0.3284984678243105,0.3257409440175631,0.325751734772552,0.0,2.860822260692806,47.40639609667133,142.2570745959258,193.0141376086472,fqhc5_100Compliance_implementation,21 -100000,95687,48401,462.9991534900248,4834,49.400650036055055,3851,39.691912171977386,1419,14.495176983289266,77.29747507811412,79.69963401950275,63.28577397120039,65.06529222018744,77.1153280673909,79.52121043170673,63.216504578458576,64.99966625212008,0.182147010723213,178.42358779601852,0.0692693927418162,65.62596806736565,231.6017,162.97693349140542,242040.9250995433,170322.96288043875,540.41976,363.997934900626,564243.2096314024,379869.3395138589,482.24724,236.26316257369143,499825.5144376979,243756.07988468828,2690.08981,1247.36251421853,2777830.677103473,1270073.8284391086,891.08881,403.3695232654005,919382.7165654686,409685.0285912597,1380.68134,586.9020366623674,1412842.956723484,587787.7141452684,0.38044,100000,0,1052735,11001.860231797424,0,0.0,0,0.0,47148,492.16717004399766,0,0.0,43658,452.1512849185365,1105516,0,39673,0,0,0,0,0,69,0.7211010900122273,0,0.0,2,0.0209014808699196,0,0.0,0.04834,0.1270634002733676,0.2935457178320231,0.01419,0.3579905063291139,0.6420094936708861,23.10622659255175,4.0168033923676845,0.3191378862633082,0.2822643469228771,0.1989093741885224,0.1996883926252921,10.770422354425513,5.694521634231584,15.11129587241083,11243.397305589182,43.95115617951643,13.524391026898783,13.758711955802656,8.352252645425907,8.315800551389085,0.5819267722669437,0.7902483900643974,0.7127746135069162,0.54177545691906,0.118335500650195,0.7644444444444445,0.8924050632911392,0.8837920489296636,0.7309941520467836,0.1503267973856209,0.5066030814380044,0.7112561174551386,0.6507760532150776,0.4873949579831932,0.1103896103896103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021585795938222,0.0042906700748584,0.006365805370831,0.0085865257595772,0.010711669921875,0.0129662449836012,0.0151972583737913,0.0174220297788035,0.0194423989527082,0.0214541730670762,0.0235198785541377,0.0257142563617871,0.027778349348752,0.0298124484748557,0.031853381517811,0.033597103697957,0.0355825041459369,0.0376088965495758,0.0397732001664585,0.0419159180440627,0.0569396132994892,0.070532816916152,0.0831969277260136,0.0966466108469727,0.1090003902665415,0.1243732148524278,0.1349423677004394,0.1449367964814755,0.1545649919274647,0.1633941319820932,0.175781039372796,0.1867608961921588,0.1973967977344516,0.2066502328129279,0.2149211283441912,0.2247725759928999,0.2328788556101922,0.2401950845892185,0.2483527968373699,0.2539826254383753,0.2598709737198716,0.2657276335663353,0.2697841300666674,0.2736292741451709,0.2784857844687112,0.280705000123338,0.2842865909404,0.2880526858846158,0.2907664375567371,0.2935627081021087,0.2904891597454427,0.2869193659545141,0.2842227050822586,0.2819889790428255,0.2797684429271189,0.2765157305775522,0.273054345767847,0.273640700562018,0.2739370279215819,0.2739529190541235,0.275237546254114,0.2747780412755032,0.2757057918589664,0.2763971712961937,0.2780174982716284,0.277705985733485,0.2790159026071236,0.2821902448140534,0.2882215966357349,0.2934590453741897,0.2988904925130796,0.3051310330339793,0.3098214841077315,0.313921200750469,0.3171953255425709,0.3220121381886088,0.3297019216220305,0.3341989612465042,0.3390059427336575,0.3393870601589103,0.0,2.1743005451618127,48.81458088664539,142.57102127660025,199.23648394431,fqhc5_100Compliance_implementation,22 -100000,95828,48530,462.5266101765664,4825,49.10881996911132,3857,39.6439454021789,1543,15.726092582543725,77.32864418348662,79.63958524366788,63.32870225298407,65.03868636417008,77.13022955788247,79.4446273054315,63.253507173665945,64.96721442779454,0.1984146256041441,194.95793823638508,0.0751950793181208,71.47193637553073,230.93312,162.59898147229237,240987.10189088783,169677.94535239422,542.10697,365.20365486368337,565110.6878991526,380505.6506070077,486.96863,239.19289512471076,504406.7808991109,246653.505991086,2715.96514,1279.9909807690408,2792646.7420795592,1294155.5294580297,878.69553,406.541285330937,902046.2077889552,409365.0862600132,1493.98386,642.2504152162508,1523638.1224694245,640335.0312473925,0.38202,100000,0,1049696,10953.959176858538,0,0.0,0,0.0,47215,492.07955921025166,0,0.0,43949,454.90879492423926,1109584,0,39861,0,0,0,0,0,84,0.8661351588262303,0,0.0,2,0.0208707267187043,0,0.0,0.04825,0.126302287838333,0.3197927461139896,0.01543,0.352917824533545,0.647082175466455,23.36593349316717,3.9812384777162446,0.3098262898625875,0.2766398755509463,0.2100077780658543,0.2035260565206118,10.801201055574982,5.748585888964604,16.674400894011235,11414.354606673904,44.43396597744989,13.19531924006773,13.559407266945934,8.979893766862775,8.699345703573446,0.5701322271195229,0.8106841611996252,0.6569037656903766,0.562962962962963,0.1184713375796178,0.7386172006745363,0.9288702928870292,0.7852760736196319,0.7537688442211056,0.1420765027322404,0.4953201048296518,0.7147707979626485,0.6087456846950517,0.5008183306055647,0.1112956810631229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025522864232541,0.0049568179053643,0.0072743874600517,0.0096802372826263,0.0118771608704494,0.0142231724699653,0.0163591886657833,0.0186861522446855,0.0206634373658716,0.0227882037533512,0.0248775589663722,0.0269282870161323,0.0291149387486639,0.0312548256586058,0.0334223633869919,0.0354135889833572,0.0373371415561971,0.039389100862641,0.0411533747429212,0.0430492526749656,0.0573374638837604,0.0719326676773485,0.0849536187830826,0.0979382526638784,0.1106848102199782,0.1264824641143268,0.1371916951201408,0.1476058735901255,0.1578795613032752,0.1668131821008169,0.1781118421761089,0.188988304536455,0.1988822320564538,0.2077800002186007,0.2165628919055686,0.2255488358698301,0.2336969263919436,0.2425139589337175,0.2508799818326331,0.2572729253385623,0.2629010571216617,0.2683956291328612,0.2738719707578742,0.2769097743457949,0.2815606029270429,0.286163599585574,0.2904252386799308,0.2937062937062937,0.295850622406639,0.2988636363636364,0.2961925035703699,0.2927773415437175,0.2895186214877432,0.2865149825481194,0.2842434161583098,0.2795369163535996,0.2755986624193727,0.2755445398289644,0.2759090986583016,0.2764340505810952,0.2770300583221175,0.2784086428515101,0.2789300171097108,0.2797534270963147,0.2808781632311044,0.2825001300525412,0.2830284985112718,0.2870532366908273,0.2906155398587285,0.2938310412573673,0.2997833543961004,0.3008429926238145,0.3035915404830434,0.3084565794463405,0.3148303896832072,0.3211791168462176,0.3270421259248074,0.3300640512409928,0.3346861471861472,0.3386973180076628,0.0,2.324620010960042,51.45707884041867,142.83226969957815,193.25846334512943,fqhc5_100Compliance_implementation,23 -100000,95757,48359,460.46764205227817,4775,48.790166776319225,3764,38.83789174681746,1434,14.672556575498396,77.35098256499538,79.69781181460779,63.33757887846742,65.07030794770864,77.17671739285227,79.52502307428058,63.271853843905205,65.00692701640082,0.1742651721431087,172.78874032720637,0.0657250345622131,63.380931307818855,231.77,163.09852359002397,242039.51669329655,170325.20190693514,542.79767,366.3233521020897,566371.1582443059,382077.2498115958,484.57621,238.26112413231388,502709.2536315883,246247.37673266395,2621.0653,1235.3719727620216,2706338.0013993755,1259244.496759529,859.94199,392.6689716003526,886259.2708627045,398304.5142042197,1386.3892,590.1233803369172,1420197.8967595058,593039.0098779309,0.37906,100000,0,1053500,11001.79621333166,0,0.0,0,0.0,47320,493.6662593857368,0,0.0,43862,454.7865952358574,1105748,0,39642,0,0,0,0,0,98,1.0129807742514907,0,0.0,1,0.0104431007654792,0,0.0,0.04775,0.1259695035086793,0.3003141361256544,0.01434,0.3584943639291465,0.6415056360708534,22.96454994263829,4.042477469232973,0.3034006376195536,0.2911795961742827,0.2077577045696068,0.1976620616365568,11.3287102076588,6.15037374563571,15.36327919656703,11260.7772675476,43.3987343844713,13.549277646420183,12.993293095356838,8.75814911072381,8.098014531970467,0.5908607863974495,0.8211678832116789,0.6873905429071804,0.5856777493606138,0.1088709677419354,0.7558441558441559,0.9204301075268816,0.8765822784810127,0.6926829268292682,0.1538461538461538,0.5178229206592564,0.7480190174326465,0.6150121065375302,0.5476603119584056,0.0956521739130434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004520529895298,0.0066969042038294,0.0089380027626554,0.0113674492379335,0.0138245564027649,0.0158612042690696,0.0180235346947939,0.0202782121648831,0.0225465412602728,0.0247247678208991,0.0269349209607883,0.0292911119107592,0.0311914323962516,0.0333931666254023,0.0353584422027451,0.0376180417495029,0.0397223173427139,0.0416701322465274,0.0436290902272088,0.0581130736147647,0.0716131259349142,0.0843931847968545,0.0971014645121271,0.1089759131397248,0.1242270819900855,0.1352371660957996,0.1449290783915213,0.1551074034117006,0.1640494272107092,0.1750430848772081,0.1859591783727625,0.1961193770120943,0.2045994113978753,0.213512948349677,0.2221261884183232,0.2299884994584696,0.2381204098388312,0.2459641281041896,0.2527988815932712,0.2587776633773325,0.2651063232507544,0.2705035290779471,0.2749329694532222,0.2787789851557194,0.282597466486287,0.286370960690508,0.2895635721813772,0.2937343228776085,0.2954638332652227,0.2919588183836888,0.2883022916723981,0.285297886421561,0.2818630991938513,0.2790366380269777,0.2747313225199884,0.2712440516655336,0.2712842712842713,0.2724808646289698,0.2728016650952626,0.2736551415296774,0.2752486535361874,0.276362954318106,0.2760537079850613,0.275636589265685,0.2765246665803444,0.2784810126582278,0.2838470177189918,0.2873347903007597,0.2918793685698578,0.2957886193525115,0.3006518767742613,0.3031812239307725,0.3069997749268512,0.3118289522399111,0.313362976831266,0.3220287198289031,0.3285943131758109,0.3328782086291644,0.3340926347760061,0.0,1.740171660222869,50.551068261705495,140.62522380310105,188.40759515837647,fqhc5_100Compliance_implementation,24 -100000,95839,48400,461.0336084475005,4798,48.8005926606079,3763,38.65858366635712,1411,14.305241081396929,77.51248185563044,79.79785735044298,63.42745123530996,65.11065492072115,77.32185850167227,79.6122874782653,63.35480707629625,65.04230015997317,0.1906233539581734,185.5698721776804,0.0726441590137128,68.35476074797953,233.88662,164.37256309728613,244041.17321758365,171509.05487044537,542.03047,365.3162842635987,564908.7323532173,380526.7471585599,487.94678,239.8144572666204,505650.4971879924,247535.5370660696,2663.52819,1261.7408957281923,2737085.0071474034,1274666.5179793308,870.8476,397.4159870259287,894041.9766483373,400173.5842887648,1373.47658,594.8285382889874,1394095.138722232,589044.1618139906,0.37909,100000,0,1063121,11092.780600799257,0,0.0,0,0.0,47229,492.11698786506537,0,0.0,44098,456.567785557028,1103416,0,39622,0,0,0,0,0,85,0.8869040787153455,0,0.0,0,0.0,0,0.0,0.04798,0.1265662507583951,0.2940808670279283,0.01411,0.3682317682317682,0.6317682317682317,23.29529499015627,4.074885455347223,0.2936486845601913,0.2864735583311187,0.2144565506245017,0.2054212064841881,11.485920956332992,6.330805021343834,15.189361074073776,11294.893643032272,43.122807684727626,13.283865346330732,12.47118736641768,8.9220637674828,8.44569120449643,0.5918150411905395,0.8107606679035251,0.7167420814479638,0.5947955390334573,0.1047865459249676,0.7688356164383562,0.9385593220338984,0.8580246913580247,0.751219512195122,0.1377245508982036,0.5121387283236994,0.7112211221122112,0.6581306017925737,0.5415282392026578,0.0957095709570957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026005302248396,0.0045978874023961,0.006821475993067,0.0091627685157938,0.0114894654503342,0.0140953930641716,0.016228543503492,0.01846753140806,0.0208714120878559,0.0230187135698946,0.0250985612615841,0.0270539129721359,0.0292428305744788,0.0314516544023053,0.0334226804123711,0.0355929227305122,0.0375099595409815,0.0397590611263166,0.0413740806914031,0.0432546664029398,0.058108249035353,0.071778089124025,0.0854011233129348,0.098397159842867,0.1107963819010814,0.1260364842454394,0.1360798736605581,0.1452041684389621,0.1549847395044074,0.1630130971631737,0.1739322121381565,0.1853756007992655,0.1959766808159543,0.2053132711668231,0.2143877147502087,0.2242052302758887,0.231943144855857,0.2392520215633423,0.2463817354080315,0.2535369003268347,0.2589444303476275,0.2645955642530985,0.2696275510805617,0.2738895321770063,0.2780493116213796,0.2825646628447969,0.2871771872780954,0.2899196355122445,0.293512281198882,0.296902457575996,0.2935450613895323,0.2896388573616485,0.2871969898308878,0.2846906098769332,0.2817067769083124,0.2780180289925691,0.2739536056480081,0.2735793598954931,0.2739588815510245,0.2732339368122116,0.2733165688739871,0.2745979697225549,0.2751726720479321,0.2769036432940342,0.2767776563910131,0.279219276364852,0.2796345748418833,0.28419424682957,0.2882354968804936,0.2919705197827773,0.2954989346590909,0.301049692331558,0.301018529880967,0.3028456794709859,0.3086781398755034,0.3155412400782239,0.3219685739697598,0.3267655091689426,0.3289858929997338,0.3312453942520265,0.0,2.2200078924834075,50.41382171693173,138.66485585439713,185.54085683034128,fqhc5_100Compliance_implementation,25 -100000,95735,48286,460.2183109625529,4824,49.135634825299,3815,39.24374575651538,1433,14.571473337859716,77.31288813594676,79.67121234268069,63.318020272784125,65.06191625569728,77.12800742511484,79.491546756115,63.24726435957231,64.99606787800118,0.1848807108319192,179.6655865656902,0.070755913211812,65.84837769609919,231.4213,162.85526422865635,241731.1328145401,170110.4760313954,536.23339,361.7827291845536,559525.0848696923,377302.6366371272,488.20693,239.7667328682603,505902.000313365,247481.6138459724,2708.05718,1279.12478205624,2788293.978168904,1295702.556072743,902.85638,415.5725296420332,926548.4410090356,417556.0658505589,1396.00738,598.79386206583,1420956.473598997,592798.095846071,0.38078,100000,0,1051915,10987.77876429728,0,0.0,0,0.0,46780,488.0137880607928,0,0.0,44117,456.8444142685538,1108855,0,39818,0,0,0,0,0,88,0.919204052854233,0,0.0,2,0.0208910012012325,0,0.0,0.04824,0.1266873260150218,0.2970563847429519,0.01433,0.3646331738437001,0.6353668261562998,22.96287332274708,4.075084486679367,0.292267365661861,0.2901703800786369,0.2104849279161205,0.2070773263433813,11.092080974723949,5.870835074926619,15.345167489372756,11293.262127638103,44.17094896257967,13.745963359078264,12.729948461315775,9.069038670306137,8.6259984718795,0.5834862385321101,0.8292682926829268,0.6959641255605381,0.5466998754669987,0.1177215189873417,0.7474402730375427,0.9085106382978724,0.8664596273291926,0.69377990430622,0.1461988304093567,0.5107832009080591,0.7708006279434851,0.626733921815889,0.494949494949495,0.1098546042003231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876076080131,0.0046219807620186,0.0070211751336762,0.0091618250518018,0.0114319423114085,0.0137474541751527,0.0158662180075456,0.0179885861297995,0.020211830617294,0.0225269042913752,0.0244127508176887,0.0266062865181807,0.0288488239347533,0.0306850838972837,0.0326344895895668,0.0348936961891866,0.0370197783990887,0.0391711285435603,0.0412441893114529,0.0431991997832746,0.0577898891185867,0.0730788548468106,0.0861107032741154,0.0987014352557699,0.1106963600320553,0.1255738676031904,0.1354664119707099,0.1460080902703853,0.1559308635645002,0.1635835236839,0.1752393052878662,0.1857087235837425,0.1958944472834418,0.2050855799201618,0.2137843012125079,0.2226751592356688,0.2310825892857143,0.2383191764639703,0.2461592614881513,0.2533253898239061,0.2589699074074074,0.2644483157759356,0.2701114080942356,0.2740331624095461,0.2780226585552439,0.2822884591698485,0.2862469345878585,0.2899145777190217,0.2933990708749046,0.2956575666011321,0.2919820086724662,0.2903208063473729,0.2875992789950994,0.2846122732000462,0.2815551295198181,0.2788211145491866,0.2745663366336633,0.2739708031594331,0.2754479766317623,0.2756587762393926,0.2771837842898605,0.2772267446455386,0.2780099460905177,0.277090990087983,0.2776565385261037,0.2799771256270957,0.2815652618716076,0.2871722405401162,0.290541723570403,0.294441801458928,0.3004901515839158,0.3051971986730556,0.3063264419196622,0.308670781273521,0.3098342335630471,0.3118556701030928,0.3136238951539165,0.3223090799759471,0.3225541244176487,0.3315868263473054,0.0,2.371538500566484,50.764199313741805,145.90656357538086,188.03143274244087,fqhc5_100Compliance_implementation,26 -100000,95777,48438,461.9167441034904,4889,49.78230681687671,3893,40.009605646449565,1536,15.640498240704972,77.37208356525132,79.71179716063536,63.35007434272507,65.07995952948885,77.17298774382428,79.5143155666972,63.274570940780166,65.00739317944927,0.1990958214270364,197.48159393815,0.075503401944907,72.56635003957967,230.55912,162.1938172394826,240724.93396118065,169345.26790302747,545.54356,368.4659897012998,568996.9199285841,384111.6444462657,492.30985,241.874667867485,509926.28710441967,249463.00466784512,2750.68917,1297.560911552771,2831294.54879564,1314284.625207085,905.91333,414.9899596990011,930963.3419296908,418477.9820780591,1489.5527,640.4364074753086,1518883.6568278396,638499.4015976749,0.38082,100000,0,1047996,10942.04245278094,0,0.0,0,0.0,47485,495.1397517149211,0,0.0,44523,460.72647921734864,1110489,0,39936,0,0,0,0,0,103,1.0754147655491402,0,0.0,1,0.0104409200538751,0,0.0,0.04889,0.1283808623496665,0.3141746778482307,0.01536,0.3595836606441477,0.6404163393558523,23.290506155776495,3.992355992377883,0.2946313896737734,0.2848702799897251,0.211405086051888,0.2090932442846134,11.478102765827806,6.26612390773566,16.47564314805536,11348.938856677483,45.01189146300901,13.752133470619237,13.102949495357848,9.205928449644478,8.950880047387452,0.5972257898792704,0.8322813345356177,0.6957279860505667,0.6233292831105711,0.1117936117936117,0.7747298420615129,0.9285714285714286,0.8783382789317508,0.7777777777777778,0.1213872832369942,0.5178438661710038,0.7520661157024794,0.6197530864197531,0.5772870662460567,0.1092043681747269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485566697052,0.0048558452617493,0.0071441618802135,0.0095996586788025,0.0118681989219973,0.0141309659553673,0.0161962714939506,0.0183684715390738,0.0207038914323086,0.0230173269606689,0.0250256200040992,0.0272173074159978,0.0293367871386867,0.0316004077471967,0.0334735800024749,0.0352227640932385,0.0372946619880135,0.0393972705023437,0.0413233445205265,0.0429477235103647,0.0576056102855234,0.0721286098298241,0.0856265266115252,0.0987632267487679,0.111504424778761,0.1277508372687606,0.1382394709510587,0.1481024637665748,0.1574173860156425,0.1653168787761923,0.1769939112287269,0.1877877942797846,0.1988676497755947,0.2082663780758425,0.2162982514021775,0.2258210971585498,0.2340316355442518,0.2421449047271092,0.248985467818359,0.2546480743691899,0.2604678592490662,0.2657075405544388,0.2711351657961287,0.275144813059505,0.2794105161016435,0.2831108103119424,0.2863397000512839,0.2897237821767082,0.2932113127552867,0.2954264035619253,0.2929214237743452,0.2901061815787307,0.2878071434602718,0.2840131635922751,0.2819132369299221,0.2777021966095477,0.2737529034398849,0.2740731036289794,0.2744187634426957,0.2745964437159249,0.2756798147318093,0.2765295472894472,0.2775192504330043,0.2769494392024212,0.2778123653081749,0.2802327695944717,0.2795754005520931,0.2844180716461021,0.288887334289412,0.2919982579086986,0.2947363648728295,0.2997467820215235,0.3014040561622464,0.3055660448606601,0.3100775193798449,0.3102437880918893,0.3148371531966224,0.3149160484185865,0.3167022411953041,0.3210975157582499,0.0,2.469230170573349,51.91076665770207,147.49654170027054,192.230369066088,fqhc5_100Compliance_implementation,27 -100000,95655,48728,465.558517589253,4881,49.97125084940672,3875,40.01881762584287,1485,15.116826093774502,77.25911226955019,79.65337423776455,63.27736057920528,65.04498813281153,77.06563838601663,79.46595332286134,63.20348387017242,64.97607391143862,0.1934738835335565,187.420914903214,0.0738767090328593,68.91422137290704,231.53196,162.93644762826293,242048.9885526109,170337.61709086085,542.86338,366.4269012867304,567023.8670221107,382573.0413574748,489.25283,240.06566299802915,508988.98123464535,249028.61523824595,2730.3183,1281.0204918647792,2814870.681093513,1299745.8729740651,917.78099,422.78605371901085,944071.4233443104,426625.3835847583,1444.003,618.5404230680508,1469891.6522920914,612373.1674344243,0.38208,100000,0,1052418,11002.226752391409,0,0.0,0,0.0,47233,493.2726987611729,0,0.0,44285,460.4568501385186,1100301,0,39509,0,0,0,0,0,90,0.9408812921436412,0,0.0,1,0.0104542365793737,0,0.0,0.04881,0.1277481155778894,0.3042409342347879,0.01485,0.3634758728913299,0.63652412710867,23.50804241472472,4.075130899515678,0.320258064516129,0.2725161290322581,0.2007741935483871,0.2064516129032258,11.450100212004356,6.420253250828106,15.887152358814088,11360.687565441644,44.33915651390974,12.900555575611769,14.046183475838845,8.578258615193946,8.814158847265185,0.5878709677419355,0.8162878787878788,0.6994359387590653,0.5719794344473008,0.12875,0.751084128360798,0.930957683741648,0.8757763975155279,0.7052631578947368,0.1666666666666666,0.5187362233651727,0.7314662273476112,0.6376496191512514,0.5289115646258503,0.1167763157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268974808302,0.0048570762226345,0.0070945740210705,0.0093480734839863,0.0114247927158044,0.0134133175809178,0.0157024287782694,0.0177935216472533,0.0199241471667637,0.0221507973877617,0.0242061986733239,0.0263474037642081,0.028603754178452,0.0306161342494823,0.0327241204941125,0.0347512304065511,0.0365263692208881,0.0387270217249146,0.0407838487221892,0.0428368883050812,0.0579487501045063,0.0718535277358806,0.08578809741344,0.0988637201318463,0.1108693815478202,0.1261981676640364,0.1363486684866317,0.1464267067310253,0.1559692873641885,0.1653082482308344,0.1768259139007842,0.18863099495048,0.1991089712866541,0.2085524585853273,0.2170057899090157,0.2262015813788201,0.2346840597869864,0.2417845140627467,0.2491101584088609,0.2550263091381172,0.2606420623963059,0.2660310535697532,0.271540779763176,0.2764693860376769,0.2802013627332675,0.2837991449823313,0.2864868255959849,0.2891878107866887,0.2935888122048674,0.2962860127193156,0.2938216646431943,0.2911292881084734,0.2880939261645403,0.2852334875893984,0.282511478146801,0.2794591608091101,0.2760616536107323,0.2761981460784958,0.2770333863819155,0.2769392894779145,0.2780034822983169,0.2780298248382515,0.2793235361749273,0.2799911071587372,0.2818747010999521,0.2828688354745131,0.2828651446999915,0.288608228085532,0.2926718569982194,0.2964322361670218,0.301644096200009,0.3041092999947249,0.3083078077139464,0.310267017675818,0.3156775744130153,0.3222443481316622,0.3245693563009972,0.3292780215396889,0.3381948266373142,0.3384793516016982,0.0,1.8895206846731825,50.41797967875471,139.35398378775074,203.5267572597213,fqhc5_100Compliance_implementation,28 -100000,95621,48321,462.4611748465296,4846,49.50795327386244,3841,39.62518693592412,1409,14.348312609154894,77.28554750318864,79.7165838999311,63.27381344368565,65.07158507761625,77.10181749798045,79.53747224908072,63.20414620003161,65.00633968572564,0.18373000520819,179.1116508503734,0.0696672436540382,65.24539189061329,230.96634,162.43047373805717,241543.53123267903,169869.03895384612,539.22604,363.1590828830374,563394.672718336,379264.6624518018,485.203,237.7588766496753,503939.0405873187,245928.18117568223,2707.77692,1262.4123194057993,2793811.0456908,1282255.4244421197,894.47398,409.0585666025515,920701.9274008848,413056.7308463115,1373.98042,589.4219441294882,1401135.231800546,586710.4631126637,0.37924,100000,0,1049847,10979.25141966723,0,0.0,0,0.0,46961,490.55123874462726,0,0.0,43942,456.1341127994897,1109445,0,39824,0,0,0,0,0,84,0.8680101651310905,0,0.0,0,0.0,0,0.0,0.04846,0.1277818795485708,0.2907552620718118,0.01409,0.3522074836666006,0.6477925163333993,23.14036237759548,4.0699925322430826,0.3111168966414996,0.2783129393387138,0.2074980473834939,0.2030721166362926,11.224415793016757,6.023314745509885,15.172863568295424,11271.67774042584,43.97101088518877,13.124866977406796,13.465114277580025,8.782263159172103,8.598766471029855,0.5907315803176256,0.8157156220767072,0.6970711297071129,0.5984943538268507,0.1115384615384615,0.7522361359570662,0.9246575342465754,0.85,0.7315789473684211,0.1470588235294117,0.5244215938303342,0.7400950871632329,0.6411428571428571,0.556836902800659,0.101639344262295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020875557357113,0.0044426863037458,0.0066096738821427,0.0089444529145703,0.0113640988076343,0.0134258268903625,0.015729718150381,0.0177958483164432,0.0198936279022194,0.0217734171770344,0.0238405432853581,0.0259456015783146,0.0279155944415851,0.0299144418101226,0.0319476281932139,0.033885682368274,0.0359796474574866,0.0380521139486338,0.0400437181222025,0.0419743814411482,0.0565440100355425,0.0700265140797099,0.0833114406111747,0.096444186904072,0.1086579903659258,0.1240494799940691,0.1354521980299021,0.1455877022791719,0.1556701692811436,0.1638930370975193,0.1756182296836562,0.1857220294882914,0.1962472213747112,0.2047312252098262,0.2132557216563037,0.2227487625685304,0.2308603616693117,0.2393379080327665,0.2465432814115455,0.2532375254990946,0.2596262937322003,0.2652901171705821,0.2707439622686227,0.2746756909193457,0.2792881557980269,0.2832418429655215,0.2862811862348685,0.2901611794362539,0.2930382043439946,0.2953495737549156,0.2919481148577733,0.2901315970218962,0.2873868929511265,0.2841494566393904,0.2814603909007325,0.2775643870414862,0.27407032473387,0.2738528649676933,0.2745522400777083,0.2754525189478377,0.2754987670925801,0.2773788680581512,0.2780423611981451,0.2773883436811536,0.2785932867935354,0.2805671780567178,0.2832826918748593,0.2888999316727747,0.2953078065117563,0.3005126599616483,0.3038532440088125,0.3062519668519878,0.3117020614062403,0.309984984984985,0.3138780804150454,0.3202933985330073,0.3246909858305697,0.3317346123101519,0.3304605440344734,0.3270089285714285,0.0,2.1176271212822644,48.64492572423684,143.04734266375692,199.87747171393036,fqhc5_100Compliance_implementation,29 -100000,95810,48666,464.42960025049575,4784,48.69011585429496,3776,38.82684479699405,1486,15.071495668510591,77.35864855579545,79.66335560037383,63.35358995694328,65.05428484878232,77.16267093075234,79.47394789852866,63.27785887679139,64.98413079233065,0.1959776250431133,189.40770184516964,0.0757310801518826,70.1540564516705,231.10802,162.56048401105423,241214.6957520092,169669.41239020394,540.84408,365.1898752202168,563889.8966704938,380553.91422629874,482.96011,237.38158159646488,500996.0755662248,245301.4559912804,2700.3901,1280.5669589842942,2775562.603068573,1293647.2069557398,877.54385,406.7231240305805,899318.3279407161,408006.7061541581,1451.8274,634.4586750071938,1473788.9990606408,625269.1245189635,0.38262,100000,0,1050491,10964.304352364054,0,0.0,0,0.0,47126,491.2326479490658,0,0.0,43628,452.3327418849807,1110411,0,39867,0,0,0,0,0,86,0.8976098528337334,0,0.0,0,0.0,0,0.0,0.04784,0.1250326694893105,0.3106187290969899,0.01486,0.3460076045627376,0.6539923954372624,23.3934264761249,4.142031016066905,0.305614406779661,0.2717161016949153,0.2055084745762712,0.2171610169491525,11.115744713314266,5.807306607267564,16.126579038670315,11299.234049425411,43.546756017238565,12.540038559720784,13.146993384849695,8.798390493722287,9.061333578945804,0.5701800847457628,0.8079922027290448,0.6837088388214905,0.5631443298969072,0.1195121951219512,0.7517064846416383,0.937354988399072,0.8746268656716418,0.7268518518518519,0.1421052631578947,0.488479262672811,0.7142857142857143,0.6056166056166056,0.5,0.1126984126984127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002206343744307,0.004456643944535,0.0067723065381145,0.0090312236800714,0.0113079877268201,0.0135801841208483,0.0158802917328769,0.0180143421092897,0.0199722125738103,0.0222592755505999,0.0243979883438661,0.0264121526673709,0.0282943267511866,0.0303466869732549,0.0324163814080092,0.0344346784272007,0.0366706676048176,0.0385129741553581,0.0407279299492069,0.0425598367567905,0.0576421491914449,0.0712538162352055,0.0844121130805756,0.0964863416120996,0.1087373524451939,0.1241637337899109,0.1348990086412553,0.1450912804800204,0.1550190597204574,0.1636268107783532,0.1750834499838484,0.1861469051251257,0.1967218463814143,0.2057153485115368,0.2153592072667217,0.2245807331212521,0.232723497828926,0.2398006255766331,0.2475773324558019,0.2539235228079822,0.2600782190132371,0.2656555372210324,0.2709623193209665,0.2756065982545315,0.2797340496651311,0.2841944351985404,0.2874155616712534,0.2904226641574691,0.293287591429866,0.2963344017516784,0.293163071706339,0.289985566018283,0.2877927408698585,0.2854671280276816,0.2827614839417574,0.2790900068707534,0.2753790271636134,0.275228155260269,0.2748686634372654,0.2750307810353134,0.2754678143712575,0.2749334122521456,0.2757696896125913,0.2770351557278439,0.2784512913891417,0.2802882489138635,0.2824325476928325,0.2859070935342122,0.2895123487021619,0.2932795060555687,0.2990366785762742,0.3020701309674694,0.3053802412047741,0.309447983014862,0.3159116227255849,0.3188540817514848,0.3193226489265195,0.3229313468894705,0.3214285714285714,0.3182703544994156,0.0,2.1913023357720305,50.95676554233713,137.33431877848582,191.19306346396053,fqhc5_100Compliance_implementation,30 -100000,95856,48270,460.99357369387417,4837,49.13620430645969,3797,38.97512936070773,1379,14.010599232181606,77.41454581429173,79.7032471142419,63.37712166936033,65.06809494566434,77.23163219941677,79.52344772420032,63.30696107884409,65.00167856073368,0.1829136148749626,179.7993900415804,0.0701605905162381,66.41638493066182,231.15444,162.5652032234957,241147.36688365883,169592.93988803777,543.96429,366.6762676182615,566860.551243532,381909.78534736345,482.25047,236.0778559167082,498627.5037556334,242964.12221610636,2673.81484,1258.9259511963169,2747898.806543148,1271978.4156108508,892.20265,411.5851677890114,916785.6889500916,415390.385358257,1344.74496,584.5965338294707,1367615.736104156,580360.845222369,0.3801,100000,0,1050702,10961.24394925722,0,0.0,0,0.0,47330,493.1042396928727,0,0.0,43625,450.6447170756135,1112591,0,39967,0,0,0,0,0,97,1.011934568519446,0,0.0,1,0.0104323151393757,0,0.0,0.04837,0.127255985267035,0.2850940665701881,0.01379,0.3614624505928854,0.6385375494071146,23.421767564115672,4.091455811863366,0.3078746378720042,0.2833816170661048,0.207795628127469,0.2009481169344219,11.189211744877738,5.877478698764778,14.867321984403642,11252.13981760501,43.61812699387759,13.193852739826182,13.38437149431456,8.757389127531043,8.282513632205802,0.599157229391625,0.8150557620817844,0.7194183062446535,0.5830164765525983,0.127129750982962,0.7611301369863014,0.907563025210084,0.8798798798798799,0.7252747252747253,0.1807909604519774,0.5271966527196653,0.7416666666666667,0.6555023923444976,0.5403624382207578,0.1109215017064846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.0044982523681677,0.0069562043055456,0.0089537693135443,0.0111190161601788,0.0130444957722402,0.0153321108394458,0.0173815474065384,0.0195924204504826,0.0217046651733202,0.0238153770511953,0.0257572804579072,0.0275171853967797,0.0297066392177045,0.0316939890710382,0.0339089838666363,0.0360158092952034,0.0380346353545926,0.0398430362926667,0.0418578041296094,0.0563161461863302,0.0697399774256929,0.0828051501786219,0.0961160868971744,0.1080642783429161,0.1239451198259381,0.1344379350163677,0.144542710149241,0.1542885187832748,0.1623558140282106,0.1748195324518842,0.1861943687556766,0.1971682531403485,0.2066765011200349,0.2155526738026683,0.224655321220705,0.2328241721485115,0.2410391244747073,0.2476840565577767,0.2535225776912951,0.2601859131480368,0.2662544851041947,0.2713557738918644,0.2748961040516425,0.2789313904068002,0.2822726656895469,0.2867398754283713,0.2902360583217868,0.2916753004558641,0.2948330673139073,0.2916577022375215,0.2891773108089548,0.2864632380845292,0.2824078744469585,0.2798186881554779,0.2764220197487905,0.2733289212442091,0.2738696341323921,0.2740970002040677,0.274468047347779,0.275133062865225,0.2750765847144765,0.2773135445248191,0.2765858415709916,0.2771472173208069,0.2771541379577301,0.2773315295510273,0.2807887882921989,0.2840786871595601,0.289961511271699,0.2939249820531227,0.2989167408027631,0.3062156656996481,0.3069432054713054,0.3123161764705882,0.3160213308601901,0.3161212848994296,0.3205358928214357,0.3266630611141157,0.3335823683227493,0.0,2.481277244122466,50.49168795976885,137.53813705406006,192.6139655951725,fqhc5_100Compliance_implementation,31 -100000,95712,48316,461.99013707790033,4746,48.35339351387496,3840,39.545720494817786,1502,15.337679705784018,77.36002699221102,79.73236763249264,63.33690834044432,65.08883789947075,77.16398024927024,79.5403217793322,63.26189692522693,65.01804821947604,0.1960467429407799,192.0458531604368,0.0750114152173964,70.78967999470365,232.11012,163.2324835010406,242508.9017051153,170545.47340045197,539.03854,362.6980352675489,562636.6495319292,378395.90152493824,481.89519,236.24673507563293,500063.6179371448,244179.72916828343,2712.70318,1273.4343387120834,2793457.716900702,1289782.7222227356,914.56887,412.5651791207896,940238.6012203275,415784.6300534645,1461.0619,630.0784787673291,1492679.0997993983,627609.6449005359,0.37968,100000,0,1055046,11023.13189568706,0,0.0,0,0.0,46971,490.1788699431628,0,0.0,43432,450.3928452022735,1109631,0,39879,0,0,0,0,0,102,1.0656970912738215,0,0.0,0,0.0,0,0.0,0.04746,0.125,0.3164770332911926,0.01502,0.3667476711219117,0.6332523288780882,23.18257098935917,4.120495415295185,0.30859375,0.2630208333333333,0.2158854166666666,0.2125,11.171632314739131,6.09830950711944,16.107475854217185,11293.705661425878,43.8836776053342,12.38449905441796,13.45919484206693,9.088303896916477,8.951679811932834,0.57578125,0.7782178217821782,0.7240506329113924,0.5657418576598311,0.1200980392156862,0.7435233160621761,0.9176755447941888,0.8923512747875354,0.734375,0.13,0.5033557046979866,0.6817420435510888,0.6526442307692307,0.5149136577708007,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498192057205,0.0043588885847803,0.0065250702738905,0.0089091610963245,0.0111172138817689,0.0132072013359944,0.015565749235474,0.0177488824021719,0.0198108867876309,0.0218370564507872,0.0241341836002378,0.0260256252309966,0.0278374793044229,0.0298807243062851,0.0319648366161433,0.033829611248966,0.0359584783689706,0.037937763384609,0.0399421670705957,0.041797359398935,0.0570142457283703,0.0704633709793906,0.0833718002517834,0.096122090516108,0.107993842780027,0.1236507416295763,0.1349401680386998,0.1448291275982077,0.153743458293282,0.1631945934348852,0.1756270470608515,0.1866389619384652,0.1971434472113827,0.2068611159699143,0.2151396174953534,0.2252026757630797,0.2326364873608353,0.2407884232659073,0.2482513122243761,0.2539642558648088,0.2603663190027983,0.2656359556864395,0.2707569702272566,0.2745076913868438,0.2781898299323856,0.2822918205544886,0.2863877357074976,0.2894125119085424,0.2919575898629428,0.2953302315772825,0.2930714381810843,0.2900679373985752,0.2869316581215843,0.2844158659056426,0.2823291860913977,0.2793755638120575,0.276188672096988,0.2760109227071308,0.2767261337328067,0.2781066140528626,0.2784751105059962,0.2787542762769848,0.2801089578308242,0.2799103576817254,0.281323820659047,0.2826013819518128,0.2849736528981812,0.2896771971570807,0.2936081033880545,0.2983526057341992,0.3024133072762805,0.3056569825898291,0.3074231442139465,0.310612922705314,0.3163993696115695,0.3256494266323426,0.333383640205252,0.3352635782747604,0.338139281828074,0.331560957083175,0.0,2.2945237292882967,50.2197232951726,137.79391269074674,198.1586722227552,fqhc5_100Compliance_implementation,32 -100000,95756,48115,459.8458582229834,4686,47.74635531977109,3685,37.92973808429759,1386,14.119219683361878,77.33346816806463,79.69530497493322,63.32120940122799,65.07021392042738,77.15337438630304,79.5188135237162,63.25380733172567,65.006501738723,0.1800937817615846,176.49145121701793,0.0674020695023216,63.71218170437487,233.233,164.07740364115787,243569.4264589164,171348.86499769628,542.54086,365.093893686512,566037.8775220352,380728.2018142816,479.13039,234.4247746410616,497045.1459960734,242312.22443912996,2598.18818,1214.976065000708,2674283.8882158822,1230410.0627978658,863.63982,397.99995892911136,887007.7801913196,401047.1051864704,1351.39058,574.494673676816,1377707.2559421863,571056.7537527917,0.37852,100000,0,1060150,11071.337566314382,0,0.0,0,0.0,47338,493.7758469443168,0,0.0,43269,448.53586198253896,1102799,0,39530,0,0,0,0,0,95,0.9921049333723212,0,0.0,2,0.0208864196499436,0,0.0,0.04686,0.1237979499101764,0.2957746478873239,0.01386,0.3546606704824203,0.6453393295175798,23.20780282351438,4.200201297801922,0.3248303934871099,0.2667571234735413,0.1997286295793758,0.2086838534599728,11.416622231062371,6.095350663372343,14.827438408218134,11242.53955223418,42.34635593582562,12.26017957233845,13.516481982333952,8.271172155760077,8.298522225393144,0.5937584803256445,0.8341810783316378,0.7017543859649122,0.5760869565217391,0.1352405721716515,0.7711941659070192,0.9377880184331796,0.8662613981762918,0.6793478260869565,0.1933333333333333,0.51854714064915,0.7522768670309654,0.6394009216589862,0.5416666666666666,0.1211631663974151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350676326055,0.0047154504522776,0.0068611331019223,0.0091751508870328,0.0113504607310673,0.013511999918541,0.0155874077396729,0.0177685697372986,0.0199807857405666,0.0219360650200116,0.0240509313841075,0.026128022175453,0.0281160016454134,0.0300212156790047,0.0318806487557261,0.0338718513235552,0.0360962982138234,0.0379259535964803,0.0399530086913128,0.0418372129354788,0.0561696886188791,0.0707901622187336,0.0838256125072136,0.0960834630432039,0.1079123034578759,0.123339959397733,0.1338135755055274,0.143939635814097,0.1543176915354877,0.1632191303415366,0.1751596816061869,0.1864790012333124,0.1964831388583794,0.2051949472302728,0.2147013209850743,0.2235053144375553,0.2320003571468431,0.2399392473420712,0.2474642038621253,0.2537655084008607,0.259381285981827,0.2655859183244115,0.2707032727960651,0.2749485227218312,0.2784945193520225,0.2828652928736536,0.2867079597392542,0.2893921698065302,0.2922045199054153,0.2946749772688339,0.2907442773757969,0.2874006561157399,0.2842489813123507,0.2811012720297672,0.2788932056110798,0.2759622589573807,0.2727746788236967,0.2724146401375583,0.2724360612721294,0.2731075980915758,0.2741881298992161,0.2758613904248411,0.2773310557453545,0.2784041630529054,0.2791248773248438,0.2788903607885919,0.2792881998472289,0.2832677042315145,0.2878793169675595,0.2930763178599528,0.2983405483405483,0.3009948939306206,0.302704728590168,0.3067786351944318,0.3101159311892296,0.3114227980506359,0.313635669567873,0.3132481233515926,0.3134535367545076,0.3155878973573343,0.0,2.022173433437191,47.6572880088942,142.26075251794472,182.61883624994715,fqhc5_100Compliance_implementation,33 -100000,95803,48889,467.0834942538334,4775,48.66235921630847,3790,39.03844347254262,1431,14.57156874001858,77.34149214859087,79.68170641218533,63.33904717832892,65.07295898515977,77.15850200901306,79.50232582806365,63.27016364053768,65.00809764499469,0.1829901395778108,179.380584121688,0.068883537791244,64.8613401650806,232.03004,163.2645251247979,242194.96257945997,170416.92339989136,543.02027,366.8725882559416,566312.704195067,382448.2304895897,489.6764,240.1307131677709,508267.9769944574,248436.89731418624,2653.99826,1247.41025060815,2734183.3867415427,1265974.6569607947,865.11545,396.7207758661264,889070.8850453536,400156.47303959774,1386.52692,590.7654158509685,1413261.213114412,586956.0280357747,0.38289,100000,0,1054682,11008.861935429995,0,0.0,0,0.0,47272,492.8968821435655,0,0.0,44310,459.6098243270044,1106082,0,39699,0,0,0,0,0,94,0.9811801300585576,0,0.0,2,0.0208761729799693,0,0.0,0.04775,0.1247094465773459,0.2996858638743455,0.01431,0.3610722144428885,0.6389277855571114,23.501382452442563,4.073628659118024,0.3313984168865435,0.2696569920844327,0.2005277044854881,0.1984168865435356,11.602192509401066,6.537422347781964,15.288742588469846,11368.717100084628,43.532342908411295,12.429542704508233,14.35553454680781,8.460793923540937,8.286471733554306,0.595778364116095,0.8043052837573386,0.7093949044585988,0.5947368421052631,0.1236702127659574,0.7797202797202797,0.9343065693430656,0.8861788617886179,0.7835051546391752,0.1705882352941176,0.5162509448223734,0.7168576104746317,0.6358511837655016,0.5300353356890459,0.1099656357388316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982029437685,0.0044808045172997,0.0066670049216094,0.0089318375807828,0.0114564786081294,0.0137820741359464,0.0160125652741514,0.0179109354736594,0.0200014315953084,0.0220972977400956,0.0241774241507654,0.0263293011028732,0.0284709222192507,0.0306782594362947,0.032513026879224,0.0344820457693341,0.036594079090429,0.0388182327434179,0.0405985348365979,0.0423607062546847,0.056719532554257,0.0708198709704403,0.0848232063884638,0.0973959099602766,0.1094670502808603,0.1255721035441352,0.1363617088943072,0.1462677996022673,0.1562466648167517,0.1657878378668038,0.1770226781043817,0.1882276633695476,0.1984226135511836,0.2082741438468431,0.2163846838824577,0.2255365305648098,0.2338979273456652,0.2419123094537862,0.2497141498647164,0.2557682418147534,0.2616813801857942,0.2665686549052553,0.2717974157276829,0.2760348766281142,0.280458683346061,0.2842088436377945,0.288103857196355,0.2917972069660954,0.295135707187383,0.2979126137020874,0.2956153897804338,0.2928827234182686,0.2898047539393598,0.2869418532562465,0.2843500696936445,0.280543677458766,0.2769906332432987,0.2779816513761468,0.2775390491780915,0.2782648987738808,0.2784668050956844,0.2788334418595473,0.2800326202873094,0.2802756590392078,0.2813632545301812,0.2833961773501495,0.2840429174751741,0.2879246234322808,0.2931749490405567,0.2965019433647973,0.298980850966592,0.3013188683258881,0.3058080808080808,0.308898921111026,0.3127238454288407,0.3141907925961082,0.3165534280420012,0.3202868852459016,0.3248053392658509,0.3258298359404807,0.0,2.082387223491472,49.756910939077954,138.9145777467636,194.63600773662347,fqhc5_100Compliance_implementation,34 -100000,95709,48159,459.5492586904053,4863,49.640054749292126,3885,40.07982530378544,1440,14.700811835877504,77.3419109081298,79.71038733764948,63.33255108723839,65.0809473766848,77.15847338718584,79.53042422366569,63.26317614650424,65.01534526088076,0.1834375209439684,179.9631139837885,0.0693749407341428,65.6021158040403,232.96262,163.88151546561278,243407.22398102583,171228.949697116,544.88862,366.9755054945737,568785.5269619367,382899.8824415589,484.70493,237.3709446582922,503674.3566435758,245864.99214478777,2753.4769,1269.950211399837,2841683.676561243,1291960.6316387292,896.27372,407.9176299675583,922056.5255096178,411840.9417697664,1402.58126,598.2597210787244,1433050.3923350992,597341.1717742638,0.37834,100000,0,1058921,11063.964726410264,0,0.0,0,0.0,47449,495.21988527724665,0,0.0,43760,454.3564346090754,1101258,0,39495,0,0,0,0,0,102,1.0657304955646805,0,0.0,0,0.0,0,0.0,0.04863,0.1285351799968282,0.2961135101789019,0.0144,0.3514364423455332,0.6485635576544667,23.363508454759533,4.097655911025843,0.3073359073359073,0.2707850707850708,0.2149292149292149,0.2069498069498069,11.183896940958933,5.969323945671386,15.352363247689985,11247.35491803108,44.17136760599583,12.853442565332694,13.43056798784422,9.15250816008614,8.734848892732778,0.5763191763191763,0.80893536121673,0.6909547738693468,0.5724550898203593,0.1057213930348258,0.7685352622061483,0.9205607476635514,0.8909657320872274,0.7512953367875648,0.1524390243902439,0.4998200791651673,0.7323717948717948,0.6174112256586484,0.5186915887850467,0.09375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0047430830039525,0.0067863664029214,0.0093950597221093,0.0114288038394273,0.0135721267410605,0.0156579711917795,0.0179635829182657,0.0201042518397383,0.0224241865987083,0.0246232701178882,0.0269537627452792,0.0289686661250681,0.0310622997434655,0.0332593777410866,0.0351268930583553,0.0372936473414942,0.0391456858797401,0.0408642848230254,0.0429041872485879,0.0574018757963779,0.071234167277295,0.0839287775294574,0.0960925585064422,0.1086358026644726,0.1241032694952915,0.1348320566954529,0.1450426376808508,0.1550698161383716,0.163893448338751,0.1751394782758546,0.1862858627071135,0.196821529190371,0.2053976620337463,0.2143524883145449,0.2237092631951824,0.2317358726194193,0.2390590932590078,0.2470944406018618,0.2537120501498547,0.2599285491311435,0.2645889369664366,0.2703895151464969,0.2739934372829393,0.2768194233687405,0.2807821683362289,0.2845573232860594,0.2876811594202899,0.2909109725492225,0.2938985058908708,0.2908198924731183,0.2871826540414436,0.2842746463058612,0.2817250115154306,0.2781938195595548,0.2747197437657286,0.2718318072213204,0.2717506826468712,0.2720107585455535,0.2736120996441281,0.2746042413381123,0.2744924282704161,0.27605309919515,0.2767556477331014,0.2776939112932212,0.278870607774952,0.279300754866905,0.2842213948249429,0.2899580125962211,0.2924569392199564,0.2956604457329226,0.2986463620981388,0.3025252208785011,0.306517775752051,0.3079305490380103,0.3106176922168419,0.3095890410958904,0.3187461835945451,0.3186874304783092,0.3197563760944042,0.0,1.9520366224551848,48.18913334028257,143.7870676642946,204.52685367340692,fqhc5_100Compliance_implementation,35 -100000,95711,48184,459.8217550751742,4857,49.398710702009176,3881,39.97450658753957,1497,15.254254996813325,77.33810060160408,79.72024221682986,63.31256206328344,65.07480171681594,77.1360137843569,79.52322761286392,63.23551868790237,65.00251685875438,0.2020868172471779,197.01460396593973,0.0770433753810664,72.2848580615647,231.00264,162.5217971389826,241354.3270888404,169804.7216505758,538.10413,362.592306721035,561663.2675450053,378286.416694859,484.14265,237.38000079034285,502687.44449436327,245562.7794219824,2747.59188,1301.9174540248998,2830984.8188818423,1320527.576318965,895.75574,412.2110016226056,920327.4649726782,415214.21915083553,1451.93544,628.7714723294515,1480946.8086217884,624391.5972731791,0.37853,100000,0,1050012,10970.651231310923,0,0.0,0,0.0,46837,488.773495209537,0,0.0,43782,454.3573883879596,1113151,0,39965,0,0,0,0,0,90,0.9298826676139628,0,0.0,2,0.020896239721662,0,0.0,0.04857,0.1283121549150661,0.3082149474984558,0.01497,0.3545777426992896,0.6454222573007103,23.29302311316656,4.07388753857247,0.3027570213862406,0.2764751352744138,0.2195310486987889,0.2012367946405565,11.26251857640042,6.059338724541675,16.116469001767467,11278.96480287074,44.721053658308016,13.260834174234914,13.30886858983325,9.619427403314443,8.531923490925411,0.5934037619170317,0.8136067101584343,0.708936170212766,0.5868544600938967,0.1241997439180537,0.7692307692307693,0.9202733485193622,0.9006024096385542,0.7415254237288136,0.1818181818181818,0.5163083765752409,0.7397476340694006,0.6334519572953736,0.5275974025974026,0.1074380165289256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025541748596217,0.0048792858592006,0.007046114484131,0.0090452669878244,0.0111516976831737,0.0132818627201336,0.0154723293148114,0.0175472642405548,0.019788311090658,0.0219935493779757,0.024272193111086,0.0261944612730651,0.0283472824857595,0.0305645377216649,0.0327325995234017,0.0346292162698412,0.0365174356000993,0.0387612180318514,0.0405767871252131,0.0427526720420026,0.057241026390818,0.0716252289976445,0.0848889308611662,0.0978931978584876,0.1102755834924117,0.1251692620176032,0.1361808245344086,0.1457918446022939,0.1544931811380445,0.163739364612727,0.1753194974246244,0.1866777829509403,0.1965382103200522,0.2054194847549631,0.2140694999394599,0.2240054976114208,0.2322641172265904,0.2399342645850452,0.2467351064071407,0.2532151945164027,0.2592202318229715,0.2647310191418369,0.2699572492687375,0.2749991010751141,0.2786445043862847,0.2829543912458826,0.2863316922845654,0.2894173693730416,0.29253286704229,0.294088936377907,0.2906124315671953,0.2870165404023044,0.2853303313867586,0.2823712723442932,0.2807715133531157,0.2777157368171457,0.2741606761987519,0.2734624388167695,0.2741108100277792,0.2748713932252265,0.2755353739208431,0.2768627605500611,0.2776117531504044,0.2782142857142857,0.2803650998993819,0.2814996767937944,0.283505737380589,0.2867844434733754,0.2918202684843848,0.2978581515769653,0.3005826983415509,0.3037895396179141,0.3065103363159518,0.3090381179273377,0.3116155118544385,0.3165969316596931,0.3188794516465504,0.3221238938053097,0.3233564938535542,0.3254945875326614,0.0,2.221975759415162,51.4400480993227,145.49870816793378,194.17234905438423,fqhc5_100Compliance_implementation,36 -100000,95661,48070,459.1526327343431,4816,49.29908740238969,3814,39.389092733715934,1477,15.126331524863842,77.27782633283482,79.68774667683599,63.2892740309558,65.0718235632016,77.08559341578587,79.49767704502797,63.21733433022821,65.00258709083592,0.1922329170489547,190.06963180801503,0.071939700727583,69.23647236568797,230.8779,162.38587437216907,241350.0799698937,169751.3870565529,539.68892,363.8746389345296,563719.2377248827,379930.3571304186,480.97148,235.0271771533419,500069.2131589676,243549.5592667668,2680.81587,1247.1270210795078,2770712.996937101,1271994.7638844552,889.04384,399.8990763185531,918250.4155298398,406918.98089979537,1433.84094,607.7519383566536,1470162.4695539458,611368.3723657422,0.37899,100000,0,1049445,10970.458180449712,0,0.0,0,0.0,47023,491.0778687239314,0,0.0,43523,452.20100145304775,1111299,0,39933,0,0,0,0,0,90,0.9408222786715588,0,0.0,1,0.0104535808741284,0,0.0,0.04816,0.1270745929971767,0.3066860465116279,0.01477,0.3486658701712465,0.6513341298287535,23.18505433198005,4.046435638775934,0.3028316727844782,0.2787100157315155,0.2147351861562663,0.2037231253277399,11.340478893936911,6.167664867538517,15.710988372047964,11295.904731107456,43.68255772338621,12.961693398584613,13.082214939614971,9.065217087511648,8.57343229767498,0.5833770319874148,0.8043273753527752,0.6883116883116883,0.5873015873015873,0.1209781209781209,0.7350579839429081,0.8988505747126436,0.8584905660377359,0.7105263157894737,0.1404494382022472,0.5202376531748979,0.7388535031847133,0.6236559139784946,0.5500794912559619,0.1151919866444073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0043607009573259,0.0064767628367815,0.0087807555108387,0.0108957729284297,0.0130398019580077,0.0152371239163692,0.0173736300775225,0.0195065567398375,0.0216654203501295,0.0241435897435897,0.0259876327629065,0.0278749588409614,0.0298682827283408,0.031932686351435,0.0342755489362582,0.0364437075799181,0.038386858964375,0.0402805381837858,0.0425290112708656,0.0572634746807665,0.0709513237265415,0.0837347943365135,0.0965433787551954,0.1081859620985101,0.1244297674615523,0.1348688052838924,0.1441431843605177,0.1543784223134839,0.1633584180524095,0.1750387897595035,0.1861026601561231,0.1978667827601219,0.2075217752877839,0.2152394791013066,0.2248999988919544,0.2330940392323237,0.2407376154633723,0.2476881006683232,0.2547641665999016,0.2602034917331483,0.2653905483101949,0.270512835672646,0.2743946999556732,0.2791211727412949,0.2821834050369201,0.2851243289241512,0.2880277837851591,0.2923116782175011,0.2956871537852809,0.2928133629689499,0.2901897033904143,0.2880856345020167,0.2860220339473152,0.283879216782385,0.2801746591083193,0.2765482169167155,0.2768768176664859,0.2768789188635082,0.2770460791662205,0.2776249555568031,0.2786334913112164,0.2799506658026214,0.2817855630585456,0.2840195561520395,0.2838724739941373,0.2839208112023177,0.2877026517531733,0.2916622635527845,0.2944643568299482,0.3003101623791279,0.3032826006257623,0.3078952327115131,0.3091477836270695,0.3123416236508681,0.3152135125490662,0.3162576687116564,0.3132036847492323,0.3133333333333333,0.3214013709063214,0.0,1.9071773181912817,49.03756311736881,140.5908911849894,198.47043785737023,fqhc5_100Compliance_implementation,37 -100000,95821,48426,462.7795577169932,4822,49.15415201260684,3829,39.40681061562706,1457,14.80886235793824,77.39792083527668,79.70134555393813,63.37134666233783,65.07167081222931,77.20608284747568,79.5144326917899,63.29808715375619,65.00285457906745,0.1918379878009943,186.912862148219,0.0732595085816356,68.81623316186847,233.1384,163.91077533101753,243306.1646194467,171059.34537420562,543.30588,366.35169121555015,566427.2132413563,381755.5976409661,486.22198,238.6095332376395,504074.9313824736,246399.51923791663,2676.71179,1267.703179230983,2753907.024556204,1283447.9281483004,851.62525,391.0807856476288,873475.720353576,392863.23992465,1409.65832,612.5230217654276,1433744.7741100593,607102.9812170976,0.37961,100000,0,1059720,11059.371119065758,0,0.0,0,0.0,47381,493.8792122812328,0,0.0,43999,455.8290980056564,1102823,0,39550,0,0,0,0,0,91,0.9496874380355036,0,0.0,1,0.0104361256926978,0,0.0,0.04822,0.1270251047127314,0.3021567814184985,0.01457,0.3645791783007578,0.6354208216992421,23.152459718843797,3.961987115820834,0.3133977539827631,0.2885870984591277,0.2047531992687385,0.1932619482893706,11.323135085849016,6.214205319758139,15.85447268246146,11241.703033397049,44.15177899035002,13.548043492941556,13.60678111205791,8.817544850199921,8.17940953515064,0.5870984591277096,0.8081447963800905,0.6766666666666666,0.5956632653061225,0.1027027027027027,0.7435254803675856,0.90020366598778,0.845679012345679,0.7463414634146341,0.1186440677966101,0.5159574468085106,0.7345276872964169,0.6141552511415526,0.542314335060449,0.0976909413854351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023487486838908,0.0046307085896097,0.0065317713880014,0.0085801610430226,0.0106538711776187,0.0128635688261993,0.01504962197632,0.0171792909971945,0.0192596528153832,0.0212602694877277,0.0233287229137851,0.025432423005109,0.0274518667680358,0.029379984563931,0.0316529411158409,0.0337418562150888,0.036116283881647,0.0381111306889439,0.040041952668252,0.0418184467434066,0.0566346755685374,0.0706022634562684,0.082785449893569,0.0953602556958565,0.1075810599991567,0.1225262178619756,0.1329473639563982,0.1436128318113119,0.1533366805183151,0.1616864730361663,0.1738549844387727,0.1854227279118312,0.1960865311446896,0.2048016267806579,0.2140972069496371,0.2240205466561867,0.2328980966292385,0.2409641263167362,0.2483335600598558,0.2556285178236397,0.2610042537451452,0.2665007826919932,0.2709850562754185,0.2752007083118965,0.2791667171613122,0.282940684635058,0.2869982025164769,0.28964265773311,0.2932184115989972,0.2955236053195827,0.2922936616507068,0.2893892878679897,0.2862454574791991,0.2830362409541485,0.2795910516659762,0.2757338939414713,0.2717550518971193,0.2725490836627356,0.2732110372498682,0.2726561666725922,0.2733593036476487,0.2737152402476172,0.275039580034997,0.2772248569456504,0.2783663295144049,0.2806229720960415,0.2824014795845782,0.2877293289771299,0.2906688109638849,0.2931980577158422,0.2959800136270724,0.3013734952537519,0.3050176056338028,0.3083118067163045,0.3093606234156417,0.3124041071639324,0.3142857142857143,0.3175364927014597,0.3272335844994617,0.3327095808383233,0.0,2.1205224591264686,52.08446985891622,140.67192021362408,190.44543199891703,fqhc5_100Compliance_implementation,38 -100000,95553,48204,460.8855818237,4708,48.0466338053227,3778,38.97313532803784,1432,14.620158446097978,77.19945181010942,79.66906598277171,63.224607941291474,65.05295540713361,77.01846667298595,79.49073939069987,63.156662494380726,64.98809660478922,0.1809851371234714,178.32659207184065,0.0679454469107483,64.85880234438923,232.3321,163.41978889681928,243144.516655678,171025.07310995922,541.82248,364.94195940958286,566452.5446610781,381340.9059179961,480.03193,234.55207781603917,498113.7379255492,242297.33645529684,2653.83882,1230.3159422005344,2742759.0133224493,1253090.010829136,874.00497,389.0418663534979,900759.5679884462,393318.9579605684,1388.28888,581.8566523937677,1420007.0746078093,583333.4146318668,0.37948,100000,0,1056055,11052.023484349,0,0.0,0,0.0,47238,493.7573911860434,0,0.0,43345,449.467834604879,1099079,0,39448,0,0,0,0,0,101,1.0465396167571923,0,0.0,0,0.0,0,0.0,0.04708,0.1240645093285548,0.3041631265930331,0.01432,0.3623983739837398,0.6376016260162601,23.30240279208177,4.079659411662391,0.3210693488618316,0.2731604023292747,0.2077818951826363,0.1979883536262572,11.585157393879506,6.348545029395452,15.116252639401054,11327.34966279702,43.329504427542965,12.56735528331097,13.92949175098104,8.77950545349192,8.053151939759033,0.594494441503441,0.8091085271317829,0.7164056059356966,0.5707006369426751,0.1256684491978609,0.7598920863309353,0.9130434782608696,0.8767908309455588,0.7091836734693877,0.1437908496732026,0.5255063765941486,0.7394822006472492,0.6516203703703703,0.5246179966044142,0.1210084033613445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025037759373954,0.0048091556583673,0.0069055162888943,0.0090694647795672,0.0113206010506169,0.0134967073742583,0.0156146348930958,0.0179644389944819,0.0202722063037249,0.0224228573770995,0.0243489329377829,0.0264978972371032,0.0285269976622279,0.0306990850104702,0.0328314404704083,0.0349457078679598,0.0370650764843142,0.0391910289853566,0.0410807657854717,0.0428841355840197,0.0570902586738909,0.0714398062222781,0.0857220943310943,0.0978778555171541,0.1101528315048512,0.1255141851490606,0.1353481840811897,0.1453940066592675,0.1552281979858581,0.1641287047791113,0.1755888419711221,0.1866671007509658,0.1966664121387976,0.2060455831706407,0.2143527152741759,0.224164741425271,0.2328872876994338,0.2410132009477603,0.2487456909792143,0.2551696423445663,0.2610016230002318,0.2656266482260692,0.2706579727326615,0.2743532801152392,0.2788467389584626,0.282900991443705,0.2872053491902199,0.2909811517924275,0.2939887166850399,0.2960863590719306,0.2932696845881036,0.2905815763017641,0.2882521167039995,0.2859434384889955,0.2837749427543343,0.2801078811468501,0.2752418499342928,0.275043922302678,0.2748316066605122,0.2751349226205368,0.2756033981583932,0.2762158956109134,0.2787900415634577,0.2801923722178727,0.2818988955992397,0.2830208360497562,0.2837679920193815,0.2885556531559794,0.2929384965831435,0.2954957797586179,0.2975649277580231,0.3030525542851148,0.3069700926444071,0.3120711754505014,0.3185439051500556,0.3246539995308468,0.3312800480769231,0.3343867272368161,0.3368336025848142,0.3387278885961611,0.0,2.1470505699664,48.50668268232483,139.9505022790695,195.54568847071937,fqhc5_100Compliance_implementation,39 -100000,95683,48433,463.0080578577176,4928,50.29106528850475,3937,40.59237273078812,1475,15.049695348180972,77.33990302576841,79.73151510758956,63.32261558699434,65.0894982271666,77.1495212933839,79.5443710671247,63.24959245730323,65.02048048960663,0.1903817323845089,187.1440404648581,0.0730231296911085,69.01773755997453,231.56144,162.7942978263868,242008.96711014496,170139.207410289,542.07191,365.46351234313664,565958.8432636936,381382.2751618749,490.30589,240.6588046041684,509528.1502461253,249296.4274914273,2764.4467,1307.0512648063914,2846732.658884024,1323582.8462803129,903.39173,411.7320917756896,929334.531735,415492.3254660593,1431.3884,615.1980938891634,1460879.7174001653,611525.1832555035,0.38037,100000,0,1052552,11000.40759591568,0,0.0,0,0.0,47248,493.2119603273308,0,0.0,44275,459.7995464189041,1109617,0,39856,0,0,0,0,0,86,0.8883500726356823,0,0.0,1,0.0104511773251256,0,0.0,0.04928,0.1295580618871099,0.2993100649350649,0.01475,0.3680731090803033,0.6319268909196967,22.98389145276209,4.0777359152243005,0.2997205994411989,0.2895605791211582,0.2136144272288544,0.1971043942087884,11.271682273268771,6.056918501485145,15.81910859188597,11332.71074389267,45.27085499676733,14.076009202860822,13.315017306295948,9.437320794945803,8.44250769266476,0.5928371856743714,0.8254385964912281,0.6949152542372882,0.5909631391200951,0.0979381443298969,0.7619848612279226,0.9233954451345756,0.8525073746312685,0.7632850241545893,0.08125,0.519650655021834,0.7534246575342466,0.6313912009512486,0.5347003154574133,0.1022727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0044701231564543,0.0066260108979107,0.0088774225003047,0.0110023082476637,0.013131374824406,0.0151873445590573,0.0171776761655915,0.0194533038927052,0.0216688161477205,0.0236711261469065,0.0259294996817836,0.028031424810793,0.030200962063389,0.0324388481783465,0.0343372933403641,0.0362615389397126,0.0382092216986028,0.0402288686605981,0.0421892103205629,0.0570389870878776,0.0708056326231481,0.0846596930050046,0.0974193344765551,0.1091699371228425,0.1243387362986161,0.1352948666256392,0.144844839516687,0.1547015029000523,0.1638053979862101,0.1755956227650683,0.1866640696013504,0.1981989820333231,0.2071834681828121,0.2152141135555726,0.225448826571862,0.2340793466619064,0.2417513190014961,0.2483637889769853,0.2550012023497349,0.2606619177575281,0.2662786212700305,0.2712092902249237,0.2754240838949876,0.2797423362003081,0.2828602378197395,0.2866855807326492,0.2898758781903878,0.2938680465717982,0.2965330872660163,0.2938541021984232,0.2913895454295608,0.289672154214155,0.2863971809424779,0.2836044647628095,0.2803641251221896,0.2769624088627971,0.2772086020097541,0.2772043193605986,0.2777057392045757,0.2794287631902755,0.2803201636217035,0.2805314895034988,0.2805864396960852,0.2818582797967207,0.2843977154724818,0.2855196685020151,0.290342796264962,0.294023068857043,0.3003383429066016,0.3054302724156594,0.3082920661679486,0.3125428375599726,0.3161820099442519,0.3212896053362979,0.3253420652555256,0.3283378746594005,0.3318530480419863,0.3291976840363937,0.3232477977786289,0.0,2.1809926357310148,51.50415573882471,148.5890737891277,197.58810394350755,fqhc5_100Compliance_implementation,40 -100000,95775,48772,464.7454972592012,4873,49.61628817541112,3876,39.780736100234925,1433,14.513181936831112,77.331780499572,79.67047507632421,63.32970022966426,65.06193811870341,77.1379669104688,79.4843952834592,63.25508092947877,64.99334510252476,0.1938135891032004,186.07979286501572,0.0746193001854891,68.59301617865299,231.26246,162.76437988684674,241464.32785173584,169944.53655635266,545.49402,368.324076376692,568869.6632732968,383884.9300923052,493.38501,242.6184602841768,511153.54737666406,250313.13982551865,2700.9536,1273.526610172241,2773519.133385539,1283194.4485546956,865.04394,401.6987136803617,885677.6925084834,401937.38901204034,1387.3866,603.1859469475049,1406365.0221874183,592835.231624125,0.3828,100000,0,1051193,10975.651265987992,0,0.0,0,0.0,47462,494.8368572174367,0,0.0,44546,461.0597755155312,1105120,0,39709,0,0,0,0,0,98,1.0232315322370138,0,0.0,2,0.0208822761681023,0,0.0,0.04873,0.1272988505747126,0.2940693617894521,0.01433,0.3624704025256511,0.6375295974743489,23.147485804064814,3.951155962750829,0.3222394220846233,0.2907636738906088,0.1945304437564499,0.1924664602683178,11.195866480068853,6.15270647352843,15.40372598993044,11382.164908957928,44.41480513287119,13.787124058331324,14.123680396960223,8.333810260260138,8.170190417319505,0.5915892672858617,0.8251996450754214,0.6925540432345877,0.5636604774535809,0.0978552278820375,0.7624356775300172,0.9353448275862069,0.8425655976676385,0.7202072538860104,0.1626506024096385,0.5180811808118081,0.7481146304675717,0.6357615894039735,0.5098039215686274,0.0793103448275862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002218283109648,0.0044807590933052,0.0068901133469309,0.009000772075257,0.0114213068904144,0.0136152099308546,0.0157725168736363,0.0178345379558169,0.0198421622947803,0.0220302198927152,0.0242857289306693,0.0264906102081258,0.0288525803831244,0.0307893571215195,0.0330054802720526,0.035304820684593,0.0376883641447879,0.0399211740911683,0.0418693103878289,0.0436602559430219,0.0583551608628048,0.0724686192468619,0.0860554344179805,0.0990121899957965,0.1114026491322353,0.1265521796565389,0.1366194943552234,0.1465596086355418,0.1556219648860665,0.1646737383477981,0.176109023972787,0.1873938581024803,0.1973180493322312,0.2060399894994749,0.2158613098514034,0.2247498531807151,0.2326258703802892,0.2407401158540014,0.2476325489084207,0.2547140649149922,0.2606433411187938,0.2660658765224303,0.2710009465215334,0.2758025667757127,0.2801904206742446,0.2844270781974164,0.288196487362768,0.2925459431234956,0.2959872504178598,0.2983794341216216,0.2960177586438853,0.293163590419688,0.2900482195324251,0.2867720285776142,0.2838363156176741,0.2805234560342848,0.2773460375745873,0.2772309711286089,0.2779647121116368,0.2787615348986354,0.2792728768865366,0.2804695501457496,0.280851419729854,0.2824119482835488,0.2833233281306279,0.2854579497581526,0.2870691123857118,0.2914151681000781,0.2939106806939315,0.2989503590876805,0.3017268730453701,0.3067189071848361,0.3119757835656177,0.3173734610123119,0.3178112995408976,0.32452206750059,0.3283856159143076,0.3354049719326383,0.3395553115564095,0.3408385093167702,0.0,2.638868333857099,49.878245519426194,143.92518427358743,196.98625087276267,fqhc5_100Compliance_implementation,41 -100000,95682,48765,465.4375953679898,4902,50.009406157898034,3909,40.21655065738592,1476,14.976693630985974,77.34192318165195,79.71556236224806,63.32298576779221,65.0741643852601,77.15358924077924,79.53340642522221,63.25290251574396,65.0091562298764,0.1883339408727096,182.1559370258541,0.0700832520482492,65.0081553837083,233.29988,164.05314816829627,243828.3898747936,171456.64614901054,545.43648,367.2942538644703,569428.3146255305,383246.7693656805,489.14904,240.09309567696155,506651.2823728601,247442.56270218268,2759.95668,1287.0988390931866,2843861.9489559163,1304536.0141857257,892.2617,407.1058798915784,917990.708806254,410940.4589071902,1438.18142,605.9119933908613,1462687.4438243348,599693.1996755823,0.3835,100000,0,1060454,11083.108630672436,0,0.0,0,0.0,47529,496.1016701155912,0,0.0,44222,457.69319203193913,1096955,0,39392,0,0,0,0,0,83,0.8674567839301017,0,0.0,1,0.0104512865533747,0,0.0,0.04902,0.1278226857887874,0.3011015911872705,0.01476,0.3632453567937438,0.6367546432062561,23.204405074450463,4.132677985959312,0.3179841391660271,0.2673317984139166,0.2113072397032489,0.2033768227168073,11.452229627522597,6.1430425034533,15.731942764435033,11402.373313869495,44.78119433699933,12.778328557607828,14.165379648506551,9.256299749680318,8.581186381204638,0.5743156817600409,0.8086124401913876,0.6838294448913917,0.559322033898305,0.110691823899371,0.7804878048780488,0.9426048565121412,0.883008356545961,0.7201834862385321,0.1698113207547169,0.4841911764705882,0.706081081081081,0.6029411764705882,0.5016447368421053,0.0959119496855346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024300598402235,0.0050171800407455,0.0072836462866591,0.0094561927397566,0.011664446320157,0.0138258231353464,0.0162306547315621,0.0183492796095289,0.0207881712953495,0.0229867403880612,0.0251309866808846,0.026976237908443,0.0288400222162795,0.0309936941021308,0.0330112721417069,0.0351178350206301,0.0369695149110722,0.0390795291773058,0.0410877703826955,0.0432136716511228,0.0586533238624493,0.0724487445289103,0.0859092101810548,0.0981859124102952,0.1107582248295946,0.1258479284618233,0.1366536783207873,0.1468332587716495,0.1568669367337559,0.1664716804945851,0.177839108217081,0.1882918588785654,0.1990596634814218,0.2084906176486678,0.2169348271080492,0.225637787599836,0.2338549456436815,0.2419137011276926,0.2488516892926406,0.2549210457007408,0.2608554838411178,0.267010502186981,0.2734231729392695,0.278436118333553,0.282036648006703,0.286622164199325,0.2900117626448432,0.2935237344387787,0.2962943774528216,0.2996173132752705,0.2962728399719722,0.2927880774634308,0.2895248562732499,0.2864665993363151,0.2835644033653276,0.2799859571999878,0.2761117508794624,0.2760642741314638,0.2758073866930396,0.2761399825644492,0.2766342921180426,0.2774599542334096,0.2784646228385264,0.2787569159378904,0.2803821107067611,0.2810306875566489,0.2816379627272984,0.2855538922155688,0.2914770160870018,0.2944896115627823,0.300292069197933,0.3036473366570454,0.3067408008996064,0.3093471254028933,0.3135875601629026,0.3240579710144927,0.3248957712924359,0.3296486379786814,0.330715059588299,0.328159645232816,0.0,2.533025265071629,51.364145031637406,140.57038075249724,200.82952076584365,fqhc5_100Compliance_implementation,42 -100000,95731,48180,460.1121893639469,4815,48.92876915523707,3814,39.18270988499024,1400,14.175136580626964,77.32392886815877,79.6877089653491,63.31606620966248,65.06485823452559,77.14240766714481,79.51342562337867,63.2462501191642,65.00098411293418,0.1815212010139646,174.28334197043682,0.0698160904982856,63.874121591410926,233.0757,163.84200561544986,243469.17926272572,171148.16827373617,539.65247,363.570715401408,563042.0866803856,379111.8410393775,474.74965,233.0521675683293,491956.9522934055,240398.49231915476,2688.66373,1247.3160584445232,2764973.331522704,1259728.615318204,894.08216,397.486450383973,919678.024882222,401048.7967100439,1363.01418,588.4465048210302,1382106.6530173088,578562.5121057989,0.3797,100000,0,1059435,11066.780875578444,0,0.0,0,0.0,47085,491.1575142848189,0,0.0,42879,443.9836625544495,1103543,0,39640,0,0,0,0,0,87,0.9087965235921488,0,0.0,0,0.0,0,0.0,0.04815,0.1268106399789307,0.2907580477673935,0.014,0.3631141045958795,0.6368858954041204,23.162393734075444,3.997116570198373,0.3085998951232302,0.2831672784478238,0.2003146303093864,0.2079181961195595,11.215055424310416,6.069568233178871,15.066829170791763,11285.345703486684,43.55598088602752,13.05974014853442,13.268059641984136,8.58118380307538,8.646997292433582,0.5755112742527531,0.7953703703703704,0.6924384027187765,0.5759162303664922,0.1021437578814628,0.7470319634703196,0.9221698113207548,0.8853503184713376,0.7158469945355191,0.1034482758620689,0.5064361897756529,0.7134146341463414,0.6222479721900348,0.53184165232358,0.1017770597738287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022587539376259,0.0044814405499396,0.0066068565165323,0.0088195248836594,0.0109655368840786,0.0129837067209775,0.0150072385457659,0.0171792542386722,0.0192824791174636,0.0216445340896292,0.0239398786089238,0.0259864266866535,0.0282627022803446,0.0305209052234731,0.0325370207935607,0.034649934359462,0.0366062087610445,0.03847710783347,0.0403489980345462,0.0422592442096708,0.0566512492299982,0.0708321998786331,0.0835072412093501,0.0960964118958482,0.1080399890325438,0.1236208227988702,0.1349490147809386,0.1455618025385467,0.1546900537318535,0.164045329302156,0.1761273723531374,0.1874601234955068,0.19778881798515,0.2065926857267807,0.2149259312210626,0.2250520441156929,0.2336420441865655,0.2408442939276994,0.2483057677681541,0.2546713437421189,0.2606434123793746,0.2659998125937031,0.271234045578981,0.2748503640441891,0.2789764296660261,0.282465810859137,0.2863656291100394,0.289225361977409,0.2929035100221563,0.2952516769661438,0.2923195063790804,0.2891524817327407,0.2859054729872508,0.2835818738801225,0.2809043808732056,0.2774077242727939,0.2741966033209167,0.2739358657792749,0.2743612874674473,0.2754225990508185,0.2762311435976803,0.2766690284994489,0.2775983160702749,0.2789021840665451,0.2808674445294568,0.2818565838235675,0.2816000905284599,0.2855354572197534,0.2896375594738315,0.2946118649416219,0.298027327843634,0.301877860186208,0.3065893647528209,0.3114087898856111,0.310013076779376,0.3143025309005297,0.3191743942566557,0.3261802575107296,0.3278388278388278,0.320431708224786,0.0,2.522527720884589,47.0979044360594,146.57324434959511,193.93859459947151,fqhc5_100Compliance_implementation,43 -100000,95783,48470,462.5142248624495,4781,48.71428123988599,3870,39.725212198406815,1459,14.856498543582893,77.4066300966336,79.74711635378652,63.35719594835807,65.08834785950535,77.21505391011725,79.5595811226903,63.28369862370723,65.01931514373487,0.1915761865163574,187.53523109621997,0.0734973246508374,69.03271577047576,232.45574,163.46884641286022,242689.05755718652,170664.97234622223,545.34048,368.56672281758034,568638.4744683295,384083.0616572388,489.09322,240.1690002396129,506319.01276844536,247430.61107694075,2743.84532,1294.7627854120994,2818758.443565142,1306014.119711972,913.95121,420.03402588345705,936785.108004552,421173.3153432124,1427.42406,618.7046438910969,1455005.0008874226,613224.4210647386,0.38089,100000,0,1056617,11031.320798053934,0,0.0,0,0.0,47466,494.8059676560559,0,0.0,44112,456.23962498564464,1103054,0,39610,0,0,0,0,0,116,1.211070858085464,0,0.0,1,0.0104402660179781,0,0.0,0.04781,0.125521804195437,0.3051662832043506,0.01459,0.3662674650698603,0.6337325349301397,23.05807537263456,4.030492773874225,0.3018087855297157,0.2819121447028423,0.2049095607235142,0.2113695090439276,11.191206434287182,6.011183271113762,15.622358600786953,11354.531140923787,44.36766439598846,13.285560901562569,13.232586534756194,8.833877413634056,9.015639546035636,0.5901808785529715,0.8065994500458296,0.7148972602739726,0.5813366960907944,0.1320293398533007,0.7434154630416313,0.9117647058823528,0.8563049853372434,0.736318407960199,0.1658031088082901,0.5232083178611214,0.7349768875192604,0.656590084643289,0.5287162162162162,0.1216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0044817586339761,0.0065962391288905,0.0090730825112016,0.011269210036513,0.0133907659721797,0.0155482147590791,0.0180268463226662,0.0201050737969663,0.0222583814319047,0.0244942300202922,0.026545312756526,0.0285206273510246,0.0306670784434836,0.0327488635309397,0.0347569286687869,0.0365285938922453,0.0388742030788368,0.0407255802356265,0.0426960677140269,0.05768187320005,0.0717221472719857,0.0846933534584866,0.0974461376773515,0.1099275087453112,0.1257687511887905,0.1363973627864577,0.1465421912215039,0.1556084339920611,0.1642030848329048,0.1751396016913592,0.1866681083418933,0.1977810618738182,0.2063949678941161,0.2144434313585481,0.2243870596565763,0.2328032296917518,0.2402477685095667,0.2478452186536019,0.2545814589700445,0.2605483158539828,0.2659397933903613,0.2714873784570252,0.2753814097190621,0.2798717699630852,0.2843274940251805,0.2877056872927485,0.2913503960534513,0.2950936363518708,0.2979700051442365,0.2949491142103279,0.2923979823247247,0.2898569076864632,0.2863861957525392,0.284257942152679,0.2815513243012327,0.2788155615057489,0.2783153566241861,0.2793136158823728,0.2797976045149762,0.2801384134543831,0.2807863428784226,0.2804293217629596,0.2808448394317502,0.2823966116213772,0.2841831345167856,0.2848013962784674,0.2883553570320739,0.2922917027542006,0.2970932279644771,0.3026711560044893,0.3044204373466938,0.3098782973991474,0.3112301853092208,0.3193184940917835,0.3195947501726917,0.3228382042783971,0.3206692913385827,0.3213123644251627,0.3250094589481649,0.0,2.605339266224152,50.560017897168095,142.0878135998237,196.01981294294103,fqhc5_100Compliance_implementation,44 -100000,95682,48701,464.4342718588658,4699,47.67876925649547,3742,38.4502832298656,1449,14.778119186471857,77.29491858535671,79.6950110352198,63.29396199958445,65.07320158531753,77.10533452842768,79.50946535565231,63.22248521520645,65.00568197155673,0.1895840569290356,185.5456795674968,0.0714767843779995,67.51961376080828,232.58994,163.66839429898337,243086.4112372233,171054.52885493965,546.32785,367.88147438758654,570323.4986726866,383824.0780790396,491.23213,241.100028515576,508557.2625990259,248442.82391803432,2671.76746,1254.1375299662154,2750896.898058151,1269291.235515786,886.28054,404.23483271338193,910362.9522794256,406577.7982025762,1407.82848,601.2966573927699,1437707.8865408332,601174.9841667116,0.37947,100000,0,1057227,11049.382328964695,0,0.0,0,0.0,47554,496.3002445601053,0,0.0,44278,457.89176647645326,1099907,0,39553,0,0,0,0,0,83,0.8674567839301017,0,0.0,0,0.0,0,0.0,0.04699,0.1238306058449943,0.308363481591828,0.01449,0.3642100977198697,0.6357899022801303,23.250222965285676,4.169368441520364,0.3123997862105825,0.2720470336718332,0.205237840726884,0.2103153393907001,11.362474055542942,6.128490993054365,15.4858100548159,11309.07924864162,42.87497471663003,12.399280619142388,13.245792722657772,8.659350895295228,8.570550479534637,0.5831106360235169,0.8055009823182712,0.7040205303678357,0.578125,0.1207115628970775,0.7477876106194691,0.920863309352518,0.8575757575757575,0.7330097087378641,0.1525423728813559,0.5118683001531393,0.7254575707154742,0.6436233611442194,0.5213523131672598,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022403114134236,0.0043836950896526,0.0068450718529426,0.0093945401860606,0.0117165630057921,0.0139023371010977,0.0161231070655945,0.0183179747042357,0.0205937717395752,0.0228541574898329,0.0249163982520567,0.0269975961044564,0.0289568733985737,0.0311037823353601,0.0333199145325612,0.0353272110531976,0.0375033679454496,0.0395269638889465,0.0415405262008052,0.0436010756947195,0.0574096706464855,0.0712139454535936,0.0842139506574459,0.0970779801550974,0.109978687936528,0.1255528515501005,0.1358787377002197,0.1459571115228178,0.155902718413404,0.1652896995708154,0.1759940534542751,0.1869786764467235,0.197808290662405,0.2063146850854089,0.2142181658236199,0.2240982263457407,0.233717842879136,0.241246230703452,0.2483650483673191,0.2542697324683065,0.2596816208393632,0.2654565881402942,0.2714165650635069,0.2758136857506056,0.2796204500170093,0.2841284720509152,0.2869607671315189,0.2902196167198647,0.2941701252860634,0.2960757709483224,0.2931080826815042,0.289805945159608,0.2863166179446818,0.283741513268851,0.2806960336752238,0.2765401140655342,0.27300336924026,0.2726587217022114,0.2724281378934088,0.272544125512569,0.2728481285224783,0.2724274145763381,0.2744007028406476,0.2759151785714285,0.2770452358036573,0.2786607608129234,0.2803054044044329,0.2836674417143216,0.2882215152256756,0.2927330986194074,0.2971743186058151,0.2995559784332381,0.3024753094136767,0.3075583156619206,0.3100869402636253,0.3125147859001656,0.3168301886792453,0.3187299035369775,0.3156756756756756,0.3174188735546437,0.0,2.493996575959993,48.58957137182115,134.97456143140644,194.02960389553883,fqhc5_100Compliance_implementation,45 -100000,95716,48130,459.03506205859,4809,49.04091270007105,3795,39.01124158970288,1424,14.417652221154247,77.3593554540744,79.73321741966276,63.33143217950936,65.08521821582963,77.17923103562376,79.55883751187112,63.262728184608015,65.02167265847604,0.1801244184506458,174.37990779164636,0.0687039949013481,63.54555735359213,231.21604,162.59536963816834,241564.6704835137,169872.71682703865,541.83664,365.0933579755139,565471.1333528355,380817.28026193526,480.89928,235.7463993755765,499071.8479669021,243585.31403764288,2660.08139,1249.1555892262418,2733982.8137406493,1259907.632189229,877.24963,401.51414200997857,898572.3181077354,401544.143100398,1382.80442,597.3573861077664,1401272.786159054,585854.0009811692,0.37874,100000,0,1050982,10980.21229470517,0,0.0,0,0.0,47295,493.4702662041874,0,0.0,43410,450.2695474110912,1112371,0,39855,0,0,0,0,0,80,0.8253583517907143,0,0.0,0,0.0,0,0.0,0.04809,0.1269736494692929,0.2961114576835101,0.01424,0.3581644815256257,0.6418355184743743,23.51652825793822,3.993656830812852,0.3061923583662714,0.2869565217391304,0.2039525691699604,0.2028985507246377,11.170619690865918,6.12051008375781,15.362968870943186,11340.858193313206,43.56350686808357,13.382360170429696,13.161264666008082,8.585795832350604,8.434086199295178,0.5805006587615283,0.8016528925619835,0.6695352839931153,0.6020671834625323,0.1116883116883116,0.75022143489814,0.9127659574468086,0.8453947368421053,0.7486631016042781,0.125,0.5086271567891973,0.7172859450726979,0.6072261072261073,0.555366269165247,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890248349066,0.0047239145640516,0.0070321775396511,0.0092421441774491,0.011500564351301,0.0137640363647469,0.016106835210765,0.0182716452646836,0.0203635174091717,0.0226660797100707,0.0247961852022765,0.0269826107499049,0.0288900777809786,0.0309605497686973,0.0329804140094524,0.0350541680449884,0.0369607305179678,0.0388656660685205,0.0409809649551413,0.0429474692971948,0.057340072262484,0.0708282308119027,0.0846778423515095,0.097568670340302,0.1095972750951713,0.1246813147288133,0.1349662000827753,0.1447036402159215,0.1543665042318543,0.1634043740476037,0.1759495716825602,0.1870683496070493,0.1971322265497508,0.2058804219372346,0.214758521945041,0.2248647330140145,0.2331922686110522,0.2415429599640126,0.2489280609814197,0.2553164687424848,0.2606603828138553,0.2658306257450737,0.2710073855243722,0.2749557352730057,0.2804807062647037,0.285034080563006,0.2882985373171646,0.2916910102370005,0.2952917754737958,0.2979883090210121,0.2939818233075136,0.2920222838167897,0.2888053736450197,0.2866237461558359,0.2838201383551114,0.27934168658557,0.2757932140498726,0.2755314986304943,0.275632648211952,0.2754427328003404,0.2765176225001398,0.2773104288690593,0.2784329277201477,0.2793264942016057,0.2799588506902078,0.279852872610475,0.2815083229532329,0.2872074101890099,0.2913528591352859,0.2941893858924426,0.300262158741638,0.3058674679740629,0.3088179876899887,0.3147131794601909,0.3210516571005369,0.3228887594641817,0.3183599638227314,0.3226830720381028,0.3285752760570967,0.3318368873924429,0.0,2.52339379291566,48.60458851318423,143.2701223255454,191.9736522585708,fqhc5_100Compliance_implementation,46 -100000,95893,48852,465.69614048992105,4870,49.72208607510454,3850,39.60664490630182,1489,15.194018332933585,77.4394230829848,79.71928906736359,63.39129033748679,65.0772139344758,77.25285269553875,79.53473349246242,63.32222516309566,65.01088065381897,0.1865703874460536,184.55557490116803,0.0690651743911274,66.33328065682065,233.69676,164.43803038713637,243705.75537317636,171480.74456648176,547.14867,368.3944945096132,570058.5548475906,383648.51919286407,489.23827,239.2279783252702,506689.435099538,246812.6929636828,2700.72804,1249.8430076278948,2783507.2737321807,1270482.3059325456,907.39804,405.7650095067564,935760.3578989082,412642.8931275032,1449.25842,606.3731402183394,1481421.6679006808,609020.8346125606,0.38271,100000,0,1062258,11077.53433514438,0,0.0,0,0.0,47645,496.2927429530831,0,0.0,44218,457.5829309751494,1098666,0,39478,0,0,0,0,0,88,0.9176895080975672,0,0.0,0,0.0,0,0.0,0.0487,0.1272503984740404,0.3057494866529774,0.01489,0.3673708920187793,0.6326291079812206,23.42145483185046,4.104207222469972,0.3171428571428571,0.2774025974025974,0.202077922077922,0.2033766233766233,11.49652397693392,6.282305824409803,15.844765064177356,11378.296043219254,44.07201531361984,13.066326000111138,13.790386376373313,8.709264898751606,8.506038038383792,0.5883116883116883,0.797752808988764,0.7158067158067158,0.5616966580976864,0.1302681992337164,0.7611548556430446,0.911504424778761,0.8724035608308606,0.6878048780487804,0.1543624161073825,0.5153306243073513,0.7142857142857143,0.6561085972850679,0.5165794066317626,0.1246056782334384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0047731971300012,0.006796579393177,0.0090670024063601,0.0113327980322603,0.0138275574367635,0.0161344537815126,0.0180232558139534,0.0199419721302766,0.0220851490415106,0.0241705772659275,0.0263897724241242,0.0283823499188194,0.0305117198357061,0.0326298751507778,0.0347679725738832,0.0369653831033127,0.0390952045426285,0.0410601939328502,0.0429336801040312,0.0569876893248412,0.0714576781217674,0.0849615714854139,0.0980556838701549,0.1107111279525072,0.1259052807162011,0.1367733189294527,0.1467263106445374,0.1566430733808041,0.1664134063864395,0.1785180646478979,0.1892610198789974,0.1989355924839795,0.2082828084204546,0.2171618903142828,0.2260652128212788,0.233933505660041,0.2413281978147844,0.2489865247423847,0.2547594560621643,0.2614512628711271,0.2674562427071179,0.2722698603926015,0.2768181818181818,0.2810146843056179,0.2844068297003395,0.2868849387280926,0.2909063221745641,0.2947517913627267,0.2986746607762701,0.2965622776756111,0.2930637422892392,0.28985730921948,0.2870561117913995,0.2844389832264941,0.2805994750015261,0.2764625163640952,0.276297518500972,0.2766377067854532,0.2768774738635758,0.2774641852493526,0.2780418811142105,0.2784343917766033,0.2791331516319883,0.28035960614565,0.2811377786963598,0.28328173374613,0.2875585761722993,0.2902679343128781,0.293774699690887,0.298424383893702,0.3034149923936421,0.3097768661818634,0.3145051965657479,0.3174291327532977,0.3180532641998586,0.3175355450236967,0.3188904636566106,0.3203723986856517,0.3157303370786516,0.0,2.14681889822398,49.79729675736162,142.14533705863326,197.31024109700596,fqhc5_100Compliance_implementation,47 -100000,95734,48437,461.76906846052606,4822,49.07347441870182,3839,39.48440470470261,1428,14.498506277811437,77.34647984393533,79.69809191224513,63.33814763576003,65.07502755033904,77.16010067522194,79.51821699300154,63.26709471883841,65.00928271073182,0.1863791687133869,179.87491924358778,0.0710529169216229,65.74483960721977,231.91718,163.15542734156006,242250.9453276788,170425.1226769591,542.41855,365.52222234559866,565987.3712578603,381208.9344826276,486.71405,239.01621536981463,504761.2655900725,246829.79757120556,2710.16814,1258.525556811099,2789002.110013162,1272743.2314643697,884.3155,404.2643979809506,905409.5305742996,404035.7931191316,1390.9635,597.3485786343954,1413793.406731151,589247.8271347497,0.38114,100000,0,1054169,11011.40660580358,0,0.0,0,0.0,47230,492.70896442225336,0,0.0,44012,456.13888482670734,1106383,0,39732,0,0,0,0,0,97,1.0027785321829237,0,0.0,1,0.0104456097102387,0,0.0,0.04822,0.1265151912683003,0.2961426793861468,0.01428,0.3619729514717582,0.6380270485282419,23.559206558275893,4.071969036205221,0.3196144829382651,0.2784579317530607,0.1969262828861682,0.2050013024225058,11.271481653617448,5.964186079005126,15.332429789928051,11309.651742854316,43.83914488038366,12.994512183281309,13.978985233831326,8.37551945929806,8.490128003972949,0.576712685595207,0.7979420018709074,0.6968215158924206,0.5568783068783069,0.1080050825921219,0.7660142348754448,0.9300225733634312,0.8401162790697675,0.7657142857142857,0.1604938271604938,0.4983425414364641,0.7044728434504792,0.6409966024915063,0.4939759036144578,0.0944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020559043953818,0.0044703950369491,0.0069311251154341,0.0091729140001219,0.0118473773059165,0.0139680729760547,0.0162487257900101,0.0186570591657395,0.0208318426674571,0.0229746193932816,0.0250207566703225,0.0268001026430587,0.0288284583354752,0.0310639612730456,0.0331500263095446,0.0351007751937984,0.0374273970617163,0.039195750508362,0.041373001517703,0.0432989261199704,0.058372746160512,0.0717791988947385,0.0857385666173554,0.0984268528644738,0.1105382466128947,0.1258920924921495,0.1369408170409581,0.1463419825879648,0.1559453774783527,0.1650052522134328,0.1764781878472072,0.1875020278381623,0.1970024671499527,0.2056670163475828,0.2134378228660614,0.2225616505069287,0.2311405953841007,0.2391719888459116,0.2466850421388142,0.2527365576623614,0.2590339851293378,0.2650482713480913,0.2700602131711875,0.27368685900508,0.2782531648642415,0.2821178526165545,0.2858714266071674,0.2893515280232987,0.2923136696237777,0.2956239528225966,0.293196042802342,0.2897761645493042,0.2868419941745114,0.2835943702634428,0.2817392594791125,0.2779452033838669,0.2740318582953128,0.2737520655748433,0.2741971207087486,0.2749608596641048,0.2746785121036227,0.2766866094623317,0.2777429598061335,0.2780959597085107,0.2796551311220213,0.2804601889689997,0.2816577129700691,0.2861789635004535,0.2918817129306737,0.2964288523558562,0.3011617919623887,0.305017675302063,0.311484593837535,0.3169477425697648,0.324074074074074,0.3277954518675621,0.327319587628866,0.3336014478182184,0.3357340720221606,0.3381211180124223,0.0,2.3543856073675924,48.4479145188285,142.80232602616434,198.08309497110207,fqhc5_100Compliance_implementation,48 -100000,95747,48497,462.5627957011708,4868,49.662130406174605,3904,40.2623580895485,1498,15.290296301711804,77.41222784566315,79.7673341686501,63.350809200748486,65.08949154227128,77.22005606568935,79.58036524689645,63.2778906504042,65.02117928638451,0.1921717799738047,186.9689217536461,0.0729185503442906,68.3122558867666,232.24344,163.34398438513168,242559.26556445632,170599.37501652446,547.22652,368.3905789240229,571017.7864580613,384238.9373518365,486.79783,238.4512496791297,505595.4651320668,246791.09935789407,2721.40952,1265.0873096315063,2805345.4311884446,1284438.5051004584,900.95569,407.3829805121485,925024.8780640648,409529.7279995819,1448.7771,612.9147442537027,1478851.2642693766,609499.2277845765,0.3807,100000,0,1055652,11025.421162020742,0,0.0,0,0.0,47722,497.8746070372962,0,0.0,44034,457.069150991676,1103171,0,39498,0,0,0,0,0,84,0.8773120828851034,0,0.0,1,0.0104441914629178,0,0.0,0.04868,0.1278697136853165,0.3077239112571898,0.01498,0.3520347688660608,0.6479652311339391,23.53619629394443,4.0356524016860735,0.3176229508196721,0.2784323770491803,0.2049180327868852,0.1990266393442623,11.513661780430862,6.333919162427555,15.814449021129397,11356.461859938709,44.31712193081157,13.229135691697644,13.990571650980383,8.720003384736932,8.377411203396614,0.579405737704918,0.797608095676173,0.6879032258064516,0.56375,0.1171171171171171,0.7644483362521891,0.9151785714285714,0.8825214899713467,0.7359550561797753,0.1437125748502994,0.502896451846488,0.7151799687010955,0.611672278338945,0.5144694533762058,0.1098360655737704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0047939998986469,0.0068680761270949,0.0092005849378503,0.0115495277503837,0.0138239934850104,0.0159712171555537,0.0179688376886421,0.020142870282368,0.0224155578300921,0.0246167090268098,0.0268747112867628,0.0289192051073804,0.0309980124198016,0.033143470364867,0.0352277190878832,0.0372675309613552,0.0393845387672099,0.0413686267986359,0.0430439085369029,0.0577131880063476,0.0717409957516271,0.0853693077512142,0.0979907426888281,0.1101274638078757,0.1258545877870674,0.1363071926640557,0.1464424899376024,0.1564931178934769,0.1655880743101838,0.1769360977240137,0.1887446262466566,0.198941879578929,0.2082133590251699,0.2166053449073564,0.2259674574917645,0.2346695872774617,0.2419661864588143,0.248597706369933,0.2545592095459703,0.259890930563757,0.2648273602677056,0.2708096725345447,0.2750673451062556,0.2793364560832949,0.2837205867874372,0.2863513716084545,0.2890309811981426,0.2931788566489053,0.2967546971488635,0.2937204410562842,0.2917037381770399,0.2890215532946551,0.2863199344667519,0.2841321339035541,0.2805911659274561,0.2767109952740575,0.2767653758542141,0.2762286894543485,0.2767835036961058,0.2776778595664991,0.2787237786162538,0.2788862820007059,0.2799132532253424,0.2813370473537604,0.281749000386947,0.2818250993433475,0.2854303813190908,0.2890939364506729,0.2932060112711334,0.2972354366753433,0.3022902363607777,0.3061933722229117,0.3100299401197605,0.3097891150197992,0.3181129877693652,0.3203230148048452,0.3263407876509004,0.3308310991957104,0.3282128137879355,0.0,1.9465479354776083,49.74451823712496,142.72466748909193,201.19289754333775,fqhc5_100Compliance_implementation,49 -100000,95713,48405,462.3091951981445,4802,48.833491793173344,3863,39.60799473425763,1463,14.77333277611192,77.32373385663094,79.69347543065275,63.321321634088775,65.07501265990189,77.13613012604908,79.5139066580108,63.25015791441,65.01001464520458,0.1876037305818556,179.56877264195725,0.071163719678772,64.99801469730926,232.56354,163.5502721569881,242980.09674756823,170875.71401689225,542.27015,365.7055340723815,565831.778337321,381358.8060894357,483.26705,236.99568269631635,500353.2853426389,244062.95524069425,2752.26096,1283.5440741578996,2825893.264237878,1291392.3230469213,885.13342,401.0619584086339,910094.9818728908,404341.8850194161,1427.43026,606.5420909278829,1444637.67722253,595028.1175051172,0.38075,100000,0,1057107,11044.549852162194,0,0.0,0,0.0,47308,493.5066291935265,0,0.0,43728,452.3418971299615,1104478,0,39609,0,0,0,0,0,90,0.9298632369688548,0,0.0,0,0.0,0,0.0,0.04802,0.1261195009848982,0.30466472303207,0.01463,0.3539135630352519,0.6460864369647481,22.924832837408356,4.169857740333109,0.3044266114418845,0.2762101993269479,0.2013978772974372,0.2179653119337302,11.50147245357154,6.205545403011523,15.53192281558757,11288.281525681936,44.12726655947094,12.933757291569837,13.450326999928384,8.71859653625335,9.024585731719366,0.5759772197773751,0.7966260543580131,0.7117346938775511,0.5796915167095116,0.1033254156769596,0.7561188811188811,0.922566371681416,0.8746268656716418,0.6820512820512821,0.1358024691358024,0.5001838911364472,0.7040650406504065,0.6468489892984542,0.5454545454545454,0.0955882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505572441742,0.0047968196983986,0.0070442549736094,0.0090848119017133,0.0113950838352596,0.0133952673450885,0.0157875413046138,0.0179955674935912,0.0199503031914349,0.0219263659173536,0.0241203556521828,0.0260244428468727,0.0279100869296846,0.0298121412598798,0.0320496278940143,0.034001860849788,0.0363945190724265,0.0383877159309021,0.04033188808135,0.0424711631638724,0.0569483455325724,0.0712147537208766,0.0833927822073017,0.0966852862898559,0.1092749802267334,0.1247924883423387,0.1354290443048718,0.1455342605697502,0.1549158878504672,0.1641216462564608,0.1762660033810339,0.1864060234968303,0.1970248904450703,0.2059302668838765,0.2145803768852513,0.2232803295389112,0.2316483075413637,0.2393785526522725,0.2466442953020134,0.2530914332124595,0.2583924404500612,0.2640209292004391,0.2704244987653738,0.2748862820205889,0.279879632101342,0.28340823739457,0.2873632214093666,0.2912464549605117,0.2945341116475324,0.2969404696023401,0.2944419048643416,0.2919874615046194,0.2883178293482697,0.2849239480564503,0.2818795932002078,0.2784659143040646,0.2742307085371627,0.2744966552722396,0.2740997653779455,0.2744920270918884,0.2748007540549116,0.2761208730596485,0.2767033931968807,0.2772571071540143,0.2790033366139369,0.2800822317060477,0.2806732740943267,0.2859344045784723,0.2902036516853932,0.294014714655001,0.2986130121361438,0.302158273381295,0.3053102926337033,0.308942469098123,0.3102674396858051,0.3167988635018349,0.3193772672309553,0.3248496993987976,0.3281926406926407,0.3315589353612167,0.0,2.961973674597693,48.71609323967368,142.00505347536676,199.22152779718655,fqhc5_100Compliance_implementation,50 -100000,95784,48527,463.2819677607951,4749,48.484089200701575,3783,38.952225841476654,1423,14.54313872880648,77.38153749659537,79.72327082661732,63.350937847410606,65.08289654296809,77.20552539487396,79.54937755790122,63.28518046384181,65.01989467418242,0.1760121017214118,173.89326871609967,0.0657573835687941,63.00186878566194,232.4289,163.4826912814065,242659.4211976948,170678.49670237876,544.38216,367.699674698358,567807.7549486344,383348.4660260148,482.31795,236.79479117096517,499783.1474985384,244343.98362931883,2655.73886,1240.5392472058131,2736264.8981040674,1258774.280888054,846.44082,384.6633713036695,869890.7750772572,387787.86781056254,1381.18098,583.5789619685929,1412402.5515743757,584453.3394487087,0.38231,100000,0,1056495,11029.973690804309,0,0.0,0,0.0,47436,494.68596007683954,0,0.0,43669,452.14232022049606,1104252,0,39612,0,0,0,0,0,89,0.9291739747765806,0,0.0,0,0.0,0,0.0,0.04749,0.1242185660851141,0.2996420299010318,0.01423,0.3652367462565762,0.6347632537434237,23.307214159497423,4.035960706227471,0.3087496695744118,0.2865450700502246,0.2001057361882104,0.204599524187153,11.08380998276134,5.812329881482399,15.19309964055808,11333.52143108991,43.37693547147737,13.221563557492544,13.35632077994184,8.496192819375057,8.302858314667928,0.5767909066878139,0.8108856088560885,0.6926369863013698,0.5574636723910171,0.0930232558139534,0.7597517730496454,0.9047619047619048,0.8839285714285714,0.7038834951456311,0.1103448275862069,0.4990583804143126,0.7465007776049767,0.6153846153846154,0.5027223230490018,0.0890302066772655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382466730134,0.0043688041032294,0.0065135343533135,0.0084904989691559,0.0109400736116477,0.0131722263505603,0.0157275655400171,0.0179630328948039,0.0199779272006376,0.0223772932376986,0.024727414330218,0.0270067747895709,0.0291492730675111,0.0310846152262103,0.0331098504383702,0.034850801785419,0.0367357920443726,0.0387681272092131,0.0407217726436948,0.0426765783774779,0.0573637909983616,0.0715988955823293,0.0856046628648104,0.0984838136866548,0.1105714014772356,0.1253355030961388,0.1356469216912154,0.1461721623402853,0.1563206862703256,0.1653289325631985,0.1765205974775085,0.1875175709867866,0.1975159733994002,0.2073637058887796,0.2152604435843019,0.2237078029883785,0.2318376902067889,0.2405915337850745,0.2480727371666969,0.2545866312851718,0.2602503785733276,0.2665334641989156,0.2723962212842431,0.2770276740400268,0.2806992006016716,0.2846616559851401,0.2875725610136695,0.2912480790479698,0.2946999754448996,0.2976527428548861,0.294733873242274,0.29087366384456,0.2876256060712529,0.2845673762954208,0.2828194485621109,0.2786512394675784,0.2749089992278722,0.2747168456441557,0.2751170205549149,0.2745390070921986,0.274353913755865,0.2752789126335638,0.2760387378944079,0.2767079984862314,0.2774486383182035,0.2802527973477,0.2824919441460795,0.287096673823081,0.2900697166244667,0.2926982383175737,0.2980457492795389,0.302006724101702,0.3074377068631737,0.3102198051212327,0.3139318308809834,0.3163432312368482,0.3219651442307692,0.3263407876509004,0.3244781783681214,0.3410794602698651,0.0,2.139349288044274,48.93254312680628,143.19242668848895,189.78994318073467,fqhc5_100Compliance_implementation,51 -100000,95862,48455,461.49673488973735,4798,48.9140639669525,3799,39.09786985458263,1442,14.729506999645324,77.37299817448195,79.67352125751013,63.35320242165369,65.05669590726863,77.19184769691336,79.49509816168779,63.28458843392147,64.9914175160048,0.1811504775685932,178.42309582233895,0.0686139877322205,65.27839126383128,232.53164,163.6317843542133,242569.15148859817,170695.14964658915,546.37278,368.61384281747314,569424.52692412,384003.9526070792,484.22065,237.2316521067372,501484.8636581753,244766.2684809871,2657.9132,1246.0887108651063,2738539.389956396,1266372.3824258868,854.45687,384.9178033847365,878747.9188833948,388940.6265097073,1397.89298,597.4061474914138,1429831.987648912,598360.746576485,0.38093,100000,0,1056962,11025.87052220901,0,0.0,0,0.0,47706,497.0999979136676,0,0.0,43886,454.25716133608734,1100397,0,39524,0,0,0,0,0,80,0.8241013123031025,0,0.0,0,0.0,0,0.0,0.04798,0.1259548998503662,0.3005418924551896,0.01442,0.3599599599599599,0.64004004004004,23.137492017752184,3.97715783729038,0.319557778362727,0.2827059752566465,0.1968939194524875,0.200842326928139,11.059108871820376,5.96728213308396,15.431331543687689,11316.157318990046,43.587543393446175,13.042472243070348,13.903251867012704,8.338787321129416,8.3030319622337,0.5996314819689392,0.7886405959031657,0.7174629324546952,0.6350267379679144,0.1114023591087811,0.7688219663418955,0.9113636363636364,0.8714285714285714,0.7663043478260869,0.1354838709677419,0.5280898876404494,0.7034700315457413,0.6550925925925926,0.5921985815602837,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045303901000334,0.0066644350445817,0.0087423593201064,0.0108472439664111,0.0129682410423452,0.0151458012699642,0.0174815540519854,0.0197304560177379,0.0217631530480692,0.0240663900414937,0.0263678988785948,0.0284774677560248,0.0306636061388971,0.0330096286674501,0.035318173368858,0.0371416451990026,0.0392108099146149,0.0412054248270992,0.0431679377399519,0.0582886696836353,0.0716950374619894,0.0847074105889501,0.0971762803347719,0.1088691842709408,0.1241444143991887,0.1347207358036726,0.1446401803085232,0.1547566950228949,0.1629108132146033,0.1744979444241159,0.1857981385594915,0.1958154448127819,0.2048414078131662,0.2131885301819942,0.2224277328607819,0.2312840935711656,0.2401228457004005,0.2478166186511807,0.2541610384853133,0.2614360195600153,0.2663914777178806,0.2716291835744792,0.275340973045467,0.2788448704726081,0.2839082157717212,0.2871742910396417,0.2906128466485346,0.294502567020575,0.2984498167725607,0.2958216221304751,0.2919638807570197,0.2895118278661994,0.2865038820099864,0.2838927766575732,0.2796188265477536,0.2762044579150091,0.2761277027248046,0.2758861147016804,0.2761405068919519,0.2761725449258072,0.27785314066647,0.278452279306108,0.2799316482102039,0.280255536220829,0.2814035269173088,0.283253046188722,0.2884188821893842,0.2925324222563101,0.2957126576806696,0.2998607805272376,0.3063847647027963,0.3123559100255467,0.3174615152429822,0.3176009700587632,0.3224190165462596,0.3238627776938189,0.3270820729985884,0.330315500685871,0.3262759924385633,0.0,2.073513707131644,49.01735667391374,143.89221386488228,191.7517717981932,fqhc5_100Compliance_implementation,52 -100000,95788,48250,460.3708188917192,4774,48.55514260658956,3784,38.88796091368439,1436,14.542531423560362,77.39816222968327,79.72801514883706,63.35848721039546,65.07959521622767,77.20842437979418,79.54483171662547,63.2850828738665,65.01160884313227,0.1897378498890845,183.1834322115924,0.0734043365289593,67.98637309540823,232.01992,163.26471222741105,242222.3242994947,170443.80530693935,542.31686,365.1837073052641,565526.6734872843,380606.3685613337,481.56002,236.15401142657143,499504.4160020044,243898.3220172408,2698.39416,1273.128768642,2774582.2858813214,1286740.9978156772,903.81457,416.4231278561703,931602.1317910386,422831.98519587785,1408.5976,612.1233118124858,1429024.2619117217,603336.3979345202,0.37981,100000,0,1054636,11010.105649977031,0,0.0,0,0.0,47243,492.5564788908841,0,0.0,43532,451.1734246460935,1107309,0,39756,0,0,0,0,0,95,0.9917734998120852,0,0.0,0,0.0,0,0.0,0.04774,0.1256944261604486,0.300795978215333,0.01436,0.3566250503423278,0.6433749496576722,23.331052110772443,4.087042772739412,0.2973044397463002,0.2795983086680761,0.2071881606765327,0.2159090909090909,11.440659009511108,6.203900971003368,15.365925613096236,11258.60513915727,43.24799496334072,12.986830362765163,12.800876083237306,8.566979514649894,8.89330900268836,0.5872093023255814,0.8223062381852552,0.7111111111111111,0.5688775510204082,0.1297429620563035,0.7592116538131962,0.9247787610619468,0.8875379939209727,0.745,0.1451612903225806,0.5105082155139473,0.7458745874587459,0.6381909547738693,0.5085616438356164,0.1251980982567353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024103218488586,0.0044389492459867,0.0067159030962139,0.0089467056625233,0.0110710110303461,0.0132615466037006,0.0153665868446527,0.0175590743990531,0.0196160565596297,0.0218948229997953,0.0237580550973783,0.0260643810735651,0.0280150043677097,0.03030084706512,0.0323521831022217,0.0343406593406593,0.0364052057685543,0.0385022190883072,0.0404373174812674,0.0424364234686439,0.0565033651588668,0.0701556224899598,0.0833053761637171,0.0957971182040799,0.1082822021211546,0.1231896314776835,0.1343416558834136,0.1439456824808973,0.1541164658634538,0.1635371202453593,0.1753460067855027,0.1864359113034072,0.1968401264818698,0.2064659222516006,0.2145550071994636,0.2245742550154363,0.2329701943555491,0.2401178547732307,0.2477112096838236,0.2541943906824402,0.2597872586426176,0.2657572357039323,0.2705152784681294,0.2745821601869047,0.2787911887857273,0.2819038944414356,0.2852911772056986,0.2896652480467509,0.2923090852649007,0.2953479177648919,0.292310589248006,0.2884166277440448,0.2851979466985444,0.282442638072178,0.2796661586042588,0.2757390495647269,0.2729049442842057,0.2729707659643965,0.2734542484772178,0.2749995558792702,0.2757226940843391,0.2759000590202636,0.276385677685434,0.278038937425163,0.279635619826848,0.2800103305785124,0.280652418447694,0.2869424873521835,0.2903927868172867,0.2932604024223481,0.297217102009621,0.3007044090790503,0.3059586292065452,0.3099099099099099,0.3118968077208611,0.3148279113625648,0.3178189486368429,0.3186264723497704,0.3190735694822888,0.3240496800903274,0.0,2.35684815793207,50.34409379250824,134.90715892311871,192.28437901259952,fqhc5_100Compliance_implementation,53 -100000,95886,48495,462.8100035458774,4679,47.54604426089315,3695,38.04517864964646,1433,14.621529733224872,77.3584022892406,79.64157337946484,63.35300198276878,65.04201293096718,77.17784176937208,79.4620861146826,63.28525085751163,64.97648536902558,0.1805605198685214,179.48726478223875,0.0677511252571534,65.52756194159315,232.55166,163.59210623180252,242529.3160628246,170611.0446069317,541.73175,365.73017558086735,564478.5161546002,380925.5736821512,480.77941,236.0621794188663,498196.1913105146,243735.98302035843,2640.95519,1227.3102548983488,2722872.2754103835,1248638.3811185951,877.47975,397.00316569857085,901469.0674342448,400454.25865183386,1400.89724,596.9058130659538,1431276.5367206892,597973.9294956914,0.37951,100000,0,1057053,11024.059821037485,0,0.0,0,0.0,47189,491.61504286340033,0,0.0,43430,449.6902571804018,1102459,0,39628,0,0,0,0,0,90,0.9386146048432514,0,0.0,0,0.0,0,0.0,0.04679,0.1232905588785539,0.3062620217995298,0.01433,0.3476474214094925,0.6523525785905075,23.53872357623918,4.134950199876741,0.3004059539918809,0.2784844384303112,0.1964817320703653,0.2246278755074424,11.317191750181808,6.133541413519447,15.344207659075211,11253.259871184538,42.32330461649063,12.58975771213414,12.675086577457344,8.025253606837197,9.033206720061951,0.5756427604871448,0.8017492711370262,0.7036036036036036,0.5785123966942148,0.1216867469879518,0.7553290083410565,0.9357798165137616,0.8642384105960265,0.7289156626506024,0.1428571428571428,0.5015290519877675,0.7032040472175379,0.6435643564356436,0.5339285714285714,0.116030534351145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894136824307,0.004549553657375,0.0066841800975748,0.008924854552285,0.0110591583655214,0.0131082140058417,0.0150067239903826,0.0170227956550563,0.0192356778942854,0.0212535397008761,0.0233708003193907,0.02553797890118,0.0278225682212659,0.0296873874893275,0.0318634775708735,0.033803456749334,0.0360297920761353,0.0382753795926828,0.0402945238911217,0.0422397469776732,0.0568673442793849,0.0704360726300173,0.0839520393737892,0.0963145737085258,0.1087693798449612,0.1245312912595722,0.1352958006167148,0.1446996278575226,0.1544381350866706,0.1637439437465163,0.1755458891425126,0.1864089640701724,0.1964607926259266,0.2053818324899172,0.2147607479306592,0.2235855110304693,0.2320120421475163,0.2393696539166207,0.2468558986629772,0.2525710620948716,0.2591748690130582,0.2646274729900378,0.269569025721151,0.2731053659822852,0.2767640198269997,0.2807504098411172,0.2852010415101897,0.2886292180598516,0.2920372339046335,0.2955947427514695,0.2925360669208077,0.2896025979744606,0.2866777427348502,0.2838202798919715,0.2807163434409432,0.2780157904400514,0.2747761996646949,0.2739568817116157,0.2748064263055565,0.2750912165168639,0.2765929633226264,0.2773850546421187,0.2781557856069461,0.2783463866144535,0.2795796730258276,0.2821176287939555,0.2838647670737223,0.2886363636363636,0.2921239060980691,0.2959075362660691,0.2979184539666772,0.2986052852348993,0.3037351125522229,0.3101034692635423,0.3139928531126575,0.3166270783847981,0.3220547523838818,0.3235530546623794,0.3246187363834422,0.3315689981096408,0.0,1.9015223420482656,46.92439004586174,140.75731548601746,188.257331621867,fqhc5_100Compliance_implementation,54 -100000,95738,48290,461.1335102049343,4882,49.80258622490547,3845,39.639432618187136,1433,14.654578119451,77.38965647392791,79.75667388328482,63.34469261111818,65.09402464779984,77.20986407443607,79.57988993196396,63.276947343277925,65.02971755352966,0.1797923994918449,176.7839513208571,0.0677452678402588,64.30709427017689,233.03566,163.911688756863,243409.7850383338,171208.59925720506,544.24713,366.4773069980647,567958.7624558692,382275.1018384181,484.37821,237.4776069127756,502740.4792245503,245580.334893864,2693.01742,1254.2818833734573,2780476.0909983497,1277691.8918020609,916.88874,410.5915419416398,946015.5110823289,417179.6244867286,1392.40034,584.6190419580861,1425932.8584261213,585340.9193952936,0.37957,100000,0,1059253,11064.08113810608,0,0.0,0,0.0,47401,494.5685098915791,0,0.0,43844,454.7619545008252,1103224,0,39571,0,0,0,0,0,91,0.9505107689736572,0,0.0,0,0.0,0,0.0,0.04882,0.128619227020049,0.2935272429332241,0.01433,0.3664571877454831,0.6335428122545169,23.418845399877544,4.0722527968180025,0.3105331599479844,0.2814044213263979,0.2098829648894668,0.1981794538361508,11.592361474613943,6.322062752588581,15.135690181364208,11268.856291967755,44.092142432744005,13.351328217869126,13.578623763189968,8.980409915369371,8.181780536315538,0.5927178153446033,0.7920517560073937,0.7102177554438861,0.5885997521685254,0.1299212598425196,0.7669565217391304,0.8907922912205567,0.8821752265861027,0.7116279069767442,0.1532846715328467,0.5183673469387755,0.7170731707317073,0.6442641946697567,0.543918918918919,0.1248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021574426707722,0.0042679156148941,0.0064847420818153,0.0086860231220919,0.0110266817215457,0.0134719563357908,0.0157930689939947,0.017721338083523,0.0197379180636192,0.0217929820251402,0.0238322211630123,0.0260764223969776,0.0283014988588934,0.0303457791873468,0.0325112685789728,0.0346531072044977,0.0367804665900406,0.0385728661984251,0.0405654004053422,0.0424685080800608,0.0568287411645559,0.0703452895554881,0.0839628184145369,0.0960476345771484,0.1082794485290239,0.1241089747657423,0.1358023381638412,0.1457912099606257,0.1554611080261415,0.1645845173881805,0.1750608298701578,0.1861627328386301,0.1978864281287713,0.2069802532309912,0.2157363198310193,0.224769981952856,0.2331192578717331,0.2405932250997135,0.2471177717569972,0.2535804163806909,0.2592305736018311,0.2648182551088366,0.2701454274811866,0.2741812005071892,0.2783120111562481,0.2822781072368907,0.2853608556577369,0.2876106756773923,0.2913355301415002,0.294326801517067,0.2908294831846997,0.2872417816210281,0.2852227886141186,0.2830330005905824,0.2804874441716702,0.2760791366906475,0.2725211750999716,0.2726398330643452,0.2727026477957608,0.2737920418959325,0.2743098685552197,0.2764612645050193,0.2770812177481193,0.2778072854423936,0.2794806553634699,0.2819593479158068,0.2828780625176006,0.2878580323785803,0.2937982877427438,0.2989548412541905,0.3018979027947638,0.3056629761084918,0.3095773943485871,0.3144607110845533,0.3131257463029301,0.3185245331168078,0.3224648519294047,0.3253654681943895,0.3276790522347872,0.3296951449002634,0.0,2.0184757582469,50.11763218391759,143.94056021298582,194.25198798963504,fqhc5_100Compliance_implementation,55 -100000,95754,48321,460.7118240491259,4782,48.81258224199511,3838,39.42394051423439,1453,14.767007122417862,77.34687979821054,79.70583736508799,63.33382307926016,65.08104527130654,77.16809252228917,79.53222184161956,63.26676343960949,65.01876876527524,0.1787872759213655,173.61552346842757,0.0670596396506653,62.27650603129575,232.91092,163.89388221975378,243238.84119723455,171161.39505373538,545.31656,367.3416203862032,568841.1450174405,382974.29912714177,487.72143,238.75384924101985,504990.7575662636,246078.1126648088,2685.82704,1250.5507500819538,2756843.912525848,1257923.4602021363,910.50247,412.1052584261763,929321.1876266263,408823.6506320099,1407.70718,590.409238547536,1430283.8523717024,582016.969784403,0.37973,100000,0,1058686,11056.310963510665,0,0.0,0,0.0,47513,495.5302128370616,0,0.0,44041,455.5841009252877,1103293,0,39579,0,0,0,0,0,103,1.0756730789314284,0,0.0,0,0.0,0,0.0,0.04782,0.1259315829668448,0.3038477624424927,0.01453,0.350210970464135,0.6497890295358649,23.494013150077823,4.040779274714782,0.3035435122459614,0.2803543512245961,0.2149557060969255,0.2011464304325169,11.458412743964493,6.296866542530007,15.421579675668818,11301.127606710434,43.98002987929696,13.309175515689402,13.20949127628152,9.093727087653708,8.367635999672341,0.5880667014069828,0.8057620817843866,0.7090128755364807,0.5612121212121212,0.1308290155440414,0.7653149266609146,0.9078947368421052,0.8727272727272727,0.7064220183486238,0.2,0.511384845091452,0.7306451612903225,0.644311377245509,0.5090609555189456,0.1134521880064829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0043301018131667,0.0067512690355329,0.0091872719696738,0.0115264100268576,0.0137471741919716,0.0159955143235803,0.0180583911800734,0.0204759665514914,0.022709587582422,0.0246778145729313,0.0268499789512593,0.0288969786717673,0.0310169351848036,0.0329115752972258,0.0349917818414877,0.0369787405896302,0.0388701010394406,0.041029106029106,0.0431110787141652,0.0578669394401185,0.0713022920088291,0.0847112854012226,0.097517395051607,0.1088299150523808,0.1243303217625614,0.1350609432962374,0.14462954890975,0.1543573333333333,0.1632071632071632,0.1756139011089479,0.1867827890994748,0.1968694669838476,0.205695131405112,0.2141672433299283,0.2237316636059915,0.2326789516515612,0.2397023950009553,0.2475412625489195,0.2543880740562635,0.2606060606060606,0.2663688561973033,0.271378894329714,0.2760995592180912,0.2798034934497816,0.2827778665650394,0.2867497281963485,0.2906114258134986,0.2934463729532031,0.2963357814104083,0.2932660023100271,0.2901223548152318,0.2871529094509754,0.283828145247214,0.2814285291418761,0.2777099609375,0.2751230128690386,0.2746695458709593,0.2739462623581261,0.2743059258469304,0.2742687658558424,0.2747401983939537,0.2763424043373996,0.2776540294916915,0.2790023479802578,0.2793123179359134,0.2810368349249659,0.2860418367987939,0.2896934959633733,0.2946964906734113,0.2973819138799401,0.2998734043675493,0.3014728925101849,0.3053124056746151,0.3111687349509168,0.3144028103044496,0.3174097664543524,0.3205518360722256,0.3300916921367046,0.3341130604288499,0.0,2.593299287842299,50.095610442148015,138.5416207647551,197.60612284446168,fqhc5_100Compliance_implementation,56 -100000,95763,48361,462.7152449275816,4819,49.17348036297943,3841,39.61864185541389,1415,14.431461002683708,77.36211040614715,79.7236549137711,63.32787542470121,65.07557459619218,77.18387320138093,79.54774601882546,63.2603914821748,65.01084401855586,0.1782372047662193,175.90889494563555,0.0674839425264082,64.73057763632539,233.10386,163.90036054133586,243417.4576819857,171152.073913031,544.46021,367.699659893742,568070.9146538851,383489.6566458256,487.47934,239.2782958639492,506095.1306872174,247578.51755742377,2699.94296,1260.810915666948,2786784.3634806764,1284188.570941112,834.07518,381.1344161017414,860177.887075384,387288.0263357107,1369.35138,583.6945973820618,1398619.3623842194,584251.2261687935,0.37882,100000,0,1059563,11064.429894635714,0,0.0,0,0.0,47421,494.7004584233994,0,0.0,43976,456.2304856781847,1098729,0,39417,0,0,0,0,0,105,1.0964568779173585,0,0.0,0,0.0,0,0.0,0.04819,0.127210812523098,0.2936293836895621,0.01415,0.3652468152866242,0.6347531847133758,23.213190635734637,3.9460968363300455,0.3160635251236657,0.2822181723509502,0.2061963030460817,0.1955219994793022,11.432951467151897,6.3826397589736,15.090749315014875,11218.8270973219,43.95327092442261,13.242835569621434,13.758990173840614,8.774748438494607,8.176696742465964,0.5946368133298621,0.8182656826568265,0.7125205930807249,0.5795454545454546,0.0972037283621837,0.7696335078534031,0.9265033407572384,0.8727272727272727,0.7864077669902912,0.0993788819875776,0.5202226345083488,0.7417322834645669,0.6527149321266968,0.5068259385665529,0.0966101694915254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020668064800461,0.0041373435820471,0.0066084661455689,0.0087180060355426,0.01066069884543,0.0129954780624923,0.01508167968511,0.0171934983255738,0.0195396775084099,0.0213709347095928,0.0234432685207974,0.0253918688497647,0.0274897119341563,0.0292559769167353,0.0314690006089442,0.0336114471221943,0.035559329405308,0.0376514774236387,0.0395205970707774,0.041496541954837,0.056919479760339,0.0707635009310986,0.0843575653341163,0.0967300876113547,0.1088761141290016,0.1235722142313224,0.1335066037235453,0.1438000340657469,0.1528788315864824,0.1613840578156162,0.1733596097308823,0.1848637652303763,0.1954119259468749,0.2049282526905241,0.2132835968705641,0.2221385291934823,0.2311135919620429,0.2384905235925988,0.24620881302104,0.2517632241813602,0.2566998380004628,0.2621584012535519,0.2676596197754616,0.2724276382812968,0.2761701301223538,0.2808111171339871,0.2844238708870261,0.2877525846611646,0.2912957979714345,0.2959257648252864,0.2939150556295489,0.2911862123940023,0.2877825255819183,0.2843281430219146,0.2821504229441654,0.2785047870634763,0.2754055418796945,0.2746591689279759,0.2751554694668162,0.2764285334137558,0.276627026222247,0.2768259693417493,0.2773091785432334,0.2792125739874526,0.2793623561369647,0.2795515602397189,0.280659712433042,0.2854789581649779,0.2892267202271704,0.2937587986860628,0.2996685775707631,0.3038858214397333,0.3074685972402697,0.3129981378026071,0.3186206896551724,0.3222986362046858,0.3261879778144206,0.3304484657749803,0.3248933901918976,0.3354863221884498,0.0,1.952505034909236,49.95543414519265,141.80049435528667,196.32272236442668,fqhc5_100Compliance_implementation,57 -100000,95768,48546,463.7561607217442,4756,48.429538050288194,3748,38.63503466711219,1468,15.036337816389608,77.32840490063373,79.68964375574315,63.31625382636724,65.0652056763863,77.13778458890083,79.49866355267655,63.24496355287273,64.995399019604,0.1906203117328999,190.98020306660143,0.0712902734945046,69.8066567823048,232.74724,163.79663883307114,243032.36989391028,171034.83296411237,546.15504,368.8934896223592,569817.8828001003,384723.5143183103,488.78178,240.29195188831685,506951.0379249853,248267.61270995848,2621.82186,1242.1504754247344,2704994.5806532456,1264404.3166443245,858.35087,398.94388177243343,883992.2625511654,404307.8694083117,1421.2288,604.9064498298604,1456165.0864589424,609091.510002214,0.38039,100000,0,1057942,11046.92590426865,0,0.0,0,0.0,47633,496.8674296215855,0,0.0,44097,457.02113440815305,1096461,0,39359,0,0,0,0,0,104,1.0755158299223122,0,0.0,1,0.0104419012613816,0,0.0,0.04756,0.1250295749099608,0.3086627417998318,0.01468,0.3648103309120258,0.6351896690879741,23.02914161315865,3.980379642941259,0.3121664887940235,0.2798826040554962,0.2065101387406616,0.2014407684098185,11.54553530533168,6.455575674575253,15.703104728913834,11242.034545631936,43.382031865904025,13.022562909794928,13.459520680267204,8.608312671551662,8.291635604290235,0.5933831376734259,0.7998093422306959,0.7273504273504273,0.5775193798449613,0.1152317880794702,0.7845117845117845,0.906054279749478,0.9111747851002864,0.7875647668393783,0.1676646706586826,0.5046875,0.7105263157894737,0.6492082825822169,0.5077452667814114,0.1003401360544217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0043915698087182,0.0065690614466149,0.0085164332608386,0.0106813696567719,0.0129053943937418,0.0150615924294338,0.0173969861559194,0.019536281665951,0.0215468708416074,0.0235764440571985,0.0258229459720311,0.0277563529036703,0.0300967173771977,0.0320723175035601,0.0339342195026151,0.0362085563157949,0.0380702500337042,0.0401521291851112,0.0422012997833694,0.0565714762859051,0.0710871725147727,0.0844560943643512,0.0970579888373853,0.1091782654964228,0.1255165562213978,0.1360527627267811,0.1460131317108469,0.1552180785168097,0.1645276464344301,0.175994830649938,0.1870354944448651,0.1969670597450067,0.2057585267969424,0.2139005062733876,0.2228694833600974,0.2307606463708597,0.2390369636666516,0.2463157655714253,0.2521170174976223,0.258152236802518,0.2639051316835851,0.2692548973190507,0.2737063020927025,0.2767984060066335,0.2799595815208685,0.2840745335388394,0.2875383499038865,0.291046419733893,0.294014456051493,0.291565129585998,0.2886254881469666,0.2860019431966993,0.2827382240496285,0.2805658220896231,0.2772387831303177,0.2731902510003637,0.2739445055215529,0.2742893219124321,0.2752651751493002,0.276298094882331,0.2759448818897638,0.2755153029356652,0.2761154154421587,0.276921972922547,0.2788877659436627,0.2802414213255504,0.2862446572863694,0.291095652173913,0.298504525777253,0.3028909033509223,0.3034096265647096,0.3073775573465592,0.3087253357341136,0.3115088565334322,0.3167832167832168,0.3206095353047676,0.3239749545546354,0.3296763576522216,0.3388910430399379,0.0,1.9618614843287487,51.91240405142604,139.63210419944878,182.4313901370304,fqhc5_100Compliance_implementation,58 -100000,95735,48506,463.1848331331279,4897,49.87726536794276,3913,40.33007781897948,1491,15.20864887449731,77.31464774318667,79.68046940181603,63.30648041847581,65.05588465754383,77.12012476584697,79.48907270853518,63.23348542555051,64.9863899852897,0.1945229773397017,191.39669328085063,0.0729949929252953,69.4946722541232,231.1331,162.5950474483743,241430.0934872304,169838.66657792268,543.19716,366.4454050651834,566856.2490207343,382230.1927875733,493.62246,242.0247071332958,512364.0674779339,250246.72471129804,2777.69636,1298.2901146966212,2863982.723142007,1318668.840754814,919.39462,419.9604209576356,947504.9668355356,425820.9442290028,1457.65896,619.7200036911622,1488283.3655402935,618027.1274081038,0.38084,100000,0,1050605,10974.095158510472,0,0.0,0,0.0,47189,492.3486708100486,0,0.0,44525,461.84780905624905,1106253,0,39715,0,0,0,0,0,114,1.1907870684702564,0,0.0,0,0.0,0,0.0,0.04897,0.1285841823337884,0.3044721257913008,0.01491,0.3537588097102584,0.6462411902897416,23.55371369974148,4.052707080413872,0.3189368770764119,0.273191924354715,0.1960132890365448,0.2118579095323281,11.22912062170491,5.960296552863444,15.909482668156455,11329.278324565494,44.825028377781344,12.99763439670694,14.225485402881665,8.507283664345431,9.0946249138473,0.5813953488372093,0.7970065481758652,0.7099358974358975,0.5749674054758801,0.1158021712907117,0.7549441100601891,0.9251101321585904,0.8664772727272727,0.7604790419161677,0.1368421052631579,0.508,0.7024390243902439,0.6484375,0.5233333333333333,0.109546165884194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002096945752925,0.0044407944763816,0.006770336385229,0.0090133116553195,0.0112416704817132,0.0136109865927706,0.0157619285663276,0.0176533050172551,0.01968801750046,0.0220404569837435,0.0241149149518624,0.0262960643180581,0.0285958217184237,0.0307055053528557,0.0327518579686209,0.0349832526981764,0.0368122935456814,0.038693811480513,0.0407494827030455,0.0428078802337816,0.0572782893775188,0.0709844884972054,0.0848213349000188,0.0975738008350247,0.1098164102455948,0.1256717302077603,0.1364422699340925,0.1468436911086741,0.1558458216644932,0.1646350623430693,0.1769558419151345,0.1884459949944202,0.1989019488229719,0.2076617100779101,0.2162615070834022,0.2249472632397024,0.2329407554049368,0.2405381631180079,0.2485044922097122,0.2545615304235994,0.2603987943426849,0.26540989560755,0.2704333191106054,0.2748914112932255,0.2786974912485414,0.2831866045226998,0.287240430322742,0.291270406346946,0.2938560198593297,0.2976215561291682,0.295,0.2918892199535899,0.2884447939780356,0.284759242716768,0.282782448804069,0.2791326670945264,0.2748756022431087,0.2749750126984647,0.2755663899353915,0.275370571382814,0.2763076808157015,0.2768634090640627,0.2773137250817589,0.2774517649150885,0.2790191907845996,0.2791227570492737,0.2816106621295902,0.2863122383957018,0.2907248093065375,0.2948115999210889,0.2977479722687933,0.3011252575413387,0.3058002013085052,0.3082369062119366,0.3125410374261326,0.3177581120943953,0.3202504581551619,0.3207199836367355,0.327162199502625,0.3286821705426356,0.0,2.152400204352314,50.640182946377976,142.46764900642444,203.83518691682397,fqhc5_100Compliance_implementation,59 -100000,95821,48776,464.9920163638451,4839,49.28982164661191,3839,39.54248024963213,1501,15.320232516880434,77.3504688262772,79.68228696741046,63.33176974345843,65.05980654404304,77.15892872098817,79.49399832605336,63.259826041585775,64.99160316868962,0.1915401052890217,188.28864135710432,0.0719437018726552,68.20337535341991,232.60996,163.66203554959787,242754.67799334176,170799.75741183863,546.62759,368.5115495252598,569938.7608144352,384054.6221864308,490.19926,240.29148162634652,508533.755648553,248381.69611167168,2759.50581,1292.4267067738265,2841366.8298180983,1310327.5816092787,926.62699,420.2208048627443,954295.7598021312,425825.6635089056,1469.08258,625.4097956740475,1500118.2621763495,623167.6396705582,0.38099,100000,0,1057318,11034.303545151895,0,0.0,0,0.0,47493,495.06893061020025,0,0.0,44143,457.5928032477223,1100032,0,39559,0,0,0,0,0,120,1.2523350831237412,0,0.0,0,0.0,0,0.0,0.04839,0.1270112076432452,0.3101880553833436,0.01501,0.3639415481832543,0.6360584518167457,22.955717627514066,4.147207110095326,0.3019015368585569,0.2636103151862464,0.2162021359729096,0.218286011982287,11.465492819689826,6.190414420549158,16.09917894130726,11332.78507830442,44.08918838838527,12.367590056390476,13.19983604163136,9.310229014215258,9.211533276148176,0.579578015108101,0.8142292490118577,0.6945642795513374,0.5879518072289157,0.1288782816229117,0.7462154942119323,0.939903846153846,0.843558282208589,0.7336683417085427,0.1428571428571428,0.5106774668630338,0.7265100671140939,0.6362545018007203,0.5419968304278923,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044614339454285,0.0069318989140363,0.0090730825112016,0.0115141282014769,0.0138314558676743,0.016011422161032,0.0180642921329956,0.0200809782830968,0.0222549802428188,0.0242404355895532,0.0264825178415567,0.0287430199195812,0.0308341915550978,0.0329716796270704,0.0351301364909126,0.0369879605378937,0.0392913451165878,0.0411028662883748,0.0431618726381211,0.0576164743683365,0.0720491828989053,0.0856570991438481,0.098274883906621,0.1101852046943806,0.1257054086614672,0.1360681984456013,0.1458796498207618,0.1551280545739876,0.1637324132314649,0.1760515640300001,0.1870040862214342,0.1975929526519883,0.2072696275572652,0.2155607615402382,0.2242664569510749,0.232602510460251,0.2397790428188916,0.2474714796526477,0.2542537843222571,0.2608107170125633,0.2672262620122051,0.2721692646119639,0.2759628281279939,0.2806374037457186,0.2845309996302231,0.2881839690547426,0.2908313285217856,0.2936095823891227,0.2960705143430185,0.293478846672056,0.2910763214782381,0.2885907931632121,0.2860961021699558,0.2838562159433416,0.2798659874248474,0.275527152506446,0.2751529265132755,0.2758603049009242,0.2764588457562471,0.2757345387302239,0.276195540849287,0.2772341269013291,0.2784522510079971,0.2784497832283408,0.2800539713017981,0.2805830738748938,0.2848225710808027,0.2893987781171896,0.2949529916211006,0.2979432017642558,0.2989264205289342,0.3016079965232507,0.3056075466047765,0.3090689910979228,0.3099279237386654,0.3109572546658639,0.3149028933808958,0.3144081414033208,0.3144677661169415,0.0,1.9545190456677,49.10125861873139,143.77925062656325,199.27971801261324,fqhc5_100Compliance_implementation,60 -100000,95712,48468,463.0453861584754,4766,48.49966566365764,3800,39.05466399197593,1416,14.345118689401538,77.30949638025908,79.66926205291504,63.31695901961641,65.05927526480058,77.12359861240253,79.49063107768823,63.24556624192068,64.99398160600173,0.1858977678565452,178.6309752268096,0.0713927776957348,65.29365879885063,231.7458,163.10995251115733,242128.259779338,170417.45289112892,542.64897,366.6989496513857,566298.6459378134,382465.9626918441,487.43374,239.34304995314687,505915.580073554,247476.0955154708,2671.43635,1247.4625210255765,2742437.270143765,1254835.750708195,847.54193,385.2631805363631,869429.9565362756,386512.0349479125,1381.75488,595.6496108410827,1400808.4461718488,584298.4265654762,0.38003,100000,0,1053390,11005.829989969909,0,0.0,0,0.0,47322,493.74164159144095,0,0.0,43949,455.7422266800401,1102719,0,39553,0,0,0,0,0,95,0.9925610163824808,0,0.0,1,0.0104480106987629,0,0.0,0.04766,0.1254111517511775,0.2971044901384809,0.01416,0.3629242819843342,0.6370757180156658,23.17800868174213,4.112148729687011,0.3171052631578947,0.2810526315789474,0.1928947368421052,0.2089473684210526,11.181716558650963,5.994123985074646,15.196936804222805,11321.60458752084,43.65981577272797,13.209806492630014,13.826786045350095,8.062383568686014,8.560839666061844,0.5747368421052632,0.797752808988764,0.6946058091286307,0.5566166439290586,0.1095717884130982,0.7511071744906997,0.9220489977728286,0.844632768361582,0.7025316455696202,0.1428571428571428,0.5001871958068139,0.7075928917609047,0.6321974148061105,0.5165217391304348,0.1006389776357827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584336800315,0.0046326332008758,0.0067567567567567,0.0091716096530429,0.0115183246073298,0.0137917697232485,0.0158283646741069,0.0179958557473434,0.0201647520542905,0.022044600914943,0.0242212404801197,0.0264800706409019,0.0285347043701799,0.0305963770429337,0.032951052989831,0.0348297773415302,0.0365870066964054,0.0383845507628164,0.0404111795948488,0.0424518965319665,0.0574149688279952,0.0713343661028303,0.0849941260384325,0.0977559046837865,0.1103377729971421,0.1250978318350079,0.13621748957438,0.1470362800204394,0.1565644696079478,0.1656068031442022,0.1770333897191126,0.1884277655669723,0.1981933939163084,0.207008634935922,0.2152907757690529,0.224275342237987,0.2327368585662265,0.2406114127373899,0.2487220846491128,0.2553667006681872,0.2604724919843043,0.2659655362010271,0.2710698599486202,0.2747190809118927,0.2787381105671699,0.2824897063537069,0.2852925724864283,0.2884473503447223,0.2916375314013415,0.2945766113062076,0.2919214503138216,0.2897194975994277,0.2869419438457095,0.2843551949645584,0.2806486101211689,0.2775618266405484,0.2740975300823305,0.2739919288690574,0.2755340767431138,0.2769398282848116,0.2778578784757981,0.2783733533763202,0.2800142426273458,0.2804559168622192,0.2823670916526341,0.2838318995763703,0.2834073820915926,0.2873153017781117,0.2925117821609356,0.2959059267707555,0.2980105562322371,0.3015046296296296,0.3098714588793211,0.3136692818346409,0.3202236719478099,0.3259111684050158,0.3266049476400061,0.3298801543774121,0.3266975729479138,0.3286313381624094,0.0,2.513336017686301,48.65724107503524,141.91988686083516,195.0674351924208,fqhc5_100Compliance_implementation,61 -100000,95734,48471,462.030208703282,4887,49.71065661102639,3894,40.079804458186224,1453,14.790983349698124,77.40440741590693,79.76175818266842,63.3594678928421,65.09934327285447,77.2198159833534,79.58159555180615,63.288637621459095,65.03269554343774,0.1845914325535318,180.1626308622701,0.0708302713830022,66.64772941672936,232.33672,163.28883015484794,242689.86984770303,170565.13898390115,547.71066,369.9953123159816,571557.9209058433,385923.4047631789,488.29472,239.66395816675643,506399.69080995256,247460.82708817648,2752.21467,1288.0759992986525,2836212.9859819915,1306830.8744005808,901.93086,408.2918138385977,927696.9937535252,412067.9485046652,1416.4747,601.3298572627882,1444256.7530866778,597258.5296581687,0.38182,100000,0,1056076,11031.357720350135,0,0.0,0,0.0,47733,498.0048885453445,0,0.0,44232,458.42647335324966,1103155,0,39510,0,0,0,0,0,95,0.981887312762446,0,0.0,0,0.0,0,0.0,0.04887,0.1279922476559635,0.2973194188663802,0.01453,0.3607965638422491,0.6392034361577509,23.128130491894105,4.118656429249734,0.293271700051361,0.2817154596815613,0.2208525937339496,0.2041602465331279,11.58174575941822,6.3143576947675415,15.319856466121644,11384.646926415942,44.433494610951975,13.429008901054932,12.889349671640584,9.646402366155968,8.468733672100484,0.5963020030816641,0.8222424794895169,0.7171628721541156,0.5965116279069768,0.110691823899371,0.7632687447346251,0.9397849462365592,0.8416149068322981,0.7319148936170212,0.1575757575757575,0.523088289619505,0.7357594936708861,0.6682926829268293,0.5456,0.0984126984126984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025109601385078,0.0046212313149227,0.0067664901495323,0.0091809272330269,0.0114892275782131,0.0137520358306188,0.0160101910828025,0.0184586186137159,0.0207209416380578,0.0228702993092862,0.0250381773272796,0.0270750156517812,0.0293407079191125,0.0312187786463966,0.0333890505375678,0.035290834100001,0.0376533940868844,0.0396369294605809,0.041549317730688,0.0435158471425149,0.0582069138328861,0.0729930826627039,0.0871156892156965,0.1010566156757609,0.1135026878886897,0.1285714285714285,0.1385921171290647,0.149108797035712,0.1581916678242101,0.1660410544604363,0.1774532295066076,0.1873816351929008,0.1973589749167881,0.2068079429646153,0.2159179676755674,0.2249684406351737,0.233345605872968,0.2408954451927725,0.248656188337756,0.2549208093014739,0.2604325523360599,0.265778753107892,0.2711282154198491,0.2749044433827042,0.2783455223519155,0.2830258211925411,0.2866005892045738,0.2904526947323025,0.294740780883074,0.2973601566298306,0.2946049192413377,0.2914782846965337,0.2885470277244106,0.2854842188511036,0.2821259179361397,0.2783911792028996,0.2755008820564516,0.2759689416677541,0.2770047850137442,0.2772724855060901,0.2780333364372847,0.2791488859609447,0.2794096217499011,0.2800887409872434,0.2816434566959176,0.2834778108422823,0.2839297295773059,0.288073908174692,0.2937949234348415,0.2974405275967653,0.3014209910963216,0.3068963706077,0.3105655686761964,0.3131100765880762,0.3174310233459445,0.3209059233449477,0.3282973258800423,0.333266971929126,0.3385331143951833,0.3377483443708609,0.0,2.3520693963357706,51.26273522143082,140.3541324349979,197.48115324446675,fqhc5_100Compliance_implementation,62 -100000,95742,48436,462.1273840111968,4787,48.73514236176391,3815,39.19909757473209,1512,15.395542186292326,77.33232137485312,79.69705626912891,63.31916690730778,65.07066022486765,77.13734675236846,79.50580864993444,63.24558331626341,65.00058550652672,0.1949746224846649,191.24761919447053,0.0735835910443682,70.07471834093337,231.76978,162.98545760592174,242077.2074951432,170233.81255651827,540.04276,364.36254434027495,563403.4175179128,379911.3396186678,484.59691,238.3302896797482,501254.73668818286,245115.63383899844,2694.88778,1271.9726688013975,2776513.588602703,1290420.0712836871,882.99355,403.7352541953984,907699.91226421,407336.9785208984,1465.02368,621.1824465255979,1494713.5844248082,620516.0999271614,0.38108,100000,0,1053499,11003.509431597418,0,0.0,0,0.0,47074,491.0070815316162,0,0.0,43903,453.68803659835805,1107808,0,39762,0,0,0,0,0,76,0.7938000041778948,0,0.0,1,0.0104447368970775,0,0.0,0.04787,0.1256166684160806,0.3158554418216002,0.01512,0.3726434015242679,0.627356598475732,23.23661956376145,4.0715422023881525,0.3064220183486238,0.2757536041939711,0.2110091743119266,0.2068152031454783,11.614955111353824,6.518249178349573,16.027908288421127,11350.495440880826,43.9243606882438,13.035980593589986,13.28133951218406,9.104530875907509,8.502509706562254,0.5855832241153343,0.8098859315589354,0.7117194183062446,0.5826086956521739,0.1026615969581749,0.7758333333333334,0.9221052631578948,0.9047619047619048,0.7546296296296297,0.1502890173410404,0.4982791586998088,0.7175043327556326,0.6338535414165666,0.5195246179966044,0.0892857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023105922412744,0.0046252624532148,0.0069043944439931,0.0089234897146109,0.011231382762269,0.0138038528539847,0.0160316553805988,0.0183360728542404,0.0205204232912427,0.0228091728091728,0.024839308230904,0.0268155965751596,0.028904884318766,0.0307842834337504,0.0329323401357736,0.0351406660189759,0.0372345382440953,0.0392049050222531,0.0409968096272356,0.0428778237187164,0.0578834189318969,0.0719195639209449,0.0852342447220212,0.0982262083758293,0.1103285394964362,0.1258937259381478,0.13680011034834,0.1465338314653383,0.1566524980242219,0.1657212708692994,0.1769077494749313,0.1881959549394539,0.1987097195326269,0.2076629442068535,0.2159559834938101,0.2244590614134166,0.2324481142602097,0.2407713684589507,0.2481846237632749,0.2546976445935578,0.2603181949667341,0.2660405604547262,0.2707820779712339,0.2752838595314521,0.279553316744553,0.2834833799278298,0.2869271647389809,0.290177493742615,0.2929504591902729,0.295244620716008,0.2932580493379041,0.2909138374026188,0.2877873866272938,0.2851334986448302,0.282876204595997,0.2786233877376368,0.2749288199936729,0.2748427878946679,0.2759049061484267,0.2765540696949732,0.2775937880063617,0.2785069972169038,0.2793440977160545,0.2802695586200741,0.2819602102282272,0.282553368306238,0.2845567611978355,0.2886152110557488,0.2931317434267956,0.298007210490868,0.3013816534541336,0.3074637950241367,0.3121219758064516,0.3147951441578148,0.3191489361702128,0.3245318134232872,0.3262040083757104,0.329974313376803,0.3305585392051557,0.335593220338983,0.0,2.544219139991059,51.922112898841625,136.67332999096337,191.5264650114883,fqhc5_100Compliance_implementation,63 -100000,95723,48451,462.2608986346019,4760,48.37917741817536,3796,39.02928240861653,1410,14.291236171035177,77.41699606751023,79.77090168548563,63.36600846061516,65.10070769399553,77.23196099056291,79.59105466485981,63.29551839071952,65.03519205479893,0.1850350769473152,179.84702062581448,0.0704900698956478,65.51563919660452,231.57926,162.88473312823356,241925.9947974886,170162.13420832346,540.60824,364.8305890434137,564123.1052098242,380496.5784586858,488.77136,239.9399696912476,507108.0722501384,247962.6166084565,2672.76244,1252.3896885211327,2745689.1238260395,1262328.091941635,884.48491,407.3193815033265,904343.6791575692,406046.0531125194,1365.28274,585.8247863721376,1383736.2180458198,575505.9633482026,0.37999,100000,0,1052633,10996.636127158572,0,0.0,0,0.0,47139,491.77313707259486,0,0.0,44100,457.16285532212737,1110204,0,39830,0,0,0,0,0,90,0.9402129059891562,0,0.0,1,0.0104468100665461,0,0.0,0.0476,0.1252664543803784,0.296218487394958,0.0141,0.3705043198714084,0.6294956801285915,23.448182425851027,4.101043052479822,0.315595363540569,0.279768177028451,0.2070600632244467,0.1975763962065332,11.859365175887,6.685931791576436,14.966034587294136,11294.409465875013,43.38270849122187,12.946802885659237,13.67624859444444,8.643277007482908,8.116380003635278,0.5993150684931506,0.8050847457627118,0.7086811352253757,0.5903307888040712,0.1426666666666666,0.7740259740259741,0.9237668161434978,0.8787878787878788,0.7457627118644068,0.1834319526627219,0.5229079893979554,0.7191558441558441,0.6347305389221557,0.5451559934318555,0.1308089500860585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024291989716391,0.0046196395465459,0.0066841123012009,0.0092303942972613,0.011479176834228,0.0136199841201978,0.0157173726913197,0.0179526433966115,0.0200298403744353,0.022046712431072,0.024183549038294,0.0262633934069543,0.0283214770344175,0.0305451998928961,0.0325169703096952,0.0347528650704254,0.0371175648392607,0.0391851805754351,0.041229720319694,0.0430248669146065,0.0577517437246794,0.0717267790438522,0.0852427714129841,0.0981173748422381,0.1101231911572374,0.1254600837669755,0.1359450915494451,0.1456718896363791,0.1557388433637111,0.1638389601475698,0.1750947622329428,0.1855883148498782,0.1959220050866247,0.2059356840127583,0.2137599156210859,0.2231699357251114,0.231068415597731,0.2395132201409099,0.2464832636220401,0.2531833834818721,0.2591685063396479,0.2644969861221438,0.2697615615473687,0.2743880554159787,0.2790489008524002,0.283304625984252,0.2871002784471886,0.2893467387716759,0.2926643419863102,0.2955074962814758,0.2919738414642334,0.2887556756608458,0.2864990165776903,0.283501362987322,0.2817807285337443,0.277967705503495,0.2742908443716432,0.2736613768695056,0.2745297579674011,0.2751186008638391,0.2767901922541098,0.278363031133738,0.2782937522076087,0.2784168842086633,0.2802294582500238,0.2818010482017917,0.2833977269522547,0.287541920258353,0.2923887425481769,0.2975323149236192,0.3030588446358091,0.3069104626185361,0.311199207135778,0.3140750771082524,0.318952802359882,0.3240365698414535,0.330297147976706,0.3299192436478235,0.3363587827015483,0.3296296296296296,0.0,2.3682860858453867,49.89454678890398,135.91742636942905,194.73833151740848,fqhc5_100Compliance_implementation,64 -100000,95701,48488,462.8687265545815,4758,48.53658791444186,3766,38.83971954316047,1426,14.555751768529063,77.3508434030137,79.74050388182006,63.31502979323547,65.08270191972179,77.17066483118701,79.56385305137671,63.2483270406707,65.01932151086754,0.180178571826687,176.65083044335006,0.0667027525647654,63.38040885424334,231.0715,162.6036835869853,241451.4999843262,169908.0297875522,543.43354,366.5990917987032,567314.1659961756,382536.352354799,489.79179,240.17982844900305,508328.376923961,248306.59308438943,2687.70579,1233.841032481053,2773003.260154021,1253859.583699282,869.78559,389.2555420175168,895545.9190604069,393476.9436630196,1394.1607,582.653897794867,1424160.667077669,581364.5762266327,0.37986,100000,0,1050325,10975.068181105737,0,0.0,0,0.0,47295,493.6416547371501,0,0.0,44150,457.9366986760849,1108115,0,39733,0,0,0,0,0,100,1.0449211606984254,0,0.0,0,0.0,0,0.0,0.04758,0.1252566735112936,0.2997057587221521,0.01426,0.3528940516723413,0.6471059483276588,23.40366643139826,4.066286870119008,0.2995220392989909,0.2809346787041954,0.2057886351566649,0.2137546468401487,11.23202911433908,5.965218704985346,15.02236706060689,11316.5816823672,42.68958606089111,12.991364082932478,12.599059026997915,8.419771269567976,8.67939168139274,0.5847052575677111,0.8241965973534972,0.7012411347517731,0.5780645161290323,0.1130434782608695,0.772093023255814,0.9345372460496614,0.8918032786885246,0.7530120481927711,0.1180124223602484,0.5098476402824229,0.7447154471544716,0.6306196840826246,0.5303776683087028,0.1118012422360248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678130413201,0.0045228219975459,0.0068420144352292,0.0089844702821367,0.0111599422165252,0.013406409812351,0.0155974252517112,0.0177094184692689,0.0198300283286118,0.0220294545380061,0.0241718798071992,0.0263141677451161,0.0284914936948427,0.0305687203791469,0.0327151511398701,0.034610017056908,0.0364775964775964,0.0387146326780561,0.0407526445533123,0.0428818612020263,0.0582079107611,0.0725062559549361,0.0853958057812204,0.0975183833198329,0.1097503085540681,0.1255501481168006,0.1363477153319535,0.1456378911948547,0.1548845660538692,0.1643615137826325,0.1759285206182233,0.1874154335754413,0.1970601995408601,0.2065649105530937,0.2154516736194428,0.224405870355591,0.2333474708692352,0.241427044060548,0.2484758347430206,0.2551104592538271,0.2612519818996146,0.2662008590522337,0.2714720475564555,0.2758521467023151,0.2795927541338128,0.2848133229863395,0.2875159363047771,0.2898401565398592,0.2935476368898421,0.2956365935919056,0.2931375317706862,0.2901223548152318,0.2869665383642851,0.2846566029038949,0.2818734379390408,0.2781834535115935,0.2736857034795764,0.2731326462277249,0.2734382970041146,0.2739893834218048,0.2742248062015504,0.2743394079682994,0.2763133295943167,0.2767726486630305,0.2784028605482717,0.2804484281765815,0.2806849815819813,0.2852134524695954,0.2899047619047619,0.2940098276265502,0.2994458843507016,0.3032285071424834,0.308460488773105,0.3129139072847682,0.3178135766831176,0.3195718654434251,0.3256901493437924,0.3258426966292135,0.3346666666666666,0.3314436885865457,0.0,1.9255306533451664,46.780227829560914,138.99517081701717,196.50775796892088,fqhc5_100Compliance_implementation,65 -100000,95723,48602,464.83081391097227,4824,49.25670946376524,3790,39.00838878848344,1426,14.500172372366098,77.26691653433518,79.62437384857417,63.2951211478972,65.03809954182626,77.08182726706534,79.44573529952989,63.2241020254742,64.9721900276937,0.1850892672698449,178.63854904427967,0.071019122423003,65.90951413255652,232.04236,163.22839540828997,242410.24623131327,170521.60442975038,542.00873,365.9439126768422,565632.9513283119,381701.5383231826,486.53836,238.8975431101207,504342.1016892492,246614.5938316832,2686.69978,1259.509688244396,2765246.335781369,1274307.6339190474,869.74467,395.3339476044952,892947.7450560471,397339.87401616527,1381.13538,591.8885111502157,1405573.3940641226,585289.707979816,0.3811,100000,0,1054738,11018.647555968784,0,0.0,0,0.0,47249,492.9849670403143,0,0.0,43916,455.0003656383523,1101792,0,39536,0,0,0,0,0,103,1.0655746267877104,0,0.0,0,0.0,0,0.0,0.04824,0.1265809498819207,0.2956053067993366,0.01426,0.3777600954843843,0.6222399045156157,22.870481983665652,3.979485204839533,0.316622691292876,0.2736147757255937,0.2081794195250659,0.2015831134564643,11.304497140486903,6.2438162153540855,15.269354580268915,11296.781438666752,43.78419349048928,12.948064286816784,13.612182192661878,9.009072508210446,8.214874502800166,0.5899736147757256,0.8100289296046287,0.69,0.5994930291508238,0.1243455497382199,0.7628691983122363,0.9278350515463918,0.8429003021148036,0.7451923076923077,0.124223602484472,0.5113243761996161,0.7065217391304348,0.6317606444188723,0.5473321858864028,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067131223919,0.0046639426537833,0.0067885700369363,0.0089698398025213,0.0114618717328071,0.0135114496044311,0.0159539222182578,0.0180479986933575,0.0199952976293918,0.0217716180805764,0.0238947033920022,0.0259640261180239,0.02810427271325,0.0301788068556361,0.0325702318191666,0.0345554717137157,0.0364613536575263,0.0384902684981533,0.0402274357348523,0.0419271484537801,0.0565017177106936,0.0704446491374979,0.0841964969723682,0.0969031810002841,0.1093502711599738,0.1249748653310897,0.1355041459193748,0.1450528849738504,0.1546893380387124,0.1638737104271559,0.1759600664122302,0.1863683155442379,0.1966240130683365,0.2052680576091123,0.2140133565493376,0.2231854458269971,0.2318297701046605,0.2399648502191228,0.247029826673633,0.2533926279112415,0.259017114291996,0.2652741208823357,0.2707460283637569,0.2741517803620669,0.2790638328897962,0.2837101506447397,0.287321191472305,0.2911526170378009,0.2947794079527192,0.2978031564755333,0.2942470412005236,0.2916166756305766,0.2887101326559413,0.2853384219504438,0.2831557200398329,0.279247537492915,0.2746822604671801,0.2747259970093826,0.2752441047213529,0.2757432372109633,0.2764025166654183,0.2772599818332609,0.278209668294114,0.2786251870379883,0.2796644795346937,0.2815963369582184,0.281185075561374,0.285781633037903,0.2904113455161222,0.2946514230892229,0.2990133382057373,0.3017319477751132,0.3055345911949685,0.3107503224338062,0.3145825533508049,0.3187536743092298,0.3253030303030303,0.3235883059671606,0.328965328965329,0.3255368098159509,0.0,2.261826864868524,51.549560074304,139.97389497921432,187.88397616894773,fqhc5_100Compliance_implementation,66 -100000,95697,48175,460.8294930875576,4784,48.79985788478218,3707,38.099417954585824,1421,14.399615452940008,77.288290147924,79.65750515333504,63.294707477804174,65.04383470101303,77.10213061685421,79.4773721436367,63.22419725303987,64.97864169044861,0.1861595310697907,180.1330096983378,0.0705102247643054,65.19301056441407,232.0318,163.2267280070616,242464.61226579724,170565.73832728466,541.49047,365.6554702902557,565220.9891637147,381479.8832672451,482.0955,237.1005686087299,500149.90020585805,244925.8676053142,2590.47783,1230.5909744033418,2659820.318296289,1239156.0947020452,833.52553,383.3849901134584,853064.5161290324,382816.6809534242,1375.1455,592.1103655171098,1395088.6861657104,582815.3986640609,0.37763,100000,0,1054690,11021.11873935442,0,0.0,0,0.0,47224,492.8263163944533,0,0.0,43603,451.9890905671024,1100720,0,39481,0,0,0,0,0,96,1.0031662434559077,0,0.0,1,0.0104496483693323,0,0.0,0.04784,0.1266848502502449,0.2970317725752508,0.01421,0.3493205435651478,0.6506794564348521,23.17229623023245,4.017753644017785,0.3148098192608578,0.2862152684111141,0.1988130563798219,0.2001618559482061,11.562223857806623,6.518233272589798,15.290072631427982,11192.66541268549,42.86467619502957,13.015182566437474,13.454034117288789,8.213798283113508,8.181661228189798,0.5967089290531427,0.8049010367577757,0.715509854327335,0.6037991858887382,0.105121293800539,0.7522361359570662,0.9043280182232346,0.8803680981595092,0.7584269662921348,0.1257142857142857,0.52954808806489,0.7347266881028939,0.6516052318668252,0.554561717352415,0.0987654320987654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382240046992,0.00423758883223,0.0064537078378049,0.0087669395964972,0.0108209258807257,0.0129519697787371,0.0152321526885667,0.0175164599601898,0.0197385233417493,0.0219618277644169,0.0240432902207555,0.0260208166533226,0.0279348563673377,0.029968486745896,0.0315729757607013,0.0338872697959942,0.0358969580253049,0.0379402669101928,0.0397948888634638,0.0416471250351749,0.0561885763819987,0.069668097581405,0.0827884423640046,0.09487276630675,0.1067115652577798,0.1227752543700833,0.1336313537275555,0.143478121903666,0.153315655539636,0.1624987920500789,0.173939766441303,0.1844023876328418,0.1957310100735094,0.2043834776611234,0.2123678414096916,0.2211657939114227,0.2302747062309231,0.2377081524741535,0.2453392481374054,0.25248593409117,0.2582713873201053,0.264132804989566,0.268369053408134,0.2731268539312349,0.2766382217244695,0.2808239478363959,0.2844201307419164,0.287227533460803,0.2897523750194674,0.2927986885072515,0.2899818096072222,0.2866098122149815,0.2846759625155244,0.281221961737721,0.2792697623900849,0.2766384340873933,0.2736520693583091,0.2736586725243021,0.2735340296265957,0.2737594467417653,0.274276521316198,0.2762636712976647,0.2770845091030706,0.2781792710858108,0.2794759825327511,0.2816406653579915,0.2818533910044384,0.286320916726512,0.2894167713129622,0.2943521332438726,0.2985487528344671,0.3044649933949802,0.3074572889387704,0.3135644310474755,0.3194214114612124,0.3223523953137687,0.320991340698716,0.3206650831353919,0.32605221097496,0.3257884972170686,0.0,2.3990353685534305,48.12327246797052,145.7370866769561,181.2462936848512,fqhc5_100Compliance_implementation,67 -100000,95824,48429,462.2119719485724,4846,49.41350809818,3838,39.41601268993154,1483,15.11103690098514,77.36488025655099,79.67920949828961,63.35773544642036,65.07097346506552,77.17783740429579,79.4944092780286,63.28660620294998,65.00281859594303,0.1870428522552032,184.8002202610104,0.0711292434703736,68.15486912249469,233.04028,163.90245964138626,243196.1512773418,171045.31186486292,544.12078,367.35085156521,567213.1616296544,382739.6180134517,486.91263,239.97878595991276,503140.9354650192,246692.1781045473,2713.55281,1272.225273557441,2791841.6576223075,1287885.141447256,892.86025,404.1393162329029,918625.584404742,408687.855274516,1435.90788,615.4538507369437,1465082.025379863,615395.8305728035,0.37956,100000,0,1059274,11054.370512606443,0,0.0,0,0.0,47445,494.46902654867256,0,0.0,43961,453.9155117715813,1102248,0,39546,0,0,0,0,0,87,0.8870429120053431,0,0.0,1,0.0104357989647687,0,0.0,0.04846,0.1276741490146485,0.3060255881139084,0.01483,0.3585798816568047,0.6414201183431952,23.28244175613253,4.020974307530887,0.3170922355393434,0.274882751433038,0.2068785825951016,0.2011464304325169,11.326666633127894,6.283531083768975,15.992548913987989,11291.756193935287,44.0791533210849,13.068605535886498,13.834061480394276,8.7677935819388,8.408692722865329,0.5849400729546639,0.8170616113744076,0.6984387838948234,0.5403022670025189,0.1347150259067357,0.7506297229219143,0.9326315789473684,0.8314606741573034,0.6898395721925134,0.1502890173410404,0.5103891197582169,0.7224137931034482,0.6434378629500581,0.4942339373970346,0.1302170283806344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903575407677,0.0045825053732916,0.0066868252293205,0.0088164790964124,0.0110228694034024,0.0133384922412739,0.0153723827193214,0.0174673826489985,0.0196168629375204,0.0216592456113414,0.0237978108473742,0.0259433720226183,0.028037287125253,0.030063502845792,0.0320056899004267,0.0341488592959636,0.0362639635912288,0.0383874176302374,0.0404007891184716,0.0423953640799425,0.0570620997517678,0.0711463689953593,0.0844315015398797,0.0977023564497836,0.1105868972271659,0.1258011720606092,0.136081950020657,0.1454918468439739,0.1555233178307803,0.1645050390378168,0.1764307228915662,0.1879439141198473,0.1983746727073215,0.2071270217436412,0.2155179992088259,0.2254732837933475,0.2331855548377035,0.241050574919152,0.2476308012816883,0.2543583881108888,0.2608449663422125,0.2657360613452538,0.2707695942354261,0.2748720524226336,0.2790666634309705,0.2827713512183116,0.2867494565353189,0.2895365079365079,0.2928833531448653,0.2962699822380106,0.2931499858997945,0.2897641470580159,0.2861081415630451,0.2838617546086605,0.2806499480635109,0.2773836462601676,0.2724468976861151,0.2732387435413762,0.2741602199566235,0.2748603750691433,0.2741390952059419,0.2756519330457837,0.2762744523101411,0.2771226941801777,0.2782856322389203,0.2789225099911766,0.2798065227844878,0.2839471464717458,0.2880918321063466,0.2928885195298587,0.2962272727272727,0.298811544991511,0.3015683063551048,0.3056379821958457,0.3049812030075188,0.3144439208294062,0.3146821161762463,0.3219720024345709,0.3199123527800602,0.3152215799614644,0.0,2.484512305384574,51.423267422846735,138.3628320228546,193.8706553379004,fqhc5_100Compliance_implementation,68 -100000,95642,48092,459.54706091466096,4794,48.99521130883922,3816,39.35509504192719,1466,15.02477990840844,77.2563444549925,79.66709016453757,63.27473565930678,65.05589158662448,77.06985721924329,79.48193909813232,63.203562885308266,64.98744253430074,0.1864872357492117,185.15106640525403,0.0711727739985121,68.44905232374288,231.2728,162.65717557630032,241810.9198887518,170068.77269013648,540.51018,364.26238948137774,564618.1384747287,380339.5160324526,476.65597,233.14679947488605,494689.4251479475,240968.76706699,2698.19465,1267.446485939891,2783991.5100060645,1288054.199548629,891.44,404.6078852255854,915611.1750067964,406699.8062759483,1429.47744,613.7480961604048,1465698.4797473913,615534.3313172319,0.38038,100000,0,1051240,10991.40544948872,0,0.0,0,0.0,47178,492.7124066832564,0,0.0,43202,448.0249262876142,1107258,0,39833,0,0,0,0,0,92,0.961920495179942,0,0.0,1,0.0104556575563037,0,0.0,0.04794,0.1260318628739681,0.3057989153108051,0.01466,0.3594589218221603,0.6405410781778397,23.11239100958897,4.106674765712609,0.3107966457023061,0.2667714884696017,0.2133123689727463,0.2091194968553459,11.322676813383932,6.070935459287725,15.685710218081882,11344.950744349067,44.06982031258172,12.59611155845367,13.576470223441108,9.18957706652378,8.70766146416316,0.5885744234800838,0.8222003929273084,0.7116357504215851,0.5921375921375921,0.1040100250626566,0.7572402044293015,0.9544419134396356,0.8584070796460177,0.7534246575342466,0.0790960451977401,0.5136260408781226,0.7219343696027634,0.6528925619834711,0.5327731092436975,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876740770749,0.0046015223538712,0.0069718588579141,0.009265185456097,0.0114660697934683,0.0138035716104846,0.015596947935368,0.017726511095672,0.0199558128592762,0.021902595939107,0.0241136934995639,0.0260926757581674,0.0282802285478972,0.0303120908125496,0.0321780899746913,0.0345609006529319,0.0366976281307016,0.038622552329507,0.0404782468444657,0.042368991989319,0.0562772372422586,0.0696110371992164,0.082946647909799,0.0963989852738392,0.1085398925786402,0.1243730026032297,0.1347464283439828,0.1455926048200726,0.1554199223969301,0.1646991908308471,0.1761864717424585,0.1877749127862885,0.1978847850475433,0.2072060225516946,0.2156752464765433,0.2258429709871473,0.2343085939247528,0.2414461524590903,0.2485168094924192,0.2552049279052961,0.2613399192987338,0.2662938341950687,0.2714677168716859,0.2754456515215173,0.2801256146842592,0.2834669004605905,0.2864699541226904,0.2904014984518546,0.2950573103054821,0.2984682424402483,0.2949730458221024,0.2926657846866214,0.2899528554893713,0.2879255172813229,0.2848420770479353,0.280990339277212,0.2771153114296588,0.2765251117538785,0.2763999108719127,0.2772548317823908,0.2783640665489916,0.2795590389106598,0.2802573128824072,0.2811204706511566,0.2830333389257723,0.283811502012203,0.2843167922650362,0.2887092225251481,0.2933472657610588,0.298059895320924,0.3022741629816803,0.3059151668245448,0.3102219443576117,0.311903150612828,0.3169078585821579,0.3200464846019756,0.3228486646884273,0.3244147157190635,0.3235841531507578,0.3239863584691171,0.0,2.128869380799322,51.30678483374452,143.14646152627836,189.2161711769292,fqhc5_100Compliance_implementation,69 -100000,95705,48294,461.6791181234,4755,48.57635442244397,3796,39.214252128937886,1459,15.025338279086778,77.32722884548278,79.70593021273419,63.32110870231941,65.07661432941187,77.13866247707769,79.51477364369309,63.250264829383966,65.00609824498245,0.1885663684050911,191.15656904109807,0.0708438729354483,70.51608442941415,230.91904,162.5209980916839,241282.10647301603,169814.53225190315,542.50457,366.38903005708806,566390.8364244293,382371.9405194306,481.90573,237.05791722943977,500330.4529543911,245175.17521581592,2673.80139,1256.8095043251476,2764924.86285983,1284364.3851885044,853.81981,390.7591011498556,881717.9562196332,397904.7179327894,1412.55758,603.8768528828729,1455832.1299827597,614203.4520854299,0.38073,100000,0,1049632,10967.368476046184,0,0.0,0,0.0,47365,494.4360273757902,0,0.0,43683,453.2469567943159,1107865,0,39664,0,0,0,0,0,70,0.731414241680163,0,0.0,0,0.0,0,0.0,0.04755,0.1248916555039004,0.3068349106203996,0.01459,0.3670886075949367,0.6329113924050633,22.844945951631413,4.06740315089639,0.3150684931506849,0.2766069546891465,0.2078503688092729,0.2004741833508956,11.337982224945351,6.1950737709560455,15.643124158308488,11270.029556680518,43.49113122829731,12.83590276630404,13.504832613923798,8.794392892721275,8.356002955348208,0.5724446786090621,0.7895238095238095,0.6847826086956522,0.5627376425855514,0.1064388961892247,0.7591623036649214,0.9068736141906872,0.8596491228070176,0.776595744680851,0.1272727272727272,0.4916981132075472,0.7011686143572621,0.6147540983606558,0.4958402662229617,0.1006711409395973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023184238767286,0.0045504758236969,0.0067769098102871,0.009009009009009,0.0110635441982489,0.0131550813028825,0.0154079905369852,0.0173521391439339,0.0192256560243797,0.0213822695108089,0.0235463029432878,0.0255327889898834,0.0277097776223488,0.0299945389537459,0.0320030547901379,0.0339713957745168,0.0360520890528038,0.0381213404758938,0.0401593476316282,0.0421087740509891,0.056933666168806,0.0706922714666945,0.0838367946297461,0.0971281296023564,0.1091459427534856,0.125436350942518,0.1356622874970817,0.1456955757866155,0.154909564864374,0.1633878960804925,0.1745147879283975,0.1852393012533281,0.1957259380097879,0.2049451030138664,0.2139280486865418,0.2233817452668195,0.2316715215231972,0.2393561377262348,0.2469813890149795,0.2531929760254751,0.2602011876787016,0.2652743652743652,0.2706627218934911,0.2740778013394194,0.278524223723213,0.28286700357451,0.2861648207246104,0.2896859731270358,0.2933347143818944,0.297194954612624,0.293174530462666,0.2901428984032238,0.2873619873817035,0.2838836296467328,0.2822393822393822,0.2783626806430355,0.2740345825884735,0.2743943334805581,0.2749570512493409,0.2755632890041015,0.2758852031308237,0.2770646169572824,0.2776319079769943,0.2785857238158772,0.2799789201360609,0.2806091951035683,0.2820738636363636,0.2844174544543917,0.2893316150604298,0.2949214122107259,0.3002452093361184,0.3040165105572313,0.3057540428732606,0.3108056800060749,0.317767546744339,0.3158142823473957,0.3168165878944961,0.3180446590223295,0.3157321720195972,0.3205759757483895,0.0,1.6905105261183195,50.11755348398786,138.3547240186451,195.10223841396197,fqhc5_100Compliance_implementation,70 -100000,95765,48047,458.05878974573176,4809,48.79653318018065,3833,39.304547590455805,1467,14.82796428757897,77.38146625236273,79.70346900919141,63.35451413110488,65.0673107266354,77.18648386550659,79.51757127481116,63.27967724012425,64.99978910595516,0.1949823868561395,185.89773438024795,0.0748368909806274,67.52162068023893,231.3025,162.6838012590296,241531.35279068557,169878.1405096117,541.22688,364.7741454933325,564418.7020310133,380162.7269809768,480.11788,235.1771103163466,497354.3779042448,242543.2629994872,2713.07663,1278.0003197644992,2782417.292330183,1283877.8361243666,878.97978,402.0307297585286,900698.5746358273,402660.1091160362,1427.91272,616.5743385181515,1443645.0686576515,602126.103450996,0.37948,100000,0,1051375,10978.697854122069,0,0.0,0,0.0,47203,492.1526653787918,0,0.0,43402,449.1515689448128,1109579,0,39861,0,0,0,0,0,91,0.9502427818096382,0,0.0,2,0.0208844567430689,0,0.0,0.04809,0.126726046168441,0.305053025577043,0.01467,0.3619276144771046,0.6380723855228955,22.924975495255868,4.140490693720794,0.3094182102791547,0.2726324028176363,0.2094964779546047,0.2084529089486042,11.25749282828801,6.07494687337441,15.732080465340102,11275.256473480107,44.12742994617284,12.900511688478288,13.523098495851835,8.921460095384676,8.782359666458044,0.5783981215757892,0.8239234449760765,0.6871838111298483,0.5765877957658779,0.097622027534418,0.7497820401046208,0.927765237020316,0.847457627118644,0.7041420118343196,0.1657458563535911,0.5052122114668652,0.7475083056478405,0.6189903846153846,0.5425867507886435,0.0776699029126213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971123666038,0.0042867566581539,0.006735577849687,0.0090177918596149,0.011266230795042,0.0131929881711016,0.0154313437703848,0.0176940581026337,0.019912137310993,0.0221087739400883,0.0241980924281074,0.0264089384099233,0.0284668982385464,0.0306464896026353,0.0326824339649875,0.0343182311084489,0.0364893253717751,0.0385277345775013,0.0407039561170212,0.0427851475457631,0.057455668854957,0.0707543220729206,0.0838193337249307,0.0966273470846737,0.1088794703103913,0.124152448247776,0.1341459533433054,0.1442807256622093,0.1543268563126916,0.1637394921942014,0.1756510879278231,0.1867766986090981,0.1977118496606925,0.2069139043868285,0.2158813301934546,0.2249085872576177,0.2327681471642091,0.2412404077683012,0.2490548472428787,0.2538565567194627,0.2590045500329964,0.2646304772831037,0.2695404067908981,0.2742497753818508,0.278500066766209,0.28283885264065,0.2859767299448867,0.2894609774073038,0.2925942224062953,0.2944060090927061,0.2907120576530063,0.2878038730943552,0.2856921821813374,0.2830510187872749,0.2804568339447225,0.2776571008994676,0.2736185664666877,0.2739643131674926,0.2740066366034204,0.2750900988868571,0.2768090021611148,0.2773785683433463,0.2778252087541386,0.2783266577659101,0.2795660381867278,0.2805054899523513,0.2809214245336348,0.2852115965496839,0.2895258635683723,0.2933848458566585,0.2982471991326346,0.3010865571361083,0.3035559410234171,0.30783623980241,0.309011275743174,0.310825043885313,0.3153153153153153,0.3133320087423008,0.3153225806451613,0.3304543747653023,0.0,2.807921834926291,49.11676627454382,146.65051558858374,191.6243248557323,fqhc5_100Compliance_implementation,71 -100000,95756,48425,460.9737248840804,4897,50.13785036968963,3858,39.7050837545428,1469,14.912903630059736,77.31912755708531,79.6685672391509,63.32066847763053,65.05820529579073,77.13782720632153,79.49210797344439,63.25282356681377,64.99468893962617,0.1813003507637773,176.45926570651227,0.0678449108167669,63.51635616455553,231.56276,162.86370949294812,241825.6192823426,170081.78571424237,542.67181,366.2271642429778,566129.8090981244,381866.1871641423,488.00207,239.7612137262508,506224.9885124692,247647.03885570084,2733.95746,1269.875602223621,2814748.026233343,1285847.4191905763,935.34072,427.4692359441885,955015.5603826392,424670.40740678535,1431.6589,599.7295035011393,1455380.3625882452,593619.4209090981,0.3799,100000,0,1052558,10992.073603742849,0,0.0,0,0.0,47311,493.4625506495677,0,0.0,43949,455.543255775095,1105516,0,39745,0,0,0,0,0,102,1.0652074021471238,0,0.0,0,0.0,0,0.0,0.04897,0.1289023427217689,0.2999795793342863,0.01469,0.3497546614327772,0.6502453385672228,23.178918864057007,4.120401972635133,0.2998963193364437,0.2820114048729912,0.2122861586314152,0.2058061171591498,11.44859183435765,6.258444329041079,15.563477986271067,11376.408557708684,44.17201539571607,13.43042326832006,13.030493595529276,9.096294908099573,8.61480362376716,0.597459823742872,0.8106617647058824,0.6940363007778738,0.608058608058608,0.1536523929471032,0.7851662404092071,0.9210526315789472,0.868421052631579,0.7772511848341233,0.2317073170731707,0.5154562383612663,0.7188552188552189,0.6318874560375146,0.5493421052631579,0.1333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683774012901,0.0047527842803433,0.0071222758816606,0.0093542424180869,0.0115731559731925,0.0137891703074557,0.0160795309711955,0.0184311563125433,0.0206846485756937,0.0229315534079973,0.0252119795351317,0.0274460679118193,0.0295675425515503,0.0316153822381094,0.0338316773454669,0.0357065346575583,0.037827653318978,0.0400390017218845,0.0420216966623716,0.0438903470399533,0.0581825014091563,0.0723139847484753,0.0855848296694076,0.0980977717957076,0.1105816870822879,0.1261260308733347,0.1359365389102169,0.1456628826164207,0.15477499599637,0.1638226719259132,0.175644103745653,0.1871949965915361,0.1974879016910445,0.2067061704639874,0.2152883198028733,0.2245006421896452,0.2330149093830908,0.2408832197250905,0.2492455356129881,0.2556464999141434,0.261511578119033,0.2657891657891658,0.2714852305688747,0.2757127607258944,0.2805853326527139,0.2850782531480088,0.2877763589473948,0.2905533561617678,0.2936100746268656,0.29648148392459,0.2943773640781273,0.2908295862381915,0.2884712909224094,0.2860838524128163,0.283799628942486,0.2801970805153472,0.2758882526022716,0.2762627421416631,0.2768124829653857,0.2780907891452412,0.2796977857570317,0.2802860182011583,0.2814786935976247,0.281179543272987,0.2830803903234314,0.2848347880299252,0.2863548643432853,0.2910387092739666,0.2974955464738552,0.2998544395924308,0.3035133670520231,0.3079440485616257,0.3121517560883992,0.3146519035340512,0.3184367988032909,0.3179642815454651,0.3240433865622175,0.3203046702746041,0.327168887680174,0.3348331458567679,0.0,2.1868538141857106,51.00507114661345,140.3085083574554,195.74727276107777,fqhc5_100Compliance_implementation,72 -100000,95666,48587,463.5920807810508,4823,49.02473187966467,3806,39.0420839169611,1460,14.82240294357452,77.34181859432726,79.72374209422155,63.3271521787835,65.08543178065916,77.1499933794706,79.53757682980526,63.2535329230216,65.01646398789515,0.1918252148566637,186.1652644162888,0.0736192557619048,68.96779276401332,231.93192,163.1071519840592,242439.23651035893,170496.46894827753,541.65797,365.1260340383725,565454.4456755797,380925.00369867287,487.71898,239.11651416901603,504750.3919887943,246113.05651278343,2698.13872,1275.3414644002796,2771943.762674304,1284688.8804802955,909.71104,417.7494450557992,931943.8567516152,417705.5806688319,1422.9999,612.3517230562612,1446796.8557272176,606467.3812456554,0.3802,100000,0,1054236,11019.965295925407,0,0.0,0,0.0,47231,492.9337486672381,0,0.0,43991,454.74881358058246,1106596,0,39765,0,0,0,0,0,93,0.9721322099805574,0,0.0,1,0.0104530345159199,0,0.0,0.04823,0.126854287217254,0.3027161517727555,0.0146,0.354684702605928,0.645315297394072,23.27667027235274,4.11175867865584,0.303205465055176,0.2756174461376773,0.2143983184445612,0.2067787703625853,11.775000437237988,6.558812922423231,15.527830264602308,11317.8054919958,43.78585122101687,12.875168721750772,13.1163011374065,9.136350047157798,8.658031314701804,0.5835522858644246,0.8017159199237369,0.707105719237435,0.5735294117647058,0.121982210927573,0.7430025445292621,0.9273127753303964,0.8427299703264095,0.7075471698113207,0.1193181818181818,0.5119908641035401,0.7058823529411765,0.6511627906976745,0.5264900662251656,0.1227495908346972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303551356441,0.004652482844603,0.006939723831458,0.0093640186061627,0.0117440110627567,0.0139284841573674,0.0160637658114953,0.0183028286189683,0.0204008626416868,0.0226330497804256,0.0244547663723891,0.0265590337687946,0.0284767803131622,0.0305009995259979,0.0325227587061082,0.0347955605664104,0.0367253886010362,0.0390281887556455,0.0411027308192457,0.0432121932403411,0.0577174196918255,0.0721353703102585,0.0852785591334648,0.0974798758352186,0.10919352286513,0.1248704224756182,0.1354959199482167,0.1459369111368983,0.15537912463669,0.1640139002102192,0.1754784650346261,0.18586664935964,0.1960236233318469,0.2056675558665325,0.2145693761482019,0.2240067343796728,0.2321534219662212,0.2395833333333333,0.2465131586413518,0.2533040152087771,0.2596225018504811,0.2654419159435882,0.2708983820607437,0.2750098829617739,0.2786055152817748,0.2832224685883222,0.2874473167498343,0.2908866619188117,0.2946727943556217,0.2984151679763726,0.2956061992143357,0.2914370525100663,0.2878293177212339,0.2850937324116433,0.2816351958704777,0.2779078128107455,0.2742131610947049,0.27430441898527,0.2744957754156445,0.2744989953233636,0.2758434397064028,0.2762477639519569,0.2777337889648275,0.2792125458792125,0.2808749701171408,0.2831075118102061,0.2834496058079519,0.2877436715792109,0.2926479336529377,0.2976303317535545,0.3020502585503039,0.3058239611383916,0.3091384462151394,0.3141305987030613,0.3195628010374212,0.3234602726845322,0.3252684107061848,0.3255535607420706,0.3262119967132292,0.334597875569044,0.0,2.811228802097912,50.49550415248064,139.00297514612177,191.3508667090177,fqhc5_100Compliance_implementation,73 -100000,95676,48634,465.0382541076132,4857,49.51084911576571,3849,39.612860069400895,1472,15.071700321919812,77.38307130315455,79.76070264113727,63.34642469116329,65.09781299557599,77.19359071129894,79.57261730273989,63.27482579752861,65.02909812910099,0.189480591855613,188.08533839738573,0.0715988936346789,68.71486647500546,231.50468,162.98039566987862,241966.88824783644,170345.75036310096,544.2724,366.9722683824734,568252.5293699569,382940.5540700345,489.43663,240.19793041360128,507073.27856515744,247686.54310765295,2736.37617,1279.8957818251506,2818769.9632091643,1296601.656315868,920.48939,418.54450430104447,946534.9408420085,422010.27263673575,1434.7579,614.6868888987908,1468775.5968058866,614897.207264428,0.38187,100000,0,1052294,10998.494920356205,0,0.0,0,0.0,47336,494.1155566704293,0,0.0,44237,457.920481625486,1105431,0,39724,0,0,0,0,0,105,1.0974539069359086,0,0.0,0,0.0,0,0.0,0.04857,0.1271898813732422,0.3030677372863908,0.01472,0.3476199881493186,0.6523800118506814,23.111752500724684,4.116161572721085,0.3052740971680956,0.2764354377760457,0.2068069628474928,0.2114835022083658,11.366106408881365,6.152888728481679,15.796626790407748,11332.07020113314,44.09034760309343,13.00227191734373,13.218669962187183,8.93756806948401,8.9318376540785,0.5811899194595999,0.8298872180451128,0.6970212765957446,0.5552763819095478,0.1142506142506142,0.7467362924281984,0.9264069264069263,0.853035143769968,0.680628272251309,0.180327868852459,0.5107407407407407,0.7558139534883721,0.6403712296983759,0.515702479338843,0.0950871632329635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470060637964,0.0049439750369785,0.0070080425147817,0.0091799017019375,0.0114991612017691,0.0135386870527398,0.0158311076678423,0.0178219640906817,0.0201465763086075,0.0221528382044326,0.0244317541035709,0.0266470878173005,0.0286528236298376,0.0306638512643559,0.032392840563264,0.0343947333064624,0.0364016823088238,0.0382152383522402,0.0403498372487234,0.0424057360818725,0.0571962851143403,0.0710950586264656,0.0845791500120647,0.0974237644584647,0.1099313588005187,0.1255682659167318,0.1365481856826349,0.1469865679737102,0.1565154295958001,0.165216645952085,0.1768085381073288,0.1878973316611166,0.1986610296594972,0.2079257696805429,0.2162804254336277,0.2259383170115655,0.2346044330299815,0.2420669774564781,0.2489754214679003,0.255833667449453,0.2612750202475992,0.2664810091034612,0.2707659881827762,0.2758008611281018,0.2796475235490732,0.2833592266528569,0.2875896332077738,0.2909090909090909,0.294042994042994,0.2976510952757983,0.294678647332598,0.2909058433974966,0.2880528795443358,0.2842530476808771,0.2806458308622939,0.27677957030354,0.2728493561892725,0.2734074425762512,0.2728915559950219,0.2726447178647104,0.2730148687124328,0.2743513815621752,0.2758169119481167,0.2758490733351068,0.2784518032162908,0.2810277291000927,0.2821940928270042,0.2868585265902952,0.2911730989682843,0.2968866261993342,0.3008375360230547,0.3043887147335423,0.3094117647058823,0.3100231360549295,0.3117026158788435,0.3144341801385681,0.3179662021938926,0.3211311253147395,0.3253298153034301,0.3240875912408759,0.0,2.396190294120785,49.69996338663207,141.48386205550193,197.74550671619664,fqhc5_100Compliance_implementation,74 -100000,95703,48220,460.225907233838,4808,49.225207151290974,3813,39.36135753320168,1441,14.806223420373447,77.3960056150407,79.78207206755904,63.35197710932333,65.1137719592384,77.21619986402398,79.60182019662028,63.28464048813248,65.04809905047284,0.1798057510167297,180.25187093876127,0.0673366211908472,65.67290876556342,233.16612,163.94227445909337,243635.1211560766,171303.17174915454,541.48328,365.429576158068,565306.9391764103,381348.5430530579,490.01237,240.38864369312017,508665.04707271454,248653.55453473725,2717.25908,1274.791469238333,2808109.9129598867,1300876.4816550508,897.099,410.6346703808731,924129.839189994,415843.8633515733,1405.5076,597.8300780769986,1444540.986175982,604226.7282967328,0.37895,100000,0,1059846,11074.323688912573,0,0.0,0,0.0,47317,493.9134614379904,0,0.0,44159,458.04206764678224,1103083,0,39538,0,0,0,0,0,90,0.9404093915551236,0,0.0,0,0.0,0,0.0,0.04808,0.1268768966882174,0.2997088186356073,0.01441,0.3636182506475393,0.6363817493524606,22.70631782368972,4.019891362853667,0.3110411749278783,0.2808811959087333,0.2006294256490952,0.2074482035142932,11.150196147404971,6.0732310497306194,15.502687583032118,11222.943660766645,44.03776633350917,13.243221228580182,13.441305669516687,8.588289917201037,8.76494951821125,0.5832677681615526,0.8057889822595705,0.7048903878583473,0.5516339869281046,0.1302149178255373,0.7527993109388458,0.9232409381663113,0.859375,0.6770833333333334,0.2,0.5090497737556561,0.7142857142857143,0.6478060046189377,0.5095986038394416,0.1096563011456628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019044338867672,0.0044513394577274,0.0064757110087087,0.0088392176784353,0.0110471385266413,0.013409766627296,0.0155693995534121,0.0178970688827859,0.02012921957104,0.0222317754713504,0.0240926799261841,0.0261096337669538,0.0284468395828619,0.0303049031726411,0.0325123559334275,0.0344952345510554,0.0365755127408328,0.0387378036122067,0.0405915572057034,0.0427002126151665,0.0571541972613613,0.0708574896921241,0.0843244603863822,0.0967819934609602,0.1084106239460371,0.1230570769979064,0.1336939803765579,0.143775544959128,0.1535807743658211,0.1618285738796607,0.1732224962043308,0.1846664647862952,0.1952062236516145,0.2041811008993847,0.2121868369848406,0.2209223822119907,0.2299887386131769,0.2385144923467382,0.2460139511709018,0.2528907678244972,0.2587908093199312,0.264118360869971,0.2681973792940621,0.2720099469178901,0.2773739429623706,0.2807398946166034,0.2848809672192446,0.2885321914510857,0.2919201814994328,0.2946848480071464,0.2912830820770519,0.2886698158417197,0.285820497713436,0.2830970713103548,0.2806687874528372,0.2770272330822482,0.2733691626345569,0.2732041309889535,0.2739989122306071,0.2745460032307883,0.2751066485348634,0.2755954950359063,0.2766368336898062,0.2773192911033918,0.2782648053742436,0.2800051599587203,0.2809668523833643,0.2853231276642086,0.2904087722950933,0.294145401643534,0.3012347912614772,0.3037614582235802,0.3058926560740648,0.3109935776350586,0.3106741573033708,0.3144378698224852,0.3190909090909091,0.3221530427796746,0.328965328965329,0.3253150057273768,0.0,1.8713084910353657,50.94602724919017,146.47270717099985,186.9119818680229,fqhc5_100Compliance_implementation,75 -100000,95826,48475,461.9623066808591,4806,49.057667021476426,3767,38.76818400016697,1381,14.088034562644795,77.38566316619061,79.7065972708326,63.36611244363343,65.08418932249171,77.20528037223659,79.53033813040835,63.29686472183022,65.01884776074142,0.1803827939540241,176.25914042424995,0.0692477218032081,65.34156175028727,232.50194,163.59863457436023,242629.2864149605,170724.68283593204,545.97563,368.55498256974926,569242.5124705195,384093.75594280177,486.89957,239.04751120385467,505104.0844864651,247076.75896702427,2633.00526,1236.8728416313215,2712003.099367604,1255057.7835152482,839.46792,385.5395757814398,861570.6071421118,387869.999563207,1337.74214,580.4690830451161,1365887.4835639596,578370.5252020654,0.37964,100000,0,1056827,11028.603927952749,0,0.0,0,0.0,47638,496.5771293803352,0,0.0,43944,455.5235531066725,1103773,0,39604,0,0,0,0,0,98,1.022686953436437,0,0.0,0,0.0,0,0.0,0.04806,0.1265936150036877,0.2873491468997087,0.01381,0.3567438148443735,0.6432561851556265,23.17484657613531,4.04888004079815,0.3089992036103,0.2851075126095035,0.2123705866737457,0.1935226971064507,11.318255135030354,6.206065102771736,14.850019765915755,11264.251835499836,43.20066766213531,13.171547537651874,13.179469115552912,8.890470651023469,7.959180357907056,0.597557738253252,0.8109869646182495,0.7036082474226805,0.59375,0.1179698216735253,0.7586206896551724,0.9273504273504274,0.8680981595092024,0.7083333333333334,0.1551724137931034,0.525891829689298,0.7211221122112211,0.639618138424821,0.5575657894736842,0.1063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788733250281,0.0045314923512058,0.0068810831108991,0.009174405136854,0.0115545791122502,0.0136849607982893,0.0159924165978656,0.0182365547504847,0.0204509218756387,0.0225549290297491,0.0245034741437619,0.026481093730755,0.0285405960945529,0.0307153885743695,0.0326568912536864,0.0349945772865774,0.0369592434322845,0.0390858208955223,0.0411916183830706,0.0431004880282203,0.0578700323354542,0.0714883030543766,0.0844661517015857,0.0971927465277048,0.1092653843723007,0.1237286524508095,0.1343002129395188,0.1437955040654727,0.1539347654500074,0.1625271771144598,0.1730456945594545,0.1839157439913583,0.1948153455350745,0.2039361655678295,0.2129795389397151,0.2225305707272848,0.230550728512231,0.2393489761763021,0.2467686939973039,0.25318061794863,0.2589414604289129,0.2642638788416213,0.268407822218026,0.2727435658470141,0.2772148987422982,0.2817482234250156,0.2861060556954451,0.2889905350784942,0.2917354519191085,0.2942382773987459,0.2913892170550961,0.2886694101508916,0.2864944545837428,0.2841955140671593,0.2814948675030735,0.2782842396200772,0.2742289531449868,0.2747650391328552,0.2750882458264413,0.2752381800373965,0.2763889407111675,0.2779932662584418,0.2790541954383762,0.2799919664375613,0.2808100706289338,0.2811441671442714,0.2842967217309715,0.2889822010528954,0.2951847312204517,0.3000950043543662,0.301857725419121,0.3070281653066596,0.3117669079111554,0.3166165413533834,0.3166542195668409,0.3185455401270887,0.321645415907711,0.3247846123021438,0.3346938775510204,0.3374764595103578,0.0,2.0540969347332947,50.43696444480117,136.59997062021222,190.2560730021847,fqhc5_100Compliance_implementation,76 -100000,95763,48608,463.6863924480227,4805,48.76622495118156,3813,39.190501550703296,1442,14.692522164092605,77.37657405990127,79.72220678493542,63.3458979718325,65.07952081388511,77.19066378233809,79.5404001740795,63.27398224070268,65.01191828797344,0.1859102775631811,181.8066108559293,0.0719157311298204,67.60252591166704,231.99044,163.21501608133548,242254.77480864216,170436.4066302596,544.57718,367.44667170882553,568040.683771394,383073.0989096264,493.41179,242.6601520975936,511420.9036893164,250478.34436405852,2660.91186,1275.6524664598037,2735767.123001577,1289429.9268009393,873.57207,408.7492890088288,899210.8329939537,413910.8152603563,1394.75568,605.2973044956653,1423493.9381598325,602793.3402808895,0.38133,100000,0,1054502,11011.580673120096,0,0.0,0,0.0,47334,493.6248864383948,0,0.0,44661,462.5272808913672,1104703,0,39639,0,0,0,0,0,94,0.9815899668974448,0,0.0,0,0.0,0,0.0,0.04805,0.12600634620932,0.3001040582726327,0.01442,0.3669614147909968,0.6330385852090032,22.82405735105662,4.043549571975056,0.3244164699711513,0.2835038027799633,0.1982690794649882,0.1938106477838972,11.469450535064162,6.200563485079596,15.49323804713084,11340.818555123986,44.01055858253256,13.401125729984797,14.170688609031352,8.424557994648966,8.014186248867443,0.6147390506163126,0.8251618871415356,0.730800323362975,0.6018518518518519,0.1258457374830852,0.7819063004846527,0.9224489795918368,0.8860103626943006,0.7684210526315789,0.1627906976744186,0.534368932038835,0.7445008460236887,0.6603995299647474,0.5459363957597173,0.1146384479717813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0044703950369491,0.0066255402909961,0.0088991832256491,0.0111056870881132,0.0131770552234702,0.0154581884553027,0.0178257851104667,0.0198938856459379,0.0221617139756988,0.0240552645874117,0.026288236501745,0.0284768484250349,0.030566741161083,0.0326104898279206,0.0346991090070907,0.0367083626724102,0.0389227768787086,0.0410125792701944,0.0430951885023953,0.0576146291058251,0.0711260314372666,0.0845895796205053,0.0976342865550546,0.1101051832802849,0.125676532769556,0.1366836301950805,0.1472744490907736,0.157115700890664,0.1661769752080295,0.177772512358776,0.1887078274794953,0.1984116623150565,0.2070768961442514,0.2160439463660582,0.2255608263876574,0.2343378404028449,0.2417122409020322,0.248831192410694,0.2554616652926628,0.2608761032261049,0.2666658872495148,0.271937291622331,0.2761270859769674,0.2803709953504182,0.2837455047046652,0.2876666125345092,0.2901735278063394,0.2932916510573433,0.2960782764433207,0.2928833219219461,0.2901809600899999,0.2870881242190681,0.2843436671660712,0.2824558547090777,0.2781905561064917,0.2740473300014189,0.2735830555010786,0.2745925346217973,0.274851724260397,0.2760872404335902,0.2765777629277305,0.277574065586066,0.278596926897408,0.2802739268414899,0.2811400786261121,0.2833380401016662,0.2879419820717131,0.2926523796270526,0.2959990558243833,0.3007084517846667,0.302446724546172,0.3081084442233553,0.3119831604270034,0.313841598815692,0.3154448731439261,0.3207405177603853,0.3274091627172196,0.3294875234773276,0.3352017937219731,0.0,2.399013254303242,53.463966153064966,136.24553460751787,187.1755040481297,fqhc5_100Compliance_implementation,77 -100000,95756,48389,461.9136137683278,4731,48.14319729312001,3799,39.14115042399432,1439,14.672709804085384,77.3313489084019,79.69842585756955,63.31030609897547,65.0634859704809,77.143339749013,79.51455712420847,63.23885574643061,64.99648888569,0.1880091593889119,183.86873336108067,0.0714503525448577,66.9970847908985,234.09078,164.73381525618652,244465.22411128285,172034.31750295186,546.98832,368.8508251823413,570685.9309077238,384654.3247468371,487.56044,239.12798650183217,506263.5866159823,247486.84301152604,2702.21321,1269.537655593632,2784722.7014495176,1288689.103701764,869.12645,399.1368480661571,897461.7987384603,406641.79588345,1404.68952,603.1235323685027,1433626.3419524624,599081.2752301638,0.37956,100000,0,1064049,11112.055641421948,0,0.0,0,0.0,47698,497.5562889009566,0,0.0,44039,456.9844187309411,1091339,0,39121,0,0,0,0,0,82,0.8563432056476878,0,0.0,1,0.0104432098249718,0,0.0,0.04731,0.1246443250079038,0.3041640245191291,0.01439,0.3660423452768729,0.633957654723127,23.05652548008748,3.985714252848958,0.303764148460121,0.2777046591208212,0.2108449591997894,0.2076862332192682,11.13723658054111,6.024457324169354,15.416339224041392,11264.57987991285,43.555203967591694,12.88616434532528,13.19153502744813,8.864708815475224,8.612795779343063,0.5780468544353777,0.8066350710900474,0.7010398613518197,0.5755305867665418,0.0950570342205323,0.762532981530343,0.9267734553775744,0.8571428571428571,0.7440758293838863,0.1736526946107784,0.4992486851990984,0.7216828478964401,0.640625,0.5152542372881356,0.0739549839228295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316355788812,0.0046340894571929,0.0068510530322253,0.0092460881934566,0.011261673686138,0.0136163192145919,0.0156315322572422,0.0179911575808938,0.0202006771062402,0.0223180449433598,0.0246553987528716,0.0266810499820208,0.0286093587593006,0.0306100363816257,0.0327315517294769,0.0344560148082272,0.0363681550824289,0.0384272134822132,0.040594203501185,0.0423827677436826,0.0576549679520638,0.0713044934178857,0.0841533264796592,0.0968420388461821,0.1089858495539762,0.1239118707889531,0.1343839541547277,0.1443682225867615,0.1542975012290789,0.1633561901082745,0.1758657483752061,0.1874269005847953,0.1976179589348313,0.2069603485647975,0.2159513795609186,0.2245898004434589,0.2325765781862444,0.2397433732905622,0.2467009338371288,0.2532222769611493,0.2594602726410072,0.265461654628253,0.2710179612340647,0.2753012626626338,0.2791735577390797,0.2826850767428959,0.2863077288822712,0.289450585795881,0.2925954228134025,0.2951848531195612,0.2919363302431345,0.2884789715133368,0.2850978904021026,0.2824401072447891,0.2802403540189737,0.2766152156671344,0.2731712696737195,0.2724376776554383,0.272289525624447,0.2714014175830032,0.2713782367964803,0.2721944695747945,0.2722898091825681,0.2736935734934401,0.2743555406762638,0.275132823636128,0.2775594447114705,0.2811445707859553,0.2862835570469799,0.2916337181717539,0.2954566024074577,0.2994320572149768,0.303941132451983,0.3116023761185051,0.3134755703334257,0.3166589648798521,0.3238180196253345,0.3310573546625048,0.3328898350186269,0.3329633740288568,0.0,1.9949801946983017,49.51948172271708,140.23499508075108,194.57969394333836,fqhc5_100Compliance_implementation,78 -100000,95487,48466,464.05269827306336,4701,47.975117031637815,3720,38.34029763213841,1373,13.949542869710012,77.22623088476638,79.7128733886182,63.24095407219974,65.07605070017884,77.04795224396476,79.53980997464511,63.172893530612,65.0124681385629,0.1782786408016221,173.06341397309666,0.0680605415877408,63.58256161594511,231.36762,162.75239832513094,242302.0515881743,170443.9676452145,541.51517,365.2378401445107,566483.1757202551,381877.03261926566,482.61486,236.8913704208181,501266.4970100642,244860.8506905814,2600.28222,1218.736758219459,2678553.7821902456,1231911.5845432002,836.22729,379.0953649786005,858508.9802800382,380003.49732751696,1332.09452,571.4145463181902,1354791.018672699,565681.7566990043,0.38048,100000,0,1051671,11013.729617644289,0,0.0,0,0.0,47206,493.7321310754344,0,0.0,43602,452.58516866170265,1102764,0,39596,0,0,0,0,0,93,0.9634819399499408,0,0.0,1,0.0104726297820645,0,0.0,0.04701,0.1235544575273338,0.2920655179748989,0.01373,0.3587958222404259,0.6412041777595741,23.092364273172805,4.074456732153493,0.3239247311827957,0.282258064516129,0.1962365591397849,0.1975806451612903,11.495065886396675,6.218269724939857,14.738116748510487,11346.257041643568,42.61973629166908,12.68000541184401,13.722211160386246,8.239202921324415,7.978316798114404,0.5922043010752688,0.7914285714285715,0.7219917012448133,0.5904109589041096,0.0965986394557823,0.7538048343777977,0.8978622327790974,0.882183908045977,0.7230769230769231,0.1045751633986928,0.5228582404917403,0.7201907790143084,0.6569428238039673,0.5420560747663551,0.0945017182130584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024927800577595,0.0046963595605911,0.0069648912624119,0.0091713268937468,0.011300700439811,0.0132905264230749,0.0153470953785242,0.0176159238141949,0.0198676174204834,0.021895043134362,0.02411110198719,0.0262595105901706,0.0281210099262737,0.0303746029126614,0.0321747396263845,0.0342189182473287,0.0362663125790991,0.0382016632016632,0.0405375839974996,0.0426138440172502,0.0570250269529083,0.0703674171685166,0.0837487118009548,0.0967707938113907,0.1085748103058356,0.1255895788949304,0.136454977512679,0.1470045345425446,0.1563805402626336,0.1652083243754568,0.1769310501198471,0.188797535631386,0.1986328252763786,0.2086558067132928,0.2171006178287731,0.2256974922500861,0.2342084363359769,0.2429239700163444,0.2498919595132491,0.2554614713846436,0.2616049897978111,0.2670284716280051,0.2718906033184292,0.2752399370578131,0.2798148373736143,0.283323445070701,0.2868514891266134,0.2902225115851556,0.2937014824622894,0.2969749854566608,0.2939652380438303,0.2906414792989026,0.2891293017228021,0.2853823283202956,0.2831332461666468,0.2797340971403189,0.2761242495762779,0.275528472644252,0.2751700796553964,0.2757303731729516,0.275633710597699,0.2765000591739319,0.2781746031746032,0.2796445988375977,0.2799933095983369,0.2813738441215324,0.2825933157879842,0.2872131147540984,0.2918192918192918,0.2967474866942637,0.3047394866687791,0.3085666175541991,0.3144064111325091,0.3184980178023786,0.3194648093841642,0.3221120590269771,0.3211009174311927,0.3227364185110664,0.325821341297855,0.3258088788562829,0.0,2.3544799115575943,48.32249990097453,135.0034357592899,192.1989087006144,fqhc5_100Compliance_implementation,79 -100000,95697,48919,465.3750901282172,4923,50.10606393094872,3961,40.69093075018026,1574,15.977512356709196,77.36399481233721,79.7467517563737,63.33329461681414,65.09646708814667,77.16043213808294,79.55102346323056,63.25516513777378,65.02469325730598,0.2035626742542717,195.72829314313367,0.0781294790403634,71.77383084068367,231.86108,163.13539688176837,242286.67565336425,170470.753400596,545.06153,367.7180003339542,568871.1871845513,383553.52200104576,492.67976,241.89743529405212,510621.8272255139,249631.60330453815,2844.392,1329.3730745261907,2924762.103305224,1341822.8951441436,922.47051,421.6837033159731,946425.1021453128,423193.9432110722,1532.45352,655.3790270039221,1557571.6480140444,646513.7765192885,0.38357,100000,0,1053914,11013.030711516558,0,0.0,0,0.0,47475,495.36558094820106,0,0.0,44511,460.9130902745122,1104280,0,39612,0,0,0,0,0,89,0.930018704870581,0,0.0,1,0.0104496483693323,0,0.0,0.04923,0.1283468467294105,0.3197237456835263,0.01574,0.3586744639376218,0.6413255360623782,23.256023926140436,4.154639120409024,0.3037111840444332,0.2711436505932845,0.2092905831860641,0.2158545821762181,11.431341781451524,6.183428737255855,16.74491638111357,11473.00687838857,45.25374256027552,13.083088384830456,13.676620205151496,9.21283306795005,9.28120090234351,0.5768745266346882,0.7905027932960894,0.6824605153782212,0.6079613992762364,0.1298245614035087,0.7556866048862679,0.9196428571428572,0.8377581120943953,0.8047619047619048,0.1684210526315789,0.5003604902667628,0.6980830670926518,0.6215277777777778,0.5411954765751211,0.118796992481203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024315863061164,0.0044520165911142,0.0069235767075448,0.009390816513202,0.0114165937442764,0.0140595390916315,0.0162593333061324,0.0184239552269292,0.020782833706647,0.0231007894817681,0.0256581173792212,0.0278941746775121,0.0299838508933438,0.0321583497336451,0.034335782694848,0.0365499343445309,0.0386906303413269,0.0409285721698162,0.0428803093619409,0.0447611902975743,0.0596983749007812,0.0736185401903007,0.0869004154601535,0.0996361188818543,0.1119052136698079,0.1275416873737747,0.1380319628408114,0.1477344057536199,0.1568686070597279,0.1660020581425263,0.1771119219054384,0.1878610840636157,0.1985882711215522,0.2080958995504708,0.2175242873331793,0.2266340393963216,0.2349122063318533,0.2428359350398128,0.2500482236670411,0.2560474407848794,0.2625036137612027,0.2679947158606016,0.2737266874940831,0.2776200232438326,0.2817542709357811,0.2858303582420288,0.2906310946641996,0.2937949251987503,0.2976502654592898,0.3015488676290613,0.2989218726923645,0.2952225454146314,0.2911207538161239,0.2892586989409985,0.2866044997039668,0.2831746515347703,0.2799307686255999,0.2794642420687295,0.2787538581555472,0.2793144438727534,0.2785314945956019,0.2789276097254162,0.2804964391320644,0.2816076597639724,0.2834145409381867,0.2853767461182946,0.2850205878176913,0.2904495610609516,0.2937827453719874,0.2983521248915872,0.3035093265886816,0.307987590051007,0.3120060218291306,0.3132172987763167,0.3145601808250141,0.3164271291127212,0.3214780600461894,0.3272133822929416,0.3301991150442478,0.3382352941176471,0.0,2.725197933048658,51.08868643975759,141.44243866335674,206.6671190221359,fqhc5_100Compliance_implementation,80 -100000,95659,48575,463.6155510720371,4878,49.780992901870185,3852,39.57808465486781,1436,14.56214261073187,77.31725194233033,79.72619026060356,63.30264576078415,65.08526493251533,77.13290551153224,79.54833505180358,63.23232556457504,65.02068010541683,0.1843464307980866,177.85520879998273,0.0703201962091171,64.58482709849989,230.84578,162.41882108251804,241321.31843318453,169789.16808084756,540.20539,364.5348581209976,564040.4039348101,380398.7858363955,490.35376,241.0835459226785,508440.0108719514,248860.46565481368,2672.24741,1252.2457441991344,2746449.774720622,1262112.4829301625,884.52736,404.9612859939088,905018.8900155762,403729.2886038808,1387.36102,594.0327283974752,1408235.5659164323,582511.0576502349,0.38061,100000,0,1049299,10969.150837872025,0,0.0,0,0.0,47035,490.983597988689,0,0.0,44235,458.2945671604344,1110484,0,39866,0,0,0,0,0,102,1.0662875422072151,0,0.0,1,0.010453799433404,0,0.0,0.04878,0.128162686214235,0.2943829438294383,0.01436,0.3591756624141315,0.6408243375858685,23.32063242268536,3.9971714250630095,0.3063343717549325,0.2871235721703011,0.2113187954309449,0.1952232606438214,11.67548919429872,6.485712653969318,15.281215843721824,11349.886121825875,44.11279728500463,13.678821568624295,13.21437101267651,9.089401323147367,8.130203380556443,0.589563862928349,0.8119349005424955,0.6847457627118644,0.581081081081081,0.1223404255319148,0.7768166089965398,0.9190871369294604,0.8867924528301887,0.7303921568627451,0.1578947368421052,0.509272997032641,0.7291666666666666,0.6102088167053364,0.5311475409836065,0.1133333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026745823497826,0.0049282563504537,0.0069415549489024,0.0092267983619384,0.0116396194739787,0.013975756341041,0.0159447493522126,0.0182044785877737,0.0201551022078533,0.0224676508856946,0.0246537396121883,0.0269323249553011,0.0289869990838626,0.0308266490710765,0.0328021234624004,0.0350232798758406,0.0370593052546466,0.0389644107048279,0.0409509441814493,0.0432507375246275,0.0585912196752826,0.0725498204056841,0.0854224405811707,0.0975915150622376,0.1099330062773645,0.1251838916230089,0.1358546241946269,0.1460570040899795,0.155673838458332,0.1642992017852544,0.1752881611547991,0.1864858135683124,0.1966697502312673,0.2062828371278459,0.215812836639607,0.2245201046238418,0.2331004932044901,0.2407661508007918,0.2482475442934597,0.2547679556746113,0.2607810475661669,0.2658926420896325,0.2722227481421877,0.2762417040036418,0.2803551043210026,0.2842603316986619,0.2882693582479707,0.2912690445633251,0.2948469334988106,0.2975908372827804,0.2945773910240915,0.2917141171466597,0.2887157894736842,0.2867366480913502,0.2841379310344827,0.2808329129018942,0.2768036111681055,0.2765598926806923,0.2763750743857859,0.2763241976711161,0.2774381151207873,0.2788138424351996,0.2796477535944575,0.2801023814823058,0.2800393408016888,0.280906753914466,0.2814598622878354,0.2849740932642487,0.2901413365904728,0.2946347616982694,0.2973254759746147,0.3006594566077552,0.3047535542055489,0.3058395819132015,0.309877581534436,0.3125292740046838,0.3138508371385083,0.3173869346733668,0.321609379163336,0.3266592510196515,0.0,2.6850535780411664,49.63421694748048,142.2496008743121,195.89767554478004,fqhc5_100Compliance_implementation,81 -100000,95846,48823,465.611501784112,4726,48.004089894205286,3744,38.384491788911376,1422,14.377230140016277,77.4717338221379,79.75834045256288,63.40399372213196,65.09063935454058,77.28598941727009,79.5783546075406,63.33299860103424,65.02452671461278,0.1857444048678189,179.98584502227288,0.0709951210977237,66.11263992780891,234.058,164.56859477820538,244201.69855810364,171700.6312127219,542.76246,366.672003752182,565581.5787826305,381860.7012444045,491.55608,241.0559923645785,508735.471485508,248300.78291541463,2632.85984,1247.479294592909,2703857.33363938,1258537.6650459466,868.61134,406.41369522743344,886466.7800429857,404485.0150997621,1383.34196,596.9448761502587,1401673.6222690565,588386.5105472184,0.38277,100000,0,1063900,11100.077207186529,0,0.0,0,0.0,47339,493.176554055464,0,0.0,44343,458.55852096070777,1097923,0,39397,0,0,0,0,0,102,1.0537737620766645,0,0.0,1,0.0104334035849174,0,0.0,0.04726,0.1234684013898685,0.3008887008040626,0.01422,0.3653457339264052,0.6346542660735949,23.286097236521503,4.074911139944162,0.313568376068376,0.2804487179487179,0.2045940170940171,0.2013888888888889,11.671987861889797,6.284464778572627,15.1415484162155,11352.791428996356,43.02946699042079,12.929535833563769,13.289541255488032,8.566477335681721,8.24391256568726,0.5908119658119658,0.82,0.7078364565587735,0.5626631853785901,0.1180371352785145,0.7608510638297873,0.9242424242424242,0.8950617283950617,0.7095238095238096,0.1564245810055866,0.5130400934215648,0.7380952380952381,0.6364705882352941,0.5071942446043165,0.1060869565217391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023889057596922,0.0048525493612667,0.0071285160923969,0.0091149005278116,0.0112694089911389,0.0135928454424288,0.0156873930405019,0.0178194392027662,0.0199844780752813,0.0222633559682565,0.0243447802619854,0.0265111890550325,0.0284249671268902,0.0305381212058853,0.032532393233757,0.0348926063610078,0.0369175071114559,0.0387604933153694,0.0408472640431938,0.0429678963525677,0.057276026026026,0.0713867575421797,0.0851384915270223,0.0973846525654362,0.1092700922266139,0.1252867851516657,0.1363915929672753,0.1470700880888548,0.15592637670019,0.1647428271331039,0.1765003389684598,0.1879971468096143,0.1988620322713749,0.207369800196528,0.2154993465057277,0.2245755217545101,0.2322190413598743,0.2402541992275217,0.2477465235312769,0.2545444152280782,0.2606582547360401,0.2657226835868246,0.2710605845964962,0.2756291469902564,0.279585798816568,0.2840027061934928,0.2879079174053082,0.2911940109123208,0.2947350753976451,0.2972877032907797,0.2955021201223767,0.2915776792070533,0.2884450984514049,0.2863053253077818,0.283895363436286,0.2798563668730885,0.276178648346984,0.2770228435493857,0.2775820005421523,0.2777954706298655,0.2784330479038579,0.2788252569750367,0.2804921059729051,0.2816268726073775,0.282146930241399,0.284672849046883,0.2864287721270019,0.2888248776559499,0.2951050875442881,0.2989337691649155,0.3037433155080214,0.3059038662486938,0.3088865428802086,0.313971031985516,0.314691854484242,0.3188184064964105,0.3149677225641795,0.316778789077958,0.3218298555377207,0.3227611940298507,0.0,2.601355027739907,50.52486201519511,135.4023791264456,186.4839825728097,fqhc5_100Compliance_implementation,82 -100000,95739,48369,461.5987215241437,4752,48.31886691943722,3740,38.46917139305821,1363,13.871045237572984,77.34438518034166,79.69852615943643,63.33412346583962,65.07295211500734,77.16645800893556,79.52423327387521,63.26600844686891,65.00864763662715,0.1779271714060968,174.29288556121492,0.0681150189707082,64.30447838019404,231.9867,163.21379087873316,242311.5971547645,170477.8521592383,541.72378,366.0783249860274,565209.3190862658,381751.3548929656,485.38965,238.4772792581613,503282.75833255,246215.878929892,2568.17298,1210.8718632933774,2641533.836785427,1224209.301346661,846.41245,386.1186581204053,869832.2522691903,389102.5286275971,1319.28788,569.9742575375647,1343494.9811466592,565426.4825056335,0.37911,100000,0,1054485,11014.163507034751,0,0.0,0,0.0,47217,492.54744670406,0,0.0,43909,454.98699589508976,1105585,0,39648,0,0,0,0,0,78,0.8147150064237144,0,0.0,0,0.0,0,0.0,0.04752,0.125346205586769,0.2868265993265993,0.01363,0.3652209160924199,0.6347790839075801,23.036706580375032,3.945028043511226,0.3165775401069519,0.2911764705882353,0.2024064171122994,0.1898395721925133,11.152507373153298,6.062568910283641,14.703453103295224,11281.600485773008,42.79714092039579,13.242169796120557,13.460926305282674,8.391235016329253,7.702809802663314,0.5927807486631016,0.8044077134986226,0.7179054054054054,0.5587846763540291,0.0957746478873239,0.7443037974683544,0.9067796610169492,0.8711484593837535,0.6515151515151515,0.0886075949367088,0.5225048923679061,0.7260940032414911,0.6517533252720678,0.5259391771019678,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020157205947895,0.0043190412944957,0.0070211751336762,0.009252206412561,0.0114789434085039,0.0135697779768509,0.0156437903834002,0.0181743966528904,0.0201796241992009,0.0223472833316279,0.0242847774407738,0.0264494873294947,0.0285837668880709,0.0306382014603351,0.0325259444180816,0.0347015542328042,0.0365907938183813,0.0385987472518355,0.0409162241090822,0.0426015040726621,0.0568245881444052,0.0703663781826553,0.0837214180826515,0.0966853152736297,0.1085686568108484,0.1234681469733016,0.134319652137024,0.1446322754981542,0.1543776833201614,0.1632289879931389,0.1753307568923384,0.1865818567317886,0.197564555585757,0.2064269319051262,0.2145551315746066,0.2239797217271952,0.2323518582569984,0.2396190561858394,0.2462255697092752,0.2533626383689916,0.2592057177221631,0.2639629525680606,0.2690869945820616,0.2733191060809514,0.2778688624136214,0.2819042686986757,0.2854065967091587,0.2890612068197155,0.2931771103055411,0.2955498694241473,0.2928226576473594,0.289764688105279,0.2868895107648606,0.2835528118734765,0.2813667912439936,0.2779459889286479,0.2753593396688857,0.2759032791447702,0.2763043589350503,0.2762755283569345,0.2760814012049766,0.277297212283254,0.2792597532510837,0.2804994769292407,0.2816951993295822,0.2827843380981976,0.2851244343891402,0.2891054472763618,0.2950990978438817,0.2984115722675495,0.3037227330088336,0.3052238413383134,0.3071077057247866,0.3098370458962475,0.3117652503934092,0.3137369033760186,0.3154716981132075,0.3205518360722256,0.3234649122807017,0.3206751054852321,0.0,2.218561720882407,51.302986366514354,126.59799004244124,193.9327191476572,fqhc5_100Compliance_implementation,83 -100000,95668,48221,459.9239034996028,4765,48.60559434711711,3738,38.4663628381486,1391,14.132207216624158,77.28108161739658,79.66840156676155,63.29287913429015,65.0557540669492,77.10393607447386,79.49670725338605,63.22522374029188,64.99287779303887,0.177145542922716,171.69431337549668,0.0676553939982724,62.87627391033368,231.46552,162.82903805000237,241946.18890329052,170201.7509010352,542.54065,366.1109683751081,566457.1225488146,382040.3185014308,481.12436,235.8104302016971,499431.1995651628,243819.6814347647,2615.22994,1219.6035906045406,2691775.494418196,1233146.3223431737,859.13496,392.5913859255238,880006.6584437848,392573.7780222423,1348.57974,577.472859673815,1370931.91035665,570006.5198395955,0.37839,100000,0,1052116,10997.55404105866,0,0.0,0,0.0,47261,493.3206505832671,0,0.0,43367,449.763766358657,1105696,0,39623,0,0,0,0,0,102,1.0661872308399882,0,0.0,1,0.0104528159886273,0,0.0,0.04765,0.1259282750601231,0.2919202518363064,0.01391,0.3519451723442854,0.6480548276557145,23.558911419666885,4.083376782013954,0.3063135366506153,0.2867843766720171,0.2075976457998929,0.1993044408774746,11.259873939837323,6.114821756892085,14.905792876100342,11277.299219875444,42.88343695313558,13.25109159723548,12.991616425251673,8.468623483389427,8.172105447259,0.5925628678437668,0.8106343283582089,0.7117903930131004,0.5631443298969072,0.1261744966442953,0.7735682819383259,0.9266247379454928,0.8885350318471338,0.7514792899408284,0.1714285714285714,0.5136381098732232,0.7176470588235294,0.6450060168471721,0.5107084019769358,0.1122807017543859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894190345945,0.0043694684658198,0.0065660614794442,0.0087167660594731,0.0111262534833106,0.0130442751822736,0.0153047698676509,0.0175501286396863,0.0199131101456682,0.0221189572052938,0.0244745206603096,0.0266132758355151,0.0285173644319665,0.0304672608314873,0.0323253173702136,0.034338003412087,0.0365666694290213,0.0388395869012403,0.0410689579844171,0.0430699313090882,0.0570879304580407,0.0713395671249515,0.084467864003275,0.0972211992718931,0.1091979489776539,0.1243361614793813,0.1352780077702057,0.1456946589275254,0.1551274375641464,0.1635692122695698,0.1748363369678929,0.186221918787997,0.1962733866225252,0.2053435532439091,0.2145273061795586,0.223709453839756,0.231316845293309,0.2390917486991192,0.2461001851914971,0.2529092764357207,0.2590203050977031,0.2644137284760454,0.2702465623518255,0.2746095953715596,0.2790774019405199,0.2828099764520225,0.2858949318910256,0.2895346764129078,0.2926898803892855,0.2952125551533726,0.2919458111478061,0.2900920008814455,0.2870329856455278,0.2835956941952659,0.2808636005178032,0.2774297311786781,0.2746093502878471,0.2749614463365817,0.2750981396142686,0.2755925141117185,0.2763025021505778,0.2777459445575073,0.2782712531947878,0.2791113495149971,0.2802075077455148,0.2803352709155076,0.2806574315885091,0.2858708243323627,0.2907280387173148,0.2959071231798504,0.3004826124216319,0.3048895899053628,0.3077354959451029,0.309843316590449,0.3124017386479238,0.3125936167761263,0.3177443609022556,0.3230464886251236,0.3315593400745077,0.3250188964474679,0.0,2.1512844673999028,49.52826898307834,133.1705058877288,194.14471137671083,fqhc5_100Compliance_implementation,84 -100000,95741,48797,466.13258687500655,4789,48.90276892867215,3769,38.93838585350059,1426,14.633229233034958,77.3612597271838,79.72579353378332,63.34108899169471,65.08874488361296,77.17652385653051,79.54171558611966,63.27056142163567,65.0201623856041,0.1847358706532986,184.0779476636527,0.0705275700590419,68.5824980088654,232.3926,163.52915269363575,242730.4916389008,170803.681488219,546.84525,369.352766696477,570678.5076404049,385290.3423783719,490.5458,241.20417524356287,509161.95778193255,249608.36486447352,2638.25049,1243.6563815171005,2726868.029370907,1270235.9611003643,857.11622,391.6374213071044,883553.2634921297,397367.827061661,1383.84716,597.2803500677875,1421036.00338413,602938.2548835423,0.38192,100000,0,1056330,11033.20416540458,0,0.0,0,0.0,47566,496.3704160182158,0,0.0,44338,459.95968289447575,1101216,0,39480,0,0,0,0,0,103,1.0653742910560784,0,0.0,0,0.0,0,0.0,0.04789,0.1253927524088814,0.2977657130925036,0.01426,0.3476,0.6524,23.342291631874083,3.9893936689992975,0.2984876625099495,0.2931812151764393,0.2048288670734943,0.2035022552401167,11.224600539351636,6.101392293284642,15.3278750946377,11375.742751957268,43.360757850700026,13.59700859695938,12.839003540106576,8.547803218991833,8.376942494642243,0.5956487131865216,0.8244343891402715,0.7128888888888889,0.5764248704663213,0.1134289439374185,0.748135874067937,0.9267782426778244,0.8510028653295129,0.6699507389162561,0.1525423728813559,0.5238095238095238,0.7464114832535885,0.6507731958762887,0.5430579964850615,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025121301445487,0.0048057425581961,0.0070731261797,0.0092552143125641,0.0116037831790908,0.01381845583593,0.0160504150266147,0.0180936335324449,0.0202132771683008,0.0221949221949221,0.0245762972532373,0.0265803933651722,0.0286739825775729,0.0309457830704727,0.0330939260726889,0.0350567048144817,0.037186616546025,0.0390071289964406,0.0407615759756262,0.0427597991206318,0.0584175576344804,0.072345146637081,0.0854697268493265,0.0987340174966352,0.111225877169869,0.1272237196765498,0.1380930163510275,0.1475751707701147,0.1570200267022697,0.1656179317589803,0.1772856466129796,0.1883031194565828,0.1981714608744809,0.207109129066107,0.2155726802027108,0.2251817588278907,0.2342460866075012,0.2418198570722279,0.2495211325074522,0.2549351704564961,0.2607765845538511,0.2658567924307908,0.2711732160590154,0.2758179163774741,0.2797648627355917,0.2837912594504886,0.2876190713991435,0.2906966406299612,0.2941937152463468,0.297046146545929,0.2932568264889271,0.2902159299805196,0.2879032597856771,0.2854754079455688,0.2829886591060707,0.2799975552737329,0.276769939424533,0.2766169642273232,0.2777938302031104,0.2789932993263779,0.2792159349472192,0.2803618589617249,0.2806380224644035,0.2807927847678432,0.2809446254071661,0.2821086012840841,0.2837691870380898,0.288672732977722,0.2937825463949953,0.2992054393801636,0.3026238540396513,0.3064659919240652,0.3091247672253259,0.3143285821455364,0.3189798558491961,0.3231324179660228,0.3262144683411039,0.3280845126569663,0.3346196251378169,0.3274301456119638,0.0,1.685481125925814,52.999107001957405,130.29947270896986,191.75612808626693,fqhc5_100Compliance_implementation,85 -100000,95648,48261,459.7377885580462,4881,49.88081298093008,3871,39.84401137504182,1465,14.86701237872198,77.2430810454354,79.64741397813582,63.27207635196621,65.04996007293437,77.05154060968292,79.46209061363038,63.199068466990525,64.98261101923922,0.1915404357524863,185.323364505436,0.0730078849756878,67.34905369515332,230.58266,162.30235417233644,241074.2096018736,169687.13843711987,543.34136,365.76445681478464,567450.6733021077,381793.9913168959,482.14567,236.0893989309049,500597.3151555704,244136.7639061901,2729.00272,1260.611809436718,2810452.774757444,1275249.8321310626,907.57257,408.8761748591532,934298.8457678154,412911.6812261127,1424.2595,612.1757848405099,1447418.1791569088,602936.5627208245,0.38021,100000,0,1048103,10957.91861826698,0,0.0,0,0.0,47305,493.9360990297759,0,0.0,43603,452.3879223820676,1107819,0,39772,0,0,0,0,0,106,1.0977751756440282,0,0.0,2,0.0209100033456005,0,0.0,0.04881,0.1283764235554036,0.3001434132349928,0.01465,0.3622418879056047,0.6377581120943953,23.279652068416947,4.094007100206706,0.3079307672436063,0.2792560061999483,0.2045982950142082,0.2082149315422371,11.004186337992612,5.806103861278808,15.809099826287556,11357.517399263008,44.35989522468165,13.186231570013282,13.383996346827493,8.917556300822863,8.872111007018006,0.5846034616378197,0.7964847363552267,0.714765100671141,0.5757575757575758,0.1166253101736972,0.7444146559428061,0.931350114416476,0.8371335504885994,0.698019801980198,0.1618497109826589,0.5196220930232558,0.7049689440993789,0.672316384180791,0.5338983050847458,0.1042654028436018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021992054483541,0.0046152597731929,0.0070454706963239,0.0092461821396275,0.0115345885081321,0.0136463160038698,0.0159979607443283,0.0180526057833687,0.0202981839005235,0.0228357261351301,0.0248179673879602,0.0267008985879332,0.0288579215303131,0.0311134921289046,0.0331963913375585,0.0355200297809856,0.0375009064445618,0.0396915188441298,0.0417117416992593,0.0437452433824372,0.0586864517477402,0.0720450831692294,0.0848740642749903,0.0975527603810325,0.1099005510863368,0.1256325562683944,0.1361081896505933,0.1463492638828182,0.1553572574950247,0.1645759945012458,0.1760085452564116,0.1874864501582621,0.198061424526247,0.206403784452645,0.215730138963887,0.2248388778577688,0.2333206635961185,0.2414970586246534,0.2491702659695385,0.2556091856505738,0.2611350574712643,0.2670311530491588,0.2715151802207171,0.2760907629944112,0.2797081179689875,0.2837522674267945,0.2874436090225564,0.2908233494774407,0.2945313006811547,0.2968167517119213,0.2940574046624444,0.2916798568577524,0.2886855241264559,0.2858010586295664,0.2832363923062047,0.2796071280817614,0.275801416641577,0.2761594952930159,0.2763849989753398,0.2759341287418733,0.2770544090056285,0.278391541933951,0.2790541814145391,0.2797273133661153,0.28092072102345,0.2818499582637729,0.2826807659331237,0.288041256564259,0.2919915700737618,0.2953757916119011,0.299556652497829,0.3036131774707757,0.304938659955961,0.3051903640094232,0.313042657606644,0.3158205430932703,0.3183849591616582,0.3174054493696625,0.3268652637332604,0.3412213740458015,0.0,2.4882310834562684,48.47323570751098,144.76279373485252,202.0124062557257,fqhc5_100Compliance_implementation,86 -100000,95823,48523,463.11428362710416,4803,48.98615155025412,3831,39.44773175542407,1475,15.090322782630476,77.44904619750217,79.77465786276896,63.38601454967061,65.10664634083085,77.25410910427303,79.58107040415966,63.311859869995295,65.03491067015538,0.194937093229143,193.5874586093007,0.0741546796753169,71.73567067546571,232.82358,163.73036639493608,242972.3135364161,170867.2859302423,546.38408,368.7149806643978,569665.341306367,384252.06856015546,486.97076,238.68794478103413,504969.5480208301,246634.03960553865,2723.96491,1283.0724794551302,2806728.0715485844,1303096.2481388918,867.55784,399.05159440971886,890461.820231051,401569.6039028689,1429.33012,618.4847626635037,1463055.675568496,621034.4002557361,0.37965,100000,0,1058289,11044.196069837097,0,0.0,0,0.0,47600,496.1856756728552,0,0.0,43972,455.5169426964299,1105642,0,39656,0,0,0,0,0,93,0.9705394320778936,0,0.0,0,0.0,0,0.0,0.04803,0.1265112603713947,0.3070997293358318,0.01475,0.3621654015181781,0.6378345984818218,23.140396746272444,4.112276881806698,0.30409814669799,0.2777342730357608,0.2158705298877577,0.2022970503784912,11.464811398432252,6.233631866976645,15.887077837810924,11265.284772051547,43.887132913921086,12.987507508800794,13.164779195209288,9.238528190357693,8.4963180195533,0.5831375619942574,0.8045112781954887,0.7012875536480687,0.5828295042321644,0.1019354838709677,0.7449152542372881,0.909706546275395,0.8819875776397516,0.75,0.1122994652406417,0.5111278762731045,0.7294685990338164,0.6322657176749703,0.5191986644407346,0.0986394557823129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021672422348926,0.0045513060930737,0.0067983724493419,0.0088580977438262,0.0110741633362823,0.0130939895940455,0.0153135609636736,0.0175854009532654,0.0196116504854368,0.0216614994218825,0.0236511758979351,0.0259031198686371,0.0278474506578947,0.0298681108239727,0.0320438114293375,0.0342579678702412,0.0364106810184226,0.0384894548018498,0.0405805533334025,0.0425762260183421,0.0569851982433997,0.0710387655250282,0.0849088241458813,0.0977285621230905,0.1097459457750708,0.1253183686841465,0.1358928968931195,0.145775509118945,0.1544796978684362,0.1632738292837026,0.1754091661827644,0.1866344014000821,0.1968733036586689,0.2059757521525148,0.2146268099634439,0.2239182094501243,0.2323128835039032,0.2389877111273217,0.2464488234428586,0.2532612917228302,0.2587253589400304,0.2640769903762029,0.2696672958942898,0.2742850997215683,0.2783410249887956,0.2821265773016009,0.2860189307493733,0.2891280647042418,0.2919762641898865,0.2945336014615617,0.2910129535763134,0.2877639674948268,0.2853436185133239,0.2821582733812949,0.279035403983687,0.2752857729950227,0.272982996511299,0.2739167983835487,0.2750330385280065,0.2764457980663668,0.2771520963425513,0.2771424095253015,0.2783918553916476,0.2783990060347888,0.2805206570195723,0.2824272094820922,0.2843203609701071,0.2877044592325393,0.2922627127492951,0.2956907030545426,0.2990582616140224,0.3026378139314484,0.3091669788934682,0.3146058965102286,0.3174869500372856,0.3175920514319111,0.3203868822729333,0.3189863234111021,0.3218453188602442,0.3267215568862275,0.0,2.033288616617591,51.37155618484484,139.7117010564729,191.6141752777797,fqhc5_100Compliance_implementation,87 -100000,95804,48778,465.0745271596176,4816,49.00630453843263,3885,39.914826103294224,1457,14.76973821552336,77.3497797498425,79.68241464636188,63.33168066437421,65.05956973384647,77.15641096185148,79.49321486953929,63.25817693766497,64.9900989187084,0.1933687879910195,189.1997768225906,0.0735037267092408,69.47081513807518,232.5037,163.62456727663272,242686.61016241493,170790.73971716492,540.60682,364.3269021814449,563643.3134315895,379643.2937804736,492.39667,242.18822904273657,509560.5611456724,249477.39927655284,2719.91814,1273.473004953842,2795639.7227673163,1285913.7962432073,895.52735,407.4801262558945,917722.0366581772,408499.0066489066,1409.5609,609.350697550335,1430267.3583566449,603537.6929249488,0.38216,100000,0,1056835,11031.209552837045,0,0.0,0,0.0,47094,490.88764560978666,0,0.0,44381,458.9683103001962,1103582,0,39601,0,0,0,0,0,93,0.9602939334474552,0,0.0,1,0.0104379775374723,0,0.0,0.04816,0.1260205149675528,0.3025332225913621,0.01457,0.3695695298551875,0.6304304701448126,23.35138730765313,3.9939411399421503,0.3181467181467181,0.2787644787644787,0.2041184041184041,0.1989703989703989,11.45777953336976,6.420767750012554,15.651209968686665,11361.127293533018,44.46101751005115,13.269204722945966,13.888465224924731,8.85693784140071,8.446409720779743,0.57992277992278,0.8088642659279779,0.68042071197411,0.5573770491803278,0.1216041397153945,0.7527993109388458,0.9046563192904656,0.8652694610778443,0.7164179104477612,0.1885714285714285,0.5062408223201175,0.740506329113924,0.6119733924611973,0.5033783783783784,0.1020066889632107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.0043902785241363,0.0064241784561674,0.0088794968962399,0.0108635947512969,0.0130034112316073,0.0153752039151712,0.0173534906035952,0.0196755828572012,0.0217504785105272,0.0239259464280222,0.0259253555110631,0.0280602539715181,0.0302331328775022,0.0322667161808091,0.0345636404968071,0.0366747406993354,0.0387411963613355,0.0411337496233648,0.0433234421364985,0.0581944893636999,0.0720455068281155,0.085703804632638,0.0978247162673392,0.1096623907750361,0.125604017975152,0.1360290217875554,0.1462355520551735,0.1563931939801117,0.165846124143257,0.17775790358382,0.1885491639157963,0.1986359483096201,0.2073221391403209,0.2162251364196444,0.2254318607408392,0.2337607266802807,0.2408740244259013,0.2489278663974042,0.2547221649838588,0.2602711205700009,0.2664804012111151,0.2716961941481183,0.2763099613326469,0.2810478929295135,0.2847068379855265,0.2884322298563397,0.2919747909837107,0.2952462216706098,0.298377423649281,0.2950341060449096,0.2920839753466872,0.2890450110521351,0.2864145759525703,0.2835102828717796,0.2794835314455306,0.2758168281618007,0.2754964934128596,0.2757850210646608,0.276554392596687,0.2768292910971072,0.2770960741763661,0.2798438119897267,0.2798013982277241,0.2807370184254606,0.2819016495487084,0.2828960403045484,0.2874469942629084,0.2915017704644865,0.2985986064354498,0.3060406913935902,0.3106903063365506,0.3124142233312539,0.3177548856233904,0.3189647146448189,0.3232134516581036,0.3272259236826166,0.3288844621513944,0.3305563020693362,0.3347264437689969,0.0,2.362152214455258,50.20518364883811,140.58995164922885,202.21422078023213,fqhc5_100Compliance_implementation,88 -100000,95802,48484,462.8087096302791,4809,49.15346234942903,3800,39.10148013611406,1457,14.790922945241226,77.41775944651599,79.74360617243451,63.37436231324406,65.09419808499209,77.23337117295394,79.56425884943549,63.30463216671332,65.02873038126853,0.1843882735620496,179.34732299902123,0.0697301465307447,65.46770372355581,231.95304,163.22113541294223,242117.11655289037,170373.41121578068,543.47905,366.7086577113532,566738.6693388447,382222.278983062,485.37068,238.2194228585444,502832.5609068704,245728.6546817112,2672.88539,1245.525201902784,2753823.5527442014,1263917.0913997456,893.65927,405.6047039652558,919625.4775474416,410184.5827490603,1415.30342,601.9680490100177,1439497.3173837706,599084.0975205074,0.37947,100000,0,1054332,11005.323479676832,0,0.0,0,0.0,47375,493.9354084465877,0,0.0,43764,453.0281204985282,1109260,0,39755,0,0,0,0,0,91,0.9498757854742071,0,0.0,0,0.0,0,0.0,0.04809,0.1267293857221914,0.3029735911831981,0.01457,0.3590863952333664,0.6409136047666336,23.46739668942895,4.066228821295286,0.3092105263157895,0.2781578947368421,0.2081578947368421,0.2044736842105263,11.649808450259748,6.5280363125157095,15.580459961150346,11314.63635841666,43.23266204162093,12.928953272836724,13.042914985790782,8.85663573437109,8.404158048622323,0.5821052631578948,0.804162724692526,0.6970212765957446,0.5651074589127687,0.1235521235521235,0.7515204170286707,0.919831223628692,0.8529411764705882,0.7178217821782178,0.136094674556213,0.5084937712344281,0.7101200686106347,0.6421173762945915,0.5127334465195246,0.1200657894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022883990319869,0.0044296676228801,0.0067782163549837,0.0089780829152363,0.0112462376962498,0.0134268496274278,0.0154214657017633,0.0179431697558585,0.0202375355178969,0.0222499692962705,0.0246412464124641,0.0264738187380026,0.0287928783626813,0.0307307430971647,0.0326765036450438,0.034797607858124,0.0368319741689779,0.0387737541080481,0.0405156920391859,0.0423217074440395,0.0567913858224995,0.0710888087397417,0.0846130462583465,0.0974105782866747,0.1097266838696087,0.1255520104802755,0.135767026494486,0.1455544806030129,0.154791626656424,0.1639351286500846,0.1752680424566346,0.1863414423367757,0.1963064295485636,0.2057336870489852,0.2144128113879003,0.2240164578102706,0.2326758051933578,0.2405061869792719,0.2480125025480736,0.2549077895795936,0.2607254627972238,0.2662590003617649,0.2711690335375571,0.2757086472909939,0.2796973885211319,0.2844314323672686,0.2877492166140248,0.2902202195849463,0.2930001291489087,0.2960322992148765,0.2934420950949876,0.2906271442294497,0.2881339269412805,0.2859837304729681,0.2834976755204169,0.2797545450382379,0.2765605296343001,0.2757465856368032,0.2755495204956293,0.2754160604662716,0.2761422076470149,0.2773227791057643,0.2776692573043514,0.2790785247535718,0.280353306278348,0.2801023440932468,0.2803579999435331,0.285545281902805,0.290836515098924,0.2954928803985407,0.2986714703895519,0.3006144635260753,0.3044263213596463,0.306727736897432,0.3101519530157546,0.3137947269303202,0.3192660550458716,0.3194945848375451,0.3272286560732561,0.3246311010215664,0.0,2.2024881636285403,49.91489479753676,132.29829830876034,198.39742410407877,fqhc5_100Compliance_implementation,89 -100000,95720,48666,464.0931884663602,4786,48.620977852068535,3793,39.03050564145424,1462,14.855829502716256,77.3893283971574,79.74984752777456,63.35181630130408,65.09367508057328,77.19990073727165,79.5657363482318,63.27940102391475,65.02590577555141,0.1894276598857516,184.1111795427679,0.0724152773893251,67.76930502186929,231.9812,163.20106508452096,242353.94901796908,170498.39645269638,543.32177,367.1088166817851,567018.2720434602,382926.1770599511,486.76113,239.3914574941796,504887.8813205182,247284.5163387842,2665.7016,1254.5181551242108,2743169.870455495,1268887.1240328157,879.33984,401.7701585734516,902703.8132051816,403783.0305945071,1412.5649,607.458755322347,1436947.0956957794,601318.4794855322,0.38234,100000,0,1054460,11016.088591725867,0,0.0,0,0.0,47319,493.71082323443375,0,0.0,44050,456.5921437526118,1105729,0,39584,0,0,0,0,0,83,0.8671124111993314,0,0.0,1,0.0104471374843292,0,0.0,0.04786,0.1251765444368886,0.3054743000417885,0.01462,0.358974358974359,0.6410256410256411,23.60630105543156,4.023353477627831,0.3263907197469022,0.276562088056947,0.1932507250197732,0.2037964671763775,11.432365726228817,6.4208449804955565,15.5394883051514,11387.86735604055,43.1453602057845,12.762787511825234,13.940756912067146,8.161824085246254,8.279991696645851,0.5924070656472449,0.8093422306959008,0.6946688206785138,0.6084583901773534,0.1190168175937904,0.7458223394898856,0.9166666666666666,0.840782122905028,0.6861702127659575,0.1383647798742138,0.5267319277108434,0.7341977309562399,0.6352272727272728,0.581651376146789,0.1140065146579804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091647508026,0.0047634974206168,0.0069383159368248,0.0091690951737863,0.0114269448172095,0.013659589194471,0.0159995108429805,0.0183975837227811,0.0204154618001982,0.0227670394662792,0.0249615739317553,0.0269216563384905,0.0293872853752016,0.0313841339770048,0.0334440227703984,0.0355378733078433,0.0376006791312089,0.0395303245614944,0.0416168629366704,0.0435113231525656,0.0577989411359293,0.0716386048993857,0.0851391889907487,0.0985006203604399,0.1111626485067625,0.1259730095608765,0.1366601954107126,0.1466216647856732,0.1557611761689033,0.1659177435787441,0.1773556050962273,0.1885737158682764,0.1988300914398791,0.2078558306359898,0.2167158135645438,0.2263703638055567,0.2342363459799752,0.2427170269723078,0.2501872234199478,0.2564402139674467,0.2615592734336158,0.2665957645738862,0.2727165279878971,0.2767930873535431,0.2802615774723075,0.2835453628288097,0.2880375,0.2917555894308943,0.2951947447369782,0.2977179652625064,0.2945479437345646,0.2913288612700111,0.2885160349036222,0.285315007707712,0.2832090214881904,0.2801267693620393,0.2765194412986032,0.2763089261263611,0.2772188194574051,0.2781976228490331,0.2792325014423166,0.2803738317757009,0.2802823647002478,0.2803296166318688,0.2830179663608562,0.2835863279636514,0.2839478290328044,0.2873856493870185,0.2900079825078957,0.295358318958758,0.2972510139702569,0.3008211390672702,0.3033293772253108,0.30575161435651,0.3083798882681564,0.3088821185844856,0.314878892733564,0.3174034249303066,0.3286462641301351,0.3207692307692307,0.0,2.195838604959988,48.97593622016591,134.48640465084205,198.287149041668,fqhc5_100Compliance_implementation,90 -100000,95661,48874,467.1809828456738,4799,48.82867626305391,3814,39.16956753535924,1540,15.61764982594788,77.35982293729873,79.73517241829666,63.33991942654043,65.0896943831532,77.16736416183423,79.54890190753933,63.26750394162116,65.022703803964,0.1924587754645017,186.2705107573248,0.0724154849192757,66.99057918919493,230.95732,162.44923589805092,241432.8723304168,169817.39256128506,543.64321,366.9903917504837,567595.4777809138,382935.9596045109,486.00991,239.2665156918794,503650.5576985396,246756.92317457905,2767.59453,1298.256970229763,2843085.363941418,1307990.5917362575,915.72321,422.0861196657284,938100.7516124648,422428.1626016852,1513.97764,639.532591329962,1537307.512988574,630435.8460900284,0.38247,100000,0,1049806,10974.2214695644,0,0.0,0,0.0,47306,493.7539854277082,0,0.0,43882,454.4380677601112,1109943,0,39783,0,0,0,0,0,98,1.0035437639163296,0,0.0,3,0.0313607426223853,0,0.0,0.04799,0.1254738933772583,0.3209001875390706,0.0154,0.3639272145570886,0.6360727854429115,23.392629963447167,4.144336880154766,0.3104352385946513,0.2582590456213948,0.2037231253277399,0.2275825904562139,11.41537306505742,6.0132936944783815,16.356329591187077,11391.805477390712,43.6596014674449,11.99693307237899,13.501241816183454,8.596086720113387,9.565339858769075,0.5747246984792869,0.8020304568527918,0.6976351351351351,0.6023166023166023,0.1244239631336405,0.7737355811889973,0.9152542372881356,0.9,0.8011049723756906,0.1857923497267759,0.4912541868254559,0.7202797202797203,0.6127098321342925,0.5419463087248322,0.1080291970802919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468789241301,0.0045408013298061,0.0069294374270785,0.0091710507606995,0.0112656580445745,0.0134256196244083,0.0157124079112279,0.0179569848589968,0.0201944881407178,0.0223524838366478,0.0246378593234577,0.0268376506796614,0.0288198655621107,0.0305595024814151,0.0327182332979195,0.0348616077888252,0.0369891092798873,0.0388006140059741,0.0407119391192248,0.0428951070814444,0.0580866912525203,0.0721016920757245,0.0860561532406192,0.0986131863044256,0.1107958441010495,0.1259840853297215,0.1367095863364718,0.1467389567644145,0.1559636950641964,0.1646989374262101,0.1763900862068965,0.1877504169103155,0.1984309202293772,0.2069403254577091,0.2153505681317713,0.2250058145330099,0.2336885566032472,0.2417951715146338,0.2491241595900273,0.2553266964183545,0.2617968695813007,0.2680702820869524,0.2735754236185836,0.2778815080789946,0.2817534884284796,0.2852398932441241,0.2883578064129458,0.2917793436170888,0.2952340348565301,0.2987512513831076,0.2955149724721364,0.2924297756665477,0.2904877088372616,0.2881131178022168,0.2844998667101093,0.281037668147741,0.2779803912281532,0.277070741814489,0.2771626946894351,0.2775104266923324,0.2781048500140173,0.2780843515963737,0.279093567251462,0.2798137545391762,0.2816702560421153,0.2832206769740761,0.2853306953080836,0.2915288095386728,0.2948526084989385,0.2976828499369483,0.3020531837916064,0.3079363400835404,0.3132196564525262,0.3141858521388952,0.3181392736802695,0.3266129032258064,0.3294260922514842,0.3315979175010012,0.3369826435246996,0.338654503990878,0.0,2.566944960575653,48.51288827497663,142.8279214408851,194.17197367317084,fqhc5_100Compliance_implementation,91 -100000,95853,48342,461.9991027928182,4892,49.64894160850469,3876,39.84225845826422,1495,15.221224166171115,77.34109898624328,79.63174771067766,63.34986309044478,65.04410713537486,77.14832428020294,79.44324057092084,63.27665802245157,64.97485950226431,0.192774706040339,188.5071397568225,0.0732050679932072,69.2476331105496,232.39788,163.53534210161345,242451.9211709597,170610.11664070346,545.76508,367.3394291943934,568765.6515706342,382621.1262937972,484.14047,237.3079543935814,501207.4113486276,244610.7016401407,2763.53057,1301.1312925143247,2842259.4284998905,1316637.9207362572,904.64962,411.6525466362119,930952.6671048376,416663.207170734,1457.23658,626.4616861723697,1484914.4210405515,623946.861660173,0.38056,100000,0,1056354,11020.54187140726,0,0.0,0,0.0,47561,495.5504783366196,0,0.0,43810,453.21481852419856,1103663,0,39659,0,0,0,0,0,96,1.0015335983224314,0,0.0,0,0.0,0,0.0,0.04892,0.1285474038259407,0.3056009811937857,0.01495,0.3699059561128526,0.6300940438871473,22.808462407007934,3.997523349566615,0.3010835913312693,0.2886996904024768,0.1994324045407636,0.2107843137254902,11.396996528386603,6.195761848738577,16.023545282069076,11245.714544568084,44.54708919397517,13.69148713549912,13.427269572149696,8.526402474251883,8.901930012074462,0.5794633642930856,0.8185880250223414,0.6863753213367609,0.5472186287192755,0.1297429620563035,0.7504288164665524,0.935483870967742,0.8297872340425532,0.7025641025641025,0.1694915254237288,0.5059040590405904,0.735474006116208,0.630071599045346,0.4948096885813148,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021264746088805,0.0046306147470387,0.0069987523963119,0.0090462363189635,0.0109670075010672,0.0131380770170153,0.0153529549599111,0.017230298393267,0.0192735889526688,0.0212570072425221,0.0232827320590826,0.0255276814834567,0.0275466814568312,0.0295188904436579,0.0316341566457489,0.0333684253983981,0.0355602891147669,0.0376103443988561,0.0393475981354014,0.0414395105913687,0.05614357070607,0.0701692045608937,0.0836082916967811,0.0960617517328292,0.1075132943716106,0.1223819431975411,0.1342303210085814,0.1442316892947893,0.1536499738563486,0.1625262571269344,0.1750608036848109,0.1857987909723048,0.1959626924080355,0.2053384050367261,0.2135541008856372,0.2232955930250592,0.2325140300572359,0.2398596207059458,0.2479945538094967,0.254714712651575,0.2606326990920132,0.2661560947091493,0.2712359550561797,0.2751173821387505,0.2794983549636392,0.2830067775723968,0.2860484607397956,0.2893759853532014,0.2919996896096842,0.2952525385731241,0.2923863330642992,0.2885017038584148,0.2864842804469588,0.2833834325683566,0.2806097434145037,0.277187719996327,0.2728365764910615,0.2723272918308379,0.2730694865082216,0.2740581655480984,0.2754417923341283,0.2769105980572536,0.2773313752229099,0.2783294850814858,0.2799160758211547,0.2815470594380027,0.2825492652921745,0.2861588758605514,0.2898003426693241,0.2945243362831858,0.2978839095563913,0.3007129654079746,0.3061045234958278,0.3086989409984871,0.310076063480139,0.3120785519933751,0.3090797921125038,0.3139418254764293,0.3170665212649945,0.3266082984392843,0.0,2.1537243301638624,50.47129729169248,145.49247064292368,196.34402736027064,fqhc5_100Compliance_implementation,92 -100000,95641,48483,462.1553517842766,4787,48.69250635187838,3780,38.926820087619326,1457,14.826277433318346,77.31769350596971,79.74068581205682,63.289715480586615,65.08154184488885,77.12925433570321,79.55633583634524,63.21681025234628,65.01274924542341,0.1884391702665055,184.3499757115836,0.0729052282403373,68.79259946543925,231.90574,163.07836894602715,242475.2355161489,170510.94085802865,540.00241,364.9197568912533,564030.5412950513,380968.2007624903,484.7488,238.0657297301599,503093.58956932696,246015.196742314,2704.77487,1279.842015263214,2787764.7243337063,1297888.149709031,881.60907,404.7808004950485,905415.6899237776,406855.16723481385,1416.64388,613.3068358707602,1443269.8319758263,608584.8664352491,0.3806,100000,0,1054117,11021.601614370406,0,0.0,0,0.0,47136,492.2261373260421,0,0.0,43917,455.4845725159712,1102345,0,39556,0,0,0,0,0,81,0.8469171171359563,0,0.0,1,0.0104557668782216,0,0.0,0.04787,0.125775091960063,0.3043659912262377,0.01457,0.3705482192877151,0.6294517807122849,22.924815115619968,4.153712437801183,0.3047619047619048,0.269047619047619,0.2174603174603174,0.2087301587301587,11.508725836547791,6.190823951202615,15.534935609502323,11283.673789101147,43.4585190402192,12.454212131511596,13.170288020738122,9.258481464747046,8.575537423222439,0.5925925925925926,0.8072763028515241,0.7326388888888888,0.5815085158150851,0.1229404309252218,0.7537117903930131,0.924170616113744,0.8757396449704142,0.6891891891891891,0.147239263803681,0.5225806451612903,0.7243697478991596,0.6732186732186732,0.5416666666666666,0.1166134185303514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024515763027798,0.0048472802498681,0.0070761421319796,0.0095529426112053,0.01195478547519,0.0141809290953545,0.0164854222349172,0.0189315379192676,0.020949106055489,0.0231349556161462,0.0253349073551301,0.027607551205067,0.0296258920204714,0.03144148047286,0.0337648651161829,0.0357416337258635,0.0379471228615863,0.03981386266139,0.0419199067521438,0.0438011012848323,0.0582831703034863,0.0719876772185721,0.0850717421902901,0.0982188938393318,0.110279130186826,0.126203514420989,0.1364303022573651,0.1464116668798772,0.1554526099562422,0.1639756356956395,0.1755294473034059,0.1855540503928474,0.1955640768660944,0.2047012947181632,0.2121135298980435,0.220580404685836,0.2290695725062866,0.2373557069654822,0.2448166231406835,0.2514897323065639,0.2569675215654489,0.2623455345440929,0.2681595339033228,0.2733378106111484,0.2779513867778845,0.2809376502052034,0.2846295300166377,0.2878265844510838,0.29181388727108,0.2954758354993205,0.2922886409217557,0.2895196206446292,0.2866389013957677,0.2841179439117583,0.2816087697207614,0.2792076786696827,0.2751438144004046,0.2752985440863733,0.275862655397017,0.2758724641793162,0.2767495447281377,0.277240136347608,0.2789542321306589,0.2776991463576452,0.2787617983405054,0.2797565316070461,0.2820642835009437,0.2870749565649044,0.2922208367968966,0.296698557089084,0.2992868748871637,0.3057425326041228,0.3071548874056515,0.3110008271298594,0.3136215713621571,0.3186440677966101,0.3227121715493808,0.3235817355208539,0.3284671532846715,0.3232969514490026,0.0,2.31764817638506,49.37991005623686,140.52387904568235,191.86813151915848,fqhc5_100Compliance_implementation,93 -100000,95722,48647,463.676061929337,4806,49.12141409498339,3774,38.96700862915527,1445,14.782390672990536,77.34880342590687,79.70652525905784,63.338894218876014,65.07718465371232,77.16310558242417,79.52150509146851,63.26890874024648,65.00918105500115,0.1856978434826999,185.0201675893288,0.0699854786295333,68.00359871117223,232.23266,163.38379143321976,242611.5835440129,170685.72682687338,543.01675,366.5710205115614,566820.3025427802,382488.8745654723,489.51278,239.9852076286096,508352.1551994317,248390.12551739984,2654.9554,1238.7362677291562,2745372.746077182,1265860.0611449364,869.76365,396.3110571966354,897758.028457408,403147.74477122206,1402.161,598.3289936760358,1437230.0620547,603229.2274476527,0.38173,100000,0,1055603,11027.799252000586,0,0.0,0,0.0,47307,493.7318484778839,0,0.0,44186,458.5466246004054,1102713,0,39570,0,0,0,0,0,101,1.055138839556215,0,0.0,0,0.0,0,0.0,0.04806,0.1259005055929583,0.3006658343736995,0.01445,0.3603029095257074,0.6396970904742926,23.472050447327167,4.088809757836445,0.3139904610492846,0.2832538420773715,0.1995230524642289,0.203232644409115,11.426814081008152,6.1724342649019,15.47483312803923,11379.064390384014,43.303353961209744,13.107704340939064,13.468831129029764,8.359230152017824,8.367588339223085,0.5919448860625331,0.8203928905519177,0.7172995780590717,0.5710491367861886,0.1003911342894393,0.7696381288614298,0.9366812227074236,0.8709677419354839,0.7222222222222222,0.1038961038961039,0.5157137447936387,0.7332242225859247,0.6552132701421801,0.5235602094240838,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0046324453634999,0.0070620465729795,0.0089090705919401,0.0112249877989263,0.0137018374306509,0.0157684976607173,0.0180769623354088,0.0201318277042562,0.0223939409446804,0.0245269868601767,0.0266741930517781,0.0290337836448502,0.0311219552370951,0.0330506901033607,0.0351832525651226,0.0371505487678608,0.0393749805459582,0.0413911416094822,0.0436671667916979,0.0584494245911568,0.0719279151055947,0.0852173183243986,0.0984030802247049,0.1106060286455586,0.126098683166746,0.1363877512042951,0.1476690832827653,0.1571868122476015,0.1646232233842853,0.1770465316673847,0.1889125707299657,0.1997759725076941,0.2088422802278915,0.2169976346333681,0.2267832214318952,0.2350030714245825,0.2421350021948831,0.2487854159099164,0.2562079076373299,0.2610572360960029,0.2669738288467385,0.2731672109423068,0.2770133524938626,0.280786921853951,0.2848122299767364,0.28814448441247,0.2917878322264409,0.2951075865988169,0.2969728876020005,0.2938599438270194,0.2905582640939367,0.2875441137184877,0.2851476866274374,0.2832189089399309,0.2797257261537522,0.27624850053665,0.2762596281214737,0.2769626200040852,0.2772044694327806,0.2776483307547486,0.2779786230745049,0.2782003459270219,0.2788031257653004,0.2808886548083599,0.2807540711544445,0.280664395229983,0.2851730076718334,0.2874642283799818,0.2932665773082078,0.2989447941669308,0.3035932275356934,0.3058712121212121,0.3109570252971655,0.3148356807511737,0.3157083580320095,0.3169944683466503,0.3153391729476472,0.3220104943385805,0.3260536398467433,0.0,1.7801736478375032,49.57750922290802,136.71210562950162,196.71376630220013,fqhc5_100Compliance_implementation,94 -100000,95635,48412,461.4314842892246,4795,48.93605897422491,3813,39.274324253672816,1452,14.80629476656036,77.26744378178137,79.68121755538291,63.28338998351626,65.0687710212045,77.08067848554596,79.49951495312543,63.21175913353334,65.00203050644382,0.1867652962354071,181.7026022574879,0.0716308499829168,66.74051476068144,231.3751,162.73977249864004,241935.58843519632,170167.5877018247,539.80512,364.6777690909249,563844.2202122654,380723.6567061483,482.08416,237.03735084487985,500066.5028493753,244895.935796256,2670.2089,1255.0307298107564,2750290.6049040626,1270520.4682498637,882.12445,403.0964053484511,906976.5880692216,406084.6085099078,1410.71478,605.6790749179542,1438312.2706122235,600493.2819210063,0.38112,100000,0,1051705,10997.072201599833,0,0.0,0,0.0,47118,492.0583468395462,0,0.0,43684,452.7944790087311,1106062,0,39676,0,0,0,0,0,68,0.7110367543263449,0,0.0,0,0.0,0,0.0,0.04795,0.1258133921074727,0.30281543274244,0.01452,0.3628158844765343,0.6371841155234657,23.41020855881013,4.05809193533109,0.3113034356150013,0.2876999737739313,0.1982690794649882,0.2027275111460792,11.328579598729007,6.102165137868948,15.596543895527391,11356.62333231361,43.94695596781865,13.505043369927384,13.62146086979197,8.362263214442137,8.458188513657152,0.5837922895357985,0.7921604375569735,0.6950294860994103,0.5806878306878307,0.1203104786545925,0.7449781659388647,0.9072164948453608,0.8235294117647058,0.7453416149068323,0.1534090909090909,0.5146176911544228,0.7009803921568627,0.6469907407407407,0.5361344537815126,0.1105527638190954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595091900216,0.00437031028189,0.0067921539961013,0.0094707747337614,0.0116989999898269,0.0138509797531266,0.0162938189530354,0.0185606795373102,0.0207773085614372,0.0227237816305004,0.0248397518075996,0.0272219254632863,0.0294526114374479,0.031365598821214,0.0333508809958814,0.0356164383561643,0.0377006732263076,0.0396192730065807,0.0417650546638511,0.0437602310523517,0.0585394914244505,0.0726278633749856,0.0858652159758031,0.0989048020219039,0.1109926307565615,0.1262006375160173,0.1370912064918374,0.1467971056193186,0.1564010953746095,0.1645222957298737,0.1761609973900476,0.1876638429707303,0.1978212132424961,0.2070972895488417,0.2154479600149723,0.2246385642275522,0.2328355876969778,0.2409684641607506,0.2482971573880665,0.254354402530137,0.2594157272159078,0.2651870388343838,0.2700469883653493,0.2740964577787371,0.2782788379725295,0.2837741155573099,0.2874255244580183,0.2908818030347354,0.2935197773030362,0.2964205078099212,0.2930458221024258,0.2908352827851933,0.2879983096210733,0.2848492731003786,0.282087111639661,0.2776510570549423,0.2754728927582113,0.2757118049867304,0.2763144444065833,0.2778094288562883,0.2781328250551257,0.2790325765054294,0.2804324640833142,0.2817211964631729,0.2830229380887323,0.2846745685173633,0.285361772130357,0.288664955874069,0.2923894795747062,0.2977483548719575,0.3000959649042636,0.3050584904652529,0.3065619457816063,0.3101866014071581,0.3160962767957879,0.3218541468064824,0.3245654514690048,0.331366965012205,0.3324880247957171,0.3365003958828186,0.0,2.307769399022567,49.63283409895159,146.16611399270832,189.8173646466738,fqhc5_100Compliance_implementation,95 -100000,95837,48077,458.497240105596,4925,50.3563341924309,3901,40.1097697131588,1497,15.265502885107004,77.40182060844235,79.71642712869263,63.36325590393732,65.07598419332201,77.20324912343843,79.52009794088661,63.28846875855356,65.00426967695176,0.1985714850039244,196.32918780601472,0.074787145383766,71.71451637024973,232.1825,163.3184061677222,242268.1219153354,170412.68629832132,542.85247,365.8701866481507,565860.3983847575,381190.2987866384,483.46059,237.1380600459241,500701.9522731304,244482.82540634787,2770.58649,1304.0284065266285,2852850.830055198,1322587.9008385362,909.42173,410.5047287197602,935606.68635287,415017.5597313776,1457.4154,629.3196175316282,1487870.3840896522,628974.4286624121,0.37876,100000,0,1055375,11012.187359787971,0,0.0,0,0.0,47384,493.8176278472823,0,0.0,43760,452.7896323966735,1106561,0,39771,0,0,0,0,0,84,0.8764882039295887,0,0.0,0,0.0,0,0.0,0.04925,0.130029570176365,0.3039593908629441,0.01497,0.3479105928085519,0.652089407191448,23.253847269914232,4.093458053104479,0.3153037682645475,0.2724942322481415,0.2061009997436554,0.2061009997436554,11.18775443686681,6.034384116416961,16.135985491937795,11308.06363527426,44.86968611631819,13.064825783767668,13.9652904785104,8.954872586371154,8.884697267668974,0.5788259420661369,0.7826904985888994,0.7056910569105691,0.5883084577114428,0.1057213930348258,0.7483164983164983,0.907725321888412,0.8712574850299402,0.7339901477832512,0.1405405405405405,0.5046074456321415,0.6850921273031826,0.6439732142857143,0.5391014975041597,0.0953150242326332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871645841349,0.0042769258835095,0.0066550338838615,0.0088972851092355,0.0110511279877187,0.0132130787084164,0.0151862610202313,0.0175750153092467,0.0198295071243126,0.0219747602427765,0.0241812311004049,0.0264195097918462,0.028513573242057,0.0304044314484576,0.0322307827181121,0.0344489104266333,0.0363837737684894,0.0383351133877373,0.0405695946156482,0.0424190073785761,0.0570266465036241,0.0712523520802843,0.0847487818934353,0.0974349278376504,0.1093266213113718,0.1253062690098006,0.1352571029047225,0.1455190960596107,0.1552204399193161,0.1637512720261368,0.1758429685399301,0.1871116921846805,0.1972710779893754,0.2066011865091938,0.2154202987765331,0.2247929858743302,0.2324712547536998,0.2399883075124232,0.2468782960770303,0.2530898104916231,0.2597624856901676,0.2653934265276544,0.2715877107920815,0.2764746753557909,0.2808474473380684,0.284365033432255,0.2871090331774883,0.2902643849017291,0.2932969562181592,0.2969056683308524,0.2938377797191049,0.2913799969788104,0.2881627377707847,0.2859261605805783,0.2829800461839067,0.2791883597722033,0.2755916692963079,0.2751986137901723,0.2752441888166627,0.2751203396152685,0.2754970836516781,0.2759664327968084,0.2764907898844833,0.2767962308598351,0.2777658483048218,0.2796938828274471,0.2820071158298978,0.2860118770015235,0.2898978670186896,0.293599622582167,0.2998959793767808,0.3017063764594009,0.3057046560978654,0.3121234939759036,0.3164790551762317,0.3200373221366923,0.3204469948655995,0.3272545090180361,0.3259158751696065,0.3276579644343549,0.0,2.36488291341143,51.56562350812168,147.10516232165028,192.7885736074964,fqhc5_100Compliance_implementation,96 -100000,95709,48105,459.4656719848708,4742,48.53253090096021,3794,39.191716557481534,1473,15.108297025358116,77.32145341825886,79.70871617774961,63.3143933609397,65.08008971416619,77.13126942517357,79.51949637989077,63.24244913899732,65.01053046560429,0.1901839930852844,189.2197978588399,0.0719442219423811,69.55924856190165,230.4544,162.20278020160004,240786.5508990795,169474.95031982363,542.59993,365.4248003987345,566491.9077620704,381373.340436881,484.18498,237.7479682748216,502950.0882884577,246178.15595524816,2688.50155,1273.59189355462,2778792.0571733066,1300446.59703332,905.33541,418.4392651579541,932842.5853368022,424117.0267769525,1438.54136,618.0849672900299,1476570.6255420076,622093.504413918,0.37868,100000,0,1047520,10944.843222685431,0,0.0,0,0.0,47342,494.1854997962574,0,0.0,43766,454.3355379326918,1112787,0,39954,0,0,0,0,0,95,0.9925921282220064,0,0.0,0,0.0,0,0.0,0.04742,0.1252244639273265,0.3106284268241248,0.01473,0.3761356753482737,0.6238643246517263,22.66931866795493,4.1138033184683565,0.2962572482867686,0.2820242488139167,0.2100685292567211,0.2116499736425935,11.395553155583809,6.115713086221155,15.824656729412798,11234.562893901451,43.81170793358016,13.19500944369166,12.747423010264718,8.958357542895314,8.910917936728474,0.584870848708487,0.822429906542056,0.7188612099644128,0.5646173149309912,0.1008717310087173,0.7468566638725901,0.9183673469387756,0.907051282051282,0.69,0.1047120418848167,0.5105728565936178,0.7413793103448276,0.646551724137931,0.5226130653266332,0.099673202614379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682742968306,0.0043200486766048,0.0063748578853337,0.0086686110913506,0.0112831678333062,0.0136398826501507,0.0157663399859265,0.0178578721666326,0.0202005745305104,0.0223862263803304,0.0245542808517618,0.0264430729418047,0.0287104472698843,0.0305831195194081,0.0326379785510058,0.0347387357581522,0.0366867950324712,0.0386890553975798,0.0404750514777761,0.0423245682602215,0.0566087001932215,0.0703638571368756,0.0834986303957684,0.0961651793231183,0.1078930986821975,0.1238529682588402,0.1344265775088892,0.1454225914682856,0.1543706648711618,0.163280847777587,0.1750891443222338,0.1859052774018944,0.1961104222410755,0.2051153021485144,0.213026213026213,0.2222234524297213,0.230740918368485,0.2392960690445688,0.2463071499019396,0.2522837061288033,0.2578940674536646,0.2636044880785413,0.2689713920636047,0.2737226714585205,0.2780037641916095,0.2819638637258763,0.2861465366341585,0.2888795721055507,0.2921796876009354,0.2954769899269208,0.2923279534489941,0.2884071889148031,0.2856801708153059,0.282846478649969,0.2794869893987693,0.2768348623853211,0.272784730122614,0.2729892585800367,0.2731437329700272,0.2734263742523498,0.2736832274934628,0.2744885703597235,0.275767818394258,0.2752530883467868,0.2758934996402015,0.2762911286963765,0.278488223063997,0.283531515702946,0.2874925696702682,0.2910203276100256,0.296086858176883,0.2999259572667654,0.3037503939489442,0.3078979529483654,0.3120827456511518,0.3125966456524325,0.3167739957068384,0.3187259078920673,0.3211838859961633,0.3225314525352649,0.0,1.7802352760614508,52.31723123052444,138.73044447541164,188.90944004226665,fqhc5_100Compliance_implementation,97 -100000,95701,48215,459.6817170144513,4791,48.72467372336757,3800,39.08005141012111,1456,14.754286789061766,77.3455376358958,79.73050821784203,63.32130932583449,65.08647590354855,77.15184139786263,79.54321077457496,63.24701148042284,65.01730572311894,0.1936962380331692,187.2974432670702,0.0742978454116496,69.17018042960876,232.62734,163.52454488678416,243077.23012298724,170870.25724578026,541.34105,365.6257446220474,565050.7622699868,381442.1214219782,483.00478,237.40028437769803,501084.1683994943,245303.71118848436,2652.4308,1251.4132990946596,2728907.576723336,1264954.7435185206,832.89147,387.160290913696,852232.9233759312,386531.12361592107,1406.8265,611.9199230093081,1427618.9590495396,603928.4509923691,0.37733,100000,0,1057397,11048.96500559033,0,0.0,0,0.0,47225,492.82661623180536,0,0.0,43543,451.3118985172569,1105108,0,39576,0,0,0,0,0,92,0.9613274678425512,0,0.0,1,0.0104492116069842,0,0.0,0.04791,0.1269710863170169,0.3039031517428511,0.01456,0.370125974805039,0.629874025194961,23.15754465901037,3.933854906908694,0.311578947368421,0.2960526315789473,0.1960526315789473,0.1963157894736842,11.308728838728072,6.355638673235001,15.606577713302016,11229.597152904047,43.60298969403601,13.822067619051603,13.340057323758492,8.26873750671542,8.172127244510499,0.5928947368421053,0.7866666666666666,0.7052364864864865,0.6013422818791946,0.113941018766756,0.7521588946459413,0.8839103869653768,0.8790849673202614,0.7777777777777778,0.154696132596685,0.5230885692657078,0.7113564668769716,0.6446469248291572,0.5451327433628319,0.1008849557522123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0044221309397028,0.0065079445657139,0.0089432712046992,0.0108956620818751,0.0130474638419229,0.0150822948746711,0.017585245550075,0.0197766688481675,0.0223036906566173,0.0245628429311317,0.0266944669836998,0.0287401250822909,0.031005914720854,0.0331062951496388,0.0351404999689845,0.0372089168807491,0.039294647583265,0.0412242478446706,0.0433029434748632,0.0581194974465018,0.0718165548566704,0.0853046745450347,0.0982292225624191,0.1106528412147551,0.1260881982715762,0.1361108752865268,0.1456904264837459,0.1547696682667123,0.1641170976780135,0.1751007999310032,0.1851474745724158,0.1956431806305521,0.2045743050995841,0.2131116860241096,0.2221791263104235,0.2307331718695938,0.2384825677545647,0.2446199049336918,0.2502775774641438,0.2565460769800148,0.2623054270088347,0.2674571182012696,0.2710519702753479,0.2750818479447072,0.2798244103976588,0.2827460479984017,0.2863032640271981,0.2894760608445471,0.2931856698064872,0.2906477906477906,0.2877756937694234,0.2853615767693063,0.2829111101520579,0.2792007212426656,0.276024371667936,0.2724190674424839,0.2726051851487905,0.2730786256682671,0.2737100824621084,0.2754287210367849,0.276897266357446,0.2782484989225716,0.2798279627401168,0.2804392653335251,0.2806538801393003,0.2816957323124911,0.2859466391417222,0.2897528968309367,0.2948373855383643,0.2995121069750632,0.3043890116829807,0.3079459896708356,0.3108402918829459,0.3086546540939221,0.3148279952550415,0.3130541118923876,0.3175634517766497,0.3240010872519706,0.3247600767754318,0.0,2.423640899014171,49.94991828549816,139.99577608345638,191.6269888273449,fqhc5_100Compliance_implementation,98 -100000,95603,48642,464.9749484848802,4786,48.84783950294448,3806,39.15149106199596,1419,14.434693471962175,77.23812690061078,79.66919934600737,63.25655152000609,65.0543885876746,77.05382499627603,79.49251063534533,63.186161370831,64.9900989448542,0.1843019043347453,176.68871066204872,0.0703901491750897,64.28964282039829,231.54318,162.92441742826236,242191.68854533852,170417.05268431344,540.77326,364.5260027260825,564938.819911509,380598.5204259633,485.06607,238.33474829236968,504205.2550652176,246796.50607698708,2684.48442,1266.0334870816666,2761205.0981663754,1278434.629907817,878.18552,402.353408303564,898286.2044078115,400851.9154726904,1381.83624,595.4105640509458,1406314.4252795414,587003.7419598099,0.38147,100000,0,1052469,11008.713115697206,0,0.0,0,0.0,47165,492.5891446921122,0,0.0,43837,455.29951988954326,1102593,0,39598,0,0,0,0,0,71,0.7426545192096483,0,0.0,1,0.0104599228057696,0,0.0,0.04786,0.125462028468818,0.2964897618052654,0.01419,0.3608062263021353,0.6391937736978647,23.340508527839543,4.12127166095862,0.3087230688386758,0.2750919600630583,0.2070415133998949,0.209143457698371,11.316875649035143,6.16669191241767,15.242130287541157,11407.338372348728,43.87438265007173,12.882639391071049,13.497348204694044,8.90538023141067,8.58901482289597,0.5761954808197582,0.7936962750716332,0.7038297872340425,0.5596446700507615,0.1180904522613065,0.7656514382402707,0.9271523178807948,0.8674033149171271,0.7,0.1528662420382165,0.4908536585365853,0.6919191919191919,0.6309963099630996,0.5086505190311419,0.109546165884194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097859575158,0.0042295091943647,0.0062545690845585,0.0085787178679243,0.0109509851815665,0.0132950273541367,0.0155744811056147,0.0178564131900461,0.0199864983736677,0.0219597881863714,0.0239986046129853,0.0262630621744089,0.0285502562730285,0.0307828704562792,0.0329013269995352,0.0351085955527042,0.0370516276176653,0.0389657608243995,0.0409839478670025,0.0429507375800696,0.0575646373720582,0.0723829684667218,0.0861123368845741,0.0993016862749228,0.1108916746755098,0.1272151429449087,0.1381339906083335,0.1484766432850777,0.1577871702958643,0.1663963044529193,0.177673464983274,0.1888545562964167,0.1994377431270635,0.2090678996789639,0.2171824032442916,0.2260698791705038,0.2338705167921088,0.2422742595578204,0.2494599204093234,0.2567246426726364,0.2629252844896586,0.2689994724810972,0.2746444626315102,0.278702313006909,0.2832629002204333,0.2868046635707934,0.2905960397777861,0.2933340132325382,0.2961160638974319,0.2991950087901339,0.2962128772961454,0.2931521574356077,0.2892644695666883,0.2866627131637184,0.2837783622342085,0.279715564273892,0.2761313417705479,0.2761792142950992,0.2758455593173968,0.2747849059298133,0.2744789912822239,0.27591719129285,0.2771573179403522,0.2776277315238499,0.2789916772599717,0.2807984197941574,0.2823385560326442,0.2867398119122257,0.2917656927163428,0.2956925742184424,0.3005075682044775,0.3062450592885375,0.3094064040946258,0.3112517898862009,0.3147321428571428,0.3182825807957064,0.3207716464782413,0.326736592123491,0.3250950570342205,0.3307027433295753,0.0,2.3669609489311,51.36949040210202,138.52042527325142,191.52304111907415,fqhc5_100Compliance_implementation,99 -100000,95725,48513,462.63776442935495,4733,48.15878819535127,3766,38.81953512666493,1452,14.823713763384696,77.33641368994157,79.71184319685739,63.332022412709286,65.08967111678733,77.15580002446458,79.53470242176219,63.263462700668114,65.02508522278414,0.180613665476983,177.14077509519657,0.0685597120411714,64.58589400318715,232.98902,163.93315751889315,243394.11856881692,171254.27789907876,543.44594,367.0073654692823,567217.9785844868,382899.8020049958,484.35099,237.59882873868267,503049.1616610081,245951.3481864979,2175.95008,1025.4522043356117,2245600.5432227734,1043722.3759055756,887.80662,405.1385751505898,914842.1519979108,410618.5480810546,1422.0326,601.9460994610808,1453831.7889788456,601244.0170085692,0.38107,100000,0,1059041,11063.369025855316,0,0.0,0,0.0,47370,494.33272394881175,0,0.0,43812,454.6879080699922,1101481,0,39502,0,0,0,0,0,85,0.8879603029511622,0,0.0,1,0.0104465917994254,0,0.0,0.04733,0.1242029023538982,0.3067821677582928,0.01452,0.356421647819063,0.643578352180937,23.362992378442623,4.098789440356082,0.3154540626659586,0.2788104089219331,0.1898566117896973,0.215878916622411,11.669375041373389,6.285928210963457,15.45682513399195,11346.104523388663,43.08684581309977,12.8679271926106,13.42792514374815,8.011122445792866,8.779871030948154,0.575942644715879,0.820952380952381,0.6784511784511784,0.5594405594405595,0.1242312423124231,0.7519858781994704,0.927765237020316,0.8422712933753943,0.7411167512690355,0.1590909090909091,0.5001898974553741,0.742998352553542,0.618828932261768,0.4903474903474903,0.1145996860282574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0043915252690189,0.0068125285547489,0.0090962679892674,0.0112407556229209,0.0134133175809178,0.0153479027932163,0.0175311415152133,0.0198542116078639,0.0223573490571832,0.024622008097996,0.0265289570136443,0.0287726875417759,0.0308376850106603,0.032679131583292,0.0348338415421985,0.036862542065752,0.0388948831804789,0.0411699285944434,0.0431168290015104,0.057279211353502,0.0714749089691541,0.0846023156305059,0.0978712220762155,0.1103978919631093,0.125968357306672,0.1368878524485902,0.1467917224951615,0.1560802228650108,0.164772301198753,0.1762047220368895,0.1869160899653979,0.1970075625869262,0.2062020076241657,0.21474091328616,0.2243192145676473,0.2327874331550802,0.2410305965369619,0.2488241627472091,0.2550391585205511,0.2617911723596206,0.2671709389737124,0.2716141220923367,0.2757977323829115,0.2795112371808859,0.2840717649807552,0.2874057051506219,0.2903635417063477,0.2931277384999159,0.2961230298877234,0.2934659854799677,0.2908495833218735,0.2885159184592226,0.2856977918891615,0.2833132896827164,0.2794738452126032,0.2759465654888942,0.2755739074866047,0.276004909481436,0.2770110234537781,0.277765333930638,0.2786698150334514,0.2795501874219075,0.2798676496713448,0.2806451612903226,0.2827741534638086,0.2846129775552584,0.2897545357524013,0.2932222960915357,0.2988387301335659,0.3034410368747718,0.3077908217716115,0.3097542340506812,0.3130794575128343,0.3166870818807123,0.3228967495219885,0.3274988484569323,0.3348818420521107,0.3405757740358501,0.3538461538461538,0.0,2.070184676773705,49.25161754006032,134.53622976892788,196.75123254156577,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95611,48280,460.9197686458671,4808,49.07385133509742,3833,39.52474087709573,1515,15.458472351507671,77.26635035352784,79.70392303238417,63.26822878755484,65.07179094154647,77.07055562867968,79.51217264676724,63.19420107152995,65.0021787570126,0.1957947248481559,191.7503856169276,0.0740277160248865,69.61218453386664,231.7249,162.97607738631586,242362.1759002625,170457.45509022588,542.36677,365.82853031199767,566697.9531643849,382055.7679681184,485.60513,239.00862960656252,504416.4792753972,247313.39439650316,2194.57868,1045.449850979238,2263008.273106651,1061128.961081087,901.03554,410.649312467428,925150.0559559048,412258.9337632034,1470.40164,625.5826827690114,1501174.990325381,621341.8779561261,0.38016,100000,0,1053295,11016.462540921024,0,0.0,0,0.0,47312,494.2527533442805,0,0.0,43848,455.1568334187489,1103446,0,39582,0,0,0,0,0,97,1.0145276171151854,0,0.0,0,0.0,0,0.0,0.04808,0.1264730639730639,0.3150998336106489,0.01515,0.348943802311678,0.651056197688322,23.25817957807012,4.116483622152772,0.2976780589616488,0.2731541873206365,0.2170623532481085,0.212105400469606,11.607257630888398,6.397300716807646,16.084690934678807,11366.661910406729,44.10965653457182,12.873696083582113,13.100524826836914,9.358537029467833,8.776898594684965,0.5815288285937907,0.8099331423113658,0.6976336546888694,0.5973557692307693,0.1082410824108241,0.7587939698492462,0.9230769230769232,0.875,0.7489177489177489,0.12,0.5013262599469496,0.7184801381692574,0.6285018270401949,0.5391014975041597,0.1050156739811912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022092504763062,0.0045041846309916,0.0070378908669909,0.0091813079551,0.0116956088027523,0.0139221541628871,0.0163394023514043,0.0184543698844302,0.0206169744717859,0.0227074772771521,0.0247139118386616,0.026653646502544,0.0289061374070947,0.030972584519894,0.0328977947632081,0.0348185091676669,0.0371172702585045,0.0394777840094721,0.0413088956193212,0.043114596804472,0.0574681400478814,0.072172619047619,0.0854420739713652,0.0985506025111654,0.1109984473525777,0.126618080125421,0.1362293269843969,0.1461395686215945,0.1566587459593689,0.165250185342373,0.1763766787120435,0.1873495934959349,0.1983838295833242,0.2074367851351943,0.2163452000440868,0.2258089564821902,0.2336196976975411,0.2411968064141977,0.2481877883064058,0.2547456557894133,0.260674703818226,0.2663193021485861,0.2722439313203079,0.2765113380315451,0.2798104380582052,0.2843011495387044,0.2875997044865453,0.2913596273529075,0.2931246520900488,0.2959729950684353,0.2933666949163943,0.290404595679182,0.2881079332029656,0.2852731968431228,0.2826274079130925,0.2794254717701887,0.2766989524245919,0.2771194912893128,0.2778781577063375,0.2781541972755153,0.2786857624262847,0.2798412416326047,0.2797924208499864,0.2800553460242362,0.2816762728146013,0.2831367648207451,0.2848274290921517,0.2873675272807321,0.2915263748597081,0.2972029359254116,0.3022220202662789,0.3065797838525111,0.3106275622831914,0.312990343995172,0.3152476349471341,0.3154511453950444,0.3190814322405197,0.3235235235235235,0.3253796095444685,0.336322869955157,0.0,2.15041774350551,51.94640224494654,139.16398554907445,192.4419336830831,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95717,48366,462.6137467743452,4825,49.31203443484439,3826,39.51231233741133,1442,14.78316286553068,77.34534288058313,79.71393608991798,63.32656324425341,65.07446144761009,77.15917486143313,79.52751907139236,63.25745801462598,65.00667746657531,0.1861680191500028,186.4170185256171,0.069105229627425,67.78398103477912,232.36554,163.4542093740571,242762.6231494928,170767.8110347726,543.79243,366.18011205215714,567691.2774115361,382132.7772473465,481.58398,235.54233856727555,499861.94719851227,243528.18574691107,2200.24676,1027.32358169322,2273725.0018283064,1048435.6953024652,892.67835,405.9652053485747,919133.9365003082,410704.01918427367,1410.75188,596.6512681711591,1447832.5062423602,602555.0391094409,0.37962,100000,0,1056207,11034.664688613308,0,0.0,0,0.0,47295,493.6427175945757,0,0.0,43485,451.1110878945224,1104678,0,39620,0,0,0,0,0,110,1.138773676567381,0,0.0,2,0.020894929845273,0,0.0,0.04825,0.1271007849955218,0.298860103626943,0.01442,0.3651361558338302,0.6348638441661697,23.5546267006823,4.110955461881639,0.3010977522216414,0.2762676424464192,0.2106638787245164,0.2119707266074229,11.322354012030708,5.931807440474673,15.320804862069476,11266.294290561147,43.57711419315041,12.932123150981525,12.94035787060784,8.769571094802933,8.935062076758117,0.5794563512807109,0.7956480605487228,0.7161458333333334,0.5620347394540943,0.1208384710234278,0.7516339869281046,0.908235294117647,0.8785942492012779,0.7195121951219512,0.1538461538461538,0.5125226860254084,0.7199367088607594,0.6555423122765197,0.5218068535825545,0.1121495327102803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019847699287103,0.0041047574645774,0.0062497463576965,0.0081555961811903,0.0101893469462466,0.0123906779747299,0.0147498037776622,0.0169757969845758,0.019248461554188,0.0213428053761349,0.0231685563734033,0.0252310536044362,0.0273600625372858,0.0295562950066447,0.031671499778124,0.0336568776423646,0.0358840525678068,0.0380855523961727,0.0400286958962788,0.0418898359835775,0.0561415234236304,0.0698767189233313,0.0836131279640743,0.0965797308813163,0.1087371675160109,0.1243161448027005,0.1349460767663043,0.1447345999829598,0.1540368688218007,0.1637369826578436,0.1757937491246404,0.1869816591238821,0.197410369403188,0.2062152458513945,0.2138995033531918,0.2228626533801833,0.2308044283737333,0.2394757565530431,0.2469245086022969,0.2538508228449707,0.2602484615740527,0.2659925181201777,0.2710388719331866,0.2751212502245374,0.2793876634334066,0.282792083841332,0.2856946337681177,0.2887438411134251,0.2927864398007375,0.2948330673139073,0.2927554963178372,0.2892731374491031,0.2869728236355435,0.2844719240714791,0.2822884803848781,0.2785185638265337,0.2752552751605827,0.2758355680554647,0.2762907608695652,0.2760573884015768,0.2752527603478131,0.2757841808575413,0.277458453080095,0.2786425278909746,0.2807690463633313,0.2830614415021915,0.285351181902906,0.2885567491826249,0.2920707755414189,0.2972697316805272,0.3016497175141243,0.3051606108478146,0.3108630581192317,0.3136009677175474,0.3155737704918033,0.3199296600234466,0.3262314898760955,0.3306581059390048,0.3346038660495508,0.3477088948787062,0.0,1.730319504279986,46.67892918728936,148.93939531118514,196.5677415270873,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95666,48721,464.5014947839358,4933,50.414985470282026,3885,40.06648129952125,1451,14.82240294357452,77.2498286400838,79.65104712924781,63.26585613190741,65.04025740680542,77.06593099180739,79.46964023335885,63.19654140110539,64.97422769914664,0.1838976482764138,181.4068958889692,0.0693147308020201,66.02970765878524,228.95862,161.23945006008756,239331.23575774048,168544.15368060497,540.0412,364.7045891026296,563966.163527272,380686.1989658077,495.10921,242.9516256056428,514562.0910250245,251566.28678093024,2198.26796,1045.4322861173212,2268525.327702632,1063462.2186746816,896.56081,407.3401258469093,921714.4858152322,410330.4160798088,1400.34776,599.5225905993215,1431556.707712249,598635.1088559618,0.38291,100000,0,1040721,10878.69253444275,0,0.0,0,0.0,47030,491.0417494198566,0,0.0,44670,463.9370309200761,1111743,0,39928,0,0,0,0,0,75,0.7839775886939979,0,0.0,1,0.0104530345159199,0,0.0,0.04933,0.1288292288005014,0.2941414960470302,0.01451,0.373571013369502,0.626428986630498,23.180136062127385,3.972572162450609,0.3148005148005148,0.2813384813384813,0.2123552123552123,0.1915057915057915,11.341103632290569,6.278476272071891,15.627973092288569,11416.286429549804,44.88231568957584,13.429557523548429,14.04442571443991,9.182187897219675,8.226144554367826,0.5953667953667954,0.8142726440988106,0.7097301717089125,0.5721212121212121,0.1115591397849462,0.762384550797649,0.9077568134171908,0.8771428571428571,0.7339901477832512,0.1180124223602484,0.5215293244246474,0.7418831168831169,0.6426116838487973,0.5192926045016077,0.1097770154373928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109566838202,0.0047258308233695,0.0072979364805472,0.0095509042877463,0.0118501490168953,0.0138308923879168,0.0160398906880939,0.0180425792617552,0.020464307629372,0.0225827265185731,0.0248120377873283,0.0268823831535695,0.0293049338889746,0.031374974232117,0.0336991647480306,0.0357231507529372,0.0376875569924562,0.0398990842833115,0.0419588422563931,0.0439388567972806,0.058710439152831,0.0728437984333766,0.0869943955836359,0.1000873344065995,0.1115907004231877,0.1269023177055773,0.1374235474006116,0.1473308470964304,0.1571414818855694,0.1654116762446962,0.1776694106096732,0.1896577897293546,0.2004492225832479,0.2095150358623412,0.2177291188416034,0.2271338584426694,0.2356160397524425,0.2429231983760009,0.2503043611828556,0.2566755865902539,0.2624791047548291,0.2679816836914406,0.2731452877714937,0.2775987300976478,0.2811373160510671,0.2852622731991892,0.2885891725738661,0.2913183854213192,0.2943902185763979,0.2974342018251554,0.2949041406387026,0.2919738201860145,0.2887296122806027,0.2862519178994297,0.283544793324508,0.2790961143941945,0.2760344173098823,0.2760380764812079,0.2759374733065687,0.2767828418230563,0.2779361031948402,0.2781850878406418,0.278363453815261,0.279178964314462,0.2801904487087,0.2804691351617842,0.2812614905953896,0.2856253114100647,0.2892561983471074,0.2949247159649329,0.2994428969359331,0.3016619629978049,0.3048546097092194,0.3111111111111111,0.3133942582848703,0.3190055762081784,0.322493631050502,0.3254,0.3311740890688259,0.3370535714285714,0.0,2.1612496779889097,52.17389710584264,142.80888488614903,197.28553550869893,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95749,48571,462.6262415273266,4856,49.51487743997327,3824,39.39466730723037,1457,14.893105933221236,77.32698317968122,79.6862979052443,63.31555014592704,65.06094087441873,77.13649774273522,79.49838709815596,63.24313152625292,64.99169247461172,0.1904854369460054,187.9108070883433,0.0724186196741243,69.24839980700881,231.57508,162.88206754170054,241856.16559964072,170113.3667627865,541.64134,365.3315267137652,565129.5992647442,380992.1009240465,482.53753,236.29525994222976,500374.8237579505,244125.969288254,2191.46104,1034.6676195746782,2259165.192325768,1051013.232069971,868.02452,399.8968593574146,894902.4637333028,405991.65829328576,1419.90878,609.3855481273217,1452257.903476799,610247.4577405627,0.38069,100000,0,1052614,10993.462072710943,0,0.0,0,0.0,47210,492.4646732602952,0,0.0,43622,452.0882724623756,1107317,0,39693,0,0,0,0,0,84,0.8668497843319513,0,0.0,1,0.0104439733052042,0,0.0,0.04856,0.127557855472957,0.3000411861614497,0.01457,0.3578780680918448,0.6421219319081551,23.560258853725227,4.184224166211841,0.3057008368200837,0.2800732217573222,0.205020920502092,0.209205020920502,11.435842333501986,6.020472456267802,15.583527978840843,11353.46100225001,43.70711366469318,13.05341343801702,13.29887659782396,8.719932423668164,8.634891205184033,0.5706066945606695,0.7815126050420168,0.6903336184773311,0.5739795918367347,0.11,0.7497773820124666,0.9088785046728972,0.8664688427299704,0.7277777777777777,0.1685393258426966,0.4961125509070714,0.6967340590979783,0.6189903846153846,0.5281456953642384,0.0932475884244373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.0047251120439658,0.0068712827071026,0.0090824122236671,0.0114518179506737,0.0136449264294078,0.0160398906880939,0.0181593614111018,0.0205326846817382,0.0228145054810083,0.0251816625841694,0.0272747803235608,0.0291312034866987,0.0313439598006507,0.0335771242302018,0.0354419392837215,0.0375397293743723,0.039582188015393,0.0416350540964694,0.0438591921991061,0.0587854555324724,0.0723633966962034,0.0853182923760798,0.0980268483185636,0.1095487556787637,0.1247911864836861,0.135372475818768,0.1446838866293307,0.1551246833481193,0.1632050662802554,0.1746521078330979,0.1861434822163497,0.1964221591094571,0.2057768052516411,0.2146057396990345,0.2241249362683159,0.2328846690868472,0.2406725452436456,0.2486000840517486,0.2552026035936927,0.2620031722876362,0.2672302756375729,0.2726658767772512,0.2770026273799383,0.2806866117993168,0.2850572728505727,0.288627254509018,0.2927164627547837,0.2956788684230979,0.2988367799113737,0.2953851534022892,0.2917222138233394,0.2894555478980014,0.2864234587854999,0.2825309695126474,0.2799559437671138,0.2757067682242695,0.2743543976288339,0.2754995996388231,0.2756605013947373,0.2769199209279773,0.2770901792566065,0.2779914708587674,0.2788574990538525,0.2797289856113386,0.2809239553594602,0.2822132819582955,0.2857321456477574,0.2911978821972203,0.2953033345143891,0.2978349120433017,0.3007621550591327,0.3039233973761114,0.304126031507877,0.3083680073971336,0.3122598672720922,0.3204819277108434,0.3199840605698346,0.3242506811989101,0.330030487804878,0.0,2.0257971378054025,48.8108348408532,143.7669795743856,194.7883732289437,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95759,48507,461.1994695015612,4951,50.34513727169248,3918,40.33041280715128,1473,14.954207959565158,77.39144353273707,79.72981370342254,63.36142006586866,65.08696734560532,77.20057558429944,79.54403145870651,63.28865773361984,65.01910849710676,0.1908679484376279,185.78224471602311,0.0727623322488213,67.85884849855961,231.95942,163.1424678287268,242232.0408525569,170367.36556920904,544.9654,366.7874713121756,568483.6829958542,382417.06367457705,487.1492,238.6487914653399,505297.00602554326,246565.3385061481,2243.59436,1066.3905939449858,2310036.236802807,1080975.4156146904,896.30025,404.0764399005273,923952.9652565294,409982.3588661524,1426.7491,612.5134307155222,1450166.0209484226,605706.728733187,0.38141,100000,0,1054361,11010.54731147986,0,0.0,0,0.0,47461,494.9926377677294,0,0.0,44183,458.0248331749496,1108178,0,39791,0,0,0,0,0,92,0.9503023214528138,0,0.0,1,0.0104428826533276,0,0.0,0.04951,0.1298078183581972,0.2975156534033528,0.01473,0.3522595596755504,0.6477404403244496,23.345385201565733,4.088286154940297,0.3203164880040837,0.2761613067891781,0.2044410413476263,0.1990811638591118,11.609299813713443,6.364546518157281,15.823476111841188,11402.454771278091,45.17979850007223,13.342125738221911,14.317756817712484,9.005203921806375,8.51471202233146,0.5860132720775906,0.7994454713493531,0.698804780876494,0.5742821473158551,0.1205128205128205,0.7740345110928513,0.904862579281184,0.8851174934725848,0.7475247524752475,0.1509433962264151,0.5012958163643095,0.7175697865353038,0.6169724770642202,0.5158597662771286,0.1127214170692431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881905070468,0.0048744894960325,0.0073963596517927,0.0096484902651811,0.0123842157171762,0.014778926797492,0.0168738536784185,0.0192931622013181,0.0215652422641972,0.0233179176557256,0.0255430327868852,0.0276694845699277,0.0298907738309306,0.0321524875980321,0.0341112920850256,0.0362068074996126,0.0384185468847029,0.0402621917069426,0.0423908523908523,0.0443356424813792,0.0587983549403979,0.0724301021262347,0.0858791439362148,0.0985980669520313,0.1101210561835667,0.1254454890597404,0.1359148132828491,0.1465916224239006,0.15634278146827,0.1654285254864126,0.1771158524770168,0.1880576675571321,0.19963479451757,0.2080014858029344,0.2163522842193202,0.2261169753701122,0.2345545536619891,0.2427587910915441,0.2500906577217714,0.2562249087852135,0.2616571930311012,0.2672569886569396,0.2724328668683812,0.2769530969425623,0.2809942406789936,0.2850870720188902,0.2888419843133337,0.2924541491376352,0.2953922531933599,0.2980095834869148,0.2946530453343357,0.2916112216201386,0.2879149581531202,0.2851343764844751,0.282585533325441,0.2790481558781859,0.2754954160234397,0.2752151266267165,0.2750624331073849,0.2758320605264092,0.276484968369194,0.2771587195338032,0.2776455357888582,0.2776625404260064,0.2798281819927049,0.2795260244783411,0.2802968081792177,0.2857589788512076,0.291100317970579,0.2960214714240606,0.2994199220520257,0.3028120531695175,0.3057576517812343,0.3084599682467679,0.3115316819742091,0.3169055108936269,0.3227631383057913,0.3287833827893175,0.3322623828647925,0.3394324122479462,0.0,2.2007257737295016,53.140540780746726,143.4297213439343,196.16093256440843,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95726,48628,464.7013350604851,4788,48.879092409585695,3842,39.53993690324468,1443,14.729540563692204,77.37264048070351,79.73254638756111,63.34029949113111,65.08203363826806,77.18518659175896,79.54791511661102,63.26943737196013,65.01472895990753,0.187453888944546,184.63127095009213,0.0708621191709824,67.30467836052867,230.63018,162.28330698210672,240927.41783841385,169528.97539028764,542.75176,366.2429456456076,566390.5730940392,382000.9460811144,490.24103,240.7275632778848,508246.7981530619,248507.3556820208,2203.38124,1048.9452310153913,2271013.601320436,1065034.0252547795,873.618,401.63132835104585,899612.2474562814,406552.18890483736,1396.97118,601.8958941608633,1427816.1836909512,600193.242978405,0.38149,100000,0,1048319,10951.246265382446,0,0.0,0,0.0,47373,494.2753274972317,0,0.0,44305,459.02889497106327,1109091,0,39896,0,0,0,0,0,88,0.9088439922278168,0,0.0,0,0.0,0,0.0,0.04788,0.1255078770085716,0.3013784461152882,0.01443,0.3670962545308095,0.6329037454691905,22.752397870909554,4.022947156583089,0.312337324310255,0.2878709005726184,0.2043206663196252,0.1954711087975013,10.95825406512192,6.003096049756969,15.636416641087784,11363.792443095424,44.2640586479809,13.642735145819918,13.764446316395327,8.64075923538061,8.216117950385044,0.5939614783966684,0.8245931283905967,0.6941666666666667,0.578343949044586,0.1105193075898801,0.7785179017485429,0.9352226720647774,0.8567415730337079,0.7486910994764397,0.15625,0.5100340780007573,0.7352941176470589,0.6255924170616114,0.5235690235690236,0.0981387478849407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886075949367,0.004337559413416,0.0065228197246822,0.0086732206694832,0.0110626442566777,0.0131929881711016,0.0154326021365081,0.0176579261633307,0.0197078575882407,0.0219469751253966,0.0241349259240272,0.0262212274901952,0.028359313947271,0.0306900102986611,0.0328075189055906,0.034870862056492,0.036805052282845,0.0389578060822304,0.0408148417606402,0.0424104818047368,0.0576031573671901,0.0715055507308549,0.0845636035733758,0.0974763771665212,0.1103720180052919,0.1255867551909333,0.135668904657354,0.1459949557832902,0.1557757819758439,0.1646184532235233,0.1768842273025855,0.1877035257970638,0.1983143929095753,0.2072766641514386,0.2166886688668867,0.2255502508944692,0.2342752555689478,0.2423819440535825,0.2499261749540013,0.2558984706394882,0.2611674304494746,0.266752456715021,0.2717163463246527,0.2760940741895635,0.2796646211799016,0.2832949180954259,0.2868726303539922,0.2906731404748589,0.2937060223509933,0.2967477532087605,0.2952871276481342,0.292267545666804,0.2888442013190646,0.2865389055645347,0.2840204196717419,0.2810837257660082,0.2776286706662456,0.2779415135736975,0.2774707992587177,0.2776516092402682,0.2777664143996727,0.2795420685328942,0.2794781631676411,0.2804423954962542,0.2820354003382805,0.2846826399814304,0.2870777027027027,0.2930035028984159,0.2979289838536804,0.2996996762744257,0.302841520258157,0.3052863205322995,0.3098679292300025,0.3141848764736802,0.3200073862062598,0.3221209997664097,0.3267431331119831,0.3218781218781218,0.3256570035220807,0.3166167664670659,0.0,2.3474088775128816,52.02680281510393,140.51105714629014,191.4490328889517,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95738,48706,464.444630136414,4862,49.38477929348848,3881,39.91100712360818,1499,15.249952996720216,77.33281654085012,79.69958964288365,63.319784280511655,65.07151528607555,77.14614658970254,79.51710380303717,63.24945240204252,65.00506585436943,0.1866699511475786,182.4858398464784,0.0703318784691404,66.44943170611839,232.33804,163.54608655645322,242681.108859596,170826.7214235238,545.53231,367.5663888224972,569211.7654431887,383323.572268136,489.16657,239.97434597051003,507205.7490233763,247680.1476640664,2215.24176,1042.245228725479,2281213.64557438,1056024.3532918026,910.62399,405.13414208656906,936407.2573063988,408414.3517585157,1456.34066,614.4839687463527,1484994.5476195451,611278.8782000851,0.38259,100000,0,1056082,11030.959493617998,0,0.0,0,0.0,47460,495.0803233825649,0,0.0,44275,458.65800413628864,1101679,0,39547,0,0,0,0,0,98,1.0236269819716308,0,0.0,0,0.0,0,0.0,0.04862,0.1270812096500169,0.3083093377211024,0.01499,0.3614765364225407,0.6385234635774593,23.313870619382254,4.076874200885044,0.3156402988920381,0.2736408142231383,0.208966761144035,0.2017521257407884,11.518766491124186,6.254547887277168,15.924233181133909,11354.403659311907,44.21522740027817,13.042140593459017,13.648032344807056,9.066217681086677,8.458836780925418,0.5879927853645968,0.8097928436911488,0.7069387755102041,0.5721331689272503,0.1174968071519795,0.7598597721297108,0.9068736141906872,0.8765060240963856,0.7389162561576355,0.1096774193548387,0.5164233576642335,0.7381342062193126,0.6438969764837627,0.5164473684210527,0.1194267515923566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002290022190923,0.004777215420973,0.0070362473347547,0.0091481078663563,0.0114454889512879,0.0138323011734028,0.0160413628529762,0.0182848392036753,0.0201836363264554,0.0223835512640665,0.0246160470790871,0.0267586688435038,0.0289644961288133,0.0309680741503604,0.0331809787150624,0.0353706058068984,0.0373553992895535,0.0394773710810614,0.041374649058958,0.0433999020741527,0.0575646218733035,0.0722931902116485,0.0859968122142527,0.0985281749369217,0.1106133591930094,0.1254956698283792,0.1360073815609456,0.1460564129856306,0.156008673082469,0.1655584393299157,0.1768347833577397,0.1879841606439607,0.1995802431544835,0.2081688878199171,0.2165443966607639,0.2258896738047257,0.234721772798786,0.2417487199684915,0.2496567531686505,0.2561645717425647,0.2619356182453542,0.2679125174064149,0.272777863291379,0.2760881027705876,0.2798590864917396,0.2839073941665228,0.2869425914569279,0.2901974746639879,0.2928711051275744,0.2958931940211871,0.2920445676453965,0.2896643704712013,0.2873814015034207,0.2838358616110734,0.2809552806285366,0.2773174758468876,0.2739648147563248,0.2740423164405753,0.2747987679322022,0.2753527885401486,0.2768513337063981,0.2766837337534462,0.2767363789903876,0.2774553621061525,0.2785685237901586,0.2796887159533074,0.2816897412619156,0.2864250844911754,0.2917568227821596,0.2954132785979316,0.3015054930150549,0.3051920641620937,0.3072311727238666,0.3118311981914092,0.3139329805996472,0.3169104739613809,0.3211382113821138,0.325844930417495,0.3281926406926407,0.3217653715579027,0.0,2.451543931012534,49.01993800565111,140.55475782959033,203.61122495821908,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95775,48369,461.8637431480031,4819,49.05246671887235,3823,39.30044374836857,1429,14.502740798747062,77.34910350822409,79.67708318025596,63.34642956891118,65.06658199869807,77.16381955947335,79.49793260839192,63.27564888892191,65.00079660837784,0.1852839487507367,179.15057186404226,0.0707806799892694,65.78539032022945,232.56222,163.58831065382773,242821.42521534848,170804.81404732732,545.20248,367.9197369218709,568614.3148003132,383510.9547605022,487.30181,239.75427248715312,504690.1487862177,247158.48082836045,2174.45432,1038.4890433347489,2236933.1036282955,1050856.0723933678,883.62368,401.6403434629688,907134.158183242,403888.7010837573,1387.04576,593.4752724530216,1409532.404072044,586276.5024523978,0.38135,100000,0,1057101,11037.337509788566,0,0.0,0,0.0,47539,495.713912816497,0,0.0,44024,455.63038371182455,1101516,0,39564,0,0,0,0,0,101,1.0545549464891673,0,0.0,2,0.0208822761681023,0,0.0,0.04819,0.1263668545955159,0.2965345507366673,0.01429,0.3596088605068848,0.6403911394931151,23.177348054038703,4.024437517747767,0.3015956055453832,0.2934867904786816,0.2021972273083965,0.2027203766675386,11.764390943636943,6.726295196322982,15.210323844879738,11380.803425310454,43.89878134800008,13.767669595058052,13.10367319626775,8.750323017062065,8.277115539612206,0.5997907402563432,0.8110516934046346,0.7042497831743278,0.630012936610608,0.1083870967741935,0.7740585774058577,0.9046653144016228,0.8648648648648649,0.8155339805825242,0.1411042944785276,0.5205479452054794,0.7376788553259142,0.6390243902439025,0.562610229276896,0.099673202614379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002420204147764,0.0045307574575051,0.0069391606050461,0.0093142781688352,0.0116423313132956,0.0138850715121901,0.0158280420314522,0.0180947909862834,0.0205174316426206,0.022692626431078,0.0245976375613404,0.0266492904126176,0.0286416048342342,0.0306716894131208,0.0325590506531399,0.0344453625284032,0.0367020891321668,0.0388424010534938,0.0408453777496077,0.0424437432965751,0.0571863879699875,0.0714771312924245,0.0850642201834862,0.0976237769440153,0.1098676445793289,0.1252113449995773,0.1360856431183422,0.1453654075208439,0.155488911182736,0.1651077325276161,0.1760451199035605,0.1876737068639219,0.1981429534433644,0.2074010891673774,0.2159753548245131,0.2256764090239553,0.2347591255537824,0.242557449296218,0.249835515121265,0.2564293317157474,0.2624154477655084,0.2677846776362722,0.2725433833705951,0.2763964740825907,0.281164662046533,0.2854361994406594,0.2892518572250431,0.2920895332570266,0.29582205880449,0.2985277433313105,0.2954545454545454,0.292616526880242,0.2906401169985375,0.2872940124854025,0.2839935998103647,0.2804902245081729,0.2769427314164945,0.2770018317414627,0.2774848629158446,0.2779269745851637,0.2776586421019262,0.2774057588529562,0.2793942807083411,0.2803582169351066,0.2816668266001343,0.2818758778546533,0.2822073673730622,0.2882096069868995,0.2928521373510862,0.2961538461538461,0.3005449591280654,0.3050372641260109,0.307541934670198,0.3127040777583719,0.3154974609742336,0.3219976218787158,0.3195402298850575,0.3190543544150333,0.3231740801757276,0.3263075722092115,0.0,2.393867665226225,51.57482533148987,137.2915233344269,192.55903642127643,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95662,48659,465.2944742949133,4739,48.32639919717338,3754,38.604670611109945,1470,15.011185214609773,77.31532774038504,79.70726934829938,63.31028192710126,65.0762649259949,77.13371570102854,79.52836493439085,63.24238811362864,65.0116083278565,0.1816120393565086,178.9044139085263,0.0678938134726223,64.65659813841285,232.0439,163.23600808984074,242566.4318120048,170638.29743246088,543.88608,367.3423611551488,567923.355146244,383373.88007270265,487.6983,239.49286225899223,505391.5347787,246976.13024272883,2154.2884,1016.4501072905132,2218113.148376576,1028677.1207904008,914.47911,410.9398809234495,941156.2166795592,414782.9137206509,1438.40706,602.4706901531387,1470483.4939683469,601591.8565431659,0.38215,100000,0,1054745,11025.74690054567,0,0.0,0,0.0,47285,493.6233823252702,0,0.0,43961,455.2173276745207,1103761,0,39540,0,0,0,0,0,110,1.1289749325751082,0,0.0,1,0.0104534715979176,0,0.0,0.04739,0.124008897029962,0.310192023633678,0.0147,0.3632151490733279,0.636784850926672,23.25138959198216,4.025483674074254,0.299413958444326,0.2767714437932871,0.2120404901438465,0.2117741076185402,11.061048085300962,5.889622019050497,15.551341577194725,11280.695923878422,42.96595872516481,12.897937102358012,12.63556963848402,8.731407731693487,8.701044252629304,0.5844432605221097,0.8075072184793071,0.7019572953736655,0.5829145728643216,0.1283018867924528,0.7688172043010753,0.9193205944798302,0.8825503355704698,0.7431693989071039,0.1585365853658536,0.5064442759666414,0.7147887323943662,0.6368038740920097,0.5350734094616639,0.1204437400950871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.004521583973722,0.0067080720128275,0.0088391278727165,0.0110982259114583,0.0133435192258721,0.0157378319937987,0.0179051120984627,0.0202075983023981,0.0222008315071579,0.0242549176460935,0.0264712226890324,0.0284444535887333,0.0305718701700154,0.032936974876654,0.0349460141480163,0.0369787079728539,0.0389828749351323,0.0408063492723925,0.0425338989233639,0.0569724070920355,0.0704136869548828,0.0835974726589559,0.0958834918764205,0.1079392551473769,0.1238224273345047,0.1348883627599826,0.1452124826925125,0.1546682626538987,0.1633951856104916,0.174845898530109,0.1862962682285182,0.1970397779833487,0.2056306897759103,0.2137225537912656,0.2232165629816915,0.2320636941252666,0.2409405411486752,0.248683493735246,0.2542565136689658,0.2595735321355806,0.2649195671248903,0.2701196350598175,0.2739763803129308,0.2774499805749805,0.2815109490849077,0.2853711926949778,0.2881366704376454,0.2916677441878507,0.2959671997152386,0.2933367407327702,0.2902268041237113,0.287814683103046,0.2853927071759426,0.2827276366709666,0.2791585829730679,0.2748244575936883,0.2739761830863976,0.274362767603598,0.274037094940307,0.2755975873110433,0.2757285750781142,0.2775587677033143,0.2779619534987206,0.2805330271059116,0.2819330777996477,0.2828859536997585,0.2855257369115706,0.2907510601759366,0.2941129831516353,0.299963679288114,0.3044351641380768,0.3075037707390649,0.3151468904998092,0.3157745947983415,0.3141976040801802,0.3234138972809667,0.3264618434093161,0.3276097029163259,0.3379804069329314,0.0,2.520068313319403,48.08882912787404,139.05020554325915,191.6954217941991,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95631,48236,460.2900733025901,4849,49.460948855496646,3827,39.46419048216583,1483,15.141533603120328,77.3146043072854,79.73358802832067,63.296484254502126,65.08283405456604,77.10904450232243,79.53202194666146,63.21708037784072,65.0077116884836,0.2055598049629736,201.5660816592089,0.0794038766614022,75.12236608243938,229.7317,161.65371914813718,240227.22757264905,169039.034568432,541.25063,364.8940649952056,565423.3773567149,381009.7823877253,483.63277,236.9276066591978,502909.840951156,245476.1594160757,2172.46192,1038.4669729285436,2242204.1388252764,1056401.4732968842,847.12675,387.2661207854612,875690.0063786848,394820.5615842996,1432.07598,630.519843006055,1464395.0183517898,629998.3581659709,0.3791,100000,0,1044235,10919.419435120411,0,0.0,0,0.0,47039,491.29466386422814,0,0.0,43714,454.25646495383296,1115672,0,40019,0,0,0,0,0,108,1.129340904100135,0,0.0,0,0.0,0,0.0,0.04849,0.1279082036402004,0.3058362548979171,0.01483,0.3621813870776526,0.6378186129223473,23.037566055098225,4.050065675604742,0.3046772929187353,0.2884766135354063,0.2059054089365037,0.2009406846093545,10.982335285884144,5.894643823125429,16.15101420761077,11333.8478054611,44.023084643003365,13.645818590086373,13.173934526392124,8.726105271680188,8.477226254844684,0.5764306245100601,0.7916666666666666,0.6912521440823327,0.5736040609137056,0.0962288686605981,0.7510305028854081,0.9281314168377824,0.8947368421052632,0.7205882352941176,0.1155778894472361,0.4954093343534813,0.6839546191247974,0.6132858837485172,0.5222602739726028,0.0894736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0043301457241078,0.0064360255004669,0.0087080221510948,0.0108235677083333,0.0130780199633326,0.0153099213594312,0.0175298804780876,0.0195149891071994,0.0218226131836847,0.0239897435897435,0.0261222393425783,0.0284659067528085,0.0305500030910627,0.0325257801129267,0.0347316286331723,0.0367733913584084,0.0390381660367955,0.0412764806259624,0.0431372549019607,0.0574677802050778,0.0715280905938675,0.0843791021265424,0.0973093603941218,0.1091628839860656,0.1252316457170692,0.1359083038550198,0.1462296829203304,0.155886254707292,0.1656083803384367,0.1773845489857574,0.187894291846424,0.1985267677152913,0.2082169268693508,0.217023246585761,0.2255826859045505,0.2342185264663805,0.2413346254394663,0.2486620382469576,0.2549235516098322,0.2609486092776581,0.2662703891788163,0.2712765327745617,0.2756201964005227,0.280327868852459,0.2844277442404829,0.2876780867324602,0.2905792772064525,0.2932615810511881,0.2963695586237818,0.2936071154648331,0.2905805565097905,0.288266347575139,0.284414139809023,0.2814111423179231,0.2778543427661399,0.2754745057067325,0.2754632671835983,0.2752762856263044,0.2763986793968055,0.2768865898522848,0.2768762278978389,0.2778089829203853,0.2789209368472512,0.2800171628805034,0.2819719471947194,0.2814800191770777,0.2860070166723586,0.290275611024441,0.294662117111817,0.2971297668777792,0.3014489710205796,0.3042168674698795,0.3089713551507823,0.3141605295049874,0.3188920454545454,0.3225061576354679,0.329483282674772,0.3337863549877684,0.335632183908046,0.0,2.1176300133387453,52.89676222365844,134.18664202122858,194.1356935183321,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95653,48433,462.11828170574887,4711,47.96504030192466,3755,38.75466530061786,1361,13.883516460539658,77.29129418892526,79.69198657647615,63.29829466637945,65.07028535657729,77.10902548442394,79.51093856961172,63.22847423253876,65.00248635279554,0.1822687045013253,181.0480068644296,0.0698204338406895,67.79900378174375,231.4422,162.76122777078726,241959.98034562427,170157.76585239076,536.01569,362.4601291361821,559829.1637481313,378388.2410293426,486.72616,240.04978234303,505721.40967873455,248498.03737125,2154.60528,1034.6912322179082,2224540.202607341,1054005.1530066263,863.337,394.9881873948037,893267.9163225408,403715.65738086094,1324.41988,578.5148265613992,1352680.4386689386,579636.3762356619,0.37974,100000,0,1052010,10998.180924801103,0,0.0,0,0.0,46705,487.7107879522858,0,0.0,43923,456.0442432542628,1107613,0,39766,0,0,0,0,0,88,0.9199920546140736,0,0.0,1,0.010454455166069,0,0.0,0.04711,0.1240585663875283,0.2888983230736573,0.01361,0.360732451678535,0.6392675483214649,22.975531168500098,4.0227528793119,0.3254327563249001,0.2793608521970706,0.1904127829560586,0.2047936085219707,11.57442300797372,6.3887322065501975,14.80590052902181,11284.107354739295,43.25301687041974,12.90777244047535,13.873972153234662,8.020505513789054,8.450766762920674,0.5842876165113182,0.7940896091515729,0.6857610474631751,0.6097902097902098,0.1131339401820546,0.7672131147540984,0.9156118143459916,0.8801089918256131,0.7727272727272727,0.143646408839779,0.4962524654832347,0.6939130434782609,0.6023391812865497,0.5473887814313346,0.1037414965986394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0045320896279022,0.0065669945088963,0.0087795955695559,0.0111711381741598,0.0133930844833732,0.0154781083671513,0.0175220046153531,0.0197938818910518,0.0220854749861773,0.0243354664041348,0.026487685639751,0.0286402073946052,0.0308407266582171,0.033003334400066,0.0350512478409713,0.0372761565246227,0.0394331101074598,0.0412951421763965,0.04326341687169,0.0578400125398401,0.0721976663803758,0.0859038699787917,0.0986781173697061,0.1103641870429194,0.125879750653529,0.1355824248150232,0.1456631267242573,0.1553913917338407,0.1639756087087216,0.1755401733730107,0.186369099827827,0.1968958160999608,0.204615620415581,0.2131411316096894,0.2230638703738618,0.2316500949614568,0.2391673890283578,0.2460579641044852,0.2526466544454628,0.2589754866785491,0.2641423357664234,0.2693496252619614,0.2736200880169798,0.2778041218311143,0.2824821120157907,0.2863906807791069,0.2894522396801548,0.2927473894229523,0.2961487734107095,0.2923383298797061,0.2889020346957586,0.2858732394366197,0.2826165470016324,0.2801497459666637,0.2769445253014263,0.2729617265003243,0.2735599730790065,0.2743095290962816,0.2743705501329384,0.2753631326744534,0.2759567157695193,0.276795984523685,0.2782693979448543,0.2801999378183818,0.2811585192093469,0.2813549752999294,0.2870058610799351,0.2927841523384368,0.2980905791383935,0.3015579137502822,0.3066233153285437,0.309697536638603,0.315032184778493,0.3215755988023952,0.3244170907799739,0.3281273924360741,0.3231334149326805,0.3284851811196487,0.3387157341344348,0.0,1.7760993752913068,53.482225615236416,128.2282123673304,190.5451544166229,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95634,48419,463.1616370746805,4664,47.60859108685196,3741,38.56369073760378,1430,14.565949348558044,77.27514686010801,79.68568990719244,63.27600815666828,65.0560055615967,77.08826739221291,79.50233510335632,63.20629378601146,64.99014542519289,0.1868794678950962,183.35480383612435,0.0697143706568255,65.86013640381339,230.9362,162.4046453370634,241479.1810443985,169818.94026921745,541.89924,366.5701551850931,566074.3250308468,382741.61153526703,485.62687,238.5812001453776,504239.841478972,246825.0582716165,2141.78112,1016.367153093262,2210078.884078884,1033311.289060378,847.84043,392.1146753581722,872728.2242717025,396257.1900408724,1387.08856,589.9967113673001,1414648.4304745174,586813.050172441,0.37952,100000,0,1049710,10976.32641110902,0,0.0,0,0.0,47207,493.025493025493,0,0.0,43848,454.9218897044984,1104704,0,39623,0,0,0,0,0,95,0.99337055858795,0,0.0,0,0.0,0,0.0,0.04664,0.1228920741989881,0.3066037735849056,0.0143,0.3611626468769326,0.6388373531230674,23.08679766800717,3.998926652656837,0.3151563753007217,0.280940924886394,0.2031542368350708,0.2007484629778134,11.49865893962108,6.339418784112,15.291262840706109,11300.83570218082,43.21506435676149,12.94402751423128,13.389823687900632,8.573273427095495,8.307939727534073,0.586741512964448,0.7897240723120837,0.7048346055979644,0.5907894736842105,0.1131824234354194,0.7543859649122807,0.9074889867841408,0.8710691823899371,0.7198067632850241,0.1366459627329192,0.5132641291810842,0.7001675041876047,0.6434378629500581,0.5424954792043399,0.1067796610169491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0046217933774565,0.0066663284460453,0.0086642965972574,0.0107202066741931,0.0128421867361903,0.0149895990537178,0.0171514328592867,0.0193430321122959,0.0214613368283093,0.023663237360631,0.0259808302770672,0.0282421935284736,0.0301908963469943,0.0322693900310818,0.0343864440444416,0.0365053534966158,0.0385709834873818,0.0407288317256162,0.0423905562391807,0.0565862223940968,0.0702055871073202,0.0842174926991197,0.0962158403742019,0.108800135207935,0.1238376649509648,0.1345638867635807,0.1440434059608578,0.1539218938964222,0.1626989671442236,0.173877841829134,0.1851550639774452,0.1966321525885558,0.2057914126573395,0.2139397349751194,0.2237658948303626,0.232343463277089,0.2392824909747292,0.2468226968107499,0.2536424069162677,0.2600795463769292,0.2658101724319825,0.2713972375363092,0.2762821513016551,0.280558223216348,0.2849533297986461,0.2882428099007916,0.2914169370745053,0.2946567458259878,0.298452274047858,0.2958951353244688,0.2919740173951338,0.2883751707049233,0.2859534668899024,0.2819417245267343,0.2779468203850094,0.2745141377622709,0.2750519784555441,0.27540493227051,0.2754596322941646,0.2760179305192379,0.2766568903411215,0.2788824670853589,0.2803020179072564,0.2830260952836964,0.2844179414052372,0.2849983010533469,0.2899049286965224,0.2950997170898676,0.2990325765054294,0.3048372513562387,0.3077979712595097,0.3101984770939957,0.3119777158774373,0.3169184853572094,0.3224778761061947,0.3286235186873291,0.326497788500201,0.3297872340425531,0.3313046785850133,0.0,2.0271150205638278,49.724367455102254,142.08557389753875,186.03863315345973,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95691,48065,458.611572666186,4838,49.39858502889509,3811,39.31404207292222,1446,14.808080174729076,77.28391542799022,79.68215492144529,63.28504443165552,65.05981050310669,77.09512326854153,79.49412089346838,63.21327096247912,64.99029942124028,0.1887921594486954,188.0340279769115,0.0717734691763993,69.51108186640909,230.5655,162.2253114576102,240947.94703786145,169530.375330606,537.08784,361.9549243202234,560795.7070152889,377776.4934217674,480.49762,235.4303422897661,498620.36137149786,243331.4967211396,2170.15396,1035.0759069830435,2240655.2758357627,1054464.251583788,875.14694,399.4436683596224,901322.7158248946,404198.35549803305,1405.8803,606.5361462692377,1440751.021517175,609553.4724064566,0.37996,100000,0,1048025,10952.179410811885,0,0.0,0,0.0,46849,489.0742076057309,0,0.0,43631,452.4354432496264,1112752,0,39946,0,0,0,0,0,67,0.7001703399483755,0,0.0,0,0.0,0,0.0,0.04838,0.1273291925465838,0.2988838362959901,0.01446,0.3615079365079365,0.6384920634920634,23.21784158349549,4.029307557595767,0.3059564418787719,0.2852269745473629,0.2046706901075833,0.2041458934662818,11.205628713570322,6.119654949252746,15.63372131642342,11307.018977626662,44.03020640294019,13.47705592552562,13.273109446242112,8.647497818204789,8.632543212967672,0.5896090265022303,0.8233670653173873,0.7015437392795884,0.5807692307692308,0.1041131105398457,0.7495667244367418,0.9171974522292994,0.8785942492012779,0.7005347593582888,0.1475409836065573,0.5201354911554384,0.7516233766233766,0.6365767878077374,0.5430016863406408,0.0907563025210084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021077805476175,0.0042295520934761,0.0065788805750428,0.0085466611111675,0.0107343080695542,0.0129879390432727,0.0153500943444336,0.0176798627282755,0.019892610585528,0.0221680427789956,0.0243039169419537,0.0264682914800049,0.0284417735977197,0.0304950944018468,0.0325777282299021,0.034716333326439,0.036763029737851,0.0386455878841981,0.0405458819613472,0.0428030974143052,0.0570243703711441,0.0713597721847648,0.0853430724345654,0.0981407241390195,0.1102468575529545,0.1255094155878523,0.136109754284622,0.1460232597767743,0.1561411010154997,0.1655020662265872,0.1771921315009431,0.1877999371689181,0.1982860938401733,0.2071246317772156,0.2158191716811038,0.2255583181636549,0.233581130177184,0.2409456627076243,0.2483267996136583,0.2548059276931547,0.2607128368588814,0.2664509928030569,0.2711683506475025,0.274968493068475,0.278588200941686,0.2819184368292502,0.2851006274342822,0.2879117523569602,0.2920178675470965,0.294754327449145,0.2916571336285211,0.2892443858057777,0.2861018950683237,0.2831692587094077,0.2804382032479292,0.2775542056217771,0.2741060555740064,0.2738514454180656,0.2744238412855461,0.2743836129285294,0.2744532654284002,0.275587281499644,0.2772029967891545,0.2788760774655771,0.279530217527613,0.2807703333072733,0.2825038306566029,0.2886862800388508,0.294642235072807,0.2976190476190476,0.3017957047464357,0.3046743697478991,0.3074158974041261,0.313369540956774,0.3158330268481059,0.3144983141495175,0.3167692538657859,0.322304165836157,0.3247535596933187,0.3334590720482837,0.0,2.0495338177093734,50.31123819516169,147.4850433143721,187.3568530156007,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95655,48492,463.906748209712,4726,48.183576394333805,3807,39.1720244629136,1427,14.510480372170822,77.35161970545354,79.75886683612065,63.31721993396855,65.09484656833764,77.16391145728369,79.57594343578785,63.24513032227435,65.02765431923298,0.1877082481698551,182.9234003327969,0.0720896116942029,67.19224910466437,231.8206,163.0406588408379,242350.50964403324,170446.33886450046,545.89585,368.8952965651681,570100.4547592913,385060.1747584215,488.85207,239.96418911967064,508005.76028435526,248429.3215813045,2174.46124,1037.0128539552486,2238986.9008415663,1049896.5385554838,865.08856,393.4790134722668,891154.2627149653,398122.4854657532,1383.7443,599.653301448356,1408384.611363755,593065.929516322,0.38021,100000,0,1053730,11015.932256546965,0,0.0,0,0.0,47526,496.210339239977,0,0.0,44098,457.89556217657207,1102957,0,39524,0,0,0,0,0,97,1.0140609481992575,0,0.0,1,0.0104542365793737,0,0.0,0.04726,0.1242997290970779,0.3019466779517562,0.01427,0.3636363636363636,0.6363636363636364,23.16828146279606,4.069624919887517,0.3146834778040451,0.2779091147885474,0.2061991069083267,0.2012083004990806,11.284858663856154,6.022772625046053,15.423232488450278,11250.421679592231,43.88317334372267,13.057466358597123,13.689064365336002,8.714448305132441,8.422194314657101,0.5797215655371684,0.8005671077504726,0.6936560934891486,0.5656050955414013,0.1109660574412532,0.7536480686695279,0.9121338912133892,0.8495575221238938,0.6963350785340314,0.1337579617834395,0.5030280090840272,0.7086206896551724,0.6321303841676368,0.5235690235690236,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025025075733781,0.0046848856664807,0.0069620638561308,0.0091339510688449,0.0114231657325372,0.0135465471582807,0.015856829653801,0.017890147144418,0.0201022494887525,0.0221653180374884,0.0243962492562119,0.0263890744299322,0.0284341168237763,0.0302592917160678,0.0323620249765006,0.0345673136613831,0.0363191608449594,0.0383393546779618,0.040410346047402,0.0423044838373305,0.0572640730639414,0.0706596858638743,0.0847932652439984,0.0975186260891526,0.1093332770430726,0.1245249865037948,0.1352757544224765,0.145521990321274,0.1550460580513325,0.1632230073669967,0.1754429478815067,0.1860976587469258,0.196570682053236,0.2057451886234755,0.2148308864830335,0.2233358463789968,0.2309411278338305,0.2384833611023551,0.2461349860382755,0.2520751519869938,0.2575314267210972,0.2628344432760836,0.2687911490407915,0.2738402987218153,0.278123446009048,0.2822014195564193,0.2859942334336033,0.2892960462873674,0.2923291348337807,0.2959320518551632,0.2926920959707845,0.289902771492437,0.2868317207094609,0.2828063098753872,0.28101573379952,0.2770834287109524,0.2731701933083157,0.2730037774107566,0.2730057173972229,0.2734966750826784,0.2734213129748194,0.2744303996540132,0.274822842851188,0.2758046614872364,0.2777989609646823,0.2789593227338426,0.2795686783718173,0.2849572969266255,0.2888672621737166,0.2933223283417835,0.2950214012164902,0.2975681035382528,0.2994678876376686,0.3049985034420832,0.3064501245732213,0.3071235770449477,0.3097867191045227,0.3119047619047619,0.3132337246531483,0.3215744522836984,0.0,2.453520472968492,50.38508214729124,142.5837587216702,189.9000360416448,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95787,48930,468.02802050382616,4843,49.349076597033,3852,39.59827534007746,1482,15.08555440717425,77.3507064425629,79.67860682290141,63.34838135415546,65.06985035405474,77.15659913839133,79.49052809470801,63.27491543569069,65.00161710853658,0.1941073041715668,188.0787281934033,0.0734659184647696,68.23324551815801,232.08416,163.3154357293875,242291.9185275664,170498.5391852626,540.66313,365.12152276282177,563846.7641746793,380584.3097318236,493.41033,241.84475979400037,511505.5696493261,249688.55644959904,2223.56216,1051.5540986963963,2286047.000114838,1062716.543089394,907.49879,411.9018032353966,927274.1916961592,409879.36070176034,1444.47844,618.8975059100112,1470771.5451992445,611554.8812252177,0.38309,100000,0,1054928,11013.269023980289,0,0.0,0,0.0,47046,490.5154144090534,0,0.0,44624,462.2339148318665,1105798,0,39664,0,0,0,0,0,76,0.7934270830070886,0,0.0,0,0.0,0,0.0,0.04843,0.1264193792581378,0.3060086723105513,0.01482,0.3653049141503848,0.6346950858496152,23.15737935831049,4.090872447393811,0.2897196261682243,0.2917964693665628,0.2050882658359294,0.2133956386292834,11.029577707259566,5.849494779266639,15.866247153823428,11354.344094174194,44.16353227129427,13.775367537938944,12.63429756402148,8.77913335653935,8.974733812794511,0.5802180685358256,0.800711743772242,0.6783154121863799,0.6063291139240506,0.1204379562043795,0.7478411053540587,0.9047619047619048,0.8594249201277955,0.746031746031746,0.1098265895953757,0.508166295471418,0.7223088923556942,0.6077210460772104,0.562396006655574,0.12326656394453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0045214922952149,0.006707459384862,0.008918413781895,0.0111029770619814,0.0132142893501786,0.0152765888060005,0.0173485320080415,0.0191912688923633,0.0212239050347932,0.0235362829682152,0.0254673808204559,0.0274803198158386,0.0291734865095786,0.0312751345666027,0.0335540656411739,0.0356777004025123,0.0377143331052642,0.0398055933453106,0.0419642299444085,0.0567323344046078,0.0713531373840668,0.084220899027172,0.0966318112553202,0.1093674248013321,0.1253792243210959,0.1361958896265032,0.1472478821676386,0.1566720403130237,0.1656180666459447,0.1774861952789468,0.1883254436590796,0.1986243317251271,0.2072763028515241,0.2153874907923524,0.2244949886054384,0.2331873544389841,0.2410996146630267,0.2487393053430789,0.2550538274090769,0.2608143375135684,0.2656073042300552,0.2716224523573083,0.2772677765676054,0.280514723718042,0.2851306787419402,0.2891742340024232,0.2924093247792669,0.2955821111714647,0.2989468141126909,0.295522909169039,0.2927632933811112,0.2897204143883274,0.2868705814456788,0.2844349553717047,0.2816841140062657,0.2782309054122407,0.2773794483912779,0.2769217643545772,0.2772409612779006,0.2776393909313955,0.2793658941051052,0.2808435778759764,0.2818417871692707,0.2831121457198396,0.283984375,0.2847655693316232,0.2892616604771196,0.2940205751202556,0.2983759434148654,0.3015274115828711,0.306766116142781,0.3100662669611865,0.3142791551882461,0.3192867198498357,0.3249555423829283,0.3258633921719109,0.3296319144560971,0.3335195530726257,0.3457508731082654,0.0,2.4288546286536383,49.97873930165681,140.77269399142858,198.39394140929127,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95730,48519,462.9374281834325,4836,49.15909328319231,3863,39.705421497963016,1454,14.770709286535046,77.31652017658898,79.67651288734321,63.31665033110207,65.06197479003588,77.12961172122021,79.49474670427853,63.24549267010864,64.99550322882476,0.1869084553687656,181.7661830646813,0.0711576609934283,66.47156121111664,231.65428,163.00129469661073,241987.13047111663,170271.90504189985,544.43315,367.3692846078098,568075.1593022041,383113.42798266985,488.97458,240.50338330997548,506457.609944636,247953.9328077519,2220.39272,1052.7146372020522,2284004.5126919462,1064242.5960535388,902.96162,411.6532468864587,926871.6912148752,413648.6962148301,1418.69254,609.6618252161255,1442452.668964797,602689.4597586195,0.37998,100000,0,1052974,10999.415021414394,0,0.0,0,0.0,47458,495.0799122532121,0,0.0,44193,457.3487934816672,1102760,0,39598,0,0,0,0,0,89,0.9296981092656428,0,0.0,0,0.0,0,0.0,0.04836,0.1272698563082267,0.3006617038875103,0.01454,0.3606264869151467,0.6393735130848532,23.36589687125963,4.048833686229903,0.3083096039347657,0.2736215376650271,0.2130468547760807,0.2050220036241263,11.31103424687494,6.099570893701945,15.622367132432272,11337.318671797122,44.32294322939445,13.005211596078787,13.641298527097744,9.01307955497676,8.663353551241173,0.5847786694279058,0.8174077578051088,0.6960537363560033,0.583232077764277,0.1085858585858585,0.7698887938408896,0.9328859060402684,0.8526912181303116,0.7524271844660194,0.1656441717791411,0.5044543429844098,0.7327868852459016,0.630071599045346,0.526742301458671,0.0937996820349761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023601867890317,0.0045113086850295,0.006688657701091,0.0090025097290102,0.0111287434895833,0.0134744260892591,0.015828174558657,0.0182183960867212,0.0205826116297379,0.0227386741745584,0.0246493314740382,0.0267686620802957,0.0290083086541625,0.030922421072142,0.0329351817469158,0.0352947254223278,0.0372237461829097,0.0391054498682654,0.0411001621554197,0.0430787502474293,0.0576431159231146,0.0717955694149409,0.0851887198095497,0.0975835453952764,0.1097134060186845,0.1246985658078436,0.1353263810059303,0.145708476597013,0.1550871269992201,0.1631923955841174,0.1749706443168474,0.1864678253717452,0.1965788729637443,0.2059932873432529,0.2152118877270225,0.224200984086174,0.2327103012438311,0.2403294403564436,0.2476196960927836,0.2544157063984788,0.2602931479274881,0.2658901402191582,0.2712058987135028,0.2755395683453237,0.2792364798367009,0.2829188296075264,0.286433041301627,0.2903800399506342,0.2941359142901506,0.2982893469974544,0.2953695482551726,0.2917721867430081,0.2891965431193695,0.2863815142576204,0.2843261073057664,0.2798732510792027,0.2772059637306518,0.2772399081063341,0.277551996174994,0.2777182645956079,0.2775864650396766,0.2780636892438134,0.2788966267227137,0.2792123806975292,0.2810336981773765,0.2822252725907125,0.2839933104679837,0.2880673841834347,0.2922349011967715,0.2976546513458208,0.3022878028969812,0.3043592991344733,0.3065474329310237,0.3101375216051702,0.315902112217363,0.3213483146067415,0.3254961832061068,0.3234821069561721,0.322057205720572,0.3189292543021032,0.0,2.515034290223265,50.46913780974358,139.72709128554095,199.54613539182927,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95684,48207,460.67263074286194,4779,48.94235190836503,3792,39.107896827055725,1470,15.091342335186656,77.40264542862671,79.78459542928448,63.35728834693722,65.11263348083068,77.21543779169808,79.59803642124281,63.28639425566175,65.04400060443656,0.1872076369286333,186.55900804166947,0.0708940912754698,68.63287639411908,232.98176,163.8091211644349,243490.82396220893,171198.02805530172,544.33536,366.7555991607493,568349.5464236445,382775.40681047423,483.48616,236.88995423506387,502005.1105723005,245036.06796723028,2156.09512,1025.119254389029,2225120.103674596,1043898.7064741224,881.38453,399.8677462707219,909054.8681075206,406360.0870842917,1420.34844,603.6681785083485,1459284.3317587057,609587.071789003,0.37835,100000,0,1059008,11067.764725554953,0,0.0,0,0.0,47470,495.5582960578572,0,0.0,43780,454.2243217256804,1103526,0,39569,0,0,0,0,0,93,0.9719493332218552,0,0.0,0,0.0,0,0.0,0.04779,0.1263116162283599,0.3075957313245449,0.0147,0.3591746794871794,0.6408253205128205,23.14034327796177,4.043350651487606,0.3032700421940928,0.2811181434599156,0.2128164556962025,0.202795358649789,11.352342644558677,6.392323452294374,15.71968091861366,11230.353300015406,43.43879518833425,13.049204133389756,13.06799869610825,9.029695794245704,8.291896564590543,0.5946729957805907,0.8292682926829268,0.7095652173913043,0.5749690210656754,0.118335500650195,0.7687763713080169,0.9293361884368307,0.8794117647058823,0.7077625570776256,0.1446540880503144,0.5155350978135789,0.7512520868113522,0.6382716049382716,0.5255102040816326,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050429869064,0.0043479582839247,0.0065631974031243,0.0087240892518001,0.0109415198137094,0.0131152882715923,0.0154046917532394,0.0178299874465457,0.0199887588779316,0.0220846338842552,0.0242422378711932,0.0261172195016785,0.0281310727027832,0.0300318238462568,0.0321295914156005,0.034293510278751,0.0363651424784625,0.0383849075400037,0.0403852354158649,0.042274219604982,0.0567882662655133,0.0705191296881871,0.0836656312961719,0.0967443328249092,0.1089031632018057,0.123731736476264,0.1345692637476919,0.1443976070341274,0.1537516295172354,0.1632440779385113,0.1740932977257064,0.1848934098041337,0.1962006045975511,0.2047820002623868,0.213161454953419,0.2225875372233846,0.2302908033037217,0.2387648968313695,0.2463303583563629,0.2529120609046535,0.2586889522468343,0.2645847672153331,0.2702504898836084,0.2746254021022924,0.2779225501484758,0.2819510035419126,0.285867759303444,0.2891147399540685,0.2925034849501781,0.2946196123806769,0.2918689808729243,0.2897421501636381,0.2869576185671039,0.2844474467137128,0.2813945583258206,0.2766171428571428,0.2729322359915492,0.2729978576217967,0.2741831397323551,0.2743793146284761,0.2739447900756249,0.2741850220264317,0.2735227037113829,0.2740226930236681,0.2757205573582745,0.2760734609415416,0.2766980678378455,0.2815555140419702,0.2853559983279922,0.2893215339233038,0.2950241786053238,0.2985248241949981,0.3006936199462601,0.3019977384093479,0.3040351204931814,0.3076743915220682,0.3154067565520376,0.3207696885538583,0.3239247311827957,0.3293856402664692,0.0,1.9896306252187623,51.66814158430531,132.1940714454916,194.68575188817144,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95723,48301,460.3177919622244,4686,47.65834752358367,3722,38.24577165362557,1407,14.343470221367904,77.33907921770925,79.70541241985407,63.32552877917672,65.07523733506325,77.15400562193685,79.5235481163541,63.2556138491202,65.00853562652408,0.1850735957724083,181.86430349996385,0.0699149300565125,66.70170853917057,233.19978,163.92131486935625,243619.38092203543,171245.4842298677,542.50838,366.6247329957681,566116.8162301641,382374.5108236977,480.3985,236.17191902738375,497151.9070651776,243186.4432556618,2142.29872,1028.5445689244025,2205537.477931114,1042019.6702196986,866.54547,401.4766879140233,887965.3374841992,402116.8140509829,1373.16064,593.9163464530184,1402077.724266895,594315.1670370293,0.38001,100000,0,1059999,11073.608223728885,0,0.0,0,0.0,47386,494.3743927791649,0,0.0,43518,449.9963436164768,1100701,0,39486,0,0,0,0,0,85,0.8775320455898792,0,0.0,0,0.0,0,0.0,0.04686,0.1233125444067261,0.3002560819462228,0.01407,0.3582887700534759,0.6417112299465241,23.01371411657012,4.021629423019367,0.307898979043525,0.2815690488984417,0.2020419129500268,0.2084900591080064,11.446140401660376,6.230881203738202,15.201541352764922,11251.336792347103,43.07181937814341,12.841183275876196,13.126557480313869,8.476448145694077,8.627630476259265,0.5803331542181622,0.8015267175572519,0.6928446771378709,0.5824468085106383,0.1134020618556701,0.7547495682210709,0.9406392694063926,0.8700906344410876,0.7246376811594203,0.1318681318681318,0.5015600624024961,0.7016393442622951,0.6208588957055214,0.5284403669724771,0.1077441077441077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045423206391694,0.0067192432223947,0.0088705088603479,0.0112102377343519,0.0136369654441943,0.015826237699485,0.0181012567764857,0.0202049121658929,0.0221430180872201,0.0243162029392761,0.0264679601080492,0.028724815649008,0.0311653256132614,0.0329686209744013,0.035323923271806,0.0372929464535443,0.0394034993047051,0.0415852086019716,0.0434442881700265,0.0574796654589498,0.0710952540386708,0.0842883355176933,0.0962721489037278,0.107878391631252,0.1232137757422548,0.1342548880236789,0.1439491530837121,0.1538436878886965,0.1622158085040181,0.1746209631361731,0.1862683528953181,0.196342511504444,0.2061291699033906,0.2150626417420789,0.2253477417567193,0.2333541731791184,0.2414786473864851,0.2481389014979573,0.2539869850144356,0.2599710731848423,0.2654161452912491,0.2704348237296952,0.2733921453622685,0.2777440873256519,0.2812542268675069,0.2845730405801805,0.288237309209942,0.2913977384210254,0.2942500592370271,0.2902953020134228,0.2875965906751396,0.2844106356951025,0.2820764380834211,0.2802247490845477,0.2758710229268814,0.2713424259645134,0.2710364604670217,0.2710869082777104,0.2697948260481713,0.2714237643012039,0.272048539290428,0.2731857780000833,0.2755656511669339,0.2766673830503617,0.2786139125937419,0.2816801676768821,0.2853215881048324,0.289872755795712,0.296069765606503,0.2982829701445204,0.2998941798941799,0.3047738693467337,0.3100857554830386,0.3099637849382486,0.3092043314500942,0.3174773668866043,0.3218693101355452,0.3228389947528307,0.3231707317073171,0.0,2.5186415257349077,49.88144070976782,139.42942935273297,184.68047096593705,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95686,48114,458.4160692264281,4831,49.23395272035616,3837,39.51466254206467,1399,14.24450807850678,77.30793472821749,79.68340778461274,63.31631099018998,65.06990844153694,77.13361973557336,79.51271007364586,63.25017814989035,65.00720713566746,0.1743149926441276,170.69771096687705,0.0661328402996304,62.701305869481416,230.45176,162.1950515396863,240840.9798716636,169507.11058673734,540.9471,364.2408149290957,564748.2285809837,380079.7356016801,484.27426,238.0373767810605,502129.7472984553,245734.16470891304,2179.54028,1027.8504461062782,2246953.7445394318,1043646.6412588772,854.65137,386.2935332189704,879542.1064732563,390069.5563785979,1358.56208,578.2455502975347,1385854.503271116,576200.6907334591,0.38042,100000,0,1047508,10947.317266893797,0,0.0,0,0.0,47185,492.4962899483728,0,0.0,43798,453.75499028070976,1112693,0,39951,0,0,0,0,0,87,0.9092239199046882,0,0.0,0,0.0,0,0.0,0.04831,0.1269912202302718,0.2895880770026909,0.01399,0.3486985893105503,0.6513014106894496,23.53620985728984,4.098344537630696,0.3137868126140213,0.2825123794631222,0.2097993223872817,0.1939014855355746,11.322636978848198,5.93468144112126,14.904493616752704,11288.33274445704,44.04285353703001,13.282295446005593,13.706619252212056,9.048009656993472,8.005929181818887,0.5900443054469637,0.7878228782287823,0.6976744186046512,0.5987577639751552,0.1182795698924731,0.7789382071366405,0.9135254988913526,0.8681948424068768,0.7666666666666667,0.1366906474820144,0.5093005952380952,0.69826224328594,0.6280701754385964,0.5394957983193277,0.1140495867768595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047626768270438,0.0071617687337059,0.0094661574713577,0.0116141892441623,0.0138181744124475,0.0160292033322796,0.0185706993363961,0.0205585883988631,0.0231136952226919,0.0251055890433427,0.027135523613963,0.0293201147711262,0.0313481884393897,0.0336294874573053,0.0355618041412961,0.0374860126818351,0.0393982808022922,0.0414733601015249,0.0435639229422066,0.0583172298532407,0.0728064391203776,0.0861974904528096,0.0988041271811268,0.1103098544032219,0.1260019881136185,0.1369326741496743,0.1468734697353573,0.1553715476254073,0.1641206633911905,0.1757977835456807,0.1862437525692896,0.1968753057829674,0.2048433827146996,0.2134882134882134,0.2222985246555314,0.2299530275475024,0.2382511079615756,0.2462904982303294,0.2525965028799138,0.2583728735100104,0.2640913820719973,0.2695233475694157,0.2743490145302834,0.2778155918029997,0.2807229509813591,0.2844997057460902,0.2890521544259957,0.2920149824384048,0.2944748828305498,0.2908846102060051,0.2872028520695398,0.2846355414048632,0.2821606151711378,0.2805146184929878,0.2774888331395704,0.2743708577845969,0.274985225556504,0.2755298980341252,0.2753659362798409,0.2759491775977246,0.2772625014800489,0.278701537433155,0.2786717411141528,0.2789237883035051,0.2796098829648895,0.2814718073931065,0.2867920984253201,0.2904107668582644,0.2940828168791695,0.299364502950522,0.3028511087645195,0.305752018526632,0.3111346284677602,0.311237314961363,0.3161471760018748,0.3219096079018258,0.323186400474402,0.325803879883072,0.3330871491875923,0.0,2.234233781917147,49.8064223015765,140.1151529906402,199.29596429675715,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95707,48348,460.5514748137545,4835,49.22314982185211,3857,39.71496337780936,1421,14.471250796702437,77.38171245272493,79.75444519237982,63.34258245905804,65.09449863353416,77.19653582223339,79.57514136127365,63.27025933655295,65.02730648268067,0.1851766304915401,179.30383110616788,0.0723231225050966,67.19215085348651,231.69146,162.8951079283004,242083.9019089513,170201.64452788248,540.23854,364.8678666225834,563868.389981924,380631.35049952805,490.6019,240.8516981875171,509391.4238247986,249139.84243627236,2204.87988,1053.231211804611,2270167.4067727546,1067146.6406166938,900.10148,418.4191931996163,920372.1880322234,417196.4503679078,1386.41928,603.2461330065396,1412587.5014366766,597349.7282298482,0.37975,100000,0,1053143,11003.81372313415,0,0.0,0,0.0,47090,491.395613695968,0,0.0,44318,459.8514215261162,1108872,0,39771,0,0,0,0,0,98,1.0135099835957664,0,0.0,1,0.0104485565319151,0,0.0,0.04835,0.1273206056616194,0.2938986556359876,0.01421,0.3569579932311367,0.6430420067688633,23.12952642046259,4.046110142901384,0.3095670210007778,0.2875291677469536,0.1941923774954627,0.2087114337568058,11.29477526087306,6.237686814048396,15.125465151083183,11304.20053572434,44.26371895082544,13.571003379458816,13.677403540141576,8.235819980450826,8.77949205077423,0.599170339642209,0.8277727682596934,0.7252931323283082,0.5767690253671562,0.1180124223602484,0.7594617325483599,0.9309623430962344,0.8476454293628809,0.7485029940119761,0.1475409836065573,0.527736131934033,0.7496038034865293,0.6722689075630253,0.5274914089347079,0.1093247588424437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0052306663017364,0.0073466737021552,0.0096296446783007,0.0119006448725512,0.0139103869653767,0.0159979607443283,0.0181305892441504,0.0204348670558048,0.0225202170130003,0.0247685636078447,0.0268580404718637,0.0292263551382647,0.0314074104595226,0.0333429650574807,0.0355455381974958,0.0375851854920562,0.0397227295367756,0.0417477040842858,0.0437079881194309,0.0577644097711773,0.0714323104787629,0.0849108079748163,0.0980377715818822,0.1093481311122598,0.1244936166612017,0.1353284516608298,0.1448833989990416,0.154174101657246,0.1629276771057967,0.1755025057929622,0.1866317282600457,0.1965711550595043,0.2054957792065783,0.2142692117278178,0.2241155954160438,0.2327905420477359,0.2412327072320323,0.2482560711409548,0.2549800796812749,0.2607694799185637,0.2661765393426528,0.2708084381396339,0.27497274829003,0.2793876634334066,0.2840465488578289,0.2863105279600125,0.2903521037244184,0.2931377874343653,0.2952147627138736,0.292390355295856,0.2890041010026197,0.2869520038194737,0.2837925329113013,0.2815677465121778,0.2777600146165441,0.2728761772765931,0.2728295977292747,0.2727765910555046,0.2733814224695602,0.2733853110288234,0.2753463908623464,0.2765538129615799,0.2768460464807142,0.2774482479334905,0.2776576019777503,0.2795372012498944,0.2834433392209723,0.2874779541446208,0.2931379080612925,0.2949565843343681,0.3009458749343142,0.3047178075334751,0.3083446918067545,0.3088385955108503,0.3125586854460094,0.3193162910301013,0.326645264847512,0.334614328849849,0.3348659003831418,0.0,2.238614951887811,51.44946462946098,141.42888884853951,193.2479774137792,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95844,48745,464.014440131881,4790,48.65197612787446,3775,38.65656692124703,1443,14.554901715287343,77.44506122741345,79.72475218644782,63.40474875222951,65.08522198993323,77.25567650486606,79.54398587605768,63.331280309288594,65.01879495460219,0.1893847225473877,180.7663103901405,0.0734684429409142,66.42703533104566,232.1979,163.39666829686044,242266.4955552773,170481.89589005098,544.77177,367.7983047797538,567677.1524560745,383029.7408077229,483.33065,237.8138711717849,500174.0015024415,244885.30026283007,2161.096,1026.5663834207176,2213699.469972038,1029974.2325244332,890.55514,414.4341461734503,904849.8288886108,408083.2145710218,1402.28986,607.2341904601843,1416003.4222277869,592359.903041593,0.38285,100000,0,1055445,11012.113434330788,0,0.0,0,0.0,47550,495.37790576353245,0,0.0,43693,451.9740411502024,1105782,0,39664,0,0,0,0,0,78,0.792955218897375,0,0.0,0,0.0,0,0.0,0.0479,0.125114274520047,0.3012526096033402,0.01443,0.350688210652304,0.649311789347696,23.1644255623454,4.098373698479303,0.2956291390728476,0.2852980132450331,0.2129801324503311,0.206092715231788,11.17096405587519,6.056897622468607,15.40166433242842,11341.221224650848,43.275382874544256,13.165952912794635,12.527280374686017,9.006084864622656,8.576064722440947,0.5854304635761589,0.8161559888579387,0.6765232974910395,0.585820895522388,0.1349614395886889,0.7596412556053812,0.9320175438596492,0.8412162162162162,0.7014925373134329,0.1975308641975308,0.512406015037594,0.7310789049919485,0.6170731707317073,0.5472636815920398,0.1185064935064935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002196400736857,0.0045786525390249,0.006702290540746,0.0092261783930818,0.0115430731400004,0.0139483777761951,0.0162144544936038,0.0185689375630946,0.0210254367960461,0.0231699710630988,0.0252713495801761,0.027424234654633,0.0295084324479776,0.0317234994599598,0.0336506758984503,0.0354263653911661,0.0373449991209291,0.0393989637305699,0.0414244186046511,0.0435162639695323,0.0583751316516679,0.0725912614664521,0.0859285011204423,0.0987007807908655,0.1107685508649354,0.1265042435502259,0.1370808887382712,0.1472350915968887,0.1569719075958277,0.1655445544554455,0.1772009029345372,0.1876512009676862,0.1981585833251902,0.2073988338319757,0.2153661939339345,0.2238315481986368,0.2318076425736835,0.2395064225750986,0.2466584284693958,0.2524571781640102,0.2587556511383214,0.2644445483667313,0.2693112869460313,0.2739608012061167,0.2774422045945224,0.281972094396732,0.2860466279767861,0.2902163687676387,0.2928284017544086,0.2959546712346818,0.2929546798559217,0.2899990395565495,0.2876844940793535,0.285525351120567,0.2827927595123753,0.2794565151238513,0.2753274525527934,0.27518823951237,0.2761083869216282,0.277129552577064,0.2779266205254149,0.2789254575445762,0.2798435256663684,0.2804888869171731,0.2822230699537456,0.2836487568097906,0.2845950059184939,0.2890498694192264,0.2921309433178766,0.297256994859318,0.3008857556037599,0.3021795345400813,0.3056161565791934,0.3124384143106192,0.3174751826184678,0.320543093270366,0.3274282223579719,0.3284984678243105,0.3257409440175631,0.325751734772552,0.0,2.860822260692806,47.40639609667133,142.2570745959258,193.0141376086472,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95687,48401,462.9991534900248,4834,49.400650036055055,3851,39.691912171977386,1419,14.495176983289266,77.29747507811412,79.69963401950275,63.28577397120039,65.06529222018744,77.1153280673909,79.52121043170673,63.216504578458576,64.99966625212008,0.182147010723213,178.42358779601852,0.0692693927418162,65.62596806736565,231.6017,162.97693349140542,242040.9250995433,170322.96288043875,540.41976,363.997934900626,564243.2096314024,379869.3395138589,482.24724,236.26316257369143,499825.5144376979,243756.07988468828,2194.19688,1029.1695848724094,2264216.413932927,1046676.6278307494,891.08881,403.3695232654005,919382.7165654686,409685.0285912597,1380.68134,586.9020366623674,1412842.956723484,587787.7141452684,0.38044,100000,0,1052735,11001.860231797424,0,0.0,0,0.0,47148,492.16717004399766,0,0.0,43658,452.1512849185365,1105516,0,39673,0,0,0,0,0,69,0.7211010900122273,0,0.0,2,0.0209014808699196,0,0.0,0.04834,0.1270634002733676,0.2935457178320231,0.01419,0.3579905063291139,0.6420094936708861,23.10622659255175,4.0168033923676845,0.3191378862633082,0.2822643469228771,0.1989093741885224,0.1996883926252921,10.770422354425513,5.694521634231584,15.11129587241083,11243.397305589182,43.95115617951643,13.524391026898783,13.758711955802656,8.352252645425907,8.315800551389085,0.5819267722669437,0.7902483900643974,0.7127746135069162,0.54177545691906,0.118335500650195,0.7644444444444445,0.8924050632911392,0.8837920489296636,0.7309941520467836,0.1503267973856209,0.5066030814380044,0.7112561174551386,0.6507760532150776,0.4873949579831932,0.1103896103896103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021585795938222,0.0042906700748584,0.006365805370831,0.0085865257595772,0.010711669921875,0.0129662449836012,0.0151972583737913,0.0174220297788035,0.0194423989527082,0.0214541730670762,0.0235198785541377,0.0257142563617871,0.027778349348752,0.0298124484748557,0.031853381517811,0.033597103697957,0.0355825041459369,0.0376088965495758,0.0397732001664585,0.0419159180440627,0.0569396132994892,0.070532816916152,0.0831969277260136,0.0966466108469727,0.1090003902665415,0.1243732148524278,0.1349423677004394,0.1449367964814755,0.1545649919274647,0.1633941319820932,0.175781039372796,0.1867608961921588,0.1973967977344516,0.2066502328129279,0.2149211283441912,0.2247725759928999,0.2328788556101922,0.2401950845892185,0.2483527968373699,0.2539826254383753,0.2598709737198716,0.2657276335663353,0.2697841300666674,0.2736292741451709,0.2784857844687112,0.280705000123338,0.2842865909404,0.2880526858846158,0.2907664375567371,0.2935627081021087,0.2904891597454427,0.2869193659545141,0.2842227050822586,0.2819889790428255,0.2797684429271189,0.2765157305775522,0.273054345767847,0.273640700562018,0.2739370279215819,0.2739529190541235,0.275237546254114,0.2747780412755032,0.2757057918589664,0.2763971712961937,0.2780174982716284,0.277705985733485,0.2790159026071236,0.2821902448140534,0.2882215966357349,0.2934590453741897,0.2988904925130796,0.3051310330339793,0.3098214841077315,0.313921200750469,0.3171953255425709,0.3220121381886088,0.3297019216220305,0.3341989612465042,0.3390059427336575,0.3393870601589103,0.0,2.1743005451618127,48.81458088664539,142.57102127660025,199.23648394431,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95828,48530,462.5266101765664,4825,49.10881996911132,3857,39.6439454021789,1543,15.726092582543725,77.32864418348662,79.63958524366788,63.32870225298407,65.03868636417008,77.13022955788247,79.4446273054315,63.253507173665945,64.96721442779454,0.1984146256041441,194.95793823638508,0.0751950793181208,71.47193637553073,230.93312,162.59898147229237,240987.10189088783,169677.94535239422,542.10697,365.20365486368337,565110.6878991526,380505.6506070077,486.96863,239.19289512471076,504406.7808991109,246653.505991086,2202.15492,1047.5267019132916,2265082.9820094337,1060186.481939822,878.69553,406.541285330937,902046.2077889552,409365.0862600132,1493.98386,642.2504152162508,1523638.1224694245,640335.0312473925,0.38202,100000,0,1049696,10953.959176858538,0,0.0,0,0.0,47215,492.07955921025166,0,0.0,43949,454.90879492423926,1109584,0,39861,0,0,0,0,0,84,0.8661351588262303,0,0.0,2,0.0208707267187043,0,0.0,0.04825,0.126302287838333,0.3197927461139896,0.01543,0.352917824533545,0.647082175466455,23.36593349316717,3.9812384777162446,0.3098262898625875,0.2766398755509463,0.2100077780658543,0.2035260565206118,10.801201055574982,5.748585888964604,16.674400894011235,11414.354606673904,44.43396597744989,13.19531924006773,13.559407266945934,8.979893766862775,8.699345703573446,0.5701322271195229,0.8106841611996252,0.6569037656903766,0.562962962962963,0.1184713375796178,0.7386172006745363,0.9288702928870292,0.7852760736196319,0.7537688442211056,0.1420765027322404,0.4953201048296518,0.7147707979626485,0.6087456846950517,0.5008183306055647,0.1112956810631229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025522864232541,0.0049568179053643,0.0072743874600517,0.0096802372826263,0.0118771608704494,0.0142231724699653,0.0163591886657833,0.0186861522446855,0.0206634373658716,0.0227882037533512,0.0248775589663722,0.0269282870161323,0.0291149387486639,0.0312548256586058,0.0334223633869919,0.0354135889833572,0.0373371415561971,0.039389100862641,0.0411533747429212,0.0430492526749656,0.0573374638837604,0.0719326676773485,0.0849536187830826,0.0979382526638784,0.1106848102199782,0.1264824641143268,0.1371916951201408,0.1476058735901255,0.1578795613032752,0.1668131821008169,0.1781118421761089,0.188988304536455,0.1988822320564538,0.2077800002186007,0.2165628919055686,0.2255488358698301,0.2336969263919436,0.2425139589337175,0.2508799818326331,0.2572729253385623,0.2629010571216617,0.2683956291328612,0.2738719707578742,0.2769097743457949,0.2815606029270429,0.286163599585574,0.2904252386799308,0.2937062937062937,0.295850622406639,0.2988636363636364,0.2961925035703699,0.2927773415437175,0.2895186214877432,0.2865149825481194,0.2842434161583098,0.2795369163535996,0.2755986624193727,0.2755445398289644,0.2759090986583016,0.2764340505810952,0.2770300583221175,0.2784086428515101,0.2789300171097108,0.2797534270963147,0.2808781632311044,0.2825001300525412,0.2830284985112718,0.2870532366908273,0.2906155398587285,0.2938310412573673,0.2997833543961004,0.3008429926238145,0.3035915404830434,0.3084565794463405,0.3148303896832072,0.3211791168462176,0.3270421259248074,0.3300640512409928,0.3346861471861472,0.3386973180076628,0.0,2.324620010960042,51.45707884041867,142.83226969957815,193.25846334512943,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95757,48359,460.46764205227817,4775,48.790166776319225,3764,38.83789174681746,1434,14.672556575498396,77.35098256499538,79.69781181460779,63.33757887846742,65.07030794770864,77.17671739285227,79.52502307428058,63.271853843905205,65.00692701640082,0.1742651721431087,172.78874032720637,0.0657250345622131,63.380931307818855,231.77,163.09852359002397,242039.51669329655,170325.20190693514,542.79767,366.3233521020897,566371.1582443059,382077.2498115958,484.57621,238.26112413231388,502709.2536315883,246247.37673266395,2133.40184,1016.9459885487964,2202527.898743695,1036601.803052305,859.94199,392.6689716003526,886259.2708627045,398304.5142042197,1386.3892,590.1233803369172,1420197.8967595058,593039.0098779309,0.37906,100000,0,1053500,11001.79621333166,0,0.0,0,0.0,47320,493.6662593857368,0,0.0,43862,454.7865952358574,1105748,0,39642,0,0,0,0,0,98,1.0129807742514907,0,0.0,1,0.0104431007654792,0,0.0,0.04775,0.1259695035086793,0.3003141361256544,0.01434,0.3584943639291465,0.6415056360708534,22.96454994263829,4.042477469232973,0.3034006376195536,0.2911795961742827,0.2077577045696068,0.1976620616365568,11.3287102076588,6.15037374563571,15.36327919656703,11260.7772675476,43.3987343844713,13.549277646420183,12.993293095356838,8.75814911072381,8.098014531970467,0.5908607863974495,0.8211678832116789,0.6873905429071804,0.5856777493606138,0.1088709677419354,0.7558441558441559,0.9204301075268816,0.8765822784810127,0.6926829268292682,0.1538461538461538,0.5178229206592564,0.7480190174326465,0.6150121065375302,0.5476603119584056,0.0956521739130434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004520529895298,0.0066969042038294,0.0089380027626554,0.0113674492379335,0.0138245564027649,0.0158612042690696,0.0180235346947939,0.0202782121648831,0.0225465412602728,0.0247247678208991,0.0269349209607883,0.0292911119107592,0.0311914323962516,0.0333931666254023,0.0353584422027451,0.0376180417495029,0.0397223173427139,0.0416701322465274,0.0436290902272088,0.0581130736147647,0.0716131259349142,0.0843931847968545,0.0971014645121271,0.1089759131397248,0.1242270819900855,0.1352371660957996,0.1449290783915213,0.1551074034117006,0.1640494272107092,0.1750430848772081,0.1859591783727625,0.1961193770120943,0.2045994113978753,0.213512948349677,0.2221261884183232,0.2299884994584696,0.2381204098388312,0.2459641281041896,0.2527988815932712,0.2587776633773325,0.2651063232507544,0.2705035290779471,0.2749329694532222,0.2787789851557194,0.282597466486287,0.286370960690508,0.2895635721813772,0.2937343228776085,0.2954638332652227,0.2919588183836888,0.2883022916723981,0.285297886421561,0.2818630991938513,0.2790366380269777,0.2747313225199884,0.2712440516655336,0.2712842712842713,0.2724808646289698,0.2728016650952626,0.2736551415296774,0.2752486535361874,0.276362954318106,0.2760537079850613,0.275636589265685,0.2765246665803444,0.2784810126582278,0.2838470177189918,0.2873347903007597,0.2918793685698578,0.2957886193525115,0.3006518767742613,0.3031812239307725,0.3069997749268512,0.3118289522399111,0.313362976831266,0.3220287198289031,0.3285943131758109,0.3328782086291644,0.3340926347760061,0.0,1.740171660222869,50.551068261705495,140.62522380310105,188.40759515837647,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95839,48400,461.0336084475005,4798,48.8005926606079,3763,38.65858366635712,1411,14.305241081396929,77.51248185563044,79.79785735044298,63.42745123530996,65.11065492072115,77.32185850167227,79.6122874782653,63.35480707629625,65.04230015997317,0.1906233539581734,185.5698721776804,0.0726441590137128,68.35476074797953,233.88662,164.37256309728613,244041.17321758365,171509.05487044537,542.03047,365.3162842635987,564908.7323532173,380526.7471585599,487.94678,239.8144572666204,505650.4971879924,247535.5370660696,2153.13048,1031.9412053267797,2212940.1600601007,1043228.7113865396,870.8476,397.4159870259287,894041.9766483373,400173.5842887648,1373.47658,594.8285382889874,1394095.138722232,589044.1618139906,0.37909,100000,0,1063121,11092.780600799257,0,0.0,0,0.0,47229,492.11698786506537,0,0.0,44098,456.567785557028,1103416,0,39622,0,0,0,0,0,85,0.8869040787153455,0,0.0,0,0.0,0,0.0,0.04798,0.1265662507583951,0.2940808670279283,0.01411,0.3682317682317682,0.6317682317682317,23.29529499015627,4.074885455347223,0.2936486845601913,0.2864735583311187,0.2144565506245017,0.2054212064841881,11.485920956332992,6.330805021343834,15.189361074073776,11294.893643032272,43.122807684727626,13.283865346330732,12.47118736641768,8.9220637674828,8.44569120449643,0.5918150411905395,0.8107606679035251,0.7167420814479638,0.5947955390334573,0.1047865459249676,0.7688356164383562,0.9385593220338984,0.8580246913580247,0.751219512195122,0.1377245508982036,0.5121387283236994,0.7112211221122112,0.6581306017925737,0.5415282392026578,0.0957095709570957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026005302248396,0.0045978874023961,0.006821475993067,0.0091627685157938,0.0114894654503342,0.0140953930641716,0.016228543503492,0.01846753140806,0.0208714120878559,0.0230187135698946,0.0250985612615841,0.0270539129721359,0.0292428305744788,0.0314516544023053,0.0334226804123711,0.0355929227305122,0.0375099595409815,0.0397590611263166,0.0413740806914031,0.0432546664029398,0.058108249035353,0.071778089124025,0.0854011233129348,0.098397159842867,0.1107963819010814,0.1260364842454394,0.1360798736605581,0.1452041684389621,0.1549847395044074,0.1630130971631737,0.1739322121381565,0.1853756007992655,0.1959766808159543,0.2053132711668231,0.2143877147502087,0.2242052302758887,0.231943144855857,0.2392520215633423,0.2463817354080315,0.2535369003268347,0.2589444303476275,0.2645955642530985,0.2696275510805617,0.2738895321770063,0.2780493116213796,0.2825646628447969,0.2871771872780954,0.2899196355122445,0.293512281198882,0.296902457575996,0.2935450613895323,0.2896388573616485,0.2871969898308878,0.2846906098769332,0.2817067769083124,0.2780180289925691,0.2739536056480081,0.2735793598954931,0.2739588815510245,0.2732339368122116,0.2733165688739871,0.2745979697225549,0.2751726720479321,0.2769036432940342,0.2767776563910131,0.279219276364852,0.2796345748418833,0.28419424682957,0.2882354968804936,0.2919705197827773,0.2954989346590909,0.301049692331558,0.301018529880967,0.3028456794709859,0.3086781398755034,0.3155412400782239,0.3219685739697598,0.3267655091689426,0.3289858929997338,0.3312453942520265,0.0,2.2200078924834075,50.41382171693173,138.66485585439713,185.54085683034128,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95735,48286,460.2183109625529,4824,49.135634825299,3815,39.24374575651538,1433,14.571473337859716,77.31288813594676,79.67121234268069,63.318020272784125,65.06191625569728,77.12800742511484,79.491546756115,63.24726435957231,64.99606787800118,0.1848807108319192,179.6655865656902,0.070755913211812,65.84837769609919,231.4213,162.85526422865635,241731.1328145401,170110.4760313954,536.23339,361.7827291845536,559525.0848696923,377302.6366371272,488.20693,239.7667328682603,505902.000313365,247481.6138459724,2190.93056,1045.6888952016045,2255792.0091920407,1059529.7594417976,902.85638,415.5725296420332,926548.4410090356,417556.0658505589,1396.00738,598.79386206583,1420956.473598997,592798.095846071,0.38078,100000,0,1051915,10987.77876429728,0,0.0,0,0.0,46780,488.0137880607928,0,0.0,44117,456.8444142685538,1108855,0,39818,0,0,0,0,0,88,0.919204052854233,0,0.0,2,0.0208910012012325,0,0.0,0.04824,0.1266873260150218,0.2970563847429519,0.01433,0.3646331738437001,0.6353668261562998,22.96287332274708,4.075084486679367,0.292267365661861,0.2901703800786369,0.2104849279161205,0.2070773263433813,11.092080974723949,5.870835074926619,15.345167489372756,11293.262127638103,44.17094896257967,13.745963359078264,12.729948461315775,9.069038670306137,8.6259984718795,0.5834862385321101,0.8292682926829268,0.6959641255605381,0.5466998754669987,0.1177215189873417,0.7474402730375427,0.9085106382978724,0.8664596273291926,0.69377990430622,0.1461988304093567,0.5107832009080591,0.7708006279434851,0.626733921815889,0.494949494949495,0.1098546042003231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876076080131,0.0046219807620186,0.0070211751336762,0.0091618250518018,0.0114319423114085,0.0137474541751527,0.0158662180075456,0.0179885861297995,0.020211830617294,0.0225269042913752,0.0244127508176887,0.0266062865181807,0.0288488239347533,0.0306850838972837,0.0326344895895668,0.0348936961891866,0.0370197783990887,0.0391711285435603,0.0412441893114529,0.0431991997832746,0.0577898891185867,0.0730788548468106,0.0861107032741154,0.0987014352557699,0.1106963600320553,0.1255738676031904,0.1354664119707099,0.1460080902703853,0.1559308635645002,0.1635835236839,0.1752393052878662,0.1857087235837425,0.1958944472834418,0.2050855799201618,0.2137843012125079,0.2226751592356688,0.2310825892857143,0.2383191764639703,0.2461592614881513,0.2533253898239061,0.2589699074074074,0.2644483157759356,0.2701114080942356,0.2740331624095461,0.2780226585552439,0.2822884591698485,0.2862469345878585,0.2899145777190217,0.2933990708749046,0.2956575666011321,0.2919820086724662,0.2903208063473729,0.2875992789950994,0.2846122732000462,0.2815551295198181,0.2788211145491866,0.2745663366336633,0.2739708031594331,0.2754479766317623,0.2756587762393926,0.2771837842898605,0.2772267446455386,0.2780099460905177,0.277090990087983,0.2776565385261037,0.2799771256270957,0.2815652618716076,0.2871722405401162,0.290541723570403,0.294441801458928,0.3004901515839158,0.3051971986730556,0.3063264419196622,0.308670781273521,0.3098342335630471,0.3118556701030928,0.3136238951539165,0.3223090799759471,0.3225541244176487,0.3315868263473054,0.0,2.371538500566484,50.764199313741805,145.90656357538086,188.03143274244087,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95777,48438,461.9167441034904,4889,49.78230681687671,3893,40.009605646449565,1536,15.640498240704972,77.37208356525132,79.71179716063536,63.35007434272507,65.07995952948885,77.17298774382428,79.5143155666972,63.274570940780166,65.00739317944927,0.1990958214270364,197.48159393815,0.075503401944907,72.56635003957967,230.55912,162.1938172394826,240724.93396118065,169345.26790302747,545.54356,368.4659897012999,568996.9199285841,384111.6444462657,492.30985,241.874667867485,509926.28710441967,249463.00466784512,2224.79696,1062.3920386655966,2288812.512398592,1075344.5008691193,905.91333,414.9899596990011,930963.3419296908,418477.9820780591,1489.5527,640.4364074753086,1518883.6568278396,638499.4015976749,0.38082,100000,0,1047996,10942.04245278094,0,0.0,0,0.0,47485,495.1397517149211,0,0.0,44523,460.72647921734864,1110489,0,39936,0,0,0,0,0,103,1.0754147655491402,0,0.0,1,0.0104409200538751,0,0.0,0.04889,0.1283808623496665,0.3141746778482307,0.01536,0.3595836606441477,0.6404163393558523,23.290506155776495,3.992355992377883,0.2946313896737734,0.2848702799897251,0.211405086051888,0.2090932442846134,11.478102765827806,6.26612390773566,16.47564314805536,11348.938856677483,45.01189146300901,13.752133470619237,13.102949495357848,9.205928449644478,8.950880047387452,0.5972257898792704,0.8322813345356177,0.6957279860505667,0.6233292831105711,0.1117936117936117,0.7747298420615129,0.9285714285714286,0.8783382789317508,0.7777777777777778,0.1213872832369942,0.5178438661710038,0.7520661157024794,0.6197530864197531,0.5772870662460567,0.1092043681747269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485566697052,0.0048558452617493,0.0071441618802135,0.0095996586788025,0.0118681989219973,0.0141309659553673,0.0161962714939506,0.0183684715390738,0.0207038914323086,0.0230173269606689,0.0250256200040992,0.0272173074159978,0.0293367871386867,0.0316004077471967,0.0334735800024749,0.0352227640932385,0.0372946619880135,0.0393972705023437,0.0413233445205265,0.0429477235103647,0.0576056102855234,0.0721286098298241,0.0856265266115252,0.0987632267487679,0.111504424778761,0.1277508372687606,0.1382394709510587,0.1481024637665748,0.1574173860156425,0.1653168787761923,0.1769939112287269,0.1877877942797846,0.1988676497755947,0.2082663780758425,0.2162982514021775,0.2258210971585498,0.2340316355442518,0.2421449047271092,0.248985467818359,0.2546480743691899,0.2604678592490662,0.2657075405544388,0.2711351657961287,0.275144813059505,0.2794105161016435,0.2831108103119424,0.2863397000512839,0.2897237821767082,0.2932113127552867,0.2954264035619253,0.2929214237743452,0.2901061815787307,0.2878071434602718,0.2840131635922751,0.2819132369299221,0.2777021966095477,0.2737529034398849,0.2740731036289794,0.2744187634426957,0.2745964437159249,0.2756798147318093,0.2765295472894472,0.2775192504330043,0.2769494392024212,0.2778123653081749,0.2802327695944717,0.2795754005520931,0.2844180716461021,0.288887334289412,0.2919982579086986,0.2947363648728295,0.2997467820215235,0.3014040561622464,0.3055660448606601,0.3100775193798449,0.3102437880918893,0.3148371531966224,0.3149160484185865,0.3167022411953041,0.3210975157582499,0.0,2.469230170573349,51.91076665770207,147.49654170027054,192.230369066088,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95655,48728,465.558517589253,4881,49.97125084940672,3875,40.01881762584287,1485,15.116826093774502,77.25911226955019,79.65337423776455,63.27736057920528,65.04498813281153,77.06563838601663,79.46595332286134,63.20348387017242,64.97607391143862,0.1934738835335565,187.420914903214,0.0738767090328593,68.91422137290704,231.53196,162.93644762826293,242048.9885526109,170337.61709086085,542.86338,366.4269012867304,567023.8670221107,382573.0413574748,489.25283,240.06566299802915,508988.98123464535,249028.61523824595,2222.32144,1051.1734044177308,2293720.4328053943,1069378.3681784312,917.78099,422.78605371901085,944071.4233443104,426625.3835847583,1444.003,618.5404230680508,1469891.6522920914,612373.1674344243,0.38208,100000,0,1052418,11002.226752391409,0,0.0,0,0.0,47233,493.2726987611729,0,0.0,44285,460.4568501385186,1100301,0,39509,0,0,0,0,0,90,0.9408812921436412,0,0.0,1,0.0104542365793737,0,0.0,0.04881,0.1277481155778894,0.3042409342347879,0.01485,0.3634758728913299,0.63652412710867,23.50804241472472,4.075130899515678,0.320258064516129,0.2725161290322581,0.2007741935483871,0.2064516129032258,11.450100212004356,6.420253250828106,15.887152358814088,11360.687565441644,44.33915651390974,12.900555575611769,14.046183475838845,8.578258615193946,8.814158847265185,0.5878709677419355,0.8162878787878788,0.6994359387590653,0.5719794344473008,0.12875,0.751084128360798,0.930957683741648,0.8757763975155279,0.7052631578947368,0.1666666666666666,0.5187362233651727,0.7314662273476112,0.6376496191512514,0.5289115646258503,0.1167763157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268974808302,0.0048570762226345,0.0070945740210705,0.0093480734839863,0.0114247927158044,0.0134133175809178,0.0157024287782694,0.0177935216472533,0.0199241471667637,0.0221507973877617,0.0242061986733239,0.0263474037642081,0.028603754178452,0.0306161342494823,0.0327241204941125,0.0347512304065511,0.0365263692208881,0.0387270217249146,0.0407838487221892,0.0428368883050812,0.0579487501045063,0.0718535277358806,0.08578809741344,0.0988637201318463,0.1108693815478202,0.1261981676640364,0.1363486684866317,0.1464267067310253,0.1559692873641885,0.1653082482308344,0.1768259139007842,0.18863099495048,0.1991089712866541,0.2085524585853273,0.2170057899090157,0.2262015813788201,0.2346840597869864,0.2417845140627467,0.2491101584088609,0.2550263091381172,0.2606420623963059,0.2660310535697532,0.271540779763176,0.2764693860376769,0.2802013627332675,0.2837991449823313,0.2864868255959849,0.2891878107866887,0.2935888122048674,0.2962860127193156,0.2938216646431943,0.2911292881084734,0.2880939261645403,0.2852334875893984,0.282511478146801,0.2794591608091101,0.2760616536107323,0.2761981460784958,0.2770333863819155,0.2769392894779145,0.2780034822983169,0.2780298248382515,0.2793235361749273,0.2799911071587372,0.2818747010999521,0.2828688354745131,0.2828651446999915,0.288608228085532,0.2926718569982194,0.2964322361670218,0.301644096200009,0.3041092999947249,0.3083078077139464,0.310267017675818,0.3156775744130153,0.3222443481316622,0.3245693563009972,0.3292780215396889,0.3381948266373142,0.3384793516016982,0.0,1.8895206846731825,50.41797967875471,139.35398378775074,203.5267572597213,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95621,48321,462.4611748465296,4846,49.50795327386244,3841,39.62518693592412,1409,14.348312609154894,77.28554750318864,79.7165838999311,63.27381344368566,65.07158507761625,77.10181749798045,79.53747224908072,63.20414620003161,65.00633968572564,0.18373000520819,179.1116508503734,0.0696672436540524,65.24539189061329,230.96634,162.43047373805723,241543.53123267903,169869.03895384615,539.22604,363.1590828830374,563394.672718336,379264.6624518019,485.203,237.7588766496753,503939.0405873187,245928.18117568223,2199.77672,1035.0316229367895,2270699.950847617,1052614.9098386231,894.47398,409.0585666025515,920701.9274008848,413056.7308463115,1373.98042,589.4219441294882,1401135.231800546,586710.4631126637,0.37924,100000,0,1049847,10979.25141966723,0,0.0,0,0.0,46961,490.55123874462726,0,0.0,43942,456.1341127994897,1109445,0,39824,0,0,0,0,0,84,0.8680101651310905,0,0.0,0,0.0,0,0.0,0.04846,0.1277818795485708,0.2907552620718118,0.01409,0.3522074836666006,0.6477925163333993,23.14036237759548,4.0699925322430826,0.3111168966414996,0.2783129393387138,0.2074980473834939,0.2030721166362926,11.224415793016757,6.023314745509885,15.172863568295424,11271.67774042584,43.97101088518877,13.124866977406796,13.465114277580025,8.782263159172103,8.598766471029855,0.5907315803176256,0.8157156220767072,0.6970711297071129,0.5984943538268507,0.1115384615384615,0.7522361359570662,0.9246575342465754,0.85,0.7315789473684211,0.1470588235294117,0.5244215938303342,0.7400950871632329,0.6411428571428571,0.556836902800659,0.101639344262295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020875557357113,0.0044426863037458,0.0066096738821427,0.0089444529145703,0.0113640988076343,0.0134258268903625,0.015729718150381,0.0177958483164432,0.0198936279022194,0.0217734171770344,0.0238405432853581,0.0259456015783146,0.0279155944415851,0.0299144418101226,0.0319476281932139,0.033885682368274,0.0359796474574866,0.0380521139486338,0.0400437181222025,0.0419743814411482,0.0565440100355425,0.0700265140797099,0.0833114406111747,0.096444186904072,0.1086579903659258,0.1240494799940691,0.1354521980299021,0.1455877022791719,0.1556701692811436,0.1638930370975193,0.1756182296836562,0.1857220294882914,0.1962472213747112,0.2047312252098262,0.2132557216563037,0.2227487625685304,0.2308603616693117,0.2393379080327665,0.2465432814115455,0.2532375254990946,0.2596262937322003,0.2652901171705821,0.2707439622686227,0.2746756909193457,0.2792881557980269,0.2832418429655215,0.2862811862348685,0.2901611794362539,0.2930382043439946,0.2953495737549156,0.2919481148577733,0.2901315970218962,0.2873868929511265,0.2841494566393904,0.2814603909007325,0.2775643870414862,0.27407032473387,0.2738528649676933,0.2745522400777083,0.2754525189478377,0.2754987670925801,0.2773788680581512,0.2780423611981451,0.2773883436811536,0.2785932867935354,0.2805671780567178,0.2832826918748593,0.2888999316727747,0.2953078065117563,0.3005126599616483,0.3038532440088125,0.3062519668519878,0.3117020614062403,0.309984984984985,0.3138780804150454,0.3202933985330073,0.3246909858305697,0.3317346123101519,0.3304605440344734,0.3270089285714285,0.0,2.1176271212822644,48.64492572423684,143.04734266375692,199.87747171393036,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95810,48666,464.42960025049575,4784,48.69011585429496,3776,38.82684479699405,1486,15.071495668510591,77.35864855579545,79.66335560037383,63.35358995694328,65.05428484878232,77.16267093075234,79.47394789852866,63.27785887679139,64.98413079233065,0.1959776250431133,189.40770184516964,0.0757310801518826,70.1540564516705,231.10802,162.56048401105423,241214.6957520092,169669.41239020394,540.84408,365.1898752202168,563889.8966704938,380553.91422629874,482.96011,237.38158159646488,500996.0755662248,245301.4559912804,2185.30016,1045.279544970516,2247144.76568208,1057268.3279099418,877.54385,406.7231240305805,899318.3279407161,408006.7061541581,1451.8274,634.4586750071938,1473788.9990606408,625269.1245189635,0.38262,100000,0,1050491,10964.304352364054,0,0.0,0,0.0,47126,491.2326479490658,0,0.0,43628,452.3327418849807,1110411,0,39867,0,0,0,0,0,86,0.8976098528337334,0,0.0,0,0.0,0,0.0,0.04784,0.1250326694893105,0.3106187290969899,0.01486,0.3460076045627376,0.6539923954372624,23.3934264761249,4.142031016066905,0.305614406779661,0.2717161016949153,0.2055084745762712,0.2171610169491525,11.115744713314266,5.807306607267564,16.126579038670315,11299.234049425411,43.546756017238565,12.540038559720784,13.146993384849695,8.798390493722287,9.061333578945804,0.5701800847457628,0.8079922027290448,0.6837088388214905,0.5631443298969072,0.1195121951219512,0.7517064846416383,0.937354988399072,0.8746268656716418,0.7268518518518519,0.1421052631578947,0.488479262672811,0.7142857142857143,0.6056166056166056,0.5,0.1126984126984127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002206343744307,0.004456643944535,0.0067723065381145,0.0090312236800714,0.0113079877268201,0.0135801841208483,0.0158802917328769,0.0180143421092897,0.0199722125738103,0.0222592755505999,0.0243979883438661,0.0264121526673709,0.0282943267511866,0.0303466869732549,0.0324163814080092,0.0344346784272007,0.0366706676048176,0.0385129741553581,0.0407279299492069,0.0425598367567905,0.0576421491914449,0.0712538162352055,0.0844121130805756,0.0964863416120996,0.1087373524451939,0.1241637337899109,0.1348990086412553,0.1450912804800204,0.1550190597204574,0.1636268107783532,0.1750834499838484,0.1861469051251257,0.1967218463814143,0.2057153485115368,0.2153592072667217,0.2245807331212521,0.232723497828926,0.2398006255766331,0.2475773324558019,0.2539235228079822,0.2600782190132371,0.2656555372210324,0.2709623193209665,0.2756065982545315,0.2797340496651311,0.2841944351985404,0.2874155616712534,0.2904226641574691,0.293287591429866,0.2963344017516784,0.293163071706339,0.289985566018283,0.2877927408698585,0.2854671280276816,0.2827614839417574,0.2790900068707534,0.2753790271636134,0.275228155260269,0.2748686634372654,0.2750307810353134,0.2754678143712575,0.2749334122521456,0.2757696896125913,0.2770351557278439,0.2784512913891417,0.2802882489138635,0.2824325476928325,0.2859070935342122,0.2895123487021619,0.2932795060555687,0.2990366785762742,0.3020701309674694,0.3053802412047741,0.309447983014862,0.3159116227255849,0.3188540817514848,0.3193226489265195,0.3229313468894705,0.3214285714285714,0.3182703544994156,0.0,2.1913023357720305,50.95676554233713,137.33431877848582,191.19306346396053,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95856,48270,460.99357369387417,4837,49.13620430645969,3797,38.97512936070773,1379,14.010599232181606,77.41454581429173,79.7032471142419,63.37712166936033,65.06809494566434,77.23163219941677,79.52344772420032,63.30696107884409,65.00167856073368,0.1829136148749626,179.7993900415804,0.0701605905162381,66.41638493066182,231.15444,162.5652032234957,241147.36688365883,169592.93988803777,543.96429,366.6762676182615,566860.551243532,381909.78534736345,482.25047,236.0778559167082,498627.5037556334,242964.12221610636,2173.85356,1034.55670521213,2233420.63094642,1044965.9812261407,892.20265,411.5851677890114,916785.6889500916,415390.385358257,1344.74496,584.5965338294707,1367615.736104156,580360.845222369,0.3801,100000,0,1050702,10961.24394925722,0,0.0,0,0.0,47330,493.1042396928727,0,0.0,43625,450.6447170756135,1112591,0,39967,0,0,0,0,0,97,1.011934568519446,0,0.0,1,0.0104323151393757,0,0.0,0.04837,0.127255985267035,0.2850940665701881,0.01379,0.3614624505928854,0.6385375494071146,23.421767564115672,4.091455811863366,0.3078746378720042,0.2833816170661048,0.207795628127469,0.2009481169344219,11.189211744877738,5.877478698764778,14.867321984403642,11252.13981760501,43.61812699387759,13.193852739826182,13.38437149431456,8.757389127531043,8.282513632205802,0.599157229391625,0.8150557620817844,0.7194183062446535,0.5830164765525983,0.127129750982962,0.7611301369863014,0.907563025210084,0.8798798798798799,0.7252747252747253,0.1807909604519774,0.5271966527196653,0.7416666666666667,0.6555023923444976,0.5403624382207578,0.1109215017064846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.0044982523681677,0.0069562043055456,0.0089537693135443,0.0111190161601788,0.0130444957722402,0.0153321108394458,0.0173815474065384,0.0195924204504826,0.0217046651733202,0.0238153770511953,0.0257572804579072,0.0275171853967797,0.0297066392177045,0.0316939890710382,0.0339089838666363,0.0360158092952034,0.0380346353545926,0.0398430362926667,0.0418578041296094,0.0563161461863302,0.0697399774256929,0.0828051501786219,0.0961160868971744,0.1080642783429161,0.1239451198259381,0.1344379350163677,0.144542710149241,0.1542885187832748,0.1623558140282106,0.1748195324518842,0.1861943687556766,0.1971682531403485,0.2066765011200349,0.2155526738026683,0.224655321220705,0.2328241721485115,0.2410391244747073,0.2476840565577767,0.2535225776912951,0.2601859131480368,0.2662544851041947,0.2713557738918644,0.2748961040516425,0.2789313904068002,0.2822726656895469,0.2867398754283713,0.2902360583217868,0.2916753004558641,0.2948330673139073,0.2916577022375215,0.2891773108089548,0.2864632380845292,0.2824078744469585,0.2798186881554779,0.2764220197487905,0.2733289212442091,0.2738696341323921,0.2740970002040677,0.274468047347779,0.275133062865225,0.2750765847144765,0.2773135445248191,0.2765858415709916,0.2771472173208069,0.2771541379577301,0.2773315295510273,0.2807887882921989,0.2840786871595601,0.289961511271699,0.2939249820531227,0.2989167408027631,0.3062156656996481,0.3069432054713054,0.3123161764705882,0.3160213308601901,0.3161212848994296,0.3205358928214357,0.3266630611141157,0.3335823683227493,0.0,2.481277244122466,50.49168795976885,137.53813705406006,192.6139655951725,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95712,48316,461.99013707790033,4746,48.35339351387496,3840,39.545720494817786,1502,15.337679705784018,77.36002699221102,79.73236763249264,63.33690834044432,65.08883789947075,77.16398024927024,79.5403217793322,63.26189692522693,65.01804821947604,0.1960467429407799,192.0458531604368,0.0750114152173964,70.78967999470365,232.11012,163.2324835010406,242508.9017051153,170545.47340045197,539.03854,362.6980352675489,562636.6495319292,378395.90152493824,481.89519,236.24673507563293,500063.6179371448,244179.72916828343,2189.52376,1037.2564990896449,2255414.535272484,1051599.0988291814,914.56887,412.5651791207896,940238.6012203275,415784.6300534645,1461.0619,630.0784787673291,1492679.0997993983,627609.6449005359,0.37968,100000,0,1055046,11023.13189568706,0,0.0,0,0.0,46971,490.1788699431628,0,0.0,43432,450.3928452022735,1109631,0,39879,0,0,0,0,0,102,1.0656970912738215,0,0.0,0,0.0,0,0.0,0.04746,0.125,0.3164770332911926,0.01502,0.3667476711219117,0.6332523288780882,23.18257098935917,4.120495415295185,0.30859375,0.2630208333333333,0.2158854166666666,0.2125,11.171632314739131,6.09830950711944,16.107475854217185,11293.705661425878,43.8836776053342,12.38449905441796,13.45919484206693,9.088303896916477,8.951679811932834,0.57578125,0.7782178217821782,0.7240506329113924,0.5657418576598311,0.1200980392156862,0.7435233160621761,0.9176755447941888,0.8923512747875354,0.734375,0.13,0.5033557046979866,0.6817420435510888,0.6526442307692307,0.5149136577708007,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498192057205,0.0043588885847803,0.0065250702738905,0.0089091610963245,0.0111172138817689,0.0132072013359944,0.015565749235474,0.0177488824021719,0.0198108867876309,0.0218370564507872,0.0241341836002378,0.0260256252309966,0.0278374793044229,0.0298807243062851,0.0319648366161433,0.033829611248966,0.0359584783689706,0.037937763384609,0.0399421670705957,0.041797359398935,0.0570142457283703,0.0704633709793906,0.0833718002517834,0.096122090516108,0.107993842780027,0.1236507416295763,0.1349401680386998,0.1448291275982077,0.153743458293282,0.1631945934348852,0.1756270470608515,0.1866389619384652,0.1971434472113827,0.2068611159699143,0.2151396174953534,0.2252026757630797,0.2326364873608353,0.2407884232659073,0.2482513122243761,0.2539642558648088,0.2603663190027983,0.2656359556864395,0.2707569702272566,0.2745076913868438,0.2781898299323856,0.2822918205544886,0.2863877357074976,0.2894125119085424,0.2919575898629428,0.2953302315772825,0.2930714381810843,0.2900679373985752,0.2869316581215843,0.2844158659056426,0.2823291860913977,0.2793755638120575,0.276188672096988,0.2760109227071308,0.2767261337328067,0.2781066140528626,0.2784751105059962,0.2787542762769848,0.2801089578308242,0.2799103576817254,0.281323820659047,0.2826013819518128,0.2849736528981812,0.2896771971570807,0.2936081033880545,0.2983526057341992,0.3024133072762805,0.3056569825898291,0.3074231442139465,0.310612922705314,0.3163993696115695,0.3256494266323426,0.333383640205252,0.3352635782747604,0.338139281828074,0.331560957083175,0.0,2.2945237292882967,50.2197232951726,137.79391269074674,198.1586722227552,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95756,48115,459.8458582229834,4686,47.74635531977109,3685,37.92973808429759,1386,14.119219683361878,77.33346816806463,79.69530497493322,63.32120940122799,65.07021392042738,77.15337438630304,79.5188135237162,63.25380733172567,65.006501738723,0.1800937817615846,176.49145121701793,0.0674020695023216,63.71218170437487,233.233,164.07740364115787,243569.4264589164,171348.86499769628,542.54086,365.0938936865119,566037.8775220352,380728.2018142816,479.13039,234.4247746410615,497045.1459960734,242312.22443912996,2112.29668,997.4593657084332,2173886.085467229,1010210.5549400352,863.63982,397.99995892911136,887007.7801913196,401047.1051864704,1351.39058,574.494673676816,1377707.2559421863,571056.7537527917,0.37852,100000,0,1060150,11071.337566314382,0,0.0,0,0.0,47338,493.7758469443168,0,0.0,43269,448.53586198253896,1102799,0,39530,0,0,0,0,0,95,0.9921049333723212,0,0.0,2,0.0208864196499436,0,0.0,0.04686,0.1237979499101764,0.2957746478873239,0.01386,0.3546606704824203,0.6453393295175798,23.20780282351438,4.200201297801922,0.3248303934871099,0.2667571234735413,0.1997286295793758,0.2086838534599728,11.416622231062371,6.095350663372343,14.827438408218134,11242.53955223418,42.34635593582562,12.26017957233845,13.516481982333952,8.271172155760077,8.298522225393144,0.5937584803256445,0.8341810783316378,0.7017543859649122,0.5760869565217391,0.1352405721716515,0.7711941659070192,0.9377880184331796,0.8662613981762918,0.6793478260869565,0.1933333333333333,0.51854714064915,0.7522768670309654,0.6394009216589862,0.5416666666666666,0.1211631663974151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350676326055,0.0047154504522776,0.0068611331019223,0.0091751508870328,0.0113504607310673,0.013511999918541,0.0155874077396729,0.0177685697372986,0.0199807857405666,0.0219360650200116,0.0240509313841075,0.026128022175453,0.0281160016454134,0.0300212156790047,0.0318806487557261,0.0338718513235552,0.0360962982138234,0.0379259535964803,0.0399530086913128,0.0418372129354788,0.0561696886188791,0.0707901622187336,0.0838256125072136,0.0960834630432039,0.1079123034578759,0.123339959397733,0.1338135755055274,0.143939635814097,0.1543176915354877,0.1632191303415366,0.1751596816061869,0.1864790012333124,0.1964831388583794,0.2051949472302728,0.2147013209850743,0.2235053144375553,0.2320003571468431,0.2399392473420712,0.2474642038621253,0.2537655084008607,0.259381285981827,0.2655859183244115,0.2707032727960651,0.2749485227218312,0.2784945193520225,0.2828652928736536,0.2867079597392542,0.2893921698065302,0.2922045199054153,0.2946749772688339,0.2907442773757969,0.2874006561157399,0.2842489813123507,0.2811012720297672,0.2788932056110798,0.2759622589573807,0.2727746788236967,0.2724146401375583,0.2724360612721294,0.2731075980915758,0.2741881298992161,0.2758613904248411,0.2773310557453545,0.2784041630529054,0.2791248773248438,0.2788903607885919,0.2792881998472289,0.2832677042315145,0.2878793169675595,0.2930763178599528,0.2983405483405483,0.3009948939306206,0.302704728590168,0.3067786351944318,0.3101159311892296,0.3114227980506359,0.313635669567873,0.3132481233515926,0.3134535367545076,0.3155878973573343,0.0,2.022173433437191,47.6572880088942,142.26075251794472,182.61883624994715,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95803,48889,467.0834942538334,4775,48.66235921630847,3790,39.03844347254262,1431,14.57156874001858,77.34149214859087,79.68170641218533,63.33904717832892,65.07295898515977,77.15850200901306,79.50232582806365,63.27016364053768,65.00809764499469,0.1829901395778108,179.380584121688,0.068883537791244,64.8613401650806,232.03004,163.2645251247979,242194.96257945997,170416.92339989136,543.02027,366.8725882559416,566312.704195067,382448.2304895897,489.6764,240.1307131677709,508267.9769944574,248436.89731418624,2165.1748,1027.176187577262,2231173.053035917,1043320.2588408114,865.11545,396.7207758661264,889070.8850453536,400156.47303959774,1386.52692,590.7654158509685,1413261.213114412,586956.0280357747,0.38289,100000,0,1054682,11008.861935429995,0,0.0,0,0.0,47272,492.8968821435655,0,0.0,44310,459.6098243270044,1106082,0,39699,0,0,0,0,0,94,0.9811801300585576,0,0.0,2,0.0208761729799693,0,0.0,0.04775,0.1247094465773459,0.2996858638743455,0.01431,0.3610722144428885,0.6389277855571114,23.501382452442563,4.073628659118024,0.3313984168865435,0.2696569920844327,0.2005277044854881,0.1984168865435356,11.602192509401066,6.537422347781964,15.288742588469846,11368.717100084628,43.532342908411295,12.429542704508233,14.35553454680781,8.460793923540937,8.286471733554306,0.595778364116095,0.8043052837573386,0.7093949044585988,0.5947368421052631,0.1236702127659574,0.7797202797202797,0.9343065693430656,0.8861788617886179,0.7835051546391752,0.1705882352941176,0.5162509448223734,0.7168576104746317,0.6358511837655016,0.5300353356890459,0.1099656357388316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982029437685,0.0044808045172997,0.0066670049216094,0.0089318375807828,0.0114564786081294,0.0137820741359464,0.0160125652741514,0.0179109354736594,0.0200014315953084,0.0220972977400956,0.0241774241507654,0.0263293011028732,0.0284709222192507,0.0306782594362947,0.032513026879224,0.0344820457693341,0.036594079090429,0.0388182327434179,0.0405985348365979,0.0423607062546847,0.056719532554257,0.0708198709704403,0.0848232063884638,0.0973959099602766,0.1094670502808603,0.1255721035441352,0.1363617088943072,0.1462677996022673,0.1562466648167517,0.1657878378668038,0.1770226781043817,0.1882276633695476,0.1984226135511836,0.2082741438468431,0.2163846838824577,0.2255365305648098,0.2338979273456652,0.2419123094537862,0.2497141498647164,0.2557682418147534,0.2616813801857942,0.2665686549052553,0.2717974157276829,0.2760348766281142,0.280458683346061,0.2842088436377945,0.288103857196355,0.2917972069660954,0.295135707187383,0.2979126137020874,0.2956153897804338,0.2928827234182686,0.2898047539393598,0.2869418532562465,0.2843500696936445,0.280543677458766,0.2769906332432987,0.2779816513761468,0.2775390491780915,0.2782648987738808,0.2784668050956844,0.2788334418595473,0.2800326202873094,0.2802756590392078,0.2813632545301812,0.2833961773501495,0.2840429174751741,0.2879246234322808,0.2931749490405567,0.2965019433647973,0.298980850966592,0.3013188683258881,0.3058080808080808,0.308898921111026,0.3127238454288407,0.3141907925961082,0.3165534280420012,0.3202868852459016,0.3248053392658509,0.3258298359404807,0.0,2.082387223491472,49.756910939077954,138.9145777467636,194.63600773662347,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95709,48159,459.5492586904053,4863,49.640054749292126,3885,40.07982530378544,1440,14.700811835877504,77.3419109081298,79.71038733764948,63.33255108723839,65.0809473766848,77.15847338718584,79.53042422366569,63.26317614650424,65.01534526088076,0.1834375209439684,179.9631139837885,0.0693749407341428,65.6021158040403,232.96262,163.88151546561278,243407.22398102583,171228.949697116,544.88862,366.9755054945737,568785.5269619367,382899.8824415589,484.70493,237.3709446582922,503674.3566435758,245864.99214478777,2227.51052,1037.633629249617,2299371.1354209115,1056364.895396501,896.27372,407.9176299675583,922056.5255096178,411840.9417697664,1402.58126,598.2597210787244,1433050.3923350992,597341.1717742638,0.37834,100000,0,1058921,11063.964726410264,0,0.0,0,0.0,47449,495.21988527724665,0,0.0,43760,454.3564346090754,1101258,0,39495,0,0,0,0,0,102,1.0657304955646805,0,0.0,0,0.0,0,0.0,0.04863,0.1285351799968282,0.2961135101789019,0.0144,0.3514364423455332,0.6485635576544667,23.363508454759533,4.097655911025843,0.3073359073359073,0.2707850707850708,0.2149292149292149,0.2069498069498069,11.183896940958933,5.969323945671386,15.352363247689985,11247.35491803108,44.17136760599583,12.853442565332694,13.43056798784422,9.15250816008614,8.734848892732778,0.5763191763191763,0.80893536121673,0.6909547738693468,0.5724550898203593,0.1057213930348258,0.7685352622061483,0.9205607476635514,0.8909657320872274,0.7512953367875648,0.1524390243902439,0.4998200791651673,0.7323717948717948,0.6174112256586484,0.5186915887850467,0.09375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0047430830039525,0.0067863664029214,0.0093950597221093,0.0114288038394273,0.0135721267410605,0.0156579711917795,0.0179635829182657,0.0201042518397383,0.0224241865987083,0.0246232701178882,0.0269537627452792,0.0289686661250681,0.0310622997434655,0.0332593777410866,0.0351268930583553,0.0372936473414942,0.0391456858797401,0.0408642848230254,0.0429041872485879,0.0574018757963779,0.071234167277295,0.0839287775294574,0.0960925585064422,0.1086358026644726,0.1241032694952915,0.1348320566954529,0.1450426376808508,0.1550698161383716,0.163893448338751,0.1751394782758546,0.1862858627071135,0.196821529190371,0.2053976620337463,0.2143524883145449,0.2237092631951824,0.2317358726194193,0.2390590932590078,0.2470944406018618,0.2537120501498547,0.2599285491311435,0.2645889369664366,0.2703895151464969,0.2739934372829393,0.2768194233687405,0.2807821683362289,0.2845573232860594,0.2876811594202899,0.2909109725492225,0.2938985058908708,0.2908198924731183,0.2871826540414436,0.2842746463058612,0.2817250115154306,0.2781938195595548,0.2747197437657286,0.2718318072213204,0.2717506826468712,0.2720107585455535,0.2736120996441281,0.2746042413381123,0.2744924282704161,0.27605309919515,0.2767556477331014,0.2776939112932212,0.278870607774952,0.279300754866905,0.2842213948249429,0.2899580125962211,0.2924569392199564,0.2956604457329226,0.2986463620981388,0.3025252208785011,0.306517775752051,0.3079305490380103,0.3106176922168419,0.3095890410958904,0.3187461835945451,0.3186874304783092,0.3197563760944042,0.0,1.9520366224551848,48.18913334028257,143.7870676642946,204.52685367340692,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95711,48184,459.8217550751742,4857,49.398710702009176,3881,39.97450658753957,1497,15.254254996813325,77.33810060160408,79.72024221682986,63.31256206328344,65.07480171681594,77.1360137843569,79.52322761286392,63.23551868790237,65.00251685875438,0.2020868172471779,197.01460396593973,0.0770433753810664,72.2848580615647,231.00264,162.5217971389826,241354.3270888404,169804.7216505758,538.10413,362.592306721035,561663.2675450053,378286.416694859,484.14265,237.38000079034285,502687.44449436327,245562.7794219824,2223.60828,1062.5224697838364,2292071.1308000125,1078955.2691533845,895.75574,412.2110016226056,920327.4649726782,415214.21915083553,1451.93544,628.7714723294515,1480946.8086217884,624391.5972731791,0.37853,100000,0,1050012,10970.651231310923,0,0.0,0,0.0,46837,488.773495209537,0,0.0,43782,454.3573883879596,1113151,0,39965,0,0,0,0,0,90,0.9298826676139628,0,0.0,2,0.020896239721662,0,0.0,0.04857,0.1283121549150661,0.3082149474984558,0.01497,0.3545777426992896,0.6454222573007103,23.29302311316656,4.07388753857247,0.3027570213862406,0.2764751352744138,0.2195310486987889,0.2012367946405565,11.26251857640042,6.059338724541675,16.116469001767467,11278.96480287074,44.721053658308016,13.260834174234914,13.30886858983325,9.619427403314443,8.531923490925411,0.5934037619170317,0.8136067101584343,0.708936170212766,0.5868544600938967,0.1241997439180537,0.7692307692307693,0.9202733485193622,0.9006024096385542,0.7415254237288136,0.1818181818181818,0.5163083765752409,0.7397476340694006,0.6334519572953736,0.5275974025974026,0.1074380165289256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025541748596217,0.0048792858592006,0.007046114484131,0.0090452669878244,0.0111516976831737,0.0132818627201336,0.0154723293148114,0.0175472642405548,0.019788311090658,0.0219935493779757,0.024272193111086,0.0261944612730651,0.0283472824857595,0.0305645377216649,0.0327325995234017,0.0346292162698412,0.0365174356000993,0.0387612180318514,0.0405767871252131,0.0427526720420026,0.057241026390818,0.0716252289976445,0.0848889308611662,0.0978931978584876,0.1102755834924117,0.1251692620176032,0.1361808245344086,0.1457918446022939,0.1544931811380445,0.163739364612727,0.1753194974246244,0.1866777829509403,0.1965382103200522,0.2054194847549631,0.2140694999394599,0.2240054976114208,0.2322641172265904,0.2399342645850452,0.2467351064071407,0.2532151945164027,0.2592202318229715,0.2647310191418369,0.2699572492687375,0.2749991010751141,0.2786445043862847,0.2829543912458826,0.2863316922845654,0.2894173693730416,0.29253286704229,0.294088936377907,0.2906124315671953,0.2870165404023044,0.2853303313867586,0.2823712723442932,0.2807715133531157,0.2777157368171457,0.2741606761987519,0.2734624388167695,0.2741108100277792,0.2748713932252265,0.2755353739208431,0.2768627605500611,0.2776117531504044,0.2782142857142857,0.2803650998993819,0.2814996767937944,0.283505737380589,0.2867844434733754,0.2918202684843848,0.2978581515769653,0.3005826983415509,0.3037895396179141,0.3065103363159518,0.3090381179273377,0.3116155118544385,0.3165969316596931,0.3188794516465504,0.3221238938053097,0.3233564938535542,0.3254945875326614,0.0,2.221975759415162,51.4400480993227,145.49870816793378,194.17234905438423,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95661,48070,459.1526327343431,4816,49.29908740238969,3814,39.389092733715934,1477,15.126331524863842,77.27782633283482,79.68774667683599,63.2892740309558,65.0718235632016,77.08559341578587,79.49767704502797,63.21733433022821,65.00258709083592,0.1922329170489547,190.06963180801503,0.071939700727583,69.23647236568797,230.8779,162.38587437216907,241350.0799698937,169751.3870565529,539.68892,363.8746389345296,563719.2377248827,379930.3571304186,480.97148,235.0271771533419,500069.2131589676,243549.5592667668,2171.31344,1020.0915830192744,2243922.016286679,1040482.9376854456,889.04384,399.8990763185531,918250.4155298398,406918.98089979537,1433.84094,607.7519383566536,1470162.4695539458,611368.3723657422,0.37899,100000,0,1049445,10970.458180449712,0,0.0,0,0.0,47023,491.0778687239314,0,0.0,43523,452.20100145304775,1111299,0,39933,0,0,0,0,0,90,0.9408222786715588,0,0.0,1,0.0104535808741284,0,0.0,0.04816,0.1270745929971767,0.3066860465116279,0.01477,0.3486658701712465,0.6513341298287535,23.18505433198005,4.046435638775934,0.3028316727844782,0.2787100157315155,0.2147351861562663,0.2037231253277399,11.340478893936911,6.167664867538517,15.710988372047964,11295.904731107456,43.68255772338621,12.961693398584613,13.082214939614971,9.065217087511648,8.57343229767498,0.5833770319874148,0.8043273753527752,0.6883116883116883,0.5873015873015873,0.1209781209781209,0.7350579839429081,0.8988505747126436,0.8584905660377359,0.7105263157894737,0.1404494382022472,0.5202376531748979,0.7388535031847133,0.6236559139784946,0.5500794912559619,0.1151919866444073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0043607009573259,0.0064767628367815,0.0087807555108387,0.0108957729284297,0.0130398019580077,0.0152371239163692,0.0173736300775225,0.0195065567398375,0.0216654203501295,0.0241435897435897,0.0259876327629065,0.0278749588409614,0.0298682827283408,0.031932686351435,0.0342755489362582,0.0364437075799181,0.038386858964375,0.0402805381837858,0.0425290112708656,0.0572634746807665,0.0709513237265415,0.0837347943365135,0.0965433787551954,0.1081859620985101,0.1244297674615523,0.1348688052838924,0.1441431843605177,0.1543784223134839,0.1633584180524095,0.1750387897595035,0.1861026601561231,0.1978667827601219,0.2075217752877839,0.2152394791013066,0.2248999988919544,0.2330940392323237,0.2407376154633723,0.2476881006683232,0.2547641665999016,0.2602034917331483,0.2653905483101949,0.270512835672646,0.2743946999556732,0.2791211727412949,0.2821834050369201,0.2851243289241512,0.2880277837851591,0.2923116782175011,0.2956871537852809,0.2928133629689499,0.2901897033904143,0.2880856345020167,0.2860220339473152,0.283879216782385,0.2801746591083193,0.2765482169167155,0.2768768176664859,0.2768789188635082,0.2770460791662205,0.2776249555568031,0.2786334913112164,0.2799506658026214,0.2817855630585456,0.2840195561520395,0.2838724739941373,0.2839208112023177,0.2877026517531733,0.2916622635527845,0.2944643568299482,0.3003101623791279,0.3032826006257623,0.3078952327115131,0.3091477836270695,0.3123416236508681,0.3152135125490662,0.3162576687116564,0.3132036847492323,0.3133333333333333,0.3214013709063214,0.0,1.9071773181912817,49.03756311736881,140.5908911849894,198.47043785737023,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95821,48426,462.7795577169932,4822,49.15415201260684,3829,39.40681061562706,1457,14.80886235793824,77.39792083527668,79.70134555393813,63.37134666233783,65.07167081222931,77.20608284747568,79.5144326917899,63.29808715375619,65.00285457906745,0.1918379878009943,186.912862148219,0.0732595085816356,68.81623316186847,233.1384,163.91077533101753,243306.1646194467,171059.34537420562,543.30588,366.35169121555015,566427.2132413563,381755.5976409661,486.22198,238.6095332376395,504074.9313824736,246399.51923791663,2183.55192,1043.017491264689,2247526.659083082,1057250.5935699788,851.62525,391.0807856476288,873475.720353576,392863.23992465,1409.65832,612.5230217654276,1433744.7741100593,607102.9812170976,0.37961,100000,0,1059720,11059.371119065758,0,0.0,0,0.0,47381,493.8792122812328,0,0.0,43999,455.8290980056564,1102823,0,39550,0,0,0,0,0,91,0.9496874380355036,0,0.0,1,0.0104361256926978,0,0.0,0.04822,0.1270251047127314,0.3021567814184985,0.01457,0.3645791783007578,0.6354208216992421,23.152459718843797,3.961987115820834,0.3133977539827631,0.2885870984591277,0.2047531992687385,0.1932619482893706,11.323135085849016,6.214205319758139,15.85447268246146,11241.703033397049,44.15177899035002,13.548043492941556,13.60678111205791,8.817544850199921,8.17940953515064,0.5870984591277096,0.8081447963800905,0.6766666666666666,0.5956632653061225,0.1027027027027027,0.7435254803675856,0.90020366598778,0.845679012345679,0.7463414634146341,0.1186440677966101,0.5159574468085106,0.7345276872964169,0.6141552511415526,0.542314335060449,0.0976909413854351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023487486838908,0.0046307085896097,0.0065317713880014,0.0085801610430226,0.0106538711776187,0.0128635688261993,0.01504962197632,0.0171792909971945,0.0192596528153832,0.0212602694877277,0.0233287229137851,0.025432423005109,0.0274518667680358,0.029379984563931,0.0316529411158409,0.0337418562150888,0.036116283881647,0.0381111306889439,0.040041952668252,0.0418184467434066,0.0566346755685374,0.0706022634562684,0.082785449893569,0.0953602556958565,0.1075810599991567,0.1225262178619756,0.1329473639563982,0.1436128318113119,0.1533366805183151,0.1616864730361663,0.1738549844387727,0.1854227279118312,0.1960865311446896,0.2048016267806579,0.2140972069496371,0.2240205466561867,0.2328980966292385,0.2409641263167362,0.2483335600598558,0.2556285178236397,0.2610042537451452,0.2665007826919932,0.2709850562754185,0.2752007083118965,0.2791667171613122,0.282940684635058,0.2869982025164769,0.28964265773311,0.2932184115989972,0.2955236053195827,0.2922936616507068,0.2893892878679897,0.2862454574791991,0.2830362409541485,0.2795910516659762,0.2757338939414713,0.2717550518971193,0.2725490836627356,0.2732110372498682,0.2726561666725922,0.2733593036476487,0.2737152402476172,0.275039580034997,0.2772248569456504,0.2783663295144049,0.2806229720960415,0.2824014795845782,0.2877293289771299,0.2906688109638849,0.2931980577158422,0.2959800136270724,0.3013734952537519,0.3050176056338028,0.3083118067163045,0.3093606234156417,0.3124041071639324,0.3142857142857143,0.3175364927014597,0.3272335844994617,0.3327095808383233,0.0,2.1205224591264686,52.08446985891622,140.67192021362408,190.44543199891703,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95553,48204,460.8855818237,4708,48.0466338053227,3778,38.97313532803784,1432,14.620158446097978,77.19945181010942,79.66906598277171,63.224607941291474,65.05295540713361,77.01846667298595,79.49073939069987,63.156662494380726,64.98809660478922,0.1809851371234714,178.32659207184065,0.0679454469107483,64.85880234438923,232.3321,163.41978889681928,243144.516655678,171025.07310995922,541.82248,364.94195940958286,566452.5446610781,381340.9059179961,480.03193,234.55207781603917,498113.7379255492,242297.33645529684,2158.74172,1011.0562813470076,2229612.005902483,1028586.83970886,874.00497,389.0418663534979,900759.5679884462,393318.9579605684,1388.28888,581.8566523937677,1420007.0746078093,583333.4146318668,0.37948,100000,0,1056055,11052.023484349,0,0.0,0,0.0,47238,493.7573911860434,0,0.0,43345,449.467834604879,1099079,0,39448,0,0,0,0,0,101,1.0465396167571923,0,0.0,0,0.0,0,0.0,0.04708,0.1240645093285548,0.3041631265930331,0.01432,0.3623983739837398,0.6376016260162601,23.30240279208177,4.079659411662391,0.3210693488618316,0.2731604023292747,0.2077818951826363,0.1979883536262572,11.585157393879506,6.348545029395452,15.116252639401054,11327.34966279702,43.329504427542965,12.56735528331097,13.92949175098104,8.77950545349192,8.053151939759033,0.594494441503441,0.8091085271317829,0.7164056059356966,0.5707006369426751,0.1256684491978609,0.7598920863309353,0.9130434782608696,0.8767908309455588,0.7091836734693877,0.1437908496732026,0.5255063765941486,0.7394822006472492,0.6516203703703703,0.5246179966044142,0.1210084033613445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025037759373954,0.0048091556583673,0.0069055162888943,0.0090694647795672,0.0113206010506169,0.0134967073742583,0.0156146348930958,0.0179644389944819,0.0202722063037249,0.0224228573770995,0.0243489329377829,0.0264978972371032,0.0285269976622279,0.0306990850104702,0.0328314404704083,0.0349457078679598,0.0370650764843142,0.0391910289853566,0.0410807657854717,0.0428841355840197,0.0570902586738909,0.0714398062222781,0.0857220943310943,0.0978778555171541,0.1101528315048512,0.1255141851490606,0.1353481840811897,0.1453940066592675,0.1552281979858581,0.1641287047791113,0.1755888419711221,0.1866671007509658,0.1966664121387976,0.2060455831706407,0.2143527152741759,0.224164741425271,0.2328872876994338,0.2410132009477603,0.2487456909792143,0.2551696423445663,0.2610016230002318,0.2656266482260692,0.2706579727326615,0.2743532801152392,0.2788467389584626,0.282900991443705,0.2872053491902199,0.2909811517924275,0.2939887166850399,0.2960863590719306,0.2932696845881036,0.2905815763017641,0.2882521167039995,0.2859434384889955,0.2837749427543343,0.2801078811468501,0.2752418499342928,0.275043922302678,0.2748316066605122,0.2751349226205368,0.2756033981583932,0.2762158956109134,0.2787900415634577,0.2801923722178727,0.2818988955992397,0.2830208360497562,0.2837679920193815,0.2885556531559794,0.2929384965831435,0.2954957797586179,0.2975649277580231,0.3030525542851148,0.3069700926444071,0.3120711754505014,0.3185439051500556,0.3246539995308468,0.3312800480769231,0.3343867272368161,0.3368336025848142,0.3387278885961611,0.0,2.1470505699664,48.50668268232483,139.9505022790695,195.54568847071937,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95683,48433,463.0080578577176,4928,50.29106528850475,3937,40.59237273078812,1475,15.049695348180972,77.33990302576841,79.73151510758956,63.32261558699434,65.0894982271666,77.1495212933839,79.5443710671247,63.24959245730323,65.02048048960663,0.1903817323845089,187.1440404648581,0.0730231296911085,69.01773755997453,231.56144,162.7942978263868,242008.96711014496,170139.207410289,542.07191,365.46351234313664,565958.8432636936,381382.2751618749,490.30589,240.6588046041684,509528.1502461253,249296.4274914273,2239.5206,1070.432965202702,2307966.096380757,1086131.878392925,903.39173,411.7320917756896,929334.531735,415492.3254660593,1431.3884,615.1980938891634,1460879.7174001653,611525.1832555035,0.38037,100000,0,1052552,11000.40759591568,0,0.0,0,0.0,47248,493.2119603273308,0,0.0,44275,459.7995464189041,1109617,0,39856,0,0,0,0,0,86,0.8883500726356823,0,0.0,1,0.0104511773251256,0,0.0,0.04928,0.1295580618871099,0.2993100649350649,0.01475,0.3680731090803033,0.6319268909196967,22.98389145276209,4.0777359152243005,0.2997205994411989,0.2895605791211582,0.2136144272288544,0.1971043942087884,11.271682273268771,6.056918501485145,15.81910859188597,11332.71074389267,45.27085499676733,14.076009202860822,13.315017306295948,9.437320794945803,8.44250769266476,0.5928371856743714,0.8254385964912281,0.6949152542372882,0.5909631391200951,0.0979381443298969,0.7619848612279226,0.9233954451345756,0.8525073746312685,0.7632850241545893,0.08125,0.519650655021834,0.7534246575342466,0.6313912009512486,0.5347003154574133,0.1022727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0044701231564543,0.0066260108979107,0.0088774225003047,0.0110023082476637,0.013131374824406,0.0151873445590573,0.0171776761655915,0.0194533038927052,0.0216688161477205,0.0236711261469065,0.0259294996817836,0.028031424810793,0.030200962063389,0.0324388481783465,0.0343372933403641,0.0362615389397126,0.0382092216986028,0.0402288686605981,0.0421892103205629,0.0570389870878776,0.0708056326231481,0.0846596930050046,0.0974193344765551,0.1091699371228425,0.1243387362986161,0.1352948666256392,0.144844839516687,0.1547015029000523,0.1638053979862101,0.1755956227650683,0.1866640696013504,0.1981989820333231,0.2071834681828121,0.2152141135555726,0.225448826571862,0.2340793466619064,0.2417513190014961,0.2483637889769853,0.2550012023497349,0.2606619177575281,0.2662786212700305,0.2712092902249237,0.2754240838949876,0.2797423362003081,0.2828602378197395,0.2866855807326492,0.2898758781903878,0.2938680465717982,0.2965330872660163,0.2938541021984232,0.2913895454295608,0.289672154214155,0.2863971809424779,0.2836044647628095,0.2803641251221896,0.2769624088627971,0.2772086020097541,0.2772043193605986,0.2777057392045757,0.2794287631902755,0.2803201636217035,0.2805314895034988,0.2805864396960852,0.2818582797967207,0.2843977154724818,0.2855196685020151,0.290342796264962,0.294023068857043,0.3003383429066016,0.3054302724156594,0.3082920661679486,0.3125428375599726,0.3161820099442519,0.3212896053362979,0.3253420652555256,0.3283378746594005,0.3318530480419863,0.3291976840363937,0.3232477977786289,0.0,2.1809926357310148,51.50415573882471,148.5890737891277,197.58810394350755,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95775,48772,464.7454972592012,4873,49.61628817541112,3876,39.780736100234925,1433,14.513181936831112,77.331780499572,79.67047507632421,63.32970022966426,65.06193811870341,77.1379669104688,79.4843952834592,63.25508092947877,64.99334510252476,0.1938135891032004,186.07979286501572,0.0746193001854891,68.59301617865299,231.26246,162.76437988684674,241464.32785173584,169944.53655635266,545.49402,368.324076376692,568869.6632732968,383884.9300923052,493.38501,242.6184602841768,511153.54737666406,250313.13982551865,2210.99208,1051.9056327869384,2270513.140172279,1060341.6526104636,865.04394,401.6987136803617,885677.6925084834,401937.38901204034,1387.3866,603.1859469475049,1406365.0221874183,592835.231624125,0.3828,100000,0,1051193,10975.651265987992,0,0.0,0,0.0,47462,494.8368572174367,0,0.0,44546,461.0597755155312,1105120,0,39709,0,0,0,0,0,98,1.0232315322370138,0,0.0,2,0.0208822761681023,0,0.0,0.04873,0.1272988505747126,0.2940693617894521,0.01433,0.3624704025256511,0.6375295974743489,23.147485804064814,3.951155962750829,0.3222394220846233,0.2907636738906088,0.1945304437564499,0.1924664602683178,11.195866480068853,6.15270647352843,15.40372598993044,11382.164908957928,44.41480513287119,13.787124058331324,14.123680396960223,8.333810260260138,8.170190417319505,0.5915892672858617,0.8251996450754214,0.6925540432345877,0.5636604774535809,0.0978552278820375,0.7624356775300172,0.9353448275862069,0.8425655976676385,0.7202072538860104,0.1626506024096385,0.5180811808118081,0.7481146304675717,0.6357615894039735,0.5098039215686274,0.0793103448275862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002218283109648,0.0044807590933052,0.0068901133469309,0.009000772075257,0.0114213068904144,0.0136152099308546,0.0157725168736363,0.0178345379558169,0.0198421622947803,0.0220302198927152,0.0242857289306693,0.0264906102081258,0.0288525803831244,0.0307893571215195,0.0330054802720526,0.035304820684593,0.0376883641447879,0.0399211740911683,0.0418693103878289,0.0436602559430219,0.0583551608628048,0.0724686192468619,0.0860554344179805,0.0990121899957965,0.1114026491322353,0.1265521796565389,0.1366194943552234,0.1465596086355418,0.1556219648860665,0.1646737383477981,0.176109023972787,0.1873938581024803,0.1973180493322312,0.2060399894994749,0.2158613098514034,0.2247498531807151,0.2326258703802892,0.2407401158540014,0.2476325489084207,0.2547140649149922,0.2606433411187938,0.2660658765224303,0.2710009465215334,0.2758025667757127,0.2801904206742446,0.2844270781974164,0.288196487362768,0.2925459431234956,0.2959872504178598,0.2983794341216216,0.2960177586438853,0.293163590419688,0.2900482195324251,0.2867720285776142,0.2838363156176741,0.2805234560342848,0.2773460375745873,0.2772309711286089,0.2779647121116368,0.2787615348986354,0.2792728768865366,0.2804695501457496,0.280851419729854,0.2824119482835488,0.2833233281306279,0.2854579497581526,0.2870691123857118,0.2914151681000781,0.2939106806939315,0.2989503590876805,0.3017268730453701,0.3067189071848361,0.3119757835656177,0.3173734610123119,0.3178112995408976,0.32452206750059,0.3283856159143076,0.3354049719326383,0.3395553115564095,0.3408385093167702,0.0,2.638868333857099,49.878245519426194,143.92518427358743,196.98625087276267,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95682,48765,465.4375953679898,4902,50.009406157898034,3909,40.21655065738592,1476,14.976693630985974,77.34192318165195,79.71556236224806,63.32298576779221,65.0741643852601,77.15358924077924,79.53340642522221,63.25290251574396,65.0091562298764,0.1883339408727096,182.1559370258541,0.0700832520482492,65.0081553837083,233.29988,164.05314816829627,243828.3898747936,171456.64614901054,545.43648,367.2942538644703,569428.3146255305,383246.7693656805,489.14904,240.09309567696155,506651.2823728601,247442.56270218268,2237.40448,1055.88268084445,2305218.369181246,1070376.0799778954,892.2617,407.1058798915784,917990.708806254,410940.4589071902,1438.18142,605.9119933908613,1462687.4438243348,599693.1996755823,0.3835,100000,0,1060454,11083.108630672436,0,0.0,0,0.0,47529,496.1016701155912,0,0.0,44222,457.69319203193913,1096955,0,39392,0,0,0,0,0,83,0.8674567839301017,0,0.0,1,0.0104512865533747,0,0.0,0.04902,0.1278226857887874,0.3011015911872705,0.01476,0.3632453567937438,0.6367546432062561,23.204405074450463,4.132677985959312,0.3179841391660271,0.2673317984139166,0.2113072397032489,0.2033768227168073,11.452229627522597,6.1430425034533,15.731942764435033,11402.373313869495,44.78119433699933,12.778328557607828,14.165379648506551,9.256299749680318,8.581186381204638,0.5743156817600409,0.8086124401913876,0.6838294448913917,0.559322033898305,0.110691823899371,0.7804878048780488,0.9426048565121412,0.883008356545961,0.7201834862385321,0.1698113207547169,0.4841911764705882,0.706081081081081,0.6029411764705882,0.5016447368421053,0.0959119496855346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024300598402235,0.0050171800407455,0.0072836462866591,0.0094561927397566,0.011664446320157,0.0138258231353464,0.0162306547315621,0.0183492796095289,0.0207881712953495,0.0229867403880612,0.0251309866808846,0.026976237908443,0.0288400222162795,0.0309936941021308,0.0330112721417069,0.0351178350206301,0.0369695149110722,0.0390795291773058,0.0410877703826955,0.0432136716511228,0.0586533238624493,0.0724487445289103,0.0859092101810548,0.0981859124102952,0.1107582248295946,0.1258479284618233,0.1366536783207873,0.1468332587716495,0.1568669367337559,0.1664716804945851,0.177839108217081,0.1882918588785654,0.1990596634814218,0.2084906176486678,0.2169348271080492,0.225637787599836,0.2338549456436815,0.2419137011276926,0.2488516892926406,0.2549210457007408,0.2608554838411178,0.267010502186981,0.2734231729392695,0.278436118333553,0.282036648006703,0.286622164199325,0.2900117626448432,0.2935237344387787,0.2962943774528216,0.2996173132752705,0.2962728399719722,0.2927880774634308,0.2895248562732499,0.2864665993363151,0.2835644033653276,0.2799859571999878,0.2761117508794624,0.2760642741314638,0.2758073866930396,0.2761399825644492,0.2766342921180426,0.2774599542334096,0.2784646228385264,0.2787569159378904,0.2803821107067611,0.2810306875566489,0.2816379627272984,0.2855538922155688,0.2914770160870018,0.2944896115627823,0.300292069197933,0.3036473366570454,0.3067408008996064,0.3093471254028933,0.3135875601629026,0.3240579710144927,0.3248957712924359,0.3296486379786814,0.330715059588299,0.328159645232816,0.0,2.533025265071629,51.364145031637406,140.57038075249724,200.82952076584365,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95731,48180,460.1121893639469,4815,48.92876915523707,3814,39.18270988499024,1400,14.175136580626964,77.32392886815877,79.6877089653491,63.31606620966248,65.06485823452559,77.14240766714481,79.51342562337867,63.2462501191642,65.00098411293418,0.1815212010139646,174.28334197043682,0.0698160904982856,63.874121591410926,233.0757,163.84200561544986,243469.17926272572,171148.16827373617,539.65247,363.570715401408,563042.0866803856,379111.8410393775,474.74965,233.0521675683293,491956.9522934055,240398.49231915476,2185.558,1023.7515242047866,2247930.054005495,1034579.8363365888,894.08216,397.486450383973,919678.024882222,401048.7967100439,1363.01418,588.4465048210302,1382106.6530173088,578562.5121057989,0.3797,100000,0,1059435,11066.780875578444,0,0.0,0,0.0,47085,491.1575142848189,0,0.0,42879,443.9836625544495,1103543,0,39640,0,0,0,0,0,87,0.9087965235921488,0,0.0,0,0.0,0,0.0,0.04815,0.1268106399789307,0.2907580477673935,0.014,0.3631141045958795,0.6368858954041204,23.162393734075444,3.997116570198373,0.3085998951232302,0.2831672784478238,0.2003146303093864,0.2079181961195595,11.215055424310416,6.069568233178871,15.066829170791763,11285.345703486684,43.55598088602752,13.05974014853442,13.268059641984136,8.58118380307538,8.646997292433582,0.5755112742527531,0.7953703703703704,0.6924384027187765,0.5759162303664922,0.1021437578814628,0.7470319634703196,0.9221698113207548,0.8853503184713376,0.7158469945355191,0.1034482758620689,0.5064361897756529,0.7134146341463414,0.6222479721900348,0.53184165232358,0.1017770597738287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022587539376259,0.0044814405499396,0.0066068565165323,0.0088195248836594,0.0109655368840786,0.0129837067209775,0.0150072385457659,0.0171792542386722,0.0192824791174636,0.0216445340896292,0.0239398786089238,0.0259864266866535,0.0282627022803446,0.0305209052234731,0.0325370207935607,0.034649934359462,0.0366062087610445,0.03847710783347,0.0403489980345462,0.0422592442096708,0.0566512492299982,0.0708321998786331,0.0835072412093501,0.0960964118958482,0.1080399890325438,0.1236208227988702,0.1349490147809386,0.1455618025385467,0.1546900537318535,0.164045329302156,0.1761273723531374,0.1874601234955068,0.19778881798515,0.2065926857267807,0.2149259312210626,0.2250520441156929,0.2336420441865655,0.2408442939276994,0.2483057677681541,0.2546713437421189,0.2606434123793746,0.2659998125937031,0.271234045578981,0.2748503640441891,0.2789764296660261,0.282465810859137,0.2863656291100394,0.289225361977409,0.2929035100221563,0.2952516769661438,0.2923195063790804,0.2891524817327407,0.2859054729872508,0.2835818738801225,0.2809043808732056,0.2774077242727939,0.2741966033209167,0.2739358657792749,0.2743612874674473,0.2754225990508185,0.2762311435976803,0.2766690284994489,0.2775983160702749,0.2789021840665451,0.2808674445294568,0.2818565838235675,0.2816000905284599,0.2855354572197534,0.2896375594738315,0.2946118649416219,0.298027327843634,0.301877860186208,0.3065893647528209,0.3114087898856111,0.310013076779376,0.3143025309005297,0.3191743942566557,0.3261802575107296,0.3278388278388278,0.320431708224786,0.0,2.522527720884589,47.0979044360594,146.57324434959511,193.93859459947151,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95783,48470,462.5142248624495,4781,48.71428123988599,3870,39.725212198406815,1459,14.856498543582893,77.4066300966336,79.74711635378652,63.35719594835807,65.08834785950535,77.21505391011725,79.5595811226903,63.28369862370723,65.01931514373487,0.1915761865163574,187.53523109621997,0.0734973246508374,69.03271577047576,232.45574,163.46884641286022,242689.05755718652,170664.97234622223,545.34048,368.56672281758034,568638.4744683295,384083.0616572388,489.09322,240.1690002396129,506319.01276844536,247430.61107694075,2222.8948,1059.6497547074034,2283567.856508984,1069204.8907002327,913.95121,420.03402588345705,936785.108004552,421173.3153432124,1427.42406,618.7046438910969,1455005.0008874226,613224.4210647386,0.38089,100000,0,1056617,11031.320798053934,0,0.0,0,0.0,47466,494.8059676560559,0,0.0,44112,456.23962498564464,1103054,0,39610,0,0,0,0,0,116,1.211070858085464,0,0.0,1,0.0104402660179781,0,0.0,0.04781,0.125521804195437,0.3051662832043506,0.01459,0.3662674650698603,0.6337325349301397,23.05807537263456,4.030492773874225,0.3018087855297157,0.2819121447028423,0.2049095607235142,0.2113695090439276,11.191206434287182,6.011183271113762,15.622358600786953,11354.531140923787,44.36766439598846,13.285560901562569,13.232586534756194,8.833877413634056,9.015639546035636,0.5901808785529715,0.8065994500458296,0.7148972602739726,0.5813366960907944,0.1320293398533007,0.7434154630416313,0.9117647058823528,0.8563049853372434,0.736318407960199,0.1658031088082901,0.5232083178611214,0.7349768875192604,0.656590084643289,0.5287162162162162,0.1216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0044817586339761,0.0065962391288905,0.0090730825112016,0.011269210036513,0.0133907659721797,0.0155482147590791,0.0180268463226662,0.0201050737969663,0.0222583814319047,0.0244942300202922,0.026545312756526,0.0285206273510246,0.0306670784434836,0.0327488635309397,0.0347569286687869,0.0365285938922453,0.0388742030788368,0.0407255802356265,0.0426960677140269,0.05768187320005,0.0717221472719857,0.0846933534584866,0.0974461376773515,0.1099275087453112,0.1257687511887905,0.1363973627864577,0.1465421912215039,0.1556084339920611,0.1642030848329048,0.1751396016913592,0.1866681083418933,0.1977810618738182,0.2063949678941161,0.2144434313585481,0.2243870596565763,0.2328032296917518,0.2402477685095667,0.2478452186536019,0.2545814589700445,0.2605483158539828,0.2659397933903613,0.2714873784570252,0.2753814097190621,0.2798717699630852,0.2843274940251805,0.2877056872927485,0.2913503960534513,0.2950936363518708,0.2979700051442365,0.2949491142103279,0.2923979823247247,0.2898569076864632,0.2863861957525392,0.284257942152679,0.2815513243012327,0.2788155615057489,0.2783153566241861,0.2793136158823728,0.2797976045149762,0.2801384134543831,0.2807863428784226,0.2804293217629596,0.2808448394317502,0.2823966116213772,0.2841831345167856,0.2848013962784674,0.2883553570320739,0.2922917027542006,0.2970932279644771,0.3026711560044893,0.3044204373466938,0.3098782973991474,0.3112301853092208,0.3193184940917835,0.3195947501726917,0.3228382042783971,0.3206692913385827,0.3213123644251627,0.3250094589481649,0.0,2.605339266224152,50.560017897168095,142.0878135998237,196.01981294294103,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95682,48701,464.4342718588658,4699,47.67876925649547,3742,38.4502832298656,1449,14.778119186471857,77.29491858535671,79.6950110352198,63.29396199958445,65.07320158531753,77.10533452842768,79.50946535565231,63.22248521520645,65.00568197155673,0.1895840569290356,185.5456795674968,0.0714767843779995,67.51961376080828,232.58994,163.66839429898337,243086.4112372233,171054.52885493965,546.32785,367.88147438758654,570323.4986726866,383824.0780790396,491.23213,241.100028515576,508557.2625990259,248442.82391803432,2162.70504,1024.562654860155,2226022.365753224,1036517.1451894352,886.28054,404.23483271338193,910362.9522794256,406577.7982025762,1407.82848,601.2966573927699,1437707.8865408332,601174.9841667116,0.37947,100000,0,1057227,11049.382328964695,0,0.0,0,0.0,47554,496.3002445601053,0,0.0,44278,457.89176647645326,1099907,0,39553,0,0,0,0,0,83,0.8674567839301017,0,0.0,0,0.0,0,0.0,0.04699,0.1238306058449943,0.308363481591828,0.01449,0.3642100977198697,0.6357899022801303,23.250222965285676,4.169368441520364,0.3123997862105825,0.2720470336718332,0.205237840726884,0.2103153393907001,11.362474055542942,6.128490993054365,15.4858100548159,11309.07924864162,42.87497471663003,12.399280619142388,13.245792722657772,8.659350895295228,8.570550479534637,0.5831106360235169,0.8055009823182712,0.7040205303678357,0.578125,0.1207115628970775,0.7477876106194691,0.920863309352518,0.8575757575757575,0.7330097087378641,0.1525423728813559,0.5118683001531393,0.7254575707154742,0.6436233611442194,0.5213523131672598,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022403114134236,0.0043836950896526,0.0068450718529426,0.0093945401860606,0.0117165630057921,0.0139023371010977,0.0161231070655945,0.0183179747042357,0.0205937717395752,0.0228541574898329,0.0249163982520567,0.0269975961044564,0.0289568733985737,0.0311037823353601,0.0333199145325612,0.0353272110531976,0.0375033679454496,0.0395269638889465,0.0415405262008052,0.0436010756947195,0.0574096706464855,0.0712139454535936,0.0842139506574459,0.0970779801550974,0.109978687936528,0.1255528515501005,0.1358787377002197,0.1459571115228178,0.155902718413404,0.1652896995708154,0.1759940534542751,0.1869786764467235,0.197808290662405,0.2063146850854089,0.2142181658236199,0.2240982263457407,0.233717842879136,0.241246230703452,0.2483650483673191,0.2542697324683065,0.2596816208393632,0.2654565881402942,0.2714165650635069,0.2758136857506056,0.2796204500170093,0.2841284720509152,0.2869607671315189,0.2902196167198647,0.2941701252860634,0.2960757709483224,0.2931080826815042,0.289805945159608,0.2863166179446818,0.283741513268851,0.2806960336752238,0.2765401140655342,0.27300336924026,0.2726587217022114,0.2724281378934088,0.272544125512569,0.2728481285224783,0.2724274145763381,0.2744007028406476,0.2759151785714285,0.2770452358036573,0.2786607608129234,0.2803054044044329,0.2836674417143216,0.2882215152256756,0.2927330986194074,0.2971743186058151,0.2995559784332381,0.3024753094136767,0.3075583156619206,0.3100869402636253,0.3125147859001656,0.3168301886792453,0.3187299035369775,0.3156756756756756,0.3174188735546437,0.0,2.493996575959993,48.58957137182115,134.97456143140644,194.02960389553883,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95716,48130,459.03506205859,4809,49.04091270007105,3795,39.01124158970288,1424,14.417652221154247,77.3593554540744,79.73321741966276,63.33143217950936,65.08521821582963,77.17923103562376,79.55883751187112,63.262728184608015,65.02167265847604,0.1801244184506458,174.37990779164636,0.0687039949013481,63.54555735359213,231.21604,162.59536963816834,241564.6704835137,169872.71682703865,541.83664,365.0933579755139,565471.1333528355,380817.28026193526,480.89928,235.7463993755765,499071.8479669021,243585.31403764288,2165.76152,1026.9458368174874,2227024.0294203684,1037237.9088318432,877.24963,401.51414200997857,898572.3181077354,401544.143100398,1382.80442,597.3573861077664,1401272.786159054,585854.0009811692,0.37874,100000,0,1050982,10980.21229470517,0,0.0,0,0.0,47295,493.4702662041874,0,0.0,43410,450.2695474110912,1112371,0,39855,0,0,0,0,0,80,0.8253583517907143,0,0.0,0,0.0,0,0.0,0.04809,0.1269736494692929,0.2961114576835101,0.01424,0.3581644815256257,0.6418355184743743,23.51652825793822,3.993656830812852,0.3061923583662714,0.2869565217391304,0.2039525691699604,0.2028985507246377,11.170619690865918,6.12051008375781,15.362968870943186,11340.858193313206,43.56350686808357,13.382360170429696,13.161264666008082,8.585795832350604,8.434086199295178,0.5805006587615283,0.8016528925619835,0.6695352839931153,0.6020671834625323,0.1116883116883116,0.75022143489814,0.9127659574468086,0.8453947368421053,0.7486631016042781,0.125,0.5086271567891973,0.7172859450726979,0.6072261072261073,0.555366269165247,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890248349066,0.0047239145640516,0.0070321775396511,0.0092421441774491,0.011500564351301,0.0137640363647469,0.016106835210765,0.0182716452646836,0.0203635174091717,0.0226660797100707,0.0247961852022765,0.0269826107499049,0.0288900777809786,0.0309605497686973,0.0329804140094524,0.0350541680449884,0.0369607305179678,0.0388656660685205,0.0409809649551413,0.0429474692971948,0.057340072262484,0.0708282308119027,0.0846778423515095,0.097568670340302,0.1095972750951713,0.1246813147288133,0.1349662000827753,0.1447036402159215,0.1543665042318543,0.1634043740476037,0.1759495716825602,0.1870683496070493,0.1971322265497508,0.2058804219372346,0.214758521945041,0.2248647330140145,0.2331922686110522,0.2415429599640126,0.2489280609814197,0.2553164687424848,0.2606603828138553,0.2658306257450737,0.2710073855243722,0.2749557352730057,0.2804807062647037,0.285034080563006,0.2882985373171646,0.2916910102370005,0.2952917754737958,0.2979883090210121,0.2939818233075136,0.2920222838167897,0.2888053736450197,0.2866237461558359,0.2838201383551114,0.27934168658557,0.2757932140498726,0.2755314986304943,0.275632648211952,0.2754427328003404,0.2765176225001398,0.2773104288690593,0.2784329277201477,0.2793264942016057,0.2799588506902078,0.279852872610475,0.2815083229532329,0.2872074101890099,0.2913528591352859,0.2941893858924426,0.300262158741638,0.3058674679740629,0.3088179876899887,0.3147131794601909,0.3210516571005369,0.3228887594641817,0.3183599638227314,0.3226830720381028,0.3285752760570967,0.3318368873924429,0.0,2.52339379291566,48.60458851318423,143.2701223255454,191.9736522585708,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95893,48852,465.69614048992105,4870,49.72208607510454,3850,39.60664490630182,1489,15.194018332933585,77.4394230829848,79.71928906736359,63.39129033748679,65.0772139344758,77.25285269553875,79.53473349246242,63.32222516309566,65.01088065381897,0.1865703874460536,184.55557490116803,0.0690651743911274,66.33328065682065,233.69676,164.43803038713637,243705.75537317636,171480.74456648176,547.14867,368.3944945096132,570058.5548475906,383648.51919286407,489.23827,239.2279783252702,506689.435099538,246812.6929636828,2197.93592,1027.6558506667743,2263801.695639932,1043399.717045848,907.39804,405.7650095067564,935760.3578989082,412642.8931275032,1449.25842,606.3731402183394,1481421.6679006808,609020.8346125606,0.38271,100000,0,1062258,11077.53433514438,0,0.0,0,0.0,47645,496.2927429530831,0,0.0,44218,457.5829309751494,1098666,0,39478,0,0,0,0,0,88,0.9176895080975672,0,0.0,0,0.0,0,0.0,0.0487,0.1272503984740404,0.3057494866529774,0.01489,0.3673708920187793,0.6326291079812206,23.42145483185046,4.104207222469972,0.3171428571428571,0.2774025974025974,0.202077922077922,0.2033766233766233,11.49652397693392,6.282305824409803,15.844765064177356,11378.296043219254,44.07201531361984,13.066326000111138,13.790386376373313,8.709264898751606,8.506038038383792,0.5883116883116883,0.797752808988764,0.7158067158067158,0.5616966580976864,0.1302681992337164,0.7611548556430446,0.911504424778761,0.8724035608308606,0.6878048780487804,0.1543624161073825,0.5153306243073513,0.7142857142857143,0.6561085972850679,0.5165794066317626,0.1246056782334384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0047731971300012,0.006796579393177,0.0090670024063601,0.0113327980322603,0.0138275574367635,0.0161344537815126,0.0180232558139534,0.0199419721302766,0.0220851490415106,0.0241705772659275,0.0263897724241242,0.0283823499188194,0.0305117198357061,0.0326298751507778,0.0347679725738832,0.0369653831033127,0.0390952045426285,0.0410601939328502,0.0429336801040312,0.0569876893248412,0.0714576781217674,0.0849615714854139,0.0980556838701549,0.1107111279525072,0.1259052807162011,0.1367733189294527,0.1467263106445374,0.1566430733808041,0.1664134063864395,0.1785180646478979,0.1892610198789974,0.1989355924839795,0.2082828084204546,0.2171618903142828,0.2260652128212788,0.233933505660041,0.2413281978147844,0.2489865247423847,0.2547594560621643,0.2614512628711271,0.2674562427071179,0.2722698603926015,0.2768181818181818,0.2810146843056179,0.2844068297003395,0.2868849387280926,0.2909063221745641,0.2947517913627267,0.2986746607762701,0.2965622776756111,0.2930637422892392,0.28985730921948,0.2870561117913995,0.2844389832264941,0.2805994750015261,0.2764625163640952,0.276297518500972,0.2766377067854532,0.2768774738635758,0.2774641852493526,0.2780418811142105,0.2784343917766033,0.2791331516319883,0.28035960614565,0.2811377786963598,0.28328173374613,0.2875585761722993,0.2902679343128781,0.293774699690887,0.298424383893702,0.3034149923936421,0.3097768661818634,0.3145051965657479,0.3174291327532977,0.3180532641998586,0.3175355450236967,0.3188904636566106,0.3203723986856517,0.3157303370786516,0.0,2.14681889822398,49.79729675736162,142.14533705863326,197.31024109700596,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95734,48437,461.76906846052606,4822,49.07347441870182,3839,39.48440470470261,1428,14.498506277811437,77.34647984393533,79.69809191224513,63.33814763576003,65.07502755033904,77.16010067522194,79.51821699300154,63.26709471883841,65.00928271073182,0.1863791687133869,179.87491924358778,0.0710529169216229,65.74483960721977,231.91718,163.15542734156006,242250.9453276788,170425.1226769591,542.41855,365.52222234559866,565987.3712578603,381208.9344826276,486.71405,239.01621536981463,504761.2655900725,246829.79757120556,2207.49908,1037.745653827728,2271596.381640796,1049766.993782488,884.3155,404.2643979809506,905409.5305742996,404035.7931191316,1390.9635,597.3485786343954,1413793.406731151,589247.8271347497,0.38114,100000,0,1054169,11011.40660580358,0,0.0,0,0.0,47230,492.70896442225336,0,0.0,44012,456.13888482670734,1106383,0,39732,0,0,0,0,0,97,1.0027785321829237,0,0.0,1,0.0104456097102387,0,0.0,0.04822,0.1265151912683003,0.2961426793861468,0.01428,0.3619729514717582,0.6380270485282419,23.559206558275893,4.071969036205221,0.3196144829382651,0.2784579317530607,0.1969262828861682,0.2050013024225058,11.271481653617448,5.964186079005126,15.332429789928051,11309.651742854316,43.83914488038366,12.994512183281309,13.978985233831326,8.37551945929806,8.490128003972949,0.576712685595207,0.7979420018709074,0.6968215158924206,0.5568783068783069,0.1080050825921219,0.7660142348754448,0.9300225733634312,0.8401162790697675,0.7657142857142857,0.1604938271604938,0.4983425414364641,0.7044728434504792,0.6409966024915063,0.4939759036144578,0.0944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020559043953818,0.0044703950369491,0.0069311251154341,0.0091729140001219,0.0118473773059165,0.0139680729760547,0.0162487257900101,0.0186570591657395,0.0208318426674571,0.0229746193932816,0.0250207566703225,0.0268001026430587,0.0288284583354752,0.0310639612730456,0.0331500263095446,0.0351007751937984,0.0374273970617163,0.039195750508362,0.041373001517703,0.0432989261199704,0.058372746160512,0.0717791988947385,0.0857385666173554,0.0984268528644738,0.1105382466128947,0.1258920924921495,0.1369408170409581,0.1463419825879648,0.1559453774783527,0.1650052522134328,0.1764781878472072,0.1875020278381623,0.1970024671499527,0.2056670163475828,0.2134378228660614,0.2225616505069287,0.2311405953841007,0.2391719888459116,0.2466850421388142,0.2527365576623614,0.2590339851293378,0.2650482713480913,0.2700602131711875,0.27368685900508,0.2782531648642415,0.2821178526165545,0.2858714266071674,0.2893515280232987,0.2923136696237777,0.2956239528225966,0.293196042802342,0.2897761645493042,0.2868419941745114,0.2835943702634428,0.2817392594791125,0.2779452033838669,0.2740318582953128,0.2737520655748433,0.2741971207087486,0.2749608596641048,0.2746785121036227,0.2766866094623317,0.2777429598061335,0.2780959597085107,0.2796551311220213,0.2804601889689997,0.2816577129700691,0.2861789635004535,0.2918817129306737,0.2964288523558562,0.3011617919623887,0.305017675302063,0.311484593837535,0.3169477425697648,0.324074074074074,0.3277954518675621,0.327319587628866,0.3336014478182184,0.3357340720221606,0.3381211180124223,0.0,2.3543856073675924,48.4479145188285,142.80232602616434,198.08309497110207,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95747,48497,462.5627957011708,4868,49.662130406174605,3904,40.2623580895485,1498,15.290296301711804,77.41222784566315,79.7673341686501,63.350809200748486,65.08949154227128,77.22005606568935,79.58036524689645,63.2778906504042,65.02117928638451,0.1921717799738047,186.9689217536461,0.0729185503442906,68.3122558867666,232.24344,163.34398438513168,242559.26556445632,170599.37501652446,547.22652,368.3905789240229,571017.7864580613,384238.9373518365,486.79783,238.4512496791297,505595.4651320668,246791.09935789407,2219.00184,1042.6181411729303,2288156.1615507533,1059591.4679028385,900.95569,407.3829805121485,925024.8780640648,409529.7279995819,1448.7771,612.9147442537027,1478851.2642693766,609499.2277845765,0.3807,100000,0,1055652,11025.421162020742,0,0.0,0,0.0,47722,497.8746070372962,0,0.0,44034,457.069150991676,1103171,0,39498,0,0,0,0,0,84,0.8773120828851034,0,0.0,1,0.0104441914629178,0,0.0,0.04868,0.1278697136853165,0.3077239112571898,0.01498,0.3520347688660608,0.6479652311339391,23.53619629394443,4.0356524016860735,0.3176229508196721,0.2784323770491803,0.2049180327868852,0.1990266393442623,11.513661780430862,6.333919162427555,15.814449021129397,11356.461859938709,44.31712193081157,13.229135691697644,13.990571650980383,8.720003384736932,8.377411203396614,0.579405737704918,0.797608095676173,0.6879032258064516,0.56375,0.1171171171171171,0.7644483362521891,0.9151785714285714,0.8825214899713467,0.7359550561797753,0.1437125748502994,0.502896451846488,0.7151799687010955,0.611672278338945,0.5144694533762058,0.1098360655737704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0047939998986469,0.0068680761270949,0.0092005849378503,0.0115495277503837,0.0138239934850104,0.0159712171555537,0.0179688376886421,0.020142870282368,0.0224155578300921,0.0246167090268098,0.0268747112867628,0.0289192051073804,0.0309980124198016,0.033143470364867,0.0352277190878832,0.0372675309613552,0.0393845387672099,0.0413686267986359,0.0430439085369029,0.0577131880063476,0.0717409957516271,0.0853693077512142,0.0979907426888281,0.1101274638078757,0.1258545877870674,0.1363071926640557,0.1464424899376024,0.1564931178934769,0.1655880743101838,0.1769360977240137,0.1887446262466566,0.198941879578929,0.2082133590251699,0.2166053449073564,0.2259674574917645,0.2346695872774617,0.2419661864588143,0.248597706369933,0.2545592095459703,0.259890930563757,0.2648273602677056,0.2708096725345447,0.2750673451062556,0.2793364560832949,0.2837205867874372,0.2863513716084545,0.2890309811981426,0.2931788566489053,0.2967546971488635,0.2937204410562842,0.2917037381770399,0.2890215532946551,0.2863199344667519,0.2841321339035541,0.2805911659274561,0.2767109952740575,0.2767653758542141,0.2762286894543485,0.2767835036961058,0.2776778595664991,0.2787237786162538,0.2788862820007059,0.2799132532253424,0.2813370473537604,0.281749000386947,0.2818250993433475,0.2854303813190908,0.2890939364506729,0.2932060112711334,0.2972354366753433,0.3022902363607777,0.3061933722229117,0.3100299401197605,0.3097891150197992,0.3181129877693652,0.3203230148048452,0.3263407876509004,0.3308310991957104,0.3282128137879355,0.0,1.9465479354776083,49.74451823712496,142.72466748909193,201.19289754333775,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95713,48405,462.3091951981445,4802,48.833491793173344,3863,39.60799473425763,1463,14.77333277611192,77.32373385663094,79.69347543065275,63.321321634088775,65.07501265990189,77.13613012604908,79.5139066580108,63.25015791441,65.01001464520458,0.1876037305818556,179.56877264195725,0.071163719678772,64.99801469730926,232.56354,163.5502721569881,242980.09674756823,170875.71401689225,542.27015,365.7055340723815,565831.778337321,381358.8060894357,483.26705,236.99568269631635,500353.2853426389,244062.95524069425,2227.43932,1049.1464651954184,2287455.789704638,1056387.016596929,885.13342,401.0619584086339,910094.9818728908,404341.8850194161,1427.43026,606.5420909278829,1444637.67722253,595028.1175051172,0.38075,100000,0,1057107,11044.549852162194,0,0.0,0,0.0,47308,493.5066291935265,0,0.0,43728,452.3418971299615,1104478,0,39609,0,0,0,0,0,90,0.9298632369688548,0,0.0,0,0.0,0,0.0,0.04802,0.1261195009848982,0.30466472303207,0.01463,0.3539135630352519,0.6460864369647481,22.924832837408356,4.169857740333109,0.3044266114418845,0.2762101993269479,0.2013978772974372,0.2179653119337302,11.50147245357154,6.205545403011523,15.53192281558757,11288.281525681936,44.12726655947094,12.933757291569837,13.450326999928384,8.71859653625335,9.024585731719366,0.5759772197773751,0.7966260543580131,0.7117346938775511,0.5796915167095116,0.1033254156769596,0.7561188811188811,0.922566371681416,0.8746268656716418,0.6820512820512821,0.1358024691358024,0.5001838911364472,0.7040650406504065,0.6468489892984542,0.5454545454545454,0.0955882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505572441742,0.0047968196983986,0.0070442549736094,0.0090848119017133,0.0113950838352596,0.0133952673450885,0.0157875413046138,0.0179955674935912,0.0199503031914349,0.0219263659173536,0.0241203556521828,0.0260244428468727,0.0279100869296846,0.0298121412598798,0.0320496278940143,0.034001860849788,0.0363945190724265,0.0383877159309021,0.04033188808135,0.0424711631638724,0.0569483455325724,0.0712147537208766,0.0833927822073017,0.0966852862898559,0.1092749802267334,0.1247924883423387,0.1354290443048718,0.1455342605697502,0.1549158878504672,0.1641216462564608,0.1762660033810339,0.1864060234968303,0.1970248904450703,0.2059302668838765,0.2145803768852513,0.2232803295389112,0.2316483075413637,0.2393785526522725,0.2466442953020134,0.2530914332124595,0.2583924404500612,0.2640209292004391,0.2704244987653738,0.2748862820205889,0.279879632101342,0.28340823739457,0.2873632214093666,0.2912464549605117,0.2945341116475324,0.2969404696023401,0.2944419048643416,0.2919874615046194,0.2883178293482697,0.2849239480564503,0.2818795932002078,0.2784659143040646,0.2742307085371627,0.2744966552722396,0.2740997653779455,0.2744920270918884,0.2748007540549116,0.2761208730596485,0.2767033931968807,0.2772571071540143,0.2790033366139369,0.2800822317060477,0.2806732740943267,0.2859344045784723,0.2902036516853932,0.294014714655001,0.2986130121361438,0.302158273381295,0.3053102926337033,0.308942469098123,0.3102674396858051,0.3167988635018349,0.3193772672309553,0.3248496993987976,0.3281926406926407,0.3315589353612167,0.0,2.961973674597693,48.71609323967368,142.00505347536676,199.22152779718655,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95784,48527,463.2819677607951,4749,48.484089200701575,3783,38.952225841476654,1423,14.54313872880648,77.38153749659537,79.72327082661732,63.350937847410606,65.08289654296809,77.20552539487396,79.54937755790122,63.28518046384181,65.01989467418242,0.1760121017214118,173.89326871609967,0.0657573835687941,63.00186878566194,232.4289,163.4826912814065,242659.4211976948,170678.49670237876,544.38216,367.699674698358,567807.7549486344,383348.4660260148,482.31795,236.79479117096517,499783.1474985384,244343.98362931883,2161.34816,1020.6276182825716,2226786.2691054875,1035856.1119629284,846.44082,384.6633713036695,869890.7750772572,387787.86781056254,1381.18098,583.5789619685929,1412402.5515743757,584453.3394487087,0.38231,100000,0,1056495,11029.973690804309,0,0.0,0,0.0,47436,494.68596007683954,0,0.0,43669,452.14232022049606,1104252,0,39612,0,0,0,0,0,89,0.9291739747765806,0,0.0,0,0.0,0,0.0,0.04749,0.1242185660851141,0.2996420299010318,0.01423,0.3652367462565762,0.6347632537434237,23.307214159497423,4.035960706227471,0.3087496695744118,0.2865450700502246,0.2001057361882104,0.204599524187153,11.08380998276134,5.812329881482399,15.19309964055808,11333.52143108991,43.37693547147737,13.221563557492544,13.35632077994184,8.496192819375057,8.302858314667928,0.5767909066878139,0.8108856088560885,0.6926369863013698,0.5574636723910171,0.0930232558139534,0.7597517730496454,0.9047619047619048,0.8839285714285714,0.7038834951456311,0.1103448275862069,0.4990583804143126,0.7465007776049767,0.6153846153846154,0.5027223230490018,0.0890302066772655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382466730134,0.0043688041032294,0.0065135343533135,0.0084904989691559,0.0109400736116477,0.0131722263505603,0.0157275655400171,0.0179630328948039,0.0199779272006376,0.0223772932376986,0.024727414330218,0.0270067747895709,0.0291492730675111,0.0310846152262103,0.0331098504383702,0.034850801785419,0.0367357920443726,0.0387681272092131,0.0407217726436948,0.0426765783774779,0.0573637909983616,0.0715988955823293,0.0856046628648104,0.0984838136866548,0.1105714014772356,0.1253355030961388,0.1356469216912154,0.1461721623402853,0.1563206862703256,0.1653289325631985,0.1765205974775085,0.1875175709867866,0.1975159733994002,0.2073637058887796,0.2152604435843019,0.2237078029883785,0.2318376902067889,0.2405915337850745,0.2480727371666969,0.2545866312851718,0.2602503785733276,0.2665334641989156,0.2723962212842431,0.2770276740400268,0.2806992006016716,0.2846616559851401,0.2875725610136695,0.2912480790479698,0.2946999754448996,0.2976527428548861,0.294733873242274,0.29087366384456,0.2876256060712529,0.2845673762954208,0.2828194485621109,0.2786512394675784,0.2749089992278722,0.2747168456441557,0.2751170205549149,0.2745390070921986,0.274353913755865,0.2752789126335638,0.2760387378944079,0.2767079984862314,0.2774486383182035,0.2802527973477,0.2824919441460795,0.287096673823081,0.2900697166244667,0.2926982383175737,0.2980457492795389,0.302006724101702,0.3074377068631737,0.3102198051212327,0.3139318308809834,0.3163432312368482,0.3219651442307692,0.3263407876509004,0.3244781783681214,0.3410794602698651,0.0,2.139349288044274,48.93254312680628,143.19242668848895,189.78994318073467,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95862,48455,461.49673488973735,4798,48.9140639669525,3799,39.09786985458263,1442,14.729506999645324,77.37299817448195,79.67352125751013,63.35320242165369,65.05669590726863,77.19184769691336,79.49509816168779,63.28458843392147,64.9914175160048,0.1811504775685932,178.42309582233895,0.0686139877322205,65.27839126383128,232.53164,163.6317843542133,242569.15148859817,170695.14964658915,546.37278,368.61384281747314,569424.52692412,384003.9526070792,484.22065,237.2316521067372,501484.8636581753,244766.26848098717,2172.6742,1029.0864446244966,2238568.275228975,1046038.0496622402,854.45687,384.9178033847365,878747.9188833948,388940.6265097073,1397.89298,597.4061474914138,1429831.987648912,598360.746576485,0.38093,100000,0,1056962,11025.87052220901,0,0.0,0,0.0,47706,497.0999979136676,0,0.0,43886,454.25716133608734,1100397,0,39524,0,0,0,0,0,80,0.8241013123031025,0,0.0,0,0.0,0,0.0,0.04798,0.1259548998503662,0.3005418924551896,0.01442,0.3599599599599599,0.64004004004004,23.137492017752184,3.97715783729038,0.319557778362727,0.2827059752566465,0.1968939194524875,0.200842326928139,11.059108871820376,5.96728213308396,15.431331543687689,11316.157318990046,43.587543393446175,13.042472243070348,13.903251867012704,8.338787321129416,8.3030319622337,0.5996314819689392,0.7886405959031657,0.7174629324546952,0.6350267379679144,0.1114023591087811,0.7688219663418955,0.9113636363636364,0.8714285714285714,0.7663043478260869,0.1354838709677419,0.5280898876404494,0.7034700315457413,0.6550925925925926,0.5921985815602837,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045303901000334,0.0066644350445817,0.0087423593201064,0.0108472439664111,0.0129682410423452,0.0151458012699642,0.0174815540519854,0.0197304560177379,0.0217631530480692,0.0240663900414937,0.0263678988785948,0.0284774677560248,0.0306636061388971,0.0330096286674501,0.035318173368858,0.0371416451990026,0.0392108099146149,0.0412054248270992,0.0431679377399519,0.0582886696836353,0.0716950374619894,0.0847074105889501,0.0971762803347719,0.1088691842709408,0.1241444143991887,0.1347207358036726,0.1446401803085232,0.1547566950228949,0.1629108132146033,0.1744979444241159,0.1857981385594915,0.1958154448127819,0.2048414078131662,0.2131885301819942,0.2224277328607819,0.2312840935711656,0.2401228457004005,0.2478166186511807,0.2541610384853133,0.2614360195600153,0.2663914777178806,0.2716291835744792,0.275340973045467,0.2788448704726081,0.2839082157717212,0.2871742910396417,0.2906128466485346,0.294502567020575,0.2984498167725607,0.2958216221304751,0.2919638807570197,0.2895118278661994,0.2865038820099864,0.2838927766575732,0.2796188265477536,0.2762044579150091,0.2761277027248046,0.2758861147016804,0.2761405068919519,0.2761725449258072,0.27785314066647,0.278452279306108,0.2799316482102039,0.280255536220829,0.2814035269173088,0.283253046188722,0.2884188821893842,0.2925324222563101,0.2957126576806696,0.2998607805272376,0.3063847647027963,0.3123559100255467,0.3174615152429822,0.3176009700587632,0.3224190165462596,0.3238627776938189,0.3270820729985884,0.330315500685871,0.3262759924385633,0.0,2.073513707131644,49.01735667391374,143.89221386488228,191.7517717981932,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95788,48250,460.3708188917192,4774,48.55514260658956,3784,38.88796091368439,1436,14.542531423560362,77.39816222968327,79.72801514883706,63.35848721039546,65.07959521622767,77.20842437979418,79.54483171662547,63.2850828738665,65.01160884313227,0.1897378498890845,183.1834322115924,0.0734043365289593,67.98637309540823,232.01992,163.26471222741105,242222.3242994947,170443.80530693935,542.31686,365.1837073052641,565526.6734872843,380606.3685613336,481.56002,236.15401142657143,499504.4160020044,243898.3220172408,2177.32392,1037.6734229800145,2239775.170167453,1050074.4879447576,903.81457,416.4231278561703,931602.1317910386,422831.98519587785,1408.5976,612.1233118124858,1429024.2619117217,603336.3979345202,0.37981,100000,0,1054636,11010.105649977031,0,0.0,0,0.0,47243,492.5564788908841,0,0.0,43532,451.1734246460935,1107309,0,39756,0,0,0,0,0,95,0.9917734998120852,0,0.0,0,0.0,0,0.0,0.04774,0.1256944261604486,0.300795978215333,0.01436,0.3566250503423278,0.6433749496576722,23.331052110772443,4.087042772739412,0.2973044397463002,0.2795983086680761,0.2071881606765327,0.2159090909090909,11.440659009511108,6.203900971003368,15.365925613096236,11258.60513915727,43.24799496334072,12.986830362765163,12.800876083237306,8.566979514649894,8.89330900268836,0.5872093023255814,0.8223062381852552,0.7111111111111111,0.5688775510204082,0.1297429620563035,0.7592116538131962,0.9247787610619468,0.8875379939209727,0.745,0.1451612903225806,0.5105082155139473,0.7458745874587459,0.6381909547738693,0.5085616438356164,0.1251980982567353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024103218488586,0.0044389492459867,0.0067159030962139,0.0089467056625233,0.0110710110303461,0.0132615466037006,0.0153665868446527,0.0175590743990531,0.0196160565596297,0.0218948229997953,0.0237580550973783,0.0260643810735651,0.0280150043677097,0.03030084706512,0.0323521831022217,0.0343406593406593,0.0364052057685543,0.0385022190883072,0.0404373174812674,0.0424364234686439,0.0565033651588668,0.0701556224899598,0.0833053761637171,0.0957971182040799,0.1082822021211546,0.1231896314776835,0.1343416558834136,0.1439456824808973,0.1541164658634538,0.1635371202453593,0.1753460067855027,0.1864359113034072,0.1968401264818698,0.2064659222516006,0.2145550071994636,0.2245742550154363,0.2329701943555491,0.2401178547732307,0.2477112096838236,0.2541943906824402,0.2597872586426176,0.2657572357039323,0.2705152784681294,0.2745821601869047,0.2787911887857273,0.2819038944414356,0.2852911772056986,0.2896652480467509,0.2923090852649007,0.2953479177648919,0.292310589248006,0.2884166277440448,0.2851979466985444,0.282442638072178,0.2796661586042588,0.2757390495647269,0.2729049442842057,0.2729707659643965,0.2734542484772178,0.2749995558792702,0.2757226940843391,0.2759000590202636,0.276385677685434,0.278038937425163,0.279635619826848,0.2800103305785124,0.280652418447694,0.2869424873521835,0.2903927868172867,0.2932604024223481,0.297217102009621,0.3007044090790503,0.3059586292065452,0.3099099099099099,0.3118968077208611,0.3148279113625648,0.3178189486368429,0.3186264723497704,0.3190735694822888,0.3240496800903274,0.0,2.35684815793207,50.34409379250824,134.90715892311871,192.28437901259952,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95886,48495,462.8100035458774,4679,47.54604426089315,3695,38.04517864964646,1433,14.621529733224872,77.3584022892406,79.64157337946484,63.35300198276878,65.04201293096718,77.17784176937208,79.4620861146826,63.28525085751163,64.97648536902558,0.1805605198685214,179.48726478223875,0.0677511252571534,65.52756194159315,232.55166,163.59210623180255,242529.3160628246,170611.04460693174,541.73175,365.73017558086747,564478.5161546002,380925.5736821512,480.77941,236.0621794188664,498196.1913105146,243735.98302035843,2133.8114,1002.6526395250058,2199019.4188932693,1019391.8014580158,877.47975,397.0031656985709,901469.0674342448,400454.25865183386,1400.89724,596.9058130659538,1431276.5367206892,597973.9294956916,0.37951,100000,0,1057053,11024.059821037485,0,0.0,0,0.0,47189,491.61504286340033,0,0.0,43430,449.6902571804018,1102459,0,39628,0,0,0,0,0,90,0.9386146048432514,0,0.0,0,0.0,0,0.0,0.04679,0.1232905588785539,0.3062620217995298,0.01433,0.3476474214094925,0.6523525785905075,23.53872357623918,4.134950199876741,0.3004059539918809,0.2784844384303112,0.1964817320703653,0.2246278755074424,11.317191750181808,6.133541413519447,15.344207659075211,11253.259871184538,42.32330461649063,12.58975771213414,12.675086577457344,8.025253606837197,9.033206720061951,0.5756427604871448,0.8017492711370262,0.7036036036036036,0.5785123966942148,0.1216867469879518,0.7553290083410565,0.9357798165137616,0.8642384105960265,0.7289156626506024,0.1428571428571428,0.5015290519877675,0.7032040472175379,0.6435643564356436,0.5339285714285714,0.116030534351145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894136824307,0.004549553657375,0.0066841800975748,0.008924854552285,0.0110591583655214,0.0131082140058417,0.0150067239903826,0.0170227956550563,0.0192356778942854,0.0212535397008761,0.0233708003193907,0.02553797890118,0.0278225682212659,0.0296873874893275,0.0318634775708735,0.033803456749334,0.0360297920761353,0.0382753795926828,0.0402945238911217,0.0422397469776732,0.0568673442793849,0.0704360726300173,0.0839520393737892,0.0963145737085258,0.1087693798449612,0.1245312912595722,0.1352958006167148,0.1446996278575226,0.1544381350866706,0.1637439437465163,0.1755458891425126,0.1864089640701724,0.1964607926259266,0.2053818324899172,0.2147607479306592,0.2235855110304693,0.2320120421475163,0.2393696539166207,0.2468558986629772,0.2525710620948716,0.2591748690130582,0.2646274729900378,0.269569025721151,0.2731053659822852,0.2767640198269997,0.2807504098411172,0.2852010415101897,0.2886292180598516,0.2920372339046335,0.2955947427514695,0.2925360669208077,0.2896025979744606,0.2866777427348502,0.2838202798919715,0.2807163434409432,0.2780157904400514,0.2747761996646949,0.2739568817116157,0.2748064263055565,0.2750912165168639,0.2765929633226264,0.2773850546421187,0.2781557856069461,0.2783463866144535,0.2795796730258276,0.2821176287939555,0.2838647670737223,0.2886363636363636,0.2921239060980691,0.2959075362660691,0.2979184539666772,0.2986052852348993,0.3037351125522229,0.3101034692635423,0.3139928531126575,0.3166270783847981,0.3220547523838818,0.3235530546623794,0.3246187363834422,0.3315689981096408,0.0,1.9015223420482656,46.92439004586174,140.75731548601746,188.257331621867,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95738,48290,461.1335102049343,4882,49.80258622490547,3845,39.639432618187136,1433,14.654578119451,77.38965647392791,79.75667388328482,63.34469261111818,65.09402464779984,77.20986407443607,79.57988993196396,63.276947343277925,65.02971755352966,0.1797923994918449,176.7839513208571,0.0677452678402588,64.30709427017689,233.03566,163.911688756863,243409.7850383338,171208.59925720506,544.24713,366.4773069980647,567958.7624558692,382275.1018384181,484.37821,237.4776069127756,502740.4792245503,245580.334893864,2188.81584,1030.9897280016585,2259291.650128476,1049922.2127072404,916.88874,410.5915419416398,946015.5110823289,417179.6244867286,1392.40034,584.6190419580861,1425932.8584261213,585340.9193952936,0.37957,100000,0,1059253,11064.08113810608,0,0.0,0,0.0,47401,494.5685098915791,0,0.0,43844,454.7619545008252,1103224,0,39571,0,0,0,0,0,91,0.9505107689736572,0,0.0,0,0.0,0,0.0,0.04882,0.128619227020049,0.2935272429332241,0.01433,0.3664571877454831,0.6335428122545169,23.418845399877544,4.0722527968180025,0.3105331599479844,0.2814044213263979,0.2098829648894668,0.1981794538361508,11.592361474613943,6.322062752588581,15.135690181364208,11268.856291967755,44.092142432744005,13.351328217869126,13.578623763189968,8.980409915369371,8.181780536315538,0.5927178153446033,0.7920517560073937,0.7102177554438861,0.5885997521685254,0.1299212598425196,0.7669565217391304,0.8907922912205567,0.8821752265861027,0.7116279069767442,0.1532846715328467,0.5183673469387755,0.7170731707317073,0.6442641946697567,0.543918918918919,0.1248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021574426707722,0.0042679156148941,0.0064847420818153,0.0086860231220919,0.0110266817215457,0.0134719563357908,0.0157930689939947,0.017721338083523,0.0197379180636192,0.0217929820251402,0.0238322211630123,0.0260764223969776,0.0283014988588934,0.0303457791873468,0.0325112685789728,0.0346531072044977,0.0367804665900406,0.0385728661984251,0.0405654004053422,0.0424685080800608,0.0568287411645559,0.0703452895554881,0.0839628184145369,0.0960476345771484,0.1082794485290239,0.1241089747657423,0.1358023381638412,0.1457912099606257,0.1554611080261415,0.1645845173881805,0.1750608298701578,0.1861627328386301,0.1978864281287713,0.2069802532309912,0.2157363198310193,0.224769981952856,0.2331192578717331,0.2405932250997135,0.2471177717569972,0.2535804163806909,0.2592305736018311,0.2648182551088366,0.2701454274811866,0.2741812005071892,0.2783120111562481,0.2822781072368907,0.2853608556577369,0.2876106756773923,0.2913355301415002,0.294326801517067,0.2908294831846997,0.2872417816210281,0.2852227886141186,0.2830330005905824,0.2804874441716702,0.2760791366906475,0.2725211750999716,0.2726398330643452,0.2727026477957608,0.2737920418959325,0.2743098685552197,0.2764612645050193,0.2770812177481193,0.2778072854423936,0.2794806553634699,0.2819593479158068,0.2828780625176006,0.2878580323785803,0.2937982877427438,0.2989548412541905,0.3018979027947638,0.3056629761084918,0.3095773943485871,0.3144607110845533,0.3131257463029301,0.3185245331168078,0.3224648519294047,0.3253654681943895,0.3276790522347872,0.3296951449002634,0.0,2.0184757582469,50.11763218391759,143.94056021298582,194.25198798963504,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95754,48321,460.7118240491259,4782,48.81258224199511,3838,39.42394051423439,1453,14.767007122417862,77.34687979821054,79.70583736508799,63.33382307926016,65.08104527130654,77.16809252228917,79.53222184161956,63.26676343960949,65.01876876527524,0.1787872759213655,173.61552346842757,0.0670596396506653,62.27650603129575,232.91092,163.89388221975378,243238.84119723455,171161.39505373538,545.31656,367.3416203862032,568841.1450174405,382974.29912714177,487.72143,238.7538492410199,504990.7575662636,246078.1126648088,2177.43572,1025.0026500618264,2236655.137122209,1033119.9637214392,910.50247,412.1052584261764,929321.1876266263,408823.65063201,1407.70718,590.409238547536,1430283.8523717024,582016.969784403,0.37973,100000,0,1058686,11056.310963510665,0,0.0,0,0.0,47513,495.5302128370616,0,0.0,44041,455.5841009252877,1103293,0,39579,0,0,0,0,0,103,1.0756730789314284,0,0.0,0,0.0,0,0.0,0.04782,0.1259315829668448,0.3038477624424927,0.01453,0.350210970464135,0.6497890295358649,23.494013150077823,4.040779274714782,0.3035435122459614,0.2803543512245961,0.2149557060969255,0.2011464304325169,11.458412743964493,6.296866542530007,15.421579675668818,11301.127606710434,43.98002987929696,13.309175515689402,13.20949127628152,9.093727087653708,8.367635999672341,0.5880667014069828,0.8057620817843866,0.7090128755364807,0.5612121212121212,0.1308290155440414,0.7653149266609146,0.9078947368421052,0.8727272727272727,0.7064220183486238,0.2,0.511384845091452,0.7306451612903225,0.644311377245509,0.5090609555189456,0.1134521880064829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0043301018131667,0.0067512690355329,0.0091872719696738,0.0115264100268576,0.0137471741919716,0.0159955143235803,0.0180583911800734,0.0204759665514914,0.022709587582422,0.0246778145729313,0.0268499789512593,0.0288969786717673,0.0310169351848036,0.0329115752972258,0.0349917818414877,0.0369787405896302,0.0388701010394406,0.041029106029106,0.0431110787141652,0.0578669394401185,0.0713022920088291,0.0847112854012226,0.097517395051607,0.1088299150523808,0.1243303217625614,0.1350609432962374,0.14462954890975,0.1543573333333333,0.1632071632071632,0.1756139011089479,0.1867827890994748,0.1968694669838476,0.205695131405112,0.2141672433299283,0.2237316636059915,0.2326789516515612,0.2397023950009553,0.2475412625489195,0.2543880740562635,0.2606060606060606,0.2663688561973033,0.271378894329714,0.2760995592180912,0.2798034934497816,0.2827778665650394,0.2867497281963485,0.2906114258134986,0.2934463729532031,0.2963357814104083,0.2932660023100271,0.2901223548152318,0.2871529094509754,0.283828145247214,0.2814285291418761,0.2777099609375,0.2751230128690386,0.2746695458709593,0.2739462623581261,0.2743059258469304,0.2742687658558424,0.2747401983939537,0.2763424043373996,0.2776540294916915,0.2790023479802578,0.2793123179359134,0.2810368349249659,0.2860418367987939,0.2896934959633733,0.2946964906734113,0.2973819138799401,0.2998734043675493,0.3014728925101849,0.3053124056746151,0.3111687349509168,0.3144028103044496,0.3174097664543524,0.3205518360722256,0.3300916921367046,0.3341130604288499,0.0,2.593299287842299,50.095610442148015,138.5416207647551,197.60612284446168,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95763,48361,462.7152449275816,4819,49.17348036297943,3841,39.61864185541389,1415,14.431461002683708,77.36211040614715,79.7236549137711,63.32787542470121,65.07557459619218,77.18387320138093,79.54774601882546,63.2603914821748,65.01084401855586,0.1782372047662193,175.90889494563555,0.0674839425264082,64.73057763632539,233.10386,163.90036054133586,243417.4576819857,171152.073913031,544.46021,367.699659893742,568070.9146538851,383489.6566458256,487.47934,239.2782958639492,506095.1306872174,247578.51755742377,2199.18084,1036.8161160243778,2270237.858045383,1056581.8154829426,834.07518,381.1344161017414,860177.887075384,387288.0263357107,1369.35138,583.6945973820618,1398619.3623842194,584251.2261687935,0.37882,100000,0,1059563,11064.429894635714,0,0.0,0,0.0,47421,494.7004584233994,0,0.0,43976,456.2304856781847,1098729,0,39417,0,0,0,0,0,105,1.0964568779173585,0,0.0,0,0.0,0,0.0,0.04819,0.127210812523098,0.2936293836895621,0.01415,0.3652468152866242,0.6347531847133758,23.213190635734637,3.9460968363300455,0.3160635251236657,0.2822181723509502,0.2061963030460817,0.1955219994793022,11.432951467151897,6.3826397589736,15.090749315014875,11218.8270973219,43.95327092442261,13.242835569621434,13.758990173840614,8.774748438494607,8.176696742465964,0.5946368133298621,0.8182656826568265,0.7125205930807249,0.5795454545454546,0.0972037283621837,0.7696335078534031,0.9265033407572384,0.8727272727272727,0.7864077669902912,0.0993788819875776,0.5202226345083488,0.7417322834645669,0.6527149321266968,0.5068259385665529,0.0966101694915254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020668064800461,0.0041373435820471,0.0066084661455689,0.0087180060355426,0.01066069884543,0.0129954780624923,0.01508167968511,0.0171934983255738,0.0195396775084099,0.0213709347095928,0.0234432685207974,0.0253918688497647,0.0274897119341563,0.0292559769167353,0.0314690006089442,0.0336114471221943,0.035559329405308,0.0376514774236387,0.0395205970707774,0.041496541954837,0.056919479760339,0.0707635009310986,0.0843575653341163,0.0967300876113547,0.1088761141290016,0.1235722142313224,0.1335066037235453,0.1438000340657469,0.1528788315864824,0.1613840578156162,0.1733596097308823,0.1848637652303763,0.1954119259468749,0.2049282526905241,0.2132835968705641,0.2221385291934823,0.2311135919620429,0.2384905235925988,0.24620881302104,0.2517632241813602,0.2566998380004628,0.2621584012535519,0.2676596197754616,0.2724276382812968,0.2761701301223538,0.2808111171339871,0.2844238708870261,0.2877525846611646,0.2912957979714345,0.2959257648252864,0.2939150556295489,0.2911862123940023,0.2877825255819183,0.2843281430219146,0.2821504229441654,0.2785047870634763,0.2754055418796945,0.2746591689279759,0.2751554694668162,0.2764285334137558,0.276627026222247,0.2768259693417493,0.2773091785432334,0.2792125739874526,0.2793623561369647,0.2795515602397189,0.280659712433042,0.2854789581649779,0.2892267202271704,0.2937587986860628,0.2996685775707631,0.3038858214397333,0.3074685972402697,0.3129981378026071,0.3186206896551724,0.3222986362046858,0.3261879778144206,0.3304484657749803,0.3248933901918976,0.3354863221884498,0.0,1.952505034909236,49.95543414519265,141.80049435528667,196.32272236442668,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95768,48546,463.7561607217442,4756,48.429538050288194,3748,38.63503466711219,1468,15.036337816389608,77.32840490063373,79.68964375574315,63.31625382636724,65.0652056763863,77.13778458890083,79.49866355267655,63.24496355287273,64.995399019604,0.1906203117328999,190.98020306660143,0.0712902734945046,69.8066567823048,232.74724,163.79663883307114,243032.36989391028,171034.83296411237,546.15504,368.8934896223592,569817.8828001003,384723.5143183103,488.78178,240.29195188831685,506951.0379249853,248267.61270995848,2129.92144,1020.3600197470994,2196918.511402556,1038359.8325995716,858.35087,398.94388177243343,883992.2625511654,404307.8694083117,1421.2288,604.9064498298604,1456165.0864589424,609091.510002214,0.38039,100000,0,1057942,11046.92590426865,0,0.0,0,0.0,47633,496.8674296215855,0,0.0,44097,457.02113440815305,1096461,0,39359,0,0,0,0,0,104,1.0755158299223122,0,0.0,1,0.0104419012613816,0,0.0,0.04756,0.1250295749099608,0.3086627417998318,0.01468,0.3648103309120258,0.6351896690879741,23.02914161315865,3.980379642941259,0.3121664887940235,0.2798826040554962,0.2065101387406616,0.2014407684098185,11.54553530533168,6.455575674575253,15.703104728913834,11242.034545631936,43.382031865904025,13.022562909794928,13.459520680267204,8.608312671551662,8.291635604290235,0.5933831376734259,0.7998093422306959,0.7273504273504273,0.5775193798449613,0.1152317880794702,0.7845117845117845,0.906054279749478,0.9111747851002864,0.7875647668393783,0.1676646706586826,0.5046875,0.7105263157894737,0.6492082825822169,0.5077452667814114,0.1003401360544217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0043915698087182,0.0065690614466149,0.0085164332608386,0.0106813696567719,0.0129053943937418,0.0150615924294338,0.0173969861559194,0.019536281665951,0.0215468708416074,0.0235764440571985,0.0258229459720311,0.0277563529036703,0.0300967173771977,0.0320723175035601,0.0339342195026151,0.0362085563157949,0.0380702500337042,0.0401521291851112,0.0422012997833694,0.0565714762859051,0.0710871725147727,0.0844560943643512,0.0970579888373853,0.1091782654964228,0.1255165562213978,0.1360527627267811,0.1460131317108469,0.1552180785168097,0.1645276464344301,0.175994830649938,0.1870354944448651,0.1969670597450067,0.2057585267969424,0.2139005062733876,0.2228694833600974,0.2307606463708597,0.2390369636666516,0.2463157655714253,0.2521170174976223,0.258152236802518,0.2639051316835851,0.2692548973190507,0.2737063020927025,0.2767984060066335,0.2799595815208685,0.2840745335388394,0.2875383499038865,0.291046419733893,0.294014456051493,0.291565129585998,0.2886254881469666,0.2860019431966993,0.2827382240496285,0.2805658220896231,0.2772387831303177,0.2731902510003637,0.2739445055215529,0.2742893219124321,0.2752651751493002,0.276298094882331,0.2759448818897638,0.2755153029356652,0.2761154154421587,0.276921972922547,0.2788877659436627,0.2802414213255504,0.2862446572863694,0.291095652173913,0.298504525777253,0.3028909033509223,0.3034096265647096,0.3073775573465592,0.3087253357341136,0.3115088565334322,0.3167832167832168,0.3206095353047676,0.3239749545546354,0.3296763576522216,0.3388910430399379,0.0,1.9618614843287487,51.91240405142604,139.63210419944878,182.4313901370304,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95735,48506,463.1848331331279,4897,49.87726536794276,3913,40.33007781897948,1491,15.20864887449731,77.31464774318667,79.68046940181603,63.30648041847581,65.05588465754383,77.12012476584697,79.48907270853518,63.23348542555051,64.9863899852897,0.1945229773397017,191.39669328085063,0.0729949929252953,69.4946722541232,231.1331,162.5950474483743,241430.0934872304,169838.66657792268,543.19716,366.4454050651834,566856.2490207343,382230.1927875733,493.62246,242.0247071332958,512364.0674779339,250246.72471129804,2259.2428,1066.4399826464823,2329943.239149736,1084000.9846414395,919.39462,419.9604209576356,947504.9668355356,425820.9442290028,1457.65896,619.7200036911622,1488283.3655402935,618027.1274081038,0.38084,100000,0,1050605,10974.095158510472,0,0.0,0,0.0,47189,492.3486708100486,0,0.0,44525,461.84780905624905,1106253,0,39715,0,0,0,0,0,114,1.1907870684702564,0,0.0,0,0.0,0,0.0,0.04897,0.1285841823337884,0.3044721257913008,0.01491,0.3537588097102584,0.6462411902897416,23.55371369974148,4.052707080413872,0.3189368770764119,0.273191924354715,0.1960132890365448,0.2118579095323281,11.22912062170491,5.960296552863444,15.909482668156455,11329.278324565494,44.825028377781344,12.99763439670694,14.225485402881665,8.507283664345431,9.0946249138473,0.5813953488372093,0.7970065481758652,0.7099358974358975,0.5749674054758801,0.1158021712907117,0.7549441100601891,0.9251101321585904,0.8664772727272727,0.7604790419161677,0.1368421052631579,0.508,0.7024390243902439,0.6484375,0.5233333333333333,0.109546165884194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002096945752925,0.0044407944763816,0.006770336385229,0.0090133116553195,0.0112416704817132,0.0136109865927706,0.0157619285663276,0.0176533050172551,0.01968801750046,0.0220404569837435,0.0241149149518624,0.0262960643180581,0.0285958217184237,0.0307055053528557,0.0327518579686209,0.0349832526981764,0.0368122935456814,0.038693811480513,0.0407494827030455,0.0428078802337816,0.0572782893775188,0.0709844884972054,0.0848213349000188,0.0975738008350247,0.1098164102455948,0.1256717302077603,0.1364422699340925,0.1468436911086741,0.1558458216644932,0.1646350623430693,0.1769558419151345,0.1884459949944202,0.1989019488229719,0.2076617100779101,0.2162615070834022,0.2249472632397024,0.2329407554049368,0.2405381631180079,0.2485044922097122,0.2545615304235994,0.2603987943426849,0.26540989560755,0.2704333191106054,0.2748914112932255,0.2786974912485414,0.2831866045226998,0.287240430322742,0.291270406346946,0.2938560198593297,0.2976215561291682,0.295,0.2918892199535899,0.2884447939780356,0.284759242716768,0.282782448804069,0.2791326670945264,0.2748756022431087,0.2749750126984647,0.2755663899353915,0.275370571382814,0.2763076808157015,0.2768634090640627,0.2773137250817589,0.2774517649150885,0.2790191907845996,0.2791227570492737,0.2816106621295902,0.2863122383957018,0.2907248093065375,0.2948115999210889,0.2977479722687933,0.3011252575413387,0.3058002013085052,0.3082369062119366,0.3125410374261326,0.3177581120943953,0.3202504581551619,0.3207199836367355,0.327162199502625,0.3286821705426356,0.0,2.152400204352314,50.640182946377976,142.46764900642444,203.83518691682397,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95821,48776,464.9920163638451,4839,49.28982164661191,3839,39.54248024963213,1501,15.320232516880434,77.3504688262772,79.68228696741046,63.33176974345843,65.05980654404304,77.15892872098817,79.49399832605336,63.259826041585775,64.99160316868962,0.1915401052890217,188.28864135710432,0.0719437018726552,68.20337535341991,232.60996,163.66203554959787,242754.67799334176,170799.75741183863,546.62759,368.5115495252598,569938.7608144352,384054.6221864308,490.19926,240.29148162634652,508533.755648553,248381.69611167168,2222.59884,1049.2811101815937,2289811.794909258,1065345.6083547394,926.62699,420.2208048627443,954295.7598021312,425825.6635089056,1469.08258,625.4097956740475,1500118.2621763495,623167.6396705582,0.38099,100000,0,1057318,11034.303545151895,0,0.0,0,0.0,47493,495.06893061020025,0,0.0,44143,457.5928032477223,1100032,0,39559,0,0,0,0,0,120,1.2523350831237412,0,0.0,0,0.0,0,0.0,0.04839,0.1270112076432452,0.3101880553833436,0.01501,0.3639415481832543,0.6360584518167457,22.955717627514066,4.147207110095326,0.3019015368585569,0.2636103151862464,0.2162021359729096,0.218286011982287,11.465492819689826,6.190414420549158,16.09917894130726,11332.78507830442,44.08918838838527,12.367590056390476,13.19983604163136,9.310229014215258,9.211533276148176,0.579578015108101,0.8142292490118577,0.6945642795513374,0.5879518072289157,0.1288782816229117,0.7462154942119323,0.939903846153846,0.843558282208589,0.7336683417085427,0.1428571428571428,0.5106774668630338,0.7265100671140939,0.6362545018007203,0.5419968304278923,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044614339454285,0.0069318989140363,0.0090730825112016,0.0115141282014769,0.0138314558676743,0.016011422161032,0.0180642921329956,0.0200809782830968,0.0222549802428188,0.0242404355895532,0.0264825178415567,0.0287430199195812,0.0308341915550978,0.0329716796270704,0.0351301364909126,0.0369879605378937,0.0392913451165878,0.0411028662883748,0.0431618726381211,0.0576164743683365,0.0720491828989053,0.0856570991438481,0.098274883906621,0.1101852046943806,0.1257054086614672,0.1360681984456013,0.1458796498207618,0.1551280545739876,0.1637324132314649,0.1760515640300001,0.1870040862214342,0.1975929526519883,0.2072696275572652,0.2155607615402382,0.2242664569510749,0.232602510460251,0.2397790428188916,0.2474714796526477,0.2542537843222571,0.2608107170125633,0.2672262620122051,0.2721692646119639,0.2759628281279939,0.2806374037457186,0.2845309996302231,0.2881839690547426,0.2908313285217856,0.2936095823891227,0.2960705143430185,0.293478846672056,0.2910763214782381,0.2885907931632121,0.2860961021699558,0.2838562159433416,0.2798659874248474,0.275527152506446,0.2751529265132755,0.2758603049009242,0.2764588457562471,0.2757345387302239,0.276195540849287,0.2772341269013291,0.2784522510079971,0.2784497832283408,0.2800539713017981,0.2805830738748938,0.2848225710808027,0.2893987781171896,0.2949529916211006,0.2979432017642558,0.2989264205289342,0.3016079965232507,0.3056075466047765,0.3090689910979228,0.3099279237386654,0.3109572546658639,0.3149028933808958,0.3144081414033208,0.3144677661169415,0.0,1.9545190456677,49.10125861873139,143.77925062656325,199.27971801261324,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95712,48468,463.0453861584754,4766,48.49966566365764,3800,39.05466399197593,1416,14.345118689401538,77.30949638025908,79.66926205291504,63.31695901961641,65.05927526480058,77.12359861240253,79.49063107768823,63.24556624192068,64.99398160600173,0.1858977678565452,178.6309752268096,0.0713927776957348,65.29365879885063,231.7458,163.10995251115733,242128.259779338,170417.45289112892,542.64897,366.6989496513857,566298.6459378134,382465.9626918441,487.43374,239.34304995314687,505915.580073554,247476.0955154708,2177.9426,1029.789088034107,2236901.746907389,1037474.3844778253,847.54193,385.2631805363631,869429.9565362756,386512.0349479125,1381.75488,595.6496108410827,1400808.4461718488,584298.4265654762,0.38003,100000,0,1053390,11005.829989969909,0,0.0,0,0.0,47322,493.74164159144095,0,0.0,43949,455.7422266800401,1102719,0,39553,0,0,0,0,0,95,0.9925610163824808,0,0.0,1,0.0104480106987629,0,0.0,0.04766,0.1254111517511775,0.2971044901384809,0.01416,0.3629242819843342,0.6370757180156658,23.17800868174213,4.112148729687011,0.3171052631578947,0.2810526315789474,0.1928947368421052,0.2089473684210526,11.181716558650963,5.994123985074646,15.196936804222805,11321.60458752084,43.65981577272797,13.209806492630014,13.826786045350095,8.062383568686014,8.560839666061844,0.5747368421052632,0.797752808988764,0.6946058091286307,0.5566166439290586,0.1095717884130982,0.7511071744906997,0.9220489977728286,0.844632768361582,0.7025316455696202,0.1428571428571428,0.5001871958068139,0.7075928917609047,0.6321974148061105,0.5165217391304348,0.1006389776357827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584336800315,0.0046326332008758,0.0067567567567567,0.0091716096530429,0.0115183246073298,0.0137917697232485,0.0158283646741069,0.0179958557473434,0.0201647520542905,0.022044600914943,0.0242212404801197,0.0264800706409019,0.0285347043701799,0.0305963770429337,0.032951052989831,0.0348297773415302,0.0365870066964054,0.0383845507628164,0.0404111795948488,0.0424518965319665,0.0574149688279952,0.0713343661028303,0.0849941260384325,0.0977559046837865,0.1103377729971421,0.1250978318350079,0.13621748957438,0.1470362800204394,0.1565644696079478,0.1656068031442022,0.1770333897191126,0.1884277655669723,0.1981933939163084,0.207008634935922,0.2152907757690529,0.224275342237987,0.2327368585662265,0.2406114127373899,0.2487220846491128,0.2553667006681872,0.2604724919843043,0.2659655362010271,0.2710698599486202,0.2747190809118927,0.2787381105671699,0.2824897063537069,0.2852925724864283,0.2884473503447223,0.2916375314013415,0.2945766113062076,0.2919214503138216,0.2897194975994277,0.2869419438457095,0.2843551949645584,0.2806486101211689,0.2775618266405484,0.2740975300823305,0.2739919288690574,0.2755340767431138,0.2769398282848116,0.2778578784757981,0.2783733533763202,0.2800142426273458,0.2804559168622192,0.2823670916526341,0.2838318995763703,0.2834073820915926,0.2873153017781117,0.2925117821609356,0.2959059267707555,0.2980105562322371,0.3015046296296296,0.3098714588793211,0.3136692818346409,0.3202236719478099,0.3259111684050158,0.3266049476400061,0.3298801543774121,0.3266975729479138,0.3286313381624094,0.0,2.513336017686301,48.65724107503524,141.91988686083516,195.0674351924208,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95734,48471,462.030208703282,4887,49.71065661102639,3894,40.079804458186224,1453,14.790983349698124,77.40440741590693,79.76175818266842,63.3594678928421,65.09934327285447,77.2198159833534,79.58159555180615,63.288637621459095,65.03269554343775,0.1845914325535318,180.1626308622701,0.0708302713830022,66.64772941671515,232.33672,163.288830154848,242689.86984770303,170565.1389839012,547.71066,369.99531231598166,571557.9209058433,385923.4047631789,488.29472,239.66395816675643,506399.69080995256,247460.82708817648,2221.64716,1050.041933228298,2288047.130591013,1064234.037257712,901.93086,408.2918138385977,927696.9937535252,412067.9485046652,1416.4747,601.3298572627882,1444256.7530866778,597258.5296581687,0.38182,100000,0,1056076,11031.357720350135,0,0.0,0,0.0,47733,498.0048885453445,0,0.0,44232,458.42647335324966,1103155,0,39510,0,0,0,0,0,95,0.981887312762446,0,0.0,0,0.0,0,0.0,0.04887,0.1279922476559635,0.2973194188663802,0.01453,0.3607965638422491,0.6392034361577509,23.128130491894105,4.118656429249734,0.293271700051361,0.2817154596815613,0.2208525937339496,0.2041602465331279,11.58174575941822,6.3143576947675415,15.319856466121644,11384.646926415942,44.433494610951975,13.429008901054932,12.889349671640584,9.646402366155968,8.468733672100484,0.5963020030816641,0.8222424794895169,0.7171628721541156,0.5965116279069768,0.110691823899371,0.7632687447346251,0.9397849462365592,0.8416149068322981,0.7319148936170212,0.1575757575757575,0.523088289619505,0.7357594936708861,0.6682926829268293,0.5456,0.0984126984126984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025109601385078,0.0046212313149227,0.0067664901495323,0.0091809272330269,0.0114892275782131,0.0137520358306188,0.0160101910828025,0.0184586186137159,0.0207209416380578,0.0228702993092862,0.0250381773272796,0.0270750156517812,0.0293407079191125,0.0312187786463966,0.0333890505375678,0.035290834100001,0.0376533940868844,0.0396369294605809,0.041549317730688,0.0435158471425149,0.0582069138328861,0.0729930826627039,0.0871156892156965,0.1010566156757609,0.1135026878886897,0.1285714285714285,0.1385921171290647,0.149108797035712,0.1581916678242101,0.1660410544604363,0.1774532295066076,0.1873816351929008,0.1973589749167881,0.2068079429646153,0.2159179676755674,0.2249684406351737,0.233345605872968,0.2408954451927725,0.248656188337756,0.2549208093014739,0.2604325523360599,0.265778753107892,0.2711282154198491,0.2749044433827042,0.2783455223519155,0.2830258211925411,0.2866005892045738,0.2904526947323025,0.294740780883074,0.2973601566298306,0.2946049192413377,0.2914782846965337,0.2885470277244106,0.2854842188511036,0.2821259179361397,0.2783911792028996,0.2755008820564516,0.2759689416677541,0.2770047850137442,0.2772724855060901,0.2780333364372847,0.2791488859609447,0.2794096217499011,0.2800887409872434,0.2816434566959176,0.2834778108422823,0.2839297295773059,0.288073908174692,0.2937949234348415,0.2974405275967653,0.3014209910963216,0.3068963706077,0.3105655686761964,0.3131100765880762,0.3174310233459445,0.3209059233449477,0.3282973258800423,0.333266971929126,0.3385331143951833,0.3377483443708609,0.0,2.3520693963357706,51.26273522143082,140.3541324349979,197.48115324446675,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95742,48436,462.1273840111968,4787,48.73514236176391,3815,39.19909757473209,1512,15.395542186292326,77.33232137485312,79.69705626912891,63.31916690730778,65.07066022486765,77.13734675236846,79.50580864993444,63.24558331626341,65.00058550652672,0.1949746224846649,191.24761919447053,0.0735835910443682,70.07471834093337,231.76978,162.98545760592174,242077.2074951432,170233.81255651827,540.04276,364.36254434027495,563403.4175179128,379911.3396186678,484.59691,238.3302896797482,501254.73668818286,245115.63383899844,2182.26284,1041.051512544372,2246552.9443713315,1054660.7070505857,882.99355,403.7352541953984,907699.91226421,407336.9785208984,1465.02368,621.1824465255979,1494713.5844248082,620516.0999271614,0.38108,100000,0,1053499,11003.509431597418,0,0.0,0,0.0,47074,491.0070815316162,0,0.0,43903,453.68803659835805,1107808,0,39762,0,0,0,0,0,76,0.7938000041778948,0,0.0,1,0.0104447368970775,0,0.0,0.04787,0.1256166684160806,0.3158554418216002,0.01512,0.3726434015242679,0.627356598475732,23.23661956376145,4.0715422023881525,0.3064220183486238,0.2757536041939711,0.2110091743119266,0.2068152031454783,11.614955111353824,6.518249178349573,16.027908288421127,11350.495440880826,43.9243606882438,13.035980593589986,13.28133951218406,9.104530875907509,8.502509706562254,0.5855832241153343,0.8098859315589354,0.7117194183062446,0.5826086956521739,0.1026615969581749,0.7758333333333334,0.9221052631578948,0.9047619047619048,0.7546296296296297,0.1502890173410404,0.4982791586998088,0.7175043327556326,0.6338535414165666,0.5195246179966044,0.0892857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023105922412744,0.0046252624532148,0.0069043944439931,0.0089234897146109,0.011231382762269,0.0138038528539847,0.0160316553805988,0.0183360728542404,0.0205204232912427,0.0228091728091728,0.024839308230904,0.0268155965751596,0.028904884318766,0.0307842834337504,0.0329323401357736,0.0351406660189759,0.0372345382440953,0.0392049050222531,0.0409968096272356,0.0428778237187164,0.0578834189318969,0.0719195639209449,0.0852342447220212,0.0982262083758293,0.1103285394964362,0.1258937259381478,0.13680011034834,0.1465338314653383,0.1566524980242219,0.1657212708692994,0.1769077494749313,0.1881959549394539,0.1987097195326269,0.2076629442068535,0.2159559834938101,0.2244590614134166,0.2324481142602097,0.2407713684589507,0.2481846237632749,0.2546976445935578,0.2603181949667341,0.2660405604547262,0.2707820779712339,0.2752838595314521,0.279553316744553,0.2834833799278298,0.2869271647389809,0.290177493742615,0.2929504591902729,0.295244620716008,0.2932580493379041,0.2909138374026188,0.2877873866272938,0.2851334986448302,0.282876204595997,0.2786233877376368,0.2749288199936729,0.2748427878946679,0.2759049061484267,0.2765540696949732,0.2775937880063617,0.2785069972169038,0.2793440977160545,0.2802695586200741,0.2819602102282272,0.282553368306238,0.2845567611978355,0.2886152110557488,0.2931317434267956,0.298007210490868,0.3013816534541336,0.3074637950241367,0.3121219758064516,0.3147951441578148,0.3191489361702128,0.3245318134232872,0.3262040083757104,0.329974313376803,0.3305585392051557,0.335593220338983,0.0,2.544219139991059,51.922112898841625,136.67332999096337,191.5264650114883,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95723,48451,462.2608986346019,4760,48.37917741817536,3796,39.02928240861653,1410,14.291236171035177,77.41699606751023,79.77090168548563,63.36600846061516,65.10070769399553,77.23196099056291,79.59105466485981,63.29551839071952,65.03519205479893,0.1850350769473152,179.84702062581448,0.0704900698956478,65.51563919660452,231.57926,162.88473312823356,241925.9947974886,170162.13420832346,540.60824,364.8305890434137,564123.1052098242,380496.5784586858,488.77136,239.9399696912476,507108.0722501384,247962.6166084565,2173.38116,1029.3007725248606,2234263.6565924594,1039414.8835050268,884.48491,407.3193815033265,904343.6791575692,406046.0531125194,1365.28274,585.8247863721376,1383736.2180458198,575505.9633482026,0.37999,100000,0,1052633,10996.636127158572,0,0.0,0,0.0,47139,491.77313707259486,0,0.0,44100,457.16285532212737,1110204,0,39830,0,0,0,0,0,90,0.9402129059891562,0,0.0,1,0.0104468100665461,0,0.0,0.0476,0.1252664543803784,0.296218487394958,0.0141,0.3705043198714084,0.6294956801285915,23.448182425851027,4.101043052479822,0.315595363540569,0.279768177028451,0.2070600632244467,0.1975763962065332,11.859365175887,6.685931791576436,14.966034587294136,11294.409465875013,43.38270849122187,12.946802885659237,13.67624859444444,8.643277007482908,8.116380003635278,0.5993150684931506,0.8050847457627118,0.7086811352253757,0.5903307888040712,0.1426666666666666,0.7740259740259741,0.9237668161434978,0.8787878787878788,0.7457627118644068,0.1834319526627219,0.5229079893979554,0.7191558441558441,0.6347305389221557,0.5451559934318555,0.1308089500860585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024291989716391,0.0046196395465459,0.0066841123012009,0.0092303942972613,0.011479176834228,0.0136199841201978,0.0157173726913197,0.0179526433966115,0.0200298403744353,0.022046712431072,0.024183549038294,0.0262633934069543,0.0283214770344175,0.0305451998928961,0.0325169703096952,0.0347528650704254,0.0371175648392607,0.0391851805754351,0.041229720319694,0.0430248669146065,0.0577517437246794,0.0717267790438522,0.0852427714129841,0.0981173748422381,0.1101231911572374,0.1254600837669755,0.1359450915494451,0.1456718896363791,0.1557388433637111,0.1638389601475698,0.1750947622329428,0.1855883148498782,0.1959220050866247,0.2059356840127583,0.2137599156210859,0.2231699357251114,0.231068415597731,0.2395132201409099,0.2464832636220401,0.2531833834818721,0.2591685063396479,0.2644969861221438,0.2697615615473687,0.2743880554159787,0.2790489008524002,0.283304625984252,0.2871002784471886,0.2893467387716759,0.2926643419863102,0.2955074962814758,0.2919738414642334,0.2887556756608458,0.2864990165776903,0.283501362987322,0.2817807285337443,0.277967705503495,0.2742908443716432,0.2736613768695056,0.2745297579674011,0.2751186008638391,0.2767901922541098,0.278363031133738,0.2782937522076087,0.2784168842086633,0.2802294582500238,0.2818010482017917,0.2833977269522547,0.287541920258353,0.2923887425481769,0.2975323149236192,0.3030588446358091,0.3069104626185361,0.311199207135778,0.3140750771082524,0.318952802359882,0.3240365698414535,0.330297147976706,0.3299192436478235,0.3363587827015483,0.3296296296296296,0.0,2.3682860858453867,49.89454678890398,135.91742636942905,194.73833151740848,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95701,48488,462.8687265545815,4758,48.53658791444186,3766,38.83971954316047,1426,14.555751768529063,77.3508434030137,79.74050388182006,63.31502979323547,65.08270191972179,77.17066483118701,79.56385305137671,63.2483270406707,65.01932151086754,0.180178571826687,176.65083044335006,0.0667027525647654,63.38040885424334,231.0715,162.6036835869853,241451.4999843262,169908.0297875522,543.43354,366.5990917987032,567314.1659961756,382536.352354799,489.79179,240.17982844900305,508328.376923961,248306.59308438943,2175.59336,1011.6126849809522,2244438.114544257,1028191.4120629828,869.78559,389.2555420175168,895545.9190604069,393476.9436630196,1394.1607,582.653897794867,1424160.667077669,581364.5762266327,0.37986,100000,0,1050325,10975.068181105737,0,0.0,0,0.0,47295,493.6416547371501,0,0.0,44150,457.9366986760849,1108115,0,39733,0,0,0,0,0,100,1.0449211606984254,0,0.0,0,0.0,0,0.0,0.04758,0.1252566735112936,0.2997057587221521,0.01426,0.3528940516723413,0.6471059483276588,23.40366643139826,4.066286870119008,0.2995220392989909,0.2809346787041954,0.2057886351566649,0.2137546468401487,11.23202911433908,5.965218704985346,15.02236706060689,11316.5816823672,42.68958606089111,12.991364082932478,12.599059026997915,8.419771269567976,8.67939168139274,0.5847052575677111,0.8241965973534972,0.7012411347517731,0.5780645161290323,0.1130434782608695,0.772093023255814,0.9345372460496614,0.8918032786885246,0.7530120481927711,0.1180124223602484,0.5098476402824229,0.7447154471544716,0.6306196840826246,0.5303776683087028,0.1118012422360248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678130413201,0.0045228219975459,0.0068420144352292,0.0089844702821367,0.0111599422165252,0.013406409812351,0.0155974252517112,0.0177094184692689,0.0198300283286118,0.0220294545380061,0.0241718798071992,0.0263141677451161,0.0284914936948427,0.0305687203791469,0.0327151511398701,0.034610017056908,0.0364775964775964,0.0387146326780561,0.0407526445533123,0.0428818612020263,0.0582079107611,0.0725062559549361,0.0853958057812204,0.0975183833198329,0.1097503085540681,0.1255501481168006,0.1363477153319535,0.1456378911948547,0.1548845660538692,0.1643615137826325,0.1759285206182233,0.1874154335754413,0.1970601995408601,0.2065649105530937,0.2154516736194428,0.224405870355591,0.2333474708692352,0.241427044060548,0.2484758347430206,0.2551104592538271,0.2612519818996146,0.2662008590522337,0.2714720475564555,0.2758521467023151,0.2795927541338128,0.2848133229863395,0.2875159363047771,0.2898401565398592,0.2935476368898421,0.2956365935919056,0.2931375317706862,0.2901223548152318,0.2869665383642851,0.2846566029038949,0.2818734379390408,0.2781834535115935,0.2736857034795764,0.2731326462277249,0.2734382970041146,0.2739893834218048,0.2742248062015504,0.2743394079682994,0.2763133295943167,0.2767726486630305,0.2784028605482717,0.2804484281765815,0.2806849815819813,0.2852134524695954,0.2899047619047619,0.2940098276265502,0.2994458843507016,0.3032285071424834,0.308460488773105,0.3129139072847682,0.3178135766831176,0.3195718654434251,0.3256901493437924,0.3258426966292135,0.3346666666666666,0.3314436885865457,0.0,1.9255306533451664,46.780227829560914,138.99517081701717,196.50775796892088,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95723,48602,464.83081391097227,4824,49.25670946376524,3790,39.00838878848344,1426,14.500172372366098,77.26691653433518,79.62437384857417,63.2951211478972,65.03809954182626,77.08182726706534,79.44573529952989,63.2241020254742,64.9721900276937,0.1850892672698449,178.63854904427967,0.071019122423003,65.90951413255652,232.04236,163.22839540828997,242410.24623131327,170521.60442975038,542.00873,365.9439126768422,565632.9513283119,381701.5383231826,486.53836,238.8975431101207,504342.1016892492,246614.5938316832,2183.29904,1034.0342785716218,2248483.979816763,1047882.7358376016,869.74467,395.3339476044952,892947.7450560471,397339.87401616527,1381.13538,591.8885111502157,1405573.3940641226,585289.707979816,0.3811,100000,0,1054738,11018.647555968784,0,0.0,0,0.0,47249,492.9849670403143,0,0.0,43916,455.0003656383523,1101792,0,39536,0,0,0,0,0,103,1.0655746267877104,0,0.0,0,0.0,0,0.0,0.04824,0.1265809498819207,0.2956053067993366,0.01426,0.3777600954843843,0.6222399045156157,22.870481983665652,3.979485204839533,0.316622691292876,0.2736147757255937,0.2081794195250659,0.2015831134564643,11.304497140486903,6.2438162153540855,15.269354580268915,11296.781438666752,43.78419349048928,12.948064286816784,13.612182192661878,9.009072508210446,8.214874502800166,0.5899736147757256,0.8100289296046287,0.69,0.5994930291508238,0.1243455497382199,0.7628691983122363,0.9278350515463918,0.8429003021148036,0.7451923076923077,0.124223602484472,0.5113243761996161,0.7065217391304348,0.6317606444188723,0.5473321858864028,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067131223919,0.0046639426537833,0.0067885700369363,0.0089698398025213,0.0114618717328071,0.0135114496044311,0.0159539222182578,0.0180479986933575,0.0199952976293918,0.0217716180805764,0.0238947033920022,0.0259640261180239,0.02810427271325,0.0301788068556361,0.0325702318191666,0.0345554717137157,0.0364613536575263,0.0384902684981533,0.0402274357348523,0.0419271484537801,0.0565017177106936,0.0704446491374979,0.0841964969723682,0.0969031810002841,0.1093502711599738,0.1249748653310897,0.1355041459193748,0.1450528849738504,0.1546893380387124,0.1638737104271559,0.1759600664122302,0.1863683155442379,0.1966240130683365,0.2052680576091123,0.2140133565493376,0.2231854458269971,0.2318297701046605,0.2399648502191228,0.247029826673633,0.2533926279112415,0.259017114291996,0.2652741208823357,0.2707460283637569,0.2741517803620669,0.2790638328897962,0.2837101506447397,0.287321191472305,0.2911526170378009,0.2947794079527192,0.2978031564755333,0.2942470412005236,0.2916166756305766,0.2887101326559413,0.2853384219504438,0.2831557200398329,0.279247537492915,0.2746822604671801,0.2747259970093826,0.2752441047213529,0.2757432372109633,0.2764025166654183,0.2772599818332609,0.278209668294114,0.2786251870379883,0.2796644795346937,0.2815963369582184,0.281185075561374,0.285781633037903,0.2904113455161222,0.2946514230892229,0.2990133382057373,0.3017319477751132,0.3055345911949685,0.3107503224338062,0.3145825533508049,0.3187536743092298,0.3253030303030303,0.3235883059671606,0.328965328965329,0.3255368098159509,0.0,2.261826864868524,51.549560074304,139.97389497921432,187.88397616894773,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95697,48175,460.8294930875576,4784,48.79985788478218,3707,38.099417954585824,1421,14.399615452940008,77.288290147924,79.65750515333504,63.294707477804174,65.04383470101303,77.10213061685421,79.4773721436367,63.22419725303987,64.97864169044861,0.1861595310697907,180.1330096983378,0.0705102247643054,65.19301056441407,232.0318,163.2267280070616,242464.61226579724,170565.73832728466,541.49047,365.6554702902557,565220.9891637147,381479.8832672451,482.0955,237.1005686087299,500149.90020585805,244925.8676053142,2113.42108,1013.5850815480272,2171686.4269517334,1022741.6174070224,833.52553,383.3849901134584,853064.5161290324,382816.6809534242,1375.1455,592.1103655171098,1395088.6861657104,582815.3986640609,0.37763,100000,0,1054690,11021.11873935442,0,0.0,0,0.0,47224,492.8263163944533,0,0.0,43603,451.9890905671024,1100720,0,39481,0,0,0,0,0,96,1.0031662434559077,0,0.0,1,0.0104496483693323,0,0.0,0.04784,0.1266848502502449,0.2970317725752508,0.01421,0.3493205435651478,0.6506794564348521,23.17229623023245,4.017753644017785,0.3148098192608578,0.2862152684111141,0.1988130563798219,0.2001618559482061,11.562223857806623,6.518233272589798,15.290072631427982,11192.66541268549,42.86467619502957,13.015182566437474,13.454034117288789,8.213798283113508,8.181661228189798,0.5967089290531427,0.8049010367577757,0.715509854327335,0.6037991858887382,0.105121293800539,0.7522361359570662,0.9043280182232346,0.8803680981595092,0.7584269662921348,0.1257142857142857,0.52954808806489,0.7347266881028939,0.6516052318668252,0.554561717352415,0.0987654320987654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382240046992,0.00423758883223,0.0064537078378049,0.0087669395964972,0.0108209258807257,0.0129519697787371,0.0152321526885667,0.0175164599601898,0.0197385233417493,0.0219618277644169,0.0240432902207555,0.0260208166533226,0.0279348563673377,0.029968486745896,0.0315729757607013,0.0338872697959942,0.0358969580253049,0.0379402669101928,0.0397948888634638,0.0416471250351749,0.0561885763819987,0.069668097581405,0.0827884423640046,0.09487276630675,0.1067115652577798,0.1227752543700833,0.1336313537275555,0.143478121903666,0.153315655539636,0.1624987920500789,0.173939766441303,0.1844023876328418,0.1957310100735094,0.2043834776611234,0.2123678414096916,0.2211657939114227,0.2302747062309231,0.2377081524741535,0.2453392481374054,0.25248593409117,0.2582713873201053,0.264132804989566,0.268369053408134,0.2731268539312349,0.2766382217244695,0.2808239478363959,0.2844201307419164,0.287227533460803,0.2897523750194674,0.2927986885072515,0.2899818096072222,0.2866098122149815,0.2846759625155244,0.281221961737721,0.2792697623900849,0.2766384340873933,0.2736520693583091,0.2736586725243021,0.2735340296265957,0.2737594467417653,0.274276521316198,0.2762636712976647,0.2770845091030706,0.2781792710858108,0.2794759825327511,0.2816406653579915,0.2818533910044384,0.286320916726512,0.2894167713129622,0.2943521332438726,0.2985487528344671,0.3044649933949802,0.3074572889387704,0.3135644310474755,0.3194214114612124,0.3223523953137687,0.320991340698716,0.3206650831353919,0.32605221097496,0.3257884972170686,0.0,2.3990353685534305,48.12327246797052,145.7370866769561,181.2462936848512,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95824,48429,462.2119719485724,4846,49.41350809818,3838,39.41601268993154,1483,15.11103690098514,77.36488025655099,79.67920949828961,63.35773544642036,65.07097346506552,77.17783740429579,79.4944092780286,63.28660620294998,65.00281859594303,0.1870428522552032,184.8002202610104,0.0711292434703736,68.15486912249469,233.04028,163.90245964138626,243196.1512773418,171045.31186486292,544.12078,367.35085156521,567213.1616296544,382739.6180134517,486.91263,239.97878595991276,503140.9354650192,246692.1781045473,2204.63372,1047.0271809533483,2267465.186174653,1059594.1990903392,892.86025,404.1393162329029,918625.584404742,408687.855274516,1435.90788,615.4538507369437,1465082.025379863,615395.8305728035,0.37956,100000,0,1059274,11054.370512606443,0,0.0,0,0.0,47445,494.46902654867256,0,0.0,43961,453.9155117715813,1102248,0,39546,0,0,0,0,0,87,0.8870429120053431,0,0.0,1,0.0104357989647687,0,0.0,0.04846,0.1276741490146485,0.3060255881139084,0.01483,0.3585798816568047,0.6414201183431952,23.28244175613253,4.020974307530887,0.3170922355393434,0.274882751433038,0.2068785825951016,0.2011464304325169,11.326666633127894,6.283531083768975,15.992548913987989,11291.756193935287,44.0791533210849,13.068605535886498,13.834061480394276,8.7677935819388,8.408692722865329,0.5849400729546639,0.8170616113744076,0.6984387838948234,0.5403022670025189,0.1347150259067357,0.7506297229219143,0.9326315789473684,0.8314606741573034,0.6898395721925134,0.1502890173410404,0.5103891197582169,0.7224137931034482,0.6434378629500581,0.4942339373970346,0.1302170283806344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903575407677,0.0045825053732916,0.0066868252293205,0.0088164790964124,0.0110228694034024,0.0133384922412739,0.0153723827193214,0.0174673826489985,0.0196168629375204,0.0216592456113414,0.0237978108473742,0.0259433720226183,0.028037287125253,0.030063502845792,0.0320056899004267,0.0341488592959636,0.0362639635912288,0.0383874176302374,0.0404007891184716,0.0423953640799425,0.0570620997517678,0.0711463689953593,0.0844315015398797,0.0977023564497836,0.1105868972271659,0.1258011720606092,0.136081950020657,0.1454918468439739,0.1555233178307803,0.1645050390378168,0.1764307228915662,0.1879439141198473,0.1983746727073215,0.2071270217436412,0.2155179992088259,0.2254732837933475,0.2331855548377035,0.241050574919152,0.2476308012816883,0.2543583881108888,0.2608449663422125,0.2657360613452538,0.2707695942354261,0.2748720524226336,0.2790666634309705,0.2827713512183116,0.2867494565353189,0.2895365079365079,0.2928833531448653,0.2962699822380106,0.2931499858997945,0.2897641470580159,0.2861081415630451,0.2838617546086605,0.2806499480635109,0.2773836462601676,0.2724468976861151,0.2732387435413762,0.2741602199566235,0.2748603750691433,0.2741390952059419,0.2756519330457837,0.2762744523101411,0.2771226941801777,0.2782856322389203,0.2789225099911766,0.2798065227844878,0.2839471464717458,0.2880918321063466,0.2928885195298587,0.2962272727272727,0.298811544991511,0.3015683063551048,0.3056379821958457,0.3049812030075188,0.3144439208294062,0.3146821161762463,0.3219720024345709,0.3199123527800602,0.3152215799614644,0.0,2.484512305384574,51.423267422846735,138.3628320228546,193.8706553379004,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95642,48092,459.54706091466096,4794,48.99521130883922,3816,39.35509504192719,1466,15.02477990840844,77.2563444549925,79.66709016453757,63.27473565930678,65.05589158662448,77.06985721924329,79.48193909813232,63.203562885308266,64.98744253430074,0.1864872357492117,185.15106640525403,0.0711727739985121,68.44905232374288,231.2728,162.65717557630032,241810.9198887518,170068.77269013648,540.51018,364.26238948137774,564618.1384747287,380339.5160324526,476.65597,233.1467994748861,494689.4251479475,240968.76706699,2181.23664,1033.9608243995178,2250793.709876414,1051244.1968839793,891.44,404.6078852255854,915611.1750067964,406699.8062759482,1429.47744,613.7480961604048,1465698.4797473913,615534.3313172319,0.38038,100000,0,1051240,10991.40544948872,0,0.0,0,0.0,47178,492.7124066832564,0,0.0,43202,448.0249262876142,1107258,0,39833,0,0,0,0,0,92,0.961920495179942,0,0.0,1,0.0104556575563037,0,0.0,0.04794,0.1260318628739681,0.3057989153108051,0.01466,0.3594589218221603,0.6405410781778397,23.11239100958897,4.106674765712609,0.3107966457023061,0.2667714884696017,0.2133123689727463,0.2091194968553459,11.322676813383932,6.070935459287725,15.685710218081882,11344.950744349067,44.06982031258172,12.59611155845367,13.576470223441108,9.18957706652378,8.70766146416316,0.5885744234800838,0.8222003929273084,0.7116357504215851,0.5921375921375921,0.1040100250626566,0.7572402044293015,0.9544419134396356,0.8584070796460177,0.7534246575342466,0.0790960451977401,0.5136260408781226,0.7219343696027634,0.6528925619834711,0.5327731092436975,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876740770749,0.0046015223538712,0.0069718588579141,0.009265185456097,0.0114660697934683,0.0138035716104846,0.015596947935368,0.017726511095672,0.0199558128592762,0.021902595939107,0.0241136934995639,0.0260926757581674,0.0282802285478972,0.0303120908125496,0.0321780899746913,0.0345609006529319,0.0366976281307016,0.038622552329507,0.0404782468444657,0.042368991989319,0.0562772372422586,0.0696110371992164,0.082946647909799,0.0963989852738392,0.1085398925786402,0.1243730026032297,0.1347464283439828,0.1455926048200726,0.1554199223969301,0.1646991908308471,0.1761864717424585,0.1877749127862885,0.1978847850475433,0.2072060225516946,0.2156752464765433,0.2258429709871473,0.2343085939247528,0.2414461524590903,0.2485168094924192,0.2552049279052961,0.2613399192987338,0.2662938341950687,0.2714677168716859,0.2754456515215173,0.2801256146842592,0.2834669004605905,0.2864699541226904,0.2904014984518546,0.2950573103054821,0.2984682424402483,0.2949730458221024,0.2926657846866214,0.2899528554893713,0.2879255172813229,0.2848420770479353,0.280990339277212,0.2771153114296588,0.2765251117538785,0.2763999108719127,0.2772548317823908,0.2783640665489916,0.2795590389106598,0.2802573128824072,0.2811204706511566,0.2830333389257723,0.283811502012203,0.2843167922650362,0.2887092225251481,0.2933472657610588,0.298059895320924,0.3022741629816803,0.3059151668245448,0.3102219443576117,0.311903150612828,0.3169078585821579,0.3200464846019756,0.3228486646884273,0.3244147157190635,0.3235841531507578,0.3239863584691171,0.0,2.128869380799322,51.30678483374452,143.14646152627836,189.2161711769292,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95705,48294,461.6791181234,4755,48.57635442244397,3796,39.214252128937886,1459,15.025338279086778,77.32722884548278,79.70593021273419,63.32110870231941,65.07661432941187,77.13866247707769,79.51477364369309,63.250264829383966,65.00609824498245,0.1885663684050911,191.15656904109807,0.0708438729354483,70.51608442941415,230.91904,162.5209980916839,241282.10647301603,169814.53225190315,542.50457,366.38903005708806,566390.8364244293,382371.9405194306,481.90573,237.05791722943977,500330.4529543911,245175.17521581592,2174.759,1032.66992148265,2248116.399352176,1054787.8747968983,853.81981,390.7591011498556,881717.9562196332,397904.7179327894,1412.55758,603.8768528828729,1455832.1299827597,614203.4520854299,0.38073,100000,0,1049632,10967.368476046184,0,0.0,0,0.0,47365,494.4360273757902,0,0.0,43683,453.2469567943159,1107865,0,39664,0,0,0,0,0,70,0.731414241680163,0,0.0,0,0.0,0,0.0,0.04755,0.1248916555039004,0.3068349106203996,0.01459,0.3670886075949367,0.6329113924050633,22.844945951631413,4.06740315089639,0.3150684931506849,0.2766069546891465,0.2078503688092729,0.2004741833508956,11.337982224945351,6.1950737709560455,15.643124158308488,11270.029556680518,43.49113122829731,12.83590276630404,13.504832613923798,8.794392892721275,8.356002955348208,0.5724446786090621,0.7895238095238095,0.6847826086956522,0.5627376425855514,0.1064388961892247,0.7591623036649214,0.9068736141906872,0.8596491228070176,0.776595744680851,0.1272727272727272,0.4916981132075472,0.7011686143572621,0.6147540983606558,0.4958402662229617,0.1006711409395973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023184238767286,0.0045504758236969,0.0067769098102871,0.009009009009009,0.0110635441982489,0.0131550813028825,0.0154079905369852,0.0173521391439339,0.0192256560243797,0.0213822695108089,0.0235463029432878,0.0255327889898834,0.0277097776223488,0.0299945389537459,0.0320030547901379,0.0339713957745168,0.0360520890528038,0.0381213404758938,0.0401593476316282,0.0421087740509891,0.056933666168806,0.0706922714666945,0.0838367946297461,0.0971281296023564,0.1091459427534856,0.125436350942518,0.1356622874970817,0.1456955757866155,0.154909564864374,0.1633878960804925,0.1745147879283975,0.1852393012533281,0.1957259380097879,0.2049451030138664,0.2139280486865418,0.2233817452668195,0.2316715215231972,0.2393561377262348,0.2469813890149795,0.2531929760254751,0.2602011876787016,0.2652743652743652,0.2706627218934911,0.2740778013394194,0.278524223723213,0.28286700357451,0.2861648207246104,0.2896859731270358,0.2933347143818944,0.297194954612624,0.293174530462666,0.2901428984032238,0.2873619873817035,0.2838836296467328,0.2822393822393822,0.2783626806430355,0.2740345825884735,0.2743943334805581,0.2749570512493409,0.2755632890041015,0.2758852031308237,0.2770646169572824,0.2776319079769943,0.2785857238158772,0.2799789201360609,0.2806091951035683,0.2820738636363636,0.2844174544543917,0.2893316150604298,0.2949214122107259,0.3002452093361184,0.3040165105572313,0.3057540428732606,0.3108056800060749,0.317767546744339,0.3158142823473957,0.3168165878944961,0.3180446590223295,0.3157321720195972,0.3205759757483895,0.0,1.6905105261183195,50.11755348398786,138.3547240186451,195.10223841396197,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95765,48047,458.05878974573176,4809,48.79653318018065,3833,39.304547590455805,1467,14.82796428757897,77.38146625236273,79.70346900919141,63.35451413110488,65.0673107266354,77.18648386550659,79.51757127481116,63.27967724012425,64.99978910595516,0.1949823868561395,185.89773438024795,0.0748368909806274,67.52162068023893,231.3025,162.6838012590296,241531.35279068557,169878.1405096117,541.22688,364.7741454933325,564418.7020310133,380162.7269809768,480.11788,235.1771103163466,497354.3779042448,242543.2629994872,2199.36252,1048.1805651563957,2255085.720252701,1052995.2332860604,878.97978,402.0307297585286,900698.5746358273,402660.1091160362,1427.91272,616.5743385181515,1443645.0686576515,602126.103450996,0.37948,100000,0,1051375,10978.697854122069,0,0.0,0,0.0,47203,492.1526653787918,0,0.0,43402,449.1515689448128,1109579,0,39861,0,0,0,0,0,91,0.9502427818096382,0,0.0,2,0.0208844567430689,0,0.0,0.04809,0.126726046168441,0.305053025577043,0.01467,0.3619276144771046,0.6380723855228955,22.924975495255868,4.140490693720794,0.3094182102791547,0.2726324028176363,0.2094964779546047,0.2084529089486042,11.25749282828801,6.07494687337441,15.732080465340102,11275.256473480107,44.12742994617284,12.900511688478288,13.523098495851835,8.921460095384676,8.782359666458044,0.5783981215757892,0.8239234449760765,0.6871838111298483,0.5765877957658779,0.097622027534418,0.7497820401046208,0.927765237020316,0.847457627118644,0.7041420118343196,0.1657458563535911,0.5052122114668652,0.7475083056478405,0.6189903846153846,0.5425867507886435,0.0776699029126213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971123666038,0.0042867566581539,0.006735577849687,0.0090177918596149,0.011266230795042,0.0131929881711016,0.0154313437703848,0.0176940581026337,0.019912137310993,0.0221087739400883,0.0241980924281074,0.0264089384099233,0.0284668982385464,0.0306464896026353,0.0326824339649875,0.0343182311084489,0.0364893253717751,0.0385277345775013,0.0407039561170212,0.0427851475457631,0.057455668854957,0.0707543220729206,0.0838193337249307,0.0966273470846737,0.1088794703103913,0.124152448247776,0.1341459533433054,0.1442807256622093,0.1543268563126916,0.1637394921942014,0.1756510879278231,0.1867766986090981,0.1977118496606925,0.2069139043868285,0.2158813301934546,0.2249085872576177,0.2327681471642091,0.2412404077683012,0.2490548472428787,0.2538565567194627,0.2590045500329964,0.2646304772831037,0.2695404067908981,0.2742497753818508,0.278500066766209,0.28283885264065,0.2859767299448867,0.2894609774073038,0.2925942224062953,0.2944060090927061,0.2907120576530063,0.2878038730943552,0.2856921821813374,0.2830510187872749,0.2804568339447225,0.2776571008994676,0.2736185664666877,0.2739643131674926,0.2740066366034204,0.2750900988868571,0.2768090021611148,0.2773785683433463,0.2778252087541386,0.2783266577659101,0.2795660381867278,0.2805054899523513,0.2809214245336348,0.2852115965496839,0.2895258635683723,0.2933848458566585,0.2982471991326346,0.3010865571361083,0.3035559410234171,0.30783623980241,0.309011275743174,0.310825043885313,0.3153153153153153,0.3133320087423008,0.3153225806451613,0.3304543747653023,0.0,2.807921834926291,49.11676627454382,146.65051558858374,191.6243248557323,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95756,48425,460.9737248840804,4897,50.13785036968963,3858,39.7050837545428,1469,14.912903630059736,77.31912755708531,79.6685672391509,63.32066847763053,65.05820529579073,77.13782720632153,79.49210797344439,63.25282356681377,64.99468893962617,0.1813003507637773,176.45926570651227,0.0678449108167669,63.51635616455553,231.56276,162.86370949294812,241825.6192823426,170081.78571424237,542.67181,366.2271642429778,566129.8090981244,381866.1871641423,488.00207,239.7612137262508,506224.9885124692,247647.03885570084,2213.1486,1039.057417999304,2278998.078449392,1052940.8188477082,935.34072,427.4692359441885,955015.5603826392,424670.40740678535,1431.6589,599.7295035011393,1455380.3625882452,593619.4209090981,0.3799,100000,0,1052558,10992.073603742849,0,0.0,0,0.0,47311,493.4625506495677,0,0.0,43949,455.543255775095,1105516,0,39745,0,0,0,0,0,102,1.0652074021471238,0,0.0,0,0.0,0,0.0,0.04897,0.1289023427217689,0.2999795793342863,0.01469,0.3497546614327772,0.6502453385672228,23.178918864057007,4.120401972635133,0.2998963193364437,0.2820114048729912,0.2122861586314152,0.2058061171591498,11.44859183435765,6.258444329041079,15.563477986271067,11376.408557708684,44.17201539571607,13.43042326832006,13.030493595529276,9.096294908099573,8.61480362376716,0.597459823742872,0.8106617647058824,0.6940363007778738,0.608058608058608,0.1536523929471032,0.7851662404092071,0.9210526315789472,0.868421052631579,0.7772511848341233,0.2317073170731707,0.5154562383612663,0.7188552188552189,0.6318874560375146,0.5493421052631579,0.1333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683774012901,0.0047527842803433,0.0071222758816606,0.0093542424180869,0.0115731559731925,0.0137891703074557,0.0160795309711955,0.0184311563125433,0.0206846485756937,0.0229315534079973,0.0252119795351317,0.0274460679118193,0.0295675425515503,0.0316153822381094,0.0338316773454669,0.0357065346575583,0.037827653318978,0.0400390017218845,0.0420216966623716,0.0438903470399533,0.0581825014091563,0.0723139847484753,0.0855848296694076,0.0980977717957076,0.1105816870822879,0.1261260308733347,0.1359365389102169,0.1456628826164207,0.15477499599637,0.1638226719259132,0.175644103745653,0.1871949965915361,0.1974879016910445,0.2067061704639874,0.2152883198028733,0.2245006421896452,0.2330149093830908,0.2408832197250905,0.2492455356129881,0.2556464999141434,0.261511578119033,0.2657891657891658,0.2714852305688747,0.2757127607258944,0.2805853326527139,0.2850782531480088,0.2877763589473948,0.2905533561617678,0.2936100746268656,0.29648148392459,0.2943773640781273,0.2908295862381915,0.2884712909224094,0.2860838524128163,0.283799628942486,0.2801970805153472,0.2758882526022716,0.2762627421416631,0.2768124829653857,0.2780907891452412,0.2796977857570317,0.2802860182011583,0.2814786935976247,0.281179543272987,0.2830803903234314,0.2848347880299252,0.2863548643432853,0.2910387092739666,0.2974955464738552,0.2998544395924308,0.3035133670520231,0.3079440485616257,0.3121517560883992,0.3146519035340512,0.3184367988032909,0.3179642815454651,0.3240433865622175,0.3203046702746041,0.327168887680174,0.3348331458567679,0.0,2.1868538141857106,51.00507114661345,140.3085083574554,195.74727276107777,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95666,48587,463.5920807810508,4823,49.02473187966467,3806,39.0420839169611,1460,14.82240294357452,77.34181859432726,79.72374209422155,63.3271521787835,65.08543178065916,77.1499933794706,79.53757682980526,63.2535329230216,65.01646398789515,0.1918252148566637,186.1652644162888,0.0736192557619048,68.96779276401332,231.93192,163.1071519840592,242439.23651035893,170496.46894827753,541.65797,365.1260340383725,565454.4456755797,380925.00369867287,487.71898,239.11651416901603,504750.3919887943,246113.05651278343,2181.49432,1041.506802907146,2240118.704659963,1048485.8182710112,909.71104,417.7494450557992,931943.8567516152,417705.5806688319,1422.9999,612.3517230562612,1446796.8557272176,606467.3812456554,0.3802,100000,0,1054236,11019.965295925407,0,0.0,0,0.0,47231,492.9337486672381,0,0.0,43991,454.74881358058246,1106596,0,39765,0,0,0,0,0,93,0.9721322099805574,0,0.0,1,0.0104530345159199,0,0.0,0.04823,0.126854287217254,0.3027161517727555,0.0146,0.354684702605928,0.645315297394072,23.27667027235274,4.11175867865584,0.303205465055176,0.2756174461376773,0.2143983184445612,0.2067787703625853,11.775000437237988,6.558812922423231,15.527830264602308,11317.8054919958,43.78585122101687,12.875168721750772,13.1163011374065,9.136350047157798,8.658031314701804,0.5835522858644246,0.8017159199237369,0.707105719237435,0.5735294117647058,0.121982210927573,0.7430025445292621,0.9273127753303964,0.8427299703264095,0.7075471698113207,0.1193181818181818,0.5119908641035401,0.7058823529411765,0.6511627906976745,0.5264900662251656,0.1227495908346972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303551356441,0.004652482844603,0.006939723831458,0.0093640186061627,0.0117440110627567,0.0139284841573674,0.0160637658114953,0.0183028286189683,0.0204008626416868,0.0226330497804256,0.0244547663723891,0.0265590337687946,0.0284767803131622,0.0305009995259979,0.0325227587061082,0.0347955605664104,0.0367253886010362,0.0390281887556455,0.0411027308192457,0.0432121932403411,0.0577174196918255,0.0721353703102585,0.0852785591334648,0.0974798758352186,0.10919352286513,0.1248704224756182,0.1354959199482167,0.1459369111368983,0.15537912463669,0.1640139002102192,0.1754784650346261,0.18586664935964,0.1960236233318469,0.2056675558665325,0.2145693761482019,0.2240067343796728,0.2321534219662212,0.2395833333333333,0.2465131586413518,0.2533040152087771,0.2596225018504811,0.2654419159435882,0.2708983820607437,0.2750098829617739,0.2786055152817748,0.2832224685883222,0.2874473167498343,0.2908866619188117,0.2946727943556217,0.2984151679763726,0.2956061992143357,0.2914370525100663,0.2878293177212339,0.2850937324116433,0.2816351958704777,0.2779078128107455,0.2742131610947049,0.27430441898527,0.2744957754156445,0.2744989953233636,0.2758434397064028,0.2762477639519569,0.2777337889648275,0.2792125458792125,0.2808749701171408,0.2831075118102061,0.2834496058079519,0.2877436715792109,0.2926479336529377,0.2976303317535545,0.3020502585503039,0.3058239611383916,0.3091384462151394,0.3141305987030613,0.3195628010374212,0.3234602726845322,0.3252684107061848,0.3255535607420706,0.3262119967132292,0.334597875569044,0.0,2.811228802097912,50.49550415248064,139.00297514612177,191.3508667090177,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95676,48634,465.0382541076132,4857,49.51084911576571,3849,39.612860069400895,1472,15.071700321919812,77.38307130315455,79.76070264113727,63.34642469116329,65.09781299557599,77.19359071129894,79.57261730273989,63.27482579752861,65.02909812910099,0.189480591855613,188.08533839738573,0.0715988936346789,68.71486647500546,231.50468,162.98039566987862,241966.88824783644,170345.75036310096,544.2724,366.9722683824734,568252.5293699569,382940.5540700345,489.43663,240.19793041360128,507073.27856515744,247686.54310765295,2216.58732,1046.7620083201068,2283308.624942514,1060709.910606743,920.48939,418.54450430104447,946534.9408420085,422010.27263673575,1434.7579,614.6868888987908,1468775.5968058866,614897.207264428,0.38187,100000,0,1052294,10998.494920356205,0,0.0,0,0.0,47336,494.1155566704293,0,0.0,44237,457.920481625486,1105431,0,39724,0,0,0,0,0,105,1.0974539069359086,0,0.0,0,0.0,0,0.0,0.04857,0.1271898813732422,0.3030677372863908,0.01472,0.3476199881493186,0.6523800118506814,23.111752500724684,4.116161572721085,0.3052740971680956,0.2764354377760457,0.2068069628474928,0.2114835022083658,11.366106408881365,6.152888728481679,15.796626790407748,11332.07020113314,44.09034760309343,13.00227191734373,13.218669962187183,8.93756806948401,8.9318376540785,0.5811899194595999,0.8298872180451128,0.6970212765957446,0.5552763819095478,0.1142506142506142,0.7467362924281984,0.9264069264069263,0.853035143769968,0.680628272251309,0.180327868852459,0.5107407407407407,0.7558139534883721,0.6403712296983759,0.515702479338843,0.0950871632329635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470060637964,0.0049439750369785,0.0070080425147817,0.0091799017019375,0.0114991612017691,0.0135386870527398,0.0158311076678423,0.0178219640906817,0.0201465763086075,0.0221528382044326,0.0244317541035709,0.0266470878173005,0.0286528236298376,0.0306638512643559,0.032392840563264,0.0343947333064624,0.0364016823088238,0.0382152383522402,0.0403498372487234,0.0424057360818725,0.0571962851143403,0.0710950586264656,0.0845791500120647,0.0974237644584647,0.1099313588005187,0.1255682659167318,0.1365481856826349,0.1469865679737102,0.1565154295958001,0.165216645952085,0.1768085381073288,0.1878973316611166,0.1986610296594972,0.2079257696805429,0.2162804254336277,0.2259383170115655,0.2346044330299815,0.2420669774564781,0.2489754214679003,0.255833667449453,0.2612750202475992,0.2664810091034612,0.2707659881827762,0.2758008611281018,0.2796475235490732,0.2833592266528569,0.2875896332077738,0.2909090909090909,0.294042994042994,0.2976510952757983,0.294678647332598,0.2909058433974966,0.2880528795443358,0.2842530476808771,0.2806458308622939,0.27677957030354,0.2728493561892725,0.2734074425762512,0.2728915559950219,0.2726447178647104,0.2730148687124328,0.2743513815621752,0.2758169119481167,0.2758490733351068,0.2784518032162908,0.2810277291000927,0.2821940928270042,0.2868585265902952,0.2911730989682843,0.2968866261993342,0.3008375360230547,0.3043887147335423,0.3094117647058823,0.3100231360549295,0.3117026158788435,0.3144341801385681,0.3179662021938926,0.3211311253147395,0.3253298153034301,0.3240875912408759,0.0,2.396190294120785,49.69996338663207,141.48386205550193,197.74550671619664,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95703,48220,460.225907233838,4808,49.225207151290974,3813,39.36135753320168,1441,14.806223420373447,77.3960056150407,79.78207206755904,63.35197710932333,65.1137719592384,77.21619986402398,79.60182019662028,63.28464048813248,65.04809905047284,0.1798057510167297,180.25187093876127,0.0673366211908472,65.67290876556342,233.16612,163.94227445909337,243635.1211560766,171303.17174915454,541.48328,365.429576158068,565306.9391764103,381348.5430530579,490.01237,240.38864369312017,508665.04707271454,248653.55453473725,2208.26916,1045.9134079379735,2281680.44888875,1067135.7093695842,897.099,410.6346703808731,924129.839189994,415843.8633515733,1405.5076,597.8300780769986,1444540.986175982,604226.7282967328,0.37895,100000,0,1059846,11074.323688912573,0,0.0,0,0.0,47317,493.9134614379904,0,0.0,44159,458.04206764678224,1103083,0,39538,0,0,0,0,0,90,0.9404093915551236,0,0.0,0,0.0,0,0.0,0.04808,0.1268768966882174,0.2997088186356073,0.01441,0.3636182506475393,0.6363817493524606,22.70631782368972,4.019891362853667,0.3110411749278783,0.2808811959087333,0.2006294256490952,0.2074482035142932,11.150196147404971,6.0732310497306194,15.502687583032118,11222.943660766645,44.03776633350917,13.243221228580182,13.441305669516687,8.588289917201037,8.76494951821125,0.5832677681615526,0.8057889822595705,0.7048903878583473,0.5516339869281046,0.1302149178255373,0.7527993109388458,0.9232409381663113,0.859375,0.6770833333333334,0.2,0.5090497737556561,0.7142857142857143,0.6478060046189377,0.5095986038394416,0.1096563011456628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019044338867672,0.0044513394577274,0.0064757110087087,0.0088392176784353,0.0110471385266413,0.013409766627296,0.0155693995534121,0.0178970688827859,0.02012921957104,0.0222317754713504,0.0240926799261841,0.0261096337669538,0.0284468395828619,0.0303049031726411,0.0325123559334275,0.0344952345510554,0.0365755127408328,0.0387378036122067,0.0405915572057034,0.0427002126151665,0.0571541972613613,0.0708574896921241,0.0843244603863822,0.0967819934609602,0.1084106239460371,0.1230570769979064,0.1336939803765579,0.143775544959128,0.1535807743658211,0.1618285738796607,0.1732224962043308,0.1846664647862952,0.1952062236516145,0.2041811008993847,0.2121868369848406,0.2209223822119907,0.2299887386131769,0.2385144923467382,0.2460139511709018,0.2528907678244972,0.2587908093199312,0.264118360869971,0.2681973792940621,0.2720099469178901,0.2773739429623706,0.2807398946166034,0.2848809672192446,0.2885321914510857,0.2919201814994328,0.2946848480071464,0.2912830820770519,0.2886698158417197,0.285820497713436,0.2830970713103548,0.2806687874528372,0.2770272330822482,0.2733691626345569,0.2732041309889535,0.2739989122306071,0.2745460032307883,0.2751066485348634,0.2755954950359063,0.2766368336898062,0.2773192911033918,0.2782648053742436,0.2800051599587203,0.2809668523833643,0.2853231276642086,0.2904087722950933,0.294145401643534,0.3012347912614772,0.3037614582235802,0.3058926560740648,0.3109935776350586,0.3106741573033708,0.3144378698224852,0.3190909090909091,0.3221530427796746,0.328965328965329,0.3253150057273768,0.0,1.8713084910353657,50.94602724919017,146.47270717099985,186.9119818680229,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95826,48475,461.9623066808591,4806,49.057667021476426,3767,38.76818400016697,1381,14.088034562644795,77.38566316619061,79.7065972708326,63.36611244363343,65.08418932249171,77.20528037223659,79.53033813040835,63.29686472183022,65.01884776074142,0.1803827939540241,176.25914042424995,0.0692477218032081,65.34156175028727,232.50194,163.59863457436023,242629.2864149605,170724.68283593204,545.97563,368.55498256974926,569242.5124705195,384093.75594280177,486.89957,239.04751120385467,505104.0844864651,247076.75896702427,2141.77928,1017.1115414599656,2205418.696387201,1031762.5503099012,839.46792,385.5395757814398,861570.6071421118,387869.999563207,1337.74214,580.4690830451161,1365887.4835639596,578370.5252020654,0.37964,100000,0,1056827,11028.603927952749,0,0.0,0,0.0,47638,496.5771293803352,0,0.0,43944,455.5235531066725,1103773,0,39604,0,0,0,0,0,98,1.022686953436437,0,0.0,0,0.0,0,0.0,0.04806,0.1265936150036877,0.2873491468997087,0.01381,0.3567438148443735,0.6432561851556265,23.17484657613531,4.04888004079815,0.3089992036103,0.2851075126095035,0.2123705866737457,0.1935226971064507,11.318255135030354,6.206065102771736,14.850019765915755,11264.251835499836,43.20066766213531,13.171547537651874,13.179469115552912,8.890470651023469,7.959180357907056,0.597557738253252,0.8109869646182495,0.7036082474226805,0.59375,0.1179698216735253,0.7586206896551724,0.9273504273504274,0.8680981595092024,0.7083333333333334,0.1551724137931034,0.525891829689298,0.7211221122112211,0.639618138424821,0.5575657894736842,0.1063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788733250281,0.0045314923512058,0.0068810831108991,0.009174405136854,0.0115545791122502,0.0136849607982893,0.0159924165978656,0.0182365547504847,0.0204509218756387,0.0225549290297491,0.0245034741437619,0.026481093730755,0.0285405960945529,0.0307153885743695,0.0326568912536864,0.0349945772865774,0.0369592434322845,0.0390858208955223,0.0411916183830706,0.0431004880282203,0.0578700323354542,0.0714883030543766,0.0844661517015857,0.0971927465277048,0.1092653843723007,0.1237286524508095,0.1343002129395188,0.1437955040654727,0.1539347654500074,0.1625271771144598,0.1730456945594545,0.1839157439913583,0.1948153455350745,0.2039361655678295,0.2129795389397151,0.2225305707272848,0.230550728512231,0.2393489761763021,0.2467686939973039,0.25318061794863,0.2589414604289129,0.2642638788416213,0.268407822218026,0.2727435658470141,0.2772148987422982,0.2817482234250156,0.2861060556954451,0.2889905350784942,0.2917354519191085,0.2942382773987459,0.2913892170550961,0.2886694101508916,0.2864944545837428,0.2841955140671593,0.2814948675030735,0.2782842396200772,0.2742289531449868,0.2747650391328552,0.2750882458264413,0.2752381800373965,0.2763889407111675,0.2779932662584418,0.2790541954383762,0.2799919664375613,0.2808100706289338,0.2811441671442714,0.2842967217309715,0.2889822010528954,0.2951847312204517,0.3000950043543662,0.301857725419121,0.3070281653066596,0.3117669079111554,0.3166165413533834,0.3166542195668409,0.3185455401270887,0.321645415907711,0.3247846123021438,0.3346938775510204,0.3374764595103578,0.0,2.0540969347332947,50.43696444480117,136.59997062021222,190.2560730021847,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95763,48608,463.6863924480227,4805,48.76622495118156,3813,39.190501550703296,1442,14.692522164092605,77.37657405990127,79.72220678493542,63.3458979718325,65.07952081388511,77.19066378233809,79.5404001740795,63.27398224070268,65.01191828797344,0.1859102775631811,181.8066108559293,0.0719157311298204,67.60252591166704,231.99044,163.21501608133548,242254.77480864216,170436.4066302596,544.57718,367.44667170882553,568040.683771394,383073.0989096264,493.41179,242.6601520975936,511420.9036893164,250478.34436405852,2179.0112,1056.6267885630057,2241217.7145661684,1069386.3108983473,873.57207,408.7492890088288,899210.8329939537,413910.8152603563,1394.75568,605.2973044956653,1423493.9381598325,602793.3402808895,0.38133,100000,0,1054502,11011.580673120096,0,0.0,0,0.0,47334,493.6248864383948,0,0.0,44661,462.5272808913672,1104703,0,39639,0,0,0,0,0,94,0.9815899668974448,0,0.0,0,0.0,0,0.0,0.04805,0.12600634620932,0.3001040582726327,0.01442,0.3669614147909968,0.6330385852090032,22.82405735105662,4.043549571975056,0.3244164699711513,0.2835038027799633,0.1982690794649882,0.1938106477838972,11.469450535064162,6.200563485079596,15.49323804713084,11340.818555123986,44.01055858253256,13.401125729984797,14.170688609031352,8.424557994648966,8.014186248867443,0.6147390506163126,0.8251618871415356,0.730800323362975,0.6018518518518519,0.1258457374830852,0.7819063004846527,0.9224489795918368,0.8860103626943006,0.7684210526315789,0.1627906976744186,0.534368932038835,0.7445008460236887,0.6603995299647474,0.5459363957597173,0.1146384479717813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0044703950369491,0.0066255402909961,0.0088991832256491,0.0111056870881132,0.0131770552234702,0.0154581884553027,0.0178257851104667,0.0198938856459379,0.0221617139756988,0.0240552645874117,0.026288236501745,0.0284768484250349,0.030566741161083,0.0326104898279206,0.0346991090070907,0.0367083626724102,0.0389227768787086,0.0410125792701944,0.0430951885023953,0.0576146291058251,0.0711260314372666,0.0845895796205053,0.0976342865550546,0.1101051832802849,0.125676532769556,0.1366836301950805,0.1472744490907736,0.157115700890664,0.1661769752080295,0.177772512358776,0.1887078274794953,0.1984116623150565,0.2070768961442514,0.2160439463660582,0.2255608263876574,0.2343378404028449,0.2417122409020322,0.248831192410694,0.2554616652926628,0.2608761032261049,0.2666658872495148,0.271937291622331,0.2761270859769674,0.2803709953504182,0.2837455047046652,0.2876666125345092,0.2901735278063394,0.2932916510573433,0.2960782764433207,0.2928833219219461,0.2901809600899999,0.2870881242190681,0.2843436671660712,0.2824558547090777,0.2781905561064917,0.2740473300014189,0.2735830555010786,0.2745925346217973,0.274851724260397,0.2760872404335902,0.2765777629277305,0.277574065586066,0.278596926897408,0.2802739268414899,0.2811400786261121,0.2833380401016662,0.2879419820717131,0.2926523796270526,0.2959990558243833,0.3007084517846667,0.302446724546172,0.3081084442233553,0.3119831604270034,0.313841598815692,0.3154448731439261,0.3207405177603853,0.3274091627172196,0.3294875234773276,0.3352017937219731,0.0,2.399013254303242,53.463966153064966,136.24553460751787,187.1755040481297,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95756,48389,461.9136137683278,4731,48.14319729312001,3799,39.14115042399432,1439,14.672709804085384,77.3313489084019,79.69842585756955,63.31030609897547,65.0634859704809,77.143339749013,79.51455712420847,63.23885574643061,64.99648888569,0.1880091593889119,183.86873336108067,0.0714503525448577,66.9970847908985,234.09078,164.73381525618652,244465.22411128285,172034.31750295186,546.98832,368.8508251823413,570685.9309077238,384654.3247468371,487.56044,239.12798650183217,506263.5866159823,247486.84301152604,2189.49216,1039.9913902623127,2256938.343289193,1056588.5916937976,869.12645,399.1368480661571,897461.7987384603,406641.79588345,1404.68952,603.1235323685027,1433626.3419524624,599081.2752301638,0.37956,100000,0,1064049,11112.055641421948,0,0.0,0,0.0,47698,497.5562889009566,0,0.0,44039,456.9844187309411,1091339,0,39121,0,0,0,0,0,82,0.8563432056476878,0,0.0,1,0.0104432098249718,0,0.0,0.04731,0.1246443250079038,0.3041640245191291,0.01439,0.3660423452768729,0.633957654723127,23.05652548008748,3.985714252848958,0.303764148460121,0.2777046591208212,0.2108449591997894,0.2076862332192682,11.13723658054111,6.024457324169354,15.416339224041392,11264.57987991285,43.555203967591694,12.88616434532528,13.19153502744813,8.864708815475224,8.612795779343063,0.5780468544353777,0.8066350710900474,0.7010398613518197,0.5755305867665418,0.0950570342205323,0.762532981530343,0.9267734553775744,0.8571428571428571,0.7440758293838863,0.1736526946107784,0.4992486851990984,0.7216828478964401,0.640625,0.5152542372881356,0.0739549839228295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316355788812,0.0046340894571929,0.0068510530322253,0.0092460881934566,0.011261673686138,0.0136163192145919,0.0156315322572422,0.0179911575808938,0.0202006771062402,0.0223180449433598,0.0246553987528716,0.0266810499820208,0.0286093587593006,0.0306100363816257,0.0327315517294769,0.0344560148082272,0.0363681550824289,0.0384272134822132,0.040594203501185,0.0423827677436826,0.0576549679520638,0.0713044934178857,0.0841533264796592,0.0968420388461821,0.1089858495539762,0.1239118707889531,0.1343839541547277,0.1443682225867615,0.1542975012290789,0.1633561901082745,0.1758657483752061,0.1874269005847953,0.1976179589348313,0.2069603485647975,0.2159513795609186,0.2245898004434589,0.2325765781862444,0.2397433732905622,0.2467009338371288,0.2532222769611493,0.2594602726410072,0.265461654628253,0.2710179612340647,0.2753012626626338,0.2791735577390797,0.2826850767428959,0.2863077288822712,0.289450585795881,0.2925954228134025,0.2951848531195612,0.2919363302431345,0.2884789715133368,0.2850978904021026,0.2824401072447891,0.2802403540189737,0.2766152156671344,0.2731712696737195,0.2724376776554383,0.272289525624447,0.2714014175830032,0.2713782367964803,0.2721944695747945,0.2722898091825681,0.2736935734934401,0.2743555406762638,0.275132823636128,0.2775594447114705,0.2811445707859553,0.2862835570469799,0.2916337181717539,0.2954566024074577,0.2994320572149768,0.303941132451983,0.3116023761185051,0.3134755703334257,0.3166589648798521,0.3238180196253345,0.3310573546625048,0.3328898350186269,0.3329633740288568,0.0,1.9949801946983017,49.51948172271708,140.23499508075108,194.57969394333836,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95487,48466,464.05269827306336,4701,47.975117031637815,3720,38.34029763213841,1373,13.949542869710012,77.22623088476638,79.7128733886182,63.24095407219974,65.07605070017884,77.04795224396476,79.53980997464511,63.172893530612,65.0124681385629,0.1782786408016221,173.06341397309666,0.0680605415877408,63.58256161594511,231.36762,162.75239832513094,242302.0515881743,170443.9676452145,541.51517,365.2378401445107,566483.1757202551,381877.03261926566,482.61486,236.8913704208181,501266.4970100642,244860.8506905814,2127.05104,1006.5477609496396,2192185.616890257,1018863.9535703246,836.22729,379.0953649786005,858508.9802800382,380003.49732751696,1332.09452,571.4145463181902,1354791.018672699,565681.7566990043,0.38048,100000,0,1051671,11013.729617644289,0,0.0,0,0.0,47206,493.7321310754344,0,0.0,43602,452.58516866170265,1102764,0,39596,0,0,0,0,0,93,0.9634819399499408,0,0.0,1,0.0104726297820645,0,0.0,0.04701,0.1235544575273338,0.2920655179748989,0.01373,0.3587958222404259,0.6412041777595741,23.092364273172805,4.074456732153493,0.3239247311827957,0.282258064516129,0.1962365591397849,0.1975806451612903,11.495065886396675,6.218269724939857,14.738116748510487,11346.257041643568,42.61973629166908,12.68000541184401,13.722211160386246,8.239202921324415,7.978316798114404,0.5922043010752688,0.7914285714285715,0.7219917012448133,0.5904109589041096,0.0965986394557823,0.7538048343777977,0.8978622327790974,0.882183908045977,0.7230769230769231,0.1045751633986928,0.5228582404917403,0.7201907790143084,0.6569428238039673,0.5420560747663551,0.0945017182130584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024927800577595,0.0046963595605911,0.0069648912624119,0.0091713268937468,0.011300700439811,0.0132905264230749,0.0153470953785242,0.0176159238141949,0.0198676174204834,0.021895043134362,0.02411110198719,0.0262595105901706,0.0281210099262737,0.0303746029126614,0.0321747396263845,0.0342189182473287,0.0362663125790991,0.0382016632016632,0.0405375839974996,0.0426138440172502,0.0570250269529083,0.0703674171685166,0.0837487118009548,0.0967707938113907,0.1085748103058356,0.1255895788949304,0.136454977512679,0.1470045345425446,0.1563805402626336,0.1652083243754568,0.1769310501198471,0.188797535631386,0.1986328252763786,0.2086558067132928,0.2171006178287731,0.2256974922500861,0.2342084363359769,0.2429239700163444,0.2498919595132491,0.2554614713846436,0.2616049897978111,0.2670284716280051,0.2718906033184292,0.2752399370578131,0.2798148373736143,0.283323445070701,0.2868514891266134,0.2902225115851556,0.2937014824622894,0.2969749854566608,0.2939652380438303,0.2906414792989026,0.2891293017228021,0.2853823283202956,0.2831332461666468,0.2797340971403189,0.2761242495762779,0.275528472644252,0.2751700796553964,0.2757303731729516,0.275633710597699,0.2765000591739319,0.2781746031746032,0.2796445988375977,0.2799933095983369,0.2813738441215324,0.2825933157879842,0.2872131147540984,0.2918192918192918,0.2967474866942637,0.3047394866687791,0.3085666175541991,0.3144064111325091,0.3184980178023786,0.3194648093841642,0.3221120590269771,0.3211009174311927,0.3227364185110664,0.325821341297855,0.3258088788562829,0.0,2.3544799115575943,48.32249990097453,135.0034357592899,192.1989087006144,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95697,48919,465.3750901282172,4923,50.10606393094872,3961,40.69093075018026,1574,15.977512356709196,77.36399481233721,79.7467517563737,63.33329461681414,65.09646708814667,77.16043213808294,79.55102346323056,63.25516513777378,65.02469325730598,0.2035626742542717,195.72829314313367,0.0781294790403634,71.77383084068367,231.86108,163.13539688176837,242286.67565336425,170470.753400596,545.06153,367.7180003339542,568871.1871845513,383553.52200104576,492.67976,241.89743529405212,510621.8272255139,249631.60330453815,2294.84832,1083.1008246000797,2359236.3814957626,1093201.9070363406,922.47051,421.6837033159731,946425.1021453128,423193.9432110722,1532.45352,655.3790270039221,1557571.6480140444,646513.7765192885,0.38357,100000,0,1053914,11013.030711516558,0,0.0,0,0.0,47475,495.36558094820106,0,0.0,44511,460.9130902745122,1104280,0,39612,0,0,0,0,0,89,0.930018704870581,0,0.0,1,0.0104496483693323,0,0.0,0.04923,0.1283468467294105,0.3197237456835263,0.01574,0.3586744639376218,0.6413255360623782,23.256023926140436,4.154639120409024,0.3037111840444332,0.2711436505932845,0.2092905831860641,0.2158545821762181,11.431341781451524,6.183428737255855,16.74491638111357,11473.00687838857,45.25374256027552,13.083088384830456,13.676620205151496,9.21283306795005,9.28120090234351,0.5768745266346882,0.7905027932960894,0.6824605153782212,0.6079613992762364,0.1298245614035087,0.7556866048862679,0.9196428571428572,0.8377581120943953,0.8047619047619048,0.1684210526315789,0.5003604902667628,0.6980830670926518,0.6215277777777778,0.5411954765751211,0.118796992481203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024315863061164,0.0044520165911142,0.0069235767075448,0.009390816513202,0.0114165937442764,0.0140595390916315,0.0162593333061324,0.0184239552269292,0.020782833706647,0.0231007894817681,0.0256581173792212,0.0278941746775121,0.0299838508933438,0.0321583497336451,0.034335782694848,0.0365499343445309,0.0386906303413269,0.0409285721698162,0.0428803093619409,0.0447611902975743,0.0596983749007812,0.0736185401903007,0.0869004154601535,0.0996361188818543,0.1119052136698079,0.1275416873737747,0.1380319628408114,0.1477344057536199,0.1568686070597279,0.1660020581425263,0.1771119219054384,0.1878610840636157,0.1985882711215522,0.2080958995504708,0.2175242873331793,0.2266340393963216,0.2349122063318533,0.2428359350398128,0.2500482236670411,0.2560474407848794,0.2625036137612027,0.2679947158606016,0.2737266874940831,0.2776200232438326,0.2817542709357811,0.2858303582420288,0.2906310946641996,0.2937949251987503,0.2976502654592898,0.3015488676290613,0.2989218726923645,0.2952225454146314,0.2911207538161239,0.2892586989409985,0.2866044997039668,0.2831746515347703,0.2799307686255999,0.2794642420687295,0.2787538581555472,0.2793144438727534,0.2785314945956019,0.2789276097254162,0.2804964391320644,0.2816076597639724,0.2834145409381867,0.2853767461182946,0.2850205878176913,0.2904495610609516,0.2937827453719874,0.2983521248915872,0.3035093265886816,0.307987590051007,0.3120060218291306,0.3132172987763167,0.3145601808250141,0.3164271291127212,0.3214780600461894,0.3272133822929416,0.3301991150442478,0.3382352941176471,0.0,2.725197933048658,51.08868643975759,141.44243866335674,206.6671190221359,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95659,48575,463.6155510720371,4878,49.780992901870185,3852,39.57808465486781,1436,14.56214261073187,77.31725194233033,79.72619026060356,63.30264576078415,65.08526493251533,77.13290551153224,79.54833505180358,63.23232556457504,65.02068010541683,0.1843464307980866,177.85520879998273,0.0703201962091171,64.58482709849989,230.84578,162.41882108251804,241321.31843318453,169789.16808084754,540.20539,364.5348581209976,564040.4039348101,380398.7858363955,490.35376,241.08354592267844,508440.0108719514,248860.46565481368,2172.3064,1027.7507761914685,2233236.8935489603,1036814.4322975032,884.52736,404.9612859939088,905018.8900155762,403729.2886038808,1387.36102,594.0327283974754,1408235.5659164323,582511.0576502349,0.38061,100000,0,1049299,10969.150837872025,0,0.0,0,0.0,47035,490.983597988689,0,0.0,44235,458.2945671604344,1110484,0,39866,0,0,0,0,0,102,1.0662875422072151,0,0.0,1,0.010453799433404,0,0.0,0.04878,0.128162686214235,0.2943829438294383,0.01436,0.3591756624141315,0.6408243375858685,23.32063242268536,3.9971714250630095,0.3063343717549325,0.2871235721703011,0.2113187954309449,0.1952232606438214,11.67548919429872,6.485712653969318,15.281215843721824,11349.886121825875,44.11279728500463,13.678821568624295,13.21437101267651,9.089401323147367,8.130203380556443,0.589563862928349,0.8119349005424955,0.6847457627118644,0.581081081081081,0.1223404255319148,0.7768166089965398,0.9190871369294604,0.8867924528301887,0.7303921568627451,0.1578947368421052,0.509272997032641,0.7291666666666666,0.6102088167053364,0.5311475409836065,0.1133333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026745823497826,0.0049282563504537,0.0069415549489024,0.0092267983619384,0.0116396194739787,0.013975756341041,0.0159447493522126,0.0182044785877737,0.0201551022078533,0.0224676508856946,0.0246537396121883,0.0269323249553011,0.0289869990838626,0.0308266490710765,0.0328021234624004,0.0350232798758406,0.0370593052546466,0.0389644107048279,0.0409509441814493,0.0432507375246275,0.0585912196752826,0.0725498204056841,0.0854224405811707,0.0975915150622376,0.1099330062773645,0.1251838916230089,0.1358546241946269,0.1460570040899795,0.155673838458332,0.1642992017852544,0.1752881611547991,0.1864858135683124,0.1966697502312673,0.2062828371278459,0.215812836639607,0.2245201046238418,0.2331004932044901,0.2407661508007918,0.2482475442934597,0.2547679556746113,0.2607810475661669,0.2658926420896325,0.2722227481421877,0.2762417040036418,0.2803551043210026,0.2842603316986619,0.2882693582479707,0.2912690445633251,0.2948469334988106,0.2975908372827804,0.2945773910240915,0.2917141171466597,0.2887157894736842,0.2867366480913502,0.2841379310344827,0.2808329129018942,0.2768036111681055,0.2765598926806923,0.2763750743857859,0.2763241976711161,0.2774381151207873,0.2788138424351996,0.2796477535944575,0.2801023814823058,0.2800393408016888,0.280906753914466,0.2814598622878354,0.2849740932642487,0.2901413365904728,0.2946347616982694,0.2973254759746147,0.3006594566077552,0.3047535542055489,0.3058395819132015,0.309877581534436,0.3125292740046838,0.3138508371385083,0.3173869346733668,0.321609379163336,0.3266592510196515,0.0,2.6850535780411664,49.63421694748048,142.2496008743121,195.89767554478004,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95846,48823,465.611501784112,4726,48.004089894205286,3744,38.384491788911376,1422,14.377230140016277,77.4717338221379,79.75834045256288,63.40399372213196,65.09063935454058,77.28598941727009,79.5783546075406,63.33299860103424,65.02452671461278,0.1857444048678189,179.98584502227288,0.0709951210977237,66.11263992780891,234.058,164.56859477820538,244201.69855810364,171700.6312127219,542.76246,366.672003752182,565581.5787826305,381860.7012444045,491.55608,241.0559923645785,508735.471485508,248300.78291541463,2140.9122,1023.8526107227052,2198091.021012875,1032690.558106447,868.61134,406.41369522743344,886466.7800429857,404485.0150997621,1383.34196,596.9448761502587,1401673.6222690565,588386.5105472184,0.38277,100000,0,1063900,11100.077207186529,0,0.0,0,0.0,47339,493.176554055464,0,0.0,44343,458.55852096070777,1097923,0,39397,0,0,0,0,0,102,1.0537737620766645,0,0.0,1,0.0104334035849174,0,0.0,0.04726,0.1234684013898685,0.3008887008040626,0.01422,0.3653457339264052,0.6346542660735949,23.286097236521503,4.074911139944162,0.313568376068376,0.2804487179487179,0.2045940170940171,0.2013888888888889,11.671987861889797,6.284464778572627,15.1415484162155,11352.791428996356,43.02946699042079,12.929535833563769,13.289541255488032,8.566477335681721,8.24391256568726,0.5908119658119658,0.82,0.7078364565587735,0.5626631853785901,0.1180371352785145,0.7608510638297873,0.9242424242424242,0.8950617283950617,0.7095238095238096,0.1564245810055866,0.5130400934215648,0.7380952380952381,0.6364705882352941,0.5071942446043165,0.1060869565217391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023889057596922,0.0048525493612667,0.0071285160923969,0.0091149005278116,0.0112694089911389,0.0135928454424288,0.0156873930405019,0.0178194392027662,0.0199844780752813,0.0222633559682565,0.0243447802619854,0.0265111890550325,0.0284249671268902,0.0305381212058853,0.032532393233757,0.0348926063610078,0.0369175071114559,0.0387604933153694,0.0408472640431938,0.0429678963525677,0.057276026026026,0.0713867575421797,0.0851384915270223,0.0973846525654362,0.1092700922266139,0.1252867851516657,0.1363915929672753,0.1470700880888548,0.15592637670019,0.1647428271331039,0.1765003389684598,0.1879971468096143,0.1988620322713749,0.207369800196528,0.2154993465057277,0.2245755217545101,0.2322190413598743,0.2402541992275217,0.2477465235312769,0.2545444152280782,0.2606582547360401,0.2657226835868246,0.2710605845964962,0.2756291469902564,0.279585798816568,0.2840027061934928,0.2879079174053082,0.2911940109123208,0.2947350753976451,0.2972877032907797,0.2955021201223767,0.2915776792070533,0.2884450984514049,0.2863053253077818,0.283895363436286,0.2798563668730885,0.276178648346984,0.2770228435493857,0.2775820005421523,0.2777954706298655,0.2784330479038579,0.2788252569750367,0.2804921059729051,0.2816268726073775,0.282146930241399,0.284672849046883,0.2864287721270019,0.2888248776559499,0.2951050875442881,0.2989337691649155,0.3037433155080214,0.3059038662486938,0.3088865428802086,0.313971031985516,0.314691854484242,0.3188184064964105,0.3149677225641795,0.316778789077958,0.3218298555377207,0.3227611940298507,0.0,2.601355027739907,50.52486201519511,135.4023791264456,186.4839825728097,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95739,48369,461.5987215241437,4752,48.31886691943722,3740,38.46917139305821,1363,13.871045237572984,77.34438518034166,79.69852615943643,63.33412346583962,65.07295211500734,77.16645800893556,79.52423327387521,63.26600844686891,65.00864763662715,0.1779271714060968,174.29288556121492,0.0681150189707082,64.30447838019404,231.9867,163.21379087873316,242311.5971547645,170477.8521592383,541.72378,366.0783249860274,565209.3190862658,381751.3548929656,485.38965,238.4772792581613,503282.75833255,246215.878929892,2098.15708,1001.08029704142,2158742.3307116223,1013109.1635148304,846.41245,386.1186581204053,869832.2522691903,389102.5286275971,1319.28788,569.9742575375647,1343494.9811466592,565426.4825056335,0.37911,100000,0,1054485,11014.163507034751,0,0.0,0,0.0,47217,492.54744670406,0,0.0,43909,454.98699589508976,1105585,0,39648,0,0,0,0,0,78,0.8147150064237144,0,0.0,0,0.0,0,0.0,0.04752,0.125346205586769,0.2868265993265993,0.01363,0.3652209160924199,0.6347790839075801,23.036706580375032,3.945028043511226,0.3165775401069519,0.2911764705882353,0.2024064171122994,0.1898395721925133,11.152507373153298,6.062568910283641,14.703453103295224,11281.600485773008,42.79714092039579,13.242169796120557,13.460926305282674,8.391235016329253,7.702809802663314,0.5927807486631016,0.8044077134986226,0.7179054054054054,0.5587846763540291,0.0957746478873239,0.7443037974683544,0.9067796610169492,0.8711484593837535,0.6515151515151515,0.0886075949367088,0.5225048923679061,0.7260940032414911,0.6517533252720678,0.5259391771019678,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020157205947895,0.0043190412944957,0.0070211751336762,0.009252206412561,0.0114789434085039,0.0135697779768509,0.0156437903834002,0.0181743966528904,0.0201796241992009,0.0223472833316279,0.0242847774407738,0.0264494873294947,0.0285837668880709,0.0306382014603351,0.0325259444180816,0.0347015542328042,0.0365907938183813,0.0385987472518355,0.0409162241090822,0.0426015040726621,0.0568245881444052,0.0703663781826553,0.0837214180826515,0.0966853152736297,0.1085686568108484,0.1234681469733016,0.134319652137024,0.1446322754981542,0.1543776833201614,0.1632289879931389,0.1753307568923384,0.1865818567317886,0.197564555585757,0.2064269319051262,0.2145551315746066,0.2239797217271952,0.2323518582569984,0.2396190561858394,0.2462255697092752,0.2533626383689916,0.2592057177221631,0.2639629525680606,0.2690869945820616,0.2733191060809514,0.2778688624136214,0.2819042686986757,0.2854065967091587,0.2890612068197155,0.2931771103055411,0.2955498694241473,0.2928226576473594,0.289764688105279,0.2868895107648606,0.2835528118734765,0.2813667912439936,0.2779459889286479,0.2753593396688857,0.2759032791447702,0.2763043589350503,0.2762755283569345,0.2760814012049766,0.277297212283254,0.2792597532510837,0.2804994769292407,0.2816951993295822,0.2827843380981976,0.2851244343891402,0.2891054472763618,0.2950990978438817,0.2984115722675495,0.3037227330088336,0.3052238413383134,0.3071077057247866,0.3098370458962475,0.3117652503934092,0.3137369033760186,0.3154716981132075,0.3205518360722256,0.3234649122807017,0.3206751054852321,0.0,2.218561720882407,51.302986366514354,126.59799004244124,193.9327191476572,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95668,48221,459.9239034996028,4765,48.60559434711711,3738,38.4663628381486,1391,14.132207216624158,77.28108161739658,79.66840156676155,63.29287913429015,65.0557540669492,77.10393607447386,79.49670725338605,63.22522374029188,64.99287779303887,0.177145542922716,171.69431337549668,0.0676553939982724,62.87627391033368,231.46552,162.82903805000237,241946.18890329052,170201.7509010352,542.54065,366.1109683751081,566457.1225488146,382040.3185014308,481.12436,235.8104302016971,499431.1995651628,243819.6814347647,2126.50092,1002.5388263949812,2189292.55341389,1014571.4895357745,859.13496,392.5913859255238,880006.6584437848,392573.7780222423,1348.57974,577.472859673815,1370931.91035665,570006.5198395955,0.37839,100000,0,1052116,10997.55404105866,0,0.0,0,0.0,47261,493.3206505832671,0,0.0,43367,449.763766358657,1105696,0,39623,0,0,0,0,0,102,1.0661872308399882,0,0.0,1,0.0104528159886273,0,0.0,0.04765,0.1259282750601231,0.2919202518363064,0.01391,0.3519451723442854,0.6480548276557145,23.558911419666885,4.083376782013954,0.3063135366506153,0.2867843766720171,0.2075976457998929,0.1993044408774746,11.259873939837323,6.114821756892085,14.905792876100342,11277.299219875444,42.88343695313558,13.25109159723548,12.991616425251673,8.468623483389427,8.172105447259,0.5925628678437668,0.8106343283582089,0.7117903930131004,0.5631443298969072,0.1261744966442953,0.7735682819383259,0.9266247379454928,0.8885350318471338,0.7514792899408284,0.1714285714285714,0.5136381098732232,0.7176470588235294,0.6450060168471721,0.5107084019769358,0.1122807017543859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894190345945,0.0043694684658198,0.0065660614794442,0.0087167660594731,0.0111262534833106,0.0130442751822736,0.0153047698676509,0.0175501286396863,0.0199131101456682,0.0221189572052938,0.0244745206603096,0.0266132758355151,0.0285173644319665,0.0304672608314873,0.0323253173702136,0.034338003412087,0.0365666694290213,0.0388395869012403,0.0410689579844171,0.0430699313090882,0.0570879304580407,0.0713395671249515,0.084467864003275,0.0972211992718931,0.1091979489776539,0.1243361614793813,0.1352780077702057,0.1456946589275254,0.1551274375641464,0.1635692122695698,0.1748363369678929,0.186221918787997,0.1962733866225252,0.2053435532439091,0.2145273061795586,0.223709453839756,0.231316845293309,0.2390917486991192,0.2461001851914971,0.2529092764357207,0.2590203050977031,0.2644137284760454,0.2702465623518255,0.2746095953715596,0.2790774019405199,0.2828099764520225,0.2858949318910256,0.2895346764129078,0.2926898803892855,0.2952125551533726,0.2919458111478061,0.2900920008814455,0.2870329856455278,0.2835956941952659,0.2808636005178032,0.2774297311786781,0.2746093502878471,0.2749614463365817,0.2750981396142686,0.2755925141117185,0.2763025021505778,0.2777459445575073,0.2782712531947878,0.2791113495149971,0.2802075077455148,0.2803352709155076,0.2806574315885091,0.2858708243323627,0.2907280387173148,0.2959071231798504,0.3004826124216319,0.3048895899053628,0.3077354959451029,0.309843316590449,0.3124017386479238,0.3125936167761263,0.3177443609022556,0.3230464886251236,0.3315593400745077,0.3250188964474679,0.0,2.1512844673999028,49.52826898307834,133.1705058877288,194.14471137671083,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95741,48797,466.13258687500655,4789,48.90276892867215,3769,38.93838585350059,1426,14.633229233034958,77.3612597271838,79.72579353378332,63.34108899169471,65.08874488361296,77.17652385653051,79.54171558611966,63.27056142163567,65.0201623856041,0.1847358706532986,184.0779476636527,0.0705275700590419,68.5824980088654,232.3926,163.52915269363575,242730.4916389008,170803.681488219,546.84525,369.352766696477,570678.5076404049,385290.3423783719,490.5458,241.20417524356287,509161.95778193255,249608.36486447352,2145.38396,1022.7715018264984,2217336.6896105115,1044785.2663190252,857.11622,391.6374213071044,883553.2634921297,397367.827061661,1383.84716,597.2803500677876,1421036.00338413,602938.2548835424,0.38192,100000,0,1056330,11033.20416540458,0,0.0,0,0.0,47566,496.3704160182158,0,0.0,44338,459.95968289447575,1101216,0,39480,0,0,0,0,0,103,1.0653742910560784,0,0.0,0,0.0,0,0.0,0.04789,0.1253927524088814,0.2977657130925036,0.01426,0.3476,0.6524,23.342291631874083,3.9893936689992975,0.2984876625099495,0.2931812151764393,0.2048288670734943,0.2035022552401167,11.224600539351636,6.101392293284642,15.3278750946377,11375.742751957268,43.360757850700026,13.59700859695938,12.839003540106576,8.547803218991833,8.376942494642243,0.5956487131865216,0.8244343891402715,0.7128888888888889,0.5764248704663213,0.1134289439374185,0.748135874067937,0.9267782426778244,0.8510028653295129,0.6699507389162561,0.1525423728813559,0.5238095238095238,0.7464114832535885,0.6507731958762887,0.5430579964850615,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025121301445487,0.0048057425581961,0.0070731261797,0.0092552143125641,0.0116037831790908,0.01381845583593,0.0160504150266147,0.0180936335324449,0.0202132771683008,0.0221949221949221,0.0245762972532373,0.0265803933651722,0.0286739825775729,0.0309457830704727,0.0330939260726889,0.0350567048144817,0.037186616546025,0.0390071289964406,0.0407615759756262,0.0427597991206318,0.0584175576344804,0.072345146637081,0.0854697268493265,0.0987340174966352,0.111225877169869,0.1272237196765498,0.1380930163510275,0.1475751707701147,0.1570200267022697,0.1656179317589803,0.1772856466129796,0.1883031194565828,0.1981714608744809,0.207109129066107,0.2155726802027108,0.2251817588278907,0.2342460866075012,0.2418198570722279,0.2495211325074522,0.2549351704564961,0.2607765845538511,0.2658567924307908,0.2711732160590154,0.2758179163774741,0.2797648627355917,0.2837912594504886,0.2876190713991435,0.2906966406299612,0.2941937152463468,0.297046146545929,0.2932568264889271,0.2902159299805196,0.2879032597856771,0.2854754079455688,0.2829886591060707,0.2799975552737329,0.276769939424533,0.2766169642273232,0.2777938302031104,0.2789932993263779,0.2792159349472192,0.2803618589617249,0.2806380224644035,0.2807927847678432,0.2809446254071661,0.2821086012840841,0.2837691870380898,0.288672732977722,0.2937825463949953,0.2992054393801636,0.3026238540396513,0.3064659919240652,0.3091247672253259,0.3143285821455364,0.3189798558491961,0.3231324179660228,0.3262144683411039,0.3280845126569663,0.3346196251378169,0.3274301456119638,0.0,1.685481125925814,52.999107001957405,130.29947270896986,191.75612808626693,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95648,48261,459.7377885580462,4881,49.88081298093008,3871,39.84401137504182,1465,14.86701237872198,77.2430810454354,79.64741397813582,63.27207635196621,65.04996007293437,77.05154060968292,79.46209061363038,63.199068466990525,64.98261101923922,0.1915404357524863,185.323364505436,0.0730078849756878,67.34905369515332,230.58266,162.30235417233644,241074.2096018736,169687.13843711987,543.34136,365.76445681478464,567450.6733021077,381793.9913168959,482.14567,236.0893989309049,500597.3151555704,244136.7639061901,2212.86916,1030.7899819935194,2279264.4279023083,1043400.4495582968,907.57257,408.8761748591532,934298.8457678154,412911.6812261127,1424.2595,612.1757848405099,1447418.1791569088,602936.5627208245,0.38021,100000,0,1048103,10957.91861826698,0,0.0,0,0.0,47305,493.9360990297759,0,0.0,43603,452.3879223820676,1107819,0,39772,0,0,0,0,0,106,1.0977751756440282,0,0.0,2,0.0209100033456005,0,0.0,0.04881,0.1283764235554036,0.3001434132349928,0.01465,0.3622418879056047,0.6377581120943953,23.279652068416947,4.094007100206706,0.3079307672436063,0.2792560061999483,0.2045982950142082,0.2082149315422371,11.004186337992612,5.806103861278808,15.809099826287556,11357.517399263008,44.35989522468165,13.186231570013282,13.383996346827493,8.917556300822863,8.872111007018006,0.5846034616378197,0.7964847363552267,0.714765100671141,0.5757575757575758,0.1166253101736972,0.7444146559428061,0.931350114416476,0.8371335504885994,0.698019801980198,0.1618497109826589,0.5196220930232558,0.7049689440993789,0.672316384180791,0.5338983050847458,0.1042654028436018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021992054483541,0.0046152597731929,0.0070454706963239,0.0092461821396275,0.0115345885081321,0.0136463160038698,0.0159979607443283,0.0180526057833687,0.0202981839005235,0.0228357261351301,0.0248179673879602,0.0267008985879332,0.0288579215303131,0.0311134921289046,0.0331963913375585,0.0355200297809856,0.0375009064445618,0.0396915188441298,0.0417117416992593,0.0437452433824372,0.0586864517477402,0.0720450831692294,0.0848740642749903,0.0975527603810325,0.1099005510863368,0.1256325562683944,0.1361081896505933,0.1463492638828182,0.1553572574950247,0.1645759945012458,0.1760085452564116,0.1874864501582621,0.198061424526247,0.206403784452645,0.215730138963887,0.2248388778577688,0.2333206635961185,0.2414970586246534,0.2491702659695385,0.2556091856505738,0.2611350574712643,0.2670311530491588,0.2715151802207171,0.2760907629944112,0.2797081179689875,0.2837522674267945,0.2874436090225564,0.2908233494774407,0.2945313006811547,0.2968167517119213,0.2940574046624444,0.2916798568577524,0.2886855241264559,0.2858010586295664,0.2832363923062047,0.2796071280817614,0.275801416641577,0.2761594952930159,0.2763849989753398,0.2759341287418733,0.2770544090056285,0.278391541933951,0.2790541814145391,0.2797273133661153,0.28092072102345,0.2818499582637729,0.2826807659331237,0.288041256564259,0.2919915700737618,0.2953757916119011,0.299556652497829,0.3036131774707757,0.304938659955961,0.3051903640094232,0.313042657606644,0.3158205430932703,0.3183849591616582,0.3174054493696625,0.3268652637332604,0.3412213740458015,0.0,2.4882310834562684,48.47323570751098,144.76279373485252,202.0124062557257,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95823,48523,463.11428362710416,4803,48.98615155025412,3831,39.44773175542407,1475,15.090322782630476,77.44904619750217,79.77465786276896,63.38601454967061,65.10664634083085,77.25410910427303,79.58107040415966,63.311859869995295,65.03491067015538,0.194937093229143,193.5874586093007,0.0741546796753169,71.73567067546571,232.82358,163.73036639493608,242972.3135364161,170867.2859302423,546.38408,368.7149806643978,569665.341306367,384252.06856015546,486.97076,238.68794478103413,504969.5480208301,246634.03960553865,2206.13356,1047.7055084206506,2273550.3584734355,1064674.8572061511,867.55784,399.05159440971886,890461.820231051,401569.6039028689,1429.33012,618.4847626635037,1463055.675568496,621034.4002557361,0.37965,100000,0,1058289,11044.196069837097,0,0.0,0,0.0,47600,496.1856756728552,0,0.0,43972,455.5169426964299,1105642,0,39656,0,0,0,0,0,93,0.9705394320778936,0,0.0,0,0.0,0,0.0,0.04803,0.1265112603713947,0.3070997293358318,0.01475,0.3621654015181781,0.6378345984818218,23.140396746272444,4.112276881806698,0.30409814669799,0.2777342730357608,0.2158705298877577,0.2022970503784912,11.464811398432252,6.233631866976645,15.887077837810924,11265.284772051547,43.887132913921086,12.987507508800794,13.164779195209288,9.238528190357693,8.4963180195533,0.5831375619942574,0.8045112781954887,0.7012875536480687,0.5828295042321644,0.1019354838709677,0.7449152542372881,0.909706546275395,0.8819875776397516,0.75,0.1122994652406417,0.5111278762731045,0.7294685990338164,0.6322657176749703,0.5191986644407346,0.0986394557823129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021672422348926,0.0045513060930737,0.0067983724493419,0.0088580977438262,0.0110741633362823,0.0130939895940455,0.0153135609636736,0.0175854009532654,0.0196116504854368,0.0216614994218825,0.0236511758979351,0.0259031198686371,0.0278474506578947,0.0298681108239727,0.0320438114293375,0.0342579678702412,0.0364106810184226,0.0384894548018498,0.0405805533334025,0.0425762260183421,0.0569851982433997,0.0710387655250282,0.0849088241458813,0.0977285621230905,0.1097459457750708,0.1253183686841465,0.1358928968931195,0.145775509118945,0.1544796978684362,0.1632738292837026,0.1754091661827644,0.1866344014000821,0.1968733036586689,0.2059757521525148,0.2146268099634439,0.2239182094501243,0.2323128835039032,0.2389877111273217,0.2464488234428586,0.2532612917228302,0.2587253589400304,0.2640769903762029,0.2696672958942898,0.2742850997215683,0.2783410249887956,0.2821265773016009,0.2860189307493733,0.2891280647042418,0.2919762641898865,0.2945336014615617,0.2910129535763134,0.2877639674948268,0.2853436185133239,0.2821582733812949,0.279035403983687,0.2752857729950227,0.272982996511299,0.2739167983835487,0.2750330385280065,0.2764457980663668,0.2771520963425513,0.2771424095253015,0.2783918553916476,0.2783990060347888,0.2805206570195723,0.2824272094820922,0.2843203609701071,0.2877044592325393,0.2922627127492951,0.2956907030545426,0.2990582616140224,0.3026378139314484,0.3091669788934682,0.3146058965102286,0.3174869500372856,0.3175920514319111,0.3203868822729333,0.3189863234111021,0.3218453188602442,0.3267215568862275,0.0,2.033288616617591,51.37155618484484,139.7117010564729,191.6141752777797,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95804,48778,465.0745271596176,4816,49.00630453843263,3885,39.914826103294224,1457,14.76973821552336,77.3497797498425,79.68241464636188,63.33168066437421,65.05956973384647,77.15641096185148,79.49321486953929,63.25817693766497,64.9900989187084,0.1933687879910195,189.1997768225906,0.0735037267092408,69.47081513807518,232.5037,163.62456727663272,242686.61016241493,170790.73971716492,540.60682,364.3269021814449,563643.3134315895,379643.2937804736,492.39667,242.18822904273657,509560.5611456724,249477.39927655284,2213.636,1046.6750812318014,2275472.506367166,1057450.671403909,895.52735,407.4801262558945,917722.0366581772,408499.0066489066,1409.5609,609.350697550335,1430267.3583566449,603537.6929249488,0.38216,100000,0,1056835,11031.209552837045,0,0.0,0,0.0,47094,490.88764560978666,0,0.0,44381,458.9683103001962,1103582,0,39601,0,0,0,0,0,93,0.9602939334474552,0,0.0,1,0.0104379775374723,0,0.0,0.04816,0.1260205149675528,0.3025332225913621,0.01457,0.3695695298551875,0.6304304701448126,23.35138730765313,3.9939411399421503,0.3181467181467181,0.2787644787644787,0.2041184041184041,0.1989703989703989,11.45777953336976,6.420767750012554,15.651209968686665,11361.127293533018,44.46101751005115,13.269204722945966,13.888465224924731,8.85693784140071,8.446409720779743,0.57992277992278,0.8088642659279779,0.68042071197411,0.5573770491803278,0.1216041397153945,0.7527993109388458,0.9046563192904656,0.8652694610778443,0.7164179104477612,0.1885714285714285,0.5062408223201175,0.740506329113924,0.6119733924611973,0.5033783783783784,0.1020066889632107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.0043902785241363,0.0064241784561674,0.0088794968962399,0.0108635947512969,0.0130034112316073,0.0153752039151712,0.0173534906035952,0.0196755828572012,0.0217504785105272,0.0239259464280222,0.0259253555110631,0.0280602539715181,0.0302331328775022,0.0322667161808091,0.0345636404968071,0.0366747406993354,0.0387411963613355,0.0411337496233648,0.0433234421364985,0.0581944893636999,0.0720455068281155,0.085703804632638,0.0978247162673392,0.1096623907750361,0.125604017975152,0.1360290217875554,0.1462355520551735,0.1563931939801117,0.165846124143257,0.17775790358382,0.1885491639157963,0.1986359483096201,0.2073221391403209,0.2162251364196444,0.2254318607408392,0.2337607266802807,0.2408740244259013,0.2489278663974042,0.2547221649838588,0.2602711205700009,0.2664804012111151,0.2716961941481183,0.2763099613326469,0.2810478929295135,0.2847068379855265,0.2884322298563397,0.2919747909837107,0.2952462216706098,0.298377423649281,0.2950341060449096,0.2920839753466872,0.2890450110521351,0.2864145759525703,0.2835102828717796,0.2794835314455306,0.2758168281618007,0.2754964934128596,0.2757850210646608,0.276554392596687,0.2768292910971072,0.2770960741763661,0.2798438119897267,0.2798013982277241,0.2807370184254606,0.2819016495487084,0.2828960403045484,0.2874469942629084,0.2915017704644865,0.2985986064354498,0.3060406913935902,0.3106903063365506,0.3124142233312539,0.3177548856233904,0.3189647146448189,0.3232134516581036,0.3272259236826166,0.3288844621513944,0.3305563020693362,0.3347264437689969,0.0,2.362152214455258,50.20518364883811,140.58995164922885,202.21422078023213,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95802,48484,462.8087096302791,4809,49.15346234942903,3800,39.10148013611406,1457,14.790922945241226,77.41775944651599,79.74360617243451,63.37436231324406,65.09419808499209,77.23337117295394,79.56425884943549,63.30463216671332,65.02873038126853,0.1843882735620496,179.34732299902123,0.0697301465307447,65.46770372355581,231.95304,163.22113541294223,242117.11655289037,170373.41121578068,543.47905,366.7086577113532,566738.6693388447,382222.2789830621,485.37068,238.2194228585444,502832.5609068704,245728.6546817112,2168.10548,1020.4265362120608,2232888.707960168,1034918.9956494232,893.65927,405.6047039652558,919625.4775474416,410184.5827490603,1415.30342,601.9680490100178,1439497.3173837706,599084.0975205075,0.37947,100000,0,1054332,11005.323479676832,0,0.0,0,0.0,47375,493.9354084465877,0,0.0,43764,453.0281204985282,1109260,0,39755,0,0,0,0,0,91,0.9498757854742071,0,0.0,0,0.0,0,0.0,0.04809,0.1267293857221914,0.3029735911831981,0.01457,0.3590863952333664,0.6409136047666336,23.46739668942895,4.066228821295286,0.3092105263157895,0.2781578947368421,0.2081578947368421,0.2044736842105263,11.649808450259748,6.5280363125157095,15.580459961150346,11314.63635841666,43.23266204162093,12.928953272836724,13.042914985790782,8.85663573437109,8.404158048622323,0.5821052631578948,0.804162724692526,0.6970212765957446,0.5651074589127687,0.1235521235521235,0.7515204170286707,0.919831223628692,0.8529411764705882,0.7178217821782178,0.136094674556213,0.5084937712344281,0.7101200686106347,0.6421173762945915,0.5127334465195246,0.1200657894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022883990319869,0.0044296676228801,0.0067782163549837,0.0089780829152363,0.0112462376962498,0.0134268496274278,0.0154214657017633,0.0179431697558585,0.0202375355178969,0.0222499692962705,0.0246412464124641,0.0264738187380026,0.0287928783626813,0.0307307430971647,0.0326765036450438,0.034797607858124,0.0368319741689779,0.0387737541080481,0.0405156920391859,0.0423217074440395,0.0567913858224995,0.0710888087397417,0.0846130462583465,0.0974105782866747,0.1097266838696087,0.1255520104802755,0.135767026494486,0.1455544806030129,0.154791626656424,0.1639351286500846,0.1752680424566346,0.1863414423367757,0.1963064295485636,0.2057336870489852,0.2144128113879003,0.2240164578102706,0.2326758051933578,0.2405061869792719,0.2480125025480736,0.2549077895795936,0.2607254627972238,0.2662590003617649,0.2711690335375571,0.2757086472909939,0.2796973885211319,0.2844314323672686,0.2877492166140248,0.2902202195849463,0.2930001291489087,0.2960322992148765,0.2934420950949876,0.2906271442294497,0.2881339269412805,0.2859837304729681,0.2834976755204169,0.2797545450382379,0.2765605296343001,0.2757465856368032,0.2755495204956293,0.2754160604662716,0.2761422076470149,0.2773227791057643,0.2776692573043514,0.2790785247535718,0.280353306278348,0.2801023440932468,0.2803579999435331,0.285545281902805,0.290836515098924,0.2954928803985407,0.2986714703895519,0.3006144635260753,0.3044263213596463,0.306727736897432,0.3101519530157546,0.3137947269303202,0.3192660550458716,0.3194945848375451,0.3272286560732561,0.3246311010215664,0.0,2.2024881636285403,49.91489479753676,132.29829830876034,198.39742410407877,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95720,48666,464.0931884663602,4786,48.620977852068535,3793,39.03050564145424,1462,14.855829502716256,77.3893283971574,79.74984752777456,63.35181630130408,65.09367508057328,77.19990073727165,79.5657363482318,63.27940102391475,65.02590577555141,0.1894276598857516,184.1111795427679,0.0724152773893251,67.76930502186929,231.9812,163.20106508452096,242353.94901796908,170498.39645269638,543.32177,367.1088166817851,567018.2720434602,382926.1770599511,486.76113,239.3914574941796,504887.8813205182,247284.5163387842,2177.31648,1035.2039895956646,2241167.697450898,1047987.0764685168,879.33984,401.7701585734516,902703.8132051816,403783.0305945071,1412.5649,607.458755322347,1436947.0956957794,601318.4794855322,0.38234,100000,0,1054460,11016.088591725867,0,0.0,0,0.0,47319,493.71082323443375,0,0.0,44050,456.5921437526118,1105729,0,39584,0,0,0,0,0,83,0.8671124111993314,0,0.0,1,0.0104471374843292,0,0.0,0.04786,0.1251765444368886,0.3054743000417885,0.01462,0.358974358974359,0.6410256410256411,23.60630105543156,4.023353477627831,0.3263907197469022,0.276562088056947,0.1932507250197732,0.2037964671763775,11.432365726228817,6.4208449804955565,15.5394883051514,11387.86735604055,43.1453602057845,12.762787511825234,13.940756912067146,8.161824085246254,8.279991696645851,0.5924070656472449,0.8093422306959008,0.6946688206785138,0.6084583901773534,0.1190168175937904,0.7458223394898856,0.9166666666666666,0.840782122905028,0.6861702127659575,0.1383647798742138,0.5267319277108434,0.7341977309562399,0.6352272727272728,0.581651376146789,0.1140065146579804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091647508026,0.0047634974206168,0.0069383159368248,0.0091690951737863,0.0114269448172095,0.013659589194471,0.0159995108429805,0.0183975837227811,0.0204154618001982,0.0227670394662792,0.0249615739317553,0.0269216563384905,0.0293872853752016,0.0313841339770048,0.0334440227703984,0.0355378733078433,0.0376006791312089,0.0395303245614944,0.0416168629366704,0.0435113231525656,0.0577989411359293,0.0716386048993857,0.0851391889907487,0.0985006203604399,0.1111626485067625,0.1259730095608765,0.1366601954107126,0.1466216647856732,0.1557611761689033,0.1659177435787441,0.1773556050962273,0.1885737158682764,0.1988300914398791,0.2078558306359898,0.2167158135645438,0.2263703638055567,0.2342363459799752,0.2427170269723078,0.2501872234199478,0.2564402139674467,0.2615592734336158,0.2665957645738862,0.2727165279878971,0.2767930873535431,0.2802615774723075,0.2835453628288097,0.2880375,0.2917555894308943,0.2951947447369782,0.2977179652625064,0.2945479437345646,0.2913288612700111,0.2885160349036222,0.285315007707712,0.2832090214881904,0.2801267693620393,0.2765194412986032,0.2763089261263611,0.2772188194574051,0.2781976228490331,0.2792325014423166,0.2803738317757009,0.2802823647002478,0.2803296166318688,0.2830179663608562,0.2835863279636514,0.2839478290328044,0.2873856493870185,0.2900079825078957,0.295358318958758,0.2972510139702569,0.3008211390672702,0.3033293772253108,0.30575161435651,0.3083798882681564,0.3088821185844856,0.314878892733564,0.3174034249303066,0.3286462641301351,0.3207692307692307,0.0,2.195838604959988,48.97593622016591,134.48640465084205,198.287149041668,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95661,48874,467.1809828456738,4799,48.82867626305391,3814,39.16956753535924,1540,15.61764982594788,77.35982293729873,79.73517241829666,63.33991942654043,65.0896943831532,77.16736416183423,79.54890190753933,63.26750394162116,65.022703803964,0.1924587754645017,186.2705107573248,0.0724154849192757,66.99057918919493,230.95732,162.44923589805092,241432.8723304168,169817.39256128506,543.64321,366.9903917504837,567595.4777809138,382935.9596045109,486.00991,239.2665156918794,503650.5576985396,246756.92317457905,2230.37896,1056.5903368806444,2292107.63006868,1065748.5605443388,915.72321,422.0861196657284,938100.7516124648,422428.1626016852,1513.97764,639.532591329962,1537307.512988574,630435.8460900284,0.38247,100000,0,1049806,10974.2214695644,0,0.0,0,0.0,47306,493.7539854277082,0,0.0,43882,454.4380677601112,1109943,0,39783,0,0,0,0,0,98,1.0035437639163296,0,0.0,3,0.0313607426223853,0,0.0,0.04799,0.1254738933772583,0.3209001875390706,0.0154,0.3639272145570886,0.6360727854429115,23.392629963447167,4.144336880154766,0.3104352385946513,0.2582590456213948,0.2037231253277399,0.2275825904562139,11.41537306505742,6.0132936944783815,16.356329591187077,11391.805477390712,43.6596014674449,11.99693307237899,13.501241816183454,8.596086720113387,9.565339858769075,0.5747246984792869,0.8020304568527918,0.6976351351351351,0.6023166023166023,0.1244239631336405,0.7737355811889973,0.9152542372881356,0.9,0.8011049723756906,0.1857923497267759,0.4912541868254559,0.7202797202797203,0.6127098321342925,0.5419463087248322,0.1080291970802919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468789241301,0.0045408013298061,0.0069294374270785,0.0091710507606995,0.0112656580445745,0.0134256196244083,0.0157124079112279,0.0179569848589968,0.0201944881407178,0.0223524838366478,0.0246378593234577,0.0268376506796614,0.0288198655621107,0.0305595024814151,0.0327182332979195,0.0348616077888252,0.0369891092798873,0.0388006140059741,0.0407119391192248,0.0428951070814444,0.0580866912525203,0.0721016920757245,0.0860561532406192,0.0986131863044256,0.1107958441010495,0.1259840853297215,0.1367095863364718,0.1467389567644145,0.1559636950641964,0.1646989374262101,0.1763900862068965,0.1877504169103155,0.1984309202293772,0.2069403254577091,0.2153505681317713,0.2250058145330099,0.2336885566032472,0.2417951715146338,0.2491241595900273,0.2553266964183545,0.2617968695813007,0.2680702820869524,0.2735754236185836,0.2778815080789946,0.2817534884284796,0.2852398932441241,0.2883578064129458,0.2917793436170888,0.2952340348565301,0.2987512513831076,0.2955149724721364,0.2924297756665477,0.2904877088372616,0.2881131178022168,0.2844998667101093,0.281037668147741,0.2779803912281532,0.277070741814489,0.2771626946894351,0.2775104266923324,0.2781048500140173,0.2780843515963737,0.279093567251462,0.2798137545391762,0.2816702560421153,0.2832206769740761,0.2853306953080836,0.2915288095386728,0.2948526084989385,0.2976828499369483,0.3020531837916064,0.3079363400835404,0.3132196564525262,0.3141858521388952,0.3181392736802695,0.3266129032258064,0.3294260922514842,0.3315979175010012,0.3369826435246996,0.338654503990878,0.0,2.566944960575653,48.51288827497663,142.8279214408851,194.17197367317084,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95853,48342,461.9991027928182,4892,49.64894160850469,3876,39.84225845826422,1495,15.221224166171115,77.34109898624328,79.63174771067766,63.34986309044478,65.04410713537486,77.14832428020294,79.44324057092084,63.27665802245157,64.97485950226431,0.192774706040339,188.5071397568225,0.0732050679932072,69.2476331105496,232.39788,163.53534210161345,242451.9211709597,170610.11664070346,545.76508,367.3394291943934,568765.6515706342,382621.1262937972,484.14047,237.3079543935814,501207.4113486276,244610.7016401407,2241.10644,1067.3176680984825,2304330.46435688,1079789.5299035844,904.64962,411.6525466362119,930952.6671048376,416663.207170734,1457.23658,626.4616861723697,1484914.4210405515,623946.861660173,0.38056,100000,0,1056354,11020.54187140726,0,0.0,0,0.0,47561,495.5504783366196,0,0.0,43810,453.21481852419856,1103663,0,39659,0,0,0,0,0,96,1.0015335983224314,0,0.0,0,0.0,0,0.0,0.04892,0.1285474038259407,0.3056009811937857,0.01495,0.3699059561128526,0.6300940438871473,22.808462407007934,3.997523349566615,0.3010835913312693,0.2886996904024768,0.1994324045407636,0.2107843137254902,11.396996528386603,6.195761848738577,16.023545282069076,11245.714544568084,44.54708919397517,13.69148713549912,13.427269572149696,8.526402474251883,8.901930012074462,0.5794633642930856,0.8185880250223414,0.6863753213367609,0.5472186287192755,0.1297429620563035,0.7504288164665524,0.935483870967742,0.8297872340425532,0.7025641025641025,0.1694915254237288,0.5059040590405904,0.735474006116208,0.630071599045346,0.4948096885813148,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021264746088805,0.0046306147470387,0.0069987523963119,0.0090462363189635,0.0109670075010672,0.0131380770170153,0.0153529549599111,0.017230298393267,0.0192735889526688,0.0212570072425221,0.0232827320590826,0.0255276814834567,0.0275466814568312,0.0295188904436579,0.0316341566457489,0.0333684253983981,0.0355602891147669,0.0376103443988561,0.0393475981354014,0.0414395105913687,0.05614357070607,0.0701692045608937,0.0836082916967811,0.0960617517328292,0.1075132943716106,0.1223819431975411,0.1342303210085814,0.1442316892947893,0.1536499738563486,0.1625262571269344,0.1750608036848109,0.1857987909723048,0.1959626924080355,0.2053384050367261,0.2135541008856372,0.2232955930250592,0.2325140300572359,0.2398596207059458,0.2479945538094967,0.254714712651575,0.2606326990920132,0.2661560947091493,0.2712359550561797,0.2751173821387505,0.2794983549636392,0.2830067775723968,0.2860484607397956,0.2893759853532014,0.2919996896096842,0.2952525385731241,0.2923863330642992,0.2885017038584148,0.2864842804469588,0.2833834325683566,0.2806097434145037,0.277187719996327,0.2728365764910615,0.2723272918308379,0.2730694865082216,0.2740581655480984,0.2754417923341283,0.2769105980572536,0.2773313752229099,0.2783294850814858,0.2799160758211547,0.2815470594380027,0.2825492652921745,0.2861588758605514,0.2898003426693241,0.2945243362831858,0.2978839095563913,0.3007129654079746,0.3061045234958278,0.3086989409984871,0.310076063480139,0.3120785519933751,0.3090797921125038,0.3139418254764293,0.3170665212649945,0.3266082984392843,0.0,2.1537243301638624,50.47129729169248,145.49247064292368,196.34402736027064,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95641,48483,462.1553517842766,4787,48.69250635187838,3780,38.926820087619326,1457,14.826277433318346,77.31769350596971,79.74068581205682,63.289715480586615,65.08154184488885,77.12925433570321,79.55633583634524,63.21681025234628,65.01274924542341,0.1884391702665055,184.3499757115836,0.0729052282403373,68.79259946543925,231.90574,163.07836894602715,242475.2355161489,170510.94085802865,540.00241,364.9197568912533,564030.5412950513,380968.2007624903,484.7488,238.0657297301599,503093.58956932696,246015.196742314,2181.83656,1042.9516532588425,2247827.2289081044,1057035.7203070251,881.60907,404.7808004950485,905415.6899237776,406855.16723481385,1416.64388,613.3068358707602,1443269.8319758263,608584.8664352491,0.3806,100000,0,1054117,11021.601614370406,0,0.0,0,0.0,47136,492.2261373260421,0,0.0,43917,455.4845725159712,1102345,0,39556,0,0,0,0,0,81,0.8469171171359563,0,0.0,1,0.0104557668782216,0,0.0,0.04787,0.125775091960063,0.3043659912262377,0.01457,0.3705482192877151,0.6294517807122849,22.924815115619968,4.153712437801183,0.3047619047619048,0.269047619047619,0.2174603174603174,0.2087301587301587,11.508725836547791,6.190823951202615,15.534935609502323,11283.673789101147,43.4585190402192,12.454212131511596,13.170288020738122,9.258481464747046,8.575537423222439,0.5925925925925926,0.8072763028515241,0.7326388888888888,0.5815085158150851,0.1229404309252218,0.7537117903930131,0.924170616113744,0.8757396449704142,0.6891891891891891,0.147239263803681,0.5225806451612903,0.7243697478991596,0.6732186732186732,0.5416666666666666,0.1166134185303514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024515763027798,0.0048472802498681,0.0070761421319796,0.0095529426112053,0.01195478547519,0.0141809290953545,0.0164854222349172,0.0189315379192676,0.020949106055489,0.0231349556161462,0.0253349073551301,0.027607551205067,0.0296258920204714,0.03144148047286,0.0337648651161829,0.0357416337258635,0.0379471228615863,0.03981386266139,0.0419199067521438,0.0438011012848323,0.0582831703034863,0.0719876772185721,0.0850717421902901,0.0982188938393318,0.110279130186826,0.126203514420989,0.1364303022573651,0.1464116668798772,0.1554526099562422,0.1639756356956395,0.1755294473034059,0.1855540503928474,0.1955640768660944,0.2047012947181632,0.2121135298980435,0.220580404685836,0.2290695725062866,0.2373557069654822,0.2448166231406835,0.2514897323065639,0.2569675215654489,0.2623455345440929,0.2681595339033228,0.2733378106111484,0.2779513867778845,0.2809376502052034,0.2846295300166377,0.2878265844510838,0.29181388727108,0.2954758354993205,0.2922886409217557,0.2895196206446292,0.2866389013957677,0.2841179439117583,0.2816087697207614,0.2792076786696827,0.2751438144004046,0.2752985440863733,0.275862655397017,0.2758724641793162,0.2767495447281377,0.277240136347608,0.2789542321306589,0.2776991463576452,0.2787617983405054,0.2797565316070461,0.2820642835009437,0.2870749565649044,0.2922208367968966,0.296698557089084,0.2992868748871637,0.3057425326041228,0.3071548874056515,0.3110008271298594,0.3136215713621571,0.3186440677966101,0.3227121715493808,0.3235817355208539,0.3284671532846715,0.3232969514490026,0.0,2.31764817638506,49.37991005623686,140.52387904568235,191.86813151915848,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95722,48647,463.676061929337,4806,49.12141409498339,3774,38.96700862915527,1445,14.782390672990536,77.34880342590687,79.70652525905784,63.338894218876014,65.07718465371232,77.16310558242417,79.52150509146851,63.26890874024648,65.00918105500115,0.1856978434826999,185.0201675893288,0.0699854786295333,68.00359871117223,232.23266,163.38379143321976,242611.5835440129,170685.72682687338,543.01675,366.5710205115614,566820.3025427802,382488.8745654723,489.51278,239.9852076286096,508352.1551994317,248390.12551739984,2160.46692,1019.2483470595536,2233616.054825432,1041394.2323181224,869.76365,396.3110571966354,897758.028457408,403147.74477122206,1402.161,598.3289936760358,1437230.0620547,603229.2274476527,0.38173,100000,0,1055603,11027.799252000586,0,0.0,0,0.0,47307,493.7318484778839,0,0.0,44186,458.5466246004054,1102713,0,39570,0,0,0,0,0,101,1.055138839556215,0,0.0,0,0.0,0,0.0,0.04806,0.1259005055929583,0.3006658343736995,0.01445,0.3603029095257074,0.6396970904742926,23.472050447327167,4.088809757836445,0.3139904610492846,0.2832538420773715,0.1995230524642289,0.203232644409115,11.426814081008152,6.1724342649019,15.47483312803923,11379.064390384014,43.303353961209744,13.107704340939064,13.468831129029764,8.359230152017824,8.367588339223085,0.5919448860625331,0.8203928905519177,0.7172995780590717,0.5710491367861886,0.1003911342894393,0.7696381288614298,0.9366812227074236,0.8709677419354839,0.7222222222222222,0.1038961038961039,0.5157137447936387,0.7332242225859247,0.6552132701421801,0.5235602094240838,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0046324453634999,0.0070620465729795,0.0089090705919401,0.0112249877989263,0.0137018374306509,0.0157684976607173,0.0180769623354088,0.0201318277042562,0.0223939409446804,0.0245269868601767,0.0266741930517781,0.0290337836448502,0.0311219552370951,0.0330506901033607,0.0351832525651226,0.0371505487678608,0.0393749805459582,0.0413911416094822,0.0436671667916979,0.0584494245911568,0.0719279151055947,0.0852173183243986,0.0984030802247049,0.1106060286455586,0.126098683166746,0.1363877512042951,0.1476690832827653,0.1571868122476015,0.1646232233842853,0.1770465316673847,0.1889125707299657,0.1997759725076941,0.2088422802278915,0.2169976346333681,0.2267832214318952,0.2350030714245825,0.2421350021948831,0.2487854159099164,0.2562079076373299,0.2610572360960029,0.2669738288467385,0.2731672109423068,0.2770133524938626,0.280786921853951,0.2848122299767364,0.28814448441247,0.2917878322264409,0.2951075865988169,0.2969728876020005,0.2938599438270194,0.2905582640939367,0.2875441137184877,0.2851476866274374,0.2832189089399309,0.2797257261537522,0.27624850053665,0.2762596281214737,0.2769626200040852,0.2772044694327806,0.2776483307547486,0.2779786230745049,0.2782003459270219,0.2788031257653004,0.2808886548083599,0.2807540711544445,0.280664395229983,0.2851730076718334,0.2874642283799818,0.2932665773082078,0.2989447941669308,0.3035932275356934,0.3058712121212121,0.3109570252971655,0.3148356807511737,0.3157083580320095,0.3169944683466503,0.3153391729476472,0.3220104943385805,0.3260536398467433,0.0,1.7801736478375032,49.57750922290802,136.71210562950162,196.71376630220013,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95635,48412,461.4314842892246,4795,48.93605897422491,3813,39.274324253672816,1452,14.80629476656036,77.26744378178137,79.68121755538291,63.28338998351626,65.0687710212045,77.08067848554596,79.49951495312543,63.21175913353334,65.00203050644382,0.1867652962354071,181.7026022574879,0.0716308499829168,66.74051476068144,231.3751,162.73977249864004,241935.58843519632,170167.5877018247,539.80512,364.6777690909249,563844.2202122654,380723.6567061483,482.08416,237.03735084487985,500066.5028493753,244895.935796256,2175.50292,1034.0889357196424,2241536.1321691847,1048025.4046318214,882.12445,403.0964053484511,906976.5880692216,406084.6085099078,1410.71478,605.6790749179542,1438312.2706122235,600493.2819210063,0.38112,100000,0,1051705,10997.072201599833,0,0.0,0,0.0,47118,492.0583468395462,0,0.0,43684,452.7944790087311,1106062,0,39676,0,0,0,0,0,68,0.7110367543263449,0,0.0,0,0.0,0,0.0,0.04795,0.1258133921074727,0.30281543274244,0.01452,0.3628158844765343,0.6371841155234657,23.41020855881013,4.05809193533109,0.3113034356150013,0.2876999737739313,0.1982690794649882,0.2027275111460792,11.328579598729007,6.102165137868948,15.596543895527391,11356.62333231361,43.94695596781865,13.505043369927384,13.62146086979197,8.362263214442137,8.458188513657152,0.5837922895357985,0.7921604375569735,0.6950294860994103,0.5806878306878307,0.1203104786545925,0.7449781659388647,0.9072164948453608,0.8235294117647058,0.7453416149068323,0.1534090909090909,0.5146176911544228,0.7009803921568627,0.6469907407407407,0.5361344537815126,0.1105527638190954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595091900216,0.00437031028189,0.0067921539961013,0.0094707747337614,0.0116989999898269,0.0138509797531266,0.0162938189530354,0.0185606795373102,0.0207773085614372,0.0227237816305004,0.0248397518075996,0.0272219254632863,0.0294526114374479,0.031365598821214,0.0333508809958814,0.0356164383561643,0.0377006732263076,0.0396192730065807,0.0417650546638511,0.0437602310523517,0.0585394914244505,0.0726278633749856,0.0858652159758031,0.0989048020219039,0.1109926307565615,0.1262006375160173,0.1370912064918374,0.1467971056193186,0.1564010953746095,0.1645222957298737,0.1761609973900476,0.1876638429707303,0.1978212132424961,0.2070972895488417,0.2154479600149723,0.2246385642275522,0.2328355876969778,0.2409684641607506,0.2482971573880665,0.254354402530137,0.2594157272159078,0.2651870388343838,0.2700469883653493,0.2740964577787371,0.2782788379725295,0.2837741155573099,0.2874255244580183,0.2908818030347354,0.2935197773030362,0.2964205078099212,0.2930458221024258,0.2908352827851933,0.2879983096210733,0.2848492731003786,0.282087111639661,0.2776510570549423,0.2754728927582113,0.2757118049867304,0.2763144444065833,0.2778094288562883,0.2781328250551257,0.2790325765054294,0.2804324640833142,0.2817211964631729,0.2830229380887323,0.2846745685173633,0.285361772130357,0.288664955874069,0.2923894795747062,0.2977483548719575,0.3000959649042636,0.3050584904652529,0.3065619457816063,0.3101866014071581,0.3160962767957879,0.3218541468064824,0.3245654514690048,0.331366965012205,0.3324880247957171,0.3365003958828186,0.0,2.307769399022567,49.63283409895159,146.16611399270832,189.8173646466738,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95837,48077,458.497240105596,4925,50.3563341924309,3901,40.1097697131588,1497,15.265502885107004,77.40182060844235,79.71642712869263,63.36325590393732,65.07598419332201,77.20324912343843,79.52009794088661,63.28846875855356,65.00426967695176,0.1985714850039244,196.32918780601472,0.074787145383766,71.71451637024973,232.1825,163.3184061677222,242268.1219153354,170412.68629832132,542.85247,365.8701866481507,565860.3983847575,381190.2987866384,483.46059,237.1380600459241,500701.9522731304,244482.82540634787,2251.69292,1069.6409559258643,2318213.3831401234,1084815.046303478,909.42173,410.5047287197602,935606.68635287,415017.5597313776,1457.4154,629.3196175316282,1487870.3840896522,628974.4286624121,0.37876,100000,0,1055375,11012.187359787971,0,0.0,0,0.0,47384,493.8176278472823,0,0.0,43760,452.7896323966735,1106561,0,39771,0,0,0,0,0,84,0.8764882039295887,0,0.0,0,0.0,0,0.0,0.04925,0.130029570176365,0.3039593908629441,0.01497,0.3479105928085519,0.652089407191448,23.253847269914232,4.093458053104479,0.3153037682645475,0.2724942322481415,0.2061009997436554,0.2061009997436554,11.18775443686681,6.034384116416961,16.135985491937795,11308.06363527426,44.86968611631819,13.064825783767668,13.9652904785104,8.954872586371154,8.884697267668974,0.5788259420661369,0.7826904985888994,0.7056910569105691,0.5883084577114428,0.1057213930348258,0.7483164983164983,0.907725321888412,0.8712574850299402,0.7339901477832512,0.1405405405405405,0.5046074456321415,0.6850921273031826,0.6439732142857143,0.5391014975041597,0.0953150242326332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871645841349,0.0042769258835095,0.0066550338838615,0.0088972851092355,0.0110511279877187,0.0132130787084164,0.0151862610202313,0.0175750153092467,0.0198295071243126,0.0219747602427765,0.0241812311004049,0.0264195097918462,0.028513573242057,0.0304044314484576,0.0322307827181121,0.0344489104266333,0.0363837737684894,0.0383351133877373,0.0405695946156482,0.0424190073785761,0.0570266465036241,0.0712523520802843,0.0847487818934353,0.0974349278376504,0.1093266213113718,0.1253062690098006,0.1352571029047225,0.1455190960596107,0.1552204399193161,0.1637512720261368,0.1758429685399301,0.1871116921846805,0.1972710779893754,0.2066011865091938,0.2154202987765331,0.2247929858743302,0.2324712547536998,0.2399883075124232,0.2468782960770303,0.2530898104916231,0.2597624856901676,0.2653934265276544,0.2715877107920815,0.2764746753557909,0.2808474473380684,0.284365033432255,0.2871090331774883,0.2902643849017291,0.2932969562181592,0.2969056683308524,0.2938377797191049,0.2913799969788104,0.2881627377707847,0.2859261605805783,0.2829800461839067,0.2791883597722033,0.2755916692963079,0.2751986137901723,0.2752441888166627,0.2751203396152685,0.2754970836516781,0.2759664327968084,0.2764907898844833,0.2767962308598351,0.2777658483048218,0.2796938828274471,0.2820071158298978,0.2860118770015235,0.2898978670186896,0.293599622582167,0.2998959793767808,0.3017063764594009,0.3057046560978654,0.3121234939759036,0.3164790551762317,0.3200373221366923,0.3204469948655995,0.3272545090180361,0.3259158751696065,0.3276579644343549,0.0,2.36488291341143,51.56562350812168,147.10516232165028,192.7885736074964,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95709,48105,459.4656719848708,4742,48.53253090096021,3794,39.191716557481534,1473,15.108297025358116,77.32145341825886,79.70871617774961,63.3143933609397,65.08008971416619,77.13126942517357,79.51949637989077,63.24244913899732,65.01053046560429,0.1901839930852844,189.2197978588399,0.0719442219423811,69.55924856190165,230.4544,162.20278020160004,240786.5508990795,169474.95031982363,542.59993,365.4248003987345,566491.9077620704,381373.340436881,484.18498,237.7479682748216,502950.0882884577,246178.15595524816,2175.90356,1040.3886636572731,2249460.7612659205,1063036.3953831648,905.33541,418.4392651579541,932842.5853368022,424117.0267769525,1438.54136,618.0849672900299,1476570.6255420076,622093.504413918,0.37868,100000,0,1047520,10944.843222685431,0,0.0,0,0.0,47342,494.1854997962574,0,0.0,43766,454.3355379326918,1112787,0,39954,0,0,0,0,0,95,0.9925921282220064,0,0.0,0,0.0,0,0.0,0.04742,0.1252244639273265,0.3106284268241248,0.01473,0.3761356753482737,0.6238643246517263,22.66931866795493,4.1138033184683565,0.2962572482867686,0.2820242488139167,0.2100685292567211,0.2116499736425935,11.395553155583809,6.115713086221155,15.824656729412798,11234.562893901451,43.81170793358016,13.19500944369166,12.747423010264718,8.958357542895314,8.910917936728474,0.584870848708487,0.822429906542056,0.7188612099644128,0.5646173149309912,0.1008717310087173,0.7468566638725901,0.9183673469387756,0.907051282051282,0.69,0.1047120418848167,0.5105728565936178,0.7413793103448276,0.646551724137931,0.5226130653266332,0.099673202614379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682742968306,0.0043200486766048,0.0063748578853337,0.0086686110913506,0.0112831678333062,0.0136398826501507,0.0157663399859265,0.0178578721666326,0.0202005745305104,0.0223862263803304,0.0245542808517618,0.0264430729418047,0.0287104472698843,0.0305831195194081,0.0326379785510058,0.0347387357581522,0.0366867950324712,0.0386890553975798,0.0404750514777761,0.0423245682602215,0.0566087001932215,0.0703638571368756,0.0834986303957684,0.0961651793231183,0.1078930986821975,0.1238529682588402,0.1344265775088892,0.1454225914682856,0.1543706648711618,0.163280847777587,0.1750891443222338,0.1859052774018944,0.1961104222410755,0.2051153021485144,0.213026213026213,0.2222234524297213,0.230740918368485,0.2392960690445688,0.2463071499019396,0.2522837061288033,0.2578940674536646,0.2636044880785413,0.2689713920636047,0.2737226714585205,0.2780037641916095,0.2819638637258763,0.2861465366341585,0.2888795721055507,0.2921796876009354,0.2954769899269208,0.2923279534489941,0.2884071889148031,0.2856801708153059,0.282846478649969,0.2794869893987693,0.2768348623853211,0.272784730122614,0.2729892585800367,0.2731437329700272,0.2734263742523498,0.2736832274934628,0.2744885703597235,0.275767818394258,0.2752530883467868,0.2758934996402015,0.2762911286963765,0.278488223063997,0.283531515702946,0.2874925696702682,0.2910203276100256,0.296086858176883,0.2999259572667654,0.3037503939489442,0.3078979529483654,0.3120827456511518,0.3125966456524325,0.3167739957068384,0.3187259078920673,0.3211838859961633,0.3225314525352649,0.0,1.7802352760614508,52.31723123052444,138.73044447541164,188.90944004226665,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95701,48215,459.6817170144513,4791,48.72467372336757,3800,39.08005141012111,1456,14.754286789061766,77.3455376358958,79.73050821784203,63.32130932583449,65.08647590354855,77.15184139786263,79.54321077457496,63.24701148042284,65.01730572311894,0.1936962380331692,187.2974432670702,0.0742978454116496,69.17018042960876,232.62734,163.52454488678416,243077.23012298724,170870.25724578026,541.34105,365.6257446220474,565050.7622699868,381442.1214219782,483.00478,237.40028437769803,501084.1683994943,245303.71118848436,2167.7718,1031.8393608694726,2230699.240342316,1043739.3975710528,832.89147,387.160290913696,852232.9233759312,386531.12361592107,1406.8265,611.9199230093081,1427618.9590495396,603928.4509923691,0.37733,100000,0,1057397,11048.96500559033,0,0.0,0,0.0,47225,492.82661623180536,0,0.0,43543,451.3118985172569,1105108,0,39576,0,0,0,0,0,92,0.9613274678425512,0,0.0,1,0.0104492116069842,0,0.0,0.04791,0.1269710863170169,0.3039031517428511,0.01456,0.370125974805039,0.629874025194961,23.15754465901037,3.933854906908694,0.311578947368421,0.2960526315789473,0.1960526315789473,0.1963157894736842,11.308728838728072,6.355638673235001,15.606577713302016,11229.597152904047,43.60298969403601,13.822067619051603,13.340057323758492,8.26873750671542,8.172127244510499,0.5928947368421053,0.7866666666666666,0.7052364864864865,0.6013422818791946,0.113941018766756,0.7521588946459413,0.8839103869653768,0.8790849673202614,0.7777777777777778,0.154696132596685,0.5230885692657078,0.7113564668769716,0.6446469248291572,0.5451327433628319,0.1008849557522123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0044221309397028,0.0065079445657139,0.0089432712046992,0.0108956620818751,0.0130474638419229,0.0150822948746711,0.017585245550075,0.0197766688481675,0.0223036906566173,0.0245628429311317,0.0266944669836998,0.0287401250822909,0.031005914720854,0.0331062951496388,0.0351404999689845,0.0372089168807491,0.039294647583265,0.0412242478446706,0.0433029434748632,0.0581194974465018,0.0718165548566704,0.0853046745450347,0.0982292225624191,0.1106528412147551,0.1260881982715762,0.1361108752865268,0.1456904264837459,0.1547696682667123,0.1641170976780135,0.1751007999310032,0.1851474745724158,0.1956431806305521,0.2045743050995841,0.2131116860241096,0.2221791263104235,0.2307331718695938,0.2384825677545647,0.2446199049336918,0.2502775774641438,0.2565460769800148,0.2623054270088347,0.2674571182012696,0.2710519702753479,0.2750818479447072,0.2798244103976588,0.2827460479984017,0.2863032640271981,0.2894760608445471,0.2931856698064872,0.2906477906477906,0.2877756937694234,0.2853615767693063,0.2829111101520579,0.2792007212426656,0.276024371667936,0.2724190674424839,0.2726051851487905,0.2730786256682671,0.2737100824621084,0.2754287210367849,0.276897266357446,0.2782484989225716,0.2798279627401168,0.2804392653335251,0.2806538801393003,0.2816957323124911,0.2859466391417222,0.2897528968309367,0.2948373855383643,0.2995121069750632,0.3043890116829807,0.3079459896708356,0.3108402918829459,0.3086546540939221,0.3148279952550415,0.3130541118923876,0.3175634517766497,0.3240010872519706,0.3247600767754318,0.0,2.423640899014171,49.94991828549816,139.99577608345638,191.6269888273449,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95603,48642,464.9749484848802,4786,48.84783950294448,3806,39.15149106199596,1419,14.434693471962175,77.23812690061078,79.66919934600737,63.25655152000609,65.0543885876746,77.05382499627603,79.49251063534533,63.186161370831,64.9900989448542,0.1843019043347453,176.68871066204872,0.0703901491750897,64.28964282039829,231.54318,162.92441742826236,242191.68854533852,170417.05268431344,540.77326,364.5260027260825,564938.819911509,380598.5204259633,485.06607,238.33474829236968,504205.2550652176,246796.50607698708,2174.47616,1036.4568678360918,2237186.0297271004,1047473.8260871312,878.18552,402.353408303564,898286.2044078115,400851.9154726904,1381.83624,595.4105640509458,1406314.4252795414,587003.7419598099,0.38147,100000,0,1052469,11008.713115697206,0,0.0,0,0.0,47165,492.5891446921122,0,0.0,43837,455.29951988954326,1102593,0,39598,0,0,0,0,0,71,0.7426545192096483,0,0.0,1,0.0104599228057696,0,0.0,0.04786,0.125462028468818,0.2964897618052654,0.01419,0.3608062263021353,0.6391937736978647,23.340508527839543,4.12127166095862,0.3087230688386758,0.2750919600630583,0.2070415133998949,0.209143457698371,11.316875649035143,6.16669191241767,15.242130287541157,11407.338372348728,43.87438265007173,12.882639391071049,13.497348204694044,8.90538023141067,8.58901482289597,0.5761954808197582,0.7936962750716332,0.7038297872340425,0.5596446700507615,0.1180904522613065,0.7656514382402707,0.9271523178807948,0.8674033149171271,0.7,0.1528662420382165,0.4908536585365853,0.6919191919191919,0.6309963099630996,0.5086505190311419,0.109546165884194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097859575158,0.0042295091943647,0.0062545690845585,0.0085787178679243,0.0109509851815665,0.0132950273541367,0.0155744811056147,0.0178564131900461,0.0199864983736677,0.0219597881863714,0.0239986046129853,0.0262630621744089,0.0285502562730285,0.0307828704562792,0.0329013269995352,0.0351085955527042,0.0370516276176653,0.0389657608243995,0.0409839478670025,0.0429507375800696,0.0575646373720582,0.0723829684667218,0.0861123368845741,0.0993016862749228,0.1108916746755098,0.1272151429449087,0.1381339906083335,0.1484766432850777,0.1577871702958643,0.1663963044529193,0.177673464983274,0.1888545562964167,0.1994377431270635,0.2090678996789639,0.2171824032442916,0.2260698791705038,0.2338705167921088,0.2422742595578204,0.2494599204093234,0.2567246426726364,0.2629252844896586,0.2689994724810972,0.2746444626315102,0.278702313006909,0.2832629002204333,0.2868046635707934,0.2905960397777861,0.2933340132325382,0.2961160638974319,0.2991950087901339,0.2962128772961454,0.2931521574356077,0.2892644695666883,0.2866627131637184,0.2837783622342085,0.279715564273892,0.2761313417705479,0.2761792142950992,0.2758455593173968,0.2747849059298133,0.2744789912822239,0.27591719129285,0.2771573179403522,0.2776277315238499,0.2789916772599717,0.2807984197941574,0.2823385560326442,0.2867398119122257,0.2917656927163428,0.2956925742184424,0.3005075682044775,0.3062450592885375,0.3094064040946258,0.3112517898862009,0.3147321428571428,0.3182825807957064,0.3207716464782413,0.326736592123491,0.3250950570342205,0.3307027433295753,0.0,2.3669609489311,51.36949040210202,138.52042527325142,191.52304111907415,fqhc5_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95725,48513,462.63776442935495,4733,48.15878819535127,3766,38.81953512666493,1452,14.823713763384696,77.33641368994157,79.71184319685739,63.332022412709286,65.08967111678733,77.15580002446458,79.53470242176219,63.263462700668114,65.02508522278414,0.180613665476983,177.14077509519657,0.0685597120411714,64.58589400318715,232.98902,163.93315751889315,243394.11856881692,171254.27789907876,543.44594,367.0073654692823,567217.9785844868,382899.8020049958,484.35099,237.59882873868267,503049.1616610081,245951.3481864979,2462.95495,1154.13779022763,2541748.96839906,1174481.1075765253,887.80662,405.1385751505898,914842.1519979108,410618.5480810546,1422.0326,601.9460994610808,1453831.7889788456,601244.0170085692,0.38107,100000,0,1059041,11063.369025855316,0,0.0,0,0.0,47370,494.33272394881175,0,0.0,43812,454.6879080699922,1101481,0,39502,0,0,0,0,0,85,0.8879603029511622,0,0.0,1,0.0104465917994254,0,0.0,0.04733,0.1242029023538982,0.3067821677582928,0.01452,0.356421647819063,0.643578352180937,23.362992378442623,4.098789440356082,0.3154540626659586,0.2788104089219331,0.1898566117896973,0.215878916622411,11.669375041373389,6.285928210963457,15.45682513399195,11346.104523388663,43.08684581309977,12.8679271926106,13.42792514374815,8.011122445792866,8.779871030948154,0.575942644715879,0.820952380952381,0.6784511784511784,0.5594405594405595,0.1242312423124231,0.7519858781994704,0.927765237020316,0.8422712933753943,0.7411167512690355,0.1590909090909091,0.5001898974553741,0.742998352553542,0.618828932261768,0.4903474903474903,0.1145996860282574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0043915252690189,0.0068125285547489,0.0090962679892674,0.0112407556229209,0.0134133175809178,0.0153479027932163,0.0175311415152133,0.0198542116078639,0.0223573490571832,0.024622008097996,0.0265289570136443,0.0287726875417759,0.0308376850106603,0.032679131583292,0.0348338415421985,0.036862542065752,0.0388948831804789,0.0411699285944434,0.0431168290015104,0.057279211353502,0.0714749089691541,0.0846023156305059,0.0978712220762155,0.1103978919631093,0.125968357306672,0.1368878524485902,0.1467917224951615,0.1560802228650108,0.164772301198753,0.1762047220368895,0.1869160899653979,0.1970075625869262,0.2062020076241657,0.21474091328616,0.2243192145676473,0.2327874331550802,0.2410305965369619,0.2488241627472091,0.2550391585205511,0.2617911723596206,0.2671709389737124,0.2716141220923367,0.2757977323829115,0.2795112371808859,0.2840717649807552,0.2874057051506219,0.2903635417063477,0.2931277384999159,0.2961230298877234,0.2934659854799677,0.2908495833218735,0.2885159184592226,0.2856977918891615,0.2833132896827164,0.2794738452126032,0.2759465654888942,0.2755739074866047,0.276004909481436,0.2770110234537781,0.277765333930638,0.2786698150334514,0.2795501874219075,0.2798676496713448,0.2806451612903226,0.2827741534638086,0.2846129775552584,0.2897545357524013,0.2932222960915357,0.2988387301335659,0.3034410368747718,0.3077908217716115,0.3097542340506812,0.3130794575128343,0.3166870818807123,0.3228967495219885,0.3274988484569323,0.3348818420521107,0.3405757740358501,0.3538461538461538,0.0,2.070184676773705,49.25161754006032,134.53622976892788,196.75123254156577,fqhc5_100Compliance_implementation_low_initial_treat_cost,0 -100000,95611,48280,460.9197686458671,4808,49.07385133509742,3833,39.52474087709573,1515,15.458472351507671,77.26635035352784,79.70392303238417,63.26822878755484,65.07179094154647,77.07055562867968,79.51217264676724,63.19420107152995,65.0021787570126,0.1957947248481559,191.7503856169276,0.0740277160248865,69.61218453386664,231.7249,162.97607738631586,242362.1759002625,170457.45509022588,542.36677,365.82853031199767,566697.9531643849,382055.7679681184,485.60513,239.00862960656252,504416.4792753972,247313.39439650316,2502.79945,1184.9538066892487,2580386.827875453,1202045.7967067058,901.03554,410.649312467428,925150.0559559048,412258.9337632034,1470.40164,625.5826827690114,1501174.990325381,621341.8779561261,0.38016,100000,0,1053295,11016.462540921024,0,0.0,0,0.0,47312,494.2527533442805,0,0.0,43848,455.1568334187489,1103446,0,39582,0,0,0,0,0,97,1.0145276171151854,0,0.0,0,0.0,0,0.0,0.04808,0.1264730639730639,0.3150998336106489,0.01515,0.348943802311678,0.651056197688322,23.25817957807012,4.116483622152772,0.2976780589616488,0.2731541873206365,0.2170623532481085,0.212105400469606,11.607257630888398,6.397300716807646,16.084690934678807,11366.661910406729,44.10965653457182,12.873696083582113,13.100524826836914,9.358537029467833,8.776898594684965,0.5815288285937907,0.8099331423113658,0.6976336546888694,0.5973557692307693,0.1082410824108241,0.7587939698492462,0.9230769230769232,0.875,0.7489177489177489,0.12,0.5013262599469496,0.7184801381692574,0.6285018270401949,0.5391014975041597,0.1050156739811912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022092504763062,0.0045041846309916,0.0070378908669909,0.0091813079551,0.0116956088027523,0.0139221541628871,0.0163394023514043,0.0184543698844302,0.0206169744717859,0.0227074772771521,0.0247139118386616,0.026653646502544,0.0289061374070947,0.030972584519894,0.0328977947632081,0.0348185091676669,0.0371172702585045,0.0394777840094721,0.0413088956193212,0.043114596804472,0.0574681400478814,0.072172619047619,0.0854420739713652,0.0985506025111654,0.1109984473525777,0.126618080125421,0.1362293269843969,0.1461395686215945,0.1566587459593689,0.165250185342373,0.1763766787120435,0.1873495934959349,0.1983838295833242,0.2074367851351943,0.2163452000440868,0.2258089564821902,0.2336196976975411,0.2411968064141977,0.2481877883064058,0.2547456557894133,0.260674703818226,0.2663193021485861,0.2722439313203079,0.2765113380315451,0.2798104380582052,0.2843011495387044,0.2875997044865453,0.2913596273529075,0.2931246520900488,0.2959729950684353,0.2933666949163943,0.290404595679182,0.2881079332029656,0.2852731968431228,0.2826274079130925,0.2794254717701887,0.2766989524245919,0.2771194912893128,0.2778781577063375,0.2781541972755153,0.2786857624262847,0.2798412416326047,0.2797924208499864,0.2800553460242362,0.2816762728146013,0.2831367648207451,0.2848274290921517,0.2873675272807321,0.2915263748597081,0.2972029359254116,0.3022220202662789,0.3065797838525111,0.3106275622831914,0.312990343995172,0.3152476349471341,0.3154511453950444,0.3190814322405197,0.3235235235235235,0.3253796095444685,0.336322869955157,0.0,2.15041774350551,51.94640224494654,139.16398554907445,192.4419336830831,fqhc5_100Compliance_implementation_low_initial_treat_cost,1 -100000,95717,48366,462.6137467743452,4825,49.31203443484439,3826,39.51231233741133,1442,14.78316286553068,77.34534288058313,79.71393608991798,63.32656324425341,65.07446144761009,77.15917486143313,79.52751907139236,63.25745801462598,65.00667746657531,0.1861680191500028,186.4170185256171,0.069105229627425,67.78398103477912,232.36554,163.4542093740571,242762.6231494928,170767.8110347726,543.79243,366.18011205215714,567691.2774115361,382132.7772473465,481.58398,235.54233856727555,499861.94719851227,243528.18574691107,2503.30908,1160.8347952649024,2586861.477062591,1184460.7106848252,892.67835,405.9652053485747,919133.9365003082,410704.01918427367,1410.75188,596.6512681711591,1447832.5062423602,602555.0391094409,0.37962,100000,0,1056207,11034.664688613308,0,0.0,0,0.0,47295,493.6427175945757,0,0.0,43485,451.1110878945224,1104678,0,39620,0,0,0,0,0,110,1.138773676567381,0,0.0,2,0.020894929845273,0,0.0,0.04825,0.1271007849955218,0.298860103626943,0.01442,0.3651361558338302,0.6348638441661697,23.5546267006823,4.110955461881639,0.3010977522216414,0.2762676424464192,0.2106638787245164,0.2119707266074229,11.322354012030708,5.931807440474673,15.320804862069476,11266.294290561147,43.57711419315041,12.932123150981525,12.94035787060784,8.769571094802933,8.935062076758117,0.5794563512807109,0.7956480605487228,0.7161458333333334,0.5620347394540943,0.1208384710234278,0.7516339869281046,0.908235294117647,0.8785942492012779,0.7195121951219512,0.1538461538461538,0.5125226860254084,0.7199367088607594,0.6555423122765197,0.5218068535825545,0.1121495327102803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019847699287103,0.0041047574645774,0.0062497463576965,0.0081555961811903,0.0101893469462466,0.0123906779747299,0.0147498037776622,0.0169757969845758,0.019248461554188,0.0213428053761349,0.0231685563734033,0.0252310536044362,0.0273600625372858,0.0295562950066447,0.031671499778124,0.0336568776423646,0.0358840525678068,0.0380855523961727,0.0400286958962788,0.0418898359835775,0.0561415234236304,0.0698767189233313,0.0836131279640743,0.0965797308813163,0.1087371675160109,0.1243161448027005,0.1349460767663043,0.1447345999829598,0.1540368688218007,0.1637369826578436,0.1757937491246404,0.1869816591238821,0.197410369403188,0.2062152458513945,0.2138995033531918,0.2228626533801833,0.2308044283737333,0.2394757565530431,0.2469245086022969,0.2538508228449707,0.2602484615740527,0.2659925181201777,0.2710388719331866,0.2751212502245374,0.2793876634334066,0.282792083841332,0.2856946337681177,0.2887438411134251,0.2927864398007375,0.2948330673139073,0.2927554963178372,0.2892731374491031,0.2869728236355435,0.2844719240714791,0.2822884803848781,0.2785185638265337,0.2752552751605827,0.2758355680554647,0.2762907608695652,0.2760573884015768,0.2752527603478131,0.2757841808575413,0.277458453080095,0.2786425278909746,0.2807690463633313,0.2830614415021915,0.285351181902906,0.2885567491826249,0.2920707755414189,0.2972697316805272,0.3016497175141243,0.3051606108478146,0.3108630581192317,0.3136009677175474,0.3155737704918033,0.3199296600234466,0.3262314898760955,0.3306581059390048,0.3346038660495508,0.3477088948787062,0.0,1.730319504279986,46.67892918728936,148.93939531118514,196.5677415270873,fqhc5_100Compliance_implementation_low_initial_treat_cost,2 -100000,95666,48721,464.5014947839358,4933,50.414985470282026,3885,40.06648129952125,1451,14.82240294357452,77.2498286400838,79.65104712924781,63.26585613190741,65.04025740680542,77.06593099180739,79.46964023335885,63.19654140110539,64.97422769914664,0.1838976482764138,181.4068958889692,0.0693147308020201,66.02970765878524,228.95862,161.23945006008756,239331.23575774048,168544.15368060497,540.0412,364.7045891026296,563966.163527272,380686.1989658077,495.10921,242.9516256056428,514562.0910250245,251566.28678093024,2491.13117,1176.9238416397438,2570250.1933811386,1196504.736938665,896.56081,407.3401258469093,921714.4858152322,410330.4160798088,1400.34776,599.5225905993215,1431556.707712249,598635.1088559618,0.38291,100000,0,1040721,10878.69253444275,0,0.0,0,0.0,47030,491.0417494198566,0,0.0,44670,463.9370309200761,1111743,0,39928,0,0,0,0,0,75,0.7839775886939979,0,0.0,1,0.0104530345159199,0,0.0,0.04933,0.1288292288005014,0.2941414960470302,0.01451,0.373571013369502,0.626428986630498,23.180136062127385,3.972572162450609,0.3148005148005148,0.2813384813384813,0.2123552123552123,0.1915057915057915,11.341103632290569,6.278476272071891,15.627973092288569,11416.286429549804,44.88231568957584,13.429557523548429,14.04442571443991,9.182187897219675,8.226144554367826,0.5953667953667954,0.8142726440988106,0.7097301717089125,0.5721212121212121,0.1115591397849462,0.762384550797649,0.9077568134171908,0.8771428571428571,0.7339901477832512,0.1180124223602484,0.5215293244246474,0.7418831168831169,0.6426116838487973,0.5192926045016077,0.1097770154373928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109566838202,0.0047258308233695,0.0072979364805472,0.0095509042877463,0.0118501490168953,0.0138308923879168,0.0160398906880939,0.0180425792617552,0.020464307629372,0.0225827265185731,0.0248120377873283,0.0268823831535695,0.0293049338889746,0.031374974232117,0.0336991647480306,0.0357231507529372,0.0376875569924562,0.0398990842833115,0.0419588422563931,0.0439388567972806,0.058710439152831,0.0728437984333766,0.0869943955836359,0.1000873344065995,0.1115907004231877,0.1269023177055773,0.1374235474006116,0.1473308470964304,0.1571414818855694,0.1654116762446962,0.1776694106096732,0.1896577897293546,0.2004492225832479,0.2095150358623412,0.2177291188416034,0.2271338584426694,0.2356160397524425,0.2429231983760009,0.2503043611828556,0.2566755865902539,0.2624791047548291,0.2679816836914406,0.2731452877714937,0.2775987300976478,0.2811373160510671,0.2852622731991892,0.2885891725738661,0.2913183854213192,0.2943902185763979,0.2974342018251554,0.2949041406387026,0.2919738201860145,0.2887296122806027,0.2862519178994297,0.283544793324508,0.2790961143941945,0.2760344173098823,0.2760380764812079,0.2759374733065687,0.2767828418230563,0.2779361031948402,0.2781850878406418,0.278363453815261,0.279178964314462,0.2801904487087,0.2804691351617842,0.2812614905953896,0.2856253114100647,0.2892561983471074,0.2949247159649329,0.2994428969359331,0.3016619629978049,0.3048546097092194,0.3111111111111111,0.3133942582848703,0.3190055762081784,0.322493631050502,0.3254,0.3311740890688259,0.3370535714285714,0.0,2.1612496779889097,52.17389710584264,142.80888488614903,197.28553550869893,fqhc5_100Compliance_implementation_low_initial_treat_cost,3 -100000,95749,48571,462.6262415273266,4856,49.51487743997327,3824,39.39466730723037,1457,14.893105933221236,77.32698317968122,79.6862979052443,63.31555014592704,65.06094087441873,77.13649774273522,79.49838709815596,63.24313152625292,64.99169247461172,0.1904854369460054,187.9108070883433,0.0724186196741243,69.24839980700881,231.57508,162.88206754170054,241856.16559964072,170113.3667627865,541.64134,365.3315267137652,565129.5992647442,380992.1009240465,482.53753,236.29525994222976,500374.8237579505,244125.969288254,2490.14788,1168.9253225945856,2566523.420610137,1186642.108632555,868.02452,399.8968593574146,894902.4637333028,405991.65829328576,1419.90878,609.3855481273217,1452257.903476799,610247.4577405627,0.38069,100000,0,1052614,10993.462072710943,0,0.0,0,0.0,47210,492.4646732602952,0,0.0,43622,452.0882724623756,1107317,0,39693,0,0,0,0,0,84,0.8668497843319513,0,0.0,1,0.0104439733052042,0,0.0,0.04856,0.127557855472957,0.3000411861614497,0.01457,0.3578780680918448,0.6421219319081551,23.560258853725227,4.184224166211841,0.3057008368200837,0.2800732217573222,0.205020920502092,0.209205020920502,11.435842333501986,6.020472456267802,15.583527978840843,11353.46100225001,43.70711366469318,13.05341343801702,13.29887659782396,8.719932423668164,8.634891205184033,0.5706066945606695,0.7815126050420168,0.6903336184773311,0.5739795918367347,0.11,0.7497773820124666,0.9088785046728972,0.8664688427299704,0.7277777777777777,0.1685393258426966,0.4961125509070714,0.6967340590979783,0.6189903846153846,0.5281456953642384,0.0932475884244373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.0047251120439658,0.0068712827071026,0.0090824122236671,0.0114518179506737,0.0136449264294078,0.0160398906880939,0.0181593614111018,0.0205326846817382,0.0228145054810083,0.0251816625841694,0.0272747803235608,0.0291312034866987,0.0313439598006507,0.0335771242302018,0.0354419392837215,0.0375397293743723,0.039582188015393,0.0416350540964694,0.0438591921991061,0.0587854555324724,0.0723633966962034,0.0853182923760798,0.0980268483185636,0.1095487556787637,0.1247911864836861,0.135372475818768,0.1446838866293307,0.1551246833481193,0.1632050662802554,0.1746521078330979,0.1861434822163497,0.1964221591094571,0.2057768052516411,0.2146057396990345,0.2241249362683159,0.2328846690868472,0.2406725452436456,0.2486000840517486,0.2552026035936927,0.2620031722876362,0.2672302756375729,0.2726658767772512,0.2770026273799383,0.2806866117993168,0.2850572728505727,0.288627254509018,0.2927164627547837,0.2956788684230979,0.2988367799113737,0.2953851534022892,0.2917222138233394,0.2894555478980014,0.2864234587854999,0.2825309695126474,0.2799559437671138,0.2757067682242695,0.2743543976288339,0.2754995996388231,0.2756605013947373,0.2769199209279773,0.2770901792566065,0.2779914708587674,0.2788574990538525,0.2797289856113386,0.2809239553594602,0.2822132819582955,0.2857321456477574,0.2911978821972203,0.2953033345143891,0.2978349120433017,0.3007621550591327,0.3039233973761114,0.304126031507877,0.3083680073971336,0.3122598672720922,0.3204819277108434,0.3199840605698346,0.3242506811989101,0.330030487804878,0.0,2.0257971378054025,48.8108348408532,143.7669795743856,194.7883732289437,fqhc5_100Compliance_implementation_low_initial_treat_cost,4 -100000,95759,48507,461.1994695015612,4951,50.34513727169248,3918,40.33041280715128,1473,14.954207959565158,77.39144353273707,79.72981370342254,63.36142006586866,65.08696734560532,77.20057558429944,79.54403145870651,63.28865773361984,65.01910849710676,0.1908679484376279,185.78224471602311,0.0727623322488213,67.85884849855961,231.95942,163.1424678287268,242232.0408525569,170367.36556920904,544.9654,366.7874713121756,568483.6829958542,382417.06367457705,487.1492,238.6487914653399,505297.00602554326,246565.3385061481,2541.09176,1200.3431123074663,2615752.3365949937,1215973.405554179,896.30025,404.0764399005273,923952.9652565294,409982.3588661524,1426.7491,612.5134307155222,1450166.0209484226,605706.728733187,0.38141,100000,0,1054361,11010.54731147986,0,0.0,0,0.0,47461,494.9926377677294,0,0.0,44183,458.0248331749496,1108178,0,39791,0,0,0,0,0,92,0.9503023214528138,0,0.0,1,0.0104428826533276,0,0.0,0.04951,0.1298078183581972,0.2975156534033528,0.01473,0.3522595596755504,0.6477404403244496,23.345385201565733,4.088286154940297,0.3203164880040837,0.2761613067891781,0.2044410413476263,0.1990811638591118,11.609299813713443,6.364546518157281,15.823476111841188,11402.454771278091,45.17979850007223,13.342125738221911,14.317756817712484,9.005203921806375,8.51471202233146,0.5860132720775906,0.7994454713493531,0.698804780876494,0.5742821473158551,0.1205128205128205,0.7740345110928513,0.904862579281184,0.8851174934725848,0.7475247524752475,0.1509433962264151,0.5012958163643095,0.7175697865353038,0.6169724770642202,0.5158597662771286,0.1127214170692431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881905070468,0.0048744894960325,0.0073963596517927,0.0096484902651811,0.0123842157171762,0.014778926797492,0.0168738536784185,0.0192931622013181,0.0215652422641972,0.0233179176557256,0.0255430327868852,0.0276694845699277,0.0298907738309306,0.0321524875980321,0.0341112920850256,0.0362068074996126,0.0384185468847029,0.0402621917069426,0.0423908523908523,0.0443356424813792,0.0587983549403979,0.0724301021262347,0.0858791439362148,0.0985980669520313,0.1101210561835667,0.1254454890597404,0.1359148132828491,0.1465916224239006,0.15634278146827,0.1654285254864126,0.1771158524770168,0.1880576675571321,0.19963479451757,0.2080014858029344,0.2163522842193202,0.2261169753701122,0.2345545536619891,0.2427587910915441,0.2500906577217714,0.2562249087852135,0.2616571930311012,0.2672569886569396,0.2724328668683812,0.2769530969425623,0.2809942406789936,0.2850870720188902,0.2888419843133337,0.2924541491376352,0.2953922531933599,0.2980095834869148,0.2946530453343357,0.2916112216201386,0.2879149581531202,0.2851343764844751,0.282585533325441,0.2790481558781859,0.2754954160234397,0.2752151266267165,0.2750624331073849,0.2758320605264092,0.276484968369194,0.2771587195338032,0.2776455357888582,0.2776625404260064,0.2798281819927049,0.2795260244783411,0.2802968081792177,0.2857589788512076,0.291100317970579,0.2960214714240606,0.2994199220520257,0.3028120531695175,0.3057576517812343,0.3084599682467679,0.3115316819742091,0.3169055108936269,0.3227631383057913,0.3287833827893175,0.3322623828647925,0.3394324122479462,0.0,2.2007257737295016,53.140540780746726,143.4297213439343,196.16093256440843,fqhc5_100Compliance_implementation_low_initial_treat_cost,5 -100000,95726,48628,464.7013350604851,4788,48.879092409585695,3842,39.53993690324468,1443,14.729540563692204,77.37264048070351,79.73254638756111,63.34029949113111,65.08203363826806,77.18518659175896,79.54791511661102,63.26943737196013,65.01472895990753,0.187453888944546,184.63127095009213,0.0708621191709824,67.30467836052867,230.63018,162.28330698210672,240927.41783841385,169528.97539028764,542.75176,366.2429456456076,566390.5730940392,382000.9460811144,490.24103,240.7275632778848,508246.7981530619,248507.3556820208,2494.48658,1177.998211406601,2571449.0733969877,1196181.780714331,873.618,401.63132835104585,899612.2474562814,406552.18890483736,1396.97118,601.8958941608633,1427816.1836909512,600193.242978405,0.38149,100000,0,1048319,10951.246265382446,0,0.0,0,0.0,47373,494.2753274972317,0,0.0,44305,459.02889497106327,1109091,0,39896,0,0,0,0,0,88,0.9088439922278168,0,0.0,0,0.0,0,0.0,0.04788,0.1255078770085716,0.3013784461152882,0.01443,0.3670962545308095,0.6329037454691905,22.752397870909554,4.022947156583089,0.312337324310255,0.2878709005726184,0.2043206663196252,0.1954711087975013,10.95825406512192,6.003096049756969,15.636416641087784,11363.792443095424,44.2640586479809,13.642735145819918,13.764446316395327,8.64075923538061,8.216117950385044,0.5939614783966684,0.8245931283905967,0.6941666666666667,0.578343949044586,0.1105193075898801,0.7785179017485429,0.9352226720647774,0.8567415730337079,0.7486910994764397,0.15625,0.5100340780007573,0.7352941176470589,0.6255924170616114,0.5235690235690236,0.0981387478849407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886075949367,0.004337559413416,0.0065228197246822,0.0086732206694832,0.0110626442566777,0.0131929881711016,0.0154326021365081,0.0176579261633307,0.0197078575882407,0.0219469751253966,0.0241349259240272,0.0262212274901952,0.028359313947271,0.0306900102986611,0.0328075189055906,0.034870862056492,0.036805052282845,0.0389578060822304,0.0408148417606402,0.0424104818047368,0.0576031573671901,0.0715055507308549,0.0845636035733758,0.0974763771665212,0.1103720180052919,0.1255867551909333,0.135668904657354,0.1459949557832902,0.1557757819758439,0.1646184532235233,0.1768842273025855,0.1877035257970638,0.1983143929095753,0.2072766641514386,0.2166886688668867,0.2255502508944692,0.2342752555689478,0.2423819440535825,0.2499261749540013,0.2558984706394882,0.2611674304494746,0.266752456715021,0.2717163463246527,0.2760940741895635,0.2796646211799016,0.2832949180954259,0.2868726303539922,0.2906731404748589,0.2937060223509933,0.2967477532087605,0.2952871276481342,0.292267545666804,0.2888442013190646,0.2865389055645347,0.2840204196717419,0.2810837257660082,0.2776286706662456,0.2779415135736975,0.2774707992587177,0.2776516092402682,0.2777664143996727,0.2795420685328942,0.2794781631676411,0.2804423954962542,0.2820354003382805,0.2846826399814304,0.2870777027027027,0.2930035028984159,0.2979289838536804,0.2996996762744257,0.302841520258157,0.3052863205322995,0.3098679292300025,0.3141848764736802,0.3200073862062598,0.3221209997664097,0.3267431331119831,0.3218781218781218,0.3256570035220807,0.3166167664670659,0.0,2.3474088775128816,52.02680281510393,140.51105714629014,191.4490328889517,fqhc5_100Compliance_implementation_low_initial_treat_cost,6 -100000,95738,48706,464.444630136414,4862,49.38477929348848,3881,39.91100712360818,1499,15.249952996720216,77.33281654085012,79.69958964288365,63.319784280511655,65.07151528607555,77.14614658970254,79.51710380303717,63.24945240204252,65.00506585436943,0.1866699511475786,182.4858398464784,0.0703318784691404,66.44943170611839,232.33804,163.54608655645322,242681.108859596,170826.7214235238,545.53231,367.5663888224972,569211.7654431887,383323.572268136,489.16657,239.97434597051003,507205.7490233763,247680.1476640664,2513.73299,1175.5295636236924,2588261.71426184,1190516.7648671723,910.62399,405.13414208656906,936407.2573063988,408414.3517585157,1456.34066,614.4839687463527,1484994.5476195451,611278.8782000851,0.38259,100000,0,1056082,11030.959493617998,0,0.0,0,0.0,47460,495.0803233825649,0,0.0,44275,458.65800413628864,1101679,0,39547,0,0,0,0,0,98,1.0236269819716308,0,0.0,0,0.0,0,0.0,0.04862,0.1270812096500169,0.3083093377211024,0.01499,0.3614765364225407,0.6385234635774593,23.313870619382254,4.076874200885044,0.3156402988920381,0.2736408142231383,0.208966761144035,0.2017521257407884,11.518766491124186,6.254547887277168,15.924233181133909,11354.403659311907,44.21522740027817,13.042140593459017,13.648032344807056,9.066217681086677,8.458836780925418,0.5879927853645968,0.8097928436911488,0.7069387755102041,0.5721331689272503,0.1174968071519795,0.7598597721297108,0.9068736141906872,0.8765060240963856,0.7389162561576355,0.1096774193548387,0.5164233576642335,0.7381342062193126,0.6438969764837627,0.5164473684210527,0.1194267515923566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002290022190923,0.004777215420973,0.0070362473347547,0.0091481078663563,0.0114454889512879,0.0138323011734028,0.0160413628529762,0.0182848392036753,0.0201836363264554,0.0223835512640665,0.0246160470790871,0.0267586688435038,0.0289644961288133,0.0309680741503604,0.0331809787150624,0.0353706058068984,0.0373553992895535,0.0394773710810614,0.041374649058958,0.0433999020741527,0.0575646218733035,0.0722931902116485,0.0859968122142527,0.0985281749369217,0.1106133591930094,0.1254956698283792,0.1360073815609456,0.1460564129856306,0.156008673082469,0.1655584393299157,0.1768347833577397,0.1879841606439607,0.1995802431544835,0.2081688878199171,0.2165443966607639,0.2258896738047257,0.234721772798786,0.2417487199684915,0.2496567531686505,0.2561645717425647,0.2619356182453542,0.2679125174064149,0.272777863291379,0.2760881027705876,0.2798590864917396,0.2839073941665228,0.2869425914569279,0.2901974746639879,0.2928711051275744,0.2958931940211871,0.2920445676453965,0.2896643704712013,0.2873814015034207,0.2838358616110734,0.2809552806285366,0.2773174758468876,0.2739648147563248,0.2740423164405753,0.2747987679322022,0.2753527885401486,0.2768513337063981,0.2766837337534462,0.2767363789903876,0.2774553621061525,0.2785685237901586,0.2796887159533074,0.2816897412619156,0.2864250844911754,0.2917568227821596,0.2954132785979316,0.3015054930150549,0.3051920641620937,0.3072311727238666,0.3118311981914092,0.3139329805996472,0.3169104739613809,0.3211382113821138,0.325844930417495,0.3281926406926407,0.3217653715579027,0.0,2.451543931012534,49.01993800565111,140.55475782959033,203.61122495821908,fqhc5_100Compliance_implementation_low_initial_treat_cost,7 -100000,95775,48369,461.8637431480031,4819,49.05246671887235,3823,39.30044374836857,1429,14.502740798747062,77.34910350822409,79.67708318025596,63.34642956891118,65.06658199869807,77.16381955947335,79.49793260839192,63.27564888892191,65.00079660837784,0.1852839487507367,179.15057186404226,0.0707806799892694,65.78539032022945,232.56222,163.58831065382773,242821.42521534848,170804.81404732732,545.20248,367.9197369218709,568614.3148003132,383510.9547605022,487.30181,239.75427248715312,504690.1487862177,247158.48082836045,2464.43069,1169.4938044819098,2534751.908117985,1182690.424935432,883.62368,401.6403434629688,907134.158183242,403888.7010837573,1387.04576,593.4752724530216,1409532.404072044,586276.5024523978,0.38135,100000,0,1057101,11037.337509788566,0,0.0,0,0.0,47539,495.713912816497,0,0.0,44024,455.63038371182455,1101516,0,39564,0,0,0,0,0,101,1.0545549464891673,0,0.0,2,0.0208822761681023,0,0.0,0.04819,0.1263668545955159,0.2965345507366673,0.01429,0.3596088605068848,0.6403911394931151,23.177348054038703,4.024437517747767,0.3015956055453832,0.2934867904786816,0.2021972273083965,0.2027203766675386,11.764390943636943,6.726295196322982,15.210323844879738,11380.803425310454,43.89878134800008,13.767669595058052,13.10367319626775,8.750323017062065,8.277115539612206,0.5997907402563432,0.8110516934046346,0.7042497831743278,0.630012936610608,0.1083870967741935,0.7740585774058577,0.9046653144016228,0.8648648648648649,0.8155339805825242,0.1411042944785276,0.5205479452054794,0.7376788553259142,0.6390243902439025,0.562610229276896,0.099673202614379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002420204147764,0.0045307574575051,0.0069391606050461,0.0093142781688352,0.0116423313132956,0.0138850715121901,0.0158280420314522,0.0180947909862834,0.0205174316426206,0.022692626431078,0.0245976375613404,0.0266492904126176,0.0286416048342342,0.0306716894131208,0.0325590506531399,0.0344453625284032,0.0367020891321668,0.0388424010534938,0.0408453777496077,0.0424437432965751,0.0571863879699875,0.0714771312924245,0.0850642201834862,0.0976237769440153,0.1098676445793289,0.1252113449995773,0.1360856431183422,0.1453654075208439,0.155488911182736,0.1651077325276161,0.1760451199035605,0.1876737068639219,0.1981429534433644,0.2074010891673774,0.2159753548245131,0.2256764090239553,0.2347591255537824,0.242557449296218,0.249835515121265,0.2564293317157474,0.2624154477655084,0.2677846776362722,0.2725433833705951,0.2763964740825907,0.281164662046533,0.2854361994406594,0.2892518572250431,0.2920895332570266,0.29582205880449,0.2985277433313105,0.2954545454545454,0.292616526880242,0.2906401169985375,0.2872940124854025,0.2839935998103647,0.2804902245081729,0.2769427314164945,0.2770018317414627,0.2774848629158446,0.2779269745851637,0.2776586421019262,0.2774057588529562,0.2793942807083411,0.2803582169351066,0.2816668266001343,0.2818758778546533,0.2822073673730622,0.2882096069868995,0.2928521373510862,0.2961538461538461,0.3005449591280654,0.3050372641260109,0.307541934670198,0.3127040777583719,0.3154974609742336,0.3219976218787158,0.3195402298850575,0.3190543544150333,0.3231740801757276,0.3263075722092115,0.0,2.393867665226225,51.57482533148987,137.2915233344269,192.55903642127643,fqhc5_100Compliance_implementation_low_initial_treat_cost,8 -100000,95662,48659,465.2944742949133,4739,48.32639919717338,3754,38.604670611109945,1470,15.011185214609773,77.31532774038504,79.70726934829938,63.31028192710126,65.0762649259949,77.13371570102854,79.52836493439085,63.24238811362864,65.0116083278565,0.1816120393565086,178.9044139085263,0.0678938134726223,64.65659813841285,232.0439,163.23600808984074,242566.4318120048,170638.29743246088,543.88608,367.3423611551488,567923.355146244,383373.88007270265,487.6983,239.49286225899223,505391.5347787,246976.13024272883,2453.07883,1149.9705291582738,2526408.3230540864,1164207.7618681132,914.47911,410.9398809234495,941156.2166795592,414782.9137206509,1438.40706,602.4706901531387,1470483.4939683469,601591.8565431659,0.38215,100000,0,1054745,11025.74690054567,0,0.0,0,0.0,47285,493.6233823252702,0,0.0,43961,455.2173276745207,1103761,0,39540,0,0,0,0,0,110,1.1289749325751082,0,0.0,1,0.0104534715979176,0,0.0,0.04739,0.124008897029962,0.310192023633678,0.0147,0.3632151490733279,0.636784850926672,23.25138959198216,4.025483674074254,0.299413958444326,0.2767714437932871,0.2120404901438465,0.2117741076185402,11.061048085300962,5.889622019050497,15.551341577194725,11280.695923878422,42.96595872516481,12.897937102358012,12.63556963848402,8.731407731693487,8.701044252629304,0.5844432605221097,0.8075072184793071,0.7019572953736655,0.5829145728643216,0.1283018867924528,0.7688172043010753,0.9193205944798302,0.8825503355704698,0.7431693989071039,0.1585365853658536,0.5064442759666414,0.7147887323943662,0.6368038740920097,0.5350734094616639,0.1204437400950871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.004521583973722,0.0067080720128275,0.0088391278727165,0.0110982259114583,0.0133435192258721,0.0157378319937987,0.0179051120984627,0.0202075983023981,0.0222008315071579,0.0242549176460935,0.0264712226890324,0.0284444535887333,0.0305718701700154,0.032936974876654,0.0349460141480163,0.0369787079728539,0.0389828749351323,0.0408063492723925,0.0425338989233639,0.0569724070920355,0.0704136869548828,0.0835974726589559,0.0958834918764205,0.1079392551473769,0.1238224273345047,0.1348883627599826,0.1452124826925125,0.1546682626538987,0.1633951856104916,0.174845898530109,0.1862962682285182,0.1970397779833487,0.2056306897759103,0.2137225537912656,0.2232165629816915,0.2320636941252666,0.2409405411486752,0.248683493735246,0.2542565136689658,0.2595735321355806,0.2649195671248903,0.2701196350598175,0.2739763803129308,0.2774499805749805,0.2815109490849077,0.2853711926949778,0.2881366704376454,0.2916677441878507,0.2959671997152386,0.2933367407327702,0.2902268041237113,0.287814683103046,0.2853927071759426,0.2827276366709666,0.2791585829730679,0.2748244575936883,0.2739761830863976,0.274362767603598,0.274037094940307,0.2755975873110433,0.2757285750781142,0.2775587677033143,0.2779619534987206,0.2805330271059116,0.2819330777996477,0.2828859536997585,0.2855257369115706,0.2907510601759366,0.2941129831516353,0.299963679288114,0.3044351641380768,0.3075037707390649,0.3151468904998092,0.3157745947983415,0.3141976040801802,0.3234138972809667,0.3264618434093161,0.3276097029163259,0.3379804069329314,0.0,2.520068313319403,48.08882912787404,139.05020554325915,191.6954217941991,fqhc5_100Compliance_implementation_low_initial_treat_cost,9 -100000,95631,48236,460.2900733025901,4849,49.460948855496646,3827,39.46419048216583,1483,15.141533603120328,77.3146043072854,79.73358802832067,63.296484254502126,65.08283405456604,77.10904450232243,79.53202194666146,63.21708037784072,65.0077116884836,0.2055598049629736,201.5660816592089,0.0794038766614022,75.12236608243938,229.7317,161.65371914813718,240227.22757264905,169039.034568432,541.25063,364.8940649952056,565423.3773567149,381009.7823877253,483.63277,236.92760665919775,502909.840951156,245476.15941607565,2462.75905,1169.5503354647735,2542823.143123046,1190532.8663976882,847.12675,387.2661207854612,875690.0063786848,394820.5615842996,1432.07598,630.519843006055,1464395.0183517898,629998.3581659709,0.3791,100000,0,1044235,10919.419435120411,0,0.0,0,0.0,47039,491.29466386422814,0,0.0,43714,454.25646495383296,1115672,0,40019,0,0,0,0,0,108,1.129340904100135,0,0.0,0,0.0,0,0.0,0.04849,0.1279082036402004,0.3058362548979171,0.01483,0.3621813870776526,0.6378186129223473,23.037566055098225,4.050065675604742,0.3046772929187353,0.2884766135354063,0.2059054089365037,0.2009406846093545,10.982335285884144,5.894643823125429,16.15101420761077,11333.8478054611,44.023084643003365,13.645818590086373,13.173934526392124,8.726105271680188,8.477226254844684,0.5764306245100601,0.7916666666666666,0.6912521440823327,0.5736040609137056,0.0962288686605981,0.7510305028854081,0.9281314168377824,0.8947368421052632,0.7205882352941176,0.1155778894472361,0.4954093343534813,0.6839546191247974,0.6132858837485172,0.5222602739726028,0.0894736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0043301457241078,0.0064360255004669,0.0087080221510948,0.0108235677083333,0.0130780199633326,0.0153099213594312,0.0175298804780876,0.0195149891071994,0.0218226131836847,0.0239897435897435,0.0261222393425783,0.0284659067528085,0.0305500030910627,0.0325257801129267,0.0347316286331723,0.0367733913584084,0.0390381660367955,0.0412764806259624,0.0431372549019607,0.0574677802050778,0.0715280905938675,0.0843791021265424,0.0973093603941218,0.1091628839860656,0.1252316457170692,0.1359083038550198,0.1462296829203304,0.155886254707292,0.1656083803384367,0.1773845489857574,0.187894291846424,0.1985267677152913,0.2082169268693508,0.217023246585761,0.2255826859045505,0.2342185264663805,0.2413346254394663,0.2486620382469576,0.2549235516098322,0.2609486092776581,0.2662703891788163,0.2712765327745617,0.2756201964005227,0.280327868852459,0.2844277442404829,0.2876780867324602,0.2905792772064525,0.2932615810511881,0.2963695586237818,0.2936071154648331,0.2905805565097905,0.288266347575139,0.284414139809023,0.2814111423179231,0.2778543427661399,0.2754745057067325,0.2754632671835983,0.2752762856263044,0.2763986793968055,0.2768865898522848,0.2768762278978389,0.2778089829203853,0.2789209368472512,0.2800171628805034,0.2819719471947194,0.2814800191770777,0.2860070166723586,0.290275611024441,0.294662117111817,0.2971297668777792,0.3014489710205796,0.3042168674698795,0.3089713551507823,0.3141605295049874,0.3188920454545454,0.3225061576354679,0.329483282674772,0.3337863549877684,0.335632183908046,0.0,2.1176300133387453,52.89676222365844,134.18664202122858,194.1356935183321,fqhc5_100Compliance_implementation_low_initial_treat_cost,10 -100000,95653,48433,462.11828170574887,4711,47.96504030192466,3755,38.75466530061786,1361,13.883516460539658,77.29129418892526,79.69198657647615,63.29829466637945,65.07028535657729,77.10902548442394,79.51093856961172,63.22847423253876,65.00248635279554,0.1822687045013253,181.0480068644296,0.0698204338406895,67.79900378174375,231.4422,162.76122777078726,241959.98034562427,170157.76585239076,536.01569,362.4601291361821,559829.1637481313,378388.2410293426,486.72616,240.04978234303,505721.40967873455,248498.03737125,2434.54765,1162.449187964413,2513334.030297011,1183737.008317341,863.337,394.9881873948037,893267.9163225408,403715.65738086094,1324.41988,578.5148265613992,1352680.4386689386,579636.3762356619,0.37974,100000,0,1052010,10998.180924801103,0,0.0,0,0.0,46705,487.7107879522858,0,0.0,43923,456.0442432542628,1107613,0,39766,0,0,0,0,0,88,0.9199920546140736,0,0.0,1,0.010454455166069,0,0.0,0.04711,0.1240585663875283,0.2888983230736573,0.01361,0.360732451678535,0.6392675483214649,22.975531168500098,4.0227528793119,0.3254327563249001,0.2793608521970706,0.1904127829560586,0.2047936085219707,11.57442300797372,6.3887322065501975,14.80590052902181,11284.107354739295,43.25301687041974,12.90777244047535,13.873972153234662,8.020505513789054,8.450766762920674,0.5842876165113182,0.7940896091515729,0.6857610474631751,0.6097902097902098,0.1131339401820546,0.7672131147540984,0.9156118143459916,0.8801089918256131,0.7727272727272727,0.143646408839779,0.4962524654832347,0.6939130434782609,0.6023391812865497,0.5473887814313346,0.1037414965986394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0045320896279022,0.0065669945088963,0.0087795955695559,0.0111711381741598,0.0133930844833732,0.0154781083671513,0.0175220046153531,0.0197938818910518,0.0220854749861773,0.0243354664041348,0.026487685639751,0.0286402073946052,0.0308407266582171,0.033003334400066,0.0350512478409713,0.0372761565246227,0.0394331101074598,0.0412951421763965,0.04326341687169,0.0578400125398401,0.0721976663803758,0.0859038699787917,0.0986781173697061,0.1103641870429194,0.125879750653529,0.1355824248150232,0.1456631267242573,0.1553913917338407,0.1639756087087216,0.1755401733730107,0.186369099827827,0.1968958160999608,0.204615620415581,0.2131411316096894,0.2230638703738618,0.2316500949614568,0.2391673890283578,0.2460579641044852,0.2526466544454628,0.2589754866785491,0.2641423357664234,0.2693496252619614,0.2736200880169798,0.2778041218311143,0.2824821120157907,0.2863906807791069,0.2894522396801548,0.2927473894229523,0.2961487734107095,0.2923383298797061,0.2889020346957586,0.2858732394366197,0.2826165470016324,0.2801497459666637,0.2769445253014263,0.2729617265003243,0.2735599730790065,0.2743095290962816,0.2743705501329384,0.2753631326744534,0.2759567157695193,0.276795984523685,0.2782693979448543,0.2801999378183818,0.2811585192093469,0.2813549752999294,0.2870058610799351,0.2927841523384368,0.2980905791383935,0.3015579137502822,0.3066233153285437,0.309697536638603,0.315032184778493,0.3215755988023952,0.3244170907799739,0.3281273924360741,0.3231334149326805,0.3284851811196487,0.3387157341344348,0.0,1.7760993752913068,53.482225615236416,128.2282123673304,190.5451544166229,fqhc5_100Compliance_implementation_low_initial_treat_cost,11 -100000,95634,48419,463.1616370746805,4664,47.60859108685196,3741,38.56369073760378,1430,14.565949348558044,77.27514686010801,79.68568990719244,63.27600815666828,65.0560055615967,77.08826739221291,79.50233510335632,63.20629378601146,64.99014542519289,0.1868794678950962,183.35480383612435,0.0697143706568255,65.86013640381339,230.9362,162.4046453370634,241479.1810443985,169818.94026921745,541.89924,366.5701551850931,566074.3250308468,382741.61153526703,485.62687,238.5812001453776,504239.841478972,246825.0582716165,2423.16691,1143.4286554723642,2499360.614425832,1161232.030615802,847.84043,392.1146753581722,872728.2242717025,396257.1900408724,1387.08856,589.9967113673001,1414648.4304745174,586813.050172441,0.37952,100000,0,1049710,10976.32641110902,0,0.0,0,0.0,47207,493.025493025493,0,0.0,43848,454.9218897044984,1104704,0,39623,0,0,0,0,0,95,0.99337055858795,0,0.0,0,0.0,0,0.0,0.04664,0.1228920741989881,0.3066037735849056,0.0143,0.3611626468769326,0.6388373531230674,23.08679766800717,3.998926652656837,0.3151563753007217,0.280940924886394,0.2031542368350708,0.2007484629778134,11.49865893962108,6.339418784112,15.291262840706109,11300.83570218082,43.21506435676149,12.94402751423128,13.389823687900632,8.573273427095495,8.307939727534073,0.586741512964448,0.7897240723120837,0.7048346055979644,0.5907894736842105,0.1131824234354194,0.7543859649122807,0.9074889867841408,0.8710691823899371,0.7198067632850241,0.1366459627329192,0.5132641291810842,0.7001675041876047,0.6434378629500581,0.5424954792043399,0.1067796610169491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0046217933774565,0.0066663284460453,0.0086642965972574,0.0107202066741931,0.0128421867361903,0.0149895990537178,0.0171514328592867,0.0193430321122959,0.0214613368283093,0.023663237360631,0.0259808302770672,0.0282421935284736,0.0301908963469943,0.0322693900310818,0.0343864440444416,0.0365053534966158,0.0385709834873818,0.0407288317256162,0.0423905562391807,0.0565862223940968,0.0702055871073202,0.0842174926991197,0.0962158403742019,0.108800135207935,0.1238376649509648,0.1345638867635807,0.1440434059608578,0.1539218938964222,0.1626989671442236,0.173877841829134,0.1851550639774452,0.1966321525885558,0.2057914126573395,0.2139397349751194,0.2237658948303626,0.232343463277089,0.2392824909747292,0.2468226968107499,0.2536424069162677,0.2600795463769292,0.2658101724319825,0.2713972375363092,0.2762821513016551,0.280558223216348,0.2849533297986461,0.2882428099007916,0.2914169370745053,0.2946567458259878,0.298452274047858,0.2958951353244688,0.2919740173951338,0.2883751707049233,0.2859534668899024,0.2819417245267343,0.2779468203850094,0.2745141377622709,0.2750519784555441,0.27540493227051,0.2754596322941646,0.2760179305192379,0.2766568903411215,0.2788824670853589,0.2803020179072564,0.2830260952836964,0.2844179414052372,0.2849983010533469,0.2899049286965224,0.2950997170898676,0.2990325765054294,0.3048372513562387,0.3077979712595097,0.3101984770939957,0.3119777158774373,0.3169184853572094,0.3224778761061947,0.3286235186873291,0.326497788500201,0.3297872340425531,0.3313046785850133,0.0,2.0271150205638278,49.724367455102254,142.08557389753875,186.03863315345973,fqhc5_100Compliance_implementation_low_initial_treat_cost,12 -100000,95691,48065,458.611572666186,4838,49.39858502889509,3811,39.31404207292222,1446,14.808080174729076,77.28391542799022,79.68215492144529,63.28504443165552,65.05981050310669,77.09512326854153,79.49412089346838,63.21327096247912,64.99029942124028,0.1887921594486954,188.0340279769115,0.0717734691763993,69.51108186640909,230.5655,162.2253114576102,240947.94703786145,169530.375330606,537.08784,361.9549243202234,560795.7070152889,377776.4934217674,480.49762,235.4303422897661,498620.36137149786,243331.4967211396,2460.48264,1165.7204389279052,2540918.184573262,1187852.3778912397,875.14694,399.4436683596224,901322.7158248946,404198.35549803305,1405.8803,606.5361462692377,1440751.021517175,609553.4724064566,0.37996,100000,0,1048025,10952.179410811885,0,0.0,0,0.0,46849,489.0742076057309,0,0.0,43631,452.4354432496264,1112752,0,39946,0,0,0,0,0,67,0.7001703399483755,0,0.0,0,0.0,0,0.0,0.04838,0.1273291925465838,0.2988838362959901,0.01446,0.3615079365079365,0.6384920634920634,23.21784158349549,4.029307557595767,0.3059564418787719,0.2852269745473629,0.2046706901075833,0.2041458934662818,11.205628713570322,6.119654949252746,15.63372131642342,11307.018977626662,44.03020640294019,13.47705592552562,13.273109446242112,8.647497818204789,8.632543212967672,0.5896090265022303,0.8233670653173873,0.7015437392795884,0.5807692307692308,0.1041131105398457,0.7495667244367418,0.9171974522292994,0.8785942492012779,0.7005347593582888,0.1475409836065573,0.5201354911554384,0.7516233766233766,0.6365767878077374,0.5430016863406408,0.0907563025210084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021077805476175,0.0042295520934761,0.0065788805750428,0.0085466611111675,0.0107343080695542,0.0129879390432727,0.0153500943444336,0.0176798627282755,0.019892610585528,0.0221680427789956,0.0243039169419537,0.0264682914800049,0.0284417735977197,0.0304950944018468,0.0325777282299021,0.034716333326439,0.036763029737851,0.0386455878841981,0.0405458819613472,0.0428030974143052,0.0570243703711441,0.0713597721847648,0.0853430724345654,0.0981407241390195,0.1102468575529545,0.1255094155878523,0.136109754284622,0.1460232597767743,0.1561411010154997,0.1655020662265872,0.1771921315009431,0.1877999371689181,0.1982860938401733,0.2071246317772156,0.2158191716811038,0.2255583181636549,0.233581130177184,0.2409456627076243,0.2483267996136583,0.2548059276931547,0.2607128368588814,0.2664509928030569,0.2711683506475025,0.274968493068475,0.278588200941686,0.2819184368292502,0.2851006274342822,0.2879117523569602,0.2920178675470965,0.294754327449145,0.2916571336285211,0.2892443858057777,0.2861018950683237,0.2831692587094077,0.2804382032479292,0.2775542056217771,0.2741060555740064,0.2738514454180656,0.2744238412855461,0.2743836129285294,0.2744532654284002,0.275587281499644,0.2772029967891545,0.2788760774655771,0.279530217527613,0.2807703333072733,0.2825038306566029,0.2886862800388508,0.294642235072807,0.2976190476190476,0.3017957047464357,0.3046743697478991,0.3074158974041261,0.313369540956774,0.3158330268481059,0.3144983141495175,0.3167692538657859,0.322304165836157,0.3247535596933187,0.3334590720482837,0.0,2.0495338177093734,50.31123819516169,147.4850433143721,187.3568530156007,fqhc5_100Compliance_implementation_low_initial_treat_cost,13 -100000,95655,48492,463.906748209712,4726,48.183576394333805,3807,39.1720244629136,1427,14.510480372170822,77.35161970545354,79.75886683612065,63.31721993396855,65.09484656833764,77.16391145728369,79.57594343578785,63.24513032227435,65.02765431923298,0.1877082481698551,182.9234003327969,0.0720896116942029,67.19224910466437,231.8206,163.0406588408379,242350.50964403324,170446.33886450046,545.89585,368.8952965651681,570100.4547592913,385060.1747584215,488.85207,239.96418911967064,508005.76028435526,248429.3215813045,2463.47796,1166.6195534702654,2537060.5823009773,1181324.836935095,865.08856,393.4790134722668,891154.2627149653,398122.4854657532,1383.7443,599.653301448356,1408384.611363755,593065.9295163221,0.38021,100000,0,1053730,11015.932256546965,0,0.0,0,0.0,47526,496.210339239977,0,0.0,44098,457.89556217657207,1102957,0,39524,0,0,0,0,0,97,1.0140609481992575,0,0.0,1,0.0104542365793737,0,0.0,0.04726,0.1242997290970779,0.3019466779517562,0.01427,0.3636363636363636,0.6363636363636364,23.16828146279606,4.069624919887517,0.3146834778040451,0.2779091147885474,0.2061991069083267,0.2012083004990806,11.284858663856154,6.022772625046053,15.423232488450278,11250.421679592231,43.88317334372267,13.057466358597123,13.689064365336002,8.714448305132441,8.422194314657101,0.5797215655371684,0.8005671077504726,0.6936560934891486,0.5656050955414013,0.1109660574412532,0.7536480686695279,0.9121338912133892,0.8495575221238938,0.6963350785340314,0.1337579617834395,0.5030280090840272,0.7086206896551724,0.6321303841676368,0.5235690235690236,0.1050903119868637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025025075733781,0.0046848856664807,0.0069620638561308,0.0091339510688449,0.0114231657325372,0.0135465471582807,0.015856829653801,0.017890147144418,0.0201022494887525,0.0221653180374884,0.0243962492562119,0.0263890744299322,0.0284341168237763,0.0302592917160678,0.0323620249765006,0.0345673136613831,0.0363191608449594,0.0383393546779618,0.040410346047402,0.0423044838373305,0.0572640730639414,0.0706596858638743,0.0847932652439984,0.0975186260891526,0.1093332770430726,0.1245249865037948,0.1352757544224765,0.145521990321274,0.1550460580513325,0.1632230073669967,0.1754429478815067,0.1860976587469258,0.196570682053236,0.2057451886234755,0.2148308864830335,0.2233358463789968,0.2309411278338305,0.2384833611023551,0.2461349860382755,0.2520751519869938,0.2575314267210972,0.2628344432760836,0.2687911490407915,0.2738402987218153,0.278123446009048,0.2822014195564193,0.2859942334336033,0.2892960462873674,0.2923291348337807,0.2959320518551632,0.2926920959707845,0.289902771492437,0.2868317207094609,0.2828063098753872,0.28101573379952,0.2770834287109524,0.2731701933083157,0.2730037774107566,0.2730057173972229,0.2734966750826784,0.2734213129748194,0.2744303996540132,0.274822842851188,0.2758046614872364,0.2777989609646823,0.2789593227338426,0.2795686783718173,0.2849572969266255,0.2888672621737166,0.2933223283417835,0.2950214012164902,0.2975681035382528,0.2994678876376686,0.3049985034420832,0.3064501245732213,0.3071235770449477,0.3097867191045227,0.3119047619047619,0.3132337246531483,0.3215744522836984,0.0,2.453520472968492,50.38508214729124,142.5837587216702,189.9000360416448,fqhc5_100Compliance_implementation_low_initial_treat_cost,14 -100000,95787,48930,468.02802050382616,4843,49.349076597033,3852,39.59827534007746,1482,15.08555440717425,77.3507064425629,79.67860682290141,63.34838135415546,65.06985035405474,77.15659913839133,79.49052809470801,63.27491543569069,65.00161710853658,0.1941073041715668,188.0787281934033,0.0734659184647696,68.23324551815801,232.08416,163.3154357293875,242291.9185275664,170498.5391852626,540.66313,365.12152276282177,563846.7641746793,380584.3097318236,493.41033,241.84475979400037,511505.5696493261,249688.55644959904,2527.44899,1187.3605582436771,2598143.819098625,1199340.312021796,907.49879,411.9018032353966,927274.1916961592,409879.36070176034,1444.47844,618.8975059100112,1470771.5451992445,611554.8812252177,0.38309,100000,0,1054928,11013.269023980289,0,0.0,0,0.0,47046,490.5154144090534,0,0.0,44624,462.2339148318665,1105798,0,39664,0,0,0,0,0,76,0.7934270830070886,0,0.0,0,0.0,0,0.0,0.04843,0.1264193792581378,0.3060086723105513,0.01482,0.3653049141503848,0.6346950858496152,23.15737935831049,4.090872447393811,0.2897196261682243,0.2917964693665628,0.2050882658359294,0.2133956386292834,11.029577707259566,5.849494779266639,15.866247153823428,11354.344094174194,44.16353227129427,13.775367537938944,12.63429756402148,8.77913335653935,8.974733812794511,0.5802180685358256,0.800711743772242,0.6783154121863799,0.6063291139240506,0.1204379562043795,0.7478411053540587,0.9047619047619048,0.8594249201277955,0.746031746031746,0.1098265895953757,0.508166295471418,0.7223088923556942,0.6077210460772104,0.562396006655574,0.12326656394453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0045214922952149,0.006707459384862,0.008918413781895,0.0111029770619814,0.0132142893501786,0.0152765888060005,0.0173485320080415,0.0191912688923633,0.0212239050347932,0.0235362829682152,0.0254673808204559,0.0274803198158386,0.0291734865095786,0.0312751345666027,0.0335540656411739,0.0356777004025123,0.0377143331052642,0.0398055933453106,0.0419642299444085,0.0567323344046078,0.0713531373840668,0.084220899027172,0.0966318112553202,0.1093674248013321,0.1253792243210959,0.1361958896265032,0.1472478821676386,0.1566720403130237,0.1656180666459447,0.1774861952789468,0.1883254436590796,0.1986243317251271,0.2072763028515241,0.2153874907923524,0.2244949886054384,0.2331873544389841,0.2410996146630267,0.2487393053430789,0.2550538274090769,0.2608143375135684,0.2656073042300552,0.2716224523573083,0.2772677765676054,0.280514723718042,0.2851306787419402,0.2891742340024232,0.2924093247792669,0.2955821111714647,0.2989468141126909,0.295522909169039,0.2927632933811112,0.2897204143883274,0.2868705814456788,0.2844349553717047,0.2816841140062657,0.2782309054122407,0.2773794483912779,0.2769217643545772,0.2772409612779006,0.2776393909313955,0.2793658941051052,0.2808435778759764,0.2818417871692707,0.2831121457198396,0.283984375,0.2847655693316232,0.2892616604771196,0.2940205751202556,0.2983759434148654,0.3015274115828711,0.306766116142781,0.3100662669611865,0.3142791551882461,0.3192867198498357,0.3249555423829283,0.3258633921719109,0.3296319144560971,0.3335195530726257,0.3457508731082654,0.0,2.4288546286536383,49.97873930165681,140.77269399142858,198.39394140929127,fqhc5_100Compliance_implementation_low_initial_treat_cost,15 -100000,95730,48519,462.9374281834325,4836,49.15909328319231,3863,39.705421497963016,1454,14.770709286535046,77.31652017658898,79.67651288734321,63.31665033110207,65.06197479003588,77.12961172122021,79.49474670427853,63.24549267010864,64.99550322882476,0.1869084553687656,181.7661830646813,0.0711576609934283,66.47156121111664,231.65428,163.00129469661073,241987.13047111663,170271.90504189985,544.43315,367.3692846078098,568075.1593022041,383113.42798266985,488.97458,240.50338330997548,506457.609944636,247953.9328077519,2524.70022,1189.1680739608585,2596378.3453462864,1201275.2992383344,902.96162,411.6532468864587,926871.6912148752,413648.6962148301,1418.69254,609.6618252161255,1442452.668964797,602689.4597586195,0.37998,100000,0,1052974,10999.415021414394,0,0.0,0,0.0,47458,495.0799122532121,0,0.0,44193,457.3487934816672,1102760,0,39598,0,0,0,0,0,89,0.9296981092656428,0,0.0,0,0.0,0,0.0,0.04836,0.1272698563082267,0.3006617038875103,0.01454,0.3606264869151467,0.6393735130848532,23.36589687125963,4.048833686229903,0.3083096039347657,0.2736215376650271,0.2130468547760807,0.2050220036241263,11.31103424687494,6.099570893701945,15.622367132432272,11337.318671797122,44.32294322939445,13.005211596078787,13.641298527097744,9.01307955497676,8.663353551241173,0.5847786694279058,0.8174077578051088,0.6960537363560033,0.583232077764277,0.1085858585858585,0.7698887938408896,0.9328859060402684,0.8526912181303116,0.7524271844660194,0.1656441717791411,0.5044543429844098,0.7327868852459016,0.630071599045346,0.526742301458671,0.0937996820349761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023601867890317,0.0045113086850295,0.006688657701091,0.0090025097290102,0.0111287434895833,0.0134744260892591,0.015828174558657,0.0182183960867212,0.0205826116297379,0.0227386741745584,0.0246493314740382,0.0267686620802957,0.0290083086541625,0.030922421072142,0.0329351817469158,0.0352947254223278,0.0372237461829097,0.0391054498682654,0.0411001621554197,0.0430787502474293,0.0576431159231146,0.0717955694149409,0.0851887198095497,0.0975835453952764,0.1097134060186845,0.1246985658078436,0.1353263810059303,0.145708476597013,0.1550871269992201,0.1631923955841174,0.1749706443168474,0.1864678253717452,0.1965788729637443,0.2059932873432529,0.2152118877270225,0.224200984086174,0.2327103012438311,0.2403294403564436,0.2476196960927836,0.2544157063984788,0.2602931479274881,0.2658901402191582,0.2712058987135028,0.2755395683453237,0.2792364798367009,0.2829188296075264,0.286433041301627,0.2903800399506342,0.2941359142901506,0.2982893469974544,0.2953695482551726,0.2917721867430081,0.2891965431193695,0.2863815142576204,0.2843261073057664,0.2798732510792027,0.2772059637306518,0.2772399081063341,0.277551996174994,0.2777182645956079,0.2775864650396766,0.2780636892438134,0.2788966267227137,0.2792123806975292,0.2810336981773765,0.2822252725907125,0.2839933104679837,0.2880673841834347,0.2922349011967715,0.2976546513458208,0.3022878028969812,0.3043592991344733,0.3065474329310237,0.3101375216051702,0.315902112217363,0.3213483146067415,0.3254961832061068,0.3234821069561721,0.322057205720572,0.3189292543021032,0.0,2.515034290223265,50.46913780974358,139.72709128554095,199.54613539182927,fqhc5_100Compliance_implementation_low_initial_treat_cost,16 -100000,95684,48207,460.67263074286194,4779,48.94235190836503,3792,39.107896827055725,1470,15.091342335186656,77.40264542862671,79.78459542928448,63.35728834693722,65.11263348083068,77.21543779169808,79.59803642124281,63.28639425566175,65.04400060443656,0.1872076369286333,186.55900804166947,0.0708940912754698,68.63287639411908,232.98176,163.8091211644349,243490.82396220893,171198.02805530172,544.33536,366.7555991607493,568349.5464236445,382775.40681047423,483.48616,236.88995423506387,502005.1105723005,245036.06796723028,2452.09494,1158.399433865265,2529905.2819698174,1178796.8828366145,881.38453,399.8677462707219,909054.8681075206,406360.0870842917,1420.34844,603.6681785083485,1459284.3317587057,609587.071789003,0.37835,100000,0,1059008,11067.764725554953,0,0.0,0,0.0,47470,495.5582960578572,0,0.0,43780,454.2243217256804,1103526,0,39569,0,0,0,0,0,93,0.9719493332218552,0,0.0,0,0.0,0,0.0,0.04779,0.1263116162283599,0.3075957313245449,0.0147,0.3591746794871794,0.6408253205128205,23.14034327796177,4.043350651487606,0.3032700421940928,0.2811181434599156,0.2128164556962025,0.202795358649789,11.352342644558677,6.392323452294374,15.71968091861366,11230.353300015406,43.43879518833425,13.049204133389756,13.06799869610825,9.029695794245704,8.291896564590543,0.5946729957805907,0.8292682926829268,0.7095652173913043,0.5749690210656754,0.118335500650195,0.7687763713080169,0.9293361884368307,0.8794117647058823,0.7077625570776256,0.1446540880503144,0.5155350978135789,0.7512520868113522,0.6382716049382716,0.5255102040816326,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020050429869064,0.0043479582839247,0.0065631974031243,0.0087240892518001,0.0109415198137094,0.0131152882715923,0.0154046917532394,0.0178299874465457,0.0199887588779316,0.0220846338842552,0.0242422378711932,0.0261172195016785,0.0281310727027832,0.0300318238462568,0.0321295914156005,0.034293510278751,0.0363651424784625,0.0383849075400037,0.0403852354158649,0.042274219604982,0.0567882662655133,0.0705191296881871,0.0836656312961719,0.0967443328249092,0.1089031632018057,0.123731736476264,0.1345692637476919,0.1443976070341274,0.1537516295172354,0.1632440779385113,0.1740932977257064,0.1848934098041337,0.1962006045975511,0.2047820002623868,0.213161454953419,0.2225875372233846,0.2302908033037217,0.2387648968313695,0.2463303583563629,0.2529120609046535,0.2586889522468343,0.2645847672153331,0.2702504898836084,0.2746254021022924,0.2779225501484758,0.2819510035419126,0.285867759303444,0.2891147399540685,0.2925034849501781,0.2946196123806769,0.2918689808729243,0.2897421501636381,0.2869576185671039,0.2844474467137128,0.2813945583258206,0.2766171428571428,0.2729322359915492,0.2729978576217967,0.2741831397323551,0.2743793146284761,0.2739447900756249,0.2741850220264317,0.2735227037113829,0.2740226930236681,0.2757205573582745,0.2760734609415416,0.2766980678378455,0.2815555140419702,0.2853559983279922,0.2893215339233038,0.2950241786053238,0.2985248241949981,0.3006936199462601,0.3019977384093479,0.3040351204931814,0.3076743915220682,0.3154067565520376,0.3207696885538583,0.3239247311827957,0.3293856402664692,0.0,1.9896306252187623,51.66814158430531,132.1940714454916,194.68575188817144,fqhc5_100Compliance_implementation_low_initial_treat_cost,17 -100000,95723,48301,460.3177919622244,4686,47.65834752358367,3722,38.24577165362557,1407,14.343470221367904,77.33907921770925,79.70541241985407,63.32552877917672,65.07523733506325,77.15400562193685,79.5235481163541,63.2556138491202,65.00853562652408,0.1850735957724083,181.86430349996385,0.0699149300565125,66.70170853917057,233.19978,163.92131486935625,243619.38092203543,171245.4842298677,542.50838,366.6247329957681,566116.8162301641,382374.5108236977,480.3985,236.17191902738375,497151.9070651776,243186.4432556618,2430.75595,1160.760557217793,2502312.28649332,1175572.2211148764,866.54547,401.4766879140233,887965.3374841992,402116.8140509829,1373.16064,593.9163464530184,1402077.724266895,594315.1670370293,0.38001,100000,0,1059999,11073.608223728885,0,0.0,0,0.0,47386,494.3743927791649,0,0.0,43518,449.9963436164768,1100701,0,39486,0,0,0,0,0,85,0.8775320455898792,0,0.0,0,0.0,0,0.0,0.04686,0.1233125444067261,0.3002560819462228,0.01407,0.3582887700534759,0.6417112299465241,23.01371411657012,4.021629423019367,0.307898979043525,0.2815690488984417,0.2020419129500268,0.2084900591080064,11.446140401660376,6.230881203738202,15.201541352764922,11251.336792347103,43.07181937814341,12.841183275876196,13.126557480313869,8.476448145694077,8.627630476259265,0.5803331542181622,0.8015267175572519,0.6928446771378709,0.5824468085106383,0.1134020618556701,0.7547495682210709,0.9406392694063926,0.8700906344410876,0.7246376811594203,0.1318681318681318,0.5015600624024961,0.7016393442622951,0.6208588957055214,0.5284403669724771,0.1077441077441077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045423206391694,0.0067192432223947,0.0088705088603479,0.0112102377343519,0.0136369654441943,0.015826237699485,0.0181012567764857,0.0202049121658929,0.0221430180872201,0.0243162029392761,0.0264679601080492,0.028724815649008,0.0311653256132614,0.0329686209744013,0.035323923271806,0.0372929464535443,0.0394034993047051,0.0415852086019716,0.0434442881700265,0.0574796654589498,0.0710952540386708,0.0842883355176933,0.0962721489037278,0.107878391631252,0.1232137757422548,0.1342548880236789,0.1439491530837121,0.1538436878886965,0.1622158085040181,0.1746209631361731,0.1862683528953181,0.196342511504444,0.2061291699033906,0.2150626417420789,0.2253477417567193,0.2333541731791184,0.2414786473864851,0.2481389014979573,0.2539869850144356,0.2599710731848423,0.2654161452912491,0.2704348237296952,0.2733921453622685,0.2777440873256519,0.2812542268675069,0.2845730405801805,0.288237309209942,0.2913977384210254,0.2942500592370271,0.2902953020134228,0.2875965906751396,0.2844106356951025,0.2820764380834211,0.2802247490845477,0.2758710229268814,0.2713424259645134,0.2710364604670217,0.2710869082777104,0.2697948260481713,0.2714237643012039,0.272048539290428,0.2731857780000833,0.2755656511669339,0.2766673830503617,0.2786139125937419,0.2816801676768821,0.2853215881048324,0.289872755795712,0.296069765606503,0.2982829701445204,0.2998941798941799,0.3047738693467337,0.3100857554830386,0.3099637849382486,0.3092043314500942,0.3174773668866043,0.3218693101355452,0.3228389947528307,0.3231707317073171,0.0,2.5186415257349077,49.88144070976782,139.42942935273297,184.68047096593705,fqhc5_100Compliance_implementation_low_initial_treat_cost,18 -100000,95686,48114,458.4160692264281,4831,49.23395272035616,3837,39.51466254206467,1399,14.24450807850678,77.30793472821749,79.68340778461274,63.31631099018998,65.06990844153694,77.13361973557336,79.51271007364586,63.25017814989035,65.00720713566746,0.1743149926441276,170.69771096687705,0.0661328402996304,62.701305869481416,230.45176,162.1950515396863,240840.9798716636,169507.11058673734,540.9471,364.2408149290957,564748.2285809837,380079.7356016801,484.27426,238.0373767810605,502129.7472984553,245734.16470891304,2472.82521,1158.84122911794,2549625.0548669607,1176775.5051897955,854.65137,386.2935332189704,879542.1064732563,390069.5563785979,1358.56208,578.2455502975347,1385854.503271116,576200.6907334591,0.38042,100000,0,1047508,10947.317266893797,0,0.0,0,0.0,47185,492.4962899483728,0,0.0,43798,453.75499028070976,1112693,0,39951,0,0,0,0,0,87,0.9092239199046882,0,0.0,0,0.0,0,0.0,0.04831,0.1269912202302718,0.2895880770026909,0.01399,0.3486985893105503,0.6513014106894496,23.53620985728984,4.098344537630696,0.3137868126140213,0.2825123794631222,0.2097993223872817,0.1939014855355746,11.322636978848198,5.93468144112126,14.904493616752704,11288.33274445704,44.04285353703001,13.282295446005593,13.706619252212056,9.048009656993472,8.005929181818887,0.5900443054469637,0.7878228782287823,0.6976744186046512,0.5987577639751552,0.1182795698924731,0.7789382071366405,0.9135254988913526,0.8681948424068768,0.7666666666666667,0.1366906474820144,0.5093005952380952,0.69826224328594,0.6280701754385964,0.5394957983193277,0.1140495867768595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047626768270438,0.0071617687337059,0.0094661574713577,0.0116141892441623,0.0138181744124475,0.0160292033322796,0.0185706993363961,0.0205585883988631,0.0231136952226919,0.0251055890433427,0.027135523613963,0.0293201147711262,0.0313481884393897,0.0336294874573053,0.0355618041412961,0.0374860126818351,0.0393982808022922,0.0414733601015249,0.0435639229422066,0.0583172298532407,0.0728064391203776,0.0861974904528096,0.0988041271811268,0.1103098544032219,0.1260019881136185,0.1369326741496743,0.1468734697353573,0.1553715476254073,0.1641206633911905,0.1757977835456807,0.1862437525692896,0.1968753057829674,0.2048433827146996,0.2134882134882134,0.2222985246555314,0.2299530275475024,0.2382511079615756,0.2462904982303294,0.2525965028799138,0.2583728735100104,0.2640913820719973,0.2695233475694157,0.2743490145302834,0.2778155918029997,0.2807229509813591,0.2844997057460902,0.2890521544259957,0.2920149824384048,0.2944748828305498,0.2908846102060051,0.2872028520695398,0.2846355414048632,0.2821606151711378,0.2805146184929878,0.2774888331395704,0.2743708577845969,0.274985225556504,0.2755298980341252,0.2753659362798409,0.2759491775977246,0.2772625014800489,0.278701537433155,0.2786717411141528,0.2789237883035051,0.2796098829648895,0.2814718073931065,0.2867920984253201,0.2904107668582644,0.2940828168791695,0.299364502950522,0.3028511087645195,0.305752018526632,0.3111346284677602,0.311237314961363,0.3161471760018748,0.3219096079018258,0.323186400474402,0.325803879883072,0.3330871491875923,0.0,2.234233781917147,49.8064223015765,140.1151529906402,199.29596429675715,fqhc5_100Compliance_implementation_low_initial_treat_cost,19 -100000,95707,48348,460.5514748137545,4835,49.22314982185211,3857,39.71496337780936,1421,14.471250796702437,77.38171245272493,79.75444519237982,63.34258245905804,65.09449863353416,77.19653582223339,79.57514136127365,63.27025933655295,65.02730648268067,0.1851766304915401,179.30383110616788,0.0723231225050966,67.19215085348651,231.69146,162.8951079283004,242083.9019089513,170201.64452788248,540.23854,364.8678666225834,563868.389981924,380631.35049952805,490.6019,240.8516981875171,509391.4238247986,249139.84243627236,2495.37262,1183.4348721503943,2569072.4920852184,1198572.7749075843,900.10148,418.4191931996163,920372.1880322234,417196.4503679078,1386.41928,603.2461330065396,1412587.5014366766,597349.7282298482,0.37975,100000,0,1053143,11003.81372313415,0,0.0,0,0.0,47090,491.395613695968,0,0.0,44318,459.8514215261162,1108872,0,39771,0,0,0,0,0,98,1.0135099835957664,0,0.0,1,0.0104485565319151,0,0.0,0.04835,0.1273206056616194,0.2938986556359876,0.01421,0.3569579932311367,0.6430420067688633,23.12952642046259,4.046110142901384,0.3095670210007778,0.2875291677469536,0.1941923774954627,0.2087114337568058,11.29477526087306,6.237686814048396,15.125465151083183,11304.20053572434,44.26371895082544,13.571003379458816,13.677403540141576,8.235819980450826,8.77949205077423,0.599170339642209,0.8277727682596934,0.7252931323283082,0.5767690253671562,0.1180124223602484,0.7594617325483599,0.9309623430962344,0.8476454293628809,0.7485029940119761,0.1475409836065573,0.527736131934033,0.7496038034865293,0.6722689075630253,0.5274914089347079,0.1093247588424437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0052306663017364,0.0073466737021552,0.0096296446783007,0.0119006448725512,0.0139103869653767,0.0159979607443283,0.0181305892441504,0.0204348670558048,0.0225202170130003,0.0247685636078447,0.0268580404718637,0.0292263551382647,0.0314074104595226,0.0333429650574807,0.0355455381974958,0.0375851854920562,0.0397227295367756,0.0417477040842858,0.0437079881194309,0.0577644097711773,0.0714323104787629,0.0849108079748163,0.0980377715818822,0.1093481311122598,0.1244936166612017,0.1353284516608298,0.1448833989990416,0.154174101657246,0.1629276771057967,0.1755025057929622,0.1866317282600457,0.1965711550595043,0.2054957792065783,0.2142692117278178,0.2241155954160438,0.2327905420477359,0.2412327072320323,0.2482560711409548,0.2549800796812749,0.2607694799185637,0.2661765393426528,0.2708084381396339,0.27497274829003,0.2793876634334066,0.2840465488578289,0.2863105279600125,0.2903521037244184,0.2931377874343653,0.2952147627138736,0.292390355295856,0.2890041010026197,0.2869520038194737,0.2837925329113013,0.2815677465121778,0.2777600146165441,0.2728761772765931,0.2728295977292747,0.2727765910555046,0.2733814224695602,0.2733853110288234,0.2753463908623464,0.2765538129615799,0.2768460464807142,0.2774482479334905,0.2776576019777503,0.2795372012498944,0.2834433392209723,0.2874779541446208,0.2931379080612925,0.2949565843343681,0.3009458749343142,0.3047178075334751,0.3083446918067545,0.3088385955108503,0.3125586854460094,0.3193162910301013,0.326645264847512,0.334614328849849,0.3348659003831418,0.0,2.238614951887811,51.44946462946098,141.42888884853951,193.2479774137792,fqhc5_100Compliance_implementation_low_initial_treat_cost,20 -100000,95844,48745,464.014440131881,4790,48.65197612787446,3775,38.65656692124703,1443,14.554901715287343,77.44506122741345,79.72475218644782,63.40474875222951,65.08522198993323,77.25567650486606,79.54398587605768,63.331280309288594,65.01879495460219,0.1893847225473877,180.7663103901405,0.0734684429409142,66.42703533104566,232.1979,163.3966682968604,242266.4955552773,170481.89589005095,544.77177,367.7983047797538,567677.1524560745,383029.7408077229,483.33065,237.8138711717849,500174.0015024415,244885.30026283007,2457.88878,1161.2553201781857,2516758.41993239,1163900.1712973013,890.55514,414.4341461734503,904849.8288886108,408083.2145710218,1402.28986,607.2341904601843,1416003.4222277869,592359.903041593,0.38285,100000,0,1055445,11012.113434330788,0,0.0,0,0.0,47550,495.37790576353245,0,0.0,43693,451.9740411502024,1105782,0,39664,0,0,0,0,0,78,0.792955218897375,0,0.0,0,0.0,0,0.0,0.0479,0.125114274520047,0.3012526096033402,0.01443,0.350688210652304,0.649311789347696,23.1644255623454,4.098373698479303,0.2956291390728476,0.2852980132450331,0.2129801324503311,0.206092715231788,11.17096405587519,6.056897622468607,15.40166433242842,11341.221224650848,43.275382874544256,13.165952912794635,12.527280374686017,9.006084864622656,8.576064722440947,0.5854304635761589,0.8161559888579387,0.6765232974910395,0.585820895522388,0.1349614395886889,0.7596412556053812,0.9320175438596492,0.8412162162162162,0.7014925373134329,0.1975308641975308,0.512406015037594,0.7310789049919485,0.6170731707317073,0.5472636815920398,0.1185064935064935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002196400736857,0.0045786525390249,0.006702290540746,0.0092261783930818,0.0115430731400004,0.0139483777761951,0.0162144544936038,0.0185689375630946,0.0210254367960461,0.0231699710630988,0.0252713495801761,0.027424234654633,0.0295084324479776,0.0317234994599598,0.0336506758984503,0.0354263653911661,0.0373449991209291,0.0393989637305699,0.0414244186046511,0.0435162639695323,0.0583751316516679,0.0725912614664521,0.0859285011204423,0.0987007807908655,0.1107685508649354,0.1265042435502259,0.1370808887382712,0.1472350915968887,0.1569719075958277,0.1655445544554455,0.1772009029345372,0.1876512009676862,0.1981585833251902,0.2073988338319757,0.2153661939339345,0.2238315481986368,0.2318076425736835,0.2395064225750986,0.2466584284693958,0.2524571781640102,0.2587556511383214,0.2644445483667313,0.2693112869460313,0.2739608012061167,0.2774422045945224,0.281972094396732,0.2860466279767861,0.2902163687676387,0.2928284017544086,0.2959546712346818,0.2929546798559217,0.2899990395565495,0.2876844940793535,0.285525351120567,0.2827927595123753,0.2794565151238513,0.2753274525527934,0.27518823951237,0.2761083869216282,0.277129552577064,0.2779266205254149,0.2789254575445762,0.2798435256663684,0.2804888869171731,0.2822230699537456,0.2836487568097906,0.2845950059184939,0.2890498694192264,0.2921309433178766,0.297256994859318,0.3008857556037599,0.3021795345400813,0.3056161565791934,0.3124384143106192,0.3174751826184678,0.320543093270366,0.3274282223579719,0.3284984678243105,0.3257409440175631,0.325751734772552,0.0,2.860822260692806,47.40639609667133,142.2570745959258,193.0141376086472,fqhc5_100Compliance_implementation_low_initial_treat_cost,21 -100000,95687,48401,462.9991534900248,4834,49.400650036055055,3851,39.691912171977386,1419,14.495176983289266,77.29747507811412,79.69963401950275,63.28577397120039,65.06529222018744,77.1153280673909,79.52121043170673,63.216504578458576,64.99966625212008,0.182147010723213,178.42358779601852,0.0692693927418162,65.62596806736565,231.6017,162.97693349140542,242040.9250995433,170322.96288043875,540.41976,363.997934900626,564243.2096314024,379869.3395138589,482.24724,236.26316257369143,499825.5144376979,243756.07988468828,2482.60363,1156.192150905542,2562871.288680803,1176673.0808840722,891.08881,403.3695232654005,919382.7165654686,409685.0285912597,1380.68134,586.9020366623674,1412842.956723484,587787.7141452684,0.38044,100000,0,1052735,11001.860231797424,0,0.0,0,0.0,47148,492.16717004399766,0,0.0,43658,452.1512849185365,1105516,0,39673,0,0,0,0,0,69,0.7211010900122273,0,0.0,2,0.0209014808699196,0,0.0,0.04834,0.1270634002733676,0.2935457178320231,0.01419,0.3579905063291139,0.6420094936708861,23.10622659255175,4.0168033923676845,0.3191378862633082,0.2822643469228771,0.1989093741885224,0.1996883926252921,10.770422354425513,5.694521634231584,15.11129587241083,11243.397305589182,43.95115617951643,13.524391026898783,13.758711955802656,8.352252645425907,8.315800551389085,0.5819267722669437,0.7902483900643974,0.7127746135069162,0.54177545691906,0.118335500650195,0.7644444444444445,0.8924050632911392,0.8837920489296636,0.7309941520467836,0.1503267973856209,0.5066030814380044,0.7112561174551386,0.6507760532150776,0.4873949579831932,0.1103896103896103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021585795938222,0.0042906700748584,0.006365805370831,0.0085865257595772,0.010711669921875,0.0129662449836012,0.0151972583737913,0.0174220297788035,0.0194423989527082,0.0214541730670762,0.0235198785541377,0.0257142563617871,0.027778349348752,0.0298124484748557,0.031853381517811,0.033597103697957,0.0355825041459369,0.0376088965495758,0.0397732001664585,0.0419159180440627,0.0569396132994892,0.070532816916152,0.0831969277260136,0.0966466108469727,0.1090003902665415,0.1243732148524278,0.1349423677004394,0.1449367964814755,0.1545649919274647,0.1633941319820932,0.175781039372796,0.1867608961921588,0.1973967977344516,0.2066502328129279,0.2149211283441912,0.2247725759928999,0.2328788556101922,0.2401950845892185,0.2483527968373699,0.2539826254383753,0.2598709737198716,0.2657276335663353,0.2697841300666674,0.2736292741451709,0.2784857844687112,0.280705000123338,0.2842865909404,0.2880526858846158,0.2907664375567371,0.2935627081021087,0.2904891597454427,0.2869193659545141,0.2842227050822586,0.2819889790428255,0.2797684429271189,0.2765157305775522,0.273054345767847,0.273640700562018,0.2739370279215819,0.2739529190541235,0.275237546254114,0.2747780412755032,0.2757057918589664,0.2763971712961937,0.2780174982716284,0.277705985733485,0.2790159026071236,0.2821902448140534,0.2882215966357349,0.2934590453741897,0.2988904925130796,0.3051310330339793,0.3098214841077315,0.313921200750469,0.3171953255425709,0.3220121381886088,0.3297019216220305,0.3341989612465042,0.3390059427336575,0.3393870601589103,0.0,2.1743005451618127,48.81458088664539,142.57102127660025,199.23648394431,fqhc5_100Compliance_implementation_low_initial_treat_cost,22 -100000,95828,48530,462.5266101765664,4825,49.10881996911132,3857,39.6439454021789,1543,15.726092582543725,77.32864418348662,79.63958524366788,63.32870225298407,65.03868636417008,77.13022955788247,79.4446273054315,63.253507173665945,64.96721442779454,0.1984146256041441,194.95793823638508,0.0751950793181208,71.47193637553073,230.93312,162.59898147229237,240987.10189088783,169677.94535239422,542.10697,365.20365486368337,565110.6878991526,380505.6506070077,486.96863,239.19289512471076,504406.7808991109,246653.505991086,2501.2598,1182.9964393098032,2572082.470676629,1196426.753464335,878.69553,406.541285330937,902046.2077889552,409365.0862600132,1493.98386,642.2504152162508,1523638.1224694245,640335.0312473925,0.38202,100000,0,1049696,10953.959176858538,0,0.0,0,0.0,47215,492.07955921025166,0,0.0,43949,454.90879492423926,1109584,0,39861,0,0,0,0,0,84,0.8661351588262303,0,0.0,2,0.0208707267187043,0,0.0,0.04825,0.126302287838333,0.3197927461139896,0.01543,0.352917824533545,0.647082175466455,23.36593349316717,3.9812384777162446,0.3098262898625875,0.2766398755509463,0.2100077780658543,0.2035260565206118,10.801201055574982,5.748585888964604,16.674400894011235,11414.354606673904,44.43396597744989,13.19531924006773,13.559407266945934,8.979893766862775,8.699345703573446,0.5701322271195229,0.8106841611996252,0.6569037656903766,0.562962962962963,0.1184713375796178,0.7386172006745363,0.9288702928870292,0.7852760736196319,0.7537688442211056,0.1420765027322404,0.4953201048296518,0.7147707979626485,0.6087456846950517,0.5008183306055647,0.1112956810631229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025522864232541,0.0049568179053643,0.0072743874600517,0.0096802372826263,0.0118771608704494,0.0142231724699653,0.0163591886657833,0.0186861522446855,0.0206634373658716,0.0227882037533512,0.0248775589663722,0.0269282870161323,0.0291149387486639,0.0312548256586058,0.0334223633869919,0.0354135889833572,0.0373371415561971,0.039389100862641,0.0411533747429212,0.0430492526749656,0.0573374638837604,0.0719326676773485,0.0849536187830826,0.0979382526638784,0.1106848102199782,0.1264824641143268,0.1371916951201408,0.1476058735901255,0.1578795613032752,0.1668131821008169,0.1781118421761089,0.188988304536455,0.1988822320564538,0.2077800002186007,0.2165628919055686,0.2255488358698301,0.2336969263919436,0.2425139589337175,0.2508799818326331,0.2572729253385623,0.2629010571216617,0.2683956291328612,0.2738719707578742,0.2769097743457949,0.2815606029270429,0.286163599585574,0.2904252386799308,0.2937062937062937,0.295850622406639,0.2988636363636364,0.2961925035703699,0.2927773415437175,0.2895186214877432,0.2865149825481194,0.2842434161583098,0.2795369163535996,0.2755986624193727,0.2755445398289644,0.2759090986583016,0.2764340505810952,0.2770300583221175,0.2784086428515101,0.2789300171097108,0.2797534270963147,0.2808781632311044,0.2825001300525412,0.2830284985112718,0.2870532366908273,0.2906155398587285,0.2938310412573673,0.2997833543961004,0.3008429926238145,0.3035915404830434,0.3084565794463405,0.3148303896832072,0.3211791168462176,0.3270421259248074,0.3300640512409928,0.3346861471861472,0.3386973180076628,0.0,2.324620010960042,51.45707884041867,142.83226969957815,193.25846334512943,fqhc5_100Compliance_implementation_low_initial_treat_cost,23 -100000,95757,48359,460.46764205227817,4775,48.790166776319225,3764,38.83789174681746,1434,14.672556575498396,77.35098256499538,79.69781181460779,63.33757887846742,65.07030794770864,77.17671739285227,79.52502307428058,63.271853843905205,65.00692701640082,0.1742651721431087,172.78874032720637,0.0657250345622131,63.380931307818855,231.77,163.09852359002397,242039.51669329655,170325.20190693514,542.79767,366.3233521020897,566371.1582443059,382077.2498115958,484.57621,238.26112413231388,502709.2536315883,246247.37673266395,2417.6466,1144.5952268797755,2496076.0466597746,1166615.6697471472,859.94199,392.6689716003526,886259.2708627045,398304.5142042197,1386.3892,590.1233803369172,1420197.8967595058,593039.0098779309,0.37906,100000,0,1053500,11001.79621333166,0,0.0,0,0.0,47320,493.6662593857368,0,0.0,43862,454.7865952358574,1105748,0,39642,0,0,0,0,0,98,1.0129807742514907,0,0.0,1,0.0104431007654792,0,0.0,0.04775,0.1259695035086793,0.3003141361256544,0.01434,0.3584943639291465,0.6415056360708534,22.96454994263829,4.042477469232973,0.3034006376195536,0.2911795961742827,0.2077577045696068,0.1976620616365568,11.3287102076588,6.15037374563571,15.36327919656703,11260.7772675476,43.3987343844713,13.549277646420183,12.993293095356838,8.75814911072381,8.098014531970467,0.5908607863974495,0.8211678832116789,0.6873905429071804,0.5856777493606138,0.1088709677419354,0.7558441558441559,0.9204301075268816,0.8765822784810127,0.6926829268292682,0.1538461538461538,0.5178229206592564,0.7480190174326465,0.6150121065375302,0.5476603119584056,0.0956521739130434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062651261227,0.004520529895298,0.0066969042038294,0.0089380027626554,0.0113674492379335,0.0138245564027649,0.0158612042690696,0.0180235346947939,0.0202782121648831,0.0225465412602728,0.0247247678208991,0.0269349209607883,0.0292911119107592,0.0311914323962516,0.0333931666254023,0.0353584422027451,0.0376180417495029,0.0397223173427139,0.0416701322465274,0.0436290902272088,0.0581130736147647,0.0716131259349142,0.0843931847968545,0.0971014645121271,0.1089759131397248,0.1242270819900855,0.1352371660957996,0.1449290783915213,0.1551074034117006,0.1640494272107092,0.1750430848772081,0.1859591783727625,0.1961193770120943,0.2045994113978753,0.213512948349677,0.2221261884183232,0.2299884994584696,0.2381204098388312,0.2459641281041896,0.2527988815932712,0.2587776633773325,0.2651063232507544,0.2705035290779471,0.2749329694532222,0.2787789851557194,0.282597466486287,0.286370960690508,0.2895635721813772,0.2937343228776085,0.2954638332652227,0.2919588183836888,0.2883022916723981,0.285297886421561,0.2818630991938513,0.2790366380269777,0.2747313225199884,0.2712440516655336,0.2712842712842713,0.2724808646289698,0.2728016650952626,0.2736551415296774,0.2752486535361874,0.276362954318106,0.2760537079850613,0.275636589265685,0.2765246665803444,0.2784810126582278,0.2838470177189918,0.2873347903007597,0.2918793685698578,0.2957886193525115,0.3006518767742613,0.3031812239307725,0.3069997749268512,0.3118289522399111,0.313362976831266,0.3220287198289031,0.3285943131758109,0.3328782086291644,0.3340926347760061,0.0,1.740171660222869,50.551068261705495,140.62522380310105,188.40759515837647,fqhc5_100Compliance_implementation_low_initial_treat_cost,24 -100000,95839,48400,461.0336084475005,4798,48.8005926606079,3763,38.65858366635712,1411,14.305241081396929,77.51248185563044,79.79785735044298,63.42745123530996,65.11065492072115,77.32185850167227,79.6122874782653,63.35480707629625,65.04230015997317,0.1906233539581734,185.5698721776804,0.0726441590137128,68.35476074797953,233.88662,164.37256309728613,244041.17321758365,171509.05487044537,542.03047,365.3162842635987,564908.7323532173,380526.7471585599,487.94678,239.8144572666204,505650.4971879924,247535.5370660696,2450.59002,1166.129959648398,2518361.564707478,1178338.4590626536,870.8476,397.4159870259287,894041.9766483373,400173.5842887648,1373.47658,594.8285382889874,1394095.138722232,589044.1618139906,0.37909,100000,0,1063121,11092.780600799257,0,0.0,0,0.0,47229,492.11698786506537,0,0.0,44098,456.567785557028,1103416,0,39622,0,0,0,0,0,85,0.8869040787153455,0,0.0,0,0.0,0,0.0,0.04798,0.1265662507583951,0.2940808670279283,0.01411,0.3682317682317682,0.6317682317682317,23.29529499015627,4.074885455347223,0.2936486845601913,0.2864735583311187,0.2144565506245017,0.2054212064841881,11.485920956332992,6.330805021343834,15.189361074073776,11294.893643032272,43.122807684727626,13.283865346330732,12.47118736641768,8.9220637674828,8.44569120449643,0.5918150411905395,0.8107606679035251,0.7167420814479638,0.5947955390334573,0.1047865459249676,0.7688356164383562,0.9385593220338984,0.8580246913580247,0.751219512195122,0.1377245508982036,0.5121387283236994,0.7112211221122112,0.6581306017925737,0.5415282392026578,0.0957095709570957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026005302248396,0.0045978874023961,0.006821475993067,0.0091627685157938,0.0114894654503342,0.0140953930641716,0.016228543503492,0.01846753140806,0.0208714120878559,0.0230187135698946,0.0250985612615841,0.0270539129721359,0.0292428305744788,0.0314516544023053,0.0334226804123711,0.0355929227305122,0.0375099595409815,0.0397590611263166,0.0413740806914031,0.0432546664029398,0.058108249035353,0.071778089124025,0.0854011233129348,0.098397159842867,0.1107963819010814,0.1260364842454394,0.1360798736605581,0.1452041684389621,0.1549847395044074,0.1630130971631737,0.1739322121381565,0.1853756007992655,0.1959766808159543,0.2053132711668231,0.2143877147502087,0.2242052302758887,0.231943144855857,0.2392520215633423,0.2463817354080315,0.2535369003268347,0.2589444303476275,0.2645955642530985,0.2696275510805617,0.2738895321770063,0.2780493116213796,0.2825646628447969,0.2871771872780954,0.2899196355122445,0.293512281198882,0.296902457575996,0.2935450613895323,0.2896388573616485,0.2871969898308878,0.2846906098769332,0.2817067769083124,0.2780180289925691,0.2739536056480081,0.2735793598954931,0.2739588815510245,0.2732339368122116,0.2733165688739871,0.2745979697225549,0.2751726720479321,0.2769036432940342,0.2767776563910131,0.279219276364852,0.2796345748418833,0.28419424682957,0.2882354968804936,0.2919705197827773,0.2954989346590909,0.301049692331558,0.301018529880967,0.3028456794709859,0.3086781398755034,0.3155412400782239,0.3219685739697598,0.3267655091689426,0.3289858929997338,0.3312453942520265,0.0,2.2200078924834075,50.41382171693173,138.66485585439713,185.54085683034128,fqhc5_100Compliance_implementation_low_initial_treat_cost,25 -100000,95735,48286,460.2183109625529,4824,49.135634825299,3815,39.24374575651538,1433,14.571473337859716,77.31288813594676,79.67121234268069,63.318020272784125,65.06191625569728,77.12800742511484,79.491546756115,63.24726435957231,64.99606787800118,0.1848807108319192,179.6655865656902,0.070755913211812,65.84837769609919,231.4213,162.85526422865635,241731.1328145401,170110.4760313954,536.23339,361.7827291845536,559525.0848696923,377302.6366371272,488.20693,239.7667328682603,505902.000313365,247481.6138459724,2491.82223,1181.7847447301822,2565665.764871781,1197266.030950208,902.85638,415.5725296420332,926548.4410090356,417556.0658505589,1396.00738,598.79386206583,1420956.473598997,592798.095846071,0.38078,100000,0,1051915,10987.77876429728,0,0.0,0,0.0,46780,488.0137880607928,0,0.0,44117,456.8444142685538,1108855,0,39818,0,0,0,0,0,88,0.919204052854233,0,0.0,2,0.0208910012012325,0,0.0,0.04824,0.1266873260150218,0.2970563847429519,0.01433,0.3646331738437001,0.6353668261562998,22.96287332274708,4.075084486679367,0.292267365661861,0.2901703800786369,0.2104849279161205,0.2070773263433813,11.092080974723949,5.870835074926619,15.345167489372756,11293.262127638103,44.17094896257967,13.745963359078264,12.729948461315775,9.069038670306137,8.6259984718795,0.5834862385321101,0.8292682926829268,0.6959641255605381,0.5466998754669987,0.1177215189873417,0.7474402730375427,0.9085106382978724,0.8664596273291926,0.69377990430622,0.1461988304093567,0.5107832009080591,0.7708006279434851,0.626733921815889,0.494949494949495,0.1098546042003231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876076080131,0.0046219807620186,0.0070211751336762,0.0091618250518018,0.0114319423114085,0.0137474541751527,0.0158662180075456,0.0179885861297995,0.020211830617294,0.0225269042913752,0.0244127508176887,0.0266062865181807,0.0288488239347533,0.0306850838972837,0.0326344895895668,0.0348936961891866,0.0370197783990887,0.0391711285435603,0.0412441893114529,0.0431991997832746,0.0577898891185867,0.0730788548468106,0.0861107032741154,0.0987014352557699,0.1106963600320553,0.1255738676031904,0.1354664119707099,0.1460080902703853,0.1559308635645002,0.1635835236839,0.1752393052878662,0.1857087235837425,0.1958944472834418,0.2050855799201618,0.2137843012125079,0.2226751592356688,0.2310825892857143,0.2383191764639703,0.2461592614881513,0.2533253898239061,0.2589699074074074,0.2644483157759356,0.2701114080942356,0.2740331624095461,0.2780226585552439,0.2822884591698485,0.2862469345878585,0.2899145777190217,0.2933990708749046,0.2956575666011321,0.2919820086724662,0.2903208063473729,0.2875992789950994,0.2846122732000462,0.2815551295198181,0.2788211145491866,0.2745663366336633,0.2739708031594331,0.2754479766317623,0.2756587762393926,0.2771837842898605,0.2772267446455386,0.2780099460905177,0.277090990087983,0.2776565385261037,0.2799771256270957,0.2815652618716076,0.2871722405401162,0.290541723570403,0.294441801458928,0.3004901515839158,0.3051971986730556,0.3063264419196622,0.308670781273521,0.3098342335630471,0.3118556701030928,0.3136238951539165,0.3223090799759471,0.3225541244176487,0.3315868263473054,0.0,2.371538500566484,50.764199313741805,145.90656357538086,188.03143274244087,fqhc5_100Compliance_implementation_low_initial_treat_cost,26 -100000,95777,48438,461.9167441034904,4889,49.78230681687671,3893,40.009605646449565,1536,15.640498240704972,77.37208356525132,79.71179716063536,63.35007434272507,65.07995952948885,77.17298774382428,79.5143155666972,63.274570940780166,65.00739317944927,0.1990958214270364,197.48159393815,0.075503401944907,72.56635003957967,230.55912,162.1938172394826,240724.93396118065,169345.26790302747,545.54356,368.4659897012998,568996.9199285841,384111.6444462657,492.30985,241.874667867485,509926.28710441967,249463.00466784512,2531.0958,1199.511434666896,2604757.6140409494,1214650.697556527,905.91333,414.9899596990011,930963.3419296908,418477.9820780591,1489.5527,640.4364074753086,1518883.6568278396,638499.4015976749,0.38082,100000,0,1047996,10942.04245278094,0,0.0,0,0.0,47485,495.1397517149211,0,0.0,44523,460.72647921734864,1110489,0,39936,0,0,0,0,0,103,1.0754147655491402,0,0.0,1,0.0104409200538751,0,0.0,0.04889,0.1283808623496665,0.3141746778482307,0.01536,0.3595836606441477,0.6404163393558523,23.290506155776495,3.992355992377883,0.2946313896737734,0.2848702799897251,0.211405086051888,0.2090932442846134,11.478102765827806,6.26612390773566,16.47564314805536,11348.938856677483,45.01189146300901,13.752133470619237,13.102949495357848,9.205928449644478,8.950880047387452,0.5972257898792704,0.8322813345356177,0.6957279860505667,0.6233292831105711,0.1117936117936117,0.7747298420615129,0.9285714285714286,0.8783382789317508,0.7777777777777778,0.1213872832369942,0.5178438661710038,0.7520661157024794,0.6197530864197531,0.5772870662460567,0.1092043681747269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485566697052,0.0048558452617493,0.0071441618802135,0.0095996586788025,0.0118681989219973,0.0141309659553673,0.0161962714939506,0.0183684715390738,0.0207038914323086,0.0230173269606689,0.0250256200040992,0.0272173074159978,0.0293367871386867,0.0316004077471967,0.0334735800024749,0.0352227640932385,0.0372946619880135,0.0393972705023437,0.0413233445205265,0.0429477235103647,0.0576056102855234,0.0721286098298241,0.0856265266115252,0.0987632267487679,0.111504424778761,0.1277508372687606,0.1382394709510587,0.1481024637665748,0.1574173860156425,0.1653168787761923,0.1769939112287269,0.1877877942797846,0.1988676497755947,0.2082663780758425,0.2162982514021775,0.2258210971585498,0.2340316355442518,0.2421449047271092,0.248985467818359,0.2546480743691899,0.2604678592490662,0.2657075405544388,0.2711351657961287,0.275144813059505,0.2794105161016435,0.2831108103119424,0.2863397000512839,0.2897237821767082,0.2932113127552867,0.2954264035619253,0.2929214237743452,0.2901061815787307,0.2878071434602718,0.2840131635922751,0.2819132369299221,0.2777021966095477,0.2737529034398849,0.2740731036289794,0.2744187634426957,0.2745964437159249,0.2756798147318093,0.2765295472894472,0.2775192504330043,0.2769494392024212,0.2778123653081749,0.2802327695944717,0.2795754005520931,0.2844180716461021,0.288887334289412,0.2919982579086986,0.2947363648728295,0.2997467820215235,0.3014040561622464,0.3055660448606601,0.3100775193798449,0.3102437880918893,0.3148371531966224,0.3149160484185865,0.3167022411953041,0.3210975157582499,0.0,2.469230170573349,51.91076665770207,147.49654170027054,192.230369066088,fqhc5_100Compliance_implementation_low_initial_treat_cost,27 -100000,95655,48728,465.558517589253,4881,49.97125084940672,3875,40.01881762584287,1485,15.116826093774502,77.25911226955019,79.65337423776455,63.27736057920528,65.04498813281153,77.06563838601663,79.46595332286134,63.20348387017242,64.97607391143862,0.1934738835335565,187.420914903214,0.0738767090328593,68.91422137290704,231.53196,162.93644762826293,242048.9885526109,170337.61709086085,542.86338,366.4269012867304,567023.8670221107,382573.0413574748,489.25283,240.06566299802915,508988.98123464535,249028.61523824595,2517.3248,1184.627701677357,2596405.174847107,1203176.7495488191,917.78099,422.78605371901085,944071.4233443104,426625.3835847583,1444.003,618.5404230680508,1469891.6522920914,612373.1674344243,0.38208,100000,0,1052418,11002.226752391409,0,0.0,0,0.0,47233,493.2726987611729,0,0.0,44285,460.4568501385186,1100301,0,39509,0,0,0,0,0,90,0.9408812921436412,0,0.0,1,0.0104542365793737,0,0.0,0.04881,0.1277481155778894,0.3042409342347879,0.01485,0.3634758728913299,0.63652412710867,23.50804241472472,4.075130899515678,0.320258064516129,0.2725161290322581,0.2007741935483871,0.2064516129032258,11.450100212004356,6.420253250828106,15.887152358814088,11360.687565441644,44.33915651390974,12.900555575611769,14.046183475838845,8.578258615193946,8.814158847265185,0.5878709677419355,0.8162878787878788,0.6994359387590653,0.5719794344473008,0.12875,0.751084128360798,0.930957683741648,0.8757763975155279,0.7052631578947368,0.1666666666666666,0.5187362233651727,0.7314662273476112,0.6376496191512514,0.5289115646258503,0.1167763157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268974808302,0.0048570762226345,0.0070945740210705,0.0093480734839863,0.0114247927158044,0.0134133175809178,0.0157024287782694,0.0177935216472533,0.0199241471667637,0.0221507973877617,0.0242061986733239,0.0263474037642081,0.028603754178452,0.0306161342494823,0.0327241204941125,0.0347512304065511,0.0365263692208881,0.0387270217249146,0.0407838487221892,0.0428368883050812,0.0579487501045063,0.0718535277358806,0.08578809741344,0.0988637201318463,0.1108693815478202,0.1261981676640364,0.1363486684866317,0.1464267067310253,0.1559692873641885,0.1653082482308344,0.1768259139007842,0.18863099495048,0.1991089712866541,0.2085524585853273,0.2170057899090157,0.2262015813788201,0.2346840597869864,0.2417845140627467,0.2491101584088609,0.2550263091381172,0.2606420623963059,0.2660310535697532,0.271540779763176,0.2764693860376769,0.2802013627332675,0.2837991449823313,0.2864868255959849,0.2891878107866887,0.2935888122048674,0.2962860127193156,0.2938216646431943,0.2911292881084734,0.2880939261645403,0.2852334875893984,0.282511478146801,0.2794591608091101,0.2760616536107323,0.2761981460784958,0.2770333863819155,0.2769392894779145,0.2780034822983169,0.2780298248382515,0.2793235361749273,0.2799911071587372,0.2818747010999521,0.2828688354745131,0.2828651446999915,0.288608228085532,0.2926718569982194,0.2964322361670218,0.301644096200009,0.3041092999947249,0.3083078077139464,0.310267017675818,0.3156775744130153,0.3222443481316622,0.3245693563009972,0.3292780215396889,0.3381948266373142,0.3384793516016982,0.0,1.8895206846731825,50.41797967875471,139.35398378775074,203.5267572597213,fqhc5_100Compliance_implementation_low_initial_treat_cost,28 -100000,95621,48321,462.4611748465296,4846,49.50795327386244,3841,39.62518693592412,1409,14.348312609154894,77.28554750318864,79.7165838999311,63.27381344368565,65.07158507761625,77.10181749798045,79.53747224908072,63.20414620003161,65.00633968572564,0.18373000520819,179.1116508503734,0.0696672436540382,65.24539189061329,230.96634,162.43047373805717,241543.53123267903,169869.03895384612,539.22604,363.1590828830374,563394.672718336,379264.6624518018,485.203,237.7588766496753,503939.0405873187,245928.18117568223,2495.67926,1167.6722887470892,2575370.2847700818,1186546.7300562528,894.47398,409.0585666025515,920701.9274008848,413056.7308463115,1373.98042,589.4219441294882,1401135.231800546,586710.4631126637,0.37924,100000,0,1049847,10979.25141966723,0,0.0,0,0.0,46961,490.55123874462726,0,0.0,43942,456.1341127994897,1109445,0,39824,0,0,0,0,0,84,0.8680101651310905,0,0.0,0,0.0,0,0.0,0.04846,0.1277818795485708,0.2907552620718118,0.01409,0.3522074836666006,0.6477925163333993,23.14036237759548,4.0699925322430826,0.3111168966414996,0.2783129393387138,0.2074980473834939,0.2030721166362926,11.224415793016757,6.023314745509885,15.172863568295424,11271.67774042584,43.97101088518877,13.124866977406796,13.465114277580025,8.782263159172103,8.598766471029855,0.5907315803176256,0.8157156220767072,0.6970711297071129,0.5984943538268507,0.1115384615384615,0.7522361359570662,0.9246575342465754,0.85,0.7315789473684211,0.1470588235294117,0.5244215938303342,0.7400950871632329,0.6411428571428571,0.556836902800659,0.101639344262295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020875557357113,0.0044426863037458,0.0066096738821427,0.0089444529145703,0.0113640988076343,0.0134258268903625,0.015729718150381,0.0177958483164432,0.0198936279022194,0.0217734171770344,0.0238405432853581,0.0259456015783146,0.0279155944415851,0.0299144418101226,0.0319476281932139,0.033885682368274,0.0359796474574866,0.0380521139486338,0.0400437181222025,0.0419743814411482,0.0565440100355425,0.0700265140797099,0.0833114406111747,0.096444186904072,0.1086579903659258,0.1240494799940691,0.1354521980299021,0.1455877022791719,0.1556701692811436,0.1638930370975193,0.1756182296836562,0.1857220294882914,0.1962472213747112,0.2047312252098262,0.2132557216563037,0.2227487625685304,0.2308603616693117,0.2393379080327665,0.2465432814115455,0.2532375254990946,0.2596262937322003,0.2652901171705821,0.2707439622686227,0.2746756909193457,0.2792881557980269,0.2832418429655215,0.2862811862348685,0.2901611794362539,0.2930382043439946,0.2953495737549156,0.2919481148577733,0.2901315970218962,0.2873868929511265,0.2841494566393904,0.2814603909007325,0.2775643870414862,0.27407032473387,0.2738528649676933,0.2745522400777083,0.2754525189478377,0.2754987670925801,0.2773788680581512,0.2780423611981451,0.2773883436811536,0.2785932867935354,0.2805671780567178,0.2832826918748593,0.2888999316727747,0.2953078065117563,0.3005126599616483,0.3038532440088125,0.3062519668519878,0.3117020614062403,0.309984984984985,0.3138780804150454,0.3202933985330073,0.3246909858305697,0.3317346123101519,0.3304605440344734,0.3270089285714285,0.0,2.1176271212822644,48.64492572423684,143.04734266375692,199.87747171393036,fqhc5_100Compliance_implementation_low_initial_treat_cost,29 -100000,95810,48666,464.42960025049575,4784,48.69011585429496,3776,38.82684479699405,1486,15.071495668510591,77.35864855579545,79.66335560037383,63.35358995694328,65.05428484878232,77.16267093075234,79.47394789852866,63.27785887679139,64.98413079233065,0.1959776250431133,189.40770184516964,0.0757310801518826,70.1540564516705,231.10802,162.56048401105423,241214.6957520092,169669.41239020394,540.84408,365.1898752202168,563889.8966704938,380553.91422629874,482.96011,237.38158159646488,500996.0755662248,245301.4559912804,2484.21679,1182.113156914917,2553798.538774658,1194750.8056725992,877.54385,406.7231240305805,899318.3279407161,408006.7061541581,1451.8274,634.4586750071938,1473788.9990606408,625269.1245189635,0.38262,100000,0,1050491,10964.304352364054,0,0.0,0,0.0,47126,491.2326479490658,0,0.0,43628,452.3327418849807,1110411,0,39867,0,0,0,0,0,86,0.8976098528337334,0,0.0,0,0.0,0,0.0,0.04784,0.1250326694893105,0.3106187290969899,0.01486,0.3460076045627376,0.6539923954372624,23.3934264761249,4.142031016066905,0.305614406779661,0.2717161016949153,0.2055084745762712,0.2171610169491525,11.115744713314266,5.807306607267564,16.126579038670315,11299.234049425411,43.546756017238565,12.540038559720784,13.146993384849695,8.798390493722287,9.061333578945804,0.5701800847457628,0.8079922027290448,0.6837088388214905,0.5631443298969072,0.1195121951219512,0.7517064846416383,0.937354988399072,0.8746268656716418,0.7268518518518519,0.1421052631578947,0.488479262672811,0.7142857142857143,0.6056166056166056,0.5,0.1126984126984127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002206343744307,0.004456643944535,0.0067723065381145,0.0090312236800714,0.0113079877268201,0.0135801841208483,0.0158802917328769,0.0180143421092897,0.0199722125738103,0.0222592755505999,0.0243979883438661,0.0264121526673709,0.0282943267511866,0.0303466869732549,0.0324163814080092,0.0344346784272007,0.0366706676048176,0.0385129741553581,0.0407279299492069,0.0425598367567905,0.0576421491914449,0.0712538162352055,0.0844121130805756,0.0964863416120996,0.1087373524451939,0.1241637337899109,0.1348990086412553,0.1450912804800204,0.1550190597204574,0.1636268107783532,0.1750834499838484,0.1861469051251257,0.1967218463814143,0.2057153485115368,0.2153592072667217,0.2245807331212521,0.232723497828926,0.2398006255766331,0.2475773324558019,0.2539235228079822,0.2600782190132371,0.2656555372210324,0.2709623193209665,0.2756065982545315,0.2797340496651311,0.2841944351985404,0.2874155616712534,0.2904226641574691,0.293287591429866,0.2963344017516784,0.293163071706339,0.289985566018283,0.2877927408698585,0.2854671280276816,0.2827614839417574,0.2790900068707534,0.2753790271636134,0.275228155260269,0.2748686634372654,0.2750307810353134,0.2754678143712575,0.2749334122521456,0.2757696896125913,0.2770351557278439,0.2784512913891417,0.2802882489138635,0.2824325476928325,0.2859070935342122,0.2895123487021619,0.2932795060555687,0.2990366785762742,0.3020701309674694,0.3053802412047741,0.309447983014862,0.3159116227255849,0.3188540817514848,0.3193226489265195,0.3229313468894705,0.3214285714285714,0.3182703544994156,0.0,2.1913023357720305,50.95676554233713,137.33431877848582,191.19306346396053,fqhc5_100Compliance_implementation_low_initial_treat_cost,30 -100000,95856,48270,460.99357369387417,4837,49.13620430645969,3797,38.97512936070773,1379,14.010599232181606,77.41454581429173,79.7032471142419,63.37712166936033,65.06809494566434,77.23163219941677,79.52344772420032,63.30696107884409,65.00167856073368,0.1829136148749626,179.7993900415804,0.0701605905162381,66.41638493066182,231.15444,162.5652032234957,241147.36688365883,169592.93988803777,543.96429,366.6762676182615,566860.551243532,381909.78534736345,482.25047,236.0778559167082,498627.5037556334,242964.12221610636,2464.86162,1165.1960871568222,2532953.2945251213,1177218.4433473763,892.20265,411.5851677890114,916785.6889500916,415390.385358257,1344.74496,584.5965338294707,1367615.736104156,580360.845222369,0.3801,100000,0,1050702,10961.24394925722,0,0.0,0,0.0,47330,493.1042396928727,0,0.0,43625,450.6447170756135,1112591,0,39967,0,0,0,0,0,97,1.011934568519446,0,0.0,1,0.0104323151393757,0,0.0,0.04837,0.127255985267035,0.2850940665701881,0.01379,0.3614624505928854,0.6385375494071146,23.421767564115672,4.091455811863366,0.3078746378720042,0.2833816170661048,0.207795628127469,0.2009481169344219,11.189211744877738,5.877478698764778,14.867321984403642,11252.13981760501,43.61812699387759,13.193852739826182,13.38437149431456,8.757389127531043,8.282513632205802,0.599157229391625,0.8150557620817844,0.7194183062446535,0.5830164765525983,0.127129750982962,0.7611301369863014,0.907563025210084,0.8798798798798799,0.7252747252747253,0.1807909604519774,0.5271966527196653,0.7416666666666667,0.6555023923444976,0.5403624382207578,0.1109215017064846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.0044982523681677,0.0069562043055456,0.0089537693135443,0.0111190161601788,0.0130444957722402,0.0153321108394458,0.0173815474065384,0.0195924204504826,0.0217046651733202,0.0238153770511953,0.0257572804579072,0.0275171853967797,0.0297066392177045,0.0316939890710382,0.0339089838666363,0.0360158092952034,0.0380346353545926,0.0398430362926667,0.0418578041296094,0.0563161461863302,0.0697399774256929,0.0828051501786219,0.0961160868971744,0.1080642783429161,0.1239451198259381,0.1344379350163677,0.144542710149241,0.1542885187832748,0.1623558140282106,0.1748195324518842,0.1861943687556766,0.1971682531403485,0.2066765011200349,0.2155526738026683,0.224655321220705,0.2328241721485115,0.2410391244747073,0.2476840565577767,0.2535225776912951,0.2601859131480368,0.2662544851041947,0.2713557738918644,0.2748961040516425,0.2789313904068002,0.2822726656895469,0.2867398754283713,0.2902360583217868,0.2916753004558641,0.2948330673139073,0.2916577022375215,0.2891773108089548,0.2864632380845292,0.2824078744469585,0.2798186881554779,0.2764220197487905,0.2733289212442091,0.2738696341323921,0.2740970002040677,0.274468047347779,0.275133062865225,0.2750765847144765,0.2773135445248191,0.2765858415709916,0.2771472173208069,0.2771541379577301,0.2773315295510273,0.2807887882921989,0.2840786871595601,0.289961511271699,0.2939249820531227,0.2989167408027631,0.3062156656996481,0.3069432054713054,0.3123161764705882,0.3160213308601901,0.3161212848994296,0.3205358928214357,0.3266630611141157,0.3335823683227493,0.0,2.481277244122466,50.49168795976885,137.53813705406006,192.6139655951725,fqhc5_100Compliance_implementation_low_initial_treat_cost,31 -100000,95712,48316,461.99013707790033,4746,48.35339351387496,3840,39.545720494817786,1502,15.337679705784018,77.36002699221102,79.73236763249264,63.33690834044432,65.08883789947075,77.16398024927024,79.5403217793322,63.26189692522693,65.01804821947604,0.1960467429407799,192.0458531604368,0.0750114152173964,70.78967999470365,232.11012,163.2324835010406,242508.9017051153,170545.47340045197,539.03854,362.6980352675489,562636.6495319292,378395.90152493824,481.89519,236.24673507563293,500063.6179371448,244179.72916828343,2493.93853,1174.683687010198,2568494.849130725,1190210.6082747618,914.56887,412.5651791207896,940238.6012203275,415784.6300534645,1461.0619,630.0784787673291,1492679.0997993983,627609.6449005359,0.37968,100000,0,1055046,11023.13189568706,0,0.0,0,0.0,46971,490.1788699431628,0,0.0,43432,450.3928452022735,1109631,0,39879,0,0,0,0,0,102,1.0656970912738215,0,0.0,0,0.0,0,0.0,0.04746,0.125,0.3164770332911926,0.01502,0.3667476711219117,0.6332523288780882,23.18257098935917,4.120495415295185,0.30859375,0.2630208333333333,0.2158854166666666,0.2125,11.171632314739131,6.09830950711944,16.107475854217185,11293.705661425878,43.8836776053342,12.38449905441796,13.45919484206693,9.088303896916477,8.951679811932834,0.57578125,0.7782178217821782,0.7240506329113924,0.5657418576598311,0.1200980392156862,0.7435233160621761,0.9176755447941888,0.8923512747875354,0.734375,0.13,0.5033557046979866,0.6817420435510888,0.6526442307692307,0.5149136577708007,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498192057205,0.0043588885847803,0.0065250702738905,0.0089091610963245,0.0111172138817689,0.0132072013359944,0.015565749235474,0.0177488824021719,0.0198108867876309,0.0218370564507872,0.0241341836002378,0.0260256252309966,0.0278374793044229,0.0298807243062851,0.0319648366161433,0.033829611248966,0.0359584783689706,0.037937763384609,0.0399421670705957,0.041797359398935,0.0570142457283703,0.0704633709793906,0.0833718002517834,0.096122090516108,0.107993842780027,0.1236507416295763,0.1349401680386998,0.1448291275982077,0.153743458293282,0.1631945934348852,0.1756270470608515,0.1866389619384652,0.1971434472113827,0.2068611159699143,0.2151396174953534,0.2252026757630797,0.2326364873608353,0.2407884232659073,0.2482513122243761,0.2539642558648088,0.2603663190027983,0.2656359556864395,0.2707569702272566,0.2745076913868438,0.2781898299323856,0.2822918205544886,0.2863877357074976,0.2894125119085424,0.2919575898629428,0.2953302315772825,0.2930714381810843,0.2900679373985752,0.2869316581215843,0.2844158659056426,0.2823291860913977,0.2793755638120575,0.276188672096988,0.2760109227071308,0.2767261337328067,0.2781066140528626,0.2784751105059962,0.2787542762769848,0.2801089578308242,0.2799103576817254,0.281323820659047,0.2826013819518128,0.2849736528981812,0.2896771971570807,0.2936081033880545,0.2983526057341992,0.3024133072762805,0.3056569825898291,0.3074231442139465,0.310612922705314,0.3163993696115695,0.3256494266323426,0.333383640205252,0.3352635782747604,0.338139281828074,0.331560957083175,0.0,2.2945237292882967,50.2197232951726,137.79391269074674,198.1586722227552,fqhc5_100Compliance_implementation_low_initial_treat_cost,32 -100000,95756,48115,459.8458582229834,4686,47.74635531977109,3685,37.92973808429759,1386,14.119219683361878,77.33346816806463,79.69530497493322,63.32120940122799,65.07021392042738,77.15337438630304,79.5188135237162,63.25380733172567,65.006501738723,0.1800937817615846,176.49145121701793,0.0674020695023216,63.71218170437487,233.233,164.07740364115787,243569.4264589164,171348.86499769628,542.54086,365.0938936865119,566037.8775220352,380728.2018142816,479.13039,234.4247746410615,497045.1459960734,242312.22443912996,2394.28981,1124.1673135796575,2464323.6664021057,1138518.2031240235,863.63982,397.99995892911136,887007.7801913196,401047.1051864704,1351.39058,574.494673676816,1377707.2559421863,571056.7537527917,0.37852,100000,0,1060150,11071.337566314382,0,0.0,0,0.0,47338,493.7758469443168,0,0.0,43269,448.53586198253896,1102799,0,39530,0,0,0,0,0,95,0.9921049333723212,0,0.0,2,0.0208864196499436,0,0.0,0.04686,0.1237979499101764,0.2957746478873239,0.01386,0.3546606704824203,0.6453393295175798,23.20780282351438,4.200201297801922,0.3248303934871099,0.2667571234735413,0.1997286295793758,0.2086838534599728,11.416622231062371,6.095350663372343,14.827438408218134,11242.53955223418,42.34635593582562,12.26017957233845,13.516481982333952,8.271172155760077,8.298522225393144,0.5937584803256445,0.8341810783316378,0.7017543859649122,0.5760869565217391,0.1352405721716515,0.7711941659070192,0.9377880184331796,0.8662613981762918,0.6793478260869565,0.1933333333333333,0.51854714064915,0.7522768670309654,0.6394009216589862,0.5416666666666666,0.1211631663974151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002350676326055,0.0047154504522776,0.0068611331019223,0.0091751508870328,0.0113504607310673,0.013511999918541,0.0155874077396729,0.0177685697372986,0.0199807857405666,0.0219360650200116,0.0240509313841075,0.026128022175453,0.0281160016454134,0.0300212156790047,0.0318806487557261,0.0338718513235552,0.0360962982138234,0.0379259535964803,0.0399530086913128,0.0418372129354788,0.0561696886188791,0.0707901622187336,0.0838256125072136,0.0960834630432039,0.1079123034578759,0.123339959397733,0.1338135755055274,0.143939635814097,0.1543176915354877,0.1632191303415366,0.1751596816061869,0.1864790012333124,0.1964831388583794,0.2051949472302728,0.2147013209850743,0.2235053144375553,0.2320003571468431,0.2399392473420712,0.2474642038621253,0.2537655084008607,0.259381285981827,0.2655859183244115,0.2707032727960651,0.2749485227218312,0.2784945193520225,0.2828652928736536,0.2867079597392542,0.2893921698065302,0.2922045199054153,0.2946749772688339,0.2907442773757969,0.2874006561157399,0.2842489813123507,0.2811012720297672,0.2788932056110798,0.2759622589573807,0.2727746788236967,0.2724146401375583,0.2724360612721294,0.2731075980915758,0.2741881298992161,0.2758613904248411,0.2773310557453545,0.2784041630529054,0.2791248773248438,0.2788903607885919,0.2792881998472289,0.2832677042315145,0.2878793169675595,0.2930763178599528,0.2983405483405483,0.3009948939306206,0.302704728590168,0.3067786351944318,0.3101159311892296,0.3114227980506359,0.313635669567873,0.3132481233515926,0.3134535367545076,0.3155878973573343,0.0,2.022173433437191,47.6572880088942,142.26075251794472,182.61883624994715,fqhc5_100Compliance_implementation_low_initial_treat_cost,33 -100000,95803,48889,467.0834942538334,4775,48.66235921630847,3790,39.03844347254262,1431,14.57156874001858,77.34149214859087,79.68170641218533,63.33904717832892,65.07295898515977,77.15850200901306,79.50232582806365,63.27016364053768,65.00809764499469,0.1829901395778108,179.380584121688,0.068883537791244,64.8613401650806,232.03004,163.2645251247979,242194.96257945997,170416.92339989136,543.02027,366.8725882559416,566312.704195067,382448.2304895897,489.6764,240.1307131677709,508267.9769944574,248436.89731418624,2449.52052,1155.4486912422562,2523749.809504921,1172986.4422223268,865.11545,396.7207758661264,889070.8850453536,400156.47303959774,1386.52692,590.7654158509685,1413261.213114412,586956.0280357747,0.38289,100000,0,1054682,11008.861935429995,0,0.0,0,0.0,47272,492.8968821435655,0,0.0,44310,459.6098243270044,1106082,0,39699,0,0,0,0,0,94,0.9811801300585576,0,0.0,2,0.0208761729799693,0,0.0,0.04775,0.1247094465773459,0.2996858638743455,0.01431,0.3610722144428885,0.6389277855571114,23.501382452442563,4.073628659118024,0.3313984168865435,0.2696569920844327,0.2005277044854881,0.1984168865435356,11.602192509401066,6.537422347781964,15.288742588469846,11368.717100084628,43.532342908411295,12.429542704508233,14.35553454680781,8.460793923540937,8.286471733554306,0.595778364116095,0.8043052837573386,0.7093949044585988,0.5947368421052631,0.1236702127659574,0.7797202797202797,0.9343065693430656,0.8861788617886179,0.7835051546391752,0.1705882352941176,0.5162509448223734,0.7168576104746317,0.6358511837655016,0.5300353356890459,0.1099656357388316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982029437685,0.0044808045172997,0.0066670049216094,0.0089318375807828,0.0114564786081294,0.0137820741359464,0.0160125652741514,0.0179109354736594,0.0200014315953084,0.0220972977400956,0.0241774241507654,0.0263293011028732,0.0284709222192507,0.0306782594362947,0.032513026879224,0.0344820457693341,0.036594079090429,0.0388182327434179,0.0405985348365979,0.0423607062546847,0.056719532554257,0.0708198709704403,0.0848232063884638,0.0973959099602766,0.1094670502808603,0.1255721035441352,0.1363617088943072,0.1462677996022673,0.1562466648167517,0.1657878378668038,0.1770226781043817,0.1882276633695476,0.1984226135511836,0.2082741438468431,0.2163846838824577,0.2255365305648098,0.2338979273456652,0.2419123094537862,0.2497141498647164,0.2557682418147534,0.2616813801857942,0.2665686549052553,0.2717974157276829,0.2760348766281142,0.280458683346061,0.2842088436377945,0.288103857196355,0.2917972069660954,0.295135707187383,0.2979126137020874,0.2956153897804338,0.2928827234182686,0.2898047539393598,0.2869418532562465,0.2843500696936445,0.280543677458766,0.2769906332432987,0.2779816513761468,0.2775390491780915,0.2782648987738808,0.2784668050956844,0.2788334418595473,0.2800326202873094,0.2802756590392078,0.2813632545301812,0.2833961773501495,0.2840429174751741,0.2879246234322808,0.2931749490405567,0.2965019433647973,0.298980850966592,0.3013188683258881,0.3058080808080808,0.308898921111026,0.3127238454288407,0.3141907925961082,0.3165534280420012,0.3202868852459016,0.3248053392658509,0.3258298359404807,0.0,2.082387223491472,49.756910939077954,138.9145777467636,194.63600773662347,fqhc5_100Compliance_implementation_low_initial_treat_cost,34 -100000,95709,48159,459.5492586904053,4863,49.640054749292126,3885,40.07982530378544,1440,14.700811835877504,77.3419109081298,79.71038733764948,63.33255108723839,65.0809473766848,77.15847338718584,79.53042422366569,63.26317614650424,65.01534526088076,0.1834375209439684,179.9631139837885,0.0693749407341428,65.6021158040403,232.96262,163.88151546561278,243407.22398102583,171228.949697116,544.88862,366.9755054945737,568785.5269619367,382899.8824415589,484.70493,237.3709446582922,503674.3566435758,245864.99214478777,2534.26526,1173.307815762444,2615648.946285093,1193947.7705972844,896.27372,407.9176299675583,922056.5255096178,411840.9417697664,1402.58126,598.2597210787244,1433050.3923350992,597341.1717742638,0.37834,100000,0,1058921,11063.964726410264,0,0.0,0,0.0,47449,495.21988527724665,0,0.0,43760,454.3564346090754,1101258,0,39495,0,0,0,0,0,102,1.0657304955646805,0,0.0,0,0.0,0,0.0,0.04863,0.1285351799968282,0.2961135101789019,0.0144,0.3514364423455332,0.6485635576544667,23.363508454759533,4.097655911025843,0.3073359073359073,0.2707850707850708,0.2149292149292149,0.2069498069498069,11.183896940958933,5.969323945671386,15.352363247689985,11247.35491803108,44.17136760599583,12.853442565332694,13.43056798784422,9.15250816008614,8.734848892732778,0.5763191763191763,0.80893536121673,0.6909547738693468,0.5724550898203593,0.1057213930348258,0.7685352622061483,0.9205607476635514,0.8909657320872274,0.7512953367875648,0.1524390243902439,0.4998200791651673,0.7323717948717948,0.6174112256586484,0.5186915887850467,0.09375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022379293583927,0.0047430830039525,0.0067863664029214,0.0093950597221093,0.0114288038394273,0.0135721267410605,0.0156579711917795,0.0179635829182657,0.0201042518397383,0.0224241865987083,0.0246232701178882,0.0269537627452792,0.0289686661250681,0.0310622997434655,0.0332593777410866,0.0351268930583553,0.0372936473414942,0.0391456858797401,0.0408642848230254,0.0429041872485879,0.0574018757963779,0.071234167277295,0.0839287775294574,0.0960925585064422,0.1086358026644726,0.1241032694952915,0.1348320566954529,0.1450426376808508,0.1550698161383716,0.163893448338751,0.1751394782758546,0.1862858627071135,0.196821529190371,0.2053976620337463,0.2143524883145449,0.2237092631951824,0.2317358726194193,0.2390590932590078,0.2470944406018618,0.2537120501498547,0.2599285491311435,0.2645889369664366,0.2703895151464969,0.2739934372829393,0.2768194233687405,0.2807821683362289,0.2845573232860594,0.2876811594202899,0.2909109725492225,0.2938985058908708,0.2908198924731183,0.2871826540414436,0.2842746463058612,0.2817250115154306,0.2781938195595548,0.2747197437657286,0.2718318072213204,0.2717506826468712,0.2720107585455535,0.2736120996441281,0.2746042413381123,0.2744924282704161,0.27605309919515,0.2767556477331014,0.2776939112932212,0.278870607774952,0.279300754866905,0.2842213948249429,0.2899580125962211,0.2924569392199564,0.2956604457329226,0.2986463620981388,0.3025252208785011,0.306517775752051,0.3079305490380103,0.3106176922168419,0.3095890410958904,0.3187461835945451,0.3186874304783092,0.3197563760944042,0.0,1.9520366224551848,48.18913334028257,143.7870676642946,204.52685367340692,fqhc5_100Compliance_implementation_low_initial_treat_cost,35 -100000,95711,48184,459.8217550751742,4857,49.398710702009176,3881,39.97450658753957,1497,15.254254996813325,77.33810060160408,79.72024221682986,63.31256206328344,65.07480171681594,77.1360137843569,79.52322761286392,63.23551868790237,65.00251685875438,0.2020868172471779,197.01460396593973,0.0770433753810664,72.2848580615647,231.00264,162.5217971389826,241354.3270888404,169804.7216505758,538.10413,362.592306721035,561663.2675450053,378286.416694859,484.14265,237.38000079034285,502687.44449436327,245562.7794219824,2529.89082,1202.812611428294,2606951.8028230816,1220405.2080273554,895.75574,412.2110016226056,920327.4649726782,415214.21915083553,1451.93544,628.7714723294515,1480946.8086217884,624391.5972731791,0.37853,100000,0,1050012,10970.651231310923,0,0.0,0,0.0,46837,488.773495209537,0,0.0,43782,454.3573883879596,1113151,0,39965,0,0,0,0,0,90,0.9298826676139628,0,0.0,2,0.020896239721662,0,0.0,0.04857,0.1283121549150661,0.3082149474984558,0.01497,0.3545777426992896,0.6454222573007103,23.29302311316656,4.07388753857247,0.3027570213862406,0.2764751352744138,0.2195310486987889,0.2012367946405565,11.26251857640042,6.059338724541675,16.116469001767467,11278.96480287074,44.721053658308016,13.260834174234914,13.30886858983325,9.619427403314443,8.531923490925411,0.5934037619170317,0.8136067101584343,0.708936170212766,0.5868544600938967,0.1241997439180537,0.7692307692307693,0.9202733485193622,0.9006024096385542,0.7415254237288136,0.1818181818181818,0.5163083765752409,0.7397476340694006,0.6334519572953736,0.5275974025974026,0.1074380165289256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025541748596217,0.0048792858592006,0.007046114484131,0.0090452669878244,0.0111516976831737,0.0132818627201336,0.0154723293148114,0.0175472642405548,0.019788311090658,0.0219935493779757,0.024272193111086,0.0261944612730651,0.0283472824857595,0.0305645377216649,0.0327325995234017,0.0346292162698412,0.0365174356000993,0.0387612180318514,0.0405767871252131,0.0427526720420026,0.057241026390818,0.0716252289976445,0.0848889308611662,0.0978931978584876,0.1102755834924117,0.1251692620176032,0.1361808245344086,0.1457918446022939,0.1544931811380445,0.163739364612727,0.1753194974246244,0.1866777829509403,0.1965382103200522,0.2054194847549631,0.2140694999394599,0.2240054976114208,0.2322641172265904,0.2399342645850452,0.2467351064071407,0.2532151945164027,0.2592202318229715,0.2647310191418369,0.2699572492687375,0.2749991010751141,0.2786445043862847,0.2829543912458826,0.2863316922845654,0.2894173693730416,0.29253286704229,0.294088936377907,0.2906124315671953,0.2870165404023044,0.2853303313867586,0.2823712723442932,0.2807715133531157,0.2777157368171457,0.2741606761987519,0.2734624388167695,0.2741108100277792,0.2748713932252265,0.2755353739208431,0.2768627605500611,0.2776117531504044,0.2782142857142857,0.2803650998993819,0.2814996767937944,0.283505737380589,0.2867844434733754,0.2918202684843848,0.2978581515769653,0.3005826983415509,0.3037895396179141,0.3065103363159518,0.3090381179273377,0.3116155118544385,0.3165969316596931,0.3188794516465504,0.3221238938053097,0.3233564938535542,0.3254945875326614,0.0,2.221975759415162,51.4400480993227,145.49870816793378,194.17234905438423,fqhc5_100Compliance_implementation_low_initial_treat_cost,36 -100000,95661,48070,459.1526327343431,4816,49.29908740238969,3814,39.389092733715934,1477,15.126331524863842,77.27782633283482,79.68774667683599,63.2892740309558,65.0718235632016,77.08559341578587,79.49767704502797,63.21733433022821,65.00258709083592,0.1922329170489547,190.06963180801503,0.071939700727583,69.23647236568797,230.8779,162.38587437216907,241350.0799698937,169751.3870565529,539.68892,363.8746389345296,563719.2377248827,379930.3571304186,480.97148,235.0271771533419,500069.2131589676,243549.5592667668,2468.39543,1152.5315108765928,2550996.8116578334,1175447.82186742,889.04384,399.8990763185531,918250.4155298398,406918.98089979537,1433.84094,607.7519383566536,1470162.4695539458,611368.3723657422,0.37899,100000,0,1049445,10970.458180449712,0,0.0,0,0.0,47023,491.0778687239314,0,0.0,43523,452.20100145304775,1111299,0,39933,0,0,0,0,0,90,0.9408222786715588,0,0.0,1,0.0104535808741284,0,0.0,0.04816,0.1270745929971767,0.3066860465116279,0.01477,0.3486658701712465,0.6513341298287535,23.18505433198005,4.046435638775934,0.3028316727844782,0.2787100157315155,0.2147351861562663,0.2037231253277399,11.340478893936911,6.167664867538517,15.710988372047964,11295.904731107456,43.68255772338621,12.961693398584613,13.082214939614971,9.065217087511648,8.57343229767498,0.5833770319874148,0.8043273753527752,0.6883116883116883,0.5873015873015873,0.1209781209781209,0.7350579839429081,0.8988505747126436,0.8584905660377359,0.7105263157894737,0.1404494382022472,0.5202376531748979,0.7388535031847133,0.6236559139784946,0.5500794912559619,0.1151919866444073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0043607009573259,0.0064767628367815,0.0087807555108387,0.0108957729284297,0.0130398019580077,0.0152371239163692,0.0173736300775225,0.0195065567398375,0.0216654203501295,0.0241435897435897,0.0259876327629065,0.0278749588409614,0.0298682827283408,0.031932686351435,0.0342755489362582,0.0364437075799181,0.038386858964375,0.0402805381837858,0.0425290112708656,0.0572634746807665,0.0709513237265415,0.0837347943365135,0.0965433787551954,0.1081859620985101,0.1244297674615523,0.1348688052838924,0.1441431843605177,0.1543784223134839,0.1633584180524095,0.1750387897595035,0.1861026601561231,0.1978667827601219,0.2075217752877839,0.2152394791013066,0.2248999988919544,0.2330940392323237,0.2407376154633723,0.2476881006683232,0.2547641665999016,0.2602034917331483,0.2653905483101949,0.270512835672646,0.2743946999556732,0.2791211727412949,0.2821834050369201,0.2851243289241512,0.2880277837851591,0.2923116782175011,0.2956871537852809,0.2928133629689499,0.2901897033904143,0.2880856345020167,0.2860220339473152,0.283879216782385,0.2801746591083193,0.2765482169167155,0.2768768176664859,0.2768789188635082,0.2770460791662205,0.2776249555568031,0.2786334913112164,0.2799506658026214,0.2817855630585456,0.2840195561520395,0.2838724739941373,0.2839208112023177,0.2877026517531733,0.2916622635527845,0.2944643568299482,0.3003101623791279,0.3032826006257623,0.3078952327115131,0.3091477836270695,0.3123416236508681,0.3152135125490662,0.3162576687116564,0.3132036847492323,0.3133333333333333,0.3214013709063214,0.0,1.9071773181912817,49.03756311736881,140.5908911849894,198.47043785737023,fqhc5_100Compliance_implementation_low_initial_treat_cost,37 -100000,95821,48426,462.7795577169932,4822,49.15415201260684,3829,39.40681061562706,1457,14.80886235793824,77.39792083527668,79.70134555393813,63.37134666233783,65.07167081222931,77.20608284747568,79.5144326917899,63.29808715375619,65.00285457906745,0.1918379878009943,186.912862148219,0.0732595085816356,68.81623316186847,233.1384,163.91077533101753,243306.1646194467,171059.34537420562,543.30588,366.35169121555015,566427.2132413563,381755.5976409661,486.22198,238.6095332376395,504074.9313824736,246399.51923791663,2471.12154,1174.2212090001128,2542851.566984273,1189390.080462647,851.62525,391.0807856476288,873475.720353576,392863.23992465,1409.65832,612.5230217654276,1433744.7741100593,607102.9812170976,0.37961,100000,0,1059720,11059.371119065758,0,0.0,0,0.0,47381,493.8792122812328,0,0.0,43999,455.8290980056564,1102823,0,39550,0,0,0,0,0,91,0.9496874380355036,0,0.0,1,0.0104361256926978,0,0.0,0.04822,0.1270251047127314,0.3021567814184985,0.01457,0.3645791783007578,0.6354208216992421,23.152459718843797,3.961987115820834,0.3133977539827631,0.2885870984591277,0.2047531992687385,0.1932619482893706,11.323135085849016,6.214205319758139,15.85447268246146,11241.703033397049,44.15177899035002,13.548043492941556,13.60678111205791,8.817544850199921,8.17940953515064,0.5870984591277096,0.8081447963800905,0.6766666666666666,0.5956632653061225,0.1027027027027027,0.7435254803675856,0.90020366598778,0.845679012345679,0.7463414634146341,0.1186440677966101,0.5159574468085106,0.7345276872964169,0.6141552511415526,0.542314335060449,0.0976909413854351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023487486838908,0.0046307085896097,0.0065317713880014,0.0085801610430226,0.0106538711776187,0.0128635688261993,0.01504962197632,0.0171792909971945,0.0192596528153832,0.0212602694877277,0.0233287229137851,0.025432423005109,0.0274518667680358,0.029379984563931,0.0316529411158409,0.0337418562150888,0.036116283881647,0.0381111306889439,0.040041952668252,0.0418184467434066,0.0566346755685374,0.0706022634562684,0.082785449893569,0.0953602556958565,0.1075810599991567,0.1225262178619756,0.1329473639563982,0.1436128318113119,0.1533366805183151,0.1616864730361663,0.1738549844387727,0.1854227279118312,0.1960865311446896,0.2048016267806579,0.2140972069496371,0.2240205466561867,0.2328980966292385,0.2409641263167362,0.2483335600598558,0.2556285178236397,0.2610042537451452,0.2665007826919932,0.2709850562754185,0.2752007083118965,0.2791667171613122,0.282940684635058,0.2869982025164769,0.28964265773311,0.2932184115989972,0.2955236053195827,0.2922936616507068,0.2893892878679897,0.2862454574791991,0.2830362409541485,0.2795910516659762,0.2757338939414713,0.2717550518971193,0.2725490836627356,0.2732110372498682,0.2726561666725922,0.2733593036476487,0.2737152402476172,0.275039580034997,0.2772248569456504,0.2783663295144049,0.2806229720960415,0.2824014795845782,0.2877293289771299,0.2906688109638849,0.2931980577158422,0.2959800136270724,0.3013734952537519,0.3050176056338028,0.3083118067163045,0.3093606234156417,0.3124041071639324,0.3142857142857143,0.3175364927014597,0.3272335844994617,0.3327095808383233,0.0,2.1205224591264686,52.08446985891622,140.67192021362408,190.44543199891703,fqhc5_100Compliance_implementation_low_initial_treat_cost,38 -100000,95553,48204,460.8855818237,4708,48.0466338053227,3778,38.97313532803784,1432,14.620158446097978,77.19945181010942,79.66906598277171,63.224607941291474,65.05295540713361,77.01846667298595,79.49073939069987,63.156662494380726,64.98809660478922,0.1809851371234714,178.32659207184065,0.0679454469107483,64.85880234438923,232.3321,163.41978889681928,243144.516655678,171025.07310995922,541.82248,364.94195940958286,566452.5446610781,381340.9059179961,480.03193,234.55207781603917,498113.7379255492,242297.33645529684,2447.52865,1139.256464687356,2528895.9216351137,1159826.7504858302,874.00497,389.0418663534979,900759.5679884462,393318.9579605684,1388.28888,581.8566523937677,1420007.0746078093,583333.4146318668,0.37948,100000,0,1056055,11052.023484349,0,0.0,0,0.0,47238,493.7573911860434,0,0.0,43345,449.467834604879,1099079,0,39448,0,0,0,0,0,101,1.0465396167571923,0,0.0,0,0.0,0,0.0,0.04708,0.1240645093285548,0.3041631265930331,0.01432,0.3623983739837398,0.6376016260162601,23.30240279208177,4.079659411662391,0.3210693488618316,0.2731604023292747,0.2077818951826363,0.1979883536262572,11.585157393879506,6.348545029395452,15.116252639401054,11327.34966279702,43.329504427542965,12.56735528331097,13.92949175098104,8.77950545349192,8.053151939759033,0.594494441503441,0.8091085271317829,0.7164056059356966,0.5707006369426751,0.1256684491978609,0.7598920863309353,0.9130434782608696,0.8767908309455588,0.7091836734693877,0.1437908496732026,0.5255063765941486,0.7394822006472492,0.6516203703703703,0.5246179966044142,0.1210084033613445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025037759373954,0.0048091556583673,0.0069055162888943,0.0090694647795672,0.0113206010506169,0.0134967073742583,0.0156146348930958,0.0179644389944819,0.0202722063037249,0.0224228573770995,0.0243489329377829,0.0264978972371032,0.0285269976622279,0.0306990850104702,0.0328314404704083,0.0349457078679598,0.0370650764843142,0.0391910289853566,0.0410807657854717,0.0428841355840197,0.0570902586738909,0.0714398062222781,0.0857220943310943,0.0978778555171541,0.1101528315048512,0.1255141851490606,0.1353481840811897,0.1453940066592675,0.1552281979858581,0.1641287047791113,0.1755888419711221,0.1866671007509658,0.1966664121387976,0.2060455831706407,0.2143527152741759,0.224164741425271,0.2328872876994338,0.2410132009477603,0.2487456909792143,0.2551696423445663,0.2610016230002318,0.2656266482260692,0.2706579727326615,0.2743532801152392,0.2788467389584626,0.282900991443705,0.2872053491902199,0.2909811517924275,0.2939887166850399,0.2960863590719306,0.2932696845881036,0.2905815763017641,0.2882521167039995,0.2859434384889955,0.2837749427543343,0.2801078811468501,0.2752418499342928,0.275043922302678,0.2748316066605122,0.2751349226205368,0.2756033981583932,0.2762158956109134,0.2787900415634577,0.2801923722178727,0.2818988955992397,0.2830208360497562,0.2837679920193815,0.2885556531559794,0.2929384965831435,0.2954957797586179,0.2975649277580231,0.3030525542851148,0.3069700926444071,0.3120711754505014,0.3185439051500556,0.3246539995308468,0.3312800480769231,0.3343867272368161,0.3368336025848142,0.3387278885961611,0.0,2.1470505699664,48.50668268232483,139.9505022790695,195.54568847071937,fqhc5_100Compliance_implementation_low_initial_treat_cost,39 -100000,95683,48433,463.0080578577176,4928,50.29106528850475,3937,40.59237273078812,1475,15.049695348180972,77.33990302576841,79.73151510758956,63.32261558699434,65.0894982271666,77.1495212933839,79.5443710671247,63.24959245730323,65.02048048960663,0.1903817323845089,187.1440404648581,0.0730231296911085,69.01773755997453,231.56144,162.7942978263868,242008.96711014496,170139.207410289,542.07191,365.46351234313664,565958.8432636936,381382.2751618749,490.30589,240.6588046041684,509528.1502461253,249296.4274914273,2545.88517,1208.9618133102504,2622442.659615606,1225200.352528924,903.39173,411.7320917756896,929334.531735,415492.3254660593,1431.3884,615.1980938891634,1460879.7174001653,611525.1832555035,0.38037,100000,0,1052552,11000.40759591568,0,0.0,0,0.0,47248,493.2119603273308,0,0.0,44275,459.7995464189041,1109617,0,39856,0,0,0,0,0,86,0.8883500726356823,0,0.0,1,0.0104511773251256,0,0.0,0.04928,0.1295580618871099,0.2993100649350649,0.01475,0.3680731090803033,0.6319268909196967,22.98389145276209,4.0777359152243005,0.2997205994411989,0.2895605791211582,0.2136144272288544,0.1971043942087884,11.271682273268771,6.056918501485145,15.81910859188597,11332.71074389267,45.27085499676733,14.076009202860822,13.315017306295948,9.437320794945803,8.44250769266476,0.5928371856743714,0.8254385964912281,0.6949152542372882,0.5909631391200951,0.0979381443298969,0.7619848612279226,0.9233954451345756,0.8525073746312685,0.7632850241545893,0.08125,0.519650655021834,0.7534246575342466,0.6313912009512486,0.5347003154574133,0.1022727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002400486174415,0.0044701231564543,0.0066260108979107,0.0088774225003047,0.0110023082476637,0.013131374824406,0.0151873445590573,0.0171776761655915,0.0194533038927052,0.0216688161477205,0.0236711261469065,0.0259294996817836,0.028031424810793,0.030200962063389,0.0324388481783465,0.0343372933403641,0.0362615389397126,0.0382092216986028,0.0402288686605981,0.0421892103205629,0.0570389870878776,0.0708056326231481,0.0846596930050046,0.0974193344765551,0.1091699371228425,0.1243387362986161,0.1352948666256392,0.144844839516687,0.1547015029000523,0.1638053979862101,0.1755956227650683,0.1866640696013504,0.1981989820333231,0.2071834681828121,0.2152141135555726,0.225448826571862,0.2340793466619064,0.2417513190014961,0.2483637889769853,0.2550012023497349,0.2606619177575281,0.2662786212700305,0.2712092902249237,0.2754240838949876,0.2797423362003081,0.2828602378197395,0.2866855807326492,0.2898758781903878,0.2938680465717982,0.2965330872660163,0.2938541021984232,0.2913895454295608,0.289672154214155,0.2863971809424779,0.2836044647628095,0.2803641251221896,0.2769624088627971,0.2772086020097541,0.2772043193605986,0.2777057392045757,0.2794287631902755,0.2803201636217035,0.2805314895034988,0.2805864396960852,0.2818582797967207,0.2843977154724818,0.2855196685020151,0.290342796264962,0.294023068857043,0.3003383429066016,0.3054302724156594,0.3082920661679486,0.3125428375599726,0.3161820099442519,0.3212896053362979,0.3253420652555256,0.3283378746594005,0.3318530480419863,0.3291976840363937,0.3232477977786289,0.0,2.1809926357310148,51.50415573882471,148.5890737891277,197.58810394350755,fqhc5_100Compliance_implementation_low_initial_treat_cost,40 -100000,95775,48772,464.7454972592012,4873,49.61628817541112,3876,39.780736100234925,1433,14.513181936831112,77.331780499572,79.67047507632421,63.32970022966426,65.06193811870341,77.1379669104688,79.4843952834592,63.25508092947877,64.99334510252476,0.1938135891032004,186.07979286501572,0.0746193001854891,68.59301617865299,231.26246,162.76437988684674,241464.32785173584,169944.53655635266,545.49402,368.324076376692,568869.6632732968,383884.9300923052,493.38501,242.6184602841768,511153.54737666406,250313.13982551865,2496.03611,1180.9811693644074,2563162.255285826,1190158.060344966,865.04394,401.6987136803617,885677.6925084834,401937.38901204034,1387.3866,603.1859469475049,1406365.0221874183,592835.231624125,0.3828,100000,0,1051193,10975.651265987992,0,0.0,0,0.0,47462,494.8368572174367,0,0.0,44546,461.0597755155312,1105120,0,39709,0,0,0,0,0,98,1.0232315322370138,0,0.0,2,0.0208822761681023,0,0.0,0.04873,0.1272988505747126,0.2940693617894521,0.01433,0.3624704025256511,0.6375295974743489,23.147485804064814,3.951155962750829,0.3222394220846233,0.2907636738906088,0.1945304437564499,0.1924664602683178,11.195866480068853,6.15270647352843,15.40372598993044,11382.164908957928,44.41480513287119,13.787124058331324,14.123680396960223,8.333810260260138,8.170190417319505,0.5915892672858617,0.8251996450754214,0.6925540432345877,0.5636604774535809,0.0978552278820375,0.7624356775300172,0.9353448275862069,0.8425655976676385,0.7202072538860104,0.1626506024096385,0.5180811808118081,0.7481146304675717,0.6357615894039735,0.5098039215686274,0.0793103448275862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002218283109648,0.0044807590933052,0.0068901133469309,0.009000772075257,0.0114213068904144,0.0136152099308546,0.0157725168736363,0.0178345379558169,0.0198421622947803,0.0220302198927152,0.0242857289306693,0.0264906102081258,0.0288525803831244,0.0307893571215195,0.0330054802720526,0.035304820684593,0.0376883641447879,0.0399211740911683,0.0418693103878289,0.0436602559430219,0.0583551608628048,0.0724686192468619,0.0860554344179805,0.0990121899957965,0.1114026491322353,0.1265521796565389,0.1366194943552234,0.1465596086355418,0.1556219648860665,0.1646737383477981,0.176109023972787,0.1873938581024803,0.1973180493322312,0.2060399894994749,0.2158613098514034,0.2247498531807151,0.2326258703802892,0.2407401158540014,0.2476325489084207,0.2547140649149922,0.2606433411187938,0.2660658765224303,0.2710009465215334,0.2758025667757127,0.2801904206742446,0.2844270781974164,0.288196487362768,0.2925459431234956,0.2959872504178598,0.2983794341216216,0.2960177586438853,0.293163590419688,0.2900482195324251,0.2867720285776142,0.2838363156176741,0.2805234560342848,0.2773460375745873,0.2772309711286089,0.2779647121116368,0.2787615348986354,0.2792728768865366,0.2804695501457496,0.280851419729854,0.2824119482835488,0.2833233281306279,0.2854579497581526,0.2870691123857118,0.2914151681000781,0.2939106806939315,0.2989503590876805,0.3017268730453701,0.3067189071848361,0.3119757835656177,0.3173734610123119,0.3178112995408976,0.32452206750059,0.3283856159143076,0.3354049719326383,0.3395553115564095,0.3408385093167702,0.0,2.638868333857099,49.878245519426194,143.92518427358743,196.98625087276267,fqhc5_100Compliance_implementation_low_initial_treat_cost,41 -100000,95682,48765,465.4375953679898,4902,50.009406157898034,3909,40.21655065738592,1476,14.976693630985974,77.34192318165195,79.71556236224806,63.32298576779221,65.0741643852601,77.15358924077924,79.53340642522221,63.25290251574396,65.0091562298764,0.1883339408727096,182.1559370258541,0.0700832520482492,65.0081553837083,233.29988,164.05314816829627,243828.3898747936,171456.64614901054,545.43648,367.2942538644703,569428.3146255305,383246.7693656805,489.14904,240.09309567696155,506651.2823728601,247442.56270218268,2542.06429,1191.1429993150734,2619060.721974875,1207174.1699745758,892.2617,407.1058798915784,917990.708806254,410940.4589071902,1438.18142,605.9119933908613,1462687.4438243348,599693.1996755823,0.3835,100000,0,1060454,11083.108630672436,0,0.0,0,0.0,47529,496.1016701155912,0,0.0,44222,457.69319203193913,1096955,0,39392,0,0,0,0,0,83,0.8674567839301017,0,0.0,1,0.0104512865533747,0,0.0,0.04902,0.1278226857887874,0.3011015911872705,0.01476,0.3632453567937438,0.6367546432062561,23.204405074450463,4.132677985959312,0.3179841391660271,0.2673317984139166,0.2113072397032489,0.2033768227168073,11.452229627522597,6.1430425034533,15.731942764435033,11402.373313869495,44.78119433699933,12.778328557607828,14.165379648506551,9.256299749680318,8.581186381204638,0.5743156817600409,0.8086124401913876,0.6838294448913917,0.559322033898305,0.110691823899371,0.7804878048780488,0.9426048565121412,0.883008356545961,0.7201834862385321,0.1698113207547169,0.4841911764705882,0.706081081081081,0.6029411764705882,0.5016447368421053,0.0959119496855346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024300598402235,0.0050171800407455,0.0072836462866591,0.0094561927397566,0.011664446320157,0.0138258231353464,0.0162306547315621,0.0183492796095289,0.0207881712953495,0.0229867403880612,0.0251309866808846,0.026976237908443,0.0288400222162795,0.0309936941021308,0.0330112721417069,0.0351178350206301,0.0369695149110722,0.0390795291773058,0.0410877703826955,0.0432136716511228,0.0586533238624493,0.0724487445289103,0.0859092101810548,0.0981859124102952,0.1107582248295946,0.1258479284618233,0.1366536783207873,0.1468332587716495,0.1568669367337559,0.1664716804945851,0.177839108217081,0.1882918588785654,0.1990596634814218,0.2084906176486678,0.2169348271080492,0.225637787599836,0.2338549456436815,0.2419137011276926,0.2488516892926406,0.2549210457007408,0.2608554838411178,0.267010502186981,0.2734231729392695,0.278436118333553,0.282036648006703,0.286622164199325,0.2900117626448432,0.2935237344387787,0.2962943774528216,0.2996173132752705,0.2962728399719722,0.2927880774634308,0.2895248562732499,0.2864665993363151,0.2835644033653276,0.2799859571999878,0.2761117508794624,0.2760642741314638,0.2758073866930396,0.2761399825644492,0.2766342921180426,0.2774599542334096,0.2784646228385264,0.2787569159378904,0.2803821107067611,0.2810306875566489,0.2816379627272984,0.2855538922155688,0.2914770160870018,0.2944896115627823,0.300292069197933,0.3036473366570454,0.3067408008996064,0.3093471254028933,0.3135875601629026,0.3240579710144927,0.3248957712924359,0.3296486379786814,0.330715059588299,0.328159645232816,0.0,2.533025265071629,51.364145031637406,140.57038075249724,200.82952076584365,fqhc5_100Compliance_implementation_low_initial_treat_cost,42 -100000,95731,48180,460.1121893639469,4815,48.92876915523707,3814,39.18270988499024,1400,14.175136580626964,77.32392886815877,79.6877089653491,63.31606620966248,65.06485823452559,77.14240766714481,79.51342562337867,63.2462501191642,65.00098411293418,0.1815212010139646,174.28334197043682,0.0698160904982856,63.874121591410926,233.0757,163.84200561544986,243469.17926272572,171148.16827373617,539.65247,363.570715401408,563042.0866803856,379111.8410393775,474.74965,233.0521675683293,491956.9522934055,240398.49231915476,2477.58881,1153.7753799645525,2548018.614659828,1165496.4639568296,894.08216,397.486450383973,919678.024882222,401048.7967100439,1363.01418,588.4465048210302,1382106.6530173088,578562.5121057989,0.3797,100000,0,1059435,11066.780875578444,0,0.0,0,0.0,47085,491.1575142848189,0,0.0,42879,443.9836625544495,1103543,0,39640,0,0,0,0,0,87,0.9087965235921488,0,0.0,0,0.0,0,0.0,0.04815,0.1268106399789307,0.2907580477673935,0.014,0.3631141045958795,0.6368858954041204,23.162393734075444,3.997116570198373,0.3085998951232302,0.2831672784478238,0.2003146303093864,0.2079181961195595,11.215055424310416,6.069568233178871,15.066829170791763,11285.345703486684,43.55598088602752,13.05974014853442,13.268059641984136,8.58118380307538,8.646997292433582,0.5755112742527531,0.7953703703703704,0.6924384027187765,0.5759162303664922,0.1021437578814628,0.7470319634703196,0.9221698113207548,0.8853503184713376,0.7158469945355191,0.1034482758620689,0.5064361897756529,0.7134146341463414,0.6222479721900348,0.53184165232358,0.1017770597738287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022587539376259,0.0044814405499396,0.0066068565165323,0.0088195248836594,0.0109655368840786,0.0129837067209775,0.0150072385457659,0.0171792542386722,0.0192824791174636,0.0216445340896292,0.0239398786089238,0.0259864266866535,0.0282627022803446,0.0305209052234731,0.0325370207935607,0.034649934359462,0.0366062087610445,0.03847710783347,0.0403489980345462,0.0422592442096708,0.0566512492299982,0.0708321998786331,0.0835072412093501,0.0960964118958482,0.1080399890325438,0.1236208227988702,0.1349490147809386,0.1455618025385467,0.1546900537318535,0.164045329302156,0.1761273723531374,0.1874601234955068,0.19778881798515,0.2065926857267807,0.2149259312210626,0.2250520441156929,0.2336420441865655,0.2408442939276994,0.2483057677681541,0.2546713437421189,0.2606434123793746,0.2659998125937031,0.271234045578981,0.2748503640441891,0.2789764296660261,0.282465810859137,0.2863656291100394,0.289225361977409,0.2929035100221563,0.2952516769661438,0.2923195063790804,0.2891524817327407,0.2859054729872508,0.2835818738801225,0.2809043808732056,0.2774077242727939,0.2741966033209167,0.2739358657792749,0.2743612874674473,0.2754225990508185,0.2762311435976803,0.2766690284994489,0.2775983160702749,0.2789021840665451,0.2808674445294568,0.2818565838235675,0.2816000905284599,0.2855354572197534,0.2896375594738315,0.2946118649416219,0.298027327843634,0.301877860186208,0.3065893647528209,0.3114087898856111,0.310013076779376,0.3143025309005297,0.3191743942566557,0.3261802575107296,0.3278388278388278,0.320431708224786,0.0,2.522527720884589,47.0979044360594,146.57324434959511,193.93859459947151,fqhc5_100Compliance_implementation_low_initial_treat_cost,43 -100000,95783,48470,462.5142248624495,4781,48.71428123988599,3870,39.725212198406815,1459,14.856498543582893,77.4066300966336,79.74711635378652,63.35719594835807,65.08834785950535,77.21505391011725,79.5595811226903,63.28369862370723,65.01931514373487,0.1915761865163574,187.53523109621997,0.0734973246508374,69.03271577047576,232.45574,163.46884641286022,242689.05755718652,170664.97234622223,545.34048,368.56672281758034,568638.4744683295,384083.0616572388,489.09322,240.1690002396129,506319.01276844536,247430.61107694075,2525.61743,1196.2942884704332,2594482.016641784,1206750.574077522,913.95121,420.03402588345705,936785.108004552,421173.3153432124,1427.42406,618.7046438910969,1455005.0008874226,613224.4210647386,0.38089,100000,0,1056617,11031.320798053934,0,0.0,0,0.0,47466,494.8059676560559,0,0.0,44112,456.23962498564464,1103054,0,39610,0,0,0,0,0,116,1.211070858085464,0,0.0,1,0.0104402660179781,0,0.0,0.04781,0.125521804195437,0.3051662832043506,0.01459,0.3662674650698603,0.6337325349301397,23.05807537263456,4.030492773874225,0.3018087855297157,0.2819121447028423,0.2049095607235142,0.2113695090439276,11.191206434287182,6.011183271113762,15.622358600786953,11354.531140923787,44.36766439598846,13.285560901562569,13.232586534756194,8.833877413634056,9.015639546035636,0.5901808785529715,0.8065994500458296,0.7148972602739726,0.5813366960907944,0.1320293398533007,0.7434154630416313,0.9117647058823528,0.8563049853372434,0.736318407960199,0.1658031088082901,0.5232083178611214,0.7349768875192604,0.656590084643289,0.5287162162162162,0.1216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0044817586339761,0.0065962391288905,0.0090730825112016,0.011269210036513,0.0133907659721797,0.0155482147590791,0.0180268463226662,0.0201050737969663,0.0222583814319047,0.0244942300202922,0.026545312756526,0.0285206273510246,0.0306670784434836,0.0327488635309397,0.0347569286687869,0.0365285938922453,0.0388742030788368,0.0407255802356265,0.0426960677140269,0.05768187320005,0.0717221472719857,0.0846933534584866,0.0974461376773515,0.1099275087453112,0.1257687511887905,0.1363973627864577,0.1465421912215039,0.1556084339920611,0.1642030848329048,0.1751396016913592,0.1866681083418933,0.1977810618738182,0.2063949678941161,0.2144434313585481,0.2243870596565763,0.2328032296917518,0.2402477685095667,0.2478452186536019,0.2545814589700445,0.2605483158539828,0.2659397933903613,0.2714873784570252,0.2753814097190621,0.2798717699630852,0.2843274940251805,0.2877056872927485,0.2913503960534513,0.2950936363518708,0.2979700051442365,0.2949491142103279,0.2923979823247247,0.2898569076864632,0.2863861957525392,0.284257942152679,0.2815513243012327,0.2788155615057489,0.2783153566241861,0.2793136158823728,0.2797976045149762,0.2801384134543831,0.2807863428784226,0.2804293217629596,0.2808448394317502,0.2823966116213772,0.2841831345167856,0.2848013962784674,0.2883553570320739,0.2922917027542006,0.2970932279644771,0.3026711560044893,0.3044204373466938,0.3098782973991474,0.3112301853092208,0.3193184940917835,0.3195947501726917,0.3228382042783971,0.3206692913385827,0.3213123644251627,0.3250094589481649,0.0,2.605339266224152,50.560017897168095,142.0878135998237,196.01981294294103,fqhc5_100Compliance_implementation_low_initial_treat_cost,44 -100000,95682,48701,464.4342718588658,4699,47.67876925649547,3742,38.4502832298656,1449,14.778119186471857,77.29491858535671,79.6950110352198,63.29396199958445,65.07320158531753,77.10533452842768,79.50946535565231,63.22248521520645,65.00568197155673,0.1895840569290356,185.5456795674968,0.0714767843779995,67.51961376080828,232.58994,163.66839429898337,243086.4112372233,171054.52885493965,546.32785,367.88147438758654,570323.4986726866,383824.0780790396,491.23213,241.100028515576,508557.2625990259,248442.82391803432,2458.4004,1158.2959050089005,2530837.5452018143,1172061.0825535627,886.28054,404.23483271338193,910362.9522794256,406577.7982025762,1407.82848,601.2966573927699,1437707.8865408332,601174.9841667116,0.37947,100000,0,1057227,11049.382328964695,0,0.0,0,0.0,47554,496.3002445601053,0,0.0,44278,457.89176647645326,1099907,0,39553,0,0,0,0,0,83,0.8674567839301017,0,0.0,0,0.0,0,0.0,0.04699,0.1238306058449943,0.308363481591828,0.01449,0.3642100977198697,0.6357899022801303,23.250222965285676,4.169368441520364,0.3123997862105825,0.2720470336718332,0.205237840726884,0.2103153393907001,11.362474055542942,6.128490993054365,15.4858100548159,11309.07924864162,42.87497471663003,12.399280619142388,13.245792722657772,8.659350895295228,8.570550479534637,0.5831106360235169,0.8055009823182712,0.7040205303678357,0.578125,0.1207115628970775,0.7477876106194691,0.920863309352518,0.8575757575757575,0.7330097087378641,0.1525423728813559,0.5118683001531393,0.7254575707154742,0.6436233611442194,0.5213523131672598,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022403114134236,0.0043836950896526,0.0068450718529426,0.0093945401860606,0.0117165630057921,0.0139023371010977,0.0161231070655945,0.0183179747042357,0.0205937717395752,0.0228541574898329,0.0249163982520567,0.0269975961044564,0.0289568733985737,0.0311037823353601,0.0333199145325612,0.0353272110531976,0.0375033679454496,0.0395269638889465,0.0415405262008052,0.0436010756947195,0.0574096706464855,0.0712139454535936,0.0842139506574459,0.0970779801550974,0.109978687936528,0.1255528515501005,0.1358787377002197,0.1459571115228178,0.155902718413404,0.1652896995708154,0.1759940534542751,0.1869786764467235,0.197808290662405,0.2063146850854089,0.2142181658236199,0.2240982263457407,0.233717842879136,0.241246230703452,0.2483650483673191,0.2542697324683065,0.2596816208393632,0.2654565881402942,0.2714165650635069,0.2758136857506056,0.2796204500170093,0.2841284720509152,0.2869607671315189,0.2902196167198647,0.2941701252860634,0.2960757709483224,0.2931080826815042,0.289805945159608,0.2863166179446818,0.283741513268851,0.2806960336752238,0.2765401140655342,0.27300336924026,0.2726587217022114,0.2724281378934088,0.272544125512569,0.2728481285224783,0.2724274145763381,0.2744007028406476,0.2759151785714285,0.2770452358036573,0.2786607608129234,0.2803054044044329,0.2836674417143216,0.2882215152256756,0.2927330986194074,0.2971743186058151,0.2995559784332381,0.3024753094136767,0.3075583156619206,0.3100869402636253,0.3125147859001656,0.3168301886792453,0.3187299035369775,0.3156756756756756,0.3174188735546437,0.0,2.493996575959993,48.58957137182115,134.97456143140644,194.02960389553883,fqhc5_100Compliance_implementation_low_initial_treat_cost,45 -100000,95716,48130,459.03506205859,4809,49.04091270007105,3795,39.01124158970288,1424,14.417652221154247,77.3593554540744,79.73321741966276,63.33143217950936,65.08521821582963,77.17923103562376,79.55883751187112,63.262728184608015,65.02167265847604,0.1801244184506458,174.37990779164636,0.0687039949013481,63.54555735359213,231.21604,162.59536963816834,241564.6704835137,169872.71682703865,541.83664,365.0933579755139,565471.1333528355,380817.28026193526,480.89928,235.7463993755765,499071.8479669021,243585.31403764288,2453.4321,1156.4001232919811,2522048.821513645,1166965.0563040476,877.24963,401.51414200997857,898572.3181077354,401544.143100398,1382.80442,597.3573861077664,1401272.786159054,585854.0009811692,0.37874,100000,0,1050982,10980.21229470517,0,0.0,0,0.0,47295,493.4702662041874,0,0.0,43410,450.2695474110912,1112371,0,39855,0,0,0,0,0,80,0.8253583517907143,0,0.0,0,0.0,0,0.0,0.04809,0.1269736494692929,0.2961114576835101,0.01424,0.3581644815256257,0.6418355184743743,23.51652825793822,3.993656830812852,0.3061923583662714,0.2869565217391304,0.2039525691699604,0.2028985507246377,11.170619690865918,6.12051008375781,15.362968870943186,11340.858193313206,43.56350686808357,13.382360170429696,13.161264666008082,8.585795832350604,8.434086199295178,0.5805006587615283,0.8016528925619835,0.6695352839931153,0.6020671834625323,0.1116883116883116,0.75022143489814,0.9127659574468086,0.8453947368421053,0.7486631016042781,0.125,0.5086271567891973,0.7172859450726979,0.6072261072261073,0.555366269165247,0.1079734219269103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890248349066,0.0047239145640516,0.0070321775396511,0.0092421441774491,0.011500564351301,0.0137640363647469,0.016106835210765,0.0182716452646836,0.0203635174091717,0.0226660797100707,0.0247961852022765,0.0269826107499049,0.0288900777809786,0.0309605497686973,0.0329804140094524,0.0350541680449884,0.0369607305179678,0.0388656660685205,0.0409809649551413,0.0429474692971948,0.057340072262484,0.0708282308119027,0.0846778423515095,0.097568670340302,0.1095972750951713,0.1246813147288133,0.1349662000827753,0.1447036402159215,0.1543665042318543,0.1634043740476037,0.1759495716825602,0.1870683496070493,0.1971322265497508,0.2058804219372346,0.214758521945041,0.2248647330140145,0.2331922686110522,0.2415429599640126,0.2489280609814197,0.2553164687424848,0.2606603828138553,0.2658306257450737,0.2710073855243722,0.2749557352730057,0.2804807062647037,0.285034080563006,0.2882985373171646,0.2916910102370005,0.2952917754737958,0.2979883090210121,0.2939818233075136,0.2920222838167897,0.2888053736450197,0.2866237461558359,0.2838201383551114,0.27934168658557,0.2757932140498726,0.2755314986304943,0.275632648211952,0.2754427328003404,0.2765176225001398,0.2773104288690593,0.2784329277201477,0.2793264942016057,0.2799588506902078,0.279852872610475,0.2815083229532329,0.2872074101890099,0.2913528591352859,0.2941893858924426,0.300262158741638,0.3058674679740629,0.3088179876899887,0.3147131794601909,0.3210516571005369,0.3228887594641817,0.3183599638227314,0.3226830720381028,0.3285752760570967,0.3318368873924429,0.0,2.52339379291566,48.60458851318423,143.2701223255454,191.9736522585708,fqhc5_100Compliance_implementation_low_initial_treat_cost,46 -100000,95893,48852,465.69614048992105,4870,49.72208607510454,3850,39.60664490630182,1489,15.194018332933585,77.4394230829848,79.71928906736359,63.39129033748679,65.0772139344758,77.25285269553875,79.53473349246242,63.32222516309566,65.01088065381897,0.1865703874460536,184.55557490116803,0.0690651743911274,66.33328065682065,233.69676,164.43803038713637,243705.75537317636,171480.74456648176,547.14867,368.3944945096132,570058.5548475906,383648.51919286407,489.23827,239.2279783252702,506689.435099538,246812.6929636828,2490.08925,1157.2382606476142,2565722.033933656,1175786.3875857608,907.39804,405.7650095067564,935760.3578989082,412642.8931275032,1449.25842,606.3731402183394,1481421.6679006808,609020.8346125606,0.38271,100000,0,1062258,11077.53433514438,0,0.0,0,0.0,47645,496.2927429530831,0,0.0,44218,457.5829309751494,1098666,0,39478,0,0,0,0,0,88,0.9176895080975672,0,0.0,0,0.0,0,0.0,0.0487,0.1272503984740404,0.3057494866529774,0.01489,0.3673708920187793,0.6326291079812206,23.42145483185046,4.104207222469972,0.3171428571428571,0.2774025974025974,0.202077922077922,0.2033766233766233,11.49652397693392,6.282305824409803,15.844765064177356,11378.296043219254,44.07201531361984,13.066326000111138,13.790386376373313,8.709264898751606,8.506038038383792,0.5883116883116883,0.797752808988764,0.7158067158067158,0.5616966580976864,0.1302681992337164,0.7611548556430446,0.911504424778761,0.8724035608308606,0.6878048780487804,0.1543624161073825,0.5153306243073513,0.7142857142857143,0.6561085972850679,0.5165794066317626,0.1246056782334384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284065600323,0.0047731971300012,0.006796579393177,0.0090670024063601,0.0113327980322603,0.0138275574367635,0.0161344537815126,0.0180232558139534,0.0199419721302766,0.0220851490415106,0.0241705772659275,0.0263897724241242,0.0283823499188194,0.0305117198357061,0.0326298751507778,0.0347679725738832,0.0369653831033127,0.0390952045426285,0.0410601939328502,0.0429336801040312,0.0569876893248412,0.0714576781217674,0.0849615714854139,0.0980556838701549,0.1107111279525072,0.1259052807162011,0.1367733189294527,0.1467263106445374,0.1566430733808041,0.1664134063864395,0.1785180646478979,0.1892610198789974,0.1989355924839795,0.2082828084204546,0.2171618903142828,0.2260652128212788,0.233933505660041,0.2413281978147844,0.2489865247423847,0.2547594560621643,0.2614512628711271,0.2674562427071179,0.2722698603926015,0.2768181818181818,0.2810146843056179,0.2844068297003395,0.2868849387280926,0.2909063221745641,0.2947517913627267,0.2986746607762701,0.2965622776756111,0.2930637422892392,0.28985730921948,0.2870561117913995,0.2844389832264941,0.2805994750015261,0.2764625163640952,0.276297518500972,0.2766377067854532,0.2768774738635758,0.2774641852493526,0.2780418811142105,0.2784343917766033,0.2791331516319883,0.28035960614565,0.2811377786963598,0.28328173374613,0.2875585761722993,0.2902679343128781,0.293774699690887,0.298424383893702,0.3034149923936421,0.3097768661818634,0.3145051965657479,0.3174291327532977,0.3180532641998586,0.3175355450236967,0.3188904636566106,0.3203723986856517,0.3157303370786516,0.0,2.14681889822398,49.79729675736162,142.14533705863326,197.31024109700596,fqhc5_100Compliance_implementation_low_initial_treat_cost,47 -100000,95734,48437,461.76906846052606,4822,49.07347441870182,3839,39.48440470470261,1428,14.498506277811437,77.34647984393533,79.69809191224513,63.33814763576003,65.07502755033904,77.16010067522194,79.51821699300154,63.26709471883841,65.00928271073182,0.1863791687133869,179.87491924358778,0.0710529169216229,65.74483960721977,231.91718,163.15542734156006,242250.9453276788,170425.1226769591,542.41855,365.52222234559866,565987.3712578603,381208.9344826276,486.71405,239.01621536981463,504761.2655900725,246829.79757120556,2499.04244,1165.960846401819,2571708.4943698165,1179283.9467930086,884.3155,404.2643979809506,905409.5305742996,404035.7931191316,1390.9635,597.3485786343954,1413793.406731151,589247.8271347497,0.38114,100000,0,1054169,11011.40660580358,0,0.0,0,0.0,47230,492.70896442225336,0,0.0,44012,456.13888482670734,1106383,0,39732,0,0,0,0,0,97,1.0027785321829237,0,0.0,1,0.0104456097102387,0,0.0,0.04822,0.1265151912683003,0.2961426793861468,0.01428,0.3619729514717582,0.6380270485282419,23.559206558275893,4.071969036205221,0.3196144829382651,0.2784579317530607,0.1969262828861682,0.2050013024225058,11.271481653617448,5.964186079005126,15.332429789928051,11309.651742854316,43.83914488038366,12.994512183281309,13.978985233831326,8.37551945929806,8.490128003972949,0.576712685595207,0.7979420018709074,0.6968215158924206,0.5568783068783069,0.1080050825921219,0.7660142348754448,0.9300225733634312,0.8401162790697675,0.7657142857142857,0.1604938271604938,0.4983425414364641,0.7044728434504792,0.6409966024915063,0.4939759036144578,0.0944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020559043953818,0.0044703950369491,0.0069311251154341,0.0091729140001219,0.0118473773059165,0.0139680729760547,0.0162487257900101,0.0186570591657395,0.0208318426674571,0.0229746193932816,0.0250207566703225,0.0268001026430587,0.0288284583354752,0.0310639612730456,0.0331500263095446,0.0351007751937984,0.0374273970617163,0.039195750508362,0.041373001517703,0.0432989261199704,0.058372746160512,0.0717791988947385,0.0857385666173554,0.0984268528644738,0.1105382466128947,0.1258920924921495,0.1369408170409581,0.1463419825879648,0.1559453774783527,0.1650052522134328,0.1764781878472072,0.1875020278381623,0.1970024671499527,0.2056670163475828,0.2134378228660614,0.2225616505069287,0.2311405953841007,0.2391719888459116,0.2466850421388142,0.2527365576623614,0.2590339851293378,0.2650482713480913,0.2700602131711875,0.27368685900508,0.2782531648642415,0.2821178526165545,0.2858714266071674,0.2893515280232987,0.2923136696237777,0.2956239528225966,0.293196042802342,0.2897761645493042,0.2868419941745114,0.2835943702634428,0.2817392594791125,0.2779452033838669,0.2740318582953128,0.2737520655748433,0.2741971207087486,0.2749608596641048,0.2746785121036227,0.2766866094623317,0.2777429598061335,0.2780959597085107,0.2796551311220213,0.2804601889689997,0.2816577129700691,0.2861789635004535,0.2918817129306737,0.2964288523558562,0.3011617919623887,0.305017675302063,0.311484593837535,0.3169477425697648,0.324074074074074,0.3277954518675621,0.327319587628866,0.3336014478182184,0.3357340720221606,0.3381211180124223,0.0,2.3543856073675924,48.4479145188285,142.80232602616434,198.08309497110207,fqhc5_100Compliance_implementation_low_initial_treat_cost,48 -100000,95747,48497,462.5627957011708,4868,49.662130406174605,3904,40.2623580895485,1498,15.290296301711804,77.41222784566315,79.7673341686501,63.350809200748486,65.08949154227128,77.22005606568935,79.58036524689645,63.2778906504042,65.02117928638451,0.1921717799738047,186.9689217536461,0.0729185503442906,68.3122558867666,232.24344,163.34398438513168,242559.26556445632,170599.37501652446,547.22652,368.3905789240229,571017.7864580613,384238.9373518365,486.79783,238.4512496791297,505595.4651320668,246791.09935789407,2511.72097,1172.359762642555,2589623.027353337,1190857.857527573,900.95569,407.3829805121485,925024.8780640648,409529.7279995819,1448.7771,612.9147442537027,1478851.2642693766,609499.2277845765,0.3807,100000,0,1055652,11025.421162020742,0,0.0,0,0.0,47722,497.8746070372962,0,0.0,44034,457.069150991676,1103171,0,39498,0,0,0,0,0,84,0.8773120828851034,0,0.0,1,0.0104441914629178,0,0.0,0.04868,0.1278697136853165,0.3077239112571898,0.01498,0.3520347688660608,0.6479652311339391,23.53619629394443,4.0356524016860735,0.3176229508196721,0.2784323770491803,0.2049180327868852,0.1990266393442623,11.513661780430862,6.333919162427555,15.814449021129397,11356.461859938709,44.31712193081157,13.229135691697644,13.990571650980383,8.720003384736932,8.377411203396614,0.579405737704918,0.797608095676173,0.6879032258064516,0.56375,0.1171171171171171,0.7644483362521891,0.9151785714285714,0.8825214899713467,0.7359550561797753,0.1437125748502994,0.502896451846488,0.7151799687010955,0.611672278338945,0.5144694533762058,0.1098360655737704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0047939998986469,0.0068680761270949,0.0092005849378503,0.0115495277503837,0.0138239934850104,0.0159712171555537,0.0179688376886421,0.020142870282368,0.0224155578300921,0.0246167090268098,0.0268747112867628,0.0289192051073804,0.0309980124198016,0.033143470364867,0.0352277190878832,0.0372675309613552,0.0393845387672099,0.0413686267986359,0.0430439085369029,0.0577131880063476,0.0717409957516271,0.0853693077512142,0.0979907426888281,0.1101274638078757,0.1258545877870674,0.1363071926640557,0.1464424899376024,0.1564931178934769,0.1655880743101838,0.1769360977240137,0.1887446262466566,0.198941879578929,0.2082133590251699,0.2166053449073564,0.2259674574917645,0.2346695872774617,0.2419661864588143,0.248597706369933,0.2545592095459703,0.259890930563757,0.2648273602677056,0.2708096725345447,0.2750673451062556,0.2793364560832949,0.2837205867874372,0.2863513716084545,0.2890309811981426,0.2931788566489053,0.2967546971488635,0.2937204410562842,0.2917037381770399,0.2890215532946551,0.2863199344667519,0.2841321339035541,0.2805911659274561,0.2767109952740575,0.2767653758542141,0.2762286894543485,0.2767835036961058,0.2776778595664991,0.2787237786162538,0.2788862820007059,0.2799132532253424,0.2813370473537604,0.281749000386947,0.2818250993433475,0.2854303813190908,0.2890939364506729,0.2932060112711334,0.2972354366753433,0.3022902363607777,0.3061933722229117,0.3100299401197605,0.3097891150197992,0.3181129877693652,0.3203230148048452,0.3263407876509004,0.3308310991957104,0.3282128137879355,0.0,1.9465479354776083,49.74451823712496,142.72466748909193,201.19289754333775,fqhc5_100Compliance_implementation_low_initial_treat_cost,49 -100000,95713,48405,462.3091951981445,4802,48.833491793173344,3863,39.60799473425763,1463,14.77333277611192,77.32373385663094,79.69347543065275,63.321321634088775,65.07501265990189,77.13613012604908,79.5139066580108,63.25015791441,65.01001464520458,0.1876037305818556,179.56877264195725,0.071163719678772,64.99801469730926,232.56354,163.5502721569881,242980.09674756823,170875.71401689225,542.27015,365.7055340723815,565831.778337321,381358.8060894357,483.26705,236.99568269631635,500353.2853426389,244062.95524069425,2531.69739,1185.5528255130605,2599471.96305622,1193033.3763575065,885.13342,401.0619584086339,910094.9818728908,404341.8850194161,1427.43026,606.5420909278829,1444637.67722253,595028.1175051172,0.38075,100000,0,1057107,11044.549852162194,0,0.0,0,0.0,47308,493.5066291935265,0,0.0,43728,452.3418971299615,1104478,0,39609,0,0,0,0,0,90,0.9298632369688548,0,0.0,0,0.0,0,0.0,0.04802,0.1261195009848982,0.30466472303207,0.01463,0.3539135630352519,0.6460864369647481,22.924832837408356,4.169857740333109,0.3044266114418845,0.2762101993269479,0.2013978772974372,0.2179653119337302,11.50147245357154,6.205545403011523,15.53192281558757,11288.281525681936,44.12726655947094,12.933757291569837,13.450326999928384,8.71859653625335,9.024585731719366,0.5759772197773751,0.7966260543580131,0.7117346938775511,0.5796915167095116,0.1033254156769596,0.7561188811188811,0.922566371681416,0.8746268656716418,0.6820512820512821,0.1358024691358024,0.5001838911364472,0.7040650406504065,0.6468489892984542,0.5454545454545454,0.0955882352941176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505572441742,0.0047968196983986,0.0070442549736094,0.0090848119017133,0.0113950838352596,0.0133952673450885,0.0157875413046138,0.0179955674935912,0.0199503031914349,0.0219263659173536,0.0241203556521828,0.0260244428468727,0.0279100869296846,0.0298121412598798,0.0320496278940143,0.034001860849788,0.0363945190724265,0.0383877159309021,0.04033188808135,0.0424711631638724,0.0569483455325724,0.0712147537208766,0.0833927822073017,0.0966852862898559,0.1092749802267334,0.1247924883423387,0.1354290443048718,0.1455342605697502,0.1549158878504672,0.1641216462564608,0.1762660033810339,0.1864060234968303,0.1970248904450703,0.2059302668838765,0.2145803768852513,0.2232803295389112,0.2316483075413637,0.2393785526522725,0.2466442953020134,0.2530914332124595,0.2583924404500612,0.2640209292004391,0.2704244987653738,0.2748862820205889,0.279879632101342,0.28340823739457,0.2873632214093666,0.2912464549605117,0.2945341116475324,0.2969404696023401,0.2944419048643416,0.2919874615046194,0.2883178293482697,0.2849239480564503,0.2818795932002078,0.2784659143040646,0.2742307085371627,0.2744966552722396,0.2740997653779455,0.2744920270918884,0.2748007540549116,0.2761208730596485,0.2767033931968807,0.2772571071540143,0.2790033366139369,0.2800822317060477,0.2806732740943267,0.2859344045784723,0.2902036516853932,0.294014714655001,0.2986130121361438,0.302158273381295,0.3053102926337033,0.308942469098123,0.3102674396858051,0.3167988635018349,0.3193772672309553,0.3248496993987976,0.3281926406926407,0.3315589353612167,0.0,2.961973674597693,48.71609323967368,142.00505347536676,199.22152779718655,fqhc5_100Compliance_implementation_low_initial_treat_cost,50 -100000,95784,48527,463.2819677607951,4749,48.484089200701575,3783,38.952225841476654,1423,14.54313872880648,77.38153749659537,79.72327082661732,63.350937847410606,65.08289654296809,77.20552539487396,79.54937755790122,63.28518046384181,65.01989467418242,0.1760121017214118,173.89326871609967,0.0657573835687941,63.00186878566194,232.4289,163.4826912814065,242659.4211976948,170678.49670237876,544.38216,367.699674698358,567807.7549486344,383348.4660260148,482.31795,236.79479117096517,499783.1474985384,244343.98362931883,2448.57546,1148.911077794799,2522790.706172221,1165920.6838248544,846.44082,384.6633713036695,869890.7750772572,387787.86781056254,1381.18098,583.5789619685929,1412402.5515743757,584453.3394487087,0.38231,100000,0,1056495,11029.973690804309,0,0.0,0,0.0,47436,494.68596007683954,0,0.0,43669,452.14232022049606,1104252,0,39612,0,0,0,0,0,89,0.9291739747765806,0,0.0,0,0.0,0,0.0,0.04749,0.1242185660851141,0.2996420299010318,0.01423,0.3652367462565762,0.6347632537434237,23.307214159497423,4.035960706227471,0.3087496695744118,0.2865450700502246,0.2001057361882104,0.204599524187153,11.08380998276134,5.812329881482399,15.19309964055808,11333.52143108991,43.37693547147737,13.221563557492544,13.35632077994184,8.496192819375057,8.302858314667928,0.5767909066878139,0.8108856088560885,0.6926369863013698,0.5574636723910171,0.0930232558139534,0.7597517730496454,0.9047619047619048,0.8839285714285714,0.7038834951456311,0.1103448275862069,0.4990583804143126,0.7465007776049767,0.6153846153846154,0.5027223230490018,0.0890302066772655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382466730134,0.0043688041032294,0.0065135343533135,0.0084904989691559,0.0109400736116477,0.0131722263505603,0.0157275655400171,0.0179630328948039,0.0199779272006376,0.0223772932376986,0.024727414330218,0.0270067747895709,0.0291492730675111,0.0310846152262103,0.0331098504383702,0.034850801785419,0.0367357920443726,0.0387681272092131,0.0407217726436948,0.0426765783774779,0.0573637909983616,0.0715988955823293,0.0856046628648104,0.0984838136866548,0.1105714014772356,0.1253355030961388,0.1356469216912154,0.1461721623402853,0.1563206862703256,0.1653289325631985,0.1765205974775085,0.1875175709867866,0.1975159733994002,0.2073637058887796,0.2152604435843019,0.2237078029883785,0.2318376902067889,0.2405915337850745,0.2480727371666969,0.2545866312851718,0.2602503785733276,0.2665334641989156,0.2723962212842431,0.2770276740400268,0.2806992006016716,0.2846616559851401,0.2875725610136695,0.2912480790479698,0.2946999754448996,0.2976527428548861,0.294733873242274,0.29087366384456,0.2876256060712529,0.2845673762954208,0.2828194485621109,0.2786512394675784,0.2749089992278722,0.2747168456441557,0.2751170205549149,0.2745390070921986,0.274353913755865,0.2752789126335638,0.2760387378944079,0.2767079984862314,0.2774486383182035,0.2802527973477,0.2824919441460795,0.287096673823081,0.2900697166244667,0.2926982383175737,0.2980457492795389,0.302006724101702,0.3074377068631737,0.3102198051212327,0.3139318308809834,0.3163432312368482,0.3219651442307692,0.3263407876509004,0.3244781783681214,0.3410794602698651,0.0,2.139349288044274,48.93254312680628,143.19242668848895,189.78994318073467,fqhc5_100Compliance_implementation_low_initial_treat_cost,51 -100000,95862,48455,461.49673488973735,4798,48.9140639669525,3799,39.09786985458263,1442,14.729506999645324,77.37299817448195,79.67352125751013,63.35320242165369,65.05669590726863,77.19184769691336,79.49509816168779,63.28458843392147,64.9914175160048,0.1811504775685932,178.42309582233895,0.0686139877322205,65.27839126383128,232.53164,163.6317843542133,242569.15148859817,170695.14964658915,546.37278,368.61384281747314,569424.52692412,384003.9526070792,484.22065,237.2316521067372,501484.8636581753,244766.2684809871,2454.61054,1155.594734735683,2528852.0060086376,1174279.0504362232,854.45687,384.9178033847365,878747.9188833948,388940.6265097073,1397.89298,597.4061474914138,1429831.987648912,598360.746576485,0.38093,100000,0,1056962,11025.87052220901,0,0.0,0,0.0,47706,497.0999979136676,0,0.0,43886,454.25716133608734,1100397,0,39524,0,0,0,0,0,80,0.8241013123031025,0,0.0,0,0.0,0,0.0,0.04798,0.1259548998503662,0.3005418924551896,0.01442,0.3599599599599599,0.64004004004004,23.137492017752184,3.97715783729038,0.319557778362727,0.2827059752566465,0.1968939194524875,0.200842326928139,11.059108871820376,5.96728213308396,15.431331543687689,11316.157318990046,43.587543393446175,13.042472243070348,13.903251867012704,8.338787321129416,8.3030319622337,0.5996314819689392,0.7886405959031657,0.7174629324546952,0.6350267379679144,0.1114023591087811,0.7688219663418955,0.9113636363636364,0.8714285714285714,0.7663043478260869,0.1354838709677419,0.5280898876404494,0.7034700315457413,0.6550925925925926,0.5921985815602837,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045303901000334,0.0066644350445817,0.0087423593201064,0.0108472439664111,0.0129682410423452,0.0151458012699642,0.0174815540519854,0.0197304560177379,0.0217631530480692,0.0240663900414937,0.0263678988785948,0.0284774677560248,0.0306636061388971,0.0330096286674501,0.035318173368858,0.0371416451990026,0.0392108099146149,0.0412054248270992,0.0431679377399519,0.0582886696836353,0.0716950374619894,0.0847074105889501,0.0971762803347719,0.1088691842709408,0.1241444143991887,0.1347207358036726,0.1446401803085232,0.1547566950228949,0.1629108132146033,0.1744979444241159,0.1857981385594915,0.1958154448127819,0.2048414078131662,0.2131885301819942,0.2224277328607819,0.2312840935711656,0.2401228457004005,0.2478166186511807,0.2541610384853133,0.2614360195600153,0.2663914777178806,0.2716291835744792,0.275340973045467,0.2788448704726081,0.2839082157717212,0.2871742910396417,0.2906128466485346,0.294502567020575,0.2984498167725607,0.2958216221304751,0.2919638807570197,0.2895118278661994,0.2865038820099864,0.2838927766575732,0.2796188265477536,0.2762044579150091,0.2761277027248046,0.2758861147016804,0.2761405068919519,0.2761725449258072,0.27785314066647,0.278452279306108,0.2799316482102039,0.280255536220829,0.2814035269173088,0.283253046188722,0.2884188821893842,0.2925324222563101,0.2957126576806696,0.2998607805272376,0.3063847647027963,0.3123559100255467,0.3174615152429822,0.3176009700587632,0.3224190165462596,0.3238627776938189,0.3270820729985884,0.330315500685871,0.3262759924385633,0.0,2.073513707131644,49.01735667391374,143.89221386488228,191.7517717981932,fqhc5_100Compliance_implementation_low_initial_treat_cost,52 -100000,95788,48250,460.3708188917192,4774,48.55514260658956,3784,38.88796091368439,1436,14.542531423560362,77.39816222968327,79.72801514883706,63.35848721039546,65.07959521622767,77.20842437979418,79.54483171662547,63.2850828738665,65.01160884313227,0.1897378498890845,183.1834322115924,0.0734043365289593,67.98637309540823,232.01992,163.26471222741105,242222.3242994947,170443.80530693935,542.31686,365.1837073052641,565526.6734872843,380606.3685613336,481.56002,236.15401142657143,499504.4160020044,243898.3220172408,2479.75734,1174.4631727951385,2550016.546957865,1187410.1692632658,903.81457,416.4231278561703,931602.1317910386,422831.98519587785,1408.5976,612.1233118124858,1429024.2619117217,603336.3979345202,0.37981,100000,0,1054636,11010.105649977031,0,0.0,0,0.0,47243,492.5564788908841,0,0.0,43532,451.1734246460935,1107309,0,39756,0,0,0,0,0,95,0.9917734998120852,0,0.0,0,0.0,0,0.0,0.04774,0.1256944261604486,0.300795978215333,0.01436,0.3566250503423278,0.6433749496576722,23.331052110772443,4.087042772739412,0.2973044397463002,0.2795983086680761,0.2071881606765327,0.2159090909090909,11.440659009511108,6.203900971003368,15.365925613096236,11258.60513915727,43.24799496334072,12.986830362765163,12.800876083237306,8.566979514649894,8.89330900268836,0.5872093023255814,0.8223062381852552,0.7111111111111111,0.5688775510204082,0.1297429620563035,0.7592116538131962,0.9247787610619468,0.8875379939209727,0.745,0.1451612903225806,0.5105082155139473,0.7458745874587459,0.6381909547738693,0.5085616438356164,0.1251980982567353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024103218488586,0.0044389492459867,0.0067159030962139,0.0089467056625233,0.0110710110303461,0.0132615466037006,0.0153665868446527,0.0175590743990531,0.0196160565596297,0.0218948229997953,0.0237580550973783,0.0260643810735651,0.0280150043677097,0.03030084706512,0.0323521831022217,0.0343406593406593,0.0364052057685543,0.0385022190883072,0.0404373174812674,0.0424364234686439,0.0565033651588668,0.0701556224899598,0.0833053761637171,0.0957971182040799,0.1082822021211546,0.1231896314776835,0.1343416558834136,0.1439456824808973,0.1541164658634538,0.1635371202453593,0.1753460067855027,0.1864359113034072,0.1968401264818698,0.2064659222516006,0.2145550071994636,0.2245742550154363,0.2329701943555491,0.2401178547732307,0.2477112096838236,0.2541943906824402,0.2597872586426176,0.2657572357039323,0.2705152784681294,0.2745821601869047,0.2787911887857273,0.2819038944414356,0.2852911772056986,0.2896652480467509,0.2923090852649007,0.2953479177648919,0.292310589248006,0.2884166277440448,0.2851979466985444,0.282442638072178,0.2796661586042588,0.2757390495647269,0.2729049442842057,0.2729707659643965,0.2734542484772178,0.2749995558792702,0.2757226940843391,0.2759000590202636,0.276385677685434,0.278038937425163,0.279635619826848,0.2800103305785124,0.280652418447694,0.2869424873521835,0.2903927868172867,0.2932604024223481,0.297217102009621,0.3007044090790503,0.3059586292065452,0.3099099099099099,0.3118968077208611,0.3148279113625648,0.3178189486368429,0.3186264723497704,0.3190735694822888,0.3240496800903274,0.0,2.35684815793207,50.34409379250824,134.90715892311871,192.28437901259952,fqhc5_100Compliance_implementation_low_initial_treat_cost,53 -100000,95886,48495,462.8100035458774,4679,47.54604426089315,3695,38.04517864964646,1433,14.621529733224872,77.3584022892406,79.64157337946484,63.35300198276878,65.04201293096718,77.17784176937208,79.4620861146826,63.28525085751163,64.97648536902558,0.1805605198685214,179.48726478223875,0.0677511252571534,65.52756194159315,232.55166,163.59210623180252,242529.3160628246,170611.0446069317,541.73175,365.73017558086735,564478.5161546002,380925.5736821512,480.77941,236.0621794188663,498196.1913105146,243735.98302035843,2426.79292,1132.6720568197925,2501631.9379262878,1152050.3097853907,877.47975,397.00316569857085,901469.0674342448,400454.25865183386,1400.89724,596.9058130659538,1431276.5367206892,597973.9294956914,0.37951,100000,0,1057053,11024.059821037485,0,0.0,0,0.0,47189,491.61504286340033,0,0.0,43430,449.6902571804018,1102459,0,39628,0,0,0,0,0,90,0.9386146048432514,0,0.0,0,0.0,0,0.0,0.04679,0.1232905588785539,0.3062620217995298,0.01433,0.3476474214094925,0.6523525785905075,23.53872357623918,4.134950199876741,0.3004059539918809,0.2784844384303112,0.1964817320703653,0.2246278755074424,11.317191750181808,6.133541413519447,15.344207659075211,11253.259871184538,42.32330461649063,12.58975771213414,12.675086577457344,8.025253606837197,9.033206720061951,0.5756427604871448,0.8017492711370262,0.7036036036036036,0.5785123966942148,0.1216867469879518,0.7553290083410565,0.9357798165137616,0.8642384105960265,0.7289156626506024,0.1428571428571428,0.5015290519877675,0.7032040472175379,0.6435643564356436,0.5339285714285714,0.116030534351145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894136824307,0.004549553657375,0.0066841800975748,0.008924854552285,0.0110591583655214,0.0131082140058417,0.0150067239903826,0.0170227956550563,0.0192356778942854,0.0212535397008761,0.0233708003193907,0.02553797890118,0.0278225682212659,0.0296873874893275,0.0318634775708735,0.033803456749334,0.0360297920761353,0.0382753795926828,0.0402945238911217,0.0422397469776732,0.0568673442793849,0.0704360726300173,0.0839520393737892,0.0963145737085258,0.1087693798449612,0.1245312912595722,0.1352958006167148,0.1446996278575226,0.1544381350866706,0.1637439437465163,0.1755458891425126,0.1864089640701724,0.1964607926259266,0.2053818324899172,0.2147607479306592,0.2235855110304693,0.2320120421475163,0.2393696539166207,0.2468558986629772,0.2525710620948716,0.2591748690130582,0.2646274729900378,0.269569025721151,0.2731053659822852,0.2767640198269997,0.2807504098411172,0.2852010415101897,0.2886292180598516,0.2920372339046335,0.2955947427514695,0.2925360669208077,0.2896025979744606,0.2866777427348502,0.2838202798919715,0.2807163434409432,0.2780157904400514,0.2747761996646949,0.2739568817116157,0.2748064263055565,0.2750912165168639,0.2765929633226264,0.2773850546421187,0.2781557856069461,0.2783463866144535,0.2795796730258276,0.2821176287939555,0.2838647670737223,0.2886363636363636,0.2921239060980691,0.2959075362660691,0.2979184539666772,0.2986052852348993,0.3037351125522229,0.3101034692635423,0.3139928531126575,0.3166270783847981,0.3220547523838818,0.3235530546623794,0.3246187363834422,0.3315689981096408,0.0,1.9015223420482656,46.92439004586174,140.75731548601746,188.257331621867,fqhc5_100Compliance_implementation_low_initial_treat_cost,54 -100000,95738,48290,461.1335102049343,4882,49.80258622490547,3845,39.639432618187136,1433,14.654578119451,77.38965647392791,79.75667388328482,63.34469261111818,65.09402464779984,77.20986407443607,79.57988993196396,63.276947343277925,65.02971755352966,0.1797923994918449,176.7839513208571,0.0677452678402588,64.30709427017689,233.03566,163.911688756863,243409.7850383338,171208.59925720506,544.24713,366.4773069980647,567958.7624558692,382275.1018384181,484.37821,237.4776069127756,502740.4792245503,245580.334893864,2483.18925,1161.8792444828316,2563477.6055484763,1183346.4084092332,916.88874,410.5915419416398,946015.5110823289,417179.6244867286,1392.40034,584.6190419580861,1425932.8584261213,585340.9193952936,0.37957,100000,0,1059253,11064.08113810608,0,0.0,0,0.0,47401,494.5685098915791,0,0.0,43844,454.7619545008252,1103224,0,39571,0,0,0,0,0,91,0.9505107689736572,0,0.0,0,0.0,0,0.0,0.04882,0.128619227020049,0.2935272429332241,0.01433,0.3664571877454831,0.6335428122545169,23.418845399877544,4.0722527968180025,0.3105331599479844,0.2814044213263979,0.2098829648894668,0.1981794538361508,11.592361474613943,6.322062752588581,15.135690181364208,11268.856291967755,44.092142432744005,13.351328217869126,13.578623763189968,8.980409915369371,8.181780536315538,0.5927178153446033,0.7920517560073937,0.7102177554438861,0.5885997521685254,0.1299212598425196,0.7669565217391304,0.8907922912205567,0.8821752265861027,0.7116279069767442,0.1532846715328467,0.5183673469387755,0.7170731707317073,0.6442641946697567,0.543918918918919,0.1248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021574426707722,0.0042679156148941,0.0064847420818153,0.0086860231220919,0.0110266817215457,0.0134719563357908,0.0157930689939947,0.017721338083523,0.0197379180636192,0.0217929820251402,0.0238322211630123,0.0260764223969776,0.0283014988588934,0.0303457791873468,0.0325112685789728,0.0346531072044977,0.0367804665900406,0.0385728661984251,0.0405654004053422,0.0424685080800608,0.0568287411645559,0.0703452895554881,0.0839628184145369,0.0960476345771484,0.1082794485290239,0.1241089747657423,0.1358023381638412,0.1457912099606257,0.1554611080261415,0.1645845173881805,0.1750608298701578,0.1861627328386301,0.1978864281287713,0.2069802532309912,0.2157363198310193,0.224769981952856,0.2331192578717331,0.2405932250997135,0.2471177717569972,0.2535804163806909,0.2592305736018311,0.2648182551088366,0.2701454274811866,0.2741812005071892,0.2783120111562481,0.2822781072368907,0.2853608556577369,0.2876106756773923,0.2913355301415002,0.294326801517067,0.2908294831846997,0.2872417816210281,0.2852227886141186,0.2830330005905824,0.2804874441716702,0.2760791366906475,0.2725211750999716,0.2726398330643452,0.2727026477957608,0.2737920418959325,0.2743098685552197,0.2764612645050193,0.2770812177481193,0.2778072854423936,0.2794806553634699,0.2819593479158068,0.2828780625176006,0.2878580323785803,0.2937982877427438,0.2989548412541905,0.3018979027947638,0.3056629761084918,0.3095773943485871,0.3144607110845533,0.3131257463029301,0.3185245331168078,0.3224648519294047,0.3253654681943895,0.3276790522347872,0.3296951449002634,0.0,2.0184757582469,50.11763218391759,143.94056021298582,194.25198798963504,fqhc5_100Compliance_implementation_low_initial_treat_cost,55 -100000,95754,48321,460.7118240491259,4782,48.81258224199511,3838,39.42394051423439,1453,14.767007122417862,77.34687979821054,79.70583736508799,63.33382307926016,65.08104527130654,77.16809252228917,79.53222184161956,63.26676343960949,65.01876876527524,0.1787872759213655,173.61552346842757,0.0670596396506653,62.27650603129575,232.91092,163.89388221975378,243238.84119723455,171161.39505373538,545.31656,367.3416203862032,568841.1450174405,382974.29912714177,487.72143,238.7538492410199,504990.7575662636,246078.1126648088,2474.57082,1157.1425205842474,2540711.187000021,1164864.4344719246,910.50247,412.1052584261764,929321.1876266263,408823.65063201,1407.70718,590.409238547536,1430283.8523717024,582016.969784403,0.37973,100000,0,1058686,11056.310963510665,0,0.0,0,0.0,47513,495.5302128370616,0,0.0,44041,455.5841009252877,1103293,0,39579,0,0,0,0,0,103,1.0756730789314284,0,0.0,0,0.0,0,0.0,0.04782,0.1259315829668448,0.3038477624424927,0.01453,0.350210970464135,0.6497890295358649,23.494013150077823,4.040779274714782,0.3035435122459614,0.2803543512245961,0.2149557060969255,0.2011464304325169,11.458412743964493,6.296866542530007,15.421579675668818,11301.127606710434,43.98002987929696,13.309175515689402,13.20949127628152,9.093727087653708,8.367635999672341,0.5880667014069828,0.8057620817843866,0.7090128755364807,0.5612121212121212,0.1308290155440414,0.7653149266609146,0.9078947368421052,0.8727272727272727,0.7064220183486238,0.2,0.511384845091452,0.7306451612903225,0.644311377245509,0.5090609555189456,0.1134521880064829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0043301018131667,0.0067512690355329,0.0091872719696738,0.0115264100268576,0.0137471741919716,0.0159955143235803,0.0180583911800734,0.0204759665514914,0.022709587582422,0.0246778145729313,0.0268499789512593,0.0288969786717673,0.0310169351848036,0.0329115752972258,0.0349917818414877,0.0369787405896302,0.0388701010394406,0.041029106029106,0.0431110787141652,0.0578669394401185,0.0713022920088291,0.0847112854012226,0.097517395051607,0.1088299150523808,0.1243303217625614,0.1350609432962374,0.14462954890975,0.1543573333333333,0.1632071632071632,0.1756139011089479,0.1867827890994748,0.1968694669838476,0.205695131405112,0.2141672433299283,0.2237316636059915,0.2326789516515612,0.2397023950009553,0.2475412625489195,0.2543880740562635,0.2606060606060606,0.2663688561973033,0.271378894329714,0.2760995592180912,0.2798034934497816,0.2827778665650394,0.2867497281963485,0.2906114258134986,0.2934463729532031,0.2963357814104083,0.2932660023100271,0.2901223548152318,0.2871529094509754,0.283828145247214,0.2814285291418761,0.2777099609375,0.2751230128690386,0.2746695458709593,0.2739462623581261,0.2743059258469304,0.2742687658558424,0.2747401983939537,0.2763424043373996,0.2776540294916915,0.2790023479802578,0.2793123179359134,0.2810368349249659,0.2860418367987939,0.2896934959633733,0.2946964906734113,0.2973819138799401,0.2998734043675493,0.3014728925101849,0.3053124056746151,0.3111687349509168,0.3144028103044496,0.3174097664543524,0.3205518360722256,0.3300916921367046,0.3341130604288499,0.0,2.593299287842299,50.095610442148015,138.5416207647551,197.60612284446168,fqhc5_100Compliance_implementation_low_initial_treat_cost,56 -100000,95763,48361,462.7152449275816,4819,49.17348036297943,3841,39.61864185541389,1415,14.431461002683708,77.36211040614715,79.7236549137711,63.32787542470121,65.07557459619218,77.18387320138093,79.54774601882546,63.2603914821748,65.01084401855586,0.1782372047662193,175.90889494563555,0.0674839425264082,64.73057763632539,233.10386,163.90036054133586,243417.4576819857,171152.073913031,544.46021,367.699659893742,568070.9146538851,383489.6566458256,487.47934,239.2782958639492,506095.1306872174,247578.51755742377,2491.15749,1167.7187866110935,2571293.046374905,1189483.7987257014,834.07518,381.1344161017414,860177.887075384,387288.0263357107,1369.35138,583.6945973820618,1398619.3623842194,584251.2261687935,0.37882,100000,0,1059563,11064.429894635714,0,0.0,0,0.0,47421,494.7004584233994,0,0.0,43976,456.2304856781847,1098729,0,39417,0,0,0,0,0,105,1.0964568779173585,0,0.0,0,0.0,0,0.0,0.04819,0.127210812523098,0.2936293836895621,0.01415,0.3652468152866242,0.6347531847133758,23.213190635734637,3.9460968363300455,0.3160635251236657,0.2822181723509502,0.2061963030460817,0.1955219994793022,11.432951467151897,6.3826397589736,15.090749315014875,11218.8270973219,43.95327092442261,13.242835569621434,13.758990173840614,8.774748438494607,8.176696742465964,0.5946368133298621,0.8182656826568265,0.7125205930807249,0.5795454545454546,0.0972037283621837,0.7696335078534031,0.9265033407572384,0.8727272727272727,0.7864077669902912,0.0993788819875776,0.5202226345083488,0.7417322834645669,0.6527149321266968,0.5068259385665529,0.0966101694915254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020668064800461,0.0041373435820471,0.0066084661455689,0.0087180060355426,0.01066069884543,0.0129954780624923,0.01508167968511,0.0171934983255738,0.0195396775084099,0.0213709347095928,0.0234432685207974,0.0253918688497647,0.0274897119341563,0.0292559769167353,0.0314690006089442,0.0336114471221943,0.035559329405308,0.0376514774236387,0.0395205970707774,0.041496541954837,0.056919479760339,0.0707635009310986,0.0843575653341163,0.0967300876113547,0.1088761141290016,0.1235722142313224,0.1335066037235453,0.1438000340657469,0.1528788315864824,0.1613840578156162,0.1733596097308823,0.1848637652303763,0.1954119259468749,0.2049282526905241,0.2132835968705641,0.2221385291934823,0.2311135919620429,0.2384905235925988,0.24620881302104,0.2517632241813602,0.2566998380004628,0.2621584012535519,0.2676596197754616,0.2724276382812968,0.2761701301223538,0.2808111171339871,0.2844238708870261,0.2877525846611646,0.2912957979714345,0.2959257648252864,0.2939150556295489,0.2911862123940023,0.2877825255819183,0.2843281430219146,0.2821504229441654,0.2785047870634763,0.2754055418796945,0.2746591689279759,0.2751554694668162,0.2764285334137558,0.276627026222247,0.2768259693417493,0.2773091785432334,0.2792125739874526,0.2793623561369647,0.2795515602397189,0.280659712433042,0.2854789581649779,0.2892267202271704,0.2937587986860628,0.2996685775707631,0.3038858214397333,0.3074685972402697,0.3129981378026071,0.3186206896551724,0.3222986362046858,0.3261879778144206,0.3304484657749803,0.3248933901918976,0.3354863221884498,0.0,1.952505034909236,49.95543414519265,141.80049435528667,196.32272236442668,fqhc5_100Compliance_implementation_low_initial_treat_cost,57 -100000,95768,48546,463.7561607217442,4756,48.429538050288194,3748,38.63503466711219,1468,15.036337816389608,77.32840490063373,79.68964375574315,63.31625382636724,65.0652056763863,77.13778458890083,79.49866355267655,63.24496355287273,64.995399019604,0.1906203117328999,190.98020306660143,0.0712902734945046,69.8066567823048,232.74724,163.79663883307114,243032.36989391028,171034.83296411237,546.15504,368.8934896223592,569817.8828001003,384723.5143183103,488.78178,240.29195188831685,506951.0379249853,248267.61270995848,2416.63237,1149.760622455998,2493155.79316682,1170342.9343244245,858.35087,398.94388177243343,883992.2625511654,404307.8694083117,1421.2288,604.9064498298604,1456165.0864589424,609091.510002214,0.38039,100000,0,1057942,11046.92590426865,0,0.0,0,0.0,47633,496.8674296215855,0,0.0,44097,457.02113440815305,1096461,0,39359,0,0,0,0,0,104,1.0755158299223122,0,0.0,1,0.0104419012613816,0,0.0,0.04756,0.1250295749099608,0.3086627417998318,0.01468,0.3648103309120258,0.6351896690879741,23.02914161315865,3.980379642941259,0.3121664887940235,0.2798826040554962,0.2065101387406616,0.2014407684098185,11.54553530533168,6.455575674575253,15.703104728913834,11242.034545631936,43.382031865904025,13.022562909794928,13.459520680267204,8.608312671551662,8.291635604290235,0.5933831376734259,0.7998093422306959,0.7273504273504273,0.5775193798449613,0.1152317880794702,0.7845117845117845,0.906054279749478,0.9111747851002864,0.7875647668393783,0.1676646706586826,0.5046875,0.7105263157894737,0.6492082825822169,0.5077452667814114,0.1003401360544217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0043915698087182,0.0065690614466149,0.0085164332608386,0.0106813696567719,0.0129053943937418,0.0150615924294338,0.0173969861559194,0.019536281665951,0.0215468708416074,0.0235764440571985,0.0258229459720311,0.0277563529036703,0.0300967173771977,0.0320723175035601,0.0339342195026151,0.0362085563157949,0.0380702500337042,0.0401521291851112,0.0422012997833694,0.0565714762859051,0.0710871725147727,0.0844560943643512,0.0970579888373853,0.1091782654964228,0.1255165562213978,0.1360527627267811,0.1460131317108469,0.1552180785168097,0.1645276464344301,0.175994830649938,0.1870354944448651,0.1969670597450067,0.2057585267969424,0.2139005062733876,0.2228694833600974,0.2307606463708597,0.2390369636666516,0.2463157655714253,0.2521170174976223,0.258152236802518,0.2639051316835851,0.2692548973190507,0.2737063020927025,0.2767984060066335,0.2799595815208685,0.2840745335388394,0.2875383499038865,0.291046419733893,0.294014456051493,0.291565129585998,0.2886254881469666,0.2860019431966993,0.2827382240496285,0.2805658220896231,0.2772387831303177,0.2731902510003637,0.2739445055215529,0.2742893219124321,0.2752651751493002,0.276298094882331,0.2759448818897638,0.2755153029356652,0.2761154154421587,0.276921972922547,0.2788877659436627,0.2802414213255504,0.2862446572863694,0.291095652173913,0.298504525777253,0.3028909033509223,0.3034096265647096,0.3073775573465592,0.3087253357341136,0.3115088565334322,0.3167832167832168,0.3206095353047676,0.3239749545546354,0.3296763576522216,0.3388910430399379,0.0,1.9618614843287487,51.91240405142604,139.63210419944878,182.4313901370304,fqhc5_100Compliance_implementation_low_initial_treat_cost,58 -100000,95735,48506,463.1848331331279,4897,49.87726536794276,3913,40.33007781897948,1491,15.20864887449731,77.31464774318667,79.68046940181603,63.30648041847581,65.05588465754383,77.12012476584697,79.48907270853518,63.23348542555051,64.9863899852897,0.1945229773397017,191.39669328085063,0.0729949929252953,69.4946722541232,231.1331,162.5950474483743,241430.0934872304,169838.66657792268,543.19716,366.4454050651834,566856.2490207343,382230.1927875733,493.62246,242.0247071332958,512364.0674779339,250246.72471129804,2559.6507,1200.7805982555076,2639324.855068679,1219917.0086755194,919.39462,419.9604209576356,947504.9668355356,425820.9442290028,1457.65896,619.7200036911622,1488283.3655402935,618027.1274081038,0.38084,100000,0,1050605,10974.095158510472,0,0.0,0,0.0,47189,492.3486708100486,0,0.0,44525,461.84780905624905,1106253,0,39715,0,0,0,0,0,114,1.1907870684702564,0,0.0,0,0.0,0,0.0,0.04897,0.1285841823337884,0.3044721257913008,0.01491,0.3537588097102584,0.6462411902897416,23.55371369974148,4.052707080413872,0.3189368770764119,0.273191924354715,0.1960132890365448,0.2118579095323281,11.22912062170491,5.960296552863444,15.909482668156455,11329.278324565494,44.825028377781344,12.99763439670694,14.225485402881665,8.507283664345431,9.0946249138473,0.5813953488372093,0.7970065481758652,0.7099358974358975,0.5749674054758801,0.1158021712907117,0.7549441100601891,0.9251101321585904,0.8664772727272727,0.7604790419161677,0.1368421052631579,0.508,0.7024390243902439,0.6484375,0.5233333333333333,0.109546165884194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002096945752925,0.0044407944763816,0.006770336385229,0.0090133116553195,0.0112416704817132,0.0136109865927706,0.0157619285663276,0.0176533050172551,0.01968801750046,0.0220404569837435,0.0241149149518624,0.0262960643180581,0.0285958217184237,0.0307055053528557,0.0327518579686209,0.0349832526981764,0.0368122935456814,0.038693811480513,0.0407494827030455,0.0428078802337816,0.0572782893775188,0.0709844884972054,0.0848213349000188,0.0975738008350247,0.1098164102455948,0.1256717302077603,0.1364422699340925,0.1468436911086741,0.1558458216644932,0.1646350623430693,0.1769558419151345,0.1884459949944202,0.1989019488229719,0.2076617100779101,0.2162615070834022,0.2249472632397024,0.2329407554049368,0.2405381631180079,0.2485044922097122,0.2545615304235994,0.2603987943426849,0.26540989560755,0.2704333191106054,0.2748914112932255,0.2786974912485414,0.2831866045226998,0.287240430322742,0.291270406346946,0.2938560198593297,0.2976215561291682,0.295,0.2918892199535899,0.2884447939780356,0.284759242716768,0.282782448804069,0.2791326670945264,0.2748756022431087,0.2749750126984647,0.2755663899353915,0.275370571382814,0.2763076808157015,0.2768634090640627,0.2773137250817589,0.2774517649150885,0.2790191907845996,0.2791227570492737,0.2816106621295902,0.2863122383957018,0.2907248093065375,0.2948115999210889,0.2977479722687933,0.3011252575413387,0.3058002013085052,0.3082369062119366,0.3125410374261326,0.3177581120943953,0.3202504581551619,0.3207199836367355,0.327162199502625,0.3286821705426356,0.0,2.152400204352314,50.640182946377976,142.46764900642444,203.83518691682397,fqhc5_100Compliance_implementation_low_initial_treat_cost,59 -100000,95821,48776,464.9920163638451,4839,49.28982164661191,3839,39.54248024963213,1501,15.320232516880434,77.3504688262772,79.68228696741046,63.33176974345843,65.05980654404304,77.15892872098817,79.49399832605336,63.259826041585775,64.99160316868962,0.1915401052890217,188.28864135710432,0.0719437018726552,68.20337535341991,232.60996,163.66203554959787,242754.67799334176,170799.75741183863,546.62759,368.5115495252598,569938.7608144352,384054.6221864308,490.19926,240.29148162634652,508533.755648553,248381.69611167168,2534.95005,1190.9637191654938,2610644.576867284,1208066.493112672,926.62699,420.2208048627443,954295.7598021312,425825.6635089056,1469.08258,625.4097956740475,1500118.2621763495,623167.6396705582,0.38099,100000,0,1057318,11034.303545151895,0,0.0,0,0.0,47493,495.06893061020025,0,0.0,44143,457.5928032477223,1100032,0,39559,0,0,0,0,0,120,1.2523350831237412,0,0.0,0,0.0,0,0.0,0.04839,0.1270112076432452,0.3101880553833436,0.01501,0.3639415481832543,0.6360584518167457,22.955717627514066,4.147207110095326,0.3019015368585569,0.2636103151862464,0.2162021359729096,0.218286011982287,11.465492819689826,6.190414420549158,16.09917894130726,11332.78507830442,44.08918838838527,12.367590056390476,13.19983604163136,9.310229014215258,9.211533276148176,0.579578015108101,0.8142292490118577,0.6945642795513374,0.5879518072289157,0.1288782816229117,0.7462154942119323,0.939903846153846,0.843558282208589,0.7336683417085427,0.1428571428571428,0.5106774668630338,0.7265100671140939,0.6362545018007203,0.5419968304278923,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044614339454285,0.0069318989140363,0.0090730825112016,0.0115141282014769,0.0138314558676743,0.016011422161032,0.0180642921329956,0.0200809782830968,0.0222549802428188,0.0242404355895532,0.0264825178415567,0.0287430199195812,0.0308341915550978,0.0329716796270704,0.0351301364909126,0.0369879605378937,0.0392913451165878,0.0411028662883748,0.0431618726381211,0.0576164743683365,0.0720491828989053,0.0856570991438481,0.098274883906621,0.1101852046943806,0.1257054086614672,0.1360681984456013,0.1458796498207618,0.1551280545739876,0.1637324132314649,0.1760515640300001,0.1870040862214342,0.1975929526519883,0.2072696275572652,0.2155607615402382,0.2242664569510749,0.232602510460251,0.2397790428188916,0.2474714796526477,0.2542537843222571,0.2608107170125633,0.2672262620122051,0.2721692646119639,0.2759628281279939,0.2806374037457186,0.2845309996302231,0.2881839690547426,0.2908313285217856,0.2936095823891227,0.2960705143430185,0.293478846672056,0.2910763214782381,0.2885907931632121,0.2860961021699558,0.2838562159433416,0.2798659874248474,0.275527152506446,0.2751529265132755,0.2758603049009242,0.2764588457562471,0.2757345387302239,0.276195540849287,0.2772341269013291,0.2784522510079971,0.2784497832283408,0.2800539713017981,0.2805830738748938,0.2848225710808027,0.2893987781171896,0.2949529916211006,0.2979432017642558,0.2989264205289342,0.3016079965232507,0.3056075466047765,0.3090689910979228,0.3099279237386654,0.3109572546658639,0.3149028933808958,0.3144081414033208,0.3144677661169415,0.0,1.9545190456677,49.10125861873139,143.77925062656325,199.27971801261324,fqhc5_100Compliance_implementation_low_initial_treat_cost,60 -100000,95712,48468,463.0453861584754,4766,48.49966566365764,3800,39.05466399197593,1416,14.345118689401538,77.30949638025908,79.66926205291504,63.31695901961641,65.05927526480058,77.12359861240253,79.49063107768823,63.24556624192068,64.99398160600173,0.1858977678565452,178.6309752268096,0.0713927776957348,65.29365879885063,231.7458,163.10995251115733,242128.259779338,170417.45289112892,542.64897,366.6989496513857,566298.6459378134,382465.9626918441,487.43374,239.34304995314687,505915.580073554,247476.0955154708,2464.34276,1156.1947765161187,2530404.411150117,1163816.349658728,847.54193,385.2631805363631,869429.9565362756,386512.0349479125,1381.75488,595.6496108410827,1400808.4461718488,584298.4265654762,0.38003,100000,0,1053390,11005.829989969909,0,0.0,0,0.0,47322,493.74164159144095,0,0.0,43949,455.7422266800401,1102719,0,39553,0,0,0,0,0,95,0.9925610163824808,0,0.0,1,0.0104480106987629,0,0.0,0.04766,0.1254111517511775,0.2971044901384809,0.01416,0.3629242819843342,0.6370757180156658,23.17800868174213,4.112148729687011,0.3171052631578947,0.2810526315789474,0.1928947368421052,0.2089473684210526,11.181716558650963,5.994123985074646,15.196936804222805,11321.60458752084,43.65981577272797,13.209806492630014,13.826786045350095,8.062383568686014,8.560839666061844,0.5747368421052632,0.797752808988764,0.6946058091286307,0.5566166439290586,0.1095717884130982,0.7511071744906997,0.9220489977728286,0.844632768361582,0.7025316455696202,0.1428571428571428,0.5001871958068139,0.7075928917609047,0.6321974148061105,0.5165217391304348,0.1006389776357827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584336800315,0.0046326332008758,0.0067567567567567,0.0091716096530429,0.0115183246073298,0.0137917697232485,0.0158283646741069,0.0179958557473434,0.0201647520542905,0.022044600914943,0.0242212404801197,0.0264800706409019,0.0285347043701799,0.0305963770429337,0.032951052989831,0.0348297773415302,0.0365870066964054,0.0383845507628164,0.0404111795948488,0.0424518965319665,0.0574149688279952,0.0713343661028303,0.0849941260384325,0.0977559046837865,0.1103377729971421,0.1250978318350079,0.13621748957438,0.1470362800204394,0.1565644696079478,0.1656068031442022,0.1770333897191126,0.1884277655669723,0.1981933939163084,0.207008634935922,0.2152907757690529,0.224275342237987,0.2327368585662265,0.2406114127373899,0.2487220846491128,0.2553667006681872,0.2604724919843043,0.2659655362010271,0.2710698599486202,0.2747190809118927,0.2787381105671699,0.2824897063537069,0.2852925724864283,0.2884473503447223,0.2916375314013415,0.2945766113062076,0.2919214503138216,0.2897194975994277,0.2869419438457095,0.2843551949645584,0.2806486101211689,0.2775618266405484,0.2740975300823305,0.2739919288690574,0.2755340767431138,0.2769398282848116,0.2778578784757981,0.2783733533763202,0.2800142426273458,0.2804559168622192,0.2823670916526341,0.2838318995763703,0.2834073820915926,0.2873153017781117,0.2925117821609356,0.2959059267707555,0.2980105562322371,0.3015046296296296,0.3098714588793211,0.3136692818346409,0.3202236719478099,0.3259111684050158,0.3266049476400061,0.3298801543774121,0.3266975729479138,0.3286313381624094,0.0,2.513336017686301,48.65724107503524,141.91988686083516,195.0674351924208,fqhc5_100Compliance_implementation_low_initial_treat_cost,61 -100000,95734,48471,462.030208703282,4887,49.71065661102639,3894,40.079804458186224,1453,14.790983349698124,77.40440741590693,79.76175818266842,63.3594678928421,65.09934327285447,77.2198159833534,79.58159555180615,63.288637621459095,65.03269554343774,0.1845914325535318,180.1626308622701,0.0708302713830022,66.64772941672936,232.33672,163.28883015484794,242689.86984770303,170565.13898390115,547.71066,369.9953123159816,571557.9209058433,385923.4047631789,488.29472,239.66395816675643,506399.69080995256,247460.82708817648,2531.34921,1189.548496641892,2608050.4209580715,1206457.7648921923,901.93086,408.2918138385977,927696.9937535252,412067.9485046652,1416.4747,601.3298572627882,1444256.7530866778,597258.5296581687,0.38182,100000,0,1056076,11031.357720350135,0,0.0,0,0.0,47733,498.0048885453445,0,0.0,44232,458.42647335324966,1103155,0,39510,0,0,0,0,0,95,0.981887312762446,0,0.0,0,0.0,0,0.0,0.04887,0.1279922476559635,0.2973194188663802,0.01453,0.3607965638422491,0.6392034361577509,23.128130491894105,4.118656429249734,0.293271700051361,0.2817154596815613,0.2208525937339496,0.2041602465331279,11.58174575941822,6.3143576947675415,15.319856466121644,11384.646926415942,44.433494610951975,13.429008901054932,12.889349671640584,9.646402366155968,8.468733672100484,0.5963020030816641,0.8222424794895169,0.7171628721541156,0.5965116279069768,0.110691823899371,0.7632687447346251,0.9397849462365592,0.8416149068322981,0.7319148936170212,0.1575757575757575,0.523088289619505,0.7357594936708861,0.6682926829268293,0.5456,0.0984126984126984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025109601385078,0.0046212313149227,0.0067664901495323,0.0091809272330269,0.0114892275782131,0.0137520358306188,0.0160101910828025,0.0184586186137159,0.0207209416380578,0.0228702993092862,0.0250381773272796,0.0270750156517812,0.0293407079191125,0.0312187786463966,0.0333890505375678,0.035290834100001,0.0376533940868844,0.0396369294605809,0.041549317730688,0.0435158471425149,0.0582069138328861,0.0729930826627039,0.0871156892156965,0.1010566156757609,0.1135026878886897,0.1285714285714285,0.1385921171290647,0.149108797035712,0.1581916678242101,0.1660410544604363,0.1774532295066076,0.1873816351929008,0.1973589749167881,0.2068079429646153,0.2159179676755674,0.2249684406351737,0.233345605872968,0.2408954451927725,0.248656188337756,0.2549208093014739,0.2604325523360599,0.265778753107892,0.2711282154198491,0.2749044433827042,0.2783455223519155,0.2830258211925411,0.2866005892045738,0.2904526947323025,0.294740780883074,0.2973601566298306,0.2946049192413377,0.2914782846965337,0.2885470277244106,0.2854842188511036,0.2821259179361397,0.2783911792028996,0.2755008820564516,0.2759689416677541,0.2770047850137442,0.2772724855060901,0.2780333364372847,0.2791488859609447,0.2794096217499011,0.2800887409872434,0.2816434566959176,0.2834778108422823,0.2839297295773059,0.288073908174692,0.2937949234348415,0.2974405275967653,0.3014209910963216,0.3068963706077,0.3105655686761964,0.3131100765880762,0.3174310233459445,0.3209059233449477,0.3282973258800423,0.333266971929126,0.3385331143951833,0.3377483443708609,0.0,2.3520693963357706,51.26273522143082,140.3541324349979,197.48115324446675,fqhc5_100Compliance_implementation_low_initial_treat_cost,62 -100000,95742,48436,462.1273840111968,4787,48.73514236176391,3815,39.19909757473209,1512,15.395542186292326,77.33232137485312,79.69705626912891,63.31916690730778,65.07066022486765,77.13734675236846,79.50580864993444,63.24558331626341,65.00058550652672,0.1949746224846649,191.24761919447053,0.0735835910443682,70.07471834093337,231.76978,162.98545760592174,242077.2074951432,170233.81255651827,540.04276,364.36254434027495,563403.4175179128,379911.3396186678,484.59691,238.3302896797482,501254.73668818286,245115.63383899844,2480.96493,1175.954508189562,2555247.3835934075,1192287.656821387,882.99355,403.7352541953984,907699.91226421,407336.9785208984,1465.02368,621.1824465255979,1494713.5844248082,620516.0999271614,0.38108,100000,0,1053499,11003.509431597418,0,0.0,0,0.0,47074,491.0070815316162,0,0.0,43903,453.68803659835805,1107808,0,39762,0,0,0,0,0,76,0.7938000041778948,0,0.0,1,0.0104447368970775,0,0.0,0.04787,0.1256166684160806,0.3158554418216002,0.01512,0.3726434015242679,0.627356598475732,23.23661956376145,4.0715422023881525,0.3064220183486238,0.2757536041939711,0.2110091743119266,0.2068152031454783,11.614955111353824,6.518249178349573,16.027908288421127,11350.495440880826,43.9243606882438,13.035980593589986,13.28133951218406,9.104530875907509,8.502509706562254,0.5855832241153343,0.8098859315589354,0.7117194183062446,0.5826086956521739,0.1026615969581749,0.7758333333333334,0.9221052631578948,0.9047619047619048,0.7546296296296297,0.1502890173410404,0.4982791586998088,0.7175043327556326,0.6338535414165666,0.5195246179966044,0.0892857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023105922412744,0.0046252624532148,0.0069043944439931,0.0089234897146109,0.011231382762269,0.0138038528539847,0.0160316553805988,0.0183360728542404,0.0205204232912427,0.0228091728091728,0.024839308230904,0.0268155965751596,0.028904884318766,0.0307842834337504,0.0329323401357736,0.0351406660189759,0.0372345382440953,0.0392049050222531,0.0409968096272356,0.0428778237187164,0.0578834189318969,0.0719195639209449,0.0852342447220212,0.0982262083758293,0.1103285394964362,0.1258937259381478,0.13680011034834,0.1465338314653383,0.1566524980242219,0.1657212708692994,0.1769077494749313,0.1881959549394539,0.1987097195326269,0.2076629442068535,0.2159559834938101,0.2244590614134166,0.2324481142602097,0.2407713684589507,0.2481846237632749,0.2546976445935578,0.2603181949667341,0.2660405604547262,0.2707820779712339,0.2752838595314521,0.279553316744553,0.2834833799278298,0.2869271647389809,0.290177493742615,0.2929504591902729,0.295244620716008,0.2932580493379041,0.2909138374026188,0.2877873866272938,0.2851334986448302,0.282876204595997,0.2786233877376368,0.2749288199936729,0.2748427878946679,0.2759049061484267,0.2765540696949732,0.2775937880063617,0.2785069972169038,0.2793440977160545,0.2802695586200741,0.2819602102282272,0.282553368306238,0.2845567611978355,0.2886152110557488,0.2931317434267956,0.298007210490868,0.3013816534541336,0.3074637950241367,0.3121219758064516,0.3147951441578148,0.3191489361702128,0.3245318134232872,0.3262040083757104,0.329974313376803,0.3305585392051557,0.335593220338983,0.0,2.544219139991059,51.922112898841625,136.67332999096337,191.5264650114883,fqhc5_100Compliance_implementation_low_initial_treat_cost,63 -100000,95723,48451,462.2608986346019,4760,48.37917741817536,3796,39.02928240861653,1410,14.291236171035177,77.41699606751023,79.77090168548563,63.36600846061516,65.10070769399553,77.23196099056291,79.59105466485981,63.29551839071952,65.03519205479893,0.1850350769473152,179.84702062581448,0.0704900698956478,65.51563919660452,231.57926,162.88473312823356,241925.9947974886,170162.13420832346,540.60824,364.8305890434137,564123.1052098242,380496.5784586858,488.77136,239.9399696912476,507108.0722501384,247962.6166084565,2464.33874,1159.4004915875755,2532319.505239075,1169491.7855301886,884.48491,407.3193815033265,904343.6791575692,406046.0531125194,1365.28274,585.8247863721376,1383736.2180458198,575505.9633482026,0.37999,100000,0,1052633,10996.636127158572,0,0.0,0,0.0,47139,491.77313707259486,0,0.0,44100,457.16285532212737,1110204,0,39830,0,0,0,0,0,90,0.9402129059891562,0,0.0,1,0.0104468100665461,0,0.0,0.0476,0.1252664543803784,0.296218487394958,0.0141,0.3705043198714084,0.6294956801285915,23.448182425851027,4.101043052479822,0.315595363540569,0.279768177028451,0.2070600632244467,0.1975763962065332,11.859365175887,6.685931791576436,14.966034587294136,11294.409465875013,43.38270849122187,12.946802885659237,13.67624859444444,8.643277007482908,8.116380003635278,0.5993150684931506,0.8050847457627118,0.7086811352253757,0.5903307888040712,0.1426666666666666,0.7740259740259741,0.9237668161434978,0.8787878787878788,0.7457627118644068,0.1834319526627219,0.5229079893979554,0.7191558441558441,0.6347305389221557,0.5451559934318555,0.1308089500860585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024291989716391,0.0046196395465459,0.0066841123012009,0.0092303942972613,0.011479176834228,0.0136199841201978,0.0157173726913197,0.0179526433966115,0.0200298403744353,0.022046712431072,0.024183549038294,0.0262633934069543,0.0283214770344175,0.0305451998928961,0.0325169703096952,0.0347528650704254,0.0371175648392607,0.0391851805754351,0.041229720319694,0.0430248669146065,0.0577517437246794,0.0717267790438522,0.0852427714129841,0.0981173748422381,0.1101231911572374,0.1254600837669755,0.1359450915494451,0.1456718896363791,0.1557388433637111,0.1638389601475698,0.1750947622329428,0.1855883148498782,0.1959220050866247,0.2059356840127583,0.2137599156210859,0.2231699357251114,0.231068415597731,0.2395132201409099,0.2464832636220401,0.2531833834818721,0.2591685063396479,0.2644969861221438,0.2697615615473687,0.2743880554159787,0.2790489008524002,0.283304625984252,0.2871002784471886,0.2893467387716759,0.2926643419863102,0.2955074962814758,0.2919738414642334,0.2887556756608458,0.2864990165776903,0.283501362987322,0.2817807285337443,0.277967705503495,0.2742908443716432,0.2736613768695056,0.2745297579674011,0.2751186008638391,0.2767901922541098,0.278363031133738,0.2782937522076087,0.2784168842086633,0.2802294582500238,0.2818010482017917,0.2833977269522547,0.287541920258353,0.2923887425481769,0.2975323149236192,0.3030588446358091,0.3069104626185361,0.311199207135778,0.3140750771082524,0.318952802359882,0.3240365698414535,0.330297147976706,0.3299192436478235,0.3363587827015483,0.3296296296296296,0.0,2.3682860858453867,49.89454678890398,135.91742636942905,194.73833151740848,fqhc5_100Compliance_implementation_low_initial_treat_cost,64 -100000,95701,48488,462.8687265545815,4758,48.53658791444186,3766,38.83971954316047,1426,14.555751768529063,77.3508434030137,79.74050388182006,63.31502979323547,65.08270191972179,77.17066483118701,79.56385305137671,63.2483270406707,65.01932151086754,0.180178571826687,176.65083044335006,0.0667027525647654,63.38040885424334,231.0715,162.6036835869853,241451.4999843262,169908.0297875522,543.43354,366.5990917987032,567314.1659961756,382536.352354799,489.79179,240.17982844900305,508328.376923961,248306.59308438943,2472.90251,1140.7169954408998,2551401.594549692,1159398.8779845587,869.78559,389.2555420175168,895545.9190604069,393476.9436630196,1394.1607,582.653897794867,1424160.667077669,581364.5762266327,0.37986,100000,0,1050325,10975.068181105737,0,0.0,0,0.0,47295,493.6416547371501,0,0.0,44150,457.9366986760849,1108115,0,39733,0,0,0,0,0,100,1.0449211606984254,0,0.0,0,0.0,0,0.0,0.04758,0.1252566735112936,0.2997057587221521,0.01426,0.3528940516723413,0.6471059483276588,23.40366643139826,4.066286870119008,0.2995220392989909,0.2809346787041954,0.2057886351566649,0.2137546468401487,11.23202911433908,5.965218704985346,15.02236706060689,11316.5816823672,42.68958606089111,12.991364082932478,12.599059026997915,8.419771269567976,8.67939168139274,0.5847052575677111,0.8241965973534972,0.7012411347517731,0.5780645161290323,0.1130434782608695,0.772093023255814,0.9345372460496614,0.8918032786885246,0.7530120481927711,0.1180124223602484,0.5098476402824229,0.7447154471544716,0.6306196840826246,0.5303776683087028,0.1118012422360248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678130413201,0.0045228219975459,0.0068420144352292,0.0089844702821367,0.0111599422165252,0.013406409812351,0.0155974252517112,0.0177094184692689,0.0198300283286118,0.0220294545380061,0.0241718798071992,0.0263141677451161,0.0284914936948427,0.0305687203791469,0.0327151511398701,0.034610017056908,0.0364775964775964,0.0387146326780561,0.0407526445533123,0.0428818612020263,0.0582079107611,0.0725062559549361,0.0853958057812204,0.0975183833198329,0.1097503085540681,0.1255501481168006,0.1363477153319535,0.1456378911948547,0.1548845660538692,0.1643615137826325,0.1759285206182233,0.1874154335754413,0.1970601995408601,0.2065649105530937,0.2154516736194428,0.224405870355591,0.2333474708692352,0.241427044060548,0.2484758347430206,0.2551104592538271,0.2612519818996146,0.2662008590522337,0.2714720475564555,0.2758521467023151,0.2795927541338128,0.2848133229863395,0.2875159363047771,0.2898401565398592,0.2935476368898421,0.2956365935919056,0.2931375317706862,0.2901223548152318,0.2869665383642851,0.2846566029038949,0.2818734379390408,0.2781834535115935,0.2736857034795764,0.2731326462277249,0.2734382970041146,0.2739893834218048,0.2742248062015504,0.2743394079682994,0.2763133295943167,0.2767726486630305,0.2784028605482717,0.2804484281765815,0.2806849815819813,0.2852134524695954,0.2899047619047619,0.2940098276265502,0.2994458843507016,0.3032285071424834,0.308460488773105,0.3129139072847682,0.3178135766831176,0.3195718654434251,0.3256901493437924,0.3258426966292135,0.3346666666666666,0.3314436885865457,0.0,1.9255306533451664,46.780227829560914,138.99517081701717,196.50775796892088,fqhc5_100Compliance_implementation_low_initial_treat_cost,65 -100000,95723,48602,464.83081391097227,4824,49.25670946376524,3790,39.00838878848344,1426,14.500172372366098,77.26691653433518,79.62437384857417,63.2951211478972,65.03809954182626,77.08182726706534,79.44573529952989,63.2241020254742,64.9721900276937,0.1850892672698449,178.63854904427967,0.071019122423003,65.90951413255652,232.04236,163.22839540828997,242410.24623131327,170521.60442975038,542.00873,365.9439126768422,565632.9513283119,381701.5383231826,486.53836,238.8975431101207,504342.1016892492,246614.5938316832,2476.70386,1166.048498906967,2549664.970801166,1180465.1311546897,869.74467,395.3339476044952,892947.7450560471,397339.87401616527,1381.13538,591.8885111502157,1405573.3940641226,585289.707979816,0.3811,100000,0,1054738,11018.647555968784,0,0.0,0,0.0,47249,492.9849670403143,0,0.0,43916,455.0003656383523,1101792,0,39536,0,0,0,0,0,103,1.0655746267877104,0,0.0,0,0.0,0,0.0,0.04824,0.1265809498819207,0.2956053067993366,0.01426,0.3777600954843843,0.6222399045156157,22.870481983665652,3.979485204839533,0.316622691292876,0.2736147757255937,0.2081794195250659,0.2015831134564643,11.304497140486903,6.2438162153540855,15.269354580268915,11296.781438666752,43.78419349048928,12.948064286816784,13.612182192661878,9.009072508210446,8.214874502800166,0.5899736147757256,0.8100289296046287,0.69,0.5994930291508238,0.1243455497382199,0.7628691983122363,0.9278350515463918,0.8429003021148036,0.7451923076923077,0.124223602484472,0.5113243761996161,0.7065217391304348,0.6317606444188723,0.5473321858864028,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067131223919,0.0046639426537833,0.0067885700369363,0.0089698398025213,0.0114618717328071,0.0135114496044311,0.0159539222182578,0.0180479986933575,0.0199952976293918,0.0217716180805764,0.0238947033920022,0.0259640261180239,0.02810427271325,0.0301788068556361,0.0325702318191666,0.0345554717137157,0.0364613536575263,0.0384902684981533,0.0402274357348523,0.0419271484537801,0.0565017177106936,0.0704446491374979,0.0841964969723682,0.0969031810002841,0.1093502711599738,0.1249748653310897,0.1355041459193748,0.1450528849738504,0.1546893380387124,0.1638737104271559,0.1759600664122302,0.1863683155442379,0.1966240130683365,0.2052680576091123,0.2140133565493376,0.2231854458269971,0.2318297701046605,0.2399648502191228,0.247029826673633,0.2533926279112415,0.259017114291996,0.2652741208823357,0.2707460283637569,0.2741517803620669,0.2790638328897962,0.2837101506447397,0.287321191472305,0.2911526170378009,0.2947794079527192,0.2978031564755333,0.2942470412005236,0.2916166756305766,0.2887101326559413,0.2853384219504438,0.2831557200398329,0.279247537492915,0.2746822604671801,0.2747259970093826,0.2752441047213529,0.2757432372109633,0.2764025166654183,0.2772599818332609,0.278209668294114,0.2786251870379883,0.2796644795346937,0.2815963369582184,0.281185075561374,0.285781633037903,0.2904113455161222,0.2946514230892229,0.2990133382057373,0.3017319477751132,0.3055345911949685,0.3107503224338062,0.3145825533508049,0.3187536743092298,0.3253030303030303,0.3235883059671606,0.328965328965329,0.3255368098159509,0.0,2.261826864868524,51.549560074304,139.97389497921432,187.88397616894773,fqhc5_100Compliance_implementation_low_initial_treat_cost,66 -100000,95697,48175,460.8294930875576,4784,48.79985788478218,3707,38.099417954585824,1421,14.399615452940008,77.288290147924,79.65750515333504,63.294707477804174,65.04383470101303,77.10213061685421,79.4773721436367,63.22419725303987,64.97864169044861,0.1861595310697907,180.1330096983378,0.0705102247643054,65.19301056441407,232.0318,163.2267280070616,242464.61226579724,170565.73832728466,541.49047,365.6554702902557,565220.9891637147,381479.8832672451,482.0955,237.1005686087299,500149.90020585805,244925.8676053142,2390.89991,1140.0558614978313,2455416.4393868144,1148688.2169430277,833.52553,383.3849901134584,853064.5161290324,382816.6809534242,1375.1455,592.1103655171098,1395088.6861657104,582815.3986640609,0.37763,100000,0,1054690,11021.11873935442,0,0.0,0,0.0,47224,492.8263163944533,0,0.0,43603,451.9890905671024,1100720,0,39481,0,0,0,0,0,96,1.0031662434559077,0,0.0,1,0.0104496483693323,0,0.0,0.04784,0.1266848502502449,0.2970317725752508,0.01421,0.3493205435651478,0.6506794564348521,23.17229623023245,4.017753644017785,0.3148098192608578,0.2862152684111141,0.1988130563798219,0.2001618559482061,11.562223857806623,6.518233272589798,15.290072631427982,11192.66541268549,42.86467619502957,13.015182566437474,13.454034117288789,8.213798283113508,8.181661228189798,0.5967089290531427,0.8049010367577757,0.715509854327335,0.6037991858887382,0.105121293800539,0.7522361359570662,0.9043280182232346,0.8803680981595092,0.7584269662921348,0.1257142857142857,0.52954808806489,0.7347266881028939,0.6516052318668252,0.554561717352415,0.0987654320987654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382240046992,0.00423758883223,0.0064537078378049,0.0087669395964972,0.0108209258807257,0.0129519697787371,0.0152321526885667,0.0175164599601898,0.0197385233417493,0.0219618277644169,0.0240432902207555,0.0260208166533226,0.0279348563673377,0.029968486745896,0.0315729757607013,0.0338872697959942,0.0358969580253049,0.0379402669101928,0.0397948888634638,0.0416471250351749,0.0561885763819987,0.069668097581405,0.0827884423640046,0.09487276630675,0.1067115652577798,0.1227752543700833,0.1336313537275555,0.143478121903666,0.153315655539636,0.1624987920500789,0.173939766441303,0.1844023876328418,0.1957310100735094,0.2043834776611234,0.2123678414096916,0.2211657939114227,0.2302747062309231,0.2377081524741535,0.2453392481374054,0.25248593409117,0.2582713873201053,0.264132804989566,0.268369053408134,0.2731268539312349,0.2766382217244695,0.2808239478363959,0.2844201307419164,0.287227533460803,0.2897523750194674,0.2927986885072515,0.2899818096072222,0.2866098122149815,0.2846759625155244,0.281221961737721,0.2792697623900849,0.2766384340873933,0.2736520693583091,0.2736586725243021,0.2735340296265957,0.2737594467417653,0.274276521316198,0.2762636712976647,0.2770845091030706,0.2781792710858108,0.2794759825327511,0.2816406653579915,0.2818533910044384,0.286320916726512,0.2894167713129622,0.2943521332438726,0.2985487528344671,0.3044649933949802,0.3074572889387704,0.3135644310474755,0.3194214114612124,0.3223523953137687,0.320991340698716,0.3206650831353919,0.32605221097496,0.3257884972170686,0.0,2.3990353685534305,48.12327246797052,145.7370866769561,181.2462936848512,fqhc5_100Compliance_implementation_low_initial_treat_cost,67 -100000,95824,48429,462.2119719485724,4846,49.41350809818,3838,39.41601268993154,1483,15.11103690098514,77.36488025655099,79.67920949828961,63.35773544642036,65.07097346506552,77.17783740429579,79.4944092780286,63.28660620294998,65.00281859594303,0.1870428522552032,184.8002202610104,0.0711292434703736,68.15486912249469,233.04028,163.90245964138626,243196.1512773418,171045.31186486292,544.12078,367.35085156521,567213.1616296544,382739.6180134517,486.91263,239.9787859599128,503140.9354650192,246692.1781045473,2500.76605,1178.1823314055468,2572478.387460344,1192440.532422489,892.86025,404.13931623290296,918625.584404742,408687.8552745161,1435.90788,615.4538507369437,1465082.025379863,615395.8305728035,0.37956,100000,0,1059274,11054.370512606443,0,0.0,0,0.0,47445,494.46902654867256,0,0.0,43961,453.9155117715813,1102248,0,39546,0,0,0,0,0,87,0.8870429120053431,0,0.0,1,0.0104357989647687,0,0.0,0.04846,0.1276741490146485,0.3060255881139084,0.01483,0.3585798816568047,0.6414201183431952,23.28244175613253,4.020974307530887,0.3170922355393434,0.274882751433038,0.2068785825951016,0.2011464304325169,11.326666633127894,6.283531083768975,15.992548913987989,11291.756193935287,44.0791533210849,13.068605535886498,13.834061480394276,8.7677935819388,8.408692722865329,0.5849400729546639,0.8170616113744076,0.6984387838948234,0.5403022670025189,0.1347150259067357,0.7506297229219143,0.9326315789473684,0.8314606741573034,0.6898395721925134,0.1502890173410404,0.5103891197582169,0.7224137931034482,0.6434378629500581,0.4942339373970346,0.1302170283806344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903575407677,0.0045825053732916,0.0066868252293205,0.0088164790964124,0.0110228694034024,0.0133384922412739,0.0153723827193214,0.0174673826489985,0.0196168629375204,0.0216592456113414,0.0237978108473742,0.0259433720226183,0.028037287125253,0.030063502845792,0.0320056899004267,0.0341488592959636,0.0362639635912288,0.0383874176302374,0.0404007891184716,0.0423953640799425,0.0570620997517678,0.0711463689953593,0.0844315015398797,0.0977023564497836,0.1105868972271659,0.1258011720606092,0.136081950020657,0.1454918468439739,0.1555233178307803,0.1645050390378168,0.1764307228915662,0.1879439141198473,0.1983746727073215,0.2071270217436412,0.2155179992088259,0.2254732837933475,0.2331855548377035,0.241050574919152,0.2476308012816883,0.2543583881108888,0.2608449663422125,0.2657360613452538,0.2707695942354261,0.2748720524226336,0.2790666634309705,0.2827713512183116,0.2867494565353189,0.2895365079365079,0.2928833531448653,0.2962699822380106,0.2931499858997945,0.2897641470580159,0.2861081415630451,0.2838617546086605,0.2806499480635109,0.2773836462601676,0.2724468976861151,0.2732387435413762,0.2741602199566235,0.2748603750691433,0.2741390952059419,0.2756519330457837,0.2762744523101411,0.2771226941801777,0.2782856322389203,0.2789225099911766,0.2798065227844878,0.2839471464717458,0.2880918321063466,0.2928885195298587,0.2962272727272727,0.298811544991511,0.3015683063551048,0.3056379821958457,0.3049812030075188,0.3144439208294062,0.3146821161762463,0.3219720024345709,0.3199123527800602,0.3152215799614644,0.0,2.484512305384574,51.423267422846735,138.3628320228546,193.8706553379004,fqhc5_100Compliance_implementation_low_initial_treat_cost,68 -100000,95642,48092,459.54706091466096,4794,48.99521130883922,3816,39.35509504192719,1466,15.02477990840844,77.2563444549925,79.66709016453757,63.27473565930678,65.05589158662448,77.06985721924329,79.48193909813232,63.203562885308266,64.98744253430074,0.1864872357492117,185.15106640525403,0.0711727739985121,68.44905232374288,231.2728,162.65717557630032,241810.9198887518,170068.77269013648,540.51018,364.26238948137774,564618.1384747287,380339.5160324526,476.65597,233.1467994748861,494689.4251479475,240968.76706699,2482.26345,1170.346472227075,2561297.557558395,1189605.509237138,891.44,404.6078852255854,915611.1750067964,406699.8062759482,1429.47744,613.7480961604048,1465698.4797473913,615534.3313172319,0.38038,100000,0,1051240,10991.40544948872,0,0.0,0,0.0,47178,492.7124066832564,0,0.0,43202,448.0249262876142,1107258,0,39833,0,0,0,0,0,92,0.961920495179942,0,0.0,1,0.0104556575563037,0,0.0,0.04794,0.1260318628739681,0.3057989153108051,0.01466,0.3594589218221603,0.6405410781778397,23.11239100958897,4.106674765712609,0.3107966457023061,0.2667714884696017,0.2133123689727463,0.2091194968553459,11.322676813383932,6.070935459287725,15.685710218081882,11344.950744349067,44.06982031258172,12.59611155845367,13.576470223441108,9.18957706652378,8.70766146416316,0.5885744234800838,0.8222003929273084,0.7116357504215851,0.5921375921375921,0.1040100250626566,0.7572402044293015,0.9544419134396356,0.8584070796460177,0.7534246575342466,0.0790960451977401,0.5136260408781226,0.7219343696027634,0.6528925619834711,0.5327731092436975,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876740770749,0.0046015223538712,0.0069718588579141,0.009265185456097,0.0114660697934683,0.0138035716104846,0.015596947935368,0.017726511095672,0.0199558128592762,0.021902595939107,0.0241136934995639,0.0260926757581674,0.0282802285478972,0.0303120908125496,0.0321780899746913,0.0345609006529319,0.0366976281307016,0.038622552329507,0.0404782468444657,0.042368991989319,0.0562772372422586,0.0696110371992164,0.082946647909799,0.0963989852738392,0.1085398925786402,0.1243730026032297,0.1347464283439828,0.1455926048200726,0.1554199223969301,0.1646991908308471,0.1761864717424585,0.1877749127862885,0.1978847850475433,0.2072060225516946,0.2156752464765433,0.2258429709871473,0.2343085939247528,0.2414461524590903,0.2485168094924192,0.2552049279052961,0.2613399192987338,0.2662938341950687,0.2714677168716859,0.2754456515215173,0.2801256146842592,0.2834669004605905,0.2864699541226904,0.2904014984518546,0.2950573103054821,0.2984682424402483,0.2949730458221024,0.2926657846866214,0.2899528554893713,0.2879255172813229,0.2848420770479353,0.280990339277212,0.2771153114296588,0.2765251117538785,0.2763999108719127,0.2772548317823908,0.2783640665489916,0.2795590389106598,0.2802573128824072,0.2811204706511566,0.2830333389257723,0.283811502012203,0.2843167922650362,0.2887092225251481,0.2933472657610588,0.298059895320924,0.3022741629816803,0.3059151668245448,0.3102219443576117,0.311903150612828,0.3169078585821579,0.3200464846019756,0.3228486646884273,0.3244147157190635,0.3235841531507578,0.3239863584691171,0.0,2.128869380799322,51.30678483374452,143.14646152627836,189.2161711769292,fqhc5_100Compliance_implementation_low_initial_treat_cost,69 -100000,95705,48294,461.6791181234,4755,48.57635442244397,3796,39.214252128937886,1459,15.025338279086778,77.32722884548278,79.70593021273419,63.32110870231941,65.07661432941187,77.13866247707769,79.51477364369309,63.250264829383966,65.00609824498245,0.1885663684050911,191.15656904109807,0.0708438729354483,70.51608442941415,230.91904,162.5209980916839,241282.10647301603,169814.53225190315,542.50457,366.38903005708806,566390.8364244293,382371.9405194306,481.90573,237.05791722943977,500330.4529543911,245175.17521581592,2465.53727,1163.4269618384906,2549193.051564704,1188667.0130149417,853.81981,390.7591011498556,881717.9562196332,397904.7179327894,1412.55758,603.8768528828729,1455832.1299827597,614203.4520854299,0.38073,100000,0,1049632,10967.368476046184,0,0.0,0,0.0,47365,494.4360273757902,0,0.0,43683,453.2469567943159,1107865,0,39664,0,0,0,0,0,70,0.731414241680163,0,0.0,0,0.0,0,0.0,0.04755,0.1248916555039004,0.3068349106203996,0.01459,0.3670886075949367,0.6329113924050633,22.844945951631413,4.06740315089639,0.3150684931506849,0.2766069546891465,0.2078503688092729,0.2004741833508956,11.337982224945351,6.1950737709560455,15.643124158308488,11270.029556680518,43.49113122829731,12.83590276630404,13.504832613923798,8.794392892721275,8.356002955348208,0.5724446786090621,0.7895238095238095,0.6847826086956522,0.5627376425855514,0.1064388961892247,0.7591623036649214,0.9068736141906872,0.8596491228070176,0.776595744680851,0.1272727272727272,0.4916981132075472,0.7011686143572621,0.6147540983606558,0.4958402662229617,0.1006711409395973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023184238767286,0.0045504758236969,0.0067769098102871,0.009009009009009,0.0110635441982489,0.0131550813028825,0.0154079905369852,0.0173521391439339,0.0192256560243797,0.0213822695108089,0.0235463029432878,0.0255327889898834,0.0277097776223488,0.0299945389537459,0.0320030547901379,0.0339713957745168,0.0360520890528038,0.0381213404758938,0.0401593476316282,0.0421087740509891,0.056933666168806,0.0706922714666945,0.0838367946297461,0.0971281296023564,0.1091459427534856,0.125436350942518,0.1356622874970817,0.1456955757866155,0.154909564864374,0.1633878960804925,0.1745147879283975,0.1852393012533281,0.1957259380097879,0.2049451030138664,0.2139280486865418,0.2233817452668195,0.2316715215231972,0.2393561377262348,0.2469813890149795,0.2531929760254751,0.2602011876787016,0.2652743652743652,0.2706627218934911,0.2740778013394194,0.278524223723213,0.28286700357451,0.2861648207246104,0.2896859731270358,0.2933347143818944,0.297194954612624,0.293174530462666,0.2901428984032238,0.2873619873817035,0.2838836296467328,0.2822393822393822,0.2783626806430355,0.2740345825884735,0.2743943334805581,0.2749570512493409,0.2755632890041015,0.2758852031308237,0.2770646169572824,0.2776319079769943,0.2785857238158772,0.2799789201360609,0.2806091951035683,0.2820738636363636,0.2844174544543917,0.2893316150604298,0.2949214122107259,0.3002452093361184,0.3040165105572313,0.3057540428732606,0.3108056800060749,0.317767546744339,0.3158142823473957,0.3168165878944961,0.3180446590223295,0.3157321720195972,0.3205759757483895,0.0,1.6905105261183195,50.11755348398786,138.3547240186451,195.10223841396197,fqhc5_100Compliance_implementation_low_initial_treat_cost,70 -100000,95765,48047,458.05878974573176,4809,48.79653318018065,3833,39.304547590455805,1467,14.82796428757897,77.38146625236273,79.70346900919141,63.35451413110488,65.0673107266354,77.18648386550659,79.51757127481116,63.27967724012425,64.99978910595516,0.1949823868561395,185.89773438024795,0.0748368909806274,67.52162068023893,231.3025,162.6838012590296,241531.35279068557,169878.1405096117,541.22688,364.7741454933325,564418.7020310133,380162.7269809768,480.11788,235.1771103163466,497354.3779042448,242543.2629994872,2498.60885,1181.9691080517732,2562549.637132564,1187684.3502864027,878.97978,402.0307297585286,900698.5746358273,402660.1091160362,1427.91272,616.5743385181515,1443645.0686576515,602126.103450996,0.37948,100000,0,1051375,10978.697854122069,0,0.0,0,0.0,47203,492.1526653787918,0,0.0,43402,449.1515689448128,1109579,0,39861,0,0,0,0,0,91,0.9502427818096382,0,0.0,2,0.0208844567430689,0,0.0,0.04809,0.126726046168441,0.305053025577043,0.01467,0.3619276144771046,0.6380723855228955,22.924975495255868,4.140490693720794,0.3094182102791547,0.2726324028176363,0.2094964779546047,0.2084529089486042,11.25749282828801,6.07494687337441,15.732080465340102,11275.256473480107,44.12742994617284,12.900511688478288,13.523098495851835,8.921460095384676,8.782359666458044,0.5783981215757892,0.8239234449760765,0.6871838111298483,0.5765877957658779,0.097622027534418,0.7497820401046208,0.927765237020316,0.847457627118644,0.7041420118343196,0.1657458563535911,0.5052122114668652,0.7475083056478405,0.6189903846153846,0.5425867507886435,0.0776699029126213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021971123666038,0.0042867566581539,0.006735577849687,0.0090177918596149,0.011266230795042,0.0131929881711016,0.0154313437703848,0.0176940581026337,0.019912137310993,0.0221087739400883,0.0241980924281074,0.0264089384099233,0.0284668982385464,0.0306464896026353,0.0326824339649875,0.0343182311084489,0.0364893253717751,0.0385277345775013,0.0407039561170212,0.0427851475457631,0.057455668854957,0.0707543220729206,0.0838193337249307,0.0966273470846737,0.1088794703103913,0.124152448247776,0.1341459533433054,0.1442807256622093,0.1543268563126916,0.1637394921942014,0.1756510879278231,0.1867766986090981,0.1977118496606925,0.2069139043868285,0.2158813301934546,0.2249085872576177,0.2327681471642091,0.2412404077683012,0.2490548472428787,0.2538565567194627,0.2590045500329964,0.2646304772831037,0.2695404067908981,0.2742497753818508,0.278500066766209,0.28283885264065,0.2859767299448867,0.2894609774073038,0.2925942224062953,0.2944060090927061,0.2907120576530063,0.2878038730943552,0.2856921821813374,0.2830510187872749,0.2804568339447225,0.2776571008994676,0.2736185664666877,0.2739643131674926,0.2740066366034204,0.2750900988868571,0.2768090021611148,0.2773785683433463,0.2778252087541386,0.2783266577659101,0.2795660381867278,0.2805054899523513,0.2809214245336348,0.2852115965496839,0.2895258635683723,0.2933848458566585,0.2982471991326346,0.3010865571361083,0.3035559410234171,0.30783623980241,0.309011275743174,0.310825043885313,0.3153153153153153,0.3133320087423008,0.3153225806451613,0.3304543747653023,0.0,2.807921834926291,49.11676627454382,146.65051558858374,191.6243248557323,fqhc5_100Compliance_implementation_low_initial_treat_cost,71 -100000,95756,48425,460.9737248840804,4897,50.13785036968963,3858,39.7050837545428,1469,14.912903630059736,77.31912755708531,79.6685672391509,63.32066847763053,65.05820529579073,77.13782720632153,79.49210797344439,63.25282356681377,64.99468893962617,0.1813003507637773,176.45926570651227,0.0678449108167669,63.51635616455553,231.56276,162.86370949294815,241825.6192823426,170081.7857142424,542.67181,366.2271642429778,566129.8090981244,381866.1871641424,488.00207,239.7612137262508,506224.9885124692,247647.03885570087,2516.75779,1173.9942898526135,2591287.094281298,1189081.7936725852,935.34072,427.4692359441885,955015.5603826392,424670.40740678535,1431.6589,599.7295035011393,1455380.3625882452,593619.4209090981,0.3799,100000,0,1052558,10992.073603742849,0,0.0,0,0.0,47311,493.4625506495677,0,0.0,43949,455.543255775095,1105516,0,39745,0,0,0,0,0,102,1.0652074021471238,0,0.0,0,0.0,0,0.0,0.04897,0.1289023427217689,0.2999795793342863,0.01469,0.3497546614327772,0.6502453385672228,23.178918864057007,4.120401972635133,0.2998963193364437,0.2820114048729912,0.2122861586314152,0.2058061171591498,11.44859183435765,6.258444329041079,15.563477986271067,11376.408557708684,44.17201539571607,13.43042326832006,13.030493595529276,9.096294908099573,8.61480362376716,0.597459823742872,0.8106617647058824,0.6940363007778738,0.608058608058608,0.1536523929471032,0.7851662404092071,0.9210526315789472,0.868421052631579,0.7772511848341233,0.2317073170731707,0.5154562383612663,0.7188552188552189,0.6318874560375146,0.5493421052631579,0.1333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683774012901,0.0047527842803433,0.0071222758816606,0.0093542424180869,0.0115731559731925,0.0137891703074557,0.0160795309711955,0.0184311563125433,0.0206846485756937,0.0229315534079973,0.0252119795351317,0.0274460679118193,0.0295675425515503,0.0316153822381094,0.0338316773454669,0.0357065346575583,0.037827653318978,0.0400390017218845,0.0420216966623716,0.0438903470399533,0.0581825014091563,0.0723139847484753,0.0855848296694076,0.0980977717957076,0.1105816870822879,0.1261260308733347,0.1359365389102169,0.1456628826164207,0.15477499599637,0.1638226719259132,0.175644103745653,0.1871949965915361,0.1974879016910445,0.2067061704639874,0.2152883198028733,0.2245006421896452,0.2330149093830908,0.2408832197250905,0.2492455356129881,0.2556464999141434,0.261511578119033,0.2657891657891658,0.2714852305688747,0.2757127607258944,0.2805853326527139,0.2850782531480088,0.2877763589473948,0.2905533561617678,0.2936100746268656,0.29648148392459,0.2943773640781273,0.2908295862381915,0.2884712909224094,0.2860838524128163,0.283799628942486,0.2801970805153472,0.2758882526022716,0.2762627421416631,0.2768124829653857,0.2780907891452412,0.2796977857570317,0.2802860182011583,0.2814786935976247,0.281179543272987,0.2830803903234314,0.2848347880299252,0.2863548643432853,0.2910387092739666,0.2974955464738552,0.2998544395924308,0.3035133670520231,0.3079440485616257,0.3121517560883992,0.3146519035340512,0.3184367988032909,0.3179642815454651,0.3240433865622175,0.3203046702746041,0.327168887680174,0.3348331458567679,0.0,2.1868538141857106,51.00507114661345,140.3085083574554,195.74727276107777,fqhc5_100Compliance_implementation_low_initial_treat_cost,72 -100000,95666,48587,463.5920807810508,4823,49.02473187966467,3806,39.0420839169611,1460,14.82240294357452,77.34181859432726,79.72374209422155,63.3271521787835,65.08543178065916,77.1499933794706,79.53757682980526,63.2535329230216,65.01646398789515,0.1918252148566637,186.1652644162888,0.0736192557619048,68.96779276401332,231.93192,163.1071519840592,242439.23651035893,170496.46894827753,541.65797,365.1260340383725,565454.4456755797,380925.00369867287,487.71898,239.11651416901603,504750.3919887943,246113.05651278343,2482.64365,1177.9840372655822,2550123.617586185,1186358.42124222,909.71104,417.7494450557992,931943.8567516152,417705.5806688319,1422.9999,612.3517230562612,1446796.8557272176,606467.3812456554,0.3802,100000,0,1054236,11019.965295925407,0,0.0,0,0.0,47231,492.9337486672381,0,0.0,43991,454.74881358058246,1106596,0,39765,0,0,0,0,0,93,0.9721322099805574,0,0.0,1,0.0104530345159199,0,0.0,0.04823,0.126854287217254,0.3027161517727555,0.0146,0.354684702605928,0.645315297394072,23.27667027235274,4.11175867865584,0.303205465055176,0.2756174461376773,0.2143983184445612,0.2067787703625853,11.775000437237988,6.558812922423231,15.527830264602308,11317.8054919958,43.78585122101687,12.875168721750772,13.1163011374065,9.136350047157798,8.658031314701804,0.5835522858644246,0.8017159199237369,0.707105719237435,0.5735294117647058,0.121982210927573,0.7430025445292621,0.9273127753303964,0.8427299703264095,0.7075471698113207,0.1193181818181818,0.5119908641035401,0.7058823529411765,0.6511627906976745,0.5264900662251656,0.1227495908346972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303551356441,0.004652482844603,0.006939723831458,0.0093640186061627,0.0117440110627567,0.0139284841573674,0.0160637658114953,0.0183028286189683,0.0204008626416868,0.0226330497804256,0.0244547663723891,0.0265590337687946,0.0284767803131622,0.0305009995259979,0.0325227587061082,0.0347955605664104,0.0367253886010362,0.0390281887556455,0.0411027308192457,0.0432121932403411,0.0577174196918255,0.0721353703102585,0.0852785591334648,0.0974798758352186,0.10919352286513,0.1248704224756182,0.1354959199482167,0.1459369111368983,0.15537912463669,0.1640139002102192,0.1754784650346261,0.18586664935964,0.1960236233318469,0.2056675558665325,0.2145693761482019,0.2240067343796728,0.2321534219662212,0.2395833333333333,0.2465131586413518,0.2533040152087771,0.2596225018504811,0.2654419159435882,0.2708983820607437,0.2750098829617739,0.2786055152817748,0.2832224685883222,0.2874473167498343,0.2908866619188117,0.2946727943556217,0.2984151679763726,0.2956061992143357,0.2914370525100663,0.2878293177212339,0.2850937324116433,0.2816351958704777,0.2779078128107455,0.2742131610947049,0.27430441898527,0.2744957754156445,0.2744989953233636,0.2758434397064028,0.2762477639519569,0.2777337889648275,0.2792125458792125,0.2808749701171408,0.2831075118102061,0.2834496058079519,0.2877436715792109,0.2926479336529377,0.2976303317535545,0.3020502585503039,0.3058239611383916,0.3091384462151394,0.3141305987030613,0.3195628010374212,0.3234602726845322,0.3252684107061848,0.3255535607420706,0.3262119967132292,0.334597875569044,0.0,2.811228802097912,50.49550415248064,139.00297514612177,191.3508667090177,fqhc5_100Compliance_implementation_low_initial_treat_cost,73 -100000,95676,48634,465.0382541076132,4857,49.51084911576571,3849,39.612860069400895,1472,15.071700321919812,77.38307130315455,79.76070264113727,63.34642469116329,65.09781299557599,77.19359071129894,79.57261730273989,63.27482579752861,65.02909812910099,0.189480591855613,188.08533839738573,0.0715988936346789,68.71486647500546,231.50468,162.98039566987862,241966.88824783644,170345.75036310096,544.2724,366.9722683824734,568252.5293699569,382940.5540700345,489.43663,240.19793041360128,507073.27856515744,247686.54310765295,2518.7594,1182.405096758479,2594698.55554162,1198066.20328684,920.48939,418.54450430104447,946534.9408420085,422010.27263673575,1434.7579,614.6868888987908,1468775.5968058866,614897.207264428,0.38187,100000,0,1052294,10998.494920356205,0,0.0,0,0.0,47336,494.1155566704293,0,0.0,44237,457.920481625486,1105431,0,39724,0,0,0,0,0,105,1.0974539069359086,0,0.0,0,0.0,0,0.0,0.04857,0.1271898813732422,0.3030677372863908,0.01472,0.3476199881493186,0.6523800118506814,23.111752500724684,4.116161572721085,0.3052740971680956,0.2764354377760457,0.2068069628474928,0.2114835022083658,11.366106408881365,6.152888728481679,15.796626790407748,11332.07020113314,44.09034760309343,13.00227191734373,13.218669962187183,8.93756806948401,8.9318376540785,0.5811899194595999,0.8298872180451128,0.6970212765957446,0.5552763819095478,0.1142506142506142,0.7467362924281984,0.9264069264069263,0.853035143769968,0.680628272251309,0.180327868852459,0.5107407407407407,0.7558139534883721,0.6403712296983759,0.515702479338843,0.0950871632329635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470060637964,0.0049439750369785,0.0070080425147817,0.0091799017019375,0.0114991612017691,0.0135386870527398,0.0158311076678423,0.0178219640906817,0.0201465763086075,0.0221528382044326,0.0244317541035709,0.0266470878173005,0.0286528236298376,0.0306638512643559,0.032392840563264,0.0343947333064624,0.0364016823088238,0.0382152383522402,0.0403498372487234,0.0424057360818725,0.0571962851143403,0.0710950586264656,0.0845791500120647,0.0974237644584647,0.1099313588005187,0.1255682659167318,0.1365481856826349,0.1469865679737102,0.1565154295958001,0.165216645952085,0.1768085381073288,0.1878973316611166,0.1986610296594972,0.2079257696805429,0.2162804254336277,0.2259383170115655,0.2346044330299815,0.2420669774564781,0.2489754214679003,0.255833667449453,0.2612750202475992,0.2664810091034612,0.2707659881827762,0.2758008611281018,0.2796475235490732,0.2833592266528569,0.2875896332077738,0.2909090909090909,0.294042994042994,0.2976510952757983,0.294678647332598,0.2909058433974966,0.2880528795443358,0.2842530476808771,0.2806458308622939,0.27677957030354,0.2728493561892725,0.2734074425762512,0.2728915559950219,0.2726447178647104,0.2730148687124328,0.2743513815621752,0.2758169119481167,0.2758490733351068,0.2784518032162908,0.2810277291000927,0.2821940928270042,0.2868585265902952,0.2911730989682843,0.2968866261993342,0.3008375360230547,0.3043887147335423,0.3094117647058823,0.3100231360549295,0.3117026158788435,0.3144341801385681,0.3179662021938926,0.3211311253147395,0.3253298153034301,0.3240875912408759,0.0,2.396190294120785,49.69996338663207,141.48386205550193,197.74550671619664,fqhc5_100Compliance_implementation_low_initial_treat_cost,74 -100000,95703,48220,460.225907233838,4808,49.225207151290974,3813,39.36135753320168,1441,14.806223420373447,77.3960056150407,79.78207206755904,63.35197710932333,65.1137719592384,77.21619986402398,79.60182019662028,63.28464048813248,65.04809905047284,0.1798057510167297,180.25187093876127,0.0673366211908472,65.67290876556342,233.16612,163.94227445909337,243635.1211560766,171303.17174915454,541.48328,365.429576158068,565306.9391764103,381348.5430530579,490.01237,240.38864369312017,508665.04707271454,248653.55453473725,2503.95821,1179.0375783506968,2587513.348588864,1203104.6762909177,897.099,410.6346703808731,924129.839189994,415843.8633515733,1405.5076,597.8300780769986,1444540.986175982,604226.7282967328,0.37895,100000,0,1059846,11074.323688912573,0,0.0,0,0.0,47317,493.9134614379904,0,0.0,44159,458.04206764678224,1103083,0,39538,0,0,0,0,0,90,0.9404093915551236,0,0.0,0,0.0,0,0.0,0.04808,0.1268768966882174,0.2997088186356073,0.01441,0.3636182506475393,0.6363817493524606,22.70631782368972,4.019891362853667,0.3110411749278783,0.2808811959087333,0.2006294256490952,0.2074482035142932,11.150196147404971,6.0732310497306194,15.502687583032118,11222.943660766645,44.03776633350917,13.243221228580182,13.441305669516687,8.588289917201037,8.76494951821125,0.5832677681615526,0.8057889822595705,0.7048903878583473,0.5516339869281046,0.1302149178255373,0.7527993109388458,0.9232409381663113,0.859375,0.6770833333333334,0.2,0.5090497737556561,0.7142857142857143,0.6478060046189377,0.5095986038394416,0.1096563011456628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019044338867672,0.0044513394577274,0.0064757110087087,0.0088392176784353,0.0110471385266413,0.013409766627296,0.0155693995534121,0.0178970688827859,0.02012921957104,0.0222317754713504,0.0240926799261841,0.0261096337669538,0.0284468395828619,0.0303049031726411,0.0325123559334275,0.0344952345510554,0.0365755127408328,0.0387378036122067,0.0405915572057034,0.0427002126151665,0.0571541972613613,0.0708574896921241,0.0843244603863822,0.0967819934609602,0.1084106239460371,0.1230570769979064,0.1336939803765579,0.143775544959128,0.1535807743658211,0.1618285738796607,0.1732224962043308,0.1846664647862952,0.1952062236516145,0.2041811008993847,0.2121868369848406,0.2209223822119907,0.2299887386131769,0.2385144923467382,0.2460139511709018,0.2528907678244972,0.2587908093199312,0.264118360869971,0.2681973792940621,0.2720099469178901,0.2773739429623706,0.2807398946166034,0.2848809672192446,0.2885321914510857,0.2919201814994328,0.2946848480071464,0.2912830820770519,0.2886698158417197,0.285820497713436,0.2830970713103548,0.2806687874528372,0.2770272330822482,0.2733691626345569,0.2732041309889535,0.2739989122306071,0.2745460032307883,0.2751066485348634,0.2755954950359063,0.2766368336898062,0.2773192911033918,0.2782648053742436,0.2800051599587203,0.2809668523833643,0.2853231276642086,0.2904087722950933,0.294145401643534,0.3012347912614772,0.3037614582235802,0.3058926560740648,0.3109935776350586,0.3106741573033708,0.3144378698224852,0.3190909090909091,0.3221530427796746,0.328965328965329,0.3253150057273768,0.0,1.8713084910353657,50.94602724919017,146.47270717099985,186.9119818680229,fqhc5_100Compliance_implementation_low_initial_treat_cost,75 -100000,95826,48475,461.9623066808591,4806,49.057667021476426,3767,38.76818400016697,1381,14.088034562644795,77.38566316619061,79.7065972708326,63.36611244363343,65.08418932249171,77.20528037223659,79.53033813040835,63.29686472183022,65.01884776074142,0.1803827939540241,176.25914042424995,0.0692477218032081,65.34156175028727,232.50194,163.59863457436023,242629.2864149605,170724.68283593204,545.97563,368.55498256974926,569242.5124705195,384093.75594280177,486.89957,239.04751120385467,505104.0844864651,247076.75896702427,2429.03077,1145.633245323586,2501686.295994824,1162386.393383409,839.46792,385.5395757814398,861570.6071421118,387869.999563207,1337.74214,580.4690830451161,1365887.4835639596,578370.5252020654,0.37964,100000,0,1056827,11028.603927952749,0,0.0,0,0.0,47638,496.5771293803352,0,0.0,43944,455.5235531066725,1103773,0,39604,0,0,0,0,0,98,1.022686953436437,0,0.0,0,0.0,0,0.0,0.04806,0.1265936150036877,0.2873491468997087,0.01381,0.3567438148443735,0.6432561851556265,23.17484657613531,4.04888004079815,0.3089992036103,0.2851075126095035,0.2123705866737457,0.1935226971064507,11.318255135030354,6.206065102771736,14.850019765915755,11264.251835499836,43.20066766213531,13.171547537651874,13.179469115552912,8.890470651023469,7.959180357907056,0.597557738253252,0.8109869646182495,0.7036082474226805,0.59375,0.1179698216735253,0.7586206896551724,0.9273504273504274,0.8680981595092024,0.7083333333333334,0.1551724137931034,0.525891829689298,0.7211221122112211,0.639618138424821,0.5575657894736842,0.1063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788733250281,0.0045314923512058,0.0068810831108991,0.009174405136854,0.0115545791122502,0.0136849607982893,0.0159924165978656,0.0182365547504847,0.0204509218756387,0.0225549290297491,0.0245034741437619,0.026481093730755,0.0285405960945529,0.0307153885743695,0.0326568912536864,0.0349945772865774,0.0369592434322845,0.0390858208955223,0.0411916183830706,0.0431004880282203,0.0578700323354542,0.0714883030543766,0.0844661517015857,0.0971927465277048,0.1092653843723007,0.1237286524508095,0.1343002129395188,0.1437955040654727,0.1539347654500074,0.1625271771144598,0.1730456945594545,0.1839157439913583,0.1948153455350745,0.2039361655678295,0.2129795389397151,0.2225305707272848,0.230550728512231,0.2393489761763021,0.2467686939973039,0.25318061794863,0.2589414604289129,0.2642638788416213,0.268407822218026,0.2727435658470141,0.2772148987422982,0.2817482234250156,0.2861060556954451,0.2889905350784942,0.2917354519191085,0.2942382773987459,0.2913892170550961,0.2886694101508916,0.2864944545837428,0.2841955140671593,0.2814948675030735,0.2782842396200772,0.2742289531449868,0.2747650391328552,0.2750882458264413,0.2752381800373965,0.2763889407111675,0.2779932662584418,0.2790541954383762,0.2799919664375613,0.2808100706289338,0.2811441671442714,0.2842967217309715,0.2889822010528954,0.2951847312204517,0.3000950043543662,0.301857725419121,0.3070281653066596,0.3117669079111554,0.3166165413533834,0.3166542195668409,0.3185455401270887,0.321645415907711,0.3247846123021438,0.3346938775510204,0.3374764595103578,0.0,2.0540969347332947,50.43696444480117,136.59997062021222,190.2560730021847,fqhc5_100Compliance_implementation_low_initial_treat_cost,76 -100000,95763,48608,463.6863924480227,4805,48.76622495118156,3813,39.190501550703296,1442,14.692522164092605,77.37657405990127,79.72220678493542,63.3458979718325,65.07952081388511,77.19066378233809,79.5404001740795,63.27398224070268,65.01191828797344,0.1859102775631811,181.8066108559293,0.0719157311298204,67.60252591166704,231.99044,163.21501608133548,242254.77480864216,170436.4066302596,544.57718,367.44667170882553,568040.683771394,383073.0989096264,493.41179,242.6601520975936,511420.9036893164,250478.34436405852,2459.7581,1184.377874146704,2529094.472813091,1197498.0091363927,873.57207,408.7492890088288,899210.8329939537,413910.8152603563,1394.75568,605.2973044956653,1423493.9381598325,602793.3402808895,0.38133,100000,0,1054502,11011.580673120096,0,0.0,0,0.0,47334,493.6248864383948,0,0.0,44661,462.5272808913672,1104703,0,39639,0,0,0,0,0,94,0.9815899668974448,0,0.0,0,0.0,0,0.0,0.04805,0.12600634620932,0.3001040582726327,0.01442,0.3669614147909968,0.6330385852090032,22.82405735105662,4.043549571975056,0.3244164699711513,0.2835038027799633,0.1982690794649882,0.1938106477838972,11.469450535064162,6.200563485079596,15.49323804713084,11340.818555123986,44.01055858253256,13.401125729984797,14.170688609031352,8.424557994648966,8.014186248867443,0.6147390506163126,0.8251618871415356,0.730800323362975,0.6018518518518519,0.1258457374830852,0.7819063004846527,0.9224489795918368,0.8860103626943006,0.7684210526315789,0.1627906976744186,0.534368932038835,0.7445008460236887,0.6603995299647474,0.5459363957597173,0.1146384479717813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0044703950369491,0.0066255402909961,0.0088991832256491,0.0111056870881132,0.0131770552234702,0.0154581884553027,0.0178257851104667,0.0198938856459379,0.0221617139756988,0.0240552645874117,0.026288236501745,0.0284768484250349,0.030566741161083,0.0326104898279206,0.0346991090070907,0.0367083626724102,0.0389227768787086,0.0410125792701944,0.0430951885023953,0.0576146291058251,0.0711260314372666,0.0845895796205053,0.0976342865550546,0.1101051832802849,0.125676532769556,0.1366836301950805,0.1472744490907736,0.157115700890664,0.1661769752080295,0.177772512358776,0.1887078274794953,0.1984116623150565,0.2070768961442514,0.2160439463660582,0.2255608263876574,0.2343378404028449,0.2417122409020322,0.248831192410694,0.2554616652926628,0.2608761032261049,0.2666658872495148,0.271937291622331,0.2761270859769674,0.2803709953504182,0.2837455047046652,0.2876666125345092,0.2901735278063394,0.2932916510573433,0.2960782764433207,0.2928833219219461,0.2901809600899999,0.2870881242190681,0.2843436671660712,0.2824558547090777,0.2781905561064917,0.2740473300014189,0.2735830555010786,0.2745925346217973,0.274851724260397,0.2760872404335902,0.2765777629277305,0.277574065586066,0.278596926897408,0.2802739268414899,0.2811400786261121,0.2833380401016662,0.2879419820717131,0.2926523796270526,0.2959990558243833,0.3007084517846667,0.302446724546172,0.3081084442233553,0.3119831604270034,0.313841598815692,0.3154448731439261,0.3207405177603853,0.3274091627172196,0.3294875234773276,0.3352017937219731,0.0,2.399013254303242,53.463966153064966,136.24553460751787,187.1755040481297,fqhc5_100Compliance_implementation_low_initial_treat_cost,77 -100000,95756,48389,461.9136137683278,4731,48.14319729312001,3799,39.14115042399432,1439,14.672709804085384,77.3313489084019,79.69842585756955,63.31030609897547,65.0634859704809,77.143339749013,79.51455712420847,63.23885574643061,64.99648888569,0.1880091593889119,183.86873336108067,0.0714503525448577,66.9970847908985,234.09078,164.73381525618652,244465.22411128285,172034.31750295186,546.98832,368.8508251823413,570685.9309077238,384654.3247468371,487.56044,239.12798650183217,506263.5866159823,247486.84301152604,2488.0528,1173.8190707866297,2564309.797819458,1191947.93045971,869.12645,399.1368480661571,897461.7987384603,406641.79588345,1404.68952,603.1235323685027,1433626.3419524624,599081.2752301638,0.37956,100000,0,1064049,11112.055641421948,0,0.0,0,0.0,47698,497.5562889009566,0,0.0,44039,456.9844187309411,1091339,0,39121,0,0,0,0,0,82,0.8563432056476878,0,0.0,1,0.0104432098249718,0,0.0,0.04731,0.1246443250079038,0.3041640245191291,0.01439,0.3660423452768729,0.633957654723127,23.05652548008748,3.985714252848958,0.303764148460121,0.2777046591208212,0.2108449591997894,0.2076862332192682,11.13723658054111,6.024457324169354,15.416339224041392,11264.57987991285,43.555203967591694,12.88616434532528,13.19153502744813,8.864708815475224,8.612795779343063,0.5780468544353777,0.8066350710900474,0.7010398613518197,0.5755305867665418,0.0950570342205323,0.762532981530343,0.9267734553775744,0.8571428571428571,0.7440758293838863,0.1736526946107784,0.4992486851990984,0.7216828478964401,0.640625,0.5152542372881356,0.0739549839228295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316355788812,0.0046340894571929,0.0068510530322253,0.0092460881934566,0.011261673686138,0.0136163192145919,0.0156315322572422,0.0179911575808938,0.0202006771062402,0.0223180449433598,0.0246553987528716,0.0266810499820208,0.0286093587593006,0.0306100363816257,0.0327315517294769,0.0344560148082272,0.0363681550824289,0.0384272134822132,0.040594203501185,0.0423827677436826,0.0576549679520638,0.0713044934178857,0.0841533264796592,0.0968420388461821,0.1089858495539762,0.1239118707889531,0.1343839541547277,0.1443682225867615,0.1542975012290789,0.1633561901082745,0.1758657483752061,0.1874269005847953,0.1976179589348313,0.2069603485647975,0.2159513795609186,0.2245898004434589,0.2325765781862444,0.2397433732905622,0.2467009338371288,0.2532222769611493,0.2594602726410072,0.265461654628253,0.2710179612340647,0.2753012626626338,0.2791735577390797,0.2826850767428959,0.2863077288822712,0.289450585795881,0.2925954228134025,0.2951848531195612,0.2919363302431345,0.2884789715133368,0.2850978904021026,0.2824401072447891,0.2802403540189737,0.2766152156671344,0.2731712696737195,0.2724376776554383,0.272289525624447,0.2714014175830032,0.2713782367964803,0.2721944695747945,0.2722898091825681,0.2736935734934401,0.2743555406762638,0.275132823636128,0.2775594447114705,0.2811445707859553,0.2862835570469799,0.2916337181717539,0.2954566024074577,0.2994320572149768,0.303941132451983,0.3116023761185051,0.3134755703334257,0.3166589648798521,0.3238180196253345,0.3310573546625048,0.3328898350186269,0.3329633740288568,0.0,1.9949801946983017,49.51948172271708,140.23499508075108,194.57969394333836,fqhc5_100Compliance_implementation_low_initial_treat_cost,78 -100000,95487,48466,464.05269827306336,4701,47.975117031637815,3720,38.34029763213841,1373,13.949542869710012,77.22623088476638,79.7128733886182,63.24095407219974,65.07605070017884,77.04795224396476,79.53980997464511,63.172893530612,65.0124681385629,0.1782786408016221,173.06341397309666,0.0680605415877408,63.58256161594511,231.36762,162.75239832513094,242302.0515881743,170443.9676452145,541.51517,365.2378401445107,566483.1757202551,381877.03261926566,482.61486,236.8913704208181,501266.4970100642,244860.8506905814,2402.24932,1130.3726553165702,2475037.3453978025,1143219.3047246472,836.22729,379.0953649786005,858508.9802800382,380003.49732751696,1332.09452,571.4145463181902,1354791.018672699,565681.7566990043,0.38048,100000,0,1051671,11013.729617644289,0,0.0,0,0.0,47206,493.7321310754344,0,0.0,43602,452.58516866170265,1102764,0,39596,0,0,0,0,0,93,0.9634819399499408,0,0.0,1,0.0104726297820645,0,0.0,0.04701,0.1235544575273338,0.2920655179748989,0.01373,0.3587958222404259,0.6412041777595741,23.092364273172805,4.074456732153493,0.3239247311827957,0.282258064516129,0.1962365591397849,0.1975806451612903,11.495065886396675,6.218269724939857,14.738116748510487,11346.257041643568,42.61973629166908,12.68000541184401,13.722211160386246,8.239202921324415,7.978316798114404,0.5922043010752688,0.7914285714285715,0.7219917012448133,0.5904109589041096,0.0965986394557823,0.7538048343777977,0.8978622327790974,0.882183908045977,0.7230769230769231,0.1045751633986928,0.5228582404917403,0.7201907790143084,0.6569428238039673,0.5420560747663551,0.0945017182130584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024927800577595,0.0046963595605911,0.0069648912624119,0.0091713268937468,0.011300700439811,0.0132905264230749,0.0153470953785242,0.0176159238141949,0.0198676174204834,0.021895043134362,0.02411110198719,0.0262595105901706,0.0281210099262737,0.0303746029126614,0.0321747396263845,0.0342189182473287,0.0362663125790991,0.0382016632016632,0.0405375839974996,0.0426138440172502,0.0570250269529083,0.0703674171685166,0.0837487118009548,0.0967707938113907,0.1085748103058356,0.1255895788949304,0.136454977512679,0.1470045345425446,0.1563805402626336,0.1652083243754568,0.1769310501198471,0.188797535631386,0.1986328252763786,0.2086558067132928,0.2171006178287731,0.2256974922500861,0.2342084363359769,0.2429239700163444,0.2498919595132491,0.2554614713846436,0.2616049897978111,0.2670284716280051,0.2718906033184292,0.2752399370578131,0.2798148373736143,0.283323445070701,0.2868514891266134,0.2902225115851556,0.2937014824622894,0.2969749854566608,0.2939652380438303,0.2906414792989026,0.2891293017228021,0.2853823283202956,0.2831332461666468,0.2797340971403189,0.2761242495762779,0.275528472644252,0.2751700796553964,0.2757303731729516,0.275633710597699,0.2765000591739319,0.2781746031746032,0.2796445988375977,0.2799933095983369,0.2813738441215324,0.2825933157879842,0.2872131147540984,0.2918192918192918,0.2967474866942637,0.3047394866687791,0.3085666175541991,0.3144064111325091,0.3184980178023786,0.3194648093841642,0.3221120590269771,0.3211009174311927,0.3227364185110664,0.325821341297855,0.3258088788562829,0.0,2.3544799115575943,48.32249990097453,135.0034357592899,192.1989087006144,fqhc5_100Compliance_implementation_low_initial_treat_cost,79 -100000,95697,48919,465.3750901282172,4923,50.10606393094872,3961,40.69093075018026,1574,15.977512356709196,77.36399481233721,79.7467517563737,63.33329461681414,65.09646708814667,77.16043213808294,79.55102346323056,63.25516513777378,65.02469325730598,0.2035626742542717,195.72829314313367,0.0781294790403634,71.77383084068367,231.86108,163.13539688176837,242286.67565336425,170470.753400596,545.06153,367.7180003339542,568871.1871845513,383553.52200104576,492.67976,241.89743529405212,510621.8272255139,249631.60330453815,2614.14214,1226.4509797326712,2687900.665642601,1238012.966014269,922.47051,421.6837033159731,946425.1021453128,423193.9432110722,1532.45352,655.3790270039221,1557571.6480140444,646513.7765192885,0.38357,100000,0,1053914,11013.030711516558,0,0.0,0,0.0,47475,495.36558094820106,0,0.0,44511,460.9130902745122,1104280,0,39612,0,0,0,0,0,89,0.930018704870581,0,0.0,1,0.0104496483693323,0,0.0,0.04923,0.1283468467294105,0.3197237456835263,0.01574,0.3586744639376218,0.6413255360623782,23.256023926140436,4.154639120409024,0.3037111840444332,0.2711436505932845,0.2092905831860641,0.2158545821762181,11.431341781451524,6.183428737255855,16.74491638111357,11473.00687838857,45.25374256027552,13.083088384830456,13.676620205151496,9.21283306795005,9.28120090234351,0.5768745266346882,0.7905027932960894,0.6824605153782212,0.6079613992762364,0.1298245614035087,0.7556866048862679,0.9196428571428572,0.8377581120943953,0.8047619047619048,0.1684210526315789,0.5003604902667628,0.6980830670926518,0.6215277777777778,0.5411954765751211,0.118796992481203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024315863061164,0.0044520165911142,0.0069235767075448,0.009390816513202,0.0114165937442764,0.0140595390916315,0.0162593333061324,0.0184239552269292,0.020782833706647,0.0231007894817681,0.0256581173792212,0.0278941746775121,0.0299838508933438,0.0321583497336451,0.034335782694848,0.0365499343445309,0.0386906303413269,0.0409285721698162,0.0428803093619409,0.0447611902975743,0.0596983749007812,0.0736185401903007,0.0869004154601535,0.0996361188818543,0.1119052136698079,0.1275416873737747,0.1380319628408114,0.1477344057536199,0.1568686070597279,0.1660020581425263,0.1771119219054384,0.1878610840636157,0.1985882711215522,0.2080958995504708,0.2175242873331793,0.2266340393963216,0.2349122063318533,0.2428359350398128,0.2500482236670411,0.2560474407848794,0.2625036137612027,0.2679947158606016,0.2737266874940831,0.2776200232438326,0.2817542709357811,0.2858303582420288,0.2906310946641996,0.2937949251987503,0.2976502654592898,0.3015488676290613,0.2989218726923645,0.2952225454146314,0.2911207538161239,0.2892586989409985,0.2866044997039668,0.2831746515347703,0.2799307686255999,0.2794642420687295,0.2787538581555472,0.2793144438727534,0.2785314945956019,0.2789276097254162,0.2804964391320644,0.2816076597639724,0.2834145409381867,0.2853767461182946,0.2850205878176913,0.2904495610609516,0.2937827453719874,0.2983521248915872,0.3035093265886816,0.307987590051007,0.3120060218291306,0.3132172987763167,0.3145601808250141,0.3164271291127212,0.3214780600461894,0.3272133822929416,0.3301991150442478,0.3382352941176471,0.0,2.725197933048658,51.08868643975759,141.44243866335674,206.6671190221359,fqhc5_100Compliance_implementation_low_initial_treat_cost,80 -100000,95659,48575,463.6155510720371,4878,49.780992901870185,3852,39.57808465486781,1436,14.56214261073187,77.31725194233033,79.72619026060356,63.30264576078415,65.08526493251533,77.13290551153224,79.54833505180358,63.23232556457504,65.02068010541683,0.1843464307980866,177.85520879998273,0.0703201962091171,64.58482709849989,230.84578,162.41882108251804,241321.31843318453,169789.16808084754,540.20539,364.5348581209976,564040.4039348101,380398.7858363955,490.35376,241.08354592267844,508440.0108719514,248860.46565481368,2464.3614,1159.235486731194,2533027.4621311114,1168764.4099724698,884.52736,404.9612859939088,905018.8900155762,403729.2886038808,1387.36102,594.0327283974754,1408235.5659164323,582511.0576502349,0.38061,100000,0,1049299,10969.150837872025,0,0.0,0,0.0,47035,490.983597988689,0,0.0,44235,458.2945671604344,1110484,0,39866,0,0,0,0,0,102,1.0662875422072151,0,0.0,1,0.010453799433404,0,0.0,0.04878,0.128162686214235,0.2943829438294383,0.01436,0.3591756624141315,0.6408243375858685,23.32063242268536,3.9971714250630095,0.3063343717549325,0.2871235721703011,0.2113187954309449,0.1952232606438214,11.67548919429872,6.485712653969318,15.281215843721824,11349.886121825875,44.11279728500463,13.678821568624295,13.21437101267651,9.089401323147367,8.130203380556443,0.589563862928349,0.8119349005424955,0.6847457627118644,0.581081081081081,0.1223404255319148,0.7768166089965398,0.9190871369294604,0.8867924528301887,0.7303921568627451,0.1578947368421052,0.509272997032641,0.7291666666666666,0.6102088167053364,0.5311475409836065,0.1133333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026745823497826,0.0049282563504537,0.0069415549489024,0.0092267983619384,0.0116396194739787,0.013975756341041,0.0159447493522126,0.0182044785877737,0.0201551022078533,0.0224676508856946,0.0246537396121883,0.0269323249553011,0.0289869990838626,0.0308266490710765,0.0328021234624004,0.0350232798758406,0.0370593052546466,0.0389644107048279,0.0409509441814493,0.0432507375246275,0.0585912196752826,0.0725498204056841,0.0854224405811707,0.0975915150622376,0.1099330062773645,0.1251838916230089,0.1358546241946269,0.1460570040899795,0.155673838458332,0.1642992017852544,0.1752881611547991,0.1864858135683124,0.1966697502312673,0.2062828371278459,0.215812836639607,0.2245201046238418,0.2331004932044901,0.2407661508007918,0.2482475442934597,0.2547679556746113,0.2607810475661669,0.2658926420896325,0.2722227481421877,0.2762417040036418,0.2803551043210026,0.2842603316986619,0.2882693582479707,0.2912690445633251,0.2948469334988106,0.2975908372827804,0.2945773910240915,0.2917141171466597,0.2887157894736842,0.2867366480913502,0.2841379310344827,0.2808329129018942,0.2768036111681055,0.2765598926806923,0.2763750743857859,0.2763241976711161,0.2774381151207873,0.2788138424351996,0.2796477535944575,0.2801023814823058,0.2800393408016888,0.280906753914466,0.2814598622878354,0.2849740932642487,0.2901413365904728,0.2946347616982694,0.2973254759746147,0.3006594566077552,0.3047535542055489,0.3058395819132015,0.309877581534436,0.3125292740046838,0.3138508371385083,0.3173869346733668,0.321609379163336,0.3266592510196515,0.0,2.6850535780411664,49.63421694748048,142.2496008743121,195.89767554478004,fqhc5_100Compliance_implementation_low_initial_treat_cost,81 -100000,95846,48823,465.611501784112,4726,48.004089894205286,3744,38.384491788911376,1422,14.377230140016277,77.4717338221379,79.75834045256288,63.40399372213196,65.09063935454058,77.28598941727009,79.5783546075406,63.33299860103424,65.02452671461278,0.1857444048678189,179.98584502227288,0.0709951210977237,66.11263992780891,234.058,164.56859477820538,244201.69855810364,171700.6312127219,542.76246,366.672003752182,565581.5787826305,381860.7012444045,491.55608,241.0559923645785,508735.471485508,248300.78291541463,2427.32761,1154.0767248002114,2492515.410137095,1164170.6018034974,868.61134,406.41369522743344,886466.7800429857,404485.0150997621,1383.34196,596.9448761502587,1401673.6222690565,588386.5105472184,0.38277,100000,0,1063900,11100.077207186529,0,0.0,0,0.0,47339,493.176554055464,0,0.0,44343,458.55852096070777,1097923,0,39397,0,0,0,0,0,102,1.0537737620766645,0,0.0,1,0.0104334035849174,0,0.0,0.04726,0.1234684013898685,0.3008887008040626,0.01422,0.3653457339264052,0.6346542660735949,23.286097236521503,4.074911139944162,0.313568376068376,0.2804487179487179,0.2045940170940171,0.2013888888888889,11.671987861889797,6.284464778572627,15.1415484162155,11352.791428996356,43.02946699042079,12.929535833563769,13.289541255488032,8.566477335681721,8.24391256568726,0.5908119658119658,0.82,0.7078364565587735,0.5626631853785901,0.1180371352785145,0.7608510638297873,0.9242424242424242,0.8950617283950617,0.7095238095238096,0.1564245810055866,0.5130400934215648,0.7380952380952381,0.6364705882352941,0.5071942446043165,0.1060869565217391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023889057596922,0.0048525493612667,0.0071285160923969,0.0091149005278116,0.0112694089911389,0.0135928454424288,0.0156873930405019,0.0178194392027662,0.0199844780752813,0.0222633559682565,0.0243447802619854,0.0265111890550325,0.0284249671268902,0.0305381212058853,0.032532393233757,0.0348926063610078,0.0369175071114559,0.0387604933153694,0.0408472640431938,0.0429678963525677,0.057276026026026,0.0713867575421797,0.0851384915270223,0.0973846525654362,0.1092700922266139,0.1252867851516657,0.1363915929672753,0.1470700880888548,0.15592637670019,0.1647428271331039,0.1765003389684598,0.1879971468096143,0.1988620322713749,0.207369800196528,0.2154993465057277,0.2245755217545101,0.2322190413598743,0.2402541992275217,0.2477465235312769,0.2545444152280782,0.2606582547360401,0.2657226835868246,0.2710605845964962,0.2756291469902564,0.279585798816568,0.2840027061934928,0.2879079174053082,0.2911940109123208,0.2947350753976451,0.2972877032907797,0.2955021201223767,0.2915776792070533,0.2884450984514049,0.2863053253077818,0.283895363436286,0.2798563668730885,0.276178648346984,0.2770228435493857,0.2775820005421523,0.2777954706298655,0.2784330479038579,0.2788252569750367,0.2804921059729051,0.2816268726073775,0.282146930241399,0.284672849046883,0.2864287721270019,0.2888248776559499,0.2951050875442881,0.2989337691649155,0.3037433155080214,0.3059038662486938,0.3088865428802086,0.313971031985516,0.314691854484242,0.3188184064964105,0.3149677225641795,0.316778789077958,0.3218298555377207,0.3227611940298507,0.0,2.601355027739907,50.52486201519511,135.4023791264456,186.4839825728097,fqhc5_100Compliance_implementation_low_initial_treat_cost,82 -100000,95739,48369,461.5987215241437,4752,48.31886691943722,3740,38.46917139305821,1363,13.871045237572984,77.34438518034166,79.69852615943643,63.33412346583962,65.07295211500734,77.16645800893556,79.52423327387521,63.26600844686891,65.00864763662715,0.1779271714060968,174.29288556121492,0.0681150189707082,64.30447838019404,231.9867,163.21379087873316,242311.5971547645,170477.8521592383,541.72378,366.0783249860274,565209.3190862658,381751.3548929656,485.38965,238.4772792581613,503282.75833255,246215.878929892,2372.77589,1124.0576087546704,2440806.160498856,1136843.1208525226,846.41245,386.1186581204053,869832.2522691903,389102.5286275971,1319.28788,569.9742575375647,1343494.9811466592,565426.4825056335,0.37911,100000,0,1054485,11014.163507034751,0,0.0,0,0.0,47217,492.54744670406,0,0.0,43909,454.98699589508976,1105585,0,39648,0,0,0,0,0,78,0.8147150064237144,0,0.0,0,0.0,0,0.0,0.04752,0.125346205586769,0.2868265993265993,0.01363,0.3652209160924199,0.6347790839075801,23.036706580375032,3.945028043511226,0.3165775401069519,0.2911764705882353,0.2024064171122994,0.1898395721925133,11.152507373153298,6.062568910283641,14.703453103295224,11281.600485773008,42.79714092039579,13.242169796120557,13.460926305282674,8.391235016329253,7.702809802663314,0.5927807486631016,0.8044077134986226,0.7179054054054054,0.5587846763540291,0.0957746478873239,0.7443037974683544,0.9067796610169492,0.8711484593837535,0.6515151515151515,0.0886075949367088,0.5225048923679061,0.7260940032414911,0.6517533252720678,0.5259391771019678,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020157205947895,0.0043190412944957,0.0070211751336762,0.009252206412561,0.0114789434085039,0.0135697779768509,0.0156437903834002,0.0181743966528904,0.0201796241992009,0.0223472833316279,0.0242847774407738,0.0264494873294947,0.0285837668880709,0.0306382014603351,0.0325259444180816,0.0347015542328042,0.0365907938183813,0.0385987472518355,0.0409162241090822,0.0426015040726621,0.0568245881444052,0.0703663781826553,0.0837214180826515,0.0966853152736297,0.1085686568108484,0.1234681469733016,0.134319652137024,0.1446322754981542,0.1543776833201614,0.1632289879931389,0.1753307568923384,0.1865818567317886,0.197564555585757,0.2064269319051262,0.2145551315746066,0.2239797217271952,0.2323518582569984,0.2396190561858394,0.2462255697092752,0.2533626383689916,0.2592057177221631,0.2639629525680606,0.2690869945820616,0.2733191060809514,0.2778688624136214,0.2819042686986757,0.2854065967091587,0.2890612068197155,0.2931771103055411,0.2955498694241473,0.2928226576473594,0.289764688105279,0.2868895107648606,0.2835528118734765,0.2813667912439936,0.2779459889286479,0.2753593396688857,0.2759032791447702,0.2763043589350503,0.2762755283569345,0.2760814012049766,0.277297212283254,0.2792597532510837,0.2804994769292407,0.2816951993295822,0.2827843380981976,0.2851244343891402,0.2891054472763618,0.2950990978438817,0.2984115722675495,0.3037227330088336,0.3052238413383134,0.3071077057247866,0.3098370458962475,0.3117652503934092,0.3137369033760186,0.3154716981132075,0.3205518360722256,0.3234649122807017,0.3206751054852321,0.0,2.218561720882407,51.302986366514354,126.59799004244124,193.9327191476572,fqhc5_100Compliance_implementation_low_initial_treat_cost,83 -100000,95668,48221,459.9239034996028,4765,48.60559434711711,3738,38.4663628381486,1391,14.132207216624158,77.28108161739658,79.66840156676155,63.29287913429015,65.0557540669492,77.10393607447386,79.49670725338605,63.22522374029188,64.99287779303887,0.177145542922716,171.69431337549668,0.0676553939982724,62.87627391033368,231.46552,162.82903805000237,241946.18890329052,170201.7509010352,542.54065,366.1109683751081,566457.1225488146,382040.3185014308,481.12436,235.8104302016971,499431.1995651628,243819.6814347647,2411.43768,1129.0231198538793,2482331.0929464395,1142013.026181742,859.13496,392.5913859255238,880006.6584437848,392573.7780222423,1348.57974,577.472859673815,1370931.91035665,570006.5198395955,0.37839,100000,0,1052116,10997.55404105866,0,0.0,0,0.0,47261,493.3206505832671,0,0.0,43367,449.763766358657,1105696,0,39623,0,0,0,0,0,102,1.0661872308399882,0,0.0,1,0.0104528159886273,0,0.0,0.04765,0.1259282750601231,0.2919202518363064,0.01391,0.3519451723442854,0.6480548276557145,23.558911419666885,4.083376782013954,0.3063135366506153,0.2867843766720171,0.2075976457998929,0.1993044408774746,11.259873939837323,6.114821756892085,14.905792876100342,11277.299219875444,42.88343695313558,13.25109159723548,12.991616425251673,8.468623483389427,8.172105447259,0.5925628678437668,0.8106343283582089,0.7117903930131004,0.5631443298969072,0.1261744966442953,0.7735682819383259,0.9266247379454928,0.8885350318471338,0.7514792899408284,0.1714285714285714,0.5136381098732232,0.7176470588235294,0.6450060168471721,0.5107084019769358,0.1122807017543859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894190345945,0.0043694684658198,0.0065660614794442,0.0087167660594731,0.0111262534833106,0.0130442751822736,0.0153047698676509,0.0175501286396863,0.0199131101456682,0.0221189572052938,0.0244745206603096,0.0266132758355151,0.0285173644319665,0.0304672608314873,0.0323253173702136,0.034338003412087,0.0365666694290213,0.0388395869012403,0.0410689579844171,0.0430699313090882,0.0570879304580407,0.0713395671249515,0.084467864003275,0.0972211992718931,0.1091979489776539,0.1243361614793813,0.1352780077702057,0.1456946589275254,0.1551274375641464,0.1635692122695698,0.1748363369678929,0.186221918787997,0.1962733866225252,0.2053435532439091,0.2145273061795586,0.223709453839756,0.231316845293309,0.2390917486991192,0.2461001851914971,0.2529092764357207,0.2590203050977031,0.2644137284760454,0.2702465623518255,0.2746095953715596,0.2790774019405199,0.2828099764520225,0.2858949318910256,0.2895346764129078,0.2926898803892855,0.2952125551533726,0.2919458111478061,0.2900920008814455,0.2870329856455278,0.2835956941952659,0.2808636005178032,0.2774297311786781,0.2746093502878471,0.2749614463365817,0.2750981396142686,0.2755925141117185,0.2763025021505778,0.2777459445575073,0.2782712531947878,0.2791113495149971,0.2802075077455148,0.2803352709155076,0.2806574315885091,0.2858708243323627,0.2907280387173148,0.2959071231798504,0.3004826124216319,0.3048895899053628,0.3077354959451029,0.309843316590449,0.3124017386479238,0.3125936167761263,0.3177443609022556,0.3230464886251236,0.3315593400745077,0.3250188964474679,0.0,2.1512844673999028,49.52826898307834,133.1705058877288,194.14471137671083,fqhc5_100Compliance_implementation_low_initial_treat_cost,84 -100000,95741,48797,466.13258687500655,4789,48.90276892867215,3769,38.93838585350059,1426,14.633229233034958,77.3612597271838,79.72579353378332,63.34108899169471,65.08874488361296,77.17652385653051,79.54171558611966,63.27056142163567,65.0201623856041,0.1847358706532986,184.0779476636527,0.0705275700590419,68.5824980088654,232.3926,163.52915269363575,242730.4916389008,170803.681488219,546.84525,369.352766696477,570678.5076404049,385290.3423783719,490.5458,241.20417524356287,509161.95778193255,249608.36486447352,2432.02916,1151.5452004255394,2513615.222318547,1176169.4471809778,857.11622,391.6374213071044,883553.2634921297,397367.827061661,1383.84716,597.2803500677875,1421036.00338413,602938.2548835423,0.38192,100000,0,1056330,11033.20416540458,0,0.0,0,0.0,47566,496.3704160182158,0,0.0,44338,459.95968289447575,1101216,0,39480,0,0,0,0,0,103,1.0653742910560784,0,0.0,0,0.0,0,0.0,0.04789,0.1253927524088814,0.2977657130925036,0.01426,0.3476,0.6524,23.342291631874083,3.9893936689992975,0.2984876625099495,0.2931812151764393,0.2048288670734943,0.2035022552401167,11.224600539351636,6.101392293284642,15.3278750946377,11375.742751957268,43.360757850700026,13.59700859695938,12.839003540106576,8.547803218991833,8.376942494642243,0.5956487131865216,0.8244343891402715,0.7128888888888889,0.5764248704663213,0.1134289439374185,0.748135874067937,0.9267782426778244,0.8510028653295129,0.6699507389162561,0.1525423728813559,0.5238095238095238,0.7464114832535885,0.6507731958762887,0.5430579964850615,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025121301445487,0.0048057425581961,0.0070731261797,0.0092552143125641,0.0116037831790908,0.01381845583593,0.0160504150266147,0.0180936335324449,0.0202132771683008,0.0221949221949221,0.0245762972532373,0.0265803933651722,0.0286739825775729,0.0309457830704727,0.0330939260726889,0.0350567048144817,0.037186616546025,0.0390071289964406,0.0407615759756262,0.0427597991206318,0.0584175576344804,0.072345146637081,0.0854697268493265,0.0987340174966352,0.111225877169869,0.1272237196765498,0.1380930163510275,0.1475751707701147,0.1570200267022697,0.1656179317589803,0.1772856466129796,0.1883031194565828,0.1981714608744809,0.207109129066107,0.2155726802027108,0.2251817588278907,0.2342460866075012,0.2418198570722279,0.2495211325074522,0.2549351704564961,0.2607765845538511,0.2658567924307908,0.2711732160590154,0.2758179163774741,0.2797648627355917,0.2837912594504886,0.2876190713991435,0.2906966406299612,0.2941937152463468,0.297046146545929,0.2932568264889271,0.2902159299805196,0.2879032597856771,0.2854754079455688,0.2829886591060707,0.2799975552737329,0.276769939424533,0.2766169642273232,0.2777938302031104,0.2789932993263779,0.2792159349472192,0.2803618589617249,0.2806380224644035,0.2807927847678432,0.2809446254071661,0.2821086012840841,0.2837691870380898,0.288672732977722,0.2937825463949953,0.2992054393801636,0.3026238540396513,0.3064659919240652,0.3091247672253259,0.3143285821455364,0.3189798558491961,0.3231324179660228,0.3262144683411039,0.3280845126569663,0.3346196251378169,0.3274301456119638,0.0,1.685481125925814,52.999107001957405,130.29947270896986,191.75612808626693,fqhc5_100Compliance_implementation_low_initial_treat_cost,85 -100000,95648,48261,459.7377885580462,4881,49.88081298093008,3871,39.84401137504182,1465,14.86701237872198,77.2430810454354,79.64741397813582,63.27207635196621,65.04996007293437,77.05154060968292,79.46209061363038,63.199068466990525,64.98261101923922,0.1915404357524863,185.323364505436,0.0730078849756878,67.34905369515332,230.58266,162.30235417233644,241074.2096018736,169687.13843711987,543.34136,365.76445681478464,567450.6733021077,381793.9913168959,482.14567,236.0893989309049,500597.3151555704,244136.7639061901,2513.07514,1164.7282648888192,2588167.1336567416,1178470.2501764996,907.57257,408.8761748591532,934298.8457678154,412911.6812261127,1424.2595,612.1757848405099,1447418.1791569088,602936.5627208245,0.38021,100000,0,1048103,10957.91861826698,0,0.0,0,0.0,47305,493.9360990297759,0,0.0,43603,452.3879223820676,1107819,0,39772,0,0,0,0,0,106,1.0977751756440282,0,0.0,2,0.0209100033456005,0,0.0,0.04881,0.1283764235554036,0.3001434132349928,0.01465,0.3622418879056047,0.6377581120943953,23.279652068416947,4.094007100206706,0.3079307672436063,0.2792560061999483,0.2045982950142082,0.2082149315422371,11.004186337992612,5.806103861278808,15.809099826287556,11357.517399263008,44.35989522468165,13.186231570013282,13.383996346827493,8.917556300822863,8.872111007018006,0.5846034616378197,0.7964847363552267,0.714765100671141,0.5757575757575758,0.1166253101736972,0.7444146559428061,0.931350114416476,0.8371335504885994,0.698019801980198,0.1618497109826589,0.5196220930232558,0.7049689440993789,0.672316384180791,0.5338983050847458,0.1042654028436018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021992054483541,0.0046152597731929,0.0070454706963239,0.0092461821396275,0.0115345885081321,0.0136463160038698,0.0159979607443283,0.0180526057833687,0.0202981839005235,0.0228357261351301,0.0248179673879602,0.0267008985879332,0.0288579215303131,0.0311134921289046,0.0331963913375585,0.0355200297809856,0.0375009064445618,0.0396915188441298,0.0417117416992593,0.0437452433824372,0.0586864517477402,0.0720450831692294,0.0848740642749903,0.0975527603810325,0.1099005510863368,0.1256325562683944,0.1361081896505933,0.1463492638828182,0.1553572574950247,0.1645759945012458,0.1760085452564116,0.1874864501582621,0.198061424526247,0.206403784452645,0.215730138963887,0.2248388778577688,0.2333206635961185,0.2414970586246534,0.2491702659695385,0.2556091856505738,0.2611350574712643,0.2670311530491588,0.2715151802207171,0.2760907629944112,0.2797081179689875,0.2837522674267945,0.2874436090225564,0.2908233494774407,0.2945313006811547,0.2968167517119213,0.2940574046624444,0.2916798568577524,0.2886855241264559,0.2858010586295664,0.2832363923062047,0.2796071280817614,0.275801416641577,0.2761594952930159,0.2763849989753398,0.2759341287418733,0.2770544090056285,0.278391541933951,0.2790541814145391,0.2797273133661153,0.28092072102345,0.2818499582637729,0.2826807659331237,0.288041256564259,0.2919915700737618,0.2953757916119011,0.299556652497829,0.3036131774707757,0.304938659955961,0.3051903640094232,0.313042657606644,0.3158205430932703,0.3183849591616582,0.3174054493696625,0.3268652637332604,0.3412213740458015,0.0,2.4882310834562684,48.47323570751098,144.76279373485252,202.0124062557257,fqhc5_100Compliance_implementation_low_initial_treat_cost,86 -100000,95823,48523,463.11428362710416,4803,48.98615155025412,3831,39.44773175542407,1475,15.090322782630476,77.44904619750217,79.77465786276896,63.38601454967061,65.10664634083085,77.25410910427303,79.58107040415966,63.311859869995295,65.03491067015538,0.194937093229143,193.5874586093007,0.0741546796753169,71.73567067546571,232.82358,163.73036639493608,242972.3135364161,170867.2859302423,546.38408,368.7149806643978,569665.341306367,384252.06856015546,486.97076,238.68794478103413,504969.5480208301,246634.03960553865,2508.13527,1185.227620967164,2584491.677363472,1203977.8426767727,867.55784,399.05159440971886,890461.820231051,401569.6039028689,1429.33012,618.4847626635037,1463055.675568496,621034.4002557361,0.37965,100000,0,1058289,11044.196069837097,0,0.0,0,0.0,47600,496.1856756728552,0,0.0,43972,455.5169426964299,1105642,0,39656,0,0,0,0,0,93,0.9705394320778936,0,0.0,0,0.0,0,0.0,0.04803,0.1265112603713947,0.3070997293358318,0.01475,0.3621654015181781,0.6378345984818218,23.140396746272444,4.112276881806698,0.30409814669799,0.2777342730357608,0.2158705298877577,0.2022970503784912,11.464811398432252,6.233631866976645,15.887077837810924,11265.284772051547,43.887132913921086,12.987507508800794,13.164779195209288,9.238528190357693,8.4963180195533,0.5831375619942574,0.8045112781954887,0.7012875536480687,0.5828295042321644,0.1019354838709677,0.7449152542372881,0.909706546275395,0.8819875776397516,0.75,0.1122994652406417,0.5111278762731045,0.7294685990338164,0.6322657176749703,0.5191986644407346,0.0986394557823129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021672422348926,0.0045513060930737,0.0067983724493419,0.0088580977438262,0.0110741633362823,0.0130939895940455,0.0153135609636736,0.0175854009532654,0.0196116504854368,0.0216614994218825,0.0236511758979351,0.0259031198686371,0.0278474506578947,0.0298681108239727,0.0320438114293375,0.0342579678702412,0.0364106810184226,0.0384894548018498,0.0405805533334025,0.0425762260183421,0.0569851982433997,0.0710387655250282,0.0849088241458813,0.0977285621230905,0.1097459457750708,0.1253183686841465,0.1358928968931195,0.145775509118945,0.1544796978684362,0.1632738292837026,0.1754091661827644,0.1866344014000821,0.1968733036586689,0.2059757521525148,0.2146268099634439,0.2239182094501243,0.2323128835039032,0.2389877111273217,0.2464488234428586,0.2532612917228302,0.2587253589400304,0.2640769903762029,0.2696672958942898,0.2742850997215683,0.2783410249887956,0.2821265773016009,0.2860189307493733,0.2891280647042418,0.2919762641898865,0.2945336014615617,0.2910129535763134,0.2877639674948268,0.2853436185133239,0.2821582733812949,0.279035403983687,0.2752857729950227,0.272982996511299,0.2739167983835487,0.2750330385280065,0.2764457980663668,0.2771520963425513,0.2771424095253015,0.2783918553916476,0.2783990060347888,0.2805206570195723,0.2824272094820922,0.2843203609701071,0.2877044592325393,0.2922627127492951,0.2956907030545426,0.2990582616140224,0.3026378139314484,0.3091669788934682,0.3146058965102286,0.3174869500372856,0.3175920514319111,0.3203868822729333,0.3189863234111021,0.3218453188602442,0.3267215568862275,0.0,2.033288616617591,51.37155618484484,139.7117010564729,191.6141752777797,fqhc5_100Compliance_implementation_low_initial_treat_cost,87 -100000,95804,48778,465.0745271596176,4816,49.00630453843263,3885,39.914826103294224,1457,14.76973821552336,77.3497797498425,79.68241464636188,63.33168066437421,65.05956973384647,77.15641096185148,79.49321486953929,63.25817693766497,64.9900989187084,0.1933687879910195,189.1997768225906,0.0735037267092408,69.47081513807518,232.5037,163.62456727663272,242686.61016241493,170790.73971716498,540.60682,364.3269021814449,563643.3134315895,379643.2937804736,492.39667,242.18822904273657,509560.5611456724,249477.39927655284,2508.78975,1179.000108889712,2578766.1162373177,1190795.088003331,895.52735,407.4801262558945,917722.0366581772,408499.0066489066,1409.5609,609.350697550335,1430267.3583566449,603537.6929249488,0.38216,100000,0,1056835,11031.209552837045,0,0.0,0,0.0,47094,490.88764560978666,0,0.0,44381,458.9683103001962,1103582,0,39601,0,0,0,0,0,93,0.9602939334474552,0,0.0,1,0.0104379775374723,0,0.0,0.04816,0.1260205149675528,0.3025332225913621,0.01457,0.3695695298551875,0.6304304701448126,23.35138730765313,3.9939411399421503,0.3181467181467181,0.2787644787644787,0.2041184041184041,0.1989703989703989,11.45777953336976,6.420767750012554,15.651209968686665,11361.127293533018,44.46101751005115,13.269204722945966,13.888465224924731,8.85693784140071,8.446409720779743,0.57992277992278,0.8088642659279779,0.68042071197411,0.5573770491803278,0.1216041397153945,0.7527993109388458,0.9046563192904656,0.8652694610778443,0.7164179104477612,0.1885714285714285,0.5062408223201175,0.740506329113924,0.6119733924611973,0.5033783783783784,0.1020066889632107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.0043902785241363,0.0064241784561674,0.0088794968962399,0.0108635947512969,0.0130034112316073,0.0153752039151712,0.0173534906035952,0.0196755828572012,0.0217504785105272,0.0239259464280222,0.0259253555110631,0.0280602539715181,0.0302331328775022,0.0322667161808091,0.0345636404968071,0.0366747406993354,0.0387411963613355,0.0411337496233648,0.0433234421364985,0.0581944893636999,0.0720455068281155,0.085703804632638,0.0978247162673392,0.1096623907750361,0.125604017975152,0.1360290217875554,0.1462355520551735,0.1563931939801117,0.165846124143257,0.17775790358382,0.1885491639157963,0.1986359483096201,0.2073221391403209,0.2162251364196444,0.2254318607408392,0.2337607266802807,0.2408740244259013,0.2489278663974042,0.2547221649838588,0.2602711205700009,0.2664804012111151,0.2716961941481183,0.2763099613326469,0.2810478929295135,0.2847068379855265,0.2884322298563397,0.2919747909837107,0.2952462216706098,0.298377423649281,0.2950341060449096,0.2920839753466872,0.2890450110521351,0.2864145759525703,0.2835102828717796,0.2794835314455306,0.2758168281618007,0.2754964934128596,0.2757850210646608,0.276554392596687,0.2768292910971072,0.2770960741763661,0.2798438119897267,0.2798013982277241,0.2807370184254606,0.2819016495487084,0.2828960403045484,0.2874469942629084,0.2915017704644865,0.2985986064354498,0.3060406913935902,0.3106903063365506,0.3124142233312539,0.3177548856233904,0.3189647146448189,0.3232134516581036,0.3272259236826166,0.3288844621513944,0.3305563020693362,0.3347264437689969,0.0,2.362152214455258,50.20518364883811,140.58995164922885,202.21422078023213,fqhc5_100Compliance_implementation_low_initial_treat_cost,88 -100000,95802,48484,462.8087096302791,4809,49.15346234942903,3800,39.10148013611406,1457,14.790922945241226,77.41775944651599,79.74360617243451,63.37436231324406,65.09419808499209,77.23337117295394,79.56425884943549,63.30463216671332,65.02873038126853,0.1843882735620496,179.34732299902123,0.0697301465307447,65.46770372355581,231.95304,163.22113541294223,242117.11655289037,170373.41121578068,543.47905,366.7086577113532,566738.6693388447,382222.278983062,485.37068,238.2194228585444,502832.5609068704,245728.6546817112,2462.07978,1151.8573592519576,2536254.51451953,1168618.744130558,893.65927,405.6047039652558,919625.4775474416,410184.5827490603,1415.30342,601.9680490100177,1439497.3173837706,599084.0975205074,0.37947,100000,0,1054332,11005.323479676832,0,0.0,0,0.0,47375,493.9354084465877,0,0.0,43764,453.0281204985282,1109260,0,39755,0,0,0,0,0,91,0.9498757854742071,0,0.0,0,0.0,0,0.0,0.04809,0.1267293857221914,0.3029735911831981,0.01457,0.3590863952333664,0.6409136047666336,23.46739668942895,4.066228821295286,0.3092105263157895,0.2781578947368421,0.2081578947368421,0.2044736842105263,11.649808450259748,6.5280363125157095,15.580459961150346,11314.63635841666,43.23266204162093,12.928953272836724,13.042914985790782,8.85663573437109,8.404158048622323,0.5821052631578948,0.804162724692526,0.6970212765957446,0.5651074589127687,0.1235521235521235,0.7515204170286707,0.919831223628692,0.8529411764705882,0.7178217821782178,0.136094674556213,0.5084937712344281,0.7101200686106347,0.6421173762945915,0.5127334465195246,0.1200657894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022883990319869,0.0044296676228801,0.0067782163549837,0.0089780829152363,0.0112462376962498,0.0134268496274278,0.0154214657017633,0.0179431697558585,0.0202375355178969,0.0222499692962705,0.0246412464124641,0.0264738187380026,0.0287928783626813,0.0307307430971647,0.0326765036450438,0.034797607858124,0.0368319741689779,0.0387737541080481,0.0405156920391859,0.0423217074440395,0.0567913858224995,0.0710888087397417,0.0846130462583465,0.0974105782866747,0.1097266838696087,0.1255520104802755,0.135767026494486,0.1455544806030129,0.154791626656424,0.1639351286500846,0.1752680424566346,0.1863414423367757,0.1963064295485636,0.2057336870489852,0.2144128113879003,0.2240164578102706,0.2326758051933578,0.2405061869792719,0.2480125025480736,0.2549077895795936,0.2607254627972238,0.2662590003617649,0.2711690335375571,0.2757086472909939,0.2796973885211319,0.2844314323672686,0.2877492166140248,0.2902202195849463,0.2930001291489087,0.2960322992148765,0.2934420950949876,0.2906271442294497,0.2881339269412805,0.2859837304729681,0.2834976755204169,0.2797545450382379,0.2765605296343001,0.2757465856368032,0.2755495204956293,0.2754160604662716,0.2761422076470149,0.2773227791057643,0.2776692573043514,0.2790785247535718,0.280353306278348,0.2801023440932468,0.2803579999435331,0.285545281902805,0.290836515098924,0.2954928803985407,0.2986714703895519,0.3006144635260753,0.3044263213596463,0.306727736897432,0.3101519530157546,0.3137947269303202,0.3192660550458716,0.3194945848375451,0.3272286560732561,0.3246311010215664,0.0,2.2024881636285403,49.91489479753676,132.29829830876034,198.39742410407877,fqhc5_100Compliance_implementation_low_initial_treat_cost,89 -100000,95720,48666,464.0931884663602,4786,48.620977852068535,3793,39.03050564145424,1462,14.855829502716256,77.3893283971574,79.74984752777456,63.35181630130408,65.09367508057328,77.19990073727165,79.5657363482318,63.27940102391475,65.02590577555141,0.1894276598857516,184.1111795427679,0.0724152773893251,67.76930502186929,231.9812,163.20106508452096,242353.94901796908,170498.39645269638,543.32177,367.1088166817851,567018.2720434602,382926.1770599511,486.76113,239.3914574941796,504887.8813205182,247284.5163387842,2460.72516,1162.8207917356103,2532463.821562892,1176525.2838859267,879.33984,401.7701585734516,902703.8132051816,403783.0305945071,1412.5649,607.458755322347,1436947.0956957794,601318.4794855322,0.38234,100000,0,1054460,11016.088591725867,0,0.0,0,0.0,47319,493.71082323443375,0,0.0,44050,456.5921437526118,1105729,0,39584,0,0,0,0,0,83,0.8671124111993314,0,0.0,1,0.0104471374843292,0,0.0,0.04786,0.1251765444368886,0.3054743000417885,0.01462,0.358974358974359,0.6410256410256411,23.60630105543156,4.023353477627831,0.3263907197469022,0.276562088056947,0.1932507250197732,0.2037964671763775,11.432365726228817,6.4208449804955565,15.5394883051514,11387.86735604055,43.1453602057845,12.762787511825234,13.940756912067146,8.161824085246254,8.279991696645851,0.5924070656472449,0.8093422306959008,0.6946688206785138,0.6084583901773534,0.1190168175937904,0.7458223394898856,0.9166666666666666,0.840782122905028,0.6861702127659575,0.1383647798742138,0.5267319277108434,0.7341977309562399,0.6352272727272728,0.581651376146789,0.1140065146579804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091647508026,0.0047634974206168,0.0069383159368248,0.0091690951737863,0.0114269448172095,0.013659589194471,0.0159995108429805,0.0183975837227811,0.0204154618001982,0.0227670394662792,0.0249615739317553,0.0269216563384905,0.0293872853752016,0.0313841339770048,0.0334440227703984,0.0355378733078433,0.0376006791312089,0.0395303245614944,0.0416168629366704,0.0435113231525656,0.0577989411359293,0.0716386048993857,0.0851391889907487,0.0985006203604399,0.1111626485067625,0.1259730095608765,0.1366601954107126,0.1466216647856732,0.1557611761689033,0.1659177435787441,0.1773556050962273,0.1885737158682764,0.1988300914398791,0.2078558306359898,0.2167158135645438,0.2263703638055567,0.2342363459799752,0.2427170269723078,0.2501872234199478,0.2564402139674467,0.2615592734336158,0.2665957645738862,0.2727165279878971,0.2767930873535431,0.2802615774723075,0.2835453628288097,0.2880375,0.2917555894308943,0.2951947447369782,0.2977179652625064,0.2945479437345646,0.2913288612700111,0.2885160349036222,0.285315007707712,0.2832090214881904,0.2801267693620393,0.2765194412986032,0.2763089261263611,0.2772188194574051,0.2781976228490331,0.2792325014423166,0.2803738317757009,0.2802823647002478,0.2803296166318688,0.2830179663608562,0.2835863279636514,0.2839478290328044,0.2873856493870185,0.2900079825078957,0.295358318958758,0.2972510139702569,0.3008211390672702,0.3033293772253108,0.30575161435651,0.3083798882681564,0.3088821185844856,0.314878892733564,0.3174034249303066,0.3286462641301351,0.3207692307692307,0.0,2.195838604959988,48.97593622016591,134.48640465084205,198.287149041668,fqhc5_100Compliance_implementation_low_initial_treat_cost,90 -100000,95661,48874,467.1809828456738,4799,48.82867626305391,3814,39.16956753535924,1540,15.61764982594788,77.35982293729873,79.73517241829666,63.33991942654043,65.0896943831532,77.16736416183423,79.54890190753933,63.26750394162116,65.022703803964,0.1924587754645017,186.2705107573248,0.0724154849192757,66.99057918919493,230.95732,162.44923589805092,241432.8723304168,169817.39256128506,543.64321,366.9903917504837,567595.4777809138,382935.9596045109,486.00991,239.2665156918794,503650.5576985396,246756.92317457905,2541.25888,1196.5442819628074,2610840.729241802,1205919.3288654378,915.72321,422.0861196657284,938100.7516124648,422428.1626016852,1513.97764,639.532591329962,1537307.512988574,630435.8460900284,0.38247,100000,0,1049806,10974.2214695644,0,0.0,0,0.0,47306,493.7539854277082,0,0.0,43882,454.4380677601112,1109943,0,39783,0,0,0,0,0,98,1.0035437639163296,0,0.0,3,0.0313607426223853,0,0.0,0.04799,0.1254738933772583,0.3209001875390706,0.0154,0.3639272145570886,0.6360727854429115,23.392629963447167,4.144336880154766,0.3104352385946513,0.2582590456213948,0.2037231253277399,0.2275825904562139,11.41537306505742,6.0132936944783815,16.356329591187077,11391.805477390712,43.6596014674449,11.99693307237899,13.501241816183454,8.596086720113387,9.565339858769075,0.5747246984792869,0.8020304568527918,0.6976351351351351,0.6023166023166023,0.1244239631336405,0.7737355811889973,0.9152542372881356,0.9,0.8011049723756906,0.1857923497267759,0.4912541868254559,0.7202797202797203,0.6127098321342925,0.5419463087248322,0.1080291970802919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468789241301,0.0045408013298061,0.0069294374270785,0.0091710507606995,0.0112656580445745,0.0134256196244083,0.0157124079112279,0.0179569848589968,0.0201944881407178,0.0223524838366478,0.0246378593234577,0.0268376506796614,0.0288198655621107,0.0305595024814151,0.0327182332979195,0.0348616077888252,0.0369891092798873,0.0388006140059741,0.0407119391192248,0.0428951070814444,0.0580866912525203,0.0721016920757245,0.0860561532406192,0.0986131863044256,0.1107958441010495,0.1259840853297215,0.1367095863364718,0.1467389567644145,0.1559636950641964,0.1646989374262101,0.1763900862068965,0.1877504169103155,0.1984309202293772,0.2069403254577091,0.2153505681317713,0.2250058145330099,0.2336885566032472,0.2417951715146338,0.2491241595900273,0.2553266964183545,0.2617968695813007,0.2680702820869524,0.2735754236185836,0.2778815080789946,0.2817534884284796,0.2852398932441241,0.2883578064129458,0.2917793436170888,0.2952340348565301,0.2987512513831076,0.2955149724721364,0.2924297756665477,0.2904877088372616,0.2881131178022168,0.2844998667101093,0.281037668147741,0.2779803912281532,0.277070741814489,0.2771626946894351,0.2775104266923324,0.2781048500140173,0.2780843515963737,0.279093567251462,0.2798137545391762,0.2816702560421153,0.2832206769740761,0.2853306953080836,0.2915288095386728,0.2948526084989385,0.2976828499369483,0.3020531837916064,0.3079363400835404,0.3132196564525262,0.3141858521388952,0.3181392736802695,0.3266129032258064,0.3294260922514842,0.3315979175010012,0.3369826435246996,0.338654503990878,0.0,2.566944960575653,48.51288827497663,142.8279214408851,194.17197367317084,fqhc5_100Compliance_implementation_low_initial_treat_cost,91 -100000,95853,48342,461.9991027928182,4892,49.64894160850469,3876,39.84225845826422,1495,15.221224166171115,77.34109898624328,79.63174771067766,63.34986309044478,65.04410713537486,77.14832428020294,79.44324057092084,63.27665802245157,64.97485950226431,0.192774706040339,188.5071397568225,0.0732050679932072,69.2476331105496,232.39788,163.53534210161345,242451.9211709597,170610.11664070346,545.76508,367.3394291943934,568765.6515706342,382621.1262937972,484.14047,237.3079543935814,501207.4113486276,244610.7016401407,2543.80751,1202.9625417410375,2616071.400999448,1217257.3900045257,904.64962,411.6525466362119,930952.6671048376,416663.207170734,1457.23658,626.4616861723697,1484914.4210405515,623946.861660173,0.38056,100000,0,1056354,11020.54187140726,0,0.0,0,0.0,47561,495.5504783366196,0,0.0,43810,453.21481852419856,1103663,0,39659,0,0,0,0,0,96,1.0015335983224314,0,0.0,0,0.0,0,0.0,0.04892,0.1285474038259407,0.3056009811937857,0.01495,0.3699059561128526,0.6300940438871473,22.808462407007934,3.997523349566615,0.3010835913312693,0.2886996904024768,0.1994324045407636,0.2107843137254902,11.396996528386603,6.195761848738577,16.023545282069076,11245.714544568084,44.54708919397517,13.69148713549912,13.427269572149696,8.526402474251883,8.901930012074462,0.5794633642930856,0.8185880250223414,0.6863753213367609,0.5472186287192755,0.1297429620563035,0.7504288164665524,0.935483870967742,0.8297872340425532,0.7025641025641025,0.1694915254237288,0.5059040590405904,0.735474006116208,0.630071599045346,0.4948096885813148,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021264746088805,0.0046306147470387,0.0069987523963119,0.0090462363189635,0.0109670075010672,0.0131380770170153,0.0153529549599111,0.017230298393267,0.0192735889526688,0.0212570072425221,0.0232827320590826,0.0255276814834567,0.0275466814568312,0.0295188904436579,0.0316341566457489,0.0333684253983981,0.0355602891147669,0.0376103443988561,0.0393475981354014,0.0414395105913687,0.05614357070607,0.0701692045608937,0.0836082916967811,0.0960617517328292,0.1075132943716106,0.1223819431975411,0.1342303210085814,0.1442316892947893,0.1536499738563486,0.1625262571269344,0.1750608036848109,0.1857987909723048,0.1959626924080355,0.2053384050367261,0.2135541008856372,0.2232955930250592,0.2325140300572359,0.2398596207059458,0.2479945538094967,0.254714712651575,0.2606326990920132,0.2661560947091493,0.2712359550561797,0.2751173821387505,0.2794983549636392,0.2830067775723968,0.2860484607397956,0.2893759853532014,0.2919996896096842,0.2952525385731241,0.2923863330642992,0.2885017038584148,0.2864842804469588,0.2833834325683566,0.2806097434145037,0.277187719996327,0.2728365764910615,0.2723272918308379,0.2730694865082216,0.2740581655480984,0.2754417923341283,0.2769105980572536,0.2773313752229099,0.2783294850814858,0.2799160758211547,0.2815470594380027,0.2825492652921745,0.2861588758605514,0.2898003426693241,0.2945243362831858,0.2978839095563913,0.3007129654079746,0.3061045234958278,0.3086989409984871,0.310076063480139,0.3120785519933751,0.3090797921125038,0.3139418254764293,0.3170665212649945,0.3266082984392843,0.0,2.1537243301638624,50.47129729169248,145.49247064292368,196.34402736027064,fqhc5_100Compliance_implementation_low_initial_treat_cost,92 -100000,95641,48483,462.1553517842766,4787,48.69250635187838,3780,38.926820087619326,1457,14.826277433318346,77.31769350596971,79.74068581205682,63.289715480586615,65.08154184488885,77.12925433570321,79.55633583634524,63.21681025234628,65.01274924542341,0.1884391702665055,184.3499757115836,0.0729052282403373,68.79259946543925,231.90574,163.07836894602715,242475.2355161489,170510.94085802865,540.00241,364.9197568912533,564030.5412950513,380968.2007624903,484.7488,238.0657297301599,503093.58956932696,246015.196742314,2486.38016,1181.26189672069,2562366.5687309834,1197765.337795182,881.60907,404.7808004950485,905415.6899237776,406855.16723481385,1416.64388,613.3068358707602,1443269.8319758263,608584.8664352491,0.3806,100000,0,1054117,11021.601614370406,0,0.0,0,0.0,47136,492.2261373260421,0,0.0,43917,455.4845725159712,1102345,0,39556,0,0,0,0,0,81,0.8469171171359563,0,0.0,1,0.0104557668782216,0,0.0,0.04787,0.125775091960063,0.3043659912262377,0.01457,0.3705482192877151,0.6294517807122849,22.924815115619968,4.153712437801183,0.3047619047619048,0.269047619047619,0.2174603174603174,0.2087301587301587,11.508725836547791,6.190823951202615,15.534935609502323,11283.673789101147,43.4585190402192,12.454212131511596,13.170288020738122,9.258481464747046,8.575537423222439,0.5925925925925926,0.8072763028515241,0.7326388888888888,0.5815085158150851,0.1229404309252218,0.7537117903930131,0.924170616113744,0.8757396449704142,0.6891891891891891,0.147239263803681,0.5225806451612903,0.7243697478991596,0.6732186732186732,0.5416666666666666,0.1166134185303514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024515763027798,0.0048472802498681,0.0070761421319796,0.0095529426112053,0.01195478547519,0.0141809290953545,0.0164854222349172,0.0189315379192676,0.020949106055489,0.0231349556161462,0.0253349073551301,0.027607551205067,0.0296258920204714,0.03144148047286,0.0337648651161829,0.0357416337258635,0.0379471228615863,0.03981386266139,0.0419199067521438,0.0438011012848323,0.0582831703034863,0.0719876772185721,0.0850717421902901,0.0982188938393318,0.110279130186826,0.126203514420989,0.1364303022573651,0.1464116668798772,0.1554526099562422,0.1639756356956395,0.1755294473034059,0.1855540503928474,0.1955640768660944,0.2047012947181632,0.2121135298980435,0.220580404685836,0.2290695725062866,0.2373557069654822,0.2448166231406835,0.2514897323065639,0.2569675215654489,0.2623455345440929,0.2681595339033228,0.2733378106111484,0.2779513867778845,0.2809376502052034,0.2846295300166377,0.2878265844510838,0.29181388727108,0.2954758354993205,0.2922886409217557,0.2895196206446292,0.2866389013957677,0.2841179439117583,0.2816087697207614,0.2792076786696827,0.2751438144004046,0.2752985440863733,0.275862655397017,0.2758724641793162,0.2767495447281377,0.277240136347608,0.2789542321306589,0.2776991463576452,0.2787617983405054,0.2797565316070461,0.2820642835009437,0.2870749565649044,0.2922208367968966,0.296698557089084,0.2992868748871637,0.3057425326041228,0.3071548874056515,0.3110008271298594,0.3136215713621571,0.3186440677966101,0.3227121715493808,0.3235817355208539,0.3284671532846715,0.3232969514490026,0.0,2.31764817638506,49.37991005623686,140.52387904568235,191.86813151915848,fqhc5_100Compliance_implementation_low_initial_treat_cost,93 -100000,95722,48647,463.676061929337,4806,49.12141409498339,3774,38.96700862915527,1445,14.782390672990536,77.34880342590687,79.70652525905784,63.338894218876014,65.07718465371232,77.16310558242417,79.52150509146851,63.26890874024648,65.00918105500115,0.1856978434826999,185.0201675893288,0.0699854786295333,68.00359871117223,232.23266,163.38379143321976,242611.5835440129,170685.72682687338,543.01675,366.5710205115614,566820.3025427802,382488.8745654723,489.51278,239.9852076286096,508352.1551994317,248390.12551739984,2448.00236,1147.1453336008765,2531077.338542864,1172082.5135296765,869.76365,396.3110571966354,897758.028457408,403147.74477122206,1402.161,598.3289936760358,1437230.0620547,603229.2274476527,0.38173,100000,0,1055603,11027.799252000586,0,0.0,0,0.0,47307,493.7318484778839,0,0.0,44186,458.5466246004054,1102713,0,39570,0,0,0,0,0,101,1.055138839556215,0,0.0,0,0.0,0,0.0,0.04806,0.1259005055929583,0.3006658343736995,0.01445,0.3603029095257074,0.6396970904742926,23.472050447327167,4.088809757836445,0.3139904610492846,0.2832538420773715,0.1995230524642289,0.203232644409115,11.426814081008152,6.1724342649019,15.47483312803923,11379.064390384014,43.303353961209744,13.107704340939064,13.468831129029764,8.359230152017824,8.367588339223085,0.5919448860625331,0.8203928905519177,0.7172995780590717,0.5710491367861886,0.1003911342894393,0.7696381288614298,0.9366812227074236,0.8709677419354839,0.7222222222222222,0.1038961038961039,0.5157137447936387,0.7332242225859247,0.6552132701421801,0.5235602094240838,0.099510603588907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0046324453634999,0.0070620465729795,0.0089090705919401,0.0112249877989263,0.0137018374306509,0.0157684976607173,0.0180769623354088,0.0201318277042562,0.0223939409446804,0.0245269868601767,0.0266741930517781,0.0290337836448502,0.0311219552370951,0.0330506901033607,0.0351832525651226,0.0371505487678608,0.0393749805459582,0.0413911416094822,0.0436671667916979,0.0584494245911568,0.0719279151055947,0.0852173183243986,0.0984030802247049,0.1106060286455586,0.126098683166746,0.1363877512042951,0.1476690832827653,0.1571868122476015,0.1646232233842853,0.1770465316673847,0.1889125707299657,0.1997759725076941,0.2088422802278915,0.2169976346333681,0.2267832214318952,0.2350030714245825,0.2421350021948831,0.2487854159099164,0.2562079076373299,0.2610572360960029,0.2669738288467385,0.2731672109423068,0.2770133524938626,0.280786921853951,0.2848122299767364,0.28814448441247,0.2917878322264409,0.2951075865988169,0.2969728876020005,0.2938599438270194,0.2905582640939367,0.2875441137184877,0.2851476866274374,0.2832189089399309,0.2797257261537522,0.27624850053665,0.2762596281214737,0.2769626200040852,0.2772044694327806,0.2776483307547486,0.2779786230745049,0.2782003459270219,0.2788031257653004,0.2808886548083599,0.2807540711544445,0.280664395229983,0.2851730076718334,0.2874642283799818,0.2932665773082078,0.2989447941669308,0.3035932275356934,0.3058712121212121,0.3109570252971655,0.3148356807511737,0.3157083580320095,0.3169944683466503,0.3153391729476472,0.3220104943385805,0.3260536398467433,0.0,1.7801736478375032,49.57750922290802,136.71210562950162,196.71376630220013,fqhc5_100Compliance_implementation_low_initial_treat_cost,94 -100000,95635,48412,461.4314842892246,4795,48.93605897422491,3813,39.274324253672816,1452,14.80629476656036,77.26744378178137,79.68121755538291,63.28338998351626,65.0687710212045,77.08067848554596,79.49951495312543,63.21175913353334,65.00203050644382,0.1867652962354071,181.7026022574879,0.0716308499829168,66.74051476068144,231.3751,162.73977249864004,241935.58843519632,170167.5877018247,539.80512,364.6777690909249,563844.2202122654,380723.6567061483,482.08416,237.03735084487985,500066.5028493753,244895.935796256,2463.05729,1162.5524119288484,2537399.6758508915,1177536.7824842872,882.12445,403.0964053484511,906976.5880692216,406084.6085099078,1410.71478,605.6790749179542,1438312.2706122235,600493.2819210063,0.38112,100000,0,1051705,10997.072201599833,0,0.0,0,0.0,47118,492.0583468395462,0,0.0,43684,452.7944790087311,1106062,0,39676,0,0,0,0,0,68,0.7110367543263449,0,0.0,0,0.0,0,0.0,0.04795,0.1258133921074727,0.30281543274244,0.01452,0.3628158844765343,0.6371841155234657,23.41020855881013,4.05809193533109,0.3113034356150013,0.2876999737739313,0.1982690794649882,0.2027275111460792,11.328579598729007,6.102165137868948,15.596543895527391,11356.62333231361,43.94695596781865,13.505043369927384,13.62146086979197,8.362263214442137,8.458188513657152,0.5837922895357985,0.7921604375569735,0.6950294860994103,0.5806878306878307,0.1203104786545925,0.7449781659388647,0.9072164948453608,0.8235294117647058,0.7453416149068323,0.1534090909090909,0.5146176911544228,0.7009803921568627,0.6469907407407407,0.5361344537815126,0.1105527638190954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595091900216,0.00437031028189,0.0067921539961013,0.0094707747337614,0.0116989999898269,0.0138509797531266,0.0162938189530354,0.0185606795373102,0.0207773085614372,0.0227237816305004,0.0248397518075996,0.0272219254632863,0.0294526114374479,0.031365598821214,0.0333508809958814,0.0356164383561643,0.0377006732263076,0.0396192730065807,0.0417650546638511,0.0437602310523517,0.0585394914244505,0.0726278633749856,0.0858652159758031,0.0989048020219039,0.1109926307565615,0.1262006375160173,0.1370912064918374,0.1467971056193186,0.1564010953746095,0.1645222957298737,0.1761609973900476,0.1876638429707303,0.1978212132424961,0.2070972895488417,0.2154479600149723,0.2246385642275522,0.2328355876969778,0.2409684641607506,0.2482971573880665,0.254354402530137,0.2594157272159078,0.2651870388343838,0.2700469883653493,0.2740964577787371,0.2782788379725295,0.2837741155573099,0.2874255244580183,0.2908818030347354,0.2935197773030362,0.2964205078099212,0.2930458221024258,0.2908352827851933,0.2879983096210733,0.2848492731003786,0.282087111639661,0.2776510570549423,0.2754728927582113,0.2757118049867304,0.2763144444065833,0.2778094288562883,0.2781328250551257,0.2790325765054294,0.2804324640833142,0.2817211964631729,0.2830229380887323,0.2846745685173633,0.285361772130357,0.288664955874069,0.2923894795747062,0.2977483548719575,0.3000959649042636,0.3050584904652529,0.3065619457816063,0.3101866014071581,0.3160962767957879,0.3218541468064824,0.3245654514690048,0.331366965012205,0.3324880247957171,0.3365003958828186,0.0,2.307769399022567,49.63283409895159,146.16611399270832,189.8173646466738,fqhc5_100Compliance_implementation_low_initial_treat_cost,95 -100000,95837,48077,458.497240105596,4925,50.3563341924309,3901,40.1097697131588,1497,15.265502885107004,77.40182060844235,79.71642712869263,63.36325590393732,65.07598419332201,77.20324912343843,79.52009794088661,63.28846875855356,65.00426967695176,0.1985714850039244,196.32918780601472,0.074787145383766,71.71451637024973,232.1825,163.3184061677222,242268.1219153354,170412.68629832132,542.85247,365.8701866481507,565860.3983847575,381190.2987866384,483.46059,237.1380600459241,500701.9522731304,244482.82540634787,2553.48745,1206.0651340383065,2629086.7827665727,1223134.6808000102,909.42173,410.5047287197602,935606.68635287,415017.5597313776,1457.4154,629.3196175316282,1487870.3840896522,628974.4286624121,0.37876,100000,0,1055375,11012.187359787971,0,0.0,0,0.0,47384,493.8176278472823,0,0.0,43760,452.7896323966735,1106561,0,39771,0,0,0,0,0,84,0.8764882039295887,0,0.0,0,0.0,0,0.0,0.04925,0.130029570176365,0.3039593908629441,0.01497,0.3479105928085519,0.652089407191448,23.253847269914232,4.093458053104479,0.3153037682645475,0.2724942322481415,0.2061009997436554,0.2061009997436554,11.18775443686681,6.034384116416961,16.135985491937795,11308.06363527426,44.86968611631819,13.064825783767668,13.9652904785104,8.954872586371154,8.884697267668974,0.5788259420661369,0.7826904985888994,0.7056910569105691,0.5883084577114428,0.1057213930348258,0.7483164983164983,0.907725321888412,0.8712574850299402,0.7339901477832512,0.1405405405405405,0.5046074456321415,0.6850921273031826,0.6439732142857143,0.5391014975041597,0.0953150242326332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871645841349,0.0042769258835095,0.0066550338838615,0.0088972851092355,0.0110511279877187,0.0132130787084164,0.0151862610202313,0.0175750153092467,0.0198295071243126,0.0219747602427765,0.0241812311004049,0.0264195097918462,0.028513573242057,0.0304044314484576,0.0322307827181121,0.0344489104266333,0.0363837737684894,0.0383351133877373,0.0405695946156482,0.0424190073785761,0.0570266465036241,0.0712523520802843,0.0847487818934353,0.0974349278376504,0.1093266213113718,0.1253062690098006,0.1352571029047225,0.1455190960596107,0.1552204399193161,0.1637512720261368,0.1758429685399301,0.1871116921846805,0.1972710779893754,0.2066011865091938,0.2154202987765331,0.2247929858743302,0.2324712547536998,0.2399883075124232,0.2468782960770303,0.2530898104916231,0.2597624856901676,0.2653934265276544,0.2715877107920815,0.2764746753557909,0.2808474473380684,0.284365033432255,0.2871090331774883,0.2902643849017291,0.2932969562181592,0.2969056683308524,0.2938377797191049,0.2913799969788104,0.2881627377707847,0.2859261605805783,0.2829800461839067,0.2791883597722033,0.2755916692963079,0.2751986137901723,0.2752441888166627,0.2751203396152685,0.2754970836516781,0.2759664327968084,0.2764907898844833,0.2767962308598351,0.2777658483048218,0.2796938828274471,0.2820071158298978,0.2860118770015235,0.2898978670186896,0.293599622582167,0.2998959793767808,0.3017063764594009,0.3057046560978654,0.3121234939759036,0.3164790551762317,0.3200373221366923,0.3204469948655995,0.3272545090180361,0.3259158751696065,0.3276579644343549,0.0,2.36488291341143,51.56562350812168,147.10516232165028,192.7885736074964,fqhc5_100Compliance_implementation_low_initial_treat_cost,96 -100000,95709,48105,459.4656719848708,4742,48.53253090096021,3794,39.191716557481534,1473,15.108297025358116,77.32145341825886,79.70871617774961,63.3143933609397,65.08008971416619,77.13126942517357,79.51949637989077,63.24244913899732,65.01053046560429,0.1901839930852844,189.2197978588399,0.0719442219423811,69.55924856190165,230.4544,162.20278020160004,240786.5508990795,169474.95031982363,542.59993,365.4248003987345,566491.9077620704,381373.340436881,484.18498,237.7479682748216,502950.0882884577,246178.15595524816,2473.85423,1176.046070411475,2557095.2366026184,1201101.3806553986,905.33541,418.4392651579541,932842.5853368022,424117.0267769525,1438.54136,618.0849672900299,1476570.6255420076,622093.504413918,0.37868,100000,0,1047520,10944.843222685431,0,0.0,0,0.0,47342,494.1854997962574,0,0.0,43766,454.3355379326918,1112787,0,39954,0,0,0,0,0,95,0.9925921282220064,0,0.0,0,0.0,0,0.0,0.04742,0.1252244639273265,0.3106284268241248,0.01473,0.3761356753482737,0.6238643246517263,22.66931866795493,4.1138033184683565,0.2962572482867686,0.2820242488139167,0.2100685292567211,0.2116499736425935,11.395553155583809,6.115713086221155,15.824656729412798,11234.562893901451,43.81170793358016,13.19500944369166,12.747423010264718,8.958357542895314,8.910917936728474,0.584870848708487,0.822429906542056,0.7188612099644128,0.5646173149309912,0.1008717310087173,0.7468566638725901,0.9183673469387756,0.907051282051282,0.69,0.1047120418848167,0.5105728565936178,0.7413793103448276,0.646551724137931,0.5226130653266332,0.099673202614379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682742968306,0.0043200486766048,0.0063748578853337,0.0086686110913506,0.0112831678333062,0.0136398826501507,0.0157663399859265,0.0178578721666326,0.0202005745305104,0.0223862263803304,0.0245542808517618,0.0264430729418047,0.0287104472698843,0.0305831195194081,0.0326379785510058,0.0347387357581522,0.0366867950324712,0.0386890553975798,0.0404750514777761,0.0423245682602215,0.0566087001932215,0.0703638571368756,0.0834986303957684,0.0961651793231183,0.1078930986821975,0.1238529682588402,0.1344265775088892,0.1454225914682856,0.1543706648711618,0.163280847777587,0.1750891443222338,0.1859052774018944,0.1961104222410755,0.2051153021485144,0.213026213026213,0.2222234524297213,0.230740918368485,0.2392960690445688,0.2463071499019396,0.2522837061288033,0.2578940674536646,0.2636044880785413,0.2689713920636047,0.2737226714585205,0.2780037641916095,0.2819638637258763,0.2861465366341585,0.2888795721055507,0.2921796876009354,0.2954769899269208,0.2923279534489941,0.2884071889148031,0.2856801708153059,0.282846478649969,0.2794869893987693,0.2768348623853211,0.272784730122614,0.2729892585800367,0.2731437329700272,0.2734263742523498,0.2736832274934628,0.2744885703597235,0.275767818394258,0.2752530883467868,0.2758934996402015,0.2762911286963765,0.278488223063997,0.283531515702946,0.2874925696702682,0.2910203276100256,0.296086858176883,0.2999259572667654,0.3037503939489442,0.3078979529483654,0.3120827456511518,0.3125966456524325,0.3167739957068384,0.3187259078920673,0.3211838859961633,0.3225314525352649,0.0,1.7802352760614508,52.31723123052444,138.73044447541164,188.90944004226665,fqhc5_100Compliance_implementation_low_initial_treat_cost,97 -100000,95701,48215,459.6817170144513,4791,48.72467372336757,3800,39.08005141012111,1456,14.754286789061766,77.3455376358958,79.73050821784203,63.32130932583449,65.08647590354855,77.15184139786263,79.54321077457496,63.24701148042284,65.01730572311894,0.1936962380331692,187.2974432670702,0.0742978454116496,69.17018042960876,232.62734,163.52454488678416,243077.23012298724,170870.25724578026,541.34105,365.6257446220474,565050.7622699868,381442.1214219782,483.00478,237.40028437769803,501084.1683994943,245303.71118848436,2449.65766,1159.6138755544282,2520461.970094356,1172467.9214997003,832.89147,387.160290913696,852232.9233759312,386531.12361592107,1406.8265,611.9199230093081,1427618.9590495396,603928.4509923691,0.37733,100000,0,1057397,11048.96500559033,0,0.0,0,0.0,47225,492.82661623180536,0,0.0,43543,451.3118985172569,1105108,0,39576,0,0,0,0,0,92,0.9613274678425512,0,0.0,1,0.0104492116069842,0,0.0,0.04791,0.1269710863170169,0.3039031517428511,0.01456,0.370125974805039,0.629874025194961,23.15754465901037,3.933854906908694,0.311578947368421,0.2960526315789473,0.1960526315789473,0.1963157894736842,11.308728838728072,6.355638673235001,15.606577713302016,11229.597152904047,43.60298969403601,13.822067619051603,13.340057323758492,8.26873750671542,8.172127244510499,0.5928947368421053,0.7866666666666666,0.7052364864864865,0.6013422818791946,0.113941018766756,0.7521588946459413,0.8839103869653768,0.8790849673202614,0.7777777777777778,0.154696132596685,0.5230885692657078,0.7113564668769716,0.6446469248291572,0.5451327433628319,0.1008849557522123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0044221309397028,0.0065079445657139,0.0089432712046992,0.0108956620818751,0.0130474638419229,0.0150822948746711,0.017585245550075,0.0197766688481675,0.0223036906566173,0.0245628429311317,0.0266944669836998,0.0287401250822909,0.031005914720854,0.0331062951496388,0.0351404999689845,0.0372089168807491,0.039294647583265,0.0412242478446706,0.0433029434748632,0.0581194974465018,0.0718165548566704,0.0853046745450347,0.0982292225624191,0.1106528412147551,0.1260881982715762,0.1361108752865268,0.1456904264837459,0.1547696682667123,0.1641170976780135,0.1751007999310032,0.1851474745724158,0.1956431806305521,0.2045743050995841,0.2131116860241096,0.2221791263104235,0.2307331718695938,0.2384825677545647,0.2446199049336918,0.2502775774641438,0.2565460769800148,0.2623054270088347,0.2674571182012696,0.2710519702753479,0.2750818479447072,0.2798244103976588,0.2827460479984017,0.2863032640271981,0.2894760608445471,0.2931856698064872,0.2906477906477906,0.2877756937694234,0.2853615767693063,0.2829111101520579,0.2792007212426656,0.276024371667936,0.2724190674424839,0.2726051851487905,0.2730786256682671,0.2737100824621084,0.2754287210367849,0.276897266357446,0.2782484989225716,0.2798279627401168,0.2804392653335251,0.2806538801393003,0.2816957323124911,0.2859466391417222,0.2897528968309367,0.2948373855383643,0.2995121069750632,0.3043890116829807,0.3079459896708356,0.3108402918829459,0.3086546540939221,0.3148279952550415,0.3130541118923876,0.3175634517766497,0.3240010872519706,0.3247600767754318,0.0,2.423640899014171,49.94991828549816,139.99577608345638,191.6269888273449,fqhc5_100Compliance_implementation_low_initial_treat_cost,98 -100000,95603,48642,464.9749484848802,4786,48.84783950294448,3806,39.15149106199596,1419,14.434693471962175,77.23812690061078,79.66919934600737,63.25655152000609,65.0543885876746,77.05382499627603,79.49251063534533,63.186161370831,64.9900989448542,0.1843019043347453,176.68871066204872,0.0703901491750897,64.28964282039829,231.54318,162.92441742826236,242191.68854533852,170417.05268431344,540.77326,364.5260027260825,564938.819911509,380598.5204259633,485.06607,238.33474829236968,504205.2550652176,246796.50607698708,2471.15273,1170.4019644748653,2542140.884700271,1182360.0857275915,878.18552,402.353408303564,898286.2044078115,400851.9154726904,1381.83624,595.4105640509458,1406314.4252795414,587003.7419598099,0.38147,100000,0,1052469,11008.713115697206,0,0.0,0,0.0,47165,492.5891446921122,0,0.0,43837,455.29951988954326,1102593,0,39598,0,0,0,0,0,71,0.7426545192096483,0,0.0,1,0.0104599228057696,0,0.0,0.04786,0.125462028468818,0.2964897618052654,0.01419,0.3608062263021353,0.6391937736978647,23.340508527839543,4.12127166095862,0.3087230688386758,0.2750919600630583,0.2070415133998949,0.209143457698371,11.316875649035143,6.16669191241767,15.242130287541157,11407.338372348728,43.87438265007173,12.882639391071049,13.497348204694044,8.90538023141067,8.58901482289597,0.5761954808197582,0.7936962750716332,0.7038297872340425,0.5596446700507615,0.1180904522613065,0.7656514382402707,0.9271523178807948,0.8674033149171271,0.7,0.1528662420382165,0.4908536585365853,0.6919191919191919,0.6309963099630996,0.5086505190311419,0.109546165884194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002097859575158,0.0042295091943647,0.0062545690845585,0.0085787178679243,0.0109509851815665,0.0132950273541367,0.0155744811056147,0.0178564131900461,0.0199864983736677,0.0219597881863714,0.0239986046129853,0.0262630621744089,0.0285502562730285,0.0307828704562792,0.0329013269995352,0.0351085955527042,0.0370516276176653,0.0389657608243995,0.0409839478670025,0.0429507375800696,0.0575646373720582,0.0723829684667218,0.0861123368845741,0.0993016862749228,0.1108916746755098,0.1272151429449087,0.1381339906083335,0.1484766432850777,0.1577871702958643,0.1663963044529193,0.177673464983274,0.1888545562964167,0.1994377431270635,0.2090678996789639,0.2171824032442916,0.2260698791705038,0.2338705167921088,0.2422742595578204,0.2494599204093234,0.2567246426726364,0.2629252844896586,0.2689994724810972,0.2746444626315102,0.278702313006909,0.2832629002204333,0.2868046635707934,0.2905960397777861,0.2933340132325382,0.2961160638974319,0.2991950087901339,0.2962128772961454,0.2931521574356077,0.2892644695666883,0.2866627131637184,0.2837783622342085,0.279715564273892,0.2761313417705479,0.2761792142950992,0.2758455593173968,0.2747849059298133,0.2744789912822239,0.27591719129285,0.2771573179403522,0.2776277315238499,0.2789916772599717,0.2807984197941574,0.2823385560326442,0.2867398119122257,0.2917656927163428,0.2956925742184424,0.3005075682044775,0.3062450592885375,0.3094064040946258,0.3112517898862009,0.3147321428571428,0.3182825807957064,0.3207716464782413,0.326736592123491,0.3250950570342205,0.3307027433295753,0.0,2.3669609489311,51.36949040210202,138.52042527325142,191.52304111907415,fqhc5_100Compliance_implementation_low_initial_treat_cost,99 -100000,95719,44556,421.7240046385775,6000,61.50294089992583,4735,48.88266697311924,1888,19.379642495220384,77.33641368994157,79.71026558831112,63.332022412709286,65.08912752867498,77.09955388894953,79.47406744111028,63.24496540256742,65.0043965888721,0.2368598009920361,236.1981472008381,0.0870570101418621,84.73093980288127,163.98074,114.87319994519954,171314.72330467307,120010.86507924188,354.68258,229.85416955206207,369960.5094077456,239549.1903927769,363.34392,176.22488354073576,375522.0802557487,181036.33303661057,3398.31219,1552.2770340391794,3513010.1965127094,1584411.740656695,1134.06196,500.1663709616377,1170479.3719115327,508233.0163934406,1853.8319,772.1621531373628,1905552.3772709705,781326.0781780264,0.38103,100000,0,745367,7787.03287748514,0,0.0,0,0.0,30270,315.63221512970256,0,0.0,33215,342.962212308946,1590401,0,57097,0,0,6491,0,0,60,0.6163875510609179,0,0.0,1,0.0104472466281511,0,0.0,0.06,0.1574679159121329,0.3146666666666666,0.01888,0.3391096979332273,0.6608903020667727,24.44871639180721,4.342899606499864,0.3235480464625132,0.2278775079197465,0.2240760295670538,0.2244984160506863,11.374183725917364,5.965494730458324,20.155790023793205,12287.277926008856,53.90221451021113,12.98881257139373,17.403961277834537,11.92395883298099,11.585481828001862,0.5632523759239705,0.7905468025949953,0.695822454308094,0.5937794533459001,0.1110065851364063,0.74,0.9178743961352656,0.8502415458937198,0.737037037037037,0.1534653465346534,0.4963609898107715,0.7112781954887218,0.6386404293381037,0.5448798988621998,0.1010452961672473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0043306727248755,0.0067820701558454,0.0092588828360029,0.0117493870990712,0.0139734789073798,0.016102550505308,0.0182867061466203,0.0202733787942298,0.0223880597014925,0.0243657424017221,0.0265086959200016,0.0287524166015384,0.0307037872467529,0.0327307247812448,0.0346880555670401,0.0366642851965748,0.0387468229679962,0.0408750779463728,0.0429977605333055,0.0576804602742014,0.0719075966980885,0.0847429188645015,0.0973068998864735,0.1096355319462889,0.1257596415020556,0.1382914445021571,0.149517206176358,0.1610024763043292,0.1711249424191457,0.1839910463502039,0.1963494020199399,0.2077864221140473,0.2189455748877748,0.2283918742240631,0.2382731745066607,0.2475184652919354,0.256160458452722,0.2649142494417429,0.2723530286223971,0.2798442356801978,0.287210687343812,0.2930148492043803,0.2978807423983151,0.3036459344071415,0.3094215648878444,0.3143885431506336,0.3189218041099546,0.3237558053791123,0.3277174558359829,0.3265657816791426,0.3258908279500282,0.325438781983506,0.3235728132866526,0.3222137870465473,0.3206560093277285,0.3191310552604455,0.3202373711636776,0.3217206803326375,0.323140200286123,0.323495771848574,0.3247400260962397,0.3259813162414645,0.3282782033815022,0.3295416285892934,0.3302845528455284,0.3297543377426559,0.3341767347713328,0.3371756909193457,0.339776357827476,0.3394740478054621,0.3425771363954553,0.3456274497204909,0.3474930362116992,0.3521408182683159,0.3525857902368294,0.3533974557865343,0.3583980384143849,0.3587135788894997,0.366325369738339,0.0,2.309818720782646,56.803656897306965,176.542811240562,257.3403228109917,fqhc5_80Compliance_baseline,0 -100000,95608,44497,420.97941594845616,6085,62.46339218475441,4788,49.48330683624801,1895,19.412601455945108,77.26635035352784,79.70552127790135,63.26822878755484,65.0727446556686,77.02573824673442,79.46695961445911,63.178083272058295,64.98580453443071,0.2406121067934208,238.5616634422405,0.0901455154965447,86.94012123788752,163.82674,114.73868122444026,171352.0835076563,120009.16411265128,354.55461,229.4427075246739,370215.0447661284,239362.0131271564,361.8228,175.16524904075942,374953.8427746632,180423.9041431006,3465.38921,1582.9212483372191,3582283.6582712745,1613870.4261433347,1145.4202,505.212139781068,1180971.3413103507,511599.0589965964,1858.86258,787.8617349178263,1905651.9538113964,790499.1490413822,0.38059,100000,0,744667,7788.73106852983,0,0.0,0,0.0,30269,315.9359049451929,0,0.0,33188,343.6950882771316,1586267,0,56893,0,0,6633,0,0,57,0.5961844197138314,0,0.0,0,0.0,0,0.0,0.06085,0.1598833390262487,0.3114215283483977,0.01895,0.3418870286340166,0.6581129713659835,24.643659653192906,4.355490156752728,0.3210108604845447,0.2261904761904762,0.2268170426065162,0.2259816207184628,11.32223649612794,5.903466022492508,20.32816095160208,12309.86544609618,54.48902456969445,12.982466830647386,17.403190455790906,12.089150535986292,12.01421674726986,0.5649540517961571,0.7987072945521699,0.682498373454782,0.6068139963167587,0.121996303142329,0.7153905645784996,0.9108910891089108,0.8393782383419689,0.7461538461538462,0.1604938271604938,0.5092989985693849,0.7319587628865979,0.629887054735013,0.562953995157385,0.1108462455303933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0047780877504438,0.0070378908669909,0.0093846591833414,0.011797398261436,0.0141158005238643,0.0166659862834748,0.018791575978664,0.0207909142067836,0.0229534066339444,0.0248883871298814,0.0270750886570385,0.0292358530383669,0.0312512888192353,0.0331663481898466,0.0354083026364802,0.0374792703150912,0.0395288936895018,0.0415370044648897,0.0435626010324868,0.0578943516940736,0.0719996646791922,0.0849325140486319,0.0967959385730235,0.1086008217412888,0.1247312055760939,0.1374443346193497,0.1495653101498746,0.1602175053252411,0.1699601345325209,0.1834667414615202,0.1961016012055115,0.207323581627874,0.217848142872795,0.2269019642424108,0.2370070442065561,0.247282396183624,0.2569311501993198,0.2656583791645834,0.2731006160164271,0.2804587049693038,0.2877540263543192,0.2941664297223012,0.3000203883378707,0.3049627278586455,0.3105363866427998,0.3157703397267143,0.3203664534542952,0.3249637042414186,0.3295699137714746,0.3285406279477159,0.3274349688098156,0.326985156261013,0.3247006767308693,0.3248036181861461,0.3231662479318585,0.3204872330989038,0.3206480659896809,0.3223137670506991,0.3226331413856003,0.3229908156940818,0.3231406432690593,0.3234410770167811,0.3246910263299301,0.3255236580133536,0.3254999346490654,0.3261764537709417,0.330123752999116,0.3347657625924621,0.3397601880253356,0.34072553045859,0.3454439065907761,0.3479556259904913,0.3520741528643063,0.3558862062511697,0.3580610921099186,0.3584415584415584,0.3597326311525218,0.3624382207578254,0.3605134012835032,0.0,2.1655278980536075,56.844627643137365,183.5668662525161,256.33782268145234,fqhc5_80Compliance_baseline,1 -100000,95710,44703,423.1114826036987,6144,63.05506216696271,4789,49.51415735032912,1897,19.506843590011496,77.34534288058313,79.71358572207575,63.32656324425341,65.0742487708091,77.1191619155214,79.48682050516166,63.24302433125015,64.99233994533466,0.2261809650617294,226.7652169140888,0.0835389130032595,81.90882547444289,163.28026,114.36824388506662,170598.72531605893,119494.35074392083,354.88698,229.58627131209104,370292.49817156,239375.44803269356,361.62112,175.0978885111478,374183.67986626265,180196.06199809493,3415.82393,1549.691779604946,3535322.766691046,1585545.1568330822,1167.45257,512.2361932919425,1207760.6101765751,523180.48898237135,1857.34514,768.9165229375299,1912570.076272072,780887.4172301375,0.3822,100000,0,742183,7754.487514366316,0,0.0,0,0.0,30306,316.11116915682794,0,0.0,33033,341.44812454289,1590784,0,57130,0,0,6423,0,0,66,0.6895831156618953,0,0.0,0,0.0,0,0.0,0.06144,0.1607535321821036,0.3087565104166667,0.01897,0.3405145691258524,0.6594854308741476,24.63311731026125,4.323778784353811,0.3196909584464397,0.2363750261014825,0.2205053247024431,0.2234286907496346,11.26521491767388,5.932351078671601,20.076129524442923,12366.460912959592,54.30897773945366,13.592893766268684,17.339769194978,11.718324279741624,11.657990498465349,0.5685946961787429,0.7773851590106007,0.7047681254082299,0.5880681818181818,0.1336448598130841,0.7474903474903475,0.9183168316831684,0.8717339667458432,0.7376425855513308,0.1739130434782608,0.5022896393817974,0.6991758241758241,0.6414414414414414,0.5384615384615384,0.1239860950173812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0045811120345407,0.0069295077310174,0.0092017062766605,0.0113181069372978,0.0135920748531343,0.0157793339653221,0.0180986699059849,0.0201889068345838,0.0222436048356552,0.0245832735324872,0.026319572807558,0.0283269218901071,0.0302677532013969,0.0324564752990226,0.0347222940075874,0.0371896974906533,0.0392171106568009,0.0411732290832718,0.0430895240874086,0.0574904704715158,0.0713956798392498,0.0846431494344532,0.0977726808841941,0.1102435318448486,0.1256693546680212,0.138154332848544,0.1499099943546755,0.161682662505611,0.1728395061728395,0.1858488126535361,0.1978691843783497,0.2100544069640914,0.220295566502463,0.2295146956799436,0.2405950032144361,0.2501506662797705,0.2591434260707174,0.2667370308581027,0.2745086811122818,0.2817712791800661,0.2884102708011786,0.2948561691654143,0.3006157753498179,0.3061135265113793,0.3116275058217617,0.3167271362442136,0.3204504149562167,0.325199461195731,0.3300455535749653,0.3295512734132866,0.3279390700749229,0.3263499682360415,0.3253168952943219,0.3245213406923637,0.3231155932930754,0.3217173875199797,0.3227377847758697,0.3242276034832398,0.3245554644906104,0.3263155928340587,0.3277102260410303,0.3291305984192698,0.3312237230521513,0.3314553990610329,0.3322482356311362,0.3329647585835389,0.3366664583463533,0.3411834484683553,0.3441376865818597,0.3479346345891965,0.3496695744118424,0.3481829573934837,0.3488301428137344,0.3517842090474852,0.3529411764705882,0.3568711002891493,0.3564376385250856,0.36,0.360655737704918,0.0,2.0220477871230758,57.24084038486011,176.71443915477153,262.34143127353855,fqhc5_80Compliance_baseline,2 -100000,95671,44282,419.7614742189378,6078,62.35954468961336,4759,49.24167198001484,1865,19.20122085062349,77.2498286400838,79.65032822367637,63.26585613190741,65.03966783878838,77.01525489918288,79.41459216249804,63.17743618124425,64.95312331357954,0.2345737409009274,235.73606117832924,0.0884199506631588,86.54452520883638,163.72246,114.621311767017,171130.24845564488,119807.3775904284,354.60073,229.7647632102424,370080.0974171902,239597.21754159877,360.09605,173.92448327721155,373732.71942385886,179719.23255468687,3395.80903,1557.1061390118718,3513819.924533035,1592186.660938203,1148.94648,509.8294735393152,1188666.9628204994,520856.3480669743,1830.8566,780.1786632564159,1885458.247535826,789210.3222730192,0.37932,100000,0,744193,7778.647657074766,0,0.0,0,0.0,30237,315.52926174075736,0,0.0,33000,342.2458216178361,1582700,0,56892,0,0,6263,0,0,61,0.6271492928891722,0,0.0,1,0.0104524882148195,0,0.0,0.06078,0.1602341031319202,0.3068443566962817,0.01865,0.3414096916299559,0.6585903083700441,24.384978501993764,4.343101979527344,0.3193948308468166,0.2349233032149611,0.2239966379491489,0.2216852279890733,10.978786550959915,5.677122039508708,20.01934468302804,12233.931933579122,54.11885959853173,13.496359566909948,16.85011169604292,12.059723376043952,11.71266495953492,0.5570498003782307,0.7799642218246869,0.6828947368421052,0.5863039399624765,0.109952606635071,0.7137285491419657,0.8990384615384616,0.8681318681318682,0.7238805970149254,0.1324786324786324,0.4992809893586425,0.7094017094017094,0.6245674740484429,0.5401002506265664,0.1035322777101096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779650715182,0.0042694737696106,0.0064554764973964,0.0088193456614509,0.0110567484818585,0.0131179597906015,0.0155300403801443,0.0175830908255475,0.0197075066475761,0.0218658145656025,0.023837608853969,0.025814072932717,0.0277306168647425,0.0300247371675943,0.0322743838855219,0.034223835675944,0.0361850285998507,0.0382479053976889,0.0403774527143719,0.0422592484464278,0.0567252134117671,0.0707605952393419,0.0842779177162048,0.0979397714598371,0.1099948289872202,0.1253360143930574,0.1378131271835278,0.1488432068373882,0.1594295923061287,0.1702511655888103,0.1830207816310235,0.1946947761113099,0.2057649522313833,0.2168165862220272,0.2265411110129824,0.2372316308841179,0.2464705948209267,0.2553138679543301,0.2633496112647839,0.2713346663908617,0.27818692934972,0.2853903275837759,0.2924222066325014,0.2984873464181278,0.3037662923540242,0.3097753476173981,0.3149948501519833,0.3194091263401357,0.3239196828903762,0.3279424620519749,0.3270213283594193,0.3256305131072183,0.3240117627099474,0.3236497070255845,0.3230725657384771,0.3212460676743651,0.318624341980085,0.3193022873128188,0.3201274343558912,0.3214586506585431,0.3224914926018538,0.3231357931677142,0.3235886673662119,0.3250504597443373,0.325152633992133,0.3267321572817052,0.3278395044187434,0.3301414444861685,0.3352649584584235,0.3377876176168261,0.3386848769898697,0.3436529247617543,0.3459206001875586,0.3475826586971325,0.3517067711247901,0.351773549447968,0.3508665247795682,0.3482142857142857,0.3527481542247744,0.3625753012048193,0.0,1.941998545964129,56.5009555801881,180.65979737187143,257.7465417516363,fqhc5_80Compliance_baseline,3 -100000,95731,44371,419.58195359914765,6098,62.41447389038034,4823,49.65998474893191,1939,19.73237509270769,77.32698317968122,79.68562402222575,63.31555014592704,65.060607878964,77.08111923801728,79.44661405214647,63.22364587099578,64.97521519785323,0.2458639416639414,239.0099700792803,0.0919042749312595,85.39268111077547,162.75622,114.01916541999756,170014.12290689535,119103.7024788183,351.92577,227.36850789307744,366897.1806415895,236785.44869799487,359.79454,174.01203949691958,371761.2894464698,178594.95045779645,3443.58005,1570.2619866664088,3548664.3824884314,1591808.125545967,1168.59134,518.4636933950271,1200970.6678087558,521852.8156971379,1897.01978,798.6945881800804,1934048.009526695,792489.6867833363,0.37902,100000,0,739801,7727.914677586154,0,0.0,0,0.0,30021,312.84536879380767,0,0.0,32970,340.2555076203111,1595055,0,57205,0,0,6467,0,0,53,0.553634663797516,0,0.0,1,0.0104459370527833,0,0.0,0.06098,0.1608886074613477,0.3179731059363725,0.01939,0.3385888229784577,0.6614111770215423,24.45553388962905,4.400733945529835,0.3143271822517106,0.2403068629483724,0.2195728799502384,0.2257930748496786,11.490513286629108,6.091252969843009,20.63299448227033,12292.832660748754,54.76759404713927,13.89092841405227,17.181167478391668,11.721029990849644,11.97446816384568,0.5575368028198217,0.7851596203623814,0.7025065963060686,0.5609065155807366,0.1101928374655647,0.7029096477794793,0.917910447761194,0.8525798525798526,0.7112970711297071,0.1240310077519379,0.5035541654819449,0.714663143989432,0.6474301172227231,0.5170731707317073,0.1058965102286401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024720125626867,0.0049177668268743,0.0069829283640866,0.0093262353706111,0.0115840325451309,0.0136551092103253,0.0156014194232573,0.0179756241961496,0.0202873962634397,0.0225381521171738,0.0245872236627686,0.0267207308935995,0.0287100521159914,0.0307788944723618,0.032938579298108,0.0351020408163265,0.0371677934340349,0.0393029407188423,0.0408988390342261,0.0430266598601894,0.0568048943456109,0.0705078574567369,0.0837370242214533,0.0967240001682156,0.1087064230821939,0.1237245302570501,0.1358824777259228,0.1480349670453698,0.1599948692185178,0.1704628397234983,0.1835722755201035,0.196540556933508,0.207828244357875,0.2178432316512757,0.2269119411693473,0.2377790586826878,0.2483857273722546,0.2579500523807914,0.2666098613951375,0.2744403562463464,0.280825090917514,0.2875850678786033,0.2937097749173274,0.2989953066295358,0.3049344266283851,0.3105528754210416,0.3156496346705769,0.3197466999643239,0.3236743160897186,0.3277039071474786,0.3266614584736402,0.3258403766208738,0.3253962662909475,0.3239905125535115,0.3228358164570137,0.3212900059807695,0.3186457871045457,0.3196150561650134,0.3203294543838964,0.3229411764705882,0.3235371195387668,0.324848820204735,0.3253508108562306,0.3270659862118363,0.3283650373224175,0.3298858680038653,0.3306435516523623,0.3339414910349166,0.3390615136424212,0.342498316231528,0.345666106086087,0.348728813559322,0.3501723597618301,0.355481475869384,0.3573902461855284,0.3588443396226415,0.362442748091603,0.3598300970873786,0.3597102256896071,0.3636363636363636,0.0,2.7788002151381006,56.90724153616764,176.67646413468154,266.8194056406682,fqhc5_80Compliance_baseline,4 -100000,95773,44609,420.8701826193186,6190,63.56697607885312,4873,50.4213087195765,1916,19.775928497593267,77.39144353273707,79.72929531823178,63.36142006586866,65.08687894995106,77.15452057690338,79.49032869964863,63.27370342894069,64.999880713702,0.2369229558336911,238.96661858314872,0.0877166369279649,86.99823624905889,162.74698,113.95564409983332,169929.68790786547,118984.930097035,354.97152,229.5327065502449,370173.5666628382,239198.99715185375,363.27303,175.54151615122734,376275.140175206,180992.4826611364,3484.16295,1578.7891772679975,3608711.547095737,1619313.215276745,1142.29365,499.40924375947895,1181191.9016841906,509933.3985146952,1881.6184,785.1477405358917,1943121.589592056,801311.1119900275,0.38105,100000,0,739759,7724.076723084794,0,0.0,0,0.0,30198,314.838211186869,0,0.0,33271,344.3141595230389,1598265,0,57339,0,0,6379,0,0,69,0.7204535725099976,0,0.0,0,0.0,0,0.0,0.0619,0.1624458732449809,0.3095315024232633,0.01916,0.3329748002458512,0.6670251997541488,24.58120697746217,4.345494465293241,0.3170531500102606,0.232916068130515,0.2290170326287707,0.2210137492304535,11.06248748457484,5.657273655089145,20.28748082037265,12316.297168437904,55.18899216624786,13.566136239969389,17.537073556099998,12.41585651949452,11.669925850683962,0.5546891032218346,0.7876651982378855,0.686084142394822,0.5752688172043011,0.0993500464252553,0.7175097276264591,0.9152542372881356,0.8542199488491049,0.6934306569343066,0.0966183574879227,0.4963768115942029,0.7146814404432132,0.6291161178509532,0.5368171021377672,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0047934169056619,0.0071731498954972,0.0092727069601161,0.011641976187329,0.0137814510219037,0.0161605869166496,0.0181606709245618,0.0204925987598197,0.0225607759679135,0.0246721311475409,0.0267974392646093,0.0289248980178995,0.0309068266727046,0.0330897133255677,0.0353889061047412,0.0377327248077659,0.0398552227661163,0.0420036172380101,0.0441141238112103,0.0579486269557139,0.0724232817518859,0.0857118880532041,0.0979841635382819,0.1104925775978407,0.1261988093853425,0.138766940255774,0.1498601078711928,0.1607240108921992,0.1711434573829531,0.1838476690741956,0.1957563238777077,0.2069471464748014,0.2182249218869491,0.2278333516543915,0.2383534358747372,0.2486484678920557,0.2575995866004628,0.2660718941652591,0.2731735225127296,0.2803278120051322,0.2869816260694749,0.2937510347926866,0.3001760879721134,0.3051750288175696,0.3106151990349819,0.3154197137321082,0.3206661408106664,0.324837878768267,0.3289437260252303,0.3270908675369372,0.3265350967547004,0.3264583069720359,0.3253477477477478,0.323981860216966,0.3224152923766953,0.3200378668349637,0.3200575737254453,0.3201191996594295,0.3205920595621894,0.3215175177424489,0.3218456674241676,0.3230107977775448,0.3245598315487657,0.3260193378824778,0.3271772634658586,0.3292700293355359,0.3333543267414032,0.335738674363758,0.3391819845627437,0.3424469641550841,0.3457495063770746,0.3494242692648361,0.3485958485958486,0.3522301349325337,0.3529135338345864,0.3585274229902329,0.3577268195413758,0.3601729262361524,0.3558745749905553,0.0,1.77240122072252,56.761162631352846,185.1566507086794,266.3607708026186,fqhc5_80Compliance_baseline,5 -100000,95700,44566,421.6509926854754,6218,63.41692789968652,4821,49.50888192267502,1925,19.51933124346917,77.37264048070351,79.73164534134209,63.34029949113111,65.0817620134446,77.12696212687348,79.49421705057316,63.24715552152371,64.99583546228904,0.24567835383003,237.428290768932,0.0931439696074036,85.92655115556624,162.65568,114.01255977374416,169964.1379310345,119135.381163787,356.98855,231.48749310764697,372153.1347962383,241013.05444895197,368.54303,178.7257517063762,379600.710553814,182534.79256695788,3474.60954,1599.95260795831,3569246.9696969697,1610463.655724886,1149.96108,513.7678340597728,1180988.9864158828,516247.20025450905,1886.56226,804.4345718917249,1915401.3375130617,793661.50746696,0.38004,100000,0,739344,7725.64263322884,0,0.0,0,0.0,30423,316.9801462904911,0,0.0,33659,346.34273772204807,1591364,0,57111,0,0,6389,0,0,61,0.6269592476489028,0,0.0,0,0.0,0,0.0,0.06218,0.1636143563835385,0.3095850755870055,0.01925,0.3316960859554873,0.6683039140445126,24.36883463307933,4.391279714042036,0.3262808545944825,0.2254718937979672,0.2225679319643227,0.2256793196432275,11.566773522420371,6.113161950325408,20.584979351304987,12275.830542542928,54.73924197532607,12.95785400415357,17.865018144882132,12.025259538190593,11.891110288099764,0.5561086911429164,0.7690892364305428,0.6986649713922441,0.5936626281453867,0.1001838235294117,0.7179681576952237,0.9205128205128204,0.8726415094339622,0.6951672862453532,0.1313559322033898,0.4951456310679611,0.6843615494978479,0.6344647519582245,0.5597014925373134,0.0915492957746478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303797468354,0.0046618629209611,0.0071619140367428,0.0094653883652908,0.0114490233759367,0.0136510780381537,0.0155143063922611,0.0175768092273144,0.0200049066710281,0.0222649892002006,0.024607308370586,0.026694319243524,0.0286478149100257,0.0307730334301427,0.0327672657491282,0.0350380353894493,0.0371286872430966,0.0390838934528254,0.0413063362714119,0.043124101581217,0.0574236127065015,0.0715885307660108,0.0848651992911296,0.0977809546835416,0.1095530791046821,0.1252868094105207,0.1381260011244417,0.1497222044830449,0.1610732520134156,0.1719688518963446,0.1847439736326231,0.196591462424931,0.2082907303065242,0.2183715664074037,0.2280500957453833,0.2386060169538478,0.2478341445987585,0.2566666666666666,0.2646888386415025,0.2723894292530739,0.2799666554746385,0.2868147176923707,0.292795942310655,0.2984241667766829,0.3039153696498054,0.309463010251286,0.3133743284030709,0.318669992110554,0.3226570999326529,0.327206270452866,0.3262663382196556,0.3261353946029213,0.3243136647275083,0.3228930290372468,0.3225317358860778,0.3216561485203112,0.3195644604817523,0.3198272889954195,0.320168482802135,0.3208625663307098,0.3217806991335524,0.3232265558858853,0.3249001609969264,0.3259033056193299,0.3263765754540662,0.3276770192781713,0.3285896527285613,0.3316987850204579,0.3332170758928571,0.335234648518941,0.3364076133640761,0.3400634249471458,0.3445716442319789,0.3465706707086017,0.3468245826727595,0.3471715864988827,0.3511995141208624,0.3477737665463297,0.3537581699346405,0.3622969399319984,0.0,3.376901791858269,56.68117652878559,179.64350782058818,260.37710200697154,fqhc5_80Compliance_baseline,6 -100000,95746,44331,419.0044492720323,5929,60.81716207465586,4699,48.53466463350949,1916,19.71883942932342,77.33281654085012,79.69804967075537,63.319784280511655,65.07072123988058,77.09656086890037,79.46079174820055,63.23242753302659,64.98512738444772,0.236255671949749,237.25792255481792,0.0873567474850673,85.59385543286169,164.27092,114.97752126780158,171569.2561569152,120085.76909713369,352.85911,228.36308377281665,368001.5353121801,237974.9756596168,358.97687,174.5147331607945,370850.78227811086,179237.30042578888,3414.1041,1555.596296023297,3531088.275228208,1590110.742872107,1138.336,502.5524796068416,1176018.5699663693,511987.1530997033,1890.1823,789.6968938027404,1947183.3601403716,801684.0706631719,0.37942,100000,0,746686,7798.602552587054,0,0.0,0,0.0,30065,313.4439036617718,0,0.0,32745,338.0611200467905,1589102,0,57110,0,0,6445,0,0,72,0.7311010381634743,0,0.0,1,0.0104443005451924,0,0.0,0.05929,0.1562648252596067,0.323157362118401,0.01916,0.3346166185434713,0.6653833814565288,24.672208305027866,4.480685224565813,0.3136837625026601,0.2277080229836135,0.2179187061076825,0.2406895084060438,11.267544449367657,5.722771246536365,20.37478847084472,12247.694258841966,53.13051582192092,12.86624106995694,16.54112440628274,11.342361801535809,12.380788544145426,0.5547988933815705,0.8074766355140187,0.7008141112618724,0.5712890625,0.1105216622458001,0.731974921630094,0.9397590361445785,0.8835978835978836,0.7,0.1255605381165919,0.4887525562372188,0.7236641221374046,0.6377737226277372,0.5274869109947644,0.1068281938325991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190923000537,0.0045236477234692,0.0067621078282059,0.0091277787377644,0.0113640988076343,0.0135878422425032,0.0157966122436492,0.01791730474732,0.0200813889286517,0.0221992402289552,0.0243802415468842,0.0267175964431301,0.0287280092949607,0.0309265610034912,0.0329330196855268,0.0351218100445482,0.037178956089478,0.0393105094384657,0.041218246664795,0.0431394609911345,0.0580552887626842,0.0722423912702315,0.0849823303027443,0.0970689038878025,0.1096108440846614,0.1248149558008712,0.1373272671354183,0.1492416582406471,0.1601388518024032,0.1700466512949756,0.1835350359619277,0.1959710922624199,0.206938176281877,0.217407941922505,0.2275642083264587,0.2383214305486353,0.2478518981409155,0.2565952370233647,0.2652994052753439,0.2731353195777131,0.2799041677758359,0.2865321126694607,0.2927441805366345,0.2976664428242517,0.3035065329687025,0.3091299359757226,0.3139278557114228,0.3191827902240325,0.3243159203980099,0.3274480026411357,0.3262424724156978,0.3247869132368533,0.3239051352189729,0.3229011497577554,0.322007917373575,0.3203279442188338,0.3184128441819592,0.3190256553354234,0.3191830880092893,0.3189936658042644,0.3200936768149883,0.3206383104941567,0.3212887558356187,0.3213743186489143,0.3218647816887863,0.3222314954879766,0.3221702418986764,0.3243966141162402,0.3276195159647335,0.3293584545671357,0.3326046363346541,0.3374787414965986,0.3433606041535557,0.3453537807470391,0.3494955156950672,0.3502532092804145,0.3519052679520267,0.3557344064386318,0.3582171178561663,0.3577668059248006,0.0,2.1229417296370694,55.86788408699526,169.914028225178,260.7208599373559,fqhc5_80Compliance_baseline,7 -100000,95783,44866,424.2715304385956,6079,62.23442573316768,4771,49.26761533883883,1885,19.262290803169662,77.34910350822409,79.67589284313713,63.34642956891118,65.0661334930074,77.11206676051866,79.44202709946697,63.25776229619542,64.98099551742335,0.2370367477054316,233.8657436701652,0.0886672727157531,85.1379755840469,163.30974,114.41338010038444,170499.4832068321,119450.38274055364,356.61223,231.1348650029537,371742.4490776025,240740.7420971922,367.19513,177.58397214488443,379771.5252184626,182714.43893006077,3439.76969,1570.339081688956,3555556.22605264,1603820.9407608395,1119.49404,496.2239579584559,1155378.2925988953,504702.0422689272,1848.41496,778.518075475091,1891700.0093962396,782210.5318720723,0.3826,100000,0,742317,7749.976509401459,0,0.0,0,0.0,30397,316.7681112514747,0,0.0,33568,346.9091592453776,1589997,0,57104,0,0,6412,0,0,64,0.6681770251506008,0,0.0,0,0.0,0,0.0,0.06079,0.1588865656037637,0.3100838953775292,0.01885,0.3402690863579474,0.6597309136420526,24.56491714104955,4.348914108992196,0.3190106895828967,0.2337036260741982,0.2244812408300146,0.2228044435128904,11.096027330198362,5.740333118248247,20.071956940205,12314.985209888802,54.11927512171875,13.359468977599676,17.32910682980146,11.767066836521092,11.663632477796511,0.5577447076084678,0.7946188340807175,0.6925098554533509,0.5564892623716153,0.1175917215428033,0.7122529644268775,0.9238329238329238,0.8535353535353535,0.6651982378854625,0.1531914893617021,0.5019965772960638,0.7203389830508474,0.6358792184724689,0.5272511848341233,0.107487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657809462086,0.0042976312348594,0.0065435067108987,0.0087149952768382,0.0110119168666368,0.0132843356814202,0.0154100165107319,0.0177884370056641,0.020088076919147,0.0222831536084794,0.0242288266691254,0.026680075114673,0.0287340965613631,0.0308164189550825,0.0328174779103215,0.0347972484455369,0.036919765733325,0.0391426971651355,0.0411267781252922,0.043340622722066,0.0581274002337618,0.071956742283999,0.0860881326078067,0.0990163520955063,0.1114447992075785,0.1269826174248428,0.1391338449145716,0.1505226554939971,0.1612916995709986,0.1720572952936009,0.1847163922075126,0.1967858456081154,0.2076764162226813,0.2180969149506239,0.2284585676089037,0.2390762585147034,0.2483815519242789,0.2574162787036412,0.2655047995098373,0.2728282273206026,0.2805885210632243,0.2876814900611889,0.2938858116744781,0.2992726096178504,0.3049777162495294,0.3104017950709521,0.3152512672883159,0.320192466808386,0.3249138176822788,0.3283808769149498,0.3273011466993653,0.3256076568202162,0.3249285120649096,0.3243864033630441,0.32416782967604,0.3221111910263669,0.3206541509165388,0.3212821101669892,0.3219393153349943,0.323501053458558,0.3239254611855042,0.3245751142591457,0.3245757385292269,0.3256006628003314,0.3273845411793079,0.3294970050482592,0.3301676297271011,0.3336809176225234,0.337293333803363,0.3390960632436317,0.340687508582414,0.34342357706246,0.3454568576333693,0.3476197765192101,0.3506763787721124,0.3524895020995801,0.3530232558139535,0.351655087862689,0.3594572140681252,0.3559055118110236,0.0,2.0249404844771117,55.400672000999855,183.11297111690635,258.8081132285662,fqhc5_80Compliance_baseline,8 -100000,95660,44423,420.4265105582271,6189,63.42253815596906,4869,50.24043487351035,1926,19.76792807861175,77.31532774038504,79.70734366517786,63.31028192710126,65.07632365829039,77.07892374768903,79.47183801225474,63.222907260906986,64.99167254796046,0.2364039926960117,235.50565292312345,0.0873746661942718,84.65111032992922,162.37914,113.74637069227305,169746.12168095337,118906.93152025198,352.68615,227.9703413433269,368050.1777127326,237676.13562965384,366.93051,177.38736670442944,378728.4863056659,181808.2054589935,3488.38912,1597.1250818149524,3603551.400794481,1626482.5755958084,1150.90517,510.9176556995029,1188197.815178758,519174.697574224,1888.00074,788.3622767303617,1939629.7721095548,794281.3517319629,0.3805,100000,0,738087,7715.732803679699,0,0.0,0,0.0,30091,313.9034079029898,0,0.0,33676,347.4074848421493,1595951,0,57267,0,0,6402,0,0,67,0.679489859920552,0,0.0,1,0.0104536901526238,0,0.0,0.06189,0.1626544021024967,0.3111972855065438,0.01926,0.3378399139652788,0.6621600860347212,24.241837649686317,4.354487515942335,0.3253234750462107,0.2335181762168823,0.2205791743684534,0.2205791743684534,11.34842077076674,5.81935918204055,20.48409557111441,12334.294871005006,55.670701918062335,13.741817448380427,17.98666895148945,12.115087912368482,11.827127605823982,0.5676730334771001,0.7959542656112577,0.7152777777777778,0.5605214152700186,0.1154562383612663,0.7427293064876958,0.9123222748815166,0.8828828828828829,0.7241379310344828,0.1401869158878504,0.5011337868480725,0.7272727272727273,0.65,0.5079950799507995,0.1093023255813953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0045824124576735,0.0068602975501836,0.0092861642248999,0.01153564453125,0.0137407690348866,0.0159214230345559,0.0179357540472907,0.0202075983023981,0.0224568374055338,0.0247266834861444,0.0267793859333751,0.0286707747384447,0.0308500772797527,0.0330715000877365,0.0349160711146045,0.0369276677753256,0.0391601278698052,0.0410468720743961,0.0429621137109802,0.0575273479537357,0.0709386943091984,0.0843015628115914,0.097440862025423,0.1096055214335465,0.1250079386921269,0.1382415085524988,0.1496069701552947,0.1614599476299898,0.172199147858377,0.1849464915022254,0.1960871354020051,0.2072797727247989,0.2177709689774033,0.2274789656843311,0.2382753152273962,0.2486738807553575,0.2581073478114099,0.2666598551415662,0.2743983497593399,0.282286733287787,0.2894043843119813,0.2965072223537769,0.3024798742666554,0.3077726880596833,0.3123790267897871,0.3170377419920359,0.3214249350913811,0.3255901280607026,0.3301161869553736,0.3290673707750131,0.3283715678444548,0.3273628478089445,0.325072654453971,0.3242435950781668,0.3223593544237895,0.3199341647148193,0.3207908790092717,0.3215930411052362,0.3230911812932202,0.3230579531442663,0.3235154862892089,0.3255380621388493,0.3265105470146585,0.3282027849258074,0.329294350635814,0.3300477129224879,0.3321315623023403,0.3320962782313646,0.3345464725643897,0.3361891235625601,0.3406569965870307,0.3394862036156041,0.3420303240206265,0.3447423464536984,0.3526668261181535,0.355202929508697,0.3610778443113772,0.3675660792951541,0.3699047619047619,0.0,2.605047691014358,58.57061131576877,188.12343514224688,257.00475707623343,fqhc5_80Compliance_baseline,9 -100000,95623,44169,418.0165859678111,6049,61.98299572278636,4737,48.92128462817523,1862,19.053993286134087,77.3146043072854,79.7328584451174,63.296484254502126,65.08265944523393,77.07619820534325,79.49769745885364,63.2066740917434,64.99705323764908,0.2384061019421608,235.16098626376447,0.0898101627587237,85.6062075848456,163.03254,114.11574594442013,170494.6508685149,119338.79731692182,351.77375,227.35004048356737,367237.06639615993,237119.4528995088,357.40502,172.87710304370924,369955.16768978175,177903.20193804856,3340.51458,1533.678288479896,3450178.921389206,1560741.4056523272,1110.34076,492.11494215325627,1147471.026845006,500994.7233025878,1820.37366,774.6499413744086,1864392.457881472,777077.4444294946,0.37813,100000,0,741057,7749.756857659768,0,0.0,0,0.0,29937,312.4143772941656,0,0.0,32754,338.71558097947144,1594413,0,57142,0,0,6283,0,0,67,0.7006682492705729,0,0.0,2,0.0209154701274797,0,0.0,0.06049,0.159971438394203,0.3078194742932716,0.01862,0.333596214511041,0.666403785488959,24.536004005163907,4.272759882305328,0.3172894236858771,0.2469917669411019,0.2191260291323622,0.2165927802406586,11.193328535464376,5.871920266232788,19.994897939848165,12234.839556838486,53.73574598249649,13.94884201935684,16.915829134505888,11.475451323357955,11.395623505275802,0.5659700232214482,0.7666666666666667,0.7032601463739189,0.5915221579961464,0.1101364522417154,0.7324281150159745,0.9200968523002422,0.8940217391304348,0.7377049180327869,0.1233480176211453,0.5061692969870876,0.6829590488771466,0.641409691629956,0.5465994962216625,0.1063829787234042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021379429138844,0.0044214134325785,0.0065679944776058,0.0086572168876695,0.01080322265625,0.0132613566917905,0.0152793219163411,0.0175503115742159,0.0197604606682963,0.0219557403406007,0.0240617852490794,0.0263587710197331,0.0285385074381185,0.0307055053528557,0.0329393548387096,0.0349088502621265,0.0370646688841223,0.0390090436191089,0.040977294957441,0.0429943779792016,0.0573145873621491,0.070944424074171,0.0844123793621288,0.0963945470814253,0.1083854078702921,0.1239966962451555,0.1361178682586388,0.1482484093403958,0.1593367210484086,0.1701494461574825,0.1823498311375824,0.1936976976108919,0.2057144102519396,0.216725830484705,0.2268348067638175,0.2369399465056657,0.2468901232774133,0.2562874656330283,0.2646721283534264,0.2731037014096785,0.2806924101198402,0.287439302638507,0.2938544046787503,0.2982937854462176,0.3042042114978262,0.3094988725556637,0.31455234616395,0.3194557477110885,0.323343685300207,0.3275814303241382,0.3273569159532655,0.3261198339153628,0.3237365485379458,0.3226874475898563,0.3220142257670902,0.3199128820994187,0.3189366662965724,0.3196081659532433,0.3195464214643518,0.3195625324431238,0.3203259647808167,0.3218311524515214,0.3222924884686828,0.3228992486567231,0.3228369065849923,0.3233801211995649,0.3242952259526845,0.3279588336192109,0.3317657714146375,0.3353971133370139,0.340241094406068,0.3411032591498787,0.3405234941658783,0.3423594736441774,0.3453811490799849,0.3470265106281347,0.3538175046554935,0.3637477036129822,0.3744505494505494,0.3794174757281553,0.0,2.32961604555344,54.75065315300872,181.79757679257625,256.62064116398267,fqhc5_80Compliance_baseline,10 -100000,95631,44325,419.74882621744,6147,62.90847110246677,4799,49.4504919952735,1900,19.31382083215693,77.29129418892526,79.69121919475504,63.29829466637945,65.06994932822366,77.04323871918844,79.44964992678582,63.20477953057722,64.98217960348268,0.2480554697368262,241.5692679692114,0.0935151358022281,87.76972474097988,162.89306,114.05161242761692,170334.9959741088,119262.17693803988,350.77217,227.52457932796813,366000.3659901078,237124.38451333236,362.30399,175.5133665882844,374723.47878825903,180270.65961901413,3414.01784,1567.584838425003,3519730.1607219414,1589228.3713527988,1158.31308,517.3520181090985,1191661.856510964,521509.21322314127,1864.83762,798.5067091934507,1898984.325166525,792404.543150477,0.3793,100000,0,740423,7742.499817004946,0,0.0,0,0.0,29972,312.5973795108281,0,0.0,33201,343.0791270613085,1591925,0,57160,0,0,6466,0,0,59,0.606497892942665,0,0.0,1,0.0104568602231493,0,0.0,0.06147,0.1620616925916161,0.3090938669269562,0.019,0.3410888785481619,0.658911121451838,24.429256196618315,4.373841190294498,0.3277766201291935,0.2306730568868514,0.2171285684517608,0.2244217545321942,11.344385792427548,5.918072841091258,20.52356064944304,12288.542113580455,54.62647386262997,13.223308638719,17.857808101542652,11.54995060047547,11.99540652189286,0.5672015003125651,0.8021680216802168,0.7094723458359822,0.5806142034548945,0.1049210770659238,0.7225609756097561,0.9328165374677002,0.8820754716981132,0.708,0.1434262948207171,0.5087467737310009,0.7319444444444444,0.6457789382071366,0.5404040404040404,0.0932203389830508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323379556942,0.004674034269492,0.0068917917643595,0.0090133116553195,0.0114661864501622,0.0135967815857819,0.0157228215429165,0.0180121306185798,0.020172174055292,0.0223414494296889,0.0243254607172524,0.0262725442668748,0.0284864820377762,0.0307283294175837,0.032726296663363,0.0346186466974204,0.0365737382112136,0.0386472426718722,0.0405702096665105,0.0426410333934547,0.0568618844578212,0.071406873579352,0.0845058591289008,0.0967738540076838,0.1091889723887528,0.1244800101616334,0.1358303871919822,0.1478731450607749,0.1593071741687159,0.1695171836248268,0.1831032995471209,0.1957701179298918,0.2078026691050007,0.218850942218621,0.2287282708142726,0.2381607410283432,0.2472678511565538,0.2567136953755728,0.264733937453158,0.2720073348232193,0.2798193817297673,0.2866871833276776,0.2930530056262955,0.2994745429243245,0.3054744525547445,0.3106666666666666,0.3148466196141358,0.3205043216644144,0.324064462552551,0.3285995481987397,0.3278779136389986,0.3264861585971104,0.3259592850890815,0.3245854153088565,0.3234531859751556,0.3217002443409709,0.321054469273743,0.3214226878850779,0.3219246201858774,0.3228280149785892,0.3236372525054998,0.3243371963803778,0.3261057014868872,0.3268609865470852,0.3290179753110186,0.332585910204933,0.3331817665113106,0.3369967970859762,0.340317080887264,0.342154482868399,0.3432570438588492,0.3442188411175316,0.3482791285127881,0.3519809947122385,0.3521553765987683,0.3548890221955609,0.3583734285270836,0.3639371381306865,0.3647746243739566,0.3687428353076041,0.0,2.741555870692085,57.02599495717681,177.18824434078073,263.72819291649074,fqhc5_80Compliance_baseline,11 -100000,95638,44283,419.4044208369058,6266,64.34680775423995,4938,51.098935569543485,1913,19.69928271189276,77.27514686010801,79.6867646566083,63.27600815666828,65.05662705724707,77.0302340471491,79.44171164751678,63.18470209949403,64.96778447213063,0.2449128129589155,245.05300909152083,0.0913060571742505,88.8425851164385,161.9101,113.4374759627886,169294.73640184864,118611.3009084136,353.13855,227.6774475197153,368719.6825529601,237536.3637045059,365.68137,176.78639274904748,379210.3766285368,182375.16835569852,3527.50649,1615.3185917927542,3651569.585311278,1652167.780372607,1204.15731,532.9835674113125,1244099.5943035197,542315.7113328831,1886.04756,799.301292269421,1943253.7485100063,809062.6054019572,0.37904,100000,0,735955,7695.215290993119,0,0.0,0,0.0,30014,313.26460193646875,0,0.0,33476,346.8495786193772,1595749,0,57281,0,0,6166,0,0,71,0.7423827348961709,0,0.0,0,0.0,0,0.0,0.06266,0.1653123680878007,0.3052984360038302,0.01913,0.3349529304585484,0.6650470695414515,24.63500264276704,4.344632648889093,0.3165249088699878,0.2403807209396516,0.2134467395706764,0.229647630619684,11.249083706023336,5.812138116434995,20.47463358003046,12270.163979719047,56.11649967094665,14.188375611394951,17.640394995841465,11.722006347165204,12.565722716545029,0.5664236533009316,0.7885425442291492,0.7031349968010236,0.5806451612903226,0.1322751322751322,0.7294028722600151,0.903529411764706,0.8888888888888888,0.7238493723849372,0.135593220338983,0.5067773167358229,0.7244094488188977,0.6342105263157894,0.5386503067484663,0.131403118040089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0046319288892492,0.0069910202425041,0.0093651599796851,0.0115440555742023,0.0137791266090923,0.015968511644981,0.0184173719512817,0.0202938259740525,0.0223009501965924,0.0243094376006482,0.0262887551108462,0.0284685426205051,0.0305416688141009,0.0325798490277677,0.0346250931060167,0.0363920934523254,0.0385506132580045,0.0405740093240093,0.0426426113254771,0.0575889964255105,0.0716740715902422,0.0846473029045643,0.0972662628390834,0.1096862786521601,0.1249602846794179,0.1380860288179538,0.1498257096867038,0.1600346761419581,0.1709605649243865,0.1839695975125237,0.1962345183610611,0.2074017550553224,0.2180049569012787,0.2276263947290004,0.238646967340591,0.248016117298114,0.2571886426217668,0.2646693909143683,0.2717467464592977,0.2783172647430766,0.2852384024397396,0.2920424340231631,0.2987891310092977,0.3042065684282255,0.3096284409332181,0.3154732789003022,0.3200142704245451,0.3233972944200659,0.3272477112769222,0.3264622902576978,0.3256362507759155,0.3245356517811776,0.3234238406761998,0.3231055253959991,0.320976866117831,0.3185654342490697,0.3193942579331187,0.3205416837221995,0.3206319205463331,0.3221228652306769,0.3225659870396712,0.3231546296684411,0.3260606874328678,0.3262694537319895,0.3281290726163791,0.3300099700897308,0.3329240649792218,0.3358075069476202,0.3388994910941476,0.3392824622108905,0.3429270628291748,0.345046517475484,0.3505076526746477,0.3555054490792935,0.3558494162497022,0.3575487636307787,0.3522357723577236,0.3601987303339773,0.3666538016209957,0.0,2.080488274358176,58.30641935797159,186.7671124758708,268.9820256464798,fqhc5_80Compliance_baseline,12 -100000,95694,44448,420.2562334106631,6171,63.441804083850606,4856,50.253934415950845,1851,19.03985620833072,77.28391542799022,79.67966099644156,63.28504443165552,65.05876910826885,77.0578257102815,79.45447559392373,63.20174119350944,64.97820374382432,0.2260897177087173,225.1854025178233,0.0833032381460867,80.56536444452433,161.46504,113.16472340311032,168730.57871966896,118256.86396546316,353.95921,227.9737445987556,369408.29101093067,237753.7824719999,365.09617,175.8127614154999,378265.1576901373,181312.6509765856,3469.76444,1572.9088260337296,3593051.016782661,1610841.4592698913,1151.85309,505.4549955339639,1191278.9516584112,515794.4965556503,1816.85184,755.8748258721528,1870087.069199741,764383.4286616171,0.38041,100000,0,733932,7669.571759984952,0,0.0,0,0.0,30150,314.565176500094,0,0.0,33414,345.946454323155,1599811,0,57452,0,0,6476,0,0,62,0.6478985098334273,0,0.0,0,0.0,0,0.0,0.06171,0.1622197103125575,0.2999513855128828,0.01851,0.333179012345679,0.666820987654321,24.676262044311397,4.3347311947109,0.3292833607907743,0.2322899505766062,0.2189044481054365,0.2195222405271828,11.109876242010095,5.736371614084391,19.61778632535288,12292.049814576896,55.16562861058872,13.661670796329076,18.03295119463833,11.811088248364566,11.659918371256746,0.5599258649093904,0.7712765957446809,0.7085678549093183,0.5559736594543744,0.1172607879924953,0.7326035965598123,0.9028436018957346,0.8540145985401459,0.7424892703862661,0.1502347417840375,0.4981828347777467,0.6926345609065155,0.6582491582491582,0.5036144578313253,0.1090269636576787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0044121226874391,0.0066093383554829,0.0089125110517169,0.0109886755593541,0.0132018580392796,0.0153704931409046,0.0174143073089022,0.0195857836870365,0.0217275502468806,0.0239756242690358,0.0261600427438247,0.0282153918975931,0.0304638628095596,0.0325980366856942,0.0346022192576965,0.036783371843624,0.0392156862745098,0.0414616640835474,0.043314226159458,0.057703356279575,0.0712333930085743,0.0844606294667688,0.0966706652355998,0.1088009625228229,0.1237364382111669,0.1356184165817193,0.1474152804106583,0.1587194698305809,0.170045613093641,0.1822845933303153,0.1947116426188309,0.2066329863681895,0.2166400210245067,0.2267036939081372,0.2372110059158462,0.2472947594348059,0.256350154387072,0.2651333507573777,0.273283020599165,0.281476415149021,0.2878111115018933,0.2954238132517258,0.3011488457521518,0.3064331613280109,0.3119169833670598,0.3172815533980582,0.3213562946275153,0.3265076157911097,0.330189799121569,0.3297739116383663,0.3296930017605634,0.3283180858550317,0.3267904049880206,0.3258264954215721,0.323385601079076,0.3219179167128669,0.3233943449452207,0.324367277885059,0.323746918652424,0.3248493721493327,0.3252534068593418,0.3253854579155784,0.3255081849253463,0.3244454131550905,0.3247617052477218,0.3271025370280528,0.329821130004101,0.332841898343162,0.3328057610889091,0.335832765280618,0.3366305210261835,0.3388996199140133,0.3431028037383177,0.344955146582817,0.351576233446619,0.346545178435839,0.3459677419354838,0.3492239467849224,0.3436662839647914,0.0,1.9396239913265605,56.50684531935304,187.0298326862188,263.72062376273993,fqhc5_80Compliance_baseline,13 -100000,95649,44557,421.3321623853882,6120,62.56207592342837,4870,50.22530293050633,1928,19.73883678867526,77.35161970545354,79.75662643507152,63.31721993396855,65.09396757371502,77.10959212115044,79.51742775697682,63.22803278521456,65.00831374269528,0.2420275843031021,239.1986780947093,0.089187148753993,85.65383101974078,162.74214,113.95148198736194,170145.1557256218,119135.04792246856,352.93095,228.6090645645028,368331.0855314744,238355.7183120318,365.20604,177.08041492488076,377405.0434400778,181749.69171106623,3484.89761,1582.05970174233,3599368.6081401794,1610200.0696853253,1180.88178,525.480857040338,1213694.8844211649,528822.1136426264,1893.09762,789.3534853370204,1940588.5268011163,793974.7974391602,0.37995,100000,0,739737,7733.870714800991,0,0.0,0,0.0,30064,313.6154063293918,0,0.0,33411,344.9487187529404,1594866,0,57174,0,0,6480,0,0,67,0.6900228962142835,0,0.0,1,0.010454892366883,0,0.0,0.0612,0.1610738255033557,0.3150326797385621,0.01928,0.327930174563591,0.672069825436409,24.269508207437248,4.383356480544959,0.317864476386037,0.233264887063655,0.2254620123203285,0.2234086242299794,11.192131742373014,5.745553274193755,20.5118390207617,12342.785033187934,55.25699712666936,13.7068910032916,17.54118066011269,12.089278678974052,11.919646784291029,0.5560574948665298,0.7596830985915493,0.6931524547803618,0.5837887067395264,0.1204044117647058,0.7226053639846743,0.9064748201438848,0.8661800486618005,0.6887966804979253,0.1822033898305084,0.4950911640953717,0.674547983310153,0.6306068601583114,0.5542590431738623,0.1032863849765258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020263219217637,0.0045124980986665,0.0064850711429557,0.0087072258798667,0.0110468014118748,0.0136280301487064,0.015918013562433,0.0184926121452859,0.020961145194274,0.0232408071289562,0.0252785358146787,0.0274780607106891,0.0295552308230596,0.0314333137455025,0.0331976780217737,0.035290466090735,0.0373337755620277,0.0392413342053629,0.0413454435739775,0.043605196755156,0.058431380744394,0.072652838999466,0.0851535030175806,0.0987584175084175,0.1106831157592578,0.1258771604872937,0.137999129410016,0.1496829203304023,0.1614690873300311,0.1714614005132996,0.183874828816977,0.1960546413753507,0.2077527649568928,0.2179724359886591,0.2278924300156377,0.2386173408866667,0.2482766325903581,0.2573680063041765,0.2656056667385604,0.2732082732082732,0.2805631391421035,0.2872405086964653,0.2937196924896511,0.2995329341317365,0.3043256626856976,0.3095141376466388,0.3153713557670689,0.3210621222126276,0.3255222126054437,0.3303764148460121,0.3297351794596048,0.3288154678531213,0.3285039104259269,0.3277971775706328,0.326097930338213,0.3241142997001774,0.3219819136153797,0.3217970377417291,0.3233164868187406,0.3238491333916427,0.3250918497413211,0.3252714708785785,0.3261812467260345,0.3274326405786101,0.3278181425796705,0.3294108478802992,0.3314579603898502,0.3359997490432273,0.3387023355159494,0.3403446226975639,0.340361719531037,0.3426481423008104,0.3462908568214486,0.3520956271750643,0.3538475905864774,0.3569472556256697,0.3596248462484624,0.3633238980994743,0.371909807117631,0.3688370342491532,0.0,2.6929583064025606,56.79895996527869,183.00384559909057,265.7924351625031,fqhc5_80Compliance_baseline,14 -100000,95787,44548,422.2598056103647,6082,62.28402601605645,4783,49.31775710691429,1890,19.2719262530406,77.3507064425629,79.67763879338791,63.34838135415546,65.06946706608007,77.1119969052321,79.4440552118985,63.25869264504265,64.98477718906162,0.2387095373307914,233.5835814894125,0.0896887091128064,84.6898770184481,163.91672,114.73740302736783,171126.26974432857,119783.89867870156,357.23417,231.09182963076168,372320.6280601752,240630.9940775153,359.11546,173.68045052675276,371445.384029148,178699.6750653019,3425.30803,1568.4299621207415,3533270.4959963253,1594824.432513619,1117.77029,502.5879821586926,1150691.492582501,508647.3350195105,1856.0401,787.5349902116038,1895580.2561934288,786282.6544310536,0.38094,100000,0,745076,7778.466806560388,0,0.0,0,0.0,30451,317.24555524236064,0,0.0,32927,340.2549406495662,1591057,0,57096,0,0,6403,0,0,63,0.6577092924927181,0,0.0,0,0.0,0,0.0,0.06082,0.1596576888748884,0.3107530417625781,0.0189,0.3383092394720302,0.6616907605279698,24.5853574875,4.363425308750089,0.3140288521848212,0.2402257997072966,0.2209910098264687,0.2247543382814133,10.949673190033309,5.53439414696577,20.198171974423456,12251.254686283708,54.06155727520006,13.491020681956003,17.001839085949623,11.743026165363384,11.825671341931058,0.5429646665272841,0.7545691906005222,0.6691078561917443,0.5742667928098392,0.1097674418604651,0.7167051578137028,0.9097387173396676,0.8247422680412371,0.735632183908046,0.1572052401746725,0.4781859931113662,0.6648351648351648,0.6149012567324955,0.5213567839195979,0.0969267139479905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385640776305,0.0044302514193025,0.0066973119425248,0.0090910937753941,0.0114080039043435,0.0136927728628584,0.0159288247523541,0.018154728495474,0.0203255771176308,0.0222984036021285,0.0243255151496521,0.0265655622479657,0.0285288525769487,0.0305943875975376,0.0323378980366276,0.0343812308232693,0.0361644005711802,0.0380982987943313,0.04000332322519,0.0419759512779136,0.057044773939084,0.071215717437447,0.0838941652514833,0.0969165773377892,0.1091050895332047,0.1248731501057082,0.1376713999384922,0.1491805023414218,0.159405126672147,0.1699286158331368,0.1823769388919387,0.194848291591452,0.2065113448665565,0.2170939050241482,0.2270103251487195,0.2370077781834677,0.2473836140120147,0.256859396418058,0.2649052412042075,0.2725878623499387,0.2802499942237934,0.2867989767191935,0.2933724465052459,0.2994011976047904,0.305162496055921,0.3100029558106311,0.3142832137230877,0.3189389893441163,0.3232191169046355,0.3267385458955027,0.3266187050359712,0.3261826182618262,0.3250179494037982,0.3239689008352842,0.3233988209263301,0.321796658448062,0.3204403262849449,0.3201407501192101,0.3211964701053496,0.3217413059794846,0.3214788930845967,0.3221453904222227,0.3222970130416491,0.3240532517765584,0.3254888722783498,0.3270211597311223,0.3288554078826764,0.3313491435265807,0.3323099724751217,0.3353612469680703,0.3374233128834356,0.3395051789835238,0.3407949125596184,0.3425754775107825,0.3394191656418503,0.3431162013839179,0.3445507872800247,0.3513179571663921,0.3514726507713885,0.3572263342423062,0.0,2.2664729714303973,56.77735008091579,171.63969631118405,266.855746445622,fqhc5_80Compliance_baseline,15 -100000,95737,44646,422.3027669553047,6116,62.77614715313829,4810,49.667317755935535,1917,19.647576172221815,77.31652017658898,79.67620186006423,63.31665033110207,65.06198126233325,77.0787257251508,79.43947988434914,63.22880386960877,64.977249474405,0.2377944514381766,236.7219757150849,0.0878464614932994,84.73178792824854,162.41324,113.8179635737332,169645.2155384021,118886.07703785706,353.22578,228.36932689342123,368348.0159186104,237931.92484976683,362.88837,175.42373470894643,374991.4139778769,180282.76013628775,3456.7961,1573.1266467755304,3572270.0105497357,1604724.0740523827,1145.10437,503.0082719666527,1180864.0755402823,510186.6112292416,1885.63024,788.1961096261531,1934437.928909408,793270.7405136907,0.38242,100000,0,738242,7711.146160836459,0,0.0,0,0.0,30054,313.30624523433994,0,0.0,33302,343.90047734940515,1596403,0,57275,0,0,6398,0,0,68,0.6998339200100275,0,0.0,1,0.0104452823882093,0,0.0,0.06116,0.1599288740128654,0.3134401569653368,0.01917,0.3432835820895522,0.6567164179104478,24.601255567567897,4.3419431285489845,0.3182952182952183,0.2363825363825364,0.2122661122661122,0.233056133056133,11.342503202666895,5.870160232824359,20.494581711143816,12346.56987832616,54.8978212731969,13.790671741561638,17.377729420241764,11.470878340719173,12.258541770674332,0.5573804573804574,0.7968337730870713,0.7034617896799478,0.5690499510284035,0.1043710972346119,0.7303284950343774,0.9195402298850576,0.8774509803921569,0.7319148936170212,0.1125541125541125,0.4927163667523564,0.7207977207977208,0.6402493321460374,0.5203562340966921,0.1022471910112359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0045822730913109,0.0068612027404212,0.009144761575744,0.0114237467447916,0.0139123703990385,0.0158485716908202,0.0179937297672661,0.0202656414556088,0.0226670079344765,0.0247723730620949,0.0269534859841872,0.0292139684106614,0.0312522525305571,0.0330489855281751,0.0349947306428615,0.0369346707659182,0.0391485653824609,0.0409247305121568,0.0429963015054435,0.0578623706658035,0.0715877816263957,0.0849265361341541,0.097570977917981,0.1096091188038423,0.1252432729734303,0.1383074654416991,0.1501383862039599,0.1609081196581196,0.1713816742299893,0.1844435348356241,0.1972492452197249,0.2089730764212083,0.2196604462518994,0.2293198327096632,0.2398302361401992,0.2496008752832948,0.2588084417045403,0.2671902130122451,0.2751474884013976,0.2829837207418806,0.2905414098410507,0.2968385668801117,0.3024103609545509,0.307331421070543,0.3125940730870777,0.3171901613064823,0.3215377171089492,0.3257738634891853,0.3299090224868947,0.3284291931072579,0.3280860155765387,0.3269113970536307,0.3261269615869474,0.3249050703596158,0.3229296137734199,0.3213934764002916,0.3220528689469006,0.3218741431313408,0.32274250488325,0.3242644019390477,0.3250960358005623,0.3258549701705739,0.3262180766384897,0.3272867432728674,0.3267731929202617,0.3264263492878956,0.3285548115313276,0.3306434636165883,0.3328573695065842,0.3332878270762229,0.3365645805592543,0.3339846212025715,0.3379310344827586,0.3378061368114854,0.3407707910750507,0.3368146214099217,0.3321175278622087,0.330939226519337,0.3389830508474576,0.0,2.2316351194335646,57.46883181153248,184.0832171550076,258.353231118375,fqhc5_80Compliance_baseline,16 -100000,95688,44587,422.3309087868908,6164,63.37262770671349,4798,49.66139954853273,1895,19.45907532814982,77.40264542862671,79.78377133523568,63.35728834693722,65.11228980756654,77.1704949597222,79.55230047634038,63.271637504363376,65.02930905919473,0.232150468904507,231.47085889530672,0.0856508425738411,82.98074837180991,163.26508,114.31969275776548,170622.31418777694,119471.2949980828,355.62986,229.17878293073903,371197.3079173982,239047.9505588361,363.32057,175.36298991505052,377098.40314354986,181173.08794854864,3422.77406,1543.4878306797973,3544458.740907951,1580486.0073152322,1115.06027,492.1574380291261,1152273.0854443607,501300.3072789961,1858.65244,770.8505187516521,1910447.976757796,778267.6146536418,0.38106,100000,0,742114,7755.559735808042,0,0.0,0,0.0,30304,316.2047487668255,0,0.0,33265,345.0484909288521,1596618,0,57252,0,0,6538,0,0,53,0.5434328233425298,0,0.0,2,0.0209012624362511,0,0.0,0.06164,0.1617593029969034,0.3074302401038287,0.01895,0.3364297878928626,0.6635702121071373,24.67991157509888,4.408926086640747,0.3140892038349312,0.2355147978324301,0.2244685285535639,0.2259274697790746,11.027856374379304,5.607208649989472,19.990552183980345,12315.010952233404,53.93707236517248,13.383022957055466,17.03433200042721,11.848817863317718,11.670899544372078,0.5612755314714465,0.7946902654867256,0.6980756469807564,0.5803156917363046,0.1088560885608856,0.750814332247557,0.918158567774936,0.8762135922330098,0.74235807860262,0.1632653061224489,0.496078431372549,0.7293640054127198,0.6310502283105023,0.5365566037735849,0.0968468468468468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468137031523,0.0044999847973486,0.0064820450395617,0.009049084427653,0.0112872555699047,0.0133902205567887,0.015588202310194,0.0176666904808075,0.0196208676102396,0.0217980862712991,0.0239962278462847,0.0261069532990442,0.0283058637246938,0.0303098962892777,0.0323462649607924,0.0342835290226558,0.0362826818534817,0.0386443351389494,0.0407271819618936,0.0426902352340354,0.0571539007981279,0.0711503424012062,0.0845698574936512,0.097732101908148,0.1102591416788837,0.1259071962082901,0.1385369580441841,0.1499632756032913,0.1615481609711269,0.1723287436194397,0.1843037593013363,0.1971366115487836,0.2089128614461106,0.2198970052809394,0.2294948517116958,0.239499147532272,0.2492670256290202,0.2586106180772428,0.2675925506366396,0.2753424344286662,0.2819470743084099,0.2883648202387481,0.2947434292866082,0.3002559441228531,0.3054104183588115,0.310789366858155,0.3155191803073847,0.3201574003554202,0.3242716189689017,0.3277284389184922,0.3271753285984721,0.3263733702581538,0.3255317954762305,0.3241445824756366,0.3230817069920336,0.3215600042756578,0.319047393290033,0.3196327567833429,0.3204167801688913,0.3208279200555269,0.3221869158878505,0.3227923979481535,0.3238142848215959,0.3244145668239693,0.3262683418049295,0.3272221355385655,0.3273880639472037,0.3325504931892907,0.3364761137008867,0.3391831398803628,0.3452440636251766,0.3489264212264905,0.3515797439616573,0.3554574516669204,0.3583482605826341,0.3608854350641705,0.3625248357022772,0.3647508038585209,0.3681064928008693,0.3683620044876589,0.0,1.9078481517589687,53.90141389146034,179.3730014345006,268.72704496199685,fqhc5_80Compliance_baseline,17 -100000,95733,44656,421.83990891333184,6095,62.46539855640166,4767,49.27245568403789,1920,19.679734260913165,77.33907921770925,79.70478045381647,63.32552877917672,65.07504728533121,77.09861128092896,79.4666188300432,63.23502059535065,64.9877856121166,0.2404679367802913,238.16162377326577,0.090508183826067,87.26167321461276,162.51796,113.84628198645598,169761.69137079167,118920.6250576666,352.75748,227.8036414956356,367941.8695747548,237418.60329837733,361.3943,174.86070848554075,374594.6956639821,180358.9472318321,3443.50875,1576.8573999768662,3561162.336916215,1611310.8227851065,1147.88383,512.2581499003271,1185992.5208653233,522041.8726274956,1881.92398,801.2566165774044,1931140.5889296276,806231.0583972037,0.3818,100000,0,738718,7716.440516854167,0,0.0,0,0.0,30069,313.50735900891016,0,0.0,33032,342.1704114568644,1597694,0,57315,0,0,6366,0,0,61,0.6267431293284447,0,0.0,1,0.0104457188221407,0,0.0,0.06095,0.1596385542168674,0.3150123051681706,0.0192,0.3361002349256068,0.6638997650743931,24.382738397611067,4.469131447894072,0.3188588210614642,0.2280260121669813,0.2263478078456052,0.2267673589259492,11.41658452645876,5.891029270166715,20.588204150963534,12355.681313554627,54.1049489096749,13.026724920162836,17.106252205246907,12.06058430176158,11.911387482503596,0.564715754143067,0.8058877644894205,0.6967105263157894,0.5848007414272475,0.1165587419056429,0.7093292212798766,0.9175257731958762,0.8762886597938144,0.7094339622641509,0.140625,0.5106628242074928,0.7439198855507868,0.6351590106007067,0.5442260442260443,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047045463762825,0.0070643403063244,0.009673223866038,0.0117697323581172,0.014085080813533,0.0164176821495946,0.0186627734841601,0.02093089838238,0.0230955160900469,0.0251879352251633,0.0272793566344504,0.0296504273240566,0.0318246911799552,0.034052436003303,0.0361515552614162,0.038070671597725,0.0398920713989207,0.0418958686451693,0.0438179772471558,0.0577910958904109,0.0717529138504676,0.0846457105710151,0.0975961134011945,0.1098011094003754,0.1262270457815012,0.138754204110214,0.1503087734241908,0.1616847100063053,0.172233966070413,0.1853823605483231,0.1974617475391729,0.2090219673807788,0.2192773193845615,0.2288803735024665,0.2393032564224811,0.2494024883289776,0.259413943330594,0.2677884124118669,0.274803122528285,0.281809340773844,0.2892963283644958,0.2961815084697644,0.3017080298965121,0.3066718452258135,0.3113870463579419,0.31533895657607,0.3200497973805561,0.3250562291564334,0.3286883841113733,0.3272561041196085,0.3264702646201243,0.3253227716073744,0.3251540843195694,0.3241141395666979,0.3220276667126246,0.3194193813910786,0.3205736910414168,0.3215410419661806,0.3221148684916801,0.3225933497121209,0.3240866970936321,0.3259609549915256,0.3257874015748031,0.327246550689862,0.3283322065630037,0.3303418803418803,0.3325891453367712,0.3348786569732729,0.3372439848876516,0.3397898583828232,0.3419957310565635,0.3443972889085956,0.3494298614831254,0.3496437945256843,0.3497805716996797,0.3547140649149923,0.3544510083520065,0.3513738551207327,0.346641074856046,0.0,1.990319657299056,57.22257768460074,175.89611273985986,260.81080876859625,fqhc5_80Compliance_baseline,18 -100000,95684,44344,419.40136281928017,6044,61.96438275991807,4779,49.329041428033946,1895,19.38673132394131,77.30793472821749,79.68295687090352,63.31631099018998,65.06973767133405,77.07015098106399,79.44801170535573,63.22856981779736,64.98559149971453,0.2377837471535002,234.9451655477992,0.0877411723926187,84.14617161952265,163.6305,114.72042021393808,171011.3498599557,119895.09240200876,354.5011,228.85541290169232,369858.15810375824,238544.99488074533,362.52243,175.79235589745997,374661.3749425191,180456.3677152929,3443.27561,1567.55379393297,3559917.1230299734,1599801.7673443137,1145.61711,507.4243127351658,1182205.948747962,515306.9252269226,1860.53334,777.3809571301111,1906981.9405543243,782304.251614374,0.37948,100000,0,743775,7773.243175452531,0,0.0,0,0.0,30279,315.81037582040886,0,0.0,33215,342.99360394632333,1590122,0,57062,0,0,6519,0,0,55,0.5643576773546256,0,0.0,0,0.0,0,0.0,0.06044,0.1592705807947718,0.3135340833884844,0.01895,0.3365506329113924,0.6634493670886076,24.31111356074219,4.395680251704038,0.3180581711655158,0.2293366813140824,0.2261979493617911,0.2264071981586106,11.197843781559689,5.715702078295779,20.25448917734924,12294.456125166676,54.30898068017303,13.213497561448346,17.1712698867049,12.129959106253862,11.794254125765926,0.5591127851014857,0.7928832116788321,0.6815789473684211,0.5864939870490287,0.1229205175600739,0.7476635514018691,0.9435294117647058,0.8511749347258486,0.7596899224806202,0.1697247706422018,0.4898426323319027,0.6974664679582713,0.6244503078276166,0.5321992709599028,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0042864091443395,0.0066139847229125,0.008663768586983,0.0108819461394516,0.0135025049896134,0.0157946793649498,0.0181419091373149,0.0201598887730274,0.0226325864204481,0.0242344715880549,0.0265200517464424,0.028724224816167,0.0308134503646927,0.0330216911233566,0.0350363907038292,0.0369184540462128,0.0390577144696269,0.04114220326641,0.0431374184267039,0.0576517288206413,0.0720984759671746,0.085255946198315,0.0977638941478396,0.1100240374478134,0.1256318605782449,0.138393804370889,0.1493884589591561,0.1607337450054486,0.1708913036482413,0.184007323245921,0.1959778881208148,0.2074562929459859,0.218650923800153,0.2289847101528984,0.2389707918434256,0.2487670988329279,0.2573627016446554,0.2655948626018289,0.2728168126896867,0.2796364899282241,0.2867820797754123,0.2935126114076722,0.299181999184398,0.3041807524868059,0.3090664594051099,0.3138510507650471,0.3181632809114776,0.3231310169447544,0.3281425568760162,0.3277317724489521,0.3262947382939107,0.3253840506043149,0.3245722068475882,0.3237814236964847,0.3219662671311714,0.3204096213384139,0.3213355746728633,0.3217201866337313,0.3229399860307681,0.3240779035229537,0.3242991210491855,0.325716685918303,0.3253683880503426,0.3275957667365782,0.3289866457187745,0.3295983993139917,0.3313028657997727,0.335855193381885,0.3369405211855977,0.33936257899075,0.3394949925420839,0.3447381735390842,0.3493543210819897,0.3532183583074168,0.3568208778173191,0.3585735963581183,0.3569991954947707,0.3569688768606224,0.3570086433671552,0.0,2.3996741600785083,55.95277655155468,180.3807557121929,261.11434643535426,fqhc5_80Compliance_baseline,19 -100000,95720,44742,423.6523192645215,6259,64.32302549101546,4892,50.66861679899708,1929,19.83911408274133,77.38171245272493,79.7545241055801,63.34258245905804,65.0945296509728,77.13953754549651,79.5120668806504,63.25251995159006,65.00632186913336,0.2421749072284171,242.45722492970856,0.0900625074679837,88.20778183944356,162.45768,113.78306180383149,169720.8524864187,118869.88974644095,353.80981,228.9560873814429,369179.7743418304,238745.8943042103,369.37157,178.485184242112,383427.5908900961,184551.95187429927,3484.9174,1597.028954231239,3609256.842875052,1638021.0242151574,1169.76478,517.3474048625777,1210894.128708734,529407.7244817347,1891.5757,799.2691417032715,1947101.0656080237,810513.5324176807,0.38221,100000,0,738444,7714.584203928124,0,0.0,0,0.0,30091,313.89469285415794,0,0.0,33907,351.744671959883,1596761,0,57290,0,0,6392,0,0,52,0.5432511491851233,0,0.0,1,0.0104471374843292,0,0.0,0.06259,0.163758143429005,0.3081961974756351,0.01929,0.3248900348854846,0.6751099651145154,24.431494194864243,4.328235818569638,0.3231807031888798,0.2338511856091578,0.2224039247751431,0.2205641864268193,11.21913566177126,5.800901732655413,20.708902798574822,12355.087397126346,55.57242912235032,13.707696803513413,17.792726310278486,12.108880362641262,11.963125645917149,0.5686835650040883,0.7858391608391608,0.7020872865275142,0.5827205882352942,0.1288229842446709,0.7326807228915663,0.8992974238875878,0.8613861386138614,0.769811320754717,0.1594827586206896,0.5075757575757576,0.7182705718270572,0.6474086661002549,0.5224787363304981,0.1204250295159386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0043183407839917,0.0068190120550391,0.0091826991447087,0.0114225847793803,0.0136863543788187,0.0157328575070099,0.0178957899465065,0.0199952976293918,0.0219265022008393,0.024061183273018,0.0261290951838276,0.028526768268855,0.0305012464204042,0.0326102660419805,0.0344289244321295,0.036455528398028,0.0385489410714841,0.040736311164266,0.0429540552087783,0.0583032227072411,0.0727027196784121,0.0857613496868147,0.0980433410477593,0.1102848885654315,0.1258089759316441,0.13817066830764,0.1503199088712167,0.1609067697928573,0.17199987127364,0.1849461206896551,0.1971440634845023,0.2082318134354333,0.218522122249068,0.2279787046814502,0.2392755532430727,0.2488708472270238,0.2584008097165992,0.2667574004763525,0.2749046861225284,0.2825347615852671,0.2898474487112046,0.2956888084164684,0.3015315660802454,0.3060981535471331,0.3110440034512511,0.3160732604398629,0.3213317551830781,0.3254991842125709,0.3302690582959641,0.3299121615259412,0.3283680536470071,0.3272207836072957,0.3261405760936982,0.3250048163132233,0.3229427576516586,0.3214849921011058,0.3224227141734346,0.3224724648043171,0.3238912528709028,0.3258523630514878,0.3270854707600031,0.328599136582619,0.3301687058456464,0.3314005031747933,0.3316909991442574,0.3310556012362131,0.3341351410452657,0.3385205861828332,0.3395876125770264,0.3429128326005167,0.3463556851311953,0.3484034144799241,0.3541411980440098,0.3566519160154411,0.3594678070800665,0.357088356477949,0.3563334682314852,0.3637869169196798,0.3617839292579777,0.0,1.6435670027924252,58.92171436147134,184.311227873585,264.0092359008301,fqhc5_80Compliance_baseline,20 -100000,95862,44464,420.63591412655694,6188,63.434937722976784,4818,49.71730195489349,1858,19.037783480419773,77.44506122741345,79.72241864909492,63.40474875222951,65.08397126174623,77.20923058070062,79.48732576417409,63.317598526531256,64.99980121506175,0.2358306467128272,235.0928849208316,0.0871502256982523,84.17004668447703,162.63522,113.93351611276414,169655.567378106,118851.59511877922,353.0145,227.64586098209892,367629.060524504,236848.73149120496,360.5797,173.97509388230577,372663.2972397822,178909.28734171684,3437.00559,1555.4623722526428,3547308.923243829,1584546.600584842,1131.18454,493.9851080213604,1166625.7536875927,501920.8320516585,1813.48424,759.5086302974195,1859657.987523732,764354.6047348039,0.38081,100000,0,739251,7711.61669900482,0,0.0,0,0.0,30014,312.54303060649687,0,0.0,33050,341.33441822620017,1602043,0,57550,0,0,6354,0,0,63,0.6363313930441676,0,0.0,0,0.0,0,0.0,0.06188,0.1624957327801265,0.3002585649644473,0.01858,0.3324035332403533,0.6675964667596467,24.604674768663973,4.353207201578786,0.307181403071814,0.2436695724366957,0.234744707347447,0.2144043171440431,11.219010485958396,5.791313650736833,19.733487652418376,12304.07026639967,54.570619272301016,14.137508584286351,16.66183588042641,12.45225047457316,11.3190243330151,0.5647571606475716,0.8066439522998297,0.6851351351351351,0.5694076038903625,0.1122942884801549,0.7123928293063133,0.9032258064516128,0.8594594594594595,0.708,0.1179039301310043,0.5111739745403112,0.75,0.6270270270270271,0.5300794551645857,0.1106965174129353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0047002096860786,0.0069355018606207,0.0092667776379359,0.0115227508281342,0.013612640017906,0.0158070561394931,0.0177633658621146,0.0200757691797118,0.0223006134969325,0.0244931394634446,0.0264909491820932,0.0285626251733169,0.0303952931011427,0.0323099113950133,0.0341246903385631,0.0360407876230661,0.0381231671554252,0.0402400282386163,0.0422350554081473,0.0573409801876955,0.0710114190791604,0.0846534808966882,0.0978634989926124,0.1101957937484876,0.1255369676500079,0.1374614838894124,0.1497115415263331,0.1604000938386402,0.1711845724131288,0.1838581407845244,0.1965510166618074,0.207729049066435,0.2187384004017555,0.2292915980230642,0.239238419754179,0.2489160359798031,0.2577582526235366,0.2661611181011324,0.2733961119946909,0.280646168433955,0.2876052385406922,0.2947043373322922,0.3008511606191565,0.30625,0.3107031605905022,0.3156649432266303,0.319921616531786,0.3248879562705629,0.3295565462843274,0.3284305149977796,0.3274935762672273,0.3263909383475976,0.3245060768388917,0.3238998830686342,0.321919165739202,0.3202735926369539,0.3213194569248615,0.3223469387755102,0.3233388365198558,0.322885182282921,0.3244329714071767,0.3249018297267942,0.3245115729911559,0.3260520706090872,0.3265337900965431,0.3273412912189175,0.3293388817621476,0.3323581652909831,0.3335838013129795,0.3372363205613012,0.3392211108746542,0.3437539392411446,0.3445468509984639,0.3479004370131104,0.3534978437949209,0.3519206939281288,0.3576779026217228,0.3659084526818309,0.3676528599605522,0.0,2.142358705675466,56.44851133090069,180.5800227765674,263.59407759884607,fqhc5_80Compliance_baseline,21 -100000,95688,44386,420.7528634729538,6063,62.11855196053841,4708,48.63723768915642,1905,19.4904272218042,77.29747507811412,79.7014772801605,63.28577397120039,65.0661225156354,77.05780270296974,79.46486172621908,63.19602857322119,64.98055935277463,0.2396723751443801,236.61555394141945,0.0897453979792004,85.56316286076537,163.00856,114.18490641438449,170354.23459576958,119330.43476129136,355.26414,230.5497001218576,370677.2427054594,240359.26248949676,361.28314,174.6451141382189,375039.83780620346,180492.4273864708,3395.14269,1555.03274296546,3506763.544018059,1585211.8472003224,1143.02247,508.87468051404255,1180509.8026920825,519086.3093058458,1876.82332,793.5393628669663,1921625.9301061784,794081.5897477547,0.37931,100000,0,740948,7743.374299807708,0,0.0,0,0.0,30276,315.7867235181005,0,0.0,33060,342.94791405400883,1588855,0,57038,0,0,6429,0,0,64,0.6688403979600368,0,0.0,0,0.0,0,0.0,0.06063,0.1598428725844296,0.3142008906481939,0.01905,0.3306628966383914,0.6693371033616086,24.515880497117223,4.371085823946918,0.3198810535259133,0.2336448598130841,0.213678844519966,0.2327952421410365,11.12644462760872,5.64083975469959,20.293743451942937,12276.077620937916,53.50949496007821,13.215102911058532,16.968669175801054,11.290567092677186,12.03515578054144,0.5603228547153781,0.7972727272727272,0.6859229747675962,0.5984095427435387,0.114963503649635,0.7147385103011094,0.917098445595855,0.8596938775510204,0.7327935222672065,0.1265822784810126,0.5037724898432966,0.7324929971988795,0.6247755834829444,0.5546772068511199,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0043211003590773,0.0066906949591349,0.0088507265521796,0.011260986328125,0.0135773798610686,0.0157480314960629,0.017830518167521,0.0199024310420651,0.0220786269469846,0.0239914660539731,0.0259908364323724,0.0279726754593526,0.0299554841103004,0.0316871960600084,0.0341028982808912,0.0359130624047759,0.0380857448421227,0.0401265072148646,0.0421148074037018,0.0561707373127468,0.0701820503962396,0.0837627107972254,0.0970344733270916,0.1093459915611814,0.1249748717134846,0.138512330017728,0.1496953687529291,0.1608649619814559,0.1716865852741895,0.1840527189973899,0.1966893232300237,0.208355119825708,0.2187904021036485,0.2288230884557721,0.2386362375600501,0.2481556827327193,0.2574550780149834,0.265413721791696,0.2734744878658306,0.2796445206590504,0.2866547188155228,0.2928869301488011,0.2981247148654165,0.3039636854851468,0.3086162202197259,0.3134128148231725,0.3171655591975206,0.3221199413147064,0.3264461170121298,0.3260300232193963,0.3254475438572276,0.3249858677218767,0.3240501927145217,0.3240823368433577,0.3223068319365069,0.3211737720477735,0.3221867060077042,0.3228905810803904,0.3232429352374508,0.3243031310095032,0.3258232235701906,0.3273596925454811,0.3289142398787906,0.3291048176302726,0.3303348585690516,0.3308982376350199,0.3341173518988929,0.337826482739304,0.3382294718505028,0.3425037515347187,0.3467733389848468,0.3480010057832537,0.3511566173682214,0.353647102943934,0.3559962228517469,0.3557810578105781,0.3617193836171938,0.3640856672158155,0.3730371505170433,0.0,2.0710414799776204,55.53283861019269,181.9990634664028,250.8479213541367,fqhc5_80Compliance_baseline,22 -100000,95828,44901,425.0219142630546,6175,63.1861251408774,4865,50.17322703176525,1900,19.40977584839504,77.32864418348662,79.64138306516499,63.32870225298407,65.03951431035458,77.08965573100747,79.40558348828863,63.238752200239496,64.95371810051675,0.2389884524791483,235.7995768763601,0.0899500527445695,85.79620983782377,163.086,114.34897937952864,170186.16688233084,119327.31495964502,356.29814,230.3754517940662,371188.88007680426,239784.3379880477,366.65885,177.54279835460127,379405.4973494177,182677.3015838255,3491.26817,1590.190429416705,3602183.1928037736,1618384.2710224614,1176.6694,521.3701536357931,1213011.9693617732,529191.2113437977,1866.55558,789.5224239963295,1908610.2809199817,789226.504966541,0.38307,100000,0,741300,7735.734858287766,0,0.0,0,0.0,30260,315.1271027257169,0,0.0,33605,347.5080352297867,1589224,0,57104,0,0,6581,0,0,60,0.6261218015611303,0,0.0,0,0.0,0,0.0,0.06175,0.1611976923277729,0.3076923076923077,0.019,0.3300538047655649,0.6699461952344351,24.323510424106736,4.371492670137455,0.3249743062692703,0.2337101747173689,0.2178828365878725,0.2234326824254882,10.923690026310515,5.589940466951298,20.286787891876795,12408.702176609131,55.20870773693814,13.714265724621622,17.759624590154544,11.824488482078984,11.910328940082987,0.566289825282631,0.7854001759014951,0.691967109424415,0.5971698113207548,0.124195032198712,0.7148407148407149,0.9014778325123152,0.8556962025316456,0.7489539748953975,0.1497975708502024,0.5128563443264393,0.7209302325581395,0.6374367622259697,0.5529841656516443,0.1166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484428014381,0.0045513522280338,0.0069598741946938,0.0091215667154233,0.0113687207646939,0.0136021176949704,0.0159616756701661,0.0180534152489615,0.01989698939236,0.0221947076520066,0.0242320539355314,0.0261796761150222,0.0284877447202096,0.030698593753217,0.0327101358109989,0.0345661157024793,0.036571357610754,0.0384974286662242,0.0405712801869644,0.0425903953038156,0.0572215326525716,0.0714211032579147,0.0854243967884619,0.0983616893830326,0.1105641522958215,0.1265750528541226,0.1393925897647982,0.1515025752351764,0.1629980882808411,0.1731084688702812,0.1860522716748689,0.1980741141466053,0.2095018540468242,0.219960647135986,0.2295233484441705,0.2400926202900477,0.2499302026913842,0.2593718680675202,0.2683575071271992,0.2763612172097771,0.2826649042865259,0.2904905421411232,0.2963776461229772,0.3023068605070287,0.3078262139822513,0.312898049864231,0.317487585895571,0.3218489002231431,0.3257054593598297,0.3311684016984351,0.3310539235521027,0.3300002758392409,0.329339286723563,0.328808643318106,0.3286054827175209,0.3270314683703715,0.3250881148191661,0.3250666052692169,0.3261003280481137,0.3266496601673296,0.3274585169213462,0.3278487521259344,0.3286004481581537,0.3290644137499441,0.3294293066544816,0.3316617040171342,0.3318427798348049,0.3344841655943002,0.3360601293480161,0.3407079646017699,0.3431853264323981,0.3461823966065747,0.3535626690145274,0.3537124561670986,0.3579828770345282,0.358720305598663,0.3610856968587984,0.3647938561034761,0.3726132024004364,0.3767334360554699,0.0,2.2766318054108297,56.34333833910768,181.93354946308733,270.6373178745504,fqhc5_80Compliance_baseline,23 -100000,95752,44152,417.6622942601721,6039,61.90993399615674,4742,48.99114378811931,1786,18.349486172612583,77.35098256499538,79.69987134834805,63.33757887846742,65.07118307123484,77.13282788830634,79.48038877452093,63.25714439007915,64.99222424779448,0.2181546766890392,219.482573827122,0.0804344883882706,78.95882344035954,163.30094,114.3027248185673,170545.72228256328,119373.7204638726,351.30384,227.42598512879263,366315.2101261593,236941.5627128338,356.93005,172.77177862426367,369359.2509817028,177775.8052452522,3357.8547,1518.1723660877472,3475150.879355001,1553851.7588016433,1098.41856,483.70844775479975,1135749.9373381236,493769.4552880302,1752.38728,736.2207536930953,1803169.6048124323,746278.7272475917,0.37836,100000,0,742277,7752.078285571059,0,0.0,0,0.0,29931,312.0457013952711,0,0.0,32678,337.82061993483165,1595633,0,57234,0,0,6309,0,0,67,0.6892806416576155,0,0.0,0,0.0,0,0.0,0.06039,0.1596098953377735,0.2957443285312138,0.01786,0.3293594023207757,0.6706405976792242,24.608968498473345,4.377719578796372,0.3298186419232391,0.2374525516659637,0.2132011809363138,0.2195276254744833,11.025366352688817,5.538068943329306,19.157345924775537,12220.05657914159,53.59938623882904,13.475634718006452,17.602814225185234,11.067199962340982,11.45373733329638,0.5586250527203711,0.7770870337477798,0.6975703324808185,0.5608308605341247,0.111431316042267,0.7269076305220884,0.9154929577464788,0.8671875,0.6912442396313364,0.146788990825688,0.4987131827280526,0.6928571428571428,0.6423728813559322,0.5251889168765743,0.1020656136087484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021163914007675,0.0042570012466932,0.0065852891337655,0.0086942390509466,0.0111132576181228,0.0132442915169345,0.0155350098368008,0.0176969474296561,0.0198182728768691,0.0219017695401651,0.0238534555220698,0.0261239991788133,0.0284072215824971,0.030398517145505,0.0322790294627383,0.0343662146518935,0.0365722332670642,0.0385086335713099,0.0404437374588024,0.0424631989082082,0.0570489065191293,0.0710803799322147,0.0842743161492571,0.0973066167658375,0.1092816107099562,0.1245586960657886,0.1370837751855779,0.1482096302208034,0.1598590044862209,0.1702634288656255,0.1828531423339975,0.1950092521453073,0.2069145523159073,0.2168081568352879,0.226405749568012,0.2365580673758865,0.247004567127846,0.2556499240677203,0.2647769696006899,0.2720541036221917,0.2791620855274579,0.2859850922664669,0.2922836731797322,0.298573772258613,0.303425596718805,0.3084618129468076,0.3130202214612443,0.3166622193420501,0.3206106870229007,0.3253862493897853,0.3249080944237217,0.3245955806429407,0.3237657540812586,0.3233017434710265,0.3223130667459492,0.3203180049630832,0.3187354483108162,0.3193083952402866,0.3201053225503103,0.3206839925746109,0.3222846441947565,0.323399972370784,0.3247446416610851,0.3244311457472701,0.3247494365319138,0.3249609578344612,0.325248508946322,0.328116178407879,0.3325071563219995,0.3360714003633204,0.3385969688719484,0.3406058038551154,0.3432049190613628,0.3475729623468925,0.3487634157722818,0.3488509133765468,0.351634793337446,0.3597239139261063,0.3579529737206086,0.3515594917212168,0.0,2.0736833574621896,54.62003815592542,177.55317610411217,262.4621886412212,fqhc5_80Compliance_baseline,24 -100000,95831,44649,421.9824482683056,6200,63.39284782586011,4848,49.88991036303492,1871,19.02307186609761,77.51248185563044,79.79930653395373,63.42745123530996,65.11138290039202,77.28313163182837,79.57480072663401,63.34230732392239,65.03129542766777,0.2293502238020721,224.5058073197157,0.0851439113875685,80.08747272424444,163.01384,114.1939486674718,170105.53996097296,119161.80428824888,355.4048,229.82218505010883,370126.30568396446,239080.3863573467,367.04657,177.73533192617654,378999.3008525425,182328.9230658282,3443.3619,1571.1640843170985,3544690.9246486,1591045.6369203078,1183.27071,526.6072597624599,1217845.937118469,532618.582244965,1830.10764,764.1954552509121,1862982.3334829025,758215.251785282,0.38156,100000,0,740972,7732.069998226044,0,0.0,0,0.0,30253,314.9711471235821,0,0.0,33700,347.6223768926548,1600279,0,57327,0,0,6316,0,0,73,0.7513226408990827,0,0.0,0,0.0,0,0.0,0.062,0.1624908271307265,0.3017741935483871,0.01871,0.3414896891351185,0.6585103108648815,24.238291760928497,4.358253538582008,0.3226072607260726,0.2400990099009901,0.2192656765676567,0.2180280528052805,11.538004957243883,6.166941983053677,19.715439643229445,12311.542909656064,54.67830263523358,13.827985592829268,17.576307335117455,11.78335918181493,11.490650525471912,0.5699257425742574,0.7843642611683849,0.6975703324808185,0.5738476011288806,0.140964995269631,0.7568807339449541,0.9221967963386728,0.8762626262626263,0.7683397683397684,0.1898148148148148,0.5008474576271187,0.7015130674002751,0.636986301369863,0.5111940298507462,0.1284185493460166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025296986622953,0.0049726050981861,0.0073282721292532,0.009680267069842,0.0118450191999024,0.0139530153564527,0.0160758282258557,0.0182431881220427,0.0204425474559137,0.0225176398404744,0.0246377553632686,0.0266334389646083,0.028493043710569,0.0305771684986208,0.0328353900555675,0.034993854385077,0.0369416074255735,0.039076836943111,0.0410018283054932,0.0430916908725572,0.0572584766533515,0.0713561218407871,0.084460698529797,0.0968280642789622,0.1093842136298542,0.1248890954412945,0.1366194347001282,0.1486156005444028,0.1600738424764974,0.1700432603760654,0.182825991118375,0.1948998768712332,0.2065704762835336,0.2168790469638898,0.2267100190032624,0.237462816954363,0.2471339282730038,0.2568129226483341,0.2651422487994926,0.2732851820529816,0.2806523795243258,0.2872952633908809,0.2936536012452242,0.299031722721683,0.3048413053737158,0.3099713910342203,0.314309573367567,0.3198283174860413,0.3245218332731865,0.3287529201774418,0.3288895439198242,0.3279958394919801,0.3271968753062396,0.3260531991373113,0.3257450331125828,0.3239208989586351,0.3220215922722394,0.3230260789895618,0.3230583309220268,0.3241396490978326,0.3255879111642416,0.3263858792009771,0.3273209327571449,0.3281062324836514,0.3298115907464822,0.3309568092581111,0.3334934041411259,0.3368669754717567,0.3395532741398446,0.3437109375,0.3462450239298654,0.3484247861464636,0.3505295101257199,0.3551892094417385,0.3598044641210108,0.3618131231161604,0.3651315789473684,0.3694968553459119,0.373789020452099,0.3759314456035768,0.0,2.7236447772655623,56.76296282163026,175.5970420137323,267.97219670452444,fqhc5_80Compliance_baseline,25 -100000,95730,44350,420.3280058497858,6177,63.05233469131933,4881,50.31860440823148,1948,19.87882586441032,77.31288813594676,79.67006611706402,63.318020272784125,65.06138063280109,77.06515731114388,79.42780115812045,63.225351960370325,64.97419468848207,0.2477308248028862,242.26495894357924,0.0926683124137994,87.1859443190175,163.0266,114.15826395534825,170298.33907865873,119250.24961386008,353.43829,228.6548700621023,368440.2799540374,238090.94334284167,362.63275,175.26406599211202,375081.0299801525,180231.47128178368,3477.77688,1594.9149784384688,3583381.823879661,1616535.5880481263,1164.92775,519.0725265715855,1198103.0920296668,523460.9566970599,1902.49078,802.7956768952979,1942532.6021101011,798890.9906947591,0.37904,100000,0,741030,7740.833594484488,0,0.0,0,0.0,30175,314.4991120860754,0,0.0,33205,343.07949441136526,1593881,0,57248,0,0,6374,0,0,66,0.678993001149065,0,0.0,0,0.0,0,0.0,0.06177,0.1629643309413254,0.3153634450380443,0.01948,0.335343228200371,0.6646567717996289,24.56533096034298,4.344700107974428,0.3288260602335587,0.2323294406883835,0.2212661339889367,0.2175783650891211,11.304123629746131,5.87092722439459,20.800898237103603,12290.507473330625,55.297230602509394,13.499489939460188,18.1407299658534,11.960879643681167,11.69613105351464,0.561360376971932,0.783068783068783,0.6996884735202492,0.5833333333333334,0.0932203389830508,0.7174578866768759,0.90625,0.8457831325301205,0.7352941176470589,0.1434599156118143,0.5043356643356643,0.7116991643454039,0.6487394957983194,0.5403800475059383,0.0787878787878787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0046321166847423,0.0069298592721111,0.0094665420712631,0.0116150161206659,0.0139511201629327,0.0162638931375548,0.0183050709027983,0.0203960618731661,0.0223837804628302,0.0245667999589869,0.0265035991908238,0.0288385391490368,0.0308807927237518,0.0325406241939644,0.0344998656386299,0.036459843432879,0.0383290445754129,0.0400673855848923,0.0420000833541718,0.0567237419085404,0.0707446975483682,0.0840578494195131,0.09732912723449,0.109319638940442,0.1247910627763789,0.1368653421633554,0.1498349834983498,0.1610115168479306,0.1721700895490374,0.18513094417643,0.1969628139399052,0.2085924927145404,0.219701610080504,0.2291389270976616,0.2393086638599601,0.2484623198597948,0.2570505750748385,0.2649447416544565,0.2729252386792128,0.2801384772137829,0.2864630251412661,0.2925778661365142,0.2987434956717742,0.3042003937869175,0.3096981802041722,0.314956783164224,0.3198039964362988,0.3236635484957633,0.3277618487639232,0.3267794050219813,0.326203134899865,0.3252719653464648,0.3253019026382091,0.3241157364641377,0.3225464598371986,0.3211033956747652,0.3220126822037388,0.3222532700186858,0.3221156432093232,0.3217729656572492,0.3222945354974403,0.3226659947083281,0.323302883754254,0.3240564331363801,0.3266661437498366,0.3291479564110631,0.3311191244385399,0.3344744829533422,0.3369847679206812,0.3387237161574052,0.3432255314614524,0.3458396178984414,0.3492863140218304,0.3546588546588546,0.3552146509691997,0.3565903465346535,0.3669255928045789,0.3632299525006985,0.3675964845242644,0.0,2.4832759863836045,56.88260401956562,183.04717204600604,266.9371616425806,fqhc5_80Compliance_baseline,26 -100000,95781,44888,424.4787588352596,6216,63.65563107505663,4867,50.22916862425742,1932,19.81603867155281,77.37208356525132,79.70995922763473,63.35007434272507,65.07899809732577,77.13508157163142,79.47442744407515,63.26217897133724,64.99409657190972,0.2370019936198986,235.53178355957985,0.0878953713878374,84.90152541604346,162.44228,113.914116010656,169597.6028648688,118931.85079572776,358.54584,231.45528835923307,373771.562209624,241082.87484911733,369.06836,178.57213781732153,381567.7326400852,183555.54446324607,3484.1112,1584.5369732752472,3598909.8986229,1615662.462571123,1139.80412,502.3261636792618,1176955.440014199,511402.4418193224,1890.58926,787.9667682512553,1940756.6427579585,794336.2883416808,0.38389,100000,0,738374,7708.981948403128,0,0.0,0,0.0,30473,317.5368810098036,0,0.0,33756,348.65996387592526,1595667,0,57309,0,0,6512,0,0,78,0.814357753625458,0,0.0,1,0.0104404840208392,0,0.0,0.06216,0.1619213837297142,0.3108108108108108,0.01932,0.3300598434862667,0.6699401565137333,24.593061245724044,4.349075870554446,0.31292377234436,0.2397780973905897,0.2212862132730635,0.2260119169919868,11.232925548692998,5.8739105942698,20.47209567915293,12426.125526204634,55.196147340061486,13.938824577320757,17.334477423419678,11.903868359039125,12.018976980281916,0.5613314156564619,0.7969151670951157,0.690741956664478,0.5923862581244197,0.1018181818181818,0.7228915662650602,0.9181818181818182,0.8567961165048543,0.7131147540983607,0.125,0.5007064142413111,0.7235213204951857,0.6291629162916291,0.5570228091236494,0.0956221198156682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0046328210534852,0.0070020904791865,0.0092949076096341,0.0113597071087155,0.0132452353803551,0.0156458632745211,0.0179500785762393,0.0202238005211792,0.022454660826135,0.0244929749228829,0.0266428564097827,0.0288642414399227,0.0307979035596239,0.0329277096009075,0.0349238494761422,0.036943875121628,0.0390243396559055,0.0412506104466911,0.0434040249450812,0.058322637197508,0.0725431954148014,0.0863690207876888,0.0990217608305051,0.1107891992119596,0.1267788659630439,0.1398836334347213,0.152311683892646,0.1639333767245334,0.1748585875899897,0.188138729318617,0.2007631029972869,0.2117645780356871,0.2219137354349299,0.2311033405907061,0.2414327631069036,0.2512046042651914,0.2605108143351769,0.2686112024304807,0.2761258115117304,0.2825302458997432,0.2891647961092405,0.2962113600094568,0.3021429426553334,0.3070528844987015,0.3122291174152876,0.3171702505820212,0.3226019733496084,0.3275293326261594,0.3307274501015108,0.3297081479290736,0.3291213998269445,0.3287439579487324,0.3273723471925056,0.3272616518341331,0.3253054475303916,0.3224545353824726,0.3232692844133042,0.3242508210180624,0.3250549018907676,0.3258460616951183,0.3268892794376098,0.3281505043318126,0.3306255439755406,0.3318916840865951,0.3326029112537173,0.3329519778051082,0.3341750576055048,0.3377413568740548,0.3409398645957786,0.3413566739606127,0.3433651804670913,0.3445283018867924,0.3474221308354276,0.3492362813501791,0.3512553292278541,0.3563708326990409,0.3608859007316591,0.3661705006765899,0.3651092690278824,0.0,2.266035177346098,58.26260285853909,178.7048539416597,266.49361701652055,fqhc5_80Compliance_baseline,27 -100000,95642,44452,420.53700257209175,6223,63.8631563539031,4904,50.6367495451789,1916,19.656636205850987,77.25911226955019,79.65400218161487,63.27736057920528,65.04508201852997,77.01607793471462,79.41326963940641,63.18718700243652,64.95870839851816,0.2430343348355705,240.7325422084625,0.0901735767687625,86.37362001181259,162.85984,114.10078485720756,170280.6716714414,119299.8733372447,353.45678,228.5980842810816,368863.417745342,238315.4412089685,367.9967,177.88870725484847,380343.0292131073,182634.63975444817,3491.53614,1589.452987189003,3609754.8252859614,1621001.8163453322,1191.06458,522.6667036288279,1227860.657451747,529006.7267819868,1875.53986,786.8747564563248,1925731.9378515717,791611.0912340881,0.37905,100000,0,740272,7740.030530520064,0,0.0,0,0.0,30140,314.46435666339056,0,0.0,33708,348.0165617615692,1588167,0,57086,0,0,6302,0,0,57,0.5855168231530081,0,0.0,1,0.0104556575563037,0,0.0,0.06223,0.1641735918744229,0.3078900851679254,0.01916,0.3268995098039216,0.6731004901960784,24.583566466423648,4.273300674948025,0.3317699836867863,0.2361337683523654,0.2169657422512235,0.2151305057096248,11.264905213715137,6.040215289693822,20.403012366209094,12336.886717877633,55.77952609735808,13.911274439527912,18.35408344613294,11.885760352815243,11.628407858881976,0.5797308319738989,0.7918825561312608,0.6859250153657037,0.631578947368421,0.1308056872037914,0.7440246723207402,0.9268867924528302,0.8728606356968215,0.7478991596638656,0.163716814159292,0.5206542833379539,0.7138964577656676,0.6231527093596059,0.5980629539951574,0.1218335343787696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0046339954775448,0.0069727787589062,0.0092058201918387,0.0115265272902996,0.0137799686309657,0.016008320247976,0.0182120726441193,0.0202412594561439,0.0222226771621303,0.024657562335958,0.0270461756461201,0.0291803379858675,0.0311321726589059,0.0331172986026543,0.0353420464885433,0.0374821291672709,0.03957024964966,0.0415444465247872,0.0434102708450616,0.058438097626736,0.0719133604256567,0.0846713642139309,0.0980761738288037,0.1100163683404614,0.1252184412035713,0.1377980774337458,0.1498636150534884,0.1606745658311232,0.1708155243884104,0.1837580098815508,0.1959666670278822,0.207987015109097,0.2192796958374878,0.2292990118228339,0.239438027543314,0.249169174993566,0.2583694279011009,0.2671451809216139,0.2739976327009044,0.2812844526453829,0.2876482526424457,0.2941148546811768,0.2992556786070728,0.3045264980611175,0.3093089380640376,0.3147506403495555,0.3200617638426298,0.3246166430788008,0.3289357028489764,0.32810833434593,0.3267422432719791,0.3264953879237168,0.3261160195303418,0.3252706233669279,0.3241901013238211,0.3219886553219886,0.3228898991895632,0.3237266910263668,0.3231722606297238,0.3242131750920153,0.3259488032309794,0.326007556675063,0.327213847012842,0.3282147405858746,0.3293321182137742,0.3297842054318738,0.3348649839491408,0.3379029139864318,0.3412373184802069,0.343854199972594,0.3488718603661132,0.3500567966679288,0.3543313069908814,0.3549564729008705,0.3556719438162123,0.3600061434495469,0.3670266965559405,0.3639178159301998,0.3675078864353312,0.0,2.5090075068995144,56.6759492838597,186.7239129998346,269.4500932399733,fqhc5_80Compliance_baseline,28 -100000,95602,44515,422.0518399196669,6187,63.398255266626215,4860,50.1035543189473,1939,19.83222108324093,77.28554750318864,79.71879169060348,63.27381344368565,65.07228935360688,77.04323513223473,79.47893140327955,63.1837104081572,64.98629573824648,0.2423123709539112,239.8602873239355,0.0901030355284504,85.99361536039396,162.63148,113.95517683779624,170113.05202820027,119197.48210057971,354.16822,228.72714156394488,369742.37986653,238530.607690158,364.08821,176.04601194164042,376020.9828246271,180382.6902310897,3454.61355,1570.456385971616,3563977.1971297674,1593303.210103308,1136.59081,496.06172070078446,1173903.077341478,503982.9976647406,1894.65302,792.829555332275,1940123.0099788704,793917.9729417012,0.37983,100000,0,739234,7732.411455827284,0,0.0,0,0.0,30210,315.2444509529089,0,0.0,33331,343.9153992594297,1592574,0,57140,0,0,6568,0,0,69,0.7112821907491474,0,0.0,1,0.0104600322168992,0,0.0,0.06187,0.1628886607166363,0.3133990625505091,0.01939,0.3349223435337536,0.6650776564662464,24.341342487018277,4.3363857972668685,0.3189300411522633,0.2335390946502057,0.2275720164609053,0.2199588477366255,11.207202022989696,5.773131701468802,20.586470513485505,12324.151120942262,55.10337783820155,13.734228320417657,17.444830631980892,12.174423426726444,11.749895459076557,0.5606995884773662,0.7991189427312775,0.6916129032258065,0.5605786618444847,0.117867165575304,0.7023076923076923,0.8983451536643026,0.8320987654320988,0.7319148936170212,0.1012658227848101,0.5089887640449439,0.7401685393258427,0.6419213973799127,0.5143513203214696,0.1225961538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023510336441021,0.0047165505279493,0.0069853389107744,0.0093510189561416,0.0115675741667684,0.0137619818883761,0.015811324989034,0.0180410264792415,0.0200059322293931,0.0218858494720563,0.0240762397160501,0.0261097410604192,0.0282343979989912,0.0300684451408073,0.0324325998740281,0.0346197209321569,0.0369330252126965,0.0387167796944614,0.0405837227941253,0.0427458302475252,0.0581643320091992,0.0723747642003772,0.0856821573449355,0.0985997113024054,0.1109326966755052,0.1261650567700389,0.1389995855516944,0.150925896312406,0.1620187059906256,0.1727909575382499,0.1846069185783034,0.1974260560326134,0.2093005514505547,0.2194865389040465,0.2300661521499448,0.2398827890869536,0.2496618487094358,0.2574020850943928,0.2653014841246392,0.2730670029231386,0.2805707072461754,0.2874875578195445,0.2940730113939508,0.2991918925084953,0.3045293537667523,0.3093741898048124,0.3142355889724311,0.3183376451247021,0.3226484361824951,0.3269647481634163,0.3268212500505247,0.3258204334365325,0.3242896425297892,0.3238642116377627,0.3240294869508353,0.3218553000904949,0.3207080319756376,0.3221429041384301,0.3231798046828233,0.3242827227005065,0.3258273178963157,0.3263919073774055,0.3278437460663785,0.3289270616654365,0.3295364429385048,0.3304827012554912,0.3313874404896849,0.336026050472791,0.3386978785662033,0.3403944196340355,0.3429312227074236,0.345527808705795,0.3502924344380856,0.3541666666666667,0.3580512436880493,0.3585038814396613,0.3616438356164383,0.3583383746723129,0.3641067538126362,0.362781954887218,0.0,2.856259175894851,56.46316996435445,178.0825394502643,271.2502017103654,fqhc5_80Compliance_baseline,29 -100000,95811,44159,418.24007681790187,5849,59.857427644007466,4578,47.23883478932481,1850,18.9226706745572,77.35864855579545,79.66167931255347,63.35358995694328,65.05359373158475,77.13131890965784,79.43815903126305,63.2698947099399,64.97369720632004,0.227329646137619,223.52028129041912,0.0836952470033765,79.89652526471502,164.1673,114.92335814584592,171344.93951633945,119947.97898555064,351.49408,228.254089755292,366291.8871528321,237663.6604933588,358.02318,173.64827884390124,370252.643224682,178541.86318975914,3275.61297,1486.2560623481056,3381420.0457150014,1513829.7819124183,1103.20247,484.1292802492949,1133399.6618342362,487259.6677305256,1812.95702,751.7759055724237,1855971.9447662584,753813.9602248799,0.37758,100000,0,746215,7788.406341651793,0,0.0,0,0.0,30010,312.6363361200697,0,0.0,32770,338.62500130465185,1589303,0,57030,0,0,6511,0,0,60,0.6262328960140275,0,0.0,1,0.0104372149335671,0,0.0,0.05849,0.1549075692568462,0.3162933834843563,0.0185,0.331321370309951,0.668678629690049,24.613852476625905,4.358516842331554,0.3108344255133246,0.237221494102228,0.2267365661861074,0.2252075141983399,11.357881339753956,5.912432317580508,19.51253468739193,12164.176018600723,51.88064752929083,13.216225820996002,15.979435619496044,11.56046345805836,11.124522630740437,0.5718654434250765,0.8186003683241252,0.7041461700632466,0.5876685934489403,0.113482056256062,0.7427385892116183,0.9255583126550868,0.8602739726027397,0.7625,0.1269035532994923,0.5108212273940113,0.7554904831625183,0.6502835538752363,0.5350877192982456,0.1103117505995203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021962229014432,0.0047301198229496,0.0070156229406814,0.0094472688158949,0.0114705464003413,0.0136208738110981,0.0156663814529601,0.0176165168871706,0.019696381505016,0.0217987274698745,0.0240085217961324,0.0260118571399265,0.0282015718908922,0.0301717484589974,0.0322926547614137,0.0342580351978848,0.0361314888201392,0.0380353088749054,0.0398745287036363,0.0416718717468249,0.0565321259793233,0.07018222496367,0.0835447018132271,0.0956839749046312,0.107531640900804,0.1233131492460028,0.1356649139173946,0.1471820947599089,0.1586679621187046,0.1692701911633841,0.1820844099913867,0.1937151820001081,0.204779975425968,0.2152584085315832,0.2253508723650173,0.2352028547048328,0.2442998560316061,0.2531555855551806,0.2613841387996868,0.2697216175965173,0.2775064802814294,0.2845254397977457,0.2904027846842367,0.2959112709832134,0.301083243164383,0.305995363519779,0.3109782037486549,0.3153543857864146,0.3200315927129595,0.3242865247852647,0.3234985328559507,0.323501100110011,0.3230412153608102,0.3220417231728078,0.3210613008057695,0.3187140760670172,0.3172895939768755,0.3185503725831336,0.3196459390646093,0.3210070810385523,0.3218959763002962,0.3228281070821305,0.3240657196214617,0.3254145621955035,0.3266891079586439,0.3278320363503421,0.3298206534155814,0.3337224711301824,0.3354800112612612,0.3385754668153043,0.3423784374430887,0.3466084549036311,0.3510410094637224,0.3530268199233716,0.3596128547265551,0.3614358247727004,0.3665082042631498,0.3685609157808667,0.3790390559145827,0.3789682539682539,0.0,2.102710535184231,52.71711664454239,173.1907246989907,252.3883173960552,fqhc5_80Compliance_baseline,30 -100000,95834,44228,417.0336206356825,6289,63.96477241897448,4963,50.921384894713775,2032,20.66072583842895,77.41454581429173,79.70319314368743,63.37712166936033,65.0680077750471,77.1586849893096,79.45388079115651,63.28021502547393,64.97723624450643,0.2558608249821219,249.31235253092157,0.096906643886399,90.7715305406782,163.7174,114.5563554095944,170834.3594131519,119536.23495794226,353.86366,228.37885223386837,368396.25811298704,237456.50002490592,364.08285,176.7691497253087,374059.5300206607,179995.19626430605,3526.94443,1640.73943697173,3623939.103032327,1655738.889091269,1190.62199,537.1068960197705,1217941.6177974415,536017.5678984185,1977.63134,844.4203857435105,2013167.664920592,836822.8015886166,0.38047,100000,0,744170,7765.198155143268,0,0.0,0,0.0,30203,314.26216165452763,0,0.0,33417,342.8950059477847,1593760,0,57291,0,0,6474,0,0,62,0.6469520212033307,0,0.0,0,0.0,0,0.0,0.06289,0.1652955554971482,0.3231038320877723,0.02032,0.3335857056329497,0.6664142943670502,24.334046884393608,4.335974262983317,0.3274229296796292,0.230505742494459,0.2272818859560749,0.2147894418698367,11.679748079257358,6.248947687573498,21.72002658697628,12278.42785555422,56.67921816210959,13.63090530802455,18.60764959167773,12.719981585327652,11.72068167707964,0.5726375176304654,0.7762237762237763,0.72,0.5895390070921985,0.1116322701688555,0.7363571934798016,0.902097902097902,0.8758169934640523,0.7700729927007299,0.1566265060240964,0.5076013513513513,0.7006993006993008,0.6586620926243568,0.531615925058548,0.0979192166462668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024497646403806,0.0051162555088394,0.0076356003528803,0.0097455992528373,0.0119016160178879,0.0141434080525849,0.0165138549307253,0.0187380146068791,0.0209405900138922,0.0234637100073643,0.0256076700093211,0.0277364625752649,0.029705208429662,0.0315481765874445,0.0337550132483787,0.0358703173898224,0.0378363837646012,0.0398893172490983,0.0418050826343327,0.0435953980901658,0.0574637137137137,0.0716331180368303,0.0846019256760296,0.0978903485282844,0.1098894154818325,0.1250026407520862,0.1376475324730362,0.1488545154946048,0.160088351099587,0.1703586271905394,0.182902948138584,0.1950446650660783,0.2065232748970209,0.2162466394177176,0.2257947500329772,0.2360460869276488,0.2457277351418882,0.2552026533250885,0.2637138221712937,0.2713716327652556,0.2786403498623227,0.2855772492776341,0.2926572392166144,0.2981154242693073,0.3032701191344517,0.3082103082103082,0.3134855525356646,0.3178704222482555,0.3227593544034459,0.3275529355785244,0.3273905778352738,0.326862712704444,0.3257999520944584,0.3253417728836093,0.3239091354796535,0.322120316638851,0.3198785751553384,0.3208178255808234,0.3220978257159436,0.3216207547842201,0.3229544350166336,0.3241201073232323,0.3250245502601283,0.3251699164345404,0.3272129416282642,0.3274764120292153,0.3283925376948632,0.3330103762970371,0.3361456327673726,0.3360294992268348,0.3384273535280246,0.341373109065905,0.3458970358814353,0.3499321982823565,0.3554559880518995,0.3597122302158273,0.3654373666565071,0.3727882855399634,0.3830079736046192,0.3810246679316888,0.0,3.398591622926449,60.80987804565447,181.9381761287156,266.3524539700277,fqhc5_80Compliance_baseline,31 -100000,95729,44360,420.4995351460895,6058,62.26953169885824,4731,49.03425294320425,1893,19.513418086473276,77.36002699221102,79.73197843768382,63.33690834044432,65.0887442871258,77.12795742393328,79.49809747592126,63.25111207614642,65.00386137669652,0.2320695682777369,233.88096176256568,0.0857962642979046,84.88291042928608,163.34164,114.41793155807402,170629.21371789114,119522.74813073783,354.15959,229.4200985464777,369571.2688944834,239266.4632641582,359.71524,173.62533566352718,373458.9100481568,179557.91192432193,3381.58633,1532.7025124887325,3507267.1290831408,1575894.7253186817,1145.39206,502.4331519266458,1188375.5497289223,516730.6896830073,1849.23398,769.6567829108736,1908206.645843997,784501.0080834614,0.3786,100000,0,742462,7755.873350813234,0,0.0,0,0.0,30232,315.41121290309104,0,0.0,32867,341.07741645687304,1593229,0,57118,0,0,6360,0,0,60,0.6267693175526747,0,0.0,0,0.0,0,0.0,0.06058,0.1600105652403592,0.3124793661274348,0.01893,0.333856045162302,0.666143954837698,24.634921483951235,4.356595934140769,0.3204396533502431,0.233143098710632,0.2261678292115831,0.2202494187275417,11.277339394332248,5.981792809930463,19.99558973506337,12216.342327998243,53.6376492111606,13.281034473584713,17.099747106407168,11.961311547650364,11.295556083518363,0.5759881631790319,0.8050770625566637,0.7097625329815304,0.5738317757009346,0.1410748560460652,0.7430830039525692,0.941747572815534,0.8544474393530997,0.7216117216117216,0.1818181818181818,0.5150028851702251,0.723589001447178,0.662882096069869,0.5232120451693852,0.1308523409363745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0046325862401038,0.0066062531077803,0.0086551941323472,0.0110968713129093,0.0132682986436397,0.0152293577981651,0.0174120720978178,0.0195757730641451,0.0214480230962959,0.0234677766614037,0.0257997618167631,0.0279400271482045,0.0299621996312661,0.0319744946915529,0.034108414925404,0.0361863915133432,0.0381657203948392,0.0401485287540434,0.0420552470068459,0.0562883131259333,0.0701726844583987,0.0828507888553205,0.0948750039439226,0.1074177156472051,0.1226545735155762,0.1351047467515247,0.1468616308026307,0.1580976589200273,0.1689317472406062,0.1813304605440344,0.1932544878106842,0.2050908616642031,0.216355666327791,0.2262704688170151,0.2362772461456672,0.245994734023563,0.2557294829408721,0.2647989206226828,0.2725232703250403,0.2797590138532344,0.2865825151940159,0.2930414626646798,0.2992253259737305,0.3048503611971104,0.3101333628874358,0.3146077254077855,0.3182858014335824,0.322381531613137,0.3264883543035003,0.3259116669134572,0.3251169832094687,0.3247674090780941,0.323238020855932,0.3220177759281828,0.320945687292327,0.3191644132390847,0.320291635946588,0.3202415887531563,0.3216678545972915,0.3224279835390946,0.3223368782431979,0.3242052973221181,0.3255632563011165,0.3266054606035908,0.3280380635432375,0.3296020963285767,0.334204806753394,0.3392417528311177,0.3424264178033022,0.3463227222832052,0.3485769107771027,0.3516366149400012,0.3498136456986385,0.351879558631008,0.3531834765211251,0.3614311704063068,0.3617363344051447,0.3660273972602739,0.3719230769230769,0.0,1.4840688823401824,56.342200523907,176.4619290147096,259.68372489100034,fqhc5_80Compliance_baseline,32 -100000,95752,44537,421.8188654022893,6097,62.46344723869998,4782,49.36711504720528,1906,19.508730888127666,77.33346816806463,79.69739233439846,63.32120940122799,65.07099305777393,77.09729936540931,79.46244252608916,63.23377261383414,64.98656021294018,0.2361688026553139,234.94980830929532,0.0874367873938481,84.43284483375635,163.23802,114.35918992283636,170480.01086139193,119432.69062039054,355.45082,229.50323689041892,370651.4015373047,239116.2032024594,361.31204,174.87492467135078,373812.985629543,179895.35806424057,3414.63986,1554.060168460327,3526651.8819450247,1583528.3006729125,1135.97316,503.7498857268728,1169839.8362436297,509575.7668621091,1866.5976,786.3064368395508,1912520.949954048,789401.5512424316,0.38026,100000,0,741991,7749.091402790543,0,0.0,0,0.0,30226,315.07435876013034,0,0.0,33070,341.893641908263,1593979,0,57180,0,0,6368,0,0,74,0.7728298103433872,0,0.0,0,0.0,0,0.0,0.06097,0.1603376637037816,0.3126127603739544,0.01906,0.3360552763819096,0.6639447236180904,24.425344159119824,4.358683444221204,0.3255959849435382,0.2344207444583856,0.2160184023421162,0.2239648682559598,11.358250725074129,5.910288277456382,20.484688568419926,12245.081395207626,54.50687958966925,13.60191788953798,17.653593574731346,11.504425225737997,11.746942899661924,0.5706817231283982,0.7983942908117752,0.7096981374438022,0.5972894482090997,0.1045751633986928,0.7288519637462235,0.9023809523809524,0.8607888631090487,0.7666666666666667,0.1330472103004291,0.5101214574898786,0.7360912981455064,0.6518650088809946,0.5460277427490542,0.0966587112171837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0044720723644181,0.0067900858656598,0.0090227397427299,0.0112589247574296,0.0132778054964412,0.0155874077396729,0.0177175399563185,0.0199194636359919,0.0219565373158772,0.0238663973837179,0.025604435090601,0.0277346441389097,0.0299893924882339,0.031828405175082,0.033953488372093,0.0358781076239684,0.0379774418146161,0.0400877439208225,0.0423579649013175,0.0568389406766391,0.0709403945784708,0.0837757864472938,0.0965356947541121,0.1086163256696899,0.1243642208334655,0.1370764105502153,0.1485711244744824,0.1598705570745044,0.1700964044052202,0.182836584551418,0.1948910479735139,0.2058356533843744,0.2163551452976496,0.2266572808165689,0.2368045175220063,0.2458390542848531,0.2550526647461289,0.2649091548736339,0.2725305673856299,0.279691005388903,0.2859281262059852,0.2926283909283424,0.2984545345633161,0.3036455425839178,0.3088823522172035,0.3139953498837471,0.3192384438428591,0.3234913570023807,0.3283580119830021,0.32788563883537,0.3268410772743528,0.3266722996761019,0.3245540489751077,0.324017778834862,0.3225880656984679,0.3204362091648306,0.3210600683491062,0.3214841412327947,0.3229633865232386,0.3229238867761937,0.3232754362044776,0.3247437774524158,0.3253082008218688,0.3257508355976627,0.3261170448907111,0.3279126627622676,0.3316366606968925,0.3352658023259899,0.3378244501684169,0.3414512244990685,0.3455327738234356,0.3485879979828543,0.3535260823007495,0.3579545454545454,0.3598080383923215,0.3550724637681159,0.3548254620123203,0.3555181128896377,0.3469626168224299,0.0,2.219179534633969,58.35893223429264,177.6743504750691,257.8841335343929,fqhc5_80Compliance_baseline,33 -100000,95789,44471,420.4449362661683,6095,62.25140673772562,4819,49.62991575233064,1867,19.07317124095669,77.34149214859087,79.68371994729696,63.33904717832892,65.07357495405749,77.11325231758566,79.45618966674583,63.254379197476005,64.99168135169045,0.2282398310052116,227.5302805511359,0.0846679808529131,81.89360236704601,164.09844,114.916431021416,171312.4053910157,119968.29596448025,355.10012,229.08414513947145,370031.5171888213,238475.73963318585,363.24725,175.99995134557977,374651.8911357254,180199.24763815585,3420.04185,1558.583942503071,3525403.751996576,1582333.9214096663,1117.57526,496.31517174206886,1149881.0093016943,501424.9367469657,1827.3628,760.9942077214487,1868703.9221622525,761446.3291647501,0.38046,100000,0,745902,7786.92751777344,0,0.0,0,0.0,30266,315.2554051091461,0,0.0,33381,343.9434590610613,1592630,0,57139,0,0,6437,0,0,57,0.595057887648895,0,0.0,2,0.0208792241280314,0,0.0,0.06095,0.1602008095463386,0.3063166529942576,0.01867,0.3408876298394712,0.6591123701605288,24.59775359986813,4.38313794985042,0.3363768416683959,0.2324133637684166,0.2160199211454658,0.2151898734177215,11.17214434185969,5.733892428246812,19.680810668630347,12260.047853599594,54.53772890712419,13.454324127724332,18.226588434869345,11.585223221023767,11.271593123506769,0.569620253164557,0.775,0.7069710055521283,0.5859750240153698,0.1166827386692381,0.7443491816056118,0.9202898550724636,0.8726415094339622,0.6895161290322581,0.1675126903553299,0.5062217194570136,0.6898016997167139,0.6482873851294904,0.5535939470365699,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070332364233,0.0047747939539551,0.0072251255771474,0.0095110352396049,0.0116497939665259,0.0136496521375966,0.0161757506527415,0.0181560109875522,0.0200218829568578,0.022189682360892,0.0243009628102986,0.026514684740193,0.0286155112116848,0.0308227998063273,0.032957054708298,0.0347511499302289,0.0367283119680245,0.0389526862311849,0.0411895509050479,0.0429831044856913,0.0576451562418488,0.0710461930950837,0.0842852052899629,0.0970470786044556,0.109157972389082,0.1246115468363528,0.1370763408144009,0.148695642926269,0.1605452197209858,0.170307642834173,0.183127549867057,0.1951172043940835,0.2069321453794752,0.217085273351258,0.2267694371447106,0.2373598148947712,0.2466978029939919,0.2557854905175221,0.2646515894497231,0.272501743434967,0.2797968136688986,0.2864930486651802,0.2930840944807458,0.2988452103153234,0.3043610080283295,0.3087372190026208,0.3141779204717229,0.3191373226027571,0.3228589510119209,0.3261804833765311,0.3256867171961511,0.3247400733425812,0.3232124264850719,0.3226421086059066,0.3222596789283752,0.3201903363016004,0.3190105403095622,0.3196446750517224,0.3202926045565639,0.3217947343978852,0.3229588773825604,0.324582764150383,0.3271277153951096,0.3272560306403566,0.3280963855421687,0.3287889472172164,0.329462032576279,0.3347699328178476,0.3373178667421134,0.3398930225131726,0.3419055067396604,0.3446648793565683,0.3451569763739412,0.3460854780122111,0.3508102955195424,0.3539366298607777,0.3561708118254341,0.3572021585720216,0.3607021517553794,0.3667186282151208,0.0,2.6167488443533955,55.565222121094,180.3808780419688,265.0758731686954,fqhc5_80Compliance_baseline,34 -100000,95702,44386,420.3255940314727,6158,63.29021337067146,4813,49.71682932436104,1879,19.278593968778083,77.3419109081298,79.71071539951802,63.33255108723839,65.08081356490158,77.11276240854397,79.48230105772603,63.24745912175227,64.99810843748747,0.2291484995858326,228.41434179198927,0.0850919654861144,82.7051274141013,163.229,114.26421014183268,170559.6539257278,119395.8434952589,354.2245,228.7271164540359,369529.01715742616,238395.51571966716,358.93925,173.65336468721932,371057.9820693402,178346.82548147257,3460.43639,1566.7616811177168,3578953.626883451,1600383.4703126648,1143.48179,500.2912998870802,1181679.818603582,509672.1790638435,1847.54968,774.5062659423775,1897569.0999143173,782742.7655539596,0.37866,100000,0,741950,7752.711542078536,0,0.0,0,0.0,30159,314.51798290526847,0,0.0,32899,339.7316670498004,1595127,0,57271,0,0,6368,0,0,68,0.710538964702932,0,0.0,1,0.0104491024221019,0,0.0,0.06158,0.1626261025722284,0.3051315362130561,0.01879,0.335651367640241,0.6643486323597589,24.76340018701845,4.406930804076096,0.3147724911697486,0.2356118844795346,0.2235611884479534,0.2260544359027633,11.249730744090716,5.824403539837418,20.04605513246804,12257.63975793762,54.50221008557168,13.492247467767648,17.092395060972095,11.948774909832103,11.968792646999823,0.5522543112403906,0.7733686067019401,0.6917491749174918,0.5613382899628253,0.1185661764705882,0.728744939271255,0.937984496124031,0.8512820512820513,0.7245762711864406,0.1531531531531531,0.4913359418669648,0.6880856760374833,0.6364444444444445,0.5154761904761904,0.1096997690531177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026733635774465,0.0049559136515658,0.0073747210387502,0.0097302348257089,0.0121812339854394,0.0142135700904129,0.0161880587581679,0.0184126724912223,0.0204721995094031,0.0223934825549858,0.0245822655048692,0.0266559878425694,0.0285673152071078,0.030402620951125,0.0326082469971519,0.0342988277615828,0.0359883594486272,0.0382424060025529,0.040375996922149,0.042592438200842,0.0571094353811125,0.0709186450613407,0.0842006966886305,0.0973336839337365,0.1095933758767997,0.1249471011426153,0.1372195406566594,0.1490084201786227,0.1605777037131991,0.1708162148825933,0.1840934790802864,0.1960523325650099,0.2082073481107655,0.2181277405386491,0.2276806334543055,0.2377267846666445,0.2471703373292444,0.2562497189874556,0.2649630814250229,0.2713997985901309,0.2791491232128811,0.2860486069669206,0.2929389764711452,0.2981390276928976,0.3034857302538059,0.3091027917529841,0.3135889374600749,0.3183680219836141,0.3234075608493009,0.3268275325839143,0.3258759708705191,0.3247474400384853,0.3237870288357445,0.3224768855745791,0.3220308815022471,0.3207351007552824,0.3179857479182796,0.3183241780765762,0.3184884137907481,0.3198057455051866,0.3204421959902567,0.3210847779249273,0.3230104278130966,0.3249563230748555,0.3264161390500493,0.3267275097783572,0.3283309557774608,0.3325361110236964,0.3369687587953842,0.3404162015627491,0.3428336905467645,0.3464118398637138,0.3510330057949105,0.3533639143730887,0.3525580517273928,0.3545432921027592,0.3582135209544203,0.3630586305863059,0.3684063633826402,0.370142362447095,0.0,2.2813622978198818,54.056211690367135,186.19717759615412,264.70950763483825,fqhc5_80Compliance_baseline,35 -100000,95720,44138,417.9690764730464,6160,63.236523192645215,4852,50.208942749686585,1902,19.630171333054744,77.33810060160408,79.72108556881723,63.31256206328344,65.07511074537179,77.10193116557889,79.48191801530524,63.226466396066726,64.98946522479679,0.2361694360251931,239.16755351199012,0.0860956672167105,85.64552057499952,163.57396,114.48771975331675,170887.96489761805,119606.89485302629,352.27943,227.43630692286857,367559.10990388633,237133.7828279028,361.73613,174.754219656334,374587.5052235688,180066.3382230836,3463.26757,1576.0478820804103,3585056.5608023405,1613484.779436282,1114.81935,493.18770830383903,1151408.1383201005,502024.8237414235,1859.89048,772.3753275535311,1920444.9644797328,788305.0614151806,0.37822,100000,0,743518,7767.634768073548,0,0.0,0,0.0,30134,314.3021312160468,0,0.0,33089,342.34224822398664,1592787,0,57218,0,0,6421,0,0,53,0.5536982866694525,0,0.0,1,0.0104471374843292,0,0.0,0.0616,0.1628681719634075,0.3087662337662337,0.01902,0.3385594535858429,0.6614405464141571,24.33734981547779,4.325112804097027,0.3268755152514427,0.2310387469084913,0.2277411376751855,0.2143446001648804,11.123197582451256,5.735469771905349,20.14994665442753,12266.61889388509,55.057378867962015,13.578413500039874,17.870088043315747,12.31303778124238,11.295839543364016,0.5558532563891179,0.7805530776092774,0.680327868852459,0.5855203619909503,0.0923076923076923,0.7443095599393019,0.9023255813953488,0.909313725490196,0.7111913357400722,0.1231527093596059,0.4855687606112054,0.7047756874095513,0.601018675721562,0.5434782608695652,0.084826762246117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022602420384747,0.0043213633597078,0.0066399983755355,0.0087606967904547,0.0109074999236882,0.0132207498548569,0.0154009342553495,0.017669829532107,0.0199621618857698,0.0221266574514923,0.0242004122273608,0.0265949254007208,0.0287379958461,0.0307701813463499,0.0327632094740968,0.0347015542328042,0.0365277892818686,0.0386147653234842,0.0404611658055327,0.0422816904342753,0.0573517126148705,0.0709799652479745,0.0842138397775562,0.0970320355061946,0.1097155873327216,0.1251348664029279,0.1373441561886572,0.1482846008049918,0.1591489543594182,0.1698062605934476,0.1823901403746916,0.1945962914452106,0.2060968177266988,0.2166568196240618,0.2261763281834587,0.2363084288215607,0.2465410771515672,0.2558524287579345,0.2646137075895898,0.2733888806115549,0.2805270592594308,0.287497073284945,0.2939790141879249,0.2998177982355197,0.3042786142199215,0.3101478245847832,0.3150283222216652,0.319116672613283,0.3232988194435445,0.3277457334054882,0.3271151309591106,0.3268860397292687,0.3263036377970492,0.3249057856967526,0.3238482787299135,0.3226404399711997,0.3207812969909935,0.3221037085658024,0.3231460443821856,0.3239499473411756,0.3241556396896202,0.3241897233201581,0.324838493162178,0.3264290517821116,0.327395710468671,0.3285617790709758,0.3287215909090909,0.3312829525483304,0.334686308128346,0.3392969984202211,0.3430735930735931,0.3457413249211356,0.3444285447645119,0.3441699827314363,0.3467607202524596,0.3449407902450463,0.348735701384708,0.3511465603190428,0.354317998385795,0.3604956815621479,0.0,1.8592109684108329,58.301259635165735,180.13817549687184,264.2636967575799,fqhc5_80Compliance_baseline,36 -100000,95650,44313,419.4563512807109,6000,61.61003659174072,4702,48.56246732880293,1854,18.97543125980136,77.27782633283482,79.68807808305206,63.2892740309558,65.07216626675354,77.04302274030351,79.45532047569239,63.20129097191175,64.9877674729215,0.234803592531307,232.7576073596731,0.0879830590440491,84.39879383203674,162.8957,114.13385983298924,170303.69053842133,119324.25806062655,350.98344,227.0518772719716,366351.34343962366,236784.49389019512,362.2451,175.61831227568842,375089.83795086254,180866.9873270818,3329.94302,1518.388106040444,3440992.1380031365,1547121.144212696,1089.93188,485.2144143024715,1128211.897543126,495992.90570044063,1812.22196,769.0964932287487,1856436.2362780971,771466.5569540825,0.37872,100000,0,740435,7741.076842655514,0,0.0,0,0.0,29863,311.58389963408257,0,0.0,33075,342.2373235755358,1593460,0,57201,0,0,6383,0,0,69,0.7109252483010977,0,0.0,1,0.0104547830632514,0,0.0,0.06,0.1584283903675538,0.309,0.01854,0.3247808764940239,0.6752191235059761,24.51103308383641,4.314978757571717,0.3107188430455125,0.2430880476393024,0.226286686516376,0.219906422798809,11.267932498782482,5.931628014213341,19.83556044472744,12215.793441067775,53.22349158941435,13.70786954514378,16.356494566010173,11.787814408348488,11.371313069911924,0.5623139089749043,0.7882764654418197,0.7002053388090349,0.5629699248120301,0.1170212765957446,0.7243027888446215,0.9221411192214112,0.8622589531680441,0.7154150197628458,0.1578947368421052,0.5033362344067305,0.7131147540983607,0.6466302367941712,0.5154130702836005,0.1054590570719603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002249559207,0.0046040889177348,0.0068625261405396,0.0089941766517271,0.0112620173966122,0.0134574831144752,0.0155532891381947,0.0176187606606269,0.020038665725596,0.0223622208563818,0.0243694807126226,0.026223883969842,0.0283897389461119,0.0306003607317701,0.0325627974684851,0.0348971908485375,0.0367656964032206,0.0387406938228789,0.0407717282717282,0.0429287926342241,0.0572775153617857,0.0714270752602584,0.0847381127322347,0.0981425940541962,0.110757022560834,0.1257859637980311,0.13846970742845,0.1494427990027913,0.1597895142142077,0.1702902051728025,0.1830497149446593,0.1944946776830866,0.2063158582252025,0.2168403081772019,0.2260997842265181,0.2361063398308935,0.2459411777842292,0.2547042405690105,0.2629332849068168,0.2705175177467369,0.2769584880345143,0.2836464824796268,0.290169539651929,0.2959184896613724,0.3012772990775737,0.3068591167036762,0.3120014026474971,0.3169058016219588,0.3208660141310689,0.3253501973779755,0.3249147125847818,0.3242713893601467,0.3233067841608767,0.3221541625034392,0.3217168558067494,0.3195751277840028,0.3176593853187706,0.3181773285483817,0.3189699482575472,0.3199462846911369,0.3212910978838462,0.3232823520088755,0.3246112848060096,0.3256250838663506,0.3285868911605532,0.3290532621435083,0.3301084474885845,0.3349649466304554,0.3389740503416292,0.3413444235614028,0.3436454466290847,0.3469942442975911,0.3509503062448696,0.3518987341772152,0.3536804308797127,0.3528636472561706,0.3548986225042563,0.3592333058532564,0.3645775041969781,0.3637417858523386,0.0,2.3117710083634715,54.854452129628925,174.78615474291263,258.8015054438497,fqhc5_80Compliance_baseline,37 -100000,95817,44664,422.2632726969118,6192,63.37080058862207,4896,50.50252042956887,1916,19.65204504419884,77.39792083527668,79.70122214173647,63.37134666233783,65.07146518077585,77.15664555695211,79.46021249227884,63.28192684593132,64.9840073071656,0.241275278324565,241.0096494576237,0.0894198164065116,87.45787361024782,163.96864,114.88866437291468,171126.87727647493,119904.25954988642,357.4906,231.1127071668756,372525.3138795829,240630.25054726785,370.51608,179.83699572388838,381804.8989219032,183950.49533910025,3472.75855,1587.667972605693,3588035.578237682,1620649.2298920786,1152.92685,504.95488502328703,1188096.3294613692,511836.41214323847,1871.02808,787.358128496583,1921409.10276882,796520.1301176753,0.38152,100000,0,745312,7778.494421657952,0,0.0,0,0.0,30512,317.82460314975424,0,0.0,33928,349.3430184622771,1589983,0,56960,0,0,6366,0,0,62,0.6470668044292767,0,0.0,0,0.0,0,0.0,0.06192,0.1622981757181799,0.3094315245478036,0.01916,0.3308630538829705,0.6691369461170295,24.499237729766488,4.280617236516433,0.3286356209150327,0.2422385620915032,0.2085375816993464,0.2205882352941176,11.063352440780838,5.7987397245689865,20.442479290464888,12271.2975311074,55.58314812293803,14.141362163082077,18.13611437608444,11.462604903163514,11.843066680608,0.5606617647058824,0.7824620573355818,0.6861404599129894,0.5827619980411362,0.1092592592592592,0.7218442932728647,0.9270588235294116,0.8197115384615384,0.7537878787878788,0.0963302752293578,0.5009795689896446,0.7017082785808147,0.6395641240569991,0.523117569352708,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021462703490726,0.0041544650366302,0.0065621988944672,0.0088137038879806,0.0110706733897202,0.013250290040911,0.0152839762792688,0.0175771486865595,0.0199235752089421,0.021945530068957,0.0242095772800852,0.0262015901513208,0.0284173216212051,0.0305627874908671,0.0327241994166331,0.034763305972846,0.0369734337498965,0.0391663039197396,0.0410471008473168,0.042981433685788,0.0574331372303584,0.0709825864142655,0.0840166082999559,0.096502202550543,0.1092196936957827,0.1239058733984523,0.1370432422115242,0.1488904262678942,0.1603102365232998,0.1712217097500804,0.1843403338718363,0.1962010254635138,0.2082060425522662,0.2178838142515061,0.2279520934375928,0.2382349684420329,0.2477500083642811,0.2568980638197396,0.2655918732922916,0.2735448585191711,0.2813645138543701,0.2879241050565473,0.2949627527492018,0.3004069419509276,0.3051174181346459,0.3107032585831498,0.3150354716227018,0.3196149890160125,0.323717285610841,0.3274599662873999,0.3267139289454604,0.3261257305929808,0.3248559786426865,0.3238261320727524,0.3229124975912008,0.3204701572279041,0.3190606208866653,0.3200831682519932,0.3198417840215501,0.3203232308817496,0.3221176338492056,0.3223240020531449,0.3224482960730135,0.3235149290478535,0.3237909347213186,0.3249549761177668,0.3265300280528997,0.3291279327135901,0.3316667840292937,0.3355744748567791,0.3396831211649418,0.3397809243921987,0.3421985815602837,0.3431064839623364,0.3476321533643352,0.3531167900644853,0.3544712944435893,0.354158215010142,0.3579264947888096,0.354174609226077,0.0,2.379411047003085,57.822797168340905,181.89120213608155,268.95619230623925,fqhc5_80Compliance_baseline,38 -100000,95564,44411,420.3361098321544,6097,62.77468502783476,4782,49.57933950023022,1893,19.46339625800511,77.19945181010942,79.66969430545045,63.224607941291474,65.05366240456168,76.9709826879637,79.4422305259295,63.14111165578741,64.97266044588471,0.2284691221457251,227.46377952094576,0.0834962855040615,81.00195867696414,163.11394,114.18959384560388,170685.5510443263,119490.17814826072,355.5241,229.50833210298205,371577.83265664894,239712.5194665168,358.90796,173.19219324102002,373259.6270562136,179385.9896366074,3412.76251,1540.857771646329,3537656.544305387,1578859.5722723296,1171.73073,512.8924310930232,1211760.903687581,522339.8885490591,1859.30378,768.8098091768595,1912906.3873425135,776455.1613747678,0.3809,100000,0,741427,7758.434138378469,0,0.0,0,0.0,30310,316.6882926625089,0,0.0,32873,341.6244610941359,1587008,0,56971,0,0,6391,0,0,80,0.8371353229249509,0,0.0,0,0.0,0,0.0,0.06097,0.1600682593856655,0.3104805642119075,0.01893,0.324307403349507,0.6756925966504931,24.611760282464743,4.352870552969684,0.3312421580928482,0.220409870347135,0.2220828105395232,0.2262651610204935,11.482508757460243,6.074113463321918,20.0440840726752,12353.084283622811,54.11536389403128,12.72039748747183,17.7728314462226,11.836723391645966,11.785411568690874,0.5759096612296111,0.8102466793168881,0.7133838383838383,0.5903954802259888,0.1321626617375231,0.7433841218925421,0.9359605911330048,0.8746736292428199,0.7396694214876033,0.1527777777777778,0.5168316831683168,0.7314814814814815,0.6619483763530392,0.5463414634146342,0.1270207852193995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022807675543076,0.0045656541060449,0.0068953611178812,0.0090491296567431,0.0112086166877061,0.013537482925238,0.0159412154921671,0.0180564071122011,0.0202415063446582,0.0225458346570471,0.0245029101696829,0.027125127245432,0.0291961030668781,0.0312970642239689,0.0334201388888888,0.0355978345254484,0.037584393764973,0.0396283478315093,0.0417378442564893,0.0433974673501132,0.0574993985418562,0.0714165880255845,0.0851097376387487,0.0978431517169439,0.1102561934556523,0.1256784835891781,0.1385762610897176,0.1498607361243023,0.161171101684021,0.1716525441954492,0.1845924582091486,0.1966058659490663,0.2084555896115795,0.218926863510727,0.2288482547810061,0.2393656011906084,0.2489566667039618,0.2573253150703478,0.2655919361077613,0.2736260707806077,0.2815699460838309,0.2880207295196332,0.2945571857246213,0.300335026477899,0.3070488389932665,0.31224285555432,0.3171071630359721,0.3217506665135918,0.3266988652592765,0.331115402931372,0.3291650349083739,0.3284699717299869,0.3277265864224533,0.3264718229324995,0.3249072736210209,0.3233979822177177,0.3213775591176003,0.3219708197477192,0.3228212779092499,0.3240529929545903,0.3246753246753247,0.3251041873387577,0.3259820958399157,0.3264082292696074,0.3275699465576863,0.3282811065949915,0.3282088053922272,0.3320598636019197,0.3363084738587455,0.340401032360532,0.3434283900802466,0.3481774960380349,0.3501033769813921,0.3522347217999392,0.3536345776031434,0.3548425430778372,0.3570124733799817,0.3565008987417615,0.3659134222706234,0.3722794959908362,0.0,1.8185672619981983,55.14008646829943,177.65413660481576,268.5985064599424,fqhc5_80Compliance_baseline,39 -100000,95667,44604,422.0264040891843,6034,61.64090020592263,4807,49.51550691461005,1911,19.515611443862564,77.33990302576841,79.72865616915472,63.32261558699434,65.0880993821495,77.09224279917443,79.4861036263279,63.22969980873479,65.00018345938939,0.2476602265939789,242.5525428268145,0.0929157782595453,87.91592276010363,164.1112,115.0056446920831,171544.21064734968,120214.5407424536,355.62206,229.93377637082685,371011.529576552,239630.50620467548,365.82762,177.15155613994594,377569.694879112,181455.17488241664,3422.02204,1572.4950365960422,3529147.4698694427,1595850.7182163564,1109.05776,495.1476231884131,1141102.731349368,499389.3871371186,1869.09766,798.5477733344333,1910872.0039303,797610.4388981187,0.37915,100000,0,745960,7797.464120334075,0,0.0,0,0.0,30282,315.7828718366835,0,0.0,33370,343.9744112389852,1587595,0,56967,0,0,6510,0,0,67,0.7003459918258125,0,0.0,0,0.0,0,0.0,0.06034,0.1591454569431623,0.3167053364269142,0.01911,0.3404288867865027,0.6595711132134974,24.47721090457924,4.280057485627768,0.3278552111504056,0.2315373413771583,0.2209278136051591,0.2196796338672768,10.992318928007224,5.617840305022092,20.560832460141217,12256.083991642668,54.60816228198304,13.349469880440145,17.75912217507607,11.862784009104145,11.636786217362673,0.5496151445808196,0.7915543575920935,0.6637055837563451,0.568738229755179,0.1051136363636363,0.7223511214230471,0.8956310679611651,0.8624078624078624,0.7182539682539683,0.1486486486486486,0.4860557768924303,0.7303851640513552,0.5945252352437981,0.5222222222222223,0.0935251798561151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044295778217018,0.0066057168369676,0.0088875797342867,0.0114700588755681,0.0135080111565789,0.0155950585069515,0.0178002776190087,0.0199439810271508,0.0219758848697005,0.0240811932954021,0.0262066558541542,0.0284427443237907,0.0304375592270611,0.0327378187860585,0.034956937106463,0.037005957005957,0.039038415627822,0.0412886984021304,0.0433033108164456,0.0586361072226981,0.07239700570591,0.0850365116669464,0.0978265443528025,0.1100960016879417,0.1259495143987643,0.1380964001145852,0.1504481297766802,0.1614598353039187,0.1720706810773717,0.1838321612045104,0.1967365664697353,0.2080696030451332,0.2180635285112897,0.2277040265944565,0.2378056211018423,0.247502873787708,0.2558097660338289,0.2638955084995801,0.2722294773982175,0.279491896019158,0.2858880209551429,0.2922257720979765,0.2985013836146483,0.3039176409173131,0.3097666740581959,0.3139161005392286,0.3180054696940787,0.3224389864759832,0.3264365691348896,0.3259082578697714,0.324738081143219,0.3236289299309178,0.3231080885544783,0.3214009403082782,0.3193812696224826,0.3180156079337691,0.3174024438312968,0.318719388364592,0.3189147729299704,0.3204074372273297,0.3217221212360705,0.3219437640014237,0.3226651735722284,0.3238411872410138,0.3265135699373695,0.3264426234188961,0.3280002524535327,0.3303530571297828,0.3350106981535779,0.3371638808139535,0.3407077298530426,0.3462990936555891,0.3511805026656512,0.3546511627906977,0.3589591957421644,0.3638594876514803,0.3645450836393308,0.3645457071408725,0.369841881989973,0.0,2.8639787776392613,56.00903770070023,177.55987728456114,266.8953890567444,fqhc5_80Compliance_baseline,40 -100000,95794,44716,423.2519782032278,6080,62.40474351211976,4778,49.39766582458192,1887,19.354030523832392,77.331780499572,79.67263585270877,63.32970022966426,65.06266225886543,77.09872356289186,79.44015253663511,63.24404134963558,64.97948314194774,0.2330569366801427,232.48331607365455,0.0856588800286815,83.17911691769098,162.53886,113.8500078319715,169675.4076455728,118848.78784889609,356.32459,230.5384059480048,371496.2314967535,240187.18912249708,362.44822,174.6781814616376,375529.6051944798,180074.75645671677,3412.26976,1545.813479335897,3530760.5591164376,1582354.3116853836,1110.29421,486.672127788385,1144911.9360293965,493911.6453311751,1842.74616,766.718728658432,1892446.4997807797,774225.8131543092,0.38093,100000,0,738813,7712.518529344218,0,0.0,0,0.0,30357,316.4081257698812,0,0.0,33081,342.4953546151116,1595701,0,57296,0,0,6412,0,0,71,0.7411737687120279,0,0.0,0,0.0,0,0.0,0.0608,0.1596093770509017,0.3103618421052631,0.01887,0.3224394057857701,0.6775605942142299,24.545122637145088,4.362924909306684,0.3359146086228547,0.225826705734617,0.2224780242779405,0.2157806613645877,11.194961835669304,5.811490010863627,20.056821180917066,12236.23138615841,54.288849562154645,12.92441751984373,18.35839592107437,11.84748753641098,11.158548584825558,0.5600669736291335,0.7636700648748842,0.6978193146417445,0.5691439322671684,0.1231813773035887,0.7294761532447225,0.9023746701846964,0.8568075117370892,0.7115384615384616,0.1915887850467289,0.4981423263789654,0.6885714285714286,0.640373197625106,0.523038605230386,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025120283616105,0.0048254328697133,0.0071032096360112,0.0094477630135316,0.0116145436053902,0.0140225460544404,0.0161293611467955,0.0181101719139205,0.0200159473329108,0.022091416287045,0.0241522122442284,0.026202846171222,0.0284104346395483,0.0302437215435011,0.032211121661231,0.0341569316654605,0.0362691080823563,0.0381998464953222,0.0403300391765647,0.0427113702623906,0.0572349816868928,0.0713747803531085,0.0854088050314465,0.0980655872061867,0.1101487756564251,0.12538436340966,0.138004493810412,0.1492583337763836,0.1601980599515521,0.170011034807855,0.1825980260254657,0.1941728672780757,0.2061004784688995,0.216483119894137,0.2266729759769343,0.2368613462134975,0.2458915801100041,0.2551396823968689,0.2632951581811997,0.2713348672687936,0.2789364161849711,0.2856408218601716,0.2913758428960132,0.2974216428639892,0.3024289531212047,0.3076752385413842,0.3125602594442984,0.3171490104624638,0.3216323460760413,0.3261777061481148,0.325615849798645,0.3248989246128881,0.323871076754108,0.3240234770289415,0.3231128219609708,0.3212243834398614,0.3192986905931961,0.3196252465483234,0.3209016533734981,0.3222291685272841,0.3221000487859796,0.3237999169287367,0.3247741122084471,0.3259904983865184,0.3274272196205282,0.3277565744758718,0.3291634535743866,0.3329872254735385,0.3355782384510155,0.3391771019677996,0.3425283156740957,0.3467961372245638,0.3461562876912334,0.3520134741999693,0.3526137006982449,0.3531157270029673,0.3533127889060092,0.3579671998380239,0.3628785773826062,0.3567759778743579,0.0,1.868806905000396,56.63984081081952,179.1771703878775,261.9979480031132,fqhc5_80Compliance_baseline,41 -100000,95690,44651,421.9145156233672,6081,62.31581147455324,4741,48.99153516563904,1833,18.76894137318424,77.34192318165195,79.71886699620933,63.32298576779221,65.07588609255356,77.11291629123976,79.49091991497386,63.23753258759545,64.99329616375789,0.2290068904121938,227.94708123547025,0.085453180196751,82.58992879567018,162.82574,114.11351382639614,170159.38969589298,119253.1161337612,353.80612,229.07231662652907,369205.2043055701,238853.79414623164,363.86635,176.18612057714483,377221.1411850768,181793.7006990513,3402.14851,1551.32861839261,3515120.838123106,1581456.5322937267,1126.25258,498.60099753862863,1162213.2824746578,506576.09022781206,1800.68426,759.7308563475311,1845416.0309332216,762224.2030969966,0.38129,100000,0,740117,7734.517713449682,0,0.0,0,0.0,30076,313.74229282056643,0,0.0,33296,344.88452293865606,1592713,0,57108,0,0,6463,0,0,76,0.7942313721391995,0,0.0,1,0.0104504127913052,0,0.0,0.06081,0.1594849065016129,0.3014306857424765,0.01833,0.3394280356305673,0.6605719643694328,24.798292683041364,4.271941293446068,0.3244041341489137,0.2351824509597131,0.2140898544610841,0.2263235604302889,11.05869966090238,5.8103996345026205,19.443282739219047,12372.930977221986,53.65363492524072,13.421331011632242,17.438469434091527,11.269594304225068,11.524240175291894,0.5625395486184349,0.8044843049327354,0.6937581274382315,0.5852216748768473,0.1015843429636533,0.7220046985121378,0.9221411192214112,0.8613861386138614,0.7081545064377682,0.131004366812227,0.5037528868360277,0.7357954545454546,0.6340388007054674,0.5485933503836317,0.0936018957345971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022680558508753,0.0047941942611568,0.0071111922659443,0.0094358786844617,0.0115220729561795,0.0137443749872737,0.015924800685113,0.0182778021708719,0.0204609595484477,0.0227614805713408,0.0249771862728009,0.0272637653775851,0.0292514348013905,0.0313224460357529,0.0334341484562899,0.0355617599917274,0.0376424280091153,0.0397226575879929,0.0418984827528831,0.0438379859743453,0.0589857418916801,0.0729924714406877,0.086595990343235,0.0989908343768744,0.1112025663754168,0.1266363992337894,0.1381686521840691,0.1497475446856558,0.1608175569499823,0.1716457163712871,0.1845530120871656,0.1972163552667208,0.2086023144166603,0.2195602447219516,0.2297150028070407,0.2410331416414586,0.2510522848817086,0.2596870426657661,0.2684304871684327,0.2759564719358534,0.2829782555865437,0.288847279110591,0.2951561149460672,0.3007975055465611,0.3060542340743621,0.3111908372477222,0.3163485144546319,0.3208793726768165,0.3251354785179039,0.3299429356440875,0.3282527179044485,0.3272802481902792,0.3269466822805705,0.3247999075385015,0.3242754160609926,0.323979396885078,0.322785510039653,0.3229888075622805,0.3224792428332251,0.322275303932404,0.3230841208945448,0.3237351778656126,0.3248696962719528,0.3262357414448669,0.3272984848848657,0.3288468534012368,0.3296893633937191,0.3334168964652795,0.3371763966041295,0.338760026870036,0.3429993214204931,0.3439961930946967,0.3450491307634165,0.3490059717287777,0.3474244120940649,0.351890756302521,0.3575402195158623,0.3539045336528859,0.3577856558494682,0.3566355140186916,0.0,2.152583436636502,55.93721281199208,176.87019225707206,257.9440605259087,fqhc5_80Compliance_baseline,42 -100000,95727,44715,422.5140242564793,6094,62.51109927188776,4797,49.411346850940696,1897,19.315344678095,77.32392886815877,79.68877845453615,63.31606620966248,65.06533269522816,77.08538092380091,79.45411700378956,63.22833930182855,64.98207793286392,0.2385479443578617,234.66145074658584,0.0877269078339324,83.25476236424834,162.22756,113.6979245176021,169468.9690473952,118773.0990395626,354.93998,229.0663827701108,370093.00406363927,238603.1234631852,364.75051,176.54026459206435,376501.4677154826,180880.09588474385,3392.98296,1537.6773346112752,3496658.6751909074,1558931.6867883345,1097.86583,483.3492254322829,1127874.8524449738,486004.6526219848,1849.91994,771.3088973420868,1886373.3533903705,768227.6424294639,0.38185,100000,0,737398,7703.134956699781,0,0.0,0,0.0,30221,314.9790550210494,0,0.0,33332,343.7588141276756,1596136,0,57333,0,0,6373,0,0,69,0.7207997743583314,0,0.0,1,0.010446373541425,0,0.0,0.06094,0.1595914626162105,0.3112897932392517,0.01897,0.3296789350039154,0.6703210649960846,24.67764320788605,4.367709839426964,0.3151969981238274,0.2505732749635189,0.2207629768605378,0.2134667500521159,11.37340406968002,5.926696773743096,20.21604260354406,12344.619221158677,54.380376026931366,14.417159688700243,16.927538663900794,11.928167246542984,11.10751042778735,0.5693141546800083,0.7828618968386023,0.6891534391534392,0.5939565627950897,0.1162109375,0.7371744277821626,0.9172259507829976,0.864406779661017,0.7132075471698113,0.1442786069651741,0.5090651558073654,0.7033112582781457,0.6355785837651122,0.5541561712846348,0.1093560145808019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688828790503,0.0046132476249378,0.0069316175127367,0.0093783657461033,0.0117996500793424,0.0140631364562118,0.0159553860897579,0.0182918737942368,0.0209285444079788,0.0228627009317088,0.0248008448076114,0.026848600587281,0.0290842920149276,0.0311479631250965,0.0331235166649468,0.0352262625844996,0.0373289693102841,0.0396271847884751,0.0416064390670008,0.0435720313818647,0.0583850153479922,0.0725039495297182,0.0860405612298399,0.0989589905362776,0.1110044920598097,0.1263724639827371,0.1388691417233439,0.1504775289871275,0.1617089452603471,0.1720001286463191,0.1850974735459702,0.1975993511759935,0.2089448394320875,0.2197585935450013,0.2289503783213091,0.2396190898017938,0.2493081592572754,0.2579610667266794,0.2670965398238125,0.2747440468683719,0.2822767505445108,0.2893707243932152,0.2963625804463513,0.301362960119019,0.3065766259049705,0.3101240051823061,0.3156351056629315,0.320842255531763,0.3249529739897516,0.3293664960926653,0.3284578953759799,0.3279858871523471,0.3265594129268981,0.3247904087572216,0.3243597184398113,0.3218498207775497,0.3201342069445763,0.3211286089238845,0.3209899738671494,0.3218936177803146,0.3228601369811744,0.323764175919706,0.3241715685248372,0.3245086420857277,0.3263740228502706,0.327348643006263,0.3265811965811966,0.329199406734198,0.3316959394988868,0.3326561504142766,0.3367244525547445,0.3384974533106961,0.3379874213836478,0.339193302891933,0.339615493891467,0.3428263731003949,0.3457317073170731,0.3435387673956262,0.3364485981308411,0.331052831622957,0.0,2.726470546387485,55.08071949007863,180.4126251714419,264.4181999924659,fqhc5_80Compliance_baseline,43 -100000,95782,44550,421.45705873754986,6097,62.32903885907582,4800,49.39341421143848,1891,19.26249190870936,77.4066300966336,79.7454398681741,63.35719594835807,65.08781601179692,77.16920145814727,79.51331992641697,63.26826806932968,65.00401801411044,0.2374286384863353,232.1199417571336,0.0889278790283896,83.79799768647445,163.8681,114.80905588986616,171084.44175314778,119864.95989837982,355.34064,229.78018035615403,370282.6418324946,239192.81321767555,362.66669,175.50108053654793,374436.98189638974,179955.43234678794,3417.12568,1558.7876668035233,3519758.921300453,1579584.3444525294,1147.42463,508.0406577357474,1180013.2175147731,512476.75736634526,1845.41448,774.5765161471003,1882754.5259025705,771694.556363649,0.38022,100000,0,744855,7776.56553423399,0,0.0,0,0.0,30218,314.73554530078724,0,0.0,33178,342.1415297237477,1591866,0,57080,0,0,6609,0,0,70,0.730826251278946,0,0.0,1,0.0104403750182706,0,0.0,0.06097,0.1603545315869759,0.310152534033131,0.01891,0.3188405797101449,0.6811594202898551,24.565946976226435,4.356009592219205,0.3220833333333333,0.2354166666666666,0.223125,0.219375,11.389449443895913,6.027013819261401,19.99851654699509,12250.783309129769,54.13412405054156,13.282728758430402,17.52703390235777,11.974368331503635,11.349993058249757,0.5629166666666666,0.7734513274336283,0.702457956015524,0.5686274509803921,0.1263057929724596,0.7327044025157232,0.9146666666666666,0.8858560794044665,0.6903914590747331,0.1784037558685446,0.5017006802721088,0.7033112582781457,0.6377952755905512,0.5253164556962026,0.1130952380952381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0043296627527326,0.0065860910686922,0.0088698779756764,0.0108928916508172,0.0131361886723284,0.015354499296507,0.0175572908691879,0.0198086593891818,0.022053706660117,0.0239615467393643,0.0263608845107998,0.028397586770404,0.0306876672843318,0.0325839337807052,0.0347569286687869,0.0367561863775552,0.0389260353496086,0.0409649569364071,0.0427902134305049,0.0578070871071413,0.0719641904682221,0.086099726417962,0.098395114927428,0.1105737316263632,0.125857277213598,0.1382311165758623,0.1503790577252283,0.1612245769041979,0.171440814140332,0.1843674005207997,0.1965548562901446,0.207967919668764,0.2182302643792384,0.228098120420516,0.2384256185544195,0.2474708605208856,0.2564560918299661,0.2647242290549046,0.2728979451662755,0.2801017752847973,0.2864957105121672,0.2925810687709252,0.2979974608953937,0.3031606053980517,0.3082545512812611,0.3132575378142843,0.3177792482121497,0.3227674292080105,0.3267103213371003,0.3257913673912164,0.3244351487464568,0.3241125657032538,0.3233606498142768,0.3217477803842385,0.3204000795265114,0.3197083517454706,0.318337912087912,0.3195699436102996,0.3201674263519146,0.3200171661006829,0.320984012742611,0.3208003334722801,0.3219482889057007,0.3226623951036412,0.3248970287283372,0.3246587755564365,0.3269560875128741,0.3308113385167881,0.3330969546546901,0.3350361663652803,0.3384388652034317,0.3436524778429659,0.3440577313387957,0.3428518621199519,0.3445867287543655,0.3465692986459759,0.3499801034619976,0.3616963064295486,0.3641221374045801,0.0,2.781221930498944,55.11563425266412,176.45545504887528,266.0572553011408,fqhc5_80Compliance_baseline,44 -100000,95682,44490,420.538868334692,6222,63.76329926213917,4874,50.29159089483915,1896,19.35578269684998,77.29491858535671,79.69966655566473,63.29396199958445,65.07497784149733,77.06088433894885,79.46930590528869,63.20554366838208,64.99139066480595,0.2340342464078588,230.36065037604203,0.0884183312023765,83.58717669138116,163.44702,114.45575338220443,170823.1642315169,119620.98762798063,357.16161,231.07801640983308,372636.6087665392,240863.03213753176,367.4658,177.7934664916332,380311.4169854309,182796.8850781194,3480.34434,1589.5102545289876,3591834.368010702,1615669.4827961212,1153.00415,510.53063166663287,1184746.2114086244,513278.72710293706,1861.04238,783.4882883706656,1901832.194143099,780876.8961837974,0.38018,100000,0,742941,7764.689283250768,0,0.0,0,0.0,30433,317.39512133943686,0,0.0,33609,347.6097907652432,1589179,0,57058,0,0,6335,0,0,72,0.7420413452896051,0,0.0,0,0.0,0,0.0,0.06222,0.1636593192698195,0.304725168756027,0.01896,0.3257274119448698,0.6742725880551301,24.70016153428032,4.23799976486842,0.3024210094378334,0.2517439474764054,0.2232252769798933,0.2226097661058678,10.999451999021858,5.694482303957782,20.11874344877881,12317.650285322714,55.39088843839828,14.809323439375405,16.66534629086543,12.031369969633555,11.88484873852391,0.5615510874025441,0.7872860635696821,0.6974219810040706,0.5661764705882353,0.1170506912442396,0.717357910906298,0.9168443496801706,0.8559556786703602,0.7008196721311475,0.1052631578947368,0.5047592385218365,0.7071240105540897,0.6460017969451932,0.5272511848341233,0.1201866977829638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0049316569758592,0.007261463464175,0.0095775507091657,0.0117165630057921,0.0140654143691457,0.0164394465080207,0.0186961718821834,0.0208702057352143,0.0234178122887172,0.0255526491255064,0.0273776992459575,0.0296260470476856,0.0318049243009821,0.0335174193548387,0.0353172346036506,0.0372132064913262,0.0391835209103368,0.0412895574558392,0.0434456304202801,0.0580173404366447,0.0715631871008271,0.0847247730492732,0.0978502204497385,0.1097980458775613,0.125308191274351,0.1377436202284404,0.1495852544376178,0.1609442289402537,0.1717658421419756,0.184518742794341,0.1964830646033979,0.2080968226006394,0.2193338216163625,0.2286591066577207,0.2397727524419145,0.248574521027907,0.2576194120560032,0.2658338538413491,0.2735340656316646,0.2807708342984203,0.2869786118167663,0.2936600037893141,0.3002231339523501,0.3047600525113045,0.3101456430510985,0.3162517384386002,0.3203238371648972,0.3240882147386949,0.3285024791644688,0.3275073329565943,0.326676196497787,0.3256495106667605,0.3245745818045243,0.323072809115624,0.3212682164365508,0.3185155816350805,0.3188646374334363,0.3197032377175288,0.3210421845102913,0.3223357883661506,0.3229061353949846,0.3228068701969512,0.3236164015236388,0.3234121711400478,0.3254547834053134,0.3272290259814581,0.3305033927726053,0.3338253382533825,0.3381815291686536,0.3408592321755027,0.3450015935408477,0.3487028079653244,0.3510905083972946,0.3571764263558605,0.3582569353494463,0.3602371181030552,0.3603238866396761,0.3649714441120478,0.3624765478424015,0.0,2.5752548929883328,56.7822606369832,182.96164551128135,268.4045781975585,fqhc5_80Compliance_baseline,45 -100000,95729,44279,419.5175965485903,6219,63.80511652686229,4861,50.27734542301706,1936,19.93126429817506,77.3593554540744,79.73059397281665,63.33143217950936,65.08388343265766,77.12207953068132,79.49165937464018,63.24371924807785,64.99750289868737,0.237275923393085,238.93459817647056,0.0877129314315112,86.380533970285,162.38024,113.72193973411012,169624.2309018166,118795.07482960436,352.83797,227.77253119263443,368040.5519748456,237404.48232482924,359.68703,173.4011117542477,372379.4983756229,178634.12328541835,3481.06247,1584.391258356805,3601072.527656196,1620484.293098577,1131.79269,502.0397292640944,1167308.8092427582,509713.5567490967,1888.33832,789.2826789025873,1944123.933186391,800814.3841576226,0.37925,100000,0,738092,7710.192313718936,0,0.0,0,0.0,30092,313.7920588327466,0,0.0,32985,341.22366263096865,1600186,0,57371,0,0,6628,0,0,65,0.6790000940153976,0,0.0,1,0.0104461552925445,0,0.0,0.06219,0.1639815425181278,0.3113040681781637,0.01936,0.3392199017199017,0.6607800982800983,24.72820732077501,4.352528904099464,0.3137214564904341,0.2411026537749434,0.2275252005760131,0.2176506891586093,11.279232244656397,5.899026721962355,20.56475992565085,12339.960733790522,55.14659865422952,13.943766309246516,17.21462289462168,12.295854466725975,11.692354983635358,0.5679901254885826,0.7781569965870307,0.699672131147541,0.5831826401446655,0.1294896030245746,0.7333333333333333,0.92018779342723,0.8617886178861789,0.7392996108949417,0.1569506726457399,0.50920245398773,0.6970509383378016,0.6479238754325259,0.535924617196702,0.1221556886227544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497954057448,0.0046630916297505,0.0068799659045937,0.0091101135463427,0.0110938246748624,0.0135400653588117,0.0155665426372394,0.0176898107506686,0.0198626075933839,0.0221337237277203,0.0240783469209865,0.0262225372076541,0.0282007490020165,0.0302599449819182,0.0322470797044619,0.0345059284451657,0.0361942230044518,0.0381172663437503,0.0402415951098821,0.0420911193050434,0.0577111830427064,0.0715534112672813,0.0850168879937902,0.0982313726314904,0.1105838684845992,0.126959612414581,0.1397828924330691,0.1515480601337251,0.1626164828588527,0.1730694939262566,0.1858776117151385,0.1981163734776725,0.2105618173114583,0.2207618818328062,0.2300524298365422,0.240703980127089,0.2500921386211595,0.2589180250413418,0.2666923879987291,0.2746611984924335,0.2813573833462531,0.2877002221442769,0.2938012718976808,0.2989731437598736,0.3048889967244935,0.3096987825744426,0.3154478255975385,0.3206415372493201,0.324772612593963,0.3285797132011809,0.3279523643108685,0.3269611346270134,0.3256725433729016,0.3245414495090558,0.324172975215182,0.322005953743989,0.3215124804869203,0.3221284391664213,0.3219189750928481,0.3232885977715282,0.3234083168020361,0.3249407582938388,0.3258028653535544,0.3280177634234961,0.3291108756381851,0.3296628744389938,0.3310035944542706,0.3342798548666982,0.3387051372273047,0.341975700786151,0.3441508056050025,0.3445378151260504,0.3479419039766601,0.350079805426769,0.3526714700102928,0.3541936242794965,0.3567846831788482,0.3572997803075694,0.3616386326641345,0.3591097698981516,0.0,1.7924924772394624,56.38427361919077,187.01962701177607,264.7143090916824,fqhc5_80Compliance_baseline,46 -100000,95884,44704,422.4479579491886,6064,62.04371949438905,4829,49.737182428768094,1940,19.773893454590965,77.4394230829848,79.71877225650917,63.39129033748679,65.07675511543825,77.19372005915781,79.4786922959738,63.29921716506343,64.99047026480416,0.2457030238269908,240.0799605353683,0.0920731724233547,86.28485063408675,163.0816,114.23625977425456,170081.72374953068,119139.67561079588,354.76536,229.43874524275083,369341.506403571,238637.8998848117,364.67641,175.97947856724224,377082.7771056693,180978.09403730012,3491.45212,1598.2091877454966,3596575.382754161,1622338.0339986717,1164.28133,518.0153466302307,1195673.1362896832,521749.6866274551,1906.86474,807.094761505795,1945360.3103750364,803136.3431846146,0.38176,100000,0,741280,7730.987443160486,0,0.0,0,0.0,30192,314.18171957782323,0,0.0,33453,345.61553543865506,1597763,0,57374,0,0,6480,0,0,68,0.709190271578157,0,0.0,0,0.0,0,0.0,0.06064,0.1588432523051131,0.3199208443271767,0.0194,0.3475031605562579,0.6524968394437421,24.02852912070169,4.373714264906124,0.3172499482294471,0.2333816525160488,0.2193000621246635,0.2300683371298405,10.920309040688773,5.540271328843814,20.81899132631627,12320.59337778343,55.13288680493855,13.577022263618158,17.484780688066362,11.814692017164996,12.25639183608904,0.5622282045972251,0.782608695652174,0.7160574412532638,0.5788479697828139,0.1107110711071107,0.7215384615384616,0.8947368421052632,0.864321608040201,0.7346938775510204,0.1673640167364016,0.5035420799093228,0.7165021156558533,0.6640211640211641,0.5319410319410319,0.0951834862385321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023891476007288,0.0047225262475171,0.0069690299150934,0.0092700707693244,0.0112819783101426,0.0133188172808856,0.015492742551566,0.0175438596491228,0.019707000122594,0.0218703328627836,0.0238429459921923,0.0260206646761268,0.0282079475506869,0.0302852495805153,0.0323106107468349,0.0344681598050452,0.0367381565742781,0.0388150327948688,0.0408430232558139,0.0428522383246116,0.0580006254560617,0.0719958202716823,0.0854408176515556,0.097969212676145,0.1103226825288203,0.1256969082615306,0.1368128899670547,0.1490483224757431,0.1601612060601537,0.1721893997773782,0.1848363652001892,0.1966437223777055,0.2086171495616465,0.2187619515926351,0.2283113056099223,0.2387250290520723,0.2484841729826125,0.257883325656897,0.2669703252999762,0.2752241126966703,0.2826943292478658,0.2895963004916329,0.2959031701378218,0.3020722349251194,0.3065802410691526,0.3113100662545257,0.3164253020184587,0.3207918779145859,0.3247304041997466,0.3289345449756354,0.3280529295482968,0.3267032967032967,0.3249518345075869,0.323501386001386,0.3230919939442515,0.321537849580809,0.31922231186623,0.3191614901742252,0.3201746903681463,0.3206854781245546,0.3226180458158018,0.3237505179455812,0.3250250920040147,0.3264229090585196,0.327419239138232,0.3293344758640388,0.3290902919212491,0.3338426517820949,0.3369259117616382,0.3407964114267726,0.3440986494421609,0.3446363492315005,0.3463610171614681,0.3464052287581699,0.3494953306291859,0.3557222817672978,0.3615110698250503,0.3669404517453798,0.3710394663702057,0.3683213338385752,0.0,2.276600053132279,57.00592520452874,189.5951814592277,255.79532449682944,fqhc5_80Compliance_baseline,47 -100000,95726,44845,425.0464868478783,6116,62.69978898105008,4838,49.85061529782922,1881,19.22152811148486,77.34647984393533,79.69907701466516,63.33814763576003,65.07540042132968,77.11286207157774,79.46863906633732,63.25131579173795,64.99221658671668,0.23361777235759,230.4379483278467,0.086831844022079,83.18383461299561,163.34824,114.46631043869849,170641.45582182478,119577.03282148892,358.11868,231.51811283707647,373374.5168501765,241122.40494363187,369.12111,178.36764857775432,381080.5632743456,182777.52321299625,3459.99862,1574.079765920718,3570707.602950087,1600665.671279076,1160.22819,509.2218005030515,1194637.8517853038,514614.62032050994,1848.23678,775.1666245423204,1891587.280362702,778352.0467908235,0.38176,100000,0,742492,7756.429810082946,0,0.0,0,0.0,30513,318.01182541838165,0,0.0,33727,347.77385454317533,1590332,0,57120,0,0,6521,0,0,65,0.6790213735035414,0,0.0,1,0.0104464826692852,0,0.0,0.06116,0.1602053646269907,0.3075539568345323,0.01881,0.3349491790461298,0.6650508209538702,24.494708087994063,4.388670236760113,0.3292682926829268,0.2284001653575857,0.2234394377842083,0.218892104175279,11.23258702333812,5.771426140852695,20.088404354782057,12329.543883133369,54.94149599143617,13.245507864450316,18.09486463238667,12.032551847739136,11.568571646860036,0.5640760644894585,0.7891402714932126,0.6942875078468299,0.57631822386679,0.1208687440982058,0.7178487918939984,0.9193154034229828,0.8425,0.7142857142857143,0.1441048034934497,0.5085794655414908,0.7126436781609196,0.644593461860855,0.5358851674641149,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0047542296424697,0.0067078677910717,0.0088072164320107,0.0109931458091809,0.0130314383450073,0.0153007135575942,0.017432306922912,0.0196154593124878,0.021807459584532,0.0240982379893192,0.0262968817358815,0.0283346698743651,0.0305692597666107,0.03275762453056,0.0348420171367737,0.0369104933478283,0.038740467915132,0.0407904448071185,0.0425902008165986,0.0563786137125317,0.0702824906063238,0.0848659707286366,0.0977117859846891,0.110063788286151,0.1259647713095515,0.1383959352094449,0.1503783404105871,0.1620424241777246,0.1730379706137671,0.1850065666243245,0.1975020275750202,0.2088635795559516,0.2191676045411335,0.2285211848106831,0.2387540954573629,0.2483692925238334,0.2576302827196869,0.266118327755403,0.2745670698185816,0.2817101808044235,0.2889367026439187,0.2954975854559227,0.3013583666031244,0.3068942477069792,0.3125723575633667,0.317065845784218,0.322014692588773,0.326331894148612,0.3295606122637647,0.3280243619802194,0.3261243650280145,0.3253539978865797,0.3248521822098217,0.3247513861430292,0.3229088457472074,0.3213054070300882,0.3215585949030798,0.3220625672743426,0.3221518422696048,0.3229864829445463,0.3242821596429558,0.3251048657718121,0.3260538798890182,0.3269272399278412,0.3285460158007638,0.3294635708566854,0.3324940198917285,0.3357579590976175,0.3379075116998493,0.339973560650955,0.3438264383707327,0.3476871004136893,0.3516030534351145,0.355929003021148,0.3558494162497022,0.3533292420988033,0.3489179256839526,0.3478260869565217,0.3457321848081441,0.0,2.6287782244236704,55.8663329191401,185.3339741266168,262.4658502090942,fqhc5_80Compliance_baseline,48 -100000,95740,44645,422.1746396490496,6217,63.66200125339461,4925,50.85648631710884,1900,19.43806141633591,77.41222784566315,79.76599905118059,63.350809200748486,65.0888325486063,77.16906005176284,79.52666042033532,63.25950988949982,65.00180127501058,0.2431677939003123,239.33863084526763,0.0912993112486688,87.03127359572704,161.56272,113.26545161181666,168751.30561938585,118305.05816830065,356.62104,230.7100947165257,371904.07353248383,240392.83160328696,371.74233,179.80674606409562,384610.31961562566,185008.46727325107,3468.03706,1587.095056412962,3581304.355546271,1616836.925860073,1156.39454,515.7771464852724,1191425.193231669,522303.2029300943,1856.05992,782.9997954732208,1899623.647378316,783862.0487314077,0.38181,100000,0,734376,7670.513891790266,0,0.0,0,0.0,30403,316.95216210570294,0,0.0,34115,352.66346354710674,1598515,0,57249,0,0,6559,0,0,59,0.6162523501148945,0,0.0,2,0.0208899101733862,0,0.0,0.06217,0.1628296796836122,0.3056136400193019,0.019,0.328177641653905,0.6718223583460949,24.285064811557472,4.311245785542205,0.3177664974619289,0.2536040609137056,0.2127918781725888,0.2158375634517766,11.514220624018147,6.066951973148793,20.04429570273725,12348.922320729229,55.763325855832015,15.003971957557912,17.53179620457381,11.601443231653365,11.626114462046932,0.577258883248731,0.8038430744595677,0.6875399361022364,0.6106870229007634,0.1157102539981185,0.7507396449704142,0.916155419222904,0.8592233009708737,0.7291666666666666,0.1800947867298578,0.5116148894486426,0.7315789473684211,0.6261925411968777,0.5754950495049505,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508811018837,0.0048446764303451,0.0073651746946394,0.0095255504102689,0.0118545328846368,0.0141192039497124,0.0164808284240781,0.0185402487678948,0.0205925335459014,0.0225588536335721,0.0247294416659834,0.0269257616818592,0.0289703100583929,0.0310903773274015,0.0334630028995078,0.0354861383887039,0.0373810485332339,0.0394260398618013,0.0412958496215586,0.0432210010938069,0.0579521015597268,0.0717402450636726,0.0849200104904274,0.0974267800033664,0.109394620490255,0.1252950078845156,0.1380020378704254,0.1500521753945098,0.161392709435414,0.1723908470355901,0.1851891786981227,0.1976195117724782,0.2089131334247947,0.2196657759866836,0.2291478437162564,0.2393663049990015,0.2491755262657768,0.2582436771249929,0.2674973308193816,0.2751665539107202,0.2828929841427959,0.28893831206836,0.2956571144490607,0.301223150000599,0.3054459352801894,0.3103044784943587,0.3139010089139485,0.3192527020333515,0.3234291029350971,0.328259439547428,0.3271700189193178,0.3257790756659675,0.3263112096672327,0.3254387606720705,0.3253763091422071,0.3230186151996225,0.3224364523490989,0.3227027291561312,0.3230139591753557,0.3238717002554641,0.3240280646902276,0.3244760185257869,0.3253253253253253,0.3270803698435277,0.3278861107788013,0.3291848164281269,0.3297064490536099,0.3337809562474626,0.3374956400418556,0.339995278936187,0.3437062463303373,0.3464321554956953,0.3488139200100144,0.3522924692197295,0.3496191714657254,0.3537359022556391,0.3535094339622641,0.3589435774309724,0.3612394672465344,0.3672616786935055,0.0,2.269507843835754,59.22504439316848,177.04699668812935,272.6290422628284,fqhc5_80Compliance_baseline,49 -100000,95732,44718,422.3352692934442,5978,61.13943091129403,4658,48.08214599089124,1859,19.03229849997911,77.32373385663094,79.69304699793794,63.321321634088775,65.07485889557375,77.08375561487692,79.45643363847712,63.23073550703333,64.98875899842663,0.2399782417540166,236.61335946081863,0.0905861270554453,86.09989714712185,163.27806,114.36119896251942,170555.84339614757,119458.269791412,352.45918,228.7786488725026,367614.2042368278,238421.2407218251,361.75195,175.3359966274394,374755.0557807212,180736.1586674241,3346.46394,1543.4598469612577,3453211.5071240547,1570023.1620300042,1115.10617,501.1260368177118,1146483.7358459032,505223.7451173936,1822.5749,776.9133089546233,1866051.5814983496,777324.8320641796,0.38068,100000,0,742173,7752.538336188526,0,0.0,0,0.0,30025,313.0405715957047,0,0.0,33034,341.9964066351899,1592396,0,57169,0,0,6638,0,0,68,0.6998704717335896,0,0.0,0,0.0,0,0.0,0.05978,0.1570347798676053,0.3109735697557712,0.01859,0.3291964996022275,0.6708035003977725,24.48162636969093,4.398426777838932,0.3278231000429369,0.2219836839845427,0.2282095319879776,0.2219836839845427,11.06975160420042,5.7518093484216655,19.925961650857367,12345.634572612593,53.009482359862176,12.467924076348542,17.201347054870592,11.96234575003131,11.37786547861174,0.5538857878917991,0.7659574468085106,0.6817288801571709,0.587958607714017,0.1179883945841392,0.7073552425665102,0.8961038961038961,0.8673469387755102,0.7175572519083969,0.1297071129707113,0.4958579881656805,0.6887519260400616,0.6176211453744493,0.5455680399500624,0.1144654088050314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021783181357649,0.0045027229304207,0.0069935038570848,0.0092880515415726,0.0118122252970861,0.0140981368863897,0.0162260841186309,0.0184857986171397,0.0205740697186915,0.0229812074350965,0.0250233311796859,0.0272779557965656,0.0292483693751157,0.0314103753168861,0.0335370259501641,0.0356153337192953,0.0378149954945157,0.0398422909317285,0.0418100714337703,0.0439104701567189,0.0591926659148811,0.0728378392522581,0.0858030066195986,0.098554657914668,0.1108662181258304,0.1260944042634183,0.1386663837462203,0.1504974727321096,0.1612765412056222,0.1718961116949407,0.1850045225481328,0.1969687134882513,0.2081013484123532,0.2191241594226669,0.2281253781919399,0.2387091058099098,0.248717491189722,0.2573544283884307,0.2652392347210724,0.273020668818238,0.2801548774849746,0.2866393164790724,0.2932439304170953,0.299466778503385,0.3054620981161409,0.3104770122026377,0.3156115396173495,0.3197478188881105,0.3243222217900346,0.3282248270764032,0.3282413955681282,0.326900294790203,0.3257515934344859,0.3250676741795862,0.3245636225651404,0.3230710290399203,0.3210122578094108,0.3212686750742083,0.322352379490852,0.3236374006345132,0.3242878813416484,0.32557082138974,0.3264710820112482,0.3281057466114036,0.3288661781720015,0.3307629976213503,0.3328087444202816,0.3364222911000063,0.3398051397910195,0.3439625510122429,0.3476623495912556,0.3508611901057037,0.3511571719226856,0.3549480169426261,0.3556584167768751,0.3567069522555941,0.3557457212713936,0.3572878603329273,0.3600766703176342,0.3563748079877112,0.0,2.196869839862061,55.87555455845081,175.60632597840194,250.5775280971976,fqhc5_80Compliance_baseline,50 -100000,95772,44571,421.4801820991521,6104,62.55481769201854,4784,49.28371549095769,1915,19.535981288894455,77.38153749659537,79.72251576189161,63.350937847410606,65.08252122754283,77.14070215819748,79.48598146821432,63.26092116404803,64.99699167859498,0.2408353383978863,236.53429367729476,0.0900166833625775,85.52954894784648,162.90274,114.1323175255944,170094.3281961325,119170.86155201352,354.89453,229.67805493116367,369894.4472288352,239150.2567633793,364.79491,176.35614634525052,376861.8489746481,180957.52434717384,3439.37981,1578.5996205960978,3545389.633713403,1602471.4826358529,1159.18765,513.9857838818616,1189228.0102744016,515549.3798709184,1888.8981,795.5999929716,1928761.8301800108,794286.921812169,0.37994,100000,0,740467,7731.560372551476,0,0.0,0,0.0,30273,315.3740132815436,0,0.0,33437,345.0382157624357,1595295,0,57261,0,0,6362,0,0,60,0.6264879087833605,0,0.0,2,0.0208829302927786,0,0.0,0.06104,0.1606569458335526,0.3137287024901704,0.01915,0.3328627450980392,0.6671372549019607,24.2520880261801,4.436271512696108,0.31438127090301,0.2385033444816053,0.2153010033444816,0.231814381270903,11.27650283154533,5.677894913999593,20.340655182777624,12258.95742360318,54.24193388727518,13.589097466936169,16.982158743895045,11.499337025324982,12.171340651118992,0.5604096989966555,0.8019281332164768,0.694813829787234,0.5737864077669903,0.1172227231740306,0.7241899020346647,0.9204819277108434,0.8602409638554217,0.7023809523809523,0.1836734693877551,0.4975412207115997,0.7341597796143251,0.6317722681359045,0.532133676092545,0.0983796296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509307460147,0.0048350801792121,0.0071222758816606,0.0093436113057696,0.0114687760538463,0.0135081486608915,0.0156971469925693,0.0176978505378758,0.019947474375875,0.0221931179847134,0.0246041912179125,0.026790938298724,0.0288302367904255,0.0307448363913428,0.032944816915936,0.035078112084642,0.037129020240904,0.0392868249196641,0.0409814778263715,0.0430206044957156,0.0576357147329534,0.0717483161109484,0.0848045793843831,0.0979287733420203,0.1101017977954349,0.1251624903562634,0.1376353886262956,0.1487608577777305,0.1595197438633938,0.170070214932733,0.1828193121265945,0.195009572017262,0.2062410329985652,0.2170591770941478,0.2270962348619009,0.2369021257750221,0.2457063835482,0.2549833046645755,0.2635853229739692,0.2714684610455003,0.2787865470022205,0.2854837955385119,0.2922266919072409,0.2981312889314806,0.304248576320167,0.3100110823790173,0.3142832148168514,0.3201515690961802,0.3244306418219462,0.3283103939250119,0.3275927022227006,0.3266097430186033,0.325341259667263,0.3243133853714947,0.3233799048751486,0.3212339252908757,0.3194429075043078,0.3207766481672478,0.3216917709131138,0.3217437722419929,0.323124929930117,0.3237503697131026,0.3247318123836808,0.3252365295578071,0.3259293055422149,0.32640245967847,0.3277294191272686,0.3305873140172278,0.3331352881557334,0.3345337976887763,0.3384049414115723,0.3420340601623428,0.3424458614811541,0.3433849912207039,0.3431751721535704,0.3481920569057498,0.3502290076335878,0.348757324712063,0.3465264323277055,0.352512466436517,0.0,2.565935804751694,57.80023860086733,172.37656483736677,262.39730193262017,fqhc5_80Compliance_baseline,51 -100000,95866,44278,419.4917906244132,6000,61.4607890180043,4756,49.13107879748816,1919,19.673293972837087,77.37299817448195,79.67495608738042,63.35320242165369,65.05712501563222,77.13824755321995,79.43985245354868,63.266773136767725,64.97266001626699,0.2347506212619947,235.10363383174135,0.0864292848859662,84.46499936523821,164.32614,115.06716581327372,171412.32553772975,120029.1717744286,356.13897,229.92715720958975,370988.6925500177,239343.8981608875,358.69125,172.7623420212673,371482.3399328229,178072.19890355656,3407.76048,1543.9570100959056,3521851.3237226964,1578580.5010378766,1114.84716,485.57251101642026,1148898.2538126134,492574.0943986649,1876.80202,777.5632458998864,1925977.0095758664,785394.4079553238,0.37919,100000,0,746937,7791.469342624079,0,0.0,0,0.0,30360,316.16005674587444,0,0.0,32818,339.5990236371602,1589363,0,57092,0,0,6560,0,0,65,0.6780297498591784,0,0.0,0,0.0,0,0.0,0.06,0.1582320208866267,0.3198333333333333,0.01919,0.3459468017732742,0.6540531982267258,24.307042570889017,4.393467999278925,0.3202270815811606,0.2365433137089991,0.2218250630782169,0.2214045416316232,11.13732773887756,5.713793235141483,20.2619579394186,12228.09243038204,53.897639920788926,13.375162690527407,17.36002197942549,11.73089346607144,11.431561784764598,0.5586627417998318,0.7733333333333333,0.6874589625738674,0.5857819905213271,0.1158594491927825,0.7240547063555913,0.9031413612565444,0.8423645320197044,0.7182539682539683,0.1576354679802955,0.5001423284941645,0.7065948855989233,0.631154879140555,0.5442092154420921,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078185132671,0.0043580933848196,0.0066644350445817,0.0087829742298397,0.0108269117377955,0.0131921824104234,0.0152884938795062,0.0173386808723428,0.0192808754559666,0.0216096752409601,0.0236258388402233,0.0257420460258343,0.0279636195467858,0.0299736495388669,0.0319990103398864,0.0340066505566226,0.0359518710491738,0.0379992124515554,0.0399800618912126,0.0416172461868198,0.0558793781216437,0.0693110690811816,0.0830627082067506,0.0960221783509052,0.1083577311119068,0.1238868877222263,0.1360842658528314,0.1478784141531199,0.1594193617248372,0.1695151352799357,0.1817849186961247,0.1945351174906504,0.2062908940721257,0.2168683919922152,0.2268951022788543,0.2372207392310844,0.2470628925905678,0.2562022525005907,0.2648940514542402,0.2723297080709788,0.2790824054482176,0.286008350779523,0.2931207914699234,0.2998407013929645,0.3051314416098259,0.310425081272781,0.3155885923089437,0.3203937829106357,0.3253132118451025,0.3286532421947164,0.3280595688529226,0.3271163110805231,0.3262184376365764,0.3248792619798143,0.3234870209952303,0.3216073478760046,0.3203520770010131,0.3205224982769372,0.3212694402239787,0.3218513955107944,0.3221573252461717,0.322199616805262,0.3230424681332021,0.3231026785714285,0.3234454809237188,0.32441576016239,0.3236628155755242,0.3252689863461901,0.3299034240561896,0.3339798907449924,0.3362139172925527,0.3388915356518977,0.3404268714978278,0.3406769324592163,0.3427791376388627,0.3444144249970633,0.3450800915331807,0.3461224489795918,0.3474646716541978,0.337151584574265,0.0,1.825394384987173,54.94492422540697,179.23593547763693,264.09358464045914,fqhc5_80Compliance_baseline,52 -100000,95798,44492,421.41798367398064,6141,63.02845570888745,4836,49.96972796926867,1930,19.791644919518152,77.39816222968327,79.72839103400811,63.35848721039546,65.0798899052791,77.16239143116941,79.49212295129365,63.27193225652913,64.99511490996228,0.2357707985138546,236.2680827144601,0.086554953866333,84.77499531682042,162.11008,113.57190804200113,169220.50564729952,118553.32394996028,356.47886,230.50151170134097,371593.30048644025,240091.2835663728,360.36405,174.00550950209237,372735.2554333076,178987.7918543691,3460.51604,1554.9385148145109,3582183.041399612,1593157.2931440438,1166.30114,505.7560057390461,1204613.9898536503,515207.0310761221,1887.0008,780.898500368032,1938745.6940645943,790346.1322735961,0.38042,100000,0,736864,7691.841165786342,0,0.0,0,0.0,30312,315.8834213657905,0,0.0,33081,341.9486836885948,1598890,0,57381,0,0,6340,0,0,60,0.6158792459132758,0,0.0,0,0.0,0,0.0,0.06141,0.1614268440145102,0.3142810617163328,0.0193,0.3352448853068815,0.6647551146931184,24.49834394240368,4.33832826785066,0.3234077750206782,0.2353184449958643,0.2177419354838709,0.2235318444995864,11.128253096182554,5.80669268874537,20.47585464023944,12275.744274816476,54.676329712632494,13.619497150822442,17.718283929217012,11.664633390124845,11.673915242468198,0.5564516129032258,0.773286467486819,0.6975703324808185,0.5593542260208927,0.1211840888066605,0.7290524667188724,0.9184652278177458,0.8393285371702638,0.691358024691358,0.15,0.4945209328463051,0.6893203883495146,0.6460331299040977,0.519753086419753,0.1146424517593643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267545725223,0.0042362574995946,0.0065434403278821,0.0087029815582094,0.0111015096833223,0.0131597695768111,0.0155296275538798,0.0174162347467657,0.0197999570898762,0.0219971352568037,0.0242703029433761,0.0261669967470831,0.0283846833699874,0.0305475504322766,0.0325577079703496,0.0345461493178555,0.0366619425450257,0.0385101926546525,0.04036205301936,0.0422146553788801,0.0569478934079005,0.0713852460730794,0.0856187361093638,0.098712626766854,0.1111544461778471,0.1262182102615056,0.1378681344320363,0.1498175163064874,0.1602558626286788,0.1701867615841499,0.1827726567884217,0.1954363577376446,0.2077978511911875,0.2184223173715484,0.2282866687178585,0.2386441577980839,0.2482635598416857,0.257679679769722,0.2659619114594558,0.2737547234627276,0.2812153163152053,0.2887717411632691,0.2950734310836558,0.3007416104568272,0.3055235274841309,0.3095437421515278,0.3144971745761864,0.32002948877647,0.3239943551832623,0.327590982838902,0.3263591566362387,0.3242232094961693,0.3237253990392065,0.3231004707309325,0.3224777921134196,0.3205453489438449,0.3184570389692514,0.3196545338337239,0.3201639064367423,0.3201241261235554,0.3212442017058207,0.3219826478784166,0.3234524482404907,0.3243182983656997,0.3258628524958741,0.3272098945070935,0.3284181926244587,0.3300318690245579,0.334517218566106,0.3359842519685039,0.3365240665971056,0.3410946636464205,0.3439541975231813,0.3423921271763815,0.3457148203592814,0.3470525441821848,0.3532262950621024,0.3514871382636656,0.3477665113729789,0.3442125237191651,0.0,1.98803528653954,56.294327360646136,178.3293552483594,269.70544606848995,fqhc5_80Compliance_baseline,53 -100000,95884,44609,420.97743106253387,6205,63.493387843644406,4861,50.18564098285428,1927,19.773893454590965,77.3584022892406,79.64199187886668,63.35300198276878,65.04219405862621,77.11815330275499,79.40135170866812,63.265118238904,64.95638885298786,0.2402489864856107,240.6401701985601,0.0878837438647863,85.80520563835137,164.33186,115.07450536241846,171386.11238579953,120014.29369072888,357.51297,230.7904627749564,372363.5747361395,240201.266921443,362.84022,175.1848683759461,375236.2959409286,180159.81780381512,3480.24925,1575.3266366692508,3596595.187935422,1609900.2092833533,1144.24829,500.9478596445338,1179693.3064953485,508796.4025498304,1891.23248,786.8290358882423,1942679.3834216343,795381.3506937028,0.38147,100000,0,746963,7790.27783571816,0,0.0,0,0.0,30421,316.7473196779442,0,0.0,33290,343.9677109841058,1587499,0,57023,0,0,6400,0,0,68,0.709190271578157,0,0.0,0,0.0,0,0.0,0.06205,0.1626602354051432,0.3105560032232071,0.01927,0.3269172013443324,0.6730827986556676,24.642192054139684,4.362953291128282,0.3198930261263115,0.234931084139066,0.2240279777823493,0.2211479119522732,11.154166594249372,5.728841810820358,20.473465891311715,12305.304564642043,55.29242714085616,13.63560098571554,17.701402988162354,12.247822994270356,11.707600172707917,0.5657272166220942,0.7924693520140105,0.704823151125402,0.5775941230486685,0.1116279069767441,0.7393658159319412,0.903755868544601,0.8411910669975186,0.7962264150943397,0.1055276381909547,0.5028026905829597,0.7262569832402235,0.6571180555555556,0.5072815533980582,0.1130136986301369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881673399548,0.0043975641142556,0.0067551804931484,0.0091279229152494,0.0112522870502134,0.0134338839190303,0.0158523167203227,0.0182977204344943,0.0207161308107776,0.0226643085699097,0.0245580271684052,0.0266144493084959,0.0285212497175605,0.0307883800353865,0.0328943300562666,0.0350321101864662,0.0371573394020895,0.0392803100968016,0.0414568037136655,0.0433525109499682,0.0573787581835619,0.0711897697354674,0.0849390524860721,0.0973486638315745,0.1095229568459747,0.125521554046203,0.1380264078163745,0.1497352359483656,0.1607962429288077,0.1714616473009475,0.1847664577815104,0.1964716444386756,0.2081426319508615,0.2195548559184922,0.2286776105289777,0.238659628387725,0.2479983049713406,0.2567368551224832,0.2652012657797135,0.2729251139669668,0.279851911841268,0.2872748538011695,0.2944276038459716,0.3001822410857732,0.3054178212046084,0.3103452527743526,0.3153241158200581,0.3201706897649831,0.3241311313778654,0.3279041789505691,0.3280249194298736,0.3271276595744681,0.3261028996953627,0.3252159569388375,0.3238774204110792,0.3216510664416142,0.3205299063937807,0.3216917812726196,0.3222305901684239,0.3221453720086501,0.3232414181204276,0.3241343812483915,0.3245790821681992,0.3247901510912143,0.3252727666851321,0.3245474671181143,0.3257787141962303,0.3286862597337352,0.3334501980857554,0.3356748819303885,0.3388848329987224,0.3431206275174899,0.3456183456183456,0.3485687903970452,0.3515907791960373,0.357280385078219,0.362194932379916,0.3588438835741909,0.3612334801762114,0.3705118411000764,0.0,1.998804888632611,57.08733438794779,188.9140188076448,260.0034955679213,fqhc5_80Compliance_baseline,54 -100000,95728,44565,422.3320240681932,6093,62.41642988467324,4814,49.65109476851078,1869,19.053986294501087,77.38965647392791,79.7554663627836,63.34469261111818,65.09347845070423,77.16375282143044,79.53334360912692,63.26179791560951,65.0148149032358,0.2259036524974789,222.1227536566772,0.0828946955086777,78.66354746842319,163.43778,114.41514049617604,170731.42654186863,119521.08107990978,355.16379,229.5600717186099,370357.0324252048,239148.0671471356,363.13808,176.0619384862868,375672.9274611399,181007.80079072271,3405.85884,1545.5400131246945,3514452.793331105,1571114.556999723,1129.4044,500.8913988117606,1163019.0644325588,506481.8957933105,1830.99532,758.9111228869646,1870203.32609059,757433.9296319127,0.38039,100000,0,742899,7760.519388266756,0,0.0,0,0.0,30302,315.8741434063179,0,0.0,33339,344.5909242854755,1593631,0,57149,0,0,6414,0,0,50,0.5118669563763998,0,0.0,0,0.0,0,0.0,0.06093,0.1601777123478535,0.3067454455933038,0.01869,0.3333854818523153,0.6666145181476846,24.87383989431597,4.331260785572199,0.317823016202742,0.2426256751142501,0.2212297465724969,0.218321562110511,11.115709211117649,5.727058165702776,19.69192921002704,12294.070077649752,54.26528561183242,13.86847473334055,17.18080345862729,11.904761784426382,11.31124563543819,0.5585791441628584,0.785958904109589,0.6745098039215687,0.5887323943661972,0.1065651760228354,0.7637795275590551,0.9333333333333332,0.8728606356968215,0.7674418604651163,0.1868686868686868,0.4850451467268623,0.7077326343381389,0.6021409455842998,0.5315985130111525,0.0879249706916764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025929827404586,0.0050485082570481,0.0072458620444697,0.0094987504317613,0.0115149480708393,0.0138996374893079,0.0160275690500708,0.0182725778626187,0.0204432087660479,0.0226730676711739,0.0248057565755755,0.0268769184966172,0.0289385762014906,0.0308500231684085,0.0328303404742504,0.0347254518959476,0.036594079090429,0.0383761464082665,0.0402756412921465,0.0423044461347698,0.0570811059137988,0.070807297390649,0.0840188014101057,0.0967175170962651,0.1092790682954617,0.1251004780640521,0.1377071442211801,0.1487634088200238,0.1604635018956586,0.1706579441256903,0.1838747536959073,0.1956923875769409,0.2075935328846509,0.2183102441584569,0.227580288477407,0.2378200017716361,0.2474742969290126,0.2564131375214895,0.2643887950482366,0.272117870461461,0.2790114323365199,0.2861699890163819,0.292924996455409,0.2997511247248013,0.3056515884857527,0.311162258298768,0.3157842107894605,0.320314684425917,0.3248002482352028,0.3289894983727089,0.3278042879225754,0.3264047259238906,0.325453855131973,0.3243414788955887,0.3247815138498,0.3227924447634026,0.3211327601167468,0.3221446897520958,0.3230860634866745,0.3235982966643009,0.3242986829377186,0.3258316641137426,0.3271323636514971,0.3274969447839129,0.32883356429493,0.3288654982889142,0.3293954331690181,0.3321314353796952,0.3354270475121061,0.3390989701379776,0.3389109861473049,0.340822767881025,0.3436217888026258,0.3450204019948617,0.3479635484470894,0.3521540086864655,0.3558885861338177,0.3570145679505089,0.3587310195227766,0.3619445499430307,0.0,2.4374336668905627,55.384193042890665,179.13690372851931,264.59996626716696,fqhc5_80Compliance_baseline,55 -100000,95750,44484,419.8120104438642,6218,63.48825065274151,4902,50.49608355091384,1925,19.62402088772846,77.34687979821054,79.70661270485628,63.33382307926016,65.08164804389357,77.10477263220866,79.46830686273786,63.24281972460887,64.99481382759613,0.2421071660018725,238.30584211842165,0.0910033546512849,86.83421629743293,162.20732,113.65208339156798,169406.89295039163,118696.47665124592,355.84902,229.3105202271986,370971.1018276762,238816.57359707425,362.11375,175.32779635356806,374260.89817232377,179997.09244703135,3517.58244,1608.8020002729124,3629046.673629243,1635612.5939132252,1169.4676,522.7601943948074,1202707.8015665798,527364.2638104706,1891.26842,803.076010289953,1931641.503916449,802262.8265441769,0.38138,100000,0,737306,7700.313315926893,0,0.0,0,0.0,30286,315.5822454308094,0,0.0,33131,341.9738903394256,1600635,0,57487,0,0,6590,0,0,73,0.762402088772846,0,0.0,0,0.0,0,0.0,0.06218,0.1630394881745241,0.3095850755870055,0.01925,0.3278410840776101,0.6721589159223899,24.565146942552214,4.397364465833133,0.3400652794777641,0.2219502243982048,0.2158302733578131,0.2221542227662178,11.26928127087924,5.873010996377602,20.594962345322163,12361.630429388111,55.50015229329696,12.983361625033773,18.87404090874365,11.696682095123514,11.946067664396008,0.5573235414116687,0.7840073529411765,0.6922615476904619,0.5623818525519849,0.1193755739210284,0.7253846153846154,0.9250645994832042,0.8545034642032333,0.696,0.1782608695652174,0.4966685174902832,0.7061340941512125,0.6353322528363047,0.5210396039603961,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0046343244229911,0.0067614213197969,0.00925841234997,0.0116790103361276,0.0141646809637278,0.0166173921908451,0.0187525520620661,0.021089325509599,0.0235286890281361,0.0254775110983524,0.0276200548294025,0.0297916538121387,0.0319031676538758,0.0339955622065122,0.0359734540718228,0.0382309388946992,0.0400531136861105,0.0418814968814968,0.0439129031250325,0.0587013475007045,0.0718761441497986,0.0852451453256721,0.0981395837712844,0.1104775556234783,0.1255178390260399,0.1379825733002607,0.1500297720313031,0.1612951405558222,0.1718744978736623,0.1848461050208169,0.1971878174783304,0.2086438799678407,0.2191483087408119,0.2291007383966244,0.2402722443559097,0.2503039022159768,0.258705796368134,0.2670510652304689,0.2750060145035456,0.2820405990324746,0.2888337585133522,0.2955479006120009,0.3015323006090835,0.3066721721600155,0.3116261323355652,0.3162372843182643,0.3213359108714453,0.3253005811018934,0.328960552684316,0.3282385232226468,0.3271646555401147,0.3262255626398682,0.3254307235000432,0.324958447109106,0.3231360186092066,0.3214150107581319,0.3216261924699932,0.3229851868304601,0.3233718937446443,0.323953688785642,0.3241062954761151,0.3249738110203226,0.3254080193431392,0.3260172982870359,0.3268008058818912,0.3276433922342311,0.3300544028340081,0.3344255364126414,0.33498067035989,0.3363390854579576,0.3377342419080068,0.3396775213404995,0.3407948835084513,0.3448855674918262,0.3475746488846925,0.3522761992056217,0.3544303797468354,0.3606603245663122,0.371191135734072,0.0,2.680711763615356,56.43336596492543,181.36590850798527,273.2689399471143,fqhc5_80Compliance_baseline,56 -100000,95746,44514,421.39619409688135,6141,62.958243686420325,4763,49.077768261859504,1900,19.405510412967644,77.36211040614715,79.72541352072912,63.32787542470121,65.07631674127221,77.12839694985158,79.49437091591831,63.24198707115474,64.99406153871074,0.2337134562955753,231.04260481080985,0.0858883535464727,82.25520256146979,163.87492,114.73786666822058,171155.89162993754,119835.67633971192,353.85497,229.3333118115808,368925.1248093915,238870.9625588336,361.09656,175.17226489824503,372943.5798884549,179661.46480597125,3398.56216,1551.9598707150683,3502991.790779772,1574344.8611065422,1136.28587,501.8170864767189,1168733.5032272888,506089.3548367244,1853.31614,772.0949535754644,1894602.1765922336,772451.1254263587,0.38033,100000,0,744886,7779.813255906252,0,0.0,0,0.0,30170,314.4256679130199,0,0.0,33179,342.40594907359053,1589667,0,57062,0,0,6503,0,0,60,0.6162137321663569,0,0.0,0,0.0,0,0.0,0.06141,0.1614650435148423,0.3093958638658199,0.019,0.3298453849757926,0.6701546150242074,24.44777998066627,4.363295771356117,0.3168171320596263,0.2424942263279445,0.2231786689061516,0.2175099727062775,11.419212004364478,6.047002394375662,20.254161624744672,12302.320778139096,54.303618721286206,13.99734439357704,17.029843394196437,11.966984476534584,11.309446456978147,0.5698089439428932,0.7792207792207793,0.7011265738899933,0.5964252116650988,0.1177606177606177,0.7292944785276073,0.8954545454545455,0.8403141361256544,0.7642585551330798,0.1598173515981735,0.5096848800231281,0.7076923076923077,0.6539485359361136,0.54125,0.1064871481028151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289089490694,0.0045024033098748,0.0069536087706831,0.0089110621132527,0.0111896648186765,0.0135454434350429,0.0158668651724348,0.0178469329412725,0.020040899795501,0.0220060416773334,0.0240280583729015,0.0259776278080798,0.0280141150811205,0.0302552529343267,0.0322840334399834,0.0344492462935009,0.0366159262710986,0.0386897968500342,0.0405708821022431,0.0427273863589017,0.0575278975333256,0.0715302044317967,0.0845717402019905,0.0979921959633567,0.1104137880114337,0.1249563736740241,0.1377378906498631,0.1495683277089964,0.160758547008547,0.1713789443211425,0.1845426546919084,0.19687510144018,0.2081316553727008,0.218684719958877,0.2281190167037126,0.2389365826640819,0.2487105057496929,0.2580768538516919,0.26731774821066,0.2747933411188202,0.2819584109608063,0.2890942050172504,0.2953044754218635,0.3006235759683415,0.3055612907927177,0.310349927894393,0.3150870164016527,0.3197780238522535,0.3247436030249663,0.3291199366671065,0.3278589135589567,0.3266882356990431,0.3256960189266452,0.3247492702101217,0.3239622781614316,0.3225554585955082,0.3201589160783817,0.3203693983334427,0.3210844914314946,0.3214393817994053,0.3214352422578355,0.3222143503758806,0.3227025109056375,0.3236755889366823,0.3238910058235675,0.3258678029515693,0.3266638285795374,0.3304750578957251,0.3332053876753437,0.3354103403399456,0.3391791719399747,0.3394746538927199,0.3419488078102509,0.3469003912127595,0.3478907266307378,0.3526290969111059,0.3504014543251023,0.3524378109452736,0.3580880367269781,0.3592307692307692,0.0,2.5713174734590414,56.8542499774318,182.72307053584933,252.89046152318437,fqhc5_80Compliance_baseline,57 -100000,95764,44446,420.084791779792,6188,63.43719978279938,4852,50.12321958147112,1947,19.98663380811161,77.32840490063373,79.6884272378826,63.31625382636724,65.06445235235549,77.08431048270558,79.44549615559187,63.22588380123054,64.97703267009769,0.244094417928153,242.93108229073823,0.0903700251366999,87.41968225780283,163.9352,114.83568151400036,171186.66722359133,119915.29333987756,355.93845,230.5219788680037,371138.569817468,240174.5650639752,364.11404,176.13422679251894,376765.4859863832,181216.6564122336,3478.662,1581.1366943282949,3593283.143978948,1611937.8935938806,1138.33199,508.5108530669105,1174198.5506035672,516645.52881935233,1904.07022,800.7420430301158,1955802.159475377,807931.3598020645,0.37824,100000,0,745160,7781.212146526879,0,0.0,0,0.0,30324,316.06866881082664,0,0.0,33358,344.8686353953469,1587504,0,56991,0,0,6586,0,0,57,0.5952132325299695,0,0.0,0,0.0,0,0.0,0.06188,0.1635998307952622,0.3146412411118293,0.01947,0.3288343558282208,0.6711656441717792,24.67295454172005,4.38459955598265,0.3270816158285243,0.2326875515251442,0.2194971145919208,0.2207337180544105,11.116493221782331,5.669928635740271,20.72305176525182,12226.5602147259,55.11807382920858,13.566764711691471,18.03776140621701,11.711702262280822,11.80184544901929,0.5558532563891179,0.7794508414526129,0.6824196597353497,0.568075117370892,0.1204481792717086,0.7173061863743148,0.9023809523809524,0.8337408312958435,0.6798245614035088,0.1863636363636363,0.4981818181818181,0.7066290550070522,0.629881154499151,0.5376344086021505,0.1034077555816686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989603072464,0.0045335605184689,0.0067112049709621,0.0089432712046992,0.011067933511017,0.0134554269882659,0.0158060042421275,0.018060603585576,0.0203336809176225,0.022488586811882,0.024601506842294,0.026839711272884,0.0289184380752578,0.0310752211933626,0.0330836067942129,0.0350198976691301,0.0368510946638372,0.0390782186637904,0.0410583088258217,0.0432849034005103,0.057741083636895,0.072104674148372,0.0853832442067736,0.0975761015808947,0.1095129712756317,0.1247331148927174,0.1371686108165429,0.1487074699615806,0.160025205865704,0.1707609989384402,0.1832408853465453,0.1952523154159093,0.2065345112716511,0.2169823701824226,0.2262304466045067,0.2363028114407249,0.2465120432171797,0.2554990206452484,0.2632995333098663,0.2710570652485358,0.2781198638857381,0.284900384889856,0.2920278527781725,0.297630047399052,0.3024924012158054,0.3079579227762088,0.3127688121481147,0.3175893482831114,0.3218969296823317,0.3255629663871096,0.3243585768022543,0.322968022695348,0.3221115874985896,0.3221894602954355,0.3216489939174016,0.3199607410133726,0.3183316952537966,0.3186350324130442,0.3191736979924353,0.3194096601073345,0.3205558576974289,0.3210494059034025,0.32308883216871,0.324112618056488,0.3246228253807839,0.3263811038402378,0.3276781386330586,0.3314906715245932,0.3351201737789923,0.3391383687718184,0.339228880603801,0.3426517993975585,0.3464133966508373,0.3500302206104563,0.3551611396543671,0.3575038194852509,0.3585020551073222,0.3607827150428047,0.3637121422617393,0.368565815324165,0.0,2.0689963502027195,56.22020817759108,188.1142985395355,262.17184319511074,fqhc5_80Compliance_baseline,58 -100000,95726,44521,422.0587928044628,6087,62.29237615694796,4794,49.45364895639638,1946,19.92144245032697,77.31464774318667,79.68208612698126,63.30648041847581,65.05658411505792,77.06495520880738,79.43374004702831,63.21449130211382,64.96785196469281,0.2496925343792924,248.34607995295244,0.0919891163619865,88.73215036510373,164.31228,115.07589065855744,171648.53853707455,120213.82974171848,358.7202,231.6807516116361,374040.10404696735,241328.56445650724,361.12565,174.5318248385865,373571.798675386,179409.75343605288,3435.55799,1560.2246652434087,3546619.277939118,1587555.570318835,1139.43112,496.889353152196,1173149.8861333388,501919.742966588,1920.66762,807.5086122801058,1968599.0013162568,810236.3784123322,0.38058,100000,0,746874,7802.206297139753,0,0.0,0,0.0,30533,318.3252198984602,0,0.0,33013,341.20301694419487,1584560,0,56820,0,0,6628,0,0,60,0.6163424774878299,0,0.0,0,0.0,0,0.0,0.06087,0.159940091439382,0.3196977164448825,0.01946,0.3334379905808477,0.6665620094191522,24.52974800869026,4.352712217359325,0.3143512724238632,0.2327909887359199,0.2188151856487275,0.2340425531914893,10.845316390953448,5.458948155108619,20.739078801083476,12206.718851535135,54.120888628057415,13.32457244818968,16.961361131888335,11.49532810916108,12.339626938818332,0.5527743012098456,0.7849462365591398,0.7007299270072993,0.5624404194470924,0.1140819964349376,0.7232854864433812,0.9128329297820824,0.8753117206982544,0.7040358744394619,0.1013824884792626,0.4923728813559322,0.7098150782361309,0.6374321880650995,0.5242130750605327,0.1171270718232044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0042481572730683,0.006455673074971,0.0087287877248247,0.0110178544178238,0.0130812176535311,0.0152212281041817,0.0172040595454452,0.0194017950238177,0.0215695507964456,0.0237047973506402,0.025638656152456,0.0277006315702853,0.029870892623466,0.0321222130470685,0.0343836579415291,0.036460220977312,0.0381857612767326,0.0403439634824742,0.0421623986831412,0.0568415557295745,0.0705059766794364,0.0837302503199815,0.0961309930696505,0.10828025477707,0.1236366329196949,0.1362613568820582,0.1483346820563056,0.1597951919273978,0.1703867450744731,0.1834289534984039,0.1952498591427209,0.2070287818375928,0.2175952307894621,0.2274927502673855,0.2371217589251013,0.2469599847859404,0.2550702731969229,0.2639313867118629,0.2711369927523747,0.2785767303766933,0.2857042385596399,0.2925244284223508,0.2982015943142528,0.3035594848658048,0.3085227132528931,0.3129889474408882,0.3172407650120249,0.3219152377871239,0.326500210925965,0.325776330660352,0.3237889701435091,0.3230719468976767,0.322290547953115,0.3213855824528554,0.3199344352701481,0.3179024081115336,0.3183850604944765,0.3200944170771757,0.3200285867428979,0.3207533013205282,0.3215563771525732,0.3227743487812533,0.3230648944487881,0.3247889965614254,0.3263917848206839,0.3267632187848144,0.3297972802820448,0.3336141533277169,0.336554137341445,0.3404829415530961,0.3425891381975164,0.342958685028876,0.3447216890595009,0.3489099526066351,0.3540372670807453,0.3581028889232195,0.358267716535433,0.3633826402456042,0.3588235294117647,0.0,2.4757912159202453,54.64453773460696,173.35405439091858,273.8048363094739,fqhc5_80Compliance_baseline,59 -100000,95813,44263,418.4609604124701,6123,62.86203333576863,4763,49.1165081982612,1853,18.901401688706127,77.3504688262772,79.68280212224545,63.33176974345843,65.06005552439021,77.11741226334098,79.45390990633317,63.24513168297028,64.97801174629294,0.2330565629362126,228.89221591228196,0.0866380604881484,82.04377809727248,162.20666,113.69569715569808,169295.0434700928,118664.1657767715,354.85927,229.4506208748531,369746.1826683226,238857.21235620743,361.59791,174.53090340359145,374178.2325989166,179609.64549480035,3404.70921,1544.8443123183224,3509830.544915617,1568690.0966657174,1126.02243,495.879637364112,1159186.9683654618,501507.6789097656,1813.21936,760.9021191055881,1850155.1355244068,758358.0740821409,0.37827,100000,0,737303,7695.229248640581,0,0.0,0,0.0,30190,314.456284637784,0,0.0,33109,342.3230668072182,1598107,0,57370,0,0,6427,0,0,69,0.7201527976370639,0,0.0,1,0.0104369970672038,0,0.0,0.06123,0.1618685066222539,0.302629430017965,0.01853,0.3334367726920093,0.6665632273079907,24.78409634450168,4.345414718420531,0.3210161662817552,0.2399748057946672,0.2185597312618097,0.2204492966617678,11.348269743710734,5.994386501047605,19.59817341923097,12277.3715031547,53.79287550924841,13.777436138386292,17.183401197756346,11.375208678839387,11.45682949426637,0.560781020365316,0.7795275590551181,0.697187704381949,0.5619596541786743,0.1228571428571428,0.7315175097276264,0.9272727272727272,0.8579088471849866,0.7649572649572649,0.1386554621848739,0.4976998274870615,0.6870554765291608,0.6453287197231834,0.5030978934324659,0.1182266009852216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004481713190635,0.0068101085963665,0.0087174745740324,0.0109140102121773,0.0131796052229532,0.0157360664932945,0.0180642921329956,0.0200094065682385,0.021958110681162,0.0240971268021574,0.0263184917440236,0.0287333271629695,0.0308560599818736,0.0329520725255004,0.0350382310394709,0.0369875776397515,0.0391245721398195,0.0407902394413036,0.0428703790457749,0.0574599929061737,0.071453216649415,0.0851558815823945,0.0976737344232668,0.1101546695886716,0.1256856590253337,0.1382868171021377,0.1505728662461037,0.1612500266917212,0.1715801318116058,0.1846758138283562,0.1969123656727713,0.2084365358710294,0.2180822576590559,0.2279937517875608,0.2385188960413042,0.2480859802236557,0.2571090980701063,0.2654032203120387,0.2725450442711018,0.2799032541776605,0.2869004876793712,0.2929700440111684,0.2990692269912193,0.3047229073765811,0.3094368941617542,0.3146053340348503,0.3180040510070192,0.3221487817522032,0.3263683431952662,0.3248375003371362,0.3245176405733186,0.3240533107679289,0.3230882714531596,0.3227935601837399,0.3215538501600723,0.3201565371696558,0.3198028747433264,0.3205719557195572,0.3216091173791107,0.3218070168869584,0.3231391905231984,0.3238507912584777,0.3248831958509378,0.3271598999422744,0.3281979093350017,0.328497055560297,0.3306039215686274,0.3333333333333333,0.3373179227359088,0.3390981528431727,0.3426130971211641,0.3463200751644221,0.3487001209189843,0.3539367869833552,0.355490311215502,0.3550790754257907,0.3592272086939022,0.3561718325176726,0.3567877629063097,0.0,2.2694808620497104,56.26400255834928,170.62056858668777,266.72708810628285,fqhc5_80Compliance_baseline,60 -100000,95719,44861,422.9045435075586,6143,62.934213687982535,4823,49.82291916965284,1842,18.805043930672078,77.30949638025908,79.67036876421093,63.31695901961641,65.05978415662643,77.08970418697578,79.45435134770779,63.235234643199135,64.9823576342289,0.2197921932832969,216.0174165031492,0.0817243764172772,77.42652239753056,163.1762,114.35272257895107,170474.2005244518,119467.10953828508,356.79581,230.70719760825344,372177.6031926786,240449.72012688543,369.74745,179.4371672384072,383240.328461434,184998.30431670253,3406.28092,1549.2216966027636,3517632.06886825,1577673.4109158558,1150.53914,508.4573585416301,1187971.395438732,517236.1905028325,1809.52898,754.8748788761346,1850205.7480750948,753697.1854393692,0.38095,100000,0,741710,7748.827296565991,0,0.0,0,0.0,30387,316.87543747845257,0,0.0,33820,350.2961794419081,1588951,0,57036,0,0,6641,0,0,52,0.5432568246638598,0,0.0,1,0.0104472466281511,0,0.0,0.06143,0.1612547578422365,0.2998534917792609,0.01842,0.3368551895587321,0.6631448104412678,24.644617481533317,4.287667383781147,0.3213767364710761,0.2463197180178312,0.2114866265809662,0.2208169189301264,11.330861648354151,5.99338850038018,19.522591080481376,12358.400233810524,54.67612376324296,14.242201357594835,17.57189682167209,11.275765504566223,11.586260079409811,0.5726726104084595,0.7878787878787878,0.7129032258064516,0.5794117647058824,0.1220657276995305,0.7582677165354331,0.927765237020316,0.8606965174129353,0.7297297297297297,0.2167487684729064,0.5063326766113144,0.7046979865771812,0.6611498257839721,0.5375939849624061,0.099767981438515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019849910371578,0.0044704403535804,0.0070103887671455,0.0093036483302185,0.0118944746607024,0.0140665872749295,0.0161647046832798,0.0182102136433697,0.0204918032786885,0.0227098279620513,0.0249182545946555,0.026983181715506,0.0292856481814723,0.0314926572058248,0.0339304683229685,0.035924246024776,0.0379723254297631,0.0402381100533051,0.0424872943450741,0.04490625,0.059217877094972,0.0732026417424615,0.0864152209938956,0.0994994531841507,0.1118891443275051,0.1274788733884017,0.1401103565365025,0.1520322779824131,0.1628013801796797,0.1725642840292521,0.1847358838168909,0.1975769780433935,0.2085641220958702,0.2188491759504476,0.2281750619322873,0.2380640941792021,0.2474280927115331,0.257341097757403,0.2657836744894018,0.2745392444525949,0.2812937730803515,0.2879388812841482,0.2943718842879302,0.299907639530281,0.305801292956788,0.3120236773954865,0.3174573387379272,0.3215167324087034,0.3261007552106947,0.3296787488111593,0.3287866943418605,0.3275510766011344,0.3264535047651272,0.3249624320887758,0.3243375858684985,0.3221539263324085,0.3204784491647762,0.3203675999145116,0.3209481430771864,0.3222792920163931,0.3244512046269693,0.3245205180586684,0.3252862695661309,0.326883841894043,0.3281830911110038,0.3289150968011272,0.3282322654462242,0.3304397056048311,0.3325265705566663,0.335415266632407,0.3372832107509307,0.341961491539808,0.3459072048283667,0.3467275494672755,0.3453467582572692,0.347286271727563,0.3441419394310187,0.3443260958623515,0.3500413109336271,0.3537753928708317,0.0,2.105267151991688,55.71989178822343,181.87633918119965,266.7050098290825,fqhc5_80Compliance_baseline,61 -100000,95749,44451,420.6205808937953,6183,63.48891372233653,4796,49.67153703955133,1896,19.551118027342323,77.40440741590693,79.76186948247842,63.3594678928421,65.09934674688417,77.1725168332628,79.52665142023858,63.27470669357607,65.01455200243907,0.2318905826441266,235.21806223983788,0.0847611992660262,84.79474444509094,163.32184,114.29794190835447,170572.89371168366,119372.46541306382,355.03593,229.30575894052944,370380.74549081456,239068.49047042732,358.05513,172.49867904031865,370878.4112627808,177742.14893403952,3407.75373,1537.5047620579055,3535048.324264483,1581765.294737185,1121.93123,490.3226283637436,1161798.076220117,502147.7387374738,1857.61672,768.1509817734046,1918047.7289580049,784897.6531539238,0.38114,100000,0,742372,7753.313350531076,0,0.0,0,0.0,30294,315.9615244023436,0,0.0,32795,339.502240232274,1597355,0,57273,0,0,6641,0,0,60,0.6161944250070497,0,0.0,0,0.0,0,0.0,0.06183,0.1622238547515348,0.3066472586123241,0.01896,0.3246653331281736,0.6753346668718264,24.82622773651488,4.4137792558002245,0.3121351125938282,0.244370308590492,0.2201834862385321,0.2233110925771476,11.191763584046466,5.7588451182446025,20.03858798922167,12333.55674414593,54.17077241225075,13.97123408617466,16.788181107333557,11.81538377119592,11.59597344754662,0.5533778148457048,0.7627986348122867,0.698062792251169,0.5691287878787878,0.1064425770308123,0.7361769352290679,0.9236276849642004,0.8775510204081632,0.6771653543307087,0.1442786069651741,0.4878186968838527,0.6733067729083665,0.6343891402714932,0.5349127182044888,0.0977011494252873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026122085311895,0.0050367367620977,0.0071621320023535,0.0091403036611994,0.0113570506237735,0.013578990228013,0.0157452229299363,0.0180504678428211,0.0201692005885237,0.0222972627270401,0.024330999989751,0.0263771001611363,0.0285696661903342,0.0308067855266817,0.0328528534725589,0.0349393729519635,0.0368452664498892,0.0389510699874485,0.0407473993785528,0.0429199300116647,0.0572508325590621,0.0705047714716223,0.0840640208088605,0.0969786804591901,0.10904185242567,0.1240299422723139,0.1361061608961303,0.1476017116944497,0.1588156123822341,0.1697528547686699,0.1830535485468778,0.1962803881898538,0.208449785221032,0.2193530048431709,0.22909630933392,0.2396780229635616,0.2494282750080878,0.2584660010793308,0.2667740143104993,0.2747342038704952,0.2811687636477072,0.2879369711117595,0.2941975090018299,0.299980884566677,0.3063851948744035,0.3116766614235155,0.3166643769748591,0.3207590277337057,0.3255792927074991,0.3299385518230503,0.3291546989504201,0.3285804468353736,0.3282613277133825,0.3276321666834771,0.3259881232692108,0.3250931411470103,0.3234820243887028,0.3237892670157068,0.3235654690958624,0.3251374383973526,0.3255248742732151,0.3262758729657133,0.3287548084964041,0.3301604993312528,0.3305050214520265,0.3309663155156717,0.3317930545712261,0.3345225800394329,0.3351521511017838,0.3372249485515276,0.3388253449527959,0.3409981985800572,0.3438303745059908,0.3488900674293507,0.3541802591108211,0.351953996009858,0.3526717557251908,0.3547868061142397,0.3491844069670998,0.35347551342812,0.0,1.6415486708028415,56.194627584878674,178.27132562063213,264.661471789673,fqhc5_80Compliance_baseline,62 -100000,95739,44680,422.2626098037372,6220,63.610440886159246,4826,49.7080604560315,1924,19.65761079601834,77.33232137485312,79.69722325574229,63.31916690730778,65.07063523105539,77.09160023866887,79.46005452707448,63.22886591968676,64.98454420734754,0.2407211361842485,237.16872866781105,0.0903009876210205,86.09102370785138,163.38036,114.45023323756485,170651.83467552406,119544.00321453622,356.61514,230.7040793504875,371729.2534912627,240219.0140172482,369.91357,178.88349799359247,381980.7497467072,183452.2879958659,3472.71007,1595.8004578926625,3582314.918685175,1622136.4909136705,1162.00848,514.4801043956714,1200420.5078390208,524159.33788575215,1885.03716,791.4761556602283,1928297.4754279864,792177.8132145661,0.381,100000,0,742638,7756.901576160185,0,0.0,0,0.0,30381,316.6107855732773,0,0.0,33935,350.1289965426837,1589498,0,57094,0,0,6478,0,0,57,0.5744785301705678,0,0.0,0,0.0,0,0.0,0.0622,0.163254593175853,0.3093247588424437,0.01924,0.339564817652467,0.660435182347533,24.563922448779312,4.375734741512259,0.326771653543307,0.2295897223373394,0.2217157065893079,0.2219229175300456,11.426388236798186,5.95470781722466,20.33804801894474,12331.621453550446,54.87801219739336,13.336544921078476,17.933201412351252,11.91929716910403,11.688968694859591,0.5727310401989225,0.8005415162454874,0.7178186429930248,0.5869158878504673,0.1092436974789916,0.7364914877868246,0.92018779342723,0.8782201405152225,0.7320754716981132,0.1459227467811159,0.5090647482014389,0.7258064516129032,0.6582608695652173,0.5391304347826087,0.0990453460620525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023207264177712,0.0046049762143849,0.007016083177646,0.0094011708268964,0.0117502238137869,0.0139974124142989,0.0160826466508933,0.0185096325638852,0.0207146873881703,0.0228398853398853,0.024860066020134,0.027093065037729,0.0292650824172999,0.0313510618575813,0.0337993293783853,0.0358132131635521,0.0376905235255135,0.0397447868036103,0.0415995510615523,0.0436489751708048,0.0583556038082512,0.0727192826425873,0.0864170337738619,0.0991934551037361,0.1114321263628503,0.1269000095198806,0.1391188080988157,0.1508483958186966,0.1619208339563796,0.172650452537211,0.1850926324859974,0.1971666360025541,0.2088134486698221,0.2194655027184317,0.2290107422734877,0.2389411895004984,0.2482059752463645,0.2568959114082177,0.2653955283168766,0.2726325074172079,0.2795397722011297,0.2867189328340744,0.2927524911832233,0.2987535953978907,0.304815237725031,0.3099312113217781,0.3146762121705174,0.3190842607313195,0.3237696958711498,0.3290556581376945,0.3279553253044472,0.3267992736876857,0.3258858808126029,0.324810510358767,0.3242400392046214,0.3226384190304162,0.3200874607852457,0.3202434263405672,0.320553272048164,0.3212080105665227,0.3223131191834284,0.3247120750385879,0.3253911657368178,0.3265036499619329,0.3276227651679437,0.3286731526643887,0.3304290880100225,0.3319669546572492,0.3359105925353202,0.3379736737136019,0.3410668615272196,0.3426812951565426,0.347729437916799,0.3505707500191526,0.3519594974685918,0.3573862968621459,0.3613254652746255,0.3619276144771046,0.3628198149156233,0.3605182926829268,0.0,2.672105237861488,58.89870251521978,173.95241132975153,263.86071484308815,fqhc5_80Compliance_baseline,63 -100000,95728,44801,424.14967407655024,6186,63.41927126859436,4832,49.92269764332275,1910,19.5449607220458,77.41699606751023,79.77096341924884,63.36600846061516,65.10095367146388,77.18094866651488,79.53512860899879,63.27874306558672,65.01598691086407,0.2360474009953463,235.83481025005423,0.0872653950284387,84.96676059981212,163.33328,114.37687543745582,170622.26307872304,119481.10838778187,357.65714,231.42402590565356,373071.31664716697,241204.867860661,365.47049,177.17234499870662,378104.7655858265,182273.6073604774,3427.22727,1568.5894259784443,3544032.7908240017,1602450.5536294966,1157.28037,513.9033867795174,1196561.9567942503,524473.3482152745,1874.55166,785.8576137116812,1921015.5022563927,791391.4086747937,0.38186,100000,0,742424,7755.55741266923,0,0.0,0,0.0,30438,317.38885174661544,0,0.0,33476,346.0325087748621,1592143,0,57153,0,0,6336,0,0,69,0.7207922446932977,0,0.0,1,0.0104462644158448,0,0.0,0.06186,0.1619965432357408,0.3087617200129324,0.0191,0.3300940922412463,0.6699059077587537,24.41191747519374,4.386278919829363,0.3228476821192053,0.2388245033112583,0.216887417218543,0.2214403973509933,11.722254998915474,6.240821603030636,20.283250765920208,12309.8710469205,54.7290859448742,13.596194706677116,17.752878724986964,11.620718533636888,11.759293979573226,0.5604304635761589,0.7755632582322357,0.7038461538461539,0.5687022900763359,0.111214953271028,0.726144297905353,0.9170854271356784,0.86810551558753,0.7322175732217573,0.1446808510638297,0.5001411233418007,0.701058201058201,0.6439195100612424,0.5203955500618047,0.1017964071856287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023583473349662,0.0044676777193568,0.0069376825705939,0.0094233288315275,0.0116520253782332,0.0137217777234878,0.0157581440861091,0.0177179016125739,0.0199583052302409,0.0223024747562585,0.024203795548633,0.0264270613107822,0.0286601287033039,0.0306990443236118,0.0328051497895518,0.0347100947578353,0.0368775235531628,0.0388831845006586,0.0408139933691551,0.0428486597422621,0.057325439338408,0.0714734132713918,0.0853833807160916,0.0974360592293454,0.1094717303494025,0.1250647743736714,0.1385945372580217,0.1506285057422328,0.1613520067514875,0.1717474989009103,0.1847437553832902,0.1966182738700534,0.208283522072728,0.2176325389370672,0.2272622408735869,0.2374636326426762,0.247149687385068,0.2557478368355995,0.2639746976069287,0.2714633895163228,0.2787372266148795,0.285832807497254,0.2920316323273875,0.2989035455220128,0.3047028561721954,0.3104123317861144,0.3152724136638044,0.319878499803007,0.3239458473951666,0.3287371473767466,0.3279347869950633,0.3273144521856234,0.3270462382996692,0.3262946422119123,0.3253903406474232,0.3235748718341112,0.3216999763014456,0.3227901953725824,0.3235128925197855,0.3243118369377854,0.3261842596046251,0.3256655263261374,0.326816341860368,0.3282364707189688,0.3288818686578594,0.3303826384922901,0.3314805887190539,0.3347611305652826,0.3384443435437113,0.340816729137897,0.3453321891513481,0.3485343736819907,0.3522585475418018,0.3556970661814874,0.3607259190321079,0.3696311858076564,0.3726052194901191,0.3734843967402106,0.3727810650887574,0.3696947133283693,0.0,2.1990523287203407,56.4635998739513,183.1017969689753,261.9664701691579,fqhc5_80Compliance_baseline,64 -100000,95689,44577,421.78306806424985,6062,62.18060592126577,4758,49.07565132878388,1818,18.581028122354716,77.3508434030137,79.74329905904048,63.31502979323547,65.0835627984177,77.12657045006142,79.5212219543561,63.23148715869138,65.00354343236863,0.2242729529522762,222.0771046843879,0.0835426345440879,80.019366049072,162.51818,113.88877422674112,169839.98160708128,119019.71410166383,353.88702,228.68768602733243,369149.6096730032,238310.2782399952,361.58339,175.3857246922635,373571.98842082167,179884.41620430772,3394.03899,1536.3333065589552,3501941.341219994,1560582.9920821087,1133.76493,499.087190185561,1167576.199981189,504449.5314105442,1785.13974,743.6500737317929,1826013.2721629443,744456.65828241,0.38021,100000,0,738719,7719.99916395824,0,0.0,0,0.0,29985,312.6587173029293,0,0.0,33142,342.11873883100463,1596722,0,57199,0,0,6364,0,0,73,0.7628881062609078,0,0.0,1,0.010450522003574,0,0.0,0.06062,0.1594382052023881,0.2999010227647641,0.01818,0.3343297671491504,0.6656702328508496,25.01945470390422,4.280631828564113,0.3192517864649012,0.2400168137873055,0.2215216477511559,0.2192097519966372,11.125841488127463,5.768393023955135,19.253190300657216,12274.648986952036,53.37300128932447,13.79188303351554,16.82433153124881,11.56211057395253,11.1946761506076,0.5598991172761665,0.776707530647986,0.6701777485187623,0.594876660341556,0.1265580057526366,0.7408874801901744,0.9272300469483568,0.8507853403141361,0.7276422764227642,0.173076923076923,0.4945652173913043,0.6871508379888268,0.6094986807387863,0.5544554455445545,0.1149700598802395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0047763434099644,0.0069638307159751,0.0091369217009512,0.011261673686138,0.0133962225708522,0.0154852135592528,0.0177706967338684,0.0201470633354128,0.0223981483378054,0.0247256691621372,0.0269615143640677,0.0291400946307344,0.0311669311133549,0.0332112080086691,0.035417442004714,0.0374629618118149,0.0393494010919432,0.0414001144224268,0.043333229091743,0.0574914347789755,0.0716731411578693,0.0851912499475164,0.097754960338334,0.1105625705454814,0.126002412136857,0.1385356741036364,0.1500633605588507,0.1602659341364088,0.1713111499790756,0.1844814020414102,0.1963214757399268,0.2085133238305604,0.2189890456231738,0.2290891477135119,0.2399379088590753,0.2487607734559907,0.2580946591011438,0.2661176737846433,0.2735807960381511,0.2795396389824817,0.2862629834771713,0.2925705214022533,0.2983708431306685,0.3037236047119464,0.3095032663626278,0.3136921364335656,0.3183893573454411,0.322949950195982,0.3263838490466451,0.3258354322966475,0.3240945791667239,0.3232148385825663,0.3223874133949191,0.3210458446351549,0.3199560029942406,0.3185185185185185,0.3181185410832146,0.3190375498789263,0.3190049680371801,0.3195269588611142,0.3203942708743212,0.3209753047827446,0.3225232439165443,0.3241219255431142,0.3259877631442497,0.3266147244805781,0.3312361790263805,0.3331013847331431,0.3379580638839898,0.340088066139468,0.341371158392435,0.3437344294967613,0.3481055736217197,0.3511743239449799,0.3480217957829898,0.3512402982803226,0.3582653670181022,0.36248654467169,0.3614088820826952,0.0,2.4968656138303302,54.99209504233844,169.5393042411593,266.83552511188805,fqhc5_80Compliance_baseline,65 -100000,95721,44600,421.8196633967468,6090,62.306077036387,4802,49.560702458185766,1826,18.75241587530427,77.26691653433518,79.6252921830881,63.2951211478972,65.0384955512585,77.03234935873459,79.39079452392293,63.20760483515915,64.95304222772515,0.2345671756005884,234.4976591651715,0.087516312738046,85.45332353335766,162.98436,114.2305540324097,170270.22283511455,119336.9835588948,354.14546,229.72873246911016,369363.7446328392,239385.23674962675,369.18417,179.18443734808278,381206.997419584,183888.44284949003,3399.83094,1569.6996455915305,3511771.60706637,1599920.313077185,1108.23434,502.5387205963079,1139577.835584668,506875.1762870671,1784.2711,762.5817840622119,1832994.9540853105,770675.1861382388,0.38068,100000,0,740838,7739.555583414298,0,0.0,0,0.0,30157,314.4137650045445,0,0.0,33860,349.2337104710565,1587902,0,57017,0,0,6453,0,0,67,0.6999508989667889,0,0.0,0,0.0,0,0.0,0.0609,0.1599768834716822,0.2998357963875205,0.01826,0.3413446434181589,0.658655356581841,24.34691413338068,4.210272274743456,0.319658475635152,0.2471886713869221,0.2240733027905039,0.2090795501874219,11.251877532581322,6.003937094427292,19.8219788152304,12318.790391805893,55.10461279564292,14.436516812733707,17.414131253579352,12.068803506568637,11.185161222761224,0.5749687630154102,0.7919123841617524,0.6872964169381107,0.6068773234200744,0.1125498007968127,0.7408470926058865,0.9221052631578948,0.8461538461538461,0.7591240875912408,0.1491228070175438,0.5071868583162218,0.7050561797752809,0.6282394995531725,0.5548628428927681,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.0049681128268561,0.0074887364533019,0.0094675998821629,0.0117364684823952,0.0137761803427244,0.0158825628217544,0.0180990394136442,0.0202101776696448,0.0223859972362966,0.0246842709529276,0.0266832303238126,0.0287421331907367,0.0310649211531925,0.0333133872565203,0.035362462658025,0.0374873143756601,0.0395078123378913,0.0413821062151121,0.043280751838963,0.0579820613755729,0.0715923006876628,0.085049004176373,0.0978137362174901,0.1096224245429322,0.1250224860586436,0.1379449451681051,0.1486143949560142,0.1594221495097253,0.1696525370058286,0.182892254621894,0.1953257053699129,0.2076649132551377,0.2178050837248524,0.2279744784951568,0.2382781280525708,0.24822480906214,0.2571805244120928,0.2656321003362719,0.2732514816980202,0.2805588027639208,0.2876106194690265,0.2939058762227328,0.2985966174883051,0.3039122717436234,0.3096633316473186,0.3148401168256515,0.3193425076452599,0.3245021083360363,0.3290800794176042,0.3277243914635959,0.3273606410167852,0.326955710164602,0.3252865402170605,0.32507301662991,0.3237666507904804,0.3218127790754954,0.3224344501392574,0.3227289097737914,0.3236305664027514,0.3245635465017947,0.3263003430565745,0.3261423189442889,0.3286512441941346,0.3292659353404533,0.3310382742551966,0.3313194364906654,0.3348931326672568,0.3384309690238796,0.3432559636349008,0.3478320842337579,0.3495974235104669,0.3513856300336102,0.3549644576931896,0.3568998109640832,0.3606323546891715,0.3619134953385297,0.3697495961227787,0.3747940691927512,0.3833397608947165,0.0,2.365078472831894,61.20354883786907,177.2672969457734,253.6106632218352,fqhc5_80Compliance_baseline,66 -100000,95715,44226,418.199864180118,6130,62.90550070521861,4819,49.88768740531787,1900,19.5685106827561,77.288290147924,79.65701342881525,63.294707477804174,65.04360905018524,77.05274156737657,79.41898541859709,63.2085895363218,64.9579065108836,0.2355485805474302,238.02801021815867,0.0861179414823709,85.70253930163574,162.80726,114.0671616226783,170095.867941284,119173.75711505856,355.36833,229.74100863450332,370827.5296453011,239578.4925043352,366.08246,177.78209167764223,379203.0402758189,183154.49305950347,3460.91705,1578.5338417695978,3587152.024238625,1620675.9240967887,1184.74035,523.3068300086335,1228853.2622890873,537808.4730801168,1864.90832,772.7940757064664,1922855.226453534,787970.0136033313,0.37793,100000,0,740033,7731.630360967455,0,0.0,0,0.0,30247,315.53048111581256,0,0.0,33520,347.0197983597137,1589242,0,57070,0,0,6409,0,0,67,0.6895470929321422,0,0.0,0,0.0,0,0.0,0.0613,0.1621993490858095,0.3099510603588907,0.019,0.3400841252531547,0.6599158747468453,24.370203882422302,4.423628148362073,0.3187383274538286,0.2324133637684166,0.2183025523967628,0.2305457563809919,11.515953336005335,6.006579462558987,20.15132053782264,12234.925223860268,54.84448692438574,13.605445053605935,17.43782387678519,11.730467303637475,12.070750690357142,0.56733762191326,0.7982142857142858,0.6979166666666666,0.596958174904943,0.126012601260126,0.7596371882086168,0.9266666666666666,0.8786407766990292,0.7925311203319502,0.1590909090909091,0.4945652173913043,0.7119402985074627,0.6316725978647687,0.5388409371146733,0.1178451178451178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280962942707,0.0044808953680518,0.0065856232495839,0.0091529693817428,0.0114006183386217,0.0135832764817888,0.0158336901776064,0.0178124840504261,0.0201371781373621,0.0221051015708949,0.0240330415889478,0.0261747859826322,0.0283358351668688,0.0304937076476282,0.0326450202161894,0.034868699812945,0.0369427015385889,0.0389888025238426,0.0407925529148681,0.0429168447052202,0.0579726794218397,0.0710554142194583,0.0840294685584753,0.0965589813743028,0.1090047393364928,0.124080249854428,0.1372979974942133,0.1487956363791321,0.1600769806479204,0.1706052244494787,0.1835002857420127,0.1959811514921735,0.2075638121787612,0.2175902612046504,0.2271355566324507,0.2367723253414398,0.2467577478645856,0.2558286358511837,0.2645720526004459,0.2711510196582767,0.2793491748715629,0.2864395253951132,0.293218187641609,0.299340564303989,0.3043224156824546,0.3098212189727813,0.3144248998706794,0.3184468000969474,0.3226288371851332,0.326204623956169,0.325541242328185,0.3240402256831882,0.3237177222167258,0.3229805559180477,0.3215483947929559,0.3210864091383651,0.3184313227781832,0.3178633687465053,0.3188341267938487,0.3195331937210259,0.3189110994213572,0.3207401543637443,0.322148777672857,0.3229566770879857,0.3230547895935739,0.324480099696238,0.3259571079128505,0.3300552972225713,0.3333567391075378,0.3382370482286986,0.3382870730257442,0.3388429752066115,0.3416016116847142,0.3409004342195475,0.3457778605344009,0.3479793233082707,0.3510895883777239,0.3529883674288006,0.3498920086393088,0.3548022598870056,0.0,1.773290222309109,58.601013610611055,181.2403338357228,258.7390544686664,fqhc5_80Compliance_baseline,67 -100000,95838,44563,421.49251862518,6135,62.84563534297461,4795,49.54193534923517,1848,18.969511049896703,77.36488025655099,79.67956565063099,63.35773544642036,65.07105426844456,77.13133201097165,79.44586791879341,63.27179220875176,64.98724160475716,0.2335482455793425,233.6977318375801,0.0859432376686015,83.8126636873966,162.95554,114.10317395549724,170032.05409127905,119058.15433909024,351.69827,227.9812556418416,366459.5254491954,237369.79657530572,361.37793,175.04965922805354,373782.3201652789,180118.12781194347,3458.03447,1562.8058933980255,3575941.108954694,1598407.5871763015,1167.10553,514.1350132954451,1203244.8402512574,521931.00293159706,1821.38894,763.6782843902472,1871786.9321146104,771583.6370150616,0.3801,100000,0,740707,7728.729731421775,0,0.0,0,0.0,29973,312.22479600993347,0,0.0,32978,340.8668795258666,1599125,0,57332,0,0,6480,0,0,64,0.6677935683131953,0,0.0,0,0.0,0,0.0,0.06135,0.1614048934490923,0.3012224938875306,0.01848,0.3268512756689483,0.6731487243310517,24.6404801139525,4.4295145818748045,0.3263816475495307,0.2285714285714285,0.216266944734098,0.2287799791449426,11.104434644915836,5.545230162644241,19.740331837668997,12369.520053611184,54.0122324839079,13.02420420770454,17.649065676524888,11.36021341705338,11.978749182625078,0.5597497393117831,0.7883211678832117,0.6964856230031949,0.579556412729026,0.1175934366453965,0.7234387672343877,0.9261083743842364,0.8571428571428571,0.7316017316017316,0.1288888888888889,0.5030881527231892,0.7072463768115942,0.6465661641541038,0.5359801488833746,0.1146788990825688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991998379418,0.0045013990834989,0.0066360905917688,0.0087352212245561,0.0108601702240164,0.0129515741457255,0.0151379233011886,0.0172427874308348,0.0194430814524043,0.0215057065356466,0.0235108432747099,0.0256662869575033,0.0280478529877284,0.0302799505969534,0.0321194066774556,0.0344076475203369,0.0363367432431034,0.0386368816959197,0.0408070026062487,0.0427608306629489,0.0583774875881346,0.072726132491586,0.0861171343871447,0.0993227279886596,0.1114738216587338,0.1269018382236487,0.1394114656158637,0.1512909637849846,0.1619055746378512,0.1716039069528338,0.1840732334369587,0.196662126813239,0.2075543436933071,0.2178565968506344,0.2285648356719812,0.2387018300436778,0.2485017933922962,0.2575095729509393,0.2658083072881279,0.2730858495203905,0.2808609898611977,0.2879539591188728,0.2946854766293303,0.3009902647881933,0.3065821893699401,0.3127331371800712,0.3183869395102316,0.3237666908056053,0.3283130583170659,0.3320429258015669,0.3303002607456788,0.3295730911389274,0.3286024048886261,0.3283450577070302,0.3270643156611459,0.3253960957371824,0.3228108005263909,0.3240228977497039,0.324759668934318,0.3260877350044763,0.3264349201566737,0.327353636490057,0.3287120797744772,0.3295707008370548,0.3305339653969247,0.3320720250521921,0.3338932384341637,0.3383894011391887,0.33999015540398,0.3417842621382444,0.3466611706512778,0.349807651207523,0.353251206502413,0.3562600752283718,0.3587575987841945,0.3626177136726666,0.3660755589822668,0.3644744929317762,0.3618548164504554,0.3668478260869565,0.0,1.8636290325538551,54.131748832165,175.47669124616925,274.47807413323505,fqhc5_80Compliance_baseline,68 -100000,95637,44489,421.7614521576377,6104,62.74768133672114,4736,48.94549180756402,1847,18.92572958164727,77.2563444549925,79.66660617794915,63.27473565930678,65.05572453925208,77.02188263804653,79.43485914167805,63.18760365451199,64.97256196631716,0.2344618169459664,231.74703627110205,0.087132004794789,83.16257293492413,163.81002,114.7578931553042,171283.10172841055,119993.1963103236,356.13129,230.90174663069223,371799.0735803089,240856.92945307508,367.37311,177.77181115521446,380881.32208245766,183305.22462945248,3374.59383,1549.639669869958,3490506.477618495,1582350.0260061745,1118.7174,496.5711228383322,1155683.1142758557,505179.2121949161,1802.81462,763.0764668242253,1849420.3707770004,766583.9944741917,0.37913,100000,0,744591,7785.59553310957,0,0.0,0,0.0,30344,316.676600060646,0,0.0,33671,348.77714692012506,1582453,0,56885,0,0,6490,0,0,59,0.6169160471365684,0,0.0,1,0.0104562041887553,0,0.0,0.06104,0.1610001846332392,0.3025884665792923,0.01847,0.3389434315100514,0.6610565684899485,24.32750426683061,4.294496909110936,0.328125,0.2364864864864864,0.21875,0.2166385135135135,11.071269776456807,5.740522577167087,19.83989776445401,12228.03629749681,54.14976998313328,13.475427703347252,17.6778419775477,11.57352762348094,11.422972678757384,0.566722972972973,0.7866071428571428,0.693050193050193,0.583976833976834,0.117933723196881,0.7335375191424196,0.9198113207547168,0.8637532133676092,0.7715355805243446,0.1150442477876106,0.5032069970845481,0.7054597701149425,0.6360515021459228,0.5188556566970091,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0044292186533959,0.0066978556713585,0.008889295256672,0.0110591107945874,0.0131414076586901,0.0153623306675371,0.0175528219379623,0.0195159871529979,0.0214623052257383,0.0238263814068031,0.0261443282017552,0.0283937653138962,0.0304983039313736,0.0325506440916087,0.0346237026459297,0.0365847337265838,0.0385925910535829,0.0408237595737595,0.042673259064547,0.0572109405211066,0.0712280260649108,0.0846158691498519,0.0970906488147867,0.1098554394850691,0.1252989354722651,0.1378779677566572,0.1493850167722698,0.1607345176254302,0.1712133244618059,0.183477435908493,0.1955796316359696,0.2065310924003616,0.2179421144341307,0.2275444478757665,0.2377061918611105,0.2477209937026721,0.2567226417220782,0.2654520242776931,0.2721359991740941,0.279463426510997,0.2861631164933588,0.2926754047802621,0.2988715486194477,0.3040323366124476,0.3096193993897543,0.313400639618737,0.3181377674632119,0.3220037635455194,0.3266493067029727,0.3260370840193247,0.3243966718640045,0.323491583395757,0.3219161190175683,0.321065592119991,0.318590473844638,0.3174794938640554,0.3169139465875371,0.3168228315997593,0.3177163798368843,0.3180909639462966,0.3187601892719392,0.3196538364356102,0.3209807433945364,0.3223046893826208,0.3245339182202726,0.3249384694636826,0.3283068866525758,0.3319777022052378,0.333505072923272,0.3368794326241134,0.3428874734607218,0.3450100806451613,0.3475628216772631,0.3490862100793797,0.3510127619716661,0.3500599161174356,0.3528710510629843,0.3582329317269076,0.3692660550458715,0.0,2.2439168790371764,57.316208610306845,180.87640613407964,252.79912457302228,fqhc5_80Compliance_baseline,69 -100000,95693,44727,423.6569028037579,6170,63.275265693415406,4858,50.17085889249997,1894,19.3744579018319,77.32722884548278,79.70480928951744,63.32110870231941,65.0761792369058,77.09774141195791,79.47669098067983,63.23660709439505,64.99451444972705,0.2294874335248664,228.1183088376082,0.0845016079243663,81.66478717875236,162.41038,113.79328028618072,169720.23031987713,118914.94705587736,356.21577,230.22418614878825,371674.2917454777,240012.01357339436,369.98596,178.67625151947587,383200.2027316522,183968.63740876663,3455.12614,1569.7209015399137,3571443.2090121536,1601417.4649718706,1145.3059,503.74230874610015,1182562.2981827303,512211.16305907787,1853.37666,767.1455598495879,1899124.073861202,771209.139963373,0.38198,100000,0,738229,7714.555923630778,0,0.0,0,0.0,30287,315.8956245493401,0,0.0,33850,350.27640475269874,1593695,0,57221,0,0,6544,0,0,82,0.8464568986237238,0,0.0,0,0.0,0,0.0,0.0617,0.1615267815068851,0.3069692058346839,0.01894,0.3301988592569755,0.6698011407430245,24.36351879833132,4.336561905821548,0.3163853437628653,0.2387813915191436,0.224578015644298,0.2202552490736928,11.233551907500331,5.962048189485524,20.076452693321738,12377.152664324629,55.15805295964999,13.950230704255768,17.485725206877635,12.043021734224885,11.679075314291708,0.5664882667764513,0.7887931034482759,0.6987638256343527,0.5857011915673694,0.1158878504672897,0.7409961685823755,0.9220183486238532,0.8574766355140186,0.7399103139013453,0.1513761467889908,0.5023923444976076,0.7085635359116023,0.6375112714156899,0.5460829493087558,0.1068075117370892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0045707452037579,0.0067667647357208,0.0092730836812009,0.0112059059802117,0.0132670827690835,0.0153468072522586,0.0176585335961516,0.0196449389483157,0.0216792454762368,0.0238026869039072,0.0259846967596158,0.0280800641830038,0.0302109200317358,0.0325087464008173,0.034477766287487,0.0365282612299022,0.0385166420963019,0.0406794117035218,0.04298519908276,0.0570921245038646,0.0712917708867515,0.0851391889907487,0.0982083679631363,0.1107337601383776,0.1262112300596623,0.1390292045165124,0.1513996401077547,0.163310436185328,0.1735348378239231,0.1871553506806824,0.1994198694706309,0.2113345441494741,0.2218236696485203,0.2330098155728685,0.2427132839243577,0.2517800147311564,0.2606939992126427,0.2684141843971631,0.275653139997022,0.2823406841465532,0.2890308689648716,0.2960284107724178,0.3016493263652491,0.3068909769409362,0.3124622309921687,0.3165785716075052,0.3208104631763941,0.3251198963058976,0.3296878921160729,0.3297725985271506,0.3279501053240262,0.3266635644485807,0.3262484105883713,0.325065060599301,0.3232793025112052,0.321594421111023,0.3213905058620972,0.3222241173460685,0.3235351718980896,0.323755398104354,0.3246553458375244,0.3255794494184587,0.325701905251167,0.3276421786701936,0.328796412181894,0.3312243502051983,0.3349781563315209,0.3369538558564872,0.3396518836432999,0.3421437717212365,0.3451072457581902,0.3458936587216286,0.3451286764705882,0.3476899724883787,0.3433102790364893,0.3460826650215916,0.3480203045685279,0.3458046767537827,0.3499043977055449,0.0,2.326883108999659,57.197809148959486,183.0291239240468,264.3141866615816,fqhc5_80Compliance_baseline,70 -100000,95779,44560,421.7939214232765,6163,63.07228098017311,4814,49.69774167615031,1931,19.74336754403366,77.38146625236273,79.70520724168419,63.35451413110488,65.06814066850717,77.13780899472198,79.4664565898521,63.26236325500544,64.98144839022756,0.2436572576407485,238.75065183209188,0.0921508760994385,86.69227827961379,164.14706,115.01434693639918,171381.05430209127,120083.05258605664,356.30762,230.1482033046645,371416.56312970485,239697.27529486056,363.54348,175.74721025058838,377315.2152350724,181648.47495521567,3442.69869,1578.3946848004648,3553019.993944393,1606555.7322591222,1170.38646,522.5429252255235,1206868.9900708925,530561.3787881017,1895.69004,802.4344238420958,1939481.5773812635,800863.5184754796,0.38107,100000,0,746123,7790.047922822331,0,0.0,0,0.0,30391,316.6873740590317,0,0.0,33279,345.1382870984245,1587455,0,57032,0,0,6449,0,0,63,0.6577642280666952,0,0.0,0,0.0,0,0.0,0.06163,0.1617288162279896,0.31332143436638,0.01931,0.3268873762376237,0.6731126237623762,24.397347384837463,4.392353720302849,0.3194848358953053,0.236186123805567,0.2179061071873701,0.2264229331117573,11.10584211593534,5.630987006576421,20.55081638643392,12303.994049541072,54.7548659023968,13.6911611183998,17.56724627605556,11.657678258025635,11.838780249915798,0.5627336933942667,0.802990325417766,0.688556566970091,0.5776930409914204,0.1201834862385321,0.7056631892697467,0.8983833718244804,0.8194130925507901,0.6820083682008368,0.1409691629955947,0.5074884792626728,0.7443181818181818,0.6356164383561644,0.5469135802469136,0.1147161066048667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217362250167,0.0045705136000648,0.0066544263093293,0.0089467056625233,0.0115814412234231,0.0136816173626239,0.0159103881278538,0.0181430422759415,0.019932570494483,0.0219860042560157,0.0244437159365651,0.0265423168867411,0.0286618639974513,0.0306152911746842,0.032702716634878,0.0349688626341282,0.0369538671689053,0.0387645924482136,0.0406931443946933,0.042577339983548,0.0571518029536085,0.0709187944746756,0.0843192783721418,0.0971814846353591,0.1095812423565133,0.1255936452196355,0.1379288396664757,0.1493090305133828,0.1601431470996688,0.1706788766526909,0.1832717797422286,0.1965062195781503,0.2071759511017336,0.2184768219166092,0.2288695192815636,0.2388213521869701,0.2483532432734174,0.2580833942940746,0.2662805224304372,0.2740228619910799,0.2808883328120112,0.2862213163720701,0.2927574687862778,0.298273381294964,0.3041100551734195,0.3101786220584066,0.315233578195197,0.3197419978627042,0.3239657428641764,0.3276469424104492,0.326750666343591,0.3264352011000344,0.3261846088854467,0.3259281757567868,0.3255637531980722,0.3235348209906817,0.3206335142319194,0.3212675617633076,0.3216576810209513,0.3224766721276444,0.3238120163008935,0.32489850616846,0.3264559555165349,0.3263418883602493,0.3287191420962982,0.3307156230497191,0.3322825253471926,0.3357554497619644,0.3390275492701369,0.3420770665502599,0.3447271403213326,0.3476674071723262,0.3505592701368493,0.3517189270872686,0.3541588257433195,0.359210681791327,0.3601091239769627,0.3564972886121711,0.3608837970540098,0.3615560640732265,0.0,2.0326740576654725,59.20273835435511,175.1541456073307,262.1097274271436,fqhc5_80Compliance_baseline,71 -100000,95749,44591,421.6858661709261,6072,62.08942129943916,4729,48.72113546877775,1846,18.83048386928323,77.31912755708531,79.66794537441324,63.32066847763053,65.05789615514806,77.08857226719695,79.44200643424071,63.23421816180016,64.97621905930424,0.2305552898883576,225.9389401725258,0.0864503158303762,81.67709584381555,161.89822,113.37037679323562,169086.06878400818,118403.71888294982,351.81849,228.2836488815172,366782.1596048001,237762.701314392,370.22776,179.24029623619464,382388.8082382061,183954.4272746259,3324.20439,1523.8273821825746,3425884.238999885,1545575.298105018,1122.23025,498.7579308050084,1154895.758702441,503754.9942296364,1794.05888,753.740295676492,1832145.359220462,751622.8725026739,0.37886,100000,0,735901,7685.7303992730995,0,0.0,0,0.0,29884,311.428839987885,0,0.0,33810,348.9331481268734,1597450,0,57451,0,0,6308,0,0,84,0.8668497843319513,0,0.0,1,0.0104439733052042,0,0.0,0.06072,0.160270284537824,0.3040184453227931,0.01846,0.3366430260047281,0.6633569739952718,24.376811927159043,4.210570912154008,0.3245929371960245,0.2469866779445971,0.2199196447451892,0.208500740114189,11.490742701188852,6.17512842024397,19.65662668582569,12248.679658191548,54.17314679268927,14.186741701871515,17.53915602608819,11.765695762455152,10.681553302274413,0.5842672869528441,0.7988013698630136,0.6957654723127036,0.6115384615384616,0.127789046653144,0.7665130568356375,0.9164835164835164,0.8497536945812808,0.7903225806451613,0.2072538860103626,0.5150277210388094,0.7237026647966339,0.6403897254207263,0.5555555555555556,0.1084489281210592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304043585251,0.0045805085175163,0.0068483421939044,0.0091206402730098,0.0112985731864823,0.0133410731925901,0.0154779505480499,0.0180022873013928,0.020337007423161,0.0223889764746831,0.0246278144608948,0.0265119622137796,0.0284876844757546,0.030471912890299,0.0326967323902972,0.0350137450652115,0.0370086646859698,0.0390950770698919,0.0411068507954321,0.0429941778717465,0.0576722338204592,0.0712597024917881,0.0849267366610377,0.0969767075030233,0.1091982499604659,0.124742257140138,0.1371995842436841,0.1486135642995467,0.159786438868126,0.1703028678638434,0.1830018200028,0.1947462983808122,0.2068515355577071,0.2173580201008322,0.2273802581340845,0.2383605032338088,0.2474689408061437,0.2570042982199518,0.2645690027015369,0.2716641850876188,0.2791219986570654,0.2856908761046409,0.2932543677820551,0.2993663442382929,0.3044583353602179,0.3088382311195586,0.3138783079390537,0.3186902790164352,0.3232566885836932,0.3277458556238029,0.3269803614993732,0.3256496054860164,0.3250486642028944,0.3232769228542062,0.3220994392968157,0.3195705521472393,0.3178833158846483,0.3186742729380045,0.3196013743354814,0.3208600150252209,0.3210900696308252,0.322000711997152,0.3218552501732211,0.322806231088199,0.3242227948081971,0.3250992270733235,0.3253438338184101,0.329548671174713,0.3328998699609883,0.3356823310503187,0.3392468239564428,0.3392175572519084,0.3423105965265542,0.346467494855575,0.3466026726896292,0.3495111320532453,0.3537829197746993,0.3538337042282015,0.3482093663911845,0.3583902809415338,0.0,2.568335685218949,56.9821348976888,183.721052775884,249.06134317796736,fqhc5_80Compliance_baseline,72 -100000,95685,44436,420.8601139154517,5982,61.2844228457961,4637,47.90719548518577,1873,19.198411454250927,77.34181859432726,79.72360837910968,63.3271521787835,65.08519660665182,77.10576790202957,79.48865726052107,63.23840002681939,64.99936896742729,0.2360506922976952,234.9511185886115,0.0887521519641083,85.82763922453296,161.76314,113.37752069941996,169057.76244970478,118490.1770758235,350.97146,227.62153478858764,366233.91336155095,237322.5070995041,360.72408,174.8128051228328,373250.86481684697,179937.3955976062,3363.50128,1540.039040457013,3479671.4950096672,1574070.482207616,1130.70138,497.46122657503287,1170196.906516173,508451.8767349068,1843.61084,781.8204581967022,1892908.1256205256,789139.8851000044,0.37896,100000,0,735287,7684.443747713853,0,0.0,0,0.0,29826,311.12504572294506,0,0.0,32996,341.1924544076919,1600642,0,57397,0,0,6399,0,0,59,0.6166065736531327,0,0.0,0,0.0,0,0.0,0.05982,0.1578530715642812,0.3131059846205282,0.01873,0.3302474062250599,0.6697525937749401,24.42806138821881,4.427927396086199,0.3157213715764503,0.2240672848824671,0.2257925382790597,0.2344188052620228,11.334341320480846,5.814866280359515,20.05006471130676,12244.371855879888,52.64720776243141,12.575811693152431,16.563673129730645,11.65816901977854,11.849553919769791,0.5458270433469916,0.8026948989412896,0.6823770491803278,0.5616045845272206,0.1011959521619135,0.7041925465838509,0.9069767441860463,0.8341463414634146,0.7431906614785992,0.0982905982905982,0.4849208719020603,0.74079754601227,0.6233396584440227,0.5025316455696203,0.1019929660023446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0042977183575417,0.0062193723811166,0.0085515224147386,0.0106357017936307,0.0128899568298444,0.0152993099511767,0.0174351540887886,0.019838714623003,0.0220905117259875,0.0242186859158395,0.0263433571604633,0.0281784325425402,0.0305216083094614,0.0326882386334313,0.0347538270583367,0.0365899152349174,0.0388712390207437,0.0407590038075026,0.0427313004951785,0.0575281790926279,0.071756908159953,0.0853616297742372,0.0981458877009849,0.1101640381876681,0.1264345931308772,0.1390887290167865,0.1506387055567383,0.1615877764718452,0.1716826118666609,0.1846821618594231,0.196369654814318,0.2071377292405421,0.2172948032494724,0.227471258044997,0.238256111474175,0.2468155888230237,0.2560891918953277,0.2646985380913466,0.2716985454128965,0.2783985748658152,0.285102749739763,0.2917021578648495,0.2974401380599697,0.3036115599071903,0.3074457593688363,0.3122402483601221,0.3174360736696068,0.3217150187231947,0.3266154577130187,0.3254366944552935,0.325090819022457,0.3242275597654488,0.3230104481278631,0.322657353050457,0.3210179365322704,0.3187933272134469,0.3198693539915966,0.3205112869324493,0.3213661182684415,0.3226566444157738,0.3223476476160404,0.3238647060053967,0.3239940121098376,0.3248054194292303,0.3265604215029082,0.3268080013677552,0.3299691882034836,0.3335913585025157,0.3359421556553176,0.3400966624110888,0.3410079575596817,0.3423817863397548,0.3398286450830237,0.3444993934869833,0.3466555977229602,0.3512605042016806,0.3507568113017154,0.3511640798226164,0.3455034588777863,0.0,2.103256814174808,56.51206759291101,169.29096557778877,251.9069148433049,fqhc5_80Compliance_baseline,73 -100000,95675,44779,424.0919780506924,6200,63.5693754899399,4884,50.4206950614058,1943,19.92160961588712,77.38307130315455,79.75958706466419,63.34642469116329,65.09735706969023,77.14189021606157,79.52003153220642,63.255745083585104,65.00983156211171,0.2411810870929827,239.5555324577714,0.0906796075781883,87.52550757851907,162.14286,113.60852112415095,169472.54768748366,118744.2081255824,354.71811,228.8412546813321,370140.5487326888,238573.4148746612,364.22943,175.84401955715913,376477.93049385946,180623.37152961665,3465.43542,1580.8820147550064,3580067.603867259,1610322.7329553252,1173.68205,522.68794549851,1210634.6903579826,530212.3182634021,1899.39198,802.6096826316779,1948830.7290305723,808764.6222795066,0.38268,100000,0,737013,7703.2976221583485,0,0.0,0,0.0,30228,315.30702900444214,0,0.0,33345,344.3428272798537,1598829,0,57468,0,0,6379,0,0,63,0.6584792265482101,0,0.0,3,0.0313561536451528,0,0.0,0.062,0.1620152607923068,0.3133870967741936,0.01943,0.3351766513056836,0.6648233486943165,24.44198027127289,4.387822695682907,0.3243243243243243,0.2338247338247338,0.2237919737919738,0.218058968058968,11.225655573455368,5.892029386681331,20.683817323361577,12379.451589438386,55.15738994358088,13.542494795035616,17.814088768831926,12.116620258398417,11.684186121314918,0.5577395577395577,0.7924693520140105,0.6799242424242424,0.5599268069533394,0.1220657276995305,0.730829420970266,0.945137157107232,0.8442211055276382,0.7131474103585658,0.175438596491228,0.4963948973932335,0.7098515519568152,0.6247892074198989,0.5142517814726841,0.1075268817204301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021258718605428,0.0045184689887139,0.0068457723552499,0.0090072708071002,0.0112348126683951,0.0134368924132455,0.0157189749026483,0.0175667813287876,0.0197683808122003,0.0221016532732763,0.0242779663102207,0.0263903721350529,0.0286014007590015,0.0305508631700383,0.0327232962634369,0.0348394964757436,0.0369100401939253,0.0390247952755088,0.0411713932133237,0.0429911412193851,0.0574795499420189,0.0721232869541547,0.0850958915607033,0.097570977917981,0.109707622070158,0.1246788670747565,0.1372280880295127,0.1490454666312151,0.1604934319343513,0.1713223397301959,0.184914998924037,0.1976815856915773,0.2091137369147652,0.2203274961194551,0.2303588322002948,0.2407282236528638,0.2505165577707042,0.2597377728716574,0.2684755079557973,0.2760011920317264,0.2832019265279659,0.2900638210668071,0.2970064705742931,0.3020034330848548,0.3077269299077926,0.3129543014401895,0.3182490165125661,0.3234735863237411,0.3278660892565412,0.331316067653277,0.3309316669809033,0.329719466725369,0.3283250017601915,0.3272543352601156,0.3265554680885826,0.3246383030897499,0.3232265627475208,0.3229503620630203,0.3239308929182347,0.324305009647681,0.3246651347867511,0.3251550654720882,0.3252745417345192,0.3260501581362199,0.3280248684839789,0.3293434892999637,0.3293093211953295,0.3311171458001685,0.3343342993819617,0.3367981730844948,0.341092292364822,0.3435660218671152,0.3488966463034534,0.3508349631412667,0.3507635354002776,0.3551096593560429,0.3583208395802099,0.3586828694629557,0.3636120758749666,0.3708902844477281,0.0,2.471618713923706,55.68284910100056,181.88709135038656,271.9834952094269,fqhc5_80Compliance_baseline,74 -100000,95698,44399,422.4330707015821,5955,61.15070325398651,4736,48.956091036385295,1885,19.40479424857364,77.3960056150407,79.78190774814222,63.35197710932333,65.11369839382357,77.16307164301733,79.5471048429132,63.26666057726949,65.02968943320586,0.2329339720233747,234.80290522901728,0.0853165320538451,84.0089606177088,162.99426,114.12870134708214,170321.49052226797,119259.23357550015,353.37152,227.77264205233135,368725.8981378921,237480.8585888225,358.55453,172.88957185706212,370767.70674413256,177696.13330993478,3379.3901,1534.4422337922197,3497838.56506928,1569953.064632718,1131.07762,497.5892721751797,1169974.252335472,508014.72804636,1852.43056,774.5001795416747,1908811.051432632,786394.7460946214,0.3802,100000,0,740883,7741.885932830362,0,0.0,0,0.0,30089,313.86235866998265,0,0.0,32860,339.50552780622377,1600938,0,57387,0,0,6497,0,0,55,0.5747246546427303,0,0.0,1,0.0104495391753223,0,0.0,0.05955,0.1566280904786954,0.3165407220822838,0.01885,0.343795036028823,0.6562049639711769,24.393527383930387,4.342758596809966,0.3190456081081081,0.234375,0.2236064189189189,0.2229729729729729,11.075675047498656,5.706249007009394,20.113102422325493,12239.200129363984,53.47497308044299,13.337247601099811,16.879147837085313,11.672993355487082,11.5855842867708,0.5574324324324325,0.8144144144144144,0.6776968894771674,0.5486307837582625,0.1240530303030303,0.7400156617071261,0.9530516431924884,0.8590078328981723,0.710204081632653,0.1614349775784753,0.4900260190806591,0.7280701754385965,0.6161347517730497,0.5,0.1140456182472989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210622283902,0.0048569284743769,0.0068005115608696,0.0090932181864363,0.0111183447602384,0.0132773999103979,0.0155184192012398,0.0174274367272764,0.019536281665951,0.0216790517717865,0.0236928439614517,0.0257708142961282,0.0276240821111956,0.0294799295448224,0.0312625746742192,0.0330466601889561,0.0349474338391423,0.0368782695341692,0.0386035338040912,0.0405519483903242,0.0554940463756005,0.0692256977510805,0.082311605223137,0.0951459781111683,0.10811893293422,0.1243007750954329,0.136831832309667,0.1491479238293931,0.160467848750267,0.1710063486616335,0.1836409450175521,0.1961193610140711,0.2074391211274951,0.2179781420765027,0.227295214432559,0.2369693950965742,0.2468441946563183,0.2561161907757284,0.2643347454747287,0.2723417873429874,0.279018759018759,0.2853708350353037,0.2920622549714232,0.2980456415654004,0.3046261274367181,0.3110780614314335,0.3164460634488953,0.3209327094982692,0.324223538368237,0.3284059076502229,0.327644959617913,0.326268456191821,0.3253807677176418,0.3240866230283457,0.3235551339252627,0.3221789288715715,0.3200164354119915,0.3205065198872944,0.3206736669848629,0.3219131735460664,0.3233793657615906,0.3239938568165708,0.3254587155963303,0.3258844195406132,0.3273271834191925,0.3276220145379024,0.3288653366583541,0.3328630549285177,0.3353752450294035,0.3375371802498513,0.3414879050661798,0.3421276595744681,0.3450517546074224,0.3470274390243902,0.3492393461211376,0.3521884716574982,0.3503683241252302,0.3538994094889024,0.3549014162732574,0.3554778554778555,0.0,2.060867256282904,56.161656702983606,172.71087121556835,260.68986950509355,fqhc5_80Compliance_baseline,75 -100000,95816,44477,421.17182933956747,6218,63.75761876930784,4892,50.40911747516073,1974,20.101026968356017,77.38566316619061,79.7078834843926,63.36611244363343,65.08467476490036,77.1395494164354,79.46639859355253,63.273742695921456,64.99753611973608,0.2461137497552101,241.48489084007,0.0923697477119702,87.1386451642735,163.14078,114.24960645880638,170264.42347833348,119238.33772099271,356.00219,230.1894357129387,370878.224931118,239572.44430093255,364.15691,176.08352026659858,376926.2544877682,181200.22416237957,3512.94139,1610.6692520219904,3619700.13358938,1634725.2288277943,1155.7664,517.3750604703054,1184907.959004759,518994.8897458573,1938.83072,823.1634074025753,1976010.8750104369,817676.0350990988,0.37939,100000,0,741549,7739.291976287885,0,0.0,0,0.0,30375,316.31460298906234,0,0.0,33411,345.5477164565417,1596833,0,57346,0,0,6407,0,0,54,0.5635801953744677,0,0.0,1,0.0104366702847123,0,0.0,0.06218,0.163894673027755,0.3174654229655838,0.01974,0.3250997238416692,0.6749002761583308,24.2905129375186,4.401342675040096,0.330539656582175,0.2287408013082583,0.2158626328699918,0.2248569092395748,11.23183940954936,5.699135821019215,21.18528095285142,12277.325431959873,55.75129083397874,13.57855133294956,18.21072348401655,11.771091521363545,12.190924495649092,0.5609157808667212,0.7855227882037533,0.7031539888682746,0.584280303030303,0.1009090909090909,0.7161961367013373,0.9168591224018476,0.8671497584541062,0.7068273092369478,0.128,0.5019740552735477,0.7026239067055393,0.6467165419783873,0.5464684014869888,0.0929411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047139685532678,0.0067694431194243,0.0091236055513787,0.0114426949835225,0.0136340494857957,0.0157987544465849,0.0178589652005306,0.0202360876897133,0.0226058658589001,0.024687941954129,0.0267174397241011,0.0287669965775598,0.03093186754367,0.0328634624704826,0.0349019769867994,0.0367733791362291,0.0385161537743965,0.0401848294481075,0.0420612291618972,0.0575815738963531,0.0715667109210842,0.0850515193761071,0.097601210427327,0.1094701358896028,0.1248877763342733,0.1369954444326729,0.1482477492320284,0.1591556356732195,0.1695942761664024,0.1819521218247908,0.1948276420832028,0.2053283538339612,0.2163262632768238,0.2263301260928781,0.2367399741267787,0.2463320893443992,0.2558358983576355,0.2645306020711064,0.272608770224687,0.2795974720691368,0.286109554497058,0.2928957747809452,0.2989275338059995,0.304855145339327,0.3096610107016919,0.3139939834983086,0.3197447218838814,0.3248786031614836,0.3294803775721113,0.3281165967516403,0.3275210574769501,0.3260973550928531,0.324783732651676,0.3250712843055721,0.3234632167189772,0.3213340727243919,0.3216703917959506,0.3220559531554977,0.3232800257593646,0.3245163467306539,0.3265685944522541,0.3269481749673725,0.3276829815895824,0.3283369194690907,0.3305271439811172,0.3318821069515653,0.3348794648491733,0.3364499170871114,0.3404068607897886,0.3444820644216691,0.3442422307364836,0.3489208633093525,0.3476208602969166,0.3481467473524962,0.3477018337699452,0.3500308261405672,0.3503145930586563,0.3560165975103734,0.3547024952015355,0.0,2.471148261150636,58.87558300868783,185.92235715611997,260.5398483264893,fqhc5_80Compliance_baseline,76 -100000,95753,44330,419.67353503284494,6115,62.52545612147922,4820,49.60680083130555,1880,19.101229204306915,77.37657405990127,79.72099624545778,63.3458979718325,65.07894086529562,77.1373147535597,79.48934072075518,63.25506448735719,64.99505995023083,0.239259306341566,231.6555247026031,0.0908334844753113,83.88091506479611,164.35012,115.06741241255688,171639.6561987614,120171.07809944011,354.2047,228.2646862920653,369201.7378045597,237675.8182950564,360.20681,174.26635128850936,371943.09316679375,178703.81635925022,3483.49895,1580.6644871137696,3584797.625139682,1597565.4100798622,1138.09855,503.3026585900016,1170401.1884745124,507455.7921477709,1845.58278,787.0028166444189,1877361.837227032,777453.0576806425,0.38004,100000,0,747046,7801.802554489154,0,0.0,0,0.0,30260,315.2799390097438,0,0.0,32943,339.92668637013986,1590776,0,57048,0,0,6598,0,0,57,0.5743945359414326,0,0.0,1,0.0104435370171169,0,0.0,0.06115,0.1609041153562783,0.3074407195421095,0.0188,0.344892221180881,0.6551077788191191,24.29264715952828,4.370298991693793,0.3132780082987552,0.2379668049792531,0.2265560165975103,0.2221991701244813,11.124818016650485,5.680092647565483,20.151357463665075,12248.693879471444,54.26117388303226,13.746435188358417,16.75254663215872,12.093720626512154,11.66847143600297,0.5506224066390042,0.7768090671316478,0.6701986754966888,0.575091575091575,0.1148459383753501,0.7271293375394322,0.9184652278177458,0.8575197889182058,0.7246963562753036,0.1555555555555555,0.4876126126126126,0.6958904109589041,0.6074270557029178,0.5313609467455621,0.1040189125295508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0046224492899066,0.0070009537531199,0.009285220854159,0.0114921487267106,0.0133094367674463,0.0155397620091566,0.0175909666353575,0.0198325478690234,0.0219569868258079,0.0240450152203101,0.0261653270922509,0.0284360189573459,0.0304222451081359,0.0328164814872128,0.0348545144451909,0.0369051070703723,0.0386953544826441,0.040370959525072,0.0422338641642277,0.0569299179557838,0.0707046407764959,0.0836906946264744,0.0961245361951711,0.1085613694818063,0.1241476281597225,0.1362556729015566,0.1471671207219479,0.1583247885157651,0.1691886964448496,0.1826387617272913,0.1947345070498739,0.2061447408503416,0.2168727431885326,0.2263544384626394,0.2356279791597383,0.2451338403296593,0.2543052022600905,0.2637845322679499,0.2712978550405973,0.2796024850469127,0.2864175875577384,0.2925733207190161,0.298019114230281,0.3040494582908225,0.3098914369508693,0.3152703817595439,0.3195152007927534,0.3239021362437283,0.32703158782893,0.3264337844921439,0.3260239341604495,0.3255902245595287,0.3243992206105217,0.3235573357068684,0.3224528503908102,0.3206192577130477,0.3213524764808076,0.3223714524634367,0.3229743936991037,0.3243501385871601,0.3243013893274392,0.3260865016425687,0.3280459821329115,0.3285289462324332,0.3301508844953174,0.3303977272727272,0.3355866428817325,0.3388632227355453,0.3403201521515175,0.3438551805694533,0.3469355266648978,0.3512715855572998,0.3515749525616698,0.355840269335079,0.358628841607565,0.3584300549786194,0.3629614767255216,0.3601092896174863,0.3623574144486692,0.0,2.8737958681213165,54.85884556816203,176.7598255922845,268.1479587392985,fqhc5_80Compliance_baseline,77 -100000,95755,44887,424.17628322280825,6209,63.59981202026004,4864,50.2532504830035,1951,20.01984230588481,77.3313489084019,79.69827094318235,63.31030609897547,65.0632921353484,77.091799203683,79.45933356133179,63.22145902747536,64.9770664779741,0.239549704718911,238.9373818505618,0.0888470715001119,86.22565737429966,161.0521,112.870548051278,168191.84376794944,117874.31262208552,352.25379,227.585085557385,367330.4579395332,237134.95437040887,364.21827,176.72671772457429,376783.55177275336,181779.88026659496,3472.24467,1583.3208343036822,3590970.602057334,1618307.2051628449,1158.76437,509.9631757963056,1198431.0166570935,520867.2401402597,1906.0622,792.4793166372089,1958667.035663934,800668.711505349,0.38249,100000,0,732055,7645.083807634066,0,0.0,0,0.0,30052,313.268236645606,0,0.0,33279,344.0760273614955,1603543,0,57476,0,0,6367,0,0,51,0.5221659443371104,0,0.0,0,0.0,0,0.0,0.06209,0.1623310413344139,0.3142212916733773,0.01951,0.3318482101705331,0.6681517898294669,24.54981749613299,4.370612953660224,0.3252467105263157,0.2366365131578947,0.21875,0.2193667763157894,11.454673268539658,6.03596878887872,20.61534443143989,12420.365521865398,55.0797259026813,13.744250826556964,17.855210978090113,11.842668261543585,11.63759583649064,0.5608552631578947,0.7680278019113814,0.6852085967130215,0.5864661654135338,0.1274601686972821,0.7415902140672783,0.9135514018691588,0.8734491315136477,0.7111111111111111,0.1690821256038647,0.4943757030371203,0.681881051175657,0.6208651399491094,0.5440806045340051,0.1174418604651162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0043501627508441,0.0068409033240294,0.0090022353180247,0.0116177338297829,0.0137792669389251,0.0159884165553527,0.0183178982407057,0.0205586637891356,0.0228096769567978,0.0247579586478503,0.0269998150697597,0.0290107130728303,0.0311762462768862,0.0332985827974525,0.0354675931670596,0.0375566922774245,0.039742246111382,0.0419737430225668,0.0436806748945477,0.0580793319415448,0.0718134921050153,0.0849985838814236,0.0980251950619361,0.1103695503189414,0.1262943024251975,0.1394418505942275,0.1507514672517921,0.1616809345175115,0.1722483930851691,0.1855923435075012,0.1979834517414659,0.2095980490354047,0.2203100367840252,0.2302102029355737,0.2407251358243707,0.2508963375813964,0.2598772729831672,0.2686016549939271,0.2776077662781235,0.2849187236604455,0.2918750512421087,0.2977217770613057,0.3035296095692171,0.3087902460392787,0.314195482414478,0.319867765283378,0.3245689984466118,0.3291841709454904,0.3327656540853103,0.3307103589522475,0.3296378316666896,0.3282651236783939,0.3264631116760067,0.3254220191651585,0.3242193473407346,0.3222622319087779,0.3227862620436521,0.3235856464884427,0.323255192084856,0.324571086456248,0.3256667917003928,0.3273986359261894,0.3283168847407672,0.3278322283078697,0.3300591438472161,0.3307272417126286,0.3322536008553997,0.335165415917979,0.3392615041071856,0.3408178167214312,0.339986198842826,0.34375,0.3457446808510638,0.3517138599105812,0.3534623455350897,0.3558410516880789,0.3529990167158309,0.3479547900968783,0.342728297632469,0.0,2.145621630988709,57.370754339866245,178.10423345967448,270.2325321072707,fqhc5_80Compliance_baseline,78 -100000,95491,44271,419.94533516247606,6081,62.4247311264936,4837,50.07801782366925,1844,19.00702684022578,77.22623088476638,79.71443090067575,63.24095407219974,65.07664918581142,76.9865275693947,79.47342969026475,63.15070695990957,64.98800034568224,0.2397033153716847,241.00121041099956,0.0902471122901715,88.6488401291814,162.53248,113.8373480855622,170207.11899550745,119212.64630757055,355.8726,229.91041516335628,372105.318825858,240195.31177111596,361.97759,175.12851323347877,374803.9291660994,180177.04300542336,3445.34076,1588.2923585044248,3571473.3116209903,1626736.7380218278,1149.99707,515.7367917726602,1190681.2160308303,526486.174055273,1799.26654,771.0538459720727,1856446.7227277963,783475.0920724657,0.37867,100000,0,738784,7736.68722706852,0,0.0,0,0.0,30396,317.7262778691186,0,0.0,33137,342.9956749850772,1589184,0,57093,0,0,6443,0,0,72,0.722581185661476,0,0.0,0,0.0,0,0.0,0.06081,0.1605883751023318,0.3032395987502055,0.01844,0.3422089175988656,0.6577910824011344,24.252055235945495,4.2721431432261205,0.3283026669423196,0.2309282613189993,0.2313417407483977,0.2094273309902832,11.26388297256866,5.848297612898927,19.983309866607986,12275.314306675557,55.297303954730566,13.536352933580352,18.164021939151453,12.4198637438451,11.177065338153657,0.5763903245813521,0.8048343777976723,0.714735516372796,0.5755138516532619,0.1085883514313919,0.7297698589458055,0.9403341288782816,0.8459821428571429,0.6941176470588235,0.1466666666666666,0.5171919770773639,0.7234957020057307,0.6631578947368421,0.5405092592592593,0.0977157360406091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018138521558494,0.0041283333502388,0.0064673990293825,0.0089273004575495,0.0112701580061899,0.0132803343015848,0.0154797497933652,0.0175239613348864,0.0195300111512373,0.0218540603676154,0.0239776646411561,0.0262392169362218,0.0282551614065798,0.0301376927440565,0.0323813853529509,0.0343945747269244,0.036462277362268,0.0386374503648572,0.0407459498880033,0.0428217899320239,0.0576641266119577,0.0711123234781878,0.0842131830227569,0.0966031849751799,0.1085736629080495,0.1239135964726332,0.1362563524633736,0.1477664330143285,0.1595069027193179,0.1698679020174769,0.1837959813861086,0.1966633401310366,0.2076000436157452,0.2175552851144075,0.2273103448275862,0.2375030561667889,0.2471551810949615,0.2562503524104877,0.2655455300556396,0.2735341056523186,0.2808348705811376,0.2874285915377306,0.2937769284637571,0.2996152921375331,0.3053168013849774,0.3102637699806997,0.3150874369837698,0.3193556635131679,0.3236934839993238,0.328666233955466,0.3282950504954912,0.3270469752362557,0.3265556826365061,0.3261221891008016,0.3250446960667461,0.3218625658672975,0.3196377502383222,0.3206875525305295,0.32175643907545,0.3222851611515434,0.3226012472762792,0.3242338398145764,0.3250870787695665,0.3252065283094902,0.3266458433445459,0.328513742347271,0.3312453732703149,0.3354285175524057,0.3378758078111829,0.3400055601890464,0.3419119324663472,0.3416043688033508,0.3442335400613919,0.3471604193378083,0.347568866703642,0.3497611557730397,0.350471554609066,0.3494295028524857,0.3532173432753383,0.3568958893584326,0.0,2.1971522155038268,59.22963092746764,181.4976588773433,260.0167551885692,fqhc5_80Compliance_baseline,79 -100000,95708,44452,421.99189200484807,6129,62.75337484849752,4846,50.01671751577716,1926,19.7684624064864,77.36399481233721,79.74855067751805,63.33329461681414,65.09722231474093,77.12446420890377,79.50853051815768,63.244524668981946,65.01019855296248,0.2395306034334368,240.0201593603697,0.0887699478321977,87.02376177845395,163.19974,114.36777826625485,170518.38926735488,119496.57109777116,358.12529,231.4455294273097,373593.6703305888,241232.98932932437,364.32713,176.34346673684396,376433.4224934175,180951.44402711984,3459.84975,1577.276866020523,3580178.260960421,1613181.8928621667,1128.44694,500.76778340114856,1166207.4643707944,510380.2016562338,1890.99532,792.4910578064832,1944066.159568688,802524.3996209644,0.38044,100000,0,741817,7750.835875788858,0,0.0,0,0.0,30566,318.7298867388306,0,0.0,33388,344.7360722196682,1592029,0,57127,0,0,6535,0,0,69,0.689597525807665,0,0.0,1,0.0104484473607221,0,0.0,0.06129,0.1611029334454841,0.3142437591776799,0.01926,0.3351981351981352,0.6648018648018648,24.21303877359704,4.343498354727772,0.3177878662814692,0.2445315724308708,0.2135782088320264,0.2241023524556335,10.980160023856158,5.720371204423696,20.495951871099543,12297.11855538398,55.08928726284554,14.245914662344052,17.508699837088542,11.353455284376574,11.981217479036363,0.5588113908378044,0.7949367088607595,0.7012987012987013,0.5478260869565217,0.1095764272559852,0.7294028722600151,0.9264367816091954,0.8392434988179669,0.708502024291498,0.146788990825688,0.4947487936417826,0.7186666666666667,0.649059982094897,0.4974619289340101,0.1002304147465437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021479012370695,0.0044925816625594,0.0064565905953057,0.0082830253877268,0.0104397728891511,0.0126943374696904,0.0149026888081929,0.0171269251194901,0.0192998066950998,0.0213805179246152,0.023391513013516,0.0256241719643829,0.0278440650072001,0.0298087623129868,0.0316731340819022,0.0335821667114704,0.0356650817821146,0.037377552714594,0.0392910971363234,0.0413927466322161,0.0564437807412358,0.0701023590731166,0.0835955857670359,0.0958790313252505,0.1080462920021923,0.1242255724948723,0.136319294227425,0.1478250694126783,0.1595315369176239,0.1705983858693904,0.1836251520075761,0.1963999826922244,0.2072749021313614,0.2183641553385317,0.2285393678698335,0.2390310330702036,0.2479753697878321,0.2567193720339173,0.2656062084458462,0.273367374977102,0.2804006384307557,0.2880311498795631,0.2945806161457162,0.3005188797948447,0.306068665670808,0.3114857044351959,0.3161824480658354,0.3211621315913221,0.3254172430287125,0.3294477153883642,0.3281191205719507,0.3279089248685096,0.3273601214318843,0.326107337054505,0.3252360273302604,0.3233328246604608,0.3207957626584274,0.3225495639677303,0.32341286712811,0.3244191222291462,0.3258889325327797,0.3270194546387278,0.3286293694597759,0.3300306412292277,0.3325088848333493,0.3342643834186071,0.3348648725778373,0.3395509499136442,0.3406570265337638,0.3424869234427009,0.3421172194457065,0.3454151013281126,0.3517584772469431,0.3557354513517641,0.3606092138870495,0.3627462686567164,0.3710526315789473,0.3680755026672138,0.3733965421081985,0.3689964857477548,0.0,2.415029039623074,58.00467533532854,181.47392812643935,261.49991263955064,fqhc5_80Compliance_baseline,80 -100000,95671,44647,423.8588495991471,6033,61.88918271994648,4682,48.37411545818482,1904,19.58796291457181,77.31725194233033,79.72488991352856,63.30264576078415,65.08465731058136,77.08829653486335,79.49708683277036,63.21880492556048,65.00378022789816,0.2289554074669837,227.8030807581928,0.0838408352236754,80.8770826832017,163.6316,114.59943237145268,171035.50710246575,119784.7180514831,353.47767,228.2853300199964,368902.10199538,238046.64552926543,358.17498,173.06335230578088,371014.016786696,178360.95441684933,3355.84774,1515.696029028042,3471947.6852964847,1548667.8281816454,1126.90981,491.4836805877844,1164780.0482904955,500602.1150671635,1871.69598,769.3943432812785,1927058.042667057,777133.2371796913,0.38181,100000,0,743780,7774.341231930261,0,0.0,0,0.0,30091,313.93003104389,0,0.0,32822,339.643152052346,1592507,0,57135,0,0,6465,0,0,50,0.5226244107409769,0,0.0,0,0.0,0,0.0,0.06033,0.1580105287970456,0.3155975468257915,0.01904,0.3323845667299178,0.6676154332700822,24.74821971362094,4.3798976933249385,0.3184536522853481,0.2304570696283639,0.2227680478428022,0.2283212302434857,11.195878269365489,5.742658559548822,20.07137863637277,12290.61706299177,53.02536851716506,13.094772684277508,16.83495444327433,11.55907195025705,11.536569439356152,0.5585219991456642,0.7914735866543096,0.7028839704896043,0.5695110258868649,0.1113189897100093,0.7244979919678715,0.927570093457944,0.8525469168900804,0.7033898305084746,0.1009615384615384,0.4983997672388711,0.7019969278033794,0.6529516994633273,0.530359355638166,0.1138211382113821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023098665748123,0.0044212340921766,0.0064747252301166,0.0085154813076039,0.0108867070254871,0.013272893959458,0.0153836737192173,0.0172544132069303,0.0194593930961101,0.0217402440398741,0.0240792038575972,0.0260075217328757,0.0281943858276632,0.0301458838084437,0.032015863343902,0.0339565248880014,0.0358668159389642,0.0378835868944389,0.0399925092074325,0.0419572400996549,0.0565416801613088,0.0704509994869056,0.0832642264047951,0.0964575420581396,0.1086800573888091,0.124433814502815,0.1370395134842551,0.1487555778016805,0.1601654341042192,0.171690624329543,0.1843494183541577,0.1980689923907043,0.2100480968029772,0.220270344223718,0.2298703730217293,0.2400598404255319,0.2494281729428173,0.2585753165838188,0.266695399691498,0.2750592356031729,0.2812988004488195,0.2887155984754601,0.2950879808773238,0.3006015145705521,0.305117895018161,0.3097471678110477,0.3145120913232864,0.3193245253748045,0.3233745228698971,0.3280092775625313,0.3267674187215962,0.3259884056378272,0.3250924116993914,0.3245816503173687,0.3238764712875995,0.3220710367442003,0.3204341222630046,0.3208643008318157,0.3215942424449144,0.3224478888295029,0.3223694057775782,0.3230732804545992,0.3231607629427793,0.3239858669886846,0.3250741160307551,0.3256760989871567,0.3273224510725579,0.3294531078409839,0.3341754385964912,0.3380248186179281,0.3425300985041955,0.3426186805592472,0.3451388888888889,0.3490400061194829,0.3531577456811102,0.3574982231698649,0.3632017273288094,0.3687002652519894,0.3722192078133478,0.3762264150943396,0.0,2.140300582580553,54.658113977687925,174.7796862513277,257.67464730105405,fqhc5_80Compliance_baseline,81 -100000,95865,44683,422.2917644604392,6076,62.17076096594169,4732,48.860376571219945,1929,19.82996922755959,77.4717338221379,79.76013614859225,63.40399372213196,65.09173326015136,77.23305398186352,79.51772335833297,63.31611798727626,65.00374202428381,0.2386798402743863,242.4127902592801,0.0878757348557002,87.99123586754831,163.07434,114.22003164429562,170108.31899024668,119146.74974630534,354.06596,229.23514905533992,368829.7814635164,238614.57159061165,368.24908,178.52397938769647,380623.6478381057,183514.37801058672,3423.05507,1561.7102562069126,3538295.47801596,1596664.2113460707,1126.69163,501.5059196977624,1160742.408595421,508590.20466047234,1883.20788,792.2051264110696,1937870.067282116,804933.6535295177,0.38089,100000,0,741247,7732.196317738487,0,0.0,0,0.0,30112,313.59724612736665,0,0.0,33654,347.56167527251864,1597867,0,57275,0,0,6502,0,0,60,0.6258801439524332,0,0.0,0,0.0,0,0.0,0.06076,0.1595211215836593,0.3174786043449638,0.01929,0.3309205350118017,0.6690794649881983,24.56767528271957,4.458561078922759,0.3229078613693998,0.220625528317836,0.2345731191885038,0.2218934911242603,11.482843408153448,6.02562371365581,20.54387039866837,12289.63777801506,53.4591225824494,12.522285257769893,17.1061960932844,12.429105440259116,11.401535791136013,0.5572696534234995,0.803639846743295,0.6969895287958116,0.554954954954955,0.1114285714285714,0.7085308056872038,0.904639175257732,0.8857142857142857,0.6968503937007874,0.1171548117154811,0.5020196191575302,0.7439024390243902,0.6334208223972003,0.5128504672897196,0.1097410604192355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026723352566049,0.0050348998591848,0.0072096371859092,0.0095209094600081,0.0117368506625477,0.014193128287566,0.016471762692527,0.0185844408857699,0.020821845066683,0.0228769532847909,0.0251641249910384,0.0270855126863987,0.0290615850839796,0.0311037030177691,0.0331295805716759,0.0350467772247578,0.0368025817662756,0.0387903785766843,0.0409602026725364,0.0429452959968365,0.0573245751225106,0.0707767568754115,0.0841358496892978,0.0973933873357077,0.1099119987353111,0.1253065798376184,0.1378798481667621,0.1498186305275139,0.1604983080158416,0.1713587603013513,0.1840346894199421,0.1962026000410646,0.2067314478041365,0.2175014191520021,0.2275238022028705,0.2383252462060504,0.2480676274697614,0.2569584011676865,0.2651498850522644,0.2725640849740459,0.2803561324295299,0.2872911416036591,0.2939905038622351,0.2991866028708134,0.3043351654351545,0.3086307288909679,0.3141011221913973,0.3186535408066053,0.322969723608346,0.3270091636823257,0.3268463140917949,0.3260335961604388,0.3251800783498785,0.324454682888201,0.323559899304013,0.3212902241878908,0.3199949567382705,0.3204013596548568,0.3214953271028037,0.3222874993344101,0.3229914418361829,0.3238977020306265,0.3253986451276706,0.3259811006114508,0.3270751224172937,0.3297147446692748,0.3291389792167397,0.3311402824982071,0.3348585690515807,0.3374926427310182,0.3401987678194001,0.3433284148397976,0.3449097291875627,0.3457943925233644,0.3441540058507125,0.343013568198048,0.3500610128126906,0.3553187210939071,0.360196025047645,0.3674630261660978,0.0,1.9905536177550056,55.60865424357382,172.5417829428331,263.5064038727988,fqhc5_80Compliance_baseline,82 -100000,95746,44446,421.4588599001525,6083,62.35247425479916,4797,49.589538988573935,1919,19.71883942932342,77.34438518034166,79.69665712716632,63.33412346583962,65.07209668245055,77.10476411188436,79.45628115000453,63.24686380334784,64.98673681310252,0.2396210684572963,240.37597716178996,0.0872596624917747,85.35986934802509,162.58286,113.96027187871412,169806.42533369543,119023.5329713138,355.40974,229.69558571644248,370688.01829841454,239388.3772861973,364.50587,176.31790617348275,376650.3248177469,181093.4253711754,3433.69141,1559.6831061233554,3552861.989012596,1595591.3940251856,1128.30938,497.79561875781536,1165670.283876089,507142.7618467768,1881.8133,781.0064197265347,1935910.4505671256,791715.5542529667,0.37995,100000,0,739013,7718.473878804337,0,0.0,0,0.0,30243,315.3447663609968,0,0.0,33352,344.5888078875358,1595195,0,57263,0,0,6412,0,0,75,0.7415453387086667,0,0.0,1,0.0104443005451924,0,0.0,0.06083,0.1601000131596262,0.3154693407857964,0.01919,0.3233270794246404,0.6766729205753595,24.799551704877224,4.281691593711503,0.3297894517406712,0.2261830310610798,0.2199291223681467,0.2240983948301021,11.21782471133523,5.870289413297532,20.386788693623394,12257.244863741622,54.35796920632191,13.05262803424178,17.743383415254257,11.74784903361348,11.814108723212398,0.5626433187408797,0.791705069124424,0.695322376738306,0.5924170616113744,0.1069767441860465,0.7558609539207761,0.9191919191919192,0.8864197530864197,0.7907949790794979,0.116751269035533,0.495505617977528,0.7184325108853411,0.6295666949872557,0.5343137254901961,0.1047835990888382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486933268506,0.004460981618728,0.0065443034121693,0.0087037770533093,0.0110112450942513,0.0132949212586401,0.0154909194676015,0.0177049849482116,0.0200263612305994,0.0218765987925918,0.0237724403639642,0.0259776249615108,0.0279671386121307,0.030010298661174,0.0318247934225321,0.0337305073010427,0.0359490316637166,0.0378732097856409,0.0397418442959437,0.0418203028977355,0.0566151983045716,0.0704284309006048,0.0836235106561503,0.0967032967032967,0.1088194356573453,0.1237337957578192,0.1367102569813442,0.1486919238666709,0.1596714938698791,0.1707026853191831,0.1838966630785791,0.1964154371998442,0.2083170254403131,0.2191352627437265,0.2284617837546595,0.2388289335325696,0.2483404179357588,0.2572103221453871,0.2653054279394248,0.2737118063903103,0.2800319230146429,0.2871998222035068,0.2932658179925228,0.2986558269482116,0.3038117681356591,0.3092756804755621,0.3146196925467006,0.3188605208174081,0.323326682387085,0.3281361392020701,0.3279257932928553,0.3273047353147478,0.3266809385651108,0.3255931566627171,0.3237860253570951,0.3224362119725221,0.32011987251653,0.3193764578337001,0.319536338923937,0.3193496515990709,0.3194743846889235,0.3209661797552924,0.3218725759449883,0.3234035881470199,0.3234904182234542,0.3239653462762903,0.3250720132333228,0.3299209374114089,0.3342467678471051,0.3377280331394885,0.3401422578880175,0.343455330030366,0.3482621585819718,0.3517648841084684,0.352316511606052,0.3553425630102946,0.3563076923076923,0.357630979498861,0.360078277886497,0.3649921507064364,0.0,2.0332759358652104,54.27653948084645,186.19145919396405,262.8591716168961,fqhc5_80Compliance_baseline,83 -100000,95676,44648,423.36636146996113,6107,62.59668046323007,4788,49.52130105773653,1883,19.398804297838534,77.28108161739658,79.66852570239533,63.29287913429015,65.05589012856751,77.03906376367496,79.42648802878956,63.20169722250421,64.96725257171344,0.2420178537216202,242.0376736057648,0.0911819117859451,88.63755685406716,161.95146,113.54021806736355,169270.72620092813,118671.57705941256,352.67663,228.0741833931254,368017.44429114927,237783.69015544705,363.4832,176.13904912906858,376682.2191563193,181700.1070842139,3426.08985,1568.6075583877655,3542741.7952255527,1601312.082850207,1147.87035,510.0678600165432,1186537.1566537062,519909.6952386629,1850.9838,786.2987837134328,1906266.2527697645,795345.1558353247,0.3804,100000,0,736143,7694.123918224006,0,0.0,0,0.0,30010,313.09837367782933,0,0.0,33191,343.6598520005017,1595172,0,57240,0,0,6507,0,0,64,0.6584723441615452,0,0.0,0,0.0,0,0.0,0.06107,0.1605415352260778,0.3083346978876699,0.01883,0.3277743142144638,0.6722256857855362,24.370741109022763,4.382380320879035,0.3122389306599833,0.2412280701754386,0.2203425229741019,0.2261904761904762,11.088779190574083,5.623249433649332,20.23989545303462,12324.54665025346,54.33072682388672,13.88415380175107,16.824767148305952,11.6386446844539,11.983161189375796,0.5543024227234754,0.793073593073593,0.6929765886287625,0.5535545023696683,0.1089566020313942,0.701095461658842,0.9260143198090692,0.8547486033519553,0.6798418972332015,0.1209677419354838,0.5008547008547009,0.717391304347826,0.6420404573438874,0.513715710723192,0.1053892215568862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022590285164362,0.0043897444215776,0.0064544282858215,0.0085846938464508,0.0106482517340276,0.0130137265284509,0.0153047698676509,0.0175705476375219,0.0196882187579862,0.0217504785105272,0.0242281941126411,0.026417922707298,0.0284039489921842,0.0305493735575337,0.0323559463727281,0.0344307043302039,0.0363702284145646,0.0385186261586207,0.0405076458961822,0.0422047802203529,0.0574646592345707,0.0717606651448197,0.084449529727914,0.0973305133789997,0.1103315115322121,0.1262920682614077,0.139140127388535,0.1509793688157039,0.1621295068645481,0.1730110494271264,0.1857256881525584,0.1979256979365354,0.2093489294038206,0.2198276334088943,0.229651258883808,0.2397790545486812,0.249424336589837,0.257812676024604,0.2664431437176791,0.2743883555280272,0.2813673232908459,0.2884029437959968,0.2948809184932157,0.3013369529964324,0.3070501040538402,0.3124182361217387,0.3171141360206563,0.3208278605950088,0.3249974044850498,0.3283050825030103,0.3273640709829025,0.326147263818922,0.3253939068201748,0.3245351973779621,0.3236294726789818,0.3221523947081329,0.3204977619758103,0.3210356413465973,0.3223263704439913,0.3224248063125123,0.322965607968427,0.3239168007628583,0.324089098687122,0.3244744238336144,0.3268365817091454,0.3277381232514968,0.3282899064725567,0.3323125493291239,0.33396577773093,0.3362431553051345,0.338925259138025,0.3435102386369649,0.3459194571841427,0.3465428743961353,0.349197461739455,0.3555581368335463,0.3515068908072088,0.3476180984652182,0.3419147224456959,0.3400686237133054,0.0,1.98246246859646,56.38086916715692,182.43469708792813,258.6164527369328,fqhc5_80Compliance_baseline,84 -100000,95734,44495,420.1015313263836,5985,61.38884826707335,4684,48.425846616667016,1859,19.073683330896024,77.3612597271838,79.72655187669484,63.34108899169471,65.08895143974064,77.12204473575923,79.48817004444615,63.252501510659904,65.00328919292262,0.2392149914245749,238.3818322486917,0.088587481034807,85.6622468180177,163.98074,114.82576619968702,171287.8810036142,119942.51384010597,355.15742,230.3858312278973,370504.867654125,240173.33573014528,359.80499,174.48942445079268,373097.2799632315,180111.67283524422,3353.54525,1542.028470017529,3468358.367977939,1576118.6412533994,1100.74196,489.4898470796749,1139502.7889777925,501012.6883653397,1817.56428,764.4510792221511,1866217.456702948,769320.5804935683,0.38057,100000,0,745367,7785.812772891554,0,0.0,0,0.0,30289,315.88568324733114,0,0.0,32947,341.33118850147287,1590353,0,57080,0,0,6613,0,0,66,0.68941024087576,0,0.0,0,0.0,0,0.0,0.05985,0.1572641038442336,0.310609857978279,0.01859,0.3408981940226945,0.6591018059773054,24.417923163207767,4.356698151247678,0.3334756618274979,0.2284372331340734,0.2209649871904355,0.2171221178479931,11.244311944416076,5.804619819528448,19.78363881494172,12310.257823660342,53.36167079673733,12.866720446457665,17.84435357470513,11.59648044607871,11.054116329495828,0.5604184457728437,0.7859813084112149,0.6939820742637645,0.5671497584541063,0.1111111111111111,0.7229470452801228,0.903061224489796,0.8535469107551488,0.7410358565737052,0.1300448430493273,0.4977817213842058,0.7182890855457227,0.632,0.5114795918367347,0.105793450881612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045725525184524,0.006931054778673,0.0093466489215795,0.0116037831790908,0.0139915683998289,0.0161217955254624,0.0181548986572726,0.0204382099440735,0.0226965601965601,0.0249248972142761,0.0271760899707287,0.0292193767355754,0.0314306023426152,0.0336721531396728,0.0356463485236953,0.0375912597732097,0.0397032117470035,0.0420514100324432,0.0438125800973149,0.0583985047978031,0.0724633130272771,0.0860772240462379,0.0990168760843278,0.111087689713322,0.1262817395716611,0.1388229056203605,0.1506432424955042,0.1612885997799639,0.1714889100907989,0.183530197150948,0.1961770623742454,0.2074409097827741,0.2183575090453964,0.2278558942843636,0.2388477584852207,0.2484809293924832,0.2572276092989808,0.2659570850477777,0.2732506237553506,0.2808056050130645,0.2877106068749562,0.2943172681265667,0.2992411547852731,0.3046704495853339,0.3106082036775106,0.3156652092442223,0.3202221487939404,0.3244033752653103,0.3286147757255936,0.3272751732023946,0.3259053690168709,0.3240904870431332,0.323108030040439,0.3222672786417717,0.3204600094942039,0.3191435529270375,0.3193861490031479,0.3196596934513153,0.3207648128990832,0.3217663252120826,0.3224292588265579,0.3227119212938684,0.3241374681165257,0.325111999614625,0.3257900795311846,0.3258510607839207,0.330013595118404,0.3333215846609333,0.3368546940402631,0.3385471293720644,0.3418264646678673,0.3431317128321085,0.3459028831562974,0.350967380128984,0.3531563421828909,0.3561309977151561,0.3556095585257189,0.3644990231649456,0.3726434015242679,0.0,1.959078595458636,57.35374008503398,175.2615038088299,250.64066430030576,fqhc5_80Compliance_baseline,85 -100000,95650,44764,424.5582854155776,6152,63.14688970203868,4796,49.54521693674856,1892,19.39362258233141,77.2430810454354,79.64794150794116,63.27207635196621,65.0502910517698,77.00877775444049,79.41514992391875,63.184404892731166,64.96547612227182,0.2343032909949158,232.791584022408,0.0876714592350467,84.81492949798053,162.64424,114.03663136544236,170041.0245687402,119222.82421896743,356.50647,230.78861684397344,372100.2509147935,240667.29794905827,367.51828,177.28281945931144,380360.66910611605,182385.049829464,3453.54221,1573.2175280113197,3571276.393099843,1606100.7727034918,1146.45179,504.1686846114361,1182865.2796654468,511952.34242324525,1857.18558,781.0780570308701,1906295.5776267643,786680.9710125378,0.38141,100000,0,739292,7729.137480397281,0,0.0,0,0.0,30304,316.19445896497643,0,0.0,33661,348.0501829587036,1588562,0,56981,0,0,6463,0,0,62,0.648196549921589,0,0.0,1,0.0104547830632514,0,0.0,0.06152,0.1612962428882305,0.3075422626788036,0.01892,0.3250850603154964,0.6749149396845036,24.92021792357502,4.227557354900034,0.3265221017514595,0.2362385321100917,0.2116346955796497,0.225604670558799,11.017313517227493,5.827637214095208,20.281139319230924,12330.361872148254,54.66445504566721,13.575836546206684,17.816194544064178,11.38060515224666,11.891818803149675,0.5692243536280234,0.8014121800529568,0.7151979565772669,0.5694581280788177,0.1146025878003696,0.721875,0.9333333333333332,0.8439024390243902,0.7024793388429752,0.1345291479820627,0.5136518771331058,0.728021978021978,0.6695501730103807,0.5278137128072445,0.109429569266589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021890708610345,0.0044833952082445,0.0067612153944549,0.0090124874262083,0.011239612258806,0.0133611691022964,0.0154473617129747,0.0177156510374121,0.0200323134816753,0.022241792450898,0.0243049502107454,0.0266592727235384,0.0288155986795421,0.0305964767693417,0.0327298625159985,0.0345562081230871,0.0367420083283266,0.0386611312921639,0.0404913463138625,0.0426166275736252,0.0575038140817989,0.0723787577249397,0.0852625279536363,0.0981642878194602,0.1104706404003293,0.1265522607692226,0.1387065247413262,0.1506455017430146,0.1617946029232382,0.1727633981312426,0.1853190616974902,0.1976281585708246,0.2089813967673071,0.2195744308039381,0.2294814569901361,0.2398628784432931,0.248921185019564,0.2585909587836847,0.2672410853329999,0.2745880491244969,0.2817838351528637,0.2886923932775078,0.295153245583897,0.3007812031248125,0.3062347113875062,0.311134710611131,0.3157445954757486,0.3200637755102041,0.3234022104757328,0.3269935808351532,0.3263254483382136,0.3253349137218149,0.3246166445454802,0.3234156587238357,0.3228315946348733,0.3218897299289125,0.3204961250158811,0.3216009223420901,0.3217416615300322,0.322891479949134,0.3247540027468909,0.3259462250287938,0.3267253883831907,0.3262860220845677,0.3277742916445431,0.328630988279099,0.3294269711331323,0.3330172876963433,0.3371071844249286,0.3408281656331266,0.3436105103308637,0.3452317242855613,0.3477985429204941,0.3477394636015326,0.3519047619047619,0.3542857142857142,0.3520820385332505,0.3544821940237413,0.3594825213322323,0.3652373660030628,0.0,2.2758581867687115,56.134494183971015,183.8709145533812,261.0592438025065,fqhc5_80Compliance_baseline,86 -100000,95821,44455,420.1688565137079,6188,63.53513321714447,4871,50.291689713110905,1985,20.350445100760798,77.44904619750217,79.77501923176763,63.38601454967061,65.10662422266584,77.2020494506757,79.52835753248864,63.29525262980391,65.01836031618275,0.2469967468264684,246.66169927898807,0.0907619198667077,88.26390648309257,164.31184,114.96567020874812,171477.67190908047,119979.3888696091,355.80688,230.0536283076453,370804.5313657757,239566.8572730876,366.35967,176.51550291108694,378971.03975120274,181596.3186523696,3503.75815,1591.9323731399036,3620102.169670532,1624896.7586853623,1166.57519,517.9594885709965,1202640.6528840235,525797.2735778545,1945.08688,810.6606514278503,1996353.4089604572,818241.8718541808,0.3811,100000,0,746872,7794.43963223093,0,0.0,0,0.0,30259,315.23361267363106,0,0.0,33610,347.3351353043696,1593895,0,57213,0,0,6581,0,0,76,0.7931455526450361,0,0.0,0,0.0,0,0.0,0.06188,0.1623720808186827,0.3207821590174531,0.01985,0.3327146171693735,0.6672853828306264,24.62707102414073,4.295960813242003,0.3235475261753233,0.2278792855676452,0.2245945391090125,0.2239786491480188,11.163338409893642,5.88368802556512,21.077152323980258,12281.278187912752,55.12976843295549,13.24253465983192,17.81454265288609,12.21294727318162,11.859743847055851,0.5682611373434613,0.7810810810810811,0.7049492385786802,0.6023765996343693,0.1200733272227314,0.7437694704049844,0.9012658227848102,0.8771084337349397,0.7665369649805448,0.1751152073732718,0.5054362977418455,0.7146853146853147,0.6434108527131783,0.5519713261648745,0.1064073226544622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394063376644,0.0046222618673532,0.0070114557649183,0.0093863329303846,0.0115419425038388,0.0136947247309419,0.0160374376803319,0.0182998397615815,0.0205825242718446,0.0229302882401694,0.0254342368191832,0.0273912151067323,0.0293585526315789,0.0313304367522599,0.0333336771212574,0.0354980680620699,0.0374046512590691,0.0393504837154322,0.0411125425982877,0.0429640734147433,0.0573839750477243,0.0707392808974667,0.0843245962459519,0.0975320186175521,0.1094907431798784,0.1257582482615771,0.1383795128362765,0.1502552105487026,0.1614998933219543,0.1721080641189005,0.1845523559646444,0.19656707066779,0.2083351426462286,0.2197974860335195,0.2281988232194607,0.2383920775445693,0.2481012940154569,0.2562574359665073,0.264565057445243,0.2726348379431287,0.2802382353959625,0.2873575286692565,0.2936283185840708,0.2994358385924651,0.3053461939267625,0.3098756023207788,0.3155202315744819,0.3200314577096758,0.3236194140660305,0.3273083652340923,0.3268678353781309,0.3253066600806784,0.3248852132155745,0.3241366393407195,0.3222822467253756,0.3201586454122492,0.3184295932192709,0.3179395802000915,0.3178650348461669,0.3190491418825285,0.3200604556565223,0.3217271564866725,0.3223133596309978,0.3220286039402932,0.3229543982536522,0.324179955918579,0.3252228720685935,0.3273199912305428,0.3305141252851377,0.3319223009059619,0.335608956854178,0.3389172516485854,0.3406683480453972,0.3400410053914496,0.3423687193048734,0.3439203602749466,0.3481458780263561,0.3515052888527258,0.3476112026359143,0.3455854490337249,0.0,2.1119646384287845,56.13803779875686,188.96832845627185,261.2962084081424,fqhc5_80Compliance_baseline,87 -100000,95797,44570,421.0048331367371,6013,61.421547647629886,4687,48.23741870831028,1923,19.562199233796463,77.3497797498425,79.68293686294989,63.33168066437421,65.0600460679093,77.10344446722144,79.44304747199708,63.23918428871482,64.9737606270194,0.2463352826210609,239.88939095281123,0.0924963756593868,86.28544088989543,163.06774,114.30507224833852,170221.71884297003,119319.7819734014,352.7606,228.28751534216377,367546.1340125474,237617.4587854505,361.14129,174.74523618359274,373467.6868795474,179666.5631455047,3367.01916,1541.9407684961195,3464602.5867198347,1559839.3839821713,1118.80785,496.18430132651577,1147760.900654509,497824.5677501223,1889.00576,795.8468506998333,1923015.4597743144,788142.5223984107,0.38131,100000,0,741217,7737.350856498638,0,0.0,0,0.0,30036,312.79685167593976,0,0.0,33042,341.325928786914,1593837,0,57155,0,0,6414,0,0,70,0.7307118176978402,0,0.0,0,0.0,0,0.0,0.06013,0.157693215493955,0.3198070846499252,0.01923,0.3278402788781492,0.6721597211218507,24.37370969690578,4.336978044339205,0.3275016001706848,0.2225304032430126,0.2197567740558993,0.2302112225304032,11.107314401994511,5.824845047190853,20.475499608432347,12298.838700689666,53.41992376723909,12.481364176459016,17.55104179276389,11.60361984213119,11.783897955884996,0.5585662470663537,0.7909875359539789,0.7061889250814333,0.5854368932038835,0.098239110287303,0.7070161912104858,0.907928388746803,0.8611764705882353,0.6926070038910506,0.0803571428571428,0.5017699115044247,0.7208588957055214,0.6468468468468469,0.5498059508408797,0.1029239766081871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185302996535,0.0046336195970677,0.0068199809202914,0.0090217314002986,0.0113823619163869,0.0140216893233542,0.0161296900489396,0.0184151159111092,0.0205648169915267,0.0227535594018362,0.0246742729444085,0.0265724787974618,0.0288114505465127,0.0307788944723618,0.0328959584081203,0.034904987755355,0.036935817805383,0.0389398890099061,0.0411679135494596,0.043274086568998,0.0584503662277498,0.0725871390774186,0.0857870627574712,0.0985853320160595,0.1111907572946534,0.1270581517083849,0.1396093907471648,0.1507339244467625,0.1614216126137674,0.1722787783868441,0.1849365260684958,0.1973265504924775,0.2081434181470079,0.2179830554796392,0.2277818117807556,0.2380572454373192,0.2469418277601678,0.2563442069741282,0.2649622114795397,0.2724336952040676,0.2792947056645686,0.2860784657662398,0.2925461429247515,0.2982346882560061,0.3037286160047594,0.3088519663509502,0.3138458845009129,0.3191965705417679,0.3239150412239034,0.3272588115754609,0.3270528343052619,0.3256602058106377,0.3240937865692895,0.3232520749141789,0.3220871221704642,0.3207440120219584,0.3201641786314221,0.3212683808428489,0.3223483941580873,0.3223804242836189,0.3234107246757634,0.3252119483400681,0.3264056372292012,0.3277632373666196,0.3289967295113505,0.328996767129002,0.3302953490359147,0.3339609615263917,0.3367689190133464,0.3376336450072987,0.3405491263898343,0.3406168985767949,0.3448753462603878,0.3460567582039318,0.3512392799924606,0.3505020673360898,0.3511485451761102,0.3560072449184946,0.3606646690275129,0.3580533024333719,0.0,2.6504473446454537,56.49353064112334,176.3790277639124,250.427973244648,fqhc5_80Compliance_baseline,88 -100000,95811,44516,422.2792789971924,6097,62.46673137739925,4841,50.06732003632151,1913,19.695024579641167,77.41775944651599,79.74690342080046,63.37436231324406,65.0956101119667,77.18189420748651,79.50905070731396,63.2876812139319,65.00990275786559,0.2358652390294793,237.85271348650383,0.086681099312166,85.70735410111752,164.34264,115.04917623380656,171527.48640552757,120078.84567931292,358.01864,231.3863569868644,373238.2189936437,241069.6690222045,364.55326,176.07221243439693,377438.07078519167,181414.73333730787,3445.44846,1568.7670409492096,3564589.065973636,1605891.993246297,1140.63062,508.43482699337767,1177385.6029057205,517557.7450869579,1875.69074,781.7394707477765,1932561.981400883,794714.1239403675,0.3804,100000,0,747012,7796.703927523979,0,0.0,0,0.0,30473,317.5835759985805,0,0.0,33370,345.29438164720125,1590966,0,57097,0,0,6518,0,0,76,0.7827911200175345,0,0.0,0,0.0,0,0.0,0.06097,0.1602786540483701,0.3137608659996719,0.01913,0.3423887587822014,0.6576112412177986,24.19258415261212,4.316874118326325,0.3172898161536872,0.2431315843833918,0.2202024375129105,0.2193761619500103,11.494768410927596,6.024462832829685,20.260956743153237,12243.81354800539,54.75257783750023,14.115757200476454,17.24667196454632,11.756339306927474,11.63380936554999,0.5585622805205536,0.7774001699235344,0.6959635416666666,0.5712945590994372,0.1045197740112994,0.7346153846153847,0.9071428571428573,0.8764845605700713,0.7198275862068966,0.1674008810572687,0.4939282688506072,0.7054161162483488,0.6278026905829597,0.5299760191846523,0.0874251497005988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.004389121466149,0.0064332173189516,0.008480428997989,0.0108191653786707,0.0129891282218331,0.015136071756192,0.0174838736016983,0.0194505202477564,0.0215130797887583,0.0236162361623616,0.0257344638567821,0.0277026818663075,0.0296182671718003,0.0316443949517446,0.0338153274116918,0.0357863581326516,0.0377781003130896,0.0398699396445155,0.0416736070625468,0.0561096736499457,0.069673116526066,0.0834433893046558,0.0960999128178733,0.1085518694049499,0.1240703177822853,0.1364560823693911,0.1486418965608887,0.159676507303125,0.1696037365957127,0.1821075953451354,0.1942415730337078,0.2057766436831532,0.2159258410036358,0.2258815775019224,0.2368915929203539,0.2469126170307623,0.2554770754494515,0.2641718861492111,0.2719777706627636,0.2791914524978342,0.2862112439297721,0.2927771021029886,0.2989076464746772,0.3049315932466524,0.3109360576035448,0.3160051472333621,0.3200325215645921,0.3239176243972438,0.3280663638159194,0.3278212860846554,0.327195525813145,0.3272154480120389,0.325182139508043,0.3249551166965889,0.3233215007038374,0.3214534075104311,0.3229950028672073,0.3244094220164749,0.3251410368208432,0.325149588631264,0.3260925171674242,0.3269323091694671,0.3264017080710806,0.3272875581785903,0.3276529419405117,0.328077502201767,0.3304683333856144,0.3336364908353155,0.3360246972215626,0.3386063002863766,0.3404255319148936,0.3440211241041117,0.3469001061088373,0.3513589767704316,0.3492327822053051,0.3501861042183622,0.3526305098517164,0.3514986376021798,0.3456362937331795,0.0,1.7336712503295837,57.43582432281939,178.23928968638847,267.0455891334882,fqhc5_80Compliance_baseline,89 -100000,95731,44253,418.30754927870805,6075,62.23689296048303,4807,49.73310630830139,1914,19.65925353333821,77.3893283971574,79.75082270566877,63.35181630130408,65.093852318168,77.14570025214829,79.50676676082563,63.26086337322578,65.0050135304035,0.2436281450091115,244.05594484314008,0.0909529280782948,88.8387877645016,163.6679,114.56385866359648,170966.4580961235,119672.6856123894,352.18986,227.663441428458,367412.9278916965,237333.414911009,357.81929,172.96049801433773,370989.700306066,178504.18019575372,3441.7858,1576.7201446134434,3560258.8189823567,1612022.9754347547,1156.50496,512.4384717820964,1192906.017904336,520151.8021761152,1873.03446,791.7189323747584,1924502.700274728,798779.1289280878,0.3792,100000,0,743945,7771.202640732888,0,0.0,0,0.0,30015,313.022949723705,0,0.0,32749,339.3049273485078,1596104,0,57210,0,0,6471,0,0,58,0.6058643490614326,0,0.0,1,0.0104459370527833,0,0.0,0.06075,0.1602056962025316,0.3150617283950617,0.01914,0.3280539438607495,0.6719460561392504,24.44161303494945,4.305024031516751,0.3220303723736218,0.2336176409402954,0.2219679633867277,0.2223840232993551,11.12833494551784,5.792711459981211,20.340485220799508,12282.799683847848,54.54758859897689,13.360968278176571,17.581510182998965,11.836811139094875,11.76829899870648,0.5504472644060745,0.767586821015138,0.6873385012919897,0.5660731021555764,0.108512628624883,0.711864406779661,0.9242819843342036,0.8541666666666666,0.7165354330708661,0.0829694323144104,0.4907381020233685,0.6864864864864865,0.6227598566308243,0.5190651906519065,0.1154761904761904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382693417867,0.0045506603018233,0.0067760161488289,0.0089050902186164,0.0111117888658452,0.0132829835311361,0.0153473014837762,0.0176527009652864,0.0199658720508445,0.0222963501110212,0.024479967209755,0.0266138630114499,0.0288943690916563,0.0309109624292331,0.0330009178380273,0.0350625193758396,0.0368460829683925,0.0389398890099061,0.04096290367845,0.0430959945830512,0.0573800449015819,0.0712910449322981,0.0839809949340801,0.0963505798488082,0.1083833155891932,0.1237719567263459,0.136606167326113,0.1480404995368743,0.1589316239316239,0.1700626286890871,0.1830351854045729,0.1953330376364442,0.2076497385215869,0.2182551832735543,0.2289672322352061,0.2389799151406383,0.2482698575702103,0.2572717251929003,0.2657602959701306,0.2734479716802804,0.2800999282921977,0.2869769562624952,0.2930771504581732,0.2991737516465094,0.3053259035340107,0.3103197763904793,0.3152311252892975,0.3194954799171,0.3245125708811268,0.329271509205043,0.3282689075630252,0.3275601374570446,0.3264221756792848,0.3252798035959275,0.3238627933889202,0.3220512507067218,0.3207582908465266,0.3221076746849943,0.3229548125564204,0.3233937191613673,0.3251672459543297,0.3249181491854365,0.3250277202451934,0.3252813002321843,0.326332988922796,0.3267103007635967,0.3275950230100563,0.3295664423227422,0.3316100185139903,0.3322940921109751,0.3352391324076595,0.337185263715876,0.3415231871308282,0.3441470054446461,0.3465653153153153,0.3501119886832488,0.3528161530286929,0.3562386980108499,0.3535494689770821,0.3509596553074814,0.0,1.8763647248812003,57.336827920111794,180.79329906370043,260.2726130116335,fqhc5_80Compliance_baseline,90 -100000,95667,44657,423.62570165260746,6266,64.21231981770099,4887,50.424911411458496,1868,19.118400284319566,77.35982293729873,79.73663646548658,63.33991942654043,65.09037064736958,77.1189758976994,79.49644693041182,63.24955023688936,65.00270522635815,0.2408470395993305,240.18953507476223,0.0903691896510778,87.6654210114367,162.09336,113.50546753381342,169434.97757847531,118646.41677256885,355.04537,228.57371495993007,370485.1620726061,238285.40544423115,365.24153,176.2775443321152,377709.9731359821,181149.65908481012,3497.44745,1605.9828735363185,3609996.446005415,1632877.5261876024,1182.89344,524.7715574264035,1219656.4123469952,531798.7762531426,1844.219,788.1386679127696,1888831.5720154284,791792.6778603463,0.38321,100000,0,736788,7701.589889930697,0,0.0,0,0.0,30218,315.187055097369,0,0.0,33509,346.1590726164717,1599847,0,57408,0,0,6338,0,0,64,0.6689872160724178,0,0.0,1,0.0104529252511315,0,0.0,0.06266,0.1635134782495237,0.2981168209383977,0.01868,0.3310502283105023,0.6689497716894978,24.40659253557441,4.362522054581143,0.3106200122774708,0.2406384284837323,0.2238592183343564,0.2248823409044403,11.275531357561308,5.770864199339008,20.06957635032224,12355.38331960972,55.64779163846755,14.047637537568384,17.168236371122163,12.302621846940175,12.129295882836823,0.577450378555351,0.7882653061224489,0.7147562582345192,0.6179159049360147,0.1219290263876251,0.7175856929955291,0.9135514018691588,0.855036855036855,0.7234848484848485,0.1358024691358024,0.5244005641748942,0.7165775401069518,0.6633663366336634,0.5843373493975904,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759914124843,0.0042671369639472,0.0065844873941054,0.0089273019032723,0.0114181714657556,0.0135782991500839,0.0156207012502674,0.0177121168836469,0.0198778320292549,0.0220455847450691,0.0240744155551457,0.0259451141318286,0.0280595726311245,0.0299935132463627,0.0322750340388661,0.0342521678914348,0.0363173314836478,0.0382309623083784,0.0401297459142512,0.0421560555688722,0.0566972074509763,0.0711802647009549,0.0843216692205965,0.0963363565581532,0.1089792947778117,0.125309517258894,0.1374449339207048,0.1499041329356625,0.1611982424067481,0.1715469494654587,0.1848043970255415,0.1968333387482807,0.2094610035584865,0.2196002889477486,0.2295883531925203,0.2406691408630144,0.2509181019567571,0.2603161753131395,0.2677797690615004,0.2749324602774852,0.2823092669049023,0.2888940873735306,0.2956766605930098,0.3010299401197605,0.3060543557388983,0.3111598020630739,0.316978962237028,0.3226130397752552,0.3271290355960264,0.3306338864121976,0.3302580792662425,0.3290702311701527,0.328397740240346,0.327235185399099,0.3262459753401486,0.323478553612144,0.3208291107170002,0.3223644219553467,0.3231464211769134,0.324175529537939,0.324997187956957,0.3266234279838645,0.3276993729947365,0.3285538530365731,0.3300014416838868,0.3299763187342233,0.3316388833669383,0.334504391468005,0.3385545959931471,0.3406327961034333,0.3444055148564408,0.3448954620418152,0.349930318003294,0.3538237770803031,0.3576490598129075,0.3626228722128986,0.3595333128645993,0.3615819209039548,0.3588156123822342,0.3575248281130634,0.0,2.5505319170833864,58.54350872947871,182.30904624663413,265.2556033883519,fqhc5_80Compliance_baseline,91 -100000,95865,44557,420.65404475043033,6025,61.61790017211704,4736,48.93339592134773,1812,18.609502946852345,77.34109898624328,79.63341067791427,63.34986309044478,65.04477314398372,77.11458570679174,79.40578396917712,63.26533390256421,64.96171364853959,0.2265132794515381,227.626708737148,0.0845291878805696,83.05949544413238,161.7726,113.3525615827971,168750.43029259896,118241.86260136348,352.21461,228.57190913327835,366939.0184113076,237963.16604942188,363.68632,176.2822547408074,376300.3703124185,181519.58886802808,3355.70861,1543.2207585836093,3470268.742502477,1579601.8135749311,1116.70843,492.6683039831639,1155999.5931779065,505043.6852449171,1774.9071,745.8649209650989,1824859.3334376467,755765.8839895778,0.38078,100000,0,735330,7670.474104209044,0,0.0,0,0.0,29931,311.73003703124186,0,0.0,33328,344.59917592447715,1600071,0,57466,0,0,6418,0,0,65,0.6780368226151359,0,0.0,0,0.0,0,0.0,0.06025,0.1582278481012658,0.300746887966805,0.01812,0.3427393785668992,0.6572606214331008,24.35880016953458,4.339100772563153,0.3289695945945945,0.245777027027027,0.2107263513513513,0.214527027027027,11.160166139380475,5.746795123077561,19.321290456910017,12277.658187683845,53.95536172047466,13.821514855461896,17.81247905618796,11.246596599479105,11.074771209345707,0.5618665540540541,0.7585910652920962,0.6970474967907574,0.5731462925851704,0.1181102362204724,0.7175097276264591,0.9213759213759214,0.8345498783454988,0.6944444444444444,0.1348837209302325,0.5039119095914227,0.6710700132100397,0.6477768090671316,0.532171581769437,0.1136079900124844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0047319411091183,0.0069480367992372,0.0091071537352529,0.0110788120261012,0.0134332003582186,0.0156993388143484,0.0178729915837796,0.0199170633056196,0.0221981259462334,0.0243685083891586,0.0265122766712477,0.0287072985353628,0.0310001749097157,0.0330867199736213,0.0351536294109754,0.03713163064833,0.0391441744806506,0.0412686877076411,0.0433013930938335,0.0568392734249546,0.070907532814982,0.0847386613595894,0.097723119578231,0.1109051851227833,0.1261723700887199,0.1389918850774413,0.1515750752187457,0.1615784362895222,0.1716876185576954,0.1848547784820343,0.1965201029478556,0.2080289590399165,0.2187827911857292,0.2285459666417286,0.2385167623141521,0.2478548554468261,0.2564241033256829,0.2648530863777195,0.2720848461247723,0.2793503533957222,0.2864810505513523,0.2932743488443614,0.2990692269912193,0.3047469853182265,0.3098032447359337,0.3149886127587156,0.3196723396677605,0.3235986750168211,0.3282516301048019,0.3266993428848432,0.3256706562113083,0.3245951545389201,0.3227856346713373,0.3219713320334013,0.3200147189598601,0.3182192779485879,0.3186520401953851,0.3193010734250145,0.3201061997703788,0.3211347677942809,0.3215858157153623,0.3228106334651299,0.3245685005393743,0.3249939511250907,0.3262931712174414,0.3272524518914591,0.3293638258891907,0.3333099111126726,0.3350683407501589,0.3379838599370811,0.3401031421128183,0.3423275753372841,0.3421552969807589,0.3482168196007946,0.3473909935668334,0.3435677003377341,0.3496969696969697,0.349615806805708,0.3615472998851015,0.0,1.7799829811941117,56.61926502054419,181.97199677491764,253.8062688056153,fqhc5_80Compliance_baseline,92 -100000,95656,44442,420.6218114911767,6012,61.72116751693568,4780,49.53165509743246,1931,19.90465835912018,77.31769350596971,79.74129339547866,63.289715480586615,65.08183588292276,77.07338449512255,79.49368316000687,63.201313297200166,64.99372776836275,0.2443090108471608,247.6102354717966,0.0884021833864494,88.10811456001488,163.82872,114.7140451409248,171268.6292548298,119923.52297913856,354.89936,229.95458099510836,370596.8052187004,239978.8617620956,365.65804,177.45084752339943,379605.858492933,183398.88858311667,3411.7872,1551.0255757492932,3542063.811992975,1596914.678921867,1104.54293,486.0749294241874,1147305.9609433804,500751.6406960226,1885.3046,782.1479169479983,1946800.200719244,798636.2609632297,0.37909,100000,0,744676,7784.937693401354,0,0.0,0,0.0,30200,315.25466254077105,0,0.0,33482,347.3906498285523,1586587,0,56925,0,0,6335,0,0,75,0.7736054194195868,0,0.0,1,0.0104541272894538,0,0.0,0.06012,0.158590308370044,0.3211909514304724,0.01931,0.3319095079892422,0.6680904920107578,24.49383450306735,4.258864567749429,0.3223849372384937,0.2353556485355648,0.2238493723849372,0.2184100418410041,11.08252840030329,5.7618358200009405,20.59782264984268,12320.71621043083,54.14715699064135,13.343260923507556,17.481635108095855,11.9042455328755,11.418015426162428,0.5642259414225942,0.7688888888888888,0.700194678780013,0.585981308411215,0.1206896551724138,0.723207401696222,0.8859857482185273,0.8651399491094147,0.7286821705426356,0.1644444444444444,0.5050244042492105,0.6988636363636364,0.6437282229965157,0.5406403940886699,0.1086691086691086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024414458221898,0.0048269987425465,0.0070253807106598,0.0092175733493226,0.0117207769084416,0.0138753056234718,0.0161589782302654,0.018379836328528,0.0206523185246589,0.0226429406096885,0.0247395165015654,0.0267232869951468,0.0285961425585155,0.0305956138722122,0.0328346489234202,0.0352131622516556,0.0369924936756106,0.0390539796628478,0.0410635308808991,0.0431830980040461,0.0580281101415956,0.0718656356740219,0.0847573335573923,0.097509346532568,0.109930837864949,0.1256883259911894,0.1382655446470313,0.1505046306657714,0.1620728381196855,0.1721330841763859,0.1849950386125372,0.1972394067107986,0.2088406333718119,0.2196115356822213,0.2292293284856497,0.2390135175595205,0.2481874141186196,0.2574249622841188,0.2653492094121386,0.2728428867680251,0.2806729110465318,0.2875330571742844,0.2938389748205699,0.2992046640515349,0.3043827318176842,0.3095998520254023,0.3146068822211373,0.3195017050949254,0.3245487879141239,0.3282864314968952,0.3273112132774264,0.3266837380913046,0.3255145193120947,0.3245235033163302,0.3241493011718924,0.321934396076027,0.3199822478641961,0.3208727344365642,0.3220211676340048,0.3230402108487374,0.323894730943798,0.3243913968329,0.3262901513416741,0.3272828383939495,0.3283089290841229,0.3299405395580713,0.3313200056713455,0.3342390455666947,0.337165822121265,0.3397689507833518,0.3415557176728068,0.3452747953651536,0.3499526664562953,0.3503044140030441,0.3488897252540459,0.3517200474495848,0.3560675883256528,0.3523483168715984,0.3525835866261398,0.3608762490392006,0.0,1.6489947012119333,57.684618731672536,171.45131203577813,267.25195903760874,fqhc5_80Compliance_baseline,93 -100000,95710,44537,420.8337686762094,6293,64.57005537561383,4923,50.86197889457737,1989,20.332253683000733,77.34880342590687,79.70699773387882,63.338894218876014,65.07733754166519,77.0977712008315,79.45994024181292,63.24393247297448,64.98722276386226,0.2510322250753631,247.0574920659061,0.0949617459015357,90.1147778029241,162.4216,113.80716130918302,169701.11796050568,118907.65950390034,358.83675,231.96977656930423,374332.0133737332,241779.0571113825,368.27953,178.3960037727852,381977.8602026957,184093.0639917197,3553.50767,1637.499815862196,3670650.4022568176,1668831.840206034,1174.59335,526.5627807157305,1211795.841604848,534718.6612848496,1952.76244,831.8823948430937,1998589.489081601,832567.8895324157,0.38073,100000,0,738280,7713.687180022986,0,0.0,0,0.0,30505,318.1067809006374,0,0.0,33622,348.51112736391184,1592824,0,57235,0,0,6408,0,0,92,0.9507888412914012,0,0.0,0,0.0,0,0.0,0.06293,0.1652877367163081,0.3160654695693627,0.01989,0.3278216019417476,0.6721783980582524,24.667917163240705,4.398053165925943,0.3030672354255535,0.2360349380459069,0.2327848872638635,0.228112939264676,11.143793284811636,5.735964418158902,21.36885481553593,12326.076759532809,56.12030945497919,13.957742782978489,16.915910424829455,12.751643860281018,12.495012386890233,0.551696120251879,0.7693631669535284,0.6896782841823056,0.5794066317626527,0.1148708815672306,0.7068837897853442,0.9210526315789472,0.8531645569620253,0.7043795620437956,0.1515151515151515,0.4930011198208286,0.6841397849462365,0.6308113035551504,0.5401376146788991,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0045209423022341,0.0068489675815534,0.0093357307571186,0.0115503497641125,0.0140886649361225,0.0164310395792349,0.0186383586812289,0.0209187062490419,0.0232127322040837,0.0255211856589385,0.0276081490224252,0.0294042050069398,0.031462339908578,0.0336183864412374,0.0357836653715797,0.0376598498576236,0.0396264591439688,0.0417377199184793,0.0434306911606873,0.0574818280558108,0.0725297497566642,0.0855715964411616,0.0985743595139144,0.110914211575583,0.126138515407644,0.1386760617187002,0.1505169127902643,0.1611176407735869,0.1715962365764432,0.1853751023398112,0.1972992274232292,0.2085381770720034,0.2187708495116429,0.228220561858336,0.238341681812137,0.2480141218005295,0.2574967625696751,0.2663910688123928,0.2743942971095881,0.2812619436433758,0.2876420537668387,0.2941155572397949,0.30008391273076,0.3056821081021977,0.3106754242196453,0.3156130807228162,0.319516846789574,0.3239509494489574,0.3277283217936036,0.3269937906603989,0.3257344236116847,0.3251416969799509,0.3232916335237544,0.3216708318457694,0.3199754808060685,0.3184230117371264,0.3197505538688767,0.3206554239923454,0.3212390803365668,0.3220570615545904,0.3234388568721876,0.3253667622376159,0.3262352651710023,0.3282411528375875,0.3286678656136784,0.3290593409103889,0.3313907702000315,0.3342815002107037,0.3390921005599904,0.3417039539768057,0.3430774172823643,0.3445881378607377,0.346085751674236,0.3501568291987453,0.3538387600624775,0.3610591900311526,0.3636928172221072,0.3686713286713287,0.3619084561675718,0.0,2.168213321916767,59.43650533117931,182.9074039261795,269.01362445575074,fqhc5_80Compliance_baseline,94 -100000,95628,44287,420.00250972518506,6083,62.37712803781319,4708,48.55272514326348,1918,19.523570502363324,77.26744378178137,79.68333527342281,63.28338998351626,65.06958628139506,77.02595398085505,79.44724191707986,63.19259317684379,64.98432320553849,0.2414898009263169,236.0933563429484,0.0907968066724649,85.26307585657378,162.02032,113.497367786054,169427.69900029278,118686.3343226398,351.65514,228.10891902963235,367063.0986740285,237868.48938556947,359.31207,173.51191035257847,372002.8234408333,178527.0741188618,3379.20388,1544.0941533010512,3488644.999372569,1569636.2083292054,1099.62393,487.6391126836461,1134529.4474421716,494565.4020617873,1875.11644,797.0729881960578,1912108.775672397,790830.1497366666,0.37905,100000,0,736456,7701.259045467855,0,0.0,0,0.0,29987,312.8686158865604,0,0.0,32860,339.97364788555655,1597396,0,57259,0,0,6436,0,0,58,0.5960597314594052,0,0.0,0,0.0,0,0.0,0.06083,0.1604801477377654,0.3153049482163406,0.01918,0.3415786985977627,0.6584213014022373,24.57800733453075,4.348894191368537,0.328589634664401,0.2347068819031436,0.2145284621920136,0.2221750212404418,11.123007456237218,5.788508537621738,20.710104424060997,12304.878145065495,53.73345861372092,13.244719801642828,17.74029301638842,11.23413324274521,11.514312552944462,0.5590484282073067,0.7828054298642534,0.7078215901745314,0.5574257425742575,0.1042065009560229,0.7194928684627575,0.9248704663212436,0.8433734939759037,0.7393162393162394,0.1233480176211453,0.5002901915264074,0.7065368567454798,0.6581272084805654,0.5025773195876289,0.0989010989010989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002512817395181,0.004715067937538,0.0070358187134502,0.0093081863263149,0.0112615591206421,0.0133926752760011,0.015529090278769,0.0173559709644815,0.0197036779517172,0.0217406887794287,0.0240295369468232,0.0262152278423799,0.0281355443996378,0.029984544049459,0.0320912469033856,0.0341793745153786,0.0359602697020227,0.0380311805858296,0.0400062412232797,0.0422987499087714,0.0569932481866259,0.0715901711460711,0.0844045368620037,0.0979603441195362,0.1098289695945946,0.1251853106866025,0.137426714249299,0.1486971812223584,0.1600278104610118,0.170318104688876,0.1837663528219066,0.1956170853509256,0.2066781306458283,0.217119157830231,0.2271961598167986,0.2379902503877686,0.2475277362323369,0.2569258467424327,0.2662738018189869,0.2733421218547601,0.2809250295296107,0.2878319878319878,0.294504895982571,0.2995236323929973,0.3049946477228493,0.3108425107412711,0.3158257426734993,0.3207568792736811,0.3251435906079425,0.3300058176433256,0.3285602461671345,0.3272220996912219,0.3268883369086598,0.3259902961836483,0.325242139770526,0.32345042432055,0.3221474379325671,0.3225472473294987,0.3236013477688269,0.3250205584754549,0.3252679593790475,0.326183578713441,0.3279643375318039,0.3281281505544975,0.3298683131542135,0.3316413302284204,0.3318580280403186,0.333879247897704,0.3371708210111252,0.3407567049808429,0.3427033492822967,0.3448535339962376,0.3466224405179562,0.3462960110888649,0.3525343439128375,0.3572885422915416,0.3593629194371424,0.3625742980118877,0.3640238704177323,0.3611892326235436,0.0,2.648165012027795,55.006778313470896,180.89296165639564,255.1950322516282,fqhc5_80Compliance_baseline,95 -100000,95846,44345,419.7984266427394,6049,62.0474511195042,4721,48.77616175948918,1817,18.65492560983244,77.40182060844235,79.71591455734155,63.36325590393732,65.07587797807237,77.17407910272084,79.4880627651429,63.27909935426377,64.9936379402697,0.2277415057215108,227.85179219864915,0.0841565496735512,82.24003780266287,163.53502,114.53773137372924,170622.68639275504,119501.8377122981,351.73851,227.61375927154987,366502.0345136991,236997.67259097908,362.39318,174.98058118696824,375020.9711412057,180133.10505495718,3400.76357,1553.1555770199511,3515014.0433612256,1587694.8422192628,1130.84425,498.894320927876,1167394.6121903886,508198.45176293154,1789.5783,748.9335402355415,1838886.9436387536,757567.2437974941,0.37979,100000,0,743341,7755.576654216138,0,0.0,0,0.0,30057,313.0751413726186,0,0.0,33188,343.2485445401999,1595396,0,57306,0,0,6348,0,0,56,0.5738371971704609,0,0.0,2,0.0208668071698349,0,0.0,0.06049,0.159272229389926,0.3003802281368821,0.01817,0.3356445004727387,0.6643554995272613,24.52364098662501,4.32853227200353,0.3236602414742639,0.238508790510485,0.2145731836475323,0.2232577843677187,11.266709693380449,5.758070211690282,19.227243504297142,12263.574193675482,53.818006716995775,13.655496179902949,17.298035216040702,11.295685755604008,11.568789565448116,0.5587799195085786,0.7655417406749556,0.68782722513089,0.5913129318854886,0.1195445920303605,0.7276853252647504,0.893569844789357,0.8553921568627451,0.7415254237288136,0.1541850220264317,0.4930862018240659,0.68,0.6267857142857143,0.5456885456885456,0.1100362756952841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430182871261,0.0046924565973101,0.0066854684900377,0.0090293224453314,0.0112036274539705,0.0133046948165641,0.0156652907302655,0.0177485201061441,0.0198703927060122,0.0217495880372148,0.0241299779611501,0.0262450219649382,0.028277159332696,0.0301367324245294,0.0323751766246892,0.0341802626548599,0.0361257465815106,0.0380547490667772,0.0398836726215205,0.0419923196203519,0.056328480246965,0.0709603905539468,0.0843750982385178,0.0973004201680672,0.1097103738809899,0.1246237524423087,0.1369491525423729,0.1490709639015264,0.1597635030575981,0.1702141334504515,0.1831753987802648,0.1949967581586341,0.2070834917703297,0.2180487271932699,0.2276779334982138,0.2382333407128625,0.2467296390056764,0.2556722358390861,0.2641978109227017,0.2726575643475972,0.2798552333379585,0.2870132298630265,0.2939639373337274,0.3005306088227191,0.3054139354212187,0.310459488417345,0.3153063011231458,0.3191213484860041,0.3240351399257352,0.3273614132225957,0.3266132286090862,0.3254851833525757,0.3244930674691341,0.323679088877676,0.3230944760550023,0.3219307899241868,0.3201825734005085,0.3203430610340933,0.3214809009438784,0.3214940299304233,0.3223987602920035,0.3233150825225509,0.3243671876630287,0.3252824134934605,0.3268558847460872,0.3282129790601728,0.3297784837053635,0.333395766997565,0.3379368068633605,0.3403557312252964,0.3421232098204137,0.3438346703501036,0.3459143234572561,0.3490222828558436,0.3507532081086107,0.3550205519671168,0.3539701855795558,0.3498483316481294,0.3597260273972603,0.3651340996168582,0.0,1.8647811634083231,58.60582287056486,173.9443450338479,253.8860426015177,fqhc5_80Compliance_baseline,96 -100000,95695,44116,417.085532159465,6063,62.082658446104816,4813,49.69956633052929,1849,18.945608443492347,77.32145341825886,79.70947658670879,63.3143933609397,65.08064211831132,77.09387630130998,79.48243959094779,63.23034754399731,64.99896322840075,0.2275771169488791,227.03699576099723,0.0840458169423854,81.67888991056316,164.72258,115.3227277976925,172132.9014055071,120510.71403698467,354.33784,228.5016737514944,369690.06740164064,238192.9502601957,360.23239,174.39690673500832,372395.78870369407,179146.40870365128,3417.03187,1552.331735254358,3530928.052667328,1582341.2563397868,1146.40241,507.69512314917614,1182559.1096713515,515118.5047799529,1812.06144,755.2775701608161,1858716.1920685512,760573.2154971309,0.37849,100000,0,748739,7824.222791159414,0,0.0,0,0.0,30166,314.614138669732,0,0.0,33061,341.5120957207796,1588651,0,56993,0,0,6467,0,0,69,0.7105909399655155,0,0.0,1,0.0104498667641987,0,0.0,0.06063,0.1601891727654627,0.3049645390070922,0.01849,0.3330706179066834,0.6669293820933165,24.52585127538636,4.333968486241965,0.3118637024724704,0.237481820070642,0.2370662788281737,0.2135881986287139,11.332294579379909,5.887838911871333,19.55646568793969,12198.321982051884,54.42273927099539,13.631474856860391,16.962436437026838,12.6049365852169,11.22389139189126,0.5676293372117183,0.7909011373578303,0.6968687541638907,0.5766871165644172,0.1206225680933852,0.7551803530314658,0.9178082191780822,0.8989071038251366,0.7649122807017544,0.1635514018691588,0.498005698005698,0.7120567375886525,0.6317180616740088,0.514018691588785,0.1093366093366093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360784631596,0.0049082243180204,0.0069027123599155,0.009359660979055,0.0116697867491453,0.0139556678347322,0.0160110955872604,0.0181131304880539,0.0200881219395005,0.0220074927835895,0.0243184777371102,0.0266587251871553,0.028731316414809,0.0305116183213972,0.0328657397371979,0.0350289495450785,0.0371126118660921,0.0392291167221893,0.0411722495502147,0.0431053350147471,0.0574657419786096,0.0709081773646526,0.0838327123891483,0.0963400260975712,0.1081346275585566,0.1232840465278733,0.1363144264243865,0.1476440013633265,0.1584409199726402,0.1687670939025044,0.1816654098890444,0.1935983200190513,0.2052620702406978,0.2155938211097497,0.2256435643564356,0.23580539439302,0.2452203011712214,0.2541504153225353,0.2633972105680916,0.2710129495414419,0.2778561517113783,0.2841513447804285,0.2907339927121291,0.2970026595107458,0.3023244516771514,0.3078390821577172,0.3123921470551457,0.3178669920063035,0.3224672336685366,0.3268554262902015,0.3255770161941141,0.3245162264980155,0.3237622509385941,0.3229794846639928,0.321589238786691,0.319900786967572,0.3178430721032895,0.3182593576747695,0.3184588333703204,0.319401813120137,0.3201603236439916,0.3208852005532503,0.3229109947643979,0.3230155886041927,0.3245203894726694,0.3255010727929248,0.3273690237618093,0.3305031248027271,0.3345071662499559,0.3370719484548383,0.3401047597358232,0.3427065026362039,0.3458098077777073,0.3477660064486412,0.3515019837521254,0.3517233125897558,0.3555212355212355,0.3594196975888843,0.3564712389380531,0.360939907550077,0.0,2.3008046341844057,57.03523398888492,172.3072236019352,269.7642723912475,fqhc5_80Compliance_baseline,97 -100000,95703,44594,421.8676530516285,6074,62.25510172094919,4730,48.80724742171092,1845,18.923126756736988,77.3455376358958,79.73406494363128,63.32130932583449,65.08803785918113,77.11267058588304,79.50165545373376,63.235097526084125,65.00420578101101,0.2328670500127572,232.4094898975204,0.0862117997503659,83.8320781701185,161.96422,113.36046883443558,169236.30398211133,118450.27724777236,349.59585,226.1233672163533,364690.3963303135,235674.08254323623,361.75026,175.34010379165116,374220.1602875563,180212.6403497406,3367.50188,1542.5845881730097,3480853.640951694,1573998.7964567582,1128.99541,502.97794518144167,1164769.996760812,510653.8674766358,1805.77414,760.0742446901273,1855089.6419130017,769266.628317028,0.38062,100000,0,736201,7692.5592719141505,0,0.0,0,0.0,29804,310.7844059224894,0,0.0,33041,341.38950712098887,1603574,0,57470,0,0,6406,0,0,63,0.6582865740885866,0,0.0,1,0.0104489932395013,0,0.0,0.06074,0.1595817350638432,0.3037537043134672,0.01845,0.3371563236449332,0.6628436763550668,24.73054344181541,4.347362661869692,0.3300211416490486,0.2302325581395349,0.2249471458773784,0.214799154334038,11.265585486750306,5.794801650564946,19.77656625944904,12380.16367419086,53.65367165500643,13.04362352219386,17.49912662146387,11.865462709451885,11.245458801896811,0.5655391120507399,0.800734618916437,0.6893017296604741,0.5723684210526315,0.1161417322834645,0.7386185243328101,0.9303482587064676,0.858560794044665,0.7198443579766537,0.1698113207547169,0.5017361111111112,0.7248908296943232,0.6303972366148531,0.5254027261462205,0.1019900497512437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518992087052,0.0047264060043612,0.0071272653434184,0.0093599463403727,0.0117502238137869,0.014259523324506,0.0165915441251453,0.0187800618853589,0.0208503763089005,0.0227849916028345,0.0250246143747948,0.0269826107499049,0.0291415933755078,0.0310886702045442,0.0329721362229102,0.0349126924230049,0.0371467639015496,0.0393253762324857,0.0411297954429642,0.0431770111589234,0.0582245430809399,0.0715870557206849,0.0857865516409013,0.0987732255960271,0.1104536489151873,0.1258104434831353,0.1380126266645445,0.1503194888178913,0.1611779167334723,0.1709026510679403,0.1844893559687415,0.1972991704749734,0.2093433326439759,0.2196509655889272,0.2292377451519887,0.2392633958250232,0.2490235028904314,0.2581109661161859,0.2662250002836043,0.2749633733174618,0.2824062828920735,0.2898347474464156,0.2959661401683534,0.3015512040982429,0.3070868051765333,0.3130458313857659,0.3180489632775418,0.3223346066474612,0.3266033254156769,0.3303180509354826,0.3298085052134355,0.3289241018189793,0.3284496200255657,0.3269294516105787,0.3270812036090493,0.3254482147765798,0.322465887710089,0.3237796465409631,0.3242961596282629,0.3248159531127153,0.3252758801891749,0.3261752411894055,0.3279153279153279,0.3285829343594791,0.329416863292724,0.3294437048059101,0.3313304476591867,0.334611154752553,0.3363607672616334,0.3379767432630868,0.3399854532230202,0.339824320033866,0.342948516962438,0.3463026166097838,0.3453278070836473,0.3467751585497188,0.3481881264456438,0.3506440400736045,0.3585941790225151,0.3593628593628594,0.0,2.409237860890688,55.51679034048789,176.91358720447792,258.53123221257727,fqhc5_80Compliance_baseline,98 -100000,95610,44349,420.5313251751909,6164,63.29881811525991,4847,50.10982114841544,1890,19.44357284802845,77.23812690061078,79.67007872791912,63.25655152000609,65.05463396967177,76.99797531282125,79.42945710346805,63.16885521091356,64.96887493038336,0.2401515877895264,240.62162445106597,0.0876963090925286,85.75903928840489,162.8165,114.03526156121389,170291.87323501724,119270.8170287772,353.69514,228.7849227644434,369347.3799811735,238702.2341550262,364.75345,176.82856779164416,377190.33573893947,181628.6838978939,3458.56962,1570.7908268566189,3582264.585294425,1607852.9649316354,1147.29107,505.2590994558196,1187418.4499529337,516025.5839588733,1855.999,769.4818453243469,1911986.2775860264,780647.37299243,0.37919,100000,0,740075,7740.539692500784,0,0.0,0,0.0,30151,314.72649304466063,0,0.0,33353,344.7756510825228,1589628,0,57081,0,0,6416,0,0,64,0.6380085765087334,0,0.0,0,0.0,0,0.0,0.06164,0.1625570294575279,0.3066190785204413,0.0189,0.3353441608662026,0.6646558391337973,24.482556790777338,4.3636252643863935,0.3191664947390138,0.2428306168764184,0.2139467711986796,0.2240561171858881,11.353598133191849,5.893615495311292,20.05943168584553,12285.961380956736,55.24255816531469,14.116702540272415,17.631424685334128,11.62184963918962,11.872581300518526,0.5675675675675675,0.8037383177570093,0.7123464770523594,0.5679845708775313,0.1049723756906077,0.7494126859827721,0.948780487804878,0.8933002481389578,0.7418032786885246,0.1227272727272727,0.5025210084033613,0.7262059973924381,0.6486013986013986,0.5145018915510718,0.1004618937644341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025133776552618,0.0048482143762741,0.0069145479652343,0.0092698941890367,0.0113580850024425,0.0135497213647523,0.0158396654597378,0.0178564131900461,0.0197103287441441,0.0216934847848575,0.0238754822293359,0.0260783789893343,0.0283755827955661,0.0300406177192222,0.0318896255447466,0.0341662786486626,0.0362215172814165,0.0383936176843329,0.0404413678238692,0.042406476246114,0.0575383135754458,0.0714128532657103,0.0849179501187149,0.097693522906793,0.1099330475003696,0.1254395627674448,0.1378610659612667,0.1497639121305464,0.1605559062362922,0.1718422720388412,0.1847959778175776,0.196869342757103,0.207626933972543,0.2180591161068384,0.2279559228650137,0.237660450203579,0.2471650003355029,0.2566883504887315,0.26557809515146,0.2737470578104369,0.2811017135962317,0.2879237362663133,0.2943835421412301,0.300316147567587,0.3049926274356881,0.3096117956767312,0.3137919349373094,0.3188052617477066,0.3237724084177708,0.3275540320552695,0.3270809701290985,0.3260551522345212,0.3256102898612111,0.3248471324658765,0.3241114370374782,0.3220479577259251,0.3194673954493454,0.319874752801582,0.3202127659574468,0.3212865077943021,0.3228387872412368,0.322679778733866,0.3239993272788429,0.3258527827648115,0.3261032161555722,0.3258526888470391,0.326688434438907,0.3302801553962288,0.3342497620809982,0.3364575059571088,0.338758343238548,0.3435919280123529,0.349675467893377,0.3518560865919659,0.3532123036402972,0.359262324151791,0.3697632058287796,0.3766626360338573,0.3794914317302377,0.3826491092176607,0.0,2.221265092534859,56.1617621144054,189.5868643754321,261.40802186484325,fqhc5_80Compliance_baseline,99 -100000,95719,44556,421.7240046385775,6000,61.50294089992583,4735,48.88266697311924,1888,19.379642495220384,77.33641368994157,79.71026558831112,63.332022412709286,65.08912752867498,77.09955388894953,79.47406744111028,63.24496540256742,65.0043965888721,0.2368598009920361,236.1981472008381,0.0870570101418621,84.73093980288127,163.98074,114.87319994519954,171314.72330467307,120010.86507924188,354.68258,229.85416955206207,369960.5094077456,239549.1903927769,363.34392,176.22488354073576,375522.0802557487,181036.33303661057,2719.86748,1251.9610060507716,2810875.16585004,1277317.069809308,1134.06196,500.1663709616377,1170479.3719115327,508233.0163934406,1853.8319,772.1621531373628,1905552.3772709705,781326.0781780264,0.38103,100000,0,745367,7787.03287748514,0,0.0,0,0.0,30270,315.63221512970256,0,0.0,33215,342.962212308946,1590401,0,57097,0,0,6491,0,0,60,0.6163875510609179,0,0.0,1,0.0104472466281511,0,0.0,0.06,0.1574679159121329,0.3146666666666666,0.01888,0.3391096979332273,0.6608903020667727,24.44871639180721,4.342899606499864,0.3235480464625132,0.2278775079197465,0.2240760295670538,0.2244984160506863,11.374183725917364,5.965494730458324,20.155790023793205,12287.277926008856,53.90221451021113,12.98881257139373,17.403961277834537,11.92395883298099,11.585481828001862,0.5632523759239705,0.7905468025949953,0.695822454308094,0.5937794533459001,0.1110065851364063,0.74,0.9178743961352656,0.8502415458937198,0.737037037037037,0.1534653465346534,0.4963609898107715,0.7112781954887218,0.6386404293381037,0.5448798988621998,0.1010452961672473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0043306727248755,0.0067820701558454,0.0092588828360029,0.0117493870990712,0.0139734789073798,0.016102550505308,0.0182867061466203,0.0202733787942298,0.0223880597014925,0.0243657424017221,0.0265086959200016,0.0287524166015384,0.0307037872467529,0.0327307247812448,0.0346880555670401,0.0366642851965748,0.0387468229679962,0.0408750779463728,0.0429977605333055,0.0576804602742014,0.0719075966980885,0.0847429188645015,0.0973068998864735,0.1096355319462889,0.1257596415020556,0.1382914445021571,0.149517206176358,0.1610024763043292,0.1711249424191457,0.1839910463502039,0.1963494020199399,0.2077864221140473,0.2189455748877748,0.2283918742240631,0.2382731745066607,0.2475184652919354,0.256160458452722,0.2649142494417429,0.2723530286223971,0.2798442356801978,0.287210687343812,0.2930148492043803,0.2978807423983151,0.3036459344071415,0.3094215648878444,0.3143885431506336,0.3189218041099546,0.3237558053791123,0.3277174558359829,0.3265657816791426,0.3258908279500282,0.325438781983506,0.3235728132866526,0.3222137870465473,0.3206560093277285,0.3191310552604455,0.3202373711636776,0.3217206803326375,0.323140200286123,0.323495771848574,0.3247400260962397,0.3259813162414645,0.3282782033815022,0.3295416285892934,0.3302845528455284,0.3297543377426559,0.3341767347713328,0.3371756909193457,0.339776357827476,0.3394740478054621,0.3425771363954553,0.3456274497204909,0.3474930362116992,0.3521408182683159,0.3525857902368294,0.3533974557865343,0.3583980384143849,0.3587135788894997,0.366325369738339,0.0,2.309818720782646,56.803656897306965,176.542811240562,257.3403228109917,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95608,44497,420.97941594845616,6085,62.46339218475441,4788,49.48330683624801,1895,19.412601455945108,77.26635035352784,79.70552127790135,63.26822878755484,65.0727446556686,77.02573824673442,79.46695961445911,63.178083272058295,64.98580453443071,0.2406121067934208,238.5616634422405,0.0901455154965447,86.94012123788752,163.82674,114.73868122444026,171352.0835076563,120009.16411265128,354.55461,229.4427075246739,370215.0447661284,239362.0131271564,361.8228,175.16524904075942,374953.8427746632,180423.9041431006,2767.50304,1271.9903235045783,2861404.2757928204,1297559.0468124817,1145.4202,505.212139781068,1180971.3413103507,511599.0589965964,1858.86258,787.8617349178263,1905651.9538113964,790499.1490413822,0.38059,100000,0,744667,7788.73106852983,0,0.0,0,0.0,30269,315.9359049451929,0,0.0,33188,343.6950882771316,1586267,0,56893,0,0,6633,0,0,57,0.5961844197138314,0,0.0,0,0.0,0,0.0,0.06085,0.1598833390262487,0.3114215283483977,0.01895,0.3418870286340166,0.6581129713659835,24.643659653192906,4.355490156752728,0.3210108604845447,0.2261904761904762,0.2268170426065162,0.2259816207184628,11.32223649612794,5.903466022492508,20.32816095160208,12309.86544609618,54.48902456969445,12.982466830647386,17.403190455790906,12.089150535986292,12.01421674726986,0.5649540517961571,0.7987072945521699,0.682498373454782,0.6068139963167587,0.121996303142329,0.7153905645784996,0.9108910891089108,0.8393782383419689,0.7461538461538462,0.1604938271604938,0.5092989985693849,0.7319587628865979,0.629887054735013,0.562953995157385,0.1108462455303933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0047780877504438,0.0070378908669909,0.0093846591833414,0.011797398261436,0.0141158005238643,0.0166659862834748,0.018791575978664,0.0207909142067836,0.0229534066339444,0.0248883871298814,0.0270750886570385,0.0292358530383669,0.0312512888192353,0.0331663481898466,0.0354083026364802,0.0374792703150912,0.0395288936895018,0.0415370044648897,0.0435626010324868,0.0578943516940736,0.0719996646791922,0.0849325140486319,0.0967959385730235,0.1086008217412888,0.1247312055760939,0.1374443346193497,0.1495653101498746,0.1602175053252411,0.1699601345325209,0.1834667414615202,0.1961016012055115,0.207323581627874,0.217848142872795,0.2269019642424108,0.2370070442065561,0.247282396183624,0.2569311501993198,0.2656583791645834,0.2731006160164271,0.2804587049693038,0.2877540263543192,0.2941664297223012,0.3000203883378707,0.3049627278586455,0.3105363866427998,0.3157703397267143,0.3203664534542952,0.3249637042414186,0.3295699137714746,0.3285406279477159,0.3274349688098156,0.326985156261013,0.3247006767308693,0.3248036181861461,0.3231662479318585,0.3204872330989038,0.3206480659896809,0.3223137670506991,0.3226331413856003,0.3229908156940818,0.3231406432690593,0.3234410770167811,0.3246910263299301,0.3255236580133536,0.3254999346490654,0.3261764537709417,0.330123752999116,0.3347657625924621,0.3397601880253356,0.34072553045859,0.3454439065907761,0.3479556259904913,0.3520741528643063,0.3558862062511697,0.3580610921099186,0.3584415584415584,0.3597326311525218,0.3624382207578254,0.3605134012835032,0.0,2.1655278980536075,56.844627643137365,183.5668662525161,256.33782268145234,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95710,44703,423.1114826036987,6144,63.05506216696271,4789,49.51415735032912,1897,19.506843590011496,77.34534288058313,79.71358572207575,63.32656324425341,65.0742487708091,77.1191619155214,79.48682050516166,63.24302433125015,64.99233994533466,0.2261809650617294,226.7652169140888,0.0835389130032595,81.90882547444289,163.28026,114.36824388506662,170598.72531605893,119494.35074392083,354.88698,229.58627131209104,370292.49817156,239375.44803269356,361.62112,175.0978885111478,374183.67986626265,180196.06199809493,2740.67368,1253.5185831327408,2836058.259325044,1282244.5545217227,1167.45257,512.2361932919425,1207760.6101765751,523180.48898237135,1857.34514,768.9165229375299,1912570.076272072,780887.4172301375,0.3822,100000,0,742183,7754.487514366316,0,0.0,0,0.0,30306,316.11116915682794,0,0.0,33033,341.44812454289,1590784,0,57130,0,0,6423,0,0,66,0.6895831156618953,0,0.0,0,0.0,0,0.0,0.06144,0.1607535321821036,0.3087565104166667,0.01897,0.3405145691258524,0.6594854308741476,24.63311731026125,4.323778784353811,0.3196909584464397,0.2363750261014825,0.2205053247024431,0.2234286907496346,11.26521491767388,5.932351078671601,20.076129524442923,12366.460912959592,54.30897773945366,13.592893766268684,17.339769194978,11.718324279741624,11.657990498465349,0.5685946961787429,0.7773851590106007,0.7047681254082299,0.5880681818181818,0.1336448598130841,0.7474903474903475,0.9183168316831684,0.8717339667458432,0.7376425855513308,0.1739130434782608,0.5022896393817974,0.6991758241758241,0.6414414414414414,0.5384615384615384,0.1239860950173812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0045811120345407,0.0069295077310174,0.0092017062766605,0.0113181069372978,0.0135920748531343,0.0157793339653221,0.0180986699059849,0.0201889068345838,0.0222436048356552,0.0245832735324872,0.026319572807558,0.0283269218901071,0.0302677532013969,0.0324564752990226,0.0347222940075874,0.0371896974906533,0.0392171106568009,0.0411732290832718,0.0430895240874086,0.0574904704715158,0.0713956798392498,0.0846431494344532,0.0977726808841941,0.1102435318448486,0.1256693546680212,0.138154332848544,0.1499099943546755,0.161682662505611,0.1728395061728395,0.1858488126535361,0.1978691843783497,0.2100544069640914,0.220295566502463,0.2295146956799436,0.2405950032144361,0.2501506662797705,0.2591434260707174,0.2667370308581027,0.2745086811122818,0.2817712791800661,0.2884102708011786,0.2948561691654143,0.3006157753498179,0.3061135265113793,0.3116275058217617,0.3167271362442136,0.3204504149562167,0.325199461195731,0.3300455535749653,0.3295512734132866,0.3279390700749229,0.3263499682360415,0.3253168952943219,0.3245213406923637,0.3231155932930754,0.3217173875199797,0.3227377847758697,0.3242276034832398,0.3245554644906104,0.3263155928340587,0.3277102260410303,0.3291305984192698,0.3312237230521513,0.3314553990610329,0.3322482356311362,0.3329647585835389,0.3366664583463533,0.3411834484683553,0.3441376865818597,0.3479346345891965,0.3496695744118424,0.3481829573934837,0.3488301428137344,0.3517842090474852,0.3529411764705882,0.3568711002891493,0.3564376385250856,0.36,0.360655737704918,0.0,2.0220477871230758,57.24084038486011,176.71443915477153,262.34143127353855,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95671,44282,419.7614742189378,6078,62.35954468961336,4759,49.24167198001484,1865,19.20122085062349,77.2498286400838,79.65032822367637,63.26585613190741,65.03966783878838,77.01525489918288,79.41459216249804,63.17743618124425,64.95312331357954,0.2345737409009274,235.73606117832924,0.0884199506631588,86.54452520883638,163.72246,114.621311767017,171130.24845564488,119807.3775904284,354.60073,229.7647632102424,370080.0974171902,239597.21754159877,360.09605,173.92448327721155,373732.71942385886,179719.23255468687,2723.56212,1254.2905069855806,2818468.2087570946,1282941.9210003826,1148.94648,509.8294735393152,1188666.9628204994,520856.3480669743,1830.8566,780.1786632564159,1885458.247535826,789210.3222730192,0.37932,100000,0,744193,7778.647657074766,0,0.0,0,0.0,30237,315.52926174075736,0,0.0,33000,342.2458216178361,1582700,0,56892,0,0,6263,0,0,61,0.6271492928891722,0,0.0,1,0.0104524882148195,0,0.0,0.06078,0.1602341031319202,0.3068443566962817,0.01865,0.3414096916299559,0.6585903083700441,24.384978501993764,4.343101979527344,0.3193948308468166,0.2349233032149611,0.2239966379491489,0.2216852279890733,10.978786550959915,5.677122039508708,20.01934468302804,12233.931933579122,54.11885959853173,13.496359566909948,16.85011169604292,12.059723376043952,11.71266495953492,0.5570498003782307,0.7799642218246869,0.6828947368421052,0.5863039399624765,0.109952606635071,0.7137285491419657,0.8990384615384616,0.8681318681318682,0.7238805970149254,0.1324786324786324,0.4992809893586425,0.7094017094017094,0.6245674740484429,0.5401002506265664,0.1035322777101096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779650715182,0.0042694737696106,0.0064554764973964,0.0088193456614509,0.0110567484818585,0.0131179597906015,0.0155300403801443,0.0175830908255475,0.0197075066475761,0.0218658145656025,0.023837608853969,0.025814072932717,0.0277306168647425,0.0300247371675943,0.0322743838855219,0.034223835675944,0.0361850285998507,0.0382479053976889,0.0403774527143719,0.0422592484464278,0.0567252134117671,0.0707605952393419,0.0842779177162048,0.0979397714598371,0.1099948289872202,0.1253360143930574,0.1378131271835278,0.1488432068373882,0.1594295923061287,0.1702511655888103,0.1830207816310235,0.1946947761113099,0.2057649522313833,0.2168165862220272,0.2265411110129824,0.2372316308841179,0.2464705948209267,0.2553138679543301,0.2633496112647839,0.2713346663908617,0.27818692934972,0.2853903275837759,0.2924222066325014,0.2984873464181278,0.3037662923540242,0.3097753476173981,0.3149948501519833,0.3194091263401357,0.3239196828903762,0.3279424620519749,0.3270213283594193,0.3256305131072183,0.3240117627099474,0.3236497070255845,0.3230725657384771,0.3212460676743651,0.318624341980085,0.3193022873128188,0.3201274343558912,0.3214586506585431,0.3224914926018538,0.3231357931677142,0.3235886673662119,0.3250504597443373,0.325152633992133,0.3267321572817052,0.3278395044187434,0.3301414444861685,0.3352649584584235,0.3377876176168261,0.3386848769898697,0.3436529247617543,0.3459206001875586,0.3475826586971325,0.3517067711247901,0.351773549447968,0.3508665247795682,0.3482142857142857,0.3527481542247744,0.3625753012048193,0.0,1.941998545964129,56.5009555801881,180.65979737187143,257.7465417516363,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95731,44371,419.58195359914765,6098,62.41447389038034,4823,49.65998474893191,1939,19.73237509270769,77.32698317968122,79.68562402222575,63.31555014592704,65.060607878964,77.08111923801728,79.44661405214647,63.22364587099578,64.97521519785323,0.2458639416639414,239.0099700792803,0.0919042749312595,85.39268111077547,162.75622,114.01916541999756,170014.12290689535,119103.7024788183,351.92577,227.36850789307744,366897.1806415895,236785.44869799487,359.79454,174.01203949691958,371761.2894464698,178594.95045779645,2759.95588,1268.0881171109609,2844014.290041888,1285618.6158203308,1168.59134,518.4636933950271,1200970.6678087558,521852.8156971379,1897.01978,798.6945881800804,1934048.009526695,792489.6867833363,0.37902,100000,0,739801,7727.914677586154,0,0.0,0,0.0,30021,312.84536879380767,0,0.0,32970,340.2555076203111,1595055,0,57205,0,0,6467,0,0,53,0.553634663797516,0,0.0,1,0.0104459370527833,0,0.0,0.06098,0.1608886074613477,0.3179731059363725,0.01939,0.3385888229784577,0.6614111770215423,24.45553388962905,4.400733945529835,0.3143271822517106,0.2403068629483724,0.2195728799502384,0.2257930748496786,11.490513286629108,6.091252969843009,20.63299448227033,12292.832660748754,54.76759404713927,13.89092841405227,17.181167478391668,11.721029990849644,11.97446816384568,0.5575368028198217,0.7851596203623814,0.7025065963060686,0.5609065155807366,0.1101928374655647,0.7029096477794793,0.917910447761194,0.8525798525798526,0.7112970711297071,0.1240310077519379,0.5035541654819449,0.714663143989432,0.6474301172227231,0.5170731707317073,0.1058965102286401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024720125626867,0.0049177668268743,0.0069829283640866,0.0093262353706111,0.0115840325451309,0.0136551092103253,0.0156014194232573,0.0179756241961496,0.0202873962634397,0.0225381521171738,0.0245872236627686,0.0267207308935995,0.0287100521159914,0.0307788944723618,0.032938579298108,0.0351020408163265,0.0371677934340349,0.0393029407188423,0.0408988390342261,0.0430266598601894,0.0568048943456109,0.0705078574567369,0.0837370242214533,0.0967240001682156,0.1087064230821939,0.1237245302570501,0.1358824777259228,0.1480349670453698,0.1599948692185178,0.1704628397234983,0.1835722755201035,0.196540556933508,0.207828244357875,0.2178432316512757,0.2269119411693473,0.2377790586826878,0.2483857273722546,0.2579500523807914,0.2666098613951375,0.2744403562463464,0.280825090917514,0.2875850678786033,0.2937097749173274,0.2989953066295358,0.3049344266283851,0.3105528754210416,0.3156496346705769,0.3197466999643239,0.3236743160897186,0.3277039071474786,0.3266614584736402,0.3258403766208738,0.3253962662909475,0.3239905125535115,0.3228358164570137,0.3212900059807695,0.3186457871045457,0.3196150561650134,0.3203294543838964,0.3229411764705882,0.3235371195387668,0.324848820204735,0.3253508108562306,0.3270659862118363,0.3283650373224175,0.3298858680038653,0.3306435516523623,0.3339414910349166,0.3390615136424212,0.342498316231528,0.345666106086087,0.348728813559322,0.3501723597618301,0.355481475869384,0.3573902461855284,0.3588443396226415,0.362442748091603,0.3598300970873786,0.3597102256896071,0.3636363636363636,0.0,2.7788002151381006,56.90724153616764,176.67646413468154,266.8194056406682,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95773,44609,420.8701826193186,6190,63.56697607885312,4873,50.4213087195765,1916,19.775928497593267,77.39144353273707,79.72929531823178,63.36142006586866,65.08687894995106,77.15452057690338,79.49032869964863,63.27370342894069,64.999880713702,0.2369229558336911,238.96661858314872,0.0877166369279649,86.99823624905889,162.74698,113.95564409983332,169929.68790786547,118984.930097035,354.97152,229.5327065502449,370173.5666628382,239198.99715185375,363.27303,175.54151615122734,376275.140175206,180992.4826611364,2786.73372,1271.8963261574906,2885556.806197989,1303910.5031245672,1142.29365,499.40924375947895,1181191.9016841906,509933.3985146952,1881.6184,785.1477405358917,1943121.589592056,801311.1119900275,0.38105,100000,0,739759,7724.076723084794,0,0.0,0,0.0,30198,314.838211186869,0,0.0,33271,344.3141595230389,1598265,0,57339,0,0,6379,0,0,69,0.7204535725099976,0,0.0,0,0.0,0,0.0,0.0619,0.1624458732449809,0.3095315024232633,0.01916,0.3329748002458512,0.6670251997541488,24.58120697746217,4.345494465293241,0.3170531500102606,0.232916068130515,0.2290170326287707,0.2210137492304535,11.06248748457484,5.657273655089145,20.28748082037265,12316.297168437904,55.18899216624786,13.566136239969389,17.537073556099998,12.41585651949452,11.669925850683962,0.5546891032218346,0.7876651982378855,0.686084142394822,0.5752688172043011,0.0993500464252553,0.7175097276264591,0.9152542372881356,0.8542199488491049,0.6934306569343066,0.0966183574879227,0.4963768115942029,0.7146814404432132,0.6291161178509532,0.5368171021377672,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0047934169056619,0.0071731498954972,0.0092727069601161,0.011641976187329,0.0137814510219037,0.0161605869166496,0.0181606709245618,0.0204925987598197,0.0225607759679135,0.0246721311475409,0.0267974392646093,0.0289248980178995,0.0309068266727046,0.0330897133255677,0.0353889061047412,0.0377327248077659,0.0398552227661163,0.0420036172380101,0.0441141238112103,0.0579486269557139,0.0724232817518859,0.0857118880532041,0.0979841635382819,0.1104925775978407,0.1261988093853425,0.138766940255774,0.1498601078711928,0.1607240108921992,0.1711434573829531,0.1838476690741956,0.1957563238777077,0.2069471464748014,0.2182249218869491,0.2278333516543915,0.2383534358747372,0.2486484678920557,0.2575995866004628,0.2660718941652591,0.2731735225127296,0.2803278120051322,0.2869816260694749,0.2937510347926866,0.3001760879721134,0.3051750288175696,0.3106151990349819,0.3154197137321082,0.3206661408106664,0.324837878768267,0.3289437260252303,0.3270908675369372,0.3265350967547004,0.3264583069720359,0.3253477477477478,0.323981860216966,0.3224152923766953,0.3200378668349637,0.3200575737254453,0.3201191996594295,0.3205920595621894,0.3215175177424489,0.3218456674241676,0.3230107977775448,0.3245598315487657,0.3260193378824778,0.3271772634658586,0.3292700293355359,0.3333543267414032,0.335738674363758,0.3391819845627437,0.3424469641550841,0.3457495063770746,0.3494242692648361,0.3485958485958486,0.3522301349325337,0.3529135338345864,0.3585274229902329,0.3577268195413758,0.3601729262361524,0.3558745749905553,0.0,1.77240122072252,56.761162631352846,185.1566507086794,266.3607708026186,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95700,44566,421.6509926854754,6218,63.41692789968652,4821,49.50888192267502,1925,19.51933124346917,77.37264048070351,79.73164534134209,63.34029949113111,65.0817620134446,77.12696212687348,79.49421705057316,63.24715552152371,64.99583546228904,0.24567835383003,237.428290768932,0.0931439696074036,85.92655115556624,162.65568,114.01255977374416,169964.1379310345,119135.381163787,356.98855,231.48749310764697,372153.1347962383,241013.05444895197,368.54303,178.7257517063762,379600.710553814,182534.79256695788,2784.2784,1290.3172606053868,2860193.2288401253,1299211.1611032323,1149.96108,513.7678340597728,1180988.9864158828,516247.20025450905,1886.56226,804.4345718917249,1915401.3375130617,793661.50746696,0.38004,100000,0,739344,7725.64263322884,0,0.0,0,0.0,30423,316.9801462904911,0,0.0,33659,346.34273772204807,1591364,0,57111,0,0,6389,0,0,61,0.6269592476489028,0,0.0,0,0.0,0,0.0,0.06218,0.1636143563835385,0.3095850755870055,0.01925,0.3316960859554873,0.6683039140445126,24.36883463307933,4.391279714042036,0.3262808545944825,0.2254718937979672,0.2225679319643227,0.2256793196432275,11.566773522420371,6.113161950325408,20.584979351304987,12275.830542542928,54.73924197532607,12.95785400415357,17.865018144882132,12.025259538190593,11.891110288099764,0.5561086911429164,0.7690892364305428,0.6986649713922441,0.5936626281453867,0.1001838235294117,0.7179681576952237,0.9205128205128204,0.8726415094339622,0.6951672862453532,0.1313559322033898,0.4951456310679611,0.6843615494978479,0.6344647519582245,0.5597014925373134,0.0915492957746478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303797468354,0.0046618629209611,0.0071619140367428,0.0094653883652908,0.0114490233759367,0.0136510780381537,0.0155143063922611,0.0175768092273144,0.0200049066710281,0.0222649892002006,0.024607308370586,0.026694319243524,0.0286478149100257,0.0307730334301427,0.0327672657491282,0.0350380353894493,0.0371286872430966,0.0390838934528254,0.0413063362714119,0.043124101581217,0.0574236127065015,0.0715885307660108,0.0848651992911296,0.0977809546835416,0.1095530791046821,0.1252868094105207,0.1381260011244417,0.1497222044830449,0.1610732520134156,0.1719688518963446,0.1847439736326231,0.196591462424931,0.2082907303065242,0.2183715664074037,0.2280500957453833,0.2386060169538478,0.2478341445987585,0.2566666666666666,0.2646888386415025,0.2723894292530739,0.2799666554746385,0.2868147176923707,0.292795942310655,0.2984241667766829,0.3039153696498054,0.309463010251286,0.3133743284030709,0.318669992110554,0.3226570999326529,0.327206270452866,0.3262663382196556,0.3261353946029213,0.3243136647275083,0.3228930290372468,0.3225317358860778,0.3216561485203112,0.3195644604817523,0.3198272889954195,0.320168482802135,0.3208625663307098,0.3217806991335524,0.3232265558858853,0.3249001609969264,0.3259033056193299,0.3263765754540662,0.3276770192781713,0.3285896527285613,0.3316987850204579,0.3332170758928571,0.335234648518941,0.3364076133640761,0.3400634249471458,0.3445716442319789,0.3465706707086017,0.3468245826727595,0.3471715864988827,0.3511995141208624,0.3477737665463297,0.3537581699346405,0.3622969399319984,0.0,3.376901791858269,56.68117652878559,179.64350782058818,260.37710200697154,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95746,44331,419.0044492720323,5929,60.81716207465586,4699,48.53466463350949,1916,19.71883942932342,77.33281654085012,79.69804967075537,63.319784280511655,65.07072123988058,77.09656086890037,79.46079174820055,63.23242753302659,64.98512738444772,0.236255671949749,237.25792255481792,0.0873567474850673,85.59385543286169,164.27092,114.97752126780158,171569.2561569152,120085.76909713369,352.85911,228.36308377281665,368001.5353121801,237974.9756596168,358.97687,174.5147331607945,370850.78227811086,179237.30042578888,2725.8602,1251.7955952648688,2818435.9451047564,1278951.535171045,1138.336,502.5524796068416,1176018.5699663693,511987.1530997033,1890.1823,789.6968938027404,1947183.3601403716,801684.0706631719,0.37942,100000,0,746686,7798.602552587054,0,0.0,0,0.0,30065,313.4439036617718,0,0.0,32745,338.0611200467905,1589102,0,57110,0,0,6445,0,0,72,0.7311010381634743,0,0.0,1,0.0104443005451924,0,0.0,0.05929,0.1562648252596067,0.323157362118401,0.01916,0.3346166185434713,0.6653833814565288,24.672208305027866,4.480685224565813,0.3136837625026601,0.2277080229836135,0.2179187061076825,0.2406895084060438,11.267544449367657,5.722771246536365,20.37478847084472,12247.694258841966,53.13051582192092,12.86624106995694,16.54112440628274,11.342361801535809,12.380788544145426,0.5547988933815705,0.8074766355140187,0.7008141112618724,0.5712890625,0.1105216622458001,0.731974921630094,0.9397590361445785,0.8835978835978836,0.7,0.1255605381165919,0.4887525562372188,0.7236641221374046,0.6377737226277372,0.5274869109947644,0.1068281938325991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190923000537,0.0045236477234692,0.0067621078282059,0.0091277787377644,0.0113640988076343,0.0135878422425032,0.0157966122436492,0.01791730474732,0.0200813889286517,0.0221992402289552,0.0243802415468842,0.0267175964431301,0.0287280092949607,0.0309265610034912,0.0329330196855268,0.0351218100445482,0.037178956089478,0.0393105094384657,0.041218246664795,0.0431394609911345,0.0580552887626842,0.0722423912702315,0.0849823303027443,0.0970689038878025,0.1096108440846614,0.1248149558008712,0.1373272671354183,0.1492416582406471,0.1601388518024032,0.1700466512949756,0.1835350359619277,0.1959710922624199,0.206938176281877,0.217407941922505,0.2275642083264587,0.2383214305486353,0.2478518981409155,0.2565952370233647,0.2652994052753439,0.2731353195777131,0.2799041677758359,0.2865321126694607,0.2927441805366345,0.2976664428242517,0.3035065329687025,0.3091299359757226,0.3139278557114228,0.3191827902240325,0.3243159203980099,0.3274480026411357,0.3262424724156978,0.3247869132368533,0.3239051352189729,0.3229011497577554,0.322007917373575,0.3203279442188338,0.3184128441819592,0.3190256553354234,0.3191830880092893,0.3189936658042644,0.3200936768149883,0.3206383104941567,0.3212887558356187,0.3213743186489143,0.3218647816887863,0.3222314954879766,0.3221702418986764,0.3243966141162402,0.3276195159647335,0.3293584545671357,0.3326046363346541,0.3374787414965986,0.3433606041535557,0.3453537807470391,0.3494955156950672,0.3502532092804145,0.3519052679520267,0.3557344064386318,0.3582171178561663,0.3577668059248006,0.0,2.1229417296370694,55.86788408699526,169.914028225178,260.7208599373559,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95783,44866,424.2715304385956,6079,62.23442573316768,4771,49.26761533883883,1885,19.262290803169662,77.34910350822409,79.67589284313713,63.34642956891118,65.0661334930074,77.11206676051866,79.44202709946697,63.25776229619542,64.98099551742335,0.2370367477054316,233.8657436701652,0.0886672727157531,85.1379755840469,163.30974,114.41338010038444,170499.4832068321,119450.38274055364,356.61223,231.1348650029537,371742.4490776025,240740.7420971922,367.19513,177.58397214488443,379771.5252184626,182714.43893006077,2755.65996,1268.1005834193188,2847924.871845735,1294873.3109417304,1119.49404,496.2239579584559,1155378.2925988953,504702.0422689272,1848.41496,778.518075475091,1891700.0093962396,782210.5318720723,0.3826,100000,0,742317,7749.976509401459,0,0.0,0,0.0,30397,316.7681112514747,0,0.0,33568,346.9091592453776,1589997,0,57104,0,0,6412,0,0,64,0.6681770251506008,0,0.0,0,0.0,0,0.0,0.06079,0.1588865656037637,0.3100838953775292,0.01885,0.3402690863579474,0.6597309136420526,24.56491714104955,4.348914108992196,0.3190106895828967,0.2337036260741982,0.2244812408300146,0.2228044435128904,11.096027330198362,5.740333118248247,20.071956940205,12314.985209888802,54.11927512171875,13.359468977599676,17.32910682980146,11.767066836521092,11.663632477796511,0.5577447076084678,0.7946188340807175,0.6925098554533509,0.5564892623716153,0.1175917215428033,0.7122529644268775,0.9238329238329238,0.8535353535353535,0.6651982378854625,0.1531914893617021,0.5019965772960638,0.7203389830508474,0.6358792184724689,0.5272511848341233,0.107487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657809462086,0.0042976312348594,0.0065435067108987,0.0087149952768382,0.0110119168666368,0.0132843356814202,0.0154100165107319,0.0177884370056641,0.020088076919147,0.0222831536084794,0.0242288266691254,0.026680075114673,0.0287340965613631,0.0308164189550825,0.0328174779103215,0.0347972484455369,0.036919765733325,0.0391426971651355,0.0411267781252922,0.043340622722066,0.0581274002337618,0.071956742283999,0.0860881326078067,0.0990163520955063,0.1114447992075785,0.1269826174248428,0.1391338449145716,0.1505226554939971,0.1612916995709986,0.1720572952936009,0.1847163922075126,0.1967858456081154,0.2076764162226813,0.2180969149506239,0.2284585676089037,0.2390762585147034,0.2483815519242789,0.2574162787036412,0.2655047995098373,0.2728282273206026,0.2805885210632243,0.2876814900611889,0.2938858116744781,0.2992726096178504,0.3049777162495294,0.3104017950709521,0.3152512672883159,0.320192466808386,0.3249138176822788,0.3283808769149498,0.3273011466993653,0.3256076568202162,0.3249285120649096,0.3243864033630441,0.32416782967604,0.3221111910263669,0.3206541509165388,0.3212821101669892,0.3219393153349943,0.323501053458558,0.3239254611855042,0.3245751142591457,0.3245757385292269,0.3256006628003314,0.3273845411793079,0.3294970050482592,0.3301676297271011,0.3336809176225234,0.337293333803363,0.3390960632436317,0.340687508582414,0.34342357706246,0.3454568576333693,0.3476197765192101,0.3506763787721124,0.3524895020995801,0.3530232558139535,0.351655087862689,0.3594572140681252,0.3559055118110236,0.0,2.0249404844771117,55.400672000999855,183.11297111690635,258.8081132285662,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95660,44423,420.4265105582271,6189,63.42253815596906,4869,50.24043487351035,1926,19.76792807861175,77.31532774038504,79.70734366517786,63.31028192710126,65.07632365829039,77.07892374768903,79.47183801225474,63.222907260906986,64.99167254796046,0.2364039926960117,235.50565292312345,0.0873746661942718,84.65111032992922,162.37914,113.74637069227305,169746.12168095337,118906.93152025198,352.68615,227.9703413433269,368050.1777127326,237676.13562965384,366.93051,177.38736670442944,378728.4863056659,181808.2054589935,2802.19716,1293.8911717931785,2894504.327827723,1317767.9822215952,1150.90517,510.9176556995029,1188197.815178758,519174.697574224,1888.00074,788.3622767303617,1939629.7721095548,794281.3517319629,0.3805,100000,0,738087,7715.732803679699,0,0.0,0,0.0,30091,313.9034079029898,0,0.0,33676,347.4074848421493,1595951,0,57267,0,0,6402,0,0,67,0.679489859920552,0,0.0,1,0.0104536901526238,0,0.0,0.06189,0.1626544021024967,0.3111972855065438,0.01926,0.3378399139652788,0.6621600860347212,24.241837649686317,4.354487515942335,0.3253234750462107,0.2335181762168823,0.2205791743684534,0.2205791743684534,11.34842077076674,5.81935918204055,20.48409557111441,12334.294871005006,55.670701918062335,13.741817448380427,17.98666895148945,12.115087912368482,11.827127605823982,0.5676730334771001,0.7959542656112577,0.7152777777777778,0.5605214152700186,0.1154562383612663,0.7427293064876958,0.9123222748815166,0.8828828828828829,0.7241379310344828,0.1401869158878504,0.5011337868480725,0.7272727272727273,0.65,0.5079950799507995,0.1093023255813953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0045824124576735,0.0068602975501836,0.0092861642248999,0.01153564453125,0.0137407690348866,0.0159214230345559,0.0179357540472907,0.0202075983023981,0.0224568374055338,0.0247266834861444,0.0267793859333751,0.0286707747384447,0.0308500772797527,0.0330715000877365,0.0349160711146045,0.0369276677753256,0.0391601278698052,0.0410468720743961,0.0429621137109802,0.0575273479537357,0.0709386943091984,0.0843015628115914,0.097440862025423,0.1096055214335465,0.1250079386921269,0.1382415085524988,0.1496069701552947,0.1614599476299898,0.172199147858377,0.1849464915022254,0.1960871354020051,0.2072797727247989,0.2177709689774033,0.2274789656843311,0.2382753152273962,0.2486738807553575,0.2581073478114099,0.2666598551415662,0.2743983497593399,0.282286733287787,0.2894043843119813,0.2965072223537769,0.3024798742666554,0.3077726880596833,0.3123790267897871,0.3170377419920359,0.3214249350913811,0.3255901280607026,0.3301161869553736,0.3290673707750131,0.3283715678444548,0.3273628478089445,0.325072654453971,0.3242435950781668,0.3223593544237895,0.3199341647148193,0.3207908790092717,0.3215930411052362,0.3230911812932202,0.3230579531442663,0.3235154862892089,0.3255380621388493,0.3265105470146585,0.3282027849258074,0.329294350635814,0.3300477129224879,0.3321315623023403,0.3320962782313646,0.3345464725643897,0.3361891235625601,0.3406569965870307,0.3394862036156041,0.3420303240206265,0.3447423464536984,0.3526668261181535,0.355202929508697,0.3610778443113772,0.3675660792951541,0.3699047619047619,0.0,2.605047691014358,58.57061131576877,188.12343514224688,257.00475707623343,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95623,44169,418.0165859678111,6049,61.98299572278636,4737,48.92128462817523,1862,19.053993286134087,77.3146043072854,79.7328584451174,63.296484254502126,65.08265944523393,77.07619820534325,79.49769745885364,63.2066740917434,64.99705323764908,0.2384061019421608,235.16098626376447,0.0898101627587237,85.6062075848456,163.03254,114.11574594442013,170494.6508685149,119338.79731692182,351.77375,227.35004048356737,367237.06639615993,237119.4528995088,357.40502,172.87710304370924,369955.16768978175,177903.20193804856,2686.88468,1239.8347148126757,2776251.8222603346,1263038.3656784203,1110.34076,492.11494215325627,1147471.026845006,500994.7233025878,1820.37366,774.6499413744086,1864392.457881472,777077.4444294946,0.37813,100000,0,741057,7749.756857659768,0,0.0,0,0.0,29937,312.4143772941656,0,0.0,32754,338.71558097947144,1594413,0,57142,0,0,6283,0,0,67,0.7006682492705729,0,0.0,2,0.0209154701274797,0,0.0,0.06049,0.159971438394203,0.3078194742932716,0.01862,0.333596214511041,0.666403785488959,24.536004005163907,4.272759882305328,0.3172894236858771,0.2469917669411019,0.2191260291323622,0.2165927802406586,11.193328535464376,5.871920266232788,19.994897939848165,12234.839556838486,53.73574598249649,13.94884201935684,16.915829134505888,11.475451323357955,11.395623505275802,0.5659700232214482,0.7666666666666667,0.7032601463739189,0.5915221579961464,0.1101364522417154,0.7324281150159745,0.9200968523002422,0.8940217391304348,0.7377049180327869,0.1233480176211453,0.5061692969870876,0.6829590488771466,0.641409691629956,0.5465994962216625,0.1063829787234042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021379429138844,0.0044214134325785,0.0065679944776058,0.0086572168876695,0.01080322265625,0.0132613566917905,0.0152793219163411,0.0175503115742159,0.0197604606682963,0.0219557403406007,0.0240617852490794,0.0263587710197331,0.0285385074381185,0.0307055053528557,0.0329393548387096,0.0349088502621265,0.0370646688841223,0.0390090436191089,0.040977294957441,0.0429943779792016,0.0573145873621491,0.070944424074171,0.0844123793621288,0.0963945470814253,0.1083854078702921,0.1239966962451555,0.1361178682586388,0.1482484093403958,0.1593367210484086,0.1701494461574825,0.1823498311375824,0.1936976976108919,0.2057144102519396,0.216725830484705,0.2268348067638175,0.2369399465056657,0.2468901232774133,0.2562874656330283,0.2646721283534264,0.2731037014096785,0.2806924101198402,0.287439302638507,0.2938544046787503,0.2982937854462176,0.3042042114978262,0.3094988725556637,0.31455234616395,0.3194557477110885,0.323343685300207,0.3275814303241382,0.3273569159532655,0.3261198339153628,0.3237365485379458,0.3226874475898563,0.3220142257670902,0.3199128820994187,0.3189366662965724,0.3196081659532433,0.3195464214643518,0.3195625324431238,0.3203259647808167,0.3218311524515214,0.3222924884686828,0.3228992486567231,0.3228369065849923,0.3233801211995649,0.3242952259526845,0.3279588336192109,0.3317657714146375,0.3353971133370139,0.340241094406068,0.3411032591498787,0.3405234941658783,0.3423594736441774,0.3453811490799849,0.3470265106281347,0.3538175046554935,0.3637477036129822,0.3744505494505494,0.3794174757281553,0.0,2.32961604555344,54.75065315300872,181.79757679257625,256.62064116398267,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95631,44325,419.74882621744,6147,62.90847110246677,4799,49.4504919952735,1900,19.31382083215693,77.29129418892526,79.69121919475504,63.29829466637945,65.06994932822366,77.04323871918844,79.44964992678582,63.20477953057722,64.98217960348268,0.2480554697368262,241.5692679692114,0.0935151358022281,87.76972474097988,162.89306,114.05161242761692,170334.9959741088,119262.17693803988,350.77217,227.52457932796813,366000.3659901078,237124.38451333236,362.30399,175.5133665882844,374723.47878825903,180270.65961901413,2742.37788,1267.3334213150472,2827735.3159540314,1285503.8180352424,1158.31308,517.3520181090985,1191661.856510964,521509.21322314127,1864.83762,798.5067091934507,1898984.325166525,792404.543150477,0.3793,100000,0,740423,7742.499817004946,0,0.0,0,0.0,29972,312.5973795108281,0,0.0,33201,343.0791270613085,1591925,0,57160,0,0,6466,0,0,59,0.606497892942665,0,0.0,1,0.0104568602231493,0,0.0,0.06147,0.1620616925916161,0.3090938669269562,0.019,0.3410888785481619,0.658911121451838,24.429256196618315,4.373841190294498,0.3277766201291935,0.2306730568868514,0.2171285684517608,0.2244217545321942,11.344385792427548,5.918072841091258,20.52356064944304,12288.542113580455,54.62647386262997,13.223308638719,17.857808101542652,11.54995060047547,11.99540652189286,0.5672015003125651,0.8021680216802168,0.7094723458359822,0.5806142034548945,0.1049210770659238,0.7225609756097561,0.9328165374677002,0.8820754716981132,0.708,0.1434262948207171,0.5087467737310009,0.7319444444444444,0.6457789382071366,0.5404040404040404,0.0932203389830508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323379556942,0.004674034269492,0.0068917917643595,0.0090133116553195,0.0114661864501622,0.0135967815857819,0.0157228215429165,0.0180121306185798,0.020172174055292,0.0223414494296889,0.0243254607172524,0.0262725442668748,0.0284864820377762,0.0307283294175837,0.032726296663363,0.0346186466974204,0.0365737382112136,0.0386472426718722,0.0405702096665105,0.0426410333934547,0.0568618844578212,0.071406873579352,0.0845058591289008,0.0967738540076838,0.1091889723887528,0.1244800101616334,0.1358303871919822,0.1478731450607749,0.1593071741687159,0.1695171836248268,0.1831032995471209,0.1957701179298918,0.2078026691050007,0.218850942218621,0.2287282708142726,0.2381607410283432,0.2472678511565538,0.2567136953755728,0.264733937453158,0.2720073348232193,0.2798193817297673,0.2866871833276776,0.2930530056262955,0.2994745429243245,0.3054744525547445,0.3106666666666666,0.3148466196141358,0.3205043216644144,0.324064462552551,0.3285995481987397,0.3278779136389986,0.3264861585971104,0.3259592850890815,0.3245854153088565,0.3234531859751556,0.3217002443409709,0.321054469273743,0.3214226878850779,0.3219246201858774,0.3228280149785892,0.3236372525054998,0.3243371963803778,0.3261057014868872,0.3268609865470852,0.3290179753110186,0.332585910204933,0.3331817665113106,0.3369967970859762,0.340317080887264,0.342154482868399,0.3432570438588492,0.3442188411175316,0.3482791285127881,0.3519809947122385,0.3521553765987683,0.3548890221955609,0.3583734285270836,0.3639371381306865,0.3647746243739566,0.3687428353076041,0.0,2.741555870692085,57.02599495717681,177.18824434078073,263.72819291649074,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95638,44283,419.4044208369058,6266,64.34680775423995,4938,51.098935569543485,1913,19.69928271189276,77.27514686010801,79.6867646566083,63.27600815666828,65.05662705724707,77.0302340471491,79.44171164751678,63.18470209949403,64.96778447213063,0.2449128129589155,245.05300909152083,0.0913060571742505,88.8425851164385,161.9101,113.4374759627886,169294.73640184864,118611.3009084136,353.13855,227.67744751971532,368719.6825529601,237536.3637045059,365.68137,176.78639274904748,379210.3766285368,182375.16835569855,2828.39116,1304.6017025172248,2927884.062820218,1334595.3517610417,1204.15731,532.9835674113125,1244099.5943035197,542315.7113328831,1886.04756,799.301292269421,1943253.7485100063,809062.6054019572,0.37904,100000,0,735955,7695.215290993119,0,0.0,0,0.0,30014,313.26460193646875,0,0.0,33476,346.8495786193772,1595749,0,57281,0,0,6166,0,0,71,0.7423827348961709,0,0.0,0,0.0,0,0.0,0.06266,0.1653123680878007,0.3052984360038302,0.01913,0.3349529304585484,0.6650470695414515,24.63500264276704,4.344632648889093,0.3165249088699878,0.2403807209396516,0.2134467395706764,0.229647630619684,11.249083706023336,5.812138116434995,20.47463358003046,12270.163979719047,56.11649967094665,14.188375611394951,17.640394995841465,11.722006347165204,12.565722716545029,0.5664236533009316,0.7885425442291492,0.7031349968010236,0.5806451612903226,0.1322751322751322,0.7294028722600151,0.903529411764706,0.8888888888888888,0.7238493723849372,0.135593220338983,0.5067773167358229,0.7244094488188977,0.6342105263157894,0.5386503067484663,0.131403118040089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0046319288892492,0.0069910202425041,0.0093651599796851,0.0115440555742023,0.0137791266090923,0.015968511644981,0.0184173719512817,0.0202938259740525,0.0223009501965924,0.0243094376006482,0.0262887551108462,0.0284685426205051,0.0305416688141009,0.0325798490277677,0.0346250931060167,0.0363920934523254,0.0385506132580045,0.0405740093240093,0.0426426113254771,0.0575889964255105,0.0716740715902422,0.0846473029045643,0.0972662628390834,0.1096862786521601,0.1249602846794179,0.1380860288179538,0.1498257096867038,0.1600346761419581,0.1709605649243865,0.1839695975125237,0.1962345183610611,0.2074017550553224,0.2180049569012787,0.2276263947290004,0.238646967340591,0.248016117298114,0.2571886426217668,0.2646693909143683,0.2717467464592977,0.2783172647430766,0.2852384024397396,0.2920424340231631,0.2987891310092977,0.3042065684282255,0.3096284409332181,0.3154732789003022,0.3200142704245451,0.3233972944200659,0.3272477112769222,0.3264622902576978,0.3256362507759155,0.3245356517811776,0.3234238406761998,0.3231055253959991,0.320976866117831,0.3185654342490697,0.3193942579331187,0.3205416837221995,0.3206319205463331,0.3221228652306769,0.3225659870396712,0.3231546296684411,0.3260606874328678,0.3262694537319895,0.3281290726163791,0.3300099700897308,0.3329240649792218,0.3358075069476202,0.3388994910941476,0.3392824622108905,0.3429270628291748,0.345046517475484,0.3505076526746477,0.3555054490792935,0.3558494162497022,0.3575487636307787,0.3522357723577236,0.3601987303339773,0.3666538016209957,0.0,2.080488274358176,58.30641935797159,186.7671124758708,268.9820256464798,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95694,44448,420.2562334106631,6171,63.441804083850606,4856,50.253934415950845,1851,19.03985620833072,77.28391542799022,79.67966099644156,63.28504443165552,65.05876910826885,77.0578257102815,79.45447559392373,63.20174119350944,64.97820374382432,0.2260897177087173,225.1854025178233,0.0833032381460867,80.56536444452433,161.46504,113.16472340311032,168730.57871966896,118256.86396546316,353.95921,227.9737445987556,369408.29101093067,237753.7824719999,365.09617,175.8127614154999,378265.1576901373,181312.6509765856,2790.23056,1275.263763957592,2889264.906890714,1306128.246240717,1151.85309,505.4549955339639,1191278.9516584112,515794.4965556503,1816.85184,755.8748258721528,1870087.069199741,764383.4286616171,0.38041,100000,0,733932,7669.571759984952,0,0.0,0,0.0,30150,314.565176500094,0,0.0,33414,345.946454323155,1599811,0,57452,0,0,6476,0,0,62,0.6478985098334273,0,0.0,0,0.0,0,0.0,0.06171,0.1622197103125575,0.2999513855128828,0.01851,0.333179012345679,0.666820987654321,24.676262044311397,4.3347311947109,0.3292833607907743,0.2322899505766062,0.2189044481054365,0.2195222405271828,11.109876242010095,5.736371614084391,19.61778632535288,12292.049814576896,55.16562861058872,13.661670796329076,18.03295119463833,11.811088248364566,11.659918371256746,0.5599258649093904,0.7712765957446809,0.7085678549093183,0.5559736594543744,0.1172607879924953,0.7326035965598123,0.9028436018957346,0.8540145985401459,0.7424892703862661,0.1502347417840375,0.4981828347777467,0.6926345609065155,0.6582491582491582,0.5036144578313253,0.1090269636576787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0044121226874391,0.0066093383554829,0.0089125110517169,0.0109886755593541,0.0132018580392796,0.0153704931409046,0.0174143073089022,0.0195857836870365,0.0217275502468806,0.0239756242690358,0.0261600427438247,0.0282153918975931,0.0304638628095596,0.0325980366856942,0.0346022192576965,0.036783371843624,0.0392156862745098,0.0414616640835474,0.043314226159458,0.057703356279575,0.0712333930085743,0.0844606294667688,0.0966706652355998,0.1088009625228229,0.1237364382111669,0.1356184165817193,0.1474152804106583,0.1587194698305809,0.170045613093641,0.1822845933303153,0.1947116426188309,0.2066329863681895,0.2166400210245067,0.2267036939081372,0.2372110059158462,0.2472947594348059,0.256350154387072,0.2651333507573777,0.273283020599165,0.281476415149021,0.2878111115018933,0.2954238132517258,0.3011488457521518,0.3064331613280109,0.3119169833670598,0.3172815533980582,0.3213562946275153,0.3265076157911097,0.330189799121569,0.3297739116383663,0.3296930017605634,0.3283180858550317,0.3267904049880206,0.3258264954215721,0.323385601079076,0.3219179167128669,0.3233943449452207,0.324367277885059,0.323746918652424,0.3248493721493327,0.3252534068593418,0.3253854579155784,0.3255081849253463,0.3244454131550905,0.3247617052477218,0.3271025370280528,0.329821130004101,0.332841898343162,0.3328057610889091,0.335832765280618,0.3366305210261835,0.3388996199140133,0.3431028037383177,0.344955146582817,0.351576233446619,0.346545178435839,0.3459677419354838,0.3492239467849224,0.3436662839647914,0.0,1.9396239913265605,56.50684531935304,187.0298326862188,263.72062376273993,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95649,44557,421.3321623853882,6120,62.56207592342837,4870,50.22530293050633,1928,19.73883678867526,77.35161970545354,79.75662643507152,63.31721993396855,65.09396757371502,77.10959212115044,79.51742775697682,63.22803278521456,65.00831374269528,0.2420275843031021,239.1986780947093,0.089187148753993,85.65383101974078,162.74214,113.95148198736194,170145.1557256218,119135.04792246856,352.93095,228.6090645645028,368331.0855314744,238355.71831203185,365.20604,177.08041492488076,377405.0434400778,181749.69171106623,2788.512,1277.17976756516,2878620.205124988,1298698.7886829134,1180.88178,525.480857040338,1213694.8844211649,528822.1136426264,1893.09762,789.3534853370206,1940588.5268011163,793974.7974391603,0.37995,100000,0,739737,7733.870714800991,0,0.0,0,0.0,30064,313.6154063293918,0,0.0,33411,344.9487187529404,1594866,0,57174,0,0,6480,0,0,67,0.6900228962142835,0,0.0,1,0.010454892366883,0,0.0,0.0612,0.1610738255033557,0.3150326797385621,0.01928,0.327930174563591,0.672069825436409,24.269508207437248,4.383356480544959,0.317864476386037,0.233264887063655,0.2254620123203285,0.2234086242299794,11.192131742373014,5.745553274193755,20.5118390207617,12342.785033187934,55.25699712666936,13.7068910032916,17.54118066011269,12.089278678974052,11.919646784291029,0.5560574948665298,0.7596830985915493,0.6931524547803618,0.5837887067395264,0.1204044117647058,0.7226053639846743,0.9064748201438848,0.8661800486618005,0.6887966804979253,0.1822033898305084,0.4950911640953717,0.674547983310153,0.6306068601583114,0.5542590431738623,0.1032863849765258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020263219217637,0.0045124980986665,0.0064850711429557,0.0087072258798667,0.0110468014118748,0.0136280301487064,0.015918013562433,0.0184926121452859,0.020961145194274,0.0232408071289562,0.0252785358146787,0.0274780607106891,0.0295552308230596,0.0314333137455025,0.0331976780217737,0.035290466090735,0.0373337755620277,0.0392413342053629,0.0413454435739775,0.043605196755156,0.058431380744394,0.072652838999466,0.0851535030175806,0.0987584175084175,0.1106831157592578,0.1258771604872937,0.137999129410016,0.1496829203304023,0.1614690873300311,0.1714614005132996,0.183874828816977,0.1960546413753507,0.2077527649568928,0.2179724359886591,0.2278924300156377,0.2386173408866667,0.2482766325903581,0.2573680063041765,0.2656056667385604,0.2732082732082732,0.2805631391421035,0.2872405086964653,0.2937196924896511,0.2995329341317365,0.3043256626856976,0.3095141376466388,0.3153713557670689,0.3210621222126276,0.3255222126054437,0.3303764148460121,0.3297351794596048,0.3288154678531213,0.3285039104259269,0.3277971775706328,0.326097930338213,0.3241142997001774,0.3219819136153797,0.3217970377417291,0.3233164868187406,0.3238491333916427,0.3250918497413211,0.3252714708785785,0.3261812467260345,0.3274326405786101,0.3278181425796705,0.3294108478802992,0.3314579603898502,0.3359997490432273,0.3387023355159494,0.3403446226975639,0.340361719531037,0.3426481423008104,0.3462908568214486,0.3520956271750643,0.3538475905864774,0.3569472556256697,0.3596248462484624,0.3633238980994743,0.371909807117631,0.3688370342491532,0.0,2.6929583064025606,56.79895996527869,183.00384559909057,265.7924351625031,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95787,44548,422.2598056103647,6082,62.28402601605645,4783,49.31775710691429,1890,19.2719262530406,77.3507064425629,79.67763879338791,63.34838135415546,65.06946706608007,77.1119969052321,79.4440552118985,63.25869264504265,64.98477718906162,0.2387095373307914,233.5835814894125,0.0896887091128064,84.6898770184481,163.91672,114.73740302736783,171126.26974432857,119783.89867870156,357.23417,231.09182963076168,372320.6280601752,240630.9940775153,359.11546,173.68045052675276,371445.384029148,178699.6750653019,2742.19136,1263.5800027432754,2829359.7669829936,1285787.0477553762,1117.77029,502.5879821586926,1150691.492582501,508647.3350195105,1856.0401,787.5349902116038,1895580.2561934288,786282.6544310536,0.38094,100000,0,745076,7778.466806560388,0,0.0,0,0.0,30451,317.24555524236064,0,0.0,32927,340.2549406495662,1591057,0,57096,0,0,6403,0,0,63,0.6577092924927181,0,0.0,0,0.0,0,0.0,0.06082,0.1596576888748884,0.3107530417625781,0.0189,0.3383092394720302,0.6616907605279698,24.5853574875,4.363425308750089,0.3140288521848212,0.2402257997072966,0.2209910098264687,0.2247543382814133,10.949673190033309,5.53439414696577,20.198171974423456,12251.254686283708,54.06155727520006,13.491020681956003,17.001839085949623,11.743026165363384,11.825671341931058,0.5429646665272841,0.7545691906005222,0.6691078561917443,0.5742667928098392,0.1097674418604651,0.7167051578137028,0.9097387173396676,0.8247422680412371,0.735632183908046,0.1572052401746725,0.4781859931113662,0.6648351648351648,0.6149012567324955,0.5213567839195979,0.0969267139479905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385640776305,0.0044302514193025,0.0066973119425248,0.0090910937753941,0.0114080039043435,0.0136927728628584,0.0159288247523541,0.018154728495474,0.0203255771176308,0.0222984036021285,0.0243255151496521,0.0265655622479657,0.0285288525769487,0.0305943875975376,0.0323378980366276,0.0343812308232693,0.0361644005711802,0.0380982987943313,0.04000332322519,0.0419759512779136,0.057044773939084,0.071215717437447,0.0838941652514833,0.0969165773377892,0.1091050895332047,0.1248731501057082,0.1376713999384922,0.1491805023414218,0.159405126672147,0.1699286158331368,0.1823769388919387,0.194848291591452,0.2065113448665565,0.2170939050241482,0.2270103251487195,0.2370077781834677,0.2473836140120147,0.256859396418058,0.2649052412042075,0.2725878623499387,0.2802499942237934,0.2867989767191935,0.2933724465052459,0.2994011976047904,0.305162496055921,0.3100029558106311,0.3142832137230877,0.3189389893441163,0.3232191169046355,0.3267385458955027,0.3266187050359712,0.3261826182618262,0.3250179494037982,0.3239689008352842,0.3233988209263301,0.321796658448062,0.3204403262849449,0.3201407501192101,0.3211964701053496,0.3217413059794846,0.3214788930845967,0.3221453904222227,0.3222970130416491,0.3240532517765584,0.3254888722783498,0.3270211597311223,0.3288554078826764,0.3313491435265807,0.3323099724751217,0.3353612469680703,0.3374233128834356,0.3395051789835238,0.3407949125596184,0.3425754775107825,0.3394191656418503,0.3431162013839179,0.3445507872800247,0.3513179571663921,0.3514726507713885,0.3572263342423062,0.0,2.2664729714303973,56.77735008091579,171.63969631118405,266.855746445622,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95737,44646,422.3027669553047,6116,62.77614715313829,4810,49.667317755935535,1917,19.647576172221815,77.31652017658898,79.67620186006423,63.31665033110207,65.06198126233325,77.0787257251508,79.43947988434914,63.22880386960877,64.977249474405,0.2377944514381766,236.7219757150849,0.0878464614932994,84.73178792824854,162.41324,113.8179635737332,169645.2155384021,118886.07703785706,353.22578,228.36932689342123,368348.0159186104,237931.92484976683,362.88837,175.42373470894643,374991.4139778769,180282.76013628775,2769.44748,1272.2431830057626,2861269.519621463,1297397.3521269343,1145.10437,503.0082719666527,1180864.0755402823,510186.6112292416,1885.63024,788.1961096261531,1934437.928909408,793270.7405136907,0.38242,100000,0,738242,7711.146160836459,0,0.0,0,0.0,30054,313.30624523433994,0,0.0,33302,343.90047734940515,1596403,0,57275,0,0,6398,0,0,68,0.6998339200100275,0,0.0,1,0.0104452823882093,0,0.0,0.06116,0.1599288740128654,0.3134401569653368,0.01917,0.3432835820895522,0.6567164179104478,24.601255567567897,4.3419431285489845,0.3182952182952183,0.2363825363825364,0.2122661122661122,0.233056133056133,11.342503202666895,5.870160232824359,20.494581711143816,12346.56987832616,54.8978212731969,13.790671741561638,17.377729420241764,11.470878340719173,12.258541770674332,0.5573804573804574,0.7968337730870713,0.7034617896799478,0.5690499510284035,0.1043710972346119,0.7303284950343774,0.9195402298850576,0.8774509803921569,0.7319148936170212,0.1125541125541125,0.4927163667523564,0.7207977207977208,0.6402493321460374,0.5203562340966921,0.1022471910112359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0045822730913109,0.0068612027404212,0.009144761575744,0.0114237467447916,0.0139123703990385,0.0158485716908202,0.0179937297672661,0.0202656414556088,0.0226670079344765,0.0247723730620949,0.0269534859841872,0.0292139684106614,0.0312522525305571,0.0330489855281751,0.0349947306428615,0.0369346707659182,0.0391485653824609,0.0409247305121568,0.0429963015054435,0.0578623706658035,0.0715877816263957,0.0849265361341541,0.097570977917981,0.1096091188038423,0.1252432729734303,0.1383074654416991,0.1501383862039599,0.1609081196581196,0.1713816742299893,0.1844435348356241,0.1972492452197249,0.2089730764212083,0.2196604462518994,0.2293198327096632,0.2398302361401992,0.2496008752832948,0.2588084417045403,0.2671902130122451,0.2751474884013976,0.2829837207418806,0.2905414098410507,0.2968385668801117,0.3024103609545509,0.307331421070543,0.3125940730870777,0.3171901613064823,0.3215377171089492,0.3257738634891853,0.3299090224868947,0.3284291931072579,0.3280860155765387,0.3269113970536307,0.3261269615869474,0.3249050703596158,0.3229296137734199,0.3213934764002916,0.3220528689469006,0.3218741431313408,0.32274250488325,0.3242644019390477,0.3250960358005623,0.3258549701705739,0.3262180766384897,0.3272867432728674,0.3267731929202617,0.3264263492878956,0.3285548115313276,0.3306434636165883,0.3328573695065842,0.3332878270762229,0.3365645805592543,0.3339846212025715,0.3379310344827586,0.3378061368114854,0.3407707910750507,0.3368146214099217,0.3321175278622087,0.330939226519337,0.3389830508474576,0.0,2.2316351194335646,57.46883181153248,184.0832171550076,258.353231118375,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95688,44587,422.3309087868908,6164,63.37262770671349,4798,49.66139954853273,1895,19.45907532814982,77.40264542862671,79.78377133523568,63.35728834693722,65.11228980756654,77.1704949597222,79.55230047634038,63.271637504363376,65.02930905919473,0.232150468904507,231.47085889530672,0.0856508425738411,82.98074837180991,163.26508,114.31969275776548,170622.31418777694,119471.2949980828,355.62986,229.17878293073903,371197.3079173982,239047.9505588361,363.32057,175.36298991505052,377098.40314354986,181173.08794854864,2737.69488,1245.299939817488,2834757.5453557395,1275110.6301913385,1115.06027,492.1574380291261,1152273.0854443607,501300.3072789961,1858.65244,770.8505187516521,1910447.976757796,778267.6146536418,0.38106,100000,0,742114,7755.559735808042,0,0.0,0,0.0,30304,316.2047487668255,0,0.0,33265,345.0484909288521,1596618,0,57252,0,0,6538,0,0,53,0.5434328233425298,0,0.0,2,0.0209012624362511,0,0.0,0.06164,0.1617593029969034,0.3074302401038287,0.01895,0.3364297878928626,0.6635702121071373,24.67991157509888,4.408926086640747,0.3140892038349312,0.2355147978324301,0.2244685285535639,0.2259274697790746,11.027856374379304,5.607208649989472,19.990552183980345,12315.010952233404,53.93707236517248,13.383022957055466,17.03433200042721,11.848817863317718,11.670899544372078,0.5612755314714465,0.7946902654867256,0.6980756469807564,0.5803156917363046,0.1088560885608856,0.750814332247557,0.918158567774936,0.8762135922330098,0.74235807860262,0.1632653061224489,0.496078431372549,0.7293640054127198,0.6310502283105023,0.5365566037735849,0.0968468468468468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468137031523,0.0044999847973486,0.0064820450395617,0.009049084427653,0.0112872555699047,0.0133902205567887,0.015588202310194,0.0176666904808075,0.0196208676102396,0.0217980862712991,0.0239962278462847,0.0261069532990442,0.0283058637246938,0.0303098962892777,0.0323462649607924,0.0342835290226558,0.0362826818534817,0.0386443351389494,0.0407271819618936,0.0426902352340354,0.0571539007981279,0.0711503424012062,0.0845698574936512,0.097732101908148,0.1102591416788837,0.1259071962082901,0.1385369580441841,0.1499632756032913,0.1615481609711269,0.1723287436194397,0.1843037593013363,0.1971366115487836,0.2089128614461106,0.2198970052809394,0.2294948517116958,0.239499147532272,0.2492670256290202,0.2586106180772428,0.2675925506366396,0.2753424344286662,0.2819470743084099,0.2883648202387481,0.2947434292866082,0.3002559441228531,0.3054104183588115,0.310789366858155,0.3155191803073847,0.3201574003554202,0.3242716189689017,0.3277284389184922,0.3271753285984721,0.3263733702581538,0.3255317954762305,0.3241445824756366,0.3230817069920336,0.3215600042756578,0.319047393290033,0.3196327567833429,0.3204167801688913,0.3208279200555269,0.3221869158878505,0.3227923979481535,0.3238142848215959,0.3244145668239693,0.3262683418049295,0.3272221355385655,0.3273880639472037,0.3325504931892907,0.3364761137008867,0.3391831398803628,0.3452440636251766,0.3489264212264905,0.3515797439616573,0.3554574516669204,0.3583482605826341,0.3608854350641705,0.3625248357022772,0.3647508038585209,0.3681064928008693,0.3683620044876589,0.0,1.9078481517589687,53.90141389146034,179.3730014345006,268.72704496199685,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95733,44656,421.83990891333184,6095,62.46539855640166,4767,49.27245568403789,1920,19.679734260913165,77.33907921770925,79.70478045381647,63.32552877917672,65.07504728533121,77.09861128092896,79.4666188300432,63.23502059535065,64.9877856121166,0.2404679367802913,238.16162377326577,0.090508183826067,87.26167321461276,162.51796,113.84628198645598,169761.69137079167,118920.6250576666,352.75748,227.8036414956356,367941.8695747548,237418.60329837733,361.3943,174.86070848554075,374594.6956639821,180358.9472318321,2751.74788,1267.69748807311,2846206.553643989,1296009.2424483823,1147.88383,512.2581499003271,1185992.5208653233,522041.8726274956,1881.92398,801.2566165774044,1931140.5889296276,806231.0583972037,0.3818,100000,0,738718,7716.440516854167,0,0.0,0,0.0,30069,313.50735900891016,0,0.0,33032,342.1704114568644,1597694,0,57315,0,0,6366,0,0,61,0.6267431293284447,0,0.0,1,0.0104457188221407,0,0.0,0.06095,0.1596385542168674,0.3150123051681706,0.0192,0.3361002349256068,0.6638997650743931,24.382738397611067,4.469131447894072,0.3188588210614642,0.2280260121669813,0.2263478078456052,0.2267673589259492,11.41658452645876,5.891029270166715,20.588204150963534,12355.681313554627,54.1049489096749,13.026724920162836,17.106252205246907,12.06058430176158,11.911387482503596,0.564715754143067,0.8058877644894205,0.6967105263157894,0.5848007414272475,0.1165587419056429,0.7093292212798766,0.9175257731958762,0.8762886597938144,0.7094339622641509,0.140625,0.5106628242074928,0.7439198855507868,0.6351590106007067,0.5442260442260443,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047045463762825,0.0070643403063244,0.009673223866038,0.0117697323581172,0.014085080813533,0.0164176821495946,0.0186627734841601,0.02093089838238,0.0230955160900469,0.0251879352251633,0.0272793566344504,0.0296504273240566,0.0318246911799552,0.034052436003303,0.0361515552614162,0.038070671597725,0.0398920713989207,0.0418958686451693,0.0438179772471558,0.0577910958904109,0.0717529138504676,0.0846457105710151,0.0975961134011945,0.1098011094003754,0.1262270457815012,0.138754204110214,0.1503087734241908,0.1616847100063053,0.172233966070413,0.1853823605483231,0.1974617475391729,0.2090219673807788,0.2192773193845615,0.2288803735024665,0.2393032564224811,0.2494024883289776,0.259413943330594,0.2677884124118669,0.274803122528285,0.281809340773844,0.2892963283644958,0.2961815084697644,0.3017080298965121,0.3066718452258135,0.3113870463579419,0.31533895657607,0.3200497973805561,0.3250562291564334,0.3286883841113733,0.3272561041196085,0.3264702646201243,0.3253227716073744,0.3251540843195694,0.3241141395666979,0.3220276667126246,0.3194193813910786,0.3205736910414168,0.3215410419661806,0.3221148684916801,0.3225933497121209,0.3240866970936321,0.3259609549915256,0.3257874015748031,0.327246550689862,0.3283322065630037,0.3303418803418803,0.3325891453367712,0.3348786569732729,0.3372439848876516,0.3397898583828232,0.3419957310565635,0.3443972889085956,0.3494298614831254,0.3496437945256843,0.3497805716996797,0.3547140649149923,0.3544510083520065,0.3513738551207327,0.346641074856046,0.0,1.990319657299056,57.22257768460074,175.89611273985986,260.81080876859625,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95684,44344,419.40136281928017,6044,61.96438275991807,4779,49.329041428033946,1895,19.38673132394131,77.30793472821749,79.68295687090352,63.31631099018998,65.06973767133405,77.07015098106399,79.44801170535573,63.22856981779736,64.98559149971453,0.2377837471535002,234.9451655477992,0.0877411723926187,84.14617161952265,163.6305,114.72042021393808,171011.3498599557,119895.09240200876,354.5011,228.85541290169232,369858.15810375824,238544.99488074533,362.52243,175.79235589745997,374661.3749425191,180456.3677152929,2751.90252,1262.9481414472818,2843811.0864930395,1287909.01360734,1145.61711,507.4243127351658,1182205.948747962,515306.9252269226,1860.53334,777.3809571301111,1906981.9405543243,782304.251614374,0.37948,100000,0,743775,7773.243175452531,0,0.0,0,0.0,30279,315.81037582040886,0,0.0,33215,342.99360394632333,1590122,0,57062,0,0,6519,0,0,55,0.5643576773546256,0,0.0,0,0.0,0,0.0,0.06044,0.1592705807947718,0.3135340833884844,0.01895,0.3365506329113924,0.6634493670886076,24.31111356074219,4.395680251704038,0.3180581711655158,0.2293366813140824,0.2261979493617911,0.2264071981586106,11.197843781559689,5.715702078295779,20.25448917734924,12294.456125166676,54.30898068017303,13.213497561448346,17.1712698867049,12.129959106253862,11.794254125765926,0.5591127851014857,0.7928832116788321,0.6815789473684211,0.5864939870490287,0.1229205175600739,0.7476635514018691,0.9435294117647058,0.8511749347258486,0.7596899224806202,0.1697247706422018,0.4898426323319027,0.6974664679582713,0.6244503078276166,0.5321992709599028,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0042864091443395,0.0066139847229125,0.008663768586983,0.0108819461394516,0.0135025049896134,0.0157946793649498,0.0181419091373149,0.0201598887730274,0.0226325864204481,0.0242344715880549,0.0265200517464424,0.028724224816167,0.0308134503646927,0.0330216911233566,0.0350363907038292,0.0369184540462128,0.0390577144696269,0.04114220326641,0.0431374184267039,0.0576517288206413,0.0720984759671746,0.085255946198315,0.0977638941478396,0.1100240374478134,0.1256318605782449,0.138393804370889,0.1493884589591561,0.1607337450054486,0.1708913036482413,0.184007323245921,0.1959778881208148,0.2074562929459859,0.218650923800153,0.2289847101528984,0.2389707918434256,0.2487670988329279,0.2573627016446554,0.2655948626018289,0.2728168126896867,0.2796364899282241,0.2867820797754123,0.2935126114076722,0.299181999184398,0.3041807524868059,0.3090664594051099,0.3138510507650471,0.3181632809114776,0.3231310169447544,0.3281425568760162,0.3277317724489521,0.3262947382939107,0.3253840506043149,0.3245722068475882,0.3237814236964847,0.3219662671311714,0.3204096213384139,0.3213355746728633,0.3217201866337313,0.3229399860307681,0.3240779035229537,0.3242991210491855,0.325716685918303,0.3253683880503426,0.3275957667365782,0.3289866457187745,0.3295983993139917,0.3313028657997727,0.335855193381885,0.3369405211855977,0.33936257899075,0.3394949925420839,0.3447381735390842,0.3493543210819897,0.3532183583074168,0.3568208778173191,0.3585735963581183,0.3569991954947707,0.3569688768606224,0.3570086433671552,0.0,2.3996741600785083,55.95277655155468,180.3807557121929,261.11434643535426,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95720,44742,423.6523192645215,6259,64.32302549101546,4892,50.66861679899708,1929,19.83911408274133,77.38171245272493,79.7545241055801,63.34258245905804,65.0945296509728,77.13953754549651,79.5120668806504,63.25251995159006,65.00632186913336,0.2421749072284171,242.45722492970856,0.0900625074679837,88.20778183944356,162.45768,113.78306180383149,169720.8524864187,118869.88974644095,353.80981,228.9560873814429,369179.7743418304,238745.8943042103,369.37157,178.485184242112,383427.5908900961,184551.95187429927,2798.12016,1291.277259081644,2897871.2076890934,1324486.3998820628,1169.76478,517.3474048625777,1210894.128708734,529407.7244817347,1891.5757,799.2691417032715,1947101.0656080237,810513.5324176807,0.38221,100000,0,738444,7714.584203928124,0,0.0,0,0.0,30091,313.89469285415794,0,0.0,33907,351.744671959883,1596761,0,57290,0,0,6392,0,0,52,0.5432511491851233,0,0.0,1,0.0104471374843292,0,0.0,0.06259,0.163758143429005,0.3081961974756351,0.01929,0.3248900348854846,0.6751099651145154,24.431494194864243,4.328235818569638,0.3231807031888798,0.2338511856091578,0.2224039247751431,0.2205641864268193,11.21913566177126,5.800901732655413,20.708902798574822,12355.087397126346,55.57242912235032,13.707696803513413,17.792726310278486,12.108880362641262,11.963125645917149,0.5686835650040883,0.7858391608391608,0.7020872865275142,0.5827205882352942,0.1288229842446709,0.7326807228915663,0.8992974238875878,0.8613861386138614,0.769811320754717,0.1594827586206896,0.5075757575757576,0.7182705718270572,0.6474086661002549,0.5224787363304981,0.1204250295159386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0043183407839917,0.0068190120550391,0.0091826991447087,0.0114225847793803,0.0136863543788187,0.0157328575070099,0.0178957899465065,0.0199952976293918,0.0219265022008393,0.024061183273018,0.0261290951838276,0.028526768268855,0.0305012464204042,0.0326102660419805,0.0344289244321295,0.036455528398028,0.0385489410714841,0.040736311164266,0.0429540552087783,0.0583032227072411,0.0727027196784121,0.0857613496868147,0.0980433410477593,0.1102848885654315,0.1258089759316441,0.13817066830764,0.1503199088712167,0.1609067697928573,0.17199987127364,0.1849461206896551,0.1971440634845023,0.2082318134354333,0.218522122249068,0.2279787046814502,0.2392755532430727,0.2488708472270238,0.2584008097165992,0.2667574004763525,0.2749046861225284,0.2825347615852671,0.2898474487112046,0.2956888084164684,0.3015315660802454,0.3060981535471331,0.3110440034512511,0.3160732604398629,0.3213317551830781,0.3254991842125709,0.3302690582959641,0.3299121615259412,0.3283680536470071,0.3272207836072957,0.3261405760936982,0.3250048163132233,0.3229427576516586,0.3214849921011058,0.3224227141734346,0.3224724648043171,0.3238912528709028,0.3258523630514878,0.3270854707600031,0.328599136582619,0.3301687058456464,0.3314005031747933,0.3316909991442574,0.3310556012362131,0.3341351410452657,0.3385205861828332,0.3395876125770264,0.3429128326005167,0.3463556851311953,0.3484034144799241,0.3541411980440098,0.3566519160154411,0.3594678070800665,0.357088356477949,0.3563334682314852,0.3637869169196798,0.3617839292579777,0.0,1.6435670027924252,58.92171436147134,184.311227873585,264.0092359008301,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95862,44464,420.63591412655694,6188,63.434937722976784,4818,49.71730195489349,1858,19.037783480419773,77.44506122741345,79.72241864909492,63.40474875222951,65.08397126174623,77.20923058070062,79.48732576417409,63.317598526531256,64.99980121506175,0.2358306467128272,235.0928849208316,0.0871502256982523,84.17004668447703,162.63522,113.93351611276414,169655.567378106,118851.59511877922,353.0145,227.64586098209892,367629.060524504,236848.73149120496,360.5797,173.97509388230577,372663.2972397822,178909.28734171684,2747.0286,1253.7623668117826,2835883.165383572,1278158.2762844327,1131.18454,493.9851080213604,1166625.7536875927,501920.8320516585,1813.48424,759.5086302974195,1859657.987523732,764354.6047348039,0.38081,100000,0,739251,7711.61669900482,0,0.0,0,0.0,30014,312.54303060649687,0,0.0,33050,341.33441822620017,1602043,0,57550,0,0,6354,0,0,63,0.6363313930441676,0,0.0,0,0.0,0,0.0,0.06188,0.1624957327801265,0.3002585649644473,0.01858,0.3324035332403533,0.6675964667596467,24.604674768663973,4.353207201578786,0.307181403071814,0.2436695724366957,0.234744707347447,0.2144043171440431,11.219010485958396,5.791313650736833,19.733487652418376,12304.07026639967,54.570619272301016,14.137508584286351,16.66183588042641,12.45225047457316,11.3190243330151,0.5647571606475716,0.8066439522998297,0.6851351351351351,0.5694076038903625,0.1122942884801549,0.7123928293063133,0.9032258064516128,0.8594594594594595,0.708,0.1179039301310043,0.5111739745403112,0.75,0.6270270270270271,0.5300794551645857,0.1106965174129353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0047002096860786,0.0069355018606207,0.0092667776379359,0.0115227508281342,0.013612640017906,0.0158070561394931,0.0177633658621146,0.0200757691797118,0.0223006134969325,0.0244931394634446,0.0264909491820932,0.0285626251733169,0.0303952931011427,0.0323099113950133,0.0341246903385631,0.0360407876230661,0.0381231671554252,0.0402400282386163,0.0422350554081473,0.0573409801876955,0.0710114190791604,0.0846534808966882,0.0978634989926124,0.1101957937484876,0.1255369676500079,0.1374614838894124,0.1497115415263331,0.1604000938386402,0.1711845724131288,0.1838581407845244,0.1965510166618074,0.207729049066435,0.2187384004017555,0.2292915980230642,0.239238419754179,0.2489160359798031,0.2577582526235366,0.2661611181011324,0.2733961119946909,0.280646168433955,0.2876052385406922,0.2947043373322922,0.3008511606191565,0.30625,0.3107031605905022,0.3156649432266303,0.319921616531786,0.3248879562705629,0.3295565462843274,0.3284305149977796,0.3274935762672273,0.3263909383475976,0.3245060768388917,0.3238998830686342,0.321919165739202,0.3202735926369539,0.3213194569248615,0.3223469387755102,0.3233388365198558,0.322885182282921,0.3244329714071767,0.3249018297267942,0.3245115729911559,0.3260520706090872,0.3265337900965431,0.3273412912189175,0.3293388817621476,0.3323581652909831,0.3335838013129795,0.3372363205613012,0.3392211108746542,0.3437539392411446,0.3445468509984639,0.3479004370131104,0.3534978437949209,0.3519206939281288,0.3576779026217228,0.3659084526818309,0.3676528599605522,0.0,2.142358705675466,56.44851133090069,180.5800227765674,263.59407759884607,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95688,44386,420.7528634729538,6063,62.11855196053841,4708,48.63723768915642,1905,19.4904272218042,77.29747507811412,79.7014772801605,63.28577397120039,65.0661225156354,77.05780270296974,79.46486172621908,63.19602857322119,64.98055935277463,0.2396723751443801,236.61555394141945,0.0897453979792004,85.56316286076537,163.00856,114.18490641438449,170354.23459576958,119330.43476129136,355.26414,230.5497001218576,370677.2427054594,240359.26248949676,361.28314,174.6451141382189,375039.83780620346,180492.4273864708,2719.48828,1252.3124610144098,2809315.1910375385,1277063.000790788,1143.02247,508.87468051404255,1180509.8026920825,519086.3093058458,1876.82332,793.5393628669663,1921625.9301061784,794081.5897477547,0.37931,100000,0,740948,7743.374299807708,0,0.0,0,0.0,30276,315.7867235181005,0,0.0,33060,342.94791405400883,1588855,0,57038,0,0,6429,0,0,64,0.6688403979600368,0,0.0,0,0.0,0,0.0,0.06063,0.1598428725844296,0.3142008906481939,0.01905,0.3306628966383914,0.6693371033616086,24.515880497117223,4.371085823946918,0.3198810535259133,0.2336448598130841,0.213678844519966,0.2327952421410365,11.12644462760872,5.64083975469959,20.293743451942937,12276.077620937916,53.50949496007821,13.215102911058532,16.968669175801054,11.290567092677186,12.03515578054144,0.5603228547153781,0.7972727272727272,0.6859229747675962,0.5984095427435387,0.114963503649635,0.7147385103011094,0.917098445595855,0.8596938775510204,0.7327935222672065,0.1265822784810126,0.5037724898432966,0.7324929971988795,0.6247755834829444,0.5546772068511199,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0043211003590773,0.0066906949591349,0.0088507265521796,0.011260986328125,0.0135773798610686,0.0157480314960629,0.017830518167521,0.0199024310420651,0.0220786269469846,0.0239914660539731,0.0259908364323724,0.0279726754593526,0.0299554841103004,0.0316871960600084,0.0341028982808912,0.0359130624047759,0.0380857448421227,0.0401265072148646,0.0421148074037018,0.0561707373127468,0.0701820503962396,0.0837627107972254,0.0970344733270916,0.1093459915611814,0.1249748717134846,0.138512330017728,0.1496953687529291,0.1608649619814559,0.1716865852741895,0.1840527189973899,0.1966893232300237,0.208355119825708,0.2187904021036485,0.2288230884557721,0.2386362375600501,0.2481556827327193,0.2574550780149834,0.265413721791696,0.2734744878658306,0.2796445206590504,0.2866547188155228,0.2928869301488011,0.2981247148654165,0.3039636854851468,0.3086162202197259,0.3134128148231725,0.3171655591975206,0.3221199413147064,0.3264461170121298,0.3260300232193963,0.3254475438572276,0.3249858677218767,0.3240501927145217,0.3240823368433577,0.3223068319365069,0.3211737720477735,0.3221867060077042,0.3228905810803904,0.3232429352374508,0.3243031310095032,0.3258232235701906,0.3273596925454811,0.3289142398787906,0.3291048176302726,0.3303348585690516,0.3308982376350199,0.3341173518988929,0.337826482739304,0.3382294718505028,0.3425037515347187,0.3467733389848468,0.3480010057832537,0.3511566173682214,0.353647102943934,0.3559962228517469,0.3557810578105781,0.3617193836171938,0.3640856672158155,0.3730371505170433,0.0,2.0710414799776204,55.53283861019269,181.9990634664028,250.8479213541367,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95828,44901,425.0219142630546,6175,63.1861251408774,4865,50.17322703176525,1900,19.40977584839504,77.32864418348662,79.64138306516499,63.32870225298407,65.03951431035458,77.08965573100747,79.40558348828863,63.238752200239496,64.95371810051675,0.2389884524791483,235.7995768763601,0.0899500527445695,85.79620983782377,163.086,114.34897937952864,170186.16688233084,119327.31495964502,356.29814,230.3754517940662,371188.88007680426,239784.3379880477,366.65885,177.54279835460127,379405.4973494177,182677.3015838255,2801.76148,1284.48692208726,2890464.4571523983,1307164.7781327355,1176.6694,521.3701536357931,1213011.9693617732,529191.2113437977,1866.55558,789.5224239963295,1908610.2809199817,789226.504966541,0.38307,100000,0,741300,7735.734858287766,0,0.0,0,0.0,30260,315.1271027257169,0,0.0,33605,347.5080352297867,1589224,0,57104,0,0,6581,0,0,60,0.6261218015611303,0,0.0,0,0.0,0,0.0,0.06175,0.1611976923277729,0.3076923076923077,0.019,0.3300538047655649,0.6699461952344351,24.323510424106736,4.371492670137455,0.3249743062692703,0.2337101747173689,0.2178828365878725,0.2234326824254882,10.923690026310515,5.589940466951298,20.286787891876795,12408.702176609131,55.20870773693814,13.714265724621622,17.759624590154544,11.824488482078984,11.910328940082987,0.566289825282631,0.7854001759014951,0.691967109424415,0.5971698113207548,0.124195032198712,0.7148407148407149,0.9014778325123152,0.8556962025316456,0.7489539748953975,0.1497975708502024,0.5128563443264393,0.7209302325581395,0.6374367622259697,0.5529841656516443,0.1166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484428014381,0.0045513522280338,0.0069598741946938,0.0091215667154233,0.0113687207646939,0.0136021176949704,0.0159616756701661,0.0180534152489615,0.01989698939236,0.0221947076520066,0.0242320539355314,0.0261796761150222,0.0284877447202096,0.030698593753217,0.0327101358109989,0.0345661157024793,0.036571357610754,0.0384974286662242,0.0405712801869644,0.0425903953038156,0.0572215326525716,0.0714211032579147,0.0854243967884619,0.0983616893830326,0.1105641522958215,0.1265750528541226,0.1393925897647982,0.1515025752351764,0.1629980882808411,0.1731084688702812,0.1860522716748689,0.1980741141466053,0.2095018540468242,0.219960647135986,0.2295233484441705,0.2400926202900477,0.2499302026913842,0.2593718680675202,0.2683575071271992,0.2763612172097771,0.2826649042865259,0.2904905421411232,0.2963776461229772,0.3023068605070287,0.3078262139822513,0.312898049864231,0.317487585895571,0.3218489002231431,0.3257054593598297,0.3311684016984351,0.3310539235521027,0.3300002758392409,0.329339286723563,0.328808643318106,0.3286054827175209,0.3270314683703715,0.3250881148191661,0.3250666052692169,0.3261003280481137,0.3266496601673296,0.3274585169213462,0.3278487521259344,0.3286004481581537,0.3290644137499441,0.3294293066544816,0.3316617040171342,0.3318427798348049,0.3344841655943002,0.3360601293480161,0.3407079646017699,0.3431853264323981,0.3461823966065747,0.3535626690145274,0.3537124561670986,0.3579828770345282,0.358720305598663,0.3610856968587984,0.3647938561034761,0.3726132024004364,0.3767334360554699,0.0,2.2766318054108297,56.34333833910768,181.93354946308733,270.6373178745504,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95752,44152,417.6622942601721,6039,61.90993399615674,4742,48.99114378811931,1786,18.349486172612583,77.35098256499538,79.69987134834805,63.33757887846742,65.07118307123484,77.13282788830634,79.48038877452093,63.25714439007915,64.99222424779448,0.2181546766890392,219.482573827122,0.0804344883882706,78.95882344035954,163.30094,114.3027248185673,170545.72228256328,119373.7204638726,351.30384,227.42598512879263,366315.2101261593,236941.5627128338,356.93005,172.77177862426367,369359.2509817028,177775.8052452522,2706.86676,1234.28635087998,2799833.820703484,1261922.958141846,1098.41856,483.70844775479975,1135749.9373381236,493769.4552880302,1752.38728,736.2207536930953,1803169.6048124323,746278.7272475917,0.37836,100000,0,742277,7752.078285571059,0,0.0,0,0.0,29931,312.0457013952711,0,0.0,32678,337.82061993483165,1595633,0,57234,0,0,6309,0,0,67,0.6892806416576155,0,0.0,0,0.0,0,0.0,0.06039,0.1596098953377735,0.2957443285312138,0.01786,0.3293594023207757,0.6706405976792242,24.608968498473345,4.377719578796372,0.3298186419232391,0.2374525516659637,0.2132011809363138,0.2195276254744833,11.025366352688817,5.538068943329306,19.157345924775537,12220.05657914159,53.59938623882904,13.475634718006452,17.602814225185234,11.067199962340982,11.45373733329638,0.5586250527203711,0.7770870337477798,0.6975703324808185,0.5608308605341247,0.111431316042267,0.7269076305220884,0.9154929577464788,0.8671875,0.6912442396313364,0.146788990825688,0.4987131827280526,0.6928571428571428,0.6423728813559322,0.5251889168765743,0.1020656136087484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021163914007675,0.0042570012466932,0.0065852891337655,0.0086942390509466,0.0111132576181228,0.0132442915169345,0.0155350098368008,0.0176969474296561,0.0198182728768691,0.0219017695401651,0.0238534555220698,0.0261239991788133,0.0284072215824971,0.030398517145505,0.0322790294627383,0.0343662146518935,0.0365722332670642,0.0385086335713099,0.0404437374588024,0.0424631989082082,0.0570489065191293,0.0710803799322147,0.0842743161492571,0.0973066167658375,0.1092816107099562,0.1245586960657886,0.1370837751855779,0.1482096302208034,0.1598590044862209,0.1702634288656255,0.1828531423339975,0.1950092521453073,0.2069145523159073,0.2168081568352879,0.226405749568012,0.2365580673758865,0.247004567127846,0.2556499240677203,0.2647769696006899,0.2720541036221917,0.2791620855274579,0.2859850922664669,0.2922836731797322,0.298573772258613,0.303425596718805,0.3084618129468076,0.3130202214612443,0.3166622193420501,0.3206106870229007,0.3253862493897853,0.3249080944237217,0.3245955806429407,0.3237657540812586,0.3233017434710265,0.3223130667459492,0.3203180049630832,0.3187354483108162,0.3193083952402866,0.3201053225503103,0.3206839925746109,0.3222846441947565,0.323399972370784,0.3247446416610851,0.3244311457472701,0.3247494365319138,0.3249609578344612,0.325248508946322,0.328116178407879,0.3325071563219995,0.3360714003633204,0.3385969688719484,0.3406058038551154,0.3432049190613628,0.3475729623468925,0.3487634157722818,0.3488509133765468,0.351634793337446,0.3597239139261063,0.3579529737206086,0.3515594917212168,0.0,2.0736833574621896,54.62003815592542,177.55317610411217,262.4621886412212,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95831,44649,421.9824482683056,6200,63.39284782586011,4848,49.88991036303492,1871,19.02307186609761,77.51248185563044,79.79930653395373,63.42745123530996,65.11138290039202,77.28313163182837,79.57480072663401,63.34230732392239,65.03129542766777,0.2293502238020721,224.5058073197157,0.0851439113875685,80.08747272424444,163.01384,114.1939486674718,170105.53996097296,119161.80428824888,355.4048,229.82218505010883,370126.30568396446,239080.3863573467,367.04657,177.73533192617654,378999.3008525425,182328.9230658282,2768.74276,1272.1113449704535,2850273.210130333,1288532.8390295978,1183.27071,526.6072597624599,1217845.937118469,532618.582244965,1830.10764,764.1954552509121,1862982.3334829025,758215.251785282,0.38156,100000,0,740972,7732.069998226044,0,0.0,0,0.0,30253,314.9711471235821,0,0.0,33700,347.6223768926548,1600279,0,57327,0,0,6316,0,0,73,0.7513226408990827,0,0.0,0,0.0,0,0.0,0.062,0.1624908271307265,0.3017741935483871,0.01871,0.3414896891351185,0.6585103108648815,24.238291760928497,4.358253538582008,0.3226072607260726,0.2400990099009901,0.2192656765676567,0.2180280528052805,11.538004957243883,6.166941983053677,19.715439643229445,12311.542909656064,54.67830263523358,13.827985592829268,17.576307335117455,11.78335918181493,11.490650525471912,0.5699257425742574,0.7843642611683849,0.6975703324808185,0.5738476011288806,0.140964995269631,0.7568807339449541,0.9221967963386728,0.8762626262626263,0.7683397683397684,0.1898148148148148,0.5008474576271187,0.7015130674002751,0.636986301369863,0.5111940298507462,0.1284185493460166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025296986622953,0.0049726050981861,0.0073282721292532,0.009680267069842,0.0118450191999024,0.0139530153564527,0.0160758282258557,0.0182431881220427,0.0204425474559137,0.0225176398404744,0.0246377553632686,0.0266334389646083,0.028493043710569,0.0305771684986208,0.0328353900555675,0.034993854385077,0.0369416074255735,0.039076836943111,0.0410018283054932,0.0430916908725572,0.0572584766533515,0.0713561218407871,0.084460698529797,0.0968280642789622,0.1093842136298542,0.1248890954412945,0.1366194347001282,0.1486156005444028,0.1600738424764974,0.1700432603760654,0.182825991118375,0.1948998768712332,0.2065704762835336,0.2168790469638898,0.2267100190032624,0.237462816954363,0.2471339282730038,0.2568129226483341,0.2651422487994926,0.2732851820529816,0.2806523795243258,0.2872952633908809,0.2936536012452242,0.299031722721683,0.3048413053737158,0.3099713910342203,0.314309573367567,0.3198283174860413,0.3245218332731865,0.3287529201774418,0.3288895439198242,0.3279958394919801,0.3271968753062396,0.3260531991373113,0.3257450331125828,0.3239208989586351,0.3220215922722394,0.3230260789895618,0.3230583309220268,0.3241396490978326,0.3255879111642416,0.3263858792009771,0.3273209327571449,0.3281062324836514,0.3298115907464822,0.3309568092581111,0.3334934041411259,0.3368669754717567,0.3395532741398446,0.3437109375,0.3462450239298654,0.3484247861464636,0.3505295101257199,0.3551892094417385,0.3598044641210108,0.3618131231161604,0.3651315789473684,0.3694968553459119,0.373789020452099,0.3759314456035768,0.0,2.7236447772655623,56.76296282163026,175.5970420137323,267.97219670452444,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95730,44350,420.3280058497858,6177,63.05233469131933,4881,50.31860440823148,1948,19.87882586441032,77.31288813594676,79.67006611706402,63.318020272784125,65.06138063280109,77.06515731114388,79.42780115812045,63.225351960370325,64.97419468848207,0.2477308248028862,242.26495894357924,0.0926683124137994,87.1859443190175,163.0266,114.15826395534825,170298.33907865873,119250.24961386008,353.43829,228.6548700621023,368440.2799540374,238090.94334284167,362.63275,175.26406599211202,375081.0299801525,180231.47128178368,2794.39048,1290.4467165605604,2880337.699780633,1309311.1005542255,1164.92775,519.0725265715855,1198103.0920296668,523460.9566970599,1902.49078,802.7956768952979,1942532.6021101011,798890.9906947591,0.37904,100000,0,741030,7740.833594484488,0,0.0,0,0.0,30175,314.4991120860754,0,0.0,33205,343.07949441136526,1593881,0,57248,0,0,6374,0,0,66,0.678993001149065,0,0.0,0,0.0,0,0.0,0.06177,0.1629643309413254,0.3153634450380443,0.01948,0.335343228200371,0.6646567717996289,24.56533096034298,4.344700107974428,0.3288260602335587,0.2323294406883835,0.2212661339889367,0.2175783650891211,11.304123629746131,5.87092722439459,20.800898237103603,12290.507473330625,55.297230602509394,13.499489939460188,18.1407299658534,11.960879643681167,11.69613105351464,0.561360376971932,0.783068783068783,0.6996884735202492,0.5833333333333334,0.0932203389830508,0.7174578866768759,0.90625,0.8457831325301205,0.7352941176470589,0.1434599156118143,0.5043356643356643,0.7116991643454039,0.6487394957983194,0.5403800475059383,0.0787878787878787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0046321166847423,0.0069298592721111,0.0094665420712631,0.0116150161206659,0.0139511201629327,0.0162638931375548,0.0183050709027983,0.0203960618731661,0.0223837804628302,0.0245667999589869,0.0265035991908238,0.0288385391490368,0.0308807927237518,0.0325406241939644,0.0344998656386299,0.036459843432879,0.0383290445754129,0.0400673855848923,0.0420000833541718,0.0567237419085404,0.0707446975483682,0.0840578494195131,0.09732912723449,0.109319638940442,0.1247910627763789,0.1368653421633554,0.1498349834983498,0.1610115168479306,0.1721700895490374,0.18513094417643,0.1969628139399052,0.2085924927145404,0.219701610080504,0.2291389270976616,0.2393086638599601,0.2484623198597948,0.2570505750748385,0.2649447416544565,0.2729252386792128,0.2801384772137829,0.2864630251412661,0.2925778661365142,0.2987434956717742,0.3042003937869175,0.3096981802041722,0.314956783164224,0.3198039964362988,0.3236635484957633,0.3277618487639232,0.3267794050219813,0.326203134899865,0.3252719653464648,0.3253019026382091,0.3241157364641377,0.3225464598371986,0.3211033956747652,0.3220126822037388,0.3222532700186858,0.3221156432093232,0.3217729656572492,0.3222945354974403,0.3226659947083281,0.323302883754254,0.3240564331363801,0.3266661437498366,0.3291479564110631,0.3311191244385399,0.3344744829533422,0.3369847679206812,0.3387237161574052,0.3432255314614524,0.3458396178984414,0.3492863140218304,0.3546588546588546,0.3552146509691997,0.3565903465346535,0.3669255928045789,0.3632299525006985,0.3675964845242644,0.0,2.4832759863836045,56.88260401956562,183.04717204600604,266.9371616425806,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95781,44888,424.4787588352596,6216,63.65563107505663,4867,50.22916862425742,1932,19.81603867155281,77.37208356525132,79.70995922763473,63.35007434272507,65.07899809732577,77.13508157163142,79.47442744407515,63.26217897133724,64.99409657190972,0.2370019936198986,235.53178355957985,0.0878953713878374,84.90152541604346,162.44228,113.914116010656,169597.6028648688,118931.85079572776,358.54584,231.45528835923307,373771.562209624,241082.87484911733,369.06836,178.57213781732153,381567.7326400852,183555.5444632461,2788.72032,1279.2934000526725,2879485.701757133,1303570.937923672,1139.80412,502.3261636792618,1176955.440014199,511402.4418193224,1890.58926,787.9667682512553,1940756.6427579585,794336.2883416808,0.38389,100000,0,738374,7708.981948403128,0,0.0,0,0.0,30473,317.5368810098036,0,0.0,33756,348.65996387592526,1595667,0,57309,0,0,6512,0,0,78,0.814357753625458,0,0.0,1,0.0104404840208392,0,0.0,0.06216,0.1619213837297142,0.3108108108108108,0.01932,0.3300598434862667,0.6699401565137333,24.593061245724044,4.349075870554446,0.31292377234436,0.2397780973905897,0.2212862132730635,0.2260119169919868,11.232925548692998,5.8739105942698,20.47209567915293,12426.125526204634,55.196147340061486,13.938824577320757,17.334477423419678,11.903868359039125,12.018976980281916,0.5613314156564619,0.7969151670951157,0.690741956664478,0.5923862581244197,0.1018181818181818,0.7228915662650602,0.9181818181818182,0.8567961165048543,0.7131147540983607,0.125,0.5007064142413111,0.7235213204951857,0.6291629162916291,0.5570228091236494,0.0956221198156682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0046328210534852,0.0070020904791865,0.0092949076096341,0.0113597071087155,0.0132452353803551,0.0156458632745211,0.0179500785762393,0.0202238005211792,0.022454660826135,0.0244929749228829,0.0266428564097827,0.0288642414399227,0.0307979035596239,0.0329277096009075,0.0349238494761422,0.036943875121628,0.0390243396559055,0.0412506104466911,0.0434040249450812,0.058322637197508,0.0725431954148014,0.0863690207876888,0.0990217608305051,0.1107891992119596,0.1267788659630439,0.1398836334347213,0.152311683892646,0.1639333767245334,0.1748585875899897,0.188138729318617,0.2007631029972869,0.2117645780356871,0.2219137354349299,0.2311033405907061,0.2414327631069036,0.2512046042651914,0.2605108143351769,0.2686112024304807,0.2761258115117304,0.2825302458997432,0.2891647961092405,0.2962113600094568,0.3021429426553334,0.3070528844987015,0.3122291174152876,0.3171702505820212,0.3226019733496084,0.3275293326261594,0.3307274501015108,0.3297081479290736,0.3291213998269445,0.3287439579487324,0.3273723471925056,0.3272616518341331,0.3253054475303916,0.3224545353824726,0.3232692844133042,0.3242508210180624,0.3250549018907676,0.3258460616951183,0.3268892794376098,0.3281505043318126,0.3306255439755406,0.3318916840865951,0.3326029112537173,0.3329519778051082,0.3341750576055048,0.3377413568740548,0.3409398645957786,0.3413566739606127,0.3433651804670913,0.3445283018867924,0.3474221308354276,0.3492362813501791,0.3512553292278541,0.3563708326990409,0.3608859007316591,0.3661705006765899,0.3651092690278824,0.0,2.266035177346098,58.26260285853909,178.7048539416597,266.49361701652055,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95642,44452,420.53700257209175,6223,63.8631563539031,4904,50.6367495451789,1916,19.656636205850987,77.25911226955019,79.65400218161487,63.27736057920528,65.04508201852997,77.01607793471462,79.41326963940641,63.18718700243652,64.95870839851816,0.2430343348355705,240.7325422084625,0.0901735767687625,86.37362001181259,162.85984,114.10078485720756,170280.6716714414,119299.8733372447,353.45678,228.5980842810816,368863.417745342,238315.4412089685,367.9967,177.88870725484847,380343.0292131073,182634.63975444817,2813.86532,1289.9215786645857,2908597.018046465,1315213.6285989266,1191.06458,522.6667036288279,1227860.657451747,529006.7267819868,1875.53986,786.8747564563248,1925731.9378515717,791611.0912340881,0.37905,100000,0,740272,7740.030530520064,0,0.0,0,0.0,30140,314.46435666339056,0,0.0,33708,348.0165617615692,1588167,0,57086,0,0,6302,0,0,57,0.5855168231530081,0,0.0,1,0.0104556575563037,0,0.0,0.06223,0.1641735918744229,0.3078900851679254,0.01916,0.3268995098039216,0.6731004901960784,24.583566466423648,4.273300674948025,0.3317699836867863,0.2361337683523654,0.2169657422512235,0.2151305057096248,11.264905213715137,6.040215289693822,20.403012366209094,12336.886717877633,55.77952609735808,13.911274439527912,18.35408344613294,11.885760352815243,11.628407858881976,0.5797308319738989,0.7918825561312608,0.6859250153657037,0.631578947368421,0.1308056872037914,0.7440246723207402,0.9268867924528302,0.8728606356968215,0.7478991596638656,0.163716814159292,0.5206542833379539,0.7138964577656676,0.6231527093596059,0.5980629539951574,0.1218335343787696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0046339954775448,0.0069727787589062,0.0092058201918387,0.0115265272902996,0.0137799686309657,0.016008320247976,0.0182120726441193,0.0202412594561439,0.0222226771621303,0.024657562335958,0.0270461756461201,0.0291803379858675,0.0311321726589059,0.0331172986026543,0.0353420464885433,0.0374821291672709,0.03957024964966,0.0415444465247872,0.0434102708450616,0.058438097626736,0.0719133604256567,0.0846713642139309,0.0980761738288037,0.1100163683404614,0.1252184412035713,0.1377980774337458,0.1498636150534884,0.1606745658311232,0.1708155243884104,0.1837580098815508,0.1959666670278822,0.207987015109097,0.2192796958374878,0.2292990118228339,0.239438027543314,0.249169174993566,0.2583694279011009,0.2671451809216139,0.2739976327009044,0.2812844526453829,0.2876482526424457,0.2941148546811768,0.2992556786070728,0.3045264980611175,0.3093089380640376,0.3147506403495555,0.3200617638426298,0.3246166430788008,0.3289357028489764,0.32810833434593,0.3267422432719791,0.3264953879237168,0.3261160195303418,0.3252706233669279,0.3241901013238211,0.3219886553219886,0.3228898991895632,0.3237266910263668,0.3231722606297238,0.3242131750920153,0.3259488032309794,0.326007556675063,0.327213847012842,0.3282147405858746,0.3293321182137742,0.3297842054318738,0.3348649839491408,0.3379029139864318,0.3412373184802069,0.343854199972594,0.3488718603661132,0.3500567966679288,0.3543313069908814,0.3549564729008705,0.3556719438162123,0.3600061434495469,0.3670266965559405,0.3639178159301998,0.3675078864353312,0.0,2.5090075068995144,56.6759492838597,186.7239129998346,269.4500932399733,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95602,44515,422.0518399196669,6187,63.398255266626215,4860,50.1035543189473,1939,19.83222108324093,77.28554750318864,79.71879169060348,63.27381344368565,65.07228935360688,77.04323513223473,79.47893140327955,63.1837104081572,64.98629573824648,0.2423123709539112,239.8602873239355,0.0901030355284504,85.99361536039396,162.63148,113.95517683779624,170113.05202820027,119197.48210057971,354.16822,228.72714156394488,369742.37986653,238530.607690158,364.08821,176.04601194164042,376020.9828246271,180382.6902310897,2767.5938,1268.201740170385,2855457.626409489,1287249.1779687991,1136.59081,496.06172070078446,1173903.077341478,503982.9976647406,1894.65302,792.829555332275,1940123.0099788704,793917.9729417012,0.37983,100000,0,739234,7732.411455827284,0,0.0,0,0.0,30210,315.2444509529089,0,0.0,33331,343.9153992594297,1592574,0,57140,0,0,6568,0,0,69,0.7112821907491474,0,0.0,1,0.0104600322168992,0,0.0,0.06187,0.1628886607166363,0.3133990625505091,0.01939,0.3349223435337536,0.6650776564662464,24.341342487018277,4.3363857972668685,0.3189300411522633,0.2335390946502057,0.2275720164609053,0.2199588477366255,11.207202022989696,5.773131701468802,20.586470513485505,12324.151120942262,55.10337783820155,13.734228320417657,17.444830631980892,12.174423426726444,11.749895459076557,0.5606995884773662,0.7991189427312775,0.6916129032258065,0.5605786618444847,0.117867165575304,0.7023076923076923,0.8983451536643026,0.8320987654320988,0.7319148936170212,0.1012658227848101,0.5089887640449439,0.7401685393258427,0.6419213973799127,0.5143513203214696,0.1225961538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023510336441021,0.0047165505279493,0.0069853389107744,0.0093510189561416,0.0115675741667684,0.0137619818883761,0.015811324989034,0.0180410264792415,0.0200059322293931,0.0218858494720563,0.0240762397160501,0.0261097410604192,0.0282343979989912,0.0300684451408073,0.0324325998740281,0.0346197209321569,0.0369330252126965,0.0387167796944614,0.0405837227941253,0.0427458302475252,0.0581643320091992,0.0723747642003772,0.0856821573449355,0.0985997113024054,0.1109326966755052,0.1261650567700389,0.1389995855516944,0.150925896312406,0.1620187059906256,0.1727909575382499,0.1846069185783034,0.1974260560326134,0.2093005514505547,0.2194865389040465,0.2300661521499448,0.2398827890869536,0.2496618487094358,0.2574020850943928,0.2653014841246392,0.2730670029231386,0.2805707072461754,0.2874875578195445,0.2940730113939508,0.2991918925084953,0.3045293537667523,0.3093741898048124,0.3142355889724311,0.3183376451247021,0.3226484361824951,0.3269647481634163,0.3268212500505247,0.3258204334365325,0.3242896425297892,0.3238642116377627,0.3240294869508353,0.3218553000904949,0.3207080319756376,0.3221429041384301,0.3231798046828233,0.3242827227005065,0.3258273178963157,0.3263919073774055,0.3278437460663785,0.3289270616654365,0.3295364429385048,0.3304827012554912,0.3313874404896849,0.336026050472791,0.3386978785662033,0.3403944196340355,0.3429312227074236,0.345527808705795,0.3502924344380856,0.3541666666666667,0.3580512436880493,0.3585038814396613,0.3616438356164383,0.3583383746723129,0.3641067538126362,0.362781954887218,0.0,2.856259175894851,56.46316996435445,178.0825394502643,271.2502017103654,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95811,44159,418.24007681790187,5849,59.857427644007466,4578,47.23883478932481,1850,18.9226706745572,77.35864855579545,79.66167931255347,63.35358995694328,65.05359373158475,77.13131890965784,79.43815903126305,63.2698947099399,64.97369720632004,0.227329646137619,223.52028129041912,0.0836952470033765,79.89652526471502,164.1673,114.92335814584592,171344.93951633945,119947.97898555064,351.49408,228.254089755292,366291.8871528321,237663.6604933588,358.02318,173.64827884390124,370252.643224682,178541.86318975914,2619.92612,1198.6674982315365,2704368.4754360146,1220970.3042777304,1103.20247,484.1292802492949,1133399.6618342362,487259.6677305256,1812.95702,751.7759055724237,1855971.9447662584,753813.9602248799,0.37758,100000,0,746215,7788.406341651793,0,0.0,0,0.0,30010,312.6363361200697,0,0.0,32770,338.62500130465185,1589303,0,57030,0,0,6511,0,0,60,0.6262328960140275,0,0.0,1,0.0104372149335671,0,0.0,0.05849,0.1549075692568462,0.3162933834843563,0.0185,0.331321370309951,0.668678629690049,24.613852476625905,4.358516842331554,0.3108344255133246,0.237221494102228,0.2267365661861074,0.2252075141983399,11.357881339753956,5.912432317580508,19.51253468739193,12164.176018600723,51.88064752929083,13.216225820996002,15.979435619496044,11.56046345805836,11.124522630740437,0.5718654434250765,0.8186003683241252,0.7041461700632466,0.5876685934489403,0.113482056256062,0.7427385892116183,0.9255583126550868,0.8602739726027397,0.7625,0.1269035532994923,0.5108212273940113,0.7554904831625183,0.6502835538752363,0.5350877192982456,0.1103117505995203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021962229014432,0.0047301198229496,0.0070156229406814,0.0094472688158949,0.0114705464003413,0.0136208738110981,0.0156663814529601,0.0176165168871706,0.019696381505016,0.0217987274698745,0.0240085217961324,0.0260118571399265,0.0282015718908922,0.0301717484589974,0.0322926547614137,0.0342580351978848,0.0361314888201392,0.0380353088749054,0.0398745287036363,0.0416718717468249,0.0565321259793233,0.07018222496367,0.0835447018132271,0.0956839749046312,0.107531640900804,0.1233131492460028,0.1356649139173946,0.1471820947599089,0.1586679621187046,0.1692701911633841,0.1820844099913867,0.1937151820001081,0.204779975425968,0.2152584085315832,0.2253508723650173,0.2352028547048328,0.2442998560316061,0.2531555855551806,0.2613841387996868,0.2697216175965173,0.2775064802814294,0.2845254397977457,0.2904027846842367,0.2959112709832134,0.301083243164383,0.305995363519779,0.3109782037486549,0.3153543857864146,0.3200315927129595,0.3242865247852647,0.3234985328559507,0.323501100110011,0.3230412153608102,0.3220417231728078,0.3210613008057695,0.3187140760670172,0.3172895939768755,0.3185503725831336,0.3196459390646093,0.3210070810385523,0.3218959763002962,0.3228281070821305,0.3240657196214617,0.3254145621955035,0.3266891079586439,0.3278320363503421,0.3298206534155814,0.3337224711301824,0.3354800112612612,0.3385754668153043,0.3423784374430887,0.3466084549036311,0.3510410094637224,0.3530268199233716,0.3596128547265551,0.3614358247727004,0.3665082042631498,0.3685609157808667,0.3790390559145827,0.3789682539682539,0.0,2.102710535184231,52.71711664454239,173.1907246989907,252.3883173960552,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95834,44228,417.0336206356825,6289,63.96477241897448,4963,50.921384894713775,2032,20.66072583842895,77.41454581429173,79.70319314368743,63.37712166936033,65.0680077750471,77.1586849893096,79.45388079115651,63.28021502547393,64.97723624450643,0.2558608249821219,249.31235253092157,0.096906643886399,90.7715305406782,163.7174,114.5563554095944,170834.3594131519,119536.23495794226,353.86366,228.37885223386837,368396.25811298704,237456.50002490592,364.08285,176.7691497253087,374059.5300206607,179995.19626430605,2831.13548,1325.5782790548787,2907634.49297744,1336629.2120279635,1190.62199,537.1068960197705,1217941.6177974415,536017.5678984185,1977.63134,844.4203857435105,2013167.664920592,836822.8015886166,0.38047,100000,0,744170,7765.198155143268,0,0.0,0,0.0,30203,314.26216165452763,0,0.0,33417,342.8950059477847,1593760,0,57291,0,0,6474,0,0,62,0.6469520212033307,0,0.0,0,0.0,0,0.0,0.06289,0.1652955554971482,0.3231038320877723,0.02032,0.3335857056329497,0.6664142943670502,24.334046884393608,4.335974262983317,0.3274229296796292,0.230505742494459,0.2272818859560749,0.2147894418698367,11.679748079257358,6.248947687573498,21.72002658697628,12278.42785555422,56.67921816210959,13.63090530802455,18.60764959167773,12.719981585327652,11.72068167707964,0.5726375176304654,0.7762237762237763,0.72,0.5895390070921985,0.1116322701688555,0.7363571934798016,0.902097902097902,0.8758169934640523,0.7700729927007299,0.1566265060240964,0.5076013513513513,0.7006993006993008,0.6586620926243568,0.531615925058548,0.0979192166462668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024497646403806,0.0051162555088394,0.0076356003528803,0.0097455992528373,0.0119016160178879,0.0141434080525849,0.0165138549307253,0.0187380146068791,0.0209405900138922,0.0234637100073643,0.0256076700093211,0.0277364625752649,0.029705208429662,0.0315481765874445,0.0337550132483787,0.0358703173898224,0.0378363837646012,0.0398893172490983,0.0418050826343327,0.0435953980901658,0.0574637137137137,0.0716331180368303,0.0846019256760296,0.0978903485282844,0.1098894154818325,0.1250026407520862,0.1376475324730362,0.1488545154946048,0.160088351099587,0.1703586271905394,0.182902948138584,0.1950446650660783,0.2065232748970209,0.2162466394177176,0.2257947500329772,0.2360460869276488,0.2457277351418882,0.2552026533250885,0.2637138221712937,0.2713716327652556,0.2786403498623227,0.2855772492776341,0.2926572392166144,0.2981154242693073,0.3032701191344517,0.3082103082103082,0.3134855525356646,0.3178704222482555,0.3227593544034459,0.3275529355785244,0.3273905778352738,0.326862712704444,0.3257999520944584,0.3253417728836093,0.3239091354796535,0.322120316638851,0.3198785751553384,0.3208178255808234,0.3220978257159436,0.3216207547842201,0.3229544350166336,0.3241201073232323,0.3250245502601283,0.3251699164345404,0.3272129416282642,0.3274764120292153,0.3283925376948632,0.3330103762970371,0.3361456327673726,0.3360294992268348,0.3384273535280246,0.341373109065905,0.3458970358814353,0.3499321982823565,0.3554559880518995,0.3597122302158273,0.3654373666565071,0.3727882855399634,0.3830079736046192,0.3810246679316888,0.0,3.398591622926449,60.80987804565447,181.9381761287156,266.3524539700277,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95729,44360,420.4995351460895,6058,62.26953169885824,4731,49.03425294320425,1893,19.513418086473276,77.36002699221102,79.73197843768382,63.33690834044432,65.0887442871258,77.12795742393328,79.49809747592126,63.25111207614642,65.00386137669652,0.2320695682777369,233.88096176256568,0.0857962642979046,84.88291042928608,163.34164,114.41793155807402,170629.21371789114,119522.74813073783,354.15959,229.4200985464777,369571.2688944834,239266.4632641582,359.71524,173.62533566352718,373458.9100481568,179557.91192432193,2709.24164,1235.5541061118688,2809756.5001201304,1270319.8584467268,1145.39206,502.4331519266458,1188375.5497289223,516730.6896830073,1849.23398,769.6567829108736,1908206.645843997,784501.0080834614,0.3786,100000,0,742462,7755.873350813234,0,0.0,0,0.0,30232,315.41121290309104,0,0.0,32867,341.07741645687304,1593229,0,57118,0,0,6360,0,0,60,0.6267693175526747,0,0.0,0,0.0,0,0.0,0.06058,0.1600105652403592,0.3124793661274348,0.01893,0.333856045162302,0.666143954837698,24.634921483951235,4.356595934140769,0.3204396533502431,0.233143098710632,0.2261678292115831,0.2202494187275417,11.277339394332248,5.981792809930463,19.99558973506337,12216.342327998243,53.6376492111606,13.281034473584713,17.099747106407168,11.961311547650364,11.295556083518363,0.5759881631790319,0.8050770625566637,0.7097625329815304,0.5738317757009346,0.1410748560460652,0.7430830039525692,0.941747572815534,0.8544474393530997,0.7216117216117216,0.1818181818181818,0.5150028851702251,0.723589001447178,0.662882096069869,0.5232120451693852,0.1308523409363745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0046325862401038,0.0066062531077803,0.0086551941323472,0.0110968713129093,0.0132682986436397,0.0152293577981651,0.0174120720978178,0.0195757730641451,0.0214480230962959,0.0234677766614037,0.0257997618167631,0.0279400271482045,0.0299621996312661,0.0319744946915529,0.034108414925404,0.0361863915133432,0.0381657203948392,0.0401485287540434,0.0420552470068459,0.0562883131259333,0.0701726844583987,0.0828507888553205,0.0948750039439226,0.1074177156472051,0.1226545735155762,0.1351047467515247,0.1468616308026307,0.1580976589200273,0.1689317472406062,0.1813304605440344,0.1932544878106842,0.2050908616642031,0.216355666327791,0.2262704688170151,0.2362772461456672,0.245994734023563,0.2557294829408721,0.2647989206226828,0.2725232703250403,0.2797590138532344,0.2865825151940159,0.2930414626646798,0.2992253259737305,0.3048503611971104,0.3101333628874358,0.3146077254077855,0.3182858014335824,0.322381531613137,0.3264883543035003,0.3259116669134572,0.3251169832094687,0.3247674090780941,0.323238020855932,0.3220177759281828,0.320945687292327,0.3191644132390847,0.320291635946588,0.3202415887531563,0.3216678545972915,0.3224279835390946,0.3223368782431979,0.3242052973221181,0.3255632563011165,0.3266054606035908,0.3280380635432375,0.3296020963285767,0.334204806753394,0.3392417528311177,0.3424264178033022,0.3463227222832052,0.3485769107771027,0.3516366149400012,0.3498136456986385,0.351879558631008,0.3531834765211251,0.3614311704063068,0.3617363344051447,0.3660273972602739,0.3719230769230769,0.0,1.4840688823401824,56.342200523907,176.4619290147096,259.68372489100034,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95752,44537,421.8188654022893,6097,62.46344723869998,4782,49.36711504720528,1906,19.508730888127666,77.33346816806463,79.69739233439846,63.32120940122799,65.07099305777393,77.09729936540931,79.46244252608916,63.23377261383414,64.98656021294018,0.2361688026553139,234.94980830929532,0.0874367873938481,84.43284483375635,163.23802,114.35918992283636,170480.01086139193,119432.69062039054,355.45082,229.50323689041892,370651.4015373047,239116.2032024594,361.31204,174.87492467135078,373812.985629543,179895.35806424057,2742.0574,1259.0262429577508,2833055.7690700977,1284230.5152453736,1135.97316,503.7498857268728,1169839.8362436297,509575.7668621091,1866.5976,786.3064368395508,1912520.949954048,789401.5512424316,0.38026,100000,0,741991,7749.091402790543,0,0.0,0,0.0,30226,315.07435876013034,0,0.0,33070,341.893641908263,1593979,0,57180,0,0,6368,0,0,74,0.7728298103433872,0,0.0,0,0.0,0,0.0,0.06097,0.1603376637037816,0.3126127603739544,0.01906,0.3360552763819096,0.6639447236180904,24.425344159119824,4.358683444221204,0.3255959849435382,0.2344207444583856,0.2160184023421162,0.2239648682559598,11.358250725074129,5.910288277456382,20.484688568419926,12245.081395207626,54.50687958966925,13.60191788953798,17.653593574731346,11.504425225737997,11.746942899661924,0.5706817231283982,0.7983942908117752,0.7096981374438022,0.5972894482090997,0.1045751633986928,0.7288519637462235,0.9023809523809524,0.8607888631090487,0.7666666666666667,0.1330472103004291,0.5101214574898786,0.7360912981455064,0.6518650088809946,0.5460277427490542,0.0966587112171837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0044720723644181,0.0067900858656598,0.0090227397427299,0.0112589247574296,0.0132778054964412,0.0155874077396729,0.0177175399563185,0.0199194636359919,0.0219565373158772,0.0238663973837179,0.025604435090601,0.0277346441389097,0.0299893924882339,0.031828405175082,0.033953488372093,0.0358781076239684,0.0379774418146161,0.0400877439208225,0.0423579649013175,0.0568389406766391,0.0709403945784708,0.0837757864472938,0.0965356947541121,0.1086163256696899,0.1243642208334655,0.1370764105502153,0.1485711244744824,0.1598705570745044,0.1700964044052202,0.182836584551418,0.1948910479735139,0.2058356533843744,0.2163551452976496,0.2266572808165689,0.2368045175220063,0.2458390542848531,0.2550526647461289,0.2649091548736339,0.2725305673856299,0.279691005388903,0.2859281262059852,0.2926283909283424,0.2984545345633161,0.3036455425839178,0.3088823522172035,0.3139953498837471,0.3192384438428591,0.3234913570023807,0.3283580119830021,0.32788563883537,0.3268410772743528,0.3266722996761019,0.3245540489751077,0.324017778834862,0.3225880656984679,0.3204362091648306,0.3210600683491062,0.3214841412327947,0.3229633865232386,0.3229238867761937,0.3232754362044776,0.3247437774524158,0.3253082008218688,0.3257508355976627,0.3261170448907111,0.3279126627622676,0.3316366606968925,0.3352658023259899,0.3378244501684169,0.3414512244990685,0.3455327738234356,0.3485879979828543,0.3535260823007495,0.3579545454545454,0.3598080383923215,0.3550724637681159,0.3548254620123203,0.3555181128896377,0.3469626168224299,0.0,2.219179534633969,58.35893223429264,177.6743504750691,257.8841335343929,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95789,44471,420.4449362661683,6095,62.25140673772562,4819,49.62991575233064,1867,19.07317124095669,77.34149214859087,79.68371994729696,63.33904717832892,65.07357495405749,77.11325231758566,79.45618966674583,63.254379197476005,64.99168135169045,0.2282398310052116,227.5302805511359,0.0846679808529131,81.89360236704601,164.09844,114.916431021416,171312.4053910157,119968.29596448025,355.10012,229.08414513947145,370031.5171888213,238475.73963318585,363.24725,175.99995134557977,374651.8911357254,180199.24763815585,2758.32748,1266.9754461873042,2843016.58854357,1286246.458163963,1117.57526,496.31517174206886,1149881.0093016943,501424.9367469657,1827.3628,760.9942077214487,1868703.9221622525,761446.3291647501,0.38046,100000,0,745902,7786.92751777344,0,0.0,0,0.0,30266,315.2554051091461,0,0.0,33381,343.9434590610613,1592630,0,57139,0,0,6437,0,0,57,0.595057887648895,0,0.0,2,0.0208792241280314,0,0.0,0.06095,0.1602008095463386,0.3063166529942576,0.01867,0.3408876298394712,0.6591123701605288,24.59775359986813,4.38313794985042,0.3363768416683959,0.2324133637684166,0.2160199211454658,0.2151898734177215,11.17214434185969,5.733892428246812,19.680810668630347,12260.047853599594,54.53772890712419,13.454324127724332,18.226588434869345,11.585223221023767,11.271593123506769,0.569620253164557,0.775,0.7069710055521283,0.5859750240153698,0.1166827386692381,0.7443491816056118,0.9202898550724636,0.8726415094339622,0.6895161290322581,0.1675126903553299,0.5062217194570136,0.6898016997167139,0.6482873851294904,0.5535939470365699,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070332364233,0.0047747939539551,0.0072251255771474,0.0095110352396049,0.0116497939665259,0.0136496521375966,0.0161757506527415,0.0181560109875522,0.0200218829568578,0.022189682360892,0.0243009628102986,0.026514684740193,0.0286155112116848,0.0308227998063273,0.032957054708298,0.0347511499302289,0.0367283119680245,0.0389526862311849,0.0411895509050479,0.0429831044856913,0.0576451562418488,0.0710461930950837,0.0842852052899629,0.0970470786044556,0.109157972389082,0.1246115468363528,0.1370763408144009,0.148695642926269,0.1605452197209858,0.170307642834173,0.183127549867057,0.1951172043940835,0.2069321453794752,0.217085273351258,0.2267694371447106,0.2373598148947712,0.2466978029939919,0.2557854905175221,0.2646515894497231,0.272501743434967,0.2797968136688986,0.2864930486651802,0.2930840944807458,0.2988452103153234,0.3043610080283295,0.3087372190026208,0.3141779204717229,0.3191373226027571,0.3228589510119209,0.3261804833765311,0.3256867171961511,0.3247400733425812,0.3232124264850719,0.3226421086059066,0.3222596789283752,0.3201903363016004,0.3190105403095622,0.3196446750517224,0.3202926045565639,0.3217947343978852,0.3229588773825604,0.324582764150383,0.3271277153951096,0.3272560306403566,0.3280963855421687,0.3287889472172164,0.329462032576279,0.3347699328178476,0.3373178667421134,0.3398930225131726,0.3419055067396604,0.3446648793565683,0.3451569763739412,0.3460854780122111,0.3508102955195424,0.3539366298607777,0.3561708118254341,0.3572021585720216,0.3607021517553794,0.3667186282151208,0.0,2.6167488443533955,55.565222121094,180.3808780419688,265.0758731686954,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95702,44386,420.3255940314727,6158,63.29021337067146,4813,49.71682932436104,1879,19.278593968778083,77.3419109081298,79.71071539951802,63.33255108723839,65.08081356490158,77.11276240854397,79.48230105772603,63.24745912175227,64.99810843748747,0.2291484995858326,228.41434179198927,0.0850919654861144,82.7051274141013,163.229,114.26421014183268,170559.6539257278,119395.8434952589,354.2245,228.7271164540359,369529.01715742616,238395.51571966716,358.93925,173.65336468721932,371057.9820693402,178346.82548147257,2767.95052,1262.5964450739054,2860857.6205303967,1288047.67164199,1143.48179,500.2912998870802,1181679.818603582,509672.1790638435,1847.54968,774.5062659423775,1897569.0999143173,782742.7655539596,0.37866,100000,0,741950,7752.711542078536,0,0.0,0,0.0,30159,314.51798290526847,0,0.0,32899,339.7316670498004,1595127,0,57271,0,0,6368,0,0,68,0.710538964702932,0,0.0,1,0.0104491024221019,0,0.0,0.06158,0.1626261025722284,0.3051315362130561,0.01879,0.335651367640241,0.6643486323597589,24.76340018701845,4.406930804076096,0.3147724911697486,0.2356118844795346,0.2235611884479534,0.2260544359027633,11.249730744090716,5.824403539837418,20.04605513246804,12257.63975793762,54.50221008557168,13.492247467767648,17.092395060972095,11.948774909832103,11.968792646999823,0.5522543112403906,0.7733686067019401,0.6917491749174918,0.5613382899628253,0.1185661764705882,0.728744939271255,0.937984496124031,0.8512820512820513,0.7245762711864406,0.1531531531531531,0.4913359418669648,0.6880856760374833,0.6364444444444445,0.5154761904761904,0.1096997690531177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026733635774465,0.0049559136515658,0.0073747210387502,0.0097302348257089,0.0121812339854394,0.0142135700904129,0.0161880587581679,0.0184126724912223,0.0204721995094031,0.0223934825549858,0.0245822655048692,0.0266559878425694,0.0285673152071078,0.030402620951125,0.0326082469971519,0.0342988277615828,0.0359883594486272,0.0382424060025529,0.040375996922149,0.042592438200842,0.0571094353811125,0.0709186450613407,0.0842006966886305,0.0973336839337365,0.1095933758767997,0.1249471011426153,0.1372195406566594,0.1490084201786227,0.1605777037131991,0.1708162148825933,0.1840934790802864,0.1960523325650099,0.2082073481107655,0.2181277405386491,0.2276806334543055,0.2377267846666445,0.2471703373292444,0.2562497189874556,0.2649630814250229,0.2713997985901309,0.2791491232128811,0.2860486069669206,0.2929389764711452,0.2981390276928976,0.3034857302538059,0.3091027917529841,0.3135889374600749,0.3183680219836141,0.3234075608493009,0.3268275325839143,0.3258759708705191,0.3247474400384853,0.3237870288357445,0.3224768855745791,0.3220308815022471,0.3207351007552824,0.3179857479182796,0.3183241780765762,0.3184884137907481,0.3198057455051866,0.3204421959902567,0.3210847779249273,0.3230104278130966,0.3249563230748555,0.3264161390500493,0.3267275097783572,0.3283309557774608,0.3325361110236964,0.3369687587953842,0.3404162015627491,0.3428336905467645,0.3464118398637138,0.3510330057949105,0.3533639143730887,0.3525580517273928,0.3545432921027592,0.3582135209544203,0.3630586305863059,0.3684063633826402,0.370142362447095,0.0,2.2813622978198818,54.056211690367135,186.19717759615412,264.70950763483825,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95720,44138,417.9690764730464,6160,63.236523192645215,4852,50.208942749686585,1902,19.630171333054744,77.33810060160408,79.72108556881723,63.31256206328344,65.07511074537179,77.10193116557889,79.48191801530524,63.226466396066726,64.98946522479679,0.2361694360251931,239.16755351199012,0.0860956672167105,85.64552057499952,163.57396,114.48771975331675,170887.96489761805,119606.89485302629,352.27943,227.43630692286857,367559.10990388633,237133.7828279028,361.73613,174.754219656334,374587.5052235688,180066.3382230836,2781.01756,1275.5029026335794,2879231.7175094024,1306432.4294082522,1114.81935,493.18770830383903,1151408.1383201005,502024.8237414235,1859.89048,772.3753275535311,1920444.9644797328,788305.0614151806,0.37822,100000,0,743518,7767.634768073548,0,0.0,0,0.0,30134,314.3021312160468,0,0.0,33089,342.34224822398664,1592787,0,57218,0,0,6421,0,0,53,0.5536982866694525,0,0.0,1,0.0104471374843292,0,0.0,0.0616,0.1628681719634075,0.3087662337662337,0.01902,0.3385594535858429,0.6614405464141571,24.33734981547779,4.325112804097027,0.3268755152514427,0.2310387469084913,0.2277411376751855,0.2143446001648804,11.123197582451256,5.735469771905349,20.14994665442753,12266.61889388509,55.057378867962015,13.578413500039874,17.870088043315747,12.31303778124238,11.295839543364016,0.5558532563891179,0.7805530776092774,0.680327868852459,0.5855203619909503,0.0923076923076923,0.7443095599393019,0.9023255813953488,0.909313725490196,0.7111913357400722,0.1231527093596059,0.4855687606112054,0.7047756874095513,0.601018675721562,0.5434782608695652,0.084826762246117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022602420384747,0.0043213633597078,0.0066399983755355,0.0087606967904547,0.0109074999236882,0.0132207498548569,0.0154009342553495,0.017669829532107,0.0199621618857698,0.0221266574514923,0.0242004122273608,0.0265949254007208,0.0287379958461,0.0307701813463499,0.0327632094740968,0.0347015542328042,0.0365277892818686,0.0386147653234842,0.0404611658055327,0.0422816904342753,0.0573517126148705,0.0709799652479745,0.0842138397775562,0.0970320355061946,0.1097155873327216,0.1251348664029279,0.1373441561886572,0.1482846008049918,0.1591489543594182,0.1698062605934476,0.1823901403746916,0.1945962914452106,0.2060968177266988,0.2166568196240618,0.2261763281834587,0.2363084288215607,0.2465410771515672,0.2558524287579345,0.2646137075895898,0.2733888806115549,0.2805270592594308,0.287497073284945,0.2939790141879249,0.2998177982355197,0.3042786142199215,0.3101478245847832,0.3150283222216652,0.319116672613283,0.3232988194435445,0.3277457334054882,0.3271151309591106,0.3268860397292687,0.3263036377970492,0.3249057856967526,0.3238482787299135,0.3226404399711997,0.3207812969909935,0.3221037085658024,0.3231460443821856,0.3239499473411756,0.3241556396896202,0.3241897233201581,0.324838493162178,0.3264290517821116,0.327395710468671,0.3285617790709758,0.3287215909090909,0.3312829525483304,0.334686308128346,0.3392969984202211,0.3430735930735931,0.3457413249211356,0.3444285447645119,0.3441699827314363,0.3467607202524596,0.3449407902450463,0.348735701384708,0.3511465603190428,0.354317998385795,0.3604956815621479,0.0,1.8592109684108329,58.301259635165735,180.13817549687184,264.2636967575799,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95650,44313,419.4563512807109,6000,61.61003659174072,4702,48.56246732880293,1854,18.97543125980136,77.27782633283482,79.68807808305206,63.2892740309558,65.07216626675354,77.04302274030351,79.45532047569239,63.20129097191175,64.9877674729215,0.234803592531307,232.7576073596731,0.0879830590440491,84.39879383203674,162.8957,114.13385983298924,170303.69053842133,119324.25806062655,350.98344,227.0518772719716,366351.34343962366,236784.49389019512,362.2451,175.61831227568842,375089.83795086254,180866.9873270818,2667.66892,1224.4134252477982,2756825.426032409,1247982.545998744,1089.93188,485.2144143024715,1128211.897543126,495992.90570044063,1812.22196,769.0964932287487,1856436.2362780971,771466.5569540825,0.37872,100000,0,740435,7741.076842655514,0,0.0,0,0.0,29863,311.58389963408257,0,0.0,33075,342.2373235755358,1593460,0,57201,0,0,6383,0,0,69,0.7109252483010977,0,0.0,1,0.0104547830632514,0,0.0,0.06,0.1584283903675538,0.309,0.01854,0.3247808764940239,0.6752191235059761,24.51103308383641,4.314978757571717,0.3107188430455125,0.2430880476393024,0.226286686516376,0.219906422798809,11.267932498782482,5.931628014213341,19.83556044472744,12215.793441067775,53.22349158941435,13.70786954514378,16.356494566010173,11.787814408348488,11.371313069911924,0.5623139089749043,0.7882764654418197,0.7002053388090349,0.5629699248120301,0.1170212765957446,0.7243027888446215,0.9221411192214112,0.8622589531680441,0.7154150197628458,0.1578947368421052,0.5033362344067305,0.7131147540983607,0.6466302367941712,0.5154130702836005,0.1054590570719603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002249559207,0.0046040889177348,0.0068625261405396,0.0089941766517271,0.0112620173966122,0.0134574831144752,0.0155532891381947,0.0176187606606269,0.020038665725596,0.0223622208563818,0.0243694807126226,0.026223883969842,0.0283897389461119,0.0306003607317701,0.0325627974684851,0.0348971908485375,0.0367656964032206,0.0387406938228789,0.0407717282717282,0.0429287926342241,0.0572775153617857,0.0714270752602584,0.0847381127322347,0.0981425940541962,0.110757022560834,0.1257859637980311,0.13846970742845,0.1494427990027913,0.1597895142142077,0.1702902051728025,0.1830497149446593,0.1944946776830866,0.2063158582252025,0.2168403081772019,0.2260997842265181,0.2361063398308935,0.2459411777842292,0.2547042405690105,0.2629332849068168,0.2705175177467369,0.2769584880345143,0.2836464824796268,0.290169539651929,0.2959184896613724,0.3012772990775737,0.3068591167036762,0.3120014026474971,0.3169058016219588,0.3208660141310689,0.3253501973779755,0.3249147125847818,0.3242713893601467,0.3233067841608767,0.3221541625034392,0.3217168558067494,0.3195751277840028,0.3176593853187706,0.3181773285483817,0.3189699482575472,0.3199462846911369,0.3212910978838462,0.3232823520088755,0.3246112848060096,0.3256250838663506,0.3285868911605532,0.3290532621435083,0.3301084474885845,0.3349649466304554,0.3389740503416292,0.3413444235614028,0.3436454466290847,0.3469942442975911,0.3509503062448696,0.3518987341772152,0.3536804308797127,0.3528636472561706,0.3548986225042563,0.3592333058532564,0.3645775041969781,0.3637417858523386,0.0,2.3117710083634715,54.854452129628925,174.78615474291263,258.8015054438497,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95817,44664,422.2632726969118,6192,63.37080058862207,4896,50.50252042956887,1916,19.65204504419884,77.39792083527668,79.70122214173647,63.37134666233783,65.07146518077585,77.15664555695211,79.46021249227884,63.28192684593132,64.9840073071656,0.241275278324565,241.0096494576237,0.0894198164065116,87.45787361024782,163.96864,114.88866437291468,171126.87727647493,119904.25954988642,357.4906,231.1127071668756,372525.3138795829,240630.25054726785,370.51608,179.83699572388838,381804.8989219032,183950.49533910025,2801.19276,1289.6468637059545,2893241.867309559,1315707.717530245,1152.92685,504.95488502328703,1188096.3294613692,511836.41214323847,1871.02808,787.358128496583,1921409.10276882,796520.1301176753,0.38152,100000,0,745312,7778.494421657952,0,0.0,0,0.0,30512,317.82460314975424,0,0.0,33928,349.3430184622771,1589983,0,56960,0,0,6366,0,0,62,0.6470668044292767,0,0.0,0,0.0,0,0.0,0.06192,0.1622981757181799,0.3094315245478036,0.01916,0.3308630538829705,0.6691369461170295,24.499237729766488,4.280617236516433,0.3286356209150327,0.2422385620915032,0.2085375816993464,0.2205882352941176,11.063352440780838,5.7987397245689865,20.442479290464888,12271.2975311074,55.58314812293803,14.141362163082077,18.13611437608444,11.462604903163514,11.843066680608,0.5606617647058824,0.7824620573355818,0.6861404599129894,0.5827619980411362,0.1092592592592592,0.7218442932728647,0.9270588235294116,0.8197115384615384,0.7537878787878788,0.0963302752293578,0.5009795689896446,0.7017082785808147,0.6395641240569991,0.523117569352708,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021462703490726,0.0041544650366302,0.0065621988944672,0.0088137038879806,0.0110706733897202,0.013250290040911,0.0152839762792688,0.0175771486865595,0.0199235752089421,0.021945530068957,0.0242095772800852,0.0262015901513208,0.0284173216212051,0.0305627874908671,0.0327241994166331,0.034763305972846,0.0369734337498965,0.0391663039197396,0.0410471008473168,0.042981433685788,0.0574331372303584,0.0709825864142655,0.0840166082999559,0.096502202550543,0.1092196936957827,0.1239058733984523,0.1370432422115242,0.1488904262678942,0.1603102365232998,0.1712217097500804,0.1843403338718363,0.1962010254635138,0.2082060425522662,0.2178838142515061,0.2279520934375928,0.2382349684420329,0.2477500083642811,0.2568980638197396,0.2655918732922916,0.2735448585191711,0.2813645138543701,0.2879241050565473,0.2949627527492018,0.3004069419509276,0.3051174181346459,0.3107032585831498,0.3150354716227018,0.3196149890160125,0.323717285610841,0.3274599662873999,0.3267139289454604,0.3261257305929808,0.3248559786426865,0.3238261320727524,0.3229124975912008,0.3204701572279041,0.3190606208866653,0.3200831682519932,0.3198417840215501,0.3203232308817496,0.3221176338492056,0.3223240020531449,0.3224482960730135,0.3235149290478535,0.3237909347213186,0.3249549761177668,0.3265300280528997,0.3291279327135901,0.3316667840292937,0.3355744748567791,0.3396831211649418,0.3397809243921987,0.3421985815602837,0.3431064839623364,0.3476321533643352,0.3531167900644853,0.3544712944435893,0.354158215010142,0.3579264947888096,0.354174609226077,0.0,2.379411047003085,57.822797168340905,181.89120213608155,268.95619230623925,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95564,44411,420.3361098321544,6097,62.77468502783476,4782,49.57933950023022,1893,19.46339625800511,77.19945181010942,79.66969430545045,63.224607941291474,65.05366240456168,76.9709826879637,79.4422305259295,63.14111165578741,64.97266044588471,0.2284691221457251,227.46377952094576,0.0834962855040615,81.00195867696414,163.11394,114.18959384560388,170685.5510443263,119490.17814826072,355.5241,229.50833210298205,371577.83265664894,239712.5194665168,358.90796,173.19219324102002,373259.6270562136,179385.9896366074,2734.65836,1243.575007701841,2835878.78280524,1275580.603262569,1171.73073,512.8924310930232,1211760.903687581,522339.8885490591,1859.30378,768.8098091768595,1912906.3873425135,776455.1613747678,0.3809,100000,0,741427,7758.434138378469,0,0.0,0,0.0,30310,316.6882926625089,0,0.0,32873,341.6244610941359,1587008,0,56971,0,0,6391,0,0,80,0.8371353229249509,0,0.0,0,0.0,0,0.0,0.06097,0.1600682593856655,0.3104805642119075,0.01893,0.324307403349507,0.6756925966504931,24.611760282464743,4.352870552969684,0.3312421580928482,0.220409870347135,0.2220828105395232,0.2262651610204935,11.482508757460243,6.074113463321918,20.0440840726752,12353.084283622811,54.11536389403128,12.72039748747183,17.7728314462226,11.836723391645966,11.785411568690874,0.5759096612296111,0.8102466793168881,0.7133838383838383,0.5903954802259888,0.1321626617375231,0.7433841218925421,0.9359605911330048,0.8746736292428199,0.7396694214876033,0.1527777777777778,0.5168316831683168,0.7314814814814815,0.6619483763530392,0.5463414634146342,0.1270207852193995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022807675543076,0.0045656541060449,0.0068953611178812,0.0090491296567431,0.0112086166877061,0.013537482925238,0.0159412154921671,0.0180564071122011,0.0202415063446582,0.0225458346570471,0.0245029101696829,0.027125127245432,0.0291961030668781,0.0312970642239689,0.0334201388888888,0.0355978345254484,0.037584393764973,0.0396283478315093,0.0417378442564893,0.0433974673501132,0.0574993985418562,0.0714165880255845,0.0851097376387487,0.0978431517169439,0.1102561934556523,0.1256784835891781,0.1385762610897176,0.1498607361243023,0.161171101684021,0.1716525441954492,0.1845924582091486,0.1966058659490663,0.2084555896115795,0.218926863510727,0.2288482547810061,0.2393656011906084,0.2489566667039618,0.2573253150703478,0.2655919361077613,0.2736260707806077,0.2815699460838309,0.2880207295196332,0.2945571857246213,0.300335026477899,0.3070488389932665,0.31224285555432,0.3171071630359721,0.3217506665135918,0.3266988652592765,0.331115402931372,0.3291650349083739,0.3284699717299869,0.3277265864224533,0.3264718229324995,0.3249072736210209,0.3233979822177177,0.3213775591176003,0.3219708197477192,0.3228212779092499,0.3240529929545903,0.3246753246753247,0.3251041873387577,0.3259820958399157,0.3264082292696074,0.3275699465576863,0.3282811065949915,0.3282088053922272,0.3320598636019197,0.3363084738587455,0.340401032360532,0.3434283900802466,0.3481774960380349,0.3501033769813921,0.3522347217999392,0.3536345776031434,0.3548425430778372,0.3570124733799817,0.3565008987417615,0.3659134222706234,0.3722794959908362,0.0,1.8185672619981983,55.14008646829943,177.65413660481576,268.5985064599424,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95667,44604,422.0264040891843,6034,61.64090020592263,4807,49.51550691461005,1911,19.515611443862564,77.33990302576841,79.72865616915472,63.32261558699434,65.0880993821495,77.09224279917443,79.4861036263279,63.22969980873479,65.00018345938939,0.2476602265939789,242.5525428268145,0.0929157782595453,87.91592276010363,164.1112,115.0056446920831,171544.21064734968,120214.5407424536,355.62206,229.93377637082685,371011.529576552,239630.50620467548,365.82762,177.15155613994594,377569.694879112,181455.17488241664,2752.75264,1272.537929150182,2838144.43852112,1290887.065707278,1109.05776,495.1476231884131,1141102.731349368,499389.3871371186,1869.09766,798.5477733344333,1910872.0039303,797610.4388981187,0.37915,100000,0,745960,7797.464120334075,0,0.0,0,0.0,30282,315.7828718366835,0,0.0,33370,343.9744112389852,1587595,0,56967,0,0,6510,0,0,67,0.7003459918258125,0,0.0,0,0.0,0,0.0,0.06034,0.1591454569431623,0.3167053364269142,0.01911,0.3404288867865027,0.6595711132134974,24.47721090457924,4.280057485627768,0.3278552111504056,0.2315373413771583,0.2209278136051591,0.2196796338672768,10.992318928007224,5.617840305022092,20.560832460141217,12256.083991642668,54.60816228198304,13.349469880440145,17.75912217507607,11.862784009104145,11.636786217362673,0.5496151445808196,0.7915543575920935,0.6637055837563451,0.568738229755179,0.1051136363636363,0.7223511214230471,0.8956310679611651,0.8624078624078624,0.7182539682539683,0.1486486486486486,0.4860557768924303,0.7303851640513552,0.5945252352437981,0.5222222222222223,0.0935251798561151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044295778217018,0.0066057168369676,0.0088875797342867,0.0114700588755681,0.0135080111565789,0.0155950585069515,0.0178002776190087,0.0199439810271508,0.0219758848697005,0.0240811932954021,0.0262066558541542,0.0284427443237907,0.0304375592270611,0.0327378187860585,0.034956937106463,0.037005957005957,0.039038415627822,0.0412886984021304,0.0433033108164456,0.0586361072226981,0.07239700570591,0.0850365116669464,0.0978265443528025,0.1100960016879417,0.1259495143987643,0.1380964001145852,0.1504481297766802,0.1614598353039187,0.1720706810773717,0.1838321612045104,0.1967365664697353,0.2080696030451332,0.2180635285112897,0.2277040265944565,0.2378056211018423,0.247502873787708,0.2558097660338289,0.2638955084995801,0.2722294773982175,0.279491896019158,0.2858880209551429,0.2922257720979765,0.2985013836146483,0.3039176409173131,0.3097666740581959,0.3139161005392286,0.3180054696940787,0.3224389864759832,0.3264365691348896,0.3259082578697714,0.324738081143219,0.3236289299309178,0.3231080885544783,0.3214009403082782,0.3193812696224826,0.3180156079337691,0.3174024438312968,0.318719388364592,0.3189147729299704,0.3204074372273297,0.3217221212360705,0.3219437640014237,0.3226651735722284,0.3238411872410138,0.3265135699373695,0.3264426234188961,0.3280002524535327,0.3303530571297828,0.3350106981535779,0.3371638808139535,0.3407077298530426,0.3462990936555891,0.3511805026656512,0.3546511627906977,0.3589591957421644,0.3638594876514803,0.3645450836393308,0.3645457071408725,0.369841881989973,0.0,2.8639787776392613,56.00903770070023,177.55987728456114,266.8953890567444,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95794,44716,423.2519782032278,6080,62.40474351211976,4778,49.39766582458192,1887,19.354030523832392,77.331780499572,79.67263585270877,63.32970022966426,65.06266225886543,77.09872356289186,79.44015253663511,63.24404134963558,64.97948314194774,0.2330569366801427,232.48331607365455,0.0856588800286815,83.17911691769098,162.53886,113.8500078319715,169675.4076455728,118848.78784889609,356.32459,230.5384059480048,371496.2314967535,240187.18912249708,362.44822,174.6781814616376,375529.6051944798,180074.75645671677,2741.27896,1250.3531034212394,2836122.1788420985,1279734.6633622565,1110.29421,486.672127788385,1144911.9360293965,493911.6453311751,1842.74616,766.718728658432,1892446.4997807797,774225.8131543092,0.38093,100000,0,738813,7712.518529344218,0,0.0,0,0.0,30357,316.4081257698812,0,0.0,33081,342.4953546151116,1595701,0,57296,0,0,6412,0,0,71,0.7411737687120279,0,0.0,0,0.0,0,0.0,0.0608,0.1596093770509017,0.3103618421052631,0.01887,0.3224394057857701,0.6775605942142299,24.545122637145088,4.362924909306684,0.3359146086228547,0.225826705734617,0.2224780242779405,0.2157806613645877,11.194961835669304,5.811490010863627,20.056821180917066,12236.23138615841,54.288849562154645,12.92441751984373,18.35839592107437,11.84748753641098,11.158548584825558,0.5600669736291335,0.7636700648748842,0.6978193146417445,0.5691439322671684,0.1231813773035887,0.7294761532447225,0.9023746701846964,0.8568075117370892,0.7115384615384616,0.1915887850467289,0.4981423263789654,0.6885714285714286,0.640373197625106,0.523038605230386,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025120283616105,0.0048254328697133,0.0071032096360112,0.0094477630135316,0.0116145436053902,0.0140225460544404,0.0161293611467955,0.0181101719139205,0.0200159473329108,0.022091416287045,0.0241522122442284,0.026202846171222,0.0284104346395483,0.0302437215435011,0.032211121661231,0.0341569316654605,0.0362691080823563,0.0381998464953222,0.0403300391765647,0.0427113702623906,0.0572349816868928,0.0713747803531085,0.0854088050314465,0.0980655872061867,0.1101487756564251,0.12538436340966,0.138004493810412,0.1492583337763836,0.1601980599515521,0.170011034807855,0.1825980260254657,0.1941728672780757,0.2061004784688995,0.216483119894137,0.2266729759769343,0.2368613462134975,0.2458915801100041,0.2551396823968689,0.2632951581811997,0.2713348672687936,0.2789364161849711,0.2856408218601716,0.2913758428960132,0.2974216428639892,0.3024289531212047,0.3076752385413842,0.3125602594442984,0.3171490104624638,0.3216323460760413,0.3261777061481148,0.325615849798645,0.3248989246128881,0.323871076754108,0.3240234770289415,0.3231128219609708,0.3212243834398614,0.3192986905931961,0.3196252465483234,0.3209016533734981,0.3222291685272841,0.3221000487859796,0.3237999169287367,0.3247741122084471,0.3259904983865184,0.3274272196205282,0.3277565744758718,0.3291634535743866,0.3329872254735385,0.3355782384510155,0.3391771019677996,0.3425283156740957,0.3467961372245638,0.3461562876912334,0.3520134741999693,0.3526137006982449,0.3531157270029673,0.3533127889060092,0.3579671998380239,0.3628785773826062,0.3567759778743579,0.0,1.868806905000396,56.63984081081952,179.1771703878775,261.9979480031132,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95690,44651,421.9145156233672,6081,62.31581147455324,4741,48.99153516563904,1833,18.76894137318424,77.34192318165195,79.71886699620933,63.32298576779221,65.07588609255356,77.11291629123976,79.49091991497386,63.23753258759545,64.99329616375789,0.2290068904121938,227.94708123547025,0.085453180196751,82.58992879567018,162.82574,114.11351382639614,170159.38969589298,119253.1161337612,353.80612,229.07231662652907,369205.2043055701,238853.79414623164,363.86635,176.18612057714483,377221.1411850768,181793.7006990513,2731.188,1256.108535119342,2821757.2160100327,1280736.2358444978,1126.25258,498.60099753862863,1162213.2824746578,506576.09022781206,1800.68426,759.7308563475311,1845416.0309332216,762224.2030969966,0.38129,100000,0,740117,7734.517713449682,0,0.0,0,0.0,30076,313.74229282056643,0,0.0,33296,344.88452293865606,1592713,0,57108,0,0,6463,0,0,76,0.7942313721391995,0,0.0,1,0.0104504127913052,0,0.0,0.06081,0.1594849065016129,0.3014306857424765,0.01833,0.3394280356305673,0.6605719643694328,24.798292683041364,4.271941293446068,0.3244041341489137,0.2351824509597131,0.2140898544610841,0.2263235604302889,11.05869966090238,5.8103996345026205,19.443282739219047,12372.930977221986,53.65363492524072,13.421331011632242,17.438469434091527,11.269594304225068,11.524240175291894,0.5625395486184349,0.8044843049327354,0.6937581274382315,0.5852216748768473,0.1015843429636533,0.7220046985121378,0.9221411192214112,0.8613861386138614,0.7081545064377682,0.131004366812227,0.5037528868360277,0.7357954545454546,0.6340388007054674,0.5485933503836317,0.0936018957345971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022680558508753,0.0047941942611568,0.0071111922659443,0.0094358786844617,0.0115220729561795,0.0137443749872737,0.015924800685113,0.0182778021708719,0.0204609595484477,0.0227614805713408,0.0249771862728009,0.0272637653775851,0.0292514348013905,0.0313224460357529,0.0334341484562899,0.0355617599917274,0.0376424280091153,0.0397226575879929,0.0418984827528831,0.0438379859743453,0.0589857418916801,0.0729924714406877,0.086595990343235,0.0989908343768744,0.1112025663754168,0.1266363992337894,0.1381686521840691,0.1497475446856558,0.1608175569499823,0.1716457163712871,0.1845530120871656,0.1972163552667208,0.2086023144166603,0.2195602447219516,0.2297150028070407,0.2410331416414586,0.2510522848817086,0.2596870426657661,0.2684304871684327,0.2759564719358534,0.2829782555865437,0.288847279110591,0.2951561149460672,0.3007975055465611,0.3060542340743621,0.3111908372477222,0.3163485144546319,0.3208793726768165,0.3251354785179039,0.3299429356440875,0.3282527179044485,0.3272802481902792,0.3269466822805705,0.3247999075385015,0.3242754160609926,0.323979396885078,0.322785510039653,0.3229888075622805,0.3224792428332251,0.322275303932404,0.3230841208945448,0.3237351778656126,0.3248696962719528,0.3262357414448669,0.3272984848848657,0.3288468534012368,0.3296893633937191,0.3334168964652795,0.3371763966041295,0.338760026870036,0.3429993214204931,0.3439961930946967,0.3450491307634165,0.3490059717287777,0.3474244120940649,0.351890756302521,0.3575402195158623,0.3539045336528859,0.3577856558494682,0.3566355140186916,0.0,2.152583436636502,55.93721281199208,176.87019225707206,257.9440605259087,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95727,44715,422.5140242564793,6094,62.51109927188776,4797,49.411346850940696,1897,19.315344678095,77.32392886815877,79.68877845453615,63.31606620966248,65.06533269522816,77.08538092380091,79.45411700378956,63.22833930182855,64.98207793286392,0.2385479443578617,234.66145074658584,0.0877269078339324,83.25476236424834,162.22756,113.6979245176021,169468.9690473952,118773.0990395626,354.93998,229.0663827701108,370093.00406363927,238603.1234631852,364.75051,176.54026459206435,376501.4677154826,180880.09588474385,2728.53052,1245.1167699476302,2812638.941991288,1263346.83172156,1097.86583,483.3492254322829,1127874.8524449738,486004.6526219848,1849.91994,771.3088973420868,1886373.3533903705,768227.6424294639,0.38185,100000,0,737398,7703.134956699781,0,0.0,0,0.0,30221,314.9790550210494,0,0.0,33332,343.7588141276756,1596136,0,57333,0,0,6373,0,0,69,0.7207997743583314,0,0.0,1,0.010446373541425,0,0.0,0.06094,0.1595914626162105,0.3112897932392517,0.01897,0.3296789350039154,0.6703210649960846,24.67764320788605,4.367709839426964,0.3151969981238274,0.2505732749635189,0.2207629768605378,0.2134667500521159,11.37340406968002,5.926696773743096,20.21604260354406,12344.619221158677,54.380376026931366,14.417159688700243,16.927538663900794,11.928167246542984,11.10751042778735,0.5693141546800083,0.7828618968386023,0.6891534391534392,0.5939565627950897,0.1162109375,0.7371744277821626,0.9172259507829976,0.864406779661017,0.7132075471698113,0.1442786069651741,0.5090651558073654,0.7033112582781457,0.6355785837651122,0.5541561712846348,0.1093560145808019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688828790503,0.0046132476249378,0.0069316175127367,0.0093783657461033,0.0117996500793424,0.0140631364562118,0.0159553860897579,0.0182918737942368,0.0209285444079788,0.0228627009317088,0.0248008448076114,0.026848600587281,0.0290842920149276,0.0311479631250965,0.0331235166649468,0.0352262625844996,0.0373289693102841,0.0396271847884751,0.0416064390670008,0.0435720313818647,0.0583850153479922,0.0725039495297182,0.0860405612298399,0.0989589905362776,0.1110044920598097,0.1263724639827371,0.1388691417233439,0.1504775289871275,0.1617089452603471,0.1720001286463191,0.1850974735459702,0.1975993511759935,0.2089448394320875,0.2197585935450013,0.2289503783213091,0.2396190898017938,0.2493081592572754,0.2579610667266794,0.2670965398238125,0.2747440468683719,0.2822767505445108,0.2893707243932152,0.2963625804463513,0.301362960119019,0.3065766259049705,0.3101240051823061,0.3156351056629315,0.320842255531763,0.3249529739897516,0.3293664960926653,0.3284578953759799,0.3279858871523471,0.3265594129268981,0.3247904087572216,0.3243597184398113,0.3218498207775497,0.3201342069445763,0.3211286089238845,0.3209899738671494,0.3218936177803146,0.3228601369811744,0.323764175919706,0.3241715685248372,0.3245086420857277,0.3263740228502706,0.327348643006263,0.3265811965811966,0.329199406734198,0.3316959394988868,0.3326561504142766,0.3367244525547445,0.3384974533106961,0.3379874213836478,0.339193302891933,0.339615493891467,0.3428263731003949,0.3457317073170731,0.3435387673956262,0.3364485981308411,0.331052831622957,0.0,2.726470546387485,55.08071949007863,180.4126251714419,264.4181999924659,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95782,44550,421.45705873754986,6097,62.32903885907582,4800,49.39341421143848,1891,19.26249190870936,77.4066300966336,79.7454398681741,63.35719594835807,65.08781601179692,77.16920145814727,79.51331992641697,63.26826806932968,65.00401801411044,0.2374286384863353,232.1199417571336,0.0889278790283896,83.79799768647445,163.8681,114.80905588986616,171084.44175314778,119864.95989837982,355.34064,229.78018035615403,370282.6418324946,239192.81321767555,362.66669,175.50108053654793,374436.98189638974,179955.43234678794,2741.7782,1258.880666393686,2824605.75055856,1276405.1141067075,1147.42463,508.0406577357474,1180013.2175147731,512476.75736634526,1845.41448,774.5765161471003,1882754.5259025705,771694.556363649,0.38022,100000,0,744855,7776.56553423399,0,0.0,0,0.0,30218,314.73554530078724,0,0.0,33178,342.1415297237477,1591866,0,57080,0,0,6609,0,0,70,0.730826251278946,0,0.0,1,0.0104403750182706,0,0.0,0.06097,0.1603545315869759,0.310152534033131,0.01891,0.3188405797101449,0.6811594202898551,24.565946976226435,4.356009592219205,0.3220833333333333,0.2354166666666666,0.223125,0.219375,11.389449443895913,6.027013819261401,19.99851654699509,12250.783309129769,54.13412405054156,13.282728758430402,17.52703390235777,11.974368331503635,11.349993058249757,0.5629166666666666,0.7734513274336283,0.702457956015524,0.5686274509803921,0.1263057929724596,0.7327044025157232,0.9146666666666666,0.8858560794044665,0.6903914590747331,0.1784037558685446,0.5017006802721088,0.7033112582781457,0.6377952755905512,0.5253164556962026,0.1130952380952381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0043296627527326,0.0065860910686922,0.0088698779756764,0.0108928916508172,0.0131361886723284,0.015354499296507,0.0175572908691879,0.0198086593891818,0.022053706660117,0.0239615467393643,0.0263608845107998,0.028397586770404,0.0306876672843318,0.0325839337807052,0.0347569286687869,0.0367561863775552,0.0389260353496086,0.0409649569364071,0.0427902134305049,0.0578070871071413,0.0719641904682221,0.086099726417962,0.098395114927428,0.1105737316263632,0.125857277213598,0.1382311165758623,0.1503790577252283,0.1612245769041979,0.171440814140332,0.1843674005207997,0.1965548562901446,0.207967919668764,0.2182302643792384,0.228098120420516,0.2384256185544195,0.2474708605208856,0.2564560918299661,0.2647242290549046,0.2728979451662755,0.2801017752847973,0.2864957105121672,0.2925810687709252,0.2979974608953937,0.3031606053980517,0.3082545512812611,0.3132575378142843,0.3177792482121497,0.3227674292080105,0.3267103213371003,0.3257913673912164,0.3244351487464568,0.3241125657032538,0.3233606498142768,0.3217477803842385,0.3204000795265114,0.3197083517454706,0.318337912087912,0.3195699436102996,0.3201674263519146,0.3200171661006829,0.320984012742611,0.3208003334722801,0.3219482889057007,0.3226623951036412,0.3248970287283372,0.3246587755564365,0.3269560875128741,0.3308113385167881,0.3330969546546901,0.3350361663652803,0.3384388652034317,0.3436524778429659,0.3440577313387957,0.3428518621199519,0.3445867287543655,0.3465692986459759,0.3499801034619976,0.3616963064295486,0.3641221374045801,0.0,2.781221930498944,55.11563425266412,176.45545504887528,266.0572553011408,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95682,44490,420.538868334692,6222,63.76329926213917,4874,50.29159089483915,1896,19.35578269684998,77.29491858535671,79.69966655566473,63.29396199958445,65.07497784149733,77.06088433894885,79.46930590528869,63.20554366838208,64.99139066480595,0.2340342464078588,230.36065037604203,0.0884183312023765,83.58717669138116,163.44702,114.45575338220443,170823.1642315169,119620.98762798063,357.16161,231.07801640983308,372636.6087665392,240863.03213753176,367.4658,177.7934664916332,380311.4169854309,182796.8850781194,2786.79124,1282.1925169112333,2877027.9049350973,1304528.664650857,1153.00415,510.53063166663287,1184746.2114086244,513278.72710293706,1861.04238,783.4882883706656,1901832.194143099,780876.8961837974,0.38018,100000,0,742941,7764.689283250768,0,0.0,0,0.0,30433,317.39512133943686,0,0.0,33609,347.6097907652432,1589179,0,57058,0,0,6335,0,0,72,0.7420413452896051,0,0.0,0,0.0,0,0.0,0.06222,0.1636593192698195,0.304725168756027,0.01896,0.3257274119448698,0.6742725880551301,24.70016153428032,4.23799976486842,0.3024210094378334,0.2517439474764054,0.2232252769798933,0.2226097661058678,10.999451999021858,5.694482303957782,20.11874344877881,12317.650285322714,55.39088843839828,14.809323439375405,16.66534629086543,12.031369969633555,11.88484873852391,0.5615510874025441,0.7872860635696821,0.6974219810040706,0.5661764705882353,0.1170506912442396,0.717357910906298,0.9168443496801706,0.8559556786703602,0.7008196721311475,0.1052631578947368,0.5047592385218365,0.7071240105540897,0.6460017969451932,0.5272511848341233,0.1201866977829638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0049316569758592,0.007261463464175,0.0095775507091657,0.0117165630057921,0.0140654143691457,0.0164394465080207,0.0186961718821834,0.0208702057352143,0.0234178122887172,0.0255526491255064,0.0273776992459575,0.0296260470476856,0.0318049243009821,0.0335174193548387,0.0353172346036506,0.0372132064913262,0.0391835209103368,0.0412895574558392,0.0434456304202801,0.0580173404366447,0.0715631871008271,0.0847247730492732,0.0978502204497385,0.1097980458775613,0.125308191274351,0.1377436202284404,0.1495852544376178,0.1609442289402537,0.1717658421419756,0.184518742794341,0.1964830646033979,0.2080968226006394,0.2193338216163625,0.2286591066577207,0.2397727524419145,0.248574521027907,0.2576194120560032,0.2658338538413491,0.2735340656316646,0.2807708342984203,0.2869786118167663,0.2936600037893141,0.3002231339523501,0.3047600525113045,0.3101456430510985,0.3162517384386002,0.3203238371648972,0.3240882147386949,0.3285024791644688,0.3275073329565943,0.326676196497787,0.3256495106667605,0.3245745818045243,0.323072809115624,0.3212682164365508,0.3185155816350805,0.3188646374334363,0.3197032377175288,0.3210421845102913,0.3223357883661506,0.3229061353949846,0.3228068701969512,0.3236164015236388,0.3234121711400478,0.3254547834053134,0.3272290259814581,0.3305033927726053,0.3338253382533825,0.3381815291686536,0.3408592321755027,0.3450015935408477,0.3487028079653244,0.3510905083972946,0.3571764263558605,0.3582569353494463,0.3602371181030552,0.3603238866396761,0.3649714441120478,0.3624765478424015,0.0,2.5752548929883328,56.7822606369832,182.96164551128135,268.4045781975585,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95729,44279,419.5175965485903,6219,63.80511652686229,4861,50.27734542301706,1936,19.93126429817506,77.3593554540744,79.73059397281665,63.33143217950936,65.08388343265766,77.12207953068132,79.49165937464018,63.24371924807785,64.99750289868737,0.237275923393085,238.93459817647056,0.0877129314315112,86.380533970285,162.38024,113.72193973411012,169624.2309018166,118795.07482960436,352.83797,227.77253119263443,368040.5519748456,237404.48232482924,359.68703,173.4011117542477,372379.4983756229,178634.12328541835,2789.22576,1277.3788265118624,2885754.034827481,1306948.6275373788,1131.79269,502.0397292640944,1167308.8092427582,509713.5567490967,1888.33832,789.2826789025873,1944123.933186391,800814.3841576226,0.37925,100000,0,738092,7710.192313718936,0,0.0,0,0.0,30092,313.7920588327466,0,0.0,32985,341.22366263096865,1600186,0,57371,0,0,6628,0,0,65,0.6790000940153976,0,0.0,1,0.0104461552925445,0,0.0,0.06219,0.1639815425181278,0.3113040681781637,0.01936,0.3392199017199017,0.6607800982800983,24.72820732077501,4.352528904099464,0.3137214564904341,0.2411026537749434,0.2275252005760131,0.2176506891586093,11.279232244656397,5.899026721962355,20.56475992565085,12339.960733790522,55.14659865422952,13.943766309246516,17.21462289462168,12.295854466725975,11.692354983635358,0.5679901254885826,0.7781569965870307,0.699672131147541,0.5831826401446655,0.1294896030245746,0.7333333333333333,0.92018779342723,0.8617886178861789,0.7392996108949417,0.1569506726457399,0.50920245398773,0.6970509383378016,0.6479238754325259,0.535924617196702,0.1221556886227544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497954057448,0.0046630916297505,0.0068799659045937,0.0091101135463427,0.0110938246748624,0.0135400653588117,0.0155665426372394,0.0176898107506686,0.0198626075933839,0.0221337237277203,0.0240783469209865,0.0262225372076541,0.0282007490020165,0.0302599449819182,0.0322470797044619,0.0345059284451657,0.0361942230044518,0.0381172663437503,0.0402415951098821,0.0420911193050434,0.0577111830427064,0.0715534112672813,0.0850168879937902,0.0982313726314904,0.1105838684845992,0.126959612414581,0.1397828924330691,0.1515480601337251,0.1626164828588527,0.1730694939262566,0.1858776117151385,0.1981163734776725,0.2105618173114583,0.2207618818328062,0.2300524298365422,0.240703980127089,0.2500921386211595,0.2589180250413418,0.2666923879987291,0.2746611984924335,0.2813573833462531,0.2877002221442769,0.2938012718976808,0.2989731437598736,0.3048889967244935,0.3096987825744426,0.3154478255975385,0.3206415372493201,0.324772612593963,0.3285797132011809,0.3279523643108685,0.3269611346270134,0.3256725433729016,0.3245414495090558,0.324172975215182,0.322005953743989,0.3215124804869203,0.3221284391664213,0.3219189750928481,0.3232885977715282,0.3234083168020361,0.3249407582938388,0.3258028653535544,0.3280177634234961,0.3291108756381851,0.3296628744389938,0.3310035944542706,0.3342798548666982,0.3387051372273047,0.341975700786151,0.3441508056050025,0.3445378151260504,0.3479419039766601,0.350079805426769,0.3526714700102928,0.3541936242794965,0.3567846831788482,0.3572997803075694,0.3616386326641345,0.3591097698981516,0.0,1.7924924772394624,56.38427361919077,187.01962701177607,264.7143090916824,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95884,44704,422.4479579491886,6064,62.04371949438905,4829,49.737182428768094,1940,19.773893454590965,77.4394230829848,79.71877225650917,63.39129033748679,65.07675511543825,77.19372005915781,79.4786922959738,63.29921716506343,64.99047026480416,0.2457030238269908,240.0799605353683,0.0920731724233547,86.28485063408675,163.0816,114.23625977425456,170081.72374953068,119139.67561079588,354.76536,229.43874524275083,369341.506403571,238637.8998848117,364.67641,175.97947856724224,377082.7771056693,180978.09403730012,2792.16484,1288.1315585917462,2876814.4424512954,1308403.3504151134,1164.28133,518.0153466302307,1195673.1362896832,521749.6866274551,1906.86474,807.094761505795,1945360.3103750364,803136.3431846146,0.38176,100000,0,741280,7730.987443160486,0,0.0,0,0.0,30192,314.18171957782323,0,0.0,33453,345.61553543865506,1597763,0,57374,0,0,6480,0,0,68,0.709190271578157,0,0.0,0,0.0,0,0.0,0.06064,0.1588432523051131,0.3199208443271767,0.0194,0.3475031605562579,0.6524968394437421,24.02852912070169,4.373714264906124,0.3172499482294471,0.2333816525160488,0.2193000621246635,0.2300683371298405,10.920309040688773,5.540271328843814,20.81899132631627,12320.59337778343,55.13288680493855,13.577022263618158,17.484780688066362,11.814692017164996,12.25639183608904,0.5622282045972251,0.782608695652174,0.7160574412532638,0.5788479697828139,0.1107110711071107,0.7215384615384616,0.8947368421052632,0.864321608040201,0.7346938775510204,0.1673640167364016,0.5035420799093228,0.7165021156558533,0.6640211640211641,0.5319410319410319,0.0951834862385321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023891476007288,0.0047225262475171,0.0069690299150934,0.0092700707693244,0.0112819783101426,0.0133188172808856,0.015492742551566,0.0175438596491228,0.019707000122594,0.0218703328627836,0.0238429459921923,0.0260206646761268,0.0282079475506869,0.0302852495805153,0.0323106107468349,0.0344681598050452,0.0367381565742781,0.0388150327948688,0.0408430232558139,0.0428522383246116,0.0580006254560617,0.0719958202716823,0.0854408176515556,0.097969212676145,0.1103226825288203,0.1256969082615306,0.1368128899670547,0.1490483224757431,0.1601612060601537,0.1721893997773782,0.1848363652001892,0.1966437223777055,0.2086171495616465,0.2187619515926351,0.2283113056099223,0.2387250290520723,0.2484841729826125,0.257883325656897,0.2669703252999762,0.2752241126966703,0.2826943292478658,0.2895963004916329,0.2959031701378218,0.3020722349251194,0.3065802410691526,0.3113100662545257,0.3164253020184587,0.3207918779145859,0.3247304041997466,0.3289345449756354,0.3280529295482968,0.3267032967032967,0.3249518345075869,0.323501386001386,0.3230919939442515,0.321537849580809,0.31922231186623,0.3191614901742252,0.3201746903681463,0.3206854781245546,0.3226180458158018,0.3237505179455812,0.3250250920040147,0.3264229090585196,0.327419239138232,0.3293344758640388,0.3290902919212491,0.3338426517820949,0.3369259117616382,0.3407964114267726,0.3440986494421609,0.3446363492315005,0.3463610171614681,0.3464052287581699,0.3494953306291859,0.3557222817672978,0.3615110698250503,0.3669404517453798,0.3710394663702057,0.3683213338385752,0.0,2.276600053132279,57.00592520452874,189.5951814592277,255.79532449682944,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95726,44845,425.0464868478783,6116,62.69978898105008,4838,49.85061529782922,1881,19.22152811148486,77.34647984393533,79.69907701466516,63.33814763576003,65.07540042132968,77.11286207157774,79.46863906633732,63.25131579173795,64.99221658671668,0.23361777235759,230.4379483278467,0.086831844022079,83.18383461299561,163.34824,114.46631043869849,170641.45582182478,119577.03282148892,358.11868,231.51811283707647,373374.5168501765,241122.40494363187,369.12111,178.36764857775432,381080.5632743456,182777.52321299625,2779.5914,1273.7803754511997,2868394.9606167604,1295404.231108088,1160.22819,509.2218005030515,1194637.8517853038,514614.62032050994,1848.23678,775.1666245423204,1891587.280362702,778352.0467908235,0.38176,100000,0,742492,7756.429810082946,0,0.0,0,0.0,30513,318.01182541838165,0,0.0,33727,347.77385454317533,1590332,0,57120,0,0,6521,0,0,65,0.6790213735035414,0,0.0,1,0.0104464826692852,0,0.0,0.06116,0.1602053646269907,0.3075539568345323,0.01881,0.3349491790461298,0.6650508209538702,24.494708087994063,4.388670236760113,0.3292682926829268,0.2284001653575857,0.2234394377842083,0.218892104175279,11.23258702333812,5.771426140852695,20.088404354782057,12329.543883133369,54.94149599143617,13.245507864450316,18.09486463238667,12.032551847739136,11.568571646860036,0.5640760644894585,0.7891402714932126,0.6942875078468299,0.57631822386679,0.1208687440982058,0.7178487918939984,0.9193154034229828,0.8425,0.7142857142857143,0.1441048034934497,0.5085794655414908,0.7126436781609196,0.644593461860855,0.5358851674641149,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0047542296424697,0.0067078677910717,0.0088072164320107,0.0109931458091809,0.0130314383450073,0.0153007135575942,0.017432306922912,0.0196154593124878,0.021807459584532,0.0240982379893192,0.0262968817358815,0.0283346698743651,0.0305692597666107,0.03275762453056,0.0348420171367737,0.0369104933478283,0.038740467915132,0.0407904448071185,0.0425902008165986,0.0563786137125317,0.0702824906063238,0.0848659707286366,0.0977117859846891,0.110063788286151,0.1259647713095515,0.1383959352094449,0.1503783404105871,0.1620424241777246,0.1730379706137671,0.1850065666243245,0.1975020275750202,0.2088635795559516,0.2191676045411335,0.2285211848106831,0.2387540954573629,0.2483692925238334,0.2576302827196869,0.266118327755403,0.2745670698185816,0.2817101808044235,0.2889367026439187,0.2954975854559227,0.3013583666031244,0.3068942477069792,0.3125723575633667,0.317065845784218,0.322014692588773,0.326331894148612,0.3295606122637647,0.3280243619802194,0.3261243650280145,0.3253539978865797,0.3248521822098217,0.3247513861430292,0.3229088457472074,0.3213054070300882,0.3215585949030798,0.3220625672743426,0.3221518422696048,0.3229864829445463,0.3242821596429558,0.3251048657718121,0.3260538798890182,0.3269272399278412,0.3285460158007638,0.3294635708566854,0.3324940198917285,0.3357579590976175,0.3379075116998493,0.339973560650955,0.3438264383707327,0.3476871004136893,0.3516030534351145,0.355929003021148,0.3558494162497022,0.3533292420988033,0.3489179256839526,0.3478260869565217,0.3457321848081441,0.0,2.6287782244236704,55.8663329191401,185.3339741266168,262.4658502090942,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95740,44645,422.1746396490496,6217,63.66200125339461,4925,50.85648631710884,1900,19.43806141633591,77.41222784566315,79.76599905118059,63.350809200748486,65.0888325486063,77.16906005176284,79.52666042033532,63.25950988949982,65.00180127501058,0.2431677939003123,239.33863084526763,0.0912993112486688,87.03127359572704,161.56272,113.26545161181666,168751.30561938585,118305.05816830065,356.62104,230.7100947165257,371904.07353248383,240392.83160328696,371.74233,179.80674606409562,384610.31961562566,185008.46727325107,2794.04848,1289.0620130463578,2885494.0045957803,1313660.4405951512,1156.39454,515.7771464852724,1191425.193231669,522303.2029300943,1856.05992,782.9997954732208,1899623.647378316,783862.0487314077,0.38181,100000,0,734376,7670.513891790266,0,0.0,0,0.0,30403,316.95216210570294,0,0.0,34115,352.66346354710674,1598515,0,57249,0,0,6559,0,0,59,0.6162523501148945,0,0.0,2,0.0208899101733862,0,0.0,0.06217,0.1628296796836122,0.3056136400193019,0.019,0.328177641653905,0.6718223583460949,24.285064811557472,4.311245785542205,0.3177664974619289,0.2536040609137056,0.2127918781725888,0.2158375634517766,11.514220624018147,6.066951973148793,20.04429570273725,12348.922320729229,55.763325855832015,15.003971957557912,17.53179620457381,11.601443231653365,11.626114462046932,0.577258883248731,0.8038430744595677,0.6875399361022364,0.6106870229007634,0.1157102539981185,0.7507396449704142,0.916155419222904,0.8592233009708737,0.7291666666666666,0.1800947867298578,0.5116148894486426,0.7315789473684211,0.6261925411968777,0.5754950495049505,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508811018837,0.0048446764303451,0.0073651746946394,0.0095255504102689,0.0118545328846368,0.0141192039497124,0.0164808284240781,0.0185402487678948,0.0205925335459014,0.0225588536335721,0.0247294416659834,0.0269257616818592,0.0289703100583929,0.0310903773274015,0.0334630028995078,0.0354861383887039,0.0373810485332339,0.0394260398618013,0.0412958496215586,0.0432210010938069,0.0579521015597268,0.0717402450636726,0.0849200104904274,0.0974267800033664,0.109394620490255,0.1252950078845156,0.1380020378704254,0.1500521753945098,0.161392709435414,0.1723908470355901,0.1851891786981227,0.1976195117724782,0.2089131334247947,0.2196657759866836,0.2291478437162564,0.2393663049990015,0.2491755262657768,0.2582436771249929,0.2674973308193816,0.2751665539107202,0.2828929841427959,0.28893831206836,0.2956571144490607,0.301223150000599,0.3054459352801894,0.3103044784943587,0.3139010089139485,0.3192527020333515,0.3234291029350971,0.328259439547428,0.3271700189193178,0.3257790756659675,0.3263112096672327,0.3254387606720705,0.3253763091422071,0.3230186151996225,0.3224364523490989,0.3227027291561312,0.3230139591753557,0.3238717002554641,0.3240280646902276,0.3244760185257869,0.3253253253253253,0.3270803698435277,0.3278861107788013,0.3291848164281269,0.3297064490536099,0.3337809562474626,0.3374956400418556,0.339995278936187,0.3437062463303373,0.3464321554956953,0.3488139200100144,0.3522924692197295,0.3496191714657254,0.3537359022556391,0.3535094339622641,0.3589435774309724,0.3612394672465344,0.3672616786935055,0.0,2.269507843835754,59.22504439316848,177.04699668812935,272.6290422628284,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95732,44718,422.3352692934442,5978,61.13943091129403,4658,48.08214599089124,1859,19.03229849997911,77.32373385663094,79.69304699793794,63.321321634088775,65.07485889557375,77.08375561487692,79.45643363847712,63.23073550703333,64.98875899842663,0.2399782417540166,236.61335946081863,0.0905861270554453,86.09989714712185,163.27806,114.36119896251942,170555.84339614757,119458.269791412,352.45918,228.7786488725026,367614.2042368278,238421.2407218251,361.75195,175.3359966274394,374755.0557807212,180736.1586674241,2678.42704,1242.3733561178203,2764470.5636568754,1264533.1743971475,1115.10617,501.1260368177118,1146483.7358459032,505223.7451173936,1822.5749,776.9133089546233,1866051.5814983496,777324.8320641796,0.38068,100000,0,742173,7752.538336188526,0,0.0,0,0.0,30025,313.0405715957047,0,0.0,33034,341.9964066351899,1592396,0,57169,0,0,6638,0,0,68,0.6998704717335896,0,0.0,0,0.0,0,0.0,0.05978,0.1570347798676053,0.3109735697557712,0.01859,0.3291964996022275,0.6708035003977725,24.48162636969093,4.398426777838932,0.3278231000429369,0.2219836839845427,0.2282095319879776,0.2219836839845427,11.06975160420042,5.7518093484216655,19.925961650857367,12345.634572612593,53.009482359862176,12.467924076348542,17.201347054870592,11.96234575003131,11.37786547861174,0.5538857878917991,0.7659574468085106,0.6817288801571709,0.587958607714017,0.1179883945841392,0.7073552425665102,0.8961038961038961,0.8673469387755102,0.7175572519083969,0.1297071129707113,0.4958579881656805,0.6887519260400616,0.6176211453744493,0.5455680399500624,0.1144654088050314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021783181357649,0.0045027229304207,0.0069935038570848,0.0092880515415726,0.0118122252970861,0.0140981368863897,0.0162260841186309,0.0184857986171397,0.0205740697186915,0.0229812074350965,0.0250233311796859,0.0272779557965656,0.0292483693751157,0.0314103753168861,0.0335370259501641,0.0356153337192953,0.0378149954945157,0.0398422909317285,0.0418100714337703,0.0439104701567189,0.0591926659148811,0.0728378392522581,0.0858030066195986,0.098554657914668,0.1108662181258304,0.1260944042634183,0.1386663837462203,0.1504974727321096,0.1612765412056222,0.1718961116949407,0.1850045225481328,0.1969687134882513,0.2081013484123532,0.2191241594226669,0.2281253781919399,0.2387091058099098,0.248717491189722,0.2573544283884307,0.2652392347210724,0.273020668818238,0.2801548774849746,0.2866393164790724,0.2932439304170953,0.299466778503385,0.3054620981161409,0.3104770122026377,0.3156115396173495,0.3197478188881105,0.3243222217900346,0.3282248270764032,0.3282413955681282,0.326900294790203,0.3257515934344859,0.3250676741795862,0.3245636225651404,0.3230710290399203,0.3210122578094108,0.3212686750742083,0.322352379490852,0.3236374006345132,0.3242878813416484,0.32557082138974,0.3264710820112482,0.3281057466114036,0.3288661781720015,0.3307629976213503,0.3328087444202816,0.3364222911000063,0.3398051397910195,0.3439625510122429,0.3476623495912556,0.3508611901057037,0.3511571719226856,0.3549480169426261,0.3556584167768751,0.3567069522555941,0.3557457212713936,0.3572878603329273,0.3600766703176342,0.3563748079877112,0.0,2.196869839862061,55.87555455845081,175.60632597840194,250.5775280971976,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95772,44571,421.4801820991521,6104,62.55481769201854,4784,49.28371549095769,1915,19.535981288894455,77.38153749659537,79.72251576189161,63.350937847410606,65.08252122754283,77.14070215819748,79.48598146821432,63.26092116404803,64.99699167859498,0.2408353383978863,236.53429367729476,0.0900166833625775,85.52954894784648,162.90274,114.1323175255944,170094.3281961325,119170.86155201352,354.89453,229.67805493116367,369894.4472288352,239150.2567633793,364.79491,176.35614634525052,376861.8489746481,180957.52434717384,2756.43676,1274.193596418772,2840537.6936891787,1292867.6587861606,1159.18765,513.9857838818616,1189228.0102744016,515549.3798709184,1888.8981,795.5999929716,1928761.8301800108,794286.921812169,0.37994,100000,0,740467,7731.560372551476,0,0.0,0,0.0,30273,315.3740132815436,0,0.0,33437,345.0382157624357,1595295,0,57261,0,0,6362,0,0,60,0.6264879087833605,0,0.0,2,0.0208829302927786,0,0.0,0.06104,0.1606569458335526,0.3137287024901704,0.01915,0.3328627450980392,0.6671372549019607,24.2520880261801,4.436271512696108,0.31438127090301,0.2385033444816053,0.2153010033444816,0.231814381270903,11.27650283154533,5.677894913999593,20.340655182777624,12258.95742360318,54.24193388727518,13.589097466936169,16.982158743895045,11.499337025324982,12.171340651118992,0.5604096989966555,0.8019281332164768,0.694813829787234,0.5737864077669903,0.1172227231740306,0.7241899020346647,0.9204819277108434,0.8602409638554217,0.7023809523809523,0.1836734693877551,0.4975412207115997,0.7341597796143251,0.6317722681359045,0.532133676092545,0.0983796296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509307460147,0.0048350801792121,0.0071222758816606,0.0093436113057696,0.0114687760538463,0.0135081486608915,0.0156971469925693,0.0176978505378758,0.019947474375875,0.0221931179847134,0.0246041912179125,0.026790938298724,0.0288302367904255,0.0307448363913428,0.032944816915936,0.035078112084642,0.037129020240904,0.0392868249196641,0.0409814778263715,0.0430206044957156,0.0576357147329534,0.0717483161109484,0.0848045793843831,0.0979287733420203,0.1101017977954349,0.1251624903562634,0.1376353886262956,0.1487608577777305,0.1595197438633938,0.170070214932733,0.1828193121265945,0.195009572017262,0.2062410329985652,0.2170591770941478,0.2270962348619009,0.2369021257750221,0.2457063835482,0.2549833046645755,0.2635853229739692,0.2714684610455003,0.2787865470022205,0.2854837955385119,0.2922266919072409,0.2981312889314806,0.304248576320167,0.3100110823790173,0.3142832148168514,0.3201515690961802,0.3244306418219462,0.3283103939250119,0.3275927022227006,0.3266097430186033,0.325341259667263,0.3243133853714947,0.3233799048751486,0.3212339252908757,0.3194429075043078,0.3207766481672478,0.3216917709131138,0.3217437722419929,0.323124929930117,0.3237503697131026,0.3247318123836808,0.3252365295578071,0.3259293055422149,0.32640245967847,0.3277294191272686,0.3305873140172278,0.3331352881557334,0.3345337976887763,0.3384049414115723,0.3420340601623428,0.3424458614811541,0.3433849912207039,0.3431751721535704,0.3481920569057498,0.3502290076335878,0.348757324712063,0.3465264323277055,0.352512466436517,0.0,2.565935804751694,57.80023860086733,172.37656483736677,262.39730193262017,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95866,44278,419.4917906244132,6000,61.4607890180043,4756,49.13107879748816,1919,19.673293972837087,77.37299817448195,79.67495608738042,63.35320242165369,65.05712501563222,77.13824755321995,79.43985245354868,63.266773136767725,64.97266001626699,0.2347506212619947,235.10363383174135,0.0864292848859662,84.46499936523821,164.32614,115.06716581327372,171412.32553772975,120029.1717744286,356.13897,229.92715720958975,370988.6925500177,239343.8981608875,358.69125,172.7623420212673,371482.3399328229,178072.19890355656,2732.89856,1247.7435504966702,2823923.476519308,1275426.384403641,1114.84716,485.57251101642026,1148898.2538126134,492574.0943986649,1876.80202,777.5632458998864,1925977.0095758664,785394.4079553238,0.37919,100000,0,746937,7791.469342624079,0,0.0,0,0.0,30360,316.16005674587444,0,0.0,32818,339.5990236371602,1589363,0,57092,0,0,6560,0,0,65,0.6780297498591784,0,0.0,0,0.0,0,0.0,0.06,0.1582320208866267,0.3198333333333333,0.01919,0.3459468017732742,0.6540531982267258,24.307042570889017,4.393467999278925,0.3202270815811606,0.2365433137089991,0.2218250630782169,0.2214045416316232,11.13732773887756,5.713793235141483,20.2619579394186,12228.09243038204,53.897639920788926,13.375162690527407,17.36002197942549,11.73089346607144,11.431561784764598,0.5586627417998318,0.7733333333333333,0.6874589625738674,0.5857819905213271,0.1158594491927825,0.7240547063555913,0.9031413612565444,0.8423645320197044,0.7182539682539683,0.1576354679802955,0.5001423284941645,0.7065948855989233,0.631154879140555,0.5442092154420921,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078185132671,0.0043580933848196,0.0066644350445817,0.0087829742298397,0.0108269117377955,0.0131921824104234,0.0152884938795062,0.0173386808723428,0.0192808754559666,0.0216096752409601,0.0236258388402233,0.0257420460258343,0.0279636195467858,0.0299736495388669,0.0319990103398864,0.0340066505566226,0.0359518710491738,0.0379992124515554,0.0399800618912126,0.0416172461868198,0.0558793781216437,0.0693110690811816,0.0830627082067506,0.0960221783509052,0.1083577311119068,0.1238868877222263,0.1360842658528314,0.1478784141531199,0.1594193617248372,0.1695151352799357,0.1817849186961247,0.1945351174906504,0.2062908940721257,0.2168683919922152,0.2268951022788543,0.2372207392310844,0.2470628925905678,0.2562022525005907,0.2648940514542402,0.2723297080709788,0.2790824054482176,0.286008350779523,0.2931207914699234,0.2998407013929645,0.3051314416098259,0.310425081272781,0.3155885923089437,0.3203937829106357,0.3253132118451025,0.3286532421947164,0.3280595688529226,0.3271163110805231,0.3262184376365764,0.3248792619798143,0.3234870209952303,0.3216073478760046,0.3203520770010131,0.3205224982769372,0.3212694402239787,0.3218513955107944,0.3221573252461717,0.322199616805262,0.3230424681332021,0.3231026785714285,0.3234454809237188,0.32441576016239,0.3236628155755242,0.3252689863461901,0.3299034240561896,0.3339798907449924,0.3362139172925527,0.3388915356518977,0.3404268714978278,0.3406769324592163,0.3427791376388627,0.3444144249970633,0.3450800915331807,0.3461224489795918,0.3474646716541978,0.337151584574265,0.0,1.825394384987173,54.94492422540697,179.23593547763693,264.09358464045914,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95798,44492,421.41798367398064,6141,63.02845570888745,4836,49.96972796926867,1930,19.791644919518152,77.39816222968327,79.72839103400811,63.35848721039546,65.0798899052791,77.16239143116941,79.49212295129365,63.27193225652913,64.99511490996228,0.2357707985138546,236.2680827144601,0.086554953866333,84.77499531682042,162.11008,113.57190804200113,169220.50564729952,118553.32394996028,356.47886,230.50151170134097,371593.30048644025,240091.2835663728,360.36405,174.00550950209237,372735.2554333076,178987.7918543691,2775.12492,1258.972500214756,2870721.8939852607,1288162.0764178324,1166.30114,505.7560057390461,1204613.9898536503,515207.0310761221,1887.0008,780.898500368032,1938745.6940645943,790346.1322735961,0.38042,100000,0,736864,7691.841165786342,0,0.0,0,0.0,30312,315.8834213657905,0,0.0,33081,341.9486836885948,1598890,0,57381,0,0,6340,0,0,60,0.6158792459132758,0,0.0,0,0.0,0,0.0,0.06141,0.1614268440145102,0.3142810617163328,0.0193,0.3352448853068815,0.6647551146931184,24.49834394240368,4.33832826785066,0.3234077750206782,0.2353184449958643,0.2177419354838709,0.2235318444995864,11.128253096182554,5.80669268874537,20.47585464023944,12275.744274816476,54.676329712632494,13.619497150822442,17.718283929217012,11.664633390124845,11.673915242468198,0.5564516129032258,0.773286467486819,0.6975703324808185,0.5593542260208927,0.1211840888066605,0.7290524667188724,0.9184652278177458,0.8393285371702638,0.691358024691358,0.15,0.4945209328463051,0.6893203883495146,0.6460331299040977,0.519753086419753,0.1146424517593643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267545725223,0.0042362574995946,0.0065434403278821,0.0087029815582094,0.0111015096833223,0.0131597695768111,0.0155296275538798,0.0174162347467657,0.0197999570898762,0.0219971352568037,0.0242703029433761,0.0261669967470831,0.0283846833699874,0.0305475504322766,0.0325577079703496,0.0345461493178555,0.0366619425450257,0.0385101926546525,0.04036205301936,0.0422146553788801,0.0569478934079005,0.0713852460730794,0.0856187361093638,0.098712626766854,0.1111544461778471,0.1262182102615056,0.1378681344320363,0.1498175163064874,0.1602558626286788,0.1701867615841499,0.1827726567884217,0.1954363577376446,0.2077978511911875,0.2184223173715484,0.2282866687178585,0.2386441577980839,0.2482635598416857,0.257679679769722,0.2659619114594558,0.2737547234627276,0.2812153163152053,0.2887717411632691,0.2950734310836558,0.3007416104568272,0.3055235274841309,0.3095437421515278,0.3144971745761864,0.32002948877647,0.3239943551832623,0.327590982838902,0.3263591566362387,0.3242232094961693,0.3237253990392065,0.3231004707309325,0.3224777921134196,0.3205453489438449,0.3184570389692514,0.3196545338337239,0.3201639064367423,0.3201241261235554,0.3212442017058207,0.3219826478784166,0.3234524482404907,0.3243182983656997,0.3258628524958741,0.3272098945070935,0.3284181926244587,0.3300318690245579,0.334517218566106,0.3359842519685039,0.3365240665971056,0.3410946636464205,0.3439541975231813,0.3423921271763815,0.3457148203592814,0.3470525441821848,0.3532262950621024,0.3514871382636656,0.3477665113729789,0.3442125237191651,0.0,1.98803528653954,56.294327360646136,178.3293552483594,269.70544606848995,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95884,44609,420.97743106253387,6205,63.493387843644406,4861,50.18564098285428,1927,19.773893454590965,77.3584022892406,79.64199187886668,63.35300198276878,65.04219405862621,77.11815330275499,79.40135170866812,63.265118238904,64.95638885298786,0.2402489864856107,240.6401701985601,0.0878837438647863,85.80520563835137,164.33186,115.07450536241846,171386.11238579953,120014.29369072888,357.51297,230.7904627749564,372363.5747361395,240201.266921443,362.84022,175.1848683759461,375236.2959409286,180159.81780381512,2789.31116,1272.3483463681134,2882638.730132243,1300557.4510534748,1144.24829,500.9478596445338,1179693.3064953485,508796.4025498304,1891.23248,786.8290358882423,1942679.3834216343,795381.3506937028,0.38147,100000,0,746963,7790.27783571816,0,0.0,0,0.0,30421,316.7473196779442,0,0.0,33290,343.9677109841058,1587499,0,57023,0,0,6400,0,0,68,0.709190271578157,0,0.0,0,0.0,0,0.0,0.06205,0.1626602354051432,0.3105560032232071,0.01927,0.3269172013443324,0.6730827986556676,24.642192054139684,4.362953291128282,0.3198930261263115,0.234931084139066,0.2240279777823493,0.2211479119522732,11.154166594249372,5.728841810820358,20.473465891311715,12305.304564642043,55.29242714085616,13.63560098571554,17.701402988162354,12.247822994270356,11.707600172707917,0.5657272166220942,0.7924693520140105,0.704823151125402,0.5775941230486685,0.1116279069767441,0.7393658159319412,0.903755868544601,0.8411910669975186,0.7962264150943397,0.1055276381909547,0.5028026905829597,0.7262569832402235,0.6571180555555556,0.5072815533980582,0.1130136986301369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881673399548,0.0043975641142556,0.0067551804931484,0.0091279229152494,0.0112522870502134,0.0134338839190303,0.0158523167203227,0.0182977204344943,0.0207161308107776,0.0226643085699097,0.0245580271684052,0.0266144493084959,0.0285212497175605,0.0307883800353865,0.0328943300562666,0.0350321101864662,0.0371573394020895,0.0392803100968016,0.0414568037136655,0.0433525109499682,0.0573787581835619,0.0711897697354674,0.0849390524860721,0.0973486638315745,0.1095229568459747,0.125521554046203,0.1380264078163745,0.1497352359483656,0.1607962429288077,0.1714616473009475,0.1847664577815104,0.1964716444386756,0.2081426319508615,0.2195548559184922,0.2286776105289777,0.238659628387725,0.2479983049713406,0.2567368551224832,0.2652012657797135,0.2729251139669668,0.279851911841268,0.2872748538011695,0.2944276038459716,0.3001822410857732,0.3054178212046084,0.3103452527743526,0.3153241158200581,0.3201706897649831,0.3241311313778654,0.3279041789505691,0.3280249194298736,0.3271276595744681,0.3261028996953627,0.3252159569388375,0.3238774204110792,0.3216510664416142,0.3205299063937807,0.3216917812726196,0.3222305901684239,0.3221453720086501,0.3232414181204276,0.3241343812483915,0.3245790821681992,0.3247901510912143,0.3252727666851321,0.3245474671181143,0.3257787141962303,0.3286862597337352,0.3334501980857554,0.3356748819303885,0.3388848329987224,0.3431206275174899,0.3456183456183456,0.3485687903970452,0.3515907791960373,0.357280385078219,0.362194932379916,0.3588438835741909,0.3612334801762114,0.3705118411000764,0.0,1.998804888632611,57.08733438794779,188.9140188076448,260.0034955679213,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95728,44565,422.3320240681932,6093,62.41642988467324,4814,49.65109476851078,1869,19.053986294501087,77.38965647392791,79.7554663627836,63.34469261111818,65.09347845070423,77.16375282143044,79.53334360912692,63.26179791560951,65.0148149032358,0.2259036524974789,222.1227536566772,0.0828946955086777,78.66354746842319,163.43778,114.41514049617604,170731.42654186863,119521.08107990978,355.16379,229.5600717186099,370357.0324252048,239148.0671471356,363.13808,176.0619384862868,375672.9274611399,181007.80079072271,2735.52388,1250.3899536104911,2822549.766003677,1271139.5972030049,1129.4044,500.8913988117606,1163019.0644325588,506481.8957933105,1830.99532,758.9111228869646,1870203.32609059,757433.9296319127,0.38039,100000,0,742899,7760.519388266756,0,0.0,0,0.0,30302,315.8741434063179,0,0.0,33339,344.5909242854755,1593631,0,57149,0,0,6414,0,0,50,0.5118669563763998,0,0.0,0,0.0,0,0.0,0.06093,0.1601777123478535,0.3067454455933038,0.01869,0.3333854818523153,0.6666145181476846,24.87383989431597,4.331260785572199,0.317823016202742,0.2426256751142501,0.2212297465724969,0.218321562110511,11.115709211117649,5.727058165702776,19.69192921002704,12294.070077649752,54.26528561183242,13.86847473334055,17.18080345862729,11.904761784426382,11.31124563543819,0.5585791441628584,0.785958904109589,0.6745098039215687,0.5887323943661972,0.1065651760228354,0.7637795275590551,0.9333333333333332,0.8728606356968215,0.7674418604651163,0.1868686868686868,0.4850451467268623,0.7077326343381389,0.6021409455842998,0.5315985130111525,0.0879249706916764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025929827404586,0.0050485082570481,0.0072458620444697,0.0094987504317613,0.0115149480708393,0.0138996374893079,0.0160275690500708,0.0182725778626187,0.0204432087660479,0.0226730676711739,0.0248057565755755,0.0268769184966172,0.0289385762014906,0.0308500231684085,0.0328303404742504,0.0347254518959476,0.036594079090429,0.0383761464082665,0.0402756412921465,0.0423044461347698,0.0570811059137988,0.070807297390649,0.0840188014101057,0.0967175170962651,0.1092790682954617,0.1251004780640521,0.1377071442211801,0.1487634088200238,0.1604635018956586,0.1706579441256903,0.1838747536959073,0.1956923875769409,0.2075935328846509,0.2183102441584569,0.227580288477407,0.2378200017716361,0.2474742969290126,0.2564131375214895,0.2643887950482366,0.272117870461461,0.2790114323365199,0.2861699890163819,0.292924996455409,0.2997511247248013,0.3056515884857527,0.311162258298768,0.3157842107894605,0.320314684425917,0.3248002482352028,0.3289894983727089,0.3278042879225754,0.3264047259238906,0.325453855131973,0.3243414788955887,0.3247815138498,0.3227924447634026,0.3211327601167468,0.3221446897520958,0.3230860634866745,0.3235982966643009,0.3242986829377186,0.3258316641137426,0.3271323636514971,0.3274969447839129,0.32883356429493,0.3288654982889142,0.3293954331690181,0.3321314353796952,0.3354270475121061,0.3390989701379776,0.3389109861473049,0.340822767881025,0.3436217888026258,0.3450204019948617,0.3479635484470894,0.3521540086864655,0.3558885861338177,0.3570145679505089,0.3587310195227766,0.3619445499430307,0.0,2.4374336668905627,55.384193042890665,179.13690372851931,264.59996626716696,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95750,44484,419.8120104438642,6218,63.48825065274151,4902,50.49608355091384,1925,19.62402088772846,77.34687979821054,79.70661270485628,63.33382307926016,65.08164804389357,77.10477263220866,79.46830686273786,63.24281972460887,64.99481382759613,0.2421071660018725,238.30584211842165,0.0910033546512849,86.83421629743293,162.20732,113.65208339156798,169406.89295039163,118696.47665124592,355.84902,229.3105202271986,370971.1018276762,238816.57359707425,362.11375,175.32779635356803,374260.89817232377,179997.09244703135,2826.62408,1301.383351418931,2915207.3942558747,1322316.064145098,1169.4676,522.7601943948074,1202707.8015665798,527364.2638104706,1891.26842,803.076010289953,1931641.503916449,802262.8265441769,0.38138,100000,0,737306,7700.313315926893,0,0.0,0,0.0,30286,315.5822454308094,0,0.0,33131,341.9738903394256,1600635,0,57487,0,0,6590,0,0,73,0.762402088772846,0,0.0,0,0.0,0,0.0,0.06218,0.1630394881745241,0.3095850755870055,0.01925,0.3278410840776101,0.6721589159223899,24.565146942552214,4.397364465833133,0.3400652794777641,0.2219502243982048,0.2158302733578131,0.2221542227662178,11.26928127087924,5.873010996377602,20.594962345322163,12361.630429388111,55.50015229329696,12.983361625033773,18.87404090874365,11.696682095123514,11.946067664396008,0.5573235414116687,0.7840073529411765,0.6922615476904619,0.5623818525519849,0.1193755739210284,0.7253846153846154,0.9250645994832042,0.8545034642032333,0.696,0.1782608695652174,0.4966685174902832,0.7061340941512125,0.6353322528363047,0.5210396039603961,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0046343244229911,0.0067614213197969,0.00925841234997,0.0116790103361276,0.0141646809637278,0.0166173921908451,0.0187525520620661,0.021089325509599,0.0235286890281361,0.0254775110983524,0.0276200548294025,0.0297916538121387,0.0319031676538758,0.0339955622065122,0.0359734540718228,0.0382309388946992,0.0400531136861105,0.0418814968814968,0.0439129031250325,0.0587013475007045,0.0718761441497986,0.0852451453256721,0.0981395837712844,0.1104775556234783,0.1255178390260399,0.1379825733002607,0.1500297720313031,0.1612951405558222,0.1718744978736623,0.1848461050208169,0.1971878174783304,0.2086438799678407,0.2191483087408119,0.2291007383966244,0.2402722443559097,0.2503039022159768,0.258705796368134,0.2670510652304689,0.2750060145035456,0.2820405990324746,0.2888337585133522,0.2955479006120009,0.3015323006090835,0.3066721721600155,0.3116261323355652,0.3162372843182643,0.3213359108714453,0.3253005811018934,0.328960552684316,0.3282385232226468,0.3271646555401147,0.3262255626398682,0.3254307235000432,0.324958447109106,0.3231360186092066,0.3214150107581319,0.3216261924699932,0.3229851868304601,0.3233718937446443,0.323953688785642,0.3241062954761151,0.3249738110203226,0.3254080193431392,0.3260172982870359,0.3268008058818912,0.3276433922342311,0.3300544028340081,0.3344255364126414,0.33498067035989,0.3363390854579576,0.3377342419080068,0.3396775213404995,0.3407948835084513,0.3448855674918262,0.3475746488846925,0.3522761992056217,0.3544303797468354,0.3606603245663122,0.371191135734072,0.0,2.680711763615356,56.43336596492543,181.36590850798527,273.2689399471143,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95746,44514,421.39619409688135,6141,62.958243686420325,4763,49.077768261859504,1900,19.405510412967644,77.36211040614715,79.72541352072912,63.32787542470121,65.07631674127221,77.12839694985158,79.49437091591831,63.24198707115474,64.99406153871074,0.2337134562955753,231.04260481080985,0.0858883535464727,82.25520256146979,163.87492,114.73786666822058,171155.89162993754,119835.67633971192,353.85497,229.3333118115808,368925.1248093915,238870.9625588336,361.09656,175.17226489824503,372943.5798884549,179661.46480597125,2726.38608,1254.5724224321891,2810282.0378919225,1273075.619276199,1136.28587,501.8170864767189,1168733.5032272888,506089.3548367244,1853.31614,772.0949535754644,1894602.1765922336,772451.1254263587,0.38033,100000,0,744886,7779.813255906252,0,0.0,0,0.0,30170,314.4256679130199,0,0.0,33179,342.40594907359053,1589667,0,57062,0,0,6503,0,0,60,0.6162137321663569,0,0.0,0,0.0,0,0.0,0.06141,0.1614650435148423,0.3093958638658199,0.019,0.3298453849757926,0.6701546150242074,24.44777998066627,4.363295771356117,0.3168171320596263,0.2424942263279445,0.2231786689061516,0.2175099727062775,11.419212004364478,6.047002394375662,20.254161624744672,12302.320778139096,54.303618721286206,13.99734439357704,17.029843394196437,11.966984476534584,11.309446456978147,0.5698089439428932,0.7792207792207793,0.7011265738899933,0.5964252116650988,0.1177606177606177,0.7292944785276073,0.8954545454545455,0.8403141361256544,0.7642585551330798,0.1598173515981735,0.5096848800231281,0.7076923076923077,0.6539485359361136,0.54125,0.1064871481028151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289089490694,0.0045024033098748,0.0069536087706831,0.0089110621132527,0.0111896648186765,0.0135454434350429,0.0158668651724348,0.0178469329412725,0.020040899795501,0.0220060416773334,0.0240280583729015,0.0259776278080798,0.0280141150811205,0.0302552529343267,0.0322840334399834,0.0344492462935009,0.0366159262710986,0.0386897968500342,0.0405708821022431,0.0427273863589017,0.0575278975333256,0.0715302044317967,0.0845717402019905,0.0979921959633567,0.1104137880114337,0.1249563736740241,0.1377378906498631,0.1495683277089964,0.160758547008547,0.1713789443211425,0.1845426546919084,0.19687510144018,0.2081316553727008,0.218684719958877,0.2281190167037126,0.2389365826640819,0.2487105057496929,0.2580768538516919,0.26731774821066,0.2747933411188202,0.2819584109608063,0.2890942050172504,0.2953044754218635,0.3006235759683415,0.3055612907927177,0.310349927894393,0.3150870164016527,0.3197780238522535,0.3247436030249663,0.3291199366671065,0.3278589135589567,0.3266882356990431,0.3256960189266452,0.3247492702101217,0.3239622781614316,0.3225554585955082,0.3201589160783817,0.3203693983334427,0.3210844914314946,0.3214393817994053,0.3214352422578355,0.3222143503758806,0.3227025109056375,0.3236755889366823,0.3238910058235675,0.3258678029515693,0.3266638285795374,0.3304750578957251,0.3332053876753437,0.3354103403399456,0.3391791719399747,0.3394746538927199,0.3419488078102509,0.3469003912127595,0.3478907266307378,0.3526290969111059,0.3504014543251023,0.3524378109452736,0.3580880367269781,0.3592307692307692,0.0,2.5713174734590414,56.8542499774318,182.72307053584933,252.89046152318437,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95764,44446,420.084791779792,6188,63.43719978279938,4852,50.12321958147112,1947,19.98663380811161,77.32840490063373,79.6884272378826,63.31625382636724,65.06445235235549,77.08431048270558,79.44549615559187,63.22588380123054,64.97703267009769,0.244094417928153,242.93108229073823,0.0903700251366999,87.41968225780283,163.9352,114.83568151400036,171186.66722359133,119915.29333987758,355.93845,230.5219788680037,371138.569817468,240174.5650639752,364.11404,176.13422679251894,376765.4859863832,181216.6564122336,2791.71976,1278.396217667664,2883893.40461969,1303741.4994177376,1138.33199,508.5108530669105,1174198.5506035672,516645.52881935233,1904.07022,800.7420430301158,1955802.159475377,807931.3598020645,0.37824,100000,0,745160,7781.212146526879,0,0.0,0,0.0,30324,316.06866881082664,0,0.0,33358,344.8686353953469,1587504,0,56991,0,0,6586,0,0,57,0.5952132325299695,0,0.0,0,0.0,0,0.0,0.06188,0.1635998307952622,0.3146412411118293,0.01947,0.3288343558282208,0.6711656441717792,24.67295454172005,4.38459955598265,0.3270816158285243,0.2326875515251442,0.2194971145919208,0.2207337180544105,11.116493221782331,5.669928635740271,20.72305176525182,12226.5602147259,55.11807382920858,13.566764711691471,18.03776140621701,11.711702262280822,11.80184544901929,0.5558532563891179,0.7794508414526129,0.6824196597353497,0.568075117370892,0.1204481792717086,0.7173061863743148,0.9023809523809524,0.8337408312958435,0.6798245614035088,0.1863636363636363,0.4981818181818181,0.7066290550070522,0.629881154499151,0.5376344086021505,0.1034077555816686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989603072464,0.0045335605184689,0.0067112049709621,0.0089432712046992,0.011067933511017,0.0134554269882659,0.0158060042421275,0.018060603585576,0.0203336809176225,0.022488586811882,0.024601506842294,0.026839711272884,0.0289184380752578,0.0310752211933626,0.0330836067942129,0.0350198976691301,0.0368510946638372,0.0390782186637904,0.0410583088258217,0.0432849034005103,0.057741083636895,0.072104674148372,0.0853832442067736,0.0975761015808947,0.1095129712756317,0.1247331148927174,0.1371686108165429,0.1487074699615806,0.160025205865704,0.1707609989384402,0.1832408853465453,0.1952523154159093,0.2065345112716511,0.2169823701824226,0.2262304466045067,0.2363028114407249,0.2465120432171797,0.2554990206452484,0.2632995333098663,0.2710570652485358,0.2781198638857381,0.284900384889856,0.2920278527781725,0.297630047399052,0.3024924012158054,0.3079579227762088,0.3127688121481147,0.3175893482831114,0.3218969296823317,0.3255629663871096,0.3243585768022543,0.322968022695348,0.3221115874985896,0.3221894602954355,0.3216489939174016,0.3199607410133726,0.3183316952537966,0.3186350324130442,0.3191736979924353,0.3194096601073345,0.3205558576974289,0.3210494059034025,0.32308883216871,0.324112618056488,0.3246228253807839,0.3263811038402378,0.3276781386330586,0.3314906715245932,0.3351201737789923,0.3391383687718184,0.339228880603801,0.3426517993975585,0.3464133966508373,0.3500302206104563,0.3551611396543671,0.3575038194852509,0.3585020551073222,0.3607827150428047,0.3637121422617393,0.368565815324165,0.0,2.0689963502027195,56.22020817759108,188.1142985395355,262.17184319511074,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95726,44521,422.0587928044628,6087,62.29237615694796,4794,49.45364895639638,1946,19.92144245032697,77.31464774318667,79.68208612698126,63.30648041847581,65.05658411505792,77.06495520880738,79.43374004702831,63.21449130211382,64.96785196469281,0.2496925343792924,248.34607995295244,0.0919891163619865,88.73215036510373,164.31228,115.07589065855744,171648.53853707455,120213.82974171848,358.7202,231.6807516116361,374040.10404696735,241328.56445650724,361.12565,174.5318248385865,373571.798675386,179409.75343605288,2749.20076,1258.9693649946346,2838723.2726740907,1281955.628559257,1139.43112,496.889353152196,1173149.8861333388,501919.742966588,1920.66762,807.5086122801058,1968599.0013162568,810236.3784123322,0.38058,100000,0,746874,7802.206297139753,0,0.0,0,0.0,30533,318.3252198984602,0,0.0,33013,341.20301694419487,1584560,0,56820,0,0,6628,0,0,60,0.6163424774878299,0,0.0,0,0.0,0,0.0,0.06087,0.159940091439382,0.3196977164448825,0.01946,0.3334379905808477,0.6665620094191522,24.52974800869026,4.352712217359325,0.3143512724238632,0.2327909887359199,0.2188151856487275,0.2340425531914893,10.845316390953448,5.458948155108619,20.739078801083476,12206.718851535135,54.120888628057415,13.32457244818968,16.961361131888335,11.49532810916108,12.339626938818332,0.5527743012098456,0.7849462365591398,0.7007299270072993,0.5624404194470924,0.1140819964349376,0.7232854864433812,0.9128329297820824,0.8753117206982544,0.7040358744394619,0.1013824884792626,0.4923728813559322,0.7098150782361309,0.6374321880650995,0.5242130750605327,0.1171270718232044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0042481572730683,0.006455673074971,0.0087287877248247,0.0110178544178238,0.0130812176535311,0.0152212281041817,0.0172040595454452,0.0194017950238177,0.0215695507964456,0.0237047973506402,0.025638656152456,0.0277006315702853,0.029870892623466,0.0321222130470685,0.0343836579415291,0.036460220977312,0.0381857612767326,0.0403439634824742,0.0421623986831412,0.0568415557295745,0.0705059766794364,0.0837302503199815,0.0961309930696505,0.10828025477707,0.1236366329196949,0.1362613568820582,0.1483346820563056,0.1597951919273978,0.1703867450744731,0.1834289534984039,0.1952498591427209,0.2070287818375928,0.2175952307894621,0.2274927502673855,0.2371217589251013,0.2469599847859404,0.2550702731969229,0.2639313867118629,0.2711369927523747,0.2785767303766933,0.2857042385596399,0.2925244284223508,0.2982015943142528,0.3035594848658048,0.3085227132528931,0.3129889474408882,0.3172407650120249,0.3219152377871239,0.326500210925965,0.325776330660352,0.3237889701435091,0.3230719468976767,0.322290547953115,0.3213855824528554,0.3199344352701481,0.3179024081115336,0.3183850604944765,0.3200944170771757,0.3200285867428979,0.3207533013205282,0.3215563771525732,0.3227743487812533,0.3230648944487881,0.3247889965614254,0.3263917848206839,0.3267632187848144,0.3297972802820448,0.3336141533277169,0.336554137341445,0.3404829415530961,0.3425891381975164,0.342958685028876,0.3447216890595009,0.3489099526066351,0.3540372670807453,0.3581028889232195,0.358267716535433,0.3633826402456042,0.3588235294117647,0.0,2.4757912159202453,54.64453773460696,173.35405439091858,273.8048363094739,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95813,44263,418.4609604124701,6123,62.86203333576863,4763,49.1165081982612,1853,18.901401688706127,77.3504688262772,79.68280212224545,63.33176974345843,65.06005552439021,77.11741226334098,79.45390990633317,63.24513168297028,64.97801174629294,0.2330565629362126,228.89221591228196,0.0866380604881484,82.04377809727248,162.20666,113.69569715569808,169295.0434700928,118664.1657767715,354.85927,229.4506208748531,369746.1826683226,238857.21235620743,361.59791,174.53090340359145,374178.2325989166,179609.64549480035,2735.1262,1250.1854260917714,2820411.88565226,1270579.635427105,1126.02243,495.879637364112,1159186.9683654618,501507.6789097656,1813.21936,760.9021191055881,1850155.1355244068,758358.0740821409,0.37827,100000,0,737303,7695.229248640581,0,0.0,0,0.0,30190,314.456284637784,0,0.0,33109,342.3230668072182,1598107,0,57370,0,0,6427,0,0,69,0.7201527976370639,0,0.0,1,0.0104369970672038,0,0.0,0.06123,0.1618685066222539,0.302629430017965,0.01853,0.3334367726920093,0.6665632273079907,24.78409634450168,4.345414718420531,0.3210161662817552,0.2399748057946672,0.2185597312618097,0.2204492966617678,11.348269743710734,5.994386501047605,19.59817341923097,12277.3715031547,53.79287550924841,13.777436138386292,17.183401197756346,11.375208678839387,11.45682949426637,0.560781020365316,0.7795275590551181,0.697187704381949,0.5619596541786743,0.1228571428571428,0.7315175097276264,0.9272727272727272,0.8579088471849866,0.7649572649572649,0.1386554621848739,0.4976998274870615,0.6870554765291608,0.6453287197231834,0.5030978934324659,0.1182266009852216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004481713190635,0.0068101085963665,0.0087174745740324,0.0109140102121773,0.0131796052229532,0.0157360664932945,0.0180642921329956,0.0200094065682385,0.021958110681162,0.0240971268021574,0.0263184917440236,0.0287333271629695,0.0308560599818736,0.0329520725255004,0.0350382310394709,0.0369875776397515,0.0391245721398195,0.0407902394413036,0.0428703790457749,0.0574599929061737,0.071453216649415,0.0851558815823945,0.0976737344232668,0.1101546695886716,0.1256856590253337,0.1382868171021377,0.1505728662461037,0.1612500266917212,0.1715801318116058,0.1846758138283562,0.1969123656727713,0.2084365358710294,0.2180822576590559,0.2279937517875608,0.2385188960413042,0.2480859802236557,0.2571090980701063,0.2654032203120387,0.2725450442711018,0.2799032541776605,0.2869004876793712,0.2929700440111684,0.2990692269912193,0.3047229073765811,0.3094368941617542,0.3146053340348503,0.3180040510070192,0.3221487817522032,0.3263683431952662,0.3248375003371362,0.3245176405733186,0.3240533107679289,0.3230882714531596,0.3227935601837399,0.3215538501600723,0.3201565371696558,0.3198028747433264,0.3205719557195572,0.3216091173791107,0.3218070168869584,0.3231391905231984,0.3238507912584777,0.3248831958509378,0.3271598999422744,0.3281979093350017,0.328497055560297,0.3306039215686274,0.3333333333333333,0.3373179227359088,0.3390981528431727,0.3426130971211641,0.3463200751644221,0.3487001209189843,0.3539367869833552,0.355490311215502,0.3550790754257907,0.3592272086939022,0.3561718325176726,0.3567877629063097,0.0,2.2694808620497104,56.26400255834928,170.62056858668777,266.72708810628285,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95719,44861,422.9045435075586,6143,62.934213687982535,4823,49.82291916965284,1842,18.805043930672078,77.30949638025908,79.67036876421093,63.31695901961641,65.05978415662643,77.08970418697578,79.45435134770779,63.235234643199135,64.9823576342289,0.2197921932832969,216.0174165031492,0.0817243764172772,77.42652239753056,163.1762,114.35272257895107,170474.2005244518,119467.10953828508,356.79581,230.70719760825344,372177.6031926786,240449.72012688543,369.74745,179.4371672384072,383240.328461434,184998.30431670253,2744.956,1259.3658766852493,2835279.5578725226,1283403.8302500402,1150.53914,508.4573585416301,1187971.395438732,517236.1905028325,1809.52898,754.8748788761346,1850205.7480750948,753697.1854393692,0.38095,100000,0,741710,7748.827296565991,0,0.0,0,0.0,30387,316.87543747845257,0,0.0,33820,350.2961794419081,1588951,0,57036,0,0,6641,0,0,52,0.5432568246638598,0,0.0,1,0.0104472466281511,0,0.0,0.06143,0.1612547578422365,0.2998534917792609,0.01842,0.3368551895587321,0.6631448104412678,24.644617481533317,4.287667383781147,0.3213767364710761,0.2463197180178312,0.2114866265809662,0.2208169189301264,11.330861648354151,5.99338850038018,19.522591080481376,12358.400233810524,54.67612376324296,14.242201357594835,17.57189682167209,11.275765504566223,11.586260079409811,0.5726726104084595,0.7878787878787878,0.7129032258064516,0.5794117647058824,0.1220657276995305,0.7582677165354331,0.927765237020316,0.8606965174129353,0.7297297297297297,0.2167487684729064,0.5063326766113144,0.7046979865771812,0.6611498257839721,0.5375939849624061,0.099767981438515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019849910371578,0.0044704403535804,0.0070103887671455,0.0093036483302185,0.0118944746607024,0.0140665872749295,0.0161647046832798,0.0182102136433697,0.0204918032786885,0.0227098279620513,0.0249182545946555,0.026983181715506,0.0292856481814723,0.0314926572058248,0.0339304683229685,0.035924246024776,0.0379723254297631,0.0402381100533051,0.0424872943450741,0.04490625,0.059217877094972,0.0732026417424615,0.0864152209938956,0.0994994531841507,0.1118891443275051,0.1274788733884017,0.1401103565365025,0.1520322779824131,0.1628013801796797,0.1725642840292521,0.1847358838168909,0.1975769780433935,0.2085641220958702,0.2188491759504476,0.2281750619322873,0.2380640941792021,0.2474280927115331,0.257341097757403,0.2657836744894018,0.2745392444525949,0.2812937730803515,0.2879388812841482,0.2943718842879302,0.299907639530281,0.305801292956788,0.3120236773954865,0.3174573387379272,0.3215167324087034,0.3261007552106947,0.3296787488111593,0.3287866943418605,0.3275510766011344,0.3264535047651272,0.3249624320887758,0.3243375858684985,0.3221539263324085,0.3204784491647762,0.3203675999145116,0.3209481430771864,0.3222792920163931,0.3244512046269693,0.3245205180586684,0.3252862695661309,0.326883841894043,0.3281830911110038,0.3289150968011272,0.3282322654462242,0.3304397056048311,0.3325265705566663,0.335415266632407,0.3372832107509307,0.341961491539808,0.3459072048283667,0.3467275494672755,0.3453467582572692,0.347286271727563,0.3441419394310187,0.3443260958623515,0.3500413109336271,0.3537753928708317,0.0,2.105267151991688,55.71989178822343,181.87633918119965,266.7050098290825,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95749,44451,420.6205808937953,6183,63.48891372233653,4796,49.67153703955133,1896,19.551118027342323,77.40440741590693,79.76186948247842,63.3594678928421,65.09934674688417,77.1725168332628,79.52665142023858,63.27470669357607,65.01455200243907,0.2318905826441266,235.21806223983788,0.0847611992660262,84.79474444509094,163.32184,114.29794190835447,170572.89371168366,119372.46541306382,355.03593,229.30575894052944,370380.74549081456,239068.49047042732,358.05513,172.49867904031865,370878.4112627808,177742.14893403952,2732.8682,1242.02184841131,2833487.221798661,1276451.2719833208,1121.93123,490.3226283637436,1161798.076220117,502147.7387374738,1857.61672,768.1509817734046,1918047.7289580049,784897.6531539238,0.38114,100000,0,742372,7753.313350531076,0,0.0,0,0.0,30294,315.9615244023436,0,0.0,32795,339.502240232274,1597355,0,57273,0,0,6641,0,0,60,0.6161944250070497,0,0.0,0,0.0,0,0.0,0.06183,0.1622238547515348,0.3066472586123241,0.01896,0.3246653331281736,0.6753346668718264,24.82622773651488,4.4137792558002245,0.3121351125938282,0.244370308590492,0.2201834862385321,0.2233110925771476,11.191763584046466,5.7588451182446025,20.03858798922167,12333.55674414593,54.17077241225075,13.97123408617466,16.788181107333557,11.81538377119592,11.59597344754662,0.5533778148457048,0.7627986348122867,0.698062792251169,0.5691287878787878,0.1064425770308123,0.7361769352290679,0.9236276849642004,0.8775510204081632,0.6771653543307087,0.1442786069651741,0.4878186968838527,0.6733067729083665,0.6343891402714932,0.5349127182044888,0.0977011494252873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026122085311895,0.0050367367620977,0.0071621320023535,0.0091403036611994,0.0113570506237735,0.013578990228013,0.0157452229299363,0.0180504678428211,0.0201692005885237,0.0222972627270401,0.024330999989751,0.0263771001611363,0.0285696661903342,0.0308067855266817,0.0328528534725589,0.0349393729519635,0.0368452664498892,0.0389510699874485,0.0407473993785528,0.0429199300116647,0.0572508325590621,0.0705047714716223,0.0840640208088605,0.0969786804591901,0.10904185242567,0.1240299422723139,0.1361061608961303,0.1476017116944497,0.1588156123822341,0.1697528547686699,0.1830535485468778,0.1962803881898538,0.208449785221032,0.2193530048431709,0.22909630933392,0.2396780229635616,0.2494282750080878,0.2584660010793308,0.2667740143104993,0.2747342038704952,0.2811687636477072,0.2879369711117595,0.2941975090018299,0.299980884566677,0.3063851948744035,0.3116766614235155,0.3166643769748591,0.3207590277337057,0.3255792927074991,0.3299385518230503,0.3291546989504201,0.3285804468353736,0.3282613277133825,0.3276321666834771,0.3259881232692108,0.3250931411470103,0.3234820243887028,0.3237892670157068,0.3235654690958624,0.3251374383973526,0.3255248742732151,0.3262758729657133,0.3287548084964041,0.3301604993312528,0.3305050214520265,0.3309663155156717,0.3317930545712261,0.3345225800394329,0.3351521511017838,0.3372249485515276,0.3388253449527959,0.3409981985800572,0.3438303745059908,0.3488900674293507,0.3541802591108211,0.351953996009858,0.3526717557251908,0.3547868061142397,0.3491844069670998,0.35347551342812,0.0,1.6415486708028415,56.194627584878674,178.27132562063213,264.661471789673,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95739,44680,422.2626098037372,6220,63.610440886159246,4826,49.7080604560315,1924,19.65761079601834,77.33232137485312,79.69722325574229,63.31916690730778,65.07063523105539,77.09160023866887,79.46005452707448,63.22886591968676,64.98454420734754,0.2407211361842485,237.16872866781105,0.0903009876210205,86.09102370785138,163.38036,114.45023323756485,170651.83467552406,119544.00321453622,356.61514,230.7040793504875,371729.2534912627,240219.0140172482,369.91357,178.88349799359247,381980.7497467072,183452.2879958659,2784.89616,1289.0740792855904,2871272.981752473,1309054.0587653746,1162.00848,514.4801043956714,1200420.5078390208,524159.33788575215,1885.03716,791.4761556602283,1928297.4754279864,792177.8132145661,0.381,100000,0,742638,7756.901576160185,0,0.0,0,0.0,30381,316.6107855732773,0,0.0,33935,350.1289965426837,1589498,0,57094,0,0,6478,0,0,57,0.5744785301705678,0,0.0,0,0.0,0,0.0,0.0622,0.163254593175853,0.3093247588424437,0.01924,0.339564817652467,0.660435182347533,24.563922448779312,4.375734741512259,0.326771653543307,0.2295897223373394,0.2217157065893079,0.2219229175300456,11.426388236798186,5.95470781722466,20.33804801894474,12331.621453550446,54.87801219739336,13.336544921078476,17.933201412351252,11.91929716910403,11.688968694859591,0.5727310401989225,0.8005415162454874,0.7178186429930248,0.5869158878504673,0.1092436974789916,0.7364914877868246,0.92018779342723,0.8782201405152225,0.7320754716981132,0.1459227467811159,0.5090647482014389,0.7258064516129032,0.6582608695652173,0.5391304347826087,0.0990453460620525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023207264177712,0.0046049762143849,0.007016083177646,0.0094011708268964,0.0117502238137869,0.0139974124142989,0.0160826466508933,0.0185096325638852,0.0207146873881703,0.0228398853398853,0.024860066020134,0.027093065037729,0.0292650824172999,0.0313510618575813,0.0337993293783853,0.0358132131635521,0.0376905235255135,0.0397447868036103,0.0415995510615523,0.0436489751708048,0.0583556038082512,0.0727192826425873,0.0864170337738619,0.0991934551037361,0.1114321263628503,0.1269000095198806,0.1391188080988157,0.1508483958186966,0.1619208339563796,0.172650452537211,0.1850926324859974,0.1971666360025541,0.2088134486698221,0.2194655027184317,0.2290107422734877,0.2389411895004984,0.2482059752463645,0.2568959114082177,0.2653955283168766,0.2726325074172079,0.2795397722011297,0.2867189328340744,0.2927524911832233,0.2987535953978907,0.304815237725031,0.3099312113217781,0.3146762121705174,0.3190842607313195,0.3237696958711498,0.3290556581376945,0.3279553253044472,0.3267992736876857,0.3258858808126029,0.324810510358767,0.3242400392046214,0.3226384190304162,0.3200874607852457,0.3202434263405672,0.320553272048164,0.3212080105665227,0.3223131191834284,0.3247120750385879,0.3253911657368178,0.3265036499619329,0.3276227651679437,0.3286731526643887,0.3304290880100225,0.3319669546572492,0.3359105925353202,0.3379736737136019,0.3410668615272196,0.3426812951565426,0.347729437916799,0.3505707500191526,0.3519594974685918,0.3573862968621459,0.3613254652746255,0.3619276144771046,0.3628198149156233,0.3605182926829268,0.0,2.672105237861488,58.89870251521978,173.95241132975153,263.86071484308815,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95728,44801,424.14967407655024,6186,63.41927126859436,4832,49.92269764332275,1910,19.5449607220458,77.41699606751023,79.77096341924884,63.36600846061516,65.10095367146388,77.18094866651488,79.53512860899879,63.27874306558672,65.01598691086407,0.2360474009953463,235.83481025005423,0.0872653950284387,84.96676059981212,163.33328,114.37687543745582,170622.26307872304,119481.10838778187,357.65714,231.42402590565356,373071.31664716697,241204.867860661,365.47049,177.17234499870662,378104.7655858265,182273.6073604774,2754.71564,1270.0002938537427,2847832.27477854,1296859.3659678902,1157.28037,513.9033867795174,1196561.9567942503,524473.3482152745,1874.55166,785.8576137116812,1921015.5022563927,791391.4086747937,0.38186,100000,0,742424,7755.55741266923,0,0.0,0,0.0,30438,317.38885174661544,0,0.0,33476,346.0325087748621,1592143,0,57153,0,0,6336,0,0,69,0.7207922446932977,0,0.0,1,0.0104462644158448,0,0.0,0.06186,0.1619965432357408,0.3087617200129324,0.0191,0.3300940922412463,0.6699059077587537,24.41191747519374,4.386278919829363,0.3228476821192053,0.2388245033112583,0.216887417218543,0.2214403973509933,11.722254998915474,6.240821603030636,20.283250765920208,12309.8710469205,54.7290859448742,13.596194706677116,17.752878724986964,11.620718533636888,11.759293979573226,0.5604304635761589,0.7755632582322357,0.7038461538461539,0.5687022900763359,0.111214953271028,0.726144297905353,0.9170854271356784,0.86810551558753,0.7322175732217573,0.1446808510638297,0.5001411233418007,0.701058201058201,0.6439195100612424,0.5203955500618047,0.1017964071856287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023583473349662,0.0044676777193568,0.0069376825705939,0.0094233288315275,0.0116520253782332,0.0137217777234878,0.0157581440861091,0.0177179016125739,0.0199583052302409,0.0223024747562585,0.024203795548633,0.0264270613107822,0.0286601287033039,0.0306990443236118,0.0328051497895518,0.0347100947578353,0.0368775235531628,0.0388831845006586,0.0408139933691551,0.0428486597422621,0.057325439338408,0.0714734132713918,0.0853833807160916,0.0974360592293454,0.1094717303494025,0.1250647743736714,0.1385945372580217,0.1506285057422328,0.1613520067514875,0.1717474989009103,0.1847437553832902,0.1966182738700534,0.208283522072728,0.2176325389370672,0.2272622408735869,0.2374636326426762,0.247149687385068,0.2557478368355995,0.2639746976069287,0.2714633895163228,0.2787372266148795,0.285832807497254,0.2920316323273875,0.2989035455220128,0.3047028561721954,0.3104123317861144,0.3152724136638044,0.319878499803007,0.3239458473951666,0.3287371473767466,0.3279347869950633,0.3273144521856234,0.3270462382996692,0.3262946422119123,0.3253903406474232,0.3235748718341112,0.3216999763014456,0.3227901953725824,0.3235128925197855,0.3243118369377854,0.3261842596046251,0.3256655263261374,0.326816341860368,0.3282364707189688,0.3288818686578594,0.3303826384922901,0.3314805887190539,0.3347611305652826,0.3384443435437113,0.340816729137897,0.3453321891513481,0.3485343736819907,0.3522585475418018,0.3556970661814874,0.3607259190321079,0.3696311858076564,0.3726052194901191,0.3734843967402106,0.3727810650887574,0.3696947133283693,0.0,2.1990523287203407,56.4635998739513,183.1017969689753,261.9664701691579,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95689,44577,421.78306806424985,6062,62.18060592126577,4758,49.07565132878388,1818,18.581028122354716,77.3508434030137,79.74329905904048,63.31502979323547,65.0835627984177,77.12657045006142,79.5212219543561,63.23148715869138,65.00354343236863,0.2242729529522762,222.0771046843879,0.0835426345440879,80.019366049072,162.51818,113.88877422674112,169839.98160708128,119019.71410166383,353.88702,228.68768602733243,369149.6096730032,238310.2782399952,361.58339,175.38572469226347,373571.98842082167,179884.41620430772,2721.50208,1241.2792784516396,2808517.635255881,1261636.383675027,1133.76493,499.087190185561,1167576.199981189,504449.53141054406,1785.13974,743.6500737317929,1826013.2721629443,744456.65828241,0.38021,100000,0,738719,7719.99916395824,0,0.0,0,0.0,29985,312.6587173029293,0,0.0,33142,342.11873883100463,1596722,0,57199,0,0,6364,0,0,73,0.7628881062609078,0,0.0,1,0.010450522003574,0,0.0,0.06062,0.1594382052023881,0.2999010227647641,0.01818,0.3343297671491504,0.6656702328508496,25.01945470390422,4.280631828564113,0.3192517864649012,0.2400168137873055,0.2215216477511559,0.2192097519966372,11.125841488127463,5.768393023955135,19.253190300657216,12274.648986952036,53.37300128932447,13.79188303351554,16.82433153124881,11.56211057395253,11.1946761506076,0.5598991172761665,0.776707530647986,0.6701777485187623,0.594876660341556,0.1265580057526366,0.7408874801901744,0.9272300469483568,0.8507853403141361,0.7276422764227642,0.173076923076923,0.4945652173913043,0.6871508379888268,0.6094986807387863,0.5544554455445545,0.1149700598802395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0047763434099644,0.0069638307159751,0.0091369217009512,0.011261673686138,0.0133962225708522,0.0154852135592528,0.0177706967338684,0.0201470633354128,0.0223981483378054,0.0247256691621372,0.0269615143640677,0.0291400946307344,0.0311669311133549,0.0332112080086691,0.035417442004714,0.0374629618118149,0.0393494010919432,0.0414001144224268,0.043333229091743,0.0574914347789755,0.0716731411578693,0.0851912499475164,0.097754960338334,0.1105625705454814,0.126002412136857,0.1385356741036364,0.1500633605588507,0.1602659341364088,0.1713111499790756,0.1844814020414102,0.1963214757399268,0.2085133238305604,0.2189890456231738,0.2290891477135119,0.2399379088590753,0.2487607734559907,0.2580946591011438,0.2661176737846433,0.2735807960381511,0.2795396389824817,0.2862629834771713,0.2925705214022533,0.2983708431306685,0.3037236047119464,0.3095032663626278,0.3136921364335656,0.3183893573454411,0.322949950195982,0.3263838490466451,0.3258354322966475,0.3240945791667239,0.3232148385825663,0.3223874133949191,0.3210458446351549,0.3199560029942406,0.3185185185185185,0.3181185410832146,0.3190375498789263,0.3190049680371801,0.3195269588611142,0.3203942708743212,0.3209753047827446,0.3225232439165443,0.3241219255431142,0.3259877631442497,0.3266147244805781,0.3312361790263805,0.3331013847331431,0.3379580638839898,0.340088066139468,0.341371158392435,0.3437344294967613,0.3481055736217197,0.3511743239449799,0.3480217957829898,0.3512402982803226,0.3582653670181022,0.36248654467169,0.3614088820826952,0.0,2.4968656138303302,54.99209504233844,169.5393042411593,266.83552511188805,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95721,44600,421.8196633967468,6090,62.306077036387,4802,49.560702458185766,1826,18.75241587530427,77.26691653433518,79.6252921830881,63.2951211478972,65.0384955512585,77.03234935873459,79.39079452392293,63.20760483515915,64.95304222772515,0.2345671756005884,234.4976591651715,0.087516312738046,85.45332353335766,162.98436,114.2305540324097,170270.22283511455,119336.9835588948,354.14546,229.72873246911016,369363.7446328392,239385.23674962675,369.18417,179.18443734808278,381206.997419584,183888.44284949003,2735.20488,1271.869892562931,2824542.0754066505,1295883.9229134792,1108.23434,502.5387205963079,1139577.835584668,506875.1762870671,1784.2711,762.5817840622119,1832994.9540853105,770675.1861382388,0.38068,100000,0,740838,7739.555583414298,0,0.0,0,0.0,30157,314.4137650045445,0,0.0,33860,349.2337104710565,1587902,0,57017,0,0,6453,0,0,67,0.6999508989667889,0,0.0,0,0.0,0,0.0,0.0609,0.1599768834716822,0.2998357963875205,0.01826,0.3413446434181589,0.658655356581841,24.34691413338068,4.210272274743456,0.319658475635152,0.2471886713869221,0.2240733027905039,0.2090795501874219,11.251877532581322,6.003937094427292,19.8219788152304,12318.790391805893,55.10461279564292,14.436516812733707,17.414131253579352,12.068803506568637,11.185161222761224,0.5749687630154102,0.7919123841617524,0.6872964169381107,0.6068773234200744,0.1125498007968127,0.7408470926058865,0.9221052631578948,0.8461538461538461,0.7591240875912408,0.1491228070175438,0.5071868583162218,0.7050561797752809,0.6282394995531725,0.5548628428927681,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.0049681128268561,0.0074887364533019,0.0094675998821629,0.0117364684823952,0.0137761803427244,0.0158825628217544,0.0180990394136442,0.0202101776696448,0.0223859972362966,0.0246842709529276,0.0266832303238126,0.0287421331907367,0.0310649211531925,0.0333133872565203,0.035362462658025,0.0374873143756601,0.0395078123378913,0.0413821062151121,0.043280751838963,0.0579820613755729,0.0715923006876628,0.085049004176373,0.0978137362174901,0.1096224245429322,0.1250224860586436,0.1379449451681051,0.1486143949560142,0.1594221495097253,0.1696525370058286,0.182892254621894,0.1953257053699129,0.2076649132551377,0.2178050837248524,0.2279744784951568,0.2382781280525708,0.24822480906214,0.2571805244120928,0.2656321003362719,0.2732514816980202,0.2805588027639208,0.2876106194690265,0.2939058762227328,0.2985966174883051,0.3039122717436234,0.3096633316473186,0.3148401168256515,0.3193425076452599,0.3245021083360363,0.3290800794176042,0.3277243914635959,0.3273606410167852,0.326955710164602,0.3252865402170605,0.32507301662991,0.3237666507904804,0.3218127790754954,0.3224344501392574,0.3227289097737914,0.3236305664027514,0.3245635465017947,0.3263003430565745,0.3261423189442889,0.3286512441941346,0.3292659353404533,0.3310382742551966,0.3313194364906654,0.3348931326672568,0.3384309690238796,0.3432559636349008,0.3478320842337579,0.3495974235104669,0.3513856300336102,0.3549644576931896,0.3568998109640832,0.3606323546891715,0.3619134953385297,0.3697495961227787,0.3747940691927512,0.3833397608947165,0.0,2.365078472831894,61.20354883786907,177.2672969457734,253.6106632218352,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95715,44226,418.199864180118,6130,62.90550070521861,4819,49.88768740531787,1900,19.5685106827561,77.288290147924,79.65701342881525,63.294707477804174,65.04360905018524,77.05274156737657,79.41898541859709,63.2085895363218,64.9579065108836,0.2355485805474302,238.02801021815867,0.0861179414823709,85.70253930163574,162.80726,114.0671616226783,170095.867941284,119173.75711505856,355.36833,229.74100863450332,370827.5296453011,239578.4925043352,366.08246,177.78209167764223,379203.0402758189,183154.49305950347,2769.93508,1275.4992376519135,2869865.1622002823,1308651.141346922,1184.74035,523.3068300086335,1228853.2622890873,537808.4730801168,1864.90832,772.7940757064664,1922855.226453534,787970.0136033313,0.37793,100000,0,740033,7731.630360967455,0,0.0,0,0.0,30247,315.53048111581256,0,0.0,33520,347.0197983597137,1589242,0,57070,0,0,6409,0,0,67,0.6895470929321422,0,0.0,0,0.0,0,0.0,0.0613,0.1621993490858095,0.3099510603588907,0.019,0.3400841252531547,0.6599158747468453,24.370203882422302,4.423628148362073,0.3187383274538286,0.2324133637684166,0.2183025523967628,0.2305457563809919,11.515953336005335,6.006579462558987,20.15132053782264,12234.925223860268,54.84448692438574,13.605445053605935,17.43782387678519,11.730467303637475,12.070750690357142,0.56733762191326,0.7982142857142858,0.6979166666666666,0.596958174904943,0.126012601260126,0.7596371882086168,0.9266666666666666,0.8786407766990292,0.7925311203319502,0.1590909090909091,0.4945652173913043,0.7119402985074627,0.6316725978647687,0.5388409371146733,0.1178451178451178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280962942707,0.0044808953680518,0.0065856232495839,0.0091529693817428,0.0114006183386217,0.0135832764817888,0.0158336901776064,0.0178124840504261,0.0201371781373621,0.0221051015708949,0.0240330415889478,0.0261747859826322,0.0283358351668688,0.0304937076476282,0.0326450202161894,0.034868699812945,0.0369427015385889,0.0389888025238426,0.0407925529148681,0.0429168447052202,0.0579726794218397,0.0710554142194583,0.0840294685584753,0.0965589813743028,0.1090047393364928,0.124080249854428,0.1372979974942133,0.1487956363791321,0.1600769806479204,0.1706052244494787,0.1835002857420127,0.1959811514921735,0.2075638121787612,0.2175902612046504,0.2271355566324507,0.2367723253414398,0.2467577478645856,0.2558286358511837,0.2645720526004459,0.2711510196582767,0.2793491748715629,0.2864395253951132,0.293218187641609,0.299340564303989,0.3043224156824546,0.3098212189727813,0.3144248998706794,0.3184468000969474,0.3226288371851332,0.326204623956169,0.325541242328185,0.3240402256831882,0.3237177222167258,0.3229805559180477,0.3215483947929559,0.3210864091383651,0.3184313227781832,0.3178633687465053,0.3188341267938487,0.3195331937210259,0.3189110994213572,0.3207401543637443,0.322148777672857,0.3229566770879857,0.3230547895935739,0.324480099696238,0.3259571079128505,0.3300552972225713,0.3333567391075378,0.3382370482286986,0.3382870730257442,0.3388429752066115,0.3416016116847142,0.3409004342195475,0.3457778605344009,0.3479793233082707,0.3510895883777239,0.3529883674288006,0.3498920086393088,0.3548022598870056,0.0,1.773290222309109,58.601013610611055,181.2403338357228,258.7390544686664,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95838,44563,421.49251862518,6135,62.84563534297461,4795,49.54193534923517,1848,18.969511049896703,77.36488025655099,79.67956565063099,63.35773544642036,65.07105426844456,77.13133201097165,79.44586791879341,63.27179220875176,64.98724160475716,0.2335482455793425,233.6977318375801,0.0859432376686015,83.8126636873966,162.95554,114.10317395549724,170032.05409127905,119058.15433909024,351.69827,227.9812556418416,366459.5254491954,237369.79657530572,361.37793,175.04965922805354,373782.3201652789,180118.12781194347,2773.3228,1262.238080763314,2867936.4761368143,1291229.2000702366,1167.10553,514.1350132954451,1203244.8402512574,521931.00293159706,1821.38894,763.6782843902472,1871786.9321146104,771583.6370150616,0.3801,100000,0,740707,7728.729731421775,0,0.0,0,0.0,29973,312.22479600993347,0,0.0,32978,340.8668795258666,1599125,0,57332,0,0,6480,0,0,64,0.6677935683131953,0,0.0,0,0.0,0,0.0,0.06135,0.1614048934490923,0.3012224938875306,0.01848,0.3268512756689483,0.6731487243310517,24.6404801139525,4.4295145818748045,0.3263816475495307,0.2285714285714285,0.216266944734098,0.2287799791449426,11.104434644915836,5.545230162644241,19.740331837668997,12369.520053611184,54.0122324839079,13.02420420770454,17.649065676524888,11.36021341705338,11.978749182625078,0.5597497393117831,0.7883211678832117,0.6964856230031949,0.579556412729026,0.1175934366453965,0.7234387672343877,0.9261083743842364,0.8571428571428571,0.7316017316017316,0.1288888888888889,0.5030881527231892,0.7072463768115942,0.6465661641541038,0.5359801488833746,0.1146788990825688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991998379418,0.0045013990834989,0.0066360905917688,0.0087352212245561,0.0108601702240164,0.0129515741457255,0.0151379233011886,0.0172427874308348,0.0194430814524043,0.0215057065356466,0.0235108432747099,0.0256662869575033,0.0280478529877284,0.0302799505969534,0.0321194066774556,0.0344076475203369,0.0363367432431034,0.0386368816959197,0.0408070026062487,0.0427608306629489,0.0583774875881346,0.072726132491586,0.0861171343871447,0.0993227279886596,0.1114738216587338,0.1269018382236487,0.1394114656158637,0.1512909637849846,0.1619055746378512,0.1716039069528338,0.1840732334369587,0.196662126813239,0.2075543436933071,0.2178565968506344,0.2285648356719812,0.2387018300436778,0.2485017933922962,0.2575095729509393,0.2658083072881279,0.2730858495203905,0.2808609898611977,0.2879539591188728,0.2946854766293303,0.3009902647881933,0.3065821893699401,0.3127331371800712,0.3183869395102316,0.3237666908056053,0.3283130583170659,0.3320429258015669,0.3303002607456788,0.3295730911389274,0.3286024048886261,0.3283450577070302,0.3270643156611459,0.3253960957371824,0.3228108005263909,0.3240228977497039,0.324759668934318,0.3260877350044763,0.3264349201566737,0.327353636490057,0.3287120797744772,0.3295707008370548,0.3305339653969247,0.3320720250521921,0.3338932384341637,0.3383894011391887,0.33999015540398,0.3417842621382444,0.3466611706512778,0.349807651207523,0.353251206502413,0.3562600752283718,0.3587575987841945,0.3626177136726666,0.3660755589822668,0.3644744929317762,0.3618548164504554,0.3668478260869565,0.0,1.8636290325538551,54.131748832165,175.47669124616925,274.47807413323505,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95637,44489,421.7614521576377,6104,62.74768133672114,4736,48.94549180756402,1847,18.92572958164727,77.2563444549925,79.66660617794915,63.27473565930678,65.05572453925208,77.02188263804653,79.43485914167805,63.18760365451199,64.97256196631716,0.2344618169459664,231.74703627110205,0.087132004794789,83.16257293492413,163.81002,114.7578931553042,171283.10172841055,119993.1963103236,356.13129,230.90174663069223,371799.0735803089,240856.92945307508,367.37311,177.77181115521446,380881.32208245766,183305.22462945248,2714.28224,1254.552154677561,2807792.8416826124,1281506.404578188,1118.7174,496.5711228383322,1155683.1142758557,505179.2121949161,1802.81462,763.0764668242253,1849420.3707770004,766583.9944741917,0.37913,100000,0,744591,7785.59553310957,0,0.0,0,0.0,30344,316.676600060646,0,0.0,33671,348.77714692012506,1582453,0,56885,0,0,6490,0,0,59,0.6169160471365684,0,0.0,1,0.0104562041887553,0,0.0,0.06104,0.1610001846332392,0.3025884665792923,0.01847,0.3389434315100514,0.6610565684899485,24.32750426683061,4.294496909110936,0.328125,0.2364864864864864,0.21875,0.2166385135135135,11.071269776456807,5.740522577167087,19.83989776445401,12228.03629749681,54.14976998313328,13.475427703347252,17.6778419775477,11.57352762348094,11.422972678757384,0.566722972972973,0.7866071428571428,0.693050193050193,0.583976833976834,0.117933723196881,0.7335375191424196,0.9198113207547168,0.8637532133676092,0.7715355805243446,0.1150442477876106,0.5032069970845481,0.7054597701149425,0.6360515021459228,0.5188556566970091,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0044292186533959,0.0066978556713585,0.008889295256672,0.0110591107945874,0.0131414076586901,0.0153623306675371,0.0175528219379623,0.0195159871529979,0.0214623052257383,0.0238263814068031,0.0261443282017552,0.0283937653138962,0.0304983039313736,0.0325506440916087,0.0346237026459297,0.0365847337265838,0.0385925910535829,0.0408237595737595,0.042673259064547,0.0572109405211066,0.0712280260649108,0.0846158691498519,0.0970906488147867,0.1098554394850691,0.1252989354722651,0.1378779677566572,0.1493850167722698,0.1607345176254302,0.1712133244618059,0.183477435908493,0.1955796316359696,0.2065310924003616,0.2179421144341307,0.2275444478757665,0.2377061918611105,0.2477209937026721,0.2567226417220782,0.2654520242776931,0.2721359991740941,0.279463426510997,0.2861631164933588,0.2926754047802621,0.2988715486194477,0.3040323366124476,0.3096193993897543,0.313400639618737,0.3181377674632119,0.3220037635455194,0.3266493067029727,0.3260370840193247,0.3243966718640045,0.323491583395757,0.3219161190175683,0.321065592119991,0.318590473844638,0.3174794938640554,0.3169139465875371,0.3168228315997593,0.3177163798368843,0.3180909639462966,0.3187601892719392,0.3196538364356102,0.3209807433945364,0.3223046893826208,0.3245339182202726,0.3249384694636826,0.3283068866525758,0.3319777022052378,0.333505072923272,0.3368794326241134,0.3428874734607218,0.3450100806451613,0.3475628216772631,0.3490862100793797,0.3510127619716661,0.3500599161174356,0.3528710510629843,0.3582329317269076,0.3692660550458715,0.0,2.2439168790371764,57.316208610306845,180.87640613407964,252.79912457302228,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95693,44727,423.6569028037579,6170,63.275265693415406,4858,50.17085889249997,1894,19.3744579018319,77.32722884548278,79.70480928951744,63.32110870231941,65.0761792369058,77.09774141195791,79.47669098067983,63.23660709439505,64.99451444972705,0.2294874335248664,228.1183088376082,0.0845016079243663,81.66478717875236,162.41038,113.79328028618072,169720.23031987713,118914.94705587736,356.21577,230.22418614878825,371674.2917454777,240012.01357339436,369.98596,178.67625151947587,383200.2027316522,183968.63740876663,2770.77196,1272.2348723079217,2862739.34352565,1296994.111924111,1145.3059,503.74230874610015,1182562.2981827303,512211.16305907787,1853.37666,767.1455598495879,1899124.073861202,771209.139963373,0.38198,100000,0,738229,7714.555923630778,0,0.0,0,0.0,30287,315.8956245493401,0,0.0,33850,350.27640475269874,1593695,0,57221,0,0,6544,0,0,82,0.8464568986237238,0,0.0,0,0.0,0,0.0,0.0617,0.1615267815068851,0.3069692058346839,0.01894,0.3301988592569755,0.6698011407430245,24.36351879833132,4.336561905821548,0.3163853437628653,0.2387813915191436,0.224578015644298,0.2202552490736928,11.233551907500331,5.962048189485524,20.076452693321738,12377.152664324629,55.15805295964999,13.950230704255768,17.485725206877635,12.043021734224885,11.679075314291708,0.5664882667764513,0.7887931034482759,0.6987638256343527,0.5857011915673694,0.1158878504672897,0.7409961685823755,0.9220183486238532,0.8574766355140186,0.7399103139013453,0.1513761467889908,0.5023923444976076,0.7085635359116023,0.6375112714156899,0.5460829493087558,0.1068075117370892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0045707452037579,0.0067667647357208,0.0092730836812009,0.0112059059802117,0.0132670827690835,0.0153468072522586,0.0176585335961516,0.0196449389483157,0.0216792454762368,0.0238026869039072,0.0259846967596158,0.0280800641830038,0.0302109200317358,0.0325087464008173,0.034477766287487,0.0365282612299022,0.0385166420963019,0.0406794117035218,0.04298519908276,0.0570921245038646,0.0712917708867515,0.0851391889907487,0.0982083679631363,0.1107337601383776,0.1262112300596623,0.1390292045165124,0.1513996401077547,0.163310436185328,0.1735348378239231,0.1871553506806824,0.1994198694706309,0.2113345441494741,0.2218236696485203,0.2330098155728685,0.2427132839243577,0.2517800147311564,0.2606939992126427,0.2684141843971631,0.275653139997022,0.2823406841465532,0.2890308689648716,0.2960284107724178,0.3016493263652491,0.3068909769409362,0.3124622309921687,0.3165785716075052,0.3208104631763941,0.3251198963058976,0.3296878921160729,0.3297725985271506,0.3279501053240262,0.3266635644485807,0.3262484105883713,0.325065060599301,0.3232793025112052,0.321594421111023,0.3213905058620972,0.3222241173460685,0.3235351718980896,0.323755398104354,0.3246553458375244,0.3255794494184587,0.325701905251167,0.3276421786701936,0.328796412181894,0.3312243502051983,0.3349781563315209,0.3369538558564872,0.3396518836432999,0.3421437717212365,0.3451072457581902,0.3458936587216286,0.3451286764705882,0.3476899724883787,0.3433102790364893,0.3460826650215916,0.3480203045685279,0.3458046767537827,0.3499043977055449,0.0,2.326883108999659,57.197809148959486,183.0291239240468,264.3141866615816,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95779,44560,421.7939214232765,6163,63.07228098017311,4814,49.69774167615031,1931,19.74336754403366,77.38146625236273,79.70520724168419,63.35451413110488,65.06814066850717,77.13780899472198,79.4664565898521,63.26236325500544,64.98144839022756,0.2436572576407485,238.75065183209188,0.0921508760994385,86.69227827961379,164.14706,115.01434693639918,171381.05430209127,120083.05258605664,356.30762,230.1482033046645,371416.56312970485,239697.27529486056,363.54348,175.74721025058838,377315.2152350724,181648.47495521567,2758.46924,1276.0532441595262,2847281.345597678,1299534.9754742957,1170.38646,522.5429252255235,1206868.9900708925,530561.3787881017,1895.69004,802.4344238420958,1939481.5773812635,800863.5184754796,0.38107,100000,0,746123,7790.047922822331,0,0.0,0,0.0,30391,316.6873740590317,0,0.0,33279,345.1382870984245,1587455,0,57032,0,0,6449,0,0,63,0.6577642280666952,0,0.0,0,0.0,0,0.0,0.06163,0.1617288162279896,0.31332143436638,0.01931,0.3268873762376237,0.6731126237623762,24.397347384837463,4.392353720302849,0.3194848358953053,0.236186123805567,0.2179061071873701,0.2264229331117573,11.10584211593534,5.630987006576421,20.55081638643392,12303.994049541072,54.7548659023968,13.6911611183998,17.56724627605556,11.657678258025635,11.838780249915798,0.5627336933942667,0.802990325417766,0.688556566970091,0.5776930409914204,0.1201834862385321,0.7056631892697467,0.8983833718244804,0.8194130925507901,0.6820083682008368,0.1409691629955947,0.5074884792626728,0.7443181818181818,0.6356164383561644,0.5469135802469136,0.1147161066048667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217362250167,0.0045705136000648,0.0066544263093293,0.0089467056625233,0.0115814412234231,0.0136816173626239,0.0159103881278538,0.0181430422759415,0.019932570494483,0.0219860042560157,0.0244437159365651,0.0265423168867411,0.0286618639974513,0.0306152911746842,0.032702716634878,0.0349688626341282,0.0369538671689053,0.0387645924482136,0.0406931443946933,0.042577339983548,0.0571518029536085,0.0709187944746756,0.0843192783721418,0.0971814846353591,0.1095812423565133,0.1255936452196355,0.1379288396664757,0.1493090305133828,0.1601431470996688,0.1706788766526909,0.1832717797422286,0.1965062195781503,0.2071759511017336,0.2184768219166092,0.2288695192815636,0.2388213521869701,0.2483532432734174,0.2580833942940746,0.2662805224304372,0.2740228619910799,0.2808883328120112,0.2862213163720701,0.2927574687862778,0.298273381294964,0.3041100551734195,0.3101786220584066,0.315233578195197,0.3197419978627042,0.3239657428641764,0.3276469424104492,0.326750666343591,0.3264352011000344,0.3261846088854467,0.3259281757567868,0.3255637531980722,0.3235348209906817,0.3206335142319194,0.3212675617633076,0.3216576810209513,0.3224766721276444,0.3238120163008935,0.32489850616846,0.3264559555165349,0.3263418883602493,0.3287191420962982,0.3307156230497191,0.3322825253471926,0.3357554497619644,0.3390275492701369,0.3420770665502599,0.3447271403213326,0.3476674071723262,0.3505592701368493,0.3517189270872686,0.3541588257433195,0.359210681791327,0.3601091239769627,0.3564972886121711,0.3608837970540098,0.3615560640732265,0.0,2.0326740576654725,59.20273835435511,175.1541456073307,262.1097274271436,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95749,44591,421.6858661709261,6072,62.08942129943916,4729,48.72113546877775,1846,18.83048386928323,77.31912755708531,79.66794537441324,63.32066847763053,65.05789615514806,77.08857226719695,79.44200643424071,63.23421816180016,64.97621905930424,0.2305552898883576,225.9389401725258,0.0864503158303762,81.67709584381555,161.89822,113.37037679323562,169086.06878400818,118403.71888294982,351.81849,228.2836488815172,366782.1596048001,237762.701314392,370.22776,179.24029623619464,382388.8082382061,183954.4272746259,2678.05368,1237.5504876831535,2760730.9528036844,1256273.264141822,1122.23025,498.7579308050084,1154895.758702441,503754.9942296364,1794.05888,753.740295676492,1832145.359220462,751622.8725026739,0.37886,100000,0,735901,7685.7303992730995,0,0.0,0,0.0,29884,311.428839987885,0,0.0,33810,348.9331481268734,1597450,0,57451,0,0,6308,0,0,84,0.8668497843319513,0,0.0,1,0.0104439733052042,0,0.0,0.06072,0.160270284537824,0.3040184453227931,0.01846,0.3366430260047281,0.6633569739952718,24.376811927159043,4.210570912154008,0.3245929371960245,0.2469866779445971,0.2199196447451892,0.208500740114189,11.490742701188852,6.17512842024397,19.65662668582569,12248.679658191548,54.17314679268927,14.186741701871515,17.53915602608819,11.765695762455152,10.681553302274413,0.5842672869528441,0.7988013698630136,0.6957654723127036,0.6115384615384616,0.127789046653144,0.7665130568356375,0.9164835164835164,0.8497536945812808,0.7903225806451613,0.2072538860103626,0.5150277210388094,0.7237026647966339,0.6403897254207263,0.5555555555555556,0.1084489281210592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304043585251,0.0045805085175163,0.0068483421939044,0.0091206402730098,0.0112985731864823,0.0133410731925901,0.0154779505480499,0.0180022873013928,0.020337007423161,0.0223889764746831,0.0246278144608948,0.0265119622137796,0.0284876844757546,0.030471912890299,0.0326967323902972,0.0350137450652115,0.0370086646859698,0.0390950770698919,0.0411068507954321,0.0429941778717465,0.0576722338204592,0.0712597024917881,0.0849267366610377,0.0969767075030233,0.1091982499604659,0.124742257140138,0.1371995842436841,0.1486135642995467,0.159786438868126,0.1703028678638434,0.1830018200028,0.1947462983808122,0.2068515355577071,0.2173580201008322,0.2273802581340845,0.2383605032338088,0.2474689408061437,0.2570042982199518,0.2645690027015369,0.2716641850876188,0.2791219986570654,0.2856908761046409,0.2932543677820551,0.2993663442382929,0.3044583353602179,0.3088382311195586,0.3138783079390537,0.3186902790164352,0.3232566885836932,0.3277458556238029,0.3269803614993732,0.3256496054860164,0.3250486642028944,0.3232769228542062,0.3220994392968157,0.3195705521472393,0.3178833158846483,0.3186742729380045,0.3196013743354814,0.3208600150252209,0.3210900696308252,0.322000711997152,0.3218552501732211,0.322806231088199,0.3242227948081971,0.3250992270733235,0.3253438338184101,0.329548671174713,0.3328998699609883,0.3356823310503187,0.3392468239564428,0.3392175572519084,0.3423105965265542,0.346467494855575,0.3466026726896292,0.3495111320532453,0.3537829197746993,0.3538337042282015,0.3482093663911845,0.3583902809415338,0.0,2.568335685218949,56.9821348976888,183.721052775884,249.06134317796736,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95685,44436,420.8601139154517,5982,61.2844228457961,4637,47.90719548518577,1873,19.198411454250927,77.34181859432726,79.72360837910968,63.3271521787835,65.08519660665182,77.10576790202957,79.48865726052107,63.23840002681939,64.99936896742729,0.2360506922976952,234.9511185886115,0.0887521519641083,85.82763922453296,161.76314,113.37752069941996,169057.76244970478,118490.1770758235,350.97146,227.62153478858764,366233.91336155095,237322.5070995041,360.72408,174.8128051228328,373250.86481684697,179937.3955976062,2680.38628,1237.4203464800578,2772608.705648743,1264630.8826619198,1130.70138,497.46122657503287,1170196.906516173,508451.8767349068,1843.61084,781.8204581967022,1892908.1256205256,789139.8851000044,0.37896,100000,0,735287,7684.443747713853,0,0.0,0,0.0,29826,311.12504572294506,0,0.0,32996,341.1924544076919,1600642,0,57397,0,0,6399,0,0,59,0.6166065736531327,0,0.0,0,0.0,0,0.0,0.05982,0.1578530715642812,0.3131059846205282,0.01873,0.3302474062250599,0.6697525937749401,24.42806138821881,4.427927396086199,0.3157213715764503,0.2240672848824671,0.2257925382790597,0.2344188052620228,11.334341320480846,5.814866280359515,20.05006471130676,12244.371855879888,52.64720776243141,12.575811693152431,16.563673129730645,11.65816901977854,11.849553919769791,0.5458270433469916,0.8026948989412896,0.6823770491803278,0.5616045845272206,0.1011959521619135,0.7041925465838509,0.9069767441860463,0.8341463414634146,0.7431906614785992,0.0982905982905982,0.4849208719020603,0.74079754601227,0.6233396584440227,0.5025316455696203,0.1019929660023446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0042977183575417,0.0062193723811166,0.0085515224147386,0.0106357017936307,0.0128899568298444,0.0152993099511767,0.0174351540887886,0.019838714623003,0.0220905117259875,0.0242186859158395,0.0263433571604633,0.0281784325425402,0.0305216083094614,0.0326882386334313,0.0347538270583367,0.0365899152349174,0.0388712390207437,0.0407590038075026,0.0427313004951785,0.0575281790926279,0.071756908159953,0.0853616297742372,0.0981458877009849,0.1101640381876681,0.1264345931308772,0.1390887290167865,0.1506387055567383,0.1615877764718452,0.1716826118666609,0.1846821618594231,0.196369654814318,0.2071377292405421,0.2172948032494724,0.227471258044997,0.238256111474175,0.2468155888230237,0.2560891918953277,0.2646985380913466,0.2716985454128965,0.2783985748658152,0.285102749739763,0.2917021578648495,0.2974401380599697,0.3036115599071903,0.3074457593688363,0.3122402483601221,0.3174360736696068,0.3217150187231947,0.3266154577130187,0.3254366944552935,0.325090819022457,0.3242275597654488,0.3230104481278631,0.322657353050457,0.3210179365322704,0.3187933272134469,0.3198693539915966,0.3205112869324493,0.3213661182684415,0.3226566444157738,0.3223476476160404,0.3238647060053967,0.3239940121098376,0.3248054194292303,0.3265604215029082,0.3268080013677552,0.3299691882034836,0.3335913585025157,0.3359421556553176,0.3400966624110888,0.3410079575596817,0.3423817863397548,0.3398286450830237,0.3444993934869833,0.3466555977229602,0.3512605042016806,0.3507568113017154,0.3511640798226164,0.3455034588777863,0.0,2.103256814174808,56.51206759291101,169.29096557778877,251.9069148433049,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95675,44779,424.0919780506924,6200,63.5693754899399,4884,50.4206950614058,1943,19.92160961588712,77.38307130315455,79.75958706466419,63.34642469116329,65.09735706969023,77.14189021606157,79.52003153220642,63.255745083585104,65.00983156211171,0.2411810870929827,239.5555324577714,0.0906796075781883,87.52550757851907,162.14286,113.60852112415095,169472.54768748366,118744.2081255824,354.71811,228.8412546813321,370140.5487326888,238573.4148746612,364.22943,175.84401955715913,376477.93049385946,180623.37152961665,2780.01568,1275.9056527535552,2871330.859681213,1299227.3558960597,1173.68205,522.68794549851,1210634.6903579826,530212.3182634021,1899.39198,802.6096826316779,1948830.7290305723,808764.6222795066,0.38268,100000,0,737013,7703.2976221583485,0,0.0,0,0.0,30228,315.30702900444214,0,0.0,33345,344.3428272798537,1598829,0,57468,0,0,6379,0,0,63,0.6584792265482101,0,0.0,3,0.0313561536451528,0,0.0,0.062,0.1620152607923068,0.3133870967741936,0.01943,0.3351766513056836,0.6648233486943165,24.44198027127289,4.387822695682907,0.3243243243243243,0.2338247338247338,0.2237919737919738,0.218058968058968,11.225655573455368,5.892029386681331,20.683817323361577,12379.451589438386,55.15738994358088,13.542494795035616,17.814088768831926,12.116620258398417,11.684186121314918,0.5577395577395577,0.7924693520140105,0.6799242424242424,0.5599268069533394,0.1220657276995305,0.730829420970266,0.945137157107232,0.8442211055276382,0.7131474103585658,0.175438596491228,0.4963948973932335,0.7098515519568152,0.6247892074198989,0.5142517814726841,0.1075268817204301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021258718605428,0.0045184689887139,0.0068457723552499,0.0090072708071002,0.0112348126683951,0.0134368924132455,0.0157189749026483,0.0175667813287876,0.0197683808122003,0.0221016532732763,0.0242779663102207,0.0263903721350529,0.0286014007590015,0.0305508631700383,0.0327232962634369,0.0348394964757436,0.0369100401939253,0.0390247952755088,0.0411713932133237,0.0429911412193851,0.0574795499420189,0.0721232869541547,0.0850958915607033,0.097570977917981,0.109707622070158,0.1246788670747565,0.1372280880295127,0.1490454666312151,0.1604934319343513,0.1713223397301959,0.184914998924037,0.1976815856915773,0.2091137369147652,0.2203274961194551,0.2303588322002948,0.2407282236528638,0.2505165577707042,0.2597377728716574,0.2684755079557973,0.2760011920317264,0.2832019265279659,0.2900638210668071,0.2970064705742931,0.3020034330848548,0.3077269299077926,0.3129543014401895,0.3182490165125661,0.3234735863237411,0.3278660892565412,0.331316067653277,0.3309316669809033,0.329719466725369,0.3283250017601915,0.3272543352601156,0.3265554680885826,0.3246383030897499,0.3232265627475208,0.3229503620630203,0.3239308929182347,0.324305009647681,0.3246651347867511,0.3251550654720882,0.3252745417345192,0.3260501581362199,0.3280248684839789,0.3293434892999637,0.3293093211953295,0.3311171458001685,0.3343342993819617,0.3367981730844948,0.341092292364822,0.3435660218671152,0.3488966463034534,0.3508349631412667,0.3507635354002776,0.3551096593560429,0.3583208395802099,0.3586828694629557,0.3636120758749666,0.3708902844477281,0.0,2.471618713923706,55.68284910100056,181.88709135038656,271.9834952094269,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95698,44399,422.4330707015821,5955,61.15070325398651,4736,48.956091036385295,1885,19.40479424857364,77.3960056150407,79.78190774814222,63.35197710932333,65.11369839382357,77.16307164301733,79.5471048429132,63.26666057726949,65.02968943320586,0.2329339720233747,234.80290522901728,0.0853165320538451,84.0089606177088,162.99426,114.12870134708214,170321.49052226797,119259.23357550015,353.37152,227.77264205233135,368725.8981378921,237480.8585888225,358.55453,172.88957185706212,370767.70674413256,177696.13330993478,2706.7318,1238.201160193894,2800760.8936445904,1266214.0485630785,1131.07762,497.5892721751797,1169974.252335472,508014.72804636,1852.43056,774.5001795416747,1908811.051432632,786394.7460946214,0.3802,100000,0,740883,7741.885932830362,0,0.0,0,0.0,30089,313.86235866998265,0,0.0,32860,339.50552780622377,1600938,0,57387,0,0,6497,0,0,55,0.5747246546427303,0,0.0,1,0.0104495391753223,0,0.0,0.05955,0.1566280904786954,0.3165407220822838,0.01885,0.343795036028823,0.6562049639711769,24.393527383930387,4.342758596809966,0.3190456081081081,0.234375,0.2236064189189189,0.2229729729729729,11.075675047498656,5.706249007009394,20.113102422325493,12239.200129363984,53.47497308044299,13.337247601099811,16.879147837085313,11.672993355487082,11.5855842867708,0.5574324324324325,0.8144144144144144,0.6776968894771674,0.5486307837582625,0.1240530303030303,0.7400156617071261,0.9530516431924884,0.8590078328981723,0.710204081632653,0.1614349775784753,0.4900260190806591,0.7280701754385965,0.6161347517730497,0.5,0.1140456182472989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210622283902,0.0048569284743769,0.0068005115608696,0.0090932181864363,0.0111183447602384,0.0132773999103979,0.0155184192012398,0.0174274367272764,0.019536281665951,0.0216790517717865,0.0236928439614517,0.0257708142961282,0.0276240821111956,0.0294799295448224,0.0312625746742192,0.0330466601889561,0.0349474338391423,0.0368782695341692,0.0386035338040912,0.0405519483903242,0.0554940463756005,0.0692256977510805,0.082311605223137,0.0951459781111683,0.10811893293422,0.1243007750954329,0.136831832309667,0.1491479238293931,0.160467848750267,0.1710063486616335,0.1836409450175521,0.1961193610140711,0.2074391211274951,0.2179781420765027,0.227295214432559,0.2369693950965742,0.2468441946563183,0.2561161907757284,0.2643347454747287,0.2723417873429874,0.279018759018759,0.2853708350353037,0.2920622549714232,0.2980456415654004,0.3046261274367181,0.3110780614314335,0.3164460634488953,0.3209327094982692,0.324223538368237,0.3284059076502229,0.327644959617913,0.326268456191821,0.3253807677176418,0.3240866230283457,0.3235551339252627,0.3221789288715715,0.3200164354119915,0.3205065198872944,0.3206736669848629,0.3219131735460664,0.3233793657615906,0.3239938568165708,0.3254587155963303,0.3258844195406132,0.3273271834191925,0.3276220145379024,0.3288653366583541,0.3328630549285177,0.3353752450294035,0.3375371802498513,0.3414879050661798,0.3421276595744681,0.3450517546074224,0.3470274390243902,0.3492393461211376,0.3521884716574982,0.3503683241252302,0.3538994094889024,0.3549014162732574,0.3554778554778555,0.0,2.060867256282904,56.161656702983606,172.71087121556835,260.68986950509355,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95816,44477,421.17182933956747,6218,63.75761876930784,4892,50.40911747516073,1974,20.101026968356017,77.38566316619061,79.7078834843926,63.36611244363343,65.08467476490036,77.1395494164354,79.46639859355253,63.273742695921456,64.99753611973608,0.2461137497552101,241.48489084007,0.0923697477119702,87.1386451642735,163.14078,114.24960645880638,170264.42347833348,119238.33772099271,356.00219,230.1894357129387,370878.224931118,239572.44430093255,364.15691,176.08352026659858,376926.2544877682,181200.22416237957,2820.4808,1301.540947125596,2906426.4840945145,1321491.529375584,1155.7664,517.3750604703054,1184907.959004759,518994.8897458573,1938.83072,823.1634074025753,1976010.8750104369,817676.0350990988,0.37939,100000,0,741549,7739.291976287885,0,0.0,0,0.0,30375,316.31460298906234,0,0.0,33411,345.5477164565417,1596833,0,57346,0,0,6407,0,0,54,0.5635801953744677,0,0.0,1,0.0104366702847123,0,0.0,0.06218,0.163894673027755,0.3174654229655838,0.01974,0.3250997238416692,0.6749002761583308,24.2905129375186,4.401342675040096,0.330539656582175,0.2287408013082583,0.2158626328699918,0.2248569092395748,11.23183940954936,5.699135821019215,21.18528095285142,12277.325431959873,55.75129083397874,13.57855133294956,18.21072348401655,11.771091521363545,12.190924495649092,0.5609157808667212,0.7855227882037533,0.7031539888682746,0.584280303030303,0.1009090909090909,0.7161961367013373,0.9168591224018476,0.8671497584541062,0.7068273092369478,0.128,0.5019740552735477,0.7026239067055393,0.6467165419783873,0.5464684014869888,0.0929411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047139685532678,0.0067694431194243,0.0091236055513787,0.0114426949835225,0.0136340494857957,0.0157987544465849,0.0178589652005306,0.0202360876897133,0.0226058658589001,0.024687941954129,0.0267174397241011,0.0287669965775598,0.03093186754367,0.0328634624704826,0.0349019769867994,0.0367733791362291,0.0385161537743965,0.0401848294481075,0.0420612291618972,0.0575815738963531,0.0715667109210842,0.0850515193761071,0.097601210427327,0.1094701358896028,0.1248877763342733,0.1369954444326729,0.1482477492320284,0.1591556356732195,0.1695942761664024,0.1819521218247908,0.1948276420832028,0.2053283538339612,0.2163262632768238,0.2263301260928781,0.2367399741267787,0.2463320893443992,0.2558358983576355,0.2645306020711064,0.272608770224687,0.2795974720691368,0.286109554497058,0.2928957747809452,0.2989275338059995,0.304855145339327,0.3096610107016919,0.3139939834983086,0.3197447218838814,0.3248786031614836,0.3294803775721113,0.3281165967516403,0.3275210574769501,0.3260973550928531,0.324783732651676,0.3250712843055721,0.3234632167189772,0.3213340727243919,0.3216703917959506,0.3220559531554977,0.3232800257593646,0.3245163467306539,0.3265685944522541,0.3269481749673725,0.3276829815895824,0.3283369194690907,0.3305271439811172,0.3318821069515653,0.3348794648491733,0.3364499170871114,0.3404068607897886,0.3444820644216691,0.3442422307364836,0.3489208633093525,0.3476208602969166,0.3481467473524962,0.3477018337699452,0.3500308261405672,0.3503145930586563,0.3560165975103734,0.3547024952015355,0.0,2.471148261150636,58.87558300868783,185.92235715611997,260.5398483264893,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95753,44330,419.67353503284494,6115,62.52545612147922,4820,49.60680083130555,1880,19.101229204306915,77.37657405990127,79.72099624545778,63.3458979718325,65.07894086529562,77.1373147535597,79.48934072075518,63.25506448735719,64.99505995023083,0.239259306341566,231.6555247026031,0.0908334844753113,83.88091506479611,164.35012,115.06741241255688,171639.6561987614,120171.07809944011,354.2047,228.2646862920653,369201.7378045597,237675.8182950564,360.20681,174.26635128850936,371943.09316679375,178703.81635925022,2782.6336,1270.7133629757116,2865185.968063664,1286206.4718345236,1138.09855,503.3026585900016,1170401.1884745124,507455.7921477709,1845.58278,787.0028166444189,1877361.837227032,777453.0576806425,0.38004,100000,0,747046,7801.802554489154,0,0.0,0,0.0,30260,315.2799390097438,0,0.0,32943,339.92668637013986,1590776,0,57048,0,0,6598,0,0,57,0.5743945359414326,0,0.0,1,0.0104435370171169,0,0.0,0.06115,0.1609041153562783,0.3074407195421095,0.0188,0.344892221180881,0.6551077788191191,24.29264715952828,4.370298991693793,0.3132780082987552,0.2379668049792531,0.2265560165975103,0.2221991701244813,11.124818016650485,5.680092647565483,20.151357463665075,12248.693879471444,54.26117388303226,13.746435188358417,16.75254663215872,12.093720626512154,11.66847143600297,0.5506224066390042,0.7768090671316478,0.6701986754966888,0.575091575091575,0.1148459383753501,0.7271293375394322,0.9184652278177458,0.8575197889182058,0.7246963562753036,0.1555555555555555,0.4876126126126126,0.6958904109589041,0.6074270557029178,0.5313609467455621,0.1040189125295508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0046224492899066,0.0070009537531199,0.009285220854159,0.0114921487267106,0.0133094367674463,0.0155397620091566,0.0175909666353575,0.0198325478690234,0.0219569868258079,0.0240450152203101,0.0261653270922509,0.0284360189573459,0.0304222451081359,0.0328164814872128,0.0348545144451909,0.0369051070703723,0.0386953544826441,0.040370959525072,0.0422338641642277,0.0569299179557838,0.0707046407764959,0.0836906946264744,0.0961245361951711,0.1085613694818063,0.1241476281597225,0.1362556729015566,0.1471671207219479,0.1583247885157651,0.1691886964448496,0.1826387617272913,0.1947345070498739,0.2061447408503416,0.2168727431885326,0.2263544384626394,0.2356279791597383,0.2451338403296593,0.2543052022600905,0.2637845322679499,0.2712978550405973,0.2796024850469127,0.2864175875577384,0.2925733207190161,0.298019114230281,0.3040494582908225,0.3098914369508693,0.3152703817595439,0.3195152007927534,0.3239021362437283,0.32703158782893,0.3264337844921439,0.3260239341604495,0.3255902245595287,0.3243992206105217,0.3235573357068684,0.3224528503908102,0.3206192577130477,0.3213524764808076,0.3223714524634367,0.3229743936991037,0.3243501385871601,0.3243013893274392,0.3260865016425687,0.3280459821329115,0.3285289462324332,0.3301508844953174,0.3303977272727272,0.3355866428817325,0.3388632227355453,0.3403201521515175,0.3438551805694533,0.3469355266648978,0.3512715855572998,0.3515749525616698,0.355840269335079,0.358628841607565,0.3584300549786194,0.3629614767255216,0.3601092896174863,0.3623574144486692,0.0,2.8737958681213165,54.85884556816203,176.7598255922845,268.1479587392985,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95755,44887,424.17628322280825,6209,63.59981202026004,4864,50.2532504830035,1951,20.01984230588481,77.3313489084019,79.69827094318235,63.31030609897547,65.0632921353484,77.091799203683,79.45933356133179,63.22145902747536,64.9770664779741,0.239549704718911,238.9373818505618,0.0888470715001119,86.22565737429966,161.0521,112.870548051278,168191.84376794944,117874.31262208552,352.25379,227.585085557385,367330.4579395332,237134.95437040887,364.21827,176.72671772457429,376783.55177275336,181779.88026659496,2789.44328,1281.787051212717,2885232.896454493,1310739.4195736167,1158.76437,509.9631757963056,1198431.0166570935,520867.2401402597,1906.0622,792.4793166372089,1958667.035663934,800668.711505349,0.38249,100000,0,732055,7645.083807634066,0,0.0,0,0.0,30052,313.268236645606,0,0.0,33279,344.0760273614955,1603543,0,57476,0,0,6367,0,0,51,0.5221659443371104,0,0.0,0,0.0,0,0.0,0.06209,0.1623310413344139,0.3142212916733773,0.01951,0.3318482101705331,0.6681517898294669,24.54981749613299,4.370612953660224,0.3252467105263157,0.2366365131578947,0.21875,0.2193667763157894,11.454673268539658,6.03596878887872,20.61534443143989,12420.365521865398,55.0797259026813,13.744250826556964,17.855210978090113,11.842668261543585,11.63759583649064,0.5608552631578947,0.7680278019113814,0.6852085967130215,0.5864661654135338,0.1274601686972821,0.7415902140672783,0.9135514018691588,0.8734491315136477,0.7111111111111111,0.1690821256038647,0.4943757030371203,0.681881051175657,0.6208651399491094,0.5440806045340051,0.1174418604651162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0043501627508441,0.0068409033240294,0.0090022353180247,0.0116177338297829,0.0137792669389251,0.0159884165553527,0.0183178982407057,0.0205586637891356,0.0228096769567978,0.0247579586478503,0.0269998150697597,0.0290107130728303,0.0311762462768862,0.0332985827974525,0.0354675931670596,0.0375566922774245,0.039742246111382,0.0419737430225668,0.0436806748945477,0.0580793319415448,0.0718134921050153,0.0849985838814236,0.0980251950619361,0.1103695503189414,0.1262943024251975,0.1394418505942275,0.1507514672517921,0.1616809345175115,0.1722483930851691,0.1855923435075012,0.1979834517414659,0.2095980490354047,0.2203100367840252,0.2302102029355737,0.2407251358243707,0.2508963375813964,0.2598772729831672,0.2686016549939271,0.2776077662781235,0.2849187236604455,0.2918750512421087,0.2977217770613057,0.3035296095692171,0.3087902460392787,0.314195482414478,0.319867765283378,0.3245689984466118,0.3291841709454904,0.3327656540853103,0.3307103589522475,0.3296378316666896,0.3282651236783939,0.3264631116760067,0.3254220191651585,0.3242193473407346,0.3222622319087779,0.3227862620436521,0.3235856464884427,0.323255192084856,0.324571086456248,0.3256667917003928,0.3273986359261894,0.3283168847407672,0.3278322283078697,0.3300591438472161,0.3307272417126286,0.3322536008553997,0.335165415917979,0.3392615041071856,0.3408178167214312,0.339986198842826,0.34375,0.3457446808510638,0.3517138599105812,0.3534623455350897,0.3558410516880789,0.3529990167158309,0.3479547900968783,0.342728297632469,0.0,2.145621630988709,57.370754339866245,178.10423345967448,270.2325321072707,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95491,44271,419.94533516247606,6081,62.4247311264936,4837,50.07801782366925,1844,19.00702684022578,77.22623088476638,79.71443090067575,63.24095407219974,65.07664918581142,76.9865275693947,79.47342969026475,63.15070695990957,64.98800034568224,0.2397033153716847,241.00121041099956,0.0902471122901715,88.6488401291814,162.53248,113.8373480855622,170207.11899550745,119212.64630757055,355.8726,229.91041516335628,372105.318825858,240195.31177111596,361.97759,175.12851323347877,374803.9291660994,180177.04300542336,2763.66908,1285.433331259472,2863724.539485397,1315687.8148301635,1149.99707,515.7367917726602,1190681.2160308303,526486.174055273,1799.26654,771.0538459720727,1856446.7227277963,783475.0920724657,0.37867,100000,0,738784,7736.68722706852,0,0.0,0,0.0,30396,317.7262778691186,0,0.0,33137,342.9956749850772,1589184,0,57093,0,0,6443,0,0,72,0.722581185661476,0,0.0,0,0.0,0,0.0,0.06081,0.1605883751023318,0.3032395987502055,0.01844,0.3422089175988656,0.6577910824011344,24.252055235945495,4.2721431432261205,0.3283026669423196,0.2309282613189993,0.2313417407483977,0.2094273309902832,11.26388297256866,5.848297612898927,19.983309866607986,12275.314306675557,55.297303954730566,13.536352933580352,18.164021939151453,12.4198637438451,11.177065338153657,0.5763903245813521,0.8048343777976723,0.714735516372796,0.5755138516532619,0.1085883514313919,0.7297698589458055,0.9403341288782816,0.8459821428571429,0.6941176470588235,0.1466666666666666,0.5171919770773639,0.7234957020057307,0.6631578947368421,0.5405092592592593,0.0977157360406091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018138521558494,0.0041283333502388,0.0064673990293825,0.0089273004575495,0.0112701580061899,0.0132803343015848,0.0154797497933652,0.0175239613348864,0.0195300111512373,0.0218540603676154,0.0239776646411561,0.0262392169362218,0.0282551614065798,0.0301376927440565,0.0323813853529509,0.0343945747269244,0.036462277362268,0.0386374503648572,0.0407459498880033,0.0428217899320239,0.0576641266119577,0.0711123234781878,0.0842131830227569,0.0966031849751799,0.1085736629080495,0.1239135964726332,0.1362563524633736,0.1477664330143285,0.1595069027193179,0.1698679020174769,0.1837959813861086,0.1966633401310366,0.2076000436157452,0.2175552851144075,0.2273103448275862,0.2375030561667889,0.2471551810949615,0.2562503524104877,0.2655455300556396,0.2735341056523186,0.2808348705811376,0.2874285915377306,0.2937769284637571,0.2996152921375331,0.3053168013849774,0.3102637699806997,0.3150874369837698,0.3193556635131679,0.3236934839993238,0.328666233955466,0.3282950504954912,0.3270469752362557,0.3265556826365061,0.3261221891008016,0.3250446960667461,0.3218625658672975,0.3196377502383222,0.3206875525305295,0.32175643907545,0.3222851611515434,0.3226012472762792,0.3242338398145764,0.3250870787695665,0.3252065283094902,0.3266458433445459,0.328513742347271,0.3312453732703149,0.3354285175524057,0.3378758078111829,0.3400055601890464,0.3419119324663472,0.3416043688033508,0.3442335400613919,0.3471604193378083,0.347568866703642,0.3497611557730397,0.350471554609066,0.3494295028524857,0.3532173432753383,0.3568958893584326,0.0,2.1971522155038268,59.22963092746764,181.4976588773433,260.0167551885692,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95708,44452,421.99189200484807,6129,62.75337484849752,4846,50.01671751577716,1926,19.7684624064864,77.36399481233721,79.74855067751805,63.33329461681414,65.09722231474093,77.12446420890377,79.50853051815768,63.244524668981946,65.01019855296248,0.2395306034334368,240.0201593603697,0.0887699478321977,87.02376177845395,163.19974,114.36777826625485,170518.38926735488,119496.57109777116,358.12529,231.4455294273097,373593.6703305888,241232.98932932437,364.32713,176.34346673684396,376433.4224934175,180951.44402711984,2783.58672,1280.4558588417417,2877458.686839136,1306920.3189302275,1128.44694,500.76778340114856,1166207.4643707944,510380.2016562338,1890.99532,792.4910578064832,1944066.159568688,802524.3996209644,0.38044,100000,0,741817,7750.835875788858,0,0.0,0,0.0,30566,318.7298867388306,0,0.0,33388,344.7360722196682,1592029,0,57127,0,0,6535,0,0,69,0.689597525807665,0,0.0,1,0.0104484473607221,0,0.0,0.06129,0.1611029334454841,0.3142437591776799,0.01926,0.3351981351981352,0.6648018648018648,24.21303877359704,4.343498354727772,0.3177878662814692,0.2445315724308708,0.2135782088320264,0.2241023524556335,10.980160023856158,5.720371204423696,20.495951871099543,12297.11855538398,55.08928726284554,14.245914662344052,17.508699837088542,11.353455284376574,11.981217479036363,0.5588113908378044,0.7949367088607595,0.7012987012987013,0.5478260869565217,0.1095764272559852,0.7294028722600151,0.9264367816091954,0.8392434988179669,0.708502024291498,0.146788990825688,0.4947487936417826,0.7186666666666667,0.649059982094897,0.4974619289340101,0.1002304147465437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021479012370695,0.0044925816625594,0.0064565905953057,0.0082830253877268,0.0104397728891511,0.0126943374696904,0.0149026888081929,0.0171269251194901,0.0192998066950998,0.0213805179246152,0.023391513013516,0.0256241719643829,0.0278440650072001,0.0298087623129868,0.0316731340819022,0.0335821667114704,0.0356650817821146,0.037377552714594,0.0392910971363234,0.0413927466322161,0.0564437807412358,0.0701023590731166,0.0835955857670359,0.0958790313252505,0.1080462920021923,0.1242255724948723,0.136319294227425,0.1478250694126783,0.1595315369176239,0.1705983858693904,0.1836251520075761,0.1963999826922244,0.2072749021313614,0.2183641553385317,0.2285393678698335,0.2390310330702036,0.2479753697878321,0.2567193720339173,0.2656062084458462,0.273367374977102,0.2804006384307557,0.2880311498795631,0.2945806161457162,0.3005188797948447,0.306068665670808,0.3114857044351959,0.3161824480658354,0.3211621315913221,0.3254172430287125,0.3294477153883642,0.3281191205719507,0.3279089248685096,0.3273601214318843,0.326107337054505,0.3252360273302604,0.3233328246604608,0.3207957626584274,0.3225495639677303,0.32341286712811,0.3244191222291462,0.3258889325327797,0.3270194546387278,0.3286293694597759,0.3300306412292277,0.3325088848333493,0.3342643834186071,0.3348648725778373,0.3395509499136442,0.3406570265337638,0.3424869234427009,0.3421172194457065,0.3454151013281126,0.3517584772469431,0.3557354513517641,0.3606092138870495,0.3627462686567164,0.3710526315789473,0.3680755026672138,0.3733965421081985,0.3689964857477548,0.0,2.415029039623074,58.00467533532854,181.47392812643935,261.49991263955064,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95671,44647,423.8588495991471,6033,61.88918271994648,4682,48.37411545818482,1904,19.58796291457181,77.31725194233033,79.72488991352856,63.30264576078415,65.08465731058136,77.08829653486335,79.49708683277036,63.21880492556048,65.00378022789816,0.2289554074669837,227.8030807581928,0.0838408352236754,80.8770826832017,163.6316,114.59943237145268,171035.50710246575,119784.7180514831,353.47767,228.2853300199964,368902.10199538,238046.64552926543,358.17498,173.06335230578088,371014.016786696,178360.95441684933,2685.49084,1224.2227145781817,2777230.383292743,1249937.5153705738,1126.90981,491.4836805877844,1164780.0482904955,500602.1150671635,1871.69598,769.3943432812785,1927058.042667057,777133.2371796913,0.38181,100000,0,743780,7774.341231930261,0,0.0,0,0.0,30091,313.93003104389,0,0.0,32822,339.643152052346,1592507,0,57135,0,0,6465,0,0,50,0.5226244107409769,0,0.0,0,0.0,0,0.0,0.06033,0.1580105287970456,0.3155975468257915,0.01904,0.3323845667299178,0.6676154332700822,24.74821971362094,4.3798976933249385,0.3184536522853481,0.2304570696283639,0.2227680478428022,0.2283212302434857,11.195878269365489,5.742658559548822,20.07137863637277,12290.61706299177,53.02536851716506,13.094772684277508,16.83495444327433,11.55907195025705,11.536569439356152,0.5585219991456642,0.7914735866543096,0.7028839704896043,0.5695110258868649,0.1113189897100093,0.7244979919678715,0.927570093457944,0.8525469168900804,0.7033898305084746,0.1009615384615384,0.4983997672388711,0.7019969278033794,0.6529516994633273,0.530359355638166,0.1138211382113821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023098665748123,0.0044212340921766,0.0064747252301166,0.0085154813076039,0.0108867070254871,0.013272893959458,0.0153836737192173,0.0172544132069303,0.0194593930961101,0.0217402440398741,0.0240792038575972,0.0260075217328757,0.0281943858276632,0.0301458838084437,0.032015863343902,0.0339565248880014,0.0358668159389642,0.0378835868944389,0.0399925092074325,0.0419572400996549,0.0565416801613088,0.0704509994869056,0.0832642264047951,0.0964575420581396,0.1086800573888091,0.124433814502815,0.1370395134842551,0.1487555778016805,0.1601654341042192,0.171690624329543,0.1843494183541577,0.1980689923907043,0.2100480968029772,0.220270344223718,0.2298703730217293,0.2400598404255319,0.2494281729428173,0.2585753165838188,0.266695399691498,0.2750592356031729,0.2812988004488195,0.2887155984754601,0.2950879808773238,0.3006015145705521,0.305117895018161,0.3097471678110477,0.3145120913232864,0.3193245253748045,0.3233745228698971,0.3280092775625313,0.3267674187215962,0.3259884056378272,0.3250924116993914,0.3245816503173687,0.3238764712875995,0.3220710367442003,0.3204341222630046,0.3208643008318157,0.3215942424449144,0.3224478888295029,0.3223694057775782,0.3230732804545992,0.3231607629427793,0.3239858669886846,0.3250741160307551,0.3256760989871567,0.3273224510725579,0.3294531078409839,0.3341754385964912,0.3380248186179281,0.3425300985041955,0.3426186805592472,0.3451388888888889,0.3490400061194829,0.3531577456811102,0.3574982231698649,0.3632017273288094,0.3687002652519894,0.3722192078133478,0.3762264150943396,0.0,2.140300582580553,54.658113977687925,174.7796862513277,257.67464730105405,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95865,44683,422.2917644604392,6076,62.17076096594169,4732,48.860376571219945,1929,19.82996922755959,77.4717338221379,79.76013614859225,63.40399372213196,65.09173326015136,77.23305398186352,79.51772335833297,63.31611798727626,65.00374202428381,0.2386798402743863,242.4127902592801,0.0878757348557002,87.99123586754831,163.07434,114.22003164429562,170108.31899024668,119146.74974630534,354.06596,229.23514905533992,368829.7814635164,238614.57159061165,368.24908,178.52397938769647,380623.6478381057,183514.37801058672,2734.21948,1256.0018032482897,2825557.064622125,1283578.577424806,1126.69163,501.5059196977624,1160742.408595421,508590.20466047234,1883.20788,792.2051264110696,1937870.067282116,804933.6535295177,0.38089,100000,0,741247,7732.196317738487,0,0.0,0,0.0,30112,313.59724612736665,0,0.0,33654,347.56167527251864,1597867,0,57275,0,0,6502,0,0,60,0.6258801439524332,0,0.0,0,0.0,0,0.0,0.06076,0.1595211215836593,0.3174786043449638,0.01929,0.3309205350118017,0.6690794649881983,24.56767528271957,4.458561078922759,0.3229078613693998,0.220625528317836,0.2345731191885038,0.2218934911242603,11.482843408153448,6.02562371365581,20.54387039866837,12289.63777801506,53.4591225824494,12.522285257769893,17.1061960932844,12.429105440259116,11.401535791136013,0.5572696534234995,0.803639846743295,0.6969895287958116,0.554954954954955,0.1114285714285714,0.7085308056872038,0.904639175257732,0.8857142857142857,0.6968503937007874,0.1171548117154811,0.5020196191575302,0.7439024390243902,0.6334208223972003,0.5128504672897196,0.1097410604192355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026723352566049,0.0050348998591848,0.0072096371859092,0.0095209094600081,0.0117368506625477,0.014193128287566,0.016471762692527,0.0185844408857699,0.020821845066683,0.0228769532847909,0.0251641249910384,0.0270855126863987,0.0290615850839796,0.0311037030177691,0.0331295805716759,0.0350467772247578,0.0368025817662756,0.0387903785766843,0.0409602026725364,0.0429452959968365,0.0573245751225106,0.0707767568754115,0.0841358496892978,0.0973933873357077,0.1099119987353111,0.1253065798376184,0.1378798481667621,0.1498186305275139,0.1604983080158416,0.1713587603013513,0.1840346894199421,0.1962026000410646,0.2067314478041365,0.2175014191520021,0.2275238022028705,0.2383252462060504,0.2480676274697614,0.2569584011676865,0.2651498850522644,0.2725640849740459,0.2803561324295299,0.2872911416036591,0.2939905038622351,0.2991866028708134,0.3043351654351545,0.3086307288909679,0.3141011221913973,0.3186535408066053,0.322969723608346,0.3270091636823257,0.3268463140917949,0.3260335961604388,0.3251800783498785,0.324454682888201,0.323559899304013,0.3212902241878908,0.3199949567382705,0.3204013596548568,0.3214953271028037,0.3222874993344101,0.3229914418361829,0.3238977020306265,0.3253986451276706,0.3259811006114508,0.3270751224172937,0.3297147446692748,0.3291389792167397,0.3311402824982071,0.3348585690515807,0.3374926427310182,0.3401987678194001,0.3433284148397976,0.3449097291875627,0.3457943925233644,0.3441540058507125,0.343013568198048,0.3500610128126906,0.3553187210939071,0.360196025047645,0.3674630261660978,0.0,1.9905536177550056,55.60865424357382,172.5417829428331,263.5064038727988,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95746,44446,421.4588599001525,6083,62.35247425479916,4797,49.589538988573935,1919,19.71883942932342,77.34438518034166,79.69665712716632,63.33412346583962,65.07209668245055,77.10476411188436,79.45628115000453,63.24686380334784,64.98673681310252,0.2396210684572963,240.37597716178996,0.0872596624917747,85.35986934802509,162.58286,113.96027187871412,169806.42533369543,119023.5329713138,355.40974,229.69558571644248,370688.01829841454,239388.3772861973,364.50587,176.31790617348275,376650.3248177469,181093.4253711754,2756.23976,1261.5874291304588,2851203.183422806,1290143.3680054084,1128.30938,497.79561875781536,1165670.283876089,507142.7618467768,1881.8133,781.0064197265347,1935910.4505671256,791715.5542529667,0.37995,100000,0,739013,7718.473878804337,0,0.0,0,0.0,30243,315.3447663609968,0,0.0,33352,344.5888078875358,1595195,0,57263,0,0,6412,0,0,75,0.7415453387086667,0,0.0,1,0.0104443005451924,0,0.0,0.06083,0.1601000131596262,0.3154693407857964,0.01919,0.3233270794246404,0.6766729205753595,24.799551704877224,4.281691593711503,0.3297894517406712,0.2261830310610798,0.2199291223681467,0.2240983948301021,11.21782471133523,5.870289413297532,20.386788693623394,12257.244863741622,54.35796920632191,13.05262803424178,17.743383415254257,11.74784903361348,11.814108723212398,0.5626433187408797,0.791705069124424,0.695322376738306,0.5924170616113744,0.1069767441860465,0.7558609539207761,0.9191919191919192,0.8864197530864197,0.7907949790794979,0.116751269035533,0.495505617977528,0.7184325108853411,0.6295666949872557,0.5343137254901961,0.1047835990888382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486933268506,0.004460981618728,0.0065443034121693,0.0087037770533093,0.0110112450942513,0.0132949212586401,0.0154909194676015,0.0177049849482116,0.0200263612305994,0.0218765987925918,0.0237724403639642,0.0259776249615108,0.0279671386121307,0.030010298661174,0.0318247934225321,0.0337305073010427,0.0359490316637166,0.0378732097856409,0.0397418442959437,0.0418203028977355,0.0566151983045716,0.0704284309006048,0.0836235106561503,0.0967032967032967,0.1088194356573453,0.1237337957578192,0.1367102569813442,0.1486919238666709,0.1596714938698791,0.1707026853191831,0.1838966630785791,0.1964154371998442,0.2083170254403131,0.2191352627437265,0.2284617837546595,0.2388289335325696,0.2483404179357588,0.2572103221453871,0.2653054279394248,0.2737118063903103,0.2800319230146429,0.2871998222035068,0.2932658179925228,0.2986558269482116,0.3038117681356591,0.3092756804755621,0.3146196925467006,0.3188605208174081,0.323326682387085,0.3281361392020701,0.3279257932928553,0.3273047353147478,0.3266809385651108,0.3255931566627171,0.3237860253570951,0.3224362119725221,0.32011987251653,0.3193764578337001,0.319536338923937,0.3193496515990709,0.3194743846889235,0.3209661797552924,0.3218725759449883,0.3234035881470199,0.3234904182234542,0.3239653462762903,0.3250720132333228,0.3299209374114089,0.3342467678471051,0.3377280331394885,0.3401422578880175,0.343455330030366,0.3482621585819718,0.3517648841084684,0.352316511606052,0.3553425630102946,0.3563076923076923,0.357630979498861,0.360078277886497,0.3649921507064364,0.0,2.0332759358652104,54.27653948084645,186.19145919396405,262.8591716168961,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95676,44648,423.36636146996113,6107,62.59668046323007,4788,49.52130105773653,1883,19.398804297838534,77.28108161739658,79.66852570239533,63.29287913429015,65.05589012856751,77.03906376367496,79.42648802878956,63.20169722250421,64.96725257171344,0.2420178537216202,242.0376736057648,0.0911819117859451,88.63755685406716,161.95146,113.54021806736355,169270.72620092813,118671.57705941256,352.67663,228.0741833931254,368017.44429114927,237783.69015544705,363.4832,176.13904912906858,376682.2191563193,181700.1070842139,2745.0318,1264.0334867257511,2839001.2542330367,1291070.4113108327,1147.87035,510.0678600165432,1186537.1566537062,519909.6952386629,1850.9838,786.2987837134328,1906266.2527697645,795345.1558353247,0.3804,100000,0,736143,7694.123918224006,0,0.0,0,0.0,30010,313.09837367782933,0,0.0,33191,343.6598520005017,1595172,0,57240,0,0,6507,0,0,64,0.6584723441615452,0,0.0,0,0.0,0,0.0,0.06107,0.1605415352260778,0.3083346978876699,0.01883,0.3277743142144638,0.6722256857855362,24.370741109022763,4.382380320879035,0.3122389306599833,0.2412280701754386,0.2203425229741019,0.2261904761904762,11.088779190574083,5.623249433649332,20.23989545303462,12324.54665025346,54.33072682388672,13.88415380175107,16.824767148305952,11.6386446844539,11.983161189375796,0.5543024227234754,0.793073593073593,0.6929765886287625,0.5535545023696683,0.1089566020313942,0.701095461658842,0.9260143198090692,0.8547486033519553,0.6798418972332015,0.1209677419354838,0.5008547008547009,0.717391304347826,0.6420404573438874,0.513715710723192,0.1053892215568862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022590285164362,0.0043897444215776,0.0064544282858215,0.0085846938464508,0.0106482517340276,0.0130137265284509,0.0153047698676509,0.0175705476375219,0.0196882187579862,0.0217504785105272,0.0242281941126411,0.026417922707298,0.0284039489921842,0.0305493735575337,0.0323559463727281,0.0344307043302039,0.0363702284145646,0.0385186261586207,0.0405076458961822,0.0422047802203529,0.0574646592345707,0.0717606651448197,0.084449529727914,0.0973305133789997,0.1103315115322121,0.1262920682614077,0.139140127388535,0.1509793688157039,0.1621295068645481,0.1730110494271264,0.1857256881525584,0.1979256979365354,0.2093489294038206,0.2198276334088943,0.229651258883808,0.2397790545486812,0.249424336589837,0.257812676024604,0.2664431437176791,0.2743883555280272,0.2813673232908459,0.2884029437959968,0.2948809184932157,0.3013369529964324,0.3070501040538402,0.3124182361217387,0.3171141360206563,0.3208278605950088,0.3249974044850498,0.3283050825030103,0.3273640709829025,0.326147263818922,0.3253939068201748,0.3245351973779621,0.3236294726789818,0.3221523947081329,0.3204977619758103,0.3210356413465973,0.3223263704439913,0.3224248063125123,0.322965607968427,0.3239168007628583,0.324089098687122,0.3244744238336144,0.3268365817091454,0.3277381232514968,0.3282899064725567,0.3323125493291239,0.33396577773093,0.3362431553051345,0.338925259138025,0.3435102386369649,0.3459194571841427,0.3465428743961353,0.349197461739455,0.3555581368335463,0.3515068908072088,0.3476180984652182,0.3419147224456959,0.3400686237133054,0.0,1.98246246859646,56.38086916715692,182.43469708792813,258.6164527369328,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95734,44495,420.1015313263836,5985,61.38884826707335,4684,48.425846616667016,1859,19.073683330896024,77.3612597271838,79.72655187669484,63.34108899169471,65.08895143974064,77.12204473575923,79.48817004444615,63.252501510659904,65.00328919292262,0.2392149914245749,238.3818322486917,0.088587481034807,85.6622468180177,163.98074,114.82576619968702,171287.8810036142,119942.51384010597,355.15742,230.3858312278973,370504.867654125,240173.33573014528,359.80499,174.48942445079268,373097.2799632315,180111.67283524422,2694.977,1250.0045027566734,2786639.396661584,1277277.5218382955,1100.74196,489.4898470796749,1139502.7889777925,501012.6883653397,1817.56428,764.4510792221511,1866217.456702948,769320.5804935683,0.38057,100000,0,745367,7785.812772891554,0,0.0,0,0.0,30289,315.88568324733114,0,0.0,32947,341.33118850147287,1590353,0,57080,0,0,6613,0,0,66,0.68941024087576,0,0.0,0,0.0,0,0.0,0.05985,0.1572641038442336,0.310609857978279,0.01859,0.3408981940226945,0.6591018059773054,24.417923163207767,4.356698151247678,0.3334756618274979,0.2284372331340734,0.2209649871904355,0.2171221178479931,11.244311944416076,5.804619819528448,19.78363881494172,12310.257823660342,53.36167079673733,12.866720446457665,17.84435357470513,11.59648044607871,11.054116329495828,0.5604184457728437,0.7859813084112149,0.6939820742637645,0.5671497584541063,0.1111111111111111,0.7229470452801228,0.903061224489796,0.8535469107551488,0.7410358565737052,0.1300448430493273,0.4977817213842058,0.7182890855457227,0.632,0.5114795918367347,0.105793450881612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045725525184524,0.006931054778673,0.0093466489215795,0.0116037831790908,0.0139915683998289,0.0161217955254624,0.0181548986572726,0.0204382099440735,0.0226965601965601,0.0249248972142761,0.0271760899707287,0.0292193767355754,0.0314306023426152,0.0336721531396728,0.0356463485236953,0.0375912597732097,0.0397032117470035,0.0420514100324432,0.0438125800973149,0.0583985047978031,0.0724633130272771,0.0860772240462379,0.0990168760843278,0.111087689713322,0.1262817395716611,0.1388229056203605,0.1506432424955042,0.1612885997799639,0.1714889100907989,0.183530197150948,0.1961770623742454,0.2074409097827741,0.2183575090453964,0.2278558942843636,0.2388477584852207,0.2484809293924832,0.2572276092989808,0.2659570850477777,0.2732506237553506,0.2808056050130645,0.2877106068749562,0.2943172681265667,0.2992411547852731,0.3046704495853339,0.3106082036775106,0.3156652092442223,0.3202221487939404,0.3244033752653103,0.3286147757255936,0.3272751732023946,0.3259053690168709,0.3240904870431332,0.323108030040439,0.3222672786417717,0.3204600094942039,0.3191435529270375,0.3193861490031479,0.3196596934513153,0.3207648128990832,0.3217663252120826,0.3224292588265579,0.3227119212938684,0.3241374681165257,0.325111999614625,0.3257900795311846,0.3258510607839207,0.330013595118404,0.3333215846609333,0.3368546940402631,0.3385471293720644,0.3418264646678673,0.3431317128321085,0.3459028831562974,0.350967380128984,0.3531563421828909,0.3561309977151561,0.3556095585257189,0.3644990231649456,0.3726434015242679,0.0,1.959078595458636,57.35374008503398,175.2615038088299,250.64066430030576,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95650,44764,424.5582854155776,6152,63.14688970203868,4796,49.54521693674856,1892,19.39362258233141,77.2430810454354,79.64794150794116,63.27207635196621,65.0502910517698,77.00877775444049,79.41514992391875,63.184404892731166,64.96547612227182,0.2343032909949158,232.791584022408,0.0876714592350467,84.81492949798053,162.64424,114.03663136544236,170041.0245687402,119222.82421896743,356.50647,230.78861684397344,372100.2509147935,240667.29794905827,367.51828,177.28281945931144,380360.66910611605,182385.049829464,2773.31028,1273.3151859427594,2866993.748039728,1299357.686412285,1146.45179,504.1686846114361,1182865.2796654468,511952.34242324525,1857.18558,781.0780570308701,1906295.5776267643,786680.9710125378,0.38141,100000,0,739292,7729.137480397281,0,0.0,0,0.0,30304,316.19445896497643,0,0.0,33661,348.0501829587036,1588562,0,56981,0,0,6463,0,0,62,0.648196549921589,0,0.0,1,0.0104547830632514,0,0.0,0.06152,0.1612962428882305,0.3075422626788036,0.01892,0.3250850603154964,0.6749149396845036,24.92021792357502,4.227557354900034,0.3265221017514595,0.2362385321100917,0.2116346955796497,0.225604670558799,11.017313517227493,5.827637214095208,20.281139319230924,12330.361872148254,54.66445504566721,13.575836546206684,17.816194544064178,11.38060515224666,11.891818803149675,0.5692243536280234,0.8014121800529568,0.7151979565772669,0.5694581280788177,0.1146025878003696,0.721875,0.9333333333333332,0.8439024390243902,0.7024793388429752,0.1345291479820627,0.5136518771331058,0.728021978021978,0.6695501730103807,0.5278137128072445,0.109429569266589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021890708610345,0.0044833952082445,0.0067612153944549,0.0090124874262083,0.011239612258806,0.0133611691022964,0.0154473617129747,0.0177156510374121,0.0200323134816753,0.022241792450898,0.0243049502107454,0.0266592727235384,0.0288155986795421,0.0305964767693417,0.0327298625159985,0.0345562081230871,0.0367420083283266,0.0386611312921639,0.0404913463138625,0.0426166275736252,0.0575038140817989,0.0723787577249397,0.0852625279536363,0.0981642878194602,0.1104706404003293,0.1265522607692226,0.1387065247413262,0.1506455017430146,0.1617946029232382,0.1727633981312426,0.1853190616974902,0.1976281585708246,0.2089813967673071,0.2195744308039381,0.2294814569901361,0.2398628784432931,0.248921185019564,0.2585909587836847,0.2672410853329999,0.2745880491244969,0.2817838351528637,0.2886923932775078,0.295153245583897,0.3007812031248125,0.3062347113875062,0.311134710611131,0.3157445954757486,0.3200637755102041,0.3234022104757328,0.3269935808351532,0.3263254483382136,0.3253349137218149,0.3246166445454802,0.3234156587238357,0.3228315946348733,0.3218897299289125,0.3204961250158811,0.3216009223420901,0.3217416615300322,0.322891479949134,0.3247540027468909,0.3259462250287938,0.3267253883831907,0.3262860220845677,0.3277742916445431,0.328630988279099,0.3294269711331323,0.3330172876963433,0.3371071844249286,0.3408281656331266,0.3436105103308637,0.3452317242855613,0.3477985429204941,0.3477394636015326,0.3519047619047619,0.3542857142857142,0.3520820385332505,0.3544821940237413,0.3594825213322323,0.3652373660030628,0.0,2.2758581867687115,56.134494183971015,183.8709145533812,261.0592438025065,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95821,44455,420.1688565137079,6188,63.53513321714447,4871,50.291689713110905,1985,20.350445100760798,77.44904619750217,79.77501923176763,63.38601454967061,65.10662422266584,77.2020494506757,79.52835753248864,63.29525262980391,65.01836031618275,0.2469967468264684,246.66169927898807,0.0907619198667077,88.26390648309257,164.31184,114.96567020874812,171477.67190908047,119979.3888696091,355.80688,230.0536283076453,370804.5313657757,239566.8572730876,366.35967,176.51550291108694,378971.03975120274,181596.3186523696,2803.37836,1284.437165428072,2896327.8195802597,1311141.6969433343,1166.57519,517.9594885709965,1202640.6528840235,525797.2735778545,1945.08688,810.6606514278503,1996353.4089604572,818241.8718541808,0.3811,100000,0,746872,7794.43963223093,0,0.0,0,0.0,30259,315.23361267363106,0,0.0,33610,347.3351353043696,1593895,0,57213,0,0,6581,0,0,76,0.7931455526450361,0,0.0,0,0.0,0,0.0,0.06188,0.1623720808186827,0.3207821590174531,0.01985,0.3327146171693735,0.6672853828306264,24.62707102414073,4.295960813242003,0.3235475261753233,0.2278792855676452,0.2245945391090125,0.2239786491480188,11.163338409893642,5.88368802556512,21.077152323980258,12281.278187912752,55.12976843295549,13.24253465983192,17.81454265288609,12.21294727318162,11.859743847055851,0.5682611373434613,0.7810810810810811,0.7049492385786802,0.6023765996343693,0.1200733272227314,0.7437694704049844,0.9012658227848102,0.8771084337349397,0.7665369649805448,0.1751152073732718,0.5054362977418455,0.7146853146853147,0.6434108527131783,0.5519713261648745,0.1064073226544622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394063376644,0.0046222618673532,0.0070114557649183,0.0093863329303846,0.0115419425038388,0.0136947247309419,0.0160374376803319,0.0182998397615815,0.0205825242718446,0.0229302882401694,0.0254342368191832,0.0273912151067323,0.0293585526315789,0.0313304367522599,0.0333336771212574,0.0354980680620699,0.0374046512590691,0.0393504837154322,0.0411125425982877,0.0429640734147433,0.0573839750477243,0.0707392808974667,0.0843245962459519,0.0975320186175521,0.1094907431798784,0.1257582482615771,0.1383795128362765,0.1502552105487026,0.1614998933219543,0.1721080641189005,0.1845523559646444,0.19656707066779,0.2083351426462286,0.2197974860335195,0.2281988232194607,0.2383920775445693,0.2481012940154569,0.2562574359665073,0.264565057445243,0.2726348379431287,0.2802382353959625,0.2873575286692565,0.2936283185840708,0.2994358385924651,0.3053461939267625,0.3098756023207788,0.3155202315744819,0.3200314577096758,0.3236194140660305,0.3273083652340923,0.3268678353781309,0.3253066600806784,0.3248852132155745,0.3241366393407195,0.3222822467253756,0.3201586454122492,0.3184295932192709,0.3179395802000915,0.3178650348461669,0.3190491418825285,0.3200604556565223,0.3217271564866725,0.3223133596309978,0.3220286039402932,0.3229543982536522,0.324179955918579,0.3252228720685935,0.3273199912305428,0.3305141252851377,0.3319223009059619,0.335608956854178,0.3389172516485854,0.3406683480453972,0.3400410053914496,0.3423687193048734,0.3439203602749466,0.3481458780263561,0.3515052888527258,0.3476112026359143,0.3455854490337249,0.0,2.1119646384287845,56.13803779875686,188.96832845627185,261.2962084081424,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95797,44570,421.0048331367371,6013,61.421547647629886,4687,48.23741870831028,1923,19.562199233796463,77.3497797498425,79.68293686294989,63.33168066437421,65.0600460679093,77.10344446722144,79.44304747199708,63.23918428871482,64.9737606270194,0.2463352826210609,239.88939095281123,0.0924963756593868,86.28544088989543,163.06774,114.30507224833852,170221.71884297003,119319.7819734014,352.7606,228.28751534216377,367546.1340125474,237617.4587854505,361.14129,174.74523618359274,373467.6868795474,179666.5631455047,2696.78532,1244.4217224382874,2774818.835662912,1259007.2557242454,1118.80785,496.18430132651577,1147760.900654509,497824.5677501223,1889.00576,795.8468506998333,1923015.4597743144,788142.5223984107,0.38131,100000,0,741217,7737.350856498638,0,0.0,0,0.0,30036,312.79685167593976,0,0.0,33042,341.325928786914,1593837,0,57155,0,0,6414,0,0,70,0.7307118176978402,0,0.0,0,0.0,0,0.0,0.06013,0.157693215493955,0.3198070846499252,0.01923,0.3278402788781492,0.6721597211218507,24.37370969690578,4.336978044339205,0.3275016001706848,0.2225304032430126,0.2197567740558993,0.2302112225304032,11.107314401994511,5.824845047190853,20.475499608432347,12298.838700689666,53.41992376723909,12.481364176459016,17.55104179276389,11.60361984213119,11.783897955884996,0.5585662470663537,0.7909875359539789,0.7061889250814333,0.5854368932038835,0.098239110287303,0.7070161912104858,0.907928388746803,0.8611764705882353,0.6926070038910506,0.0803571428571428,0.5017699115044247,0.7208588957055214,0.6468468468468469,0.5498059508408797,0.1029239766081871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185302996535,0.0046336195970677,0.0068199809202914,0.0090217314002986,0.0113823619163869,0.0140216893233542,0.0161296900489396,0.0184151159111092,0.0205648169915267,0.0227535594018362,0.0246742729444085,0.0265724787974618,0.0288114505465127,0.0307788944723618,0.0328959584081203,0.034904987755355,0.036935817805383,0.0389398890099061,0.0411679135494596,0.043274086568998,0.0584503662277498,0.0725871390774186,0.0857870627574712,0.0985853320160595,0.1111907572946534,0.1270581517083849,0.1396093907471648,0.1507339244467625,0.1614216126137674,0.1722787783868441,0.1849365260684958,0.1973265504924775,0.2081434181470079,0.2179830554796392,0.2277818117807556,0.2380572454373192,0.2469418277601678,0.2563442069741282,0.2649622114795397,0.2724336952040676,0.2792947056645686,0.2860784657662398,0.2925461429247515,0.2982346882560061,0.3037286160047594,0.3088519663509502,0.3138458845009129,0.3191965705417679,0.3239150412239034,0.3272588115754609,0.3270528343052619,0.3256602058106377,0.3240937865692895,0.3232520749141789,0.3220871221704642,0.3207440120219584,0.3201641786314221,0.3212683808428489,0.3223483941580873,0.3223804242836189,0.3234107246757634,0.3252119483400681,0.3264056372292012,0.3277632373666196,0.3289967295113505,0.328996767129002,0.3302953490359147,0.3339609615263917,0.3367689190133464,0.3376336450072987,0.3405491263898343,0.3406168985767949,0.3448753462603878,0.3460567582039318,0.3512392799924606,0.3505020673360898,0.3511485451761102,0.3560072449184946,0.3606646690275129,0.3580533024333719,0.0,2.6504473446454537,56.49353064112334,176.3790277639124,250.427973244648,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95811,44516,422.2792789971924,6097,62.46673137739925,4841,50.06732003632151,1913,19.695024579641167,77.41775944651599,79.74690342080046,63.37436231324406,65.0956101119667,77.18189420748651,79.50905070731396,63.2876812139319,65.00990275786559,0.2358652390294793,237.85271348650383,0.086681099312166,85.70735410111752,164.34264,115.04917623380656,171527.48640552757,120078.84567931292,358.01864,231.3863569868644,373238.2189936437,241069.6690222045,364.55326,176.07221243439693,377438.07078519167,181414.73333730787,2768.6982,1270.422057478662,2864694.40878396,1300936.445166695,1140.63062,508.43482699337767,1177385.6029057205,517557.7450869579,1875.69074,781.7394707477765,1932561.981400883,794714.1239403675,0.3804,100000,0,747012,7796.703927523979,0,0.0,0,0.0,30473,317.5835759985805,0,0.0,33370,345.29438164720125,1590966,0,57097,0,0,6518,0,0,76,0.7827911200175345,0,0.0,0,0.0,0,0.0,0.06097,0.1602786540483701,0.3137608659996719,0.01913,0.3423887587822014,0.6576112412177986,24.19258415261212,4.316874118326325,0.3172898161536872,0.2431315843833918,0.2202024375129105,0.2193761619500103,11.494768410927596,6.024462832829685,20.260956743153237,12243.81354800539,54.75257783750023,14.115757200476454,17.24667196454632,11.756339306927474,11.63380936554999,0.5585622805205536,0.7774001699235344,0.6959635416666666,0.5712945590994372,0.1045197740112994,0.7346153846153847,0.9071428571428573,0.8764845605700713,0.7198275862068966,0.1674008810572687,0.4939282688506072,0.7054161162483488,0.6278026905829597,0.5299760191846523,0.0874251497005988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.004389121466149,0.0064332173189516,0.008480428997989,0.0108191653786707,0.0129891282218331,0.015136071756192,0.0174838736016983,0.0194505202477564,0.0215130797887583,0.0236162361623616,0.0257344638567821,0.0277026818663075,0.0296182671718003,0.0316443949517446,0.0338153274116918,0.0357863581326516,0.0377781003130896,0.0398699396445155,0.0416736070625468,0.0561096736499457,0.069673116526066,0.0834433893046558,0.0960999128178733,0.1085518694049499,0.1240703177822853,0.1364560823693911,0.1486418965608887,0.159676507303125,0.1696037365957127,0.1821075953451354,0.1942415730337078,0.2057766436831532,0.2159258410036358,0.2258815775019224,0.2368915929203539,0.2469126170307623,0.2554770754494515,0.2641718861492111,0.2719777706627636,0.2791914524978342,0.2862112439297721,0.2927771021029886,0.2989076464746772,0.3049315932466524,0.3109360576035448,0.3160051472333621,0.3200325215645921,0.3239176243972438,0.3280663638159194,0.3278212860846554,0.327195525813145,0.3272154480120389,0.325182139508043,0.3249551166965889,0.3233215007038374,0.3214534075104311,0.3229950028672073,0.3244094220164749,0.3251410368208432,0.325149588631264,0.3260925171674242,0.3269323091694671,0.3264017080710806,0.3272875581785903,0.3276529419405117,0.328077502201767,0.3304683333856144,0.3336364908353155,0.3360246972215626,0.3386063002863766,0.3404255319148936,0.3440211241041117,0.3469001061088373,0.3513589767704316,0.3492327822053051,0.3501861042183622,0.3526305098517164,0.3514986376021798,0.3456362937331795,0.0,1.7336712503295837,57.43582432281939,178.23928968638847,267.0455891334882,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95731,44253,418.30754927870805,6075,62.23689296048303,4807,49.73310630830139,1914,19.65925353333821,77.3893283971574,79.75082270566877,63.35181630130408,65.093852318168,77.14570025214829,79.50676676082563,63.26086337322578,65.0050135304035,0.2436281450091115,244.05594484314008,0.0909529280782948,88.8387877645016,163.6679,114.56385866359648,170966.4580961235,119672.6856123894,352.18986,227.663441428458,367412.9278916965,237333.414911009,357.81929,172.96049801433773,370989.700306066,178504.18019575372,2760.2658,1273.29250055506,2855732.040822722,1302449.0923055853,1156.50496,512.4384717820964,1192906.017904336,520151.8021761152,1873.03446,791.7189323747584,1924502.700274728,798779.1289280878,0.3792,100000,0,743945,7771.202640732888,0,0.0,0,0.0,30015,313.022949723705,0,0.0,32749,339.3049273485078,1596104,0,57210,0,0,6471,0,0,58,0.6058643490614326,0,0.0,1,0.0104459370527833,0,0.0,0.06075,0.1602056962025316,0.3150617283950617,0.01914,0.3280539438607495,0.6719460561392504,24.44161303494945,4.305024031516751,0.3220303723736218,0.2336176409402954,0.2219679633867277,0.2223840232993551,11.12833494551784,5.792711459981211,20.340485220799508,12282.799683847848,54.54758859897689,13.360968278176571,17.581510182998965,11.836811139094875,11.76829899870648,0.5504472644060745,0.767586821015138,0.6873385012919897,0.5660731021555764,0.108512628624883,0.711864406779661,0.9242819843342036,0.8541666666666666,0.7165354330708661,0.0829694323144104,0.4907381020233685,0.6864864864864865,0.6227598566308243,0.5190651906519065,0.1154761904761904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382693417867,0.0045506603018233,0.0067760161488289,0.0089050902186164,0.0111117888658452,0.0132829835311361,0.0153473014837762,0.0176527009652864,0.0199658720508445,0.0222963501110212,0.024479967209755,0.0266138630114499,0.0288943690916563,0.0309109624292331,0.0330009178380273,0.0350625193758396,0.0368460829683925,0.0389398890099061,0.04096290367845,0.0430959945830512,0.0573800449015819,0.0712910449322981,0.0839809949340801,0.0963505798488082,0.1083833155891932,0.1237719567263459,0.136606167326113,0.1480404995368743,0.1589316239316239,0.1700626286890871,0.1830351854045729,0.1953330376364442,0.2076497385215869,0.2182551832735543,0.2289672322352061,0.2389799151406383,0.2482698575702103,0.2572717251929003,0.2657602959701306,0.2734479716802804,0.2800999282921977,0.2869769562624952,0.2930771504581732,0.2991737516465094,0.3053259035340107,0.3103197763904793,0.3152311252892975,0.3194954799171,0.3245125708811268,0.329271509205043,0.3282689075630252,0.3275601374570446,0.3264221756792848,0.3252798035959275,0.3238627933889202,0.3220512507067218,0.3207582908465266,0.3221076746849943,0.3229548125564204,0.3233937191613673,0.3251672459543297,0.3249181491854365,0.3250277202451934,0.3252813002321843,0.326332988922796,0.3267103007635967,0.3275950230100563,0.3295664423227422,0.3316100185139903,0.3322940921109751,0.3352391324076595,0.337185263715876,0.3415231871308282,0.3441470054446461,0.3465653153153153,0.3501119886832488,0.3528161530286929,0.3562386980108499,0.3535494689770821,0.3509596553074814,0.0,1.8763647248812003,57.336827920111794,180.79329906370043,260.2726130116335,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95667,44657,423.62570165260746,6266,64.21231981770099,4887,50.424911411458496,1868,19.118400284319566,77.35982293729873,79.73663646548658,63.33991942654043,65.09037064736958,77.1189758976994,79.49644693041182,63.24955023688936,65.00270522635815,0.2408470395993305,240.18953507476223,0.0903691896510778,87.6654210114367,162.09336,113.50546753381342,169434.97757847531,118646.41677256885,355.04537,228.57371495993007,370485.1620726061,238285.40544423115,365.24153,176.2775443321152,377709.9731359821,181149.65908481012,2798.03544,1293.0336508074818,2887561.3534447616,1314404.6735952883,1182.89344,524.7715574264035,1219656.4123469952,531798.7762531426,1844.219,788.1386679127696,1888831.5720154284,791792.6778603463,0.38321,100000,0,736788,7701.589889930697,0,0.0,0,0.0,30218,315.187055097369,0,0.0,33509,346.1590726164717,1599847,0,57408,0,0,6338,0,0,64,0.6689872160724178,0,0.0,1,0.0104529252511315,0,0.0,0.06266,0.1635134782495237,0.2981168209383977,0.01868,0.3310502283105023,0.6689497716894978,24.40659253557441,4.362522054581143,0.3106200122774708,0.2406384284837323,0.2238592183343564,0.2248823409044403,11.275531357561308,5.770864199339008,20.06957635032224,12355.38331960972,55.64779163846755,14.047637537568384,17.168236371122163,12.302621846940175,12.129295882836823,0.577450378555351,0.7882653061224489,0.7147562582345192,0.6179159049360147,0.1219290263876251,0.7175856929955291,0.9135514018691588,0.855036855036855,0.7234848484848485,0.1358024691358024,0.5244005641748942,0.7165775401069518,0.6633663366336634,0.5843373493975904,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759914124843,0.0042671369639472,0.0065844873941054,0.0089273019032723,0.0114181714657556,0.0135782991500839,0.0156207012502674,0.0177121168836469,0.0198778320292549,0.0220455847450691,0.0240744155551457,0.0259451141318286,0.0280595726311245,0.0299935132463627,0.0322750340388661,0.0342521678914348,0.0363173314836478,0.0382309623083784,0.0401297459142512,0.0421560555688722,0.0566972074509763,0.0711802647009549,0.0843216692205965,0.0963363565581532,0.1089792947778117,0.125309517258894,0.1374449339207048,0.1499041329356625,0.1611982424067481,0.1715469494654587,0.1848043970255415,0.1968333387482807,0.2094610035584865,0.2196002889477486,0.2295883531925203,0.2406691408630144,0.2509181019567571,0.2603161753131395,0.2677797690615004,0.2749324602774852,0.2823092669049023,0.2888940873735306,0.2956766605930098,0.3010299401197605,0.3060543557388983,0.3111598020630739,0.316978962237028,0.3226130397752552,0.3271290355960264,0.3306338864121976,0.3302580792662425,0.3290702311701527,0.328397740240346,0.327235185399099,0.3262459753401486,0.323478553612144,0.3208291107170002,0.3223644219553467,0.3231464211769134,0.324175529537939,0.324997187956957,0.3266234279838645,0.3276993729947365,0.3285538530365731,0.3300014416838868,0.3299763187342233,0.3316388833669383,0.334504391468005,0.3385545959931471,0.3406327961034333,0.3444055148564408,0.3448954620418152,0.349930318003294,0.3538237770803031,0.3576490598129075,0.3626228722128986,0.3595333128645993,0.3615819209039548,0.3588156123822342,0.3575248281130634,0.0,2.5505319170833864,58.54350872947871,182.30904624663413,265.2556033883519,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95865,44557,420.65404475043033,6025,61.61790017211704,4736,48.93339592134773,1812,18.609502946852345,77.34109898624328,79.63341067791427,63.34986309044478,65.04477314398372,77.11458570679174,79.40578396917712,63.26533390256421,64.96171364853959,0.2265132794515381,227.626708737148,0.0845291878805696,83.05949544413238,161.7726,113.3525615827971,168750.43029259896,118241.86260136348,352.21461,228.57190913327835,366939.0184113076,237963.16604942188,363.68632,176.2822547408074,376300.3703124185,181519.58886802808,2708.52096,1253.5932202402068,2800696.8132269336,1283012.8412248536,1116.70843,492.6683039831639,1155999.5931779065,505043.6852449171,1774.9071,745.8649209650989,1824859.3334376467,755765.8839895778,0.38078,100000,0,735330,7670.474104209044,0,0.0,0,0.0,29931,311.73003703124186,0,0.0,33328,344.59917592447715,1600071,0,57466,0,0,6418,0,0,65,0.6780368226151359,0,0.0,0,0.0,0,0.0,0.06025,0.1582278481012658,0.300746887966805,0.01812,0.3427393785668992,0.6572606214331008,24.35880016953458,4.339100772563153,0.3289695945945945,0.245777027027027,0.2107263513513513,0.214527027027027,11.160166139380475,5.746795123077561,19.321290456910017,12277.658187683845,53.95536172047466,13.821514855461896,17.81247905618796,11.246596599479105,11.074771209345707,0.5618665540540541,0.7585910652920962,0.6970474967907574,0.5731462925851704,0.1181102362204724,0.7175097276264591,0.9213759213759214,0.8345498783454988,0.6944444444444444,0.1348837209302325,0.5039119095914227,0.6710700132100397,0.6477768090671316,0.532171581769437,0.1136079900124844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0047319411091183,0.0069480367992372,0.0091071537352529,0.0110788120261012,0.0134332003582186,0.0156993388143484,0.0178729915837796,0.0199170633056196,0.0221981259462334,0.0243685083891586,0.0265122766712477,0.0287072985353628,0.0310001749097157,0.0330867199736213,0.0351536294109754,0.03713163064833,0.0391441744806506,0.0412686877076411,0.0433013930938335,0.0568392734249546,0.070907532814982,0.0847386613595894,0.097723119578231,0.1109051851227833,0.1261723700887199,0.1389918850774413,0.1515750752187457,0.1615784362895222,0.1716876185576954,0.1848547784820343,0.1965201029478556,0.2080289590399165,0.2187827911857292,0.2285459666417286,0.2385167623141521,0.2478548554468261,0.2564241033256829,0.2648530863777195,0.2720848461247723,0.2793503533957222,0.2864810505513523,0.2932743488443614,0.2990692269912193,0.3047469853182265,0.3098032447359337,0.3149886127587156,0.3196723396677605,0.3235986750168211,0.3282516301048019,0.3266993428848432,0.3256706562113083,0.3245951545389201,0.3227856346713373,0.3219713320334013,0.3200147189598601,0.3182192779485879,0.3186520401953851,0.3193010734250145,0.3201061997703788,0.3211347677942809,0.3215858157153623,0.3228106334651299,0.3245685005393743,0.3249939511250907,0.3262931712174414,0.3272524518914591,0.3293638258891907,0.3333099111126726,0.3350683407501589,0.3379838599370811,0.3401031421128183,0.3423275753372841,0.3421552969807589,0.3482168196007946,0.3473909935668334,0.3435677003377341,0.3496969696969697,0.349615806805708,0.3615472998851015,0.0,1.7799829811941117,56.61926502054419,181.97199677491764,253.8062688056153,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95656,44442,420.6218114911767,6012,61.72116751693568,4780,49.53165509743246,1931,19.90465835912018,77.31769350596971,79.74129339547866,63.289715480586615,65.08183588292276,77.07338449512255,79.49368316000687,63.201313297200166,64.99372776836275,0.2443090108471608,247.6102354717966,0.0884021833864494,88.10811456001488,163.82872,114.7140451409248,171268.6292548298,119923.52297913856,354.89936,229.95458099510836,370596.8052187004,239978.8617620956,365.65804,177.45084752339943,379605.858492933,183398.88858311667,2736.72972,1253.2486606211578,2839843.564439241,1289074.1897430525,1104.54293,486.0749294241874,1147305.9609433804,500751.6406960226,1885.3046,782.1479169479983,1946800.200719244,798636.2609632297,0.37909,100000,0,744676,7784.937693401354,0,0.0,0,0.0,30200,315.25466254077105,0,0.0,33482,347.3906498285523,1586587,0,56925,0,0,6335,0,0,75,0.7736054194195868,0,0.0,1,0.0104541272894538,0,0.0,0.06012,0.158590308370044,0.3211909514304724,0.01931,0.3319095079892422,0.6680904920107578,24.49383450306735,4.258864567749429,0.3223849372384937,0.2353556485355648,0.2238493723849372,0.2184100418410041,11.08252840030329,5.7618358200009405,20.59782264984268,12320.71621043083,54.14715699064135,13.343260923507556,17.481635108095855,11.9042455328755,11.418015426162428,0.5642259414225942,0.7688888888888888,0.700194678780013,0.585981308411215,0.1206896551724138,0.723207401696222,0.8859857482185273,0.8651399491094147,0.7286821705426356,0.1644444444444444,0.5050244042492105,0.6988636363636364,0.6437282229965157,0.5406403940886699,0.1086691086691086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024414458221898,0.0048269987425465,0.0070253807106598,0.0092175733493226,0.0117207769084416,0.0138753056234718,0.0161589782302654,0.018379836328528,0.0206523185246589,0.0226429406096885,0.0247395165015654,0.0267232869951468,0.0285961425585155,0.0305956138722122,0.0328346489234202,0.0352131622516556,0.0369924936756106,0.0390539796628478,0.0410635308808991,0.0431830980040461,0.0580281101415956,0.0718656356740219,0.0847573335573923,0.097509346532568,0.109930837864949,0.1256883259911894,0.1382655446470313,0.1505046306657714,0.1620728381196855,0.1721330841763859,0.1849950386125372,0.1972394067107986,0.2088406333718119,0.2196115356822213,0.2292293284856497,0.2390135175595205,0.2481874141186196,0.2574249622841188,0.2653492094121386,0.2728428867680251,0.2806729110465318,0.2875330571742844,0.2938389748205699,0.2992046640515349,0.3043827318176842,0.3095998520254023,0.3146068822211373,0.3195017050949254,0.3245487879141239,0.3282864314968952,0.3273112132774264,0.3266837380913046,0.3255145193120947,0.3245235033163302,0.3241493011718924,0.321934396076027,0.3199822478641961,0.3208727344365642,0.3220211676340048,0.3230402108487374,0.323894730943798,0.3243913968329,0.3262901513416741,0.3272828383939495,0.3283089290841229,0.3299405395580713,0.3313200056713455,0.3342390455666947,0.337165822121265,0.3397689507833518,0.3415557176728068,0.3452747953651536,0.3499526664562953,0.3503044140030441,0.3488897252540459,0.3517200474495848,0.3560675883256528,0.3523483168715984,0.3525835866261398,0.3608762490392006,0.0,1.6489947012119333,57.684618731672536,171.45131203577813,267.25195903760874,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95710,44537,420.8337686762094,6293,64.57005537561383,4923,50.86197889457737,1989,20.332253683000733,77.34880342590687,79.70699773387882,63.338894218876014,65.07733754166519,77.0977712008315,79.45994024181292,63.24393247297448,64.98722276386226,0.2510322250753631,247.0574920659061,0.0949617459015357,90.1147778029241,162.4216,113.80716130918302,169701.11796050568,118907.65950390034,358.83675,231.96977656930423,374332.0133737332,241779.0571113825,368.27953,178.3960037727852,381977.8602026957,184093.0639917197,2828.55084,1310.96572537202,2922736.1404241985,1337177.8553672754,1174.59335,526.5627807157305,1211795.841604848,534718.6612848496,1952.76244,831.8823948430937,1998589.489081601,832567.8895324157,0.38073,100000,0,738280,7713.687180022986,0,0.0,0,0.0,30505,318.1067809006374,0,0.0,33622,348.51112736391184,1592824,0,57235,0,0,6408,0,0,92,0.9507888412914012,0,0.0,0,0.0,0,0.0,0.06293,0.1652877367163081,0.3160654695693627,0.01989,0.3278216019417476,0.6721783980582524,24.667917163240705,4.398053165925943,0.3030672354255535,0.2360349380459069,0.2327848872638635,0.228112939264676,11.143793284811636,5.735964418158902,21.36885481553593,12326.076759532809,56.12030945497919,13.957742782978489,16.915910424829455,12.751643860281018,12.495012386890233,0.551696120251879,0.7693631669535284,0.6896782841823056,0.5794066317626527,0.1148708815672306,0.7068837897853442,0.9210526315789472,0.8531645569620253,0.7043795620437956,0.1515151515151515,0.4930011198208286,0.6841397849462365,0.6308113035551504,0.5401376146788991,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0045209423022341,0.0068489675815534,0.0093357307571186,0.0115503497641125,0.0140886649361225,0.0164310395792349,0.0186383586812289,0.0209187062490419,0.0232127322040837,0.0255211856589385,0.0276081490224252,0.0294042050069398,0.031462339908578,0.0336183864412374,0.0357836653715797,0.0376598498576236,0.0396264591439688,0.0417377199184793,0.0434306911606873,0.0574818280558108,0.0725297497566642,0.0855715964411616,0.0985743595139144,0.110914211575583,0.126138515407644,0.1386760617187002,0.1505169127902643,0.1611176407735869,0.1715962365764432,0.1853751023398112,0.1972992274232292,0.2085381770720034,0.2187708495116429,0.228220561858336,0.238341681812137,0.2480141218005295,0.2574967625696751,0.2663910688123928,0.2743942971095881,0.2812619436433758,0.2876420537668387,0.2941155572397949,0.30008391273076,0.3056821081021977,0.3106754242196453,0.3156130807228162,0.319516846789574,0.3239509494489574,0.3277283217936036,0.3269937906603989,0.3257344236116847,0.3251416969799509,0.3232916335237544,0.3216708318457694,0.3199754808060685,0.3184230117371264,0.3197505538688767,0.3206554239923454,0.3212390803365668,0.3220570615545904,0.3234388568721876,0.3253667622376159,0.3262352651710023,0.3282411528375875,0.3286678656136784,0.3290593409103889,0.3313907702000315,0.3342815002107037,0.3390921005599904,0.3417039539768057,0.3430774172823643,0.3445881378607377,0.346085751674236,0.3501568291987453,0.3538387600624775,0.3610591900311526,0.3636928172221072,0.3686713286713287,0.3619084561675718,0.0,2.168213321916767,59.43650533117931,182.9074039261795,269.01362445575074,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95628,44287,420.00250972518506,6083,62.37712803781319,4708,48.55272514326348,1918,19.523570502363324,77.26744378178137,79.68333527342281,63.28338998351626,65.06958628139506,77.02595398085505,79.44724191707986,63.19259317684379,64.98432320553849,0.2414898009263169,236.0933563429484,0.0907968066724649,85.26307585657378,162.02032,113.497367786054,169427.69900029278,118686.3343226398,351.65514,228.10891902963235,367063.0986740285,237868.48938556947,359.31207,173.51191035257847,372002.8234408333,178527.0741188618,2715.48312,1250.1736309161,2803441.0423725266,1271139.3220773195,1099.62393,487.6391126836461,1134529.4474421716,494565.4020617873,1875.11644,797.0729881960578,1912108.775672397,790830.1497366666,0.37905,100000,0,736456,7701.259045467855,0,0.0,0,0.0,29987,312.8686158865604,0,0.0,32860,339.97364788555655,1597396,0,57259,0,0,6436,0,0,58,0.5960597314594052,0,0.0,0,0.0,0,0.0,0.06083,0.1604801477377654,0.3153049482163406,0.01918,0.3415786985977627,0.6584213014022373,24.57800733453075,4.348894191368537,0.328589634664401,0.2347068819031436,0.2145284621920136,0.2221750212404418,11.123007456237218,5.788508537621738,20.710104424060997,12304.878145065495,53.73345861372092,13.244719801642828,17.74029301638842,11.23413324274521,11.514312552944462,0.5590484282073067,0.7828054298642534,0.7078215901745314,0.5574257425742575,0.1042065009560229,0.7194928684627575,0.9248704663212436,0.8433734939759037,0.7393162393162394,0.1233480176211453,0.5002901915264074,0.7065368567454798,0.6581272084805654,0.5025773195876289,0.0989010989010989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002512817395181,0.004715067937538,0.0070358187134502,0.0093081863263149,0.0112615591206421,0.0133926752760011,0.015529090278769,0.0173559709644815,0.0197036779517172,0.0217406887794287,0.0240295369468232,0.0262152278423799,0.0281355443996378,0.029984544049459,0.0320912469033856,0.0341793745153786,0.0359602697020227,0.0380311805858296,0.0400062412232797,0.0422987499087714,0.0569932481866259,0.0715901711460711,0.0844045368620037,0.0979603441195362,0.1098289695945946,0.1251853106866025,0.137426714249299,0.1486971812223584,0.1600278104610118,0.170318104688876,0.1837663528219066,0.1956170853509256,0.2066781306458283,0.217119157830231,0.2271961598167986,0.2379902503877686,0.2475277362323369,0.2569258467424327,0.2662738018189869,0.2733421218547601,0.2809250295296107,0.2878319878319878,0.294504895982571,0.2995236323929973,0.3049946477228493,0.3108425107412711,0.3158257426734993,0.3207568792736811,0.3251435906079425,0.3300058176433256,0.3285602461671345,0.3272220996912219,0.3268883369086598,0.3259902961836483,0.325242139770526,0.32345042432055,0.3221474379325671,0.3225472473294987,0.3236013477688269,0.3250205584754549,0.3252679593790475,0.326183578713441,0.3279643375318039,0.3281281505544975,0.3298683131542135,0.3316413302284204,0.3318580280403186,0.333879247897704,0.3371708210111252,0.3407567049808429,0.3427033492822967,0.3448535339962376,0.3466224405179562,0.3462960110888649,0.3525343439128375,0.3572885422915416,0.3593629194371424,0.3625742980118877,0.3640238704177323,0.3611892326235436,0.0,2.648165012027795,55.006778313470896,180.89296165639564,255.1950322516282,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95846,44345,419.7984266427394,6049,62.0474511195042,4721,48.77616175948918,1817,18.65492560983244,77.40182060844235,79.71591455734155,63.36325590393732,65.07587797807237,77.17407910272084,79.4880627651429,63.27909935426377,64.9936379402697,0.2277415057215108,227.85179219864915,0.0841565496735512,82.24003780266287,163.53502,114.53773137372924,170622.68639275504,119501.8377122981,351.73851,227.61375927154987,366502.0345136991,236997.67259097908,362.39318,174.98058118696824,375020.9711412057,180133.10505495718,2730.48084,1256.5440235612405,2822198.443336185,1284618.665765684,1130.84425,498.894320927876,1167394.6121903886,508198.45176293154,1789.5783,748.9335402355415,1838886.9436387536,757567.2437974941,0.37979,100000,0,743341,7755.576654216138,0,0.0,0,0.0,30057,313.0751413726186,0,0.0,33188,343.2485445401999,1595396,0,57306,0,0,6348,0,0,56,0.5738371971704609,0,0.0,2,0.0208668071698349,0,0.0,0.06049,0.159272229389926,0.3003802281368821,0.01817,0.3356445004727387,0.6643554995272613,24.52364098662501,4.32853227200353,0.3236602414742639,0.238508790510485,0.2145731836475323,0.2232577843677187,11.266709693380449,5.758070211690282,19.227243504297142,12263.574193675482,53.818006716995775,13.655496179902949,17.298035216040702,11.295685755604008,11.568789565448116,0.5587799195085786,0.7655417406749556,0.68782722513089,0.5913129318854886,0.1195445920303605,0.7276853252647504,0.893569844789357,0.8553921568627451,0.7415254237288136,0.1541850220264317,0.4930862018240659,0.68,0.6267857142857143,0.5456885456885456,0.1100362756952841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430182871261,0.0046924565973101,0.0066854684900377,0.0090293224453314,0.0112036274539705,0.0133046948165641,0.0156652907302655,0.0177485201061441,0.0198703927060122,0.0217495880372148,0.0241299779611501,0.0262450219649382,0.028277159332696,0.0301367324245294,0.0323751766246892,0.0341802626548599,0.0361257465815106,0.0380547490667772,0.0398836726215205,0.0419923196203519,0.056328480246965,0.0709603905539468,0.0843750982385178,0.0973004201680672,0.1097103738809899,0.1246237524423087,0.1369491525423729,0.1490709639015264,0.1597635030575981,0.1702141334504515,0.1831753987802648,0.1949967581586341,0.2070834917703297,0.2180487271932699,0.2276779334982138,0.2382333407128625,0.2467296390056764,0.2556722358390861,0.2641978109227017,0.2726575643475972,0.2798552333379585,0.2870132298630265,0.2939639373337274,0.3005306088227191,0.3054139354212187,0.310459488417345,0.3153063011231458,0.3191213484860041,0.3240351399257352,0.3273614132225957,0.3266132286090862,0.3254851833525757,0.3244930674691341,0.323679088877676,0.3230944760550023,0.3219307899241868,0.3201825734005085,0.3203430610340933,0.3214809009438784,0.3214940299304233,0.3223987602920035,0.3233150825225509,0.3243671876630287,0.3252824134934605,0.3268558847460872,0.3282129790601728,0.3297784837053635,0.333395766997565,0.3379368068633605,0.3403557312252964,0.3421232098204137,0.3438346703501036,0.3459143234572561,0.3490222828558436,0.3507532081086107,0.3550205519671168,0.3539701855795558,0.3498483316481294,0.3597260273972603,0.3651340996168582,0.0,1.8647811634083231,58.60582287056486,173.9443450338479,253.8860426015177,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95695,44116,417.085532159465,6063,62.082658446104816,4813,49.69956633052929,1849,18.945608443492347,77.32145341825886,79.70947658670879,63.3143933609397,65.08064211831132,77.09387630130998,79.48243959094779,63.23034754399731,64.99896322840075,0.2275771169488791,227.03699576099723,0.0840458169423854,81.67888991056316,164.72258,115.3227277976925,172132.9014055071,120510.71403698467,354.33784,228.5016737514944,369690.06740164064,238192.9502601957,360.23239,174.39690673500832,372395.78870369407,179146.40870365128,2733.25268,1251.0269284971166,2825066.8477976904,1276160.6860307404,1146.40241,507.69512314917614,1182559.1096713515,515118.5047799529,1812.06144,755.2775701608161,1858716.1920685512,760573.2154971309,0.37849,100000,0,748739,7824.222791159414,0,0.0,0,0.0,30166,314.614138669732,0,0.0,33061,341.5120957207796,1588651,0,56993,0,0,6467,0,0,69,0.7105909399655155,0,0.0,1,0.0104498667641987,0,0.0,0.06063,0.1601891727654627,0.3049645390070922,0.01849,0.3330706179066834,0.6669293820933165,24.52585127538636,4.333968486241965,0.3118637024724704,0.237481820070642,0.2370662788281737,0.2135881986287139,11.332294579379909,5.887838911871333,19.55646568793969,12198.321982051884,54.42273927099539,13.631474856860391,16.962436437026838,12.6049365852169,11.22389139189126,0.5676293372117183,0.7909011373578303,0.6968687541638907,0.5766871165644172,0.1206225680933852,0.7551803530314658,0.9178082191780822,0.8989071038251366,0.7649122807017544,0.1635514018691588,0.498005698005698,0.7120567375886525,0.6317180616740088,0.514018691588785,0.1093366093366093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360784631596,0.0049082243180204,0.0069027123599155,0.009359660979055,0.0116697867491453,0.0139556678347322,0.0160110955872604,0.0181131304880539,0.0200881219395005,0.0220074927835895,0.0243184777371102,0.0266587251871553,0.028731316414809,0.0305116183213972,0.0328657397371979,0.0350289495450785,0.0371126118660921,0.0392291167221893,0.0411722495502147,0.0431053350147471,0.0574657419786096,0.0709081773646526,0.0838327123891483,0.0963400260975712,0.1081346275585566,0.1232840465278733,0.1363144264243865,0.1476440013633265,0.1584409199726402,0.1687670939025044,0.1816654098890444,0.1935983200190513,0.2052620702406978,0.2155938211097497,0.2256435643564356,0.23580539439302,0.2452203011712214,0.2541504153225353,0.2633972105680916,0.2710129495414419,0.2778561517113783,0.2841513447804285,0.2907339927121291,0.2970026595107458,0.3023244516771514,0.3078390821577172,0.3123921470551457,0.3178669920063035,0.3224672336685366,0.3268554262902015,0.3255770161941141,0.3245162264980155,0.3237622509385941,0.3229794846639928,0.321589238786691,0.319900786967572,0.3178430721032895,0.3182593576747695,0.3184588333703204,0.319401813120137,0.3201603236439916,0.3208852005532503,0.3229109947643979,0.3230155886041927,0.3245203894726694,0.3255010727929248,0.3273690237618093,0.3305031248027271,0.3345071662499559,0.3370719484548383,0.3401047597358232,0.3427065026362039,0.3458098077777073,0.3477660064486412,0.3515019837521254,0.3517233125897558,0.3555212355212355,0.3594196975888843,0.3564712389380531,0.360939907550077,0.0,2.3008046341844057,57.03523398888492,172.3072236019352,269.7642723912475,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95703,44594,421.8676530516285,6074,62.25510172094919,4730,48.80724742171092,1845,18.923126756736988,77.3455376358958,79.73406494363128,63.32130932583449,65.08803785918113,77.11267058588304,79.50165545373376,63.235097526084125,65.00420578101101,0.2328670500127572,232.4094898975204,0.0862117997503659,83.8320781701185,161.96422,113.36046883443558,169236.30398211133,118450.27724777236,349.59585,226.1233672163533,364690.3963303135,235674.08254323623,361.75026,175.34010379165116,374220.1602875563,180212.6403497406,2703.45916,1246.5545120548477,2793498.3438345715,1271179.6621368688,1128.99541,502.97794518144167,1164769.996760812,510653.8674766358,1805.77414,760.0742446901273,1855089.6419130017,769266.628317028,0.38062,100000,0,736201,7692.5592719141505,0,0.0,0,0.0,29804,310.7844059224894,0,0.0,33041,341.38950712098887,1603574,0,57470,0,0,6406,0,0,63,0.6582865740885866,0,0.0,1,0.0104489932395013,0,0.0,0.06074,0.1595817350638432,0.3037537043134672,0.01845,0.3371563236449332,0.6628436763550668,24.73054344181541,4.347362661869692,0.3300211416490486,0.2302325581395349,0.2249471458773784,0.214799154334038,11.265585486750306,5.794801650564946,19.77656625944904,12380.16367419086,53.65367165500643,13.04362352219386,17.49912662146387,11.865462709451885,11.245458801896811,0.5655391120507399,0.800734618916437,0.6893017296604741,0.5723684210526315,0.1161417322834645,0.7386185243328101,0.9303482587064676,0.858560794044665,0.7198443579766537,0.1698113207547169,0.5017361111111112,0.7248908296943232,0.6303972366148531,0.5254027261462205,0.1019900497512437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518992087052,0.0047264060043612,0.0071272653434184,0.0093599463403727,0.0117502238137869,0.014259523324506,0.0165915441251453,0.0187800618853589,0.0208503763089005,0.0227849916028345,0.0250246143747948,0.0269826107499049,0.0291415933755078,0.0310886702045442,0.0329721362229102,0.0349126924230049,0.0371467639015496,0.0393253762324857,0.0411297954429642,0.0431770111589234,0.0582245430809399,0.0715870557206849,0.0857865516409013,0.0987732255960271,0.1104536489151873,0.1258104434831353,0.1380126266645445,0.1503194888178913,0.1611779167334723,0.1709026510679403,0.1844893559687415,0.1972991704749734,0.2093433326439759,0.2196509655889272,0.2292377451519887,0.2392633958250232,0.2490235028904314,0.2581109661161859,0.2662250002836043,0.2749633733174618,0.2824062828920735,0.2898347474464156,0.2959661401683534,0.3015512040982429,0.3070868051765333,0.3130458313857659,0.3180489632775418,0.3223346066474612,0.3266033254156769,0.3303180509354826,0.3298085052134355,0.3289241018189793,0.3284496200255657,0.3269294516105787,0.3270812036090493,0.3254482147765798,0.322465887710089,0.3237796465409631,0.3242961596282629,0.3248159531127153,0.3252758801891749,0.3261752411894055,0.3279153279153279,0.3285829343594791,0.329416863292724,0.3294437048059101,0.3313304476591867,0.334611154752553,0.3363607672616334,0.3379767432630868,0.3399854532230202,0.339824320033866,0.342948516962438,0.3463026166097838,0.3453278070836473,0.3467751585497188,0.3481881264456438,0.3506440400736045,0.3585941790225151,0.3593628593628594,0.0,2.409237860890688,55.51679034048789,176.91358720447792,258.53123221257727,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95610,44349,420.5313251751909,6164,63.29881811525991,4847,50.10982114841544,1890,19.44357284802845,77.23812690061078,79.67007872791912,63.25655152000609,65.05463396967177,76.99797531282125,79.42945710346805,63.16885521091356,64.96887493038336,0.2401515877895264,240.62162445106597,0.0876963090925286,85.75903928840489,162.8165,114.03526156121389,170291.87323501724,119270.8170287772,353.69514,228.7849227644434,369347.3799811735,238702.2341550262,364.75345,176.82856779164416,377190.33573893947,181628.6838978939,2778.23824,1271.201690567308,2875962.6817278527,1299761.7064233497,1147.29107,505.2590994558196,1187418.4499529337,516025.5839588733,1855.999,769.4818453243469,1911986.2775860264,780647.37299243,0.37919,100000,0,740075,7740.539692500784,0,0.0,0,0.0,30151,314.72649304466063,0,0.0,33353,344.7756510825228,1589628,0,57081,0,0,6416,0,0,64,0.6380085765087334,0,0.0,0,0.0,0,0.0,0.06164,0.1625570294575279,0.3066190785204413,0.0189,0.3353441608662026,0.6646558391337973,24.482556790777338,4.3636252643863935,0.3191664947390138,0.2428306168764184,0.2139467711986796,0.2240561171858881,11.353598133191849,5.893615495311292,20.05943168584553,12285.961380956736,55.24255816531469,14.116702540272415,17.631424685334128,11.62184963918962,11.872581300518526,0.5675675675675675,0.8037383177570093,0.7123464770523594,0.5679845708775313,0.1049723756906077,0.7494126859827721,0.948780487804878,0.8933002481389578,0.7418032786885246,0.1227272727272727,0.5025210084033613,0.7262059973924381,0.6486013986013986,0.5145018915510718,0.1004618937644341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025133776552618,0.0048482143762741,0.0069145479652343,0.0092698941890367,0.0113580850024425,0.0135497213647523,0.0158396654597378,0.0178564131900461,0.0197103287441441,0.0216934847848575,0.0238754822293359,0.0260783789893343,0.0283755827955661,0.0300406177192222,0.0318896255447466,0.0341662786486626,0.0362215172814165,0.0383936176843329,0.0404413678238692,0.042406476246114,0.0575383135754458,0.0714128532657103,0.0849179501187149,0.097693522906793,0.1099330475003696,0.1254395627674448,0.1378610659612667,0.1497639121305464,0.1605559062362922,0.1718422720388412,0.1847959778175776,0.196869342757103,0.207626933972543,0.2180591161068384,0.2279559228650137,0.237660450203579,0.2471650003355029,0.2566883504887315,0.26557809515146,0.2737470578104369,0.2811017135962317,0.2879237362663133,0.2943835421412301,0.300316147567587,0.3049926274356881,0.3096117956767312,0.3137919349373094,0.3188052617477066,0.3237724084177708,0.3275540320552695,0.3270809701290985,0.3260551522345212,0.3256102898612111,0.3248471324658765,0.3241114370374782,0.3220479577259251,0.3194673954493454,0.319874752801582,0.3202127659574468,0.3212865077943021,0.3228387872412368,0.322679778733866,0.3239993272788429,0.3258527827648115,0.3261032161555722,0.3258526888470391,0.326688434438907,0.3302801553962288,0.3342497620809982,0.3364575059571088,0.338758343238548,0.3435919280123529,0.349675467893377,0.3518560865919659,0.3532123036402972,0.359262324151791,0.3697632058287796,0.3766626360338573,0.3794914317302377,0.3826491092176607,0.0,2.221265092534859,56.1617621144054,189.5868643754321,261.40802186484325,fqhc5_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95719,44556,421.7240046385775,6000,61.50294089992583,4735,48.88266697311924,1888,19.379642495220384,77.33641368994157,79.71026558831112,63.332022412709286,65.08912752867498,77.09955388894953,79.47406744111028,63.24496540256742,65.0043965888721,0.2368598009920361,236.1981472008381,0.0870570101418621,84.73093980288127,163.98074,114.87319994519954,171314.72330467307,120010.86507924188,354.68258,229.85416955206207,369960.5094077456,239549.1903927769,363.34392,176.22488354073576,375522.0802557487,181036.33303661057,3114.35109,1427.1475015412236,3218979.554738349,1456316.3546853014,1134.06196,500.1663709616377,1170479.3719115327,508233.0163934406,1853.8319,772.1621531373628,1905552.3772709705,781326.0781780264,0.38103,100000,0,745367,7787.03287748514,0,0.0,0,0.0,30270,315.63221512970256,0,0.0,33215,342.962212308946,1590401,0,57097,0,0,6491,0,0,60,0.6163875510609179,0,0.0,1,0.0104472466281511,0,0.0,0.06,0.1574679159121329,0.3146666666666666,0.01888,0.3391096979332273,0.6608903020667727,24.44871639180721,4.342899606499864,0.3235480464625132,0.2278775079197465,0.2240760295670538,0.2244984160506863,11.374183725917364,5.965494730458324,20.155790023793205,12287.277926008856,53.90221451021113,12.98881257139373,17.403961277834537,11.92395883298099,11.585481828001862,0.5632523759239705,0.7905468025949953,0.695822454308094,0.5937794533459001,0.1110065851364063,0.74,0.9178743961352656,0.8502415458937198,0.737037037037037,0.1534653465346534,0.4963609898107715,0.7112781954887218,0.6386404293381037,0.5448798988621998,0.1010452961672473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0043306727248755,0.0067820701558454,0.0092588828360029,0.0117493870990712,0.0139734789073798,0.016102550505308,0.0182867061466203,0.0202733787942298,0.0223880597014925,0.0243657424017221,0.0265086959200016,0.0287524166015384,0.0307037872467529,0.0327307247812448,0.0346880555670401,0.0366642851965748,0.0387468229679962,0.0408750779463728,0.0429977605333055,0.0576804602742014,0.0719075966980885,0.0847429188645015,0.0973068998864735,0.1096355319462889,0.1257596415020556,0.1382914445021571,0.149517206176358,0.1610024763043292,0.1711249424191457,0.1839910463502039,0.1963494020199399,0.2077864221140473,0.2189455748877748,0.2283918742240631,0.2382731745066607,0.2475184652919354,0.256160458452722,0.2649142494417429,0.2723530286223971,0.2798442356801978,0.287210687343812,0.2930148492043803,0.2978807423983151,0.3036459344071415,0.3094215648878444,0.3143885431506336,0.3189218041099546,0.3237558053791123,0.3277174558359829,0.3265657816791426,0.3258908279500282,0.325438781983506,0.3235728132866526,0.3222137870465473,0.3206560093277285,0.3191310552604455,0.3202373711636776,0.3217206803326375,0.323140200286123,0.323495771848574,0.3247400260962397,0.3259813162414645,0.3282782033815022,0.3295416285892934,0.3302845528455284,0.3297543377426559,0.3341767347713328,0.3371756909193457,0.339776357827476,0.3394740478054621,0.3425771363954553,0.3456274497204909,0.3474930362116992,0.3521408182683159,0.3525857902368294,0.3533974557865343,0.3583980384143849,0.3587135788894997,0.366325369738339,0.0,2.309818720782646,56.803656897306965,176.542811240562,257.3403228109917,fqhc5_80Compliance_baseline_low_initial_treat_cost,0 -100000,95608,44497,420.97941594845616,6085,62.46339218475441,4788,49.48330683624801,1895,19.412601455945108,77.26635035352784,79.70552127790135,63.26822878755484,65.0727446556686,77.02573824673442,79.46695961445911,63.178083272058295,64.98580453443071,0.2406121067934208,238.5616634422405,0.0901455154965447,86.94012123788752,163.82674,114.73868122444026,171352.0835076563,120009.16411265128,354.55461,229.4427075246739,370215.0447661284,239362.0131271564,361.8228,175.16524904075942,374953.8427746632,180423.9041431006,3173.26688,1453.031150580266,3280474.656932474,1481673.7059802995,1145.4202,505.212139781068,1180971.3413103507,511599.0589965964,1858.86258,787.8617349178263,1905651.9538113964,790499.1490413822,0.38059,100000,0,744667,7788.73106852983,0,0.0,0,0.0,30269,315.9359049451929,0,0.0,33188,343.6950882771316,1586267,0,56893,0,0,6633,0,0,57,0.5961844197138314,0,0.0,0,0.0,0,0.0,0.06085,0.1598833390262487,0.3114215283483977,0.01895,0.3418870286340166,0.6581129713659835,24.643659653192906,4.355490156752728,0.3210108604845447,0.2261904761904762,0.2268170426065162,0.2259816207184628,11.32223649612794,5.903466022492508,20.32816095160208,12309.86544609618,54.48902456969445,12.982466830647386,17.403190455790906,12.089150535986292,12.01421674726986,0.5649540517961571,0.7987072945521699,0.682498373454782,0.6068139963167587,0.121996303142329,0.7153905645784996,0.9108910891089108,0.8393782383419689,0.7461538461538462,0.1604938271604938,0.5092989985693849,0.7319587628865979,0.629887054735013,0.562953995157385,0.1108462455303933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0047780877504438,0.0070378908669909,0.0093846591833414,0.011797398261436,0.0141158005238643,0.0166659862834748,0.018791575978664,0.0207909142067836,0.0229534066339444,0.0248883871298814,0.0270750886570385,0.0292358530383669,0.0312512888192353,0.0331663481898466,0.0354083026364802,0.0374792703150912,0.0395288936895018,0.0415370044648897,0.0435626010324868,0.0578943516940736,0.0719996646791922,0.0849325140486319,0.0967959385730235,0.1086008217412888,0.1247312055760939,0.1374443346193497,0.1495653101498746,0.1602175053252411,0.1699601345325209,0.1834667414615202,0.1961016012055115,0.207323581627874,0.217848142872795,0.2269019642424108,0.2370070442065561,0.247282396183624,0.2569311501993198,0.2656583791645834,0.2731006160164271,0.2804587049693038,0.2877540263543192,0.2941664297223012,0.3000203883378707,0.3049627278586455,0.3105363866427998,0.3157703397267143,0.3203664534542952,0.3249637042414186,0.3295699137714746,0.3285406279477159,0.3274349688098156,0.326985156261013,0.3247006767308693,0.3248036181861461,0.3231662479318585,0.3204872330989038,0.3206480659896809,0.3223137670506991,0.3226331413856003,0.3229908156940818,0.3231406432690593,0.3234410770167811,0.3246910263299301,0.3255236580133536,0.3254999346490654,0.3261764537709417,0.330123752999116,0.3347657625924621,0.3397601880253356,0.34072553045859,0.3454439065907761,0.3479556259904913,0.3520741528643063,0.3558862062511697,0.3580610921099186,0.3584415584415584,0.3597326311525218,0.3624382207578254,0.3605134012835032,0.0,2.1655278980536075,56.844627643137365,183.5668662525161,256.33782268145234,fqhc5_80Compliance_baseline_low_initial_treat_cost,1 -100000,95710,44703,423.1114826036987,6144,63.05506216696271,4789,49.51415735032912,1897,19.506843590011496,77.34534288058313,79.71358572207575,63.32656324425341,65.0742487708091,77.1191619155214,79.48682050516166,63.24302433125015,64.99233994533466,0.2261809650617294,226.7652169140888,0.0835389130032595,81.90882547444289,163.28026,114.36824388506662,170598.72531605893,119494.35074392083,354.88698,229.58627131209104,370292.49817156,239375.44803269356,361.62112,175.0978885111478,374183.67986626265,180196.06199809493,3132.77315,1426.0287821496252,3241910.5527113155,1458664.9484376004,1167.45257,512.2361932919425,1207760.6101765751,523180.48898237135,1857.34514,768.9165229375299,1912570.076272072,780887.4172301375,0.3822,100000,0,742183,7754.487514366316,0,0.0,0,0.0,30306,316.11116915682794,0,0.0,33033,341.44812454289,1590784,0,57130,0,0,6423,0,0,66,0.6895831156618953,0,0.0,0,0.0,0,0.0,0.06144,0.1607535321821036,0.3087565104166667,0.01897,0.3405145691258524,0.6594854308741476,24.63311731026125,4.323778784353811,0.3196909584464397,0.2363750261014825,0.2205053247024431,0.2234286907496346,11.26521491767388,5.932351078671601,20.076129524442923,12366.460912959592,54.30897773945366,13.592893766268684,17.339769194978,11.718324279741624,11.657990498465349,0.5685946961787429,0.7773851590106007,0.7047681254082299,0.5880681818181818,0.1336448598130841,0.7474903474903475,0.9183168316831684,0.8717339667458432,0.7376425855513308,0.1739130434782608,0.5022896393817974,0.6991758241758241,0.6414414414414414,0.5384615384615384,0.1239860950173812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0045811120345407,0.0069295077310174,0.0092017062766605,0.0113181069372978,0.0135920748531343,0.0157793339653221,0.0180986699059849,0.0201889068345838,0.0222436048356552,0.0245832735324872,0.026319572807558,0.0283269218901071,0.0302677532013969,0.0324564752990226,0.0347222940075874,0.0371896974906533,0.0392171106568009,0.0411732290832718,0.0430895240874086,0.0574904704715158,0.0713956798392498,0.0846431494344532,0.0977726808841941,0.1102435318448486,0.1256693546680212,0.138154332848544,0.1499099943546755,0.161682662505611,0.1728395061728395,0.1858488126535361,0.1978691843783497,0.2100544069640914,0.220295566502463,0.2295146956799436,0.2405950032144361,0.2501506662797705,0.2591434260707174,0.2667370308581027,0.2745086811122818,0.2817712791800661,0.2884102708011786,0.2948561691654143,0.3006157753498179,0.3061135265113793,0.3116275058217617,0.3167271362442136,0.3204504149562167,0.325199461195731,0.3300455535749653,0.3295512734132866,0.3279390700749229,0.3263499682360415,0.3253168952943219,0.3245213406923637,0.3231155932930754,0.3217173875199797,0.3227377847758697,0.3242276034832398,0.3245554644906104,0.3263155928340587,0.3277102260410303,0.3291305984192698,0.3312237230521513,0.3314553990610329,0.3322482356311362,0.3329647585835389,0.3366664583463533,0.3411834484683553,0.3441376865818597,0.3479346345891965,0.3496695744118424,0.3481829573934837,0.3488301428137344,0.3517842090474852,0.3529411764705882,0.3568711002891493,0.3564376385250856,0.36,0.360655737704918,0.0,2.0220477871230758,57.24084038486011,176.71443915477153,262.34143127353855,fqhc5_80Compliance_baseline_low_initial_treat_cost,2 -100000,95671,44282,419.7614742189378,6078,62.35954468961336,4759,49.24167198001484,1865,19.20122085062349,77.2498286400838,79.65032822367637,63.26585613190741,65.03966783878838,77.01525489918288,79.41459216249804,63.17743618124425,64.95312331357954,0.2345737409009274,235.73606117832924,0.0884199506631588,86.54452520883638,163.72246,114.621311767017,171130.24845564488,119807.3775904284,354.60073,229.7647632102424,370080.0974171902,239597.21754159877,360.09605,173.92448327721155,373732.71942385886,179719.23255468687,3114.51001,1430.641668110246,3222867.838739012,1463056.0718620894,1148.94648,509.8294735393152,1188666.9628204994,520856.3480669743,1830.8566,780.1786632564159,1885458.247535826,789210.3222730192,0.37932,100000,0,744193,7778.647657074766,0,0.0,0,0.0,30237,315.52926174075736,0,0.0,33000,342.2458216178361,1582700,0,56892,0,0,6263,0,0,61,0.6271492928891722,0,0.0,1,0.0104524882148195,0,0.0,0.06078,0.1602341031319202,0.3068443566962817,0.01865,0.3414096916299559,0.6585903083700441,24.384978501993764,4.343101979527344,0.3193948308468166,0.2349233032149611,0.2239966379491489,0.2216852279890733,10.978786550959915,5.677122039508708,20.01934468302804,12233.931933579122,54.11885959853173,13.496359566909948,16.85011169604292,12.059723376043952,11.71266495953492,0.5570498003782307,0.7799642218246869,0.6828947368421052,0.5863039399624765,0.109952606635071,0.7137285491419657,0.8990384615384616,0.8681318681318682,0.7238805970149254,0.1324786324786324,0.4992809893586425,0.7094017094017094,0.6245674740484429,0.5401002506265664,0.1035322777101096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779650715182,0.0042694737696106,0.0064554764973964,0.0088193456614509,0.0110567484818585,0.0131179597906015,0.0155300403801443,0.0175830908255475,0.0197075066475761,0.0218658145656025,0.023837608853969,0.025814072932717,0.0277306168647425,0.0300247371675943,0.0322743838855219,0.034223835675944,0.0361850285998507,0.0382479053976889,0.0403774527143719,0.0422592484464278,0.0567252134117671,0.0707605952393419,0.0842779177162048,0.0979397714598371,0.1099948289872202,0.1253360143930574,0.1378131271835278,0.1488432068373882,0.1594295923061287,0.1702511655888103,0.1830207816310235,0.1946947761113099,0.2057649522313833,0.2168165862220272,0.2265411110129824,0.2372316308841179,0.2464705948209267,0.2553138679543301,0.2633496112647839,0.2713346663908617,0.27818692934972,0.2853903275837759,0.2924222066325014,0.2984873464181278,0.3037662923540242,0.3097753476173981,0.3149948501519833,0.3194091263401357,0.3239196828903762,0.3279424620519749,0.3270213283594193,0.3256305131072183,0.3240117627099474,0.3236497070255845,0.3230725657384771,0.3212460676743651,0.318624341980085,0.3193022873128188,0.3201274343558912,0.3214586506585431,0.3224914926018538,0.3231357931677142,0.3235886673662119,0.3250504597443373,0.325152633992133,0.3267321572817052,0.3278395044187434,0.3301414444861685,0.3352649584584235,0.3377876176168261,0.3386848769898697,0.3436529247617543,0.3459206001875586,0.3475826586971325,0.3517067711247901,0.351773549447968,0.3508665247795682,0.3482142857142857,0.3527481542247744,0.3625753012048193,0.0,1.941998545964129,56.5009555801881,180.65979737187143,257.7465417516363,fqhc5_80Compliance_baseline_low_initial_treat_cost,3 -100000,95731,44371,419.58195359914765,6098,62.41447389038034,4823,49.65998474893191,1939,19.73237509270769,77.32698317968122,79.68562402222575,63.31555014592704,65.060607878964,77.08111923801728,79.44661405214647,63.22364587099578,64.97521519785323,0.2458639416639414,239.0099700792803,0.0919042749312595,85.39268111077547,162.75622,114.01916541999756,170014.12290689535,119103.7024788183,351.92577,227.36850789307744,366897.1806415895,236785.44869799487,359.79454,174.01203949691958,371761.2894464698,178594.95045779645,3156.98769,1443.7744958186618,3253076.55827266,1463464.839831052,1168.59134,518.4636933950271,1200970.6678087558,521852.8156971379,1897.01978,798.6945881800804,1934048.009526695,792489.6867833363,0.37902,100000,0,739801,7727.914677586154,0,0.0,0,0.0,30021,312.84536879380767,0,0.0,32970,340.2555076203111,1595055,0,57205,0,0,6467,0,0,53,0.553634663797516,0,0.0,1,0.0104459370527833,0,0.0,0.06098,0.1608886074613477,0.3179731059363725,0.01939,0.3385888229784577,0.6614111770215423,24.45553388962905,4.400733945529835,0.3143271822517106,0.2403068629483724,0.2195728799502384,0.2257930748496786,11.490513286629108,6.091252969843009,20.63299448227033,12292.832660748754,54.76759404713927,13.89092841405227,17.181167478391668,11.721029990849644,11.97446816384568,0.5575368028198217,0.7851596203623814,0.7025065963060686,0.5609065155807366,0.1101928374655647,0.7029096477794793,0.917910447761194,0.8525798525798526,0.7112970711297071,0.1240310077519379,0.5035541654819449,0.714663143989432,0.6474301172227231,0.5170731707317073,0.1058965102286401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024720125626867,0.0049177668268743,0.0069829283640866,0.0093262353706111,0.0115840325451309,0.0136551092103253,0.0156014194232573,0.0179756241961496,0.0202873962634397,0.0225381521171738,0.0245872236627686,0.0267207308935995,0.0287100521159914,0.0307788944723618,0.032938579298108,0.0351020408163265,0.0371677934340349,0.0393029407188423,0.0408988390342261,0.0430266598601894,0.0568048943456109,0.0705078574567369,0.0837370242214533,0.0967240001682156,0.1087064230821939,0.1237245302570501,0.1358824777259228,0.1480349670453698,0.1599948692185178,0.1704628397234983,0.1835722755201035,0.196540556933508,0.207828244357875,0.2178432316512757,0.2269119411693473,0.2377790586826878,0.2483857273722546,0.2579500523807914,0.2666098613951375,0.2744403562463464,0.280825090917514,0.2875850678786033,0.2937097749173274,0.2989953066295358,0.3049344266283851,0.3105528754210416,0.3156496346705769,0.3197466999643239,0.3236743160897186,0.3277039071474786,0.3266614584736402,0.3258403766208738,0.3253962662909475,0.3239905125535115,0.3228358164570137,0.3212900059807695,0.3186457871045457,0.3196150561650134,0.3203294543838964,0.3229411764705882,0.3235371195387668,0.324848820204735,0.3253508108562306,0.3270659862118363,0.3283650373224175,0.3298858680038653,0.3306435516523623,0.3339414910349166,0.3390615136424212,0.342498316231528,0.345666106086087,0.348728813559322,0.3501723597618301,0.355481475869384,0.3573902461855284,0.3588443396226415,0.362442748091603,0.3598300970873786,0.3597102256896071,0.3636363636363636,0.0,2.7788002151381006,56.90724153616764,176.67646413468154,266.8194056406682,fqhc5_80Compliance_baseline_low_initial_treat_cost,4 -100000,95773,44609,420.8701826193186,6190,63.56697607885312,4873,50.4213087195765,1916,19.775928497593267,77.39144353273707,79.72929531823178,63.36142006586866,65.08687894995106,77.15452057690338,79.49032869964863,63.27370342894069,64.999880713702,0.2369229558336911,238.96661858314872,0.0877166369279649,86.99823624905889,162.74698,113.95564409983332,169929.68790786547,118984.930097035,354.97152,229.5327065502449,370173.5666628382,239198.99715185375,363.27303,175.54151615122734,376275.140175206,180992.4826611364,3193.05705,1451.107024872891,3306870.589832207,1488098.965359643,1142.29365,499.40924375947895,1181191.9016841906,509933.3985146952,1881.6184,785.1477405358917,1943121.589592056,801311.1119900275,0.38105,100000,0,739759,7724.076723084794,0,0.0,0,0.0,30198,314.838211186869,0,0.0,33271,344.3141595230389,1598265,0,57339,0,0,6379,0,0,69,0.7204535725099976,0,0.0,0,0.0,0,0.0,0.0619,0.1624458732449809,0.3095315024232633,0.01916,0.3329748002458512,0.6670251997541488,24.58120697746217,4.345494465293241,0.3170531500102606,0.232916068130515,0.2290170326287707,0.2210137492304535,11.06248748457484,5.657273655089145,20.28748082037265,12316.297168437904,55.18899216624786,13.566136239969389,17.537073556099998,12.41585651949452,11.669925850683962,0.5546891032218346,0.7876651982378855,0.686084142394822,0.5752688172043011,0.0993500464252553,0.7175097276264591,0.9152542372881356,0.8542199488491049,0.6934306569343066,0.0966183574879227,0.4963768115942029,0.7146814404432132,0.6291161178509532,0.5368171021377672,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0047934169056619,0.0071731498954972,0.0092727069601161,0.011641976187329,0.0137814510219037,0.0161605869166496,0.0181606709245618,0.0204925987598197,0.0225607759679135,0.0246721311475409,0.0267974392646093,0.0289248980178995,0.0309068266727046,0.0330897133255677,0.0353889061047412,0.0377327248077659,0.0398552227661163,0.0420036172380101,0.0441141238112103,0.0579486269557139,0.0724232817518859,0.0857118880532041,0.0979841635382819,0.1104925775978407,0.1261988093853425,0.138766940255774,0.1498601078711928,0.1607240108921992,0.1711434573829531,0.1838476690741956,0.1957563238777077,0.2069471464748014,0.2182249218869491,0.2278333516543915,0.2383534358747372,0.2486484678920557,0.2575995866004628,0.2660718941652591,0.2731735225127296,0.2803278120051322,0.2869816260694749,0.2937510347926866,0.3001760879721134,0.3051750288175696,0.3106151990349819,0.3154197137321082,0.3206661408106664,0.324837878768267,0.3289437260252303,0.3270908675369372,0.3265350967547004,0.3264583069720359,0.3253477477477478,0.323981860216966,0.3224152923766953,0.3200378668349637,0.3200575737254453,0.3201191996594295,0.3205920595621894,0.3215175177424489,0.3218456674241676,0.3230107977775448,0.3245598315487657,0.3260193378824778,0.3271772634658586,0.3292700293355359,0.3333543267414032,0.335738674363758,0.3391819845627437,0.3424469641550841,0.3457495063770746,0.3494242692648361,0.3485958485958486,0.3522301349325337,0.3529135338345864,0.3585274229902329,0.3577268195413758,0.3601729262361524,0.3558745749905553,0.0,1.77240122072252,56.761162631352846,185.1566507086794,266.3607708026186,fqhc5_80Compliance_baseline_low_initial_treat_cost,5 -100000,95700,44566,421.6509926854754,6218,63.41692789968652,4821,49.50888192267502,1925,19.51933124346917,77.37264048070351,79.73164534134209,63.34029949113111,65.0817620134446,77.12696212687348,79.49421705057316,63.24715552152371,64.99583546228904,0.24567835383003,237.428290768932,0.0931439696074036,85.92655115556624,162.65568,114.01255977374416,169964.1379310345,119135.381163787,356.98855,231.487493107647,372153.1347962383,241013.05444895197,368.54303,178.72575170637623,379600.710553814,182534.79256695788,3185.33969,1470.574762458342,3272099.60292581,1480392.5736977516,1149.96108,513.7678340597728,1180988.9864158828,516247.20025450905,1886.56226,804.4345718917249,1915401.3375130617,793661.50746696,0.38004,100000,0,739344,7725.64263322884,0,0.0,0,0.0,30423,316.9801462904911,0,0.0,33659,346.34273772204807,1591364,0,57111,0,0,6389,0,0,61,0.6269592476489028,0,0.0,0,0.0,0,0.0,0.06218,0.1636143563835385,0.3095850755870055,0.01925,0.3316960859554873,0.6683039140445126,24.36883463307933,4.391279714042036,0.3262808545944825,0.2254718937979672,0.2225679319643227,0.2256793196432275,11.566773522420371,6.113161950325408,20.584979351304987,12275.830542542928,54.73924197532607,12.95785400415357,17.865018144882132,12.025259538190593,11.891110288099764,0.5561086911429164,0.7690892364305428,0.6986649713922441,0.5936626281453867,0.1001838235294117,0.7179681576952237,0.9205128205128204,0.8726415094339622,0.6951672862453532,0.1313559322033898,0.4951456310679611,0.6843615494978479,0.6344647519582245,0.5597014925373134,0.0915492957746478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303797468354,0.0046618629209611,0.0071619140367428,0.0094653883652908,0.0114490233759367,0.0136510780381537,0.0155143063922611,0.0175768092273144,0.0200049066710281,0.0222649892002006,0.024607308370586,0.026694319243524,0.0286478149100257,0.0307730334301427,0.0327672657491282,0.0350380353894493,0.0371286872430966,0.0390838934528254,0.0413063362714119,0.043124101581217,0.0574236127065015,0.0715885307660108,0.0848651992911296,0.0977809546835416,0.1095530791046821,0.1252868094105207,0.1381260011244417,0.1497222044830449,0.1610732520134156,0.1719688518963446,0.1847439736326231,0.196591462424931,0.2082907303065242,0.2183715664074037,0.2280500957453833,0.2386060169538478,0.2478341445987585,0.2566666666666666,0.2646888386415025,0.2723894292530739,0.2799666554746385,0.2868147176923707,0.292795942310655,0.2984241667766829,0.3039153696498054,0.309463010251286,0.3133743284030709,0.318669992110554,0.3226570999326529,0.327206270452866,0.3262663382196556,0.3261353946029213,0.3243136647275083,0.3228930290372468,0.3225317358860778,0.3216561485203112,0.3195644604817523,0.3198272889954195,0.320168482802135,0.3208625663307098,0.3217806991335524,0.3232265558858853,0.3249001609969264,0.3259033056193299,0.3263765754540662,0.3276770192781713,0.3285896527285613,0.3316987850204579,0.3332170758928571,0.335234648518941,0.3364076133640761,0.3400634249471458,0.3445716442319789,0.3465706707086017,0.3468245826727595,0.3471715864988827,0.3511995141208624,0.3477737665463297,0.3537581699346405,0.3622969399319984,0.0,3.376901791858269,56.68117652878559,179.64350782058818,260.37710200697154,fqhc5_80Compliance_baseline_low_initial_treat_cost,6 -100000,95746,44331,419.0044492720323,5929,60.81716207465586,4699,48.53466463350949,1916,19.71883942932342,77.33281654085012,79.69804967075537,63.319784280511655,65.07072123988058,77.09656086890037,79.46079174820055,63.23242753302659,64.98512738444772,0.236255671949749,237.25792255481792,0.0873567474850673,85.59385543286169,164.27092,114.97752126780158,171569.2561569152,120085.76909713369,352.85911,228.36308377281665,368001.5353121801,237974.9756596168,358.97687,174.5147331607945,370850.78227811086,179237.30042578888,3124.34279,1428.0462100302427,3230956.687485639,1459382.8778587217,1138.336,502.5524796068416,1176018.5699663693,511987.1530997033,1890.1823,789.6968938027404,1947183.3601403716,801684.0706631719,0.37942,100000,0,746686,7798.602552587054,0,0.0,0,0.0,30065,313.4439036617718,0,0.0,32745,338.0611200467905,1589102,0,57110,0,0,6445,0,0,72,0.7311010381634743,0,0.0,1,0.0104443005451924,0,0.0,0.05929,0.1562648252596067,0.323157362118401,0.01916,0.3346166185434713,0.6653833814565288,24.672208305027866,4.480685224565813,0.3136837625026601,0.2277080229836135,0.2179187061076825,0.2406895084060438,11.267544449367657,5.722771246536365,20.37478847084472,12247.694258841966,53.13051582192092,12.86624106995694,16.54112440628274,11.342361801535809,12.380788544145426,0.5547988933815705,0.8074766355140187,0.7008141112618724,0.5712890625,0.1105216622458001,0.731974921630094,0.9397590361445785,0.8835978835978836,0.7,0.1255605381165919,0.4887525562372188,0.7236641221374046,0.6377737226277372,0.5274869109947644,0.1068281938325991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190923000537,0.0045236477234692,0.0067621078282059,0.0091277787377644,0.0113640988076343,0.0135878422425032,0.0157966122436492,0.01791730474732,0.0200813889286517,0.0221992402289552,0.0243802415468842,0.0267175964431301,0.0287280092949607,0.0309265610034912,0.0329330196855268,0.0351218100445482,0.037178956089478,0.0393105094384657,0.041218246664795,0.0431394609911345,0.0580552887626842,0.0722423912702315,0.0849823303027443,0.0970689038878025,0.1096108440846614,0.1248149558008712,0.1373272671354183,0.1492416582406471,0.1601388518024032,0.1700466512949756,0.1835350359619277,0.1959710922624199,0.206938176281877,0.217407941922505,0.2275642083264587,0.2383214305486353,0.2478518981409155,0.2565952370233647,0.2652994052753439,0.2731353195777131,0.2799041677758359,0.2865321126694607,0.2927441805366345,0.2976664428242517,0.3035065329687025,0.3091299359757226,0.3139278557114228,0.3191827902240325,0.3243159203980099,0.3274480026411357,0.3262424724156978,0.3247869132368533,0.3239051352189729,0.3229011497577554,0.322007917373575,0.3203279442188338,0.3184128441819592,0.3190256553354234,0.3191830880092893,0.3189936658042644,0.3200936768149883,0.3206383104941567,0.3212887558356187,0.3213743186489143,0.3218647816887863,0.3222314954879766,0.3221702418986764,0.3243966141162402,0.3276195159647335,0.3293584545671357,0.3326046363346541,0.3374787414965986,0.3433606041535557,0.3453537807470391,0.3494955156950672,0.3502532092804145,0.3519052679520267,0.3557344064386318,0.3582171178561663,0.3577668059248006,0.0,2.1229417296370694,55.86788408699526,169.914028225178,260.7208599373559,fqhc5_80Compliance_baseline_low_initial_treat_cost,7 -100000,95783,44866,424.2715304385956,6079,62.23442573316768,4771,49.26761533883883,1885,19.262290803169662,77.34910350822409,79.67589284313713,63.34642956891118,65.0661334930074,77.11206676051866,79.44202709946697,63.25776229619542,64.98099551742335,0.2370367477054316,233.8657436701652,0.0886672727157531,85.1379755840469,163.30974,114.41338010038444,170499.4832068321,119450.38274055364,356.61223,231.1348650029537,371742.4490776025,240740.7420971922,367.19513,177.58397214488443,379771.5252184626,182714.43893006077,3153.33329,1443.9659961750062,3259247.5804683506,1474622.6534719164,1119.49404,496.2239579584559,1155378.2925988953,504702.0422689272,1848.41496,778.518075475091,1891700.0093962396,782210.5318720723,0.3826,100000,0,742317,7749.976509401459,0,0.0,0,0.0,30397,316.7681112514747,0,0.0,33568,346.9091592453776,1589997,0,57104,0,0,6412,0,0,64,0.6681770251506008,0,0.0,0,0.0,0,0.0,0.06079,0.1588865656037637,0.3100838953775292,0.01885,0.3402690863579474,0.6597309136420526,24.56491714104955,4.348914108992196,0.3190106895828967,0.2337036260741982,0.2244812408300146,0.2228044435128904,11.096027330198362,5.740333118248247,20.071956940205,12314.985209888802,54.11927512171875,13.359468977599676,17.32910682980146,11.767066836521092,11.663632477796511,0.5577447076084678,0.7946188340807175,0.6925098554533509,0.5564892623716153,0.1175917215428033,0.7122529644268775,0.9238329238329238,0.8535353535353535,0.6651982378854625,0.1531914893617021,0.5019965772960638,0.7203389830508474,0.6358792184724689,0.5272511848341233,0.107487922705314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657809462086,0.0042976312348594,0.0065435067108987,0.0087149952768382,0.0110119168666368,0.0132843356814202,0.0154100165107319,0.0177884370056641,0.020088076919147,0.0222831536084794,0.0242288266691254,0.026680075114673,0.0287340965613631,0.0308164189550825,0.0328174779103215,0.0347972484455369,0.036919765733325,0.0391426971651355,0.0411267781252922,0.043340622722066,0.0581274002337618,0.071956742283999,0.0860881326078067,0.0990163520955063,0.1114447992075785,0.1269826174248428,0.1391338449145716,0.1505226554939971,0.1612916995709986,0.1720572952936009,0.1847163922075126,0.1967858456081154,0.2076764162226813,0.2180969149506239,0.2284585676089037,0.2390762585147034,0.2483815519242789,0.2574162787036412,0.2655047995098373,0.2728282273206026,0.2805885210632243,0.2876814900611889,0.2938858116744781,0.2992726096178504,0.3049777162495294,0.3104017950709521,0.3152512672883159,0.320192466808386,0.3249138176822788,0.3283808769149498,0.3273011466993653,0.3256076568202162,0.3249285120649096,0.3243864033630441,0.32416782967604,0.3221111910263669,0.3206541509165388,0.3212821101669892,0.3219393153349943,0.323501053458558,0.3239254611855042,0.3245751142591457,0.3245757385292269,0.3256006628003314,0.3273845411793079,0.3294970050482592,0.3301676297271011,0.3336809176225234,0.337293333803363,0.3390960632436317,0.340687508582414,0.34342357706246,0.3454568576333693,0.3476197765192101,0.3506763787721124,0.3524895020995801,0.3530232558139535,0.351655087862689,0.3594572140681252,0.3559055118110236,0.0,2.0249404844771117,55.400672000999855,183.11297111690635,258.8081132285662,fqhc5_80Compliance_baseline_low_initial_treat_cost,8 -100000,95660,44423,420.4265105582271,6189,63.42253815596906,4869,50.24043487351035,1926,19.76792807861175,77.31532774038504,79.70734366517786,63.31028192710126,65.07632365829039,77.07892374768903,79.47183801225474,63.222907260906986,64.99167254796046,0.2364039926960117,235.50565292312345,0.0873746661942718,84.65111032992922,162.37914,113.74637069227305,169746.12168095337,118906.93152025198,352.68615,227.9703413433269,368050.1777127326,237676.13562965384,366.93051,177.38736670442944,378728.4863056659,181808.2054589935,3201.10042,1470.5682560554685,3306556.554463725,1497511.8503611418,1150.90517,510.9176556995029,1188197.815178758,519174.697574224,1888.00074,788.3622767303617,1939629.7721095548,794281.3517319629,0.3805,100000,0,738087,7715.732803679699,0,0.0,0,0.0,30091,313.9034079029898,0,0.0,33676,347.4074848421493,1595951,0,57267,0,0,6402,0,0,67,0.679489859920552,0,0.0,1,0.0104536901526238,0,0.0,0.06189,0.1626544021024967,0.3111972855065438,0.01926,0.3378399139652788,0.6621600860347212,24.241837649686317,4.354487515942335,0.3253234750462107,0.2335181762168823,0.2205791743684534,0.2205791743684534,11.34842077076674,5.81935918204055,20.48409557111441,12334.294871005006,55.670701918062335,13.741817448380427,17.98666895148945,12.115087912368482,11.827127605823982,0.5676730334771001,0.7959542656112577,0.7152777777777778,0.5605214152700186,0.1154562383612663,0.7427293064876958,0.9123222748815166,0.8828828828828829,0.7241379310344828,0.1401869158878504,0.5011337868480725,0.7272727272727273,0.65,0.5079950799507995,0.1093023255813953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0045824124576735,0.0068602975501836,0.0092861642248999,0.01153564453125,0.0137407690348866,0.0159214230345559,0.0179357540472907,0.0202075983023981,0.0224568374055338,0.0247266834861444,0.0267793859333751,0.0286707747384447,0.0308500772797527,0.0330715000877365,0.0349160711146045,0.0369276677753256,0.0391601278698052,0.0410468720743961,0.0429621137109802,0.0575273479537357,0.0709386943091984,0.0843015628115914,0.097440862025423,0.1096055214335465,0.1250079386921269,0.1382415085524988,0.1496069701552947,0.1614599476299898,0.172199147858377,0.1849464915022254,0.1960871354020051,0.2072797727247989,0.2177709689774033,0.2274789656843311,0.2382753152273962,0.2486738807553575,0.2581073478114099,0.2666598551415662,0.2743983497593399,0.282286733287787,0.2894043843119813,0.2965072223537769,0.3024798742666554,0.3077726880596833,0.3123790267897871,0.3170377419920359,0.3214249350913811,0.3255901280607026,0.3301161869553736,0.3290673707750131,0.3283715678444548,0.3273628478089445,0.325072654453971,0.3242435950781668,0.3223593544237895,0.3199341647148193,0.3207908790092717,0.3215930411052362,0.3230911812932202,0.3230579531442663,0.3235154862892089,0.3255380621388493,0.3265105470146585,0.3282027849258074,0.329294350635814,0.3300477129224879,0.3321315623023403,0.3320962782313646,0.3345464725643897,0.3361891235625601,0.3406569965870307,0.3394862036156041,0.3420303240206265,0.3447423464536984,0.3526668261181535,0.355202929508697,0.3610778443113772,0.3675660792951541,0.3699047619047619,0.0,2.605047691014358,58.57061131576877,188.12343514224688,257.00475707623343,fqhc5_80Compliance_baseline_low_initial_treat_cost,9 -100000,95623,44169,418.0165859678111,6049,61.98299572278636,4737,48.92128462817523,1862,19.053993286134087,77.3146043072854,79.7328584451174,63.296484254502126,65.08265944523393,77.07619820534325,79.49769745885364,63.2066740917434,64.99705323764908,0.2384061019421608,235.16098626376447,0.0898101627587237,85.6062075848456,163.03254,114.11574594442013,170494.6508685149,119338.79731692182,351.77375,227.35004048356737,367237.06639615993,237119.4528995088,357.40502,172.87710304370924,369955.16768978175,177903.20193804856,3067.37317,1410.959547717312,3168462.336467168,1436318.2894509498,1110.34076,492.11494215325627,1147471.026845006,500994.7233025878,1820.37366,774.6499413744086,1864392.457881472,777077.4444294946,0.37813,100000,0,741057,7749.756857659768,0,0.0,0,0.0,29937,312.4143772941656,0,0.0,32754,338.71558097947144,1594413,0,57142,0,0,6283,0,0,67,0.7006682492705729,0,0.0,2,0.0209154701274797,0,0.0,0.06049,0.159971438394203,0.3078194742932716,0.01862,0.333596214511041,0.666403785488959,24.536004005163907,4.272759882305328,0.3172894236858771,0.2469917669411019,0.2191260291323622,0.2165927802406586,11.193328535464376,5.871920266232788,19.994897939848165,12234.839556838486,53.73574598249649,13.94884201935684,16.915829134505888,11.475451323357955,11.395623505275802,0.5659700232214482,0.7666666666666667,0.7032601463739189,0.5915221579961464,0.1101364522417154,0.7324281150159745,0.9200968523002422,0.8940217391304348,0.7377049180327869,0.1233480176211453,0.5061692969870876,0.6829590488771466,0.641409691629956,0.5465994962216625,0.1063829787234042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021379429138844,0.0044214134325785,0.0065679944776058,0.0086572168876695,0.01080322265625,0.0132613566917905,0.0152793219163411,0.0175503115742159,0.0197604606682963,0.0219557403406007,0.0240617852490794,0.0263587710197331,0.0285385074381185,0.0307055053528557,0.0329393548387096,0.0349088502621265,0.0370646688841223,0.0390090436191089,0.040977294957441,0.0429943779792016,0.0573145873621491,0.070944424074171,0.0844123793621288,0.0963945470814253,0.1083854078702921,0.1239966962451555,0.1361178682586388,0.1482484093403958,0.1593367210484086,0.1701494461574825,0.1823498311375824,0.1936976976108919,0.2057144102519396,0.216725830484705,0.2268348067638175,0.2369399465056657,0.2468901232774133,0.2562874656330283,0.2646721283534264,0.2731037014096785,0.2806924101198402,0.287439302638507,0.2938544046787503,0.2982937854462176,0.3042042114978262,0.3094988725556637,0.31455234616395,0.3194557477110885,0.323343685300207,0.3275814303241382,0.3273569159532655,0.3261198339153628,0.3237365485379458,0.3226874475898563,0.3220142257670902,0.3199128820994187,0.3189366662965724,0.3196081659532433,0.3195464214643518,0.3195625324431238,0.3203259647808167,0.3218311524515214,0.3222924884686828,0.3228992486567231,0.3228369065849923,0.3233801211995649,0.3242952259526845,0.3279588336192109,0.3317657714146375,0.3353971133370139,0.340241094406068,0.3411032591498787,0.3405234941658783,0.3423594736441774,0.3453811490799849,0.3470265106281347,0.3538175046554935,0.3637477036129822,0.3744505494505494,0.3794174757281553,0.0,2.32961604555344,54.75065315300872,181.79757679257625,256.62064116398267,fqhc5_80Compliance_baseline_low_initial_treat_cost,10 -100000,95631,44325,419.74882621744,6147,62.90847110246677,4799,49.4504919952735,1900,19.31382083215693,77.29129418892526,79.69121919475504,63.29829466637945,65.06994932822366,77.04323871918844,79.44964992678582,63.20477953057722,64.98217960348268,0.2480554697368262,241.5692679692114,0.0935151358022281,87.76972474097988,162.89306,114.05161242761692,170334.9959741088,119262.17693803988,350.77217,227.52457932796813,366000.3659901078,237124.38451333236,362.30399,175.5133665882844,374723.47878825903,180270.65961901413,3132.52387,1441.906726066975,3229636.728675848,1462029.134717981,1158.31308,517.3520181090985,1191661.856510964,521509.21322314127,1864.83762,798.5067091934507,1898984.325166525,792404.543150477,0.3793,100000,0,740423,7742.499817004946,0,0.0,0,0.0,29972,312.5973795108281,0,0.0,33201,343.0791270613085,1591925,0,57160,0,0,6466,0,0,59,0.606497892942665,0,0.0,1,0.0104568602231493,0,0.0,0.06147,0.1620616925916161,0.3090938669269562,0.019,0.3410888785481619,0.658911121451838,24.429256196618315,4.373841190294498,0.3277766201291935,0.2306730568868514,0.2171285684517608,0.2244217545321942,11.344385792427548,5.918072841091258,20.52356064944304,12288.542113580455,54.62647386262997,13.223308638719,17.857808101542652,11.54995060047547,11.99540652189286,0.5672015003125651,0.8021680216802168,0.7094723458359822,0.5806142034548945,0.1049210770659238,0.7225609756097561,0.9328165374677002,0.8820754716981132,0.708,0.1434262948207171,0.5087467737310009,0.7319444444444444,0.6457789382071366,0.5404040404040404,0.0932203389830508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323379556942,0.004674034269492,0.0068917917643595,0.0090133116553195,0.0114661864501622,0.0135967815857819,0.0157228215429165,0.0180121306185798,0.020172174055292,0.0223414494296889,0.0243254607172524,0.0262725442668748,0.0284864820377762,0.0307283294175837,0.032726296663363,0.0346186466974204,0.0365737382112136,0.0386472426718722,0.0405702096665105,0.0426410333934547,0.0568618844578212,0.071406873579352,0.0845058591289008,0.0967738540076838,0.1091889723887528,0.1244800101616334,0.1358303871919822,0.1478731450607749,0.1593071741687159,0.1695171836248268,0.1831032995471209,0.1957701179298918,0.2078026691050007,0.218850942218621,0.2287282708142726,0.2381607410283432,0.2472678511565538,0.2567136953755728,0.264733937453158,0.2720073348232193,0.2798193817297673,0.2866871833276776,0.2930530056262955,0.2994745429243245,0.3054744525547445,0.3106666666666666,0.3148466196141358,0.3205043216644144,0.324064462552551,0.3285995481987397,0.3278779136389986,0.3264861585971104,0.3259592850890815,0.3245854153088565,0.3234531859751556,0.3217002443409709,0.321054469273743,0.3214226878850779,0.3219246201858774,0.3228280149785892,0.3236372525054998,0.3243371963803778,0.3261057014868872,0.3268609865470852,0.3290179753110186,0.332585910204933,0.3331817665113106,0.3369967970859762,0.340317080887264,0.342154482868399,0.3432570438588492,0.3442188411175316,0.3482791285127881,0.3519809947122385,0.3521553765987683,0.3548890221955609,0.3583734285270836,0.3639371381306865,0.3647746243739566,0.3687428353076041,0.0,2.741555870692085,57.02599495717681,177.18824434078073,263.72819291649074,fqhc5_80Compliance_baseline_low_initial_treat_cost,11 -100000,95638,44283,419.4044208369058,6266,64.34680775423995,4938,51.098935569543485,1913,19.69928271189276,77.27514686010801,79.6867646566083,63.27600815666828,65.05662705724707,77.0302340471491,79.44171164751678,63.18470209949403,64.96778447213063,0.2449128129589155,245.05300909152083,0.0913060571742505,88.8425851164385,161.9101,113.4374759627886,169294.73640184864,118611.3009084136,353.13855,227.6774475197153,368719.6825529601,237536.3637045059,365.68137,176.78639274904748,379210.3766285368,182375.16835569852,3233.36309,1484.6771756264118,3347086.900604362,1518644.3209042572,1204.15731,532.9835674113125,1244099.5943035197,542315.7113328831,1886.04756,799.301292269421,1943253.7485100063,809062.6054019572,0.37904,100000,0,735955,7695.215290993119,0,0.0,0,0.0,30014,313.26460193646875,0,0.0,33476,346.8495786193772,1595749,0,57281,0,0,6166,0,0,71,0.7423827348961709,0,0.0,0,0.0,0,0.0,0.06266,0.1653123680878007,0.3052984360038302,0.01913,0.3349529304585484,0.6650470695414515,24.63500264276704,4.344632648889093,0.3165249088699878,0.2403807209396516,0.2134467395706764,0.229647630619684,11.249083706023336,5.812138116434995,20.47463358003046,12270.163979719047,56.11649967094665,14.188375611394951,17.640394995841465,11.722006347165204,12.565722716545029,0.5664236533009316,0.7885425442291492,0.7031349968010236,0.5806451612903226,0.1322751322751322,0.7294028722600151,0.903529411764706,0.8888888888888888,0.7238493723849372,0.135593220338983,0.5067773167358229,0.7244094488188977,0.6342105263157894,0.5386503067484663,0.131403118040089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0046319288892492,0.0069910202425041,0.0093651599796851,0.0115440555742023,0.0137791266090923,0.015968511644981,0.0184173719512817,0.0202938259740525,0.0223009501965924,0.0243094376006482,0.0262887551108462,0.0284685426205051,0.0305416688141009,0.0325798490277677,0.0346250931060167,0.0363920934523254,0.0385506132580045,0.0405740093240093,0.0426426113254771,0.0575889964255105,0.0716740715902422,0.0846473029045643,0.0972662628390834,0.1096862786521601,0.1249602846794179,0.1380860288179538,0.1498257096867038,0.1600346761419581,0.1709605649243865,0.1839695975125237,0.1962345183610611,0.2074017550553224,0.2180049569012787,0.2276263947290004,0.238646967340591,0.248016117298114,0.2571886426217668,0.2646693909143683,0.2717467464592977,0.2783172647430766,0.2852384024397396,0.2920424340231631,0.2987891310092977,0.3042065684282255,0.3096284409332181,0.3154732789003022,0.3200142704245451,0.3233972944200659,0.3272477112769222,0.3264622902576978,0.3256362507759155,0.3245356517811776,0.3234238406761998,0.3231055253959991,0.320976866117831,0.3185654342490697,0.3193942579331187,0.3205416837221995,0.3206319205463331,0.3221228652306769,0.3225659870396712,0.3231546296684411,0.3260606874328678,0.3262694537319895,0.3281290726163791,0.3300099700897308,0.3329240649792218,0.3358075069476202,0.3388994910941476,0.3392824622108905,0.3429270628291748,0.345046517475484,0.3505076526746477,0.3555054490792935,0.3558494162497022,0.3575487636307787,0.3522357723577236,0.3601987303339773,0.3666538016209957,0.0,2.080488274358176,58.30641935797159,186.7671124758708,268.9820256464798,fqhc5_80Compliance_baseline_low_initial_treat_cost,12 -100000,95694,44448,420.2562334106631,6171,63.441804083850606,4856,50.253934415950845,1851,19.03985620833072,77.28391542799022,79.67966099644156,63.28504443165552,65.05876910826885,77.0578257102815,79.45447559392373,63.20174119350944,64.97820374382432,0.2260897177087173,225.1854025178233,0.0833032381460867,80.56536444452433,161.46504,113.16472340311032,168730.57871966896,118256.86396546316,353.95921,227.9737445987556,369408.29101093067,237753.7824719999,365.09617,175.8127614154999,378265.1576901373,181312.6509765856,3185.25841,1448.4347643252463,3298386.429661212,1483409.8943771254,1151.85309,505.4549955339639,1191278.9516584112,515794.4965556503,1816.85184,755.8748258721528,1870087.069199741,764383.4286616171,0.38041,100000,0,733932,7669.571759984952,0,0.0,0,0.0,30150,314.565176500094,0,0.0,33414,345.946454323155,1599811,0,57452,0,0,6476,0,0,62,0.6478985098334273,0,0.0,0,0.0,0,0.0,0.06171,0.1622197103125575,0.2999513855128828,0.01851,0.333179012345679,0.666820987654321,24.676262044311397,4.3347311947109,0.3292833607907743,0.2322899505766062,0.2189044481054365,0.2195222405271828,11.109876242010095,5.736371614084391,19.61778632535288,12292.049814576896,55.16562861058872,13.661670796329076,18.03295119463833,11.811088248364566,11.659918371256746,0.5599258649093904,0.7712765957446809,0.7085678549093183,0.5559736594543744,0.1172607879924953,0.7326035965598123,0.9028436018957346,0.8540145985401459,0.7424892703862661,0.1502347417840375,0.4981828347777467,0.6926345609065155,0.6582491582491582,0.5036144578313253,0.1090269636576787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0044121226874391,0.0066093383554829,0.0089125110517169,0.0109886755593541,0.0132018580392796,0.0153704931409046,0.0174143073089022,0.0195857836870365,0.0217275502468806,0.0239756242690358,0.0261600427438247,0.0282153918975931,0.0304638628095596,0.0325980366856942,0.0346022192576965,0.036783371843624,0.0392156862745098,0.0414616640835474,0.043314226159458,0.057703356279575,0.0712333930085743,0.0844606294667688,0.0966706652355998,0.1088009625228229,0.1237364382111669,0.1356184165817193,0.1474152804106583,0.1587194698305809,0.170045613093641,0.1822845933303153,0.1947116426188309,0.2066329863681895,0.2166400210245067,0.2267036939081372,0.2372110059158462,0.2472947594348059,0.256350154387072,0.2651333507573777,0.273283020599165,0.281476415149021,0.2878111115018933,0.2954238132517258,0.3011488457521518,0.3064331613280109,0.3119169833670598,0.3172815533980582,0.3213562946275153,0.3265076157911097,0.330189799121569,0.3297739116383663,0.3296930017605634,0.3283180858550317,0.3267904049880206,0.3258264954215721,0.323385601079076,0.3219179167128669,0.3233943449452207,0.324367277885059,0.323746918652424,0.3248493721493327,0.3252534068593418,0.3253854579155784,0.3255081849253463,0.3244454131550905,0.3247617052477218,0.3271025370280528,0.329821130004101,0.332841898343162,0.3328057610889091,0.335832765280618,0.3366305210261835,0.3388996199140133,0.3431028037383177,0.344955146582817,0.351576233446619,0.346545178435839,0.3459677419354838,0.3492239467849224,0.3436662839647914,0.0,1.9396239913265605,56.50684531935304,187.0298326862188,263.72062376273993,fqhc5_80Compliance_baseline_low_initial_treat_cost,13 -100000,95649,44557,421.3321623853882,6120,62.56207592342837,4870,50.22530293050633,1928,19.73883678867526,77.35161970545354,79.75662643507152,63.31721993396855,65.09396757371502,77.10959212115044,79.51742775697682,63.22803278521456,65.00831374269528,0.2420275843031021,239.1986780947093,0.089187148753993,85.65383101974078,162.74214,113.95148198736194,170145.1557256218,119135.04792246856,352.93095,228.6090645645028,368331.0855314744,238355.7183120318,365.20604,177.08041492488076,377405.0434400778,181749.69171106623,3193.54598,1454.6701487074488,3297839.705590231,1480059.804788689,1180.88178,525.480857040338,1213694.8844211649,528822.1136426264,1893.09762,789.3534853370204,1940588.5268011163,793974.7974391602,0.37995,100000,0,739737,7733.870714800991,0,0.0,0,0.0,30064,313.6154063293918,0,0.0,33411,344.9487187529404,1594866,0,57174,0,0,6480,0,0,67,0.6900228962142835,0,0.0,1,0.010454892366883,0,0.0,0.0612,0.1610738255033557,0.3150326797385621,0.01928,0.327930174563591,0.672069825436409,24.269508207437248,4.383356480544959,0.317864476386037,0.233264887063655,0.2254620123203285,0.2234086242299794,11.192131742373014,5.745553274193755,20.5118390207617,12342.785033187934,55.25699712666936,13.7068910032916,17.54118066011269,12.089278678974052,11.919646784291029,0.5560574948665298,0.7596830985915493,0.6931524547803618,0.5837887067395264,0.1204044117647058,0.7226053639846743,0.9064748201438848,0.8661800486618005,0.6887966804979253,0.1822033898305084,0.4950911640953717,0.674547983310153,0.6306068601583114,0.5542590431738623,0.1032863849765258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020263219217637,0.0045124980986665,0.0064850711429557,0.0087072258798667,0.0110468014118748,0.0136280301487064,0.015918013562433,0.0184926121452859,0.020961145194274,0.0232408071289562,0.0252785358146787,0.0274780607106891,0.0295552308230596,0.0314333137455025,0.0331976780217737,0.035290466090735,0.0373337755620277,0.0392413342053629,0.0413454435739775,0.043605196755156,0.058431380744394,0.072652838999466,0.0851535030175806,0.0987584175084175,0.1106831157592578,0.1258771604872937,0.137999129410016,0.1496829203304023,0.1614690873300311,0.1714614005132996,0.183874828816977,0.1960546413753507,0.2077527649568928,0.2179724359886591,0.2278924300156377,0.2386173408866667,0.2482766325903581,0.2573680063041765,0.2656056667385604,0.2732082732082732,0.2805631391421035,0.2872405086964653,0.2937196924896511,0.2995329341317365,0.3043256626856976,0.3095141376466388,0.3153713557670689,0.3210621222126276,0.3255222126054437,0.3303764148460121,0.3297351794596048,0.3288154678531213,0.3285039104259269,0.3277971775706328,0.326097930338213,0.3241142997001774,0.3219819136153797,0.3217970377417291,0.3233164868187406,0.3238491333916427,0.3250918497413211,0.3252714708785785,0.3261812467260345,0.3274326405786101,0.3278181425796705,0.3294108478802992,0.3314579603898502,0.3359997490432273,0.3387023355159494,0.3403446226975639,0.340361719531037,0.3426481423008104,0.3462908568214486,0.3520956271750643,0.3538475905864774,0.3569472556256697,0.3596248462484624,0.3633238980994743,0.371909807117631,0.3688370342491532,0.0,2.6929583064025606,56.79895996527869,183.00384559909057,265.7924351625031,fqhc5_80Compliance_baseline_low_initial_treat_cost,14 -100000,95787,44548,422.2598056103647,6082,62.28402601605645,4783,49.31775710691429,1890,19.2719262530406,77.3507064425629,79.67763879338791,63.34838135415546,65.06946706608007,77.1119969052321,79.4440552118985,63.25869264504265,64.98477718906162,0.2387095373307914,233.5835814894125,0.0896887091128064,84.6898770184481,163.91672,114.73740302736783,171126.26974432857,119783.89867870156,357.23417,231.09182963076168,372320.6280601752,240630.9940775153,359.11546,173.68045052675276,371445.384029148,178699.6750653019,3139.179,1441.0765721709504,3238310.7937402776,1465609.3564849717,1117.77029,502.5879821586926,1150691.492582501,508647.3350195105,1856.0401,787.5349902116038,1895580.2561934288,786282.6544310536,0.38094,100000,0,745076,7778.466806560388,0,0.0,0,0.0,30451,317.24555524236064,0,0.0,32927,340.2549406495662,1591057,0,57096,0,0,6403,0,0,63,0.6577092924927181,0,0.0,0,0.0,0,0.0,0.06082,0.1596576888748884,0.3107530417625781,0.0189,0.3383092394720302,0.6616907605279698,24.5853574875,4.363425308750089,0.3140288521848212,0.2402257997072966,0.2209910098264687,0.2247543382814133,10.949673190033309,5.53439414696577,20.198171974423456,12251.254686283708,54.06155727520006,13.491020681956003,17.001839085949623,11.743026165363384,11.825671341931058,0.5429646665272841,0.7545691906005222,0.6691078561917443,0.5742667928098392,0.1097674418604651,0.7167051578137028,0.9097387173396676,0.8247422680412371,0.735632183908046,0.1572052401746725,0.4781859931113662,0.6648351648351648,0.6149012567324955,0.5213567839195979,0.0969267139479905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385640776305,0.0044302514193025,0.0066973119425248,0.0090910937753941,0.0114080039043435,0.0136927728628584,0.0159288247523541,0.018154728495474,0.0203255771176308,0.0222984036021285,0.0243255151496521,0.0265655622479657,0.0285288525769487,0.0305943875975376,0.0323378980366276,0.0343812308232693,0.0361644005711802,0.0380982987943313,0.04000332322519,0.0419759512779136,0.057044773939084,0.071215717437447,0.0838941652514833,0.0969165773377892,0.1091050895332047,0.1248731501057082,0.1376713999384922,0.1491805023414218,0.159405126672147,0.1699286158331368,0.1823769388919387,0.194848291591452,0.2065113448665565,0.2170939050241482,0.2270103251487195,0.2370077781834677,0.2473836140120147,0.256859396418058,0.2649052412042075,0.2725878623499387,0.2802499942237934,0.2867989767191935,0.2933724465052459,0.2994011976047904,0.305162496055921,0.3100029558106311,0.3142832137230877,0.3189389893441163,0.3232191169046355,0.3267385458955027,0.3266187050359712,0.3261826182618262,0.3250179494037982,0.3239689008352842,0.3233988209263301,0.321796658448062,0.3204403262849449,0.3201407501192101,0.3211964701053496,0.3217413059794846,0.3214788930845967,0.3221453904222227,0.3222970130416491,0.3240532517765584,0.3254888722783498,0.3270211597311223,0.3288554078826764,0.3313491435265807,0.3323099724751217,0.3353612469680703,0.3374233128834356,0.3395051789835238,0.3407949125596184,0.3425754775107825,0.3394191656418503,0.3431162013839179,0.3445507872800247,0.3513179571663921,0.3514726507713885,0.3572263342423062,0.0,2.2664729714303973,56.77735008091579,171.63969631118405,266.855746445622,fqhc5_80Compliance_baseline_low_initial_treat_cost,15 -100000,95737,44646,422.3027669553047,6116,62.77614715313829,4810,49.667317755935535,1917,19.647576172221815,77.31652017658898,79.67620186006423,63.31665033110207,65.06198126233325,77.0787257251508,79.43947988434914,63.22880386960877,64.977249474405,0.2377944514381766,236.7219757150849,0.0878464614932994,84.73178792824854,162.41324,113.8179635737332,169645.2155384021,118886.07703785706,353.22578,228.36932689342123,368348.0159186104,237931.92484976683,362.88837,175.42373470894643,374991.4139778769,180282.76013628775,3167.55252,1446.823521553888,3273053.5007363926,1475703.47050136,1145.10437,503.0082719666527,1180864.0755402823,510186.6112292416,1885.63024,788.1961096261531,1934437.928909408,793270.7405136907,0.38242,100000,0,738242,7711.146160836459,0,0.0,0,0.0,30054,313.30624523433994,0,0.0,33302,343.90047734940515,1596403,0,57275,0,0,6398,0,0,68,0.6998339200100275,0,0.0,1,0.0104452823882093,0,0.0,0.06116,0.1599288740128654,0.3134401569653368,0.01917,0.3432835820895522,0.6567164179104478,24.601255567567897,4.3419431285489845,0.3182952182952183,0.2363825363825364,0.2122661122661122,0.233056133056133,11.342503202666895,5.870160232824359,20.494581711143816,12346.56987832616,54.8978212731969,13.790671741561638,17.377729420241764,11.470878340719173,12.258541770674332,0.5573804573804574,0.7968337730870713,0.7034617896799478,0.5690499510284035,0.1043710972346119,0.7303284950343774,0.9195402298850576,0.8774509803921569,0.7319148936170212,0.1125541125541125,0.4927163667523564,0.7207977207977208,0.6402493321460374,0.5203562340966921,0.1022471910112359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0045822730913109,0.0068612027404212,0.009144761575744,0.0114237467447916,0.0139123703990385,0.0158485716908202,0.0179937297672661,0.0202656414556088,0.0226670079344765,0.0247723730620949,0.0269534859841872,0.0292139684106614,0.0312522525305571,0.0330489855281751,0.0349947306428615,0.0369346707659182,0.0391485653824609,0.0409247305121568,0.0429963015054435,0.0578623706658035,0.0715877816263957,0.0849265361341541,0.097570977917981,0.1096091188038423,0.1252432729734303,0.1383074654416991,0.1501383862039599,0.1609081196581196,0.1713816742299893,0.1844435348356241,0.1972492452197249,0.2089730764212083,0.2196604462518994,0.2293198327096632,0.2398302361401992,0.2496008752832948,0.2588084417045403,0.2671902130122451,0.2751474884013976,0.2829837207418806,0.2905414098410507,0.2968385668801117,0.3024103609545509,0.307331421070543,0.3125940730870777,0.3171901613064823,0.3215377171089492,0.3257738634891853,0.3299090224868947,0.3284291931072579,0.3280860155765387,0.3269113970536307,0.3261269615869474,0.3249050703596158,0.3229296137734199,0.3213934764002916,0.3220528689469006,0.3218741431313408,0.32274250488325,0.3242644019390477,0.3250960358005623,0.3258549701705739,0.3262180766384897,0.3272867432728674,0.3267731929202617,0.3264263492878956,0.3285548115313276,0.3306434636165883,0.3328573695065842,0.3332878270762229,0.3365645805592543,0.3339846212025715,0.3379310344827586,0.3378061368114854,0.3407707910750507,0.3368146214099217,0.3321175278622087,0.330939226519337,0.3389830508474576,0.0,2.2316351194335646,57.46883181153248,184.0832171550076,258.353231118375,fqhc5_80Compliance_baseline_low_initial_treat_cost,16 -100000,95688,44587,422.3309087868908,6164,63.37262770671349,4798,49.66139954853273,1895,19.45907532814982,77.40264542862671,79.78377133523568,63.35728834693722,65.11228980756654,77.1704949597222,79.55230047634038,63.271637504363376,65.02930905919473,0.232150468904507,231.47085889530672,0.0856508425738411,82.98074837180991,163.26508,114.31969275776548,170622.31418777694,119471.2949980828,355.62986,229.17878293073903,371197.3079173982,239047.9505588361,363.32057,175.36298991505052,377098.40314354986,181173.08794854864,3136.20166,1419.085065219065,3247547.01738985,1453051.7883319375,1115.06027,492.1574380291261,1152273.0854443607,501300.3072789961,1858.65244,770.8505187516521,1910447.976757796,778267.6146536418,0.38106,100000,0,742114,7755.559735808042,0,0.0,0,0.0,30304,316.2047487668255,0,0.0,33265,345.0484909288521,1596618,0,57252,0,0,6538,0,0,53,0.5434328233425298,0,0.0,2,0.0209012624362511,0,0.0,0.06164,0.1617593029969034,0.3074302401038287,0.01895,0.3364297878928626,0.6635702121071373,24.67991157509888,4.408926086640747,0.3140892038349312,0.2355147978324301,0.2244685285535639,0.2259274697790746,11.027856374379304,5.607208649989472,19.990552183980345,12315.010952233404,53.93707236517248,13.383022957055466,17.03433200042721,11.848817863317718,11.670899544372078,0.5612755314714465,0.7946902654867256,0.6980756469807564,0.5803156917363046,0.1088560885608856,0.750814332247557,0.918158567774936,0.8762135922330098,0.74235807860262,0.1632653061224489,0.496078431372549,0.7293640054127198,0.6310502283105023,0.5365566037735849,0.0968468468468468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468137031523,0.0044999847973486,0.0064820450395617,0.009049084427653,0.0112872555699047,0.0133902205567887,0.015588202310194,0.0176666904808075,0.0196208676102396,0.0217980862712991,0.0239962278462847,0.0261069532990442,0.0283058637246938,0.0303098962892777,0.0323462649607924,0.0342835290226558,0.0362826818534817,0.0386443351389494,0.0407271819618936,0.0426902352340354,0.0571539007981279,0.0711503424012062,0.0845698574936512,0.097732101908148,0.1102591416788837,0.1259071962082901,0.1385369580441841,0.1499632756032913,0.1615481609711269,0.1723287436194397,0.1843037593013363,0.1971366115487836,0.2089128614461106,0.2198970052809394,0.2294948517116958,0.239499147532272,0.2492670256290202,0.2586106180772428,0.2675925506366396,0.2753424344286662,0.2819470743084099,0.2883648202387481,0.2947434292866082,0.3002559441228531,0.3054104183588115,0.310789366858155,0.3155191803073847,0.3201574003554202,0.3242716189689017,0.3277284389184922,0.3271753285984721,0.3263733702581538,0.3255317954762305,0.3241445824756366,0.3230817069920336,0.3215600042756578,0.319047393290033,0.3196327567833429,0.3204167801688913,0.3208279200555269,0.3221869158878505,0.3227923979481535,0.3238142848215959,0.3244145668239693,0.3262683418049295,0.3272221355385655,0.3273880639472037,0.3325504931892907,0.3364761137008867,0.3391831398803628,0.3452440636251766,0.3489264212264905,0.3515797439616573,0.3554574516669204,0.3583482605826341,0.3608854350641705,0.3625248357022772,0.3647508038585209,0.3681064928008693,0.3683620044876589,0.0,1.9078481517589687,53.90141389146034,179.3730014345006,268.72704496199685,fqhc5_80Compliance_baseline_low_initial_treat_cost,17 -100000,95733,44656,421.83990891333184,6095,62.46539855640166,4767,49.27245568403789,1920,19.679734260913165,77.33907921770925,79.70478045381647,63.32552877917672,65.07504728533121,77.09861128092896,79.4666188300432,63.23502059535065,64.9877856121166,0.2404679367802913,238.16162377326577,0.090508183826067,87.26167321461276,162.51796,113.84628198645598,169761.69137079167,118920.6250576666,352.75748,227.8036414956356,367941.8695747548,237418.60329837733,361.3943,174.86070848554075,374594.6956639821,180358.9472318321,3153.98231,1447.5622257473158,3261792.2346526277,1479313.7953968998,1147.88383,512.2581499003271,1185992.5208653233,522041.8726274956,1881.92398,801.2566165774044,1931140.5889296276,806231.0583972037,0.3818,100000,0,738718,7716.440516854167,0,0.0,0,0.0,30069,313.50735900891016,0,0.0,33032,342.1704114568644,1597694,0,57315,0,0,6366,0,0,61,0.6267431293284447,0,0.0,1,0.0104457188221407,0,0.0,0.06095,0.1596385542168674,0.3150123051681706,0.0192,0.3361002349256068,0.6638997650743931,24.382738397611067,4.469131447894072,0.3188588210614642,0.2280260121669813,0.2263478078456052,0.2267673589259492,11.41658452645876,5.891029270166715,20.588204150963534,12355.681313554627,54.1049489096749,13.026724920162836,17.106252205246907,12.06058430176158,11.911387482503596,0.564715754143067,0.8058877644894205,0.6967105263157894,0.5848007414272475,0.1165587419056429,0.7093292212798766,0.9175257731958762,0.8762886597938144,0.7094339622641509,0.140625,0.5106628242074928,0.7439198855507868,0.6351590106007067,0.5442260442260443,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047045463762825,0.0070643403063244,0.009673223866038,0.0117697323581172,0.014085080813533,0.0164176821495946,0.0186627734841601,0.02093089838238,0.0230955160900469,0.0251879352251633,0.0272793566344504,0.0296504273240566,0.0318246911799552,0.034052436003303,0.0361515552614162,0.038070671597725,0.0398920713989207,0.0418958686451693,0.0438179772471558,0.0577910958904109,0.0717529138504676,0.0846457105710151,0.0975961134011945,0.1098011094003754,0.1262270457815012,0.138754204110214,0.1503087734241908,0.1616847100063053,0.172233966070413,0.1853823605483231,0.1974617475391729,0.2090219673807788,0.2192773193845615,0.2288803735024665,0.2393032564224811,0.2494024883289776,0.259413943330594,0.2677884124118669,0.274803122528285,0.281809340773844,0.2892963283644958,0.2961815084697644,0.3017080298965121,0.3066718452258135,0.3113870463579419,0.31533895657607,0.3200497973805561,0.3250562291564334,0.3286883841113733,0.3272561041196085,0.3264702646201243,0.3253227716073744,0.3251540843195694,0.3241141395666979,0.3220276667126246,0.3194193813910786,0.3205736910414168,0.3215410419661806,0.3221148684916801,0.3225933497121209,0.3240866970936321,0.3259609549915256,0.3257874015748031,0.327246550689862,0.3283322065630037,0.3303418803418803,0.3325891453367712,0.3348786569732729,0.3372439848876516,0.3397898583828232,0.3419957310565635,0.3443972889085956,0.3494298614831254,0.3496437945256843,0.3497805716996797,0.3547140649149923,0.3544510083520065,0.3513738551207327,0.346641074856046,0.0,1.990319657299056,57.22257768460074,175.89611273985986,260.81080876859625,fqhc5_80Compliance_baseline_low_initial_treat_cost,18 -100000,95684,44344,419.40136281928017,6044,61.96438275991807,4779,49.329041428033946,1895,19.38673132394131,77.30793472821749,79.68295687090352,63.31631099018998,65.06973767133405,77.07015098106399,79.44801170535573,63.22856981779736,64.98559149971453,0.2377837471535002,234.9451655477992,0.0877411723926187,84.14617161952265,163.6305,114.72042021393808,171011.3498599557,119895.09240200876,354.5011,228.85541290169232,369858.15810375824,238544.99488074533,362.52243,175.79235589745997,374661.3749425191,180456.3677152929,3153.80357,1440.5148954148392,3259990.9807282304,1469635.6073613176,1145.61711,507.4243127351658,1182205.948747962,515306.9252269226,1860.53334,777.3809571301111,1906981.9405543243,782304.251614374,0.37948,100000,0,743775,7773.243175452531,0,0.0,0,0.0,30279,315.81037582040886,0,0.0,33215,342.99360394632333,1590122,0,57062,0,0,6519,0,0,55,0.5643576773546256,0,0.0,0,0.0,0,0.0,0.06044,0.1592705807947718,0.3135340833884844,0.01895,0.3365506329113924,0.6634493670886076,24.31111356074219,4.395680251704038,0.3180581711655158,0.2293366813140824,0.2261979493617911,0.2264071981586106,11.197843781559689,5.715702078295779,20.25448917734924,12294.456125166676,54.30898068017303,13.213497561448346,17.1712698867049,12.129959106253862,11.794254125765926,0.5591127851014857,0.7928832116788321,0.6815789473684211,0.5864939870490287,0.1229205175600739,0.7476635514018691,0.9435294117647058,0.8511749347258486,0.7596899224806202,0.1697247706422018,0.4898426323319027,0.6974664679582713,0.6244503078276166,0.5321992709599028,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002338861551546,0.0042864091443395,0.0066139847229125,0.008663768586983,0.0108819461394516,0.0135025049896134,0.0157946793649498,0.0181419091373149,0.0201598887730274,0.0226325864204481,0.0242344715880549,0.0265200517464424,0.028724224816167,0.0308134503646927,0.0330216911233566,0.0350363907038292,0.0369184540462128,0.0390577144696269,0.04114220326641,0.0431374184267039,0.0576517288206413,0.0720984759671746,0.085255946198315,0.0977638941478396,0.1100240374478134,0.1256318605782449,0.138393804370889,0.1493884589591561,0.1607337450054486,0.1708913036482413,0.184007323245921,0.1959778881208148,0.2074562929459859,0.218650923800153,0.2289847101528984,0.2389707918434256,0.2487670988329279,0.2573627016446554,0.2655948626018289,0.2728168126896867,0.2796364899282241,0.2867820797754123,0.2935126114076722,0.299181999184398,0.3041807524868059,0.3090664594051099,0.3138510507650471,0.3181632809114776,0.3231310169447544,0.3281425568760162,0.3277317724489521,0.3262947382939107,0.3253840506043149,0.3245722068475882,0.3237814236964847,0.3219662671311714,0.3204096213384139,0.3213355746728633,0.3217201866337313,0.3229399860307681,0.3240779035229537,0.3242991210491855,0.325716685918303,0.3253683880503426,0.3275957667365782,0.3289866457187745,0.3295983993139917,0.3313028657997727,0.335855193381885,0.3369405211855977,0.33936257899075,0.3394949925420839,0.3447381735390842,0.3493543210819897,0.3532183583074168,0.3568208778173191,0.3585735963581183,0.3569991954947707,0.3569688768606224,0.3570086433671552,0.0,2.3996741600785083,55.95277655155468,180.3807557121929,261.11434643535426,fqhc5_80Compliance_baseline_low_initial_treat_cost,19 -100000,95720,44742,423.6523192645215,6259,64.32302549101546,4892,50.66861679899708,1929,19.83911408274133,77.38171245272493,79.7545241055801,63.34258245905804,65.0945296509728,77.13953754549651,79.5120668806504,63.25251995159006,65.00632186913336,0.2421749072284171,242.45722492970856,0.0900625074679837,88.20778183944356,162.45768,113.78306180383149,169720.8524864187,118869.88974644095,353.80981,228.9560873814429,369179.7743418304,238745.8943042103,369.37157,178.485184242112,383427.5908900961,184551.95187429927,3197.37573,1469.0985037931334,3311472.503134141,1506875.2339049275,1169.76478,517.3474048625777,1210894.128708734,529407.7244817347,1891.5757,799.2691417032715,1947101.0656080237,810513.5324176807,0.38221,100000,0,738444,7714.584203928124,0,0.0,0,0.0,30091,313.89469285415794,0,0.0,33907,351.744671959883,1596761,0,57290,0,0,6392,0,0,52,0.5432511491851233,0,0.0,1,0.0104471374843292,0,0.0,0.06259,0.163758143429005,0.3081961974756351,0.01929,0.3248900348854846,0.6751099651145154,24.431494194864243,4.328235818569638,0.3231807031888798,0.2338511856091578,0.2224039247751431,0.2205641864268193,11.21913566177126,5.800901732655413,20.708902798574822,12355.087397126346,55.57242912235032,13.707696803513413,17.792726310278486,12.108880362641262,11.963125645917149,0.5686835650040883,0.7858391608391608,0.7020872865275142,0.5827205882352942,0.1288229842446709,0.7326807228915663,0.8992974238875878,0.8613861386138614,0.769811320754717,0.1594827586206896,0.5075757575757576,0.7182705718270572,0.6474086661002549,0.5224787363304981,0.1204250295159386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0043183407839917,0.0068190120550391,0.0091826991447087,0.0114225847793803,0.0136863543788187,0.0157328575070099,0.0178957899465065,0.0199952976293918,0.0219265022008393,0.024061183273018,0.0261290951838276,0.028526768268855,0.0305012464204042,0.0326102660419805,0.0344289244321295,0.036455528398028,0.0385489410714841,0.040736311164266,0.0429540552087783,0.0583032227072411,0.0727027196784121,0.0857613496868147,0.0980433410477593,0.1102848885654315,0.1258089759316441,0.13817066830764,0.1503199088712167,0.1609067697928573,0.17199987127364,0.1849461206896551,0.1971440634845023,0.2082318134354333,0.218522122249068,0.2279787046814502,0.2392755532430727,0.2488708472270238,0.2584008097165992,0.2667574004763525,0.2749046861225284,0.2825347615852671,0.2898474487112046,0.2956888084164684,0.3015315660802454,0.3060981535471331,0.3110440034512511,0.3160732604398629,0.3213317551830781,0.3254991842125709,0.3302690582959641,0.3299121615259412,0.3283680536470071,0.3272207836072957,0.3261405760936982,0.3250048163132233,0.3229427576516586,0.3214849921011058,0.3224227141734346,0.3224724648043171,0.3238912528709028,0.3258523630514878,0.3270854707600031,0.328599136582619,0.3301687058456464,0.3314005031747933,0.3316909991442574,0.3310556012362131,0.3341351410452657,0.3385205861828332,0.3395876125770264,0.3429128326005167,0.3463556851311953,0.3484034144799241,0.3541411980440098,0.3566519160154411,0.3594678070800665,0.357088356477949,0.3563334682314852,0.3637869169196798,0.3617839292579777,0.0,1.6435670027924252,58.92171436147134,184.311227873585,264.0092359008301,fqhc5_80Compliance_baseline_low_initial_treat_cost,20 -100000,95862,44464,420.63591412655694,6188,63.434937722976784,4818,49.71730195489349,1858,19.037783480419773,77.44506122741345,79.72241864909492,63.40474875222951,65.08397126174623,77.20923058070062,79.48732576417409,63.317598526531256,64.99980121506175,0.2358306467128272,235.0928849208316,0.0871502256982523,84.17004668447703,162.63522,113.93351611276414,169655.567378106,118851.59511877922,353.0145,227.64586098209892,367629.060524504,236848.73149120496,360.5797,173.97509388230577,372663.2972397822,178909.28734171684,3150.30629,1430.2571400351255,3251623.7925351025,1457326.6258111936,1131.18454,493.9851080213604,1166625.7536875927,501920.8320516585,1813.48424,759.5086302974195,1859657.987523732,764354.6047348039,0.38081,100000,0,739251,7711.61669900482,0,0.0,0,0.0,30014,312.54303060649687,0,0.0,33050,341.33441822620017,1602043,0,57550,0,0,6354,0,0,63,0.6363313930441676,0,0.0,0,0.0,0,0.0,0.06188,0.1624957327801265,0.3002585649644473,0.01858,0.3324035332403533,0.6675964667596467,24.604674768663973,4.353207201578786,0.307181403071814,0.2436695724366957,0.234744707347447,0.2144043171440431,11.219010485958396,5.791313650736833,19.733487652418376,12304.07026639967,54.570619272301016,14.137508584286351,16.66183588042641,12.45225047457316,11.3190243330151,0.5647571606475716,0.8066439522998297,0.6851351351351351,0.5694076038903625,0.1122942884801549,0.7123928293063133,0.9032258064516128,0.8594594594594595,0.708,0.1179039301310043,0.5111739745403112,0.75,0.6270270270270271,0.5300794551645857,0.1106965174129353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0047002096860786,0.0069355018606207,0.0092667776379359,0.0115227508281342,0.013612640017906,0.0158070561394931,0.0177633658621146,0.0200757691797118,0.0223006134969325,0.0244931394634446,0.0264909491820932,0.0285626251733169,0.0303952931011427,0.0323099113950133,0.0341246903385631,0.0360407876230661,0.0381231671554252,0.0402400282386163,0.0422350554081473,0.0573409801876955,0.0710114190791604,0.0846534808966882,0.0978634989926124,0.1101957937484876,0.1255369676500079,0.1374614838894124,0.1497115415263331,0.1604000938386402,0.1711845724131288,0.1838581407845244,0.1965510166618074,0.207729049066435,0.2187384004017555,0.2292915980230642,0.239238419754179,0.2489160359798031,0.2577582526235366,0.2661611181011324,0.2733961119946909,0.280646168433955,0.2876052385406922,0.2947043373322922,0.3008511606191565,0.30625,0.3107031605905022,0.3156649432266303,0.319921616531786,0.3248879562705629,0.3295565462843274,0.3284305149977796,0.3274935762672273,0.3263909383475976,0.3245060768388917,0.3238998830686342,0.321919165739202,0.3202735926369539,0.3213194569248615,0.3223469387755102,0.3233388365198558,0.322885182282921,0.3244329714071767,0.3249018297267942,0.3245115729911559,0.3260520706090872,0.3265337900965431,0.3273412912189175,0.3293388817621476,0.3323581652909831,0.3335838013129795,0.3372363205613012,0.3392211108746542,0.3437539392411446,0.3445468509984639,0.3479004370131104,0.3534978437949209,0.3519206939281288,0.3576779026217228,0.3659084526818309,0.3676528599605522,0.0,2.142358705675466,56.44851133090069,180.5800227765674,263.59407759884607,fqhc5_80Compliance_baseline_low_initial_treat_cost,21 -100000,95688,44386,420.7528634729538,6063,62.11855196053841,4708,48.63723768915642,1905,19.4904272218042,77.29747507811412,79.7014772801605,63.28577397120039,65.0661225156354,77.05780270296974,79.46486172621908,63.19602857322119,64.98055935277463,0.2396723751443801,236.61555394141945,0.0897453979792004,85.56316286076537,163.00856,114.18490641438449,170354.23459576958,119330.43476129136,355.26414,230.5497001218576,370677.2427054594,240359.26248949676,361.28314,174.6451141382189,375039.83780620346,180492.4273864708,3110.73274,1427.8780933311398,3213209.9427305413,1455792.6763109684,1143.02247,508.87468051404255,1180509.8026920825,519086.3093058458,1876.82332,793.5393628669663,1921625.9301061784,794081.5897477547,0.37931,100000,0,740948,7743.374299807708,0,0.0,0,0.0,30276,315.7867235181005,0,0.0,33060,342.94791405400883,1588855,0,57038,0,0,6429,0,0,64,0.6688403979600368,0,0.0,0,0.0,0,0.0,0.06063,0.1598428725844296,0.3142008906481939,0.01905,0.3306628966383914,0.6693371033616086,24.515880497117223,4.371085823946918,0.3198810535259133,0.2336448598130841,0.213678844519966,0.2327952421410365,11.12644462760872,5.64083975469959,20.293743451942937,12276.077620937916,53.50949496007821,13.215102911058532,16.968669175801054,11.290567092677186,12.03515578054144,0.5603228547153781,0.7972727272727272,0.6859229747675962,0.5984095427435387,0.114963503649635,0.7147385103011094,0.917098445595855,0.8596938775510204,0.7327935222672065,0.1265822784810126,0.5037724898432966,0.7324929971988795,0.6247755834829444,0.5546772068511199,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022295188292999,0.0043211003590773,0.0066906949591349,0.0088507265521796,0.011260986328125,0.0135773798610686,0.0157480314960629,0.017830518167521,0.0199024310420651,0.0220786269469846,0.0239914660539731,0.0259908364323724,0.0279726754593526,0.0299554841103004,0.0316871960600084,0.0341028982808912,0.0359130624047759,0.0380857448421227,0.0401265072148646,0.0421148074037018,0.0561707373127468,0.0701820503962396,0.0837627107972254,0.0970344733270916,0.1093459915611814,0.1249748717134846,0.138512330017728,0.1496953687529291,0.1608649619814559,0.1716865852741895,0.1840527189973899,0.1966893232300237,0.208355119825708,0.2187904021036485,0.2288230884557721,0.2386362375600501,0.2481556827327193,0.2574550780149834,0.265413721791696,0.2734744878658306,0.2796445206590504,0.2866547188155228,0.2928869301488011,0.2981247148654165,0.3039636854851468,0.3086162202197259,0.3134128148231725,0.3171655591975206,0.3221199413147064,0.3264461170121298,0.3260300232193963,0.3254475438572276,0.3249858677218767,0.3240501927145217,0.3240823368433577,0.3223068319365069,0.3211737720477735,0.3221867060077042,0.3228905810803904,0.3232429352374508,0.3243031310095032,0.3258232235701906,0.3273596925454811,0.3289142398787906,0.3291048176302726,0.3303348585690516,0.3308982376350199,0.3341173518988929,0.337826482739304,0.3382294718505028,0.3425037515347187,0.3467733389848468,0.3480010057832537,0.3511566173682214,0.353647102943934,0.3559962228517469,0.3557810578105781,0.3617193836171938,0.3640856672158155,0.3730371505170433,0.0,2.0710414799776204,55.53283861019269,181.9990634664028,250.8479213541367,fqhc5_80Compliance_baseline_low_initial_treat_cost,22 -100000,95828,44901,425.0219142630546,6175,63.1861251408774,4865,50.17322703176525,1900,19.40977584839504,77.32864418348662,79.64138306516499,63.32870225298407,65.03951431035458,77.08965573100747,79.40558348828863,63.238752200239496,64.95371810051675,0.2389884524791483,235.7995768763601,0.0899500527445695,85.79620983782377,163.086,114.34897937952864,170186.16688233084,119327.31495964502,356.29814,230.3754517940662,371188.88007680426,239784.3379880477,366.65885,177.54279835460127,379405.4973494177,182677.3015838255,3202.00194,1462.106015800268,3303698.3866928243,1488092.272762556,1176.6694,521.3701536357931,1213011.9693617732,529191.2113437977,1866.55558,789.5224239963295,1908610.2809199817,789226.504966541,0.38307,100000,0,741300,7735.734858287766,0,0.0,0,0.0,30260,315.1271027257169,0,0.0,33605,347.5080352297867,1589224,0,57104,0,0,6581,0,0,60,0.6261218015611303,0,0.0,0,0.0,0,0.0,0.06175,0.1611976923277729,0.3076923076923077,0.019,0.3300538047655649,0.6699461952344351,24.323510424106736,4.371492670137455,0.3249743062692703,0.2337101747173689,0.2178828365878725,0.2234326824254882,10.923690026310515,5.589940466951298,20.286787891876795,12408.702176609131,55.20870773693814,13.714265724621622,17.759624590154544,11.824488482078984,11.910328940082987,0.566289825282631,0.7854001759014951,0.691967109424415,0.5971698113207548,0.124195032198712,0.7148407148407149,0.9014778325123152,0.8556962025316456,0.7489539748953975,0.1497975708502024,0.5128563443264393,0.7209302325581395,0.6374367622259697,0.5529841656516443,0.1166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484428014381,0.0045513522280338,0.0069598741946938,0.0091215667154233,0.0113687207646939,0.0136021176949704,0.0159616756701661,0.0180534152489615,0.01989698939236,0.0221947076520066,0.0242320539355314,0.0261796761150222,0.0284877447202096,0.030698593753217,0.0327101358109989,0.0345661157024793,0.036571357610754,0.0384974286662242,0.0405712801869644,0.0425903953038156,0.0572215326525716,0.0714211032579147,0.0854243967884619,0.0983616893830326,0.1105641522958215,0.1265750528541226,0.1393925897647982,0.1515025752351764,0.1629980882808411,0.1731084688702812,0.1860522716748689,0.1980741141466053,0.2095018540468242,0.219960647135986,0.2295233484441705,0.2400926202900477,0.2499302026913842,0.2593718680675202,0.2683575071271992,0.2763612172097771,0.2826649042865259,0.2904905421411232,0.2963776461229772,0.3023068605070287,0.3078262139822513,0.312898049864231,0.317487585895571,0.3218489002231431,0.3257054593598297,0.3311684016984351,0.3310539235521027,0.3300002758392409,0.329339286723563,0.328808643318106,0.3286054827175209,0.3270314683703715,0.3250881148191661,0.3250666052692169,0.3261003280481137,0.3266496601673296,0.3274585169213462,0.3278487521259344,0.3286004481581537,0.3290644137499441,0.3294293066544816,0.3316617040171342,0.3318427798348049,0.3344841655943002,0.3360601293480161,0.3407079646017699,0.3431853264323981,0.3461823966065747,0.3535626690145274,0.3537124561670986,0.3579828770345282,0.358720305598663,0.3610856968587984,0.3647938561034761,0.3726132024004364,0.3767334360554699,0.0,2.2766318054108297,56.34333833910768,181.93354946308733,270.6373178745504,fqhc5_80Compliance_baseline_low_initial_treat_cost,23 -100000,95752,44152,417.6622942601721,6039,61.90993399615674,4742,48.99114378811931,1786,18.349486172612583,77.35098256499538,79.69987134834805,63.33757887846742,65.07118307123484,77.13282788830634,79.48038877452093,63.25714439007915,64.99222424779448,0.2181546766890392,219.482573827122,0.0804344883882706,78.95882344035954,163.30094,114.3027248185673,170545.72228256328,119373.7204638726,351.30384,227.42598512879263,366315.2101261593,236941.5627128338,356.93005,172.77177862426367,369359.2509817028,177775.8052452522,3085.0279,1399.477374765186,3192028.855794135,1431699.5412787043,1098.41856,483.70844775479975,1135749.9373381236,493769.4552880302,1752.38728,736.2207536930953,1803169.6048124323,746278.7272475917,0.37836,100000,0,742277,7752.078285571059,0,0.0,0,0.0,29931,312.0457013952711,0,0.0,32678,337.82061993483165,1595633,0,57234,0,0,6309,0,0,67,0.6892806416576155,0,0.0,0,0.0,0,0.0,0.06039,0.1596098953377735,0.2957443285312138,0.01786,0.3293594023207757,0.6706405976792242,24.608968498473345,4.377719578796372,0.3298186419232391,0.2374525516659637,0.2132011809363138,0.2195276254744833,11.025366352688817,5.538068943329306,19.157345924775537,12220.05657914159,53.59938623882904,13.475634718006452,17.602814225185234,11.067199962340982,11.45373733329638,0.5586250527203711,0.7770870337477798,0.6975703324808185,0.5608308605341247,0.111431316042267,0.7269076305220884,0.9154929577464788,0.8671875,0.6912442396313364,0.146788990825688,0.4987131827280526,0.6928571428571428,0.6423728813559322,0.5251889168765743,0.1020656136087484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021163914007675,0.0042570012466932,0.0065852891337655,0.0086942390509466,0.0111132576181228,0.0132442915169345,0.0155350098368008,0.0176969474296561,0.0198182728768691,0.0219017695401651,0.0238534555220698,0.0261239991788133,0.0284072215824971,0.030398517145505,0.0322790294627383,0.0343662146518935,0.0365722332670642,0.0385086335713099,0.0404437374588024,0.0424631989082082,0.0570489065191293,0.0710803799322147,0.0842743161492571,0.0973066167658375,0.1092816107099562,0.1245586960657886,0.1370837751855779,0.1482096302208034,0.1598590044862209,0.1702634288656255,0.1828531423339975,0.1950092521453073,0.2069145523159073,0.2168081568352879,0.226405749568012,0.2365580673758865,0.247004567127846,0.2556499240677203,0.2647769696006899,0.2720541036221917,0.2791620855274579,0.2859850922664669,0.2922836731797322,0.298573772258613,0.303425596718805,0.3084618129468076,0.3130202214612443,0.3166622193420501,0.3206106870229007,0.3253862493897853,0.3249080944237217,0.3245955806429407,0.3237657540812586,0.3233017434710265,0.3223130667459492,0.3203180049630832,0.3187354483108162,0.3193083952402866,0.3201053225503103,0.3206839925746109,0.3222846441947565,0.323399972370784,0.3247446416610851,0.3244311457472701,0.3247494365319138,0.3249609578344612,0.325248508946322,0.328116178407879,0.3325071563219995,0.3360714003633204,0.3385969688719484,0.3406058038551154,0.3432049190613628,0.3475729623468925,0.3487634157722818,0.3488509133765468,0.351634793337446,0.3597239139261063,0.3579529737206086,0.3515594917212168,0.0,2.0736833574621896,54.62003815592542,177.55317610411217,262.4621886412212,fqhc5_80Compliance_baseline_low_initial_treat_cost,24 -100000,95831,44649,421.9824482683056,6200,63.39284782586011,4848,49.88991036303492,1871,19.02307186609761,77.51248185563044,79.79930653395373,63.42745123530996,65.11138290039202,77.28313163182837,79.57480072663401,63.34230732392239,65.03129542766777,0.2293502238020721,224.5058073197157,0.0851439113875685,80.08747272424444,163.01384,114.1939486674718,170105.53996097296,119161.80428824888,355.4048,229.82218505010883,370126.30568396446,239080.3863573467,367.04657,177.73533192617654,378999.3008525425,182328.9230658282,3160.94582,1446.1855934435637,3254017.4056411805,1464658.8196341067,1183.27071,526.6072597624599,1217845.937118469,532618.582244965,1830.10764,764.1954552509121,1862982.3334829025,758215.251785282,0.38156,100000,0,740972,7732.069998226044,0,0.0,0,0.0,30253,314.9711471235821,0,0.0,33700,347.6223768926548,1600279,0,57327,0,0,6316,0,0,73,0.7513226408990827,0,0.0,0,0.0,0,0.0,0.062,0.1624908271307265,0.3017741935483871,0.01871,0.3414896891351185,0.6585103108648815,24.238291760928497,4.358253538582008,0.3226072607260726,0.2400990099009901,0.2192656765676567,0.2180280528052805,11.538004957243883,6.166941983053677,19.715439643229445,12311.542909656064,54.67830263523358,13.827985592829268,17.576307335117455,11.78335918181493,11.490650525471912,0.5699257425742574,0.7843642611683849,0.6975703324808185,0.5738476011288806,0.140964995269631,0.7568807339449541,0.9221967963386728,0.8762626262626263,0.7683397683397684,0.1898148148148148,0.5008474576271187,0.7015130674002751,0.636986301369863,0.5111940298507462,0.1284185493460166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025296986622953,0.0049726050981861,0.0073282721292532,0.009680267069842,0.0118450191999024,0.0139530153564527,0.0160758282258557,0.0182431881220427,0.0204425474559137,0.0225176398404744,0.0246377553632686,0.0266334389646083,0.028493043710569,0.0305771684986208,0.0328353900555675,0.034993854385077,0.0369416074255735,0.039076836943111,0.0410018283054932,0.0430916908725572,0.0572584766533515,0.0713561218407871,0.084460698529797,0.0968280642789622,0.1093842136298542,0.1248890954412945,0.1366194347001282,0.1486156005444028,0.1600738424764974,0.1700432603760654,0.182825991118375,0.1948998768712332,0.2065704762835336,0.2168790469638898,0.2267100190032624,0.237462816954363,0.2471339282730038,0.2568129226483341,0.2651422487994926,0.2732851820529816,0.2806523795243258,0.2872952633908809,0.2936536012452242,0.299031722721683,0.3048413053737158,0.3099713910342203,0.314309573367567,0.3198283174860413,0.3245218332731865,0.3287529201774418,0.3288895439198242,0.3279958394919801,0.3271968753062396,0.3260531991373113,0.3257450331125828,0.3239208989586351,0.3220215922722394,0.3230260789895618,0.3230583309220268,0.3241396490978326,0.3255879111642416,0.3263858792009771,0.3273209327571449,0.3281062324836514,0.3298115907464822,0.3309568092581111,0.3334934041411259,0.3368669754717567,0.3395532741398446,0.3437109375,0.3462450239298654,0.3484247861464636,0.3505295101257199,0.3551892094417385,0.3598044641210108,0.3618131231161604,0.3651315789473684,0.3694968553459119,0.373789020452099,0.3759314456035768,0.0,2.7236447772655623,56.76296282163026,175.5970420137323,267.97219670452444,fqhc5_80Compliance_baseline_low_initial_treat_cost,25 -100000,95730,44350,420.3280058497858,6177,63.05233469131933,4881,50.31860440823148,1948,19.87882586441032,77.31288813594676,79.67006611706402,63.318020272784125,65.06138063280109,77.06515731114388,79.42780115812045,63.225351960370325,64.97419468848207,0.2477308248028862,242.26495894357924,0.0926683124137994,87.1859443190175,163.0266,114.15826395534825,170298.33907865873,119250.24961386008,353.43829,228.6548700621023,368440.2799540374,238090.94334284167,362.63275,175.26406599211202,375081.0299801525,180231.47128178368,3192.4503,1467.842640663052,3289889.815104983,1488356.6913852012,1164.92775,519.0725265715855,1198103.0920296668,523460.9566970599,1902.49078,802.7956768952979,1942532.6021101011,798890.9906947591,0.37904,100000,0,741030,7740.833594484488,0,0.0,0,0.0,30175,314.4991120860754,0,0.0,33205,343.07949441136526,1593881,0,57248,0,0,6374,0,0,66,0.678993001149065,0,0.0,0,0.0,0,0.0,0.06177,0.1629643309413254,0.3153634450380443,0.01948,0.335343228200371,0.6646567717996289,24.56533096034298,4.344700107974428,0.3288260602335587,0.2323294406883835,0.2212661339889367,0.2175783650891211,11.304123629746131,5.87092722439459,20.800898237103603,12290.507473330625,55.297230602509394,13.499489939460188,18.1407299658534,11.960879643681167,11.69613105351464,0.561360376971932,0.783068783068783,0.6996884735202492,0.5833333333333334,0.0932203389830508,0.7174578866768759,0.90625,0.8457831325301205,0.7352941176470589,0.1434599156118143,0.5043356643356643,0.7116991643454039,0.6487394957983194,0.5403800475059383,0.0787878787878787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0046321166847423,0.0069298592721111,0.0094665420712631,0.0116150161206659,0.0139511201629327,0.0162638931375548,0.0183050709027983,0.0203960618731661,0.0223837804628302,0.0245667999589869,0.0265035991908238,0.0288385391490368,0.0308807927237518,0.0325406241939644,0.0344998656386299,0.036459843432879,0.0383290445754129,0.0400673855848923,0.0420000833541718,0.0567237419085404,0.0707446975483682,0.0840578494195131,0.09732912723449,0.109319638940442,0.1247910627763789,0.1368653421633554,0.1498349834983498,0.1610115168479306,0.1721700895490374,0.18513094417643,0.1969628139399052,0.2085924927145404,0.219701610080504,0.2291389270976616,0.2393086638599601,0.2484623198597948,0.2570505750748385,0.2649447416544565,0.2729252386792128,0.2801384772137829,0.2864630251412661,0.2925778661365142,0.2987434956717742,0.3042003937869175,0.3096981802041722,0.314956783164224,0.3198039964362988,0.3236635484957633,0.3277618487639232,0.3267794050219813,0.326203134899865,0.3252719653464648,0.3253019026382091,0.3241157364641377,0.3225464598371986,0.3211033956747652,0.3220126822037388,0.3222532700186858,0.3221156432093232,0.3217729656572492,0.3222945354974403,0.3226659947083281,0.323302883754254,0.3240564331363801,0.3266661437498366,0.3291479564110631,0.3311191244385399,0.3344744829533422,0.3369847679206812,0.3387237161574052,0.3432255314614524,0.3458396178984414,0.3492863140218304,0.3546588546588546,0.3552146509691997,0.3565903465346535,0.3669255928045789,0.3632299525006985,0.3675964845242644,0.0,2.4832759863836045,56.88260401956562,183.04717204600604,266.9371616425806,fqhc5_80Compliance_baseline_low_initial_treat_cost,26 -100000,95781,44888,424.4787588352596,6216,63.65563107505663,4867,50.22916862425742,1932,19.81603867155281,77.37208356525132,79.70995922763473,63.35007434272507,65.07899809732577,77.13508157163142,79.47442744407515,63.26217897133724,64.99409657190972,0.2370019936198986,235.53178355957985,0.0878953713878374,84.90152541604346,162.44228,113.914116010656,169597.6028648688,118931.85079572776,358.54584,231.45528835923307,373771.562209624,241082.87484911733,369.06836,178.57213781732153,381567.7326400852,183555.5444632461,3192.61902,1456.8680493291158,3297316.586796964,1485108.559452414,1139.80412,502.3261636792618,1176955.440014199,511402.4418193224,1890.58926,787.9667682512553,1940756.6427579585,794336.2883416808,0.38389,100000,0,738374,7708.981948403128,0,0.0,0,0.0,30473,317.5368810098036,0,0.0,33756,348.65996387592526,1595667,0,57309,0,0,6512,0,0,78,0.814357753625458,0,0.0,1,0.0104404840208392,0,0.0,0.06216,0.1619213837297142,0.3108108108108108,0.01932,0.3300598434862667,0.6699401565137333,24.593061245724044,4.349075870554446,0.31292377234436,0.2397780973905897,0.2212862132730635,0.2260119169919868,11.232925548692998,5.8739105942698,20.47209567915293,12426.125526204634,55.196147340061486,13.938824577320757,17.334477423419678,11.903868359039125,12.018976980281916,0.5613314156564619,0.7969151670951157,0.690741956664478,0.5923862581244197,0.1018181818181818,0.7228915662650602,0.9181818181818182,0.8567961165048543,0.7131147540983607,0.125,0.5007064142413111,0.7235213204951857,0.6291629162916291,0.5570228091236494,0.0956221198156682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0046328210534852,0.0070020904791865,0.0092949076096341,0.0113597071087155,0.0132452353803551,0.0156458632745211,0.0179500785762393,0.0202238005211792,0.022454660826135,0.0244929749228829,0.0266428564097827,0.0288642414399227,0.0307979035596239,0.0329277096009075,0.0349238494761422,0.036943875121628,0.0390243396559055,0.0412506104466911,0.0434040249450812,0.058322637197508,0.0725431954148014,0.0863690207876888,0.0990217608305051,0.1107891992119596,0.1267788659630439,0.1398836334347213,0.152311683892646,0.1639333767245334,0.1748585875899897,0.188138729318617,0.2007631029972869,0.2117645780356871,0.2219137354349299,0.2311033405907061,0.2414327631069036,0.2512046042651914,0.2605108143351769,0.2686112024304807,0.2761258115117304,0.2825302458997432,0.2891647961092405,0.2962113600094568,0.3021429426553334,0.3070528844987015,0.3122291174152876,0.3171702505820212,0.3226019733496084,0.3275293326261594,0.3307274501015108,0.3297081479290736,0.3291213998269445,0.3287439579487324,0.3273723471925056,0.3272616518341331,0.3253054475303916,0.3224545353824726,0.3232692844133042,0.3242508210180624,0.3250549018907676,0.3258460616951183,0.3268892794376098,0.3281505043318126,0.3306255439755406,0.3318916840865951,0.3326029112537173,0.3329519778051082,0.3341750576055048,0.3377413568740548,0.3409398645957786,0.3413566739606127,0.3433651804670913,0.3445283018867924,0.3474221308354276,0.3492362813501791,0.3512553292278541,0.3563708326990409,0.3608859007316591,0.3661705006765899,0.3651092690278824,0.0,2.266035177346098,58.26260285853909,178.7048539416597,266.49361701652055,fqhc5_80Compliance_baseline_low_initial_treat_cost,27 -100000,95642,44452,420.53700257209175,6223,63.8631563539031,4904,50.6367495451789,1916,19.656636205850987,77.25911226955019,79.65400218161487,63.27736057920528,65.04508201852997,77.01607793471462,79.41326963940641,63.18718700243652,64.95870839851816,0.2430343348355705,240.7325422084625,0.0901735767687625,86.37362001181259,162.85984,114.10078485720756,170280.6716714414,119299.8733372447,353.45678,228.5980842810816,368863.417745342,238315.4412089685,367.9967,177.88870725484847,380343.0292131073,182634.63975444817,3208.13176,1464.3484717933363,3316582.432404173,1493342.3410147587,1191.06458,522.6667036288279,1227860.657451747,529006.7267819868,1875.53986,786.8747564563248,1925731.9378515717,791611.0912340881,0.37905,100000,0,740272,7740.030530520064,0,0.0,0,0.0,30140,314.46435666339056,0,0.0,33708,348.0165617615692,1588167,0,57086,0,0,6302,0,0,57,0.5855168231530081,0,0.0,1,0.0104556575563037,0,0.0,0.06223,0.1641735918744229,0.3078900851679254,0.01916,0.3268995098039216,0.6731004901960784,24.583566466423648,4.273300674948025,0.3317699836867863,0.2361337683523654,0.2169657422512235,0.2151305057096248,11.264905213715137,6.040215289693822,20.403012366209094,12336.886717877633,55.77952609735808,13.911274439527912,18.35408344613294,11.885760352815243,11.628407858881976,0.5797308319738989,0.7918825561312608,0.6859250153657037,0.631578947368421,0.1308056872037914,0.7440246723207402,0.9268867924528302,0.8728606356968215,0.7478991596638656,0.163716814159292,0.5206542833379539,0.7138964577656676,0.6231527093596059,0.5980629539951574,0.1218335343787696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0046339954775448,0.0069727787589062,0.0092058201918387,0.0115265272902996,0.0137799686309657,0.016008320247976,0.0182120726441193,0.0202412594561439,0.0222226771621303,0.024657562335958,0.0270461756461201,0.0291803379858675,0.0311321726589059,0.0331172986026543,0.0353420464885433,0.0374821291672709,0.03957024964966,0.0415444465247872,0.0434102708450616,0.058438097626736,0.0719133604256567,0.0846713642139309,0.0980761738288037,0.1100163683404614,0.1252184412035713,0.1377980774337458,0.1498636150534884,0.1606745658311232,0.1708155243884104,0.1837580098815508,0.1959666670278822,0.207987015109097,0.2192796958374878,0.2292990118228339,0.239438027543314,0.249169174993566,0.2583694279011009,0.2671451809216139,0.2739976327009044,0.2812844526453829,0.2876482526424457,0.2941148546811768,0.2992556786070728,0.3045264980611175,0.3093089380640376,0.3147506403495555,0.3200617638426298,0.3246166430788008,0.3289357028489764,0.32810833434593,0.3267422432719791,0.3264953879237168,0.3261160195303418,0.3252706233669279,0.3241901013238211,0.3219886553219886,0.3228898991895632,0.3237266910263668,0.3231722606297238,0.3242131750920153,0.3259488032309794,0.326007556675063,0.327213847012842,0.3282147405858746,0.3293321182137742,0.3297842054318738,0.3348649839491408,0.3379029139864318,0.3412373184802069,0.343854199972594,0.3488718603661132,0.3500567966679288,0.3543313069908814,0.3549564729008705,0.3556719438162123,0.3600061434495469,0.3670266965559405,0.3639178159301998,0.3675078864353312,0.0,2.5090075068995144,56.6759492838597,186.7239129998346,269.4500932399733,fqhc5_80Compliance_baseline_low_initial_treat_cost,28 -100000,95602,44515,422.0518399196669,6187,63.398255266626215,4860,50.1035543189473,1939,19.83222108324093,77.28554750318864,79.71879169060348,63.27381344368565,65.07228935360688,77.04323513223473,79.47893140327955,63.1837104081572,64.98629573824648,0.2423123709539112,239.8602873239355,0.0901030355284504,85.99361536039396,162.63148,113.95517683779624,170113.05202820027,119197.48210057971,354.16822,228.72714156394488,369742.37986653,238530.607690158,364.08821,176.04601194164042,376020.9828246271,180382.6902310897,3168.21707,1444.555805122072,3268460.021756867,1465665.2623098046,1136.59081,496.06172070078446,1173903.077341478,503982.9976647406,1894.65302,792.829555332275,1940123.0099788704,793917.9729417012,0.37983,100000,0,739234,7732.411455827284,0,0.0,0,0.0,30210,315.2444509529089,0,0.0,33331,343.9153992594297,1592574,0,57140,0,0,6568,0,0,69,0.7112821907491474,0,0.0,1,0.0104600322168992,0,0.0,0.06187,0.1628886607166363,0.3133990625505091,0.01939,0.3349223435337536,0.6650776564662464,24.341342487018277,4.3363857972668685,0.3189300411522633,0.2335390946502057,0.2275720164609053,0.2199588477366255,11.207202022989696,5.773131701468802,20.586470513485505,12324.151120942262,55.10337783820155,13.734228320417657,17.444830631980892,12.174423426726444,11.749895459076557,0.5606995884773662,0.7991189427312775,0.6916129032258065,0.5605786618444847,0.117867165575304,0.7023076923076923,0.8983451536643026,0.8320987654320988,0.7319148936170212,0.1012658227848101,0.5089887640449439,0.7401685393258427,0.6419213973799127,0.5143513203214696,0.1225961538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023510336441021,0.0047165505279493,0.0069853389107744,0.0093510189561416,0.0115675741667684,0.0137619818883761,0.015811324989034,0.0180410264792415,0.0200059322293931,0.0218858494720563,0.0240762397160501,0.0261097410604192,0.0282343979989912,0.0300684451408073,0.0324325998740281,0.0346197209321569,0.0369330252126965,0.0387167796944614,0.0405837227941253,0.0427458302475252,0.0581643320091992,0.0723747642003772,0.0856821573449355,0.0985997113024054,0.1109326966755052,0.1261650567700389,0.1389995855516944,0.150925896312406,0.1620187059906256,0.1727909575382499,0.1846069185783034,0.1974260560326134,0.2093005514505547,0.2194865389040465,0.2300661521499448,0.2398827890869536,0.2496618487094358,0.2574020850943928,0.2653014841246392,0.2730670029231386,0.2805707072461754,0.2874875578195445,0.2940730113939508,0.2991918925084953,0.3045293537667523,0.3093741898048124,0.3142355889724311,0.3183376451247021,0.3226484361824951,0.3269647481634163,0.3268212500505247,0.3258204334365325,0.3242896425297892,0.3238642116377627,0.3240294869508353,0.3218553000904949,0.3207080319756376,0.3221429041384301,0.3231798046828233,0.3242827227005065,0.3258273178963157,0.3263919073774055,0.3278437460663785,0.3289270616654365,0.3295364429385048,0.3304827012554912,0.3313874404896849,0.336026050472791,0.3386978785662033,0.3403944196340355,0.3429312227074236,0.345527808705795,0.3502924344380856,0.3541666666666667,0.3580512436880493,0.3585038814396613,0.3616438356164383,0.3583383746723129,0.3641067538126362,0.362781954887218,0.0,2.856259175894851,56.46316996435445,178.0825394502643,271.2502017103654,fqhc5_80Compliance_baseline_low_initial_treat_cost,29 -100000,95811,44159,418.24007681790187,5849,59.857427644007466,4578,47.23883478932481,1850,18.9226706745572,77.35864855579545,79.66167931255347,63.35358995694328,65.05359373158475,77.13131890965784,79.43815903126305,63.2698947099399,64.97369720632004,0.227329646137619,223.52028129041912,0.0836952470033765,79.89652526471502,164.1673,114.92335814584592,171344.93951633945,119947.97898555064,351.49408,228.254089755292,366291.8871528321,237663.6604933588,358.02318,173.64827884390127,370252.643224682,178541.86318975914,3001.34271,1366.4648785613567,3098229.1699282965,1391872.038243372,1103.20247,484.1292802492949,1133399.6618342362,487259.6677305256,1812.95702,751.7759055724237,1855971.9447662584,753813.9602248799,0.37758,100000,0,746215,7788.406341651793,0,0.0,0,0.0,30010,312.6363361200697,0,0.0,32770,338.62500130465185,1589303,0,57030,0,0,6511,0,0,60,0.6262328960140275,0,0.0,1,0.0104372149335671,0,0.0,0.05849,0.1549075692568462,0.3162933834843563,0.0185,0.331321370309951,0.668678629690049,24.613852476625905,4.358516842331554,0.3108344255133246,0.237221494102228,0.2267365661861074,0.2252075141983399,11.357881339753956,5.912432317580508,19.51253468739193,12164.176018600723,51.88064752929083,13.216225820996002,15.979435619496044,11.56046345805836,11.124522630740437,0.5718654434250765,0.8186003683241252,0.7041461700632466,0.5876685934489403,0.113482056256062,0.7427385892116183,0.9255583126550868,0.8602739726027397,0.7625,0.1269035532994923,0.5108212273940113,0.7554904831625183,0.6502835538752363,0.5350877192982456,0.1103117505995203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021962229014432,0.0047301198229496,0.0070156229406814,0.0094472688158949,0.0114705464003413,0.0136208738110981,0.0156663814529601,0.0176165168871706,0.019696381505016,0.0217987274698745,0.0240085217961324,0.0260118571399265,0.0282015718908922,0.0301717484589974,0.0322926547614137,0.0342580351978848,0.0361314888201392,0.0380353088749054,0.0398745287036363,0.0416718717468249,0.0565321259793233,0.07018222496367,0.0835447018132271,0.0956839749046312,0.107531640900804,0.1233131492460028,0.1356649139173946,0.1471820947599089,0.1586679621187046,0.1692701911633841,0.1820844099913867,0.1937151820001081,0.204779975425968,0.2152584085315832,0.2253508723650173,0.2352028547048328,0.2442998560316061,0.2531555855551806,0.2613841387996868,0.2697216175965173,0.2775064802814294,0.2845254397977457,0.2904027846842367,0.2959112709832134,0.301083243164383,0.305995363519779,0.3109782037486549,0.3153543857864146,0.3200315927129595,0.3242865247852647,0.3234985328559507,0.323501100110011,0.3230412153608102,0.3220417231728078,0.3210613008057695,0.3187140760670172,0.3172895939768755,0.3185503725831336,0.3196459390646093,0.3210070810385523,0.3218959763002962,0.3228281070821305,0.3240657196214617,0.3254145621955035,0.3266891079586439,0.3278320363503421,0.3298206534155814,0.3337224711301824,0.3354800112612612,0.3385754668153043,0.3423784374430887,0.3466084549036311,0.3510410094637224,0.3530268199233716,0.3596128547265551,0.3614358247727004,0.3665082042631498,0.3685609157808667,0.3790390559145827,0.3789682539682539,0.0,2.102710535184231,52.71711664454239,173.1907246989907,252.3883173960552,fqhc5_80Compliance_baseline_low_initial_treat_cost,30 -100000,95834,44228,417.0336206356825,6289,63.96477241897448,4963,50.921384894713775,2032,20.66072583842895,77.41454581429173,79.70319314368743,63.37712166936033,65.0680077750471,77.1586849893096,79.45388079115651,63.28021502547393,64.97723624450643,0.2558608249821219,249.31235253092157,0.096906643886399,90.7715305406782,163.7174,114.5563554095944,170834.3594131519,119536.23495794226,353.86366,228.37885223386837,368396.25811298704,237456.50002490592,364.08285,176.7691497253087,374059.5300206607,179995.19626430605,3237.01816,1509.7730914137176,3325466.4002337377,1523136.2579186049,1190.62199,537.1068960197705,1217941.6177974415,536017.5678984185,1977.63134,844.4203857435105,2013167.664920592,836822.8015886166,0.38047,100000,0,744170,7765.198155143268,0,0.0,0,0.0,30203,314.26216165452763,0,0.0,33417,342.8950059477847,1593760,0,57291,0,0,6474,0,0,62,0.6469520212033307,0,0.0,0,0.0,0,0.0,0.06289,0.1652955554971482,0.3231038320877723,0.02032,0.3335857056329497,0.6664142943670502,24.334046884393608,4.335974262983317,0.3274229296796292,0.230505742494459,0.2272818859560749,0.2147894418698367,11.679748079257358,6.248947687573498,21.72002658697628,12278.42785555422,56.67921816210959,13.63090530802455,18.60764959167773,12.719981585327652,11.72068167707964,0.5726375176304654,0.7762237762237763,0.72,0.5895390070921985,0.1116322701688555,0.7363571934798016,0.902097902097902,0.8758169934640523,0.7700729927007299,0.1566265060240964,0.5076013513513513,0.7006993006993008,0.6586620926243568,0.531615925058548,0.0979192166462668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024497646403806,0.0051162555088394,0.0076356003528803,0.0097455992528373,0.0119016160178879,0.0141434080525849,0.0165138549307253,0.0187380146068791,0.0209405900138922,0.0234637100073643,0.0256076700093211,0.0277364625752649,0.029705208429662,0.0315481765874445,0.0337550132483787,0.0358703173898224,0.0378363837646012,0.0398893172490983,0.0418050826343327,0.0435953980901658,0.0574637137137137,0.0716331180368303,0.0846019256760296,0.0978903485282844,0.1098894154818325,0.1250026407520862,0.1376475324730362,0.1488545154946048,0.160088351099587,0.1703586271905394,0.182902948138584,0.1950446650660783,0.2065232748970209,0.2162466394177176,0.2257947500329772,0.2360460869276488,0.2457277351418882,0.2552026533250885,0.2637138221712937,0.2713716327652556,0.2786403498623227,0.2855772492776341,0.2926572392166144,0.2981154242693073,0.3032701191344517,0.3082103082103082,0.3134855525356646,0.3178704222482555,0.3227593544034459,0.3275529355785244,0.3273905778352738,0.326862712704444,0.3257999520944584,0.3253417728836093,0.3239091354796535,0.322120316638851,0.3198785751553384,0.3208178255808234,0.3220978257159436,0.3216207547842201,0.3229544350166336,0.3241201073232323,0.3250245502601283,0.3251699164345404,0.3272129416282642,0.3274764120292153,0.3283925376948632,0.3330103762970371,0.3361456327673726,0.3360294992268348,0.3384273535280246,0.341373109065905,0.3458970358814353,0.3499321982823565,0.3554559880518995,0.3597122302158273,0.3654373666565071,0.3727882855399634,0.3830079736046192,0.3810246679316888,0.0,3.398591622926449,60.80987804565447,181.9381761287156,266.3524539700277,fqhc5_80Compliance_baseline_low_initial_treat_cost,31 -100000,95729,44360,420.4995351460895,6058,62.26953169885824,4731,49.03425294320425,1893,19.513418086473276,77.36002699221102,79.73197843768382,63.33690834044432,65.0887442871258,77.12795742393328,79.49809747592126,63.25111207614642,65.00386137669652,0.2320695682777369,233.88096176256568,0.0857962642979046,84.88291042928608,163.34164,114.41793155807402,170629.21371789114,119522.74813073783,354.15959,229.4200985464777,369571.2688944834,239266.4632641582,359.71524,173.62533566352718,373458.9100481568,179557.91192432193,3100.49767,1409.006934633077,3215544.1715676542,1448586.9774362168,1145.39206,502.4331519266458,1188375.5497289223,516730.6896830073,1849.23398,769.6567829108736,1908206.645843997,784501.0080834614,0.3786,100000,0,742462,7755.873350813234,0,0.0,0,0.0,30232,315.41121290309104,0,0.0,32867,341.07741645687304,1593229,0,57118,0,0,6360,0,0,60,0.6267693175526747,0,0.0,0,0.0,0,0.0,0.06058,0.1600105652403592,0.3124793661274348,0.01893,0.333856045162302,0.666143954837698,24.634921483951235,4.356595934140769,0.3204396533502431,0.233143098710632,0.2261678292115831,0.2202494187275417,11.277339394332248,5.981792809930463,19.99558973506337,12216.342327998243,53.6376492111606,13.281034473584713,17.099747106407168,11.961311547650364,11.295556083518363,0.5759881631790319,0.8050770625566637,0.7097625329815304,0.5738317757009346,0.1410748560460652,0.7430830039525692,0.941747572815534,0.8544474393530997,0.7216117216117216,0.1818181818181818,0.5150028851702251,0.723589001447178,0.662882096069869,0.5232120451693852,0.1308523409363745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687909572474,0.0046325862401038,0.0066062531077803,0.0086551941323472,0.0110968713129093,0.0132682986436397,0.0152293577981651,0.0174120720978178,0.0195757730641451,0.0214480230962959,0.0234677766614037,0.0257997618167631,0.0279400271482045,0.0299621996312661,0.0319744946915529,0.034108414925404,0.0361863915133432,0.0381657203948392,0.0401485287540434,0.0420552470068459,0.0562883131259333,0.0701726844583987,0.0828507888553205,0.0948750039439226,0.1074177156472051,0.1226545735155762,0.1351047467515247,0.1468616308026307,0.1580976589200273,0.1689317472406062,0.1813304605440344,0.1932544878106842,0.2050908616642031,0.216355666327791,0.2262704688170151,0.2362772461456672,0.245994734023563,0.2557294829408721,0.2647989206226828,0.2725232703250403,0.2797590138532344,0.2865825151940159,0.2930414626646798,0.2992253259737305,0.3048503611971104,0.3101333628874358,0.3146077254077855,0.3182858014335824,0.322381531613137,0.3264883543035003,0.3259116669134572,0.3251169832094687,0.3247674090780941,0.323238020855932,0.3220177759281828,0.320945687292327,0.3191644132390847,0.320291635946588,0.3202415887531563,0.3216678545972915,0.3224279835390946,0.3223368782431979,0.3242052973221181,0.3255632563011165,0.3266054606035908,0.3280380635432375,0.3296020963285767,0.334204806753394,0.3392417528311177,0.3424264178033022,0.3463227222832052,0.3485769107771027,0.3516366149400012,0.3498136456986385,0.351879558631008,0.3531834765211251,0.3614311704063068,0.3617363344051447,0.3660273972602739,0.3719230769230769,0.0,1.4840688823401824,56.342200523907,176.4619290147096,259.68372489100034,fqhc5_80Compliance_baseline_low_initial_treat_cost,32 -100000,95752,44537,421.8188654022893,6097,62.46344723869998,4782,49.36711504720528,1906,19.508730888127666,77.33346816806463,79.69739233439846,63.32120940122799,65.07099305777393,77.09729936540931,79.46244252608916,63.23377261383414,64.98656021294018,0.2361688026553139,234.94980830929532,0.0874367873938481,84.43284483375635,163.23802,114.35918992283636,170480.01086139193,119432.69062039054,355.45082,229.50323689041892,370651.4015373047,239116.2032024594,361.31204,174.87492467135078,373812.985629543,179895.35806424057,3132.28542,1430.3786970080682,3235290.625783273,1457879.4771995014,1135.97316,503.7498857268728,1169839.8362436297,509575.7668621091,1866.5976,786.3064368395508,1912520.949954048,789401.5512424316,0.38026,100000,0,741991,7749.091402790543,0,0.0,0,0.0,30226,315.07435876013034,0,0.0,33070,341.893641908263,1593979,0,57180,0,0,6368,0,0,74,0.7728298103433872,0,0.0,0,0.0,0,0.0,0.06097,0.1603376637037816,0.3126127603739544,0.01906,0.3360552763819096,0.6639447236180904,24.425344159119824,4.358683444221204,0.3255959849435382,0.2344207444583856,0.2160184023421162,0.2239648682559598,11.358250725074129,5.910288277456382,20.484688568419926,12245.081395207626,54.50687958966925,13.60191788953798,17.653593574731346,11.504425225737997,11.746942899661924,0.5706817231283982,0.7983942908117752,0.7096981374438022,0.5972894482090997,0.1045751633986928,0.7288519637462235,0.9023809523809524,0.8607888631090487,0.7666666666666667,0.1330472103004291,0.5101214574898786,0.7360912981455064,0.6518650088809946,0.5460277427490542,0.0966587112171837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0044720723644181,0.0067900858656598,0.0090227397427299,0.0112589247574296,0.0132778054964412,0.0155874077396729,0.0177175399563185,0.0199194636359919,0.0219565373158772,0.0238663973837179,0.025604435090601,0.0277346441389097,0.0299893924882339,0.031828405175082,0.033953488372093,0.0358781076239684,0.0379774418146161,0.0400877439208225,0.0423579649013175,0.0568389406766391,0.0709403945784708,0.0837757864472938,0.0965356947541121,0.1086163256696899,0.1243642208334655,0.1370764105502153,0.1485711244744824,0.1598705570745044,0.1700964044052202,0.182836584551418,0.1948910479735139,0.2058356533843744,0.2163551452976496,0.2266572808165689,0.2368045175220063,0.2458390542848531,0.2550526647461289,0.2649091548736339,0.2725305673856299,0.279691005388903,0.2859281262059852,0.2926283909283424,0.2984545345633161,0.3036455425839178,0.3088823522172035,0.3139953498837471,0.3192384438428591,0.3234913570023807,0.3283580119830021,0.32788563883537,0.3268410772743528,0.3266722996761019,0.3245540489751077,0.324017778834862,0.3225880656984679,0.3204362091648306,0.3210600683491062,0.3214841412327947,0.3229633865232386,0.3229238867761937,0.3232754362044776,0.3247437774524158,0.3253082008218688,0.3257508355976627,0.3261170448907111,0.3279126627622676,0.3316366606968925,0.3352658023259899,0.3378244501684169,0.3414512244990685,0.3455327738234356,0.3485879979828543,0.3535260823007495,0.3579545454545454,0.3598080383923215,0.3550724637681159,0.3548254620123203,0.3555181128896377,0.3469626168224299,0.0,2.219179534633969,58.35893223429264,177.6743504750691,257.8841335343929,fqhc5_80Compliance_baseline_low_initial_treat_cost,33 -100000,95789,44471,420.4449362661683,6095,62.25140673772562,4819,49.62991575233064,1867,19.07317124095669,77.34149214859087,79.68371994729696,63.33904717832892,65.07357495405749,77.11325231758566,79.45618966674583,63.254379197476005,64.99168135169045,0.2282398310052116,227.5302805511359,0.0846679808529131,81.89360236704601,164.09844,114.916431021416,171312.4053910157,119968.29596448025,355.10012,229.08414513947145,370031.5171888213,238475.73963318585,363.24725,175.99995134557977,374651.8911357254,180199.24763815585,3142.96534,1436.908687035345,3239608.201359237,1458744.4419008514,1117.57526,496.31517174206886,1149881.0093016943,501424.9367469657,1827.3628,760.9942077214487,1868703.9221622525,761446.3291647501,0.38046,100000,0,745902,7786.92751777344,0,0.0,0,0.0,30266,315.2554051091461,0,0.0,33381,343.9434590610613,1592630,0,57139,0,0,6437,0,0,57,0.595057887648895,0,0.0,2,0.0208792241280314,0,0.0,0.06095,0.1602008095463386,0.3063166529942576,0.01867,0.3408876298394712,0.6591123701605288,24.59775359986813,4.38313794985042,0.3363768416683959,0.2324133637684166,0.2160199211454658,0.2151898734177215,11.17214434185969,5.733892428246812,19.680810668630347,12260.047853599594,54.53772890712419,13.454324127724332,18.226588434869345,11.585223221023767,11.271593123506769,0.569620253164557,0.775,0.7069710055521283,0.5859750240153698,0.1166827386692381,0.7443491816056118,0.9202898550724636,0.8726415094339622,0.6895161290322581,0.1675126903553299,0.5062217194570136,0.6898016997167139,0.6482873851294904,0.5535939470365699,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070332364233,0.0047747939539551,0.0072251255771474,0.0095110352396049,0.0116497939665259,0.0136496521375966,0.0161757506527415,0.0181560109875522,0.0200218829568578,0.022189682360892,0.0243009628102986,0.026514684740193,0.0286155112116848,0.0308227998063273,0.032957054708298,0.0347511499302289,0.0367283119680245,0.0389526862311849,0.0411895509050479,0.0429831044856913,0.0576451562418488,0.0710461930950837,0.0842852052899629,0.0970470786044556,0.109157972389082,0.1246115468363528,0.1370763408144009,0.148695642926269,0.1605452197209858,0.170307642834173,0.183127549867057,0.1951172043940835,0.2069321453794752,0.217085273351258,0.2267694371447106,0.2373598148947712,0.2466978029939919,0.2557854905175221,0.2646515894497231,0.272501743434967,0.2797968136688986,0.2864930486651802,0.2930840944807458,0.2988452103153234,0.3043610080283295,0.3087372190026208,0.3141779204717229,0.3191373226027571,0.3228589510119209,0.3261804833765311,0.3256867171961511,0.3247400733425812,0.3232124264850719,0.3226421086059066,0.3222596789283752,0.3201903363016004,0.3190105403095622,0.3196446750517224,0.3202926045565639,0.3217947343978852,0.3229588773825604,0.324582764150383,0.3271277153951096,0.3272560306403566,0.3280963855421687,0.3287889472172164,0.329462032576279,0.3347699328178476,0.3373178667421134,0.3398930225131726,0.3419055067396604,0.3446648793565683,0.3451569763739412,0.3460854780122111,0.3508102955195424,0.3539366298607777,0.3561708118254341,0.3572021585720216,0.3607021517553794,0.3667186282151208,0.0,2.6167488443533955,55.565222121094,180.3808780419688,265.0758731686954,fqhc5_80Compliance_baseline_low_initial_treat_cost,34 -100000,95702,44386,420.3255940314727,6158,63.29021337067146,4813,49.71682932436104,1879,19.278593968778083,77.3419109081298,79.71071539951802,63.33255108723839,65.08081356490158,77.11276240854397,79.48230105772603,63.24745912175227,64.99810843748747,0.2291484995858326,228.41434179198927,0.0850919654861144,82.7051274141013,163.229,114.26421014183268,170559.6539257278,119395.8434952589,354.2245,228.7271164540359,369529.01715742616,238395.51571966716,358.93925,173.65336468721932,371057.9820693402,178346.82548147257,3170.24805,1439.4787156651098,3278083.415184636,1469734.7529895096,1143.48179,500.2912998870802,1181679.818603582,509672.1790638435,1847.54968,774.5062659423775,1897569.0999143173,782742.7655539596,0.37866,100000,0,741950,7752.711542078536,0,0.0,0,0.0,30159,314.51798290526847,0,0.0,32899,339.7316670498004,1595127,0,57271,0,0,6368,0,0,68,0.710538964702932,0,0.0,1,0.0104491024221019,0,0.0,0.06158,0.1626261025722284,0.3051315362130561,0.01879,0.335651367640241,0.6643486323597589,24.76340018701845,4.406930804076096,0.3147724911697486,0.2356118844795346,0.2235611884479534,0.2260544359027633,11.249730744090716,5.824403539837418,20.04605513246804,12257.63975793762,54.50221008557168,13.492247467767648,17.092395060972095,11.948774909832103,11.968792646999823,0.5522543112403906,0.7733686067019401,0.6917491749174918,0.5613382899628253,0.1185661764705882,0.728744939271255,0.937984496124031,0.8512820512820513,0.7245762711864406,0.1531531531531531,0.4913359418669648,0.6880856760374833,0.6364444444444445,0.5154761904761904,0.1096997690531177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026733635774465,0.0049559136515658,0.0073747210387502,0.0097302348257089,0.0121812339854394,0.0142135700904129,0.0161880587581679,0.0184126724912223,0.0204721995094031,0.0223934825549858,0.0245822655048692,0.0266559878425694,0.0285673152071078,0.030402620951125,0.0326082469971519,0.0342988277615828,0.0359883594486272,0.0382424060025529,0.040375996922149,0.042592438200842,0.0571094353811125,0.0709186450613407,0.0842006966886305,0.0973336839337365,0.1095933758767997,0.1249471011426153,0.1372195406566594,0.1490084201786227,0.1605777037131991,0.1708162148825933,0.1840934790802864,0.1960523325650099,0.2082073481107655,0.2181277405386491,0.2276806334543055,0.2377267846666445,0.2471703373292444,0.2562497189874556,0.2649630814250229,0.2713997985901309,0.2791491232128811,0.2860486069669206,0.2929389764711452,0.2981390276928976,0.3034857302538059,0.3091027917529841,0.3135889374600749,0.3183680219836141,0.3234075608493009,0.3268275325839143,0.3258759708705191,0.3247474400384853,0.3237870288357445,0.3224768855745791,0.3220308815022471,0.3207351007552824,0.3179857479182796,0.3183241780765762,0.3184884137907481,0.3198057455051866,0.3204421959902567,0.3210847779249273,0.3230104278130966,0.3249563230748555,0.3264161390500493,0.3267275097783572,0.3283309557774608,0.3325361110236964,0.3369687587953842,0.3404162015627491,0.3428336905467645,0.3464118398637138,0.3510330057949105,0.3533639143730887,0.3525580517273928,0.3545432921027592,0.3582135209544203,0.3630586305863059,0.3684063633826402,0.370142362447095,0.0,2.2813622978198818,54.056211690367135,186.19717759615412,264.70950763483825,fqhc5_80Compliance_baseline_low_initial_treat_cost,35 -100000,95720,44138,417.9690764730464,6160,63.236523192645215,4852,50.208942749686585,1902,19.630171333054744,77.33810060160408,79.72108556881723,63.31256206328344,65.07511074537179,77.10193116557889,79.48191801530524,63.226466396066726,64.98946522479679,0.2361694360251931,239.16755351199012,0.0860956672167105,85.64552057499952,163.57396,114.48771975331675,170887.96489761805,119606.89485302629,352.27943,227.4363069228686,367559.10990388633,237133.7828279028,361.73613,174.754219656334,374587.5052235688,180066.33822308364,3178.82866,1451.148961007393,3290627.3819473465,1485729.2204381465,1114.81935,493.18770830383903,1151408.1383201005,502024.8237414235,1859.89048,772.3753275535311,1920444.9644797328,788305.0614151806,0.37822,100000,0,743518,7767.634768073548,0,0.0,0,0.0,30134,314.3021312160468,0,0.0,33089,342.34224822398664,1592787,0,57218,0,0,6421,0,0,53,0.5536982866694525,0,0.0,1,0.0104471374843292,0,0.0,0.0616,0.1628681719634075,0.3087662337662337,0.01902,0.3385594535858429,0.6614405464141571,24.33734981547779,4.325112804097027,0.3268755152514427,0.2310387469084913,0.2277411376751855,0.2143446001648804,11.123197582451256,5.735469771905349,20.14994665442753,12266.61889388509,55.057378867962015,13.578413500039874,17.870088043315747,12.31303778124238,11.295839543364016,0.5558532563891179,0.7805530776092774,0.680327868852459,0.5855203619909503,0.0923076923076923,0.7443095599393019,0.9023255813953488,0.909313725490196,0.7111913357400722,0.1231527093596059,0.4855687606112054,0.7047756874095513,0.601018675721562,0.5434782608695652,0.084826762246117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022602420384747,0.0043213633597078,0.0066399983755355,0.0087606967904547,0.0109074999236882,0.0132207498548569,0.0154009342553495,0.017669829532107,0.0199621618857698,0.0221266574514923,0.0242004122273608,0.0265949254007208,0.0287379958461,0.0307701813463499,0.0327632094740968,0.0347015542328042,0.0365277892818686,0.0386147653234842,0.0404611658055327,0.0422816904342753,0.0573517126148705,0.0709799652479745,0.0842138397775562,0.0970320355061946,0.1097155873327216,0.1251348664029279,0.1373441561886572,0.1482846008049918,0.1591489543594182,0.1698062605934476,0.1823901403746916,0.1945962914452106,0.2060968177266988,0.2166568196240618,0.2261763281834587,0.2363084288215607,0.2465410771515672,0.2558524287579345,0.2646137075895898,0.2733888806115549,0.2805270592594308,0.287497073284945,0.2939790141879249,0.2998177982355197,0.3042786142199215,0.3101478245847832,0.3150283222216652,0.319116672613283,0.3232988194435445,0.3277457334054882,0.3271151309591106,0.3268860397292687,0.3263036377970492,0.3249057856967526,0.3238482787299135,0.3226404399711997,0.3207812969909935,0.3221037085658024,0.3231460443821856,0.3239499473411756,0.3241556396896202,0.3241897233201581,0.324838493162178,0.3264290517821116,0.327395710468671,0.3285617790709758,0.3287215909090909,0.3312829525483304,0.334686308128346,0.3392969984202211,0.3430735930735931,0.3457413249211356,0.3444285447645119,0.3441699827314363,0.3467607202524596,0.3449407902450463,0.348735701384708,0.3511465603190428,0.354317998385795,0.3604956815621479,0.0,1.8592109684108329,58.301259635165735,180.13817549687184,264.2636967575799,fqhc5_80Compliance_baseline_low_initial_treat_cost,36 -100000,95650,44313,419.4563512807109,6000,61.61003659174072,4702,48.56246732880293,1854,18.97543125980136,77.27782633283482,79.68807808305206,63.2892740309558,65.07216626675354,77.04302274030351,79.45532047569239,63.20129097191175,64.9877674729215,0.234803592531307,232.7576073596731,0.0879830590440491,84.39879383203674,162.8957,114.13385983298924,170303.69053842133,119324.25806062655,350.98344,227.0518772719716,366351.34343962366,236784.49389019512,362.2451,175.61831227568842,375089.83795086254,180866.9873270818,3053.4042,1395.756905917419,3155314.9712493466,1422341.1951264194,1089.93188,485.2144143024715,1128211.897543126,495992.90570044063,1812.22196,769.0964932287487,1856436.2362780971,771466.5569540825,0.37872,100000,0,740435,7741.076842655514,0,0.0,0,0.0,29863,311.58389963408257,0,0.0,33075,342.2373235755358,1593460,0,57201,0,0,6383,0,0,69,0.7109252483010977,0,0.0,1,0.0104547830632514,0,0.0,0.06,0.1584283903675538,0.309,0.01854,0.3247808764940239,0.6752191235059761,24.51103308383641,4.314978757571717,0.3107188430455125,0.2430880476393024,0.226286686516376,0.219906422798809,11.267932498782482,5.931628014213341,19.83556044472744,12215.793441067775,53.22349158941435,13.70786954514378,16.356494566010173,11.787814408348488,11.371313069911924,0.5623139089749043,0.7882764654418197,0.7002053388090349,0.5629699248120301,0.1170212765957446,0.7243027888446215,0.9221411192214112,0.8622589531680441,0.7154150197628458,0.1578947368421052,0.5033362344067305,0.7131147540983607,0.6466302367941712,0.5154130702836005,0.1054590570719603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002249559207,0.0046040889177348,0.0068625261405396,0.0089941766517271,0.0112620173966122,0.0134574831144752,0.0155532891381947,0.0176187606606269,0.020038665725596,0.0223622208563818,0.0243694807126226,0.026223883969842,0.0283897389461119,0.0306003607317701,0.0325627974684851,0.0348971908485375,0.0367656964032206,0.0387406938228789,0.0407717282717282,0.0429287926342241,0.0572775153617857,0.0714270752602584,0.0847381127322347,0.0981425940541962,0.110757022560834,0.1257859637980311,0.13846970742845,0.1494427990027913,0.1597895142142077,0.1702902051728025,0.1830497149446593,0.1944946776830866,0.2063158582252025,0.2168403081772019,0.2260997842265181,0.2361063398308935,0.2459411777842292,0.2547042405690105,0.2629332849068168,0.2705175177467369,0.2769584880345143,0.2836464824796268,0.290169539651929,0.2959184896613724,0.3012772990775737,0.3068591167036762,0.3120014026474971,0.3169058016219588,0.3208660141310689,0.3253501973779755,0.3249147125847818,0.3242713893601467,0.3233067841608767,0.3221541625034392,0.3217168558067494,0.3195751277840028,0.3176593853187706,0.3181773285483817,0.3189699482575472,0.3199462846911369,0.3212910978838462,0.3232823520088755,0.3246112848060096,0.3256250838663506,0.3285868911605532,0.3290532621435083,0.3301084474885845,0.3349649466304554,0.3389740503416292,0.3413444235614028,0.3436454466290847,0.3469942442975911,0.3509503062448696,0.3518987341772152,0.3536804308797127,0.3528636472561706,0.3548986225042563,0.3592333058532564,0.3645775041969781,0.3637417858523386,0.0,2.3117710083634715,54.854452129628925,174.78615474291263,258.8015054438497,fqhc5_80Compliance_baseline_low_initial_treat_cost,37 -100000,95817,44664,422.2632726969118,6192,63.37080058862207,4896,50.50252042956887,1916,19.65204504419884,77.39792083527668,79.70122214173647,63.37134666233783,65.07146518077585,77.15664555695211,79.46021249227884,63.28192684593132,64.9840073071656,0.241275278324565,241.0096494576237,0.0894198164065116,87.45787361024782,163.96864,114.88866437291468,171126.87727647493,119904.25954988642,357.4906,231.1127071668756,372525.3138795829,240630.25054726785,370.51608,179.83699572388838,381804.8989219032,183950.49533910025,3190.88285,1463.0686443284244,3296287.17242243,1493043.2745007917,1152.92685,504.95488502328703,1188096.3294613692,511836.41214323847,1871.02808,787.358128496583,1921409.10276882,796520.1301176753,0.38152,100000,0,745312,7778.494421657952,0,0.0,0,0.0,30512,317.82460314975424,0,0.0,33928,349.3430184622771,1589983,0,56960,0,0,6366,0,0,62,0.6470668044292767,0,0.0,0,0.0,0,0.0,0.06192,0.1622981757181799,0.3094315245478036,0.01916,0.3308630538829705,0.6691369461170295,24.499237729766488,4.280617236516433,0.3286356209150327,0.2422385620915032,0.2085375816993464,0.2205882352941176,11.063352440780838,5.7987397245689865,20.442479290464888,12271.2975311074,55.58314812293803,14.141362163082077,18.13611437608444,11.462604903163514,11.843066680608,0.5606617647058824,0.7824620573355818,0.6861404599129894,0.5827619980411362,0.1092592592592592,0.7218442932728647,0.9270588235294116,0.8197115384615384,0.7537878787878788,0.0963302752293578,0.5009795689896446,0.7017082785808147,0.6395641240569991,0.523117569352708,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021462703490726,0.0041544650366302,0.0065621988944672,0.0088137038879806,0.0110706733897202,0.013250290040911,0.0152839762792688,0.0175771486865595,0.0199235752089421,0.021945530068957,0.0242095772800852,0.0262015901513208,0.0284173216212051,0.0305627874908671,0.0327241994166331,0.034763305972846,0.0369734337498965,0.0391663039197396,0.0410471008473168,0.042981433685788,0.0574331372303584,0.0709825864142655,0.0840166082999559,0.096502202550543,0.1092196936957827,0.1239058733984523,0.1370432422115242,0.1488904262678942,0.1603102365232998,0.1712217097500804,0.1843403338718363,0.1962010254635138,0.2082060425522662,0.2178838142515061,0.2279520934375928,0.2382349684420329,0.2477500083642811,0.2568980638197396,0.2655918732922916,0.2735448585191711,0.2813645138543701,0.2879241050565473,0.2949627527492018,0.3004069419509276,0.3051174181346459,0.3107032585831498,0.3150354716227018,0.3196149890160125,0.323717285610841,0.3274599662873999,0.3267139289454604,0.3261257305929808,0.3248559786426865,0.3238261320727524,0.3229124975912008,0.3204701572279041,0.3190606208866653,0.3200831682519932,0.3198417840215501,0.3203232308817496,0.3221176338492056,0.3223240020531449,0.3224482960730135,0.3235149290478535,0.3237909347213186,0.3249549761177668,0.3265300280528997,0.3291279327135901,0.3316667840292937,0.3355744748567791,0.3396831211649418,0.3397809243921987,0.3421985815602837,0.3431064839623364,0.3476321533643352,0.3531167900644853,0.3544712944435893,0.354158215010142,0.3579264947888096,0.354174609226077,0.0,2.379411047003085,57.822797168340905,181.89120213608155,268.95619230623925,fqhc5_80Compliance_baseline_low_initial_treat_cost,38 -100000,95564,44411,420.3361098321544,6097,62.77468502783476,4782,49.57933950023022,1893,19.46339625800511,77.19945181010942,79.66969430545045,63.224607941291474,65.05366240456168,76.9709826879637,79.4422305259295,63.14111165578741,64.97266044588471,0.2284691221457251,227.46377952094576,0.0834962855040615,81.00195867696414,163.11394,114.18959384560388,170685.5510443263,119490.17814826072,355.5241,229.50833210298205,371577.83265664894,239712.5194665168,358.90796,173.19219324102002,373259.6270562136,179385.9896366074,3128.51307,1416.6012240088362,3243417.5003139256,1452040.1552978482,1171.73073,512.8924310930232,1211760.903687581,522339.8885490591,1859.30378,768.8098091768595,1912906.3873425135,776455.1613747678,0.3809,100000,0,741427,7758.434138378469,0,0.0,0,0.0,30310,316.6882926625089,0,0.0,32873,341.6244610941359,1587008,0,56971,0,0,6391,0,0,80,0.8371353229249509,0,0.0,0,0.0,0,0.0,0.06097,0.1600682593856655,0.3104805642119075,0.01893,0.324307403349507,0.6756925966504931,24.611760282464743,4.352870552969684,0.3312421580928482,0.220409870347135,0.2220828105395232,0.2262651610204935,11.482508757460243,6.074113463321918,20.0440840726752,12353.084283622811,54.11536389403128,12.72039748747183,17.7728314462226,11.836723391645966,11.785411568690874,0.5759096612296111,0.8102466793168881,0.7133838383838383,0.5903954802259888,0.1321626617375231,0.7433841218925421,0.9359605911330048,0.8746736292428199,0.7396694214876033,0.1527777777777778,0.5168316831683168,0.7314814814814815,0.6619483763530392,0.5463414634146342,0.1270207852193995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022807675543076,0.0045656541060449,0.0068953611178812,0.0090491296567431,0.0112086166877061,0.013537482925238,0.0159412154921671,0.0180564071122011,0.0202415063446582,0.0225458346570471,0.0245029101696829,0.027125127245432,0.0291961030668781,0.0312970642239689,0.0334201388888888,0.0355978345254484,0.037584393764973,0.0396283478315093,0.0417378442564893,0.0433974673501132,0.0574993985418562,0.0714165880255845,0.0851097376387487,0.0978431517169439,0.1102561934556523,0.1256784835891781,0.1385762610897176,0.1498607361243023,0.161171101684021,0.1716525441954492,0.1845924582091486,0.1966058659490663,0.2084555896115795,0.218926863510727,0.2288482547810061,0.2393656011906084,0.2489566667039618,0.2573253150703478,0.2655919361077613,0.2736260707806077,0.2815699460838309,0.2880207295196332,0.2945571857246213,0.300335026477899,0.3070488389932665,0.31224285555432,0.3171071630359721,0.3217506665135918,0.3266988652592765,0.331115402931372,0.3291650349083739,0.3284699717299869,0.3277265864224533,0.3264718229324995,0.3249072736210209,0.3233979822177177,0.3213775591176003,0.3219708197477192,0.3228212779092499,0.3240529929545903,0.3246753246753247,0.3251041873387577,0.3259820958399157,0.3264082292696074,0.3275699465576863,0.3282811065949915,0.3282088053922272,0.3320598636019197,0.3363084738587455,0.340401032360532,0.3434283900802466,0.3481774960380349,0.3501033769813921,0.3522347217999392,0.3536345776031434,0.3548425430778372,0.3570124733799817,0.3565008987417615,0.3659134222706234,0.3722794959908362,0.0,1.8185672619981983,55.14008646829943,177.65413660481576,268.5985064599424,fqhc5_80Compliance_baseline_low_initial_treat_cost,39 -100000,95667,44604,422.0264040891843,6034,61.64090020592263,4807,49.51550691461005,1911,19.515611443862564,77.33990302576841,79.72865616915472,63.32261558699434,65.0880993821495,77.09224279917443,79.4861036263279,63.22969980873479,65.00018345938939,0.2476602265939789,242.5525428268145,0.0929157782595453,87.91592276010363,164.1112,115.0056446920831,171544.21064734968,120214.5407424536,355.62206,229.93377637082685,371011.529576552,239630.50620467548,365.82762,177.15155613994594,377569.694879112,181455.17488241664,3142.09305,1447.2037368613337,3240144.156292138,1468489.026374125,1109.05776,495.1476231884131,1141102.731349368,499389.3871371186,1869.09766,798.5477733344333,1910872.0039303,797610.4388981187,0.37915,100000,0,745960,7797.464120334075,0,0.0,0,0.0,30282,315.7828718366835,0,0.0,33370,343.9744112389852,1587595,0,56967,0,0,6510,0,0,67,0.7003459918258125,0,0.0,0,0.0,0,0.0,0.06034,0.1591454569431623,0.3167053364269142,0.01911,0.3404288867865027,0.6595711132134974,24.47721090457924,4.280057485627768,0.3278552111504056,0.2315373413771583,0.2209278136051591,0.2196796338672768,10.992318928007224,5.617840305022092,20.560832460141217,12256.083991642668,54.60816228198304,13.349469880440145,17.75912217507607,11.862784009104145,11.636786217362673,0.5496151445808196,0.7915543575920935,0.6637055837563451,0.568738229755179,0.1051136363636363,0.7223511214230471,0.8956310679611651,0.8624078624078624,0.7182539682539683,0.1486486486486486,0.4860557768924303,0.7303851640513552,0.5945252352437981,0.5222222222222223,0.0935251798561151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0044295778217018,0.0066057168369676,0.0088875797342867,0.0114700588755681,0.0135080111565789,0.0155950585069515,0.0178002776190087,0.0199439810271508,0.0219758848697005,0.0240811932954021,0.0262066558541542,0.0284427443237907,0.0304375592270611,0.0327378187860585,0.034956937106463,0.037005957005957,0.039038415627822,0.0412886984021304,0.0433033108164456,0.0586361072226981,0.07239700570591,0.0850365116669464,0.0978265443528025,0.1100960016879417,0.1259495143987643,0.1380964001145852,0.1504481297766802,0.1614598353039187,0.1720706810773717,0.1838321612045104,0.1967365664697353,0.2080696030451332,0.2180635285112897,0.2277040265944565,0.2378056211018423,0.247502873787708,0.2558097660338289,0.2638955084995801,0.2722294773982175,0.279491896019158,0.2858880209551429,0.2922257720979765,0.2985013836146483,0.3039176409173131,0.3097666740581959,0.3139161005392286,0.3180054696940787,0.3224389864759832,0.3264365691348896,0.3259082578697714,0.324738081143219,0.3236289299309178,0.3231080885544783,0.3214009403082782,0.3193812696224826,0.3180156079337691,0.3174024438312968,0.318719388364592,0.3189147729299704,0.3204074372273297,0.3217221212360705,0.3219437640014237,0.3226651735722284,0.3238411872410138,0.3265135699373695,0.3264426234188961,0.3280002524535327,0.3303530571297828,0.3350106981535779,0.3371638808139535,0.3407077298530426,0.3462990936555891,0.3511805026656512,0.3546511627906977,0.3589591957421644,0.3638594876514803,0.3645450836393308,0.3645457071408725,0.369841881989973,0.0,2.8639787776392613,56.00903770070023,177.55987728456114,266.8953890567444,fqhc5_80Compliance_baseline_low_initial_treat_cost,40 -100000,95794,44716,423.2519782032278,6080,62.40474351211976,4778,49.39766582458192,1887,19.354030523832392,77.331780499572,79.67263585270877,63.32970022966426,65.06266225886543,77.09872356289186,79.44015253663511,63.24404134963558,64.97948314194774,0.2330569366801427,232.48331607365455,0.0856588800286815,83.17911691769098,162.53886,113.8500078319715,169675.4076455728,118848.78784889609,356.32459,230.5384059480048,371496.2314967535,240187.18912249708,362.44822,174.6781814616376,375529.6051944798,180074.75645671677,3132.26734,1423.0288444698283,3240800.144059127,1456514.5984819802,1110.29421,486.672127788385,1144911.9360293965,493911.6453311751,1842.74616,766.718728658432,1892446.4997807797,774225.8131543092,0.38093,100000,0,738813,7712.518529344218,0,0.0,0,0.0,30357,316.4081257698812,0,0.0,33081,342.4953546151116,1595701,0,57296,0,0,6412,0,0,71,0.7411737687120279,0,0.0,0,0.0,0,0.0,0.0608,0.1596093770509017,0.3103618421052631,0.01887,0.3224394057857701,0.6775605942142299,24.545122637145088,4.362924909306684,0.3359146086228547,0.225826705734617,0.2224780242779405,0.2157806613645877,11.194961835669304,5.811490010863627,20.056821180917066,12236.23138615841,54.288849562154645,12.92441751984373,18.35839592107437,11.84748753641098,11.158548584825558,0.5600669736291335,0.7636700648748842,0.6978193146417445,0.5691439322671684,0.1231813773035887,0.7294761532447225,0.9023746701846964,0.8568075117370892,0.7115384615384616,0.1915887850467289,0.4981423263789654,0.6885714285714286,0.640373197625106,0.523038605230386,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025120283616105,0.0048254328697133,0.0071032096360112,0.0094477630135316,0.0116145436053902,0.0140225460544404,0.0161293611467955,0.0181101719139205,0.0200159473329108,0.022091416287045,0.0241522122442284,0.026202846171222,0.0284104346395483,0.0302437215435011,0.032211121661231,0.0341569316654605,0.0362691080823563,0.0381998464953222,0.0403300391765647,0.0427113702623906,0.0572349816868928,0.0713747803531085,0.0854088050314465,0.0980655872061867,0.1101487756564251,0.12538436340966,0.138004493810412,0.1492583337763836,0.1601980599515521,0.170011034807855,0.1825980260254657,0.1941728672780757,0.2061004784688995,0.216483119894137,0.2266729759769343,0.2368613462134975,0.2458915801100041,0.2551396823968689,0.2632951581811997,0.2713348672687936,0.2789364161849711,0.2856408218601716,0.2913758428960132,0.2974216428639892,0.3024289531212047,0.3076752385413842,0.3125602594442984,0.3171490104624638,0.3216323460760413,0.3261777061481148,0.325615849798645,0.3248989246128881,0.323871076754108,0.3240234770289415,0.3231128219609708,0.3212243834398614,0.3192986905931961,0.3196252465483234,0.3209016533734981,0.3222291685272841,0.3221000487859796,0.3237999169287367,0.3247741122084471,0.3259904983865184,0.3274272196205282,0.3277565744758718,0.3291634535743866,0.3329872254735385,0.3355782384510155,0.3391771019677996,0.3425283156740957,0.3467961372245638,0.3461562876912334,0.3520134741999693,0.3526137006982449,0.3531157270029673,0.3533127889060092,0.3579671998380239,0.3628785773826062,0.3567759778743579,0.0,1.868806905000396,56.63984081081952,179.1771703878775,261.9979480031132,fqhc5_80Compliance_baseline_low_initial_treat_cost,41 -100000,95690,44651,421.9145156233672,6081,62.31581147455324,4741,48.99153516563904,1833,18.76894137318424,77.34192318165195,79.71886699620933,63.32298576779221,65.07588609255356,77.11291629123976,79.49091991497386,63.23753258759545,64.99329616375789,0.2290068904121938,227.94708123547025,0.085453180196751,82.58992879567018,162.82574,114.11351382639614,170159.38969589298,119253.1161337612,353.80612,229.07231662652907,369205.2043055701,238853.79414623164,363.86635,176.18612057714483,377221.1411850768,181793.7006990513,3120.52578,1427.7071693062896,3224193.3430870515,1455637.041997646,1126.25258,498.60099753862863,1162213.2824746578,506576.09022781206,1800.68426,759.7308563475311,1845416.0309332216,762224.2030969966,0.38129,100000,0,740117,7734.517713449682,0,0.0,0,0.0,30076,313.74229282056643,0,0.0,33296,344.88452293865606,1592713,0,57108,0,0,6463,0,0,76,0.7942313721391995,0,0.0,1,0.0104504127913052,0,0.0,0.06081,0.1594849065016129,0.3014306857424765,0.01833,0.3394280356305673,0.6605719643694328,24.798292683041364,4.271941293446068,0.3244041341489137,0.2351824509597131,0.2140898544610841,0.2263235604302889,11.05869966090238,5.8103996345026205,19.443282739219047,12372.930977221986,53.65363492524072,13.421331011632242,17.438469434091527,11.269594304225068,11.524240175291894,0.5625395486184349,0.8044843049327354,0.6937581274382315,0.5852216748768473,0.1015843429636533,0.7220046985121378,0.9221411192214112,0.8613861386138614,0.7081545064377682,0.131004366812227,0.5037528868360277,0.7357954545454546,0.6340388007054674,0.5485933503836317,0.0936018957345971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022680558508753,0.0047941942611568,0.0071111922659443,0.0094358786844617,0.0115220729561795,0.0137443749872737,0.015924800685113,0.0182778021708719,0.0204609595484477,0.0227614805713408,0.0249771862728009,0.0272637653775851,0.0292514348013905,0.0313224460357529,0.0334341484562899,0.0355617599917274,0.0376424280091153,0.0397226575879929,0.0418984827528831,0.0438379859743453,0.0589857418916801,0.0729924714406877,0.086595990343235,0.0989908343768744,0.1112025663754168,0.1266363992337894,0.1381686521840691,0.1497475446856558,0.1608175569499823,0.1716457163712871,0.1845530120871656,0.1972163552667208,0.2086023144166603,0.2195602447219516,0.2297150028070407,0.2410331416414586,0.2510522848817086,0.2596870426657661,0.2684304871684327,0.2759564719358534,0.2829782555865437,0.288847279110591,0.2951561149460672,0.3007975055465611,0.3060542340743621,0.3111908372477222,0.3163485144546319,0.3208793726768165,0.3251354785179039,0.3299429356440875,0.3282527179044485,0.3272802481902792,0.3269466822805705,0.3247999075385015,0.3242754160609926,0.323979396885078,0.322785510039653,0.3229888075622805,0.3224792428332251,0.322275303932404,0.3230841208945448,0.3237351778656126,0.3248696962719528,0.3262357414448669,0.3272984848848657,0.3288468534012368,0.3296893633937191,0.3334168964652795,0.3371763966041295,0.338760026870036,0.3429993214204931,0.3439961930946967,0.3450491307634165,0.3490059717287777,0.3474244120940649,0.351890756302521,0.3575402195158623,0.3539045336528859,0.3577856558494682,0.3566355140186916,0.0,2.152583436636502,55.93721281199208,176.87019225707206,257.9440605259087,fqhc5_80Compliance_baseline_low_initial_treat_cost,42 -100000,95727,44715,422.5140242564793,6094,62.51109927188776,4797,49.411346850940696,1897,19.315344678095,77.32392886815877,79.68877845453615,63.31606620966248,65.06533269522816,77.08538092380091,79.45411700378956,63.22833930182855,64.98207793286392,0.2385479443578617,234.66145074658584,0.0877269078339324,83.25476236424834,162.22756,113.6979245176021,169468.9690473952,118773.0990395626,354.93998,229.0663827701108,370093.00406363927,238603.1234631852,364.75051,176.54026459206435,376501.4677154826,180880.09588474385,3115.35428,1415.9293353840867,3210686.5565618896,1435771.3838252383,1097.86583,483.3492254322829,1127874.8524449738,486004.6526219848,1849.91994,771.3088973420868,1886373.3533903705,768227.6424294639,0.38185,100000,0,737398,7703.134956699781,0,0.0,0,0.0,30221,314.9790550210494,0,0.0,33332,343.7588141276756,1596136,0,57333,0,0,6373,0,0,69,0.7207997743583314,0,0.0,1,0.010446373541425,0,0.0,0.06094,0.1595914626162105,0.3112897932392517,0.01897,0.3296789350039154,0.6703210649960846,24.67764320788605,4.367709839426964,0.3151969981238274,0.2505732749635189,0.2207629768605378,0.2134667500521159,11.37340406968002,5.926696773743096,20.21604260354406,12344.619221158677,54.380376026931366,14.417159688700243,16.927538663900794,11.928167246542984,11.10751042778735,0.5693141546800083,0.7828618968386023,0.6891534391534392,0.5939565627950897,0.1162109375,0.7371744277821626,0.9172259507829976,0.864406779661017,0.7132075471698113,0.1442786069651741,0.5090651558073654,0.7033112582781457,0.6355785837651122,0.5541561712846348,0.1093560145808019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688828790503,0.0046132476249378,0.0069316175127367,0.0093783657461033,0.0117996500793424,0.0140631364562118,0.0159553860897579,0.0182918737942368,0.0209285444079788,0.0228627009317088,0.0248008448076114,0.026848600587281,0.0290842920149276,0.0311479631250965,0.0331235166649468,0.0352262625844996,0.0373289693102841,0.0396271847884751,0.0416064390670008,0.0435720313818647,0.0583850153479922,0.0725039495297182,0.0860405612298399,0.0989589905362776,0.1110044920598097,0.1263724639827371,0.1388691417233439,0.1504775289871275,0.1617089452603471,0.1720001286463191,0.1850974735459702,0.1975993511759935,0.2089448394320875,0.2197585935450013,0.2289503783213091,0.2396190898017938,0.2493081592572754,0.2579610667266794,0.2670965398238125,0.2747440468683719,0.2822767505445108,0.2893707243932152,0.2963625804463513,0.301362960119019,0.3065766259049705,0.3101240051823061,0.3156351056629315,0.320842255531763,0.3249529739897516,0.3293664960926653,0.3284578953759799,0.3279858871523471,0.3265594129268981,0.3247904087572216,0.3243597184398113,0.3218498207775497,0.3201342069445763,0.3211286089238845,0.3209899738671494,0.3218936177803146,0.3228601369811744,0.323764175919706,0.3241715685248372,0.3245086420857277,0.3263740228502706,0.327348643006263,0.3265811965811966,0.329199406734198,0.3316959394988868,0.3326561504142766,0.3367244525547445,0.3384974533106961,0.3379874213836478,0.339193302891933,0.339615493891467,0.3428263731003949,0.3457317073170731,0.3435387673956262,0.3364485981308411,0.331052831622957,0.0,2.726470546387485,55.08071949007863,180.4126251714419,264.4181999924659,fqhc5_80Compliance_baseline_low_initial_treat_cost,43 -100000,95782,44550,421.45705873754986,6097,62.32903885907582,4800,49.39341421143848,1891,19.26249190870936,77.4066300966336,79.7454398681741,63.35719594835807,65.08781601179692,77.16920145814727,79.51331992641697,63.26826806932968,65.00401801411044,0.2374286384863353,232.1199417571336,0.0889278790283896,83.79799768647445,163.8681,114.80905588986616,171084.44175314778,119864.95989837982,355.34064,229.78018035615403,370282.6418324946,239192.81321767555,362.66669,175.50108053654793,374436.98189638974,179955.43234678794,3134.94354,1434.158722932969,3229058.8210728527,1453375.6895167872,1147.42463,508.0406577357474,1180013.2175147731,512476.75736634526,1845.41448,774.5765161471003,1882754.5259025705,771694.556363649,0.38022,100000,0,744855,7776.56553423399,0,0.0,0,0.0,30218,314.73554530078724,0,0.0,33178,342.1415297237477,1591866,0,57080,0,0,6609,0,0,70,0.730826251278946,0,0.0,1,0.0104403750182706,0,0.0,0.06097,0.1603545315869759,0.310152534033131,0.01891,0.3188405797101449,0.6811594202898551,24.565946976226435,4.356009592219205,0.3220833333333333,0.2354166666666666,0.223125,0.219375,11.389449443895913,6.027013819261401,19.99851654699509,12250.783309129769,54.13412405054156,13.282728758430402,17.52703390235777,11.974368331503635,11.349993058249757,0.5629166666666666,0.7734513274336283,0.702457956015524,0.5686274509803921,0.1263057929724596,0.7327044025157232,0.9146666666666666,0.8858560794044665,0.6903914590747331,0.1784037558685446,0.5017006802721088,0.7033112582781457,0.6377952755905512,0.5253164556962026,0.1130952380952381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0043296627527326,0.0065860910686922,0.0088698779756764,0.0108928916508172,0.0131361886723284,0.015354499296507,0.0175572908691879,0.0198086593891818,0.022053706660117,0.0239615467393643,0.0263608845107998,0.028397586770404,0.0306876672843318,0.0325839337807052,0.0347569286687869,0.0367561863775552,0.0389260353496086,0.0409649569364071,0.0427902134305049,0.0578070871071413,0.0719641904682221,0.086099726417962,0.098395114927428,0.1105737316263632,0.125857277213598,0.1382311165758623,0.1503790577252283,0.1612245769041979,0.171440814140332,0.1843674005207997,0.1965548562901446,0.207967919668764,0.2182302643792384,0.228098120420516,0.2384256185544195,0.2474708605208856,0.2564560918299661,0.2647242290549046,0.2728979451662755,0.2801017752847973,0.2864957105121672,0.2925810687709252,0.2979974608953937,0.3031606053980517,0.3082545512812611,0.3132575378142843,0.3177792482121497,0.3227674292080105,0.3267103213371003,0.3257913673912164,0.3244351487464568,0.3241125657032538,0.3233606498142768,0.3217477803842385,0.3204000795265114,0.3197083517454706,0.318337912087912,0.3195699436102996,0.3201674263519146,0.3200171661006829,0.320984012742611,0.3208003334722801,0.3219482889057007,0.3226623951036412,0.3248970287283372,0.3246587755564365,0.3269560875128741,0.3308113385167881,0.3330969546546901,0.3350361663652803,0.3384388652034317,0.3436524778429659,0.3440577313387957,0.3428518621199519,0.3445867287543655,0.3465692986459759,0.3499801034619976,0.3616963064295486,0.3641221374045801,0.0,2.781221930498944,55.11563425266412,176.45545504887528,266.0572553011408,fqhc5_80Compliance_baseline_low_initial_treat_cost,44 -100000,95682,44490,420.538868334692,6222,63.76329926213917,4874,50.29159089483915,1896,19.35578269684998,77.29491858535671,79.69966655566473,63.29396199958445,65.07497784149733,77.06088433894885,79.46930590528869,63.20554366838208,64.99139066480595,0.2340342464078588,230.36065037604203,0.0884183312023765,83.58717669138116,163.44702,114.45575338220443,170823.1642315169,119620.98762798063,357.16161,231.07801640983308,372636.6087665392,240863.03213753176,367.4658,177.7934664916332,380311.4169854309,182796.8850781194,3190.23036,1461.0505424335786,3292788.9362680544,1485573.5586981662,1153.00415,510.53063166663287,1184746.2114086244,513278.72710293706,1861.04238,783.4882883706656,1901832.194143099,780876.8961837974,0.38018,100000,0,742941,7764.689283250768,0,0.0,0,0.0,30433,317.39512133943686,0,0.0,33609,347.6097907652432,1589179,0,57058,0,0,6335,0,0,72,0.7420413452896051,0,0.0,0,0.0,0,0.0,0.06222,0.1636593192698195,0.304725168756027,0.01896,0.3257274119448698,0.6742725880551301,24.70016153428032,4.23799976486842,0.3024210094378334,0.2517439474764054,0.2232252769798933,0.2226097661058678,10.999451999021858,5.694482303957782,20.11874344877881,12317.650285322714,55.39088843839828,14.809323439375405,16.66534629086543,12.031369969633555,11.88484873852391,0.5615510874025441,0.7872860635696821,0.6974219810040706,0.5661764705882353,0.1170506912442396,0.717357910906298,0.9168443496801706,0.8559556786703602,0.7008196721311475,0.1052631578947368,0.5047592385218365,0.7071240105540897,0.6460017969451932,0.5272511848341233,0.1201866977829638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0049316569758592,0.007261463464175,0.0095775507091657,0.0117165630057921,0.0140654143691457,0.0164394465080207,0.0186961718821834,0.0208702057352143,0.0234178122887172,0.0255526491255064,0.0273776992459575,0.0296260470476856,0.0318049243009821,0.0335174193548387,0.0353172346036506,0.0372132064913262,0.0391835209103368,0.0412895574558392,0.0434456304202801,0.0580173404366447,0.0715631871008271,0.0847247730492732,0.0978502204497385,0.1097980458775613,0.125308191274351,0.1377436202284404,0.1495852544376178,0.1609442289402537,0.1717658421419756,0.184518742794341,0.1964830646033979,0.2080968226006394,0.2193338216163625,0.2286591066577207,0.2397727524419145,0.248574521027907,0.2576194120560032,0.2658338538413491,0.2735340656316646,0.2807708342984203,0.2869786118167663,0.2936600037893141,0.3002231339523501,0.3047600525113045,0.3101456430510985,0.3162517384386002,0.3203238371648972,0.3240882147386949,0.3285024791644688,0.3275073329565943,0.326676196497787,0.3256495106667605,0.3245745818045243,0.323072809115624,0.3212682164365508,0.3185155816350805,0.3188646374334363,0.3197032377175288,0.3210421845102913,0.3223357883661506,0.3229061353949846,0.3228068701969512,0.3236164015236388,0.3234121711400478,0.3254547834053134,0.3272290259814581,0.3305033927726053,0.3338253382533825,0.3381815291686536,0.3408592321755027,0.3450015935408477,0.3487028079653244,0.3510905083972946,0.3571764263558605,0.3582569353494463,0.3602371181030552,0.3603238866396761,0.3649714441120478,0.3624765478424015,0.0,2.5752548929883328,56.7822606369832,182.96164551128135,268.4045781975585,fqhc5_80Compliance_baseline_low_initial_treat_cost,45 -100000,95729,44279,419.5175965485903,6219,63.80511652686229,4861,50.27734542301706,1936,19.93126429817506,77.3593554540744,79.73059397281665,63.33143217950936,65.08388343265766,77.12207953068132,79.49165937464018,63.24371924807785,64.99750289868737,0.237275923393085,238.93459817647056,0.0877129314315112,86.380533970285,162.38024,113.72193973411012,169624.2309018166,118795.07482960436,352.83797,227.77253119263443,368040.5519748456,237404.48232482924,359.68703,173.4011117542477,372379.4983756229,178634.12328541835,3192.36568,1456.4989307342714,3302638.0407191133,1489930.4130767074,1131.79269,502.0397292640944,1167308.8092427582,509713.5567490967,1888.33832,789.2826789025873,1944123.933186391,800814.3841576226,0.37925,100000,0,738092,7710.192313718936,0,0.0,0,0.0,30092,313.7920588327466,0,0.0,32985,341.22366263096865,1600186,0,57371,0,0,6628,0,0,65,0.6790000940153976,0,0.0,1,0.0104461552925445,0,0.0,0.06219,0.1639815425181278,0.3113040681781637,0.01936,0.3392199017199017,0.6607800982800983,24.72820732077501,4.352528904099464,0.3137214564904341,0.2411026537749434,0.2275252005760131,0.2176506891586093,11.279232244656397,5.899026721962355,20.56475992565085,12339.960733790522,55.14659865422952,13.943766309246516,17.21462289462168,12.295854466725975,11.692354983635358,0.5679901254885826,0.7781569965870307,0.699672131147541,0.5831826401446655,0.1294896030245746,0.7333333333333333,0.92018779342723,0.8617886178861789,0.7392996108949417,0.1569506726457399,0.50920245398773,0.6970509383378016,0.6479238754325259,0.535924617196702,0.1221556886227544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497954057448,0.0046630916297505,0.0068799659045937,0.0091101135463427,0.0110938246748624,0.0135400653588117,0.0155665426372394,0.0176898107506686,0.0198626075933839,0.0221337237277203,0.0240783469209865,0.0262225372076541,0.0282007490020165,0.0302599449819182,0.0322470797044619,0.0345059284451657,0.0361942230044518,0.0381172663437503,0.0402415951098821,0.0420911193050434,0.0577111830427064,0.0715534112672813,0.0850168879937902,0.0982313726314904,0.1105838684845992,0.126959612414581,0.1397828924330691,0.1515480601337251,0.1626164828588527,0.1730694939262566,0.1858776117151385,0.1981163734776725,0.2105618173114583,0.2207618818328062,0.2300524298365422,0.240703980127089,0.2500921386211595,0.2589180250413418,0.2666923879987291,0.2746611984924335,0.2813573833462531,0.2877002221442769,0.2938012718976808,0.2989731437598736,0.3048889967244935,0.3096987825744426,0.3154478255975385,0.3206415372493201,0.324772612593963,0.3285797132011809,0.3279523643108685,0.3269611346270134,0.3256725433729016,0.3245414495090558,0.324172975215182,0.322005953743989,0.3215124804869203,0.3221284391664213,0.3219189750928481,0.3232885977715282,0.3234083168020361,0.3249407582938388,0.3258028653535544,0.3280177634234961,0.3291108756381851,0.3296628744389938,0.3310035944542706,0.3342798548666982,0.3387051372273047,0.341975700786151,0.3441508056050025,0.3445378151260504,0.3479419039766601,0.350079805426769,0.3526714700102928,0.3541936242794965,0.3567846831788482,0.3572997803075694,0.3616386326641345,0.3591097698981516,0.0,1.7924924772394624,56.38427361919077,187.01962701177607,264.7143090916824,fqhc5_80Compliance_baseline_low_initial_treat_cost,46 -100000,95884,44704,422.4479579491886,6064,62.04371949438905,4829,49.737182428768094,1940,19.773893454590965,77.4394230829848,79.71877225650917,63.39129033748679,65.07675511543825,77.19372005915781,79.4786922959738,63.29921716506343,64.99047026480416,0.2457030238269908,240.0799605353683,0.0920731724233547,86.28485063408675,163.0816,114.23625977425456,170081.72374953068,119139.67561079588,354.76536,229.43874524275083,369341.506403571,238637.8998848117,364.67641,175.97947856724224,377082.7771056693,180978.09403730012,3197.90081,1468.197622387518,3294449.3033248507,1490736.351540392,1164.28133,518.0153466302307,1195673.1362896832,521749.6866274551,1906.86474,807.094761505795,1945360.3103750364,803136.3431846146,0.38176,100000,0,741280,7730.987443160486,0,0.0,0,0.0,30192,314.18171957782323,0,0.0,33453,345.61553543865506,1597763,0,57374,0,0,6480,0,0,68,0.709190271578157,0,0.0,0,0.0,0,0.0,0.06064,0.1588432523051131,0.3199208443271767,0.0194,0.3475031605562579,0.6524968394437421,24.02852912070169,4.373714264906124,0.3172499482294471,0.2333816525160488,0.2193000621246635,0.2300683371298405,10.920309040688773,5.540271328843814,20.81899132631627,12320.59337778343,55.13288680493855,13.577022263618158,17.484780688066362,11.814692017164996,12.25639183608904,0.5622282045972251,0.782608695652174,0.7160574412532638,0.5788479697828139,0.1107110711071107,0.7215384615384616,0.8947368421052632,0.864321608040201,0.7346938775510204,0.1673640167364016,0.5035420799093228,0.7165021156558533,0.6640211640211641,0.5319410319410319,0.0951834862385321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023891476007288,0.0047225262475171,0.0069690299150934,0.0092700707693244,0.0112819783101426,0.0133188172808856,0.015492742551566,0.0175438596491228,0.019707000122594,0.0218703328627836,0.0238429459921923,0.0260206646761268,0.0282079475506869,0.0302852495805153,0.0323106107468349,0.0344681598050452,0.0367381565742781,0.0388150327948688,0.0408430232558139,0.0428522383246116,0.0580006254560617,0.0719958202716823,0.0854408176515556,0.097969212676145,0.1103226825288203,0.1256969082615306,0.1368128899670547,0.1490483224757431,0.1601612060601537,0.1721893997773782,0.1848363652001892,0.1966437223777055,0.2086171495616465,0.2187619515926351,0.2283113056099223,0.2387250290520723,0.2484841729826125,0.257883325656897,0.2669703252999762,0.2752241126966703,0.2826943292478658,0.2895963004916329,0.2959031701378218,0.3020722349251194,0.3065802410691526,0.3113100662545257,0.3164253020184587,0.3207918779145859,0.3247304041997466,0.3289345449756354,0.3280529295482968,0.3267032967032967,0.3249518345075869,0.323501386001386,0.3230919939442515,0.321537849580809,0.31922231186623,0.3191614901742252,0.3201746903681463,0.3206854781245546,0.3226180458158018,0.3237505179455812,0.3250250920040147,0.3264229090585196,0.327419239138232,0.3293344758640388,0.3290902919212491,0.3338426517820949,0.3369259117616382,0.3407964114267726,0.3440986494421609,0.3446363492315005,0.3463610171614681,0.3464052287581699,0.3494953306291859,0.3557222817672978,0.3615110698250503,0.3669404517453798,0.3710394663702057,0.3683213338385752,0.0,2.276600053132279,57.00592520452874,189.5951814592277,255.79532449682944,fqhc5_80Compliance_baseline_low_initial_treat_cost,47 -100000,95726,44845,425.0464868478783,6116,62.69978898105008,4838,49.85061529782922,1881,19.22152811148486,77.34647984393533,79.69907701466516,63.33814763576003,65.07540042132968,77.11286207157774,79.46863906633732,63.25131579173795,64.99221658671668,0.23361777235759,230.4379483278467,0.086831844022079,83.18383461299561,163.34824,114.46631043869849,170641.45582182478,119577.03282148892,358.11868,231.51811283707647,373374.5168501765,241122.40494363187,369.12111,178.36764857775432,381080.5632743456,182777.52321299625,3175.59415,1448.79589781143,3276958.9453231096,1473132.3345196124,1160.22819,509.2218005030515,1194637.8517853038,514614.62032050994,1848.23678,775.1666245423204,1891587.280362702,778352.0467908235,0.38176,100000,0,742492,7756.429810082946,0,0.0,0,0.0,30513,318.01182541838165,0,0.0,33727,347.77385454317533,1590332,0,57120,0,0,6521,0,0,65,0.6790213735035414,0,0.0,1,0.0104464826692852,0,0.0,0.06116,0.1602053646269907,0.3075539568345323,0.01881,0.3349491790461298,0.6650508209538702,24.494708087994063,4.388670236760113,0.3292682926829268,0.2284001653575857,0.2234394377842083,0.218892104175279,11.23258702333812,5.771426140852695,20.088404354782057,12329.543883133369,54.94149599143617,13.245507864450316,18.09486463238667,12.032551847739136,11.568571646860036,0.5640760644894585,0.7891402714932126,0.6942875078468299,0.57631822386679,0.1208687440982058,0.7178487918939984,0.9193154034229828,0.8425,0.7142857142857143,0.1441048034934497,0.5085794655414908,0.7126436781609196,0.644593461860855,0.5358851674641149,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024610087097427,0.0047542296424697,0.0067078677910717,0.0088072164320107,0.0109931458091809,0.0130314383450073,0.0153007135575942,0.017432306922912,0.0196154593124878,0.021807459584532,0.0240982379893192,0.0262968817358815,0.0283346698743651,0.0305692597666107,0.03275762453056,0.0348420171367737,0.0369104933478283,0.038740467915132,0.0407904448071185,0.0425902008165986,0.0563786137125317,0.0702824906063238,0.0848659707286366,0.0977117859846891,0.110063788286151,0.1259647713095515,0.1383959352094449,0.1503783404105871,0.1620424241777246,0.1730379706137671,0.1850065666243245,0.1975020275750202,0.2088635795559516,0.2191676045411335,0.2285211848106831,0.2387540954573629,0.2483692925238334,0.2576302827196869,0.266118327755403,0.2745670698185816,0.2817101808044235,0.2889367026439187,0.2954975854559227,0.3013583666031244,0.3068942477069792,0.3125723575633667,0.317065845784218,0.322014692588773,0.326331894148612,0.3295606122637647,0.3280243619802194,0.3261243650280145,0.3253539978865797,0.3248521822098217,0.3247513861430292,0.3229088457472074,0.3213054070300882,0.3215585949030798,0.3220625672743426,0.3221518422696048,0.3229864829445463,0.3242821596429558,0.3251048657718121,0.3260538798890182,0.3269272399278412,0.3285460158007638,0.3294635708566854,0.3324940198917285,0.3357579590976175,0.3379075116998493,0.339973560650955,0.3438264383707327,0.3476871004136893,0.3516030534351145,0.355929003021148,0.3558494162497022,0.3533292420988033,0.3489179256839526,0.3478260869565217,0.3457321848081441,0.0,2.6287782244236704,55.8663329191401,185.3339741266168,262.4658502090942,fqhc5_80Compliance_baseline_low_initial_treat_cost,48 -100000,95740,44645,422.1746396490496,6217,63.66200125339461,4925,50.85648631710884,1900,19.43806141633591,77.41222784566315,79.76599905118059,63.350809200748486,65.0888325486063,77.16906005176284,79.52666042033532,63.25950988949982,65.00180127501058,0.2431677939003123,239.33863084526763,0.0912993112486688,87.03127359572704,161.56272,113.26545161181666,168751.30561938585,118305.05816830065,356.62104,230.7100947165257,371904.07353248383,240392.83160328696,371.74233,179.80674606409562,384610.31961562566,185008.46727325107,3185.5974,1462.419692712099,3289842.19761855,1490135.3205487682,1156.39454,515.7771464852724,1191425.193231669,522303.2029300943,1856.05992,782.9997954732208,1899623.647378316,783862.0487314077,0.38181,100000,0,734376,7670.513891790266,0,0.0,0,0.0,30403,316.95216210570294,0,0.0,34115,352.66346354710674,1598515,0,57249,0,0,6559,0,0,59,0.6162523501148945,0,0.0,2,0.0208899101733862,0,0.0,0.06217,0.1628296796836122,0.3056136400193019,0.019,0.328177641653905,0.6718223583460949,24.285064811557472,4.311245785542205,0.3177664974619289,0.2536040609137056,0.2127918781725888,0.2158375634517766,11.514220624018147,6.066951973148793,20.04429570273725,12348.922320729229,55.763325855832015,15.003971957557912,17.53179620457381,11.601443231653365,11.626114462046932,0.577258883248731,0.8038430744595677,0.6875399361022364,0.6106870229007634,0.1157102539981185,0.7507396449704142,0.916155419222904,0.8592233009708737,0.7291666666666666,0.1800947867298578,0.5116148894486426,0.7315789473684211,0.6261925411968777,0.5754950495049505,0.0997652582159624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508811018837,0.0048446764303451,0.0073651746946394,0.0095255504102689,0.0118545328846368,0.0141192039497124,0.0164808284240781,0.0185402487678948,0.0205925335459014,0.0225588536335721,0.0247294416659834,0.0269257616818592,0.0289703100583929,0.0310903773274015,0.0334630028995078,0.0354861383887039,0.0373810485332339,0.0394260398618013,0.0412958496215586,0.0432210010938069,0.0579521015597268,0.0717402450636726,0.0849200104904274,0.0974267800033664,0.109394620490255,0.1252950078845156,0.1380020378704254,0.1500521753945098,0.161392709435414,0.1723908470355901,0.1851891786981227,0.1976195117724782,0.2089131334247947,0.2196657759866836,0.2291478437162564,0.2393663049990015,0.2491755262657768,0.2582436771249929,0.2674973308193816,0.2751665539107202,0.2828929841427959,0.28893831206836,0.2956571144490607,0.301223150000599,0.3054459352801894,0.3103044784943587,0.3139010089139485,0.3192527020333515,0.3234291029350971,0.328259439547428,0.3271700189193178,0.3257790756659675,0.3263112096672327,0.3254387606720705,0.3253763091422071,0.3230186151996225,0.3224364523490989,0.3227027291561312,0.3230139591753557,0.3238717002554641,0.3240280646902276,0.3244760185257869,0.3253253253253253,0.3270803698435277,0.3278861107788013,0.3291848164281269,0.3297064490536099,0.3337809562474626,0.3374956400418556,0.339995278936187,0.3437062463303373,0.3464321554956953,0.3488139200100144,0.3522924692197295,0.3496191714657254,0.3537359022556391,0.3535094339622641,0.3589435774309724,0.3612394672465344,0.3672616786935055,0.0,2.269507843835754,59.22504439316848,177.04699668812935,272.6290422628284,fqhc5_80Compliance_baseline_low_initial_treat_cost,49 -100000,95732,44718,422.3352692934442,5978,61.13943091129403,4658,48.08214599089124,1859,19.03229849997911,77.32373385663094,79.69304699793794,63.321321634088775,65.07485889557375,77.08375561487692,79.45643363847712,63.23073550703333,64.98875899842663,0.2399782417540166,236.61335946081863,0.0905861270554453,86.09989714712185,163.27806,114.36119896251942,170555.84339614757,119458.269791412,352.45918,228.7786488725026,367614.2042368278,238421.2407218251,361.75195,175.3359966274394,374755.0557807212,180736.1586674241,3067.66018,1418.0657184323743,3165884.7929636906,1442917.6666299934,1115.10617,501.1260368177118,1146483.7358459032,505223.7451173936,1822.5749,776.9133089546233,1866051.5814983496,777324.8320641796,0.38068,100000,0,742173,7752.538336188526,0,0.0,0,0.0,30025,313.0405715957047,0,0.0,33034,341.9964066351899,1592396,0,57169,0,0,6638,0,0,68,0.6998704717335896,0,0.0,0,0.0,0,0.0,0.05978,0.1570347798676053,0.3109735697557712,0.01859,0.3291964996022275,0.6708035003977725,24.48162636969093,4.398426777838932,0.3278231000429369,0.2219836839845427,0.2282095319879776,0.2219836839845427,11.06975160420042,5.7518093484216655,19.925961650857367,12345.634572612593,53.009482359862176,12.467924076348542,17.201347054870592,11.96234575003131,11.37786547861174,0.5538857878917991,0.7659574468085106,0.6817288801571709,0.587958607714017,0.1179883945841392,0.7073552425665102,0.8961038961038961,0.8673469387755102,0.7175572519083969,0.1297071129707113,0.4958579881656805,0.6887519260400616,0.6176211453744493,0.5455680399500624,0.1144654088050314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021783181357649,0.0045027229304207,0.0069935038570848,0.0092880515415726,0.0118122252970861,0.0140981368863897,0.0162260841186309,0.0184857986171397,0.0205740697186915,0.0229812074350965,0.0250233311796859,0.0272779557965656,0.0292483693751157,0.0314103753168861,0.0335370259501641,0.0356153337192953,0.0378149954945157,0.0398422909317285,0.0418100714337703,0.0439104701567189,0.0591926659148811,0.0728378392522581,0.0858030066195986,0.098554657914668,0.1108662181258304,0.1260944042634183,0.1386663837462203,0.1504974727321096,0.1612765412056222,0.1718961116949407,0.1850045225481328,0.1969687134882513,0.2081013484123532,0.2191241594226669,0.2281253781919399,0.2387091058099098,0.248717491189722,0.2573544283884307,0.2652392347210724,0.273020668818238,0.2801548774849746,0.2866393164790724,0.2932439304170953,0.299466778503385,0.3054620981161409,0.3104770122026377,0.3156115396173495,0.3197478188881105,0.3243222217900346,0.3282248270764032,0.3282413955681282,0.326900294790203,0.3257515934344859,0.3250676741795862,0.3245636225651404,0.3230710290399203,0.3210122578094108,0.3212686750742083,0.322352379490852,0.3236374006345132,0.3242878813416484,0.32557082138974,0.3264710820112482,0.3281057466114036,0.3288661781720015,0.3307629976213503,0.3328087444202816,0.3364222911000063,0.3398051397910195,0.3439625510122429,0.3476623495912556,0.3508611901057037,0.3511571719226856,0.3549480169426261,0.3556584167768751,0.3567069522555941,0.3557457212713936,0.3572878603329273,0.3600766703176342,0.3563748079877112,0.0,2.196869839862061,55.87555455845081,175.60632597840194,250.5775280971976,fqhc5_80Compliance_baseline_low_initial_treat_cost,50 -100000,95772,44571,421.4801820991521,6104,62.55481769201854,4784,49.28371549095769,1915,19.535981288894455,77.38153749659537,79.72251576189161,63.350937847410606,65.08252122754283,77.14070215819748,79.48598146821432,63.26092116404803,64.99699167859498,0.2408353383978863,236.53429367729476,0.0900166833625775,85.52954894784648,162.90274,114.1323175255944,170094.3281961325,119170.86155201352,354.89453,229.67805493116367,369894.4472288352,239150.2567633793,364.79491,176.35614634525052,376861.8489746481,180957.52434717384,3152.21077,1450.9090478068483,3249155.8075429145,1472756.5421634289,1159.18765,513.9857838818616,1189228.0102744016,515549.3798709184,1888.8981,795.5999929716,1928761.8301800108,794286.921812169,0.37994,100000,0,740467,7731.560372551476,0,0.0,0,0.0,30273,315.3740132815436,0,0.0,33437,345.0382157624357,1595295,0,57261,0,0,6362,0,0,60,0.6264879087833605,0,0.0,2,0.0208829302927786,0,0.0,0.06104,0.1606569458335526,0.3137287024901704,0.01915,0.3328627450980392,0.6671372549019607,24.2520880261801,4.436271512696108,0.31438127090301,0.2385033444816053,0.2153010033444816,0.231814381270903,11.27650283154533,5.677894913999593,20.340655182777624,12258.95742360318,54.24193388727518,13.589097466936169,16.982158743895045,11.499337025324982,12.171340651118992,0.5604096989966555,0.8019281332164768,0.694813829787234,0.5737864077669903,0.1172227231740306,0.7241899020346647,0.9204819277108434,0.8602409638554217,0.7023809523809523,0.1836734693877551,0.4975412207115997,0.7341597796143251,0.6317722681359045,0.532133676092545,0.0983796296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024509307460147,0.0048350801792121,0.0071222758816606,0.0093436113057696,0.0114687760538463,0.0135081486608915,0.0156971469925693,0.0176978505378758,0.019947474375875,0.0221931179847134,0.0246041912179125,0.026790938298724,0.0288302367904255,0.0307448363913428,0.032944816915936,0.035078112084642,0.037129020240904,0.0392868249196641,0.0409814778263715,0.0430206044957156,0.0576357147329534,0.0717483161109484,0.0848045793843831,0.0979287733420203,0.1101017977954349,0.1251624903562634,0.1376353886262956,0.1487608577777305,0.1595197438633938,0.170070214932733,0.1828193121265945,0.195009572017262,0.2062410329985652,0.2170591770941478,0.2270962348619009,0.2369021257750221,0.2457063835482,0.2549833046645755,0.2635853229739692,0.2714684610455003,0.2787865470022205,0.2854837955385119,0.2922266919072409,0.2981312889314806,0.304248576320167,0.3100110823790173,0.3142832148168514,0.3201515690961802,0.3244306418219462,0.3283103939250119,0.3275927022227006,0.3266097430186033,0.325341259667263,0.3243133853714947,0.3233799048751486,0.3212339252908757,0.3194429075043078,0.3207766481672478,0.3216917709131138,0.3217437722419929,0.323124929930117,0.3237503697131026,0.3247318123836808,0.3252365295578071,0.3259293055422149,0.32640245967847,0.3277294191272686,0.3305873140172278,0.3331352881557334,0.3345337976887763,0.3384049414115723,0.3420340601623428,0.3424458614811541,0.3433849912207039,0.3431751721535704,0.3481920569057498,0.3502290076335878,0.348757324712063,0.3465264323277055,0.352512466436517,0.0,2.565935804751694,57.80023860086733,172.37656483736677,262.39730193262017,fqhc5_80Compliance_baseline_low_initial_treat_cost,51 -100000,95866,44278,419.4917906244132,6000,61.4607890180043,4756,49.13107879748816,1919,19.673293972837087,77.37299817448195,79.67495608738042,63.35320242165369,65.05712501563222,77.13824755321995,79.43985245354868,63.266773136767725,64.97266001626699,0.2347506212619947,235.10363383174135,0.0864292848859662,84.46499936523821,164.32614,115.06716581327372,171412.32553772975,120029.1717744286,356.13897,229.92715720958975,370988.6925500177,239343.8981608875,358.69125,172.7623420212673,371482.3399328229,178072.19890355656,3125.42238,1420.439347301702,3229879.415016794,1452182.1702873742,1114.84716,485.57251101642026,1148898.2538126134,492574.0943986649,1876.80202,777.5632458998864,1925977.0095758664,785394.4079553238,0.37919,100000,0,746937,7791.469342624079,0,0.0,0,0.0,30360,316.16005674587444,0,0.0,32818,339.5990236371602,1589363,0,57092,0,0,6560,0,0,65,0.6780297498591784,0,0.0,0,0.0,0,0.0,0.06,0.1582320208866267,0.3198333333333333,0.01919,0.3459468017732742,0.6540531982267258,24.307042570889017,4.393467999278925,0.3202270815811606,0.2365433137089991,0.2218250630782169,0.2214045416316232,11.13732773887756,5.713793235141483,20.2619579394186,12228.09243038204,53.897639920788926,13.375162690527407,17.36002197942549,11.73089346607144,11.431561784764598,0.5586627417998318,0.7733333333333333,0.6874589625738674,0.5857819905213271,0.1158594491927825,0.7240547063555913,0.9031413612565444,0.8423645320197044,0.7182539682539683,0.1576354679802955,0.5001423284941645,0.7065948855989233,0.631154879140555,0.5442092154420921,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078185132671,0.0043580933848196,0.0066644350445817,0.0087829742298397,0.0108269117377955,0.0131921824104234,0.0152884938795062,0.0173386808723428,0.0192808754559666,0.0216096752409601,0.0236258388402233,0.0257420460258343,0.0279636195467858,0.0299736495388669,0.0319990103398864,0.0340066505566226,0.0359518710491738,0.0379992124515554,0.0399800618912126,0.0416172461868198,0.0558793781216437,0.0693110690811816,0.0830627082067506,0.0960221783509052,0.1083577311119068,0.1238868877222263,0.1360842658528314,0.1478784141531199,0.1594193617248372,0.1695151352799357,0.1817849186961247,0.1945351174906504,0.2062908940721257,0.2168683919922152,0.2268951022788543,0.2372207392310844,0.2470628925905678,0.2562022525005907,0.2648940514542402,0.2723297080709788,0.2790824054482176,0.286008350779523,0.2931207914699234,0.2998407013929645,0.3051314416098259,0.310425081272781,0.3155885923089437,0.3203937829106357,0.3253132118451025,0.3286532421947164,0.3280595688529226,0.3271163110805231,0.3262184376365764,0.3248792619798143,0.3234870209952303,0.3216073478760046,0.3203520770010131,0.3205224982769372,0.3212694402239787,0.3218513955107944,0.3221573252461717,0.322199616805262,0.3230424681332021,0.3231026785714285,0.3234454809237188,0.32441576016239,0.3236628155755242,0.3252689863461901,0.3299034240561896,0.3339798907449924,0.3362139172925527,0.3388915356518977,0.3404268714978278,0.3406769324592163,0.3427791376388627,0.3444144249970633,0.3450800915331807,0.3461224489795918,0.3474646716541978,0.337151584574265,0.0,1.825394384987173,54.94492422540697,179.23593547763693,264.09358464045914,fqhc5_80Compliance_baseline_low_initial_treat_cost,52 -100000,95798,44492,421.41798367398064,6141,63.02845570888745,4836,49.96972796926867,1930,19.791644919518152,77.39816222968327,79.72839103400811,63.35848721039546,65.0798899052791,77.16239143116941,79.49212295129365,63.27193225652913,64.99511490996228,0.2357707985138546,236.2680827144601,0.086554953866333,84.77499531682042,162.11008,113.57190804200113,169220.50564729952,118553.32394996028,356.47886,230.50151170134097,371593.30048644025,240091.2835663728,360.36405,174.00550950209237,372735.2554333076,178987.7918543691,3173.05959,1431.2348202949634,3283730.641558279,1465621.249079525,1166.30114,505.7560057390461,1204613.9898536503,515207.0310761221,1887.0008,780.898500368032,1938745.6940645943,790346.1322735961,0.38042,100000,0,736864,7691.841165786342,0,0.0,0,0.0,30312,315.8834213657905,0,0.0,33081,341.9486836885948,1598890,0,57381,0,0,6340,0,0,60,0.6158792459132758,0,0.0,0,0.0,0,0.0,0.06141,0.1614268440145102,0.3142810617163328,0.0193,0.3352448853068815,0.6647551146931184,24.49834394240368,4.33832826785066,0.3234077750206782,0.2353184449958643,0.2177419354838709,0.2235318444995864,11.128253096182554,5.80669268874537,20.47585464023944,12275.744274816476,54.676329712632494,13.619497150822442,17.718283929217012,11.664633390124845,11.673915242468198,0.5564516129032258,0.773286467486819,0.6975703324808185,0.5593542260208927,0.1211840888066605,0.7290524667188724,0.9184652278177458,0.8393285371702638,0.691358024691358,0.15,0.4945209328463051,0.6893203883495146,0.6460331299040977,0.519753086419753,0.1146424517593643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267545725223,0.0042362574995946,0.0065434403278821,0.0087029815582094,0.0111015096833223,0.0131597695768111,0.0155296275538798,0.0174162347467657,0.0197999570898762,0.0219971352568037,0.0242703029433761,0.0261669967470831,0.0283846833699874,0.0305475504322766,0.0325577079703496,0.0345461493178555,0.0366619425450257,0.0385101926546525,0.04036205301936,0.0422146553788801,0.0569478934079005,0.0713852460730794,0.0856187361093638,0.098712626766854,0.1111544461778471,0.1262182102615056,0.1378681344320363,0.1498175163064874,0.1602558626286788,0.1701867615841499,0.1827726567884217,0.1954363577376446,0.2077978511911875,0.2184223173715484,0.2282866687178585,0.2386441577980839,0.2482635598416857,0.257679679769722,0.2659619114594558,0.2737547234627276,0.2812153163152053,0.2887717411632691,0.2950734310836558,0.3007416104568272,0.3055235274841309,0.3095437421515278,0.3144971745761864,0.32002948877647,0.3239943551832623,0.327590982838902,0.3263591566362387,0.3242232094961693,0.3237253990392065,0.3231004707309325,0.3224777921134196,0.3205453489438449,0.3184570389692514,0.3196545338337239,0.3201639064367423,0.3201241261235554,0.3212442017058207,0.3219826478784166,0.3234524482404907,0.3243182983656997,0.3258628524958741,0.3272098945070935,0.3284181926244587,0.3300318690245579,0.334517218566106,0.3359842519685039,0.3365240665971056,0.3410946636464205,0.3439541975231813,0.3423921271763815,0.3457148203592814,0.3470525441821848,0.3532262950621024,0.3514871382636656,0.3477665113729789,0.3442125237191651,0.0,1.98803528653954,56.294327360646136,178.3293552483594,269.70544606848995,fqhc5_80Compliance_baseline_low_initial_treat_cost,53 -100000,95884,44609,420.97743106253387,6205,63.493387843644406,4861,50.18564098285428,1927,19.773893454590965,77.3584022892406,79.64199187886668,63.35300198276878,65.04219405862621,77.11815330275499,79.40135170866812,63.265118238904,64.95638885298786,0.2402489864856107,240.6401701985601,0.0878837438647863,85.80520563835137,164.33186,115.07450536241846,171386.11238579953,120014.29369072888,357.51297,230.7904627749564,372363.5747361395,240201.266921443,362.84022,175.1848683759461,375236.2959409286,180159.81780381512,3191.17435,1449.0022507097665,3297737.2032873053,1480779.1088291735,1144.24829,500.9478596445338,1179693.3064953485,508796.4025498304,1891.23248,786.8290358882423,1942679.3834216343,795381.3506937028,0.38147,100000,0,746963,7790.27783571816,0,0.0,0,0.0,30421,316.7473196779442,0,0.0,33290,343.9677109841058,1587499,0,57023,0,0,6400,0,0,68,0.709190271578157,0,0.0,0,0.0,0,0.0,0.06205,0.1626602354051432,0.3105560032232071,0.01927,0.3269172013443324,0.6730827986556676,24.642192054139684,4.362953291128282,0.3198930261263115,0.234931084139066,0.2240279777823493,0.2211479119522732,11.154166594249372,5.728841810820358,20.473465891311715,12305.304564642043,55.29242714085616,13.63560098571554,17.701402988162354,12.247822994270356,11.707600172707917,0.5657272166220942,0.7924693520140105,0.704823151125402,0.5775941230486685,0.1116279069767441,0.7393658159319412,0.903755868544601,0.8411910669975186,0.7962264150943397,0.1055276381909547,0.5028026905829597,0.7262569832402235,0.6571180555555556,0.5072815533980582,0.1130136986301369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022881673399548,0.0043975641142556,0.0067551804931484,0.0091279229152494,0.0112522870502134,0.0134338839190303,0.0158523167203227,0.0182977204344943,0.0207161308107776,0.0226643085699097,0.0245580271684052,0.0266144493084959,0.0285212497175605,0.0307883800353865,0.0328943300562666,0.0350321101864662,0.0371573394020895,0.0392803100968016,0.0414568037136655,0.0433525109499682,0.0573787581835619,0.0711897697354674,0.0849390524860721,0.0973486638315745,0.1095229568459747,0.125521554046203,0.1380264078163745,0.1497352359483656,0.1607962429288077,0.1714616473009475,0.1847664577815104,0.1964716444386756,0.2081426319508615,0.2195548559184922,0.2286776105289777,0.238659628387725,0.2479983049713406,0.2567368551224832,0.2652012657797135,0.2729251139669668,0.279851911841268,0.2872748538011695,0.2944276038459716,0.3001822410857732,0.3054178212046084,0.3103452527743526,0.3153241158200581,0.3201706897649831,0.3241311313778654,0.3279041789505691,0.3280249194298736,0.3271276595744681,0.3261028996953627,0.3252159569388375,0.3238774204110792,0.3216510664416142,0.3205299063937807,0.3216917812726196,0.3222305901684239,0.3221453720086501,0.3232414181204276,0.3241343812483915,0.3245790821681992,0.3247901510912143,0.3252727666851321,0.3245474671181143,0.3257787141962303,0.3286862597337352,0.3334501980857554,0.3356748819303885,0.3388848329987224,0.3431206275174899,0.3456183456183456,0.3485687903970452,0.3515907791960373,0.357280385078219,0.362194932379916,0.3588438835741909,0.3612334801762114,0.3705118411000764,0.0,1.998804888632611,57.08733438794779,188.9140188076448,260.0034955679213,fqhc5_80Compliance_baseline_low_initial_treat_cost,54 -100000,95728,44565,422.3320240681932,6093,62.41642988467324,4814,49.65109476851078,1869,19.053986294501087,77.38965647392791,79.7554663627836,63.34469261111818,65.09347845070423,77.16375282143044,79.53334360912692,63.26179791560951,65.0148149032358,0.2259036524974789,222.1227536566772,0.0828946955086777,78.66354746842319,163.43778,114.41514049617604,170731.42654186863,119521.08107990978,355.16379,229.5600717186099,370357.0324252048,239148.0671471356,363.13808,176.0619384862868,375672.9274611399,181007.80079072271,3125.55629,1422.6579447439522,3225035.976934648,1446143.3381497078,1129.4044,500.8913988117606,1163019.0644325588,506481.8957933105,1830.99532,758.9111228869646,1870203.32609059,757433.9296319127,0.38039,100000,0,742899,7760.519388266756,0,0.0,0,0.0,30302,315.8741434063179,0,0.0,33339,344.5909242854755,1593631,0,57149,0,0,6414,0,0,50,0.5118669563763998,0,0.0,0,0.0,0,0.0,0.06093,0.1601777123478535,0.3067454455933038,0.01869,0.3333854818523153,0.6666145181476846,24.87383989431597,4.331260785572199,0.317823016202742,0.2426256751142501,0.2212297465724969,0.218321562110511,11.115709211117649,5.727058165702776,19.69192921002704,12294.070077649752,54.26528561183242,13.86847473334055,17.18080345862729,11.904761784426382,11.31124563543819,0.5585791441628584,0.785958904109589,0.6745098039215687,0.5887323943661972,0.1065651760228354,0.7637795275590551,0.9333333333333332,0.8728606356968215,0.7674418604651163,0.1868686868686868,0.4850451467268623,0.7077326343381389,0.6021409455842998,0.5315985130111525,0.0879249706916764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025929827404586,0.0050485082570481,0.0072458620444697,0.0094987504317613,0.0115149480708393,0.0138996374893079,0.0160275690500708,0.0182725778626187,0.0204432087660479,0.0226730676711739,0.0248057565755755,0.0268769184966172,0.0289385762014906,0.0308500231684085,0.0328303404742504,0.0347254518959476,0.036594079090429,0.0383761464082665,0.0402756412921465,0.0423044461347698,0.0570811059137988,0.070807297390649,0.0840188014101057,0.0967175170962651,0.1092790682954617,0.1251004780640521,0.1377071442211801,0.1487634088200238,0.1604635018956586,0.1706579441256903,0.1838747536959073,0.1956923875769409,0.2075935328846509,0.2183102441584569,0.227580288477407,0.2378200017716361,0.2474742969290126,0.2564131375214895,0.2643887950482366,0.272117870461461,0.2790114323365199,0.2861699890163819,0.292924996455409,0.2997511247248013,0.3056515884857527,0.311162258298768,0.3157842107894605,0.320314684425917,0.3248002482352028,0.3289894983727089,0.3278042879225754,0.3264047259238906,0.325453855131973,0.3243414788955887,0.3247815138498,0.3227924447634026,0.3211327601167468,0.3221446897520958,0.3230860634866745,0.3235982966643009,0.3242986829377186,0.3258316641137426,0.3271323636514971,0.3274969447839129,0.32883356429493,0.3288654982889142,0.3293954331690181,0.3321314353796952,0.3354270475121061,0.3390989701379776,0.3389109861473049,0.340822767881025,0.3436217888026258,0.3450204019948617,0.3479635484470894,0.3521540086864655,0.3558885861338177,0.3570145679505089,0.3587310195227766,0.3619445499430307,0.0,2.4374336668905627,55.384193042890665,179.13690372851931,264.59996626716696,fqhc5_80Compliance_baseline_low_initial_treat_cost,55 -100000,95750,44484,419.8120104438642,6218,63.48825065274151,4902,50.49608355091384,1925,19.62402088772846,77.34687979821054,79.70661270485628,63.33382307926016,65.08164804389357,77.10477263220866,79.46830686273786,63.24281972460887,64.99481382759613,0.2421071660018725,238.30584211842165,0.0910033546512849,86.83421629743293,162.20732,113.65208339156798,169406.89295039163,118696.47665124592,355.84902,229.3105202271986,370971.1018276762,238816.57359707425,362.11375,175.32779635356803,374260.89817232377,179997.09244703135,3227.44033,1479.8824571023092,3329224.981723238,1504159.7120870077,1169.4676,522.7601943948074,1202707.8015665798,527364.2638104706,1891.26842,803.076010289953,1931641.503916449,802262.8265441769,0.38138,100000,0,737306,7700.313315926893,0,0.0,0,0.0,30286,315.5822454308094,0,0.0,33131,341.9738903394256,1600635,0,57487,0,0,6590,0,0,73,0.762402088772846,0,0.0,0,0.0,0,0.0,0.06218,0.1630394881745241,0.3095850755870055,0.01925,0.3278410840776101,0.6721589159223899,24.565146942552214,4.397364465833133,0.3400652794777641,0.2219502243982048,0.2158302733578131,0.2221542227662178,11.26928127087924,5.873010996377602,20.594962345322163,12361.630429388111,55.50015229329696,12.983361625033773,18.87404090874365,11.696682095123514,11.946067664396008,0.5573235414116687,0.7840073529411765,0.6922615476904619,0.5623818525519849,0.1193755739210284,0.7253846153846154,0.9250645994832042,0.8545034642032333,0.696,0.1782608695652174,0.4966685174902832,0.7061340941512125,0.6353322528363047,0.5210396039603961,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022496047991569,0.0046343244229911,0.0067614213197969,0.00925841234997,0.0116790103361276,0.0141646809637278,0.0166173921908451,0.0187525520620661,0.021089325509599,0.0235286890281361,0.0254775110983524,0.0276200548294025,0.0297916538121387,0.0319031676538758,0.0339955622065122,0.0359734540718228,0.0382309388946992,0.0400531136861105,0.0418814968814968,0.0439129031250325,0.0587013475007045,0.0718761441497986,0.0852451453256721,0.0981395837712844,0.1104775556234783,0.1255178390260399,0.1379825733002607,0.1500297720313031,0.1612951405558222,0.1718744978736623,0.1848461050208169,0.1971878174783304,0.2086438799678407,0.2191483087408119,0.2291007383966244,0.2402722443559097,0.2503039022159768,0.258705796368134,0.2670510652304689,0.2750060145035456,0.2820405990324746,0.2888337585133522,0.2955479006120009,0.3015323006090835,0.3066721721600155,0.3116261323355652,0.3162372843182643,0.3213359108714453,0.3253005811018934,0.328960552684316,0.3282385232226468,0.3271646555401147,0.3262255626398682,0.3254307235000432,0.324958447109106,0.3231360186092066,0.3214150107581319,0.3216261924699932,0.3229851868304601,0.3233718937446443,0.323953688785642,0.3241062954761151,0.3249738110203226,0.3254080193431392,0.3260172982870359,0.3268008058818912,0.3276433922342311,0.3300544028340081,0.3344255364126414,0.33498067035989,0.3363390854579576,0.3377342419080068,0.3396775213404995,0.3407948835084513,0.3448855674918262,0.3475746488846925,0.3522761992056217,0.3544303797468354,0.3606603245663122,0.371191135734072,0.0,2.680711763615356,56.43336596492543,181.36590850798527,273.2689399471143,fqhc5_80Compliance_baseline_low_initial_treat_cost,56 -100000,95746,44514,421.39619409688135,6141,62.958243686420325,4763,49.077768261859504,1900,19.405510412967644,77.36211040614715,79.72541352072912,63.32787542470121,65.07631674127221,77.12839694985158,79.49437091591831,63.24198707115474,64.99406153871074,0.2337134562955753,231.04260481080985,0.0858883535464727,82.25520256146979,163.87492,114.73786666822058,171155.89162993754,119835.67633971192,353.85497,229.3333118115808,368925.1248093915,238870.9625588336,361.09656,175.17226489824503,372943.5798884549,179661.46480597125,3117.77725,1428.2807174938032,3213556.472333048,1448995.51677752,1136.28587,501.8170864767189,1168733.5032272888,506089.3548367244,1853.31614,772.0949535754644,1894602.1765922336,772451.1254263587,0.38033,100000,0,744886,7779.813255906252,0,0.0,0,0.0,30170,314.4256679130199,0,0.0,33179,342.40594907359053,1589667,0,57062,0,0,6503,0,0,60,0.6162137321663569,0,0.0,0,0.0,0,0.0,0.06141,0.1614650435148423,0.3093958638658199,0.019,0.3298453849757926,0.6701546150242074,24.44777998066627,4.363295771356117,0.3168171320596263,0.2424942263279445,0.2231786689061516,0.2175099727062775,11.419212004364478,6.047002394375662,20.254161624744672,12302.320778139096,54.303618721286206,13.99734439357704,17.029843394196437,11.966984476534584,11.309446456978147,0.5698089439428932,0.7792207792207793,0.7011265738899933,0.5964252116650988,0.1177606177606177,0.7292944785276073,0.8954545454545455,0.8403141361256544,0.7642585551330798,0.1598173515981735,0.5096848800231281,0.7076923076923077,0.6539485359361136,0.54125,0.1064871481028151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289089490694,0.0045024033098748,0.0069536087706831,0.0089110621132527,0.0111896648186765,0.0135454434350429,0.0158668651724348,0.0178469329412725,0.020040899795501,0.0220060416773334,0.0240280583729015,0.0259776278080798,0.0280141150811205,0.0302552529343267,0.0322840334399834,0.0344492462935009,0.0366159262710986,0.0386897968500342,0.0405708821022431,0.0427273863589017,0.0575278975333256,0.0715302044317967,0.0845717402019905,0.0979921959633567,0.1104137880114337,0.1249563736740241,0.1377378906498631,0.1495683277089964,0.160758547008547,0.1713789443211425,0.1845426546919084,0.19687510144018,0.2081316553727008,0.218684719958877,0.2281190167037126,0.2389365826640819,0.2487105057496929,0.2580768538516919,0.26731774821066,0.2747933411188202,0.2819584109608063,0.2890942050172504,0.2953044754218635,0.3006235759683415,0.3055612907927177,0.310349927894393,0.3150870164016527,0.3197780238522535,0.3247436030249663,0.3291199366671065,0.3278589135589567,0.3266882356990431,0.3256960189266452,0.3247492702101217,0.3239622781614316,0.3225554585955082,0.3201589160783817,0.3203693983334427,0.3210844914314946,0.3214393817994053,0.3214352422578355,0.3222143503758806,0.3227025109056375,0.3236755889366823,0.3238910058235675,0.3258678029515693,0.3266638285795374,0.3304750578957251,0.3332053876753437,0.3354103403399456,0.3391791719399747,0.3394746538927199,0.3419488078102509,0.3469003912127595,0.3478907266307378,0.3526290969111059,0.3504014543251023,0.3524378109452736,0.3580880367269781,0.3592307692307692,0.0,2.5713174734590414,56.8542499774318,182.72307053584933,252.89046152318437,fqhc5_80Compliance_baseline_low_initial_treat_cost,57 -100000,95764,44446,420.084791779792,6188,63.43719978279938,4852,50.12321958147112,1947,19.98663380811161,77.32840490063373,79.6884272378826,63.31625382636724,65.06445235235549,77.08431048270558,79.44549615559187,63.22588380123054,64.97703267009769,0.244094417928153,242.93108229073823,0.0903700251366999,87.41968225780283,163.9352,114.83568151400036,171186.66722359133,119915.29333987756,355.93845,230.5219788680037,371138.569817468,240174.5650639752,364.11404,176.13422679251894,376765.4859863832,181216.6564122336,3190.98795,1454.3796283465488,3296220.751012907,1482909.3582544036,1138.33199,508.5108530669105,1174198.5506035672,516645.52881935233,1904.07022,800.7420430301158,1955802.159475377,807931.3598020645,0.37824,100000,0,745160,7781.212146526879,0,0.0,0,0.0,30324,316.06866881082664,0,0.0,33358,344.8686353953469,1587504,0,56991,0,0,6586,0,0,57,0.5952132325299695,0,0.0,0,0.0,0,0.0,0.06188,0.1635998307952622,0.3146412411118293,0.01947,0.3288343558282208,0.6711656441717792,24.67295454172005,4.38459955598265,0.3270816158285243,0.2326875515251442,0.2194971145919208,0.2207337180544105,11.116493221782331,5.669928635740271,20.72305176525182,12226.5602147259,55.11807382920858,13.566764711691471,18.03776140621701,11.711702262280822,11.80184544901929,0.5558532563891179,0.7794508414526129,0.6824196597353497,0.568075117370892,0.1204481792717086,0.7173061863743148,0.9023809523809524,0.8337408312958435,0.6798245614035088,0.1863636363636363,0.4981818181818181,0.7066290550070522,0.629881154499151,0.5376344086021505,0.1034077555816686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989603072464,0.0045335605184689,0.0067112049709621,0.0089432712046992,0.011067933511017,0.0134554269882659,0.0158060042421275,0.018060603585576,0.0203336809176225,0.022488586811882,0.024601506842294,0.026839711272884,0.0289184380752578,0.0310752211933626,0.0330836067942129,0.0350198976691301,0.0368510946638372,0.0390782186637904,0.0410583088258217,0.0432849034005103,0.057741083636895,0.072104674148372,0.0853832442067736,0.0975761015808947,0.1095129712756317,0.1247331148927174,0.1371686108165429,0.1487074699615806,0.160025205865704,0.1707609989384402,0.1832408853465453,0.1952523154159093,0.2065345112716511,0.2169823701824226,0.2262304466045067,0.2363028114407249,0.2465120432171797,0.2554990206452484,0.2632995333098663,0.2710570652485358,0.2781198638857381,0.284900384889856,0.2920278527781725,0.297630047399052,0.3024924012158054,0.3079579227762088,0.3127688121481147,0.3175893482831114,0.3218969296823317,0.3255629663871096,0.3243585768022543,0.322968022695348,0.3221115874985896,0.3221894602954355,0.3216489939174016,0.3199607410133726,0.3183316952537966,0.3186350324130442,0.3191736979924353,0.3194096601073345,0.3205558576974289,0.3210494059034025,0.32308883216871,0.324112618056488,0.3246228253807839,0.3263811038402378,0.3276781386330586,0.3314906715245932,0.3351201737789923,0.3391383687718184,0.339228880603801,0.3426517993975585,0.3464133966508373,0.3500302206104563,0.3551611396543671,0.3575038194852509,0.3585020551073222,0.3607827150428047,0.3637121422617393,0.368565815324165,0.0,2.0689963502027195,56.22020817759108,188.1142985395355,262.17184319511074,fqhc5_80Compliance_baseline_low_initial_treat_cost,58 -100000,95726,44521,422.0587928044628,6087,62.29237615694796,4794,49.45364895639638,1946,19.92144245032697,77.31464774318667,79.68208612698126,63.30648041847581,65.05658411505792,77.06495520880738,79.43374004702831,63.21449130211382,64.96785196469281,0.2496925343792924,248.34607995295244,0.0919891163619865,88.73215036510373,164.31228,115.07589065855744,171648.53853707455,120213.82974171848,358.7202,231.6807516116361,374040.10404696735,241328.56445650724,361.12565,174.5318248385865,373571.798675386,179409.75343605288,3147.0697,1433.6991778044803,3248868.729498777,1458999.1828808077,1139.43112,496.889353152196,1173149.8861333388,501919.742966588,1920.66762,807.5086122801058,1968599.0013162568,810236.3784123322,0.38058,100000,0,746874,7802.206297139753,0,0.0,0,0.0,30533,318.3252198984602,0,0.0,33013,341.20301694419487,1584560,0,56820,0,0,6628,0,0,60,0.6163424774878299,0,0.0,0,0.0,0,0.0,0.06087,0.159940091439382,0.3196977164448825,0.01946,0.3334379905808477,0.6665620094191522,24.52974800869026,4.352712217359325,0.3143512724238632,0.2327909887359199,0.2188151856487275,0.2340425531914893,10.845316390953448,5.458948155108619,20.739078801083476,12206.718851535135,54.120888628057415,13.32457244818968,16.961361131888335,11.49532810916108,12.339626938818332,0.5527743012098456,0.7849462365591398,0.7007299270072993,0.5624404194470924,0.1140819964349376,0.7232854864433812,0.9128329297820824,0.8753117206982544,0.7040358744394619,0.1013824884792626,0.4923728813559322,0.7098150782361309,0.6374321880650995,0.5242130750605327,0.1171270718232044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0042481572730683,0.006455673074971,0.0087287877248247,0.0110178544178238,0.0130812176535311,0.0152212281041817,0.0172040595454452,0.0194017950238177,0.0215695507964456,0.0237047973506402,0.025638656152456,0.0277006315702853,0.029870892623466,0.0321222130470685,0.0343836579415291,0.036460220977312,0.0381857612767326,0.0403439634824742,0.0421623986831412,0.0568415557295745,0.0705059766794364,0.0837302503199815,0.0961309930696505,0.10828025477707,0.1236366329196949,0.1362613568820582,0.1483346820563056,0.1597951919273978,0.1703867450744731,0.1834289534984039,0.1952498591427209,0.2070287818375928,0.2175952307894621,0.2274927502673855,0.2371217589251013,0.2469599847859404,0.2550702731969229,0.2639313867118629,0.2711369927523747,0.2785767303766933,0.2857042385596399,0.2925244284223508,0.2982015943142528,0.3035594848658048,0.3085227132528931,0.3129889474408882,0.3172407650120249,0.3219152377871239,0.326500210925965,0.325776330660352,0.3237889701435091,0.3230719468976767,0.322290547953115,0.3213855824528554,0.3199344352701481,0.3179024081115336,0.3183850604944765,0.3200944170771757,0.3200285867428979,0.3207533013205282,0.3215563771525732,0.3227743487812533,0.3230648944487881,0.3247889965614254,0.3263917848206839,0.3267632187848144,0.3297972802820448,0.3336141533277169,0.336554137341445,0.3404829415530961,0.3425891381975164,0.342958685028876,0.3447216890595009,0.3489099526066351,0.3540372670807453,0.3581028889232195,0.358267716535433,0.3633826402456042,0.3588235294117647,0.0,2.4757912159202453,54.64453773460696,173.35405439091858,273.8048363094739,fqhc5_80Compliance_baseline_low_initial_treat_cost,59 -100000,95813,44263,418.4609604124701,6123,62.86203333576863,4763,49.1165081982612,1853,18.901401688706127,77.3504688262772,79.68280212224545,63.33176974345843,65.06005552439021,77.11741226334098,79.45390990633317,63.24513168297028,64.97801174629294,0.2330565629362126,228.89221591228196,0.0866380604881484,82.04377809727248,162.20666,113.69569715569808,169295.0434700928,118664.1657767715,354.85927,229.4506208748531,369746.1826683226,238857.21235620743,361.59791,174.53090340359145,374178.2325989166,179609.64549480035,3124.34409,1421.464048805726,3221283.6984542804,1443988.2988798236,1126.02243,495.879637364112,1159186.9683654618,501507.6789097656,1813.21936,760.9021191055881,1850155.1355244068,758358.0740821409,0.37827,100000,0,737303,7695.229248640581,0,0.0,0,0.0,30190,314.456284637784,0,0.0,33109,342.3230668072182,1598107,0,57370,0,0,6427,0,0,69,0.7201527976370639,0,0.0,1,0.0104369970672038,0,0.0,0.06123,0.1618685066222539,0.302629430017965,0.01853,0.3334367726920093,0.6665632273079907,24.78409634450168,4.345414718420531,0.3210161662817552,0.2399748057946672,0.2185597312618097,0.2204492966617678,11.348269743710734,5.994386501047605,19.59817341923097,12277.3715031547,53.79287550924841,13.777436138386292,17.183401197756346,11.375208678839387,11.45682949426637,0.560781020365316,0.7795275590551181,0.697187704381949,0.5619596541786743,0.1228571428571428,0.7315175097276264,0.9272727272727272,0.8579088471849866,0.7649572649572649,0.1386554621848739,0.4976998274870615,0.6870554765291608,0.6453287197231834,0.5030978934324659,0.1182266009852216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004481713190635,0.0068101085963665,0.0087174745740324,0.0109140102121773,0.0131796052229532,0.0157360664932945,0.0180642921329956,0.0200094065682385,0.021958110681162,0.0240971268021574,0.0263184917440236,0.0287333271629695,0.0308560599818736,0.0329520725255004,0.0350382310394709,0.0369875776397515,0.0391245721398195,0.0407902394413036,0.0428703790457749,0.0574599929061737,0.071453216649415,0.0851558815823945,0.0976737344232668,0.1101546695886716,0.1256856590253337,0.1382868171021377,0.1505728662461037,0.1612500266917212,0.1715801318116058,0.1846758138283562,0.1969123656727713,0.2084365358710294,0.2180822576590559,0.2279937517875608,0.2385188960413042,0.2480859802236557,0.2571090980701063,0.2654032203120387,0.2725450442711018,0.2799032541776605,0.2869004876793712,0.2929700440111684,0.2990692269912193,0.3047229073765811,0.3094368941617542,0.3146053340348503,0.3180040510070192,0.3221487817522032,0.3263683431952662,0.3248375003371362,0.3245176405733186,0.3240533107679289,0.3230882714531596,0.3227935601837399,0.3215538501600723,0.3201565371696558,0.3198028747433264,0.3205719557195572,0.3216091173791107,0.3218070168869584,0.3231391905231984,0.3238507912584777,0.3248831958509378,0.3271598999422744,0.3281979093350017,0.328497055560297,0.3306039215686274,0.3333333333333333,0.3373179227359088,0.3390981528431727,0.3426130971211641,0.3463200751644221,0.3487001209189843,0.3539367869833552,0.355490311215502,0.3550790754257907,0.3592272086939022,0.3561718325176726,0.3567877629063097,0.0,2.2694808620497104,56.26400255834928,170.62056858668777,266.72708810628285,fqhc5_80Compliance_baseline_low_initial_treat_cost,60 -100000,95719,44861,422.9045435075586,6143,62.934213687982535,4823,49.82291916965284,1842,18.805043930672078,77.30949638025908,79.67036876421093,63.31695901961641,65.05978415662643,77.08970418697578,79.45435134770779,63.235234643199135,64.9823576342289,0.2197921932832969,216.0174165031492,0.0817243764172772,77.42652239753056,163.1762,114.35272257895107,170474.2005244518,119467.10953828508,356.79581,230.70719760825344,372177.6031926786,240449.72012688543,369.74745,179.4371672384072,383240.328461434,184998.30431670253,3128.81089,1427.798547160622,3231175.660004806,1454243.0267265723,1150.53914,508.4573585416301,1187971.395438732,517236.1905028325,1809.52898,754.8748788761346,1850205.7480750948,753697.1854393692,0.38095,100000,0,741710,7748.827296565991,0,0.0,0,0.0,30387,316.87543747845257,0,0.0,33820,350.2961794419081,1588951,0,57036,0,0,6641,0,0,52,0.5432568246638598,0,0.0,1,0.0104472466281511,0,0.0,0.06143,0.1612547578422365,0.2998534917792609,0.01842,0.3368551895587321,0.6631448104412678,24.644617481533317,4.287667383781147,0.3213767364710761,0.2463197180178312,0.2114866265809662,0.2208169189301264,11.330861648354151,5.99338850038018,19.522591080481376,12358.400233810524,54.67612376324296,14.242201357594835,17.57189682167209,11.275765504566223,11.586260079409811,0.5726726104084595,0.7878787878787878,0.7129032258064516,0.5794117647058824,0.1220657276995305,0.7582677165354331,0.927765237020316,0.8606965174129353,0.7297297297297297,0.2167487684729064,0.5063326766113144,0.7046979865771812,0.6611498257839721,0.5375939849624061,0.099767981438515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019849910371578,0.0044704403535804,0.0070103887671455,0.0093036483302185,0.0118944746607024,0.0140665872749295,0.0161647046832798,0.0182102136433697,0.0204918032786885,0.0227098279620513,0.0249182545946555,0.026983181715506,0.0292856481814723,0.0314926572058248,0.0339304683229685,0.035924246024776,0.0379723254297631,0.0402381100533051,0.0424872943450741,0.04490625,0.059217877094972,0.0732026417424615,0.0864152209938956,0.0994994531841507,0.1118891443275051,0.1274788733884017,0.1401103565365025,0.1520322779824131,0.1628013801796797,0.1725642840292521,0.1847358838168909,0.1975769780433935,0.2085641220958702,0.2188491759504476,0.2281750619322873,0.2380640941792021,0.2474280927115331,0.257341097757403,0.2657836744894018,0.2745392444525949,0.2812937730803515,0.2879388812841482,0.2943718842879302,0.299907639530281,0.305801292956788,0.3120236773954865,0.3174573387379272,0.3215167324087034,0.3261007552106947,0.3296787488111593,0.3287866943418605,0.3275510766011344,0.3264535047651272,0.3249624320887758,0.3243375858684985,0.3221539263324085,0.3204784491647762,0.3203675999145116,0.3209481430771864,0.3222792920163931,0.3244512046269693,0.3245205180586684,0.3252862695661309,0.326883841894043,0.3281830911110038,0.3289150968011272,0.3282322654462242,0.3304397056048311,0.3325265705566663,0.335415266632407,0.3372832107509307,0.341961491539808,0.3459072048283667,0.3467275494672755,0.3453467582572692,0.347286271727563,0.3441419394310187,0.3443260958623515,0.3500413109336271,0.3537753928708317,0.0,2.105267151991688,55.71989178822343,181.87633918119965,266.7050098290825,fqhc5_80Compliance_baseline_low_initial_treat_cost,61 -100000,95749,44451,420.6205808937953,6183,63.48891372233653,4796,49.67153703955133,1896,19.551118027342323,77.40440741590693,79.76186948247842,63.3594678928421,65.09934674688417,77.1725168332628,79.52665142023858,63.27470669357607,65.01455200243907,0.2318905826441266,235.21806223983788,0.0847611992660262,84.79474444509094,163.32184,114.29794190835447,170572.89371168366,119372.46541306382,355.03593,229.30575894052944,370380.74549081456,239068.49047042732,358.05513,172.49867904031865,370878.4112627808,177742.14893403952,3125.24426,1414.348412512211,3241276.472861335,1454421.4169466118,1121.93123,490.3226283637436,1161798.076220117,502147.7387374738,1857.61672,768.1509817734046,1918047.7289580049,784897.6531539238,0.38114,100000,0,742372,7753.313350531076,0,0.0,0,0.0,30294,315.9615244023436,0,0.0,32795,339.502240232274,1597355,0,57273,0,0,6641,0,0,60,0.6161944250070497,0,0.0,0,0.0,0,0.0,0.06183,0.1622238547515348,0.3066472586123241,0.01896,0.3246653331281736,0.6753346668718264,24.82622773651488,4.4137792558002245,0.3121351125938282,0.244370308590492,0.2201834862385321,0.2233110925771476,11.191763584046466,5.7588451182446025,20.03858798922167,12333.55674414593,54.17077241225075,13.97123408617466,16.788181107333557,11.81538377119592,11.59597344754662,0.5533778148457048,0.7627986348122867,0.698062792251169,0.5691287878787878,0.1064425770308123,0.7361769352290679,0.9236276849642004,0.8775510204081632,0.6771653543307087,0.1442786069651741,0.4878186968838527,0.6733067729083665,0.6343891402714932,0.5349127182044888,0.0977011494252873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026122085311895,0.0050367367620977,0.0071621320023535,0.0091403036611994,0.0113570506237735,0.013578990228013,0.0157452229299363,0.0180504678428211,0.0201692005885237,0.0222972627270401,0.024330999989751,0.0263771001611363,0.0285696661903342,0.0308067855266817,0.0328528534725589,0.0349393729519635,0.0368452664498892,0.0389510699874485,0.0407473993785528,0.0429199300116647,0.0572508325590621,0.0705047714716223,0.0840640208088605,0.0969786804591901,0.10904185242567,0.1240299422723139,0.1361061608961303,0.1476017116944497,0.1588156123822341,0.1697528547686699,0.1830535485468778,0.1962803881898538,0.208449785221032,0.2193530048431709,0.22909630933392,0.2396780229635616,0.2494282750080878,0.2584660010793308,0.2667740143104993,0.2747342038704952,0.2811687636477072,0.2879369711117595,0.2941975090018299,0.299980884566677,0.3063851948744035,0.3116766614235155,0.3166643769748591,0.3207590277337057,0.3255792927074991,0.3299385518230503,0.3291546989504201,0.3285804468353736,0.3282613277133825,0.3276321666834771,0.3259881232692108,0.3250931411470103,0.3234820243887028,0.3237892670157068,0.3235654690958624,0.3251374383973526,0.3255248742732151,0.3262758729657133,0.3287548084964041,0.3301604993312528,0.3305050214520265,0.3309663155156717,0.3317930545712261,0.3345225800394329,0.3351521511017838,0.3372249485515276,0.3388253449527959,0.3409981985800572,0.3438303745059908,0.3488900674293507,0.3541802591108211,0.351953996009858,0.3526717557251908,0.3547868061142397,0.3491844069670998,0.35347551342812,0.0,1.6415486708028415,56.194627584878674,178.27132562063213,264.661471789673,fqhc5_80Compliance_baseline_low_initial_treat_cost,62 -100000,95739,44680,422.2626098037372,6220,63.610440886159246,4826,49.7080604560315,1924,19.65761079601834,77.33232137485312,79.69722325574229,63.31916690730778,65.07063523105539,77.09160023866887,79.46005452707448,63.22886591968676,64.98454420734754,0.2407211361842485,237.16872866781105,0.0903009876210205,86.09102370785138,163.38036,114.45023323756485,170651.83467552406,119544.00321453622,356.61514,230.7040793504875,371729.2534912627,240219.0140172482,369.91357,178.88349799359247,381980.7497467072,183452.2879958659,3184.68966,1467.6651541944698,3284618.0866731424,1491407.0261342714,1162.00848,514.4801043956714,1200420.5078390208,524159.33788575215,1885.03716,791.4761556602283,1928297.4754279864,792177.8132145661,0.381,100000,0,742638,7756.901576160185,0,0.0,0,0.0,30381,316.6107855732773,0,0.0,33935,350.1289965426837,1589498,0,57094,0,0,6478,0,0,57,0.5744785301705678,0,0.0,0,0.0,0,0.0,0.0622,0.163254593175853,0.3093247588424437,0.01924,0.339564817652467,0.660435182347533,24.563922448779312,4.375734741512259,0.326771653543307,0.2295897223373394,0.2217157065893079,0.2219229175300456,11.426388236798186,5.95470781722466,20.33804801894474,12331.621453550446,54.87801219739336,13.336544921078476,17.933201412351252,11.91929716910403,11.688968694859591,0.5727310401989225,0.8005415162454874,0.7178186429930248,0.5869158878504673,0.1092436974789916,0.7364914877868246,0.92018779342723,0.8782201405152225,0.7320754716981132,0.1459227467811159,0.5090647482014389,0.7258064516129032,0.6582608695652173,0.5391304347826087,0.0990453460620525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023207264177712,0.0046049762143849,0.007016083177646,0.0094011708268964,0.0117502238137869,0.0139974124142989,0.0160826466508933,0.0185096325638852,0.0207146873881703,0.0228398853398853,0.024860066020134,0.027093065037729,0.0292650824172999,0.0313510618575813,0.0337993293783853,0.0358132131635521,0.0376905235255135,0.0397447868036103,0.0415995510615523,0.0436489751708048,0.0583556038082512,0.0727192826425873,0.0864170337738619,0.0991934551037361,0.1114321263628503,0.1269000095198806,0.1391188080988157,0.1508483958186966,0.1619208339563796,0.172650452537211,0.1850926324859974,0.1971666360025541,0.2088134486698221,0.2194655027184317,0.2290107422734877,0.2389411895004984,0.2482059752463645,0.2568959114082177,0.2653955283168766,0.2726325074172079,0.2795397722011297,0.2867189328340744,0.2927524911832233,0.2987535953978907,0.304815237725031,0.3099312113217781,0.3146762121705174,0.3190842607313195,0.3237696958711498,0.3290556581376945,0.3279553253044472,0.3267992736876857,0.3258858808126029,0.324810510358767,0.3242400392046214,0.3226384190304162,0.3200874607852457,0.3202434263405672,0.320553272048164,0.3212080105665227,0.3223131191834284,0.3247120750385879,0.3253911657368178,0.3265036499619329,0.3276227651679437,0.3286731526643887,0.3304290880100225,0.3319669546572492,0.3359105925353202,0.3379736737136019,0.3410668615272196,0.3426812951565426,0.347729437916799,0.3505707500191526,0.3519594974685918,0.3573862968621459,0.3613254652746255,0.3619276144771046,0.3628198149156233,0.3605182926829268,0.0,2.672105237861488,58.89870251521978,173.95241132975153,263.86071484308815,fqhc5_80Compliance_baseline_low_initial_treat_cost,63 -100000,95728,44801,424.14967407655024,6186,63.41927126859436,4832,49.92269764332275,1910,19.5449607220458,77.41699606751023,79.77096341924884,63.36600846061516,65.10095367146388,77.18094866651488,79.53512860899879,63.27874306558672,65.01598691086407,0.2360474009953463,235.83481025005423,0.0872653950284387,84.96676059981212,163.33328,114.37687543745582,170622.26307872304,119481.10838778187,357.65714,231.42402590565356,373071.31664716697,241204.867860661,365.47049,177.17234499870662,378104.7655858265,182273.6073604774,3145.38694,1443.4433423175394,3252257.52131038,1474362.237085848,1157.28037,513.9033867795174,1196561.9567942503,524473.3482152745,1874.55166,785.8576137116812,1921015.5022563927,791391.4086747937,0.38186,100000,0,742424,7755.55741266923,0,0.0,0,0.0,30438,317.38885174661544,0,0.0,33476,346.0325087748621,1592143,0,57153,0,0,6336,0,0,69,0.7207922446932977,0,0.0,1,0.0104462644158448,0,0.0,0.06186,0.1619965432357408,0.3087617200129324,0.0191,0.3300940922412463,0.6699059077587537,24.41191747519374,4.386278919829363,0.3228476821192053,0.2388245033112583,0.216887417218543,0.2214403973509933,11.722254998915474,6.240821603030636,20.283250765920208,12309.8710469205,54.7290859448742,13.596194706677116,17.752878724986964,11.620718533636888,11.759293979573226,0.5604304635761589,0.7755632582322357,0.7038461538461539,0.5687022900763359,0.111214953271028,0.726144297905353,0.9170854271356784,0.86810551558753,0.7322175732217573,0.1446808510638297,0.5001411233418007,0.701058201058201,0.6439195100612424,0.5203955500618047,0.1017964071856287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023583473349662,0.0044676777193568,0.0069376825705939,0.0094233288315275,0.0116520253782332,0.0137217777234878,0.0157581440861091,0.0177179016125739,0.0199583052302409,0.0223024747562585,0.024203795548633,0.0264270613107822,0.0286601287033039,0.0306990443236118,0.0328051497895518,0.0347100947578353,0.0368775235531628,0.0388831845006586,0.0408139933691551,0.0428486597422621,0.057325439338408,0.0714734132713918,0.0853833807160916,0.0974360592293454,0.1094717303494025,0.1250647743736714,0.1385945372580217,0.1506285057422328,0.1613520067514875,0.1717474989009103,0.1847437553832902,0.1966182738700534,0.208283522072728,0.2176325389370672,0.2272622408735869,0.2374636326426762,0.247149687385068,0.2557478368355995,0.2639746976069287,0.2714633895163228,0.2787372266148795,0.285832807497254,0.2920316323273875,0.2989035455220128,0.3047028561721954,0.3104123317861144,0.3152724136638044,0.319878499803007,0.3239458473951666,0.3287371473767466,0.3279347869950633,0.3273144521856234,0.3270462382996692,0.3262946422119123,0.3253903406474232,0.3235748718341112,0.3216999763014456,0.3227901953725824,0.3235128925197855,0.3243118369377854,0.3261842596046251,0.3256655263261374,0.326816341860368,0.3282364707189688,0.3288818686578594,0.3303826384922901,0.3314805887190539,0.3347611305652826,0.3384443435437113,0.340816729137897,0.3453321891513481,0.3485343736819907,0.3522585475418018,0.3556970661814874,0.3607259190321079,0.3696311858076564,0.3726052194901191,0.3734843967402106,0.3727810650887574,0.3696947133283693,0.0,2.1990523287203407,56.4635998739513,183.1017969689753,261.9664701691579,fqhc5_80Compliance_baseline_low_initial_treat_cost,64 -100000,95689,44577,421.78306806424985,6062,62.18060592126577,4758,49.07565132878388,1818,18.581028122354716,77.3508434030137,79.74329905904048,63.31502979323547,65.0835627984177,77.12657045006142,79.5212219543561,63.23148715869138,65.00354343236863,0.2242729529522762,222.0771046843879,0.0835426345440879,80.019366049072,162.51818,113.88877422674112,169839.98160708128,119019.71410166383,353.88702,228.68768602733243,369149.6096730032,238310.2782399952,361.58339,175.38572469226347,373571.98842082167,179884.41620430772,3112.47521,1413.119971475085,3211588.8242117693,1435709.2022649697,1133.76493,499.087190185561,1167576.199981189,504449.53141054406,1785.13974,743.6500737317929,1826013.2721629443,744456.65828241,0.38021,100000,0,738719,7719.99916395824,0,0.0,0,0.0,29985,312.6587173029293,0,0.0,33142,342.11873883100463,1596722,0,57199,0,0,6364,0,0,73,0.7628881062609078,0,0.0,1,0.010450522003574,0,0.0,0.06062,0.1594382052023881,0.2999010227647641,0.01818,0.3343297671491504,0.6656702328508496,25.01945470390422,4.280631828564113,0.3192517864649012,0.2400168137873055,0.2215216477511559,0.2192097519966372,11.125841488127463,5.768393023955135,19.253190300657216,12274.648986952036,53.37300128932447,13.79188303351554,16.82433153124881,11.56211057395253,11.1946761506076,0.5598991172761665,0.776707530647986,0.6701777485187623,0.594876660341556,0.1265580057526366,0.7408874801901744,0.9272300469483568,0.8507853403141361,0.7276422764227642,0.173076923076923,0.4945652173913043,0.6871508379888268,0.6094986807387863,0.5544554455445545,0.1149700598802395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0047763434099644,0.0069638307159751,0.0091369217009512,0.011261673686138,0.0133962225708522,0.0154852135592528,0.0177706967338684,0.0201470633354128,0.0223981483378054,0.0247256691621372,0.0269615143640677,0.0291400946307344,0.0311669311133549,0.0332112080086691,0.035417442004714,0.0374629618118149,0.0393494010919432,0.0414001144224268,0.043333229091743,0.0574914347789755,0.0716731411578693,0.0851912499475164,0.097754960338334,0.1105625705454814,0.126002412136857,0.1385356741036364,0.1500633605588507,0.1602659341364088,0.1713111499790756,0.1844814020414102,0.1963214757399268,0.2085133238305604,0.2189890456231738,0.2290891477135119,0.2399379088590753,0.2487607734559907,0.2580946591011438,0.2661176737846433,0.2735807960381511,0.2795396389824817,0.2862629834771713,0.2925705214022533,0.2983708431306685,0.3037236047119464,0.3095032663626278,0.3136921364335656,0.3183893573454411,0.322949950195982,0.3263838490466451,0.3258354322966475,0.3240945791667239,0.3232148385825663,0.3223874133949191,0.3210458446351549,0.3199560029942406,0.3185185185185185,0.3181185410832146,0.3190375498789263,0.3190049680371801,0.3195269588611142,0.3203942708743212,0.3209753047827446,0.3225232439165443,0.3241219255431142,0.3259877631442497,0.3266147244805781,0.3312361790263805,0.3331013847331431,0.3379580638839898,0.340088066139468,0.341371158392435,0.3437344294967613,0.3481055736217197,0.3511743239449799,0.3480217957829898,0.3512402982803226,0.3582653670181022,0.36248654467169,0.3614088820826952,0.0,2.4968656138303302,54.99209504233844,169.5393042411593,266.83552511188805,fqhc5_80Compliance_baseline_low_initial_treat_cost,65 -100000,95721,44600,421.8196633967468,6090,62.306077036387,4802,49.560702458185766,1826,18.75241587530427,77.26691653433518,79.6252921830881,63.2951211478972,65.0384955512585,77.03234935873459,79.39079452392293,63.20760483515915,64.95304222772515,0.2345671756005884,234.4976591651715,0.087516312738046,85.45332353335766,162.98436,114.2305540324097,170270.22283511455,119336.9835588948,354.14546,229.72873246911024,369363.7446328392,239385.23674962675,369.18417,179.1844373480828,381206.997419584,183888.4428494901,3123.24227,1445.9321576761931,3225864.0005850336,1473665.4286575287,1108.23434,502.5387205963079,1139577.835584668,506875.1762870671,1784.2711,762.5817840622119,1832994.9540853105,770675.1861382388,0.38068,100000,0,740838,7739.555583414298,0,0.0,0,0.0,30157,314.4137650045445,0,0.0,33860,349.2337104710565,1587902,0,57017,0,0,6453,0,0,67,0.6999508989667889,0,0.0,0,0.0,0,0.0,0.0609,0.1599768834716822,0.2998357963875205,0.01826,0.3413446434181589,0.658655356581841,24.34691413338068,4.210272274743456,0.319658475635152,0.2471886713869221,0.2240733027905039,0.2090795501874219,11.251877532581322,6.003937094427292,19.8219788152304,12318.790391805893,55.10461279564292,14.436516812733707,17.414131253579352,12.068803506568637,11.185161222761224,0.5749687630154102,0.7919123841617524,0.6872964169381107,0.6068773234200744,0.1125498007968127,0.7408470926058865,0.9221052631578948,0.8461538461538461,0.7591240875912408,0.1491228070175438,0.5071868583162218,0.7050561797752809,0.6282394995531725,0.5548628428927681,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.0049681128268561,0.0074887364533019,0.0094675998821629,0.0117364684823952,0.0137761803427244,0.0158825628217544,0.0180990394136442,0.0202101776696448,0.0223859972362966,0.0246842709529276,0.0266832303238126,0.0287421331907367,0.0310649211531925,0.0333133872565203,0.035362462658025,0.0374873143756601,0.0395078123378913,0.0413821062151121,0.043280751838963,0.0579820613755729,0.0715923006876628,0.085049004176373,0.0978137362174901,0.1096224245429322,0.1250224860586436,0.1379449451681051,0.1486143949560142,0.1594221495097253,0.1696525370058286,0.182892254621894,0.1953257053699129,0.2076649132551377,0.2178050837248524,0.2279744784951568,0.2382781280525708,0.24822480906214,0.2571805244120928,0.2656321003362719,0.2732514816980202,0.2805588027639208,0.2876106194690265,0.2939058762227328,0.2985966174883051,0.3039122717436234,0.3096633316473186,0.3148401168256515,0.3193425076452599,0.3245021083360363,0.3290800794176042,0.3277243914635959,0.3273606410167852,0.326955710164602,0.3252865402170605,0.32507301662991,0.3237666507904804,0.3218127790754954,0.3224344501392574,0.3227289097737914,0.3236305664027514,0.3245635465017947,0.3263003430565745,0.3261423189442889,0.3286512441941346,0.3292659353404533,0.3310382742551966,0.3313194364906654,0.3348931326672568,0.3384309690238796,0.3432559636349008,0.3478320842337579,0.3495974235104669,0.3513856300336102,0.3549644576931896,0.3568998109640832,0.3606323546891715,0.3619134953385297,0.3697495961227787,0.3747940691927512,0.3833397608947165,0.0,2.365078472831894,61.20354883786907,177.2672969457734,253.6106632218352,fqhc5_80Compliance_baseline_low_initial_treat_cost,66 -100000,95715,44226,418.199864180118,6130,62.90550070521861,4819,49.88768740531787,1900,19.5685106827561,77.288290147924,79.65701342881525,63.294707477804174,65.04360905018524,77.05274156737657,79.41898541859709,63.2085895363218,64.9579065108836,0.2355485805474302,238.02801021815867,0.0861179414823709,85.70253930163574,162.80726,114.0671616226783,170095.867941284,119173.75711505856,355.36833,229.74100863450332,370827.5296453011,239578.4925043352,366.08246,177.78209167764223,379203.0402758189,183154.49305950347,3170.60357,1451.5632879956067,3285720.179700152,1489874.6188526277,1184.74035,523.3068300086335,1228853.2622890873,537808.4730801168,1864.90832,772.7940757064664,1922855.226453534,787970.0136033313,0.37793,100000,0,740033,7731.630360967455,0,0.0,0,0.0,30247,315.53048111581256,0,0.0,33520,347.0197983597137,1589242,0,57070,0,0,6409,0,0,67,0.6895470929321422,0,0.0,0,0.0,0,0.0,0.0613,0.1621993490858095,0.3099510603588907,0.019,0.3400841252531547,0.6599158747468453,24.370203882422302,4.423628148362073,0.3187383274538286,0.2324133637684166,0.2183025523967628,0.2305457563809919,11.515953336005335,6.006579462558987,20.15132053782264,12234.925223860268,54.84448692438574,13.605445053605935,17.43782387678519,11.730467303637475,12.070750690357142,0.56733762191326,0.7982142857142858,0.6979166666666666,0.596958174904943,0.126012601260126,0.7596371882086168,0.9266666666666666,0.8786407766990292,0.7925311203319502,0.1590909090909091,0.4945652173913043,0.7119402985074627,0.6316725978647687,0.5388409371146733,0.1178451178451178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280962942707,0.0044808953680518,0.0065856232495839,0.0091529693817428,0.0114006183386217,0.0135832764817888,0.0158336901776064,0.0178124840504261,0.0201371781373621,0.0221051015708949,0.0240330415889478,0.0261747859826322,0.0283358351668688,0.0304937076476282,0.0326450202161894,0.034868699812945,0.0369427015385889,0.0389888025238426,0.0407925529148681,0.0429168447052202,0.0579726794218397,0.0710554142194583,0.0840294685584753,0.0965589813743028,0.1090047393364928,0.124080249854428,0.1372979974942133,0.1487956363791321,0.1600769806479204,0.1706052244494787,0.1835002857420127,0.1959811514921735,0.2075638121787612,0.2175902612046504,0.2271355566324507,0.2367723253414398,0.2467577478645856,0.2558286358511837,0.2645720526004459,0.2711510196582767,0.2793491748715629,0.2864395253951132,0.293218187641609,0.299340564303989,0.3043224156824546,0.3098212189727813,0.3144248998706794,0.3184468000969474,0.3226288371851332,0.326204623956169,0.325541242328185,0.3240402256831882,0.3237177222167258,0.3229805559180477,0.3215483947929559,0.3210864091383651,0.3184313227781832,0.3178633687465053,0.3188341267938487,0.3195331937210259,0.3189110994213572,0.3207401543637443,0.322148777672857,0.3229566770879857,0.3230547895935739,0.324480099696238,0.3259571079128505,0.3300552972225713,0.3333567391075378,0.3382370482286986,0.3382870730257442,0.3388429752066115,0.3416016116847142,0.3409004342195475,0.3457778605344009,0.3479793233082707,0.3510895883777239,0.3529883674288006,0.3498920086393088,0.3548022598870056,0.0,1.773290222309109,58.601013610611055,181.2403338357228,258.7390544686664,fqhc5_80Compliance_baseline_low_initial_treat_cost,67 -100000,95838,44563,421.49251862518,6135,62.84563534297461,4795,49.54193534923517,1848,18.969511049896703,77.36488025655099,79.67956565063099,63.35773544642036,65.07105426844456,77.13133201097165,79.44586791879341,63.27179220875176,64.98724160475716,0.2335482455793425,233.6977318375801,0.0859432376686015,83.8126636873966,162.95554,114.10317395549724,170032.05409127905,119058.15433909024,351.69827,227.9812556418416,366459.5254491954,237369.79657530572,361.37793,175.04965922805354,373782.3201652789,180118.12781194347,3170.44926,1436.7546597008704,3278465.6816711538,1469481.144953848,1167.10553,514.1350132954451,1203244.8402512574,521931.00293159706,1821.38894,763.6782843902472,1871786.9321146104,771583.6370150616,0.3801,100000,0,740707,7728.729731421775,0,0.0,0,0.0,29973,312.22479600993347,0,0.0,32978,340.8668795258666,1599125,0,57332,0,0,6480,0,0,64,0.6677935683131953,0,0.0,0,0.0,0,0.0,0.06135,0.1614048934490923,0.3012224938875306,0.01848,0.3268512756689483,0.6731487243310517,24.6404801139525,4.4295145818748045,0.3263816475495307,0.2285714285714285,0.216266944734098,0.2287799791449426,11.104434644915836,5.545230162644241,19.740331837668997,12369.520053611184,54.0122324839079,13.02420420770454,17.649065676524888,11.36021341705338,11.978749182625078,0.5597497393117831,0.7883211678832117,0.6964856230031949,0.579556412729026,0.1175934366453965,0.7234387672343877,0.9261083743842364,0.8571428571428571,0.7316017316017316,0.1288888888888889,0.5030881527231892,0.7072463768115942,0.6465661641541038,0.5359801488833746,0.1146788990825688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991998379418,0.0045013990834989,0.0066360905917688,0.0087352212245561,0.0108601702240164,0.0129515741457255,0.0151379233011886,0.0172427874308348,0.0194430814524043,0.0215057065356466,0.0235108432747099,0.0256662869575033,0.0280478529877284,0.0302799505969534,0.0321194066774556,0.0344076475203369,0.0363367432431034,0.0386368816959197,0.0408070026062487,0.0427608306629489,0.0583774875881346,0.072726132491586,0.0861171343871447,0.0993227279886596,0.1114738216587338,0.1269018382236487,0.1394114656158637,0.1512909637849846,0.1619055746378512,0.1716039069528338,0.1840732334369587,0.196662126813239,0.2075543436933071,0.2178565968506344,0.2285648356719812,0.2387018300436778,0.2485017933922962,0.2575095729509393,0.2658083072881279,0.2730858495203905,0.2808609898611977,0.2879539591188728,0.2946854766293303,0.3009902647881933,0.3065821893699401,0.3127331371800712,0.3183869395102316,0.3237666908056053,0.3283130583170659,0.3320429258015669,0.3303002607456788,0.3295730911389274,0.3286024048886261,0.3283450577070302,0.3270643156611459,0.3253960957371824,0.3228108005263909,0.3240228977497039,0.324759668934318,0.3260877350044763,0.3264349201566737,0.327353636490057,0.3287120797744772,0.3295707008370548,0.3305339653969247,0.3320720250521921,0.3338932384341637,0.3383894011391887,0.33999015540398,0.3417842621382444,0.3466611706512778,0.349807651207523,0.353251206502413,0.3562600752283718,0.3587575987841945,0.3626177136726666,0.3660755589822668,0.3644744929317762,0.3618548164504554,0.3668478260869565,0.0,1.8636290325538551,54.131748832165,175.47669124616925,274.47807413323505,fqhc5_80Compliance_baseline_low_initial_treat_cost,68 -100000,95637,44489,421.7614521576377,6104,62.74768133672114,4736,48.94549180756402,1847,18.92572958164727,77.2563444549925,79.66660617794915,63.27473565930678,65.05572453925208,77.02188263804653,79.43485914167805,63.18760365451199,64.97256196631716,0.2344618169459664,231.74703627110205,0.087132004794789,83.16257293492413,163.81002,114.7578931553042,171283.10172841055,119993.1963103236,356.13129,230.90174663069223,371799.0735803089,240856.92945307508,367.37311,177.77181115521446,380881.32208245766,183305.22462945248,3098.49838,1426.678507923133,3204948.795968088,1456905.273044736,1118.7174,496.5711228383322,1155683.1142758557,505179.2121949161,1802.81462,763.0764668242253,1849420.3707770004,766583.9944741917,0.37913,100000,0,744591,7785.59553310957,0,0.0,0,0.0,30344,316.676600060646,0,0.0,33671,348.77714692012506,1582453,0,56885,0,0,6490,0,0,59,0.6169160471365684,0,0.0,1,0.0104562041887553,0,0.0,0.06104,0.1610001846332392,0.3025884665792923,0.01847,0.3389434315100514,0.6610565684899485,24.32750426683061,4.294496909110936,0.328125,0.2364864864864864,0.21875,0.2166385135135135,11.071269776456807,5.740522577167087,19.83989776445401,12228.03629749681,54.14976998313328,13.475427703347252,17.6778419775477,11.57352762348094,11.422972678757384,0.566722972972973,0.7866071428571428,0.693050193050193,0.583976833976834,0.117933723196881,0.7335375191424196,0.9198113207547168,0.8637532133676092,0.7715355805243446,0.1150442477876106,0.5032069970845481,0.7054597701149425,0.6360515021459228,0.5188556566970091,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0044292186533959,0.0066978556713585,0.008889295256672,0.0110591107945874,0.0131414076586901,0.0153623306675371,0.0175528219379623,0.0195159871529979,0.0214623052257383,0.0238263814068031,0.0261443282017552,0.0283937653138962,0.0304983039313736,0.0325506440916087,0.0346237026459297,0.0365847337265838,0.0385925910535829,0.0408237595737595,0.042673259064547,0.0572109405211066,0.0712280260649108,0.0846158691498519,0.0970906488147867,0.1098554394850691,0.1252989354722651,0.1378779677566572,0.1493850167722698,0.1607345176254302,0.1712133244618059,0.183477435908493,0.1955796316359696,0.2065310924003616,0.2179421144341307,0.2275444478757665,0.2377061918611105,0.2477209937026721,0.2567226417220782,0.2654520242776931,0.2721359991740941,0.279463426510997,0.2861631164933588,0.2926754047802621,0.2988715486194477,0.3040323366124476,0.3096193993897543,0.313400639618737,0.3181377674632119,0.3220037635455194,0.3266493067029727,0.3260370840193247,0.3243966718640045,0.323491583395757,0.3219161190175683,0.321065592119991,0.318590473844638,0.3174794938640554,0.3169139465875371,0.3168228315997593,0.3177163798368843,0.3180909639462966,0.3187601892719392,0.3196538364356102,0.3209807433945364,0.3223046893826208,0.3245339182202726,0.3249384694636826,0.3283068866525758,0.3319777022052378,0.333505072923272,0.3368794326241134,0.3428874734607218,0.3450100806451613,0.3475628216772631,0.3490862100793797,0.3510127619716661,0.3500599161174356,0.3528710510629843,0.3582329317269076,0.3692660550458715,0.0,2.2439168790371764,57.316208610306845,180.87640613407964,252.79912457302228,fqhc5_80Compliance_baseline_low_initial_treat_cost,69 -100000,95693,44727,423.6569028037579,6170,63.275265693415406,4858,50.17085889249997,1894,19.3744579018319,77.32722884548278,79.70480928951744,63.32110870231941,65.0761792369058,77.09774141195791,79.47669098067983,63.23660709439505,64.99451444972705,0.2294874335248664,228.1183088376082,0.0845016079243663,81.66478717875236,162.41038,113.79328028618072,169720.23031987713,118914.94705587736,356.21577,230.22418614878825,371674.2917454777,240012.01357339436,369.98596,178.67625151947587,383200.2027316522,183968.63740876663,3169.21564,1445.5957209461487,3275267.114626984,1474308.4072625642,1145.3059,503.74230874610015,1182562.2981827303,512211.16305907787,1853.37666,767.1455598495879,1899124.073861202,771209.139963373,0.38198,100000,0,738229,7714.555923630778,0,0.0,0,0.0,30287,315.8956245493401,0,0.0,33850,350.27640475269874,1593695,0,57221,0,0,6544,0,0,82,0.8464568986237238,0,0.0,0,0.0,0,0.0,0.0617,0.1615267815068851,0.3069692058346839,0.01894,0.3301988592569755,0.6698011407430245,24.36351879833132,4.336561905821548,0.3163853437628653,0.2387813915191436,0.224578015644298,0.2202552490736928,11.233551907500331,5.962048189485524,20.076452693321738,12377.152664324629,55.15805295964999,13.950230704255768,17.485725206877635,12.043021734224885,11.679075314291708,0.5664882667764513,0.7887931034482759,0.6987638256343527,0.5857011915673694,0.1158878504672897,0.7409961685823755,0.9220183486238532,0.8574766355140186,0.7399103139013453,0.1513761467889908,0.5023923444976076,0.7085635359116023,0.6375112714156899,0.5460829493087558,0.1068075117370892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021564379290096,0.0045707452037579,0.0067667647357208,0.0092730836812009,0.0112059059802117,0.0132670827690835,0.0153468072522586,0.0176585335961516,0.0196449389483157,0.0216792454762368,0.0238026869039072,0.0259846967596158,0.0280800641830038,0.0302109200317358,0.0325087464008173,0.034477766287487,0.0365282612299022,0.0385166420963019,0.0406794117035218,0.04298519908276,0.0570921245038646,0.0712917708867515,0.0851391889907487,0.0982083679631363,0.1107337601383776,0.1262112300596623,0.1390292045165124,0.1513996401077547,0.163310436185328,0.1735348378239231,0.1871553506806824,0.1994198694706309,0.2113345441494741,0.2218236696485203,0.2330098155728685,0.2427132839243577,0.2517800147311564,0.2606939992126427,0.2684141843971631,0.275653139997022,0.2823406841465532,0.2890308689648716,0.2960284107724178,0.3016493263652491,0.3068909769409362,0.3124622309921687,0.3165785716075052,0.3208104631763941,0.3251198963058976,0.3296878921160729,0.3297725985271506,0.3279501053240262,0.3266635644485807,0.3262484105883713,0.325065060599301,0.3232793025112052,0.321594421111023,0.3213905058620972,0.3222241173460685,0.3235351718980896,0.323755398104354,0.3246553458375244,0.3255794494184587,0.325701905251167,0.3276421786701936,0.328796412181894,0.3312243502051983,0.3349781563315209,0.3369538558564872,0.3396518836432999,0.3421437717212365,0.3451072457581902,0.3458936587216286,0.3451286764705882,0.3476899724883787,0.3433102790364893,0.3460826650215916,0.3480203045685279,0.3458046767537827,0.3499043977055449,0.0,2.326883108999659,57.197809148959486,183.0291239240468,264.3141866615816,fqhc5_80Compliance_baseline_low_initial_treat_cost,70 -100000,95779,44560,421.7939214232765,6163,63.07228098017311,4814,49.69774167615031,1931,19.74336754403366,77.38146625236273,79.70520724168419,63.35451413110488,65.06814066850717,77.13780899472198,79.4664565898521,63.26236325500544,64.98144839022756,0.2436572576407485,238.75065183209188,0.0921508760994385,86.69227827961379,164.14706,115.01434693639918,171381.05430209127,120083.05258605664,356.30762,230.1482033046645,371416.56312970485,239697.27529486056,363.54348,175.74721025058838,377315.2152350724,181648.47495521567,3155.85336,1451.87943536349,3257202.5913822446,1478134.1895023854,1170.38646,522.5429252255235,1206868.9900708925,530561.3787881017,1895.69004,802.4344238420958,1939481.5773812635,800863.5184754796,0.38107,100000,0,746123,7790.047922822331,0,0.0,0,0.0,30391,316.6873740590317,0,0.0,33279,345.1382870984245,1587455,0,57032,0,0,6449,0,0,63,0.6577642280666952,0,0.0,0,0.0,0,0.0,0.06163,0.1617288162279896,0.31332143436638,0.01931,0.3268873762376237,0.6731126237623762,24.397347384837463,4.392353720302849,0.3194848358953053,0.236186123805567,0.2179061071873701,0.2264229331117573,11.10584211593534,5.630987006576421,20.55081638643392,12303.994049541072,54.7548659023968,13.6911611183998,17.56724627605556,11.657678258025635,11.838780249915798,0.5627336933942667,0.802990325417766,0.688556566970091,0.5776930409914204,0.1201834862385321,0.7056631892697467,0.8983833718244804,0.8194130925507901,0.6820083682008368,0.1409691629955947,0.5074884792626728,0.7443181818181818,0.6356164383561644,0.5469135802469136,0.1147161066048667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217362250167,0.0045705136000648,0.0066544263093293,0.0089467056625233,0.0115814412234231,0.0136816173626239,0.0159103881278538,0.0181430422759415,0.019932570494483,0.0219860042560157,0.0244437159365651,0.0265423168867411,0.0286618639974513,0.0306152911746842,0.032702716634878,0.0349688626341282,0.0369538671689053,0.0387645924482136,0.0406931443946933,0.042577339983548,0.0571518029536085,0.0709187944746756,0.0843192783721418,0.0971814846353591,0.1095812423565133,0.1255936452196355,0.1379288396664757,0.1493090305133828,0.1601431470996688,0.1706788766526909,0.1832717797422286,0.1965062195781503,0.2071759511017336,0.2184768219166092,0.2288695192815636,0.2388213521869701,0.2483532432734174,0.2580833942940746,0.2662805224304372,0.2740228619910799,0.2808883328120112,0.2862213163720701,0.2927574687862778,0.298273381294964,0.3041100551734195,0.3101786220584066,0.315233578195197,0.3197419978627042,0.3239657428641764,0.3276469424104492,0.326750666343591,0.3264352011000344,0.3261846088854467,0.3259281757567868,0.3255637531980722,0.3235348209906817,0.3206335142319194,0.3212675617633076,0.3216576810209513,0.3224766721276444,0.3238120163008935,0.32489850616846,0.3264559555165349,0.3263418883602493,0.3287191420962982,0.3307156230497191,0.3322825253471926,0.3357554497619644,0.3390275492701369,0.3420770665502599,0.3447271403213326,0.3476674071723262,0.3505592701368493,0.3517189270872686,0.3541588257433195,0.359210681791327,0.3601091239769627,0.3564972886121711,0.3608837970540098,0.3615560640732265,0.0,2.0326740576654725,59.20273835435511,175.1541456073307,262.1097274271436,fqhc5_80Compliance_baseline_low_initial_treat_cost,71 -100000,95749,44591,421.6858661709261,6072,62.08942129943916,4729,48.72113546877775,1846,18.83048386928323,77.31912755708531,79.66794537441324,63.32066847763053,65.05789615514806,77.08857226719695,79.44200643424071,63.23421816180016,64.97621905930424,0.2305552898883576,225.9389401725258,0.0864503158303762,81.67709584381555,161.89822,113.37037679323562,169086.06878400818,118403.71888294982,351.81849,228.2836488815172,366782.1596048001,237762.701314392,370.22776,179.24029623619464,382388.8082382061,183954.4272746259,3054.74511,1404.965902780854,3148453.1117818463,1425428.1118140705,1122.23025,498.7579308050084,1154895.758702441,503754.9942296364,1794.05888,753.740295676492,1832145.359220462,751622.8725026739,0.37886,100000,0,735901,7685.7303992730995,0,0.0,0,0.0,29884,311.428839987885,0,0.0,33810,348.9331481268734,1597450,0,57451,0,0,6308,0,0,84,0.8668497843319513,0,0.0,1,0.0104439733052042,0,0.0,0.06072,0.160270284537824,0.3040184453227931,0.01846,0.3366430260047281,0.6633569739952718,24.376811927159043,4.210570912154008,0.3245929371960245,0.2469866779445971,0.2199196447451892,0.208500740114189,11.490742701188852,6.17512842024397,19.65662668582569,12248.679658191548,54.17314679268927,14.186741701871515,17.53915602608819,11.765695762455152,10.681553302274413,0.5842672869528441,0.7988013698630136,0.6957654723127036,0.6115384615384616,0.127789046653144,0.7665130568356375,0.9164835164835164,0.8497536945812808,0.7903225806451613,0.2072538860103626,0.5150277210388094,0.7237026647966339,0.6403897254207263,0.5555555555555556,0.1084489281210592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304043585251,0.0045805085175163,0.0068483421939044,0.0091206402730098,0.0112985731864823,0.0133410731925901,0.0154779505480499,0.0180022873013928,0.020337007423161,0.0223889764746831,0.0246278144608948,0.0265119622137796,0.0284876844757546,0.030471912890299,0.0326967323902972,0.0350137450652115,0.0370086646859698,0.0390950770698919,0.0411068507954321,0.0429941778717465,0.0576722338204592,0.0712597024917881,0.0849267366610377,0.0969767075030233,0.1091982499604659,0.124742257140138,0.1371995842436841,0.1486135642995467,0.159786438868126,0.1703028678638434,0.1830018200028,0.1947462983808122,0.2068515355577071,0.2173580201008322,0.2273802581340845,0.2383605032338088,0.2474689408061437,0.2570042982199518,0.2645690027015369,0.2716641850876188,0.2791219986570654,0.2856908761046409,0.2932543677820551,0.2993663442382929,0.3044583353602179,0.3088382311195586,0.3138783079390537,0.3186902790164352,0.3232566885836932,0.3277458556238029,0.3269803614993732,0.3256496054860164,0.3250486642028944,0.3232769228542062,0.3220994392968157,0.3195705521472393,0.3178833158846483,0.3186742729380045,0.3196013743354814,0.3208600150252209,0.3210900696308252,0.322000711997152,0.3218552501732211,0.322806231088199,0.3242227948081971,0.3250992270733235,0.3253438338184101,0.329548671174713,0.3328998699609883,0.3356823310503187,0.3392468239564428,0.3392175572519084,0.3423105965265542,0.346467494855575,0.3466026726896292,0.3495111320532453,0.3537829197746993,0.3538337042282015,0.3482093663911845,0.3583902809415338,0.0,2.568335685218949,56.9821348976888,183.721052775884,249.06134317796736,fqhc5_80Compliance_baseline_low_initial_treat_cost,72 -100000,95685,44436,420.8601139154517,5982,61.2844228457961,4637,47.90719548518577,1873,19.198411454250927,77.34181859432726,79.72360837910968,63.3271521787835,65.08519660665182,77.10576790202957,79.48865726052107,63.23840002681939,64.99936896742729,0.2360506922976952,234.9511185886115,0.0887521519641083,85.82763922453296,161.76314,113.37752069941996,169057.76244970478,118490.1770758235,350.97146,227.62153478858764,366233.91336155095,237322.5070995041,360.72408,174.8128051228328,373250.86481684697,179937.3955976062,3076.92433,1413.481618388501,3182830.987093066,1444454.5292651644,1130.70138,497.46122657503287,1170196.906516173,508451.8767349068,1843.61084,781.8204581967022,1892908.1256205256,789139.8851000044,0.37896,100000,0,735287,7684.443747713853,0,0.0,0,0.0,29826,311.12504572294506,0,0.0,32996,341.1924544076919,1600642,0,57397,0,0,6399,0,0,59,0.6166065736531327,0,0.0,0,0.0,0,0.0,0.05982,0.1578530715642812,0.3131059846205282,0.01873,0.3302474062250599,0.6697525937749401,24.42806138821881,4.427927396086199,0.3157213715764503,0.2240672848824671,0.2257925382790597,0.2344188052620228,11.334341320480846,5.814866280359515,20.05006471130676,12244.371855879888,52.64720776243141,12.575811693152431,16.563673129730645,11.65816901977854,11.849553919769791,0.5458270433469916,0.8026948989412896,0.6823770491803278,0.5616045845272206,0.1011959521619135,0.7041925465838509,0.9069767441860463,0.8341463414634146,0.7431906614785992,0.0982905982905982,0.4849208719020603,0.74079754601227,0.6233396584440227,0.5025316455696203,0.1019929660023446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0042977183575417,0.0062193723811166,0.0085515224147386,0.0106357017936307,0.0128899568298444,0.0152993099511767,0.0174351540887886,0.019838714623003,0.0220905117259875,0.0242186859158395,0.0263433571604633,0.0281784325425402,0.0305216083094614,0.0326882386334313,0.0347538270583367,0.0365899152349174,0.0388712390207437,0.0407590038075026,0.0427313004951785,0.0575281790926279,0.071756908159953,0.0853616297742372,0.0981458877009849,0.1101640381876681,0.1264345931308772,0.1390887290167865,0.1506387055567383,0.1615877764718452,0.1716826118666609,0.1846821618594231,0.196369654814318,0.2071377292405421,0.2172948032494724,0.227471258044997,0.238256111474175,0.2468155888230237,0.2560891918953277,0.2646985380913466,0.2716985454128965,0.2783985748658152,0.285102749739763,0.2917021578648495,0.2974401380599697,0.3036115599071903,0.3074457593688363,0.3122402483601221,0.3174360736696068,0.3217150187231947,0.3266154577130187,0.3254366944552935,0.325090819022457,0.3242275597654488,0.3230104481278631,0.322657353050457,0.3210179365322704,0.3187933272134469,0.3198693539915966,0.3205112869324493,0.3213661182684415,0.3226566444157738,0.3223476476160404,0.3238647060053967,0.3239940121098376,0.3248054194292303,0.3265604215029082,0.3268080013677552,0.3299691882034836,0.3335913585025157,0.3359421556553176,0.3400966624110888,0.3410079575596817,0.3423817863397548,0.3398286450830237,0.3444993934869833,0.3466555977229602,0.3512605042016806,0.3507568113017154,0.3511640798226164,0.3455034588777863,0.0,2.103256814174808,56.51206759291101,169.29096557778877,251.9069148433049,fqhc5_80Compliance_baseline_low_initial_treat_cost,73 -100000,95675,44779,424.0919780506924,6200,63.5693754899399,4884,50.4206950614058,1943,19.92160961588712,77.38307130315455,79.75958706466419,63.34642469116329,65.09735706969023,77.14189021606157,79.52003153220642,63.255745083585104,65.00983156211171,0.2411810870929827,239.5555324577714,0.0906796075781883,87.52550757851907,162.14286,113.60852112415095,169472.54768748366,118744.2081255824,354.71811,228.8412546813321,370140.5487326888,238573.4148746612,364.22943,175.84401955715913,376477.93049385946,180623.37152961665,3179.15136,1453.6973403631491,3284084.086752025,1480630.7085060352,1173.68205,522.68794549851,1210634.6903579826,530212.3182634021,1899.39198,802.6096826316779,1948830.7290305723,808764.6222795066,0.38268,100000,0,737013,7703.2976221583485,0,0.0,0,0.0,30228,315.30702900444214,0,0.0,33345,344.3428272798537,1598829,0,57468,0,0,6379,0,0,63,0.6584792265482101,0,0.0,3,0.0313561536451528,0,0.0,0.062,0.1620152607923068,0.3133870967741936,0.01943,0.3351766513056836,0.6648233486943165,24.44198027127289,4.387822695682907,0.3243243243243243,0.2338247338247338,0.2237919737919738,0.218058968058968,11.225655573455368,5.892029386681331,20.683817323361577,12379.451589438386,55.15738994358088,13.542494795035616,17.814088768831926,12.116620258398417,11.684186121314918,0.5577395577395577,0.7924693520140105,0.6799242424242424,0.5599268069533394,0.1220657276995305,0.730829420970266,0.945137157107232,0.8442211055276382,0.7131474103585658,0.175438596491228,0.4963948973932335,0.7098515519568152,0.6247892074198989,0.5142517814726841,0.1075268817204301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021258718605428,0.0045184689887139,0.0068457723552499,0.0090072708071002,0.0112348126683951,0.0134368924132455,0.0157189749026483,0.0175667813287876,0.0197683808122003,0.0221016532732763,0.0242779663102207,0.0263903721350529,0.0286014007590015,0.0305508631700383,0.0327232962634369,0.0348394964757436,0.0369100401939253,0.0390247952755088,0.0411713932133237,0.0429911412193851,0.0574795499420189,0.0721232869541547,0.0850958915607033,0.097570977917981,0.109707622070158,0.1246788670747565,0.1372280880295127,0.1490454666312151,0.1604934319343513,0.1713223397301959,0.184914998924037,0.1976815856915773,0.2091137369147652,0.2203274961194551,0.2303588322002948,0.2407282236528638,0.2505165577707042,0.2597377728716574,0.2684755079557973,0.2760011920317264,0.2832019265279659,0.2900638210668071,0.2970064705742931,0.3020034330848548,0.3077269299077926,0.3129543014401895,0.3182490165125661,0.3234735863237411,0.3278660892565412,0.331316067653277,0.3309316669809033,0.329719466725369,0.3283250017601915,0.3272543352601156,0.3265554680885826,0.3246383030897499,0.3232265627475208,0.3229503620630203,0.3239308929182347,0.324305009647681,0.3246651347867511,0.3251550654720882,0.3252745417345192,0.3260501581362199,0.3280248684839789,0.3293434892999637,0.3293093211953295,0.3311171458001685,0.3343342993819617,0.3367981730844948,0.341092292364822,0.3435660218671152,0.3488966463034534,0.3508349631412667,0.3507635354002776,0.3551096593560429,0.3583208395802099,0.3586828694629557,0.3636120758749666,0.3708902844477281,0.0,2.471618713923706,55.68284910100056,181.88709135038656,271.9834952094269,fqhc5_80Compliance_baseline_low_initial_treat_cost,74 -100000,95698,44399,422.4330707015821,5955,61.15070325398651,4736,48.956091036385295,1885,19.40479424857364,77.3960056150407,79.78190774814222,63.35197710932333,65.11369839382357,77.16307164301733,79.5471048429132,63.26666057726949,65.02968943320586,0.2329339720233747,234.80290522901728,0.0853165320538451,84.0089606177088,162.99426,114.12870134708214,170321.49052226797,119259.23357550015,353.37152,227.77264205233135,368725.8981378921,237480.8585888225,358.55453,172.88957185706212,370767.70674413256,177696.13330993478,3097.86531,1410.616251475236,3205996.4680557586,1442898.9544977269,1131.07762,497.5892721751797,1169974.252335472,508014.72804636,1852.43056,774.5001795416747,1908811.051432632,786394.7460946214,0.3802,100000,0,740883,7741.885932830362,0,0.0,0,0.0,30089,313.86235866998265,0,0.0,32860,339.50552780622377,1600938,0,57387,0,0,6497,0,0,55,0.5747246546427303,0,0.0,1,0.0104495391753223,0,0.0,0.05955,0.1566280904786954,0.3165407220822838,0.01885,0.343795036028823,0.6562049639711769,24.393527383930387,4.342758596809966,0.3190456081081081,0.234375,0.2236064189189189,0.2229729729729729,11.075675047498656,5.706249007009394,20.113102422325493,12239.200129363984,53.47497308044299,13.337247601099811,16.879147837085313,11.672993355487082,11.5855842867708,0.5574324324324325,0.8144144144144144,0.6776968894771674,0.5486307837582625,0.1240530303030303,0.7400156617071261,0.9530516431924884,0.8590078328981723,0.710204081632653,0.1614349775784753,0.4900260190806591,0.7280701754385965,0.6161347517730497,0.5,0.1140456182472989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210622283902,0.0048569284743769,0.0068005115608696,0.0090932181864363,0.0111183447602384,0.0132773999103979,0.0155184192012398,0.0174274367272764,0.019536281665951,0.0216790517717865,0.0236928439614517,0.0257708142961282,0.0276240821111956,0.0294799295448224,0.0312625746742192,0.0330466601889561,0.0349474338391423,0.0368782695341692,0.0386035338040912,0.0405519483903242,0.0554940463756005,0.0692256977510805,0.082311605223137,0.0951459781111683,0.10811893293422,0.1243007750954329,0.136831832309667,0.1491479238293931,0.160467848750267,0.1710063486616335,0.1836409450175521,0.1961193610140711,0.2074391211274951,0.2179781420765027,0.227295214432559,0.2369693950965742,0.2468441946563183,0.2561161907757284,0.2643347454747287,0.2723417873429874,0.279018759018759,0.2853708350353037,0.2920622549714232,0.2980456415654004,0.3046261274367181,0.3110780614314335,0.3164460634488953,0.3209327094982692,0.324223538368237,0.3284059076502229,0.327644959617913,0.326268456191821,0.3253807677176418,0.3240866230283457,0.3235551339252627,0.3221789288715715,0.3200164354119915,0.3205065198872944,0.3206736669848629,0.3219131735460664,0.3233793657615906,0.3239938568165708,0.3254587155963303,0.3258844195406132,0.3273271834191925,0.3276220145379024,0.3288653366583541,0.3328630549285177,0.3353752450294035,0.3375371802498513,0.3414879050661798,0.3421276595744681,0.3450517546074224,0.3470274390243902,0.3492393461211376,0.3521884716574982,0.3503683241252302,0.3538994094889024,0.3549014162732574,0.3554778554778555,0.0,2.060867256282904,56.161656702983606,172.71087121556835,260.68986950509355,fqhc5_80Compliance_baseline_low_initial_treat_cost,75 -100000,95816,44477,421.17182933956747,6218,63.75761876930784,4892,50.40911747516073,1974,20.101026968356017,77.38566316619061,79.7078834843926,63.36611244363343,65.08467476490036,77.1395494164354,79.46639859355253,63.273742695921456,64.99753611973608,0.2461137497552101,241.48489084007,0.0923697477119702,87.1386451642735,163.14078,114.24960645880638,170264.42347833348,119238.33772099271,356.00219,230.1894357129387,370878.224931118,239572.44430093255,364.15691,176.08352026659858,376926.2544877682,181200.22416237957,3222.4765,1481.0680835670637,3320621.5245887954,1503520.0352726446,1155.7664,517.3750604703054,1184907.959004759,518994.8897458573,1938.83072,823.1634074025753,1976010.8750104369,817676.0350990988,0.37939,100000,0,741549,7739.291976287885,0,0.0,0,0.0,30375,316.31460298906234,0,0.0,33411,345.5477164565417,1596833,0,57346,0,0,6407,0,0,54,0.5635801953744677,0,0.0,1,0.0104366702847123,0,0.0,0.06218,0.163894673027755,0.3174654229655838,0.01974,0.3250997238416692,0.6749002761583308,24.2905129375186,4.401342675040096,0.330539656582175,0.2287408013082583,0.2158626328699918,0.2248569092395748,11.23183940954936,5.699135821019215,21.18528095285142,12277.325431959873,55.75129083397874,13.57855133294956,18.21072348401655,11.771091521363545,12.190924495649092,0.5609157808667212,0.7855227882037533,0.7031539888682746,0.584280303030303,0.1009090909090909,0.7161961367013373,0.9168591224018476,0.8671497584541062,0.7068273092369478,0.128,0.5019740552735477,0.7026239067055393,0.6467165419783873,0.5464684014869888,0.0929411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047139685532678,0.0067694431194243,0.0091236055513787,0.0114426949835225,0.0136340494857957,0.0157987544465849,0.0178589652005306,0.0202360876897133,0.0226058658589001,0.024687941954129,0.0267174397241011,0.0287669965775598,0.03093186754367,0.0328634624704826,0.0349019769867994,0.0367733791362291,0.0385161537743965,0.0401848294481075,0.0420612291618972,0.0575815738963531,0.0715667109210842,0.0850515193761071,0.097601210427327,0.1094701358896028,0.1248877763342733,0.1369954444326729,0.1482477492320284,0.1591556356732195,0.1695942761664024,0.1819521218247908,0.1948276420832028,0.2053283538339612,0.2163262632768238,0.2263301260928781,0.2367399741267787,0.2463320893443992,0.2558358983576355,0.2645306020711064,0.272608770224687,0.2795974720691368,0.286109554497058,0.2928957747809452,0.2989275338059995,0.304855145339327,0.3096610107016919,0.3139939834983086,0.3197447218838814,0.3248786031614836,0.3294803775721113,0.3281165967516403,0.3275210574769501,0.3260973550928531,0.324783732651676,0.3250712843055721,0.3234632167189772,0.3213340727243919,0.3216703917959506,0.3220559531554977,0.3232800257593646,0.3245163467306539,0.3265685944522541,0.3269481749673725,0.3276829815895824,0.3283369194690907,0.3305271439811172,0.3318821069515653,0.3348794648491733,0.3364499170871114,0.3404068607897886,0.3444820644216691,0.3442422307364836,0.3489208633093525,0.3476208602969166,0.3481467473524962,0.3477018337699452,0.3500308261405672,0.3503145930586563,0.3560165975103734,0.3547024952015355,0.0,2.471148261150636,58.87558300868783,185.92235715611997,260.5398483264893,fqhc5_80Compliance_baseline_low_initial_treat_cost,76 -100000,95753,44330,419.67353503284494,6115,62.52545612147922,4820,49.60680083130555,1880,19.101229204306915,77.37657405990127,79.72099624545778,63.3458979718325,65.07894086529562,77.1373147535597,79.48934072075518,63.25506448735719,64.99505995023083,0.239259306341566,231.6555247026031,0.0908334844753113,83.88091506479611,164.35012,115.06741241255688,171639.6561987614,120171.07809944011,354.2047,228.2646862920653,369201.7378045597,237675.8182950564,360.20681,174.26635128850936,371943.09316679375,178703.81635925022,3190.45451,1451.2982628861746,3283762.8794920263,1467468.6149636807,1138.09855,503.3026585900016,1170401.1884745124,507455.7921477709,1845.58278,787.0028166444189,1877361.837227032,777453.0576806425,0.38004,100000,0,747046,7801.802554489154,0,0.0,0,0.0,30260,315.2799390097438,0,0.0,32943,339.92668637013986,1590776,0,57048,0,0,6598,0,0,57,0.5743945359414326,0,0.0,1,0.0104435370171169,0,0.0,0.06115,0.1609041153562783,0.3074407195421095,0.0188,0.344892221180881,0.6551077788191191,24.29264715952828,4.370298991693793,0.3132780082987552,0.2379668049792531,0.2265560165975103,0.2221991701244813,11.124818016650485,5.680092647565483,20.151357463665075,12248.693879471444,54.26117388303226,13.746435188358417,16.75254663215872,12.093720626512154,11.66847143600297,0.5506224066390042,0.7768090671316478,0.6701986754966888,0.575091575091575,0.1148459383753501,0.7271293375394322,0.9184652278177458,0.8575197889182058,0.7246963562753036,0.1555555555555555,0.4876126126126126,0.6958904109589041,0.6074270557029178,0.5313609467455621,0.1040189125295508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688139369998,0.0046224492899066,0.0070009537531199,0.009285220854159,0.0114921487267106,0.0133094367674463,0.0155397620091566,0.0175909666353575,0.0198325478690234,0.0219569868258079,0.0240450152203101,0.0261653270922509,0.0284360189573459,0.0304222451081359,0.0328164814872128,0.0348545144451909,0.0369051070703723,0.0386953544826441,0.040370959525072,0.0422338641642277,0.0569299179557838,0.0707046407764959,0.0836906946264744,0.0961245361951711,0.1085613694818063,0.1241476281597225,0.1362556729015566,0.1471671207219479,0.1583247885157651,0.1691886964448496,0.1826387617272913,0.1947345070498739,0.2061447408503416,0.2168727431885326,0.2263544384626394,0.2356279791597383,0.2451338403296593,0.2543052022600905,0.2637845322679499,0.2712978550405973,0.2796024850469127,0.2864175875577384,0.2925733207190161,0.298019114230281,0.3040494582908225,0.3098914369508693,0.3152703817595439,0.3195152007927534,0.3239021362437283,0.32703158782893,0.3264337844921439,0.3260239341604495,0.3255902245595287,0.3243992206105217,0.3235573357068684,0.3224528503908102,0.3206192577130477,0.3213524764808076,0.3223714524634367,0.3229743936991037,0.3243501385871601,0.3243013893274392,0.3260865016425687,0.3280459821329115,0.3285289462324332,0.3301508844953174,0.3303977272727272,0.3355866428817325,0.3388632227355453,0.3403201521515175,0.3438551805694533,0.3469355266648978,0.3512715855572998,0.3515749525616698,0.355840269335079,0.358628841607565,0.3584300549786194,0.3629614767255216,0.3601092896174863,0.3623574144486692,0.0,2.8737958681213165,54.85884556816203,176.7598255922845,268.1479587392985,fqhc5_80Compliance_baseline_low_initial_treat_cost,77 -100000,95755,44887,424.17628322280825,6209,63.59981202026004,4864,50.2532504830035,1951,20.01984230588481,77.3313489084019,79.69827094318235,63.31030609897547,65.0632921353484,77.091799203683,79.45933356133179,63.22145902747536,64.9770664779741,0.239549704718911,238.9373818505618,0.0888470715001119,86.22565737429966,161.0521,112.870548051278,168191.84376794944,117874.31262208552,352.25379,227.585085557385,367330.4579395332,237134.95437040887,364.21827,176.72671772457429,376783.55177275336,181779.88026659496,3186.10385,1457.4155818451625,3294928.4945955826,1489604.2105844724,1158.76437,509.9631757963056,1198431.0166570935,520867.2401402597,1906.0622,792.4793166372089,1958667.035663934,800668.711505349,0.38249,100000,0,732055,7645.083807634066,0,0.0,0,0.0,30052,313.268236645606,0,0.0,33279,344.0760273614955,1603543,0,57476,0,0,6367,0,0,51,0.5221659443371104,0,0.0,0,0.0,0,0.0,0.06209,0.1623310413344139,0.3142212916733773,0.01951,0.3318482101705331,0.6681517898294669,24.54981749613299,4.370612953660224,0.3252467105263157,0.2366365131578947,0.21875,0.2193667763157894,11.454673268539658,6.03596878887872,20.61534443143989,12420.365521865398,55.0797259026813,13.744250826556964,17.855210978090113,11.842668261543585,11.63759583649064,0.5608552631578947,0.7680278019113814,0.6852085967130215,0.5864661654135338,0.1274601686972821,0.7415902140672783,0.9135514018691588,0.8734491315136477,0.7111111111111111,0.1690821256038647,0.4943757030371203,0.681881051175657,0.6208651399491094,0.5440806045340051,0.1174418604651162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0043501627508441,0.0068409033240294,0.0090022353180247,0.0116177338297829,0.0137792669389251,0.0159884165553527,0.0183178982407057,0.0205586637891356,0.0228096769567978,0.0247579586478503,0.0269998150697597,0.0290107130728303,0.0311762462768862,0.0332985827974525,0.0354675931670596,0.0375566922774245,0.039742246111382,0.0419737430225668,0.0436806748945477,0.0580793319415448,0.0718134921050153,0.0849985838814236,0.0980251950619361,0.1103695503189414,0.1262943024251975,0.1394418505942275,0.1507514672517921,0.1616809345175115,0.1722483930851691,0.1855923435075012,0.1979834517414659,0.2095980490354047,0.2203100367840252,0.2302102029355737,0.2407251358243707,0.2508963375813964,0.2598772729831672,0.2686016549939271,0.2776077662781235,0.2849187236604455,0.2918750512421087,0.2977217770613057,0.3035296095692171,0.3087902460392787,0.314195482414478,0.319867765283378,0.3245689984466118,0.3291841709454904,0.3327656540853103,0.3307103589522475,0.3296378316666896,0.3282651236783939,0.3264631116760067,0.3254220191651585,0.3242193473407346,0.3222622319087779,0.3227862620436521,0.3235856464884427,0.323255192084856,0.324571086456248,0.3256667917003928,0.3273986359261894,0.3283168847407672,0.3278322283078697,0.3300591438472161,0.3307272417126286,0.3322536008553997,0.335165415917979,0.3392615041071856,0.3408178167214312,0.339986198842826,0.34375,0.3457446808510638,0.3517138599105812,0.3534623455350897,0.3558410516880789,0.3529990167158309,0.3479547900968783,0.342728297632469,0.0,2.145621630988709,57.370754339866245,178.10423345967448,270.2325321072707,fqhc5_80Compliance_baseline_low_initial_treat_cost,78 -100000,95491,44271,419.94533516247606,6081,62.4247311264936,4837,50.07801782366925,1844,19.00702684022578,77.22623088476638,79.71443090067575,63.24095407219974,65.07664918581142,76.9865275693947,79.47342969026475,63.15070695990957,64.98800034568224,0.2397033153716847,241.00121041099956,0.0902471122901715,88.6488401291814,162.53248,113.8373480855622,170207.11899550745,119212.64630757055,355.8726,229.91041516335628,372105.318825858,240195.31177111596,361.97759,175.12851323347877,374803.9291660994,180177.04300542336,3161.87929,1462.4998400206491,3277068.247269376,1497445.612697166,1149.99707,515.7367917726602,1190681.2160308303,526486.174055273,1799.26654,771.0538459720727,1856446.7227277963,783475.0920724657,0.37867,100000,0,738784,7736.68722706852,0,0.0,0,0.0,30396,317.7262778691186,0,0.0,33137,342.9956749850772,1589184,0,57093,0,0,6443,0,0,72,0.722581185661476,0,0.0,0,0.0,0,0.0,0.06081,0.1605883751023318,0.3032395987502055,0.01844,0.3422089175988656,0.6577910824011344,24.252055235945495,4.2721431432261205,0.3283026669423196,0.2309282613189993,0.2313417407483977,0.2094273309902832,11.26388297256866,5.848297612898927,19.983309866607986,12275.314306675557,55.297303954730566,13.536352933580352,18.164021939151453,12.4198637438451,11.177065338153657,0.5763903245813521,0.8048343777976723,0.714735516372796,0.5755138516532619,0.1085883514313919,0.7297698589458055,0.9403341288782816,0.8459821428571429,0.6941176470588235,0.1466666666666666,0.5171919770773639,0.7234957020057307,0.6631578947368421,0.5405092592592593,0.0977157360406091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018138521558494,0.0041283333502388,0.0064673990293825,0.0089273004575495,0.0112701580061899,0.0132803343015848,0.0154797497933652,0.0175239613348864,0.0195300111512373,0.0218540603676154,0.0239776646411561,0.0262392169362218,0.0282551614065798,0.0301376927440565,0.0323813853529509,0.0343945747269244,0.036462277362268,0.0386374503648572,0.0407459498880033,0.0428217899320239,0.0576641266119577,0.0711123234781878,0.0842131830227569,0.0966031849751799,0.1085736629080495,0.1239135964726332,0.1362563524633736,0.1477664330143285,0.1595069027193179,0.1698679020174769,0.1837959813861086,0.1966633401310366,0.2076000436157452,0.2175552851144075,0.2273103448275862,0.2375030561667889,0.2471551810949615,0.2562503524104877,0.2655455300556396,0.2735341056523186,0.2808348705811376,0.2874285915377306,0.2937769284637571,0.2996152921375331,0.3053168013849774,0.3102637699806997,0.3150874369837698,0.3193556635131679,0.3236934839993238,0.328666233955466,0.3282950504954912,0.3270469752362557,0.3265556826365061,0.3261221891008016,0.3250446960667461,0.3218625658672975,0.3196377502383222,0.3206875525305295,0.32175643907545,0.3222851611515434,0.3226012472762792,0.3242338398145764,0.3250870787695665,0.3252065283094902,0.3266458433445459,0.328513742347271,0.3312453732703149,0.3354285175524057,0.3378758078111829,0.3400055601890464,0.3419119324663472,0.3416043688033508,0.3442335400613919,0.3471604193378083,0.347568866703642,0.3497611557730397,0.350471554609066,0.3494295028524857,0.3532173432753383,0.3568958893584326,0.0,2.1971522155038268,59.22963092746764,181.4976588773433,260.0167551885692,fqhc5_80Compliance_baseline_low_initial_treat_cost,79 -100000,95708,44452,421.99189200484807,6129,62.75337484849752,4846,50.01671751577716,1926,19.7684624064864,77.36399481233721,79.74855067751805,63.33329461681414,65.09722231474093,77.12446420890377,79.50853051815768,63.244524668981946,65.01019855296248,0.2395306034334368,240.0201593603697,0.0887699478321977,87.02376177845395,163.19974,114.36777826625485,170518.38926735488,119496.57109777116,358.12529,231.4455294273097,373593.6703305888,241232.98932932437,364.32713,176.34346673684396,376433.4224934175,180951.44402711984,3176.08267,1452.779858725476,3285340.765662222,1484756.8946435782,1128.44694,500.76778340114856,1166207.4643707944,510380.2016562338,1890.99532,792.4910578064832,1944066.159568688,802524.3996209644,0.38044,100000,0,741817,7750.835875788858,0,0.0,0,0.0,30566,318.7298867388306,0,0.0,33388,344.7360722196682,1592029,0,57127,0,0,6535,0,0,69,0.689597525807665,0,0.0,1,0.0104484473607221,0,0.0,0.06129,0.1611029334454841,0.3142437591776799,0.01926,0.3351981351981352,0.6648018648018648,24.21303877359704,4.343498354727772,0.3177878662814692,0.2445315724308708,0.2135782088320264,0.2241023524556335,10.980160023856158,5.720371204423696,20.495951871099543,12297.11855538398,55.08928726284554,14.245914662344052,17.508699837088542,11.353455284376574,11.981217479036363,0.5588113908378044,0.7949367088607595,0.7012987012987013,0.5478260869565217,0.1095764272559852,0.7294028722600151,0.9264367816091954,0.8392434988179669,0.708502024291498,0.146788990825688,0.4947487936417826,0.7186666666666667,0.649059982094897,0.4974619289340101,0.1002304147465437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021479012370695,0.0044925816625594,0.0064565905953057,0.0082830253877268,0.0104397728891511,0.0126943374696904,0.0149026888081929,0.0171269251194901,0.0192998066950998,0.0213805179246152,0.023391513013516,0.0256241719643829,0.0278440650072001,0.0298087623129868,0.0316731340819022,0.0335821667114704,0.0356650817821146,0.037377552714594,0.0392910971363234,0.0413927466322161,0.0564437807412358,0.0701023590731166,0.0835955857670359,0.0958790313252505,0.1080462920021923,0.1242255724948723,0.136319294227425,0.1478250694126783,0.1595315369176239,0.1705983858693904,0.1836251520075761,0.1963999826922244,0.2072749021313614,0.2183641553385317,0.2285393678698335,0.2390310330702036,0.2479753697878321,0.2567193720339173,0.2656062084458462,0.273367374977102,0.2804006384307557,0.2880311498795631,0.2945806161457162,0.3005188797948447,0.306068665670808,0.3114857044351959,0.3161824480658354,0.3211621315913221,0.3254172430287125,0.3294477153883642,0.3281191205719507,0.3279089248685096,0.3273601214318843,0.326107337054505,0.3252360273302604,0.3233328246604608,0.3207957626584274,0.3225495639677303,0.32341286712811,0.3244191222291462,0.3258889325327797,0.3270194546387278,0.3286293694597759,0.3300306412292277,0.3325088848333493,0.3342643834186071,0.3348648725778373,0.3395509499136442,0.3406570265337638,0.3424869234427009,0.3421172194457065,0.3454151013281126,0.3517584772469431,0.3557354513517641,0.3606092138870495,0.3627462686567164,0.3710526315789473,0.3680755026672138,0.3733965421081985,0.3689964857477548,0.0,2.415029039623074,58.00467533532854,181.47392812643935,261.49991263955064,fqhc5_80Compliance_baseline_low_initial_treat_cost,80 -100000,95671,44647,423.8588495991471,6033,61.88918271994648,4682,48.37411545818482,1904,19.58796291457181,77.31725194233033,79.72488991352856,63.30264576078415,65.08465731058136,77.08829653486335,79.49708683277036,63.21880492556048,65.00378022789816,0.2289554074669837,227.8030807581928,0.0838408352236754,80.8770826832017,163.6316,114.5994323714527,171035.50710246575,119784.7180514831,353.47767,228.2853300199964,368902.10199538,238046.64552926543,358.17498,173.06335230578088,371014.016786696,178360.95441684933,3074.9259,1393.9059414539804,3180791.8282447136,1423825.1145615906,1126.90981,491.4836805877844,1164780.0482904955,500602.1150671635,1871.69598,769.3943432812786,1927058.042667057,777133.2371796913,0.38181,100000,0,743780,7774.341231930261,0,0.0,0,0.0,30091,313.93003104389,0,0.0,32822,339.643152052346,1592507,0,57135,0,0,6465,0,0,50,0.5226244107409769,0,0.0,0,0.0,0,0.0,0.06033,0.1580105287970456,0.3155975468257915,0.01904,0.3323845667299178,0.6676154332700822,24.74821971362094,4.3798976933249385,0.3184536522853481,0.2304570696283639,0.2227680478428022,0.2283212302434857,11.195878269365489,5.742658559548822,20.07137863637277,12290.61706299177,53.02536851716506,13.094772684277508,16.83495444327433,11.55907195025705,11.536569439356152,0.5585219991456642,0.7914735866543096,0.7028839704896043,0.5695110258868649,0.1113189897100093,0.7244979919678715,0.927570093457944,0.8525469168900804,0.7033898305084746,0.1009615384615384,0.4983997672388711,0.7019969278033794,0.6529516994633273,0.530359355638166,0.1138211382113821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023098665748123,0.0044212340921766,0.0064747252301166,0.0085154813076039,0.0108867070254871,0.013272893959458,0.0153836737192173,0.0172544132069303,0.0194593930961101,0.0217402440398741,0.0240792038575972,0.0260075217328757,0.0281943858276632,0.0301458838084437,0.032015863343902,0.0339565248880014,0.0358668159389642,0.0378835868944389,0.0399925092074325,0.0419572400996549,0.0565416801613088,0.0704509994869056,0.0832642264047951,0.0964575420581396,0.1086800573888091,0.124433814502815,0.1370395134842551,0.1487555778016805,0.1601654341042192,0.171690624329543,0.1843494183541577,0.1980689923907043,0.2100480968029772,0.220270344223718,0.2298703730217293,0.2400598404255319,0.2494281729428173,0.2585753165838188,0.266695399691498,0.2750592356031729,0.2812988004488195,0.2887155984754601,0.2950879808773238,0.3006015145705521,0.305117895018161,0.3097471678110477,0.3145120913232864,0.3193245253748045,0.3233745228698971,0.3280092775625313,0.3267674187215962,0.3259884056378272,0.3250924116993914,0.3245816503173687,0.3238764712875995,0.3220710367442003,0.3204341222630046,0.3208643008318157,0.3215942424449144,0.3224478888295029,0.3223694057775782,0.3230732804545992,0.3231607629427793,0.3239858669886846,0.3250741160307551,0.3256760989871567,0.3273224510725579,0.3294531078409839,0.3341754385964912,0.3380248186179281,0.3425300985041955,0.3426186805592472,0.3451388888888889,0.3490400061194829,0.3531577456811102,0.3574982231698649,0.3632017273288094,0.3687002652519894,0.3722192078133478,0.3762264150943396,0.0,2.140300582580553,54.658113977687925,174.7796862513277,257.67464730105405,fqhc5_80Compliance_baseline_low_initial_treat_cost,81 -100000,95865,44683,422.2917644604392,6076,62.17076096594169,4732,48.860376571219945,1929,19.82996922755959,77.4717338221379,79.76013614859225,63.40399372213196,65.09173326015136,77.23305398186352,79.51772335833297,63.31611798727626,65.00374202428381,0.2386798402743863,242.4127902592801,0.0878757348557002,87.99123586754831,163.07434,114.22003164429562,170108.31899024668,119146.74974630534,354.06596,229.23514905533992,368829.7814635164,238614.57159061165,368.24908,178.52397938769647,380623.6478381057,183514.37801058672,3135.89968,1434.5854980159318,3241088.3116883114,1466390.3698074708,1126.69163,501.5059196977624,1160742.408595421,508590.20466047234,1883.20788,792.2051264110696,1937870.067282116,804933.6535295177,0.38089,100000,0,741247,7732.196317738487,0,0.0,0,0.0,30112,313.59724612736665,0,0.0,33654,347.56167527251864,1597867,0,57275,0,0,6502,0,0,60,0.6258801439524332,0,0.0,0,0.0,0,0.0,0.06076,0.1595211215836593,0.3174786043449638,0.01929,0.3309205350118017,0.6690794649881983,24.56767528271957,4.458561078922759,0.3229078613693998,0.220625528317836,0.2345731191885038,0.2218934911242603,11.482843408153448,6.02562371365581,20.54387039866837,12289.63777801506,53.4591225824494,12.522285257769893,17.1061960932844,12.429105440259116,11.401535791136013,0.5572696534234995,0.803639846743295,0.6969895287958116,0.554954954954955,0.1114285714285714,0.7085308056872038,0.904639175257732,0.8857142857142857,0.6968503937007874,0.1171548117154811,0.5020196191575302,0.7439024390243902,0.6334208223972003,0.5128504672897196,0.1097410604192355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026723352566049,0.0050348998591848,0.0072096371859092,0.0095209094600081,0.0117368506625477,0.014193128287566,0.016471762692527,0.0185844408857699,0.020821845066683,0.0228769532847909,0.0251641249910384,0.0270855126863987,0.0290615850839796,0.0311037030177691,0.0331295805716759,0.0350467772247578,0.0368025817662756,0.0387903785766843,0.0409602026725364,0.0429452959968365,0.0573245751225106,0.0707767568754115,0.0841358496892978,0.0973933873357077,0.1099119987353111,0.1253065798376184,0.1378798481667621,0.1498186305275139,0.1604983080158416,0.1713587603013513,0.1840346894199421,0.1962026000410646,0.2067314478041365,0.2175014191520021,0.2275238022028705,0.2383252462060504,0.2480676274697614,0.2569584011676865,0.2651498850522644,0.2725640849740459,0.2803561324295299,0.2872911416036591,0.2939905038622351,0.2991866028708134,0.3043351654351545,0.3086307288909679,0.3141011221913973,0.3186535408066053,0.322969723608346,0.3270091636823257,0.3268463140917949,0.3260335961604388,0.3251800783498785,0.324454682888201,0.323559899304013,0.3212902241878908,0.3199949567382705,0.3204013596548568,0.3214953271028037,0.3222874993344101,0.3229914418361829,0.3238977020306265,0.3253986451276706,0.3259811006114508,0.3270751224172937,0.3297147446692748,0.3291389792167397,0.3311402824982071,0.3348585690515807,0.3374926427310182,0.3401987678194001,0.3433284148397976,0.3449097291875627,0.3457943925233644,0.3441540058507125,0.343013568198048,0.3500610128126906,0.3553187210939071,0.360196025047645,0.3674630261660978,0.0,1.9905536177550056,55.60865424357382,172.5417829428331,263.5064038727988,fqhc5_80Compliance_baseline_low_initial_treat_cost,82 -100000,95746,44446,421.4588599001525,6083,62.35247425479916,4797,49.589538988573935,1919,19.71883942932342,77.34438518034166,79.69665712716632,63.33412346583962,65.07209668245055,77.10476411188436,79.45628115000453,63.24686380334784,64.98673681310252,0.2396210684572963,240.37597716178996,0.0872596624917747,85.35986934802509,162.58286,113.96027187871412,169806.42533369543,119023.5329713138,355.40974,229.69558571644248,370688.01829841454,239388.3772861973,364.50587,176.31790617348275,376650.3248177469,181093.4253711754,3150.03768,1435.2394339164734,3259011.802059616,1468024.9764130884,1128.30938,497.79561875781536,1165670.283876089,507142.7618467768,1881.8133,781.0064197265347,1935910.4505671256,791715.5542529667,0.37995,100000,0,739013,7718.473878804337,0,0.0,0,0.0,30243,315.3447663609968,0,0.0,33352,344.5888078875358,1595195,0,57263,0,0,6412,0,0,75,0.7415453387086667,0,0.0,1,0.0104443005451924,0,0.0,0.06083,0.1601000131596262,0.3154693407857964,0.01919,0.3233270794246404,0.6766729205753595,24.799551704877224,4.281691593711503,0.3297894517406712,0.2261830310610798,0.2199291223681467,0.2240983948301021,11.21782471133523,5.870289413297532,20.386788693623394,12257.244863741622,54.35796920632191,13.05262803424178,17.743383415254257,11.74784903361348,11.814108723212398,0.5626433187408797,0.791705069124424,0.695322376738306,0.5924170616113744,0.1069767441860465,0.7558609539207761,0.9191919191919192,0.8864197530864197,0.7907949790794979,0.116751269035533,0.495505617977528,0.7184325108853411,0.6295666949872557,0.5343137254901961,0.1047835990888382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486933268506,0.004460981618728,0.0065443034121693,0.0087037770533093,0.0110112450942513,0.0132949212586401,0.0154909194676015,0.0177049849482116,0.0200263612305994,0.0218765987925918,0.0237724403639642,0.0259776249615108,0.0279671386121307,0.030010298661174,0.0318247934225321,0.0337305073010427,0.0359490316637166,0.0378732097856409,0.0397418442959437,0.0418203028977355,0.0566151983045716,0.0704284309006048,0.0836235106561503,0.0967032967032967,0.1088194356573453,0.1237337957578192,0.1367102569813442,0.1486919238666709,0.1596714938698791,0.1707026853191831,0.1838966630785791,0.1964154371998442,0.2083170254403131,0.2191352627437265,0.2284617837546595,0.2388289335325696,0.2483404179357588,0.2572103221453871,0.2653054279394248,0.2737118063903103,0.2800319230146429,0.2871998222035068,0.2932658179925228,0.2986558269482116,0.3038117681356591,0.3092756804755621,0.3146196925467006,0.3188605208174081,0.323326682387085,0.3281361392020701,0.3279257932928553,0.3273047353147478,0.3266809385651108,0.3255931566627171,0.3237860253570951,0.3224362119725221,0.32011987251653,0.3193764578337001,0.319536338923937,0.3193496515990709,0.3194743846889235,0.3209661797552924,0.3218725759449883,0.3234035881470199,0.3234904182234542,0.3239653462762903,0.3250720132333228,0.3299209374114089,0.3342467678471051,0.3377280331394885,0.3401422578880175,0.343455330030366,0.3482621585819718,0.3517648841084684,0.352316511606052,0.3553425630102946,0.3563076923076923,0.357630979498861,0.360078277886497,0.3649921507064364,0.0,2.0332759358652104,54.27653948084645,186.19145919396405,262.8591716168961,fqhc5_80Compliance_baseline_low_initial_treat_cost,83 -100000,95676,44648,423.36636146996113,6107,62.59668046323007,4788,49.52130105773653,1883,19.398804297838534,77.28108161739658,79.66852570239533,63.29287913429015,65.05589012856751,77.03906376367496,79.42648802878956,63.20169722250421,64.96725257171344,0.2420178537216202,242.0376736057648,0.0911819117859451,88.63755685406716,161.95146,113.54021806736355,169270.72620092813,118671.57705941256,352.67663,228.0741833931254,368017.44429114927,237783.69015544705,363.4832,176.13904912906858,376682.2191563193,181700.1070842139,3140.64175,1441.0087034431651,3247871.085747732,1471424.4883180368,1147.87035,510.0678600165432,1186537.1566537062,519909.6952386629,1850.9838,786.2987837134328,1906266.2527697645,795345.1558353247,0.3804,100000,0,736143,7694.123918224006,0,0.0,0,0.0,30010,313.09837367782933,0,0.0,33191,343.6598520005017,1595172,0,57240,0,0,6507,0,0,64,0.6584723441615452,0,0.0,0,0.0,0,0.0,0.06107,0.1605415352260778,0.3083346978876699,0.01883,0.3277743142144638,0.6722256857855362,24.370741109022763,4.382380320879035,0.3122389306599833,0.2412280701754386,0.2203425229741019,0.2261904761904762,11.088779190574083,5.623249433649332,20.23989545303462,12324.54665025346,54.33072682388672,13.88415380175107,16.824767148305952,11.6386446844539,11.983161189375796,0.5543024227234754,0.793073593073593,0.6929765886287625,0.5535545023696683,0.1089566020313942,0.701095461658842,0.9260143198090692,0.8547486033519553,0.6798418972332015,0.1209677419354838,0.5008547008547009,0.717391304347826,0.6420404573438874,0.513715710723192,0.1053892215568862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022590285164362,0.0043897444215776,0.0064544282858215,0.0085846938464508,0.0106482517340276,0.0130137265284509,0.0153047698676509,0.0175705476375219,0.0196882187579862,0.0217504785105272,0.0242281941126411,0.026417922707298,0.0284039489921842,0.0305493735575337,0.0323559463727281,0.0344307043302039,0.0363702284145646,0.0385186261586207,0.0405076458961822,0.0422047802203529,0.0574646592345707,0.0717606651448197,0.084449529727914,0.0973305133789997,0.1103315115322121,0.1262920682614077,0.139140127388535,0.1509793688157039,0.1621295068645481,0.1730110494271264,0.1857256881525584,0.1979256979365354,0.2093489294038206,0.2198276334088943,0.229651258883808,0.2397790545486812,0.249424336589837,0.257812676024604,0.2664431437176791,0.2743883555280272,0.2813673232908459,0.2884029437959968,0.2948809184932157,0.3013369529964324,0.3070501040538402,0.3124182361217387,0.3171141360206563,0.3208278605950088,0.3249974044850498,0.3283050825030103,0.3273640709829025,0.326147263818922,0.3253939068201748,0.3245351973779621,0.3236294726789818,0.3221523947081329,0.3204977619758103,0.3210356413465973,0.3223263704439913,0.3224248063125123,0.322965607968427,0.3239168007628583,0.324089098687122,0.3244744238336144,0.3268365817091454,0.3277381232514968,0.3282899064725567,0.3323125493291239,0.33396577773093,0.3362431553051345,0.338925259138025,0.3435102386369649,0.3459194571841427,0.3465428743961353,0.349197461739455,0.3555581368335463,0.3515068908072088,0.3476180984652182,0.3419147224456959,0.3400686237133054,0.0,1.98246246859646,56.38086916715692,182.43469708792813,258.6164527369328,fqhc5_80Compliance_baseline_low_initial_treat_cost,84 -100000,95734,44495,420.1015313263836,5985,61.38884826707335,4684,48.425846616667016,1859,19.073683330896024,77.3612597271838,79.72655187669484,63.34108899169471,65.08895143974064,77.12204473575923,79.48817004444615,63.252501510659904,65.00328919292262,0.2392149914245749,238.3818322486917,0.088587481034807,85.6622468180177,163.98074,114.82576619968702,171287.8810036142,119942.51384010597,355.15742,230.3858312278973,370504.867654125,240173.33573014528,359.80499,174.48942445079268,373097.2799632315,180111.67283524422,3078.14252,1420.155499415203,3183366.5782271707,1451498.0460601284,1100.74196,489.4898470796749,1139502.7889777925,501012.6883653397,1817.56428,764.4510792221511,1866217.456702948,769320.5804935683,0.38057,100000,0,745367,7785.812772891554,0,0.0,0,0.0,30289,315.88568324733114,0,0.0,32947,341.33118850147287,1590353,0,57080,0,0,6613,0,0,66,0.68941024087576,0,0.0,0,0.0,0,0.0,0.05985,0.1572641038442336,0.310609857978279,0.01859,0.3408981940226945,0.6591018059773054,24.417923163207767,4.356698151247678,0.3334756618274979,0.2284372331340734,0.2209649871904355,0.2171221178479931,11.244311944416076,5.804619819528448,19.78363881494172,12310.257823660342,53.36167079673733,12.866720446457665,17.84435357470513,11.59648044607871,11.054116329495828,0.5604184457728437,0.7859813084112149,0.6939820742637645,0.5671497584541063,0.1111111111111111,0.7229470452801228,0.903061224489796,0.8535469107551488,0.7410358565737052,0.1300448430493273,0.4977817213842058,0.7182890855457227,0.632,0.5114795918367347,0.105793450881612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045725525184524,0.006931054778673,0.0093466489215795,0.0116037831790908,0.0139915683998289,0.0161217955254624,0.0181548986572726,0.0204382099440735,0.0226965601965601,0.0249248972142761,0.0271760899707287,0.0292193767355754,0.0314306023426152,0.0336721531396728,0.0356463485236953,0.0375912597732097,0.0397032117470035,0.0420514100324432,0.0438125800973149,0.0583985047978031,0.0724633130272771,0.0860772240462379,0.0990168760843278,0.111087689713322,0.1262817395716611,0.1388229056203605,0.1506432424955042,0.1612885997799639,0.1714889100907989,0.183530197150948,0.1961770623742454,0.2074409097827741,0.2183575090453964,0.2278558942843636,0.2388477584852207,0.2484809293924832,0.2572276092989808,0.2659570850477777,0.2732506237553506,0.2808056050130645,0.2877106068749562,0.2943172681265667,0.2992411547852731,0.3046704495853339,0.3106082036775106,0.3156652092442223,0.3202221487939404,0.3244033752653103,0.3286147757255936,0.3272751732023946,0.3259053690168709,0.3240904870431332,0.323108030040439,0.3222672786417717,0.3204600094942039,0.3191435529270375,0.3193861490031479,0.3196596934513153,0.3207648128990832,0.3217663252120826,0.3224292588265579,0.3227119212938684,0.3241374681165257,0.325111999614625,0.3257900795311846,0.3258510607839207,0.330013595118404,0.3333215846609333,0.3368546940402631,0.3385471293720644,0.3418264646678673,0.3431317128321085,0.3459028831562974,0.350967380128984,0.3531563421828909,0.3561309977151561,0.3556095585257189,0.3644990231649456,0.3726434015242679,0.0,1.959078595458636,57.35374008503398,175.2615038088299,250.64066430030576,fqhc5_80Compliance_baseline_low_initial_treat_cost,85 -100000,95650,44764,424.5582854155776,6152,63.14688970203868,4796,49.54521693674856,1892,19.39362258233141,77.2430810454354,79.64794150794116,63.27207635196621,65.0502910517698,77.00877775444049,79.41514992391875,63.184404892731166,64.96547612227182,0.2343032909949158,232.791584022408,0.0876714592350467,84.81492949798053,162.64424,114.03663136544236,170041.0245687402,119222.82421896743,356.50647,230.78861684397344,372100.2509147935,240667.29794905827,367.51828,177.28281945931144,380360.66910611605,182385.049829464,3167.64981,1447.5215811505086,3275222.111866179,1477487.5466316326,1146.45179,504.1686846114361,1182865.2796654468,511952.34242324525,1857.18558,781.0780570308701,1906295.5776267643,786680.9710125378,0.38141,100000,0,739292,7729.137480397281,0,0.0,0,0.0,30304,316.19445896497643,0,0.0,33661,348.0501829587036,1588562,0,56981,0,0,6463,0,0,62,0.648196549921589,0,0.0,1,0.0104547830632514,0,0.0,0.06152,0.1612962428882305,0.3075422626788036,0.01892,0.3250850603154964,0.6749149396845036,24.92021792357502,4.227557354900034,0.3265221017514595,0.2362385321100917,0.2116346955796497,0.225604670558799,11.017313517227493,5.827637214095208,20.281139319230924,12330.361872148254,54.66445504566721,13.575836546206684,17.816194544064178,11.38060515224666,11.891818803149675,0.5692243536280234,0.8014121800529568,0.7151979565772669,0.5694581280788177,0.1146025878003696,0.721875,0.9333333333333332,0.8439024390243902,0.7024793388429752,0.1345291479820627,0.5136518771331058,0.728021978021978,0.6695501730103807,0.5278137128072445,0.109429569266589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021890708610345,0.0044833952082445,0.0067612153944549,0.0090124874262083,0.011239612258806,0.0133611691022964,0.0154473617129747,0.0177156510374121,0.0200323134816753,0.022241792450898,0.0243049502107454,0.0266592727235384,0.0288155986795421,0.0305964767693417,0.0327298625159985,0.0345562081230871,0.0367420083283266,0.0386611312921639,0.0404913463138625,0.0426166275736252,0.0575038140817989,0.0723787577249397,0.0852625279536363,0.0981642878194602,0.1104706404003293,0.1265522607692226,0.1387065247413262,0.1506455017430146,0.1617946029232382,0.1727633981312426,0.1853190616974902,0.1976281585708246,0.2089813967673071,0.2195744308039381,0.2294814569901361,0.2398628784432931,0.248921185019564,0.2585909587836847,0.2672410853329999,0.2745880491244969,0.2817838351528637,0.2886923932775078,0.295153245583897,0.3007812031248125,0.3062347113875062,0.311134710611131,0.3157445954757486,0.3200637755102041,0.3234022104757328,0.3269935808351532,0.3263254483382136,0.3253349137218149,0.3246166445454802,0.3234156587238357,0.3228315946348733,0.3218897299289125,0.3204961250158811,0.3216009223420901,0.3217416615300322,0.322891479949134,0.3247540027468909,0.3259462250287938,0.3267253883831907,0.3262860220845677,0.3277742916445431,0.328630988279099,0.3294269711331323,0.3330172876963433,0.3371071844249286,0.3408281656331266,0.3436105103308637,0.3452317242855613,0.3477985429204941,0.3477394636015326,0.3519047619047619,0.3542857142857142,0.3520820385332505,0.3544821940237413,0.3594825213322323,0.3652373660030628,0.0,2.2758581867687115,56.134494183971015,183.8709145533812,261.0592438025065,fqhc5_80Compliance_baseline_low_initial_treat_cost,86 -100000,95821,44455,420.1688565137079,6188,63.53513321714447,4871,50.291689713110905,1985,20.350445100760798,77.44904619750217,79.77501923176763,63.38601454967061,65.10662422266584,77.2020494506757,79.52835753248864,63.29525262980391,65.01836031618275,0.2469967468264684,246.66169927898807,0.0907619198667077,88.26390648309257,164.31184,114.96567020874812,171477.67190908047,119979.3888696091,355.80688,230.0536283076453,370804.5313657757,239566.8572730876,366.35967,176.51550291108694,378971.03975120274,181596.3186523696,3210.55775,1463.6120436365586,3317046.9625656167,1493912.465572846,1166.57519,517.9594885709965,1202640.6528840235,525797.2735778545,1945.08688,810.6606514278503,1996353.4089604572,818241.8718541808,0.3811,100000,0,746872,7794.43963223093,0,0.0,0,0.0,30259,315.23361267363106,0,0.0,33610,347.3351353043696,1593895,0,57213,0,0,6581,0,0,76,0.7931455526450361,0,0.0,0,0.0,0,0.0,0.06188,0.1623720808186827,0.3207821590174531,0.01985,0.3327146171693735,0.6672853828306264,24.62707102414073,4.295960813242003,0.3235475261753233,0.2278792855676452,0.2245945391090125,0.2239786491480188,11.163338409893642,5.88368802556512,21.077152323980258,12281.278187912752,55.12976843295549,13.24253465983192,17.81454265288609,12.21294727318162,11.859743847055851,0.5682611373434613,0.7810810810810811,0.7049492385786802,0.6023765996343693,0.1200733272227314,0.7437694704049844,0.9012658227848102,0.8771084337349397,0.7665369649805448,0.1751152073732718,0.5054362977418455,0.7146853146853147,0.6434108527131783,0.5519713261648745,0.1064073226544622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394063376644,0.0046222618673532,0.0070114557649183,0.0093863329303846,0.0115419425038388,0.0136947247309419,0.0160374376803319,0.0182998397615815,0.0205825242718446,0.0229302882401694,0.0254342368191832,0.0273912151067323,0.0293585526315789,0.0313304367522599,0.0333336771212574,0.0354980680620699,0.0374046512590691,0.0393504837154322,0.0411125425982877,0.0429640734147433,0.0573839750477243,0.0707392808974667,0.0843245962459519,0.0975320186175521,0.1094907431798784,0.1257582482615771,0.1383795128362765,0.1502552105487026,0.1614998933219543,0.1721080641189005,0.1845523559646444,0.19656707066779,0.2083351426462286,0.2197974860335195,0.2281988232194607,0.2383920775445693,0.2481012940154569,0.2562574359665073,0.264565057445243,0.2726348379431287,0.2802382353959625,0.2873575286692565,0.2936283185840708,0.2994358385924651,0.3053461939267625,0.3098756023207788,0.3155202315744819,0.3200314577096758,0.3236194140660305,0.3273083652340923,0.3268678353781309,0.3253066600806784,0.3248852132155745,0.3241366393407195,0.3222822467253756,0.3201586454122492,0.3184295932192709,0.3179395802000915,0.3178650348461669,0.3190491418825285,0.3200604556565223,0.3217271564866725,0.3223133596309978,0.3220286039402932,0.3229543982536522,0.324179955918579,0.3252228720685935,0.3273199912305428,0.3305141252851377,0.3319223009059619,0.335608956854178,0.3389172516485854,0.3406683480453972,0.3400410053914496,0.3423687193048734,0.3439203602749466,0.3481458780263561,0.3515052888527258,0.3476112026359143,0.3455854490337249,0.0,2.1119646384287845,56.13803779875686,188.96832845627185,261.2962084081424,fqhc5_80Compliance_baseline_low_initial_treat_cost,87 -100000,95797,44570,421.0048331367371,6013,61.421547647629886,4687,48.23741870831028,1923,19.562199233796463,77.3497797498425,79.68293686294989,63.33168066437421,65.0600460679093,77.10344446722144,79.44304747199708,63.23918428871482,64.9737606270194,0.2463352826210609,239.88939095281123,0.0924963756593868,86.28544088989543,163.06774,114.30507224833852,170221.71884297003,119319.7819734014,352.7606,228.28751534216377,367546.1340125474,237617.4587854505,361.14129,174.74523618359274,373467.6868795474,179666.5631455047,3085.61041,1417.4864938444275,3175153.804398885,1434176.8340185585,1118.80785,496.18430132651577,1147760.900654509,497824.5677501223,1889.00576,795.8468506998333,1923015.4597743144,788142.5223984107,0.38131,100000,0,741217,7737.350856498638,0,0.0,0,0.0,30036,312.79685167593976,0,0.0,33042,341.325928786914,1593837,0,57155,0,0,6414,0,0,70,0.7307118176978402,0,0.0,0,0.0,0,0.0,0.06013,0.157693215493955,0.3198070846499252,0.01923,0.3278402788781492,0.6721597211218507,24.37370969690578,4.336978044339205,0.3275016001706848,0.2225304032430126,0.2197567740558993,0.2302112225304032,11.107314401994511,5.824845047190853,20.475499608432347,12298.838700689666,53.41992376723909,12.481364176459016,17.55104179276389,11.60361984213119,11.783897955884996,0.5585662470663537,0.7909875359539789,0.7061889250814333,0.5854368932038835,0.098239110287303,0.7070161912104858,0.907928388746803,0.8611764705882353,0.6926070038910506,0.0803571428571428,0.5017699115044247,0.7208588957055214,0.6468468468468469,0.5498059508408797,0.1029239766081871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022185302996535,0.0046336195970677,0.0068199809202914,0.0090217314002986,0.0113823619163869,0.0140216893233542,0.0161296900489396,0.0184151159111092,0.0205648169915267,0.0227535594018362,0.0246742729444085,0.0265724787974618,0.0288114505465127,0.0307788944723618,0.0328959584081203,0.034904987755355,0.036935817805383,0.0389398890099061,0.0411679135494596,0.043274086568998,0.0584503662277498,0.0725871390774186,0.0857870627574712,0.0985853320160595,0.1111907572946534,0.1270581517083849,0.1396093907471648,0.1507339244467625,0.1614216126137674,0.1722787783868441,0.1849365260684958,0.1973265504924775,0.2081434181470079,0.2179830554796392,0.2277818117807556,0.2380572454373192,0.2469418277601678,0.2563442069741282,0.2649622114795397,0.2724336952040676,0.2792947056645686,0.2860784657662398,0.2925461429247515,0.2982346882560061,0.3037286160047594,0.3088519663509502,0.3138458845009129,0.3191965705417679,0.3239150412239034,0.3272588115754609,0.3270528343052619,0.3256602058106377,0.3240937865692895,0.3232520749141789,0.3220871221704642,0.3207440120219584,0.3201641786314221,0.3212683808428489,0.3223483941580873,0.3223804242836189,0.3234107246757634,0.3252119483400681,0.3264056372292012,0.3277632373666196,0.3289967295113505,0.328996767129002,0.3302953490359147,0.3339609615263917,0.3367689190133464,0.3376336450072987,0.3405491263898343,0.3406168985767949,0.3448753462603878,0.3460567582039318,0.3512392799924606,0.3505020673360898,0.3511485451761102,0.3560072449184946,0.3606646690275129,0.3580533024333719,0.0,2.6504473446454537,56.49353064112334,176.3790277639124,250.427973244648,fqhc5_80Compliance_baseline_low_initial_treat_cost,88 -100000,95811,44516,422.2792789971924,6097,62.46673137739925,4841,50.06732003632151,1913,19.695024579641167,77.41775944651599,79.74690342080046,63.37436231324406,65.0956101119667,77.18189420748651,79.50905070731396,63.2876812139319,65.00990275786559,0.2358652390294793,237.85271348650383,0.086681099312166,85.70735410111752,164.34264,115.04917623380656,171527.48640552757,120078.84567931292,358.01864,231.3863569868644,373238.2189936437,241069.6690222045,364.55326,176.07221243439693,377438.07078519167,181414.73333730787,3162.28526,1444.0983734537658,3271645.1555666886,1478367.2362816022,1140.63062,508.43482699337767,1177385.6029057205,517557.7450869579,1875.69074,781.7394707477765,1932561.981400883,794714.1239403675,0.3804,100000,0,747012,7796.703927523979,0,0.0,0,0.0,30473,317.5835759985805,0,0.0,33370,345.29438164720125,1590966,0,57097,0,0,6518,0,0,76,0.7827911200175345,0,0.0,0,0.0,0,0.0,0.06097,0.1602786540483701,0.3137608659996719,0.01913,0.3423887587822014,0.6576112412177986,24.19258415261212,4.316874118326325,0.3172898161536872,0.2431315843833918,0.2202024375129105,0.2193761619500103,11.494768410927596,6.024462832829685,20.260956743153237,12243.81354800539,54.75257783750023,14.115757200476454,17.24667196454632,11.756339306927474,11.63380936554999,0.5585622805205536,0.7774001699235344,0.6959635416666666,0.5712945590994372,0.1045197740112994,0.7346153846153847,0.9071428571428573,0.8764845605700713,0.7198275862068966,0.1674008810572687,0.4939282688506072,0.7054161162483488,0.6278026905829597,0.5299760191846523,0.0874251497005988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.004389121466149,0.0064332173189516,0.008480428997989,0.0108191653786707,0.0129891282218331,0.015136071756192,0.0174838736016983,0.0194505202477564,0.0215130797887583,0.0236162361623616,0.0257344638567821,0.0277026818663075,0.0296182671718003,0.0316443949517446,0.0338153274116918,0.0357863581326516,0.0377781003130896,0.0398699396445155,0.0416736070625468,0.0561096736499457,0.069673116526066,0.0834433893046558,0.0960999128178733,0.1085518694049499,0.1240703177822853,0.1364560823693911,0.1486418965608887,0.159676507303125,0.1696037365957127,0.1821075953451354,0.1942415730337078,0.2057766436831532,0.2159258410036358,0.2258815775019224,0.2368915929203539,0.2469126170307623,0.2554770754494515,0.2641718861492111,0.2719777706627636,0.2791914524978342,0.2862112439297721,0.2927771021029886,0.2989076464746772,0.3049315932466524,0.3109360576035448,0.3160051472333621,0.3200325215645921,0.3239176243972438,0.3280663638159194,0.3278212860846554,0.327195525813145,0.3272154480120389,0.325182139508043,0.3249551166965889,0.3233215007038374,0.3214534075104311,0.3229950028672073,0.3244094220164749,0.3251410368208432,0.325149588631264,0.3260925171674242,0.3269323091694671,0.3264017080710806,0.3272875581785903,0.3276529419405117,0.328077502201767,0.3304683333856144,0.3336364908353155,0.3360246972215626,0.3386063002863766,0.3404255319148936,0.3440211241041117,0.3469001061088373,0.3513589767704316,0.3492327822053051,0.3501861042183622,0.3526305098517164,0.3514986376021798,0.3456362937331795,0.0,1.7336712503295837,57.43582432281939,178.23928968638847,267.0455891334882,fqhc5_80Compliance_baseline_low_initial_treat_cost,89 -100000,95731,44253,418.30754927870805,6075,62.23689296048303,4807,49.73310630830139,1914,19.65925353333821,77.3893283971574,79.75082270566877,63.35181630130408,65.093852318168,77.14570025214829,79.50676676082563,63.26086337322578,65.0050135304035,0.2436281450091115,244.05594484314008,0.0909529280782948,88.8387877645016,163.6679,114.56385866359648,170966.4580961235,119672.6856123894,352.18986,227.663441428458,367412.9278916965,237333.414911009,357.81929,172.96049801433773,370989.700306066,178504.18019575372,3156.66503,1449.980163872447,3265566.0548829534,1482773.7868323177,1156.50496,512.4384717820964,1192906.017904336,520151.8021761152,1873.03446,791.7189323747584,1924502.700274728,798779.1289280878,0.3792,100000,0,743945,7771.202640732888,0,0.0,0,0.0,30015,313.022949723705,0,0.0,32749,339.3049273485078,1596104,0,57210,0,0,6471,0,0,58,0.6058643490614326,0,0.0,1,0.0104459370527833,0,0.0,0.06075,0.1602056962025316,0.3150617283950617,0.01914,0.3280539438607495,0.6719460561392504,24.44161303494945,4.305024031516751,0.3220303723736218,0.2336176409402954,0.2219679633867277,0.2223840232993551,11.12833494551784,5.792711459981211,20.340485220799508,12282.799683847848,54.54758859897689,13.360968278176571,17.581510182998965,11.836811139094875,11.76829899870648,0.5504472644060745,0.767586821015138,0.6873385012919897,0.5660731021555764,0.108512628624883,0.711864406779661,0.9242819843342036,0.8541666666666666,0.7165354330708661,0.0829694323144104,0.4907381020233685,0.6864864864864865,0.6227598566308243,0.5190651906519065,0.1154761904761904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382693417867,0.0045506603018233,0.0067760161488289,0.0089050902186164,0.0111117888658452,0.0132829835311361,0.0153473014837762,0.0176527009652864,0.0199658720508445,0.0222963501110212,0.024479967209755,0.0266138630114499,0.0288943690916563,0.0309109624292331,0.0330009178380273,0.0350625193758396,0.0368460829683925,0.0389398890099061,0.04096290367845,0.0430959945830512,0.0573800449015819,0.0712910449322981,0.0839809949340801,0.0963505798488082,0.1083833155891932,0.1237719567263459,0.136606167326113,0.1480404995368743,0.1589316239316239,0.1700626286890871,0.1830351854045729,0.1953330376364442,0.2076497385215869,0.2182551832735543,0.2289672322352061,0.2389799151406383,0.2482698575702103,0.2572717251929003,0.2657602959701306,0.2734479716802804,0.2800999282921977,0.2869769562624952,0.2930771504581732,0.2991737516465094,0.3053259035340107,0.3103197763904793,0.3152311252892975,0.3194954799171,0.3245125708811268,0.329271509205043,0.3282689075630252,0.3275601374570446,0.3264221756792848,0.3252798035959275,0.3238627933889202,0.3220512507067218,0.3207582908465266,0.3221076746849943,0.3229548125564204,0.3233937191613673,0.3251672459543297,0.3249181491854365,0.3250277202451934,0.3252813002321843,0.326332988922796,0.3267103007635967,0.3275950230100563,0.3295664423227422,0.3316100185139903,0.3322940921109751,0.3352391324076595,0.337185263715876,0.3415231871308282,0.3441470054446461,0.3465653153153153,0.3501119886832488,0.3528161530286929,0.3562386980108499,0.3535494689770821,0.3509596553074814,0.0,1.8763647248812003,57.336827920111794,180.79329906370043,260.2726130116335,fqhc5_80Compliance_baseline_low_initial_treat_cost,90 -100000,95667,44657,423.62570165260746,6266,64.21231981770099,4887,50.424911411458496,1868,19.118400284319566,77.35982293729873,79.73663646548658,63.33991942654043,65.09037064736958,77.1189758976994,79.49644693041182,63.24955023688936,65.00270522635815,0.2408470395993305,240.18953507476223,0.0903691896510778,87.6654210114367,162.09336,113.50546753381342,169434.97757847531,118646.41677256885,355.04537,228.57371495993007,370485.1620726061,238285.40544423115,365.24153,176.2775443321152,377709.9731359821,181149.65908481012,3204.83097,1475.2433211248651,3307800.1818808992,1499887.9218059564,1182.89344,524.7715574264035,1219656.4123469952,531798.7762531426,1844.219,788.1386679127696,1888831.5720154284,791792.6778603463,0.38321,100000,0,736788,7701.589889930697,0,0.0,0,0.0,30218,315.187055097369,0,0.0,33509,346.1590726164717,1599847,0,57408,0,0,6338,0,0,64,0.6689872160724178,0,0.0,1,0.0104529252511315,0,0.0,0.06266,0.1635134782495237,0.2981168209383977,0.01868,0.3310502283105023,0.6689497716894978,24.40659253557441,4.362522054581143,0.3106200122774708,0.2406384284837323,0.2238592183343564,0.2248823409044403,11.275531357561308,5.770864199339008,20.06957635032224,12355.38331960972,55.64779163846755,14.047637537568384,17.168236371122163,12.302621846940175,12.129295882836823,0.577450378555351,0.7882653061224489,0.7147562582345192,0.6179159049360147,0.1219290263876251,0.7175856929955291,0.9135514018691588,0.855036855036855,0.7234848484848485,0.1358024691358024,0.5244005641748942,0.7165775401069518,0.6633663366336634,0.5843373493975904,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759914124843,0.0042671369639472,0.0065844873941054,0.0089273019032723,0.0114181714657556,0.0135782991500839,0.0156207012502674,0.0177121168836469,0.0198778320292549,0.0220455847450691,0.0240744155551457,0.0259451141318286,0.0280595726311245,0.0299935132463627,0.0322750340388661,0.0342521678914348,0.0363173314836478,0.0382309623083784,0.0401297459142512,0.0421560555688722,0.0566972074509763,0.0711802647009549,0.0843216692205965,0.0963363565581532,0.1089792947778117,0.125309517258894,0.1374449339207048,0.1499041329356625,0.1611982424067481,0.1715469494654587,0.1848043970255415,0.1968333387482807,0.2094610035584865,0.2196002889477486,0.2295883531925203,0.2406691408630144,0.2509181019567571,0.2603161753131395,0.2677797690615004,0.2749324602774852,0.2823092669049023,0.2888940873735306,0.2956766605930098,0.3010299401197605,0.3060543557388983,0.3111598020630739,0.316978962237028,0.3226130397752552,0.3271290355960264,0.3306338864121976,0.3302580792662425,0.3290702311701527,0.328397740240346,0.327235185399099,0.3262459753401486,0.323478553612144,0.3208291107170002,0.3223644219553467,0.3231464211769134,0.324175529537939,0.324997187956957,0.3266234279838645,0.3276993729947365,0.3285538530365731,0.3300014416838868,0.3299763187342233,0.3316388833669383,0.334504391468005,0.3385545959931471,0.3406327961034333,0.3444055148564408,0.3448954620418152,0.349930318003294,0.3538237770803031,0.3576490598129075,0.3626228722128986,0.3595333128645993,0.3615819209039548,0.3588156123822342,0.3575248281130634,0.0,2.5505319170833864,58.54350872947871,182.30904624663413,265.2556033883519,fqhc5_80Compliance_baseline_low_initial_treat_cost,91 -100000,95865,44557,420.65404475043033,6025,61.61790017211704,4736,48.93339592134773,1812,18.609502946852345,77.34109898624328,79.63341067791427,63.34986309044478,65.04477314398372,77.11458570679174,79.40578396917712,63.26533390256421,64.96171364853959,0.2265132794515381,227.626708737148,0.0845291878805696,83.05949544413238,161.7726,113.3525615827971,168750.43029259896,118241.86260136348,352.21461,228.57190913327835,366939.0184113076,237963.16604942188,363.68632,176.2822547408074,376300.3703124185,181519.58886802808,3084.70338,1422.452506301446,3189810.932039848,1455861.2385139994,1116.70843,492.6683039831639,1155999.5931779065,505043.6852449171,1774.9071,745.8649209650989,1824859.3334376467,755765.8839895778,0.38078,100000,0,735330,7670.474104209044,0,0.0,0,0.0,29931,311.73003703124186,0,0.0,33328,344.59917592447715,1600071,0,57466,0,0,6418,0,0,65,0.6780368226151359,0,0.0,0,0.0,0,0.0,0.06025,0.1582278481012658,0.300746887966805,0.01812,0.3427393785668992,0.6572606214331008,24.35880016953458,4.339100772563153,0.3289695945945945,0.245777027027027,0.2107263513513513,0.214527027027027,11.160166139380475,5.746795123077561,19.321290456910017,12277.658187683845,53.95536172047466,13.821514855461896,17.81247905618796,11.246596599479105,11.074771209345707,0.5618665540540541,0.7585910652920962,0.6970474967907574,0.5731462925851704,0.1181102362204724,0.7175097276264591,0.9213759213759214,0.8345498783454988,0.6944444444444444,0.1348837209302325,0.5039119095914227,0.6710700132100397,0.6477768090671316,0.532171581769437,0.1136079900124844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289960002025,0.0047319411091183,0.0069480367992372,0.0091071537352529,0.0110788120261012,0.0134332003582186,0.0156993388143484,0.0178729915837796,0.0199170633056196,0.0221981259462334,0.0243685083891586,0.0265122766712477,0.0287072985353628,0.0310001749097157,0.0330867199736213,0.0351536294109754,0.03713163064833,0.0391441744806506,0.0412686877076411,0.0433013930938335,0.0568392734249546,0.070907532814982,0.0847386613595894,0.097723119578231,0.1109051851227833,0.1261723700887199,0.1389918850774413,0.1515750752187457,0.1615784362895222,0.1716876185576954,0.1848547784820343,0.1965201029478556,0.2080289590399165,0.2187827911857292,0.2285459666417286,0.2385167623141521,0.2478548554468261,0.2564241033256829,0.2648530863777195,0.2720848461247723,0.2793503533957222,0.2864810505513523,0.2932743488443614,0.2990692269912193,0.3047469853182265,0.3098032447359337,0.3149886127587156,0.3196723396677605,0.3235986750168211,0.3282516301048019,0.3266993428848432,0.3256706562113083,0.3245951545389201,0.3227856346713373,0.3219713320334013,0.3200147189598601,0.3182192779485879,0.3186520401953851,0.3193010734250145,0.3201061997703788,0.3211347677942809,0.3215858157153623,0.3228106334651299,0.3245685005393743,0.3249939511250907,0.3262931712174414,0.3272524518914591,0.3293638258891907,0.3333099111126726,0.3350683407501589,0.3379838599370811,0.3401031421128183,0.3423275753372841,0.3421552969807589,0.3482168196007946,0.3473909935668334,0.3435677003377341,0.3496969696969697,0.349615806805708,0.3615472998851015,0.0,1.7799829811941117,56.61926502054419,181.97199677491764,253.8062688056153,fqhc5_80Compliance_baseline_low_initial_treat_cost,92 -100000,95656,44442,420.6218114911767,6012,61.72116751693568,4780,49.53165509743246,1931,19.90465835912018,77.31769350596971,79.74129339547866,63.289715480586615,65.08183588292276,77.07338449512255,79.49368316000687,63.201313297200166,64.99372776836275,0.2443090108471608,247.6102354717966,0.0884021833864494,88.10811456001488,163.82872,114.7140451409248,171268.6292548298,119923.52297913856,354.89936,229.95458099510836,370596.8052187004,239978.8617620956,365.65804,177.45084752339943,379605.858492933,183398.88858311667,3129.86982,1427.0624669747867,3248653.7593041733,1468615.9526970822,1104.54293,486.0749294241874,1147305.9609433804,500751.6406960226,1885.3046,782.1479169479983,1946800.200719244,798636.2609632297,0.37909,100000,0,744676,7784.937693401354,0,0.0,0,0.0,30200,315.25466254077105,0,0.0,33482,347.3906498285523,1586587,0,56925,0,0,6335,0,0,75,0.7736054194195868,0,0.0,1,0.0104541272894538,0,0.0,0.06012,0.158590308370044,0.3211909514304724,0.01931,0.3319095079892422,0.6680904920107578,24.49383450306735,4.258864567749429,0.3223849372384937,0.2353556485355648,0.2238493723849372,0.2184100418410041,11.08252840030329,5.7618358200009405,20.59782264984268,12320.71621043083,54.14715699064135,13.343260923507556,17.481635108095855,11.9042455328755,11.418015426162428,0.5642259414225942,0.7688888888888888,0.700194678780013,0.585981308411215,0.1206896551724138,0.723207401696222,0.8859857482185273,0.8651399491094147,0.7286821705426356,0.1644444444444444,0.5050244042492105,0.6988636363636364,0.6437282229965157,0.5406403940886699,0.1086691086691086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024414458221898,0.0048269987425465,0.0070253807106598,0.0092175733493226,0.0117207769084416,0.0138753056234718,0.0161589782302654,0.018379836328528,0.0206523185246589,0.0226429406096885,0.0247395165015654,0.0267232869951468,0.0285961425585155,0.0305956138722122,0.0328346489234202,0.0352131622516556,0.0369924936756106,0.0390539796628478,0.0410635308808991,0.0431830980040461,0.0580281101415956,0.0718656356740219,0.0847573335573923,0.097509346532568,0.109930837864949,0.1256883259911894,0.1382655446470313,0.1505046306657714,0.1620728381196855,0.1721330841763859,0.1849950386125372,0.1972394067107986,0.2088406333718119,0.2196115356822213,0.2292293284856497,0.2390135175595205,0.2481874141186196,0.2574249622841188,0.2653492094121386,0.2728428867680251,0.2806729110465318,0.2875330571742844,0.2938389748205699,0.2992046640515349,0.3043827318176842,0.3095998520254023,0.3146068822211373,0.3195017050949254,0.3245487879141239,0.3282864314968952,0.3273112132774264,0.3266837380913046,0.3255145193120947,0.3245235033163302,0.3241493011718924,0.321934396076027,0.3199822478641961,0.3208727344365642,0.3220211676340048,0.3230402108487374,0.323894730943798,0.3243913968329,0.3262901513416741,0.3272828383939495,0.3283089290841229,0.3299405395580713,0.3313200056713455,0.3342390455666947,0.337165822121265,0.3397689507833518,0.3415557176728068,0.3452747953651536,0.3499526664562953,0.3503044140030441,0.3488897252540459,0.3517200474495848,0.3560675883256528,0.3523483168715984,0.3525835866261398,0.3608762490392006,0.0,1.6489947012119333,57.684618731672536,171.45131203577813,267.25195903760874,fqhc5_80Compliance_baseline_low_initial_treat_cost,93 -100000,95710,44537,420.8337686762094,6293,64.57005537561383,4923,50.86197889457737,1989,20.332253683000733,77.34880342590687,79.70699773387882,63.338894218876014,65.07733754166519,77.0977712008315,79.45994024181292,63.24393247297448,64.98722276386226,0.2510322250753631,247.0574920659061,0.0949617459015357,90.1147778029241,162.4216,113.80716130918302,169701.11796050568,118907.65950390034,358.83675,231.96977656930423,374332.0133737332,241779.0571113825,368.27953,178.3960037727852,381977.8602026957,184093.0639917197,3250.75336,1501.264233139711,3358180.503604639,1530334.6676007828,1174.59335,526.5627807157305,1211795.841604848,534718.6612848496,1952.76244,831.8823948430937,1998589.489081601,832567.8895324157,0.38073,100000,0,738280,7713.687180022986,0,0.0,0,0.0,30505,318.1067809006374,0,0.0,33622,348.51112736391184,1592824,0,57235,0,0,6408,0,0,92,0.9507888412914012,0,0.0,0,0.0,0,0.0,0.06293,0.1652877367163081,0.3160654695693627,0.01989,0.3278216019417476,0.6721783980582524,24.667917163240705,4.398053165925943,0.3030672354255535,0.2360349380459069,0.2327848872638635,0.228112939264676,11.143793284811636,5.735964418158902,21.36885481553593,12326.076759532809,56.12030945497919,13.957742782978489,16.915910424829455,12.751643860281018,12.495012386890233,0.551696120251879,0.7693631669535284,0.6896782841823056,0.5794066317626527,0.1148708815672306,0.7068837897853442,0.9210526315789472,0.8531645569620253,0.7043795620437956,0.1515151515151515,0.4930011198208286,0.6841397849462365,0.6308113035551504,0.5401376146788991,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0045209423022341,0.0068489675815534,0.0093357307571186,0.0115503497641125,0.0140886649361225,0.0164310395792349,0.0186383586812289,0.0209187062490419,0.0232127322040837,0.0255211856589385,0.0276081490224252,0.0294042050069398,0.031462339908578,0.0336183864412374,0.0357836653715797,0.0376598498576236,0.0396264591439688,0.0417377199184793,0.0434306911606873,0.0574818280558108,0.0725297497566642,0.0855715964411616,0.0985743595139144,0.110914211575583,0.126138515407644,0.1386760617187002,0.1505169127902643,0.1611176407735869,0.1715962365764432,0.1853751023398112,0.1972992274232292,0.2085381770720034,0.2187708495116429,0.228220561858336,0.238341681812137,0.2480141218005295,0.2574967625696751,0.2663910688123928,0.2743942971095881,0.2812619436433758,0.2876420537668387,0.2941155572397949,0.30008391273076,0.3056821081021977,0.3106754242196453,0.3156130807228162,0.319516846789574,0.3239509494489574,0.3277283217936036,0.3269937906603989,0.3257344236116847,0.3251416969799509,0.3232916335237544,0.3216708318457694,0.3199754808060685,0.3184230117371264,0.3197505538688767,0.3206554239923454,0.3212390803365668,0.3220570615545904,0.3234388568721876,0.3253667622376159,0.3262352651710023,0.3282411528375875,0.3286678656136784,0.3290593409103889,0.3313907702000315,0.3342815002107037,0.3390921005599904,0.3417039539768057,0.3430774172823643,0.3445881378607377,0.346085751674236,0.3501568291987453,0.3538387600624775,0.3610591900311526,0.3636928172221072,0.3686713286713287,0.3619084561675718,0.0,2.168213321916767,59.43650533117931,182.9074039261795,269.01362445575074,fqhc5_80Compliance_baseline_low_initial_treat_cost,94 -100000,95628,44287,420.00250972518506,6083,62.37712803781319,4708,48.55272514326348,1918,19.523570502363324,77.26744378178137,79.68333527342281,63.28338998351626,65.06958628139506,77.02595398085505,79.44724191707986,63.19259317684379,64.98432320553849,0.2414898009263169,236.0933563429484,0.0907968066724649,85.26307585657378,162.02032,113.497367786054,169427.69900029278,118686.3343226398,351.65514,228.10891902963235,367063.0986740285,237868.48938556947,359.31207,173.51191035257847,372002.8234408333,178527.0741188618,3100.44542,1420.742976345132,3200845.526414857,1444349.0571225318,1099.62393,487.6391126836461,1134529.4474421716,494565.4020617873,1875.11644,797.0729881960578,1912108.775672397,790830.1497366666,0.37905,100000,0,736456,7701.259045467855,0,0.0,0,0.0,29987,312.8686158865604,0,0.0,32860,339.97364788555655,1597396,0,57259,0,0,6436,0,0,58,0.5960597314594052,0,0.0,0,0.0,0,0.0,0.06083,0.1604801477377654,0.3153049482163406,0.01918,0.3415786985977627,0.6584213014022373,24.57800733453075,4.348894191368537,0.328589634664401,0.2347068819031436,0.2145284621920136,0.2221750212404418,11.123007456237218,5.788508537621738,20.710104424060997,12304.878145065495,53.73345861372092,13.244719801642828,17.74029301638842,11.23413324274521,11.514312552944462,0.5590484282073067,0.7828054298642534,0.7078215901745314,0.5574257425742575,0.1042065009560229,0.7194928684627575,0.9248704663212436,0.8433734939759037,0.7393162393162394,0.1233480176211453,0.5002901915264074,0.7065368567454798,0.6581272084805654,0.5025773195876289,0.0989010989010989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002512817395181,0.004715067937538,0.0070358187134502,0.0093081863263149,0.0112615591206421,0.0133926752760011,0.015529090278769,0.0173559709644815,0.0197036779517172,0.0217406887794287,0.0240295369468232,0.0262152278423799,0.0281355443996378,0.029984544049459,0.0320912469033856,0.0341793745153786,0.0359602697020227,0.0380311805858296,0.0400062412232797,0.0422987499087714,0.0569932481866259,0.0715901711460711,0.0844045368620037,0.0979603441195362,0.1098289695945946,0.1251853106866025,0.137426714249299,0.1486971812223584,0.1600278104610118,0.170318104688876,0.1837663528219066,0.1956170853509256,0.2066781306458283,0.217119157830231,0.2271961598167986,0.2379902503877686,0.2475277362323369,0.2569258467424327,0.2662738018189869,0.2733421218547601,0.2809250295296107,0.2878319878319878,0.294504895982571,0.2995236323929973,0.3049946477228493,0.3108425107412711,0.3158257426734993,0.3207568792736811,0.3251435906079425,0.3300058176433256,0.3285602461671345,0.3272220996912219,0.3268883369086598,0.3259902961836483,0.325242139770526,0.32345042432055,0.3221474379325671,0.3225472473294987,0.3236013477688269,0.3250205584754549,0.3252679593790475,0.326183578713441,0.3279643375318039,0.3281281505544975,0.3298683131542135,0.3316413302284204,0.3318580280403186,0.333879247897704,0.3371708210111252,0.3407567049808429,0.3427033492822967,0.3448535339962376,0.3466224405179562,0.3462960110888649,0.3525343439128375,0.3572885422915416,0.3593629194371424,0.3625742980118877,0.3640238704177323,0.3611892326235436,0.0,2.648165012027795,55.006778313470896,180.89296165639564,255.1950322516282,fqhc5_80Compliance_baseline_low_initial_treat_cost,95 -100000,95846,44345,419.7984266427394,6049,62.0474511195042,4721,48.77616175948918,1817,18.65492560983244,77.40182060844235,79.71591455734155,63.36325590393732,65.07587797807237,77.17407910272084,79.4880627651429,63.27909935426377,64.9936379402697,0.2277415057215108,227.85179219864915,0.0841565496735512,82.24003780266287,163.53502,114.53773137372924,170622.68639275504,119501.8377122981,351.73851,227.61375927154987,366502.0345136991,236997.67259097908,362.39318,174.98058118696824,375020.9711412057,180133.10505495718,3119.46,1428.9314000300974,3224186.392755044,1460710.0102636607,1130.84425,498.894320927876,1167394.6121903886,508198.45176293154,1789.5783,748.9335402355415,1838886.9436387536,757567.2437974941,0.37979,100000,0,743341,7755.576654216138,0,0.0,0,0.0,30057,313.0751413726186,0,0.0,33188,343.2485445401999,1595396,0,57306,0,0,6348,0,0,56,0.5738371971704609,0,0.0,2,0.0208668071698349,0,0.0,0.06049,0.159272229389926,0.3003802281368821,0.01817,0.3356445004727387,0.6643554995272613,24.52364098662501,4.32853227200353,0.3236602414742639,0.238508790510485,0.2145731836475323,0.2232577843677187,11.266709693380449,5.758070211690282,19.227243504297142,12263.574193675482,53.818006716995775,13.655496179902949,17.298035216040702,11.295685755604008,11.568789565448116,0.5587799195085786,0.7655417406749556,0.68782722513089,0.5913129318854886,0.1195445920303605,0.7276853252647504,0.893569844789357,0.8553921568627451,0.7415254237288136,0.1541850220264317,0.4930862018240659,0.68,0.6267857142857143,0.5456885456885456,0.1100362756952841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430182871261,0.0046924565973101,0.0066854684900377,0.0090293224453314,0.0112036274539705,0.0133046948165641,0.0156652907302655,0.0177485201061441,0.0198703927060122,0.0217495880372148,0.0241299779611501,0.0262450219649382,0.028277159332696,0.0301367324245294,0.0323751766246892,0.0341802626548599,0.0361257465815106,0.0380547490667772,0.0398836726215205,0.0419923196203519,0.056328480246965,0.0709603905539468,0.0843750982385178,0.0973004201680672,0.1097103738809899,0.1246237524423087,0.1369491525423729,0.1490709639015264,0.1597635030575981,0.1702141334504515,0.1831753987802648,0.1949967581586341,0.2070834917703297,0.2180487271932699,0.2276779334982138,0.2382333407128625,0.2467296390056764,0.2556722358390861,0.2641978109227017,0.2726575643475972,0.2798552333379585,0.2870132298630265,0.2939639373337274,0.3005306088227191,0.3054139354212187,0.310459488417345,0.3153063011231458,0.3191213484860041,0.3240351399257352,0.3273614132225957,0.3266132286090862,0.3254851833525757,0.3244930674691341,0.323679088877676,0.3230944760550023,0.3219307899241868,0.3201825734005085,0.3203430610340933,0.3214809009438784,0.3214940299304233,0.3223987602920035,0.3233150825225509,0.3243671876630287,0.3252824134934605,0.3268558847460872,0.3282129790601728,0.3297784837053635,0.333395766997565,0.3379368068633605,0.3403557312252964,0.3421232098204137,0.3438346703501036,0.3459143234572561,0.3490222828558436,0.3507532081086107,0.3550205519671168,0.3539701855795558,0.3498483316481294,0.3597260273972603,0.3651340996168582,0.0,1.8647811634083231,58.60582287056486,173.9443450338479,253.8860426015177,fqhc5_80Compliance_baseline_low_initial_treat_cost,96 -100000,95695,44116,417.085532159465,6063,62.082658446104816,4813,49.69956633052929,1849,18.945608443492347,77.32145341825886,79.70947658670879,63.3143933609397,65.08064211831132,77.09387630130998,79.48243959094779,63.23034754399731,64.99896322840075,0.2275771169488791,227.03699576099723,0.0840458169423854,81.67888991056316,164.72258,115.3227277976925,172132.9014055071,120510.71403698467,354.33784,228.5016737514944,369690.06740164064,238192.9502601958,360.23239,174.39690673500832,372395.78870369407,179146.40870365128,3132.99465,1427.4911853049207,3237496.4313705,1455268.0341762058,1146.40241,507.69512314917625,1182559.1096713515,515118.504779953,1812.06144,755.2775701608161,1858716.1920685512,760573.2154971309,0.37849,100000,0,748739,7824.222791159414,0,0.0,0,0.0,30166,314.614138669732,0,0.0,33061,341.5120957207796,1588651,0,56993,0,0,6467,0,0,69,0.7105909399655155,0,0.0,1,0.0104498667641987,0,0.0,0.06063,0.1601891727654627,0.3049645390070922,0.01849,0.3330706179066834,0.6669293820933165,24.52585127538636,4.333968486241965,0.3118637024724704,0.237481820070642,0.2370662788281737,0.2135881986287139,11.332294579379909,5.887838911871333,19.55646568793969,12198.321982051884,54.42273927099539,13.631474856860391,16.962436437026838,12.6049365852169,11.22389139189126,0.5676293372117183,0.7909011373578303,0.6968687541638907,0.5766871165644172,0.1206225680933852,0.7551803530314658,0.9178082191780822,0.8989071038251366,0.7649122807017544,0.1635514018691588,0.498005698005698,0.7120567375886525,0.6317180616740088,0.514018691588785,0.1093366093366093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360784631596,0.0049082243180204,0.0069027123599155,0.009359660979055,0.0116697867491453,0.0139556678347322,0.0160110955872604,0.0181131304880539,0.0200881219395005,0.0220074927835895,0.0243184777371102,0.0266587251871553,0.028731316414809,0.0305116183213972,0.0328657397371979,0.0350289495450785,0.0371126118660921,0.0392291167221893,0.0411722495502147,0.0431053350147471,0.0574657419786096,0.0709081773646526,0.0838327123891483,0.0963400260975712,0.1081346275585566,0.1232840465278733,0.1363144264243865,0.1476440013633265,0.1584409199726402,0.1687670939025044,0.1816654098890444,0.1935983200190513,0.2052620702406978,0.2155938211097497,0.2256435643564356,0.23580539439302,0.2452203011712214,0.2541504153225353,0.2633972105680916,0.2710129495414419,0.2778561517113783,0.2841513447804285,0.2907339927121291,0.2970026595107458,0.3023244516771514,0.3078390821577172,0.3123921470551457,0.3178669920063035,0.3224672336685366,0.3268554262902015,0.3255770161941141,0.3245162264980155,0.3237622509385941,0.3229794846639928,0.321589238786691,0.319900786967572,0.3178430721032895,0.3182593576747695,0.3184588333703204,0.319401813120137,0.3201603236439916,0.3208852005532503,0.3229109947643979,0.3230155886041927,0.3245203894726694,0.3255010727929248,0.3273690237618093,0.3305031248027271,0.3345071662499559,0.3370719484548383,0.3401047597358232,0.3427065026362039,0.3458098077777073,0.3477660064486412,0.3515019837521254,0.3517233125897558,0.3555212355212355,0.3594196975888843,0.3564712389380531,0.360939907550077,0.0,2.3008046341844057,57.03523398888492,172.3072236019352,269.7642723912475,fqhc5_80Compliance_baseline_low_initial_treat_cost,97 -100000,95703,44594,421.8676530516285,6074,62.25510172094919,4730,48.80724742171092,1845,18.923126756736988,77.3455376358958,79.73406494363128,63.32130932583449,65.08803785918113,77.11267058588304,79.50165545373376,63.235097526084125,65.00420578101101,0.2328670500127572,232.4094898975204,0.0862117997503659,83.8320781701185,161.96422,113.36046883443558,169236.30398211133,118450.27724777236,349.59585,226.1233672163533,364690.3963303135,235674.08254323623,361.75026,175.34010379165116,374220.1602875563,180212.6403497406,3090.54689,1419.4450446869582,3193956.1978203403,1447823.0094009135,1128.99541,502.97794518144167,1164769.996760812,510653.8674766358,1805.77414,760.0742446901273,1855089.6419130017,769266.628317028,0.38062,100000,0,736201,7692.5592719141505,0,0.0,0,0.0,29804,310.7844059224894,0,0.0,33041,341.38950712098887,1603574,0,57470,0,0,6406,0,0,63,0.6582865740885866,0,0.0,1,0.0104489932395013,0,0.0,0.06074,0.1595817350638432,0.3037537043134672,0.01845,0.3371563236449332,0.6628436763550668,24.73054344181541,4.347362661869692,0.3300211416490486,0.2302325581395349,0.2249471458773784,0.214799154334038,11.265585486750306,5.794801650564946,19.77656625944904,12380.16367419086,53.65367165500643,13.04362352219386,17.49912662146387,11.865462709451885,11.245458801896811,0.5655391120507399,0.800734618916437,0.6893017296604741,0.5723684210526315,0.1161417322834645,0.7386185243328101,0.9303482587064676,0.858560794044665,0.7198443579766537,0.1698113207547169,0.5017361111111112,0.7248908296943232,0.6303972366148531,0.5254027261462205,0.1019900497512437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518992087052,0.0047264060043612,0.0071272653434184,0.0093599463403727,0.0117502238137869,0.014259523324506,0.0165915441251453,0.0187800618853589,0.0208503763089005,0.0227849916028345,0.0250246143747948,0.0269826107499049,0.0291415933755078,0.0310886702045442,0.0329721362229102,0.0349126924230049,0.0371467639015496,0.0393253762324857,0.0411297954429642,0.0431770111589234,0.0582245430809399,0.0715870557206849,0.0857865516409013,0.0987732255960271,0.1104536489151873,0.1258104434831353,0.1380126266645445,0.1503194888178913,0.1611779167334723,0.1709026510679403,0.1844893559687415,0.1972991704749734,0.2093433326439759,0.2196509655889272,0.2292377451519887,0.2392633958250232,0.2490235028904314,0.2581109661161859,0.2662250002836043,0.2749633733174618,0.2824062828920735,0.2898347474464156,0.2959661401683534,0.3015512040982429,0.3070868051765333,0.3130458313857659,0.3180489632775418,0.3223346066474612,0.3266033254156769,0.3303180509354826,0.3298085052134355,0.3289241018189793,0.3284496200255657,0.3269294516105787,0.3270812036090493,0.3254482147765798,0.322465887710089,0.3237796465409631,0.3242961596282629,0.3248159531127153,0.3252758801891749,0.3261752411894055,0.3279153279153279,0.3285829343594791,0.329416863292724,0.3294437048059101,0.3313304476591867,0.334611154752553,0.3363607672616334,0.3379767432630868,0.3399854532230202,0.339824320033866,0.342948516962438,0.3463026166097838,0.3453278070836473,0.3467751585497188,0.3481881264456438,0.3506440400736045,0.3585941790225151,0.3593628593628594,0.0,2.409237860890688,55.51679034048789,176.91358720447792,258.53123221257727,fqhc5_80Compliance_baseline_low_initial_treat_cost,98 -100000,95610,44349,420.5313251751909,6164,63.29881811525991,4847,50.10982114841544,1890,19.44357284802845,77.23812690061078,79.67007872791912,63.25655152000609,65.05463396967177,76.99797531282125,79.42945710346805,63.16885521091356,64.96887493038336,0.2401515877895264,240.62162445106597,0.0876963090925286,85.75903928840489,162.8165,114.03526156121389,170291.87323501724,119270.8170287772,353.69514,228.7849227644434,369347.3799811735,238702.23415502624,364.75345,176.82856779164416,377190.33573893947,181628.6838978939,3173.3355,1445.550117835478,3286078.8725028764,1479000.4471598994,1147.29107,505.2590994558196,1187418.4499529337,516025.5839588733,1855.999,769.4818453243469,1911986.2775860264,780647.37299243,0.37919,100000,0,740075,7740.539692500784,0,0.0,0,0.0,30151,314.72649304466063,0,0.0,33353,344.7756510825228,1589628,0,57081,0,0,6416,0,0,64,0.6380085765087334,0,0.0,0,0.0,0,0.0,0.06164,0.1625570294575279,0.3066190785204413,0.0189,0.3353441608662026,0.6646558391337973,24.482556790777338,4.3636252643863935,0.3191664947390138,0.2428306168764184,0.2139467711986796,0.2240561171858881,11.353598133191849,5.893615495311292,20.05943168584553,12285.961380956736,55.24255816531469,14.116702540272415,17.631424685334128,11.62184963918962,11.872581300518526,0.5675675675675675,0.8037383177570093,0.7123464770523594,0.5679845708775313,0.1049723756906077,0.7494126859827721,0.948780487804878,0.8933002481389578,0.7418032786885246,0.1227272727272727,0.5025210084033613,0.7262059973924381,0.6486013986013986,0.5145018915510718,0.1004618937644341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025133776552618,0.0048482143762741,0.0069145479652343,0.0092698941890367,0.0113580850024425,0.0135497213647523,0.0158396654597378,0.0178564131900461,0.0197103287441441,0.0216934847848575,0.0238754822293359,0.0260783789893343,0.0283755827955661,0.0300406177192222,0.0318896255447466,0.0341662786486626,0.0362215172814165,0.0383936176843329,0.0404413678238692,0.042406476246114,0.0575383135754458,0.0714128532657103,0.0849179501187149,0.097693522906793,0.1099330475003696,0.1254395627674448,0.1378610659612667,0.1497639121305464,0.1605559062362922,0.1718422720388412,0.1847959778175776,0.196869342757103,0.207626933972543,0.2180591161068384,0.2279559228650137,0.237660450203579,0.2471650003355029,0.2566883504887315,0.26557809515146,0.2737470578104369,0.2811017135962317,0.2879237362663133,0.2943835421412301,0.300316147567587,0.3049926274356881,0.3096117956767312,0.3137919349373094,0.3188052617477066,0.3237724084177708,0.3275540320552695,0.3270809701290985,0.3260551522345212,0.3256102898612111,0.3248471324658765,0.3241114370374782,0.3220479577259251,0.3194673954493454,0.319874752801582,0.3202127659574468,0.3212865077943021,0.3228387872412368,0.322679778733866,0.3239993272788429,0.3258527827648115,0.3261032161555722,0.3258526888470391,0.326688434438907,0.3302801553962288,0.3342497620809982,0.3364575059571088,0.338758343238548,0.3435919280123529,0.349675467893377,0.3518560865919659,0.3532123036402972,0.359262324151791,0.3697632058287796,0.3766626360338573,0.3794914317302377,0.3826491092176607,0.0,2.221265092534859,56.1617621144054,189.5868643754321,261.40802186484325,fqhc5_80Compliance_baseline_low_initial_treat_cost,99 -100000,95736,47617,453.1524191526698,5012,51.35998997242417,3991,41.28018718141556,1462,14.97869140135372,77.33641368994157,79.71046739260179,63.332022412709286,65.08892684870891,77.1508035203427,79.52582917093964,63.261941392412055,65.02087550948737,0.1856101695988599,184.63822166214072,0.0700810202972306,68.05133922154027,243.5136,170.6109267935954,254359.48859363247,178209.79233892725,483.52472,322.19603753751363,504650.0167126264,336135.8919711641,467.55207,228.2778391855209,485542.0218099774,236289.6680659106,2768.96092,1291.222441037361,2863948.963817164,1320393.270073286,899.4569,410.1391012419794,926684.0895796774,415572.4923142592,1411.13674,600.9649514432537,1447359.760173811,605732.3631027845,0.37942,100000,0,1106880,11561.794936074204,0,0.0,0,0.0,41706,435.19679117573327,0,0.0,42308,439.09292220272414,1108041,0,39727,0,0,9600,0,0,79,0.8251859279685803,0,0.0,1,0.0104453914932731,0,0.0,0.05012,0.1320963575984397,0.2916999201915403,0.01462,0.3617061973986228,0.6382938026013772,23.095978775449097,3.932118913009016,0.3274868454021548,0.2836381859183162,0.2004510147832623,0.1884239538962666,11.384247279522013,6.355918406195426,15.584958911186316,11538.40347418628,45.80418487407177,13.906934501896815,14.84416521293164,8.787924085735675,8.265161073507635,0.6036081182660987,0.8127208480565371,0.7130833970925784,0.5825,0.1210106382978723,0.7843959731543624,0.9279475982532752,0.8834688346883469,0.7897435897435897,0.1764705882352941,0.526616648803144,0.7344213649851632,0.6460554371002132,0.515702479338843,0.1048109965635738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786713144988,0.0044929461759247,0.0069648205492664,0.0092588828360029,0.0115154166200421,0.0134947955920395,0.0156028513445986,0.0181131304880539,0.0202018136648502,0.0225109022787298,0.0247962687714622,0.0269806884798209,0.0292251529641626,0.0312390565454732,0.0332356522277483,0.0352764857881136,0.0372019341278305,0.0392335861074514,0.0412600421954083,0.0432998281339513,0.058201942153075,0.0720630237594551,0.0854638115811329,0.0984506065129186,0.1103675052432996,0.1258335535006605,0.1365231124725734,0.1468874284863565,0.1567970284348049,0.1656811072545742,0.1768738229755179,0.188840830449827,0.1995175328979538,0.2088412635994232,0.2173034028853655,0.2271646708904147,0.2356185446401711,0.2439709617243161,0.2520915047498129,0.2575934312245551,0.2639277214224645,0.2698436788587039,0.2754491017964072,0.2800181837757653,0.2840395223373946,0.2879313313165597,0.2921276755163715,0.2960649118128833,0.300233901502914,0.3034280969514847,0.3010596525200366,0.2986711054861607,0.2964292249011245,0.2941201952233806,0.2919464084130473,0.2880315852296203,0.2839002482723722,0.2842671212667606,0.2849566878111997,0.2862639613801949,0.2877121571409899,0.2894799007834954,0.2900281337918099,0.2904465674294601,0.2912572617083841,0.2916655878621547,0.2936307000824965,0.2981348907309721,0.3023654559451326,0.3059760640405801,0.3084261457002008,0.3131507288162742,0.3156586578293289,0.319398634655212,0.3213612368024133,0.3271856287425149,0.3270798093187759,0.3360258481421648,0.3378635498776841,0.3370744481855593,0.0,1.528401973054427,52.572648540592574,147.47362384784086,205.1422400134767,fqhc5_80Compliance_implementation,0 -100000,95605,47756,454.3590816379896,4993,50.88645991318445,3998,41.19031431410491,1489,15.124731970085248,77.26635035352784,79.70323783142267,63.26822878755484,65.0716641171685,77.07576884100291,79.51870463462407,63.19634016395949,65.00495725668752,0.190581512524929,184.53319679859703,0.071888623595349,66.70686048097707,242.67716,169.96103389940373,253833.12588253757,177774.2104486206,488.62859,325.6029666467582,510474.4730924114,339954.4967802501,475.2861,232.17505260053463,493292.42194445897,239918.03803728297,2779.87323,1318.725979968338,2862891.177239684,1334622.5023464644,934.97442,436.0047987587965,959664.0029287172,437785.5784719703,1436.68578,618.875947521076,1460112.4418178964,610253.8540349802,0.38054,100000,0,1103078,11537.86935829716,0,0.0,0,0.0,42065,439.32848700381777,0,0.0,43018,446.0959154855917,1103868,0,39667,0,0,9639,0,0,79,0.8263166152397887,0,0.0,0,0.0,0,0.0,0.04993,0.131208282966311,0.2982175045063088,0.01489,0.355662188099808,0.6443378119001919,23.099882013115916,4.086695977264028,0.3086543271635817,0.2866433216608304,0.208104052026013,0.1965982991495748,11.823027419070256,6.7224806776358585,16.102184032903374,11539.139121325205,46.25518023363931,14.105707304990796,14.078845295289495,9.340967856413457,8.729659776945558,0.5995497748874438,0.8141361256544503,0.7042139384116693,0.5985576923076923,0.1234096692111959,0.764234161988773,0.9133192389006344,0.8760330578512396,0.7737556561085973,0.1684210526315789,0.524900036350418,0.7444279346210996,0.6326061997703789,0.5351882160392799,0.1090604026845637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.0045346183109307,0.0069464896869001,0.0093439889376931,0.0115022088312534,0.0141769520062782,0.016278167864141,0.0187302657797124,0.0212818204141769,0.023568230025925,0.0256991840714322,0.0278871357352109,0.0299664408803607,0.0318699220522126,0.0338380812692379,0.035926780558976,0.0380190302452372,0.0402571639264237,0.0421831579604708,0.0441684135873929,0.0585867667506507,0.0726337189805499,0.085421065347325,0.0984663352153029,0.1108928250789526,0.1264670988517435,0.1381655861409289,0.1486372606539015,0.1582214801018988,0.1679326979897499,0.1792695029340697,0.1904844496959316,0.2009518830730358,0.2099255039439088,0.2188326573796508,0.2283565867400128,0.2371139777740548,0.2453703182519222,0.2519905950771817,0.2584621382378572,0.264917683562183,0.2704616753289319,0.2747345117027951,0.278935448695673,0.2832446485409529,0.2872855962612674,0.2910609418629403,0.2949044261752653,0.297823581962013,0.3011525477371031,0.2987126541922813,0.2961863533292104,0.2939662085168043,0.2907168003693657,0.2884858020751384,0.2844127852764487,0.280873660587287,0.2812889471958019,0.2812409394027254,0.2817293286723265,0.2818323126767421,0.2829465784536388,0.2841272829975522,0.2844718003612765,0.286074248278179,0.2871006348215215,0.2892672389289978,0.2944130571249215,0.3011972274732199,0.3064407584814536,0.3111816738489453,0.3177204482977374,0.3226740526249528,0.325867269984917,0.3286019111234808,0.3289304500292226,0.3309167799426069,0.3359281437125748,0.3374016815839435,0.337696335078534,0.0,2.40310343977236,54.29366144880949,150.48070692008136,195.48359209956632,fqhc5_80Compliance_implementation,1 -100000,95708,47413,452.0416266142851,4825,49.316671542608766,3838,39.54737326033352,1446,14.805449910143352,77.34534288058313,79.71372755244262,63.32656324425341,65.07446682543403,77.16878231665841,79.5389332232376,63.26077474371305,65.01108078487701,0.176560563924724,174.7943292050138,0.0657885005403571,63.38604055702035,242.88352,170.13723834637258,253775.56735069168,177766.997896072,481.908,320.90386557764054,502968.9785597861,334744.65622271964,464.44895,226.6925401706916,481413.3092322481,233878.78631175545,2660.48244,1230.5861677327182,2744793.831236678,1250774.238028919,873.55297,392.6538655144785,901851.9141555564,399388.5189478592,1404.57984,586.1315815369065,1439854.1605717388,590076.8146850817,0.37771,100000,0,1104016,11535.253061395077,0,0.0,0,0.0,41389,431.87612320809126,0,0.0,41977,434.67630710076486,1110266,0,39813,0,0,9641,0,0,89,0.9299118151042756,0,0.0,0,0.0,0,0.0,0.04825,0.1277435069233009,0.2996891191709844,0.01446,0.355962572168027,0.6440374278319729,23.643071689015564,4.009137787222107,0.3025013027618551,0.295205836373111,0.2016675351745701,0.2006253256904638,11.398960049134605,6.145468103565385,15.307314121337871,11476.593549249565,43.86329833670097,13.787198981302817,13.325692126945496,8.48367399016176,8.2667332382909,0.5885878061490359,0.8022947925860547,0.7054263565891473,0.5697674418604651,0.1168831168831168,0.7754199823165341,0.935897435897436,0.8459302325581395,0.7167630057803468,0.1643835616438356,0.5105282600664943,0.7082706766917293,0.6462668298653611,0.5274542429284526,0.1057692307692307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0046824640707031,0.0071019844973824,0.0092626447288238,0.01111472675873,0.0132764536393162,0.0150148313507232,0.0172922429897001,0.0194631284116696,0.0216191870284877,0.0234966067291329,0.0254467036352433,0.0276172059821851,0.0297108242590322,0.0319088554297685,0.0338846392391978,0.0360501242750621,0.0382316313823163,0.0404454194782644,0.042621037494008,0.0566770753918937,0.0707064364207221,0.0840267357795662,0.0975748329738544,0.110115750266426,0.1255053016995068,0.1364881217756831,0.1474641617142735,0.1576725796110279,0.1667524612315809,0.1785687353894879,0.1908112672396995,0.2015470983745675,0.2096564104248076,0.2184761065844527,0.2279865675115539,0.2367466720226737,0.2458581245993094,0.2535262411347517,0.2604000870252259,0.2660622600490309,0.2708138556469708,0.2752474779132615,0.2796522905241984,0.2838484134883834,0.2875966701147727,0.2914983807034874,0.2947951189161047,0.2987139012524583,0.3014656412015356,0.2989189698577025,0.2955586426970001,0.2918716260976194,0.2884054202421195,0.2859560821344261,0.2822383311922677,0.2790220496551289,0.2796998136097577,0.2812950983887672,0.2814202317369625,0.2817506838608831,0.2830229409109641,0.2842282647138369,0.2841032941124135,0.285338057843325,0.2855662357178019,0.287121169366217,0.2919723914935953,0.297953520638224,0.3009982384028185,0.3057459859281977,0.3097689075630252,0.3146500777604977,0.3188875489900512,0.3223916682164776,0.3262677128469375,0.3254411099381692,0.3283403235470341,0.3306188925081433,0.3350077279752704,0.0,2.067479508895039,49.20375397611853,141.32503168972468,198.5109524740312,fqhc5_80Compliance_implementation,2 -100000,95662,47478,451.9558445359704,4793,48.932700549852605,3829,39.44094833894336,1458,14.864836612238925,77.2498286400838,79.64867206903256,63.26585613190741,65.03886569191653,77.06591043147957,79.46671809725332,63.19647902545588,64.9721662391071,0.1839182086042399,181.95397177923667,0.0693771064515331,66.69945280943068,243.36004,170.36441765997623,254395.7266208108,178089.9601304345,482.31616,321.9243044734284,503556.04106123646,335895.4275358503,464.45957,227.56316747188552,481442.5477200978,234816.13992999803,2654.25966,1248.8084071319288,2737083.9622838744,1268279.5875732517,898.03059,413.61781074156187,925239.8444523426,419025.1032621739,1409.17574,598.1565959644338,1439347.3479542555,598775.3911945224,0.37896,100000,0,1106182,11563.442119127762,0,0.0,0,0.0,41585,434.0490476887374,0,0.0,41969,434.67625598461245,1100022,0,39563,0,0,9495,0,0,73,0.7631034266479898,0,0.0,1,0.0104534715979176,0,0.0,0.04793,0.1264777285201604,0.3041936156895473,0.01458,0.3670809943865277,0.6329190056134724,23.183345569236508,3.9691032587280928,0.2985113606685818,0.3016453382084095,0.1974405850091407,0.2024027161138678,11.621850448765512,6.554407303980409,15.695845125228807,11457.999366796224,44.268517341156766,14.258437595946264,13.06813324347237,8.490339480072691,8.451607021665433,0.5933664142073648,0.7896103896103897,0.7069116360454943,0.5965608465608465,0.1303225806451612,0.7623762376237624,0.893491124260355,0.8601823708206687,0.7571428571428571,0.1746987951807229,0.5150936186473061,0.7083333333333334,0.644963144963145,0.5347985347985348,0.1182266009852216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299161230195,0.004908373644873,0.0070137331127373,0.009103840682788,0.0111889819043647,0.0132911005642352,0.0154688583431904,0.0177362536376167,0.0199120474534669,0.0222037873434315,0.0244017519206507,0.0266563944530046,0.0288007408550702,0.0310651192513038,0.0331412996345165,0.0353918232684173,0.0374070006009989,0.039492945463606,0.0414898044111527,0.0434057283466619,0.0579975133474731,0.0720546195168434,0.0856150366786655,0.0980418977073052,0.1102927210180866,0.1254537181074531,0.1359099596517307,0.1470826407535268,0.1567390071983999,0.1662209046284063,0.1779079552074567,0.1893568113804918,0.2007196205637027,0.2101338012722088,0.2196618549419502,0.2294728656335055,0.2373315725860602,0.245190030449983,0.2520139268159476,0.2580426568045298,0.2643859628756834,0.2699741662752466,0.2758567422406008,0.2803935009801445,0.2839321174908324,0.2877838345632316,0.2907605626733257,0.294605703198795,0.2976422320895329,0.299809493570408,0.2960073428178063,0.2918022390117465,0.2894959762812367,0.2869329702798215,0.284734006132595,0.281917745270736,0.2779790819474991,0.2774986866298923,0.2775044417110838,0.2774413661290034,0.2779037304903411,0.2788727387629354,0.2802624979100485,0.2808710217755444,0.2821941495749075,0.2838811696391539,0.2853025122220024,0.2899272071175263,0.2951121294174825,0.2991352201257861,0.3023224473294101,0.3059892433815466,0.3089420811112489,0.3147467166979362,0.3157748821735514,0.315281812899477,0.3213104899308686,0.3235765838011227,0.3287337662337662,0.3277529761904761,0.0,2.195678890743252,53.00142872012004,142.11588339261527,185.62677251443952,fqhc5_80Compliance_implementation,3 -100000,95746,48112,458.65101414158295,4995,50.91596515781338,3958,40.76410502788629,1554,15.885781129237776,77.32698317968122,79.68713580936988,63.31555014592704,65.06144098717361,77.12994959577713,79.49204961551108,63.24106527093596,64.9898530379844,0.1970335839040871,195.0861938587991,0.0744848749910858,71.58794918920819,242.6897,170.0777759635783,253472.18682764817,177634.1311130682,487.58504,324.8906892101527,508700.34257305786,338778.4297434778,473.56618,231.5765094378271,490201.4810018173,238574.40619834745,2784.01081,1316.2897599625917,2872733.200342573,1339915.605353446,899.26434,413.0582745735082,927230.4534915296,419446.7045669102,1497.82376,643.6728871782661,1533333.6327366156,646822.7604364495,0.38173,100000,0,1103135,11521.463037620371,0,0.0,0,0.0,41895,436.96864620976334,0,0.0,42882,443.6529985586865,1104422,0,39650,0,0,9638,0,0,79,0.8146554425250141,0,0.0,0,0.0,0,0.0,0.04995,0.1308516490713331,0.3111111111111111,0.01554,0.3620092378752886,0.6379907621247113,22.87206840585469,4.035473903493781,0.304699343102577,0.2776654876200101,0.2215765538150581,0.1960586154623547,11.315920744055337,6.234197653773159,16.785380621065183,11567.264542599283,45.84376505775772,13.620136081267164,13.710536907986144,9.874456934676228,8.638635133828181,0.5876705406771097,0.8334849863512284,0.6766169154228856,0.5746864310148233,0.1159793814432989,0.742014742014742,0.924949290060852,0.8208955223880597,0.7050691244239631,0.125,0.5188162221410303,0.759075907590759,0.6211251435132032,0.5318181818181819,0.1133333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019147966161795,0.0041775668714891,0.0064551488947079,0.0088182704811443,0.0107907449783879,0.0130034112316073,0.0151425541461027,0.017352959189923,0.0198683618821797,0.0223436812315124,0.0244437384058787,0.0266691303276669,0.0287817112783191,0.0308497055068165,0.0329681665325658,0.0351935853852592,0.0372184031803876,0.0390938605316931,0.0409387114543168,0.0430977904178516,0.057908528119095,0.0725733894084907,0.0861711050534703,0.0989004057776002,0.1118466127689177,0.1272706126160417,0.1381815482187741,0.1488464691415856,0.158370653812033,0.1668348180744875,0.178860123730896,0.1914792232967651,0.2014450332422933,0.2108902333621434,0.2202150963750646,0.2292687252011615,0.2378473773568045,0.2453969076228336,0.2538305146348943,0.2610175317978687,0.2676646637259329,0.2732020327392801,0.2776165029562662,0.2818528649582493,0.2861537339201906,0.2906001874044484,0.2955054913403379,0.2981607586075224,0.3021487688940122,0.3051140335835169,0.3030996071678415,0.2983582664173358,0.2953790735633478,0.2923416789396171,0.2902545832405552,0.2863746995882253,0.282770291642943,0.2831855506203596,0.2831266736027016,0.282493109273584,0.2829413960432997,0.2836938108182641,0.2835617871717066,0.2840845792206056,0.2848554525640104,0.2853248169496806,0.2863092876976256,0.291252422935034,0.2952945277100035,0.2979921259842519,0.3016223524109959,0.3062627959472938,0.3095489891135303,0.3140285071267817,0.3182660244535013,0.3227840710031531,0.3231835996382273,0.322670931627349,0.3246360889865421,0.3260536398467433,0.0,2.1897965523297818,53.2349461593822,150.3162963961755,195.5786496772905,fqhc5_80Compliance_implementation,4 -100000,95760,47849,455.0751879699248,4994,50.97117794486216,3958,40.74770258980785,1476,15.016708437761068,77.39144353273707,79.73137670838207,63.36142006586866,65.08764996425724,77.20282885325851,79.54665908108873,63.29012880823209,65.02082288550467,0.1886146794785617,184.71762729333815,0.0712912576365667,66.8270787525671,245.29362,171.6969038187899,256153.65497076025,179298.38773076958,488.86133,325.8625029256319,509923.4753550543,339709.9481517151,466.51879,227.99556987883597,483760.1817042607,235451.1151192989,2768.93966,1291.9654392094403,2852211.821219716,1310039.7302869116,925.77304,419.92877202399103,949821.021303258,421800.27249218535,1438.28102,611.3846186668834,1465290.2673350042,605470.0901509427,0.38127,100000,0,1114971,11643.347953216373,0,0.0,0,0.0,42076,438.77401837928153,0,0.0,42183,437.1658312447786,1098565,0,39389,0,0,9583,0,0,90,0.929406850459482,0,0.0,3,0.031328320802005,0,0.0,0.04994,0.1309832926797282,0.2955546655987184,0.01476,0.3636885402716663,0.6363114597283337,23.403795865473825,4.019290134715489,0.3004042445679636,0.2905507832238504,0.2061647296614451,0.2028802425467407,11.394584232547604,6.1391787158848095,15.764277707800863,11565.866570982946,45.34788232858554,14.139364729272067,13.502903222078873,8.97297406887006,8.732640308364545,0.5894391106619504,0.8234782608695652,0.703111858704794,0.5465686274509803,0.1295143212951432,0.7770326906957251,0.9381443298969072,0.8702064896755162,0.7219512195121951,0.1768292682926829,0.5084990958408679,0.7398496240601504,0.6364705882352941,0.4877250409165303,0.1173708920187793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286894540741,0.0047528806104766,0.0070818368133763,0.0093742700155391,0.0114386228914805,0.0138628776158293,0.0162828612186672,0.0186299916338482,0.0210646752954877,0.0229495784562494,0.025,0.0272183521252475,0.0294286888614878,0.0315246701385315,0.0338535760674597,0.0357832756572491,0.0378071246713998,0.0398153909977183,0.0418282174152573,0.0437409502380282,0.0588800167005897,0.0725107772150839,0.0858851298190401,0.0988757900493222,0.1108615653897658,0.1259147244194408,0.1364364268821651,0.147410528107579,0.1578531459570287,0.1669185666355811,0.178794402583423,0.1900616416134962,0.201371530419284,0.2104929708237299,0.2195904729454953,0.2288891347643284,0.2381918284555201,0.2457491970081534,0.2534789900729794,0.2599519560741249,0.2659579385255373,0.2717054761710032,0.2770376499793132,0.2814913257426098,0.285497775137311,0.2895109023157429,0.2924212524667149,0.2955336942982791,0.2988789614554106,0.3028004897894695,0.3001637891684343,0.29753528370983,0.2950391644908616,0.2917392117645366,0.2890719758601308,0.2860014007734706,0.2815240494371408,0.2822039844017687,0.2826865925108262,0.2822871348663766,0.2828987887497434,0.283806935664914,0.2865104047087308,0.2876822254915073,0.2891138511730557,0.2907475251383584,0.2918130311614731,0.2970290830541903,0.3025671516508114,0.3036560328490209,0.3078527384838592,0.3102626562169032,0.3169354332684947,0.3218095166048869,0.3253437383872166,0.3287080223880597,0.3321412606168976,0.3312871287128713,0.3327077747989276,0.3367003367003367,0.0,2.232628534880999,51.87557950329285,146.71608528076362,199.4249637125409,fqhc5_80Compliance_implementation,5 -100000,95725,48020,457.4458083050405,4976,50.66597022721337,3908,40.20893183598851,1479,14.990859232175504,77.37264048070351,79.73284500321218,63.34029949113111,65.08212961165398,77.1825235492362,79.54762631092817,63.26774138791696,65.01439256113908,0.1901169314673154,185.21869228401044,0.0725581032141491,67.73705051490708,242.6545,170.0523772726772,253491.250979368,177646.77698895504,488.85161,326.3398734774139,510090.9166884304,340325.05761610734,471.13874,230.30192306075384,488766.4977800993,237901.77562843595,2752.77175,1300.6590088835292,2831639.529903369,1314961.0103805005,890.61534,413.8674091192556,912597.6704100288,414558.5678968464,1432.66942,619.4701018484668,1452905.698615827,609308.9010416613,0.38181,100000,0,1102975,11522.329589971272,0,0.0,0,0.0,42077,438.9344476364586,0,0.0,42669,442.35048315487074,1105035,0,39643,0,0,9581,0,0,80,0.8252807521546096,0,0.0,1,0.0104465917994254,0,0.0,0.04976,0.1303266022367146,0.2972266881028939,0.01479,0.3642857142857142,0.6357142857142857,23.29548720461764,4.018106058173155,0.3183213920163766,0.2842886386898669,0.1949846468781985,0.2024053224155578,11.552981300906088,6.326023863301446,15.937510001853688,11588.943353987108,45.03449963415814,13.718753219621956,14.17047126478253,8.487273950402972,8.658001199350691,0.5882804503582395,0.8136813681368137,0.7186495176848875,0.5446194225721784,0.1087231352718078,0.7762295081967213,0.936734693877551,0.9055555555555556,0.6968085106382979,0.1703296703296703,0.5029761904761905,0.71658615136876,0.6425339366515838,0.494773519163763,0.090311986863711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020354430379746,0.0044389042595238,0.0066648406829179,0.0091810204744881,0.0114591912474961,0.01401769262875,0.0162380355340815,0.0182399052790593,0.0203009363372449,0.0226125766462958,0.0248118604794225,0.0267348384513506,0.0291510714432608,0.0313388259526261,0.0334984009078716,0.0356046590944324,0.0377057666425095,0.0397668340040658,0.0417199338966667,0.0434746380585355,0.0583376840346663,0.0723665623790141,0.0858523900894383,0.0986756359049821,0.1105219325525253,0.1263585232799086,0.137326445974183,0.1477890703985526,0.1583134871898928,0.1678999635373099,0.1803006806237615,0.191351480006924,0.2022271521162295,0.2115773702111836,0.221007118259932,0.230033789397884,0.2381526373356548,0.2467943305526472,0.2545287283217299,0.2612269699505864,0.2663101975625846,0.2718369352819348,0.2769367448471926,0.2812976137631519,0.2856743519002419,0.2885990433453326,0.2922324143713474,0.2965468138127447,0.300042691367288,0.3034436405329538,0.3009947573598602,0.2974179370965527,0.294710646195377,0.2917195614541258,0.2901120094948446,0.2869938706571083,0.2836711498389846,0.2834616014409694,0.283545035623799,0.2844163679596834,0.2856452032883235,0.2867058823529412,0.2877422309181358,0.2900993612491128,0.2907556212594482,0.2915601683319133,0.292613476177051,0.2978710198001365,0.3023497248849361,0.3060580071729299,0.3094108166189112,0.3134640522875817,0.3175461495431661,0.3207080177004425,0.322970479704797,0.3282798833819242,0.3305697919807054,0.336383528943704,0.3378414931025155,0.3445030120481928,0.0,2.387797746995356,52.89496012878848,142.11072519158293,196.14309077095388,fqhc5_80Compliance_implementation,6 -100000,95731,47758,455.1085855156637,4926,50.2867409720989,3888,39.913925478685066,1434,14.561636251579948,77.33281654085012,79.69830367617745,63.319784280511655,65.07088558409956,77.15052811812193,79.52161706217248,63.25135112920859,65.00731679637296,0.1822884227281918,176.68661400496433,0.0684331513030684,63.56878772659513,243.68234,170.73180465953868,254549.03845149427,178345.3684381639,484.61417,322.4080831708028,505515.6532366736,336076.1959770637,463.8992,226.74903370437391,479763.33685013215,233212.39820450544,2718.83719,1272.402054222474,2795636.2097962,1284699.1718695862,901.48547,412.2548013510733,924386.4161034564,413339.139203678,1399.28364,591.2391811280904,1423958.3833867817,585795.478647225,0.38113,100000,0,1107647,11570.410838704289,0,0.0,0,0.0,41804,435.9611828979119,0,0.0,42032,434.27938703241375,1104970,0,39658,0,0,9428,0,0,71,0.7416615307476158,0,0.0,0,0.0,0,0.0,0.04926,0.129247238475061,0.2911084043848965,0.01434,0.3617601246105919,0.6382398753894081,23.432684686447462,3.988742587813749,0.3040123456790123,0.2908950617283951,0.206275720164609,0.1988168724279835,11.503492247047207,6.318382862423354,15.296993283634812,11558.561645156484,44.55359180771194,13.827108150812949,13.410332778737796,8.837801904096112,8.478348974065076,0.5910493827160493,0.8134394341290893,0.688663282571912,0.5810473815461347,0.1267787839586028,0.7615131578947368,0.9077568134171908,0.8648648648648649,0.7236180904522613,0.1705882352941176,0.5134730538922155,0.7446483180428135,0.6083743842364532,0.5339966832504146,0.1144278606965174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0044323633523678,0.0068027210884353,0.0093818928451631,0.0116591380783787,0.0139952737940026,0.0163065093464138,0.0184686064318529,0.0204290300811844,0.0226090518124104,0.0247085721316013,0.0266459933462028,0.0286768939705519,0.0308966199097818,0.0328205445672248,0.0348238650458943,0.0368797704982549,0.0387301653192748,0.0406775431263062,0.0427123376149847,0.0573355465773017,0.071573550952082,0.0845086668833824,0.0966999232540291,0.1097900328864153,0.1252894589364829,0.1366364774004708,0.1477452931597824,0.1582522509051682,0.1667006251943679,0.1784503084525693,0.1897400391618075,0.2011677974947807,0.2102691357484859,0.2191184233679394,0.2285881936141003,0.2376797688248223,0.2453895921237693,0.2529901727150995,0.2605694267953429,0.2667036959892614,0.2720581351806778,0.2773758924025905,0.2816656680647094,0.2867935528537246,0.2912049306625577,0.294766219463356,0.2971859462621279,0.300849103005514,0.3026636938137393,0.3,0.2971531472088196,0.2951855552584544,0.2935055563573387,0.2916641919581873,0.287838953257314,0.2845818595250126,0.2841970904449426,0.2839373830185469,0.2834577114427861,0.2834980421405929,0.2848790282890722,0.2852528031345088,0.2862763403574286,0.2880784407509267,0.2897281045074,0.2913548752834467,0.295608688857634,0.2992504793446052,0.3040104002521273,0.3075880758807588,0.3111895479928353,0.3159207081411295,0.3179321243133418,0.3218230762090411,0.3259901570189829,0.3314674735249622,0.3300679728108756,0.33115823817292,0.3366037735849057,0.0,2.6972758312431715,52.4092261619498,136.33733696436664,198.09126884129304,fqhc5_80Compliance_implementation,7 -100000,95776,47726,455.4063648513198,4887,49.66797527564317,3875,39.82208486468426,1433,14.533912462412296,77.34910350822409,79.67813996546533,63.34642956891118,65.06694257178832,77.16507202276593,79.4997074921853,63.275724227932265,65.00087787203488,0.1840314854581635,178.43247328003997,0.0707053409789111,66.06469975343998,245.003,171.61110015733107,255807.885065152,179179.23551291856,487.01008,324.11159225791243,507842.8938356165,337761.2015405584,460.46151,224.45288058565515,477137.8633478116,231487.5744543803,2723.86865,1273.2983941065406,2800797.329184764,1286389.1089397762,908.63677,415.565122781016,928560.0985633144,413986.8510771927,1395.98666,601.375815309267,1417989.0160374206,594191.457242723,0.3795,100000,0,1113650,11627.631139325093,0,0.0,0,0.0,41990,437.7505846976278,0,0.0,41693,431.6530237220181,1099680,0,39452,0,0,9635,0,0,65,0.6786668894086202,0,0.0,2,0.0208820581356498,0,0.0,0.04887,0.1287747035573122,0.2932269285860446,0.01433,0.3468503937007874,0.6531496062992126,23.43342497633843,4.089451363508179,0.2998709677419355,0.2828387096774193,0.2116129032258064,0.2056774193548387,11.354562661760031,6.15347977325384,15.237866792096384,11474.267714764714,44.42485657064592,13.585864797725025,13.063196993046208,9.004000507491586,8.771794272383096,0.5780645161290323,0.7974452554744526,0.7005163511187608,0.552439024390244,0.124215809284818,0.7574692442882249,0.911062906724512,0.8616352201257862,0.7393617021276596,0.1695906432748538,0.5034709535988309,0.7149606299212599,0.6398104265402843,0.4968354430379746,0.1118210862619808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0045307574575051,0.0066551013989915,0.0089079846827355,0.0111034286411518,0.0134064904922838,0.0153284820318392,0.0173087717507781,0.0194443592966107,0.0214851343332446,0.023644633856493,0.0259614989943767,0.0278500005138376,0.0298376887370187,0.0317964368195315,0.0340225991034724,0.0361230106992818,0.038262131895479,0.0400876983343551,0.0421005498167277,0.0563950576056102,0.0707330593120182,0.0839265681844392,0.0966718160513677,0.1090234675490268,0.1250343442882806,0.1366517563757393,0.1473206214839471,0.156942680597206,0.1655523411550412,0.1775646614356291,0.1896331703940822,0.2010981841904969,0.2097463883025842,0.2182710398626866,0.2276135520384543,0.2357116550038504,0.2430852259950528,0.2503460168357044,0.2573315629220942,0.2632102420576636,0.2688506567174653,0.2751224475309372,0.2793925675756596,0.2843497785059773,0.2883314647578449,0.2923638728395988,0.2949748232541579,0.2985372168284789,0.3021887409791944,0.2996514272640405,0.2969237750794153,0.2946876889970323,0.2912334338000952,0.2886202349734062,0.2845978906238076,0.2813165323534514,0.2816664214123379,0.2816659583510412,0.2833478484972362,0.2847796913442183,0.2860433070866142,0.2880903747550961,0.289272030651341,0.2904293595586472,0.2908452535760728,0.2916619269707655,0.2966000502765208,0.3005569762146635,0.3035296913995959,0.3041012612285636,0.3087598944591029,0.3138267716535433,0.316523849245469,0.3197859958700957,0.3168963878326996,0.3200798280626343,0.3194641769839659,0.3204845814977973,0.3188914910226386,0.0,2.4399857882545817,49.14241158014707,145.55086440595286,199.07462909734863,fqhc5_80Compliance_implementation,8 -100000,95672,47533,453.0374613261978,5032,51.39434735345765,3982,41.0987540764278,1503,15.396354210218249,77.31532774038504,79.70670511675553,63.31028192710126,65.07575843958307,77.12920243015094,79.52256007159332,63.23939570553329,65.00795664017699,0.1861253102341038,184.1450451622109,0.0708862215679673,67.80179940608377,242.22594,169.73082473675925,253183.7319173844,177409.09015883357,484.63686,322.40103494396175,506040.0012542855,336464.9687933374,467.87961,228.45530666014167,485495.2859770884,236110.20259617892,2770.54067,1291.537714712215,2860555.25127519,1314900.246030284,874.30211,399.13341679451605,901765.155949494,405163.2897869303,1457.74302,614.6270452978855,1494195.3340580317,617359.7312153813,0.37905,100000,0,1101027,11508.3514507902,0,0.0,0,0.0,41705,435.3624885023832,0,0.0,42312,438.738606906932,1110459,0,39848,0,0,9688,0,0,78,0.8048331800317753,0,0.0,2,0.0209047579229032,0,0.0,0.05032,0.1327529349690014,0.2986883942766296,0.01503,0.3749285578205372,0.6250714421794628,23.126687984975348,4.051120623091029,0.3071320944249121,0.2832747363134103,0.2134605725765946,0.1961325966850828,11.440723946392437,6.201734604202378,15.887510006196376,11499.80959068462,45.641989914293966,14.049249911328571,13.800936840955025,9.45461134549973,8.33719181651064,0.580110497237569,0.8076241134751773,0.6974652493867539,0.5635294117647058,0.085787451984635,0.7679738562091504,0.9232283464566928,0.8606060606060606,0.7399103139013453,0.1349693251533742,0.4967367657722987,0.7129032258064516,0.6371780515117581,0.5007974481658692,0.0728155339805825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.0046026886189906,0.0070632649333252,0.0091947249710442,0.0113627115885416,0.0139343009931245,0.016105178340116,0.0181504330773002,0.020279391311462,0.022078174761656,0.0246448900056407,0.0269134762555342,0.0288565403014248,0.0306652378204599,0.032741873883917,0.0347919618570881,0.036730803104245,0.0388383775480549,0.0408280022884485,0.0429100005211319,0.056932399958207,0.0710127324509968,0.084661082771795,0.0972660689480995,0.1093873674212442,0.124644063131821,0.1366773556456922,0.1474356926026521,0.1577850455303321,0.1674769524668105,0.1796814380550047,0.1906148832274061,0.2005747188993262,0.2101922677084359,0.2182785278505825,0.2277929336615876,0.2357835254176717,0.2441823828599721,0.2519185360094451,0.2579169961833373,0.2635802540616279,0.2701203239852053,0.2757085691284067,0.2804706898413041,0.2847652359785275,0.2879775294740862,0.2916572829867627,0.2945655628297209,0.2976181239816898,0.3012578782205111,0.2989657444891262,0.2954582943860999,0.2929260269350803,0.2904007966862471,0.2875721043344158,0.2841495829641624,0.2813091781340739,0.2812648014764728,0.2816803236884159,0.2816873889875666,0.2821744391696918,0.2833447970914808,0.2846954309427981,0.28587319243604,0.2870474504079826,0.2879796854351825,0.2895962292009768,0.2938294865756005,0.2996425317165487,0.3041271855052928,0.3089571220930232,0.3150909475465313,0.3204499748617396,0.3236416361416361,0.3269557021677662,0.3321475157120835,0.3355511870557991,0.3337299226650803,0.3271487039563437,0.335469280060309,0.0,1.9404873477063684,53.69322883346521,143.011169045402,202.1393012570486,fqhc5_80Compliance_implementation,9 -100000,95629,47753,454.9038471593345,4896,50.00575139340577,3875,39.956498551694565,1427,14.566710934967425,77.3146043072854,79.73247960919552,63.296484254502126,65.08246741812455,77.12806990611945,79.54910959257495,63.22571519459247,65.01480037475963,0.1865344011659573,183.3700166205716,0.0707690599096579,67.66704336492069,242.45254,169.86644904785277,253534.5345031319,177630.6863481295,484.64289,323.26508475714235,506269.51029499416,337515.46576576395,468.65736,229.0321563299474,486365.1821100294,236596.10801812127,2725.89852,1280.0008703146175,2815014.252998567,1303163.984501366,879.65274,397.9367529839553,904651.7479007414,400917.5385959855,1386.52722,598.5648443970965,1417322.5276851165,598864.0770037484,0.38093,100000,0,1102057,11524.29702286963,0,0.0,0,0.0,41720,435.70465026299553,0,0.0,42339,439.0300013594202,1106860,0,39662,0,0,9539,0,0,75,0.7738238400485208,0,0.0,0,0.0,0,0.0,0.04896,0.1285275509936208,0.2914624183006536,0.01427,0.3603056426332288,0.6396943573667712,23.26835332791827,4.021459541654715,0.3058064516129032,0.2890322580645161,0.1994838709677419,0.2056774193548387,11.341912785722124,6.171619577078096,15.265075705428048,11525.503646580732,44.45626965204561,13.725873582642883,13.423036446056152,8.588896097195182,8.718463526151393,0.5914838709677419,0.8053571428571429,0.7097046413502109,0.5834411384217335,0.1229611041405269,0.7611438183347351,0.916155419222904,0.9074626865671642,0.732620320855615,0.0898876404494382,0.5163812360387193,0.7194928684627575,0.6317647058823529,0.5358361774744027,0.1324717285945072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024216509782862,0.0044416951455719,0.006547691558046,0.0087689884672052,0.0110880533854166,0.0131696883275616,0.0154425189461551,0.0175809582184084,0.0196990927780221,0.0219250186890047,0.0238874244864049,0.0262252308703736,0.0283115921155508,0.0307045562264306,0.0329796238568095,0.0351961950059453,0.0370619806452949,0.0393679533232283,0.0414620442816713,0.0434900504776605,0.0587091716749412,0.0723503655751786,0.0852819807427785,0.0975317088574285,0.1096862037300908,0.12502779454274,0.1369116537959019,0.147136554487521,0.1577185156659499,0.167302259128361,0.1787001273115681,0.1903709002622965,0.2008237806738438,0.2110711859950483,0.2194336981560471,0.2291618115435407,0.2383107594653792,0.2456171977105773,0.2529908315250117,0.2597302814155638,0.2655962400009261,0.2708016561790919,0.2753263043298188,0.280122719973155,0.2847277008411112,0.2883421985815603,0.2923707629237076,0.295527014494963,0.298936156461266,0.3021953405017921,0.2985574272999825,0.2950869195067696,0.2934475338593308,0.2911536740614581,0.2897162962633056,0.2864638306334419,0.2830576552073121,0.2834101760546048,0.2828156783644724,0.2827040325168467,0.2838941948962841,0.2842258108824049,0.2853136684669713,0.2862943486653797,0.2868362805531094,0.2885897402898252,0.2894455389811426,0.2946758039008961,0.2991094632523649,0.3031408069638866,0.3057413475782197,0.3128210504245728,0.3156510302498904,0.320766098627658,0.3260748185371301,0.3266152934202727,0.3288177339901478,0.3246963562753036,0.3288937211198695,0.3377023901310717,0.0,2.2410229234481127,51.57801247409712,141.57470980623222,195.2106143550596,fqhc5_80Compliance_implementation,10 -100000,95652,47654,454.0312800568728,4983,50.91372893405261,3960,40.88780161418475,1503,15.378664324844229,77.29129418892526,79.69256492681208,63.29829466637945,65.0706375351209,77.09209174503512,79.49499001477064,63.222548982990666,64.99758382005056,0.1992024438901438,197.57491204144628,0.0757456833887815,73.05371507032987,243.47972,170.57112318188578,254547.4428135324,178324.6802804811,485.18118,322.41678482656005,506743.4763517752,336580.3901921131,460.69104,224.5143242875751,478617.6243047715,232397.14689363143,2736.57783,1290.2677587793123,2828156.358466106,1316102.1711823198,893.55518,407.3232515444739,922708.5790155982,414374.2750224503,1460.41212,630.3658535296222,1496565.612846569,633955.6500602106,0.38028,100000,0,1106726,11570.338309706018,0,0.0,0,0.0,41906,437.5862501568184,0,0.0,41693,432.8816961485384,1105014,0,39644,0,0,9715,0,0,74,0.7631832057876469,0,0.0,1,0.0104545644628444,0,0.0,0.04983,0.1310350268223414,0.3016255267910897,0.01503,0.3487159683336551,0.6512840316663449,23.34271917952729,4.0112349407405645,0.2967171717171717,0.301010101010101,0.2005050505050505,0.2017676767676767,11.348570680069791,6.140560134729464,16.204025708965215,11561.112248849096,45.689694321625495,14.743423687110289,13.27703687041808,8.985464413691703,8.683769350405433,0.5911616161616161,0.8045302013422819,0.6987234042553192,0.5944584382871536,0.1113892365456821,0.7482014388489209,0.9066666666666666,0.8318042813455657,0.7136752136752137,0.1272727272727272,0.518641565153193,0.7241379310344828,0.6474056603773585,0.5446428571428571,0.1072555205047318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0046030619486971,0.0068308922789602,0.008992988517427,0.0112932271159539,0.0134338239038549,0.0156514468666517,0.0177160128249637,0.0200085882545395,0.0223516884074294,0.0244587790095476,0.0266320200484778,0.028568783177647,0.0305943695643213,0.0328082092787975,0.035000620578379,0.037391700866393,0.0392162970346374,0.0412248847638569,0.0431727431008059,0.0574981711777615,0.0714577506834679,0.0845574724109327,0.0974074502910434,0.108942763359262,0.1249285547958254,0.1364041699399138,0.1479319564129057,0.1583848275567149,0.1678869731389431,0.1793442516900451,0.1910212125477796,0.2014781595933428,0.2106790164006218,0.2195783232120617,0.2292949123215652,0.2377382521842111,0.2456910624021975,0.2537265987761543,0.2601815139917035,0.2659621261227891,0.2719466541881142,0.2773462476614488,0.2823516715429996,0.2859262141589046,0.2899974089748177,0.2940446960966077,0.2978528310537174,0.3016459305339554,0.3047556229800145,0.3017308675872836,0.297956375146219,0.2947807462518318,0.292925059969365,0.2901514363417498,0.286813624796885,0.2828169281676984,0.2832878872499096,0.2831436481082743,0.2847604084838963,0.2850026219192449,0.2861489824145425,0.2867102122848888,0.2876275083145465,0.2887207604089353,0.289791893715294,0.2904740355243805,0.2950553228730387,0.2981223119689499,0.3011790773126533,0.3050394271730264,0.309410896827906,0.3123000689957975,0.3159777727030524,0.3201543820013179,0.3253069495768268,0.3287629024803574,0.3295641447368421,0.3303867403314917,0.3314415437003405,0.0,2.023143549315435,54.713048195074855,142.84833994875748,198.1035406953509,fqhc5_80Compliance_implementation,11 -100000,95636,47437,452.4969676690786,4910,50.08574177088126,3901,40.23589443305868,1522,15.621732402024342,77.27514686010801,79.68729779033276,63.27600815666828,65.05707754676975,77.0849772120132,79.49776764365123,63.20342928346489,64.98669732290871,0.1901696480948089,189.530146681534,0.0725788732033905,70.38022386103648,242.09944,169.52844801248034,253146.3047388013,177263.85913942085,483.03324,322.44203301833187,504514.6911204986,336596.83734578773,463.6875,226.4307647917325,480826.1533313815,233736.2778554797,2798.60287,1310.8249685527044,2888627.932995943,1333038.6411289752,940.71468,433.3687232891722,969201.1585595384,438731.10097128735,1488.99416,639.9564081679734,1529387.7410180266,646185.0549068192,0.37819,100000,0,1100452,11506.65021540006,0,0.0,0,0.0,41575,434.1356811242629,0,0.0,41827,433.3932828641934,1108295,0,39752,0,0,9698,0,0,98,1.0247187251662555,0,0.0,0,0.0,0,0.0,0.0491,0.1298289219704381,0.309979633401222,0.01522,0.3562792511700468,0.6437207488299532,23.353673049703485,4.056347462693058,0.2819789797487824,0.2799282235324276,0.2186618815688285,0.2194309151499615,11.44158742247681,6.185234597787255,16.30629872710036,11478.33601224779,44.77936929125991,13.561154030700347,12.443869051504468,9.448903438316432,9.325442770738654,0.576006152268649,0.8168498168498168,0.6636363636363637,0.611957796014068,0.1203271028037383,0.7368421052631579,0.913793103448276,0.8590163934426229,0.6952380952380952,0.1809045226130653,0.506426735218509,0.7452229299363057,0.5886792452830188,0.5847589424572317,0.1019786910197869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910887880751,0.0046826064482126,0.0072345390898483,0.009344845099035,0.0116864492112409,0.0138605996415186,0.0156727984663702,0.0178354483364131,0.0197928700683958,0.0221064056356487,0.0245043233873201,0.0266383127356406,0.028942115768463,0.0308924485125858,0.0327667396422817,0.0348641127238493,0.0365701965337092,0.0386464900345855,0.040492444740457,0.0425287835808443,0.0572551396887444,0.0713574684340126,0.0841544635166081,0.0968775020016012,0.1089128781477099,0.1246650639158661,0.1358801338929918,0.1466079652055262,0.156588466972045,0.1653697334479793,0.1781769894307275,0.1890332516322148,0.1995661368740053,0.2084242616982311,0.2167065808787012,0.2261336117837862,0.2353915544661943,0.2430520293828915,0.2505348689002185,0.2572314405465924,0.2633581146124494,0.2702214718675624,0.2754473974454762,0.2795812524010757,0.2839165430537655,0.287083287083287,0.2909838119581015,0.2938241433735553,0.2980226904376013,0.3014675772426456,0.2983881836069109,0.295342209249494,0.293970167753567,0.2918604315299962,0.289049859727768,0.2857033615758725,0.2830206556755732,0.2828696349910753,0.283516371425657,0.2833282990707343,0.2848765547379823,0.2859307359307359,0.2859109396183126,0.2875361673714667,0.2881587134446944,0.289693954235663,0.2909930062009797,0.2939318110728808,0.2983834363325303,0.301372564486866,0.3057284618854307,0.309160909234745,0.311802481451462,0.3182159483405917,0.3251934010625408,0.3313281434300542,0.3321683634705972,0.3307213180630902,0.3313416621401412,0.3343419062027231,0.0,2.0425281461803904,51.42460737014767,143.30805684981434,199.022385916458,fqhc5_80Compliance_implementation,12 -100000,95682,47302,451.610543257875,4950,50.4797140527999,3937,40.54054054054054,1505,15.30068351414059,77.28391542799022,79.68148652765946,63.28504443165552,65.05941477265549,77.08535309067636,79.4885248304085,63.20854815221625,64.98829534580892,0.1985623373138594,192.9616972509649,0.0764962794392687,71.11942684656469,243.28458,170.32738567963284,254263.68595974165,178014.03156250165,484.28697,321.8716737384389,505545.1809117702,335800.5937228615,459.88134,225.0010697531086,477063.1571246421,232421.9988993582,2757.43614,1309.1881418439514,2837903.7227482703,1324322.8617302414,918.62991,425.7541658828682,945369.9337388432,430340.7805243072,1461.38578,639.5949147394592,1486476.5577642608,631763.9513557024,0.37781,100000,0,1105839,11557.440270897348,0,0.0,0,0.0,41762,435.8291005622792,0,0.0,41703,432.3697247131122,1105308,0,39730,0,0,9740,0,0,77,0.7942977780564787,0,0.0,1,0.0104512865533747,0,0.0,0.0495,0.1310182366798126,0.304040404040404,0.01505,0.3575592693354061,0.6424407306645938,23.192491664116183,4.059110109323737,0.2903225806451613,0.2921005842011684,0.2110744221488443,0.206502413004826,11.375458564566436,6.297289874306412,16.34648048795721,11455.530609696989,45.22096256006422,14.065692421368809,12.965183694408864,9.189882734812164,9.000203709474391,0.5829311658623317,0.8130434782608695,0.7086614173228346,0.5523465703971119,0.1119311193111931,0.7350565428109854,0.930327868852459,0.8459214501510574,0.6839622641509434,0.1497584541062802,0.5131530196369025,0.7265861027190332,0.6527093596059114,0.5072697899838449,0.099009900990099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021787154698931,0.0045642648490749,0.0066601013228829,0.0088515360616253,0.0112430430491539,0.0135991361747208,0.0157478708756183,0.0178534951178657,0.0202403477371516,0.0221475547542461,0.0241500297515234,0.0262525173646788,0.0281330712793653,0.0301443838694052,0.0322370865849126,0.0340034748076445,0.0361528179303055,0.0380335492443115,0.0400054089476476,0.0418147518942749,0.0566617219982032,0.0709372087909786,0.0842167131971703,0.0963420537537095,0.1079363739035897,0.1231407670890632,0.134537576858135,0.1457512302153675,0.1557993093642088,0.1649222247270619,0.1774756904767038,0.1887344391596875,0.1996319245554236,0.2088754545056293,0.2171938719276975,0.2266808751540177,0.2360254002325373,0.2441737288135593,0.2518866209028504,0.2589282641366572,0.2654144927536231,0.2714419695193435,0.2756906798258621,0.2802910243480766,0.2850327386023416,0.2882863983019473,0.2912114073777065,0.2946702478392036,0.2978354081117141,0.3009745868885753,0.2985512710038776,0.2956448796050551,0.2928242857343818,0.2899146334429255,0.2868574991834189,0.2829582485504031,0.2798418972332016,0.2802055713771318,0.2808680383900718,0.2806023344916689,0.2820699981283923,0.2834321866350336,0.2848025528520143,0.2863254563780938,0.2887719890929273,0.2898675427617855,0.2901650052540399,0.2937707797503293,0.2973840251133589,0.3009208248071777,0.3040354286230738,0.3085218306154655,0.308599081771932,0.311145856600402,0.3162164653821333,0.3200700116686114,0.3232856066314996,0.3261347730453909,0.328575349986275,0.3330809992429977,0.0,2.308871905494505,53.78472779795974,138.43828888857433,200.39304666562228,fqhc5_80Compliance_implementation,13 -100000,95657,47879,457.028759003523,4969,50.7333493628276,3958,40.79157824309774,1480,15.14787208463573,77.35161970545354,79.76084749622308,63.31721993396855,65.09593052907418,77.16568363857802,79.57627647757207,63.24717815720447,65.02878704147244,0.1859360668755272,184.5710186510132,0.0700417767640786,67.14348760174005,244.25984,171.00062172931962,255349.67644814285,178764.35778805483,487.86026,325.0382809222537,509445.0902704455,339231.6239646537,467.21117,228.1595459033219,485032.2715535716,235874.5182950963,2762.53708,1282.137172312501,2850193.127528565,1302630.643074395,892.61246,404.4374540708585,920173.5157907944,409872.2470735998,1434.3525,605.602916384598,1469255.7366423784,606866.6310753044,0.38035,100000,0,1110272,11606.803474915583,0,0.0,0,0.0,41947,437.9188140961979,0,0.0,42244,438.22198061825065,1101865,0,39447,0,0,9732,0,0,95,0.993131710172805,0,0.0,0,0.0,0,0.0,0.04969,0.130642828973314,0.2978466492251962,0.0148,0.3583882216195273,0.6416117783804727,23.35687620748437,4.11913500173639,0.3198585144012127,0.2748863062152602,0.2129863567458312,0.1922688226376958,11.664051305199662,6.427942033086596,15.7136153407166,11497.964678429782,45.1252769719801,13.272708453876543,14.37198307756039,9.225070972520134,8.255514468023033,0.5952501263264275,0.8207720588235294,0.7156398104265402,0.5729537366548043,0.0972404730617608,0.7662901824500434,0.9232409381663113,0.8895522388059701,0.689119170984456,0.1168831168831168,0.5251157819736373,0.7431340872374798,0.6530612244897959,0.5384615384615384,0.0922570016474464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0046240429954875,0.0068707248259484,0.0093269934162399,0.0113214456458716,0.0135771032796903,0.0155815020649569,0.0177063442627972,0.0199284253578732,0.0221858035439926,0.0244375365485826,0.0265229365340348,0.0286605194912114,0.030743218862439,0.0324449953517198,0.0348049206956845,0.0368255218589996,0.0388464413254713,0.0406995495167448,0.042542098952088,0.058067482418834,0.0720815052930274,0.0856950917411932,0.0986088896371748,0.1107417257683215,0.1256258004424263,0.1366063939352112,0.1465312343455229,0.1565371818600023,0.1662299729393067,0.1783804183739486,0.189602877136729,0.2009208463949843,0.2106455638011427,0.2198975940098001,0.2293273920368892,0.2373882931188561,0.2454584336942575,0.2529282244518091,0.2596459893293032,0.2645596262373947,0.2702427967190896,0.2749538985294813,0.2794786480275756,0.2840265395485365,0.2883538978213534,0.2921560062402496,0.29555862838875,0.2983175930226557,0.3015879275442332,0.298852426011677,0.295857095854354,0.2932116532116532,0.2903053951706958,0.2872524770805255,0.2831838154522153,0.279749708413454,0.2796389856280963,0.2804539808402389,0.2809160576803399,0.2817072260376231,0.2827014171433064,0.2838350567044696,0.2853337476969522,0.286126272135758,0.2875867585210414,0.2875285750571501,0.2913420183257496,0.2966517158652341,0.3007554296506138,0.3037478013800568,0.3090187062388964,0.3110035975685399,0.3122746394230769,0.3203479226427315,0.3231348552600612,0.3284261648201548,0.3319369638938759,0.3378885316184351,0.345224823485693,0.0,2.28065753060164,49.8371675577512,147.2832115420131,204.31038922527716,fqhc5_80Compliance_implementation,14 -100000,95795,47712,453.8754632287698,4822,49.17793204238217,3839,39.52189571480766,1442,14.70849209248917,77.3507064425629,79.67907690501684,63.34838135415546,65.07012136372781,77.16599662172311,79.4976992331463,63.27884384796155,65.00401911458913,0.1847098208397852,181.37767187053555,0.0695375061939103,66.10224913868024,244.63692,171.32988214735963,255375.22835221048,178850.3180201052,486.14032,323.1505386277639,506925.27793726185,336780.9265909117,462.87251,225.8883915795705,479705.5691841954,233138.38044570107,2658.33185,1244.8149606906077,2736604.5200688974,1261040.1489541288,879.44751,398.6102734851682,906911.9369486924,405028.0916845431,1402.44482,596.9337885580096,1431566.073385876,595688.8587212712,0.37981,100000,0,1111986,11607.964925100474,0,0.0,0,0.0,41786,435.61772535100994,0,0.0,41850,433.4151051725038,1104423,0,39627,0,0,9669,0,0,79,0.8246776971658228,0,0.0,2,0.0208779163839448,0,0.0,0.04822,0.1269582159500803,0.2990460389879718,0.01442,0.3503071131365167,0.6496928868634833,23.31275780636995,3.968376404054668,0.3128418859077885,0.2917426413128419,0.1917165928627246,0.2036988799166449,11.42265834452152,6.232561338269404,15.44791789044763,11508.183493262768,44.0608105914428,13.730937618173296,13.651412211510108,8.207905272397635,8.47055548936176,0.5790570461057567,0.8080357142857143,0.6860949208992506,0.563858695652174,0.1010230179028133,0.7653778558875219,0.9340425531914892,0.8670694864048338,0.7142857142857143,0.1234567901234567,0.5005553498704184,0.7169230769230769,0.6172413793103448,0.5169340463458111,0.0951612903225806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002542441554232,0.0047546634225466,0.0069104082316052,0.0091012514220705,0.0113978363429315,0.0136724118623189,0.0159695894990012,0.0180526783071914,0.0203051391315899,0.0226054031927957,0.0248683320695944,0.0267807670996737,0.0289704643084701,0.0309849295890636,0.0328837468291777,0.034938377462577,0.0371462569196544,0.0392789019737933,0.0413014580650521,0.0433402044683199,0.0580157769522935,0.0720738618540747,0.0848175442642542,0.0973674531028322,0.110018548965052,0.125580067863976,0.1370717171610057,0.1479152033714322,0.1582273751187692,0.1684547861223352,0.1801175381568467,0.1916392875670067,0.2017819307872005,0.2113128400078652,0.2201275145652413,0.229045459573056,0.2366283798086028,0.2443313904518042,0.2514244933561403,0.2578568161024702,0.2634787226673439,0.2696383967131218,0.274826571492726,0.2798502105666156,0.2836150246126239,0.2882838547754087,0.291476740555729,0.2944120523862149,0.2985441286752346,0.30082392271447,0.2981203007518797,0.2952286828089825,0.2926486501679385,0.2897906778805234,0.2875061157318863,0.2835223278417947,0.2801232422183599,0.2812213039485767,0.2823001603493569,0.2832617260620755,0.284023003577918,0.2849048408749901,0.2845923474837169,0.2857078903189703,0.2869619463505926,0.2878003071396965,0.2893800017087688,0.2920676857268667,0.2978992038719181,0.3014732019432047,0.304950675092058,0.309545333687849,0.3120553981743783,0.3156450137236962,0.3191170968948746,0.3169205337111819,0.3206796265115567,0.3197223356472029,0.3205092720730694,0.3206605222734255,0.0,2.1018047502017456,49.33207931574549,144.8503654751405,195.6286542349196,fqhc5_80Compliance_implementation,15 -100000,95738,47666,454.0621278907017,4863,49.61457310576783,3860,39.76477469761223,1406,14.330777747602832,77.31652017658898,79.67776548960933,63.31665033110207,65.06275600053445,77.13690568602718,79.50118000958372,63.24850312815276,64.99784657176228,0.1796144905618035,176.58548002560792,0.0681472029493051,64.9094287721681,243.44012,170.505611361374,254277.4238024609,178096.06568068478,484.59955,322.88334022988096,505657.3669807182,336741.983569618,461.30774,225.30149651714453,478448.3590632769,232726.96873951788,2688.10963,1256.232714275835,2767798.763291483,1272178.5124776317,859.62207,396.2349350702387,877238.1186153878,393222.2263575982,1364.82764,583.3945651858442,1391483.5488520756,580496.8184950791,0.37883,100000,0,1106546,11558.064718293675,0,0.0,0,0.0,41806,436.1173201863419,0,0.0,41686,432.0019219118845,1106017,0,39673,0,0,9661,0,0,78,0.8147235162631348,0,0.0,1,0.0104451732854248,0,0.0,0.04863,0.1283689253754982,0.2891219411885667,0.01406,0.3521876231769807,0.6478123768230193,23.35664346243162,4.007892341908845,0.3196891191709844,0.2803108808290155,0.2062176165803108,0.1937823834196891,10.93903730037426,5.890240046467431,15.107377768166147,11482.117657346438,44.22433870767449,13.219985157829353,13.965369317683844,8.89236401168671,8.146620220474587,0.583419689119171,0.8022181146025879,0.7106969205834684,0.542713567839196,0.1002673796791443,0.7692307692307693,0.9194630872483222,0.9035087719298246,0.7164948453608248,0.1304347826086956,0.5051546391752577,0.7196850393700788,0.6367713004484304,0.4867109634551495,0.0919931856899489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285025475835,0.0045011709127036,0.0068307536158335,0.0090634748061818,0.01123046875,0.0134031328295276,0.0155222175762087,0.0177588513423812,0.0198055234609053,0.0221653442539032,0.0244750225576244,0.0264503542458157,0.0286586870681145,0.0307367553930906,0.0328420097164488,0.0347460428978799,0.036621846825865,0.0388756353075407,0.041067697776669,0.0430561198445687,0.0580276043515483,0.0716363560262017,0.0849229736673762,0.0975153254892064,0.1091792838766817,0.1246364549732959,0.1367122444866395,0.1473095960402363,0.1574499455116562,0.1669330872965637,0.1782486453878553,0.1895811014078715,0.2005111195693545,0.2101108608663328,0.2182938910291689,0.2276757020324032,0.2356789585915084,0.2435311853118531,0.2511573548767757,0.2569920058638935,0.2633922890953047,0.2702048547776063,0.2756421633005596,0.2801831607211354,0.2847425510464367,0.2886275090003452,0.2921902377972465,0.2955950835941675,0.2989545325155914,0.3022093253313988,0.2985321619330795,0.2953288006826502,0.2924143958723938,0.2888821429087702,0.2866969750995424,0.2834911939773231,0.2800018966034992,0.2804383849321586,0.2807490739002031,0.2811172586114581,0.281918874419997,0.2830396909857711,0.2842362678705794,0.2844846809079963,0.2850676565680757,0.2867946028539611,0.2886037222741565,0.2932373024038911,0.2986268034069181,0.3027075883208237,0.3079453783406192,0.3108756392008013,0.3136349453978159,0.3157223264540337,0.3178734083093224,0.3225578102878716,0.3253763113881709,0.3340672538030424,0.3386084583901773,0.3377659574468085,0.0,2.182403510969678,49.704901109491615,142.46476981342607,199.28020508801808,fqhc5_80Compliance_implementation,16 -100000,95685,47667,454.2300256048492,5188,53.11177300517323,4065,41.97105084391493,1500,15.37336050582641,77.40264542862671,79.78343712605869,63.35728834693722,65.11205226426102,77.20982516575877,79.59060150069095,63.28531901434768,65.04189115058041,0.19282026286794,192.83562536773505,0.0719693325895391,70.16111368061217,243.41636,170.41783569413803,254393.4367978262,178102.9792487203,485.01277,322.87957778217793,506387.5111041438,336944.266814051,470.64474,229.32352298616053,487615.018027904,236518.0197639566,2808.82038,1320.0547615296157,2903726.049014997,1347938.1174130226,895.51881,410.2190821265978,924307.101426556,417194.8936054865,1447.08384,613.366706797842,1484942.4465694728,618358.6230399304,0.38128,100000,0,1106438,11563.338036264828,0,0.0,0,0.0,41744,435.74227935413074,0,0.0,42602,441.1558760516277,1110471,0,39795,0,0,9553,0,0,97,1.003292052045775,0,0.0,2,0.0209019177509536,0,0.0,0.05188,0.1360679815358791,0.2891287586738628,0.015,0.3593289085545723,0.6406710914454278,23.308427787036106,3.957415489297472,0.3156211562115621,0.2915129151291513,0.2071340713407134,0.1857318573185732,11.348692110662949,6.305651033844269,15.894712188008718,11587.352909232266,46.6517558346675,14.556667807147742,14.530220503704228,9.468862254153036,8.096005269662491,0.5960639606396064,0.8135021097046413,0.6804364770070148,0.5997624703087886,0.1072847682119205,0.7656,0.9268774703557312,0.8583333333333333,0.7183098591549296,0.1520467836257309,0.5207815275310835,0.7290132547864506,0.6110509209100758,0.5596184419713831,0.0941780821917808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019746635477109,0.0041756615687109,0.0061067153580848,0.0083584696789657,0.0106974710446304,0.0130440095309858,0.015200791134401,0.0172892427025923,0.019498436446134,0.0218697231745381,0.0240064782639892,0.0261993491227529,0.0284083898827884,0.0304331706111351,0.0327380031159397,0.0348715828639346,0.0369235229555385,0.0389029553378714,0.0409967344052249,0.0430740690560807,0.0575171318736419,0.0713986555818482,0.0849248656816655,0.0973008225864136,0.1097200835319678,0.1253887983749814,0.1375844979996392,0.1482057123391209,0.1585420584715336,0.1674691430838686,0.1798740106606364,0.191347537684092,0.2023661947326069,0.2118681126464929,0.2208534975802903,0.2307496457669146,0.2394783771734284,0.2470432311614794,0.2543405628857806,0.2617248671200777,0.2675001154361176,0.2729923941953245,0.2785188158081118,0.2828151160009567,0.2867635473353776,0.2910112774095163,0.2937870044217942,0.2976185945013258,0.30099630901066,0.3034972390218248,0.3003460578909247,0.2978772938920843,0.2952188778655905,0.2931760378198956,0.29080780767469,0.2874902874902875,0.2850906913342894,0.2860436218567084,0.2865197160615426,0.2875858763380732,0.2875757293317177,0.2884668156336979,0.2880282421347731,0.2888425443169968,0.2898841514391496,0.2903493099251664,0.2913787243684151,0.2970411249337449,0.3012628200655829,0.3064497064733462,0.3105353745810308,0.3117921033132211,0.3156742556917688,0.3174747017066908,0.31950945515821,0.3247434701492537,0.3266636349855995,0.3275552898983861,0.3272088624696028,0.3354525056095737,0.0,1.99048598362367,54.75448769412653,145.52345431883217,208.061318691385,fqhc5_80Compliance_implementation,17 -100000,95742,47899,456.38277871780406,5063,51.83722922019594,3997,41.30893442794176,1450,14.894194815232604,77.33907921770925,79.7058507843823,63.32552877917672,65.07533579507526,77.1502884973977,79.51690510419112,63.25456419207476,65.0060079676707,0.1887907203115588,188.945680191182,0.0709645871019546,69.32782740456389,243.82094,170.7540722792791,254664.55682981343,178348.13590616352,486.03092,322.9596365007183,507220.47795116046,336896.81278928614,465.58172,227.48640911718172,483426.228823296,235420.44472678375,2754.83624,1291.8958871986376,2851169.298740365,1323166.590627559,899.26823,413.4580894062871,929003.9376658102,421588.02762245,1406.71486,605.3319297658627,1446637.6720770404,612605.4235619997,0.38152,100000,0,1108277,11575.66167408243,0,0.0,0,0.0,41847,436.6422259823275,0,0.0,42112,436.9451233523428,1106534,0,39694,0,0,9571,0,0,92,0.9609157945311356,0,0.0,1,0.0104447368970775,0,0.0,0.05063,0.1327060180331306,0.2863914675093817,0.0145,0.3717633717633717,0.6282366282366283,23.049330619877296,3.967121509811133,0.31048286214661,0.2952214160620465,0.201401050788091,0.1928946710032524,11.030650043334784,5.886062472476646,15.680646359060647,11558.772233843898,45.89483022903677,14.4909726759435,13.937380829231156,8.903475693129106,8.56300103073301,0.5936952714535902,0.809322033898305,0.6978243352135375,0.5875776397515527,0.1024643320363164,0.7665847665847666,0.93359375,0.8688046647230321,0.7,0.1534090909090909,0.5176512968299711,0.7140718562874252,0.6325167037861915,0.5528455284552846,0.0873949579831932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268838113757,0.0044916250963215,0.0068004425362605,0.0089924402536172,0.0108033325534317,0.012873132428276,0.0151532147045327,0.0174478555166464,0.0194993762653633,0.0217640672688912,0.0238854646333083,0.0260776681080081,0.0279740417348019,0.0300526462194657,0.032380264244426,0.0347034796546197,0.0370028902033501,0.0389991801662498,0.0410015909823536,0.0431616452056507,0.0577487288179834,0.0718777137237259,0.0842760833324596,0.0973847755449698,0.1095035221664487,0.1254759688610594,0.1359494181173949,0.1467854747532816,0.1572777979612335,0.1668866072290707,0.1788138697929013,0.1904246335072865,0.2014773555553138,0.211559922102361,0.2203824601191197,0.2307385362285106,0.2388629613915995,0.2466128015844436,0.2547094870630957,0.2610543925383566,0.2668996320381384,0.2735756385068762,0.2793980304767759,0.2836383658714674,0.2874155640985217,0.2914453624471328,0.2946682641905047,0.2979843466568569,0.3012894149231385,0.3043060437318168,0.3012310211971916,0.2982150212824385,0.2951264807676074,0.2913730360443622,0.2885291630191254,0.2851335034923352,0.2814518803999305,0.2811204169603199,0.2815994809540883,0.2812466550112392,0.2825737465884024,0.2840770351699421,0.2848003667583562,0.2857588172426077,0.2861715596111124,0.2867453049821512,0.2898398753011194,0.2946082718980382,0.2994561048741371,0.3038244464616963,0.308438321399438,0.3150177333121592,0.3177675821758531,0.3254788689571298,0.3259755983980628,0.3299941072480848,0.3364097831102907,0.3386082369649016,0.3335173937051353,0.3362528560548362,0.0,1.738586126045878,53.6437232444558,146.086236148086,202.60751741859752,fqhc5_80Compliance_implementation,18 -100000,95690,48156,460.47653882328353,4950,50.47549378200439,3900,40.21318842094263,1498,15.299404326470896,77.30793472821749,79.68398604270723,63.31631099018998,65.07031830494842,77.11849150150734,79.49616084953551,63.24457332060146,65.001195460726,0.1894432267101535,187.82519317171875,0.0717376695885221,69.1228442224201,244.3199,171.18815353702286,255324.3808130421,178898.68694432318,489.32047,326.0527770865428,510849.7648657122,340228.286222743,468.82804,228.85074650421132,486226.2200856934,236368.8548120982,2734.99065,1274.4214426161489,2821652.8581878985,1295297.74544482,886.34674,401.6297385720916,912966.799038562,406417.52385002654,1446.02498,612.1816510873592,1477906.4688055178,612861.5674123364,0.38162,100000,0,1110545,11605.653673320096,0,0.0,0,0.0,42074,439.1367959034382,0,0.0,42327,438.6038248510816,1097230,0,39411,0,0,9700,0,0,80,0.8360330233044205,0,0.0,0,0.0,0,0.0,0.0495,0.1297101829044599,0.3026262626262626,0.01498,0.3470055844405931,0.6529944155594068,23.58402596040493,4.101745291346,0.3197435897435897,0.2641025641025641,0.2215384615384615,0.1946153846153846,11.522152886187056,6.322905096268186,15.96223675053609,11555.416328459383,44.53625229158119,12.630311110291036,14.18838770102144,9.5901264426936,8.127427037575108,0.5864102564102565,0.7961165048543689,0.7016840417000801,0.5868055555555556,0.1119894598155467,0.7559322033898305,0.899103139013453,0.8904899135446686,0.7327188940092166,0.1352941176470588,0.5128676470588235,0.7174657534246576,0.6288888888888889,0.5378670788253478,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312354453961,0.004580276437923,0.0065734081295204,0.0087043958722678,0.0110446668293873,0.0132377499898171,0.0153052380418268,0.0175293517100561,0.0196589584739005,0.0216294233859823,0.023772911797269,0.0260474953541617,0.0281582952815829,0.0299680642835067,0.0318140072440587,0.033629690892174,0.0357057744713037,0.0378330114827965,0.0399059567650791,0.0419611767894747,0.0568270847914425,0.0714614692151485,0.0840415486307837,0.0973947432081365,0.110722192936215,0.1257495161853195,0.1377119093590206,0.1495146044452014,0.1593628477415495,0.1684259080474566,0.1794822090118032,0.1899893987581402,0.2010154602187479,0.2113088730484978,0.2197877137986031,0.2290568378150888,0.2376612075505377,0.2456635694841278,0.252203905195203,0.258844413903682,0.2652952548533855,0.2714312445910228,0.2764839534223232,0.2809033232990729,0.2853824920656152,0.2890999938313491,0.2928189256581502,0.2961217001325043,0.2997938090853682,0.3030759274667512,0.3009696969696969,0.2980724218642434,0.2958014460276521,0.292979538717374,0.290979097909791,0.28767165230171,0.2839662514048723,0.2845762155059133,0.2854432651386966,0.2848861062057402,0.2862277466818922,0.288314970580105,0.2904634543858916,0.2923868496079829,0.2928677634418917,0.2951101390407749,0.2979019786217876,0.3020862745098039,0.3065365442673594,0.3107445209272885,0.3119203491543917,0.3159315931593159,0.3185390079839064,0.3213119732746184,0.3230005619029781,0.3273690406121248,0.3259270379822849,0.3254660848869496,0.3279038718291054,0.3283858998144712,0.0,2.1531184758947903,51.32586517549005,137.95462912063846,203.0038101261173,fqhc5_80Compliance_implementation,19 -100000,95706,47908,456.5231019998746,4955,50.48795268844169,3978,40.96921823083192,1488,15.234154598457776,77.38171245272493,79.75706298392552,63.34258245905804,65.09567781054244,77.18707518180202,79.56271531730012,63.26758371328284,65.0226283710291,0.1946372709229109,194.34766662540423,0.0749987457752041,73.04943951334053,244.0812,170.90290463526625,255031.8266357386,178570.30577937255,484.91867,322.81775026047865,506101.8431446304,336728.843210163,470.28708,229.66586835008792,487340.9295133012,236871.47193758952,2779.78746,1321.457701083321,2867756.92224103,1344100.826416683,931.04037,429.59216647205255,958700.5307922178,434754.0660690579,1448.31136,632.0277593451599,1484335.7574237771,636466.9661049972,0.38171,100000,0,1109460,11592.355756169936,0,0.0,0,0.0,41669,434.7794286669592,0,0.0,42608,441.1113200844252,1103882,0,39660,0,0,9597,0,0,87,0.9090339163688796,0,0.0,0,0.0,0,0.0,0.04955,0.1298105891907469,0.3003027245206862,0.01488,0.3566990291262136,0.6433009708737865,23.06836290661917,4.043751466012711,0.3262946204122675,0.2737556561085973,0.1985922574157868,0.2013574660633484,11.497911326333996,6.320409073433471,16.072815351196898,11570.271233518231,45.85671183907989,13.403120216899834,14.777325953234152,8.816280287518513,8.859985381427386,0.5932629462041227,0.8089990817263545,0.7110939907550077,0.589873417721519,0.1123595505617977,0.7467079783113865,0.9081632653061223,0.8781725888324873,0.704225352112676,0.1185567010309278,0.5195385187941942,0.7278797996661102,0.6382743362831859,0.5476603119584056,0.1103789126853377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611084103062,0.0049062838954272,0.007194463611641,0.009253804115962,0.0115039567101328,0.0138289205702647,0.0159265867958195,0.0179672506023112,0.0200873005325945,0.0223154877674275,0.0246250371630973,0.026888840976992,0.0287844508432743,0.0311090051298955,0.033136912931755,0.0353287841191067,0.0373051628605458,0.0394836513816683,0.0411743905482985,0.0431221342225927,0.0577822799615689,0.0715923246830739,0.0854552894148752,0.0981654464360851,0.1099590751835288,0.1248188999693319,0.1362744161865656,0.1470381568861255,0.15663191180241,0.1664378124396575,0.1786264642175932,0.1901936796977341,0.2004481475841364,0.210005575659513,0.2184763957939196,0.2282272973840652,0.2368048353462023,0.2447115979352458,0.2520303992740472,0.258579427694633,0.2645871177498293,0.2704083421984779,0.2772972013490326,0.2815476975063808,0.2856483505805762,0.2899807796560051,0.2934490390506796,0.2984560207559648,0.3015628638704168,0.3041289421315515,0.3016519483312499,0.2992520414465107,0.2970644857580484,0.2940854641787606,0.2918342600260262,0.2882042843648109,0.2848994769017458,0.2858798185200901,0.285852417302799,0.2872623439273553,0.2871322160148976,0.2879005166689586,0.2890517921667982,0.2898975109809663,0.2913237434099096,0.2929446665806784,0.2952257409548518,0.2997794140491502,0.3030796975792467,0.3069982739683037,0.3094059405940594,0.312949829261886,0.3176698786134401,0.3210745365115399,0.3242060165781876,0.325900715878418,0.3261427062905415,0.3298763462305544,0.3321545157780196,0.3370060790273556,0.0,2.317022153258598,56.145567109695975,140.76583009119392,195.62694689211068,fqhc5_80Compliance_implementation,20 -100000,95851,48159,458.1694505012989,5057,51.496593671427526,3969,40.76118141699096,1507,15.31543750195616,77.44506122741345,79.72429618411205,63.40474875222951,65.08484118042487,77.24984569840746,79.53264951632687,63.330109744172745,65.01426157078298,0.195215529005992,191.6466677851787,0.0746390080567636,70.57960964189647,244.01366,170.9805790642168,254576.0190295354,178381.6330181394,483.42033,321.97319260048533,503724.6038121668,335289.0763794696,473.69783,230.92521570731088,490308.3744561872,237930.6397122639,2782.06114,1309.1309070766436,2860812.2189648515,1324124.8261120317,919.17781,423.55349246898265,944005.6337440402,426927.7550249685,1468.12572,634.4610880339773,1493956.3071851104,629167.6727215355,0.3815,100000,0,1109153,11571.637228615247,0,0.0,0,0.0,41580,433.15145381894814,0,0.0,42662,441.1534569279402,1107387,0,39752,0,0,9633,0,0,102,1.0641516520432754,0,0.0,0,0.0,0,0.0,0.05057,0.1325557011795544,0.2980027684397864,0.01507,0.3488504655139654,0.6511495344860346,23.31233294730909,4.040881067187951,0.309649785840262,0.2784076593600403,0.2073570168808264,0.2045855379188712,11.12986437395715,5.955807211298638,16.184494075265505,11580.332753216622,45.61604584257054,13.58381138602806,13.923986513290034,9.15060698486906,8.957640958383394,0.581506676744772,0.8009049773755657,0.6859235150528885,0.5795868772782503,0.1268472906403941,0.7574750830564784,0.9275053304904052,0.8650306748466258,0.7407407407407407,0.1813471502590673,0.504882459312839,0.7075471698113207,0.6212624584717608,0.5222405271828665,0.1098546042003231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023583473349662,0.0043963168184442,0.006661732050333,0.0087795866996873,0.0110350153433454,0.0132362067737636,0.0153589179499714,0.0176308034303078,0.0199123855037833,0.0220552147239263,0.0244109726502902,0.0266752815211371,0.0288704475895076,0.0311564611855707,0.0335150060271375,0.0354975227085053,0.0374790576457691,0.0394400058030486,0.0415070441544419,0.0433280612669607,0.0577783339068414,0.0719180944421228,0.0850217266111721,0.0985141034251175,0.1109684886106581,0.1266281058031285,0.1374143608966824,0.1485294742657996,0.1585211094878056,0.1687305341795725,0.1812280343497092,0.191961296732252,0.2022276744034566,0.2111336739595615,0.2200876528157643,0.2286441334292194,0.2372460068883266,0.2450532040405856,0.2531147615322699,0.2602487385727852,0.2657848793516088,0.2714666541951174,0.2768952342650311,0.2820162998599791,0.2862827402977108,0.2901748901551981,0.2932689299613329,0.2967875674025841,0.3001954616649191,0.3031109939361983,0.3003925997633645,0.2970502244245261,0.2950803565162467,0.2923791580975939,0.2904398722951401,0.2873125808661237,0.2840178051811189,0.2833363222850807,0.2833528503300918,0.2839659233807406,0.2848899973941853,0.2862337356028145,0.2882273342354533,0.2883010829043139,0.2901848539057841,0.2928656300046495,0.2948139797068771,0.2988995274807262,0.3038259305382593,0.3081329200831731,0.3128276984270475,0.3193410422936797,0.3238838588822978,0.3280060882800609,0.3279827278700835,0.3274577073228439,0.3258908089922006,0.3292307692307692,0.3281767955801105,0.3298327499027615,0.0,2.555133461840117,52.06582957197469,147.2283515130564,200.144518738574,fqhc5_80Compliance_implementation,21 -100000,95681,47781,456.3810996958644,4864,49.72774113982923,3872,39.84072072825326,1469,14.924593179419112,77.29747507811412,79.7005248912408,63.28577397120039,65.06585980548714,77.11603869838892,79.52362955028111,63.21691647883838,65.00121337224509,0.1814363797251985,176.89534095968895,0.0688574923620137,64.64643324204644,243.94238,170.86105855552032,254953.8361848225,178573.6547021042,488.39792,325.56185357985174,509813.27536292473,339637.0780804593,466.04138,228.04418824896987,483217.0963932233,235399.631067722,2697.81011,1262.1372173873608,2777427.8069836227,1277646.671959168,865.59265,394.51366295044414,887689.7398647589,396197.4529115563,1424.07354,602.3800179549819,1448299.5997115416,596732.5876473667,0.37927,100000,0,1108829,11588.81073567375,0,0.0,0,0.0,41971,438.007545907756,0,0.0,42233,437.5267817016963,1097754,0,39438,0,0,9822,0,0,88,0.9197228289838107,0,0.0,1,0.0104513957839069,0,0.0,0.04864,0.1282463680227806,0.3020148026315789,0.01469,0.3564532019704433,0.6435467980295566,23.22230887527014,4.026964281069307,0.3096590909090909,0.287448347107438,0.2037706611570248,0.1991219008264463,11.399367876790944,6.270700838488441,15.631367913411466,11489.35260072301,44.44919613092995,13.70677620508263,13.594563491827584,8.772549269843548,8.375307164176185,0.5831611570247934,0.8158131176999102,0.6872393661384487,0.5640050697084917,0.1050583657587548,0.7837606837606838,0.9306122448979592,0.8735294117647059,0.7227722772277227,0.1304347826086956,0.4962990377498149,0.7255216693418941,0.6135040745052387,0.5093696763202725,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026348858891726,0.0049702797557462,0.0069749733489009,0.009114927344782,0.01129150390625,0.0136283077675242,0.0158398270164416,0.018004125732726,0.0200149319369585,0.0219147781384727,0.0240427517873078,0.0259908364323724,0.0279418118968745,0.0299139574424236,0.0319033606938206,0.0340304929766854,0.0360067162786841,0.0380346184597173,0.0400337082158574,0.0421460730365182,0.0575792079725057,0.0720424592000167,0.0849239745217582,0.0976625781069197,0.1100316455696202,0.1260433968452122,0.1380671867537016,0.1478487752928647,0.1584867731656722,0.1675076222785245,0.1794241345842769,0.1908214916701893,0.2014768506921376,0.2098615310459664,0.2189731946036504,0.227570217863957,0.2362821573053798,0.2440081993062125,0.2509684088559712,0.2581025946639773,0.2639990734842782,0.2695360981664051,0.2743677181017334,0.2798301078623106,0.2837372766961365,0.288561386199667,0.2929721742179477,0.2965279192989606,0.2994489465153971,0.3020472856954167,0.2989512846089558,0.2956164647842683,0.2929020791604367,0.2908086534012031,0.2876521222914811,0.2833751223091976,0.2795498666329961,0.2796959293771456,0.2798423805965079,0.2793775837902095,0.2804828150572831,0.2814270312653141,0.2820731377726034,0.2845742912242591,0.2870732405111577,0.2884153428903526,0.2896401739818109,0.2936468389909685,0.298549514765731,0.3018630610801037,0.3071370567535866,0.3123359580052493,0.3166304009947155,0.3215330383259581,0.3238236383845869,0.3255162758137906,0.3290889798393209,0.3237294917967186,0.3302652950730915,0.3333333333333333,0.0,2.3888323843573627,50.60731470063424,144.23595685922163,194.98285459852133,fqhc5_80Compliance_implementation,22 -100000,95828,47874,455.56622281587846,4978,50.70543056309221,3986,41.000542638894686,1502,15.22519514129482,77.32864418348662,79.6383370138162,63.32870225298407,65.03820613632054,77.13080765383329,79.4478332039346,63.25279130193308,64.96791480841718,0.1978365296533297,190.50380988160495,0.0759109510509858,70.29132790336234,243.95228,170.90251973041728,254573.06841424215,178342.98924157582,486.03207,324.5453393215199,506599.6785908085,338082.4073564302,469.11077,229.26900796484875,486804.7856576366,237080.55052246648,2799.74527,1326.507240959336,2876171.244312728,1338861.0521566763,874.36984,403.0364056525701,893167.8528196352,401401.6116730354,1455.7055,630.2040055964784,1476313.5826689487,620581.1360351098,0.38074,100000,0,1108874,11571.503109738282,0,0.0,0,0.0,41830,435.88512752014026,0,0.0,42418,439.80882414325663,1100017,0,39501,0,0,9723,0,0,97,1.0122302458571608,0,0.0,1,0.0104353633593521,0,0.0,0.04978,0.1307453905552345,0.301727601446364,0.01502,0.373941493456505,0.626058506543495,23.130436220862357,3.964178576025368,0.3158554942298043,0.2849974912192674,0.2024586051179127,0.1966884094330155,11.488388238373364,6.353053610603243,16.16029601441436,11534.528206551791,46.15618839536503,14.128328830450014,14.334606924025918,9.134434864496829,8.558817776392262,0.5950827897641746,0.8221830985915493,0.7212073073868149,0.5687732342007435,0.0905612244897959,0.7567567567567568,0.9171717171717172,0.8821917808219178,0.7090909090909091,0.1123595505617977,0.5205278592375366,0.748829953198128,0.6554809843400448,0.5161839863713799,0.0841584158415841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0044297125248347,0.0069903109623091,0.0092739314155696,0.011378889566809,0.0136835675015271,0.0159107124655998,0.0181860859093553,0.0205512350157889,0.0227372729598362,0.0249085525169831,0.0271033024773711,0.0289913159652638,0.0309659354121413,0.033111968156413,0.0350922501601206,0.0371501008951208,0.0392539062094993,0.0412464294988314,0.043111254514608,0.0578351203638032,0.0717452218644138,0.0844417890422733,0.0967043591575938,0.108731171007832,0.1244780379512659,0.1358353305478377,0.1465708965150305,0.1582758399726595,0.1680925425618594,0.1806325855885932,0.1908007920277858,0.2013310424324148,0.2109319486198415,0.2196412852112676,0.2295140081312521,0.2385689880414028,0.2460564981929135,0.2528871376173875,0.2603380656406963,0.2658296816674781,0.271367270851408,0.2765124090536835,0.280559726142574,0.2848921388506978,0.2888845029420109,0.2924179583244577,0.2960348606085317,0.2991686876677863,0.3015461873926259,0.2985756444636095,0.2959263800300321,0.2935739685048258,0.2902898844516521,0.2877009801734267,0.2841592052005396,0.2813603890446546,0.2813987069672803,0.2815312244341423,0.2813445318338731,0.2823089856155427,0.2841294238196579,0.2851661070676315,0.2861974588905454,0.2875508738328944,0.2890322245051887,0.2892423726891233,0.2926166531326129,0.2972004868718483,0.3039342844790315,0.3086715117591297,0.3149884137349905,0.3209151143892986,0.3229277163206546,0.3264161525518788,0.3321897551165266,0.3388704318936877,0.3426797516523132,0.342339908132937,0.3527841342486651,0.0,2.2307427565554705,54.9115693975309,147.58087407124358,196.2230950443644,fqhc5_80Compliance_implementation,23 -100000,95753,47667,454.17898133739936,5003,51.14200077282174,4053,41.805478679519176,1477,15.080467452716888,77.35098256499538,79.69714920657997,63.33757887846742,65.07008776173107,77.15665140887671,79.50568931106612,63.26420444173798,65.00016684688616,0.1943311561186647,191.4598955138445,0.0733744367294377,69.92091484491425,243.33408,170.4864529037705,254126.84720060992,178048.1581817494,486.16401,322.98901285729426,507240.5773187263,336828.1650259462,460.8208,224.88192473327885,478010.2137792027,232334.7464424525,2812.2619,1305.88422017398,2903029.8371852576,1330040.7947287704,920.68228,413.63716837434913,950917.9973473416,421460.3372818738,1437.92784,614.286496864364,1470031.6230300877,614549.9473382228,0.3801,100000,0,1106064,11551.22032730045,0,0.0,0,0.0,41926,437.3335561287897,0,0.0,41798,433.26057669211406,1107116,0,39692,0,0,9483,0,0,75,0.7832652762837717,0,0.0,1,0.0104435370171169,0,0.0,0.05003,0.1316232570376216,0.2952228662802318,0.01477,0.3663726993865031,0.6336273006134969,23.107993373839648,4.059372386202245,0.305946212681964,0.2953367875647668,0.1996052306933136,0.1991117690599556,11.18237343559759,5.940657398658843,15.791323914618657,11516.676126842927,46.420952711486976,14.705422137538983,14.071676513621034,8.833850484460667,8.810003575866292,0.5951147298297558,0.8170426065162907,0.7096774193548387,0.5648949320148331,0.1201982651796778,0.7571669477234402,0.8985801217038539,0.8850574712643678,0.6875,0.1538461538461538,0.5280781304499477,0.7599431818181818,0.6412556053811659,0.5308056872037915,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974015979261,0.0044090370055036,0.0064939677128042,0.0089075322986918,0.0112047666012546,0.0132442915169345,0.0154840419567588,0.017492830388945,0.0197569476384672,0.0218915350684174,0.0238537000399782,0.0260832075878422,0.0279651258430662,0.0300072083204613,0.0322900117605793,0.0344296522925538,0.036614409675482,0.0388203430634968,0.040849214518158,0.0427444811384637,0.0570500976062969,0.071282115658214,0.0847418529547456,0.0971676093950417,0.1098636981752632,0.125089848209378,0.1363867738446202,0.1474769617128142,0.1569850663362317,0.1663287744703674,0.177310770490214,0.1887351992553629,0.1998629511192325,0.2092679724258671,0.2176660318578615,0.2265225824328068,0.2355706946616037,0.2437419137087247,0.2520002269761107,0.2588202929781527,0.2652147246363394,0.2713083970001521,0.2772745547856112,0.2827586206896552,0.2872723743433583,0.2904753703065794,0.2938111481800802,0.2961838461343022,0.2996921325640959,0.30225657122509,0.2992366617751989,0.2967784551447012,0.2943554635225175,0.2928532192315476,0.2909352817131486,0.2875636964605426,0.2833981841763943,0.2834736099489754,0.2843863000614041,0.285093886268577,0.2854022773940638,0.2864224731478931,0.2882144347100542,0.2891662772845604,0.2895541644765136,0.2902238476901927,0.2917904745733933,0.294505769411176,0.2993530884808013,0.3022852639873916,0.3065990766723998,0.3090255759881631,0.3142124358813962,0.3163296106248113,0.3188837209302325,0.3179783223374175,0.3191881918819188,0.3207014714775247,0.324718174319494,0.3317990026850786,0.0,2.066810830986972,51.70913745845329,153.1764274172518,207.1994601926547,fqhc5_80Compliance_implementation,24 -100000,95848,48085,457.8290626825808,4990,50.94524664051415,3966,40.85635589683666,1473,15.00292129204574,77.51248185563044,79.79906939478094,63.42745123530996,65.1112677300578,77.31958801275815,79.61106634700268,63.353806173317686,65.04233978177726,0.1928938428722943,188.0030477782668,0.0736450619922735,68.92794828054605,245.55806,171.99200693307165,256195.28837325764,179442.45778010145,491.31847,326.4782172732549,512095.6827476838,340114.783066162,473.53966,230.7973493802892,491276.7924213338,238599.5701510852,2791.54661,1306.0218871472714,2874690.1343794344,1325026.8904876758,913.00875,416.5955461937166,934931.026208163,417106.3185952587,1434.19686,616.5045245117199,1461577.289040981,611507.7489930397,0.38178,100000,0,1116173,11645.24038060262,0,0.0,0,0.0,42186,439.6022869543444,0,0.0,42759,443.3791002420499,1101254,0,39470,0,0,9784,0,0,88,0.9076871713546448,0,0.0,3,0.0312995576329187,0,0.0,0.0499,0.1307035465451307,0.295190380761523,0.01473,0.3710111495578623,0.6289888504421376,23.23709974421813,4.152946422589093,0.3093797276853253,0.2720625315179021,0.2170953101361573,0.2014624306606152,11.344309636093362,6.112203667296127,15.703140942427344,11551.791829710732,45.37665169345313,13.320423870418317,13.820710754828138,9.523128241704114,8.712388826502561,0.5776601109430156,0.794253938832252,0.6960065199674002,0.5679442508710801,0.113892365456821,0.7549668874172185,0.9071729957805909,0.8698224852071006,0.7358490566037735,0.1739130434782608,0.5,0.7057851239669422,0.6299212598425197,0.5130970724191063,0.0959349593495935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022160160281707,0.0044966123494799,0.0067910682248958,0.0093149739728668,0.0116316869501615,0.0138411471575307,0.015668587485492,0.0179576603034752,0.0199217832599838,0.0218427242049289,0.0239723923239191,0.0259568445665996,0.0282361644849057,0.030443060772912,0.0324226804123711,0.0343328134521829,0.0361961920529801,0.0383506822046199,0.040587147576406,0.0428409315690296,0.0569849298638994,0.0710095676269148,0.0848178731609171,0.0979685727490441,0.1102523061370624,0.1258344600304208,0.1374471377545072,0.1483399621413531,0.1584597980832853,0.1677197566826593,0.1801473355917621,0.1920064812314339,0.2023821156748423,0.2115596710964543,0.2204829071095878,0.2301890965387592,0.2385959831125864,0.2469957997349565,0.2539206250353847,0.2601521972622774,0.2667120238932644,0.2727865644872004,0.2777476479049258,0.2810743061772605,0.2854204476709014,0.2899709034658023,0.2940018195186999,0.2980886075949367,0.3012301152830553,0.3027461574778366,0.2999156524882516,0.297048929245412,0.2942838361375683,0.2913340607592029,0.2891905851103077,0.2858904109589041,0.2821385252744829,0.2814540349960825,0.2809539976234935,0.2821773392020446,0.2838436894650574,0.2854421554957679,0.2867041198501873,0.2858885094682691,0.2863761642273332,0.2874459542927733,0.287678938043142,0.2931637421471234,0.2990099692986995,0.3032255560299655,0.3044173140954495,0.3086477255084614,0.311966599128139,0.315965512115356,0.319197655248214,0.3255064456721915,0.3283360546237197,0.3282561999609451,0.3274619695756605,0.3250647908182155,0.0,2.071408601008128,52.681392949033786,143.27224189797096,201.8663272206382,fqhc5_80Compliance_implementation,25 -100000,95747,47639,454.1656657649848,4960,50.664772786614726,3883,40.05347426029014,1444,14.768086728565908,77.31288813594676,79.6723453817603,63.318020272784125,65.06224008730261,77.12856251896342,79.4889848410994,63.24818444549431,64.99458893183498,0.1843256169833438,183.3605406608996,0.0698358272898147,67.65115546762956,242.11858,169.548032938378,252873.28062498043,177079.211816953,479.52318,319.51469369642103,500335.69720200106,333219.7705373756,460.93808,224.7864230631127,478299.93629043206,232295.12957194293,2693.36745,1269.086073941445,2781890.492652512,1294343.7537901392,884.60607,411.70506497605817,909901.6261606108,415994.7622129749,1394.78192,597.0583316399708,1428250.4934880466,599705.6436006813,0.38062,100000,0,1100539,11494.2400284082,0,0.0,0,0.0,41334,431.1884445465655,0,0.0,41723,432.6192987769852,1115748,0,40050,0,0,9735,0,0,71,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.0496,0.1303136987021176,0.2911290322580645,0.01444,0.3641440400539187,0.6358559599460812,23.2444464050872,3.971299083000424,0.3036312129796549,0.2951326294102498,0.2080865310327066,0.1931496265773886,11.395526941697112,6.376377411839579,15.535889341524149,11532.410840435536,44.95155364786304,14.26536496647584,13.450482944628815,9.0704323203792,8.16527341637919,0.5974761782127221,0.8150087260034904,0.6802374893977947,0.6051980198019802,0.1266666666666666,0.7729549248747913,0.924901185770751,0.843558282208589,0.7487684729064039,0.1901840490797546,0.5191806331471136,0.728125,0.6178194607268465,0.5570247933884298,0.1090289608177172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0044800778438865,0.0063921103095607,0.0086641205866818,0.0107403301431026,0.0128207739307535,0.0151014581421433,0.0173862441424794,0.0198028912016684,0.0221173242133502,0.0240846500087151,0.0261744621861683,0.0281900177923133,0.0303648311806027,0.0325079954606417,0.0345290877334408,0.0366750191555012,0.0386179705333056,0.0404604442226104,0.042466295763789,0.0570316007057177,0.0704562813229124,0.0836383083585877,0.0964221504946747,0.1088173584826088,0.1247937555527351,0.1367408004753618,0.1475252794039382,0.157249364465617,0.1668275211255522,0.1789032806830539,0.1902109850655881,0.200835000434896,0.2100480090987631,0.2190525435662735,0.2289315420483115,0.237875778338206,0.2446871941410073,0.2523107669248064,0.2589592594289904,0.2647606921696857,0.2699665567482869,0.2758555425435016,0.2811129484506434,0.2854783073410096,0.2896409826774758,0.2934491476632707,0.2979451183845782,0.3010808361918322,0.3049227926620034,0.3014237415983082,0.2983370699971115,0.2957423134885424,0.2931206380857428,0.2907339694996879,0.2882968455563556,0.2841161184002028,0.2842527055655001,0.2848747821927637,0.2851172509867657,0.2851713873860381,0.2861207152030031,0.2870515472533901,0.2881189882436765,0.2897922009443233,0.2900779220779221,0.2913660891792105,0.2966870780342283,0.3007424008964841,0.3050733254062623,0.3067428986296397,0.3101322514357975,0.3138849233442989,0.3164471208129469,0.3217180657784403,0.3252546540217773,0.3253726802555521,0.3278557114228457,0.3306871064878182,0.3349514563106796,0.0,1.9836286550942623,52.39011412037097,146.41941397266638,193.07115736195476,fqhc5_80Compliance_implementation,26 -100000,95787,47977,456.90960151168736,5018,51.12384770375938,3976,40.98677273533987,1517,15.534467098875629,77.37208356525132,79.70867476053928,63.35007434272507,65.07850055226626,77.17864131769066,79.51512181560956,63.27660164248193,65.00647941027913,0.1934422475606538,193.55294492972064,0.0734727002431441,72.02114198713616,244.6675,171.42192122188175,255428.7116205748,178961.57226124816,486.36244,323.70019636740057,507218.54740204825,337401.9296641513,467.79582,228.73194502519965,484063.7038429014,235633.4537798825,2818.41174,1324.6290335714557,2911610.218505643,1352126.461389808,930.03374,423.03348898074165,959743.0549030664,430443.409837182,1481.51668,637.6451669840237,1519488.3230501006,645515.7433577756,0.38228,100000,0,1112125,11610.3959827534,0,0.0,0,0.0,41872,436.5728125946109,0,0.0,42332,437.6898744088446,1101671,0,39551,0,0,9651,0,0,81,0.8351864031653564,0,0.0,0,0.0,0,0.0,0.05018,0.1312650413309616,0.3023116779593463,0.01517,0.3727255315073741,0.6272744684926259,23.341923607412763,4.03191268596924,0.3086016096579477,0.2829476861167002,0.1974346076458752,0.2110160965794768,11.208796687106872,5.980640942769015,16.258290036104732,11608.062896198451,45.67997559572135,13.962517824080145,13.934261784631063,8.662812233670513,9.120383753339633,0.5757042253521126,0.8115555555555556,0.6813365933170334,0.5707006369426751,0.1096543504171632,0.7554304102976669,0.93,0.8563049853372434,0.7572815533980582,0.1326530612244898,0.4939626783754116,0.7168,0.6139954853273137,0.5043177892918825,0.1026438569206843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025321584118302,0.0048963951177973,0.0070934220941324,0.0092949076096341,0.0115631038340282,0.0136626486398436,0.0158701036602146,0.0178684409249545,0.020192936559843,0.0224337324736465,0.0243387544706449,0.0267244121963484,0.0289972760446111,0.0310646622734761,0.0330707199868005,0.0349950922147026,0.0370976089431735,0.0392305299180752,0.0413021342033623,0.043206213365816,0.0577167901492225,0.0721756228167423,0.0861479757636748,0.0991037374045159,0.1113861907671562,0.1274799805616007,0.1389981030298534,0.1490180650511967,0.1587550547891126,0.167287997600377,0.1788315278778816,0.1911689996216829,0.2015170285366543,0.2107104207431051,0.219912677202591,0.22947697146211,0.2384453195595667,0.246857785272625,0.2544805305220201,0.2614345411872459,0.2668632552760913,0.2724637342341816,0.2781415468986384,0.2818533280668366,0.2869672817265349,0.2908236104957416,0.2945260313727452,0.2989582009909795,0.3029041889079887,0.3051907854009983,0.3014636766483147,0.2990097923581205,0.2968538946420531,0.2939860583931071,0.2913990774661465,0.2874063885068011,0.2840648839890701,0.2833540738800105,0.2840321507192955,0.2853682860806382,0.2867622354127002,0.287873123315165,0.2886262739948728,0.2893502567408362,0.2904413522689236,0.2909930715935335,0.29227794836802,0.2971557590391671,0.3018656977150443,0.3045335865179207,0.3098795617133025,0.3117848668600053,0.3140361821584529,0.3177838164251207,0.3194133034379671,0.3211482132396016,0.3250941974378297,0.3306562193927522,0.337255950788981,0.3512611275964392,0.0,2.075462535840388,54.23403264723666,141.6989397410621,201.4724045912864,fqhc5_80Compliance_implementation,27 -100000,95652,47802,456.5299209634927,4952,50.56872830677874,3947,40.730983147242085,1487,15.190482164513028,77.25911226955019,79.6543072813431,63.27736057920528,65.04542010798762,77.07142796585987,79.47060199446983,63.206215891153136,64.97811476181101,0.1876843036903182,183.7052868732627,0.0711446880521435,67.30534617661021,244.20352,171.07153235158424,255304.14418935307,178847.83627272223,487.33716,324.1698776693148,508869.8615815665,338285.57444623706,469.08689,228.1598719046773,487155.0725546774,236015.1705178827,2761.32582,1293.5919218399383,2847250.3240914983,1312798.458829861,912.59707,415.4289415652957,938028.1541420984,418290.94477616297,1443.32362,615.1482858446539,1474909.6516539122,612969.2468960641,0.38016,100000,0,1110016,11604.733826788775,0,0.0,0,0.0,42000,438.5376155229373,0,0.0,42530,441.3917116212938,1095265,0,39376,0,0,9620,0,0,74,0.7631832057876469,0,0.0,0,0.0,0,0.0,0.04952,0.1302609427609427,0.3002827140549273,0.01487,0.3611488453328158,0.6388511546671841,23.222037559266035,4.065137906121986,0.3139092982011654,0.277932607043324,0.20749936660755,0.2006587281479604,11.64852962803887,6.5246580219027726,15.807752811652511,11517.06352303981,45.41602334792684,13.62479329322042,13.989923236579864,9.091344914299174,8.709961903827395,0.5964023308842159,0.8085688240656336,0.705407586763519,0.5995115995115995,0.1287878787878787,0.7687188019966722,0.9293139293139292,0.848314606741573,0.7604166666666666,0.1676300578034682,0.5209471766848816,0.7142857142857143,0.6477916194790487,0.5502392344497608,0.1179321486268174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385867528336,0.0047049757146188,0.0068611331019223,0.0092464639895951,0.011496006917951,0.013657751614283,0.0157636070722107,0.0179772757434384,0.0201183794890667,0.0222736299056236,0.0245752893773644,0.0265938331057284,0.0287991771663666,0.0308118632369453,0.0325173887019875,0.0342859506183051,0.0362881087296572,0.0382399651231588,0.0403257681346341,0.0424181139628463,0.0574214178231065,0.0713769519999162,0.0849531130222936,0.0979171931598012,0.110100850097682,0.1263701930714565,0.1378043081106343,0.1479867452292414,0.1579904183420309,0.1667310996563573,0.1792055923536646,0.1911594187193185,0.2019411976165317,0.2111981592067057,0.2206389994816538,0.2289889836531627,0.2376343965719783,0.2450629884850056,0.2531359102953385,0.2591733106633274,0.2657787265639502,0.2718711886668543,0.2767436618381559,0.2822352842186241,0.2871314881844661,0.2897786233137323,0.2932137481184144,0.2966116819213216,0.3004306319394002,0.3040616450124903,0.3012486852396235,0.2973859813599515,0.2930883515986894,0.2899301023811595,0.2874191722041777,0.2830101852988096,0.2785269462975581,0.2792962975130589,0.2788900477012772,0.279120800699363,0.2802865908410655,0.281036861817465,0.2818755484976388,0.2825270549543343,0.2827505437510457,0.2834515244060251,0.2848251669118479,0.2897196261682243,0.2939163232520779,0.2973741362290227,0.301277405327052,0.3054103985220375,0.308880550343965,0.3130035388901438,0.3136237256719184,0.3211472904666745,0.3271268543748107,0.3343307400758029,0.3383727322704782,0.3499228395061728,0.0,2.030115061616061,52.72794241756802,143.9201257043625,201.50593950296368,fqhc5_80Compliance_implementation,28 -100000,95624,47721,454.9380908558521,4960,50.68811177110349,3935,40.627875847067685,1500,15.351794528570236,77.28554750318864,79.71819598869911,63.27381344368565,65.07212402212244,77.0889171823102,79.5232051031143,63.199614300165614,65.0008135814457,0.196630320878441,194.99088558481503,0.0741991435200333,71.31044067673997,243.79762,170.8122032828617,254953.9655316657,178628.59504976118,486.53872,323.7449492626656,508269.0328787752,338026.58980722714,463.40336,226.242920553938,481457.16556513007,234115.41585372528,2770.82492,1304.8142368197236,2861474.493850916,1328523.875034104,885.37914,409.897809426499,909311.5849577512,412352.6115307027,1455.37574,627.9066990130071,1490602.7566301348,629563.7423664938,0.38114,100000,0,1108171,11588.816615075712,0,0.0,0,0.0,41957,438.195432109094,0,0.0,42021,436.3653476114783,1099386,0,39470,0,0,9660,0,0,78,0.805237178950891,0,0.0,0,0.0,0,0.0,0.0496,0.1301359080652778,0.3024193548387097,0.015,0.3579841668275729,0.6420158331724272,23.40745121321582,4.079661141062845,0.3097839898348157,0.2813214739517153,0.2086404066073697,0.2002541296060991,11.439644745015416,6.190164158063814,16.205668954294627,11593.917465258855,45.48566234666932,13.612597735306178,13.971229717523574,9.187561083555256,8.714273810284315,0.5992376111817027,0.8148148148148148,0.7136997538966365,0.6163215590742996,0.1015228426395939,0.760551948051948,0.9121338912133892,0.8777777777777778,0.7681159420289855,0.1390374331550802,0.5257121716611173,0.7408585055643879,0.6449359720605355,0.5651465798045603,0.0898502495840266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307661126874,0.0047469798861942,0.007218860415059,0.0094120038623773,0.0117608757579457,0.0139962717354765,0.0159439361018453,0.0180103792088917,0.0202718597539147,0.0225208156242639,0.0244455386635481,0.0267879161528976,0.0289960988564193,0.0310683214447697,0.0329998244690187,0.0347431242953631,0.0369740932642487,0.0392767756072737,0.0413214538490361,0.0432664726559647,0.0578058851199498,0.0719600117365972,0.0851258340776546,0.0980920976390893,0.1106862569053478,0.1263846821849914,0.1379735401944636,0.1492537313432835,0.1595860799589076,0.1686651194773938,0.1807313415121009,0.1919945358153452,0.2029838384498861,0.2124605539971949,0.2210156112189098,0.2304328523862375,0.2389586290926569,0.2471797414716058,0.2549086446686665,0.261533347851502,0.2675697580178303,0.2734115278363066,0.2785809081429519,0.2825168614838105,0.2871723131196399,0.291032253288256,0.2948549390831799,0.2971637438072314,0.300506850913239,0.303936321875495,0.3011616793872578,0.2980828695114409,0.2947728616892444,0.2915162194170831,0.2896303002419151,0.2857033475238124,0.2826757821772777,0.282830272293072,0.283348116812227,0.2835820895522388,0.2837157979389927,0.2833901242835477,0.2843106511968224,0.2853134394833537,0.286548168704098,0.2879418685836932,0.2881484819467132,0.2937937470835278,0.2986779262130546,0.3013258021495253,0.3054078413699865,0.3088335876256116,0.312000998003992,0.3163234630993536,0.3202705206596257,0.3235567970204842,0.3319752527538856,0.3379324135172965,0.3427495291902072,0.3431226765799256,0.0,1.9783821389634024,54.03320671433514,147.2954343539253,192.1654648894652,fqhc5_80Compliance_implementation,29 -100000,95812,47663,454.6194631152674,4954,50.599089884356864,3924,40.38116311109256,1464,14.904187366926898,77.35864855579545,79.66261809628952,63.35358995694328,65.05376121462417,77.1679869357543,79.47525642172837,63.281899337737954,64.98551151817925,0.1906616200411548,187.3616745611457,0.0716906192053201,68.24969644492285,243.30416,170.42295567148298,253938.6715651484,177871.8124108303,486.54744,323.17196431946,507227.1844862856,336711.5606072651,464.8617,227.26091167293455,481231.5263223813,234208.15916736104,2723.699,1280.6641465291625,2804303.2501148083,1298406.6105270565,873.25368,404.1239541101164,895312.4243309814,405774.7547312994,1418.87578,606.481516738868,1446035.6531540933,604857.095208967,0.37938,100000,0,1105928,11542.666889324928,0,0.0,0,0.0,41929,437.0016281885359,0,0.0,42056,435.2064459566652,1108006,0,39810,0,0,9545,0,0,80,0.8036571619421367,0,0.0,1,0.0104371059992485,0,0.0,0.04954,0.1305814750382202,0.2955187727089221,0.01464,0.3512885099786863,0.6487114900213137,23.33039014342365,3.9853195315604952,0.3037716615698267,0.2981651376146789,0.1967380224260958,0.2013251783893985,11.246453981164574,6.201120445463231,15.716397728898706,11475.105442918915,45.25560645100818,14.433462784638351,13.468364739292475,8.665097149738303,8.68868177733905,0.5846075433231397,0.8085470085470086,0.6862416107382551,0.5764248704663213,0.1075949367088607,0.7549342105263158,0.9241516966067864,0.8579881656804734,0.7202072538860104,0.1413043478260869,0.5081240768094535,0.7219730941704036,0.6182669789227166,0.5284974093264249,0.0973597359735973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002206343744307,0.0044465152082974,0.0064377464845848,0.0085137041208763,0.0107085526182106,0.0129291490768526,0.0151672574664873,0.0172186916650515,0.019389902539689,0.0216350580003682,0.0236500327761389,0.0256120952273496,0.0277909055417428,0.0298012904288051,0.031550294881841,0.0338039515404397,0.0359452440324065,0.0381186373908896,0.0401765775123344,0.042027129725059,0.0560945585044233,0.0705690478928605,0.0842058925258623,0.0963670565486511,0.1087002339452441,0.1242788004311346,0.1362903909761682,0.1474799480884198,0.158551037184921,0.1672473867595819,0.1795200310074181,0.1910000540862134,0.2013005371783997,0.2103806606869394,0.2190114487010127,0.229008056562164,0.2379193357587661,0.246172708968403,0.253993284022326,0.26032825940052,0.2663905503430244,0.271759351343762,0.2762714070988129,0.2801811950243271,0.2843586347674998,0.2882985015772871,0.2916750025007502,0.2948682103550822,0.2982621860483171,0.3017461950357416,0.2988995910460611,0.2955872854453255,0.2932345623480131,0.2903909358242518,0.2878911403287728,0.2837361261660127,0.2788420537279489,0.279705038918476,0.2798730873547925,0.2794303966880208,0.2810815868263473,0.2824731691919191,0.2831491712707182,0.2833749220212102,0.2830514159758493,0.2854207309142931,0.287625703085052,0.2916928096373447,0.2950068231918542,0.2977062948144039,0.3018885014265658,0.3030527485318237,0.3076682316118936,0.3114467891301047,0.3123839584106944,0.3161207599953374,0.3194549583648751,0.3225286893497081,0.323553833379463,0.3296960249415432,0.0,2.1904622190855103,52.99295998647269,146.0169640151084,194.30559745942628,fqhc5_80Compliance_implementation,30 -100000,95868,47713,453.2690783160179,4888,49.72462135436225,3861,39.74214544999374,1445,14.728585137897944,77.41454581429173,79.70108641307797,63.37712166936033,65.06702561001681,77.23135093831914,79.52237216020153,63.308030975232775,65.00197878717273,0.183194875972589,178.71425287644627,0.0690906941275528,65.04682284408148,243.49182,170.59689320577766,253986.54399799724,177949.77803414868,485.1523,323.4429075858466,505536.352067426,336857.1343783605,470.24024,230.12290094063877,487325.70826553175,237551.64588495385,2679.43353,1250.2137487399625,2761853.48604331,1271033.0023990923,874.33082,395.4405595644872,901310.228647724,401779.3524058988,1393.59694,587.9777449937651,1423133.2665748736,586844.5875307616,0.38081,100000,0,1106781,11544.842908999875,0,0.0,0,0.0,41667,434.0864522051154,0,0.0,42425,439.31238786665,1106699,0,39715,0,0,9673,0,0,97,1.0118079025326492,0,0.0,1,0.0104310093044603,0,0.0,0.04888,0.128357973792705,0.2956219312602291,0.01445,0.3592004703115814,0.6407995296884186,23.391459310125683,4.0684472915860255,0.3069153069153069,0.2893032893032893,0.2113442113442113,0.1924371924371924,11.351411822410022,6.264258847186453,15.24999046348401,11511.224898068967,44.19953150677058,13.745362468866688,13.393552887957142,9.109979626393992,7.950636523552762,0.5936285936285937,0.7976723366159355,0.69957805907173,0.5906862745098039,0.1211305518169582,0.7754927163667523,0.9256198347107438,0.8854489164086687,0.7596153846153846,0.0855263157894736,0.5148478099480327,0.6998420221169036,0.6299303944315545,0.5328947368421053,0.1302876480541455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890266740901,0.0046400891545514,0.0070069055031079,0.0090857409700931,0.0113426161195243,0.0135430763438781,0.0158720456397718,0.0177995838263495,0.0200008171937566,0.0222567711316586,0.0246243354809632,0.0265978725804962,0.0287804527192955,0.0310952826984241,0.0333017156054107,0.0354265647593472,0.0374420625724217,0.0394524125352346,0.0415118234475886,0.0434787131133046,0.057626941924721,0.0712180746561886,0.0850522213725264,0.0980355099169475,0.1107987153161691,0.1259544806463537,0.1369568441346581,0.1471801194702493,0.1572708844553504,0.1660686937057544,0.1783336022806734,0.1894022121071239,0.2001629903292404,0.2096895794407841,0.2187839961319956,0.2281573269900979,0.2369310010368239,0.2443620428113939,0.2518227070175637,0.2582698074765927,0.2634810155852564,0.2691849185386036,0.2750091630310124,0.2794816828540976,0.2835356969402622,0.2876690395842057,0.2912055620162309,0.2949206833435021,0.2986390770067463,0.3026050253907538,0.3001653914937676,0.2977449391600516,0.2948930548919306,0.292236982393453,0.2889194952905634,0.2860847941171983,0.2828717270063333,0.2826690623979092,0.2828135097445665,0.2819293357704389,0.2831193002047273,0.2838344757153799,0.284796573875803,0.2854196695864286,0.2872482580891476,0.288005164622337,0.2901770610127439,0.2955151665529433,0.2987080641800375,0.3038949809377825,0.30516537270565,0.3115062761506276,0.3140317303537255,0.3169097945817207,0.3185253456221198,0.3256490860402841,0.3333333333333333,0.3318610720738807,0.3355923014367037,0.3385826771653543,0.0,2.1002226631342675,50.79461710700877,139.88527712165802,198.09142650851567,fqhc5_80Compliance_implementation,31 -100000,95702,47738,453.89856011368624,4929,50.10344611397881,3971,40.82464316315229,1499,15.224342229002527,77.36002699221102,79.73179067614605,63.33690834044432,65.08847319176743,77.16644798855982,79.5417728987555,63.26308135984751,65.01854740149099,0.1935790036511946,190.01777739055115,0.073826980596813,69.92579027644297,243.9965,170.83743924645296,254953.98215293305,178509.37670474473,485.94889,323.4827243415262,507123.2471630687,337362.61195517227,466.44558,227.775793445882,482783.5990888383,234574.5276534848,2770.21189,1310.6258679972632,2852107.448120206,1327119.5742189004,912.2822,419.5924192492681,936241.0294455704,421597.3398101396,1454.322,627.1966935089222,1479405.5296650017,622372.5519235564,0.3798,100000,0,1109075,11588.817370587867,0,0.0,0,0.0,41794,436.0201458694698,0,0.0,42237,436.77248124386114,1104122,0,39653,0,0,9664,0,0,91,0.9508683204112768,0,0.0,1,0.0104491024221019,0,0.0,0.04929,0.129778830963665,0.3041184824508013,0.01499,0.3548951048951049,0.6451048951048951,23.29094915500185,4.046927905883322,0.3099974817426341,0.2848149080836061,0.1999496348526819,0.2052379753210778,11.817190637223272,6.497533971173596,16.125742594884063,11529.369320845117,45.65723049500432,14.0158152236092,13.951808925038607,8.75548292902401,8.934123417332506,0.5832284059430873,0.8134394341290893,0.6953696181965882,0.5717884130982368,0.105521472392638,0.748780487804878,0.91701244813278,0.8954802259887006,0.7157894736842105,0.1274509803921568,0.5089383436701933,0.736517719568567,0.6145952109464082,0.5264900662251656,0.0981996726677577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814901094894,0.0047846404930612,0.0070121672772292,0.009396777667161,0.011819032507425,0.013920003258523,0.016177370030581,0.018279613790851,0.0206286736519294,0.0227584512377403,0.0252414443601468,0.0274834709046856,0.0292974373740282,0.0314971984179301,0.0335224927775484,0.0357936745897995,0.0379475385380407,0.0401282942879978,0.042052818256519,0.0440155888543859,0.0594962090356538,0.0728452561620179,0.0858869318003,0.0984465222924576,0.1108592514496573,0.1265725098843478,0.1376303478417685,0.1481934762943649,0.1577896209588704,0.1669509251810136,0.179141619804796,0.1908801696712619,0.2020890396069736,0.2115723077932157,0.2198724293412515,0.2291752040669406,0.2382020215543209,0.2457689063817824,0.2530411418594896,0.2601831711505438,0.26567233206151,0.2716055153073148,0.2763150116456414,0.280772315390048,0.2837513048967007,0.2875486285517309,0.2900091292222653,0.2930355464085169,0.2959744475048816,0.2995782814971007,0.2974238245779242,0.2949063505596964,0.2924352944489818,0.2895687090158015,0.2866071826239292,0.2834189445361707,0.2797051581539239,0.2798430603236881,0.2814494579000221,0.2818170508468551,0.2820469767355086,0.2824552087635455,0.2828343770154159,0.28496581120682,0.2862293751044676,0.2878038677608926,0.287915262397689,0.2925310554147501,0.2967980725583994,0.3017261857629266,0.3057246706042708,0.3100803892532262,0.3151923196808179,0.3184353331323485,0.3227807090622975,0.3252801120448179,0.3331829121540313,0.3363926576217079,0.3322466720999728,0.3339644074214313,0.0,2.559311842096216,53.12460733731952,144.39387540141377,199.9835405466928,fqhc5_80Compliance_implementation,32 -100000,95751,48231,459.4834518699544,4835,49.19008678760535,3835,39.46695073680692,1460,14.87190734300425,77.33346816806463,79.69546248318211,63.32120940122799,65.07006344420645,77.14668229106776,79.51200399914777,63.25127065160073,65.00363248761553,0.1867858769968648,183.45848403434672,0.0699387496272621,66.43095659092069,243.86692,170.8171484858975,254688.64032751616,178397.24753360017,485.5389,323.1500606044568,506500.5065221251,336905.5786409091,469.98491,229.32232151117296,486737.6215392007,236351.09055687216,2690.61847,1260.5048611055947,2771914.8938392284,1278339.2560971626,873.67638,395.04992046231337,897415.6510114777,397557.43858679984,1407.69476,596.429889871549,1436498.4804336247,595039.0641906719,0.38266,100000,0,1108486,11576.756378523462,0,0.0,0,0.0,41738,435.3061586824159,0,0.0,42443,439.180791845516,1105801,0,39599,0,0,9689,0,0,88,0.9190504537811616,0,0.0,0,0.0,0,0.0,0.04835,0.1263523754769246,0.3019648397104447,0.0146,0.3705392545598731,0.6294607454401269,23.083779763803616,4.089568495607539,0.3170795306388527,0.2829204693611473,0.2041720990873533,0.1958279009126466,11.4112593693188,6.300113206849996,15.515626505046166,11606.108687947944,44.35152806660123,13.54866335384897,13.83822211465451,8.797900099925524,8.166742498172221,0.603129074315515,0.8055299539170507,0.7236842105263158,0.5951468710089399,0.1238348868175765,0.7726879861711322,0.90625,0.8967551622418879,0.678391959798995,0.1438848920863309,0.5298730395817774,0.7256198347107438,0.6567844925883695,0.5667808219178082,0.119281045751634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784284918182,0.0044619316107573,0.0068712827071026,0.0091954723729399,0.0115640446695551,0.0139803887627406,0.0157811034539004,0.0179931007736114,0.0200932095989534,0.0221407879786678,0.0245327701629025,0.0266413428468764,0.0288144133767983,0.0309059638932657,0.0330148773290964,0.0349974160206718,0.0370274495998011,0.0391910681304086,0.0412833068230255,0.0433161485184606,0.0575254955585014,0.0714495028780743,0.0848949698864709,0.0971982667956754,0.1097261328524576,0.1256780906658771,0.137274666044202,0.1482778440054496,0.1588251001335113,0.1675603792201107,0.1800945825119305,0.1917142733489137,0.2024665310872095,0.2109632189690811,0.2201201135138702,0.2296100272383019,0.2392401107241718,0.2477187060478199,0.2556756940741329,0.2624705262916924,0.2686905353695333,0.2746846836316029,0.2795625184747266,0.283928742457619,0.2882348661233993,0.2918470241023118,0.2948301698301698,0.2987890020056361,0.3017314898565706,0.3053246017419261,0.3019083610151028,0.2990514365725424,0.2971788243228054,0.2946512265116883,0.2922207890406084,0.2882359239487893,0.283788269136544,0.2834324470437902,0.2827766126144559,0.2838179744850688,0.2845882287016456,0.2866484154964253,0.2863336042852081,0.2870493991989319,0.2884836576248442,0.2909871244635193,0.2892009740075882,0.2935380958338546,0.2974975534740668,0.3016029301721082,0.3048934633441675,0.3089902451885051,0.3109984984984985,0.3133434420015163,0.3182924545965175,0.3225270157938487,0.320561746298275,0.3225937183383991,0.3259300388672959,0.3315528424265547,0.0,2.2768312968357423,50.27125602329223,148.8121892753906,189.17121699701912,fqhc5_80Compliance_implementation,33 -100000,95809,47781,455.5417549499525,4861,49.61955557411099,3911,40.351115239695645,1470,15.02990324499786,77.34149214859087,79.68047947546705,63.33904717832892,65.07240939875992,77.1589116031206,79.49982721486349,63.27117847180163,65.00713662824634,0.1825805454702731,180.65226060356565,0.0678687065272853,65.27277051357316,243.95602,170.86500249532145,254627.4567107474,178339.19829590272,487.66041,324.8456647245522,508538.8429061988,338602.04649307707,467.42558,228.1915558140269,485052.83428487927,235975.02640925825,2715.91136,1269.7716894976488,2803271.1853792444,1293872.621045673,897.09205,405.193249341936,925112.035403772,411695.96733285615,1425.14722,600.885397824037,1458302.7481760588,602766.783630308,0.38153,100000,0,1108891,11573.975305033977,0,0.0,0,0.0,41979,437.6728699808995,0,0.0,42361,439.3532966631527,1105224,0,39680,0,0,9574,0,0,76,0.7828074606769719,0,0.0,1,0.0104374328090262,0,0.0,0.04861,0.1274080675176264,0.3024069121579922,0.0147,0.3585389930898321,0.6414610069101678,23.057194659043976,4.031890029325572,0.3150089491178727,0.2830478138583482,0.2037841984147277,0.1981590386090514,11.562616680313807,6.342901598624858,15.71764859988719,11519.428745240124,44.953908621525066,13.62341019382237,14.044530910691115,8.937630718200325,8.348336798811259,0.5975453848120685,0.8030713640469738,0.7069805194805194,0.6135508155583438,0.1135483870967742,0.7846808510638298,0.9090909090909092,0.8719346049046321,0.784688995215311,0.1313868613138686,0.5171783625730995,0.7271317829457364,0.6369942196531792,0.5527210884353742,0.109717868338558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019956035941124,0.0044605293837373,0.0067075955147394,0.0087794171442507,0.0108561835478455,0.0130384736836744,0.015196638381201,0.0173901500066374,0.019541275960447,0.0215853121576096,0.0237775430897476,0.02589800989916,0.0280389212318199,0.0301837811109279,0.0324095092657559,0.0343676355066771,0.0365304368534951,0.0385369446375037,0.0405037511170223,0.0424109931292941,0.0566754309085597,0.0705547771899374,0.084356792555644,0.0971911352101131,0.109379281273053,0.1249841457743203,0.1364575935210998,0.1478244226106928,0.157352172196314,0.1670560246902996,0.1789477082683139,0.1897854401988866,0.2006082989354768,0.2102117523655514,0.2184504441122153,0.2277808522412839,0.2372265620647002,0.2448956684738076,0.2530676930043015,0.2595280269698874,0.265032430810424,0.2712548717589675,0.2765927290766069,0.2812242115460514,0.2856831183942597,0.2900600039346842,0.2940970878633929,0.2981430274740607,0.3014453477868112,0.3035305870291017,0.3020623539837267,0.2990931167423546,0.2951766590774939,0.2924259024333986,0.2888832871187295,0.2856401093446954,0.2819257317053908,0.2825830548456851,0.2822532521780642,0.2835533700358116,0.2835368704531428,0.2846939983427376,0.2856007695203044,0.2861065226126166,0.2877350560772352,0.2889895125822989,0.2906605012273791,0.2953398915373944,0.298533703716727,0.2999166898083865,0.3027061620040226,0.3064687732737525,0.3091689820661783,0.3146403125718225,0.3186533383628819,0.3232395202470015,0.3227603280210429,0.3231494771375846,0.3297192104531554,0.3407969639468691,0.0,1.813318461580271,51.325941493263706,144.50523814286524,201.3682935098057,fqhc5_80Compliance_implementation,34 -100000,95713,47765,454.60909176391925,4921,50.34843751632485,3877,40.03635869735564,1489,15.274832049982765,77.3419109081298,79.71166612761274,63.33255108723839,65.0813009384104,77.15773780009008,79.52832069814932,63.26374980870314,65.01453732162504,0.1841731080397295,183.34542946342933,0.0688012785352469,66.76361678535159,243.06898,170.2694931370754,253956.07702193016,177895.88993874958,485.11891,321.958746046244,506398.76505803806,335930.6322508374,462.53375,224.931418366838,480301.3592719903,232720.0898162085,2771.09084,1282.765413006072,2860785.849362156,1305798.097443474,877.45778,393.1109984989324,904366.5959691996,398325.84758489655,1447.10676,606.8342941210742,1485175.242652513,611472.1536323598,0.38102,100000,0,1104859,11543.458046451373,0,0.0,0,0.0,41749,435.7088378799119,0,0.0,41753,433.2431331167135,1111547,0,39873,0,0,9621,0,0,91,0.9507590400468068,0,0.0,0,0.0,0,0.0,0.04921,0.1291533252847619,0.3025807762649868,0.01489,0.3616604660270217,0.6383395339729783,23.591783235439472,4.131280122958222,0.3136445705442352,0.2667010575187,0.2127933969564096,0.2068609749806551,11.261739965313636,6.069610154348701,15.802580765925336,11536.159078699968,44.35094055163935,12.776512524854375,13.773015389810704,9.101093071464282,8.700319565509979,0.5821511477946866,0.8133462282398453,0.6998355263157895,0.5721212121212121,0.1159600997506234,0.7553571428571428,0.9039812646370023,0.8757763975155279,0.7345971563981043,0.14375,0.5117881755531375,0.7495881383855024,0.6364653243847874,0.5162866449511401,0.1090342679127725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0045403871490828,0.0068878068573747,0.0091106687251157,0.0112661162402895,0.0135008552577991,0.0157802990917153,0.0180758553115048,0.0204108748977923,0.02244465596119,0.0246130189646335,0.0267894731437842,0.0287935502447451,0.0310413747630429,0.0330206688749239,0.0351464781161487,0.0373132009817628,0.0394765517169809,0.0414140889004419,0.0435593626577463,0.0587565665110547,0.0718913883160792,0.0859004490703823,0.098386519973915,0.1101008396270199,0.1252287996614294,0.1361432617943794,0.1471868845478256,0.1572728826596017,0.166747117189595,0.1787910442939143,0.1900299728404947,0.2012484231589021,0.2106108973237712,0.2190358902181562,0.2291526023971049,0.2380936454849498,0.2456372973155192,0.2532994693636899,0.2596126345654437,0.2653807012674623,0.2706929627550065,0.2758861388481378,0.2804249916151597,0.284524315463542,0.2886172349628461,0.2924521216672925,0.2965091149474969,0.3003777197112772,0.3030817634901201,0.3001572770899706,0.2971923372488747,0.2946114004182867,0.2912864503871729,0.2893447597057561,0.2857317147562984,0.2820205776230167,0.2813113145846959,0.2807919511074037,0.2810636669455173,0.2831108206516665,0.2845920617420066,0.2847971560016729,0.2854816037841094,0.287871886462254,0.2887117297255187,0.2907138596142374,0.2960167846182752,0.3003256416541195,0.3052727488808778,0.3086123318080913,0.3104633939906898,0.313071813510465,0.316280834914611,0.320859125867567,0.3211290894059289,0.3193979933110368,0.3253208392748014,0.3369354391798282,0.3321865443425076,0.0,1.811672079775339,49.17938391560612,147.45350928337535,198.17833314169624,fqhc5_80Compliance_implementation,35 -100000,95714,47864,456.5998704473745,4854,49.5329836805483,3833,39.53444637148171,1494,15.27467246170884,77.33810060160408,79.72071783526815,63.31256206328344,65.07487502121069,77.14863233929582,79.53414386922931,63.24183938711183,65.00758912180362,0.1894682623082673,186.5739660388357,0.0707226761716057,67.28589940706797,242.12782,169.66722909445434,252970.11931378895,177264.79835181305,486.67487,323.6817750893708,507946.3610339136,337654.55950996804,464.61497,226.2189195672236,482402.5220970809,234044.23586233336,2701.51281,1257.597939337964,2789572.392753412,1281000.1142340344,893.18825,399.162428614437,921565.047955367,405417.1266632228,1452.4095,613.9738975514202,1486800.154627327,614705.6974118245,0.37954,100000,0,1100581,11498.641786990407,0,0.0,0,0.0,41845,436.6445869987672,0,0.0,41964,435.3804041206093,1110968,0,39905,0,0,9787,0,0,94,0.9820924838581608,0,0.0,1,0.0104477923814697,0,0.0,0.04854,0.1278916583232333,0.30778739184178,0.01494,0.3673065505640214,0.6326934494359786,23.30723446016767,4.13233376531234,0.3034176884946517,0.2812418471171406,0.2019306026611009,0.2134098617271067,11.14615115699112,5.982762069452677,16.012218746829625,11484.905625734684,44.01457098238935,13.263554216348748,13.23135252230756,8.675558216438311,8.844106027294727,0.5744847378032872,0.8014842300556586,0.7007738607050731,0.5594315245478036,0.1100244498777506,0.7575236457437661,0.9336283185840708,0.8542857142857143,0.696969696969697,0.1349693251533742,0.4947565543071161,0.7060702875399361,0.6346863468634686,0.5121527777777778,0.1038167938931297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024933611724878,0.004828565631974,0.0069851970678416,0.0091570624225054,0.0114060703493045,0.0135466851363326,0.0155131264916467,0.017720898403587,0.0197985376080175,0.0219833102953975,0.0241801513566726,0.0259585566713901,0.0280596769384208,0.0300190515421451,0.0320417595114302,0.0342261904761904,0.0362486151807253,0.0383661697116831,0.0404104462095063,0.0426063857492577,0.0574272108275199,0.0707003035695593,0.0838999412406614,0.0964060708688747,0.1086679111167357,0.1241153882771095,0.1354675098680022,0.146539882657353,0.1569352425731994,0.1662626045912894,0.1788222873394811,0.1901973306777221,0.200402677259618,0.2095600704587477,0.2184931280742102,0.2280211865345832,0.236098083880477,0.2447955348502239,0.2521203038250622,0.2592337928742508,0.265426381717567,0.2707599396074484,0.2765524181613686,0.2807227760736196,0.2847495506000097,0.2886280119367647,0.2920877001865695,0.2961529648394735,0.2989371755537431,0.301532253810855,0.2987267911641726,0.296612382326668,0.2937701320805143,0.2905673441714871,0.2878542930453999,0.2845237549123048,0.2811236735725114,0.2811691924977906,0.2815497589150325,0.2808522757614055,0.2819966746996954,0.2821234548460751,0.2833639552363454,0.2846661611881718,0.286972336555949,0.287990291011439,0.2894551200654646,0.2931587969456132,0.2973226377747682,0.3014337198370417,0.3041375604513702,0.3084068256536033,0.3126776226368467,0.3169150521609538,0.3183072677092916,0.3212832732767639,0.3260286225402504,0.3245424129108443,0.3279038718291054,0.3381913303437967,0.0,1.9810564394663583,50.81266276053605,141.4948543870686,193.66740557490988,fqhc5_80Compliance_implementation,36 -100000,95666,47576,453.32720088641736,4840,49.59964877804027,3823,39.543829573725255,1411,14.498358873581,77.27782633283482,79.68833727656391,63.2892740309558,65.07204811367792,77.09892633757075,79.50928187813598,63.22178897119867,65.00593680004249,0.178899995264075,179.05539842793416,0.067485059757125,66.11131363543166,243.925,170.82568928907662,254975.6444295779,178564.68263445384,485.82322,323.25214539586494,507430.5813977798,337494.4759850573,464.65185,226.12065928741623,482813.0056655447,234096.28066273587,2653.90528,1244.221681712499,2749638.53406644,1276091.403123889,880.87771,400.7461084023285,912316.8105701084,410433.5902016685,1369.31548,584.5662641157116,1409050.4463445735,592669.6074167447,0.38043,100000,0,1108750,11589.802019526269,0,0.0,0,0.0,41795,436.4664562122384,0,0.0,42028,436.4246440741748,1102566,0,39664,0,0,9615,0,0,100,1.0453034515919972,0,0.0,0,0.0,0,0.0,0.0484,0.127224456536025,0.2915289256198347,0.01411,0.3524752475247524,0.6475247524752475,23.104979653356448,4.001917070447738,0.3057808004185194,0.2893015956055453,0.2058592728223908,0.1990583311535443,11.332379348749296,6.248632960844362,15.12686140319517,11512.587158382164,44.1668920909698,13.706631734460174,13.305632164312383,8.794198535912074,8.360429656285163,0.5916819251896417,0.8137432188065099,0.688622754491018,0.579415501905972,0.1327201051248357,0.7588898525585429,0.9216101694915254,0.8616352201257862,0.7362637362637363,0.1767955801104972,0.5194756554307116,0.7334384858044164,0.6239717978848414,0.5322314049586777,0.1189655172413793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0044418302774622,0.0067508578157675,0.0089636879173145,0.0113535785136578,0.013661230020069,0.0159408465068842,0.0179456014380994,0.0201714367545672,0.0224439413650751,0.0246666666666666,0.0267782856555903,0.0287595822400576,0.0310635184020942,0.033140273174962,0.0351860662350288,0.0371893975504113,0.0391236631710102,0.0414459787098989,0.0431858702338626,0.0576390557895066,0.0721227353649596,0.0858216396057893,0.098646828570226,0.1110091162319574,0.1259922524925382,0.1378695208970438,0.1486129458388375,0.1582696112507352,0.1674002662429682,0.1788404141839692,0.1898235357800151,0.2005267568538249,0.2101318452869413,0.2189089227924179,0.2281722288702743,0.2364643104333653,0.2443884382137512,0.2526069738678528,0.2590409704737926,0.2647106425284964,0.2697561374604176,0.2752810981449295,0.2797527788424683,0.2840264707668022,0.2882759640625578,0.2922203037809974,0.2955675675675676,0.2993123275962547,0.3022706893823514,0.2992377309702095,0.296717676065068,0.2937402168854794,0.2902106495872309,0.2883414605137964,0.2848783775503952,0.2817211453186368,0.2814567905288911,0.2817815424550857,0.2824954508152852,0.2831974264980923,0.2826022612916593,0.283314529271656,0.2835069908273221,0.2858784382256481,0.2863954392329619,0.2870399273532166,0.2911555234838264,0.2961518186610437,0.3011823520076178,0.3038325311052584,0.3079968329374505,0.313484128967758,0.3176363360170135,0.319248387398336,0.3212889468072503,0.3227335269836416,0.3199755899104963,0.3130170987313844,0.3079545454545455,0.0,1.6629084654610462,50.62886967361227,147.51851270298505,189.6974465779961,fqhc5_80Compliance_implementation,37 -100000,95818,47752,455.6242042205014,4974,50.86726919785426,3949,40.62910935314868,1483,15.111983134692856,77.39792083527668,79.70341492479203,63.37134666233783,65.0723268581715,77.2114879594691,79.51995209832535,63.30143002157846,65.00627355272499,0.1864328758075828,183.46282646668044,0.0699166407593665,66.05330544650201,244.02246,170.85105601073136,254672.8798346866,178307.89205653567,487.43702,323.6940792911953,508163.6122649189,337274.0709378148,462.87332,225.14947108200732,479639.6397336617,232328.7192289637,2748.06133,1286.9365497915092,2828729.998538897,1303834.0706250493,902.40228,410.3739706070938,928129.307645745,414626.3025810321,1436.86114,612.1332505007802,1464895.51023816,608102.519276174,0.3814,100000,0,1109193,11576.039992485754,0,0.0,0,0.0,41964,437.36041244860047,0,0.0,41949,434.3129683358033,1108216,0,39767,0,0,9572,0,0,84,0.876662005051243,0,0.0,2,0.0208729048821724,0,0.0,0.04974,0.1304142632406922,0.2981503819863289,0.01483,0.3628472222222222,0.6371527777777778,23.201730819076744,3.964405619590587,0.305646999240314,0.2884274499873385,0.2079007343631299,0.1980248164092175,11.305635218550137,6.377895610246727,15.938902852805668,11556.989887347876,45.66159740340903,14.09885843008555,13.860589136501986,9.214401304861724,8.487748531959772,0.5917953912382882,0.8068481123792801,0.6909693454846727,0.587088915956151,0.1304347826086956,0.769814502529511,0.9096509240246408,0.8600583090379009,0.7741935483870968,0.1823529411764705,0.5153818313427434,0.7300613496932515,0.6238425925925926,0.5322834645669291,0.1160130718954248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766420992953,0.0044787159663184,0.0066940514224859,0.0087629337042941,0.0109283506831489,0.0129551606928415,0.0150598112938395,0.0169956643713338,0.0192290008480377,0.0217309010548285,0.0236975564776394,0.0257609799636822,0.0279144791591752,0.030131206586056,0.0319415384298244,0.0340099531253226,0.0360120833419544,0.0380900064260691,0.040124193933604,0.0419216518879313,0.0573330134256892,0.0715234558861984,0.0847061290829969,0.0978730562593967,0.1103954969009571,0.1263875673961306,0.1379807641326363,0.1485987376398335,0.1589641689635279,0.1683076989081236,0.180449508383859,0.1918683886040625,0.2029264368565806,0.2122351706495835,0.2206975414522584,0.231008489866398,0.2394149517290584,0.2472041451708984,0.2538419692642459,0.2603618646781646,0.2666350853273868,0.2720170952147411,0.2774908708446094,0.2812739188672024,0.2859894602943849,0.289933628318584,0.2925773453093812,0.2958534111082931,0.2993427424040907,0.3034979559107699,0.3013911598359557,0.2982944037262826,0.2964105872946853,0.2932894206983835,0.2902209601561806,0.2862580890749905,0.2827010861010546,0.2825561650992685,0.2822055649040504,0.2830409980274031,0.2824000745364763,0.2832628992628992,0.2835503698301906,0.2850841038208755,0.2866492460384053,0.2894975983383097,0.2905990206126865,0.2955359949701351,0.3003884786336751,0.3049166073828155,0.3102241214711096,0.3154989384288747,0.3190056639395846,0.321057027868479,0.3255639097744361,0.3271954674220963,0.3321156773211567,0.3376649340263894,0.3362115488397194,0.3360902255639098,0.0,2.307922293725253,51.59493667625178,154.58667561095908,193.7081101103757,fqhc5_80Compliance_implementation,38 -100000,95552,47494,453.9831714668453,5015,51.27051239115874,4007,41.3282819825854,1500,15.290103817816476,77.19945181010942,79.67007833213682,63.224607941291474,65.05375104801787,77.0060943963508,79.48181883118312,63.151535083687,64.98551407564983,0.1933574137586191,188.2595009537056,0.0730728576044725,68.23697236804094,242.17666,169.72906686037493,253450.12139986604,177630.0515534734,483.27118,321.641609717959,505180.3101975888,336026.79139940446,466.33897,227.87879256540745,484691.52921969193,235868.31317846107,2792.63986,1309.31034423262,2882400.117213664,1330098.7635109904,921.67387,420.18488383841327,949522.207803081,424737.5686821203,1458.18106,619.5821210202021,1489053.6043201608,616190.8959144203,0.37771,100000,0,1100803,11520.460063630271,0,0.0,0,0.0,41622,434.9568821165439,0,0.0,42272,438.98610180843934,1105361,0,39652,0,0,9567,0,0,71,0.7430509042196919,0,0.0,0,0.0,0,0.0,0.05015,0.1327738211855656,0.2991026919242273,0.015,0.367117546199276,0.6328824538007239,23.04069925883607,3.957017585389192,0.3107062640379336,0.2874968804591964,0.1976541053156975,0.2041427501871724,11.415139577994266,6.294943071649713,15.9549817941553,11453.35891171888,46.2469231511885,14.337959975827198,14.301105278979003,8.800326489451932,8.807531406930366,0.5924631894185176,0.8020833333333334,0.7092369477911646,0.6123737373737373,0.1002444987775061,0.7637860082304527,0.9227799227799228,0.8720238095238095,0.7172774869109948,0.1176470588235294,0.5179083094555874,0.7034700315457413,0.6490649064906491,0.5790349417637272,0.095679012345679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024024084905373,0.0044641951259105,0.0067633438947111,0.0088254433056775,0.0112289774809626,0.0134967073742583,0.0156248405368168,0.0178111587982832,0.0200573065902578,0.0222793838838274,0.0244721147233029,0.0263950726455739,0.0284037075180226,0.03023488513632,0.0320363767891283,0.034367106952093,0.0362680328973978,0.0380801928953002,0.0401870813845689,0.0422704305340961,0.0563720618847871,0.0704570955192265,0.0846727144674186,0.0973972602739726,0.1098192580065532,0.1250185534657874,0.1362538696396847,0.1471244250450892,0.1569547563183664,0.165834982362557,0.1782169663588746,0.1895356030431621,0.2005127365952108,0.2089768339768339,0.2178471317897896,0.2269935243088338,0.2350782176666741,0.2439406932659324,0.2510667834913121,0.2573591059963936,0.2632525020584722,0.2687576947880635,0.2741969919817811,0.2790206179377259,0.2842394877163935,0.2879658106989785,0.2923642661713396,0.2947776417788658,0.2980095500077853,0.3010813812067051,0.2986657312844866,0.2954917976336414,0.2932307518881749,0.2904195511106615,0.2878513011152416,0.2832623287461305,0.2791246377729569,0.2797135018809653,0.280242245906968,0.2803332320288896,0.2812382739212007,0.281972661272774,0.2827209741759395,0.2846308724832215,0.2862061493270411,0.2874856426856009,0.2885586330832644,0.2929327844640668,0.2963977248788708,0.2986006798956439,0.3047206426572795,0.3049813266003892,0.3093977704427975,0.3107301970852525,0.3159899656229675,0.3185934376102552,0.3176683235427022,0.3220372572334522,0.3207138994050838,0.3185773741959894,0.0,2.3381402650785605,52.90453571495508,150.162422928554,202.32530523379825,fqhc5_80Compliance_implementation,39 -100000,95682,47834,455.4984218557304,5028,51.50394013503062,4017,41.39754603791727,1500,15.30068351414059,77.33990302576841,79.72890240391389,63.32261558699434,65.08813215058599,77.14336901891924,79.5360590686968,63.24800029044319,65.01744058620164,0.1965340068491627,192.8433352170913,0.0746152965511512,70.69156438434732,243.09736,170.28348614318307,254068.01697288937,177968.15089900198,485.60143,323.10013489917225,506926.7782864071,337092.0182470812,463.71174,226.1932766912337,480973.9240400493,233589.74252444293,2794.25273,1298.3607730588633,2882409.8994586235,1319010.3499705936,915.43377,419.1309349438859,941711.7430655712,423011.4284231993,1461.26946,630.6488640362768,1492853.2639367906,629186.5833326309,0.38164,100000,0,1104988,11548.546226040426,0,0.0,0,0.0,41693,435.1393156497565,0,0.0,42029,435.5364645387848,1109268,0,39818,0,0,9820,0,0,77,0.8047490646098534,0,0.0,1,0.0104512865533747,0,0.0,0.05028,0.1317471963106592,0.2983293556085918,0.015,0.3592380952380952,0.6407619047619048,23.462212659072733,3.9857686798125513,0.3134179736121483,0.2815533980582524,0.2046303211351755,0.2003983071944237,11.022375269818276,5.958557889729184,16.194358432793692,11618.76595214981,45.87659160964865,13.86517966931562,14.165318444833767,8.986433382373379,8.85966011312589,0.5758028379387603,0.8099027409372237,0.6783161239078633,0.5523114355231143,0.1105590062111801,0.7448630136986302,0.9492273730684326,0.8383233532934131,0.6683417085427136,0.1483516483516483,0.5064935064935064,0.7168141592920354,0.6205405405405405,0.5152487961476726,0.0995184590690208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0046829861639045,0.0070623332081866,0.0093446552634786,0.0117751136328971,0.0140780553350027,0.0162575936722795,0.0184126724912223,0.0205777723258096,0.0225388441933304,0.0246655389820083,0.0269457389804758,0.029285949325436,0.0311579424427826,0.033067404250049,0.0351327040188587,0.0372960372960372,0.0394108610811259,0.0414326134897848,0.0434166223639907,0.0578397576517288,0.071870517907432,0.0851990180238779,0.098024364072461,0.1101769117972846,0.1260248177807868,0.1379420096120182,0.1488770622671633,0.158830691673431,0.1681247989707301,0.1802918528889128,0.1913222246267041,0.2034384888917887,0.2128113178667483,0.221652377755522,0.2309191799483868,0.2388459350001673,0.2466782921752826,0.2533862733976177,0.2612370165935664,0.2671493505742473,0.2730142030510257,0.2780360290029925,0.2824519806485606,0.2873075009404997,0.2918657341279614,0.295509101820364,0.2998119106321328,0.3039966866846137,0.3059666059982591,0.3022125918548626,0.2995270047299527,0.2965575501583949,0.293691038587671,0.2914860129476748,0.2876306300800587,0.2841468805253852,0.2843414913644921,0.2831096824667925,0.2831489014014458,0.2844519015659955,0.2857339548789362,0.2877793747005769,0.2884508297137766,0.2893765872825722,0.2897387962818715,0.2911924157702024,0.2968093775465429,0.3004333845938767,0.3042827901117934,0.306935607598935,0.3082235108065366,0.3124687968047928,0.3168152288865387,0.3241834930678329,0.3280809031044214,0.3310491853205421,0.3279853777416734,0.3305578684429642,0.3363949483352468,0.0,2.3155658681828406,50.5434273975016,150.0282255746078,207.86518786649572,fqhc5_80Compliance_implementation,40 -100000,95789,47853,455.7934627149255,4928,50.22497363997954,3892,40.09854993788431,1472,14.991282923926546,77.331780499572,79.67276365820062,63.32970022966426,65.0627216870778,77.14375068965673,79.48752502515968,63.25811241425709,64.99449949728755,0.1880298099152781,185.2386330409388,0.0715878154071703,68.22218979024797,243.96152,170.9744189278545,254686.13306329536,178490.4573212334,486.53176,324.13774466701744,507389.05302278965,337857.7659762583,465.99948,226.91544809044808,483286.1393270626,234418.95565767755,2731.68202,1281.4926141057192,2815595.423274071,1301790.3234999203,894.11865,414.7724675757858,921704.4128240194,421333.7478642786,1444.31066,619.8742274082891,1472922.1726920628,618516.6812662415,0.38163,100000,0,1108916,11576.64241196797,0,0.0,0,0.0,41976,437.6598565597303,0,0.0,42143,436.7098518619048,1102768,0,39582,0,0,9522,0,0,84,0.8769274133773188,0,0.0,0,0.0,0,0.0,0.04928,0.1291303094620444,0.2987012987012987,0.01472,0.352211016291699,0.647788983708301,23.199421447599303,4.0720594945110085,0.3057553956834532,0.2859712230215827,0.197327852004111,0.210945529290853,11.325866498322704,6.036721608039591,15.875668839399184,11492.67181196629,44.76634707987625,13.70921445180592,13.515508858021796,8.515140580308344,9.02648318974019,0.5739979445015416,0.8086253369272237,0.7025210084033613,0.546875,0.0950060901339829,0.7523245984784447,0.9337606837606838,0.8550295857988166,0.6923076923076923,0.1593406593406593,0.4961240310077519,0.7178294573643411,0.642018779342723,0.4973821989528796,0.0766823161189358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486705495062,0.0045821337334252,0.0070017352126396,0.0092445853143159,0.0116145436053902,0.0140530962637094,0.0161803389001039,0.0182633018906447,0.0205168571486986,0.0227875313507703,0.0253823758559888,0.027178544659267,0.0291404892394064,0.0311193061249716,0.0330677455311068,0.0350253282332265,0.0368387257135755,0.0389151065705543,0.0407253455263431,0.0427742896115119,0.0568396447913514,0.0711289630861602,0.084512652787387,0.0971365523038932,0.1093198461619514,0.1247846991070956,0.1367524085084735,0.1471135544378635,0.1559648692200155,0.165147148627077,0.1773943555852151,0.1882855597620335,0.1991039290102983,0.2089526121810645,0.2183180737740998,0.2280381078985266,0.2378875266346121,0.2457183982367559,0.253965554383936,0.2607366878805915,0.265609285227102,0.2708988278191359,0.2769327214231643,0.2806210465784934,0.2850638628527026,0.289194784709043,0.2918465677992616,0.2957529449219994,0.2996152301493736,0.3018885354941734,0.2991750884794983,0.2963237718430597,0.2921713441654357,0.2889652583244289,0.2866346039662747,0.2837182253646144,0.2796177033719955,0.2793085350652758,0.2792425122092825,0.2790908928984913,0.2815971572844585,0.2827397368213695,0.283617354939885,0.2853225123185659,0.2850934063295394,0.2860560047840669,0.2868703503890056,0.2911756431496358,0.2963569239342435,0.2996055226824458,0.302876557191393,0.3045363223009411,0.3065835850956697,0.312310491206792,0.315504020946325,0.3223529411764705,0.3222272934732998,0.3233652312599681,0.3269074124355145,0.3292212798766384,0.0,2.067033932178509,51.621611517185,144.8388941630278,195.6815466475873,fqhc5_80Compliance_implementation,41 -100000,95688,47442,453.0975670930524,4963,50.61240698938216,3898,40.14087450882033,1450,14.672686230248306,77.34192318165195,79.71721947842633,63.32298576779221,65.07494677847212,77.15052158527634,79.5323447455066,63.25020051276276,65.00766996028584,0.1914015963756128,184.87473291972375,0.0727852550294443,67.27681818628639,243.38358,170.4924480148717,254351.20391271636,178175.36996788697,482.28204,320.1731070277625,503422.53992141125,334008.7020047479,456.32049,222.0547536620608,474087.4090795084,229792.49214382836,2704.9407,1266.3998259994714,2783131.6675027176,1279794.329039776,893.13501,410.1256718833165,915511.49569434,410782.3643816769,1405.75396,607.3227252689676,1424180.5451049244,595692.1205671551,0.38008,100000,0,1106289,11561.418359668924,0,0.0,0,0.0,41553,433.62804113368446,0,0.0,41284,428.67444193629296,1109642,0,39745,0,0,9443,0,0,73,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.04963,0.1305777731003999,0.2921619987910538,0.0145,0.3565351894818252,0.6434648105181748,23.52748201317125,3.984760403255566,0.3240123140071831,0.2739866598255515,0.2083119548486403,0.1936890713186249,11.297505144803138,6.268309360677517,15.452024161936995,11444.72869675756,44.60109983203584,13.111361705692085,14.285275750332604,8.926615391818238,8.27784698419291,0.5726013340174448,0.7827715355805244,0.669833729216152,0.5603448275862069,0.1258278145695364,0.7568042142230026,0.9172413793103448,0.8301369863013699,0.7514450867052023,0.180722891566265,0.4965567234505255,0.6903633491311216,0.6046770601336303,0.5086071987480438,0.1103565365025466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022680558508753,0.0046320227850923,0.0069184495369102,0.0092225811038657,0.011278004332218,0.0134898495245464,0.0158738250107048,0.0183492796095289,0.0205018610168105,0.0224952644243075,0.0244029980826215,0.0265141401901788,0.0282434739678686,0.0301172543120324,0.0323090103946241,0.0342071247608706,0.0360990263103376,0.0380826837445377,0.0401202150559998,0.0418069087688219,0.0565838678003635,0.0698938242131054,0.0834767822655134,0.09598324686668,0.1080285346446888,0.1231557333672022,0.1349508893018317,0.1452753808458506,0.1547499412003677,0.1645929727002394,0.1760925588466805,0.1877971902992753,0.1992358019181154,0.2085057018407862,0.2175047333891066,0.2264619202729952,0.2345651445796583,0.2420210071262116,0.2489393079977311,0.2555720994158744,0.262160973803573,0.2680244732747628,0.2734212270403333,0.2783204880796845,0.2833509455963269,0.2871467639015497,0.2916583241565722,0.2947616020343293,0.2977753606298396,0.3017127625884092,0.2994408891882789,0.296522278080022,0.2942900625669353,0.2915494380239218,0.2897301460351313,0.2859170622262244,0.2831179894931137,0.2836715640509066,0.2837238650704321,0.2841846898121798,0.2839964897212316,0.2849790992980519,0.2859886439545758,0.2867527370838629,0.2877718496542814,0.2875899932666908,0.2893300528831198,0.2943836342657561,0.2987315377932233,0.3018867924528302,0.3041072472895766,0.3097586568730325,0.3148148148148148,0.32,0.3231453181439289,0.3281123100127625,0.3336816960286652,0.3440647837250642,0.3419424266881894,0.3457875457875458,0.0,2.2752658176100766,49.3123897067305,147.11309957772824,199.4225176982316,fqhc5_80Compliance_implementation,42 -100000,95744,47548,452.91610962566847,4962,50.69769385026738,3974,40.98429144385027,1465,14.925217245989304,77.32392886815877,79.68853417099041,63.31606620966248,65.06516137915352,77.13786543437713,79.50548870985979,63.24577367424553,64.99843670313281,0.1860634337816407,183.04546113061804,0.0702925354169536,66.72467602071208,242.42922,169.7716595981917,253205.42279411765,177318.10473574503,482.47949,322.0191719796857,503415.7127339572,335822.91901287367,463.32186,226.48346151397533,480958.30548128346,234161.59475166592,2790.52439,1300.4973335667212,2879362.581467246,1323136.7190285777,900.13163,407.5097270009029,928604.4451871658,414223.528253581,1423.3662,608.5561007452595,1451625.2715574866,605841.003046927,0.37963,100000,0,1101951,11509.33739973262,0,0.0,0,0.0,41502,432.925300802139,0,0.0,41970,435.4110962566845,1111186,0,39928,0,0,9700,0,0,82,0.8460060160427807,0,0.0,0,0.0,0,0.0,0.04962,0.1307062139451571,0.2952438532849657,0.01465,0.3637243515292295,0.6362756484707704,22.89435990825329,4.02474415086786,0.3095118268746855,0.283844992450931,0.2070961248112732,0.1995470558631102,11.325951238577913,6.168629000300593,15.689465127704846,11467.585091914054,45.703826300658896,13.887290466365071,14.002876547261751,9.08246369162027,8.731195595411801,0.5845495722194263,0.7934397163120568,0.7195121951219512,0.5528554070473876,0.1109709962168978,0.7474662162162162,0.8888888888888888,0.8636363636363636,0.7653061224489796,0.1299435028248587,0.5154121863799284,0.7279521674140508,0.6617312072892938,0.4864433811802233,0.1055194805194805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024917195903856,0.0048160277403197,0.0070939980108388,0.0093478835172427,0.0117996500793424,0.0139816700610997,0.0164855331036029,0.0187001745485724,0.0208365283358382,0.0229753250742295,0.0249341275618483,0.0268177991334524,0.0287141843752891,0.0305814492455065,0.0328142896944556,0.0346691750307515,0.036739724892277,0.0387246100034251,0.0407520251229631,0.0426624716104431,0.0574829044213603,0.0709204276776933,0.0837003481397592,0.0957583277254374,0.1081867645198026,0.1242344429283153,0.1356286472148541,0.1461822673211452,0.1562182890225275,0.1661270610433328,0.1780055115397864,0.1893078428616226,0.2002913328477785,0.2095458818899359,0.2178273348068485,0.2270694007706275,0.2359412657323931,0.243412614477622,0.251007458027312,0.2577472055030094,0.2634914382371341,0.2693289911438077,0.2742551022826937,0.2784568693545098,0.2834502973765188,0.2877350928038478,0.2912496085186345,0.2948023994803673,0.2987001205272093,0.3010934446146532,0.2991201950930329,0.2956015523932729,0.2930990757439134,0.2911392405063291,0.289044289044289,0.2855134474327628,0.2811908069200656,0.2814595531713061,0.2813271368503481,0.2821820896583597,0.2824639600156655,0.2825273686697645,0.2839598840724756,0.2857428781106144,0.287275509960064,0.2868695246487999,0.2863367569249922,0.2902963102173777,0.2948843728100911,0.3001383125864453,0.3039517810205746,0.306568958245466,0.3076153557584094,0.3088768115942029,0.311113191648722,0.3106212424849699,0.3164291072768192,0.318928431755964,0.3228346456692913,0.3312173263629574,0.0,1.9886087101768155,51.77560192889917,150.14515635407204,201.2954293625134,fqhc5_80Compliance_implementation,43 -100000,95796,47948,457.8792433922084,4757,48.415382688212446,3727,38.341893189694765,1412,14.35341767923504,77.4066300966336,79.7453090658493,63.35719594835807,65.08758508227254,77.22073696744548,79.56404888049278,63.28642587567069,65.02089147558446,0.1858931291881305,181.2601853565212,0.070770072687381,66.69360668807656,244.82612,171.4930734777397,255569.83590129024,179018.60128781974,484.47107,322.6390052080153,505188.5360557852,336255.6006829673,459.69112,223.93017659640097,476568.2074408117,231116.0043653503,2602.00724,1217.7468566871978,2679357.781118209,1234488.7252434634,851.44346,388.8952526813969,874745.469539438,391898.3701630511,1368.97958,591.0722858691726,1393576.6420309823,586188.070264483,0.38133,100000,0,1112846,11616.81072278592,0,0.0,0,0.0,41624,433.9220844294125,0,0.0,41630,431.3541275209821,1102296,0,39551,0,0,9637,0,0,87,0.887302183807257,0,0.0,1,0.0104388492212618,0,0.0,0.04757,0.1247475939474995,0.2968257305024175,0.01412,0.3481063658340048,0.6518936341659952,23.479180411411107,4.044742217574036,0.3101690367587872,0.2811913066809766,0.2057955460155621,0.202844110544674,11.516896319401562,6.2818448779384966,15.038351938695934,11443.102498264128,42.36748602048057,12.683369157036031,12.972208362667812,8.519127360644456,8.192781140132276,0.588677220284411,0.8101145038167938,0.7084775086505191,0.5788787483702738,0.1084656084656084,0.7511271415689811,0.9223529411764706,0.8434504792332268,0.7326732673267327,0.1715976331360946,0.5198624904507257,0.7335473515248796,0.6583629893238434,0.5238938053097345,0.090289608177172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0044513394577274,0.0065860910686922,0.0088800382024526,0.0108216962805504,0.0130852732123582,0.0151913704859199,0.0171693972337059,0.0194100331166441,0.0216852920708993,0.0238998093754483,0.0257452157405982,0.0278220294562011,0.0297817582870084,0.0318111534893309,0.0337560149521901,0.0359086300717965,0.0382003835588037,0.0399156389930703,0.0419980843709657,0.0563746204651453,0.0701071895424836,0.0841316423854941,0.0968219938205435,0.1084068232343985,0.1244518644533437,0.1358283782208231,0.1464036999627877,0.1569215338981242,0.1659078979786402,0.1787455208703231,0.1905771164722039,0.2009281297208003,0.2096106590946322,0.2181488602032408,0.2279280774550484,0.2362014163832041,0.2433258770500095,0.2505386098197074,0.256871810129769,0.263219958842979,0.2686964750966807,0.2743655842773692,0.2791179322646682,0.2832396605931123,0.2869527738439751,0.2906029943340296,0.2944152113678537,0.2973906518842417,0.3010440835266821,0.2982720568444851,0.294988939117053,0.2922533725330219,0.2889058759050393,0.2868529437909271,0.2838027524335541,0.28029098238045,0.2805349425099894,0.2805053601368401,0.2818136804131004,0.2827441280940249,0.2846733914406033,0.2859987554449284,0.2862614856636776,0.2873112141752884,0.2884897832976887,0.2908645727794664,0.2935372777760541,0.2981915188470067,0.3019310452662028,0.3064262971433696,0.3085633773417523,0.3117967107703722,0.314106863402638,0.3175942055560649,0.3174841315637622,0.3211480362537764,0.3179487179487179,0.3170731707317073,0.3227393113885736,0.0,2.1452651488284764,48.03628745472978,132.82034619764943,193.94823163267145,fqhc5_80Compliance_implementation,44 -100000,95695,47879,456.74277652959927,4973,50.79680234077016,3936,40.61863211244057,1547,15.80019854746852,77.29491858535671,79.69735312682289,63.29396199958445,65.07417440123083,77.10171530446696,79.50733826497382,63.2204770160961,65.0043614182091,0.1932032808897474,190.0148618490647,0.0734849834883561,69.812983021734,242.82236,170.15421467282397,253746.13093683057,177808.88726978836,487.66199,324.7157655473718,509034.5263597889,338757.89283387,461.35472,225.45195066319525,478849.25022205967,233159.8352300888,2766.65139,1292.2964220299473,2855973.028893882,1315418.8368800927,896.2378,410.0400363005447,923981.7649824964,415981.3999505345,1499.85042,635.9800785358811,1534607.931448874,637115.147394916,0.38244,100000,0,1103738,11533.915042583209,0,0.0,0,0.0,41980,438.1629134228539,0,0.0,41832,433.9202675165892,1107612,0,39679,0,0,9547,0,0,78,0.8046397408433043,0,0.0,0,0.0,0,0.0,0.04973,0.1300334693023742,0.3110798310878745,0.01547,0.3491021432709017,0.6508978567290983,23.27278191477295,4.170028430220667,0.3152947154471545,0.2713414634146341,0.2098577235772357,0.2035060975609756,11.542019438456272,6.2733545791430965,16.50651777290136,11550.216922133655,45.254245604715486,13.304237397757738,14.123117642468946,9.179458997527115,8.64743156696169,0.5746951219512195,0.799625468164794,0.6913779210314263,0.5605326876513317,0.1086142322097378,0.7601659751037344,0.8905263157894737,0.8657534246575342,0.7450980392156863,0.15527950310559,0.4928597583302819,0.7268128161888702,0.6187214611872146,0.5,0.096875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021896256348393,0.0042720732239439,0.006540395064236,0.0085201565756697,0.0107189755387481,0.0127811808832672,0.0149393852810318,0.017040926830265,0.0194275074681834,0.0216556203198147,0.0239829308823831,0.0259700235250608,0.0283082938876312,0.0306499984541023,0.0325770556782757,0.0344271280391325,0.0364448405214399,0.0386943386040137,0.0409141977363515,0.0429222126098331,0.0572425391453312,0.0712468459790813,0.0839236428129164,0.0964992581836547,0.1086832665119223,0.1244352270202207,0.1355072233013831,0.1463115975978534,0.1564510269068838,0.1655739991630632,0.1772424640710176,0.1889877088202198,0.2005023158718768,0.2106436698691674,0.2204308761588457,0.2300554737413218,0.238073455908604,0.2461180124223602,0.2542122712203097,0.2615682633563724,0.2679724942696395,0.2729676913535462,0.2778586561564227,0.2830815347721822,0.2872729481805479,0.2907666687226299,0.2942575943502541,0.2976260146052263,0.3018584860516548,0.305093678357796,0.3024812494959542,0.2996237710770583,0.2964093332020647,0.2938774921376842,0.291192001898659,0.2883759350190445,0.2837949042570027,0.2843343064256896,0.2841812536254137,0.2846540835622792,0.2850102130689804,0.2857255769838761,0.2859505170176246,0.2865786947105186,0.2870824910963519,0.2879028686068627,0.288880027344195,0.2937592261063476,0.2975004369865408,0.302888985495791,0.3059379401208487,0.3086713138994508,0.3148032479700187,0.3183775209607976,0.3202535185012582,0.3231204336554324,0.3245322872661436,0.3267803410230692,0.3270575578267886,0.3268873187058386,0.0,1.9923250927047915,52.7047626412484,145.66622576859814,197.01541372194845,fqhc5_80Compliance_implementation,45 -100000,95717,47867,457.0243530407347,4910,50.10604176896476,3888,40.00334318877525,1487,15.127929207977685,77.3593554540744,79.73203550692813,63.33143217950936,65.08456589583564,77.16689458225726,79.54415745714014,63.2583092442826,65.01579442994091,0.192460871817147,187.87804978798303,0.0731229352267632,68.77146589472716,244.41032,171.2207146630798,255346.59464880847,178882.03127450697,484.69422,322.4533615752225,505773.8750692144,336274.1393874259,467.04773,227.34926513704747,484274.8414597198,234607.80682508432,2750.28924,1279.8892856092325,2830733.892620956,1294642.6041938865,904.24658,407.7656546075292,924695.9787707512,406209.0750729837,1446.27848,616.9993721959482,1472286.6157526877,610454.8263024647,0.38012,100000,0,1110956,11606.663393127656,0,0.0,0,0.0,41702,435.05333430843007,0,0.0,42094,436.1294231954616,1104069,0,39516,0,0,9675,0,0,88,0.919376913192014,0,0.0,1,0.0104474649226365,0,0.0,0.0491,0.1291697358728822,0.3028513238289205,0.01487,0.3595483745376679,0.6404516254623321,23.29480084324774,4.043402360206048,0.3011831275720165,0.2824074074074074,0.2132201646090535,0.2031893004115226,11.282640423884414,6.111893004489737,15.694685936776056,11492.949401724876,44.52031337478427,13.675946316085016,13.132463845406706,9.189470467405457,8.52243274588709,0.5789609053497943,0.8114754098360656,0.681468830059778,0.5826296743063932,0.1,0.7541557305336833,0.9214876033057852,0.8389261744966443,0.75,0.1445086705202312,0.5060109289617486,0.7247557003257329,0.6277205040091638,0.5335413416536662,0.0875202593192868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.004693503096901,0.0068393761352451,0.0091202697487355,0.0113276999888146,0.0134280798558441,0.0152607166522248,0.0172815058285527,0.0193003618817852,0.0215604172851892,0.023750192278111,0.0261198245668094,0.028221325980493,0.0300950967967937,0.032051678946608,0.0340617763810784,0.0360082411040594,0.0381172663437503,0.0400856602282886,0.0422590960699144,0.0567332191637776,0.0698735661056686,0.0835405062361666,0.0960703281912152,0.1088391614291137,0.1245397994160213,0.1354480621471324,0.1461230487467257,0.1560372377379463,0.1654717953120975,0.1776268994503718,0.1894724306299869,0.1998781363567122,0.2099462630375064,0.2194584590980193,0.2280904110196748,0.2365417262330235,0.2447299151836936,0.2527486242695864,0.2596817978763616,0.2665324866109125,0.2727687128898031,0.2784027794190636,0.2817251899264222,0.2854994603378649,0.2888429548698262,0.2914848662907722,0.2954043136956025,0.2992540304334897,0.3024505221021029,0.2999167718205493,0.2976384867653718,0.2943461311944358,0.2907123767924365,0.2888074370760113,0.2855707762557077,0.2824846321945697,0.2823297298178676,0.2828020504464134,0.2829552911131998,0.2836394145613871,0.2852535106006372,0.2862784429260954,0.2861416865748286,0.286628478297342,0.2882609372567336,0.2886682740036874,0.2928434845302655,0.2971810296586458,0.3014827667797145,0.3040877367896311,0.3074199344678152,0.3099452037538577,0.311330718165359,0.3145513714551371,0.3174213174213174,0.3197031652279267,0.3251497005988024,0.3207700650759219,0.3286897590361445,0.0,2.3983366216377955,49.497441142896015,145.15900470088815,199.60683842448623,fqhc5_80Compliance_implementation,46 -100000,95895,47536,453.0058918608895,5036,51.32697220918713,3988,41.076177068668855,1478,15.0894207205798,77.4394230829848,79.7187004723016,63.39129033748679,65.0768916205654,77.25618966347879,79.53775238805267,63.32097962664475,65.00956335853323,0.1832334195060099,180.94808424893927,0.0703107108420368,67.32826203217712,245.42298,171.84438020884537,255928.85969028625,179200.56333369348,485.66661,323.3749865620933,505934.8454038272,336707.203619494,463.9169,226.6650349472081,480431.2737890401,233848.45356494663,2784.99362,1303.9926747397176,2871772.7931591845,1328205.897657821,888.5911,407.0208015883947,912096.7203712394,410397.66748747526,1431.15588,606.9963741517524,1462912.20605871,607932.7828457236,0.38015,100000,0,1115559,11633.129985922104,0,0.0,0,0.0,41883,436.2166953438657,0,0.0,42063,435.3615934094583,1100979,0,39515,0,0,9620,0,0,83,0.8551019344074248,0,0.0,0,0.0,0,0.0,0.05036,0.1324740234118111,0.2934868943606036,0.01478,0.3526385978281577,0.6473614021718422,23.15653701549384,3.981806680026213,0.2981444332998997,0.2938816449348044,0.2101303911735205,0.1978435305917753,11.235479874286767,6.111100336511497,15.605794135833875,11450.247210442676,45.71963621724043,14.399963074656,13.489038357791037,9.3716020295287,8.459032755264692,0.5915245737211635,0.8080204778156996,0.7005887300252313,0.5894988066825776,0.1077313054499366,0.7602574416733708,0.9233791748526524,0.8595988538681948,0.6894977168949772,0.144578313253012,0.5151183970856102,0.7194570135746606,0.6345238095238095,0.5541195476575121,0.0979133226324237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021259364243774,0.0043576958936316,0.0066444171679566,0.0090060818974707,0.0110177157551302,0.0131967196434749,0.0153501400560224,0.0174418604651162,0.0194515957664173,0.0215941406329916,0.0238017172483042,0.0257020612950555,0.0275599856137286,0.0293993514848937,0.0315570263610965,0.0337549692808095,0.0358572743919471,0.0378498233398609,0.0398758357211079,0.041830078958045,0.056881671114076,0.0708718184477786,0.0849825134552156,0.097355352812103,0.1095332336779165,0.1248178727537639,0.1362215984322864,0.1463577918282769,0.1563449503726052,0.1654857974613096,0.1785245866391451,0.1898109130199892,0.2001390533508598,0.209233458995793,0.2179019133494611,0.2267540315886174,0.2359812302856697,0.2440232777603019,0.2518268435542162,0.2584192596995816,0.2640544161123429,0.2699446662464103,0.2759496662137413,0.2799258062586011,0.2845097420716764,0.2879699710787028,0.2911110833406231,0.294380482108176,0.29708853238265,0.3004143373890168,0.2970995031556331,0.2947677288433061,0.2926261138006034,0.2901264801636463,0.2872113676731794,0.2841061622940817,0.2799236930062433,0.2798321660054529,0.2808343666661004,0.281812538795779,0.2826378289841045,0.2835416707549206,0.2838944305901912,0.2840107082015088,0.2838966957842765,0.2851027618040692,0.2868421792026074,0.2915311967796872,0.2963129031145449,0.3004291845493562,0.302426575931232,0.3070120355834642,0.3128876209377326,0.3166491043203372,0.3207511912547884,0.3266195524146054,0.3330784523627466,0.3340080971659919,0.3421990677268988,0.3528969149736644,0.0,1.893670125871685,54.42190194392053,142.07472656726324,201.5415657009163,fqhc5_80Compliance_implementation,47 -100000,95741,48118,457.975162156234,4957,50.70972728507118,3900,40.191767372390096,1438,14.685453462988688,77.34647984393533,79.69886122942324,63.33814763576003,65.07530084921167,77.15708432859769,79.51057574472148,63.26757100435014,65.00687522924828,0.1893955153376367,188.28548470176543,0.0705766314098923,68.42561996339214,244.23652,171.1380612832493,255101.28367157228,178751.0693258367,486.36188,323.7741931394263,507486.5835953249,337666.2486702942,471.02024,230.7880160540196,487795.1034561995,237860.879452257,2690.22141,1256.6862652749862,2776586.1960915388,1279280.8151941032,879.49003,397.90789857685246,906717.822040714,403712.7025797216,1385.65816,590.3729166132719,1417108.7830709936,592243.398172634,0.3824,100000,0,1110166,11595.512894162375,0,0.0,0,0.0,41836,436.4274448773253,0,0.0,42579,440.6471626575866,1100386,0,39541,0,0,9736,0,0,82,0.8460325252504152,0,0.0,0,0.0,0,0.0,0.04957,0.1296286610878661,0.2900948154125479,0.01438,0.3625968992248062,0.6374031007751938,23.13205751177674,3.917184079443371,0.3217948717948718,0.2892307692307692,0.1979487179487179,0.191025641025641,11.161368879366952,6.260885956404655,15.497147412082196,11583.627045943762,44.98146686704241,13.907899592613552,14.357345838082535,8.619178597146455,8.097042839199869,0.5956410256410256,0.8147163120567376,0.7099601593625497,0.5569948186528497,0.1114093959731543,0.7779646761984861,0.9173553719008264,0.8898071625344353,0.7025641025641025,0.1428571428571428,0.515676872002951,0.7375776397515528,0.6367713004484304,0.5077989601386482,0.1036789297658862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0045920384393151,0.0071239382592017,0.0094979785051096,0.011766021925275,0.0140189770320899,0.0161365953109072,0.0184427275232447,0.0206785170344778,0.022677710319126,0.0247747516887216,0.0272309239833309,0.0293833405300927,0.031547723269922,0.0334179357021996,0.0356175710594315,0.0375520261735655,0.0396634365986761,0.0418295218295218,0.0437979772729639,0.058630697596726,0.0728092850938242,0.0860155266470835,0.0985552658142664,0.1105078384447513,0.1264258454642521,0.1380539233363738,0.1477839851024208,0.1584402553318673,0.1681687152394526,0.1790411814091662,0.19033820603754,0.2001977637483836,0.2097477302275781,0.2190463631468477,0.2283421868083222,0.2374921965575671,0.2467732505846375,0.2539156865636093,0.2605873261205564,0.2662689052310253,0.2719483828737741,0.27704885060871,0.2811249310997675,0.2865085338318483,0.2905488555254737,0.2949479290384687,0.2986339006334427,0.3024038959693296,0.3057702962982507,0.3023290253096392,0.2985587766103746,0.295967912180705,0.2927079272958263,0.2901794327609492,0.2865841531141471,0.2828630528493155,0.2826538795149174,0.2836232896552899,0.2844079134642756,0.2849062943328604,0.2864509526058888,0.2868753133879325,0.2871792585326705,0.2881270662641943,0.2884820707794068,0.2882875192077855,0.292231580924946,0.2965382331365494,0.3011943710828176,0.304418762746431,0.3071878140371291,0.31125249500998,0.3136081224427943,0.3197565543071161,0.3202074982315491,0.3243366186504928,0.3215291750503018,0.3178679922673295,0.3226056611089569,0.0,2.149215009523412,51.74914987271438,148.90190621100666,192.06749014373813,fqhc5_80Compliance_implementation,48 -100000,95748,47649,455.3828800601579,4948,50.62246731002214,3936,40.606592304800095,1452,14.79926473660024,77.41222784566315,79.76905592778567,63.350809200748486,65.09025599589106,77.22901727794074,79.58910597660089,63.28141747551249,65.02444982091961,0.183210567722412,179.9499511847813,0.0693917252359952,65.80617497144203,244.40768,171.10656975301077,255261.39449387975,178705.11107596062,485.86182,323.144035122288,506965.3152024063,337021.52015946846,469.78777,229.25538864206143,488054.3196724736,237400.3415215229,2757.79831,1300.6262560912116,2844370.7440364286,1322488.2463249492,905.2146,418.1257030984562,928701.8423361324,419982.1856315074,1414.36974,606.1305756380799,1441999.8537828466,601931.0615678934,0.37849,100000,0,1110944,11602.790658812715,0,0.0,0,0.0,41802,436.0822158165183,0,0.0,42472,440.9178259598111,1103350,0,39579,0,0,9560,0,0,97,1.0130759911434182,0,0.0,0,0.0,0,0.0,0.04948,0.1307300060767788,0.2934518997574777,0.01452,0.3664403491755577,0.6335596508244423,23.011750899118177,4.035103869776165,0.3023373983739837,0.290650406504065,0.2096036585365853,0.1974085365853658,11.562093741547136,6.313381799668931,15.62685550756366,11489.090337071231,45.37471230159293,14.095566378060267,13.535697028218678,9.261863536309786,8.481585359004196,0.5975609756097561,0.8068181818181818,0.7092436974789916,0.6012121212121212,0.1145431145431145,0.7627257799671593,0.9222903885480572,0.8816901408450705,0.6945812807881774,0.1403508771929824,0.5235467255334805,0.7206106870229008,0.6359281437125749,0.5707395498392283,0.1072607260726072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0042669639689859,0.0064115570344519,0.0087639125842879,0.0109598511574944,0.0131724945284267,0.0150844935483213,0.0172137587624868,0.0195194734851968,0.0216888433981576,0.0240223005657128,0.0262379896526238,0.0281276022658346,0.0303183217820252,0.0320803194617853,0.0339866038203919,0.0358892052808697,0.0375261967505654,0.0394128104629523,0.0414379316451213,0.0564580114419342,0.070732013560457,0.0844714372626764,0.0976689878610649,0.1100360843233661,0.1256402116402116,0.1368002122578933,0.1478247907838419,0.1575887752594064,0.1678257136724619,0.1798100453864315,0.1910712158782064,0.2018830956786763,0.2111370179413921,0.2196277123031171,0.2289113873518224,0.2377350479872183,0.2455778866182514,0.2531529179389963,0.2597329665921724,0.2654055868767437,0.2710202744597962,0.2765338348532699,0.2813629941811738,0.2849410822421513,0.2886665189670876,0.291842598376015,0.2953037166749147,0.297605223091017,0.2996609991327885,0.2972871592203094,0.294275467462425,0.2916316349980382,0.2890916930152342,0.2863968853232657,0.2824045940690325,0.2804962311557789,0.2806943337291968,0.2810436490467644,0.2819855346690481,0.2820855119219787,0.2831059154709309,0.2848989249097173,0.2850538609568891,0.2862888830711378,0.2870694988657455,0.2881766462006421,0.293404070488955,0.2981781656968689,0.3030184700691163,0.3086082635749138,0.3116252350114895,0.3137739345274861,0.3166629455979757,0.3200036603221083,0.3228309973358044,0.325698988697204,0.3273551438707134,0.3294054633101232,0.3355805243445693,0.0,1.9757144559052056,53.23303064938786,150.57040271551813,189.5463827714404,fqhc5_80Compliance_implementation,49 -100000,95736,47850,454.9594718810061,5002,50.98395587866633,4011,41.38464109634829,1506,15.417397844071196,77.32373385663094,79.69309710010606,63.321321634088775,65.07484384768838,77.12536551678873,79.49496041663026,63.24651075305935,65.00155104005474,0.1983683398422044,198.1366834757949,0.0748108810294283,73.2928076336492,243.71952,170.76103164694726,254574.580095262,178366.5827347573,488.53835,325.78473200357547,509785.639675775,339783.7429137176,470.23737,230.09179993955144,487492.1868471631,237506.602619759,2806.25331,1340.3393352115904,2899115.087323473,1367963.4025982146,930.51393,429.83487270165375,959341.9716720984,436401.7093379742,1464.2351,636.0838860764393,1500996.866382552,643137.6928270473,0.38221,100000,0,1107816,11571.571822511907,0,0.0,0,0.0,42055,438.7482242834461,0,0.0,42674,442.00718642934737,1101912,0,39608,0,0,9524,0,0,79,0.8251859279685803,0,0.0,1,0.0104453914932731,0,0.0,0.05002,0.1308704638811124,0.3010795681727309,0.01506,0.3598848368522073,0.6401151631477927,22.823037370285373,4.020344600876261,0.3041635502368486,0.2944402892046871,0.2021939665918723,0.1992021939665918,11.705012225919592,6.580198097113239,16.42128552355552,11562.45956929087,46.53369771856004,14.504834072342891,14.01305249378134,9.082500570187594,8.933310582248213,0.6045873846920967,0.8111769686706182,0.7237704918032787,0.594327990135635,0.1276595744680851,0.7654417513682564,0.9392712550607288,0.8940217391304348,0.7810945273631841,0.1342592592592592,0.5292825768667643,0.7190684133915575,0.6502347417840375,0.5327868852459017,0.1252144082332761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012158054711,0.0046954070197856,0.007084855866829,0.0093490234335304,0.0118325736610776,0.0140166447656592,0.0161342960877901,0.0181385515712928,0.020522941314818,0.0226534896820113,0.0246946498343776,0.0269692923898531,0.0291751537970907,0.0313263192605339,0.0334427447823125,0.0354901737808975,0.037647716798028,0.0397468485760232,0.0417975004678824,0.043918144497468,0.058322370481739,0.0727263212977498,0.0858989017444117,0.0990186488277428,0.1115984816533108,0.1266704728072401,0.1368106164274576,0.1481359322466698,0.1581746531819686,0.1669865437195089,0.1789482751195142,0.1909109594227669,0.2017658315935977,0.2109158894853656,0.2198400563212953,0.2288238811258498,0.2374581939799331,0.2451870156127148,0.2527996916938701,0.2602916785816414,0.2663224286110341,0.2713978695570921,0.2768074495993949,0.2808055169771563,0.2854403572858894,0.2893245972708015,0.2927332782824112,0.2971022792349101,0.3003303322754064,0.3020390936189295,0.299339138861596,0.2965965235821142,0.2943935765600788,0.291461210324633,0.2892284368079192,0.2858192617994213,0.2822522038611014,0.2823708604933014,0.2836059713687507,0.2845732379834205,0.2850711697239138,0.2867481759021889,0.2876520210160551,0.288102261553589,0.2878638559719251,0.2886168272987757,0.2902545392355272,0.2947600314712824,0.297752808988764,0.3022904405916971,0.304540269221994,0.307503861106673,0.3105382579099962,0.3141137938913855,0.320981892850476,0.3232514177693761,0.327856496834489,0.3279967980788473,0.323051948051948,0.331047619047619,0.0,1.9875668264256117,56.03065877274678,147.17577700076205,198.3618283882838,fqhc5_80Compliance_implementation,50 -100000,95777,47651,453.6579763408752,5071,51.651231506520354,4055,41.711475615231215,1549,15.849316641782474,77.38153749659537,79.72210279188901,63.350937847410606,65.08232941637318,77.18162961340688,79.5251235237359,63.27438693398911,65.00939174723267,0.1999078831884873,196.97926815311465,0.0765509134214994,72.93766914051503,243.68762,170.65135425565396,254432.29585391065,178175.71468688094,485.40472,322.52105866675225,506210.0921933241,336144.5635870326,464.91412,227.18154283296855,480741.67075602704,233695.93719470644,2828.33007,1335.4868102208616,2911545.579836495,1352879.86700446,923.70382,424.1867141321462,945915.0735562816,424373.2567653456,1500.66834,645.0833115877651,1535453.2298986188,645743.0703369455,0.37928,100000,0,1107671,11565.104356995938,0,0.0,0,0.0,41823,436.0337032899339,0,0.0,42145,435.438570846863,1107861,0,39772,0,0,9606,0,0,78,0.8143917642022614,0,0.0,2,0.0208818401077502,0,0.0,0.05071,0.1337006960556844,0.3054624334450798,0.01549,0.354351519728148,0.645648480271852,23.23345111710321,4.006264026210784,0.3154130702836005,0.2801479654747225,0.2041923551171393,0.2002466091245376,11.14504192916359,6.065868110937428,16.5165461701708,11497.5336282495,46.68276813252642,14.016210181802188,14.508311632731283,9.306146202216242,8.852100115776704,0.5898890258939581,0.8089788732394366,0.709147771696638,0.5676328502415459,0.1182266009852216,0.744955609362389,0.9074074074074074,0.8333333333333334,0.7289719626168224,0.1675675675675675,0.5216619318181818,0.7353846153846154,0.6616216216216216,0.511400651465798,0.1036682615629984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0043485312303606,0.0066352826589829,0.0088053380457633,0.0108485674197287,0.0133045593819029,0.0154727443225832,0.0177589075209993,0.0198348627603261,0.0219473264166001,0.0244399811448363,0.0265751062388372,0.0284289533209952,0.0304565391981219,0.0325325686701255,0.0344791957265222,0.0365916758076867,0.0386457404681442,0.0407334302929565,0.0430527356968087,0.0572293242890686,0.0711618712936525,0.0842462809397507,0.0977239770506273,0.1097458162964211,0.1251439985626565,0.1372476286365322,0.1485242206438991,0.1580042689434365,0.1676850184375268,0.1797844739420168,0.1910458739413081,0.2007695986782034,0.2100091807292122,0.2182742233565079,0.2273678383614724,0.2356870441822602,0.2432517510033839,0.2506237807920882,0.2569826649121803,0.2633751517604208,0.2695000642891375,0.2746413067906272,0.279870674170758,0.2838784054365633,0.2876990475252886,0.2916234747530255,0.2956515109156988,0.2996740985981067,0.3034399167358338,0.3002271902348528,0.296773927732685,0.293281199454282,0.2898893585101625,0.2877614597240766,0.2842875250064902,0.2807449106706404,0.2803854319777886,0.2818532163047722,0.2824226932225654,0.2824879812171579,0.2832333562788868,0.283885228125782,0.2861919835926702,0.2876794258373206,0.2896948941469489,0.2911901256935794,0.2962478184991274,0.2998957247132429,0.3052834493882528,0.3097676517031356,0.3138659223761125,0.3188668626102182,0.3244205423420694,0.3258426966292135,0.3304337604325849,0.3379664601903611,0.3425149700598802,0.3483360611020185,0.3570079335096335,0.0,2.484713019680504,53.628024744834434,150.89543053312306,203.5937384472325,fqhc5_80Compliance_implementation,51 -100000,95871,47816,454.7047595206058,4931,50.33847566000146,3950,40.77353944362738,1476,15.082767468786182,77.37299817448195,79.67294129043421,63.35320242165369,65.05636115515432,77.18332657730757,79.48651278852032,63.2808771829508,64.98765282396867,0.1896715971743816,186.4285019138947,0.0723252387028878,68.7083311856469,244.88706,171.56291854029297,255433.92683919016,178951.84001449132,487.83087,324.7612239842629,508392.95511677145,338300.1783482627,464.62732,226.87955257635028,482161.1123280241,234719.54309639684,2730.73089,1280.4156116474223,2819754.868521242,1306976.9916319037,885.3237,404.0974584405589,913951.8206756996,412020.1327951108,1427.78088,614.5637029509918,1460485.77776387,614855.572302348,0.38246,100000,0,1113123,11610.633038145008,0,0.0,0,0.0,42085,438.49547829896426,0,0.0,42083,436.57623264595134,1097703,0,39428,0,0,9987,0,0,84,0.8553159975383589,0,0.0,1,0.0104306828968092,0,0.0,0.04931,0.1289285154003033,0.299330764550801,0.01476,0.3668215253581107,0.6331784746418893,22.971095917689134,3.9803264056229226,0.3037974683544304,0.2893670886075949,0.2131645569620253,0.1936708860759493,11.530812996944592,6.314004420527193,15.933716583370298,11562.647797543348,45.37386696842912,14.019696196121526,13.524385522492622,9.40833399213143,8.421451257683534,0.5855696202531645,0.8145231846019247,0.675,0.5760095011876485,0.1137254901960784,0.7477102414654455,0.9190871369294604,0.8294117647058824,0.736318407960199,0.1404494382022472,0.51473263004729,0.7382753403933434,0.6139534883720931,0.5257410296411856,0.1056218057921635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025217743568969,0.00501687494299,0.007283202986316,0.0094937351501736,0.011670699225342,0.0140065146579804,0.0163484961218187,0.0185020767637183,0.0207317945416832,0.0229909755049419,0.0250192100814507,0.0270245313798516,0.029309901854992,0.0310656826112466,0.0330305873135328,0.0350186917818121,0.0370075318655851,0.0391283172543858,0.0409877773970113,0.0431050627379986,0.0580065274287561,0.0716838387427114,0.085293162509559,0.0977108054184605,0.1102358887952822,0.1263018907784937,0.138061480751502,0.1480619166081946,0.1583576147631093,0.1676793004789918,0.1799143367555584,0.1915514576329813,0.2013390722142515,0.210402589166612,0.2202451692416039,0.2302972577858503,0.2394328488080231,0.24695982810795,0.2546902293505138,0.2615057013326006,0.2669457228093707,0.2722615357623252,0.2775713541913192,0.2816751293351217,0.286133831703114,0.28977048857368,0.2929752996821742,0.2957801991023864,0.2986750853948866,0.3019032168717603,0.298927595904143,0.2961755848013532,0.2940637983240617,0.2917533217793183,0.2882261295348319,0.2845395491020252,0.2812425932655996,0.2812269818146105,0.2823493371002604,0.2828895849647611,0.2835770780480525,0.2842836343603667,0.2857887494266294,0.2862602204052613,0.2878581824255004,0.2899495537446643,0.2902979157227005,0.2938603343227621,0.2967791411042945,0.3009933644823118,0.304839216038032,0.3084983757728177,0.311706102117061,0.3162618796198521,0.3171460590212925,0.3204381263108832,0.322463768115942,0.3293027005239822,0.3274773538292616,0.330188679245283,0.0,1.586480796220464,52.875226103808856,146.54474148675772,198.66959252099224,fqhc5_80Compliance_implementation,52 -100000,95780,47701,453.9674253497599,4902,49.906034662768846,3911,40.14408018375444,1460,14.762998538316976,77.39816222968327,79.72835445944126,63.35848721039546,65.07990405396791,77.21306869493642,79.55079118659353,63.28717020092132,65.01477331380146,0.1850935347468407,177.56327284773477,0.0713170094741428,65.13074016645248,243.65858,170.71875105588472,254394.00709960327,178240.5001627529,484.12249,322.2392940596237,504745.4061390687,335729.74948801805,465.59672,227.323395995621,482073.6688243892,234196.16931453132,2716.13436,1277.4358813004358,2788714.3140530386,1286627.7837757743,873.71282,399.7560524195761,894019.095844644,399180.1236370594,1413.11378,603.7283991084254,1430873.146794738,591174.4149260017,0.37927,100000,0,1107539,11563.363959072874,0,0.0,0,0.0,41666,434.2764669033201,0,0.0,42175,436.291501357277,1106356,0,39715,0,0,9547,0,0,84,0.8770098141574442,0,0.0,1,0.0104405930256838,0,0.0,0.04902,0.1292482927729585,0.2978376172990616,0.0146,0.3682969946965232,0.6317030053034767,23.02851128472489,3.883587796827838,0.3165430836103298,0.2927639989772436,0.1948350805420608,0.1958578368703656,11.415768397194148,6.413735294870814,15.510434630237985,11467.574246257018,44.9434548901448,14.20034634222358,14.066120601473331,8.375249445961572,8.301738500486312,0.5988238302224494,0.8096069868995633,0.7172859450726979,0.5866141732283464,0.1044386422976501,0.7811725846407928,0.9330628803245437,0.8933717579250721,0.7635467980295566,0.125,0.5170370370370371,0.7162576687116564,0.6487093153759821,0.5223613595706619,0.0986622073578595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748435316278,0.0040538349278417,0.0064927159842551,0.008652205703144,0.0109083515478066,0.013373501333279,0.0154684872879197,0.0174264375790719,0.0196467066480041,0.0217311233885819,0.0239117294511776,0.0263927512288226,0.028673024747184,0.0308051750223859,0.0330120109283983,0.0349293563579277,0.0372527518000496,0.0391335455572952,0.0413514299966744,0.0433949492319708,0.057745082694214,0.0719978245863576,0.0851322590453025,0.0974943243924997,0.1098752806975003,0.1253700101488498,0.1376644039032668,0.1478710611172007,0.157601845720023,0.1665522788203753,0.1782529082292115,0.1891014894054276,0.1990394645340751,0.2088886946641611,0.2175098088779962,0.227195273081349,0.2361540091210151,0.2437672195670508,0.2516786897146227,0.2583954476236275,0.2645851876683351,0.2696060673343227,0.2753957549513736,0.2801260016049634,0.2835666965954039,0.2878677873078769,0.2910440301864161,0.2947825645194066,0.2976104272266474,0.3001738992964983,0.2966936926034986,0.2937081182027903,0.2907707668293232,0.2877320419693301,0.2845980821593465,0.2815140147009485,0.2790836998849106,0.2799026255166892,0.2802974863425177,0.2812350109253699,0.2817819495660595,0.2834215132859981,0.2838735194321281,0.2839662166655582,0.2850790631316133,0.287469350883985,0.2897650629496403,0.2941705426356589,0.3013499982736595,0.3050013664935774,0.307308746237815,0.3114275282949982,0.3155235101990509,0.321072739531051,0.3232838589981447,0.3285815268614515,0.3339363787124981,0.3374097834803528,0.3326954620010935,0.3314543404735062,0.0,2.6097928353954063,52.37764795915732,142.02045102396852,196.21460031008837,fqhc5_80Compliance_implementation,53 -100000,95877,47507,452.0896565391074,5049,51.461768724511614,4033,41.459369817578775,1564,15.947516088321496,77.3584022892406,79.64067866203857,63.35300198276878,65.04163354329913,77.1612788558495,79.44776641282226,63.27872912943494,64.97144116957789,0.1971234333910985,192.912249216306,0.0742728533338379,70.1923737212411,243.83304,170.8468585540373,254318.36624007844,178193.55899124642,484.19239,321.62772563964944,504397.592749043,334842.1578059903,466.49374,227.07799159503213,483055.84238138446,234105.35204131505,2837.32136,1325.8521129714522,2917828.6867549047,1341361.7061145548,936.92386,420.0703302462469,962988.4226665416,423908.6331927854,1526.78724,645.6586581257503,1558025.136372644,642920.8424118195,0.3788,100000,0,1108332,11559.925738185384,0,0.0,0,0.0,41648,433.7536635480877,0,0.0,42205,436.7157921086392,1106548,0,39704,0,0,9481,0,0,89,0.917842652565266,0,0.0,0,0.0,0,0.0,0.05049,0.1332893347412883,0.3097643097643097,0.01564,0.3586088939566704,0.6413911060433295,23.20842531197765,4.095679384085227,0.3064716092239028,0.2846516241011654,0.1943962310934788,0.214480535581453,11.235363008177169,5.966706737611836,16.603866161389945,11500.692736706906,46.42335665736,14.20231582552221,14.121690763249946,8.72936495874254,9.369985109845306,0.5968261839821473,0.8266550522648084,0.7257281553398058,0.5854591836734694,0.1179190751445086,0.7561576354679803,0.9323770491803278,0.8611111111111112,0.73224043715847,0.1176470588235294,0.5278863232682061,0.7484848484848485,0.6700913242009132,0.540765391014975,0.1179941002949852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020957992892506,0.0043975641142556,0.0064914647381606,0.0088639340433957,0.0107847123399064,0.0131692771145645,0.0154753657443253,0.017522566168596,0.0197257588597449,0.0218362485815639,0.0239950044529978,0.0262143486908203,0.0283049872648097,0.0303762832513835,0.0325638911788953,0.0347729126444139,0.0367638692058631,0.0386887488599618,0.0407618572867661,0.0426871137560082,0.0574106314439706,0.0710882647943831,0.0842409517426273,0.0966796875,0.1091659820093113,0.1243371152099047,0.1359989826305359,0.1468599136556007,0.1571779272067456,0.1669668124517623,0.1793063347295653,0.1908661178837604,0.2009718658955516,0.2103761519037156,0.2184864710344903,0.2282862486029501,0.2365621375680257,0.2449098901593083,0.2519367095786309,0.2586457724778629,0.2647814315136648,0.271191793480168,0.276395713693683,0.2805587195012289,0.2846674525149169,0.2885587473801011,0.292195757256994,0.2955161918830466,0.298809585559417,0.3018631078224101,0.2987564166475795,0.2955521303534074,0.2934940233995523,0.2909487427605829,0.2890460203808788,0.2849269771286856,0.28132170720514,0.2814089313252617,0.2822736195271827,0.2833229454189298,0.2839789949729962,0.2837233140807033,0.2845377202700725,0.2858098316798573,0.2879994244328265,0.2898997487241924,0.2899699835759189,0.2947782144862437,0.2980893049803362,0.3034039870774564,0.3078524553066304,0.3128156565656566,0.3164541135283821,0.3203690993670403,0.3247451868629671,0.3280783470679565,0.3253980522491884,0.329221435793731,0.3296973002454322,0.3368580060422961,0.0,2.344455115280661,52.94413995665384,149.7653654407297,205.2010400400337,fqhc5_80Compliance_implementation,54 -100000,95726,47955,457.8588889121033,4979,50.82213818607275,3979,40.89797965025176,1456,14.792219459707916,77.38965647392791,79.75565542609358,63.34469261111818,65.0935808041326,77.20601113148219,79.5777338570613,63.2746233908523,65.02849947481097,0.1836453424457289,177.92156903227863,0.0700692202658856,65.0813293216288,244.57466,171.2281649376167,255494.49470363327,178873.20575143295,486.36245,323.32610198886806,507408.2172032677,337093.0876907948,468.44997,228.1641471681889,485181.3613856215,235108.5405740804,2784.8916,1289.471951848131,2863704.40632639,1301580.4110811758,890.74434,401.7691682763561,912506.9782504232,401778.3659623858,1414.10228,601.5027396376963,1438280.1955581557,594700.563410964,0.38136,100000,0,1111703,11613.386122892422,0,0.0,0,0.0,41826,436.2346697866829,0,0.0,42392,438.6687002486263,1103623,0,39604,0,0,9772,0,0,82,0.8461650962121053,0,0.0,0,0.0,0,0.0,0.04979,0.1305590518145584,0.2924281984334204,0.01456,0.3595916795069337,0.6404083204930663,23.19416972887444,4.089624235581665,0.3068610203568735,0.2865041467705453,0.2033174164362905,0.2033174164362905,11.045362084211945,5.816507258139105,15.422169262769158,11507.033922515988,45.35704670914304,13.967332025103843,13.882416612482038,8.961934064215981,8.545364007341183,0.5858255843176677,0.8192982456140351,0.6904176904176904,0.5698393077873919,0.1149567367119901,0.7604433077578857,0.9238900634249472,0.8631284916201117,0.6881720430107527,0.1153846153846153,0.5128296507483963,0.7451274362818591,0.6187717265353418,0.5345104333868379,0.114854517611026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.0046430055857992,0.0068500796638894,0.0092854095129731,0.0114132259147364,0.0136959797971569,0.0158746342308907,0.0180582068374148,0.0198605773162155,0.0220998433869366,0.0240574837532544,0.0259426940568952,0.0282909277820611,0.0303248725737527,0.0322018339161019,0.0343430585268553,0.0363562937497411,0.0383976926109601,0.0401725392370855,0.0422002479915807,0.0565712674762198,0.0704229774851628,0.0837914970411717,0.0966638962241323,0.109152478004937,0.124657577712672,0.1359744517415891,0.1464481455861224,0.1562219659105472,0.1649506649506649,0.1769488386117183,0.188519003364672,0.199049607446554,0.2089503269975283,0.2184835114050241,0.2282104377290797,0.2360019180801356,0.2443675345251873,0.2523666458817527,0.2588622870934901,0.2653226365801216,0.2710373191877176,0.2768491063095842,0.2808260151707305,0.285942995755003,0.2894723890146668,0.2930291254857371,0.2964190897196499,0.2998837059051557,0.3035664915675974,0.3006029516430096,0.2977873555329838,0.2945166999073008,0.2912398980076926,0.288972709119148,0.285648959682951,0.2826148565670561,0.2835273403110633,0.2836897445014477,0.2840458663646659,0.2852798843008918,0.2854486740385556,0.2872893826034693,0.2874015748031496,0.2874126206666983,0.2885637611601383,0.2899645010424297,0.2956987572803438,0.3002995680646509,0.3045981544285827,0.3108542941309766,0.3153263001643429,0.3175417735778209,0.3212093997904505,0.3236914600550964,0.3240139211136891,0.3292974588938714,0.3339268051434224,0.3327052489905787,0.3347201210287443,0.0,2.5762411299008856,50.676104938383695,145.67099735279552,204.73796187157475,fqhc5_80Compliance_implementation,55 -100000,95768,47939,455.4861749227299,4910,50.23598696850723,3936,40.58767020299056,1481,15.17208253278757,77.34687979821054,79.70584172251499,63.33382307926016,65.08143618621295,77.15692330641927,79.51844386815921,63.261663598428605,65.01245110010929,0.1899564917912641,187.3978543557797,0.0721594808315515,68.98508610366605,243.6808,170.72148441327454,254448.85556762177,178265.47219872457,487.04274,324.5075518320532,508053.59827917465,338336.52245432,466.39003,226.89345385652317,483682.6288530615,234417.4248779933,2774.93016,1294.2230959764356,2857554.0263971267,1311800.7067423332,906.21805,409.4984236167687,927300.7163144264,408816.5524744902,1444.07814,620.2074470552864,1479043.897752903,621602.9938752452,0.38123,100000,0,1107640,11565.857071255534,0,0.0,0,0.0,41990,437.922897001086,0,0.0,42195,437.3068248266644,1105554,0,39710,0,0,9712,0,0,85,0.8875616072174422,0,0.0,0,0.0,0,0.0,0.0491,0.1287936416336594,0.3016293279022403,0.01481,0.3522504892367906,0.6477495107632094,22.945495352585997,4.013091619107464,0.3241869918699187,0.2733739837398374,0.1971544715447154,0.2052845528455284,11.207056945846777,5.950931940338262,16.02781366741993,11521.172423804162,45.191360106216784,13.300783716889368,14.345614202225056,8.770174943693519,8.774787243408843,0.5835873983739838,0.8085501858736059,0.6927899686520376,0.5747422680412371,0.120049504950495,0.759417808219178,0.918859649122807,0.8656716417910447,0.7389162561576355,0.160919540229885,0.509393063583815,0.7274193548387097,0.6312433581296493,0.5165794066317626,0.1088328075709779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509383486684,0.0045734799010262,0.0069035532994923,0.0091364574123194,0.011322942947831,0.0136657094560192,0.0160260984809868,0.0181502654144548,0.0207315327840363,0.0227198263504935,0.024944380081405,0.027260686086269,0.0295037123876514,0.0314186822695619,0.033304435775177,0.0356024189796867,0.037497281680077,0.0396804813527672,0.0418507468892608,0.0441320420701864,0.0586485470941883,0.0726487232862956,0.0855246602918973,0.0980513747582611,0.1104353966631182,0.1260092150314917,0.1378162661776708,0.1479422052585134,0.1580867450344548,0.1668201876526284,0.1784826874052083,0.1896734314551859,0.1998544301047234,0.2092032847034157,0.2185127816410155,0.2289428555623167,0.2374098313134804,0.2443153079231625,0.2524391904156834,0.2584047084688315,0.2646221831474712,0.2696702808285671,0.2746501366330309,0.2798131065053312,0.2843033766485883,0.2877873015482617,0.2904701778950131,0.2956041163765722,0.2982016109222077,0.3007307920205412,0.298794824597939,0.2964555570820167,0.2935100342908538,0.2905991527133347,0.288565248311011,0.2848982833404606,0.2820970211691161,0.2822045696503152,0.2826890641770448,0.2833182149654056,0.2841278136548583,0.2843915604499517,0.2847451258714983,0.2845802207603969,0.2868995947339392,0.2887378944079975,0.2907482722334404,0.2965233245316233,0.3005426220899702,0.3056281168368558,0.308216378253168,0.3101209017475318,0.3142892939923573,0.3157378779880853,0.3162274618585298,0.3170560747663551,0.3176470588235294,0.3197908286403861,0.3263621353880022,0.3373493975903614,0.0,1.8584423397659984,51.19474861509316,147.26743727182298,201.23953181944984,fqhc5_80Compliance_implementation,56 -100000,95750,47891,457.73368146214096,4952,50.49608355091384,3906,40.16710182767624,1451,14.715404699738905,77.36211040614715,79.72404738908905,63.32787542470121,65.07552730025397,77.17873234255721,79.54457225960383,63.258596378852175,65.01019403786445,0.1833780635899415,179.47512948522615,0.0692790458490364,65.33326238951531,244.61822,171.32923592788816,255475.9477806789,178933.92786202417,485.60228,323.1653824148908,506530.412532637,336883.5221043246,463.98406,226.04084655729895,480412.1253263708,232901.50905672324,2756.26566,1274.848771692121,2836077.1174934725,1289035.6827161445,894.23651,405.1909039076521,916381.35770235,405636.4656771823,1416.19072,600.7569699951397,1438837.2010443865,593540.4749824249,0.38099,100000,0,1111901,11612.543080939948,0,0.0,0,0.0,41819,436.0939947780679,0,0.0,41949,433.98433420365535,1101910,0,39517,0,0,9574,0,0,93,0.9712793733681462,0,0.0,2,0.02088772845953,0,0.0,0.04952,0.1299771647549804,0.2930129240710823,0.01451,0.3638470451911935,0.6361529548088065,23.19294156384132,4.034725681135713,0.2980030721966206,0.2836661546338965,0.2163338453661034,0.2019969278033794,10.8875738622204,5.683638798542149,15.388483411283833,11471.233847217063,44.57246784975678,13.67155052255596,13.126455744439,9.175706481210913,8.598755101550898,0.5780849974398361,0.796028880866426,0.6950171821305842,0.5775147928994083,0.100126742712294,0.7497781721384206,0.8930817610062893,0.8646153846153846,0.7134146341463414,0.1304347826086956,0.5084562792371357,0.722662440570523,0.6293206197854588,0.5447870778267254,0.0923566878980891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022187775447554,0.0046849331737887,0.0069434575170033,0.009144761575744,0.0112100096638014,0.0132093534851509,0.0152142434686843,0.0171934983255738,0.0191000092023598,0.0211046940280167,0.0229305111165805,0.0250939868931939,0.0273865495210954,0.0296369575746334,0.0316954103064268,0.0337658309640734,0.0357242707589077,0.03773447875166,0.0395617645835932,0.0415803014363536,0.0560629625377075,0.0700910137043623,0.0832546823549151,0.0960644496329484,0.1088937642393047,0.1246972469301632,0.1361418174874286,0.1475429033769109,0.1574937761109508,0.1665933924531134,0.1779613553626435,0.1898206768178522,0.2006157059405832,0.2101135394106451,0.2185171734513079,0.2279595861121574,0.2357952325127002,0.2430085270096969,0.2502977709715841,0.2563861822595235,0.2617705934762737,0.2683591374713504,0.273832759620048,0.2787843926756783,0.2835643372090201,0.2880704563650921,0.2918475337444802,0.2960717009916094,0.2997801345059493,0.3030702332323099,0.2998600796469702,0.297383105637868,0.2947213045617488,0.2922591065093877,0.2894627670607758,0.2859805089664864,0.2837338554331007,0.2840251202041016,0.2839002498852567,0.2838914621377487,0.2842489342293873,0.2849384362010823,0.2855687464914652,0.2879174525685121,0.288828987858114,0.290092511240891,0.2909398814563929,0.2948606271777003,0.2994728445585073,0.3030433590536994,0.3079407806191117,0.3119716104790732,0.3150650960942343,0.3163782816229117,0.3250620347394541,0.3269320297951583,0.3331338818249813,0.3398782642843118,0.3494938732019179,0.3539453717754173,0.0,2.393331741872675,48.63287781265333,147.75125254787258,200.5811509148493,fqhc5_80Compliance_implementation,57 -100000,95769,47849,455.75290542868777,4886,49.82823251782936,3866,39.87720452338439,1454,14.869112134406748,77.32840490063373,79.68782331651018,63.31625382636724,65.06419818834858,77.1343475105923,79.49624157240943,63.2416144182057,64.99292539426916,0.1940573900414222,191.5817441007448,0.0746394081615378,71.27279407941955,241.15212,169.02870348731312,251806.03326755005,176496.26025886572,483.08869,322.0360450098903,503962.15894496127,335794.3332496845,464.78194,227.18911465798217,482108.83480040514,234816.26594344384,2736.92942,1287.1358635451822,2824927.7323559816,1311083.4231799245,890.22013,407.76850059911976,918316.4489552988,414550.4814701197,1414.2984,613.6262916434761,1447821.883908154,615993.9991682743,0.38065,100000,0,1096146,11445.728784888635,0,0.0,0,0.0,41661,434.5247418266871,0,0.0,42043,435.7777568941933,1115346,0,40013,0,0,9508,0,0,78,0.8144597938790213,0,0.0,1,0.0104417922292182,0,0.0,0.04886,0.1283593852620517,0.2975849365534179,0.01454,0.3597716984845502,0.6402283015154497,23.128599618480376,3.9713739892834647,0.3060010346611485,0.276513191929643,0.2170201758923952,0.2004655975168132,11.04843208768491,6.039820009157857,15.697743764609502,11530.225766330588,44.54345528934295,13.289283845957726,13.410682053833208,9.374480018398229,8.46900937115379,0.5851008794619762,0.8297474275023387,0.68385460693153,0.567342073897497,0.1161290322580645,0.7412060301507538,0.9290322580645162,0.8111455108359134,0.7192982456140351,0.1516853932584269,0.5153443113772455,0.7533112582781457,0.6360465116279069,0.5106382978723404,0.1055276381909547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.0047566887766486,0.007229013523941,0.0095530396959287,0.0114850155642815,0.0135165417209908,0.0157346222874857,0.0179178535330331,0.0200783094963043,0.0223250386414584,0.0245200045103687,0.0266554404411085,0.0288881804251468,0.0309831590873976,0.0329604557087426,0.0348965816648233,0.0368208026665838,0.038912684996007,0.0408508957891673,0.0429846580079365,0.057764370635575,0.0719156591222859,0.084847595180925,0.0983454916223432,0.1104355248321864,0.1260940340788973,0.1374651352698503,0.1473317865429234,0.1585272063064795,0.1682841302692674,0.1793584799982766,0.1896296135992295,0.2003133636541683,0.2091522568931762,0.2183987759100866,0.227971067468625,0.2370233139515418,0.2456019899377581,0.2533549808124616,0.2586973461062474,0.2648328376517422,0.2707473126454797,0.2761327445153499,0.2808349829044448,0.2858306089957828,0.2894581135052512,0.2933117745857461,0.2969165913114357,0.2999663002903359,0.3024504823108694,0.2999784488564424,0.2971853849116821,0.2950697281307226,0.2927058076434591,0.289712410731519,0.2857427106451366,0.2826864066306033,0.2820125703595517,0.2824904051172708,0.282388176777851,0.2826671647366455,0.2827970540742783,0.2832094292080548,0.2830083689458689,0.2837760229720029,0.2852368986866305,0.2881207179661401,0.2935490911358464,0.2978139227748236,0.3016472068247042,0.3051839841462865,0.30897583429229,0.3118965090368903,0.3138959676210463,0.3188432662897395,0.3244030285381479,0.330326266726808,0.3370176848874598,0.3451665756417258,0.355324074074074,0.0,1.9544382323325535,52.24100979579235,143.91360012238496,191.5730205173396,fqhc5_80Compliance_implementation,58 -100000,95735,48037,457.4189168015877,4929,50.29508539196741,3891,40.12116780696715,1507,15.375776884107172,77.31464774318667,79.68022270248244,63.30648041847581,65.05577695654526,77.11985144999555,79.48879724046203,63.232943427028175,64.98621403964769,0.1947962931911178,191.4254620204048,0.0735369914476322,69.5629168975671,244.25258,171.16767086199118,255134.0471092077,178793.20087950196,487.26204,323.6664263561989,508443.2548179872,337559.4467605357,463.81292,225.9748402154695,481325.70115422783,233628.4141348637,2748.12578,1287.0191228234128,2832908.8943437613,1306866.8987675328,911.02165,412.91250572072187,938885.1621663969,418656.6188684429,1462.49208,621.039362604708,1493231.984122839,619025.1110044433,0.38305,100000,0,1110239,11597.002141327624,0,0.0,0,0.0,41953,437.6664751658223,0,0.0,41992,435.4624745390923,1099706,0,39426,0,0,9860,0,0,75,0.7834125450462214,0,0.0,2,0.0208910012012325,0,0.0,0.04929,0.128677718313536,0.3057415297220531,0.01507,0.363883495145631,0.6361165048543689,23.44382506565569,4.111525421276805,0.3014649190439475,0.2832176818298638,0.2076586995630943,0.2076586995630943,11.417328379088312,6.187044528946127,16.039337707969107,11542.018963333414,44.63786504028533,13.50682091470009,13.307283666403062,9.043270664368706,8.78048979481347,0.5803135440760729,0.7894736842105263,0.6973572037510657,0.594059405940594,0.1113861386138613,0.7536606373815676,0.92,0.8539682539682539,0.776255707762557,0.1242937853107344,0.5065934065934066,0.6993865030674846,0.6398601398601399,0.5263157894736842,0.1077654516640253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109811072278,0.0047550972817876,0.0069327432550396,0.0090031500863733,0.0110382013327229,0.0133664778515831,0.0154966792830107,0.0176941455146923,0.0198209065074724,0.0218869006183203,0.024207439609564,0.0262652606503681,0.0285446840026333,0.0308500772797527,0.0327735169338439,0.0349223087181713,0.0370723220942755,0.0390171011124024,0.0413841866655575,0.0433926487747957,0.0578027439597385,0.0717739909562887,0.0848947732852137,0.0979513713612653,0.1110302646841716,0.12658281410331,0.138076335229685,0.1484454855195911,0.1585822092053787,0.1675000536515226,0.1796497584541062,0.1910829405709951,0.201612288250994,0.2113730260490296,0.2206566558620537,0.2295598880845583,0.2376462429814554,0.2456583517524471,0.25262702997771,0.2592554315373662,0.2653032832498608,0.2713671458531042,0.2765069808234764,0.280451218048722,0.2843025234599115,0.2885485641006671,0.2923140433836223,0.296652299398609,0.3002753752472559,0.3038543079495924,0.3015358980905414,0.2978405019151302,0.2953913556323195,0.2922735589459884,0.2892180850275072,0.2854523227383863,0.2812811073014268,0.2814809958533427,0.2829107773098498,0.2833268073897412,0.283488398161641,0.2840602540120114,0.2850685331000291,0.2850155624722099,0.2856288714036304,0.2872356965174129,0.2879845621204381,0.291976504405424,0.2970583115752828,0.3015966883500887,0.3066582175349658,0.3095803642121932,0.3140739810337248,0.3179744525547445,0.324765478424015,0.3211756373937677,0.3234172387490465,0.3248212461695607,0.3179444902445726,0.312043093497499,0.0,2.0783794806628166,50.70127320415087,144.38247934786952,198.54110875091217,fqhc5_80Compliance_implementation,59 -100000,95825,47757,454.3386381424472,4976,50.83224628228542,3928,40.52178450300026,1499,15.350900078267674,77.3504688262772,79.68227925001175,63.33176974345843,65.05991062060171,77.15368156122,79.48678705322259,63.25724411209,64.98752594926788,0.1967872650571962,195.49219678916077,0.0745256313684308,72.38467133383608,243.35828,170.5193118974108,253960.699191234,177948.23010635088,488.56768,324.43920530104384,509411.1035742238,338132.5833759916,460.39813,224.58354367387196,477462.79154709104,232045.20573955053,2775.96204,1303.4533845783487,2864896.164883903,1328302.0119774055,917.15055,422.4979930101179,940151.1818418992,424120.99698483234,1465.22602,633.8767461693824,1501329.548656405,637597.1244749655,0.38166,100000,0,1106174,11543.668145056092,0,0.0,0,0.0,42034,438.1737542394991,0,0.0,41615,431.2340203495956,1107108,0,39726,0,0,9787,0,0,92,0.96008348552048,0,0.0,1,0.0104356900600052,0,0.0,0.04976,0.1303778231934182,0.3012459807073955,0.01499,0.3630560928433269,0.6369439071566732,23.328200156599884,4.151663777707959,0.3057535641547861,0.2828411405295316,0.1975560081466395,0.2138492871690427,11.205675529458889,5.900635517644634,16.164111079961824,11560.723702255948,44.89266801492229,13.65904214492889,13.427913029472514,8.570528511305058,9.23518432921583,0.5819755600814664,0.8028802880288028,0.7002497918401333,0.5747422680412371,0.1273809523809523,0.7422594142259414,0.897119341563786,0.8689024390243902,0.6974358974358974,0.1612903225806451,0.5118916941090377,0.7296,0.6368843069873997,0.5335628227194492,0.1177370030581039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387908503353,0.0045019924358415,0.0068608545620623,0.0090934029647541,0.0114225847793803,0.0135564563769326,0.0155320993320075,0.017788579364431,0.0198151404850517,0.0220911901398358,0.0242711975636516,0.0265441289726343,0.0289075595684947,0.0308444902162718,0.0326822325811641,0.0347264555457973,0.037037037037037,0.0391843677397942,0.0411310519697804,0.0432216358015052,0.0576122672508214,0.0718228578597415,0.0852999119755208,0.0982580007985038,0.1105070746020207,0.1266208033478109,0.1382312088471366,0.1487001106288826,0.1583234581344948,0.1679222435354758,0.1794330973032305,0.1904797941577115,0.2004432325558657,0.2103577557467181,0.2186248624862486,0.2270370288297471,0.2359210731903305,0.2437122311873333,0.2518708622432177,0.2586645286908716,0.264177360193467,0.2707064092519616,0.2766118537797232,0.2817014446227929,0.2864761765920742,0.2900035758763979,0.2942863224853182,0.2978582524766343,0.301429829560172,0.3043610253161215,0.3009635469307998,0.2977938138650949,0.2959121845364747,0.2931988614197575,0.2903029403029403,0.286442234123948,0.2827080992990839,0.2826186804894852,0.2831485587583148,0.2846855839155853,0.2850529223991487,0.2870215487552888,0.2884402827886801,0.2882038726908524,0.2900213127708997,0.2927917412393329,0.2934465675866949,0.2986546805256422,0.3029829496128068,0.3072471755304491,0.3139796561346656,0.3178505897771952,0.321255438160348,0.3251819068336959,0.3270819793891004,0.3296395660795521,0.3301673450927182,0.3367834394904458,0.3424657534246575,0.3403693931398417,0.0,1.8195540240536423,52.21782702040747,139.9862707680463,202.8522976171353,fqhc5_80Compliance_implementation,60 -100000,95727,47834,456.736343978188,4843,49.557596080520646,3837,39.60220209554253,1508,15.41884734714344,77.30949638025908,79.66900318921054,63.31695901961641,65.05925046375384,77.11842382363126,79.48078187434888,63.24434150896211,64.9901963809777,0.1910725566278159,188.22131486166427,0.0726175106543038,69.0540827761481,243.87792,170.81112110345023,254763.98508257855,178435.67760762403,486.29239,323.57853682361616,507530.6548831573,337553.685818647,465.21612,226.62616912258383,483142.35273224895,234589.94824778909,2692.46255,1257.2634533084988,2778547.50488368,1279284.9178481505,894.69023,403.917762273396,919643.308575428,406964.0564035174,1464.92656,622.2761849075632,1498399.699144442,621983.1057420778,0.38207,100000,0,1108536,11580.181140117207,0,0.0,0,0.0,41853,436.7210922728175,0,0.0,42130,437.2434109498888,1101349,0,39587,0,0,9856,0,0,84,0.8774953774797078,0,0.0,0,0.0,0,0.0,0.04843,0.1267568770120658,0.311377245508982,0.01508,0.3787818471337579,0.621218152866242,23.36974737705078,4.062257429649141,0.3070106854313265,0.2827729997393797,0.2038050560333593,0.2064112587959343,11.32713191589101,6.116719380574331,16.042597863575885,11476.198779943814,44.06774185973052,13.29136132270625,13.544394799020068,8.659469413376907,8.57251632462728,0.5853531404743288,0.7963133640552995,0.7088285229202037,0.5664961636828645,0.1313131313131313,0.7449956483899043,0.8852813852813853,0.8514285714285714,0.7100591715976331,0.1726190476190476,0.5171130952380952,0.7303370786516854,0.6485507246376812,0.5269168026101142,0.1201923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204737646975,0.0044805774065363,0.0068074831588345,0.0087551799788738,0.0106846947593147,0.0129266033568455,0.0151353004127809,0.0174242346912735,0.0196537345161685,0.0214919507527299,0.0235344765731506,0.0256383929029807,0.0279080289568937,0.0300717809291356,0.0321053608630185,0.0340751761618415,0.036048437176568,0.038009997718363,0.0400349214267897,0.04212675528147,0.0563492063492063,0.0702630284380527,0.0828718271449549,0.0955235180920533,0.1077917558604253,0.123351418811012,0.134820253809261,0.1463427616381191,0.1564526294424919,0.1656354882638673,0.1776087565447846,0.1890548879506333,0.2003634662052604,0.2097729138166894,0.2188838366600975,0.2284960539150483,0.2372101335954604,0.2446889995269098,0.2514994547437295,0.2580870721474587,0.264436212086131,0.2702629978005522,0.2764944767407442,0.2815749391348149,0.2860162799173855,0.2899535216303182,0.2933546797413415,0.2963043063418357,0.3001489347924626,0.3022709268550304,0.2994301572119465,0.2959192097080432,0.2935647958968,0.2912136307847809,0.2894381154663062,0.2850275566442131,0.2801026388316913,0.2799356733782963,0.281367976904286,0.2817857142857143,0.2829209821512183,0.284761923601907,0.285645472061657,0.2853696132966959,0.2860819782545944,0.2864645624252509,0.2867810522715613,0.2924758802155118,0.2961578763534754,0.3003781314006617,0.305440086752214,0.3122066965462694,0.3161677395162802,0.3234470757357948,0.3263875911044664,0.3280112702512326,0.3296352583586626,0.335029513535518,0.3423719528896193,0.3416220351951033,0.0,1.8653707612777009,50.32942551598084,142.23583064067674,196.0938540450697,fqhc5_80Compliance_implementation,61 -100000,95731,47673,454.1162214956493,4952,50.43298409083787,3907,40.20641171616301,1383,14.039339398940784,77.40440741590693,79.76338652116175,63.3594678928421,65.10005901954071,77.23036302508025,79.59273955781988,63.29353137846101,65.0376472454827,0.1740443908266797,170.64696334186635,0.0659365143810859,62.41177405800613,243.24102,170.29972956853476,254087.80854686568,177893.82206820836,487.1086,324.51643453408514,508222.8118373359,338381.74756180577,468.02444,228.80882207268112,485283.2520291233,236162.22874226852,2703.5002,1268.712995665258,2782414.8812819254,1283781.6637629166,879.72215,406.9686095756576,900848.9517502168,407061.7623774791,1341.7413,574.160516844391,1364022.166278426,569395.228125335,0.38042,100000,0,1105641,11549.44584303935,0,0.0,0,0.0,41910,437.1520197219292,0,0.0,42432,439.60681492933327,1109129,0,39762,0,0,9620,0,0,79,0.8252290271698823,0,0.0,0,0.0,0,0.0,0.04952,0.130171915251564,0.279281098546042,0.01383,0.3550203923091862,0.6449796076908137,23.35279915664452,3.9580445002269182,0.3191707192219093,0.2935756334783722,0.1963143076529306,0.1909393396467878,11.40574417390984,6.185002295066171,14.80421489341368,11494.440262527334,44.78991585481577,14.2417142391579,14.016469992425275,8.400183842280136,8.13154778095246,0.5909905298182749,0.8073234524847428,0.6888532477947072,0.5671447196870926,0.1193029490616622,0.7792313982011447,0.9252873563218392,0.8418079096045198,0.7554347826086957,0.2024539877300613,0.5052160953800298,0.7088,0.6282194848824189,0.5077186963979416,0.0960548885077186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400862636305,0.0046110970357233,0.0067969241382108,0.0092012390189407,0.0113062133336044,0.0133550488599348,0.01548025477707,0.0177647623031948,0.0196991989537354,0.0219186492709132,0.0242182615736233,0.0264489444028204,0.0284462995137296,0.0305183903428812,0.0324607653971955,0.0342991823190712,0.0364110848763514,0.0385473179738799,0.0408937386334112,0.0430792946494599,0.0578924838955534,0.0720400175809456,0.0852503382949932,0.0989990747750021,0.1110794885579061,0.1265173624328553,0.1376010524305629,0.1485270789638982,0.1577637229973718,0.1670151734491448,0.1793237131165194,0.1910950010820168,0.2017575342316769,0.2112369623685303,0.2201077989220107,0.2300453891287501,0.2390831520829847,0.2460267505900865,0.252938975864688,0.2594185820357637,0.2651376040836596,0.2699873984878185,0.2749156302362353,0.279819471308833,0.283294003751437,0.2871487669248616,0.2910449623234692,0.2944085203499429,0.298063650554072,0.3004073052161345,0.2982496113225754,0.2956301369863013,0.2923734753960465,0.2889572580761102,0.2857185062632947,0.2819970157434757,0.2783367184670854,0.2781566068515497,0.2788329344671317,0.2790297700313835,0.2792031279091417,0.2800448386398946,0.2814022232399351,0.2822498335921899,0.2836258704569303,0.2853780295388117,0.2864671401194905,0.2918661774765251,0.2973179278997953,0.30202816680397,0.3063544849901132,0.3112322448765658,0.3172349659020458,0.3175862843452871,0.320754716981132,0.3266535387466697,0.3325812274368231,0.3374208860759494,0.3418478260869565,0.3498069498069498,0.0,2.3058682743029344,53.22973415909762,137.6499813928841,197.8318395707038,fqhc5_80Compliance_implementation,62 -100000,95740,47353,450.9818257781492,4939,50.3029036975141,3952,40.60998537706288,1496,15.197409651138502,77.33232137485312,79.69648739628522,63.31916690730778,65.07055529517348,77.13916113623641,79.50949904844755,63.24498307209129,65.00129364644563,0.1931602386167128,186.98834783766927,0.0741838352164947,69.26164872784568,244.16766,170.95111789252792,255030.87528723627,178556.84901191358,481.72081,320.79557386663555,502473.6996030917,334393.7012918385,461.46609,225.73605240248963,477402.412784625,232301.09944629003,2764.77814,1302.5370346737782,2842375.600584917,1315774.040737118,897.25582,409.18949465870537,923552.9245874244,414296.21097772,1452.70138,626.7448824048637,1477544.0568205556,621476.6647304235,0.37879,100000,0,1109853,11592.312513056197,0,0.0,0,0.0,41453,432.23313139753503,0,0.0,41814,432.23313139753503,1106085,0,39642,0,0,9569,0,0,86,0.898266137455609,0,0.0,0,0.0,0,0.0,0.04939,0.130388869822329,0.3028953229398664,0.01496,0.3835563312003102,0.6164436687996897,23.005674519915047,4.052879962447552,0.2990890688259109,0.2884615384615384,0.2125506072874494,0.1998987854251012,11.538538062659509,6.371407743864879,16.0238200439876,11451.7090734477,45.28166259206579,13.986411758282252,13.330964682163923,9.28587603797514,8.678410113644484,0.5812246963562753,0.8096491228070175,0.6996615905245347,0.5392857142857143,0.1189873417721519,0.7443419949706622,0.9188034188034188,0.8674698795180723,0.714975845410628,0.1182795698924731,0.5106922798115259,0.7336309523809523,0.6341176470588236,0.4818325434439178,0.119205298013245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025842150066885,0.0047266936473643,0.0068434733165461,0.0091775754126351,0.0115467567347603,0.0135899186031112,0.0159194745859508,0.0182339789073905,0.0201421195235417,0.0222972972972973,0.0243369862732836,0.0264460094860686,0.0283396230295427,0.0303208198156444,0.0322720425891917,0.0343754844710867,0.0365304368534951,0.0387484308701019,0.04068758379148,0.042755517596942,0.057406827435014,0.0715481521784623,0.084235368156073,0.0970347003154574,0.1083754230943619,0.1236870220125453,0.1351167800333202,0.1459016393442622,0.1553825285441165,0.1646238807570639,0.1761867318691498,0.1872084843893728,0.1982592612740031,0.2081555861827569,0.2167994541773043,0.2263315247480899,0.2345045356660678,0.2426588060574694,0.2510382389651651,0.2582651016318351,0.2634782508071328,0.2693553858210614,0.274924578527063,0.2785585067510093,0.2832477324882526,0.2881938456231984,0.2920392720905509,0.2951853169962886,0.2984333156526126,0.3005785679454907,0.297738456987657,0.2950657487942619,0.2931456376216459,0.2906406781615824,0.2891468042215107,0.286133260012831,0.282676742127229,0.282913577822508,0.2822422912733643,0.2838124054462935,0.2844131069050647,0.2845590990671163,0.2852098698368259,0.285433905033789,0.287037037037037,0.2874837704492339,0.2881091949140543,0.2909734624181471,0.2952570411475238,0.2976214034115645,0.3010543463505136,0.3043961864406779,0.3103426595410248,0.3144220572640509,0.3172951885565669,0.318869241507678,0.321599045346062,0.3245804540967423,0.3312751677852349,0.3285498489425982,0.0,2.6280862460736443,51.3504404772391,143.6288678113333,203.28077919162905,fqhc5_80Compliance_implementation,63 -100000,95723,47890,456.9121318805303,5027,51.24160337640902,3999,41.170878472258494,1522,15.429938468288707,77.41699606751023,79.76951102932554,63.36600846061516,65.10037650767022,77.21216819307452,79.57195090761721,63.28811853605024,65.02858964492518,0.2048278744357077,197.56012170833517,0.0778899245649284,71.78686274504287,244.23168,171.1247813964165,255144.19731934852,178770.80889275984,489.77078,326.0255864811447,511057.4783489861,339995.98474885325,470.83302,229.6215955158389,488514.4009276767,237297.6489199598,2797.23461,1318.956952767545,2879024.8738547685,1334965.4246909043,917.89375,426.2427167589712,943188.7947515228,429668.0763937034,1478.59404,640.8209263203817,1500566.3215737075,629976.1162361532,0.38054,100000,0,1110144,11597.463514515845,0,0.0,0,0.0,42170,439.9047250921931,0,0.0,42549,441.2001295404448,1101032,0,39498,0,0,9701,0,0,95,0.9820001462553408,0,0.0,0,0.0,0,0.0,0.05027,0.1321017501445314,0.3027650686294012,0.01522,0.3581804281345566,0.6418195718654435,22.995535771806207,4.066343053829796,0.3163290822705676,0.2835708927231808,0.1997999499874968,0.2003000750187547,11.584403649813218,6.336687520757875,16.274659556533173,11495.531060540694,45.8535724708401,13.995322055871924,14.29177605273352,8.760456449653569,8.806017912581092,0.5863965991497875,0.8156966490299824,0.6877470355731226,0.5619524405506884,0.1260923845193508,0.7463768115942029,0.9191919191919192,0.8708791208791209,0.6538461538461539,0.1791044776119403,0.5143271672107363,0.7355242566510172,0.6137624861265261,0.5348460291734197,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0043157158921678,0.0066638266796494,0.0087734440845256,0.0109402960793883,0.0133146033103279,0.0151159946181758,0.0174525413349663,0.0197334804913442,0.0216374927107737,0.0238041562487191,0.0259344403620763,0.0282383659371498,0.0303897842541578,0.0325159639766033,0.0346078330060969,0.0366405416878047,0.0386047524711397,0.0405649787977051,0.0424020169608067,0.0571073543078513,0.0704636537716994,0.0841000891779887,0.0973821769265558,0.1098664641478387,0.125793281435099,0.1366437883883013,0.1484730102296073,0.1583294157869994,0.1677444955653507,0.1797329312944217,0.1905405990304709,0.2016674275527729,0.2101899695218536,0.2187805601643793,0.2271510135434186,0.2359052098892034,0.2436754739882444,0.2512839699329954,0.2586358799501127,0.2644617589938037,0.2697116283417461,0.2754553298112493,0.2805648635710866,0.2845186254412246,0.2883360823219517,0.292682317370282,0.2961132986155214,0.3000245519273263,0.3028487139301189,0.3003076427045689,0.2959283097064595,0.29262361903691,0.2902429874177537,0.2887396004804912,0.284762748632711,0.2806868170852845,0.2807739407298555,0.2807109873692788,0.2807427882911616,0.2820961023504909,0.2829896503057864,0.2852656100503348,0.2856889676561808,0.2875474038209268,0.2892096006621146,0.2894751708942997,0.293850367235155,0.2988150258887306,0.3029255841350873,0.305323262296556,0.3097888877218779,0.3131181190520619,0.3171026765461969,0.3208422224283461,0.324610374505699,0.3290303212248574,0.3322141023108829,0.3393810032017075,0.3465530022238695,0.0,2.3520329289974344,53.8955342673042,144.18706146500574,200.63417320847097,fqhc5_80Compliance_implementation,64 -100000,95698,48206,458.8810633451065,4988,50.99375117557316,3973,40.96219356726369,1501,15.277226274321304,77.3508434030137,79.74173564960338,63.31502979323547,65.0829395859471,77.15976282582047,79.55465972947357,63.24279344652994,65.01489484373431,0.1910805771932331,187.07592012981425,0.0722363467055231,68.04474221279122,243.84404,170.81365196117702,254805.78486488748,178492.39478482,489.02759,325.3195932107964,510475.2241426153,339407.9115663823,473.45717,231.06331997913617,491365.1173483249,238838.0143364685,2811.67728,1317.9422111798872,2900871.491567222,1339987.1796483598,922.46093,420.62779260666514,949602.7398691718,425210.2370025121,1456.0952,620.8467193707505,1483870.425714226,617204.5532322736,0.384,100000,0,1108382,11582.081130222155,0,0.0,0,0.0,42060,438.9433425985914,0,0.0,42761,443.4575435223307,1101052,0,39513,0,0,9560,0,0,103,1.076302535058204,0,0.0,0,0.0,0,0.0,0.04988,0.1298958333333333,0.3009222133119487,0.01501,0.3590830283182431,0.6409169716817569,23.365354052458247,4.085130660210767,0.3171406997231311,0.2791341555499622,0.198338786810974,0.2053863579159325,11.703520759851004,6.519106549812101,15.961001392118856,11644.611683775734,45.5547405119228,13.593413589965444,14.29744067324669,8.790767337132163,8.873118911578496,0.5889755852001006,0.8088367899008115,0.7023809523809523,0.5977157360406091,0.1066176470588235,0.7576530612244898,0.91220556745182,0.8771428571428571,0.7311827956989247,0.1271676300578034,0.518055058991777,0.7336448598130841,0.6351648351648351,0.5564784053156147,0.1010886469673405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020867733014577,0.004360568293598,0.0069638307159751,0.009218229124319,0.0116279069767441,0.0139259591287871,0.0161380815881014,0.018373266335764,0.0203822828565876,0.0225517707543884,0.0250230745564557,0.0271155801604338,0.0293146542413676,0.03142418528936,0.0338503772046606,0.0358715653234643,0.0382081140441755,0.0403657726480112,0.0421685493769373,0.0439786100716124,0.0584911375481768,0.0732825866166877,0.0864184572106351,0.0992688443532691,0.1109399888184474,0.1264375112408882,0.1387677121477471,0.1491412081651776,0.1593219252022787,0.168460473650889,0.1802886429041054,0.192394293013488,0.2028942930199662,0.2119398084815321,0.2208642994770162,0.2302284320248392,0.2384435015631978,0.2462816803089498,0.2536059057353776,0.260041265474553,0.2669290882778581,0.2724728967148243,0.2777540867093105,0.2825085754035837,0.2864781441018848,0.2914202641435048,0.2949575524186994,0.2989765431313966,0.3031886006878895,0.3074326996598729,0.3046181172291297,0.3012038258575198,0.2990161630358398,0.2956985373585993,0.2924866096528867,0.2883791162698473,0.2845882204565519,0.2844023204510172,0.2851552530837941,0.2860543190578539,0.2868646200301962,0.2872561717492837,0.2870262632978723,0.2886513340282552,0.2897002360909069,0.291577287881529,0.292987539028438,0.298413880870348,0.302355386214063,0.3068669527896995,0.3109480560153908,0.3145549738219895,0.3170988956446209,0.3219765342960289,0.3279739776951673,0.3344697860333882,0.3307169811320755,0.3322174084285151,0.3356475300400534,0.325113808801214,0.0,2.15821849498682,51.04140024532835,149.17943915358435,202.98988631522693,fqhc5_80Compliance_implementation,65 -100000,95717,47704,454.1826425817776,4925,50.24185881295904,3902,40.10781783800161,1454,14.83540019014386,77.26691653433518,79.6273851333244,63.2951211478972,65.0394255553852,77.08976788354954,79.45402233765202,63.22861644903187,64.9770154084132,0.1771486507856394,173.3627956723751,0.0665046988653301,62.41014697199887,243.93578,170.9078003737009,254850.82064836967,178555.11516829918,485.06608,322.0433058043968,506098.4778043608,335782.29179960384,468.41488,228.73655440893384,484902.22217578907,235622.1663049296,2691.11177,1263.8768629041133,2768921.926094633,1277927.1694172856,892.43147,408.7537325483268,915965.7114201238,410684.2219668455,1406.22052,589.0028152942033,1435330.5055528276,585810.4910215575,0.38073,100000,0,1108799,11584.128211289531,0,0.0,0,0.0,41730,435.2936260016507,0,0.0,42378,438.3547332239832,1101863,0,39595,0,0,9628,0,0,84,0.8671395885788313,0,0.0,3,0.0313423947679095,0,0.0,0.04925,0.1293567620098232,0.2952284263959391,0.01454,0.3634948433547382,0.6365051566452617,23.064478004397422,3.9822119369055593,0.3147104049205536,0.292157867760123,0.1998974884674526,0.1932342388518708,11.566308243192308,6.41515979022731,15.40780527465461,11571.749720541196,45.13570558748136,14.17604736333981,14.02090115266471,8.745642031276827,8.193115040200002,0.5927729369554074,0.8219298245614035,0.6938110749185668,0.5615384615384615,0.1140583554376657,0.7745098039215687,0.9238476953907816,0.8543956043956044,0.7238095238095238,0.1589403973509933,0.5097087378640777,0.7425897035881436,0.6261574074074074,0.5017543859649123,0.1028192371475953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0046436646422451,0.0069204854487153,0.0090104732784104,0.0113296584830055,0.0135521774103224,0.0157500382282481,0.0178846683884402,0.0200157427189924,0.0220991647559777,0.0242944860742365,0.0266621493983819,0.0287212710165047,0.0306526038233355,0.0329522944866292,0.0350209836472266,0.0369998343136442,0.039072064407694,0.041194997972994,0.043323782234957,0.0576404987156193,0.0709911758240608,0.0841868860716984,0.0976461799088776,0.1097582848883215,0.1255767684036743,0.1364900732561843,0.1482372989668761,0.1581406787998032,0.167353642042893,0.1801325931116261,0.1916726256256907,0.2027394873805013,0.211338851662068,0.219672347879736,0.2297295797778492,0.2377822490498546,0.2464523830975763,0.2546185377374558,0.2611346006210397,0.2671987969228989,0.2733876911198717,0.2784023668639053,0.2831631430078143,0.2874216586503425,0.2918848974058783,0.2946339142628205,0.2982069913340035,0.3015480277220027,0.3041209190481853,0.3010549604727086,0.2982161074195594,0.2950065610317046,0.2927199410310888,0.2895686927065535,0.2854823641125388,0.2816852312518815,0.2819392665341851,0.2819767938618226,0.2820851321939558,0.2828906732550957,0.2831168318395388,0.2841606772415816,0.2847126077441829,0.2877133926424621,0.288270222407417,0.2889420748212098,0.2936195662438225,0.2970930027197909,0.3010520420816833,0.3064685714285714,0.3094920854873954,0.3139103652020868,0.3181508147025388,0.3254835996635828,0.3321608629382108,0.3325272067714631,0.3381912557396686,0.3389599782194391,0.3459480122324159,0.0,2.566224951529512,52.98734142990274,143.10251042217007,194.92572538165356,fqhc5_80Compliance_implementation,66 -100000,95704,47332,449.6259299506813,4946,50.53080331020647,3927,40.46852796121375,1484,15.129984117696232,77.288290147924,79.65725526845856,63.294707477804174,65.0438959915434,77.09567520869642,79.4680083321868,63.22128633784507,64.97388200113357,0.1926149392275817,189.2469362717577,0.0734211399591018,70.01399040981937,242.01364,169.53233552196042,252877.24651007276,177142.3718151388,481.71814,321.077134758476,502780.7301680181,334928.8062760971,464.50805,227.28651833873275,481872.9624676085,234733.4258664144,2754.49811,1303.0291815804485,2839138.38502048,1322515.330164307,901.16238,418.9381688228011,925820.7075984284,421952.0244887188,1442.54608,618.8789948743971,1472134.351751233,618284.822030139,0.37768,100000,0,1100062,11494.420295912398,0,0.0,0,0.0,41479,432.8241243835159,0,0.0,41966,434.9974922678258,1109533,0,39867,0,0,9591,0,0,101,1.0553372899774305,0,0.0,1,0.0104488840591824,0,0.0,0.04946,0.1309574242745181,0.3000404367165386,0.01484,0.3526336173508907,0.6473663826491092,23.156876295593797,4.043665447044993,0.3139801375095493,0.2844410491469315,0.2006620830150242,0.200916730328495,11.331572846595362,6.142579028112596,15.920835728648466,11480.550494381005,45.45337826156587,13.877591200569736,14.206350658648866,8.802051152333435,8.567385250013835,0.5961293608352431,0.8155774395702775,0.7193836171938361,0.5774111675126904,0.1115335868187579,0.7776037588097102,0.9289827255278312,0.8654353562005277,0.7619047619047619,0.1257485029940119,0.5086792452830189,0.7164429530201343,0.6545667447306791,0.5103806228373703,0.107717041800643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021369469004142,0.0045113086850295,0.0067581280188334,0.0089904305247973,0.0113599381661378,0.0137767414391756,0.0161191655961338,0.0184964017761445,0.0208833781394065,0.0228317044466049,0.0250886506651362,0.0273757467512471,0.029703581085944,0.0318019381880722,0.0338727810956049,0.0357681734565221,0.0378124288169638,0.0399331679828976,0.0420922347263536,0.0441361916771752,0.059154046997389,0.0730162386272025,0.0858468190500178,0.098543525846102,0.1103862515966262,0.1260468612690446,0.1373367314431347,0.1472377603750466,0.1569914778498946,0.1668241560003436,0.1789496387361156,0.1901630464221873,0.2014921309154277,0.2101984057463209,0.2190047142794202,0.2283929383828408,0.2362070893436207,0.2442775635387772,0.2515756183022001,0.2582593617583225,0.2632903465231711,0.2685480467101252,0.2736880812298349,0.2785670537655069,0.2832901191736965,0.2869246254739468,0.2906719883525366,0.2940403937369307,0.2968983290705373,0.2999272631091714,0.2977530361643909,0.2934876989869754,0.290292523153377,0.2883797006629418,0.2853846955330961,0.2816253983819564,0.277927257763287,0.2792429311815259,0.2796332342997644,0.2795883055956904,0.2807375514788469,0.2809764176985567,0.2815734989648033,0.2828539010878996,0.2836586646303632,0.2852459016393442,0.2863722415303326,0.2912269747112082,0.2954656435298221,0.2982123830945898,0.302863885989198,0.3068259927034315,0.310983596332564,0.3159481459149834,0.3199742030587801,0.3196702275894101,0.3313883901855176,0.3320747217806041,0.3362808145766345,0.3298585256887565,0.0,2.1483267011344607,55.85447049559105,140.43342577043703,192.43469881729624,fqhc5_80Compliance_implementation,67 -100000,95821,47780,454.4932739169911,4992,50.917857254672775,3997,41.03484622368792,1518,15.361977019651224,77.36488025655099,79.68032539507624,63.35773544642036,65.0715057183468,77.16954621657592,79.49129988109144,63.28339987891184,65.0027559130692,0.1953340399750658,189.02551398480227,0.0743355675085126,68.74980527760499,243.03334,170.27239933233693,253632.4187808518,177698.2001172362,488.06365,324.58459104567146,508685.7369470158,338077.8052458975,464.14534,226.70324082818647,480349.077968295,233486.56012007955,2781.58286,1305.8114475373836,2855155.164316799,1315091.8127930022,902.66482,413.2593730153649,923070.7673683222,412321.09142606,1471.98322,632.5276641221508,1490366.454117573,620199.6883963177,0.38176,100000,0,1104697,11528.746308220536,0,0.0,0,0.0,42016,437.7850366829818,0,0.0,41951,433.87148954822015,1110329,0,39839,0,0,9920,0,0,98,1.0123041921916909,0,0.0,2,0.0208722513853956,0,0.0,0.04992,0.1307627829002514,0.3040865384615384,0.01518,0.3684514637904468,0.6315485362095532,23.312356236449972,4.089754905298899,0.3207405554165624,0.2777082812109082,0.1983987990993244,0.2031523642732049,11.57393003730673,6.392873245479389,16.31661897643827,11590.7040143735,45.84567496547197,13.599151769057023,14.492342852191952,8.857365772330521,8.896814571892488,0.5864398298724043,0.8081081081081081,0.6981279251170047,0.5838587641866331,0.1096059113300492,0.7583892617449665,0.915948275862069,0.8497109826589595,0.7647058823529411,0.1629213483146067,0.5133689839572193,0.7306501547987616,0.6420940170940171,0.5212224108658744,0.0946372239747634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991998379418,0.0045926436595157,0.0068897637795275,0.0092329256896761,0.0112974242686163,0.0137763206125524,0.0158107198923525,0.0179165730853257,0.0201790971540726,0.0224064691130559,0.0244127413602262,0.0264670265388641,0.0288084030504224,0.0310724578015644,0.0332223516435941,0.0354816397741232,0.0376201164703083,0.0394044263925729,0.0413789522870048,0.0433339575920261,0.0579829566196948,0.0721236764260105,0.085441612453775,0.0986915338247957,0.1107705917664528,0.1258368355472957,0.1374711328629843,0.1487583978229441,0.1587565739644339,0.1680448148068807,0.179714479360537,0.1920952205922098,0.2020687107499076,0.2114804945174959,0.2200780262651794,0.2300147076712116,0.2387599144461278,0.2467319527424644,0.254271834765771,0.260697586683891,0.2676534429409319,0.2729267324883878,0.2781019656019656,0.2824228511304805,0.2867421347019498,0.2913775284216743,0.2950104937037777,0.2984039919247324,0.3017892900975389,0.3045629177411715,0.3011590271155938,0.2984472177602043,0.2960232947432092,0.2943340691685062,0.2910851101740215,0.2867371448678916,0.2833449389124517,0.2830597504924491,0.2833988716019832,0.2848316011286117,0.2850491852519336,0.2857567176887586,0.2857412336777682,0.2864260976427215,0.2871268165385812,0.2880141254673868,0.2893797790994052,0.2916275577247982,0.295505382357053,0.3002178649237473,0.3041678041678041,0.3084196547144754,0.3100271344734019,0.3120756732016172,0.3157944277108434,0.3157956963821234,0.3225114854517611,0.3265761200081086,0.324700109051254,0.3272311212814645,0.0,2.619489017133056,51.34342750537702,148.45529761415386,204.61482618940053,fqhc5_80Compliance_implementation,68 -100000,95624,47364,451.6334811344433,5003,51.085501547728605,3957,40.65924872416967,1497,15.153099640257675,77.2563444549925,79.66720090798209,63.27473565930678,65.05593694691305,77.06054277692009,79.47961155380509,63.20011424239922,64.98808408800676,0.1958016780724136,187.58935417700684,0.0746214169075543,67.85285890629211,243.65132,170.65657084823235,254801.20053543043,178466.04415227586,481.96095,320.62940622599257,503232.0860871748,334519.4604677184,456.39276,222.74438696753907,473639.8289132436,230071.3935749441,2765.59546,1277.2875311607215,2842500.9307286874,1286271.5778493544,918.3499,413.69627926137616,939381.7869990796,411821.97528987593,1459.45978,621.1782258403351,1479291.684096043,607196.8144807084,0.37825,100000,0,1107506,11581.872751610475,0,0.0,0,0.0,41501,433.1757717727767,0,0.0,41318,428.37572157617336,1104147,0,39656,0,0,9598,0,0,79,0.8261524303522129,0,0.0,3,0.0313728771019827,0,0.0,0.05003,0.1322670191672174,0.2992204677193684,0.01497,0.3490783410138249,0.6509216589861752,23.457234603965123,4.0466911780834005,0.3073035127621936,0.2886024766237048,0.1956027293404094,0.2084912812736921,11.23321733322084,6.052380219916892,15.942525669776568,11542.684875626886,45.07891998445405,13.94406412230276,13.733232902221712,8.538299622603013,8.863323337326571,0.5797321202931514,0.8064798598949212,0.6891447368421053,0.5555555555555556,0.1272727272727272,0.7772848269742679,0.9247311827956988,0.8765432098765432,0.7595628415300546,0.1483870967741935,0.5010600706713781,0.725258493353028,0.6210762331838565,0.4923857868020304,0.1223880597014925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024307489745277,0.0047332840071759,0.0071443793827824,0.0093464590127294,0.0115169396683284,0.0137322616464451,0.0159233719601762,0.0181351914667538,0.0202115254792054,0.022547995164628,0.0248214578886882,0.0269864759320919,0.0294229680341792,0.031301873369694,0.0334383554568462,0.035336968781366,0.0371844710516767,0.0389549680569261,0.0408125039022664,0.0427154286667987,0.0564903846153846,0.0713582264688626,0.0842056634083344,0.0966943888830403,0.1097344759170923,0.1248835831004995,0.1369373003152498,0.1477501464401725,0.1590311477863052,0.1681602077721375,0.1808683838830366,0.1916484278501311,0.2020718051501024,0.2118010652521754,0.2207870993359952,0.2303269134706111,0.2382193389631452,0.2457285186186998,0.2530713368412678,0.2594168654799045,0.2654539974030792,0.2711107464366091,0.2768639635686586,0.2810133570151331,0.2854552534865042,0.2892290599345719,0.292692095634304,0.2960599228035311,0.2995254887724939,0.3018763286810241,0.2996832243715037,0.2962814929158167,0.2939133381337625,0.2914258398157403,0.2890623835987901,0.2856923360580173,0.2824259153499587,0.2814658859135469,0.2816215196170935,0.2815031180560533,0.2824153299358745,0.2835081180738655,0.2841760594421006,0.2852997634034195,0.2873982666314551,0.2894052817633604,0.2906209094530761,0.2952599052608464,0.2975272904823353,0.3012759924385633,0.3058052857465552,0.3090861206215433,0.3131799424784294,0.3155956407365652,0.3191567369385884,0.3198790275677562,0.3230266091868589,0.3283346487766377,0.3254390633315593,0.323719165085389,0.0,2.7608728205258166,48.35074560101854,145.52205145045463,210.4656662569841,fqhc5_80Compliance_implementation,69 -100000,95700,47628,452.675026123302,4901,50.12539184952978,3895,40.19853709508882,1492,15.266457680250785,77.32722884548278,79.7037905015653,63.32110870231941,65.07608073377817,77.1381540634869,79.51783084215351,63.25010810732359,65.00865695671985,0.1890747819958846,185.95965941177892,0.071000594995823,67.42377705832325,244.07636,170.87125669541263,255043.2183908046,178548.8575709641,485.70545,323.75365411747754,507041.473354232,337812.84651774034,462.14232,225.28328720747865,480157.4817136886,233273.19884109905,2768.55008,1279.3355285014502,2859413.4273772207,1303285.3693850057,874.92238,396.3504471582913,899948.6938349007,399873.5289010352,1462.38428,619.572120072668,1497709.7805642637,619983.4285570033,0.38031,100000,0,1109438,11592.87356321839,0,0.0,0,0.0,41858,436.8756530825496,0,0.0,41846,434.440961337513,1101494,0,39586,0,0,9540,0,0,87,0.9090909090909092,0,0.0,0,0.0,0,0.0,0.04901,0.1288685546001945,0.3044276678228932,0.01492,0.3470622682022252,0.6529377317977747,23.369861880440983,4.144434440666355,0.2973042362002567,0.2793324775353016,0.2087291399229781,0.2146341463414634,10.99614587738404,5.658951764176512,15.966785821695243,11465.81992081636,44.70700638522731,13.472133054691833,13.074158771349303,9.004928353403823,9.155786205782348,0.5643132220795892,0.7941176470588235,0.6899827288428325,0.5571955719557196,0.0980861244019138,0.7486910994764397,0.9157427937915744,0.8626198083067093,0.7525252525252525,0.1413043478260869,0.4874499818115678,0.7080062794348508,0.6260355029585799,0.4943089430894309,0.0858895705521472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0047430349342765,0.0072740184640357,0.009547315071554,0.0118363653003325,0.0141427305957459,0.0163767258784899,0.0187309141789139,0.0208823348945656,0.0229797953938003,0.0250643530340789,0.0272277227722772,0.0293866551465218,0.0315198351365275,0.0334895145310435,0.035574307903908,0.0377921432123321,0.0398559000020763,0.0419704802421493,0.0440293529019346,0.0588911172390741,0.0726755138778415,0.0859408599330767,0.0981378221988427,0.1102837253454277,0.1258516355634547,0.1369169540992305,0.1470679061644783,0.1570760058975619,0.1656279164565924,0.178015941404567,0.1898251880716566,0.1994931642430636,0.20869650805455,0.216907112123513,0.2262324138695026,0.2353092150780012,0.2432493224017904,0.2501786909610737,0.2573345853468612,0.2623472505091649,0.267989987367239,0.2734834412011784,0.2780459756345907,0.2819784037216534,0.2868410026372218,0.2900941035138653,0.2938654521398402,0.2963969912352248,0.3001108150180734,0.297905300734155,0.2949273269804601,0.2921031880139687,0.2885569985569985,0.2855657855657855,0.2822725252494291,0.2794336339186837,0.27948827013055,0.2792593475042121,0.2796418992131019,0.280620992992396,0.2817372156577473,0.283147472642001,0.284767475479839,0.2865081075902373,0.2879677754677754,0.2887594145232343,0.2924575581031134,0.2953387760798269,0.2992530529976682,0.3015216897569839,0.3079161816065192,0.3135412752098209,0.3177024053418317,0.3192488262910798,0.3257897218293258,0.3286649413913837,0.3299196787148594,0.330237639989074,0.3268719118206005,0.0,1.946834618774712,50.25765447186491,145.87154685305896,200.04044555079452,fqhc5_80Compliance_implementation,70 -100000,95773,48131,458.0831758428785,5069,51.69515416662316,4051,41.67145228822319,1533,15.557620623766615,77.38146625236273,79.7074551003464,63.35451413110488,65.06907414577267,77.1821967390807,79.51370651665093,63.278988077468966,64.99904484472476,0.199269513282033,193.74858369546644,0.0755260536359117,70.02930104791005,242.66352,169.99118168062094,253373.16362649185,177493.42708091292,486.73674,323.62729460879746,507591.941361344,337285.5224931561,468.39434,228.7431362166688,486297.2549674752,236549.50471921416,2842.39402,1323.6093812159047,2923711.735040148,1338101.2900154784,905.59254,409.5054652863259,927642.7803243086,409882.7475414279,1494.04852,639.8000800033232,1517345.8908042975,629838.4171297365,0.38271,100000,0,1103016,11516.961983022356,0,0.0,0,0.0,41865,436.4695686675786,0,0.0,42215,437.9417998809686,1110701,0,39885,0,0,9691,0,0,101,1.0545769684566633,0,0.0,0,0.0,0,0.0,0.05069,0.1324501580831439,0.3024265141053462,0.01533,0.3630188679245283,0.6369811320754717,23.22481850263812,3.9153041764128313,0.3117748704023698,0.2927672179708714,0.1878548506541594,0.2076030609725993,10.935188745585728,5.843534181517359,16.40936292760557,11665.978515047344,46.47603323789124,14.622867868681857,14.329964677928931,8.493432957377989,9.029767733902458,0.5781288570723279,0.790893760539629,0.6975455265241488,0.5624178712220762,0.1129607609988109,0.7579564489112228,0.9008097165991904,0.8487394957983193,0.7071823204419889,0.1790123456790123,0.5029751487574379,0.7124277456647399,0.6379690949227373,0.5172413793103449,0.09720176730486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781119008565,0.004783331306498,0.0068573051602235,0.0093529125030465,0.011510264675079,0.0137019769122707,0.0158798108284409,0.0180307962326146,0.0202390682468328,0.022579391062367,0.0246998319878703,0.0269219325515302,0.0289496130802511,0.0309755921804387,0.0329395026599035,0.0352266859444387,0.0373471035039427,0.0392837888276033,0.0413571717969228,0.0435027072053311,0.0580696334641396,0.0716416036166138,0.0853996224040277,0.0979394449116905,0.1105429625724828,0.1266673013253789,0.1386275154614022,0.1492553202814772,0.1592569646214322,0.1688342321671723,0.1810087742907896,0.1927710843373494,0.2032558341851714,0.2124941204782375,0.2218701172949539,0.2311672483518918,0.2401607322245786,0.2483741758365399,0.2566044161889084,0.2631995140790997,0.2689639999536828,0.2741108431478142,0.2790254412861523,0.2837287323268632,0.2878861472702545,0.2927724345159662,0.2968787109838873,0.2999504340200551,0.302904403199503,0.3070273689203969,0.3041081894929289,0.3014266686805718,0.2985798650168729,0.2955155785279085,0.2933507557984142,0.2896648771012098,0.2856894782540058,0.2854595717533901,0.2859185375568075,0.2855721569811857,0.2856849915179986,0.286292223095051,0.2878980361122102,0.2889788834249349,0.2903364557445995,0.2934658796727762,0.2946297343131713,0.298810117119362,0.3011867887098458,0.3052137561129516,0.3111261872455902,0.3155406115372491,0.3195729095536656,0.3275810324129652,0.3309009261857984,0.3323138454299494,0.3327289211242067,0.3290025984409354,0.334057577403585,0.3342215454891511,0.0,2.397776181015221,51.67199520447261,155.8734698674981,202.76647937959115,fqhc5_80Compliance_implementation,71 -100000,95746,47945,456.1652706118272,4895,49.75664779729702,3916,40.20011279844589,1493,15.112902888893531,77.31912755708531,79.66767374778523,63.32066847763053,65.05770918285062,77.12129644718142,79.4775709777503,63.24491336867239,64.98770274789163,0.1978311099038876,190.10277003492604,0.0757551089581483,70.00643495898373,243.4795,170.566651334196,254296.61813548347,178144.268101222,483.94304,322.587470999874,504756.27180247736,336232.53579144186,462.82278,226.85805729288091,479233.1063438681,233618.13595640368,2736.2167,1284.7177313303291,2809553.297265682,1293611.456331679,894.67171,415.2545406695692,914455.0790633552,413774.139914692,1437.28222,622.9934169501923,1456119.461909636,612689.0901455438,0.38227,100000,0,1106725,11558.937187976522,0,0.0,0,0.0,41708,434.89023040127006,0,0.0,41819,432.5924842813277,1104630,0,39676,0,0,9622,0,0,87,0.9086541474317466,0,0.0,1,0.0104443005451924,0,0.0,0.04895,0.1280508541083527,0.3050051072522983,0.01493,0.3588338876932107,0.6411661123067893,23.2317444446278,3.984411700596449,0.3335035750766087,0.2676200204290092,0.205311542390194,0.1935648621041879,11.564310190862628,6.595484247291658,16.0756275861658,11618.534096476456,44.85739832510993,12.982744436047271,14.749522423676217,8.841766063172864,8.283365402213583,0.5898876404494382,0.8206106870229007,0.6791730474732006,0.5845771144278606,0.1226912928759894,0.7776838546069316,0.9455337690631808,0.8429319371727748,0.7142857142857143,0.2125,0.5085986095865349,0.7232597623089984,0.6114718614718615,0.5466237942122186,0.0986622073578595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023291375102532,0.0047527842803433,0.0069092163467391,0.0093542424180869,0.0115833257060337,0.01362622590205,0.0157940351771603,0.01808397663685,0.0200200404899695,0.0220616087058895,0.0243509822417257,0.0265530341924222,0.0288373528050599,0.0310697214438767,0.033244255512335,0.0353555188094253,0.0371651000041409,0.0395411073999543,0.04179222344604,0.0437015049731812,0.0581303104319325,0.0718940574692204,0.0857334647899142,0.0982155062725427,0.1104727165387534,0.1257414750198255,0.1383190852972995,0.1493966673051139,0.1596010507656493,0.1688411934346087,0.1809909434531181,0.1920304755308326,0.2028172078098656,0.2120589167969732,0.220447143737347,0.230007641449882,0.2386953464230301,0.2465146110654769,0.2545175936435868,0.2612574438845625,0.2675681307740397,0.2723920779099166,0.2778067328421501,0.2833467340301696,0.2880020428263962,0.2912137401754537,0.2956677479553624,0.2979980642860781,0.3017872649273559,0.30580268750495,0.3031421298603348,0.3002063841496973,0.2980321953144823,0.2949112836753286,0.2928296617596815,0.2887857766343548,0.2848617245254943,0.2846994356214726,0.2839769393463874,0.2845262951264343,0.2848799116419251,0.2861678630590833,0.2866534073066052,0.2870709688952449,0.2889518413597733,0.2904753232562375,0.2910956956843122,0.2940035052578868,0.2977547737287543,0.3037171350861287,0.3067221192531983,0.3108543084797636,0.3153282844088377,0.3174831528734761,0.3172349369453526,0.3186915887850467,0.3189278723083873,0.3236763236763236,0.326729986431479,0.3363397219090567,0.0,2.691550887719804,50.86187196167491,141.3986158965243,202.23458891277895,fqhc5_80Compliance_implementation,72 -100000,95676,47953,457.0738743258497,5003,51.10999623730089,4013,41.30607466867344,1548,15.824240143818722,77.34181859432726,79.72509801815542,63.3271521787835,65.08579205165191,77.1433849615848,79.52865134922504,63.25178224807527,65.0136835753517,0.1984336327424642,196.44666893037763,0.0753699307082342,72.10847630020112,242.27962,169.76674981998485,253229.25289518796,177439.2217692889,489.37175,325.83536714161016,510838.6115640286,339911.33318868896,467.98295,228.25216869726736,484902.4729294703,235371.3101526887,2816.91842,1317.837482287171,2904306.848112379,1337476.1510589605,915.47167,413.19491269920775,944002.153100046,419036.2770664047,1500.12642,640.5215049470995,1535159.747481082,641692.8813531636,0.38291,100000,0,1101271,11510.420586144906,0,0.0,0,0.0,42050,438.8143317028304,0,0.0,42369,438.5843889794724,1108833,0,39787,0,0,9450,0,0,85,0.8884150675195451,0,0.0,0,0.0,0,0.0,0.05003,0.1306573346217126,0.3094143513891665,0.01548,0.3598701794578083,0.6401298205421917,23.180614930215626,4.100944884215166,0.3184649887864441,0.2723648143533516,0.2040867181659606,0.2050834786942437,11.244353349110687,6.090485995458454,16.552686335622408,11590.817222045616,46.19192742324125,13.494581442075765,14.604223262677346,9.162697447961346,8.930425270526799,0.5768751557438325,0.8060384263494969,0.6940532081377152,0.568986568986569,0.0984204131227217,0.7594728171334432,0.934065934065934,0.8586666666666667,0.7450980392156863,0.1277777777777777,0.4976777420507324,0.7147335423197492,0.6256921373200443,0.510569105691057,0.0902021772939346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265607436886,0.0046626189728047,0.0069295780363828,0.0092015193678779,0.0114796437141578,0.0139895740001629,0.016257427962776,0.0183844921041617,0.0205643966107584,0.0228173079875932,0.0249982056251089,0.0269698463560923,0.0285388010411415,0.030655881292184,0.0327192031790266,0.0347959204782887,0.0367361319806422,0.0390904843482323,0.0411556027173517,0.0433168961958278,0.0577383128754243,0.0720299051328768,0.0852890549561274,0.0976808300187301,0.1099436673207165,0.125684909771732,0.1370649405772495,0.1474514563106796,0.1574487637039728,0.1669705484888135,0.1792430476272537,0.1911540416878495,0.2019162796767773,0.2116402116402116,0.2203167968320316,0.2297563676633444,0.2385799265633196,0.2458920517809544,0.2528251792684033,0.2594458438287154,0.2649694194905946,0.2709451166052954,0.2768319500602965,0.2815190964944848,0.2849164724164724,0.2888270289578381,0.2932582864290181,0.2974090232640964,0.3014814431120665,0.3059439636977628,0.3027158699397071,0.3004716137991722,0.2976071433601397,0.2951316701316701,0.2927401163480945,0.2887739011956338,0.2854320753524243,0.2850613501957636,0.2855852016025914,0.2861006334068749,0.2871449618619571,0.2881966309823677,0.2897662099313854,0.2898950978863672,0.291170136396267,0.2919859722041824,0.2934649981555574,0.2986878777440265,0.3028329306299681,0.3075402317029773,0.3113297365915582,0.3141546250395527,0.317687286291576,0.3193492505837162,0.324840174186973,0.3237410071942446,0.330141358869129,0.3289973984390634,0.3268599562363238,0.322592873388931,0.0,2.4360998854700284,52.79474521195678,149.89121422225327,201.94226356351737,fqhc5_80Compliance_implementation,73 -100000,95674,47789,456.0695695800322,5045,51.44553379183477,4043,41.61005079749984,1521,15.479649643581327,77.38307130315455,79.75728113169839,63.34642469116329,65.09645112211287,77.18674183358839,79.5650254537537,63.27222583002068,65.02608071826373,0.1963294695661659,192.25567794468645,0.0741988611426123,70.3704038491395,242.59708,169.93731854796224,253566.3607667705,177621.21218717963,483.46737,321.59484696909544,504667.5481321989,335475.7896284209,467.98293,228.874998768663,484728.0765934319,235924.2133415996,2820.91485,1337.8413805544592,2907377.1871145763,1357244.999220749,939.44977,431.0116254008609,965494.2199552648,434174.4868744275,1471.17396,633.3864355048811,1499304.555051529,631031.0139521845,0.38169,100000,0,1102714,11525.74367121684,0,0.0,0,0.0,41602,434.14093693166376,0,0.0,42437,439.1057131509083,1112532,0,39949,0,0,9674,0,0,63,0.6584861090787465,0,0.0,1,0.0104521604615674,0,0.0,0.05045,0.1321753255259503,0.3014866204162537,0.01521,0.351371807000946,0.6486281929990539,22.952021876796657,4.003307864106768,0.3208013851100668,0.2755379668562948,0.2067771456838981,0.1968835023497402,11.534176466610768,6.4254339614507865,16.348632733638677,11611.303366558075,46.46534220782584,13.642422855489134,14.68915373539328,9.397945294040568,8.735820322902846,0.5874350729656196,0.8061041292639138,0.694680030840401,0.5717703349282297,0.1231155778894472,0.7597145122918318,0.920997920997921,0.8537859007832899,0.7441860465116279,0.1538461538461538,0.5093457943925234,0.7187993680884676,0.6280087527352297,0.5120772946859904,0.1140065146579804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348582245933,0.0045083378923267,0.006724069735601,0.0087940208781835,0.010787453611916,0.0131213290308132,0.015311219392852,0.0173830497402239,0.0195946153138511,0.0218047806725699,0.0240011482821903,0.0260720446890659,0.0279843263089691,0.0300561363753411,0.0319805228299667,0.0339713512061018,0.0362773737750429,0.0383497664763881,0.0405361841079023,0.0426354569424614,0.0580818368903235,0.072254093212177,0.0858983235769287,0.0985868102288021,0.1107502846779975,0.1264471110641222,0.1380564183566378,0.1483147740446486,0.1583126127183668,0.1681757299758907,0.1803617348640535,0.1928267122250816,0.2034738375252711,0.2126415424299392,0.2202496837705549,0.2299783969423364,0.2390481401659389,0.2463289941894509,0.2541210662549384,0.2613163773844303,0.267430290408423,0.2733485460183722,0.279186254425748,0.2836067933218192,0.2879786070256472,0.2915747031479266,0.295982478097622,0.2995495495495495,0.3027442143569421,0.305913715967429,0.302894574018777,0.2992195229196438,0.2956498502130771,0.2931872952653073,0.2902034642306323,0.2870082776137215,0.2839164598188171,0.2844830411273144,0.2854802655154173,0.2865134509175129,0.287366813203189,0.2884064229908523,0.2888112179087088,0.2887064566230308,0.2904292785075195,0.2917622792316617,0.2930578233207589,0.2983137169653116,0.3040972222222222,0.3092702787347322,0.3126745338257815,0.3152856246076585,0.3176010915405606,0.3223826984958467,0.3239915464485895,0.3255599168783191,0.3270682255438804,0.3272797527047913,0.3331573389651531,0.3385740402193784,0.0,2.427776765076559,54.60159339404861,148.71751532498223,199.48195894886237,fqhc5_80Compliance_implementation,74 -100000,95688,47665,454.0903770587743,4968,50.75871582643592,3935,40.47529470780035,1515,15.393779784298973,77.3960056150407,79.78055080711273,63.35197710932333,65.11319697143091,77.21074799932529,79.5993500069954,63.28273357747089,65.04782735447797,0.1852576157154146,181.2008001173382,0.069243531852436,65.36961695293542,243.51008,170.49224534024503,254483.4043976256,178175.15816010893,485.91107,323.4389360756988,507151.1892818326,337357.5537953544,469.04304,229.37000193886496,485628.5427639829,236213.59910260056,2796.26514,1307.876039857105,2877928.2877685814,1322467.728301464,909.60045,416.1163471827378,930739.5180168884,415053.5532354897,1476.64544,615.6773899217089,1501984.2195468608,610802.9715736432,0.37892,100000,0,1106864,11567.427472619343,0,0.0,0,0.0,41826,436.4288103001421,0,0.0,42351,438.1322631886966,1109823,0,39784,0,0,9546,0,0,103,1.065964384248809,0,0.0,0,0.0,0,0.0,0.04968,0.1311094690172068,0.304951690821256,0.01515,0.3688794271337333,0.6311205728662667,23.237163867060737,3.996809424822979,0.2970775095298602,0.287420584498094,0.2096569250317662,0.2058449809402795,11.767412875939623,6.647051037309681,15.896663450817266,11482.943603676733,45.11788843637069,13.909523240456396,13.38788967662224,9.075942797774797,8.744532721517258,0.5928843710292249,0.830238726790451,0.7254063301967494,0.5503030303030303,0.1135802469135802,0.7695507487520798,0.9237113402061856,0.9009009009009008,0.6952380952380952,0.1781609195402299,0.5151847786315404,0.760061919504644,0.6555023923444976,0.5008130081300813,0.0959119496855346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0048062298472957,0.0070136619232252,0.0093878587757175,0.0116167883954183,0.0139188693845965,0.0161403794977415,0.0182135601180206,0.020037211965078,0.0223546029601424,0.0245847857289317,0.0265613930613879,0.0286011066087993,0.0306953843618347,0.0327177053239785,0.034608228240645,0.0368855006111329,0.0391006944084034,0.0409963080443034,0.0431266284523189,0.0578447654560837,0.0716236722306525,0.0846540313191596,0.0975050729132715,0.1095709918836302,0.1249550559421332,0.1364494706244297,0.147089192382615,0.1571138645588549,0.1670813315030885,0.178711810379177,0.1896598345140879,0.2001477907456912,0.209469059432993,0.2176097448356988,0.2277697841726618,0.2367173997881474,0.2439742120987487,0.250832446145831,0.2570256339927543,0.2631445321515949,0.2693003231790552,0.2740256367885555,0.2793936568279357,0.2835441197848524,0.287737181455327,0.2915711294985544,0.2952144503838066,0.2976839500444651,0.3005635319925913,0.2983638629450467,0.2952532208819945,0.2930277571286309,0.2906280582580162,0.2889306371207527,0.2850391059749051,0.2815647212722029,0.2819620718380948,0.2820216508335741,0.2819739060974527,0.2828856685169318,0.2842090805635129,0.2848774407976734,0.2858755311614731,0.2877466399771232,0.2894478590981871,0.289363979494113,0.2926030984071568,0.2971206009180693,0.3017893741131957,0.3039122353687837,0.3056669480793584,0.3074658649630464,0.3124054462934947,0.317551096943559,0.3207301173402868,0.3211678832116788,0.3255297679112008,0.3297609233305853,0.3382013835511145,0.0,2.482788467279147,51.921232215344325,146.7153797109613,194.7357101418534,fqhc5_80Compliance_implementation,75 -100000,95821,47874,455.9543315139688,4920,50.03078657079346,3896,40.06428653426702,1493,15.163690631489969,77.38566316619061,79.70530475558482,63.36611244363343,65.08360748996158,77.19555781895922,79.51978586847937,63.29351270322293,65.01517129534841,0.1901053472313947,185.5188871054452,0.0725997404104958,68.43619461317019,243.61392,170.6689259563369,254237.4009872575,178111.14241374735,488.58675,325.4925337335005,509280.0012523351,339074.6062432812,469.40785,229.51653635610737,486099.36235272017,236617.79961911807,2728.3705,1287.8787164489438,2809530.76048048,1306335.9958429306,905.73379,418.4755535870646,932311.4974796756,423831.9543356913,1449.9175,622.1394992555142,1475393.8280752655,617628.9549083608,0.38068,100000,0,1107336,11556.245499420796,0,0.0,0,0.0,42075,438.4738209786999,0,0.0,42351,438.2024817106897,1106729,0,39721,0,0,9742,0,0,102,1.06448482065518,0,0.0,0,0.0,0,0.0,0.0492,0.1292424083219502,0.3034552845528455,0.01493,0.3666274970622796,0.6333725029377203,23.1467993735588,4.097382162477999,0.3203285420944558,0.2802874743326489,0.1971252566735113,0.2022587268993839,11.570302331656931,6.370839492854397,15.99621831613706,11484.066209332266,44.81213568575012,13.573296485288065,14.088862980986418,8.518698940997874,8.631277278477764,0.5926591375770021,0.8186813186813187,0.7035256410256411,0.5833333333333334,0.1129441624365482,0.7696160267111853,0.9222689075630252,0.8904899135446686,0.7384615384615385,0.1666666666666666,0.5140845070422535,0.7386363636363636,0.6315205327413984,0.5305410122164049,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890016509171,0.0045112172176434,0.0067795922095584,0.008900087375287,0.0111375564506285,0.0134711332858161,0.0158599109154104,0.0180222471680783,0.0202258674434053,0.022390961747068,0.0244519824962338,0.0265321413542169,0.0283861419718194,0.0304371545326347,0.0326153084688437,0.0349219137332672,0.0366894639365125,0.0385257200899659,0.0408589199123635,0.0426838151131089,0.0574846926535167,0.0708924800869692,0.0839220207525416,0.0970161798697205,0.1089915098910822,0.1248508148414148,0.1362345862112801,0.1466621318566858,0.1566316463121966,0.1666291809915496,0.178159683386389,0.1892636446134566,0.1999196586578653,0.2092152517765721,0.218074181466715,0.2279989827397472,0.2359743326946214,0.2440914809489575,0.2514046853051792,0.2584214436760587,0.2639110248770009,0.27005927931292,0.2761542819374941,0.279851370403116,0.2841647802244362,0.2883810552412278,0.2923326268545069,0.2952834731479838,0.2990505920899873,0.3019721272679463,0.298744545149379,0.2962612334499554,0.2931073224166503,0.2901919529628776,0.2879261553049946,0.2845645168680035,0.2809098807361188,0.2806919825693784,0.2810329231451929,0.2812204647181553,0.2814233678901653,0.2831007018373945,0.2846579245045875,0.2852930006032037,0.2868172306804242,0.2886576428552799,0.2896701042675631,0.2943261299124926,0.2980125486347225,0.3010139416983523,0.306854289605084,0.3115842732159797,0.3144677661169415,0.3181133212778782,0.3210743028261276,0.3285041224970553,0.3287775246772969,0.3326673326673326,0.3336953570458865,0.3379751599548363,0.0,2.255193679645109,51.94153416881654,143.59977813437644,195.75442191273376,fqhc5_80Compliance_implementation,76 -100000,95764,47888,458.19932333653566,5065,51.59558915667683,3998,41.142809406457545,1498,15.308466647174304,77.37657405990127,79.72281257650076,63.3458979718325,65.07971755854686,77.18117461460739,79.53021998620245,63.27158393797563,65.00877312611158,0.1953994452938872,192.5925902983039,0.0743140338568721,70.94443243528303,243.42076,170.38778966122766,254187.9411887557,177924.4493350609,484.55632,322.172494783286,505422.98776158056,335856.3184320684,462.06155,225.5488341215176,478484.0754354455,232385.7691107952,2815.52327,1323.8121443493965,2900006.192306085,1342467.941962725,912.85053,422.88461031971,935557.2657783718,424041.0985566297,1464.89578,627.3372868238257,1498068.2928866798,627999.9018929031,0.38251,100000,0,1106458,11553.997326761622,0,0.0,0,0.0,41690,434.7249488325467,0,0.0,41856,433.0750595213233,1111014,0,39841,0,0,9711,0,0,77,0.8040599807860992,0,0.0,1,0.0104423374128064,0,0.0,0.05065,0.132414838827743,0.2957551826258637,0.01498,0.3547655068078669,0.6452344931921331,23.190874760611827,4.034204583053616,0.2978989494747374,0.2958979489744872,0.196848424212106,0.2093546773386693,11.186005784230106,5.967820219082751,15.9417539974217,11511.70457400804,45.75755083726205,14.629960123748974,13.277124304339647,8.686128925232842,9.164337483940583,0.5817908954477239,0.8224852071005917,0.6742233417296389,0.5883100381194409,0.1039426523297491,0.7449228269699432,0.9192307692307692,0.8690095846645367,0.7445652173913043,0.1401869158878504,0.5092157571376943,0.746606334841629,0.6047835990888383,0.5406301824212272,0.0914927768860353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485566697052,0.0044095733357662,0.0065342235029119,0.0085740989069039,0.0105971849320641,0.0127799105915418,0.0147036330821547,0.0167639972230162,0.0189329271409439,0.0211483145837385,0.0233068219088225,0.0253333470196364,0.0276849691075632,0.029690734389965,0.0315885035178575,0.0332303176260219,0.0352890011804419,0.0369724884849993,0.0391408759655269,0.0411064476822295,0.0555155462316435,0.069481918386982,0.0822710499832271,0.0955333683657383,0.1076201517706576,0.1236191422560969,0.1352488999628903,0.1460082357072174,0.1563731510653067,0.1657372654155496,0.1782306184434439,0.1894827959316165,0.1998890351497481,0.2096112393728184,0.218832905846479,0.2286021433875275,0.2371462066655501,0.2456002160507719,0.2523573398086895,0.258746622704584,0.2642905878135371,0.2703088108095471,0.2752461671217655,0.2800732530581954,0.2847500424891349,0.2893738607813192,0.292503748125937,0.2968779756992497,0.3012687994211587,0.3055207935399734,0.3027193983750755,0.299423710208562,0.2967721101329627,0.2942786750615932,0.2927479164507868,0.2897102134867467,0.2865096765035251,0.2863261136085002,0.2871657845022721,0.2868080721949833,0.287394518706594,0.288879713735205,0.2898822548713139,0.2888997359721328,0.2895283582089552,0.2908756571961358,0.2927981443765557,0.2980175799513746,0.3028929940745904,0.3087121212121212,0.3132901354841633,0.3167423202786868,0.3179804031704425,0.3238447598912715,0.3263921167611787,0.3250763089927213,0.3307157958320749,0.3327384493357129,0.3380016159439806,0.3455223880597015,0.0,2.354443067944508,53.36226319847088,142.14445608393262,204.50913572351575,fqhc5_80Compliance_implementation,77 -100000,95754,48226,458.95732815339306,5006,51.00570211166113,4011,41.33508782922907,1553,15.905340769054034,77.3313489084019,79.7001845605344,63.31030609897547,65.06459153543189,77.13188846889356,79.50112016751547,63.234252746160806,64.99023758185086,0.1994604395083428,199.0643930189293,0.0760533528146609,74.35395358102426,244.27986,171.20808538411774,255111.68201850576,178799.70067476845,490.44153,326.294044110831,511614.3659794891,340188.3950770586,476.37641,233.2421915380264,493649.0486037137,240576.9528059263,2817.96422,1335.492282397078,2906965.975311736,1359134.126772646,922.67106,425.0953923632481,950707.552687094,431209.6642278716,1502.47154,648.0860889138366,1540452.868809658,653353.0757241062,0.38221,100000,0,1110363,11595.985546295717,0,0.0,0,0.0,42072,438.7806253524657,0,0.0,43133,446.7071871671157,1097393,0,39362,0,0,9606,0,0,86,0.8981348037679887,0,0.0,0,0.0,0,0.0,0.05006,0.1309751183904136,0.3102277267279265,0.01553,0.3466028708133971,0.6533971291866029,23.17490767996017,4.023222606147357,0.3046621790077287,0.2852156569434056,0.2084268262278733,0.2016953378209922,11.394005768961526,6.198030058021926,16.60438681431066,11593.610085989088,46.11062402927838,14.061876465356208,13.903237475597956,9.371992205043744,8.773517883280464,0.5886312640239342,0.7884615384615384,0.7013093289689034,0.6076555023923444,0.1161928306551298,0.75,0.8985200845665962,0.8760330578512396,0.7511111111111111,0.1413612565445026,0.5154041319318594,0.7108792846497765,0.6274738067520372,0.5548281505728314,0.1084142394822006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316355788812,0.0046543699362178,0.0071453945699061,0.0094797805324121,0.0117194652993957,0.014247741646383,0.0163045140765363,0.0184914792162308,0.020834824944512,0.0232091279677161,0.0252297341647522,0.027431037139775,0.0292268269339617,0.0313002432287587,0.0334640792733278,0.0356123588534557,0.0376295651993828,0.039804918543115,0.041869360941333,0.043931093382215,0.0592785119308573,0.0733381465088782,0.0865597432158853,0.0995121130551816,0.1120283391846158,0.1275700143836196,0.1382987754409049,0.1485465952302333,0.1589825798867158,0.1680062669685685,0.1803022463674384,0.1916216304029978,0.2018899969516178,0.2115001423284941,0.2206047525711894,0.2309193528713837,0.2395563399160039,0.2473089222177183,0.2552220506765961,0.2613584265541903,0.26724786681023,0.2728124414465055,0.278521819517861,0.2826830937713894,0.2870021168398258,0.2905047913866038,0.2942207312646296,0.2970344915362097,0.3000466575079706,0.3030375003298762,0.3005224604115049,0.2978626898494949,0.2947910221072172,0.2912520550315826,0.287569600758204,0.2839477902450195,0.2801582797326271,0.280291016103981,0.281081909171376,0.282151041944252,0.2821215510812826,0.2837200157294534,0.2853096165462082,0.2858063799044126,0.2864793783622235,0.2868215044844212,0.2880804997314791,0.29353125,0.2978053134516434,0.3019286364896439,0.3041526883670323,0.3066293971836928,0.3096725818545364,0.3132584608426924,0.3149569882527055,0.3193656673226068,0.3202205334525406,0.3218817099355846,0.3299627461415647,0.3335809806835066,0.0,2.057161369194816,54.53527410810171,146.6396587554196,199.40884889150647,fqhc5_80Compliance_implementation,78 -100000,95492,47709,456.13245088593806,4871,49.90994009969421,3867,39.91957441461064,1401,14.252502827461983,77.22623088476638,79.71316273021127,63.24095407219974,65.07615511898496,77.04404600108377,79.5354544176444,63.17145234872974,65.01133704366386,0.1821848836826092,177.70831256686392,0.0695017234700046,64.8180753210994,243.37038,170.4727155196463,254858.52217986845,178519.5917772183,485.88126,323.739622134852,508213.8713190634,338420.7813020877,466.47999,226.91961834309785,485135.341180413,235096.86236345512,2703.97924,1255.0141211342514,2790337.201022075,1273182.387189927,870.20358,393.09793502688586,893595.4634943241,394305.65478244406,1356.46048,581.4148559260606,1380091.8401541489,573663.2626989015,0.37978,100000,0,1106229,11584.478280903111,0,0.0,0,0.0,41899,438.1414149876429,0,0.0,42139,437.9633896033175,1099287,0,39463,0,0,9797,0,0,78,0.8168223516106061,0,0.0,0,0.0,0,0.0,0.04871,0.1282584654273526,0.2876206117840279,0.01401,0.3723509605862547,0.6276490394137453,23.25984721790961,3.9859078260441274,0.3098008792345487,0.2940263770364624,0.2011895526247737,0.1949831911042151,11.038122636792108,6.0052719601398925,14.971705837330514,11515.562521948164,44.32326323699503,13.948816860927268,13.562249609463622,8.571025690558491,8.24117107604566,0.5862425652960952,0.7977132805628848,0.6969949916527546,0.5822622107969152,0.0954907161803713,0.7625215889464594,0.9248434237995824,0.8727810650887574,0.7341040462427746,0.1071428571428571,0.5108896271686969,0.7051671732522796,0.627906976744186,0.5388429752066116,0.0921501706484641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024725135532249,0.0044224897805998,0.0066704570836802,0.0089374682257244,0.0113821469294673,0.0135657137033073,0.0155613832794212,0.0178611570923507,0.0201745322107072,0.0222536423433946,0.0241521596321235,0.0260747077391295,0.0282963496885136,0.0304777424811254,0.0324430438601022,0.0344456293289987,0.0364204062156386,0.0386486486486486,0.0405280101684673,0.0425834072991176,0.0575101276025583,0.0710748310739916,0.0838924762846265,0.0962243865418669,0.1084700262112116,0.1248237626281364,0.1364772183529161,0.1471099776992925,0.1574583859979862,0.1667114555676187,0.1785506057137921,0.1898212426240888,0.2002093350341804,0.2105788204341153,0.2193095687286929,0.2290247669418549,0.2375700495520184,0.2452347404610269,0.2529625838735357,0.2597356403607407,0.2652453162678538,0.2706706988302037,0.2754183517356705,0.2812766519717954,0.2849869054144588,0.2891520102831576,0.2923007382853699,0.2962022084636497,0.2997572658004387,0.303654054625737,0.3005154082789141,0.2970003992125876,0.2947052524797114,0.2919012559549588,0.2893481717011129,0.2860665655776624,0.2827212694189748,0.2820264389522949,0.2824203059567558,0.2833017958513335,0.283678126519771,0.2843222344958182,0.2854994046002465,0.2863541156022995,0.2872243746113742,0.2878069015581654,0.2902330586469572,0.2932516487981746,0.2971426577818093,0.3015541180183023,0.3063275097311487,0.3107716618382934,0.3130829498818555,0.3167166416791604,0.3201984017635712,0.326365631135235,0.3273001508295626,0.328077622801698,0.3320610687022901,0.3296827794561933,0.0,2.1507216606011106,50.53194649746385,140.0585033893418,200.54722925448115,fqhc5_80Compliance_implementation,79 -100000,95705,47843,457.3219789979625,5031,51.30348466642286,4035,41.544328927433256,1553,15.850791494697248,77.36399481233721,79.74779105882061,63.33329461681414,65.09683793009994,77.16116822689659,79.54913122329603,63.255923420472655,65.02367195807508,0.2028265854406186,198.65983552458036,0.0773711963414882,73.16597202485298,244.70468,171.36872487854387,255686.4113682671,179059.32279248093,491.54969,327.39531526798254,512961.4440206885,341440.4381379611,468.84072,228.67108403945448,485924.6329867823,235897.5967058513,2850.35152,1338.6062197668214,2936914.623060446,1357342.5490630444,913.03566,419.3420756120534,939289.3579227836,423556.97944899567,1506.43874,647.0359131429556,1538610.1248628595,645347.2618287369,0.38135,100000,0,1112294,11622.109607648505,0,0.0,0,0.0,42299,441.31445588004806,0,0.0,42438,439.50681782561,1099123,0,39442,0,0,9971,0,0,87,0.898594639778486,0,0.0,0,0.0,0,0.0,0.05031,0.1319260521830339,0.3086861458954482,0.01553,0.3616899254444657,0.6383100745555343,22.91484746221488,4.032753837079339,0.301363073110285,0.2884758364312267,0.2052044609665427,0.2049566294919454,11.37221197921328,6.201506246092751,16.617809406516322,11514.695891189462,46.37037746334052,14.295330957850307,13.8070939949804,9.32803231536034,8.939920195149474,0.5883519206939282,0.8238831615120275,0.6949013157894737,0.5833333333333334,0.1051995163240628,0.7472089314194578,0.9227642276422764,0.8494623655913979,0.665158371040724,0.1183431952662721,0.5167206040992449,0.7514880952380952,0.6267772511848341,0.5535420098846787,0.1018237082066869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045230054661433,0.0067712986274669,0.0091468992011708,0.0110808115753271,0.0132750575626057,0.0153413031947447,0.017504800032681,0.0195759565524224,0.021462435617813,0.0235453370798039,0.0255728209183621,0.0275560584241925,0.0297681607418856,0.0317453764861294,0.0339026861597634,0.0357590511213549,0.0378249364395786,0.0396981320360495,0.0415403369487075,0.0564368740405,0.0696888181789635,0.0830763097710916,0.0959712275609679,0.1088787460339211,0.1245532787751908,0.136033934252386,0.1470973095458462,0.1571024395451876,0.1668470863120438,0.1781728565125213,0.1893093599896144,0.200167485970331,0.2100537028732677,0.2190683653486478,0.2287308846490305,0.2381133001628773,0.2461903530179151,0.2542547880548244,0.2606271537660137,0.2673559310273046,0.2732575810712866,0.2784049224943793,0.283241080200321,0.286682126683098,0.2903007398471064,0.293429196623945,0.2967781278585222,0.3004289627370923,0.3033951835767864,0.3005423401170595,0.2974252047353187,0.2951945080091533,0.2918100779101081,0.289360379954725,0.2860863605209047,0.2826617154186269,0.2820429248895914,0.2829475112354787,0.2826638740481726,0.2820488914579798,0.2827762485253637,0.2841368390349598,0.2851700862126579,0.2859943107116391,0.2871279414056412,0.2886433987447817,0.2939026675829325,0.298208235828298,0.3014702983956798,0.3055003612716763,0.3097503285151117,0.311308926780341,0.3154260566052052,0.317433436823784,0.3216360403082395,0.3254956201014292,0.3291242362525458,0.3342556723851688,0.334757281553398,0.0,2.397830576024655,54.35389841283445,146.4546490405499,202.56281490595524,fqhc5_80Compliance_implementation,80 -100000,95678,47836,455.6324337883317,4916,50.293693430046616,3898,40.249587156922175,1474,15.154999059344886,77.31725194233033,79.7273869786928,63.30264576078415,65.08569949410943,77.12703290080465,79.53697395797745,63.23137906445015,65.01634501311884,0.1902190415256797,190.41302071535424,0.0712666963339998,69.35448099059727,243.16336,170.34244320975426,254147.62014256156,178037.21149036798,487.90003,324.9160681995154,509449.7376617404,339103.4074703854,467.30794,227.67129494952124,485487.6565145593,235679.73499807544,2738.00091,1276.2857051872406,2828897.0191684607,1301152.7051017378,893.38719,401.05183522153146,922273.8142519702,407698.51504163066,1424.45266,606.4056415072079,1464916.1353707227,612087.4598786471,0.38129,100000,0,1105288,11552.164551934617,0,0.0,0,0.0,41972,438.1676038378729,0,0.0,42205,438.1676038378729,1105764,0,39661,0,0,9499,0,0,92,0.96155856100671,0,0.0,0,0.0,0,0.0,0.04916,0.1289307351359857,0.2998372660699755,0.01474,0.360856864654333,0.639143135345667,23.265722321334582,4.058957281076792,0.3127244740892765,0.2762955361723961,0.2154951257054899,0.1954848640328373,11.22507500435756,6.202866392826709,15.848212792440584,11571.6348517094,44.79146177510295,13.335913714525123,13.931893997171482,9.29681164598332,8.226842417423011,0.5908158029758851,0.7910863509749304,0.7186218211648893,0.5857142857142857,0.1089238845144357,0.761864406779661,0.9027484143763214,0.8583333333333333,0.725,0.1224489795918367,0.5165562913907285,0.7036423841059603,0.660069848661234,0.5421875,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896045873139,0.0047761496729706,0.0071749698082953,0.0095418102002865,0.0114768275932237,0.0135275542426403,0.0158019301001775,0.0179286531546256,0.0199813793597364,0.0222015040059012,0.0243462023822959,0.0263982654623549,0.0287093652852407,0.030445182176217,0.0327807900852052,0.0347535488143028,0.0370381888294564,0.0391816812918635,0.0411889552425144,0.0434365651027279,0.0581819321541627,0.0718017989717169,0.0851834356794205,0.09859021567596,0.1106047659736067,0.1262064002709109,0.1375811860593454,0.1492082760970727,0.15931265161311,0.1683810831393665,0.1808303268536966,0.1932422048334902,0.2037496463624295,0.2127324264279382,0.2217315168669258,0.2311886344998781,0.2402816209943765,0.2479700398119615,0.2559629801857795,0.261855976923341,0.2672766813964787,0.2727867932469719,0.2776528776978417,0.2820672552801505,0.2860733976149418,0.289798634559929,0.2936717411155448,0.2962280456497979,0.2995694392366274,0.3015421489997761,0.2993242063118861,0.2960563341615077,0.2937665875612599,0.2905726719889328,0.2879934698723657,0.2841531727325599,0.2797971660110895,0.2797831569982639,0.2802613889692493,0.2825793382849426,0.2829519578931651,0.2833838403715219,0.285839617320828,0.2863953307046269,0.2879118769348916,0.2882861819032031,0.2888441698316422,0.2926083156448995,0.2970445584284169,0.3009972801450589,0.3056398640996602,0.3099446056449486,0.3124100381751048,0.3155185465556396,0.3173032029134373,0.3179847685998828,0.3196895922093731,0.3228013684846045,0.3228999464954521,0.3302342878393455,0.0,1.9440559985065056,51.58112757937569,145.25562544675407,196.222637664338,fqhc5_80Compliance_implementation,81 -100000,95869,47359,451.7414388384149,4992,50.95494894074206,3948,40.711804650095445,1460,14.91618771448539,77.4717338221379,79.75637976463518,63.40399372213196,65.08986990338995,77.27761804529031,79.56464651987375,63.33041765163576,65.01924417461055,0.194115776847596,191.73324476143705,0.0735760704962018,70.62572877940454,243.91422,170.79423084448874,254424.49592673336,178153.762785143,482.46163,320.8707198597157,502796.24278964,334242.3722576804,464.37445,226.5476822040476,481311.5084125213,234014.2037956963,2721.44458,1290.8724912880723,2802908.114197499,1311128.3415208445,873.23353,399.8421095260714,897307.5446703314,403688.2745229325,1413.21938,612.6468356566952,1444204.0492755738,612848.9496054697,0.37859,100000,0,1108701,11564.749814851515,0,0.0,0,0.0,41529,432.7154763270713,0,0.0,41969,434.780794626,1111857,0,39855,0,0,9669,0,0,90,0.938781044967612,0,0.0,0,0.0,0,0.0,0.04992,0.1318576824533136,0.2924679487179487,0.0146,0.3576628352490421,0.6423371647509578,23.247769775039394,3.9083262831961383,0.3087639311043566,0.2887537993920973,0.2107396149949341,0.1917426545086119,11.15168615534032,6.151419126703459,15.75765825483415,11399.86719419362,45.523017634231984,14.039850347136138,13.754803179633448,9.367702611176018,8.360661496286378,0.5916919959473151,0.8061403508771929,0.6964725184577523,0.5901442307692307,0.1017173051519154,0.7457351746547523,0.9066937119675456,0.8497109826589595,0.7227272727272728,0.1046511627906976,0.5218991534781009,0.7295208655332303,0.6357388316151202,0.5424836601307189,0.1008547008547008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019232715861929,0.0045891541976071,0.006682350078079,0.0087596427121396,0.0110763352572961,0.0131858740219968,0.0154327275690652,0.017360438192964,0.0194024058983313,0.0214145463470506,0.0234230174418009,0.0254445880253522,0.0273871282551748,0.0294163039787634,0.0313875459989898,0.0333946015158712,0.0353855065268209,0.0372573607901255,0.0393836505414862,0.0414485665227119,0.0565970846453819,0.0710933171654662,0.0837926770481839,0.0972303942170295,0.1092948008558088,0.1251334750018501,0.1360556480430933,0.1470075104785004,0.1576368353065516,0.16731325688565,0.1781440991650167,0.1892081743810316,0.1996981509028328,0.2090438655865848,0.2177828541305159,0.2272099218499563,0.2352449795618324,0.2420010328490917,0.2486241648737402,0.2561874821377536,0.2619877640540228,0.268391099500863,0.2731532850161713,0.2773254910399407,0.2811878546830286,0.2853311681921071,0.2894033615544067,0.2923207736335139,0.2956218519953506,0.2992344522782279,0.2966597749912735,0.293200745123822,0.2911413706544756,0.2884745324113342,0.2855559004833917,0.2828970411317709,0.2798357147353182,0.2790800097871299,0.2788804071246819,0.2796153982363565,0.2796668463812303,0.2800423297013404,0.2817977901470466,0.2822427008107749,0.2834237320392045,0.2856295608674351,0.2883777171620595,0.2941850738870473,0.2993838846246515,0.3015106681202305,0.306450893852258,0.3137408568443051,0.3162701124433124,0.3198160850229893,0.3219895287958115,0.3273669335845501,0.3291710546111027,0.3250148544266191,0.3311948676824378,0.3315985130111524,0.0,1.850519870378779,53.89005787580819,148.91699094202977,191.66476856803564,fqhc5_80Compliance_implementation,82 -100000,95736,47487,451.5856104286788,4929,50.14832455920448,3908,40.20431185760842,1524,15.5322971504972,77.34438518034166,79.6963887662207,63.33412346583962,65.07215435690748,77.15114024791231,79.50757324125946,63.25967324593773,65.0019539839421,0.1932449324293514,188.81552496122825,0.0744502199018839,70.20037296537396,243.58928,170.7291065031799,254438.5393164536,178333.23567224442,483.26019,322.0499156480596,504159.5220188853,335769.0791844861,468.74045,229.19871307975745,485481.0207236568,236296.34633433347,2716.8721,1294.4583208297806,2798878.2485167542,1313111.36963084,911.01831,419.8833513994994,936290.7161360407,423281.0242745656,1472.0681,637.0023598675497,1502830.847330158,635248.7195213259,0.37901,100000,0,1107224,11565.388150747887,0,0.0,0,0.0,41687,434.7998662989889,0,0.0,42446,439.2809392496031,1104367,0,39643,0,0,9653,0,0,67,0.689395838556029,0,0.0,0,0.0,0,0.0,0.04929,0.1300493390675707,0.3091905051734632,0.01524,0.3555815768930523,0.6444184231069477,22.793702206718468,3.982413315667453,0.3121801432958034,0.2881269191402252,0.202661207778915,0.1970317297850563,11.452176887443825,6.440757041554486,16.373039191729013,11484.106342668916,45.12279321499104,13.871731569466952,13.834387449668752,8.938760001893682,8.477914193961654,0.6049129989764586,0.8250444049733571,0.7270491803278688,0.5845959595959596,0.1103896103896103,0.765089722675367,0.9145833333333332,0.8784530386740331,0.7523364485981309,0.1176470588235294,0.5316927665920954,0.7585139318885449,0.6631701631701632,0.5224913494809689,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.004460981618728,0.006716788928459,0.0089170551374628,0.0112247595420623,0.0134577993138761,0.0154909194676015,0.0178784631868972,0.0201387540742405,0.0225928578737337,0.0244179850807443,0.0267266065215383,0.0288202512903822,0.0310295465546183,0.0331242649941199,0.035135582010582,0.0372425214781078,0.0393661592068693,0.0415817917272916,0.0436240911647674,0.0583911885994675,0.072439956046256,0.0858218739838677,0.0982437690608896,0.1096066645576294,0.1253159069039537,0.136912780152526,0.1479187946884576,0.1578761855934375,0.1671866791040775,0.1791862706043216,0.1896643119097331,0.2007154818084944,0.2097484723603808,0.2185303725211997,0.2272807794508414,0.236616857681706,0.2446076336564629,0.2515684027817169,0.2573162354018777,0.2634555991255162,0.2686404791427836,0.2738286796024609,0.2786478319263238,0.2833195665905447,0.2879851031557139,0.2915690719841677,0.2952444025573754,0.298590783099759,0.3013870375991448,0.2986466124952914,0.2944733840042882,0.2920107479988182,0.2895298836974402,0.2868506975363609,0.2835434902368856,0.280013291770179,0.2793216450925774,0.2797838243316967,0.2800313401474411,0.2812698412698413,0.2822339420654912,0.2819319841435426,0.283173612658792,0.2849164689245224,0.285658713692946,0.2862728431789205,0.291095676115387,0.2966193350312249,0.3014726203166331,0.3056671934974034,0.3116698292220113,0.3181818181818182,0.3221340915893445,0.3232295142751205,0.3238417551639631,0.3331820931639443,0.3392348392348392,0.3400054839594187,0.3490965013456363,0.0,2.395155060050692,52.94950436110253,145.3009734657831,192.62974245808147,fqhc5_80Compliance_implementation,83 -100000,95667,47507,453.3433681415744,4994,50.91619889826168,3942,40.58870875014373,1482,15.135835763638454,77.28108161739658,79.66875891834728,63.29287913429015,65.0557659029883,77.08607129421497,79.47656269372698,63.21842512848887,64.9848433176046,0.1950103231816058,192.19622462030367,0.0744540058012859,70.92258538369833,244.44024,171.2177141146212,255511.55570886517,178972.59673097433,484.15528,321.8012490514228,505459.9600698255,335752.50509728823,465.90304,227.6627777044984,482767.9241535744,234807.64881693237,2732.42442,1291.290200283616,2818537.071299403,1312130.2437450911,921.94318,419.7826604193906,952074.4143748628,427169.7768503144,1433.4867,617.637291803896,1467251.6750812714,619307.8019666064,0.37837,100000,0,1111092,11614.161623130232,0,0.0,0,0.0,41721,435.4793188873906,0,0.0,42135,436.1901178044676,1098713,0,39480,0,0,9629,0,0,90,0.9407632726018376,0,0.0,0,0.0,0,0.0,0.04994,0.1319872082881835,0.2967561073287945,0.01482,0.3546589817483189,0.6453410182516811,23.11940669264781,4.067097863917032,0.3132927447995941,0.2871638762049721,0.2042110603754439,0.1953323186199898,11.518528697731716,6.373036162977614,15.952052227619388,11485.072804375925,45.60030589382201,14.094861930902518,14.043278610206084,9.036974451013512,8.425190901699901,0.5946220192795535,0.7977031802120141,0.7101214574898785,0.5813664596273292,0.1246753246753246,0.7768795472918351,0.9129554655870444,0.9085872576177284,0.7327188940092166,0.1393939393939394,0.511275415896488,0.7084639498432602,0.6281464530892449,0.5255102040816326,0.1206611570247934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0045215381340037,0.0066776946730669,0.0088793164755006,0.0110855724833716,0.0131868355667793,0.0155800721903868,0.018060603585576,0.0203628929210324,0.0225488490158548,0.0243307256154453,0.0265000616041726,0.0287227478403949,0.0307036071586799,0.0329125943050581,0.034936981089157,0.0369077461724916,0.0386108400971498,0.0405292942743009,0.0423398444828952,0.0570971853647324,0.0719050062303012,0.0844048831179737,0.0971560241154003,0.1091206414517065,0.1245358469008854,0.1363665314961465,0.1471070682970474,0.1565834776843951,0.1658720443270407,0.1777947965655607,0.1890972146960008,0.1994989925393454,0.2083931094148697,0.2170962019458554,0.226517008462639,0.2353802476863236,0.2434186070088878,0.2512612489773657,0.2586345289422989,0.2646540938788749,0.269962511715089,0.2751298285551682,0.2803957115243778,0.2849637593034003,0.2889612391628744,0.293499630589679,0.2962731811697575,0.2994698845151841,0.3016833593192569,0.2994511792230208,0.2962774165105257,0.2929446986386488,0.2904799826250633,0.2881603239830861,0.2855281112490992,0.2817443351859769,0.2819800874051194,0.2827405875617384,0.2835999215392571,0.2828994193669226,0.2838648375794287,0.2834630799252995,0.284984998432672,0.2869173945475107,0.2879067710636527,0.2905180506955705,0.2952363020146865,0.2985095465810325,0.3020825116352449,0.3057137690986348,0.3071090047393365,0.3106977905380102,0.3135961624943786,0.3162558847964553,0.316915995397008,0.3213213213213213,0.3253370340999207,0.326017130620985,0.3394146712276701,0.0,2.393782214445173,53.79289607451365,144.34213074441206,197.05210139183265,fqhc5_80Compliance_implementation,84 -100000,95731,47934,456.38298983610326,4866,49.55552537840407,3851,39.70500673762941,1466,15.010811544849632,77.3612597271838,79.72750940447843,63.34108899169471,65.0895422288538,77.17397722772712,79.54109326874017,63.270444813687725,65.02104083184477,0.1872824994566855,186.4161357382557,0.0706441780069866,68.50139700902957,243.19922,170.3051741490756,254044.37434060025,177899.7128924545,488.04049,325.3355678891788,509235.68123178487,339275.1437770197,465.72031,227.72448603629243,483216.9203288381,235372.5236994568,2705.26191,1266.608477902939,2794856.953337999,1292048.6340923414,875.99645,399.765894714488,904134.386980184,406666.94666773325,1425.28618,607.121874688211,1461777.5851082725,611522.3580288374,0.38078,100000,0,1105451,11547.471560936374,0,0.0,0,0.0,41915,437.29826284066814,0,0.0,42074,436.15965570191474,1107525,0,39752,0,0,9563,0,0,96,0.9923640200144156,0,0.0,0,0.0,0,0.0,0.04866,0.1277903251221177,0.3012741471434443,0.01466,0.3631889763779528,0.6368110236220472,23.3317752526118,4.0763272622681725,0.3277070890677746,0.2729161256816411,0.1981303557517527,0.2012464294988314,11.439846693126425,6.240037998046807,15.67271935092235,11566.22253431019,44.2145333874978,12.823983015218694,14.562332023588612,8.382425961639235,8.44579238705126,0.5925733575694625,0.8001902949571836,0.7171156893819335,0.580602883355177,0.12,0.7553648068669528,0.9216152019002376,0.8736842105263158,0.7318435754189944,0.1567567567567567,0.5219657483246463,0.719047619047619,0.6496598639455783,0.5342465753424658,0.1084745762711864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025526483726866,0.0047550490712953,0.0070832741369162,0.0093771271245847,0.011542764161497,0.0138795543878943,0.0161217955254624,0.0182978506152039,0.0204995552465569,0.0228296478296478,0.0248431284091375,0.0268682469906741,0.0289931091226987,0.0309673431544246,0.0331462065549409,0.0352125052984171,0.0372499067975643,0.0391432485160433,0.0415622497894331,0.0435616124360537,0.0578850651520213,0.0717993803901867,0.0854670372895578,0.098447012312448,0.1097491568296795,0.125499439781832,0.1371145608007804,0.1479290570373759,0.1576226838254926,0.1674884239410049,0.1786225681771691,0.1897741530740276,0.200721833282602,0.2099044746103569,0.2190770380793246,0.2282454742619395,0.2358338071190484,0.2435174366349092,0.2510908369694565,0.2578755249396391,0.2641276079292608,0.270586586305978,0.2769076186535847,0.2822786173229477,0.2869468275895497,0.291099257656949,0.2946859903381642,0.2984940065014221,0.3026067392484936,0.3050784905560901,0.3014379787662948,0.2977056288937069,0.2958510070507598,0.2928548773103428,0.2911236638052454,0.287951475890729,0.2833343850571086,0.2839697901000457,0.2844175491679274,0.2843857247008197,0.2857862621060292,0.2868469321341932,0.2871433941773527,0.287622737292098,0.2882749035489205,0.289767998335414,0.2907446384891063,0.2959241348992024,0.3001329415057375,0.3051698904315494,0.3103681951660266,0.3143591626882115,0.3194306315266036,0.320492603439213,0.3210219383504582,0.3254700455447857,0.3324287652645861,0.3421368547418967,0.3518826135105204,0.3570863024544735,0.0,2.0750860502319317,50.73945180402068,143.48268156431783,193.60126390362183,fqhc5_80Compliance_implementation,85 -100000,95647,47746,455.1318912250253,4876,49.78723849153658,3910,40.252177276861794,1475,14.982174035777389,77.2430810454354,79.6480572307459,63.27207635196621,65.05025706007805,77.05325243743107,79.46388108549507,63.19901062672112,64.98231400662291,0.1898286080043334,184.1761452508308,0.0730657252450939,67.94305345513862,241.80112,169.34524286330543,252805.75449308395,177052.33082407754,484.82,323.1337563834929,506251.26768220647,337206.5055709985,460.61495,224.7391650770392,478140.1507627003,232279.87125261957,2752.59699,1287.5669480760014,2833482.47200644,1301777.3041245427,885.34408,405.9036871965855,908853.074325384,407596.2417043778,1434.78846,621.0696168523518,1458427.8440515646,613510.0005904143,0.37998,100000,0,1099096,11491.170658776542,0,0.0,0,0.0,41654,434.8489759218794,0,0.0,41700,432.5174861731157,1110917,0,39882,0,0,9541,0,0,82,0.8468639894612481,0,0.0,0,0.0,0,0.0,0.04876,0.1283225432917522,0.3025020508613618,0.01475,0.3570727879144595,0.6429272120855405,23.43542214594982,3.971369513142509,0.2987212276214834,0.2915601023017903,0.2038363171355498,0.2058823529411764,11.077249515388006,6.02585820417101,15.87824191873473,11558.154762062246,45.03963758651146,14.121697524950864,13.245563951884773,8.815633660793106,8.856742448882727,0.579539641943734,0.8008771929824562,0.699486301369863,0.5759096612296111,0.0956521739130434,0.727580372250423,0.8981670061099797,0.8696969696969697,0.6201117318435754,0.1153846153846153,0.5153958944281525,0.7272727272727273,0.6324582338902148,0.5631067961165048,0.0898876404494382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0046558334854847,0.00655817589312,0.0091852183013442,0.0115854464821539,0.0138907276337899,0.0162732602600051,0.0184610357784675,0.0204822480366492,0.0224980287343962,0.0245103066352169,0.0265568517909957,0.0286513502951521,0.0306795236329171,0.0328750438677979,0.0347537457734026,0.0368156627130056,0.038601262143984,0.0407747196738022,0.0429751032153134,0.058176840037203,0.0720675423711059,0.0853378130085568,0.0979799787366182,0.1105621014400946,0.1260534451361538,0.1373430228851915,0.1485521153190037,0.1585767790262172,0.1678015982127513,0.1801672511464796,0.1915793125128727,0.2018842237107226,0.2110991874904185,0.2197659297789336,0.2290899409859342,0.2376022894960425,0.2454948101565405,0.2526710616049102,0.2593730651929647,0.2658817530766913,0.2723493940635794,0.2773415757748013,0.2810078913914274,0.2855961271802856,0.2894025595774352,0.2935102690375049,0.2962236015345203,0.3005202184658095,0.3038282571912014,0.3008799471762185,0.2975543291264674,0.2945705824284304,0.2920077521622168,0.2899574619983937,0.2862680210200548,0.2829551936117624,0.2834710336558204,0.2838972923139959,0.2839314408141403,0.2840048015605071,0.2843401155886311,0.2857471890114952,0.2854780315558932,0.2870043470951317,0.2877530786892089,0.2890133760146336,0.2930394869215292,0.2987610122494823,0.3042941363926068,0.3074568217125102,0.3123075289370288,0.3148299490790218,0.3152743000227634,0.3217817120256144,0.3202498821310702,0.3225707257072571,0.3257085020242915,0.3297032398584263,0.3297872340425531,0.0,2.440696388001074,51.31269645327404,145.68520056524952,197.98655466869943,fqhc5_80Compliance_implementation,86 -100000,95827,47786,455.1639934465234,4901,50.048524945996434,3911,40.33310027445293,1491,15.319273273712,77.44904619750217,79.77580078309259,63.38601454967061,65.10710084177853,77.26199173165786,79.58929206920105,63.316865878661936,65.03996007961933,0.1870544658443123,186.50871389154133,0.0691486710086763,67.14076215919818,244.23982,171.0037683646297,254875.55699333173,178450.29205404504,486.42433,324.44188959985865,507133.5218675321,338097.7580346445,471.97049,230.6130492916076,489389.8692435327,238288.9629647415,2694.7613,1262.3142820350852,2781828.7643357296,1287072.8922267058,906.28766,407.3383467802926,935456.4892984232,414953.2064354418,1443.51494,603.390791441506,1484114.0179698833,609546.8841609055,0.37921,100000,0,1110181,11585.252590605987,0,0.0,0,0.0,41828,436.0044663821261,0,0.0,42704,442.46402370939296,1106037,0,39702,0,0,9780,0,0,95,0.9913698644432154,0,0.0,0,0.0,0,0.0,0.04901,0.1292423723003085,0.3042236278310549,0.01491,0.3478515625,0.6521484375,23.42994319196744,4.015338886435118,0.3201227307593965,0.2861160828432626,0.1994374840194323,0.1943237023779084,11.519653947720094,6.311368037585452,15.776533078360275,11446.93849069751,44.78552349539365,13.684429760637702,14.10659473923178,8.74373864136808,8.250760354156078,0.6011250319611353,0.8060768543342269,0.713258785942492,0.5948717948717949,0.1210526315789473,0.780960404380792,0.9098712446351932,0.8997214484679665,0.7405660377358491,0.1533333333333333,0.5227606461086637,0.7320061255742726,0.6382978723404256,0.5404929577464789,0.1131147540983606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204247389688,0.0047641734159123,0.0072549795541485,0.009508233358052,0.0117656629752788,0.0139594554692352,0.0162617375080289,0.0183304585676522,0.0206029637199795,0.0228177343933859,0.0246349336475892,0.0267446633825944,0.0289065471478942,0.0308980087721104,0.0328898514851485,0.0349604834960483,0.0368453736286483,0.0388001202782991,0.0407164600887263,0.0426920674578388,0.0575490789226628,0.0718549727655748,0.0854310326759028,0.0984083626621841,0.1107903360060689,0.1269126722461746,0.1384295768676333,0.1488861715136371,0.1588402210321947,0.1670485694706184,0.1792396025977377,0.1904386429180933,0.2008618443904133,0.209897555068242,0.2185256733914341,0.2283431501475284,0.2365974503145354,0.2447433969885331,0.2508204141677039,0.2567976520835474,0.2626095985233041,0.2678964982450412,0.2726586637107615,0.2774234389183507,0.281716576050761,0.2855230351637824,0.2885595702516421,0.2917184055143053,0.2950838694704813,0.2980495173047875,0.295780121410289,0.2939186412820161,0.2913729063003714,0.2888141150079806,0.2856868594382254,0.2826457344529633,0.2792052772106172,0.2794860102276799,0.2794032984523688,0.2801259708780807,0.2801679298558478,0.2806570986626985,0.2801362465730664,0.2812902080837659,0.28189663392772,0.2827632392334638,0.283745314129485,0.2884232777915941,0.293214497092922,0.2955491011853364,0.2992239667929977,0.3017195906741217,0.3062206939668646,0.3107272178636089,0.3138153587129361,0.3161290322580645,0.3245787156520419,0.3274924471299094,0.3311457478807766,0.3389958474896187,0.0,1.863239583784176,51.8650241906195,145.90964780738457,194.33551192195165,fqhc5_80Compliance_implementation,87 -100000,95803,47807,455.0483805308811,4990,50.8856716386752,4010,41.23044163543939,1559,15.813701032326756,77.3497797498425,79.68129682784114,63.33168066437421,65.0592434793484,77.14661860041429,79.4877520803554,63.25386120786514,64.98884493773498,0.2031611494282117,193.54474748573125,0.0778194565090686,70.39854161341452,243.0362,170.2738892688018,253683.0579418181,177733.14225107967,484.4635,323.0326171244023,505040.9486133002,336538.7658996912,471.70273,230.273069871458,489318.7165328852,237937.6418016294,2819.74481,1318.0676078416668,2895419.913781406,1328037.748193703,919.64581,415.5449161688071,939712.5768504118,413726.3432919562,1510.47718,641.8722389060622,1532247.7375447534,629164.9958452324,0.38018,100000,0,1104710,11531.04808826446,0,0.0,0,0.0,41727,434.8819974322307,0,0.0,42599,441.5832489588009,1106545,0,39684,0,0,9655,0,0,76,0.7932945732388339,0,0.0,1,0.0104380864899846,0,0.0,0.0499,0.1312536167078752,0.3124248496993988,0.01559,0.3569088456349971,0.6430911543650029,23.21031250794921,4.032388628926438,0.3009975062344139,0.2865336658354114,0.2062344139650873,0.2062344139650873,11.031840168127074,6.044316072910421,16.497114758542132,11534.65175307753,46.09720896227969,14.343441650423616,13.70863468165397,9.13930833997471,8.905824290227388,0.5812967581047381,0.7989556135770235,0.7050538525269263,0.5671100362756953,0.1124546553808948,0.7594529364440868,0.9269662921348316,0.8653295128939829,0.6632124352331606,0.1137724550898203,0.5012649078424286,0.6878048780487804,0.6398601398601399,0.5378548895899053,0.1121212121212121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0046032019629513,0.0068504272636856,0.0094281156976094,0.0117892381243006,0.0140318721042716,0.0161194942903752,0.0182211651337749,0.0205241424424547,0.0228356772912444,0.0248898001025115,0.0267470275376306,0.0289348400563478,0.0309851613102532,0.0330922932505338,0.0351116484288622,0.0371512861653123,0.0388772483040474,0.0409488580869059,0.0430337043554315,0.0579912773105736,0.0723667698485735,0.0854734900102727,0.0978696122841498,0.1105571074685078,0.1262319698828306,0.1374042562220195,0.1481520906071702,0.1581612486245686,0.1671994679139222,0.1784921438886134,0.1900829129954755,0.2007376300100091,0.2098507625867818,0.2184690879883812,0.2270243913250662,0.2351752848867707,0.2440755362103676,0.2515631205673759,0.2584135854069095,0.2652322285846492,0.2705154735599125,0.2763511195751174,0.2808074035940474,0.2845562000922307,0.2889690315592536,0.2926094833510339,0.2961052163415719,0.2991944764096663,0.3027498747660102,0.2999838544750013,0.2974285596356782,0.2939719007799082,0.291765488517383,0.2897504456327985,0.2856049824786913,0.2826506405187411,0.2832724233435487,0.2828100216601572,0.2840714591356439,0.2843230714592796,0.2850296803202714,0.2874441521566662,0.2891936417471837,0.2907594391539455,0.2920016598371285,0.2920759844860289,0.2952752222048963,0.2989164409251927,0.303676412949753,0.3063111832904768,0.30945619017566,0.3119254580701645,0.3159415880742318,0.3178541335080985,0.3184009406231628,0.3261200853398354,0.3329985940951998,0.3345118302964373,0.333076032419915,0.0,2.375369814876916,54.06708836521828,142.6804152184158,205.36467119362183,fqhc5_80Compliance_implementation,88 -100000,95795,47808,455.1072602954225,5133,52.226107834438125,4115,42.32997546844825,1486,15.084294587400176,77.41775944651599,79.74524645240135,63.37436231324406,65.09474985453932,77.22681238836972,79.55854601101969,63.301014868835296,65.02562951584086,0.1909470581462642,186.7004413816602,0.0733474444087676,69.12033869845402,243.42846,170.51620782756817,254113.9516676236,178001.1564565668,488.65521,324.5948907982371,509487.74988256174,338227.0156754796,470.54399,229.5436643148721,487082.8331332533,236527.82740925887,2858.93074,1337.9522891567956,2942658.8548462866,1355012.204632937,920.4355,415.29137519653295,944246.7352158254,416984.12984253536,1442.842,620.1821022669988,1466600.177462289,614302.1119054959,0.38182,100000,0,1106493,11550.634166710162,0,0.0,0,0.0,41971,437.47585990918105,0,0.0,42774,442.3404144266402,1108877,0,39838,0,0,9573,0,0,80,0.8351166553577952,0,0.0,2,0.0208779163839448,0,0.0,0.05133,0.1344350741186946,0.2894993181375414,0.01486,0.3648926237161531,0.6351073762838468,23.194866454634607,4.063731404899209,0.3229647630619684,0.282138517618469,0.2012150668286755,0.193681652490887,11.49107601342199,6.1419257959765465,15.773282376693674,11559.379347711169,47.026526866771576,14.259131635676743,15.02233485473776,9.141313651805849,8.603746724551225,0.5946537059538275,0.8001722652885443,0.7140707298720843,0.5905797101449275,0.1003764115432873,0.7594226142742582,0.9156626506024096,0.8783783783783784,0.7198067632850241,0.0988372093023255,0.5230125523012552,0.7134238310708899,0.6506777893639207,0.5475040257648953,0.1008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027035510687633,0.0050378599738477,0.0072246856957311,0.0091304259511283,0.0112259009192223,0.0136202614112952,0.0159820609519926,0.0182187474483546,0.0201046628099511,0.0222806730257501,0.0244774956692873,0.0266688565650759,0.0285047593593881,0.0305245277191537,0.0325520967592258,0.0346316322209483,0.0368005464198118,0.03891849302287,0.0408888334839654,0.0431116154622968,0.057133318031008,0.0720072759965292,0.0852961833181337,0.0989988759677707,0.1114001917060787,0.1269665176920557,0.138400093227252,0.1498410470692056,0.1588787041285627,0.1682398191499619,0.1800073138726955,0.1911907694302197,0.2018546872115624,0.210832059401616,0.2199307806405537,0.2294178817178131,0.2380310106898819,0.2461505632363346,0.2535030981320585,0.2601093271122089,0.266441782285734,0.2722135960867179,0.2762651427491912,0.2809681047065298,0.2851945721111286,0.2894005020426244,0.2927660743497209,0.2965750990149284,0.2999069935670551,0.3026440410418311,0.2995062788451218,0.2965077186963979,0.2946479980900754,0.2910067384668548,0.2889609428207634,0.2854766084102877,0.2818346599416818,0.282393112124034,0.2834713829859461,0.2832174036482362,0.2839096735728126,0.2848488413127867,0.2852389468868277,0.2853785611351291,0.2873192303095494,0.2884281905945078,0.2899943470887507,0.2957377866400797,0.2997776851465888,0.3049550786613833,0.3087692446205096,0.3117912641747165,0.314963571828881,0.3210107978404319,0.3224516369047619,0.3235017626321974,0.3275202692366529,0.3313965137247044,0.3390604026845638,0.3502846299810246,0.0,2.395073766696486,53.97039543820599,148.90472366240877,210.2167959256611,fqhc5_80Compliance_implementation,89 -100000,95721,47613,454.0487458342474,5025,51.075521567890014,4033,41.53738469092467,1538,15.67054251418184,77.3893283971574,79.75148335981913,63.35181630130408,65.09439545308737,77.19223131339928,79.55746726356821,63.2771274797211,65.02338113336943,0.1970970837581234,194.01609625091965,0.0746888215829741,71.01431971794625,242.8668,170.08058433724904,253723.6343122199,177683.66851291677,485.70823,323.35639755558395,506867.3018459899,337257.8823409533,463.65549,226.01144564277607,481196.1220630792,233598.5901768089,2824.96493,1311.0596663653123,2910626.873935709,1329045.7541869727,926.20108,421.5677778291714,954683.381912015,427491.5408626842,1496.61246,635.1427985251141,1526504.9884560336,632793.0697224982,0.37997,100000,0,1103940,11532.892468737267,0,0.0,0,0.0,41779,435.8709165177965,0,0.0,42013,435.6306348659124,1110757,0,39835,0,0,9472,0,0,77,0.8044211823946678,0,0.0,1,0.0104470283427878,0,0.0,0.05025,0.1322472826802116,0.3060696517412935,0.01538,0.3493333333333333,0.6506666666666666,23.29252165518188,4.0722296703115335,0.3027522935779816,0.2871311678651128,0.2028266798909,0.2072898586660054,11.15009168158176,5.8835854439973465,16.315512979819623,11482.720246796363,45.95044005772205,14.17384696184264,13.763950495950192,9.050245981793728,8.962396618135493,0.5836846020332259,0.8255613126079447,0.6936936936936937,0.558679706601467,0.1124401913875598,0.7502138579982891,0.918918918918919,0.881619937694704,0.6966292134831461,0.1481481481481481,0.5157122905027933,0.7592319054652881,0.6266666666666667,0.5203125,0.1020092735703245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192926663763,0.0044695794946638,0.0067354412018299,0.0088746281084044,0.011406612175186,0.0134254829713169,0.0156224523071906,0.0179486132936062,0.0201191412835787,0.0219893787923748,0.0239676196331591,0.0260706297580694,0.0281753819911836,0.0303863138066269,0.0324550095395245,0.0347436082921687,0.0367329613102941,0.0386813688370693,0.0405804332460188,0.042431061245325,0.0569107388997953,0.0702767749699157,0.08382542662653,0.0964251918830827,0.1080448623350339,0.1237878707767144,0.1361158252015273,0.1469451630417425,0.1575005875691729,0.1669669090051255,0.1790417936485715,0.190826978203256,0.200993715888582,0.2100515041170488,0.2183518538893167,0.2274086709940406,0.2361692391825984,0.2446186373962527,0.2519060585432267,0.2585669781931464,0.2643403054794362,0.269539605175497,0.2750097521188694,0.2790174296111856,0.2831415950682006,0.2868271431735952,0.2911977994498624,0.294785790516847,0.2988088001345111,0.3014173186859506,0.2977055166950847,0.2948360801965116,0.2930059628200631,0.290008790765373,0.2874887115638,0.2845252069454396,0.2813552917467015,0.2820851688693098,0.282589126484026,0.2836085952761499,0.2842932717383205,0.285933262586959,0.2869409361844025,0.288455978828919,0.2892759726276499,0.290666115232507,0.2902450744834214,0.2937330718221724,0.2977364254964588,0.3026965587520577,0.3074357818837314,0.3122696155871511,0.3142803598200899,0.3179151624548736,0.3203168685927307,0.3276486391776662,0.3298303558024321,0.3343917443937289,0.3344416735937933,0.3427575522850503,0.0,2.3584987661275387,50.43114623731619,147.96543160874154,212.1247506678772,fqhc5_80Compliance_implementation,90 -100000,95675,47577,452.66788607264175,4810,49.19780506924484,3839,39.57146590018292,1432,14.622419649856283,77.35982293729873,79.73627137079107,63.33991942654043,65.09035496035646,77.18216739222771,79.56188537066707,63.27348261241511,65.02762336772295,0.1776555450710191,174.3860001240023,0.0664368141253248,62.73159263351147,244.6521,171.41464245149433,255711.62790697676,179163.4621912666,486.92051,324.63953828676904,508371.1732427489,338754.6325448533,467.54644,228.59845285258996,485227.30075777374,236220.5471846591,2666.2907,1248.1571895128818,2746589.297099556,1264378.1541168648,859.72148,392.0054626456453,880389.8510582702,391661.1512903192,1379.00334,579.6977502843837,1407862.45100601,576549.3334980569,0.37868,100000,0,1112055,11623.255813953489,0,0.0,0,0.0,42013,438.5471648811079,0,0.0,42329,439.03841128821534,1098093,0,39341,0,0,9771,0,0,71,0.7316435850535667,0,0.0,0,0.0,0,0.0,0.0481,0.1270201753459385,0.2977130977130977,0.01432,0.3587587587587587,0.6412412412412413,23.151464952120964,4.019503119862639,0.310758009898411,0.2880958582964313,0.2104714769471216,0.1906746548580359,11.398428549906033,6.432971852354463,15.137084128085396,11489.04644944227,44.07527961450618,13.731506183542953,13.500379044173895,9.001141038494422,7.842253348294908,0.5972909611878093,0.810126582278481,0.7057837384744342,0.5915841584158416,0.1051912568306011,0.7836206896551724,0.9193548387096774,0.8769716088328076,0.7487684729064039,0.1597222222222222,0.5166106756252333,0.7213114754098361,0.6438356164383562,0.5388429752066116,0.0918367346938775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0046522942196004,0.0070714756759498,0.0093538624037699,0.0118248739222384,0.0138327650262099,0.0161709412160303,0.0184467208096967,0.0206337208114568,0.0226286930190686,0.0246993259163644,0.0268581687612208,0.02927240397562,0.0314041247515985,0.0334615821015606,0.035503142053911,0.0375696213015301,0.0395071204090734,0.0414925248996735,0.0435960770826168,0.0585586526808475,0.0725317529292273,0.0859484875837024,0.0986711278053091,0.1103622844486631,0.1254086652912236,0.1364118783299017,0.1472921880824325,0.1571769081950041,0.1658528209145837,0.1778326078524328,0.1893027284538761,0.199664904149531,0.2079635850357256,0.2162248447751992,0.226065096293343,0.2362628167222662,0.2432687553377983,0.2502210533475412,0.2571902528314838,0.2628634829642642,0.2690990685661528,0.274640062412823,0.2801316183069099,0.2833991903226588,0.2871002250175218,0.2905223209827224,0.2941818551048383,0.2987667075611803,0.3027206405225315,0.2995838367566116,0.2969352602901415,0.2946508882392624,0.2923424850911815,0.2893440075765423,0.2845327473600683,0.2806610474476749,0.281563093445092,0.2827313481173402,0.2826594020974663,0.2833881087541081,0.2837199228133737,0.2839338649743226,0.2853772009883578,0.2871149799119954,0.2886397763164707,0.288453392821845,0.29293244339093,0.2973142003405024,0.3011920217160392,0.301154817755323,0.3037193352677393,0.303687907676869,0.3065444629601575,0.30958597538232,0.3128761949722648,0.3164595331918763,0.3199840605698346,0.3271177410761854,0.3208898944193062,0.0,2.1099479103479344,50.427077395004105,142.935426260831,193.60873209262977,fqhc5_80Compliance_implementation,91 -100000,95854,47691,453.5856615269055,4956,50.61864919565172,3946,40.60341769774866,1452,14.824629123458593,77.34109898624328,79.6299276380607,63.34986309044478,65.0435350001295,77.15513245098612,79.44810686994941,63.279972144739816,64.97714616655584,0.1859665352571653,181.82076811129377,0.0698909457049623,66.38883357365444,243.52944,170.65628662026973,254062.8873077806,178037.7309452602,487.15706,324.37954077405465,507651.2925908152,337833.11158016854,465.66051,227.3483027290848,482031.7566298746,234303.53064377944,2731.63204,1281.873739216849,2812417.134391888,1299952.0303971132,913.73509,419.0452211137176,938590.7421703842,422503.9133616924,1411.79516,598.7069738861616,1442343.6684958374,598612.7189000282,0.38006,100000,0,1106952,11548.313059444572,0,0.0,0,0.0,41816,435.6312725603522,0,0.0,42068,435.0783483214055,1106801,0,39712,0,0,9928,0,0,89,0.9284954201180964,0,0.0,0,0.0,0,0.0,0.04956,0.1304004630847761,0.2929782082324455,0.01452,0.3617681271810779,0.638231872818922,23.297910850510323,3.9860460142280703,0.3220983274201723,0.2883933096806893,0.1964014191586416,0.1931069437404967,11.394989201219143,6.253989245254264,15.52760825950001,11540.2450520366,45.50832693463027,14.190684527722995,14.50804312756028,8.42948813764733,8.380111141699668,0.6008616320324379,0.8154657293497364,0.7018095987411487,0.5780645161290323,0.1351706036745406,0.7756622516556292,0.9333333333333332,0.8337950138504155,0.7513812154696132,0.2222222222222222,0.5237399561723886,0.7247278382581649,0.6494505494505495,0.5252525252525253,0.1099830795262267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.0046508800194546,0.0068973212021625,0.0089853189026742,0.0112516008375175,0.0136367336969795,0.0158012164185947,0.0181280285641418,0.020427757236533,0.0226786828564706,0.0248496829770452,0.0267273827471975,0.0290356706346353,0.0311850525752618,0.0331378994116374,0.0351945505212096,0.0371833316099679,0.0391429577902567,0.0411216311614966,0.0431747484940855,0.05774584736661,0.0720675528801939,0.0853147585628993,0.0975699403511719,0.1098452142781931,0.1252481939926492,0.1366313559322033,0.1479036441723009,0.1580401822391515,0.1673078365606146,0.1790294813858403,0.1904422099686452,0.2013433030474286,0.210985312117503,0.2201005356769658,0.2291265146983895,0.2372410561895518,0.2456475774888659,0.2525924077057475,0.2589513700433971,0.2645769475449656,0.2693980637014171,0.2758347428057767,0.2806515360201209,0.2854350781781101,0.2894156492170463,0.2942154962166218,0.2970949081431568,0.3005301952670374,0.3032824719427117,0.3014041316978696,0.297725024727992,0.2944768873566453,0.2915685282855285,0.2890760796897981,0.2849361181240915,0.2812722412893226,0.281158706712621,0.2808137147549959,0.2816006585894017,0.2815462891688414,0.2838492730689348,0.2847586293671098,0.2851058106169297,0.2868512444530194,0.288519795257495,0.2895591250854408,0.2943062847800798,0.299986032544172,0.3049093566096607,0.3084903950706777,0.3119096617592739,0.315390874381924,0.3194119864304561,0.3237996999249812,0.3300294985250737,0.3324714828897338,0.337594886136636,0.3411924119241192,0.35041761579347,0.0,2.138361208049914,52.7658384767945,146.1758865214843,198.95860652575968,fqhc5_80Compliance_implementation,92 -100000,95648,47614,454.2907326865172,5074,51.79407828705253,4029,41.600451656072266,1467,15.065657410505189,77.31769350596971,79.74112375187164,63.289715480586615,65.08181976431858,77.12556725275012,79.54858750641014,63.21631591582427,65.01025261881789,0.1921262532195982,192.53624546149692,0.0733995647623473,71.5671455006941,242.76736,170.0535073203577,253812.39544998328,177790.20952981603,487.32514,324.74595557986214,508942.0583807293,338969.1750635662,468.87016,229.0279447930104,486552.51547340245,236748.68549687503,2795.96153,1312.6659156074504,2889011.9605219136,1338615.4773594136,930.45754,419.6009559172768,961811.538139846,428234.5088396132,1423.99764,612.173120400339,1462953.161592506,616919.1294819486,0.37954,100000,0,1103488,11536.92706590833,0,0.0,0,0.0,42059,439.16234526597526,0,0.0,42426,440.0719304115089,1104261,0,39588,0,0,9636,0,0,80,0.8154901304784209,0,0.0,0,0.0,0,0.0,0.05074,0.1336881488117194,0.2891210090658258,0.01467,0.3619353619353619,0.6380646380646381,23.163389278085187,4.105032948307813,0.319434102755026,0.2841896252171755,0.202283445023579,0.1940928270042194,11.261701790215604,5.9206180050031305,15.60935465066456,11521.741349222602,46.20508915089949,13.969801229856,14.71152098280093,9.091309958769244,8.432456979473303,0.5909655001241003,0.8043668122270743,0.7024087024087025,0.5717791411042945,0.1150895140664961,0.7510271158586689,0.9297520661157024,0.8505434782608695,0.6834170854271356,0.0903614457831325,0.5216927453769559,0.7125567322239031,0.6430903155603918,0.5357142857142857,0.1217532467532467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024313153415998,0.0048168579888857,0.0070862944162436,0.0092887122836614,0.011649556909866,0.0136919315403422,0.0160161589782302,0.0181039855331582,0.0202327223603819,0.0222124274790381,0.0242262485243545,0.0261988977543801,0.0283078127091678,0.0304408821769717,0.0325150331659537,0.034448503161315,0.0365478128337255,0.0384427617296646,0.0405240865429644,0.0427573261028261,0.0574680210684725,0.0719120667253447,0.085165383443799,0.0979008457706202,0.1102510217228306,0.1258247985002701,0.1371838469713071,0.1477103142455123,0.1575861958300795,0.1675546198629401,0.1800176910962007,0.1918013068495822,0.2022503730652347,0.2114318883753532,0.220512707474596,0.230588339692963,0.239542238961097,0.246697077208988,0.2536277960713069,0.2599672247624941,0.2661093292266364,0.2718911265314719,0.2774126313046979,0.2814104101703046,0.2850541726959884,0.2887004535594557,0.2917474574362951,0.2943966229704128,0.2975558604976309,0.3004619242444239,0.2985958724303658,0.294978763178513,0.2928298063935164,0.2902253687655905,0.2875853792245121,0.2837815113203797,0.280656836249269,0.2810884220171477,0.2814615724832443,0.2814567774210143,0.2821356839991073,0.2822125558429344,0.2837239152037098,0.2844793278797258,0.2867229288006656,0.2883509911581986,0.2872915727805317,0.2910139892676572,0.2936689549961861,0.2965346728935285,0.3014274098834583,0.3050874236359806,0.3071008876109514,0.3116755860405517,0.319925512104283,0.3242989557667488,0.3285258843175953,0.3315454906634882,0.3341470029834554,0.3318250377073906,0.0,1.983284027105652,53.1562349517084,147.0899252505196,206.63372333507607,fqhc5_80Compliance_implementation,93 -100000,95690,47568,454.2585432124569,4911,49.76486571219564,3910,40.06688264186435,1559,15.7069704253318,77.34880342590687,79.70523681628679,63.338894218876014,65.07645733228021,77.14175465550225,79.50778248647956,63.2580895511929,65.00317015212043,0.2070487704046115,197.4543298072291,0.0808046676831111,73.28718015978097,244.22508,171.0250753247878,255225.28999895495,178728.26348081074,486.26634,323.7938118810956,507369.0772285505,337578.5786196005,464.27955,226.8303705439724,480618.3613752743,233483.83904979585,2752.14666,1311.568019816316,2818528.362420316,1313256.250742265,909.10871,424.4092087084158,930003.6367436514,423561.8814171189,1510.52652,663.8229724791661,1523668.303898004,646052.4033140882,0.38039,100000,0,1110114,11601.149545407045,0,0.0,0,0.0,41840,436.3987877521162,0,0.0,42047,434.8103250078378,1102901,0,39529,0,0,9693,0,0,85,0.8882850872609468,0,0.0,1,0.0104504127913052,0,0.0,0.04911,0.1291043402823418,0.317450621054775,0.01559,0.3547507788161994,0.6452492211838006,23.41310548791719,4.057302965267495,0.2923273657289003,0.2872122762148337,0.2140664961636828,0.2063938618925831,11.485282621664243,6.376866244095071,16.897131887633446,11508.2816012188,45.09966556324237,13.790733139297208,13.019812396802692,9.320482751095597,8.968637276046874,0.5843989769820972,0.8227960819234195,0.6876640419947506,0.5806451612903226,0.1102850061957868,0.7483974358974359,0.9224489795918368,0.8163265306122449,0.7554585152838428,0.1559139784946236,0.5075131480090158,0.7456556082148499,0.6325,0.5148026315789473,0.0966183574879227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.0046831285731662,0.0069605803865861,0.0091427178252521,0.0113978363429315,0.0135287830203084,0.0154830949881252,0.0179238542410942,0.0201113893004956,0.0223530013817102,0.0244654900272635,0.0263560322266126,0.0281290481771636,0.0303192529830232,0.0323286088589053,0.0344289566951508,0.0361872417970408,0.0381821954762398,0.0401139577441357,0.0419714494112743,0.0565535248041775,0.0707011502674188,0.0836988227393868,0.0970063660756563,0.1093364278932376,0.1254245178218136,0.1369560602844406,0.1474681859325914,0.1576298354349219,0.1670153753715089,0.1792186523584804,0.1904313572711728,0.2014272660023497,0.2109298942233015,0.2195100477626395,0.2291708225280936,0.2384617962840895,0.2463573921855646,0.2528927496735366,0.2600804372486336,0.2666558618214654,0.2713627216996583,0.2757673686328823,0.2795546874063777,0.2840351644081791,0.2885610128577762,0.2929965757704516,0.2961306309168308,0.298778675282714,0.3011776794182738,0.298247501714839,0.2950952629697853,0.292772882119429,0.289737035913876,0.2874129715125514,0.2836083372838071,0.279872921540115,0.2803143161168863,0.281191964970269,0.282414744902502,0.2834567809100916,0.284854682030912,0.2874921826141338,0.2883895965084172,0.2885946217762984,0.2906488252683989,0.2915483357946155,0.2952694235588972,0.2994375938799036,0.3020820986922682,0.3046931735657225,0.3073079989370183,0.310772344866848,0.3145672599495837,0.3175872776889056,0.3226227175717334,0.3262040313894445,0.3304027806174606,0.3352713178294573,0.3419131771033423,0.0,3.003071614861955,53.47753234615352,138.98472126186277,195.93602260630857,fqhc5_80Compliance_implementation,94 -100000,95631,47495,453.5558553188819,4783,48.72896863987619,3768,38.75312398699167,1454,14.848741516872144,77.26744378178137,79.68250427051073,63.28338998351626,65.06949496838749,77.08161208018687,79.49913674957041,63.21301277393805,65.00222520744707,0.1858317015944948,183.3675209403225,0.0703772095782113,67.26976094041959,243.34618,170.52093367357588,254463.6990097353,178311.35685455124,485.96821,324.06079466460534,507543.3698277755,338239.04870241374,463.86812,227.08981474313688,480394.2863715741,233976.55791218363,2643.91574,1252.9025723066725,2726405.684349217,1271842.6580362776,865.18303,404.0498695543675,889137.8005040206,406937.30020010966,1404.40564,606.088223332347,1436468.0072361473,607040.5544968362,0.37666,100000,0,1106119,11566.531773169789,0,0.0,0,0.0,41763,436.05107130532986,0,0.0,41910,433.614622873336,1103388,0,39584,0,0,9702,0,0,88,0.9097468394139976,0,0.0,1,0.0104568602231493,0,0.0,0.04783,0.1269845483990867,0.3039933096383023,0.01454,0.3595099417553725,0.6404900582446275,23.155636190659568,4.023816339714227,0.3139596602972399,0.2778662420382166,0.2109872611464968,0.1971868365180467,11.467315645422172,6.315520459454919,15.718758534771968,11374.101556260834,43.58817189444315,12.981185833098412,13.490539845310876,8.8620918868399,8.25435432919397,0.589968152866242,0.8194842406876791,0.6906170752324599,0.5723270440251572,0.1251682368775235,0.7574503311258278,0.9136069114470844,0.8619718309859155,0.7201834862385321,0.1686046511627907,0.5109375,0.7448630136986302,0.6171497584541062,0.5164644714038128,0.1120840630472854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002269641518228,0.0042283512472115,0.0067413905133203,0.0087594504511828,0.0108546373818655,0.0130769544139813,0.0151926096620918,0.0173763897538514,0.019519626990051,0.0217918915320887,0.0237526280703553,0.0257221514566298,0.027991523331413,0.0297987655974693,0.031905120715104,0.0341162848399636,0.0363320007456967,0.0384347916342311,0.0402442322494747,0.0420472079736436,0.0567069028583372,0.0708338133791384,0.0841087143727289,0.0972769201608996,0.1098747967822984,0.124923233307215,0.136357360578608,0.1471334185848252,0.1569067864591689,0.166612972508591,0.1787986627844279,0.1901651773625778,0.2013559395812475,0.2098496619034072,0.217753120665742,0.2269610395365067,0.2349868868924725,0.2430386013073366,0.2506016164184526,0.2572132462472785,0.2629459015254983,0.2686968623185863,0.2734621894492643,0.2777564579185954,0.281027398925437,0.2845246613535986,0.2880492597274195,0.2903943737202884,0.2927369238736406,0.2963618122293801,0.2936017137544965,0.2908395581417743,0.2885408891830613,0.2851962087499277,0.2828483965881059,0.2791551882460973,0.2764101508699162,0.2767756205455886,0.2774596031908365,0.2775343734416186,0.2775700235593283,0.2779018077644967,0.2793037802556432,0.2796211699164345,0.2813609751415682,0.2835436451151294,0.2858156430922919,0.2900823083904484,0.2936610608020699,0.2980030113321182,0.3031659737767828,0.304057661505606,0.3072151898734177,0.3125573569899051,0.3147241574091508,0.3152938371677196,0.3166461916461916,0.3179695431472081,0.3239674065748806,0.3232844109480365,0.0,2.5537252229702534,52.29385930918753,133.93851706112278,188.86948265523097,fqhc5_80Compliance_implementation,95 -100000,95830,47839,455.6088907440258,4922,50.0260878639257,3902,40.05008869873735,1487,15.120525931336742,77.40182060844235,79.71453974976852,63.36325590393732,65.07533433892401,77.2155535185461,79.53284552266209,63.29235428999899,65.00867400592958,0.1862670898962477,181.69422710643343,0.0709016139383322,66.66033299443086,244.266,171.15631902175744,254894.89721381612,178603.8877405379,487.84176,324.2615540485316,508415.0787853491,337717.1937269452,473.3876,231.34353077733715,489261.2125639152,237840.35894957348,2728.06177,1286.0137828946904,2797682.176771366,1292919.763742764,891.55672,415.1195371531634,911348.6799540854,414332.0598555396,1440.38922,613.2746064958696,1465257.6020035478,608208.2081352093,0.38086,100000,0,1110300,11586.131691537095,0,0.0,0,0.0,41951,437.0865073567776,0,0.0,42783,441.7718877178337,1102862,0,39616,0,0,9515,0,0,89,0.918292810184702,0,0.0,1,0.0104351455702807,0,0.0,0.04922,0.1292338392060074,0.3021129622104835,0.01487,0.3554947203754399,0.6445052796245601,23.11915479745179,4.024333999717807,0.3157355202460277,0.2780625320348539,0.207842132239877,0.1983598154792414,11.49549074854774,6.416746699561264,15.7907067394732,11543.745202584849,44.6672256495227,13.404235565979386,13.87240009110467,9.004580432537463,8.386009559901172,0.583803177857509,0.8046082949308756,0.6858766233766234,0.6041923551171393,0.0904392764857881,0.7676767676767676,0.9264705882352942,0.8470254957507082,0.7525252525252525,0.1428571428571428,0.5033161385408991,0.7093596059113301,0.621160409556314,0.5562805872756933,0.0766721044045677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871645841349,0.0043478701517193,0.0066245992776853,0.0089379119818804,0.0113052937648051,0.0134879270328596,0.0155939458798348,0.0174831598285364,0.0196966289837888,0.0219849953430293,0.0239454666598329,0.0263992527738717,0.0286175385216327,0.0307763591433278,0.0327268601604884,0.0350596209882411,0.0369335237976937,0.0387714259049949,0.0406950777444249,0.0427732911497793,0.0577996099412826,0.0711926068411809,0.0843969401655663,0.0976270759146629,0.1093639743441215,0.1253168567807351,0.1366597807087239,0.147709152758584,0.1572392153514482,0.1671272789596589,0.1794557384102398,0.1921892391316093,0.2031614970938128,0.2123807754919205,0.2215358234220766,0.2304737657737436,0.2384802390935855,0.2469139966273187,0.2543407010898533,0.2609307594603563,0.2669819283377077,0.2728356394913986,0.2787065500118231,0.2830195458465076,0.2869383692987353,0.2910957639324888,0.2934184872269159,0.2965479577321682,0.2998423242949828,0.3020820986922682,0.2987641053197206,0.2963817053752814,0.2935345735345735,0.2903346527527887,0.2880879459067572,0.2849382791400278,0.2814017277255817,0.2811290243543882,0.2808845526244221,0.2816393908196954,0.2826123391497048,0.2838907327035997,0.2842492823563672,0.2853812336249389,0.2874943416005527,0.2868505319698378,0.2856014443692168,0.2899310944192687,0.2937239944521498,0.2991795234169512,0.304096733441617,0.3095325920851557,0.3123091305702711,0.3151209980459943,0.3186924493554328,0.3205769454460858,0.3234497290788681,0.3269346130773845,0.3307193077339102,0.3245481927710843,0.0,2.5175726620336043,51.01388156450477,141.42272293994293,199.63553708166597,fqhc5_80Compliance_implementation,96 -100000,95700,47663,454.5454545454545,4948,50.543364681295714,3939,40.6060606060606,1507,15.433646812957155,77.32145341825886,79.70839871802394,63.3143933609397,65.07990158082757,77.1309142743097,79.52082603410213,63.2429389320986,65.0118525771639,0.1905391439491524,187.5726839218146,0.0714544288410934,68.04900366365985,243.74878,170.79541801858605,254700.91954022984,178469.61130468763,488.11349,324.61057863631527,509510.9195402299,338661.48237859475,465.29398,227.36367972321875,482939.8119122257,235062.34589476,2752.9824,1286.1682092658093,2840628.02507837,1307906.8226392986,895.59195,411.7849711185586,923898.8714733544,418353.4389953585,1461.71058,618.2911304044322,1498031.473354232,620449.3750497417,0.37957,100000,0,1107949,11577.314524555904,0,0.0,0,0.0,41969,437.9728317659352,0,0.0,42180,437.4921630094044,1104502,0,39552,0,0,9614,0,0,94,0.9717868338557992,0,0.0,0,0.0,0,0.0,0.04948,0.1303580367257686,0.3045675020210185,0.01507,0.3510267338240992,0.6489732661759008,23.316161403079963,4.107478481318216,0.2977913175932978,0.2911906575272912,0.2056359482102056,0.2053820766692053,11.629095665173356,6.397995235058735,16.0835518766089,11520.393262752768,45.215599376108045,14.0035608099676,13.37848042388206,9.045117137185796,8.788441005072588,0.5917745620715917,0.8116826503923278,0.7067348678601876,0.5975308641975309,0.107540173053152,0.770940170940171,0.9114470842332614,0.8919753086419753,0.7725118483412322,0.1627906976744186,0.5160707836764175,0.7441520467836257,0.6360424028268551,0.5358931552587646,0.0926216640502354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088027883602,0.00430990771727,0.0065169725515673,0.0088007235698824,0.0110491616474035,0.0130388721375601,0.0150116768818136,0.0173881968552174,0.0196178656498226,0.022038200913055,0.0242979731184449,0.0264430729418047,0.0285047113525079,0.030696466660484,0.032668944375058,0.0345836521163747,0.0366982930062976,0.0384922735244974,0.0406734889138483,0.0427002126151665,0.0571756841445581,0.071245380983785,0.0840015112715671,0.0971523583019384,0.1101920236336779,0.1260120868304351,0.1375668676233336,0.1474795241290432,0.1573120164151669,0.1665719280558564,0.1794543123969968,0.1909838727134971,0.2019488004872001,0.2106972928630024,0.2207215134183898,0.229164821539279,0.237589087542801,0.2455296431581905,0.2529392424293958,0.2598481986468386,0.2660538790611631,0.2716892041934994,0.2771731415322008,0.2815745654491656,0.2855026711996115,0.2892900653449994,0.2927381145850262,0.2952608380860442,0.2986152375539308,0.301810520771611,0.2990526103608144,0.2957164809834806,0.2931477606280634,0.2905410273035084,0.287508526350129,0.2851660448902208,0.2814914290228296,0.2824862457427299,0.2824298778930159,0.2823460327063722,0.2837272693327359,0.2843417140832037,0.2859944912778566,0.2862781829129591,0.2870201535508637,0.2888987265956615,0.2902775403202827,0.2929838329932506,0.2961224561280605,0.3027871120774856,0.3067512460353421,0.3084954157613016,0.3135807143758677,0.3145389258155703,0.3181690008459442,0.3238163216749941,0.3272532188841202,0.3312398703403565,0.3353424657534246,0.3346065699006875,0.0,2.1855049767095487,50.816307985606215,149.9629312683344,197.9097105985296,fqhc5_80Compliance_implementation,97 -100000,95693,47604,453.1261429780653,4996,50.72471340641426,3945,40.514980197088605,1499,15.204873919722449,77.3455376358958,79.73168147056423,63.32130932583449,65.08690683548608,77.14808928055855,79.53933692920661,63.24539491584436,65.01555561630136,0.1974483553372437,192.34454135761325,0.0759144099901334,71.3512191847201,243.76264,170.64224115285916,254732.8853730158,178321.576737122,483.39738,322.1449533058324,504446.5530394072,335938.8531347987,470.82127,230.19704685177317,487197.6947112119,236925.09785837636,2743.90184,1302.251846259118,2821771.864190693,1315434.1307853498,888.24519,410.4537766041824,912686.3929441024,413529.60630765074,1453.71784,630.2518326592808,1477086.4535545963,623428.2823273467,0.37905,100000,0,1108012,11578.767516955264,0,0.0,0,0.0,41677,434.7862435078846,0,0.0,42553,439.8545348144588,1106271,0,39626,0,0,9621,0,0,82,0.8569069837919179,0,0.0,0,0.0,0,0.0,0.04996,0.1318031921910038,0.3000400320256205,0.01499,0.3577486507324595,0.6422513492675405,23.19926080099316,4.070073236970299,0.3054499366286438,0.294296577946768,0.2027883396704689,0.1974651457541191,11.81414121529235,6.521178632940975,16.022771591268697,11544.9967270811,45.294907147224734,14.275176767640229,13.733865831501513,8.800441272180404,8.485423275902598,0.6032953105196451,0.8234280792420328,0.7186721991701245,0.5875,0.1129653401797175,0.7669111654441728,0.917004048582996,0.8835227272727273,0.7658536585365854,0.1136363636363636,0.5294334069168506,0.7541229385307346,0.6506447831184057,0.5260504201680672,0.1127694859038142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201856148491,0.0045438409655662,0.0069343621503629,0.0091973414093782,0.0115162366729063,0.0140252597270319,0.0163977891538006,0.0185860318821931,0.0206560863874345,0.0226211444722074,0.0251781959899492,0.0270744959480695,0.0293672917288128,0.03155172236133,0.0333639487724584,0.0353254970071023,0.0373428080134247,0.0394071798490965,0.0416068717372766,0.0433849423826293,0.0584641413666698,0.0726134781835117,0.0863341064850285,0.0991477272727272,0.1113584101601232,0.1265813412312249,0.1376818514627701,0.1485355202897007,0.1585597913236834,0.1679995706081262,0.1791054430202348,0.1903818034118602,0.2011322192586141,0.2106351777271931,0.2196021445005889,0.2294497019126349,0.2378863476542879,0.2456653577415979,0.2527456319491717,0.2588233947317207,0.2653778965513252,0.2709920987423442,0.2767031615786611,0.2805894041320533,0.284503147400211,0.2888342351205115,0.2932162749456752,0.2961877576910878,0.3000761221567084,0.3021599747740172,0.2993631427230676,0.2956807447463892,0.2930456375650612,0.2904177399162506,0.2880822120360786,0.284592992242391,0.2806499960558491,0.2804568319979026,0.2812169943102449,0.2816447239493328,0.2830792255167898,0.2836525172754195,0.2837798241942235,0.2850039023302486,0.2847585247709941,0.2862155909646227,0.2882346267302019,0.2924433879644689,0.2974670295164329,0.2988510285466103,0.3048741925283462,0.3105155073455847,0.3139491398653702,0.3169464729353308,0.321235305094234,0.3286762964717026,0.3382531953743152,0.350575873913922,0.3508391987005955,0.3502479969477299,0.0,2.735081318361547,52.7478107127337,141.67954677242113,199.4690057742473,fqhc5_80Compliance_implementation,98 -100000,95615,47785,455.49338492914296,4915,50.15949380327355,3937,40.63170004706375,1488,15.185901793651624,77.23812690061078,79.6698740942224,63.25655152000609,65.05458841751792,77.04351609730651,79.47710172150455,63.18332206412629,64.98423048894082,0.1946108033042719,192.7723727178403,0.0732294558797974,70.35792857709566,243.10286,170.35835743198086,254251.80149558125,178171.1629262991,486.41202,323.4687702336409,508192.365214663,337776.37424425135,470.29651,229.35354610977865,488564.50347748783,237284.97383454532,2760.85305,1292.828840071945,2853006.9026826336,1317657.6270166242,887.84139,407.2431414510954,916524.520211264,413890.3778390394,1443.38316,619.7699739858799,1475456.047691262,619426.627010103,0.38084,100000,0,1105013,11556.900067980963,0,0.0,0,0.0,41742,436.00899440464366,0,0.0,42531,441.49976468127386,1101472,0,39620,0,0,9689,0,0,86,0.8994404643622863,0,0.0,0,0.0,0,0.0,0.04915,0.1290568217624199,0.3027466937945066,0.01488,0.3455466770610017,0.6544533229389983,22.96372880271596,4.040008577925634,0.3157226314452629,0.2824485648971298,0.1953263906527813,0.206502413004826,11.361097210949286,6.202492770588989,16.135767483895993,11541.758712240764,45.54969486370402,13.740476442300448,14.192888357157337,8.79830786918243,8.81802219506381,0.5847091694183388,0.8030575539568345,0.7047465808527755,0.5851755526657998,0.1020910209102091,0.7720891824938068,0.9458333333333332,0.8853868194842407,0.7095238095238096,0.1337209302325581,0.5014673514306677,0.694620253164557,0.6342281879194631,0.5384615384615384,0.093603744149766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0044323633523678,0.006711477540411,0.0089039773131536,0.0110629376323074,0.0131116476664934,0.0152990973532561,0.0176316757242675,0.019638729210564,0.0217959091700552,0.0238241812361487,0.0260883860957841,0.0282517856775282,0.0304939022504458,0.0325085711925317,0.0344552857305451,0.0367291085701253,0.0389030280995169,0.0411080113257828,0.0433140687266581,0.0582602423241372,0.0723986167871738,0.0855684074505972,0.0985550593984329,0.1102686491509673,0.1258592384684637,0.1381526531045838,0.1489570342894296,0.1585552429147632,0.1691066691012986,0.1806147439286215,0.1918094804505002,0.2022205031542476,0.2111202410298548,0.2197675059225387,0.227970135013701,0.2364097918833383,0.2442420211266811,0.2524758666954712,0.2595752009184845,0.2660626029654036,0.2717040858198019,0.2772973678279539,0.2813893395829577,0.2855054455083692,0.2897419107745148,0.2937198916097953,0.2971908034837607,0.3009294114592798,0.3025162305464834,0.3000323790507541,0.2969178790595049,0.2946967559943582,0.2912306601247594,0.2885888074240418,0.2855192932948899,0.2819187723914904,0.2821651128759105,0.2819068812050667,0.2821997105643994,0.2824796329244311,0.2837888579277089,0.2837280398685009,0.2845552078676799,0.2859133275679831,0.2881731069680242,0.2894796831367185,0.2942376498650429,0.2996675415573053,0.304604718950644,0.3066255778120185,0.3100738396624473,0.3126834447011803,0.3160437901094752,0.3209107806691449,0.322606972134779,0.3297920095765375,0.3322803553800592,0.3307214266414482,0.3399550224887556,0.0,2.1127073127023714,53.09503809751452,146.37306224194845,197.92569812416892,fqhc5_80Compliance_implementation,99 -100000,95736,47617,453.1524191526698,5012,51.35998997242417,3991,41.28018718141556,1462,14.97869140135372,77.33641368994157,79.71046739260179,63.332022412709286,65.08892684870891,77.1508035203427,79.52582917093964,63.261941392412055,65.02087550948737,0.1856101695988599,184.63822166214072,0.0700810202972306,68.05133922154027,243.5136,170.6109267935954,254359.48859363247,178209.79233892725,483.52472,322.19603753751363,504650.0167126264,336135.8919711641,467.55207,228.2778391855209,485542.0218099774,236289.6680659106,2270.59464,1068.5967744958532,2349961.853430267,1094428.025503315,899.4569,410.1391012419794,926684.0895796774,415572.4923142592,1411.13674,600.9649514432537,1447359.760173811,605732.3631027845,0.37942,100000,0,1106880,11561.794936074204,0,0.0,0,0.0,41706,435.19679117573327,0,0.0,42308,439.09292220272414,1108041,0,39727,0,0,9600,0,0,79,0.8251859279685803,0,0.0,1,0.0104453914932731,0,0.0,0.05012,0.1320963575984397,0.2916999201915403,0.01462,0.3617061973986228,0.6382938026013772,23.095978775449097,3.932118913009016,0.3274868454021548,0.2836381859183162,0.2004510147832623,0.1884239538962666,11.384247279522013,6.355918406195426,15.584958911186316,11538.40347418628,45.80418487407177,13.906934501896815,14.84416521293164,8.787924085735675,8.265161073507635,0.6036081182660987,0.8127208480565371,0.7130833970925784,0.5825,0.1210106382978723,0.7843959731543624,0.9279475982532752,0.8834688346883469,0.7897435897435897,0.1764705882352941,0.526616648803144,0.7344213649851632,0.6460554371002132,0.515702479338843,0.1048109965635738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786713144988,0.0044929461759247,0.0069648205492664,0.0092588828360029,0.0115154166200421,0.0134947955920395,0.0156028513445986,0.0181131304880539,0.0202018136648502,0.0225109022787298,0.0247962687714622,0.0269806884798209,0.0292251529641626,0.0312390565454732,0.0332356522277483,0.0352764857881136,0.0372019341278305,0.0392335861074514,0.0412600421954083,0.0432998281339513,0.058201942153075,0.0720630237594551,0.0854638115811329,0.0984506065129186,0.1103675052432996,0.1258335535006605,0.1365231124725734,0.1468874284863565,0.1567970284348049,0.1656811072545742,0.1768738229755179,0.188840830449827,0.1995175328979538,0.2088412635994232,0.2173034028853655,0.2271646708904147,0.2356185446401711,0.2439709617243161,0.2520915047498129,0.2575934312245551,0.2639277214224645,0.2698436788587039,0.2754491017964072,0.2800181837757653,0.2840395223373946,0.2879313313165597,0.2921276755163715,0.2960649118128833,0.300233901502914,0.3034280969514847,0.3010596525200366,0.2986711054861607,0.2964292249011245,0.2941201952233806,0.2919464084130473,0.2880315852296203,0.2839002482723722,0.2842671212667606,0.2849566878111997,0.2862639613801949,0.2877121571409899,0.2894799007834954,0.2900281337918099,0.2904465674294601,0.2912572617083841,0.2916655878621547,0.2936307000824965,0.2981348907309721,0.3023654559451326,0.3059760640405801,0.3084261457002008,0.3131507288162742,0.3156586578293289,0.319398634655212,0.3213612368024133,0.3271856287425149,0.3270798093187759,0.3360258481421648,0.3378635498776841,0.3370744481855593,0.0,1.528401973054427,52.572648540592574,147.47362384784086,205.1422400134767,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95605,47756,454.3590816379896,4993,50.88645991318445,3998,41.19031431410491,1489,15.124731970085248,77.26635035352784,79.70323783142267,63.26822878755484,65.0716641171685,77.07576884100291,79.51870463462407,63.19634016395949,65.00495725668752,0.190581512524929,184.53319679859703,0.071888623595349,66.70686048097707,242.67716,169.96103389940373,253833.12588253757,177774.2104486206,488.62859,325.6029666467582,510474.4730924114,339954.4967802501,475.2861,232.17505260053463,493292.42194445897,239918.03803728297,2260.34576,1081.413793774024,2328495.9573244075,1095399.3972846868,934.97442,436.0047987587965,959664.0029287172,437785.5784719703,1436.68578,618.875947521076,1460112.4418178964,610253.8540349802,0.38054,100000,0,1103078,11537.86935829716,0,0.0,0,0.0,42065,439.32848700381777,0,0.0,43018,446.0959154855917,1103868,0,39667,0,0,9639,0,0,79,0.8263166152397887,0,0.0,0,0.0,0,0.0,0.04993,0.131208282966311,0.2982175045063088,0.01489,0.355662188099808,0.6443378119001919,23.099882013115916,4.086695977264028,0.3086543271635817,0.2866433216608304,0.208104052026013,0.1965982991495748,11.823027419070256,6.7224806776358585,16.102184032903374,11539.139121325205,46.25518023363931,14.105707304990796,14.078845295289495,9.340967856413457,8.729659776945558,0.5995497748874438,0.8141361256544503,0.7042139384116693,0.5985576923076923,0.1234096692111959,0.764234161988773,0.9133192389006344,0.8760330578512396,0.7737556561085973,0.1684210526315789,0.524900036350418,0.7444279346210996,0.6326061997703789,0.5351882160392799,0.1090604026845637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.0045346183109307,0.0069464896869001,0.0093439889376931,0.0115022088312534,0.0141769520062782,0.016278167864141,0.0187302657797124,0.0212818204141769,0.023568230025925,0.0256991840714322,0.0278871357352109,0.0299664408803607,0.0318699220522126,0.0338380812692379,0.035926780558976,0.0380190302452372,0.0402571639264237,0.0421831579604708,0.0441684135873929,0.0585867667506507,0.0726337189805499,0.085421065347325,0.0984663352153029,0.1108928250789526,0.1264670988517435,0.1381655861409289,0.1486372606539015,0.1582214801018988,0.1679326979897499,0.1792695029340697,0.1904844496959316,0.2009518830730358,0.2099255039439088,0.2188326573796508,0.2283565867400128,0.2371139777740548,0.2453703182519222,0.2519905950771817,0.2584621382378572,0.264917683562183,0.2704616753289319,0.2747345117027951,0.278935448695673,0.2832446485409529,0.2872855962612674,0.2910609418629403,0.2949044261752653,0.297823581962013,0.3011525477371031,0.2987126541922813,0.2961863533292104,0.2939662085168043,0.2907168003693657,0.2884858020751384,0.2844127852764487,0.280873660587287,0.2812889471958019,0.2812409394027254,0.2817293286723265,0.2818323126767421,0.2829465784536388,0.2841272829975522,0.2844718003612765,0.286074248278179,0.2871006348215215,0.2892672389289978,0.2944130571249215,0.3011972274732199,0.3064407584814536,0.3111816738489453,0.3177204482977374,0.3226740526249528,0.325867269984917,0.3286019111234808,0.3289304500292226,0.3309167799426069,0.3359281437125748,0.3374016815839435,0.337696335078534,0.0,2.40310343977236,54.29366144880949,150.48070692008136,195.48359209956632,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95708,47413,452.0416266142851,4825,49.316671542608766,3838,39.54737326033352,1446,14.805449910143352,77.34534288058313,79.71372755244262,63.32656324425341,65.07446682543403,77.16878231665841,79.5389332232376,63.26077474371305,65.01108078487701,0.176560563924724,174.7943292050138,0.0657885005403571,63.38604055702035,242.88352,170.13723834637258,253775.56735069168,177766.997896072,481.908,320.90386557764054,502968.9785597861,334744.65622271964,464.44895,226.6925401706916,481413.3092322481,233878.78631175545,2165.84896,1014.8322983406348,2233670.455970243,1031036.755904036,873.55297,392.6538655144785,901851.9141555564,399388.5189478592,1404.57984,586.1315815369065,1439854.1605717388,590076.8146850817,0.37771,100000,0,1104016,11535.253061395077,0,0.0,0,0.0,41389,431.87612320809126,0,0.0,41977,434.67630710076486,1110266,0,39813,0,0,9641,0,0,89,0.9299118151042756,0,0.0,0,0.0,0,0.0,0.04825,0.1277435069233009,0.2996891191709844,0.01446,0.355962572168027,0.6440374278319729,23.643071689015564,4.009137787222107,0.3025013027618551,0.295205836373111,0.2016675351745701,0.2006253256904638,11.398960049134605,6.145468103565385,15.307314121337871,11476.593549249565,43.86329833670097,13.787198981302817,13.325692126945496,8.48367399016176,8.2667332382909,0.5885878061490359,0.8022947925860547,0.7054263565891473,0.5697674418604651,0.1168831168831168,0.7754199823165341,0.935897435897436,0.8459302325581395,0.7167630057803468,0.1643835616438356,0.5105282600664943,0.7082706766917293,0.6462668298653611,0.5274542429284526,0.1057692307692307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0046824640707031,0.0071019844973824,0.0092626447288238,0.01111472675873,0.0132764536393162,0.0150148313507232,0.0172922429897001,0.0194631284116696,0.0216191870284877,0.0234966067291329,0.0254467036352433,0.0276172059821851,0.0297108242590322,0.0319088554297685,0.0338846392391978,0.0360501242750621,0.0382316313823163,0.0404454194782644,0.042621037494008,0.0566770753918937,0.0707064364207221,0.0840267357795662,0.0975748329738544,0.110115750266426,0.1255053016995068,0.1364881217756831,0.1474641617142735,0.1576725796110279,0.1667524612315809,0.1785687353894879,0.1908112672396995,0.2015470983745675,0.2096564104248076,0.2184761065844527,0.2279865675115539,0.2367466720226737,0.2458581245993094,0.2535262411347517,0.2604000870252259,0.2660622600490309,0.2708138556469708,0.2752474779132615,0.2796522905241984,0.2838484134883834,0.2875966701147727,0.2914983807034874,0.2947951189161047,0.2987139012524583,0.3014656412015356,0.2989189698577025,0.2955586426970001,0.2918716260976194,0.2884054202421195,0.2859560821344261,0.2822383311922677,0.2790220496551289,0.2796998136097577,0.2812950983887672,0.2814202317369625,0.2817506838608831,0.2830229409109641,0.2842282647138369,0.2841032941124135,0.285338057843325,0.2855662357178019,0.287121169366217,0.2919723914935953,0.297953520638224,0.3009982384028185,0.3057459859281977,0.3097689075630252,0.3146500777604977,0.3188875489900512,0.3223916682164776,0.3262677128469375,0.3254411099381692,0.3283403235470341,0.3306188925081433,0.3350077279752704,0.0,2.067479508895039,49.20375397611853,141.32503168972468,198.5109524740312,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95662,47478,451.9558445359704,4793,48.932700549852605,3829,39.44094833894336,1458,14.864836612238925,77.2498286400838,79.64867206903256,63.26585613190741,65.03886569191653,77.06591043147957,79.46671809725332,63.19647902545588,64.9721662391071,0.1839182086042399,181.95397177923667,0.0693771064515331,66.69945280943068,243.36004,170.36441765997623,254395.7266208108,178089.9601304345,482.31616,321.9243044734284,503556.04106123646,335895.4275358503,464.45957,227.56316747188552,481442.5477200978,234816.13992999803,2163.96092,1029.6158046042292,2231208.421316719,1045717.9193821864,898.03059,413.61781074156187,925239.8444523426,419025.1032621739,1409.17574,598.1565959644338,1439347.3479542555,598775.3911945224,0.37896,100000,0,1106182,11563.442119127762,0,0.0,0,0.0,41585,434.0490476887374,0,0.0,41969,434.67625598461245,1100022,0,39563,0,0,9495,0,0,73,0.7631034266479898,0,0.0,1,0.0104534715979176,0,0.0,0.04793,0.1264777285201604,0.3041936156895473,0.01458,0.3670809943865277,0.6329190056134724,23.183345569236508,3.9691032587280928,0.2985113606685818,0.3016453382084095,0.1974405850091407,0.2024027161138678,11.621850448765512,6.554407303980409,15.695845125228807,11457.999366796224,44.268517341156766,14.258437595946264,13.06813324347237,8.490339480072691,8.451607021665433,0.5933664142073648,0.7896103896103897,0.7069116360454943,0.5965608465608465,0.1303225806451612,0.7623762376237624,0.893491124260355,0.8601823708206687,0.7571428571428571,0.1746987951807229,0.5150936186473061,0.7083333333333334,0.644963144963145,0.5347985347985348,0.1182266009852216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299161230195,0.004908373644873,0.0070137331127373,0.009103840682788,0.0111889819043647,0.0132911005642352,0.0154688583431904,0.0177362536376167,0.0199120474534669,0.0222037873434315,0.0244017519206507,0.0266563944530046,0.0288007408550702,0.0310651192513038,0.0331412996345165,0.0353918232684173,0.0374070006009989,0.039492945463606,0.0414898044111527,0.0434057283466619,0.0579975133474731,0.0720546195168434,0.0856150366786655,0.0980418977073052,0.1102927210180866,0.1254537181074531,0.1359099596517307,0.1470826407535268,0.1567390071983999,0.1662209046284063,0.1779079552074567,0.1893568113804918,0.2007196205637027,0.2101338012722088,0.2196618549419502,0.2294728656335055,0.2373315725860602,0.245190030449983,0.2520139268159476,0.2580426568045298,0.2643859628756834,0.2699741662752466,0.2758567422406008,0.2803935009801445,0.2839321174908324,0.2877838345632316,0.2907605626733257,0.294605703198795,0.2976422320895329,0.299809493570408,0.2960073428178063,0.2918022390117465,0.2894959762812367,0.2869329702798215,0.284734006132595,0.281917745270736,0.2779790819474991,0.2774986866298923,0.2775044417110838,0.2774413661290034,0.2779037304903411,0.2788727387629354,0.2802624979100485,0.2808710217755444,0.2821941495749075,0.2838811696391539,0.2853025122220024,0.2899272071175263,0.2951121294174825,0.2991352201257861,0.3023224473294101,0.3059892433815466,0.3089420811112489,0.3147467166979362,0.3157748821735514,0.315281812899477,0.3213104899308686,0.3235765838011227,0.3287337662337662,0.3277529761904761,0.0,2.195678890743252,53.00142872012004,142.11588339261527,185.62677251443952,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95746,48112,458.65101414158295,4995,50.91596515781338,3958,40.76410502788629,1554,15.885781129237776,77.32698317968122,79.68713580936988,63.31555014592704,65.06144098717361,77.12994959577713,79.49204961551108,63.24106527093596,64.9898530379844,0.1970335839040871,195.0861938587991,0.0744848749910858,71.58794918920819,242.6897,170.0777759635783,253472.18682764817,177634.1311130682,487.58504,324.8906892101527,508700.34257305786,338778.4297434778,473.56618,231.5765094378271,490201.4810018173,238574.40619834745,2252.68968,1076.2473389829888,2322862.8245566394,1094230.9063774385,899.26434,413.0582745735082,927230.4534915296,419446.7045669102,1497.82376,643.6728871782661,1533333.6327366156,646822.7604364495,0.38173,100000,0,1103135,11521.463037620371,0,0.0,0,0.0,41895,436.96864620976334,0,0.0,42882,443.6529985586865,1104422,0,39650,0,0,9638,0,0,79,0.8146554425250141,0,0.0,0,0.0,0,0.0,0.04995,0.1308516490713331,0.3111111111111111,0.01554,0.3620092378752886,0.6379907621247113,22.87206840585469,4.035473903493781,0.304699343102577,0.2776654876200101,0.2215765538150581,0.1960586154623547,11.315920744055337,6.234197653773159,16.785380621065183,11567.264542599283,45.84376505775772,13.620136081267164,13.710536907986144,9.874456934676228,8.638635133828181,0.5876705406771097,0.8334849863512284,0.6766169154228856,0.5746864310148233,0.1159793814432989,0.742014742014742,0.924949290060852,0.8208955223880597,0.7050691244239631,0.125,0.5188162221410303,0.759075907590759,0.6211251435132032,0.5318181818181819,0.1133333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019147966161795,0.0041775668714891,0.0064551488947079,0.0088182704811443,0.0107907449783879,0.0130034112316073,0.0151425541461027,0.017352959189923,0.0198683618821797,0.0223436812315124,0.0244437384058787,0.0266691303276669,0.0287817112783191,0.0308497055068165,0.0329681665325658,0.0351935853852592,0.0372184031803876,0.0390938605316931,0.0409387114543168,0.0430977904178516,0.057908528119095,0.0725733894084907,0.0861711050534703,0.0989004057776002,0.1118466127689177,0.1272706126160417,0.1381815482187741,0.1488464691415856,0.158370653812033,0.1668348180744875,0.178860123730896,0.1914792232967651,0.2014450332422933,0.2108902333621434,0.2202150963750646,0.2292687252011615,0.2378473773568045,0.2453969076228336,0.2538305146348943,0.2610175317978687,0.2676646637259329,0.2732020327392801,0.2776165029562662,0.2818528649582493,0.2861537339201906,0.2906001874044484,0.2955054913403379,0.2981607586075224,0.3021487688940122,0.3051140335835169,0.3030996071678415,0.2983582664173358,0.2953790735633478,0.2923416789396171,0.2902545832405552,0.2863746995882253,0.282770291642943,0.2831855506203596,0.2831266736027016,0.282493109273584,0.2829413960432997,0.2836938108182641,0.2835617871717066,0.2840845792206056,0.2848554525640104,0.2853248169496806,0.2863092876976256,0.291252422935034,0.2952945277100035,0.2979921259842519,0.3016223524109959,0.3062627959472938,0.3095489891135303,0.3140285071267817,0.3182660244535013,0.3227840710031531,0.3231835996382273,0.322670931627349,0.3246360889865421,0.3260536398467433,0.0,2.1897965523297818,53.2349461593822,150.3162963961755,195.5786496772905,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95760,47849,455.0751879699248,4994,50.97117794486216,3958,40.74770258980785,1476,15.016708437761068,77.39144353273707,79.73137670838207,63.36142006586866,65.08764996425724,77.20282885325851,79.54665908108873,63.29012880823209,65.02082288550467,0.1886146794785617,184.71762729333815,0.0712912576365667,66.8270787525671,245.29362,171.6969038187899,256153.65497076025,179298.38773076958,488.86133,325.8625029256319,509923.4753550543,339709.9481517151,466.51879,227.99556987883597,483760.1817042607,235451.1151192989,2250.5772,1061.9260895538391,2318406.8922305764,1077264.9874163494,925.77304,419.92877202399103,949821.021303258,421800.27249218535,1438.28102,611.3846186668834,1465290.2673350042,605470.0901509427,0.38127,100000,0,1114971,11643.347953216373,0,0.0,0,0.0,42076,438.77401837928153,0,0.0,42183,437.1658312447786,1098565,0,39389,0,0,9583,0,0,90,0.929406850459482,0,0.0,3,0.031328320802005,0,0.0,0.04994,0.1309832926797282,0.2955546655987184,0.01476,0.3636885402716663,0.6363114597283337,23.403795865473825,4.019290134715489,0.3004042445679636,0.2905507832238504,0.2061647296614451,0.2028802425467407,11.394584232547604,6.1391787158848095,15.764277707800863,11565.866570982946,45.34788232858554,14.139364729272067,13.502903222078873,8.97297406887006,8.732640308364545,0.5894391106619504,0.8234782608695652,0.703111858704794,0.5465686274509803,0.1295143212951432,0.7770326906957251,0.9381443298969072,0.8702064896755162,0.7219512195121951,0.1768292682926829,0.5084990958408679,0.7398496240601504,0.6364705882352941,0.4877250409165303,0.1173708920187793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286894540741,0.0047528806104766,0.0070818368133763,0.0093742700155391,0.0114386228914805,0.0138628776158293,0.0162828612186672,0.0186299916338482,0.0210646752954877,0.0229495784562494,0.025,0.0272183521252475,0.0294286888614878,0.0315246701385315,0.0338535760674597,0.0357832756572491,0.0378071246713998,0.0398153909977183,0.0418282174152573,0.0437409502380282,0.0588800167005897,0.0725107772150839,0.0858851298190401,0.0988757900493222,0.1108615653897658,0.1259147244194408,0.1364364268821651,0.147410528107579,0.1578531459570287,0.1669185666355811,0.178794402583423,0.1900616416134962,0.201371530419284,0.2104929708237299,0.2195904729454953,0.2288891347643284,0.2381918284555201,0.2457491970081534,0.2534789900729794,0.2599519560741249,0.2659579385255373,0.2717054761710032,0.2770376499793132,0.2814913257426098,0.285497775137311,0.2895109023157429,0.2924212524667149,0.2955336942982791,0.2988789614554106,0.3028004897894695,0.3001637891684343,0.29753528370983,0.2950391644908616,0.2917392117645366,0.2890719758601308,0.2860014007734706,0.2815240494371408,0.2822039844017687,0.2826865925108262,0.2822871348663766,0.2828987887497434,0.283806935664914,0.2865104047087308,0.2876822254915073,0.2891138511730557,0.2907475251383584,0.2918130311614731,0.2970290830541903,0.3025671516508114,0.3036560328490209,0.3078527384838592,0.3102626562169032,0.3169354332684947,0.3218095166048869,0.3253437383872166,0.3287080223880597,0.3321412606168976,0.3312871287128713,0.3327077747989276,0.3367003367003367,0.0,2.232628534880999,51.87557950329285,146.71608528076362,199.4249637125409,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95725,48020,457.4458083050405,4976,50.66597022721337,3908,40.20893183598851,1479,14.990859232175504,77.37264048070351,79.73284500321218,63.34029949113111,65.08212961165398,77.1825235492362,79.54762631092817,63.26774138791696,65.01439256113908,0.1901169314673154,185.21869228401044,0.0725581032141491,67.73705051490708,242.6545,170.0523772726772,253491.250979368,177646.77698895504,488.85161,326.3398734774139,510090.9166884304,340325.05761610734,471.13874,230.30192306075384,488766.4977800993,237901.77562843595,2244.02628,1072.699233403879,2308418.6158265867,1084980.8273711505,890.61534,413.8674091192556,912597.6704100288,414558.56789684633,1432.66942,619.4701018484668,1452905.698615827,609308.9010416613,0.38181,100000,0,1102975,11522.329589971272,0,0.0,0,0.0,42077,438.9344476364586,0,0.0,42669,442.35048315487074,1105035,0,39643,0,0,9581,0,0,80,0.8252807521546096,0,0.0,1,0.0104465917994254,0,0.0,0.04976,0.1303266022367146,0.2972266881028939,0.01479,0.3642857142857142,0.6357142857142857,23.29548720461764,4.018106058173155,0.3183213920163766,0.2842886386898669,0.1949846468781985,0.2024053224155578,11.552981300906088,6.326023863301446,15.937510001853688,11588.943353987108,45.03449963415814,13.718753219621956,14.17047126478253,8.487273950402972,8.658001199350691,0.5882804503582395,0.8136813681368137,0.7186495176848875,0.5446194225721784,0.1087231352718078,0.7762295081967213,0.936734693877551,0.9055555555555556,0.6968085106382979,0.1703296703296703,0.5029761904761905,0.71658615136876,0.6425339366515838,0.494773519163763,0.090311986863711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020354430379746,0.0044389042595238,0.0066648406829179,0.0091810204744881,0.0114591912474961,0.01401769262875,0.0162380355340815,0.0182399052790593,0.0203009363372449,0.0226125766462958,0.0248118604794225,0.0267348384513506,0.0291510714432608,0.0313388259526261,0.0334984009078716,0.0356046590944324,0.0377057666425095,0.0397668340040658,0.0417199338966667,0.0434746380585355,0.0583376840346663,0.0723665623790141,0.0858523900894383,0.0986756359049821,0.1105219325525253,0.1263585232799086,0.137326445974183,0.1477890703985526,0.1583134871898928,0.1678999635373099,0.1803006806237615,0.191351480006924,0.2022271521162295,0.2115773702111836,0.221007118259932,0.230033789397884,0.2381526373356548,0.2467943305526472,0.2545287283217299,0.2612269699505864,0.2663101975625846,0.2718369352819348,0.2769367448471926,0.2812976137631519,0.2856743519002419,0.2885990433453326,0.2922324143713474,0.2965468138127447,0.300042691367288,0.3034436405329538,0.3009947573598602,0.2974179370965527,0.294710646195377,0.2917195614541258,0.2901120094948446,0.2869938706571083,0.2836711498389846,0.2834616014409694,0.283545035623799,0.2844163679596834,0.2856452032883235,0.2867058823529412,0.2877422309181358,0.2900993612491128,0.2907556212594482,0.2915601683319133,0.292613476177051,0.2978710198001365,0.3023497248849361,0.3060580071729299,0.3094108166189112,0.3134640522875817,0.3175461495431661,0.3207080177004425,0.322970479704797,0.3282798833819242,0.3305697919807054,0.336383528943704,0.3378414931025155,0.3445030120481928,0.0,2.387797746995356,52.89496012878848,142.11072519158293,196.14309077095388,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95731,47758,455.1085855156637,4926,50.2867409720989,3888,39.913925478685066,1434,14.561636251579948,77.33281654085012,79.69830367617745,63.319784280511655,65.07088558409956,77.15052811812193,79.52161706217248,63.25135112920859,65.00731679637296,0.1822884227281918,176.68661400496433,0.0684331513030684,63.56878772659513,243.68234,170.73180465953868,254549.03845149427,178345.3684381639,484.61417,322.4080831708028,505515.6532366736,336076.1959770637,463.8992,226.74903370437391,479763.33685013215,233212.39820450544,2208.89976,1045.637976910201,2271558.721835142,1056422.7856286906,901.48547,412.2548013510733,924386.4161034564,413339.139203678,1399.28364,591.2391811280904,1423958.3833867817,585795.478647225,0.38113,100000,0,1107647,11570.410838704289,0,0.0,0,0.0,41804,435.9611828979119,0,0.0,42032,434.27938703241375,1104970,0,39658,0,0,9428,0,0,71,0.7416615307476158,0,0.0,0,0.0,0,0.0,0.04926,0.129247238475061,0.2911084043848965,0.01434,0.3617601246105919,0.6382398753894081,23.432684686447462,3.988742587813749,0.3040123456790123,0.2908950617283951,0.206275720164609,0.1988168724279835,11.503492247047207,6.318382862423354,15.296993283634812,11558.561645156484,44.55359180771194,13.827108150812949,13.410332778737796,8.837801904096112,8.478348974065076,0.5910493827160493,0.8134394341290893,0.688663282571912,0.5810473815461347,0.1267787839586028,0.7615131578947368,0.9077568134171908,0.8648648648648649,0.7236180904522613,0.1705882352941176,0.5134730538922155,0.7446483180428135,0.6083743842364532,0.5339966832504146,0.1144278606965174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0044323633523678,0.0068027210884353,0.0093818928451631,0.0116591380783787,0.0139952737940026,0.0163065093464138,0.0184686064318529,0.0204290300811844,0.0226090518124104,0.0247085721316013,0.0266459933462028,0.0286768939705519,0.0308966199097818,0.0328205445672248,0.0348238650458943,0.0368797704982549,0.0387301653192748,0.0406775431263062,0.0427123376149847,0.0573355465773017,0.071573550952082,0.0845086668833824,0.0966999232540291,0.1097900328864153,0.1252894589364829,0.1366364774004708,0.1477452931597824,0.1582522509051682,0.1667006251943679,0.1784503084525693,0.1897400391618075,0.2011677974947807,0.2102691357484859,0.2191184233679394,0.2285881936141003,0.2376797688248223,0.2453895921237693,0.2529901727150995,0.2605694267953429,0.2667036959892614,0.2720581351806778,0.2773758924025905,0.2816656680647094,0.2867935528537246,0.2912049306625577,0.294766219463356,0.2971859462621279,0.300849103005514,0.3026636938137393,0.3,0.2971531472088196,0.2951855552584544,0.2935055563573387,0.2916641919581873,0.287838953257314,0.2845818595250126,0.2841970904449426,0.2839373830185469,0.2834577114427861,0.2834980421405929,0.2848790282890722,0.2852528031345088,0.2862763403574286,0.2880784407509267,0.2897281045074,0.2913548752834467,0.295608688857634,0.2992504793446052,0.3040104002521273,0.3075880758807588,0.3111895479928353,0.3159207081411295,0.3179321243133418,0.3218230762090411,0.3259901570189829,0.3314674735249622,0.3300679728108756,0.33115823817292,0.3366037735849057,0.0,2.6972758312431715,52.4092261619498,136.33733696436664,198.09126884129304,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95776,47726,455.4063648513198,4887,49.66797527564317,3875,39.82208486468426,1433,14.533912462412296,77.34910350822409,79.67813996546533,63.34642956891118,65.06694257178832,77.16507202276593,79.4997074921853,63.275724227932265,65.00087787203488,0.1840314854581635,178.43247328003997,0.0707053409789111,66.06469975343998,245.003,171.61110015733107,255807.885065152,179179.23551291856,487.01008,324.11159225791243,507842.8938356165,337761.2015405584,460.46151,224.45288058565515,477137.8633478116,231487.5744543803,2203.56896,1040.0368619329413,2266247.1600400936,1051495.7272019524,908.63677,415.565122781016,928560.0985633144,413986.8510771927,1395.98666,601.375815309267,1417989.0160374206,594191.457242723,0.3795,100000,0,1113650,11627.631139325093,0,0.0,0,0.0,41990,437.7505846976278,0,0.0,41693,431.6530237220181,1099680,0,39452,0,0,9635,0,0,65,0.6786668894086202,0,0.0,2,0.0208820581356498,0,0.0,0.04887,0.1287747035573122,0.2932269285860446,0.01433,0.3468503937007874,0.6531496062992126,23.43342497633843,4.089451363508179,0.2998709677419355,0.2828387096774193,0.2116129032258064,0.2056774193548387,11.354562661760031,6.15347977325384,15.237866792096384,11474.267714764714,44.42485657064592,13.585864797725025,13.063196993046208,9.004000507491586,8.771794272383096,0.5780645161290323,0.7974452554744526,0.7005163511187608,0.552439024390244,0.124215809284818,0.7574692442882249,0.911062906724512,0.8616352201257862,0.7393617021276596,0.1695906432748538,0.5034709535988309,0.7149606299212599,0.6398104265402843,0.4968354430379746,0.1118210862619808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0045307574575051,0.0066551013989915,0.0089079846827355,0.0111034286411518,0.0134064904922838,0.0153284820318392,0.0173087717507781,0.0194443592966107,0.0214851343332446,0.023644633856493,0.0259614989943767,0.0278500005138376,0.0298376887370187,0.0317964368195315,0.0340225991034724,0.0361230106992818,0.038262131895479,0.0400876983343551,0.0421005498167277,0.0563950576056102,0.0707330593120182,0.0839265681844392,0.0966718160513677,0.1090234675490268,0.1250343442882806,0.1366517563757393,0.1473206214839471,0.156942680597206,0.1655523411550412,0.1775646614356291,0.1896331703940822,0.2010981841904969,0.2097463883025842,0.2182710398626866,0.2276135520384543,0.2357116550038504,0.2430852259950528,0.2503460168357044,0.2573315629220942,0.2632102420576636,0.2688506567174653,0.2751224475309372,0.2793925675756596,0.2843497785059773,0.2883314647578449,0.2923638728395988,0.2949748232541579,0.2985372168284789,0.3021887409791944,0.2996514272640405,0.2969237750794153,0.2946876889970323,0.2912334338000952,0.2886202349734062,0.2845978906238076,0.2813165323534514,0.2816664214123379,0.2816659583510412,0.2833478484972362,0.2847796913442183,0.2860433070866142,0.2880903747550961,0.289272030651341,0.2904293595586472,0.2908452535760728,0.2916619269707655,0.2966000502765208,0.3005569762146635,0.3035296913995959,0.3041012612285636,0.3087598944591029,0.3138267716535433,0.316523849245469,0.3197859958700957,0.3168963878326996,0.3200798280626343,0.3194641769839659,0.3204845814977973,0.3188914910226386,0.0,2.4399857882545817,49.14241158014707,145.55086440595286,199.07462909734863,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95672,47533,453.0374613261978,5032,51.39434735345765,3982,41.0987540764278,1503,15.396354210218249,77.31532774038504,79.70670511675553,63.31028192710126,65.07575843958307,77.12920243015094,79.52256007159332,63.23939570553329,65.00795664017699,0.1861253102341038,184.1450451622109,0.0708862215679673,67.80179940608377,242.22594,169.73082473675925,253183.7319173844,177409.09015883357,484.63686,322.40103494396175,506040.0012542855,336464.9687933374,467.87961,228.45530666014167,485495.2859770884,236110.20259617892,2248.2768,1059.5932827867866,2321827.2012710096,1079625.0746892144,874.30211,399.13341679451605,901765.155949494,405163.2897869303,1457.74302,614.6270452978855,1494195.3340580317,617359.7312153813,0.37905,100000,0,1101027,11508.3514507902,0,0.0,0,0.0,41705,435.3624885023832,0,0.0,42312,438.738606906932,1110459,0,39848,0,0,9688,0,0,78,0.8048331800317753,0,0.0,2,0.0209047579229032,0,0.0,0.05032,0.1327529349690014,0.2986883942766296,0.01503,0.3749285578205372,0.6250714421794628,23.126687984975348,4.051120623091029,0.3071320944249121,0.2832747363134103,0.2134605725765946,0.1961325966850828,11.440723946392437,6.201734604202378,15.887510006196376,11499.80959068462,45.641989914293966,14.049249911328571,13.800936840955025,9.45461134549973,8.33719181651064,0.580110497237569,0.8076241134751773,0.6974652493867539,0.5635294117647058,0.085787451984635,0.7679738562091504,0.9232283464566928,0.8606060606060606,0.7399103139013453,0.1349693251533742,0.4967367657722987,0.7129032258064516,0.6371780515117581,0.5007974481658692,0.0728155339805825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.0046026886189906,0.0070632649333252,0.0091947249710442,0.0113627115885416,0.0139343009931245,0.016105178340116,0.0181504330773002,0.020279391311462,0.022078174761656,0.0246448900056407,0.0269134762555342,0.0288565403014248,0.0306652378204599,0.032741873883917,0.0347919618570881,0.036730803104245,0.0388383775480549,0.0408280022884485,0.0429100005211319,0.056932399958207,0.0710127324509968,0.084661082771795,0.0972660689480995,0.1093873674212442,0.124644063131821,0.1366773556456922,0.1474356926026521,0.1577850455303321,0.1674769524668105,0.1796814380550047,0.1906148832274061,0.2005747188993262,0.2101922677084359,0.2182785278505825,0.2277929336615876,0.2357835254176717,0.2441823828599721,0.2519185360094451,0.2579169961833373,0.2635802540616279,0.2701203239852053,0.2757085691284067,0.2804706898413041,0.2847652359785275,0.2879775294740862,0.2916572829867627,0.2945655628297209,0.2976181239816898,0.3012578782205111,0.2989657444891262,0.2954582943860999,0.2929260269350803,0.2904007966862471,0.2875721043344158,0.2841495829641624,0.2813091781340739,0.2812648014764728,0.2816803236884159,0.2816873889875666,0.2821744391696918,0.2833447970914808,0.2846954309427981,0.28587319243604,0.2870474504079826,0.2879796854351825,0.2895962292009768,0.2938294865756005,0.2996425317165487,0.3041271855052928,0.3089571220930232,0.3150909475465313,0.3204499748617396,0.3236416361416361,0.3269557021677662,0.3321475157120835,0.3355511870557991,0.3337299226650803,0.3271487039563437,0.335469280060309,0.0,1.9404873477063684,53.69322883346521,143.011169045402,202.1393012570486,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95629,47753,454.9038471593345,4896,50.00575139340577,3875,39.956498551694565,1427,14.566710934967425,77.3146043072854,79.73247960919552,63.296484254502126,65.08246741812455,77.12806990611945,79.54910959257495,63.22571519459247,65.01480037475963,0.1865344011659573,183.3700166205716,0.0707690599096579,67.66704336492069,242.45254,169.86644904785277,253534.5345031319,177630.6863481295,484.64289,323.26508475714235,506269.51029499416,337515.46576576395,468.65736,229.0321563299474,486365.1821100294,236596.10801812127,2214.92248,1051.5079607015864,2286454.90384716,1069952.0924105295,879.65274,397.9367529839553,904651.7479007414,400917.5385959855,1386.52722,598.5648443970965,1417322.5276851165,598864.0770037484,0.38093,100000,0,1102057,11524.29702286963,0,0.0,0,0.0,41720,435.70465026299553,0,0.0,42339,439.0300013594202,1106860,0,39662,0,0,9539,0,0,75,0.7738238400485208,0,0.0,0,0.0,0,0.0,0.04896,0.1285275509936208,0.2914624183006536,0.01427,0.3603056426332288,0.6396943573667712,23.26835332791827,4.021459541654715,0.3058064516129032,0.2890322580645161,0.1994838709677419,0.2056774193548387,11.341912785722124,6.171619577078096,15.265075705428048,11525.503646580732,44.45626965204561,13.725873582642883,13.423036446056152,8.588896097195182,8.718463526151393,0.5914838709677419,0.8053571428571429,0.7097046413502109,0.5834411384217335,0.1229611041405269,0.7611438183347351,0.916155419222904,0.9074626865671642,0.732620320855615,0.0898876404494382,0.5163812360387193,0.7194928684627575,0.6317647058823529,0.5358361774744027,0.1324717285945072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024216509782862,0.0044416951455719,0.006547691558046,0.0087689884672052,0.0110880533854166,0.0131696883275616,0.0154425189461551,0.0175809582184084,0.0196990927780221,0.0219250186890047,0.0238874244864049,0.0262252308703736,0.0283115921155508,0.0307045562264306,0.0329796238568095,0.0351961950059453,0.0370619806452949,0.0393679533232283,0.0414620442816713,0.0434900504776605,0.0587091716749412,0.0723503655751786,0.0852819807427785,0.0975317088574285,0.1096862037300908,0.12502779454274,0.1369116537959019,0.147136554487521,0.1577185156659499,0.167302259128361,0.1787001273115681,0.1903709002622965,0.2008237806738438,0.2110711859950483,0.2194336981560471,0.2291618115435407,0.2383107594653792,0.2456171977105773,0.2529908315250117,0.2597302814155638,0.2655962400009261,0.2708016561790919,0.2753263043298188,0.280122719973155,0.2847277008411112,0.2883421985815603,0.2923707629237076,0.295527014494963,0.298936156461266,0.3021953405017921,0.2985574272999825,0.2950869195067696,0.2934475338593308,0.2911536740614581,0.2897162962633056,0.2864638306334419,0.2830576552073121,0.2834101760546048,0.2828156783644724,0.2827040325168467,0.2838941948962841,0.2842258108824049,0.2853136684669713,0.2862943486653797,0.2868362805531094,0.2885897402898252,0.2894455389811426,0.2946758039008961,0.2991094632523649,0.3031408069638866,0.3057413475782197,0.3128210504245728,0.3156510302498904,0.320766098627658,0.3260748185371301,0.3266152934202727,0.3288177339901478,0.3246963562753036,0.3288937211198695,0.3377023901310717,0.0,2.2410229234481127,51.57801247409712,141.57470980623222,195.2106143550596,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95652,47654,454.0312800568728,4983,50.91372893405261,3960,40.88780161418475,1503,15.378664324844229,77.29129418892526,79.69256492681208,63.29829466637945,65.0706375351209,77.09209174503512,79.49499001477064,63.222548982990666,64.99758382005056,0.1992024438901438,197.57491204144628,0.0757456833887815,73.05371507032987,243.47972,170.57112318188578,254547.4428135324,178324.6802804811,485.18118,322.41678482656005,506743.4763517752,336580.3901921131,460.69104,224.5143242875751,478617.6243047715,232397.14689363143,2226.54596,1060.343615662856,2301243.5077154688,1082029.7491561675,893.55518,407.3232515444739,922708.5790155982,414374.2750224503,1460.41212,630.3658535296222,1496565.612846569,633955.6500602106,0.38028,100000,0,1106726,11570.338309706018,0,0.0,0,0.0,41906,437.5862501568184,0,0.0,41693,432.8816961485384,1105014,0,39644,0,0,9715,0,0,74,0.7631832057876469,0,0.0,1,0.0104545644628444,0,0.0,0.04983,0.1310350268223414,0.3016255267910897,0.01503,0.3487159683336551,0.6512840316663449,23.34271917952729,4.0112349407405645,0.2967171717171717,0.301010101010101,0.2005050505050505,0.2017676767676767,11.348570680069791,6.140560134729464,16.204025708965215,11561.112248849096,45.689694321625495,14.743423687110289,13.27703687041808,8.985464413691703,8.683769350405433,0.5911616161616161,0.8045302013422819,0.6987234042553192,0.5944584382871536,0.1113892365456821,0.7482014388489209,0.9066666666666666,0.8318042813455657,0.7136752136752137,0.1272727272727272,0.518641565153193,0.7241379310344828,0.6474056603773585,0.5446428571428571,0.1072555205047318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0046030619486971,0.0068308922789602,0.008992988517427,0.0112932271159539,0.0134338239038549,0.0156514468666517,0.0177160128249637,0.0200085882545395,0.0223516884074294,0.0244587790095476,0.0266320200484778,0.028568783177647,0.0305943695643213,0.0328082092787975,0.035000620578379,0.037391700866393,0.0392162970346374,0.0412248847638569,0.0431727431008059,0.0574981711777615,0.0714577506834679,0.0845574724109327,0.0974074502910434,0.108942763359262,0.1249285547958254,0.1364041699399138,0.1479319564129057,0.1583848275567149,0.1678869731389431,0.1793442516900451,0.1910212125477796,0.2014781595933428,0.2106790164006218,0.2195783232120617,0.2292949123215652,0.2377382521842111,0.2456910624021975,0.2537265987761543,0.2601815139917035,0.2659621261227891,0.2719466541881142,0.2773462476614488,0.2823516715429996,0.2859262141589046,0.2899974089748177,0.2940446960966077,0.2978528310537174,0.3016459305339554,0.3047556229800145,0.3017308675872836,0.297956375146219,0.2947807462518318,0.292925059969365,0.2901514363417498,0.286813624796885,0.2828169281676984,0.2832878872499096,0.2831436481082743,0.2847604084838963,0.2850026219192449,0.2861489824145425,0.2867102122848888,0.2876275083145465,0.2887207604089353,0.289791893715294,0.2904740355243805,0.2950553228730387,0.2981223119689499,0.3011790773126533,0.3050394271730264,0.309410896827906,0.3123000689957975,0.3159777727030524,0.3201543820013179,0.3253069495768268,0.3287629024803574,0.3295641447368421,0.3303867403314917,0.3314415437003405,0.0,2.023143549315435,54.713048195074855,142.84833994875748,198.1035406953509,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95636,47437,452.4969676690786,4910,50.08574177088126,3901,40.23589443305868,1522,15.621732402024342,77.27514686010801,79.68729779033276,63.27600815666828,65.05707754676975,77.0849772120132,79.49776764365123,63.20342928346489,64.98669732290871,0.1901696480948089,189.530146681534,0.0725788732033905,70.38022386103648,242.09944,169.52844801248034,253146.3047388013,177263.85913942085,483.03324,322.44203301833187,504514.6911204986,336596.83734578773,463.6875,226.4307647917325,480826.1533313815,233736.2778554797,2246.4914,1062.8067696289029,2318360.575515496,1080740.7418820364,940.71468,433.3687232891722,969201.1585595384,438731.10097128735,1488.99416,639.9564081679734,1529387.7410180266,646185.0549068192,0.37819,100000,0,1100452,11506.65021540006,0,0.0,0,0.0,41575,434.1356811242629,0,0.0,41827,433.3932828641934,1108295,0,39752,0,0,9698,0,0,98,1.0247187251662555,0,0.0,0,0.0,0,0.0,0.0491,0.1298289219704381,0.309979633401222,0.01522,0.3562792511700468,0.6437207488299532,23.353673049703485,4.056347462693058,0.2819789797487824,0.2799282235324276,0.2186618815688285,0.2194309151499615,11.44158742247681,6.185234597787255,16.30629872710036,11478.33601224779,44.77936929125991,13.561154030700347,12.443869051504468,9.448903438316432,9.325442770738654,0.576006152268649,0.8168498168498168,0.6636363636363637,0.611957796014068,0.1203271028037383,0.7368421052631579,0.913793103448276,0.8590163934426229,0.6952380952380952,0.1809045226130653,0.506426735218509,0.7452229299363057,0.5886792452830188,0.5847589424572317,0.1019786910197869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910887880751,0.0046826064482126,0.0072345390898483,0.009344845099035,0.0116864492112409,0.0138605996415186,0.0156727984663702,0.0178354483364131,0.0197928700683958,0.0221064056356487,0.0245043233873201,0.0266383127356406,0.028942115768463,0.0308924485125858,0.0327667396422817,0.0348641127238493,0.0365701965337092,0.0386464900345855,0.040492444740457,0.0425287835808443,0.0572551396887444,0.0713574684340126,0.0841544635166081,0.0968775020016012,0.1089128781477099,0.1246650639158661,0.1358801338929918,0.1466079652055262,0.156588466972045,0.1653697334479793,0.1781769894307275,0.1890332516322148,0.1995661368740053,0.2084242616982311,0.2167065808787012,0.2261336117837862,0.2353915544661943,0.2430520293828915,0.2505348689002185,0.2572314405465924,0.2633581146124494,0.2702214718675624,0.2754473974454762,0.2795812524010757,0.2839165430537655,0.287083287083287,0.2909838119581015,0.2938241433735553,0.2980226904376013,0.3014675772426456,0.2983881836069109,0.295342209249494,0.293970167753567,0.2918604315299962,0.289049859727768,0.2857033615758725,0.2830206556755732,0.2828696349910753,0.283516371425657,0.2833282990707343,0.2848765547379823,0.2859307359307359,0.2859109396183126,0.2875361673714667,0.2881587134446944,0.289693954235663,0.2909930062009797,0.2939318110728808,0.2983834363325303,0.301372564486866,0.3057284618854307,0.309160909234745,0.311802481451462,0.3182159483405917,0.3251934010625408,0.3313281434300542,0.3321683634705972,0.3307213180630902,0.3313416621401412,0.3343419062027231,0.0,2.0425281461803904,51.42460737014767,143.30805684981434,199.022385916458,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95682,47302,451.610543257875,4950,50.4797140527999,3937,40.54054054054054,1505,15.30068351414059,77.28391542799022,79.68148652765946,63.28504443165552,65.05941477265549,77.08535309067636,79.4885248304085,63.20854815221625,64.98829534580892,0.1985623373138594,192.9616972509649,0.0764962794392687,71.11942684656469,243.28458,170.32738567963284,254263.68595974165,178014.03156250165,484.28697,321.8716737384389,505545.1809117702,335800.5937228615,459.88134,225.0010697531086,477063.1571246421,232421.9988993582,2231.06004,1069.344990206807,2297337.68106854,1083212.0567440616,918.62991,425.7541658828682,945369.9337388432,430340.7805243072,1461.38578,639.5949147394592,1486476.5577642608,631763.9513557024,0.37781,100000,0,1105839,11557.440270897348,0,0.0,0,0.0,41762,435.8291005622792,0,0.0,41703,432.3697247131122,1105308,0,39730,0,0,9740,0,0,77,0.7942977780564787,0,0.0,1,0.0104512865533747,0,0.0,0.0495,0.1310182366798126,0.304040404040404,0.01505,0.3575592693354061,0.6424407306645938,23.192491664116183,4.059110109323737,0.2903225806451613,0.2921005842011684,0.2110744221488443,0.206502413004826,11.375458564566436,6.297289874306412,16.34648048795721,11455.530609696989,45.22096256006422,14.065692421368809,12.965183694408864,9.189882734812164,9.000203709474391,0.5829311658623317,0.8130434782608695,0.7086614173228346,0.5523465703971119,0.1119311193111931,0.7350565428109854,0.930327868852459,0.8459214501510574,0.6839622641509434,0.1497584541062802,0.5131530196369025,0.7265861027190332,0.6527093596059114,0.5072697899838449,0.099009900990099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021787154698931,0.0045642648490749,0.0066601013228829,0.0088515360616253,0.0112430430491539,0.0135991361747208,0.0157478708756183,0.0178534951178657,0.0202403477371516,0.0221475547542461,0.0241500297515234,0.0262525173646788,0.0281330712793653,0.0301443838694052,0.0322370865849126,0.0340034748076445,0.0361528179303055,0.0380335492443115,0.0400054089476476,0.0418147518942749,0.0566617219982032,0.0709372087909786,0.0842167131971703,0.0963420537537095,0.1079363739035897,0.1231407670890632,0.134537576858135,0.1457512302153675,0.1557993093642088,0.1649222247270619,0.1774756904767038,0.1887344391596875,0.1996319245554236,0.2088754545056293,0.2171938719276975,0.2266808751540177,0.2360254002325373,0.2441737288135593,0.2518866209028504,0.2589282641366572,0.2654144927536231,0.2714419695193435,0.2756906798258621,0.2802910243480766,0.2850327386023416,0.2882863983019473,0.2912114073777065,0.2946702478392036,0.2978354081117141,0.3009745868885753,0.2985512710038776,0.2956448796050551,0.2928242857343818,0.2899146334429255,0.2868574991834189,0.2829582485504031,0.2798418972332016,0.2802055713771318,0.2808680383900718,0.2806023344916689,0.2820699981283923,0.2834321866350336,0.2848025528520143,0.2863254563780938,0.2887719890929273,0.2898675427617855,0.2901650052540399,0.2937707797503293,0.2973840251133589,0.3009208248071777,0.3040354286230738,0.3085218306154655,0.308599081771932,0.311145856600402,0.3162164653821333,0.3200700116686114,0.3232856066314996,0.3261347730453909,0.328575349986275,0.3330809992429977,0.0,2.308871905494505,53.78472779795974,138.43828888857433,200.39304666562228,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95657,47879,457.028759003523,4969,50.7333493628276,3958,40.79157824309774,1480,15.14787208463573,77.35161970545354,79.76084749622308,63.31721993396855,65.09593052907418,77.16568363857802,79.57627647757207,63.24717815720447,65.02878704147244,0.1859360668755272,184.5710186510132,0.0700417767640786,67.14348760174005,244.25984,171.00062172931962,255349.67644814285,178764.35778805483,487.86026,325.0382809222537,509445.0902704455,339231.6239646537,467.21117,228.1595459033219,485032.2715535716,235874.5182950963,2246.71212,1054.2101232145828,2317757.571322538,1071146.6168383437,892.61246,404.4374540708585,920173.5157907944,409872.2470735998,1434.3525,605.602916384598,1469255.7366423784,606866.6310753044,0.38035,100000,0,1110272,11606.803474915583,0,0.0,0,0.0,41947,437.9188140961979,0,0.0,42244,438.22198061825065,1101865,0,39447,0,0,9732,0,0,95,0.993131710172805,0,0.0,0,0.0,0,0.0,0.04969,0.130642828973314,0.2978466492251962,0.0148,0.3583882216195273,0.6416117783804727,23.35687620748437,4.11913500173639,0.3198585144012127,0.2748863062152602,0.2129863567458312,0.1922688226376958,11.664051305199662,6.427942033086596,15.7136153407166,11497.964678429782,45.1252769719801,13.272708453876543,14.37198307756039,9.225070972520134,8.255514468023033,0.5952501263264275,0.8207720588235294,0.7156398104265402,0.5729537366548043,0.0972404730617608,0.7662901824500434,0.9232409381663113,0.8895522388059701,0.689119170984456,0.1168831168831168,0.5251157819736373,0.7431340872374798,0.6530612244897959,0.5384615384615384,0.0922570016474464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0046240429954875,0.0068707248259484,0.0093269934162399,0.0113214456458716,0.0135771032796903,0.0155815020649569,0.0177063442627972,0.0199284253578732,0.0221858035439926,0.0244375365485826,0.0265229365340348,0.0286605194912114,0.030743218862439,0.0324449953517198,0.0348049206956845,0.0368255218589996,0.0388464413254713,0.0406995495167448,0.042542098952088,0.058067482418834,0.0720815052930274,0.0856950917411932,0.0986088896371748,0.1107417257683215,0.1256258004424263,0.1366063939352112,0.1465312343455229,0.1565371818600023,0.1662299729393067,0.1783804183739486,0.189602877136729,0.2009208463949843,0.2106455638011427,0.2198975940098001,0.2293273920368892,0.2373882931188561,0.2454584336942575,0.2529282244518091,0.2596459893293032,0.2645596262373947,0.2702427967190896,0.2749538985294813,0.2794786480275756,0.2840265395485365,0.2883538978213534,0.2921560062402496,0.29555862838875,0.2983175930226557,0.3015879275442332,0.298852426011677,0.295857095854354,0.2932116532116532,0.2903053951706958,0.2872524770805255,0.2831838154522153,0.279749708413454,0.2796389856280963,0.2804539808402389,0.2809160576803399,0.2817072260376231,0.2827014171433064,0.2838350567044696,0.2853337476969522,0.286126272135758,0.2875867585210414,0.2875285750571501,0.2913420183257496,0.2966517158652341,0.3007554296506138,0.3037478013800568,0.3090187062388964,0.3110035975685399,0.3122746394230769,0.3203479226427315,0.3231348552600612,0.3284261648201548,0.3319369638938759,0.3378885316184351,0.345224823485693,0.0,2.28065753060164,49.8371675577512,147.2832115420131,204.31038922527716,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95795,47712,453.8754632287698,4822,49.17793204238217,3839,39.52189571480766,1442,14.70849209248917,77.3507064425629,79.67907690501684,63.34838135415546,65.07012136372781,77.16599662172311,79.4976992331463,63.27884384796155,65.00401911458913,0.1847098208397852,181.37767187053555,0.0695375061939103,66.10224913868024,244.63692,171.32988214735963,255375.22835221048,178850.3180201052,486.14032,323.1505386277639,506925.27793726185,336780.9265909117,462.87251,225.8883915795705,479705.5691841954,233138.38044570107,2173.09452,1028.3570054120655,2237447.090140404,1042460.3845838148,879.44751,398.6102734851682,906911.9369486924,405028.0916845431,1402.44482,596.9337885580096,1431566.073385876,595688.8587212712,0.37981,100000,0,1111986,11607.964925100474,0,0.0,0,0.0,41786,435.61772535100994,0,0.0,41850,433.4151051725038,1104423,0,39627,0,0,9669,0,0,79,0.8246776971658228,0,0.0,2,0.0208779163839448,0,0.0,0.04822,0.1269582159500803,0.2990460389879718,0.01442,0.3503071131365167,0.6496928868634833,23.31275780636995,3.968376404054668,0.3128418859077885,0.2917426413128419,0.1917165928627246,0.2036988799166449,11.42265834452152,6.232561338269404,15.44791789044763,11508.183493262768,44.0608105914428,13.730937618173296,13.651412211510108,8.207905272397635,8.47055548936176,0.5790570461057567,0.8080357142857143,0.6860949208992506,0.563858695652174,0.1010230179028133,0.7653778558875219,0.9340425531914892,0.8670694864048338,0.7142857142857143,0.1234567901234567,0.5005553498704184,0.7169230769230769,0.6172413793103448,0.5169340463458111,0.0951612903225806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002542441554232,0.0047546634225466,0.0069104082316052,0.0091012514220705,0.0113978363429315,0.0136724118623189,0.0159695894990012,0.0180526783071914,0.0203051391315899,0.0226054031927957,0.0248683320695944,0.0267807670996737,0.0289704643084701,0.0309849295890636,0.0328837468291777,0.034938377462577,0.0371462569196544,0.0392789019737933,0.0413014580650521,0.0433402044683199,0.0580157769522935,0.0720738618540747,0.0848175442642542,0.0973674531028322,0.110018548965052,0.125580067863976,0.1370717171610057,0.1479152033714322,0.1582273751187692,0.1684547861223352,0.1801175381568467,0.1916392875670067,0.2017819307872005,0.2113128400078652,0.2201275145652413,0.229045459573056,0.2366283798086028,0.2443313904518042,0.2514244933561403,0.2578568161024702,0.2634787226673439,0.2696383967131218,0.274826571492726,0.2798502105666156,0.2836150246126239,0.2882838547754087,0.291476740555729,0.2944120523862149,0.2985441286752346,0.30082392271447,0.2981203007518797,0.2952286828089825,0.2926486501679385,0.2897906778805234,0.2875061157318863,0.2835223278417947,0.2801232422183599,0.2812213039485767,0.2823001603493569,0.2832617260620755,0.284023003577918,0.2849048408749901,0.2845923474837169,0.2857078903189703,0.2869619463505926,0.2878003071396965,0.2893800017087688,0.2920676857268667,0.2978992038719181,0.3014732019432047,0.304950675092058,0.309545333687849,0.3120553981743783,0.3156450137236962,0.3191170968948746,0.3169205337111819,0.3206796265115567,0.3197223356472029,0.3205092720730694,0.3206605222734255,0.0,2.1018047502017456,49.33207931574549,144.8503654751405,195.6286542349196,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95738,47666,454.0621278907017,4863,49.61457310576783,3860,39.76477469761223,1406,14.330777747602832,77.31652017658898,79.67776548960933,63.31665033110207,65.06275600053445,77.13690568602718,79.50118000958372,63.24850312815276,64.99784657176228,0.1796144905618035,176.58548002560792,0.0681472029493051,64.9094287721681,243.44012,170.505611361374,254277.4238024609,178096.06568068478,484.59955,322.88334022988096,505657.3669807182,336741.983569618,461.30774,225.30149651714453,478448.3590632769,232726.96873951788,2192.21336,1034.06663961045,2257918.6529904534,1048214.3345489248,859.62207,396.2349350702387,877238.1186153878,393222.2263575982,1364.82764,583.3945651858442,1391483.5488520756,580496.8184950791,0.37883,100000,0,1106546,11558.064718293675,0,0.0,0,0.0,41806,436.1173201863419,0,0.0,41686,432.0019219118845,1106017,0,39673,0,0,9661,0,0,78,0.8147235162631348,0,0.0,1,0.0104451732854248,0,0.0,0.04863,0.1283689253754982,0.2891219411885667,0.01406,0.3521876231769807,0.6478123768230193,23.35664346243162,4.007892341908845,0.3196891191709844,0.2803108808290155,0.2062176165803108,0.1937823834196891,10.93903730037426,5.890240046467431,15.107377768166147,11482.117657346438,44.22433870767449,13.219985157829353,13.965369317683844,8.89236401168671,8.146620220474587,0.583419689119171,0.8022181146025879,0.7106969205834684,0.542713567839196,0.1002673796791443,0.7692307692307693,0.9194630872483222,0.9035087719298246,0.7164948453608248,0.1304347826086956,0.5051546391752577,0.7196850393700788,0.6367713004484304,0.4867109634551495,0.0919931856899489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285025475835,0.0045011709127036,0.0068307536158335,0.0090634748061818,0.01123046875,0.0134031328295276,0.0155222175762087,0.0177588513423812,0.0198055234609053,0.0221653442539032,0.0244750225576244,0.0264503542458157,0.0286586870681145,0.0307367553930906,0.0328420097164488,0.0347460428978799,0.036621846825865,0.0388756353075407,0.041067697776669,0.0430561198445687,0.0580276043515483,0.0716363560262017,0.0849229736673762,0.0975153254892064,0.1091792838766817,0.1246364549732959,0.1367122444866395,0.1473095960402363,0.1574499455116562,0.1669330872965637,0.1782486453878553,0.1895811014078715,0.2005111195693545,0.2101108608663328,0.2182938910291689,0.2276757020324032,0.2356789585915084,0.2435311853118531,0.2511573548767757,0.2569920058638935,0.2633922890953047,0.2702048547776063,0.2756421633005596,0.2801831607211354,0.2847425510464367,0.2886275090003452,0.2921902377972465,0.2955950835941675,0.2989545325155914,0.3022093253313988,0.2985321619330795,0.2953288006826502,0.2924143958723938,0.2888821429087702,0.2866969750995424,0.2834911939773231,0.2800018966034992,0.2804383849321586,0.2807490739002031,0.2811172586114581,0.281918874419997,0.2830396909857711,0.2842362678705794,0.2844846809079963,0.2850676565680757,0.2867946028539611,0.2886037222741565,0.2932373024038911,0.2986268034069181,0.3027075883208237,0.3079453783406192,0.3108756392008013,0.3136349453978159,0.3157223264540337,0.3178734083093224,0.3225578102878716,0.3253763113881709,0.3340672538030424,0.3386084583901773,0.3377659574468085,0.0,2.182403510969678,49.704901109491615,142.46476981342607,199.28020508801808,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95685,47667,454.2300256048492,5188,53.11177300517323,4065,41.97105084391493,1500,15.37336050582641,77.40264542862671,79.78343712605869,63.35728834693722,65.11205226426102,77.20982516575877,79.59060150069095,63.28531901434768,65.04189115058041,0.19282026286794,192.83562536773505,0.0719693325895391,70.16111368061217,243.41636,170.41783569413803,254393.4367978262,178102.9792487203,485.01277,322.87957778217793,506387.5111041438,336944.266814051,470.64474,229.32352298616053,487615.018027904,236518.0197639566,2299.12072,1091.3442802678562,2375747.463029733,1113592.0314829396,895.51881,410.2190821265978,924307.101426556,417194.8936054865,1447.08384,613.366706797842,1484942.4465694728,618358.6230399304,0.38128,100000,0,1106438,11563.338036264828,0,0.0,0,0.0,41744,435.74227935413074,0,0.0,42602,441.1558760516277,1110471,0,39795,0,0,9553,0,0,97,1.003292052045775,0,0.0,2,0.0209019177509536,0,0.0,0.05188,0.1360679815358791,0.2891287586738628,0.015,0.3593289085545723,0.6406710914454278,23.308427787036106,3.957415489297472,0.3156211562115621,0.2915129151291513,0.2071340713407134,0.1857318573185732,11.348692110662949,6.305651033844269,15.894712188008718,11587.352909232266,46.6517558346675,14.556667807147742,14.530220503704228,9.468862254153036,8.096005269662491,0.5960639606396064,0.8135021097046413,0.6804364770070148,0.5997624703087886,0.1072847682119205,0.7656,0.9268774703557312,0.8583333333333333,0.7183098591549296,0.1520467836257309,0.5207815275310835,0.7290132547864506,0.6110509209100758,0.5596184419713831,0.0941780821917808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019746635477109,0.0041756615687109,0.0061067153580848,0.0083584696789657,0.0106974710446304,0.0130440095309858,0.015200791134401,0.0172892427025923,0.019498436446134,0.0218697231745381,0.0240064782639892,0.0261993491227529,0.0284083898827884,0.0304331706111351,0.0327380031159397,0.0348715828639346,0.0369235229555385,0.0389029553378714,0.0409967344052249,0.0430740690560807,0.0575171318736419,0.0713986555818482,0.0849248656816655,0.0973008225864136,0.1097200835319678,0.1253887983749814,0.1375844979996392,0.1482057123391209,0.1585420584715336,0.1674691430838686,0.1798740106606364,0.191347537684092,0.2023661947326069,0.2118681126464929,0.2208534975802903,0.2307496457669146,0.2394783771734284,0.2470432311614794,0.2543405628857806,0.2617248671200777,0.2675001154361176,0.2729923941953245,0.2785188158081118,0.2828151160009567,0.2867635473353776,0.2910112774095163,0.2937870044217942,0.2976185945013258,0.30099630901066,0.3034972390218248,0.3003460578909247,0.2978772938920843,0.2952188778655905,0.2931760378198956,0.29080780767469,0.2874902874902875,0.2850906913342894,0.2860436218567084,0.2865197160615426,0.2875858763380732,0.2875757293317177,0.2884668156336979,0.2880282421347731,0.2888425443169968,0.2898841514391496,0.2903493099251664,0.2913787243684151,0.2970411249337449,0.3012628200655829,0.3064497064733462,0.3105353745810308,0.3117921033132211,0.3156742556917688,0.3174747017066908,0.31950945515821,0.3247434701492537,0.3266636349855995,0.3275552898983861,0.3272088624696028,0.3354525056095737,0.0,1.99048598362367,54.75448769412653,145.52345431883217,208.061318691385,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95742,47899,456.38277871780406,5063,51.83722922019594,3997,41.30893442794176,1450,14.894194815232604,77.33907921770925,79.7058507843823,63.32552877917672,65.07533579507526,77.1502884973977,79.51690510419112,63.25456419207476,65.0060079676707,0.1887907203115588,188.945680191182,0.0709645871019546,69.32782740456389,243.82094,170.7540722792791,254664.55682981343,178348.13590616352,486.03092,322.9596365007183,507220.47795116046,336896.81278928614,465.58172,227.48640911718172,483426.228823296,235420.44472678375,2248.02132,1064.3215855392618,2325961.605147166,1089618.3759888676,899.26823,413.4580894062871,929003.9376658102,421588.02762245,1406.71486,605.3319297658627,1446637.6720770404,612605.4235619997,0.38152,100000,0,1108277,11575.66167408243,0,0.0,0,0.0,41847,436.6422259823275,0,0.0,42112,436.9451233523428,1106534,0,39694,0,0,9571,0,0,92,0.9609157945311356,0,0.0,1,0.0104447368970775,0,0.0,0.05063,0.1327060180331306,0.2863914675093817,0.0145,0.3717633717633717,0.6282366282366283,23.049330619877296,3.967121509811133,0.31048286214661,0.2952214160620465,0.201401050788091,0.1928946710032524,11.030650043334784,5.886062472476646,15.680646359060647,11558.772233843898,45.89483022903677,14.4909726759435,13.937380829231156,8.903475693129106,8.56300103073301,0.5936952714535902,0.809322033898305,0.6978243352135375,0.5875776397515527,0.1024643320363164,0.7665847665847666,0.93359375,0.8688046647230321,0.7,0.1534090909090909,0.5176512968299711,0.7140718562874252,0.6325167037861915,0.5528455284552846,0.0873949579831932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268838113757,0.0044916250963215,0.0068004425362605,0.0089924402536172,0.0108033325534317,0.012873132428276,0.0151532147045327,0.0174478555166464,0.0194993762653633,0.0217640672688912,0.0238854646333083,0.0260776681080081,0.0279740417348019,0.0300526462194657,0.032380264244426,0.0347034796546197,0.0370028902033501,0.0389991801662498,0.0410015909823536,0.0431616452056507,0.0577487288179834,0.0718777137237259,0.0842760833324596,0.0973847755449698,0.1095035221664487,0.1254759688610594,0.1359494181173949,0.1467854747532816,0.1572777979612335,0.1668866072290707,0.1788138697929013,0.1904246335072865,0.2014773555553138,0.211559922102361,0.2203824601191197,0.2307385362285106,0.2388629613915995,0.2466128015844436,0.2547094870630957,0.2610543925383566,0.2668996320381384,0.2735756385068762,0.2793980304767759,0.2836383658714674,0.2874155640985217,0.2914453624471328,0.2946682641905047,0.2979843466568569,0.3012894149231385,0.3043060437318168,0.3012310211971916,0.2982150212824385,0.2951264807676074,0.2913730360443622,0.2885291630191254,0.2851335034923352,0.2814518803999305,0.2811204169603199,0.2815994809540883,0.2812466550112392,0.2825737465884024,0.2840770351699421,0.2848003667583562,0.2857588172426077,0.2861715596111124,0.2867453049821512,0.2898398753011194,0.2946082718980382,0.2994561048741371,0.3038244464616963,0.308438321399438,0.3150177333121592,0.3177675821758531,0.3254788689571298,0.3259755983980628,0.3299941072480848,0.3364097831102907,0.3386082369649016,0.3335173937051353,0.3362528560548362,0.0,1.738586126045878,53.6437232444558,146.086236148086,202.60751741859752,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95690,48156,460.47653882328353,4950,50.47549378200439,3900,40.21318842094263,1498,15.299404326470896,77.30793472821749,79.68398604270723,63.31631099018998,65.07031830494842,77.11849150150734,79.49616084953551,63.24457332060146,65.001195460726,0.1894432267101535,187.82519317171875,0.0717376695885221,69.1228442224201,244.3199,171.18815353702286,255324.3808130421,178898.68694432318,489.32047,326.0527770865428,510849.7648657122,340228.286222743,468.82804,228.85074650421132,486226.2200856934,236368.8548120982,2217.27568,1043.529905963297,2288336.712300136,1061723.9272267702,886.34674,401.6297385720916,912966.799038562,406417.52385002654,1446.02498,612.1816510873592,1477906.4688055178,612861.5674123364,0.38162,100000,0,1110545,11605.653673320096,0,0.0,0,0.0,42074,439.1367959034382,0,0.0,42327,438.6038248510816,1097230,0,39411,0,0,9700,0,0,80,0.8360330233044205,0,0.0,0,0.0,0,0.0,0.0495,0.1297101829044599,0.3026262626262626,0.01498,0.3470055844405931,0.6529944155594068,23.58402596040493,4.101745291346,0.3197435897435897,0.2641025641025641,0.2215384615384615,0.1946153846153846,11.522152886187056,6.322905096268186,15.96223675053609,11555.416328459383,44.53625229158119,12.630311110291036,14.18838770102144,9.5901264426936,8.127427037575108,0.5864102564102565,0.7961165048543689,0.7016840417000801,0.5868055555555556,0.1119894598155467,0.7559322033898305,0.899103139013453,0.8904899135446686,0.7327188940092166,0.1352941176470588,0.5128676470588235,0.7174657534246576,0.6288888888888889,0.5378670788253478,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312354453961,0.004580276437923,0.0065734081295204,0.0087043958722678,0.0110446668293873,0.0132377499898171,0.0153052380418268,0.0175293517100561,0.0196589584739005,0.0216294233859823,0.023772911797269,0.0260474953541617,0.0281582952815829,0.0299680642835067,0.0318140072440587,0.033629690892174,0.0357057744713037,0.0378330114827965,0.0399059567650791,0.0419611767894747,0.0568270847914425,0.0714614692151485,0.0840415486307837,0.0973947432081365,0.110722192936215,0.1257495161853195,0.1377119093590206,0.1495146044452014,0.1593628477415495,0.1684259080474566,0.1794822090118032,0.1899893987581402,0.2010154602187479,0.2113088730484978,0.2197877137986031,0.2290568378150888,0.2376612075505377,0.2456635694841278,0.252203905195203,0.258844413903682,0.2652952548533855,0.2714312445910228,0.2764839534223232,0.2809033232990729,0.2853824920656152,0.2890999938313491,0.2928189256581502,0.2961217001325043,0.2997938090853682,0.3030759274667512,0.3009696969696969,0.2980724218642434,0.2958014460276521,0.292979538717374,0.290979097909791,0.28767165230171,0.2839662514048723,0.2845762155059133,0.2854432651386966,0.2848861062057402,0.2862277466818922,0.288314970580105,0.2904634543858916,0.2923868496079829,0.2928677634418917,0.2951101390407749,0.2979019786217876,0.3020862745098039,0.3065365442673594,0.3107445209272885,0.3119203491543917,0.3159315931593159,0.3185390079839064,0.3213119732746184,0.3230005619029781,0.3273690406121248,0.3259270379822849,0.3254660848869496,0.3279038718291054,0.3283858998144712,0.0,2.1531184758947903,51.32586517549005,137.95462912063846,203.0038101261173,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95706,47908,456.5231019998746,4955,50.48795268844169,3978,40.96921823083192,1488,15.234154598457776,77.38171245272493,79.75706298392552,63.34258245905804,65.09567781054244,77.18707518180202,79.56271531730012,63.26758371328284,65.0226283710291,0.1946372709229109,194.34766662540423,0.0749987457752041,73.04943951334053,244.0812,170.90290463526625,255031.8266357386,178570.30577937255,484.91867,322.81775026047865,506101.8431446304,336728.843210163,470.28708,229.66586835008792,487340.9295133012,236871.47193758952,2268.30392,1088.6587355297297,2338941.0486280904,1106442.2263282652,931.04037,429.59216647205255,958700.5307922178,434754.0660690579,1448.31136,632.0277593451599,1484335.7574237771,636466.9661049972,0.38171,100000,0,1109460,11592.355756169936,0,0.0,0,0.0,41669,434.7794286669592,0,0.0,42608,441.1113200844252,1103882,0,39660,0,0,9597,0,0,87,0.9090339163688796,0,0.0,0,0.0,0,0.0,0.04955,0.1298105891907469,0.3003027245206862,0.01488,0.3566990291262136,0.6433009708737865,23.06836290661917,4.043751466012711,0.3262946204122675,0.2737556561085973,0.1985922574157868,0.2013574660633484,11.497911326333996,6.320409073433471,16.072815351196898,11570.271233518231,45.85671183907989,13.403120216899834,14.777325953234152,8.816280287518513,8.859985381427386,0.5932629462041227,0.8089990817263545,0.7110939907550077,0.589873417721519,0.1123595505617977,0.7467079783113865,0.9081632653061223,0.8781725888324873,0.704225352112676,0.1185567010309278,0.5195385187941942,0.7278797996661102,0.6382743362831859,0.5476603119584056,0.1103789126853377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611084103062,0.0049062838954272,0.007194463611641,0.009253804115962,0.0115039567101328,0.0138289205702647,0.0159265867958195,0.0179672506023112,0.0200873005325945,0.0223154877674275,0.0246250371630973,0.026888840976992,0.0287844508432743,0.0311090051298955,0.033136912931755,0.0353287841191067,0.0373051628605458,0.0394836513816683,0.0411743905482985,0.0431221342225927,0.0577822799615689,0.0715923246830739,0.0854552894148752,0.0981654464360851,0.1099590751835288,0.1248188999693319,0.1362744161865656,0.1470381568861255,0.15663191180241,0.1664378124396575,0.1786264642175932,0.1901936796977341,0.2004481475841364,0.210005575659513,0.2184763957939196,0.2282272973840652,0.2368048353462023,0.2447115979352458,0.2520303992740472,0.258579427694633,0.2645871177498293,0.2704083421984779,0.2772972013490326,0.2815476975063808,0.2856483505805762,0.2899807796560051,0.2934490390506796,0.2984560207559648,0.3015628638704168,0.3041289421315515,0.3016519483312499,0.2992520414465107,0.2970644857580484,0.2940854641787606,0.2918342600260262,0.2882042843648109,0.2848994769017458,0.2858798185200901,0.285852417302799,0.2872623439273553,0.2871322160148976,0.2879005166689586,0.2890517921667982,0.2898975109809663,0.2913237434099096,0.2929446665806784,0.2952257409548518,0.2997794140491502,0.3030796975792467,0.3069982739683037,0.3094059405940594,0.312949829261886,0.3176698786134401,0.3210745365115399,0.3242060165781876,0.325900715878418,0.3261427062905415,0.3298763462305544,0.3321545157780196,0.3370060790273556,0.0,2.317022153258598,56.145567109695975,140.76583009119392,195.62694689211068,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95851,48159,458.1694505012989,5057,51.496593671427526,3969,40.76118141699096,1507,15.31543750195616,77.44506122741345,79.72429618411205,63.40474875222951,65.08484118042487,77.24984569840746,79.53264951632687,63.330109744172745,65.01426157078298,0.195215529005992,191.6466677851787,0.0746390080567636,70.57960964189647,244.01366,170.98057906421684,254576.0190295354,178381.63301813943,483.42033,321.9731926004854,503724.6038121668,335289.0763794696,473.69783,230.92521570731097,490308.3744561872,237930.6397122639,2260.212,1072.2208017704615,2323396.271296074,1083981.7652089817,919.17781,423.55349246898265,944005.6337440402,426927.7550249685,1468.12572,634.4610880339773,1493956.3071851104,629167.6727215357,0.3815,100000,0,1109153,11571.637228615247,0,0.0,0,0.0,41580,433.15145381894814,0,0.0,42662,441.1534569279402,1107387,0,39752,0,0,9633,0,0,102,1.0641516520432754,0,0.0,0,0.0,0,0.0,0.05057,0.1325557011795544,0.2980027684397864,0.01507,0.3488504655139654,0.6511495344860346,23.31233294730909,4.040881067187951,0.309649785840262,0.2784076593600403,0.2073570168808264,0.2045855379188712,11.12986437395715,5.955807211298638,16.184494075265505,11580.332753216622,45.61604584257054,13.58381138602806,13.923986513290034,9.15060698486906,8.957640958383394,0.581506676744772,0.8009049773755657,0.6859235150528885,0.5795868772782503,0.1268472906403941,0.7574750830564784,0.9275053304904052,0.8650306748466258,0.7407407407407407,0.1813471502590673,0.504882459312839,0.7075471698113207,0.6212624584717608,0.5222405271828665,0.1098546042003231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023583473349662,0.0043963168184442,0.006661732050333,0.0087795866996873,0.0110350153433454,0.0132362067737636,0.0153589179499714,0.0176308034303078,0.0199123855037833,0.0220552147239263,0.0244109726502902,0.0266752815211371,0.0288704475895076,0.0311564611855707,0.0335150060271375,0.0354975227085053,0.0374790576457691,0.0394400058030486,0.0415070441544419,0.0433280612669607,0.0577783339068414,0.0719180944421228,0.0850217266111721,0.0985141034251175,0.1109684886106581,0.1266281058031285,0.1374143608966824,0.1485294742657996,0.1585211094878056,0.1687305341795725,0.1812280343497092,0.191961296732252,0.2022276744034566,0.2111336739595615,0.2200876528157643,0.2286441334292194,0.2372460068883266,0.2450532040405856,0.2531147615322699,0.2602487385727852,0.2657848793516088,0.2714666541951174,0.2768952342650311,0.2820162998599791,0.2862827402977108,0.2901748901551981,0.2932689299613329,0.2967875674025841,0.3001954616649191,0.3031109939361983,0.3003925997633645,0.2970502244245261,0.2950803565162467,0.2923791580975939,0.2904398722951401,0.2873125808661237,0.2840178051811189,0.2833363222850807,0.2833528503300918,0.2839659233807406,0.2848899973941853,0.2862337356028145,0.2882273342354533,0.2883010829043139,0.2901848539057841,0.2928656300046495,0.2948139797068771,0.2988995274807262,0.3038259305382593,0.3081329200831731,0.3128276984270475,0.3193410422936797,0.3238838588822978,0.3280060882800609,0.3279827278700835,0.3274577073228439,0.3258908089922006,0.3292307692307692,0.3281767955801105,0.3298327499027615,0.0,2.555133461840117,52.06582957197469,147.2283515130564,200.144518738574,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95681,47781,456.3810996958644,4864,49.72774113982923,3872,39.84072072825326,1469,14.924593179419112,77.29747507811412,79.7005248912408,63.28577397120039,65.06585980548714,77.11603869838892,79.52362955028111,63.21691647883838,65.00121337224509,0.1814363797251985,176.89534095968895,0.0688574923620137,64.64643324204644,243.94238,170.86105855552032,254953.8361848225,178573.6547021042,488.39792,325.56185357985174,509813.27536292473,339637.0780804593,466.04138,228.04418824896987,483217.0963932233,235399.631067722,2196.37188,1039.7790190223875,2260819.2222071257,1052508.1463453677,865.59265,394.51366295044414,887689.7398647589,396197.4529115563,1424.07354,602.3800179549819,1448299.5997115416,596732.5876473667,0.37927,100000,0,1108829,11588.81073567375,0,0.0,0,0.0,41971,438.007545907756,0,0.0,42233,437.5267817016963,1097754,0,39438,0,0,9822,0,0,88,0.9197228289838107,0,0.0,1,0.0104513957839069,0,0.0,0.04864,0.1282463680227806,0.3020148026315789,0.01469,0.3564532019704433,0.6435467980295566,23.22230887527014,4.026964281069307,0.3096590909090909,0.287448347107438,0.2037706611570248,0.1991219008264463,11.399367876790944,6.270700838488441,15.631367913411466,11489.35260072301,44.44919613092995,13.70677620508263,13.594563491827584,8.772549269843548,8.375307164176185,0.5831611570247934,0.8158131176999102,0.6872393661384487,0.5640050697084917,0.1050583657587548,0.7837606837606838,0.9306122448979592,0.8735294117647059,0.7227722772277227,0.1304347826086956,0.4962990377498149,0.7255216693418941,0.6135040745052387,0.5093696763202725,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026348858891726,0.0049702797557462,0.0069749733489009,0.009114927344782,0.01129150390625,0.0136283077675242,0.0158398270164416,0.018004125732726,0.0200149319369585,0.0219147781384727,0.0240427517873078,0.0259908364323724,0.0279418118968745,0.0299139574424236,0.0319033606938206,0.0340304929766854,0.0360067162786841,0.0380346184597173,0.0400337082158574,0.0421460730365182,0.0575792079725057,0.0720424592000167,0.0849239745217582,0.0976625781069197,0.1100316455696202,0.1260433968452122,0.1380671867537016,0.1478487752928647,0.1584867731656722,0.1675076222785245,0.1794241345842769,0.1908214916701893,0.2014768506921376,0.2098615310459664,0.2189731946036504,0.227570217863957,0.2362821573053798,0.2440081993062125,0.2509684088559712,0.2581025946639773,0.2639990734842782,0.2695360981664051,0.2743677181017334,0.2798301078623106,0.2837372766961365,0.288561386199667,0.2929721742179477,0.2965279192989606,0.2994489465153971,0.3020472856954167,0.2989512846089558,0.2956164647842683,0.2929020791604367,0.2908086534012031,0.2876521222914811,0.2833751223091976,0.2795498666329961,0.2796959293771456,0.2798423805965079,0.2793775837902095,0.2804828150572831,0.2814270312653141,0.2820731377726034,0.2845742912242591,0.2870732405111577,0.2884153428903526,0.2896401739818109,0.2936468389909685,0.298549514765731,0.3018630610801037,0.3071370567535866,0.3123359580052493,0.3166304009947155,0.3215330383259581,0.3238236383845869,0.3255162758137906,0.3290889798393209,0.3237294917967186,0.3302652950730915,0.3333333333333333,0.0,2.3888323843573627,50.60731470063424,144.23595685922163,194.98285459852133,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95828,47874,455.56622281587846,4978,50.70543056309221,3986,41.000542638894686,1502,15.22519514129482,77.32864418348662,79.6383370138162,63.32870225298407,65.03820613632054,77.13080765383329,79.4478332039346,63.25279130193308,64.96791480841718,0.1978365296533297,190.50380988160495,0.0759109510509858,70.29132790336234,243.95228,170.90251973041728,254573.06841424215,178342.98924157582,486.03207,324.5453393215199,506599.6785908085,338082.4073564302,469.11077,229.26900796484875,486804.7856576366,237080.55052246648,2279.97836,1090.2968811035098,2344235.33831448,1102806.7066490368,874.36984,403.0364056525701,893167.8528196352,401401.6116730354,1455.7055,630.2040055964784,1476313.5826689487,620581.1360351098,0.38074,100000,0,1108874,11571.503109738282,0,0.0,0,0.0,41830,435.88512752014026,0,0.0,42418,439.80882414325663,1100017,0,39501,0,0,9723,0,0,97,1.0122302458571608,0,0.0,1,0.0104353633593521,0,0.0,0.04978,0.1307453905552345,0.301727601446364,0.01502,0.373941493456505,0.626058506543495,23.130436220862357,3.964178576025368,0.3158554942298043,0.2849974912192674,0.2024586051179127,0.1966884094330155,11.488388238373364,6.353053610603243,16.16029601441436,11534.528206551791,46.15618839536503,14.128328830450014,14.334606924025918,9.134434864496829,8.558817776392262,0.5950827897641746,0.8221830985915493,0.7212073073868149,0.5687732342007435,0.0905612244897959,0.7567567567567568,0.9171717171717172,0.8821917808219178,0.7090909090909091,0.1123595505617977,0.5205278592375366,0.748829953198128,0.6554809843400448,0.5161839863713799,0.0841584158415841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0044297125248347,0.0069903109623091,0.0092739314155696,0.011378889566809,0.0136835675015271,0.0159107124655998,0.0181860859093553,0.0205512350157889,0.0227372729598362,0.0249085525169831,0.0271033024773711,0.0289913159652638,0.0309659354121413,0.033111968156413,0.0350922501601206,0.0371501008951208,0.0392539062094993,0.0412464294988314,0.043111254514608,0.0578351203638032,0.0717452218644138,0.0844417890422733,0.0967043591575938,0.108731171007832,0.1244780379512659,0.1358353305478377,0.1465708965150305,0.1582758399726595,0.1680925425618594,0.1806325855885932,0.1908007920277858,0.2013310424324148,0.2109319486198415,0.2196412852112676,0.2295140081312521,0.2385689880414028,0.2460564981929135,0.2528871376173875,0.2603380656406963,0.2658296816674781,0.271367270851408,0.2765124090536835,0.280559726142574,0.2848921388506978,0.2888845029420109,0.2924179583244577,0.2960348606085317,0.2991686876677863,0.3015461873926259,0.2985756444636095,0.2959263800300321,0.2935739685048258,0.2902898844516521,0.2877009801734267,0.2841592052005396,0.2813603890446546,0.2813987069672803,0.2815312244341423,0.2813445318338731,0.2823089856155427,0.2841294238196579,0.2851661070676315,0.2861974588905454,0.2875508738328944,0.2890322245051887,0.2892423726891233,0.2926166531326129,0.2972004868718483,0.3039342844790315,0.3086715117591297,0.3149884137349905,0.3209151143892986,0.3229277163206546,0.3264161525518788,0.3321897551165266,0.3388704318936877,0.3426797516523132,0.342339908132937,0.3527841342486651,0.0,2.2307427565554705,54.9115693975309,147.58087407124358,196.2230950443644,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95753,47667,454.17898133739936,5003,51.14200077282174,4053,41.805478679519176,1477,15.080467452716888,77.35098256499538,79.69714920657997,63.33757887846742,65.07008776173107,77.15665140887671,79.50568931106612,63.26420444173798,65.00016684688616,0.1943311561186647,191.4598955138445,0.0733744367294377,69.92091484491425,243.33408,170.4864529037705,254126.84720060992,178048.1581817494,486.16401,322.98901285729426,507240.5773187263,336828.1650259462,460.8208,224.88192473327885,478010.2137792027,232334.7464424525,2293.63472,1078.1720611921742,2366532.348855911,1097361.48548331,920.68228,413.63716837434913,950917.9973473416,421460.3372818738,1437.92784,614.286496864364,1470031.6230300877,614549.9473382228,0.3801,100000,0,1106064,11551.22032730045,0,0.0,0,0.0,41926,437.3335561287897,0,0.0,41798,433.26057669211406,1107116,0,39692,0,0,9483,0,0,75,0.7832652762837717,0,0.0,1,0.0104435370171169,0,0.0,0.05003,0.1316232570376216,0.2952228662802318,0.01477,0.3663726993865031,0.6336273006134969,23.107993373839648,4.059372386202245,0.305946212681964,0.2953367875647668,0.1996052306933136,0.1991117690599556,11.18237343559759,5.940657398658843,15.791323914618657,11516.676126842927,46.420952711486976,14.705422137538983,14.071676513621034,8.833850484460667,8.810003575866292,0.5951147298297558,0.8170426065162907,0.7096774193548387,0.5648949320148331,0.1201982651796778,0.7571669477234402,0.8985801217038539,0.8850574712643678,0.6875,0.1538461538461538,0.5280781304499477,0.7599431818181818,0.6412556053811659,0.5308056872037915,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974015979261,0.0044090370055036,0.0064939677128042,0.0089075322986918,0.0112047666012546,0.0132442915169345,0.0154840419567588,0.017492830388945,0.0197569476384672,0.0218915350684174,0.0238537000399782,0.0260832075878422,0.0279651258430662,0.0300072083204613,0.0322900117605793,0.0344296522925538,0.036614409675482,0.0388203430634968,0.040849214518158,0.0427444811384637,0.0570500976062969,0.071282115658214,0.0847418529547456,0.0971676093950417,0.1098636981752632,0.125089848209378,0.1363867738446202,0.1474769617128142,0.1569850663362317,0.1663287744703674,0.177310770490214,0.1887351992553629,0.1998629511192325,0.2092679724258671,0.2176660318578615,0.2265225824328068,0.2355706946616037,0.2437419137087247,0.2520002269761107,0.2588202929781527,0.2652147246363394,0.2713083970001521,0.2772745547856112,0.2827586206896552,0.2872723743433583,0.2904753703065794,0.2938111481800802,0.2961838461343022,0.2996921325640959,0.30225657122509,0.2992366617751989,0.2967784551447012,0.2943554635225175,0.2928532192315476,0.2909352817131486,0.2875636964605426,0.2833981841763943,0.2834736099489754,0.2843863000614041,0.285093886268577,0.2854022773940638,0.2864224731478931,0.2882144347100542,0.2891662772845604,0.2895541644765136,0.2902238476901927,0.2917904745733933,0.294505769411176,0.2993530884808013,0.3022852639873916,0.3065990766723998,0.3090255759881631,0.3142124358813962,0.3163296106248113,0.3188837209302325,0.3179783223374175,0.3191881918819188,0.3207014714775247,0.324718174319494,0.3317990026850786,0.0,2.066810830986972,51.70913745845329,153.1764274172518,207.1994601926547,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95848,48085,457.8290626825808,4990,50.94524664051415,3966,40.85635589683666,1473,15.00292129204574,77.51248185563044,79.79906939478094,63.42745123530996,65.1112677300578,77.31958801275815,79.61106634700268,63.353806173317686,65.04233978177726,0.1928938428722943,188.0030477782668,0.0736450619922735,68.92794828054605,245.55806,171.99200693307165,256195.28837325764,179442.45778010145,491.31847,326.4782172732549,512095.6827476838,340114.783066162,473.53966,230.7973493802892,491276.7924213338,238599.5701510852,2258.1702,1067.204915570361,2325659.961605876,1083316.05502224,913.00875,416.5955461937166,934931.026208163,417106.3185952587,1434.19686,616.5045245117199,1461577.289040981,611507.7489930397,0.38178,100000,0,1116173,11645.24038060262,0,0.0,0,0.0,42186,439.6022869543444,0,0.0,42759,443.3791002420499,1101254,0,39470,0,0,9784,0,0,88,0.9076871713546448,0,0.0,3,0.0312995576329187,0,0.0,0.0499,0.1307035465451307,0.295190380761523,0.01473,0.3710111495578623,0.6289888504421376,23.23709974421813,4.152946422589093,0.3093797276853253,0.2720625315179021,0.2170953101361573,0.2014624306606152,11.344309636093362,6.112203667296127,15.703140942427344,11551.791829710732,45.37665169345313,13.320423870418317,13.820710754828138,9.523128241704114,8.712388826502561,0.5776601109430156,0.794253938832252,0.6960065199674002,0.5679442508710801,0.113892365456821,0.7549668874172185,0.9071729957805909,0.8698224852071006,0.7358490566037735,0.1739130434782608,0.5,0.7057851239669422,0.6299212598425197,0.5130970724191063,0.0959349593495935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022160160281707,0.0044966123494799,0.0067910682248958,0.0093149739728668,0.0116316869501615,0.0138411471575307,0.015668587485492,0.0179576603034752,0.0199217832599838,0.0218427242049289,0.0239723923239191,0.0259568445665996,0.0282361644849057,0.030443060772912,0.0324226804123711,0.0343328134521829,0.0361961920529801,0.0383506822046199,0.040587147576406,0.0428409315690296,0.0569849298638994,0.0710095676269148,0.0848178731609171,0.0979685727490441,0.1102523061370624,0.1258344600304208,0.1374471377545072,0.1483399621413531,0.1584597980832853,0.1677197566826593,0.1801473355917621,0.1920064812314339,0.2023821156748423,0.2115596710964543,0.2204829071095878,0.2301890965387592,0.2385959831125864,0.2469957997349565,0.2539206250353847,0.2601521972622774,0.2667120238932644,0.2727865644872004,0.2777476479049258,0.2810743061772605,0.2854204476709014,0.2899709034658023,0.2940018195186999,0.2980886075949367,0.3012301152830553,0.3027461574778366,0.2999156524882516,0.297048929245412,0.2942838361375683,0.2913340607592029,0.2891905851103077,0.2858904109589041,0.2821385252744829,0.2814540349960825,0.2809539976234935,0.2821773392020446,0.2838436894650574,0.2854421554957679,0.2867041198501873,0.2858885094682691,0.2863761642273332,0.2874459542927733,0.287678938043142,0.2931637421471234,0.2990099692986995,0.3032255560299655,0.3044173140954495,0.3086477255084614,0.311966599128139,0.315965512115356,0.319197655248214,0.3255064456721915,0.3283360546237197,0.3282561999609451,0.3274619695756605,0.3250647908182155,0.0,2.071408601008128,52.681392949033786,143.27224189797096,201.8663272206382,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95747,47639,454.1656657649848,4960,50.664772786614726,3883,40.05347426029014,1444,14.768086728565908,77.31288813594676,79.6723453817603,63.318020272784125,65.06224008730261,77.12856251896342,79.4889848410994,63.24818444549431,64.99458893183498,0.1843256169833438,183.3605406608996,0.0698358272898147,67.65115546762956,242.11858,169.548032938378,252873.28062498043,177079.211816953,479.52318,319.51469369642103,500335.69720200106,333219.7705373756,460.93808,224.7864230631127,478299.93629043206,232295.12957194293,2192.84644,1044.3006663021122,2264194.0948541467,1064630.8984115552,884.60607,411.70506497605817,909901.6261606108,415994.7622129749,1394.78192,597.0583316399708,1428250.4934880466,599705.6436006813,0.38062,100000,0,1100539,11494.2400284082,0,0.0,0,0.0,41334,431.1884445465655,0,0.0,41723,432.6192987769852,1115748,0,40050,0,0,9735,0,0,71,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.0496,0.1303136987021176,0.2911290322580645,0.01444,0.3641440400539187,0.6358559599460812,23.2444464050872,3.971299083000424,0.3036312129796549,0.2951326294102498,0.2080865310327066,0.1931496265773886,11.395526941697112,6.376377411839579,15.535889341524149,11532.410840435536,44.95155364786304,14.26536496647584,13.450482944628815,9.0704323203792,8.16527341637919,0.5974761782127221,0.8150087260034904,0.6802374893977947,0.6051980198019802,0.1266666666666666,0.7729549248747913,0.924901185770751,0.843558282208589,0.7487684729064039,0.1901840490797546,0.5191806331471136,0.728125,0.6178194607268465,0.5570247933884298,0.1090289608177172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0044800778438865,0.0063921103095607,0.0086641205866818,0.0107403301431026,0.0128207739307535,0.0151014581421433,0.0173862441424794,0.0198028912016684,0.0221173242133502,0.0240846500087151,0.0261744621861683,0.0281900177923133,0.0303648311806027,0.0325079954606417,0.0345290877334408,0.0366750191555012,0.0386179705333056,0.0404604442226104,0.042466295763789,0.0570316007057177,0.0704562813229124,0.0836383083585877,0.0964221504946747,0.1088173584826088,0.1247937555527351,0.1367408004753618,0.1475252794039382,0.157249364465617,0.1668275211255522,0.1789032806830539,0.1902109850655881,0.200835000434896,0.2100480090987631,0.2190525435662735,0.2289315420483115,0.237875778338206,0.2446871941410073,0.2523107669248064,0.2589592594289904,0.2647606921696857,0.2699665567482869,0.2758555425435016,0.2811129484506434,0.2854783073410096,0.2896409826774758,0.2934491476632707,0.2979451183845782,0.3010808361918322,0.3049227926620034,0.3014237415983082,0.2983370699971115,0.2957423134885424,0.2931206380857428,0.2907339694996879,0.2882968455563556,0.2841161184002028,0.2842527055655001,0.2848747821927637,0.2851172509867657,0.2851713873860381,0.2861207152030031,0.2870515472533901,0.2881189882436765,0.2897922009443233,0.2900779220779221,0.2913660891792105,0.2966870780342283,0.3007424008964841,0.3050733254062623,0.3067428986296397,0.3101322514357975,0.3138849233442989,0.3164471208129469,0.3217180657784403,0.3252546540217773,0.3253726802555521,0.3278557114228457,0.3306871064878182,0.3349514563106796,0.0,1.9836286550942623,52.39011412037097,146.41941397266638,193.07115736195476,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95787,47977,456.90960151168736,5018,51.12384770375938,3976,40.98677273533987,1517,15.534467098875629,77.37208356525132,79.70867476053928,63.35007434272507,65.07850055226626,77.17864131769066,79.51512181560956,63.27660164248193,65.00647941027913,0.1934422475606538,193.55294492972064,0.0734727002431441,72.02114198713616,244.6675,171.42192122188175,255428.7116205748,178961.57226124816,486.36244,323.70019636740057,507218.54740204825,337401.9296641513,467.79582,228.73194502519965,484063.7038429014,235633.4537798825,2289.74092,1086.6196240474294,2364034.493198451,1107996.3085256135,930.03374,423.03348898074165,959743.0549030664,430443.409837182,1481.51668,637.6451669840237,1519488.3230501006,645515.7433577756,0.38228,100000,0,1112125,11610.3959827534,0,0.0,0,0.0,41872,436.5728125946109,0,0.0,42332,437.6898744088446,1101671,0,39551,0,0,9651,0,0,81,0.8351864031653564,0,0.0,0,0.0,0,0.0,0.05018,0.1312650413309616,0.3023116779593463,0.01517,0.3727255315073741,0.6272744684926259,23.341923607412763,4.03191268596924,0.3086016096579477,0.2829476861167002,0.1974346076458752,0.2110160965794768,11.208796687106872,5.980640942769015,16.258290036104732,11608.062896198451,45.67997559572135,13.962517824080145,13.934261784631063,8.662812233670513,9.120383753339633,0.5757042253521126,0.8115555555555556,0.6813365933170334,0.5707006369426751,0.1096543504171632,0.7554304102976669,0.93,0.8563049853372434,0.7572815533980582,0.1326530612244898,0.4939626783754116,0.7168,0.6139954853273137,0.5043177892918825,0.1026438569206843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025321584118302,0.0048963951177973,0.0070934220941324,0.0092949076096341,0.0115631038340282,0.0136626486398436,0.0158701036602146,0.0178684409249545,0.020192936559843,0.0224337324736465,0.0243387544706449,0.0267244121963484,0.0289972760446111,0.0310646622734761,0.0330707199868005,0.0349950922147026,0.0370976089431735,0.0392305299180752,0.0413021342033623,0.043206213365816,0.0577167901492225,0.0721756228167423,0.0861479757636748,0.0991037374045159,0.1113861907671562,0.1274799805616007,0.1389981030298534,0.1490180650511967,0.1587550547891126,0.167287997600377,0.1788315278778816,0.1911689996216829,0.2015170285366543,0.2107104207431051,0.219912677202591,0.22947697146211,0.2384453195595667,0.246857785272625,0.2544805305220201,0.2614345411872459,0.2668632552760913,0.2724637342341816,0.2781415468986384,0.2818533280668366,0.2869672817265349,0.2908236104957416,0.2945260313727452,0.2989582009909795,0.3029041889079887,0.3051907854009983,0.3014636766483147,0.2990097923581205,0.2968538946420531,0.2939860583931071,0.2913990774661465,0.2874063885068011,0.2840648839890701,0.2833540738800105,0.2840321507192955,0.2853682860806382,0.2867622354127002,0.287873123315165,0.2886262739948728,0.2893502567408362,0.2904413522689236,0.2909930715935335,0.29227794836802,0.2971557590391671,0.3018656977150443,0.3045335865179207,0.3098795617133025,0.3117848668600053,0.3140361821584529,0.3177838164251207,0.3194133034379671,0.3211482132396016,0.3250941974378297,0.3306562193927522,0.337255950788981,0.3512611275964392,0.0,2.075462535840388,54.23403264723666,141.6989397410621,201.4724045912864,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95652,47802,456.5299209634927,4952,50.56872830677874,3947,40.730983147242085,1487,15.190482164513028,77.25911226955019,79.6543072813431,63.27736057920528,65.04542010798762,77.07142796585987,79.47060199446983,63.206215891153136,64.97811476181101,0.1876843036903182,183.7052868732627,0.0711446880521435,67.30534617661021,244.20352,171.07153235158424,255304.14418935307,178847.83627272223,487.33716,324.1698776693148,508869.8615815665,338285.57444623706,469.08689,228.1598719046773,487155.0725546774,236015.1705178827,2245.3592,1062.4098657029947,2316613.013841843,1079891.0066731432,912.59707,415.4289415652957,938028.1541420984,418290.94477616297,1443.32362,615.1482858446539,1474909.6516539122,612969.2468960641,0.38016,100000,0,1110016,11604.733826788775,0,0.0,0,0.0,42000,438.5376155229373,0,0.0,42530,441.3917116212938,1095265,0,39376,0,0,9620,0,0,74,0.7631832057876469,0,0.0,0,0.0,0,0.0,0.04952,0.1302609427609427,0.3002827140549273,0.01487,0.3611488453328158,0.6388511546671841,23.222037559266035,4.065137906121986,0.3139092982011654,0.277932607043324,0.20749936660755,0.2006587281479604,11.64852962803887,6.5246580219027726,15.807752811652511,11517.06352303981,45.41602334792684,13.62479329322042,13.989923236579864,9.091344914299174,8.709961903827395,0.5964023308842159,0.8085688240656336,0.705407586763519,0.5995115995115995,0.1287878787878787,0.7687188019966722,0.9293139293139292,0.848314606741573,0.7604166666666666,0.1676300578034682,0.5209471766848816,0.7142857142857143,0.6477916194790487,0.5502392344497608,0.1179321486268174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385867528336,0.0047049757146188,0.0068611331019223,0.0092464639895951,0.011496006917951,0.013657751614283,0.0157636070722107,0.0179772757434384,0.0201183794890667,0.0222736299056236,0.0245752893773644,0.0265938331057284,0.0287991771663666,0.0308118632369453,0.0325173887019875,0.0342859506183051,0.0362881087296572,0.0382399651231588,0.0403257681346341,0.0424181139628463,0.0574214178231065,0.0713769519999162,0.0849531130222936,0.0979171931598012,0.110100850097682,0.1263701930714565,0.1378043081106343,0.1479867452292414,0.1579904183420309,0.1667310996563573,0.1792055923536646,0.1911594187193185,0.2019411976165317,0.2111981592067057,0.2206389994816538,0.2289889836531627,0.2376343965719783,0.2450629884850056,0.2531359102953385,0.2591733106633274,0.2657787265639502,0.2718711886668543,0.2767436618381559,0.2822352842186241,0.2871314881844661,0.2897786233137323,0.2932137481184144,0.2966116819213216,0.3004306319394002,0.3040616450124903,0.3012486852396235,0.2973859813599515,0.2930883515986894,0.2899301023811595,0.2874191722041777,0.2830101852988096,0.2785269462975581,0.2792962975130589,0.2788900477012772,0.279120800699363,0.2802865908410655,0.281036861817465,0.2818755484976388,0.2825270549543343,0.2827505437510457,0.2834515244060251,0.2848251669118479,0.2897196261682243,0.2939163232520779,0.2973741362290227,0.301277405327052,0.3054103985220375,0.308880550343965,0.3130035388901438,0.3136237256719184,0.3211472904666745,0.3271268543748107,0.3343307400758029,0.3383727322704782,0.3499228395061728,0.0,2.030115061616061,52.72794241756802,143.9201257043625,201.50593950296368,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95624,47721,454.9380908558521,4960,50.68811177110349,3935,40.627875847067685,1500,15.351794528570236,77.28554750318864,79.71819598869911,63.27381344368565,65.07212402212244,77.0889171823102,79.5232051031143,63.199614300165614,65.0008135814457,0.196630320878441,194.99088558481503,0.0741991435200333,71.31044067673997,243.79762,170.8122032828617,254953.9655316657,178628.59504976118,486.53872,323.7449492626656,508269.0328787752,338026.58980722714,463.40336,226.242920553938,481457.16556513007,234115.41585372528,2248.41772,1069.7985542216168,2322401.9493014305,1089950.4400939269,885.37914,409.897809426499,909311.5849577512,412352.6115307027,1455.37574,627.9066990130071,1490602.7566301348,629563.7423664938,0.38114,100000,0,1108171,11588.816615075712,0,0.0,0,0.0,41957,438.195432109094,0,0.0,42021,436.3653476114783,1099386,0,39470,0,0,9660,0,0,78,0.805237178950891,0,0.0,0,0.0,0,0.0,0.0496,0.1301359080652778,0.3024193548387097,0.015,0.3579841668275729,0.6420158331724272,23.40745121321582,4.079661141062845,0.3097839898348157,0.2813214739517153,0.2086404066073697,0.2002541296060991,11.439644745015416,6.190164158063814,16.205668954294627,11593.917465258855,45.48566234666932,13.612597735306178,13.971229717523574,9.187561083555256,8.714273810284315,0.5992376111817027,0.8148148148148148,0.7136997538966365,0.6163215590742996,0.1015228426395939,0.760551948051948,0.9121338912133892,0.8777777777777778,0.7681159420289855,0.1390374331550802,0.5257121716611173,0.7408585055643879,0.6449359720605355,0.5651465798045603,0.0898502495840266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307661126874,0.0047469798861942,0.007218860415059,0.0094120038623773,0.0117608757579457,0.0139962717354765,0.0159439361018453,0.0180103792088917,0.0202718597539147,0.0225208156242639,0.0244455386635481,0.0267879161528976,0.0289960988564193,0.0310683214447697,0.0329998244690187,0.0347431242953631,0.0369740932642487,0.0392767756072737,0.0413214538490361,0.0432664726559647,0.0578058851199498,0.0719600117365972,0.0851258340776546,0.0980920976390893,0.1106862569053478,0.1263846821849914,0.1379735401944636,0.1492537313432835,0.1595860799589076,0.1686651194773938,0.1807313415121009,0.1919945358153452,0.2029838384498861,0.2124605539971949,0.2210156112189098,0.2304328523862375,0.2389586290926569,0.2471797414716058,0.2549086446686665,0.261533347851502,0.2675697580178303,0.2734115278363066,0.2785809081429519,0.2825168614838105,0.2871723131196399,0.291032253288256,0.2948549390831799,0.2971637438072314,0.300506850913239,0.303936321875495,0.3011616793872578,0.2980828695114409,0.2947728616892444,0.2915162194170831,0.2896303002419151,0.2857033475238124,0.2826757821772777,0.282830272293072,0.283348116812227,0.2835820895522388,0.2837157979389927,0.2833901242835477,0.2843106511968224,0.2853134394833537,0.286548168704098,0.2879418685836932,0.2881484819467132,0.2937937470835278,0.2986779262130546,0.3013258021495253,0.3054078413699865,0.3088335876256116,0.312000998003992,0.3163234630993536,0.3202705206596257,0.3235567970204842,0.3319752527538856,0.3379324135172965,0.3427495291902072,0.3431226765799256,0.0,1.9783821389634024,54.03320671433514,147.2954343539253,192.1654648894652,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95812,47663,454.6194631152674,4954,50.599089884356864,3924,40.38116311109256,1464,14.904187366926898,77.35864855579545,79.66261809628952,63.35358995694328,65.05376121462417,77.1679869357543,79.47525642172837,63.281899337737954,64.98551151817925,0.1906616200411548,187.3616745611457,0.0716906192053201,68.24969644492285,243.30416,170.42295567148298,253938.6715651484,177871.8124108303,486.54744,323.17196431946,507227.1844862856,336711.5606072651,464.8617,227.26091167293455,481231.5263223813,234208.15916736104,2218.94604,1055.042054481054,2283677.9109088634,1069072.5446817274,873.25368,404.1239541101164,895312.4243309814,405774.7547312994,1418.87578,606.481516738868,1446035.6531540933,604857.095208967,0.37938,100000,0,1105928,11542.666889324928,0,0.0,0,0.0,41929,437.0016281885359,0,0.0,42056,435.2064459566652,1108006,0,39810,0,0,9545,0,0,80,0.8036571619421367,0,0.0,1,0.0104371059992485,0,0.0,0.04954,0.1305814750382202,0.2955187727089221,0.01464,0.3512885099786863,0.6487114900213137,23.33039014342365,3.9853195315604952,0.3037716615698267,0.2981651376146789,0.1967380224260958,0.2013251783893985,11.246453981164574,6.201120445463231,15.716397728898706,11475.105442918915,45.25560645100818,14.433462784638351,13.468364739292475,8.665097149738303,8.68868177733905,0.5846075433231397,0.8085470085470086,0.6862416107382551,0.5764248704663213,0.1075949367088607,0.7549342105263158,0.9241516966067864,0.8579881656804734,0.7202072538860104,0.1413043478260869,0.5081240768094535,0.7219730941704036,0.6182669789227166,0.5284974093264249,0.0973597359735973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002206343744307,0.0044465152082974,0.0064377464845848,0.0085137041208763,0.0107085526182106,0.0129291490768526,0.0151672574664873,0.0172186916650515,0.019389902539689,0.0216350580003682,0.0236500327761389,0.0256120952273496,0.0277909055417428,0.0298012904288051,0.031550294881841,0.0338039515404397,0.0359452440324065,0.0381186373908896,0.0401765775123344,0.042027129725059,0.0560945585044233,0.0705690478928605,0.0842058925258623,0.0963670565486511,0.1087002339452441,0.1242788004311346,0.1362903909761682,0.1474799480884198,0.158551037184921,0.1672473867595819,0.1795200310074181,0.1910000540862134,0.2013005371783997,0.2103806606869394,0.2190114487010127,0.229008056562164,0.2379193357587661,0.246172708968403,0.253993284022326,0.26032825940052,0.2663905503430244,0.271759351343762,0.2762714070988129,0.2801811950243271,0.2843586347674998,0.2882985015772871,0.2916750025007502,0.2948682103550822,0.2982621860483171,0.3017461950357416,0.2988995910460611,0.2955872854453255,0.2932345623480131,0.2903909358242518,0.2878911403287728,0.2837361261660127,0.2788420537279489,0.279705038918476,0.2798730873547925,0.2794303966880208,0.2810815868263473,0.2824731691919191,0.2831491712707182,0.2833749220212102,0.2830514159758493,0.2854207309142931,0.287625703085052,0.2916928096373447,0.2950068231918542,0.2977062948144039,0.3018885014265658,0.3030527485318237,0.3076682316118936,0.3114467891301047,0.3123839584106944,0.3161207599953374,0.3194549583648751,0.3225286893497081,0.323553833379463,0.3296960249415432,0.0,2.1904622190855103,52.99295998647269,146.0169640151084,194.30559745942628,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95868,47713,453.2690783160179,4888,49.72462135436225,3861,39.74214544999374,1445,14.728585137897944,77.41454581429173,79.70108641307797,63.37712166936033,65.06702561001681,77.23135093831914,79.52237216020153,63.308030975232775,65.00197878717273,0.183194875972589,178.71425287644627,0.0690906941275528,65.04682284408148,243.49182,170.59689320577766,253986.54399799724,177949.77803414868,485.1523,323.4429075858466,505536.352067426,336857.1343783605,470.24024,230.12290094063877,487325.70826553175,237551.64588495385,2181.74336,1028.3216059180572,2248850.210706388,1045714.9058268212,874.33082,395.4405595644872,901310.228647724,401779.3524058988,1393.59694,587.9777449937651,1423133.2665748736,586844.5875307616,0.38081,100000,0,1106781,11544.842908999875,0,0.0,0,0.0,41667,434.0864522051154,0,0.0,42425,439.31238786665,1106699,0,39715,0,0,9673,0,0,97,1.0118079025326492,0,0.0,1,0.0104310093044603,0,0.0,0.04888,0.128357973792705,0.2956219312602291,0.01445,0.3592004703115814,0.6407995296884186,23.391459310125683,4.0684472915860255,0.3069153069153069,0.2893032893032893,0.2113442113442113,0.1924371924371924,11.351411822410022,6.264258847186453,15.24999046348401,11511.224898068967,44.19953150677058,13.745362468866688,13.393552887957142,9.109979626393992,7.950636523552762,0.5936285936285937,0.7976723366159355,0.69957805907173,0.5906862745098039,0.1211305518169582,0.7754927163667523,0.9256198347107438,0.8854489164086687,0.7596153846153846,0.0855263157894736,0.5148478099480327,0.6998420221169036,0.6299303944315545,0.5328947368421053,0.1302876480541455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890266740901,0.0046400891545514,0.0070069055031079,0.0090857409700931,0.0113426161195243,0.0135430763438781,0.0158720456397718,0.0177995838263495,0.0200008171937566,0.0222567711316586,0.0246243354809632,0.0265978725804962,0.0287804527192955,0.0310952826984241,0.0333017156054107,0.0354265647593472,0.0374420625724217,0.0394524125352346,0.0415118234475886,0.0434787131133046,0.057626941924721,0.0712180746561886,0.0850522213725264,0.0980355099169475,0.1107987153161691,0.1259544806463537,0.1369568441346581,0.1471801194702493,0.1572708844553504,0.1660686937057544,0.1783336022806734,0.1894022121071239,0.2001629903292404,0.2096895794407841,0.2187839961319956,0.2281573269900979,0.2369310010368239,0.2443620428113939,0.2518227070175637,0.2582698074765927,0.2634810155852564,0.2691849185386036,0.2750091630310124,0.2794816828540976,0.2835356969402622,0.2876690395842057,0.2912055620162309,0.2949206833435021,0.2986390770067463,0.3026050253907538,0.3001653914937676,0.2977449391600516,0.2948930548919306,0.292236982393453,0.2889194952905634,0.2860847941171983,0.2828717270063333,0.2826690623979092,0.2828135097445665,0.2819293357704389,0.2831193002047273,0.2838344757153799,0.284796573875803,0.2854196695864286,0.2872482580891476,0.288005164622337,0.2901770610127439,0.2955151665529433,0.2987080641800375,0.3038949809377825,0.30516537270565,0.3115062761506276,0.3140317303537255,0.3169097945817207,0.3185253456221198,0.3256490860402841,0.3333333333333333,0.3318610720738807,0.3355923014367037,0.3385826771653543,0.0,2.1002226631342675,50.79461710700877,139.88527712165802,198.09142650851567,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95702,47738,453.89856011368624,4929,50.10344611397881,3971,40.82464316315229,1499,15.224342229002527,77.36002699221102,79.73179067614605,63.33690834044432,65.08847319176743,77.16644798855982,79.5417728987555,63.26308135984751,65.01854740149099,0.1935790036511946,190.01777739055115,0.073826980596813,69.92579027644297,243.9965,170.83743924645296,254953.98215293305,178509.37670474473,485.94889,323.4827243415262,507123.2471630687,337362.61195517227,466.44558,227.775793445882,482783.5990888383,234574.5276534848,2252.52888,1076.5723804728532,2318208.02073102,1089556.6165258123,912.2822,419.5924192492681,936241.0294455704,421597.3398101396,1454.322,627.1966935089222,1479405.5296650017,622372.5519235564,0.3798,100000,0,1109075,11588.817370587867,0,0.0,0,0.0,41794,436.0201458694698,0,0.0,42237,436.77248124386114,1104122,0,39653,0,0,9664,0,0,91,0.9508683204112768,0,0.0,1,0.0104491024221019,0,0.0,0.04929,0.129778830963665,0.3041184824508013,0.01499,0.3548951048951049,0.6451048951048951,23.29094915500185,4.046927905883322,0.3099974817426341,0.2848149080836061,0.1999496348526819,0.2052379753210778,11.817190637223272,6.497533971173596,16.125742594884063,11529.369320845117,45.65723049500432,14.0158152236092,13.951808925038607,8.75548292902401,8.934123417332506,0.5832284059430873,0.8134394341290893,0.6953696181965882,0.5717884130982368,0.105521472392638,0.748780487804878,0.91701244813278,0.8954802259887006,0.7157894736842105,0.1274509803921568,0.5089383436701933,0.736517719568567,0.6145952109464082,0.5264900662251656,0.0981996726677577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814901094894,0.0047846404930612,0.0070121672772292,0.009396777667161,0.011819032507425,0.013920003258523,0.016177370030581,0.018279613790851,0.0206286736519294,0.0227584512377403,0.0252414443601468,0.0274834709046856,0.0292974373740282,0.0314971984179301,0.0335224927775484,0.0357936745897995,0.0379475385380407,0.0401282942879978,0.042052818256519,0.0440155888543859,0.0594962090356538,0.0728452561620179,0.0858869318003,0.0984465222924576,0.1108592514496573,0.1265725098843478,0.1376303478417685,0.1481934762943649,0.1577896209588704,0.1669509251810136,0.179141619804796,0.1908801696712619,0.2020890396069736,0.2115723077932157,0.2198724293412515,0.2291752040669406,0.2382020215543209,0.2457689063817824,0.2530411418594896,0.2601831711505438,0.26567233206151,0.2716055153073148,0.2763150116456414,0.280772315390048,0.2837513048967007,0.2875486285517309,0.2900091292222653,0.2930355464085169,0.2959744475048816,0.2995782814971007,0.2974238245779242,0.2949063505596964,0.2924352944489818,0.2895687090158015,0.2866071826239292,0.2834189445361707,0.2797051581539239,0.2798430603236881,0.2814494579000221,0.2818170508468551,0.2820469767355086,0.2824552087635455,0.2828343770154159,0.28496581120682,0.2862293751044676,0.2878038677608926,0.287915262397689,0.2925310554147501,0.2967980725583994,0.3017261857629266,0.3057246706042708,0.3100803892532262,0.3151923196808179,0.3184353331323485,0.3227807090622975,0.3252801120448179,0.3331829121540313,0.3363926576217079,0.3322466720999728,0.3339644074214313,0.0,2.559311842096216,53.12460733731952,144.39387540141377,199.9835405466928,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95751,48231,459.4834518699544,4835,49.19008678760535,3835,39.46695073680692,1460,14.87190734300425,77.33346816806463,79.69546248318211,63.32120940122799,65.07006344420645,77.14668229106776,79.51200399914777,63.25127065160073,65.00363248761553,0.1867858769968648,183.45848403434672,0.0699387496272621,66.43095659092069,243.86692,170.8171484858975,254688.64032751616,178397.24753360017,485.5389,323.1500606044568,506500.5065221251,336905.5786409091,469.98491,229.32232151117296,486737.6215392007,236351.09055687216,2191.2608,1037.2705126686894,2257529.341730112,1052330.1403313694,873.67638,395.04992046231337,897415.6510114777,397557.43858679984,1407.69476,596.429889871549,1436498.4804336247,595039.0641906719,0.38266,100000,0,1108486,11576.756378523462,0,0.0,0,0.0,41738,435.3061586824159,0,0.0,42443,439.180791845516,1105801,0,39599,0,0,9689,0,0,88,0.9190504537811616,0,0.0,0,0.0,0,0.0,0.04835,0.1263523754769246,0.3019648397104447,0.0146,0.3705392545598731,0.6294607454401269,23.083779763803616,4.089568495607539,0.3170795306388527,0.2829204693611473,0.2041720990873533,0.1958279009126466,11.4112593693188,6.300113206849996,15.515626505046166,11606.108687947944,44.35152806660123,13.54866335384897,13.83822211465451,8.797900099925524,8.166742498172221,0.603129074315515,0.8055299539170507,0.7236842105263158,0.5951468710089399,0.1238348868175765,0.7726879861711322,0.90625,0.8967551622418879,0.678391959798995,0.1438848920863309,0.5298730395817774,0.7256198347107438,0.6567844925883695,0.5667808219178082,0.119281045751634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784284918182,0.0044619316107573,0.0068712827071026,0.0091954723729399,0.0115640446695551,0.0139803887627406,0.0157811034539004,0.0179931007736114,0.0200932095989534,0.0221407879786678,0.0245327701629025,0.0266413428468764,0.0288144133767983,0.0309059638932657,0.0330148773290964,0.0349974160206718,0.0370274495998011,0.0391910681304086,0.0412833068230255,0.0433161485184606,0.0575254955585014,0.0714495028780743,0.0848949698864709,0.0971982667956754,0.1097261328524576,0.1256780906658771,0.137274666044202,0.1482778440054496,0.1588251001335113,0.1675603792201107,0.1800945825119305,0.1917142733489137,0.2024665310872095,0.2109632189690811,0.2201201135138702,0.2296100272383019,0.2392401107241718,0.2477187060478199,0.2556756940741329,0.2624705262916924,0.2686905353695333,0.2746846836316029,0.2795625184747266,0.283928742457619,0.2882348661233993,0.2918470241023118,0.2948301698301698,0.2987890020056361,0.3017314898565706,0.3053246017419261,0.3019083610151028,0.2990514365725424,0.2971788243228054,0.2946512265116883,0.2922207890406084,0.2882359239487893,0.283788269136544,0.2834324470437902,0.2827766126144559,0.2838179744850688,0.2845882287016456,0.2866484154964253,0.2863336042852081,0.2870493991989319,0.2884836576248442,0.2909871244635193,0.2892009740075882,0.2935380958338546,0.2974975534740668,0.3016029301721082,0.3048934633441675,0.3089902451885051,0.3109984984984985,0.3133434420015163,0.3182924545965175,0.3225270157938487,0.320561746298275,0.3225937183383991,0.3259300388672959,0.3315528424265547,0.0,2.2768312968357423,50.27125602329223,148.8121892753906,189.17121699701912,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95809,47781,455.5417549499525,4861,49.61955557411099,3911,40.351115239695645,1470,15.02990324499786,77.34149214859087,79.68047947546705,63.33904717832892,65.07240939875992,77.1589116031206,79.49982721486349,63.27117847180163,65.00713662824634,0.1825805454702731,180.65226060356565,0.0678687065272853,65.27277051357316,243.95602,170.86500249532145,254627.4567107474,178339.19829590272,487.66041,324.8456647245522,508538.8429061988,338602.04649307707,467.42558,228.1915558140269,485052.83428487927,235975.02640925825,2212.58312,1046.4063772193258,2283409.157803546,1066220.018181305,897.09205,405.193249341936,925112.035403772,411695.96733285615,1425.14722,600.885397824037,1458302.7481760588,602766.783630308,0.38153,100000,0,1108891,11573.975305033977,0,0.0,0,0.0,41979,437.6728699808995,0,0.0,42361,439.3532966631527,1105224,0,39680,0,0,9574,0,0,76,0.7828074606769719,0,0.0,1,0.0104374328090262,0,0.0,0.04861,0.1274080675176264,0.3024069121579922,0.0147,0.3585389930898321,0.6414610069101678,23.057194659043976,4.031890029325572,0.3150089491178727,0.2830478138583482,0.2037841984147277,0.1981590386090514,11.562616680313807,6.342901598624858,15.71764859988719,11519.428745240124,44.953908621525066,13.62341019382237,14.044530910691115,8.937630718200325,8.348336798811259,0.5975453848120685,0.8030713640469738,0.7069805194805194,0.6135508155583438,0.1135483870967742,0.7846808510638298,0.9090909090909092,0.8719346049046321,0.784688995215311,0.1313868613138686,0.5171783625730995,0.7271317829457364,0.6369942196531792,0.5527210884353742,0.109717868338558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019956035941124,0.0044605293837373,0.0067075955147394,0.0087794171442507,0.0108561835478455,0.0130384736836744,0.015196638381201,0.0173901500066374,0.019541275960447,0.0215853121576096,0.0237775430897476,0.02589800989916,0.0280389212318199,0.0301837811109279,0.0324095092657559,0.0343676355066771,0.0365304368534951,0.0385369446375037,0.0405037511170223,0.0424109931292941,0.0566754309085597,0.0705547771899374,0.084356792555644,0.0971911352101131,0.109379281273053,0.1249841457743203,0.1364575935210998,0.1478244226106928,0.157352172196314,0.1670560246902996,0.1789477082683139,0.1897854401988866,0.2006082989354768,0.2102117523655514,0.2184504441122153,0.2277808522412839,0.2372265620647002,0.2448956684738076,0.2530676930043015,0.2595280269698874,0.265032430810424,0.2712548717589675,0.2765927290766069,0.2812242115460514,0.2856831183942597,0.2900600039346842,0.2940970878633929,0.2981430274740607,0.3014453477868112,0.3035305870291017,0.3020623539837267,0.2990931167423546,0.2951766590774939,0.2924259024333986,0.2888832871187295,0.2856401093446954,0.2819257317053908,0.2825830548456851,0.2822532521780642,0.2835533700358116,0.2835368704531428,0.2846939983427376,0.2856007695203044,0.2861065226126166,0.2877350560772352,0.2889895125822989,0.2906605012273791,0.2953398915373944,0.298533703716727,0.2999166898083865,0.3027061620040226,0.3064687732737525,0.3091689820661783,0.3146403125718225,0.3186533383628819,0.3232395202470015,0.3227603280210429,0.3231494771375846,0.3297192104531554,0.3407969639468691,0.0,1.813318461580271,51.325941493263706,144.50523814286524,201.3682935098057,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95713,47765,454.60909176391925,4921,50.34843751632485,3877,40.03635869735564,1489,15.274832049982765,77.3419109081298,79.71166612761274,63.33255108723839,65.0813009384104,77.15773780009008,79.52832069814932,63.26374980870314,65.01453732162504,0.1841731080397295,183.34542946342933,0.0688012785352469,66.76361678535159,243.06898,170.2694931370754,253956.07702193016,177895.88993874958,485.11891,321.958746046244,506398.76505803806,335930.6322508374,462.53375,224.931418366838,480301.3592719903,232720.0898162085,2239.62972,1046.907222470419,2312957.696446669,1066812.9746956197,877.45778,393.1109984989324,904366.5959691996,398325.84758489655,1447.10676,606.8342941210742,1485175.242652513,611472.1536323598,0.38102,100000,0,1104859,11543.458046451373,0,0.0,0,0.0,41749,435.7088378799119,0,0.0,41753,433.2431331167135,1111547,0,39873,0,0,9621,0,0,91,0.9507590400468068,0,0.0,0,0.0,0,0.0,0.04921,0.1291533252847619,0.3025807762649868,0.01489,0.3616604660270217,0.6383395339729783,23.591783235439472,4.131280122958222,0.3136445705442352,0.2667010575187,0.2127933969564096,0.2068609749806551,11.261739965313636,6.069610154348701,15.802580765925336,11536.159078699968,44.35094055163935,12.776512524854375,13.773015389810704,9.101093071464282,8.700319565509979,0.5821511477946866,0.8133462282398453,0.6998355263157895,0.5721212121212121,0.1159600997506234,0.7553571428571428,0.9039812646370023,0.8757763975155279,0.7345971563981043,0.14375,0.5117881755531375,0.7495881383855024,0.6364653243847874,0.5162866449511401,0.1090342679127725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0045403871490828,0.0068878068573747,0.0091106687251157,0.0112661162402895,0.0135008552577991,0.0157802990917153,0.0180758553115048,0.0204108748977923,0.02244465596119,0.0246130189646335,0.0267894731437842,0.0287935502447451,0.0310413747630429,0.0330206688749239,0.0351464781161487,0.0373132009817628,0.0394765517169809,0.0414140889004419,0.0435593626577463,0.0587565665110547,0.0718913883160792,0.0859004490703823,0.098386519973915,0.1101008396270199,0.1252287996614294,0.1361432617943794,0.1471868845478256,0.1572728826596017,0.166747117189595,0.1787910442939143,0.1900299728404947,0.2012484231589021,0.2106108973237712,0.2190358902181562,0.2291526023971049,0.2380936454849498,0.2456372973155192,0.2532994693636899,0.2596126345654437,0.2653807012674623,0.2706929627550065,0.2758861388481378,0.2804249916151597,0.284524315463542,0.2886172349628461,0.2924521216672925,0.2965091149474969,0.3003777197112772,0.3030817634901201,0.3001572770899706,0.2971923372488747,0.2946114004182867,0.2912864503871729,0.2893447597057561,0.2857317147562984,0.2820205776230167,0.2813113145846959,0.2807919511074037,0.2810636669455173,0.2831108206516665,0.2845920617420066,0.2847971560016729,0.2854816037841094,0.287871886462254,0.2887117297255187,0.2907138596142374,0.2960167846182752,0.3003256416541195,0.3052727488808778,0.3086123318080913,0.3104633939906898,0.313071813510465,0.316280834914611,0.320859125867567,0.3211290894059289,0.3193979933110368,0.3253208392748014,0.3369354391798282,0.3321865443425076,0.0,1.811672079775339,49.17938391560612,147.45350928337535,198.17833314169624,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95714,47864,456.5998704473745,4854,49.5329836805483,3833,39.53444637148171,1494,15.27467246170884,77.33810060160408,79.72071783526815,63.31256206328344,65.07487502121069,77.14863233929582,79.53414386922931,63.24183938711183,65.00758912180362,0.1894682623082673,186.5739660388357,0.0707226761716057,67.28589940706797,242.12782,169.66722909445434,252970.11931378895,177264.79835181305,486.67487,323.6817750893708,507946.3610339136,337654.55950996804,464.61497,226.2189195672236,482402.5220970809,234044.23586233336,2189.03788,1030.422392106846,2260043.253860459,1049545.8471141586,893.18825,399.162428614437,921565.047955367,405417.1266632228,1452.4095,613.9738975514202,1486800.154627327,614705.6974118245,0.37954,100000,0,1100581,11498.641786990407,0,0.0,0,0.0,41845,436.6445869987672,0,0.0,41964,435.3804041206093,1110968,0,39905,0,0,9787,0,0,94,0.9820924838581608,0,0.0,1,0.0104477923814697,0,0.0,0.04854,0.1278916583232333,0.30778739184178,0.01494,0.3673065505640214,0.6326934494359786,23.30723446016767,4.13233376531234,0.3034176884946517,0.2812418471171406,0.2019306026611009,0.2134098617271067,11.14615115699112,5.982762069452677,16.012218746829625,11484.905625734684,44.01457098238935,13.263554216348748,13.23135252230756,8.675558216438311,8.844106027294727,0.5744847378032872,0.8014842300556586,0.7007738607050731,0.5594315245478036,0.1100244498777506,0.7575236457437661,0.9336283185840708,0.8542857142857143,0.696969696969697,0.1349693251533742,0.4947565543071161,0.7060702875399361,0.6346863468634686,0.5121527777777778,0.1038167938931297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024933611724878,0.004828565631974,0.0069851970678416,0.0091570624225054,0.0114060703493045,0.0135466851363326,0.0155131264916467,0.017720898403587,0.0197985376080175,0.0219833102953975,0.0241801513566726,0.0259585566713901,0.0280596769384208,0.0300190515421451,0.0320417595114302,0.0342261904761904,0.0362486151807253,0.0383661697116831,0.0404104462095063,0.0426063857492577,0.0574272108275199,0.0707003035695593,0.0838999412406614,0.0964060708688747,0.1086679111167357,0.1241153882771095,0.1354675098680022,0.146539882657353,0.1569352425731994,0.1662626045912894,0.1788222873394811,0.1901973306777221,0.200402677259618,0.2095600704587477,0.2184931280742102,0.2280211865345832,0.236098083880477,0.2447955348502239,0.2521203038250622,0.2592337928742508,0.265426381717567,0.2707599396074484,0.2765524181613686,0.2807227760736196,0.2847495506000097,0.2886280119367647,0.2920877001865695,0.2961529648394735,0.2989371755537431,0.301532253810855,0.2987267911641726,0.296612382326668,0.2937701320805143,0.2905673441714871,0.2878542930453999,0.2845237549123048,0.2811236735725114,0.2811691924977906,0.2815497589150325,0.2808522757614055,0.2819966746996954,0.2821234548460751,0.2833639552363454,0.2846661611881718,0.286972336555949,0.287990291011439,0.2894551200654646,0.2931587969456132,0.2973226377747682,0.3014337198370417,0.3041375604513702,0.3084068256536033,0.3126776226368467,0.3169150521609538,0.3183072677092916,0.3212832732767639,0.3260286225402504,0.3245424129108443,0.3279038718291054,0.3381913303437967,0.0,1.9810564394663583,50.81266276053605,141.4948543870686,193.66740557490988,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95666,47576,453.32720088641736,4840,49.59964877804027,3823,39.543829573725255,1411,14.498358873581,77.27782633283482,79.68833727656391,63.2892740309558,65.07204811367792,77.09892633757075,79.50928187813598,63.22178897119867,65.00593680004249,0.178899995264075,179.05539842793416,0.067485059757125,66.11131363543166,243.925,170.82568928907662,254975.6444295779,178564.68263445384,485.82322,323.25214539586494,507430.5813977798,337494.47598505736,464.65185,226.1206592874163,482813.0056655447,234096.28066273587,2162.39264,1024.1112461877003,2239503.3136119414,1049653.8437769958,880.87771,400.74610840232856,912316.8105701084,410433.5902016686,1369.31548,584.5662641157116,1409050.4463445735,592669.6074167447,0.38043,100000,0,1108750,11589.802019526269,0,0.0,0,0.0,41795,436.4664562122384,0,0.0,42028,436.4246440741748,1102566,0,39664,0,0,9615,0,0,100,1.0453034515919972,0,0.0,0,0.0,0,0.0,0.0484,0.127224456536025,0.2915289256198347,0.01411,0.3524752475247524,0.6475247524752475,23.104979653356448,4.001917070447738,0.3057808004185194,0.2893015956055453,0.2058592728223908,0.1990583311535443,11.332379348749296,6.248632960844362,15.12686140319517,11512.587158382164,44.1668920909698,13.706631734460174,13.305632164312383,8.794198535912074,8.360429656285163,0.5916819251896417,0.8137432188065099,0.688622754491018,0.579415501905972,0.1327201051248357,0.7588898525585429,0.9216101694915254,0.8616352201257862,0.7362637362637363,0.1767955801104972,0.5194756554307116,0.7334384858044164,0.6239717978848414,0.5322314049586777,0.1189655172413793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0044418302774622,0.0067508578157675,0.0089636879173145,0.0113535785136578,0.013661230020069,0.0159408465068842,0.0179456014380994,0.0201714367545672,0.0224439413650751,0.0246666666666666,0.0267782856555903,0.0287595822400576,0.0310635184020942,0.033140273174962,0.0351860662350288,0.0371893975504113,0.0391236631710102,0.0414459787098989,0.0431858702338626,0.0576390557895066,0.0721227353649596,0.0858216396057893,0.098646828570226,0.1110091162319574,0.1259922524925382,0.1378695208970438,0.1486129458388375,0.1582696112507352,0.1674002662429682,0.1788404141839692,0.1898235357800151,0.2005267568538249,0.2101318452869413,0.2189089227924179,0.2281722288702743,0.2364643104333653,0.2443884382137512,0.2526069738678528,0.2590409704737926,0.2647106425284964,0.2697561374604176,0.2752810981449295,0.2797527788424683,0.2840264707668022,0.2882759640625578,0.2922203037809974,0.2955675675675676,0.2993123275962547,0.3022706893823514,0.2992377309702095,0.296717676065068,0.2937402168854794,0.2902106495872309,0.2883414605137964,0.2848783775503952,0.2817211453186368,0.2814567905288911,0.2817815424550857,0.2824954508152852,0.2831974264980923,0.2826022612916593,0.283314529271656,0.2835069908273221,0.2858784382256481,0.2863954392329619,0.2870399273532166,0.2911555234838264,0.2961518186610437,0.3011823520076178,0.3038325311052584,0.3079968329374505,0.313484128967758,0.3176363360170135,0.319248387398336,0.3212889468072503,0.3227335269836416,0.3199755899104963,0.3130170987313844,0.3079545454545455,0.0,1.6629084654610462,50.62886967361227,147.51851270298505,189.6974465779961,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95818,47752,455.6242042205014,4974,50.86726919785426,3949,40.62910935314868,1483,15.111983134692856,77.39792083527668,79.70341492479203,63.37134666233784,65.0723268581715,77.2114879594691,79.51995209832535,63.30143002157846,65.00627355272499,0.1864328758075828,183.46282646668044,0.0699166407593736,66.05330544650201,244.02246,170.85105601073136,254672.8798346866,178307.89205653567,487.43702,323.6940792911953,508163.6122649189,337274.0709378148,462.87332,225.1494710820074,479639.6397336617,232328.71922896372,2233.95944,1057.5365162356634,2299846.0414535888,1072077.8520065786,902.40228,410.3739706070938,928129.307645745,414626.3025810321,1436.86114,612.1332505007803,1464895.51023816,608102.5192761741,0.3814,100000,0,1109193,11576.039992485754,0,0.0,0,0.0,41964,437.36041244860047,0,0.0,41949,434.3129683358033,1108216,0,39767,0,0,9572,0,0,84,0.876662005051243,0,0.0,2,0.0208729048821724,0,0.0,0.04974,0.1304142632406922,0.2981503819863289,0.01483,0.3628472222222222,0.6371527777777778,23.201730819076744,3.964405619590587,0.305646999240314,0.2884274499873385,0.2079007343631299,0.1980248164092175,11.305635218550137,6.377895610246727,15.938902852805668,11556.989887347876,45.66159740340903,14.09885843008555,13.860589136501986,9.214401304861724,8.487748531959772,0.5917953912382882,0.8068481123792801,0.6909693454846727,0.587088915956151,0.1304347826086956,0.769814502529511,0.9096509240246408,0.8600583090379009,0.7741935483870968,0.1823529411764705,0.5153818313427434,0.7300613496932515,0.6238425925925926,0.5322834645669291,0.1160130718954248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766420992953,0.0044787159663184,0.0066940514224859,0.0087629337042941,0.0109283506831489,0.0129551606928415,0.0150598112938395,0.0169956643713338,0.0192290008480377,0.0217309010548285,0.0236975564776394,0.0257609799636822,0.0279144791591752,0.030131206586056,0.0319415384298244,0.0340099531253226,0.0360120833419544,0.0380900064260691,0.040124193933604,0.0419216518879313,0.0573330134256892,0.0715234558861984,0.0847061290829969,0.0978730562593967,0.1103954969009571,0.1263875673961306,0.1379807641326363,0.1485987376398335,0.1589641689635279,0.1683076989081236,0.180449508383859,0.1918683886040625,0.2029264368565806,0.2122351706495835,0.2206975414522584,0.231008489866398,0.2394149517290584,0.2472041451708984,0.2538419692642459,0.2603618646781646,0.2666350853273868,0.2720170952147411,0.2774908708446094,0.2812739188672024,0.2859894602943849,0.289933628318584,0.2925773453093812,0.2958534111082931,0.2993427424040907,0.3034979559107699,0.3013911598359557,0.2982944037262826,0.2964105872946853,0.2932894206983835,0.2902209601561806,0.2862580890749905,0.2827010861010546,0.2825561650992685,0.2822055649040504,0.2830409980274031,0.2824000745364763,0.2832628992628992,0.2835503698301906,0.2850841038208755,0.2866492460384053,0.2894975983383097,0.2905990206126865,0.2955359949701351,0.3003884786336751,0.3049166073828155,0.3102241214711096,0.3154989384288747,0.3190056639395846,0.321057027868479,0.3255639097744361,0.3271954674220963,0.3321156773211567,0.3376649340263894,0.3362115488397194,0.3360902255639098,0.0,2.307922293725253,51.59493667625178,154.58667561095908,193.7081101103757,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95552,47494,453.9831714668453,5015,51.27051239115874,4007,41.3282819825854,1500,15.290103817816476,77.19945181010942,79.67007833213682,63.224607941291474,65.05375104801787,77.0060943963508,79.48181883118312,63.151535083687,64.98551407564983,0.1933574137586191,188.2595009537056,0.0730728576044725,68.23697236804094,242.17666,169.72906686037493,253450.12139986604,177630.0515534734,483.27118,321.641609717959,505180.3101975888,336026.79139940446,466.33897,227.87879256540745,484691.52921969193,235868.31317846107,2273.14268,1078.1007432068009,2346575.602813128,1095981.77901478,921.67387,420.18488383841327,949522.207803081,424737.5686821203,1458.18106,619.5821210202021,1489053.6043201608,616190.8959144203,0.37771,100000,0,1100803,11520.460063630271,0,0.0,0,0.0,41622,434.9568821165439,0,0.0,42272,438.98610180843934,1105361,0,39652,0,0,9567,0,0,71,0.7430509042196919,0,0.0,0,0.0,0,0.0,0.05015,0.1327738211855656,0.2991026919242273,0.015,0.367117546199276,0.6328824538007239,23.04069925883607,3.957017585389192,0.3107062640379336,0.2874968804591964,0.1976541053156975,0.2041427501871724,11.415139577994266,6.294943071649713,15.9549817941553,11453.35891171888,46.2469231511885,14.337959975827198,14.301105278979003,8.800326489451932,8.807531406930366,0.5924631894185176,0.8020833333333334,0.7092369477911646,0.6123737373737373,0.1002444987775061,0.7637860082304527,0.9227799227799228,0.8720238095238095,0.7172774869109948,0.1176470588235294,0.5179083094555874,0.7034700315457413,0.6490649064906491,0.5790349417637272,0.095679012345679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024024084905373,0.0044641951259105,0.0067633438947111,0.0088254433056775,0.0112289774809626,0.0134967073742583,0.0156248405368168,0.0178111587982832,0.0200573065902578,0.0222793838838274,0.0244721147233029,0.0263950726455739,0.0284037075180226,0.03023488513632,0.0320363767891283,0.034367106952093,0.0362680328973978,0.0380801928953002,0.0401870813845689,0.0422704305340961,0.0563720618847871,0.0704570955192265,0.0846727144674186,0.0973972602739726,0.1098192580065532,0.1250185534657874,0.1362538696396847,0.1471244250450892,0.1569547563183664,0.165834982362557,0.1782169663588746,0.1895356030431621,0.2005127365952108,0.2089768339768339,0.2178471317897896,0.2269935243088338,0.2350782176666741,0.2439406932659324,0.2510667834913121,0.2573591059963936,0.2632525020584722,0.2687576947880635,0.2741969919817811,0.2790206179377259,0.2842394877163935,0.2879658106989785,0.2923642661713396,0.2947776417788658,0.2980095500077853,0.3010813812067051,0.2986657312844866,0.2954917976336414,0.2932307518881749,0.2904195511106615,0.2878513011152416,0.2832623287461305,0.2791246377729569,0.2797135018809653,0.280242245906968,0.2803332320288896,0.2812382739212007,0.281972661272774,0.2827209741759395,0.2846308724832215,0.2862061493270411,0.2874856426856009,0.2885586330832644,0.2929327844640668,0.2963977248788708,0.2986006798956439,0.3047206426572795,0.3049813266003892,0.3093977704427975,0.3107301970852525,0.3159899656229675,0.3185934376102552,0.3176683235427022,0.3220372572334522,0.3207138994050838,0.3185773741959894,0.0,2.3381402650785605,52.90453571495508,150.162422928554,202.32530523379825,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95682,47834,455.4984218557304,5028,51.50394013503062,4017,41.39754603791727,1500,15.30068351414059,77.33990302576841,79.72890240391389,63.32261558699434,65.08813215058599,77.14336901891924,79.5360590686968,63.24800029044319,65.01744058620164,0.1965340068491627,192.8433352170913,0.0746152965511512,70.69156438434732,243.09736,170.28348614318307,254068.01697288937,177968.15089900198,485.60143,323.10013489917225,506926.7782864071,337092.0182470812,463.71174,226.1932766912337,480973.9240400493,233589.74252444293,2274.55832,1067.689323168925,2346272.026086411,1084938.654259865,915.43377,419.1309349438859,941711.7430655712,423011.4284231993,1461.26946,630.6488640362768,1492853.2639367906,629186.5833326309,0.38164,100000,0,1104988,11548.546226040426,0,0.0,0,0.0,41693,435.1393156497565,0,0.0,42029,435.5364645387848,1109268,0,39818,0,0,9820,0,0,77,0.8047490646098534,0,0.0,1,0.0104512865533747,0,0.0,0.05028,0.1317471963106592,0.2983293556085918,0.015,0.3592380952380952,0.6407619047619048,23.462212659072733,3.9857686798125513,0.3134179736121483,0.2815533980582524,0.2046303211351755,0.2003983071944237,11.022375269818276,5.958557889729184,16.194358432793692,11618.76595214981,45.87659160964865,13.86517966931562,14.165318444833767,8.986433382373379,8.85966011312589,0.5758028379387603,0.8099027409372237,0.6783161239078633,0.5523114355231143,0.1105590062111801,0.7448630136986302,0.9492273730684326,0.8383233532934131,0.6683417085427136,0.1483516483516483,0.5064935064935064,0.7168141592920354,0.6205405405405405,0.5152487961476726,0.0995184590690208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0046829861639045,0.0070623332081866,0.0093446552634786,0.0117751136328971,0.0140780553350027,0.0162575936722795,0.0184126724912223,0.0205777723258096,0.0225388441933304,0.0246655389820083,0.0269457389804758,0.029285949325436,0.0311579424427826,0.033067404250049,0.0351327040188587,0.0372960372960372,0.0394108610811259,0.0414326134897848,0.0434166223639907,0.0578397576517288,0.071870517907432,0.0851990180238779,0.098024364072461,0.1101769117972846,0.1260248177807868,0.1379420096120182,0.1488770622671633,0.158830691673431,0.1681247989707301,0.1802918528889128,0.1913222246267041,0.2034384888917887,0.2128113178667483,0.221652377755522,0.2309191799483868,0.2388459350001673,0.2466782921752826,0.2533862733976177,0.2612370165935664,0.2671493505742473,0.2730142030510257,0.2780360290029925,0.2824519806485606,0.2873075009404997,0.2918657341279614,0.295509101820364,0.2998119106321328,0.3039966866846137,0.3059666059982591,0.3022125918548626,0.2995270047299527,0.2965575501583949,0.293691038587671,0.2914860129476748,0.2876306300800587,0.2841468805253852,0.2843414913644921,0.2831096824667925,0.2831489014014458,0.2844519015659955,0.2857339548789362,0.2877793747005769,0.2884508297137766,0.2893765872825722,0.2897387962818715,0.2911924157702024,0.2968093775465429,0.3004333845938767,0.3042827901117934,0.306935607598935,0.3082235108065366,0.3124687968047928,0.3168152288865387,0.3241834930678329,0.3280809031044214,0.3310491853205421,0.3279853777416734,0.3305578684429642,0.3363949483352468,0.0,2.3155658681828406,50.5434273975016,150.0282255746078,207.86518786649572,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95789,47853,455.7934627149255,4928,50.22497363997954,3892,40.09854993788431,1472,14.991282923926546,77.331780499572,79.67276365820062,63.32970022966426,65.0627216870778,77.14375068965673,79.48752502515968,63.25811241425709,64.99449949728755,0.1880298099152781,185.2386330409388,0.0715878154071703,68.22218979024797,243.96152,170.9744189278545,254686.13306329536,178490.4573212334,486.53176,324.13774466701744,507389.05302278965,337857.7659762583,465.99948,226.91544809044808,483286.1393270626,234418.95565767755,2216.93264,1049.565895352842,2285648.331228012,1067058.5360582548,894.11865,414.7724675757858,921704.4128240194,421333.7478642786,1444.31066,619.8742274082891,1472922.1726920628,618516.6812662415,0.38163,100000,0,1108916,11576.64241196797,0,0.0,0,0.0,41976,437.6598565597303,0,0.0,42143,436.7098518619048,1102768,0,39582,0,0,9522,0,0,84,0.8769274133773188,0,0.0,0,0.0,0,0.0,0.04928,0.1291303094620444,0.2987012987012987,0.01472,0.352211016291699,0.647788983708301,23.199421447599303,4.0720594945110085,0.3057553956834532,0.2859712230215827,0.197327852004111,0.210945529290853,11.325866498322704,6.036721608039591,15.875668839399184,11492.67181196629,44.76634707987625,13.70921445180592,13.515508858021796,8.515140580308344,9.02648318974019,0.5739979445015416,0.8086253369272237,0.7025210084033613,0.546875,0.0950060901339829,0.7523245984784447,0.9337606837606838,0.8550295857988166,0.6923076923076923,0.1593406593406593,0.4961240310077519,0.7178294573643411,0.642018779342723,0.4973821989528796,0.0766823161189358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486705495062,0.0045821337334252,0.0070017352126396,0.0092445853143159,0.0116145436053902,0.0140530962637094,0.0161803389001039,0.0182633018906447,0.0205168571486986,0.0227875313507703,0.0253823758559888,0.027178544659267,0.0291404892394064,0.0311193061249716,0.0330677455311068,0.0350253282332265,0.0368387257135755,0.0389151065705543,0.0407253455263431,0.0427742896115119,0.0568396447913514,0.0711289630861602,0.084512652787387,0.0971365523038932,0.1093198461619514,0.1247846991070956,0.1367524085084735,0.1471135544378635,0.1559648692200155,0.165147148627077,0.1773943555852151,0.1882855597620335,0.1991039290102983,0.2089526121810645,0.2183180737740998,0.2280381078985266,0.2378875266346121,0.2457183982367559,0.253965554383936,0.2607366878805915,0.265609285227102,0.2708988278191359,0.2769327214231643,0.2806210465784934,0.2850638628527026,0.289194784709043,0.2918465677992616,0.2957529449219994,0.2996152301493736,0.3018885354941734,0.2991750884794983,0.2963237718430597,0.2921713441654357,0.2889652583244289,0.2866346039662747,0.2837182253646144,0.2796177033719955,0.2793085350652758,0.2792425122092825,0.2790908928984913,0.2815971572844585,0.2827397368213695,0.283617354939885,0.2853225123185659,0.2850934063295394,0.2860560047840669,0.2868703503890056,0.2911756431496358,0.2963569239342435,0.2996055226824458,0.302876557191393,0.3045363223009411,0.3065835850956697,0.312310491206792,0.315504020946325,0.3223529411764705,0.3222272934732998,0.3233652312599681,0.3269074124355145,0.3292212798766384,0.0,2.067033932178509,51.621611517185,144.8388941630278,195.6815466475873,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95688,47442,453.0975670930524,4963,50.61240698938216,3898,40.14087450882033,1450,14.672686230248306,77.34192318165195,79.71721947842633,63.32298576779221,65.07494677847212,77.15052158527634,79.5323447455066,63.25020051276276,65.00766996028584,0.1914015963756128,184.87473291972375,0.0727852550294443,67.27681818628639,243.38358,170.4924480148717,254351.20391271636,178175.36996788697,482.28204,320.1731070277625,503422.53992141125,334008.7020047479,456.32049,222.0547536620608,474087.4090795084,229792.49214382836,2205.14636,1041.694786915796,2270581.7657386507,1054721.577343169,893.13501,410.1256718833165,915511.49569434,410782.3643816769,1405.75396,607.3227252689676,1424180.5451049244,595692.1205671551,0.38008,100000,0,1106289,11561.418359668924,0,0.0,0,0.0,41553,433.62804113368446,0,0.0,41284,428.67444193629296,1109642,0,39745,0,0,9443,0,0,73,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.04963,0.1305777731003999,0.2921619987910538,0.0145,0.3565351894818252,0.6434648105181748,23.52748201317125,3.984760403255566,0.3240123140071831,0.2739866598255515,0.2083119548486403,0.1936890713186249,11.297505144803138,6.268309360677517,15.452024161936995,11444.72869675756,44.60109983203584,13.111361705692085,14.285275750332604,8.926615391818238,8.27784698419291,0.5726013340174448,0.7827715355805244,0.669833729216152,0.5603448275862069,0.1258278145695364,0.7568042142230026,0.9172413793103448,0.8301369863013699,0.7514450867052023,0.180722891566265,0.4965567234505255,0.6903633491311216,0.6046770601336303,0.5086071987480438,0.1103565365025466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022680558508753,0.0046320227850923,0.0069184495369102,0.0092225811038657,0.011278004332218,0.0134898495245464,0.0158738250107048,0.0183492796095289,0.0205018610168105,0.0224952644243075,0.0244029980826215,0.0265141401901788,0.0282434739678686,0.0301172543120324,0.0323090103946241,0.0342071247608706,0.0360990263103376,0.0380826837445377,0.0401202150559998,0.0418069087688219,0.0565838678003635,0.0698938242131054,0.0834767822655134,0.09598324686668,0.1080285346446888,0.1231557333672022,0.1349508893018317,0.1452753808458506,0.1547499412003677,0.1645929727002394,0.1760925588466805,0.1877971902992753,0.1992358019181154,0.2085057018407862,0.2175047333891066,0.2264619202729952,0.2345651445796583,0.2420210071262116,0.2489393079977311,0.2555720994158744,0.262160973803573,0.2680244732747628,0.2734212270403333,0.2783204880796845,0.2833509455963269,0.2871467639015497,0.2916583241565722,0.2947616020343293,0.2977753606298396,0.3017127625884092,0.2994408891882789,0.296522278080022,0.2942900625669353,0.2915494380239218,0.2897301460351313,0.2859170622262244,0.2831179894931137,0.2836715640509066,0.2837238650704321,0.2841846898121798,0.2839964897212316,0.2849790992980519,0.2859886439545758,0.2867527370838629,0.2877718496542814,0.2875899932666908,0.2893300528831198,0.2943836342657561,0.2987315377932233,0.3018867924528302,0.3041072472895766,0.3097586568730325,0.3148148148148148,0.32,0.3231453181439289,0.3281123100127625,0.3336816960286652,0.3440647837250642,0.3419424266881894,0.3457875457875458,0.0,2.2752658176100766,49.3123897067305,147.11309957772824,199.4225176982316,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95744,47548,452.91610962566847,4962,50.69769385026738,3974,40.98429144385027,1465,14.925217245989304,77.32392886815877,79.68853417099041,63.31606620966248,65.06516137915352,77.13786543437713,79.50548870985979,63.24577367424553,64.99843670313281,0.1860634337816407,183.04546113061804,0.0702925354169536,66.72467602071208,242.42922,169.7716595981917,253205.42279411765,177318.10473574503,482.47949,322.0191719796857,503415.7127339572,335822.91901287367,463.32186,226.48346151397533,480958.30548128346,234161.59475166592,2269.25692,1069.546299069198,2341877.840909091,1088862.9042751486,900.13163,407.5097270009029,928604.4451871658,414223.528253581,1423.3662,608.5561007452595,1451625.2715574866,605841.003046927,0.37963,100000,0,1101951,11509.33739973262,0,0.0,0,0.0,41502,432.925300802139,0,0.0,41970,435.4110962566845,1111186,0,39928,0,0,9700,0,0,82,0.8460060160427807,0,0.0,0,0.0,0,0.0,0.04962,0.1307062139451571,0.2952438532849657,0.01465,0.3637243515292295,0.6362756484707704,22.89435990825329,4.02474415086786,0.3095118268746855,0.283844992450931,0.2070961248112732,0.1995470558631102,11.325951238577913,6.168629000300593,15.689465127704846,11467.585091914054,45.703826300658896,13.887290466365071,14.002876547261751,9.08246369162027,8.731195595411801,0.5845495722194263,0.7934397163120568,0.7195121951219512,0.5528554070473876,0.1109709962168978,0.7474662162162162,0.8888888888888888,0.8636363636363636,0.7653061224489796,0.1299435028248587,0.5154121863799284,0.7279521674140508,0.6617312072892938,0.4864433811802233,0.1055194805194805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024917195903856,0.0048160277403197,0.0070939980108388,0.0093478835172427,0.0117996500793424,0.0139816700610997,0.0164855331036029,0.0187001745485724,0.0208365283358382,0.0229753250742295,0.0249341275618483,0.0268177991334524,0.0287141843752891,0.0305814492455065,0.0328142896944556,0.0346691750307515,0.036739724892277,0.0387246100034251,0.0407520251229631,0.0426624716104431,0.0574829044213603,0.0709204276776933,0.0837003481397592,0.0957583277254374,0.1081867645198026,0.1242344429283153,0.1356286472148541,0.1461822673211452,0.1562182890225275,0.1661270610433328,0.1780055115397864,0.1893078428616226,0.2002913328477785,0.2095458818899359,0.2178273348068485,0.2270694007706275,0.2359412657323931,0.243412614477622,0.251007458027312,0.2577472055030094,0.2634914382371341,0.2693289911438077,0.2742551022826937,0.2784568693545098,0.2834502973765188,0.2877350928038478,0.2912496085186345,0.2948023994803673,0.2987001205272093,0.3010934446146532,0.2991201950930329,0.2956015523932729,0.2930990757439134,0.2911392405063291,0.289044289044289,0.2855134474327628,0.2811908069200656,0.2814595531713061,0.2813271368503481,0.2821820896583597,0.2824639600156655,0.2825273686697645,0.2839598840724756,0.2857428781106144,0.287275509960064,0.2868695246487999,0.2863367569249922,0.2902963102173777,0.2948843728100911,0.3001383125864453,0.3039517810205746,0.306568958245466,0.3076153557584094,0.3088768115942029,0.311113191648722,0.3106212424849699,0.3164291072768192,0.318928431755964,0.3228346456692913,0.3312173263629574,0.0,1.9886087101768155,51.77560192889917,150.14515635407204,201.2954293625134,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95796,47948,457.8792433922084,4757,48.415382688212446,3727,38.341893189694765,1412,14.35341767923504,77.4066300966336,79.7453090658493,63.35719594835807,65.08758508227254,77.22073696744548,79.56404888049278,63.28642587567069,65.02089147558446,0.1858931291881305,181.2601853565212,0.070770072687381,66.69360668807656,244.82612,171.4930734777397,255569.83590129024,179018.60128781974,484.47107,322.6390052080153,505188.5360557852,336255.6006829673,459.69112,223.93017659640097,476568.2074408117,231116.0043653503,2114.90184,997.489529276952,2177750.386237421,1011398.5039844584,851.44346,388.8952526813969,874745.469539438,391898.3701630511,1368.97958,591.0722858691726,1393576.6420309823,586188.070264483,0.38133,100000,0,1112846,11616.81072278592,0,0.0,0,0.0,41624,433.9220844294125,0,0.0,41630,431.3541275209821,1102296,0,39551,0,0,9637,0,0,87,0.887302183807257,0,0.0,1,0.0104388492212618,0,0.0,0.04757,0.1247475939474995,0.2968257305024175,0.01412,0.3481063658340048,0.6518936341659952,23.479180411411107,4.044742217574036,0.3101690367587872,0.2811913066809766,0.2057955460155621,0.202844110544674,11.516896319401562,6.2818448779384966,15.038351938695934,11443.102498264128,42.36748602048057,12.683369157036031,12.972208362667812,8.519127360644456,8.192781140132276,0.588677220284411,0.8101145038167938,0.7084775086505191,0.5788787483702738,0.1084656084656084,0.7511271415689811,0.9223529411764706,0.8434504792332268,0.7326732673267327,0.1715976331360946,0.5198624904507257,0.7335473515248796,0.6583629893238434,0.5238938053097345,0.090289608177172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0044513394577274,0.0065860910686922,0.0088800382024526,0.0108216962805504,0.0130852732123582,0.0151913704859199,0.0171693972337059,0.0194100331166441,0.0216852920708993,0.0238998093754483,0.0257452157405982,0.0278220294562011,0.0297817582870084,0.0318111534893309,0.0337560149521901,0.0359086300717965,0.0382003835588037,0.0399156389930703,0.0419980843709657,0.0563746204651453,0.0701071895424836,0.0841316423854941,0.0968219938205435,0.1084068232343985,0.1244518644533437,0.1358283782208231,0.1464036999627877,0.1569215338981242,0.1659078979786402,0.1787455208703231,0.1905771164722039,0.2009281297208003,0.2096106590946322,0.2181488602032408,0.2279280774550484,0.2362014163832041,0.2433258770500095,0.2505386098197074,0.256871810129769,0.263219958842979,0.2686964750966807,0.2743655842773692,0.2791179322646682,0.2832396605931123,0.2869527738439751,0.2906029943340296,0.2944152113678537,0.2973906518842417,0.3010440835266821,0.2982720568444851,0.294988939117053,0.2922533725330219,0.2889058759050393,0.2868529437909271,0.2838027524335541,0.28029098238045,0.2805349425099894,0.2805053601368401,0.2818136804131004,0.2827441280940249,0.2846733914406033,0.2859987554449284,0.2862614856636776,0.2873112141752884,0.2884897832976887,0.2908645727794664,0.2935372777760541,0.2981915188470067,0.3019310452662028,0.3064262971433696,0.3085633773417523,0.3117967107703722,0.314106863402638,0.3175942055560649,0.3174841315637622,0.3211480362537764,0.3179487179487179,0.3170731707317073,0.3227393113885736,0.0,2.1452651488284764,48.03628745472978,132.82034619764943,193.94823163267145,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95695,47879,456.74277652959927,4973,50.79680234077016,3936,40.61863211244057,1547,15.80019854746852,77.29491858535671,79.69735312682289,63.29396199958445,65.07417440123083,77.10171530446696,79.50733826497382,63.2204770160961,65.0043614182091,0.1932032808897474,190.0148618490647,0.0734849834883561,69.812983021734,242.82236,170.15421467282397,253746.13093683057,177808.88726978836,487.66199,324.7157655473718,509034.5263597889,338757.89283387,461.35472,225.45195066319525,478849.25022205967,233159.8352300888,2244.17336,1060.0573306917463,2317125.994043576,1079867.625909614,896.2378,410.0400363005447,923981.7649824964,415981.3999505345,1499.85042,635.9800785358811,1534607.931448874,637115.147394916,0.38244,100000,0,1103738,11533.915042583209,0,0.0,0,0.0,41980,438.1629134228539,0,0.0,41832,433.9202675165892,1107612,0,39679,0,0,9547,0,0,78,0.8046397408433043,0,0.0,0,0.0,0,0.0,0.04973,0.1300334693023742,0.3110798310878745,0.01547,0.3491021432709017,0.6508978567290983,23.27278191477295,4.170028430220667,0.3152947154471545,0.2713414634146341,0.2098577235772357,0.2035060975609756,11.542019438456272,6.2733545791430965,16.50651777290136,11550.216922133655,45.254245604715486,13.304237397757738,14.123117642468946,9.179458997527115,8.64743156696169,0.5746951219512195,0.799625468164794,0.6913779210314263,0.5605326876513317,0.1086142322097378,0.7601659751037344,0.8905263157894737,0.8657534246575342,0.7450980392156863,0.15527950310559,0.4928597583302819,0.7268128161888702,0.6187214611872146,0.5,0.096875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021896256348393,0.0042720732239439,0.006540395064236,0.0085201565756697,0.0107189755387481,0.0127811808832672,0.0149393852810318,0.017040926830265,0.0194275074681834,0.0216556203198147,0.0239829308823831,0.0259700235250608,0.0283082938876312,0.0306499984541023,0.0325770556782757,0.0344271280391325,0.0364448405214399,0.0386943386040137,0.0409141977363515,0.0429222126098331,0.0572425391453312,0.0712468459790813,0.0839236428129164,0.0964992581836547,0.1086832665119223,0.1244352270202207,0.1355072233013831,0.1463115975978534,0.1564510269068838,0.1655739991630632,0.1772424640710176,0.1889877088202198,0.2005023158718768,0.2106436698691674,0.2204308761588457,0.2300554737413218,0.238073455908604,0.2461180124223602,0.2542122712203097,0.2615682633563724,0.2679724942696395,0.2729676913535462,0.2778586561564227,0.2830815347721822,0.2872729481805479,0.2907666687226299,0.2942575943502541,0.2976260146052263,0.3018584860516548,0.305093678357796,0.3024812494959542,0.2996237710770583,0.2964093332020647,0.2938774921376842,0.291192001898659,0.2883759350190445,0.2837949042570027,0.2843343064256896,0.2841812536254137,0.2846540835622792,0.2850102130689804,0.2857255769838761,0.2859505170176246,0.2865786947105186,0.2870824910963519,0.2879028686068627,0.288880027344195,0.2937592261063476,0.2975004369865408,0.302888985495791,0.3059379401208487,0.3086713138994508,0.3148032479700187,0.3183775209607976,0.3202535185012582,0.3231204336554324,0.3245322872661436,0.3267803410230692,0.3270575578267886,0.3268873187058386,0.0,1.9923250927047915,52.7047626412484,145.66622576859814,197.01541372194845,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95717,47867,457.0243530407347,4910,50.10604176896476,3888,40.00334318877525,1487,15.127929207977685,77.3593554540744,79.73203550692813,63.33143217950936,65.08456589583564,77.16689458225726,79.54415745714014,63.2583092442826,65.01579442994091,0.192460871817147,187.87804978798303,0.0731229352267632,68.77146589472716,244.41032,171.2207146630798,255346.59464880847,178882.03127450697,484.69422,322.45336157522246,505773.8750692144,336274.1393874259,467.04773,227.34926513704744,484274.8414597198,234607.8068250843,2226.3562,1045.4889537304796,2291248.0332647283,1057614.107557152,904.24658,407.7656546075292,924695.9787707512,406209.0750729836,1446.27848,616.9993721959482,1472286.6157526877,610454.8263024647,0.38012,100000,0,1110956,11606.663393127656,0,0.0,0,0.0,41702,435.05333430843007,0,0.0,42094,436.1294231954616,1104069,0,39516,0,0,9675,0,0,88,0.919376913192014,0,0.0,1,0.0104474649226365,0,0.0,0.0491,0.1291697358728822,0.3028513238289205,0.01487,0.3595483745376679,0.6404516254623321,23.29480084324774,4.043402360206048,0.3011831275720165,0.2824074074074074,0.2132201646090535,0.2031893004115226,11.282640423884414,6.111893004489737,15.694685936776056,11492.949401724876,44.52031337478427,13.675946316085016,13.132463845406706,9.189470467405457,8.52243274588709,0.5789609053497943,0.8114754098360656,0.681468830059778,0.5826296743063932,0.1,0.7541557305336833,0.9214876033057852,0.8389261744966443,0.75,0.1445086705202312,0.5060109289617486,0.7247557003257329,0.6277205040091638,0.5335413416536662,0.0875202593192868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.004693503096901,0.0068393761352451,0.0091202697487355,0.0113276999888146,0.0134280798558441,0.0152607166522248,0.0172815058285527,0.0193003618817852,0.0215604172851892,0.023750192278111,0.0261198245668094,0.028221325980493,0.0300950967967937,0.032051678946608,0.0340617763810784,0.0360082411040594,0.0381172663437503,0.0400856602282886,0.0422590960699144,0.0567332191637776,0.0698735661056686,0.0835405062361666,0.0960703281912152,0.1088391614291137,0.1245397994160213,0.1354480621471324,0.1461230487467257,0.1560372377379463,0.1654717953120975,0.1776268994503718,0.1894724306299869,0.1998781363567122,0.2099462630375064,0.2194584590980193,0.2280904110196748,0.2365417262330235,0.2447299151836936,0.2527486242695864,0.2596817978763616,0.2665324866109125,0.2727687128898031,0.2784027794190636,0.2817251899264222,0.2854994603378649,0.2888429548698262,0.2914848662907722,0.2954043136956025,0.2992540304334897,0.3024505221021029,0.2999167718205493,0.2976384867653718,0.2943461311944358,0.2907123767924365,0.2888074370760113,0.2855707762557077,0.2824846321945697,0.2823297298178676,0.2828020504464134,0.2829552911131998,0.2836394145613871,0.2852535106006372,0.2862784429260954,0.2861416865748286,0.286628478297342,0.2882609372567336,0.2886682740036874,0.2928434845302655,0.2971810296586458,0.3014827667797145,0.3040877367896311,0.3074199344678152,0.3099452037538577,0.311330718165359,0.3145513714551371,0.3174213174213174,0.3197031652279267,0.3251497005988024,0.3207700650759219,0.3286897590361445,0.0,2.3983366216377955,49.497441142896015,145.15900470088815,199.60683842448623,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95895,47536,453.0058918608895,5036,51.32697220918713,3988,41.076177068668855,1478,15.0894207205798,77.4394230829848,79.7187004723016,63.39129033748679,65.0768916205654,77.25618966347879,79.53775238805267,63.32097962664475,65.00956335853323,0.1832334195060099,180.94808424893927,0.0703107108420368,67.32826203217712,245.42298,171.84438020884537,255928.85969028625,179200.56333369348,485.66661,323.3749865620933,505934.8454038272,336707.2036194939,463.9169,226.6650349472081,480431.2737890401,233848.45356494663,2261.1078,1069.3317424233817,2331065.97841389,1088857.4341739642,888.5911,407.0208015883947,912096.7203712394,410397.66748747526,1431.15588,606.9963741517524,1462912.20605871,607932.7828457236,0.38015,100000,0,1115559,11633.129985922104,0,0.0,0,0.0,41883,436.2166953438657,0,0.0,42063,435.3615934094583,1100979,0,39515,0,0,9620,0,0,83,0.8551019344074248,0,0.0,0,0.0,0,0.0,0.05036,0.1324740234118111,0.2934868943606036,0.01478,0.3526385978281577,0.6473614021718422,23.15653701549384,3.981806680026213,0.2981444332998997,0.2938816449348044,0.2101303911735205,0.1978435305917753,11.235479874286767,6.111100336511497,15.605794135833875,11450.247210442676,45.71963621724043,14.399963074656,13.489038357791037,9.3716020295287,8.459032755264692,0.5915245737211635,0.8080204778156996,0.7005887300252313,0.5894988066825776,0.1077313054499366,0.7602574416733708,0.9233791748526524,0.8595988538681948,0.6894977168949772,0.144578313253012,0.5151183970856102,0.7194570135746606,0.6345238095238095,0.5541195476575121,0.0979133226324237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021259364243774,0.0043576958936316,0.0066444171679566,0.0090060818974707,0.0110177157551302,0.0131967196434749,0.0153501400560224,0.0174418604651162,0.0194515957664173,0.0215941406329916,0.0238017172483042,0.0257020612950555,0.0275599856137286,0.0293993514848937,0.0315570263610965,0.0337549692808095,0.0358572743919471,0.0378498233398609,0.0398758357211079,0.041830078958045,0.056881671114076,0.0708718184477786,0.0849825134552156,0.097355352812103,0.1095332336779165,0.1248178727537639,0.1362215984322864,0.1463577918282769,0.1563449503726052,0.1654857974613096,0.1785245866391451,0.1898109130199892,0.2001390533508598,0.209233458995793,0.2179019133494611,0.2267540315886174,0.2359812302856697,0.2440232777603019,0.2518268435542162,0.2584192596995816,0.2640544161123429,0.2699446662464103,0.2759496662137413,0.2799258062586011,0.2845097420716764,0.2879699710787028,0.2911110833406231,0.294380482108176,0.29708853238265,0.3004143373890168,0.2970995031556331,0.2947677288433061,0.2926261138006034,0.2901264801636463,0.2872113676731794,0.2841061622940817,0.2799236930062433,0.2798321660054529,0.2808343666661004,0.281812538795779,0.2826378289841045,0.2835416707549206,0.2838944305901912,0.2840107082015088,0.2838966957842765,0.2851027618040692,0.2868421792026074,0.2915311967796872,0.2963129031145449,0.3004291845493562,0.302426575931232,0.3070120355834642,0.3128876209377326,0.3166491043203372,0.3207511912547884,0.3266195524146054,0.3330784523627466,0.3340080971659919,0.3421990677268988,0.3528969149736644,0.0,1.893670125871685,54.42190194392053,142.07472656726324,201.5415657009163,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95741,48118,457.975162156234,4957,50.70972728507118,3900,40.191767372390096,1438,14.685453462988688,77.34647984393533,79.69886122942324,63.33814763576003,65.07530084921167,77.15708432859769,79.51057574472148,63.26757100435014,65.00687522924828,0.1893955153376367,188.28548470176543,0.0705766314098923,68.42561996339214,244.23652,171.1380612832493,255101.28367157228,178751.0693258367,486.36188,323.7741931394263,507486.5835953249,337666.2486702942,471.02024,230.7880160540196,487795.1034561995,237860.879452257,2201.85656,1041.5139235525985,2270997.7961374964,1059037.782718582,879.49003,397.90789857685246,906717.822040714,403712.7025797216,1385.65816,590.3729166132719,1417108.7830709936,592243.398172634,0.3824,100000,0,1110166,11595.512894162375,0,0.0,0,0.0,41836,436.4274448773253,0,0.0,42579,440.6471626575866,1100386,0,39541,0,0,9736,0,0,82,0.8460325252504152,0,0.0,0,0.0,0,0.0,0.04957,0.1296286610878661,0.2900948154125479,0.01438,0.3625968992248062,0.6374031007751938,23.13205751177674,3.917184079443371,0.3217948717948718,0.2892307692307692,0.1979487179487179,0.191025641025641,11.161368879366952,6.260885956404655,15.497147412082196,11583.627045943762,44.98146686704241,13.907899592613552,14.357345838082535,8.619178597146455,8.097042839199869,0.5956410256410256,0.8147163120567376,0.7099601593625497,0.5569948186528497,0.1114093959731543,0.7779646761984861,0.9173553719008264,0.8898071625344353,0.7025641025641025,0.1428571428571428,0.515676872002951,0.7375776397515528,0.6367713004484304,0.5077989601386482,0.1036789297658862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0045920384393151,0.0071239382592017,0.0094979785051096,0.011766021925275,0.0140189770320899,0.0161365953109072,0.0184427275232447,0.0206785170344778,0.022677710319126,0.0247747516887216,0.0272309239833309,0.0293833405300927,0.031547723269922,0.0334179357021996,0.0356175710594315,0.0375520261735655,0.0396634365986761,0.0418295218295218,0.0437979772729639,0.058630697596726,0.0728092850938242,0.0860155266470835,0.0985552658142664,0.1105078384447513,0.1264258454642521,0.1380539233363738,0.1477839851024208,0.1584402553318673,0.1681687152394526,0.1790411814091662,0.19033820603754,0.2001977637483836,0.2097477302275781,0.2190463631468477,0.2283421868083222,0.2374921965575671,0.2467732505846375,0.2539156865636093,0.2605873261205564,0.2662689052310253,0.2719483828737741,0.27704885060871,0.2811249310997675,0.2865085338318483,0.2905488555254737,0.2949479290384687,0.2986339006334427,0.3024038959693296,0.3057702962982507,0.3023290253096392,0.2985587766103746,0.295967912180705,0.2927079272958263,0.2901794327609492,0.2865841531141471,0.2828630528493155,0.2826538795149174,0.2836232896552899,0.2844079134642756,0.2849062943328604,0.2864509526058888,0.2868753133879325,0.2871792585326705,0.2881270662641943,0.2884820707794068,0.2882875192077855,0.292231580924946,0.2965382331365494,0.3011943710828176,0.304418762746431,0.3071878140371291,0.31125249500998,0.3136081224427943,0.3197565543071161,0.3202074982315491,0.3243366186504928,0.3215291750503018,0.3178679922673295,0.3226056611089569,0.0,2.149215009523412,51.74914987271438,148.90190621100666,192.06749014373813,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95748,47649,455.3828800601579,4948,50.62246731002214,3936,40.606592304800095,1452,14.79926473660024,77.41222784566315,79.76905592778567,63.350809200748486,65.09025599589106,77.22901727794074,79.58910597660089,63.28141747551249,65.02444982091961,0.183210567722412,179.9499511847813,0.0693917252359952,65.80617497144203,244.40768,171.10656975301077,255261.39449387975,178705.11107596062,485.86182,323.144035122288,506965.3152024063,337021.52015946846,469.78777,229.25538864206143,488054.3196724736,237400.3415215229,2239.79668,1068.847642044342,2310343.986297364,1087395.1644361678,905.2146,418.1257030984562,928701.8423361324,419982.1856315074,1414.36974,606.1305756380799,1441999.8537828466,601931.0615678934,0.37849,100000,0,1110944,11602.790658812715,0,0.0,0,0.0,41802,436.0822158165183,0,0.0,42472,440.9178259598111,1103350,0,39579,0,0,9560,0,0,97,1.0130759911434182,0,0.0,0,0.0,0,0.0,0.04948,0.1307300060767788,0.2934518997574777,0.01452,0.3664403491755577,0.6335596508244423,23.011750899118177,4.035103869776165,0.3023373983739837,0.290650406504065,0.2096036585365853,0.1974085365853658,11.562093741547136,6.313381799668931,15.62685550756366,11489.090337071231,45.37471230159293,14.095566378060267,13.535697028218678,9.261863536309786,8.481585359004196,0.5975609756097561,0.8068181818181818,0.7092436974789916,0.6012121212121212,0.1145431145431145,0.7627257799671593,0.9222903885480572,0.8816901408450705,0.6945812807881774,0.1403508771929824,0.5235467255334805,0.7206106870229008,0.6359281437125749,0.5707395498392283,0.1072607260726072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0042669639689859,0.0064115570344519,0.0087639125842879,0.0109598511574944,0.0131724945284267,0.0150844935483213,0.0172137587624868,0.0195194734851968,0.0216888433981576,0.0240223005657128,0.0262379896526238,0.0281276022658346,0.0303183217820252,0.0320803194617853,0.0339866038203919,0.0358892052808697,0.0375261967505654,0.0394128104629523,0.0414379316451213,0.0564580114419342,0.070732013560457,0.0844714372626764,0.0976689878610649,0.1100360843233661,0.1256402116402116,0.1368002122578933,0.1478247907838419,0.1575887752594064,0.1678257136724619,0.1798100453864315,0.1910712158782064,0.2018830956786763,0.2111370179413921,0.2196277123031171,0.2289113873518224,0.2377350479872183,0.2455778866182514,0.2531529179389963,0.2597329665921724,0.2654055868767437,0.2710202744597962,0.2765338348532699,0.2813629941811738,0.2849410822421513,0.2886665189670876,0.291842598376015,0.2953037166749147,0.297605223091017,0.2996609991327885,0.2972871592203094,0.294275467462425,0.2916316349980382,0.2890916930152342,0.2863968853232657,0.2824045940690325,0.2804962311557789,0.2806943337291968,0.2810436490467644,0.2819855346690481,0.2820855119219787,0.2831059154709309,0.2848989249097173,0.2850538609568891,0.2862888830711378,0.2870694988657455,0.2881766462006421,0.293404070488955,0.2981781656968689,0.3030184700691163,0.3086082635749138,0.3116252350114895,0.3137739345274861,0.3166629455979757,0.3200036603221083,0.3228309973358044,0.325698988697204,0.3273551438707134,0.3294054633101232,0.3355805243445693,0.0,1.9757144559052056,53.23303064938786,150.57040271551813,189.5463827714404,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95736,47850,454.9594718810061,5002,50.98395587866633,4011,41.38464109634829,1506,15.417397844071196,77.32373385663094,79.69309710010606,63.321321634088775,65.07484384768838,77.12536551678873,79.49496041663026,63.24651075305935,65.00155104005474,0.1983683398422044,198.1366834757949,0.0748108810294283,73.2928076336492,243.71952,170.76103164694726,254574.580095262,178366.5827347573,488.53835,325.78473200357547,509785.639675775,339783.7429137176,470.23737,230.09179993955144,487492.1868471631,237506.602619759,2284.64528,1100.925101304261,2360016.2948107296,1123608.7071186274,930.51393,429.83487270165375,959341.9716720984,436401.7093379742,1464.2351,636.0838860764393,1500996.866382552,643137.6928270473,0.38221,100000,0,1107816,11571.571822511907,0,0.0,0,0.0,42055,438.7482242834461,0,0.0,42674,442.00718642934737,1101912,0,39608,0,0,9524,0,0,79,0.8251859279685803,0,0.0,1,0.0104453914932731,0,0.0,0.05002,0.1308704638811124,0.3010795681727309,0.01506,0.3598848368522073,0.6401151631477927,22.823037370285373,4.020344600876261,0.3041635502368486,0.2944402892046871,0.2021939665918723,0.1992021939665918,11.705012225919592,6.580198097113239,16.42128552355552,11562.45956929087,46.53369771856004,14.504834072342891,14.01305249378134,9.082500570187594,8.933310582248213,0.6045873846920967,0.8111769686706182,0.7237704918032787,0.594327990135635,0.1276595744680851,0.7654417513682564,0.9392712550607288,0.8940217391304348,0.7810945273631841,0.1342592592592592,0.5292825768667643,0.7190684133915575,0.6502347417840375,0.5327868852459017,0.1252144082332761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012158054711,0.0046954070197856,0.007084855866829,0.0093490234335304,0.0118325736610776,0.0140166447656592,0.0161342960877901,0.0181385515712928,0.020522941314818,0.0226534896820113,0.0246946498343776,0.0269692923898531,0.0291751537970907,0.0313263192605339,0.0334427447823125,0.0354901737808975,0.037647716798028,0.0397468485760232,0.0417975004678824,0.043918144497468,0.058322370481739,0.0727263212977498,0.0858989017444117,0.0990186488277428,0.1115984816533108,0.1266704728072401,0.1368106164274576,0.1481359322466698,0.1581746531819686,0.1669865437195089,0.1789482751195142,0.1909109594227669,0.2017658315935977,0.2109158894853656,0.2198400563212953,0.2288238811258498,0.2374581939799331,0.2451870156127148,0.2527996916938701,0.2602916785816414,0.2663224286110341,0.2713978695570921,0.2768074495993949,0.2808055169771563,0.2854403572858894,0.2893245972708015,0.2927332782824112,0.2971022792349101,0.3003303322754064,0.3020390936189295,0.299339138861596,0.2965965235821142,0.2943935765600788,0.291461210324633,0.2892284368079192,0.2858192617994213,0.2822522038611014,0.2823708604933014,0.2836059713687507,0.2845732379834205,0.2850711697239138,0.2867481759021889,0.2876520210160551,0.288102261553589,0.2878638559719251,0.2886168272987757,0.2902545392355272,0.2947600314712824,0.297752808988764,0.3022904405916971,0.304540269221994,0.307503861106673,0.3105382579099962,0.3141137938913855,0.320981892850476,0.3232514177693761,0.327856496834489,0.3279967980788473,0.323051948051948,0.331047619047619,0.0,1.9875668264256117,56.03065877274678,147.17577700076205,198.3618283882838,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95777,47651,453.6579763408752,5071,51.651231506520354,4055,41.711475615231215,1549,15.849316641782474,77.38153749659537,79.72210279188901,63.350937847410606,65.08232941637318,77.18162961340688,79.5251235237359,63.27438693398911,65.00939174723267,0.1999078831884873,196.97926815311465,0.0765509134214994,72.93766914051503,243.68762,170.65135425565396,254432.29585391065,178175.71468688094,485.40472,322.52105866675225,506210.0921933241,336144.5635870326,464.91412,227.18154283296855,480741.67075602704,233695.9371947064,2304.01092,1097.629805339366,2371767.45982856,1112194.5825609148,923.70382,424.1867141321462,945915.0735562816,424373.2567653456,1500.66834,645.0833115877651,1535453.2298986188,645743.0703369455,0.37928,100000,0,1107671,11565.104356995938,0,0.0,0,0.0,41823,436.0337032899339,0,0.0,42145,435.438570846863,1107861,0,39772,0,0,9606,0,0,78,0.8143917642022614,0,0.0,2,0.0208818401077502,0,0.0,0.05071,0.1337006960556844,0.3054624334450798,0.01549,0.354351519728148,0.645648480271852,23.23345111710321,4.006264026210784,0.3154130702836005,0.2801479654747225,0.2041923551171393,0.2002466091245376,11.14504192916359,6.065868110937428,16.5165461701708,11497.5336282495,46.68276813252642,14.016210181802188,14.508311632731283,9.306146202216242,8.852100115776704,0.5898890258939581,0.8089788732394366,0.709147771696638,0.5676328502415459,0.1182266009852216,0.744955609362389,0.9074074074074074,0.8333333333333334,0.7289719626168224,0.1675675675675675,0.5216619318181818,0.7353846153846154,0.6616216216216216,0.511400651465798,0.1036682615629984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0043485312303606,0.0066352826589829,0.0088053380457633,0.0108485674197287,0.0133045593819029,0.0154727443225832,0.0177589075209993,0.0198348627603261,0.0219473264166001,0.0244399811448363,0.0265751062388372,0.0284289533209952,0.0304565391981219,0.0325325686701255,0.0344791957265222,0.0365916758076867,0.0386457404681442,0.0407334302929565,0.0430527356968087,0.0572293242890686,0.0711618712936525,0.0842462809397507,0.0977239770506273,0.1097458162964211,0.1251439985626565,0.1372476286365322,0.1485242206438991,0.1580042689434365,0.1676850184375268,0.1797844739420168,0.1910458739413081,0.2007695986782034,0.2100091807292122,0.2182742233565079,0.2273678383614724,0.2356870441822602,0.2432517510033839,0.2506237807920882,0.2569826649121803,0.2633751517604208,0.2695000642891375,0.2746413067906272,0.279870674170758,0.2838784054365633,0.2876990475252886,0.2916234747530255,0.2956515109156988,0.2996740985981067,0.3034399167358338,0.3002271902348528,0.296773927732685,0.293281199454282,0.2898893585101625,0.2877614597240766,0.2842875250064902,0.2807449106706404,0.2803854319777886,0.2818532163047722,0.2824226932225654,0.2824879812171579,0.2832333562788868,0.283885228125782,0.2861919835926702,0.2876794258373206,0.2896948941469489,0.2911901256935794,0.2962478184991274,0.2998957247132429,0.3052834493882528,0.3097676517031356,0.3138659223761125,0.3188668626102182,0.3244205423420694,0.3258426966292135,0.3304337604325849,0.3379664601903611,0.3425149700598802,0.3483360611020185,0.3570079335096335,0.0,2.484713019680504,53.628024744834434,150.89543053312306,203.5937384472325,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95871,47816,454.7047595206058,4931,50.33847566000146,3950,40.77353944362738,1476,15.082767468786182,77.37299817448195,79.67294129043421,63.35320242165369,65.05636115515432,77.18332657730757,79.48651278852032,63.2808771829508,64.98765282396867,0.1896715971743816,186.4285019138947,0.0723252387028878,68.7083311856469,244.88706,171.56291854029297,255433.92683919016,178951.84001449132,487.83087,324.7612239842629,508392.95511677145,338300.1783482627,464.62732,226.87955257635025,482161.1123280241,234719.54309639675,2220.61984,1052.4139928478592,2292800.617496428,1074282.1425121874,885.3237,404.09745844055885,913951.8206756996,412020.1327951108,1427.78088,614.5637029509918,1460485.77776387,614855.572302348,0.38246,100000,0,1113123,11610.633038145008,0,0.0,0,0.0,42085,438.49547829896426,0,0.0,42083,436.57623264595134,1097703,0,39428,0,0,9987,0,0,84,0.8553159975383589,0,0.0,1,0.0104306828968092,0,0.0,0.04931,0.1289285154003033,0.299330764550801,0.01476,0.3668215253581107,0.6331784746418893,22.971095917689134,3.9803264056229226,0.3037974683544304,0.2893670886075949,0.2131645569620253,0.1936708860759493,11.530812996944592,6.314004420527193,15.933716583370298,11562.647797543348,45.37386696842912,14.019696196121526,13.524385522492622,9.40833399213143,8.421451257683534,0.5855696202531645,0.8145231846019247,0.675,0.5760095011876485,0.1137254901960784,0.7477102414654455,0.9190871369294604,0.8294117647058824,0.736318407960199,0.1404494382022472,0.51473263004729,0.7382753403933434,0.6139534883720931,0.5257410296411856,0.1056218057921635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025217743568969,0.00501687494299,0.007283202986316,0.0094937351501736,0.011670699225342,0.0140065146579804,0.0163484961218187,0.0185020767637183,0.0207317945416832,0.0229909755049419,0.0250192100814507,0.0270245313798516,0.029309901854992,0.0310656826112466,0.0330305873135328,0.0350186917818121,0.0370075318655851,0.0391283172543858,0.0409877773970113,0.0431050627379986,0.0580065274287561,0.0716838387427114,0.085293162509559,0.0977108054184605,0.1102358887952822,0.1263018907784937,0.138061480751502,0.1480619166081946,0.1583576147631093,0.1676793004789918,0.1799143367555584,0.1915514576329813,0.2013390722142515,0.210402589166612,0.2202451692416039,0.2302972577858503,0.2394328488080231,0.24695982810795,0.2546902293505138,0.2615057013326006,0.2669457228093707,0.2722615357623252,0.2775713541913192,0.2816751293351217,0.286133831703114,0.28977048857368,0.2929752996821742,0.2957801991023864,0.2986750853948866,0.3019032168717603,0.298927595904143,0.2961755848013532,0.2940637983240617,0.2917533217793183,0.2882261295348319,0.2845395491020252,0.2812425932655996,0.2812269818146105,0.2823493371002604,0.2828895849647611,0.2835770780480525,0.2842836343603667,0.2857887494266294,0.2862602204052613,0.2878581824255004,0.2899495537446643,0.2902979157227005,0.2938603343227621,0.2967791411042945,0.3009933644823118,0.304839216038032,0.3084983757728177,0.311706102117061,0.3162618796198521,0.3171460590212925,0.3204381263108832,0.322463768115942,0.3293027005239822,0.3274773538292616,0.330188679245283,0.0,1.586480796220464,52.875226103808856,146.54474148675772,198.66959252099224,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95780,47701,453.9674253497599,4902,49.906034662768846,3911,40.14408018375444,1460,14.762998538316976,77.39816222968327,79.72835445944126,63.35848721039546,65.07990405396791,77.21306869493642,79.55079118659353,63.28717020092132,65.01477331380146,0.1850935347468407,177.56327284773477,0.0713170094741428,65.13074016645248,243.65858,170.71875105588472,254394.00709960327,178240.5001627529,484.12249,322.2392940596237,504745.4061390687,335729.74948801805,465.59672,227.323395995621,482073.6688243892,234196.16931453132,2222.25116,1055.611743071424,2282676.926289413,1064636.190302176,873.71282,399.7560524195761,894019.095844644,399180.1236370594,1413.11378,603.7283991084254,1430873.146794738,591174.4149260017,0.37927,100000,0,1107539,11563.363959072874,0,0.0,0,0.0,41666,434.2764669033201,0,0.0,42175,436.291501357277,1106356,0,39715,0,0,9547,0,0,84,0.8770098141574442,0,0.0,1,0.0104405930256838,0,0.0,0.04902,0.1292482927729585,0.2978376172990616,0.0146,0.3682969946965232,0.6317030053034767,23.02851128472489,3.883587796827838,0.3165430836103298,0.2927639989772436,0.1948350805420608,0.1958578368703656,11.415768397194148,6.413735294870814,15.510434630237985,11467.574246257018,44.9434548901448,14.20034634222358,14.066120601473331,8.375249445961572,8.301738500486312,0.5988238302224494,0.8096069868995633,0.7172859450726979,0.5866141732283464,0.1044386422976501,0.7811725846407928,0.9330628803245437,0.8933717579250721,0.7635467980295566,0.125,0.5170370370370371,0.7162576687116564,0.6487093153759821,0.5223613595706619,0.0986622073578595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748435316278,0.0040538349278417,0.0064927159842551,0.008652205703144,0.0109083515478066,0.013373501333279,0.0154684872879197,0.0174264375790719,0.0196467066480041,0.0217311233885819,0.0239117294511776,0.0263927512288226,0.028673024747184,0.0308051750223859,0.0330120109283983,0.0349293563579277,0.0372527518000496,0.0391335455572952,0.0413514299966744,0.0433949492319708,0.057745082694214,0.0719978245863576,0.0851322590453025,0.0974943243924997,0.1098752806975003,0.1253700101488498,0.1376644039032668,0.1478710611172007,0.157601845720023,0.1665522788203753,0.1782529082292115,0.1891014894054276,0.1990394645340751,0.2088886946641611,0.2175098088779962,0.227195273081349,0.2361540091210151,0.2437672195670508,0.2516786897146227,0.2583954476236275,0.2645851876683351,0.2696060673343227,0.2753957549513736,0.2801260016049634,0.2835666965954039,0.2878677873078769,0.2910440301864161,0.2947825645194066,0.2976104272266474,0.3001738992964983,0.2966936926034986,0.2937081182027903,0.2907707668293232,0.2877320419693301,0.2845980821593465,0.2815140147009485,0.2790836998849106,0.2799026255166892,0.2802974863425177,0.2812350109253699,0.2817819495660595,0.2834215132859981,0.2838735194321281,0.2839662166655582,0.2850790631316133,0.287469350883985,0.2897650629496403,0.2941705426356589,0.3013499982736595,0.3050013664935774,0.307308746237815,0.3114275282949982,0.3155235101990509,0.321072739531051,0.3232838589981447,0.3285815268614515,0.3339363787124981,0.3374097834803528,0.3326954620010935,0.3314543404735062,0.0,2.6097928353954063,52.37764795915732,142.02045102396852,196.21460031008837,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95877,47507,452.0896565391074,5049,51.461768724511614,4033,41.459369817578775,1564,15.947516088321496,77.3584022892406,79.64067866203857,63.35300198276878,65.04163354329913,77.1612788558495,79.44776641282226,63.27872912943494,64.97144116957789,0.1971234333910985,192.912249216306,0.0742728533338379,70.1923737212411,243.83304,170.8468585540373,254318.36624007844,178193.55899124642,484.19239,321.62772563964944,504397.592749043,334842.1578059903,466.49374,227.07799159503213,483055.84238138446,234105.35204131505,2302.69552,1088.479471493892,2368065.8760703816,1101634.8774929263,936.92386,420.0703302462469,962988.4226665416,423908.6331927854,1526.78724,645.6586581257503,1558025.136372644,642920.8424118195,0.3788,100000,0,1108332,11559.925738185384,0,0.0,0,0.0,41648,433.7536635480877,0,0.0,42205,436.7157921086392,1106548,0,39704,0,0,9481,0,0,89,0.917842652565266,0,0.0,0,0.0,0,0.0,0.05049,0.1332893347412883,0.3097643097643097,0.01564,0.3586088939566704,0.6413911060433295,23.20842531197765,4.095679384085227,0.3064716092239028,0.2846516241011654,0.1943962310934788,0.214480535581453,11.235363008177169,5.966706737611836,16.603866161389945,11500.692736706906,46.42335665736,14.20231582552221,14.121690763249946,8.72936495874254,9.369985109845306,0.5968261839821473,0.8266550522648084,0.7257281553398058,0.5854591836734694,0.1179190751445086,0.7561576354679803,0.9323770491803278,0.8611111111111112,0.73224043715847,0.1176470588235294,0.5278863232682061,0.7484848484848485,0.6700913242009132,0.540765391014975,0.1179941002949852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020957992892506,0.0043975641142556,0.0064914647381606,0.0088639340433957,0.0107847123399064,0.0131692771145645,0.0154753657443253,0.017522566168596,0.0197257588597449,0.0218362485815639,0.0239950044529978,0.0262143486908203,0.0283049872648097,0.0303762832513835,0.0325638911788953,0.0347729126444139,0.0367638692058631,0.0386887488599618,0.0407618572867661,0.0426871137560082,0.0574106314439706,0.0710882647943831,0.0842409517426273,0.0966796875,0.1091659820093113,0.1243371152099047,0.1359989826305359,0.1468599136556007,0.1571779272067456,0.1669668124517623,0.1793063347295653,0.1908661178837604,0.2009718658955516,0.2103761519037156,0.2184864710344903,0.2282862486029501,0.2365621375680257,0.2449098901593083,0.2519367095786309,0.2586457724778629,0.2647814315136648,0.271191793480168,0.276395713693683,0.2805587195012289,0.2846674525149169,0.2885587473801011,0.292195757256994,0.2955161918830466,0.298809585559417,0.3018631078224101,0.2987564166475795,0.2955521303534074,0.2934940233995523,0.2909487427605829,0.2890460203808788,0.2849269771286856,0.28132170720514,0.2814089313252617,0.2822736195271827,0.2833229454189298,0.2839789949729962,0.2837233140807033,0.2845377202700725,0.2858098316798573,0.2879994244328265,0.2898997487241924,0.2899699835759189,0.2947782144862437,0.2980893049803362,0.3034039870774564,0.3078524553066304,0.3128156565656566,0.3164541135283821,0.3203690993670403,0.3247451868629671,0.3280783470679565,0.3253980522491884,0.329221435793731,0.3296973002454322,0.3368580060422961,0.0,2.344455115280661,52.94413995665384,149.7653654407297,205.2010400400337,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95726,47955,457.8588889121033,4979,50.82213818607275,3979,40.89797965025176,1456,14.792219459707916,77.38965647392791,79.75565542609358,63.34469261111818,65.0935808041326,77.20601113148219,79.5777338570613,63.2746233908523,65.02849947481097,0.1836453424457289,177.92156903227863,0.0700692202658856,65.0813293216288,244.57466,171.2281649376167,255494.49470363327,178873.20575143295,486.36245,323.32610198886806,507408.2172032677,337093.0876907948,468.44997,228.1641471681889,485181.3613856215,235108.5405740804,2264.23108,1061.0110387989005,2328498.088293672,1071600.9964413831,890.74434,401.7691682763561,912506.9782504232,401778.3659623858,1414.10228,601.5027396376963,1438280.1955581557,594700.563410964,0.38136,100000,0,1111703,11613.386122892422,0,0.0,0,0.0,41826,436.2346697866829,0,0.0,42392,438.6687002486263,1103623,0,39604,0,0,9772,0,0,82,0.8461650962121053,0,0.0,0,0.0,0,0.0,0.04979,0.1305590518145584,0.2924281984334204,0.01456,0.3595916795069337,0.6404083204930663,23.19416972887444,4.089624235581665,0.3068610203568735,0.2865041467705453,0.2033174164362905,0.2033174164362905,11.045362084211945,5.816507258139105,15.422169262769158,11507.033922515988,45.35704670914304,13.967332025103843,13.882416612482038,8.961934064215981,8.545364007341183,0.5858255843176677,0.8192982456140351,0.6904176904176904,0.5698393077873919,0.1149567367119901,0.7604433077578857,0.9238900634249472,0.8631284916201117,0.6881720430107527,0.1153846153846153,0.5128296507483963,0.7451274362818591,0.6187717265353418,0.5345104333868379,0.114854517611026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.0046430055857992,0.0068500796638894,0.0092854095129731,0.0114132259147364,0.0136959797971569,0.0158746342308907,0.0180582068374148,0.0198605773162155,0.0220998433869366,0.0240574837532544,0.0259426940568952,0.0282909277820611,0.0303248725737527,0.0322018339161019,0.0343430585268553,0.0363562937497411,0.0383976926109601,0.0401725392370855,0.0422002479915807,0.0565712674762198,0.0704229774851628,0.0837914970411717,0.0966638962241323,0.109152478004937,0.124657577712672,0.1359744517415891,0.1464481455861224,0.1562219659105472,0.1649506649506649,0.1769488386117183,0.188519003364672,0.199049607446554,0.2089503269975283,0.2184835114050241,0.2282104377290797,0.2360019180801356,0.2443675345251873,0.2523666458817527,0.2588622870934901,0.2653226365801216,0.2710373191877176,0.2768491063095842,0.2808260151707305,0.285942995755003,0.2894723890146668,0.2930291254857371,0.2964190897196499,0.2998837059051557,0.3035664915675974,0.3006029516430096,0.2977873555329838,0.2945166999073008,0.2912398980076926,0.288972709119148,0.285648959682951,0.2826148565670561,0.2835273403110633,0.2836897445014477,0.2840458663646659,0.2852798843008918,0.2854486740385556,0.2872893826034693,0.2874015748031496,0.2874126206666983,0.2885637611601383,0.2899645010424297,0.2956987572803438,0.3002995680646509,0.3045981544285827,0.3108542941309766,0.3153263001643429,0.3175417735778209,0.3212093997904505,0.3236914600550964,0.3240139211136891,0.3292974588938714,0.3339268051434224,0.3327052489905787,0.3347201210287443,0.0,2.5762411299008856,50.676104938383695,145.67099735279552,204.73796187157475,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95768,47939,455.4861749227299,4910,50.23598696850723,3936,40.58767020299056,1481,15.17208253278757,77.34687979821054,79.70584172251499,63.33382307926016,65.08143618621295,77.15692330641927,79.51844386815921,63.261663598428605,65.01245110010929,0.1899564917912641,187.3978543557797,0.0721594808315515,68.98508610366605,243.6808,170.72148441327454,254448.85556762177,178265.47219872457,487.04274,324.5075518320532,508053.59827917465,338336.52245432,466.39003,226.89345385652317,483682.6288530615,234417.4248779933,2259.16244,1062.7970907935803,2327918.5531701613,1079051.131120146,906.21805,409.4984236167687,927300.7163144264,408816.5524744902,1444.07814,620.2074470552864,1479043.897752903,621602.9938752452,0.38123,100000,0,1107640,11565.857071255534,0,0.0,0,0.0,41990,437.922897001086,0,0.0,42195,437.3068248266644,1105554,0,39710,0,0,9712,0,0,85,0.8875616072174422,0,0.0,0,0.0,0,0.0,0.0491,0.1287936416336594,0.3016293279022403,0.01481,0.3522504892367906,0.6477495107632094,22.945495352585997,4.013091619107464,0.3241869918699187,0.2733739837398374,0.1971544715447154,0.2052845528455284,11.207056945846777,5.950931940338262,16.02781366741993,11521.172423804162,45.191360106216784,13.300783716889368,14.345614202225056,8.770174943693519,8.774787243408843,0.5835873983739838,0.8085501858736059,0.6927899686520376,0.5747422680412371,0.120049504950495,0.759417808219178,0.918859649122807,0.8656716417910447,0.7389162561576355,0.160919540229885,0.509393063583815,0.7274193548387097,0.6312433581296493,0.5165794066317626,0.1088328075709779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509383486684,0.0045734799010262,0.0069035532994923,0.0091364574123194,0.011322942947831,0.0136657094560192,0.0160260984809868,0.0181502654144548,0.0207315327840363,0.0227198263504935,0.024944380081405,0.027260686086269,0.0295037123876514,0.0314186822695619,0.033304435775177,0.0356024189796867,0.037497281680077,0.0396804813527672,0.0418507468892608,0.0441320420701864,0.0586485470941883,0.0726487232862956,0.0855246602918973,0.0980513747582611,0.1104353966631182,0.1260092150314917,0.1378162661776708,0.1479422052585134,0.1580867450344548,0.1668201876526284,0.1784826874052083,0.1896734314551859,0.1998544301047234,0.2092032847034157,0.2185127816410155,0.2289428555623167,0.2374098313134804,0.2443153079231625,0.2524391904156834,0.2584047084688315,0.2646221831474712,0.2696702808285671,0.2746501366330309,0.2798131065053312,0.2843033766485883,0.2877873015482617,0.2904701778950131,0.2956041163765722,0.2982016109222077,0.3007307920205412,0.298794824597939,0.2964555570820167,0.2935100342908538,0.2905991527133347,0.288565248311011,0.2848982833404606,0.2820970211691161,0.2822045696503152,0.2826890641770448,0.2833182149654056,0.2841278136548583,0.2843915604499517,0.2847451258714983,0.2845802207603969,0.2868995947339392,0.2887378944079975,0.2907482722334404,0.2965233245316233,0.3005426220899702,0.3056281168368558,0.308216378253168,0.3101209017475318,0.3142892939923573,0.3157378779880853,0.3162274618585298,0.3170560747663551,0.3176470588235294,0.3197908286403861,0.3263621353880022,0.3373493975903614,0.0,1.8584423397659984,51.19474861509316,147.26743727182298,201.23953181944984,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95750,47891,457.73368146214096,4952,50.49608355091384,3906,40.16710182767624,1451,14.715404699738905,77.36211040614715,79.72404738908905,63.32787542470121,65.07552730025397,77.17873234255721,79.54457225960383,63.258596378852175,65.01019403786445,0.1833780635899415,179.47512948522615,0.0692790458490364,65.33326238951531,244.61822,171.32923592788816,255475.9477806789,178933.92786202417,485.60228,323.1653824148908,506530.412532637,336883.5221043246,463.98406,226.04084655729895,480412.1253263708,232901.50905672324,2229.32816,1044.7988491432127,2292780.07310705,1055803.993370026,894.23651,405.1909039076521,916381.35770235,405636.4656771823,1416.19072,600.7569699951397,1438837.2010443865,593540.4749824249,0.38099,100000,0,1111901,11612.543080939948,0,0.0,0,0.0,41819,436.0939947780679,0,0.0,41949,433.98433420365535,1101910,0,39517,0,0,9574,0,0,93,0.9712793733681462,0,0.0,2,0.02088772845953,0,0.0,0.04952,0.1299771647549804,0.2930129240710823,0.01451,0.3638470451911935,0.6361529548088065,23.19294156384132,4.034725681135713,0.2980030721966206,0.2836661546338965,0.2163338453661034,0.2019969278033794,10.8875738622204,5.683638798542149,15.388483411283833,11471.233847217063,44.57246784975678,13.67155052255596,13.126455744439,9.175706481210913,8.598755101550898,0.5780849974398361,0.796028880866426,0.6950171821305842,0.5775147928994083,0.100126742712294,0.7497781721384206,0.8930817610062893,0.8646153846153846,0.7134146341463414,0.1304347826086956,0.5084562792371357,0.722662440570523,0.6293206197854588,0.5447870778267254,0.0923566878980891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022187775447554,0.0046849331737887,0.0069434575170033,0.009144761575744,0.0112100096638014,0.0132093534851509,0.0152142434686843,0.0171934983255738,0.0191000092023598,0.0211046940280167,0.0229305111165805,0.0250939868931939,0.0273865495210954,0.0296369575746334,0.0316954103064268,0.0337658309640734,0.0357242707589077,0.03773447875166,0.0395617645835932,0.0415803014363536,0.0560629625377075,0.0700910137043623,0.0832546823549151,0.0960644496329484,0.1088937642393047,0.1246972469301632,0.1361418174874286,0.1475429033769109,0.1574937761109508,0.1665933924531134,0.1779613553626435,0.1898206768178522,0.2006157059405832,0.2101135394106451,0.2185171734513079,0.2279595861121574,0.2357952325127002,0.2430085270096969,0.2502977709715841,0.2563861822595235,0.2617705934762737,0.2683591374713504,0.273832759620048,0.2787843926756783,0.2835643372090201,0.2880704563650921,0.2918475337444802,0.2960717009916094,0.2997801345059493,0.3030702332323099,0.2998600796469702,0.297383105637868,0.2947213045617488,0.2922591065093877,0.2894627670607758,0.2859805089664864,0.2837338554331007,0.2840251202041016,0.2839002498852567,0.2838914621377487,0.2842489342293873,0.2849384362010823,0.2855687464914652,0.2879174525685121,0.288828987858114,0.290092511240891,0.2909398814563929,0.2948606271777003,0.2994728445585073,0.3030433590536994,0.3079407806191117,0.3119716104790732,0.3150650960942343,0.3163782816229117,0.3250620347394541,0.3269320297951583,0.3331338818249813,0.3398782642843118,0.3494938732019179,0.3539453717754173,0.0,2.393331741872675,48.63287781265333,147.75125254787258,200.5811509148493,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95769,47849,455.75290542868777,4886,49.82823251782936,3866,39.87720452338439,1454,14.869112134406748,77.32840490063373,79.68782331651018,63.31625382636724,65.06419818834858,77.1343475105923,79.49624157240943,63.2416144182057,64.99292539426916,0.1940573900414222,191.5817441007448,0.0746394081615378,71.27279407941955,241.15212,169.02870348731312,251806.03326755005,176496.26025886572,483.08869,322.0360450098903,503962.15894496127,335794.3332496845,464.78194,227.18911465798217,482108.83480040514,234816.26594344384,2217.59584,1053.0580835263493,2288894.903361213,1072908.7737434346,890.22013,407.76850059911976,918316.4489552988,414550.4814701197,1414.2984,613.6262916434761,1447821.883908154,615993.9991682743,0.38065,100000,0,1096146,11445.728784888635,0,0.0,0,0.0,41661,434.5247418266871,0,0.0,42043,435.7777568941933,1115346,0,40013,0,0,9508,0,0,78,0.8144597938790213,0,0.0,1,0.0104417922292182,0,0.0,0.04886,0.1283593852620517,0.2975849365534179,0.01454,0.3597716984845502,0.6402283015154497,23.128599618480376,3.9713739892834647,0.3060010346611485,0.276513191929643,0.2170201758923952,0.2004655975168132,11.04843208768491,6.039820009157857,15.697743764609502,11530.225766330588,44.54345528934295,13.289283845957726,13.410682053833208,9.374480018398229,8.46900937115379,0.5851008794619762,0.8297474275023387,0.68385460693153,0.567342073897497,0.1161290322580645,0.7412060301507538,0.9290322580645162,0.8111455108359134,0.7192982456140351,0.1516853932584269,0.5153443113772455,0.7533112582781457,0.6360465116279069,0.5106382978723404,0.1055276381909547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.0047566887766486,0.007229013523941,0.0095530396959287,0.0114850155642815,0.0135165417209908,0.0157346222874857,0.0179178535330331,0.0200783094963043,0.0223250386414584,0.0245200045103687,0.0266554404411085,0.0288881804251468,0.0309831590873976,0.0329604557087426,0.0348965816648233,0.0368208026665838,0.038912684996007,0.0408508957891673,0.0429846580079365,0.057764370635575,0.0719156591222859,0.084847595180925,0.0983454916223432,0.1104355248321864,0.1260940340788973,0.1374651352698503,0.1473317865429234,0.1585272063064795,0.1682841302692674,0.1793584799982766,0.1896296135992295,0.2003133636541683,0.2091522568931762,0.2183987759100866,0.227971067468625,0.2370233139515418,0.2456019899377581,0.2533549808124616,0.2586973461062474,0.2648328376517422,0.2707473126454797,0.2761327445153499,0.2808349829044448,0.2858306089957828,0.2894581135052512,0.2933117745857461,0.2969165913114357,0.2999663002903359,0.3024504823108694,0.2999784488564424,0.2971853849116821,0.2950697281307226,0.2927058076434591,0.289712410731519,0.2857427106451366,0.2826864066306033,0.2820125703595517,0.2824904051172708,0.282388176777851,0.2826671647366455,0.2827970540742783,0.2832094292080548,0.2830083689458689,0.2837760229720029,0.2852368986866305,0.2881207179661401,0.2935490911358464,0.2978139227748236,0.3016472068247042,0.3051839841462865,0.30897583429229,0.3118965090368903,0.3138959676210463,0.3188432662897395,0.3244030285381479,0.330326266726808,0.3370176848874598,0.3451665756417258,0.355324074074074,0.0,1.9544382323325535,52.24100979579235,143.91360012238496,191.5730205173396,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95735,48037,457.4189168015877,4929,50.29508539196741,3891,40.12116780696715,1507,15.375776884107172,77.31464774318667,79.68022270248244,63.30648041847581,65.05577695654526,77.11985144999555,79.48879724046203,63.232943427028175,64.98621403964769,0.1947962931911178,191.4254620204048,0.0735369914476322,69.5629168975671,244.25258,171.16767086199118,255134.0471092077,178793.20087950196,487.26204,323.6664263561989,508443.2548179872,337559.4467605357,463.81292,225.9748402154695,481325.70115422783,233628.4141348637,2226.4722,1051.5993665613958,2295805.0869587925,1068748.6491597428,911.02165,412.91250572072187,938885.1621663969,418656.6188684429,1462.49208,621.039362604708,1493231.984122839,619025.1110044433,0.38305,100000,0,1110239,11597.002141327624,0,0.0,0,0.0,41953,437.6664751658223,0,0.0,41992,435.4624745390923,1099706,0,39426,0,0,9860,0,0,75,0.7834125450462214,0,0.0,2,0.0208910012012325,0,0.0,0.04929,0.128677718313536,0.3057415297220531,0.01507,0.363883495145631,0.6361165048543689,23.44382506565569,4.111525421276805,0.3014649190439475,0.2832176818298638,0.2076586995630943,0.2076586995630943,11.417328379088312,6.187044528946127,16.039337707969107,11542.018963333414,44.63786504028533,13.50682091470009,13.307283666403062,9.043270664368706,8.78048979481347,0.5803135440760729,0.7894736842105263,0.6973572037510657,0.594059405940594,0.1113861386138613,0.7536606373815676,0.92,0.8539682539682539,0.776255707762557,0.1242937853107344,0.5065934065934066,0.6993865030674846,0.6398601398601399,0.5263157894736842,0.1077654516640253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109811072278,0.0047550972817876,0.0069327432550396,0.0090031500863733,0.0110382013327229,0.0133664778515831,0.0154966792830107,0.0176941455146923,0.0198209065074724,0.0218869006183203,0.024207439609564,0.0262652606503681,0.0285446840026333,0.0308500772797527,0.0327735169338439,0.0349223087181713,0.0370723220942755,0.0390171011124024,0.0413841866655575,0.0433926487747957,0.0578027439597385,0.0717739909562887,0.0848947732852137,0.0979513713612653,0.1110302646841716,0.12658281410331,0.138076335229685,0.1484454855195911,0.1585822092053787,0.1675000536515226,0.1796497584541062,0.1910829405709951,0.201612288250994,0.2113730260490296,0.2206566558620537,0.2295598880845583,0.2376462429814554,0.2456583517524471,0.25262702997771,0.2592554315373662,0.2653032832498608,0.2713671458531042,0.2765069808234764,0.280451218048722,0.2843025234599115,0.2885485641006671,0.2923140433836223,0.296652299398609,0.3002753752472559,0.3038543079495924,0.3015358980905414,0.2978405019151302,0.2953913556323195,0.2922735589459884,0.2892180850275072,0.2854523227383863,0.2812811073014268,0.2814809958533427,0.2829107773098498,0.2833268073897412,0.283488398161641,0.2840602540120114,0.2850685331000291,0.2850155624722099,0.2856288714036304,0.2872356965174129,0.2879845621204381,0.291976504405424,0.2970583115752828,0.3015966883500887,0.3066582175349658,0.3095803642121932,0.3140739810337248,0.3179744525547445,0.324765478424015,0.3211756373937677,0.3234172387490465,0.3248212461695607,0.3179444902445726,0.312043093497499,0.0,2.0783794806628166,50.70127320415087,144.38247934786952,198.54110875091217,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95825,47757,454.3386381424472,4976,50.83224628228542,3928,40.52178450300026,1499,15.350900078267674,77.3504688262772,79.68227925001175,63.33176974345843,65.05991062060171,77.15368156122,79.48678705322259,63.25724411209,64.98752594926788,0.1967872650571962,195.49219678916077,0.0745256313684308,72.38467133383608,243.35828,170.5193118974108,253960.699191234,177948.23010635088,488.56768,324.43920530104384,509411.1035742238,338132.5833759916,460.39813,224.5835436738719,477462.79154709104,232045.20573955053,2251.77096,1068.0563482598914,2324536.770153926,1089298.229334611,917.15055,422.49799301011785,940151.1818418992,424120.9969848323,1465.22602,633.8767461693824,1501329.548656405,637597.1244749655,0.38166,100000,0,1106174,11543.668145056092,0,0.0,0,0.0,42034,438.1737542394991,0,0.0,41615,431.2340203495956,1107108,0,39726,0,0,9787,0,0,92,0.96008348552048,0,0.0,1,0.0104356900600052,0,0.0,0.04976,0.1303778231934182,0.3012459807073955,0.01499,0.3630560928433269,0.6369439071566732,23.328200156599884,4.151663777707959,0.3057535641547861,0.2828411405295316,0.1975560081466395,0.2138492871690427,11.205675529458889,5.900635517644634,16.164111079961824,11560.723702255948,44.89266801492229,13.65904214492889,13.427913029472514,8.570528511305058,9.23518432921583,0.5819755600814664,0.8028802880288028,0.7002497918401333,0.5747422680412371,0.1273809523809523,0.7422594142259414,0.897119341563786,0.8689024390243902,0.6974358974358974,0.1612903225806451,0.5118916941090377,0.7296,0.6368843069873997,0.5335628227194492,0.1177370030581039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387908503353,0.0045019924358415,0.0068608545620623,0.0090934029647541,0.0114225847793803,0.0135564563769326,0.0155320993320075,0.017788579364431,0.0198151404850517,0.0220911901398358,0.0242711975636516,0.0265441289726343,0.0289075595684947,0.0308444902162718,0.0326822325811641,0.0347264555457973,0.037037037037037,0.0391843677397942,0.0411310519697804,0.0432216358015052,0.0576122672508214,0.0718228578597415,0.0852999119755208,0.0982580007985038,0.1105070746020207,0.1266208033478109,0.1382312088471366,0.1487001106288826,0.1583234581344948,0.1679222435354758,0.1794330973032305,0.1904797941577115,0.2004432325558657,0.2103577557467181,0.2186248624862486,0.2270370288297471,0.2359210731903305,0.2437122311873333,0.2518708622432177,0.2586645286908716,0.264177360193467,0.2707064092519616,0.2766118537797232,0.2817014446227929,0.2864761765920742,0.2900035758763979,0.2942863224853182,0.2978582524766343,0.301429829560172,0.3043610253161215,0.3009635469307998,0.2977938138650949,0.2959121845364747,0.2931988614197575,0.2903029403029403,0.286442234123948,0.2827080992990839,0.2826186804894852,0.2831485587583148,0.2846855839155853,0.2850529223991487,0.2870215487552888,0.2884402827886801,0.2882038726908524,0.2900213127708997,0.2927917412393329,0.2934465675866949,0.2986546805256422,0.3029829496128068,0.3072471755304491,0.3139796561346656,0.3178505897771952,0.321255438160348,0.3251819068336959,0.3270819793891004,0.3296395660795521,0.3301673450927182,0.3367834394904458,0.3424657534246575,0.3403693931398417,0.0,1.8195540240536423,52.21782702040747,139.9862707680463,202.8522976171353,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95727,47834,456.736343978188,4843,49.557596080520646,3837,39.60220209554253,1508,15.41884734714344,77.30949638025908,79.66900318921054,63.31695901961641,65.05925046375384,77.11842382363126,79.48078187434888,63.24434150896211,64.9901963809777,0.1910725566278159,188.22131486166427,0.0726175106543038,69.0540827761481,243.87792,170.81112110345023,254763.98508257855,178435.67760762403,486.29239,323.57853682361616,507530.6548831573,337553.685818647,465.21612,226.62616912258383,483142.35273224895,234589.94824778909,2186.23264,1032.9894445030882,2256271.0207151584,1051550.1002884111,894.69023,403.917762273396,919643.308575428,406964.0564035174,1464.92656,622.2761849075632,1498399.699144442,621983.1057420778,0.38207,100000,0,1108536,11580.181140117207,0,0.0,0,0.0,41853,436.7210922728175,0,0.0,42130,437.2434109498888,1101349,0,39587,0,0,9856,0,0,84,0.8774953774797078,0,0.0,0,0.0,0,0.0,0.04843,0.1267568770120658,0.311377245508982,0.01508,0.3787818471337579,0.621218152866242,23.36974737705078,4.062257429649141,0.3070106854313265,0.2827729997393797,0.2038050560333593,0.2064112587959343,11.32713191589101,6.116719380574331,16.042597863575885,11476.198779943814,44.06774185973052,13.29136132270625,13.544394799020068,8.659469413376907,8.57251632462728,0.5853531404743288,0.7963133640552995,0.7088285229202037,0.5664961636828645,0.1313131313131313,0.7449956483899043,0.8852813852813853,0.8514285714285714,0.7100591715976331,0.1726190476190476,0.5171130952380952,0.7303370786516854,0.6485507246376812,0.5269168026101142,0.1201923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204737646975,0.0044805774065363,0.0068074831588345,0.0087551799788738,0.0106846947593147,0.0129266033568455,0.0151353004127809,0.0174242346912735,0.0196537345161685,0.0214919507527299,0.0235344765731506,0.0256383929029807,0.0279080289568937,0.0300717809291356,0.0321053608630185,0.0340751761618415,0.036048437176568,0.038009997718363,0.0400349214267897,0.04212675528147,0.0563492063492063,0.0702630284380527,0.0828718271449549,0.0955235180920533,0.1077917558604253,0.123351418811012,0.134820253809261,0.1463427616381191,0.1564526294424919,0.1656354882638673,0.1776087565447846,0.1890548879506333,0.2003634662052604,0.2097729138166894,0.2188838366600975,0.2284960539150483,0.2372101335954604,0.2446889995269098,0.2514994547437295,0.2580870721474587,0.264436212086131,0.2702629978005522,0.2764944767407442,0.2815749391348149,0.2860162799173855,0.2899535216303182,0.2933546797413415,0.2963043063418357,0.3001489347924626,0.3022709268550304,0.2994301572119465,0.2959192097080432,0.2935647958968,0.2912136307847809,0.2894381154663062,0.2850275566442131,0.2801026388316913,0.2799356733782963,0.281367976904286,0.2817857142857143,0.2829209821512183,0.284761923601907,0.285645472061657,0.2853696132966959,0.2860819782545944,0.2864645624252509,0.2867810522715613,0.2924758802155118,0.2961578763534754,0.3003781314006617,0.305440086752214,0.3122066965462694,0.3161677395162802,0.3234470757357948,0.3263875911044664,0.3280112702512326,0.3296352583586626,0.335029513535518,0.3423719528896193,0.3416220351951033,0.0,1.8653707612777009,50.32942551598084,142.23583064067674,196.0938540450697,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95731,47673,454.1162214956493,4952,50.43298409083787,3907,40.20641171616301,1383,14.039339398940784,77.40440741590693,79.76338652116175,63.3594678928421,65.10005901954071,77.23036302508025,79.59273955781988,63.29353137846101,65.0376472454827,0.1740443908266797,170.64696334186635,0.0659365143810859,62.41177405800613,243.24102,170.29972956853476,254087.80854686568,177893.82206820836,487.1086,324.51643453408514,508222.8118373359,338381.74756180577,468.02444,228.80882207268112,485283.2520291233,236162.22874226852,2214.0934,1050.6070617272514,2279605.686768132,1064331.0395579822,879.72215,406.9686095756576,900848.9517502168,407061.7623774791,1341.7413,574.160516844391,1364022.166278426,569395.228125335,0.38042,100000,0,1105641,11549.44584303935,0,0.0,0,0.0,41910,437.1520197219292,0,0.0,42432,439.60681492933327,1109129,0,39762,0,0,9620,0,0,79,0.8252290271698823,0,0.0,0,0.0,0,0.0,0.04952,0.130171915251564,0.279281098546042,0.01383,0.3550203923091862,0.6449796076908137,23.35279915664452,3.9580445002269182,0.3191707192219093,0.2935756334783722,0.1963143076529306,0.1909393396467878,11.40574417390984,6.185002295066171,14.80421489341368,11494.440262527334,44.78991585481577,14.2417142391579,14.016469992425275,8.400183842280136,8.13154778095246,0.5909905298182749,0.8073234524847428,0.6888532477947072,0.5671447196870926,0.1193029490616622,0.7792313982011447,0.9252873563218392,0.8418079096045198,0.7554347826086957,0.2024539877300613,0.5052160953800298,0.7088,0.6282194848824189,0.5077186963979416,0.0960548885077186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400862636305,0.0046110970357233,0.0067969241382108,0.0092012390189407,0.0113062133336044,0.0133550488599348,0.01548025477707,0.0177647623031948,0.0196991989537354,0.0219186492709132,0.0242182615736233,0.0264489444028204,0.0284462995137296,0.0305183903428812,0.0324607653971955,0.0342991823190712,0.0364110848763514,0.0385473179738799,0.0408937386334112,0.0430792946494599,0.0578924838955534,0.0720400175809456,0.0852503382949932,0.0989990747750021,0.1110794885579061,0.1265173624328553,0.1376010524305629,0.1485270789638982,0.1577637229973718,0.1670151734491448,0.1793237131165194,0.1910950010820168,0.2017575342316769,0.2112369623685303,0.2201077989220107,0.2300453891287501,0.2390831520829847,0.2460267505900865,0.252938975864688,0.2594185820357637,0.2651376040836596,0.2699873984878185,0.2749156302362353,0.279819471308833,0.283294003751437,0.2871487669248616,0.2910449623234692,0.2944085203499429,0.298063650554072,0.3004073052161345,0.2982496113225754,0.2956301369863013,0.2923734753960465,0.2889572580761102,0.2857185062632947,0.2819970157434757,0.2783367184670854,0.2781566068515497,0.2788329344671317,0.2790297700313835,0.2792031279091417,0.2800448386398946,0.2814022232399351,0.2822498335921899,0.2836258704569303,0.2853780295388117,0.2864671401194905,0.2918661774765251,0.2973179278997953,0.30202816680397,0.3063544849901132,0.3112322448765658,0.3172349659020458,0.3175862843452871,0.320754716981132,0.3266535387466697,0.3325812274368231,0.3374208860759494,0.3418478260869565,0.3498069498069498,0.0,2.3058682743029344,53.22973415909762,137.6499813928841,197.8318395707038,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95740,47353,450.9818257781492,4939,50.3029036975141,3952,40.60998537706288,1496,15.197409651138502,77.33232137485312,79.69648739628522,63.31916690730778,65.07055529517348,77.13916113623641,79.50949904844755,63.24498307209129,65.00129364644563,0.1931602386167128,186.98834783766927,0.0741838352164947,69.26164872784568,244.16766,170.95111789252792,255030.87528723627,178556.84901191358,481.72081,320.79557386663555,502473.6996030917,334393.7012918385,461.46609,225.73605240248963,477402.412784625,232301.09944629003,2240.74732,1065.0551589212455,2303803.008147065,1076370.7158394302,897.25582,409.18949465870537,923552.9245874244,414296.21097772,1452.70138,626.7448824048637,1477544.0568205556,621476.6647304235,0.37879,100000,0,1109853,11592.312513056197,0,0.0,0,0.0,41453,432.23313139753503,0,0.0,41814,432.23313139753503,1106085,0,39642,0,0,9569,0,0,86,0.898266137455609,0,0.0,0,0.0,0,0.0,0.04939,0.130388869822329,0.3028953229398664,0.01496,0.3835563312003102,0.6164436687996897,23.005674519915047,4.052879962447552,0.2990890688259109,0.2884615384615384,0.2125506072874494,0.1998987854251012,11.538538062659509,6.371407743864879,16.0238200439876,11451.7090734477,45.28166259206579,13.986411758282252,13.330964682163923,9.28587603797514,8.678410113644484,0.5812246963562753,0.8096491228070175,0.6996615905245347,0.5392857142857143,0.1189873417721519,0.7443419949706622,0.9188034188034188,0.8674698795180723,0.714975845410628,0.1182795698924731,0.5106922798115259,0.7336309523809523,0.6341176470588236,0.4818325434439178,0.119205298013245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025842150066885,0.0047266936473643,0.0068434733165461,0.0091775754126351,0.0115467567347603,0.0135899186031112,0.0159194745859508,0.0182339789073905,0.0201421195235417,0.0222972972972973,0.0243369862732836,0.0264460094860686,0.0283396230295427,0.0303208198156444,0.0322720425891917,0.0343754844710867,0.0365304368534951,0.0387484308701019,0.04068758379148,0.042755517596942,0.057406827435014,0.0715481521784623,0.084235368156073,0.0970347003154574,0.1083754230943619,0.1236870220125453,0.1351167800333202,0.1459016393442622,0.1553825285441165,0.1646238807570639,0.1761867318691498,0.1872084843893728,0.1982592612740031,0.2081555861827569,0.2167994541773043,0.2263315247480899,0.2345045356660678,0.2426588060574694,0.2510382389651651,0.2582651016318351,0.2634782508071328,0.2693553858210614,0.274924578527063,0.2785585067510093,0.2832477324882526,0.2881938456231984,0.2920392720905509,0.2951853169962886,0.2984333156526126,0.3005785679454907,0.297738456987657,0.2950657487942619,0.2931456376216459,0.2906406781615824,0.2891468042215107,0.286133260012831,0.282676742127229,0.282913577822508,0.2822422912733643,0.2838124054462935,0.2844131069050647,0.2845590990671163,0.2852098698368259,0.285433905033789,0.287037037037037,0.2874837704492339,0.2881091949140543,0.2909734624181471,0.2952570411475238,0.2976214034115645,0.3010543463505136,0.3043961864406779,0.3103426595410248,0.3144220572640509,0.3172951885565669,0.318869241507678,0.321599045346062,0.3245804540967423,0.3312751677852349,0.3285498489425982,0.0,2.6280862460736443,51.3504404772391,143.6288678113333,203.28077919162905,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95723,47890,456.9121318805303,5027,51.24160337640902,3999,41.170878472258494,1522,15.429938468288707,77.41699606751023,79.76951102932554,63.36600846061516,65.10037650767022,77.21216819307452,79.57195090761721,63.28811853605024,65.02858964492518,0.2048278744357077,197.56012170833517,0.0778899245649284,71.78686274504287,244.23168,171.1247813964165,255144.19731934852,178770.80889275984,489.77078,326.0255864811447,511057.4783489861,339995.98474885325,470.83302,229.6215955158389,488514.4009276767,237297.6489199598,2281.05216,1085.469277393344,2347948.016673109,1099214.429241325,917.89375,426.2427167589712,943188.7947515228,429668.0763937034,1478.59404,640.8209263203817,1500566.3215737075,629976.1162361532,0.38054,100000,0,1110144,11597.463514515845,0,0.0,0,0.0,42170,439.9047250921931,0,0.0,42549,441.2001295404448,1101032,0,39498,0,0,9701,0,0,95,0.9820001462553408,0,0.0,0,0.0,0,0.0,0.05027,0.1321017501445314,0.3027650686294012,0.01522,0.3581804281345566,0.6418195718654435,22.995535771806207,4.066343053829796,0.3163290822705676,0.2835708927231808,0.1997999499874968,0.2003000750187547,11.584403649813218,6.336687520757875,16.274659556533173,11495.531060540694,45.8535724708401,13.995322055871924,14.29177605273352,8.760456449653569,8.806017912581092,0.5863965991497875,0.8156966490299824,0.6877470355731226,0.5619524405506884,0.1260923845193508,0.7463768115942029,0.9191919191919192,0.8708791208791209,0.6538461538461539,0.1791044776119403,0.5143271672107363,0.7355242566510172,0.6137624861265261,0.5348460291734197,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0043157158921678,0.0066638266796494,0.0087734440845256,0.0109402960793883,0.0133146033103279,0.0151159946181758,0.0174525413349663,0.0197334804913442,0.0216374927107737,0.0238041562487191,0.0259344403620763,0.0282383659371498,0.0303897842541578,0.0325159639766033,0.0346078330060969,0.0366405416878047,0.0386047524711397,0.0405649787977051,0.0424020169608067,0.0571073543078513,0.0704636537716994,0.0841000891779887,0.0973821769265558,0.1098664641478387,0.125793281435099,0.1366437883883013,0.1484730102296073,0.1583294157869994,0.1677444955653507,0.1797329312944217,0.1905405990304709,0.2016674275527729,0.2101899695218536,0.2187805601643793,0.2271510135434186,0.2359052098892034,0.2436754739882444,0.2512839699329954,0.2586358799501127,0.2644617589938037,0.2697116283417461,0.2754553298112493,0.2805648635710866,0.2845186254412246,0.2883360823219517,0.292682317370282,0.2961132986155214,0.3000245519273263,0.3028487139301189,0.3003076427045689,0.2959283097064595,0.29262361903691,0.2902429874177537,0.2887396004804912,0.284762748632711,0.2806868170852845,0.2807739407298555,0.2807109873692788,0.2807427882911616,0.2820961023504909,0.2829896503057864,0.2852656100503348,0.2856889676561808,0.2875474038209268,0.2892096006621146,0.2894751708942997,0.293850367235155,0.2988150258887306,0.3029255841350873,0.305323262296556,0.3097888877218779,0.3131181190520619,0.3171026765461969,0.3208422224283461,0.324610374505699,0.3290303212248574,0.3322141023108829,0.3393810032017075,0.3465530022238695,0.0,2.3520329289974344,53.8955342673042,144.18706146500574,200.63417320847097,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95698,48206,458.8810633451065,4988,50.99375117557316,3973,40.96219356726369,1501,15.277226274321304,77.3508434030137,79.74173564960338,63.31502979323547,65.0829395859471,77.15976282582047,79.55465972947357,63.24279344652994,65.01489484373431,0.1910805771932331,187.07592012981425,0.0722363467055231,68.04474221279122,243.84404,170.81365196117702,254805.78486488748,178492.39478482,489.02759,325.3195932107964,510475.2241426153,339407.9115663823,473.45717,231.06331997913617,491365.1173483249,238838.0143364685,2288.9362,1084.567887083713,2361588.5389454323,1103079.1522118675,922.46093,420.62779260666514,949602.7398691718,425210.2370025121,1456.0952,620.8467193707505,1483870.425714226,617204.5532322736,0.384,100000,0,1108382,11582.081130222155,0,0.0,0,0.0,42060,438.9433425985914,0,0.0,42761,443.4575435223307,1101052,0,39513,0,0,9560,0,0,103,1.076302535058204,0,0.0,0,0.0,0,0.0,0.04988,0.1298958333333333,0.3009222133119487,0.01501,0.3590830283182431,0.6409169716817569,23.365354052458247,4.085130660210767,0.3171406997231311,0.2791341555499622,0.198338786810974,0.2053863579159325,11.703520759851004,6.519106549812101,15.961001392118856,11644.611683775734,45.5547405119228,13.593413589965444,14.29744067324669,8.790767337132163,8.873118911578496,0.5889755852001006,0.8088367899008115,0.7023809523809523,0.5977157360406091,0.1066176470588235,0.7576530612244898,0.91220556745182,0.8771428571428571,0.7311827956989247,0.1271676300578034,0.518055058991777,0.7336448598130841,0.6351648351648351,0.5564784053156147,0.1010886469673405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020867733014577,0.004360568293598,0.0069638307159751,0.009218229124319,0.0116279069767441,0.0139259591287871,0.0161380815881014,0.018373266335764,0.0203822828565876,0.0225517707543884,0.0250230745564557,0.0271155801604338,0.0293146542413676,0.03142418528936,0.0338503772046606,0.0358715653234643,0.0382081140441755,0.0403657726480112,0.0421685493769373,0.0439786100716124,0.0584911375481768,0.0732825866166877,0.0864184572106351,0.0992688443532691,0.1109399888184474,0.1264375112408882,0.1387677121477471,0.1491412081651776,0.1593219252022787,0.168460473650889,0.1802886429041054,0.192394293013488,0.2028942930199662,0.2119398084815321,0.2208642994770162,0.2302284320248392,0.2384435015631978,0.2462816803089498,0.2536059057353776,0.260041265474553,0.2669290882778581,0.2724728967148243,0.2777540867093105,0.2825085754035837,0.2864781441018848,0.2914202641435048,0.2949575524186994,0.2989765431313966,0.3031886006878895,0.3074326996598729,0.3046181172291297,0.3012038258575198,0.2990161630358398,0.2956985373585993,0.2924866096528867,0.2883791162698473,0.2845882204565519,0.2844023204510172,0.2851552530837941,0.2860543190578539,0.2868646200301962,0.2872561717492837,0.2870262632978723,0.2886513340282552,0.2897002360909069,0.291577287881529,0.292987539028438,0.298413880870348,0.302355386214063,0.3068669527896995,0.3109480560153908,0.3145549738219895,0.3170988956446209,0.3219765342960289,0.3279739776951673,0.3344697860333882,0.3307169811320755,0.3322174084285151,0.3356475300400534,0.325113808801214,0.0,2.15821849498682,51.04140024532835,149.17943915358435,202.98988631522693,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95717,47704,454.1826425817776,4925,50.24185881295904,3902,40.10781783800161,1454,14.83540019014386,77.26691653433518,79.6273851333244,63.2951211478972,65.0394255553852,77.08976788354954,79.45402233765202,63.22861644903187,64.9770154084132,0.1771486507856394,173.3627956723751,0.0665046988653301,62.41014697199887,243.93578,170.9078003737009,254850.82064836967,178555.11516829918,485.06608,322.0433058043968,506098.4778043608,335782.29179960384,468.41488,228.73655440893384,484902.22217578907,235622.1663049296,2199.57552,1046.0633520368474,2263333.5771075147,1058278.773506116,892.43147,408.7537325483268,915965.7114201238,410684.2219668455,1406.22052,589.0028152942033,1435330.5055528276,585810.4910215575,0.38073,100000,0,1108799,11584.128211289531,0,0.0,0,0.0,41730,435.2936260016507,0,0.0,42378,438.3547332239832,1101863,0,39595,0,0,9628,0,0,84,0.8671395885788313,0,0.0,3,0.0313423947679095,0,0.0,0.04925,0.1293567620098232,0.2952284263959391,0.01454,0.3634948433547382,0.6365051566452617,23.064478004397422,3.9822119369055593,0.3147104049205536,0.292157867760123,0.1998974884674526,0.1932342388518708,11.566308243192308,6.41515979022731,15.40780527465461,11571.749720541196,45.13570558748136,14.17604736333981,14.02090115266471,8.745642031276827,8.193115040200002,0.5927729369554074,0.8219298245614035,0.6938110749185668,0.5615384615384615,0.1140583554376657,0.7745098039215687,0.9238476953907816,0.8543956043956044,0.7238095238095238,0.1589403973509933,0.5097087378640777,0.7425897035881436,0.6261574074074074,0.5017543859649123,0.1028192371475953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0046436646422451,0.0069204854487153,0.0090104732784104,0.0113296584830055,0.0135521774103224,0.0157500382282481,0.0178846683884402,0.0200157427189924,0.0220991647559777,0.0242944860742365,0.0266621493983819,0.0287212710165047,0.0306526038233355,0.0329522944866292,0.0350209836472266,0.0369998343136442,0.039072064407694,0.041194997972994,0.043323782234957,0.0576404987156193,0.0709911758240608,0.0841868860716984,0.0976461799088776,0.1097582848883215,0.1255767684036743,0.1364900732561843,0.1482372989668761,0.1581406787998032,0.167353642042893,0.1801325931116261,0.1916726256256907,0.2027394873805013,0.211338851662068,0.219672347879736,0.2297295797778492,0.2377822490498546,0.2464523830975763,0.2546185377374558,0.2611346006210397,0.2671987969228989,0.2733876911198717,0.2784023668639053,0.2831631430078143,0.2874216586503425,0.2918848974058783,0.2946339142628205,0.2982069913340035,0.3015480277220027,0.3041209190481853,0.3010549604727086,0.2982161074195594,0.2950065610317046,0.2927199410310888,0.2895686927065535,0.2854823641125388,0.2816852312518815,0.2819392665341851,0.2819767938618226,0.2820851321939558,0.2828906732550957,0.2831168318395388,0.2841606772415816,0.2847126077441829,0.2877133926424621,0.288270222407417,0.2889420748212098,0.2936195662438225,0.2970930027197909,0.3010520420816833,0.3064685714285714,0.3094920854873954,0.3139103652020868,0.3181508147025388,0.3254835996635828,0.3321608629382108,0.3325272067714631,0.3381912557396686,0.3389599782194391,0.3459480122324159,0.0,2.566224951529512,52.98734142990274,143.10251042217007,194.92572538165356,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95704,47332,449.6259299506813,4946,50.53080331020647,3927,40.46852796121375,1484,15.129984117696232,77.288290147924,79.65725526845856,63.294707477804174,65.0438959915434,77.09567520869642,79.4680083321868,63.22128633784507,64.97388200113357,0.1926149392275817,189.2469362717577,0.0734211399591018,70.01399040981937,242.01364,169.53233552196042,252877.24651007276,177142.3718151388,481.71814,321.077134758476,502780.7301680181,334928.8062760971,464.50805,227.28651833873275,481872.9624676085,234733.4258664144,2243.11068,1073.5602216267328,2312182.3957201373,1090132.6816295376,901.16238,418.9381688228011,925820.7075984284,421952.0244887188,1442.54608,618.8789948743971,1472134.351751233,618284.822030139,0.37768,100000,0,1100062,11494.420295912398,0,0.0,0,0.0,41479,432.8241243835159,0,0.0,41966,434.9974922678258,1109533,0,39867,0,0,9591,0,0,101,1.0553372899774305,0,0.0,1,0.0104488840591824,0,0.0,0.04946,0.1309574242745181,0.3000404367165386,0.01484,0.3526336173508907,0.6473663826491092,23.156876295593797,4.043665447044993,0.3139801375095493,0.2844410491469315,0.2006620830150242,0.200916730328495,11.331572846595362,6.142579028112596,15.920835728648466,11480.550494381005,45.45337826156587,13.877591200569736,14.206350658648866,8.802051152333435,8.567385250013835,0.5961293608352431,0.8155774395702775,0.7193836171938361,0.5774111675126904,0.1115335868187579,0.7776037588097102,0.9289827255278312,0.8654353562005277,0.7619047619047619,0.1257485029940119,0.5086792452830189,0.7164429530201343,0.6545667447306791,0.5103806228373703,0.107717041800643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021369469004142,0.0045113086850295,0.0067581280188334,0.0089904305247973,0.0113599381661378,0.0137767414391756,0.0161191655961338,0.0184964017761445,0.0208833781394065,0.0228317044466049,0.0250886506651362,0.0273757467512471,0.029703581085944,0.0318019381880722,0.0338727810956049,0.0357681734565221,0.0378124288169638,0.0399331679828976,0.0420922347263536,0.0441361916771752,0.059154046997389,0.0730162386272025,0.0858468190500178,0.098543525846102,0.1103862515966262,0.1260468612690446,0.1373367314431347,0.1472377603750466,0.1569914778498946,0.1668241560003436,0.1789496387361156,0.1901630464221873,0.2014921309154277,0.2101984057463209,0.2190047142794202,0.2283929383828408,0.2362070893436207,0.2442775635387772,0.2515756183022001,0.2582593617583225,0.2632903465231711,0.2685480467101252,0.2736880812298349,0.2785670537655069,0.2832901191736965,0.2869246254739468,0.2906719883525366,0.2940403937369307,0.2968983290705373,0.2999272631091714,0.2977530361643909,0.2934876989869754,0.290292523153377,0.2883797006629418,0.2853846955330961,0.2816253983819564,0.277927257763287,0.2792429311815259,0.2796332342997644,0.2795883055956904,0.2807375514788469,0.2809764176985567,0.2815734989648033,0.2828539010878996,0.2836586646303632,0.2852459016393442,0.2863722415303326,0.2912269747112082,0.2954656435298221,0.2982123830945898,0.302863885989198,0.3068259927034315,0.310983596332564,0.3159481459149834,0.3199742030587801,0.3196702275894101,0.3313883901855176,0.3320747217806041,0.3362808145766345,0.3298585256887565,0.0,2.1483267011344607,55.85447049559105,140.43342577043703,192.43469881729624,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95821,47780,454.4932739169911,4992,50.917857254672775,3997,41.03484622368792,1518,15.361977019651224,77.36488025655099,79.68032539507624,63.35773544642036,65.0715057183468,77.16954621657592,79.49129988109144,63.28339987891184,65.0027559130692,0.1953340399750658,189.02551398480227,0.0743355675085126,68.74980527760499,243.03334,170.27239933233693,253632.4187808518,177698.2001172362,488.06365,324.58459104567146,508685.7369470158,338077.8052458975,464.14534,226.70324082818647,480349.077968295,233486.56012007955,2267.19264,1072.9021303622046,2327755.210235752,1081427.965020407,902.66482,413.2593730153649,923070.7673683222,412321.09142606,1471.98322,632.5276641221508,1490366.454117573,620199.6883963177,0.38176,100000,0,1104697,11528.746308220536,0,0.0,0,0.0,42016,437.7850366829818,0,0.0,41951,433.87148954822015,1110329,0,39839,0,0,9920,0,0,98,1.0123041921916909,0,0.0,2,0.0208722513853956,0,0.0,0.04992,0.1307627829002514,0.3040865384615384,0.01518,0.3684514637904468,0.6315485362095532,23.312356236449972,4.089754905298899,0.3207405554165624,0.2777082812109082,0.1983987990993244,0.2031523642732049,11.57393003730673,6.392873245479389,16.31661897643827,11590.7040143735,45.84567496547197,13.599151769057023,14.492342852191952,8.857365772330521,8.896814571892488,0.5864398298724043,0.8081081081081081,0.6981279251170047,0.5838587641866331,0.1096059113300492,0.7583892617449665,0.915948275862069,0.8497109826589595,0.7647058823529411,0.1629213483146067,0.5133689839572193,0.7306501547987616,0.6420940170940171,0.5212224108658744,0.0946372239747634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991998379418,0.0045926436595157,0.0068897637795275,0.0092329256896761,0.0112974242686163,0.0137763206125524,0.0158107198923525,0.0179165730853257,0.0201790971540726,0.0224064691130559,0.0244127413602262,0.0264670265388641,0.0288084030504224,0.0310724578015644,0.0332223516435941,0.0354816397741232,0.0376201164703083,0.0394044263925729,0.0413789522870048,0.0433339575920261,0.0579829566196948,0.0721236764260105,0.085441612453775,0.0986915338247957,0.1107705917664528,0.1258368355472957,0.1374711328629843,0.1487583978229441,0.1587565739644339,0.1680448148068807,0.179714479360537,0.1920952205922098,0.2020687107499076,0.2114804945174959,0.2200780262651794,0.2300147076712116,0.2387599144461278,0.2467319527424644,0.254271834765771,0.260697586683891,0.2676534429409319,0.2729267324883878,0.2781019656019656,0.2824228511304805,0.2867421347019498,0.2913775284216743,0.2950104937037777,0.2984039919247324,0.3017892900975389,0.3045629177411715,0.3011590271155938,0.2984472177602043,0.2960232947432092,0.2943340691685062,0.2910851101740215,0.2867371448678916,0.2833449389124517,0.2830597504924491,0.2833988716019832,0.2848316011286117,0.2850491852519336,0.2857567176887586,0.2857412336777682,0.2864260976427215,0.2871268165385812,0.2880141254673868,0.2893797790994052,0.2916275577247982,0.295505382357053,0.3002178649237473,0.3041678041678041,0.3084196547144754,0.3100271344734019,0.3120756732016172,0.3157944277108434,0.3157956963821234,0.3225114854517611,0.3265761200081086,0.324700109051254,0.3272311212814645,0.0,2.619489017133056,51.34342750537702,148.45529761415386,204.61482618940053,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95624,47364,451.6334811344433,5003,51.085501547728605,3957,40.65924872416967,1497,15.153099640257675,77.2563444549925,79.66720090798209,63.27473565930678,65.05593694691305,77.06054277692009,79.47961155380509,63.20011424239922,64.98808408800676,0.1958016780724136,187.58935417700684,0.0746214169075543,67.85285890629211,243.65132,170.65657084823235,254801.20053543043,178466.04415227586,481.96095,320.62940622599257,503232.0860871748,334519.4604677184,456.39276,222.74438696753907,473639.8289132436,230071.3935749441,2250.8208,1050.514549497057,2313536.6016899524,1058432.8694570258,918.3499,413.69627926137616,939381.7869990796,411821.97528987593,1459.45978,621.1782258403351,1479291.684096043,607196.8144807084,0.37825,100000,0,1107506,11581.872751610475,0,0.0,0,0.0,41501,433.1757717727767,0,0.0,41318,428.37572157617336,1104147,0,39656,0,0,9598,0,0,79,0.8261524303522129,0,0.0,3,0.0313728771019827,0,0.0,0.05003,0.1322670191672174,0.2992204677193684,0.01497,0.3490783410138249,0.6509216589861752,23.457234603965123,4.0466911780834005,0.3073035127621936,0.2886024766237048,0.1956027293404094,0.2084912812736921,11.23321733322084,6.052380219916892,15.942525669776568,11542.684875626886,45.07891998445405,13.94406412230276,13.733232902221712,8.538299622603013,8.863323337326571,0.5797321202931514,0.8064798598949212,0.6891447368421053,0.5555555555555556,0.1272727272727272,0.7772848269742679,0.9247311827956988,0.8765432098765432,0.7595628415300546,0.1483870967741935,0.5010600706713781,0.725258493353028,0.6210762331838565,0.4923857868020304,0.1223880597014925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024307489745277,0.0047332840071759,0.0071443793827824,0.0093464590127294,0.0115169396683284,0.0137322616464451,0.0159233719601762,0.0181351914667538,0.0202115254792054,0.022547995164628,0.0248214578886882,0.0269864759320919,0.0294229680341792,0.031301873369694,0.0334383554568462,0.035336968781366,0.0371844710516767,0.0389549680569261,0.0408125039022664,0.0427154286667987,0.0564903846153846,0.0713582264688626,0.0842056634083344,0.0966943888830403,0.1097344759170923,0.1248835831004995,0.1369373003152498,0.1477501464401725,0.1590311477863052,0.1681602077721375,0.1808683838830366,0.1916484278501311,0.2020718051501024,0.2118010652521754,0.2207870993359952,0.2303269134706111,0.2382193389631452,0.2457285186186998,0.2530713368412678,0.2594168654799045,0.2654539974030792,0.2711107464366091,0.2768639635686586,0.2810133570151331,0.2854552534865042,0.2892290599345719,0.292692095634304,0.2960599228035311,0.2995254887724939,0.3018763286810241,0.2996832243715037,0.2962814929158167,0.2939133381337625,0.2914258398157403,0.2890623835987901,0.2856923360580173,0.2824259153499587,0.2814658859135469,0.2816215196170935,0.2815031180560533,0.2824153299358745,0.2835081180738655,0.2841760594421006,0.2852997634034195,0.2873982666314551,0.2894052817633604,0.2906209094530761,0.2952599052608464,0.2975272904823353,0.3012759924385633,0.3058052857465552,0.3090861206215433,0.3131799424784294,0.3155956407365652,0.3191567369385884,0.3198790275677562,0.3230266091868589,0.3283346487766377,0.3254390633315593,0.323719165085389,0.0,2.7608728205258166,48.35074560101854,145.52205145045463,210.4656662569841,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95700,47628,452.675026123302,4901,50.12539184952978,3895,40.19853709508882,1492,15.266457680250785,77.32722884548278,79.7037905015653,63.32110870231941,65.07608073377817,77.1381540634869,79.51783084215351,63.25010810732359,65.00865695671985,0.1890747819958846,185.95965941177892,0.071000594995823,67.42377705832325,244.07636,170.87125669541263,255043.2183908046,178548.8575709641,485.70545,323.75365411747754,507041.473354232,337812.84651774034,462.14232,225.28328720747865,480157.4817136886,233273.19884109905,2233.9934,1042.7684512403775,2306960.167189133,1062211.0044309066,874.92238,396.3504471582913,899948.6938349007,399873.5289010352,1462.38428,619.572120072668,1497709.7805642637,619983.4285570033,0.38031,100000,0,1109438,11592.87356321839,0,0.0,0,0.0,41858,436.8756530825496,0,0.0,41846,434.440961337513,1101494,0,39586,0,0,9540,0,0,87,0.9090909090909092,0,0.0,0,0.0,0,0.0,0.04901,0.1288685546001945,0.3044276678228932,0.01492,0.3470622682022252,0.6529377317977747,23.369861880440983,4.144434440666355,0.2973042362002567,0.2793324775353016,0.2087291399229781,0.2146341463414634,10.99614587738404,5.658951764176512,15.966785821695243,11465.81992081636,44.70700638522731,13.472133054691833,13.074158771349303,9.004928353403823,9.155786205782348,0.5643132220795892,0.7941176470588235,0.6899827288428325,0.5571955719557196,0.0980861244019138,0.7486910994764397,0.9157427937915744,0.8626198083067093,0.7525252525252525,0.1413043478260869,0.4874499818115678,0.7080062794348508,0.6260355029585799,0.4943089430894309,0.0858895705521472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0047430349342765,0.0072740184640357,0.009547315071554,0.0118363653003325,0.0141427305957459,0.0163767258784899,0.0187309141789139,0.0208823348945656,0.0229797953938003,0.0250643530340789,0.0272277227722772,0.0293866551465218,0.0315198351365275,0.0334895145310435,0.035574307903908,0.0377921432123321,0.0398559000020763,0.0419704802421493,0.0440293529019346,0.0588911172390741,0.0726755138778415,0.0859408599330767,0.0981378221988427,0.1102837253454277,0.1258516355634547,0.1369169540992305,0.1470679061644783,0.1570760058975619,0.1656279164565924,0.178015941404567,0.1898251880716566,0.1994931642430636,0.20869650805455,0.216907112123513,0.2262324138695026,0.2353092150780012,0.2432493224017904,0.2501786909610737,0.2573345853468612,0.2623472505091649,0.267989987367239,0.2734834412011784,0.2780459756345907,0.2819784037216534,0.2868410026372218,0.2900941035138653,0.2938654521398402,0.2963969912352248,0.3001108150180734,0.297905300734155,0.2949273269804601,0.2921031880139687,0.2885569985569985,0.2855657855657855,0.2822725252494291,0.2794336339186837,0.27948827013055,0.2792593475042121,0.2796418992131019,0.280620992992396,0.2817372156577473,0.283147472642001,0.284767475479839,0.2865081075902373,0.2879677754677754,0.2887594145232343,0.2924575581031134,0.2953387760798269,0.2992530529976682,0.3015216897569839,0.3079161816065192,0.3135412752098209,0.3177024053418317,0.3192488262910798,0.3257897218293258,0.3286649413913837,0.3299196787148594,0.330237639989074,0.3268719118206005,0.0,1.946834618774712,50.25765447186491,145.87154685305896,200.04044555079452,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95773,48131,458.0831758428785,5069,51.69515416662316,4051,41.67145228822319,1533,15.557620623766615,77.38146625236273,79.7074551003464,63.35451413110488,65.06907414577267,77.1821967390807,79.51370651665093,63.278988077468966,64.99904484472476,0.199269513282033,193.74858369546644,0.0755260536359117,70.02930104791005,242.66352,169.99118168062094,253373.16362649185,177493.42708091292,486.73674,323.62729460879746,507591.941361344,337285.5224931561,468.39434,228.7431362166688,486297.2549674752,236549.50471921416,2318.15572,1092.1080535013905,2384778.883401376,1104764.0350134082,905.59254,409.5054652863259,927642.7803243086,409882.7475414279,1494.04852,639.8000800033232,1517345.8908042975,629838.4171297365,0.38271,100000,0,1103016,11516.961983022356,0,0.0,0,0.0,41865,436.4695686675786,0,0.0,42215,437.9417998809686,1110701,0,39885,0,0,9691,0,0,101,1.0545769684566633,0,0.0,0,0.0,0,0.0,0.05069,0.1324501580831439,0.3024265141053462,0.01533,0.3630188679245283,0.6369811320754717,23.22481850263812,3.9153041764128313,0.3117748704023698,0.2927672179708714,0.1878548506541594,0.2076030609725993,10.935188745585728,5.843534181517359,16.40936292760557,11665.978515047344,46.47603323789124,14.622867868681857,14.329964677928931,8.493432957377989,9.029767733902458,0.5781288570723279,0.790893760539629,0.6975455265241488,0.5624178712220762,0.1129607609988109,0.7579564489112228,0.9008097165991904,0.8487394957983193,0.7071823204419889,0.1790123456790123,0.5029751487574379,0.7124277456647399,0.6379690949227373,0.5172413793103449,0.09720176730486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781119008565,0.004783331306498,0.0068573051602235,0.0093529125030465,0.011510264675079,0.0137019769122707,0.0158798108284409,0.0180307962326146,0.0202390682468328,0.022579391062367,0.0246998319878703,0.0269219325515302,0.0289496130802511,0.0309755921804387,0.0329395026599035,0.0352266859444387,0.0373471035039427,0.0392837888276033,0.0413571717969228,0.0435027072053311,0.0580696334641396,0.0716416036166138,0.0853996224040277,0.0979394449116905,0.1105429625724828,0.1266673013253789,0.1386275154614022,0.1492553202814772,0.1592569646214322,0.1688342321671723,0.1810087742907896,0.1927710843373494,0.2032558341851714,0.2124941204782375,0.2218701172949539,0.2311672483518918,0.2401607322245786,0.2483741758365399,0.2566044161889084,0.2631995140790997,0.2689639999536828,0.2741108431478142,0.2790254412861523,0.2837287323268632,0.2878861472702545,0.2927724345159662,0.2968787109838873,0.2999504340200551,0.302904403199503,0.3070273689203969,0.3041081894929289,0.3014266686805718,0.2985798650168729,0.2955155785279085,0.2933507557984142,0.2896648771012098,0.2856894782540058,0.2854595717533901,0.2859185375568075,0.2855721569811857,0.2856849915179986,0.286292223095051,0.2878980361122102,0.2889788834249349,0.2903364557445995,0.2934658796727762,0.2946297343131713,0.298810117119362,0.3011867887098458,0.3052137561129516,0.3111261872455902,0.3155406115372491,0.3195729095536656,0.3275810324129652,0.3309009261857984,0.3323138454299494,0.3327289211242067,0.3290025984409354,0.334057577403585,0.3342215454891511,0.0,2.397776181015221,51.67199520447261,155.8734698674981,202.76647937959115,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95746,47945,456.1652706118272,4895,49.75664779729702,3916,40.20011279844589,1493,15.112902888893531,77.31912755708531,79.66767374778523,63.32066847763053,65.05770918285062,77.12129644718142,79.4775709777503,63.24491336867239,64.98770274789163,0.1978311099038876,190.10277003492604,0.0757551089581483,70.00643495898373,243.4795,170.566651334196,254296.61813548347,178144.268101222,483.94304,322.587470999874,504756.27180247736,336232.53579144186,462.82278,226.85805729288091,479233.1063438681,233618.13595640368,2231.8954,1059.348037779681,2292788.2940279488,1068175.45148589,894.67171,415.2545406695692,914455.0790633552,413774.139914692,1437.28222,622.9934169501923,1456119.461909636,612689.0901455438,0.38227,100000,0,1106725,11558.937187976522,0,0.0,0,0.0,41708,434.89023040127006,0,0.0,41819,432.5924842813277,1104630,0,39676,0,0,9622,0,0,87,0.9086541474317466,0,0.0,1,0.0104443005451924,0,0.0,0.04895,0.1280508541083527,0.3050051072522983,0.01493,0.3588338876932107,0.6411661123067893,23.2317444446278,3.984411700596449,0.3335035750766087,0.2676200204290092,0.205311542390194,0.1935648621041879,11.564310190862628,6.595484247291658,16.0756275861658,11618.534096476456,44.85739832510993,12.982744436047271,14.749522423676217,8.841766063172864,8.283365402213583,0.5898876404494382,0.8206106870229007,0.6791730474732006,0.5845771144278606,0.1226912928759894,0.7776838546069316,0.9455337690631808,0.8429319371727748,0.7142857142857143,0.2125,0.5085986095865349,0.7232597623089984,0.6114718614718615,0.5466237942122186,0.0986622073578595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023291375102532,0.0047527842803433,0.0069092163467391,0.0093542424180869,0.0115833257060337,0.01362622590205,0.0157940351771603,0.01808397663685,0.0200200404899695,0.0220616087058895,0.0243509822417257,0.0265530341924222,0.0288373528050599,0.0310697214438767,0.033244255512335,0.0353555188094253,0.0371651000041409,0.0395411073999543,0.04179222344604,0.0437015049731812,0.0581303104319325,0.0718940574692204,0.0857334647899142,0.0982155062725427,0.1104727165387534,0.1257414750198255,0.1383190852972995,0.1493966673051139,0.1596010507656493,0.1688411934346087,0.1809909434531181,0.1920304755308326,0.2028172078098656,0.2120589167969732,0.220447143737347,0.230007641449882,0.2386953464230301,0.2465146110654769,0.2545175936435868,0.2612574438845625,0.2675681307740397,0.2723920779099166,0.2778067328421501,0.2833467340301696,0.2880020428263962,0.2912137401754537,0.2956677479553624,0.2979980642860781,0.3017872649273559,0.30580268750495,0.3031421298603348,0.3002063841496973,0.2980321953144823,0.2949112836753286,0.2928296617596815,0.2887857766343548,0.2848617245254943,0.2846994356214726,0.2839769393463874,0.2845262951264343,0.2848799116419251,0.2861678630590833,0.2866534073066052,0.2870709688952449,0.2889518413597733,0.2904753232562375,0.2910956956843122,0.2940035052578868,0.2977547737287543,0.3037171350861287,0.3067221192531983,0.3108543084797636,0.3153282844088377,0.3174831528734761,0.3172349369453526,0.3186915887850467,0.3189278723083873,0.3236763236763236,0.326729986431479,0.3363397219090567,0.0,2.691550887719804,50.86187196167491,141.3986158965243,202.23458891277895,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95676,47953,457.0738743258497,5003,51.10999623730089,4013,41.30607466867344,1548,15.824240143818722,77.34181859432726,79.72509801815542,63.3271521787835,65.08579205165191,77.1433849615848,79.52865134922504,63.25178224807527,65.0136835753517,0.1984336327424642,196.44666893037763,0.0753699307082342,72.10847630020112,242.27962,169.76674981998485,253229.25289518796,177439.2217692889,489.37175,325.83536714161016,510838.6115640286,339911.33318868896,467.98295,228.25216869726736,484902.4729294703,235371.3101526887,2290.88288,1082.3817839264711,2360823.905681676,1097705.5728986077,915.47167,413.19491269920775,944002.153100046,419036.2770664047,1500.12642,640.5215049470995,1535159.747481082,641692.8813531636,0.38291,100000,0,1101271,11510.420586144906,0,0.0,0,0.0,42050,438.8143317028304,0,0.0,42369,438.5843889794724,1108833,0,39787,0,0,9450,0,0,85,0.8884150675195451,0,0.0,0,0.0,0,0.0,0.05003,0.1306573346217126,0.3094143513891665,0.01548,0.3598701794578083,0.6401298205421917,23.180614930215626,4.100944884215166,0.3184649887864441,0.2723648143533516,0.2040867181659606,0.2050834786942437,11.244353349110687,6.090485995458454,16.552686335622408,11590.817222045616,46.19192742324125,13.494581442075765,14.604223262677346,9.162697447961346,8.930425270526799,0.5768751557438325,0.8060384263494969,0.6940532081377152,0.568986568986569,0.0984204131227217,0.7594728171334432,0.934065934065934,0.8586666666666667,0.7450980392156863,0.1277777777777777,0.4976777420507324,0.7147335423197492,0.6256921373200443,0.510569105691057,0.0902021772939346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265607436886,0.0046626189728047,0.0069295780363828,0.0092015193678779,0.0114796437141578,0.0139895740001629,0.016257427962776,0.0183844921041617,0.0205643966107584,0.0228173079875932,0.0249982056251089,0.0269698463560923,0.0285388010411415,0.030655881292184,0.0327192031790266,0.0347959204782887,0.0367361319806422,0.0390904843482323,0.0411556027173517,0.0433168961958278,0.0577383128754243,0.0720299051328768,0.0852890549561274,0.0976808300187301,0.1099436673207165,0.125684909771732,0.1370649405772495,0.1474514563106796,0.1574487637039728,0.1669705484888135,0.1792430476272537,0.1911540416878495,0.2019162796767773,0.2116402116402116,0.2203167968320316,0.2297563676633444,0.2385799265633196,0.2458920517809544,0.2528251792684033,0.2594458438287154,0.2649694194905946,0.2709451166052954,0.2768319500602965,0.2815190964944848,0.2849164724164724,0.2888270289578381,0.2932582864290181,0.2974090232640964,0.3014814431120665,0.3059439636977628,0.3027158699397071,0.3004716137991722,0.2976071433601397,0.2951316701316701,0.2927401163480945,0.2887739011956338,0.2854320753524243,0.2850613501957636,0.2855852016025914,0.2861006334068749,0.2871449618619571,0.2881966309823677,0.2897662099313854,0.2898950978863672,0.291170136396267,0.2919859722041824,0.2934649981555574,0.2986878777440265,0.3028329306299681,0.3075402317029773,0.3113297365915582,0.3141546250395527,0.317687286291576,0.3193492505837162,0.324840174186973,0.3237410071942446,0.330141358869129,0.3289973984390634,0.3268599562363238,0.322592873388931,0.0,2.4360998854700284,52.79474521195678,149.89121422225327,201.94226356351737,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95674,47789,456.0695695800322,5045,51.44553379183477,4043,41.61005079749984,1521,15.479649643581327,77.38307130315455,79.75728113169839,63.34642469116329,65.09645112211287,77.18674183358839,79.5650254537537,63.27222583002068,65.02608071826373,0.1963294695661659,192.25567794468645,0.0741988611426123,70.3704038491395,242.59708,169.93731854796224,253566.3607667705,177621.21218717963,483.46737,321.59484696909544,504667.5481321989,335475.7896284209,467.98293,228.874998768663,484728.0765934319,235924.2133415996,2295.26208,1098.9712841667556,2364434.517214708,1114052.181540184,939.44977,431.0116254008609,965494.2199552648,434174.4868744275,1471.17396,633.3864355048811,1499304.555051529,631031.0139521845,0.38169,100000,0,1102714,11525.74367121684,0,0.0,0,0.0,41602,434.14093693166376,0,0.0,42437,439.1057131509083,1112532,0,39949,0,0,9674,0,0,63,0.6584861090787465,0,0.0,1,0.0104521604615674,0,0.0,0.05045,0.1321753255259503,0.3014866204162537,0.01521,0.351371807000946,0.6486281929990539,22.952021876796657,4.003307864106768,0.3208013851100668,0.2755379668562948,0.2067771456838981,0.1968835023497402,11.534176466610768,6.4254339614507865,16.348632733638677,11611.303366558075,46.46534220782584,13.642422855489134,14.68915373539328,9.397945294040568,8.735820322902846,0.5874350729656196,0.8061041292639138,0.694680030840401,0.5717703349282297,0.1231155778894472,0.7597145122918318,0.920997920997921,0.8537859007832899,0.7441860465116279,0.1538461538461538,0.5093457943925234,0.7187993680884676,0.6280087527352297,0.5120772946859904,0.1140065146579804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348582245933,0.0045083378923267,0.006724069735601,0.0087940208781835,0.010787453611916,0.0131213290308132,0.015311219392852,0.0173830497402239,0.0195946153138511,0.0218047806725699,0.0240011482821903,0.0260720446890659,0.0279843263089691,0.0300561363753411,0.0319805228299667,0.0339713512061018,0.0362773737750429,0.0383497664763881,0.0405361841079023,0.0426354569424614,0.0580818368903235,0.072254093212177,0.0858983235769287,0.0985868102288021,0.1107502846779975,0.1264471110641222,0.1380564183566378,0.1483147740446486,0.1583126127183668,0.1681757299758907,0.1803617348640535,0.1928267122250816,0.2034738375252711,0.2126415424299392,0.2202496837705549,0.2299783969423364,0.2390481401659389,0.2463289941894509,0.2541210662549384,0.2613163773844303,0.267430290408423,0.2733485460183722,0.279186254425748,0.2836067933218192,0.2879786070256472,0.2915747031479266,0.295982478097622,0.2995495495495495,0.3027442143569421,0.305913715967429,0.302894574018777,0.2992195229196438,0.2956498502130771,0.2931872952653073,0.2902034642306323,0.2870082776137215,0.2839164598188171,0.2844830411273144,0.2854802655154173,0.2865134509175129,0.287366813203189,0.2884064229908523,0.2888112179087088,0.2887064566230308,0.2904292785075195,0.2917622792316617,0.2930578233207589,0.2983137169653116,0.3040972222222222,0.3092702787347322,0.3126745338257815,0.3152856246076585,0.3176010915405606,0.3223826984958467,0.3239915464485895,0.3255599168783191,0.3270682255438804,0.3272797527047913,0.3331573389651531,0.3385740402193784,0.0,2.427776765076559,54.60159339404861,148.71751532498223,199.48195894886237,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95688,47665,454.0903770587743,4968,50.75871582643592,3935,40.47529470780035,1515,15.393779784298973,77.3960056150407,79.78055080711273,63.35197710932333,65.11319697143091,77.21074799932529,79.5993500069954,63.28273357747089,65.04782735447797,0.1852576157154146,181.2008001173382,0.069243531852436,65.36961695293542,243.51008,170.49224534024503,254483.4043976256,178175.15816010893,485.91107,323.4389360756988,507151.1892818326,337357.5537953544,469.04304,229.37000193886496,485628.5427639829,236213.59910260056,2260.37484,1069.981648417455,2326744.8791907034,1082708.8542110347,909.60045,416.1163471827378,930739.5180168884,415053.5532354897,1476.64544,615.6773899217089,1501984.2195468608,610802.9715736432,0.37892,100000,0,1106864,11567.427472619343,0,0.0,0,0.0,41826,436.4288103001421,0,0.0,42351,438.1322631886966,1109823,0,39784,0,0,9546,0,0,103,1.065964384248809,0,0.0,0,0.0,0,0.0,0.04968,0.1311094690172068,0.304951690821256,0.01515,0.3688794271337333,0.6311205728662667,23.237163867060737,3.996809424822979,0.2970775095298602,0.287420584498094,0.2096569250317662,0.2058449809402795,11.767412875939623,6.647051037309681,15.896663450817266,11482.943603676733,45.11788843637069,13.909523240456396,13.38788967662224,9.075942797774797,8.744532721517258,0.5928843710292249,0.830238726790451,0.7254063301967494,0.5503030303030303,0.1135802469135802,0.7695507487520798,0.9237113402061856,0.9009009009009008,0.6952380952380952,0.1781609195402299,0.5151847786315404,0.760061919504644,0.6555023923444976,0.5008130081300813,0.0959119496855346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0048062298472957,0.0070136619232252,0.0093878587757175,0.0116167883954183,0.0139188693845965,0.0161403794977415,0.0182135601180206,0.020037211965078,0.0223546029601424,0.0245847857289317,0.0265613930613879,0.0286011066087993,0.0306953843618347,0.0327177053239785,0.034608228240645,0.0368855006111329,0.0391006944084034,0.0409963080443034,0.0431266284523189,0.0578447654560837,0.0716236722306525,0.0846540313191596,0.0975050729132715,0.1095709918836302,0.1249550559421332,0.1364494706244297,0.147089192382615,0.1571138645588549,0.1670813315030885,0.178711810379177,0.1896598345140879,0.2001477907456912,0.209469059432993,0.2176097448356988,0.2277697841726618,0.2367173997881474,0.2439742120987487,0.250832446145831,0.2570256339927543,0.2631445321515949,0.2693003231790552,0.2740256367885555,0.2793936568279357,0.2835441197848524,0.287737181455327,0.2915711294985544,0.2952144503838066,0.2976839500444651,0.3005635319925913,0.2983638629450467,0.2952532208819945,0.2930277571286309,0.2906280582580162,0.2889306371207527,0.2850391059749051,0.2815647212722029,0.2819620718380948,0.2820216508335741,0.2819739060974527,0.2828856685169318,0.2842090805635129,0.2848774407976734,0.2858755311614731,0.2877466399771232,0.2894478590981871,0.289363979494113,0.2926030984071568,0.2971206009180693,0.3017893741131957,0.3039122353687837,0.3056669480793584,0.3074658649630464,0.3124054462934947,0.317551096943559,0.3207301173402868,0.3211678832116788,0.3255297679112008,0.3297609233305853,0.3382013835511145,0.0,2.482788467279147,51.921232215344325,146.7153797109613,194.7357101418534,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95821,47874,455.9543315139688,4920,50.03078657079346,3896,40.06428653426702,1493,15.163690631489969,77.38566316619061,79.70530475558482,63.36611244363343,65.08360748996158,77.19555781895922,79.51978586847937,63.29351270322293,65.01517129534841,0.1901053472313947,185.5188871054452,0.0725997404104958,68.43619461317019,243.61392,170.6689259563369,254237.4009872575,178111.14241374735,488.58675,325.4925337335005,509280.0012523351,339074.6062432812,469.40785,229.5165363561074,486099.36235272017,236617.79961911807,2221.26892,1059.3107203343884,2286276.285991588,1073741.7685717118,905.73379,418.4755535870647,932311.4974796756,423831.95433569135,1449.9175,622.1394992555145,1475393.8280752655,617628.954908361,0.38068,100000,0,1107336,11556.245499420796,0,0.0,0,0.0,42075,438.4738209786999,0,0.0,42351,438.2024817106897,1106729,0,39721,0,0,9742,0,0,102,1.06448482065518,0,0.0,0,0.0,0,0.0,0.0492,0.1292424083219502,0.3034552845528455,0.01493,0.3666274970622796,0.6333725029377203,23.1467993735588,4.097382162477999,0.3203285420944558,0.2802874743326489,0.1971252566735113,0.2022587268993839,11.570302331656931,6.370839492854397,15.99621831613706,11484.066209332266,44.81213568575012,13.573296485288065,14.088862980986418,8.518698940997874,8.631277278477764,0.5926591375770021,0.8186813186813187,0.7035256410256411,0.5833333333333334,0.1129441624365482,0.7696160267111853,0.9222689075630252,0.8904899135446686,0.7384615384615385,0.1666666666666666,0.5140845070422535,0.7386363636363636,0.6315205327413984,0.5305410122164049,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890016509171,0.0045112172176434,0.0067795922095584,0.008900087375287,0.0111375564506285,0.0134711332858161,0.0158599109154104,0.0180222471680783,0.0202258674434053,0.022390961747068,0.0244519824962338,0.0265321413542169,0.0283861419718194,0.0304371545326347,0.0326153084688437,0.0349219137332672,0.0366894639365125,0.0385257200899659,0.0408589199123635,0.0426838151131089,0.0574846926535167,0.0708924800869692,0.0839220207525416,0.0970161798697205,0.1089915098910822,0.1248508148414148,0.1362345862112801,0.1466621318566858,0.1566316463121966,0.1666291809915496,0.178159683386389,0.1892636446134566,0.1999196586578653,0.2092152517765721,0.218074181466715,0.2279989827397472,0.2359743326946214,0.2440914809489575,0.2514046853051792,0.2584214436760587,0.2639110248770009,0.27005927931292,0.2761542819374941,0.279851370403116,0.2841647802244362,0.2883810552412278,0.2923326268545069,0.2952834731479838,0.2990505920899873,0.3019721272679463,0.298744545149379,0.2962612334499554,0.2931073224166503,0.2901919529628776,0.2879261553049946,0.2845645168680035,0.2809098807361188,0.2806919825693784,0.2810329231451929,0.2812204647181553,0.2814233678901653,0.2831007018373945,0.2846579245045875,0.2852930006032037,0.2868172306804242,0.2886576428552799,0.2896701042675631,0.2943261299124926,0.2980125486347225,0.3010139416983523,0.306854289605084,0.3115842732159797,0.3144677661169415,0.3181133212778782,0.3210743028261276,0.3285041224970553,0.3287775246772969,0.3326673326673326,0.3336953570458865,0.3379751599548363,0.0,2.255193679645109,51.94153416881654,143.59977813437644,195.75442191273376,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95764,47888,458.19932333653566,5065,51.59558915667683,3998,41.142809406457545,1498,15.308466647174304,77.37657405990127,79.72281257650076,63.3458979718325,65.07971755854686,77.18117461460739,79.53021998620245,63.27158393797563,65.00877312611158,0.1953994452938872,192.5925902983039,0.0743140338568721,70.94443243528303,243.42076,170.38778966122766,254187.9411887557,177924.4493350609,484.55632,322.172494783286,505422.98776158056,335856.3184320684,462.06155,225.5488341215176,478484.0754354455,232385.7691107952,2283.5816,1083.6852878965346,2351563.0508332984,1098747.6750013805,912.85053,422.88461031971,935557.2657783718,424041.0985566297,1464.89578,627.3372868238257,1498068.2928866798,627999.9018929031,0.38251,100000,0,1106458,11553.997326761622,0,0.0,0,0.0,41690,434.7249488325467,0,0.0,41856,433.0750595213233,1111014,0,39841,0,0,9711,0,0,77,0.8040599807860992,0,0.0,1,0.0104423374128064,0,0.0,0.05065,0.132414838827743,0.2957551826258637,0.01498,0.3547655068078669,0.6452344931921331,23.190874760611827,4.034204583053616,0.2978989494747374,0.2958979489744872,0.196848424212106,0.2093546773386693,11.186005784230106,5.967820219082751,15.9417539974217,11511.70457400804,45.75755083726205,14.629960123748974,13.277124304339647,8.686128925232842,9.164337483940583,0.5817908954477239,0.8224852071005917,0.6742233417296389,0.5883100381194409,0.1039426523297491,0.7449228269699432,0.9192307692307692,0.8690095846645367,0.7445652173913043,0.1401869158878504,0.5092157571376943,0.746606334841629,0.6047835990888383,0.5406301824212272,0.0914927768860353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485566697052,0.0044095733357662,0.0065342235029119,0.0085740989069039,0.0105971849320641,0.0127799105915418,0.0147036330821547,0.0167639972230162,0.0189329271409439,0.0211483145837385,0.0233068219088225,0.0253333470196364,0.0276849691075632,0.029690734389965,0.0315885035178575,0.0332303176260219,0.0352890011804419,0.0369724884849993,0.0391408759655269,0.0411064476822295,0.0555155462316435,0.069481918386982,0.0822710499832271,0.0955333683657383,0.1076201517706576,0.1236191422560969,0.1352488999628903,0.1460082357072174,0.1563731510653067,0.1657372654155496,0.1782306184434439,0.1894827959316165,0.1998890351497481,0.2096112393728184,0.218832905846479,0.2286021433875275,0.2371462066655501,0.2456002160507719,0.2523573398086895,0.258746622704584,0.2642905878135371,0.2703088108095471,0.2752461671217655,0.2800732530581954,0.2847500424891349,0.2893738607813192,0.292503748125937,0.2968779756992497,0.3012687994211587,0.3055207935399734,0.3027193983750755,0.299423710208562,0.2967721101329627,0.2942786750615932,0.2927479164507868,0.2897102134867467,0.2865096765035251,0.2863261136085002,0.2871657845022721,0.2868080721949833,0.287394518706594,0.288879713735205,0.2898822548713139,0.2888997359721328,0.2895283582089552,0.2908756571961358,0.2927981443765557,0.2980175799513746,0.3028929940745904,0.3087121212121212,0.3132901354841633,0.3167423202786868,0.3179804031704425,0.3238447598912715,0.3263921167611787,0.3250763089927213,0.3307157958320749,0.3327384493357129,0.3380016159439806,0.3455223880597015,0.0,2.354443067944508,53.36226319847088,142.14445608393262,204.50913572351575,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95754,48226,458.95732815339306,5006,51.00570211166113,4011,41.33508782922907,1553,15.905340769054034,77.3313489084019,79.7001845605344,63.31030609897547,65.06459153543189,77.13188846889356,79.50112016751547,63.234252746160806,64.99023758185086,0.1994604395083428,199.0643930189293,0.0760533528146609,74.35395358102426,244.27986,171.20808538411774,255111.68201850576,178799.70067476845,490.44153,326.294044110831,511614.3659794891,340188.3950770586,476.37641,233.2421915380264,493649.0486037137,240576.9528059263,2284.49504,1093.41821604204,2355454.6441924097,1111939.183109679,922.67106,425.0953923632481,950707.552687094,431209.6642278716,1502.47154,648.0860889138366,1540452.868809658,653353.0757241062,0.38221,100000,0,1110363,11595.985546295717,0,0.0,0,0.0,42072,438.7806253524657,0,0.0,43133,446.7071871671157,1097393,0,39362,0,0,9606,0,0,86,0.8981348037679887,0,0.0,0,0.0,0,0.0,0.05006,0.1309751183904136,0.3102277267279265,0.01553,0.3466028708133971,0.6533971291866029,23.17490767996017,4.023222606147357,0.3046621790077287,0.2852156569434056,0.2084268262278733,0.2016953378209922,11.394005768961526,6.198030058021926,16.60438681431066,11593.610085989088,46.11062402927838,14.061876465356208,13.903237475597956,9.371992205043744,8.773517883280464,0.5886312640239342,0.7884615384615384,0.7013093289689034,0.6076555023923444,0.1161928306551298,0.75,0.8985200845665962,0.8760330578512396,0.7511111111111111,0.1413612565445026,0.5154041319318594,0.7108792846497765,0.6274738067520372,0.5548281505728314,0.1084142394822006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316355788812,0.0046543699362178,0.0071453945699061,0.0094797805324121,0.0117194652993957,0.014247741646383,0.0163045140765363,0.0184914792162308,0.020834824944512,0.0232091279677161,0.0252297341647522,0.027431037139775,0.0292268269339617,0.0313002432287587,0.0334640792733278,0.0356123588534557,0.0376295651993828,0.039804918543115,0.041869360941333,0.043931093382215,0.0592785119308573,0.0733381465088782,0.0865597432158853,0.0995121130551816,0.1120283391846158,0.1275700143836196,0.1382987754409049,0.1485465952302333,0.1589825798867158,0.1680062669685685,0.1803022463674384,0.1916216304029978,0.2018899969516178,0.2115001423284941,0.2206047525711894,0.2309193528713837,0.2395563399160039,0.2473089222177183,0.2552220506765961,0.2613584265541903,0.26724786681023,0.2728124414465055,0.278521819517861,0.2826830937713894,0.2870021168398258,0.2905047913866038,0.2942207312646296,0.2970344915362097,0.3000466575079706,0.3030375003298762,0.3005224604115049,0.2978626898494949,0.2947910221072172,0.2912520550315826,0.287569600758204,0.2839477902450195,0.2801582797326271,0.280291016103981,0.281081909171376,0.282151041944252,0.2821215510812826,0.2837200157294534,0.2853096165462082,0.2858063799044126,0.2864793783622235,0.2868215044844212,0.2880804997314791,0.29353125,0.2978053134516434,0.3019286364896439,0.3041526883670323,0.3066293971836928,0.3096725818545364,0.3132584608426924,0.3149569882527055,0.3193656673226068,0.3202205334525406,0.3218817099355846,0.3299627461415647,0.3335809806835066,0.0,2.057161369194816,54.53527410810171,146.6396587554196,199.40884889150647,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95492,47709,456.13245088593806,4871,49.90994009969421,3867,39.91957441461064,1401,14.252502827461983,77.22623088476638,79.71316273021127,63.24095407219974,65.07615511898496,77.04404600108377,79.5354544176444,63.17145234872974,65.01133704366386,0.1821848836826092,177.70831256686392,0.0695017234700046,64.8180753210994,243.37038,170.4727155196463,254858.52217986845,178519.5917772183,485.88126,323.739622134852,508213.8713190634,338420.7813020877,466.47999,226.91961834309785,485135.341180413,235096.86236345512,2203.3874,1034.5250989650604,2274175.1350898505,1050286.99670021,870.20358,393.09793502688586,893595.4634943241,394305.65478244406,1356.46048,581.4148559260606,1380091.8401541489,573663.2626989015,0.37978,100000,0,1106229,11584.478280903111,0,0.0,0,0.0,41899,438.1414149876429,0,0.0,42139,437.9633896033175,1099287,0,39463,0,0,9797,0,0,78,0.8168223516106061,0,0.0,0,0.0,0,0.0,0.04871,0.1282584654273526,0.2876206117840279,0.01401,0.3723509605862547,0.6276490394137453,23.25984721790961,3.9859078260441274,0.3098008792345487,0.2940263770364624,0.2011895526247737,0.1949831911042151,11.038122636792108,6.0052719601398925,14.971705837330514,11515.562521948164,44.32326323699503,13.948816860927268,13.562249609463622,8.571025690558491,8.24117107604566,0.5862425652960952,0.7977132805628848,0.6969949916527546,0.5822622107969152,0.0954907161803713,0.7625215889464594,0.9248434237995824,0.8727810650887574,0.7341040462427746,0.1071428571428571,0.5108896271686969,0.7051671732522796,0.627906976744186,0.5388429752066116,0.0921501706484641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024725135532249,0.0044224897805998,0.0066704570836802,0.0089374682257244,0.0113821469294673,0.0135657137033073,0.0155613832794212,0.0178611570923507,0.0201745322107072,0.0222536423433946,0.0241521596321235,0.0260747077391295,0.0282963496885136,0.0304777424811254,0.0324430438601022,0.0344456293289987,0.0364204062156386,0.0386486486486486,0.0405280101684673,0.0425834072991176,0.0575101276025583,0.0710748310739916,0.0838924762846265,0.0962243865418669,0.1084700262112116,0.1248237626281364,0.1364772183529161,0.1471099776992925,0.1574583859979862,0.1667114555676187,0.1785506057137921,0.1898212426240888,0.2002093350341804,0.2105788204341153,0.2193095687286929,0.2290247669418549,0.2375700495520184,0.2452347404610269,0.2529625838735357,0.2597356403607407,0.2652453162678538,0.2706706988302037,0.2754183517356705,0.2812766519717954,0.2849869054144588,0.2891520102831576,0.2923007382853699,0.2962022084636497,0.2997572658004387,0.303654054625737,0.3005154082789141,0.2970003992125876,0.2947052524797114,0.2919012559549588,0.2893481717011129,0.2860665655776624,0.2827212694189748,0.2820264389522949,0.2824203059567558,0.2833017958513335,0.283678126519771,0.2843222344958182,0.2854994046002465,0.2863541156022995,0.2872243746113742,0.2878069015581654,0.2902330586469572,0.2932516487981746,0.2971426577818093,0.3015541180183023,0.3063275097311487,0.3107716618382934,0.3130829498818555,0.3167166416791604,0.3201984017635712,0.326365631135235,0.3273001508295626,0.328077622801698,0.3320610687022901,0.3296827794561933,0.0,2.1507216606011106,50.53194649746385,140.0585033893418,200.54722925448115,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95705,47843,457.3219789979625,5031,51.30348466642286,4035,41.544328927433256,1553,15.850791494697248,77.36399481233721,79.74779105882061,63.33329461681414,65.09683793009994,77.16116822689659,79.54913122329603,63.255923420472655,65.02367195807508,0.2028265854406186,198.65983552458036,0.0773711963414882,73.16597202485298,244.70468,171.36872487854387,255686.4113682671,179059.32279248093,491.54969,327.39531526798254,512961.4440206885,341440.4381379611,468.84072,228.67108403945448,485924.6329867823,235897.5967058513,2314.704,1098.1986959240835,2385855.535238493,1114768.1597970496,913.03566,419.3420756120534,939289.3579227836,423556.97944899567,1506.43874,647.0359131429556,1538610.1248628595,645347.2618287369,0.38135,100000,0,1112294,11622.109607648505,0,0.0,0,0.0,42299,441.31445588004806,0,0.0,42438,439.50681782561,1099123,0,39442,0,0,9971,0,0,87,0.898594639778486,0,0.0,0,0.0,0,0.0,0.05031,0.1319260521830339,0.3086861458954482,0.01553,0.3616899254444657,0.6383100745555343,22.91484746221488,4.032753837079339,0.301363073110285,0.2884758364312267,0.2052044609665427,0.2049566294919454,11.37221197921328,6.201506246092751,16.617809406516322,11514.695891189462,46.37037746334052,14.295330957850307,13.8070939949804,9.32803231536034,8.939920195149474,0.5883519206939282,0.8238831615120275,0.6949013157894737,0.5833333333333334,0.1051995163240628,0.7472089314194578,0.9227642276422764,0.8494623655913979,0.665158371040724,0.1183431952662721,0.5167206040992449,0.7514880952380952,0.6267772511848341,0.5535420098846787,0.1018237082066869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045230054661433,0.0067712986274669,0.0091468992011708,0.0110808115753271,0.0132750575626057,0.0153413031947447,0.017504800032681,0.0195759565524224,0.021462435617813,0.0235453370798039,0.0255728209183621,0.0275560584241925,0.0297681607418856,0.0317453764861294,0.0339026861597634,0.0357590511213549,0.0378249364395786,0.0396981320360495,0.0415403369487075,0.0564368740405,0.0696888181789635,0.0830763097710916,0.0959712275609679,0.1088787460339211,0.1245532787751908,0.136033934252386,0.1470973095458462,0.1571024395451876,0.1668470863120438,0.1781728565125213,0.1893093599896144,0.200167485970331,0.2100537028732677,0.2190683653486478,0.2287308846490305,0.2381133001628773,0.2461903530179151,0.2542547880548244,0.2606271537660137,0.2673559310273046,0.2732575810712866,0.2784049224943793,0.283241080200321,0.286682126683098,0.2903007398471064,0.293429196623945,0.2967781278585222,0.3004289627370923,0.3033951835767864,0.3005423401170595,0.2974252047353187,0.2951945080091533,0.2918100779101081,0.289360379954725,0.2860863605209047,0.2826617154186269,0.2820429248895914,0.2829475112354787,0.2826638740481726,0.2820488914579798,0.2827762485253637,0.2841368390349598,0.2851700862126579,0.2859943107116391,0.2871279414056412,0.2886433987447817,0.2939026675829325,0.298208235828298,0.3014702983956798,0.3055003612716763,0.3097503285151117,0.311308926780341,0.3154260566052052,0.317433436823784,0.3216360403082395,0.3254956201014292,0.3291242362525458,0.3342556723851688,0.334757281553398,0.0,2.397830576024655,54.35389841283445,146.4546490405499,202.56281490595524,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95678,47836,455.6324337883317,4916,50.293693430046616,3898,40.249587156922175,1474,15.154999059344886,77.31725194233033,79.7273869786928,63.30264576078415,65.08569949410943,77.12703290080465,79.53697395797745,63.23137906445015,65.01634501311884,0.1902190415256797,190.41302071535424,0.0712666963339998,69.35448099059727,243.16336,170.34244320975426,254147.62014256156,178037.21149036798,487.90003,324.9160681995154,509449.7376617404,339103.4074703854,467.30794,227.67129494952124,485487.6565145593,235679.73499807544,2222.80484,1048.9650188968187,2296678.7767302827,1069813.8536516423,893.38719,401.05183522153146,922273.8142519702,407698.51504163066,1424.45266,606.4056415072079,1464916.1353707227,612087.4598786471,0.38129,100000,0,1105288,11552.164551934617,0,0.0,0,0.0,41972,438.1676038378729,0,0.0,42205,438.1676038378729,1105764,0,39661,0,0,9499,0,0,92,0.96155856100671,0,0.0,0,0.0,0,0.0,0.04916,0.1289307351359857,0.2998372660699755,0.01474,0.360856864654333,0.639143135345667,23.265722321334582,4.058957281076792,0.3127244740892765,0.2762955361723961,0.2154951257054899,0.1954848640328373,11.22507500435756,6.202866392826709,15.848212792440584,11571.6348517094,44.79146177510295,13.335913714525123,13.931893997171482,9.29681164598332,8.226842417423011,0.5908158029758851,0.7910863509749304,0.7186218211648893,0.5857142857142857,0.1089238845144357,0.761864406779661,0.9027484143763214,0.8583333333333333,0.725,0.1224489795918367,0.5165562913907285,0.7036423841059603,0.660069848661234,0.5421875,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896045873139,0.0047761496729706,0.0071749698082953,0.0095418102002865,0.0114768275932237,0.0135275542426403,0.0158019301001775,0.0179286531546256,0.0199813793597364,0.0222015040059012,0.0243462023822959,0.0263982654623549,0.0287093652852407,0.030445182176217,0.0327807900852052,0.0347535488143028,0.0370381888294564,0.0391816812918635,0.0411889552425144,0.0434365651027279,0.0581819321541627,0.0718017989717169,0.0851834356794205,0.09859021567596,0.1106047659736067,0.1262064002709109,0.1375811860593454,0.1492082760970727,0.15931265161311,0.1683810831393665,0.1808303268536966,0.1932422048334902,0.2037496463624295,0.2127324264279382,0.2217315168669258,0.2311886344998781,0.2402816209943765,0.2479700398119615,0.2559629801857795,0.261855976923341,0.2672766813964787,0.2727867932469719,0.2776528776978417,0.2820672552801505,0.2860733976149418,0.289798634559929,0.2936717411155448,0.2962280456497979,0.2995694392366274,0.3015421489997761,0.2993242063118861,0.2960563341615077,0.2937665875612599,0.2905726719889328,0.2879934698723657,0.2841531727325599,0.2797971660110895,0.2797831569982639,0.2802613889692493,0.2825793382849426,0.2829519578931651,0.2833838403715219,0.285839617320828,0.2863953307046269,0.2879118769348916,0.2882861819032031,0.2888441698316422,0.2926083156448995,0.2970445584284169,0.3009972801450589,0.3056398640996602,0.3099446056449486,0.3124100381751048,0.3155185465556396,0.3173032029134373,0.3179847685998828,0.3196895922093731,0.3228013684846045,0.3228999464954521,0.3302342878393455,0.0,1.9440559985065056,51.58112757937569,145.25562544675407,196.222637664338,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95869,47359,451.7414388384149,4992,50.95494894074206,3948,40.711804650095445,1460,14.91618771448539,77.4717338221379,79.75637976463518,63.40399372213196,65.08986990338995,77.27761804529031,79.56464651987375,63.33041765163576,65.01924417461055,0.194115776847596,191.73324476143705,0.0735760704962018,70.62572877940454,243.91422,170.79423084448874,254424.49592673336,178153.762785143,482.46163,320.8707198597157,502796.24278964,334242.3722576804,464.37445,226.5476822040476,481311.5084125213,234014.2037956963,2216.46744,1060.2153372995667,2284227.9360377183,1078588.611275921,873.23353,399.8421095260714,897307.5446703314,403688.2745229325,1413.21938,612.6468356566952,1444204.0492755738,612848.9496054697,0.37859,100000,0,1108701,11564.749814851515,0,0.0,0,0.0,41529,432.7154763270713,0,0.0,41969,434.780794626,1111857,0,39855,0,0,9669,0,0,90,0.938781044967612,0,0.0,0,0.0,0,0.0,0.04992,0.1318576824533136,0.2924679487179487,0.0146,0.3576628352490421,0.6423371647509578,23.247769775039394,3.9083262831961383,0.3087639311043566,0.2887537993920973,0.2107396149949341,0.1917426545086119,11.15168615534032,6.151419126703459,15.75765825483415,11399.86719419362,45.523017634231984,14.039850347136138,13.754803179633448,9.367702611176018,8.360661496286378,0.5916919959473151,0.8061403508771929,0.6964725184577523,0.5901442307692307,0.1017173051519154,0.7457351746547523,0.9066937119675456,0.8497109826589595,0.7227272727272728,0.1046511627906976,0.5218991534781009,0.7295208655332303,0.6357388316151202,0.5424836601307189,0.1008547008547008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019232715861929,0.0045891541976071,0.006682350078079,0.0087596427121396,0.0110763352572961,0.0131858740219968,0.0154327275690652,0.017360438192964,0.0194024058983313,0.0214145463470506,0.0234230174418009,0.0254445880253522,0.0273871282551748,0.0294163039787634,0.0313875459989898,0.0333946015158712,0.0353855065268209,0.0372573607901255,0.0393836505414862,0.0414485665227119,0.0565970846453819,0.0710933171654662,0.0837926770481839,0.0972303942170295,0.1092948008558088,0.1251334750018501,0.1360556480430933,0.1470075104785004,0.1576368353065516,0.16731325688565,0.1781440991650167,0.1892081743810316,0.1996981509028328,0.2090438655865848,0.2177828541305159,0.2272099218499563,0.2352449795618324,0.2420010328490917,0.2486241648737402,0.2561874821377536,0.2619877640540228,0.268391099500863,0.2731532850161713,0.2773254910399407,0.2811878546830286,0.2853311681921071,0.2894033615544067,0.2923207736335139,0.2956218519953506,0.2992344522782279,0.2966597749912735,0.293200745123822,0.2911413706544756,0.2884745324113342,0.2855559004833917,0.2828970411317709,0.2798357147353182,0.2790800097871299,0.2788804071246819,0.2796153982363565,0.2796668463812303,0.2800423297013404,0.2817977901470466,0.2822427008107749,0.2834237320392045,0.2856295608674351,0.2883777171620595,0.2941850738870473,0.2993838846246515,0.3015106681202305,0.306450893852258,0.3137408568443051,0.3162701124433124,0.3198160850229893,0.3219895287958115,0.3273669335845501,0.3291710546111027,0.3250148544266191,0.3311948676824378,0.3315985130111524,0.0,1.850519870378779,53.89005787580819,148.91699094202977,191.66476856803564,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95736,47487,451.5856104286788,4929,50.14832455920448,3908,40.20431185760842,1524,15.5322971504972,77.34438518034166,79.6963887662207,63.33412346583962,65.07215435690748,77.15114024791231,79.50757324125946,63.25967324593773,65.0019539839421,0.1932449324293514,188.81552496122825,0.0744502199018839,70.20037296537396,243.58928,170.7291065031799,254438.5393164536,178333.23567224442,483.26019,322.0499156480596,504159.5220188853,335769.0791844861,468.74045,229.19871307975745,485481.0207236568,236296.34633433347,2215.16748,1064.5186603659313,2281555.569482744,1079657.8302476932,911.01831,419.8833513994994,936290.7161360407,423281.0242745656,1472.0681,637.0023598675497,1502830.847330158,635248.7195213259,0.37901,100000,0,1107224,11565.388150747887,0,0.0,0,0.0,41687,434.7998662989889,0,0.0,42446,439.2809392496031,1104367,0,39643,0,0,9653,0,0,67,0.689395838556029,0,0.0,0,0.0,0,0.0,0.04929,0.1300493390675707,0.3091905051734632,0.01524,0.3555815768930523,0.6444184231069477,22.793702206718468,3.982413315667453,0.3121801432958034,0.2881269191402252,0.202661207778915,0.1970317297850563,11.452176887443825,6.440757041554486,16.373039191729013,11484.106342668916,45.12279321499104,13.871731569466952,13.834387449668752,8.938760001893682,8.477914193961654,0.6049129989764586,0.8250444049733571,0.7270491803278688,0.5845959595959596,0.1103896103896103,0.765089722675367,0.9145833333333332,0.8784530386740331,0.7523364485981309,0.1176470588235294,0.5316927665920954,0.7585139318885449,0.6631701631701632,0.5224913494809689,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.004460981618728,0.006716788928459,0.0089170551374628,0.0112247595420623,0.0134577993138761,0.0154909194676015,0.0178784631868972,0.0201387540742405,0.0225928578737337,0.0244179850807443,0.0267266065215383,0.0288202512903822,0.0310295465546183,0.0331242649941199,0.035135582010582,0.0372425214781078,0.0393661592068693,0.0415817917272916,0.0436240911647674,0.0583911885994675,0.072439956046256,0.0858218739838677,0.0982437690608896,0.1096066645576294,0.1253159069039537,0.136912780152526,0.1479187946884576,0.1578761855934375,0.1671866791040775,0.1791862706043216,0.1896643119097331,0.2007154818084944,0.2097484723603808,0.2185303725211997,0.2272807794508414,0.236616857681706,0.2446076336564629,0.2515684027817169,0.2573162354018777,0.2634555991255162,0.2686404791427836,0.2738286796024609,0.2786478319263238,0.2833195665905447,0.2879851031557139,0.2915690719841677,0.2952444025573754,0.298590783099759,0.3013870375991448,0.2986466124952914,0.2944733840042882,0.2920107479988182,0.2895298836974402,0.2868506975363609,0.2835434902368856,0.280013291770179,0.2793216450925774,0.2797838243316967,0.2800313401474411,0.2812698412698413,0.2822339420654912,0.2819319841435426,0.283173612658792,0.2849164689245224,0.285658713692946,0.2862728431789205,0.291095676115387,0.2966193350312249,0.3014726203166331,0.3056671934974034,0.3116698292220113,0.3181818181818182,0.3221340915893445,0.3232295142751205,0.3238417551639631,0.3331820931639443,0.3392348392348392,0.3400054839594187,0.3490965013456363,0.0,2.395155060050692,52.94950436110253,145.3009734657831,192.62974245808147,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95667,47507,453.3433681415744,4994,50.91619889826168,3942,40.58870875014373,1482,15.135835763638454,77.28108161739658,79.66875891834728,63.29287913429015,65.0557659029883,77.08607129421497,79.47656269372698,63.21842512848887,64.9848433176046,0.1950103231816058,192.19622462030367,0.0744540058012859,70.92258538369833,244.44024,171.2177141146212,255511.55570886517,178972.59673097433,484.15528,321.8012490514228,505459.9600698255,335752.50509728823,465.90304,227.6627777044984,482767.9241535744,234807.64881693237,2224.44616,1062.5801056236978,2294537.259452057,1080047.357629797,921.94318,419.7826604193906,952074.4143748628,427169.7768503144,1433.4867,617.637291803896,1467251.6750812714,619307.8019666064,0.37837,100000,0,1111092,11614.161623130232,0,0.0,0,0.0,41721,435.4793188873906,0,0.0,42135,436.1901178044676,1098713,0,39480,0,0,9629,0,0,90,0.9407632726018376,0,0.0,0,0.0,0,0.0,0.04994,0.1319872082881835,0.2967561073287945,0.01482,0.3546589817483189,0.6453410182516811,23.11940669264781,4.067097863917032,0.3132927447995941,0.2871638762049721,0.2042110603754439,0.1953323186199898,11.518528697731716,6.373036162977614,15.952052227619388,11485.072804375925,45.60030589382201,14.094861930902518,14.043278610206084,9.036974451013512,8.425190901699901,0.5946220192795535,0.7977031802120141,0.7101214574898785,0.5813664596273292,0.1246753246753246,0.7768795472918351,0.9129554655870444,0.9085872576177284,0.7327188940092166,0.1393939393939394,0.511275415896488,0.7084639498432602,0.6281464530892449,0.5255102040816326,0.1206611570247934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0045215381340037,0.0066776946730669,0.0088793164755006,0.0110855724833716,0.0131868355667793,0.0155800721903868,0.018060603585576,0.0203628929210324,0.0225488490158548,0.0243307256154453,0.0265000616041726,0.0287227478403949,0.0307036071586799,0.0329125943050581,0.034936981089157,0.0369077461724916,0.0386108400971498,0.0405292942743009,0.0423398444828952,0.0570971853647324,0.0719050062303012,0.0844048831179737,0.0971560241154003,0.1091206414517065,0.1245358469008854,0.1363665314961465,0.1471070682970474,0.1565834776843951,0.1658720443270407,0.1777947965655607,0.1890972146960008,0.1994989925393454,0.2083931094148697,0.2170962019458554,0.226517008462639,0.2353802476863236,0.2434186070088878,0.2512612489773657,0.2586345289422989,0.2646540938788749,0.269962511715089,0.2751298285551682,0.2803957115243778,0.2849637593034003,0.2889612391628744,0.293499630589679,0.2962731811697575,0.2994698845151841,0.3016833593192569,0.2994511792230208,0.2962774165105257,0.2929446986386488,0.2904799826250633,0.2881603239830861,0.2855281112490992,0.2817443351859769,0.2819800874051194,0.2827405875617384,0.2835999215392571,0.2828994193669226,0.2838648375794287,0.2834630799252995,0.284984998432672,0.2869173945475107,0.2879067710636527,0.2905180506955705,0.2952363020146865,0.2985095465810325,0.3020825116352449,0.3057137690986348,0.3071090047393365,0.3106977905380102,0.3135961624943786,0.3162558847964553,0.316915995397008,0.3213213213213213,0.3253370340999207,0.326017130620985,0.3394146712276701,0.0,2.393782214445173,53.79289607451365,144.34213074441206,197.05210139183265,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95731,47934,456.38298983610326,4866,49.55552537840407,3851,39.70500673762941,1466,15.010811544849632,77.3612597271838,79.72750940447843,63.34108899169471,65.0895422288538,77.17397722772712,79.54109326874017,63.270444813687725,65.02104083184477,0.1872824994566855,186.4161357382557,0.0706441780069866,68.50139700902957,243.19922,170.3051741490756,254044.37434060025,177899.7128924545,488.04049,325.3355678891788,509235.68123178487,339275.1437770197,465.72031,227.72448603629243,483216.9203288381,235372.5236994568,2208.2562,1045.5998111744836,2279962.352842862,1065458.8076740908,875.99645,399.765894714488,904134.386980184,406666.94666773325,1425.28618,607.121874688211,1461777.5851082725,611522.3580288374,0.38078,100000,0,1105451,11547.471560936374,0,0.0,0,0.0,41915,437.29826284066814,0,0.0,42074,436.15965570191474,1107525,0,39752,0,0,9563,0,0,96,0.9923640200144156,0,0.0,0,0.0,0,0.0,0.04866,0.1277903251221177,0.3012741471434443,0.01466,0.3631889763779528,0.6368110236220472,23.3317752526118,4.0763272622681725,0.3277070890677746,0.2729161256816411,0.1981303557517527,0.2012464294988314,11.439846693126425,6.240037998046807,15.67271935092235,11566.22253431019,44.2145333874978,12.823983015218694,14.562332023588612,8.382425961639235,8.44579238705126,0.5925733575694625,0.8001902949571836,0.7171156893819335,0.580602883355177,0.12,0.7553648068669528,0.9216152019002376,0.8736842105263158,0.7318435754189944,0.1567567567567567,0.5219657483246463,0.719047619047619,0.6496598639455783,0.5342465753424658,0.1084745762711864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025526483726866,0.0047550490712953,0.0070832741369162,0.0093771271245847,0.011542764161497,0.0138795543878943,0.0161217955254624,0.0182978506152039,0.0204995552465569,0.0228296478296478,0.0248431284091375,0.0268682469906741,0.0289931091226987,0.0309673431544246,0.0331462065549409,0.0352125052984171,0.0372499067975643,0.0391432485160433,0.0415622497894331,0.0435616124360537,0.0578850651520213,0.0717993803901867,0.0854670372895578,0.098447012312448,0.1097491568296795,0.125499439781832,0.1371145608007804,0.1479290570373759,0.1576226838254926,0.1674884239410049,0.1786225681771691,0.1897741530740276,0.200721833282602,0.2099044746103569,0.2190770380793246,0.2282454742619395,0.2358338071190484,0.2435174366349092,0.2510908369694565,0.2578755249396391,0.2641276079292608,0.270586586305978,0.2769076186535847,0.2822786173229477,0.2869468275895497,0.291099257656949,0.2946859903381642,0.2984940065014221,0.3026067392484936,0.3050784905560901,0.3014379787662948,0.2977056288937069,0.2958510070507598,0.2928548773103428,0.2911236638052454,0.287951475890729,0.2833343850571086,0.2839697901000457,0.2844175491679274,0.2843857247008197,0.2857862621060292,0.2868469321341932,0.2871433941773527,0.287622737292098,0.2882749035489205,0.289767998335414,0.2907446384891063,0.2959241348992024,0.3001329415057375,0.3051698904315494,0.3103681951660266,0.3143591626882115,0.3194306315266036,0.320492603439213,0.3210219383504582,0.3254700455447857,0.3324287652645861,0.3421368547418967,0.3518826135105204,0.3570863024544735,0.0,2.0750860502319317,50.73945180402068,143.48268156431783,193.60126390362183,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95647,47746,455.1318912250253,4876,49.78723849153658,3910,40.252177276861794,1475,14.982174035777389,77.2430810454354,79.6480572307459,63.27207635196621,65.05025706007805,77.05325243743107,79.46388108549507,63.19901062672112,64.98231400662291,0.1898286080043334,184.1761452508308,0.0730657252450939,67.94305345513862,241.80112,169.34524286330543,252805.75449308395,177052.33082407754,484.82,323.1337563834929,506251.26768220647,337206.5055709985,460.61495,224.7391650770392,478140.1507627003,232279.8712526196,2233.48592,1056.2141857568904,2299959.977835165,1069109.3142042002,885.34408,405.9036871965855,908853.074325384,407596.2417043778,1434.78846,621.0696168523518,1458427.8440515646,613510.0005904143,0.37998,100000,0,1099096,11491.170658776542,0,0.0,0,0.0,41654,434.8489759218794,0,0.0,41700,432.5174861731157,1110917,0,39882,0,0,9541,0,0,82,0.8468639894612481,0,0.0,0,0.0,0,0.0,0.04876,0.1283225432917522,0.3025020508613618,0.01475,0.3570727879144595,0.6429272120855405,23.43542214594982,3.971369513142509,0.2987212276214834,0.2915601023017903,0.2038363171355498,0.2058823529411764,11.077249515388006,6.02585820417101,15.87824191873473,11558.154762062246,45.03963758651146,14.121697524950864,13.245563951884773,8.815633660793106,8.856742448882727,0.579539641943734,0.8008771929824562,0.699486301369863,0.5759096612296111,0.0956521739130434,0.727580372250423,0.8981670061099797,0.8696969696969697,0.6201117318435754,0.1153846153846153,0.5153958944281525,0.7272727272727273,0.6324582338902148,0.5631067961165048,0.0898876404494382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0046558334854847,0.00655817589312,0.0091852183013442,0.0115854464821539,0.0138907276337899,0.0162732602600051,0.0184610357784675,0.0204822480366492,0.0224980287343962,0.0245103066352169,0.0265568517909957,0.0286513502951521,0.0306795236329171,0.0328750438677979,0.0347537457734026,0.0368156627130056,0.038601262143984,0.0407747196738022,0.0429751032153134,0.058176840037203,0.0720675423711059,0.0853378130085568,0.0979799787366182,0.1105621014400946,0.1260534451361538,0.1373430228851915,0.1485521153190037,0.1585767790262172,0.1678015982127513,0.1801672511464796,0.1915793125128727,0.2018842237107226,0.2110991874904185,0.2197659297789336,0.2290899409859342,0.2376022894960425,0.2454948101565405,0.2526710616049102,0.2593730651929647,0.2658817530766913,0.2723493940635794,0.2773415757748013,0.2810078913914274,0.2855961271802856,0.2894025595774352,0.2935102690375049,0.2962236015345203,0.3005202184658095,0.3038282571912014,0.3008799471762185,0.2975543291264674,0.2945705824284304,0.2920077521622168,0.2899574619983937,0.2862680210200548,0.2829551936117624,0.2834710336558204,0.2838972923139959,0.2839314408141403,0.2840048015605071,0.2843401155886311,0.2857471890114952,0.2854780315558932,0.2870043470951317,0.2877530786892089,0.2890133760146336,0.2930394869215292,0.2987610122494823,0.3042941363926068,0.3074568217125102,0.3123075289370288,0.3148299490790218,0.3152743000227634,0.3217817120256144,0.3202498821310702,0.3225707257072571,0.3257085020242915,0.3297032398584263,0.3297872340425531,0.0,2.440696388001074,51.31269645327404,145.68520056524952,197.98655466869943,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95827,47786,455.1639934465234,4901,50.048524945996434,3911,40.33310027445293,1491,15.319273273712,77.44904619750217,79.77580078309259,63.38601454967061,65.10710084177853,77.26199173165786,79.58929206920105,63.316865878661936,65.03996007961933,0.1870544658443123,186.50871389154133,0.0691486710086763,67.14076215919818,244.23982,171.0037683646297,254875.55699333173,178450.29205404504,486.42433,324.44188959985865,507133.5218675321,338097.7580346445,471.97049,230.6130492916076,489389.8692435327,238288.9629647415,2205.30728,1043.848287572554,2276796.143049454,1064808.1726158117,906.28766,407.3383467802926,935456.4892984232,414953.2064354418,1443.51494,603.390791441506,1484114.0179698833,609546.8841609055,0.37921,100000,0,1110181,11585.252590605987,0,0.0,0,0.0,41828,436.0044663821261,0,0.0,42704,442.46402370939296,1106037,0,39702,0,0,9780,0,0,95,0.9913698644432154,0,0.0,0,0.0,0,0.0,0.04901,0.1292423723003085,0.3042236278310549,0.01491,0.3478515625,0.6521484375,23.42994319196744,4.015338886435118,0.3201227307593965,0.2861160828432626,0.1994374840194323,0.1943237023779084,11.519653947720094,6.311368037585452,15.776533078360275,11446.93849069751,44.78552349539365,13.684429760637702,14.10659473923178,8.74373864136808,8.250760354156078,0.6011250319611353,0.8060768543342269,0.713258785942492,0.5948717948717949,0.1210526315789473,0.780960404380792,0.9098712446351932,0.8997214484679665,0.7405660377358491,0.1533333333333333,0.5227606461086637,0.7320061255742726,0.6382978723404256,0.5404929577464789,0.1131147540983606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204247389688,0.0047641734159123,0.0072549795541485,0.009508233358052,0.0117656629752788,0.0139594554692352,0.0162617375080289,0.0183304585676522,0.0206029637199795,0.0228177343933859,0.0246349336475892,0.0267446633825944,0.0289065471478942,0.0308980087721104,0.0328898514851485,0.0349604834960483,0.0368453736286483,0.0388001202782991,0.0407164600887263,0.0426920674578388,0.0575490789226628,0.0718549727655748,0.0854310326759028,0.0984083626621841,0.1107903360060689,0.1269126722461746,0.1384295768676333,0.1488861715136371,0.1588402210321947,0.1670485694706184,0.1792396025977377,0.1904386429180933,0.2008618443904133,0.209897555068242,0.2185256733914341,0.2283431501475284,0.2365974503145354,0.2447433969885331,0.2508204141677039,0.2567976520835474,0.2626095985233041,0.2678964982450412,0.2726586637107615,0.2774234389183507,0.281716576050761,0.2855230351637824,0.2885595702516421,0.2917184055143053,0.2950838694704813,0.2980495173047875,0.295780121410289,0.2939186412820161,0.2913729063003714,0.2888141150079806,0.2856868594382254,0.2826457344529633,0.2792052772106172,0.2794860102276799,0.2794032984523688,0.2801259708780807,0.2801679298558478,0.2806570986626985,0.2801362465730664,0.2812902080837659,0.28189663392772,0.2827632392334638,0.283745314129485,0.2884232777915941,0.293214497092922,0.2955491011853364,0.2992239667929977,0.3017195906741217,0.3062206939668646,0.3107272178636089,0.3138153587129361,0.3161290322580645,0.3245787156520419,0.3274924471299094,0.3311457478807766,0.3389958474896187,0.0,1.863239583784176,51.8650241906195,145.90964780738457,194.33551192195165,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95803,47807,455.0483805308811,4990,50.8856716386752,4010,41.23044163543939,1559,15.813701032326756,77.3497797498425,79.68129682784114,63.33168066437421,65.0592434793484,77.14661860041429,79.4877520803554,63.25386120786514,64.98884493773498,0.2031611494282117,193.54474748573125,0.0778194565090686,70.39854161341452,243.0362,170.2738892688018,253683.0579418181,177733.14225107967,484.4635,323.0326171244023,505040.9486133002,336538.7658996912,471.70273,230.273069871458,489318.7165328852,237937.6418016294,2285.23368,1080.7844896878205,2348662.526225692,1091504.7212369577,919.64581,415.5449161688071,939712.5768504118,413726.3432919562,1510.47718,641.8722389060622,1532247.7375447534,629164.9958452324,0.38018,100000,0,1104710,11531.04808826446,0,0.0,0,0.0,41727,434.8819974322307,0,0.0,42599,441.5832489588009,1106545,0,39684,0,0,9655,0,0,76,0.7932945732388339,0,0.0,1,0.0104380864899846,0,0.0,0.0499,0.1312536167078752,0.3124248496993988,0.01559,0.3569088456349971,0.6430911543650029,23.21031250794921,4.032388628926438,0.3009975062344139,0.2865336658354114,0.2062344139650873,0.2062344139650873,11.031840168127074,6.044316072910421,16.497114758542132,11534.65175307753,46.09720896227969,14.343441650423616,13.70863468165397,9.13930833997471,8.905824290227388,0.5812967581047381,0.7989556135770235,0.7050538525269263,0.5671100362756953,0.1124546553808948,0.7594529364440868,0.9269662921348316,0.8653295128939829,0.6632124352331606,0.1137724550898203,0.5012649078424286,0.6878048780487804,0.6398601398601399,0.5378548895899053,0.1121212121212121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0046032019629513,0.0068504272636856,0.0094281156976094,0.0117892381243006,0.0140318721042716,0.0161194942903752,0.0182211651337749,0.0205241424424547,0.0228356772912444,0.0248898001025115,0.0267470275376306,0.0289348400563478,0.0309851613102532,0.0330922932505338,0.0351116484288622,0.0371512861653123,0.0388772483040474,0.0409488580869059,0.0430337043554315,0.0579912773105736,0.0723667698485735,0.0854734900102727,0.0978696122841498,0.1105571074685078,0.1262319698828306,0.1374042562220195,0.1481520906071702,0.1581612486245686,0.1671994679139222,0.1784921438886134,0.1900829129954755,0.2007376300100091,0.2098507625867818,0.2184690879883812,0.2270243913250662,0.2351752848867707,0.2440755362103676,0.2515631205673759,0.2584135854069095,0.2652322285846492,0.2705154735599125,0.2763511195751174,0.2808074035940474,0.2845562000922307,0.2889690315592536,0.2926094833510339,0.2961052163415719,0.2991944764096663,0.3027498747660102,0.2999838544750013,0.2974285596356782,0.2939719007799082,0.291765488517383,0.2897504456327985,0.2856049824786913,0.2826506405187411,0.2832724233435487,0.2828100216601572,0.2840714591356439,0.2843230714592796,0.2850296803202714,0.2874441521566662,0.2891936417471837,0.2907594391539455,0.2920016598371285,0.2920759844860289,0.2952752222048963,0.2989164409251927,0.303676412949753,0.3063111832904768,0.30945619017566,0.3119254580701645,0.3159415880742318,0.3178541335080985,0.3184009406231628,0.3261200853398354,0.3329985940951998,0.3345118302964373,0.333076032419915,0.0,2.375369814876916,54.06708836521828,142.6804152184158,205.36467119362183,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95795,47808,455.1072602954225,5133,52.226107834438125,4115,42.32997546844825,1486,15.084294587400176,77.41775944651599,79.74524645240135,63.37436231324406,65.09474985453932,77.22681238836972,79.55854601101969,63.301014868835296,65.02562951584086,0.1909470581462642,186.7004413816602,0.0733474444087676,69.12033869845402,243.42846,170.51620782756817,254113.9516676236,178001.1564565668,488.65521,324.5948907982371,509487.74988256174,338227.0156754796,470.54399,229.5436643148721,487082.8331332533,236527.82740925887,2335.24048,1103.2852970032638,2403765.3739756774,1117795.3984699268,920.4355,415.29137519653295,944246.7352158254,416984.12984253536,1442.842,620.1821022669988,1466600.177462289,614302.1119054959,0.38182,100000,0,1106493,11550.634166710162,0,0.0,0,0.0,41971,437.47585990918105,0,0.0,42774,442.3404144266402,1108877,0,39838,0,0,9573,0,0,80,0.8351166553577952,0,0.0,2,0.0208779163839448,0,0.0,0.05133,0.1344350741186946,0.2894993181375414,0.01486,0.3648926237161531,0.6351073762838468,23.194866454634607,4.063731404899209,0.3229647630619684,0.282138517618469,0.2012150668286755,0.193681652490887,11.49107601342199,6.1419257959765465,15.773282376693674,11559.379347711169,47.026526866771576,14.259131635676743,15.02233485473776,9.141313651805849,8.603746724551225,0.5946537059538275,0.8001722652885443,0.7140707298720843,0.5905797101449275,0.1003764115432873,0.7594226142742582,0.9156626506024096,0.8783783783783784,0.7198067632850241,0.0988372093023255,0.5230125523012552,0.7134238310708899,0.6506777893639207,0.5475040257648953,0.1008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027035510687633,0.0050378599738477,0.0072246856957311,0.0091304259511283,0.0112259009192223,0.0136202614112952,0.0159820609519926,0.0182187474483546,0.0201046628099511,0.0222806730257501,0.0244774956692873,0.0266688565650759,0.0285047593593881,0.0305245277191537,0.0325520967592258,0.0346316322209483,0.0368005464198118,0.03891849302287,0.0408888334839654,0.0431116154622968,0.057133318031008,0.0720072759965292,0.0852961833181337,0.0989988759677707,0.1114001917060787,0.1269665176920557,0.138400093227252,0.1498410470692056,0.1588787041285627,0.1682398191499619,0.1800073138726955,0.1911907694302197,0.2018546872115624,0.210832059401616,0.2199307806405537,0.2294178817178131,0.2380310106898819,0.2461505632363346,0.2535030981320585,0.2601093271122089,0.266441782285734,0.2722135960867179,0.2762651427491912,0.2809681047065298,0.2851945721111286,0.2894005020426244,0.2927660743497209,0.2965750990149284,0.2999069935670551,0.3026440410418311,0.2995062788451218,0.2965077186963979,0.2946479980900754,0.2910067384668548,0.2889609428207634,0.2854766084102877,0.2818346599416818,0.282393112124034,0.2834713829859461,0.2832174036482362,0.2839096735728126,0.2848488413127867,0.2852389468868277,0.2853785611351291,0.2873192303095494,0.2884281905945078,0.2899943470887507,0.2957377866400797,0.2997776851465888,0.3049550786613833,0.3087692446205096,0.3117912641747165,0.314963571828881,0.3210107978404319,0.3224516369047619,0.3235017626321974,0.3275202692366529,0.3313965137247044,0.3390604026845638,0.3502846299810246,0.0,2.395073766696486,53.97039543820599,148.90472366240877,210.2167959256611,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95721,47613,454.0487458342474,5025,51.075521567890014,4033,41.53738469092467,1538,15.67054251418184,77.3893283971574,79.75148335981913,63.35181630130408,65.09439545308737,77.19223131339928,79.55746726356821,63.2771274797211,65.02338113336943,0.1970970837581234,194.01609625091965,0.0746888215829741,71.01431971794625,242.8668,170.08058433724904,253723.6343122199,177683.66851291677,485.70823,323.35639755558395,506867.3018459899,337257.8823409533,463.65549,226.01144564277607,481196.1220630792,233598.5901768089,2290.50436,1075.356280920712,2360419.051200886,1090950.4089183272,926.20108,421.5677778291714,954683.381912015,427491.5408626842,1496.61246,635.1427985251141,1526504.9884560336,632793.0697224982,0.37997,100000,0,1103940,11532.892468737267,0,0.0,0,0.0,41779,435.8709165177965,0,0.0,42013,435.6306348659124,1110757,0,39835,0,0,9472,0,0,77,0.8044211823946678,0,0.0,1,0.0104470283427878,0,0.0,0.05025,0.1322472826802116,0.3060696517412935,0.01538,0.3493333333333333,0.6506666666666666,23.29252165518188,4.0722296703115335,0.3027522935779816,0.2871311678651128,0.2028266798909,0.2072898586660054,11.15009168158176,5.8835854439973465,16.315512979819623,11482.720246796363,45.95044005772205,14.17384696184264,13.763950495950192,9.050245981793728,8.962396618135493,0.5836846020332259,0.8255613126079447,0.6936936936936937,0.558679706601467,0.1124401913875598,0.7502138579982891,0.918918918918919,0.881619937694704,0.6966292134831461,0.1481481481481481,0.5157122905027933,0.7592319054652881,0.6266666666666667,0.5203125,0.1020092735703245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192926663763,0.0044695794946638,0.0067354412018299,0.0088746281084044,0.011406612175186,0.0134254829713169,0.0156224523071906,0.0179486132936062,0.0201191412835787,0.0219893787923748,0.0239676196331591,0.0260706297580694,0.0281753819911836,0.0303863138066269,0.0324550095395245,0.0347436082921687,0.0367329613102941,0.0386813688370693,0.0405804332460188,0.042431061245325,0.0569107388997953,0.0702767749699157,0.08382542662653,0.0964251918830827,0.1080448623350339,0.1237878707767144,0.1361158252015273,0.1469451630417425,0.1575005875691729,0.1669669090051255,0.1790417936485715,0.190826978203256,0.200993715888582,0.2100515041170488,0.2183518538893167,0.2274086709940406,0.2361692391825984,0.2446186373962527,0.2519060585432267,0.2585669781931464,0.2643403054794362,0.269539605175497,0.2750097521188694,0.2790174296111856,0.2831415950682006,0.2868271431735952,0.2911977994498624,0.294785790516847,0.2988088001345111,0.3014173186859506,0.2977055166950847,0.2948360801965116,0.2930059628200631,0.290008790765373,0.2874887115638,0.2845252069454396,0.2813552917467015,0.2820851688693098,0.282589126484026,0.2836085952761499,0.2842932717383205,0.285933262586959,0.2869409361844025,0.288455978828919,0.2892759726276499,0.290666115232507,0.2902450744834214,0.2937330718221724,0.2977364254964588,0.3026965587520577,0.3074357818837314,0.3122696155871511,0.3142803598200899,0.3179151624548736,0.3203168685927307,0.3276486391776662,0.3298303558024321,0.3343917443937289,0.3344416735937933,0.3427575522850503,0.0,2.3584987661275387,50.43114623731619,147.96543160874154,212.1247506678772,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95675,47577,452.66788607264175,4810,49.19780506924484,3839,39.57146590018292,1432,14.622419649856283,77.35982293729873,79.73627137079107,63.33991942654043,65.09035496035646,77.18216739222771,79.56188537066707,63.27348261241511,65.02762336772295,0.1776555450710191,174.3860001240023,0.0664368141253248,62.73159263351147,244.6521,171.41464245149433,255711.62790697676,179163.4621912666,486.92051,324.63953828676904,508371.1732427489,338754.6325448533,467.54644,228.59845285258996,485227.30075777374,236220.5471846591,2169.6172,1026.4659313430654,2235636.8539325846,1040829.8502451947,859.72148,392.0054626456453,880389.8510582702,391661.1512903192,1379.00334,579.6977502843837,1407862.45100601,576549.3334980569,0.37868,100000,0,1112055,11623.255813953489,0,0.0,0,0.0,42013,438.5471648811079,0,0.0,42329,439.03841128821534,1098093,0,39341,0,0,9771,0,0,71,0.7316435850535667,0,0.0,0,0.0,0,0.0,0.0481,0.1270201753459385,0.2977130977130977,0.01432,0.3587587587587587,0.6412412412412413,23.151464952120964,4.019503119862639,0.310758009898411,0.2880958582964313,0.2104714769471216,0.1906746548580359,11.398428549906033,6.432971852354463,15.137084128085396,11489.04644944227,44.07527961450618,13.731506183542953,13.500379044173895,9.001141038494422,7.842253348294908,0.5972909611878093,0.810126582278481,0.7057837384744342,0.5915841584158416,0.1051912568306011,0.7836206896551724,0.9193548387096774,0.8769716088328076,0.7487684729064039,0.1597222222222222,0.5166106756252333,0.7213114754098361,0.6438356164383562,0.5388429752066116,0.0918367346938775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0046522942196004,0.0070714756759498,0.0093538624037699,0.0118248739222384,0.0138327650262099,0.0161709412160303,0.0184467208096967,0.0206337208114568,0.0226286930190686,0.0246993259163644,0.0268581687612208,0.02927240397562,0.0314041247515985,0.0334615821015606,0.035503142053911,0.0375696213015301,0.0395071204090734,0.0414925248996735,0.0435960770826168,0.0585586526808475,0.0725317529292273,0.0859484875837024,0.0986711278053091,0.1103622844486631,0.1254086652912236,0.1364118783299017,0.1472921880824325,0.1571769081950041,0.1658528209145837,0.1778326078524328,0.1893027284538761,0.199664904149531,0.2079635850357256,0.2162248447751992,0.226065096293343,0.2362628167222662,0.2432687553377983,0.2502210533475412,0.2571902528314838,0.2628634829642642,0.2690990685661528,0.274640062412823,0.2801316183069099,0.2833991903226588,0.2871002250175218,0.2905223209827224,0.2941818551048383,0.2987667075611803,0.3027206405225315,0.2995838367566116,0.2969352602901415,0.2946508882392624,0.2923424850911815,0.2893440075765423,0.2845327473600683,0.2806610474476749,0.281563093445092,0.2827313481173402,0.2826594020974663,0.2833881087541081,0.2837199228133737,0.2839338649743226,0.2853772009883578,0.2871149799119954,0.2886397763164707,0.288453392821845,0.29293244339093,0.2973142003405024,0.3011920217160392,0.301154817755323,0.3037193352677393,0.303687907676869,0.3065444629601575,0.30958597538232,0.3128761949722648,0.3164595331918763,0.3199840605698346,0.3271177410761854,0.3208898944193062,0.0,2.1099479103479344,50.427077395004105,142.935426260831,193.60873209262977,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95854,47691,453.5856615269055,4956,50.61864919565172,3946,40.60341769774866,1452,14.824629123458593,77.34109898624328,79.6299276380607,63.34986309044478,65.0435350001295,77.15513245098612,79.44810686994941,63.279972144739816,64.97714616655584,0.1859665352571653,181.82076811129377,0.0698909457049623,66.38883357365444,243.52944,170.65628662026973,254062.8873077806,178037.7309452602,487.15706,324.37954077405465,507651.2925908152,337833.11158016854,465.66051,227.3483027290848,482031.7566298746,234303.53064377944,2236.658,1060.9612354457497,2302979.906941808,1076430.3998223855,913.73509,419.0452211137176,938590.7421703842,422503.9133616924,1411.79516,598.7069738861616,1442343.6684958374,598612.7189000282,0.38006,100000,0,1106952,11548.313059444572,0,0.0,0,0.0,41816,435.6312725603522,0,0.0,42068,435.0783483214055,1106801,0,39712,0,0,9928,0,0,89,0.9284954201180964,0,0.0,0,0.0,0,0.0,0.04956,0.1304004630847761,0.2929782082324455,0.01452,0.3617681271810779,0.638231872818922,23.297910850510323,3.9860460142280703,0.3220983274201723,0.2883933096806893,0.1964014191586416,0.1931069437404967,11.394989201219143,6.253989245254264,15.52760825950001,11540.2450520366,45.50832693463027,14.190684527722995,14.50804312756028,8.42948813764733,8.380111141699668,0.6008616320324379,0.8154657293497364,0.7018095987411487,0.5780645161290323,0.1351706036745406,0.7756622516556292,0.9333333333333332,0.8337950138504155,0.7513812154696132,0.2222222222222222,0.5237399561723886,0.7247278382581649,0.6494505494505495,0.5252525252525253,0.1099830795262267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.0046508800194546,0.0068973212021625,0.0089853189026742,0.0112516008375175,0.0136367336969795,0.0158012164185947,0.0181280285641418,0.020427757236533,0.0226786828564706,0.0248496829770452,0.0267273827471975,0.0290356706346353,0.0311850525752618,0.0331378994116374,0.0351945505212096,0.0371833316099679,0.0391429577902567,0.0411216311614966,0.0431747484940855,0.05774584736661,0.0720675528801939,0.0853147585628993,0.0975699403511719,0.1098452142781931,0.1252481939926492,0.1366313559322033,0.1479036441723009,0.1580401822391515,0.1673078365606146,0.1790294813858403,0.1904422099686452,0.2013433030474286,0.210985312117503,0.2201005356769658,0.2291265146983895,0.2372410561895518,0.2456475774888659,0.2525924077057475,0.2589513700433971,0.2645769475449656,0.2693980637014171,0.2758347428057767,0.2806515360201209,0.2854350781781101,0.2894156492170463,0.2942154962166218,0.2970949081431568,0.3005301952670374,0.3032824719427117,0.3014041316978696,0.297725024727992,0.2944768873566453,0.2915685282855285,0.2890760796897981,0.2849361181240915,0.2812722412893226,0.281158706712621,0.2808137147549959,0.2816006585894017,0.2815462891688414,0.2838492730689348,0.2847586293671098,0.2851058106169297,0.2868512444530194,0.288519795257495,0.2895591250854408,0.2943062847800798,0.299986032544172,0.3049093566096607,0.3084903950706777,0.3119096617592739,0.315390874381924,0.3194119864304561,0.3237996999249812,0.3300294985250737,0.3324714828897338,0.337594886136636,0.3411924119241192,0.35041761579347,0.0,2.138361208049914,52.7658384767945,146.1758865214843,198.95860652575968,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95648,47614,454.2907326865172,5074,51.79407828705253,4029,41.600451656072266,1467,15.065657410505189,77.31769350596971,79.74112375187164,63.289715480586615,65.08181976431858,77.12556725275012,79.54858750641014,63.21631591582427,65.01025261881789,0.1921262532195982,192.53624546149692,0.0733995647623473,71.5671455006941,242.76736,170.0535073203577,253812.39544998328,177790.20952981603,487.32514,324.74595557986214,508942.0583807293,338969.1750635662,468.87016,229.0279447930104,486552.51547340245,236748.68549687503,2283.53048,1082.9921648944562,2359314.904650385,1104425.3755669997,930.45754,419.6009559172768,961811.538139846,428234.5088396132,1423.99764,612.173120400339,1462953.161592506,616919.1294819486,0.37954,100000,0,1103488,11536.92706590833,0,0.0,0,0.0,42059,439.16234526597526,0,0.0,42426,440.0719304115089,1104261,0,39588,0,0,9636,0,0,80,0.8154901304784209,0,0.0,0,0.0,0,0.0,0.05074,0.1336881488117194,0.2891210090658258,0.01467,0.3619353619353619,0.6380646380646381,23.163389278085187,4.105032948307813,0.319434102755026,0.2841896252171755,0.202283445023579,0.1940928270042194,11.261701790215604,5.9206180050031305,15.60935465066456,11521.741349222602,46.20508915089949,13.969801229856,14.71152098280093,9.091309958769244,8.432456979473303,0.5909655001241003,0.8043668122270743,0.7024087024087025,0.5717791411042945,0.1150895140664961,0.7510271158586689,0.9297520661157024,0.8505434782608695,0.6834170854271356,0.0903614457831325,0.5216927453769559,0.7125567322239031,0.6430903155603918,0.5357142857142857,0.1217532467532467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024313153415998,0.0048168579888857,0.0070862944162436,0.0092887122836614,0.011649556909866,0.0136919315403422,0.0160161589782302,0.0181039855331582,0.0202327223603819,0.0222124274790381,0.0242262485243545,0.0261988977543801,0.0283078127091678,0.0304408821769717,0.0325150331659537,0.034448503161315,0.0365478128337255,0.0384427617296646,0.0405240865429644,0.0427573261028261,0.0574680210684725,0.0719120667253447,0.085165383443799,0.0979008457706202,0.1102510217228306,0.1258247985002701,0.1371838469713071,0.1477103142455123,0.1575861958300795,0.1675546198629401,0.1800176910962007,0.1918013068495822,0.2022503730652347,0.2114318883753532,0.220512707474596,0.230588339692963,0.239542238961097,0.246697077208988,0.2536277960713069,0.2599672247624941,0.2661093292266364,0.2718911265314719,0.2774126313046979,0.2814104101703046,0.2850541726959884,0.2887004535594557,0.2917474574362951,0.2943966229704128,0.2975558604976309,0.3004619242444239,0.2985958724303658,0.294978763178513,0.2928298063935164,0.2902253687655905,0.2875853792245121,0.2837815113203797,0.280656836249269,0.2810884220171477,0.2814615724832443,0.2814567774210143,0.2821356839991073,0.2822125558429344,0.2837239152037098,0.2844793278797258,0.2867229288006656,0.2883509911581986,0.2872915727805317,0.2910139892676572,0.2936689549961861,0.2965346728935285,0.3014274098834583,0.3050874236359806,0.3071008876109514,0.3116755860405517,0.319925512104283,0.3242989557667488,0.3285258843175953,0.3315454906634882,0.3341470029834554,0.3318250377073906,0.0,1.983284027105652,53.1562349517084,147.0899252505196,206.63372333507607,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95690,47568,454.2585432124569,4911,49.76486571219564,3910,40.06688264186435,1559,15.7069704253318,77.34880342590687,79.70523681628679,63.338894218876014,65.07645733228021,77.14175465550225,79.50778248647956,63.2580895511929,65.00317015212043,0.2070487704046115,197.4543298072291,0.0808046676831111,73.28718015978097,244.22508,171.0250753247878,255225.28999895495,178728.26348081074,486.26634,323.7938118810956,507369.0772285505,337578.5786196005,464.27955,226.8303705439724,480618.3613752743,233483.83904979585,2225.89028,1069.4458269981749,2281346.4311840315,1072939.5249961826,909.10871,424.4092087084158,930003.6367436514,423561.8814171189,1510.52652,663.8229724791661,1523668.303898004,646052.4033140882,0.38039,100000,0,1110114,11601.149545407045,0,0.0,0,0.0,41840,436.3987877521162,0,0.0,42047,434.8103250078378,1102901,0,39529,0,0,9693,0,0,85,0.8882850872609468,0,0.0,1,0.0104504127913052,0,0.0,0.04911,0.1291043402823418,0.317450621054775,0.01559,0.3547507788161994,0.6452492211838006,23.41310548791719,4.057302965267495,0.2923273657289003,0.2872122762148337,0.2140664961636828,0.2063938618925831,11.485282621664243,6.376866244095071,16.897131887633446,11508.2816012188,45.09966556324237,13.790733139297208,13.019812396802692,9.320482751095597,8.968637276046874,0.5843989769820972,0.8227960819234195,0.6876640419947506,0.5806451612903226,0.1102850061957868,0.7483974358974359,0.9224489795918368,0.8163265306122449,0.7554585152838428,0.1559139784946236,0.5075131480090158,0.7456556082148499,0.6325,0.5148026315789473,0.0966183574879227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.0046831285731662,0.0069605803865861,0.0091427178252521,0.0113978363429315,0.0135287830203084,0.0154830949881252,0.0179238542410942,0.0201113893004956,0.0223530013817102,0.0244654900272635,0.0263560322266126,0.0281290481771636,0.0303192529830232,0.0323286088589053,0.0344289566951508,0.0361872417970408,0.0381821954762398,0.0401139577441357,0.0419714494112743,0.0565535248041775,0.0707011502674188,0.0836988227393868,0.0970063660756563,0.1093364278932376,0.1254245178218136,0.1369560602844406,0.1474681859325914,0.1576298354349219,0.1670153753715089,0.1792186523584804,0.1904313572711728,0.2014272660023497,0.2109298942233015,0.2195100477626395,0.2291708225280936,0.2384617962840895,0.2463573921855646,0.2528927496735366,0.2600804372486336,0.2666558618214654,0.2713627216996583,0.2757673686328823,0.2795546874063777,0.2840351644081791,0.2885610128577762,0.2929965757704516,0.2961306309168308,0.298778675282714,0.3011776794182738,0.298247501714839,0.2950952629697853,0.292772882119429,0.289737035913876,0.2874129715125514,0.2836083372838071,0.279872921540115,0.2803143161168863,0.281191964970269,0.282414744902502,0.2834567809100916,0.284854682030912,0.2874921826141338,0.2883895965084172,0.2885946217762984,0.2906488252683989,0.2915483357946155,0.2952694235588972,0.2994375938799036,0.3020820986922682,0.3046931735657225,0.3073079989370183,0.310772344866848,0.3145672599495837,0.3175872776889056,0.3226227175717334,0.3262040313894445,0.3304027806174606,0.3352713178294573,0.3419131771033423,0.0,3.003071614861955,53.47753234615352,138.98472126186277,195.93602260630857,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95631,47495,453.5558553188819,4783,48.72896863987619,3768,38.75312398699167,1454,14.848741516872144,77.26744378178137,79.68250427051073,63.28338998351626,65.06949496838749,77.08161208018687,79.49913674957041,63.21301277393805,65.00222520744707,0.1858317015944948,183.3675209403225,0.0703772095782113,67.26976094041959,243.34618,170.52093367357588,254463.6990097353,178311.35685455124,485.96821,324.06079466460534,507543.3698277755,338239.04870241374,463.86812,227.08981474313688,480394.2863715741,233976.55791218363,2149.85892,1029.802280383214,2215473.76896613,1044246.1967178144,865.18303,404.0498695543675,889137.8005040206,406937.30020010966,1404.40564,606.088223332347,1436468.0072361473,607040.5544968362,0.37666,100000,0,1106119,11566.531773169789,0,0.0,0,0.0,41763,436.05107130532986,0,0.0,41910,433.614622873336,1103388,0,39584,0,0,9702,0,0,88,0.9097468394139976,0,0.0,1,0.0104568602231493,0,0.0,0.04783,0.1269845483990867,0.3039933096383023,0.01454,0.3595099417553725,0.6404900582446275,23.155636190659568,4.023816339714227,0.3139596602972399,0.2778662420382166,0.2109872611464968,0.1971868365180467,11.467315645422172,6.315520459454919,15.718758534771968,11374.101556260834,43.58817189444315,12.981185833098412,13.490539845310876,8.8620918868399,8.25435432919397,0.589968152866242,0.8194842406876791,0.6906170752324599,0.5723270440251572,0.1251682368775235,0.7574503311258278,0.9136069114470844,0.8619718309859155,0.7201834862385321,0.1686046511627907,0.5109375,0.7448630136986302,0.6171497584541062,0.5164644714038128,0.1120840630472854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002269641518228,0.0042283512472115,0.0067413905133203,0.0087594504511828,0.0108546373818655,0.0130769544139813,0.0151926096620918,0.0173763897538514,0.019519626990051,0.0217918915320887,0.0237526280703553,0.0257221514566298,0.027991523331413,0.0297987655974693,0.031905120715104,0.0341162848399636,0.0363320007456967,0.0384347916342311,0.0402442322494747,0.0420472079736436,0.0567069028583372,0.0708338133791384,0.0841087143727289,0.0972769201608996,0.1098747967822984,0.124923233307215,0.136357360578608,0.1471334185848252,0.1569067864591689,0.166612972508591,0.1787986627844279,0.1901651773625778,0.2013559395812475,0.2098496619034072,0.217753120665742,0.2269610395365067,0.2349868868924725,0.2430386013073366,0.2506016164184526,0.2572132462472785,0.2629459015254983,0.2686968623185863,0.2734621894492643,0.2777564579185954,0.281027398925437,0.2845246613535986,0.2880492597274195,0.2903943737202884,0.2927369238736406,0.2963618122293801,0.2936017137544965,0.2908395581417743,0.2885408891830613,0.2851962087499277,0.2828483965881059,0.2791551882460973,0.2764101508699162,0.2767756205455886,0.2774596031908365,0.2775343734416186,0.2775700235593283,0.2779018077644967,0.2793037802556432,0.2796211699164345,0.2813609751415682,0.2835436451151294,0.2858156430922919,0.2900823083904484,0.2936610608020699,0.2980030113321182,0.3031659737767828,0.304057661505606,0.3072151898734177,0.3125573569899051,0.3147241574091508,0.3152938371677196,0.3166461916461916,0.3179695431472081,0.3239674065748806,0.3232844109480365,0.0,2.5537252229702534,52.29385930918753,133.93851706112278,188.86948265523097,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95830,47839,455.6088907440258,4922,50.0260878639257,3902,40.05008869873735,1487,15.120525931336742,77.40182060844235,79.71453974976852,63.36325590393732,65.07533433892401,77.2155535185461,79.53284552266209,63.29235428999899,65.00867400592958,0.1862670898962477,181.69422710643343,0.0709016139383322,66.66033299443086,244.266,171.15631902175744,254894.89721381612,178603.8877405379,487.84176,324.2615540485316,508415.0787853491,337717.1937269452,473.3876,231.34353077733715,489261.2125639152,237840.35894957348,2217.42128,1056.5026628719586,2275963.560471669,1064553.1283230295,891.55672,415.1195371531634,911348.6799540854,414332.0598555396,1440.38922,613.2746064958696,1465257.6020035478,608208.2081352093,0.38086,100000,0,1110300,11586.131691537095,0,0.0,0,0.0,41951,437.0865073567776,0,0.0,42783,441.7718877178337,1102862,0,39616,0,0,9515,0,0,89,0.918292810184702,0,0.0,1,0.0104351455702807,0,0.0,0.04922,0.1292338392060074,0.3021129622104835,0.01487,0.3554947203754399,0.6445052796245601,23.11915479745179,4.024333999717807,0.3157355202460277,0.2780625320348539,0.207842132239877,0.1983598154792414,11.49549074854774,6.416746699561264,15.7907067394732,11543.745202584849,44.6672256495227,13.404235565979386,13.87240009110467,9.004580432537463,8.386009559901172,0.583803177857509,0.8046082949308756,0.6858766233766234,0.6041923551171393,0.0904392764857881,0.7676767676767676,0.9264705882352942,0.8470254957507082,0.7525252525252525,0.1428571428571428,0.5033161385408991,0.7093596059113301,0.621160409556314,0.5562805872756933,0.0766721044045677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871645841349,0.0043478701517193,0.0066245992776853,0.0089379119818804,0.0113052937648051,0.0134879270328596,0.0155939458798348,0.0174831598285364,0.0196966289837888,0.0219849953430293,0.0239454666598329,0.0263992527738717,0.0286175385216327,0.0307763591433278,0.0327268601604884,0.0350596209882411,0.0369335237976937,0.0387714259049949,0.0406950777444249,0.0427732911497793,0.0577996099412826,0.0711926068411809,0.0843969401655663,0.0976270759146629,0.1093639743441215,0.1253168567807351,0.1366597807087239,0.147709152758584,0.1572392153514482,0.1671272789596589,0.1794557384102398,0.1921892391316093,0.2031614970938128,0.2123807754919205,0.2215358234220766,0.2304737657737436,0.2384802390935855,0.2469139966273187,0.2543407010898533,0.2609307594603563,0.2669819283377077,0.2728356394913986,0.2787065500118231,0.2830195458465076,0.2869383692987353,0.2910957639324888,0.2934184872269159,0.2965479577321682,0.2998423242949828,0.3020820986922682,0.2987641053197206,0.2963817053752814,0.2935345735345735,0.2903346527527887,0.2880879459067572,0.2849382791400278,0.2814017277255817,0.2811290243543882,0.2808845526244221,0.2816393908196954,0.2826123391497048,0.2838907327035997,0.2842492823563672,0.2853812336249389,0.2874943416005527,0.2868505319698378,0.2856014443692168,0.2899310944192687,0.2937239944521498,0.2991795234169512,0.304096733441617,0.3095325920851557,0.3123091305702711,0.3151209980459943,0.3186924493554328,0.3205769454460858,0.3234497290788681,0.3269346130773845,0.3307193077339102,0.3245481927710843,0.0,2.5175726620336043,51.01388156450477,141.42272293994293,199.63553708166597,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95700,47663,454.5454545454545,4948,50.543364681295714,3939,40.6060606060606,1507,15.433646812957155,77.32145341825886,79.70839871802394,63.3143933609397,65.07990158082757,77.1309142743097,79.52082603410213,63.2429389320986,65.0118525771639,0.1905391439491524,187.5726839218146,0.0714544288410934,68.04900366365985,243.74878,170.79541801858605,254700.91954022984,178469.61130468763,488.11349,324.61057863631527,509510.9195402299,338661.48237859475,465.29398,227.36367972321875,482939.8119122257,235062.34589476,2233.84772,1054.5555686859743,2304568.0668756533,1072287.866965491,895.59195,411.7849711185586,923898.8714733544,418353.4389953585,1461.71058,618.2911304044322,1498031.473354232,620449.3750497417,0.37957,100000,0,1107949,11577.314524555904,0,0.0,0,0.0,41969,437.9728317659352,0,0.0,42180,437.4921630094044,1104502,0,39552,0,0,9614,0,0,94,0.9717868338557992,0,0.0,0,0.0,0,0.0,0.04948,0.1303580367257686,0.3045675020210185,0.01507,0.3510267338240992,0.6489732661759008,23.316161403079963,4.107478481318216,0.2977913175932978,0.2911906575272912,0.2056359482102056,0.2053820766692053,11.629095665173356,6.397995235058735,16.0835518766089,11520.393262752768,45.215599376108045,14.0035608099676,13.37848042388206,9.045117137185796,8.788441005072588,0.5917745620715917,0.8116826503923278,0.7067348678601876,0.5975308641975309,0.107540173053152,0.770940170940171,0.9114470842332614,0.8919753086419753,0.7725118483412322,0.1627906976744186,0.5160707836764175,0.7441520467836257,0.6360424028268551,0.5358931552587646,0.0926216640502354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088027883602,0.00430990771727,0.0065169725515673,0.0088007235698824,0.0110491616474035,0.0130388721375601,0.0150116768818136,0.0173881968552174,0.0196178656498226,0.022038200913055,0.0242979731184449,0.0264430729418047,0.0285047113525079,0.030696466660484,0.032668944375058,0.0345836521163747,0.0366982930062976,0.0384922735244974,0.0406734889138483,0.0427002126151665,0.0571756841445581,0.071245380983785,0.0840015112715671,0.0971523583019384,0.1101920236336779,0.1260120868304351,0.1375668676233336,0.1474795241290432,0.1573120164151669,0.1665719280558564,0.1794543123969968,0.1909838727134971,0.2019488004872001,0.2106972928630024,0.2207215134183898,0.229164821539279,0.237589087542801,0.2455296431581905,0.2529392424293958,0.2598481986468386,0.2660538790611631,0.2716892041934994,0.2771731415322008,0.2815745654491656,0.2855026711996115,0.2892900653449994,0.2927381145850262,0.2952608380860442,0.2986152375539308,0.301810520771611,0.2990526103608144,0.2957164809834806,0.2931477606280634,0.2905410273035084,0.287508526350129,0.2851660448902208,0.2814914290228296,0.2824862457427299,0.2824298778930159,0.2823460327063722,0.2837272693327359,0.2843417140832037,0.2859944912778566,0.2862781829129591,0.2870201535508637,0.2888987265956615,0.2902775403202827,0.2929838329932506,0.2961224561280605,0.3027871120774856,0.3067512460353421,0.3084954157613016,0.3135807143758677,0.3145389258155703,0.3181690008459442,0.3238163216749941,0.3272532188841202,0.3312398703403565,0.3353424657534246,0.3346065699006875,0.0,2.1855049767095487,50.816307985606215,149.9629312683344,197.9097105985296,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95693,47604,453.1261429780653,4996,50.72471340641426,3945,40.514980197088605,1499,15.204873919722449,77.3455376358958,79.73168147056423,63.32130932583449,65.08690683548608,77.14808928055855,79.53933692920661,63.24539491584436,65.01555561630136,0.1974483553372437,192.34454135761325,0.0759144099901334,71.3512191847201,243.76264,170.64224115285916,254732.8853730158,178321.576737122,483.39738,322.1449533058324,504446.5530394072,335938.8531347987,470.82127,230.19704685177317,487197.6947112119,236925.09785837636,2236.6772,1071.5508387496204,2300472.678252328,1083045.3441167865,888.24519,410.4537766041824,912686.3929441024,413529.60630765074,1453.71784,630.2518326592808,1477086.4535545963,623428.2823273467,0.37905,100000,0,1108012,11578.767516955264,0,0.0,0,0.0,41677,434.7862435078846,0,0.0,42553,439.8545348144588,1106271,0,39626,0,0,9621,0,0,82,0.8569069837919179,0,0.0,0,0.0,0,0.0,0.04996,0.1318031921910038,0.3000400320256205,0.01499,0.3577486507324595,0.6422513492675405,23.19926080099316,4.070073236970299,0.3054499366286438,0.294296577946768,0.2027883396704689,0.1974651457541191,11.81414121529235,6.521178632940975,16.022771591268697,11544.9967270811,45.294907147224734,14.275176767640229,13.733865831501513,8.800441272180404,8.485423275902598,0.6032953105196451,0.8234280792420328,0.7186721991701245,0.5875,0.1129653401797175,0.7669111654441728,0.917004048582996,0.8835227272727273,0.7658536585365854,0.1136363636363636,0.5294334069168506,0.7541229385307346,0.6506447831184057,0.5260504201680672,0.1127694859038142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201856148491,0.0045438409655662,0.0069343621503629,0.0091973414093782,0.0115162366729063,0.0140252597270319,0.0163977891538006,0.0185860318821931,0.0206560863874345,0.0226211444722074,0.0251781959899492,0.0270744959480695,0.0293672917288128,0.03155172236133,0.0333639487724584,0.0353254970071023,0.0373428080134247,0.0394071798490965,0.0416068717372766,0.0433849423826293,0.0584641413666698,0.0726134781835117,0.0863341064850285,0.0991477272727272,0.1113584101601232,0.1265813412312249,0.1376818514627701,0.1485355202897007,0.1585597913236834,0.1679995706081262,0.1791054430202348,0.1903818034118602,0.2011322192586141,0.2106351777271931,0.2196021445005889,0.2294497019126349,0.2378863476542879,0.2456653577415979,0.2527456319491717,0.2588233947317207,0.2653778965513252,0.2709920987423442,0.2767031615786611,0.2805894041320533,0.284503147400211,0.2888342351205115,0.2932162749456752,0.2961877576910878,0.3000761221567084,0.3021599747740172,0.2993631427230676,0.2956807447463892,0.2930456375650612,0.2904177399162506,0.2880822120360786,0.284592992242391,0.2806499960558491,0.2804568319979026,0.2812169943102449,0.2816447239493328,0.2830792255167898,0.2836525172754195,0.2837798241942235,0.2850039023302486,0.2847585247709941,0.2862155909646227,0.2882346267302019,0.2924433879644689,0.2974670295164329,0.2988510285466103,0.3048741925283462,0.3105155073455847,0.3139491398653702,0.3169464729353308,0.321235305094234,0.3286762964717026,0.3382531953743152,0.350575873913922,0.3508391987005955,0.3502479969477299,0.0,2.735081318361547,52.7478107127337,141.67954677242113,199.4690057742473,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95615,47785,455.49338492914296,4915,50.15949380327355,3937,40.63170004706375,1488,15.185901793651624,77.23812690061078,79.6698740942224,63.25655152000609,65.05458841751792,77.04351609730651,79.47710172150455,63.18332206412629,64.98423048894082,0.1946108033042719,192.7723727178403,0.0732294558797974,70.35792857709566,243.10286,170.35835743198086,254251.80149558125,178171.1629262991,486.41202,323.4687702336409,508192.365214663,337776.3742442513,470.29651,229.35354610977865,488564.50347748783,237284.9738345453,2250.62896,1063.5120767187225,2325486.3358259685,1083927.079138965,887.84139,407.2431414510954,916524.520211264,413890.3778390394,1443.38316,619.7699739858799,1475456.047691262,619426.627010103,0.38084,100000,0,1105013,11556.900067980963,0,0.0,0,0.0,41742,436.00899440464366,0,0.0,42531,441.49976468127386,1101472,0,39620,0,0,9689,0,0,86,0.8994404643622863,0,0.0,0,0.0,0,0.0,0.04915,0.1290568217624199,0.3027466937945066,0.01488,0.3455466770610017,0.6544533229389983,22.96372880271596,4.040008577925634,0.3157226314452629,0.2824485648971298,0.1953263906527813,0.206502413004826,11.361097210949286,6.202492770588989,16.135767483895993,11541.758712240764,45.54969486370402,13.740476442300448,14.192888357157337,8.79830786918243,8.81802219506381,0.5847091694183388,0.8030575539568345,0.7047465808527755,0.5851755526657998,0.1020910209102091,0.7720891824938068,0.9458333333333332,0.8853868194842407,0.7095238095238096,0.1337209302325581,0.5014673514306677,0.694620253164557,0.6342281879194631,0.5384615384615384,0.093603744149766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0044323633523678,0.006711477540411,0.0089039773131536,0.0110629376323074,0.0131116476664934,0.0152990973532561,0.0176316757242675,0.019638729210564,0.0217959091700552,0.0238241812361487,0.0260883860957841,0.0282517856775282,0.0304939022504458,0.0325085711925317,0.0344552857305451,0.0367291085701253,0.0389030280995169,0.0411080113257828,0.0433140687266581,0.0582602423241372,0.0723986167871738,0.0855684074505972,0.0985550593984329,0.1102686491509673,0.1258592384684637,0.1381526531045838,0.1489570342894296,0.1585552429147632,0.1691066691012986,0.1806147439286215,0.1918094804505002,0.2022205031542476,0.2111202410298548,0.2197675059225387,0.227970135013701,0.2364097918833383,0.2442420211266811,0.2524758666954712,0.2595752009184845,0.2660626029654036,0.2717040858198019,0.2772973678279539,0.2813893395829577,0.2855054455083692,0.2897419107745148,0.2937198916097953,0.2971908034837607,0.3009294114592798,0.3025162305464834,0.3000323790507541,0.2969178790595049,0.2946967559943582,0.2912306601247594,0.2885888074240418,0.2855192932948899,0.2819187723914904,0.2821651128759105,0.2819068812050667,0.2821997105643994,0.2824796329244311,0.2837888579277089,0.2837280398685009,0.2845552078676799,0.2859133275679831,0.2881731069680242,0.2894796831367185,0.2942376498650429,0.2996675415573053,0.304604718950644,0.3066255778120185,0.3100738396624473,0.3126834447011803,0.3160437901094752,0.3209107806691449,0.322606972134779,0.3297920095765375,0.3322803553800592,0.3307214266414482,0.3399550224887556,0.0,2.1127073127023714,53.09503809751452,146.37306224194845,197.92569812416892,fqhc5_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95736,47617,453.1524191526698,5012,51.35998997242417,3991,41.28018718141556,1462,14.97869140135372,77.33641368994157,79.71046739260179,63.332022412709286,65.08892684870891,77.1508035203427,79.52582917093964,63.261941392412055,65.02087550948737,0.1856101695988599,184.63822166214072,0.0700810202972306,68.05133922154027,243.5136,170.6109267935954,254359.48859363247,178209.79233892725,483.52472,322.19603753751363,504650.0167126264,336135.8919711641,467.55207,228.2778391855209,485542.0218099774,236289.6680659106,2561.46388,1198.6275716114176,2649771.0996908164,1226235.221454226,899.4569,410.1391012419794,926684.0895796774,415572.4923142592,1411.13674,600.9649514432537,1447359.760173811,605732.3631027845,0.37942,100000,0,1106880,11561.794936074204,0,0.0,0,0.0,41706,435.19679117573327,0,0.0,42308,439.09292220272414,1108041,0,39727,0,0,9600,0,0,79,0.8251859279685803,0,0.0,1,0.0104453914932731,0,0.0,0.05012,0.1320963575984397,0.2916999201915403,0.01462,0.3617061973986228,0.6382938026013772,23.095978775449097,3.932118913009016,0.3274868454021548,0.2836381859183162,0.2004510147832623,0.1884239538962666,11.384247279522013,6.355918406195426,15.584958911186316,11538.40347418628,45.80418487407177,13.906934501896815,14.84416521293164,8.787924085735675,8.265161073507635,0.6036081182660987,0.8127208480565371,0.7130833970925784,0.5825,0.1210106382978723,0.7843959731543624,0.9279475982532752,0.8834688346883469,0.7897435897435897,0.1764705882352941,0.526616648803144,0.7344213649851632,0.6460554371002132,0.515702479338843,0.1048109965635738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786713144988,0.0044929461759247,0.0069648205492664,0.0092588828360029,0.0115154166200421,0.0134947955920395,0.0156028513445986,0.0181131304880539,0.0202018136648502,0.0225109022787298,0.0247962687714622,0.0269806884798209,0.0292251529641626,0.0312390565454732,0.0332356522277483,0.0352764857881136,0.0372019341278305,0.0392335861074514,0.0412600421954083,0.0432998281339513,0.058201942153075,0.0720630237594551,0.0854638115811329,0.0984506065129186,0.1103675052432996,0.1258335535006605,0.1365231124725734,0.1468874284863565,0.1567970284348049,0.1656811072545742,0.1768738229755179,0.188840830449827,0.1995175328979538,0.2088412635994232,0.2173034028853655,0.2271646708904147,0.2356185446401711,0.2439709617243161,0.2520915047498129,0.2575934312245551,0.2639277214224645,0.2698436788587039,0.2754491017964072,0.2800181837757653,0.2840395223373946,0.2879313313165597,0.2921276755163715,0.2960649118128833,0.300233901502914,0.3034280969514847,0.3010596525200366,0.2986711054861607,0.2964292249011245,0.2941201952233806,0.2919464084130473,0.2880315852296203,0.2839002482723722,0.2842671212667606,0.2849566878111997,0.2862639613801949,0.2877121571409899,0.2894799007834954,0.2900281337918099,0.2904465674294601,0.2912572617083841,0.2916655878621547,0.2936307000824965,0.2981348907309721,0.3023654559451326,0.3059760640405801,0.3084261457002008,0.3131507288162742,0.3156586578293289,0.319398634655212,0.3213612368024133,0.3271856287425149,0.3270798093187759,0.3360258481421648,0.3378635498776841,0.3370744481855593,0.0,1.528401973054427,52.572648540592574,147.47362384784086,205.1422400134767,fqhc5_80Compliance_implementation_low_initial_treat_cost,0 -100000,95605,47756,454.3590816379896,4993,50.88645991318445,3998,41.19031431410491,1489,15.124731970085248,77.26635035352784,79.70323783142267,63.26822878755484,65.0716641171685,77.07576884100291,79.51870463462407,63.19634016395949,65.00495725668752,0.190581512524929,184.53319679859703,0.071888623595349,66.70686048097707,242.67716,169.96103389940373,253833.12588253757,177774.2104486206,488.62859,325.6029666467582,510474.4730924114,339954.4967802501,475.2861,232.17505260053463,493292.42194445897,239918.03803728297,2563.69361,1220.1900779349398,2640616.5472517125,1235393.8579937655,934.97442,436.0047987587965,959664.0029287172,437785.5784719703,1436.68578,618.875947521076,1460112.4418178964,610253.8540349802,0.38054,100000,0,1103078,11537.86935829716,0,0.0,0,0.0,42065,439.32848700381777,0,0.0,43018,446.0959154855917,1103868,0,39667,0,0,9639,0,0,79,0.8263166152397887,0,0.0,0,0.0,0,0.0,0.04993,0.131208282966311,0.2982175045063088,0.01489,0.355662188099808,0.6443378119001919,23.099882013115916,4.086695977264028,0.3086543271635817,0.2866433216608304,0.208104052026013,0.1965982991495748,11.823027419070256,6.7224806776358585,16.102184032903374,11539.139121325205,46.25518023363931,14.105707304990796,14.078845295289495,9.340967856413457,8.729659776945558,0.5995497748874438,0.8141361256544503,0.7042139384116693,0.5985576923076923,0.1234096692111959,0.764234161988773,0.9133192389006344,0.8760330578512396,0.7737556561085973,0.1684210526315789,0.524900036350418,0.7444279346210996,0.6326061997703789,0.5351882160392799,0.1090604026845637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.0045346183109307,0.0069464896869001,0.0093439889376931,0.0115022088312534,0.0141769520062782,0.016278167864141,0.0187302657797124,0.0212818204141769,0.023568230025925,0.0256991840714322,0.0278871357352109,0.0299664408803607,0.0318699220522126,0.0338380812692379,0.035926780558976,0.0380190302452372,0.0402571639264237,0.0421831579604708,0.0441684135873929,0.0585867667506507,0.0726337189805499,0.085421065347325,0.0984663352153029,0.1108928250789526,0.1264670988517435,0.1381655861409289,0.1486372606539015,0.1582214801018988,0.1679326979897499,0.1792695029340697,0.1904844496959316,0.2009518830730358,0.2099255039439088,0.2188326573796508,0.2283565867400128,0.2371139777740548,0.2453703182519222,0.2519905950771817,0.2584621382378572,0.264917683562183,0.2704616753289319,0.2747345117027951,0.278935448695673,0.2832446485409529,0.2872855962612674,0.2910609418629403,0.2949044261752653,0.297823581962013,0.3011525477371031,0.2987126541922813,0.2961863533292104,0.2939662085168043,0.2907168003693657,0.2884858020751384,0.2844127852764487,0.280873660587287,0.2812889471958019,0.2812409394027254,0.2817293286723265,0.2818323126767421,0.2829465784536388,0.2841272829975522,0.2844718003612765,0.286074248278179,0.2871006348215215,0.2892672389289978,0.2944130571249215,0.3011972274732199,0.3064407584814536,0.3111816738489453,0.3177204482977374,0.3226740526249528,0.325867269984917,0.3286019111234808,0.3289304500292226,0.3309167799426069,0.3359281437125748,0.3374016815839435,0.337696335078534,0.0,2.40310343977236,54.29366144880949,150.48070692008136,195.48359209956632,fqhc5_80Compliance_implementation_low_initial_treat_cost,1 -100000,95708,47413,452.0416266142851,4825,49.316671542608766,3838,39.54737326033352,1446,14.805449910143352,77.34534288058313,79.71372755244262,63.32656324425341,65.07446682543403,77.16878231665841,79.5389332232376,63.26077474371305,65.01108078487701,0.176560563924724,174.7943292050138,0.0657885005403571,63.38604055702035,242.88352,170.13723834637258,253775.56735069168,177766.997896072,481.908,320.90386557764054,502968.9785597861,334744.65622271964,464.44895,226.6925401706916,481413.3092322481,233878.78631175545,2453.39702,1140.5278402296085,2530800.549588331,1159056.097953785,873.55297,392.6538655144785,901851.9141555564,399388.5189478592,1404.57984,586.1315815369065,1439854.1605717388,590076.8146850817,0.37771,100000,0,1104016,11535.253061395077,0,0.0,0,0.0,41389,431.87612320809126,0,0.0,41977,434.67630710076486,1110266,0,39813,0,0,9641,0,0,89,0.9299118151042756,0,0.0,0,0.0,0,0.0,0.04825,0.1277435069233009,0.2996891191709844,0.01446,0.355962572168027,0.6440374278319729,23.643071689015564,4.009137787222107,0.3025013027618551,0.295205836373111,0.2016675351745701,0.2006253256904638,11.398960049134605,6.145468103565385,15.307314121337871,11476.593549249565,43.86329833670097,13.787198981302817,13.325692126945496,8.48367399016176,8.2667332382909,0.5885878061490359,0.8022947925860547,0.7054263565891473,0.5697674418604651,0.1168831168831168,0.7754199823165341,0.935897435897436,0.8459302325581395,0.7167630057803468,0.1643835616438356,0.5105282600664943,0.7082706766917293,0.6462668298653611,0.5274542429284526,0.1057692307692307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0046824640707031,0.0071019844973824,0.0092626447288238,0.01111472675873,0.0132764536393162,0.0150148313507232,0.0172922429897001,0.0194631284116696,0.0216191870284877,0.0234966067291329,0.0254467036352433,0.0276172059821851,0.0297108242590322,0.0319088554297685,0.0338846392391978,0.0360501242750621,0.0382316313823163,0.0404454194782644,0.042621037494008,0.0566770753918937,0.0707064364207221,0.0840267357795662,0.0975748329738544,0.110115750266426,0.1255053016995068,0.1364881217756831,0.1474641617142735,0.1576725796110279,0.1667524612315809,0.1785687353894879,0.1908112672396995,0.2015470983745675,0.2096564104248076,0.2184761065844527,0.2279865675115539,0.2367466720226737,0.2458581245993094,0.2535262411347517,0.2604000870252259,0.2660622600490309,0.2708138556469708,0.2752474779132615,0.2796522905241984,0.2838484134883834,0.2875966701147727,0.2914983807034874,0.2947951189161047,0.2987139012524583,0.3014656412015356,0.2989189698577025,0.2955586426970001,0.2918716260976194,0.2884054202421195,0.2859560821344261,0.2822383311922677,0.2790220496551289,0.2796998136097577,0.2812950983887672,0.2814202317369625,0.2817506838608831,0.2830229409109641,0.2842282647138369,0.2841032941124135,0.285338057843325,0.2855662357178019,0.287121169366217,0.2919723914935953,0.297953520638224,0.3009982384028185,0.3057459859281977,0.3097689075630252,0.3146500777604977,0.3188875489900512,0.3223916682164776,0.3262677128469375,0.3254411099381692,0.3283403235470341,0.3306188925081433,0.3350077279752704,0.0,2.067479508895039,49.20375397611853,141.32503168972468,198.5109524740312,fqhc5_80Compliance_implementation_low_initial_treat_cost,2 -100000,95662,47478,451.9558445359704,4793,48.932700549852605,3829,39.44094833894336,1458,14.864836612238925,77.2498286400838,79.64867206903256,63.26585613190741,65.03886569191653,77.06591043147957,79.46671809725332,63.19647902545588,64.9721662391071,0.1839182086042399,181.95397177923667,0.0693771064515331,66.69945280943068,243.36004,170.36441765997623,254395.7266208108,178089.9601304345,482.31616,321.9243044734284,503556.04106123646,335895.4275358503,464.45957,227.56316747188552,481442.5477200978,234816.13992999803,2448.73467,1157.4067780938788,2524871.0877882545,1175335.0393674274,898.03059,413.61781074156187,925239.8444523426,419025.1032621739,1409.17574,598.1565959644338,1439347.3479542555,598775.3911945224,0.37896,100000,0,1106182,11563.442119127762,0,0.0,0,0.0,41585,434.0490476887374,0,0.0,41969,434.67625598461245,1100022,0,39563,0,0,9495,0,0,73,0.7631034266479898,0,0.0,1,0.0104534715979176,0,0.0,0.04793,0.1264777285201604,0.3041936156895473,0.01458,0.3670809943865277,0.6329190056134724,23.183345569236508,3.9691032587280928,0.2985113606685818,0.3016453382084095,0.1974405850091407,0.2024027161138678,11.621850448765512,6.554407303980409,15.695845125228807,11457.999366796224,44.268517341156766,14.258437595946264,13.06813324347237,8.490339480072691,8.451607021665433,0.5933664142073648,0.7896103896103897,0.7069116360454943,0.5965608465608465,0.1303225806451612,0.7623762376237624,0.893491124260355,0.8601823708206687,0.7571428571428571,0.1746987951807229,0.5150936186473061,0.7083333333333334,0.644963144963145,0.5347985347985348,0.1182266009852216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299161230195,0.004908373644873,0.0070137331127373,0.009103840682788,0.0111889819043647,0.0132911005642352,0.0154688583431904,0.0177362536376167,0.0199120474534669,0.0222037873434315,0.0244017519206507,0.0266563944530046,0.0288007408550702,0.0310651192513038,0.0331412996345165,0.0353918232684173,0.0374070006009989,0.039492945463606,0.0414898044111527,0.0434057283466619,0.0579975133474731,0.0720546195168434,0.0856150366786655,0.0980418977073052,0.1102927210180866,0.1254537181074531,0.1359099596517307,0.1470826407535268,0.1567390071983999,0.1662209046284063,0.1779079552074567,0.1893568113804918,0.2007196205637027,0.2101338012722088,0.2196618549419502,0.2294728656335055,0.2373315725860602,0.245190030449983,0.2520139268159476,0.2580426568045298,0.2643859628756834,0.2699741662752466,0.2758567422406008,0.2803935009801445,0.2839321174908324,0.2877838345632316,0.2907605626733257,0.294605703198795,0.2976422320895329,0.299809493570408,0.2960073428178063,0.2918022390117465,0.2894959762812367,0.2869329702798215,0.284734006132595,0.281917745270736,0.2779790819474991,0.2774986866298923,0.2775044417110838,0.2774413661290034,0.2779037304903411,0.2788727387629354,0.2802624979100485,0.2808710217755444,0.2821941495749075,0.2838811696391539,0.2853025122220024,0.2899272071175263,0.2951121294174825,0.2991352201257861,0.3023224473294101,0.3059892433815466,0.3089420811112489,0.3147467166979362,0.3157748821735514,0.315281812899477,0.3213104899308686,0.3235765838011227,0.3287337662337662,0.3277529761904761,0.0,2.195678890743252,53.00142872012004,142.11588339261527,185.62677251443952,fqhc5_80Compliance_implementation_low_initial_treat_cost,3 -100000,95746,48112,458.65101414158295,4995,50.91596515781338,3958,40.76410502788629,1554,15.885781129237776,77.32698317968122,79.68713580936988,63.31555014592704,65.06144098717361,77.12994959577713,79.49204961551108,63.24106527093596,64.9898530379844,0.1970335839040871,195.0861938587991,0.0744848749910858,71.58794918920819,242.6897,170.0777759635783,253472.18682764817,177634.1311130682,487.58504,324.8906892101527,508700.34257305786,338778.4297434778,473.56618,231.5765094378271,490201.4810018173,238574.40619834745,2563.65584,1216.8569130670548,2644701.5227790195,1238162.7923040483,899.26434,413.0582745735082,927230.4534915296,419446.7045669102,1497.82376,643.6728871782661,1533333.6327366156,646822.7604364495,0.38173,100000,0,1103135,11521.463037620371,0,0.0,0,0.0,41895,436.96864620976334,0,0.0,42882,443.6529985586865,1104422,0,39650,0,0,9638,0,0,79,0.8146554425250141,0,0.0,0,0.0,0,0.0,0.04995,0.1308516490713331,0.3111111111111111,0.01554,0.3620092378752886,0.6379907621247113,22.87206840585469,4.035473903493781,0.304699343102577,0.2776654876200101,0.2215765538150581,0.1960586154623547,11.315920744055337,6.234197653773159,16.785380621065183,11567.264542599283,45.84376505775772,13.620136081267164,13.710536907986144,9.874456934676228,8.638635133828181,0.5876705406771097,0.8334849863512284,0.6766169154228856,0.5746864310148233,0.1159793814432989,0.742014742014742,0.924949290060852,0.8208955223880597,0.7050691244239631,0.125,0.5188162221410303,0.759075907590759,0.6211251435132032,0.5318181818181819,0.1133333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019147966161795,0.0041775668714891,0.0064551488947079,0.0088182704811443,0.0107907449783879,0.0130034112316073,0.0151425541461027,0.017352959189923,0.0198683618821797,0.0223436812315124,0.0244437384058787,0.0266691303276669,0.0287817112783191,0.0308497055068165,0.0329681665325658,0.0351935853852592,0.0372184031803876,0.0390938605316931,0.0409387114543168,0.0430977904178516,0.057908528119095,0.0725733894084907,0.0861711050534703,0.0989004057776002,0.1118466127689177,0.1272706126160417,0.1381815482187741,0.1488464691415856,0.158370653812033,0.1668348180744875,0.178860123730896,0.1914792232967651,0.2014450332422933,0.2108902333621434,0.2202150963750646,0.2292687252011615,0.2378473773568045,0.2453969076228336,0.2538305146348943,0.2610175317978687,0.2676646637259329,0.2732020327392801,0.2776165029562662,0.2818528649582493,0.2861537339201906,0.2906001874044484,0.2955054913403379,0.2981607586075224,0.3021487688940122,0.3051140335835169,0.3030996071678415,0.2983582664173358,0.2953790735633478,0.2923416789396171,0.2902545832405552,0.2863746995882253,0.282770291642943,0.2831855506203596,0.2831266736027016,0.282493109273584,0.2829413960432997,0.2836938108182641,0.2835617871717066,0.2840845792206056,0.2848554525640104,0.2853248169496806,0.2863092876976256,0.291252422935034,0.2952945277100035,0.2979921259842519,0.3016223524109959,0.3062627959472938,0.3095489891135303,0.3140285071267817,0.3182660244535013,0.3227840710031531,0.3231835996382273,0.322670931627349,0.3246360889865421,0.3260536398467433,0.0,2.1897965523297818,53.2349461593822,150.3162963961755,195.5786496772905,fqhc5_80Compliance_implementation_low_initial_treat_cost,4 -100000,95760,47849,455.0751879699248,4994,50.97117794486216,3958,40.74770258980785,1476,15.016708437761068,77.39144353273707,79.73137670838207,63.36142006586866,65.08764996425724,77.20282885325851,79.54665908108873,63.29012880823209,65.02082288550467,0.1886146794785617,184.71762729333815,0.0712912576365667,66.8270787525671,245.29362,171.6969038187899,256153.65497076025,179298.38773076958,488.86133,325.8625029256319,509923.4753550543,339709.9481517151,466.51879,227.99556987883597,483760.1817042607,235451.1151192989,2552.47532,1196.1643707141814,2629263.9411027567,1213069.9382832434,925.77304,419.92877202399103,949821.021303258,421800.27249218535,1438.28102,611.3846186668834,1465290.2673350042,605470.0901509427,0.38127,100000,0,1114971,11643.347953216373,0,0.0,0,0.0,42076,438.77401837928153,0,0.0,42183,437.1658312447786,1098565,0,39389,0,0,9583,0,0,90,0.929406850459482,0,0.0,3,0.031328320802005,0,0.0,0.04994,0.1309832926797282,0.2955546655987184,0.01476,0.3636885402716663,0.6363114597283337,23.403795865473825,4.019290134715489,0.3004042445679636,0.2905507832238504,0.2061647296614451,0.2028802425467407,11.394584232547604,6.1391787158848095,15.764277707800863,11565.866570982946,45.34788232858554,14.139364729272067,13.502903222078873,8.97297406887006,8.732640308364545,0.5894391106619504,0.8234782608695652,0.703111858704794,0.5465686274509803,0.1295143212951432,0.7770326906957251,0.9381443298969072,0.8702064896755162,0.7219512195121951,0.1768292682926829,0.5084990958408679,0.7398496240601504,0.6364705882352941,0.4877250409165303,0.1173708920187793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286894540741,0.0047528806104766,0.0070818368133763,0.0093742700155391,0.0114386228914805,0.0138628776158293,0.0162828612186672,0.0186299916338482,0.0210646752954877,0.0229495784562494,0.025,0.0272183521252475,0.0294286888614878,0.0315246701385315,0.0338535760674597,0.0357832756572491,0.0378071246713998,0.0398153909977183,0.0418282174152573,0.0437409502380282,0.0588800167005897,0.0725107772150839,0.0858851298190401,0.0988757900493222,0.1108615653897658,0.1259147244194408,0.1364364268821651,0.147410528107579,0.1578531459570287,0.1669185666355811,0.178794402583423,0.1900616416134962,0.201371530419284,0.2104929708237299,0.2195904729454953,0.2288891347643284,0.2381918284555201,0.2457491970081534,0.2534789900729794,0.2599519560741249,0.2659579385255373,0.2717054761710032,0.2770376499793132,0.2814913257426098,0.285497775137311,0.2895109023157429,0.2924212524667149,0.2955336942982791,0.2988789614554106,0.3028004897894695,0.3001637891684343,0.29753528370983,0.2950391644908616,0.2917392117645366,0.2890719758601308,0.2860014007734706,0.2815240494371408,0.2822039844017687,0.2826865925108262,0.2822871348663766,0.2828987887497434,0.283806935664914,0.2865104047087308,0.2876822254915073,0.2891138511730557,0.2907475251383584,0.2918130311614731,0.2970290830541903,0.3025671516508114,0.3036560328490209,0.3078527384838592,0.3102626562169032,0.3169354332684947,0.3218095166048869,0.3253437383872166,0.3287080223880597,0.3321412606168976,0.3312871287128713,0.3327077747989276,0.3367003367003367,0.0,2.232628534880999,51.87557950329285,146.71608528076362,199.4249637125409,fqhc5_80Compliance_implementation_low_initial_treat_cost,5 -100000,95725,48020,457.4458083050405,4976,50.66597022721337,3908,40.20893183598851,1479,14.990859232175504,77.37264048070351,79.73284500321218,63.34029949113111,65.08212961165398,77.1825235492362,79.54762631092817,63.26774138791696,65.01439256113908,0.1901169314673154,185.21869228401044,0.0725581032141491,67.73705051490708,242.6545,170.0523772726772,253491.250979368,177646.77698895504,488.85161,326.3398734774139,510090.9166884304,340325.05761610734,471.13874,230.30192306075384,488766.4977800993,237901.77562843595,2538.94498,1204.917150749612,2611877.931574824,1218518.051424157,890.61534,413.8674091192556,912597.6704100288,414558.56789684633,1432.66942,619.4701018484668,1452905.698615827,609308.9010416613,0.38181,100000,0,1102975,11522.329589971272,0,0.0,0,0.0,42077,438.9344476364586,0,0.0,42669,442.35048315487074,1105035,0,39643,0,0,9581,0,0,80,0.8252807521546096,0,0.0,1,0.0104465917994254,0,0.0,0.04976,0.1303266022367146,0.2972266881028939,0.01479,0.3642857142857142,0.6357142857142857,23.29548720461764,4.018106058173155,0.3183213920163766,0.2842886386898669,0.1949846468781985,0.2024053224155578,11.552981300906088,6.326023863301446,15.937510001853688,11588.943353987108,45.03449963415814,13.718753219621956,14.17047126478253,8.487273950402972,8.658001199350691,0.5882804503582395,0.8136813681368137,0.7186495176848875,0.5446194225721784,0.1087231352718078,0.7762295081967213,0.936734693877551,0.9055555555555556,0.6968085106382979,0.1703296703296703,0.5029761904761905,0.71658615136876,0.6425339366515838,0.494773519163763,0.090311986863711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020354430379746,0.0044389042595238,0.0066648406829179,0.0091810204744881,0.0114591912474961,0.01401769262875,0.0162380355340815,0.0182399052790593,0.0203009363372449,0.0226125766462958,0.0248118604794225,0.0267348384513506,0.0291510714432608,0.0313388259526261,0.0334984009078716,0.0356046590944324,0.0377057666425095,0.0397668340040658,0.0417199338966667,0.0434746380585355,0.0583376840346663,0.0723665623790141,0.0858523900894383,0.0986756359049821,0.1105219325525253,0.1263585232799086,0.137326445974183,0.1477890703985526,0.1583134871898928,0.1678999635373099,0.1803006806237615,0.191351480006924,0.2022271521162295,0.2115773702111836,0.221007118259932,0.230033789397884,0.2381526373356548,0.2467943305526472,0.2545287283217299,0.2612269699505864,0.2663101975625846,0.2718369352819348,0.2769367448471926,0.2812976137631519,0.2856743519002419,0.2885990433453326,0.2922324143713474,0.2965468138127447,0.300042691367288,0.3034436405329538,0.3009947573598602,0.2974179370965527,0.294710646195377,0.2917195614541258,0.2901120094948446,0.2869938706571083,0.2836711498389846,0.2834616014409694,0.283545035623799,0.2844163679596834,0.2856452032883235,0.2867058823529412,0.2877422309181358,0.2900993612491128,0.2907556212594482,0.2915601683319133,0.292613476177051,0.2978710198001365,0.3023497248849361,0.3060580071729299,0.3094108166189112,0.3134640522875817,0.3175461495431661,0.3207080177004425,0.322970479704797,0.3282798833819242,0.3305697919807054,0.336383528943704,0.3378414931025155,0.3445030120481928,0.0,2.387797746995356,52.89496012878848,142.11072519158293,196.14309077095388,fqhc5_80Compliance_implementation_low_initial_treat_cost,6 -100000,95731,47758,455.1085855156637,4926,50.2867409720989,3888,39.913925478685066,1434,14.561636251579948,77.33281654085012,79.69830367617745,63.319784280511655,65.07088558409956,77.15052811812193,79.52161706217248,63.25135112920859,65.00731679637296,0.1822884227281918,176.68661400496433,0.0684331513030684,63.56878772659513,243.68234,170.73180465953868,254549.03845149427,178345.3684381639,484.61417,322.4080831708028,505515.6532366736,336076.1959770637,463.8992,226.74903370437391,479763.33685013215,233212.39820450544,2506.01961,1178.0456200603917,2576641.380535041,1189448.109870775,901.48547,412.2548013510733,924386.4161034564,413339.139203678,1399.28364,591.2391811280904,1423958.3833867817,585795.478647225,0.38113,100000,0,1107647,11570.410838704289,0,0.0,0,0.0,41804,435.9611828979119,0,0.0,42032,434.27938703241375,1104970,0,39658,0,0,9428,0,0,71,0.7416615307476158,0,0.0,0,0.0,0,0.0,0.04926,0.129247238475061,0.2911084043848965,0.01434,0.3617601246105919,0.6382398753894081,23.432684686447462,3.988742587813749,0.3040123456790123,0.2908950617283951,0.206275720164609,0.1988168724279835,11.503492247047207,6.318382862423354,15.296993283634812,11558.561645156484,44.55359180771194,13.827108150812949,13.410332778737796,8.837801904096112,8.478348974065076,0.5910493827160493,0.8134394341290893,0.688663282571912,0.5810473815461347,0.1267787839586028,0.7615131578947368,0.9077568134171908,0.8648648648648649,0.7236180904522613,0.1705882352941176,0.5134730538922155,0.7446483180428135,0.6083743842364532,0.5339966832504146,0.1144278606965174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0044323633523678,0.0068027210884353,0.0093818928451631,0.0116591380783787,0.0139952737940026,0.0163065093464138,0.0184686064318529,0.0204290300811844,0.0226090518124104,0.0247085721316013,0.0266459933462028,0.0286768939705519,0.0308966199097818,0.0328205445672248,0.0348238650458943,0.0368797704982549,0.0387301653192748,0.0406775431263062,0.0427123376149847,0.0573355465773017,0.071573550952082,0.0845086668833824,0.0966999232540291,0.1097900328864153,0.1252894589364829,0.1366364774004708,0.1477452931597824,0.1582522509051682,0.1667006251943679,0.1784503084525693,0.1897400391618075,0.2011677974947807,0.2102691357484859,0.2191184233679394,0.2285881936141003,0.2376797688248223,0.2453895921237693,0.2529901727150995,0.2605694267953429,0.2667036959892614,0.2720581351806778,0.2773758924025905,0.2816656680647094,0.2867935528537246,0.2912049306625577,0.294766219463356,0.2971859462621279,0.300849103005514,0.3026636938137393,0.3,0.2971531472088196,0.2951855552584544,0.2935055563573387,0.2916641919581873,0.287838953257314,0.2845818595250126,0.2841970904449426,0.2839373830185469,0.2834577114427861,0.2834980421405929,0.2848790282890722,0.2852528031345088,0.2862763403574286,0.2880784407509267,0.2897281045074,0.2913548752834467,0.295608688857634,0.2992504793446052,0.3040104002521273,0.3075880758807588,0.3111895479928353,0.3159207081411295,0.3179321243133418,0.3218230762090411,0.3259901570189829,0.3314674735249622,0.3300679728108756,0.33115823817292,0.3366037735849057,0.0,2.6972758312431715,52.4092261619498,136.33733696436664,198.09126884129304,fqhc5_80Compliance_implementation_low_initial_treat_cost,7 -100000,95776,47726,455.4063648513198,4887,49.66797527564317,3875,39.82208486468426,1433,14.533912462412296,77.34910350822409,79.67813996546533,63.34642956891118,65.06694257178832,77.16507202276593,79.4997074921853,63.275724227932265,65.00087787203488,0.1840314854581635,178.43247328003997,0.0707053409789111,66.06469975343998,245.003,171.61110015733107,255807.885065152,179179.23551291856,487.01008,324.11159225791243,507842.8938356165,337761.2015405584,460.46151,224.45288058565515,477137.8633478116,231487.5744543803,2506.68439,1176.0382742800216,2577594.1676411624,1188379.9784687809,908.63677,415.565122781016,928560.0985633144,413986.8510771927,1395.98666,601.375815309267,1417989.0160374206,594191.457242723,0.3795,100000,0,1113650,11627.631139325093,0,0.0,0,0.0,41990,437.7505846976278,0,0.0,41693,431.6530237220181,1099680,0,39452,0,0,9635,0,0,65,0.6786668894086202,0,0.0,2,0.0208820581356498,0,0.0,0.04887,0.1287747035573122,0.2932269285860446,0.01433,0.3468503937007874,0.6531496062992126,23.43342497633843,4.089451363508179,0.2998709677419355,0.2828387096774193,0.2116129032258064,0.2056774193548387,11.354562661760031,6.15347977325384,15.237866792096384,11474.267714764714,44.42485657064592,13.585864797725025,13.063196993046208,9.004000507491586,8.771794272383096,0.5780645161290323,0.7974452554744526,0.7005163511187608,0.552439024390244,0.124215809284818,0.7574692442882249,0.911062906724512,0.8616352201257862,0.7393617021276596,0.1695906432748538,0.5034709535988309,0.7149606299212599,0.6398104265402843,0.4968354430379746,0.1118210862619808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0045307574575051,0.0066551013989915,0.0089079846827355,0.0111034286411518,0.0134064904922838,0.0153284820318392,0.0173087717507781,0.0194443592966107,0.0214851343332446,0.023644633856493,0.0259614989943767,0.0278500005138376,0.0298376887370187,0.0317964368195315,0.0340225991034724,0.0361230106992818,0.038262131895479,0.0400876983343551,0.0421005498167277,0.0563950576056102,0.0707330593120182,0.0839265681844392,0.0966718160513677,0.1090234675490268,0.1250343442882806,0.1366517563757393,0.1473206214839471,0.156942680597206,0.1655523411550412,0.1775646614356291,0.1896331703940822,0.2010981841904969,0.2097463883025842,0.2182710398626866,0.2276135520384543,0.2357116550038504,0.2430852259950528,0.2503460168357044,0.2573315629220942,0.2632102420576636,0.2688506567174653,0.2751224475309372,0.2793925675756596,0.2843497785059773,0.2883314647578449,0.2923638728395988,0.2949748232541579,0.2985372168284789,0.3021887409791944,0.2996514272640405,0.2969237750794153,0.2946876889970323,0.2912334338000952,0.2886202349734062,0.2845978906238076,0.2813165323534514,0.2816664214123379,0.2816659583510412,0.2833478484972362,0.2847796913442183,0.2860433070866142,0.2880903747550961,0.289272030651341,0.2904293595586472,0.2908452535760728,0.2916619269707655,0.2966000502765208,0.3005569762146635,0.3035296913995959,0.3041012612285636,0.3087598944591029,0.3138267716535433,0.316523849245469,0.3197859958700957,0.3168963878326996,0.3200798280626343,0.3194641769839659,0.3204845814977973,0.3188914910226386,0.0,2.4399857882545817,49.14241158014707,145.55086440595286,199.07462909734863,fqhc5_80Compliance_implementation_low_initial_treat_cost,8 -100000,95672,47533,453.0374613261978,5032,51.39434735345765,3982,41.0987540764278,1503,15.396354210218249,77.31532774038504,79.70670511675553,63.31028192710126,65.07575843958307,77.12920243015094,79.52256007159332,63.23939570553329,65.00795664017699,0.1861253102341038,184.1450451622109,0.0708862215679673,67.80179940608377,242.22594,169.73082473675925,253183.7319173844,177409.09015883357,484.63686,322.40103494396175,506040.0012542855,336464.9687933374,467.87961,228.45530666014167,485495.2859770884,236110.20259617892,2553.36096,1195.5803515412013,2636487.770716615,1217538.9562370183,874.30211,399.13341679451605,901765.155949494,405163.2897869303,1457.74302,614.6270452978855,1494195.3340580317,617359.7312153813,0.37905,100000,0,1101027,11508.3514507902,0,0.0,0,0.0,41705,435.3624885023832,0,0.0,42312,438.738606906932,1110459,0,39848,0,0,9688,0,0,78,0.8048331800317753,0,0.0,2,0.0209047579229032,0,0.0,0.05032,0.1327529349690014,0.2986883942766296,0.01503,0.3749285578205372,0.6250714421794628,23.126687984975348,4.051120623091029,0.3071320944249121,0.2832747363134103,0.2134605725765946,0.1961325966850828,11.440723946392437,6.201734604202378,15.887510006196376,11499.80959068462,45.641989914293966,14.049249911328571,13.800936840955025,9.45461134549973,8.33719181651064,0.580110497237569,0.8076241134751773,0.6974652493867539,0.5635294117647058,0.085787451984635,0.7679738562091504,0.9232283464566928,0.8606060606060606,0.7399103139013453,0.1349693251533742,0.4967367657722987,0.7129032258064516,0.6371780515117581,0.5007974481658692,0.0728155339805825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.0046026886189906,0.0070632649333252,0.0091947249710442,0.0113627115885416,0.0139343009931245,0.016105178340116,0.0181504330773002,0.020279391311462,0.022078174761656,0.0246448900056407,0.0269134762555342,0.0288565403014248,0.0306652378204599,0.032741873883917,0.0347919618570881,0.036730803104245,0.0388383775480549,0.0408280022884485,0.0429100005211319,0.056932399958207,0.0710127324509968,0.084661082771795,0.0972660689480995,0.1093873674212442,0.124644063131821,0.1366773556456922,0.1474356926026521,0.1577850455303321,0.1674769524668105,0.1796814380550047,0.1906148832274061,0.2005747188993262,0.2101922677084359,0.2182785278505825,0.2277929336615876,0.2357835254176717,0.2441823828599721,0.2519185360094451,0.2579169961833373,0.2635802540616279,0.2701203239852053,0.2757085691284067,0.2804706898413041,0.2847652359785275,0.2879775294740862,0.2916572829867627,0.2945655628297209,0.2976181239816898,0.3012578782205111,0.2989657444891262,0.2954582943860999,0.2929260269350803,0.2904007966862471,0.2875721043344158,0.2841495829641624,0.2813091781340739,0.2812648014764728,0.2816803236884159,0.2816873889875666,0.2821744391696918,0.2833447970914808,0.2846954309427981,0.28587319243604,0.2870474504079826,0.2879796854351825,0.2895962292009768,0.2938294865756005,0.2996425317165487,0.3041271855052928,0.3089571220930232,0.3150909475465313,0.3204499748617396,0.3236416361416361,0.3269557021677662,0.3321475157120835,0.3355511870557991,0.3337299226650803,0.3271487039563437,0.335469280060309,0.0,1.9404873477063684,53.69322883346521,143.011169045402,202.1393012570486,fqhc5_80Compliance_implementation_low_initial_treat_cost,9 -100000,95629,47753,454.9038471593345,4896,50.00575139340577,3875,39.956498551694565,1427,14.566710934967425,77.3146043072854,79.73247960919552,63.296484254502126,65.08246741812455,77.12806990611945,79.54910959257495,63.22571519459247,65.01480037475963,0.1865344011659573,183.3700166205716,0.0707690599096579,67.66704336492069,242.45254,169.86644904785277,253534.5345031319,177630.6863481295,484.64289,323.26508475714235,506269.51029499416,337515.46576576395,468.65736,229.0321563299474,486365.1821100294,236596.10801812127,2511.98291,1184.509519652612,2593771.0213428983,1205741.324526745,879.65274,397.9367529839553,904651.7479007414,400917.5385959855,1386.52722,598.5648443970965,1417322.5276851165,598864.0770037484,0.38093,100000,0,1102057,11524.29702286963,0,0.0,0,0.0,41720,435.70465026299553,0,0.0,42339,439.0300013594202,1106860,0,39662,0,0,9539,0,0,75,0.7738238400485208,0,0.0,0,0.0,0,0.0,0.04896,0.1285275509936208,0.2914624183006536,0.01427,0.3603056426332288,0.6396943573667712,23.26835332791827,4.021459541654715,0.3058064516129032,0.2890322580645161,0.1994838709677419,0.2056774193548387,11.341912785722124,6.171619577078096,15.265075705428048,11525.503646580732,44.45626965204561,13.725873582642883,13.423036446056152,8.588896097195182,8.718463526151393,0.5914838709677419,0.8053571428571429,0.7097046413502109,0.5834411384217335,0.1229611041405269,0.7611438183347351,0.916155419222904,0.9074626865671642,0.732620320855615,0.0898876404494382,0.5163812360387193,0.7194928684627575,0.6317647058823529,0.5358361774744027,0.1324717285945072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024216509782862,0.0044416951455719,0.006547691558046,0.0087689884672052,0.0110880533854166,0.0131696883275616,0.0154425189461551,0.0175809582184084,0.0196990927780221,0.0219250186890047,0.0238874244864049,0.0262252308703736,0.0283115921155508,0.0307045562264306,0.0329796238568095,0.0351961950059453,0.0370619806452949,0.0393679533232283,0.0414620442816713,0.0434900504776605,0.0587091716749412,0.0723503655751786,0.0852819807427785,0.0975317088574285,0.1096862037300908,0.12502779454274,0.1369116537959019,0.147136554487521,0.1577185156659499,0.167302259128361,0.1787001273115681,0.1903709002622965,0.2008237806738438,0.2110711859950483,0.2194336981560471,0.2291618115435407,0.2383107594653792,0.2456171977105773,0.2529908315250117,0.2597302814155638,0.2655962400009261,0.2708016561790919,0.2753263043298188,0.280122719973155,0.2847277008411112,0.2883421985815603,0.2923707629237076,0.295527014494963,0.298936156461266,0.3021953405017921,0.2985574272999825,0.2950869195067696,0.2934475338593308,0.2911536740614581,0.2897162962633056,0.2864638306334419,0.2830576552073121,0.2834101760546048,0.2828156783644724,0.2827040325168467,0.2838941948962841,0.2842258108824049,0.2853136684669713,0.2862943486653797,0.2868362805531094,0.2885897402898252,0.2894455389811426,0.2946758039008961,0.2991094632523649,0.3031408069638866,0.3057413475782197,0.3128210504245728,0.3156510302498904,0.320766098627658,0.3260748185371301,0.3266152934202727,0.3288177339901478,0.3246963562753036,0.3288937211198695,0.3377023901310717,0.0,2.2410229234481127,51.57801247409712,141.57470980623222,195.2106143550596,fqhc5_80Compliance_implementation_low_initial_treat_cost,10 -100000,95652,47654,454.0312800568728,4983,50.91372893405261,3960,40.88780161418475,1503,15.378664324844229,77.29129418892526,79.69256492681208,63.29829466637945,65.0706375351209,77.09209174503512,79.49499001477064,63.222548982990666,64.99758382005056,0.1992024438901438,197.57491204144628,0.0757456833887815,73.05371507032987,243.47972,170.57112318188578,254547.4428135324,178324.6802804811,485.18118,322.41678482656005,506743.4763517752,336580.3901921131,460.69104,224.5143242875751,478617.6243047715,232397.14689363143,2523.07477,1194.4811361844968,2607413.739388617,1218426.9604237198,893.55518,407.3232515444739,922708.5790155982,414374.2750224503,1460.41212,630.3658535296222,1496565.612846569,633955.6500602106,0.38028,100000,0,1106726,11570.338309706018,0,0.0,0,0.0,41906,437.5862501568184,0,0.0,41693,432.8816961485384,1105014,0,39644,0,0,9715,0,0,74,0.7631832057876469,0,0.0,1,0.0104545644628444,0,0.0,0.04983,0.1310350268223414,0.3016255267910897,0.01503,0.3487159683336551,0.6512840316663449,23.34271917952729,4.0112349407405645,0.2967171717171717,0.301010101010101,0.2005050505050505,0.2017676767676767,11.348570680069791,6.140560134729464,16.204025708965215,11561.112248849096,45.689694321625495,14.743423687110289,13.27703687041808,8.985464413691703,8.683769350405433,0.5911616161616161,0.8045302013422819,0.6987234042553192,0.5944584382871536,0.1113892365456821,0.7482014388489209,0.9066666666666666,0.8318042813455657,0.7136752136752137,0.1272727272727272,0.518641565153193,0.7241379310344828,0.6474056603773585,0.5446428571428571,0.1072555205047318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791041601247,0.0046030619486971,0.0068308922789602,0.008992988517427,0.0112932271159539,0.0134338239038549,0.0156514468666517,0.0177160128249637,0.0200085882545395,0.0223516884074294,0.0244587790095476,0.0266320200484778,0.028568783177647,0.0305943695643213,0.0328082092787975,0.035000620578379,0.037391700866393,0.0392162970346374,0.0412248847638569,0.0431727431008059,0.0574981711777615,0.0714577506834679,0.0845574724109327,0.0974074502910434,0.108942763359262,0.1249285547958254,0.1364041699399138,0.1479319564129057,0.1583848275567149,0.1678869731389431,0.1793442516900451,0.1910212125477796,0.2014781595933428,0.2106790164006218,0.2195783232120617,0.2292949123215652,0.2377382521842111,0.2456910624021975,0.2537265987761543,0.2601815139917035,0.2659621261227891,0.2719466541881142,0.2773462476614488,0.2823516715429996,0.2859262141589046,0.2899974089748177,0.2940446960966077,0.2978528310537174,0.3016459305339554,0.3047556229800145,0.3017308675872836,0.297956375146219,0.2947807462518318,0.292925059969365,0.2901514363417498,0.286813624796885,0.2828169281676984,0.2832878872499096,0.2831436481082743,0.2847604084838963,0.2850026219192449,0.2861489824145425,0.2867102122848888,0.2876275083145465,0.2887207604089353,0.289791893715294,0.2904740355243805,0.2950553228730387,0.2981223119689499,0.3011790773126533,0.3050394271730264,0.309410896827906,0.3123000689957975,0.3159777727030524,0.3201543820013179,0.3253069495768268,0.3287629024803574,0.3295641447368421,0.3303867403314917,0.3314415437003405,0.0,2.023143549315435,54.713048195074855,142.84833994875748,198.1035406953509,fqhc5_80Compliance_implementation_low_initial_treat_cost,11 -100000,95636,47437,452.4969676690786,4910,50.08574177088126,3901,40.23589443305868,1522,15.621732402024342,77.27514686010801,79.68729779033276,63.27600815666828,65.05707754676975,77.0849772120132,79.49776764365123,63.20342928346489,64.98669732290871,0.1901696480948089,189.530146681534,0.0725788732033905,70.38022386103648,242.09944,169.52844801248034,253146.3047388013,177263.85913942085,483.03324,322.44203301833187,504514.6911204986,336596.83734578773,463.6875,226.4307647917325,480826.1533313815,233736.2778554797,2567.65667,1207.2094723493856,2650122.202936133,1227673.8870579991,940.71468,433.3687232891722,969201.1585595384,438731.10097128735,1488.99416,639.9564081679734,1529387.7410180266,646185.0549068192,0.37819,100000,0,1100452,11506.65021540006,0,0.0,0,0.0,41575,434.1356811242629,0,0.0,41827,433.3932828641934,1108295,0,39752,0,0,9698,0,0,98,1.0247187251662555,0,0.0,0,0.0,0,0.0,0.0491,0.1298289219704381,0.309979633401222,0.01522,0.3562792511700468,0.6437207488299532,23.353673049703485,4.056347462693058,0.2819789797487824,0.2799282235324276,0.2186618815688285,0.2194309151499615,11.44158742247681,6.185234597787255,16.30629872710036,11478.33601224779,44.77936929125991,13.561154030700347,12.443869051504468,9.448903438316432,9.325442770738654,0.576006152268649,0.8168498168498168,0.6636363636363637,0.611957796014068,0.1203271028037383,0.7368421052631579,0.913793103448276,0.8590163934426229,0.6952380952380952,0.1809045226130653,0.506426735218509,0.7452229299363057,0.5886792452830188,0.5847589424572317,0.1019786910197869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910887880751,0.0046826064482126,0.0072345390898483,0.009344845099035,0.0116864492112409,0.0138605996415186,0.0156727984663702,0.0178354483364131,0.0197928700683958,0.0221064056356487,0.0245043233873201,0.0266383127356406,0.028942115768463,0.0308924485125858,0.0327667396422817,0.0348641127238493,0.0365701965337092,0.0386464900345855,0.040492444740457,0.0425287835808443,0.0572551396887444,0.0713574684340126,0.0841544635166081,0.0968775020016012,0.1089128781477099,0.1246650639158661,0.1358801338929918,0.1466079652055262,0.156588466972045,0.1653697334479793,0.1781769894307275,0.1890332516322148,0.1995661368740053,0.2084242616982311,0.2167065808787012,0.2261336117837862,0.2353915544661943,0.2430520293828915,0.2505348689002185,0.2572314405465924,0.2633581146124494,0.2702214718675624,0.2754473974454762,0.2795812524010757,0.2839165430537655,0.287083287083287,0.2909838119581015,0.2938241433735553,0.2980226904376013,0.3014675772426456,0.2983881836069109,0.295342209249494,0.293970167753567,0.2918604315299962,0.289049859727768,0.2857033615758725,0.2830206556755732,0.2828696349910753,0.283516371425657,0.2833282990707343,0.2848765547379823,0.2859307359307359,0.2859109396183126,0.2875361673714667,0.2881587134446944,0.289693954235663,0.2909930062009797,0.2939318110728808,0.2983834363325303,0.301372564486866,0.3057284618854307,0.309160909234745,0.311802481451462,0.3182159483405917,0.3251934010625408,0.3313281434300542,0.3321683634705972,0.3307213180630902,0.3313416621401412,0.3343419062027231,0.0,2.0425281461803904,51.42460737014767,143.30805684981434,199.022385916458,fqhc5_80Compliance_implementation_low_initial_treat_cost,12 -100000,95682,47302,451.610543257875,4950,50.4797140527999,3937,40.54054054054054,1505,15.30068351414059,77.28391542799022,79.68148652765946,63.28504443165552,65.05941477265549,77.08535309067636,79.4885248304085,63.20854815221625,64.98829534580892,0.1985623373138594,192.9616972509649,0.0764962794392687,71.11942684656469,243.28458,170.32738567963284,254263.68595974165,178014.03156250165,484.28697,321.871673738439,505545.1809117702,335800.5937228615,459.88134,225.00106975310865,477063.1571246421,232421.9988993582,2537.55081,1209.0379663355657,2612130.233481741,1223685.0131240669,918.62991,425.7541658828682,945369.9337388432,430340.7805243072,1461.38578,639.5949147394592,1486476.5577642608,631763.9513557024,0.37781,100000,0,1105839,11557.440270897348,0,0.0,0,0.0,41762,435.8291005622792,0,0.0,41703,432.3697247131122,1105308,0,39730,0,0,9740,0,0,77,0.7942977780564787,0,0.0,1,0.0104512865533747,0,0.0,0.0495,0.1310182366798126,0.304040404040404,0.01505,0.3575592693354061,0.6424407306645938,23.192491664116183,4.059110109323737,0.2903225806451613,0.2921005842011684,0.2110744221488443,0.206502413004826,11.375458564566436,6.297289874306412,16.34648048795721,11455.530609696989,45.22096256006422,14.065692421368809,12.965183694408864,9.189882734812164,9.000203709474391,0.5829311658623317,0.8130434782608695,0.7086614173228346,0.5523465703971119,0.1119311193111931,0.7350565428109854,0.930327868852459,0.8459214501510574,0.6839622641509434,0.1497584541062802,0.5131530196369025,0.7265861027190332,0.6527093596059114,0.5072697899838449,0.099009900990099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021787154698931,0.0045642648490749,0.0066601013228829,0.0088515360616253,0.0112430430491539,0.0135991361747208,0.0157478708756183,0.0178534951178657,0.0202403477371516,0.0221475547542461,0.0241500297515234,0.0262525173646788,0.0281330712793653,0.0301443838694052,0.0322370865849126,0.0340034748076445,0.0361528179303055,0.0380335492443115,0.0400054089476476,0.0418147518942749,0.0566617219982032,0.0709372087909786,0.0842167131971703,0.0963420537537095,0.1079363739035897,0.1231407670890632,0.134537576858135,0.1457512302153675,0.1557993093642088,0.1649222247270619,0.1774756904767038,0.1887344391596875,0.1996319245554236,0.2088754545056293,0.2171938719276975,0.2266808751540177,0.2360254002325373,0.2441737288135593,0.2518866209028504,0.2589282641366572,0.2654144927536231,0.2714419695193435,0.2756906798258621,0.2802910243480766,0.2850327386023416,0.2882863983019473,0.2912114073777065,0.2946702478392036,0.2978354081117141,0.3009745868885753,0.2985512710038776,0.2956448796050551,0.2928242857343818,0.2899146334429255,0.2868574991834189,0.2829582485504031,0.2798418972332016,0.2802055713771318,0.2808680383900718,0.2806023344916689,0.2820699981283923,0.2834321866350336,0.2848025528520143,0.2863254563780938,0.2887719890929273,0.2898675427617855,0.2901650052540399,0.2937707797503293,0.2973840251133589,0.3009208248071777,0.3040354286230738,0.3085218306154655,0.308599081771932,0.311145856600402,0.3162164653821333,0.3200700116686114,0.3232856066314996,0.3261347730453909,0.328575349986275,0.3330809992429977,0.0,2.308871905494505,53.78472779795974,138.43828888857433,200.39304666562228,fqhc5_80Compliance_implementation_low_initial_treat_cost,13 -100000,95657,47879,457.028759003523,4969,50.7333493628276,3958,40.79157824309774,1480,15.14787208463573,77.35161970545354,79.76084749622308,63.31721993396855,65.09593052907418,77.16568363857802,79.57627647757207,63.24717815720447,65.02878704147244,0.1859360668755272,184.5710186510132,0.0700417767640786,67.14348760174005,244.25984,171.00062172931962,255349.67644814285,178764.35778805483,487.86026,325.0382809222537,509445.0902704455,339231.6239646537,467.21117,228.1595459033219,485032.2715535716,235874.5182950963,2548.38939,1187.647873873851,2629093.3648347743,1206615.855737866,892.61246,404.4374540708585,920173.5157907944,409872.2470735998,1434.3525,605.602916384598,1469255.7366423784,606866.6310753044,0.38035,100000,0,1110272,11606.803474915583,0,0.0,0,0.0,41947,437.9188140961979,0,0.0,42244,438.22198061825065,1101865,0,39447,0,0,9732,0,0,95,0.993131710172805,0,0.0,0,0.0,0,0.0,0.04969,0.130642828973314,0.2978466492251962,0.0148,0.3583882216195273,0.6416117783804727,23.35687620748437,4.11913500173639,0.3198585144012127,0.2748863062152602,0.2129863567458312,0.1922688226376958,11.664051305199662,6.427942033086596,15.7136153407166,11497.964678429782,45.1252769719801,13.272708453876543,14.37198307756039,9.225070972520134,8.255514468023033,0.5952501263264275,0.8207720588235294,0.7156398104265402,0.5729537366548043,0.0972404730617608,0.7662901824500434,0.9232409381663113,0.8895522388059701,0.689119170984456,0.1168831168831168,0.5251157819736373,0.7431340872374798,0.6530612244897959,0.5384615384615384,0.0922570016474464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0046240429954875,0.0068707248259484,0.0093269934162399,0.0113214456458716,0.0135771032796903,0.0155815020649569,0.0177063442627972,0.0199284253578732,0.0221858035439926,0.0244375365485826,0.0265229365340348,0.0286605194912114,0.030743218862439,0.0324449953517198,0.0348049206956845,0.0368255218589996,0.0388464413254713,0.0406995495167448,0.042542098952088,0.058067482418834,0.0720815052930274,0.0856950917411932,0.0986088896371748,0.1107417257683215,0.1256258004424263,0.1366063939352112,0.1465312343455229,0.1565371818600023,0.1662299729393067,0.1783804183739486,0.189602877136729,0.2009208463949843,0.2106455638011427,0.2198975940098001,0.2293273920368892,0.2373882931188561,0.2454584336942575,0.2529282244518091,0.2596459893293032,0.2645596262373947,0.2702427967190896,0.2749538985294813,0.2794786480275756,0.2840265395485365,0.2883538978213534,0.2921560062402496,0.29555862838875,0.2983175930226557,0.3015879275442332,0.298852426011677,0.295857095854354,0.2932116532116532,0.2903053951706958,0.2872524770805255,0.2831838154522153,0.279749708413454,0.2796389856280963,0.2804539808402389,0.2809160576803399,0.2817072260376231,0.2827014171433064,0.2838350567044696,0.2853337476969522,0.286126272135758,0.2875867585210414,0.2875285750571501,0.2913420183257496,0.2966517158652341,0.3007554296506138,0.3037478013800568,0.3090187062388964,0.3110035975685399,0.3122746394230769,0.3203479226427315,0.3231348552600612,0.3284261648201548,0.3319369638938759,0.3378885316184351,0.345224823485693,0.0,2.28065753060164,49.8371675577512,147.2832115420131,204.31038922527716,fqhc5_80Compliance_implementation_low_initial_treat_cost,14 -100000,95795,47712,453.8754632287698,4822,49.17793204238217,3839,39.52189571480766,1442,14.70849209248917,77.3507064425629,79.67907690501684,63.34838135415546,65.07012136372781,77.16599662172311,79.4976992331463,63.27884384796155,65.00401911458913,0.1847098208397852,181.37767187053555,0.0695375061939103,66.10224913868024,244.63692,171.32988214735963,255375.22835221048,178850.31802010525,486.14032,323.1505386277639,506925.27793726185,336780.9265909117,462.87251,225.8883915795705,479705.5691841954,233138.3804457011,2454.58127,1154.066254975022,2527050.639386189,1169448.4523983733,879.44751,398.6102734851682,906911.9369486924,405028.0916845432,1402.44482,596.9337885580096,1431566.073385876,595688.8587212712,0.37981,100000,0,1111986,11607.964925100474,0,0.0,0,0.0,41786,435.61772535100994,0,0.0,41850,433.4151051725038,1104423,0,39627,0,0,9669,0,0,79,0.8246776971658228,0,0.0,2,0.0208779163839448,0,0.0,0.04822,0.1269582159500803,0.2990460389879718,0.01442,0.3503071131365167,0.6496928868634833,23.31275780636995,3.968376404054668,0.3128418859077885,0.2917426413128419,0.1917165928627246,0.2036988799166449,11.42265834452152,6.232561338269404,15.44791789044763,11508.183493262768,44.0608105914428,13.730937618173296,13.651412211510108,8.207905272397635,8.47055548936176,0.5790570461057567,0.8080357142857143,0.6860949208992506,0.563858695652174,0.1010230179028133,0.7653778558875219,0.9340425531914892,0.8670694864048338,0.7142857142857143,0.1234567901234567,0.5005553498704184,0.7169230769230769,0.6172413793103448,0.5169340463458111,0.0951612903225806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002542441554232,0.0047546634225466,0.0069104082316052,0.0091012514220705,0.0113978363429315,0.0136724118623189,0.0159695894990012,0.0180526783071914,0.0203051391315899,0.0226054031927957,0.0248683320695944,0.0267807670996737,0.0289704643084701,0.0309849295890636,0.0328837468291777,0.034938377462577,0.0371462569196544,0.0392789019737933,0.0413014580650521,0.0433402044683199,0.0580157769522935,0.0720738618540747,0.0848175442642542,0.0973674531028322,0.110018548965052,0.125580067863976,0.1370717171610057,0.1479152033714322,0.1582273751187692,0.1684547861223352,0.1801175381568467,0.1916392875670067,0.2017819307872005,0.2113128400078652,0.2201275145652413,0.229045459573056,0.2366283798086028,0.2443313904518042,0.2514244933561403,0.2578568161024702,0.2634787226673439,0.2696383967131218,0.274826571492726,0.2798502105666156,0.2836150246126239,0.2882838547754087,0.291476740555729,0.2944120523862149,0.2985441286752346,0.30082392271447,0.2981203007518797,0.2952286828089825,0.2926486501679385,0.2897906778805234,0.2875061157318863,0.2835223278417947,0.2801232422183599,0.2812213039485767,0.2823001603493569,0.2832617260620755,0.284023003577918,0.2849048408749901,0.2845923474837169,0.2857078903189703,0.2869619463505926,0.2878003071396965,0.2893800017087688,0.2920676857268667,0.2978992038719181,0.3014732019432047,0.304950675092058,0.309545333687849,0.3120553981743783,0.3156450137236962,0.3191170968948746,0.3169205337111819,0.3206796265115567,0.3197223356472029,0.3205092720730694,0.3206605222734255,0.0,2.1018047502017456,49.33207931574549,144.8503654751405,195.6286542349196,fqhc5_80Compliance_implementation_low_initial_treat_cost,15 -100000,95738,47666,454.0621278907017,4863,49.61457310576783,3860,39.76477469761223,1406,14.330777747602832,77.31652017658898,79.67776548960933,63.31665033110207,65.06275600053445,77.13690568602718,79.50118000958372,63.24850312815276,64.99784657176228,0.1796144905618035,176.58548002560792,0.0681472029493051,64.9094287721681,243.44012,170.505611361374,254277.4238024609,178096.06568068478,484.59955,322.88334022988096,505657.3669807182,336741.983569618,461.30774,225.30149651714453,478448.3590632769,232726.96873951788,2481.51929,1163.939951209979,2555487.309114458,1179252.8580187375,859.62207,396.2349350702387,877238.1186153878,393222.2263575982,1364.82764,583.3945651858442,1391483.5488520756,580496.8184950791,0.37883,100000,0,1106546,11558.064718293675,0,0.0,0,0.0,41806,436.1173201863419,0,0.0,41686,432.0019219118845,1106017,0,39673,0,0,9661,0,0,78,0.8147235162631348,0,0.0,1,0.0104451732854248,0,0.0,0.04863,0.1283689253754982,0.2891219411885667,0.01406,0.3521876231769807,0.6478123768230193,23.35664346243162,4.007892341908845,0.3196891191709844,0.2803108808290155,0.2062176165803108,0.1937823834196891,10.93903730037426,5.890240046467431,15.107377768166147,11482.117657346438,44.22433870767449,13.219985157829353,13.965369317683844,8.89236401168671,8.146620220474587,0.583419689119171,0.8022181146025879,0.7106969205834684,0.542713567839196,0.1002673796791443,0.7692307692307693,0.9194630872483222,0.9035087719298246,0.7164948453608248,0.1304347826086956,0.5051546391752577,0.7196850393700788,0.6367713004484304,0.4867109634551495,0.0919931856899489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285025475835,0.0045011709127036,0.0068307536158335,0.0090634748061818,0.01123046875,0.0134031328295276,0.0155222175762087,0.0177588513423812,0.0198055234609053,0.0221653442539032,0.0244750225576244,0.0264503542458157,0.0286586870681145,0.0307367553930906,0.0328420097164488,0.0347460428978799,0.036621846825865,0.0388756353075407,0.041067697776669,0.0430561198445687,0.0580276043515483,0.0716363560262017,0.0849229736673762,0.0975153254892064,0.1091792838766817,0.1246364549732959,0.1367122444866395,0.1473095960402363,0.1574499455116562,0.1669330872965637,0.1782486453878553,0.1895811014078715,0.2005111195693545,0.2101108608663328,0.2182938910291689,0.2276757020324032,0.2356789585915084,0.2435311853118531,0.2511573548767757,0.2569920058638935,0.2633922890953047,0.2702048547776063,0.2756421633005596,0.2801831607211354,0.2847425510464367,0.2886275090003452,0.2921902377972465,0.2955950835941675,0.2989545325155914,0.3022093253313988,0.2985321619330795,0.2953288006826502,0.2924143958723938,0.2888821429087702,0.2866969750995424,0.2834911939773231,0.2800018966034992,0.2804383849321586,0.2807490739002031,0.2811172586114581,0.281918874419997,0.2830396909857711,0.2842362678705794,0.2844846809079963,0.2850676565680757,0.2867946028539611,0.2886037222741565,0.2932373024038911,0.2986268034069181,0.3027075883208237,0.3079453783406192,0.3108756392008013,0.3136349453978159,0.3157223264540337,0.3178734083093224,0.3225578102878716,0.3253763113881709,0.3340672538030424,0.3386084583901773,0.3377659574468085,0.0,2.182403510969678,49.704901109491615,142.46476981342607,199.28020508801808,fqhc5_80Compliance_implementation_low_initial_treat_cost,16 -100000,95685,47667,454.2300256048492,5188,53.11177300517323,4065,41.97105084391493,1500,15.37336050582641,77.40264542862671,79.78343712605869,63.35728834693722,65.11205226426102,77.20982516575877,79.59060150069095,63.28531901434768,65.04189115058041,0.19282026286794,192.83562536773505,0.0719693325895391,70.16111368061217,243.41636,170.41783569413803,254393.4367978262,178102.9792487203,485.01277,322.87957778217793,506387.5111041438,336944.2668140511,470.64474,229.32352298616055,487615.018027904,236518.0197639566,2597.26858,1225.4352763750796,2684582.379683336,1250990.0659543606,895.51881,410.2190821265978,924307.101426556,417194.8936054865,1447.08384,613.366706797842,1484942.4465694728,618358.6230399304,0.38128,100000,0,1106438,11563.338036264828,0,0.0,0,0.0,41744,435.74227935413074,0,0.0,42602,441.1558760516277,1110471,0,39795,0,0,9553,0,0,97,1.003292052045775,0,0.0,2,0.0209019177509536,0,0.0,0.05188,0.1360679815358791,0.2891287586738628,0.015,0.3593289085545723,0.6406710914454278,23.308427787036106,3.957415489297472,0.3156211562115621,0.2915129151291513,0.2071340713407134,0.1857318573185732,11.348692110662949,6.305651033844269,15.894712188008718,11587.352909232266,46.6517558346675,14.556667807147742,14.530220503704228,9.468862254153036,8.096005269662491,0.5960639606396064,0.8135021097046413,0.6804364770070148,0.5997624703087886,0.1072847682119205,0.7656,0.9268774703557312,0.8583333333333333,0.7183098591549296,0.1520467836257309,0.5207815275310835,0.7290132547864506,0.6110509209100758,0.5596184419713831,0.0941780821917808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019746635477109,0.0041756615687109,0.0061067153580848,0.0083584696789657,0.0106974710446304,0.0130440095309858,0.015200791134401,0.0172892427025923,0.019498436446134,0.0218697231745381,0.0240064782639892,0.0261993491227529,0.0284083898827884,0.0304331706111351,0.0327380031159397,0.0348715828639346,0.0369235229555385,0.0389029553378714,0.0409967344052249,0.0430740690560807,0.0575171318736419,0.0713986555818482,0.0849248656816655,0.0973008225864136,0.1097200835319678,0.1253887983749814,0.1375844979996392,0.1482057123391209,0.1585420584715336,0.1674691430838686,0.1798740106606364,0.191347537684092,0.2023661947326069,0.2118681126464929,0.2208534975802903,0.2307496457669146,0.2394783771734284,0.2470432311614794,0.2543405628857806,0.2617248671200777,0.2675001154361176,0.2729923941953245,0.2785188158081118,0.2828151160009567,0.2867635473353776,0.2910112774095163,0.2937870044217942,0.2976185945013258,0.30099630901066,0.3034972390218248,0.3003460578909247,0.2978772938920843,0.2952188778655905,0.2931760378198956,0.29080780767469,0.2874902874902875,0.2850906913342894,0.2860436218567084,0.2865197160615426,0.2875858763380732,0.2875757293317177,0.2884668156336979,0.2880282421347731,0.2888425443169968,0.2898841514391496,0.2903493099251664,0.2913787243684151,0.2970411249337449,0.3012628200655829,0.3064497064733462,0.3105353745810308,0.3117921033132211,0.3156742556917688,0.3174747017066908,0.31950945515821,0.3247434701492537,0.3266636349855995,0.3275552898983861,0.3272088624696028,0.3354525056095737,0.0,1.99048598362367,54.75448769412653,145.52345431883217,208.061318691385,fqhc5_80Compliance_implementation_low_initial_treat_cost,17 -100000,95742,47899,456.38277871780406,5063,51.83722922019594,3997,41.30893442794176,1450,14.894194815232604,77.33907921770925,79.7058507843823,63.32552877917672,65.07533579507526,77.1502884973977,79.51690510419112,63.25456419207476,65.0060079676707,0.1887907203115588,188.945680191182,0.0709645871019546,69.32782740456389,243.82094,170.7540722792791,254664.55682981343,178348.13590616352,486.03092,322.9596365007183,507220.47795116046,336896.81278928614,465.58172,227.48640911718172,483426.228823296,235420.44472678375,2543.52107,1196.9837186826153,2632208.1636063587,1225785.327946581,899.26823,413.4580894062871,929003.9376658102,421588.02762245,1406.71486,605.3319297658627,1446637.6720770404,612605.4235619997,0.38152,100000,0,1108277,11575.66167408243,0,0.0,0,0.0,41847,436.6422259823275,0,0.0,42112,436.9451233523428,1106534,0,39694,0,0,9571,0,0,92,0.9609157945311356,0,0.0,1,0.0104447368970775,0,0.0,0.05063,0.1327060180331306,0.2863914675093817,0.0145,0.3717633717633717,0.6282366282366283,23.049330619877296,3.967121509811133,0.31048286214661,0.2952214160620465,0.201401050788091,0.1928946710032524,11.030650043334784,5.886062472476646,15.680646359060647,11558.772233843898,45.89483022903677,14.4909726759435,13.937380829231156,8.903475693129106,8.56300103073301,0.5936952714535902,0.809322033898305,0.6978243352135375,0.5875776397515527,0.1024643320363164,0.7665847665847666,0.93359375,0.8688046647230321,0.7,0.1534090909090909,0.5176512968299711,0.7140718562874252,0.6325167037861915,0.5528455284552846,0.0873949579831932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021268838113757,0.0044916250963215,0.0068004425362605,0.0089924402536172,0.0108033325534317,0.012873132428276,0.0151532147045327,0.0174478555166464,0.0194993762653633,0.0217640672688912,0.0238854646333083,0.0260776681080081,0.0279740417348019,0.0300526462194657,0.032380264244426,0.0347034796546197,0.0370028902033501,0.0389991801662498,0.0410015909823536,0.0431616452056507,0.0577487288179834,0.0718777137237259,0.0842760833324596,0.0973847755449698,0.1095035221664487,0.1254759688610594,0.1359494181173949,0.1467854747532816,0.1572777979612335,0.1668866072290707,0.1788138697929013,0.1904246335072865,0.2014773555553138,0.211559922102361,0.2203824601191197,0.2307385362285106,0.2388629613915995,0.2466128015844436,0.2547094870630957,0.2610543925383566,0.2668996320381384,0.2735756385068762,0.2793980304767759,0.2836383658714674,0.2874155640985217,0.2914453624471328,0.2946682641905047,0.2979843466568569,0.3012894149231385,0.3043060437318168,0.3012310211971916,0.2982150212824385,0.2951264807676074,0.2913730360443622,0.2885291630191254,0.2851335034923352,0.2814518803999305,0.2811204169603199,0.2815994809540883,0.2812466550112392,0.2825737465884024,0.2840770351699421,0.2848003667583562,0.2857588172426077,0.2861715596111124,0.2867453049821512,0.2898398753011194,0.2946082718980382,0.2994561048741371,0.3038244464616963,0.308438321399438,0.3150177333121592,0.3177675821758531,0.3254788689571298,0.3259755983980628,0.3299941072480848,0.3364097831102907,0.3386082369649016,0.3335173937051353,0.3362528560548362,0.0,1.738586126045878,53.6437232444558,146.086236148086,202.60751741859752,fqhc5_80Compliance_implementation_low_initial_treat_cost,18 -100000,95690,48156,460.47653882328353,4950,50.47549378200439,3900,40.21318842094263,1498,15.299404326470896,77.30793472821749,79.68398604270723,63.31631099018998,65.07031830494842,77.11849150150734,79.49616084953551,63.24457332060146,65.001195460726,0.1894432267101535,187.82519317171875,0.0717376695885221,69.1228442224201,244.3199,171.18815353702286,255324.3808130421,178898.68694432318,489.32047,326.0527770865428,510849.7648657122,340228.286222743,468.82804,228.85074650421132,486226.2200856934,236368.8548120982,2520.46578,1179.208753565988,2600597.1365868947,1198928.178039491,886.34674,401.6297385720916,912966.799038562,406417.52385002654,1446.02498,612.1816510873592,1477906.4688055178,612861.5674123364,0.38162,100000,0,1110545,11605.653673320096,0,0.0,0,0.0,42074,439.1367959034382,0,0.0,42327,438.6038248510816,1097230,0,39411,0,0,9700,0,0,80,0.8360330233044205,0,0.0,0,0.0,0,0.0,0.0495,0.1297101829044599,0.3026262626262626,0.01498,0.3470055844405931,0.6529944155594068,23.58402596040493,4.101745291346,0.3197435897435897,0.2641025641025641,0.2215384615384615,0.1946153846153846,11.522152886187056,6.322905096268186,15.96223675053609,11555.416328459383,44.53625229158119,12.630311110291036,14.18838770102144,9.5901264426936,8.127427037575108,0.5864102564102565,0.7961165048543689,0.7016840417000801,0.5868055555555556,0.1119894598155467,0.7559322033898305,0.899103139013453,0.8904899135446686,0.7327188940092166,0.1352941176470588,0.5128676470588235,0.7174657534246576,0.6288888888888889,0.5378670788253478,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312354453961,0.004580276437923,0.0065734081295204,0.0087043958722678,0.0110446668293873,0.0132377499898171,0.0153052380418268,0.0175293517100561,0.0196589584739005,0.0216294233859823,0.023772911797269,0.0260474953541617,0.0281582952815829,0.0299680642835067,0.0318140072440587,0.033629690892174,0.0357057744713037,0.0378330114827965,0.0399059567650791,0.0419611767894747,0.0568270847914425,0.0714614692151485,0.0840415486307837,0.0973947432081365,0.110722192936215,0.1257495161853195,0.1377119093590206,0.1495146044452014,0.1593628477415495,0.1684259080474566,0.1794822090118032,0.1899893987581402,0.2010154602187479,0.2113088730484978,0.2197877137986031,0.2290568378150888,0.2376612075505377,0.2456635694841278,0.252203905195203,0.258844413903682,0.2652952548533855,0.2714312445910228,0.2764839534223232,0.2809033232990729,0.2853824920656152,0.2890999938313491,0.2928189256581502,0.2961217001325043,0.2997938090853682,0.3030759274667512,0.3009696969696969,0.2980724218642434,0.2958014460276521,0.292979538717374,0.290979097909791,0.28767165230171,0.2839662514048723,0.2845762155059133,0.2854432651386966,0.2848861062057402,0.2862277466818922,0.288314970580105,0.2904634543858916,0.2923868496079829,0.2928677634418917,0.2951101390407749,0.2979019786217876,0.3020862745098039,0.3065365442673594,0.3107445209272885,0.3119203491543917,0.3159315931593159,0.3185390079839064,0.3213119732746184,0.3230005619029781,0.3273690406121248,0.3259270379822849,0.3254660848869496,0.3279038718291054,0.3283858998144712,0.0,2.1531184758947903,51.32586517549005,137.95462912063846,203.0038101261173,fqhc5_80Compliance_implementation_low_initial_treat_cost,19 -100000,95706,47908,456.5231019998746,4955,50.48795268844169,3978,40.96921823083192,1488,15.234154598457776,77.38171245272493,79.75706298392552,63.34258245905804,65.09567781054244,77.18707518180202,79.56271531730012,63.26758371328284,65.0226283710291,0.1946372709229109,194.34766662540423,0.0749987457752041,73.04943951334053,244.0812,170.90290463526625,255031.8266357386,178570.30577937255,484.91867,322.81775026047865,506101.8431446304,336728.843210163,470.28708,229.66586835008792,487340.9295133012,236871.47193758952,2565.40852,1224.02302919504,2646069.2537562954,1244589.7534108737,931.04037,429.59216647205255,958700.5307922178,434754.0660690579,1448.31136,632.0277593451599,1484335.7574237771,636466.9661049972,0.38171,100000,0,1109460,11592.355756169936,0,0.0,0,0.0,41669,434.7794286669592,0,0.0,42608,441.1113200844252,1103882,0,39660,0,0,9597,0,0,87,0.9090339163688796,0,0.0,0,0.0,0,0.0,0.04955,0.1298105891907469,0.3003027245206862,0.01488,0.3566990291262136,0.6433009708737865,23.06836290661917,4.043751466012711,0.3262946204122675,0.2737556561085973,0.1985922574157868,0.2013574660633484,11.497911326333996,6.320409073433471,16.072815351196898,11570.271233518231,45.85671183907989,13.403120216899834,14.777325953234152,8.816280287518513,8.859985381427386,0.5932629462041227,0.8089990817263545,0.7110939907550077,0.589873417721519,0.1123595505617977,0.7467079783113865,0.9081632653061223,0.8781725888324873,0.704225352112676,0.1185567010309278,0.5195385187941942,0.7278797996661102,0.6382743362831859,0.5476603119584056,0.1103789126853377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611084103062,0.0049062838954272,0.007194463611641,0.009253804115962,0.0115039567101328,0.0138289205702647,0.0159265867958195,0.0179672506023112,0.0200873005325945,0.0223154877674275,0.0246250371630973,0.026888840976992,0.0287844508432743,0.0311090051298955,0.033136912931755,0.0353287841191067,0.0373051628605458,0.0394836513816683,0.0411743905482985,0.0431221342225927,0.0577822799615689,0.0715923246830739,0.0854552894148752,0.0981654464360851,0.1099590751835288,0.1248188999693319,0.1362744161865656,0.1470381568861255,0.15663191180241,0.1664378124396575,0.1786264642175932,0.1901936796977341,0.2004481475841364,0.210005575659513,0.2184763957939196,0.2282272973840652,0.2368048353462023,0.2447115979352458,0.2520303992740472,0.258579427694633,0.2645871177498293,0.2704083421984779,0.2772972013490326,0.2815476975063808,0.2856483505805762,0.2899807796560051,0.2934490390506796,0.2984560207559648,0.3015628638704168,0.3041289421315515,0.3016519483312499,0.2992520414465107,0.2970644857580484,0.2940854641787606,0.2918342600260262,0.2882042843648109,0.2848994769017458,0.2858798185200901,0.285852417302799,0.2872623439273553,0.2871322160148976,0.2879005166689586,0.2890517921667982,0.2898975109809663,0.2913237434099096,0.2929446665806784,0.2952257409548518,0.2997794140491502,0.3030796975792467,0.3069982739683037,0.3094059405940594,0.312949829261886,0.3176698786134401,0.3210745365115399,0.3242060165781876,0.325900715878418,0.3261427062905415,0.3298763462305544,0.3321545157780196,0.3370060790273556,0.0,2.317022153258598,56.145567109695975,140.76583009119392,195.62694689211068,fqhc5_80Compliance_implementation_low_initial_treat_cost,20 -100000,95851,48159,458.1694505012989,5057,51.496593671427526,3969,40.76118141699096,1507,15.31543750195616,77.44506122741345,79.72429618411205,63.40474875222951,65.08484118042487,77.24984569840746,79.53264951632687,63.330109744172745,65.01426157078298,0.195215529005992,191.6466677851787,0.0746390080567636,70.57960964189647,244.01366,170.9805790642168,254576.0190295354,178381.6330181394,483.42033,321.97319260048533,503724.6038121668,335289.0763794696,473.69783,230.92521570731088,490308.3744561872,237930.6397122639,2564.21136,1210.4443104345648,2636504.7834660043,1224138.6635867811,919.17781,423.55349246898265,944005.6337440402,426927.7550249685,1468.12572,634.4610880339773,1493956.3071851104,629167.6727215355,0.3815,100000,0,1109153,11571.637228615247,0,0.0,0,0.0,41580,433.15145381894814,0,0.0,42662,441.1534569279402,1107387,0,39752,0,0,9633,0,0,102,1.0641516520432754,0,0.0,0,0.0,0,0.0,0.05057,0.1325557011795544,0.2980027684397864,0.01507,0.3488504655139654,0.6511495344860346,23.31233294730909,4.040881067187951,0.309649785840262,0.2784076593600403,0.2073570168808264,0.2045855379188712,11.12986437395715,5.955807211298638,16.184494075265505,11580.332753216622,45.61604584257054,13.58381138602806,13.923986513290034,9.15060698486906,8.957640958383394,0.581506676744772,0.8009049773755657,0.6859235150528885,0.5795868772782503,0.1268472906403941,0.7574750830564784,0.9275053304904052,0.8650306748466258,0.7407407407407407,0.1813471502590673,0.504882459312839,0.7075471698113207,0.6212624584717608,0.5222405271828665,0.1098546042003231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023583473349662,0.0043963168184442,0.006661732050333,0.0087795866996873,0.0110350153433454,0.0132362067737636,0.0153589179499714,0.0176308034303078,0.0199123855037833,0.0220552147239263,0.0244109726502902,0.0266752815211371,0.0288704475895076,0.0311564611855707,0.0335150060271375,0.0354975227085053,0.0374790576457691,0.0394400058030486,0.0415070441544419,0.0433280612669607,0.0577783339068414,0.0719180944421228,0.0850217266111721,0.0985141034251175,0.1109684886106581,0.1266281058031285,0.1374143608966824,0.1485294742657996,0.1585211094878056,0.1687305341795725,0.1812280343497092,0.191961296732252,0.2022276744034566,0.2111336739595615,0.2200876528157643,0.2286441334292194,0.2372460068883266,0.2450532040405856,0.2531147615322699,0.2602487385727852,0.2657848793516088,0.2714666541951174,0.2768952342650311,0.2820162998599791,0.2862827402977108,0.2901748901551981,0.2932689299613329,0.2967875674025841,0.3001954616649191,0.3031109939361983,0.3003925997633645,0.2970502244245261,0.2950803565162467,0.2923791580975939,0.2904398722951401,0.2873125808661237,0.2840178051811189,0.2833363222850807,0.2833528503300918,0.2839659233807406,0.2848899973941853,0.2862337356028145,0.2882273342354533,0.2883010829043139,0.2901848539057841,0.2928656300046495,0.2948139797068771,0.2988995274807262,0.3038259305382593,0.3081329200831731,0.3128276984270475,0.3193410422936797,0.3238838588822978,0.3280060882800609,0.3279827278700835,0.3274577073228439,0.3258908089922006,0.3292307692307692,0.3281767955801105,0.3298327499027615,0.0,2.555133461840117,52.06582957197469,147.2283515130564,200.144518738574,fqhc5_80Compliance_implementation_low_initial_treat_cost,21 -100000,95681,47781,456.3810996958644,4864,49.72774113982923,3872,39.84072072825326,1469,14.924593179419112,77.29747507811412,79.7005248912408,63.28577397120039,65.06585980548714,77.11603869838892,79.52362955028111,63.21691647883838,65.00121337224509,0.1814363797251985,176.89534095968895,0.0688574923620137,64.64643324204644,243.94238,170.86105855552032,254953.8361848225,178573.6547021042,488.39792,325.56185357985174,509813.27536292473,339637.0780804593,466.04138,228.04418824896987,483217.0963932233,235399.631067722,2488.25756,1169.4722974106526,2561629.560727835,1183914.591416092,865.59265,394.51366295044414,887689.7398647589,396197.4529115563,1424.07354,602.3800179549819,1448299.5997115416,596732.5876473667,0.37927,100000,0,1108829,11588.81073567375,0,0.0,0,0.0,41971,438.007545907756,0,0.0,42233,437.5267817016963,1097754,0,39438,0,0,9822,0,0,88,0.9197228289838107,0,0.0,1,0.0104513957839069,0,0.0,0.04864,0.1282463680227806,0.3020148026315789,0.01469,0.3564532019704433,0.6435467980295566,23.22230887527014,4.026964281069307,0.3096590909090909,0.287448347107438,0.2037706611570248,0.1991219008264463,11.399367876790944,6.270700838488441,15.631367913411466,11489.35260072301,44.44919613092995,13.70677620508263,13.594563491827584,8.772549269843548,8.375307164176185,0.5831611570247934,0.8158131176999102,0.6872393661384487,0.5640050697084917,0.1050583657587548,0.7837606837606838,0.9306122448979592,0.8735294117647059,0.7227722772277227,0.1304347826086956,0.4962990377498149,0.7255216693418941,0.6135040745052387,0.5093696763202725,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026348858891726,0.0049702797557462,0.0069749733489009,0.009114927344782,0.01129150390625,0.0136283077675242,0.0158398270164416,0.018004125732726,0.0200149319369585,0.0219147781384727,0.0240427517873078,0.0259908364323724,0.0279418118968745,0.0299139574424236,0.0319033606938206,0.0340304929766854,0.0360067162786841,0.0380346184597173,0.0400337082158574,0.0421460730365182,0.0575792079725057,0.0720424592000167,0.0849239745217582,0.0976625781069197,0.1100316455696202,0.1260433968452122,0.1380671867537016,0.1478487752928647,0.1584867731656722,0.1675076222785245,0.1794241345842769,0.1908214916701893,0.2014768506921376,0.2098615310459664,0.2189731946036504,0.227570217863957,0.2362821573053798,0.2440081993062125,0.2509684088559712,0.2581025946639773,0.2639990734842782,0.2695360981664051,0.2743677181017334,0.2798301078623106,0.2837372766961365,0.288561386199667,0.2929721742179477,0.2965279192989606,0.2994489465153971,0.3020472856954167,0.2989512846089558,0.2956164647842683,0.2929020791604367,0.2908086534012031,0.2876521222914811,0.2833751223091976,0.2795498666329961,0.2796959293771456,0.2798423805965079,0.2793775837902095,0.2804828150572831,0.2814270312653141,0.2820731377726034,0.2845742912242591,0.2870732405111577,0.2884153428903526,0.2896401739818109,0.2936468389909685,0.298549514765731,0.3018630610801037,0.3071370567535866,0.3123359580052493,0.3166304009947155,0.3215330383259581,0.3238236383845869,0.3255162758137906,0.3290889798393209,0.3237294917967186,0.3302652950730915,0.3333333333333333,0.0,2.3888323843573627,50.60731470063424,144.23595685922163,194.98285459852133,fqhc5_80Compliance_implementation_low_initial_treat_cost,22 -100000,95828,47874,455.56622281587846,4978,50.70543056309221,3986,41.000542638894686,1502,15.22519514129482,77.32864418348662,79.6383370138162,63.32870225298407,65.03820613632054,77.13080765383329,79.4478332039346,63.25279130193308,64.96791480841718,0.1978365296533297,190.50380988160495,0.0759109510509858,70.29132790336234,243.95228,170.90251973041728,254573.06841424215,178342.98924157582,486.03207,324.5453393215199,506599.6785908085,338082.4073564302,469.11077,229.26900796484875,486804.7856576366,237080.55052246648,2582.74779,1228.160293247282,2654116.7508452646,1240613.281249673,874.36984,403.0364056525701,893167.8528196352,401401.6116730354,1455.7055,630.2040055964784,1476313.5826689487,620581.1360351098,0.38074,100000,0,1108874,11571.503109738282,0,0.0,0,0.0,41830,435.88512752014026,0,0.0,42418,439.80882414325663,1100017,0,39501,0,0,9723,0,0,97,1.0122302458571608,0,0.0,1,0.0104353633593521,0,0.0,0.04978,0.1307453905552345,0.301727601446364,0.01502,0.373941493456505,0.626058506543495,23.130436220862357,3.964178576025368,0.3158554942298043,0.2849974912192674,0.2024586051179127,0.1966884094330155,11.488388238373364,6.353053610603243,16.16029601441436,11534.528206551791,46.15618839536503,14.128328830450014,14.334606924025918,9.134434864496829,8.558817776392262,0.5950827897641746,0.8221830985915493,0.7212073073868149,0.5687732342007435,0.0905612244897959,0.7567567567567568,0.9171717171717172,0.8821917808219178,0.7090909090909091,0.1123595505617977,0.5205278592375366,0.748829953198128,0.6554809843400448,0.5161839863713799,0.0841584158415841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674178356206,0.0044297125248347,0.0069903109623091,0.0092739314155696,0.011378889566809,0.0136835675015271,0.0159107124655998,0.0181860859093553,0.0205512350157889,0.0227372729598362,0.0249085525169831,0.0271033024773711,0.0289913159652638,0.0309659354121413,0.033111968156413,0.0350922501601206,0.0371501008951208,0.0392539062094993,0.0412464294988314,0.043111254514608,0.0578351203638032,0.0717452218644138,0.0844417890422733,0.0967043591575938,0.108731171007832,0.1244780379512659,0.1358353305478377,0.1465708965150305,0.1582758399726595,0.1680925425618594,0.1806325855885932,0.1908007920277858,0.2013310424324148,0.2109319486198415,0.2196412852112676,0.2295140081312521,0.2385689880414028,0.2460564981929135,0.2528871376173875,0.2603380656406963,0.2658296816674781,0.271367270851408,0.2765124090536835,0.280559726142574,0.2848921388506978,0.2888845029420109,0.2924179583244577,0.2960348606085317,0.2991686876677863,0.3015461873926259,0.2985756444636095,0.2959263800300321,0.2935739685048258,0.2902898844516521,0.2877009801734267,0.2841592052005396,0.2813603890446546,0.2813987069672803,0.2815312244341423,0.2813445318338731,0.2823089856155427,0.2841294238196579,0.2851661070676315,0.2861974588905454,0.2875508738328944,0.2890322245051887,0.2892423726891233,0.2926166531326129,0.2972004868718483,0.3039342844790315,0.3086715117591297,0.3149884137349905,0.3209151143892986,0.3229277163206546,0.3264161525518788,0.3321897551165266,0.3388704318936877,0.3426797516523132,0.342339908132937,0.3527841342486651,0.0,2.2307427565554705,54.9115693975309,147.58087407124358,196.2230950443644,fqhc5_80Compliance_implementation_low_initial_treat_cost,23 -100000,95753,47667,454.17898133739936,5003,51.14200077282174,4053,41.805478679519176,1477,15.080467452716888,77.35098256499538,79.69714920657997,63.33757887846742,65.07008776173107,77.15665140887671,79.50568931106612,63.26420444173799,65.00016684688616,0.1943311561186647,191.4598955138445,0.0733744367294306,69.92091484491425,243.33408,170.48645290377056,254126.84720060992,178048.15818174943,486.16401,322.98901285729426,507240.5773187263,336828.1650259462,460.8208,224.88192473327885,478010.2137792027,232334.7464424525,2595.25625,1210.7298543700033,2678581.8303342974,1232848.627586251,920.68228,413.63716837434913,950917.9973473416,421460.3372818738,1437.92784,614.286496864364,1470031.6230300877,614549.9473382228,0.3801,100000,0,1106064,11551.22032730045,0,0.0,0,0.0,41926,437.3335561287897,0,0.0,41798,433.26057669211406,1107116,0,39692,0,0,9483,0,0,75,0.7832652762837717,0,0.0,1,0.0104435370171169,0,0.0,0.05003,0.1316232570376216,0.2952228662802318,0.01477,0.3663726993865031,0.6336273006134969,23.107993373839648,4.059372386202245,0.305946212681964,0.2953367875647668,0.1996052306933136,0.1991117690599556,11.18237343559759,5.940657398658843,15.791323914618657,11516.676126842927,46.420952711486976,14.705422137538983,14.071676513621034,8.833850484460667,8.810003575866292,0.5951147298297558,0.8170426065162907,0.7096774193548387,0.5648949320148331,0.1201982651796778,0.7571669477234402,0.8985801217038539,0.8850574712643678,0.6875,0.1538461538461538,0.5280781304499477,0.7599431818181818,0.6412556053811659,0.5308056872037915,0.1112852664576802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974015979261,0.0044090370055036,0.0064939677128042,0.0089075322986918,0.0112047666012546,0.0132442915169345,0.0154840419567588,0.017492830388945,0.0197569476384672,0.0218915350684174,0.0238537000399782,0.0260832075878422,0.0279651258430662,0.0300072083204613,0.0322900117605793,0.0344296522925538,0.036614409675482,0.0388203430634968,0.040849214518158,0.0427444811384637,0.0570500976062969,0.071282115658214,0.0847418529547456,0.0971676093950417,0.1098636981752632,0.125089848209378,0.1363867738446202,0.1474769617128142,0.1569850663362317,0.1663287744703674,0.177310770490214,0.1887351992553629,0.1998629511192325,0.2092679724258671,0.2176660318578615,0.2265225824328068,0.2355706946616037,0.2437419137087247,0.2520002269761107,0.2588202929781527,0.2652147246363394,0.2713083970001521,0.2772745547856112,0.2827586206896552,0.2872723743433583,0.2904753703065794,0.2938111481800802,0.2961838461343022,0.2996921325640959,0.30225657122509,0.2992366617751989,0.2967784551447012,0.2943554635225175,0.2928532192315476,0.2909352817131486,0.2875636964605426,0.2833981841763943,0.2834736099489754,0.2843863000614041,0.285093886268577,0.2854022773940638,0.2864224731478931,0.2882144347100542,0.2891662772845604,0.2895541644765136,0.2902238476901927,0.2917904745733933,0.294505769411176,0.2993530884808013,0.3022852639873916,0.3065990766723998,0.3090255759881631,0.3142124358813962,0.3163296106248113,0.3188837209302325,0.3179783223374175,0.3191881918819188,0.3207014714775247,0.324718174319494,0.3317990026850786,0.0,2.066810830986972,51.70913745845329,153.1764274172518,207.1994601926547,fqhc5_80Compliance_implementation_low_initial_treat_cost,24 -100000,95848,48085,457.8290626825808,4990,50.94524664051415,3966,40.85635589683666,1473,15.00292129204574,77.51248185563044,79.79906939478094,63.42745123530996,65.1112677300578,77.31958801275815,79.61106634700268,63.353806173317686,65.04233978177726,0.1928938428722943,188.0030477782668,0.0736450619922735,68.92794828054605,245.55806,171.99200693307165,256195.28837325764,179442.45778010145,491.31847,326.4782172732549,512095.6827476838,340114.783066162,473.53966,230.7973493802892,491276.7924213338,238599.5701510852,2569.61487,1206.8050584186576,2646352.4434521324,1224719.9474856164,913.00875,416.5955461937166,934931.026208163,417106.3185952587,1434.19686,616.5045245117199,1461577.289040981,611507.7489930397,0.38178,100000,0,1116173,11645.24038060262,0,0.0,0,0.0,42186,439.6022869543444,0,0.0,42759,443.3791002420499,1101254,0,39470,0,0,9784,0,0,88,0.9076871713546448,0,0.0,3,0.0312995576329187,0,0.0,0.0499,0.1307035465451307,0.295190380761523,0.01473,0.3710111495578623,0.6289888504421376,23.23709974421813,4.152946422589093,0.3093797276853253,0.2720625315179021,0.2170953101361573,0.2014624306606152,11.344309636093362,6.112203667296127,15.703140942427344,11551.791829710732,45.37665169345313,13.320423870418317,13.820710754828138,9.523128241704114,8.712388826502561,0.5776601109430156,0.794253938832252,0.6960065199674002,0.5679442508710801,0.113892365456821,0.7549668874172185,0.9071729957805909,0.8698224852071006,0.7358490566037735,0.1739130434782608,0.5,0.7057851239669422,0.6299212598425197,0.5130970724191063,0.0959349593495935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022160160281707,0.0044966123494799,0.0067910682248958,0.0093149739728668,0.0116316869501615,0.0138411471575307,0.015668587485492,0.0179576603034752,0.0199217832599838,0.0218427242049289,0.0239723923239191,0.0259568445665996,0.0282361644849057,0.030443060772912,0.0324226804123711,0.0343328134521829,0.0361961920529801,0.0383506822046199,0.040587147576406,0.0428409315690296,0.0569849298638994,0.0710095676269148,0.0848178731609171,0.0979685727490441,0.1102523061370624,0.1258344600304208,0.1374471377545072,0.1483399621413531,0.1584597980832853,0.1677197566826593,0.1801473355917621,0.1920064812314339,0.2023821156748423,0.2115596710964543,0.2204829071095878,0.2301890965387592,0.2385959831125864,0.2469957997349565,0.2539206250353847,0.2601521972622774,0.2667120238932644,0.2727865644872004,0.2777476479049258,0.2810743061772605,0.2854204476709014,0.2899709034658023,0.2940018195186999,0.2980886075949367,0.3012301152830553,0.3027461574778366,0.2999156524882516,0.297048929245412,0.2942838361375683,0.2913340607592029,0.2891905851103077,0.2858904109589041,0.2821385252744829,0.2814540349960825,0.2809539976234935,0.2821773392020446,0.2838436894650574,0.2854421554957679,0.2867041198501873,0.2858885094682691,0.2863761642273332,0.2874459542927733,0.287678938043142,0.2931637421471234,0.2990099692986995,0.3032255560299655,0.3044173140954495,0.3086477255084614,0.311966599128139,0.315965512115356,0.319197655248214,0.3255064456721915,0.3283360546237197,0.3282561999609451,0.3274619695756605,0.3250647908182155,0.0,2.071408601008128,52.681392949033786,143.27224189797096,201.8663272206382,fqhc5_80Compliance_implementation_low_initial_treat_cost,25 -100000,95747,47639,454.1656657649848,4960,50.664772786614726,3883,40.05347426029014,1444,14.768086728565908,77.31288813594676,79.6723453817603,63.318020272784125,65.06224008730261,77.12856251896342,79.4889848410994,63.24818444549431,64.99458893183498,0.1843256169833438,183.3605406608996,0.0698358272898147,67.65115546762956,242.11858,169.548032938378,252873.28062498043,177079.211816953,479.52318,319.51469369642103,500335.69720200106,333219.7705373756,460.93808,224.7864230631127,478299.93629043206,232295.12957194293,2484.95192,1175.7981739677705,2566330.97642746,1199025.738631779,884.60607,411.70506497605817,909901.6261606108,415994.7622129749,1394.78192,597.0583316399708,1428250.4934880466,599705.6436006813,0.38062,100000,0,1100539,11494.2400284082,0,0.0,0,0.0,41334,431.1884445465655,0,0.0,41723,432.6192987769852,1115748,0,40050,0,0,9735,0,0,71,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.0496,0.1303136987021176,0.2911290322580645,0.01444,0.3641440400539187,0.6358559599460812,23.2444464050872,3.971299083000424,0.3036312129796549,0.2951326294102498,0.2080865310327066,0.1931496265773886,11.395526941697112,6.376377411839579,15.535889341524149,11532.410840435536,44.95155364786304,14.26536496647584,13.450482944628815,9.0704323203792,8.16527341637919,0.5974761782127221,0.8150087260034904,0.6802374893977947,0.6051980198019802,0.1266666666666666,0.7729549248747913,0.924901185770751,0.843558282208589,0.7487684729064039,0.1901840490797546,0.5191806331471136,0.728125,0.6178194607268465,0.5570247933884298,0.1090289608177172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0044800778438865,0.0063921103095607,0.0086641205866818,0.0107403301431026,0.0128207739307535,0.0151014581421433,0.0173862441424794,0.0198028912016684,0.0221173242133502,0.0240846500087151,0.0261744621861683,0.0281900177923133,0.0303648311806027,0.0325079954606417,0.0345290877334408,0.0366750191555012,0.0386179705333056,0.0404604442226104,0.042466295763789,0.0570316007057177,0.0704562813229124,0.0836383083585877,0.0964221504946747,0.1088173584826088,0.1247937555527351,0.1367408004753618,0.1475252794039382,0.157249364465617,0.1668275211255522,0.1789032806830539,0.1902109850655881,0.200835000434896,0.2100480090987631,0.2190525435662735,0.2289315420483115,0.237875778338206,0.2446871941410073,0.2523107669248064,0.2589592594289904,0.2647606921696857,0.2699665567482869,0.2758555425435016,0.2811129484506434,0.2854783073410096,0.2896409826774758,0.2934491476632707,0.2979451183845782,0.3010808361918322,0.3049227926620034,0.3014237415983082,0.2983370699971115,0.2957423134885424,0.2931206380857428,0.2907339694996879,0.2882968455563556,0.2841161184002028,0.2842527055655001,0.2848747821927637,0.2851172509867657,0.2851713873860381,0.2861207152030031,0.2870515472533901,0.2881189882436765,0.2897922009443233,0.2900779220779221,0.2913660891792105,0.2966870780342283,0.3007424008964841,0.3050733254062623,0.3067428986296397,0.3101322514357975,0.3138849233442989,0.3164471208129469,0.3217180657784403,0.3252546540217773,0.3253726802555521,0.3278557114228457,0.3306871064878182,0.3349514563106796,0.0,1.9836286550942623,52.39011412037097,146.41941397266638,193.07115736195476,fqhc5_80Compliance_implementation_low_initial_treat_cost,26 -100000,95787,47977,456.90960151168736,5018,51.12384770375938,3976,40.98677273533987,1517,15.534467098875629,77.37208356525132,79.70867476053928,63.35007434272507,65.07850055226626,77.17864131769066,79.51512181560956,63.27660164248193,65.00647941027913,0.1934422475606538,193.55294492972064,0.0734727002431441,72.02114198713616,244.6675,171.42192122188175,255428.7116205748,178961.57226124816,486.36244,323.70019636740057,507218.54740204825,337401.9296641513,467.79582,228.73194502519965,484063.7038429014,235633.4537798825,2596.13178,1224.9254768872088,2681333.2915740134,1249817.2162059664,930.03374,423.03348898074165,959743.0549030664,430443.409837182,1481.51668,637.6451669840237,1519488.3230501006,645515.7433577756,0.38228,100000,0,1112125,11610.3959827534,0,0.0,0,0.0,41872,436.5728125946109,0,0.0,42332,437.6898744088446,1101671,0,39551,0,0,9651,0,0,81,0.8351864031653564,0,0.0,0,0.0,0,0.0,0.05018,0.1312650413309616,0.3023116779593463,0.01517,0.3727255315073741,0.6272744684926259,23.341923607412763,4.03191268596924,0.3086016096579477,0.2829476861167002,0.1974346076458752,0.2110160965794768,11.208796687106872,5.980640942769015,16.258290036104732,11608.062896198451,45.67997559572135,13.962517824080145,13.934261784631063,8.662812233670513,9.120383753339633,0.5757042253521126,0.8115555555555556,0.6813365933170334,0.5707006369426751,0.1096543504171632,0.7554304102976669,0.93,0.8563049853372434,0.7572815533980582,0.1326530612244898,0.4939626783754116,0.7168,0.6139954853273137,0.5043177892918825,0.1026438569206843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025321584118302,0.0048963951177973,0.0070934220941324,0.0092949076096341,0.0115631038340282,0.0136626486398436,0.0158701036602146,0.0178684409249545,0.020192936559843,0.0224337324736465,0.0243387544706449,0.0267244121963484,0.0289972760446111,0.0310646622734761,0.0330707199868005,0.0349950922147026,0.0370976089431735,0.0392305299180752,0.0413021342033623,0.043206213365816,0.0577167901492225,0.0721756228167423,0.0861479757636748,0.0991037374045159,0.1113861907671562,0.1274799805616007,0.1389981030298534,0.1490180650511967,0.1587550547891126,0.167287997600377,0.1788315278778816,0.1911689996216829,0.2015170285366543,0.2107104207431051,0.219912677202591,0.22947697146211,0.2384453195595667,0.246857785272625,0.2544805305220201,0.2614345411872459,0.2668632552760913,0.2724637342341816,0.2781415468986384,0.2818533280668366,0.2869672817265349,0.2908236104957416,0.2945260313727452,0.2989582009909795,0.3029041889079887,0.3051907854009983,0.3014636766483147,0.2990097923581205,0.2968538946420531,0.2939860583931071,0.2913990774661465,0.2874063885068011,0.2840648839890701,0.2833540738800105,0.2840321507192955,0.2853682860806382,0.2867622354127002,0.287873123315165,0.2886262739948728,0.2893502567408362,0.2904413522689236,0.2909930715935335,0.29227794836802,0.2971557590391671,0.3018656977150443,0.3045335865179207,0.3098795617133025,0.3117848668600053,0.3140361821584529,0.3177838164251207,0.3194133034379671,0.3211482132396016,0.3250941974378297,0.3306562193927522,0.337255950788981,0.3512611275964392,0.0,2.075462535840388,54.23403264723666,141.6989397410621,201.4724045912864,fqhc5_80Compliance_implementation_low_initial_treat_cost,27 -100000,95652,47802,456.5299209634927,4952,50.56872830677874,3947,40.730983147242085,1487,15.190482164513028,77.25911226955019,79.6543072813431,63.27736057920528,65.04542010798762,77.07142796585987,79.47060199446983,63.206215891153136,64.97811476181101,0.1876843036903182,183.7052868732627,0.0711446880521435,67.30534617661021,244.20352,171.07153235158424,255304.14418935307,178847.83627272223,487.33716,324.1698776693148,508869.8615815665,338285.57444623706,469.08689,228.1598719046773,487155.0725546774,236015.1705178827,2546.14991,1197.2608061411684,2625926.6507757287,1215721.8418236617,912.59707,415.4289415652957,938028.1541420984,418290.94477616297,1443.32362,615.1482858446539,1474909.6516539122,612969.2468960641,0.38016,100000,0,1110016,11604.733826788775,0,0.0,0,0.0,42000,438.5376155229373,0,0.0,42530,441.3917116212938,1095265,0,39376,0,0,9620,0,0,74,0.7631832057876469,0,0.0,0,0.0,0,0.0,0.04952,0.1302609427609427,0.3002827140549273,0.01487,0.3611488453328158,0.6388511546671841,23.222037559266035,4.065137906121986,0.3139092982011654,0.277932607043324,0.20749936660755,0.2006587281479604,11.64852962803887,6.5246580219027726,15.807752811652511,11517.06352303981,45.41602334792684,13.62479329322042,13.989923236579864,9.091344914299174,8.709961903827395,0.5964023308842159,0.8085688240656336,0.705407586763519,0.5995115995115995,0.1287878787878787,0.7687188019966722,0.9293139293139292,0.848314606741573,0.7604166666666666,0.1676300578034682,0.5209471766848816,0.7142857142857143,0.6477916194790487,0.5502392344497608,0.1179321486268174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385867528336,0.0047049757146188,0.0068611331019223,0.0092464639895951,0.011496006917951,0.013657751614283,0.0157636070722107,0.0179772757434384,0.0201183794890667,0.0222736299056236,0.0245752893773644,0.0265938331057284,0.0287991771663666,0.0308118632369453,0.0325173887019875,0.0342859506183051,0.0362881087296572,0.0382399651231588,0.0403257681346341,0.0424181139628463,0.0574214178231065,0.0713769519999162,0.0849531130222936,0.0979171931598012,0.110100850097682,0.1263701930714565,0.1378043081106343,0.1479867452292414,0.1579904183420309,0.1667310996563573,0.1792055923536646,0.1911594187193185,0.2019411976165317,0.2111981592067057,0.2206389994816538,0.2289889836531627,0.2376343965719783,0.2450629884850056,0.2531359102953385,0.2591733106633274,0.2657787265639502,0.2718711886668543,0.2767436618381559,0.2822352842186241,0.2871314881844661,0.2897786233137323,0.2932137481184144,0.2966116819213216,0.3004306319394002,0.3040616450124903,0.3012486852396235,0.2973859813599515,0.2930883515986894,0.2899301023811595,0.2874191722041777,0.2830101852988096,0.2785269462975581,0.2792962975130589,0.2788900477012772,0.279120800699363,0.2802865908410655,0.281036861817465,0.2818755484976388,0.2825270549543343,0.2827505437510457,0.2834515244060251,0.2848251669118479,0.2897196261682243,0.2939163232520779,0.2973741362290227,0.301277405327052,0.3054103985220375,0.308880550343965,0.3130035388901438,0.3136237256719184,0.3211472904666745,0.3271268543748107,0.3343307400758029,0.3383727322704782,0.3499228395061728,0.0,2.030115061616061,52.72794241756802,143.9201257043625,201.50593950296368,fqhc5_80Compliance_implementation_low_initial_treat_cost,28 -100000,95624,47721,454.9380908558521,4960,50.68811177110349,3935,40.627875847067685,1500,15.351794528570236,77.28554750318864,79.71819598869911,63.27381344368566,65.07212402212244,77.0889171823102,79.5232051031143,63.199614300165614,65.0008135814457,0.196630320878441,194.99088558481503,0.0741991435200475,71.31044067673997,243.79762,170.81220328286176,254953.9655316657,178628.59504976118,486.53872,323.7449492626656,508269.0328787752,338026.58980722714,463.40336,226.242920553938,481457.16556513007,234115.41585372528,2553.06491,1206.9738663432688,2636756.9020329625,1229192.948657313,885.37914,409.897809426499,909311.5849577512,412352.6115307027,1455.37574,627.9066990130071,1490602.7566301348,629563.7423664938,0.38114,100000,0,1108171,11588.816615075712,0,0.0,0,0.0,41957,438.195432109094,0,0.0,42021,436.3653476114783,1099386,0,39470,0,0,9660,0,0,78,0.805237178950891,0,0.0,0,0.0,0,0.0,0.0496,0.1301359080652778,0.3024193548387097,0.015,0.3579841668275729,0.6420158331724272,23.40745121321582,4.079661141062845,0.3097839898348157,0.2813214739517153,0.2086404066073697,0.2002541296060991,11.439644745015416,6.190164158063814,16.205668954294627,11593.917465258855,45.48566234666932,13.612597735306178,13.971229717523574,9.187561083555256,8.714273810284315,0.5992376111817027,0.8148148148148148,0.7136997538966365,0.6163215590742996,0.1015228426395939,0.760551948051948,0.9121338912133892,0.8777777777777778,0.7681159420289855,0.1390374331550802,0.5257121716611173,0.7408585055643879,0.6449359720605355,0.5651465798045603,0.0898502495840266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307661126874,0.0047469798861942,0.007218860415059,0.0094120038623773,0.0117608757579457,0.0139962717354765,0.0159439361018453,0.0180103792088917,0.0202718597539147,0.0225208156242639,0.0244455386635481,0.0267879161528976,0.0289960988564193,0.0310683214447697,0.0329998244690187,0.0347431242953631,0.0369740932642487,0.0392767756072737,0.0413214538490361,0.0432664726559647,0.0578058851199498,0.0719600117365972,0.0851258340776546,0.0980920976390893,0.1106862569053478,0.1263846821849914,0.1379735401944636,0.1492537313432835,0.1595860799589076,0.1686651194773938,0.1807313415121009,0.1919945358153452,0.2029838384498861,0.2124605539971949,0.2210156112189098,0.2304328523862375,0.2389586290926569,0.2471797414716058,0.2549086446686665,0.261533347851502,0.2675697580178303,0.2734115278363066,0.2785809081429519,0.2825168614838105,0.2871723131196399,0.291032253288256,0.2948549390831799,0.2971637438072314,0.300506850913239,0.303936321875495,0.3011616793872578,0.2980828695114409,0.2947728616892444,0.2915162194170831,0.2896303002419151,0.2857033475238124,0.2826757821772777,0.282830272293072,0.283348116812227,0.2835820895522388,0.2837157979389927,0.2833901242835477,0.2843106511968224,0.2853134394833537,0.286548168704098,0.2879418685836932,0.2881484819467132,0.2937937470835278,0.2986779262130546,0.3013258021495253,0.3054078413699865,0.3088335876256116,0.312000998003992,0.3163234630993536,0.3202705206596257,0.3235567970204842,0.3319752527538856,0.3379324135172965,0.3427495291902072,0.3431226765799256,0.0,1.9783821389634024,54.03320671433514,147.2954343539253,192.1654648894652,fqhc5_80Compliance_implementation_low_initial_treat_cost,29 -100000,95812,47663,454.6194631152674,4954,50.599089884356864,3924,40.38116311109256,1464,14.904187366926898,77.35864855579545,79.66261809628952,63.35358995694328,65.05376121462417,77.1679869357543,79.47525642172837,63.281899337737954,64.98551151817925,0.1906616200411548,187.3616745611457,0.0716906192053201,68.24969644492285,243.30416,170.42295567148298,253938.6715651484,177871.8124108303,486.54744,323.17196431946,507227.1844862856,336711.5606072651,464.8617,227.26091167293455,481231.5263223813,234208.15916736104,2512.16892,1186.2846176006317,2586208.032396777,1202563.5596546072,873.25368,404.1239541101164,895312.4243309814,405774.7547312994,1418.87578,606.481516738868,1446035.6531540933,604857.095208967,0.37938,100000,0,1105928,11542.666889324928,0,0.0,0,0.0,41929,437.0016281885359,0,0.0,42056,435.2064459566652,1108006,0,39810,0,0,9545,0,0,80,0.8036571619421367,0,0.0,1,0.0104371059992485,0,0.0,0.04954,0.1305814750382202,0.2955187727089221,0.01464,0.3512885099786863,0.6487114900213137,23.33039014342365,3.9853195315604952,0.3037716615698267,0.2981651376146789,0.1967380224260958,0.2013251783893985,11.246453981164574,6.201120445463231,15.716397728898706,11475.105442918915,45.25560645100818,14.433462784638351,13.468364739292475,8.665097149738303,8.68868177733905,0.5846075433231397,0.8085470085470086,0.6862416107382551,0.5764248704663213,0.1075949367088607,0.7549342105263158,0.9241516966067864,0.8579881656804734,0.7202072538860104,0.1413043478260869,0.5081240768094535,0.7219730941704036,0.6182669789227166,0.5284974093264249,0.0973597359735973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002206343744307,0.0044465152082974,0.0064377464845848,0.0085137041208763,0.0107085526182106,0.0129291490768526,0.0151672574664873,0.0172186916650515,0.019389902539689,0.0216350580003682,0.0236500327761389,0.0256120952273496,0.0277909055417428,0.0298012904288051,0.031550294881841,0.0338039515404397,0.0359452440324065,0.0381186373908896,0.0401765775123344,0.042027129725059,0.0560945585044233,0.0705690478928605,0.0842058925258623,0.0963670565486511,0.1087002339452441,0.1242788004311346,0.1362903909761682,0.1474799480884198,0.158551037184921,0.1672473867595819,0.1795200310074181,0.1910000540862134,0.2013005371783997,0.2103806606869394,0.2190114487010127,0.229008056562164,0.2379193357587661,0.246172708968403,0.253993284022326,0.26032825940052,0.2663905503430244,0.271759351343762,0.2762714070988129,0.2801811950243271,0.2843586347674998,0.2882985015772871,0.2916750025007502,0.2948682103550822,0.2982621860483171,0.3017461950357416,0.2988995910460611,0.2955872854453255,0.2932345623480131,0.2903909358242518,0.2878911403287728,0.2837361261660127,0.2788420537279489,0.279705038918476,0.2798730873547925,0.2794303966880208,0.2810815868263473,0.2824731691919191,0.2831491712707182,0.2833749220212102,0.2830514159758493,0.2854207309142931,0.287625703085052,0.2916928096373447,0.2950068231918542,0.2977062948144039,0.3018885014265658,0.3030527485318237,0.3076682316118936,0.3114467891301047,0.3123839584106944,0.3161207599953374,0.3194549583648751,0.3225286893497081,0.323553833379463,0.3296960249415432,0.0,2.1904622190855103,52.99295998647269,146.0169640151084,194.30559745942628,fqhc5_80Compliance_implementation_low_initial_treat_cost,30 -100000,95868,47713,453.2690783160179,4888,49.72462135436225,3861,39.74214544999374,1445,14.728585137897944,77.41454581429173,79.70108641307797,63.37712166936033,65.06702561001681,77.23135093831914,79.52237216020153,63.308030975232775,65.00197878717273,0.183194875972589,178.71425287644627,0.0690906941275528,65.04682284408148,243.49182,170.59689320577766,253986.54399799724,177949.77803414868,485.1523,323.4429075858466,505536.352067426,336857.1343783605,470.24024,230.12290094063877,487325.70826553175,237551.64588495385,2472.70357,1158.4959728771585,2548535.1629323657,1177683.9955742883,874.33082,395.4405595644872,901310.228647724,401779.3524058988,1393.59694,587.9777449937651,1423133.2665748736,586844.5875307616,0.38081,100000,0,1106781,11544.842908999875,0,0.0,0,0.0,41667,434.0864522051154,0,0.0,42425,439.31238786665,1106699,0,39715,0,0,9673,0,0,97,1.0118079025326492,0,0.0,1,0.0104310093044603,0,0.0,0.04888,0.128357973792705,0.2956219312602291,0.01445,0.3592004703115814,0.6407995296884186,23.391459310125683,4.0684472915860255,0.3069153069153069,0.2893032893032893,0.2113442113442113,0.1924371924371924,11.351411822410022,6.264258847186453,15.24999046348401,11511.224898068967,44.19953150677058,13.745362468866688,13.393552887957142,9.109979626393992,7.950636523552762,0.5936285936285937,0.7976723366159355,0.69957805907173,0.5906862745098039,0.1211305518169582,0.7754927163667523,0.9256198347107438,0.8854489164086687,0.7596153846153846,0.0855263157894736,0.5148478099480327,0.6998420221169036,0.6299303944315545,0.5328947368421053,0.1302876480541455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890266740901,0.0046400891545514,0.0070069055031079,0.0090857409700931,0.0113426161195243,0.0135430763438781,0.0158720456397718,0.0177995838263495,0.0200008171937566,0.0222567711316586,0.0246243354809632,0.0265978725804962,0.0287804527192955,0.0310952826984241,0.0333017156054107,0.0354265647593472,0.0374420625724217,0.0394524125352346,0.0415118234475886,0.0434787131133046,0.057626941924721,0.0712180746561886,0.0850522213725264,0.0980355099169475,0.1107987153161691,0.1259544806463537,0.1369568441346581,0.1471801194702493,0.1572708844553504,0.1660686937057544,0.1783336022806734,0.1894022121071239,0.2001629903292404,0.2096895794407841,0.2187839961319956,0.2281573269900979,0.2369310010368239,0.2443620428113939,0.2518227070175637,0.2582698074765927,0.2634810155852564,0.2691849185386036,0.2750091630310124,0.2794816828540976,0.2835356969402622,0.2876690395842057,0.2912055620162309,0.2949206833435021,0.2986390770067463,0.3026050253907538,0.3001653914937676,0.2977449391600516,0.2948930548919306,0.292236982393453,0.2889194952905634,0.2860847941171983,0.2828717270063333,0.2826690623979092,0.2828135097445665,0.2819293357704389,0.2831193002047273,0.2838344757153799,0.284796573875803,0.2854196695864286,0.2872482580891476,0.288005164622337,0.2901770610127439,0.2955151665529433,0.2987080641800375,0.3038949809377825,0.30516537270565,0.3115062761506276,0.3140317303537255,0.3169097945817207,0.3185253456221198,0.3256490860402841,0.3333333333333333,0.3318610720738807,0.3355923014367037,0.3385826771653543,0.0,2.1002226631342675,50.79461710700877,139.88527712165802,198.09142650851567,fqhc5_80Compliance_implementation_low_initial_treat_cost,31 -100000,95702,47738,453.89856011368624,4929,50.10344611397881,3971,40.82464316315229,1499,15.224342229002527,77.36002699221102,79.73179067614605,63.33690834044432,65.08847319176743,77.16644798855982,79.5417728987555,63.26308135984751,65.01854740149099,0.1935790036511946,190.01777739055115,0.073826980596813,69.92579027644297,243.9965,170.83743924645296,254953.98215293305,178509.37670474473,485.94889,323.4827243415262,507123.2471630687,337362.61195517227,466.44558,227.775793445882,482783.5990888383,234574.5276534848,2553.61879,1212.6030751248622,2628763.9025307726,1227656.795473357,912.2822,419.5924192492681,936241.0294455704,421597.3398101396,1454.322,627.1966935089222,1479405.5296650017,622372.5519235564,0.3798,100000,0,1109075,11588.817370587867,0,0.0,0,0.0,41794,436.0201458694698,0,0.0,42237,436.77248124386114,1104122,0,39653,0,0,9664,0,0,91,0.9508683204112768,0,0.0,1,0.0104491024221019,0,0.0,0.04929,0.129778830963665,0.3041184824508013,0.01499,0.3548951048951049,0.6451048951048951,23.29094915500185,4.046927905883322,0.3099974817426341,0.2848149080836061,0.1999496348526819,0.2052379753210778,11.817190637223272,6.497533971173596,16.125742594884063,11529.369320845117,45.65723049500432,14.0158152236092,13.951808925038607,8.75548292902401,8.934123417332506,0.5832284059430873,0.8134394341290893,0.6953696181965882,0.5717884130982368,0.105521472392638,0.748780487804878,0.91701244813278,0.8954802259887006,0.7157894736842105,0.1274509803921568,0.5089383436701933,0.736517719568567,0.6145952109464082,0.5264900662251656,0.0981996726677577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814901094894,0.0047846404930612,0.0070121672772292,0.009396777667161,0.011819032507425,0.013920003258523,0.016177370030581,0.018279613790851,0.0206286736519294,0.0227584512377403,0.0252414443601468,0.0274834709046856,0.0292974373740282,0.0314971984179301,0.0335224927775484,0.0357936745897995,0.0379475385380407,0.0401282942879978,0.042052818256519,0.0440155888543859,0.0594962090356538,0.0728452561620179,0.0858869318003,0.0984465222924576,0.1108592514496573,0.1265725098843478,0.1376303478417685,0.1481934762943649,0.1577896209588704,0.1669509251810136,0.179141619804796,0.1908801696712619,0.2020890396069736,0.2115723077932157,0.2198724293412515,0.2291752040669406,0.2382020215543209,0.2457689063817824,0.2530411418594896,0.2601831711505438,0.26567233206151,0.2716055153073148,0.2763150116456414,0.280772315390048,0.2837513048967007,0.2875486285517309,0.2900091292222653,0.2930355464085169,0.2959744475048816,0.2995782814971007,0.2974238245779242,0.2949063505596964,0.2924352944489818,0.2895687090158015,0.2866071826239292,0.2834189445361707,0.2797051581539239,0.2798430603236881,0.2814494579000221,0.2818170508468551,0.2820469767355086,0.2824552087635455,0.2828343770154159,0.28496581120682,0.2862293751044676,0.2878038677608926,0.287915262397689,0.2925310554147501,0.2967980725583994,0.3017261857629266,0.3057246706042708,0.3100803892532262,0.3151923196808179,0.3184353331323485,0.3227807090622975,0.3252801120448179,0.3331829121540313,0.3363926576217079,0.3322466720999728,0.3339644074214313,0.0,2.559311842096216,53.12460733731952,144.39387540141377,199.9835405466928,fqhc5_80Compliance_implementation_low_initial_treat_cost,32 -100000,95751,48231,459.4834518699544,4835,49.19008678760535,3835,39.46695073680692,1460,14.87190734300425,77.33346816806463,79.69546248318211,63.32120940122799,65.07006344420645,77.14668229106776,79.51200399914777,63.25127065160073,65.00363248761553,0.1867858769968648,183.45848403434672,0.0699387496272621,66.43095659092069,243.86692,170.8171484858975,254688.64032751616,178397.24753360017,485.5389,323.1500606044568,506500.5065221251,336905.5786409091,469.98491,229.32232151117296,486737.6215392007,236351.09055687216,2482.36614,1167.811147872034,2557176.8441060665,1184287.7963384548,873.67638,395.04992046231337,897415.6510114777,397557.43858679984,1407.69476,596.429889871549,1436498.4804336247,595039.0641906719,0.38266,100000,0,1108486,11576.756378523462,0,0.0,0,0.0,41738,435.3061586824159,0,0.0,42443,439.180791845516,1105801,0,39599,0,0,9689,0,0,88,0.9190504537811616,0,0.0,0,0.0,0,0.0,0.04835,0.1263523754769246,0.3019648397104447,0.0146,0.3705392545598731,0.6294607454401269,23.083779763803616,4.089568495607539,0.3170795306388527,0.2829204693611473,0.2041720990873533,0.1958279009126466,11.4112593693188,6.300113206849996,15.515626505046166,11606.108687947944,44.35152806660123,13.54866335384897,13.83822211465451,8.797900099925524,8.166742498172221,0.603129074315515,0.8055299539170507,0.7236842105263158,0.5951468710089399,0.1238348868175765,0.7726879861711322,0.90625,0.8967551622418879,0.678391959798995,0.1438848920863309,0.5298730395817774,0.7256198347107438,0.6567844925883695,0.5667808219178082,0.119281045751634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784284918182,0.0044619316107573,0.0068712827071026,0.0091954723729399,0.0115640446695551,0.0139803887627406,0.0157811034539004,0.0179931007736114,0.0200932095989534,0.0221407879786678,0.0245327701629025,0.0266413428468764,0.0288144133767983,0.0309059638932657,0.0330148773290964,0.0349974160206718,0.0370274495998011,0.0391910681304086,0.0412833068230255,0.0433161485184606,0.0575254955585014,0.0714495028780743,0.0848949698864709,0.0971982667956754,0.1097261328524576,0.1256780906658771,0.137274666044202,0.1482778440054496,0.1588251001335113,0.1675603792201107,0.1800945825119305,0.1917142733489137,0.2024665310872095,0.2109632189690811,0.2201201135138702,0.2296100272383019,0.2392401107241718,0.2477187060478199,0.2556756940741329,0.2624705262916924,0.2686905353695333,0.2746846836316029,0.2795625184747266,0.283928742457619,0.2882348661233993,0.2918470241023118,0.2948301698301698,0.2987890020056361,0.3017314898565706,0.3053246017419261,0.3019083610151028,0.2990514365725424,0.2971788243228054,0.2946512265116883,0.2922207890406084,0.2882359239487893,0.283788269136544,0.2834324470437902,0.2827766126144559,0.2838179744850688,0.2845882287016456,0.2866484154964253,0.2863336042852081,0.2870493991989319,0.2884836576248442,0.2909871244635193,0.2892009740075882,0.2935380958338546,0.2974975534740668,0.3016029301721082,0.3048934633441675,0.3089902451885051,0.3109984984984985,0.3133434420015163,0.3182924545965175,0.3225270157938487,0.320561746298275,0.3225937183383991,0.3259300388672959,0.3315528424265547,0.0,2.2768312968357423,50.27125602329223,148.8121892753906,189.17121699701912,fqhc5_80Compliance_implementation_low_initial_treat_cost,33 -100000,95809,47781,455.5417549499525,4861,49.61955557411099,3911,40.351115239695645,1470,15.02990324499786,77.34149214859087,79.68047947546705,63.33904717832892,65.07240939875992,77.1589116031206,79.49982721486349,63.27117847180163,65.00713662824634,0.1825805454702731,180.65226060356565,0.0678687065272853,65.27277051357316,243.95602,170.86500249532145,254627.4567107474,178339.19829590272,487.66041,324.8456647245522,508538.8429061988,338602.04649307707,467.42558,228.1915558140269,485052.83428487927,235975.02640925825,2505.98163,1177.045855583816,2586506.37205273,1199438.5867547046,897.09205,405.193249341936,925112.035403772,411695.96733285615,1425.14722,600.885397824037,1458302.7481760588,602766.783630308,0.38153,100000,0,1108891,11573.975305033977,0,0.0,0,0.0,41979,437.6728699808995,0,0.0,42361,439.3532966631527,1105224,0,39680,0,0,9574,0,0,76,0.7828074606769719,0,0.0,1,0.0104374328090262,0,0.0,0.04861,0.1274080675176264,0.3024069121579922,0.0147,0.3585389930898321,0.6414610069101678,23.057194659043976,4.031890029325572,0.3150089491178727,0.2830478138583482,0.2037841984147277,0.1981590386090514,11.562616680313807,6.342901598624858,15.71764859988719,11519.428745240124,44.953908621525066,13.62341019382237,14.044530910691115,8.937630718200325,8.348336798811259,0.5975453848120685,0.8030713640469738,0.7069805194805194,0.6135508155583438,0.1135483870967742,0.7846808510638298,0.9090909090909092,0.8719346049046321,0.784688995215311,0.1313868613138686,0.5171783625730995,0.7271317829457364,0.6369942196531792,0.5527210884353742,0.109717868338558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019956035941124,0.0044605293837373,0.0067075955147394,0.0087794171442507,0.0108561835478455,0.0130384736836744,0.015196638381201,0.0173901500066374,0.019541275960447,0.0215853121576096,0.0237775430897476,0.02589800989916,0.0280389212318199,0.0301837811109279,0.0324095092657559,0.0343676355066771,0.0365304368534951,0.0385369446375037,0.0405037511170223,0.0424109931292941,0.0566754309085597,0.0705547771899374,0.084356792555644,0.0971911352101131,0.109379281273053,0.1249841457743203,0.1364575935210998,0.1478244226106928,0.157352172196314,0.1670560246902996,0.1789477082683139,0.1897854401988866,0.2006082989354768,0.2102117523655514,0.2184504441122153,0.2277808522412839,0.2372265620647002,0.2448956684738076,0.2530676930043015,0.2595280269698874,0.265032430810424,0.2712548717589675,0.2765927290766069,0.2812242115460514,0.2856831183942597,0.2900600039346842,0.2940970878633929,0.2981430274740607,0.3014453477868112,0.3035305870291017,0.3020623539837267,0.2990931167423546,0.2951766590774939,0.2924259024333986,0.2888832871187295,0.2856401093446954,0.2819257317053908,0.2825830548456851,0.2822532521780642,0.2835533700358116,0.2835368704531428,0.2846939983427376,0.2856007695203044,0.2861065226126166,0.2877350560772352,0.2889895125822989,0.2906605012273791,0.2953398915373944,0.298533703716727,0.2999166898083865,0.3027061620040226,0.3064687732737525,0.3091689820661783,0.3146403125718225,0.3186533383628819,0.3232395202470015,0.3227603280210429,0.3231494771375846,0.3297192104531554,0.3407969639468691,0.0,1.813318461580271,51.325941493263706,144.50523814286524,201.3682935098057,fqhc5_80Compliance_implementation_low_initial_treat_cost,34 -100000,95713,47765,454.60909176391925,4921,50.34843751632485,3877,40.03635869735564,1489,15.274832049982765,77.3419109081298,79.71166612761274,63.33255108723839,65.0813009384104,77.15773780009008,79.52832069814932,63.26374980870314,65.01453732162504,0.1841731080397295,183.34542946342933,0.0688012785352469,66.76361678535159,243.06898,170.2694931370754,253956.07702193016,177895.88993874958,485.11891,321.958746046244,506398.76505803806,335930.6322508374,462.53375,224.931418366838,480301.3592719903,232720.0898162085,2549.25973,1184.6731264792977,2632052.187268187,1206345.5397692032,877.45778,393.1109984989324,904366.5959691996,398325.84758489655,1447.10676,606.8342941210742,1485175.242652513,611472.1536323598,0.38102,100000,0,1104859,11543.458046451373,0,0.0,0,0.0,41749,435.7088378799119,0,0.0,41753,433.2431331167135,1111547,0,39873,0,0,9621,0,0,91,0.9507590400468068,0,0.0,0,0.0,0,0.0,0.04921,0.1291533252847619,0.3025807762649868,0.01489,0.3616604660270217,0.6383395339729783,23.591783235439472,4.131280122958222,0.3136445705442352,0.2667010575187,0.2127933969564096,0.2068609749806551,11.261739965313636,6.069610154348701,15.802580765925336,11536.159078699968,44.35094055163935,12.776512524854375,13.773015389810704,9.101093071464282,8.700319565509979,0.5821511477946866,0.8133462282398453,0.6998355263157895,0.5721212121212121,0.1159600997506234,0.7553571428571428,0.9039812646370023,0.8757763975155279,0.7345971563981043,0.14375,0.5117881755531375,0.7495881383855024,0.6364653243847874,0.5162866449511401,0.1090342679127725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0045403871490828,0.0068878068573747,0.0091106687251157,0.0112661162402895,0.0135008552577991,0.0157802990917153,0.0180758553115048,0.0204108748977923,0.02244465596119,0.0246130189646335,0.0267894731437842,0.0287935502447451,0.0310413747630429,0.0330206688749239,0.0351464781161487,0.0373132009817628,0.0394765517169809,0.0414140889004419,0.0435593626577463,0.0587565665110547,0.0718913883160792,0.0859004490703823,0.098386519973915,0.1101008396270199,0.1252287996614294,0.1361432617943794,0.1471868845478256,0.1572728826596017,0.166747117189595,0.1787910442939143,0.1900299728404947,0.2012484231589021,0.2106108973237712,0.2190358902181562,0.2291526023971049,0.2380936454849498,0.2456372973155192,0.2532994693636899,0.2596126345654437,0.2653807012674623,0.2706929627550065,0.2758861388481378,0.2804249916151597,0.284524315463542,0.2886172349628461,0.2924521216672925,0.2965091149474969,0.3003777197112772,0.3030817634901201,0.3001572770899706,0.2971923372488747,0.2946114004182867,0.2912864503871729,0.2893447597057561,0.2857317147562984,0.2820205776230167,0.2813113145846959,0.2807919511074037,0.2810636669455173,0.2831108206516665,0.2845920617420066,0.2847971560016729,0.2854816037841094,0.287871886462254,0.2887117297255187,0.2907138596142374,0.2960167846182752,0.3003256416541195,0.3052727488808778,0.3086123318080913,0.3104633939906898,0.313071813510465,0.316280834914611,0.320859125867567,0.3211290894059289,0.3193979933110368,0.3253208392748014,0.3369354391798282,0.3321865443425076,0.0,1.811672079775339,49.17938391560612,147.45350928337535,198.17833314169624,fqhc5_80Compliance_implementation_low_initial_treat_cost,35 -100000,95714,47864,456.5998704473745,4854,49.5329836805483,3833,39.53444637148171,1494,15.27467246170884,77.33810060160408,79.72071783526815,63.31256206328344,65.07487502121069,77.14863233929582,79.53414386922931,63.24183938711183,65.00758912180362,0.1894682623082673,186.5739660388357,0.0707226761716057,67.28589940706797,242.12782,169.66722909445434,252970.11931378895,177264.79835181305,486.67487,323.6817750893708,507946.3610339136,337654.55950996804,464.61497,226.2189195672236,482402.5220970809,234044.23586233336,2486.37858,1162.7845524767824,2567211.714064818,1184348.1543732188,893.18825,399.162428614437,921565.047955367,405417.1266632228,1452.4095,613.9738975514202,1486800.154627327,614705.6974118245,0.37954,100000,0,1100581,11498.641786990407,0,0.0,0,0.0,41845,436.6445869987672,0,0.0,41964,435.3804041206093,1110968,0,39905,0,0,9787,0,0,94,0.9820924838581608,0,0.0,1,0.0104477923814697,0,0.0,0.04854,0.1278916583232333,0.30778739184178,0.01494,0.3673065505640214,0.6326934494359786,23.30723446016767,4.13233376531234,0.3034176884946517,0.2812418471171406,0.2019306026611009,0.2134098617271067,11.14615115699112,5.982762069452677,16.012218746829625,11484.905625734684,44.01457098238935,13.263554216348748,13.23135252230756,8.675558216438311,8.844106027294727,0.5744847378032872,0.8014842300556586,0.7007738607050731,0.5594315245478036,0.1100244498777506,0.7575236457437661,0.9336283185840708,0.8542857142857143,0.696969696969697,0.1349693251533742,0.4947565543071161,0.7060702875399361,0.6346863468634686,0.5121527777777778,0.1038167938931297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024933611724878,0.004828565631974,0.0069851970678416,0.0091570624225054,0.0114060703493045,0.0135466851363326,0.0155131264916467,0.017720898403587,0.0197985376080175,0.0219833102953975,0.0241801513566726,0.0259585566713901,0.0280596769384208,0.0300190515421451,0.0320417595114302,0.0342261904761904,0.0362486151807253,0.0383661697116831,0.0404104462095063,0.0426063857492577,0.0574272108275199,0.0707003035695593,0.0838999412406614,0.0964060708688747,0.1086679111167357,0.1241153882771095,0.1354675098680022,0.146539882657353,0.1569352425731994,0.1662626045912894,0.1788222873394811,0.1901973306777221,0.200402677259618,0.2095600704587477,0.2184931280742102,0.2280211865345832,0.236098083880477,0.2447955348502239,0.2521203038250622,0.2592337928742508,0.265426381717567,0.2707599396074484,0.2765524181613686,0.2807227760736196,0.2847495506000097,0.2886280119367647,0.2920877001865695,0.2961529648394735,0.2989371755537431,0.301532253810855,0.2987267911641726,0.296612382326668,0.2937701320805143,0.2905673441714871,0.2878542930453999,0.2845237549123048,0.2811236735725114,0.2811691924977906,0.2815497589150325,0.2808522757614055,0.2819966746996954,0.2821234548460751,0.2833639552363454,0.2846661611881718,0.286972336555949,0.287990291011439,0.2894551200654646,0.2931587969456132,0.2973226377747682,0.3014337198370417,0.3041375604513702,0.3084068256536033,0.3126776226368467,0.3169150521609538,0.3183072677092916,0.3212832732767639,0.3260286225402504,0.3245424129108443,0.3279038718291054,0.3381913303437967,0.0,1.9810564394663583,50.81266276053605,141.4948543870686,193.66740557490988,fqhc5_80Compliance_implementation_low_initial_treat_cost,36 -100000,95666,47576,453.32720088641736,4840,49.59964877804027,3823,39.543829573725255,1411,14.498358873581,77.27782633283482,79.68833727656391,63.2892740309558,65.07204811367792,77.09892633757075,79.50928187813598,63.22178897119867,65.00593680004249,0.178899995264075,179.05539842793416,0.067485059757125,66.11131363543166,243.925,170.82568928907662,254975.6444295779,178564.68263445384,485.82322,323.25214539586494,507430.5813977798,337494.4759850573,464.65185,226.12065928741623,482813.0056655447,234096.28066273587,2448.77019,1152.4775047405244,2536658.3216607785,1181639.1034855896,880.87771,400.7461084023285,912316.8105701084,410433.5902016685,1369.31548,584.5662641157116,1409050.4463445735,592669.6074167447,0.38043,100000,0,1108750,11589.802019526269,0,0.0,0,0.0,41795,436.4664562122384,0,0.0,42028,436.4246440741748,1102566,0,39664,0,0,9615,0,0,100,1.0453034515919972,0,0.0,0,0.0,0,0.0,0.0484,0.127224456536025,0.2915289256198347,0.01411,0.3524752475247524,0.6475247524752475,23.104979653356448,4.001917070447738,0.3057808004185194,0.2893015956055453,0.2058592728223908,0.1990583311535443,11.332379348749296,6.248632960844362,15.12686140319517,11512.587158382164,44.1668920909698,13.706631734460174,13.305632164312383,8.794198535912074,8.360429656285163,0.5916819251896417,0.8137432188065099,0.688622754491018,0.579415501905972,0.1327201051248357,0.7588898525585429,0.9216101694915254,0.8616352201257862,0.7362637362637363,0.1767955801104972,0.5194756554307116,0.7334384858044164,0.6239717978848414,0.5322314049586777,0.1189655172413793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0044418302774622,0.0067508578157675,0.0089636879173145,0.0113535785136578,0.013661230020069,0.0159408465068842,0.0179456014380994,0.0201714367545672,0.0224439413650751,0.0246666666666666,0.0267782856555903,0.0287595822400576,0.0310635184020942,0.033140273174962,0.0351860662350288,0.0371893975504113,0.0391236631710102,0.0414459787098989,0.0431858702338626,0.0576390557895066,0.0721227353649596,0.0858216396057893,0.098646828570226,0.1110091162319574,0.1259922524925382,0.1378695208970438,0.1486129458388375,0.1582696112507352,0.1674002662429682,0.1788404141839692,0.1898235357800151,0.2005267568538249,0.2101318452869413,0.2189089227924179,0.2281722288702743,0.2364643104333653,0.2443884382137512,0.2526069738678528,0.2590409704737926,0.2647106425284964,0.2697561374604176,0.2752810981449295,0.2797527788424683,0.2840264707668022,0.2882759640625578,0.2922203037809974,0.2955675675675676,0.2993123275962547,0.3022706893823514,0.2992377309702095,0.296717676065068,0.2937402168854794,0.2902106495872309,0.2883414605137964,0.2848783775503952,0.2817211453186368,0.2814567905288911,0.2817815424550857,0.2824954508152852,0.2831974264980923,0.2826022612916593,0.283314529271656,0.2835069908273221,0.2858784382256481,0.2863954392329619,0.2870399273532166,0.2911555234838264,0.2961518186610437,0.3011823520076178,0.3038325311052584,0.3079968329374505,0.313484128967758,0.3176363360170135,0.319248387398336,0.3212889468072503,0.3227335269836416,0.3199755899104963,0.3130170987313844,0.3079545454545455,0.0,1.6629084654610462,50.62886967361227,147.51851270298505,189.6974465779961,fqhc5_80Compliance_implementation_low_initial_treat_cost,37 -100000,95818,47752,455.6242042205014,4974,50.86726919785426,3949,40.62910935314868,1483,15.111983134692856,77.39792083527668,79.70341492479203,63.37134666233784,65.0723268581715,77.2114879594691,79.51995209832535,63.30143002157846,65.00627355272499,0.1864328758075828,183.46282646668044,0.0699166407593736,66.05330544650201,244.02246,170.85105601073136,254672.8798346866,178307.89205653567,487.43702,323.6940792911953,508163.6122649189,337274.0709378148,462.87332,225.1494710820074,479639.6397336617,232328.71922896372,2533.53915,1191.4311725533082,2608082.155753616,1207397.548011134,902.40228,410.3739706070938,928129.307645745,414626.3025810321,1436.86114,612.1332505007803,1464895.51023816,608102.5192761741,0.3814,100000,0,1109193,11576.039992485754,0,0.0,0,0.0,41964,437.36041244860047,0,0.0,41949,434.3129683358033,1108216,0,39767,0,0,9572,0,0,84,0.876662005051243,0,0.0,2,0.0208729048821724,0,0.0,0.04974,0.1304142632406922,0.2981503819863289,0.01483,0.3628472222222222,0.6371527777777778,23.201730819076744,3.964405619590587,0.305646999240314,0.2884274499873385,0.2079007343631299,0.1980248164092175,11.305635218550137,6.377895610246727,15.938902852805668,11556.989887347876,45.66159740340903,14.09885843008555,13.860589136501986,9.214401304861724,8.487748531959772,0.5917953912382882,0.8068481123792801,0.6909693454846727,0.587088915956151,0.1304347826086956,0.769814502529511,0.9096509240246408,0.8600583090379009,0.7741935483870968,0.1823529411764705,0.5153818313427434,0.7300613496932515,0.6238425925925926,0.5322834645669291,0.1160130718954248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766420992953,0.0044787159663184,0.0066940514224859,0.0087629337042941,0.0109283506831489,0.0129551606928415,0.0150598112938395,0.0169956643713338,0.0192290008480377,0.0217309010548285,0.0236975564776394,0.0257609799636822,0.0279144791591752,0.030131206586056,0.0319415384298244,0.0340099531253226,0.0360120833419544,0.0380900064260691,0.040124193933604,0.0419216518879313,0.0573330134256892,0.0715234558861984,0.0847061290829969,0.0978730562593967,0.1103954969009571,0.1263875673961306,0.1379807641326363,0.1485987376398335,0.1589641689635279,0.1683076989081236,0.180449508383859,0.1918683886040625,0.2029264368565806,0.2122351706495835,0.2206975414522584,0.231008489866398,0.2394149517290584,0.2472041451708984,0.2538419692642459,0.2603618646781646,0.2666350853273868,0.2720170952147411,0.2774908708446094,0.2812739188672024,0.2859894602943849,0.289933628318584,0.2925773453093812,0.2958534111082931,0.2993427424040907,0.3034979559107699,0.3013911598359557,0.2982944037262826,0.2964105872946853,0.2932894206983835,0.2902209601561806,0.2862580890749905,0.2827010861010546,0.2825561650992685,0.2822055649040504,0.2830409980274031,0.2824000745364763,0.2832628992628992,0.2835503698301906,0.2850841038208755,0.2866492460384053,0.2894975983383097,0.2905990206126865,0.2955359949701351,0.3003884786336751,0.3049166073828155,0.3102241214711096,0.3154989384288747,0.3190056639395846,0.321057027868479,0.3255639097744361,0.3271954674220963,0.3321156773211567,0.3376649340263894,0.3362115488397194,0.3360902255639098,0.0,2.307922293725253,51.59493667625178,154.58667561095908,193.7081101103757,fqhc5_80Compliance_implementation_low_initial_treat_cost,38 -100000,95552,47494,453.9831714668453,5015,51.27051239115874,4007,41.3282819825854,1500,15.290103817816476,77.19945181010942,79.67007833213682,63.224607941291474,65.05375104801787,77.0060943963508,79.48181883118312,63.151535083687,64.98551407564983,0.1933574137586191,188.2595009537056,0.0730728576044725,68.23697236804094,242.17666,169.72906686037493,253450.12139986604,177630.0515534734,483.27118,321.641609717959,505180.3101975888,336026.79139940446,466.33897,227.87879256540745,484691.52921969193,235868.31317846107,2574.83993,1212.7447352866743,2657556.817230409,1232133.311248405,921.67387,420.18488383841327,949522.207803081,424737.5686821203,1458.18106,619.5821210202021,1489053.6043201608,616190.8959144203,0.37771,100000,0,1100803,11520.460063630271,0,0.0,0,0.0,41622,434.9568821165439,0,0.0,42272,438.98610180843934,1105361,0,39652,0,0,9567,0,0,71,0.7430509042196919,0,0.0,0,0.0,0,0.0,0.05015,0.1327738211855656,0.2991026919242273,0.015,0.367117546199276,0.6328824538007239,23.04069925883607,3.957017585389192,0.3107062640379336,0.2874968804591964,0.1976541053156975,0.2041427501871724,11.415139577994266,6.294943071649713,15.9549817941553,11453.35891171888,46.2469231511885,14.337959975827198,14.301105278979003,8.800326489451932,8.807531406930366,0.5924631894185176,0.8020833333333334,0.7092369477911646,0.6123737373737373,0.1002444987775061,0.7637860082304527,0.9227799227799228,0.8720238095238095,0.7172774869109948,0.1176470588235294,0.5179083094555874,0.7034700315457413,0.6490649064906491,0.5790349417637272,0.095679012345679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024024084905373,0.0044641951259105,0.0067633438947111,0.0088254433056775,0.0112289774809626,0.0134967073742583,0.0156248405368168,0.0178111587982832,0.0200573065902578,0.0222793838838274,0.0244721147233029,0.0263950726455739,0.0284037075180226,0.03023488513632,0.0320363767891283,0.034367106952093,0.0362680328973978,0.0380801928953002,0.0401870813845689,0.0422704305340961,0.0563720618847871,0.0704570955192265,0.0846727144674186,0.0973972602739726,0.1098192580065532,0.1250185534657874,0.1362538696396847,0.1471244250450892,0.1569547563183664,0.165834982362557,0.1782169663588746,0.1895356030431621,0.2005127365952108,0.2089768339768339,0.2178471317897896,0.2269935243088338,0.2350782176666741,0.2439406932659324,0.2510667834913121,0.2573591059963936,0.2632525020584722,0.2687576947880635,0.2741969919817811,0.2790206179377259,0.2842394877163935,0.2879658106989785,0.2923642661713396,0.2947776417788658,0.2980095500077853,0.3010813812067051,0.2986657312844866,0.2954917976336414,0.2932307518881749,0.2904195511106615,0.2878513011152416,0.2832623287461305,0.2791246377729569,0.2797135018809653,0.280242245906968,0.2803332320288896,0.2812382739212007,0.281972661272774,0.2827209741759395,0.2846308724832215,0.2862061493270411,0.2874856426856009,0.2885586330832644,0.2929327844640668,0.2963977248788708,0.2986006798956439,0.3047206426572795,0.3049813266003892,0.3093977704427975,0.3107301970852525,0.3159899656229675,0.3185934376102552,0.3176683235427022,0.3220372572334522,0.3207138994050838,0.3185773741959894,0.0,2.3381402650785605,52.90453571495508,150.162422928554,202.32530523379825,fqhc5_80Compliance_implementation_low_initial_treat_cost,39 -100000,95682,47834,455.4984218557304,5028,51.50394013503062,4017,41.39754603791727,1500,15.30068351414059,77.33990302576841,79.72890240391389,63.32261558699434,65.08813215058599,77.14336901891924,79.5360590686968,63.24800029044319,65.01744058620164,0.1965340068491627,192.8433352170913,0.0746152965511512,70.69156438434732,243.09736,170.28348614318307,254068.01697288937,177968.15089900198,485.60143,323.10013489917225,506926.7782864071,337092.0182470812,463.71174,226.1932766912337,480973.9240400493,233589.74252444293,2577.32144,1202.1618086754363,2658487.11356368,1221268.3772030652,915.43377,419.1309349438859,941711.7430655712,423011.4284231993,1461.26946,630.6488640362768,1492853.2639367906,629186.5833326309,0.38164,100000,0,1104988,11548.546226040426,0,0.0,0,0.0,41693,435.1393156497565,0,0.0,42029,435.5364645387848,1109268,0,39818,0,0,9820,0,0,77,0.8047490646098534,0,0.0,1,0.0104512865533747,0,0.0,0.05028,0.1317471963106592,0.2983293556085918,0.015,0.3592380952380952,0.6407619047619048,23.462212659072733,3.9857686798125513,0.3134179736121483,0.2815533980582524,0.2046303211351755,0.2003983071944237,11.022375269818276,5.958557889729184,16.194358432793692,11618.76595214981,45.87659160964865,13.86517966931562,14.165318444833767,8.986433382373379,8.85966011312589,0.5758028379387603,0.8099027409372237,0.6783161239078633,0.5523114355231143,0.1105590062111801,0.7448630136986302,0.9492273730684326,0.8383233532934131,0.6683417085427136,0.1483516483516483,0.5064935064935064,0.7168141592920354,0.6205405405405405,0.5152487961476726,0.0995184590690208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0046829861639045,0.0070623332081866,0.0093446552634786,0.0117751136328971,0.0140780553350027,0.0162575936722795,0.0184126724912223,0.0205777723258096,0.0225388441933304,0.0246655389820083,0.0269457389804758,0.029285949325436,0.0311579424427826,0.033067404250049,0.0351327040188587,0.0372960372960372,0.0394108610811259,0.0414326134897848,0.0434166223639907,0.0578397576517288,0.071870517907432,0.0851990180238779,0.098024364072461,0.1101769117972846,0.1260248177807868,0.1379420096120182,0.1488770622671633,0.158830691673431,0.1681247989707301,0.1802918528889128,0.1913222246267041,0.2034384888917887,0.2128113178667483,0.221652377755522,0.2309191799483868,0.2388459350001673,0.2466782921752826,0.2533862733976177,0.2612370165935664,0.2671493505742473,0.2730142030510257,0.2780360290029925,0.2824519806485606,0.2873075009404997,0.2918657341279614,0.295509101820364,0.2998119106321328,0.3039966866846137,0.3059666059982591,0.3022125918548626,0.2995270047299527,0.2965575501583949,0.293691038587671,0.2914860129476748,0.2876306300800587,0.2841468805253852,0.2843414913644921,0.2831096824667925,0.2831489014014458,0.2844519015659955,0.2857339548789362,0.2877793747005769,0.2884508297137766,0.2893765872825722,0.2897387962818715,0.2911924157702024,0.2968093775465429,0.3004333845938767,0.3042827901117934,0.306935607598935,0.3082235108065366,0.3124687968047928,0.3168152288865387,0.3241834930678329,0.3280809031044214,0.3310491853205421,0.3279853777416734,0.3305578684429642,0.3363949483352468,0.0,2.3155658681828406,50.5434273975016,150.0282255746078,207.86518786649572,fqhc5_80Compliance_implementation_low_initial_treat_cost,40 -100000,95789,47853,455.7934627149255,4928,50.22497363997954,3892,40.09854993788431,1472,14.991282923926546,77.331780499572,79.67276365820062,63.32970022966426,65.0627216870778,77.14375068965673,79.48752502515968,63.25811241425709,64.99449949728755,0.1880298099152781,185.2386330409388,0.0715878154071703,68.22218979024797,243.96152,170.97441892785452,254686.13306329536,178490.45732123344,486.53176,324.13774466701744,507389.05302278965,337857.7659762583,465.99948,226.91544809044808,483286.1393270626,234418.95565767755,2515.22037,1184.165512532571,2592648.748812494,1203196.3862560524,894.11865,414.77246757578587,921704.4128240194,421333.7478642786,1444.31066,619.8742274082891,1472922.1726920628,618516.6812662415,0.38163,100000,0,1108916,11576.64241196797,0,0.0,0,0.0,41976,437.6598565597303,0,0.0,42143,436.7098518619048,1102768,0,39582,0,0,9522,0,0,84,0.8769274133773188,0,0.0,0,0.0,0,0.0,0.04928,0.1291303094620444,0.2987012987012987,0.01472,0.352211016291699,0.647788983708301,23.199421447599303,4.0720594945110085,0.3057553956834532,0.2859712230215827,0.197327852004111,0.210945529290853,11.325866498322704,6.036721608039591,15.875668839399184,11492.67181196629,44.76634707987625,13.70921445180592,13.515508858021796,8.515140580308344,9.02648318974019,0.5739979445015416,0.8086253369272237,0.7025210084033613,0.546875,0.0950060901339829,0.7523245984784447,0.9337606837606838,0.8550295857988166,0.6923076923076923,0.1593406593406593,0.4961240310077519,0.7178294573643411,0.642018779342723,0.4973821989528796,0.0766823161189358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486705495062,0.0045821337334252,0.0070017352126396,0.0092445853143159,0.0116145436053902,0.0140530962637094,0.0161803389001039,0.0182633018906447,0.0205168571486986,0.0227875313507703,0.0253823758559888,0.027178544659267,0.0291404892394064,0.0311193061249716,0.0330677455311068,0.0350253282332265,0.0368387257135755,0.0389151065705543,0.0407253455263431,0.0427742896115119,0.0568396447913514,0.0711289630861602,0.084512652787387,0.0971365523038932,0.1093198461619514,0.1247846991070956,0.1367524085084735,0.1471135544378635,0.1559648692200155,0.165147148627077,0.1773943555852151,0.1882855597620335,0.1991039290102983,0.2089526121810645,0.2183180737740998,0.2280381078985266,0.2378875266346121,0.2457183982367559,0.253965554383936,0.2607366878805915,0.265609285227102,0.2708988278191359,0.2769327214231643,0.2806210465784934,0.2850638628527026,0.289194784709043,0.2918465677992616,0.2957529449219994,0.2996152301493736,0.3018885354941734,0.2991750884794983,0.2963237718430597,0.2921713441654357,0.2889652583244289,0.2866346039662747,0.2837182253646144,0.2796177033719955,0.2793085350652758,0.2792425122092825,0.2790908928984913,0.2815971572844585,0.2827397368213695,0.283617354939885,0.2853225123185659,0.2850934063295394,0.2860560047840669,0.2868703503890056,0.2911756431496358,0.2963569239342435,0.2996055226824458,0.302876557191393,0.3045363223009411,0.3065835850956697,0.312310491206792,0.315504020946325,0.3223529411764705,0.3222272934732998,0.3233652312599681,0.3269074124355145,0.3292212798766384,0.0,2.067033932178509,51.621611517185,144.8388941630278,195.6815466475873,fqhc5_80Compliance_implementation_low_initial_treat_cost,41 -100000,95688,47442,453.0975670930524,4963,50.61240698938216,3898,40.14087450882033,1450,14.672686230248306,77.34192318165195,79.71721947842633,63.32298576779221,65.07494677847212,77.15052158527634,79.5323447455066,63.25020051276276,65.00766996028584,0.1914015963756128,184.87473291972375,0.0727852550294443,67.27681818628639,243.38358,170.4924480148717,254351.20391271636,178175.36996788697,482.28204,320.1731070277625,503422.53992141125,334008.7020047479,456.32049,222.0547536620608,474087.4090795084,229792.49214382836,2496.73915,1172.7183770432828,2569611.048407324,1185950.4258975333,893.13501,410.1256718833165,915511.49569434,410782.3643816769,1405.75396,607.3227252689676,1424180.5451049244,595692.1205671551,0.38008,100000,0,1106289,11561.418359668924,0,0.0,0,0.0,41553,433.62804113368446,0,0.0,41284,428.67444193629296,1109642,0,39745,0,0,9443,0,0,73,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.04963,0.1305777731003999,0.2921619987910538,0.0145,0.3565351894818252,0.6434648105181748,23.52748201317125,3.984760403255566,0.3240123140071831,0.2739866598255515,0.2083119548486403,0.1936890713186249,11.297505144803138,6.268309360677517,15.452024161936995,11444.72869675756,44.60109983203584,13.111361705692085,14.285275750332604,8.926615391818238,8.27784698419291,0.5726013340174448,0.7827715355805244,0.669833729216152,0.5603448275862069,0.1258278145695364,0.7568042142230026,0.9172413793103448,0.8301369863013699,0.7514450867052023,0.180722891566265,0.4965567234505255,0.6903633491311216,0.6046770601336303,0.5086071987480438,0.1103565365025466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022680558508753,0.0046320227850923,0.0069184495369102,0.0092225811038657,0.011278004332218,0.0134898495245464,0.0158738250107048,0.0183492796095289,0.0205018610168105,0.0224952644243075,0.0244029980826215,0.0265141401901788,0.0282434739678686,0.0301172543120324,0.0323090103946241,0.0342071247608706,0.0360990263103376,0.0380826837445377,0.0401202150559998,0.0418069087688219,0.0565838678003635,0.0698938242131054,0.0834767822655134,0.09598324686668,0.1080285346446888,0.1231557333672022,0.1349508893018317,0.1452753808458506,0.1547499412003677,0.1645929727002394,0.1760925588466805,0.1877971902992753,0.1992358019181154,0.2085057018407862,0.2175047333891066,0.2264619202729952,0.2345651445796583,0.2420210071262116,0.2489393079977311,0.2555720994158744,0.262160973803573,0.2680244732747628,0.2734212270403333,0.2783204880796845,0.2833509455963269,0.2871467639015497,0.2916583241565722,0.2947616020343293,0.2977753606298396,0.3017127625884092,0.2994408891882789,0.296522278080022,0.2942900625669353,0.2915494380239218,0.2897301460351313,0.2859170622262244,0.2831179894931137,0.2836715640509066,0.2837238650704321,0.2841846898121798,0.2839964897212316,0.2849790992980519,0.2859886439545758,0.2867527370838629,0.2877718496542814,0.2875899932666908,0.2893300528831198,0.2943836342657561,0.2987315377932233,0.3018867924528302,0.3041072472895766,0.3097586568730325,0.3148148148148148,0.32,0.3231453181439289,0.3281123100127625,0.3336816960286652,0.3440647837250642,0.3419424266881894,0.3457875457875458,0.0,2.2752658176100766,49.3123897067305,147.11309957772824,199.4225176982316,fqhc5_80Compliance_implementation_low_initial_treat_cost,42 -100000,95744,47548,452.91610962566847,4962,50.69769385026738,3974,40.98429144385027,1465,14.925217245989304,77.32392886815877,79.68853417099041,63.31606620966248,65.06516137915352,77.13786543437713,79.50548870985979,63.24577367424553,64.99843670313281,0.1860634337816407,183.04546113061804,0.0702925354169536,66.72467602071208,242.42922,169.7716595981917,253205.42279411765,177318.10473574503,482.47949,322.0191719796857,503415.7127339572,335822.91901287367,463.32186,226.48346151397533,480958.30548128346,234161.59475166592,2572.75621,1204.108818632517,2654820.5631684493,1225364.9188800526,900.13163,407.5097270009029,928604.4451871658,414223.528253581,1423.3662,608.5561007452595,1451625.2715574866,605841.003046927,0.37963,100000,0,1101951,11509.33739973262,0,0.0,0,0.0,41502,432.925300802139,0,0.0,41970,435.4110962566845,1111186,0,39928,0,0,9700,0,0,82,0.8460060160427807,0,0.0,0,0.0,0,0.0,0.04962,0.1307062139451571,0.2952438532849657,0.01465,0.3637243515292295,0.6362756484707704,22.89435990825329,4.02474415086786,0.3095118268746855,0.283844992450931,0.2070961248112732,0.1995470558631102,11.325951238577913,6.168629000300593,15.689465127704846,11467.585091914054,45.703826300658896,13.887290466365071,14.002876547261751,9.08246369162027,8.731195595411801,0.5845495722194263,0.7934397163120568,0.7195121951219512,0.5528554070473876,0.1109709962168978,0.7474662162162162,0.8888888888888888,0.8636363636363636,0.7653061224489796,0.1299435028248587,0.5154121863799284,0.7279521674140508,0.6617312072892938,0.4864433811802233,0.1055194805194805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024917195903856,0.0048160277403197,0.0070939980108388,0.0093478835172427,0.0117996500793424,0.0139816700610997,0.0164855331036029,0.0187001745485724,0.0208365283358382,0.0229753250742295,0.0249341275618483,0.0268177991334524,0.0287141843752891,0.0305814492455065,0.0328142896944556,0.0346691750307515,0.036739724892277,0.0387246100034251,0.0407520251229631,0.0426624716104431,0.0574829044213603,0.0709204276776933,0.0837003481397592,0.0957583277254374,0.1081867645198026,0.1242344429283153,0.1356286472148541,0.1461822673211452,0.1562182890225275,0.1661270610433328,0.1780055115397864,0.1893078428616226,0.2002913328477785,0.2095458818899359,0.2178273348068485,0.2270694007706275,0.2359412657323931,0.243412614477622,0.251007458027312,0.2577472055030094,0.2634914382371341,0.2693289911438077,0.2742551022826937,0.2784568693545098,0.2834502973765188,0.2877350928038478,0.2912496085186345,0.2948023994803673,0.2987001205272093,0.3010934446146532,0.2991201950930329,0.2956015523932729,0.2930990757439134,0.2911392405063291,0.289044289044289,0.2855134474327628,0.2811908069200656,0.2814595531713061,0.2813271368503481,0.2821820896583597,0.2824639600156655,0.2825273686697645,0.2839598840724756,0.2857428781106144,0.287275509960064,0.2868695246487999,0.2863367569249922,0.2902963102173777,0.2948843728100911,0.3001383125864453,0.3039517810205746,0.306568958245466,0.3076153557584094,0.3088768115942029,0.311113191648722,0.3106212424849699,0.3164291072768192,0.318928431755964,0.3228346456692913,0.3312173263629574,0.0,1.9886087101768155,51.77560192889917,150.14515635407204,201.2954293625134,fqhc5_80Compliance_implementation_low_initial_treat_cost,43 -100000,95796,47948,457.8792433922084,4757,48.415382688212446,3727,38.341893189694765,1412,14.35341767923504,77.4066300966336,79.7453090658493,63.35719594835807,65.08758508227254,77.22073696744548,79.56404888049278,63.28642587567069,65.02089147558446,0.1858931291881305,181.2601853565212,0.070770072687381,66.69360668807656,244.82612,171.4930734777397,255569.83590129024,179018.60128781974,484.47107,322.6390052080153,505188.5360557852,336255.6006829673,459.69112,223.93017659640097,476568.2074408117,231116.0043653503,2398.49877,1126.0959963170342,2469754.0502734976,1141631.9218144857,851.44346,388.8952526813969,874745.469539438,391898.3701630511,1368.97958,591.0722858691726,1393576.6420309823,586188.070264483,0.38133,100000,0,1112846,11616.81072278592,0,0.0,0,0.0,41624,433.9220844294125,0,0.0,41630,431.3541275209821,1102296,0,39551,0,0,9637,0,0,87,0.887302183807257,0,0.0,1,0.0104388492212618,0,0.0,0.04757,0.1247475939474995,0.2968257305024175,0.01412,0.3481063658340048,0.6518936341659952,23.479180411411107,4.044742217574036,0.3101690367587872,0.2811913066809766,0.2057955460155621,0.202844110544674,11.516896319401562,6.2818448779384966,15.038351938695934,11443.102498264128,42.36748602048057,12.683369157036031,12.972208362667812,8.519127360644456,8.192781140132276,0.588677220284411,0.8101145038167938,0.7084775086505191,0.5788787483702738,0.1084656084656084,0.7511271415689811,0.9223529411764706,0.8434504792332268,0.7326732673267327,0.1715976331360946,0.5198624904507257,0.7335473515248796,0.6583629893238434,0.5238938053097345,0.090289608177172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0044513394577274,0.0065860910686922,0.0088800382024526,0.0108216962805504,0.0130852732123582,0.0151913704859199,0.0171693972337059,0.0194100331166441,0.0216852920708993,0.0238998093754483,0.0257452157405982,0.0278220294562011,0.0297817582870084,0.0318111534893309,0.0337560149521901,0.0359086300717965,0.0382003835588037,0.0399156389930703,0.0419980843709657,0.0563746204651453,0.0701071895424836,0.0841316423854941,0.0968219938205435,0.1084068232343985,0.1244518644533437,0.1358283782208231,0.1464036999627877,0.1569215338981242,0.1659078979786402,0.1787455208703231,0.1905771164722039,0.2009281297208003,0.2096106590946322,0.2181488602032408,0.2279280774550484,0.2362014163832041,0.2433258770500095,0.2505386098197074,0.256871810129769,0.263219958842979,0.2686964750966807,0.2743655842773692,0.2791179322646682,0.2832396605931123,0.2869527738439751,0.2906029943340296,0.2944152113678537,0.2973906518842417,0.3010440835266821,0.2982720568444851,0.294988939117053,0.2922533725330219,0.2889058759050393,0.2868529437909271,0.2838027524335541,0.28029098238045,0.2805349425099894,0.2805053601368401,0.2818136804131004,0.2827441280940249,0.2846733914406033,0.2859987554449284,0.2862614856636776,0.2873112141752884,0.2884897832976887,0.2908645727794664,0.2935372777760541,0.2981915188470067,0.3019310452662028,0.3064262971433696,0.3085633773417523,0.3117967107703722,0.314106863402638,0.3175942055560649,0.3174841315637622,0.3211480362537764,0.3179487179487179,0.3170731707317073,0.3227393113885736,0.0,2.1452651488284764,48.03628745472978,132.82034619764943,193.94823163267145,fqhc5_80Compliance_implementation_low_initial_treat_cost,44 -100000,95695,47879,456.74277652959927,4973,50.79680234077016,3936,40.61863211244057,1547,15.80019854746852,77.29491858535671,79.69735312682289,63.29396199958445,65.07417440123083,77.10171530446696,79.50733826497382,63.2204770160961,65.0043614182091,0.1932032808897474,190.0148618490647,0.0734849834883561,69.812983021734,242.82236,170.15421467282397,253746.13093683057,177808.88726978836,487.66199,324.7157655473718,509034.5263597889,338757.89283387,461.35472,225.45195066319525,478849.25022205967,233159.8352300888,2548.37727,1195.6372767651935,2630636.679032342,1217168.515270027,896.2378,410.0400363005447,923981.7649824964,415981.3999505345,1499.85042,635.9800785358811,1534607.931448874,637115.147394916,0.38244,100000,0,1103738,11533.915042583209,0,0.0,0,0.0,41980,438.1629134228539,0,0.0,41832,433.9202675165892,1107612,0,39679,0,0,9547,0,0,78,0.8046397408433043,0,0.0,0,0.0,0,0.0,0.04973,0.1300334693023742,0.3110798310878745,0.01547,0.3491021432709017,0.6508978567290983,23.27278191477295,4.170028430220667,0.3152947154471545,0.2713414634146341,0.2098577235772357,0.2035060975609756,11.542019438456272,6.2733545791430965,16.50651777290136,11550.216922133655,45.254245604715486,13.304237397757738,14.123117642468946,9.179458997527115,8.64743156696169,0.5746951219512195,0.799625468164794,0.6913779210314263,0.5605326876513317,0.1086142322097378,0.7601659751037344,0.8905263157894737,0.8657534246575342,0.7450980392156863,0.15527950310559,0.4928597583302819,0.7268128161888702,0.6187214611872146,0.5,0.096875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021896256348393,0.0042720732239439,0.006540395064236,0.0085201565756697,0.0107189755387481,0.0127811808832672,0.0149393852810318,0.017040926830265,0.0194275074681834,0.0216556203198147,0.0239829308823831,0.0259700235250608,0.0283082938876312,0.0306499984541023,0.0325770556782757,0.0344271280391325,0.0364448405214399,0.0386943386040137,0.0409141977363515,0.0429222126098331,0.0572425391453312,0.0712468459790813,0.0839236428129164,0.0964992581836547,0.1086832665119223,0.1244352270202207,0.1355072233013831,0.1463115975978534,0.1564510269068838,0.1655739991630632,0.1772424640710176,0.1889877088202198,0.2005023158718768,0.2106436698691674,0.2204308761588457,0.2300554737413218,0.238073455908604,0.2461180124223602,0.2542122712203097,0.2615682633563724,0.2679724942696395,0.2729676913535462,0.2778586561564227,0.2830815347721822,0.2872729481805479,0.2907666687226299,0.2942575943502541,0.2976260146052263,0.3018584860516548,0.305093678357796,0.3024812494959542,0.2996237710770583,0.2964093332020647,0.2938774921376842,0.291192001898659,0.2883759350190445,0.2837949042570027,0.2843343064256896,0.2841812536254137,0.2846540835622792,0.2850102130689804,0.2857255769838761,0.2859505170176246,0.2865786947105186,0.2870824910963519,0.2879028686068627,0.288880027344195,0.2937592261063476,0.2975004369865408,0.302888985495791,0.3059379401208487,0.3086713138994508,0.3148032479700187,0.3183775209607976,0.3202535185012582,0.3231204336554324,0.3245322872661436,0.3267803410230692,0.3270575578267886,0.3268873187058386,0.0,1.9923250927047915,52.7047626412484,145.66622576859814,197.01541372194845,fqhc5_80Compliance_implementation_low_initial_treat_cost,45 -100000,95717,47867,457.0243530407347,4910,50.10604176896476,3888,40.00334318877525,1487,15.127929207977685,77.3593554540744,79.73203550692813,63.33143217950936,65.08456589583564,77.16689458225726,79.54415745714014,63.2583092442826,65.01579442994091,0.192460871817147,187.87804978798303,0.0731229352267632,68.77146589472716,244.41032,171.2207146630798,255346.59464880847,178882.03127450697,484.69422,322.45336157522246,505773.8750692144,336274.1393874259,467.04773,227.34926513704744,484274.8414597198,234607.8068250843,2532.03508,1182.3824384596344,2606161.7058620728,1196206.1897719356,904.24658,407.7656546075292,924695.9787707512,406209.0750729836,1446.27848,616.9993721959482,1472286.6157526877,610454.8263024647,0.38012,100000,0,1110956,11606.663393127656,0,0.0,0,0.0,41702,435.05333430843007,0,0.0,42094,436.1294231954616,1104069,0,39516,0,0,9675,0,0,88,0.919376913192014,0,0.0,1,0.0104474649226365,0,0.0,0.0491,0.1291697358728822,0.3028513238289205,0.01487,0.3595483745376679,0.6404516254623321,23.29480084324774,4.043402360206048,0.3011831275720165,0.2824074074074074,0.2132201646090535,0.2031893004115226,11.282640423884414,6.111893004489737,15.694685936776056,11492.949401724876,44.52031337478427,13.675946316085016,13.132463845406706,9.189470467405457,8.52243274588709,0.5789609053497943,0.8114754098360656,0.681468830059778,0.5826296743063932,0.1,0.7541557305336833,0.9214876033057852,0.8389261744966443,0.75,0.1445086705202312,0.5060109289617486,0.7247557003257329,0.6277205040091638,0.5335413416536662,0.0875202593192868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092816918526,0.004693503096901,0.0068393761352451,0.0091202697487355,0.0113276999888146,0.0134280798558441,0.0152607166522248,0.0172815058285527,0.0193003618817852,0.0215604172851892,0.023750192278111,0.0261198245668094,0.028221325980493,0.0300950967967937,0.032051678946608,0.0340617763810784,0.0360082411040594,0.0381172663437503,0.0400856602282886,0.0422590960699144,0.0567332191637776,0.0698735661056686,0.0835405062361666,0.0960703281912152,0.1088391614291137,0.1245397994160213,0.1354480621471324,0.1461230487467257,0.1560372377379463,0.1654717953120975,0.1776268994503718,0.1894724306299869,0.1998781363567122,0.2099462630375064,0.2194584590980193,0.2280904110196748,0.2365417262330235,0.2447299151836936,0.2527486242695864,0.2596817978763616,0.2665324866109125,0.2727687128898031,0.2784027794190636,0.2817251899264222,0.2854994603378649,0.2888429548698262,0.2914848662907722,0.2954043136956025,0.2992540304334897,0.3024505221021029,0.2999167718205493,0.2976384867653718,0.2943461311944358,0.2907123767924365,0.2888074370760113,0.2855707762557077,0.2824846321945697,0.2823297298178676,0.2828020504464134,0.2829552911131998,0.2836394145613871,0.2852535106006372,0.2862784429260954,0.2861416865748286,0.286628478297342,0.2882609372567336,0.2886682740036874,0.2928434845302655,0.2971810296586458,0.3014827667797145,0.3040877367896311,0.3074199344678152,0.3099452037538577,0.311330718165359,0.3145513714551371,0.3174213174213174,0.3197031652279267,0.3251497005988024,0.3207700650759219,0.3286897590361445,0.0,2.3983366216377955,49.497441142896015,145.15900470088815,199.60683842448623,fqhc5_80Compliance_implementation_low_initial_treat_cost,46 -100000,95895,47536,453.0058918608895,5036,51.32697220918713,3988,41.076177068668855,1478,15.0894207205798,77.4394230829848,79.7187004723016,63.39129033748679,65.0768916205654,77.25618966347879,79.53775238805267,63.32097962664475,65.00956335853323,0.1832334195060099,180.94808424893927,0.0703107108420368,67.32826203217712,245.42298,171.84438020884537,255928.85969028625,179200.56333369348,485.66661,323.3749865620933,505934.8454038272,336707.2036194939,463.9169,226.6650349472081,480431.2737890401,233848.45356494663,2567.0822,1206.9264475357472,2646838.35445018,1229173.1765272836,888.5911,407.0208015883947,912096.7203712394,410397.66748747526,1431.15588,606.9963741517524,1462912.20605871,607932.7828457236,0.38015,100000,0,1115559,11633.129985922104,0,0.0,0,0.0,41883,436.2166953438657,0,0.0,42063,435.3615934094583,1100979,0,39515,0,0,9620,0,0,83,0.8551019344074248,0,0.0,0,0.0,0,0.0,0.05036,0.1324740234118111,0.2934868943606036,0.01478,0.3526385978281577,0.6473614021718422,23.15653701549384,3.981806680026213,0.2981444332998997,0.2938816449348044,0.2101303911735205,0.1978435305917753,11.235479874286767,6.111100336511497,15.605794135833875,11450.247210442676,45.71963621724043,14.399963074656,13.489038357791037,9.3716020295287,8.459032755264692,0.5915245737211635,0.8080204778156996,0.7005887300252313,0.5894988066825776,0.1077313054499366,0.7602574416733708,0.9233791748526524,0.8595988538681948,0.6894977168949772,0.144578313253012,0.5151183970856102,0.7194570135746606,0.6345238095238095,0.5541195476575121,0.0979133226324237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021259364243774,0.0043576958936316,0.0066444171679566,0.0090060818974707,0.0110177157551302,0.0131967196434749,0.0153501400560224,0.0174418604651162,0.0194515957664173,0.0215941406329916,0.0238017172483042,0.0257020612950555,0.0275599856137286,0.0293993514848937,0.0315570263610965,0.0337549692808095,0.0358572743919471,0.0378498233398609,0.0398758357211079,0.041830078958045,0.056881671114076,0.0708718184477786,0.0849825134552156,0.097355352812103,0.1095332336779165,0.1248178727537639,0.1362215984322864,0.1463577918282769,0.1563449503726052,0.1654857974613096,0.1785245866391451,0.1898109130199892,0.2001390533508598,0.209233458995793,0.2179019133494611,0.2267540315886174,0.2359812302856697,0.2440232777603019,0.2518268435542162,0.2584192596995816,0.2640544161123429,0.2699446662464103,0.2759496662137413,0.2799258062586011,0.2845097420716764,0.2879699710787028,0.2911110833406231,0.294380482108176,0.29708853238265,0.3004143373890168,0.2970995031556331,0.2947677288433061,0.2926261138006034,0.2901264801636463,0.2872113676731794,0.2841061622940817,0.2799236930062433,0.2798321660054529,0.2808343666661004,0.281812538795779,0.2826378289841045,0.2835416707549206,0.2838944305901912,0.2840107082015088,0.2838966957842765,0.2851027618040692,0.2868421792026074,0.2915311967796872,0.2963129031145449,0.3004291845493562,0.302426575931232,0.3070120355834642,0.3128876209377326,0.3166491043203372,0.3207511912547884,0.3266195524146054,0.3330784523627466,0.3340080971659919,0.3421990677268988,0.3528969149736644,0.0,1.893670125871685,54.42190194392053,142.07472656726324,201.5415657009163,fqhc5_80Compliance_implementation_low_initial_treat_cost,47 -100000,95741,48118,457.975162156234,4957,50.70972728507118,3900,40.191767372390096,1438,14.685453462988688,77.34647984393533,79.69886122942324,63.33814763576003,65.07530084921167,77.15708432859769,79.51057574472148,63.26757100435014,65.00687522924828,0.1893955153376367,188.28548470176543,0.0705766314098923,68.42561996339214,244.23652,171.1380612832493,255101.28367157228,178751.0693258367,486.36188,323.7741931394263,507486.5835953249,337666.2486702942,471.02024,230.7880160540196,487795.1034561995,237860.879452257,2486.31218,1167.1595799482768,2565524.843066189,1187690.268482966,879.49003,397.90789857685246,906717.822040714,403712.7025797216,1385.65816,590.3729166132719,1417108.7830709936,592243.398172634,0.3824,100000,0,1110166,11595.512894162375,0,0.0,0,0.0,41836,436.4274448773253,0,0.0,42579,440.6471626575866,1100386,0,39541,0,0,9736,0,0,82,0.8460325252504152,0,0.0,0,0.0,0,0.0,0.04957,0.1296286610878661,0.2900948154125479,0.01438,0.3625968992248062,0.6374031007751938,23.13205751177674,3.917184079443371,0.3217948717948718,0.2892307692307692,0.1979487179487179,0.191025641025641,11.161368879366952,6.260885956404655,15.497147412082196,11583.627045943762,44.98146686704241,13.907899592613552,14.357345838082535,8.619178597146455,8.097042839199869,0.5956410256410256,0.8147163120567376,0.7099601593625497,0.5569948186528497,0.1114093959731543,0.7779646761984861,0.9173553719008264,0.8898071625344353,0.7025641025641025,0.1428571428571428,0.515676872002951,0.7375776397515528,0.6367713004484304,0.5077989601386482,0.1036789297658862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901154547295,0.0045920384393151,0.0071239382592017,0.0094979785051096,0.011766021925275,0.0140189770320899,0.0161365953109072,0.0184427275232447,0.0206785170344778,0.022677710319126,0.0247747516887216,0.0272309239833309,0.0293833405300927,0.031547723269922,0.0334179357021996,0.0356175710594315,0.0375520261735655,0.0396634365986761,0.0418295218295218,0.0437979772729639,0.058630697596726,0.0728092850938242,0.0860155266470835,0.0985552658142664,0.1105078384447513,0.1264258454642521,0.1380539233363738,0.1477839851024208,0.1584402553318673,0.1681687152394526,0.1790411814091662,0.19033820603754,0.2001977637483836,0.2097477302275781,0.2190463631468477,0.2283421868083222,0.2374921965575671,0.2467732505846375,0.2539156865636093,0.2605873261205564,0.2662689052310253,0.2719483828737741,0.27704885060871,0.2811249310997675,0.2865085338318483,0.2905488555254737,0.2949479290384687,0.2986339006334427,0.3024038959693296,0.3057702962982507,0.3023290253096392,0.2985587766103746,0.295967912180705,0.2927079272958263,0.2901794327609492,0.2865841531141471,0.2828630528493155,0.2826538795149174,0.2836232896552899,0.2844079134642756,0.2849062943328604,0.2864509526058888,0.2868753133879325,0.2871792585326705,0.2881270662641943,0.2884820707794068,0.2882875192077855,0.292231580924946,0.2965382331365494,0.3011943710828176,0.304418762746431,0.3071878140371291,0.31125249500998,0.3136081224427943,0.3197565543071161,0.3202074982315491,0.3243366186504928,0.3215291750503018,0.3178679922673295,0.3226056611089569,0.0,2.149215009523412,51.74914987271438,148.90190621100666,192.06749014373813,fqhc5_80Compliance_implementation_low_initial_treat_cost,48 -100000,95748,47649,455.3828800601579,4948,50.62246731002214,3936,40.606592304800095,1452,14.79926473660024,77.41222784566315,79.76905592778567,63.350809200748486,65.09025599589106,77.22901727794074,79.58910597660089,63.28141747551249,65.02444982091961,0.183210567722412,179.9499511847813,0.0693917252359952,65.80617497144203,244.40768,171.10656975301077,255261.39449387975,178705.11107596062,485.86182,323.144035122288,506965.3152024063,337021.52015946846,469.78777,229.25538864206143,488054.3196724736,237400.34152152285,2542.11284,1204.4131579403502,2622192.286000752,1225087.717696819,905.2146,418.1257030984562,928701.8423361324,419982.1856315074,1414.36974,606.1305756380799,1441999.8537828466,601931.0615678934,0.37849,100000,0,1110944,11602.790658812715,0,0.0,0,0.0,41802,436.0822158165183,0,0.0,42472,440.9178259598111,1103350,0,39579,0,0,9560,0,0,97,1.0130759911434182,0,0.0,0,0.0,0,0.0,0.04948,0.1307300060767788,0.2934518997574777,0.01452,0.3664403491755577,0.6335596508244423,23.011750899118177,4.035103869776165,0.3023373983739837,0.290650406504065,0.2096036585365853,0.1974085365853658,11.562093741547136,6.313381799668931,15.62685550756366,11489.090337071231,45.37471230159293,14.095566378060267,13.535697028218678,9.261863536309786,8.481585359004196,0.5975609756097561,0.8068181818181818,0.7092436974789916,0.6012121212121212,0.1145431145431145,0.7627257799671593,0.9222903885480572,0.8816901408450705,0.6945812807881774,0.1403508771929824,0.5235467255334805,0.7206106870229008,0.6359281437125749,0.5707395498392283,0.1072607260726072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0042669639689859,0.0064115570344519,0.0087639125842879,0.0109598511574944,0.0131724945284267,0.0150844935483213,0.0172137587624868,0.0195194734851968,0.0216888433981576,0.0240223005657128,0.0262379896526238,0.0281276022658346,0.0303183217820252,0.0320803194617853,0.0339866038203919,0.0358892052808697,0.0375261967505654,0.0394128104629523,0.0414379316451213,0.0564580114419342,0.070732013560457,0.0844714372626764,0.0976689878610649,0.1100360843233661,0.1256402116402116,0.1368002122578933,0.1478247907838419,0.1575887752594064,0.1678257136724619,0.1798100453864315,0.1910712158782064,0.2018830956786763,0.2111370179413921,0.2196277123031171,0.2289113873518224,0.2377350479872183,0.2455778866182514,0.2531529179389963,0.2597329665921724,0.2654055868767437,0.2710202744597962,0.2765338348532699,0.2813629941811738,0.2849410822421513,0.2886665189670876,0.291842598376015,0.2953037166749147,0.297605223091017,0.2996609991327885,0.2972871592203094,0.294275467462425,0.2916316349980382,0.2890916930152342,0.2863968853232657,0.2824045940690325,0.2804962311557789,0.2806943337291968,0.2810436490467644,0.2819855346690481,0.2820855119219787,0.2831059154709309,0.2848989249097173,0.2850538609568891,0.2862888830711378,0.2870694988657455,0.2881766462006421,0.293404070488955,0.2981781656968689,0.3030184700691163,0.3086082635749138,0.3116252350114895,0.3137739345274861,0.3166629455979757,0.3200036603221083,0.3228309973358044,0.325698988697204,0.3273551438707134,0.3294054633101232,0.3355805243445693,0.0,1.9757144559052056,53.23303064938786,150.57040271551813,189.5463827714404,fqhc5_80Compliance_implementation_low_initial_treat_cost,49 -100000,95736,47850,454.9594718810061,5002,50.98395587866633,4011,41.38464109634829,1506,15.417397844071196,77.32373385663094,79.69309710010606,63.321321634088775,65.07484384768838,77.12536551678873,79.49496041663026,63.24651075305935,65.00155104005474,0.1983683398422044,198.1366834757949,0.0748108810294283,73.2928076336492,243.71952,170.76103164694726,254574.580095262,178366.5827347573,488.53835,325.78473200357547,509785.639675775,339783.7429137176,470.23737,230.09179993955144,487492.1868471631,237506.602619759,2588.77347,1240.485267186238,2674217.149243754,1265923.7479912303,930.51393,429.83487270165375,959341.9716720984,436401.7093379742,1464.2351,636.0838860764393,1500996.866382552,643137.6928270473,0.38221,100000,0,1107816,11571.571822511907,0,0.0,0,0.0,42055,438.7482242834461,0,0.0,42674,442.00718642934737,1101912,0,39608,0,0,9524,0,0,79,0.8251859279685803,0,0.0,1,0.0104453914932731,0,0.0,0.05002,0.1308704638811124,0.3010795681727309,0.01506,0.3598848368522073,0.6401151631477927,22.823037370285373,4.020344600876261,0.3041635502368486,0.2944402892046871,0.2021939665918723,0.1992021939665918,11.705012225919592,6.580198097113239,16.42128552355552,11562.45956929087,46.53369771856004,14.504834072342891,14.01305249378134,9.082500570187594,8.933310582248213,0.6045873846920967,0.8111769686706182,0.7237704918032787,0.594327990135635,0.1276595744680851,0.7654417513682564,0.9392712550607288,0.8940217391304348,0.7810945273631841,0.1342592592592592,0.5292825768667643,0.7190684133915575,0.6502347417840375,0.5327868852459017,0.1252144082332761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012158054711,0.0046954070197856,0.007084855866829,0.0093490234335304,0.0118325736610776,0.0140166447656592,0.0161342960877901,0.0181385515712928,0.020522941314818,0.0226534896820113,0.0246946498343776,0.0269692923898531,0.0291751537970907,0.0313263192605339,0.0334427447823125,0.0354901737808975,0.037647716798028,0.0397468485760232,0.0417975004678824,0.043918144497468,0.058322370481739,0.0727263212977498,0.0858989017444117,0.0990186488277428,0.1115984816533108,0.1266704728072401,0.1368106164274576,0.1481359322466698,0.1581746531819686,0.1669865437195089,0.1789482751195142,0.1909109594227669,0.2017658315935977,0.2109158894853656,0.2198400563212953,0.2288238811258498,0.2374581939799331,0.2451870156127148,0.2527996916938701,0.2602916785816414,0.2663224286110341,0.2713978695570921,0.2768074495993949,0.2808055169771563,0.2854403572858894,0.2893245972708015,0.2927332782824112,0.2971022792349101,0.3003303322754064,0.3020390936189295,0.299339138861596,0.2965965235821142,0.2943935765600788,0.291461210324633,0.2892284368079192,0.2858192617994213,0.2822522038611014,0.2823708604933014,0.2836059713687507,0.2845732379834205,0.2850711697239138,0.2867481759021889,0.2876520210160551,0.288102261553589,0.2878638559719251,0.2886168272987757,0.2902545392355272,0.2947600314712824,0.297752808988764,0.3022904405916971,0.304540269221994,0.307503861106673,0.3105382579099962,0.3141137938913855,0.320981892850476,0.3232514177693761,0.327856496834489,0.3279967980788473,0.323051948051948,0.331047619047619,0.0,1.9875668264256117,56.03065877274678,147.17577700076205,198.3618283882838,fqhc5_80Compliance_implementation_low_initial_treat_cost,50 -100000,95777,47651,453.6579763408752,5071,51.651231506520354,4055,41.711475615231215,1549,15.849316641782474,77.38153749659537,79.72210279188901,63.350937847410606,65.08232941637318,77.18162961340688,79.5251235237359,63.27438693398911,65.00939174723267,0.1999078831884873,196.97926815311465,0.0765509134214994,72.93766914051503,243.68762,170.65135425565396,254432.29585391065,178175.71468688094,485.40472,322.52105866675225,506210.0921933241,336144.5635870326,464.91412,227.18154283296855,480741.67075602704,233695.9371947064,2609.57359,1236.5525365942794,2686382.283846853,1252821.9787571963,923.70382,424.1867141321462,945915.0735562816,424373.2567653456,1500.66834,645.0833115877651,1535453.2298986188,645743.0703369455,0.37928,100000,0,1107671,11565.104356995938,0,0.0,0,0.0,41823,436.0337032899339,0,0.0,42145,435.438570846863,1107861,0,39772,0,0,9606,0,0,78,0.8143917642022614,0,0.0,2,0.0208818401077502,0,0.0,0.05071,0.1337006960556844,0.3054624334450798,0.01549,0.354351519728148,0.645648480271852,23.23345111710321,4.006264026210784,0.3154130702836005,0.2801479654747225,0.2041923551171393,0.2002466091245376,11.14504192916359,6.065868110937428,16.5165461701708,11497.5336282495,46.68276813252642,14.016210181802188,14.508311632731283,9.306146202216242,8.852100115776704,0.5898890258939581,0.8089788732394366,0.709147771696638,0.5676328502415459,0.1182266009852216,0.744955609362389,0.9074074074074074,0.8333333333333334,0.7289719626168224,0.1675675675675675,0.5216619318181818,0.7353846153846154,0.6616216216216216,0.511400651465798,0.1036682615629984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0043485312303606,0.0066352826589829,0.0088053380457633,0.0108485674197287,0.0133045593819029,0.0154727443225832,0.0177589075209993,0.0198348627603261,0.0219473264166001,0.0244399811448363,0.0265751062388372,0.0284289533209952,0.0304565391981219,0.0325325686701255,0.0344791957265222,0.0365916758076867,0.0386457404681442,0.0407334302929565,0.0430527356968087,0.0572293242890686,0.0711618712936525,0.0842462809397507,0.0977239770506273,0.1097458162964211,0.1251439985626565,0.1372476286365322,0.1485242206438991,0.1580042689434365,0.1676850184375268,0.1797844739420168,0.1910458739413081,0.2007695986782034,0.2100091807292122,0.2182742233565079,0.2273678383614724,0.2356870441822602,0.2432517510033839,0.2506237807920882,0.2569826649121803,0.2633751517604208,0.2695000642891375,0.2746413067906272,0.279870674170758,0.2838784054365633,0.2876990475252886,0.2916234747530255,0.2956515109156988,0.2996740985981067,0.3034399167358338,0.3002271902348528,0.296773927732685,0.293281199454282,0.2898893585101625,0.2877614597240766,0.2842875250064902,0.2807449106706404,0.2803854319777886,0.2818532163047722,0.2824226932225654,0.2824879812171579,0.2832333562788868,0.283885228125782,0.2861919835926702,0.2876794258373206,0.2896948941469489,0.2911901256935794,0.2962478184991274,0.2998957247132429,0.3052834493882528,0.3097676517031356,0.3138659223761125,0.3188668626102182,0.3244205423420694,0.3258426966292135,0.3304337604325849,0.3379664601903611,0.3425149700598802,0.3483360611020185,0.3570079335096335,0.0,2.484713019680504,53.628024744834434,150.89543053312306,203.5937384472325,fqhc5_80Compliance_implementation_low_initial_treat_cost,51 -100000,95871,47816,454.7047595206058,4931,50.33847566000146,3950,40.77353944362738,1476,15.082767468786182,77.37299817448195,79.67294129043421,63.35320242165369,65.05636115515432,77.18332657730757,79.48651278852032,63.2808771829508,64.98765282396867,0.1896715971743816,186.4285019138947,0.0723252387028878,68.7083311856469,244.88706,171.56291854029297,255433.92683919016,178951.84001449132,487.83087,324.7612239842629,508392.95511677145,338300.1783482627,464.62732,226.87955257635025,482161.1123280241,234719.54309639675,2518.95332,1185.9416051499002,2601036.3613605783,1210614.111827247,885.3237,404.09745844055885,913951.8206756996,412020.1327951108,1427.78088,614.5637029509918,1460485.77776387,614855.572302348,0.38246,100000,0,1113123,11610.633038145008,0,0.0,0,0.0,42085,438.49547829896426,0,0.0,42083,436.57623264595134,1097703,0,39428,0,0,9987,0,0,84,0.8553159975383589,0,0.0,1,0.0104306828968092,0,0.0,0.04931,0.1289285154003033,0.299330764550801,0.01476,0.3668215253581107,0.6331784746418893,22.971095917689134,3.9803264056229226,0.3037974683544304,0.2893670886075949,0.2131645569620253,0.1936708860759493,11.530812996944592,6.314004420527193,15.933716583370298,11562.647797543348,45.37386696842912,14.019696196121526,13.524385522492622,9.40833399213143,8.421451257683534,0.5855696202531645,0.8145231846019247,0.675,0.5760095011876485,0.1137254901960784,0.7477102414654455,0.9190871369294604,0.8294117647058824,0.736318407960199,0.1404494382022472,0.51473263004729,0.7382753403933434,0.6139534883720931,0.5257410296411856,0.1056218057921635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025217743568969,0.00501687494299,0.007283202986316,0.0094937351501736,0.011670699225342,0.0140065146579804,0.0163484961218187,0.0185020767637183,0.0207317945416832,0.0229909755049419,0.0250192100814507,0.0270245313798516,0.029309901854992,0.0310656826112466,0.0330305873135328,0.0350186917818121,0.0370075318655851,0.0391283172543858,0.0409877773970113,0.0431050627379986,0.0580065274287561,0.0716838387427114,0.085293162509559,0.0977108054184605,0.1102358887952822,0.1263018907784937,0.138061480751502,0.1480619166081946,0.1583576147631093,0.1676793004789918,0.1799143367555584,0.1915514576329813,0.2013390722142515,0.210402589166612,0.2202451692416039,0.2302972577858503,0.2394328488080231,0.24695982810795,0.2546902293505138,0.2615057013326006,0.2669457228093707,0.2722615357623252,0.2775713541913192,0.2816751293351217,0.286133831703114,0.28977048857368,0.2929752996821742,0.2957801991023864,0.2986750853948866,0.3019032168717603,0.298927595904143,0.2961755848013532,0.2940637983240617,0.2917533217793183,0.2882261295348319,0.2845395491020252,0.2812425932655996,0.2812269818146105,0.2823493371002604,0.2828895849647611,0.2835770780480525,0.2842836343603667,0.2857887494266294,0.2862602204052613,0.2878581824255004,0.2899495537446643,0.2902979157227005,0.2938603343227621,0.2967791411042945,0.3009933644823118,0.304839216038032,0.3084983757728177,0.311706102117061,0.3162618796198521,0.3171460590212925,0.3204381263108832,0.322463768115942,0.3293027005239822,0.3274773538292616,0.330188679245283,0.0,1.586480796220464,52.875226103808856,146.54474148675772,198.66959252099224,fqhc5_80Compliance_implementation_low_initial_treat_cost,52 -100000,95780,47701,453.9674253497599,4902,49.906034662768846,3911,40.14408018375444,1460,14.762998538316976,77.39816222968327,79.72835445944126,63.35848721039546,65.07990405396791,77.21306869493642,79.55079118659353,63.28717020092132,65.01477331380146,0.1850935347468407,177.56327284773477,0.0713170094741428,65.13074016645248,243.65858,170.71875105588478,254394.00709960327,178240.50016275293,484.12249,322.2392940596237,504745.4061390687,335729.74948801805,465.59672,227.32339599562104,482073.6688243892,234196.16931453132,2509.43429,1184.873683429827,2576828.210482355,1193908.387377142,873.71282,399.7560524195761,894019.095844644,399180.1236370594,1413.11378,603.7283991084254,1430873.146794738,591174.4149260017,0.37927,100000,0,1107539,11563.363959072874,0,0.0,0,0.0,41666,434.2764669033201,0,0.0,42175,436.291501357277,1106356,0,39715,0,0,9547,0,0,84,0.8770098141574442,0,0.0,1,0.0104405930256838,0,0.0,0.04902,0.1292482927729585,0.2978376172990616,0.0146,0.3682969946965232,0.6317030053034767,23.02851128472489,3.883587796827838,0.3165430836103298,0.2927639989772436,0.1948350805420608,0.1958578368703656,11.415768397194148,6.413735294870814,15.510434630237985,11467.574246257018,44.9434548901448,14.20034634222358,14.066120601473331,8.375249445961572,8.301738500486312,0.5988238302224494,0.8096069868995633,0.7172859450726979,0.5866141732283464,0.1044386422976501,0.7811725846407928,0.9330628803245437,0.8933717579250721,0.7635467980295566,0.125,0.5170370370370371,0.7162576687116564,0.6487093153759821,0.5223613595706619,0.0986622073578595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019748435316278,0.0040538349278417,0.0064927159842551,0.008652205703144,0.0109083515478066,0.013373501333279,0.0154684872879197,0.0174264375790719,0.0196467066480041,0.0217311233885819,0.0239117294511776,0.0263927512288226,0.028673024747184,0.0308051750223859,0.0330120109283983,0.0349293563579277,0.0372527518000496,0.0391335455572952,0.0413514299966744,0.0433949492319708,0.057745082694214,0.0719978245863576,0.0851322590453025,0.0974943243924997,0.1098752806975003,0.1253700101488498,0.1376644039032668,0.1478710611172007,0.157601845720023,0.1665522788203753,0.1782529082292115,0.1891014894054276,0.1990394645340751,0.2088886946641611,0.2175098088779962,0.227195273081349,0.2361540091210151,0.2437672195670508,0.2516786897146227,0.2583954476236275,0.2645851876683351,0.2696060673343227,0.2753957549513736,0.2801260016049634,0.2835666965954039,0.2878677873078769,0.2910440301864161,0.2947825645194066,0.2976104272266474,0.3001738992964983,0.2966936926034986,0.2937081182027903,0.2907707668293232,0.2877320419693301,0.2845980821593465,0.2815140147009485,0.2790836998849106,0.2799026255166892,0.2802974863425177,0.2812350109253699,0.2817819495660595,0.2834215132859981,0.2838735194321281,0.2839662166655582,0.2850790631316133,0.287469350883985,0.2897650629496403,0.2941705426356589,0.3013499982736595,0.3050013664935774,0.307308746237815,0.3114275282949982,0.3155235101990509,0.321072739531051,0.3232838589981447,0.3285815268614515,0.3339363787124981,0.3374097834803528,0.3326954620010935,0.3314543404735062,0.0,2.6097928353954063,52.37764795915732,142.02045102396852,196.21460031008837,fqhc5_80Compliance_implementation_low_initial_treat_cost,53 -100000,95877,47507,452.0896565391074,5049,51.461768724511614,4033,41.459369817578775,1564,15.947516088321496,77.3584022892406,79.64067866203857,63.35300198276878,65.04163354329913,77.1612788558495,79.44776641282226,63.27872912943494,64.97144116957789,0.1971234333910985,192.912249216306,0.0742728533338379,70.1923737212411,243.83304,170.8468585540373,254318.36624007844,178193.55899124642,484.19239,321.62772563964944,504397.592749043,334842.1578059903,466.49374,227.07799159503213,483055.84238138446,234105.35204131505,2612.30134,1226.180432460195,2686395.7153436174,1240667.4306248578,936.92386,420.0703302462469,962988.4226665416,423908.6331927854,1526.78724,645.6586581257503,1558025.136372644,642920.8424118195,0.3788,100000,0,1108332,11559.925738185384,0,0.0,0,0.0,41648,433.7536635480877,0,0.0,42205,436.7157921086392,1106548,0,39704,0,0,9481,0,0,89,0.917842652565266,0,0.0,0,0.0,0,0.0,0.05049,0.1332893347412883,0.3097643097643097,0.01564,0.3586088939566704,0.6413911060433295,23.20842531197765,4.095679384085227,0.3064716092239028,0.2846516241011654,0.1943962310934788,0.214480535581453,11.235363008177169,5.966706737611836,16.603866161389945,11500.692736706906,46.42335665736,14.20231582552221,14.121690763249946,8.72936495874254,9.369985109845306,0.5968261839821473,0.8266550522648084,0.7257281553398058,0.5854591836734694,0.1179190751445086,0.7561576354679803,0.9323770491803278,0.8611111111111112,0.73224043715847,0.1176470588235294,0.5278863232682061,0.7484848484848485,0.6700913242009132,0.540765391014975,0.1179941002949852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020957992892506,0.0043975641142556,0.0064914647381606,0.0088639340433957,0.0107847123399064,0.0131692771145645,0.0154753657443253,0.017522566168596,0.0197257588597449,0.0218362485815639,0.0239950044529978,0.0262143486908203,0.0283049872648097,0.0303762832513835,0.0325638911788953,0.0347729126444139,0.0367638692058631,0.0386887488599618,0.0407618572867661,0.0426871137560082,0.0574106314439706,0.0710882647943831,0.0842409517426273,0.0966796875,0.1091659820093113,0.1243371152099047,0.1359989826305359,0.1468599136556007,0.1571779272067456,0.1669668124517623,0.1793063347295653,0.1908661178837604,0.2009718658955516,0.2103761519037156,0.2184864710344903,0.2282862486029501,0.2365621375680257,0.2449098901593083,0.2519367095786309,0.2586457724778629,0.2647814315136648,0.271191793480168,0.276395713693683,0.2805587195012289,0.2846674525149169,0.2885587473801011,0.292195757256994,0.2955161918830466,0.298809585559417,0.3018631078224101,0.2987564166475795,0.2955521303534074,0.2934940233995523,0.2909487427605829,0.2890460203808788,0.2849269771286856,0.28132170720514,0.2814089313252617,0.2822736195271827,0.2833229454189298,0.2839789949729962,0.2837233140807033,0.2845377202700725,0.2858098316798573,0.2879994244328265,0.2898997487241924,0.2899699835759189,0.2947782144862437,0.2980893049803362,0.3034039870774564,0.3078524553066304,0.3128156565656566,0.3164541135283821,0.3203690993670403,0.3247451868629671,0.3280783470679565,0.3253980522491884,0.329221435793731,0.3296973002454322,0.3368580060422961,0.0,2.344455115280661,52.94413995665384,149.7653654407297,205.2010400400337,fqhc5_80Compliance_implementation_low_initial_treat_cost,54 -100000,95726,47955,457.8588889121033,4979,50.82213818607275,3979,40.89797965025176,1456,14.792219459707916,77.38965647392791,79.75565542609358,63.34469261111818,65.0935808041326,77.20601113148219,79.5777338570613,63.2746233908523,65.02849947481097,0.1836453424457289,177.92156903227863,0.0700692202658856,65.0813293216288,244.57466,171.2281649376167,255494.49470363327,178873.20575143295,486.36245,323.32610198886806,507408.2172032677,337093.0876907948,468.44997,228.1641471681889,485181.3613856215,235108.5405740804,2566.92847,1194.2212452546632,2639571.0151891857,1205629.4360372175,890.74434,401.7691682763561,912506.9782504232,401778.3659623858,1414.10228,601.5027396376963,1438280.1955581557,594700.563410964,0.38136,100000,0,1111703,11613.386122892422,0,0.0,0,0.0,41826,436.2346697866829,0,0.0,42392,438.6687002486263,1103623,0,39604,0,0,9772,0,0,82,0.8461650962121053,0,0.0,0,0.0,0,0.0,0.04979,0.1305590518145584,0.2924281984334204,0.01456,0.3595916795069337,0.6404083204930663,23.19416972887444,4.089624235581665,0.3068610203568735,0.2865041467705453,0.2033174164362905,0.2033174164362905,11.045362084211945,5.816507258139105,15.422169262769158,11507.033922515988,45.35704670914304,13.967332025103843,13.882416612482038,8.961934064215981,8.545364007341183,0.5858255843176677,0.8192982456140351,0.6904176904176904,0.5698393077873919,0.1149567367119901,0.7604433077578857,0.9238900634249472,0.8631284916201117,0.6881720430107527,0.1153846153846153,0.5128296507483963,0.7451274362818591,0.6187717265353418,0.5345104333868379,0.114854517611026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.0046430055857992,0.0068500796638894,0.0092854095129731,0.0114132259147364,0.0136959797971569,0.0158746342308907,0.0180582068374148,0.0198605773162155,0.0220998433869366,0.0240574837532544,0.0259426940568952,0.0282909277820611,0.0303248725737527,0.0322018339161019,0.0343430585268553,0.0363562937497411,0.0383976926109601,0.0401725392370855,0.0422002479915807,0.0565712674762198,0.0704229774851628,0.0837914970411717,0.0966638962241323,0.109152478004937,0.124657577712672,0.1359744517415891,0.1464481455861224,0.1562219659105472,0.1649506649506649,0.1769488386117183,0.188519003364672,0.199049607446554,0.2089503269975283,0.2184835114050241,0.2282104377290797,0.2360019180801356,0.2443675345251873,0.2523666458817527,0.2588622870934901,0.2653226365801216,0.2710373191877176,0.2768491063095842,0.2808260151707305,0.285942995755003,0.2894723890146668,0.2930291254857371,0.2964190897196499,0.2998837059051557,0.3035664915675974,0.3006029516430096,0.2977873555329838,0.2945166999073008,0.2912398980076926,0.288972709119148,0.285648959682951,0.2826148565670561,0.2835273403110633,0.2836897445014477,0.2840458663646659,0.2852798843008918,0.2854486740385556,0.2872893826034693,0.2874015748031496,0.2874126206666983,0.2885637611601383,0.2899645010424297,0.2956987572803438,0.3002995680646509,0.3045981544285827,0.3108542941309766,0.3153263001643429,0.3175417735778209,0.3212093997904505,0.3236914600550964,0.3240139211136891,0.3292974588938714,0.3339268051434224,0.3327052489905787,0.3347201210287443,0.0,2.5762411299008856,50.676104938383695,145.67099735279552,204.73796187157475,fqhc5_80Compliance_implementation_low_initial_treat_cost,55 -100000,95768,47939,455.4861749227299,4910,50.23598696850723,3936,40.58767020299056,1481,15.17208253278757,77.34687979821054,79.70584172251499,63.33382307926016,65.08143618621295,77.15692330641927,79.51844386815921,63.261663598428605,65.01245110010929,0.1899564917912641,187.3978543557797,0.0721594808315515,68.98508610366605,243.6808,170.72148441327454,254448.85556762177,178265.47219872457,487.04274,324.5075518320532,508053.59827917465,338336.52245432,466.39003,226.89345385652317,483682.6288530615,234417.4248779933,2558.43769,1197.409234336841,2635261.9246512405,1214465.978213393,906.21805,409.4984236167687,927300.7163144264,408816.5524744902,1444.07814,620.2074470552864,1479043.897752903,621602.9938752452,0.38123,100000,0,1107640,11565.857071255534,0,0.0,0,0.0,41990,437.922897001086,0,0.0,42195,437.3068248266644,1105554,0,39710,0,0,9712,0,0,85,0.8875616072174422,0,0.0,0,0.0,0,0.0,0.0491,0.1287936416336594,0.3016293279022403,0.01481,0.3522504892367906,0.6477495107632094,22.945495352585997,4.013091619107464,0.3241869918699187,0.2733739837398374,0.1971544715447154,0.2052845528455284,11.207056945846777,5.950931940338262,16.02781366741993,11521.172423804162,45.191360106216784,13.300783716889368,14.345614202225056,8.770174943693519,8.774787243408843,0.5835873983739838,0.8085501858736059,0.6927899686520376,0.5747422680412371,0.120049504950495,0.759417808219178,0.918859649122807,0.8656716417910447,0.7389162561576355,0.160919540229885,0.509393063583815,0.7274193548387097,0.6312433581296493,0.5165794066317626,0.1088328075709779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509383486684,0.0045734799010262,0.0069035532994923,0.0091364574123194,0.011322942947831,0.0136657094560192,0.0160260984809868,0.0181502654144548,0.0207315327840363,0.0227198263504935,0.024944380081405,0.027260686086269,0.0295037123876514,0.0314186822695619,0.033304435775177,0.0356024189796867,0.037497281680077,0.0396804813527672,0.0418507468892608,0.0441320420701864,0.0586485470941883,0.0726487232862956,0.0855246602918973,0.0980513747582611,0.1104353966631182,0.1260092150314917,0.1378162661776708,0.1479422052585134,0.1580867450344548,0.1668201876526284,0.1784826874052083,0.1896734314551859,0.1998544301047234,0.2092032847034157,0.2185127816410155,0.2289428555623167,0.2374098313134804,0.2443153079231625,0.2524391904156834,0.2584047084688315,0.2646221831474712,0.2696702808285671,0.2746501366330309,0.2798131065053312,0.2843033766485883,0.2877873015482617,0.2904701778950131,0.2956041163765722,0.2982016109222077,0.3007307920205412,0.298794824597939,0.2964555570820167,0.2935100342908538,0.2905991527133347,0.288565248311011,0.2848982833404606,0.2820970211691161,0.2822045696503152,0.2826890641770448,0.2833182149654056,0.2841278136548583,0.2843915604499517,0.2847451258714983,0.2845802207603969,0.2868995947339392,0.2887378944079975,0.2907482722334404,0.2965233245316233,0.3005426220899702,0.3056281168368558,0.308216378253168,0.3101209017475318,0.3142892939923573,0.3157378779880853,0.3162274618585298,0.3170560747663551,0.3176470588235294,0.3197908286403861,0.3263621353880022,0.3373493975903614,0.0,1.8584423397659984,51.19474861509316,147.26743727182298,201.23953181944984,fqhc5_80Compliance_implementation_low_initial_treat_cost,56 -100000,95750,47891,457.73368146214096,4952,50.49608355091384,3906,40.16710182767624,1451,14.715404699738905,77.36211040614715,79.72404738908905,63.32787542470121,65.07552730025397,77.17873234255721,79.54457225960383,63.258596378852175,65.01019403786445,0.1833780635899415,179.47512948522615,0.0692790458490364,65.33326238951531,244.61822,171.32923592788816,255475.9477806789,178933.92786202417,485.60228,323.1653824148908,506530.412532637,336883.5221043246,463.98406,226.04084655729895,480412.1253263708,232901.50905672324,2537.36594,1179.2317942057596,2610436.5326370755,1192149.9203282995,894.23651,405.1909039076521,916381.35770235,405636.4656771823,1416.19072,600.7569699951397,1438837.2010443865,593540.4749824249,0.38099,100000,0,1111901,11612.543080939948,0,0.0,0,0.0,41819,436.0939947780679,0,0.0,41949,433.98433420365535,1101910,0,39517,0,0,9574,0,0,93,0.9712793733681462,0,0.0,2,0.02088772845953,0,0.0,0.04952,0.1299771647549804,0.2930129240710823,0.01451,0.3638470451911935,0.6361529548088065,23.19294156384132,4.034725681135713,0.2980030721966206,0.2836661546338965,0.2163338453661034,0.2019969278033794,10.8875738622204,5.683638798542149,15.388483411283833,11471.233847217063,44.57246784975678,13.67155052255596,13.126455744439,9.175706481210913,8.598755101550898,0.5780849974398361,0.796028880866426,0.6950171821305842,0.5775147928994083,0.100126742712294,0.7497781721384206,0.8930817610062893,0.8646153846153846,0.7134146341463414,0.1304347826086956,0.5084562792371357,0.722662440570523,0.6293206197854588,0.5447870778267254,0.0923566878980891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022187775447554,0.0046849331737887,0.0069434575170033,0.009144761575744,0.0112100096638014,0.0132093534851509,0.0152142434686843,0.0171934983255738,0.0191000092023598,0.0211046940280167,0.0229305111165805,0.0250939868931939,0.0273865495210954,0.0296369575746334,0.0316954103064268,0.0337658309640734,0.0357242707589077,0.03773447875166,0.0395617645835932,0.0415803014363536,0.0560629625377075,0.0700910137043623,0.0832546823549151,0.0960644496329484,0.1088937642393047,0.1246972469301632,0.1361418174874286,0.1475429033769109,0.1574937761109508,0.1665933924531134,0.1779613553626435,0.1898206768178522,0.2006157059405832,0.2101135394106451,0.2185171734513079,0.2279595861121574,0.2357952325127002,0.2430085270096969,0.2502977709715841,0.2563861822595235,0.2617705934762737,0.2683591374713504,0.273832759620048,0.2787843926756783,0.2835643372090201,0.2880704563650921,0.2918475337444802,0.2960717009916094,0.2997801345059493,0.3030702332323099,0.2998600796469702,0.297383105637868,0.2947213045617488,0.2922591065093877,0.2894627670607758,0.2859805089664864,0.2837338554331007,0.2840251202041016,0.2839002498852567,0.2838914621377487,0.2842489342293873,0.2849384362010823,0.2855687464914652,0.2879174525685121,0.288828987858114,0.290092511240891,0.2909398814563929,0.2948606271777003,0.2994728445585073,0.3030433590536994,0.3079407806191117,0.3119716104790732,0.3150650960942343,0.3163782816229117,0.3250620347394541,0.3269320297951583,0.3331338818249813,0.3398782642843118,0.3494938732019179,0.3539453717754173,0.0,2.393331741872675,48.63287781265333,147.75125254787258,200.5811509148493,fqhc5_80Compliance_implementation_low_initial_treat_cost,57 -100000,95769,47849,455.75290542868777,4886,49.82823251782936,3866,39.87720452338439,1454,14.869112134406748,77.32840490063373,79.68782331651018,63.31625382636724,65.06419818834858,77.1343475105923,79.49624157240943,63.2416144182057,64.99292539426916,0.1940573900414222,191.5817441007448,0.0746394081615378,71.27279407941955,241.15212,169.02870348731312,251806.03326755005,176496.26025886572,483.08869,322.0360450098903,503962.15894496127,335794.3332496845,464.78194,227.18911465798217,482108.83480040514,234816.26594344384,2520.777,1189.9612311003511,2601798.2123651705,1212188.0369434287,890.22013,407.76850059911976,918316.4489552988,414550.4814701197,1414.2984,613.6262916434761,1447821.883908154,615993.9991682743,0.38065,100000,0,1096146,11445.728784888635,0,0.0,0,0.0,41661,434.5247418266871,0,0.0,42043,435.7777568941933,1115346,0,40013,0,0,9508,0,0,78,0.8144597938790213,0,0.0,1,0.0104417922292182,0,0.0,0.04886,0.1283593852620517,0.2975849365534179,0.01454,0.3597716984845502,0.6402283015154497,23.128599618480376,3.9713739892834647,0.3060010346611485,0.276513191929643,0.2170201758923952,0.2004655975168132,11.04843208768491,6.039820009157857,15.697743764609502,11530.225766330588,44.54345528934295,13.289283845957726,13.410682053833208,9.374480018398229,8.46900937115379,0.5851008794619762,0.8297474275023387,0.68385460693153,0.567342073897497,0.1161290322580645,0.7412060301507538,0.9290322580645162,0.8111455108359134,0.7192982456140351,0.1516853932584269,0.5153443113772455,0.7533112582781457,0.6360465116279069,0.5106382978723404,0.1055276381909547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.0047566887766486,0.007229013523941,0.0095530396959287,0.0114850155642815,0.0135165417209908,0.0157346222874857,0.0179178535330331,0.0200783094963043,0.0223250386414584,0.0245200045103687,0.0266554404411085,0.0288881804251468,0.0309831590873976,0.0329604557087426,0.0348965816648233,0.0368208026665838,0.038912684996007,0.0408508957891673,0.0429846580079365,0.057764370635575,0.0719156591222859,0.084847595180925,0.0983454916223432,0.1104355248321864,0.1260940340788973,0.1374651352698503,0.1473317865429234,0.1585272063064795,0.1682841302692674,0.1793584799982766,0.1896296135992295,0.2003133636541683,0.2091522568931762,0.2183987759100866,0.227971067468625,0.2370233139515418,0.2456019899377581,0.2533549808124616,0.2586973461062474,0.2648328376517422,0.2707473126454797,0.2761327445153499,0.2808349829044448,0.2858306089957828,0.2894581135052512,0.2933117745857461,0.2969165913114357,0.2999663002903359,0.3024504823108694,0.2999784488564424,0.2971853849116821,0.2950697281307226,0.2927058076434591,0.289712410731519,0.2857427106451366,0.2826864066306033,0.2820125703595517,0.2824904051172708,0.282388176777851,0.2826671647366455,0.2827970540742783,0.2832094292080548,0.2830083689458689,0.2837760229720029,0.2852368986866305,0.2881207179661401,0.2935490911358464,0.2978139227748236,0.3016472068247042,0.3051839841462865,0.30897583429229,0.3118965090368903,0.3138959676210463,0.3188432662897395,0.3244030285381479,0.330326266726808,0.3370176848874598,0.3451665756417258,0.355324074074074,0.0,1.9544382323325535,52.24100979579235,143.91360012238496,191.5730205173396,fqhc5_80Compliance_implementation_low_initial_treat_cost,58 -100000,95735,48037,457.4189168015877,4929,50.29508539196741,3891,40.12116780696715,1507,15.375776884107172,77.31464774318667,79.68022270248244,63.30648041847581,65.05577695654526,77.11985144999555,79.48879724046203,63.232943427028175,64.98621403964769,0.1947962931911178,191.4254620204048,0.0735369914476322,69.5629168975671,244.25258,171.16767086199118,255134.0471092077,178793.20087950196,487.26204,323.6664263561989,508443.2548179872,337559.4467605357,463.81292,225.9748402154695,481325.70115422783,233628.4141348637,2529.85528,1188.878031884795,2608113.720165039,1207552.9060390447,911.02165,412.91250572072187,938885.1621663969,418656.6188684429,1462.49208,621.039362604708,1493231.984122839,619025.1110044433,0.38305,100000,0,1110239,11597.002141327624,0,0.0,0,0.0,41953,437.6664751658223,0,0.0,41992,435.4624745390923,1099706,0,39426,0,0,9860,0,0,75,0.7834125450462214,0,0.0,2,0.0208910012012325,0,0.0,0.04929,0.128677718313536,0.3057415297220531,0.01507,0.363883495145631,0.6361165048543689,23.44382506565569,4.111525421276805,0.3014649190439475,0.2832176818298638,0.2076586995630943,0.2076586995630943,11.417328379088312,6.187044528946127,16.039337707969107,11542.018963333414,44.63786504028533,13.50682091470009,13.307283666403062,9.043270664368706,8.78048979481347,0.5803135440760729,0.7894736842105263,0.6973572037510657,0.594059405940594,0.1113861386138613,0.7536606373815676,0.92,0.8539682539682539,0.776255707762557,0.1242937853107344,0.5065934065934066,0.6993865030674846,0.6398601398601399,0.5263157894736842,0.1077654516640253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109811072278,0.0047550972817876,0.0069327432550396,0.0090031500863733,0.0110382013327229,0.0133664778515831,0.0154966792830107,0.0176941455146923,0.0198209065074724,0.0218869006183203,0.024207439609564,0.0262652606503681,0.0285446840026333,0.0308500772797527,0.0327735169338439,0.0349223087181713,0.0370723220942755,0.0390171011124024,0.0413841866655575,0.0433926487747957,0.0578027439597385,0.0717739909562887,0.0848947732852137,0.0979513713612653,0.1110302646841716,0.12658281410331,0.138076335229685,0.1484454855195911,0.1585822092053787,0.1675000536515226,0.1796497584541062,0.1910829405709951,0.201612288250994,0.2113730260490296,0.2206566558620537,0.2295598880845583,0.2376462429814554,0.2456583517524471,0.25262702997771,0.2592554315373662,0.2653032832498608,0.2713671458531042,0.2765069808234764,0.280451218048722,0.2843025234599115,0.2885485641006671,0.2923140433836223,0.296652299398609,0.3002753752472559,0.3038543079495924,0.3015358980905414,0.2978405019151302,0.2953913556323195,0.2922735589459884,0.2892180850275072,0.2854523227383863,0.2812811073014268,0.2814809958533427,0.2829107773098498,0.2833268073897412,0.283488398161641,0.2840602540120114,0.2850685331000291,0.2850155624722099,0.2856288714036304,0.2872356965174129,0.2879845621204381,0.291976504405424,0.2970583115752828,0.3015966883500887,0.3066582175349658,0.3095803642121932,0.3140739810337248,0.3179744525547445,0.324765478424015,0.3211756373937677,0.3234172387490465,0.3248212461695607,0.3179444902445726,0.312043093497499,0.0,2.0783794806628166,50.70127320415087,144.38247934786952,198.54110875091217,fqhc5_80Compliance_implementation_low_initial_treat_cost,59 -100000,95825,47757,454.3386381424472,4976,50.83224628228542,3928,40.52178450300026,1499,15.350900078267674,77.3504688262772,79.68227925001175,63.33176974345843,65.05991062060171,77.15368156122,79.48678705322259,63.25724411209,64.98752594926788,0.1967872650571962,195.49219678916077,0.0745256313684308,72.38467133383608,243.35828,170.5193118974108,253960.699191234,177948.23010635088,488.56768,324.43920530104384,509411.1035742238,338132.5833759916,460.39813,224.5835436738719,477462.79154709104,232045.20573955053,2555.37489,1204.4505584553644,2637504.701278372,1227782.338300407,917.15055,422.49799301011785,940151.1818418992,424120.9969848323,1465.22602,633.8767461693824,1501329.548656405,637597.1244749655,0.38166,100000,0,1106174,11543.668145056092,0,0.0,0,0.0,42034,438.1737542394991,0,0.0,41615,431.2340203495956,1107108,0,39726,0,0,9787,0,0,92,0.96008348552048,0,0.0,1,0.0104356900600052,0,0.0,0.04976,0.1303778231934182,0.3012459807073955,0.01499,0.3630560928433269,0.6369439071566732,23.328200156599884,4.151663777707959,0.3057535641547861,0.2828411405295316,0.1975560081466395,0.2138492871690427,11.205675529458889,5.900635517644634,16.164111079961824,11560.723702255948,44.89266801492229,13.65904214492889,13.427913029472514,8.570528511305058,9.23518432921583,0.5819755600814664,0.8028802880288028,0.7002497918401333,0.5747422680412371,0.1273809523809523,0.7422594142259414,0.897119341563786,0.8689024390243902,0.6974358974358974,0.1612903225806451,0.5118916941090377,0.7296,0.6368843069873997,0.5335628227194492,0.1177370030581039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387908503353,0.0045019924358415,0.0068608545620623,0.0090934029647541,0.0114225847793803,0.0135564563769326,0.0155320993320075,0.017788579364431,0.0198151404850517,0.0220911901398358,0.0242711975636516,0.0265441289726343,0.0289075595684947,0.0308444902162718,0.0326822325811641,0.0347264555457973,0.037037037037037,0.0391843677397942,0.0411310519697804,0.0432216358015052,0.0576122672508214,0.0718228578597415,0.0852999119755208,0.0982580007985038,0.1105070746020207,0.1266208033478109,0.1382312088471366,0.1487001106288826,0.1583234581344948,0.1679222435354758,0.1794330973032305,0.1904797941577115,0.2004432325558657,0.2103577557467181,0.2186248624862486,0.2270370288297471,0.2359210731903305,0.2437122311873333,0.2518708622432177,0.2586645286908716,0.264177360193467,0.2707064092519616,0.2766118537797232,0.2817014446227929,0.2864761765920742,0.2900035758763979,0.2942863224853182,0.2978582524766343,0.301429829560172,0.3043610253161215,0.3009635469307998,0.2977938138650949,0.2959121845364747,0.2931988614197575,0.2903029403029403,0.286442234123948,0.2827080992990839,0.2826186804894852,0.2831485587583148,0.2846855839155853,0.2850529223991487,0.2870215487552888,0.2884402827886801,0.2882038726908524,0.2900213127708997,0.2927917412393329,0.2934465675866949,0.2986546805256422,0.3029829496128068,0.3072471755304491,0.3139796561346656,0.3178505897771952,0.321255438160348,0.3251819068336959,0.3270819793891004,0.3296395660795521,0.3301673450927182,0.3367834394904458,0.3424657534246575,0.3403693931398417,0.0,1.8195540240536423,52.21782702040747,139.9862707680463,202.8522976171353,fqhc5_80Compliance_implementation_low_initial_treat_cost,60 -100000,95727,47834,456.736343978188,4843,49.557596080520646,3837,39.60220209554253,1508,15.41884734714344,77.30949638025908,79.66900318921054,63.31695901961641,65.05925046375384,77.11842382363126,79.48078187434888,63.24434150896211,64.9901963809777,0.1910725566278159,188.22131486166427,0.0726175106543038,69.0540827761481,243.87792,170.81112110345023,254763.98508257855,178435.67760762403,486.29239,323.57853682361616,507530.6548831573,337553.685818647,465.21612,226.62616912258383,483142.35273224895,234589.94824778909,2480.33314,1163.3935849317716,2559799.252039654,1184074.9996675665,894.69023,403.917762273396,919643.308575428,406964.0564035174,1464.92656,622.2761849075632,1498399.699144442,621983.1057420778,0.38207,100000,0,1108536,11580.181140117207,0,0.0,0,0.0,41853,436.7210922728175,0,0.0,42130,437.2434109498888,1101349,0,39587,0,0,9856,0,0,84,0.8774953774797078,0,0.0,0,0.0,0,0.0,0.04843,0.1267568770120658,0.311377245508982,0.01508,0.3787818471337579,0.621218152866242,23.36974737705078,4.062257429649141,0.3070106854313265,0.2827729997393797,0.2038050560333593,0.2064112587959343,11.32713191589101,6.116719380574331,16.042597863575885,11476.198779943814,44.06774185973052,13.29136132270625,13.544394799020068,8.659469413376907,8.57251632462728,0.5853531404743288,0.7963133640552995,0.7088285229202037,0.5664961636828645,0.1313131313131313,0.7449956483899043,0.8852813852813853,0.8514285714285714,0.7100591715976331,0.1726190476190476,0.5171130952380952,0.7303370786516854,0.6485507246376812,0.5269168026101142,0.1201923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204737646975,0.0044805774065363,0.0068074831588345,0.0087551799788738,0.0106846947593147,0.0129266033568455,0.0151353004127809,0.0174242346912735,0.0196537345161685,0.0214919507527299,0.0235344765731506,0.0256383929029807,0.0279080289568937,0.0300717809291356,0.0321053608630185,0.0340751761618415,0.036048437176568,0.038009997718363,0.0400349214267897,0.04212675528147,0.0563492063492063,0.0702630284380527,0.0828718271449549,0.0955235180920533,0.1077917558604253,0.123351418811012,0.134820253809261,0.1463427616381191,0.1564526294424919,0.1656354882638673,0.1776087565447846,0.1890548879506333,0.2003634662052604,0.2097729138166894,0.2188838366600975,0.2284960539150483,0.2372101335954604,0.2446889995269098,0.2514994547437295,0.2580870721474587,0.264436212086131,0.2702629978005522,0.2764944767407442,0.2815749391348149,0.2860162799173855,0.2899535216303182,0.2933546797413415,0.2963043063418357,0.3001489347924626,0.3022709268550304,0.2994301572119465,0.2959192097080432,0.2935647958968,0.2912136307847809,0.2894381154663062,0.2850275566442131,0.2801026388316913,0.2799356733782963,0.281367976904286,0.2817857142857143,0.2829209821512183,0.284761923601907,0.285645472061657,0.2853696132966959,0.2860819782545944,0.2864645624252509,0.2867810522715613,0.2924758802155118,0.2961578763534754,0.3003781314006617,0.305440086752214,0.3122066965462694,0.3161677395162802,0.3234470757357948,0.3263875911044664,0.3280112702512326,0.3296352583586626,0.335029513535518,0.3423719528896193,0.3416220351951033,0.0,1.8653707612777009,50.32942551598084,142.23583064067674,196.0938540450697,fqhc5_80Compliance_implementation_low_initial_treat_cost,61 -100000,95731,47673,454.1162214956493,4952,50.43298409083787,3907,40.20641171616301,1383,14.039339398940784,77.40440741590693,79.76338652116175,63.3594678928421,65.10005901954071,77.23036302508025,79.59273955781988,63.29353137846101,65.0376472454827,0.1740443908266797,170.64696334186635,0.0659365143810859,62.41177405800613,243.24102,170.29972956853476,254087.80854686568,177893.82206820836,487.1086,324.51643453408514,508222.8118373359,338381.74756180577,468.02444,228.80882207268112,485283.2520291233,236162.22874226852,2499.38878,1177.8260944567323,2572665.0510284025,1192286.3318621663,879.72215,406.9686095756576,900848.9517502168,407061.7623774791,1341.7413,574.160516844391,1364022.166278426,569395.228125335,0.38042,100000,0,1105641,11549.44584303935,0,0.0,0,0.0,41910,437.1520197219292,0,0.0,42432,439.60681492933327,1109129,0,39762,0,0,9620,0,0,79,0.8252290271698823,0,0.0,0,0.0,0,0.0,0.04952,0.130171915251564,0.279281098546042,0.01383,0.3550203923091862,0.6449796076908137,23.35279915664452,3.9580445002269182,0.3191707192219093,0.2935756334783722,0.1963143076529306,0.1909393396467878,11.40574417390984,6.185002295066171,14.80421489341368,11494.440262527334,44.78991585481577,14.2417142391579,14.016469992425275,8.400183842280136,8.13154778095246,0.5909905298182749,0.8073234524847428,0.6888532477947072,0.5671447196870926,0.1193029490616622,0.7792313982011447,0.9252873563218392,0.8418079096045198,0.7554347826086957,0.2024539877300613,0.5052160953800298,0.7088,0.6282194848824189,0.5077186963979416,0.0960548885077186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400862636305,0.0046110970357233,0.0067969241382108,0.0092012390189407,0.0113062133336044,0.0133550488599348,0.01548025477707,0.0177647623031948,0.0196991989537354,0.0219186492709132,0.0242182615736233,0.0264489444028204,0.0284462995137296,0.0305183903428812,0.0324607653971955,0.0342991823190712,0.0364110848763514,0.0385473179738799,0.0408937386334112,0.0430792946494599,0.0578924838955534,0.0720400175809456,0.0852503382949932,0.0989990747750021,0.1110794885579061,0.1265173624328553,0.1376010524305629,0.1485270789638982,0.1577637229973718,0.1670151734491448,0.1793237131165194,0.1910950010820168,0.2017575342316769,0.2112369623685303,0.2201077989220107,0.2300453891287501,0.2390831520829847,0.2460267505900865,0.252938975864688,0.2594185820357637,0.2651376040836596,0.2699873984878185,0.2749156302362353,0.279819471308833,0.283294003751437,0.2871487669248616,0.2910449623234692,0.2944085203499429,0.298063650554072,0.3004073052161345,0.2982496113225754,0.2956301369863013,0.2923734753960465,0.2889572580761102,0.2857185062632947,0.2819970157434757,0.2783367184670854,0.2781566068515497,0.2788329344671317,0.2790297700313835,0.2792031279091417,0.2800448386398946,0.2814022232399351,0.2822498335921899,0.2836258704569303,0.2853780295388117,0.2864671401194905,0.2918661774765251,0.2973179278997953,0.30202816680397,0.3063544849901132,0.3112322448765658,0.3172349659020458,0.3175862843452871,0.320754716981132,0.3266535387466697,0.3325812274368231,0.3374208860759494,0.3418478260869565,0.3498069498069498,0.0,2.3058682743029344,53.22973415909762,137.6499813928841,197.8318395707038,fqhc5_80Compliance_implementation_low_initial_treat_cost,62 -100000,95740,47353,450.9818257781492,4939,50.3029036975141,3952,40.60998537706288,1496,15.197409651138502,77.33232137485312,79.69648739628522,63.31916690730778,65.07055529517348,77.13916113623641,79.50949904844755,63.24498307209129,65.00129364644563,0.1931602386167128,186.98834783766927,0.0741838352164947,69.26164872784568,244.16766,170.95111789252792,255030.87528723627,178556.84901191358,481.72081,320.79557386663555,502473.6996030917,334393.7012918385,461.46609,225.73605240248963,477402.412784625,232301.09944629003,2546.73434,1203.8706313997309,2618259.860037602,1216286.324997318,897.25582,409.18949465870537,923552.9245874244,414296.21097772,1452.70138,626.7448824048637,1477544.0568205556,621476.6647304235,0.37879,100000,0,1109853,11592.312513056197,0,0.0,0,0.0,41453,432.23313139753503,0,0.0,41814,432.23313139753503,1106085,0,39642,0,0,9569,0,0,86,0.898266137455609,0,0.0,0,0.0,0,0.0,0.04939,0.130388869822329,0.3028953229398664,0.01496,0.3835563312003102,0.6164436687996897,23.005674519915047,4.052879962447552,0.2990890688259109,0.2884615384615384,0.2125506072874494,0.1998987854251012,11.538538062659509,6.371407743864879,16.0238200439876,11451.7090734477,45.28166259206579,13.986411758282252,13.330964682163923,9.28587603797514,8.678410113644484,0.5812246963562753,0.8096491228070175,0.6996615905245347,0.5392857142857143,0.1189873417721519,0.7443419949706622,0.9188034188034188,0.8674698795180723,0.714975845410628,0.1182795698924731,0.5106922798115259,0.7336309523809523,0.6341176470588236,0.4818325434439178,0.119205298013245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025842150066885,0.0047266936473643,0.0068434733165461,0.0091775754126351,0.0115467567347603,0.0135899186031112,0.0159194745859508,0.0182339789073905,0.0201421195235417,0.0222972972972973,0.0243369862732836,0.0264460094860686,0.0283396230295427,0.0303208198156444,0.0322720425891917,0.0343754844710867,0.0365304368534951,0.0387484308701019,0.04068758379148,0.042755517596942,0.057406827435014,0.0715481521784623,0.084235368156073,0.0970347003154574,0.1083754230943619,0.1236870220125453,0.1351167800333202,0.1459016393442622,0.1553825285441165,0.1646238807570639,0.1761867318691498,0.1872084843893728,0.1982592612740031,0.2081555861827569,0.2167994541773043,0.2263315247480899,0.2345045356660678,0.2426588060574694,0.2510382389651651,0.2582651016318351,0.2634782508071328,0.2693553858210614,0.274924578527063,0.2785585067510093,0.2832477324882526,0.2881938456231984,0.2920392720905509,0.2951853169962886,0.2984333156526126,0.3005785679454907,0.297738456987657,0.2950657487942619,0.2931456376216459,0.2906406781615824,0.2891468042215107,0.286133260012831,0.282676742127229,0.282913577822508,0.2822422912733643,0.2838124054462935,0.2844131069050647,0.2845590990671163,0.2852098698368259,0.285433905033789,0.287037037037037,0.2874837704492339,0.2881091949140543,0.2909734624181471,0.2952570411475238,0.2976214034115645,0.3010543463505136,0.3043961864406779,0.3103426595410248,0.3144220572640509,0.3172951885565669,0.318869241507678,0.321599045346062,0.3245804540967423,0.3312751677852349,0.3285498489425982,0.0,2.6280862460736443,51.3504404772391,143.6288678113333,203.28077919162905,fqhc5_80Compliance_implementation_low_initial_treat_cost,63 -100000,95723,47890,456.9121318805303,5027,51.24160337640902,3999,41.170878472258494,1522,15.429938468288707,77.41699606751023,79.76951102932554,63.36600846061516,65.10037650767022,77.21216819307452,79.57195090761721,63.28811853605024,65.02858964492518,0.2048278744357077,197.56012170833517,0.0778899245649284,71.78686274504287,244.23168,171.1247813964165,255144.19731934852,178770.80889275984,489.77078,326.0255864811447,511057.4783489861,339995.98474885325,470.83302,229.6215955158389,488514.4009276767,237297.6489199598,2581.41221,1221.2260328820964,2657104.739717727,1236413.2168772663,917.89375,426.2427167589712,943188.7947515228,429668.0763937034,1478.59404,640.8209263203817,1500566.3215737075,629976.1162361532,0.38054,100000,0,1110144,11597.463514515845,0,0.0,0,0.0,42170,439.9047250921931,0,0.0,42549,441.2001295404448,1101032,0,39498,0,0,9701,0,0,95,0.9820001462553408,0,0.0,0,0.0,0,0.0,0.05027,0.1321017501445314,0.3027650686294012,0.01522,0.3581804281345566,0.6418195718654435,22.995535771806207,4.066343053829796,0.3163290822705676,0.2835708927231808,0.1997999499874968,0.2003000750187547,11.584403649813218,6.336687520757875,16.274659556533173,11495.531060540694,45.8535724708401,13.995322055871924,14.29177605273352,8.760456449653569,8.806017912581092,0.5863965991497875,0.8156966490299824,0.6877470355731226,0.5619524405506884,0.1260923845193508,0.7463768115942029,0.9191919191919192,0.8708791208791209,0.6538461538461539,0.1791044776119403,0.5143271672107363,0.7355242566510172,0.6137624861265261,0.5348460291734197,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0043157158921678,0.0066638266796494,0.0087734440845256,0.0109402960793883,0.0133146033103279,0.0151159946181758,0.0174525413349663,0.0197334804913442,0.0216374927107737,0.0238041562487191,0.0259344403620763,0.0282383659371498,0.0303897842541578,0.0325159639766033,0.0346078330060969,0.0366405416878047,0.0386047524711397,0.0405649787977051,0.0424020169608067,0.0571073543078513,0.0704636537716994,0.0841000891779887,0.0973821769265558,0.1098664641478387,0.125793281435099,0.1366437883883013,0.1484730102296073,0.1583294157869994,0.1677444955653507,0.1797329312944217,0.1905405990304709,0.2016674275527729,0.2101899695218536,0.2187805601643793,0.2271510135434186,0.2359052098892034,0.2436754739882444,0.2512839699329954,0.2586358799501127,0.2644617589938037,0.2697116283417461,0.2754553298112493,0.2805648635710866,0.2845186254412246,0.2883360823219517,0.292682317370282,0.2961132986155214,0.3000245519273263,0.3028487139301189,0.3003076427045689,0.2959283097064595,0.29262361903691,0.2902429874177537,0.2887396004804912,0.284762748632711,0.2806868170852845,0.2807739407298555,0.2807109873692788,0.2807427882911616,0.2820961023504909,0.2829896503057864,0.2852656100503348,0.2856889676561808,0.2875474038209268,0.2892096006621146,0.2894751708942997,0.293850367235155,0.2988150258887306,0.3029255841350873,0.305323262296556,0.3097888877218779,0.3131181190520619,0.3171026765461969,0.3208422224283461,0.324610374505699,0.3290303212248574,0.3322141023108829,0.3393810032017075,0.3465530022238695,0.0,2.3520329289974344,53.8955342673042,144.18706146500574,200.63417320847097,fqhc5_80Compliance_implementation_low_initial_treat_cost,64 -100000,95698,48206,458.8810633451065,4988,50.99375117557316,3973,40.96219356726369,1501,15.277226274321304,77.3508434030137,79.74173564960338,63.31502979323547,65.0829395859471,77.15976282582047,79.55465972947357,63.24279344652994,65.01489484373431,0.1910805771932331,187.07592012981425,0.0722363467055231,68.04474221279122,243.84404,170.81365196117702,254805.78486488748,178492.39478482,489.02759,325.3195932107964,510475.2241426153,339407.9115663823,473.45717,231.06331997913617,491365.1173483249,238838.0143364685,2592.41393,1220.2618368375845,2674659.15693118,1240823.451731055,922.46093,420.62779260666514,949602.7398691718,425210.2370025121,1456.0952,620.8467193707505,1483870.425714226,617204.5532322736,0.384,100000,0,1108382,11582.081130222155,0,0.0,0,0.0,42060,438.9433425985914,0,0.0,42761,443.4575435223307,1101052,0,39513,0,0,9560,0,0,103,1.076302535058204,0,0.0,0,0.0,0,0.0,0.04988,0.1298958333333333,0.3009222133119487,0.01501,0.3590830283182431,0.6409169716817569,23.365354052458247,4.085130660210767,0.3171406997231311,0.2791341555499622,0.198338786810974,0.2053863579159325,11.703520759851004,6.519106549812101,15.961001392118856,11644.611683775734,45.5547405119228,13.593413589965444,14.29744067324669,8.790767337132163,8.873118911578496,0.5889755852001006,0.8088367899008115,0.7023809523809523,0.5977157360406091,0.1066176470588235,0.7576530612244898,0.91220556745182,0.8771428571428571,0.7311827956989247,0.1271676300578034,0.518055058991777,0.7336448598130841,0.6351648351648351,0.5564784053156147,0.1010886469673405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020867733014577,0.004360568293598,0.0069638307159751,0.009218229124319,0.0116279069767441,0.0139259591287871,0.0161380815881014,0.018373266335764,0.0203822828565876,0.0225517707543884,0.0250230745564557,0.0271155801604338,0.0293146542413676,0.03142418528936,0.0338503772046606,0.0358715653234643,0.0382081140441755,0.0403657726480112,0.0421685493769373,0.0439786100716124,0.0584911375481768,0.0732825866166877,0.0864184572106351,0.0992688443532691,0.1109399888184474,0.1264375112408882,0.1387677121477471,0.1491412081651776,0.1593219252022787,0.168460473650889,0.1802886429041054,0.192394293013488,0.2028942930199662,0.2119398084815321,0.2208642994770162,0.2302284320248392,0.2384435015631978,0.2462816803089498,0.2536059057353776,0.260041265474553,0.2669290882778581,0.2724728967148243,0.2777540867093105,0.2825085754035837,0.2864781441018848,0.2914202641435048,0.2949575524186994,0.2989765431313966,0.3031886006878895,0.3074326996598729,0.3046181172291297,0.3012038258575198,0.2990161630358398,0.2956985373585993,0.2924866096528867,0.2883791162698473,0.2845882204565519,0.2844023204510172,0.2851552530837941,0.2860543190578539,0.2868646200301962,0.2872561717492837,0.2870262632978723,0.2886513340282552,0.2897002360909069,0.291577287881529,0.292987539028438,0.298413880870348,0.302355386214063,0.3068669527896995,0.3109480560153908,0.3145549738219895,0.3170988956446209,0.3219765342960289,0.3279739776951673,0.3344697860333882,0.3307169811320755,0.3322174084285151,0.3356475300400534,0.325113808801214,0.0,2.15821849498682,51.04140024532835,149.17943915358435,202.98988631522693,fqhc5_80Compliance_implementation_low_initial_treat_cost,65 -100000,95717,47704,454.1826425817776,4925,50.24185881295904,3902,40.10781783800161,1454,14.83540019014386,77.26691653433518,79.6273851333244,63.2951211478972,65.0394255553852,77.08976788354954,79.45402233765202,63.22861644903187,64.9770154084132,0.1771486507856394,173.3627956723751,0.0665046988653301,62.41014697199887,243.93578,170.9078003737009,254850.82064836967,178555.11516829918,485.06608,322.0433058043968,506098.4778043608,335782.29179960384,468.41488,228.73655440893384,484902.22217578907,235622.1663049296,2485.80531,1173.2998430265554,2557766.917057576,1186620.7812937363,892.43147,408.7537325483268,915965.7114201238,410684.2219668455,1406.22052,589.0028152942033,1435330.5055528276,585810.4910215575,0.38073,100000,0,1108799,11584.128211289531,0,0.0,0,0.0,41730,435.2936260016507,0,0.0,42378,438.3547332239832,1101863,0,39595,0,0,9628,0,0,84,0.8671395885788313,0,0.0,3,0.0313423947679095,0,0.0,0.04925,0.1293567620098232,0.2952284263959391,0.01454,0.3634948433547382,0.6365051566452617,23.064478004397422,3.9822119369055593,0.3147104049205536,0.292157867760123,0.1998974884674526,0.1932342388518708,11.566308243192308,6.41515979022731,15.40780527465461,11571.749720541196,45.13570558748136,14.17604736333981,14.02090115266471,8.745642031276827,8.193115040200002,0.5927729369554074,0.8219298245614035,0.6938110749185668,0.5615384615384615,0.1140583554376657,0.7745098039215687,0.9238476953907816,0.8543956043956044,0.7238095238095238,0.1589403973509933,0.5097087378640777,0.7425897035881436,0.6261574074074074,0.5017543859649123,0.1028192371475953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0046436646422451,0.0069204854487153,0.0090104732784104,0.0113296584830055,0.0135521774103224,0.0157500382282481,0.0178846683884402,0.0200157427189924,0.0220991647559777,0.0242944860742365,0.0266621493983819,0.0287212710165047,0.0306526038233355,0.0329522944866292,0.0350209836472266,0.0369998343136442,0.039072064407694,0.041194997972994,0.043323782234957,0.0576404987156193,0.0709911758240608,0.0841868860716984,0.0976461799088776,0.1097582848883215,0.1255767684036743,0.1364900732561843,0.1482372989668761,0.1581406787998032,0.167353642042893,0.1801325931116261,0.1916726256256907,0.2027394873805013,0.211338851662068,0.219672347879736,0.2297295797778492,0.2377822490498546,0.2464523830975763,0.2546185377374558,0.2611346006210397,0.2671987969228989,0.2733876911198717,0.2784023668639053,0.2831631430078143,0.2874216586503425,0.2918848974058783,0.2946339142628205,0.2982069913340035,0.3015480277220027,0.3041209190481853,0.3010549604727086,0.2982161074195594,0.2950065610317046,0.2927199410310888,0.2895686927065535,0.2854823641125388,0.2816852312518815,0.2819392665341851,0.2819767938618226,0.2820851321939558,0.2828906732550957,0.2831168318395388,0.2841606772415816,0.2847126077441829,0.2877133926424621,0.288270222407417,0.2889420748212098,0.2936195662438225,0.2970930027197909,0.3010520420816833,0.3064685714285714,0.3094920854873954,0.3139103652020868,0.3181508147025388,0.3254835996635828,0.3321608629382108,0.3325272067714631,0.3381912557396686,0.3389599782194391,0.3459480122324159,0.0,2.566224951529512,52.98734142990274,143.10251042217007,194.92572538165356,fqhc5_80Compliance_implementation_low_initial_treat_cost,66 -100000,95704,47332,449.6259299506813,4946,50.53080331020647,3927,40.46852796121375,1484,15.129984117696232,77.288290147924,79.65725526845856,63.294707477804174,65.0438959915434,77.09567520869642,79.4680083321868,63.22128633784507,64.97388200113357,0.1926149392275817,189.2469362717577,0.0734211399591018,70.01399040981937,242.01364,169.53233552196042,252877.24651007276,177142.3718151388,481.71814,321.077134758476,502780.7301680181,334928.8062760971,464.50805,227.28651833873275,481872.9624676085,234733.4258664144,2540.35673,1207.2763863028536,2618528.0239070468,1225607.8286203854,901.16238,418.9381688228011,925820.7075984284,421952.0244887188,1442.54608,618.8789948743971,1472134.351751233,618284.822030139,0.37768,100000,0,1100062,11494.420295912398,0,0.0,0,0.0,41479,432.8241243835159,0,0.0,41966,434.9974922678258,1109533,0,39867,0,0,9591,0,0,101,1.0553372899774305,0,0.0,1,0.0104488840591824,0,0.0,0.04946,0.1309574242745181,0.3000404367165386,0.01484,0.3526336173508907,0.6473663826491092,23.156876295593797,4.043665447044993,0.3139801375095493,0.2844410491469315,0.2006620830150242,0.200916730328495,11.331572846595362,6.142579028112596,15.920835728648466,11480.550494381005,45.45337826156587,13.877591200569736,14.206350658648866,8.802051152333435,8.567385250013835,0.5961293608352431,0.8155774395702775,0.7193836171938361,0.5774111675126904,0.1115335868187579,0.7776037588097102,0.9289827255278312,0.8654353562005277,0.7619047619047619,0.1257485029940119,0.5086792452830189,0.7164429530201343,0.6545667447306791,0.5103806228373703,0.107717041800643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021369469004142,0.0045113086850295,0.0067581280188334,0.0089904305247973,0.0113599381661378,0.0137767414391756,0.0161191655961338,0.0184964017761445,0.0208833781394065,0.0228317044466049,0.0250886506651362,0.0273757467512471,0.029703581085944,0.0318019381880722,0.0338727810956049,0.0357681734565221,0.0378124288169638,0.0399331679828976,0.0420922347263536,0.0441361916771752,0.059154046997389,0.0730162386272025,0.0858468190500178,0.098543525846102,0.1103862515966262,0.1260468612690446,0.1373367314431347,0.1472377603750466,0.1569914778498946,0.1668241560003436,0.1789496387361156,0.1901630464221873,0.2014921309154277,0.2101984057463209,0.2190047142794202,0.2283929383828408,0.2362070893436207,0.2442775635387772,0.2515756183022001,0.2582593617583225,0.2632903465231711,0.2685480467101252,0.2736880812298349,0.2785670537655069,0.2832901191736965,0.2869246254739468,0.2906719883525366,0.2940403937369307,0.2968983290705373,0.2999272631091714,0.2977530361643909,0.2934876989869754,0.290292523153377,0.2883797006629418,0.2853846955330961,0.2816253983819564,0.277927257763287,0.2792429311815259,0.2796332342997644,0.2795883055956904,0.2807375514788469,0.2809764176985567,0.2815734989648033,0.2828539010878996,0.2836586646303632,0.2852459016393442,0.2863722415303326,0.2912269747112082,0.2954656435298221,0.2982123830945898,0.302863885989198,0.3068259927034315,0.310983596332564,0.3159481459149834,0.3199742030587801,0.3196702275894101,0.3313883901855176,0.3320747217806041,0.3362808145766345,0.3298585256887565,0.0,2.1483267011344607,55.85447049559105,140.43342577043703,192.43469881729624,fqhc5_80Compliance_implementation_low_initial_treat_cost,67 -100000,95821,47780,454.4932739169911,4992,50.917857254672775,3997,41.03484622368792,1518,15.361977019651224,77.36488025655099,79.68032539507624,63.35773544642036,65.0715057183468,77.16954621657592,79.49129988109144,63.28339987891184,65.0027559130692,0.1953340399750658,189.02551398480227,0.0743355675085126,68.74980527760499,243.03334,170.27239933233693,253632.4187808518,177698.2001172362,488.06365,324.58459104567146,508685.7369470158,338077.8052458975,464.14534,226.70324082818647,480349.077968295,233486.56012007955,2566.348,1208.5729927670986,2634603.166320536,1217672.5039272166,902.66482,413.2593730153649,923070.7673683222,412321.09142606,1471.98322,632.5276641221508,1490366.454117573,620199.6883963177,0.38176,100000,0,1104697,11528.746308220536,0,0.0,0,0.0,42016,437.7850366829818,0,0.0,41951,433.87148954822015,1110329,0,39839,0,0,9920,0,0,98,1.0123041921916909,0,0.0,2,0.0208722513853956,0,0.0,0.04992,0.1307627829002514,0.3040865384615384,0.01518,0.3684514637904468,0.6315485362095532,23.312356236449972,4.089754905298899,0.3207405554165624,0.2777082812109082,0.1983987990993244,0.2031523642732049,11.57393003730673,6.392873245479389,16.31661897643827,11590.7040143735,45.84567496547197,13.599151769057023,14.492342852191952,8.857365772330521,8.896814571892488,0.5864398298724043,0.8081081081081081,0.6981279251170047,0.5838587641866331,0.1096059113300492,0.7583892617449665,0.915948275862069,0.8497109826589595,0.7647058823529411,0.1629213483146067,0.5133689839572193,0.7306501547987616,0.6420940170940171,0.5212224108658744,0.0946372239747634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991998379418,0.0045926436595157,0.0068897637795275,0.0092329256896761,0.0112974242686163,0.0137763206125524,0.0158107198923525,0.0179165730853257,0.0201790971540726,0.0224064691130559,0.0244127413602262,0.0264670265388641,0.0288084030504224,0.0310724578015644,0.0332223516435941,0.0354816397741232,0.0376201164703083,0.0394044263925729,0.0413789522870048,0.0433339575920261,0.0579829566196948,0.0721236764260105,0.085441612453775,0.0986915338247957,0.1107705917664528,0.1258368355472957,0.1374711328629843,0.1487583978229441,0.1587565739644339,0.1680448148068807,0.179714479360537,0.1920952205922098,0.2020687107499076,0.2114804945174959,0.2200780262651794,0.2300147076712116,0.2387599144461278,0.2467319527424644,0.254271834765771,0.260697586683891,0.2676534429409319,0.2729267324883878,0.2781019656019656,0.2824228511304805,0.2867421347019498,0.2913775284216743,0.2950104937037777,0.2984039919247324,0.3017892900975389,0.3045629177411715,0.3011590271155938,0.2984472177602043,0.2960232947432092,0.2943340691685062,0.2910851101740215,0.2867371448678916,0.2833449389124517,0.2830597504924491,0.2833988716019832,0.2848316011286117,0.2850491852519336,0.2857567176887586,0.2857412336777682,0.2864260976427215,0.2871268165385812,0.2880141254673868,0.2893797790994052,0.2916275577247982,0.295505382357053,0.3002178649237473,0.3041678041678041,0.3084196547144754,0.3100271344734019,0.3120756732016172,0.3157944277108434,0.3157956963821234,0.3225114854517611,0.3265761200081086,0.324700109051254,0.3272311212814645,0.0,2.619489017133056,51.34342750537702,148.45529761415386,204.61482618940053,fqhc5_80Compliance_implementation_low_initial_treat_cost,68 -100000,95624,47364,451.6334811344433,5003,51.085501547728605,3957,40.65924872416967,1497,15.153099640257675,77.2563444549925,79.66720090798209,63.27473565930678,65.05593694691305,77.06054277692009,79.47961155380509,63.20011424239922,64.98808408800676,0.1958016780724136,187.58935417700684,0.0746214169075543,67.85285890629211,243.65132,170.65657084823235,254801.20053543043,178466.04415227586,481.96095,320.62940622599257,503232.0860871748,334519.4604677185,456.39276,222.74438696753916,473639.8289132436,230071.3935749441,2549.41036,1182.3180515776355,2620431.6175855435,1190938.7691126813,918.3499,413.69627926137616,939381.7869990796,411821.97528987593,1459.45978,621.1782258403351,1479291.684096043,607196.8144807084,0.37825,100000,0,1107506,11581.872751610475,0,0.0,0,0.0,41501,433.1757717727767,0,0.0,41318,428.37572157617336,1104147,0,39656,0,0,9598,0,0,79,0.8261524303522129,0,0.0,3,0.0313728771019827,0,0.0,0.05003,0.1322670191672174,0.2992204677193684,0.01497,0.3490783410138249,0.6509216589861752,23.457234603965123,4.0466911780834005,0.3073035127621936,0.2886024766237048,0.1956027293404094,0.2084912812736921,11.23321733322084,6.052380219916892,15.942525669776568,11542.684875626886,45.07891998445405,13.94406412230276,13.733232902221712,8.538299622603013,8.863323337326571,0.5797321202931514,0.8064798598949212,0.6891447368421053,0.5555555555555556,0.1272727272727272,0.7772848269742679,0.9247311827956988,0.8765432098765432,0.7595628415300546,0.1483870967741935,0.5010600706713781,0.725258493353028,0.6210762331838565,0.4923857868020304,0.1223880597014925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024307489745277,0.0047332840071759,0.0071443793827824,0.0093464590127294,0.0115169396683284,0.0137322616464451,0.0159233719601762,0.0181351914667538,0.0202115254792054,0.022547995164628,0.0248214578886882,0.0269864759320919,0.0294229680341792,0.031301873369694,0.0334383554568462,0.035336968781366,0.0371844710516767,0.0389549680569261,0.0408125039022664,0.0427154286667987,0.0564903846153846,0.0713582264688626,0.0842056634083344,0.0966943888830403,0.1097344759170923,0.1248835831004995,0.1369373003152498,0.1477501464401725,0.1590311477863052,0.1681602077721375,0.1808683838830366,0.1916484278501311,0.2020718051501024,0.2118010652521754,0.2207870993359952,0.2303269134706111,0.2382193389631452,0.2457285186186998,0.2530713368412678,0.2594168654799045,0.2654539974030792,0.2711107464366091,0.2768639635686586,0.2810133570151331,0.2854552534865042,0.2892290599345719,0.292692095634304,0.2960599228035311,0.2995254887724939,0.3018763286810241,0.2996832243715037,0.2962814929158167,0.2939133381337625,0.2914258398157403,0.2890623835987901,0.2856923360580173,0.2824259153499587,0.2814658859135469,0.2816215196170935,0.2815031180560533,0.2824153299358745,0.2835081180738655,0.2841760594421006,0.2852997634034195,0.2873982666314551,0.2894052817633604,0.2906209094530761,0.2952599052608464,0.2975272904823353,0.3012759924385633,0.3058052857465552,0.3090861206215433,0.3131799424784294,0.3155956407365652,0.3191567369385884,0.3198790275677562,0.3230266091868589,0.3283346487766377,0.3254390633315593,0.323719165085389,0.0,2.7608728205258166,48.35074560101854,145.52205145045463,210.4656662569841,fqhc5_80Compliance_implementation_low_initial_treat_cost,69 -100000,95700,47628,452.675026123302,4901,50.12539184952978,3895,40.19853709508882,1492,15.266457680250785,77.32722884548278,79.7037905015653,63.32110870231941,65.07608073377817,77.1381540634869,79.51783084215351,63.25010810732359,65.00865695671985,0.1890747819958846,185.95965941177892,0.071000594995823,67.42377705832325,244.07636,170.87125669541263,255043.2183908046,178548.8575709641,485.70545,323.75365411747754,507041.473354232,337812.84651774034,462.14232,225.28328720747865,480157.4817136886,233273.19884109905,2544.49209,1180.366021998907,2627902.988505747,1202483.8996853775,874.92238,396.3504471582913,899948.6938349007,399873.5289010352,1462.38428,619.572120072668,1497709.7805642637,619983.4285570033,0.38031,100000,0,1109438,11592.87356321839,0,0.0,0,0.0,41858,436.8756530825496,0,0.0,41846,434.440961337513,1101494,0,39586,0,0,9540,0,0,87,0.9090909090909092,0,0.0,0,0.0,0,0.0,0.04901,0.1288685546001945,0.3044276678228932,0.01492,0.3470622682022252,0.6529377317977747,23.369861880440983,4.144434440666355,0.2973042362002567,0.2793324775353016,0.2087291399229781,0.2146341463414634,10.99614587738404,5.658951764176512,15.966785821695243,11465.81992081636,44.70700638522731,13.472133054691833,13.074158771349303,9.004928353403823,9.155786205782348,0.5643132220795892,0.7941176470588235,0.6899827288428325,0.5571955719557196,0.0980861244019138,0.7486910994764397,0.9157427937915744,0.8626198083067093,0.7525252525252525,0.1413043478260869,0.4874499818115678,0.7080062794348508,0.6260355029585799,0.4943089430894309,0.0858895705521472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0047430349342765,0.0072740184640357,0.009547315071554,0.0118363653003325,0.0141427305957459,0.0163767258784899,0.0187309141789139,0.0208823348945656,0.0229797953938003,0.0250643530340789,0.0272277227722772,0.0293866551465218,0.0315198351365275,0.0334895145310435,0.035574307903908,0.0377921432123321,0.0398559000020763,0.0419704802421493,0.0440293529019346,0.0588911172390741,0.0726755138778415,0.0859408599330767,0.0981378221988427,0.1102837253454277,0.1258516355634547,0.1369169540992305,0.1470679061644783,0.1570760058975619,0.1656279164565924,0.178015941404567,0.1898251880716566,0.1994931642430636,0.20869650805455,0.216907112123513,0.2262324138695026,0.2353092150780012,0.2432493224017904,0.2501786909610737,0.2573345853468612,0.2623472505091649,0.267989987367239,0.2734834412011784,0.2780459756345907,0.2819784037216534,0.2868410026372218,0.2900941035138653,0.2938654521398402,0.2963969912352248,0.3001108150180734,0.297905300734155,0.2949273269804601,0.2921031880139687,0.2885569985569985,0.2855657855657855,0.2822725252494291,0.2794336339186837,0.27948827013055,0.2792593475042121,0.2796418992131019,0.280620992992396,0.2817372156577473,0.283147472642001,0.284767475479839,0.2865081075902373,0.2879677754677754,0.2887594145232343,0.2924575581031134,0.2953387760798269,0.2992530529976682,0.3015216897569839,0.3079161816065192,0.3135412752098209,0.3177024053418317,0.3192488262910798,0.3257897218293258,0.3286649413913837,0.3299196787148594,0.330237639989074,0.3268719118206005,0.0,1.946834618774712,50.25765447186491,145.87154685305896,200.04044555079452,fqhc5_80Compliance_implementation_low_initial_treat_cost,70 -100000,95773,48131,458.0831758428785,5069,51.69515416662316,4051,41.67145228822319,1533,15.557620623766615,77.38146625236273,79.7074551003464,63.35451413110488,65.06907414577267,77.1821967390807,79.51370651665093,63.278988077468966,64.99904484472476,0.199269513282033,193.74858369546644,0.0755260536359117,70.02930104791005,242.66352,169.99118168062094,253373.16362649185,177493.42708091292,486.73674,323.62729460879746,507591.941361344,337285.5224931561,468.39434,228.7431362166688,486297.2549674752,236549.50471921416,2621.46413,1226.3469825704285,2696672.0578868785,1240158.2843699867,905.59254,409.5054652863259,927642.7803243086,409882.7475414279,1494.04852,639.8000800033232,1517345.8908042975,629838.4171297365,0.38271,100000,0,1103016,11516.961983022356,0,0.0,0,0.0,41865,436.4695686675786,0,0.0,42215,437.9417998809686,1110701,0,39885,0,0,9691,0,0,101,1.0545769684566633,0,0.0,0,0.0,0,0.0,0.05069,0.1324501580831439,0.3024265141053462,0.01533,0.3630188679245283,0.6369811320754717,23.22481850263812,3.9153041764128313,0.3117748704023698,0.2927672179708714,0.1878548506541594,0.2076030609725993,10.935188745585728,5.843534181517359,16.40936292760557,11665.978515047344,46.47603323789124,14.622867868681857,14.329964677928931,8.493432957377989,9.029767733902458,0.5781288570723279,0.790893760539629,0.6975455265241488,0.5624178712220762,0.1129607609988109,0.7579564489112228,0.9008097165991904,0.8487394957983193,0.7071823204419889,0.1790123456790123,0.5029751487574379,0.7124277456647399,0.6379690949227373,0.5172413793103449,0.09720176730486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022781119008565,0.004783331306498,0.0068573051602235,0.0093529125030465,0.011510264675079,0.0137019769122707,0.0158798108284409,0.0180307962326146,0.0202390682468328,0.022579391062367,0.0246998319878703,0.0269219325515302,0.0289496130802511,0.0309755921804387,0.0329395026599035,0.0352266859444387,0.0373471035039427,0.0392837888276033,0.0413571717969228,0.0435027072053311,0.0580696334641396,0.0716416036166138,0.0853996224040277,0.0979394449116905,0.1105429625724828,0.1266673013253789,0.1386275154614022,0.1492553202814772,0.1592569646214322,0.1688342321671723,0.1810087742907896,0.1927710843373494,0.2032558341851714,0.2124941204782375,0.2218701172949539,0.2311672483518918,0.2401607322245786,0.2483741758365399,0.2566044161889084,0.2631995140790997,0.2689639999536828,0.2741108431478142,0.2790254412861523,0.2837287323268632,0.2878861472702545,0.2927724345159662,0.2968787109838873,0.2999504340200551,0.302904403199503,0.3070273689203969,0.3041081894929289,0.3014266686805718,0.2985798650168729,0.2955155785279085,0.2933507557984142,0.2896648771012098,0.2856894782540058,0.2854595717533901,0.2859185375568075,0.2855721569811857,0.2856849915179986,0.286292223095051,0.2878980361122102,0.2889788834249349,0.2903364557445995,0.2934658796727762,0.2946297343131713,0.298810117119362,0.3011867887098458,0.3052137561129516,0.3111261872455902,0.3155406115372491,0.3195729095536656,0.3275810324129652,0.3309009261857984,0.3323138454299494,0.3327289211242067,0.3290025984409354,0.334057577403585,0.3342215454891511,0.0,2.397776181015221,51.67199520447261,155.8734698674981,202.76647937959115,fqhc5_80Compliance_implementation_low_initial_treat_cost,71 -100000,95746,47945,456.1652706118272,4895,49.75664779729702,3916,40.20011279844589,1493,15.112902888893531,77.31912755708531,79.66767374778523,63.32066847763053,65.05770918285062,77.12129644718142,79.4775709777503,63.24491336867239,64.98770274789163,0.1978311099038876,190.10277003492604,0.0757551089581483,70.00643495898373,243.4795,170.566651334196,254296.61813548347,178144.268101222,483.94304,322.587470999874,504756.27180247736,336232.53579144186,462.82278,226.85805729288091,479233.1063438681,233618.13595640368,2525.9796,1190.7685276306725,2594064.441334364,1199571.4096992791,894.67171,415.2545406695692,914455.0790633552,413774.139914692,1437.28222,622.9934169501923,1456119.461909636,612689.0901455438,0.38227,100000,0,1106725,11558.937187976522,0,0.0,0,0.0,41708,434.89023040127006,0,0.0,41819,432.5924842813277,1104630,0,39676,0,0,9622,0,0,87,0.9086541474317466,0,0.0,1,0.0104443005451924,0,0.0,0.04895,0.1280508541083527,0.3050051072522983,0.01493,0.3588338876932107,0.6411661123067893,23.2317444446278,3.984411700596449,0.3335035750766087,0.2676200204290092,0.205311542390194,0.1935648621041879,11.564310190862628,6.595484247291658,16.0756275861658,11618.534096476456,44.85739832510993,12.982744436047271,14.749522423676217,8.841766063172864,8.283365402213583,0.5898876404494382,0.8206106870229007,0.6791730474732006,0.5845771144278606,0.1226912928759894,0.7776838546069316,0.9455337690631808,0.8429319371727748,0.7142857142857143,0.2125,0.5085986095865349,0.7232597623089984,0.6114718614718615,0.5466237942122186,0.0986622073578595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023291375102532,0.0047527842803433,0.0069092163467391,0.0093542424180869,0.0115833257060337,0.01362622590205,0.0157940351771603,0.01808397663685,0.0200200404899695,0.0220616087058895,0.0243509822417257,0.0265530341924222,0.0288373528050599,0.0310697214438767,0.033244255512335,0.0353555188094253,0.0371651000041409,0.0395411073999543,0.04179222344604,0.0437015049731812,0.0581303104319325,0.0718940574692204,0.0857334647899142,0.0982155062725427,0.1104727165387534,0.1257414750198255,0.1383190852972995,0.1493966673051139,0.1596010507656493,0.1688411934346087,0.1809909434531181,0.1920304755308326,0.2028172078098656,0.2120589167969732,0.220447143737347,0.230007641449882,0.2386953464230301,0.2465146110654769,0.2545175936435868,0.2612574438845625,0.2675681307740397,0.2723920779099166,0.2778067328421501,0.2833467340301696,0.2880020428263962,0.2912137401754537,0.2956677479553624,0.2979980642860781,0.3017872649273559,0.30580268750495,0.3031421298603348,0.3002063841496973,0.2980321953144823,0.2949112836753286,0.2928296617596815,0.2887857766343548,0.2848617245254943,0.2846994356214726,0.2839769393463874,0.2845262951264343,0.2848799116419251,0.2861678630590833,0.2866534073066052,0.2870709688952449,0.2889518413597733,0.2904753232562375,0.2910956956843122,0.2940035052578868,0.2977547737287543,0.3037171350861287,0.3067221192531983,0.3108543084797636,0.3153282844088377,0.3174831528734761,0.3172349369453526,0.3186915887850467,0.3189278723083873,0.3236763236763236,0.326729986431479,0.3363397219090567,0.0,2.691550887719804,50.86187196167491,141.3986158965243,202.23458891277895,fqhc5_80Compliance_implementation_low_initial_treat_cost,72 -100000,95676,47953,457.0738743258497,5003,51.10999623730089,4013,41.30607466867344,1548,15.824240143818722,77.34181859432726,79.72509801815542,63.3271521787835,65.08579205165191,77.1433849615848,79.52865134922504,63.25178224807527,65.0136835753517,0.1984336327424642,196.44666893037763,0.0753699307082342,72.10847630020112,242.27962,169.76674981998485,253229.25289518796,177439.2217692889,489.37175,325.83536714161016,510838.6115640286,339911.33318868896,467.98295,228.25216869726736,484902.4729294703,235371.3101526887,2596.74475,1219.5966111587,2676826.63363853,1237439.3903995785,915.47167,413.19491269920775,944002.153100046,419036.2770664047,1500.12642,640.5215049470995,1535159.747481082,641692.8813531636,0.38291,100000,0,1101271,11510.420586144906,0,0.0,0,0.0,42050,438.8143317028304,0,0.0,42369,438.5843889794724,1108833,0,39787,0,0,9450,0,0,85,0.8884150675195451,0,0.0,0,0.0,0,0.0,0.05003,0.1306573346217126,0.3094143513891665,0.01548,0.3598701794578083,0.6401298205421917,23.180614930215626,4.100944884215166,0.3184649887864441,0.2723648143533516,0.2040867181659606,0.2050834786942437,11.244353349110687,6.090485995458454,16.552686335622408,11590.817222045616,46.19192742324125,13.494581442075765,14.604223262677346,9.162697447961346,8.930425270526799,0.5768751557438325,0.8060384263494969,0.6940532081377152,0.568986568986569,0.0984204131227217,0.7594728171334432,0.934065934065934,0.8586666666666667,0.7450980392156863,0.1277777777777777,0.4976777420507324,0.7147335423197492,0.6256921373200443,0.510569105691057,0.0902021772939346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265607436886,0.0046626189728047,0.0069295780363828,0.0092015193678779,0.0114796437141578,0.0139895740001629,0.016257427962776,0.0183844921041617,0.0205643966107584,0.0228173079875932,0.0249982056251089,0.0269698463560923,0.0285388010411415,0.030655881292184,0.0327192031790266,0.0347959204782887,0.0367361319806422,0.0390904843482323,0.0411556027173517,0.0433168961958278,0.0577383128754243,0.0720299051328768,0.0852890549561274,0.0976808300187301,0.1099436673207165,0.125684909771732,0.1370649405772495,0.1474514563106796,0.1574487637039728,0.1669705484888135,0.1792430476272537,0.1911540416878495,0.2019162796767773,0.2116402116402116,0.2203167968320316,0.2297563676633444,0.2385799265633196,0.2458920517809544,0.2528251792684033,0.2594458438287154,0.2649694194905946,0.2709451166052954,0.2768319500602965,0.2815190964944848,0.2849164724164724,0.2888270289578381,0.2932582864290181,0.2974090232640964,0.3014814431120665,0.3059439636977628,0.3027158699397071,0.3004716137991722,0.2976071433601397,0.2951316701316701,0.2927401163480945,0.2887739011956338,0.2854320753524243,0.2850613501957636,0.2855852016025914,0.2861006334068749,0.2871449618619571,0.2881966309823677,0.2897662099313854,0.2898950978863672,0.291170136396267,0.2919859722041824,0.2934649981555574,0.2986878777440265,0.3028329306299681,0.3075402317029773,0.3113297365915582,0.3141546250395527,0.317687286291576,0.3193492505837162,0.324840174186973,0.3237410071942446,0.330141358869129,0.3289973984390634,0.3268599562363238,0.322592873388931,0.0,2.4360998854700284,52.79474521195678,149.89121422225327,201.94226356351737,fqhc5_80Compliance_implementation_low_initial_treat_cost,73 -100000,95674,47789,456.0695695800322,5045,51.44553379183477,4043,41.61005079749984,1521,15.479649643581327,77.38307130315455,79.75728113169839,63.34642469116329,65.09645112211287,77.18674183358839,79.5650254537537,63.27222583002068,65.02608071826373,0.1963294695661659,192.25567794468645,0.0741988611426123,70.3704038491395,242.59708,169.93731854796224,253566.3607667705,177621.21218717963,483.46737,321.59484696909544,504667.5481321989,335475.7896284209,467.98293,228.874998768663,484728.0765934319,235924.2133415996,2602.13934,1238.633969706102,2681491.962288605,1256334.2702365338,939.44977,431.0116254008609,965494.2199552648,434174.4868744275,1471.17396,633.3864355048811,1499304.555051529,631031.0139521845,0.38169,100000,0,1102714,11525.74367121684,0,0.0,0,0.0,41602,434.14093693166376,0,0.0,42437,439.1057131509083,1112532,0,39949,0,0,9674,0,0,63,0.6584861090787465,0,0.0,1,0.0104521604615674,0,0.0,0.05045,0.1321753255259503,0.3014866204162537,0.01521,0.351371807000946,0.6486281929990539,22.952021876796657,4.003307864106768,0.3208013851100668,0.2755379668562948,0.2067771456838981,0.1968835023497402,11.534176466610768,6.4254339614507865,16.348632733638677,11611.303366558075,46.46534220782584,13.642422855489134,14.68915373539328,9.397945294040568,8.735820322902846,0.5874350729656196,0.8061041292639138,0.694680030840401,0.5717703349282297,0.1231155778894472,0.7597145122918318,0.920997920997921,0.8537859007832899,0.7441860465116279,0.1538461538461538,0.5093457943925234,0.7187993680884676,0.6280087527352297,0.5120772946859904,0.1140065146579804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348582245933,0.0045083378923267,0.006724069735601,0.0087940208781835,0.010787453611916,0.0131213290308132,0.015311219392852,0.0173830497402239,0.0195946153138511,0.0218047806725699,0.0240011482821903,0.0260720446890659,0.0279843263089691,0.0300561363753411,0.0319805228299667,0.0339713512061018,0.0362773737750429,0.0383497664763881,0.0405361841079023,0.0426354569424614,0.0580818368903235,0.072254093212177,0.0858983235769287,0.0985868102288021,0.1107502846779975,0.1264471110641222,0.1380564183566378,0.1483147740446486,0.1583126127183668,0.1681757299758907,0.1803617348640535,0.1928267122250816,0.2034738375252711,0.2126415424299392,0.2202496837705549,0.2299783969423364,0.2390481401659389,0.2463289941894509,0.2541210662549384,0.2613163773844303,0.267430290408423,0.2733485460183722,0.279186254425748,0.2836067933218192,0.2879786070256472,0.2915747031479266,0.295982478097622,0.2995495495495495,0.3027442143569421,0.305913715967429,0.302894574018777,0.2992195229196438,0.2956498502130771,0.2931872952653073,0.2902034642306323,0.2870082776137215,0.2839164598188171,0.2844830411273144,0.2854802655154173,0.2865134509175129,0.287366813203189,0.2884064229908523,0.2888112179087088,0.2887064566230308,0.2904292785075195,0.2917622792316617,0.2930578233207589,0.2983137169653116,0.3040972222222222,0.3092702787347322,0.3126745338257815,0.3152856246076585,0.3176010915405606,0.3223826984958467,0.3239915464485895,0.3255599168783191,0.3270682255438804,0.3272797527047913,0.3331573389651531,0.3385740402193784,0.0,2.427776765076559,54.60159339404861,148.71751532498223,199.48195894886237,fqhc5_80Compliance_implementation_low_initial_treat_cost,74 -100000,95688,47665,454.0903770587743,4968,50.75871582643592,3935,40.47529470780035,1515,15.393779784298973,77.3960056150407,79.78055080711273,63.35197710932333,65.11319697143091,77.21074799932529,79.5993500069954,63.28273357747089,65.04782735447797,0.1852576157154146,181.2008001173382,0.069243531852436,65.36961695293542,243.51008,170.49224534024503,254483.4043976256,178175.15816010893,485.91107,323.4389360756988,507151.1892818326,337357.5537953544,469.04304,229.37000193886496,485628.5427639829,236213.59910260056,2572.18812,1208.67449442474,2647454.832371876,1222497.0261942346,909.60045,416.1163471827378,930739.5180168884,415053.5532354897,1476.64544,615.6773899217089,1501984.2195468608,610802.9715736432,0.37892,100000,0,1106864,11567.427472619343,0,0.0,0,0.0,41826,436.4288103001421,0,0.0,42351,438.1322631886966,1109823,0,39784,0,0,9546,0,0,103,1.065964384248809,0,0.0,0,0.0,0,0.0,0.04968,0.1311094690172068,0.304951690821256,0.01515,0.3688794271337333,0.6311205728662667,23.237163867060737,3.996809424822979,0.2970775095298602,0.287420584498094,0.2096569250317662,0.2058449809402795,11.767412875939623,6.647051037309681,15.896663450817266,11482.943603676733,45.11788843637069,13.909523240456396,13.38788967662224,9.075942797774797,8.744532721517258,0.5928843710292249,0.830238726790451,0.7254063301967494,0.5503030303030303,0.1135802469135802,0.7695507487520798,0.9237113402061856,0.9009009009009008,0.6952380952380952,0.1781609195402299,0.5151847786315404,0.760061919504644,0.6555023923444976,0.5008130081300813,0.0959119496855346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0048062298472957,0.0070136619232252,0.0093878587757175,0.0116167883954183,0.0139188693845965,0.0161403794977415,0.0182135601180206,0.020037211965078,0.0223546029601424,0.0245847857289317,0.0265613930613879,0.0286011066087993,0.0306953843618347,0.0327177053239785,0.034608228240645,0.0368855006111329,0.0391006944084034,0.0409963080443034,0.0431266284523189,0.0578447654560837,0.0716236722306525,0.0846540313191596,0.0975050729132715,0.1095709918836302,0.1249550559421332,0.1364494706244297,0.147089192382615,0.1571138645588549,0.1670813315030885,0.178711810379177,0.1896598345140879,0.2001477907456912,0.209469059432993,0.2176097448356988,0.2277697841726618,0.2367173997881474,0.2439742120987487,0.250832446145831,0.2570256339927543,0.2631445321515949,0.2693003231790552,0.2740256367885555,0.2793936568279357,0.2835441197848524,0.287737181455327,0.2915711294985544,0.2952144503838066,0.2976839500444651,0.3005635319925913,0.2983638629450467,0.2952532208819945,0.2930277571286309,0.2906280582580162,0.2889306371207527,0.2850391059749051,0.2815647212722029,0.2819620718380948,0.2820216508335741,0.2819739060974527,0.2828856685169318,0.2842090805635129,0.2848774407976734,0.2858755311614731,0.2877466399771232,0.2894478590981871,0.289363979494113,0.2926030984071568,0.2971206009180693,0.3017893741131957,0.3039122353687837,0.3056669480793584,0.3074658649630464,0.3124054462934947,0.317551096943559,0.3207301173402868,0.3211678832116788,0.3255297679112008,0.3297609233305853,0.3382013835511145,0.0,2.482788467279147,51.921232215344325,146.7153797109613,194.7357101418534,fqhc5_80Compliance_implementation_low_initial_treat_cost,75 -100000,95821,47874,455.9543315139688,4920,50.03078657079346,3896,40.06428653426702,1493,15.163690631489969,77.38566316619061,79.70530475558482,63.36611244363343,65.08360748996158,77.19555781895922,79.51978586847937,63.29351270322293,65.01517129534841,0.1901053472313947,185.5188871054452,0.0725997404104958,68.43619461317019,243.61392,170.6689259563369,254237.4009872575,178111.14241374735,488.58675,325.4925337335005,509280.0012523351,339074.6062432812,469.40785,229.51653635610737,486099.36235272017,236617.79961911807,2515.89473,1192.207215239967,2590261.863265881,1208955.659187107,905.73379,418.4755535870646,932311.4974796756,423831.9543356913,1449.9175,622.1394992555142,1475393.8280752655,617628.9549083608,0.38068,100000,0,1107336,11556.245499420796,0,0.0,0,0.0,42075,438.4738209786999,0,0.0,42351,438.2024817106897,1106729,0,39721,0,0,9742,0,0,102,1.06448482065518,0,0.0,0,0.0,0,0.0,0.0492,0.1292424083219502,0.3034552845528455,0.01493,0.3666274970622796,0.6333725029377203,23.1467993735588,4.097382162477999,0.3203285420944558,0.2802874743326489,0.1971252566735113,0.2022587268993839,11.570302331656931,6.370839492854397,15.99621831613706,11484.066209332266,44.81213568575012,13.573296485288065,14.088862980986418,8.518698940997874,8.631277278477764,0.5926591375770021,0.8186813186813187,0.7035256410256411,0.5833333333333334,0.1129441624365482,0.7696160267111853,0.9222689075630252,0.8904899135446686,0.7384615384615385,0.1666666666666666,0.5140845070422535,0.7386363636363636,0.6315205327413984,0.5305410122164049,0.0970394736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890016509171,0.0045112172176434,0.0067795922095584,0.008900087375287,0.0111375564506285,0.0134711332858161,0.0158599109154104,0.0180222471680783,0.0202258674434053,0.022390961747068,0.0244519824962338,0.0265321413542169,0.0283861419718194,0.0304371545326347,0.0326153084688437,0.0349219137332672,0.0366894639365125,0.0385257200899659,0.0408589199123635,0.0426838151131089,0.0574846926535167,0.0708924800869692,0.0839220207525416,0.0970161798697205,0.1089915098910822,0.1248508148414148,0.1362345862112801,0.1466621318566858,0.1566316463121966,0.1666291809915496,0.178159683386389,0.1892636446134566,0.1999196586578653,0.2092152517765721,0.218074181466715,0.2279989827397472,0.2359743326946214,0.2440914809489575,0.2514046853051792,0.2584214436760587,0.2639110248770009,0.27005927931292,0.2761542819374941,0.279851370403116,0.2841647802244362,0.2883810552412278,0.2923326268545069,0.2952834731479838,0.2990505920899873,0.3019721272679463,0.298744545149379,0.2962612334499554,0.2931073224166503,0.2901919529628776,0.2879261553049946,0.2845645168680035,0.2809098807361188,0.2806919825693784,0.2810329231451929,0.2812204647181553,0.2814233678901653,0.2831007018373945,0.2846579245045875,0.2852930006032037,0.2868172306804242,0.2886576428552799,0.2896701042675631,0.2943261299124926,0.2980125486347225,0.3010139416983523,0.306854289605084,0.3115842732159797,0.3144677661169415,0.3181133212778782,0.3210743028261276,0.3285041224970553,0.3287775246772969,0.3326673326673326,0.3336953570458865,0.3379751599548363,0.0,2.255193679645109,51.94153416881654,143.59977813437644,195.75442191273376,fqhc5_80Compliance_implementation_low_initial_treat_cost,76 -100000,95764,47888,458.19932333653566,5065,51.59558915667683,3998,41.142809406457545,1498,15.308466647174304,77.37657405990127,79.72281257650076,63.3458979718325,65.07971755854686,77.18117461460739,79.53021998620245,63.27158393797563,65.00877312611158,0.1953994452938872,192.5925902983039,0.0743140338568721,70.94443243528303,243.42076,170.38778966122766,254187.9411887557,177924.4493350609,484.55632,322.172494783286,505422.98776158056,335856.3184320684,462.06155,225.5488341215176,478484.0754354455,232385.7691107952,2592.50436,1223.146030514258,2670097.1972766384,1240323.8650286582,912.85053,422.88461031971,935557.2657783718,424041.0985566297,1464.89578,627.3372868238257,1498068.2928866798,627999.9018929031,0.38251,100000,0,1106458,11553.997326761622,0,0.0,0,0.0,41690,434.7249488325467,0,0.0,41856,433.0750595213233,1111014,0,39841,0,0,9711,0,0,77,0.8040599807860992,0,0.0,1,0.0104423374128064,0,0.0,0.05065,0.132414838827743,0.2957551826258637,0.01498,0.3547655068078669,0.6452344931921331,23.190874760611827,4.034204583053616,0.2978989494747374,0.2958979489744872,0.196848424212106,0.2093546773386693,11.186005784230106,5.967820219082751,15.9417539974217,11511.70457400804,45.75755083726205,14.629960123748974,13.277124304339647,8.686128925232842,9.164337483940583,0.5817908954477239,0.8224852071005917,0.6742233417296389,0.5883100381194409,0.1039426523297491,0.7449228269699432,0.9192307692307692,0.8690095846645367,0.7445652173913043,0.1401869158878504,0.5092157571376943,0.746606334841629,0.6047835990888383,0.5406301824212272,0.0914927768860353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022485566697052,0.0044095733357662,0.0065342235029119,0.0085740989069039,0.0105971849320641,0.0127799105915418,0.0147036330821547,0.0167639972230162,0.0189329271409439,0.0211483145837385,0.0233068219088225,0.0253333470196364,0.0276849691075632,0.029690734389965,0.0315885035178575,0.0332303176260219,0.0352890011804419,0.0369724884849993,0.0391408759655269,0.0411064476822295,0.0555155462316435,0.069481918386982,0.0822710499832271,0.0955333683657383,0.1076201517706576,0.1236191422560969,0.1352488999628903,0.1460082357072174,0.1563731510653067,0.1657372654155496,0.1782306184434439,0.1894827959316165,0.1998890351497481,0.2096112393728184,0.218832905846479,0.2286021433875275,0.2371462066655501,0.2456002160507719,0.2523573398086895,0.258746622704584,0.2642905878135371,0.2703088108095471,0.2752461671217655,0.2800732530581954,0.2847500424891349,0.2893738607813192,0.292503748125937,0.2968779756992497,0.3012687994211587,0.3055207935399734,0.3027193983750755,0.299423710208562,0.2967721101329627,0.2942786750615932,0.2927479164507868,0.2897102134867467,0.2865096765035251,0.2863261136085002,0.2871657845022721,0.2868080721949833,0.287394518706594,0.288879713735205,0.2898822548713139,0.2888997359721328,0.2895283582089552,0.2908756571961358,0.2927981443765557,0.2980175799513746,0.3028929940745904,0.3087121212121212,0.3132901354841633,0.3167423202786868,0.3179804031704425,0.3238447598912715,0.3263921167611787,0.3250763089927213,0.3307157958320749,0.3327384493357129,0.3380016159439806,0.3455223880597015,0.0,2.354443067944508,53.36226319847088,142.14445608393262,204.50913572351575,fqhc5_80Compliance_implementation_low_initial_treat_cost,77 -100000,95754,48226,458.95732815339306,5006,51.00570211166113,4011,41.33508782922907,1553,15.905340769054034,77.3313489084019,79.7001845605344,63.31030609897547,65.06459153543189,77.13188846889356,79.50112016751547,63.234252746160806,64.99023758185086,0.1994604395083428,199.0643930189293,0.0760533528146609,74.35395358102426,244.27986,171.20808538411774,255111.68201850576,178799.70067476845,490.44153,326.294044110831,511614.3659794891,340188.3950770586,476.37641,233.2421915380264,493649.0486037137,240576.9528059263,2594.89908,1234.5417758302067,2676318.065041669,1256015.7541021877,922.67106,425.0953923632481,950707.552687094,431209.6642278716,1502.47154,648.0860889138366,1540452.868809658,653353.0757241062,0.38221,100000,0,1110363,11595.985546295717,0,0.0,0,0.0,42072,438.7806253524657,0,0.0,43133,446.7071871671157,1097393,0,39362,0,0,9606,0,0,86,0.8981348037679887,0,0.0,0,0.0,0,0.0,0.05006,0.1309751183904136,0.3102277267279265,0.01553,0.3466028708133971,0.6533971291866029,23.17490767996017,4.023222606147357,0.3046621790077287,0.2852156569434056,0.2084268262278733,0.2016953378209922,11.394005768961526,6.198030058021926,16.60438681431066,11593.610085989088,46.11062402927838,14.061876465356208,13.903237475597956,9.371992205043744,8.773517883280464,0.5886312640239342,0.7884615384615384,0.7013093289689034,0.6076555023923444,0.1161928306551298,0.75,0.8985200845665962,0.8760330578512396,0.7511111111111111,0.1413612565445026,0.5154041319318594,0.7108792846497765,0.6274738067520372,0.5548281505728314,0.1084142394822006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024316355788812,0.0046543699362178,0.0071453945699061,0.0094797805324121,0.0117194652993957,0.014247741646383,0.0163045140765363,0.0184914792162308,0.020834824944512,0.0232091279677161,0.0252297341647522,0.027431037139775,0.0292268269339617,0.0313002432287587,0.0334640792733278,0.0356123588534557,0.0376295651993828,0.039804918543115,0.041869360941333,0.043931093382215,0.0592785119308573,0.0733381465088782,0.0865597432158853,0.0995121130551816,0.1120283391846158,0.1275700143836196,0.1382987754409049,0.1485465952302333,0.1589825798867158,0.1680062669685685,0.1803022463674384,0.1916216304029978,0.2018899969516178,0.2115001423284941,0.2206047525711894,0.2309193528713837,0.2395563399160039,0.2473089222177183,0.2552220506765961,0.2613584265541903,0.26724786681023,0.2728124414465055,0.278521819517861,0.2826830937713894,0.2870021168398258,0.2905047913866038,0.2942207312646296,0.2970344915362097,0.3000466575079706,0.3030375003298762,0.3005224604115049,0.2978626898494949,0.2947910221072172,0.2912520550315826,0.287569600758204,0.2839477902450195,0.2801582797326271,0.280291016103981,0.281081909171376,0.282151041944252,0.2821215510812826,0.2837200157294534,0.2853096165462082,0.2858063799044126,0.2864793783622235,0.2868215044844212,0.2880804997314791,0.29353125,0.2978053134516434,0.3019286364896439,0.3041526883670323,0.3066293971836928,0.3096725818545364,0.3132584608426924,0.3149569882527055,0.3193656673226068,0.3202205334525406,0.3218817099355846,0.3299627461415647,0.3335809806835066,0.0,2.057161369194816,54.53527410810171,146.6396587554196,199.40884889150647,fqhc5_80Compliance_implementation_low_initial_treat_cost,78 -100000,95492,47709,456.13245088593806,4871,49.90994009969421,3867,39.91957441461064,1401,14.252502827461983,77.22623088476638,79.71316273021127,63.24095407219974,65.07615511898496,77.04404600108377,79.5354544176444,63.17145234872974,65.01133704366386,0.1821848836826092,177.70831256686392,0.0695017234700046,64.8180753210994,243.37038,170.4727155196463,254858.52217986845,178519.5917772183,485.88126,323.739622134852,508213.8713190634,338420.7813020877,466.47999,226.91961834309785,485135.341180413,235096.86236345512,2495.0496,1162.9060326333067,2575139.2158505423,1180292.9694079163,870.20358,393.09793502688586,893595.4634943241,394305.65478244406,1356.46048,581.4148559260606,1380091.8401541489,573663.2626989015,0.37978,100000,0,1106229,11584.478280903111,0,0.0,0,0.0,41899,438.1414149876429,0,0.0,42139,437.9633896033175,1099287,0,39463,0,0,9797,0,0,78,0.8168223516106061,0,0.0,0,0.0,0,0.0,0.04871,0.1282584654273526,0.2876206117840279,0.01401,0.3723509605862547,0.6276490394137453,23.25984721790961,3.9859078260441274,0.3098008792345487,0.2940263770364624,0.2011895526247737,0.1949831911042151,11.038122636792108,6.0052719601398925,14.971705837330514,11515.562521948164,44.32326323699503,13.948816860927268,13.562249609463622,8.571025690558491,8.24117107604566,0.5862425652960952,0.7977132805628848,0.6969949916527546,0.5822622107969152,0.0954907161803713,0.7625215889464594,0.9248434237995824,0.8727810650887574,0.7341040462427746,0.1071428571428571,0.5108896271686969,0.7051671732522796,0.627906976744186,0.5388429752066116,0.0921501706484641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024725135532249,0.0044224897805998,0.0066704570836802,0.0089374682257244,0.0113821469294673,0.0135657137033073,0.0155613832794212,0.0178611570923507,0.0201745322107072,0.0222536423433946,0.0241521596321235,0.0260747077391295,0.0282963496885136,0.0304777424811254,0.0324430438601022,0.0344456293289987,0.0364204062156386,0.0386486486486486,0.0405280101684673,0.0425834072991176,0.0575101276025583,0.0710748310739916,0.0838924762846265,0.0962243865418669,0.1084700262112116,0.1248237626281364,0.1364772183529161,0.1471099776992925,0.1574583859979862,0.1667114555676187,0.1785506057137921,0.1898212426240888,0.2002093350341804,0.2105788204341153,0.2193095687286929,0.2290247669418549,0.2375700495520184,0.2452347404610269,0.2529625838735357,0.2597356403607407,0.2652453162678538,0.2706706988302037,0.2754183517356705,0.2812766519717954,0.2849869054144588,0.2891520102831576,0.2923007382853699,0.2962022084636497,0.2997572658004387,0.303654054625737,0.3005154082789141,0.2970003992125876,0.2947052524797114,0.2919012559549588,0.2893481717011129,0.2860665655776624,0.2827212694189748,0.2820264389522949,0.2824203059567558,0.2833017958513335,0.283678126519771,0.2843222344958182,0.2854994046002465,0.2863541156022995,0.2872243746113742,0.2878069015581654,0.2902330586469572,0.2932516487981746,0.2971426577818093,0.3015541180183023,0.3063275097311487,0.3107716618382934,0.3130829498818555,0.3167166416791604,0.3201984017635712,0.326365631135235,0.3273001508295626,0.328077622801698,0.3320610687022901,0.3296827794561933,0.0,2.1507216606011106,50.53194649746385,140.0585033893418,200.54722925448115,fqhc5_80Compliance_implementation_low_initial_treat_cost,79 -100000,95705,47843,457.3219789979625,5031,51.30348466642286,4035,41.544328927433256,1553,15.850791494697248,77.36399481233721,79.74779105882061,63.33329461681414,65.09683793009994,77.16116822689659,79.54913122329603,63.255923420472655,65.02367195807508,0.2028265854406186,198.65983552458036,0.0773711963414882,73.16597202485298,244.70468,171.36872487854387,255686.4113682671,179059.32279248093,491.54969,327.39531526798254,512961.4440206885,341440.4381379611,468.84072,228.67108403945448,485924.6329867823,235897.5967058513,2626.19652,1238.5975336376323,2706193.1456036777,1256336.440116663,913.03566,419.3420756120534,939289.3579227836,423556.97944899567,1506.43874,647.0359131429556,1538610.1248628595,645347.2618287369,0.38135,100000,0,1112294,11622.109607648505,0,0.0,0,0.0,42299,441.31445588004806,0,0.0,42438,439.50681782561,1099123,0,39442,0,0,9971,0,0,87,0.898594639778486,0,0.0,0,0.0,0,0.0,0.05031,0.1319260521830339,0.3086861458954482,0.01553,0.3616899254444657,0.6383100745555343,22.91484746221488,4.032753837079339,0.301363073110285,0.2884758364312267,0.2052044609665427,0.2049566294919454,11.37221197921328,6.201506246092751,16.617809406516322,11514.695891189462,46.37037746334052,14.295330957850307,13.8070939949804,9.32803231536034,8.939920195149474,0.5883519206939282,0.8238831615120275,0.6949013157894737,0.5833333333333334,0.1051995163240628,0.7472089314194578,0.9227642276422764,0.8494623655913979,0.665158371040724,0.1183431952662721,0.5167206040992449,0.7514880952380952,0.6267772511848341,0.5535420098846787,0.1018237082066869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045230054661433,0.0067712986274669,0.0091468992011708,0.0110808115753271,0.0132750575626057,0.0153413031947447,0.017504800032681,0.0195759565524224,0.021462435617813,0.0235453370798039,0.0255728209183621,0.0275560584241925,0.0297681607418856,0.0317453764861294,0.0339026861597634,0.0357590511213549,0.0378249364395786,0.0396981320360495,0.0415403369487075,0.0564368740405,0.0696888181789635,0.0830763097710916,0.0959712275609679,0.1088787460339211,0.1245532787751908,0.136033934252386,0.1470973095458462,0.1571024395451876,0.1668470863120438,0.1781728565125213,0.1893093599896144,0.200167485970331,0.2100537028732677,0.2190683653486478,0.2287308846490305,0.2381133001628773,0.2461903530179151,0.2542547880548244,0.2606271537660137,0.2673559310273046,0.2732575810712866,0.2784049224943793,0.283241080200321,0.286682126683098,0.2903007398471064,0.293429196623945,0.2967781278585222,0.3004289627370923,0.3033951835767864,0.3005423401170595,0.2974252047353187,0.2951945080091533,0.2918100779101081,0.289360379954725,0.2860863605209047,0.2826617154186269,0.2820429248895914,0.2829475112354787,0.2826638740481726,0.2820488914579798,0.2827762485253637,0.2841368390349598,0.2851700862126579,0.2859943107116391,0.2871279414056412,0.2886433987447817,0.2939026675829325,0.298208235828298,0.3014702983956798,0.3055003612716763,0.3097503285151117,0.311308926780341,0.3154260566052052,0.317433436823784,0.3216360403082395,0.3254956201014292,0.3291242362525458,0.3342556723851688,0.334757281553398,0.0,2.397830576024655,54.35389841283445,146.4546490405499,202.56281490595524,fqhc5_80Compliance_implementation_low_initial_treat_cost,80 -100000,95678,47836,455.6324337883317,4916,50.293693430046616,3898,40.249587156922175,1474,15.154999059344886,77.31725194233033,79.7273869786928,63.30264576078415,65.08569949410943,77.12703290080465,79.53697395797745,63.23137906445015,65.01634501311884,0.1902190415256797,190.41302071535424,0.0712666963339998,69.35448099059727,243.16336,170.34244320975426,254147.62014256156,178037.21149036798,487.90003,324.9160681995154,509449.7376617404,339103.4074703854,467.30794,227.67129494952124,485487.6565145593,235679.73499807544,2524.27756,1182.239000390873,2608094.075963126,1205432.4822747896,893.38719,401.05183522153146,922273.8142519702,407698.51504163066,1424.45266,606.4056415072079,1464916.1353707227,612087.4598786471,0.38129,100000,0,1105288,11552.164551934617,0,0.0,0,0.0,41972,438.1676038378729,0,0.0,42205,438.1676038378729,1105764,0,39661,0,0,9499,0,0,92,0.96155856100671,0,0.0,0,0.0,0,0.0,0.04916,0.1289307351359857,0.2998372660699755,0.01474,0.360856864654333,0.639143135345667,23.265722321334582,4.058957281076792,0.3127244740892765,0.2762955361723961,0.2154951257054899,0.1954848640328373,11.22507500435756,6.202866392826709,15.848212792440584,11571.6348517094,44.79146177510295,13.335913714525123,13.931893997171482,9.29681164598332,8.226842417423011,0.5908158029758851,0.7910863509749304,0.7186218211648893,0.5857142857142857,0.1089238845144357,0.761864406779661,0.9027484143763214,0.8583333333333333,0.725,0.1224489795918367,0.5165562913907285,0.7036423841059603,0.660069848661234,0.5421875,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896045873139,0.0047761496729706,0.0071749698082953,0.0095418102002865,0.0114768275932237,0.0135275542426403,0.0158019301001775,0.0179286531546256,0.0199813793597364,0.0222015040059012,0.0243462023822959,0.0263982654623549,0.0287093652852407,0.030445182176217,0.0327807900852052,0.0347535488143028,0.0370381888294564,0.0391816812918635,0.0411889552425144,0.0434365651027279,0.0581819321541627,0.0718017989717169,0.0851834356794205,0.09859021567596,0.1106047659736067,0.1262064002709109,0.1375811860593454,0.1492082760970727,0.15931265161311,0.1683810831393665,0.1808303268536966,0.1932422048334902,0.2037496463624295,0.2127324264279382,0.2217315168669258,0.2311886344998781,0.2402816209943765,0.2479700398119615,0.2559629801857795,0.261855976923341,0.2672766813964787,0.2727867932469719,0.2776528776978417,0.2820672552801505,0.2860733976149418,0.289798634559929,0.2936717411155448,0.2962280456497979,0.2995694392366274,0.3015421489997761,0.2993242063118861,0.2960563341615077,0.2937665875612599,0.2905726719889328,0.2879934698723657,0.2841531727325599,0.2797971660110895,0.2797831569982639,0.2802613889692493,0.2825793382849426,0.2829519578931651,0.2833838403715219,0.285839617320828,0.2863953307046269,0.2879118769348916,0.2882861819032031,0.2888441698316422,0.2926083156448995,0.2970445584284169,0.3009972801450589,0.3056398640996602,0.3099446056449486,0.3124100381751048,0.3155185465556396,0.3173032029134373,0.3179847685998828,0.3196895922093731,0.3228013684846045,0.3228999464954521,0.3302342878393455,0.0,1.9440559985065056,51.58112757937569,145.25562544675407,196.222637664338,fqhc5_80Compliance_implementation_low_initial_treat_cost,81 -100000,95869,47359,451.7414388384149,4992,50.95494894074206,3948,40.711804650095445,1460,14.91618771448539,77.4717338221379,79.75637976463518,63.40399372213196,65.08986990338995,77.27761804529031,79.56464651987375,63.33041765163576,65.01924417461055,0.194115776847596,191.73324476143705,0.0735760704962018,70.62572877940454,243.91422,170.79423084448874,254424.49592673336,178153.762785143,482.46163,320.8707198597157,502796.24278964,334242.3722576804,464.37445,226.5476822040476,481311.5084125213,234014.2037956963,2511.50761,1195.3347633225612,2587217.1817793027,1214766.1201922488,873.23353,399.8421095260714,897307.5446703314,403688.2745229325,1413.21938,612.6468356566952,1444204.0492755738,612848.9496054697,0.37859,100000,0,1108701,11564.749814851515,0,0.0,0,0.0,41529,432.7154763270713,0,0.0,41969,434.780794626,1111857,0,39855,0,0,9669,0,0,90,0.938781044967612,0,0.0,0,0.0,0,0.0,0.04992,0.1318576824533136,0.2924679487179487,0.0146,0.3576628352490421,0.6423371647509578,23.247769775039394,3.9083262831961383,0.3087639311043566,0.2887537993920973,0.2107396149949341,0.1917426545086119,11.15168615534032,6.151419126703459,15.75765825483415,11399.86719419362,45.523017634231984,14.039850347136138,13.754803179633448,9.367702611176018,8.360661496286378,0.5916919959473151,0.8061403508771929,0.6964725184577523,0.5901442307692307,0.1017173051519154,0.7457351746547523,0.9066937119675456,0.8497109826589595,0.7227272727272728,0.1046511627906976,0.5218991534781009,0.7295208655332303,0.6357388316151202,0.5424836601307189,0.1008547008547008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019232715861929,0.0045891541976071,0.006682350078079,0.0087596427121396,0.0110763352572961,0.0131858740219968,0.0154327275690652,0.017360438192964,0.0194024058983313,0.0214145463470506,0.0234230174418009,0.0254445880253522,0.0273871282551748,0.0294163039787634,0.0313875459989898,0.0333946015158712,0.0353855065268209,0.0372573607901255,0.0393836505414862,0.0414485665227119,0.0565970846453819,0.0710933171654662,0.0837926770481839,0.0972303942170295,0.1092948008558088,0.1251334750018501,0.1360556480430933,0.1470075104785004,0.1576368353065516,0.16731325688565,0.1781440991650167,0.1892081743810316,0.1996981509028328,0.2090438655865848,0.2177828541305159,0.2272099218499563,0.2352449795618324,0.2420010328490917,0.2486241648737402,0.2561874821377536,0.2619877640540228,0.268391099500863,0.2731532850161713,0.2773254910399407,0.2811878546830286,0.2853311681921071,0.2894033615544067,0.2923207736335139,0.2956218519953506,0.2992344522782279,0.2966597749912735,0.293200745123822,0.2911413706544756,0.2884745324113342,0.2855559004833917,0.2828970411317709,0.2798357147353182,0.2790800097871299,0.2788804071246819,0.2796153982363565,0.2796668463812303,0.2800423297013404,0.2817977901470466,0.2822427008107749,0.2834237320392045,0.2856295608674351,0.2883777171620595,0.2941850738870473,0.2993838846246515,0.3015106681202305,0.306450893852258,0.3137408568443051,0.3162701124433124,0.3198160850229893,0.3219895287958115,0.3273669335845501,0.3291710546111027,0.3250148544266191,0.3311948676824378,0.3315985130111524,0.0,1.850519870378779,53.89005787580819,148.91699094202977,191.66476856803564,fqhc5_80Compliance_implementation_low_initial_treat_cost,82 -100000,95736,47487,451.5856104286788,4929,50.14832455920448,3908,40.20431185760842,1524,15.5322971504972,77.34438518034166,79.6963887662207,63.33412346583962,65.07215435690748,77.15114024791231,79.50757324125946,63.25967324593773,65.0019539839421,0.1932449324293514,188.81552496122825,0.0744502199018839,70.20037296537396,243.58928,170.7291065031799,254438.5393164536,178333.23567224442,483.26019,322.0499156480596,504159.5220188853,335769.0791844861,468.74045,229.19871307975745,485481.0207236568,236296.34633433347,2507.22616,1198.752784190193,2582594.0503050056,1215842.3834191875,911.01831,419.8833513994994,936290.7161360407,423281.0242745656,1472.0681,637.0023598675497,1502830.847330158,635248.7195213259,0.37901,100000,0,1107224,11565.388150747887,0,0.0,0,0.0,41687,434.7998662989889,0,0.0,42446,439.2809392496031,1104367,0,39643,0,0,9653,0,0,67,0.689395838556029,0,0.0,0,0.0,0,0.0,0.04929,0.1300493390675707,0.3091905051734632,0.01524,0.3555815768930523,0.6444184231069477,22.793702206718468,3.982413315667453,0.3121801432958034,0.2881269191402252,0.202661207778915,0.1970317297850563,11.452176887443825,6.440757041554486,16.373039191729013,11484.106342668916,45.12279321499104,13.871731569466952,13.834387449668752,8.938760001893682,8.477914193961654,0.6049129989764586,0.8250444049733571,0.7270491803278688,0.5845959595959596,0.1103896103896103,0.765089722675367,0.9145833333333332,0.8784530386740331,0.7523364485981309,0.1176470588235294,0.5316927665920954,0.7585139318885449,0.6631701631701632,0.5224913494809689,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.004460981618728,0.006716788928459,0.0089170551374628,0.0112247595420623,0.0134577993138761,0.0154909194676015,0.0178784631868972,0.0201387540742405,0.0225928578737337,0.0244179850807443,0.0267266065215383,0.0288202512903822,0.0310295465546183,0.0331242649941199,0.035135582010582,0.0372425214781078,0.0393661592068693,0.0415817917272916,0.0436240911647674,0.0583911885994675,0.072439956046256,0.0858218739838677,0.0982437690608896,0.1096066645576294,0.1253159069039537,0.136912780152526,0.1479187946884576,0.1578761855934375,0.1671866791040775,0.1791862706043216,0.1896643119097331,0.2007154818084944,0.2097484723603808,0.2185303725211997,0.2272807794508414,0.236616857681706,0.2446076336564629,0.2515684027817169,0.2573162354018777,0.2634555991255162,0.2686404791427836,0.2738286796024609,0.2786478319263238,0.2833195665905447,0.2879851031557139,0.2915690719841677,0.2952444025573754,0.298590783099759,0.3013870375991448,0.2986466124952914,0.2944733840042882,0.2920107479988182,0.2895298836974402,0.2868506975363609,0.2835434902368856,0.280013291770179,0.2793216450925774,0.2797838243316967,0.2800313401474411,0.2812698412698413,0.2822339420654912,0.2819319841435426,0.283173612658792,0.2849164689245224,0.285658713692946,0.2862728431789205,0.291095676115387,0.2966193350312249,0.3014726203166331,0.3056671934974034,0.3116698292220113,0.3181818181818182,0.3221340915893445,0.3232295142751205,0.3238417551639631,0.3331820931639443,0.3392348392348392,0.3400054839594187,0.3490965013456363,0.0,2.395155060050692,52.94950436110253,145.3009734657831,192.62974245808147,fqhc5_80Compliance_implementation_low_initial_treat_cost,83 -100000,95667,47507,453.3433681415744,4994,50.91619889826168,3942,40.58870875014373,1482,15.135835763638454,77.28108161739658,79.66875891834728,63.29287913429015,65.0557659029883,77.08607129421497,79.47656269372698,63.21842512848887,64.9848433176046,0.1950103231816058,192.19622462030367,0.0744540058012859,70.92258538369833,244.44024,171.2177141146212,255511.55570886517,178972.59673097433,484.15528,321.8012490514228,505459.9600698255,335752.50509728823,465.90304,227.6627777044984,482767.9241535744,234807.64881693237,2520.94605,1196.444446226903,2600099.9404183263,1215608.3144939248,921.94318,419.7826604193906,952074.4143748628,427169.7768503144,1433.4867,617.637291803896,1467251.6750812714,619307.8019666064,0.37837,100000,0,1111092,11614.161623130232,0,0.0,0,0.0,41721,435.4793188873906,0,0.0,42135,436.1901178044676,1098713,0,39480,0,0,9629,0,0,90,0.9407632726018376,0,0.0,0,0.0,0,0.0,0.04994,0.1319872082881835,0.2967561073287945,0.01482,0.3546589817483189,0.6453410182516811,23.11940669264781,4.067097863917032,0.3132927447995941,0.2871638762049721,0.2042110603754439,0.1953323186199898,11.518528697731716,6.373036162977614,15.952052227619388,11485.072804375925,45.60030589382201,14.094861930902518,14.043278610206084,9.036974451013512,8.425190901699901,0.5946220192795535,0.7977031802120141,0.7101214574898785,0.5813664596273292,0.1246753246753246,0.7768795472918351,0.9129554655870444,0.9085872576177284,0.7327188940092166,0.1393939393939394,0.511275415896488,0.7084639498432602,0.6281464530892449,0.5255102040816326,0.1206611570247934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0045215381340037,0.0066776946730669,0.0088793164755006,0.0110855724833716,0.0131868355667793,0.0155800721903868,0.018060603585576,0.0203628929210324,0.0225488490158548,0.0243307256154453,0.0265000616041726,0.0287227478403949,0.0307036071586799,0.0329125943050581,0.034936981089157,0.0369077461724916,0.0386108400971498,0.0405292942743009,0.0423398444828952,0.0570971853647324,0.0719050062303012,0.0844048831179737,0.0971560241154003,0.1091206414517065,0.1245358469008854,0.1363665314961465,0.1471070682970474,0.1565834776843951,0.1658720443270407,0.1777947965655607,0.1890972146960008,0.1994989925393454,0.2083931094148697,0.2170962019458554,0.226517008462639,0.2353802476863236,0.2434186070088878,0.2512612489773657,0.2586345289422989,0.2646540938788749,0.269962511715089,0.2751298285551682,0.2803957115243778,0.2849637593034003,0.2889612391628744,0.293499630589679,0.2962731811697575,0.2994698845151841,0.3016833593192569,0.2994511792230208,0.2962774165105257,0.2929446986386488,0.2904799826250633,0.2881603239830861,0.2855281112490992,0.2817443351859769,0.2819800874051194,0.2827405875617384,0.2835999215392571,0.2828994193669226,0.2838648375794287,0.2834630799252995,0.284984998432672,0.2869173945475107,0.2879067710636527,0.2905180506955705,0.2952363020146865,0.2985095465810325,0.3020825116352449,0.3057137690986348,0.3071090047393365,0.3106977905380102,0.3135961624943786,0.3162558847964553,0.316915995397008,0.3213213213213213,0.3253370340999207,0.326017130620985,0.3394146712276701,0.0,2.393782214445173,53.79289607451365,144.34213074441206,197.05210139183265,fqhc5_80Compliance_implementation_low_initial_treat_cost,84 -100000,95731,47934,456.38298983610326,4866,49.55552537840407,3851,39.70500673762941,1466,15.010811544849632,77.3612597271838,79.72750940447843,63.34108899169471,65.0895422288538,77.17397722772712,79.54109326874017,63.270444813687725,65.02104083184477,0.1872824994566855,186.4161357382557,0.0706441780069866,68.50139700902957,243.19922,170.3051741490756,254044.37434060025,177899.7128924545,488.04049,325.3355678891788,509235.68123178487,339275.1437770197,465.72031,227.72448603629243,483216.9203288381,235372.5236994568,2497.05943,1174.146807306428,2579081.4260793263,1197175.227780372,875.99645,399.765894714488,904134.386980184,406666.94666773325,1425.28618,607.121874688211,1461777.5851082725,611522.3580288374,0.38078,100000,0,1105451,11547.471560936374,0,0.0,0,0.0,41915,437.29826284066814,0,0.0,42074,436.15965570191474,1107525,0,39752,0,0,9563,0,0,96,0.9923640200144156,0,0.0,0,0.0,0,0.0,0.04866,0.1277903251221177,0.3012741471434443,0.01466,0.3631889763779528,0.6368110236220472,23.3317752526118,4.0763272622681725,0.3277070890677746,0.2729161256816411,0.1981303557517527,0.2012464294988314,11.439846693126425,6.240037998046807,15.67271935092235,11566.22253431019,44.2145333874978,12.823983015218694,14.562332023588612,8.382425961639235,8.44579238705126,0.5925733575694625,0.8001902949571836,0.7171156893819335,0.580602883355177,0.12,0.7553648068669528,0.9216152019002376,0.8736842105263158,0.7318435754189944,0.1567567567567567,0.5219657483246463,0.719047619047619,0.6496598639455783,0.5342465753424658,0.1084745762711864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025526483726866,0.0047550490712953,0.0070832741369162,0.0093771271245847,0.011542764161497,0.0138795543878943,0.0161217955254624,0.0182978506152039,0.0204995552465569,0.0228296478296478,0.0248431284091375,0.0268682469906741,0.0289931091226987,0.0309673431544246,0.0331462065549409,0.0352125052984171,0.0372499067975643,0.0391432485160433,0.0415622497894331,0.0435616124360537,0.0578850651520213,0.0717993803901867,0.0854670372895578,0.098447012312448,0.1097491568296795,0.125499439781832,0.1371145608007804,0.1479290570373759,0.1576226838254926,0.1674884239410049,0.1786225681771691,0.1897741530740276,0.200721833282602,0.2099044746103569,0.2190770380793246,0.2282454742619395,0.2358338071190484,0.2435174366349092,0.2510908369694565,0.2578755249396391,0.2641276079292608,0.270586586305978,0.2769076186535847,0.2822786173229477,0.2869468275895497,0.291099257656949,0.2946859903381642,0.2984940065014221,0.3026067392484936,0.3050784905560901,0.3014379787662948,0.2977056288937069,0.2958510070507598,0.2928548773103428,0.2911236638052454,0.287951475890729,0.2833343850571086,0.2839697901000457,0.2844175491679274,0.2843857247008197,0.2857862621060292,0.2868469321341932,0.2871433941773527,0.287622737292098,0.2882749035489205,0.289767998335414,0.2907446384891063,0.2959241348992024,0.3001329415057375,0.3051698904315494,0.3103681951660266,0.3143591626882115,0.3194306315266036,0.320492603439213,0.3210219383504582,0.3254700455447857,0.3324287652645861,0.3421368547418967,0.3518826135105204,0.3570863024544735,0.0,2.0750860502319317,50.73945180402068,143.48268156431783,193.60126390362183,fqhc5_80Compliance_implementation_low_initial_treat_cost,85 -100000,95647,47746,455.1318912250253,4876,49.78723849153658,3910,40.252177276861794,1475,14.982174035777389,77.2430810454354,79.6480572307459,63.27207635196621,65.05025706007805,77.05325243743107,79.46388108549507,63.19901062672112,64.98231400662291,0.1898286080043334,184.1761452508308,0.0730657252450939,67.94305345513862,241.80112,169.34524286330543,252805.75449308395,177052.33082407754,484.82,323.1337563834929,506251.26768220647,337206.5055709985,460.61495,224.7391650770392,478140.1507627003,232279.87125261957,2535.29938,1190.7191937198763,2610165.013016613,1204391.5059749673,885.34408,405.9036871965855,908853.074325384,407596.2417043778,1434.78846,621.0696168523518,1458427.8440515646,613510.0005904143,0.37998,100000,0,1099096,11491.170658776542,0,0.0,0,0.0,41654,434.8489759218794,0,0.0,41700,432.5174861731157,1110917,0,39882,0,0,9541,0,0,82,0.8468639894612481,0,0.0,0,0.0,0,0.0,0.04876,0.1283225432917522,0.3025020508613618,0.01475,0.3570727879144595,0.6429272120855405,23.43542214594982,3.971369513142509,0.2987212276214834,0.2915601023017903,0.2038363171355498,0.2058823529411764,11.077249515388006,6.02585820417101,15.87824191873473,11558.154762062246,45.03963758651146,14.121697524950864,13.245563951884773,8.815633660793106,8.856742448882727,0.579539641943734,0.8008771929824562,0.699486301369863,0.5759096612296111,0.0956521739130434,0.727580372250423,0.8981670061099797,0.8696969696969697,0.6201117318435754,0.1153846153846153,0.5153958944281525,0.7272727272727273,0.6324582338902148,0.5631067961165048,0.0898876404494382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0046558334854847,0.00655817589312,0.0091852183013442,0.0115854464821539,0.0138907276337899,0.0162732602600051,0.0184610357784675,0.0204822480366492,0.0224980287343962,0.0245103066352169,0.0265568517909957,0.0286513502951521,0.0306795236329171,0.0328750438677979,0.0347537457734026,0.0368156627130056,0.038601262143984,0.0407747196738022,0.0429751032153134,0.058176840037203,0.0720675423711059,0.0853378130085568,0.0979799787366182,0.1105621014400946,0.1260534451361538,0.1373430228851915,0.1485521153190037,0.1585767790262172,0.1678015982127513,0.1801672511464796,0.1915793125128727,0.2018842237107226,0.2110991874904185,0.2197659297789336,0.2290899409859342,0.2376022894960425,0.2454948101565405,0.2526710616049102,0.2593730651929647,0.2658817530766913,0.2723493940635794,0.2773415757748013,0.2810078913914274,0.2855961271802856,0.2894025595774352,0.2935102690375049,0.2962236015345203,0.3005202184658095,0.3038282571912014,0.3008799471762185,0.2975543291264674,0.2945705824284304,0.2920077521622168,0.2899574619983937,0.2862680210200548,0.2829551936117624,0.2834710336558204,0.2838972923139959,0.2839314408141403,0.2840048015605071,0.2843401155886311,0.2857471890114952,0.2854780315558932,0.2870043470951317,0.2877530786892089,0.2890133760146336,0.2930394869215292,0.2987610122494823,0.3042941363926068,0.3074568217125102,0.3123075289370288,0.3148299490790218,0.3152743000227634,0.3217817120256144,0.3202498821310702,0.3225707257072571,0.3257085020242915,0.3297032398584263,0.3297872340425531,0.0,2.440696388001074,51.31269645327404,145.68520056524952,197.98655466869943,fqhc5_80Compliance_implementation_low_initial_treat_cost,86 -100000,95827,47786,455.1639934465234,4901,50.048524945996434,3911,40.33310027445293,1491,15.319273273712,77.44904619750217,79.77580078309259,63.38601454967061,65.10710084177853,77.26199173165786,79.58929206920105,63.316865878661936,65.03996007961933,0.1870544658443123,186.50871389154133,0.0691486710086763,67.14076215919818,244.23982,171.0037683646297,254875.55699333173,178450.29205404504,486.42433,324.44188959985865,507133.5218675321,338097.7580346445,471.97049,230.6130492916076,489389.8692435327,238288.9629647415,2490.30714,1171.5168935732431,2570737.307856867,1194577.802492245,906.28766,407.3383467802926,935456.4892984232,414953.2064354418,1443.51494,603.390791441506,1484114.0179698833,609546.8841609055,0.37921,100000,0,1110181,11585.252590605987,0,0.0,0,0.0,41828,436.0044663821261,0,0.0,42704,442.46402370939296,1106037,0,39702,0,0,9780,0,0,95,0.9913698644432154,0,0.0,0,0.0,0,0.0,0.04901,0.1292423723003085,0.3042236278310549,0.01491,0.3478515625,0.6521484375,23.42994319196744,4.015338886435118,0.3201227307593965,0.2861160828432626,0.1994374840194323,0.1943237023779084,11.519653947720094,6.311368037585452,15.776533078360275,11446.93849069751,44.78552349539365,13.684429760637702,14.10659473923178,8.74373864136808,8.250760354156078,0.6011250319611353,0.8060768543342269,0.713258785942492,0.5948717948717949,0.1210526315789473,0.780960404380792,0.9098712446351932,0.8997214484679665,0.7405660377358491,0.1533333333333333,0.5227606461086637,0.7320061255742726,0.6382978723404256,0.5404929577464789,0.1131147540983606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204247389688,0.0047641734159123,0.0072549795541485,0.009508233358052,0.0117656629752788,0.0139594554692352,0.0162617375080289,0.0183304585676522,0.0206029637199795,0.0228177343933859,0.0246349336475892,0.0267446633825944,0.0289065471478942,0.0308980087721104,0.0328898514851485,0.0349604834960483,0.0368453736286483,0.0388001202782991,0.0407164600887263,0.0426920674578388,0.0575490789226628,0.0718549727655748,0.0854310326759028,0.0984083626621841,0.1107903360060689,0.1269126722461746,0.1384295768676333,0.1488861715136371,0.1588402210321947,0.1670485694706184,0.1792396025977377,0.1904386429180933,0.2008618443904133,0.209897555068242,0.2185256733914341,0.2283431501475284,0.2365974503145354,0.2447433969885331,0.2508204141677039,0.2567976520835474,0.2626095985233041,0.2678964982450412,0.2726586637107615,0.2774234389183507,0.281716576050761,0.2855230351637824,0.2885595702516421,0.2917184055143053,0.2950838694704813,0.2980495173047875,0.295780121410289,0.2939186412820161,0.2913729063003714,0.2888141150079806,0.2856868594382254,0.2826457344529633,0.2792052772106172,0.2794860102276799,0.2794032984523688,0.2801259708780807,0.2801679298558478,0.2806570986626985,0.2801362465730664,0.2812902080837659,0.28189663392772,0.2827632392334638,0.283745314129485,0.2884232777915941,0.293214497092922,0.2955491011853364,0.2992239667929977,0.3017195906741217,0.3062206939668646,0.3107272178636089,0.3138153587129361,0.3161290322580645,0.3245787156520419,0.3274924471299094,0.3311457478807766,0.3389958474896187,0.0,1.863239583784176,51.8650241906195,145.90964780738457,194.33551192195165,fqhc5_80Compliance_implementation_low_initial_treat_cost,87 -100000,95803,47807,455.0483805308811,4990,50.8856716386752,4010,41.23044163543939,1559,15.813701032326756,77.3497797498425,79.68129682784114,63.33168066437421,65.0592434793484,77.14661860041429,79.4877520803554,63.25386120786514,64.98884493773498,0.2031611494282117,193.54474748573125,0.0778194565090686,70.39854161341452,243.0362,170.2738892688018,253683.0579418181,177733.14225107967,484.4635,323.0326171244023,505040.9486133002,336538.7658996912,471.70273,230.273069871458,489318.7165328852,237937.6418016294,2596.47748,1219.2072754125113,2667096.093024227,1229559.8148265982,919.64581,415.5449161688071,939712.5768504118,413726.3432919562,1510.47718,641.8722389060622,1532247.7375447534,629164.9958452324,0.38018,100000,0,1104710,11531.04808826446,0,0.0,0,0.0,41727,434.8819974322307,0,0.0,42599,441.5832489588009,1106545,0,39684,0,0,9655,0,0,76,0.7932945732388339,0,0.0,1,0.0104380864899846,0,0.0,0.0499,0.1312536167078752,0.3124248496993988,0.01559,0.3569088456349971,0.6430911543650029,23.21031250794921,4.032388628926438,0.3009975062344139,0.2865336658354114,0.2062344139650873,0.2062344139650873,11.031840168127074,6.044316072910421,16.497114758542132,11534.65175307753,46.09720896227969,14.343441650423616,13.70863468165397,9.13930833997471,8.905824290227388,0.5812967581047381,0.7989556135770235,0.7050538525269263,0.5671100362756953,0.1124546553808948,0.7594529364440868,0.9269662921348316,0.8653295128939829,0.6632124352331606,0.1137724550898203,0.5012649078424286,0.6878048780487804,0.6398601398601399,0.5378548895899053,0.1121212121212121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995725023806,0.0046032019629513,0.0068504272636856,0.0094281156976094,0.0117892381243006,0.0140318721042716,0.0161194942903752,0.0182211651337749,0.0205241424424547,0.0228356772912444,0.0248898001025115,0.0267470275376306,0.0289348400563478,0.0309851613102532,0.0330922932505338,0.0351116484288622,0.0371512861653123,0.0388772483040474,0.0409488580869059,0.0430337043554315,0.0579912773105736,0.0723667698485735,0.0854734900102727,0.0978696122841498,0.1105571074685078,0.1262319698828306,0.1374042562220195,0.1481520906071702,0.1581612486245686,0.1671994679139222,0.1784921438886134,0.1900829129954755,0.2007376300100091,0.2098507625867818,0.2184690879883812,0.2270243913250662,0.2351752848867707,0.2440755362103676,0.2515631205673759,0.2584135854069095,0.2652322285846492,0.2705154735599125,0.2763511195751174,0.2808074035940474,0.2845562000922307,0.2889690315592536,0.2926094833510339,0.2961052163415719,0.2991944764096663,0.3027498747660102,0.2999838544750013,0.2974285596356782,0.2939719007799082,0.291765488517383,0.2897504456327985,0.2856049824786913,0.2826506405187411,0.2832724233435487,0.2828100216601572,0.2840714591356439,0.2843230714592796,0.2850296803202714,0.2874441521566662,0.2891936417471837,0.2907594391539455,0.2920016598371285,0.2920759844860289,0.2952752222048963,0.2989164409251927,0.303676412949753,0.3063111832904768,0.30945619017566,0.3119254580701645,0.3159415880742318,0.3178541335080985,0.3184009406231628,0.3261200853398354,0.3329985940951998,0.3345118302964373,0.333076032419915,0.0,2.375369814876916,54.06708836521828,142.6804152184158,205.36467119362183,fqhc5_80Compliance_implementation_low_initial_treat_cost,88 -100000,95795,47808,455.1072602954225,5133,52.226107834438125,4115,42.32997546844825,1486,15.084294587400176,77.41775944651599,79.74524645240135,63.37436231324406,65.09474985453932,77.22681238836972,79.55854601101969,63.301014868835296,65.02562951584086,0.1909470581462642,186.7004413816602,0.0733474444087676,69.12033869845402,243.42846,170.51620782756817,254113.9516676236,178001.1564565668,488.65521,324.5948907982371,509487.74988256174,338227.0156754797,470.54399,229.54366431487213,487082.8331332533,236527.82740925887,2640.5986,1240.5339710097442,2717940.132574769,1256503.1689829885,920.4355,415.29137519653295,944246.7352158254,416984.12984253536,1442.842,620.1821022669988,1466600.177462289,614302.1119054959,0.38182,100000,0,1106493,11550.634166710162,0,0.0,0,0.0,41971,437.47585990918105,0,0.0,42774,442.3404144266402,1108877,0,39838,0,0,9573,0,0,80,0.8351166553577952,0,0.0,2,0.0208779163839448,0,0.0,0.05133,0.1344350741186946,0.2894993181375414,0.01486,0.3648926237161531,0.6351073762838468,23.194866454634607,4.063731404899209,0.3229647630619684,0.282138517618469,0.2012150668286755,0.193681652490887,11.49107601342199,6.1419257959765465,15.773282376693674,11559.379347711169,47.026526866771576,14.259131635676743,15.02233485473776,9.141313651805849,8.603746724551225,0.5946537059538275,0.8001722652885443,0.7140707298720843,0.5905797101449275,0.1003764115432873,0.7594226142742582,0.9156626506024096,0.8783783783783784,0.7198067632850241,0.0988372093023255,0.5230125523012552,0.7134238310708899,0.6506777893639207,0.5475040257648953,0.1008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027035510687633,0.0050378599738477,0.0072246856957311,0.0091304259511283,0.0112259009192223,0.0136202614112952,0.0159820609519926,0.0182187474483546,0.0201046628099511,0.0222806730257501,0.0244774956692873,0.0266688565650759,0.0285047593593881,0.0305245277191537,0.0325520967592258,0.0346316322209483,0.0368005464198118,0.03891849302287,0.0408888334839654,0.0431116154622968,0.057133318031008,0.0720072759965292,0.0852961833181337,0.0989988759677707,0.1114001917060787,0.1269665176920557,0.138400093227252,0.1498410470692056,0.1588787041285627,0.1682398191499619,0.1800073138726955,0.1911907694302197,0.2018546872115624,0.210832059401616,0.2199307806405537,0.2294178817178131,0.2380310106898819,0.2461505632363346,0.2535030981320585,0.2601093271122089,0.266441782285734,0.2722135960867179,0.2762651427491912,0.2809681047065298,0.2851945721111286,0.2894005020426244,0.2927660743497209,0.2965750990149284,0.2999069935670551,0.3026440410418311,0.2995062788451218,0.2965077186963979,0.2946479980900754,0.2910067384668548,0.2889609428207634,0.2854766084102877,0.2818346599416818,0.282393112124034,0.2834713829859461,0.2832174036482362,0.2839096735728126,0.2848488413127867,0.2852389468868277,0.2853785611351291,0.2873192303095494,0.2884281905945078,0.2899943470887507,0.2957377866400797,0.2997776851465888,0.3049550786613833,0.3087692446205096,0.3117912641747165,0.314963571828881,0.3210107978404319,0.3224516369047619,0.3235017626321974,0.3275202692366529,0.3313965137247044,0.3390604026845638,0.3502846299810246,0.0,2.395073766696486,53.97039543820599,148.90472366240877,210.2167959256611,fqhc5_80Compliance_implementation_low_initial_treat_cost,89 -100000,95721,47613,454.0487458342474,5025,51.075521567890014,4033,41.53738469092467,1538,15.67054251418184,77.3893283971574,79.75148335981913,63.35181630130408,65.09439545308737,77.19223131339928,79.55746726356821,63.2771274797211,65.02338113336943,0.1970970837581234,194.01609625091965,0.0746888215829741,71.01431971794625,242.8668,170.08058433724904,253723.6343122199,177683.66851291677,485.70823,323.35639755558395,506867.3018459899,337257.8823409533,463.65549,226.01144564277607,481196.1220630792,233598.5901768089,2601.1445,1212.6082966343472,2680167.5076524485,1229559.800497641,926.20108,421.5677778291714,954683.381912015,427491.5408626842,1496.61246,635.1427985251141,1526504.9884560336,632793.0697224982,0.37997,100000,0,1103940,11532.892468737267,0,0.0,0,0.0,41779,435.8709165177965,0,0.0,42013,435.6306348659124,1110757,0,39835,0,0,9472,0,0,77,0.8044211823946678,0,0.0,1,0.0104470283427878,0,0.0,0.05025,0.1322472826802116,0.3060696517412935,0.01538,0.3493333333333333,0.6506666666666666,23.29252165518188,4.0722296703115335,0.3027522935779816,0.2871311678651128,0.2028266798909,0.2072898586660054,11.15009168158176,5.8835854439973465,16.315512979819623,11482.720246796363,45.95044005772205,14.17384696184264,13.763950495950192,9.050245981793728,8.962396618135493,0.5836846020332259,0.8255613126079447,0.6936936936936937,0.558679706601467,0.1124401913875598,0.7502138579982891,0.918918918918919,0.881619937694704,0.6966292134831461,0.1481481481481481,0.5157122905027933,0.7592319054652881,0.6266666666666667,0.5203125,0.1020092735703245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192926663763,0.0044695794946638,0.0067354412018299,0.0088746281084044,0.011406612175186,0.0134254829713169,0.0156224523071906,0.0179486132936062,0.0201191412835787,0.0219893787923748,0.0239676196331591,0.0260706297580694,0.0281753819911836,0.0303863138066269,0.0324550095395245,0.0347436082921687,0.0367329613102941,0.0386813688370693,0.0405804332460188,0.042431061245325,0.0569107388997953,0.0702767749699157,0.08382542662653,0.0964251918830827,0.1080448623350339,0.1237878707767144,0.1361158252015273,0.1469451630417425,0.1575005875691729,0.1669669090051255,0.1790417936485715,0.190826978203256,0.200993715888582,0.2100515041170488,0.2183518538893167,0.2274086709940406,0.2361692391825984,0.2446186373962527,0.2519060585432267,0.2585669781931464,0.2643403054794362,0.269539605175497,0.2750097521188694,0.2790174296111856,0.2831415950682006,0.2868271431735952,0.2911977994498624,0.294785790516847,0.2988088001345111,0.3014173186859506,0.2977055166950847,0.2948360801965116,0.2930059628200631,0.290008790765373,0.2874887115638,0.2845252069454396,0.2813552917467015,0.2820851688693098,0.282589126484026,0.2836085952761499,0.2842932717383205,0.285933262586959,0.2869409361844025,0.288455978828919,0.2892759726276499,0.290666115232507,0.2902450744834214,0.2937330718221724,0.2977364254964588,0.3026965587520577,0.3074357818837314,0.3122696155871511,0.3142803598200899,0.3179151624548736,0.3203168685927307,0.3276486391776662,0.3298303558024321,0.3343917443937289,0.3344416735937933,0.3427575522850503,0.0,2.3584987661275387,50.43114623731619,147.96543160874154,212.1247506678772,fqhc5_80Compliance_implementation_low_initial_treat_cost,90 -100000,95675,47577,452.66788607264175,4810,49.19780506924484,3839,39.57146590018292,1432,14.622419649856283,77.35982293729873,79.73627137079107,63.33991942654043,65.09035496035646,77.18216739222771,79.56188537066707,63.27348261241511,65.02762336772295,0.1776555450710191,174.3860001240023,0.0664368141253248,62.73159263351147,244.6521,171.41464245149433,255711.62790697676,179163.4621912666,486.92051,324.63953828676904,508371.1732427489,338754.6325448533,467.54644,228.59845285258996,485227.30075777374,236220.5471846591,2460.03948,1156.44750782377,2534561.6723281946,1172065.831211947,859.72148,392.0054626456453,880389.8510582702,391661.1512903192,1379.00334,579.6977502843837,1407862.45100601,576549.3334980569,0.37868,100000,0,1112055,11623.255813953489,0,0.0,0,0.0,42013,438.5471648811079,0,0.0,42329,439.03841128821534,1098093,0,39341,0,0,9771,0,0,71,0.7316435850535667,0,0.0,0,0.0,0,0.0,0.0481,0.1270201753459385,0.2977130977130977,0.01432,0.3587587587587587,0.6412412412412413,23.151464952120964,4.019503119862639,0.310758009898411,0.2880958582964313,0.2104714769471216,0.1906746548580359,11.398428549906033,6.432971852354463,15.137084128085396,11489.04644944227,44.07527961450618,13.731506183542953,13.500379044173895,9.001141038494422,7.842253348294908,0.5972909611878093,0.810126582278481,0.7057837384744342,0.5915841584158416,0.1051912568306011,0.7836206896551724,0.9193548387096774,0.8769716088328076,0.7487684729064039,0.1597222222222222,0.5166106756252333,0.7213114754098361,0.6438356164383562,0.5388429752066116,0.0918367346938775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0046522942196004,0.0070714756759498,0.0093538624037699,0.0118248739222384,0.0138327650262099,0.0161709412160303,0.0184467208096967,0.0206337208114568,0.0226286930190686,0.0246993259163644,0.0268581687612208,0.02927240397562,0.0314041247515985,0.0334615821015606,0.035503142053911,0.0375696213015301,0.0395071204090734,0.0414925248996735,0.0435960770826168,0.0585586526808475,0.0725317529292273,0.0859484875837024,0.0986711278053091,0.1103622844486631,0.1254086652912236,0.1364118783299017,0.1472921880824325,0.1571769081950041,0.1658528209145837,0.1778326078524328,0.1893027284538761,0.199664904149531,0.2079635850357256,0.2162248447751992,0.226065096293343,0.2362628167222662,0.2432687553377983,0.2502210533475412,0.2571902528314838,0.2628634829642642,0.2690990685661528,0.274640062412823,0.2801316183069099,0.2833991903226588,0.2871002250175218,0.2905223209827224,0.2941818551048383,0.2987667075611803,0.3027206405225315,0.2995838367566116,0.2969352602901415,0.2946508882392624,0.2923424850911815,0.2893440075765423,0.2845327473600683,0.2806610474476749,0.281563093445092,0.2827313481173402,0.2826594020974663,0.2833881087541081,0.2837199228133737,0.2839338649743226,0.2853772009883578,0.2871149799119954,0.2886397763164707,0.288453392821845,0.29293244339093,0.2973142003405024,0.3011920217160392,0.301154817755323,0.3037193352677393,0.303687907676869,0.3065444629601575,0.30958597538232,0.3128761949722648,0.3164595331918763,0.3199840605698346,0.3271177410761854,0.3208898944193062,0.0,2.1099479103479344,50.427077395004105,142.935426260831,193.60873209262977,fqhc5_80Compliance_implementation_low_initial_treat_cost,91 -100000,95854,47691,453.5856615269055,4956,50.61864919565172,3946,40.60341769774866,1452,14.824629123458593,77.34109898624328,79.6299276380607,63.34986309044478,65.0435350001295,77.15513245098612,79.44810686994941,63.279972144739816,64.97714616655584,0.1859665352571653,181.82076811129377,0.0698909457049623,66.38883357365444,243.52944,170.65628662026973,254062.8873077806,178037.7309452602,487.15706,324.37954077405465,507651.2925908152,337833.11158016854,465.66051,227.3483027290848,482031.7566298746,234303.53064377944,2524.83496,1189.5691198168447,2599578.431781668,1206557.962961216,913.73509,419.0452211137176,938590.7421703842,422503.9133616924,1411.79516,598.7069738861616,1442343.6684958374,598612.7189000282,0.38006,100000,0,1106952,11548.313059444572,0,0.0,0,0.0,41816,435.6312725603522,0,0.0,42068,435.0783483214055,1106801,0,39712,0,0,9928,0,0,89,0.9284954201180964,0,0.0,0,0.0,0,0.0,0.04956,0.1304004630847761,0.2929782082324455,0.01452,0.3617681271810779,0.638231872818922,23.297910850510323,3.9860460142280703,0.3220983274201723,0.2883933096806893,0.1964014191586416,0.1931069437404967,11.394989201219143,6.253989245254264,15.52760825950001,11540.2450520366,45.50832693463027,14.190684527722995,14.50804312756028,8.42948813764733,8.380111141699668,0.6008616320324379,0.8154657293497364,0.7018095987411487,0.5780645161290323,0.1351706036745406,0.7756622516556292,0.9333333333333332,0.8337950138504155,0.7513812154696132,0.2222222222222222,0.5237399561723886,0.7247278382581649,0.6494505494505495,0.5252525252525253,0.1099830795262267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.0046508800194546,0.0068973212021625,0.0089853189026742,0.0112516008375175,0.0136367336969795,0.0158012164185947,0.0181280285641418,0.020427757236533,0.0226786828564706,0.0248496829770452,0.0267273827471975,0.0290356706346353,0.0311850525752618,0.0331378994116374,0.0351945505212096,0.0371833316099679,0.0391429577902567,0.0411216311614966,0.0431747484940855,0.05774584736661,0.0720675528801939,0.0853147585628993,0.0975699403511719,0.1098452142781931,0.1252481939926492,0.1366313559322033,0.1479036441723009,0.1580401822391515,0.1673078365606146,0.1790294813858403,0.1904422099686452,0.2013433030474286,0.210985312117503,0.2201005356769658,0.2291265146983895,0.2372410561895518,0.2456475774888659,0.2525924077057475,0.2589513700433971,0.2645769475449656,0.2693980637014171,0.2758347428057767,0.2806515360201209,0.2854350781781101,0.2894156492170463,0.2942154962166218,0.2970949081431568,0.3005301952670374,0.3032824719427117,0.3014041316978696,0.297725024727992,0.2944768873566453,0.2915685282855285,0.2890760796897981,0.2849361181240915,0.2812722412893226,0.281158706712621,0.2808137147549959,0.2816006585894017,0.2815462891688414,0.2838492730689348,0.2847586293671098,0.2851058106169297,0.2868512444530194,0.288519795257495,0.2895591250854408,0.2943062847800798,0.299986032544172,0.3049093566096607,0.3084903950706777,0.3119096617592739,0.315390874381924,0.3194119864304561,0.3237996999249812,0.3300294985250737,0.3324714828897338,0.337594886136636,0.3411924119241192,0.35041761579347,0.0,2.138361208049914,52.7658384767945,146.1758865214843,198.95860652575968,fqhc5_80Compliance_implementation_low_initial_treat_cost,92 -100000,95648,47614,454.2907326865172,5074,51.79407828705253,4029,41.600451656072266,1467,15.065657410505189,77.31769350596971,79.74112375187164,63.289715480586615,65.08181976431858,77.12556725275012,79.54858750641014,63.21631591582427,65.01025261881789,0.1921262532195982,192.53624546149692,0.0733995647623473,71.5671455006941,242.76736,170.05350732035774,253812.39544998328,177790.20952981603,487.32514,324.7459555798622,508942.0583807293,338969.17506356625,468.87016,229.0279447930104,486552.51547340245,236748.6854968751,2582.06588,1217.120541322348,2667931.18517899,1241215.3826140412,930.45754,419.6009559172768,961811.538139846,428234.5088396132,1423.99764,612.173120400339,1462953.161592506,616919.1294819486,0.37954,100000,0,1103488,11536.92706590833,0,0.0,0,0.0,42059,439.16234526597526,0,0.0,42426,440.0719304115089,1104261,0,39588,0,0,9636,0,0,80,0.8154901304784209,0,0.0,0,0.0,0,0.0,0.05074,0.1336881488117194,0.2891210090658258,0.01467,0.3619353619353619,0.6380646380646381,23.163389278085187,4.105032948307813,0.319434102755026,0.2841896252171755,0.202283445023579,0.1940928270042194,11.261701790215604,5.9206180050031305,15.60935465066456,11521.741349222602,46.20508915089949,13.969801229856,14.71152098280093,9.091309958769244,8.432456979473303,0.5909655001241003,0.8043668122270743,0.7024087024087025,0.5717791411042945,0.1150895140664961,0.7510271158586689,0.9297520661157024,0.8505434782608695,0.6834170854271356,0.0903614457831325,0.5216927453769559,0.7125567322239031,0.6430903155603918,0.5357142857142857,0.1217532467532467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024313153415998,0.0048168579888857,0.0070862944162436,0.0092887122836614,0.011649556909866,0.0136919315403422,0.0160161589782302,0.0181039855331582,0.0202327223603819,0.0222124274790381,0.0242262485243545,0.0261988977543801,0.0283078127091678,0.0304408821769717,0.0325150331659537,0.034448503161315,0.0365478128337255,0.0384427617296646,0.0405240865429644,0.0427573261028261,0.0574680210684725,0.0719120667253447,0.085165383443799,0.0979008457706202,0.1102510217228306,0.1258247985002701,0.1371838469713071,0.1477103142455123,0.1575861958300795,0.1675546198629401,0.1800176910962007,0.1918013068495822,0.2022503730652347,0.2114318883753532,0.220512707474596,0.230588339692963,0.239542238961097,0.246697077208988,0.2536277960713069,0.2599672247624941,0.2661093292266364,0.2718911265314719,0.2774126313046979,0.2814104101703046,0.2850541726959884,0.2887004535594557,0.2917474574362951,0.2943966229704128,0.2975558604976309,0.3004619242444239,0.2985958724303658,0.294978763178513,0.2928298063935164,0.2902253687655905,0.2875853792245121,0.2837815113203797,0.280656836249269,0.2810884220171477,0.2814615724832443,0.2814567774210143,0.2821356839991073,0.2822125558429344,0.2837239152037098,0.2844793278797258,0.2867229288006656,0.2883509911581986,0.2872915727805317,0.2910139892676572,0.2936689549961861,0.2965346728935285,0.3014274098834583,0.3050874236359806,0.3071008876109514,0.3116755860405517,0.319925512104283,0.3242989557667488,0.3285258843175953,0.3315454906634882,0.3341470029834554,0.3318250377073906,0.0,1.983284027105652,53.1562349517084,147.0899252505196,206.63372333507607,fqhc5_80Compliance_implementation_low_initial_treat_cost,93 -100000,95690,47568,454.2585432124569,4911,49.76486571219564,3910,40.06688264186435,1559,15.7069704253318,77.34880342590687,79.70523681628679,63.338894218876014,65.07645733228021,77.14175465550225,79.50778248647956,63.2580895511929,65.00317015212043,0.2070487704046115,197.4543298072291,0.0808046676831111,73.28718015978097,244.22508,171.0250753247878,255225.28999895495,178728.26348081074,486.26634,323.7938118810956,507369.0772285505,337578.5786196005,464.27955,226.8303705439724,480618.3613752743,233483.83904979585,2532.67026,1210.8566257212983,2594413.0003135125,1213231.8217356305,909.10871,424.4092087084158,930003.6367436514,423561.8814171189,1510.52652,663.8229724791661,1523668.303898004,646052.4033140882,0.38039,100000,0,1110114,11601.149545407045,0,0.0,0,0.0,41840,436.3987877521162,0,0.0,42047,434.8103250078378,1102901,0,39529,0,0,9693,0,0,85,0.8882850872609468,0,0.0,1,0.0104504127913052,0,0.0,0.04911,0.1291043402823418,0.317450621054775,0.01559,0.3547507788161994,0.6452492211838006,23.41310548791719,4.057302965267495,0.2923273657289003,0.2872122762148337,0.2140664961636828,0.2063938618925831,11.485282621664243,6.376866244095071,16.897131887633446,11508.2816012188,45.09966556324237,13.790733139297208,13.019812396802692,9.320482751095597,8.968637276046874,0.5843989769820972,0.8227960819234195,0.6876640419947506,0.5806451612903226,0.1102850061957868,0.7483974358974359,0.9224489795918368,0.8163265306122449,0.7554585152838428,0.1559139784946236,0.5075131480090158,0.7456556082148499,0.6325,0.5148026315789473,0.0966183574879227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.0046831285731662,0.0069605803865861,0.0091427178252521,0.0113978363429315,0.0135287830203084,0.0154830949881252,0.0179238542410942,0.0201113893004956,0.0223530013817102,0.0244654900272635,0.0263560322266126,0.0281290481771636,0.0303192529830232,0.0323286088589053,0.0344289566951508,0.0361872417970408,0.0381821954762398,0.0401139577441357,0.0419714494112743,0.0565535248041775,0.0707011502674188,0.0836988227393868,0.0970063660756563,0.1093364278932376,0.1254245178218136,0.1369560602844406,0.1474681859325914,0.1576298354349219,0.1670153753715089,0.1792186523584804,0.1904313572711728,0.2014272660023497,0.2109298942233015,0.2195100477626395,0.2291708225280936,0.2384617962840895,0.2463573921855646,0.2528927496735366,0.2600804372486336,0.2666558618214654,0.2713627216996583,0.2757673686328823,0.2795546874063777,0.2840351644081791,0.2885610128577762,0.2929965757704516,0.2961306309168308,0.298778675282714,0.3011776794182738,0.298247501714839,0.2950952629697853,0.292772882119429,0.289737035913876,0.2874129715125514,0.2836083372838071,0.279872921540115,0.2803143161168863,0.281191964970269,0.282414744902502,0.2834567809100916,0.284854682030912,0.2874921826141338,0.2883895965084172,0.2885946217762984,0.2906488252683989,0.2915483357946155,0.2952694235588972,0.2994375938799036,0.3020820986922682,0.3046931735657225,0.3073079989370183,0.310772344866848,0.3145672599495837,0.3175872776889056,0.3226227175717334,0.3262040313894445,0.3304027806174606,0.3352713178294573,0.3419131771033423,0.0,3.003071614861955,53.47753234615352,138.98472126186277,195.93602260630857,fqhc5_80Compliance_implementation_low_initial_treat_cost,94 -100000,95631,47495,453.5558553188819,4783,48.72896863987619,3768,38.75312398699167,1454,14.848741516872144,77.26744378178137,79.68250427051073,63.28338998351626,65.06949496838749,77.08161208018687,79.49913674957041,63.21301277393805,65.00222520744707,0.1858317015944948,183.3675209403225,0.0703772095782113,67.26976094041959,243.34618,170.52093367357588,254463.6990097353,178311.35685455124,485.96821,324.06079466460534,507543.3698277755,338239.04870241374,463.86812,227.08981474313688,480394.2863715741,233976.55791218363,2438.25568,1160.1355192062554,2513730.5789963505,1177218.1920154088,865.18303,404.0498695543675,889137.8005040206,406937.30020010966,1404.40564,606.088223332347,1436468.0072361473,607040.5544968362,0.37666,100000,0,1106119,11566.531773169789,0,0.0,0,0.0,41763,436.05107130532986,0,0.0,41910,433.614622873336,1103388,0,39584,0,0,9702,0,0,88,0.9097468394139976,0,0.0,1,0.0104568602231493,0,0.0,0.04783,0.1269845483990867,0.3039933096383023,0.01454,0.3595099417553725,0.6404900582446275,23.155636190659568,4.023816339714227,0.3139596602972399,0.2778662420382166,0.2109872611464968,0.1971868365180467,11.467315645422172,6.315520459454919,15.718758534771968,11374.101556260834,43.58817189444315,12.981185833098412,13.490539845310876,8.8620918868399,8.25435432919397,0.589968152866242,0.8194842406876791,0.6906170752324599,0.5723270440251572,0.1251682368775235,0.7574503311258278,0.9136069114470844,0.8619718309859155,0.7201834862385321,0.1686046511627907,0.5109375,0.7448630136986302,0.6171497584541062,0.5164644714038128,0.1120840630472854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002269641518228,0.0042283512472115,0.0067413905133203,0.0087594504511828,0.0108546373818655,0.0130769544139813,0.0151926096620918,0.0173763897538514,0.019519626990051,0.0217918915320887,0.0237526280703553,0.0257221514566298,0.027991523331413,0.0297987655974693,0.031905120715104,0.0341162848399636,0.0363320007456967,0.0384347916342311,0.0402442322494747,0.0420472079736436,0.0567069028583372,0.0708338133791384,0.0841087143727289,0.0972769201608996,0.1098747967822984,0.124923233307215,0.136357360578608,0.1471334185848252,0.1569067864591689,0.166612972508591,0.1787986627844279,0.1901651773625778,0.2013559395812475,0.2098496619034072,0.217753120665742,0.2269610395365067,0.2349868868924725,0.2430386013073366,0.2506016164184526,0.2572132462472785,0.2629459015254983,0.2686968623185863,0.2734621894492643,0.2777564579185954,0.281027398925437,0.2845246613535986,0.2880492597274195,0.2903943737202884,0.2927369238736406,0.2963618122293801,0.2936017137544965,0.2908395581417743,0.2885408891830613,0.2851962087499277,0.2828483965881059,0.2791551882460973,0.2764101508699162,0.2767756205455886,0.2774596031908365,0.2775343734416186,0.2775700235593283,0.2779018077644967,0.2793037802556432,0.2796211699164345,0.2813609751415682,0.2835436451151294,0.2858156430922919,0.2900823083904484,0.2936610608020699,0.2980030113321182,0.3031659737767828,0.304057661505606,0.3072151898734177,0.3125573569899051,0.3147241574091508,0.3152938371677196,0.3166461916461916,0.3179695431472081,0.3239674065748806,0.3232844109480365,0.0,2.5537252229702534,52.29385930918753,133.93851706112278,188.86948265523097,fqhc5_80Compliance_implementation_low_initial_treat_cost,95 -100000,95830,47839,455.6088907440258,4922,50.0260878639257,3902,40.05008869873735,1487,15.120525931336742,77.40182060844235,79.71453974976852,63.36325590393732,65.07533433892401,77.2155535185461,79.53284552266209,63.29235428999899,65.00867400592958,0.1862670898962477,181.69422710643343,0.0709016139383322,66.66033299443086,244.266,171.15631902175744,254894.89721381612,178603.8877405379,487.84176,324.2615540485316,508415.0787853491,337717.1937269452,473.3876,231.34353077733715,489261.2125639152,237840.35894957348,2515.20158,1190.6335561687529,2580103.861003861,1197928.5040892751,891.55672,415.1195371531634,911348.6799540854,414332.0598555396,1440.38922,613.2746064958696,1465257.6020035478,608208.2081352093,0.38086,100000,0,1110300,11586.131691537095,0,0.0,0,0.0,41951,437.0865073567776,0,0.0,42783,441.7718877178337,1102862,0,39616,0,0,9515,0,0,89,0.918292810184702,0,0.0,1,0.0104351455702807,0,0.0,0.04922,0.1292338392060074,0.3021129622104835,0.01487,0.3554947203754399,0.6445052796245601,23.11915479745179,4.024333999717807,0.3157355202460277,0.2780625320348539,0.207842132239877,0.1983598154792414,11.49549074854774,6.416746699561264,15.7907067394732,11543.745202584849,44.6672256495227,13.404235565979386,13.87240009110467,9.004580432537463,8.386009559901172,0.583803177857509,0.8046082949308756,0.6858766233766234,0.6041923551171393,0.0904392764857881,0.7676767676767676,0.9264705882352942,0.8470254957507082,0.7525252525252525,0.1428571428571428,0.5033161385408991,0.7093596059113301,0.621160409556314,0.5562805872756933,0.0766721044045677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871645841349,0.0043478701517193,0.0066245992776853,0.0089379119818804,0.0113052937648051,0.0134879270328596,0.0155939458798348,0.0174831598285364,0.0196966289837888,0.0219849953430293,0.0239454666598329,0.0263992527738717,0.0286175385216327,0.0307763591433278,0.0327268601604884,0.0350596209882411,0.0369335237976937,0.0387714259049949,0.0406950777444249,0.0427732911497793,0.0577996099412826,0.0711926068411809,0.0843969401655663,0.0976270759146629,0.1093639743441215,0.1253168567807351,0.1366597807087239,0.147709152758584,0.1572392153514482,0.1671272789596589,0.1794557384102398,0.1921892391316093,0.2031614970938128,0.2123807754919205,0.2215358234220766,0.2304737657737436,0.2384802390935855,0.2469139966273187,0.2543407010898533,0.2609307594603563,0.2669819283377077,0.2728356394913986,0.2787065500118231,0.2830195458465076,0.2869383692987353,0.2910957639324888,0.2934184872269159,0.2965479577321682,0.2998423242949828,0.3020820986922682,0.2987641053197206,0.2963817053752814,0.2935345735345735,0.2903346527527887,0.2880879459067572,0.2849382791400278,0.2814017277255817,0.2811290243543882,0.2808845526244221,0.2816393908196954,0.2826123391497048,0.2838907327035997,0.2842492823563672,0.2853812336249389,0.2874943416005527,0.2868505319698378,0.2856014443692168,0.2899310944192687,0.2937239944521498,0.2991795234169512,0.304096733441617,0.3095325920851557,0.3123091305702711,0.3151209980459943,0.3186924493554328,0.3205769454460858,0.3234497290788681,0.3269346130773845,0.3307193077339102,0.3245481927710843,0.0,2.5175726620336043,51.01388156450477,141.42272293994293,199.63553708166597,fqhc5_80Compliance_implementation_low_initial_treat_cost,96 -100000,95700,47663,454.5454545454545,4948,50.543364681295714,3939,40.6060606060606,1507,15.433646812957155,77.32145341825886,79.70839871802394,63.3143933609397,65.07990158082757,77.1309142743097,79.52082603410213,63.2429389320986,65.0118525771639,0.1905391439491524,187.5726839218146,0.0714544288410934,68.04900366365985,243.74878,170.79541801858605,254700.91954022984,178469.61130468763,488.11349,324.61057863631527,509510.9195402299,338661.48237859475,465.29398,227.36367972321875,482939.8119122257,235062.34589476,2535.51342,1189.4261304240515,2616100.240334378,1209530.4497638985,895.59195,411.7849711185586,923898.8714733544,418353.4389953585,1461.71058,618.2911304044322,1498031.473354232,620449.3750497417,0.37957,100000,0,1107949,11577.314524555904,0,0.0,0,0.0,41969,437.9728317659352,0,0.0,42180,437.4921630094044,1104502,0,39552,0,0,9614,0,0,94,0.9717868338557992,0,0.0,0,0.0,0,0.0,0.04948,0.1303580367257686,0.3045675020210185,0.01507,0.3510267338240992,0.6489732661759008,23.316161403079963,4.107478481318216,0.2977913175932978,0.2911906575272912,0.2056359482102056,0.2053820766692053,11.629095665173356,6.397995235058735,16.0835518766089,11520.393262752768,45.215599376108045,14.0035608099676,13.37848042388206,9.045117137185796,8.788441005072588,0.5917745620715917,0.8116826503923278,0.7067348678601876,0.5975308641975309,0.107540173053152,0.770940170940171,0.9114470842332614,0.8919753086419753,0.7725118483412322,0.1627906976744186,0.5160707836764175,0.7441520467836257,0.6360424028268551,0.5358931552587646,0.0926216640502354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088027883602,0.00430990771727,0.0065169725515673,0.0088007235698824,0.0110491616474035,0.0130388721375601,0.0150116768818136,0.0173881968552174,0.0196178656498226,0.022038200913055,0.0242979731184449,0.0264430729418047,0.0285047113525079,0.030696466660484,0.032668944375058,0.0345836521163747,0.0366982930062976,0.0384922735244974,0.0406734889138483,0.0427002126151665,0.0571756841445581,0.071245380983785,0.0840015112715671,0.0971523583019384,0.1101920236336779,0.1260120868304351,0.1375668676233336,0.1474795241290432,0.1573120164151669,0.1665719280558564,0.1794543123969968,0.1909838727134971,0.2019488004872001,0.2106972928630024,0.2207215134183898,0.229164821539279,0.237589087542801,0.2455296431581905,0.2529392424293958,0.2598481986468386,0.2660538790611631,0.2716892041934994,0.2771731415322008,0.2815745654491656,0.2855026711996115,0.2892900653449994,0.2927381145850262,0.2952608380860442,0.2986152375539308,0.301810520771611,0.2990526103608144,0.2957164809834806,0.2931477606280634,0.2905410273035084,0.287508526350129,0.2851660448902208,0.2814914290228296,0.2824862457427299,0.2824298778930159,0.2823460327063722,0.2837272693327359,0.2843417140832037,0.2859944912778566,0.2862781829129591,0.2870201535508637,0.2888987265956615,0.2902775403202827,0.2929838329932506,0.2961224561280605,0.3027871120774856,0.3067512460353421,0.3084954157613016,0.3135807143758677,0.3145389258155703,0.3181690008459442,0.3238163216749941,0.3272532188841202,0.3312398703403565,0.3353424657534246,0.3346065699006875,0.0,2.1855049767095487,50.816307985606215,149.9629312683344,197.9097105985296,fqhc5_80Compliance_implementation_low_initial_treat_cost,97 -100000,95693,47604,453.1261429780653,4996,50.72471340641426,3945,40.514980197088605,1499,15.204873919722449,77.3455376358958,79.73168147056423,63.32130932583449,65.08690683548608,77.14808928055855,79.53933692920661,63.24539491584436,65.01555561630136,0.1974483553372437,192.34454135761325,0.0759144099901334,71.3512191847201,243.76264,170.64224115285916,254732.8853730158,178321.576737122,483.39738,322.1449533058324,504446.5530394072,335938.8531347987,470.82127,230.19704685177317,487197.6947112119,236925.09785837636,2531.91298,1206.0559185286204,2603694.429059597,1218333.4420641772,888.24519,410.4537766041824,912686.3929441024,413529.60630765074,1453.71784,630.2518326592808,1477086.4535545963,623428.2823273469,0.37905,100000,0,1108012,11578.767516955264,0,0.0,0,0.0,41677,434.7862435078846,0,0.0,42553,439.8545348144588,1106271,0,39626,0,0,9621,0,0,82,0.8569069837919179,0,0.0,0,0.0,0,0.0,0.04996,0.1318031921910038,0.3000400320256205,0.01499,0.3577486507324595,0.6422513492675405,23.19926080099316,4.070073236970299,0.3054499366286438,0.294296577946768,0.2027883396704689,0.1974651457541191,11.81414121529235,6.521178632940975,16.022771591268697,11544.9967270811,45.294907147224734,14.275176767640229,13.733865831501513,8.800441272180404,8.485423275902598,0.6032953105196451,0.8234280792420328,0.7186721991701245,0.5875,0.1129653401797175,0.7669111654441728,0.917004048582996,0.8835227272727273,0.7658536585365854,0.1136363636363636,0.5294334069168506,0.7541229385307346,0.6506447831184057,0.5260504201680672,0.1127694859038142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201856148491,0.0045438409655662,0.0069343621503629,0.0091973414093782,0.0115162366729063,0.0140252597270319,0.0163977891538006,0.0185860318821931,0.0206560863874345,0.0226211444722074,0.0251781959899492,0.0270744959480695,0.0293672917288128,0.03155172236133,0.0333639487724584,0.0353254970071023,0.0373428080134247,0.0394071798490965,0.0416068717372766,0.0433849423826293,0.0584641413666698,0.0726134781835117,0.0863341064850285,0.0991477272727272,0.1113584101601232,0.1265813412312249,0.1376818514627701,0.1485355202897007,0.1585597913236834,0.1679995706081262,0.1791054430202348,0.1903818034118602,0.2011322192586141,0.2106351777271931,0.2196021445005889,0.2294497019126349,0.2378863476542879,0.2456653577415979,0.2527456319491717,0.2588233947317207,0.2653778965513252,0.2709920987423442,0.2767031615786611,0.2805894041320533,0.284503147400211,0.2888342351205115,0.2932162749456752,0.2961877576910878,0.3000761221567084,0.3021599747740172,0.2993631427230676,0.2956807447463892,0.2930456375650612,0.2904177399162506,0.2880822120360786,0.284592992242391,0.2806499960558491,0.2804568319979026,0.2812169943102449,0.2816447239493328,0.2830792255167898,0.2836525172754195,0.2837798241942235,0.2850039023302486,0.2847585247709941,0.2862155909646227,0.2882346267302019,0.2924433879644689,0.2974670295164329,0.2988510285466103,0.3048741925283462,0.3105155073455847,0.3139491398653702,0.3169464729353308,0.321235305094234,0.3286762964717026,0.3382531953743152,0.350575873913922,0.3508391987005955,0.3502479969477299,0.0,2.735081318361547,52.7478107127337,141.67954677242113,199.4690057742473,fqhc5_80Compliance_implementation_low_initial_treat_cost,98 -100000,95615,47785,455.49338492914296,4915,50.15949380327355,3937,40.63170004706375,1488,15.185901793651624,77.23812690061078,79.6698740942224,63.25655152000609,65.05458841751792,77.04351609730651,79.47710172150455,63.18332206412629,64.98423048894082,0.1946108033042719,192.7723727178403,0.0732294558797974,70.35792857709566,243.10286,170.35835743198086,254251.80149558125,178171.1629262991,486.41202,323.4687702336409,508192.365214663,337776.3742442513,470.29651,229.35354610977865,488564.50347748783,237284.9738345453,2546.87487,1197.0602149056167,2631653.5062490194,1219934.994410517,887.84139,407.2431414510954,916524.520211264,413890.3778390394,1443.38316,619.7699739858799,1475456.047691262,619426.627010103,0.38084,100000,0,1105013,11556.900067980963,0,0.0,0,0.0,41742,436.00899440464366,0,0.0,42531,441.49976468127386,1101472,0,39620,0,0,9689,0,0,86,0.8994404643622863,0,0.0,0,0.0,0,0.0,0.04915,0.1290568217624199,0.3027466937945066,0.01488,0.3455466770610017,0.6544533229389983,22.96372880271596,4.040008577925634,0.3157226314452629,0.2824485648971298,0.1953263906527813,0.206502413004826,11.361097210949286,6.202492770588989,16.135767483895993,11541.758712240764,45.54969486370402,13.740476442300448,14.192888357157337,8.79830786918243,8.81802219506381,0.5847091694183388,0.8030575539568345,0.7047465808527755,0.5851755526657998,0.1020910209102091,0.7720891824938068,0.9458333333333332,0.8853868194842407,0.7095238095238096,0.1337209302325581,0.5014673514306677,0.694620253164557,0.6342281879194631,0.5384615384615384,0.093603744149766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0044323633523678,0.006711477540411,0.0089039773131536,0.0110629376323074,0.0131116476664934,0.0152990973532561,0.0176316757242675,0.019638729210564,0.0217959091700552,0.0238241812361487,0.0260883860957841,0.0282517856775282,0.0304939022504458,0.0325085711925317,0.0344552857305451,0.0367291085701253,0.0389030280995169,0.0411080113257828,0.0433140687266581,0.0582602423241372,0.0723986167871738,0.0855684074505972,0.0985550593984329,0.1102686491509673,0.1258592384684637,0.1381526531045838,0.1489570342894296,0.1585552429147632,0.1691066691012986,0.1806147439286215,0.1918094804505002,0.2022205031542476,0.2111202410298548,0.2197675059225387,0.227970135013701,0.2364097918833383,0.2442420211266811,0.2524758666954712,0.2595752009184845,0.2660626029654036,0.2717040858198019,0.2772973678279539,0.2813893395829577,0.2855054455083692,0.2897419107745148,0.2937198916097953,0.2971908034837607,0.3009294114592798,0.3025162305464834,0.3000323790507541,0.2969178790595049,0.2946967559943582,0.2912306601247594,0.2885888074240418,0.2855192932948899,0.2819187723914904,0.2821651128759105,0.2819068812050667,0.2821997105643994,0.2824796329244311,0.2837888579277089,0.2837280398685009,0.2845552078676799,0.2859133275679831,0.2881731069680242,0.2894796831367185,0.2942376498650429,0.2996675415573053,0.304604718950644,0.3066255778120185,0.3100738396624473,0.3126834447011803,0.3160437901094752,0.3209107806691449,0.322606972134779,0.3297920095765375,0.3322803553800592,0.3307214266414482,0.3399550224887556,0.0,2.1127073127023714,53.09503809751452,146.37306224194845,197.92569812416892,fqhc5_80Compliance_implementation_low_initial_treat_cost,99 -100000,95724,41762,392.7646149346036,7070,72.72993188750992,5530,57.24792110651456,2219,22.85738163887844,77.33641368994157,79.71263490912669,63.332022412709286,65.09001635055755,77.06584239033786,79.43889857547673,63.23276680822168,64.99130644492672,0.2705712996037022,273.7363336499641,0.0992556044876096,98.70990563082673,85.30214,59.94696943826245,89112.59454264343,62624.80614920234,254.57861,158.47623791934328,265409.3644227153,165016.49938809758,278.18956,133.22793077059936,286685.00062680204,136155.25463237485,3988.15132,1802.315594962972,4134120.419121641,1851063.701915544,1326.62194,585.0201967904951,1373545.881910493,599170.9089574032,2189.26438,915.8613234558816,2258255.129330158,934673.708408566,0.37993,100000,0,387737,4050.572479211065,0,0.0,0,0.0,21608,225.17863858593452,0,0.0,25897,266.725168191885,2041330,0,73352,0,0,0,0,0,46,0.4701015419330575,0,0.0,0,0.0,0,0.0,0.0707,0.1860869107467165,0.3138613861386138,0.02219,0.3191374663072776,0.6808625336927224,25.11404004564892,4.563445149287317,0.3361663652802893,0.2014466546112115,0.2300180831826401,0.2323688969258589,11.065017988523294,5.419266597288342,23.79668554105776,12845.17391291586,62.6373282302621,13.165786058521483,20.833100762022625,14.274380381411603,14.364061028306391,0.5488245931283906,0.7639138240574507,0.6966110812264659,0.5880503144654088,0.1097276264591439,0.6989720998531571,0.9206798866855525,0.8733031674208145,0.7169117647058824,0.1559322033898305,0.4997600767754319,0.6911957950065704,0.6414961185603387,0.553,0.0959595959595959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017733371164525,0.0037322893741315,0.006284582973755,0.0086084234490609,0.0106914336286786,0.0130364817794797,0.0153581007352716,0.0176638758423524,0.0197008577591935,0.0219990582069078,0.0242324842396596,0.0262314942198312,0.0283619386485402,0.0303336183011113,0.0326588312988205,0.0349054751051712,0.0368821056555323,0.0387990953793804,0.0406468576892297,0.0426956929326597,0.0578567624855123,0.0711005095048282,0.0841958452616897,0.0967897912418273,0.1089517947853213,0.1244623854762181,0.1384796387764187,0.1505008187482721,0.1622287915817334,0.1730258365825442,0.1870379735938794,0.2001189382061956,0.2113852940856885,0.2223448064928397,0.2329340659340659,0.2437468208859499,0.254331717644437,0.2644196187736018,0.273534313669913,0.2823398876725804,0.2900045082014588,0.2976707784319222,0.304877039978256,0.3118251250987622,0.3183323828821723,0.3245678829960112,0.3305733440064038,0.3370184723423744,0.3424941395878932,0.3468503572985325,0.3472576057799884,0.3482290632240979,0.3487537950999082,0.3495414306205537,0.350471191697483,0.3505747126436782,0.3506609049313676,0.3522560664217584,0.3538419328840647,0.3546670012187253,0.355694608865588,0.3568242640499554,0.3584976999180793,0.358967464372143,0.3605287916435481,0.362483991531847,0.3650784527846428,0.3681923430710185,0.3699745186862967,0.3700850585780773,0.3711960040699287,0.3719785864921862,0.3718171855862824,0.3722933643771827,0.3712786259541984,0.3722424242424242,0.3752725007785736,0.3792607802874743,0.3850400220811482,0.3854406130268199,0.0,2.0320903490677398,60.227899034979885,214.62843729603557,314.60949733538683,fqhc6_100Compliance_baseline,0 -100000,95615,41998,395.73288709930455,7267,74.89410657323643,5679,58.87151597552685,2270,23.37499346336872,77.26635035352784,79.7041792787259,63.26822878755484,65.07199178343876,76.98621671437253,79.42379965789041,63.16536880632894,64.97190540565741,0.2801336391553093,280.3796208354896,0.1028599812258974,100.0863777813521,85.80572,60.38408913040831,89739.93620247868,63152.56971269331,259.31042,160.79413661313507,270667.6567484182,167636.0331164973,281.00164,134.18940302614632,290920.5982324949,138028.26257059228,4135.42198,1837.847964935862,4287190.179365163,1884586.221116876,1361.36963,588.2489237525967,1411119.803378131,602769.4599585878,2232.28666,925.4413977774316,2299508.2779898555,936740.762065533,0.38187,100000,0,390026,4079.088009203577,0,0.0,0,0.0,21938,228.86576373999893,0,0.0,26184,270.888458923809,2031930,0,72909,0,0,0,0,0,47,0.4915546723840402,0,0.0,0,0.0,0,0.0,0.07267,0.1903003639982192,0.3123709921563231,0.0227,0.3173605655930872,0.6826394344069128,25.23517373033079,4.565669710351236,0.3345659447085755,0.2002113048071843,0.2345483359746434,0.2306744145095967,11.021036249464489,5.487075473428648,24.06496852858948,12966.664216980533,63.71959455618787,13.354931479022644,21.30748334418304,14.62859134762544,14.428588385356758,0.5493924986793449,0.7695690413368513,0.7047368421052631,0.5623123123123123,0.1198473282442748,0.7046289493019838,0.8882521489971347,0.8780487804878049,0.7310344827586207,0.1512915129151291,0.500463177396943,0.7170050761421319,0.6507936507936508,0.5153550863723608,0.1116458132820019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020673720053508,0.0043824499112351,0.0066925975199813,0.0090287945339189,0.0113597035890963,0.0133310231662199,0.0156658229915088,0.0178208311619304,0.0199312433494311,0.0220616866482221,0.0242620797241266,0.0263347244207799,0.0283293701038674,0.0304155067532735,0.032350024789291,0.034311848762973,0.0365679222206098,0.0386888378807864,0.0408617818484596,0.0425423180817888,0.0573432860787019,0.0708222422502148,0.0846761486585852,0.0973593014314756,0.1099727497412281,0.1243723649922671,0.1378679987246253,0.1501365362461066,0.1625046829007225,0.1740088105726872,0.1877090030420055,0.2008303793077281,0.2134206112357592,0.2247348584450872,0.2355521753028449,0.2478091096665409,0.2577736561602664,0.2675353635462654,0.2765529467918267,0.2850783598357082,0.2941960148285449,0.3026380526204812,0.3104502369668246,0.3168204008684283,0.323984432011676,0.329740474603057,0.33559016023471,0.3404371932955197,0.3455821313686832,0.3504492600422833,0.3509715873080087,0.351331982745552,0.3521949567499682,0.3531608737821914,0.3541520816265733,0.3537987017969217,0.3529803952694658,0.3543200724816737,0.355377284102986,0.3563820248897177,0.3574025582578226,0.3582760128821916,0.359884492970512,0.3603157823710667,0.3616036821705426,0.363156512605042,0.3651359273521466,0.3670656971390468,0.3713030850423263,0.3729445736745007,0.3738270469181233,0.3768442513010354,0.3782330345710627,0.3794056668970283,0.3839176037040536,0.3857602095487558,0.3836332871865867,0.3785656071719641,0.3807947019867549,0.3849641103135625,0.0,1.9841473620948096,60.3758083938604,212.4776443923436,332.68723071200424,fqhc6_100Compliance_baseline,1 -100000,95711,41784,393.48664207875794,7107,73.05325406693066,5563,57.60048479276154,2294,23.654543364921484,77.34534288058313,79.71448630715332,63.32656324425341,65.07463357964518,77.07306684164521,79.43872377082327,63.226819543989805,64.97536488729881,0.2722760389379175,275.7625363300491,0.0997437002636019,99.2686923463708,85.2445,59.988951834273415,89064.47534766118,62677.17590901089,253.835,158.1454904666467,264673.67387238663,164696.12736952567,278.61769,133.70637379471088,287469.70567646355,136866.0266113906,3978.35707,1791.5992377078849,4125052.648075979,1840301.8542360684,1309.29051,566.1696550196564,1355675.9202181569,579255.8464751133,2238.05466,928.2441419818804,2310519.6476893984,947345.6432306032,0.37995,100000,0,387475,4048.3852430755087,0,0.0,0,0.0,21482,223.89276049774844,0,0.0,25989,267.91068947142963,2038134,0,73148,0,0,0,0,0,40,0.4179247944332417,0,0.0,0,0.0,0,0.0,0.07107,0.1870509277536517,0.3227803573941185,0.02294,0.3289491343443833,0.6710508656556167,25.202812008439416,4.498205598024799,0.3350710048534963,0.2042063634729462,0.2406974653963688,0.2200251662771885,11.313244937869207,5.952763703228913,24.3613359180108,12896.63950264153,62.804379564085885,13.215882932949224,21.05660661793953,15.028847522070189,13.503042491126957,0.543951105518605,0.7570422535211268,0.6765021459227468,0.573562359970127,0.1119281045751634,0.6965566714490674,0.8820224719101124,0.8454935622317596,0.7459807073954984,0.1187739463601532,0.4929239625809546,0.7,0.6201716738197425,0.5214007782101168,0.1100726895119418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.004510165609227,0.0068584878860435,0.0091306114158033,0.0113079379283695,0.0134291735814862,0.0153614058693414,0.0173024509253493,0.0195960174186821,0.0218341505358733,0.0239989338363438,0.026134729924009,0.0282137787743514,0.0302465256673088,0.0322287695689414,0.0343084556543311,0.0363815244407622,0.0384798987152612,0.0404878505255934,0.0421942247371327,0.0569578612082919,0.0708305425318151,0.0847804417396778,0.0982651053667055,0.1107582248295946,0.1264828826922059,0.139018927210386,0.1510687925360258,0.1628672502057349,0.1739107116040589,0.187123538602446,0.2002577124232547,0.212487894055301,0.2229982703128763,0.2338190108038457,0.2451999822632139,0.2554497661595473,0.2656315049226441,0.2753175693317138,0.283596622867813,0.2923089385733463,0.2996748385889398,0.3075939475740569,0.3142374222318121,0.3205026921253813,0.3262046595379929,0.3320598734890712,0.3373751510910363,0.3426226106802915,0.3488928547822064,0.3497692494534855,0.3503378844297338,0.3507266455553042,0.351488448940549,0.3519172590572421,0.3521327887479655,0.3521267485012846,0.3528367336873428,0.3540616725036303,0.3553026513256628,0.3562524603070463,0.3564139076777026,0.3564923619271445,0.3584092643296377,0.3596953578336557,0.3620847621790005,0.3626076050396215,0.3639704727501178,0.3661497438776226,0.3694419102772599,0.3708476125199909,0.374993337952353,0.3769187038089824,0.3752391154640753,0.3761936276827077,0.3784073324604213,0.3788228062086983,0.3781307269395235,0.3822062084257206,0.3804091266719119,0.0,1.9801056849809289,61.84009680634562,210.61433543474976,315.7101012665608,fqhc6_100Compliance_baseline,2 -100000,95664,41851,394.1608128449573,7050,72.54557618330824,5466,56.59391202542231,2193,22.558120086971066,77.2498286400838,79.64744609024493,63.26585613190741,65.03858737481919,76.97559719634052,79.37388203191558,63.16536733200191,64.94133494230071,0.2742314437432895,273.5640583293417,0.1004887999055057,97.2524325184736,84.98776,59.85500083209661,88839.856163238,62567.94701465193,256.97885,160.65987929902815,268060.77521324635,167376.11776533298,278.80035,133.29313962518438,288436.4128616826,137083.1643287886,3921.743,1756.028084750276,4060621.738585048,1796745.1337496603,1283.93652,555.0323758101828,1330333.301973574,568391.3549613049,2150.82736,895.1044986044596,2213849.7867536377,904562.4858775582,0.37912,100000,0,386308,4038.1752801471816,0,0.0,0,0.0,21723,226.49063388526508,0,0.0,25962,268.3245526007694,2030765,0,72955,0,0,0,0,0,52,0.5435691587221944,0,0.0,0,0.0,0,0.0,0.0705,0.185956952943659,0.311063829787234,0.02193,0.3245425188374596,0.6754574811625403,25.276345784781576,4.557847360003551,0.3278448591291621,0.2109403585803146,0.2319795096963044,0.2292352725942188,10.997444997821924,5.472643980453857,23.34098489671811,12873.959826469803,61.977577591044856,13.677029647786805,20.312804222286168,14.1173965532156,13.87034716775628,0.5360409806073911,0.7519514310494363,0.6863839285714286,0.5473186119873817,0.1109337589784517,0.702903946388682,0.9184210526315788,0.8337182448036952,0.7163636363636363,0.1450980392156863,0.4816880911957312,0.6701164294954722,0.6394407652685798,0.500503524672709,0.1022044088176352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019854937396166,0.0040970722159684,0.0062626242120969,0.0085145295671611,0.0108126252403088,0.0129346342655775,0.0149488110290818,0.0171031806810639,0.0196154632849253,0.0218555729662744,0.0240427517873078,0.0263071391884951,0.0285023408962288,0.0304360821660843,0.0326763646124779,0.0343679218939072,0.0362993896562801,0.0382179492503841,0.0402846560406175,0.0424699957248469,0.0572186869795095,0.071454004691689,0.0845822837951301,0.0974567799909509,0.1095644648944141,0.1246692771721875,0.1379951152171604,0.1500713966028004,0.1618565743870609,0.1735795546102033,0.187419076391886,0.1999284304582619,0.2128408954605428,0.2237332748409739,0.2338767536065519,0.2452802933496305,0.2561289600358222,0.2665553575054714,0.2760375167892184,0.2839954492696997,0.2926922764180422,0.3002585193889541,0.3080170281582953,0.3145807756192677,0.3211141191678252,0.3273944298033975,0.3324079889461123,0.3381169013724538,0.3434343434343434,0.348864329066285,0.3491539637239121,0.3502749150388196,0.3505964256908774,0.351333691501256,0.3510620829663686,0.3505986505387086,0.3498999014903556,0.3510696201487737,0.3514724821842535,0.3517992594456627,0.3535759428000075,0.3538908685525451,0.3536729358185038,0.3553972405086121,0.3559527562874396,0.3564955474070194,0.3569856828508559,0.3591132384431288,0.3627250984805852,0.3654834468746265,0.3669432035737077,0.3701543193509041,0.3726058467741935,0.371864277544796,0.370913190529876,0.3733474976392823,0.3788990825688073,0.3777051857901184,0.3717842323651452,0.3790076335877863,0.0,2.10390306633988,59.53914377846024,213.21109671471052,309.90342472840086,fqhc6_100Compliance_baseline,3 -100000,95744,41876,392.8601270053476,7133,73.34141042780749,5521,57.079294786096256,2311,23.719502005347596,77.32698317968122,79.68754213238215,63.31555014592704,65.06140612040397,77.04397265352418,79.4039209019909,63.21225558212399,64.96059434806315,0.2830105261570423,283.62123039124754,0.103294563803054,100.81177234081906,85.76348,60.30750904647003,89575.82720588235,62988.29069860256,255.00523,159.7074932003913,265776.97819184494,166243.07862674567,278.30099,134.0541852541064,286956.7805815508,137078.6462499274,4019.03155,1814.0316025204104,4157559.763536097,1854543.44138579,1357.62871,592.6662608127203,1403191.333138369,604224.8713368151,2272.22994,942.0576737984924,2334266.0427807486,951893.1112065724,0.38068,100000,0,389834,4071.6285093582887,0,0.0,0,0.0,21633,225.350935828877,0,0.0,25943,267.3483455882353,2033558,0,72969,0,0,0,0,0,44,0.4491143048128342,0,0.0,0,0.0,0,0.0,0.07133,0.1873752232846485,0.3239871022010374,0.02311,0.3195793957140955,0.6804206042859045,25.033787568925632,4.562895917245735,0.3300126788625249,0.1977902553885165,0.237456982430719,0.2347400833182394,11.17086776613846,5.683208417819731,24.640649133113264,12945.190187806564,62.35903619508048,12.808428430669569,20.545156121998144,14.590037609743773,14.415414032669004,0.5417496830284368,0.75,0.6970362239297475,0.5728451563691839,0.1165123456790123,0.6997855611150822,0.8926553672316384,0.8763326226012793,0.7016949152542373,0.1601423487544484,0.4881125667151868,0.6815718157181572,0.6348854397634885,0.5354330708661418,0.1044334975369458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025226685578238,0.0047859503964632,0.0073787629661206,0.0095192620286085,0.0120010170353419,0.0139402270760144,0.0161214667373659,0.0181185309188902,0.0206042271370753,0.0227530936223784,0.0251714136372487,0.0272642351950891,0.0292645320450223,0.0312718810494666,0.0332263954363994,0.0351219814625375,0.0374154941971819,0.0396348737098698,0.0418961897436963,0.0438283952160686,0.0578790219865116,0.0716124037495815,0.0849845882870981,0.0975327719785129,0.1092290827834812,0.1251096850585163,0.1377518557794273,0.150524814239179,0.1627730517676228,0.1739317064795141,0.1875330049898156,0.2004699868966787,0.2122580434569728,0.2233526972770138,0.2340612891863332,0.2451175988118197,0.2564366057167112,0.2663933503029757,0.2752897068847989,0.2838146114429172,0.2924258394820057,0.3005365887949012,0.3082915377227617,0.3151726208345842,0.3221023930666796,0.3281680228179135,0.3345709519210265,0.3399941340746503,0.3450303022437935,0.3494633604737232,0.3505204681516639,0.3513170772051222,0.3520614047464514,0.3527665121668598,0.3535168469032085,0.353048743008175,0.3532560355781448,0.3544218359014882,0.3560399636693914,0.3569870167030294,0.3568732039892568,0.3586286212845274,0.358652812611967,0.3590429117052348,0.3595554481758879,0.3603919924536212,0.3609076341993819,0.3644549763033175,0.3657719304433706,0.3666121765479845,0.3676820343944383,0.3704987996799146,0.3735693961429023,0.3773728748951742,0.3788492325077691,0.3769577598481253,0.3766712770862148,0.3795768917819365,0.3765001395478649,0.380281690140845,0.0,2.3101799995510093,61.61433477189762,208.01302957031143,312.4362449962076,fqhc6_100Compliance_baseline,4 -100000,95758,41532,390.275486121264,7120,73.11138494956036,5471,56.53835710854446,2314,23.87267904509284,77.39144353273707,79.72950869021078,63.36142006586866,65.08692231492822,77.103614310693,79.4396130216211,63.25624494547896,64.98309898582379,0.287829222044067,289.8956685896792,0.1051751203896955,103.82332910442926,85.38398,59.98945773570119,89166.4195158629,62646.94097172161,254.18633,158.53675343749737,264874.2768228242,164988.1479457837,273.39118,131.03802955983602,281059.7234695796,133490.99938823984,3966.54218,1786.1246322071274,4103309.843563984,1826690.9695956672,1325.11387,575.4822441064294,1367581.758182084,584884.8946357234,2279.18806,948.685431698382,2352200.2965809647,966295.3451895816,0.3782,100000,0,388109,4053.01906890286,0,0.0,0,0.0,21553,224.46166377743896,0,0.0,25501,261.85801708473446,2042149,0,73232,0,0,0,0,0,40,0.4177196683305834,0,0.0,3,0.0313289751247937,0,0.0,0.0712,0.1882601797990481,0.325,0.02314,0.3140948563794255,0.6859051436205745,25.355859335022387,4.531001850452695,0.3262657649424237,0.2021568269055017,0.2345092304880277,0.2370681776640467,11.118763039680864,5.659569519261543,24.555034276593936,12851.613243390795,61.8581613621609,13.006875017842676,20.077175685799457,14.290057973553385,14.484052684965386,0.5441418387863279,0.759493670886076,0.6935574229691877,0.5892439594699922,0.110254433307633,0.6913109756097561,0.9083094555873924,0.875,0.704225352112676,0.0988593155893536,0.4977157970666025,0.6908850726552179,0.6384222059897735,0.5565565565565566,0.1131528046421663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021565689292078,0.0043880539538088,0.0067673139749599,0.0090187993215587,0.0113979522323108,0.0135269929158863,0.0156816792337477,0.0179158079458036,0.0203189326686348,0.0224073013014651,0.0244569672131147,0.0265101772816808,0.0285858139558779,0.0307836396945307,0.0328739163153174,0.034749912195525,0.0368446109581668,0.0389964633526587,0.0409966425163456,0.0426363049230192,0.057240076403603,0.0711804465649653,0.0842249916079221,0.0968746056450595,0.1092941114449892,0.1247726599839275,0.137553288510891,0.1491856123067757,0.1613254594577277,0.1724873509990566,0.1863837483447986,0.1995175927227888,0.2117717391304348,0.2227247896864416,0.2335345140331783,0.2448376601819268,0.2551059085841694,0.2655042243393852,0.2747372359604068,0.2828072424290979,0.291100166481687,0.2981924893607071,0.3060497799649836,0.3129846006351489,0.3196071528292037,0.3261287223823247,0.3318573554980174,0.3374579896119767,0.3426295336787565,0.3481886065595398,0.3490027723198665,0.3497043047723834,0.3497240058578348,0.3494245570461076,0.349979952777654,0.3492245572175828,0.3488519298023515,0.3501353679547133,0.3510078578749573,0.353083109919571,0.3545379351830964,0.354764456086042,0.354958860293344,0.3567764578833693,0.3573747456148851,0.3583077286693453,0.3593087240628224,0.3611700947611954,0.3629598128853923,0.3647506509112758,0.3657403147142725,0.3671505376344086,0.3681925557045266,0.3713734567901234,0.3731484998101025,0.3730755460078768,0.3735745780751102,0.3802104411169567,0.3822562979189485,0.3755742725880551,0.0,2.333462046275398,57.56486464982464,218.7732200116515,308.0677633301503,fqhc6_100Compliance_baseline,5 -100000,95718,41661,389.96844898556174,7320,75.20006686307696,5680,58.661902672433605,2324,23.85131323262082,77.37264048070351,79.73227278433127,63.34029949113111,65.08205807133051,77.08455775330613,79.44533238714139,63.23456650302291,64.97984290423166,0.2880827273973807,286.9403971898805,0.1057329881082012,102.2151670988478,85.04034,59.79750982885741,88844.43887252136,62472.35611782258,255.78575,159.74795213147624,266501.55665601033,166167.4524451788,280.33677,134.7715751864151,288055.52769594017,137061.43945230122,4131.49866,1858.038303488172,4271941.16049228,1896776.242178245,1421.36382,618.2793515360293,1467973.024927391,628972.3428571733,2298.0616,958.3162446272172,2361044.7564721373,967212.273377454,0.37965,100000,0,386547,4038.3835851146073,0,0.0,0,0.0,21705,226.059884243298,0,0.0,26143,268.5388328214129,2038586,0,73225,0,0,0,0,0,48,0.4701310098414091,0,0.0,1,0.0104473557742535,0,0.0,0.0732,0.192809166337416,0.3174863387978142,0.02324,0.3217165149544863,0.6782834850455136,25.26690127551066,4.581345773325109,0.3322183098591549,0.2029929577464788,0.2223591549295774,0.2424295774647887,11.133559628564749,5.454926638498828,24.917023592293965,12985.75772550778,64.35674562625503,13.524957628214104,21.34228537593324,14.344015007026089,15.145487615081604,0.5422535211267606,0.7684301821335646,0.6846846846846847,0.5859065716547902,0.1176470588235294,0.6963064295485636,0.9213483146067416,0.8464730290456431,0.7321428571428571,0.125,0.4888572783309625,0.7001254705144291,0.6291814946619217,0.5329018338727076,0.1157024793388429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075949367088,0.0046111904979072,0.0068474390577923,0.0092216444588885,0.0117235559080417,0.0142007858786163,0.0163296093941123,0.0184948914496851,0.0208731562215702,0.022991329627696,0.0253655135645005,0.0275972525949425,0.029654917122527,0.031740800626165,0.0336019148036191,0.0358320328244984,0.0381007599445054,0.0401414805671669,0.0422396141893507,0.0443078845953546,0.0587854487741719,0.072804511828902,0.085967726715108,0.0996920425044406,0.1125611401585427,0.1278291664464295,0.1410556904835134,0.1530906498398544,0.1634309391085197,0.1748367239696719,0.1887176504797906,0.2026161469716313,0.2155954323001631,0.2263176891358321,0.237379516746622,0.2474877851516192,0.2580285086005782,0.2674893875758633,0.2766361085551352,0.2852850097488244,0.2931831077247305,0.301058275385732,0.3083551625635616,0.3154646849074952,0.3225060827250608,0.3282812075732517,0.3342773718968909,0.3397425286185425,0.3451757569473248,0.3501367257163238,0.3500700921981992,0.3508177296463164,0.3514024493481573,0.3519084522343739,0.3526747131575026,0.3523909002933902,0.352344518873615,0.3528510722403399,0.3532320432536016,0.3542295667708798,0.3553543985906518,0.356144616418589,0.3564316921525794,0.3566120512131793,0.3569227064772454,0.3577278180585259,0.3586696306429549,0.3614590199956053,0.3629294945886309,0.3655586735702146,0.3693202471828426,0.3706401531263292,0.3724547868976856,0.3739998475958241,0.3754577035020185,0.3734696303340069,0.3768227168073676,0.3709415584415584,0.3677080453414432,0.3562908811081185,0.0,2.6529788016321363,64.49999567859247,214.725070999683,317.02090322439017,fqhc6_100Compliance_baseline,6 -100000,95747,41859,393.8400158751711,7080,72.72290515629733,5504,56.973064430217136,2216,22.841446729401444,77.33281654085012,79.69883847738429,63.319784280511655,65.07123412886106,77.07019365307285,79.43301883458977,63.223880187071565,64.97565047934945,0.2626228877772689,265.8196427945114,0.0959040934400903,95.58364951161025,86.35088,60.71178920517682,90186.51237114478,63408.55505151788,255.63456,158.39199182359596,266468.36976615456,164906.3697281335,276.8131,132.55642784624533,285419.81472004345,135646.83988511094,3983.74097,1772.0667396759934,4127795.628061453,1818447.6088108595,1326.55579,576.1797921141434,1371761.5382205185,588181.2172837232,2178.51412,895.9424140385787,2247673.4519097204,914167.918755661,0.38133,100000,0,392504,4099.386925961127,0,0.0,0,0.0,21633,225.3960959612312,0,0.0,25798,265.7211191995572,2034607,0,73113,0,0,0,0,0,44,0.4595444243683875,0,0.0,0,0.0,0,0.0,0.0708,0.1856659586185194,0.3129943502824859,0.02216,0.3225676762262128,0.6774323237737871,25.23006339000923,4.562448696783799,0.3297601744186046,0.1976744186046511,0.2423691860465116,0.2301962209302325,11.288292616823226,5.775098790318532,23.385087390467767,12941.16712884304,61.89329438132496,12.809495471257804,20.407062600612385,14.98340287037884,13.693333439075916,0.5496002906976745,0.7830882352941176,0.6964187327823691,0.568215892053973,0.1191791633780584,0.7229876722262509,0.9206798866855525,0.851528384279476,0.7305389221556886,0.1623931623931624,0.4916363636363636,0.7170068027210884,0.6440677966101694,0.514,0.1093901258470474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0044830768918685,0.0066707279926896,0.0088228418088858,0.0108961054816261,0.0129155801825293,0.0152357254306081,0.0174068402246043,0.0194883540213901,0.0217384626411771,0.023898378068035,0.0258448079351877,0.0279568565758762,0.0300511838189102,0.0322833589550467,0.0341712490180675,0.036225805449405,0.0384383885764097,0.0403639199376137,0.0425330222092587,0.0569137941833517,0.0708053480635239,0.0838436372787517,0.0963564114963311,0.1084339889120765,0.1240774810209562,0.1372259987062154,0.1495364900965335,0.1615008330841201,0.1723254118050789,0.1865242576282865,0.2003699937252526,0.2126414909695869,0.2239360713622003,0.2350424530377018,0.2461771837941381,0.2564420190386912,0.2670058646735032,0.2770090020546934,0.2853985088131206,0.2939882613074634,0.3019060107242372,0.3094366447485338,0.3162395212453378,0.3224931919859949,0.3285948740729772,0.3338512429831596,0.3398074326905932,0.3448570983972198,0.3498612029081295,0.3507659941741288,0.3511625022395567,0.3519592487547446,0.3525461019598761,0.3534073136218068,0.3541251188905593,0.3544554769533357,0.3561400624691764,0.3575483959231137,0.3580174093338338,0.3581899059667036,0.3598065066116849,0.360475370595893,0.3621292230486603,0.3632156201036519,0.3665821063367942,0.3663091663091663,0.3681388012618296,0.3717456403029769,0.3723425471660484,0.3751086310204455,0.377742193755004,0.3838530488574675,0.385829774252593,0.3874237447207884,0.3861562166646912,0.3908256880733945,0.391850800729779,0.392817679558011,0.4003853564547206,0.0,2.0236913245232766,61.22427013818861,199.93022515642343,320.28288924871487,fqhc6_100Compliance_baseline,7 -100000,95772,42080,394.7187069289562,7051,72.3802363947709,5474,56.49876790711272,2178,22.417825669297915,77.34910350822409,79.67851314044974,63.34642956891118,65.06719341736901,77.08278460354234,79.41160109309338,63.24925740706175,64.97236500172082,0.2663189046817535,266.91204735635665,0.0971721618494285,94.82841564819466,86.17334,60.62471141666531,89977.59261579585,63301.08112670229,259.12869,161.65185637199306,269918.21200350835,168138.1159127856,284.71005,136.69824445901023,292178.9667126091,138924.54778674495,3958.04084,1783.0839717065614,4090777.575909452,1819909.715028368,1321.60269,572.9748278466215,1367680.5538153115,586050.0195933395,2145.1328,891.0023130450492,2209210.4581714906,904385.5748127872,0.38089,100000,0,391697,4089.8905734452655,0,0.0,0,0.0,21914,228.1355719834607,0,0.0,26495,271.749571899929,2032184,0,72997,0,0,0,0,0,47,0.4698659315875203,0,0.0,0,0.0,0,0.0,0.07051,0.1851190632466066,0.3088923556942278,0.02178,0.3236955352339967,0.6763044647660033,25.161692806972614,4.529888638673922,0.324625502374863,0.206430398246255,0.2365728900255754,0.2323712093533065,11.06888510719316,5.616195334067884,23.24991773073058,12956.168335738805,61.81938476012909,13.293596102584686,20.10293456980451,14.39771926965183,14.025134818088054,0.5500548045305078,0.772566371681416,0.7006190208216094,0.5706563706563706,0.1210691823899371,0.7151079136690648,0.9175824175824177,0.8939393939393939,0.7361111111111112,0.1268115942028985,0.4938785504407443,0.7036553524804178,0.6326996197718631,0.5233366434955313,0.1194779116465863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0046726603756372,0.0069898854632701,0.0092838061573777,0.0116931711880261,0.0139867258438861,0.0162049776799364,0.0183293361228759,0.0205887461811196,0.0228458595076834,0.0250379051755931,0.0269673990005233,0.0291246171870182,0.0311358139056147,0.0333852292528018,0.0356143159634354,0.0374390761302606,0.0395288066697084,0.0415757424610844,0.0436652573261408,0.0594447923189313,0.0735898589074478,0.0867801088289875,0.0996048593887931,0.1114881240911294,0.1267620516938943,0.1399652365609632,0.1524425256800153,0.1635897983139473,0.1743727636963555,0.1879661217593439,0.2010229017538548,0.2138003761564637,0.2251246501049685,0.2360227947809632,0.2474584154687811,0.2584946716509513,0.2681882061948395,0.2769483834373227,0.2858271141431253,0.2939108309720696,0.3013323663247043,0.3091033895095625,0.3149796891663571,0.3214342106861328,0.3275747262503699,0.3333583752785916,0.3394705680125291,0.3448409971868234,0.3496412004916148,0.3501678961066983,0.3500592760056243,0.3506480684879342,0.3515151515151515,0.3518970028544244,0.3514370633656085,0.3503761780312029,0.3512123800762255,0.3517033896856464,0.352996941349026,0.353784113288943,0.3546072582403425,0.3565834505637558,0.3568398608461452,0.3568094420393257,0.3569910529215753,0.3579307175274315,0.3595070198843784,0.3629598128853923,0.3636947275499558,0.3668337087949979,0.3694557531604885,0.368249296135142,0.3659873398178169,0.3673977588353606,0.3699829725127706,0.3730545511711995,0.3710548172757475,0.3746478873239436,0.3705482192877151,0.0,2.5599551031736483,61.00859734799222,205.3337305327607,310.00409023401613,fqhc6_100Compliance_baseline,8 -100000,95672,42214,396.3019483234384,7233,74.45229534241993,5650,58.53332218412911,2343,24.124090643030357,77.31532774038504,79.70699155467317,63.31028192710126,65.07602849003275,77.0285405072225,79.418025535868,63.20543933842927,64.97285087021585,0.286787233162542,288.96601880516926,0.1048425886719854,103.1776198169041,86.19798,60.64753540296695,90097.3952671628,63391.10231098643,259.24649,161.47255080252444,270447.393176687,168250.3666720926,287.48324,138.56109522405438,297022.0127100928,142244.28307765402,4095.17711,1857.1855027925824,4244552.105109123,1905318.4660011115,1400.30636,608.8837028127392,1450552.9935613344,623341.5880371246,2308.44938,959.2254187665362,2378821.724224434,974300.0597283788,0.38291,100000,0,391809,4095.3361485074006,0,0.0,0,0.0,21857,227.91412325445276,0,0.0,26775,276.44451877247263,2029789,0,72897,0,0,0,0,0,65,0.6794046324943558,0,0.0,1,0.0104523789614516,0,0.0,0.07233,0.1888955629260139,0.3239319784321858,0.02343,0.3217847769028871,0.6782152230971129,24.928735782663363,4.570465961741374,0.3327433628318584,0.2040707964601769,0.2254867256637168,0.2376991150442478,11.35842772858617,5.850587931847565,25.051364091996163,13094.150973233289,64.05769891708584,13.47464133192243,21.440094679595397,14.234531544100532,14.908431361467493,0.5495575221238939,0.7710320901994796,0.7148936170212766,0.5588697017268446,0.1191362620997766,0.722632639355272,0.9242819843342036,0.884313725490196,0.7138364779874213,0.158273381294964,0.4876231675078106,0.6948051948051948,0.6518248175182482,0.5073221757322176,0.1089201877934272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0048257263934791,0.0074286062229799,0.0096112815719423,0.01171875,0.0141889483065953,0.0165435926726775,0.0189367243756702,0.0210973053126757,0.0231534105455029,0.0254756166350443,0.0275192604006163,0.0295255339286449,0.0318299380712438,0.0338566665634451,0.0359503149272409,0.03790123712622,0.0401448869238513,0.0419713533811123,0.0441285292922134,0.0586452967788446,0.0734935343699282,0.0873653938999559,0.0998810939357907,0.1120198395947657,0.1275629558277143,0.1409505000955596,0.1535069499920115,0.1657243023119101,0.1763941956811059,0.1909319193421492,0.2043441540160686,0.216192974626362,0.2271588185727886,0.2372817886447491,0.2489240871378499,0.2594665236914416,0.2694030522666907,0.2788091426235651,0.2873435422493237,0.2956511668307371,0.3040307191608424,0.311500065132693,0.3179641077966508,0.3241048088029667,0.3302783979474781,0.3371259585985665,0.3424739536897878,0.3475229690678899,0.3524995373674888,0.3530562149331031,0.3530271686663908,0.3539961618784218,0.3547643888019475,0.3555247754792011,0.3563248388087197,0.3565182892961993,0.357129947587204,0.3578992387306475,0.3587693408460781,0.3596489583137998,0.3601354965234444,0.3615472031651164,0.3633850303438975,0.3635615775465763,0.3650165189574702,0.3669645679473548,0.3693198079308042,0.3702901381441102,0.3737588937572858,0.3759329217727817,0.3762684563758389,0.3767792174634582,0.3797173474141948,0.3817570811329813,0.3836942058787952,0.3879217377907872,0.387090246863618,0.386395316420407,0.3850596842510589,0.0,1.9769860026149888,66.08504261306659,209.19890268705515,316.6962960919516,fqhc6_100Compliance_baseline,9 -100000,95612,42016,394.8772120654312,7072,72.64778479688742,5522,57.02213111324939,2332,23.877755930217965,77.3146043072854,79.73321461146504,63.296484254502126,65.08250516541183,77.02770133220528,79.448337706478,63.19020694577846,64.9802046429167,0.2869029750801246,284.8769049870441,0.1062773087236621,102.30052249512768,85.13538,59.924866531410245,89042.56787850897,62675.04762102063,255.71603,159.60880809167364,266733.1715684224,166215.22203454966,281.81611,135.56251382267672,289561.7077354307,137781.0836730956,4011.77244,1805.923889193864,4147588.3152742335,1840504.9462346383,1345.40398,588.0280930009064,1389373.0494080242,597239.356211456,2297.19558,955.2052066446018,2356123.1017027157,962102.2165714606,0.38134,100000,0,386979,4047.389449023136,0,0.0,0,0.0,21599,225.14956281638288,0,0.0,26285,269.86152365811824,2035051,0,73016,0,0,0,0,0,39,0.3974396519265364,0,0.0,1,0.010458938208593,0,0.0,0.07072,0.1854513032988933,0.3297511312217194,0.02332,0.3246073298429319,0.675392670157068,25.06792589055456,4.636297805558028,0.3203549438609199,0.2015574067366896,0.2377761680550525,0.2403114813473379,11.377613304324989,5.797393380039464,24.939203622141758,12950.971664022343,62.24914515418764,13.006385359891476,20.12331482029535,14.560239874755707,14.559205099245103,0.5476276711336472,0.7960467205750225,0.6907857546636518,0.5818735719725818,0.1145440844009043,0.7176724137931034,0.9346590909090908,0.8556034482758621,0.7467948717948718,0.1515151515151515,0.4903147699757869,0.7319316688567674,0.632183908045977,0.5304695304695305,0.1053621825023518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0045431037105393,0.0065781459373857,0.0088401158360006,0.0110677083333333,0.0134446934202485,0.0159015105925072,0.018020226785167,0.0202820877356271,0.0223448812608165,0.0245335849598457,0.0268107530637191,0.0292377807269322,0.0315397931006058,0.0335583632685081,0.0356415373321063,0.0376126826235623,0.0396723217808418,0.0416527928077915,0.0437449152012015,0.0581072040807793,0.0717907351924406,0.0851667104226831,0.0983125072373753,0.110321749778322,0.1251667831501366,0.1380874479476502,0.1509538527123521,0.1628421964761385,0.1732006833052204,0.1864959053979694,0.1995057339200936,0.2122830149614793,0.2236014637246094,0.234434939812161,0.2456825749167591,0.2562059214717618,0.2671301565123328,0.2761724032135268,0.2847932822465929,0.2936196333229098,0.3018002200529063,0.308952236578751,0.3160545947372208,0.3222208723119912,0.3284266587765367,0.3348813920010014,0.3404293221697693,0.345146498795368,0.3506273940034342,0.3511425682507583,0.3515996198923028,0.3520377193353943,0.3520716490587365,0.3533219964796086,0.3529511272414111,0.3526764415890079,0.3537569963841696,0.3546910755148741,0.3552111765550926,0.35694674289153,0.3583994617378742,0.3592076302274394,0.3599757999462221,0.3600115434563032,0.3592834639518837,0.361670607674995,0.3647889533971442,0.3674377847879425,0.3680555555555556,0.3692468619246862,0.3707739740591112,0.3744045728802794,0.3759467523525361,0.378626098459794,0.3771380390267405,0.3763087982497265,0.3753351206434316,0.3829078801331853,0.3916275430359937,0.0,2.863229574540469,60.70444957044519,206.55284373634956,314.3367603898474,fqhc6_100Compliance_baseline,10 -100000,95645,41681,391.541638350149,7063,72.51816613518741,5545,57.38930419781484,2242,23.074912436614564,77.29129418892526,79.69264742888673,63.29829466637945,65.07079652613302,77.01862033644159,79.41871520830153,63.20038725725588,64.97456903797928,0.2726738524836776,273.93222058519484,0.0979074091235645,96.22748815374392,86.03848,60.53529739963159,89956.06670500287,63291.64870054011,256.28836,159.5506448031044,267336.4211406765,166194.5005160545,280.74265,134.96733416597044,290026.27424329554,138335.87056160148,3998.3525,1781.987326442006,4141846.0766375656,1824607.9519559357,1354.31102,591.0947418360032,1398519.1384808407,600552.5770542772,2209.74878,900.1917305508669,2276581.4417899526,913201.4261666484,0.37885,100000,0,391084,4088.912122954676,0,0.0,0,0.0,21677,225.98149406660045,0,0.0,26044,268.90062209211146,2032859,0,72926,0,0,0,0,0,58,0.5854984578388834,0,0.0,0,0.0,0,0.0,0.07063,0.1864326250494918,0.317428854594365,0.02242,0.3240877878012656,0.6759122121987343,25.17205746029778,4.565243602170123,0.3289449954914337,0.2052299368800721,0.2326420198376916,0.2331830477908025,11.32275636052034,5.664789745958986,23.581328742837044,12913.280451774684,62.31686290634888,13.420105582567396,20.58466878320341,14.208093358305108,14.103995182272952,0.5513074842200181,0.7820738137082601,0.7044956140350878,0.575968992248062,0.1075019334880123,0.7254612546125462,0.9109947643979056,0.8808988764044944,0.7463235294117647,0.15625,0.4949880668257757,0.716931216931217,0.6475707034082668,0.5304518664047151,0.0954676952748312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268974808302,0.0044408395011659,0.0068917917643595,0.0092775124479219,0.0117917569616132,0.0139226969496358,0.0161000876888879,0.0183797251209998,0.0204788974317029,0.0226998136506051,0.024643120846665,0.0266828256270155,0.0287842314260436,0.0308410444531459,0.0330552917372094,0.035217094512132,0.0370178456691607,0.0389355538712323,0.0414312617702448,0.0432951429792646,0.056961628490219,0.0712445273058633,0.0845197597748939,0.097237278324475,0.1098599575756936,0.1251296488368647,0.1385093892975807,0.1507359989774833,0.1619220695921749,0.1729324115424252,0.1861375250663044,0.1993070593330446,0.2124440865013114,0.2242462724147746,0.235222163448823,0.2455949701156562,0.255436785845927,0.2655179011581447,0.2753007945516458,0.2832722273143904,0.2916435185185185,0.2997145464330003,0.3072877802650748,0.3133952350104369,0.3203936643877278,0.3267986766085625,0.3324808504770143,0.3379392981427424,0.3436040477426051,0.3487266194652858,0.3499784296807592,0.3510815766616574,0.3525591246028944,0.3532598461694454,0.3534417239169635,0.3533500438266004,0.3527458208860357,0.3543103163867903,0.3550552922590837,0.3556237549130458,0.3559468876542047,0.35706046141607,0.3575631049535016,0.3583980200247497,0.3600106226310325,0.3612994424229732,0.3625153426769046,0.3644452858765619,0.3653948159411577,0.365781356407483,0.3679206283588259,0.3684435652034433,0.368343949044586,0.3733539891556932,0.3759463344513656,0.3811086797957695,0.3880573499291003,0.3894361769021169,0.390616167326173,0.3947266382318728,0.0,2.2332926331635656,59.74497280394358,203.7890554465604,326.4993212363206,fqhc6_100Compliance_baseline,11 -100000,95633,41787,394.13173277006894,7084,72.93507471270378,5528,57.239655767360645,2240,23.077807869668423,77.27514686010801,79.68851320001755,63.27600815666828,65.05721598562776,77.00800570935024,79.41839808595996,63.17989370930468,64.96249059228559,0.2671411507577659,270.1151140575888,0.0961144473636039,94.72539334217343,85.4546,60.12286604440722,89356.81197912854,62868.32583355873,253.63515,157.57845553393693,264660.8179185009,164217.77580326554,276.39468,132.1556402619335,285290.75737454643,135311.97326498703,4012.87158,1782.3844829764398,4158337.331255947,1825996.928859743,1360.6567,586.212392908411,1405030.3347170954,595221.9395719338,2203.44086,894.2403415636068,2271785.6388485148,907562.7486800712,0.37981,100000,0,388430,4061.6732717785694,0,0.0,0,0.0,21513,224.37861407673088,0,0.0,25798,266.0065040310353,2034721,0,72996,0,0,0,0,0,30,0.3136992460761453,0,0.0,1,0.0104566415358715,0,0.0,0.07084,0.1865143097864721,0.3162055335968379,0.0224,0.311004144939163,0.688995855060837,25.31153675677305,4.5188478507372105,0.3319464544138929,0.2000723589001447,0.2326338639652677,0.2353473227206946,11.276351585220722,5.8136290440824325,23.598337895242565,12894.1287813763,62.13049315061453,12.955597858240669,20.708027298043245,14.383590801451607,14.083277192879017,0.5515557163531114,0.7739602169981917,0.7138964577656676,0.5668740279937792,0.11837048424289,0.7374631268436578,0.9149560117302052,0.88125,0.7348993288590604,0.1940928270042194,0.4911313518696069,0.7111111111111111,0.6546125461254613,0.5161943319838057,0.1015037593984962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022581821127673,0.0047028774717979,0.0071635127593729,0.0091213814118842,0.0112185844038283,0.0131782629949486,0.0152955092384875,0.0172228971628671,0.019404373651764,0.0216251638269986,0.0238170945606351,0.0257956483326827,0.0279644014609805,0.0299228993155768,0.0318156940901909,0.0338698998593064,0.0361229735892864,0.0382610140622728,0.0400853322233206,0.0418613382279325,0.0569526317989882,0.071045351664012,0.084082696024876,0.0966076696165191,0.1085571834497037,0.1243804278754501,0.137200726863118,0.1495848123394412,0.1612554575806865,0.1721614476992843,0.1866162978953049,0.1997940044451672,0.2117348328810714,0.2231820822872929,0.2343277653964121,0.2454829144779948,0.2561067036668196,0.2663921480144404,0.2760076469651107,0.2844922610572727,0.2925708983355564,0.2999120492524186,0.3072332752013856,0.3147160565004324,0.3213260340632603,0.3273849191657411,0.3332455546359692,0.3380312201338005,0.3437597382362106,0.3494197509626708,0.3504320820955982,0.3513051156117212,0.3513765353663702,0.3515313880240388,0.3512225630640021,0.3510821181887951,0.3507767913760304,0.3523278569901492,0.3537668192063383,0.3553730810424848,0.3563718957070185,0.3582736375509558,0.3591859879032258,0.3600331972544973,0.3602345107122177,0.3622464980137989,0.3635427983303791,0.3647880204713464,0.3653778186187884,0.369050475961923,0.3725310480729572,0.3763671456144113,0.3815322171486555,0.3832083269554569,0.3874524714828897,0.3915923873765358,0.3957102890892136,0.3958720330237358,0.3961420184512161,0.396504854368932,0.0,2.2067298166611526,60.06221602119576,202.21818892654332,324.75987817784375,fqhc6_100Compliance_baseline,12 -100000,95677,41683,390.5431817469193,7053,72.35803798196014,5420,55.99046792855127,2147,22.022011559727,77.28391542799022,79.6840946152267,63.28504443165552,65.06062915166862,77.01607123412403,79.41654325652861,63.184856131684576,64.96352532425024,0.2678441938661962,267.55135869808555,0.1001882999709451,97.10382741837977,84.92572,59.77780853262495,88762.94198187652,62478.76556813544,254.22926,158.54934971573672,265069.0761625051,165066.03438207373,272.38863,130.9177806231199,280840.7767802084,133812.04761707544,3913.60539,1770.5730099390164,4045521.703230661,1805660.1063359175,1294.5222,570.6138048739182,1336488.957638722,579872.01195054,2121.70062,902.9703019285868,2178306.824001589,908728.7030316336,0.37933,100000,0,386026,4034.679180994387,0,0.0,0,0.0,21565,224.7248555034125,0,0.0,25384,261.50485487630255,2037408,0,73176,0,0,0,0,0,48,0.4912361382568433,0,0.0,0,0.0,0,0.0,0.07053,0.185933092557931,0.3044094711470296,0.02147,0.3160803342768567,0.6839196657231433,25.36439080846918,4.496763431008358,0.3354243542435424,0.1966789667896679,0.2383763837638376,0.229520295202952,10.975850152802389,5.492380363010072,23.165592076392887,12933.874261927194,61.18425186841936,12.50336656379596,20.423825019119256,14.416612821400426,13.840447464103736,0.5415129151291513,0.7457786116322702,0.6941694169416942,0.56656346749226,0.1173633440514469,0.7024246877296105,0.9143730886850152,0.8755555555555555,0.7245901639344262,0.1505376344086021,0.4875585119487558,0.6711772665764547,0.6345029239766082,0.5177304964539007,0.1077720207253886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712531160698,0.004635264524505,0.007005289501203,0.0093393359823579,0.0116602057324257,0.0139454812158748,0.0161354480085674,0.0184561016464436,0.0205983124520582,0.022854391608105,0.0249297248497035,0.0271669886153466,0.0292855599345551,0.0315153763706818,0.0339093273875882,0.0358542664198475,0.0379039862393401,0.0399846372629415,0.0419921570259109,0.0442739817401092,0.0590207774028768,0.0730259438406935,0.0856711060734863,0.0976492623692573,0.1097754042301684,0.1262001291428934,0.1389372637301958,0.1518143379024613,0.1634935057993479,0.174558023207136,0.1883987667895565,0.2011181052882479,0.2133382702066952,0.2244128987031195,0.2347902772419114,0.2460026648900732,0.2562404938713429,0.265013246152979,0.2743116345694731,0.2833698658434419,0.29124231527665,0.2994134209291412,0.3067554574267298,0.3137876767458344,0.3198377608068111,0.326228172005829,0.3321296017654729,0.3385956194335079,0.3437771524166461,0.3489736070381232,0.3494807821982468,0.3501694635033479,0.350974616284478,0.3511896157960163,0.3517421083978558,0.3518899499493352,0.3519264948584486,0.3529063553399654,0.3538899268121283,0.3552919250206086,0.3556777729644209,0.3564606629790282,0.3578749392447328,0.3580060422960725,0.3591655333203808,0.361314731615039,0.3626109361580303,0.3650547503006519,0.3674001056152086,0.3703291903268078,0.3717896081383148,0.3728615450005313,0.3744358074222668,0.3744632768361582,0.3759426496601806,0.3804809052333804,0.377605355241138,0.3779081529435565,0.3832035595105673,0.3920738745671412,0.0,2.607447138063787,59.7962954497812,202.38648922010236,310.2599306006916,fqhc6_100Compliance_baseline,13 -100000,95659,41884,394.47412161950257,7134,73.42748722023019,5552,57.474989284855575,2199,22.65338337218662,77.35161970545354,79.75665190937185,63.31721993396855,65.09391230477932,77.07720061480919,79.48181968957574,63.2160666034536,64.99499062854194,0.2744190906443577,274.83221979611017,0.1011533305149541,98.92167623738146,85.53512,60.191507932917865,89416.69889921493,62922.99515248735,256.97163,160.0846611658446,268098.2343532757,166814.54036300257,278.51893,133.239195351524,287782.3414419971,136695.1673748129,4026.66428,1790.969109028567,4174484.355889148,1837333.4647326092,1348.82983,582.0414910635028,1398324.53820341,596739.3878918899,2172.7171,909.1892214413554,2241226.8788091037,923565.927953396,0.37949,100000,0,388796,4064.395404509769,0,0.0,0,0.0,21690,226.16795074169707,0,0.0,25918,267.6590806928778,2036193,0,73009,0,0,0,0,0,44,0.4286057767695668,0,0.0,1,0.010453799433404,0,0.0,0.07134,0.1879891433239347,0.308242220353238,0.02199,0.3230830670926518,0.6769169329073482,25.443824495024632,4.582648764217516,0.3369956772334294,0.2017291066282421,0.2249639769452449,0.2363112391930835,10.975128573622277,5.300138398743422,23.425766267686747,12912.000927030327,62.37904612147314,13.286739126355648,20.86697499823954,13.856310457413906,14.36902153946404,0.5462896253602305,0.76875,0.6814537680384821,0.589271417133707,0.1227134146341463,0.6989720998531571,0.8962765957446809,0.8436018957345972,0.7216494845360825,0.1794871794871795,0.4966587112171837,0.7043010752688172,0.6342305037957212,0.5490605427974948,0.107795957651588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593489427665,0.0047051665568118,0.0068707248259484,0.0089612289685442,0.0110976614552075,0.0132206151965777,0.0155611074287462,0.0177778231612053,0.0198261758691206,0.021970705725699,0.0243041662819447,0.0264712833845426,0.028824879338911,0.030732592424586,0.032629915403923,0.0347934944545605,0.0366692923178972,0.0385342053358247,0.0404282102766304,0.0423943529804293,0.0570601634171316,0.0710696038194153,0.0849837841241852,0.0976125590547038,0.1096899470229426,0.125439227805766,0.1383084894041703,0.1500575545702592,0.1617845297956563,0.1734680727678859,0.1868718457490402,0.2001213381868608,0.2124708802333935,0.2235686918445539,0.234024978523756,0.2453016376356842,0.256442636507901,0.2657515118072994,0.2751007892794276,0.2833327604578421,0.2912992153322686,0.2989183184236683,0.3064462692571645,0.3135976997723733,0.3207746478873239,0.3271793482277015,0.3336666583335416,0.3393492628368073,0.3449916603095382,0.3504604561084542,0.351101481650944,0.3519692075056705,0.3530604486123432,0.3537101503705094,0.3540452978242777,0.3536772138328177,0.3529365205002374,0.3535529450423067,0.3546284893267651,0.354699631471609,0.3555764352156347,0.3577143988908695,0.3580015973769389,0.3586683979582699,0.3602721939020871,0.3617420295894978,0.3634496919917864,0.3648495530655923,0.3671103930315057,0.3682116570519196,0.3704312865497076,0.3715783343040186,0.3723604826546003,0.3753998476770754,0.3780178487552841,0.373820613877941,0.3733661387052129,0.3765656565656565,0.3818181818181818,0.3885971492873218,0.0,2.226517402883912,60.19191370261579,208.1296302726259,319.30724772449275,fqhc6_100Compliance_baseline,14 -100000,95796,42242,397.12514092446446,7213,74.1471460186229,5639,58.34272829763246,2231,22.94459058833354,77.3507064425629,79.67873997084502,63.34838135415546,65.06981361009716,77.07077265433854,79.39837632548674,63.245384870196965,64.96937212162237,0.2799337882243549,280.3636453582783,0.102996483958492,100.44148847478596,85.65854,60.28492069717534,89417.65835734269,62930.519747354105,259.05313,161.25829169935437,269906.7080045096,167820.15084069726,282.20136,134.60052391677257,291246.9518560274,137968.34524789968,4066.06911,1816.470701769381,4211375.516723037,1863053.6575320277,1308.11166,564.820641336393,1355288.268821245,579377.9816864929,2195.05616,918.3629157387916,2260219.57075452,930790.5998984936,0.3834,100000,0,389357,4064.439016242849,0,0.0,0,0.0,21890,227.95315044469496,0,0.0,26283,271.08647542694894,2037873,0,73135,0,0,0,0,0,37,0.3862374211866883,0,0.0,0,0.0,0,0.0,0.07213,0.1881324986958789,0.3093026479966727,0.02231,0.3094518206914683,0.6905481793085316,25.3484348076659,4.528904795866761,0.3376485192410002,0.2010994857244192,0.2344387302713247,0.2268132647632559,10.884467878408948,5.460364989425936,23.872137095343675,13048.203286504828,63.64621588096101,13.14050860093903,21.645215953280108,14.780024650082774,14.080466676659086,0.5479694981379677,0.7380952380952381,0.7058823529411765,0.5726172465960666,0.1188428459734167,0.697037037037037,0.9,0.8699360341151386,0.6892857142857143,0.1586715867158671,0.5010491956166939,0.6716417910447762,0.6522648083623693,0.5412667946257198,0.1081349206349206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019853328471293,0.0042072181670721,0.006514657980456,0.0089895173086299,0.0111741499918659,0.0136622313620491,0.015979780685663,0.0182261636272718,0.0203255771176308,0.0226156365124846,0.0246226676093572,0.0265245185055973,0.0287652227531987,0.030861719321001,0.0330696969384493,0.0352482980196076,0.037198377550598,0.0394144844602019,0.0413114141214833,0.0430373948530024,0.0572018865562001,0.071685487243831,0.0850865331194901,0.0974125609551034,0.1099072512647554,0.1260610801611044,0.1390211570072644,0.1511600681140911,0.1634797091701098,0.1753362988370223,0.189625850340136,0.2031668828361435,0.215904028165647,0.2277991434315182,0.2382654014887464,0.2492227692648116,0.2595428354898748,0.269387204781915,0.278672545308232,0.2879034103913939,0.2960644110478346,0.3032625074466469,0.31041417738291,0.3175262918333613,0.3239840211755849,0.330417426445222,0.3370235548717178,0.3425241433715471,0.3477083711169262,0.3526215128932269,0.3535223020808097,0.3546868547832071,0.3558512212653803,0.3561980839917802,0.3562725933859954,0.3560424722273368,0.3559900338025487,0.3576313924551312,0.3587540095027359,0.3585687382297551,0.3596033107713192,0.3600254589573761,0.3606301207872286,0.3603878491998915,0.3625584947748709,0.3634473684210526,0.3662308489805322,0.3687828162291169,0.3696184560780834,0.3697616762635956,0.3721283550481101,0.3744676262871313,0.3754397185801087,0.3771242337239078,0.3807978621874403,0.3800626808100289,0.3787665886026541,0.3779724655819774,0.3808848553601815,0.3825371965544244,0.0,2.026207420369567,59.79255580616354,218.5382177969101,325.4962447333721,fqhc6_100Compliance_baseline,15 -100000,95732,41854,392.7840220615886,7158,73.45506204821794,5601,57.88033259516149,2309,23.67024610370618,77.31652017658898,79.67825091258489,63.31665033110207,65.06280789573417,77.02807765121558,79.39075663129496,63.21123589987087,64.96100441957343,0.288442525373398,287.4942812899235,0.1054144312311962,101.8034761607396,84.89338,59.73541113960564,88678.16404128191,62398.58264697869,255.80371,159.4766392172043,266568.1590272845,165946.55832658283,279.50877,133.93172005327466,288373.7621693895,137132.3228918962,4060.63253,1816.4826037503915,4197613.264112313,1853412.864820947,1356.78801,593.8075022628043,1397711.935403,600751.8733000796,2267.7961,939.6429313778568,2326879.5804955503,945862.959297472,0.38084,100000,0,385879,4030.825638240087,0,0.0,0,0.0,21649,225.46275017757907,0,0.0,26021,268.2279697488823,2038762,0,73197,0,0,0,0,0,52,0.5431830526887561,0,0.0,1,0.0104458279363222,0,0.0,0.07158,0.1879529461191051,0.3225761385861972,0.02309,0.3169886742171885,0.6830113257828114,25.346887522020367,4.5593604278200575,0.3231565791822888,0.1967505802535261,0.2467416532762006,0.2333511872879843,11.039973730592342,5.488776433777399,24.56420969510289,12980.01854202097,63.19194965986368,12.920451142083165,20.38226169119937,15.432496457373128,14.45674036920801,0.5470451705052669,0.7713248638838476,0.7049723756906078,0.5701881331403763,0.1147666411629686,0.7193240264511389,0.92797783933518,0.875,0.724025974025974,0.1653846153846153,0.4917452830188679,0.6950067476383266,0.6516690856313497,0.5260707635009311,0.102196752626552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021981138764801,0.0049573706673695,0.0074092869829992,0.0098255382708271,0.0120137532552083,0.0142280976921353,0.0163075071644926,0.0184430624061762,0.0206746352286786,0.0227489122088559,0.0248133869247805,0.0270156487452252,0.0291014540443822,0.0310878161298294,0.0330596414498793,0.0352640932385518,0.0371524399080764,0.039158532410817,0.0413721413721413,0.0434968328054675,0.0578414892617379,0.0719331107878737,0.0848444169437132,0.0979862243020137,0.1098257971992576,0.1256240480622779,0.138905981455155,0.1519406416998446,0.1634364716440873,0.1747993648341272,0.1887638028548343,0.2012294106188177,0.2135011093226606,0.2248501946376241,0.2350383124889906,0.2461371344964419,0.257077763259289,0.2677335494108511,0.2770304784607525,0.2853410939755723,0.2932135913341357,0.3019082049302118,0.3088235294117647,0.3154453402437854,0.321937460487283,0.3280434380206083,0.3347365255957303,0.3404930250334416,0.3457092501879066,0.351351708464364,0.3518378684501497,0.3521797331051709,0.3529070589899561,0.353113616903943,0.3534089213784872,0.3529456994786781,0.3521417785901613,0.3530276016904384,0.3544366899302094,0.3562075044069503,0.3570404196701513,0.3573716354666083,0.3595676406012498,0.3599513305243235,0.3613068856111797,0.3620233259074826,0.3625699125197189,0.3655614905654414,0.3688816741362882,0.3698865452221156,0.3718348623853211,0.3741003330110645,0.3770439651332951,0.3804564251799663,0.380604103343465,0.3830659751537812,0.3881363848668846,0.3959317854941442,0.3932773109243697,0.4037558685446009,0.0,2.363885946856305,59.94100276090014,213.994555336487,323.12630508553616,fqhc6_100Compliance_baseline,16 -100000,95681,41941,393.9653640743721,7290,75.07237591580356,5641,58.402399640471984,2266,23.296161202328573,77.40264542862671,79.78387441438717,63.35728834693722,65.11248953549979,77.12337700165399,79.50418219725053,63.25593359604917,65.01336378210382,0.2792684269727203,279.69221713664183,0.1013547508880492,99.12575339596684,85.63764,60.24400565793509,89503.28696397404,62963.39467390087,260.58369,161.9849561538766,271792.6338562515,168745.39518797986,280.02937,133.48436870797738,289649.063032368,137127.94301750814,4104.92459,1831.975735902184,4249306.12138251,1873942.227199071,1359.83369,590.3619211460169,1405989.9039516726,601867.2087498936,2238.69436,924.6418721740816,2302944.1790951183,935746.1184602536,0.38186,100000,0,389262,4068.331225635184,0,0.0,0,0.0,22059,229.9516100375205,0,0.0,26046,269.1443442271716,2038908,0,73088,0,0,0,0,0,55,0.5748267681148818,0,0.0,1,0.0104513957839069,0,0.0,0.0729,0.1909076624941078,0.3108367626886145,0.02266,0.3087755900378146,0.6912244099621854,25.42298094088044,4.574864429873104,0.3265378478993086,0.1994327246942031,0.2382556284346747,0.2357737989718135,11.145663658109957,5.518643591673392,24.12649544237844,12943.31397665728,63.095744915680456,13.097419611495177,20.55026003840599,14.935243327532683,14.512821938246612,0.5373160787094486,0.7493333333333333,0.7046688382193268,0.5580357142857143,0.1052631578947368,0.7060957910014514,0.8974358974358975,0.8651685393258427,0.725,0.1564885496183206,0.4827586206896552,0.6821705426356589,0.6535433070866141,0.505859375,0.0926966292134831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366872234205,0.004581065604508,0.0069892473118279,0.0090693966261438,0.011033038102114,0.0133698552023297,0.0156901526196132,0.0178708116879803,0.0201216085023759,0.0222072127389577,0.0242829906312142,0.0264249342969776,0.0287679542673836,0.0308451255432655,0.032872132974278,0.0349136460884933,0.0371831510934393,0.0391320590249673,0.0413511939429237,0.0433690486116901,0.0581266584484235,0.0724390320520204,0.0848016118707565,0.0977036281202991,0.1096309422101277,0.1248413034278459,0.137862243869311,0.1494188026909648,0.1613189302390187,0.1735349311028899,0.1867429014439383,0.1997554588932892,0.2122213765358269,0.2242361300901885,0.2352203609806531,0.2462223107834346,0.2561913466039544,0.265590600709889,0.2752143917166064,0.2843112594896186,0.2927271467504272,0.3012921525370312,0.3085591438493704,0.3156490102683166,0.3222197956856179,0.3285846210675368,0.3341255644646811,0.339512604187843,0.344836949494427,0.3503405393299872,0.3512913938448714,0.3522894212947072,0.3531188960555345,0.3540258055215166,0.3545544892237863,0.353790834672175,0.3537803816008233,0.3547305625400582,0.3558887826205766,0.3569451142188644,0.358422602855374,0.3585821705579348,0.3600334623026247,0.3609732098931079,0.3610910317575057,0.3615891614793116,0.3615540985484009,0.3637653289618864,0.3653113087674714,0.3675796356097755,0.3680978783851899,0.3720431261063133,0.3762615042843542,0.3766393128307385,0.3755583008647724,0.3808788598574822,0.3814147018030513,0.3813576494427558,0.3865199449793672,0.3873292867981791,0.0,2.101961023243453,60.96383238458946,204.2366150217077,332.19497427729493,fqhc6_100Compliance_baseline,17 -100000,95722,41736,392.0310900315497,6995,71.83301644345083,5464,56.444704456655735,2200,22.617580075635697,77.33907921770925,79.70829646473393,63.32552877917672,65.07662246716599,77.06789158073656,79.43672890202872,63.22696359910564,64.98026180255889,0.271187636972698,271.567562705215,0.0985651800710769,96.36066460710424,84.8144,59.68682907491668,88604.91840956103,62354.34808603736,254.66443,159.14732337073096,265415.33816677466,165630.91602842908,278.59607,133.6659804361534,287294.9792106308,136696.66374085215,3956.69508,1768.797227240862,4092100.415787384,1806645.0154006395,1348.07004,587.8437398561244,1392581.569545141,598461.2898669621,2173.19736,897.6538308665346,2236307.181212261,908735.0136806988,0.37947,100000,0,385520,4027.496291343683,0,0.0,0,0.0,21521,224.15954535007629,0,0.0,25875,266.5531434779884,2041202,0,73150,0,0,0,0,0,60,0.6268151522116129,0,0.0,0,0.0,0,0.0,0.06995,0.1843360476454001,0.3145103645461043,0.022,0.3188150953604761,0.6811849046395239,25.44483700841745,4.567643198124864,0.3418740849194729,0.1976573938506588,0.2225475841874085,0.2379209370424597,11.111267758571634,5.517770008667184,23.3389026127094,12929.611603380234,61.46610816631294,12.585593290757172,21.133251327286526,13.45921080083531,14.288052747433944,0.556185944363104,0.7546296296296297,0.7066381156316917,0.6118421052631579,0.123076923076923,0.7177541729893778,0.9190031152647976,0.8864628820960698,0.7306273062730627,0.1753731343283582,0.5048239266763145,0.6851119894598156,0.64822695035461,0.5777777777777777,0.1094961240310077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788040836169,0.0045423206391694,0.0071252397917237,0.0092261420907169,0.0112102377343519,0.0135147521616474,0.0159078162443277,0.0182135601180206,0.0205116669052536,0.0227370490997357,0.0252597249428246,0.02750531516079,0.0295475815823845,0.0316395705837505,0.0337844114823646,0.0356555639432075,0.0376256086190821,0.0396948941469489,0.0413659713412224,0.0430366295786973,0.0577278469778756,0.0718672511744211,0.0850597609561753,0.0976645881746774,0.1101749427929685,0.1258673210357082,0.1390880930153611,0.1512967379269227,0.1633647496313393,0.1745493562231759,0.1885257384239054,0.2017107898868496,0.2134650535294629,0.223925675453859,0.2346884841544255,0.2459590696436886,0.2566636516922939,0.266575875924321,0.2757818264373687,0.2843797996469752,0.2926755868327237,0.3001275047668066,0.3073402091119837,0.314077303596881,0.3199393203883495,0.3258309439720414,0.3313176241285389,0.3369065460919044,0.3424147646496239,0.3472820999617661,0.3476436410587475,0.3481886101900136,0.3492970061062458,0.3506681530598949,0.3511691249795347,0.3510873232524614,0.3510505034488226,0.3522603799677323,0.3539707598325211,0.3550880591125937,0.3561272850372376,0.3571442732805964,0.3580817200688699,0.3607974316952158,0.3631655022886051,0.3636814362507176,0.3645076386107455,0.3685706166524581,0.3706863125242342,0.3737018693081962,0.3746326230712711,0.3761886853274593,0.3774936061381074,0.3793956256279465,0.3794084186575654,0.3825228695233509,0.3784885544057698,0.3827493261455525,0.3800226372382569,0.3848259679311693,0.0,2.395490019277941,57.91530450383066,207.3966287038637,316.6378589045725,fqhc6_100Compliance_baseline,18 -100000,95695,41754,392.4969956633053,7136,73.49391295260986,5537,57.36976853545118,2280,23.501750352683004,77.30793472821749,79.68509579075814,63.31631099018998,65.07061494332416,77.03242929302438,79.40633087206486,63.21556911240287,64.9709112577978,0.2755054351931107,278.7649186932839,0.1007418777871151,99.70368552636444,85.19852,59.95585875998525,89031.08835362349,62652.85726734443,257.3761,160.26827954160598,268461.643764042,166985.82844830555,276.99292,132.80823444659467,286260.87047390145,136313.99757166105,3990.57939,1791.964744755385,4138709.848999425,1841257.1745173556,1313.9194,570.6850798821465,1362119.9958200532,585450.0338389116,2241.57712,928.4277106937516,2312873.776059355,945094.811038954,0.37971,100000,0,387266,4046.867652437432,0,0.0,0,0.0,21778,227.0651549192748,0,0.0,25796,266.3880035529548,2037227,0,73214,0,0,0,0,0,44,0.4597941376247453,0,0.0,0,0.0,0,0.0,0.07136,0.1879328961575939,0.3195067264573991,0.0228,0.3105473965287049,0.6894526034712951,25.179938549125037,4.513128633487046,0.3404370597796641,0.2044428390825356,0.2255734152067906,0.2295466859310095,10.895982016739124,5.357320399556051,24.33612540766679,12901.722087597796,62.5554328183832,13.215114756618249,21.47411609631221,13.785497365368794,14.080704600083957,0.5468665342243092,0.7632508833922261,0.6923076923076923,0.5764611689351481,0.1093627065302911,0.6971014492753623,0.8933717579250721,0.8545081967213115,0.7087719298245614,0.1269230769230769,0.4969930238152514,0.7057324840764331,0.635647816750179,0.5373443983402489,0.1048466864490603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679869590749,0.0043472092740464,0.0066545613163046,0.008562200373771,0.0107497355788788,0.0128609832593377,0.0152338611822047,0.0176110260336906,0.0196487354065713,0.0219569868258079,0.0240907040636404,0.0262731006160164,0.0285182442716689,0.0308643247141238,0.0328562436150123,0.0348392432544195,0.0365036109873485,0.0386839564364248,0.0406753565595514,0.0429402443601184,0.0568044123177203,0.0711452107560421,0.0841639213546803,0.0971708035338662,0.1098436528101377,0.1247382780280439,0.1379727364345197,0.1506578107037935,0.1626801414424135,0.1743467627751319,0.1882962340753184,0.2009129950347782,0.2135075778990628,0.2245801626869588,0.2355128261539138,0.2467240443513995,0.2573481822036735,0.2672660170578572,0.2759763474786911,0.2841905067424355,0.2920860309702227,0.2993832578497115,0.3067039304619684,0.3140041531130343,0.3203602287939637,0.3262955143164055,0.3316274052331853,0.3377900820330939,0.3435336597784156,0.3476160859611745,0.3485421166306695,0.3489107325289229,0.3498961292237249,0.3508667585406542,0.3520151603324529,0.3512803172358673,0.351637519872814,0.3528673775958268,0.3539529529013523,0.3554227677289693,0.3567175428679103,0.3567621320604614,0.3574753069519618,0.3567610062893082,0.3575905713801698,0.3588765876876956,0.3598666628351389,0.362445691814924,0.3645145251793451,0.3680925133047897,0.3708667219305517,0.3738473085996139,0.376916714385697,0.3812562466364265,0.3844619621996391,0.3903519272204931,0.3910443183560803,0.3978844589096826,0.3899233296823658,0.3883384146341463,0.0,1.864797786984247,61.3764304530992,209.01574844767748,317.0251752930234,fqhc6_100Compliance_baseline,19 -100000,95710,42087,396.8864277504963,7260,74.66304461393794,5599,57.95632640267475,2281,23.456274161529624,77.38171245272493,79.75501264809051,63.34258245905804,65.09481881885296,77.10949487684434,79.48393261399742,63.24258412610782,64.99854501443475,0.2722175758805889,271.0800340930888,0.0999983329502214,96.2738044182032,85.61872,60.24088014031827,89456.16967923936,62940.84145048402,256.10756,158.970096221949,267042.1899488037,165551.57522117754,277.86268,132.34069325880583,287436.0881830529,136053.44887290496,4049.05128,1810.8259202643048,4189100.020896458,1851016.2118757556,1365.34181,595.2559010518964,1408043.9556995088,603711.5237433206,2249.58248,931.9704674345842,2313711.691568279,939336.8580408434,0.38333,100000,0,389176,4066.189530874517,0,0.0,0,0.0,21673,225.86981506634623,0,0.0,25957,268.27917667955285,2039202,0,73136,0,0,0,0,0,45,0.4701703061331104,0,0.0,0,0.0,0,0.0,0.0726,0.1893929512430542,0.3141873278236914,0.02281,0.3158032443746729,0.684196755625327,25.34386368267841,4.573149859036332,0.3305947490623325,0.1991427040542954,0.2375424182889801,0.2327201285943918,11.035981272955167,5.393436933203761,24.11684922236005,12988.10532623019,62.88414813256692,12.97310093859826,20.717090085476528,14.753466998159404,14.440490110332712,0.5359885693873906,0.7524663677130045,0.6763911399243652,0.5796992481203007,0.1066768994627782,0.7124907612712491,0.9208211143695014,0.8648648648648649,0.7661016949152543,0.1465201465201465,0.4797456429580782,0.6782945736434108,0.6169154228855721,0.5265700483091788,0.0961165048543689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0048454621942442,0.0069407801274505,0.0088576478475509,0.011036068108306,0.0131568228105906,0.0154065765995411,0.0177222426395524,0.0199135172709894,0.0218957928140034,0.0241334413221107,0.0262528362714196,0.028352529823118,0.0301407115927398,0.032321647867411,0.0342021733061756,0.0362809677686635,0.038157007212162,0.0401044212628316,0.0420618212893678,0.0575057181948259,0.0707742239438831,0.0835029695074605,0.0965502004229397,0.1083906493944892,0.1239833744037735,0.137518303940918,0.1508821243385398,0.1629683443552953,0.1743458811161054,0.1879721123694787,0.2017083283714585,0.2145288826530057,0.22620388084176,0.2369743832286591,0.2473431342160031,0.2582353859535651,0.2678864622927959,0.277752574513451,0.2865321638766116,0.2940700028926815,0.3018391422792269,0.3099786931818182,0.3171445009109214,0.3235040398517708,0.3294712190311845,0.3351180274959657,0.3409446714269349,0.346360034185378,0.3510297241315619,0.3519635022743789,0.3528247422680412,0.3540798513346097,0.3548280041556043,0.3554533995699562,0.3554825399251165,0.3547713576185128,0.356533997770638,0.3572037656047479,0.3587959245579287,0.3602384344305316,0.360435212660732,0.3608124503200435,0.3636201077359798,0.3642395249885815,0.3657464026436991,0.3668460465248712,0.3692505729804402,0.3711351048166585,0.372014465683742,0.3742406942224252,0.3753601536655639,0.3781822810590631,0.3801016479285384,0.382255468232175,0.3828974083363191,0.3871166589613191,0.3895705521472393,0.3924686192468619,0.3916601714731099,0.0,2.1165852355039774,59.81260942244874,211.1538436944092,324.4862194901713,fqhc6_100Compliance_baseline,20 -100000,95864,41931,393.505382625386,7102,73.07226904781774,5485,56.6949011099057,2187,22.469331553033463,77.44506122741345,79.72282614761255,63.40474875222951,65.08417277612331,77.18462591700593,79.46198689179873,63.30913569686143,64.99082305898304,0.2604353104075159,260.8392558138206,0.0956130553680836,93.34971714027064,86.08358,60.57924973658736,89797.60911290995,63192.90842921989,256.186,159.0654103017844,266733.9355753985,165423.130999942,274.04356,130.8944500034554,282431.8096469999,133910.51634043714,3969.0634,1758.947591957168,4104449.949929066,1798979.9006479683,1307.35609,558.609993281221,1352645.9880664274,571600.298612563,2159.81466,892.5129656628819,2221154.4479679544,903667.3601295667,0.38167,100000,0,391289,4081.7095051322704,0,0.0,0,0.0,21676,225.5695568722357,0,0.0,25469,262.41341901026453,2039874,0,73250,0,0,0,0,0,50,0.500709338229158,0,0.0,1,0.0104314445464407,0,0.0,0.07102,0.1860769774936463,0.3079414249507181,0.02187,0.3108144192256342,0.6891855807743659,25.564919577193475,4.64046793947585,0.331084776663628,0.2034639927073837,0.2273473108477666,0.2381039197812215,10.96924575662381,5.349729764381528,22.99733763783392,12955.96561973712,61.19080515046131,12.940788975857943,20.358078845708647,13.751081135175378,14.140856193719332,0.5473108477666363,0.78584229390681,0.6965859030837004,0.5685645549318364,0.1156202143950995,0.7043879907621247,0.9285714285714286,0.8506787330316742,0.7454545454545455,0.1346153846153846,0.4985666507405638,0.7279596977329975,0.6470160116448326,0.5185185185185185,0.1108986615678776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0043254084826629,0.0065299169564908,0.0088506353781819,0.0113703334891377,0.0137855958327822,0.0159394606045791,0.0179775051750333,0.0200961921392028,0.0222903885480572,0.0242676196229815,0.0262650503558755,0.02840827393546,0.0305187257634824,0.0325053316986225,0.0345781466113416,0.0366915551510889,0.0386608086543841,0.0408828537020887,0.0430145566920203,0.0574428595261928,0.0716457203748393,0.0846717621191498,0.0976925256298597,0.1097644372902397,0.1246345607869212,0.1379273832339767,0.151230862400527,0.1637627689748566,0.1747412805941717,0.1886707289550891,0.2018788467768059,0.2138561410364966,0.224574466923606,0.2348799402447329,0.2459172383270635,0.2567466642886603,0.2666449416233102,0.2762001927109901,0.2850032609068754,0.29277289546716,0.3004841992000187,0.3079517216897408,0.3151662456148753,0.3220499496132972,0.3282291345857714,0.3339428857715431,0.3397151113204424,0.3452926999922258,0.3496760059651855,0.3501548404470176,0.3502227477725222,0.3520065243679519,0.352858954406594,0.3537891695681162,0.3535760628959621,0.3537759676706447,0.3539934533551555,0.3554192229038855,0.3575100958887051,0.359088528025144,0.3601256321112516,0.3609139075621453,0.3615176636203159,0.3615277377175271,0.3630705934432205,0.3649886234357224,0.3667587592615848,0.3712068242203887,0.3719998413139207,0.3735992315784659,0.3767211015049632,0.3809583938379948,0.3822669947708397,0.3799487325548277,0.3887688984881209,0.3876029206151934,0.3930948419301164,0.3916339135317238,0.3982615566969577,0.0,2.02344244910037,57.44953002727805,205.33704906430305,319.4643745588868,fqhc6_100Compliance_baseline,21 -100000,95684,41861,393.3991053885707,7063,72.5722168805652,5518,57.07328288951131,2197,22.678817775176626,77.29747507811412,79.70093631824277,63.28577397120039,65.06573238852928,77.03396531352709,79.43445609631485,63.18838814872554,64.96944313881711,0.2635097645870274,266.480221927921,0.0973858224748553,96.28924971217144,86.16938,60.60384489108163,90056.20584423728,63337.491002760784,257.98819,160.8061380924286,269047.28063208057,167482.14390463862,278.75565,133.30617456839056,287108.4089293926,136184.00045010404,3957.69928,1776.2414744998243,4097891.267087496,1818095.7400243208,1295.5801,565.3669209297221,1341041.856527737,578055.1761932963,2164.28918,901.6470454898124,2234708.498808578,918554.4653612402,0.38081,100000,0,391679,4093.4639020107857,0,0.0,0,0.0,21885,228.1050123322604,0,0.0,26030,267.72501149617494,2028010,0,72856,0,0,0,0,0,42,0.4389448601647088,0,0.0,1,0.0104510680991597,0,0.0,0.07063,0.1854730705601218,0.3110576242389919,0.02197,0.321947283485745,0.678052716514255,25.509671298090904,4.474923133995664,0.3405219282348677,0.2062341428053642,0.2258064516129032,0.2274374773468648,10.79269125816739,5.390714831511733,23.486790128687552,12939.394660183176,61.96551240922432,13.189103285831733,21.033402577712547,13.963729767058382,13.779276778621666,0.5514679231605655,0.7583479789103691,0.6881319850984566,0.6051364365971108,0.1059760956175298,0.7001477104874446,0.9171270718232044,0.8362445414847162,0.7293233082706767,0.1455223880597015,0.5031219980787704,0.6842783505154639,0.6403940886699507,0.5714285714285714,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025234099477076,0.0047775546223601,0.0069648205492664,0.0089828269484808,0.0111897786458333,0.0133940393978284,0.0155542409530414,0.0179530646841363,0.0200149319369585,0.0222936785081565,0.0244222662139845,0.0265455815578064,0.028477073281139,0.0306458925848068,0.0327713132272619,0.0349717619313597,0.0369706266453846,0.0387510772841018,0.0409388362342512,0.0430006670001667,0.0569930325599857,0.0711728498450716,0.0843870344914427,0.0977962446746962,0.1099754227186903,0.125526287950915,0.1386088174736261,0.1512805494915073,0.1633220360728299,0.1742439694689267,0.1883262524531475,0.201049140528472,0.2134027467680277,0.2243634690389587,0.2350768891583531,0.2466492100124267,0.2578665563765216,0.2677301968206757,0.2768762216464385,0.2853146532451303,0.2934434968017058,0.3005002870499467,0.3071964355543969,0.3144990875036019,0.320755176317359,0.3271553107944583,0.3330867046224072,0.3388911568097157,0.3445265714916667,0.349431404477276,0.3498472931700856,0.3500601169170386,0.3511478472556402,0.3525544267053701,0.3529657228017884,0.3528499477919046,0.3526045464633334,0.3541471588388941,0.3551558180018432,0.3566408619028932,0.3573085412847469,0.3589202618503037,0.359366169175057,0.3599231782755309,0.3605970292746238,0.3611834566100635,0.3620517786448691,0.3640395018241288,0.3662273765594799,0.3689146763104558,0.370938298649142,0.3731137088204038,0.3731362063541994,0.3725967018770423,0.3766099464134624,0.3768475818848291,0.3774803876326719,0.384505896705978,0.3891652846876727,0.3860393366756652,0.0,2.282850489283355,59.67425668394526,204.3972403790702,320.6960331497954,fqhc6_100Compliance_baseline,22 -100000,95822,41907,393.65698900043833,7200,73.80351067604516,5670,58.53561812527394,2275,23.314061489010875,77.32864418348662,79.63822309300384,63.32870225298407,65.03796005696626,77.05108950854665,79.36196792198812,63.22705548249948,64.93992215628357,0.2775546749399638,276.2551710157197,0.1016467704845851,98.0379006826837,85.02054,59.87115000227261,88727.57821794577,62481.63261283694,257.11303,159.82801097274017,267672.2882010394,166145.83768431094,285.23252,136.73740845039123,293115.9858905053,139315.36679204513,4092.14983,1835.118680740518,4227016.040157792,1871619.3259994755,1391.19187,604.1748839346681,1439070.4535492894,617738.206189255,2244.25442,930.5596027034868,2302769.32228507,937590.7238149784,0.38092,100000,0,386457,4033.0717371793535,0,0.0,0,0.0,21762,226.44069211663293,0,0.0,26474,271.7851850305775,2036852,0,73189,0,0,0,0,0,52,0.5426728726179791,0,0.0,0,0.0,0,0.0,0.072,0.189016066365641,0.3159722222222222,0.02275,0.3121713985278654,0.6878286014721346,25.25105689715717,4.552599242430559,0.3287477954144621,0.2075837742504409,0.2305114638447971,0.2331569664902998,11.081173203178556,5.487478511675416,24.18777625755133,12995.061868038703,63.92925745566791,13.808249017407183,20.94984191582833,14.53416156891553,14.637004953516875,0.5483245149911816,0.7689039932030586,0.6958154506437768,0.5791889824024483,0.113464447806354,0.7129695251594613,0.9304123711340206,0.868421052631579,0.7561837455830389,0.1232394366197183,0.4937778821319558,0.6894803548795945,0.6399147727272727,0.5302734375,0.1107899807321772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0048351782021651,0.0070511844975396,0.0091926702421582,0.0112975391498881,0.0136428425982488,0.015920905106513,0.0180636206843765,0.0202037750503305,0.0222154003581478,0.0244269803375103,0.0263846556448385,0.0285599769793636,0.0305959624036155,0.0328754692076063,0.0349797002035145,0.0370167232386786,0.0388611243597453,0.0410196216929293,0.04277996939827,0.0576816764193551,0.0714046717831824,0.0846226415094339,0.0981766591350953,0.1102291653490186,0.1257029895555837,0.1388561914760495,0.1513242601913234,0.1640928702635738,0.1757491289198606,0.1895172146418687,0.2023218323650015,0.2145474712106219,0.2255684302579798,0.2366843072318982,0.2481058088528512,0.2591471924790371,0.2690766217098597,0.2784792877906977,0.2878325688073394,0.2954455858822438,0.3023138538038443,0.3092549718017215,0.3153733387806109,0.3220116138928454,0.3285317533790038,0.3349468905581821,0.3406572386794017,0.3454970456463866,0.3504804002011593,0.3515691435513262,0.3519804508994519,0.3522497418560901,0.3531521328803322,0.3543117979623193,0.3538097142329816,0.352875701633036,0.3540248825904259,0.3551060951173982,0.3558263545916541,0.3573980743192417,0.3586141207286581,0.3584437955591034,0.3594349142280524,0.3613116654190713,0.3624097650610316,0.3635842622575006,0.3675016584009856,0.3699560246262093,0.3719402985074627,0.372408110953449,0.376056488712956,0.3750795064241191,0.3772071863674917,0.3789693858147936,0.3845228065952581,0.3908629441624365,0.3904081632653061,0.392719249862107,0.3925490196078431,0.0,2.50735502693403,62.1439384870925,211.3730250950877,326.8461507055077,fqhc6_100Compliance_baseline,23 -100000,95746,42285,397.8338520669271,7146,73.51743153760992,5563,57.51676310237504,2194,22.517911975435005,77.35098256499538,79.69832178087835,63.33757887846742,65.07062175706955,77.07916075685615,79.42819005390072,63.23805585436598,64.97472641735112,0.2718218081392223,270.131726977624,0.0995230241014368,95.89533971842457,85.27772,60.013270182513146,89066.61374887724,62679.66304860062,257.89869,160.69448786725113,268772.00091909844,167249.0107860914,281.39939,134.47573333180372,291026.9671840077,138124.82453263563,3991.93721,1779.3238107035625,4127278.1317235194,1816358.19846632,1348.49236,585.0914060092289,1394446.817621624,597127.9176249967,2157.2038,895.7071914184775,2215540.910325236,901634.029329925,0.3827,100000,0,387626,4048.482443130784,0,0.0,0,0.0,21753,226.59954462849623,0,0.0,26215,270.85204603847683,2036273,0,73113,0,0,0,0,0,41,0.428216322352892,0,0.0,0,0.0,0,0.0,0.07146,0.1867258949568853,0.3070249090400224,0.02194,0.3183814721150007,0.6816185278849993,25.39003629608723,4.522510291296892,0.3251842531008448,0.2103181736473126,0.2399784289052669,0.2245191443465755,11.282156890122572,5.742683110428073,23.256390281880503,12960.354763138035,62.26346450182732,13.455325329327463,20.20714971473015,14.833894278832666,13.76709517893704,0.5486248427107676,0.7615384615384615,0.6843559977888336,0.5760299625468165,0.1232986389111289,0.7176029962546816,0.9315476190476192,0.8758620689655172,0.7491525423728813,0.1598513011152416,0.4952696310312204,0.6930455635491607,0.62372634643377,0.5269230769230769,0.1132653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366439500572,0.004186051225915,0.0063620589936379,0.0085317299098074,0.0106150420432939,0.0125724058596573,0.0146685558760868,0.0168600675627404,0.0192050204928505,0.0214207493680213,0.0234946798696106,0.0258879080270991,0.0282115869017632,0.0302025517191667,0.0324540681060895,0.034521250206714,0.0365714759054857,0.0388099660672221,0.0408804050611854,0.0429954056278454,0.0577182048792709,0.0714001757542787,0.0844605221767851,0.0974094244800975,0.1093084545646215,0.1249141129586368,0.1376516501230169,0.1499276380198357,0.1616710818663476,0.1732367927058192,0.1872058079040058,0.2008571985193843,0.2138381882654948,0.2256278382666739,0.2359280909761441,0.2466940820466209,0.2569893554043941,0.2667049265185785,0.2759098235975208,0.2848445239405613,0.2938840717287366,0.3006929974480837,0.308378592642552,0.3157043409496651,0.321810189907232,0.3285387059432034,0.3349138038882078,0.3411854489951666,0.3466799658022229,0.3519132467738314,0.3524500613695526,0.3537417780167955,0.354681124429949,0.3555971068690119,0.3558418348350584,0.3557755775577558,0.3552591886957212,0.3564297716714441,0.3577363921393938,0.3581256374013705,0.3597235784571471,0.3615550670389955,0.3621675001050553,0.3630390420021079,0.3628567987474407,0.363569726956203,0.3633973479652492,0.3661856190987463,0.3672536820274877,0.3677038925853619,0.3704772373362645,0.3724388808644947,0.3726869455006337,0.3783763103527431,0.3791016548463357,0.3791287697462901,0.3828491096532334,0.387826444581534,0.3894795747062115,0.38671875,0.0,2.2662804812716124,58.75425012817767,205.99203275323063,326.8941891361608,fqhc6_100Compliance_baseline,24 -100000,95838,42042,394.90598718671095,7119,73.0816586322753,5520,56.95027024770968,2207,22.64237567561928,77.51248185563044,79.79720466851127,63.42745123530996,65.1103839458494,77.23596807180867,79.52243657639194,63.3258009202137,65.01204173689624,0.2765137838217697,274.7680921193308,0.1016503150962577,98.34220895317004,84.95454,59.76234301639066,88643.89907969699,62357.66920886356,256.35728,159.57475180022064,266839.7086750558,165854.16202364475,280.26601,134.01114756507624,288641.2279054238,136906.45903826808,3999.3826,1789.7585655538887,4125032.074959828,1819449.702157692,1345.26443,586.3096030324264,1382283.8644379056,590379.7852964649,2180.05994,908.2473009187412,2237262.9437175235,914483.2347014794,0.3818,100000,0,386157,4029.268139986227,0,0.0,0,0.0,21613,224.8481813059538,0,0.0,26027,267.78522089359126,2047074,0,73360,0,0,0,0,0,54,0.5425822742544711,0,0.0,1,0.0104342745048936,0,0.0,0.07119,0.1864588789942378,0.3100154516083719,0.02207,0.3174116077384923,0.6825883922615077,25.35224393749589,4.556391148032465,0.3380434782608695,0.1980072463768116,0.223731884057971,0.2402173913043478,11.004042718271254,5.4145446632809175,23.36595892031793,12997.073075460234,61.8364046187161,12.68252001470364,20.8791738597189,13.731696628927482,14.543014115366082,0.5509057971014493,0.7785910338517841,0.7020364415862809,0.5902834008097166,0.1138763197586727,0.7104072398190046,0.9246376811594202,0.8758465011286681,0.7318007662835249,0.1588447653429603,0.5004768717215069,0.7112299465240641,0.6479269149683766,0.5523613963039015,0.102001906577693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022969663853641,0.0046586524341458,0.0070546022157127,0.0094570323994682,0.0115097828074524,0.0137904382227013,0.0161676219952963,0.0183965246476718,0.020514443843114,0.0225794576021597,0.0246382599612915,0.0266750079481473,0.0289657014857894,0.0308550491951751,0.0328869369787317,0.0349322426045281,0.036951190488509,0.0390026437198693,0.040979775000779,0.0428382556553784,0.0577849619355511,0.0715488127476709,0.0846780953977701,0.09754022602193,0.1100125301407798,0.1256324400832338,0.1390961505850432,0.1507985453926801,0.1631753620249922,0.1746431210443461,0.1884288633186364,0.2017369512616661,0.2141251832148092,0.2251889223780195,0.2364902721170641,0.2480533557492368,0.2586996490055156,0.2686642623613873,0.2778790933701845,0.2867462167969642,0.2948654354170752,0.303055018292825,0.3108036377791146,0.3178924232832041,0.3240258639478846,0.3302451311666769,0.3356074684759969,0.3412835200486642,0.3472141594746958,0.3516333342093506,0.3522394868904812,0.3527057404462964,0.3529601526010912,0.3534775844185778,0.3538657541146319,0.3539291499831892,0.353938185443669,0.3545693191140279,0.3560467696509345,0.3564860280332113,0.3572821358932053,0.3579453301159064,0.3591194968553459,0.3597157668930997,0.360712316947487,0.362255232950709,0.361661650292464,0.3644491684381643,0.366006001814502,0.3668957392499509,0.3693151177422254,0.3699010315756401,0.3709838107098381,0.3698929594451982,0.3722206716903898,0.3754098360655737,0.3700739845991243,0.3695695298551875,0.3709150326797386,0.374195989405978,0.0,2.495730941565592,58.07577814175714,213.17983527753256,312.5844235112795,fqhc6_100Compliance_baseline,25 -100000,95737,42043,395.33304782894805,7055,72.55293146850225,5461,56.46719659065983,2201,22.58270052330865,77.31288813594676,79.67225034031866,63.318020272784125,65.0624457463295,77.04686694269827,79.40800293840404,63.22113819492248,64.96910572348995,0.2660211932484912,264.2474019146164,0.0968820778616432,93.34002283955556,85.81408,60.41571406882605,89635.22984843895,63105.91941342015,257.45397,160.4872771004541,268340.3281907727,167055.8792321193,282.01704,134.62837874873313,291734.6376009276,138279.8858643869,3954.64372,1761.6059603330227,4090475.542371288,1799785.6735985286,1355.5971,585.3145223983535,1399704.8267649915,595122.9225882924,2171.75662,887.4471751613236,2230548.356434816,894336.3984017427,0.38045,100000,0,390064,4074.328629474498,0,0.0,0,0.0,21648,225.503201479052,0,0.0,26193,270.63726667850466,2034303,0,73057,0,0,0,0,0,60,0.626716943292562,0,0.0,0,0.0,0,0.0,0.07055,0.1854382967538441,0.3119773210489014,0.02201,0.3182491582491582,0.6817508417508418,25.45513398659883,4.546802668692284,0.3202710126350485,0.2093023255813953,0.2376854056033693,0.2327412561801868,11.07950191227352,5.597545790917989,23.157611737278994,12887.594602477831,61.50271193796213,13.37807622328958,19.648648665445585,14.599817546841626,13.87616950238534,0.5442226698406886,0.7699037620297463,0.6986849628359062,0.5546995377503852,0.1180173092053501,0.7228915662650602,0.9255014326647564,0.8942528735632184,0.7205387205387206,0.1376518218623481,0.4868134526977982,0.7015113350125944,0.6339421613394216,0.5054945054945055,0.11328125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205473070145,0.0046118448392949,0.0069805903063139,0.0089282086702149,0.0111268192959794,0.0135845213849287,0.0158866116039563,0.0180498412471541,0.0200175843948719,0.0221070847113996,0.0240231311070326,0.0262155362735534,0.0284882704431623,0.0305914343983684,0.0328181743149554,0.0347789238687806,0.0368429772604895,0.0388175233984269,0.0410773710482529,0.0430746147353943,0.0575589893505951,0.0710354497133051,0.0846074791837077,0.0975091736849299,0.1095657858664248,0.1252882316853885,0.1385065947941978,0.1512964618725252,0.1628923024333967,0.17400162999185,0.1877691645133505,0.199913485454742,0.2122200478364861,0.2242150504708056,0.2346495329673352,0.2452146749966768,0.2556140899147283,0.2653779943067385,0.2745474368001454,0.2832701144815099,0.2911031863653205,0.299382355005498,0.3064516129032258,0.3123613825183124,0.3187541015482585,0.3250036984072192,0.3314960728557291,0.3370845161865237,0.3427597558288728,0.3488163060288422,0.349330778779211,0.3499421264399493,0.3510762933163949,0.351108986338679,0.3518943571705368,0.3517081341918827,0.3519975835042368,0.3519916902987535,0.3530693850932743,0.3543619581223288,0.3548818378683739,0.3560080332465053,0.358345611450221,0.3583986348429396,0.3601828118198965,0.361417033773862,0.3626449316955573,0.3648507154868801,0.3656176908356368,0.3663883089770355,0.3681811904433089,0.3719822279321235,0.3743207380260331,0.3728995626486611,0.3722100864279609,0.3746563060370592,0.3786679087098277,0.3810108450992429,0.3802302723953945,0.3889957676029242,0.0,2.228805364165414,58.70752839112909,206.2908015308606,315.98217917702016,fqhc6_100Compliance_baseline,26 -100000,95772,41879,392.5990895042392,7204,73.78983418953347,5548,57.26099486279914,2274,23.336674602180175,77.37208356525132,79.7103900154853,63.35007434272507,65.07913586208636,77.09560414243337,79.43470532115725,63.2479825135019,64.98018152493792,0.2764794228179426,275.6846943280493,0.1020918292231698,98.9543371484416,85.09556,59.94669197479437,88852.2323852483,62593.129489615305,255.26893,158.74634804647116,265874.2012279163,165090.7912004954,278.35045,133.38242471324105,286341.22708098404,136010.83509519763,3984.78365,1790.8173612667888,4116683.216388924,1825899.363259821,1339.34589,584.1909148436608,1382292.2044021217,593893.5597901621,2230.2083,925.295126785112,2290925.489704716,934226.2765140414,0.38086,100000,0,386798,4038.737835693104,0,0.0,0,0.0,21584,224.66900555485944,0,0.0,25973,266.842083281126,2042505,0,73286,0,0,0,0,0,38,0.3967756755627949,0,0.0,1,0.0104414651463893,0,0.0,0.07204,0.1891508690857533,0.315657967795669,0.02274,0.3135304894006804,0.6864695105993196,25.361755552116072,4.598108102842478,0.3285868781542898,0.2060201874549387,0.2384643114635904,0.2269286229271809,11.341972835924969,5.765529758257076,24.01227561853889,12970.515611901474,62.45215000388893,13.446871903924444,20.55858008743258,14.657531820547344,13.78916619198456,0.5475847152126893,0.7725284339457568,0.7004936917169501,0.5495086923658352,0.1199364575059571,0.6964671953857245,0.8903743315508021,0.8687089715536105,0.654485049833887,0.1529411764705882,0.4979572218216774,0.7152145643693107,0.6442166910688141,0.5185909980430529,0.1115537848605577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0048355703337253,0.0069614986503216,0.0090815818612163,0.0115834435065595,0.0138764456751913,0.0162268497283633,0.0186950221442129,0.0208980542838456,0.0231501381639545,0.0254660230987589,0.0277404324757027,0.029572904353189,0.031486820428336,0.0335656980221502,0.0357187138369978,0.0376784290993406,0.0398751374110717,0.0418333523831295,0.0437281359320339,0.0581175709380837,0.0718895455258616,0.084904077995597,0.0978375084061869,0.1097590526459959,0.1253975129686955,0.1382909950296209,0.1511410280950254,0.162063813893928,0.1734346204945785,0.1875638859897352,0.2008605684508686,0.2125210586381175,0.2238513853353451,0.2345674938401971,0.246347757705982,0.2571208622016936,0.2665504834720036,0.2758773173082374,0.2841518163910394,0.292463416044884,0.3007122223911492,0.3087092768876012,0.3163366751709847,0.3229256449165402,0.3292442605182776,0.3347691074827206,0.3395547073791348,0.3453177798780409,0.3496410283482025,0.350292751867555,0.3511369572987984,0.3522251216587911,0.353644243152122,0.3548108815611381,0.3545212032011774,0.3537252167297969,0.3553963454712764,0.3561303371556881,0.3563718382471403,0.3574472078836227,0.3576353118313654,0.3592155545290387,0.3597088465845465,0.3613100836890722,0.361896533668447,0.363372843899779,0.3649325137823965,0.3675660404011866,0.3696906555537746,0.3720022052742809,0.3754686663095876,0.3760792280345353,0.378554957724827,0.380716934487021,0.3825599427412621,0.3819497920837825,0.3835725677830941,0.3819520174482007,0.391238670694864,0.0,2.562654681534025,60.80161287675072,205.97867071659437,319.0543876135916,fqhc6_100Compliance_baseline,27 -100000,95653,41789,392.5229736652274,7152,73.50527427263128,5570,57.75041033736527,2269,23.3866162064964,77.25911226955019,79.65633775789114,63.27736057920528,65.04613706860802,76.97830544627708,79.37357619314801,63.17255205482692,64.9431987688034,0.2808068232731102,282.76156474312586,0.1048085243783631,102.9382998046202,85.53314,60.15386213890792,89420.23773431047,62887.58547971096,255.83311,158.9339131538436,266953.39403886965,165650.56313324577,272.96344,130.16097880478637,283091.8946609098,134233.16070614554,4013.2204,1799.9264518746031,4162233.9393432513,1848693.8578053007,1337.78877,582.317355839702,1387607.6547520726,597937.3105205958,2235.85002,940.4598340367072,2306412.804616688,954928.7283095235,0.3809,100000,0,388787,4064.556260650476,0,0.0,0,0.0,21690,226.21350088340145,0,0.0,25473,263.9540840329106,2032294,0,73033,0,0,0,0,0,34,0.3554514756463466,0,0.0,2,0.020908910332138,0,0.0,0.07152,0.1877658177999475,0.3172539149888143,0.02269,0.313537930118241,0.686462069881759,25.356724451978906,4.582036209465979,0.3285457809694793,0.2170556552962298,0.2193895870736086,0.2350089766606822,11.029635506404851,5.441443070832518,24.273991263204906,12977.890087541824,62.77616214977599,14.057244997088889,20.6152502079945,13.455943472454946,14.647723472237663,0.5362657091561939,0.7402812241521919,0.6885245901639344,0.5613747954173486,0.1115355233002291,0.6730627306273063,0.8879310344827587,0.8470588235294118,0.7224199288256228,0.132890365448505,0.4922894424673784,0.6806039488966318,0.6405693950177936,0.5132837407013815,0.1051587301587301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588454564792,0.0045630152404709,0.0068611331019223,0.0091245325963258,0.0114451396307034,0.0137290448740146,0.0163957827762709,0.0187020835672795,0.0210077590701383,0.0231129854443466,0.0252214566929133,0.0270561659307937,0.0289951966098556,0.0309979293506814,0.0330240766158577,0.0352172384556527,0.0373973127803503,0.039308698359975,0.0413346924341078,0.0434107234078043,0.0578110794118569,0.0720173444913434,0.0852558515609412,0.0974559315965714,0.1100832171672369,0.1257745061695705,0.1386035543186139,0.1513788841055368,0.164139037433155,0.1750155736472407,0.1877818778187782,0.2007738746843263,0.212477120195241,0.2236627250709597,0.2346290454234596,0.2459120195512108,0.2561361881204741,0.2667005133412309,0.2754909322593123,0.2841281335126375,0.2923893106730746,0.3016804355989486,0.3086906444067112,0.3154892971880302,0.3219807441213437,0.3282440859150747,0.334393063583815,0.3400296288728257,0.3461643426165382,0.3517878197739888,0.3527494963425682,0.3530941021917997,0.3540329550445587,0.3533574049269116,0.3538740032613737,0.353310115268446,0.3531491360777132,0.3546868806975822,0.3565088757396449,0.3574174541012467,0.3580484129226712,0.3581191147840598,0.3596149390179681,0.360413258331279,0.3623999228320633,0.3625914315569488,0.3636753113218325,0.3668340121878058,0.3694202336003387,0.3706307673870491,0.3753899798128097,0.376797647687784,0.3790567951318458,0.3832659598810159,0.3849403811848653,0.3859544533206152,0.3864265927977839,0.3922483766233766,0.398262331838565,0.4094674556213017,0.0,1.8643420369195427,60.28535294507044,210.92444771452864,322.36293363596184,fqhc6_100Compliance_baseline,28 -100000,95617,41911,394.36501877281233,7035,72.44527646757375,5423,56.1197276634908,2254,23.16533670790759,77.28554750318864,79.71888294929737,63.27381344368566,65.07247010185563,77.01244487446087,79.44478130972638,63.17296663634244,64.9736565102993,0.27310262872777,274.1016395709863,0.100846807343224,98.81359155632197,85.16332,59.92965141441556,89067.13241369212,62676.77443803461,256.15649,160.2503895923098,267280.27442818746,166977.92190960795,279.75467,134.18591314262403,289189.23413200583,137609.60049445814,3966.53237,1785.7949443407867,4109206.1035171575,1828624.684922656,1343.2478,581.5717382861156,1389114.28930002,592580.6259220112,2223.62846,925.6665890226908,2288254.536327222,936685.5115252172,0.38,100000,0,387106,4048.506018804188,0,0.0,0,0.0,21636,225.63979208718115,0,0.0,26060,269.1466998546284,2033437,0,72989,0,0,0,0,0,50,0.5229195645125867,0,0.0,0,0.0,0,0.0,0.07035,0.1851315789473684,0.3203980099502487,0.02254,0.3217320922703359,0.678267907729664,25.19217938925033,4.609775671505625,0.3179052185137377,0.2043149548220542,0.2345565185321777,0.2432233081320302,11.175741587077496,5.52878694917735,24.09330241100684,12905.57197422993,61.32587139210793,13.027372631030303,19.650597294316498,14.160194317447631,14.487707149313492,0.5408445509865388,0.7572202166064982,0.70707656612529,0.5715408805031447,0.1122062168309325,0.7035175879396985,0.9289772727272728,0.8658008658008658,0.7006578947368421,0.1454545454545454,0.4846153846153846,0.6772486772486772,0.6489698890649762,0.53099173553719,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022294284556141,0.0045441174978953,0.0067721236242537,0.0090969151801595,0.0115167053269849,0.0136397437072803,0.0159439361018453,0.018020594965675,0.0201798079185034,0.0221521256004014,0.0240557231078558,0.0265307590345352,0.0284605566534914,0.0307793800830816,0.0326690758905524,0.0346914078257361,0.0367349899483948,0.0385494122045445,0.0407589745724783,0.042879642860868,0.0571595826974138,0.0717728920839184,0.0857151864150309,0.0981247366203118,0.1104890672863631,0.1257214873494805,0.1389057137088633,0.1518633805219171,0.1636474528392736,0.1746048800403984,0.188363887480173,0.2018193449057258,0.214365893263876,0.2257725180802104,0.2365815471465114,0.2471917595346978,0.2579152133082908,0.2675932501437219,0.2764213780717907,0.2855521155830753,0.2932740205277913,0.3001874414245548,0.3077233265335167,0.3146773341021575,0.3213259291733645,0.3267577449478729,0.332100359861071,0.337448664643012,0.3429836291170628,0.3480319542905513,0.3489890338157735,0.3492664784076038,0.3492121759756029,0.3497240849905131,0.3504942829919009,0.3499777221257701,0.3488641779189833,0.350587498558033,0.350666712371028,0.3509200251323938,0.3512557614523563,0.352703345489139,0.3541000168378515,0.3552374756018217,0.3565158676569885,0.356039655622228,0.3575712783194519,0.3579549023302556,0.36091407806003,0.3625084235144884,0.3657858769931663,0.3682755687858813,0.3695446219920419,0.3705112598904443,0.3751993246412156,0.379679773958088,0.38038496791934,0.3806921675774135,0.3807702813438951,0.3780211480362537,0.0,2.307622485431974,61.490926042946846,203.8433292773813,304.1030369794228,fqhc6_100Compliance_baseline,29 -100000,95802,41888,393.54084465877537,7048,72.28450345504268,5566,57.4413895325776,2259,23.162355691947976,77.35864855579545,79.66148032498424,63.35358995694328,65.05365037266913,77.08073779647414,79.3844383838341,63.25235026624279,64.95502006875095,0.2779107593213155,277.041941150145,0.1012396907004813,98.63030391817064,86.22966,60.65324468885025,90008.2044216196,63311.04224217683,256.37151,159.39028081409324,266985.96062712674,165755.05815545947,283.29633,135.9942972356332,290307.1125863761,137888.25080086038,4033.79348,1808.030447690392,4166835.118264755,1843617.9557501893,1370.72455,592.0443440063826,1413429.197720298,600665.4568332395,2226.75278,923.498753210949,2285803.6784200747,934019.3867756872,0.38056,100000,0,391953,4091.2820191645264,0,0.0,0,0.0,21671,225.53808897517797,0,0.0,26372,270.1300599152418,2033467,0,73031,0,0,0,0,0,44,0.4384042086804033,0,0.0,0,0.0,0,0.0,0.07048,0.1852007567794828,0.320516458569807,0.02259,0.3136382031566168,0.6863617968433833,25.512283194020718,4.513146902683594,0.3282429033417176,0.2024793388429752,0.2353575278476464,0.2339202299676608,11.03907883457735,5.586943738923145,24.05645219400516,12973.837752227391,62.52204761709402,13.097868606381244,20.612253371436783,14.438817438071135,14.373108201204849,0.5461731943945383,0.7763975155279503,0.6836343732895457,0.5778625954198473,0.1221198156682027,0.6954277286135693,0.9252873563218392,0.8347639484978541,0.7316176470588235,0.1222222222222222,0.4980997624703088,0.7098844672657253,0.6318883174136665,0.5375722543352601,0.1220930232558139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025909357731311,0.0047908922403751,0.0070054847572411,0.009386384161872,0.0116127852396724,0.013854839530034,0.0159617813633215,0.0181163485764997,0.0201765318840283,0.0223408825876143,0.0244899213372664,0.0265657373787104,0.0285919761647917,0.0306756673321122,0.0327566296861467,0.0351255886970172,0.0370013968648145,0.038854678526259,0.0408205660867307,0.0428599685603339,0.057669838090469,0.0721693674856246,0.0851396109340935,0.0975040723030844,0.110250492660154,0.1256723768057742,0.1390800089051915,0.1512243899325575,0.1638248577316065,0.1756948018528049,0.1891696906395029,0.2020858802782616,0.2142204628501827,0.2254020347883163,0.2358711808422791,0.2469464210502981,0.2575510659671838,0.2678239933395587,0.2774253583141362,0.2858419448708842,0.29387868476789,0.3021924639174051,0.3089731291671108,0.3160280626011872,0.3219706182808776,0.3276338514680483,0.3337548674671641,0.3396428162272941,0.3457855523161645,0.3504576009297289,0.351065119851247,0.3513446523732804,0.3519888405123219,0.3524615050965083,0.3535678152710825,0.3537067696835909,0.3529234478601567,0.3534254243706472,0.3559037301151947,0.3556672350354483,0.3564811327860209,0.3584965632325479,0.3588196831958828,0.3595765721220839,0.3621769299581731,0.3627196092334357,0.3617393800229621,0.3628228723741829,0.3663797683561789,0.370449077786688,0.3719766854835008,0.3752415718273567,0.3775120834393284,0.3785830178474851,0.3790849673202614,0.3793103448275862,0.3777262180974478,0.3802845947618065,0.3781488819699972,0.3765974440894569,0.0,2.6129737011758443,59.25899302049545,210.7305401526381,319.9995547168205,fqhc6_100Compliance_baseline,30 -100000,95871,41752,392.3814292121705,7017,71.91955857349981,5483,56.71162290995192,2176,22.342522764965423,77.41454581429173,79.70348895390578,63.37712166936033,65.06824828367068,77.15243211043116,79.44174396347249,63.279915403737,64.9740132299276,0.2621137038605639,261.7449904332858,0.0972062656233276,94.23505374307696,85.38662,60.03701240769028,89064.07568503509,62622.70384964199,255.59345,159.35634324727488,266148.282588061,165766.40824365537,278.3183,133.14239947551044,287903.4535991072,136998.92872455047,3946.15871,1769.8935705860144,4082622.4927245984,1812629.335863832,1328.61376,580.7486319940563,1372402.4991916222,592328.0992104555,2142.53924,894.1402390429527,2201849.3183548725,903604.8051144724,0.37934,100000,0,388121,4048.367076592505,0,0.0,0,0.0,21596,224.78121642623944,0,0.0,25846,267.1089276214914,2039869,0,73286,0,0,0,0,0,59,0.615410290911746,0,0.0,1,0.0104306828968092,0,0.0,0.07017,0.1849791743554595,0.3101040330625623,0.02176,0.3189643486512132,0.6810356513487867,25.216231751390907,4.592112936728978,0.3355827101951486,0.2022615356556629,0.2352726609520335,0.2268830931971548,11.050393309235815,5.539048649804717,23.14828734279206,12854.923714036571,61.57502285824814,12.92109148041917,20.70330162490665,14.266448884049138,13.684180868873176,0.5557176728068576,0.7835888187556357,0.6804347826086956,0.6007751937984496,0.1213826366559485,0.7111613876319759,0.9114285714285716,0.8696629213483146,0.7148014440433214,0.1535433070866141,0.5061342314168872,0.7246376811594203,0.6200716845878136,0.5695952615992103,0.1131313131313131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890266740901,0.0046603515526062,0.0069359238265207,0.0090958926359815,0.0112613070433987,0.0133192238423264,0.0153524857375713,0.0174221714472234,0.0196126501593527,0.0219603751777184,0.024009997336775,0.0260955194485475,0.0281847886397731,0.030211013896037,0.0323019661618088,0.0343014728666157,0.0363568642463244,0.0383144541978008,0.0401760687664804,0.0421191694753047,0.056463301460851,0.0705223334657107,0.0840387194099899,0.0970976752000336,0.1091675003949239,0.1241616054924742,0.1369757069150007,0.1495083709806005,0.1604323147832024,0.1714934452917488,0.1849273803119957,0.1975175157858316,0.2088956988546217,0.2210772475440111,0.2317499395511397,0.2426378636801275,0.2544495494691765,0.2646615865308966,0.2734985538478988,0.2825145997938852,0.2911032193135678,0.2988726201057211,0.305918678796626,0.3126730181556714,0.3192440906605092,0.3256479175400094,0.3327949719551282,0.3388234096173917,0.3443513667721354,0.3490897561233387,0.3505692152239811,0.3503888774175786,0.3514183847465509,0.3515416082450384,0.3524759540339245,0.3527690540022979,0.3523603044737383,0.3522768311500706,0.3543144258540837,0.3559579022475919,0.3564999345047624,0.3569607746270131,0.3580999036971904,0.3593624430752746,0.359419314521944,0.359501979579079,0.3611229627101288,0.3640577531397789,0.3661359332257838,0.3680508642956487,0.3717256094792754,0.3773764761955198,0.3786941580756013,0.3799442477209372,0.3824545030331311,0.3887905604719764,0.3905605620895066,0.39244126659857,0.3920220082530949,0.4012181195279787,0.0,1.9125101720170985,58.61828692153541,211.0355432478441,312.24007236722247,fqhc6_100Compliance_baseline,31 -100000,95718,41905,393.8862074009068,7195,74.1762259972001,5602,58.024613970204136,2276,23.47520842474769,77.36002699221102,79.73173710640032,63.33690834044432,65.08841856184955,77.08439722332776,79.452740259426,63.23737780450552,64.98965444966105,0.2756297688832632,278.9968469743229,0.0995305359388041,98.76411218850478,85.73598,60.30115215882839,89571.42857142857,62998.759020067686,257.67633,160.28949391759838,268716.8453164504,166973.35288827427,281.05897,134.65337020373192,290397.55322927766,138198.158433814,4033.71348,1808.355560075698,4181461.5119413272,1856677.995777343,1339.13518,580.8957271238157,1384696.1177625945,592603.2939710994,2235.42902,918.3464701619578,2307086.7130529266,935365.160918388,0.38094,100000,0,389709,4071.428571428571,0,0.0,0,0.0,21766,226.87477799368975,0,0.0,26155,270.0223573413569,2037059,0,73075,0,0,0,0,0,64,0.6581834137779727,0,0.0,0,0.0,0,0.0,0.07195,0.1888748884338741,0.3163307852675469,0.02276,0.3226959745762712,0.6773040254237288,25.03436161355405,4.540325986766943,0.326669046769011,0.2070689039628704,0.2379507318814709,0.2283113173866476,11.09217792537929,5.664500372023775,24.077315174322017,12952.735767582397,63.20920900241091,13.76862893547618,20.52175452624253,14.904677420162828,14.014148120529375,0.5548018564798286,0.7836206896551724,0.6879781420765028,0.6009002250562641,0.1086786551993745,0.7195207892882312,0.915,0.8620689655172413,0.7477203647416414,0.1333333333333333,0.4989242170690892,0.7144736842105263,0.6336917562724015,0.5527888446215139,0.1025390625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002309305081484,0.0045920384393151,0.0069817237145205,0.0092443974887746,0.0113409821392245,0.013512687874221,0.0157084607543323,0.0179836289779338,0.0201277791975466,0.0221953766457134,0.024359736717997,0.0264981571409504,0.0286910111781824,0.0310337013843111,0.0329962855963681,0.0351936477740328,0.0370665810274632,0.0391816992921346,0.0411882176734897,0.0429812862084774,0.0574671832412619,0.0712715855572998,0.0838779385076944,0.0974096315850362,0.1097569975225344,0.1259857502272775,0.1392554094187526,0.1523522713971034,0.16377791304905,0.174351878666967,0.187781440544675,0.2010106256356987,0.2126142576108339,0.2242517653746092,0.2346776056043726,0.2456142293890931,0.2566659972778187,0.2668113530046779,0.2769942406240079,0.2858925770292086,0.294115606134203,0.3022758354665638,0.3097502128867442,0.3168500580706186,0.3228701185156402,0.3288413687763297,0.3344471978173262,0.3396998982706002,0.3451061626100466,0.3507623259190812,0.3515658689090125,0.3525026183782592,0.3521180457497882,0.3523053293534645,0.3525792852780384,0.3529032654063344,0.3523706896551724,0.352762449086848,0.3537956166914746,0.3544738111831877,0.355797373358349,0.3566976035461975,0.3561721285729243,0.356532820604543,0.3576948075395392,0.3596154348564412,0.3621099001687691,0.3645342027792725,0.3655716255878921,0.3680215278335609,0.3705087403717541,0.369247311827957,0.3721728081321473,0.3765844664669278,0.3775384906016813,0.3809807898818756,0.3780619319057156,0.3792537925379254,0.3795701925760535,0.3817686014803272,0.0,1.945669515991101,63.065759872843095,210.13602673431836,316.867763929096,fqhc6_100Compliance_baseline,32 -100000,95747,41798,393.464024982506,7169,73.62110562210826,5581,57.66238106676972,2205,22.62211870868017,77.33346816806463,79.69526703449722,63.32120940122799,65.06998936162795,77.0771820231746,79.440964792302,63.22774892537184,64.97995751743787,0.2562861448900264,254.30224219522304,0.0934604758561477,90.03184419007937,85.44338,60.15755744578839,89238.701995885,62829.70479052962,257.85369,159.92283254986626,268661.38886858075,166380.52633488912,283.74368,135.73576380151704,292219.6309022737,138612.25114756962,4005.07173,1783.2549910850948,4140669.45178439,1820288.5469075297,1386.41037,601.0113066364077,1432993.9005921856,612768.4482214132,2180.7209,891.5815974523848,2239840.976740786,898723.7371580902,0.3791,100000,0,388379,4056.304636176591,0,0.0,0,0.0,21843,227.4640458708889,0,0.0,26381,271.4340919297733,2037780,0,73118,0,0,0,0,0,48,0.5013211902200592,0,0.0,0,0.0,0,0.0,0.07169,0.1891057768398839,0.3075742781420003,0.02205,0.3162586482171368,0.6837413517828632,25.47485061695211,4.539866098804176,0.3241354595950546,0.2150152302454757,0.2254076330406737,0.2354416771187959,11.166534182677571,5.59374704051509,23.18509986884438,12909.861603102998,62.61385560285292,14.138364703254885,20.151702209917637,13.989786978528674,14.334001711151744,0.5540225765991758,0.7733333333333333,0.6965174129353234,0.5850556438791733,0.1278538812785388,0.7149220489977728,0.9093264248704664,0.8658823529411764,0.7360594795539034,0.1722846441947565,0.5028341993386868,0.7088452088452089,0.6445086705202312,0.5439838220424671,0.1165234001910219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022898829727949,0.0046140429156694,0.0067900858656598,0.0088601678554735,0.0112690954211671,0.0132778054964412,0.0151898217999429,0.0172888897960849,0.0194902089039695,0.021864411984482,0.0240406794951969,0.0260048252143113,0.0281974023837191,0.0302983491416154,0.0322617254400264,0.0344909560723514,0.0364376242544731,0.0382791503668115,0.0402665724028944,0.0422034975159096,0.0578625412334544,0.0721723932223257,0.085933729251044,0.0982289344158849,0.1104783599088838,0.1252075160461452,0.1380978652972881,0.1503831417624521,0.1624089540124313,0.1731740533816606,0.1868476328970754,0.20014064697609,0.2133574046482289,0.224968556898343,0.235712085881473,0.2471406269030193,0.257004442658451,0.2672068422237227,0.2757110107360919,0.2840818009022832,0.2915924598126518,0.2989603919871832,0.3064092554475122,0.3140865148484013,0.3207499089916272,0.3266353300191957,0.332541627081354,0.3376464905813864,0.3430431181738185,0.3487798117914131,0.3487378536098869,0.3500343926262209,0.3509192082834401,0.3514064646756815,0.3515201999167013,0.3505263804057579,0.3506194774497517,0.3521458062605892,0.3534940254048687,0.3544935678373977,0.3557766306898169,0.3565458506634977,0.3576313139788555,0.3595852833822245,0.3617293178694572,0.36267448864678,0.36488645441059,0.3661922943422422,0.3693083624307833,0.3707253061873707,0.3743039707895937,0.3770587921752572,0.3802888269571827,0.3845680909929296,0.387381404174573,0.3900734851222744,0.3868026580126719,0.3896345240553376,0.3909604519774011,0.3980314960629921,0.0,2.386626452217127,59.15491955625651,212.43005807485997,320.46469395861175,fqhc6_100Compliance_baseline,33 -100000,95804,41865,393.6056949605445,7045,72.36649826729573,5469,56.56340027556261,2174,22.35814788526575,77.34149214859087,79.68029355014777,63.33904717832892,65.07231504796883,77.07993339875686,79.41791287556347,63.24344844986269,64.97847872379582,0.261558749834009,262.3806745842927,0.0955987284662285,93.83632417301158,86.0178,60.50457964125182,89785.18642227881,63154.54432095928,255.35545,159.50803115267863,266002.6094943844,165966.53704246366,280.25019,134.8552032959808,289013.8198822596,138016.95270316242,3957.26787,1772.145352537784,4094689.9607532048,1814593.144895808,1336.15159,582.1460886839961,1380587.4180618764,593602.3731224437,2149.609,890.2076645470914,2212302.9518600474,902381.1155434432,0.37996,100000,0,390990,4081.14483737631,0,0.0,0,0.0,21648,225.39768694417768,0,0.0,26034,268.3499645108764,2036530,0,73063,0,0,0,0,0,48,0.4905849442611999,0,0.0,0,0.0,0,0.0,0.07045,0.1854142541320139,0.3085876508161816,0.02174,0.3134909970438054,0.6865090029561945,25.20623145464756,4.57070512429668,0.3318705430608886,0.2029621503017005,0.2289266776375937,0.2362406289998171,11.177163771289512,5.646861189587035,23.101176322664735,12856.886341993886,61.51904788922758,12.930867793919768,20.4817594311618,13.922042728164078,14.184377935981948,0.5474492594624246,0.7360360360360361,0.7090909090909091,0.5838658146964856,0.1230650154798761,0.7195385724585436,0.904632152588556,0.8673684210526316,0.7429577464788732,0.1647509578544061,0.4889759921607055,0.6527590847913862,0.6529850746268657,0.5371900826446281,0.1125121241513094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044199791166124,0.0065553807905018,0.0087895785066861,0.0108256600702039,0.0131505230668934,0.0154822127937336,0.0177373403179854,0.0198378207029132,0.0219129829304006,0.0240646371848373,0.0259188137316314,0.0278746361382828,0.0296484016853643,0.0318117093505582,0.0340169102598557,0.036075588920528,0.0381539227585348,0.0403690888119953,0.0424838642515094,0.0571234806197506,0.0710349947199481,0.0844711775246518,0.0969399550240642,0.1094273610554935,0.1254756066627209,0.1384065805931862,0.1514175120695889,0.1630751496910121,0.1745211734065015,0.1880415478176632,0.200471366638918,0.2119701019055689,0.2234072778931264,0.2337309658622395,0.2442655980162068,0.2537785902180213,0.2636270756379885,0.2725460886895864,0.2810220647078998,0.2898495502672994,0.2975027144408252,0.3050621092318784,0.3119726148727094,0.3185358633407745,0.3246479913351713,0.331737799162657,0.3374865053661015,0.3432098765432099,0.3488653874013881,0.349206776376872,0.3497998982300276,0.3508032694475761,0.3511790304625038,0.3516628986197049,0.3511869186091061,0.3509656550280658,0.3518268597761685,0.3524473607565659,0.35346171070309,0.3546530220658778,0.3560294672464804,0.357455586427549,0.357873670481887,0.3601335979476257,0.3607408962115647,0.3612743403617928,0.3654348518636508,0.3671228007819442,0.3696463693653916,0.3703378065710319,0.3744547951106564,0.3777422449632235,0.3786113699906803,0.3818634015687775,0.3816454173682944,0.3802221874511031,0.3846153846153846,0.3877435752612256,0.3828549262994569,0.0,1.9569711940519163,61.40928726680767,197.06813547135047,318.4594466768639,fqhc6_100Compliance_baseline,34 -100000,95703,42056,396.3721095472451,7121,73.17429965622811,5594,57.866524560358606,2332,23.93864351169765,77.3419109081298,79.71047731203512,63.33255108723839,65.08068253290276,77.052639469895,79.4233138368425,63.2261823595582,64.97868094763517,0.289271438234806,287.163475192628,0.1063687276801843,102.00158526758683,85.85566,60.31849796458483,89710.52109129285,63026.75774488242,255.07937,158.70199101163837,265933.6697909156,165229.01164189036,276.56387,132.0608137522423,285945.38311233715,135578.40586357538,4076.0063,1815.2558845568324,4214066.884005726,1851810.3032891655,1356.66005,583.1636957895959,1403852.846828208,595627.0292358609,2303.67116,955.0023054280124,2366253.8060457874,960551.2036320854,0.38161,100000,0,390253,4077.7509586951296,0,0.0,0,0.0,21554,224.60110968308203,0,0.0,25727,265.7596940534779,2037808,0,73136,0,0,0,0,0,44,0.4597557025380604,0,0.0,0,0.0,0,0.0,0.07121,0.1866041246298577,0.3274820952113467,0.02332,0.3134947171325398,0.6865052828674603,25.361699137956183,4.52178205679611,0.3337504469074008,0.194315337861995,0.2304254558455488,0.2415087593850554,10.929485980457,5.49524653159146,24.772397139120017,12974.325605359809,62.83557268863221,12.684314997517172,21.062694600597936,14.349757915308604,14.7388051752085,0.539327851269217,0.7773689052437902,0.6845206213176218,0.5748642358417377,0.1132494448556624,0.6937869822485208,0.9592476489028212,0.8602150537634409,0.6836363636363636,0.1501706484641638,0.4900990099009901,0.7018229166666666,0.6262482168330956,0.5453648915187377,0.1030245746691871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0047633525894395,0.0066849259484682,0.0089481595839765,0.0110119168666368,0.0132157693247536,0.0151992415670203,0.0173920143708663,0.0193072292235202,0.0216056332262092,0.0235676429281694,0.0257013184375898,0.0276215254568452,0.0298365992870536,0.0318552839320172,0.0339790770757525,0.0361647921456533,0.0382112724291451,0.0403032099073525,0.0421035079308835,0.056912182486631,0.0707743198400485,0.0847699491107497,0.0978898870258557,0.1101323909488897,0.125175912895341,0.1384812893231902,0.1504849717321635,0.162382203987435,0.1734204512536612,0.1877659173407727,0.2010628395783276,0.2133323180349625,0.2245054187946326,0.2351944737768391,0.2462606423613033,0.2570459843187116,0.2669597283745193,0.2764731241349579,0.2850437868467746,0.2927698574338085,0.3005243813938245,0.308125836204549,0.3163775430688262,0.3227857333884418,0.3296718215815262,0.335791136859529,0.3414938604982931,0.3465567309686787,0.3518203290975548,0.3524115062141105,0.3535005986870174,0.3540833568009011,0.3544192229334335,0.3552477072402158,0.3550917838864883,0.3549828124257449,0.3560918670984924,0.3571771154504967,0.3582445141065831,0.3594899091541745,0.3599944414666587,0.3620024049110816,0.3634008425510824,0.3641582096059292,0.366172418317806,0.3682925428013329,0.3705805878809018,0.3737535043826963,0.3781546375180839,0.3793230316409124,0.3829752953813104,0.3846986877309211,0.3888116210786586,0.3891173376685474,0.3858695652173913,0.3910806174957118,0.3904682274247492,0.4000571102227299,0.3964774951076321,0.0,2.238855509267366,59.776763399608406,208.38393697402367,327.27097283869216,fqhc6_100Compliance_baseline,35 -100000,95707,41892,393.95237547932754,7085,72.81599047091645,5519,57.08046433385229,2266,23.30028106617071,77.33810060160408,79.72263816626611,63.31256206328344,65.07586313830308,77.06431876972358,79.44784616567341,63.21197268587124,64.97771057589439,0.2737818318804983,274.79200059269715,0.1005893774121986,98.15256240868564,85.54722,60.17537357128349,89384.49643181796,62874.57925886664,255.86781,159.67665749035203,266742.88192086265,166237.6035827892,278.83951,133.4564052849018,288028.9529501499,136899.27151156554,3996.62872,1788.326892942017,4136462.150103963,1829140.9813277372,1320.75176,571.4001984008887,1367131.3070099363,584190.9905272903,2228.20408,927.2246311416948,2293242.5214456622,938132.7452845958,0.38137,100000,0,388851,4062.931655991725,0,0.0,0,0.0,21668,225.76196098508996,0,0.0,25972,268.06816638281424,2035597,0,73070,0,0,0,0,0,53,0.5433249396595861,0,0.0,1,0.0104485565319151,0,0.0,0.07085,0.1857775913155203,0.3198306280875088,0.02266,0.3147826086956521,0.6852173913043478,25.402078168336597,4.525398508674537,0.3286827323790541,0.2022105453886573,0.2342815727486863,0.2348251494836021,11.051249992857256,5.6230535460721445,24.040659935456105,12976.550440227042,62.017229355655225,13.133036265984527,20.376568467809804,14.251864330707216,14.255760291153669,0.5473817720601558,0.7580645161290323,0.7078280044101434,0.5823665893271461,0.1064814814814814,0.7190929041697147,0.8954423592493298,0.8819742489270386,0.7491039426523297,0.1164658634538152,0.4908477842003854,0.6890982503364738,0.6476261127596439,0.5364891518737672,0.1041069723018147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0044329478596064,0.006599386764676,0.008862329003801,0.0110092489901405,0.0135161287036942,0.0158293046121208,0.0181600906983157,0.0204736971283645,0.0227207568807339,0.0247646588322155,0.0269545930626578,0.0289644961288133,0.0309867567400572,0.0330424197408599,0.0350532722932404,0.0370872720872203,0.0390090052703656,0.0409410835144042,0.0427318374065045,0.0578154209267594,0.0716147605338916,0.0846712417889147,0.0975650801998422,0.1098631061612774,0.1256466406423561,0.1385834960522964,0.1517433068518242,0.1630365082079343,0.1746738477383915,0.188025255354911,0.2011713886693587,0.2136753997365929,0.2254880504245819,0.2365333392035573,0.2475753444396413,0.2576617226590422,0.2675514132306757,0.2766641302002294,0.2851835714449515,0.2936243165600963,0.3013482014219952,0.3091471435173664,0.315446062321587,0.3219001531989398,0.3285920657850872,0.3349717868338558,0.3405297185631033,0.3458082085197432,0.3506683926873085,0.3512555908821469,0.3518554230144081,0.3526666102603153,0.3535375448339697,0.3543516741785295,0.3545342949209759,0.3544705136334813,0.355982905982906,0.357377666678081,0.3585381560588172,0.3589049846870714,0.3607038123167155,0.3617857969003007,0.3607814045499505,0.3620427381383557,0.3632263614797049,0.3639189960068454,0.3653039997478488,0.3667592560036567,0.369012630073874,0.3708717575977831,0.3724349481700867,0.3719344344344344,0.3716680510458355,0.3723642470610188,0.3718190386427898,0.3703368071288325,0.3636363636363636,0.3653585926928281,0.3678204640547737,0.0,2.2248121890394343,60.4232639608669,201.53569787189596,322.40427192125264,fqhc6_100Compliance_baseline,36 -100000,95655,41777,393.0270242015577,7159,73.57691704563274,5544,57.42512153050024,2238,23.009774711201715,77.27782633283482,79.6870728519356,63.2892740309558,65.0715742331714,77.00728482488715,79.4166699488408,63.190523968321,64.97557389594174,0.2705415079476694,270.4029030947908,0.0987500626347923,96.00033722966828,84.95146,59.80985523124315,88810.26606032094,62526.6376365513,256.51592,159.29237718224945,267642.5696513512,166002.7778811871,276.727,131.98326923922903,286198.881396686,135633.78993883773,4008.57855,1787.263106185756,4153972.5471747424,1831756.8304696616,1311.301,566.7887644585215,1357621.797083268,579291.0924243599,2210.84058,909.957945429852,2275194.1038105693,921155.1536270864,0.3802,100000,0,386143,4036.830275469134,0,0.0,0,0.0,21703,226.3237677068632,0,0.0,25796,266.50985311797604,2039326,0,73162,0,0,0,0,0,46,0.4808948826511944,0,0.0,0,0.0,0,0.0,0.07159,0.1882956338769069,0.3126134935046794,0.02238,0.3154817275747508,0.6845182724252492,25.4936930704854,4.558239176271124,0.3297258297258297,0.2052669552669552,0.2337662337662337,0.2312409812409812,11.226872915342858,5.72174429757207,23.646844727863296,12908.00428349284,62.13475121140439,13.248502682270953,20.45644515592242,14.322555168791329,14.107248204419708,0.5501443001443002,0.7565905096660809,0.7106126914660832,0.5802469135802469,0.1076443057722308,0.7074468085106383,0.9213483146067416,0.87409200968523,0.7259786476868327,0.1428571428571428,0.5011825922421949,0.6815856777493606,0.6628975265017668,0.5399014778325123,0.0984251968503937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0047967710530585,0.0070148011288652,0.0092075977926156,0.0112925377689607,0.0132741108994407,0.0155532891381947,0.0176391882092189,0.019649761666087,0.0217576136282152,0.0239384615384615,0.0258127471624467,0.0280910437932169,0.0301262561195568,0.0322327531024799,0.0345765586860287,0.0366524699225914,0.0388038004257307,0.0407821345321345,0.0428018809888746,0.0572345183606077,0.0711009174311926,0.0844223320842648,0.0973543525846102,0.1097052647130209,0.1252765398905484,0.1379189499171658,0.1505162108313711,0.1622066782177159,0.1733533737720758,0.1875303067854872,0.2006755952058724,0.2121858571786192,0.2233444215870792,0.2341622359455324,0.2449807206488498,0.2552110663287521,0.2647906024259063,0.2742819532234087,0.282657967032967,0.2904456830954969,0.29817999041485,0.3068742384630854,0.313687415345152,0.3206081820170641,0.3272588187392812,0.3323853670759208,0.3387635011208477,0.3453201011870013,0.3505542856387828,0.3513356640524817,0.3519502934069727,0.3523664078960392,0.3528524609182401,0.3543002893708422,0.3527530482648339,0.3527718584014503,0.354280810614562,0.3553384052619828,0.3562929595664112,0.357903851221624,0.3594243803541969,0.3604212743549236,0.3603611697587709,0.3607385388723749,0.3625484445375511,0.3645074301451603,0.3666941676715111,0.3687955879736702,0.3713331455474629,0.3731033528570769,0.3746311101572141,0.3732112192329708,0.3724671307037896,0.3750834048231817,0.3818555206571635,0.3777881765715177,0.3761200250052094,0.3793884484711212,0.3797814207650273,0.0,2.0356477644875066,58.16911813100701,204.55258176894867,330.7984948870878,fqhc6_100Compliance_baseline,37 -100000,95806,42070,394.7351940379517,7083,72.68855812788344,5547,57.19892282320523,2239,22.952633446756987,77.39792083527668,79.7022664031433,63.37134666233783,65.07167039860785,77.13194843064862,79.43685051984717,63.27468582030608,64.97832998971151,0.2659724046280587,265.41588329612864,0.0966608420317527,93.34040889633854,86.4138,60.75563989888711,90196.64739160388,63415.27659946883,259.05385,161.3723111660143,269676.9930902031,167721.5486517513,279.9035,134.26506598285812,286772.16458259395,136110.57827683815,4015.11701,1792.7321484625706,4143497.140053859,1824357.2460436644,1348.80638,585.2354642001696,1388081.2057699936,591411.3625501988,2208.65208,905.1789514505284,2266358.7249232824,911457.4698176316,0.38238,100000,0,392790,4099.847608709267,0,0.0,0,0.0,21944,228.2946788301359,0,0.0,26076,266.924827255078,2035139,0,72947,0,0,0,0,0,45,0.4592614241279252,0,0.0,0,0.0,0,0.0,0.07083,0.1852345833987133,0.3161089933643936,0.02239,0.3142435622317596,0.6857564377682404,25.458564667776237,4.518910628743624,0.3295475031548585,0.2046151072651884,0.2312961961420587,0.2345411934378943,11.235128198855342,5.643334033869543,23.675515054790782,12968.392719657755,62.21462469776532,13.231896270275874,20.477818171662378,14.230304602966294,14.274605652860764,0.5520100955471426,0.7814977973568282,0.6925601750547046,0.5728760717069369,0.1337432744043044,0.7211678832116788,0.9090909090909092,0.8713968957871396,0.717687074829932,0.1752988047808765,0.4965286090495571,0.7187910643889619,0.6339869281045751,0.5298281092012134,0.1238095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023082530169271,0.0041139336704191,0.0063289213448957,0.0086207771899718,0.0110096779440468,0.0130467525594838,0.0153654908194249,0.0174955368528436,0.0197498825019923,0.0217411321758525,0.0239127093898878,0.0263047202815138,0.0282435375827066,0.0304305767093401,0.0326746858797942,0.0349406298399587,0.0370063832648796,0.0393557147151193,0.041610849766867,0.0435357298973793,0.057655796874674,0.0710819178311438,0.0846842690266971,0.0972853057448061,0.1094268818451094,0.1244965059362082,0.1375368496956586,0.1497253916893733,0.1623117188334579,0.1734844909691535,0.1870638407857327,0.200741966535795,0.2131101206652897,0.2244744006034963,0.2351447044334975,0.2470084240123094,0.2576595460018731,0.2667633404152474,0.276352630445379,0.2851014174417407,0.2943801003305823,0.3013282555110337,0.3092284954182678,0.3163840455704079,0.3232837521669031,0.3289907489420333,0.3352526791736404,0.3403474462194905,0.3461846870150026,0.3512146948449536,0.3519955951869359,0.3524727462448856,0.3539231818629312,0.3552058390791334,0.3552125844030571,0.3553331295843521,0.3546088083310946,0.3557056884705574,0.356423130785258,0.3570726652253926,0.359074299634592,0.3599193325161137,0.3613459481004426,0.3626469796248092,0.3641130981150314,0.3643956849602011,0.3648695252327854,0.3676423899930154,0.3706610109579357,0.3715244487056567,0.3734518163819697,0.3741529525653436,0.3756546174479499,0.3767567567567567,0.3753105293330785,0.3782451923076923,0.3784581908610506,0.3779737489745693,0.3790434061376831,0.3839320200849749,0.0,2.702000532049918,60.02416874087681,202.13918249694,323.87318492349686,fqhc6_100Compliance_baseline,38 -100000,95548,41694,391.980993846025,7000,71.9847615857998,5435,56.26491396994181,2270,23.328588772135472,77.19945181010942,79.66927660394063,63.224607941291474,65.053140094694,76.91718918973017,79.38748458558521,63.11994754963568,64.95173429558463,0.2822626203792566,281.7920183554179,0.1046603916557913,101.4057991093722,84.77744,59.6222871726064,88727.59241428392,62400.35078976682,251.15079,156.25867180436111,262228.4715535647,162914.9137651872,273.09368,131.0834005619032,281706.5454012643,134077.40006872642,3922.43186,1773.8635595238522,4060533.8782601417,1811854.365893428,1337.00468,585.1236582321723,1381781.2199104114,594866.7666849883,2231.9907,934.2510562775363,2295472.0768618914,942971.9793776711,0.3793,100000,0,385352,4033.072382467451,0,0.0,0,0.0,21295,222.2338510486876,0,0.0,25512,262.9254406162348,2036256,0,73119,0,0,0,0,0,34,0.3558420898396617,0,0.0,1,0.0104659438188135,0,0.0,0.07,0.1845504877405747,0.3242857142857143,0.0227,0.3255307566684812,0.6744692433315188,25.17271486356325,4.545650393327756,0.3321067157313707,0.2075436982520699,0.2294388224471021,0.2309107635694572,11.185652552731618,5.640700483836227,24.19676876064721,12945.2785857599,61.56684546331668,13.298243394079892,20.47805197709293,13.869951369383982,13.920598722759868,0.5449862005519779,0.7668439716312057,0.6803324099722992,0.5717722534081796,0.1243027888446215,0.7032727272727273,0.937007874015748,0.8465011286681715,0.6942446043165468,0.1538461538461538,0.4913793103448275,0.6800535475234271,0.6262848751835536,0.5366357069143447,0.1160896130346232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024530922139664,0.0048091556583673,0.0072406369323259,0.0096185130958191,0.0118703424685425,0.0143020245061061,0.0165025258968209,0.0186697186768718,0.0207022175830698,0.0229047531205804,0.0251190769483452,0.0273927528482704,0.0296083459490633,0.031554950382703,0.0334821428571428,0.0356913649255739,0.0376462291545673,0.0395971689583138,0.0415512176829649,0.0435962751075291,0.0582660362358257,0.0721364079655205,0.0858659658344283,0.0981822013804731,0.110373549246348,0.1256017134253663,0.1384919832749944,0.1513954853514061,0.1628808982985471,0.1735286525554981,0.1878355170067292,0.2004493503956237,0.2124495362793235,0.2233523144948048,0.2346175074511535,0.2455863563135381,0.2559800311174291,0.2659833845042442,0.2754994024244493,0.2846425165730304,0.2928679993966747,0.3005654887606175,0.307475936717424,0.3141531768636358,0.3213658964609535,0.3279246076406495,0.3337732860698393,0.3394211857263276,0.3440628168794363,0.3496873178228841,0.3500878972278566,0.3503922868666777,0.3511961993099938,0.3517352446172596,0.351726300698883,0.3517236072637734,0.3517181037225581,0.35256928740034,0.353847476571232,0.3547076170610659,0.356409094342473,0.356685994381015,0.3594735282915062,0.3596895026626951,0.3613000388651379,0.3620930539080005,0.3640452029520295,0.3656600298497983,0.3669128613024643,0.3689176762224621,0.3710657347768489,0.3727911432829465,0.3751182890669358,0.3764075067024128,0.3750943396226415,0.3748208313425705,0.3739663093415007,0.3777420004024954,0.3814348302300109,0.3883346124328473,0.0,2.447577702973761,60.51819965586648,206.1816978855048,307.9241759123415,fqhc6_100Compliance_baseline,39 -100000,95670,42292,397.0837253057385,7170,73.62809658200062,5624,58.08508414340964,2290,23.47653391867879,77.33990302576841,79.7306578424551,63.32261558699434,65.08909206502943,77.06231436265102,79.45545363173808,63.2221829747945,64.99219524920086,0.2775886631173847,275.2042107170212,0.1004326121998389,96.8968158285719,85.15298,59.946368141627566,89006.98233511028,62659.52560011243,260.28532,162.19691056765322,271357.7715062193,168831.00972261088,287.29669,138.0577267148624,295991.27208111214,140862.1216393726,4071.49593,1820.7565955563475,4209601.306574684,1857054.1419636423,1363.44896,588.322522909757,1407291.0212187727,597123.5933239133,2249.56952,920.5122517848848,2309305.194940943,927802.412228698,0.38309,100000,0,387059,4045.771924323194,0,0.0,0,0.0,22006,229.27772551479043,0,0.0,26753,275.321417372217,2035664,0,73097,0,0,0,0,0,43,0.4494616912302707,0,0.0,0,0.0,0,0.0,0.0717,0.1871622856247879,0.3193863319386332,0.0229,0.3220002645852626,0.6779997354147373,25.24191067460663,4.596065232622673,0.340149359886202,0.1980796586059744,0.2293741109530583,0.2323968705547653,11.364527697617444,5.835890099766893,24.279992154845363,13008.015961069788,63.41246220117957,12.999592306208667,21.67589956456076,14.415875662630786,14.321094667779343,0.5517425320056899,0.7504488330341114,0.7114479874542603,0.5868217054263566,0.1140015302218821,0.715018315018315,0.9,0.8592436974789915,0.752542372881356,0.1229508196721311,0.4994130077482977,0.6819371727748691,0.662491301322199,0.5376884422110553,0.1119473189087488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397143725311,0.0046931224975926,0.0070014510253574,0.0091719822857839,0.0114192164160133,0.0136810602821718,0.0159416153626615,0.0182187474483546,0.0204755479228001,0.0223955454564064,0.0243067302270746,0.0268533535896856,0.0290288746298124,0.0313752150221975,0.0335431933120033,0.0354949440641866,0.0375243462765737,0.0397330371692805,0.0419427656011068,0.0441041571112871,0.0586342696570527,0.0723947318829958,0.086415996978535,0.0991584262571007,0.1107958141693742,0.1270086428503422,0.1406172092973913,0.1524969134488484,0.1645610175464827,0.1761420285815367,0.1894618954804389,0.2015882117471411,0.2142616373264323,0.2263921988761834,0.2374931220424782,0.2487956677261099,0.259510051092122,0.2693834853716972,0.2778704050268241,0.2865077183821172,0.2944530545210613,0.3029544843390115,0.3100147885241053,0.3164155147217364,0.3224075557821643,0.3286759813705922,0.3345597897503285,0.3397887771981168,0.3451967442583856,0.350554139201881,0.3509424803818461,0.3520950163274867,0.3518194393473167,0.352775846082522,0.3540375446960667,0.3534284399447768,0.3521948743973611,0.3527001678349294,0.353625170998632,0.3551477027002877,0.3563613159919674,0.3577329186394342,0.359459005376344,0.3599020246736028,0.3597522620602894,0.3605319065229365,0.3619621342512908,0.364206723913939,0.3674003821926534,0.3676212507977026,0.370468692786525,0.3732484757728099,0.3743190168503738,0.3772817916858413,0.3787507076806944,0.381378159275155,0.3892773892773892,0.3878562577447336,0.3852227862380146,0.3841961852861035,0.0,2.68919265986268,59.68329587932918,216.5447765994684,322.2775173374161,fqhc6_100Compliance_baseline,40 -100000,95787,41567,390.40788415964585,7100,72.88045350621691,5528,57.14762963658952,2230,22.89454727677033,77.331780499572,79.67256877352756,63.32970022966426,65.06265136365676,77.06009430028394,79.40056987363033,63.22922418811687,64.96433503714974,0.2716861992880695,271.9988998972269,0.1004760415473882,98.3163265070175,85.9738,60.42999386161275,89755.18598557216,63087.886520731154,254.11335,158.0398995445158,264690.5947571174,164391.54535011615,274.05057,131.32365391406634,282502.114065583,134256.42679112745,4006.70723,1802.419492057292,4142942.580934782,1841703.6466924448,1382.22391,602.8935153725715,1426747.314353722,613222.0655145035,2207.2127,924.1941967402686,2267587.6475930973,934379.5980950588,0.37856,100000,0,390790,4079.7811811623706,0,0.0,0,0.0,21519,224.03875264910687,0,0.0,25563,263.37603223819514,2037926,0,73157,0,0,0,0,0,48,0.4906720118596469,0,0.0,1,0.0104398300395669,0,0.0,0.071,0.187552831783601,0.3140845070422535,0.0223,0.3190208667736757,0.6809791332263242,25.63002623340945,4.604008403577764,0.3299565846599132,0.2027858176555716,0.2306439942112879,0.2366136034732272,11.228028306829971,5.641639782695747,23.785702071532118,12944.169181859075,62.18944837477069,13.002797760344574,20.4918148192557,14.138033175333783,14.556802619836642,0.5495658465991317,0.776092774308653,0.6907894736842105,0.5835294117647059,0.1253822629969418,0.7107377647918188,0.9313432835820896,0.8719646799116998,0.7758007117437722,0.16,0.4965135849963933,0.7099236641221374,0.6309263311451495,0.5291750503018109,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021980248164092,0.0043895219171971,0.0067581965965478,0.0090210898451785,0.0110958555809814,0.0136457601401236,0.0159254501335617,0.0181305892441504,0.0201692870724376,0.0224394738189077,0.0246955345060893,0.0265827463704129,0.0285746601682193,0.030572723526988,0.0325097529258777,0.0345487062326196,0.0363611884961526,0.0385297503604061,0.0407440120538265,0.0426172155641861,0.0575173219801318,0.0714734001380724,0.0849625242413124,0.0976650343624556,0.1099273964952212,0.1248480877550804,0.1378012846331588,0.1505316886431305,0.1625082705483106,0.174155738407474,0.1876984682289368,0.2008761492698756,0.2130234783648879,0.2244435938098102,0.2358327555276741,0.2470138504155124,0.2573204481542651,0.2674338811829952,0.2765798160142469,0.2848209991067134,0.2925447017186741,0.300661771583575,0.3082103419299097,0.3151938040259444,0.3217345859818423,0.3283276366283733,0.3342065352268027,0.339489560348456,0.344849515256129,0.3500218193358987,0.351173139158576,0.3520494568285395,0.3522337980911564,0.3522044450879606,0.3535332479676007,0.3536242569466845,0.3534870417745857,0.3543561354949255,0.3550800487327762,0.3559501200415666,0.3580423529411765,0.3591635916359164,0.3600025285515614,0.3603111440839909,0.3598256447511805,0.3615317987348749,0.3622444590991198,0.3636880507912442,0.3672075750642402,0.3700630335913189,0.3709085908132392,0.3693032721041075,0.3716673045031254,0.3735393603936039,0.3739089184060721,0.3786720802483879,0.3799410944039684,0.378757108042242,0.3725653867557039,0.3709869203329369,0.0,2.094687238745708,60.42188735280692,206.15633801688384,318.9823916143755,fqhc6_100Compliance_baseline,41 -100000,95697,41825,392.5932892358172,7226,74.41194603801581,5579,57.81790442751601,2233,23.020575357639213,77.34192318165195,79.71613906633306,63.32298576779221,65.07455254017518,77.06918778422305,79.44175185757848,63.22387135950655,64.9767539115731,0.272735397428903,274.38720875457534,0.0991144082856578,97.798628602078,85.93882,60.44221884299043,89803.04502753483,63159.99335714853,255.96086,158.7216945195999,266986.68714797747,165386.4323732296,275.38563,131.85698280388334,284771.0377545796,135475.30321735225,4045.39961,1794.6080649342573,4195321.8805187205,1844233.5116623668,1351.39393,580.3351534012825,1399826.755279685,594360.6558009926,2199.38294,908.3545584495372,2269734.9760180567,925148.0553115476,0.38072,100000,0,390631,4081.9565921606736,0,0.0,0,0.0,21632,225.5452104036699,0,0.0,25636,264.8985861625756,2035658,0,73019,0,0,0,0,0,52,0.5433817152052833,0,0.0,2,0.0208992967386647,0,0.0,0.07226,0.1897982769489388,0.3090229725989482,0.02233,0.3182057353328071,0.6817942646671928,25.547929522445774,4.588811668182116,0.3215630041226026,0.2046961821114895,0.2401864133357232,0.2335544004301846,11.208659609203393,5.591439533589616,23.681873954860777,13013.733054815357,62.55275887564496,13.30664569340507,20.111231459784463,14.982713713064436,14.152168009391008,0.5583437892095358,0.7889667250437828,0.7001114827201784,0.5940298507462687,0.1243284727551803,0.7207207207207207,0.9183098591549296,0.8767123287671232,0.7104377104377104,0.1611570247933884,0.5074170002354603,0.7306226175349428,0.6430678466076696,0.5608820709491851,0.1159283694627709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.0048955514336972,0.0072126358075413,0.0095069778779937,0.0117356330021457,0.0140396245240373,0.0163020206757335,0.0187270889281447,0.0207370444598961,0.0229867403880612,0.0250489597965733,0.0270789262902795,0.0294057145208071,0.0313739632167327,0.0334437803858421,0.0352921711975348,0.0375066032752245,0.0395981026125406,0.0417528935847172,0.0435462190127856,0.058472690809196,0.0728331204322241,0.0864408736447695,0.0992192925233054,0.1109856717803709,0.1264457824950528,0.1400133770742427,0.1519625073227885,0.1644772705409536,0.1757167237326521,0.1898051815035632,0.2019472361809045,0.2141628565207925,0.225542020991343,0.235754546655511,0.2470025043771193,0.2574666443365154,0.2675177879852292,0.276979804855911,0.2859990149024639,0.2938963984816221,0.3011374274480434,0.3086603918782928,0.3155268775936098,0.3221261957724051,0.3286145878290893,0.3343899169349887,0.339793215850056,0.3446491114282008,0.3496893588896232,0.3504071518277943,0.3505205888038885,0.3516783266200268,0.3526516905974988,0.3530767286621173,0.3539147625396533,0.3534220532319391,0.3540720258081506,0.3567167249537132,0.3585628142501834,0.3600781675717319,0.3612771280503544,0.3620149332211589,0.3632502640390103,0.3630751422783833,0.3652269285005484,0.367934487973293,0.3719677399029676,0.3758080382237212,0.3787848645207496,0.381887789982225,0.3824953445065177,0.3827129177500158,0.3840877914951989,0.3821176470588235,0.3870815652993871,0.3866221750341271,0.3835781847454216,0.381553664562174,0.3776856388993592,0.0,1.812200507399624,59.08601113484915,210.47638018759835,325.40256195452923,fqhc6_100Compliance_baseline,42 -100000,95731,41763,392.2971660172776,6962,71.3353041334573,5428,56.04245228818252,2227,22.793034649173205,77.32392886815877,79.68817267233646,63.31606620966248,65.06527914763421,77.05712121684759,79.42399352154875,63.21740892386892,64.97032957746238,0.2668076513111828,264.1791507877116,0.0986572857935641,94.9495701718348,85.5943,60.18458499093236,89411.03717708997,62868.27918397691,255.29988,159.5945547735494,265994.79792334774,166025.35603977082,276.42293,132.8522380005458,284962.13347818365,135785.08592034513,3953.04162,1779.9413709089556,4085119.386614576,1815922.2375105256,1307.50375,569.166631343178,1351520.865759263,580439.0411092162,2195.62424,912.1644081031072,2250402.0641171616,918477.2462542875,0.37953,100000,0,389065,4064.13805350409,0,0.0,0,0.0,21583,224.7338897535804,0,0.0,25651,264.1673021278374,2035283,0,73130,0,0,0,0,0,51,0.5327427896919493,0,0.0,0,0.0,0,0.0,0.06962,0.1834374094274497,0.3198793450158,0.02227,0.3176550783912747,0.6823449216087253,25.17488067179952,4.641124656209835,0.3279292557111274,0.2043109801031687,0.2301031687546057,0.237656595431098,11.44865711084865,5.789949682431134,23.60987274734814,12885.00744578074,61.23599773356909,13.02103587717247,20.17960953161709,13.89006036156493,14.14529196321462,0.5473470891672808,0.7781785392245266,0.6966292134831461,0.5812650120096077,0.1100775193798449,0.6993464052287581,0.9144542772861356,0.867237687366167,0.7379310344827587,0.1209964412811387,0.4956800789928413,0.7181818181818181,0.635948210205636,0.5338894681960376,0.1070366699702675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0045118575672469,0.0067793857957659,0.0091040256863581,0.0115758636123204,0.0138798370672097,0.0159553860897579,0.0179652331907683,0.0204582400392601,0.0225350670625575,0.0244009965449009,0.0265200517464424,0.0287655882141278,0.030952258330329,0.0330103499159004,0.0352580004961548,0.0370815379516075,0.0388802972588663,0.0407636953537706,0.042945999729113,0.0575172269784923,0.0723238198861734,0.0856516678376309,0.097867463038129,0.1091942508251521,0.1248016586624918,0.1383627778661998,0.1505142784130837,0.1623154656354818,0.17376947240895,0.1862881259218586,0.1991953015996625,0.2109847331564525,0.2226900405726096,0.233415098282936,0.2446226435992291,0.2562528599649549,0.265481148002251,0.2744966671587386,0.2835582976869,0.2913039950858242,0.2989722134327134,0.3063230794772668,0.3128429242054964,0.3196372047723399,0.3253657633187233,0.3311969295990166,0.3365941382037089,0.3422859739079639,0.3479716319563894,0.3490544389401077,0.3491671722464288,0.3494952347334981,0.3505628069362152,0.3508311982363105,0.3513542529370265,0.3516995483717614,0.3535896172170198,0.3540380108455788,0.355772840212359,0.3567181257151432,0.3581498495168699,0.3593251636729898,0.3604025642175102,0.3614126501664496,0.3622456984467339,0.3608818573835565,0.3623935951393943,0.363919900762006,0.3669823762138832,0.3694515774027879,0.3729700854700855,0.3740032907226933,0.3751242259766073,0.3757598784194529,0.375344105326152,0.3778049152801099,0.3741537236160892,0.370112479914301,0.3708079268292683,0.0,2.4447993926011398,60.60019165200787,201.86625461883924,308.9238530267146,fqhc6_100Compliance_baseline,43 -100000,95791,41832,392.1140816986982,7156,73.4933344468687,5647,58.33533421720204,2348,24.15675794176906,77.4066300966336,79.74495676597368,63.35719594835807,65.0874267715601,77.11480417849744,79.45209514697841,63.24922389318742,64.98164554634533,0.2918259181361691,292.86161899527485,0.1079720551706486,105.78122521476983,85.7219,60.30594904220229,89488.46968921924,62955.75684793174,257.34391,160.14985111885184,268064.6407282521,166599.9322680125,282.30668,135.35973590401545,290279.2120345336,137952.98521793768,4089.1451,1848.849498484308,4229150.285517428,1890417.4175907003,1428.05664,627.3179068334737,1476390.224551367,640470.2335493709,2310.55976,970.874610514052,2379119.040410895,985581.0107242372,0.38071,100000,0,389645,4067.657713146329,0,0.0,0,0.0,21778,226.72276101095093,0,0.0,26350,270.69348894990134,2037365,0,73200,0,0,0,0,0,39,0.4071363698050965,0,0.0,1,0.0104393940975665,0,0.0,0.07156,0.1879645924719603,0.3281162660704304,0.02348,0.3209203351509509,0.679079664849049,25.309236873916216,4.594589099188104,0.3260138126438817,0.2078979989374889,0.2280857092261377,0.2380024791924916,11.276537374001942,5.691276472153276,25.141438051146043,12943.92013527537,63.83835013114749,13.802136256023946,20.873223157496717,14.30399724128904,14.858993476337805,0.5578183106074022,0.7998296422487223,0.6963606735469854,0.5908385093167702,0.125,0.7132867132867133,0.9378378378378378,0.8479657387580299,0.7601351351351351,0.1750841750841751,0.5050984111927911,0.736318407960199,0.6448326055312955,0.5403225806451613,0.110792741165234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0045020380848086,0.0068093483930546,0.009398209768042,0.0113810884755037,0.0134925968921203,0.0158234946269448,0.017771653141428,0.0200846314240157,0.0222379139547259,0.0243612474762485,0.026607425041558,0.028686249922914,0.0308327413858776,0.0328323437242289,0.0350677915345773,0.0369952721366424,0.0395592092304821,0.0417432860630616,0.043725859681634,0.0586921816796919,0.0730898747150237,0.0866192901913925,0.0990079239968892,0.1109343391773432,0.1259153590109367,0.13939413211227,0.1521195946879884,0.1639281294012206,0.1750731033300843,0.1884139058952646,0.2008477233653752,0.2124327555289898,0.2235946834420016,0.2343078765505345,0.2461986233151103,0.2563579172801499,0.2661854325485169,0.27570639412879,0.2846118616899473,0.2929349020696676,0.3009178602747734,0.3088759217394392,0.3154620640057533,0.3223845761104763,0.3280571456770628,0.3334920794064568,0.3395416385339567,0.3452533821030649,0.3504211347498975,0.3506479481641468,0.3515227551597204,0.3509956220872758,0.3511031275803624,0.3514620057170081,0.3513057354159634,0.3518377693282636,0.3534567658065787,0.3545879223923347,0.355227070347284,0.3559649188561148,0.3569537732121691,0.3571952011055045,0.3580517476574904,0.3595616333004878,0.3594539675923514,0.3608872689996867,0.3627715685043325,0.3653684210526315,0.3656621728786677,0.3676049292892547,0.3666454824700773,0.3692597239648683,0.370096001209464,0.3738004285847386,0.3722619187068057,0.3700859950859951,0.3725845410628019,0.3760376314333148,0.3805825242718446,0.0,2.414580154400481,62.998009974671646,214.4637791886866,317.8212913934451,fqhc6_100Compliance_baseline,44 -100000,95691,42044,396.3382136251058,7160,73.70599115904317,5565,57.60207334023053,2308,23.795341254663448,77.29491858535671,79.69892434562087,63.29396199958445,65.07494076821177,77.01638940521529,79.41712595168484,63.19350906897771,64.97516309145568,0.2785291801414189,281.7983939360289,0.1004529306067425,99.77767675609071,85.6966,60.30242810729906,89555.5485886865,63017.86804119411,256.51658,159.91335552321283,267513.97728104,166561.34696163394,278.01365,133.43349603805274,286994.1896312088,136695.4274482187,4034.55053,1807.74717042824,4181642.9444775367,1854649.744384712,1364.57968,588.8303554387003,1414128.4551316216,603529.2184808675,2269.2472,933.2342768896464,2342221.839044424,951380.5689616876,0.38086,100000,0,389530,4070.7067540312046,0,0.0,0,0.0,21709,226.26997314271975,0,0.0,25914,267.2560637886531,2035119,0,73036,0,0,0,0,0,48,0.5016145719033138,0,0.0,1,0.010450303581319,0,0.0,0.0716,0.1879955889303156,0.3223463687150838,0.02308,0.319377990430622,0.680622009569378,25.276527396850785,4.606670832498623,0.3299191374663073,0.2019766397124887,0.2309074573225516,0.2371967654986523,11.05051821085349,5.522900110831892,24.479376028741505,12904.839873269042,62.66845449170416,12.985419663069582,20.760534889930053,14.391782755444982,14.530717183259544,0.5371069182389937,0.7313167259786477,0.69880174291939,0.5665369649805447,0.1181818181818181,0.7021739130434783,0.9156976744186046,0.8682505399568035,0.7022653721682848,0.1325757575757575,0.4826762246117085,0.65,0.6416605972323379,0.5235655737704918,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0044648746283499,0.0065708627431066,0.0086523308423567,0.0108105907142929,0.0131379124071224,0.0154496101881709,0.0175823951288285,0.0196014240700577,0.0218912301908439,0.0239213835832837,0.0260419341914672,0.0279892982095081,0.0301450052045222,0.0321431889263927,0.0343333436747019,0.0364651876107478,0.0384136212624584,0.0402163736606678,0.042108335157333,0.0573654908760458,0.0710427135678392,0.0840215326820361,0.0970908517018254,0.1097302372688237,0.1251322527402767,0.1384675801606928,0.1512525418134974,0.1627723110783465,0.1741140876953942,0.1873498712797699,0.2006901699462359,0.2133353624070611,0.2249442720398619,0.2355004342997878,0.2463633344403852,0.2565478315188292,0.2662016201620162,0.2762508088961548,0.2846809047242379,0.293067908097091,0.30023997658765,0.3080776381701266,0.3151434433605701,0.3211827930841621,0.3280688539570033,0.3336635028900284,0.3389564885009875,0.344095773625975,0.3499042714728989,0.3504378283712784,0.3509295828918216,0.3507980373357396,0.350994431185362,0.3512290935063389,0.3512123212996944,0.3506031180967214,0.3514043647392365,0.3525044155220604,0.3533823793289072,0.3546695835847918,0.3555971412076208,0.3562230853668834,0.3569963716674554,0.3578458771780602,0.3598704308437796,0.3609799631506218,0.3637403852266226,0.365213082259663,0.366609225343646,0.3694819871765303,0.3719397867895216,0.3724868396016997,0.3723820483314154,0.3754734848484848,0.3763183125599233,0.3766313526792568,0.3819971293828173,0.3872832369942196,0.3890160183066362,0.0,2.103284301327647,61.03489015842346,206.8477019241461,322.08038944972463,fqhc6_100Compliance_baseline,45 -100000,95714,41789,392.8369935432643,7131,73.34350251791797,5548,57.32703679712477,2281,23.403054934492346,77.3593554540744,79.73093419783268,63.33143217950936,65.08405711629217,77.08057550079245,79.45320924675215,63.22923863910287,64.98518422961648,0.2787799532819548,277.7249510805291,0.1021935404064962,98.87288667569294,84.98908,59.73603451525731,88794.5964017803,62410.745674882775,255.54456,159.31664786580305,266323.2860396598,165786.91268941096,281.36773,134.72324037633103,289869.31901289255,137597.87541867007,4027.71273,1802.7835876979047,4168434.460998391,1843932.6966575107,1382.88002,592.7429326745269,1432017.552291201,606636.0034855655,2246.08506,931.2894912856386,2308454.9595670435,941320.5910330744,0.37941,100000,0,386314,4036.118018262741,0,0.0,0,0.0,21624,225.2230603673444,0,0.0,26095,268.68587667425874,2041568,0,73197,0,0,0,0,0,63,0.6373153352696576,0,0.0,0,0.0,0,0.0,0.07131,0.1879497113940064,0.3198709858364886,0.02281,0.318175738932727,0.681824261067273,25.15614872007321,4.617318689690251,0.3233597692862293,0.2042177361211247,0.2334174477289113,0.2390050468637346,11.286066513652056,5.693580213778953,24.256399496494403,12928.415525049084,62.59925056024544,13.268436084088403,20.37300036682467,14.44102836964946,14.516785739682891,0.5502883922134102,0.7837599293909974,0.6978818283166109,0.5837837837837838,0.1184012066365007,0.712789827973074,0.9436201780415432,0.8568329718004338,0.7052631578947368,0.1535433070866141,0.4986938969365946,0.7160804020100503,0.6429107276819205,0.5495049504950495,0.1100746268656716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0045008971382809,0.0066973119425248,0.0087444902602019,0.0110531507072186,0.0132550113512578,0.0153626586472297,0.0176796031276157,0.0197297131524605,0.0218575318904973,0.0239042599011424,0.0260071077877524,0.0283347908843047,0.030538440932226,0.0328981992673236,0.0351579056184421,0.0370857361756758,0.0391453168758427,0.0410948935462408,0.042999552087999,0.0578824807075801,0.0721013961861302,0.0855449491240952,0.0980862250262881,0.1101198949732688,0.1260208183472263,0.1388048772722931,0.1514160988074957,0.1629795874746179,0.1746600701859821,0.1883533227728747,0.2008726060173005,0.212738409983571,0.224019436175801,0.2347051177546209,0.2462266975702261,0.2561508135937727,0.2663074049906622,0.2758491551006048,0.2843017060623073,0.292562117372033,0.3005344966725535,0.3081226198642288,0.3152121850751987,0.3219843177238851,0.3289248463802381,0.3340424200713258,0.3401073327059541,0.3458396447482554,0.350246643277322,0.3508205542103847,0.350904463855836,0.3514760277344134,0.3521049596309112,0.3528634818871228,0.3525794955721081,0.353005326294827,0.353311475409836,0.353702470590244,0.3547684896065661,0.3552577242181927,0.3556286404881721,0.3564838220424671,0.3567550519272793,0.3575213530450773,0.358610747051114,0.3592029816513761,0.3611454666539815,0.3647108783353386,0.3669274367366488,0.3675707926017715,0.3694011879916519,0.3714996491675703,0.3696483180428134,0.3713640214628636,0.3718968998693431,0.3753260702777352,0.3750252576278036,0.3812672176308539,0.3805140007671653,0.0,2.444113862833246,58.73910134514557,214.702965265182,318.6324600986166,fqhc6_100Compliance_baseline,46 -100000,95875,42188,396.2346805736637,7210,73.95045632333768,5594,57.63754889178618,2267,23.259452411994783,77.4394230829848,79.7174901880083,63.39129033748679,65.07647267719659,77.16419876637096,79.44207045152628,63.29206167268799,64.97920218838428,0.2752243166138441,275.41973648202145,0.0992286647987938,97.27048881231326,86.20788,60.63309259993122,89916.95436766623,63241.817574895664,257.45952,160.3214663076606,267805.9661016949,166488.56981242303,281.24795,134.86417773578177,288017.87744458934,136622.677101172,4072.32635,1821.0185825918568,4202540.391134289,1854430.267263929,1360.47805,592.009576540443,1399502.6544980444,598009.1490499416,2235.27932,914.1451599029,2296359.7809647983,925828.3828468458,0.38382,100000,0,391854,4087.1342894393742,0,0.0,0,0.0,21807,226.6910039113429,0,0.0,26142,267.2542372881356,2037907,0,73149,0,0,0,0,0,60,0.6258148631029987,0,0.0,1,0.0104302477183833,0,0.0,0.0721,0.1878484706372779,0.3144244105409154,0.02267,0.3082218985833443,0.6917781014166556,25.371969777845543,4.567891375788405,0.3291026099392206,0.2066499821237039,0.2275652484805148,0.2366821594565606,11.335175660177908,5.754252349258762,23.822159960546426,13042.200128551432,62.82902551262899,13.605421277948846,20.8253501389305,14.070700083701343,14.327554012048312,0.559706828745084,0.7837370242214533,0.7213470939706681,0.5765907305577376,0.1231117824773413,0.7338129496402878,0.9124668435013262,0.8970588235294118,0.7314487632508834,0.1653543307086614,0.5021408182683159,0.7214377406931964,0.6600732600732601,0.5323232323232323,0.1130841121495327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022777890261186,0.0045198427175807,0.0070096065084855,0.0093005310237691,0.0117291918647788,0.0139293054679391,0.0159918512859689,0.018329253365973,0.020156511789465,0.022535240082653,0.0245291911719502,0.0266562695587043,0.028649231875867,0.0308610839466776,0.0328869369787317,0.035014352683642,0.0371811052947383,0.038948120978521,0.0412345448316671,0.0429830127638326,0.0576929090359499,0.0720293383205692,0.0853681521192829,0.0984945514099145,0.1111321628563007,0.1269899919766901,0.1402124527382679,0.1528793030174245,0.164069494777233,0.1753086948147831,0.1892754651275271,0.2027634336581466,0.2150126535533132,0.2255872391565607,0.2360947721400692,0.2477257132738661,0.2581058638638415,0.2679496253356251,0.2772767442387437,0.2865832742573578,0.2953224818918013,0.3035363916658881,0.3104398202884842,0.316809983472658,0.3236387040365279,0.329280610987928,0.3351181614602229,0.3417256586556181,0.3471422843617833,0.3526420488229017,0.3537617196432654,0.3549420042878346,0.3551415021320311,0.3561479554977604,0.3566135523248043,0.3568136932192232,0.3567176466862987,0.3578717679485497,0.3582823762511529,0.358950562198822,0.3601236765670383,0.360727071342392,0.3617306724802951,0.361801970905678,0.3625906536669708,0.3640089807852966,0.364727634760347,0.3689725490196078,0.3716736694677871,0.3731266354769645,0.3738964230454173,0.3762771392081737,0.3790862047204342,0.3821231617647059,0.3830556877677296,0.3859923113887554,0.3863920099875156,0.3912414790332575,0.3911830357142857,0.3935681470137825,0.0,2.6851743093471727,60.78530562083947,207.3378135451024,322.01399198392994,fqhc6_100Compliance_baseline,47 -100000,95739,41844,394.40562362255713,7045,72.47830037915583,5441,56.26756076416089,2194,22.561338639425937,77.34647984393533,79.69916066063529,63.33814763576003,65.07540838802694,77.0821733220428,79.43589292178486,63.24120794746479,64.98173551842312,0.2643065218925216,263.26773885043053,0.0969396882952438,93.6728696038216,84.78074,59.6339719278387,88554.02709449649,62288.06643879579,252.86699,157.43230703365072,263541.0229895863,163858.88408449088,273.38106,130.95460646307544,282322.3451258108,134243.0593913404,3902.72462,1742.6963356547246,4038510.15782492,1782346.7507021436,1329.77035,569.845423149763,1376268.5008199376,582522.0371528459,2165.51722,892.4710935408998,2228750.248070274,902745.7061969334,0.37969,100000,0,385367,4025.18304974984,0,0.0,0,0.0,21468,223.6497143274945,0,0.0,25423,262.3068968758813,2043747,0,73341,0,0,0,0,0,44,0.4595828241364543,0,0.0,0,0.0,0,0.0,0.07045,0.1855461034001422,0.3114265436479773,0.02194,0.3159956768440962,0.6840043231559038,25.421930189445817,4.50210696161937,0.31703730931814,0.2196287447160448,0.2271641242418673,0.2361698217239478,11.06876870126182,5.525284595679086,23.17138048920626,12919.655746248543,61.20408890863264,13.998435863945874,19.32406189695994,13.839351085969623,14.042240061757198,0.5421797463701525,0.7606694560669456,0.6805797101449276,0.5687702265372169,0.1276264591439688,0.7106824925816023,0.9276485788113696,0.8361445783132531,0.7208480565371025,0.182509505703422,0.4866845834351331,0.6806930693069307,0.6312977099236641,0.5236096537250787,0.1135029354207436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660320032408,0.0042473821326115,0.0063831298647263,0.0086040511163934,0.0106473854414546,0.0128787261769017,0.0149643221202854,0.0172485940864879,0.0194621336795085,0.0214900740225036,0.0234114740823501,0.025650237103032,0.0277078085642317,0.0297256097560975,0.0318097399917457,0.0337071683291126,0.0359176658176471,0.0378486055776892,0.0397829454140981,0.0418415707515233,0.0567753521053236,0.070482091645559,0.0838998699064165,0.0967192429022082,0.108827901778654,0.1246339116735919,0.1371833495990155,0.1501154734411085,0.1619102527145191,0.1730350807618516,0.1867390110777379,0.1983734737798349,0.2103856018780159,0.2225196970855962,0.2334894253176801,0.2448609097047721,0.2547279214986619,0.2652294681915815,0.2741082773643129,0.2834432838555983,0.2922320550639135,0.3010874649204864,0.3085599981061951,0.3153585172575018,0.3220229851544087,0.3278484598425972,0.3339672927015428,0.3394568995149524,0.3458805528902259,0.351614522777719,0.3528912137839914,0.3536939841027124,0.3543614695719624,0.3546463667018829,0.3557556365801027,0.3555313401682117,0.3555492172149331,0.3559717430589781,0.3570670410189687,0.3575772753291356,0.3584076612524645,0.3596736181252847,0.3604643826108902,0.3616610549943883,0.3630790026310073,0.3641591177628988,0.3654138792385655,0.3683744465528146,0.3706315900835772,0.3727808295517872,0.377623980199835,0.3779620219309976,0.378811793673843,0.3798217304441371,0.3833349186721202,0.3885220314563573,0.3912976392532016,0.3986071282261368,0.4011824324324324,0.3988985051140834,0.0,2.156543670333362,59.564390947500776,204.71048544779092,310.4611100548829,fqhc6_100Compliance_baseline,48 -100000,95740,41583,390.9651138500105,7154,73.65782327135993,5591,57.80238144975977,2270,23.34447461875914,77.41222784566315,79.76689879736988,63.350809200748486,65.08930044288952,77.13511930983304,79.48785183319599,63.249390993414565,64.98969430403142,0.2771085358301093,279.04696417388664,0.1014182073339213,99.60613885810687,85.1906,59.85331444959833,88981.19908084394,62516.51812157753,257.1083,160.18295725531462,267956.3296427825,166729.46723590684,278.95155,133.16908059818442,287078.5460622519,136010.348922806,4047.28003,1805.9545319272368,4187859.546688949,1847672.260484372,1351.33395,579.0909982608732,1398352.548569041,592253.703188922,2235.27846,923.3793488462674,2300273.407144349,936325.651415867,0.37711,100000,0,387230,4044.59995822018,0,0.0,0,0.0,21775,226.80175475245457,0,0.0,25979,267.0461667014832,2039548,0,73129,0,0,0,0,0,47,0.490912889074577,0,0.0,0,0.0,0,0.0,0.07154,0.1897059213492084,0.3173050041934582,0.0227,0.3201649374833732,0.6798350625166267,25.22474777559076,4.640581693614022,0.3330352351994276,0.2056877123949204,0.2248256125916651,0.2364514398139867,11.153902558225225,5.52494667290371,23.996118573424837,12834.23237508824,62.90849904275776,13.4632515057102,20.96935566321656,13.927918387593794,14.547973486237208,0.5419424074405295,0.7652173913043478,0.69656283566058,0.5616547334924423,0.1111951588502269,0.6916234247590808,0.92,0.8619246861924686,0.7018867924528301,0.1281138790035587,0.4943422913719943,0.7042424242424242,0.6394508670520231,0.5241935483870968,0.1066282420749279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407534940247,0.0047534586732884,0.0068579312583695,0.0092412056219026,0.0113766915076403,0.0137832748002239,0.0158387182257374,0.017938226380825,0.020061113325362,0.0222824974411463,0.0243297532180044,0.0262077319481799,0.028282101367328,0.0303907231570925,0.0324314842331187,0.0345241048540478,0.0365626359061445,0.0385856426963261,0.0406616485070282,0.0426480545861763,0.0573889439891423,0.0705660772208852,0.0840553865519773,0.0965895941596011,0.1086678976523344,0.1243465193557262,0.1372078707732801,0.149349404774581,0.1604684961956057,0.1715962995556891,0.1852838121934127,0.1981245465669023,0.2095311700610665,0.2204547693857219,0.2309073484539716,0.2428715605487595,0.2533221570271025,0.2638544717278666,0.2734819491920006,0.282448436765532,0.2911093353715735,0.2993983941571666,0.3067900723153945,0.3132885230581215,0.3196011513657286,0.3256908425630475,0.3309694445486723,0.3364298331448323,0.3421413243012643,0.347426494792421,0.3486138720249288,0.349247955206675,0.3505376344086021,0.3509705517579533,0.3516838131892532,0.3510385213651752,0.3503769359366621,0.3515488353085411,0.3517834340682727,0.3528124666453197,0.3533045896560091,0.3544263909404234,0.3566240344964729,0.3578395268385225,0.3592184007498738,0.3601520595740249,0.3602869996013894,0.3620261909995917,0.3640763080375929,0.3663554359867068,0.3681628202798473,0.3701050620821394,0.3733266293759034,0.3778588253172251,0.3772914328469884,0.3795102330533538,0.3791533909877105,0.3829787234042553,0.3820316766794102,0.3886562618956985,0.0,2.2770517922283333,59.610728532306034,219.9911893004707,312.5093433938183,fqhc6_100Compliance_baseline,49 -100000,95740,42148,396.4069354501776,7123,73.33402966367245,5555,57.55170252767913,2254,23.24002506789221,77.32373385663094,79.69271588560485,63.321321634088775,65.07472653007977,77.05003172667813,79.41681345783299,63.22220546200669,64.97701363382957,0.2737021299528095,275.902427771868,0.0991161720820912,97.71289625020074,86.19666,60.66653148159263,90032.0242322958,63365.91965906897,258.06879,161.09324822132274,269097.07541257574,167806.55757397407,283.2569,135.7771413499469,292719.63651556295,139479.4031800197,4007.89793,1794.1114345686576,4152717.380405264,1840427.3287744492,1355.69375,587.0409045244162,1403562.2623772717,600707.8175521373,2217.46632,913.1547231030034,2287107.708376854,930098.4549740452,0.3818,100000,0,391803,4092.364737831628,0,0.0,0,0.0,21800,227.229997911009,0,0.0,26333,271.8821809066221,2032820,0,72933,0,0,0,0,0,46,0.4804679339878839,0,0.0,0,0.0,0,0.0,0.07123,0.1865636458878994,0.3164397023725958,0.02254,0.3041450086632014,0.6958549913367986,25.402549397419826,4.555431126256565,0.3278127812781278,0.2066606660666066,0.2336633663366336,0.2318631863186318,11.158880252627146,5.608302495321893,23.979256123682017,13031.978489638906,62.56674813982116,13.371296368774749,20.6070715344093,14.452215236271572,14.136165000365528,0.544014401440144,0.7613240418118467,0.6941241076331686,0.5647149460708782,0.1172360248447205,0.717948717948718,0.9424657534246575,0.8735362997658079,0.7124183006535948,0.1685393258426966,0.4873508353221957,0.6768837803320562,0.639167862266858,0.5191532258064516,0.1038197845249755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024924012158054,0.0046041356090338,0.0068615509541209,0.0089831920817836,0.0113136903792935,0.0135175055261844,0.0156141639130257,0.0179036491579259,0.0201957195300277,0.0224793896256848,0.0244690342628011,0.0266509191742836,0.0285893584626147,0.0305437907688502,0.0326589595375722,0.034871338922948,0.0367892283790782,0.0388773604482257,0.0409882088714205,0.0430755123943691,0.0583549114600735,0.0719219659228869,0.0856174801481155,0.0985484379930577,0.1103483909064068,0.1259753441458205,0.1395215615551901,0.1521519391392243,0.1642371234207968,0.1750048249093989,0.1896728071403193,0.2035975425085449,0.2161409917696815,0.2271281305683395,0.2377935434196777,0.2494491989858618,0.2601304275124018,0.2698084592484412,0.2794299384360721,0.2875008581432069,0.295002773668639,0.3031503423777139,0.3109815929161691,0.3180250107805088,0.3246393705376657,0.330938354982623,0.3365261813537675,0.3418582436477106,0.3467683369644154,0.3516782422689941,0.3524963605974012,0.3528998097129147,0.3538405070796335,0.3543701985795043,0.3548117903019104,0.3549367554955176,0.3547921981208309,0.3560934726878327,0.3568217173530266,0.3575082272141937,0.3583175146127389,0.3589519650655022,0.3609103361078917,0.3620755608559663,0.3625511513595971,0.3623325453112687,0.3632284415808549,0.3648850592985914,0.3665743305632502,0.3684528605962933,0.370161402210609,0.3716818943612477,0.3719352154151463,0.3693393300248139,0.3680403540496811,0.368560743153577,0.3720894371626831,0.3726134264011496,0.3725055432372505,0.3731982859368913,0.0,1.8615972215332937,60.488678396289785,208.6645204747991,321.6597527314854,fqhc6_100Compliance_baseline,50 -100000,95777,41965,393.9567954728171,7128,73.07599945707216,5579,57.62343777733694,2267,23.272810800087704,77.38153749659537,79.72257598634013,63.350937847410606,65.08268450479416,77.10236692782479,79.44293572737251,63.24909685782407,64.98295038840742,0.2791705687705814,279.6402589676177,0.1018409895865346,99.7341163867418,84.4723,59.42615508175881,88196.85310669575,62046.373431783,255.39433,159.097404561495,266013.77157355106,165478.8116324557,281.36768,135.07587260672344,289857.2308591833,138013.30666472824,4036.87398,1809.8135372316465,4173852.480240559,1849245.8264512613,1397.59612,605.8685645169265,1442008.707727325,615420.6886662772,2230.17498,925.5670867897028,2291560.7087296536,936579.5361045148,0.38118,100000,0,383965,4008.947868486171,0,0.0,0,0.0,21633,225.2106455620869,0,0.0,26246,270.0021925932113,2043822,0,73390,0,0,0,0,0,43,0.4489595623166313,0,0.0,0,0.0,0,0.0,0.07128,0.1869982685345506,0.3180415263748597,0.02267,0.3146666666666666,0.6853333333333333,25.395735842887344,4.5645979234631096,0.3350062735257214,0.2050546692955726,0.22172432335544,0.2382147338232658,11.179142926848352,5.626304783147972,24.17118007173367,12977.21999350763,62.847409920934325,13.387282037575469,20.938536773187863,13.834564694307964,14.687026415863016,0.5558343789209536,0.7770979020979021,0.7025147137506688,0.6063055780113177,0.1121143717080511,0.717948717948718,0.9303621169916436,0.8599562363238512,0.7353951890034365,0.1511627906976744,0.5033222591362126,0.7070063694267515,0.6515580736543909,0.5665961945031712,0.1027077497665732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0047641251241713,0.0070411103445477,0.0094147040004874,0.0117432946296032,0.0138338915072732,0.0159212296652668,0.0179426203574235,0.0202844938584479,0.0223668324226983,0.0245014653741315,0.0267701340559627,0.0290664199054081,0.0308883489147893,0.0329032191519427,0.0347677842640905,0.0366737033817624,0.0391931253951964,0.0411368735976065,0.0432808937291117,0.0582421940223743,0.0721240835451246,0.0851574621545687,0.0978385364674729,0.1103805098051612,0.1260541500221926,0.1386878331549442,0.1516462721000202,0.1633709328011781,0.1747397982699666,0.1891475872164993,0.2021046483960978,0.2144534052127035,0.2257507540324343,0.2362574514418952,0.247694743017811,0.2578138067149117,0.2668127915472377,0.2761064556000318,0.2856685201711631,0.2929080310880829,0.300729551512884,0.307676834607284,0.3144551608458635,0.3211756847027388,0.3283648279090393,0.3348627867725198,0.3403906100897003,0.3463346412338293,0.3512679103886851,0.3515136823960353,0.3513565598028824,0.3518510683308652,0.3523580741791239,0.3529280385938267,0.3534201205207231,0.3528983211910041,0.3547365484649087,0.3558726149435096,0.3567424756328323,0.3573787099921203,0.3588946117274168,0.3604211322657925,0.3600862805015054,0.3608851992180901,0.362562840385421,0.3648246667810766,0.3671244959677419,0.3698394293946102,0.3730168197542646,0.3746347699050402,0.3757802080554814,0.3788532284663199,0.3776669224865694,0.3746436038775898,0.381453154875717,0.3813702848344881,0.3838013838013838,0.384529461044401,0.3849129593810445,0.0,2.405603719186768,59.998350912867565,207.47423204719917,326.93537654404474,fqhc6_100Compliance_baseline,51 -100000,95860,41587,390.6634675568537,7208,74.06634675568537,5598,57.84477362820781,2307,23.70123096181932,77.37299817448195,79.67597507591856,63.35320242165369,65.0578815398406,77.0963945380778,79.39763977813142,63.25246389617075,64.958490905064,0.2766036364041468,278.3352977871374,0.1007385254829387,99.39063477659715,85.45416,60.0863816725972,89144.75276444816,62681.39127122596,256.6859,159.4032381370515,267217.4525349468,165733.3487763942,273.65772,130.71653300201035,282088.98393490503,133622.85624985653,4113.45237,1834.1107181774412,4254626.340496558,1876844.521361821,1373.50176,594.9519997874359,1417949.2906321718,605783.2447665408,2281.96964,942.2311498018676,2346995.034425203,956260.9596555772,0.37949,100000,0,388428,4052.034216565825,0,0.0,0,0.0,21668,225.4537867723764,0,0.0,25490,262.54955142916754,2040983,0,73269,0,0,0,0,0,56,0.5737533903609431,0,0.0,1,0.0104318798247444,0,0.0,0.07208,0.1899391288307992,0.3200610432852386,0.02307,0.3133403638281044,0.6866596361718956,25.42804266917367,4.505649876480301,0.3224365844944623,0.2075741336191497,0.2198999642729546,0.2500893176134334,11.03773529757126,5.494644470349878,24.51333903871052,12873.574421369036,62.98777123607103,13.687899131127852,20.42384538315718,13.593147892035638,15.28287882975035,0.5392997499106824,0.7771084337349398,0.710803324099723,0.5507717303005687,0.1107142857142857,0.6896046852122987,0.9025069637883008,0.8665207877461707,0.6781609195402298,0.1557093425605536,0.4907844990548204,0.7210460772104608,0.6580118694362018,0.5164948453608248,0.099009900990099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0045202549991385,0.0066238600975827,0.0085291310440062,0.0103897688225606,0.0127850162866449,0.0149725316726631,0.0171243711028788,0.0195976253972146,0.0217426893404547,0.023943445520209,0.0261319215734556,0.0281177740095575,0.030086874176548,0.0322051895302207,0.0340682604430216,0.0361691341547947,0.0384551615510559,0.0404681301792352,0.0424070914311873,0.0568994640585573,0.0712121212121212,0.085080974628648,0.0972667037686516,0.1093490027589983,0.123984662997898,0.1375667542595575,0.149522675568218,0.1610455311973018,0.1721314988641721,0.1865005058005639,0.1997470598408855,0.2121772019824363,0.2231320927995102,0.2339322850760885,0.245370575466265,0.256027221509455,0.2663366336633663,0.2754243056816119,0.2845331073498087,0.2919832980556808,0.2995296265094074,0.3072451758020599,0.3148787268718244,0.3207175911867947,0.3267142452144116,0.3325567121365851,0.3381836235869233,0.3434681181959564,0.3488728560479928,0.3496359223300971,0.3503412145860619,0.3519627223948037,0.3518333405768757,0.3520784944315407,0.3519754507096279,0.3510636610244776,0.3518935718866652,0.3529421829817086,0.3540361553606587,0.3550349177742735,0.3557576117747271,0.3556680459576971,0.3554450343885117,0.3559260776329422,0.3561815663626623,0.3581290100824931,0.3609618909182835,0.363412054987663,0.36704432518386,0.3690746974797562,0.3712157488693801,0.3728877919119043,0.3775205090853331,0.378219139028794,0.3793718772305496,0.377107501933488,0.3855371900826446,0.3843336151028458,0.389988358556461,0.0,2.117121101505122,60.3588220527991,211.11568926594416,323.5813301582113,fqhc6_100Compliance_baseline,52 -100000,95785,41852,393.7777313775644,7172,73.65453881087853,5520,56.981782116197735,2267,23.24998694993997,77.39816222968327,79.72814432973351,63.35848721039546,65.07955599581112,77.11599054847484,79.44619396546354,63.25425467233926,64.97834913542576,0.2821716812084247,281.9503642699744,0.1042325380562019,101.20686038536064,86.44196,60.78009560157654,90245.8213707783,63454.71169971972,255.67959,159.29177633841817,266294.55551495537,165666.9756762585,276.61752,132.76376398764384,284405.02166309964,135227.30752433257,4050.51453,1816.6477673465797,4185744.093542831,1853672.2243485053,1382.9682,606.5400263206051,1423622.5713838283,613080.7542348622,2243.73916,935.2754078363242,2303417.591480921,943243.044556784,0.38047,100000,0,392918,4102.0827895808325,0,0.0,0,0.0,21622,225.07699535417865,0,0.0,25702,264.12277496476486,2035077,0,72999,0,0,0,0,0,58,0.5742026413321502,0,0.0,1,0.0104400480242209,0,0.0,0.07172,0.1885036928010093,0.316090351366425,0.02267,0.317808944165123,0.6821910558348769,25.224049938024763,4.552609224973065,0.3278985507246377,0.2016304347826087,0.2235507246376811,0.2469202898550724,11.14185403278045,5.630127192793816,24.01250502594681,12903.785012322956,61.959934696462696,13.06680851346131,20.261712016486012,13.70477250214202,14.926641664373337,0.5445652173913044,0.7753818508535489,0.7011049723756906,0.5777957860615883,0.1181217901687454,0.6937728937728938,0.925207756232687,0.8701594533029613,0.6906474820143885,0.1358885017421602,0.4955475330926594,0.7034574468085106,0.6469730123997083,0.5449790794979079,0.1133828996282527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989204188693,0.0045605642938219,0.0068173517834679,0.0088959298074579,0.0110506785950287,0.0131292364687442,0.0154379171549396,0.0174774517406031,0.0194323545638447,0.021618801092706,0.0238505040570445,0.0257978450487429,0.0279841734751554,0.0301461506792918,0.0322690392486365,0.0343395953607981,0.0366420110691563,0.0384910512453597,0.0405611847233047,0.0423930021868166,0.0560025043042729,0.0698433283828728,0.0832127655113124,0.0963236221465506,0.1087742602021991,0.1245044873624457,0.1375312884476687,0.1501495110297638,0.1616059126979888,0.1724145326641787,0.1861980569138967,0.1988447684669385,0.2113618829256631,0.2234459850744637,0.2347102532536053,0.2468156214379779,0.2570848622062612,0.2676084853665669,0.2771575101549912,0.2854033496002016,0.2931235903070961,0.3009426018618141,0.3081067639257294,0.3150215209754577,0.3218341937443061,0.3276531253465419,0.3340173421253488,0.3395544699311731,0.3444062965602125,0.3492797063367356,0.3503780476299581,0.3510967901846573,0.3516517617852004,0.3525082064407907,0.3530923241444867,0.3522854299058265,0.3516300731869594,0.3516252484273114,0.3522414117727607,0.3536698723678095,0.3552900575801339,0.3561842079178479,0.358005249343832,0.3585779488097368,0.3593487344507948,0.3603862212943632,0.3606095931307043,0.3643130849927759,0.3682330695426851,0.3702808699441429,0.3722491096703497,0.3754105307765653,0.3783292598859434,0.3825482861287121,0.3853930461073318,0.3853728833913774,0.3820362965241464,0.3821071938047687,0.3751735628991947,0.3736559139784946,0.0,2.5271287747619,59.778514981276224,206.3090477946295,316.2864545829418,fqhc6_100Compliance_baseline,53 -100000,95884,41754,390.6908347586667,7159,73.51591506403571,5637,58.27875349380501,2289,23.518000917775645,77.3584022892406,79.64173269161243,63.35300198276878,65.04202060757258,77.06758980675448,79.3493561471468,63.24547876795331,64.9364534713713,0.2908124824861176,292.37654446562544,0.1075232148154725,105.56713620128733,86.18764,60.61398899798724,89887.40561511827,63215.95782193822,257.49227,160.16179775720926,268074.3606858287,166565.79591715953,276.99472,132.57627498262298,286009.9390930708,136027.5591380232,4113.96762,1859.8853534456,4256838.419340036,1905995.456432356,1398.90464,613.1380438758218,1445091.7045596763,625594.6079385728,2257.42754,952.9111857903532,2321495.2233949355,965959.2137466042,0.3799,100000,0,391762,4085.7911643235575,0,0.0,0,0.0,21776,226.5967210379208,0,0.0,25915,267.3543031162655,2033492,0,73074,0,0,0,0,0,43,0.4484585540861874,0,0.0,1,0.0104292686996787,0,0.0,0.07159,0.1884443274545933,0.319737393490711,0.02289,0.3147458078253926,0.6852541921746074,25.01983368018156,4.640285744468465,0.3304949441192123,0.1993968422919992,0.2299095263437998,0.2401986872449884,11.16227571959553,5.581585175782005,24.68715893726426,12908.022263056197,63.996374836492784,13.168250876108864,21.15780015195676,14.632838272019276,15.03748553640789,0.5506475075394713,0.7846975088967971,0.6983360171765969,0.5833333333333334,0.121861152141802,0.6830110497237569,0.9128065395095368,0.8231578947368421,0.7100977198697068,0.1505016722408027,0.5048937693960373,0.7225891677675033,0.6556195965417867,0.5439838220424671,0.1137440758293838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023995383166783,0.0047724716539502,0.0069073241979491,0.0093614515326584,0.0117808497662126,0.0137290222778575,0.0159541953624842,0.0181243306644907,0.0202464698855456,0.0223473967225181,0.0247218155947055,0.027004029074953,0.0295171875481425,0.0316936180718429,0.0338836332158535,0.0359303694220166,0.037994848506791,0.0399125261695997,0.0419033574610823,0.0438523481553923,0.058255058745035,0.0724353013697198,0.085549120841144,0.0984133317932186,0.109950070575347,0.1253829414126048,0.1388573911384759,0.1507640284556735,0.1629361597660294,0.1739596509658469,0.187356656006719,0.2003677663601947,0.2128957209949556,0.2246635839919544,0.2352423779314591,0.2462621321617105,0.2574895714827455,0.2662243463592915,0.2747469704534108,0.2826266330506532,0.2902773918681115,0.2973172273333802,0.3055446929029353,0.3120198770885347,0.3186293001691471,0.3251830721545092,0.3316524924111286,0.3379943863230416,0.3429889538661468,0.347376925420182,0.3478889414307911,0.348891804184216,0.3494416961130742,0.3507703020280268,0.3519098776484631,0.3518196506886205,0.351097677378301,0.352754814118113,0.3537713981559383,0.3544385486877958,0.3557458823529412,0.356392172444621,0.3563555124665416,0.3586543434752299,0.3604383906321825,0.3620351226150907,0.3623823015941158,0.3643418188700671,0.3669718309859155,0.3676324074443072,0.3696667277055484,0.3708570516571793,0.3720782922657883,0.3744009893337455,0.3792081101759755,0.3832588476869187,0.3865165024245268,0.3864615384615384,0.3832318760376314,0.3857965451055662,0.0,2.033911467640336,64.17704947762292,215.5045568732456,315.1737794215733,fqhc6_100Compliance_baseline,54 -100000,95716,42242,397.5824313594384,7095,72.70466797609596,5553,57.26315349575829,2275,23.2458523130929,77.38965647392791,79.75406082869972,63.34469261111818,65.09298302584556,77.11602863937034,79.48639507872825,63.24543747865494,64.99945788755878,0.2736278345575726,267.66574997147075,0.0992551324632415,93.525138286779,85.7769,60.34069370021495,89615.82180617661,63041.1568601017,257.58408,160.70982445442328,268334.18655188265,167124.0904910603,280.34729,134.5113409704508,288143.52877261897,136836.0713795371,4069.79356,1809.3549274088025,4199723.201972501,1838510.6778756056,1379.78609,597.2364469936795,1418557.3362865143,601239.5915912356,2242.37068,917.4606027103908,2294413.4522963767,917396.4185901012,0.38414,100000,0,389895,4073.4464457353006,0,0.0,0,0.0,21821,227.15115550169253,0,0.0,26016,267.0608884616992,2037299,0,73072,0,0,0,0,0,58,0.6059592962514104,0,0.0,1,0.0104475740733001,0,0.0,0.07095,0.1846982870828344,0.3206483439041578,0.02275,0.318254817987152,0.681745182012848,25.34001462095404,4.658519093244072,0.3153250495227804,0.2015126958400864,0.2456329911759409,0.2375292634611921,11.35321097477406,5.736267201003018,23.917157739002853,13074.462553398003,62.39172977238099,13.0022091385665,20.059841335191077,15.06249763990188,14.267181658721524,0.5479920763551234,0.7640750670241286,0.6956025128498001,0.5755131964809385,0.1402577710386656,0.7318181818181818,0.9230769230769232,0.8893709327548807,0.723404255319149,0.1673640167364016,0.4906685565792582,0.6952624839948783,0.6263565891472869,0.5369685767097967,0.1342592592592592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022182157037517,0.004632868019018,0.007124082850445,0.0096206595282117,0.0117285645986552,0.0140320149892061,0.0162212864876989,0.0185379896081093,0.0205965328317932,0.0227858985382631,0.0248265116803509,0.0270209227357657,0.0288977527396837,0.030870935189571,0.0329541117861231,0.0350041339396444,0.0369772089507419,0.0389774766830239,0.0407741157639819,0.042732103782432,0.0574674239893083,0.0721694805262772,0.0856249540976382,0.0981778394983798,0.1108192501635124,0.126573308230914,0.1408201156437324,0.1539705851052508,0.16576963328421,0.1769241493206361,0.1906064260487552,0.2041001785038134,0.215425098133026,0.2270724212966506,0.2374429223744292,0.2488567030971442,0.2595793558747435,0.2696871628910464,0.2789374029184004,0.2872571677001579,0.2952222376393321,0.3031220413077273,0.3101088536680495,0.3173651261057444,0.3243564692889304,0.3310546995282612,0.3364145798413929,0.3422401404062114,0.3485817071276981,0.3538512265892904,0.3552805058522804,0.3557142071090569,0.3564097148891235,0.3571665920221911,0.3576813486881158,0.3575943071390313,0.3570174467344711,0.3577622240070811,0.3581598937221105,0.3589268536003135,0.3597705659249294,0.3609675255494614,0.3619957759143472,0.3633866356976952,0.3639136386560676,0.3639375048905814,0.3644526795895096,0.366566787572938,0.3683096355361112,0.3695773971506323,0.3714864056677554,0.3734453238572121,0.3762388818297331,0.3767112868877396,0.3818164811523711,0.3823738450604122,0.380085653104925,0.3804435483870967,0.3791313848675225,0.3757159221076747,0.0,2.732074487682263,57.59678737057774,216.1218933222867,317.3846371846682,fqhc6_100Compliance_baseline,55 -100000,95749,41873,393.863121285862,7156,73.48379617541698,5579,57.55673688498052,2291,23.49893993670952,77.34687979821054,79.70688174048465,63.33382307926016,65.08149736053247,77.06775092867358,79.42891157700517,63.23192337621705,64.98273983771767,0.2791288695369616,277.97016347948045,0.1018997030431094,98.75752281479322,85.5261,60.156279022161605,89322.77099499734,62826.64411083498,255.22191,158.4076806104916,265859.528559045,164748.09840318374,276.85779,132.57253729586628,284531.34758587554,134824.23541180842,4083.06661,1821.3277994294624,4217325.079113098,1855307.5419075715,1365.09279,592.8743253149844,1404556.0266947958,598223.7380060215,2259.82566,932.6160840089242,2320580.016501478,940376.4622469218,0.38113,100000,0,388755,4060.125954318061,0,0.0,0,0.0,21614,225.0154048606252,0,0.0,25797,264.82783110006375,2040541,0,73286,0,0,0,0,0,39,0.407314958902965,0,0.0,1,0.0104439733052042,0,0.0,0.07156,0.1877574580851677,0.3201509223029625,0.02291,0.3234354194407456,0.6765645805592543,25.3743946544168,4.626374554592681,0.3416382864312601,0.1939415665889944,0.2272808747087291,0.2371392722710163,11.140687092507084,5.453928270182367,24.42615486602099,12934.157870394796,62.9140481054069,12.645636508045415,21.501866538954765,14.227965259795498,14.538579798611227,0.5466929557268327,0.7513863216266173,0.6909758656873033,0.5922712933753943,0.127739984882842,0.7139737991266376,0.9309309309309308,0.832271762208068,0.7442622950819672,0.1962264150943396,0.4920332936979786,0.671562082777036,0.6445993031358885,0.5441329179646937,0.110586011342155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0046951689449559,0.006994923857868,0.0091872719696738,0.0115772767966143,0.0137064418239954,0.0158731776939545,0.0182115149040424,0.0204452986035861,0.0224024245402793,0.0245035217404677,0.0265624839567525,0.0286604553587955,0.0308527515091579,0.0327677668379879,0.0348470595532216,0.0367305939855852,0.0384874734166709,0.0406968887410472,0.0426528933365267,0.0570319186689768,0.070986233733629,0.0845600570374098,0.097481764866626,0.1092608791880526,0.1247675205004649,0.1383129822776223,0.1512789980650237,0.1634718977673952,0.1748048025533646,0.1886757951575256,0.202122371350148,0.2140374128229082,0.2250346702774714,0.2359034635791416,0.2464262004868333,0.2565949381201918,0.2668600272053781,0.2764424168141994,0.2846653455366041,0.2936166273202796,0.3020395745328169,0.3088550359243872,0.3152839894006067,0.3212294912743038,0.3277846862264685,0.3328492739108663,0.337740675226836,0.3439916080655814,0.3493759729808174,0.3500424236710616,0.3507430822417806,0.3518343645614579,0.3520237062734894,0.3527339220408527,0.3516911471589341,0.3511473382070759,0.3520310751201527,0.3536856888401726,0.355288349705656,0.3561376148512805,0.356274179148894,0.357205956587582,0.3579439462387341,0.3588571152078192,0.3603563357334314,0.3618506073920909,0.364436395984242,0.3645958773110434,0.3652588938354791,0.3669416155937514,0.3708431667024244,0.3722781102763275,0.3770039119429316,0.3778510838831291,0.3783460803059273,0.382939267501159,0.3809622135040264,0.3824858757062147,0.3764517420905086,0.0,2.754229345235488,60.2128809881859,213.8089875649739,316.3317651839655,fqhc6_100Compliance_baseline,56 -100000,95748,42148,397.14667669298575,7224,74.19476124827672,5613,57.97510130759911,2253,23.081422066257257,77.36211040614715,79.72367483425936,63.32787542470121,65.07542805763687,77.08599126499861,79.45025488287266,63.22716553118024,64.97874736765073,0.2761191411485413,273.4199513866997,0.1007098935209711,96.68068998614388,84.59484,59.52262184463672,88351.31804319673,62165.68684947647,257.59675,160.08381115745465,268406.66123574384,166563.3445685076,280.74302,133.99099230392696,289721.7487571542,137141.29596336838,4067.58928,1821.8629181921697,4203558.4555290975,1858103.3423070668,1373.20347,594.0828069482262,1415609.809082174,601989.0526005193,2226.07274,922.6085741961756,2283468.145548732,928076.2093996792,0.38264,100000,0,384522,4015.9690019634872,0,0.0,0,0.0,21701,225.96816643689684,0,0.0,26145,269.509545891298,2041583,0,73312,0,0,0,0,0,52,0.5430922839119354,0,0.0,0,0.0,0,0.0,0.07224,0.1887936441563872,0.3118770764119601,0.02253,0.3206399576887478,0.6793600423112521,25.20828246890945,4.55818211050139,0.3340459647247461,0.1997149474434348,0.2303580972741849,0.235880990557634,11.173043409438163,5.58472938813229,23.963290717845176,12996.802860924156,63.32602558701804,13.15859276719578,21.15295225733263,14.50761531459212,14.506865247897508,0.5487261713878496,0.7582515611061552,0.6853333333333333,0.6071152358855375,0.120845921450151,0.7018181818181818,0.904899135446686,0.8491379310344828,0.7389830508474576,0.1449814126394052,0.499056158565361,0.6925064599483204,0.631467044649185,0.5681362725450901,0.114691943127962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024214056310345,0.0049283063256738,0.007197238858999,0.0094394261154068,0.0114236305376125,0.0137796879455737,0.0158974568147982,0.0181838601649922,0.020296315988589,0.0226509379864012,0.0245713348100746,0.0266966606062473,0.0287651361611506,0.0306262301501427,0.0323249837446202,0.0345105661469749,0.0362324093154259,0.0380976095617529,0.0401230718057461,0.0422586558893379,0.056953172300048,0.0703674255105457,0.0843602193952995,0.0972328856448712,0.1102567348058139,0.1254680063458487,0.1384453803800087,0.1515761234071093,0.1645493883220257,0.1755610598213615,0.1895233377129687,0.2027313652497619,0.2146897572012879,0.2253396337861783,0.2364224636006471,0.2478923170664155,0.2589300668847772,0.269060263738242,0.2780425261533574,0.2870167802531355,0.2946325197980827,0.3023903403573225,0.3096447301440731,0.3168753898565328,0.3236133892230119,0.3297815926104061,0.3358346382712183,0.34097074518894,0.3460686097899197,0.3517193112190999,0.3521645313553607,0.3529752305338461,0.353570673246387,0.3535445601851852,0.3538466114424235,0.353564473341205,0.3523022769074649,0.3532447892695114,0.3543464515798287,0.3558701706777119,0.3579126914209668,0.3589596745527074,0.3600460926042321,0.3608388165256703,0.3632356129405246,0.3640256959314775,0.3661055634807418,0.3685618097725199,0.3702650517816395,0.373352390026997,0.3737883959044368,0.3739867549668874,0.3733308138070043,0.3745258686087088,0.3757019842755522,0.3741690408357075,0.3729383017715333,0.3760786674693959,0.3883733624454148,0.3873348873348873,0.0,2.441608048061549,60.56360994990497,212.7293956088886,323.6761147444571,fqhc6_100Compliance_baseline,57 -100000,95759,41551,389.7492663874936,7145,73.35080775697324,5510,56.94503910859554,2196,22.53574076588101,77.32840490063373,79.68911843944852,63.31625382636724,65.06469779172649,77.06061896603121,79.42124648218642,63.21856930377695,64.9695715178211,0.2677859346025144,267.871957262102,0.097684522590292,95.12627390539308,86.88592,61.02696511833263,90733.94667864118,63729.74354194659,257.70631,160.8054326531032,268551.0395889681,167358.5904751545,275.65751,132.2601851926877,284147.34907423845,135186.3945162221,3984.16762,1776.607793818624,4122317.8291335534,1816989.007632312,1336.22775,578.9007597696227,1379270.951033323,588403.2621159608,2158.41404,890.0517683797217,2218287.6596455686,899430.0219871134,0.3781,100000,0,394936,4124.270303574599,0,0.0,0,0.0,21858,227.65484184254225,0,0.0,25691,264.53910337409536,2029414,0,72887,0,0,0,0,0,49,0.5117012500130536,0,0.0,0,0.0,0,0.0,0.07145,0.1889711716477122,0.3073477956613016,0.02196,0.313031914893617,0.686968085106383,25.394357492816354,4.567304479719602,0.3288566243194192,0.2056261343012704,0.2352087114337568,0.2303085299455535,11.282453058795086,5.7287482577838,23.147082178844016,12891.335877156407,61.72062810823503,13.143223363107026,20.402734865491787,14.472728075203031,13.701941804433192,0.5482758620689655,0.766107678729038,0.6909492273730684,0.5879629629629629,0.1095350669818755,0.7198177676537585,0.9171597633136096,0.8390022675736961,0.7542087542087542,0.1825726141078838,0.4943954209396613,0.7018867924528301,0.6433260393873085,0.5385385385385385,0.0924124513618677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786933919722,0.0045639870991298,0.006883807821955,0.0092888066830626,0.0116884702244104,0.0138323011734028,0.0160303475281448,0.0182341650671785,0.0203234578502934,0.0224988228550371,0.0247450156322074,0.0268497032671417,0.0287953269298011,0.0308180376161341,0.0328981992673236,0.0349685768626478,0.03706809100884,0.0392122293205011,0.0414315553200112,0.0433677720379936,0.0576065967329471,0.0717886501976697,0.0850773812020299,0.097584561374004,0.1093491523280685,0.1242192041431062,0.13783998727533,0.1502612730542873,0.1629213483146067,0.1745102454402161,0.1879543765549775,0.2005214813532549,0.2122389033942558,0.2240023621788913,0.2347690174021199,0.2458575162819547,0.2559325817613573,0.2652813112096719,0.2739433580886193,0.2829241455195653,0.2911679592545433,0.2983326507927221,0.3058036243041573,0.3123102219128431,0.3190087066491561,0.3257104795737122,0.3324426714837674,0.3383093456395089,0.3434855956397612,0.3487148992401718,0.3490847283862351,0.3499545316762655,0.3502272278205888,0.3510722910731587,0.352097376605211,0.3518711816535167,0.3522700223749147,0.3533413497175048,0.3533917036478591,0.3542353447040275,0.3545551862076737,0.355314258540065,0.3561287616650938,0.3561025963243049,0.3564688563361247,0.3572792674950948,0.3582281740921967,0.3605487228003784,0.3641894981183836,0.3651179470832005,0.3703416149068323,0.3712301902793237,0.3738857501569366,0.3780950934224518,0.3786837397608511,0.3832958712883,0.3797061524334251,0.381587041213861,0.3776223776223776,0.3856803797468354,0.0,2.3145507586973517,57.77175392836428,207.48753401848649,321.1775348360141,fqhc6_100Compliance_baseline,58 -100000,95739,41665,391.6585717419233,7129,73.33479564231922,5581,57.80298519934405,2270,23.39694377421949,77.31464774318667,79.68021922071647,63.30648041847581,65.05582646275457,77.03160851647777,79.39339999305571,63.20292009465305,64.9529223215375,0.2830392267088939,286.8192276607573,0.1035603238227551,102.90414121706704,85.6427,60.24592115900612,89454.3498469798,62927.25133854138,256.60113,159.8438843095065,267538.32816302654,166474.76400370436,277.78007,133.47174392448147,286561.75644199335,136769.3154770219,4081.82084,1837.500733888873,4230874.742790295,1886716.107459856,1370.00312,595.602898640747,1420815.8221832272,611988.5040064651,2246.73622,935.9611363878984,2317956.026279781,954671.8886464458,0.37872,100000,0,389285,4066.1068112263542,0,0.0,0,0.0,21660,225.7387271644784,0,0.0,25937,267.34141781301247,2034446,0,73000,0,0,0,0,0,40,0.4178025673967766,0,0.0,0,0.0,0,0.0,0.07129,0.1882393324883819,0.3184177303969701,0.0227,0.3204530313124583,0.6795469686875416,25.37401424072516,4.602563418642109,0.3262856118975094,0.1974556531087618,0.2338290628919548,0.2424296721017738,11.045252958778836,5.392738801325795,24.208044950960257,12917.359661430828,62.98627460578937,12.890954180150036,20.71563430128583,14.439194254573009,14.940491869780493,0.5393298691990682,0.7667876588021778,0.6946732564524987,0.5800766283524904,0.1056910569105691,0.7014716187806588,0.9005681818181818,0.8849206349206349,0.7093425605536332,0.1170212765957446,0.4836302359171882,0.704,0.621867881548975,0.5433070866141733,0.1027077497665732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0045624600784743,0.0069124423963133,0.0091352504826745,0.01109924207742,0.0131525327030441,0.0154660735964742,0.0176635151416144,0.0197902398135465,0.0218869006183203,0.0241559267119846,0.0262652606503681,0.0282460886470473,0.0302833590932509,0.0324115649418346,0.0343840133979799,0.0366577265996334,0.0386842378333506,0.0406459260491619,0.0427761803558778,0.0577063626302491,0.0717156493343381,0.0850581706408736,0.0978526058974466,0.1103741353129745,0.126368569705817,0.1397034631345453,0.1522630239664406,0.1643222096329392,0.1755282049080939,0.1888479123533471,0.2019631848665749,0.213714596949891,0.2244468553769273,0.2348115641608044,0.2458692369192502,0.256133442223142,0.2655446259362873,0.2749800887472977,0.2834984029229956,0.292255400106726,0.2999343431974863,0.306912136273591,0.3134195702566689,0.3209401917368242,0.3274989507986274,0.3336005410957188,0.3388086688568009,0.3437508094806372,0.3483063036908987,0.3493216205656081,0.3499277207957596,0.3506233711347468,0.3513794898490369,0.3524674358020097,0.352613486387772,0.3521922722798997,0.3530942265257056,0.3543502863609863,0.3553852215337225,0.3556508169289488,0.3562138155285907,0.3564817729648051,0.3577350542260464,0.3590658215034585,0.3589267986833168,0.3603139141891505,0.3625922887612797,0.3635339669130588,0.3670855774985039,0.3719277329420396,0.3732676975761143,0.3733086545825887,0.3758788534342888,0.3776504297994269,0.377496991576414,0.3806703039750584,0.3829742731646099,0.3782485875706214,0.3760921366163622,0.0,1.9107775021564517,63.48538684256777,203.82149702438804,320.87546837446047,fqhc6_100Compliance_baseline,59 -100000,95814,41800,392.0512659945311,7174,73.68443025027658,5604,57.90385538647797,2243,23.034212119314507,77.3504688262772,79.68169675036378,63.33176974345843,65.05955581026693,77.07146529318364,79.40367854686717,63.22861685627176,64.95961302757564,0.2790035330935581,278.01820349661455,0.1031528871866669,99.94278269128642,85.88162,60.41858839895507,89633.68610015238,63058.204854149786,257.5568,160.41781898126146,268199.52199052327,166817.48080826676,282.10844,135.17926446196694,291032.4169745548,138523.01482438494,4044.60095,1812.675726980812,4182299.6221846496,1852912.054659088,1357.27441,590.4552283484511,1401156.9081762582,600864.8009202778,2211.22514,925.84653249787,2273099.129563529,936023.8844947738,0.37928,100000,0,390371,4074.258459097836,0,0.0,0,0.0,21715,226.02124950424783,0,0.0,26213,270.117101884902,2033916,0,73094,0,0,0,0,0,60,0.6262132882459767,0,0.0,0,0.0,0,0.0,0.07174,0.1891478591014554,0.3126568162810147,0.02243,0.3249406802003691,0.6750593197996309,25.34264946012453,4.5752339396563775,0.3361884368308351,0.2025339043540328,0.2310849393290506,0.2301927194860813,11.06208074779044,5.438763980733938,23.9258135310588,12888.181456787708,63.01706488581317,13.277903760347131,21.255404231821885,14.34008118293792,14.143675710706232,0.5433618843683083,0.7682819383259912,0.6863057324840764,0.5768339768339769,0.1031007751937984,0.6924177396280401,0.925414364640884,0.8100208768267223,0.7323943661971831,0.1355311355311355,0.4938183547313362,0.6946959896507116,0.6441281138790036,0.533135509396637,0.0943952802359882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312660818121,0.0048365999817486,0.0071754795493758,0.0095099722625809,0.0118091014504546,0.0140860850257684,0.0162561827545765,0.0184625439098112,0.0204490613880822,0.0225723235673484,0.0247531351578601,0.0268111105406376,0.029041248033237,0.031101956745623,0.0331569774037519,0.0355847617866774,0.0376071384207693,0.0395390567466368,0.0415908878334701,0.0435371033563754,0.0587940746922595,0.0727601601789989,0.0862990442655935,0.0987118601328065,0.11055504045853,0.1261361234411329,0.1394078849702033,0.1517504760486367,0.1630367475925095,0.1737965622186977,0.1871011482625399,0.1997686411451182,0.2121742153465077,0.2226254632109399,0.2331686599843762,0.2441597588545591,0.2551994373555711,0.2647763982845758,0.2737680155368033,0.2823312405480959,0.2910179086162787,0.2989903008037814,0.3065904274839885,0.3125104893428277,0.3191936876147402,0.3249821045096636,0.3305667001003009,0.3365555059618695,0.3419229272090307,0.3476029888249686,0.3482300825196169,0.349121983544094,0.350059348858241,0.3501949473134956,0.350937830549886,0.351347615756738,0.3507395110172049,0.3508922245472969,0.3524191337719298,0.3537915838125436,0.3544389364578639,0.3558654017547681,0.3561781941148054,0.3570787323817219,0.3579316177358946,0.3582984293193717,0.3590139115034136,0.3622412000126052,0.3637991573033708,0.3662353175393191,0.3681859617137648,0.3697385204081632,0.3711619696109955,0.373201370384469,0.3769485120453472,0.3806650100579813,0.3849801162434995,0.3880355699272433,0.3956403269754768,0.4027617951668584,0.0,2.2262644175179616,61.6874907975089,205.1962121651729,325.8921224624545,fqhc6_100Compliance_baseline,60 -100000,95711,41692,392.4836225721182,7166,73.56521194011138,5610,57.94527274816897,2302,23.64409524506065,77.30949638025908,79.66885899460196,63.31695901961641,65.05917627263109,77.02642550511516,79.38698089499418,63.21264188221807,64.95854226499927,0.2830708751439204,281.87809960778054,0.1043171373983398,100.63400763182528,85.41896,60.08550671379415,89246.75324675324,62778.05760444896,256.31597,159.2310810642254,267089.74934960454,165657.85776102808,279.50747,133.27430569626466,287894.24413076864,136128.55945985197,4049.06886,1820.5565158582187,4184237.24545768,1856721.154847763,1343.8527,584.2483674267944,1387995.9356813745,594511.801854329,2262.62504,941.8304235590138,2325905.841543814,950466.8083608806,0.37853,100000,0,388268,4056.670602125148,0,0.0,0,0.0,21617,225.16743112076983,0,0.0,26015,267.65993459476965,2037081,0,73190,0,0,0,0,0,57,0.5850947122065384,0,0.0,0,0.0,0,0.0,0.07166,0.1893112831215491,0.3212391850404689,0.02302,0.3131940772078265,0.6868059227921735,25.30554305312681,4.520182038589244,0.3219251336898395,0.203030303030303,0.2429590017825312,0.2320855614973262,11.14136063319927,5.667855638018913,24.588924337736803,12839.893944266852,63.39318973275884,13.098579913712644,20.509005774297123,15.3905999427771,14.395004101971969,0.5459893048128343,0.742756804214223,0.6926910299003323,0.5920763022743947,0.1221198156682027,0.6860294117647059,0.9041533546325878,0.8517699115044248,0.7089783281733746,0.1323529411764706,0.5011764705882353,0.6815980629539952,0.6395864106351551,0.5557692307692308,0.1194174757281553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019140985001164,0.0044197550888005,0.0063813813813813,0.0083895344113106,0.0102882122706247,0.0126823210886846,0.0147785761606278,0.0168526136352036,0.0192858018887208,0.0214305451791507,0.0239137342531186,0.0260796352958087,0.0282570694087403,0.0303801118400049,0.03234190008663,0.0343744511143025,0.0363371040021527,0.0385704359008929,0.0403064035005664,0.0422526407900493,0.0570494679351288,0.0710375650244397,0.0847091401120224,0.0968525548673403,0.1088953335090957,0.1236898604985669,0.1370075231051643,0.1492718446601941,0.1612682676694299,0.1728146178261988,0.1862469431067731,0.1997899682787142,0.2121472646345046,0.2234273081469159,0.2337311986610583,0.2449307657343045,0.2561748047856831,0.2659358734593632,0.2749108096439203,0.2828676580181378,0.2907899155771213,0.2982359620269463,0.3052616613153561,0.3118998463606683,0.3191409147846814,0.3249027957785595,0.3307982408880758,0.3366813674254977,0.3423910927706622,0.3473444592967085,0.3480762218590895,0.3488115438204417,0.3493265874305742,0.3502984469170144,0.3512627090849459,0.3510908168442415,0.3502378944353388,0.3509486883352582,0.3518079329071286,0.3532827556450453,0.3539166855331673,0.3565362994857075,0.3575637262148635,0.3593380081621609,0.3605219039288578,0.3622175512348923,0.362630395942597,0.3632385120350109,0.3638936049801924,0.3664739884393063,0.3660624370594159,0.3659735955957026,0.3686008985635639,0.3729696598222494,0.3733055265901981,0.374850870913863,0.3754641089108911,0.3803578859758635,0.3867634738899748,0.3901205756514975,0.0,2.560732081569894,59.774142950841096,216.62974827638547,322.09162549562524,fqhc6_100Compliance_baseline,61 -100000,95729,41980,395.0213623875733,7101,72.84104085491335,5513,56.9419924996605,2242,22.960649333012984,77.40440741590693,79.76286923294163,63.3594678928421,65.09969824218452,77.12913343889909,79.4900565244929,63.258464890962,65.0030730960826,0.275273977007842,272.8127084487255,0.1010030018800947,96.62514610191408,85.88646,60.43091819032894,89718.32986869183,63127.07558872331,256.96124,159.92047133130248,267776.1597843914,166406.0412194875,279.29266,133.800337664277,288368.4045587022,137041.1905531498,4031.46381,1801.756757195218,4161124.361478758,1831952.484396688,1365.46265,593.2589849820254,1405942.932653637,599302.3653465442,2221.15846,919.6419347761944,2276166.887776954,921348.5175627487,0.38018,100000,0,390393,4078.105903122356,0,0.0,0,0.0,21755,226.56666213999935,0,0.0,25969,267.9229909431834,2038610,0,73031,0,0,0,0,0,49,0.5014154540421398,0,0.0,0,0.0,0,0.0,0.07101,0.1867799463412068,0.3157301788480495,0.02242,0.313211082853701,0.686788917146299,25.285230453421843,4.605855844334462,0.3203337565753673,0.2033375657536731,0.2343551605296571,0.2419735171413023,11.222382097048929,5.602077188309927,23.66225510894297,12895.98442368932,61.72954677340274,13.053285008954107,19.898099206026533,14.248078191848895,14.5300843665732,0.5470705604933793,0.7814451382694023,0.6947904869762175,0.5743034055727554,0.1281859070464767,0.7122676579925651,0.925925925925926,0.860730593607306,0.7206896551724138,0.1766917293233082,0.4937619961612284,0.7155844155844155,0.6400602409638554,0.5319361277445109,0.1161048689138576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470460781435,0.00449961996453,0.0066853328463895,0.0089168740161478,0.0111231990889957,0.0132227198697068,0.0153579617834394,0.0176627246104711,0.0199852869053457,0.0222460987464824,0.0242182615736233,0.0263260530421216,0.0281895754086563,0.0303951054713249,0.0326468281811052,0.0346606297421902,0.0368149620976761,0.0387144961513724,0.0406460128246432,0.0426540284360189,0.0567580266249021,0.0705905746669317,0.0833648036253776,0.0960667010125011,0.1087194839144917,0.1245373601505826,0.1370585302199259,0.1497939933353916,0.1620354048481352,0.1734099707248024,0.1866929447621509,0.1999653720877384,0.2124768845860981,0.2234981462646412,0.2352662852112676,0.2465556195454746,0.2567012610199754,0.2659911834825244,0.2758010548403561,0.2845973327227978,0.2925199944524063,0.3006363477144024,0.308200089747526,0.3149710761581489,0.3210269955895894,0.3266849476777787,0.3324376343548468,0.3385113679664677,0.3437641371644241,0.3489909029871378,0.3500846069135935,0.350157945337179,0.3503593176480515,0.3513092404241506,0.3514731831729414,0.3508227306092488,0.3504833325422817,0.3509928345385082,0.3518799815671349,0.3525676471112855,0.3547249779644806,0.3563063509362925,0.3579684910528855,0.3603972354559485,0.3611211355707927,0.3621288486146293,0.3616887926613868,0.3633216904244941,0.3673039077874613,0.3688984365676095,0.370845507669832,0.3705621696652608,0.3725093301284078,0.3758312313689521,0.3816607041988326,0.3854821492112442,0.388605047220932,0.3862985685071575,0.3942199775533109,0.3957497995188452,0.0,2.472039999006418,58.8893611577129,203.94602170480465,320.5553513331956,fqhc6_100Compliance_baseline,62 -100000,95754,41638,391.3883493117781,7072,72.72803224930551,5472,56.624266349186456,2175,22.338492386741024,77.33232137485312,79.69712519309452,63.31916690730778,65.0706218667118,77.06899328038165,79.43454094760764,63.22295148954287,64.97735750408157,0.2633280944714755,262.5842454868774,0.0962154177649097,93.26436263023652,85.64446,60.23173553932276,89442.17473943646,62902.57904559888,254.33212,157.94295928924467,265085.21837207844,164421.89286008384,275.27945,132.0350248111781,284320.50880380976,135433.3420527451,3957.05862,1763.460166094004,4098861.259059674,1807992.5184263887,1359.25236,588.8851453363077,1407131.576748752,602622.9329823576,2144.1607,885.9058256163511,2205072.205860852,896010.9589820227,0.37871,100000,0,389293,4065.553397247112,0,0.0,0,0.0,21530,224.28305867117825,0,0.0,25630,264.54247342147585,2038873,0,73174,0,0,0,0,0,50,0.5117279695887378,0,0.0,0,0.0,0,0.0,0.07072,0.1867391935781996,0.3075509049773756,0.02175,0.3216453135536075,0.6783546864463924,25.349895765255237,4.592823880382016,0.3245614035087719,0.2081505847953216,0.2335526315789473,0.233735380116959,11.134240490216914,5.489236278304089,23.035915088466748,12863.142080051366,61.442672779293126,13.304564523751653,20.05836334294064,14.160234775633873,13.919510136966943,0.5484283625730995,0.7576821773485514,0.6987612612612613,0.5954616588419406,0.106333072713057,0.7148120854826824,0.9177718832891246,0.8422222222222222,0.7446043165467626,0.1507936507936507,0.4935601458080194,0.678477690288714,0.6500754147812972,0.554,0.0954235637779941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021484454173253,0.0045238312590654,0.0067419381041345,0.0090047971379786,0.0112415561162203,0.0133454223163985,0.0154095618830056,0.0176316246209762,0.0198251623127651,0.022092547092547,0.0243574892103293,0.0264049442539473,0.0285761293175251,0.03061981172884,0.0325199896827443,0.0344175374406995,0.0364169151756129,0.0384276214090819,0.0405295865982167,0.0424521423959005,0.0567897110405879,0.0706774784200889,0.0835500922973653,0.0961158310901749,0.1080827464046223,0.1238643214485917,0.1367137764196587,0.1483602456704312,0.1604562493992502,0.1714971960412176,0.1857659831121833,0.1984828645940418,0.2106591529683097,0.2223814315715785,0.2335211391597156,0.2446956945428774,0.2546030754123239,0.2649375492292112,0.274204529980482,0.2830849930709058,0.2911251779246178,0.2995542660598757,0.3067647998485404,0.3133434002061312,0.3190292842307272,0.3261110700288397,0.3320402928111118,0.3376658061070061,0.342968142968143,0.3486331732545253,0.3496109001804131,0.3502429088506902,0.3513768575251778,0.3525672512930162,0.3533809998067575,0.3531476032855216,0.3527311391119433,0.3532273706010947,0.3540018116251645,0.3546407614140546,0.3552822133197916,0.3567020537751761,0.3574854834637718,0.3588724168912848,0.3587592476185871,0.3609008773078433,0.3615074486032082,0.3639384732244587,0.3660550458715596,0.3677065395859196,0.3694396037787765,0.3726564598442116,0.37426714249299,0.376797109248866,0.3795799189978336,0.3815540859707133,0.3855861334955147,0.3886883273164861,0.3932951757972199,0.3951089033244173,0.0,1.956007180773279,60.0964276138539,201.6034387053481,316.8382136561753,fqhc6_100Compliance_baseline,63 -100000,95735,41959,394.02517365644746,7161,73.6407792343448,5577,57.77406382200867,2281,23.460594348984174,77.41699606751023,79.77009285605855,63.36600846061516,65.10066155617989,77.14506626354458,79.49779713428849,63.26684306379079,65.00370442738668,0.2719298039656479,272.2957217700639,0.0991653968243753,96.95712879320696,85.99954,60.48134706446511,89830.5948712592,63175.60329098448,257.0933,159.90218606426376,268013.756724291,166494.8541995446,279.97806,134.03299280521054,289312.79051548545,137520.2144777009,4039.23248,1803.5570577979288,4182530.7149945167,1847813.473396208,1359.46673,590.3093043167138,1403357.163002037,600176.2351904644,2244.6275,924.2901961463448,2309358.4373531104,935362.5340109856,0.38167,100000,0,390907,4083.208857784509,0,0.0,0,0.0,21822,227.39854807541653,0,0.0,26065,269.22233248028414,2036548,0,73067,0,0,0,0,0,51,0.5327205306314305,0,0.0,0,0.0,0,0.0,0.07161,0.1876228155212618,0.3185309314341572,0.02281,0.3133756278086175,0.6866243721913825,25.446114630564125,4.577201796637224,0.3363815671507979,0.197776582391967,0.2305899228976152,0.2352519275596198,11.189073081389344,5.616408736109952,24.024678677001788,12961.68864567836,62.734251299651056,12.99613968637516,21.13780051487078,14.279287498799548,14.321023599605564,0.5492200107584723,0.7932910244786945,0.6871002132196162,0.583203732503888,0.1135670731707317,0.7139722019019751,0.9243243243243244,0.8625277161862528,0.734982332155477,0.1406844106463878,0.4957244655581947,0.7271487039563438,0.631578947368421,0.5403788634097707,0.1067683508102955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026822405311848,0.00470068585438,0.006897111327491,0.0089866875171356,0.0110724743777452,0.013233168427696,0.0155644799608594,0.0179016125739946,0.0201831299691376,0.0225889285604673,0.0248186252408082,0.0268170528951743,0.0290096424679783,0.0309468394059854,0.0328783799118979,0.0349591815645344,0.0372513899386045,0.0390607173232103,0.0411881476246401,0.0432957256409455,0.058117195004803,0.072060100656043,0.0852164243301651,0.097827230086448,0.1099497975025312,0.1254984082664382,0.1383246173266434,0.1509861733493704,0.1625929407742928,0.17358154697436,0.1877961064691188,0.2004262546925881,0.2130917706386123,0.2243460215171208,0.235612735942341,0.2474554144355445,0.2582230792380485,0.2675852148211416,0.276824180309283,0.285661975054354,0.293868066313672,0.3013893920095353,0.308267032356453,0.3156432941063796,0.3219664332609249,0.3280218697665255,0.3335291911488936,0.3394266827687027,0.3452628855978788,0.3501667963238881,0.3511000470968176,0.3514479799785484,0.3524481631733153,0.3532169157539895,0.3539404397108261,0.3541366520552984,0.3539510744010886,0.3540795407954079,0.3557690666757684,0.356362404862485,0.3574235562708185,0.3579745036902553,0.3594738385488668,0.3609710384220626,0.361619269693983,0.3631384005425426,0.3634860921112631,0.3659976758064009,0.3678358470712031,0.3703689012296707,0.3706700609146286,0.3726935312831389,0.3728994231251568,0.3740178503318331,0.3725673652694611,0.3728095966129601,0.3693501750114137,0.3724939855653568,0.3709150326797386,0.3723564954682779,0.0,1.7888291816350268,60.81782244533046,214.98887296955317,314.0189205711424,fqhc6_100Compliance_baseline,64 -100000,95688,41938,394.5635816403311,7198,74.06362344285594,5619,58.063707047905694,2309,23.64977844661817,77.3508434030137,79.74146005598554,63.31502979323547,65.0828100792465,77.07496880852652,79.47021852711848,63.21281505071455,64.98627514933267,0.2758745944871776,271.24152886706554,0.1022147425209141,96.5349299138296,85.3468,60.0413037518469,89192.79324471198,62746.95233660114,255.75725,158.63717099060034,266630.2566675027,165133.64370725726,280.65231,133.92152006777263,289950.5476130759,137314.15408588946,4097.52658,1827.7954121997864,4235878.2396956775,1863865.8997991255,1362.88835,589.0322978860523,1405132.5558063707,596405.1590465067,2277.0866,937.1685979318491,2334772.343449544,938931.1750952352,0.38118,100000,0,387940,4054.2178747596354,0,0.0,0,0.0,21581,224.866231920408,0,0.0,26127,269.66808795251234,2038873,0,73161,0,0,0,0,0,52,0.5434328233425298,0,0.0,0,0.0,0,0.0,0.07198,0.1888346712839078,0.3207835509863851,0.02309,0.3157755426151403,0.6842244573848597,25.364964734985165,4.6061196972899126,0.3237230823990034,0.199145755472504,0.2407901761879338,0.2363409859405588,11.350902158324608,5.702168892017204,24.22831277887404,12984.327176766865,62.99364639475904,13.002999046625083,20.55381505810138,15.112168355315292,14.324663934717265,0.5484961736963873,0.77390527256479,0.7064321055525014,0.5809312638580931,0.1091867469879518,0.7152466367713004,0.9373219373219374,0.872093023255814,0.6878980891719745,0.1522633744855967,0.4963793506190142,0.69921875,0.6551475881929446,0.548604427333975,0.0995391705069124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481842033287,0.00463437141901,0.0070551929265346,0.0092893731197658,0.0117398115933182,0.0138342739552983,0.0159646635179385,0.0182711358947647,0.0203720559208844,0.0227873251264824,0.0250743513485796,0.0273412625048787,0.0293657814075003,0.0315272154050629,0.033644319682959,0.0354381176859777,0.0373697188205797,0.0391011002698775,0.0408292764116007,0.042895861565725,0.0577630149578006,0.072240837696335,0.0856060128907644,0.0981945584243419,0.1111556558985504,0.1266043785116446,0.1399832266420374,0.1522845883480668,0.1640404515522107,0.1744743874561319,0.1888596623617429,0.2020594668341382,0.2145663506851104,0.2261139873687897,0.2365934767767084,0.2471523795792065,0.257831782798557,0.2681600108115413,0.2774735263373176,0.285946925388197,0.2941898716582495,0.3007754843848839,0.3085758312096248,0.3151672987374586,0.3216383514331927,0.327784149063421,0.3336337125621096,0.3398920735121926,0.3449606380774808,0.3499372730274018,0.3514938251631343,0.352778351580252,0.3534244644870349,0.3528246790794495,0.3535062582589716,0.3535327251576562,0.3524830217353448,0.352579045867945,0.3530206391819565,0.3546439987856492,0.3555663897691687,0.3567193675889328,0.358593259367804,0.3600563216592539,0.3611785929043896,0.3621544079290558,0.3630113636363636,0.3660380910545637,0.367601683029453,0.3691797322380633,0.3708002720471548,0.3723980458793542,0.3735834802316797,0.3787867226249523,0.3796655012756307,0.3826408787010506,0.3851931330472103,0.384984984984985,0.3807838867719107,0.3792307692307692,0.0,2.5640878117931254,58.5293788045775,216.6676807124545,321.8643935490712,fqhc6_100Compliance_baseline,65 -100000,95729,42053,394.1021007218293,7120,73.25888706661513,5552,57.48519257487282,2197,22.60548005306647,77.26691653433518,79.62764370888799,63.2951211478972,65.0393861016596,76.99876719161686,79.35878527575494,63.19667439995088,64.9430238686702,0.268149342718317,268.85843313304747,0.0984467479463191,96.3622329894065,85.06036,59.88042894073629,88855.37297997472,62552.02596991121,258.60235,161.11679430871044,269629.0570255617,167794.1316724404,279.77414,133.77777233295643,289267.13952929626,137324.8876138689,3999.04477,1795.2176461457493,4140964.305487365,1838812.2681170264,1366.85063,592.9917241906008,1410916.796373095,602531.7659127336,2160.86536,899.3220111078128,2224907.8544641645,910814.450835148,0.38178,100000,0,386638,4038.880589998851,0,0.0,0,0.0,21882,228.03957003624816,0,0.0,26011,268.7273449007093,2034862,0,73068,0,0,0,0,0,48,0.5014154540421398,0,0.0,0,0.0,0,0.0,0.0712,0.1864948399601864,0.3085674157303371,0.02197,0.3280118057418835,0.6719881942581164,25.55272079829659,4.562712713820477,0.3337536023054755,0.2067723342939481,0.232528818443804,0.2269452449567723,11.14488753716619,5.614663471967554,23.473113166032377,13025.359647341527,62.731722553296194,13.411116156103496,21.057691745462183,14.343915116648288,13.918999535082234,0.5565561959654178,0.7674216027874564,0.7037236913113869,0.5879163439194423,0.1158730158730158,0.7113553113553114,0.9322493224932248,0.8539823008849557,0.7236363636363636,0.1561338289962825,0.5060902794363507,0.6893453145057766,0.6552462526766595,0.5511811023622047,0.1049445005045408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0046436646422451,0.0071640215935381,0.0090815818612163,0.0114008502328987,0.0138779998574526,0.0159743106172587,0.0182317452863894,0.0208233237582163,0.0229589747789059,0.024940288868615,0.0270317440762186,0.0292865516319437,0.0314041755502683,0.0337150520994532,0.036074588604978,0.0381281777796187,0.040419130615209,0.0425341718205914,0.0443742902093166,0.0595482975013313,0.0733708735425258,0.0866239231035604,0.09950023672997,0.1114827084168548,0.1264536883207585,0.1400121020392997,0.1528015933030151,0.1651500732455812,0.1763468329701705,0.1899295000323394,0.2027022634435981,0.214651304612972,0.2261671393996473,0.2371544115216361,0.2488401003396452,0.2590969069398162,0.2683141205503532,0.2777790401745137,0.2861729329343102,0.2942695068302848,0.302009414740392,0.3092242441474742,0.3157073779441585,0.3223224927634939,0.3292318704645308,0.334633375553354,0.339911777454805,0.3449623474422228,0.349586711174694,0.3499939129140909,0.3510217625750076,0.3513758351262597,0.3522021702547438,0.3534502051473331,0.3533266671794477,0.3537572990087668,0.3548120884018023,0.3562888652214244,0.3573107916509628,0.3584543246144285,0.3594523161304425,0.3612459376187059,0.3617868797119388,0.3632705500206045,0.3639517464322321,0.3656458669122726,0.368647032631512,0.3705422482418877,0.3730171576561994,0.3739935215178158,0.374972972972973,0.3742884553885513,0.3755969804344476,0.3795037551098013,0.3802295003585943,0.3827559661277906,0.3904374364191251,0.3904603438713255,0.3856920684292379,0.0,2.028447041096918,60.59349848631243,212.56969895022732,317.2471852893885,fqhc6_100Compliance_baseline,66 -100000,95695,41587,390.6578191128064,7135,73.37896441820368,5565,57.495166936621565,2305,23.72119755473118,77.288290147924,79.65668834562749,63.294707477804174,65.04346363756592,77.00201582593762,79.36978277776774,63.19014889313914,64.94112096519096,0.286274321986383,286.90556785974763,0.1045585846650354,102.34267237495942,85.89152,60.43652869600515,89755.49401745129,63155.36725639286,257.98907,160.91301650409395,268870.1708553216,167427.2267208965,277.69301,133.19737807420253,285547.79246564605,135645.27415755016,4020.59866,1811.9152373339748,4160562.76712472,1852538.0490421655,1318.4218,576.4076369392955,1363021.5789748682,587654.3335205569,2269.22724,944.4373889299408,2337839.908041172,957946.5087576124,0.37806,100000,0,390416,4079.795182611422,0,0.0,0,0.0,21884,228.00564292805268,0,0.0,25901,266.0222582162078,2029409,0,72900,0,0,0,0,0,52,0.5329432049741366,0,0.0,0,0.0,0,0.0,0.07135,0.1887266571443686,0.3230553608969866,0.02305,0.3125585127725023,0.6874414872274976,25.205520986473715,4.489022851753495,0.3232704402515723,0.2098831985624438,0.2323450134770889,0.2345013477088948,10.97454108763191,5.5003164435766045,24.627456382066768,12845.792828467054,62.911193687786806,13.717902909880197,20.306324086080338,14.522804724736169,14.364161967090103,0.5487870619946091,0.7517123287671232,0.708171206225681,0.588553750966744,0.1080459770114942,0.6955287437899219,0.8842105263157894,0.8623853211009175,0.7443365695792881,0.1338028169014084,0.4990375360923965,0.6878172588832487,0.6588407923697726,0.5396341463414634,0.1008814887365328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166914795572,0.0044302065064222,0.0066160652676868,0.0090513825961518,0.0112582377349279,0.0132879878626195,0.0155482147590791,0.0178022763231766,0.0200145151233274,0.0220436985109757,0.0242995060159468,0.0264108722875736,0.0283975242129505,0.0305349014438425,0.032284016833072,0.0343106352634788,0.0365488750608285,0.0386974253603561,0.0408029538717562,0.04302195912497,0.0575659784232018,0.071977469743289,0.0845349789056104,0.0973774494327629,0.1094162356170167,0.1247591216144675,0.1379588629437312,0.1503942041338163,0.1618460025021118,0.1732346877416029,0.1862228117282952,0.1994691511835762,0.2110255600448689,0.222049485439019,0.2324866722474335,0.2440832177531206,0.2546349099854635,0.2639781672192525,0.2733406916013336,0.2824126721573222,0.2903783457669594,0.2981898382233902,0.3054632223752315,0.3119274877984276,0.3189656222961528,0.3254853468529739,0.3310917820960808,0.3368882190661081,0.3422797846609971,0.3476469341247549,0.3485560688332388,0.349797593224554,0.3501054747780782,0.3505198048553839,0.3508837459473188,0.350715494691491,0.3506208563206512,0.3515264407226691,0.3523865139206155,0.3539201781001454,0.3551798235693282,0.3554844988182956,0.356027232679215,0.3561828258576974,0.3581791016001542,0.3597191773671573,0.3594625500285878,0.3614499715567916,0.3638836872416351,0.3652146085843433,0.3693079791887287,0.3683729924262771,0.3712347009956243,0.3704528012279355,0.3721673718852844,0.3764831514000949,0.3772775991425509,0.3779495524816924,0.3791780821917808,0.3853491033956505,0.0,2.5141456572661984,62.02530268825605,209.62875412147915,315.2437164271399,fqhc6_100Compliance_baseline,67 -100000,95822,41959,393.9700695038717,7080,72.55118866231136,5477,56.51103086973764,2314,23.741938177036587,77.36488025655099,79.6821212631181,63.35773544642036,65.07227868473133,77.07808331252453,79.39437221581635,63.25231532375249,64.9692229391319,0.286796944026463,287.7490473017588,0.1054201226678657,103.05574559943408,85.88008,60.42956499399656,89624.59560434974,63064.39543528268,254.87844,159.28169378612037,265311.7133852351,165546.7886144313,279.7298,134.6037568875856,288040.0116883388,137453.6859020359,3989.88432,1807.1890608933409,4117230.291582309,1839365.8563725883,1375.57801,601.4278709772315,1419099.2673916218,611194.8831972105,2287.14052,954.9771992492598,2348109.5990482355,962919.1716360726,0.38062,100000,0,390364,4073.845254743169,0,0.0,0,0.0,21527,223.95692012272755,0,0.0,25985,267.3707499321659,2038563,0,73175,0,0,0,0,0,48,0.4904927887124042,0,0.0,1,0.0104360167811149,0,0.0,0.0708,0.1860122957280227,0.3268361581920904,0.02314,0.3204628010224674,0.6795371989775326,25.331723362359764,4.532290941214556,0.3335767756070841,0.1959101698009859,0.2200109549023187,0.2505020996896111,11.101200474543653,5.621330340478852,24.709829207674343,12937.126680872036,62.13904989488872,12.498306406565687,20.77318410128057,13.573437969403413,15.294121417639046,0.534964396567464,0.7595526561043803,0.6912972085385879,0.5825726141078839,0.1093294460641399,0.6942628903413217,0.9410029498525072,0.865296803652968,0.7703180212014135,0.1261829652996845,0.4814634146341463,0.6757493188010899,0.6364290856731462,0.5249457700650759,0.1042654028436018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026435733819507,0.0048866539600145,0.0068999107070379,0.00920245398773,0.0113075929673279,0.0136541359508003,0.0159636282085261,0.0180492884415133,0.0201893195943735,0.0223757612979169,0.0246279670397245,0.0267233151688679,0.028869772556758,0.0309280472617614,0.0330265016028779,0.0351402409439552,0.0371013953103505,0.039268507485883,0.0411288899041606,0.0430114239340782,0.0573148090201723,0.0703355283788021,0.0837872946697955,0.0972748752953531,0.1100801482901347,0.1255966209081309,0.138681414147835,0.1510657524052517,0.1627691125952162,0.174311238699173,0.1876728098204391,0.2005145834684655,0.2131480596236582,0.2240193080552158,0.2348842831710587,0.2464059804485336,0.2571463583093821,0.2664802461649035,0.2761237132082309,0.2845593532378132,0.2931303353394402,0.3002032187989068,0.30729031190144,0.3146946884649448,0.3212676278742089,0.3275921545436625,0.3337252939704778,0.3390095635364737,0.3445133396331439,0.3495167394084837,0.3508946723573842,0.3514194454387752,0.3519425353861786,0.3515396425364271,0.3531700481507431,0.353158080722725,0.3527485454487648,0.3533942472621718,0.3537417303892087,0.3548190065570825,0.3554153125236188,0.3551133531393934,0.3561319758354104,0.356991477657032,0.3599458728010825,0.362272858379002,0.3627049766763014,0.3665095384226011,0.3670594896839721,0.3677598041183318,0.3714022140221402,0.3745148771021992,0.376555883485179,0.3812776527206396,0.3839961667465261,0.3893294881038212,0.3957750854302578,0.3943400123941334,0.3943032672437866,0.3913214990138067,0.0,2.48098568319787,60.540084988094286,210.77324869456407,309.37640690591235,fqhc6_100Compliance_baseline,68 -100000,95633,42228,396.4531071910324,7102,72.9664446373114,5516,57.05143621971496,2276,23.381050474208696,77.2563444549925,79.66670971056845,63.27473565930678,65.05568945121541,76.96766927075063,79.37729975657331,63.16857180863729,64.95195222493294,0.2886751842418675,289.4099539951469,0.106163850669489,103.73722628247606,85.28916,60.00995396154717,89183.5872554453,62750.05405783463,254.81224,159.0923324828435,265792.6343417021,165702.8521665286,280.35017,134.62490684737486,289334.71709556325,137841.67823545294,3994.32467,1805.1692489524933,4134483.38962492,1845498.6435896729,1350.2956,596.4817578586682,1396592.7138121778,608407.3554788108,2230.12214,933.9622083511118,2293019.961728692,944316.5288693,0.38374,100000,0,387678,4053.7994207020593,0,0.0,0,0.0,21537,224.5145504166972,0,0.0,26091,268.9866468687587,2031918,0,73053,0,0,0,0,0,59,0.6064852090805475,0,0.0,0,0.0,0,0.0,0.07102,0.185073226663887,0.3204731061672768,0.02276,0.3210470085470085,0.6789529914529915,25.268425774570144,4.526156057031105,0.3219724437998549,0.2055837563451776,0.2414793328498912,0.2309644670050761,11.16024386111671,5.719054183794545,24.355501716622765,13061.272577303302,62.68969474987716,13.410005743719262,20.364262191102245,14.727335458072474,14.188091356983186,0.5540246555474981,0.7663139329805997,0.7207207207207207,0.5780780780780781,0.1075353218210361,0.6999282124910265,0.902439024390244,0.8593073593073594,0.737410071942446,0.1408450704225352,0.5047295658501092,0.7006535947712418,0.6719939117199392,0.5360531309297912,0.0979797979797979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661366283486,0.0043481345590545,0.0065659282111651,0.0089705688133044,0.0116186794180486,0.0139258172631235,0.0161579892280071,0.0183599656708488,0.0205797516519035,0.0229372835863708,0.0253858151370875,0.0275414148888066,0.0297315104595618,0.0319407786209171,0.0338722173441454,0.0359164329839302,0.0378275833471554,0.039911077869193,0.0421965077316905,0.0442265567956607,0.0589858283516575,0.0723063223508459,0.085372639181968,0.0985137155007263,0.1108250142462168,0.1262857142857142,0.1388832875200322,0.1514386727152684,0.1632925734319552,0.1751556127924447,0.189088948787062,0.201798580638171,0.2143534102421647,0.22604616497512,0.2366275798925573,0.2478655253194772,0.258667949564225,0.2690078917700113,0.2780380207385847,0.2865488350740273,0.2948805698309764,0.3024974485905662,0.3101029165628005,0.3175516578567996,0.3238082472216806,0.3304236009792527,0.3369072579126439,0.3420683141019095,0.3471623096512655,0.3524086818422445,0.3538752618420163,0.3545930706615625,0.3559259626414399,0.356656976744186,0.3576417450607959,0.3568562698682139,0.3562960130031551,0.3575028504387197,0.3588439186742313,0.3603071044948275,0.3618265427776621,0.3621484601105766,0.3640458467264422,0.3644422445214417,0.3657061285717742,0.3666430613476014,0.3673727473917167,0.3690721649484536,0.3703860540616839,0.3717994807269822,0.3730624598734293,0.3750937332619175,0.3781255964878793,0.3784259684581228,0.378572762936671,0.3806528189910979,0.3843232568737658,0.3785642062689585,0.3885088919288645,0.392226148409894,0.0,2.355971639438494,61.4403211188136,212.68261288996865,311.1394411246264,fqhc6_100Compliance_baseline,69 -100000,95698,41830,392.3906455725303,7178,73.90959058705512,5600,57.99494242303915,2242,23.093481577462438,77.32722884548278,79.704702438974,63.32110870231941,65.07621680597998,77.05019027653,79.42789050713203,63.219156454826994,64.977405718258,0.2770385689527757,276.8119318419622,0.1019522474924201,98.81108772198388,85.10964,59.9194263819161,88935.65173775837,62613.03933406769,257.69962,160.2790278551055,268777.4248155656,166977.39540544787,277.25187,132.0009660802249,286915.5781730026,135755.86605743985,4057.49825,1810.828101912504,4204944.408451587,1857704.504972041,1368.41918,589.9441269318282,1420018.0254550774,606587.4269683083,2216.482,918.6350645538008,2285724.424752868,932152.7175443304,0.38031,100000,0,386862,4042.529624443562,0,0.0,0,0.0,21854,227.8313026395536,0,0.0,25871,267.57090012330457,2037484,0,73141,0,0,0,0,0,41,0.4179815670128947,0,0.0,0,0.0,0,0.0,0.07178,0.1887407641134863,0.3123432711061577,0.02242,0.3123099299219886,0.6876900700780114,25.139800630107658,4.553749129619916,0.3251785714285714,0.2071428571428571,0.2326785714285714,0.235,11.248948376256273,5.61881117439277,23.802218675619716,12965.980241455658,62.82742910527966,13.464501587315327,20.41389413062275,14.48577370388635,14.463259683455224,0.5483928571428571,0.7681034482758621,0.6891817682591982,0.5970836531082118,0.1117021276595744,0.6996282527881041,0.9023668639053254,0.8767123287671232,0.7227722772277227,0.1240601503759398,0.500587544065805,0.7128953771289538,0.6297903109182935,0.559,0.1085714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020653208334177,0.0043680514031478,0.0068986507050826,0.0092121433722335,0.0115007982428488,0.0137049066824147,0.0162951481655211,0.0183530276878453,0.0205244104473032,0.0226930599789044,0.0250435852733053,0.0272688057187461,0.0295615144876107,0.0316644169440179,0.0336653078074204,0.0356271200463307,0.0374948197264815,0.039433519529871,0.0417446843922939,0.0438018596505858,0.0579946309005254,0.0721440159087341,0.0848106577153047,0.0970226196738558,0.1093731872211616,0.1248585120225111,0.1388821088601415,0.151290569895221,0.1630038782465624,0.1740039904743515,0.1872576475657044,0.2007057117189275,0.2129013312451057,0.2244947064485082,0.2342523801661989,0.2448307958247457,0.2553526378067022,0.2655159998199738,0.2753794285584552,0.2847827830810309,0.2934411229890782,0.3011615109008734,0.3089761205344452,0.3160703791213404,0.322602223249252,0.3282162028753008,0.3344906246866539,0.3394680159569722,0.345103126216111,0.3506807666886979,0.3517975996003834,0.3525390086563378,0.3535988029868865,0.3544214044886914,0.3558041833025445,0.3554315064280002,0.3545851528384279,0.3553587274460183,0.3563145652322638,0.3576415549167009,0.3577577314754037,0.3591317780330336,0.3603864734299516,0.3617212213671953,0.3625797409626909,0.3632096499278878,0.3636520142316079,0.3653249794316815,0.3672979931576905,0.3700355957285126,0.3707011647714193,0.3691026329930145,0.3681430571464936,0.3703474903474903,0.3717568214456678,0.3708188466610718,0.3681361175560712,0.3693693693693693,0.3683184855233853,0.378001549186677,0.0,2.040700224737464,59.49225290617061,209.08350539634927,328.38681470038915,fqhc6_100Compliance_baseline,70 -100000,95779,41830,393.4682968082774,7079,72.60464193612378,5518,57.037555205212,2284,23.481138871777738,77.38146625236273,79.70379944088825,63.35451413110488,65.06746137973026,77.10840084377772,79.42956153785775,63.25586176698562,64.97047518528439,0.2730654085850119,274.237903030496,0.0986523641192604,96.98619444587564,85.19412,59.96668496065658,88948.64218670064,62609.42895692853,256.03957,159.29679056999558,266752.8790235855,165746.62563818332,281.58015,135.00991039856302,289824.36651040416,137781.21807656027,4013.9113,1787.3579773605409,4155214.514663966,1830536.534480982,1364.43738,587.6325835184111,1411814.6253354074,600775.8835636318,2255.90954,921.529138217916,2322626.9641570696,935784.6044718768,0.37903,100000,0,387246,4043.120099395484,0,0.0,0,0.0,21643,225.3938754841876,0,0.0,26117,268.4930934756053,2038556,0,73216,0,0,0,0,0,55,0.5742386118042577,0,0.0,0,0.0,0,0.0,0.07079,0.1867662190327942,0.3226444413052691,0.02284,0.3124915960736856,0.6875084039263144,25.13170432577465,4.601901072870667,0.3258426966292135,0.2035157665820949,0.2296121783254802,0.2410293584632113,11.224182201453551,5.757618740502551,24.059639512965177,12870.312744583096,61.74914549584668,13.06293141835834,20.05032680798813,14.193237220772458,14.442650048727751,0.5415005436752447,0.7791629563668745,0.6874304783092324,0.579321231254933,0.1075187969924812,0.723752792256143,0.9376770538243626,0.880184331797235,0.7260726072607261,0.1541501976284585,0.4828742514970059,0.7064935064935065,0.626099706744868,0.533195020746888,0.096564531104921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022578620172934,0.0044894401880903,0.0067862975624106,0.0088349987813794,0.0110527011500096,0.0130097522242807,0.0150338388780169,0.0172552781150828,0.0194217409072333,0.021505156326731,0.0234397410154489,0.0255981450322157,0.0279113741932831,0.0299558383002377,0.0320216089157396,0.0340693159286186,0.0361762453693164,0.0383060335890524,0.0402227208509931,0.0421772673795121,0.0565614401252282,0.0701879211484535,0.0833543082473361,0.0959614010007147,0.108884484830596,0.1242874517476601,0.1372083156554942,0.1498259694089346,0.1613337320574162,0.1724518674156339,0.1859271059826484,0.1996474837258591,0.211692561947528,0.2228067680932745,0.2337899543378995,0.2444574936016043,0.2552099030014845,0.265277418338528,0.274462383904444,0.2838621669952771,0.2916077922679576,0.3001112607600866,0.3074189459718783,0.3143836766010502,0.3209890043132252,0.3268633540372671,0.3327952952952953,0.3383409868596796,0.3437904939615404,0.3490348203565161,0.3495677699081679,0.3505537593726353,0.3517631141302816,0.3517113569236115,0.3526117457811406,0.3516682525553271,0.3516314596770359,0.3530368496278894,0.3541246108050775,0.3552201482539966,0.357149554617909,0.3580141956147808,0.3585784416565267,0.3590640913475559,0.3607173850159098,0.3599142998981005,0.3608518169621192,0.3649874055415617,0.3652850653238018,0.3659676452965847,0.3690263459335624,0.3694460703453413,0.3724861739567622,0.3735452955046778,0.3744789693065555,0.3779761904761904,0.3803053435114504,0.3782688019460774,0.38215859030837,0.3835457705677867,0.0,2.2781826297690086,59.08249948411996,202.6974229483569,322.66175609389904,fqhc6_100Compliance_baseline,71 -100000,95749,42065,395.1059541091813,7094,72.73183009744227,5511,56.888322593447455,2242,23.028961137975333,77.31912755708531,79.67039255563361,63.32066847763053,65.05904378947774,77.0417078721222,79.39334266800527,63.21820344275896,64.95971199395831,0.2774196849631067,277.04988762833693,0.1024650348715709,99.33179551943284,85.6878,60.339320635069946,89492.10957816792,63018.22539668294,256.84727,160.26144909239312,267589.6354008919,166716.4186648151,281.22906,134.67616997948383,289750.23237840604,137558.02727966258,3930.99836,1757.7866054067397,4061224.6707537416,1791646.1605222067,1324.95398,577.6821874441832,1369013.55627735,588596.6884300092,2203.09198,917.7218575444008,2264114.6330509977,926034.65418388,0.38009,100000,0,389490,4067.823162643997,0,0.0,0,0.0,21649,225.4018318729177,0,0.0,26088,268.47277778358,2035059,0,73046,0,0,0,0,0,60,0.626638398312254,0,0.0,0,0.0,0,0.0,0.07094,0.1866400063142939,0.3160417254017479,0.02242,0.3210257787325457,0.6789742212674543,25.169455092275506,4.47580652082714,0.3331518780620577,0.210669569951007,0.2240972600254037,0.2320812919615315,11.09796579670946,5.653870557761553,23.90731313771608,12977.11960177599,62.03530568601459,13.551308057329535,20.658390779656383,13.69789584498873,14.12771100403992,0.5420068953003084,0.7665805340223945,0.6797385620915033,0.5797570850202429,0.1039874902267396,0.7208427389014297,0.925,0.8574712643678161,0.7526132404181185,0.145748987854251,0.4851745576279292,0.6953807740324595,0.6245538900785154,0.5274261603375527,0.0939922480620155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002156983868191,0.0043068940706735,0.0066657197354003,0.0087651587478925,0.0111358574610244,0.0135040175979957,0.0157838388988019,0.0181350324715108,0.0202552095049181,0.022440162977826,0.0243814913926568,0.0267275901016531,0.0290944618707255,0.0311312105322798,0.0330994634750309,0.0352935097147581,0.0370619597287644,0.039303756107175,0.0411709081084451,0.0431635193267157,0.0572896006012902,0.0717214829692861,0.0852449730954403,0.0981091199730775,0.1096889826041117,0.1255696898560839,0.139317571939203,0.1518088955096829,0.1636573307849188,0.1748960164658462,0.1889758692351592,0.2022076727449813,0.214674947519551,0.2260142154182613,0.2365328756271455,0.2478290727039121,0.2581916425708639,0.2686278261065283,0.2774971336458889,0.2864555889023804,0.2941380827755518,0.3018605032374395,0.3089976181729846,0.3156858271593079,0.3228444184857998,0.3292039770271104,0.3350802407221665,0.3394997195165485,0.3451109178468048,0.3499914065495313,0.35036299354978,0.3509850688652062,0.3519122903686121,0.3529497070595742,0.3533137602646835,0.3523029399560466,0.3525569716810222,0.3539037010183568,0.3550863723608445,0.3558494696983292,0.3573245886809521,0.3587217731524696,0.3594547833059037,0.3599549295774648,0.3598178382830289,0.3611927761444771,0.3633675871175154,0.3662185671358532,0.3673823082092455,0.3697003506534906,0.37184,0.3741253138187063,0.3728050713153724,0.3718697188508219,0.3711898205298642,0.3715166607375785,0.3740036787247087,0.3761672756800649,0.3778763515386748,0.3727901614142967,0.0,2.611813178079707,58.07567963309561,209.68081259221017,319.80599679632394,fqhc6_100Compliance_baseline,72 -100000,95684,42242,397.97667321600267,7174,73.7636386438694,5560,57.554032022072654,2308,23.74482672129092,77.34181859432726,79.72499055885578,63.3271521787835,65.08586874203756,77.05425037809002,79.4358478852026,63.22214110927777,64.98269274974174,0.287568216237247,289.14267365317414,0.1050110695057284,103.17599229581732,85.6823,60.32248755871213,89547.1552192634,63043.44253868163,257.59983,160.49367258382009,268543.0793027047,167056.7729022826,281.82864,134.9637310259577,291189.0180176414,138361.85139101077,4043.69264,1821.756493456495,4191352.169641738,1869191.5716906649,1360.1623,594.3295098101305,1409004.953806279,608627.8895218951,2278.73162,949.003747045812,2348044.3752351487,964669.0763471642,0.38313,100000,0,389465,4070.325237239246,0,0.0,0,0.0,21787,227.1330629990385,0,0.0,26256,271.00664687931106,2035144,0,73091,0,0,0,0,0,44,0.4389448601647088,0,0.0,0,0.0,0,0.0,0.07174,0.1872471484874585,0.321717312517424,0.02308,0.3191686523696055,0.6808313476303945,25.303076123078444,4.4901035883013245,0.3267985611510791,0.2012589928057554,0.2336330935251798,0.2383093525179856,11.219602824044872,5.745089538606135,24.628625203349973,12959.972134476602,62.72669253360159,13.13146655841433,20.37771965147179,14.531034128224244,14.686472195491229,0.5453237410071943,0.7658623771224308,0.6995046780407265,0.5812163202463433,0.1124528301886792,0.7249283667621776,0.9244791666666666,0.8785714285714286,0.7859424920127795,0.1505376344086021,0.4851104707012488,0.6829931972789116,0.6456692913385826,0.5162271805273834,0.1022944550669216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771931423479,0.004409215767761,0.0065136004382983,0.0086023034267026,0.0110220848415829,0.0133277673698786,0.0154623938680447,0.017516817573982,0.0197160641461993,0.0221109848601173,0.0242289393815109,0.0261479526337951,0.0281375706011255,0.0303882774823791,0.0325856961489631,0.0346514682913205,0.036621761658031,0.0388097512355164,0.0407698309492847,0.0425653909906904,0.0573604379074043,0.0713365792366891,0.0844581120510506,0.0967643499763245,0.1096014683854089,0.1246615332543577,0.1381765323770013,0.1508190788423259,0.1629449976494722,0.1743503951785005,0.1885674901462448,0.2017673845088856,0.2143105735975463,0.2259432982364067,0.2371365391597082,0.2483718045279341,0.2591840151811129,0.2683878951513106,0.2778925385331305,0.2863606166815568,0.2940366707154838,0.3017241379310345,0.308828922618273,0.3154974474510462,0.3219123990037057,0.3277688049414984,0.3340971126637117,0.3391494835513328,0.3450485033978316,0.3499815020347762,0.3516735442457588,0.3515759588748466,0.3515979155780881,0.3523115694339841,0.3526327548968496,0.352541539218248,0.3522043531410246,0.3531087400382006,0.3548121602853175,0.3556797020484171,0.3571455392009612,0.3582631109348667,0.3607898389199647,0.3618570369205186,0.3629201807592856,0.3640111332843189,0.3643722372122395,0.3666318157336121,0.3690142841952291,0.3711484593837535,0.3726670957065367,0.3725910064239828,0.3739888776541961,0.3759681006057818,0.3786920826649051,0.3801752070082803,0.3827217835578262,0.379443428803575,0.3796270526022822,0.3744697261858851,0.0,2.20603215357788,61.60958389689968,207.11737059466932,319.4761251312095,fqhc6_100Compliance_baseline,73 -100000,95671,42186,397.5708417388759,7124,73.20922745659604,5609,57.95904715117433,2273,23.382216136551303,77.38307130315455,79.75852989152528,63.34642469116329,65.09700470842888,77.1094630481716,79.48421508399575,63.2468010352862,64.99958582999847,0.2736082549829461,274.3148075295352,0.0996236558770959,97.41887843041752,85.91682,60.46425814818425,89804.45485047715,63200.19457117021,254.29988,158.04365914183066,265175.10008257465,164563.39867026647,280.63547,134.80403479033586,288562.52155825694,137389.20006115688,4086.35939,1831.9938428266328,4227787.438199664,1871414.5068271824,1372.55477,600.7192449057416,1417075.080222847,610314.9072401682,2246.02672,927.4353622399482,2312573.4025984886,940016.1994059996,0.38332,100000,0,390531,4082.020675021689,0,0.0,0,0.0,21530,224.37311201931615,0,0.0,26123,268.2213000804841,2036245,0,73182,0,0,0,0,0,48,0.5017194343113378,0,0.0,1,0.0104524882148195,0,0.0,0.07124,0.1858499426066993,0.3190623245367771,0.02273,0.3173564753004005,0.6826435246995994,25.14804643099769,4.523193879104987,0.324300231770369,0.2034230700659654,0.2321269388482795,0.2401497593153859,11.147280074607252,5.619318263746435,24.091384224121867,13018.365596773723,63.25322802476689,13.50935609910952,20.436511005235385,14.511607404570876,14.795753515851109,0.5384203957924764,0.7633654688869412,0.679494227597581,0.5829493087557603,0.1143281365998515,0.7302725968436155,0.9492957746478872,0.8758029978586723,0.7361563517915309,0.1735849056603773,0.4749703440094899,0.6793893129770993,0.6116863905325444,0.535678391959799,0.099815157116451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021258718605428,0.0044982067959394,0.0068863398951329,0.0090783541167391,0.0112246454171114,0.0135081486608915,0.0157087810149034,0.0177709275383029,0.0200443613095785,0.0221118902595076,0.0242267037124373,0.0263595662531832,0.0282825789598181,0.0304166452078075,0.0326820310726886,0.0346741354720023,0.0367442920482327,0.0386723128658612,0.0406618205264197,0.0425312392525507,0.0573413423870462,0.0714607259136734,0.08546040138902,0.0983039441447693,0.1104585569532164,0.1255484484854892,0.1392301739582118,0.1511677372697494,0.1631668800682885,0.1742987550088928,0.1883788232509601,0.2019721477380849,0.214524823928354,0.2261773352714237,0.2366968037132361,0.2476816202621403,0.2585101630556176,0.2682937817473279,0.2776907179032954,0.2871254225634561,0.2947651068853369,0.3022814800941154,0.3095094241271872,0.3162934696522428,0.323177035820714,0.3295245616416382,0.3354797489445398,0.341562527865887,0.3473969546834064,0.3529567263210764,0.3535015968413534,0.3538539916834191,0.3545035455993684,0.3550777067114288,0.3560698456138263,0.356162490788504,0.3558415590186308,0.3563589093841015,0.3580454350621517,0.3593822781181697,0.3600239803660753,0.361392005056091,0.3628745024093861,0.3637399973177165,0.3634770501248319,0.3650934068793256,0.3665284326535249,0.3710461142982538,0.3724505914978762,0.3732140736929591,0.3761396790663749,0.3768868174355171,0.3786499215070644,0.3787085514834206,0.3800841514726508,0.3836277974087161,0.3850453172205438,0.3868800632286109,0.3877221324717286,0.3803658081373647,0.0,2.6377581708818485,61.17380382896398,216.6967417912173,313.3798550697316,fqhc6_100Compliance_baseline,74 -100000,95701,42026,395.4399640547121,7138,73.51020365513422,5594,57.95132757233467,2306,23.740608771068224,77.3960056150407,79.78029805936325,63.35197710932333,65.11307689056478,77.11701558421544,79.50097208751208,63.24956305734342,65.01318006040107,0.2789900308252697,279.3259718511649,0.1024140519799061,99.89683016371488,84.86038,59.80047416566209,88672.40676690944,62486.78087549983,257.80807,160.16815012827968,268877.98455606523,166851.96615320598,276.77662,132.22703191484408,286450.5386568583,135938.41426313706,4084.76972,1806.0380310518892,4232669.292901851,1851709.277809715,1373.85188,591.2050935902762,1422630.066561478,604917.4227914449,2279.72982,944.4101121114056,2348992.2780326223,956891.7553575828,0.38165,100000,0,385729,4030.563943950429,0,0.0,0,0.0,21756,226.78968871798625,0,0.0,25697,265.7130019540026,2044429,0,73167,0,0,0,0,0,52,0.5433590035631812,0,0.0,0,0.0,0,0.0,0.07138,0.1870300013101009,0.3230596805827963,0.02306,0.325,0.675,25.50827641187317,4.633553004723839,0.3337504469074008,0.1978905970682874,0.221308544869503,0.2470504111548087,10.918936202312397,5.210510828596053,24.459908947808383,12940.613150991618,62.28814996796344,12.847678702173717,20.67953986672474,13.663129421956496,15.09780197710848,0.531283518055059,0.7660343270099368,0.6802356722013926,0.5646203554119548,0.1121562952243125,0.694296577946768,0.9193083573487032,0.8537170263788969,0.7095588235294118,0.1612903225806451,0.4811871932694554,0.6960526315789474,0.6303448275862069,0.5238095238095238,0.099728014505893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044918983593924,0.00692231176793,0.0091643383286766,0.0111692063556649,0.0136337718405082,0.0158650855960112,0.0180093722243208,0.0202212271770021,0.0226104935617924,0.0244822636866926,0.0265305912913128,0.0284776929880494,0.0304378727480609,0.0324910492266738,0.0346289022121149,0.0365747550288993,0.0385713247734609,0.0407991347213844,0.0429295034810522,0.0571971714766187,0.0717492543561299,0.084986103099271,0.0980276714748307,0.110274896702926,0.1259385376789831,0.1389560789306174,0.1509596653147255,0.1627551728926538,0.1739773921623302,0.1872449034536976,0.199848566792861,0.2116341744365477,0.2228926197971318,0.2336305760497872,0.2455165389895053,0.2565278010150019,0.2666074879769877,0.2756506860956568,0.2844173069886571,0.2924192728784589,0.3004379050621825,0.3082494446807505,0.3146769444377947,0.3214853274780731,0.3280971301342059,0.3344736316420296,0.3401312199393393,0.3453615570393522,0.3506878167577174,0.3512141398947029,0.351670075918782,0.3525323579065841,0.352991292544512,0.3540190968355088,0.3549888252763065,0.3552846172116222,0.3562325505009032,0.3566592579928193,0.3576750585166258,0.3577711509968304,0.3589621989052898,0.3595644435137682,0.3599107142857143,0.360915281153004,0.3617365441310757,0.3611680911680912,0.3635159010600706,0.3658020862700874,0.3672564604385509,0.3688784659953097,0.3710816304696694,0.3722081218274111,0.374770079705702,0.3747268408551069,0.3733493397358943,0.3774313059586292,0.3828653412584546,0.3770172509738453,0.3755356447214647,0.0,1.9490754674763888,58.20965996265576,206.71800214258573,330.173005218878,fqhc6_100Compliance_baseline,75 -100000,95827,41782,392.2798376240517,7150,73.42398280234173,5585,57.74990347188162,2288,23.52155446794745,77.38566316619061,79.70663813018116,63.36611244363343,65.08427838381343,77.10784883447052,79.42779413575924,63.26393849459749,64.98428508386736,0.2778143317200943,278.8439944219192,0.1021739490359365,99.99329994606398,85.88294,60.37600571422924,89622.90377451033,63005.21326372446,257.16408,160.19827079074753,267850.87710144324,166662.47591049233,276.57071,132.6742269326816,285050.413766475,135767.86560348538,4036.41125,1812.1813940881405,4176622.736806954,1855779.9643435697,1357.11096,589.7301547635694,1402545.629102445,601852.8067988568,2243.17208,932.6640885014036,2307919.8138311747,945397.1575100408,0.3789,100000,0,390377,4073.7683533868326,0,0.0,0,0.0,21776,226.71063478977743,0,0.0,25728,264.98794702954285,2040163,0,73211,0,0,0,0,0,54,0.5635155018940382,0,0.0,0,0.0,0,0.0,0.0715,0.1887041435735022,0.32,0.02288,0.3232040517126482,0.6767959482873517,25.2637541914068,4.547693898364217,0.3324977618621307,0.2005371530886302,0.2336615935541629,0.2333034914950761,11.087604187359076,5.626490949302477,24.320027574872107,12872.62177524649,62.83266256538151,12.988954897363527,20.859867402661973,14.63464870440597,14.34919156095004,0.5453894359892569,0.7678571428571429,0.6941303177167475,0.5739463601532567,0.113584036838066,0.6958762886597938,0.9397590361445785,0.8609271523178808,0.7095709570957096,0.1037037037037037,0.4970428199668796,0.6954314720812182,0.6403133903133903,0.5329341317365269,0.1161665053242981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864351331368,0.0042881907484565,0.0064954176858044,0.0086968890333854,0.010761218926726,0.0127583749109052,0.014861021924594,0.0172262475762832,0.0196024324186212,0.021746249411572,0.0240625544430666,0.0261010582064888,0.028355601233299,0.0306227483273288,0.03255444646098,0.0347887163913937,0.0369603907123049,0.0390982119720134,0.0410267592909878,0.0428941590268166,0.0574656291072956,0.0713763040705818,0.0847832466879087,0.0971337914223875,0.1093730249020351,0.1243451626531474,0.137410079564356,0.1493771523319586,0.1608643713469004,0.1726948493579101,0.1864299234276865,0.1999913577979669,0.2118708472662526,0.2230312424950331,0.2332524191865382,0.2452563138573134,0.2558328690807799,0.2654450673527396,0.2748739448189904,0.2835090447549569,0.2911269542308448,0.2985815188838946,0.306607617360496,0.3134333711962695,0.32008918293407,0.3262146420584404,0.3322680914277154,0.337809025838875,0.3435880870857291,0.3488007586633826,0.3492902791792802,0.3503925639721149,0.3510762603297059,0.3521761747875845,0.352550284686399,0.3520286944925581,0.3519053209379065,0.3528956766453269,0.3533326472505231,0.3537046664634911,0.3554866591506952,0.3564101037760184,0.3568473488686254,0.3582224024145775,0.3584983498349835,0.3602720227739996,0.3610455409062122,0.3636507835797221,0.364185039230305,0.3665488999518227,0.3705373573794626,0.3701305650684932,0.3711870869344179,0.3710160509945472,0.3724611423667398,0.3751503488092374,0.3767846058348851,0.3764633394947628,0.3797539149888143,0.3762567672080433,0.0,2.102923140147149,59.918152240321234,212.41730294997345,321.56321441008134,fqhc6_100Compliance_baseline,76 -100000,95765,41728,391.81329295671696,7245,74.49485720252702,5641,58.30940322664857,2269,23.265284811778837,77.37657405990127,79.72266741964381,63.3458979718325,65.07946659894384,77.0981037146678,79.44501967938402,63.24426052889553,64.98132064933755,0.2784703452334724,277.6477402597948,0.101637442936969,98.14594960629108,86.60366,60.8907915052417,90433.51955307263,63583.55506212259,258.23876,160.13838320025584,269057.12943142065,166619.03555771048,277.8436,133.18348828448148,286854.4040098157,136479.2291861185,4064.63769,1820.3959995851392,4202281.42849684,1858862.924368989,1347.77187,590.6593651450833,1390153.3754503212,599588.8813763586,2230.4135,927.1075362284276,2289141.5026366627,933725.115004364,0.37955,100000,0,393653,4110.614525139665,0,0.0,0,0.0,21862,227.6510207278233,0,0.0,25894,267.05999060199446,2034310,0,72979,0,0,0,0,0,49,0.5116691902051898,0,0.0,0,0.0,0,0.0,0.07245,0.1908839415096825,0.3131815044858523,0.02269,0.3239196111913832,0.6760803888086169,25.118125243392885,4.590260962024674,0.3237014713703244,0.2098918631448324,0.2368374401701826,0.2295692253146605,11.224331314782418,5.602756359181632,24.12348267344756,12938.542426964,63.32125542227764,13.854648542942458,20.292317967011037,14.943696352194618,14.230592560129535,0.5497252260237546,0.7846283783783784,0.6944140197152245,0.5696107784431138,0.1104247104247104,0.7094932191291934,0.9015544041450776,0.8931116389548693,0.7184466019417476,0.1684210526315789,0.4969339622641509,0.7280701754385965,0.6348754448398577,0.5248296007789679,0.094059405940594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864985313481,0.0045109428377378,0.0065748087420605,0.0087163232963549,0.0111361972174762,0.013411268724351,0.0159374330841941,0.0180810225834116,0.0202314502443313,0.0222438325314771,0.0243012493978496,0.0268630671320057,0.0291553581709022,0.0308750682279276,0.0330327851940495,0.0350391218513886,0.037090728353387,0.0392335861074514,0.0412508316699933,0.0430435642945667,0.057781024945204,0.0717116890994467,0.0845380494606296,0.0972559405576399,0.1098604611947219,0.1260094710583062,0.1384132571380103,0.1507038806541887,0.1621777483500288,0.1734006734006734,0.1876581767271552,0.2006187864429515,0.2121660429901662,0.2240347479786873,0.2347896921061611,0.2461347490219114,0.2570120589548906,0.2670275501935716,0.2770419801845357,0.2860201756495253,0.2938903925787123,0.3012966665497445,0.3083200283838921,0.3155127606318638,0.3224051017309444,0.3285180757047244,0.3347422126073853,0.3399550081976589,0.3454159713328417,0.3501464495870385,0.3508273913628413,0.3513164048529533,0.3519605772615276,0.3522464438533595,0.3523853388206279,0.3518785241480755,0.3511496347473339,0.3518159408381265,0.3532632875868441,0.353446735517993,0.3550016903948011,0.3566592762689049,0.3576617813799185,0.3583061160574471,0.3597292153508877,0.3612970711297071,0.3626122262251958,0.3636134400806909,0.3652238332098634,0.3665827438756344,0.367763852545563,0.368373236425823,0.3716976362027556,0.3731160584500038,0.3721829325789721,0.3783235960414928,0.3824842234877635,0.3867962737950587,0.3898678414096916,0.3926096997690531,0.0,2.2728104288585955,61.752410118819775,211.14960469259236,321.3369998302141,fqhc6_100Compliance_baseline,77 -100000,95758,41662,390.9542805823013,7173,73.85283736084713,5589,57.8541740637858,2324,23.956222978758955,77.3313489084019,79.69839416770901,63.31030609897547,65.0636142164181,77.0529905603748,79.41761690322666,63.20922303089717,64.96358410639603,0.2783583480271119,280.77726448235296,0.1010830680782959,100.03011002207528,85.20314,59.95014210442672,88977.56845381064,62605.88369058117,253.86669,157.82166598987774,264560.6111238748,164263.97829127085,280.21961,133.4776415968912,289360.6069466781,136892.7630570719,4079.81425,1814.8173792821733,4226083.303744856,1861465.5238418344,1384.46769,593.1617751004068,1435323.0330625118,609027.8016320162,2290.04494,940.3463903846368,2362947.659725558,957843.243343146,0.37864,100000,0,387287,4044.434929718666,0,0.0,0,0.0,21510,224.0752730842332,0,0.0,26035,268.63551870339813,2039463,0,73171,0,0,0,0,0,46,0.4803776185801708,0,0.0,0,0.0,0,0.0,0.07173,0.189441157828016,0.3239927505924996,0.02324,0.3167174864112422,0.6832825135887578,25.659450018403287,4.549679026239603,0.3358382537126498,0.1941313293970298,0.2336732868133834,0.2363571300769368,11.086790383541931,5.548308390170006,24.533496194064902,12962.1472203279,62.83179164898653,12.795797628369684,21.255312965205427,14.367039830696784,14.413641224714633,0.5466094113437109,0.7585253456221198,0.7080447522642515,0.5712098009188361,0.1188493565480696,0.7035139092240117,0.9090909090909092,0.8601694915254238,0.7083333333333334,0.1423220973782771,0.4958560265214302,0.682825484764543,0.6569395017793594,0.536468330134357,0.1129032258064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0046847906547552,0.0070032986551636,0.0090327169274537,0.0114854829192862,0.0138505565683209,0.0161311702745969,0.0184200046968969,0.0207632276079329,0.0227994346231845,0.0247579586478503,0.0270200852725124,0.0290721607047297,0.0311968586711189,0.0332469730906989,0.0351780617942672,0.0371014672838163,0.0390577980699387,0.0410486159475276,0.0433999208448767,0.0581413555182096,0.0718852347518546,0.0856165820500986,0.0991482649842271,0.1112716001222996,0.1264158725793999,0.1395526505666143,0.1521519176083414,0.1640717667047798,0.1753017541977361,0.189035692732132,0.2014964969842662,0.2140843230533088,0.2255207820213895,0.2357584832536938,0.2472506762449559,0.2575911552850522,0.2679906331622084,0.276922029126985,0.2856733524355301,0.293862239049637,0.3015939941206095,0.309051243745702,0.3155770201110069,0.3216990090331377,0.3279467680608365,0.3341561517160148,0.3397005415737496,0.3445635528330781,0.3492902645978166,0.3489335294038287,0.3492430816700415,0.3504377123362984,0.3512137992857452,0.3531849167570136,0.3522934374760701,0.3512760874036803,0.3520467644209454,0.3532128926298501,0.354119034009717,0.3553117674636662,0.3573776334547758,0.3581506676744772,0.3596591546137459,0.3597287252015253,0.3603551690720029,0.3604528172436465,0.3631620553359684,0.3658519305703153,0.369007982670785,0.3695532266960838,0.3696940573442255,0.3714050424426707,0.3733088741114423,0.3735211267605633,0.3749116607773851,0.3745829542007886,0.374900714853058,0.3701492537313433,0.3734392735527809,0.0,1.8104206073598903,60.7726333744373,208.44230301624813,324.7407490646296,fqhc6_100Compliance_baseline,78 -100000,95482,42038,397.3314341970215,7159,73.72070128401165,5526,57.1835529209694,2279,23.418026434301755,77.22623088476638,79.713122304224,63.24095407219974,65.07615072019725,76.95204274267547,79.43982993102063,63.1411798114402,64.97921844683806,0.2741881420909067,273.2923732033754,0.0997742607595455,96.93227335918664,86.185,60.6827572612909,90263.08623614922,63554.13298976865,257.87835,161.08817587624128,269365.1368844389,168001.87353141358,283.47574,135.90803040890327,292494.69009865733,138915.57245826098,3971.10489,1787.0145656687223,4111119.226660522,1824233.0195417427,1346.19812,585.5708811439033,1392296.1081669845,595677.6472465002,2238.83962,920.7462086735616,2302411.721581031,929161.7495991774,0.38059,100000,0,391750,4102.867556188601,0,0.0,0,0.0,21842,228.02203556691316,0,0.0,26408,272.1979011750906,2025105,0,72673,0,0,0,0,0,42,0.4398734840074569,0,0.0,0,0.0,0,0.0,0.07159,0.1881026826768964,0.318340550356195,0.02279,0.308264682434228,0.691735317565772,25.204437963328548,4.516241076501745,0.3384002895403546,0.2017734346724574,0.2305465074194715,0.2292797683677162,11.193895172136306,5.786386102688456,24.214397359698243,12948.40675395302,62.821814965748,13.215986962299503,21.374437759738868,14.28419098980737,13.947199253902255,0.5521172638436482,0.7829596412556054,0.6957219251336898,0.5714285714285714,0.1176006314127861,0.7268041237113402,0.8948863636363636,0.8662280701754386,0.7635782747603834,0.160337552742616,0.4952015355086372,0.7313237221494102,0.6407355021216408,0.5088449531737773,0.1077669902912621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002573846075898,0.0047876494872549,0.0073507015655775,0.0093950177935943,0.0115552207199869,0.0136064821892676,0.0157042418800191,0.0180757362107371,0.0202052236897296,0.0222536423433946,0.0241316308096567,0.0262081019946535,0.0282754643930969,0.0303433480821395,0.0323393879280061,0.034248560897834,0.0360877142027301,0.0377019188790253,0.0400791790383914,0.041976881389205,0.0568150892838451,0.0708672982301534,0.0844383221695286,0.097421143043831,0.1093827604062093,0.1250463703907831,0.1381367014320798,0.1507505521118946,0.1620148230657184,0.1734456961045661,0.1864284171885122,0.2001345004501426,0.2123551281631941,0.2240029817368617,0.2350137367184138,0.24644138988588,0.2572013468616111,0.2671288468041934,0.2767162549474546,0.2864716615218663,0.2948789312552184,0.3024027580707576,0.3100264635029133,0.3163803776850861,0.3223108249811008,0.3283258881615581,0.3343599929600482,0.3400368201692705,0.3459347690387016,0.3511579839949122,0.3512526378442725,0.3514196542009611,0.3512405456987347,0.3521153288901767,0.3535615723129708,0.3537304017355715,0.3534374353341929,0.3546086410988757,0.3549729218602252,0.3560750350379128,0.3570674707877874,0.3584080472337634,0.3596097519860083,0.3604849957259189,0.3612896988446851,0.3628996302027328,0.3629432166709662,0.3639326624897158,0.3665889171614362,0.3697519274557584,0.3716919689950924,0.3751469174057057,0.3754255453284579,0.3788281784330116,0.3811650846826726,0.381466275659824,0.3886248658592672,0.3872427983539094,0.3864774624373956,0.3818181818181818,0.0,2.610957520039628,59.73960799435399,217.98957991875503,311.9177102985227,fqhc6_100Compliance_baseline,79 -100000,95705,41870,394.2218274907267,7056,72.44135625097958,5525,57.0921059505773,2203,22.621597617679328,77.36399481233721,79.74795537841914,63.33329461681414,65.09685568837912,77.09103838702292,79.47540637875404,63.23472245322227,65.0012928479155,0.2729564253142911,272.5489996650907,0.098572163591875,95.56284046362862,85.8704,60.41144501489279,89723.81798234157,63122.35541557349,259.28117,161.31546947474962,270259.0878219529,167899.70600102664,279.68937,134.422924626866,288060.132699441,137251.04385208496,4011.01794,1788.1880103095732,4147311.707852255,1824999.0650660929,1319.77195,575.7596984091073,1360541.9466067604,583384.7678969587,2171.6488,895.1779150121445,2231489.2638838096,904060.829540655,0.38017,100000,0,390320,4078.355362833708,0,0.0,0,0.0,21946,228.64009194921897,0,0.0,25997,267.4886369573168,2037386,0,73095,0,0,0,0,0,60,0.6269264928687112,0,0.0,1,0.0104487748811451,0,0.0,0.07056,0.1856011784201804,0.3122165532879818,0.02203,0.3073078481696609,0.692692151830339,25.103390157303902,4.534180566401168,0.3388235294117647,0.2009049773755656,0.228235294117647,0.2320361990950226,11.125501316068435,5.550694690126142,23.324234233796236,12920.43123748299,61.84867807404041,12.97106788425242,20.809153399044465,13.961950024580212,14.106506766163308,0.5402714932126697,0.7639639639639639,0.6885683760683761,0.5654242664551943,0.1053042121684867,0.7308270676691729,0.9222222222222224,0.9016393442622952,0.7430555555555556,0.1607843137254902,0.4798569725864124,0.688,0.62560553633218,0.512846865364851,0.0915287244401168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871115794166,0.0042897563053332,0.0066393242913993,0.0089639612171473,0.0108874824477502,0.0133259979216333,0.0155963115590191,0.0176477797295641,0.0198418786372515,0.0218210489668025,0.0239660352978577,0.0262611946430038,0.0282146493998086,0.0304685165531524,0.0323030084111667,0.0343686670251044,0.036453099911949,0.0383956830799564,0.040249898647595,0.0421767715181762,0.0566260404591074,0.0703706417408962,0.0840056654251691,0.0964610611558079,0.1083411512960249,0.1245109856414811,0.1378293833837018,0.1505419809163147,0.1626529174405943,0.1732737463695892,0.1881846551167545,0.2018581811888898,0.2140434045144174,0.225187793170561,0.235624725032996,0.2474926384307126,0.2579799692177288,0.2675991409842701,0.2767927032637919,0.2861427165129003,0.2939632545931758,0.3018188619254687,0.3089093211213272,0.3155157745905076,0.3216380660910117,0.3273201906145719,0.3332874655991994,0.3385567586802908,0.3440878291005017,0.3500197654499934,0.3503737965901146,0.3514416073440892,0.3516931864545083,0.35244351404028,0.3526732732019938,0.3521871323585583,0.3523913283754125,0.3529854531769018,0.3537339626177778,0.3550603097566198,0.3559426921201665,0.3571555731381663,0.3573720974136303,0.3580662537032049,0.3586306653809065,0.3598416319253257,0.358882418748745,0.3614145879381117,0.3624068646491755,0.36319380711065,0.3647010384738551,0.3674502905272136,0.3684880096685961,0.3731089842543995,0.3751075422999713,0.3817677559387435,0.3810713727940028,0.3715054876786084,0.3741169821983611,0.3767772511848341,0.0,2.4385231899133752,58.36037472621695,203.4546640590925,325.4730834157146,fqhc6_100Compliance_baseline,80 -100000,95677,42266,397.4100358497863,7227,74.2916270368009,5658,58.613877943497386,2360,24.33186659280705,77.31725194233033,79.72498310140278,63.30264576078415,65.08458148957993,77.03143104280912,79.43736684786612,63.19794458061968,64.98194731658252,0.2858208995212123,287.61625353666886,0.1047011801644757,102.63417299741208,85.6427,60.36144088918656,89512.31748487098,63088.76834472919,260.70768,161.73905601040929,271968.466820657,168528.1164861035,280.42495,133.83653435757685,290289.11859694595,137776.7255050136,4111.67867,1828.2274763797625,4262174.597865735,1875549.6058402357,1386.47539,596.2700773704933,1440103.776247165,614194.4013404403,2328.60846,960.6055580935227,2402268.423968143,975635.220681909,0.38325,100000,0,389285,4068.741703857771,0,0.0,0,0.0,22043,229.8671572060161,0,0.0,26126,270.1798760412638,2034428,0,72995,0,0,0,0,0,41,0.4285251418836293,0,0.0,0,0.0,0,0.0,0.07227,0.1885714285714285,0.326553203265532,0.0236,0.3080368906455863,0.6919631093544137,25.643557022897998,4.558193727766223,0.3243195475433015,0.2014846235418876,0.2317073170731707,0.2424885118416401,10.861934780708705,5.345872932982232,24.9789581995086,13045.648869636643,63.44461310210433,13.281141623098334,20.58877612405752,14.66767922622462,14.90701612872386,0.5383527748320961,0.7543859649122807,0.6833787465940054,0.581998474446987,0.1231778425655976,0.6906367041198502,0.8895522388059701,0.8329571106094809,0.711864406779661,0.1717557251908397,0.4913254684247051,0.698136645962733,0.6357758620689655,0.5442913385826772,0.1117117117117117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025023554560466,0.0049181159052882,0.0070227427260825,0.0093893851172148,0.0115277000559597,0.0135988591219313,0.0157305204741599,0.0179082216410591,0.02007325407706,0.022191486091901,0.0240796979521484,0.026326606107937,0.0285449585670904,0.0307651067602816,0.0329150529305447,0.0351053263253735,0.0372869759920388,0.0394936340789665,0.0415643597319905,0.0435108933597414,0.0580903325567059,0.0726335961798247,0.0853777595817718,0.0986585301699195,0.1107149262076313,0.1264484586812279,0.1400430901815943,0.1532571538109285,0.1654607829516186,0.1766832596661374,0.1903202524964183,0.2037630450785952,0.2155008217329313,0.2273976201683616,0.2378381951176522,0.2488305065957211,0.2591831951156898,0.2694787295086578,0.2789370369109621,0.2882353614823467,0.2959448199240811,0.3030196670293543,0.3106176348670575,0.3173352521436709,0.3231964591870235,0.3301662121642131,0.3362771994437972,0.3417344483904227,0.3468951581565244,0.3524049497374739,0.353747173468289,0.3536766526367912,0.3543341452082952,0.3549538870739252,0.3551193065030236,0.3536948840067598,0.3536655030149159,0.3553218453233266,0.3573543253187302,0.3581860107609531,0.3590234741784037,0.3603100037660304,0.3606446855577794,0.3616571454275561,0.3626461598175731,0.3630034416625069,0.3637641658298666,0.3652399317190364,0.3664157212031244,0.3693837613323216,0.3724562451192062,0.3750133933354763,0.3748170770503277,0.3760030864197531,0.3735960403578907,0.374401913875598,0.3804499612102405,0.3785391875256463,0.3848460070863995,0.3890369242481918,0.0,2.058929188524246,58.97048381854689,214.7044652930152,331.53026997900423,fqhc6_100Compliance_baseline,81 -100000,95864,42012,395.5395143119419,7152,73.3956438287574,5568,57.57114245180672,2228,22.87615789034465,77.4717338221379,79.75882315476952,63.40399372213196,65.09086143696331,77.19979033264855,79.48687541371791,63.30415104824399,64.99366711182114,0.2719434894893595,271.9477410516049,0.09984267388797,97.1943251421692,86.47254,60.80113590677537,90203.35057998831,63424.36775721373,257.87932,160.09309777193957,268489.9440874572,166485.72081099174,279.66568,133.42744022620775,288919.2084619878,136909.0400337097,3999.82829,1784.324503729582,4136274.6807977967,1825445.1022095575,1311.69918,571.1611224469456,1355114.7980472336,582830.7239672376,2189.61338,909.6631878293738,2250000.3338062256,918503.9118199372,0.38285,100000,0,393057,4100.152299090378,0,0.0,0,0.0,21742,226.25803221230075,0,0.0,26073,269.2251522990904,2038103,0,73088,0,0,0,0,0,50,0.5215722273220396,0,0.0,1,0.0104314445464407,0,0.0,0.07152,0.1868094554002873,0.3115212527964205,0.02228,0.3288288288288288,0.6711711711711712,25.39234527116341,4.535315498059325,0.335308908045977,0.201867816091954,0.2347341954022988,0.2280890804597701,11.06622022743799,5.5229288433414,23.538426883818836,12968.32387281608,62.25625869903281,13.198849455823542,20.756732149855623,14.537754674883043,13.762922418470582,0.5520833333333334,0.7677935943060499,0.7005891805034815,0.576893649579189,0.1173228346456693,0.7106038291605302,0.9228650137741048,0.8826185101580135,0.6677631578947368,0.1451612903225806,0.5009501187648456,0.6938239159001314,0.6439606741573034,0.5493519441674976,0.1105675146771037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025407429901811,0.0047411129458722,0.0068547324017927,0.009185952090946,0.0116250711324282,0.0136945882975368,0.0159624317496536,0.0180744397637674,0.0206073974225435,0.0226519676020616,0.0246213091080408,0.0263060734724016,0.0283633300460223,0.0301780018520423,0.0322337903308937,0.0341701174113735,0.0361516819065745,0.0378696017162578,0.039810603700704,0.0416788078091828,0.0560885070175804,0.0705624085302111,0.0843603286384976,0.0964254192409532,0.1086049158902145,0.1240669866576449,0.1374308074059935,0.1499851057491808,0.1614084537117111,0.1731865729229186,0.1868650998622589,0.1999373135618866,0.2121705704140469,0.2241364251714048,0.2352850725449493,0.2460535043112978,0.2575833528278136,0.2678755894902313,0.2774184779530859,0.2862615059173289,0.2942820515781815,0.3022265269447102,0.3094068176986133,0.3164971886589305,0.3237353330178491,0.3296194615091041,0.3355290294356602,0.3414234341842764,0.3469387755102041,0.3519399249061327,0.3527592096945569,0.3540454495553848,0.3543259500787047,0.3543612360198316,0.3546660736787488,0.3548150636816224,0.3541436464088398,0.3550837330364889,0.3565602383993189,0.3570653430823148,0.3579557133513968,0.3588975198138874,0.3605553116310188,0.3614272325612532,0.3636036554652083,0.3636410950348704,0.3652971928628253,0.3660431744838174,0.3690990112797661,0.3715073891625616,0.3726837205098074,0.3754766949152542,0.3771702759012564,0.3820620927558451,0.3844909609895338,0.3860426143164951,0.3871559633027523,0.3854838709677419,0.3923601637107776,0.3919483478921382,0.0,1.9429126934131145,59.98239986780966,207.9248927479197,320.132807705251,fqhc6_100Compliance_baseline,82 -100000,95742,41553,390.9151678469219,6969,71.49422406049591,5361,55.4406634496877,2234,22.98886591046772,77.34438518034166,79.69835773740752,63.33412346583962,65.072842907804,77.06568087450347,79.41713769816626,63.23048866273288,64.97071263572045,0.2787043058381897,281.22003924126204,0.1036348031067433,102.1302720835564,84.67844,59.59835802509335,88444.40266549685,62248.91690699312,252.2449,157.80944954535462,262909.82014163065,164274.47676605318,269.70042,129.94561188370457,278068.8203714149,132998.8772951605,3938.00778,1776.2957957956392,4078219.809487999,1820368.5172605957,1315.0705,573.154994602551,1360975.5697603978,586064.3443865292,2207.45352,928.105270933753,2274678.406550939,943377.817214866,0.37753,100000,0,384902,4020.200121158948,0,0.0,0,0.0,21437,223.30847485951827,0,0.0,25109,258.6221303085375,2042451,0,73297,0,0,0,0,0,50,0.5222368448538781,0,0.0,1,0.0104447368970775,0,0.0,0.06969,0.184594601753503,0.3205624910317118,0.02234,0.3141882673942701,0.6858117326057299,25.220278030453866,4.612932678968963,0.3241932475284462,0.1915687371759,0.2391344898339862,0.2451035254616676,11.03426290034316,5.451967591261714,23.910478475739986,12825.50800235428,60.37874240716856,11.905986462324329,19.723705880486733,14.298483875406848,14.45056618895064,0.5295653795933595,0.7468354430379747,0.6915995397008056,0.5639625585023401,0.1118721461187214,0.6725533480500367,0.9009584664536742,0.8314606741573034,0.715625,0.1174377224199288,0.4810094952523738,0.6792717086834734,0.6434648105181748,0.5135135135135135,0.1103581800580832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715368096916,0.0048158324293086,0.00726468409785,0.0092420503133156,0.0115907843097382,0.0136308572475644,0.0155418764395344,0.0176539619368335,0.019985491105639,0.0218970633377673,0.0242232969915566,0.0261723681374511,0.0282341812498714,0.030226570545829,0.0322274490385408,0.0342162100716153,0.0362177828382155,0.0382976075661885,0.0403766407882019,0.0423107370526228,0.0570757425484157,0.0711632044372351,0.0841034247653013,0.0967955661657219,0.1088591042824452,0.1241976588027536,0.1375978447635815,0.1502303461043313,0.1622129659297233,0.1732241257316837,0.1871380282903093,0.199660345927937,0.2116942279048023,0.2222149352920601,0.2321972571403433,0.2427285510247013,0.2537111860169208,0.2632686120548068,0.2729284903518729,0.2816702944208958,0.2903207138806263,0.2977971299482642,0.3058827707862242,0.3128765150606024,0.3188493896804941,0.3249922844268872,0.3309879469716923,0.3363269888248201,0.3422196840889327,0.3474591963600772,0.3483802228036576,0.3487667080060631,0.3494292124684268,0.3496735337975765,0.3504155124653739,0.3498694115839607,0.3494747548591135,0.3502024958019163,0.3505423142166858,0.3518773836595105,0.3530693925101937,0.3547671401121214,0.3553538409816776,0.3559143165079935,0.3565124882129645,0.3566732154551408,0.3573801477747866,0.3589670559194911,0.3624929338609384,0.3644216925291953,0.3662016922021495,0.3691905447948349,0.3712642951917609,0.3742312656594032,0.3764362403465813,0.3813188114123357,0.3812086729201906,0.3829831067161104,0.378476084538376,0.3831702544031311,0.0,2.20387762847368,59.93510576464846,198.4276546023944,305.6343041830158,fqhc6_100Compliance_baseline,83 -100000,95685,41742,393.8652871400951,7026,72.40424308930343,5448,56.50833463970319,2237,23.117521032554738,77.28108161739658,79.66970558873318,63.29287913429015,65.05635975583915,77.01225408507028,79.39628016140148,63.19562408938988,64.95915681693532,0.2688275323262985,273.42542733170205,0.0972550449002724,97.20293890383402,86.34692,60.7531651110374,90240.81099440872,63492.88301305053,256.46463,159.36371453609888,267599.5088049328,166119.74137649464,274.80964,130.98627787656488,284284.87223702774,134640.89729954413,3968.99507,1759.420301176585,4121385.849401682,1812168.3452752123,1353.9655,584.3059863207405,1405772.9529184303,601404.9603602866,2204.89588,904.9899830102198,2280502.1058682133,925776.2504538835,0.38019,100000,0,392486,4101.855045200397,0,0.0,0,0.0,21739,226.7440037623452,0,0.0,25566,264.283848043058,2031028,0,72878,0,0,0,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.07026,0.1848023356742681,0.3183888414460575,0.02237,0.3197619369674015,0.6802380630325984,25.465530058537965,4.577632436468007,0.3283773861967695,0.1976872246696035,0.2331130690161527,0.2408223201174743,11.0009353829055,5.524265179915232,23.659459811552654,12926.500467336358,61.47257667056594,12.802242149821202,20.242950448562027,14.134429722627942,14.292954349554783,0.539647577092511,0.7771587743732591,0.7003912800447177,0.5598425196850394,0.1059451219512195,0.7106060606060606,0.9337016574585636,0.8694638694638694,0.7,0.1467181467181467,0.4849806201550387,0.6979020979020979,0.6470588235294118,0.522,0.0959164292497625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0044911242003669,0.0067081400895095,0.0088488382724954,0.0111974452332038,0.0131664697975642,0.0151722168974447,0.0171621676808102,0.0192793253258369,0.021433177412256,0.0234694609918897,0.0257505441701917,0.0281777046482928,0.0300648072781973,0.0321901478951007,0.0341925411251382,0.0359547535685429,0.0378523684975297,0.0398918187964841,0.0416601523821435,0.0566763129577199,0.0711578330157267,0.0840015954320262,0.0969299722245602,0.1097584133347399,0.125493224444891,0.1385324119776242,0.1511427293446079,0.1635805768778464,0.1747350790736625,0.1882791941676372,0.2013848254339769,0.2143782736053488,0.225347640424833,0.2357963621941411,0.2468866093706681,0.2568478224427532,0.2668649117471474,0.27608031179338,0.2850066504609457,0.2929414626799967,0.2999425846290849,0.3071951233974929,0.3146927058936571,0.3213433925529326,0.3271338302808905,0.3329573086661151,0.338953221445697,0.3448213196256344,0.3502210222610445,0.3512374365070788,0.3513703831549879,0.3524266485499554,0.3528028906850866,0.3535400277649236,0.3529655999630934,0.3520934297290856,0.3536279683377308,0.3549993132811427,0.3557395855739585,0.3560934262572989,0.3577932298619274,0.3596303892753684,0.3609480812641084,0.3615528417781447,0.3628894663621807,0.3632341110217216,0.3657646797576372,0.3666843126874889,0.3695461434154901,0.3724475780606172,0.3753668819040504,0.3739527798933739,0.3750095238095238,0.3748707828211634,0.3738865447726207,0.3779310344827586,0.3811252268602541,0.3815359477124183,0.3845559845559845,0.0,1.6140970835771489,59.0059291105896,208.378596487795,314.2189726030713,fqhc6_100Compliance_baseline,84 -100000,95729,41767,391.908408110395,7119,73.24844091132259,5579,57.735900301893885,2214,22.75172622716209,77.3612597271838,79.72583644889112,63.34108899169471,65.08868199162619,77.08669199018608,79.45150733184862,63.24055644749024,64.99105680641466,0.2745677369977244,274.3291170424982,0.1005325442044693,97.62518521152684,85.76392,60.311910763633406,89590.32268173699,63002.75858270055,255.3714,158.85882289517824,266213.4567372478,165394.91992518282,276.80881,132.92283741160094,285806.87148095143,136284.2856594554,4046.60217,1800.6477751399264,4189129.3234025217,1842970.48453439,1377.05387,595.6241830546891,1425255.199573797,608961.613570276,2193.00552,904.9712015872168,2255633.1728107478,915538.3489032256,0.37961,100000,0,389836,4072.287394624409,0,0.0,0,0.0,21578,224.84304651672952,0,0.0,25802,266.1575906987433,2039601,0,73170,0,0,0,0,0,47,0.4909692987495952,0,0.0,0,0.0,0,0.0,0.07119,0.18753457495851,0.3109987357774968,0.02214,0.3190495260979842,0.6809504739020158,25.4627279820002,4.4923180700866086,0.3172611579136046,0.212224412977236,0.2337336440222262,0.2367807850869331,11.141910358051202,5.6000049370531935,23.487933400554727,12919.24798037149,62.71423154516701,13.859731579236536,20.02980793062677,14.43768905972352,14.387002975580176,0.5459759813586664,0.7677364864864865,0.6807909604519774,0.593558282208589,0.1196063588190764,0.7055435565154787,0.8975741239892183,0.847457627118644,0.7391304347826086,0.1592592592592592,0.4930787589498807,0.7084870848708487,0.6201848998459168,0.5544747081712063,0.1094196003805899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045725525184524,0.0070731261797,0.0092247361095589,0.0113800467812468,0.0137268080079835,0.0157139069606183,0.0178077296165824,0.020111034997495,0.0223177723177723,0.024422503152779,0.0269295948236019,0.0291473824951146,0.0313684687654524,0.0334354973530231,0.0353472696069309,0.0373645947681282,0.0394765517169809,0.0415739450533452,0.0436368183049575,0.0584304389591947,0.0726404923643747,0.0861980341351348,0.0985794050535746,0.1102152237610405,0.125735970318066,0.1386564869307035,0.150511778349967,0.1621257916715617,0.1728355361181678,0.1867873946232275,0.1997057741816844,0.2113588675922201,0.2226728171046303,0.2342865309981639,0.2456423820538076,0.2563939616919749,0.266108551522643,0.275066598651023,0.283722846613409,0.2926248366919866,0.3005550686532282,0.3084939025111481,0.3151888882236724,0.3213323952546156,0.3268613192573179,0.3326583923906658,0.3380466157191358,0.3425903138479074,0.3483836036131213,0.3499346810143971,0.3498473303441257,0.3507049593644802,0.3515768468846248,0.3524380448040936,0.352082438814942,0.352023194651288,0.3529904699309891,0.3537164934354486,0.3548277465746073,0.356075117370892,0.3572690635484703,0.3575849437918403,0.358081545546445,0.3601064473206725,0.3611140304781923,0.3603186471873921,0.3625766286567354,0.3641935941043084,0.3656952739808394,0.3696289509848832,0.3734028960817717,0.3756703892990094,0.377345537757437,0.3782894736842105,0.3776223776223776,0.3757075110907144,0.3780710659898477,0.3839009287925696,0.3801452784503632,0.0,2.1565834462020628,61.36027523864527,206.6316883489069,321.3320629195013,fqhc6_100Compliance_baseline,85 -100000,95652,41868,394.2520804583281,7049,72.40831346966085,5515,57.09237653159369,2272,23.407769832308787,77.2430810454354,79.64946255699347,63.27207635196621,65.0509213580328,76.96242601310745,79.36609692559158,63.16974218178921,64.94981334872244,0.2806550323279566,283.3656314018924,0.1023341701770021,101.10800931035158,85.59342,60.2136524279405,89484.19269853218,62950.75108512159,257.18131,161.21072415932517,268273.8050432819,167941.08479730107,277.97731,133.8192237644452,286916.1753021369,137021.1732620034,4040.60961,1826.332106206548,4185720.4135825695,1870891.455106292,1359.58876,593.2691672513145,1409352.3501860911,608256.2974546682,2253.19864,937.55244059159,2323429.138962071,952897.0061419592,0.37975,100000,0,389061,4067.463304478735,0,0.0,0,0.0,21835,227.6481411784385,0,0.0,25900,267.17684941245346,2030279,0,72849,0,0,0,0,0,44,0.4495462719023125,0,0.0,1,0.0104545644628444,0,0.0,0.07049,0.1856221198156682,0.3223152220173074,0.02272,0.3214237379889024,0.6785762620110976,25.23112882079485,4.520044131693669,0.3182230281051677,0.2012692656391659,0.2339075249320036,0.2466001813236627,11.052531277330427,5.530737308917032,24.334181637740123,12945.57502900953,62.77017654172289,13.19664665161453,20.028354749507777,14.516067813115166,15.029107327485422,0.5392565729827743,0.772972972972973,0.7008547008547008,0.5736434108527132,0.1073529411764705,0.7058823529411765,0.9353932584269664,0.8810572687224669,0.6777408637873754,0.166077738515901,0.4828925018199466,0.6962864721485411,0.6379707916986933,0.5419615773508595,0.0919220055710306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.0044833952082445,0.0067307594692547,0.0092157002204858,0.0113108134224365,0.0137888894546565,0.0158552128473107,0.0180321842836137,0.0200834424083769,0.0221905912712228,0.0241101003989293,0.0260739188925516,0.0279928835138164,0.0300816944647621,0.0326579482468544,0.0344738447539576,0.0364837987900886,0.0383298044588367,0.040377354565595,0.0426070911043232,0.0573993186900457,0.0716964136081783,0.0851530676521227,0.097938090075677,0.1101093703813183,0.1255161023947151,0.1392999415732724,0.1519502808958819,0.163956001626399,0.1749385116049276,0.188050328038674,0.2004119687771032,0.2120644395307547,0.223545002519002,0.2347669855826462,0.2463829220663944,0.2570105997584865,0.2668147029317944,0.2770337865490428,0.2849983370987534,0.2931903796001159,0.3008291951653705,0.3081261032852725,0.3156884157976214,0.3222178950442995,0.328125,0.3344998871076992,0.3399599341593191,0.3455757213568394,0.3511763693415774,0.3523900805918166,0.3528787001020718,0.3527507633156169,0.3526656224620025,0.3529157086978591,0.3522297110146801,0.3514825484235488,0.3526292313029687,0.352579303708286,0.3537056677032589,0.3550556279632043,0.3557953095086152,0.3580658783783784,0.3597501860077108,0.360343992248062,0.3621734091866835,0.3635969726731758,0.367428698610537,0.3693177776196912,0.3708577194752775,0.3717109842684115,0.3722525247070259,0.373561013046815,0.3769337871287129,0.3756003842459174,0.3777134587554269,0.3816204287515763,0.380595461170102,0.3856741573033708,0.3995308835027365,0.0,2.1152576677130264,61.813937456417065,212.72688929535096,311.71269593407686,fqhc6_100Compliance_baseline,86 -100000,95825,42214,397.5893555961388,7093,73.07070180015653,5510,57.02061048786851,2234,22.968953822071484,77.44904619750217,79.77671647926783,63.38601454967061,65.10763836951797,77.1754979203437,79.50211705017487,63.286070231328765,65.00956964615523,0.2735482771584685,274.5994290929588,0.0999443183418478,98.06872336274353,85.57472,60.17053415889307,89302.89590399165,62791.9012726062,257.76942,160.65259579747078,268498.55465692666,167152.21140772387,279.68801,133.73415787308485,289290.7278893817,137483.08421805588,3980.29249,1780.9205890895987,4121502.050613097,1826442.0328319503,1318.45237,569.3952152782465,1363632.6324028175,582044.8519959565,2191.00586,906.3930108720904,2254746.9032089747,918412.4336596192,0.38346,100000,0,388976,4059.2225410905294,0,0.0,0,0.0,21799,226.95538742499343,0,0.0,25993,268.8233759457344,2042216,0,73264,0,0,0,0,0,56,0.5530915731802766,0,0.0,0,0.0,0,0.0,0.07093,0.1849736608772753,0.3149584096997039,0.02234,0.3154227522444057,0.6845772477555943,25.13554670633585,4.594948295866911,0.3288566243194192,0.2032667876588021,0.2346642468239564,0.2332123411978221,11.318232913047623,5.795922758759449,23.597416788526147,12948.292572689965,61.89985957220594,13.087230250986371,20.380186140535148,14.454914013467253,13.977529167217163,0.5430127041742286,0.7741071428571429,0.6810154525386314,0.576952822892498,0.11284046692607,0.698237885462555,0.9211267605633804,0.8426966292134831,0.7278688524590164,0.1050583657587548,0.4920443587270974,0.7058823529411765,0.6283833211411851,0.5303643724696356,0.1147859922178988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021571149347295,0.0046222618673532,0.0067374915020344,0.0090307900163549,0.011277545583046,0.0134299939926486,0.0157213788322135,0.0178711764765919,0.020091977516607,0.0220400896337907,0.0239483527181431,0.0261083743842364,0.0280941611842105,0.0298887024205421,0.0320644382793081,0.0341129798752014,0.0361101623870587,0.0381791787639983,0.0400831168831168,0.0421819696023318,0.057080864558124,0.071064132321268,0.084841688239548,0.0972693556351716,0.1089732782601365,0.1245297374984148,0.1382523160416357,0.1506805614632071,0.1629184714191222,0.1745871972244233,0.1883972256572934,0.2009830929617025,0.2129759306908119,0.2249380749211614,0.2355860009660563,0.2464932739391393,0.2571778594498273,0.2675466657687084,0.2763847538404066,0.2854319238634935,0.2936653621030028,0.3013033686888134,0.3083604777415852,0.3156051259981829,0.3227737650879829,0.3287516290048932,0.3344566343405599,0.3397212985760337,0.3449612403100775,0.3504041707259275,0.3512649299351076,0.3520670237604724,0.3527757862033093,0.353000577034045,0.353180013040128,0.3530687353969732,0.3531212039943839,0.3537305860596043,0.3548765957446808,0.3569357220373961,0.3582212257100149,0.3591769969058552,0.3600359847692372,0.3612024424612494,0.3630918013856813,0.3639319529705546,0.3651742993848257,0.3692790953353227,0.3715985496532545,0.3730300504148306,0.3718645771462512,0.3750066727165964,0.3758151313706869,0.3728878354614267,0.3742296387598369,0.3723062269317776,0.3748845798707294,0.3718263718263718,0.3734072022160665,0.3623076923076923,0.0,1.815766190911111,60.22703513281533,210.65350010085697,310.7065819945347,fqhc6_100Compliance_baseline,87 -100000,95804,41987,394.0023381069684,7081,72.73182748110726,5500,56.793035781387,2248,23.099244290426288,77.3497797498425,79.68313521528783,63.33168066437421,65.06010357910846,77.07729273760248,79.41052496930959,63.2314156567826,64.96189068702618,0.2724870122400205,272.61024597824246,0.1002650075916165,98.21289208227311,86.3478,60.74719720651035,90129.6396810154,63407.78799059575,256.66363,160.03289563948366,267318.19130725233,166455.24783879967,278.88973,133.51686659577723,287102.1773621143,136222.3681799387,3999.14881,1796.6206983572756,4135823.75474928,1836829.8592514675,1341.92847,580.1296830357833,1386043.077533297,590887.4134334925,2216.89574,919.1812709227424,2281467.350006263,933920.904362855,0.38112,100000,0,392490,4096.801803682519,0,0.0,0,0.0,21728,226.17009728195063,0,0.0,25920,266.4606905765939,2033064,0,72934,0,0,0,0,0,51,0.5323368544110892,0,0.0,0,0.0,0,0.0,0.07081,0.1857945004198153,0.3174692839994351,0.02248,0.3176328502415459,0.6823671497584541,25.151351742058356,4.683700685905105,0.3296363636363636,0.1958181818181818,0.2358181818181818,0.2387272727272727,11.103907146178283,5.447389251133548,23.852985579287218,12900.430398694818,62.044939251425895,12.485489708567195,20.57488470152415,14.56677226161423,14.41779257972032,0.5416363636363636,0.7669452181987001,0.6839492553778268,0.5844255975327679,0.118050266565118,0.6992700729927007,0.9142011834319528,0.8463203463203464,0.7318611987381703,0.1027667984189723,0.4893462469733656,0.699594046008119,0.6284233900814211,0.536734693877551,0.1216981132075471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.004440974580997,0.0064241784561674,0.0087982200367777,0.0112704709592106,0.013583829743903,0.0156606851549755,0.0178434715147555,0.0200639839733434,0.0222827255140789,0.0245102561736937,0.0265516710303403,0.0283690130997182,0.0306038388664634,0.0327202582961121,0.0350902571838932,0.0371305833031416,0.0394568971776493,0.0414779103112921,0.0434578904078211,0.0579416827499869,0.0721888788975093,0.0853160046116759,0.0979928541403951,0.110406104746145,0.1258365668249051,0.1392507106792821,0.1521334227359324,0.1638022196349031,0.1750640936249638,0.1880839233181392,0.1998528027015033,0.2121963689368969,0.2226607340031266,0.2331550919813396,0.2440824468085106,0.2546877092727354,0.2647942139185404,0.2745730011916246,0.2837248187638146,0.2916507550772435,0.2996175393864255,0.3077587635210301,0.3138194627495147,0.3206369256555694,0.3270820754833224,0.3330414660078804,0.3388812541354914,0.3434080520052316,0.348554676667503,0.3489876796161,0.3493146907145418,0.3505236119344003,0.3499883970528514,0.3503620273531778,0.3493199054315453,0.3495889802266163,0.3510734556222752,0.3519000788130075,0.3533860186728312,0.3549933271930979,0.3558108161726778,0.3577551792242719,0.3599874498554492,0.3597985590708658,0.361296223703123,0.3621127765881513,0.3646203706617161,0.3671644930584771,0.3688294208463639,0.3706609496875427,0.3739560614926326,0.3756650620724601,0.3748843663274745,0.3770663119893597,0.3799880881477069,0.3803945745992602,0.3825680617635107,0.3838940981798124,0.3840438013296832,0.0,2.361545685734743,60.41674267616709,205.57177770544357,316.48541444193586,fqhc6_100Compliance_baseline,88 -100000,95790,41785,392.7549848627205,7194,73.94300031318508,5620,57.99143960747468,2247,23.02954379371542,77.41775944651599,79.74514261503901,63.37436231324406,65.09494381421027,77.14442076143368,79.47362585842905,63.27439792123453,64.99871892184026,0.2733386850823081,271.51675660996943,0.0999643920095323,96.22489237000308,83.97576,59.13146552079257,87666.52051362356,61730.31164087333,253.16272,156.95331217978554,263610.75268817204,163173.9495028162,275.40958,132.32131715683994,283237.874517173,134904.7229332877,4082.043,1814.418121819573,4215500.260987577,1848271.5341029025,1368.0428,587.9083190228259,1412751.7590562687,598383.424050589,2220.72274,917.1434232477012,2278366.2177680344,923563.6082668907,0.37955,100000,0,381708,3984.841841528343,0,0.0,0,0.0,21403,222.72679820440547,0,0.0,25626,263.1798726380624,2052107,0,73579,0,0,0,0,0,48,0.5010961478233635,0,0.0,0,0.0,0,0.0,0.07194,0.1895402450270056,0.3123436196830692,0.02247,0.3233969263381028,0.6766030736618972,25.39800469255654,4.57181608504443,0.3202846975088968,0.2056939501779359,0.2389679715302491,0.2350533807829181,10.941299680124857,5.374823789419355,23.84793043511024,12846.289164607382,62.81912749064981,13.392690018646544,20.144703630390303,14.871100416455397,14.410633425157569,0.5393238434163701,0.7612456747404844,0.6872222222222222,0.573343261355175,0.109008327024981,0.6959761549925484,0.920424403183024,0.8496420047732697,0.6920415224913494,0.1206225680933852,0.4901823281907433,0.6842105263157895,0.6379435191889935,0.540796963946869,0.106203007518797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023997812857562,0.00468308110245,0.0068999807206421,0.0090999573439499,0.011144553811112,0.013345413086852,0.0154214657017633,0.0175961459949375,0.0197980334839224,0.0217689442010889,0.0242517425174251,0.0261348005502063,0.02806274542053,0.0300409743241295,0.0320062692692383,0.0338683688646504,0.0361086675291073,0.0384328280838534,0.0404637488442639,0.0426023674922697,0.0572811785941591,0.070380127963869,0.0836862629989936,0.097152041684613,0.108754042069118,0.1243370031485747,0.1377432648607418,0.1500170111422982,0.1617728650078955,0.1727458731025913,0.1865401987353206,0.1994620519800375,0.211400651465798,0.2225352112676056,0.233340656926288,0.2441538904006548,0.2547400100317672,0.2645126511909976,0.2732761647994381,0.2817064104763538,0.2898205806578324,0.2981364283879405,0.3053508150248051,0.3123915307185005,0.3188089257762732,0.3248291571753986,0.3309293169176926,0.3366210788550511,0.3421250064676359,0.3479120270929144,0.3488503428801936,0.3497062506019455,0.3506526422506653,0.3507048763577536,0.3509228162986298,0.3510137775666273,0.3507330356860137,0.3516970722015139,0.3522585709653748,0.3529380265600457,0.3539811395039277,0.3557121149330018,0.3581317415436171,0.3596007413527454,0.3602563793643527,0.3617071260767424,0.3631515911942511,0.3660930569100575,0.368252853380158,0.3708119709073566,0.3713646532438479,0.3734464180935616,0.3760040478148124,0.3762981062919975,0.3791635124905375,0.3803475134811264,0.3773614363778298,0.3800041059330732,0.3814773980154355,0.3860537592520452,0.0,2.560536600318664,58.62297480594895,209.6881910196428,328.8069767740876,fqhc6_100Compliance_baseline,89 -100000,95713,41747,393.2799097301307,7106,73.00993595436357,5505,56.847032273567855,2252,23.037622893441853,77.3893283971574,79.7502679344775,63.35181630130408,65.09359678668672,77.11667041930323,79.48295254013092,63.25270051070304,65.00053824190007,0.2726579778541662,267.315394346582,0.0991157906010329,93.05854478664344,85.42798,60.06459400501619,89254.31237136021,62754.89641429711,254.27018,157.83423516369714,264992.8954269535,164237.5697801732,276.27479,131.86752432545006,285527.9115689614,135223.80784792453,4000.24005,1781.391711016111,4136541.577424175,1818310.6798617863,1367.18419,595.4688069906539,1412956.1292614378,606675.4954819657,2216.55208,903.0183694787833,2271715.064829229,904302.2427599356,0.3798,100000,0,388309,4057.014198698192,0,0.0,0,0.0,21516,224.117935912572,0,0.0,25778,266.1080521977161,2042299,0,73264,0,0,0,0,0,42,0.4388118646369877,0,0.0,1,0.0104479015389758,0,0.0,0.07106,0.1870984728804634,0.3169152828595553,0.02252,0.3153382451440054,0.6846617548559947,25.215761792112293,4.613729324749805,0.3280653950953678,0.2065395095367847,0.2277929155313351,0.2376021798365122,11.576827339018584,6.001264645686154,23.614958289959105,12860.126274038734,61.88955842692534,13.343731970004647,20.354331380683117,13.829155121961628,14.362339954275946,0.5522252497729337,0.7792436235708003,0.6982281284606866,0.5845295055821371,0.1223241590214067,0.7288389513108614,0.9411764705882352,0.8356164383561644,0.762589928057554,0.1755102040816326,0.4956834532374101,0.6998689384010485,0.6542397660818714,0.5338114754098361,0.1100658513640639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078855950656,0.004449309292874,0.006613716360833,0.0087527796675568,0.0109796266926924,0.0131710196852798,0.0152963476275884,0.0173976041305279,0.0193119233245118,0.0214268172888015,0.0235787186949215,0.0253421706030821,0.0271583879652273,0.029254634728813,0.031414692505234,0.0334735384392794,0.0356266501009473,0.0378730511094283,0.0397596748542145,0.041827273674341,0.0559941520467836,0.0694858673698971,0.0832668988377459,0.0961083479668983,0.1086993189820574,0.1241367640682339,0.1372836048879837,0.1501298811906485,0.1626123094345266,0.1737778397332103,0.1863450355373681,0.1991908614945264,0.2110034895476633,0.2227349268484702,0.2336652181088068,0.245098690768924,0.255546875,0.2659933417311499,0.2752606914706516,0.284077892325315,0.2926620568441987,0.2997592107723957,0.3071466572087249,0.3140938150994899,0.3203525213042317,0.3265293560023145,0.3329664006404643,0.3382412775912928,0.3428441970354068,0.3475955577831122,0.3482664012696022,0.3489011744643397,0.3497545951875342,0.351012800878435,0.3518774219411162,0.3521288309781611,0.3519413641676934,0.3522861260317044,0.3525730655117143,0.3540113437734099,0.3550736849989701,0.3557730328192962,0.357553624648449,0.3586652024831357,0.3584113502557668,0.3603474359643174,0.361440968257593,0.3652901926224348,0.3689999297209923,0.3719664773404297,0.3738403180841826,0.376551133932392,0.3778214557443571,0.3766877717598596,0.3777462121212121,0.3830673969992855,0.3792838481635162,0.3839249286005712,0.3748231966053748,0.3752479174930583,0.0,2.667905944134058,58.3725752815424,210.92270079470825,314.3774562103565,fqhc6_100Compliance_baseline,90 -100000,95672,41735,392.6749728238147,7132,73.250271761853,5531,57.22677481394766,2211,22.72347186219584,77.35982293729873,79.73780002330709,63.33991942654043,65.0907305274423,77.09262633472206,79.47015549199065,63.2420540120905,64.99554646067536,0.267196602576675,267.64453131643506,0.0978654144499344,95.18406676694724,85.29862,60.01765661817157,89157.35011288569,62732.72913514044,255.50428,158.72661404477267,266493.60314407555,165339.0296522755,273.21383,130.70281625656116,282093.47562505223,133866.1435414571,4019.20421,1793.9429452951388,4160956.0581988464,1835121.9723182933,1351.0725,584.1309964507562,1395738.5023831422,594112.4874040637,2190.68774,910.9225630313244,2253206.978008195,919607.3617593616,0.3803,100000,0,387721,4052.6068233129854,0,0.0,0,0.0,21653,225.71912367254788,0,0.0,25468,262.7728070908939,2041288,0,73154,0,0,0,0,0,50,0.5226189480725814,0,0.0,0,0.0,0,0.0,0.07132,0.187536155666579,0.3100112170499158,0.02211,0.3204906012531662,0.6795093987468338,25.31021287351313,4.595741598957675,0.3281504248779606,0.2080998011209546,0.2236485264870728,0.2401012475140119,10.967440350891904,5.239359758197702,23.572113851184152,12943.014175998846,62.22985101479785,13.586812829665575,20.202504407507792,13.797391130763256,14.64314264686123,0.5351654312059302,0.7463075586446568,0.6776859504132231,0.5788197251414713,0.1167168674698795,0.7020348837209303,0.9037974683544304,0.8666666666666667,0.7068965517241379,0.1476014760147601,0.4799037304452467,0.6640211640211641,0.6207885304659498,0.5395987328405492,0.1087984862819299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022481467979098,0.0045712084815681,0.0071323492111804,0.0092421441774491,0.0114181714657556,0.0134052623543182,0.0154678568153333,0.0176508998898094,0.0197143966168869,0.0217386856534904,0.0239924600979367,0.0261708130289817,0.0285423561576253,0.030364184882775,0.0325432190452613,0.0346032205386857,0.0365443345928878,0.0387591271158314,0.0406820190258356,0.0426880106720026,0.0574721049772242,0.0713694857753159,0.0847100065072734,0.0969371113519428,0.1090285834827549,0.1240225591755108,0.1371905914320893,0.1499568630374812,0.1624458816612325,0.1744142364949715,0.1877417755891512,0.200651839660437,0.2127071522616729,0.2246456908344733,0.2353414008390499,0.2464885462359874,0.2568881052549352,0.2663271958813875,0.2761756801197509,0.2849228515177876,0.2933203811638449,0.3014946669161676,0.3082502159277795,0.3151634926338483,0.3216357238199248,0.3276203843928145,0.3332708294268391,0.339222390279243,0.3448217866614917,0.3494107866295411,0.3511309659970128,0.3517697897170538,0.3524667597253359,0.3528646398056989,0.3525190544817032,0.3517539423474782,0.3529421089341196,0.3544141357638775,0.3559955429844861,0.3579388683842763,0.3593873332080436,0.3615038369257005,0.3629442691903259,0.3633671363187651,0.3639345843986685,0.36531182290443,0.3663027677222586,0.3677665134437378,0.3699111314060908,0.3699339119356636,0.369865520080505,0.3703505485683703,0.3696331738437001,0.3756071235833783,0.3793070716658756,0.3823953823953824,0.3867590454195535,0.3930894308943089,0.4010303687635574,0.3970023059185242,0.0,2.2621598335293034,60.82717062416857,203.97593740265748,320.0232141135102,fqhc6_100Compliance_baseline,91 -100000,95851,41586,391.0965978445713,7027,71.94499796559244,5457,56.3270075429573,2233,22.88969337826418,77.34109898624328,79.63048947803823,63.34986309044478,65.04355900266445,77.06550561069474,79.35601516814286,63.24817344200044,64.94458591637367,0.2755933755485387,274.4743098953677,0.101689648444335,98.9730862907834,84.87006,59.69239628352756,88543.73976275677,62276.23737209581,253.88515,158.1042570855716,264264.14956547145,164337.29130167823,271.62815,130.00997402650984,279158.3290732491,132374.62465101018,3979.25281,1792.8964167874526,4111536.1968054585,1830753.6396386372,1346.20889,586.2510115564153,1392279.4858686922,599506.094655335,2206.20108,922.1146764733884,2265028.5547359963,933419.5854614018,0.37873,100000,0,385773,4024.715443761672,0,0.0,0,0.0,21473,223.37795119508405,0,0.0,25279,259.5591073645554,2043531,0,73366,0,0,0,0,0,53,0.5529415446891529,0,0.0,0,0.0,0,0.0,0.07027,0.1855411506878251,0.3177742991319197,0.02233,0.3203357703763878,0.6796642296236123,25.268993457265907,4.644364430159606,0.3309510720175921,0.203591717060656,0.2255818215136522,0.2398753894080997,11.360991161048418,5.660582623692106,23.857898308931205,12893.299079890014,61.651004183018,13.118808061481351,20.346552223074188,13.618109358900082,14.56753453956235,0.544621586952538,0.7713771377137714,0.6993355481727574,0.5751421608448416,0.1100076394194041,0.6909361069836553,0.9154518950437318,0.8526785714285714,0.7297297297297297,0.152027027027027,0.4967161274629044,0.70703125,0.6487481590574374,0.5339506172839507,0.0977295162882527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695002784669,0.0047522063815342,0.0070697542322165,0.0092899059841208,0.0112414367897871,0.0136367336969795,0.0157604653768961,0.0178627901045651,0.0201009131207484,0.0220035393884836,0.0239178087804478,0.0257740946246705,0.0279475354608108,0.0299610054222011,0.0320563020361058,0.0340595939683555,0.0362630544928135,0.03802438948579,0.0400423574847128,0.0419692461349591,0.0564135183891385,0.0699273658358154,0.0833036555986173,0.0962172607170611,0.1079123054566897,0.1233180541179949,0.1361286495190474,0.1489655758967489,0.1606961829454386,0.1723646418313542,0.1865192965840849,0.1996474265381828,0.2116919263302094,0.2231356173068934,0.233693499405836,0.2449255451161141,0.2563158364577754,0.2660178882826123,0.275501634283639,0.2847111650763468,0.2922409303940288,0.3005124365304069,0.3077159799732503,0.3133863175938912,0.3195187165775401,0.3266053914009006,0.3336255918234425,0.3389442053528228,0.3440450748008549,0.3493531720337751,0.3496602491506229,0.3511923622687258,0.3513193003261192,0.3520456983790994,0.3531490427625693,0.3527143691050416,0.3527645853519068,0.3538694942365726,0.3555215462392956,0.3558852122565081,0.3558184807877677,0.3572439077848845,0.3585456082866504,0.3608531598093043,0.3632186702321623,0.3651525530905833,0.3663781949915183,0.3684795377337524,0.3722055447642592,0.3741907121732875,0.3737901931104078,0.3740237509361292,0.3765730265666709,0.3783472723087547,0.3801621363853124,0.3844305622296972,0.3864343497199751,0.3843169287318767,0.3811634349030471,0.3871217998448409,0.0,2.3994973687260077,59.14596041384434,207.18319597060656,314.0707539788085,fqhc6_100Compliance_baseline,92 -100000,95634,41824,394.44130748478574,7130,73.27937762720371,5565,57.51092707614447,2250,23.04619695924044,77.31769350596971,79.74074790460148,63.289715480586615,65.08162823911445,77.05196055055978,79.47689572960856,63.19227307871197,64.98812957696917,0.2657329554099306,263.8521749929197,0.0974424018746447,93.49866214527935,85.83058,60.33244958324499,89749.02231423972,63086.82015103936,256.50482,159.18614037192958,267574.61781374825,165813.02713671868,273.30601,130.15536961252303,281976.0231716754,133124.64342700024,4032.17211,1790.183875989768,4169547.953656649,1825205.7385341693,1364.21162,587.7816504898134,1407286.3521341784,595409.8547481152,2224.20588,911.4445154291566,2280466.08946609,914299.1553838104,0.38074,100000,0,390139,4079.501014283623,0,0.0,0,0.0,21790,227.15770541857495,0,0.0,25561,263.41050254093733,2035710,0,73000,0,0,0,0,0,33,0.3450655624568668,0,0.0,0,0.0,0,0.0,0.0713,0.1872669012974733,0.3155680224403927,0.0225,0.3202728002139609,0.679727199786039,25.491461238042845,4.5723565855342585,0.3250673854447439,0.2109613656783468,0.2197663971248876,0.2442048517520215,11.253464752690352,5.642617791885074,23.55647971810414,12912.480605229272,62.34265895169709,13.680750020959389,20.35839066364929,13.581092661092825,14.722425605995578,0.5376460017969452,0.7614991482112436,0.6920950801547816,0.5560098119378577,0.12214863870493,0.7071865443425076,0.907608695652174,0.8624708624708625,0.6828358208955224,0.1563786008230452,0.485553206483439,0.6947890818858561,0.6391304347826087,0.5204188481675392,0.1146953405017921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019146608315098,0.0044619316107573,0.0066192893401015,0.0087704143334789,0.0110187512081964,0.0129889975550122,0.0152000489666006,0.0173990335005465,0.0192604873455937,0.0215154062198897,0.0236513883898783,0.0256439257621716,0.0278550097827206,0.0299666807645887,0.0321117505450112,0.0342722324551418,0.0364333851736651,0.0384635359862058,0.0403267769799146,0.0420590474402694,0.0567997742640066,0.070489982395842,0.0842839436146299,0.0969634412226283,0.1086972593335797,0.1242320891412108,0.1371727971262474,0.1497009818030637,0.1614404467695863,0.1728379147733986,0.1867017604418364,0.1997052640703898,0.2122684151481816,0.2241556791799903,0.2346406885379588,0.2457434418501469,0.2563337468289357,0.266772533252244,0.2767677685293483,0.2854457726381901,0.2936700944969427,0.3017896227629715,0.3086709310589907,0.3148365887603782,0.3218821468541676,0.3282858798722518,0.3337297662714856,0.3392852597551353,0.3452924097884695,0.3505947660586835,0.3513546316399876,0.3517210032643279,0.3528947182850293,0.3530899891579327,0.3537627219374489,0.3540804121814334,0.3535922114576561,0.3549091745228788,0.3557746527006476,0.3562498885381556,0.3569170921468514,0.3576527191702488,0.3581837513290387,0.3584640755927973,0.3596642685851319,0.359764669131046,0.3608124253285543,0.3637445955260354,0.3658904397839658,0.3655358703424168,0.3655402624719923,0.3698527842969917,0.3699670802734869,0.3721623480853015,0.3761702127659574,0.3761751755325479,0.3787528868360277,0.3759595959595959,0.3750345208505937,0.3789796701189106,0.0,2.6447814374549865,57.20663516173675,208.30851178021533,329.8566768469236,fqhc6_100Compliance_baseline,93 -100000,95712,41956,393.02281845536606,7250,74.55700434637245,5656,58.51930792377132,2320,23.831912403878302,77.34880342590687,79.70754281981411,63.338894218876014,65.07756654464826,77.06194254582725,79.4201063022315,63.23330464844222,64.97453524164517,0.2868608800796153,287.4365175826057,0.1055895704337928,103.03130300309248,85.61564,60.229063795159085,89451.31227014375,62927.39029082987,256.90702,159.85652787590504,267846.27841858915,166447.82041531368,282.94021,135.27354192039675,292343.7917920428,138745.26226062828,4096.51022,1844.895332606148,4240980.075643597,1888490.4323451044,1392.66587,608.2793262825126,1437970.7769140757,618450.5321317468,2292.0273,955.3752706059428,2357349.548645938,966740.7553725092,0.38093,100000,0,389162,4065.968739551989,0,0.0,0,0.0,21675,225.8650952858576,0,0.0,26364,272.1602306920762,2037345,0,73108,0,0,0,0,0,53,0.5537445670344366,0,0.0,0,0.0,0,0.0,0.0725,0.1903236815162891,0.32,0.0232,0.3205986608901142,0.6794013391098858,25.40595382149038,4.507350267872913,0.323019801980198,0.2153465346534653,0.2194130127298444,0.2422206506364922,11.031326662023924,5.571908532850636,24.74992537555631,13036.274424980726,64.03986583437477,14.273705139736302,20.765186798370927,13.910535597019631,15.090438299247907,0.5498585572842999,0.7816091954022989,0.6836343732895457,0.5914585012087027,0.1277372262773722,0.7015781922525107,0.9140625,0.8217391304347826,0.7247386759581882,0.155893536121673,0.5002346316283435,0.7206235011990407,0.6371616678858815,0.5513626834381551,0.1210478771454381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021163914007675,0.004480395734501,0.0068286743442747,0.0091630349759749,0.0114486741499918,0.0136509390746678,0.016115058048865,0.0186791875063795,0.0208267334321189,0.0229670948262627,0.025100957300699,0.027279724944835,0.0293216540209322,0.031544377297108,0.0338350130491742,0.0360102502634896,0.0381967094295861,0.0404855779207304,0.0424837280875044,0.0443779891842327,0.0591091848989608,0.0737213366963547,0.0872160730210355,0.0994529195160441,0.1111427546779739,0.1264068714563764,0.1396284074148743,0.1528478654317044,0.1641559829059829,0.1752936759105294,0.1895819866408101,0.2022183746347798,0.2145110410094637,0.2261381286779987,0.2367123709751964,0.2480718085106383,0.2589820359281437,0.2687348685321772,0.2784787126520322,0.2867194572728418,0.2947687747493226,0.3025277940315974,0.30985932171277,0.3169377944543678,0.3229615950040701,0.3292132892985656,0.3353843844970547,0.3403329814430891,0.3455884256024018,0.350405023879258,0.351254093831287,0.3520521334196713,0.3527220387774109,0.353502446934816,0.354065204116587,0.3544847694314432,0.3533864415386568,0.3544266337854501,0.3555391913414279,0.3571735549029439,0.358629751290474,0.3601488578328516,0.3611752845801655,0.3604034685716853,0.3626559628590773,0.3641535154406753,0.365602826692712,0.3690268573421695,0.3701229855810009,0.3743005595523581,0.3770062083237526,0.3791931830439003,0.3778162911611785,0.3788819875776397,0.3795019157088122,0.3797238372093023,0.3855819067064551,0.385880882965431,0.3864406779661017,0.3822257176563114,0.0,2.219213971449835,61.5653718597241,218.8860177767377,321.7985424834064,fqhc6_100Compliance_baseline,94 -100000,95636,41896,395.1336316868125,7198,73.98887448241248,5602,57.96980216654816,2275,23.296666527249155,77.26744378178137,79.68392405921354,63.28338998351626,65.06976637737557,76.99578931389843,79.41453722486429,63.18366473480771,64.97424185577688,0.2716544678829393,269.38683434924826,0.0997252487085518,95.52452159869064,85.81122,60.30704472238595,89726.90200342967,63058.9367208854,256.68789,159.57773138431483,267799.2701493162,166257.84368262457,275.51176,131.90368882748396,285165.73256932537,135508.68869732317,4075.46184,1806.674893354761,4216979.035091388,1844664.2721932773,1333.08702,576.8155865191115,1378521.8432389477,587740.7216101792,2247.5751,930.9306920721232,2303597.243715756,933117.0876417042,0.38058,100000,0,390051,4078.49554561044,0,0.0,0,0.0,21679,226.03412940733617,0,0.0,25609,264.7956836337781,2034530,0,72991,0,0,0,0,0,53,0.5541846166715463,0,0.0,0,0.0,0,0.0,0.07198,0.1891323768984182,0.3160600166712976,0.02275,0.3131273111463286,0.6868726888536715,25.415237866461226,4.597011961504866,0.3250624776865405,0.2079614423420207,0.2277757943591574,0.2392002856122813,10.772375382833046,5.2206632853064345,24.357603049131946,12911.806218217627,62.6770202002095,13.458592151987208,20.40599389213325,14.114937675900222,14.69749648018881,0.5355230274901821,0.7579399141630901,0.6886326194398682,0.5658307210031348,0.1052238805970149,0.6979560938682816,0.8945868945868946,0.8528735632183908,0.737037037037037,0.1433962264150943,0.4854006073347349,0.699017199017199,0.637085137085137,0.5198807157057654,0.095813953488372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020568626258941,0.0043804502129385,0.0065891000649772,0.0088102593285098,0.0107732530341102,0.0128528944473866,0.0152639843383567,0.0173763897538514,0.0195503021503287,0.0217406887794287,0.0239782575252551,0.0261946829929736,0.0281355443996378,0.0300769698405992,0.0322763774488553,0.0342606663978744,0.0362598779944693,0.0382902753702915,0.0400586681090977,0.0420376587359509,0.0572115384615384,0.0713193397016926,0.0842802831397424,0.0972915481982266,0.1096928810481529,0.124837189601313,0.1374812800713747,0.1491234613950018,0.1611937105572788,0.1733802983279459,0.187514154148109,0.2003141247833622,0.2120717426320142,0.224076424757069,0.2347112897011064,0.2461584480905797,0.2567184500691933,0.267205976664904,0.2765213442325159,0.2848956482871649,0.2929605186986222,0.3000865780606514,0.3080038367259938,0.3147588192944564,0.3206603727675313,0.3275050935358399,0.3334836979675714,0.3386392288199264,0.3447363643436989,0.3495515517104532,0.3506542611372935,0.3512585338942142,0.3524701296500296,0.3528217915078065,0.3530219370243247,0.3528561765971837,0.3533509335538662,0.3535406753708612,0.3542787621234449,0.3561499050553545,0.3564209218723532,0.3581501740427648,0.3588452217890633,0.3591546132422963,0.3596062687433491,0.360829069919979,0.3637977438011796,0.3651164996364326,0.3666808119386095,0.367347758018546,0.3699486182474656,0.3720715835140998,0.375048231511254,0.3755336489947993,0.3803288090231313,0.3799079011148812,0.3822055137844611,0.3846153846153846,0.3847701149425287,0.3841463414634146,0.0,2.3948442341845912,58.16877576844106,205.47827042309143,335.52998719830293,fqhc6_100Compliance_baseline,95 -100000,95829,42062,395.15178077617423,7123,73.06765175468804,5572,57.4669463314863,2242,22.926254056705176,77.40182060844235,79.71375399810829,63.36325590393732,65.07491838673494,77.12452367830386,79.43976549588004,63.2616100314814,64.9777787477861,0.2772969301384904,273.98850222824933,0.1016458724559186,97.13963894883192,86.8967,61.04453518650863,90678.91765540704,63701.5258288291,257.45623,160.08786552874358,268018.4495298918,166412.08353290084,278.89058,133.59826602226488,286903.317367394,136271.8203388547,4012.40397,1803.9399893023583,4140412.568220476,1835895.514617036,1340.47351,583.9319882417468,1385181.6047334317,595711.2755447166,2209.34938,917.7639148591684,2261977.8563900283,921265.2152079354,0.3834,100000,0,394985,4121.768984336683,0,0.0,0,0.0,21825,227.06070187521524,0,0.0,25963,266.7564098550544,2033423,0,73089,0,0,0,0,0,58,0.6052447588934456,0,0.0,0,0.0,0,0.0,0.07123,0.1857850808555033,0.3147550189526885,0.02242,0.3167842406495408,0.6832157593504592,25.12750235129036,4.588379811874356,0.3176597272074659,0.2112347451543431,0.2395908111988514,0.2315147164393395,11.182375069232926,5.62547269230496,23.841384515593905,13031.06664827425,62.887298626155705,13.802014177515058,19.943043992676323,14.798351429992795,14.343889025971524,0.5463029432878679,0.7502124044180118,0.6983050847457627,0.5842696629213483,0.1124031007751938,0.7166546503244412,0.916030534351145,0.8660508083140878,0.7090301003344481,0.1793893129770992,0.4898446833930704,0.6670918367346939,0.643979057591623,0.5482625482625483,0.0953307392996108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002085906964499,0.0044593540017634,0.0067463377023901,0.0090597925998151,0.011325627026972,0.0138136731951626,0.0159506701319879,0.0182894468258828,0.0203814624772573,0.022373929152636,0.024386243657424,0.0265324136798456,0.0285752464358033,0.0306927227049956,0.0329530921242625,0.0348208842644734,0.0369845147399801,0.0390717352081129,0.040965557355935,0.0429823283308702,0.0581143095536086,0.0716757446185692,0.0857636887608069,0.0979084157115693,0.1102977576019295,0.126091870253599,0.1395018698420433,0.1521616651252777,0.1638989092616704,0.1753684977290256,0.1889688404160347,0.2025003241561135,0.2143974620833514,0.2262466675407543,0.236478167187019,0.2473237316093035,0.2579821342939031,0.2684018213502726,0.2774242578918116,0.2862358650368539,0.2946646464880119,0.3029006348426923,0.310806974378386,0.3178658741191697,0.3243768524367135,0.3302197192818149,0.3357737313059258,0.3411612049664156,0.3471465015993059,0.3525289055488094,0.3531503380653503,0.3540418852492875,0.3539894066602806,0.3547646217625561,0.3555855882615024,0.3554625840957504,0.3556879019228942,0.3566644780039396,0.3577387261102944,0.3586253706283713,0.3601754484620142,0.3614126673389887,0.3626074198281283,0.363265945776524,0.3641941149580155,0.3666083961698019,0.3672398551344569,0.368746857717446,0.370362563237774,0.3734676007005253,0.375811614083219,0.3795222572543152,0.3798380976473564,0.3791813044142355,0.3814741968717804,0.3814652621612025,0.3799877225291589,0.3779141104294478,0.3797293565313449,0.3780769230769231,0.0,2.605590692620847,60.95165566504171,212.98794326673436,314.52084679793387,fqhc6_100Compliance_baseline,96 -100000,95708,41658,391.9212605006896,7047,72.50177623605133,5481,56.80820830024658,2200,22.68357922012789,77.32145341825886,79.71002750531639,63.3143933609397,65.08083605302882,77.05542909533216,79.44192439073494,63.21730053651227,64.98542723622188,0.2660243229266967,268.1031145814501,0.0970928244274276,95.40881680693758,85.55932,60.14828804705385,89396.2051239186,62845.62214971982,256.9617,160.34899318280554,268028.9526476366,167086.94591530174,274.86956,131.751631211709,284684.84348225856,135695.2418445816,4003.40789,1791.634862989493,4150789.819032892,1840072.5060756488,1367.73018,593.9237560151327,1419428.3445480005,610920.7757085429,2189.49272,903.5016668344504,2259068.437330213,918287.0471733776,0.37806,100000,0,388906,4063.463869269027,0,0.0,0,0.0,21802,227.32686922723283,0,0.0,25606,265.03531575207927,2036642,0,73086,0,0,0,0,0,57,0.5955614995611652,0,0.0,0,0.0,0,0.0,0.07047,0.1863989842882082,0.3121895842202355,0.022,0.3144441439004598,0.6855558560995402,25.3100070645218,4.59455085396534,0.3229337712096333,0.1981390257252326,0.2337164750957854,0.2452107279693486,10.964260352978654,5.310346287937047,23.388452301897576,12877.375357642031,61.83105197044452,12.715199096598182,20.111499152892645,14.19878181073611,14.805571910217584,0.5322021528918081,0.7697974217311234,0.6790960451977401,0.5807962529274004,0.1004464285714285,0.7183613752743233,0.9279538904899136,0.8782051282051282,0.7661870503597122,0.1313868613138686,0.4703451628585318,0.6955345060893099,0.6075268817204301,0.5294117647058824,0.0925233644859813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594634027721,0.0045837136193083,0.00677074874127,0.0090751110252944,0.0113645612892723,0.0137621220764403,0.0157255473857042,0.0181235258681424,0.0201803349076857,0.0223148024935256,0.0243392318891098,0.0265254985725728,0.0286798819063686,0.0308307400614141,0.0325763831544178,0.0345840096773193,0.0365739973483593,0.0386064323297736,0.0405170710400698,0.0424396548130237,0.0563615663418251,0.0700206220100702,0.0833210889779811,0.0965946162103003,0.1086234001920297,0.1241201934780538,0.1373681193877767,0.1496293613939419,0.1611986235492765,0.1725990669741005,0.186665230504093,0.2000173175166681,0.212638928159732,0.2237060856630354,0.2349402228308091,0.2466428278847325,0.2566919473566807,0.266262812443805,0.2756184947504478,0.2836712962432875,0.2913288379463098,0.298793321173004,0.3063000142052181,0.313557188582663,0.3200792329472955,0.3270583597186118,0.3326658072268045,0.3382472653268888,0.3437390843111634,0.348224649150575,0.3485485000269295,0.34923538148413,0.3493711179030691,0.349645902587079,0.351108466002083,0.3516458221437888,0.3509389671361502,0.3514398013386616,0.3526502250594739,0.3538725779614621,0.3548562738213702,0.3549147839873167,0.3555046834964506,0.3571204023891858,0.3590400464025908,0.3611526651444768,0.3616140713916192,0.363209939148073,0.3656397014608609,0.3658029430582213,0.3686526122823098,0.3704398135747576,0.3734739533397251,0.3773716409819562,0.3788731051577843,0.3832508748642452,0.387704280155642,0.3881457089936201,0.3883171070931849,0.3854207056998837,0.0,1.7791198517540725,60.87942181205611,206.82196664999083,312.3875505410803,fqhc6_100Compliance_baseline,97 -100000,95699,41774,392.3447475940188,7099,72.7071338258498,5513,56.959842840573046,2271,23.291779433431905,77.3455376358958,79.7312125501305,63.32130932583449,65.0868881396018,77.06679514783332,79.4562320942201,63.21858947946277,64.98881671044424,0.2787424880624769,274.980455910395,0.1027198463717269,98.07142915755662,86.31326,60.63070078073479,90192.43670257788,63355.62626645502,257.02144,160.57158741879005,267937.05263377883,167152.45448624334,280.87442,135.00751198015942,290110.7012612462,138325.02604472896,3990.92965,1799.2145829411438,4128561.688209909,1838344.3744878676,1355.02199,590.634044654607,1399659.850155174,600918.0186361475,2234.55058,928.4645111398108,2295336.711982361,935592.0961028256,0.37975,100000,0,392333,4099.65621375354,0,0.0,0,0.0,21781,226.9198215237359,0,0.0,26190,270.1909110858003,2033374,0,72932,0,0,0,0,0,48,0.5015726392125309,0,0.0,0,0.0,0,0.0,0.07099,0.186938775510204,0.3199042118608254,0.02271,0.3226581265012009,0.677341873498799,25.17908161341401,4.596197623648247,0.3243243243243243,0.2040631235262107,0.2388898966080174,0.2327226555414475,11.242881979263508,5.627694053909107,24.15377988067333,12930.507528463428,62.30157685434655,13.183034842231203,20.33957346546404,14.751810983998832,14.02715756265248,0.5583167059677127,0.7706666666666667,0.6996644295302014,0.6097190584662111,0.1223694466095089,0.7338593974175036,0.9303621169916436,0.8813186813186813,0.7838709677419354,0.1666666666666666,0.4989075018208303,0.695822454308094,0.6376594148537135,0.5561072492552135,0.1105626850937808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012401341452,0.0047162635022059,0.0067820701558454,0.009187178601191,0.0114246764873443,0.0135261764106742,0.0156635597887051,0.017952881345547,0.0198687009162303,0.0219659808911327,0.0240195274040039,0.0261914543960558,0.028174374588545,0.0303567380417533,0.0325287154666198,0.034674909797678,0.0368467395245247,0.0389413596263622,0.0409430312610495,0.0432929751807781,0.0576832694496955,0.0714106294350365,0.0845490229004429,0.0980408661433892,0.1108579625762082,0.1272119564642543,0.1398297890402818,0.1526041111939503,0.1645089214124589,0.1757267379449525,0.1892229900919647,0.202419896444897,0.2146511931719212,0.2259889478579635,0.235926733152808,0.2472767970922952,0.2580000669695177,0.2677940547717095,0.2767693040775112,0.2849162011173184,0.2932057704098749,0.3007856341189674,0.3082691648037093,0.3148496353162389,0.3206963108634691,0.3268170179239708,0.3322831101609091,0.3375974999364821,0.3425031010957204,0.3473499953935852,0.3488215850151837,0.3493782426089105,0.3501237832667529,0.351145809281921,0.3514463729417,0.3510156632403328,0.3508238276299112,0.3524057217165149,0.3537789951211161,0.3552131852382658,0.3560444937983474,0.3565182829888712,0.3564112291350531,0.3571027512633352,0.3586917107839582,0.3596003566371217,0.3589501402484401,0.3606215652833049,0.3621577758961332,0.3647941869285743,0.3673254643608747,0.3683592916577768,0.3694263487445449,0.372834585313506,0.3767632481890964,0.3777292576419214,0.3794663754095803,0.3794956593633733,0.3757643135075041,0.3768059351815697,0.0,2.5340016149275337,61.25957514840617,207.59338245018617,312.71807373741416,fqhc6_100Compliance_baseline,98 -100000,95612,41523,390.94465129900016,6950,71.4868426557336,5415,56.05990879805882,2223,22.884156800401623,77.23812690061078,79.66982993153225,63.25655152000609,65.05464783931154,76.96228744906298,79.39284589312864,63.15539028145599,64.95526876439276,0.275839451547796,276.9840384036115,0.1011612385500981,99.3790749187866,85.8253,60.40132429237705,89764.15094339623,63173.37184911627,256.18304,159.89350018418295,267400.0439275405,166691.4092207913,274.74312,132.11171362632692,283551.7717441325,135257.649620249,3926.04451,1771.7696695768886,4070089.246119734,1816946.502088534,1308.82313,570.5556620727402,1354728.2035727734,582578.8207262065,2193.95652,918.1090781193476,2261174.747939589,931737.8121440236,0.37662,100000,0,390115,4080.1886792452833,0,0.0,0,0.0,21747,226.87528762080075,0,0.0,25548,263.4711124126679,2028860,0,72835,0,0,0,0,0,44,0.4601932811780948,0,0.0,2,0.0209178764171861,0,0.0,0.0695,0.1845361372205406,0.3198561151079137,0.02223,0.319015047879617,0.680984952120383,25.25433256191584,4.564501446998295,0.3268698060941828,0.2036934441366574,0.2326869806094182,0.2367497691597414,11.089129323762096,5.54467199418765,23.910926855631605,12800.674617895322,61.24437209676621,12.826378583324404,19.91786077935096,14.277976631427483,14.222156102663376,0.5407202216066482,0.7642792384406165,0.6745762711864407,0.5904761904761905,0.1146645865834633,0.6750184229918939,0.9098837209302324,0.8085106382978723,0.7290969899665551,0.1477663230240549,0.4958107442089699,0.6982872200263505,0.6325167037861915,0.5473465140478668,0.1049445005045408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023512242581482,0.0044425060602679,0.0066099423279993,0.0089344703861439,0.0111341801009607,0.0129893945413979,0.0152073027691366,0.0173660769010746,0.0195978151913753,0.0216832423463378,0.0236292374620372,0.0257904092557771,0.0278503941870278,0.0298141256275708,0.031848646639059,0.034135590414304,0.036211150504862,0.0383940165169064,0.040274394686986,0.0424681827665345,0.0572972746944877,0.0714757259171548,0.0845292374929086,0.0969994418056009,0.1087069011035429,0.1235701576004067,0.136846019015244,0.1498353282244225,0.1610497710446356,0.1725760195916263,0.1858229486972002,0.1986687481028576,0.210853220006538,0.2217571387872279,0.2327249884282219,0.2436109415746546,0.2544407158836689,0.2641437093336641,0.2737848841176337,0.2829566854990584,0.2913673656481728,0.2990969860443297,0.3056063231349837,0.3120498298522179,0.3184788704918432,0.3244195970265556,0.3297788160819925,0.3352917134974967,0.3410444461782528,0.3463949220147622,0.3468659138548921,0.3481975008293708,0.3480117653713445,0.3481619141645856,0.3485689557405915,0.3476279198681921,0.3467723957835738,0.3471921800439212,0.3475141923275417,0.3491789730875642,0.3513620436306092,0.3523163527141805,0.3542132579433731,0.355577083380269,0.3562247343322601,0.3576680672268907,0.3581510334320292,0.3612670027584895,0.3639610963748895,0.3674535449397879,0.3694074414331649,0.3737708422402736,0.3750079128948534,0.3765110941086457,0.3783477932855526,0.3825272641062114,0.3852334748332323,0.3928643014632191,0.3893465129049973,0.3911382734912146,0.0,2.270289043102438,59.87547383393152,204.17930783944283,309.85297260042665,fqhc6_100Compliance_baseline,99 -100000,95724,41762,392.7646149346036,7070,72.72993188750992,5530,57.24792110651456,2219,22.85738163887844,77.33641368994157,79.71263490912669,63.332022412709286,65.09001635055755,77.06584239033786,79.43889857547673,63.23276680822168,64.99130644492672,0.2705712996037022,273.7363336499641,0.0992556044876096,98.70990563082673,85.30214,59.94696943826245,89112.59454264343,62624.80614920234,254.57861,158.47623791934328,265409.3644227153,165016.49938809758,278.18956,133.22793077059936,286685.00062680204,136155.25463237485,3178.48224,1441.8745175349409,3293392.963102252,1479573.365304934,1326.62194,585.0201967904951,1373545.881910493,599170.9089574032,2189.26438,915.8613234558816,2258255.129330158,934673.708408566,0.37993,100000,0,387737,4050.572479211065,0,0.0,0,0.0,21608,225.17863858593452,0,0.0,25897,266.725168191885,2041330,0,73352,0,0,0,0,0,46,0.4701015419330575,0,0.0,0,0.0,0,0.0,0.0707,0.1860869107467165,0.3138613861386138,0.02219,0.3191374663072776,0.6808625336927224,25.11404004564892,4.563445149287317,0.3361663652802893,0.2014466546112115,0.2300180831826401,0.2323688969258589,11.065017988523294,5.419266597288342,23.79668554105776,12845.17391291586,62.6373282302621,13.165786058521483,20.833100762022625,14.274380381411603,14.364061028306391,0.5488245931283906,0.7639138240574507,0.6966110812264659,0.5880503144654088,0.1097276264591439,0.6989720998531571,0.9206798866855525,0.8733031674208145,0.7169117647058824,0.1559322033898305,0.4997600767754319,0.6911957950065704,0.6414961185603387,0.553,0.0959595959595959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017733371164525,0.0037322893741315,0.006284582973755,0.0086084234490609,0.0106914336286786,0.0130364817794797,0.0153581007352716,0.0176638758423524,0.0197008577591935,0.0219990582069078,0.0242324842396596,0.0262314942198312,0.0283619386485402,0.0303336183011113,0.0326588312988205,0.0349054751051712,0.0368821056555323,0.0387990953793804,0.0406468576892297,0.0426956929326597,0.0578567624855123,0.0711005095048282,0.0841958452616897,0.0967897912418273,0.1089517947853213,0.1244623854762181,0.1384796387764187,0.1505008187482721,0.1622287915817334,0.1730258365825442,0.1870379735938794,0.2001189382061956,0.2113852940856885,0.2223448064928397,0.2329340659340659,0.2437468208859499,0.254331717644437,0.2644196187736018,0.273534313669913,0.2823398876725804,0.2900045082014588,0.2976707784319222,0.304877039978256,0.3118251250987622,0.3183323828821723,0.3245678829960112,0.3305733440064038,0.3370184723423744,0.3424941395878932,0.3468503572985325,0.3472576057799884,0.3482290632240979,0.3487537950999082,0.3495414306205537,0.350471191697483,0.3505747126436782,0.3506609049313676,0.3522560664217584,0.3538419328840647,0.3546670012187253,0.355694608865588,0.3568242640499554,0.3584976999180793,0.358967464372143,0.3605287916435481,0.362483991531847,0.3650784527846428,0.3681923430710185,0.3699745186862967,0.3700850585780773,0.3711960040699287,0.3719785864921862,0.3718171855862824,0.3722933643771827,0.3712786259541984,0.3722424242424242,0.3752725007785736,0.3792607802874743,0.3850400220811482,0.3854406130268199,0.0,2.0320903490677398,60.227899034979885,214.62843729603557,314.60949733538683,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95615,41998,395.73288709930455,7267,74.89410657323643,5679,58.87151597552685,2270,23.37499346336872,77.26635035352784,79.7041792787259,63.26822878755484,65.07199178343876,76.98621671437253,79.42379965789041,63.16536880632894,64.97190540565741,0.2801336391553093,280.3796208354896,0.1028599812258974,100.0863777813521,85.80572,60.38408913040831,89739.93620247868,63152.56971269331,259.31042,160.79413661313507,270667.6567484182,167636.0331164973,281.00164,134.18940302614632,290920.5982324949,138028.26257059228,3291.00916,1470.4844606370884,3412154.2854154683,1508376.6977091662,1361.36963,588.2489237525967,1411119.803378131,602769.4599585878,2232.28666,925.4413977774316,2299508.2779898555,936740.762065533,0.38187,100000,0,390026,4079.088009203577,0,0.0,0,0.0,21938,228.86576373999893,0,0.0,26184,270.888458923809,2031930,0,72909,0,0,0,0,0,47,0.4915546723840402,0,0.0,0,0.0,0,0.0,0.07267,0.1903003639982192,0.3123709921563231,0.0227,0.3173605655930872,0.6826394344069128,25.23517373033079,4.565669710351236,0.3345659447085755,0.2002113048071843,0.2345483359746434,0.2306744145095967,11.021036249464489,5.487075473428648,24.06496852858948,12966.664216980533,63.71959455618787,13.354931479022644,21.30748334418304,14.62859134762544,14.428588385356758,0.5493924986793449,0.7695690413368513,0.7047368421052631,0.5623123123123123,0.1198473282442748,0.7046289493019838,0.8882521489971347,0.8780487804878049,0.7310344827586207,0.1512915129151291,0.500463177396943,0.7170050761421319,0.6507936507936508,0.5153550863723608,0.1116458132820019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020673720053508,0.0043824499112351,0.0066925975199813,0.0090287945339189,0.0113597035890963,0.0133310231662199,0.0156658229915088,0.0178208311619304,0.0199312433494311,0.0220616866482221,0.0242620797241266,0.0263347244207799,0.0283293701038674,0.0304155067532735,0.032350024789291,0.034311848762973,0.0365679222206098,0.0386888378807864,0.0408617818484596,0.0425423180817888,0.0573432860787019,0.0708222422502148,0.0846761486585852,0.0973593014314756,0.1099727497412281,0.1243723649922671,0.1378679987246253,0.1501365362461066,0.1625046829007225,0.1740088105726872,0.1877090030420055,0.2008303793077281,0.2134206112357592,0.2247348584450872,0.2355521753028449,0.2478091096665409,0.2577736561602664,0.2675353635462654,0.2765529467918267,0.2850783598357082,0.2941960148285449,0.3026380526204812,0.3104502369668246,0.3168204008684283,0.323984432011676,0.329740474603057,0.33559016023471,0.3404371932955197,0.3455821313686832,0.3504492600422833,0.3509715873080087,0.351331982745552,0.3521949567499682,0.3531608737821914,0.3541520816265733,0.3537987017969217,0.3529803952694658,0.3543200724816737,0.355377284102986,0.3563820248897177,0.3574025582578226,0.3582760128821916,0.359884492970512,0.3603157823710667,0.3616036821705426,0.363156512605042,0.3651359273521466,0.3670656971390468,0.3713030850423263,0.3729445736745007,0.3738270469181233,0.3768442513010354,0.3782330345710627,0.3794056668970283,0.3839176037040536,0.3857602095487558,0.3836332871865867,0.3785656071719641,0.3807947019867549,0.3849641103135625,0.0,1.9841473620948096,60.3758083938604,212.4776443923436,332.68723071200424,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95711,41784,393.48664207875794,7107,73.05325406693066,5563,57.60048479276154,2294,23.654543364921484,77.34534288058313,79.71448630715332,63.32656324425341,65.07463357964518,77.07306684164521,79.43872377082327,63.226819543989805,64.97536488729881,0.2722760389379175,275.7625363300491,0.0997437002636019,99.2686923463708,85.2445,59.988951834273415,89064.47534766118,62677.17590901089,253.835,158.1454904666467,264673.67387238663,164696.12736952567,278.61769,133.70637379471088,287469.70567646355,136866.0266113906,3173.54716,1436.0966025248592,3289768.8248999594,1474459.6572231597,1309.29051,566.1696550196564,1355675.9202181569,579255.8464751133,2238.05466,928.2441419818804,2310519.6476893984,947345.6432306032,0.37995,100000,0,387475,4048.3852430755087,0,0.0,0,0.0,21482,223.89276049774844,0,0.0,25989,267.91068947142963,2038134,0,73148,0,0,0,0,0,40,0.4179247944332417,0,0.0,0,0.0,0,0.0,0.07107,0.1870509277536517,0.3227803573941185,0.02294,0.3289491343443833,0.6710508656556167,25.202812008439416,4.498205598024799,0.3350710048534963,0.2042063634729462,0.2406974653963688,0.2200251662771885,11.313244937869207,5.952763703228913,24.3613359180108,12896.63950264153,62.804379564085885,13.215882932949224,21.05660661793953,15.028847522070189,13.503042491126957,0.543951105518605,0.7570422535211268,0.6765021459227468,0.573562359970127,0.1119281045751634,0.6965566714490674,0.8820224719101124,0.8454935622317596,0.7459807073954984,0.1187739463601532,0.4929239625809546,0.7,0.6201716738197425,0.5214007782101168,0.1100726895119418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.004510165609227,0.0068584878860435,0.0091306114158033,0.0113079379283695,0.0134291735814862,0.0153614058693414,0.0173024509253493,0.0195960174186821,0.0218341505358733,0.0239989338363438,0.026134729924009,0.0282137787743514,0.0302465256673088,0.0322287695689414,0.0343084556543311,0.0363815244407622,0.0384798987152612,0.0404878505255934,0.0421942247371327,0.0569578612082919,0.0708305425318151,0.0847804417396778,0.0982651053667055,0.1107582248295946,0.1264828826922059,0.139018927210386,0.1510687925360258,0.1628672502057349,0.1739107116040589,0.187123538602446,0.2002577124232547,0.212487894055301,0.2229982703128763,0.2338190108038457,0.2451999822632139,0.2554497661595473,0.2656315049226441,0.2753175693317138,0.283596622867813,0.2923089385733463,0.2996748385889398,0.3075939475740569,0.3142374222318121,0.3205026921253813,0.3262046595379929,0.3320598734890712,0.3373751510910363,0.3426226106802915,0.3488928547822064,0.3497692494534855,0.3503378844297338,0.3507266455553042,0.351488448940549,0.3519172590572421,0.3521327887479655,0.3521267485012846,0.3528367336873428,0.3540616725036303,0.3553026513256628,0.3562524603070463,0.3564139076777026,0.3564923619271445,0.3584092643296377,0.3596953578336557,0.3620847621790005,0.3626076050396215,0.3639704727501178,0.3661497438776226,0.3694419102772599,0.3708476125199909,0.374993337952353,0.3769187038089824,0.3752391154640753,0.3761936276827077,0.3784073324604213,0.3788228062086983,0.3781307269395235,0.3822062084257206,0.3804091266719119,0.0,1.9801056849809289,61.84009680634562,210.61433543474976,315.7101012665608,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95664,41851,394.1608128449573,7050,72.54557618330824,5466,56.59391202542231,2193,22.558120086971066,77.2498286400838,79.64744609024493,63.26585613190741,65.03858737481919,76.97559719634052,79.37388203191558,63.16536733200191,64.94133494230071,0.2742314437432895,273.5640583293417,0.1004887999055057,97.2524325184736,84.98776,59.8550008320966,88839.856163238,62567.94701465191,256.97885,160.65987929902815,268060.77521324635,167376.11776533298,278.80035,133.29313962518438,288436.4128616826,137083.16432878858,3125.6548,1408.0591623032171,3237081.242682723,1441635.058437048,1283.93652,555.0323758101827,1330333.301973574,568391.3549613049,2150.82736,895.1044986044594,2213849.7867536377,904562.4858775582,0.37912,100000,0,386308,4038.1752801471816,0,0.0,0,0.0,21723,226.49063388526508,0,0.0,25962,268.3245526007694,2030765,0,72955,0,0,0,0,0,52,0.5435691587221944,0,0.0,0,0.0,0,0.0,0.0705,0.185956952943659,0.311063829787234,0.02193,0.3245425188374596,0.6754574811625403,25.276345784781576,4.557847360003551,0.3278448591291621,0.2109403585803146,0.2319795096963044,0.2292352725942188,10.997444997821924,5.472643980453857,23.34098489671811,12873.959826469803,61.977577591044856,13.677029647786805,20.312804222286168,14.1173965532156,13.87034716775628,0.5360409806073911,0.7519514310494363,0.6863839285714286,0.5473186119873817,0.1109337589784517,0.702903946388682,0.9184210526315788,0.8337182448036952,0.7163636363636363,0.1450980392156863,0.4816880911957312,0.6701164294954722,0.6394407652685798,0.500503524672709,0.1022044088176352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019854937396166,0.0040970722159684,0.0062626242120969,0.0085145295671611,0.0108126252403088,0.0129346342655775,0.0149488110290818,0.0171031806810639,0.0196154632849253,0.0218555729662744,0.0240427517873078,0.0263071391884951,0.0285023408962288,0.0304360821660843,0.0326763646124779,0.0343679218939072,0.0362993896562801,0.0382179492503841,0.0402846560406175,0.0424699957248469,0.0572186869795095,0.071454004691689,0.0845822837951301,0.0974567799909509,0.1095644648944141,0.1246692771721875,0.1379951152171604,0.1500713966028004,0.1618565743870609,0.1735795546102033,0.187419076391886,0.1999284304582619,0.2128408954605428,0.2237332748409739,0.2338767536065519,0.2452802933496305,0.2561289600358222,0.2665553575054714,0.2760375167892184,0.2839954492696997,0.2926922764180422,0.3002585193889541,0.3080170281582953,0.3145807756192677,0.3211141191678252,0.3273944298033975,0.3324079889461123,0.3381169013724538,0.3434343434343434,0.348864329066285,0.3491539637239121,0.3502749150388196,0.3505964256908774,0.351333691501256,0.3510620829663686,0.3505986505387086,0.3498999014903556,0.3510696201487737,0.3514724821842535,0.3517992594456627,0.3535759428000075,0.3538908685525451,0.3536729358185038,0.3553972405086121,0.3559527562874396,0.3564955474070194,0.3569856828508559,0.3591132384431288,0.3627250984805852,0.3654834468746265,0.3669432035737077,0.3701543193509041,0.3726058467741935,0.371864277544796,0.370913190529876,0.3733474976392823,0.3788990825688073,0.3777051857901184,0.3717842323651452,0.3790076335877863,0.0,2.10390306633988,59.53914377846024,213.21109671471052,309.90342472840086,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95744,41876,392.8601270053476,7133,73.34141042780749,5521,57.079294786096256,2311,23.719502005347596,77.32698317968122,79.68754213238215,63.31555014592704,65.06140612040397,77.04397265352418,79.4039209019909,63.21225558212399,64.96059434806315,0.2830105261570423,283.62123039124754,0.103294563803054,100.81177234081906,85.76348,60.30750904647003,89575.82720588235,62988.29069860256,255.00523,159.7074932003913,265776.97819184494,166243.07862674567,278.30099,134.0541852541064,286956.7805815508,137078.6462499274,3192.29324,1448.431530056545,3301379.386697861,1479999.7598351294,1357.62871,592.6662608127203,1403191.333138369,604224.8713368151,2272.22994,942.0576737984924,2334266.0427807486,951893.1112065724,0.38068,100000,0,389834,4071.6285093582887,0,0.0,0,0.0,21633,225.350935828877,0,0.0,25943,267.3483455882353,2033558,0,72969,0,0,0,0,0,44,0.4491143048128342,0,0.0,0,0.0,0,0.0,0.07133,0.1873752232846485,0.3239871022010374,0.02311,0.3195793957140955,0.6804206042859045,25.033787568925632,4.562895917245735,0.3300126788625249,0.1977902553885165,0.237456982430719,0.2347400833182394,11.17086776613846,5.683208417819731,24.640649133113264,12945.190187806564,62.35903619508048,12.808428430669569,20.545156121998144,14.590037609743773,14.415414032669004,0.5417496830284368,0.75,0.6970362239297475,0.5728451563691839,0.1165123456790123,0.6997855611150822,0.8926553672316384,0.8763326226012793,0.7016949152542373,0.1601423487544484,0.4881125667151868,0.6815718157181572,0.6348854397634885,0.5354330708661418,0.1044334975369458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025226685578238,0.0047859503964632,0.0073787629661206,0.0095192620286085,0.0120010170353419,0.0139402270760144,0.0161214667373659,0.0181185309188902,0.0206042271370753,0.0227530936223784,0.0251714136372487,0.0272642351950891,0.0292645320450223,0.0312718810494666,0.0332263954363994,0.0351219814625375,0.0374154941971819,0.0396348737098698,0.0418961897436963,0.0438283952160686,0.0578790219865116,0.0716124037495815,0.0849845882870981,0.0975327719785129,0.1092290827834812,0.1251096850585163,0.1377518557794273,0.150524814239179,0.1627730517676228,0.1739317064795141,0.1875330049898156,0.2004699868966787,0.2122580434569728,0.2233526972770138,0.2340612891863332,0.2451175988118197,0.2564366057167112,0.2663933503029757,0.2752897068847989,0.2838146114429172,0.2924258394820057,0.3005365887949012,0.3082915377227617,0.3151726208345842,0.3221023930666796,0.3281680228179135,0.3345709519210265,0.3399941340746503,0.3450303022437935,0.3494633604737232,0.3505204681516639,0.3513170772051222,0.3520614047464514,0.3527665121668598,0.3535168469032085,0.353048743008175,0.3532560355781448,0.3544218359014882,0.3560399636693914,0.3569870167030294,0.3568732039892568,0.3586286212845274,0.358652812611967,0.3590429117052348,0.3595554481758879,0.3603919924536212,0.3609076341993819,0.3644549763033175,0.3657719304433706,0.3666121765479845,0.3676820343944383,0.3704987996799146,0.3735693961429023,0.3773728748951742,0.3788492325077691,0.3769577598481253,0.3766712770862148,0.3795768917819365,0.3765001395478649,0.380281690140845,0.0,2.3101799995510093,61.61433477189762,208.01302957031143,312.4362449962076,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95758,41532,390.275486121264,7120,73.11138494956036,5471,56.53835710854446,2314,23.87267904509284,77.39144353273707,79.72950869021078,63.36142006586866,65.08692231492822,77.103614310693,79.4396130216211,63.25624494547896,64.98309898582379,0.287829222044067,289.8956685896792,0.1051751203896955,103.82332910442926,85.38398,59.98945773570119,89166.4195158629,62646.94097172161,254.18633,158.53675343749737,264874.2768228242,164988.1479457837,273.39118,131.03802955983602,281059.7234695796,133490.99938823984,3149.05168,1424.1503018905223,3256001.837966541,1455054.1689761109,1325.11387,575.4822441064294,1367581.758182084,584884.8946357234,2279.18806,948.685431698382,2352200.2965809647,966295.3451895816,0.3782,100000,0,388109,4053.01906890286,0,0.0,0,0.0,21553,224.46166377743896,0,0.0,25501,261.85801708473446,2042149,0,73232,0,0,0,0,0,40,0.4177196683305834,0,0.0,3,0.0313289751247937,0,0.0,0.0712,0.1882601797990481,0.325,0.02314,0.3140948563794255,0.6859051436205745,25.355859335022387,4.531001850452695,0.3262657649424237,0.2021568269055017,0.2345092304880277,0.2370681776640467,11.118763039680864,5.659569519261543,24.555034276593936,12851.613243390795,61.8581613621609,13.006875017842676,20.077175685799457,14.290057973553385,14.484052684965386,0.5441418387863279,0.759493670886076,0.6935574229691877,0.5892439594699922,0.110254433307633,0.6913109756097561,0.9083094555873924,0.875,0.704225352112676,0.0988593155893536,0.4977157970666025,0.6908850726552179,0.6384222059897735,0.5565565565565566,0.1131528046421663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021565689292078,0.0043880539538088,0.0067673139749599,0.0090187993215587,0.0113979522323108,0.0135269929158863,0.0156816792337477,0.0179158079458036,0.0203189326686348,0.0224073013014651,0.0244569672131147,0.0265101772816808,0.0285858139558779,0.0307836396945307,0.0328739163153174,0.034749912195525,0.0368446109581668,0.0389964633526587,0.0409966425163456,0.0426363049230192,0.057240076403603,0.0711804465649653,0.0842249916079221,0.0968746056450595,0.1092941114449892,0.1247726599839275,0.137553288510891,0.1491856123067757,0.1613254594577277,0.1724873509990566,0.1863837483447986,0.1995175927227888,0.2117717391304348,0.2227247896864416,0.2335345140331783,0.2448376601819268,0.2551059085841694,0.2655042243393852,0.2747372359604068,0.2828072424290979,0.291100166481687,0.2981924893607071,0.3060497799649836,0.3129846006351489,0.3196071528292037,0.3261287223823247,0.3318573554980174,0.3374579896119767,0.3426295336787565,0.3481886065595398,0.3490027723198665,0.3497043047723834,0.3497240058578348,0.3494245570461076,0.349979952777654,0.3492245572175828,0.3488519298023515,0.3501353679547133,0.3510078578749573,0.353083109919571,0.3545379351830964,0.354764456086042,0.354958860293344,0.3567764578833693,0.3573747456148851,0.3583077286693453,0.3593087240628224,0.3611700947611954,0.3629598128853923,0.3647506509112758,0.3657403147142725,0.3671505376344086,0.3681925557045266,0.3713734567901234,0.3731484998101025,0.3730755460078768,0.3735745780751102,0.3802104411169567,0.3822562979189485,0.3755742725880551,0.0,2.333462046275398,57.56486464982464,218.7732200116515,308.0677633301503,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95718,41661,389.96844898556174,7320,75.20006686307696,5680,58.661902672433605,2324,23.85131323262082,77.37264048070351,79.73227278433127,63.34029949113111,65.08205807133051,77.08455775330613,79.44533238714139,63.23456650302291,64.97984290423166,0.2880827273973807,286.9403971898805,0.1057329881082012,102.2151670988478,85.04034,59.797509828857415,88844.43887252136,62472.356117822594,255.78575,159.74795213147624,266501.55665601033,166167.4524451788,280.33677,134.7715751864151,288055.52769594017,137061.43945230127,3287.45836,1485.7399785519171,3398287.1351260995,1515967.8415260634,1421.36382,618.2793515360293,1467973.024927391,628972.3428571734,2298.0616,958.3162446272172,2361044.7564721373,967212.273377454,0.37965,100000,0,386547,4038.3835851146073,0,0.0,0,0.0,21705,226.059884243298,0,0.0,26143,268.5388328214129,2038586,0,73225,0,0,0,0,0,48,0.4701310098414091,0,0.0,1,0.0104473557742535,0,0.0,0.0732,0.192809166337416,0.3174863387978142,0.02324,0.3217165149544863,0.6782834850455136,25.26690127551066,4.581345773325109,0.3322183098591549,0.2029929577464788,0.2223591549295774,0.2424295774647887,11.133559628564749,5.454926638498828,24.917023592293965,12985.75772550778,64.35674562625503,13.524957628214104,21.34228537593324,14.344015007026089,15.145487615081604,0.5422535211267606,0.7684301821335646,0.6846846846846847,0.5859065716547902,0.1176470588235294,0.6963064295485636,0.9213483146067416,0.8464730290456431,0.7321428571428571,0.125,0.4888572783309625,0.7001254705144291,0.6291814946619217,0.5329018338727076,0.1157024793388429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075949367088,0.0046111904979072,0.0068474390577923,0.0092216444588885,0.0117235559080417,0.0142007858786163,0.0163296093941123,0.0184948914496851,0.0208731562215702,0.022991329627696,0.0253655135645005,0.0275972525949425,0.029654917122527,0.031740800626165,0.0336019148036191,0.0358320328244984,0.0381007599445054,0.0401414805671669,0.0422396141893507,0.0443078845953546,0.0587854487741719,0.072804511828902,0.085967726715108,0.0996920425044406,0.1125611401585427,0.1278291664464295,0.1410556904835134,0.1530906498398544,0.1634309391085197,0.1748367239696719,0.1887176504797906,0.2026161469716313,0.2155954323001631,0.2263176891358321,0.237379516746622,0.2474877851516192,0.2580285086005782,0.2674893875758633,0.2766361085551352,0.2852850097488244,0.2931831077247305,0.301058275385732,0.3083551625635616,0.3154646849074952,0.3225060827250608,0.3282812075732517,0.3342773718968909,0.3397425286185425,0.3451757569473248,0.3501367257163238,0.3500700921981992,0.3508177296463164,0.3514024493481573,0.3519084522343739,0.3526747131575026,0.3523909002933902,0.352344518873615,0.3528510722403399,0.3532320432536016,0.3542295667708798,0.3553543985906518,0.356144616418589,0.3564316921525794,0.3566120512131793,0.3569227064772454,0.3577278180585259,0.3586696306429549,0.3614590199956053,0.3629294945886309,0.3655586735702146,0.3693202471828426,0.3706401531263292,0.3724547868976856,0.3739998475958241,0.3754577035020185,0.3734696303340069,0.3768227168073676,0.3709415584415584,0.3677080453414432,0.3562908811081185,0.0,2.6529788016321363,64.49999567859247,214.725070999683,317.02090322439017,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95747,41859,393.8400158751711,7080,72.72290515629733,5504,56.973064430217136,2216,22.841446729401444,77.33281654085012,79.69883847738429,63.319784280511655,65.07123412886106,77.07019365307285,79.43301883458977,63.223880187071565,64.97565047934945,0.2626228877772689,265.8196427945114,0.0959040934400903,95.58364951161025,86.35088,60.71178920517682,90186.51237114478,63408.55505151788,255.63456,158.39199182359596,266468.36976615456,164906.3697281335,276.8131,132.55642784624533,285419.81472004345,135646.83988511094,3163.9474,1415.4899838335875,3277328.0833864245,1451772.573726305,1326.55579,576.1797921141434,1371761.5382205185,588181.2172837232,2178.51412,895.9424140385787,2247673.4519097204,914167.918755661,0.38133,100000,0,392504,4099.386925961127,0,0.0,0,0.0,21633,225.3960959612312,0,0.0,25798,265.7211191995572,2034607,0,73113,0,0,0,0,0,44,0.4595444243683875,0,0.0,0,0.0,0,0.0,0.0708,0.1856659586185194,0.3129943502824859,0.02216,0.3225676762262128,0.6774323237737871,25.23006339000923,4.562448696783799,0.3297601744186046,0.1976744186046511,0.2423691860465116,0.2301962209302325,11.288292616823226,5.775098790318532,23.385087390467767,12941.16712884304,61.89329438132496,12.809495471257804,20.407062600612385,14.98340287037884,13.693333439075916,0.5496002906976745,0.7830882352941176,0.6964187327823691,0.568215892053973,0.1191791633780584,0.7229876722262509,0.9206798866855525,0.851528384279476,0.7305389221556886,0.1623931623931624,0.4916363636363636,0.7170068027210884,0.6440677966101694,0.514,0.1093901258470474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0044830768918685,0.0066707279926896,0.0088228418088858,0.0108961054816261,0.0129155801825293,0.0152357254306081,0.0174068402246043,0.0194883540213901,0.0217384626411771,0.023898378068035,0.0258448079351877,0.0279568565758762,0.0300511838189102,0.0322833589550467,0.0341712490180675,0.036225805449405,0.0384383885764097,0.0403639199376137,0.0425330222092587,0.0569137941833517,0.0708053480635239,0.0838436372787517,0.0963564114963311,0.1084339889120765,0.1240774810209562,0.1372259987062154,0.1495364900965335,0.1615008330841201,0.1723254118050789,0.1865242576282865,0.2003699937252526,0.2126414909695869,0.2239360713622003,0.2350424530377018,0.2461771837941381,0.2564420190386912,0.2670058646735032,0.2770090020546934,0.2853985088131206,0.2939882613074634,0.3019060107242372,0.3094366447485338,0.3162395212453378,0.3224931919859949,0.3285948740729772,0.3338512429831596,0.3398074326905932,0.3448570983972198,0.3498612029081295,0.3507659941741288,0.3511625022395567,0.3519592487547446,0.3525461019598761,0.3534073136218068,0.3541251188905593,0.3544554769533357,0.3561400624691764,0.3575483959231137,0.3580174093338338,0.3581899059667036,0.3598065066116849,0.360475370595893,0.3621292230486603,0.3632156201036519,0.3665821063367942,0.3663091663091663,0.3681388012618296,0.3717456403029769,0.3723425471660484,0.3751086310204455,0.377742193755004,0.3838530488574675,0.385829774252593,0.3874237447207884,0.3861562166646912,0.3908256880733945,0.391850800729779,0.392817679558011,0.4003853564547206,0.0,2.0236913245232766,61.22427013818861,199.93022515642343,320.28288924871487,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95772,42080,394.7187069289562,7051,72.3802363947709,5474,56.49876790711272,2178,22.417825669297915,77.34910350822409,79.67851314044974,63.34642956891118,65.06719341736901,77.08278460354234,79.41160109309338,63.24925740706173,64.97236500172082,0.2663189046817535,266.91204735635665,0.0971721618494427,94.82841564819466,86.17334,60.62471141666531,89977.59261579585,63301.08112670229,259.12869,161.65185637199306,269918.21200350835,168138.1159127856,284.71005,136.69824445901023,292178.9667126091,138924.54778674495,3146.65036,1425.7343371636728,3250594.745854738,1453812.0512614115,1321.60269,572.9748278466215,1367680.5538153115,586050.0195933395,2145.1328,891.0023130450492,2209210.4581714906,904385.5748127872,0.38089,100000,0,391697,4089.8905734452655,0,0.0,0,0.0,21914,228.1355719834607,0,0.0,26495,271.749571899929,2032184,0,72997,0,0,0,0,0,47,0.4698659315875203,0,0.0,0,0.0,0,0.0,0.07051,0.1851190632466066,0.3088923556942278,0.02178,0.3236955352339967,0.6763044647660033,25.161692806972614,4.529888638673922,0.324625502374863,0.206430398246255,0.2365728900255754,0.2323712093533065,11.06888510719316,5.616195334067884,23.24991773073058,12956.168335738805,61.81938476012909,13.293596102584686,20.10293456980451,14.39771926965183,14.025134818088054,0.5500548045305078,0.772566371681416,0.7006190208216094,0.5706563706563706,0.1210691823899371,0.7151079136690648,0.9175824175824177,0.8939393939393939,0.7361111111111112,0.1268115942028985,0.4938785504407443,0.7036553524804178,0.6326996197718631,0.5233366434955313,0.1194779116465863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0046726603756372,0.0069898854632701,0.0092838061573777,0.0116931711880261,0.0139867258438861,0.0162049776799364,0.0183293361228759,0.0205887461811196,0.0228458595076834,0.0250379051755931,0.0269673990005233,0.0291246171870182,0.0311358139056147,0.0333852292528018,0.0356143159634354,0.0374390761302606,0.0395288066697084,0.0415757424610844,0.0436652573261408,0.0594447923189313,0.0735898589074478,0.0867801088289875,0.0996048593887931,0.1114881240911294,0.1267620516938943,0.1399652365609632,0.1524425256800153,0.1635897983139473,0.1743727636963555,0.1879661217593439,0.2010229017538548,0.2138003761564637,0.2251246501049685,0.2360227947809632,0.2474584154687811,0.2584946716509513,0.2681882061948395,0.2769483834373227,0.2858271141431253,0.2939108309720696,0.3013323663247043,0.3091033895095625,0.3149796891663571,0.3214342106861328,0.3275747262503699,0.3333583752785916,0.3394705680125291,0.3448409971868234,0.3496412004916148,0.3501678961066983,0.3500592760056243,0.3506480684879342,0.3515151515151515,0.3518970028544244,0.3514370633656085,0.3503761780312029,0.3512123800762255,0.3517033896856464,0.352996941349026,0.353784113288943,0.3546072582403425,0.3565834505637558,0.3568398608461452,0.3568094420393257,0.3569910529215753,0.3579307175274315,0.3595070198843784,0.3629598128853923,0.3636947275499558,0.3668337087949979,0.3694557531604885,0.368249296135142,0.3659873398178169,0.3673977588353606,0.3699829725127706,0.3730545511711995,0.3710548172757475,0.3746478873239436,0.3705482192877151,0.0,2.5599551031736483,61.00859734799222,205.3337305327607,310.00409023401613,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95672,42214,396.3019483234384,7233,74.45229534241993,5650,58.53332218412911,2343,24.124090643030357,77.31532774038504,79.70699155467317,63.31028192710126,65.07602849003275,77.0285405072225,79.418025535868,63.20543933842927,64.97285087021585,0.286787233162542,288.96601880516926,0.1048425886719854,103.1776198169041,86.19798,60.64753540296695,90097.3952671628,63391.10231098643,259.24649,161.47255080252444,270447.393176687,168250.3666720926,287.48324,138.56109522405438,297022.0127100928,142244.28307765402,3260.11656,1487.8173441559493,3378598.670457396,1526124.3667488398,1400.30636,608.8837028127392,1450552.9935613344,623341.5880371246,2308.44938,959.2254187665362,2378821.724224434,974300.0597283788,0.38291,100000,0,391809,4095.3361485074006,0,0.0,0,0.0,21857,227.91412325445276,0,0.0,26775,276.44451877247263,2029789,0,72897,0,0,0,0,0,65,0.6794046324943558,0,0.0,1,0.0104523789614516,0,0.0,0.07233,0.1888955629260139,0.3239319784321858,0.02343,0.3217847769028871,0.6782152230971129,24.928735782663363,4.570465961741374,0.3327433628318584,0.2040707964601769,0.2254867256637168,0.2376991150442478,11.35842772858617,5.850587931847565,25.051364091996163,13094.150973233289,64.05769891708584,13.47464133192243,21.440094679595397,14.234531544100532,14.908431361467493,0.5495575221238939,0.7710320901994796,0.7148936170212766,0.5588697017268446,0.1191362620997766,0.722632639355272,0.9242819843342036,0.884313725490196,0.7138364779874213,0.158273381294964,0.4876231675078106,0.6948051948051948,0.6518248175182482,0.5073221757322176,0.1089201877934272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0048257263934791,0.0074286062229799,0.0096112815719423,0.01171875,0.0141889483065953,0.0165435926726775,0.0189367243756702,0.0210973053126757,0.0231534105455029,0.0254756166350443,0.0275192604006163,0.0295255339286449,0.0318299380712438,0.0338566665634451,0.0359503149272409,0.03790123712622,0.0401448869238513,0.0419713533811123,0.0441285292922134,0.0586452967788446,0.0734935343699282,0.0873653938999559,0.0998810939357907,0.1120198395947657,0.1275629558277143,0.1409505000955596,0.1535069499920115,0.1657243023119101,0.1763941956811059,0.1909319193421492,0.2043441540160686,0.216192974626362,0.2271588185727886,0.2372817886447491,0.2489240871378499,0.2594665236914416,0.2694030522666907,0.2788091426235651,0.2873435422493237,0.2956511668307371,0.3040307191608424,0.311500065132693,0.3179641077966508,0.3241048088029667,0.3302783979474781,0.3371259585985665,0.3424739536897878,0.3475229690678899,0.3524995373674888,0.3530562149331031,0.3530271686663908,0.3539961618784218,0.3547643888019475,0.3555247754792011,0.3563248388087197,0.3565182892961993,0.357129947587204,0.3578992387306475,0.3587693408460781,0.3596489583137998,0.3601354965234444,0.3615472031651164,0.3633850303438975,0.3635615775465763,0.3650165189574702,0.3669645679473548,0.3693198079308042,0.3702901381441102,0.3737588937572858,0.3759329217727817,0.3762684563758389,0.3767792174634582,0.3797173474141948,0.3817570811329813,0.3836942058787952,0.3879217377907872,0.387090246863618,0.386395316420407,0.3850596842510589,0.0,1.9769860026149888,66.08504261306659,209.19890268705515,316.6962960919516,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95612,42016,394.8772120654312,7072,72.64778479688742,5522,57.02213111324939,2332,23.877755930217965,77.3146043072854,79.73321461146504,63.296484254502126,65.08250516541183,77.02770133220528,79.448337706478,63.19020694577846,64.9802046429167,0.2869029750801246,284.8769049870441,0.1062773087236621,102.30052249512768,85.13538,59.924866531410245,89042.56787850897,62675.04762102063,255.71603,159.60880809167364,266733.1715684224,166215.22203454966,281.81611,135.56251382267672,289561.7077354307,137781.0836730956,3175.64132,1438.1139918739325,3282833.7447182364,1465564.6486570018,1345.40398,588.0280930009064,1389373.0494080242,597239.356211456,2297.19558,955.2052066446018,2356123.1017027157,962102.2165714606,0.38134,100000,0,386979,4047.389449023136,0,0.0,0,0.0,21599,225.14956281638288,0,0.0,26285,269.86152365811824,2035051,0,73016,0,0,0,0,0,39,0.3974396519265364,0,0.0,1,0.010458938208593,0,0.0,0.07072,0.1854513032988933,0.3297511312217194,0.02332,0.3246073298429319,0.675392670157068,25.06792589055456,4.636297805558028,0.3203549438609199,0.2015574067366896,0.2377761680550525,0.2403114813473379,11.377613304324989,5.797393380039464,24.939203622141758,12950.971664022343,62.24914515418764,13.006385359891476,20.12331482029535,14.560239874755707,14.559205099245103,0.5476276711336472,0.7960467205750225,0.6907857546636518,0.5818735719725818,0.1145440844009043,0.7176724137931034,0.9346590909090908,0.8556034482758621,0.7467948717948718,0.1515151515151515,0.4903147699757869,0.7319316688567674,0.632183908045977,0.5304695304695305,0.1053621825023518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0045431037105393,0.0065781459373857,0.0088401158360006,0.0110677083333333,0.0134446934202485,0.0159015105925072,0.018020226785167,0.0202820877356271,0.0223448812608165,0.0245335849598457,0.0268107530637191,0.0292377807269322,0.0315397931006058,0.0335583632685081,0.0356415373321063,0.0376126826235623,0.0396723217808418,0.0416527928077915,0.0437449152012015,0.0581072040807793,0.0717907351924406,0.0851667104226831,0.0983125072373753,0.110321749778322,0.1251667831501366,0.1380874479476502,0.1509538527123521,0.1628421964761385,0.1732006833052204,0.1864959053979694,0.1995057339200936,0.2122830149614793,0.2236014637246094,0.234434939812161,0.2456825749167591,0.2562059214717618,0.2671301565123328,0.2761724032135268,0.2847932822465929,0.2936196333229098,0.3018002200529063,0.308952236578751,0.3160545947372208,0.3222208723119912,0.3284266587765367,0.3348813920010014,0.3404293221697693,0.345146498795368,0.3506273940034342,0.3511425682507583,0.3515996198923028,0.3520377193353943,0.3520716490587365,0.3533219964796086,0.3529511272414111,0.3526764415890079,0.3537569963841696,0.3546910755148741,0.3552111765550926,0.35694674289153,0.3583994617378742,0.3592076302274394,0.3599757999462221,0.3600115434563032,0.3592834639518837,0.361670607674995,0.3647889533971442,0.3674377847879425,0.3680555555555556,0.3692468619246862,0.3707739740591112,0.3744045728802794,0.3759467523525361,0.378626098459794,0.3771380390267405,0.3763087982497265,0.3753351206434316,0.3829078801331853,0.3916275430359937,0.0,2.863229574540469,60.70444957044519,206.55284373634956,314.3367603898474,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95645,41681,391.541638350149,7063,72.51816613518741,5545,57.38930419781484,2242,23.074912436614564,77.29129418892526,79.69264742888673,63.29829466637945,65.07079652613302,77.01862033644159,79.41871520830153,63.20038725725588,64.97456903797928,0.2726738524836776,273.93222058519484,0.0979074091235645,96.22748815374392,86.03848,60.53529739963159,89956.06670500287,63291.64870054011,256.28836,159.5506448031044,267336.4211406765,166194.5005160545,280.74265,134.96733416597044,290026.27424329554,138335.87056160148,3181.61228,1429.1248411845295,3295435.5376653248,1463183.5683148447,1354.31102,591.0947418360032,1398519.1384808407,600552.5770542772,2209.74878,900.1917305508669,2276581.4417899526,913201.4261666484,0.37885,100000,0,391084,4088.912122954676,0,0.0,0,0.0,21677,225.98149406660045,0,0.0,26044,268.90062209211146,2032859,0,72926,0,0,0,0,0,58,0.5854984578388834,0,0.0,0,0.0,0,0.0,0.07063,0.1864326250494918,0.317428854594365,0.02242,0.3240877878012656,0.6759122121987343,25.17205746029778,4.565243602170123,0.3289449954914337,0.2052299368800721,0.2326420198376916,0.2331830477908025,11.32275636052034,5.664789745958986,23.581328742837044,12913.280451774684,62.31686290634888,13.420105582567396,20.58466878320341,14.208093358305108,14.103995182272952,0.5513074842200181,0.7820738137082601,0.7044956140350878,0.575968992248062,0.1075019334880123,0.7254612546125462,0.9109947643979056,0.8808988764044944,0.7463235294117647,0.15625,0.4949880668257757,0.716931216931217,0.6475707034082668,0.5304518664047151,0.0954676952748312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268974808302,0.0044408395011659,0.0068917917643595,0.0092775124479219,0.0117917569616132,0.0139226969496358,0.0161000876888879,0.0183797251209998,0.0204788974317029,0.0226998136506051,0.024643120846665,0.0266828256270155,0.0287842314260436,0.0308410444531459,0.0330552917372094,0.035217094512132,0.0370178456691607,0.0389355538712323,0.0414312617702448,0.0432951429792646,0.056961628490219,0.0712445273058633,0.0845197597748939,0.097237278324475,0.1098599575756936,0.1251296488368647,0.1385093892975807,0.1507359989774833,0.1619220695921749,0.1729324115424252,0.1861375250663044,0.1993070593330446,0.2124440865013114,0.2242462724147746,0.235222163448823,0.2455949701156562,0.255436785845927,0.2655179011581447,0.2753007945516458,0.2832722273143904,0.2916435185185185,0.2997145464330003,0.3072877802650748,0.3133952350104369,0.3203936643877278,0.3267986766085625,0.3324808504770143,0.3379392981427424,0.3436040477426051,0.3487266194652858,0.3499784296807592,0.3510815766616574,0.3525591246028944,0.3532598461694454,0.3534417239169635,0.3533500438266004,0.3527458208860357,0.3543103163867903,0.3550552922590837,0.3556237549130458,0.3559468876542047,0.35706046141607,0.3575631049535016,0.3583980200247497,0.3600106226310325,0.3612994424229732,0.3625153426769046,0.3644452858765619,0.3653948159411577,0.365781356407483,0.3679206283588259,0.3684435652034433,0.368343949044586,0.3733539891556932,0.3759463344513656,0.3811086797957695,0.3880573499291003,0.3894361769021169,0.390616167326173,0.3947266382318728,0.0,2.2332926331635656,59.74497280394358,203.7890554465604,326.4993212363206,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95633,41787,394.13173277006894,7084,72.93507471270378,5528,57.239655767360645,2240,23.077807869668423,77.27514686010801,79.68851320001755,63.27600815666828,65.05721598562776,77.00800570935024,79.41839808595996,63.17989370930468,64.96249059228559,0.2671411507577659,270.1151140575888,0.0961144473636039,94.72539334217343,85.4546,60.12286604440722,89356.81197912854,62868.32583355873,253.63515,157.57845553393693,264660.8179185009,164217.77580326554,276.39468,132.1556402619335,285290.75737454643,135311.9732649871,3191.04968,1426.2228268994877,3305949.7453807783,1460533.5678055545,1360.6567,586.212392908411,1405030.3347170954,595221.9395719338,2203.44086,894.2403415636069,2271785.6388485148,907562.7486800712,0.37981,100000,0,388430,4061.6732717785694,0,0.0,0,0.0,21513,224.37861407673088,0,0.0,25798,266.0065040310353,2034721,0,72996,0,0,0,0,0,30,0.3136992460761453,0,0.0,1,0.0104566415358715,0,0.0,0.07084,0.1865143097864721,0.3162055335968379,0.0224,0.311004144939163,0.688995855060837,25.31153675677305,4.5188478507372105,0.3319464544138929,0.2000723589001447,0.2326338639652677,0.2353473227206946,11.276351585220722,5.8136290440824325,23.598337895242565,12894.1287813763,62.13049315061453,12.955597858240669,20.708027298043245,14.383590801451607,14.083277192879017,0.5515557163531114,0.7739602169981917,0.7138964577656676,0.5668740279937792,0.11837048424289,0.7374631268436578,0.9149560117302052,0.88125,0.7348993288590604,0.1940928270042194,0.4911313518696069,0.7111111111111111,0.6546125461254613,0.5161943319838057,0.1015037593984962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022581821127673,0.0047028774717979,0.0071635127593729,0.0091213814118842,0.0112185844038283,0.0131782629949486,0.0152955092384875,0.0172228971628671,0.019404373651764,0.0216251638269986,0.0238170945606351,0.0257956483326827,0.0279644014609805,0.0299228993155768,0.0318156940901909,0.0338698998593064,0.0361229735892864,0.0382610140622728,0.0400853322233206,0.0418613382279325,0.0569526317989882,0.071045351664012,0.084082696024876,0.0966076696165191,0.1085571834497037,0.1243804278754501,0.137200726863118,0.1495848123394412,0.1612554575806865,0.1721614476992843,0.1866162978953049,0.1997940044451672,0.2117348328810714,0.2231820822872929,0.2343277653964121,0.2454829144779948,0.2561067036668196,0.2663921480144404,0.2760076469651107,0.2844922610572727,0.2925708983355564,0.2999120492524186,0.3072332752013856,0.3147160565004324,0.3213260340632603,0.3273849191657411,0.3332455546359692,0.3380312201338005,0.3437597382362106,0.3494197509626708,0.3504320820955982,0.3513051156117212,0.3513765353663702,0.3515313880240388,0.3512225630640021,0.3510821181887951,0.3507767913760304,0.3523278569901492,0.3537668192063383,0.3553730810424848,0.3563718957070185,0.3582736375509558,0.3591859879032258,0.3600331972544973,0.3602345107122177,0.3622464980137989,0.3635427983303791,0.3647880204713464,0.3653778186187884,0.369050475961923,0.3725310480729572,0.3763671456144113,0.3815322171486555,0.3832083269554569,0.3874524714828897,0.3915923873765358,0.3957102890892136,0.3958720330237358,0.3961420184512161,0.396504854368932,0.0,2.2067298166611526,60.06221602119576,202.21818892654332,324.75987817784375,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95677,41683,390.5431817469193,7053,72.35803798196014,5420,55.99046792855127,2147,22.022011559727,77.28391542799022,79.6840946152267,63.28504443165552,65.06062915166862,77.01607123412403,79.41654325652861,63.184856131684576,64.96352532425024,0.2678441938661962,267.55135869808555,0.1001882999709451,97.10382741837977,84.92572,59.77780853262495,88762.94198187652,62478.76556813544,254.22926,158.54934971573672,265069.0761625051,165066.03438207373,272.38863,130.9177806231199,280840.7767802084,133812.04761707544,3113.30384,1413.4196539990387,3217562.5071856347,1440871.990132465,1294.5222,570.6138048739182,1336488.957638722,579872.01195054,2121.70062,902.9703019285868,2178306.824001589,908728.7030316336,0.37933,100000,0,386026,4034.679180994387,0,0.0,0,0.0,21565,224.7248555034125,0,0.0,25384,261.50485487630255,2037408,0,73176,0,0,0,0,0,48,0.4912361382568433,0,0.0,0,0.0,0,0.0,0.07053,0.185933092557931,0.3044094711470296,0.02147,0.3160803342768567,0.6839196657231433,25.36439080846918,4.496763431008358,0.3354243542435424,0.1966789667896679,0.2383763837638376,0.229520295202952,10.975850152802389,5.492380363010072,23.165592076392887,12933.874261927194,61.18425186841936,12.50336656379596,20.423825019119256,14.416612821400426,13.840447464103736,0.5415129151291513,0.7457786116322702,0.6941694169416942,0.56656346749226,0.1173633440514469,0.7024246877296105,0.9143730886850152,0.8755555555555555,0.7245901639344262,0.1505376344086021,0.4875585119487558,0.6711772665764547,0.6345029239766082,0.5177304964539007,0.1077720207253886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712531160698,0.004635264524505,0.007005289501203,0.0093393359823579,0.0116602057324257,0.0139454812158748,0.0161354480085674,0.0184561016464436,0.0205983124520582,0.022854391608105,0.0249297248497035,0.0271669886153466,0.0292855599345551,0.0315153763706818,0.0339093273875882,0.0358542664198475,0.0379039862393401,0.0399846372629415,0.0419921570259109,0.0442739817401092,0.0590207774028768,0.0730259438406935,0.0856711060734863,0.0976492623692573,0.1097754042301684,0.1262001291428934,0.1389372637301958,0.1518143379024613,0.1634935057993479,0.174558023207136,0.1883987667895565,0.2011181052882479,0.2133382702066952,0.2244128987031195,0.2347902772419114,0.2460026648900732,0.2562404938713429,0.265013246152979,0.2743116345694731,0.2833698658434419,0.29124231527665,0.2994134209291412,0.3067554574267298,0.3137876767458344,0.3198377608068111,0.326228172005829,0.3321296017654729,0.3385956194335079,0.3437771524166461,0.3489736070381232,0.3494807821982468,0.3501694635033479,0.350974616284478,0.3511896157960163,0.3517421083978558,0.3518899499493352,0.3519264948584486,0.3529063553399654,0.3538899268121283,0.3552919250206086,0.3556777729644209,0.3564606629790282,0.3578749392447328,0.3580060422960725,0.3591655333203808,0.361314731615039,0.3626109361580303,0.3650547503006519,0.3674001056152086,0.3703291903268078,0.3717896081383148,0.3728615450005313,0.3744358074222668,0.3744632768361582,0.3759426496601806,0.3804809052333804,0.377605355241138,0.3779081529435565,0.3832035595105673,0.3920738745671412,0.0,2.607447138063787,59.7962954497812,202.38648922010236,310.2599306006916,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95659,41884,394.47412161950257,7134,73.42748722023019,5552,57.474989284855575,2199,22.65338337218662,77.35161970545354,79.75665190937185,63.31721993396855,65.09391230477932,77.07720061480919,79.48181968957574,63.2160666034536,64.99499062854194,0.2744190906443577,274.83221979611017,0.1011533305149541,98.92167623738146,85.53512,60.191507932917865,89416.69889921493,62922.99515248735,256.97163,160.0846611658446,268098.2343532757,166814.54036300257,278.51893,133.239195351524,287782.3414419971,136695.1673748129,3211.3588,1434.7655049354582,3327926.1961760004,1470711.1980424817,1348.82983,582.0414910635028,1398324.53820341,596739.3878918899,2172.7171,909.1892214413554,2241226.8788091037,923565.927953396,0.37949,100000,0,388796,4064.395404509769,0,0.0,0,0.0,21690,226.16795074169707,0,0.0,25918,267.6590806928778,2036193,0,73009,0,0,0,0,0,44,0.4286057767695668,0,0.0,1,0.010453799433404,0,0.0,0.07134,0.1879891433239347,0.308242220353238,0.02199,0.3230830670926518,0.6769169329073482,25.443824495024632,4.582648764217516,0.3369956772334294,0.2017291066282421,0.2249639769452449,0.2363112391930835,10.975128573622277,5.300138398743422,23.425766267686747,12912.000927030327,62.37904612147314,13.286739126355648,20.86697499823954,13.856310457413906,14.36902153946404,0.5462896253602305,0.76875,0.6814537680384821,0.589271417133707,0.1227134146341463,0.6989720998531571,0.8962765957446809,0.8436018957345972,0.7216494845360825,0.1794871794871795,0.4966587112171837,0.7043010752688172,0.6342305037957212,0.5490605427974948,0.107795957651588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593489427665,0.0047051665568118,0.0068707248259484,0.0089612289685442,0.0110976614552075,0.0132206151965777,0.0155611074287462,0.0177778231612053,0.0198261758691206,0.021970705725699,0.0243041662819447,0.0264712833845426,0.028824879338911,0.030732592424586,0.032629915403923,0.0347934944545605,0.0366692923178972,0.0385342053358247,0.0404282102766304,0.0423943529804293,0.0570601634171316,0.0710696038194153,0.0849837841241852,0.0976125590547038,0.1096899470229426,0.125439227805766,0.1383084894041703,0.1500575545702592,0.1617845297956563,0.1734680727678859,0.1868718457490402,0.2001213381868608,0.2124708802333935,0.2235686918445539,0.234024978523756,0.2453016376356842,0.256442636507901,0.2657515118072994,0.2751007892794276,0.2833327604578421,0.2912992153322686,0.2989183184236683,0.3064462692571645,0.3135976997723733,0.3207746478873239,0.3271793482277015,0.3336666583335416,0.3393492628368073,0.3449916603095382,0.3504604561084542,0.351101481650944,0.3519692075056705,0.3530604486123432,0.3537101503705094,0.3540452978242777,0.3536772138328177,0.3529365205002374,0.3535529450423067,0.3546284893267651,0.354699631471609,0.3555764352156347,0.3577143988908695,0.3580015973769389,0.3586683979582699,0.3602721939020871,0.3617420295894978,0.3634496919917864,0.3648495530655923,0.3671103930315057,0.3682116570519196,0.3704312865497076,0.3715783343040186,0.3723604826546003,0.3753998476770754,0.3780178487552841,0.373820613877941,0.3733661387052129,0.3765656565656565,0.3818181818181818,0.3885971492873218,0.0,2.226517402883912,60.19191370261579,208.1296302726259,319.30724772449275,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95796,42242,397.12514092446446,7213,74.1471460186229,5639,58.34272829763246,2231,22.94459058833354,77.3507064425629,79.67873997084502,63.34838135415546,65.06981361009716,77.07077265433854,79.39837632548674,63.245384870196965,64.96937212162237,0.2799337882243549,280.3636453582783,0.102996483958492,100.44148847478596,85.65854,60.28492069717534,89417.65835734269,62930.519747354105,259.05313,161.25829169935437,269906.7080045096,167820.15084069726,282.20136,134.60052391677257,291246.9518560274,137968.34524789968,3239.88552,1455.29157326239,3355026.3059000378,1492115.5927829854,1308.11166,564.820641336393,1355288.268821245,579377.9816864929,2195.05616,918.3629157387916,2260219.57075452,930790.5998984936,0.3834,100000,0,389357,4064.439016242849,0,0.0,0,0.0,21890,227.95315044469496,0,0.0,26283,271.08647542694894,2037873,0,73135,0,0,0,0,0,37,0.3862374211866883,0,0.0,0,0.0,0,0.0,0.07213,0.1881324986958789,0.3093026479966727,0.02231,0.3094518206914683,0.6905481793085316,25.3484348076659,4.528904795866761,0.3376485192410002,0.2010994857244192,0.2344387302713247,0.2268132647632559,10.884467878408948,5.460364989425936,23.872137095343675,13048.203286504828,63.64621588096101,13.14050860093903,21.645215953280108,14.780024650082774,14.080466676659086,0.5479694981379677,0.7380952380952381,0.7058823529411765,0.5726172465960666,0.1188428459734167,0.697037037037037,0.9,0.8699360341151386,0.6892857142857143,0.1586715867158671,0.5010491956166939,0.6716417910447762,0.6522648083623693,0.5412667946257198,0.1081349206349206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019853328471293,0.0042072181670721,0.006514657980456,0.0089895173086299,0.0111741499918659,0.0136622313620491,0.015979780685663,0.0182261636272718,0.0203255771176308,0.0226156365124846,0.0246226676093572,0.0265245185055973,0.0287652227531987,0.030861719321001,0.0330696969384493,0.0352482980196076,0.037198377550598,0.0394144844602019,0.0413114141214833,0.0430373948530024,0.0572018865562001,0.071685487243831,0.0850865331194901,0.0974125609551034,0.1099072512647554,0.1260610801611044,0.1390211570072644,0.1511600681140911,0.1634797091701098,0.1753362988370223,0.189625850340136,0.2031668828361435,0.215904028165647,0.2277991434315182,0.2382654014887464,0.2492227692648116,0.2595428354898748,0.269387204781915,0.278672545308232,0.2879034103913939,0.2960644110478346,0.3032625074466469,0.31041417738291,0.3175262918333613,0.3239840211755849,0.330417426445222,0.3370235548717178,0.3425241433715471,0.3477083711169262,0.3526215128932269,0.3535223020808097,0.3546868547832071,0.3558512212653803,0.3561980839917802,0.3562725933859954,0.3560424722273368,0.3559900338025487,0.3576313924551312,0.3587540095027359,0.3585687382297551,0.3596033107713192,0.3600254589573761,0.3606301207872286,0.3603878491998915,0.3625584947748709,0.3634473684210526,0.3662308489805322,0.3687828162291169,0.3696184560780834,0.3697616762635956,0.3721283550481101,0.3744676262871313,0.3754397185801087,0.3771242337239078,0.3807978621874403,0.3800626808100289,0.3787665886026541,0.3779724655819774,0.3808848553601815,0.3825371965544244,0.0,2.026207420369567,59.79255580616354,218.5382177969101,325.4962447333721,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95732,41854,392.7840220615886,7158,73.45506204821794,5601,57.88033259516149,2309,23.67024610370618,77.31652017658898,79.67825091258489,63.31665033110207,65.06280789573417,77.02807765121558,79.39075663129496,63.21123589987087,64.96100441957343,0.288442525373398,287.4942812899235,0.1054144312311962,101.8034761607396,84.89338,59.73541113960564,88678.16404128191,62398.58264697869,255.80371,159.4766392172043,266568.1590272845,165946.55832658283,279.50877,133.93172005327466,288373.7621693895,137132.3228918962,3214.47136,1445.2383713198735,3322250.2402540427,1474139.9023522683,1356.78801,593.8075022628043,1397711.935403,600751.8733000796,2267.7961,939.6429313778568,2326879.5804955503,945862.959297472,0.38084,100000,0,385879,4030.825638240087,0,0.0,0,0.0,21649,225.46275017757907,0,0.0,26021,268.2279697488823,2038762,0,73197,0,0,0,0,0,52,0.5431830526887561,0,0.0,1,0.0104458279363222,0,0.0,0.07158,0.1879529461191051,0.3225761385861972,0.02309,0.3169886742171885,0.6830113257828114,25.346887522020367,4.5593604278200575,0.3231565791822888,0.1967505802535261,0.2467416532762006,0.2333511872879843,11.039973730592342,5.488776433777399,24.56420969510289,12980.01854202097,63.19194965986368,12.920451142083165,20.38226169119937,15.432496457373128,14.45674036920801,0.5470451705052669,0.7713248638838476,0.7049723756906078,0.5701881331403763,0.1147666411629686,0.7193240264511389,0.92797783933518,0.875,0.724025974025974,0.1653846153846153,0.4917452830188679,0.6950067476383266,0.6516690856313497,0.5260707635009311,0.102196752626552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021981138764801,0.0049573706673695,0.0074092869829992,0.0098255382708271,0.0120137532552083,0.0142280976921353,0.0163075071644926,0.0184430624061762,0.0206746352286786,0.0227489122088559,0.0248133869247805,0.0270156487452252,0.0291014540443822,0.0310878161298294,0.0330596414498793,0.0352640932385518,0.0371524399080764,0.039158532410817,0.0413721413721413,0.0434968328054675,0.0578414892617379,0.0719331107878737,0.0848444169437132,0.0979862243020137,0.1098257971992576,0.1256240480622779,0.138905981455155,0.1519406416998446,0.1634364716440873,0.1747993648341272,0.1887638028548343,0.2012294106188177,0.2135011093226606,0.2248501946376241,0.2350383124889906,0.2461371344964419,0.257077763259289,0.2677335494108511,0.2770304784607525,0.2853410939755723,0.2932135913341357,0.3019082049302118,0.3088235294117647,0.3154453402437854,0.321937460487283,0.3280434380206083,0.3347365255957303,0.3404930250334416,0.3457092501879066,0.351351708464364,0.3518378684501497,0.3521797331051709,0.3529070589899561,0.353113616903943,0.3534089213784872,0.3529456994786781,0.3521417785901613,0.3530276016904384,0.3544366899302094,0.3562075044069503,0.3570404196701513,0.3573716354666083,0.3595676406012498,0.3599513305243235,0.3613068856111797,0.3620233259074826,0.3625699125197189,0.3655614905654414,0.3688816741362882,0.3698865452221156,0.3718348623853211,0.3741003330110645,0.3770439651332951,0.3804564251799663,0.380604103343465,0.3830659751537812,0.3881363848668846,0.3959317854941442,0.3932773109243697,0.4037558685446009,0.0,2.363885946856305,59.94100276090014,213.994555336487,323.12630508553616,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95681,41941,393.9653640743721,7290,75.07237591580356,5641,58.402399640471984,2266,23.296161202328573,77.40264542862671,79.78387441438717,63.35728834693722,65.11248953549979,77.12337700165399,79.50418219725053,63.25593359604917,65.01336378210382,0.2792684269727203,279.69221713664183,0.1013547508880492,99.12575339596684,85.63764,60.24400565793509,89503.28696397404,62963.39467390087,260.58369,161.9849561538766,271792.6338562515,168745.39518797986,280.02937,133.48436870797738,289649.063032368,137127.94301750814,3255.33064,1458.468065406376,3370218.2878523427,1492366.733114776,1359.83369,590.3619211460169,1405989.9039516726,601867.2087498936,2238.69436,924.6418721740816,2302944.1790951183,935746.1184602536,0.38186,100000,0,389262,4068.331225635184,0,0.0,0,0.0,22059,229.9516100375205,0,0.0,26046,269.1443442271716,2038908,0,73088,0,0,0,0,0,55,0.5748267681148818,0,0.0,1,0.0104513957839069,0,0.0,0.0729,0.1909076624941078,0.3108367626886145,0.02266,0.3087755900378146,0.6912244099621854,25.42298094088044,4.574864429873104,0.3265378478993086,0.1994327246942031,0.2382556284346747,0.2357737989718135,11.145663658109957,5.518643591673392,24.12649544237844,12943.31397665728,63.095744915680456,13.097419611495177,20.55026003840599,14.935243327532683,14.512821938246612,0.5373160787094486,0.7493333333333333,0.7046688382193268,0.5580357142857143,0.1052631578947368,0.7060957910014514,0.8974358974358975,0.8651685393258427,0.725,0.1564885496183206,0.4827586206896552,0.6821705426356589,0.6535433070866141,0.505859375,0.0926966292134831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366872234205,0.004581065604508,0.0069892473118279,0.0090693966261438,0.011033038102114,0.0133698552023297,0.0156901526196132,0.0178708116879803,0.0201216085023759,0.0222072127389577,0.0242829906312142,0.0264249342969776,0.0287679542673836,0.0308451255432655,0.032872132974278,0.0349136460884933,0.0371831510934393,0.0391320590249673,0.0413511939429237,0.0433690486116901,0.0581266584484235,0.0724390320520204,0.0848016118707565,0.0977036281202991,0.1096309422101277,0.1248413034278459,0.137862243869311,0.1494188026909648,0.1613189302390187,0.1735349311028899,0.1867429014439383,0.1997554588932892,0.2122213765358269,0.2242361300901885,0.2352203609806531,0.2462223107834346,0.2561913466039544,0.265590600709889,0.2752143917166064,0.2843112594896186,0.2927271467504272,0.3012921525370312,0.3085591438493704,0.3156490102683166,0.3222197956856179,0.3285846210675368,0.3341255644646811,0.339512604187843,0.344836949494427,0.3503405393299872,0.3512913938448714,0.3522894212947072,0.3531188960555345,0.3540258055215166,0.3545544892237863,0.353790834672175,0.3537803816008233,0.3547305625400582,0.3558887826205766,0.3569451142188644,0.358422602855374,0.3585821705579348,0.3600334623026247,0.3609732098931079,0.3610910317575057,0.3615891614793116,0.3615540985484009,0.3637653289618864,0.3653113087674714,0.3675796356097755,0.3680978783851899,0.3720431261063133,0.3762615042843542,0.3766393128307385,0.3755583008647724,0.3808788598574822,0.3814147018030513,0.3813576494427558,0.3865199449793672,0.3873292867981791,0.0,2.101961023243453,60.96383238458946,204.2366150217077,332.19497427729493,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95722,41736,392.0310900315497,6995,71.83301644345083,5464,56.444704456655735,2200,22.617580075635697,77.33907921770925,79.70829646473393,63.32552877917672,65.07662246716599,77.06789158073656,79.43672890202872,63.22696359910564,64.98026180255889,0.271187636972698,271.567562705215,0.0985651800710769,96.36066460710424,84.8144,59.68682907491668,88604.91840956103,62354.34808603736,254.66443,159.14732337073096,265415.33816677466,165630.91602842908,278.59607,133.6659804361534,287294.9792106308,136696.66374085215,3156.98188,1419.4754568343078,3262969.8084035018,1447977.9383933365,1348.07004,587.8437398561244,1392581.569545141,598461.2898669621,2173.19736,897.6538308665346,2236307.181212261,908735.0136806988,0.37947,100000,0,385520,4027.496291343683,0,0.0,0,0.0,21521,224.15954535007629,0,0.0,25875,266.5531434779884,2041202,0,73150,0,0,0,0,0,60,0.6268151522116129,0,0.0,0,0.0,0,0.0,0.06995,0.1843360476454001,0.3145103645461043,0.022,0.3188150953604761,0.6811849046395239,25.44483700841745,4.567643198124864,0.3418740849194729,0.1976573938506588,0.2225475841874085,0.2379209370424597,11.111267758571634,5.517770008667184,23.3389026127094,12929.611603380234,61.46610816631294,12.585593290757172,21.133251327286526,13.45921080083531,14.288052747433944,0.556185944363104,0.7546296296296297,0.7066381156316917,0.6118421052631579,0.123076923076923,0.7177541729893778,0.9190031152647976,0.8864628820960698,0.7306273062730627,0.1753731343283582,0.5048239266763145,0.6851119894598156,0.64822695035461,0.5777777777777777,0.1094961240310077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788040836169,0.0045423206391694,0.0071252397917237,0.0092261420907169,0.0112102377343519,0.0135147521616474,0.0159078162443277,0.0182135601180206,0.0205116669052536,0.0227370490997357,0.0252597249428246,0.02750531516079,0.0295475815823845,0.0316395705837505,0.0337844114823646,0.0356555639432075,0.0376256086190821,0.0396948941469489,0.0413659713412224,0.0430366295786973,0.0577278469778756,0.0718672511744211,0.0850597609561753,0.0976645881746774,0.1101749427929685,0.1258673210357082,0.1390880930153611,0.1512967379269227,0.1633647496313393,0.1745493562231759,0.1885257384239054,0.2017107898868496,0.2134650535294629,0.223925675453859,0.2346884841544255,0.2459590696436886,0.2566636516922939,0.266575875924321,0.2757818264373687,0.2843797996469752,0.2926755868327237,0.3001275047668066,0.3073402091119837,0.314077303596881,0.3199393203883495,0.3258309439720414,0.3313176241285389,0.3369065460919044,0.3424147646496239,0.3472820999617661,0.3476436410587475,0.3481886101900136,0.3492970061062458,0.3506681530598949,0.3511691249795347,0.3510873232524614,0.3510505034488226,0.3522603799677323,0.3539707598325211,0.3550880591125937,0.3561272850372376,0.3571442732805964,0.3580817200688699,0.3607974316952158,0.3631655022886051,0.3636814362507176,0.3645076386107455,0.3685706166524581,0.3706863125242342,0.3737018693081962,0.3746326230712711,0.3761886853274593,0.3774936061381074,0.3793956256279465,0.3794084186575654,0.3825228695233509,0.3784885544057698,0.3827493261455525,0.3800226372382569,0.3848259679311693,0.0,2.395490019277941,57.91530450383066,207.3966287038637,316.6378589045725,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95695,41754,392.4969956633053,7136,73.49391295260986,5537,57.36976853545118,2280,23.501750352683004,77.30793472821749,79.68509579075814,63.31631099018998,65.07061494332416,77.03242929302438,79.40633087206486,63.21556911240287,64.9709112577978,0.2755054351931107,278.7649186932839,0.1007418777871151,99.70368552636444,85.19852,59.95585875998526,89031.08835362349,62652.85726734444,257.3761,160.268279541606,268461.643764042,166985.82844830555,276.99292,132.80823444659467,286260.87047390145,136313.99757166105,3185.997,1439.9570691378651,3302992.0476513924,1478452.9903734408,1313.9194,570.6850798821465,1362119.9958200532,585450.0338389116,2241.57712,928.4277106937516,2312873.776059355,945094.8110389544,0.37971,100000,0,387266,4046.867652437432,0,0.0,0,0.0,21778,227.0651549192748,0,0.0,25796,266.3880035529548,2037227,0,73214,0,0,0,0,0,44,0.4597941376247453,0,0.0,0,0.0,0,0.0,0.07136,0.1879328961575939,0.3195067264573991,0.0228,0.3105473965287049,0.6894526034712951,25.179938549125037,4.513128633487046,0.3404370597796641,0.2044428390825356,0.2255734152067906,0.2295466859310095,10.895982016739124,5.357320399556051,24.33612540766679,12901.722087597796,62.5554328183832,13.215114756618249,21.47411609631221,13.785497365368794,14.080704600083957,0.5468665342243092,0.7632508833922261,0.6923076923076923,0.5764611689351481,0.1093627065302911,0.6971014492753623,0.8933717579250721,0.8545081967213115,0.7087719298245614,0.1269230769230769,0.4969930238152514,0.7057324840764331,0.635647816750179,0.5373443983402489,0.1048466864490603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679869590749,0.0043472092740464,0.0066545613163046,0.008562200373771,0.0107497355788788,0.0128609832593377,0.0152338611822047,0.0176110260336906,0.0196487354065713,0.0219569868258079,0.0240907040636404,0.0262731006160164,0.0285182442716689,0.0308643247141238,0.0328562436150123,0.0348392432544195,0.0365036109873485,0.0386839564364248,0.0406753565595514,0.0429402443601184,0.0568044123177203,0.0711452107560421,0.0841639213546803,0.0971708035338662,0.1098436528101377,0.1247382780280439,0.1379727364345197,0.1506578107037935,0.1626801414424135,0.1743467627751319,0.1882962340753184,0.2009129950347782,0.2135075778990628,0.2245801626869588,0.2355128261539138,0.2467240443513995,0.2573481822036735,0.2672660170578572,0.2759763474786911,0.2841905067424355,0.2920860309702227,0.2993832578497115,0.3067039304619684,0.3140041531130343,0.3203602287939637,0.3262955143164055,0.3316274052331853,0.3377900820330939,0.3435336597784156,0.3476160859611745,0.3485421166306695,0.3489107325289229,0.3498961292237249,0.3508667585406542,0.3520151603324529,0.3512803172358673,0.351637519872814,0.3528673775958268,0.3539529529013523,0.3554227677289693,0.3567175428679103,0.3567621320604614,0.3574753069519618,0.3567610062893082,0.3575905713801698,0.3588765876876956,0.3598666628351389,0.362445691814924,0.3645145251793451,0.3680925133047897,0.3708667219305517,0.3738473085996139,0.376916714385697,0.3812562466364265,0.3844619621996391,0.3903519272204931,0.3910443183560803,0.3978844589096826,0.3899233296823658,0.3883384146341463,0.0,1.864797786984247,61.3764304530992,209.01574844767748,317.0251752930234,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95710,42087,396.8864277504963,7260,74.66304461393794,5599,57.95632640267475,2281,23.456274161529624,77.38171245272493,79.75501264809051,63.34258245905804,65.09481881885296,77.10949487684434,79.48393261399742,63.24258412610782,64.99854501443475,0.2722175758805889,271.0800340930888,0.0999983329502214,96.2738044182032,85.61872,60.24088014031828,89456.16967923936,62940.84145048402,256.10756,158.970096221949,267042.1899488037,165551.57522117757,277.86268,132.34069325880586,287436.0881830529,136053.44887290496,3219.38268,1445.7038039365882,3331602.591160798,1478856.6668180283,1365.34181,595.2559010518964,1408043.9556995088,603711.5237433206,2249.58248,931.9704674345842,2313711.691568279,939336.8580408434,0.38333,100000,0,389176,4066.189530874517,0,0.0,0,0.0,21673,225.86981506634623,0,0.0,25957,268.27917667955285,2039202,0,73136,0,0,0,0,0,45,0.4701703061331104,0,0.0,0,0.0,0,0.0,0.0726,0.1893929512430542,0.3141873278236914,0.02281,0.3158032443746729,0.684196755625327,25.34386368267841,4.573149859036332,0.3305947490623325,0.1991427040542954,0.2375424182889801,0.2327201285943918,11.035981272955167,5.393436933203761,24.11684922236005,12988.10532623019,62.88414813256692,12.97310093859826,20.717090085476528,14.753466998159404,14.440490110332712,0.5359885693873906,0.7524663677130045,0.6763911399243652,0.5796992481203007,0.1066768994627782,0.7124907612712491,0.9208211143695014,0.8648648648648649,0.7661016949152543,0.1465201465201465,0.4797456429580782,0.6782945736434108,0.6169154228855721,0.5265700483091788,0.0961165048543689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0048454621942442,0.0069407801274505,0.0088576478475509,0.011036068108306,0.0131568228105906,0.0154065765995411,0.0177222426395524,0.0199135172709894,0.0218957928140034,0.0241334413221107,0.0262528362714196,0.028352529823118,0.0301407115927398,0.032321647867411,0.0342021733061756,0.0362809677686635,0.038157007212162,0.0401044212628316,0.0420618212893678,0.0575057181948259,0.0707742239438831,0.0835029695074605,0.0965502004229397,0.1083906493944892,0.1239833744037735,0.137518303940918,0.1508821243385398,0.1629683443552953,0.1743458811161054,0.1879721123694787,0.2017083283714585,0.2145288826530057,0.22620388084176,0.2369743832286591,0.2473431342160031,0.2582353859535651,0.2678864622927959,0.277752574513451,0.2865321638766116,0.2940700028926815,0.3018391422792269,0.3099786931818182,0.3171445009109214,0.3235040398517708,0.3294712190311845,0.3351180274959657,0.3409446714269349,0.346360034185378,0.3510297241315619,0.3519635022743789,0.3528247422680412,0.3540798513346097,0.3548280041556043,0.3554533995699562,0.3554825399251165,0.3547713576185128,0.356533997770638,0.3572037656047479,0.3587959245579287,0.3602384344305316,0.360435212660732,0.3608124503200435,0.3636201077359798,0.3642395249885815,0.3657464026436991,0.3668460465248712,0.3692505729804402,0.3711351048166585,0.372014465683742,0.3742406942224252,0.3753601536655639,0.3781822810590631,0.3801016479285384,0.382255468232175,0.3828974083363191,0.3871166589613191,0.3895705521472393,0.3924686192468619,0.3916601714731099,0.0,2.1165852355039774,59.81260942244874,211.1538436944092,324.4862194901713,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95864,41931,393.505382625386,7102,73.07226904781774,5485,56.6949011099057,2187,22.469331553033463,77.44506122741345,79.72282614761255,63.40474875222951,65.08417277612331,77.18462591700593,79.46198689179873,63.30913569686143,64.99082305898304,0.2604353104075159,260.8392558138206,0.0956130553680836,93.34971714027064,86.08358,60.57924973658736,89797.60911290995,63192.90842921989,256.186,159.0654103017844,266733.9355753985,165423.130999942,274.04356,130.8944500034554,282431.8096469999,133910.51634043714,3159.32516,1407.5007065365294,3267125.8449470084,1439719.8808066938,1307.35609,558.609993281221,1352645.9880664274,571600.298612563,2159.81466,892.5129656628819,2221154.4479679544,903667.3601295667,0.38167,100000,0,391289,4081.7095051322704,0,0.0,0,0.0,21676,225.5695568722357,0,0.0,25469,262.41341901026453,2039874,0,73250,0,0,0,0,0,50,0.500709338229158,0,0.0,1,0.0104314445464407,0,0.0,0.07102,0.1860769774936463,0.3079414249507181,0.02187,0.3108144192256342,0.6891855807743659,25.564919577193475,4.64046793947585,0.331084776663628,0.2034639927073837,0.2273473108477666,0.2381039197812215,10.96924575662381,5.349729764381528,22.99733763783392,12955.96561973712,61.19080515046131,12.940788975857943,20.358078845708647,13.751081135175378,14.140856193719332,0.5473108477666363,0.78584229390681,0.6965859030837004,0.5685645549318364,0.1156202143950995,0.7043879907621247,0.9285714285714286,0.8506787330316742,0.7454545454545455,0.1346153846153846,0.4985666507405638,0.7279596977329975,0.6470160116448326,0.5185185185185185,0.1108986615678776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0043254084826629,0.0065299169564908,0.0088506353781819,0.0113703334891377,0.0137855958327822,0.0159394606045791,0.0179775051750333,0.0200961921392028,0.0222903885480572,0.0242676196229815,0.0262650503558755,0.02840827393546,0.0305187257634824,0.0325053316986225,0.0345781466113416,0.0366915551510889,0.0386608086543841,0.0408828537020887,0.0430145566920203,0.0574428595261928,0.0716457203748393,0.0846717621191498,0.0976925256298597,0.1097644372902397,0.1246345607869212,0.1379273832339767,0.151230862400527,0.1637627689748566,0.1747412805941717,0.1886707289550891,0.2018788467768059,0.2138561410364966,0.224574466923606,0.2348799402447329,0.2459172383270635,0.2567466642886603,0.2666449416233102,0.2762001927109901,0.2850032609068754,0.29277289546716,0.3004841992000187,0.3079517216897408,0.3151662456148753,0.3220499496132972,0.3282291345857714,0.3339428857715431,0.3397151113204424,0.3452926999922258,0.3496760059651855,0.3501548404470176,0.3502227477725222,0.3520065243679519,0.352858954406594,0.3537891695681162,0.3535760628959621,0.3537759676706447,0.3539934533551555,0.3554192229038855,0.3575100958887051,0.359088528025144,0.3601256321112516,0.3609139075621453,0.3615176636203159,0.3615277377175271,0.3630705934432205,0.3649886234357224,0.3667587592615848,0.3712068242203887,0.3719998413139207,0.3735992315784659,0.3767211015049632,0.3809583938379948,0.3822669947708397,0.3799487325548277,0.3887688984881209,0.3876029206151934,0.3930948419301164,0.3916339135317238,0.3982615566969577,0.0,2.02344244910037,57.44953002727805,205.33704906430305,319.4643745588868,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95684,41861,393.3991053885707,7063,72.5722168805652,5518,57.07328288951131,2197,22.678817775176626,77.29747507811412,79.70093631824277,63.28577397120039,65.06573238852928,77.03396531352709,79.43445609631485,63.18838814872554,64.96944313881711,0.2635097645870274,266.480221927921,0.0973858224748553,96.28924971217144,86.16938,60.60384489108163,90056.20584423728,63337.491002760784,257.98819,160.8061380924286,269047.28063208057,167482.14390463862,278.75565,133.30617456839056,287108.4089293926,136184.00045010404,3164.83304,1427.2282559002313,3275738.723297521,1459798.8956474122,1295.5801,565.3669209297221,1341041.856527737,578055.1761932963,2164.28918,901.6470454898124,2234708.498808578,918554.4653612402,0.38081,100000,0,391679,4093.4639020107857,0,0.0,0,0.0,21885,228.1050123322604,0,0.0,26030,267.72501149617494,2028010,0,72856,0,0,0,0,0,42,0.4389448601647088,0,0.0,1,0.0104510680991597,0,0.0,0.07063,0.1854730705601218,0.3110576242389919,0.02197,0.321947283485745,0.678052716514255,25.509671298090904,4.474923133995664,0.3405219282348677,0.2062341428053642,0.2258064516129032,0.2274374773468648,10.79269125816739,5.390714831511733,23.486790128687552,12939.394660183176,61.96551240922432,13.189103285831733,21.033402577712547,13.963729767058382,13.779276778621666,0.5514679231605655,0.7583479789103691,0.6881319850984566,0.6051364365971108,0.1059760956175298,0.7001477104874446,0.9171270718232044,0.8362445414847162,0.7293233082706767,0.1455223880597015,0.5031219980787704,0.6842783505154639,0.6403940886699507,0.5714285714285714,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025234099477076,0.0047775546223601,0.0069648205492664,0.0089828269484808,0.0111897786458333,0.0133940393978284,0.0155542409530414,0.0179530646841363,0.0200149319369585,0.0222936785081565,0.0244222662139845,0.0265455815578064,0.028477073281139,0.0306458925848068,0.0327713132272619,0.0349717619313597,0.0369706266453846,0.0387510772841018,0.0409388362342512,0.0430006670001667,0.0569930325599857,0.0711728498450716,0.0843870344914427,0.0977962446746962,0.1099754227186903,0.125526287950915,0.1386088174736261,0.1512805494915073,0.1633220360728299,0.1742439694689267,0.1883262524531475,0.201049140528472,0.2134027467680277,0.2243634690389587,0.2350768891583531,0.2466492100124267,0.2578665563765216,0.2677301968206757,0.2768762216464385,0.2853146532451303,0.2934434968017058,0.3005002870499467,0.3071964355543969,0.3144990875036019,0.320755176317359,0.3271553107944583,0.3330867046224072,0.3388911568097157,0.3445265714916667,0.349431404477276,0.3498472931700856,0.3500601169170386,0.3511478472556402,0.3525544267053701,0.3529657228017884,0.3528499477919046,0.3526045464633334,0.3541471588388941,0.3551558180018432,0.3566408619028932,0.3573085412847469,0.3589202618503037,0.359366169175057,0.3599231782755309,0.3605970292746238,0.3611834566100635,0.3620517786448691,0.3640395018241288,0.3662273765594799,0.3689146763104558,0.370938298649142,0.3731137088204038,0.3731362063541994,0.3725967018770423,0.3766099464134624,0.3768475818848291,0.3774803876326719,0.384505896705978,0.3891652846876727,0.3860393366756652,0.0,2.282850489283355,59.67425668394526,204.3972403790702,320.6960331497954,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95822,41907,393.65698900043833,7200,73.80351067604516,5670,58.53561812527394,2275,23.314061489010875,77.32864418348662,79.63822309300384,63.32870225298407,65.03796005696626,77.05108950854665,79.36196792198812,63.22705548249948,64.93992215628357,0.2775546749399638,276.2551710157197,0.1016467704845851,98.0379006826837,85.02054,59.87115000227262,88727.57821794577,62481.63261283696,257.11303,159.82801097274017,267672.2882010394,166145.83768431094,285.23252,136.73740845039123,293115.9858905053,139315.36679204513,3256.09288,1468.2171798339489,3362717.330049467,1496918.704823242,1391.19187,604.1748839346682,1439070.4535492894,617738.206189255,2244.25442,930.5596027034868,2302769.32228507,937590.7238149784,0.38092,100000,0,386457,4033.0717371793535,0,0.0,0,0.0,21762,226.44069211663293,0,0.0,26474,271.7851850305775,2036852,0,73189,0,0,0,0,0,52,0.5426728726179791,0,0.0,0,0.0,0,0.0,0.072,0.189016066365641,0.3159722222222222,0.02275,0.3121713985278654,0.6878286014721346,25.25105689715717,4.552599242430559,0.3287477954144621,0.2075837742504409,0.2305114638447971,0.2331569664902998,11.081173203178556,5.487478511675416,24.18777625755133,12995.061868038703,63.92925745566791,13.808249017407183,20.94984191582833,14.53416156891553,14.637004953516875,0.5483245149911816,0.7689039932030586,0.6958154506437768,0.5791889824024483,0.113464447806354,0.7129695251594613,0.9304123711340206,0.868421052631579,0.7561837455830389,0.1232394366197183,0.4937778821319558,0.6894803548795945,0.6399147727272727,0.5302734375,0.1107899807321772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0048351782021651,0.0070511844975396,0.0091926702421582,0.0112975391498881,0.0136428425982488,0.015920905106513,0.0180636206843765,0.0202037750503305,0.0222154003581478,0.0244269803375103,0.0263846556448385,0.0285599769793636,0.0305959624036155,0.0328754692076063,0.0349797002035145,0.0370167232386786,0.0388611243597453,0.0410196216929293,0.04277996939827,0.0576816764193551,0.0714046717831824,0.0846226415094339,0.0981766591350953,0.1102291653490186,0.1257029895555837,0.1388561914760495,0.1513242601913234,0.1640928702635738,0.1757491289198606,0.1895172146418687,0.2023218323650015,0.2145474712106219,0.2255684302579798,0.2366843072318982,0.2481058088528512,0.2591471924790371,0.2690766217098597,0.2784792877906977,0.2878325688073394,0.2954455858822438,0.3023138538038443,0.3092549718017215,0.3153733387806109,0.3220116138928454,0.3285317533790038,0.3349468905581821,0.3406572386794017,0.3454970456463866,0.3504804002011593,0.3515691435513262,0.3519804508994519,0.3522497418560901,0.3531521328803322,0.3543117979623193,0.3538097142329816,0.352875701633036,0.3540248825904259,0.3551060951173982,0.3558263545916541,0.3573980743192417,0.3586141207286581,0.3584437955591034,0.3594349142280524,0.3613116654190713,0.3624097650610316,0.3635842622575006,0.3675016584009856,0.3699560246262093,0.3719402985074627,0.372408110953449,0.376056488712956,0.3750795064241191,0.3772071863674917,0.3789693858147936,0.3845228065952581,0.3908629441624365,0.3904081632653061,0.392719249862107,0.3925490196078431,0.0,2.50735502693403,62.1439384870925,211.3730250950877,326.8461507055077,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95746,42285,397.8338520669271,7146,73.51743153760992,5563,57.51676310237504,2194,22.517911975435005,77.35098256499538,79.69832178087835,63.33757887846742,65.07062175706955,77.07916075685615,79.42819005390072,63.23805585436598,64.97472641735112,0.2718218081392223,270.131726977624,0.0995230241014368,95.89533971842457,85.27772,60.013270182513146,89066.61374887724,62679.66304860062,257.89869,160.69448786725113,268772.00091909844,167249.0107860914,281.39939,134.47573333180372,291026.9671840077,138124.82453263563,3177.6856,1422.4973755554918,3286382.9298351887,1453211.596887068,1348.49236,585.0914060092289,1394446.817621624,597127.9176249967,2157.2038,895.7071914184775,2215540.910325236,901634.029329925,0.3827,100000,0,387626,4048.482443130784,0,0.0,0,0.0,21753,226.59954462849623,0,0.0,26215,270.85204603847683,2036273,0,73113,0,0,0,0,0,41,0.428216322352892,0,0.0,0,0.0,0,0.0,0.07146,0.1867258949568853,0.3070249090400224,0.02194,0.3183814721150007,0.6816185278849993,25.39003629608723,4.522510291296892,0.3251842531008448,0.2103181736473126,0.2399784289052669,0.2245191443465755,11.282156890122572,5.742683110428073,23.256390281880503,12960.354763138035,62.26346450182732,13.455325329327463,20.20714971473015,14.833894278832666,13.76709517893704,0.5486248427107676,0.7615384615384615,0.6843559977888336,0.5760299625468165,0.1232986389111289,0.7176029962546816,0.9315476190476192,0.8758620689655172,0.7491525423728813,0.1598513011152416,0.4952696310312204,0.6930455635491607,0.62372634643377,0.5269230769230769,0.1132653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366439500572,0.004186051225915,0.0063620589936379,0.0085317299098074,0.0106150420432939,0.0125724058596573,0.0146685558760868,0.0168600675627404,0.0192050204928505,0.0214207493680213,0.0234946798696106,0.0258879080270991,0.0282115869017632,0.0302025517191667,0.0324540681060895,0.034521250206714,0.0365714759054857,0.0388099660672221,0.0408804050611854,0.0429954056278454,0.0577182048792709,0.0714001757542787,0.0844605221767851,0.0974094244800975,0.1093084545646215,0.1249141129586368,0.1376516501230169,0.1499276380198357,0.1616710818663476,0.1732367927058192,0.1872058079040058,0.2008571985193843,0.2138381882654948,0.2256278382666739,0.2359280909761441,0.2466940820466209,0.2569893554043941,0.2667049265185785,0.2759098235975208,0.2848445239405613,0.2938840717287366,0.3006929974480837,0.308378592642552,0.3157043409496651,0.321810189907232,0.3285387059432034,0.3349138038882078,0.3411854489951666,0.3466799658022229,0.3519132467738314,0.3524500613695526,0.3537417780167955,0.354681124429949,0.3555971068690119,0.3558418348350584,0.3557755775577558,0.3552591886957212,0.3564297716714441,0.3577363921393938,0.3581256374013705,0.3597235784571471,0.3615550670389955,0.3621675001050553,0.3630390420021079,0.3628567987474407,0.363569726956203,0.3633973479652492,0.3661856190987463,0.3672536820274877,0.3677038925853619,0.3704772373362645,0.3724388808644947,0.3726869455006337,0.3783763103527431,0.3791016548463357,0.3791287697462901,0.3828491096532334,0.387826444581534,0.3894795747062115,0.38671875,0.0,2.2662804812716124,58.75425012817767,205.99203275323063,326.8941891361608,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95838,42042,394.90598718671095,7119,73.0816586322753,5520,56.95027024770968,2207,22.64237567561928,77.51248185563044,79.79720466851127,63.42745123530996,65.1103839458494,77.23596807180867,79.52243657639194,63.3258009202137,65.01204173689624,0.2765137838217697,274.7680921193308,0.1016503150962577,98.34220895317004,84.95454,59.76234301639066,88643.89907969699,62357.66920886356,256.35728,159.57475180022064,266839.7086750558,165854.16202364475,280.26601,134.01114756507624,288641.2279054238,136906.45903826808,3185.33824,1432.2681624491909,3284931.655501993,1455730.2139539528,1345.26443,586.3096030324264,1382283.8644379056,590379.7852964649,2180.05994,908.2473009187412,2237262.9437175235,914483.2347014794,0.3818,100000,0,386157,4029.268139986227,0,0.0,0,0.0,21613,224.8481813059538,0,0.0,26027,267.78522089359126,2047074,0,73360,0,0,0,0,0,54,0.5425822742544711,0,0.0,1,0.0104342745048936,0,0.0,0.07119,0.1864588789942378,0.3100154516083719,0.02207,0.3174116077384923,0.6825883922615077,25.35224393749589,4.556391148032465,0.3380434782608695,0.1980072463768116,0.223731884057971,0.2402173913043478,11.004042718271254,5.4145446632809175,23.36595892031793,12997.073075460234,61.8364046187161,12.68252001470364,20.8791738597189,13.731696628927482,14.543014115366082,0.5509057971014493,0.7785910338517841,0.7020364415862809,0.5902834008097166,0.1138763197586727,0.7104072398190046,0.9246376811594202,0.8758465011286681,0.7318007662835249,0.1588447653429603,0.5004768717215069,0.7112299465240641,0.6479269149683766,0.5523613963039015,0.102001906577693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022969663853641,0.0046586524341458,0.0070546022157127,0.0094570323994682,0.0115097828074524,0.0137904382227013,0.0161676219952963,0.0183965246476718,0.020514443843114,0.0225794576021597,0.0246382599612915,0.0266750079481473,0.0289657014857894,0.0308550491951751,0.0328869369787317,0.0349322426045281,0.036951190488509,0.0390026437198693,0.040979775000779,0.0428382556553784,0.0577849619355511,0.0715488127476709,0.0846780953977701,0.09754022602193,0.1100125301407798,0.1256324400832338,0.1390961505850432,0.1507985453926801,0.1631753620249922,0.1746431210443461,0.1884288633186364,0.2017369512616661,0.2141251832148092,0.2251889223780195,0.2364902721170641,0.2480533557492368,0.2586996490055156,0.2686642623613873,0.2778790933701845,0.2867462167969642,0.2948654354170752,0.303055018292825,0.3108036377791146,0.3178924232832041,0.3240258639478846,0.3302451311666769,0.3356074684759969,0.3412835200486642,0.3472141594746958,0.3516333342093506,0.3522394868904812,0.3527057404462964,0.3529601526010912,0.3534775844185778,0.3538657541146319,0.3539291499831892,0.353938185443669,0.3545693191140279,0.3560467696509345,0.3564860280332113,0.3572821358932053,0.3579453301159064,0.3591194968553459,0.3597157668930997,0.360712316947487,0.362255232950709,0.361661650292464,0.3644491684381643,0.366006001814502,0.3668957392499509,0.3693151177422254,0.3699010315756401,0.3709838107098381,0.3698929594451982,0.3722206716903898,0.3754098360655737,0.3700739845991243,0.3695695298551875,0.3709150326797386,0.374195989405978,0.0,2.495730941565592,58.07577814175714,213.17983527753256,312.5844235112795,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95737,42043,395.33304782894805,7055,72.55293146850225,5461,56.46719659065983,2201,22.58270052330865,77.31288813594676,79.67225034031866,63.318020272784125,65.0624457463295,77.04686694269827,79.40800293840404,63.22113819492248,64.96910572348995,0.2660211932484912,264.2474019146164,0.0968820778616432,93.34002283955556,85.81408,60.41571406882605,89635.22984843895,63105.91941342015,257.45397,160.48727710045404,268340.3281907727,167055.8792321193,282.01704,134.62837874873313,291734.6376009276,138279.8858643869,3139.16128,1406.0440260872062,3247659.149545108,1437369.2366453991,1355.5971,585.3145223983535,1399704.8267649915,595122.9225882923,2171.75662,887.4471751613236,2230548.356434816,894336.3984017427,0.38045,100000,0,390064,4074.328629474498,0,0.0,0,0.0,21648,225.503201479052,0,0.0,26193,270.63726667850466,2034303,0,73057,0,0,0,0,0,60,0.626716943292562,0,0.0,0,0.0,0,0.0,0.07055,0.1854382967538441,0.3119773210489014,0.02201,0.3182491582491582,0.6817508417508418,25.45513398659883,4.546802668692284,0.3202710126350485,0.2093023255813953,0.2376854056033693,0.2327412561801868,11.07950191227352,5.597545790917989,23.157611737278994,12887.594602477831,61.50271193796213,13.37807622328958,19.648648665445585,14.599817546841626,13.87616950238534,0.5442226698406886,0.7699037620297463,0.6986849628359062,0.5546995377503852,0.1180173092053501,0.7228915662650602,0.9255014326647564,0.8942528735632184,0.7205387205387206,0.1376518218623481,0.4868134526977982,0.7015113350125944,0.6339421613394216,0.5054945054945055,0.11328125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205473070145,0.0046118448392949,0.0069805903063139,0.0089282086702149,0.0111268192959794,0.0135845213849287,0.0158866116039563,0.0180498412471541,0.0200175843948719,0.0221070847113996,0.0240231311070326,0.0262155362735534,0.0284882704431623,0.0305914343983684,0.0328181743149554,0.0347789238687806,0.0368429772604895,0.0388175233984269,0.0410773710482529,0.0430746147353943,0.0575589893505951,0.0710354497133051,0.0846074791837077,0.0975091736849299,0.1095657858664248,0.1252882316853885,0.1385065947941978,0.1512964618725252,0.1628923024333967,0.17400162999185,0.1877691645133505,0.199913485454742,0.2122200478364861,0.2242150504708056,0.2346495329673352,0.2452146749966768,0.2556140899147283,0.2653779943067385,0.2745474368001454,0.2832701144815099,0.2911031863653205,0.299382355005498,0.3064516129032258,0.3123613825183124,0.3187541015482585,0.3250036984072192,0.3314960728557291,0.3370845161865237,0.3427597558288728,0.3488163060288422,0.349330778779211,0.3499421264399493,0.3510762933163949,0.351108986338679,0.3518943571705368,0.3517081341918827,0.3519975835042368,0.3519916902987535,0.3530693850932743,0.3543619581223288,0.3548818378683739,0.3560080332465053,0.358345611450221,0.3583986348429396,0.3601828118198965,0.361417033773862,0.3626449316955573,0.3648507154868801,0.3656176908356368,0.3663883089770355,0.3681811904433089,0.3719822279321235,0.3743207380260331,0.3728995626486611,0.3722100864279609,0.3746563060370592,0.3786679087098277,0.3810108450992429,0.3802302723953945,0.3889957676029242,0.0,2.228805364165414,58.70752839112909,206.2908015308606,315.98217917702016,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95772,41879,392.5990895042392,7204,73.78983418953347,5548,57.26099486279914,2274,23.336674602180175,77.37208356525132,79.7103900154853,63.35007434272507,65.07913586208636,77.09560414243337,79.43470532115725,63.2479825135019,64.98018152493792,0.2764794228179426,275.6846943280493,0.1020918292231698,98.9543371484416,85.09556,59.94669197479437,88852.2323852483,62593.129489615305,255.26893,158.74634804647116,265874.2012279163,165090.7912004954,278.35045,133.38242471324105,286341.22708098404,136010.83509519763,3171.0176,1433.5127097648951,3275537.443094015,1461354.7417612344,1339.34589,584.1909148436608,1382292.2044021217,593893.5597901621,2230.2083,925.295126785112,2290925.489704716,934226.2765140414,0.38086,100000,0,386798,4038.737835693104,0,0.0,0,0.0,21584,224.66900555485944,0,0.0,25973,266.842083281126,2042505,0,73286,0,0,0,0,0,38,0.3967756755627949,0,0.0,1,0.0104414651463893,0,0.0,0.07204,0.1891508690857533,0.315657967795669,0.02274,0.3135304894006804,0.6864695105993196,25.361755552116072,4.598108102842478,0.3285868781542898,0.2060201874549387,0.2384643114635904,0.2269286229271809,11.341972835924969,5.765529758257076,24.01227561853889,12970.515611901474,62.45215000388893,13.446871903924444,20.55858008743258,14.657531820547344,13.78916619198456,0.5475847152126893,0.7725284339457568,0.7004936917169501,0.5495086923658352,0.1199364575059571,0.6964671953857245,0.8903743315508021,0.8687089715536105,0.654485049833887,0.1529411764705882,0.4979572218216774,0.7152145643693107,0.6442166910688141,0.5185909980430529,0.1115537848605577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0048355703337253,0.0069614986503216,0.0090815818612163,0.0115834435065595,0.0138764456751913,0.0162268497283633,0.0186950221442129,0.0208980542838456,0.0231501381639545,0.0254660230987589,0.0277404324757027,0.029572904353189,0.031486820428336,0.0335656980221502,0.0357187138369978,0.0376784290993406,0.0398751374110717,0.0418333523831295,0.0437281359320339,0.0581175709380837,0.0718895455258616,0.084904077995597,0.0978375084061869,0.1097590526459959,0.1253975129686955,0.1382909950296209,0.1511410280950254,0.162063813893928,0.1734346204945785,0.1875638859897352,0.2008605684508686,0.2125210586381175,0.2238513853353451,0.2345674938401971,0.246347757705982,0.2571208622016936,0.2665504834720036,0.2758773173082374,0.2841518163910394,0.292463416044884,0.3007122223911492,0.3087092768876012,0.3163366751709847,0.3229256449165402,0.3292442605182776,0.3347691074827206,0.3395547073791348,0.3453177798780409,0.3496410283482025,0.350292751867555,0.3511369572987984,0.3522251216587911,0.353644243152122,0.3548108815611381,0.3545212032011774,0.3537252167297969,0.3553963454712764,0.3561303371556881,0.3563718382471403,0.3574472078836227,0.3576353118313654,0.3592155545290387,0.3597088465845465,0.3613100836890722,0.361896533668447,0.363372843899779,0.3649325137823965,0.3675660404011866,0.3696906555537746,0.3720022052742809,0.3754686663095876,0.3760792280345353,0.378554957724827,0.380716934487021,0.3825599427412621,0.3819497920837825,0.3835725677830941,0.3819520174482007,0.391238670694864,0.0,2.562654681534025,60.80161287675072,205.97867071659437,319.0543876135916,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95653,41789,392.5229736652274,7152,73.50527427263128,5570,57.75041033736527,2269,23.3866162064964,77.25911226955019,79.65633775789114,63.27736057920528,65.04613706860802,76.97830544627708,79.37357619314801,63.17255205482692,64.9431987688034,0.2808068232731102,282.76156474312586,0.1048085243783631,102.9382998046202,85.53314,60.15386213890792,89420.23773431047,62887.58547971096,255.83311,158.9339131538436,266953.39403886965,165650.56313324577,272.96344,130.16097880478637,283091.8946609098,134233.16070614554,3204.47856,1441.73365009716,3323268.982676968,1480635.834177588,1337.78877,582.317355839702,1387607.6547520726,597937.3105205958,2235.85002,940.4598340367072,2306412.804616688,954928.7283095235,0.3809,100000,0,388787,4064.556260650476,0,0.0,0,0.0,21690,226.21350088340145,0,0.0,25473,263.9540840329106,2032294,0,73033,0,0,0,0,0,34,0.3554514756463466,0,0.0,2,0.020908910332138,0,0.0,0.07152,0.1877658177999475,0.3172539149888143,0.02269,0.313537930118241,0.686462069881759,25.356724451978906,4.582036209465979,0.3285457809694793,0.2170556552962298,0.2193895870736086,0.2350089766606822,11.029635506404851,5.441443070832518,24.273991263204906,12977.890087541824,62.77616214977599,14.057244997088889,20.6152502079945,13.455943472454946,14.647723472237663,0.5362657091561939,0.7402812241521919,0.6885245901639344,0.5613747954173486,0.1115355233002291,0.6730627306273063,0.8879310344827587,0.8470588235294118,0.7224199288256228,0.132890365448505,0.4922894424673784,0.6806039488966318,0.6405693950177936,0.5132837407013815,0.1051587301587301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588454564792,0.0045630152404709,0.0068611331019223,0.0091245325963258,0.0114451396307034,0.0137290448740146,0.0163957827762709,0.0187020835672795,0.0210077590701383,0.0231129854443466,0.0252214566929133,0.0270561659307937,0.0289951966098556,0.0309979293506814,0.0330240766158577,0.0352172384556527,0.0373973127803503,0.039308698359975,0.0413346924341078,0.0434107234078043,0.0578110794118569,0.0720173444913434,0.0852558515609412,0.0974559315965714,0.1100832171672369,0.1257745061695705,0.1386035543186139,0.1513788841055368,0.164139037433155,0.1750155736472407,0.1877818778187782,0.2007738746843263,0.212477120195241,0.2236627250709597,0.2346290454234596,0.2459120195512108,0.2561361881204741,0.2667005133412309,0.2754909322593123,0.2841281335126375,0.2923893106730746,0.3016804355989486,0.3086906444067112,0.3154892971880302,0.3219807441213437,0.3282440859150747,0.334393063583815,0.3400296288728257,0.3461643426165382,0.3517878197739888,0.3527494963425682,0.3530941021917997,0.3540329550445587,0.3533574049269116,0.3538740032613737,0.353310115268446,0.3531491360777132,0.3546868806975822,0.3565088757396449,0.3574174541012467,0.3580484129226712,0.3581191147840598,0.3596149390179681,0.360413258331279,0.3623999228320633,0.3625914315569488,0.3636753113218325,0.3668340121878058,0.3694202336003387,0.3706307673870491,0.3753899798128097,0.376797647687784,0.3790567951318458,0.3832659598810159,0.3849403811848653,0.3859544533206152,0.3864265927977839,0.3922483766233766,0.398262331838565,0.4094674556213017,0.0,1.8643420369195427,60.28535294507044,210.92444771452864,322.36293363596184,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95617,41911,394.36501877281233,7035,72.44527646757375,5423,56.1197276634908,2254,23.16533670790759,77.28554750318864,79.71888294929737,63.27381344368565,65.07247010185563,77.01244487446087,79.44478130972638,63.17296663634244,64.9736565102993,0.27310262872777,274.1016395709863,0.1008468073432098,98.81359155632197,85.16332,59.92965141441556,89067.13241369212,62676.77443803461,256.15649,160.25038959230977,267280.27442818746,166977.92190960795,279.75467,134.185913142624,289189.23413200583,137609.60049445814,3139.53268,1421.999393164204,3251944.905194683,1455800.499708121,1343.2478,581.5717382861156,1389114.28930002,592580.6259220112,2223.62846,925.6665890226908,2288254.536327222,936685.5115252172,0.38,100000,0,387106,4048.506018804188,0,0.0,0,0.0,21636,225.63979208718115,0,0.0,26060,269.1466998546284,2033437,0,72989,0,0,0,0,0,50,0.5229195645125867,0,0.0,0,0.0,0,0.0,0.07035,0.1851315789473684,0.3203980099502487,0.02254,0.3217320922703359,0.678267907729664,25.19217938925033,4.609775671505625,0.3179052185137377,0.2043149548220542,0.2345565185321777,0.2432233081320302,11.175741587077496,5.52878694917735,24.09330241100684,12905.57197422993,61.32587139210793,13.027372631030303,19.650597294316498,14.160194317447631,14.487707149313492,0.5408445509865388,0.7572202166064982,0.70707656612529,0.5715408805031447,0.1122062168309325,0.7035175879396985,0.9289772727272728,0.8658008658008658,0.7006578947368421,0.1454545454545454,0.4846153846153846,0.6772486772486772,0.6489698890649762,0.53099173553719,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022294284556141,0.0045441174978953,0.0067721236242537,0.0090969151801595,0.0115167053269849,0.0136397437072803,0.0159439361018453,0.018020594965675,0.0201798079185034,0.0221521256004014,0.0240557231078558,0.0265307590345352,0.0284605566534914,0.0307793800830816,0.0326690758905524,0.0346914078257361,0.0367349899483948,0.0385494122045445,0.0407589745724783,0.042879642860868,0.0571595826974138,0.0717728920839184,0.0857151864150309,0.0981247366203118,0.1104890672863631,0.1257214873494805,0.1389057137088633,0.1518633805219171,0.1636474528392736,0.1746048800403984,0.188363887480173,0.2018193449057258,0.214365893263876,0.2257725180802104,0.2365815471465114,0.2471917595346978,0.2579152133082908,0.2675932501437219,0.2764213780717907,0.2855521155830753,0.2932740205277913,0.3001874414245548,0.3077233265335167,0.3146773341021575,0.3213259291733645,0.3267577449478729,0.332100359861071,0.337448664643012,0.3429836291170628,0.3480319542905513,0.3489890338157735,0.3492664784076038,0.3492121759756029,0.3497240849905131,0.3504942829919009,0.3499777221257701,0.3488641779189833,0.350587498558033,0.350666712371028,0.3509200251323938,0.3512557614523563,0.352703345489139,0.3541000168378515,0.3552374756018217,0.3565158676569885,0.356039655622228,0.3575712783194519,0.3579549023302556,0.36091407806003,0.3625084235144884,0.3657858769931663,0.3682755687858813,0.3695446219920419,0.3705112598904443,0.3751993246412156,0.379679773958088,0.38038496791934,0.3806921675774135,0.3807702813438951,0.3780211480362537,0.0,2.307622485431974,61.490926042946846,203.8433292773813,304.1030369794228,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95802,41888,393.54084465877537,7048,72.28450345504268,5566,57.4413895325776,2259,23.162355691947976,77.35864855579545,79.66148032498424,63.35358995694328,65.05365037266913,77.08073779647414,79.3844383838341,63.25235026624279,64.95502006875095,0.2779107593213155,277.041941150145,0.1012396907004813,98.63030391817064,86.22966,60.65324468885025,90008.2044216196,63311.04224217683,256.37151,159.39028081409324,266985.96062712674,165755.05815545947,283.29633,135.9942972356332,290307.1125863761,137888.25080086038,3207.46656,1446.7535074293771,3311804.8892507465,1474015.9847464338,1370.72455,592.0443440063826,1413429.197720298,600665.4568332395,2226.75278,923.498753210949,2285803.6784200747,934019.3867756872,0.38056,100000,0,391953,4091.2820191645264,0,0.0,0,0.0,21671,225.53808897517797,0,0.0,26372,270.1300599152418,2033467,0,73031,0,0,0,0,0,44,0.4384042086804033,0,0.0,0,0.0,0,0.0,0.07048,0.1852007567794828,0.320516458569807,0.02259,0.3136382031566168,0.6863617968433833,25.512283194020718,4.513146902683594,0.3282429033417176,0.2024793388429752,0.2353575278476464,0.2339202299676608,11.03907883457735,5.586943738923145,24.05645219400516,12973.837752227391,62.52204761709402,13.097868606381244,20.612253371436783,14.438817438071135,14.373108201204849,0.5461731943945383,0.7763975155279503,0.6836343732895457,0.5778625954198473,0.1221198156682027,0.6954277286135693,0.9252873563218392,0.8347639484978541,0.7316176470588235,0.1222222222222222,0.4980997624703088,0.7098844672657253,0.6318883174136665,0.5375722543352601,0.1220930232558139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025909357731311,0.0047908922403751,0.0070054847572411,0.009386384161872,0.0116127852396724,0.013854839530034,0.0159617813633215,0.0181163485764997,0.0201765318840283,0.0223408825876143,0.0244899213372664,0.0265657373787104,0.0285919761647917,0.0306756673321122,0.0327566296861467,0.0351255886970172,0.0370013968648145,0.038854678526259,0.0408205660867307,0.0428599685603339,0.057669838090469,0.0721693674856246,0.0851396109340935,0.0975040723030844,0.110250492660154,0.1256723768057742,0.1390800089051915,0.1512243899325575,0.1638248577316065,0.1756948018528049,0.1891696906395029,0.2020858802782616,0.2142204628501827,0.2254020347883163,0.2358711808422791,0.2469464210502981,0.2575510659671838,0.2678239933395587,0.2774253583141362,0.2858419448708842,0.29387868476789,0.3021924639174051,0.3089731291671108,0.3160280626011872,0.3219706182808776,0.3276338514680483,0.3337548674671641,0.3396428162272941,0.3457855523161645,0.3504576009297289,0.351065119851247,0.3513446523732804,0.3519888405123219,0.3524615050965083,0.3535678152710825,0.3537067696835909,0.3529234478601567,0.3534254243706472,0.3559037301151947,0.3556672350354483,0.3564811327860209,0.3584965632325479,0.3588196831958828,0.3595765721220839,0.3621769299581731,0.3627196092334357,0.3617393800229621,0.3628228723741829,0.3663797683561789,0.370449077786688,0.3719766854835008,0.3752415718273567,0.3775120834393284,0.3785830178474851,0.3790849673202614,0.3793103448275862,0.3777262180974478,0.3802845947618065,0.3781488819699972,0.3765974440894569,0.0,2.6129737011758443,59.25899302049545,210.7305401526381,319.9995547168205,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95871,41752,392.3814292121705,7017,71.91955857349981,5483,56.71162290995192,2176,22.342522764965423,77.41454581429173,79.70348895390578,63.37712166936033,65.06824828367068,77.15243211043116,79.44174396347249,63.279915403737,64.9740132299276,0.2621137038605639,261.7449904332858,0.0972062656233276,94.23505374307696,85.38662,60.03701240769028,89064.07568503509,62622.70384964199,255.59345,159.35634324727488,266148.282588061,165766.40824365537,278.3183,133.14239947551044,287903.4535991072,136998.92872455047,3146.75244,1418.6125889270963,3256136.475055022,1453568.5962669596,1328.61376,580.7486319940563,1372402.4991916222,592328.0992104555,2142.53924,894.1402390429527,2201849.3183548725,903604.8051144724,0.37934,100000,0,388121,4048.367076592505,0,0.0,0,0.0,21596,224.78121642623944,0,0.0,25846,267.1089276214914,2039869,0,73286,0,0,0,0,0,59,0.615410290911746,0,0.0,1,0.0104306828968092,0,0.0,0.07017,0.1849791743554595,0.3101040330625623,0.02176,0.3189643486512132,0.6810356513487867,25.216231751390907,4.592112936728978,0.3355827101951486,0.2022615356556629,0.2352726609520335,0.2268830931971548,11.050393309235815,5.539048649804717,23.14828734279206,12854.923714036571,61.57502285824814,12.92109148041917,20.70330162490665,14.266448884049138,13.684180868873176,0.5557176728068576,0.7835888187556357,0.6804347826086956,0.6007751937984496,0.1213826366559485,0.7111613876319759,0.9114285714285716,0.8696629213483146,0.7148014440433214,0.1535433070866141,0.5061342314168872,0.7246376811594203,0.6200716845878136,0.5695952615992103,0.1131313131313131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890266740901,0.0046603515526062,0.0069359238265207,0.0090958926359815,0.0112613070433987,0.0133192238423264,0.0153524857375713,0.0174221714472234,0.0196126501593527,0.0219603751777184,0.024009997336775,0.0260955194485475,0.0281847886397731,0.030211013896037,0.0323019661618088,0.0343014728666157,0.0363568642463244,0.0383144541978008,0.0401760687664804,0.0421191694753047,0.056463301460851,0.0705223334657107,0.0840387194099899,0.0970976752000336,0.1091675003949239,0.1241616054924742,0.1369757069150007,0.1495083709806005,0.1604323147832024,0.1714934452917488,0.1849273803119957,0.1975175157858316,0.2088956988546217,0.2210772475440111,0.2317499395511397,0.2426378636801275,0.2544495494691765,0.2646615865308966,0.2734985538478988,0.2825145997938852,0.2911032193135678,0.2988726201057211,0.305918678796626,0.3126730181556714,0.3192440906605092,0.3256479175400094,0.3327949719551282,0.3388234096173917,0.3443513667721354,0.3490897561233387,0.3505692152239811,0.3503888774175786,0.3514183847465509,0.3515416082450384,0.3524759540339245,0.3527690540022979,0.3523603044737383,0.3522768311500706,0.3543144258540837,0.3559579022475919,0.3564999345047624,0.3569607746270131,0.3580999036971904,0.3593624430752746,0.359419314521944,0.359501979579079,0.3611229627101288,0.3640577531397789,0.3661359332257838,0.3680508642956487,0.3717256094792754,0.3773764761955198,0.3786941580756013,0.3799442477209372,0.3824545030331311,0.3887905604719764,0.3905605620895066,0.39244126659857,0.3920220082530949,0.4012181195279787,0.0,1.9125101720170985,58.61828692153541,211.0355432478441,312.24007236722247,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95718,41905,393.8862074009068,7195,74.1762259972001,5602,58.024613970204136,2276,23.47520842474769,77.36002699221102,79.73173710640032,63.33690834044432,65.08841856184955,77.08439722332776,79.452740259426,63.23737780450552,64.98965444966105,0.2756297688832632,278.9968469743229,0.0995305359388041,98.76411218850478,85.73598,60.30115215882839,89571.42857142857,62998.759020067686,257.67633,160.28949391759838,268716.8453164504,166973.35288827427,281.05897,134.65337020373192,290397.55322927766,138198.158433814,3208.351,1446.261523490203,3324664.618984935,1483874.1275545482,1339.13518,580.8957271238157,1384696.1177625945,592603.2939710994,2235.42902,918.3464701619578,2307086.7130529266,935365.160918388,0.38094,100000,0,389709,4071.428571428571,0,0.0,0,0.0,21766,226.87477799368975,0,0.0,26155,270.0223573413569,2037059,0,73075,0,0,0,0,0,64,0.6581834137779727,0,0.0,0,0.0,0,0.0,0.07195,0.1888748884338741,0.3163307852675469,0.02276,0.3226959745762712,0.6773040254237288,25.03436161355405,4.540325986766943,0.326669046769011,0.2070689039628704,0.2379507318814709,0.2283113173866476,11.09217792537929,5.664500372023775,24.077315174322017,12952.735767582397,63.20920900241091,13.76862893547618,20.52175452624253,14.904677420162828,14.014148120529375,0.5548018564798286,0.7836206896551724,0.6879781420765028,0.6009002250562641,0.1086786551993745,0.7195207892882312,0.915,0.8620689655172413,0.7477203647416414,0.1333333333333333,0.4989242170690892,0.7144736842105263,0.6336917562724015,0.5527888446215139,0.1025390625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002309305081484,0.0045920384393151,0.0069817237145205,0.0092443974887746,0.0113409821392245,0.013512687874221,0.0157084607543323,0.0179836289779338,0.0201277791975466,0.0221953766457134,0.024359736717997,0.0264981571409504,0.0286910111781824,0.0310337013843111,0.0329962855963681,0.0351936477740328,0.0370665810274632,0.0391816992921346,0.0411882176734897,0.0429812862084774,0.0574671832412619,0.0712715855572998,0.0838779385076944,0.0974096315850362,0.1097569975225344,0.1259857502272775,0.1392554094187526,0.1523522713971034,0.16377791304905,0.174351878666967,0.187781440544675,0.2010106256356987,0.2126142576108339,0.2242517653746092,0.2346776056043726,0.2456142293890931,0.2566659972778187,0.2668113530046779,0.2769942406240079,0.2858925770292086,0.294115606134203,0.3022758354665638,0.3097502128867442,0.3168500580706186,0.3228701185156402,0.3288413687763297,0.3344471978173262,0.3396998982706002,0.3451061626100466,0.3507623259190812,0.3515658689090125,0.3525026183782592,0.3521180457497882,0.3523053293534645,0.3525792852780384,0.3529032654063344,0.3523706896551724,0.352762449086848,0.3537956166914746,0.3544738111831877,0.355797373358349,0.3566976035461975,0.3561721285729243,0.356532820604543,0.3576948075395392,0.3596154348564412,0.3621099001687691,0.3645342027792725,0.3655716255878921,0.3680215278335609,0.3705087403717541,0.369247311827957,0.3721728081321473,0.3765844664669278,0.3775384906016813,0.3809807898818756,0.3780619319057156,0.3792537925379254,0.3795701925760535,0.3817686014803272,0.0,1.945669515991101,63.065759872843095,210.13602673431836,316.867763929096,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95747,41798,393.464024982506,7169,73.62110562210826,5581,57.66238106676972,2205,22.62211870868017,77.33346816806463,79.69526703449722,63.32120940122799,65.06998936162795,77.0771820231746,79.440964792302,63.22774892537184,64.97995751743787,0.2562861448900264,254.30224219522304,0.0934604758561477,90.03184419007937,85.44338,60.15755744578839,89238.701995885,62829.70479052962,257.85369,159.92283254986626,268661.38886858075,166380.52633488912,283.74368,135.73576380151704,292219.6309022737,138612.25114756962,3191.19264,1427.8285733784537,3298502.7624886422,1456938.6062236028,1386.41037,601.0113066364077,1432993.9005921856,612768.4482214132,2180.7209,891.5815974523848,2239840.976740786,898723.7371580902,0.3791,100000,0,388379,4056.304636176591,0,0.0,0,0.0,21843,227.4640458708889,0,0.0,26381,271.4340919297733,2037780,0,73118,0,0,0,0,0,48,0.5013211902200592,0,0.0,0,0.0,0,0.0,0.07169,0.1891057768398839,0.3075742781420003,0.02205,0.3162586482171368,0.6837413517828632,25.47485061695211,4.539866098804176,0.3241354595950546,0.2150152302454757,0.2254076330406737,0.2354416771187959,11.166534182677571,5.59374704051509,23.18509986884438,12909.861603102998,62.61385560285292,14.138364703254885,20.151702209917637,13.989786978528674,14.334001711151744,0.5540225765991758,0.7733333333333333,0.6965174129353234,0.5850556438791733,0.1278538812785388,0.7149220489977728,0.9093264248704664,0.8658823529411764,0.7360594795539034,0.1722846441947565,0.5028341993386868,0.7088452088452089,0.6445086705202312,0.5439838220424671,0.1165234001910219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022898829727949,0.0046140429156694,0.0067900858656598,0.0088601678554735,0.0112690954211671,0.0132778054964412,0.0151898217999429,0.0172888897960849,0.0194902089039695,0.021864411984482,0.0240406794951969,0.0260048252143113,0.0281974023837191,0.0302983491416154,0.0322617254400264,0.0344909560723514,0.0364376242544731,0.0382791503668115,0.0402665724028944,0.0422034975159096,0.0578625412334544,0.0721723932223257,0.085933729251044,0.0982289344158849,0.1104783599088838,0.1252075160461452,0.1380978652972881,0.1503831417624521,0.1624089540124313,0.1731740533816606,0.1868476328970754,0.20014064697609,0.2133574046482289,0.224968556898343,0.235712085881473,0.2471406269030193,0.257004442658451,0.2672068422237227,0.2757110107360919,0.2840818009022832,0.2915924598126518,0.2989603919871832,0.3064092554475122,0.3140865148484013,0.3207499089916272,0.3266353300191957,0.332541627081354,0.3376464905813864,0.3430431181738185,0.3487798117914131,0.3487378536098869,0.3500343926262209,0.3509192082834401,0.3514064646756815,0.3515201999167013,0.3505263804057579,0.3506194774497517,0.3521458062605892,0.3534940254048687,0.3544935678373977,0.3557766306898169,0.3565458506634977,0.3576313139788555,0.3595852833822245,0.3617293178694572,0.36267448864678,0.36488645441059,0.3661922943422422,0.3693083624307833,0.3707253061873707,0.3743039707895937,0.3770587921752572,0.3802888269571827,0.3845680909929296,0.387381404174573,0.3900734851222744,0.3868026580126719,0.3896345240553376,0.3909604519774011,0.3980314960629921,0.0,2.386626452217127,59.15491955625651,212.43005807485997,320.46469395861175,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95804,41865,393.6056949605445,7045,72.36649826729573,5469,56.56340027556261,2174,22.35814788526575,77.34149214859087,79.68029355014777,63.33904717832892,65.07231504796883,77.07993339875686,79.41791287556347,63.24344844986269,64.97847872379582,0.261558749834009,262.3806745842927,0.0955987284662285,93.83632417301158,86.0178,60.50457964125182,89785.18642227881,63154.54432095928,255.35545,159.50803115267863,266002.6094943844,165966.53704246366,280.25019,134.8552032959808,289013.8198822596,138016.95270316242,3149.3438,1419.5295954632634,3258405.9955742974,1453342.004089499,1336.15159,582.1460886839961,1380587.4180618764,593602.3731224437,2149.609,890.2076645470914,2212302.9518600474,902381.1155434432,0.37996,100000,0,390990,4081.14483737631,0,0.0,0,0.0,21648,225.39768694417768,0,0.0,26034,268.3499645108764,2036530,0,73063,0,0,0,0,0,48,0.4905849442611999,0,0.0,0,0.0,0,0.0,0.07045,0.1854142541320139,0.3085876508161816,0.02174,0.3134909970438054,0.6865090029561945,25.20623145464756,4.57070512429668,0.3318705430608886,0.2029621503017005,0.2289266776375937,0.2362406289998171,11.177163771289512,5.646861189587035,23.101176322664735,12856.886341993886,61.51904788922758,12.930867793919768,20.4817594311618,13.922042728164078,14.184377935981948,0.5474492594624246,0.7360360360360361,0.7090909090909091,0.5838658146964856,0.1230650154798761,0.7195385724585436,0.904632152588556,0.8673684210526316,0.7429577464788732,0.1647509578544061,0.4889759921607055,0.6527590847913862,0.6529850746268657,0.5371900826446281,0.1125121241513094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044199791166124,0.0065553807905018,0.0087895785066861,0.0108256600702039,0.0131505230668934,0.0154822127937336,0.0177373403179854,0.0198378207029132,0.0219129829304006,0.0240646371848373,0.0259188137316314,0.0278746361382828,0.0296484016853643,0.0318117093505582,0.0340169102598557,0.036075588920528,0.0381539227585348,0.0403690888119953,0.0424838642515094,0.0571234806197506,0.0710349947199481,0.0844711775246518,0.0969399550240642,0.1094273610554935,0.1254756066627209,0.1384065805931862,0.1514175120695889,0.1630751496910121,0.1745211734065015,0.1880415478176632,0.200471366638918,0.2119701019055689,0.2234072778931264,0.2337309658622395,0.2442655980162068,0.2537785902180213,0.2636270756379885,0.2725460886895864,0.2810220647078998,0.2898495502672994,0.2975027144408252,0.3050621092318784,0.3119726148727094,0.3185358633407745,0.3246479913351713,0.331737799162657,0.3374865053661015,0.3432098765432099,0.3488653874013881,0.349206776376872,0.3497998982300276,0.3508032694475761,0.3511790304625038,0.3516628986197049,0.3511869186091061,0.3509656550280658,0.3518268597761685,0.3524473607565659,0.35346171070309,0.3546530220658778,0.3560294672464804,0.357455586427549,0.357873670481887,0.3601335979476257,0.3607408962115647,0.3612743403617928,0.3654348518636508,0.3671228007819442,0.3696463693653916,0.3703378065710319,0.3744547951106564,0.3777422449632235,0.3786113699906803,0.3818634015687775,0.3816454173682944,0.3802221874511031,0.3846153846153846,0.3877435752612256,0.3828549262994569,0.0,1.9569711940519163,61.40928726680767,197.06813547135047,318.4594466768639,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95703,42056,396.3721095472451,7121,73.17429965622811,5594,57.866524560358606,2332,23.93864351169765,77.3419109081298,79.71047731203512,63.33255108723839,65.08068253290276,77.052639469895,79.4233138368425,63.2261823595582,64.97868094763517,0.289271438234806,287.163475192628,0.1063687276801843,102.00158526758683,85.85566,60.31849796458483,89710.52109129285,63026.75774488242,255.07937,158.70199101163837,265933.6697909156,165229.01164189036,276.56387,132.0608137522423,285945.38311233715,135578.40586357538,3238.81296,1449.0339697732738,3348568.383436256,1478429.5265281915,1356.66005,583.1636957895959,1403852.846828208,595627.0292358609,2303.67116,955.0023054280124,2366253.8060457874,960551.2036320854,0.38161,100000,0,390253,4077.7509586951296,0,0.0,0,0.0,21554,224.60110968308203,0,0.0,25727,265.7596940534779,2037808,0,73136,0,0,0,0,0,44,0.4597557025380604,0,0.0,0,0.0,0,0.0,0.07121,0.1866041246298577,0.3274820952113467,0.02332,0.3134947171325398,0.6865052828674603,25.361699137956183,4.52178205679611,0.3337504469074008,0.194315337861995,0.2304254558455488,0.2415087593850554,10.929485980457,5.49524653159146,24.772397139120017,12974.325605359809,62.83557268863221,12.684314997517172,21.062694600597936,14.349757915308604,14.7388051752085,0.539327851269217,0.7773689052437902,0.6845206213176218,0.5748642358417377,0.1132494448556624,0.6937869822485208,0.9592476489028212,0.8602150537634409,0.6836363636363636,0.1501706484641638,0.4900990099009901,0.7018229166666666,0.6262482168330956,0.5453648915187377,0.1030245746691871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0047633525894395,0.0066849259484682,0.0089481595839765,0.0110119168666368,0.0132157693247536,0.0151992415670203,0.0173920143708663,0.0193072292235202,0.0216056332262092,0.0235676429281694,0.0257013184375898,0.0276215254568452,0.0298365992870536,0.0318552839320172,0.0339790770757525,0.0361647921456533,0.0382112724291451,0.0403032099073525,0.0421035079308835,0.056912182486631,0.0707743198400485,0.0847699491107497,0.0978898870258557,0.1101323909488897,0.125175912895341,0.1384812893231902,0.1504849717321635,0.162382203987435,0.1734204512536612,0.1877659173407727,0.2010628395783276,0.2133323180349625,0.2245054187946326,0.2351944737768391,0.2462606423613033,0.2570459843187116,0.2669597283745193,0.2764731241349579,0.2850437868467746,0.2927698574338085,0.3005243813938245,0.308125836204549,0.3163775430688262,0.3227857333884418,0.3296718215815262,0.335791136859529,0.3414938604982931,0.3465567309686787,0.3518203290975548,0.3524115062141105,0.3535005986870174,0.3540833568009011,0.3544192229334335,0.3552477072402158,0.3550917838864883,0.3549828124257449,0.3560918670984924,0.3571771154504967,0.3582445141065831,0.3594899091541745,0.3599944414666587,0.3620024049110816,0.3634008425510824,0.3641582096059292,0.366172418317806,0.3682925428013329,0.3705805878809018,0.3737535043826963,0.3781546375180839,0.3793230316409124,0.3829752953813104,0.3846986877309211,0.3888116210786586,0.3891173376685474,0.3858695652173913,0.3910806174957118,0.3904682274247492,0.4000571102227299,0.3964774951076321,0.0,2.238855509267366,59.776763399608406,208.38393697402367,327.27097283869216,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95707,41892,393.95237547932754,7085,72.81599047091645,5519,57.08046433385229,2266,23.30028106617071,77.33810060160408,79.72263816626611,63.31256206328344,65.07586313830308,77.06431876972358,79.44784616567341,63.21197268587124,64.97771057589439,0.2737818318804983,274.79200059269715,0.1005893774121986,98.15256240868564,85.54722,60.17537357128349,89384.49643181796,62874.57925886664,255.86781,159.67665749035203,266742.88192086265,166237.6035827892,278.83951,133.4564052849018,288028.9529501499,136899.27151156554,3176.2096,1429.1491103918745,3287034.3444053205,1461643.083151332,1320.75176,571.4001984008887,1367131.3070099363,584190.9905272903,2228.20408,927.2246311416948,2293242.5214456622,938132.7452845958,0.38137,100000,0,388851,4062.931655991725,0,0.0,0,0.0,21668,225.76196098508996,0,0.0,25972,268.06816638281424,2035597,0,73070,0,0,0,0,0,53,0.5433249396595861,0,0.0,1,0.0104485565319151,0,0.0,0.07085,0.1857775913155203,0.3198306280875088,0.02266,0.3147826086956521,0.6852173913043478,25.402078168336597,4.525398508674537,0.3286827323790541,0.2022105453886573,0.2342815727486863,0.2348251494836021,11.051249992857256,5.6230535460721445,24.040659935456105,12976.550440227042,62.017229355655225,13.133036265984527,20.376568467809804,14.251864330707216,14.255760291153669,0.5473817720601558,0.7580645161290323,0.7078280044101434,0.5823665893271461,0.1064814814814814,0.7190929041697147,0.8954423592493298,0.8819742489270386,0.7491039426523297,0.1164658634538152,0.4908477842003854,0.6890982503364738,0.6476261127596439,0.5364891518737672,0.1041069723018147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0044329478596064,0.006599386764676,0.008862329003801,0.0110092489901405,0.0135161287036942,0.0158293046121208,0.0181600906983157,0.0204736971283645,0.0227207568807339,0.0247646588322155,0.0269545930626578,0.0289644961288133,0.0309867567400572,0.0330424197408599,0.0350532722932404,0.0370872720872203,0.0390090052703656,0.0409410835144042,0.0427318374065045,0.0578154209267594,0.0716147605338916,0.0846712417889147,0.0975650801998422,0.1098631061612774,0.1256466406423561,0.1385834960522964,0.1517433068518242,0.1630365082079343,0.1746738477383915,0.188025255354911,0.2011713886693587,0.2136753997365929,0.2254880504245819,0.2365333392035573,0.2475753444396413,0.2576617226590422,0.2675514132306757,0.2766641302002294,0.2851835714449515,0.2936243165600963,0.3013482014219952,0.3091471435173664,0.315446062321587,0.3219001531989398,0.3285920657850872,0.3349717868338558,0.3405297185631033,0.3458082085197432,0.3506683926873085,0.3512555908821469,0.3518554230144081,0.3526666102603153,0.3535375448339697,0.3543516741785295,0.3545342949209759,0.3544705136334813,0.355982905982906,0.357377666678081,0.3585381560588172,0.3589049846870714,0.3607038123167155,0.3617857969003007,0.3607814045499505,0.3620427381383557,0.3632263614797049,0.3639189960068454,0.3653039997478488,0.3667592560036567,0.369012630073874,0.3708717575977831,0.3724349481700867,0.3719344344344344,0.3716680510458355,0.3723642470610188,0.3718190386427898,0.3703368071288325,0.3636363636363636,0.3653585926928281,0.3678204640547737,0.0,2.2248121890394343,60.4232639608669,201.53569787189596,322.40427192125264,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95655,41777,393.0270242015577,7159,73.57691704563274,5544,57.42512153050024,2238,23.009774711201715,77.27782633283482,79.6870728519356,63.2892740309558,65.0715742331714,77.00728482488715,79.4166699488408,63.190523968321,64.97557389594174,0.2705415079476694,270.4029030947908,0.0987500626347923,96.00033722966828,84.95146,59.80985523124315,88810.26606032094,62526.6376365513,256.51592,159.29237718224945,267642.5696513512,166002.7778811871,276.727,131.98326923922903,286198.881396686,135633.78993883773,3190.14388,1429.771658803466,3305600.5854372485,1465265.818622618,1311.301,566.7887644585215,1357621.797083268,579291.0924243599,2210.84058,909.957945429852,2275194.1038105693,921155.1536270864,0.3802,100000,0,386143,4036.830275469134,0,0.0,0,0.0,21703,226.3237677068632,0,0.0,25796,266.50985311797604,2039326,0,73162,0,0,0,0,0,46,0.4808948826511944,0,0.0,0,0.0,0,0.0,0.07159,0.1882956338769069,0.3126134935046794,0.02238,0.3154817275747508,0.6845182724252492,25.4936930704854,4.558239176271124,0.3297258297258297,0.2052669552669552,0.2337662337662337,0.2312409812409812,11.226872915342858,5.72174429757207,23.646844727863296,12908.00428349284,62.13475121140439,13.248502682270953,20.45644515592242,14.322555168791329,14.107248204419708,0.5501443001443002,0.7565905096660809,0.7106126914660832,0.5802469135802469,0.1076443057722308,0.7074468085106383,0.9213483146067416,0.87409200968523,0.7259786476868327,0.1428571428571428,0.5011825922421949,0.6815856777493606,0.6628975265017668,0.5399014778325123,0.0984251968503937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0047967710530585,0.0070148011288652,0.0092075977926156,0.0112925377689607,0.0132741108994407,0.0155532891381947,0.0176391882092189,0.019649761666087,0.0217576136282152,0.0239384615384615,0.0258127471624467,0.0280910437932169,0.0301262561195568,0.0322327531024799,0.0345765586860287,0.0366524699225914,0.0388038004257307,0.0407821345321345,0.0428018809888746,0.0572345183606077,0.0711009174311926,0.0844223320842648,0.0973543525846102,0.1097052647130209,0.1252765398905484,0.1379189499171658,0.1505162108313711,0.1622066782177159,0.1733533737720758,0.1875303067854872,0.2006755952058724,0.2121858571786192,0.2233444215870792,0.2341622359455324,0.2449807206488498,0.2552110663287521,0.2647906024259063,0.2742819532234087,0.282657967032967,0.2904456830954969,0.29817999041485,0.3068742384630854,0.313687415345152,0.3206081820170641,0.3272588187392812,0.3323853670759208,0.3387635011208477,0.3453201011870013,0.3505542856387828,0.3513356640524817,0.3519502934069727,0.3523664078960392,0.3528524609182401,0.3543002893708422,0.3527530482648339,0.3527718584014503,0.354280810614562,0.3553384052619828,0.3562929595664112,0.357903851221624,0.3594243803541969,0.3604212743549236,0.3603611697587709,0.3607385388723749,0.3625484445375511,0.3645074301451603,0.3666941676715111,0.3687955879736702,0.3713331455474629,0.3731033528570769,0.3746311101572141,0.3732112192329708,0.3724671307037896,0.3750834048231817,0.3818555206571635,0.3777881765715177,0.3761200250052094,0.3793884484711212,0.3797814207650273,0.0,2.0356477644875066,58.16911813100701,204.55258176894867,330.7984948870878,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95806,42070,394.7351940379517,7083,72.68855812788344,5547,57.19892282320523,2239,22.952633446756987,77.39792083527668,79.7022664031433,63.37134666233783,65.07167039860785,77.13194843064862,79.43685051984717,63.27468582030608,64.97832998971151,0.2659724046280587,265.41588329612864,0.0966608420317527,93.34040889633854,86.4138,60.75563989888711,90196.64739160388,63415.27659946883,259.05385,161.3723111660143,269676.9930902031,167721.5486517513,279.9035,134.26506598285812,286772.16458259395,136110.57827683815,3195.91012,1435.058480157055,3296717.4498465653,1459264.3065144063,1348.80638,585.2354642001696,1388081.2057699936,591411.3625501988,2208.65208,905.1789514505284,2266358.7249232824,911457.4698176316,0.38238,100000,0,392790,4099.847608709267,0,0.0,0,0.0,21944,228.2946788301359,0,0.0,26076,266.924827255078,2035139,0,72947,0,0,0,0,0,45,0.4592614241279252,0,0.0,0,0.0,0,0.0,0.07083,0.1852345833987133,0.3161089933643936,0.02239,0.3142435622317596,0.6857564377682404,25.458564667776237,4.518910628743624,0.3295475031548585,0.2046151072651884,0.2312961961420587,0.2345411934378943,11.235128198855342,5.643334033869543,23.675515054790782,12968.392719657755,62.21462469776532,13.231896270275874,20.477818171662378,14.230304602966294,14.274605652860764,0.5520100955471426,0.7814977973568282,0.6925601750547046,0.5728760717069369,0.1337432744043044,0.7211678832116788,0.9090909090909092,0.8713968957871396,0.717687074829932,0.1752988047808765,0.4965286090495571,0.7187910643889619,0.6339869281045751,0.5298281092012134,0.1238095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023082530169271,0.0041139336704191,0.0063289213448957,0.0086207771899718,0.0110096779440468,0.0130467525594838,0.0153654908194249,0.0174955368528436,0.0197498825019923,0.0217411321758525,0.0239127093898878,0.0263047202815138,0.0282435375827066,0.0304305767093401,0.0326746858797942,0.0349406298399587,0.0370063832648796,0.0393557147151193,0.041610849766867,0.0435357298973793,0.057655796874674,0.0710819178311438,0.0846842690266971,0.0972853057448061,0.1094268818451094,0.1244965059362082,0.1375368496956586,0.1497253916893733,0.1623117188334579,0.1734844909691535,0.1870638407857327,0.200741966535795,0.2131101206652897,0.2244744006034963,0.2351447044334975,0.2470084240123094,0.2576595460018731,0.2667633404152474,0.276352630445379,0.2851014174417407,0.2943801003305823,0.3013282555110337,0.3092284954182678,0.3163840455704079,0.3232837521669031,0.3289907489420333,0.3352526791736404,0.3403474462194905,0.3461846870150026,0.3512146948449536,0.3519955951869359,0.3524727462448856,0.3539231818629312,0.3552058390791334,0.3552125844030571,0.3553331295843521,0.3546088083310946,0.3557056884705574,0.356423130785258,0.3570726652253926,0.359074299634592,0.3599193325161137,0.3613459481004426,0.3626469796248092,0.3641130981150314,0.3643956849602011,0.3648695252327854,0.3676423899930154,0.3706610109579357,0.3715244487056567,0.3734518163819697,0.3741529525653436,0.3756546174479499,0.3767567567567567,0.3753105293330785,0.3782451923076923,0.3784581908610506,0.3779737489745693,0.3790434061376831,0.3839320200849749,0.0,2.702000532049918,60.02416874087681,202.13918249694,323.87318492349686,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95548,41694,391.980993846025,7000,71.9847615857998,5435,56.26491396994181,2270,23.328588772135472,77.19945181010942,79.66927660394063,63.224607941291474,65.053140094694,76.91718918973017,79.38748458558521,63.11994754963568,64.95173429558463,0.2822626203792566,281.7920183554179,0.1046603916557913,101.4057991093722,84.77744,59.6222871726064,88727.59241428392,62400.35078976682,251.15079,156.25867180436111,262228.4715535647,162914.9137651872,273.09368,131.0834005619032,281706.5454012643,134077.40006872642,3125.42644,1421.1821673044783,3235691.7988864235,1452039.317729808,1337.00468,585.1236582321723,1381781.2199104114,594866.7666849883,2231.9907,934.2510562775363,2295472.0768618914,942971.9793776711,0.3793,100000,0,385352,4033.072382467451,0,0.0,0,0.0,21295,222.2338510486876,0,0.0,25512,262.9254406162348,2036256,0,73119,0,0,0,0,0,34,0.3558420898396617,0,0.0,1,0.0104659438188135,0,0.0,0.07,0.1845504877405747,0.3242857142857143,0.0227,0.3255307566684812,0.6744692433315188,25.17271486356325,4.545650393327756,0.3321067157313707,0.2075436982520699,0.2294388224471021,0.2309107635694572,11.185652552731618,5.640700483836227,24.19676876064721,12945.2785857599,61.56684546331668,13.298243394079892,20.47805197709293,13.869951369383982,13.920598722759868,0.5449862005519779,0.7668439716312057,0.6803324099722992,0.5717722534081796,0.1243027888446215,0.7032727272727273,0.937007874015748,0.8465011286681715,0.6942446043165468,0.1538461538461538,0.4913793103448275,0.6800535475234271,0.6262848751835536,0.5366357069143447,0.1160896130346232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024530922139664,0.0048091556583673,0.0072406369323259,0.0096185130958191,0.0118703424685425,0.0143020245061061,0.0165025258968209,0.0186697186768718,0.0207022175830698,0.0229047531205804,0.0251190769483452,0.0273927528482704,0.0296083459490633,0.031554950382703,0.0334821428571428,0.0356913649255739,0.0376462291545673,0.0395971689583138,0.0415512176829649,0.0435962751075291,0.0582660362358257,0.0721364079655205,0.0858659658344283,0.0981822013804731,0.110373549246348,0.1256017134253663,0.1384919832749944,0.1513954853514061,0.1628808982985471,0.1735286525554981,0.1878355170067292,0.2004493503956237,0.2124495362793235,0.2233523144948048,0.2346175074511535,0.2455863563135381,0.2559800311174291,0.2659833845042442,0.2754994024244493,0.2846425165730304,0.2928679993966747,0.3005654887606175,0.307475936717424,0.3141531768636358,0.3213658964609535,0.3279246076406495,0.3337732860698393,0.3394211857263276,0.3440628168794363,0.3496873178228841,0.3500878972278566,0.3503922868666777,0.3511961993099938,0.3517352446172596,0.351726300698883,0.3517236072637734,0.3517181037225581,0.35256928740034,0.353847476571232,0.3547076170610659,0.356409094342473,0.356685994381015,0.3594735282915062,0.3596895026626951,0.3613000388651379,0.3620930539080005,0.3640452029520295,0.3656600298497983,0.3669128613024643,0.3689176762224621,0.3710657347768489,0.3727911432829465,0.3751182890669358,0.3764075067024128,0.3750943396226415,0.3748208313425705,0.3739663093415007,0.3777420004024954,0.3814348302300109,0.3883346124328473,0.0,2.447577702973761,60.51819965586648,206.1816978855048,307.9241759123415,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95670,42292,397.0837253057385,7170,73.62809658200062,5624,58.08508414340964,2290,23.47653391867879,77.33990302576841,79.7306578424551,63.32261558699434,65.08909206502943,77.06231436265102,79.45545363173808,63.2221829747945,64.99219524920086,0.2775886631173847,275.2042107170212,0.1004326121998389,96.8968158285719,85.15298,59.946368141627566,89006.98233511028,62659.52560011243,260.28532,162.19691056765322,271357.7715062193,168831.00972261088,287.29669,138.0577267148624,295991.27208111214,140862.1216393726,3245.63096,1460.846183947208,3355063.781749765,1489539.2837174318,1363.44896,588.322522909757,1407291.0212187727,597123.5933239133,2249.56952,920.5122517848848,2309305.194940943,927802.412228698,0.38309,100000,0,387059,4045.771924323194,0,0.0,0,0.0,22006,229.27772551479043,0,0.0,26753,275.321417372217,2035664,0,73097,0,0,0,0,0,43,0.4494616912302707,0,0.0,0,0.0,0,0.0,0.0717,0.1871622856247879,0.3193863319386332,0.0229,0.3220002645852626,0.6779997354147373,25.24191067460663,4.596065232622673,0.340149359886202,0.1980796586059744,0.2293741109530583,0.2323968705547653,11.364527697617444,5.835890099766893,24.279992154845363,13008.015961069788,63.41246220117957,12.999592306208667,21.67589956456076,14.415875662630786,14.321094667779343,0.5517425320056899,0.7504488330341114,0.7114479874542603,0.5868217054263566,0.1140015302218821,0.715018315018315,0.9,0.8592436974789915,0.752542372881356,0.1229508196721311,0.4994130077482977,0.6819371727748691,0.662491301322199,0.5376884422110553,0.1119473189087488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397143725311,0.0046931224975926,0.0070014510253574,0.0091719822857839,0.0114192164160133,0.0136810602821718,0.0159416153626615,0.0182187474483546,0.0204755479228001,0.0223955454564064,0.0243067302270746,0.0268533535896856,0.0290288746298124,0.0313752150221975,0.0335431933120033,0.0354949440641866,0.0375243462765737,0.0397330371692805,0.0419427656011068,0.0441041571112871,0.0586342696570527,0.0723947318829958,0.086415996978535,0.0991584262571007,0.1107958141693742,0.1270086428503422,0.1406172092973913,0.1524969134488484,0.1645610175464827,0.1761420285815367,0.1894618954804389,0.2015882117471411,0.2142616373264323,0.2263921988761834,0.2374931220424782,0.2487956677261099,0.259510051092122,0.2693834853716972,0.2778704050268241,0.2865077183821172,0.2944530545210613,0.3029544843390115,0.3100147885241053,0.3164155147217364,0.3224075557821643,0.3286759813705922,0.3345597897503285,0.3397887771981168,0.3451967442583856,0.350554139201881,0.3509424803818461,0.3520950163274867,0.3518194393473167,0.352775846082522,0.3540375446960667,0.3534284399447768,0.3521948743973611,0.3527001678349294,0.353625170998632,0.3551477027002877,0.3563613159919674,0.3577329186394342,0.359459005376344,0.3599020246736028,0.3597522620602894,0.3605319065229365,0.3619621342512908,0.364206723913939,0.3674003821926534,0.3676212507977026,0.370468692786525,0.3732484757728099,0.3743190168503738,0.3772817916858413,0.3787507076806944,0.381378159275155,0.3892773892773892,0.3878562577447336,0.3852227862380146,0.3841961852861035,0.0,2.68919265986268,59.68329587932918,216.5447765994684,322.2775173374161,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95787,41567,390.40788415964585,7100,72.88045350621691,5528,57.14762963658952,2230,22.89454727677033,77.331780499572,79.67256877352756,63.32970022966426,65.06265136365676,77.06009430028394,79.40056987363033,63.22922418811687,64.96433503714974,0.2716861992880695,271.9988998972269,0.1004760415473882,98.3163265070175,85.9738,60.42999386161275,89755.18598557216,63087.886520731154,254.11335,158.0398995445158,264690.5947571174,164391.54535011615,274.05057,131.32365391406634,282502.114065583,134256.42679112745,3186.07228,1439.130946433987,3294984.5803710315,1471207.519218669,1382.22391,602.8935153725715,1426747.314353722,613222.0655145035,2207.2127,924.1941967402686,2267587.6475930973,934379.5980950588,0.37856,100000,0,390790,4079.7811811623706,0,0.0,0,0.0,21519,224.03875264910687,0,0.0,25563,263.37603223819514,2037926,0,73157,0,0,0,0,0,48,0.4906720118596469,0,0.0,1,0.0104398300395669,0,0.0,0.071,0.187552831783601,0.3140845070422535,0.0223,0.3190208667736757,0.6809791332263242,25.63002623340945,4.604008403577764,0.3299565846599132,0.2027858176555716,0.2306439942112879,0.2366136034732272,11.228028306829971,5.641639782695747,23.785702071532118,12944.169181859075,62.18944837477069,13.002797760344574,20.4918148192557,14.138033175333783,14.556802619836642,0.5495658465991317,0.776092774308653,0.6907894736842105,0.5835294117647059,0.1253822629969418,0.7107377647918188,0.9313432835820896,0.8719646799116998,0.7758007117437722,0.16,0.4965135849963933,0.7099236641221374,0.6309263311451495,0.5291750503018109,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021980248164092,0.0043895219171971,0.0067581965965478,0.0090210898451785,0.0110958555809814,0.0136457601401236,0.0159254501335617,0.0181305892441504,0.0201692870724376,0.0224394738189077,0.0246955345060893,0.0265827463704129,0.0285746601682193,0.030572723526988,0.0325097529258777,0.0345487062326196,0.0363611884961526,0.0385297503604061,0.0407440120538265,0.0426172155641861,0.0575173219801318,0.0714734001380724,0.0849625242413124,0.0976650343624556,0.1099273964952212,0.1248480877550804,0.1378012846331588,0.1505316886431305,0.1625082705483106,0.174155738407474,0.1876984682289368,0.2008761492698756,0.2130234783648879,0.2244435938098102,0.2358327555276741,0.2470138504155124,0.2573204481542651,0.2674338811829952,0.2765798160142469,0.2848209991067134,0.2925447017186741,0.300661771583575,0.3082103419299097,0.3151938040259444,0.3217345859818423,0.3283276366283733,0.3342065352268027,0.339489560348456,0.344849515256129,0.3500218193358987,0.351173139158576,0.3520494568285395,0.3522337980911564,0.3522044450879606,0.3535332479676007,0.3536242569466845,0.3534870417745857,0.3543561354949255,0.3550800487327762,0.3559501200415666,0.3580423529411765,0.3591635916359164,0.3600025285515614,0.3603111440839909,0.3598256447511805,0.3615317987348749,0.3622444590991198,0.3636880507912442,0.3672075750642402,0.3700630335913189,0.3709085908132392,0.3693032721041075,0.3716673045031254,0.3735393603936039,0.3739089184060721,0.3786720802483879,0.3799410944039684,0.378757108042242,0.3725653867557039,0.3709869203329369,0.0,2.094687238745708,60.42188735280692,206.15633801688384,318.9823916143755,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95697,41825,392.5932892358172,7226,74.41194603801581,5579,57.81790442751601,2233,23.020575357639213,77.34192318165195,79.71613906633306,63.32298576779221,65.07455254017518,77.06918778422305,79.44175185757848,63.22387135950655,64.9767539115731,0.272735397428903,274.38720875457534,0.0991144082856578,97.798628602078,85.93882,60.44221884299043,89803.04502753483,63159.99335714853,255.96086,158.7216945195999,266986.68714797747,165386.4323732296,275.38563,131.85698280388334,284771.0377545796,135475.30321735225,3207.03792,1431.171376388491,3325234.2288681986,1470155.1094483882,1351.39393,580.3351534012825,1399826.755279685,594360.6558009926,2199.38294,908.3545584495372,2269734.9760180567,925148.0553115476,0.38072,100000,0,390631,4081.9565921606736,0,0.0,0,0.0,21632,225.5452104036699,0,0.0,25636,264.8985861625756,2035658,0,73019,0,0,0,0,0,52,0.5433817152052833,0,0.0,2,0.0208992967386647,0,0.0,0.07226,0.1897982769489388,0.3090229725989482,0.02233,0.3182057353328071,0.6817942646671928,25.547929522445774,4.588811668182116,0.3215630041226026,0.2046961821114895,0.2401864133357232,0.2335544004301846,11.208659609203393,5.591439533589616,23.681873954860777,13013.733054815357,62.55275887564496,13.30664569340507,20.111231459784463,14.982713713064436,14.152168009391008,0.5583437892095358,0.7889667250437828,0.7001114827201784,0.5940298507462687,0.1243284727551803,0.7207207207207207,0.9183098591549296,0.8767123287671232,0.7104377104377104,0.1611570247933884,0.5074170002354603,0.7306226175349428,0.6430678466076696,0.5608820709491851,0.1159283694627709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.0048955514336972,0.0072126358075413,0.0095069778779937,0.0117356330021457,0.0140396245240373,0.0163020206757335,0.0187270889281447,0.0207370444598961,0.0229867403880612,0.0250489597965733,0.0270789262902795,0.0294057145208071,0.0313739632167327,0.0334437803858421,0.0352921711975348,0.0375066032752245,0.0395981026125406,0.0417528935847172,0.0435462190127856,0.058472690809196,0.0728331204322241,0.0864408736447695,0.0992192925233054,0.1109856717803709,0.1264457824950528,0.1400133770742427,0.1519625073227885,0.1644772705409536,0.1757167237326521,0.1898051815035632,0.2019472361809045,0.2141628565207925,0.225542020991343,0.235754546655511,0.2470025043771193,0.2574666443365154,0.2675177879852292,0.276979804855911,0.2859990149024639,0.2938963984816221,0.3011374274480434,0.3086603918782928,0.3155268775936098,0.3221261957724051,0.3286145878290893,0.3343899169349887,0.339793215850056,0.3446491114282008,0.3496893588896232,0.3504071518277943,0.3505205888038885,0.3516783266200268,0.3526516905974988,0.3530767286621173,0.3539147625396533,0.3534220532319391,0.3540720258081506,0.3567167249537132,0.3585628142501834,0.3600781675717319,0.3612771280503544,0.3620149332211589,0.3632502640390103,0.3630751422783833,0.3652269285005484,0.367934487973293,0.3719677399029676,0.3758080382237212,0.3787848645207496,0.381887789982225,0.3824953445065177,0.3827129177500158,0.3840877914951989,0.3821176470588235,0.3870815652993871,0.3866221750341271,0.3835781847454216,0.381553664562174,0.3776856388993592,0.0,1.812200507399624,59.08601113484915,210.47638018759835,325.40256195452923,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95731,41763,392.2971660172776,6962,71.3353041334573,5428,56.04245228818252,2227,22.793034649173205,77.32392886815877,79.68817267233646,63.31606620966248,65.06527914763421,77.05712121684759,79.42399352154875,63.21740892386892,64.97032957746238,0.2668076513111828,264.1791507877116,0.0986572857935641,94.9495701718348,85.5943,60.18458499093236,89411.03717708997,62868.27918397691,255.29988,159.5945547735494,265994.79792334774,166025.35603977082,276.42293,132.8522380005458,284962.13347818365,135785.08592034513,3142.31032,1422.645869735098,3245897.5671412605,1450242.325172491,1307.50375,569.166631343178,1351520.865759263,580439.0411092162,2195.62424,912.1644081031072,2250402.0641171616,918477.2462542875,0.37953,100000,0,389065,4064.13805350409,0,0.0,0,0.0,21583,224.7338897535804,0,0.0,25651,264.1673021278374,2035283,0,73130,0,0,0,0,0,51,0.5327427896919493,0,0.0,0,0.0,0,0.0,0.06962,0.1834374094274497,0.3198793450158,0.02227,0.3176550783912747,0.6823449216087253,25.17488067179952,4.641124656209835,0.3279292557111274,0.2043109801031687,0.2301031687546057,0.237656595431098,11.44865711084865,5.789949682431134,23.60987274734814,12885.00744578074,61.23599773356909,13.02103587717247,20.17960953161709,13.89006036156493,14.14529196321462,0.5473470891672808,0.7781785392245266,0.6966292134831461,0.5812650120096077,0.1100775193798449,0.6993464052287581,0.9144542772861356,0.867237687366167,0.7379310344827587,0.1209964412811387,0.4956800789928413,0.7181818181818181,0.635948210205636,0.5338894681960376,0.1070366699702675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0045118575672469,0.0067793857957659,0.0091040256863581,0.0115758636123204,0.0138798370672097,0.0159553860897579,0.0179652331907683,0.0204582400392601,0.0225350670625575,0.0244009965449009,0.0265200517464424,0.0287655882141278,0.030952258330329,0.0330103499159004,0.0352580004961548,0.0370815379516075,0.0388802972588663,0.0407636953537706,0.042945999729113,0.0575172269784923,0.0723238198861734,0.0856516678376309,0.097867463038129,0.1091942508251521,0.1248016586624918,0.1383627778661998,0.1505142784130837,0.1623154656354818,0.17376947240895,0.1862881259218586,0.1991953015996625,0.2109847331564525,0.2226900405726096,0.233415098282936,0.2446226435992291,0.2562528599649549,0.265481148002251,0.2744966671587386,0.2835582976869,0.2913039950858242,0.2989722134327134,0.3063230794772668,0.3128429242054964,0.3196372047723399,0.3253657633187233,0.3311969295990166,0.3365941382037089,0.3422859739079639,0.3479716319563894,0.3490544389401077,0.3491671722464288,0.3494952347334981,0.3505628069362152,0.3508311982363105,0.3513542529370265,0.3516995483717614,0.3535896172170198,0.3540380108455788,0.355772840212359,0.3567181257151432,0.3581498495168699,0.3593251636729898,0.3604025642175102,0.3614126501664496,0.3622456984467339,0.3608818573835565,0.3623935951393943,0.363919900762006,0.3669823762138832,0.3694515774027879,0.3729700854700855,0.3740032907226933,0.3751242259766073,0.3757598784194529,0.375344105326152,0.3778049152801099,0.3741537236160892,0.370112479914301,0.3708079268292683,0.0,2.4447993926011398,60.60019165200787,201.86625461883924,308.9238530267146,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95791,41832,392.1140816986982,7156,73.4933344468687,5647,58.33533421720204,2348,24.15675794176906,77.4066300966336,79.74495676597368,63.35719594835807,65.0874267715601,77.11480417849744,79.45209514697841,63.24922389318742,64.98164554634533,0.2918259181361691,292.86161899527485,0.1079720551706486,105.78122521476983,85.7219,60.30594904220229,89488.46968921924,62955.75684793174,257.34391,160.14985111885184,268064.6407282521,166599.9322680125,282.30668,135.35973590401545,290279.2120345336,137952.98521793768,3251.49148,1477.4871819930631,3361287.5113528413,1509334.5115857043,1428.05664,627.3179068334737,1476390.224551367,640470.2335493709,2310.55976,970.874610514052,2379119.040410895,985581.0107242372,0.38071,100000,0,389645,4067.657713146329,0,0.0,0,0.0,21778,226.72276101095093,0,0.0,26350,270.69348894990134,2037365,0,73200,0,0,0,0,0,39,0.4071363698050965,0,0.0,1,0.0104393940975665,0,0.0,0.07156,0.1879645924719603,0.3281162660704304,0.02348,0.3209203351509509,0.679079664849049,25.309236873916216,4.594589099188104,0.3260138126438817,0.2078979989374889,0.2280857092261377,0.2380024791924916,11.276537374001942,5.691276472153276,25.141438051146043,12943.92013527537,63.83835013114749,13.802136256023946,20.873223157496717,14.30399724128904,14.858993476337805,0.5578183106074022,0.7998296422487223,0.6963606735469854,0.5908385093167702,0.125,0.7132867132867133,0.9378378378378378,0.8479657387580299,0.7601351351351351,0.1750841750841751,0.5050984111927911,0.736318407960199,0.6448326055312955,0.5403225806451613,0.110792741165234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0045020380848086,0.0068093483930546,0.009398209768042,0.0113810884755037,0.0134925968921203,0.0158234946269448,0.017771653141428,0.0200846314240157,0.0222379139547259,0.0243612474762485,0.026607425041558,0.028686249922914,0.0308327413858776,0.0328323437242289,0.0350677915345773,0.0369952721366424,0.0395592092304821,0.0417432860630616,0.043725859681634,0.0586921816796919,0.0730898747150237,0.0866192901913925,0.0990079239968892,0.1109343391773432,0.1259153590109367,0.13939413211227,0.1521195946879884,0.1639281294012206,0.1750731033300843,0.1884139058952646,0.2008477233653752,0.2124327555289898,0.2235946834420016,0.2343078765505345,0.2461986233151103,0.2563579172801499,0.2661854325485169,0.27570639412879,0.2846118616899473,0.2929349020696676,0.3009178602747734,0.3088759217394392,0.3154620640057533,0.3223845761104763,0.3280571456770628,0.3334920794064568,0.3395416385339567,0.3452533821030649,0.3504211347498975,0.3506479481641468,0.3515227551597204,0.3509956220872758,0.3511031275803624,0.3514620057170081,0.3513057354159634,0.3518377693282636,0.3534567658065787,0.3545879223923347,0.355227070347284,0.3559649188561148,0.3569537732121691,0.3571952011055045,0.3580517476574904,0.3595616333004878,0.3594539675923514,0.3608872689996867,0.3627715685043325,0.3653684210526315,0.3656621728786677,0.3676049292892547,0.3666454824700773,0.3692597239648683,0.370096001209464,0.3738004285847386,0.3722619187068057,0.3700859950859951,0.3725845410628019,0.3760376314333148,0.3805825242718446,0.0,2.414580154400481,62.998009974671646,214.4637791886866,317.8212913934451,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95691,42044,396.3382136251058,7160,73.70599115904317,5565,57.60207334023053,2308,23.795341254663448,77.29491858535671,79.69892434562087,63.29396199958445,65.07494076821177,77.01638940521529,79.41712595168484,63.19350906897771,64.97516309145568,0.2785291801414189,281.7983939360289,0.1004529306067425,99.77767675609071,85.6966,60.30242810729906,89555.5485886865,63017.86804119411,256.51658,159.91335552321283,267513.97728104,166561.34696163397,278.01365,133.43349603805274,286994.1896312088,136695.42744821872,3209.00084,1445.8190298452994,3324383.985954792,1481864.4106185287,1364.57968,588.8303554387003,1414128.4551316216,603529.2184808675,2269.2472,933.2342768896464,2342221.839044424,951380.5689616876,0.38086,100000,0,389530,4070.7067540312046,0,0.0,0,0.0,21709,226.26997314271975,0,0.0,25914,267.2560637886531,2035119,0,73036,0,0,0,0,0,48,0.5016145719033138,0,0.0,1,0.010450303581319,0,0.0,0.0716,0.1879955889303156,0.3223463687150838,0.02308,0.319377990430622,0.680622009569378,25.276527396850785,4.606670832498623,0.3299191374663073,0.2019766397124887,0.2309074573225516,0.2371967654986523,11.05051821085349,5.522900110831892,24.479376028741505,12904.839873269042,62.66845449170416,12.985419663069582,20.760534889930053,14.391782755444982,14.530717183259544,0.5371069182389937,0.7313167259786477,0.69880174291939,0.5665369649805447,0.1181818181818181,0.7021739130434783,0.9156976744186046,0.8682505399568035,0.7022653721682848,0.1325757575757575,0.4826762246117085,0.65,0.6416605972323379,0.5235655737704918,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0044648746283499,0.0065708627431066,0.0086523308423567,0.0108105907142929,0.0131379124071224,0.0154496101881709,0.0175823951288285,0.0196014240700577,0.0218912301908439,0.0239213835832837,0.0260419341914672,0.0279892982095081,0.0301450052045222,0.0321431889263927,0.0343333436747019,0.0364651876107478,0.0384136212624584,0.0402163736606678,0.042108335157333,0.0573654908760458,0.0710427135678392,0.0840215326820361,0.0970908517018254,0.1097302372688237,0.1251322527402767,0.1384675801606928,0.1512525418134974,0.1627723110783465,0.1741140876953942,0.1873498712797699,0.2006901699462359,0.2133353624070611,0.2249442720398619,0.2355004342997878,0.2463633344403852,0.2565478315188292,0.2662016201620162,0.2762508088961548,0.2846809047242379,0.293067908097091,0.30023997658765,0.3080776381701266,0.3151434433605701,0.3211827930841621,0.3280688539570033,0.3336635028900284,0.3389564885009875,0.344095773625975,0.3499042714728989,0.3504378283712784,0.3509295828918216,0.3507980373357396,0.350994431185362,0.3512290935063389,0.3512123212996944,0.3506031180967214,0.3514043647392365,0.3525044155220604,0.3533823793289072,0.3546695835847918,0.3555971412076208,0.3562230853668834,0.3569963716674554,0.3578458771780602,0.3598704308437796,0.3609799631506218,0.3637403852266226,0.365213082259663,0.366609225343646,0.3694819871765303,0.3719397867895216,0.3724868396016997,0.3723820483314154,0.3754734848484848,0.3763183125599233,0.3766313526792568,0.3819971293828173,0.3872832369942196,0.3890160183066362,0.0,2.103284301327647,61.03489015842346,206.8477019241461,322.08038944972463,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95714,41789,392.8369935432643,7131,73.34350251791797,5548,57.32703679712477,2281,23.403054934492346,77.3593554540744,79.73093419783268,63.33143217950936,65.08405711629217,77.08057550079245,79.45320924675215,63.22923863910287,64.98518422961648,0.2787799532819548,277.7249510805291,0.1021935404064962,98.87288667569294,84.98908,59.73603451525732,88794.5964017803,62410.74567488279,255.54456,159.31664786580308,266323.2860396598,165786.91268941096,281.36773,134.72324037633103,289869.31901289255,137597.8754186701,3197.78108,1440.5436072369928,3307714.0230269344,1471828.4270490257,1382.88002,592.742932674527,1432017.552291201,606636.0034855655,2246.08506,931.2894912856387,2308454.9595670435,941320.5910330748,0.37941,100000,0,386314,4036.118018262741,0,0.0,0,0.0,21624,225.2230603673444,0,0.0,26095,268.68587667425874,2041568,0,73197,0,0,0,0,0,63,0.6373153352696576,0,0.0,0,0.0,0,0.0,0.07131,0.1879497113940064,0.3198709858364886,0.02281,0.318175738932727,0.681824261067273,25.15614872007321,4.617318689690251,0.3233597692862293,0.2042177361211247,0.2334174477289113,0.2390050468637346,11.286066513652056,5.693580213778953,24.256399496494403,12928.415525049084,62.59925056024544,13.268436084088403,20.37300036682467,14.44102836964946,14.516785739682891,0.5502883922134102,0.7837599293909974,0.6978818283166109,0.5837837837837838,0.1184012066365007,0.712789827973074,0.9436201780415432,0.8568329718004338,0.7052631578947368,0.1535433070866141,0.4986938969365946,0.7160804020100503,0.6429107276819205,0.5495049504950495,0.1100746268656716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0045008971382809,0.0066973119425248,0.0087444902602019,0.0110531507072186,0.0132550113512578,0.0153626586472297,0.0176796031276157,0.0197297131524605,0.0218575318904973,0.0239042599011424,0.0260071077877524,0.0283347908843047,0.030538440932226,0.0328981992673236,0.0351579056184421,0.0370857361756758,0.0391453168758427,0.0410948935462408,0.042999552087999,0.0578824807075801,0.0721013961861302,0.0855449491240952,0.0980862250262881,0.1101198949732688,0.1260208183472263,0.1388048772722931,0.1514160988074957,0.1629795874746179,0.1746600701859821,0.1883533227728747,0.2008726060173005,0.212738409983571,0.224019436175801,0.2347051177546209,0.2462266975702261,0.2561508135937727,0.2663074049906622,0.2758491551006048,0.2843017060623073,0.292562117372033,0.3005344966725535,0.3081226198642288,0.3152121850751987,0.3219843177238851,0.3289248463802381,0.3340424200713258,0.3401073327059541,0.3458396447482554,0.350246643277322,0.3508205542103847,0.350904463855836,0.3514760277344134,0.3521049596309112,0.3528634818871228,0.3525794955721081,0.353005326294827,0.353311475409836,0.353702470590244,0.3547684896065661,0.3552577242181927,0.3556286404881721,0.3564838220424671,0.3567550519272793,0.3575213530450773,0.358610747051114,0.3592029816513761,0.3611454666539815,0.3647108783353386,0.3669274367366488,0.3675707926017715,0.3694011879916519,0.3714996491675703,0.3696483180428134,0.3713640214628636,0.3718968998693431,0.3753260702777352,0.3750252576278036,0.3812672176308539,0.3805140007671653,0.0,2.444113862833246,58.73910134514557,214.702965265182,318.6324600986166,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95875,42188,396.2346805736637,7210,73.95045632333768,5594,57.63754889178618,2267,23.259452411994783,77.4394230829848,79.7174901880083,63.39129033748679,65.07647267719659,77.16419876637096,79.44207045152628,63.29206167268799,64.97920218838428,0.2752243166138441,275.41973648202145,0.0992286647987938,97.27048881231326,86.20788,60.63309259993122,89916.95436766623,63241.817574895664,257.45952,160.3214663076606,267805.9661016949,166488.56981242303,281.24795,134.86417773578177,288017.87744458934,136622.677101172,3236.92524,1457.696211221938,3338747.5775749674,1483027.2723539758,1360.47805,592.009576540443,1399502.6544980444,598009.1490499416,2235.27932,914.1451599029,2296359.7809647983,925828.3828468458,0.38382,100000,0,391854,4087.1342894393742,0,0.0,0,0.0,21807,226.6910039113429,0,0.0,26142,267.2542372881356,2037907,0,73149,0,0,0,0,0,60,0.6258148631029987,0,0.0,1,0.0104302477183833,0,0.0,0.0721,0.1878484706372779,0.3144244105409154,0.02267,0.3082218985833443,0.6917781014166556,25.371969777845543,4.567891375788405,0.3291026099392206,0.2066499821237039,0.2275652484805148,0.2366821594565606,11.335175660177908,5.754252349258762,23.822159960546426,13042.200128551432,62.82902551262899,13.605421277948846,20.8253501389305,14.070700083701343,14.327554012048312,0.559706828745084,0.7837370242214533,0.7213470939706681,0.5765907305577376,0.1231117824773413,0.7338129496402878,0.9124668435013262,0.8970588235294118,0.7314487632508834,0.1653543307086614,0.5021408182683159,0.7214377406931964,0.6600732600732601,0.5323232323232323,0.1130841121495327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022777890261186,0.0045198427175807,0.0070096065084855,0.0093005310237691,0.0117291918647788,0.0139293054679391,0.0159918512859689,0.018329253365973,0.020156511789465,0.022535240082653,0.0245291911719502,0.0266562695587043,0.028649231875867,0.0308610839466776,0.0328869369787317,0.035014352683642,0.0371811052947383,0.038948120978521,0.0412345448316671,0.0429830127638326,0.0576929090359499,0.0720293383205692,0.0853681521192829,0.0984945514099145,0.1111321628563007,0.1269899919766901,0.1402124527382679,0.1528793030174245,0.164069494777233,0.1753086948147831,0.1892754651275271,0.2027634336581466,0.2150126535533132,0.2255872391565607,0.2360947721400692,0.2477257132738661,0.2581058638638415,0.2679496253356251,0.2772767442387437,0.2865832742573578,0.2953224818918013,0.3035363916658881,0.3104398202884842,0.316809983472658,0.3236387040365279,0.329280610987928,0.3351181614602229,0.3417256586556181,0.3471422843617833,0.3526420488229017,0.3537617196432654,0.3549420042878346,0.3551415021320311,0.3561479554977604,0.3566135523248043,0.3568136932192232,0.3567176466862987,0.3578717679485497,0.3582823762511529,0.358950562198822,0.3601236765670383,0.360727071342392,0.3617306724802951,0.361801970905678,0.3625906536669708,0.3640089807852966,0.364727634760347,0.3689725490196078,0.3716736694677871,0.3731266354769645,0.3738964230454173,0.3762771392081737,0.3790862047204342,0.3821231617647059,0.3830556877677296,0.3859923113887554,0.3863920099875156,0.3912414790332575,0.3911830357142857,0.3935681470137825,0.0,2.6851743093471727,60.78530562083947,207.3378135451024,322.01399198392994,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95739,41844,394.40562362255713,7045,72.47830037915583,5441,56.26756076416089,2194,22.561338639425937,77.34647984393533,79.69916066063529,63.33814763576003,65.07540838802694,77.0821733220428,79.43589292178486,63.24120794746479,64.98173551842312,0.2643065218925216,263.26773885043053,0.0969396882952438,93.6728696038216,84.78074,59.6339719278387,88554.02709449649,62288.06643879579,252.86699,157.43230703365072,263541.0229895863,163858.88408449088,273.38106,130.95460646307544,282322.3451258108,134243.0593913404,3106.23004,1394.768495479539,3214077.356145353,1426444.7878915984,1329.77035,569.845423149763,1376268.5008199376,582522.0371528459,2165.51722,892.4710935408998,2228750.248070274,902745.7061969334,0.37969,100000,0,385367,4025.18304974984,0,0.0,0,0.0,21468,223.6497143274945,0,0.0,25423,262.3068968758813,2043747,0,73341,0,0,0,0,0,44,0.4595828241364543,0,0.0,0,0.0,0,0.0,0.07045,0.1855461034001422,0.3114265436479773,0.02194,0.3159956768440962,0.6840043231559038,25.421930189445817,4.50210696161937,0.31703730931814,0.2196287447160448,0.2271641242418673,0.2361698217239478,11.06876870126182,5.525284595679086,23.17138048920626,12919.655746248543,61.20408890863264,13.998435863945874,19.32406189695994,13.839351085969623,14.042240061757198,0.5421797463701525,0.7606694560669456,0.6805797101449276,0.5687702265372169,0.1276264591439688,0.7106824925816023,0.9276485788113696,0.8361445783132531,0.7208480565371025,0.182509505703422,0.4866845834351331,0.6806930693069307,0.6312977099236641,0.5236096537250787,0.1135029354207436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660320032408,0.0042473821326115,0.0063831298647263,0.0086040511163934,0.0106473854414546,0.0128787261769017,0.0149643221202854,0.0172485940864879,0.0194621336795085,0.0214900740225036,0.0234114740823501,0.025650237103032,0.0277078085642317,0.0297256097560975,0.0318097399917457,0.0337071683291126,0.0359176658176471,0.0378486055776892,0.0397829454140981,0.0418415707515233,0.0567753521053236,0.070482091645559,0.0838998699064165,0.0967192429022082,0.108827901778654,0.1246339116735919,0.1371833495990155,0.1501154734411085,0.1619102527145191,0.1730350807618516,0.1867390110777379,0.1983734737798349,0.2103856018780159,0.2225196970855962,0.2334894253176801,0.2448609097047721,0.2547279214986619,0.2652294681915815,0.2741082773643129,0.2834432838555983,0.2922320550639135,0.3010874649204864,0.3085599981061951,0.3153585172575018,0.3220229851544087,0.3278484598425972,0.3339672927015428,0.3394568995149524,0.3458805528902259,0.351614522777719,0.3528912137839914,0.3536939841027124,0.3543614695719624,0.3546463667018829,0.3557556365801027,0.3555313401682117,0.3555492172149331,0.3559717430589781,0.3570670410189687,0.3575772753291356,0.3584076612524645,0.3596736181252847,0.3604643826108902,0.3616610549943883,0.3630790026310073,0.3641591177628988,0.3654138792385655,0.3683744465528146,0.3706315900835772,0.3727808295517872,0.377623980199835,0.3779620219309976,0.378811793673843,0.3798217304441371,0.3833349186721202,0.3885220314563573,0.3912976392532016,0.3986071282261368,0.4011824324324324,0.3988985051140834,0.0,2.156543670333362,59.564390947500776,204.71048544779092,310.4611100548829,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95740,41583,390.9651138500105,7154,73.65782327135993,5591,57.80238144975977,2270,23.34447461875914,77.41222784566315,79.76689879736988,63.350809200748486,65.08930044288952,77.13511930983304,79.48785183319599,63.249390993414565,64.98969430403142,0.2771085358301093,279.04696417388664,0.1014182073339213,99.60613885810687,85.1906,59.85331444959833,88981.19908084394,62516.51812157753,257.1083,160.18295725531462,267956.3296427825,166729.46723590684,278.95155,133.16908059818442,287078.5460622519,136010.348922806,3226.72092,1447.984373341277,3337338.54188427,1480065.3131491428,1351.33395,579.0909982608732,1398352.548569041,592253.703188922,2235.27846,923.3793488462674,2300273.407144349,936325.651415867,0.37711,100000,0,387230,4044.59995822018,0,0.0,0,0.0,21775,226.80175475245457,0,0.0,25979,267.0461667014832,2039548,0,73129,0,0,0,0,0,47,0.490912889074577,0,0.0,0,0.0,0,0.0,0.07154,0.1897059213492084,0.3173050041934582,0.0227,0.3201649374833732,0.6798350625166267,25.22474777559076,4.640581693614022,0.3330352351994276,0.2056877123949204,0.2248256125916651,0.2364514398139867,11.153902558225225,5.52494667290371,23.996118573424837,12834.23237508824,62.90849904275776,13.4632515057102,20.96935566321656,13.927918387593794,14.547973486237208,0.5419424074405295,0.7652173913043478,0.69656283566058,0.5616547334924423,0.1111951588502269,0.6916234247590808,0.92,0.8619246861924686,0.7018867924528301,0.1281138790035587,0.4943422913719943,0.7042424242424242,0.6394508670520231,0.5241935483870968,0.1066282420749279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407534940247,0.0047534586732884,0.0068579312583695,0.0092412056219026,0.0113766915076403,0.0137832748002239,0.0158387182257374,0.017938226380825,0.020061113325362,0.0222824974411463,0.0243297532180044,0.0262077319481799,0.028282101367328,0.0303907231570925,0.0324314842331187,0.0345241048540478,0.0365626359061445,0.0385856426963261,0.0406616485070282,0.0426480545861763,0.0573889439891423,0.0705660772208852,0.0840553865519773,0.0965895941596011,0.1086678976523344,0.1243465193557262,0.1372078707732801,0.149349404774581,0.1604684961956057,0.1715962995556891,0.1852838121934127,0.1981245465669023,0.2095311700610665,0.2204547693857219,0.2309073484539716,0.2428715605487595,0.2533221570271025,0.2638544717278666,0.2734819491920006,0.282448436765532,0.2911093353715735,0.2993983941571666,0.3067900723153945,0.3132885230581215,0.3196011513657286,0.3256908425630475,0.3309694445486723,0.3364298331448323,0.3421413243012643,0.347426494792421,0.3486138720249288,0.349247955206675,0.3505376344086021,0.3509705517579533,0.3516838131892532,0.3510385213651752,0.3503769359366621,0.3515488353085411,0.3517834340682727,0.3528124666453197,0.3533045896560091,0.3544263909404234,0.3566240344964729,0.3578395268385225,0.3592184007498738,0.3601520595740249,0.3602869996013894,0.3620261909995917,0.3640763080375929,0.3663554359867068,0.3681628202798473,0.3701050620821394,0.3733266293759034,0.3778588253172251,0.3772914328469884,0.3795102330533538,0.3791533909877105,0.3829787234042553,0.3820316766794102,0.3886562618956985,0.0,2.2770517922283333,59.610728532306034,219.9911893004707,312.5093433938183,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95740,42148,396.4069354501776,7123,73.33402966367245,5555,57.55170252767913,2254,23.24002506789221,77.32373385663094,79.69271588560485,63.321321634088775,65.07472653007977,77.05003172667813,79.41681345783299,63.22220546200669,64.97701363382957,0.2737021299528095,275.902427771868,0.0991161720820912,97.71289625020074,86.19666,60.66653148159263,90032.0242322958,63365.91965906897,258.06879,161.09324822132274,269097.07541257574,167806.55757397407,283.2569,135.7771413499469,292719.63651556295,139479.4031800197,3189.10076,1435.435059580145,3304719.991644036,1473024.0438480729,1355.69375,587.0409045244162,1403562.2623772717,600707.8175521373,2217.46632,913.1547231030034,2287107.708376854,930098.4549740452,0.3818,100000,0,391803,4092.364737831628,0,0.0,0,0.0,21800,227.229997911009,0,0.0,26333,271.8821809066221,2032820,0,72933,0,0,0,0,0,46,0.4804679339878839,0,0.0,0,0.0,0,0.0,0.07123,0.1865636458878994,0.3164397023725958,0.02254,0.3041450086632014,0.6958549913367986,25.402549397419826,4.555431126256565,0.3278127812781278,0.2066606660666066,0.2336633663366336,0.2318631863186318,11.158880252627146,5.608302495321893,23.979256123682017,13031.978489638906,62.56674813982116,13.371296368774749,20.6070715344093,14.452215236271572,14.136165000365528,0.544014401440144,0.7613240418118467,0.6941241076331686,0.5647149460708782,0.1172360248447205,0.717948717948718,0.9424657534246575,0.8735362997658079,0.7124183006535948,0.1685393258426966,0.4873508353221957,0.6768837803320562,0.639167862266858,0.5191532258064516,0.1038197845249755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024924012158054,0.0046041356090338,0.0068615509541209,0.0089831920817836,0.0113136903792935,0.0135175055261844,0.0156141639130257,0.0179036491579259,0.0201957195300277,0.0224793896256848,0.0244690342628011,0.0266509191742836,0.0285893584626147,0.0305437907688502,0.0326589595375722,0.034871338922948,0.0367892283790782,0.0388773604482257,0.0409882088714205,0.0430755123943691,0.0583549114600735,0.0719219659228869,0.0856174801481155,0.0985484379930577,0.1103483909064068,0.1259753441458205,0.1395215615551901,0.1521519391392243,0.1642371234207968,0.1750048249093989,0.1896728071403193,0.2035975425085449,0.2161409917696815,0.2271281305683395,0.2377935434196777,0.2494491989858618,0.2601304275124018,0.2698084592484412,0.2794299384360721,0.2875008581432069,0.295002773668639,0.3031503423777139,0.3109815929161691,0.3180250107805088,0.3246393705376657,0.330938354982623,0.3365261813537675,0.3418582436477106,0.3467683369644154,0.3516782422689941,0.3524963605974012,0.3528998097129147,0.3538405070796335,0.3543701985795043,0.3548117903019104,0.3549367554955176,0.3547921981208309,0.3560934726878327,0.3568217173530266,0.3575082272141937,0.3583175146127389,0.3589519650655022,0.3609103361078917,0.3620755608559663,0.3625511513595971,0.3623325453112687,0.3632284415808549,0.3648850592985914,0.3665743305632502,0.3684528605962933,0.370161402210609,0.3716818943612477,0.3719352154151463,0.3693393300248139,0.3680403540496811,0.368560743153577,0.3720894371626831,0.3726134264011496,0.3725055432372505,0.3731982859368913,0.0,1.8615972215332937,60.488678396289785,208.6645204747991,321.6597527314854,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95777,41965,393.9567954728171,7128,73.07599945707216,5579,57.62343777733694,2267,23.272810800087704,77.38153749659537,79.72257598634013,63.350937847410606,65.08268450479416,77.10236692782479,79.44293572737251,63.24909685782407,64.98295038840742,0.2791705687705814,279.6402589676177,0.1018409895865346,99.7341163867418,84.4723,59.42615508175881,88196.85310669575,62046.373431783,255.39433,159.097404561495,266013.77157355106,165478.8116324557,281.36768,135.07587260672344,289857.2308591833,138013.30666472824,3218.37516,1449.739579456999,3326569.8862983803,1480407.744559002,1397.59612,605.8685645169265,1442008.707727325,615420.6886662772,2230.17498,925.5670867897028,2291560.7087296536,936579.5361045148,0.38118,100000,0,383965,4008.947868486171,0,0.0,0,0.0,21633,225.2106455620869,0,0.0,26246,270.0021925932113,2043822,0,73390,0,0,0,0,0,43,0.4489595623166313,0,0.0,0,0.0,0,0.0,0.07128,0.1869982685345506,0.3180415263748597,0.02267,0.3146666666666666,0.6853333333333333,25.395735842887344,4.5645979234631096,0.3350062735257214,0.2050546692955726,0.22172432335544,0.2382147338232658,11.179142926848352,5.626304783147972,24.17118007173367,12977.21999350763,62.847409920934325,13.387282037575469,20.938536773187863,13.834564694307964,14.687026415863016,0.5558343789209536,0.7770979020979021,0.7025147137506688,0.6063055780113177,0.1121143717080511,0.717948717948718,0.9303621169916436,0.8599562363238512,0.7353951890034365,0.1511627906976744,0.5033222591362126,0.7070063694267515,0.6515580736543909,0.5665961945031712,0.1027077497665732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0047641251241713,0.0070411103445477,0.0094147040004874,0.0117432946296032,0.0138338915072732,0.0159212296652668,0.0179426203574235,0.0202844938584479,0.0223668324226983,0.0245014653741315,0.0267701340559627,0.0290664199054081,0.0308883489147893,0.0329032191519427,0.0347677842640905,0.0366737033817624,0.0391931253951964,0.0411368735976065,0.0432808937291117,0.0582421940223743,0.0721240835451246,0.0851574621545687,0.0978385364674729,0.1103805098051612,0.1260541500221926,0.1386878331549442,0.1516462721000202,0.1633709328011781,0.1747397982699666,0.1891475872164993,0.2021046483960978,0.2144534052127035,0.2257507540324343,0.2362574514418952,0.247694743017811,0.2578138067149117,0.2668127915472377,0.2761064556000318,0.2856685201711631,0.2929080310880829,0.300729551512884,0.307676834607284,0.3144551608458635,0.3211756847027388,0.3283648279090393,0.3348627867725198,0.3403906100897003,0.3463346412338293,0.3512679103886851,0.3515136823960353,0.3513565598028824,0.3518510683308652,0.3523580741791239,0.3529280385938267,0.3534201205207231,0.3528983211910041,0.3547365484649087,0.3558726149435096,0.3567424756328323,0.3573787099921203,0.3588946117274168,0.3604211322657925,0.3600862805015054,0.3608851992180901,0.362562840385421,0.3648246667810766,0.3671244959677419,0.3698394293946102,0.3730168197542646,0.3746347699050402,0.3757802080554814,0.3788532284663199,0.3776669224865694,0.3746436038775898,0.381453154875717,0.3813702848344881,0.3838013838013838,0.384529461044401,0.3849129593810445,0.0,2.405603719186768,59.998350912867565,207.47423204719917,326.93537654404474,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95860,41587,390.6634675568537,7208,74.06634675568537,5598,57.84477362820781,2307,23.70123096181932,77.37299817448195,79.67597507591856,63.35320242165369,65.0578815398406,77.0963945380778,79.39763977813142,63.25246389617075,64.958490905064,0.2766036364041468,278.3352977871374,0.1007385254829387,99.39063477659715,85.45416,60.0863816725972,89144.75276444816,62681.39127122596,256.6859,159.4032381370515,267217.4525349468,165733.3487763942,273.65772,130.71653300201035,282088.98393490503,133622.8562498566,3266.68068,1466.6047850658565,3377598.4978093053,1499780.9566720806,1373.50176,594.9519997874359,1417949.2906321718,605783.2447665408,2281.96964,942.2311498018676,2346995.034425203,956260.9596555772,0.37949,100000,0,388428,4052.034216565825,0,0.0,0,0.0,21668,225.4537867723764,0,0.0,25490,262.54955142916754,2040983,0,73269,0,0,0,0,0,56,0.5737533903609431,0,0.0,1,0.0104318798247444,0,0.0,0.07208,0.1899391288307992,0.3200610432852386,0.02307,0.3133403638281044,0.6866596361718956,25.42804266917367,4.505649876480301,0.3224365844944623,0.2075741336191497,0.2198999642729546,0.2500893176134334,11.03773529757126,5.494644470349878,24.51333903871052,12873.574421369036,62.98777123607103,13.687899131127852,20.42384538315718,13.593147892035638,15.28287882975035,0.5392997499106824,0.7771084337349398,0.710803324099723,0.5507717303005687,0.1107142857142857,0.6896046852122987,0.9025069637883008,0.8665207877461707,0.6781609195402298,0.1557093425605536,0.4907844990548204,0.7210460772104608,0.6580118694362018,0.5164948453608248,0.099009900990099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0045202549991385,0.0066238600975827,0.0085291310440062,0.0103897688225606,0.0127850162866449,0.0149725316726631,0.0171243711028788,0.0195976253972146,0.0217426893404547,0.023943445520209,0.0261319215734556,0.0281177740095575,0.030086874176548,0.0322051895302207,0.0340682604430216,0.0361691341547947,0.0384551615510559,0.0404681301792352,0.0424070914311873,0.0568994640585573,0.0712121212121212,0.085080974628648,0.0972667037686516,0.1093490027589983,0.123984662997898,0.1375667542595575,0.149522675568218,0.1610455311973018,0.1721314988641721,0.1865005058005639,0.1997470598408855,0.2121772019824363,0.2231320927995102,0.2339322850760885,0.245370575466265,0.256027221509455,0.2663366336633663,0.2754243056816119,0.2845331073498087,0.2919832980556808,0.2995296265094074,0.3072451758020599,0.3148787268718244,0.3207175911867947,0.3267142452144116,0.3325567121365851,0.3381836235869233,0.3434681181959564,0.3488728560479928,0.3496359223300971,0.3503412145860619,0.3519627223948037,0.3518333405768757,0.3520784944315407,0.3519754507096279,0.3510636610244776,0.3518935718866652,0.3529421829817086,0.3540361553606587,0.3550349177742735,0.3557576117747271,0.3556680459576971,0.3554450343885117,0.3559260776329422,0.3561815663626623,0.3581290100824931,0.3609618909182835,0.363412054987663,0.36704432518386,0.3690746974797562,0.3712157488693801,0.3728877919119043,0.3775205090853331,0.378219139028794,0.3793718772305496,0.377107501933488,0.3855371900826446,0.3843336151028458,0.389988358556461,0.0,2.117121101505122,60.3588220527991,211.11568926594416,323.5813301582113,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95785,41852,393.7777313775644,7172,73.65453881087853,5520,56.981782116197735,2267,23.24998694993997,77.39816222968327,79.72814432973351,63.35848721039546,65.07955599581112,77.11599054847484,79.44619396546354,63.25425467233926,64.97834913542576,0.2821716812084247,281.9503642699744,0.1042325380562019,101.20686038536064,86.44196,60.78009560157654,90245.8213707783,63454.71169971972,255.67959,159.29177633841817,266294.55551495537,165666.9756762585,276.61752,132.76376398764384,284405.02166309964,135227.30752433257,3216.4976,1449.588267953305,3323519.423709349,1478920.0696663947,1382.9682,606.5400263206051,1423622.5713838283,613080.7542348622,2243.73916,935.2754078363242,2303417.591480921,943243.044556784,0.38047,100000,0,392918,4102.0827895808325,0,0.0,0,0.0,21622,225.07699535417865,0,0.0,25702,264.12277496476486,2035077,0,72999,0,0,0,0,0,58,0.5742026413321502,0,0.0,1,0.0104400480242209,0,0.0,0.07172,0.1885036928010093,0.316090351366425,0.02267,0.317808944165123,0.6821910558348769,25.224049938024763,4.552609224973065,0.3278985507246377,0.2016304347826087,0.2235507246376811,0.2469202898550724,11.14185403278045,5.630127192793816,24.01250502594681,12903.785012322956,61.959934696462696,13.06680851346131,20.261712016486012,13.70477250214202,14.926641664373337,0.5445652173913044,0.7753818508535489,0.7011049723756906,0.5777957860615883,0.1181217901687454,0.6937728937728938,0.925207756232687,0.8701594533029613,0.6906474820143885,0.1358885017421602,0.4955475330926594,0.7034574468085106,0.6469730123997083,0.5449790794979079,0.1133828996282527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989204188693,0.0045605642938219,0.0068173517834679,0.0088959298074579,0.0110506785950287,0.0131292364687442,0.0154379171549396,0.0174774517406031,0.0194323545638447,0.021618801092706,0.0238505040570445,0.0257978450487429,0.0279841734751554,0.0301461506792918,0.0322690392486365,0.0343395953607981,0.0366420110691563,0.0384910512453597,0.0405611847233047,0.0423930021868166,0.0560025043042729,0.0698433283828728,0.0832127655113124,0.0963236221465506,0.1087742602021991,0.1245044873624457,0.1375312884476687,0.1501495110297638,0.1616059126979888,0.1724145326641787,0.1861980569138967,0.1988447684669385,0.2113618829256631,0.2234459850744637,0.2347102532536053,0.2468156214379779,0.2570848622062612,0.2676084853665669,0.2771575101549912,0.2854033496002016,0.2931235903070961,0.3009426018618141,0.3081067639257294,0.3150215209754577,0.3218341937443061,0.3276531253465419,0.3340173421253488,0.3395544699311731,0.3444062965602125,0.3492797063367356,0.3503780476299581,0.3510967901846573,0.3516517617852004,0.3525082064407907,0.3530923241444867,0.3522854299058265,0.3516300731869594,0.3516252484273114,0.3522414117727607,0.3536698723678095,0.3552900575801339,0.3561842079178479,0.358005249343832,0.3585779488097368,0.3593487344507948,0.3603862212943632,0.3606095931307043,0.3643130849927759,0.3682330695426851,0.3702808699441429,0.3722491096703497,0.3754105307765653,0.3783292598859434,0.3825482861287121,0.3853930461073318,0.3853728833913774,0.3820362965241464,0.3821071938047687,0.3751735628991947,0.3736559139784946,0.0,2.5271287747619,59.778514981276224,206.3090477946295,316.2864545829418,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95884,41754,390.6908347586667,7159,73.51591506403571,5637,58.27875349380501,2289,23.518000917775645,77.3584022892406,79.64173269161243,63.35300198276878,65.04202060757258,77.06758980675448,79.3493561471468,63.24547876795331,64.9364534713713,0.2908124824861176,292.37654446562544,0.1075232148154725,105.56713620128733,86.18764,60.61398899798724,89887.40561511827,63215.95782193822,257.49227,160.16179775720926,268074.3606858287,166565.79591715953,276.99472,132.57627498262298,286009.9390930708,136027.5591380232,3265.75952,1484.3772905421758,3378178.5907972134,1520327.1980123676,1398.90464,613.1380438758218,1445091.7045596763,625594.6079385728,2257.42754,952.9111857903532,2321495.2233949355,965959.2137466042,0.3799,100000,0,391762,4085.7911643235575,0,0.0,0,0.0,21776,226.5967210379208,0,0.0,25915,267.3543031162655,2033492,0,73074,0,0,0,0,0,43,0.4484585540861874,0,0.0,1,0.0104292686996787,0,0.0,0.07159,0.1884443274545933,0.319737393490711,0.02289,0.3147458078253926,0.6852541921746074,25.01983368018156,4.640285744468465,0.3304949441192123,0.1993968422919992,0.2299095263437998,0.2401986872449884,11.16227571959553,5.581585175782005,24.68715893726426,12908.022263056197,63.996374836492784,13.168250876108864,21.15780015195676,14.632838272019276,15.03748553640789,0.5506475075394713,0.7846975088967971,0.6983360171765969,0.5833333333333334,0.121861152141802,0.6830110497237569,0.9128065395095368,0.8231578947368421,0.7100977198697068,0.1505016722408027,0.5048937693960373,0.7225891677675033,0.6556195965417867,0.5439838220424671,0.1137440758293838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023995383166783,0.0047724716539502,0.0069073241979491,0.0093614515326584,0.0117808497662126,0.0137290222778575,0.0159541953624842,0.0181243306644907,0.0202464698855456,0.0223473967225181,0.0247218155947055,0.027004029074953,0.0295171875481425,0.0316936180718429,0.0338836332158535,0.0359303694220166,0.037994848506791,0.0399125261695997,0.0419033574610823,0.0438523481553923,0.058255058745035,0.0724353013697198,0.085549120841144,0.0984133317932186,0.109950070575347,0.1253829414126048,0.1388573911384759,0.1507640284556735,0.1629361597660294,0.1739596509658469,0.187356656006719,0.2003677663601947,0.2128957209949556,0.2246635839919544,0.2352423779314591,0.2462621321617105,0.2574895714827455,0.2662243463592915,0.2747469704534108,0.2826266330506532,0.2902773918681115,0.2973172273333802,0.3055446929029353,0.3120198770885347,0.3186293001691471,0.3251830721545092,0.3316524924111286,0.3379943863230416,0.3429889538661468,0.347376925420182,0.3478889414307911,0.348891804184216,0.3494416961130742,0.3507703020280268,0.3519098776484631,0.3518196506886205,0.351097677378301,0.352754814118113,0.3537713981559383,0.3544385486877958,0.3557458823529412,0.356392172444621,0.3563555124665416,0.3586543434752299,0.3604383906321825,0.3620351226150907,0.3623823015941158,0.3643418188700671,0.3669718309859155,0.3676324074443072,0.3696667277055484,0.3708570516571793,0.3720782922657883,0.3744009893337455,0.3792081101759755,0.3832588476869187,0.3865165024245268,0.3864615384615384,0.3832318760376314,0.3857965451055662,0.0,2.033911467640336,64.17704947762292,215.5045568732456,315.1737794215733,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95716,42242,397.5824313594384,7095,72.70466797609596,5553,57.26315349575829,2275,23.2458523130929,77.38965647392791,79.75406082869972,63.34469261111818,65.09298302584556,77.11602863937034,79.48639507872825,63.24543747865494,64.99945788755878,0.2736278345575726,267.66574997147075,0.0992551324632415,93.525138286779,85.7769,60.34069370021496,89615.82180617661,63041.1568601017,257.58408,160.7098244544233,268334.18655188265,167124.0904910603,280.34729,134.5113409704508,288143.52877261897,136836.07137953714,3214.36264,1440.9108032037088,3315566.718208032,1463018.981148213,1379.78609,597.2364469936795,1418557.3362865143,601239.5915912356,2242.37068,917.4606027103908,2294413.4522963767,917396.4185901012,0.38414,100000,0,389895,4073.4464457353006,0,0.0,0,0.0,21821,227.15115550169253,0,0.0,26016,267.0608884616992,2037299,0,73072,0,0,0,0,0,58,0.6059592962514104,0,0.0,1,0.0104475740733001,0,0.0,0.07095,0.1846982870828344,0.3206483439041578,0.02275,0.318254817987152,0.681745182012848,25.34001462095404,4.658519093244072,0.3153250495227804,0.2015126958400864,0.2456329911759409,0.2375292634611921,11.35321097477406,5.736267201003018,23.917157739002853,13074.462553398003,62.39172977238099,13.0022091385665,20.059841335191077,15.06249763990188,14.267181658721524,0.5479920763551234,0.7640750670241286,0.6956025128498001,0.5755131964809385,0.1402577710386656,0.7318181818181818,0.9230769230769232,0.8893709327548807,0.723404255319149,0.1673640167364016,0.4906685565792582,0.6952624839948783,0.6263565891472869,0.5369685767097967,0.1342592592592592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022182157037517,0.004632868019018,0.007124082850445,0.0096206595282117,0.0117285645986552,0.0140320149892061,0.0162212864876989,0.0185379896081093,0.0205965328317932,0.0227858985382631,0.0248265116803509,0.0270209227357657,0.0288977527396837,0.030870935189571,0.0329541117861231,0.0350041339396444,0.0369772089507419,0.0389774766830239,0.0407741157639819,0.042732103782432,0.0574674239893083,0.0721694805262772,0.0856249540976382,0.0981778394983798,0.1108192501635124,0.126573308230914,0.1408201156437324,0.1539705851052508,0.16576963328421,0.1769241493206361,0.1906064260487552,0.2041001785038134,0.215425098133026,0.2270724212966506,0.2374429223744292,0.2488567030971442,0.2595793558747435,0.2696871628910464,0.2789374029184004,0.2872571677001579,0.2952222376393321,0.3031220413077273,0.3101088536680495,0.3173651261057444,0.3243564692889304,0.3310546995282612,0.3364145798413929,0.3422401404062114,0.3485817071276981,0.3538512265892904,0.3552805058522804,0.3557142071090569,0.3564097148891235,0.3571665920221911,0.3576813486881158,0.3575943071390313,0.3570174467344711,0.3577622240070811,0.3581598937221105,0.3589268536003135,0.3597705659249294,0.3609675255494614,0.3619957759143472,0.3633866356976952,0.3639136386560676,0.3639375048905814,0.3644526795895096,0.366566787572938,0.3683096355361112,0.3695773971506323,0.3714864056677554,0.3734453238572121,0.3762388818297331,0.3767112868877396,0.3818164811523711,0.3823738450604122,0.380085653104925,0.3804435483870967,0.3791313848675225,0.3757159221076747,0.0,2.732074487682263,57.59678737057774,216.1218933222867,317.3846371846682,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95749,41873,393.863121285862,7156,73.48379617541698,5579,57.55673688498052,2291,23.49893993670952,77.34687979821054,79.70688174048465,63.33382307926016,65.08149736053247,77.06775092867358,79.42891157700517,63.23192337621705,64.98273983771767,0.2791288695369616,277.97016347948045,0.1018997030431094,98.75752281479322,85.5261,60.156279022161605,89322.77099499734,62826.644110834975,255.22191,158.4076806104916,265859.528559045,164748.09840318374,276.85779,132.57253729586628,284531.34758587554,134824.23541180842,3248.51356,1456.797473863755,3354975.2373392936,1483807.5798345215,1365.09279,592.8743253149844,1404556.0266947958,598223.7380060215,2259.82566,932.616084008924,2320580.016501478,940376.4622469216,0.38113,100000,0,388755,4060.125954318061,0,0.0,0,0.0,21614,225.0154048606252,0,0.0,25797,264.82783110006375,2040541,0,73286,0,0,0,0,0,39,0.407314958902965,0,0.0,1,0.0104439733052042,0,0.0,0.07156,0.1877574580851677,0.3201509223029625,0.02291,0.3234354194407456,0.6765645805592543,25.3743946544168,4.626374554592681,0.3416382864312601,0.1939415665889944,0.2272808747087291,0.2371392722710163,11.140687092507084,5.453928270182367,24.42615486602099,12934.157870394796,62.9140481054069,12.645636508045415,21.501866538954765,14.227965259795498,14.538579798611227,0.5466929557268327,0.7513863216266173,0.6909758656873033,0.5922712933753943,0.127739984882842,0.7139737991266376,0.9309309309309308,0.832271762208068,0.7442622950819672,0.1962264150943396,0.4920332936979786,0.671562082777036,0.6445993031358885,0.5441329179646937,0.110586011342155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0046951689449559,0.006994923857868,0.0091872719696738,0.0115772767966143,0.0137064418239954,0.0158731776939545,0.0182115149040424,0.0204452986035861,0.0224024245402793,0.0245035217404677,0.0265624839567525,0.0286604553587955,0.0308527515091579,0.0327677668379879,0.0348470595532216,0.0367305939855852,0.0384874734166709,0.0406968887410472,0.0426528933365267,0.0570319186689768,0.070986233733629,0.0845600570374098,0.097481764866626,0.1092608791880526,0.1247675205004649,0.1383129822776223,0.1512789980650237,0.1634718977673952,0.1748048025533646,0.1886757951575256,0.202122371350148,0.2140374128229082,0.2250346702774714,0.2359034635791416,0.2464262004868333,0.2565949381201918,0.2668600272053781,0.2764424168141994,0.2846653455366041,0.2936166273202796,0.3020395745328169,0.3088550359243872,0.3152839894006067,0.3212294912743038,0.3277846862264685,0.3328492739108663,0.337740675226836,0.3439916080655814,0.3493759729808174,0.3500424236710616,0.3507430822417806,0.3518343645614579,0.3520237062734894,0.3527339220408527,0.3516911471589341,0.3511473382070759,0.3520310751201527,0.3536856888401726,0.355288349705656,0.3561376148512805,0.356274179148894,0.357205956587582,0.3579439462387341,0.3588571152078192,0.3603563357334314,0.3618506073920909,0.364436395984242,0.3645958773110434,0.3652588938354791,0.3669416155937514,0.3708431667024244,0.3722781102763275,0.3770039119429316,0.3778510838831291,0.3783460803059273,0.382939267501159,0.3809622135040264,0.3824858757062147,0.3764517420905086,0.0,2.754229345235488,60.2128809881859,213.8089875649739,316.3317651839655,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95748,42148,397.14667669298575,7224,74.19476124827672,5613,57.97510130759911,2253,23.081422066257257,77.36211040614715,79.72367483425936,63.32787542470121,65.07542805763687,77.08599126499861,79.45025488287266,63.22716553118025,64.97874736765073,0.2761191411485413,273.4199513866997,0.100709893520964,96.68068998614388,84.59484,59.522621844636745,88351.31804319673,62165.68684947647,257.59675,160.08381115745468,268406.66123574384,166563.3445685076,280.74302,133.99099230392696,289721.7487571542,137141.29596336838,3238.7468,1457.8036016024305,3346961.273342524,1486929.525005672,1373.20347,594.0828069482262,1415609.809082174,601989.0526005193,2226.07274,922.6085741961758,2283468.145548732,928076.2093996792,0.38264,100000,0,384522,4015.9690019634872,0,0.0,0,0.0,21701,225.96816643689684,0,0.0,26145,269.509545891298,2041583,0,73312,0,0,0,0,0,52,0.5430922839119354,0,0.0,0,0.0,0,0.0,0.07224,0.1887936441563872,0.3118770764119601,0.02253,0.3206399576887478,0.6793600423112521,25.20828246890945,4.55818211050139,0.3340459647247461,0.1997149474434348,0.2303580972741849,0.235880990557634,11.173043409438163,5.58472938813229,23.963290717845176,12996.802860924156,63.32602558701804,13.15859276719578,21.15295225733263,14.50761531459212,14.506865247897508,0.5487261713878496,0.7582515611061552,0.6853333333333333,0.6071152358855375,0.120845921450151,0.7018181818181818,0.904899135446686,0.8491379310344828,0.7389830508474576,0.1449814126394052,0.499056158565361,0.6925064599483204,0.631467044649185,0.5681362725450901,0.114691943127962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024214056310345,0.0049283063256738,0.007197238858999,0.0094394261154068,0.0114236305376125,0.0137796879455737,0.0158974568147982,0.0181838601649922,0.020296315988589,0.0226509379864012,0.0245713348100746,0.0266966606062473,0.0287651361611506,0.0306262301501427,0.0323249837446202,0.0345105661469749,0.0362324093154259,0.0380976095617529,0.0401230718057461,0.0422586558893379,0.056953172300048,0.0703674255105457,0.0843602193952995,0.0972328856448712,0.1102567348058139,0.1254680063458487,0.1384453803800087,0.1515761234071093,0.1645493883220257,0.1755610598213615,0.1895233377129687,0.2027313652497619,0.2146897572012879,0.2253396337861783,0.2364224636006471,0.2478923170664155,0.2589300668847772,0.269060263738242,0.2780425261533574,0.2870167802531355,0.2946325197980827,0.3023903403573225,0.3096447301440731,0.3168753898565328,0.3236133892230119,0.3297815926104061,0.3358346382712183,0.34097074518894,0.3460686097899197,0.3517193112190999,0.3521645313553607,0.3529752305338461,0.353570673246387,0.3535445601851852,0.3538466114424235,0.353564473341205,0.3523022769074649,0.3532447892695114,0.3543464515798287,0.3558701706777119,0.3579126914209668,0.3589596745527074,0.3600460926042321,0.3608388165256703,0.3632356129405246,0.3640256959314775,0.3661055634807418,0.3685618097725199,0.3702650517816395,0.373352390026997,0.3737883959044368,0.3739867549668874,0.3733308138070043,0.3745258686087088,0.3757019842755522,0.3741690408357075,0.3729383017715333,0.3760786674693959,0.3883733624454148,0.3873348873348873,0.0,2.441608048061549,60.56360994990497,212.7293956088886,323.6761147444571,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95759,41551,389.7492663874936,7145,73.35080775697324,5510,56.94503910859554,2196,22.53574076588101,77.32840490063373,79.68911843944852,63.31625382636724,65.06469779172649,77.06061896603121,79.42124648218642,63.21856930377695,64.9695715178211,0.2677859346025144,267.871957262102,0.097684522590292,95.12627390539308,86.88592,61.02696511833263,90733.94667864118,63729.74354194659,257.70631,160.8054326531032,268551.0395889681,167358.5904751545,275.65751,132.2601851926877,284147.34907423845,135186.3945162221,3169.38824,1421.4960265905356,3278457.293831389,1453153.9663013762,1336.22775,578.9007597696227,1379270.951033323,588403.2621159608,2158.41404,890.0517683797217,2218287.6596455686,899430.0219871134,0.3781,100000,0,394936,4124.270303574599,0,0.0,0,0.0,21858,227.65484184254225,0,0.0,25691,264.53910337409536,2029414,0,72887,0,0,0,0,0,49,0.5117012500130536,0,0.0,0,0.0,0,0.0,0.07145,0.1889711716477122,0.3073477956613016,0.02196,0.313031914893617,0.686968085106383,25.394357492816354,4.567304479719602,0.3288566243194192,0.2056261343012704,0.2352087114337568,0.2303085299455535,11.282453058795086,5.7287482577838,23.147082178844016,12891.335877156407,61.72062810823503,13.143223363107026,20.402734865491787,14.472728075203031,13.701941804433192,0.5482758620689655,0.766107678729038,0.6909492273730684,0.5879629629629629,0.1095350669818755,0.7198177676537585,0.9171597633136096,0.8390022675736961,0.7542087542087542,0.1825726141078838,0.4943954209396613,0.7018867924528301,0.6433260393873085,0.5385385385385385,0.0924124513618677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786933919722,0.0045639870991298,0.006883807821955,0.0092888066830626,0.0116884702244104,0.0138323011734028,0.0160303475281448,0.0182341650671785,0.0203234578502934,0.0224988228550371,0.0247450156322074,0.0268497032671417,0.0287953269298011,0.0308180376161341,0.0328981992673236,0.0349685768626478,0.03706809100884,0.0392122293205011,0.0414315553200112,0.0433677720379936,0.0576065967329471,0.0717886501976697,0.0850773812020299,0.097584561374004,0.1093491523280685,0.1242192041431062,0.13783998727533,0.1502612730542873,0.1629213483146067,0.1745102454402161,0.1879543765549775,0.2005214813532549,0.2122389033942558,0.2240023621788913,0.2347690174021199,0.2458575162819547,0.2559325817613573,0.2652813112096719,0.2739433580886193,0.2829241455195653,0.2911679592545433,0.2983326507927221,0.3058036243041573,0.3123102219128431,0.3190087066491561,0.3257104795737122,0.3324426714837674,0.3383093456395089,0.3434855956397612,0.3487148992401718,0.3490847283862351,0.3499545316762655,0.3502272278205888,0.3510722910731587,0.352097376605211,0.3518711816535167,0.3522700223749147,0.3533413497175048,0.3533917036478591,0.3542353447040275,0.3545551862076737,0.355314258540065,0.3561287616650938,0.3561025963243049,0.3564688563361247,0.3572792674950948,0.3582281740921967,0.3605487228003784,0.3641894981183836,0.3651179470832005,0.3703416149068323,0.3712301902793237,0.3738857501569366,0.3780950934224518,0.3786837397608511,0.3832958712883,0.3797061524334251,0.381587041213861,0.3776223776223776,0.3856803797468354,0.0,2.3145507586973517,57.77175392836428,207.48753401848649,321.1775348360141,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95739,41665,391.6585717419233,7129,73.33479564231922,5581,57.80298519934405,2270,23.39694377421949,77.31464774318667,79.68021922071647,63.30648041847581,65.05582646275457,77.03160851647777,79.39339999305571,63.20292009465305,64.9529223215375,0.2830392267088939,286.8192276607573,0.1035603238227551,102.90414121706704,85.6427,60.24592115900612,89454.3498469798,62927.25133854138,256.60113,159.8438843095065,267538.32816302654,166474.76400370436,277.78007,133.47174392448147,286561.75644199335,136769.3154770219,3236.22608,1466.0656259896266,3353462.3507661456,1504566.5154448512,1370.00312,595.602898640747,1420815.8221832272,611988.504006465,2246.73622,935.961136387898,2317956.026279781,954671.8886464456,0.37872,100000,0,389285,4066.1068112263542,0,0.0,0,0.0,21660,225.7387271644784,0,0.0,25937,267.34141781301247,2034446,0,73000,0,0,0,0,0,40,0.4178025673967766,0,0.0,0,0.0,0,0.0,0.07129,0.1882393324883819,0.3184177303969701,0.0227,0.3204530313124583,0.6795469686875416,25.37401424072516,4.602563418642109,0.3262856118975094,0.1974556531087618,0.2338290628919548,0.2424296721017738,11.045252958778836,5.392738801325795,24.208044950960257,12917.359661430828,62.98627460578937,12.890954180150036,20.71563430128583,14.439194254573009,14.940491869780493,0.5393298691990682,0.7667876588021778,0.6946732564524987,0.5800766283524904,0.1056910569105691,0.7014716187806588,0.9005681818181818,0.8849206349206349,0.7093425605536332,0.1170212765957446,0.4836302359171882,0.704,0.621867881548975,0.5433070866141733,0.1027077497665732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0045624600784743,0.0069124423963133,0.0091352504826745,0.01109924207742,0.0131525327030441,0.0154660735964742,0.0176635151416144,0.0197902398135465,0.0218869006183203,0.0241559267119846,0.0262652606503681,0.0282460886470473,0.0302833590932509,0.0324115649418346,0.0343840133979799,0.0366577265996334,0.0386842378333506,0.0406459260491619,0.0427761803558778,0.0577063626302491,0.0717156493343381,0.0850581706408736,0.0978526058974466,0.1103741353129745,0.126368569705817,0.1397034631345453,0.1522630239664406,0.1643222096329392,0.1755282049080939,0.1888479123533471,0.2019631848665749,0.213714596949891,0.2244468553769273,0.2348115641608044,0.2458692369192502,0.256133442223142,0.2655446259362873,0.2749800887472977,0.2834984029229956,0.292255400106726,0.2999343431974863,0.306912136273591,0.3134195702566689,0.3209401917368242,0.3274989507986274,0.3336005410957188,0.3388086688568009,0.3437508094806372,0.3483063036908987,0.3493216205656081,0.3499277207957596,0.3506233711347468,0.3513794898490369,0.3524674358020097,0.352613486387772,0.3521922722798997,0.3530942265257056,0.3543502863609863,0.3553852215337225,0.3556508169289488,0.3562138155285907,0.3564817729648051,0.3577350542260464,0.3590658215034585,0.3589267986833168,0.3603139141891505,0.3625922887612797,0.3635339669130588,0.3670855774985039,0.3719277329420396,0.3732676975761143,0.3733086545825887,0.3758788534342888,0.3776504297994269,0.377496991576414,0.3806703039750584,0.3829742731646099,0.3782485875706214,0.3760921366163622,0.0,1.9107775021564517,63.48538684256777,203.82149702438804,320.87546837446047,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95814,41800,392.0512659945311,7174,73.68443025027658,5604,57.90385538647797,2243,23.034212119314507,77.3504688262772,79.68169675036378,63.33176974345843,65.05955581026693,77.07146529318364,79.40367854686717,63.22861685627176,64.95961302757564,0.2790035330935581,278.01820349661455,0.1031528871866669,99.94278269128642,85.88162,60.41858839895507,89633.68610015238,63058.204854149786,257.5568,160.41781898126146,268199.52199052327,166817.48080826676,282.10844,135.17926446196694,291032.4169745548,138523.01482438494,3223.60016,1452.2655613616344,3333137.6625545328,1484463.377410272,1357.27441,590.4552283484511,1401156.9081762582,600864.8009202778,2211.22514,925.84653249787,2273099.129563529,936023.8844947738,0.37928,100000,0,390371,4074.258459097836,0,0.0,0,0.0,21715,226.02124950424783,0,0.0,26213,270.117101884902,2033916,0,73094,0,0,0,0,0,60,0.6262132882459767,0,0.0,0,0.0,0,0.0,0.07174,0.1891478591014554,0.3126568162810147,0.02243,0.3249406802003691,0.6750593197996309,25.34264946012453,4.5752339396563775,0.3361884368308351,0.2025339043540328,0.2310849393290506,0.2301927194860813,11.06208074779044,5.438763980733938,23.9258135310588,12888.181456787708,63.01706488581317,13.277903760347131,21.255404231821885,14.34008118293792,14.143675710706232,0.5433618843683083,0.7682819383259912,0.6863057324840764,0.5768339768339769,0.1031007751937984,0.6924177396280401,0.925414364640884,0.8100208768267223,0.7323943661971831,0.1355311355311355,0.4938183547313362,0.6946959896507116,0.6441281138790036,0.533135509396637,0.0943952802359882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312660818121,0.0048365999817486,0.0071754795493758,0.0095099722625809,0.0118091014504546,0.0140860850257684,0.0162561827545765,0.0184625439098112,0.0204490613880822,0.0225723235673484,0.0247531351578601,0.0268111105406376,0.029041248033237,0.031101956745623,0.0331569774037519,0.0355847617866774,0.0376071384207693,0.0395390567466368,0.0415908878334701,0.0435371033563754,0.0587940746922595,0.0727601601789989,0.0862990442655935,0.0987118601328065,0.11055504045853,0.1261361234411329,0.1394078849702033,0.1517504760486367,0.1630367475925095,0.1737965622186977,0.1871011482625399,0.1997686411451182,0.2121742153465077,0.2226254632109399,0.2331686599843762,0.2441597588545591,0.2551994373555711,0.2647763982845758,0.2737680155368033,0.2823312405480959,0.2910179086162787,0.2989903008037814,0.3065904274839885,0.3125104893428277,0.3191936876147402,0.3249821045096636,0.3305667001003009,0.3365555059618695,0.3419229272090307,0.3476029888249686,0.3482300825196169,0.349121983544094,0.350059348858241,0.3501949473134956,0.350937830549886,0.351347615756738,0.3507395110172049,0.3508922245472969,0.3524191337719298,0.3537915838125436,0.3544389364578639,0.3558654017547681,0.3561781941148054,0.3570787323817219,0.3579316177358946,0.3582984293193717,0.3590139115034136,0.3622412000126052,0.3637991573033708,0.3662353175393191,0.3681859617137648,0.3697385204081632,0.3711619696109955,0.373201370384469,0.3769485120453472,0.3806650100579813,0.3849801162434995,0.3880355699272433,0.3956403269754768,0.4027617951668584,0.0,2.2262644175179616,61.6874907975089,205.1962121651729,325.8921224624545,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95711,41692,392.4836225721182,7166,73.56521194011138,5610,57.94527274816897,2302,23.64409524506065,77.30949638025908,79.66885899460196,63.31695901961641,65.05917627263109,77.02642550511516,79.38698089499418,63.21264188221807,64.95854226499927,0.2830708751439204,281.87809960778054,0.1043171373983398,100.63400763182528,85.41896,60.08550671379415,89246.75324675324,62778.05760444896,256.31597,159.2310810642254,267089.74934960454,165657.85776102808,279.50747,133.27430569626466,287894.24413076864,136128.55945985197,3212.13356,1449.1673784723737,3317815.883231812,1476431.2314696978,1343.8527,584.2483674267944,1387995.9356813745,594511.801854329,2262.62504,941.8304235590138,2325905.841543814,950466.8083608806,0.37853,100000,0,388268,4056.670602125148,0,0.0,0,0.0,21617,225.16743112076983,0,0.0,26015,267.65993459476965,2037081,0,73190,0,0,0,0,0,57,0.5850947122065384,0,0.0,0,0.0,0,0.0,0.07166,0.1893112831215491,0.3212391850404689,0.02302,0.3131940772078265,0.6868059227921735,25.30554305312681,4.520182038589244,0.3219251336898395,0.203030303030303,0.2429590017825312,0.2320855614973262,11.14136063319927,5.667855638018913,24.588924337736803,12839.893944266852,63.39318973275884,13.098579913712644,20.509005774297123,15.3905999427771,14.395004101971969,0.5459893048128343,0.742756804214223,0.6926910299003323,0.5920763022743947,0.1221198156682027,0.6860294117647059,0.9041533546325878,0.8517699115044248,0.7089783281733746,0.1323529411764706,0.5011764705882353,0.6815980629539952,0.6395864106351551,0.5557692307692308,0.1194174757281553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019140985001164,0.0044197550888005,0.0063813813813813,0.0083895344113106,0.0102882122706247,0.0126823210886846,0.0147785761606278,0.0168526136352036,0.0192858018887208,0.0214305451791507,0.0239137342531186,0.0260796352958087,0.0282570694087403,0.0303801118400049,0.03234190008663,0.0343744511143025,0.0363371040021527,0.0385704359008929,0.0403064035005664,0.0422526407900493,0.0570494679351288,0.0710375650244397,0.0847091401120224,0.0968525548673403,0.1088953335090957,0.1236898604985669,0.1370075231051643,0.1492718446601941,0.1612682676694299,0.1728146178261988,0.1862469431067731,0.1997899682787142,0.2121472646345046,0.2234273081469159,0.2337311986610583,0.2449307657343045,0.2561748047856831,0.2659358734593632,0.2749108096439203,0.2828676580181378,0.2907899155771213,0.2982359620269463,0.3052616613153561,0.3118998463606683,0.3191409147846814,0.3249027957785595,0.3307982408880758,0.3366813674254977,0.3423910927706622,0.3473444592967085,0.3480762218590895,0.3488115438204417,0.3493265874305742,0.3502984469170144,0.3512627090849459,0.3510908168442415,0.3502378944353388,0.3509486883352582,0.3518079329071286,0.3532827556450453,0.3539166855331673,0.3565362994857075,0.3575637262148635,0.3593380081621609,0.3605219039288578,0.3622175512348923,0.362630395942597,0.3632385120350109,0.3638936049801924,0.3664739884393063,0.3660624370594159,0.3659735955957026,0.3686008985635639,0.3729696598222494,0.3733055265901981,0.374850870913863,0.3754641089108911,0.3803578859758635,0.3867634738899748,0.3901205756514975,0.0,2.560732081569894,59.774142950841096,216.62974827638547,322.09162549562524,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95729,41980,395.0213623875733,7101,72.84104085491335,5513,56.9419924996605,2242,22.960649333012984,77.40440741590693,79.76286923294163,63.3594678928421,65.09969824218452,77.12913343889909,79.4900565244929,63.258464890962,65.0030730960826,0.275273977007842,272.8127084487255,0.1010030018800947,96.62514610191408,85.88646,60.43091819032894,89718.32986869183,63127.07558872331,256.96124,159.92047133130248,267776.1597843914,166406.0412194875,279.29266,133.800337664277,288368.4045587022,137041.1905531498,3192.30796,1435.5414829049205,3296188.53221072,1461052.6028455163,1365.46265,593.2589849820254,1405942.932653637,599302.3653465442,2221.15846,919.6419347761944,2276166.887776954,921348.5175627487,0.38018,100000,0,390393,4078.105903122356,0,0.0,0,0.0,21755,226.56666213999935,0,0.0,25969,267.9229909431834,2038610,0,73031,0,0,0,0,0,49,0.5014154540421398,0,0.0,0,0.0,0,0.0,0.07101,0.1867799463412068,0.3157301788480495,0.02242,0.313211082853701,0.686788917146299,25.285230453421843,4.605855844334462,0.3203337565753673,0.2033375657536731,0.2343551605296571,0.2419735171413023,11.222382097048929,5.602077188309927,23.66225510894297,12895.98442368932,61.72954677340274,13.053285008954107,19.898099206026533,14.248078191848895,14.5300843665732,0.5470705604933793,0.7814451382694023,0.6947904869762175,0.5743034055727554,0.1281859070464767,0.7122676579925651,0.925925925925926,0.860730593607306,0.7206896551724138,0.1766917293233082,0.4937619961612284,0.7155844155844155,0.6400602409638554,0.5319361277445109,0.1161048689138576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470460781435,0.00449961996453,0.0066853328463895,0.0089168740161478,0.0111231990889957,0.0132227198697068,0.0153579617834394,0.0176627246104711,0.0199852869053457,0.0222460987464824,0.0242182615736233,0.0263260530421216,0.0281895754086563,0.0303951054713249,0.0326468281811052,0.0346606297421902,0.0368149620976761,0.0387144961513724,0.0406460128246432,0.0426540284360189,0.0567580266249021,0.0705905746669317,0.0833648036253776,0.0960667010125011,0.1087194839144917,0.1245373601505826,0.1370585302199259,0.1497939933353916,0.1620354048481352,0.1734099707248024,0.1866929447621509,0.1999653720877384,0.2124768845860981,0.2234981462646412,0.2352662852112676,0.2465556195454746,0.2567012610199754,0.2659911834825244,0.2758010548403561,0.2845973327227978,0.2925199944524063,0.3006363477144024,0.308200089747526,0.3149710761581489,0.3210269955895894,0.3266849476777787,0.3324376343548468,0.3385113679664677,0.3437641371644241,0.3489909029871378,0.3500846069135935,0.350157945337179,0.3503593176480515,0.3513092404241506,0.3514731831729414,0.3508227306092488,0.3504833325422817,0.3509928345385082,0.3518799815671349,0.3525676471112855,0.3547249779644806,0.3563063509362925,0.3579684910528855,0.3603972354559485,0.3611211355707927,0.3621288486146293,0.3616887926613868,0.3633216904244941,0.3673039077874613,0.3688984365676095,0.370845507669832,0.3705621696652608,0.3725093301284078,0.3758312313689521,0.3816607041988326,0.3854821492112442,0.388605047220932,0.3862985685071575,0.3942199775533109,0.3957497995188452,0.0,2.472039999006418,58.8893611577129,203.94602170480465,320.5553513331956,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95754,41638,391.3883493117781,7072,72.72803224930551,5472,56.624266349186456,2175,22.338492386741024,77.33232137485312,79.69712519309452,63.31916690730778,65.0706218667118,77.06899328038165,79.43454094760764,63.22295148954287,64.97735750408157,0.2633280944714755,262.5842454868774,0.0962154177649097,93.26436263023652,85.64446,60.23173553932275,89442.17473943646,62902.57904559888,254.33212,157.94295928924467,265085.21837207844,164421.89286008384,275.27945,132.0350248111781,284320.50880380976,135433.34205274505,3146.56676,1411.37073793914,3257840.8003843185,1445701.33669522,1359.25236,588.8851453363077,1407131.576748752,602622.9329823576,2144.1607,885.9058256163511,2205072.205860852,896010.9589820227,0.37871,100000,0,389293,4065.553397247112,0,0.0,0,0.0,21530,224.28305867117825,0,0.0,25630,264.54247342147585,2038873,0,73174,0,0,0,0,0,50,0.5117279695887378,0,0.0,0,0.0,0,0.0,0.07072,0.1867391935781996,0.3075509049773756,0.02175,0.3216453135536075,0.6783546864463924,25.349895765255237,4.592823880382016,0.3245614035087719,0.2081505847953216,0.2335526315789473,0.233735380116959,11.134240490216914,5.489236278304089,23.035915088466748,12863.142080051366,61.442672779293126,13.304564523751653,20.05836334294064,14.160234775633873,13.919510136966943,0.5484283625730995,0.7576821773485514,0.6987612612612613,0.5954616588419406,0.106333072713057,0.7148120854826824,0.9177718832891246,0.8422222222222222,0.7446043165467626,0.1507936507936507,0.4935601458080194,0.678477690288714,0.6500754147812972,0.554,0.0954235637779941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021484454173253,0.0045238312590654,0.0067419381041345,0.0090047971379786,0.0112415561162203,0.0133454223163985,0.0154095618830056,0.0176316246209762,0.0198251623127651,0.022092547092547,0.0243574892103293,0.0264049442539473,0.0285761293175251,0.03061981172884,0.0325199896827443,0.0344175374406995,0.0364169151756129,0.0384276214090819,0.0405295865982167,0.0424521423959005,0.0567897110405879,0.0706774784200889,0.0835500922973653,0.0961158310901749,0.1080827464046223,0.1238643214485917,0.1367137764196587,0.1483602456704312,0.1604562493992502,0.1714971960412176,0.1857659831121833,0.1984828645940418,0.2106591529683097,0.2223814315715785,0.2335211391597156,0.2446956945428774,0.2546030754123239,0.2649375492292112,0.274204529980482,0.2830849930709058,0.2911251779246178,0.2995542660598757,0.3067647998485404,0.3133434002061312,0.3190292842307272,0.3261110700288397,0.3320402928111118,0.3376658061070061,0.342968142968143,0.3486331732545253,0.3496109001804131,0.3502429088506902,0.3513768575251778,0.3525672512930162,0.3533809998067575,0.3531476032855216,0.3527311391119433,0.3532273706010947,0.3540018116251645,0.3546407614140546,0.3552822133197916,0.3567020537751761,0.3574854834637718,0.3588724168912848,0.3587592476185871,0.3609008773078433,0.3615074486032082,0.3639384732244587,0.3660550458715596,0.3677065395859196,0.3694396037787765,0.3726564598442116,0.37426714249299,0.376797109248866,0.3795799189978336,0.3815540859707133,0.3855861334955147,0.3886883273164861,0.3932951757972199,0.3951089033244173,0.0,1.956007180773279,60.0964276138539,201.6034387053481,316.8382136561753,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95735,41959,394.02517365644746,7161,73.6407792343448,5577,57.77406382200867,2281,23.460594348984174,77.41699606751023,79.77009285605855,63.36600846061516,65.10066155617989,77.14506626354458,79.49779713428849,63.26684306379079,65.00370442738668,0.2719298039656479,272.2957217700639,0.0991653968243753,96.95712879320696,85.99954,60.48134706446511,89830.5948712592,63175.60329098448,257.0933,159.90218606426376,268013.756724291,166494.8541995446,279.97806,134.03299280521054,289312.79051548545,137520.2144777009,3217.0228,1444.0445031422323,3331505.6771295764,1480028.3491197866,1359.46673,590.3093043167138,1403357.163002037,600176.2351904644,2244.6275,924.2901961463448,2309358.4373531104,935362.5340109856,0.38167,100000,0,390907,4083.208857784509,0,0.0,0,0.0,21822,227.39854807541653,0,0.0,26065,269.22233248028414,2036548,0,73067,0,0,0,0,0,51,0.5327205306314305,0,0.0,0,0.0,0,0.0,0.07161,0.1876228155212618,0.3185309314341572,0.02281,0.3133756278086175,0.6866243721913825,25.446114630564125,4.577201796637224,0.3363815671507979,0.197776582391967,0.2305899228976152,0.2352519275596198,11.189073081389344,5.616408736109952,24.024678677001788,12961.68864567836,62.734251299651056,12.99613968637516,21.13780051487078,14.279287498799548,14.321023599605564,0.5492200107584723,0.7932910244786945,0.6871002132196162,0.583203732503888,0.1135670731707317,0.7139722019019751,0.9243243243243244,0.8625277161862528,0.734982332155477,0.1406844106463878,0.4957244655581947,0.7271487039563438,0.631578947368421,0.5403788634097707,0.1067683508102955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026822405311848,0.00470068585438,0.006897111327491,0.0089866875171356,0.0110724743777452,0.013233168427696,0.0155644799608594,0.0179016125739946,0.0201831299691376,0.0225889285604673,0.0248186252408082,0.0268170528951743,0.0290096424679783,0.0309468394059854,0.0328783799118979,0.0349591815645344,0.0372513899386045,0.0390607173232103,0.0411881476246401,0.0432957256409455,0.058117195004803,0.072060100656043,0.0852164243301651,0.097827230086448,0.1099497975025312,0.1254984082664382,0.1383246173266434,0.1509861733493704,0.1625929407742928,0.17358154697436,0.1877961064691188,0.2004262546925881,0.2130917706386123,0.2243460215171208,0.235612735942341,0.2474554144355445,0.2582230792380485,0.2675852148211416,0.276824180309283,0.285661975054354,0.293868066313672,0.3013893920095353,0.308267032356453,0.3156432941063796,0.3219664332609249,0.3280218697665255,0.3335291911488936,0.3394266827687027,0.3452628855978788,0.3501667963238881,0.3511000470968176,0.3514479799785484,0.3524481631733153,0.3532169157539895,0.3539404397108261,0.3541366520552984,0.3539510744010886,0.3540795407954079,0.3557690666757684,0.356362404862485,0.3574235562708185,0.3579745036902553,0.3594738385488668,0.3609710384220626,0.361619269693983,0.3631384005425426,0.3634860921112631,0.3659976758064009,0.3678358470712031,0.3703689012296707,0.3706700609146286,0.3726935312831389,0.3728994231251568,0.3740178503318331,0.3725673652694611,0.3728095966129601,0.3693501750114137,0.3724939855653568,0.3709150326797386,0.3723564954682779,0.0,1.7888291816350268,60.81782244533046,214.98887296955317,314.0189205711424,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95688,41938,394.5635816403311,7198,74.06362344285594,5619,58.063707047905694,2309,23.64977844661817,77.3508434030137,79.74146005598554,63.31502979323547,65.0828100792465,77.07496880852652,79.47021852711848,63.21281505071455,64.98627514933267,0.2758745944871776,271.24152886706554,0.1022147425209141,96.5349299138296,85.3468,60.0413037518469,89192.79324471198,62746.95233660114,255.75725,158.63717099060034,266630.2566675027,165133.64370725726,280.65231,133.92152006777263,289950.5476130759,137314.15408588946,3245.21984,1455.6475434279778,3354854.8616336426,1484638.8506688173,1362.88835,589.0322978860523,1405132.5558063707,596405.1590465067,2277.0866,937.1685979318491,2334772.343449544,938931.1750952352,0.38118,100000,0,387940,4054.2178747596354,0,0.0,0,0.0,21581,224.866231920408,0,0.0,26127,269.66808795251234,2038873,0,73161,0,0,0,0,0,52,0.5434328233425298,0,0.0,0,0.0,0,0.0,0.07198,0.1888346712839078,0.3207835509863851,0.02309,0.3157755426151403,0.6842244573848597,25.364964734985165,4.6061196972899126,0.3237230823990034,0.199145755472504,0.2407901761879338,0.2363409859405588,11.350902158324608,5.702168892017204,24.22831277887404,12984.327176766865,62.99364639475904,13.002999046625083,20.55381505810138,15.112168355315292,14.324663934717265,0.5484961736963873,0.77390527256479,0.7064321055525014,0.5809312638580931,0.1091867469879518,0.7152466367713004,0.9373219373219374,0.872093023255814,0.6878980891719745,0.1522633744855967,0.4963793506190142,0.69921875,0.6551475881929446,0.548604427333975,0.0995391705069124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481842033287,0.00463437141901,0.0070551929265346,0.0092893731197658,0.0117398115933182,0.0138342739552983,0.0159646635179385,0.0182711358947647,0.0203720559208844,0.0227873251264824,0.0250743513485796,0.0273412625048787,0.0293657814075003,0.0315272154050629,0.033644319682959,0.0354381176859777,0.0373697188205797,0.0391011002698775,0.0408292764116007,0.042895861565725,0.0577630149578006,0.072240837696335,0.0856060128907644,0.0981945584243419,0.1111556558985504,0.1266043785116446,0.1399832266420374,0.1522845883480668,0.1640404515522107,0.1744743874561319,0.1888596623617429,0.2020594668341382,0.2145663506851104,0.2261139873687897,0.2365934767767084,0.2471523795792065,0.257831782798557,0.2681600108115413,0.2774735263373176,0.285946925388197,0.2941898716582495,0.3007754843848839,0.3085758312096248,0.3151672987374586,0.3216383514331927,0.327784149063421,0.3336337125621096,0.3398920735121926,0.3449606380774808,0.3499372730274018,0.3514938251631343,0.352778351580252,0.3534244644870349,0.3528246790794495,0.3535062582589716,0.3535327251576562,0.3524830217353448,0.352579045867945,0.3530206391819565,0.3546439987856492,0.3555663897691687,0.3567193675889328,0.358593259367804,0.3600563216592539,0.3611785929043896,0.3621544079290558,0.3630113636363636,0.3660380910545637,0.367601683029453,0.3691797322380633,0.3708002720471548,0.3723980458793542,0.3735834802316797,0.3787867226249523,0.3796655012756307,0.3826408787010506,0.3851931330472103,0.384984984984985,0.3807838867719107,0.3792307692307692,0.0,2.5640878117931254,58.5293788045775,216.6676807124545,321.8643935490712,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95729,42053,394.1021007218293,7120,73.25888706661513,5552,57.48519257487282,2197,22.60548005306647,77.26691653433518,79.62764370888799,63.2951211478972,65.0393861016596,76.99876719161686,79.35878527575494,63.19667439995088,64.9430238686702,0.268149342718317,268.85843313304747,0.0984467479463191,96.3622329894065,85.06036,59.88042894073629,88855.37297997472,62552.02596991121,258.60235,161.11679430871044,269629.0570255617,167794.1316724404,279.77414,133.77777233295643,289267.13952929626,137324.8876138689,3188.98624,1439.5541035982185,3302073.7289640545,1474589.75190195,1366.85063,592.9917241906008,1410916.796373095,602531.7659127336,2160.86536,899.3220111078128,2224907.8544641645,910814.450835148,0.38178,100000,0,386638,4038.880589998851,0,0.0,0,0.0,21882,228.03957003624816,0,0.0,26011,268.7273449007093,2034862,0,73068,0,0,0,0,0,48,0.5014154540421398,0,0.0,0,0.0,0,0.0,0.0712,0.1864948399601864,0.3085674157303371,0.02197,0.3280118057418835,0.6719881942581164,25.55272079829659,4.562712713820477,0.3337536023054755,0.2067723342939481,0.232528818443804,0.2269452449567723,11.14488753716619,5.614663471967554,23.473113166032377,13025.359647341527,62.731722553296194,13.411116156103496,21.057691745462183,14.343915116648288,13.918999535082234,0.5565561959654178,0.7674216027874564,0.7037236913113869,0.5879163439194423,0.1158730158730158,0.7113553113553114,0.9322493224932248,0.8539823008849557,0.7236363636363636,0.1561338289962825,0.5060902794363507,0.6893453145057766,0.6552462526766595,0.5511811023622047,0.1049445005045408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0046436646422451,0.0071640215935381,0.0090815818612163,0.0114008502328987,0.0138779998574526,0.0159743106172587,0.0182317452863894,0.0208233237582163,0.0229589747789059,0.024940288868615,0.0270317440762186,0.0292865516319437,0.0314041755502683,0.0337150520994532,0.036074588604978,0.0381281777796187,0.040419130615209,0.0425341718205914,0.0443742902093166,0.0595482975013313,0.0733708735425258,0.0866239231035604,0.09950023672997,0.1114827084168548,0.1264536883207585,0.1400121020392997,0.1528015933030151,0.1651500732455812,0.1763468329701705,0.1899295000323394,0.2027022634435981,0.214651304612972,0.2261671393996473,0.2371544115216361,0.2488401003396452,0.2590969069398162,0.2683141205503532,0.2777790401745137,0.2861729329343102,0.2942695068302848,0.302009414740392,0.3092242441474742,0.3157073779441585,0.3223224927634939,0.3292318704645308,0.334633375553354,0.339911777454805,0.3449623474422228,0.349586711174694,0.3499939129140909,0.3510217625750076,0.3513758351262597,0.3522021702547438,0.3534502051473331,0.3533266671794477,0.3537572990087668,0.3548120884018023,0.3562888652214244,0.3573107916509628,0.3584543246144285,0.3594523161304425,0.3612459376187059,0.3617868797119388,0.3632705500206045,0.3639517464322321,0.3656458669122726,0.368647032631512,0.3705422482418877,0.3730171576561994,0.3739935215178158,0.374972972972973,0.3742884553885513,0.3755969804344476,0.3795037551098013,0.3802295003585943,0.3827559661277906,0.3904374364191251,0.3904603438713255,0.3856920684292379,0.0,2.028447041096918,60.59349848631243,212.56969895022732,317.2471852893885,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95695,41587,390.6578191128064,7135,73.37896441820368,5565,57.495166936621565,2305,23.72119755473118,77.288290147924,79.65668834562749,63.294707477804174,65.04346363756592,77.00201582593762,79.36978277776774,63.19014889313914,64.94112096519096,0.286274321986383,286.90556785974763,0.1045585846650354,102.34267237495942,85.89152,60.43652869600515,89755.49401745129,63155.36725639286,257.98907,160.91301650409395,268870.1708553216,167427.2267208965,277.69301,133.19737807420253,285547.79246564605,135645.27415755016,3194.9748,1447.1389142403334,3305083.9019802497,1478631.7572259696,1318.4218,576.4076369392955,1363021.5789748682,587654.3335205569,2269.22724,944.4373889299408,2337839.908041172,957946.5087576124,0.37806,100000,0,390416,4079.795182611422,0,0.0,0,0.0,21884,228.00564292805268,0,0.0,25901,266.0222582162078,2029409,0,72900,0,0,0,0,0,52,0.5329432049741366,0,0.0,0,0.0,0,0.0,0.07135,0.1887266571443686,0.3230553608969866,0.02305,0.3125585127725023,0.6874414872274976,25.205520986473715,4.489022851753495,0.3232704402515723,0.2098831985624438,0.2323450134770889,0.2345013477088948,10.97454108763191,5.5003164435766045,24.627456382066768,12845.792828467054,62.911193687786806,13.717902909880197,20.306324086080338,14.522804724736169,14.364161967090103,0.5487870619946091,0.7517123287671232,0.708171206225681,0.588553750966744,0.1080459770114942,0.6955287437899219,0.8842105263157894,0.8623853211009175,0.7443365695792881,0.1338028169014084,0.4990375360923965,0.6878172588832487,0.6588407923697726,0.5396341463414634,0.1008814887365328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166914795572,0.0044302065064222,0.0066160652676868,0.0090513825961518,0.0112582377349279,0.0132879878626195,0.0155482147590791,0.0178022763231766,0.0200145151233274,0.0220436985109757,0.0242995060159468,0.0264108722875736,0.0283975242129505,0.0305349014438425,0.032284016833072,0.0343106352634788,0.0365488750608285,0.0386974253603561,0.0408029538717562,0.04302195912497,0.0575659784232018,0.071977469743289,0.0845349789056104,0.0973774494327629,0.1094162356170167,0.1247591216144675,0.1379588629437312,0.1503942041338163,0.1618460025021118,0.1732346877416029,0.1862228117282952,0.1994691511835762,0.2110255600448689,0.222049485439019,0.2324866722474335,0.2440832177531206,0.2546349099854635,0.2639781672192525,0.2733406916013336,0.2824126721573222,0.2903783457669594,0.2981898382233902,0.3054632223752315,0.3119274877984276,0.3189656222961528,0.3254853468529739,0.3310917820960808,0.3368882190661081,0.3422797846609971,0.3476469341247549,0.3485560688332388,0.349797593224554,0.3501054747780782,0.3505198048553839,0.3508837459473188,0.350715494691491,0.3506208563206512,0.3515264407226691,0.3523865139206155,0.3539201781001454,0.3551798235693282,0.3554844988182956,0.356027232679215,0.3561828258576974,0.3581791016001542,0.3597191773671573,0.3594625500285878,0.3614499715567916,0.3638836872416351,0.3652146085843433,0.3693079791887287,0.3683729924262771,0.3712347009956243,0.3704528012279355,0.3721673718852844,0.3764831514000949,0.3772775991425509,0.3779495524816924,0.3791780821917808,0.3853491033956505,0.0,2.5141456572661984,62.02530268825605,209.62875412147915,315.2437164271399,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95822,41959,393.9700695038717,7080,72.55118866231136,5477,56.51103086973764,2314,23.741938177036587,77.36488025655099,79.6821212631181,63.35773544642036,65.07227868473133,77.07808331252453,79.39437221581635,63.25231532375249,64.9692229391319,0.286796944026463,287.7490473017588,0.1054201226678657,103.05574559943408,85.88008,60.42956499399657,89624.59560434974,63064.39543528269,254.87844,159.28169378612037,265311.7133852351,165546.7886144313,279.7298,134.6037568875856,288040.0116883388,137453.68590203594,3174.12524,1442.174358576396,3275655.820166559,1468188.973906197,1375.57801,601.4278709772315,1419099.2673916218,611194.8831972105,2287.14052,954.9771992492598,2348109.5990482355,962919.1716360726,0.38062,100000,0,390364,4073.845254743169,0,0.0,0,0.0,21527,223.95692012272755,0,0.0,25985,267.3707499321659,2038563,0,73175,0,0,0,0,0,48,0.4904927887124042,0,0.0,1,0.0104360167811149,0,0.0,0.0708,0.1860122957280227,0.3268361581920904,0.02314,0.3204628010224674,0.6795371989775326,25.331723362359764,4.532290941214556,0.3335767756070841,0.1959101698009859,0.2200109549023187,0.2505020996896111,11.101200474543653,5.621330340478852,24.709829207674343,12937.126680872036,62.13904989488872,12.498306406565687,20.77318410128057,13.573437969403413,15.294121417639046,0.534964396567464,0.7595526561043803,0.6912972085385879,0.5825726141078839,0.1093294460641399,0.6942628903413217,0.9410029498525072,0.865296803652968,0.7703180212014135,0.1261829652996845,0.4814634146341463,0.6757493188010899,0.6364290856731462,0.5249457700650759,0.1042654028436018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026435733819507,0.0048866539600145,0.0068999107070379,0.00920245398773,0.0113075929673279,0.0136541359508003,0.0159636282085261,0.0180492884415133,0.0201893195943735,0.0223757612979169,0.0246279670397245,0.0267233151688679,0.028869772556758,0.0309280472617614,0.0330265016028779,0.0351402409439552,0.0371013953103505,0.039268507485883,0.0411288899041606,0.0430114239340782,0.0573148090201723,0.0703355283788021,0.0837872946697955,0.0972748752953531,0.1100801482901347,0.1255966209081309,0.138681414147835,0.1510657524052517,0.1627691125952162,0.174311238699173,0.1876728098204391,0.2005145834684655,0.2131480596236582,0.2240193080552158,0.2348842831710587,0.2464059804485336,0.2571463583093821,0.2664802461649035,0.2761237132082309,0.2845593532378132,0.2931303353394402,0.3002032187989068,0.30729031190144,0.3146946884649448,0.3212676278742089,0.3275921545436625,0.3337252939704778,0.3390095635364737,0.3445133396331439,0.3495167394084837,0.3508946723573842,0.3514194454387752,0.3519425353861786,0.3515396425364271,0.3531700481507431,0.353158080722725,0.3527485454487648,0.3533942472621718,0.3537417303892087,0.3548190065570825,0.3554153125236188,0.3551133531393934,0.3561319758354104,0.356991477657032,0.3599458728010825,0.362272858379002,0.3627049766763014,0.3665095384226011,0.3670594896839721,0.3677598041183318,0.3714022140221402,0.3745148771021992,0.376555883485179,0.3812776527206396,0.3839961667465261,0.3893294881038212,0.3957750854302578,0.3943400123941334,0.3943032672437866,0.3913214990138067,0.0,2.48098568319787,60.540084988094286,210.77324869456407,309.37640690591235,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95633,42228,396.4531071910324,7102,72.9664446373114,5516,57.05143621971496,2276,23.381050474208696,77.2563444549925,79.66670971056845,63.27473565930678,65.05568945121541,76.96766927075063,79.37729975657331,63.16857180863729,64.95195222493294,0.2886751842418675,289.4099539951469,0.106163850669489,103.73722628247606,85.28916,60.00995396154717,89183.5872554453,62750.05405783463,254.81224,159.0923324828435,265792.6343417021,165702.8521665286,280.35017,134.62490684737486,289334.71709556325,137841.67823545294,3168.57608,1441.480659738695,3279458.3877950083,1473592.5731606183,1350.2956,596.4817578586682,1396592.7138121778,608407.3554788108,2230.12214,933.9622083511118,2293019.961728692,944316.5288693,0.38374,100000,0,387678,4053.7994207020593,0,0.0,0,0.0,21537,224.5145504166972,0,0.0,26091,268.9866468687587,2031918,0,73053,0,0,0,0,0,59,0.6064852090805475,0,0.0,0,0.0,0,0.0,0.07102,0.185073226663887,0.3204731061672768,0.02276,0.3210470085470085,0.6789529914529915,25.268425774570144,4.526156057031105,0.3219724437998549,0.2055837563451776,0.2414793328498912,0.2309644670050761,11.16024386111671,5.719054183794545,24.355501716622765,13061.272577303302,62.68969474987716,13.410005743719262,20.364262191102245,14.727335458072474,14.188091356983186,0.5540246555474981,0.7663139329805997,0.7207207207207207,0.5780780780780781,0.1075353218210361,0.6999282124910265,0.902439024390244,0.8593073593073594,0.737410071942446,0.1408450704225352,0.5047295658501092,0.7006535947712418,0.6719939117199392,0.5360531309297912,0.0979797979797979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661366283486,0.0043481345590545,0.0065659282111651,0.0089705688133044,0.0116186794180486,0.0139258172631235,0.0161579892280071,0.0183599656708488,0.0205797516519035,0.0229372835863708,0.0253858151370875,0.0275414148888066,0.0297315104595618,0.0319407786209171,0.0338722173441454,0.0359164329839302,0.0378275833471554,0.039911077869193,0.0421965077316905,0.0442265567956607,0.0589858283516575,0.0723063223508459,0.085372639181968,0.0985137155007263,0.1108250142462168,0.1262857142857142,0.1388832875200322,0.1514386727152684,0.1632925734319552,0.1751556127924447,0.189088948787062,0.201798580638171,0.2143534102421647,0.22604616497512,0.2366275798925573,0.2478655253194772,0.258667949564225,0.2690078917700113,0.2780380207385847,0.2865488350740273,0.2948805698309764,0.3024974485905662,0.3101029165628005,0.3175516578567996,0.3238082472216806,0.3304236009792527,0.3369072579126439,0.3420683141019095,0.3471623096512655,0.3524086818422445,0.3538752618420163,0.3545930706615625,0.3559259626414399,0.356656976744186,0.3576417450607959,0.3568562698682139,0.3562960130031551,0.3575028504387197,0.3588439186742313,0.3603071044948275,0.3618265427776621,0.3621484601105766,0.3640458467264422,0.3644422445214417,0.3657061285717742,0.3666430613476014,0.3673727473917167,0.3690721649484536,0.3703860540616839,0.3717994807269822,0.3730624598734293,0.3750937332619175,0.3781255964878793,0.3784259684581228,0.378572762936671,0.3806528189910979,0.3843232568737658,0.3785642062689585,0.3885088919288645,0.392226148409894,0.0,2.355971639438494,61.4403211188136,212.68261288996865,311.1394411246264,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95698,41830,392.3906455725303,7178,73.90959058705512,5600,57.99494242303915,2242,23.093481577462438,77.32722884548278,79.704702438974,63.32110870231941,65.07621680597998,77.05019027653,79.42789050713203,63.219156454826994,64.977405718258,0.2770385689527757,276.8119318419622,0.1019522474924201,98.81108772198388,85.10964,59.9194263819161,88935.65173775837,62613.03933406769,257.69962,160.2790278551055,268777.4248155656,166977.39540544787,277.25187,132.0009660802249,286915.5781730026,135755.86605743985,3226.04076,1445.3453034758109,3343042.3624318168,1482576.1626399534,1368.41918,589.9441269318282,1420018.0254550774,606587.4269683083,2216.482,918.6350645538008,2285724.424752868,932152.7175443304,0.38031,100000,0,386862,4042.529624443562,0,0.0,0,0.0,21854,227.8313026395536,0,0.0,25871,267.57090012330457,2037484,0,73141,0,0,0,0,0,41,0.4179815670128947,0,0.0,0,0.0,0,0.0,0.07178,0.1887407641134863,0.3123432711061577,0.02242,0.3123099299219886,0.6876900700780114,25.139800630107658,4.553749129619916,0.3251785714285714,0.2071428571428571,0.2326785714285714,0.235,11.248948376256273,5.61881117439277,23.802218675619716,12965.980241455658,62.82742910527966,13.464501587315327,20.41389413062275,14.48577370388635,14.463259683455224,0.5483928571428571,0.7681034482758621,0.6891817682591982,0.5970836531082118,0.1117021276595744,0.6996282527881041,0.9023668639053254,0.8767123287671232,0.7227722772277227,0.1240601503759398,0.500587544065805,0.7128953771289538,0.6297903109182935,0.559,0.1085714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020653208334177,0.0043680514031478,0.0068986507050826,0.0092121433722335,0.0115007982428488,0.0137049066824147,0.0162951481655211,0.0183530276878453,0.0205244104473032,0.0226930599789044,0.0250435852733053,0.0272688057187461,0.0295615144876107,0.0316644169440179,0.0336653078074204,0.0356271200463307,0.0374948197264815,0.039433519529871,0.0417446843922939,0.0438018596505858,0.0579946309005254,0.0721440159087341,0.0848106577153047,0.0970226196738558,0.1093731872211616,0.1248585120225111,0.1388821088601415,0.151290569895221,0.1630038782465624,0.1740039904743515,0.1872576475657044,0.2007057117189275,0.2129013312451057,0.2244947064485082,0.2342523801661989,0.2448307958247457,0.2553526378067022,0.2655159998199738,0.2753794285584552,0.2847827830810309,0.2934411229890782,0.3011615109008734,0.3089761205344452,0.3160703791213404,0.322602223249252,0.3282162028753008,0.3344906246866539,0.3394680159569722,0.345103126216111,0.3506807666886979,0.3517975996003834,0.3525390086563378,0.3535988029868865,0.3544214044886914,0.3558041833025445,0.3554315064280002,0.3545851528384279,0.3553587274460183,0.3563145652322638,0.3576415549167009,0.3577577314754037,0.3591317780330336,0.3603864734299516,0.3617212213671953,0.3625797409626909,0.3632096499278878,0.3636520142316079,0.3653249794316815,0.3672979931576905,0.3700355957285126,0.3707011647714193,0.3691026329930145,0.3681430571464936,0.3703474903474903,0.3717568214456678,0.3708188466610718,0.3681361175560712,0.3693693693693693,0.3683184855233853,0.378001549186677,0.0,2.040700224737464,59.49225290617061,209.08350539634927,328.38681470038915,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95779,41830,393.4682968082774,7079,72.60464193612378,5518,57.037555205212,2284,23.481138871777738,77.38146625236273,79.70379944088825,63.35451413110488,65.06746137973026,77.10840084377772,79.42956153785775,63.25586176698562,64.97047518528439,0.2730654085850119,274.237903030496,0.0986523641192604,96.98619444587564,85.19412,59.96668496065658,88948.64218670064,62609.42895692853,256.03957,159.29679056999558,266752.8790235855,165746.62563818332,281.58015,135.00991039856302,289824.36651040416,137781.21807656027,3187.78328,1425.6084555355396,3298973.762515791,1459139.5353214585,1364.43738,587.6325835184111,1411814.6253354074,600775.8835636318,2255.90954,921.529138217916,2322626.9641570696,935784.6044718768,0.37903,100000,0,387246,4043.120099395484,0,0.0,0,0.0,21643,225.3938754841876,0,0.0,26117,268.4930934756053,2038556,0,73216,0,0,0,0,0,55,0.5742386118042577,0,0.0,0,0.0,0,0.0,0.07079,0.1867662190327942,0.3226444413052691,0.02284,0.3124915960736856,0.6875084039263144,25.13170432577465,4.601901072870667,0.3258426966292135,0.2035157665820949,0.2296121783254802,0.2410293584632113,11.224182201453551,5.757618740502551,24.059639512965177,12870.312744583096,61.74914549584668,13.06293141835834,20.05032680798813,14.193237220772458,14.442650048727751,0.5415005436752447,0.7791629563668745,0.6874304783092324,0.579321231254933,0.1075187969924812,0.723752792256143,0.9376770538243626,0.880184331797235,0.7260726072607261,0.1541501976284585,0.4828742514970059,0.7064935064935065,0.626099706744868,0.533195020746888,0.096564531104921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022578620172934,0.0044894401880903,0.0067862975624106,0.0088349987813794,0.0110527011500096,0.0130097522242807,0.0150338388780169,0.0172552781150828,0.0194217409072333,0.021505156326731,0.0234397410154489,0.0255981450322157,0.0279113741932831,0.0299558383002377,0.0320216089157396,0.0340693159286186,0.0361762453693164,0.0383060335890524,0.0402227208509931,0.0421772673795121,0.0565614401252282,0.0701879211484535,0.0833543082473361,0.0959614010007147,0.108884484830596,0.1242874517476601,0.1372083156554942,0.1498259694089346,0.1613337320574162,0.1724518674156339,0.1859271059826484,0.1996474837258591,0.211692561947528,0.2228067680932745,0.2337899543378995,0.2444574936016043,0.2552099030014845,0.265277418338528,0.274462383904444,0.2838621669952771,0.2916077922679576,0.3001112607600866,0.3074189459718783,0.3143836766010502,0.3209890043132252,0.3268633540372671,0.3327952952952953,0.3383409868596796,0.3437904939615404,0.3490348203565161,0.3495677699081679,0.3505537593726353,0.3517631141302816,0.3517113569236115,0.3526117457811406,0.3516682525553271,0.3516314596770359,0.3530368496278894,0.3541246108050775,0.3552201482539966,0.357149554617909,0.3580141956147808,0.3585784416565267,0.3590640913475559,0.3607173850159098,0.3599142998981005,0.3608518169621192,0.3649874055415617,0.3652850653238018,0.3659676452965847,0.3690263459335624,0.3694460703453413,0.3724861739567622,0.3735452955046778,0.3744789693065555,0.3779761904761904,0.3803053435114504,0.3782688019460774,0.38215859030837,0.3835457705677867,0.0,2.2781826297690086,59.08249948411996,202.6974229483569,322.66175609389904,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95749,42065,395.1059541091813,7094,72.73183009744227,5511,56.888322593447455,2242,23.028961137975333,77.31912755708531,79.67039255563361,63.32066847763053,65.05904378947774,77.0417078721222,79.39334266800527,63.21820344275896,64.95971199395831,0.2774196849631067,277.04988762833693,0.1024650348715709,99.33179551943284,85.6878,60.339320635069946,89492.10957816792,63018.22539668294,256.84727,160.26144909239312,267589.6354008919,166716.4186648151,281.22906,134.67616997948383,289750.23237840604,137558.02727966258,3138.64296,1410.783604959814,3241225.57937942,1436771.9263819784,1324.95398,577.6821874441832,1369013.55627735,588596.6884300092,2203.09198,917.7218575444008,2264114.6330509977,926034.65418388,0.38009,100000,0,389490,4067.823162643997,0,0.0,0,0.0,21649,225.4018318729177,0,0.0,26088,268.47277778358,2035059,0,73046,0,0,0,0,0,60,0.626638398312254,0,0.0,0,0.0,0,0.0,0.07094,0.1866400063142939,0.3160417254017479,0.02242,0.3210257787325457,0.6789742212674543,25.169455092275506,4.47580652082714,0.3331518780620577,0.210669569951007,0.2240972600254037,0.2320812919615315,11.09796579670946,5.653870557761553,23.90731313771608,12977.11960177599,62.03530568601459,13.551308057329535,20.658390779656383,13.69789584498873,14.12771100403992,0.5420068953003084,0.7665805340223945,0.6797385620915033,0.5797570850202429,0.1039874902267396,0.7208427389014297,0.925,0.8574712643678161,0.7526132404181185,0.145748987854251,0.4851745576279292,0.6953807740324595,0.6245538900785154,0.5274261603375527,0.0939922480620155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002156983868191,0.0043068940706735,0.0066657197354003,0.0087651587478925,0.0111358574610244,0.0135040175979957,0.0157838388988019,0.0181350324715108,0.0202552095049181,0.022440162977826,0.0243814913926568,0.0267275901016531,0.0290944618707255,0.0311312105322798,0.0330994634750309,0.0352935097147581,0.0370619597287644,0.039303756107175,0.0411709081084451,0.0431635193267157,0.0572896006012902,0.0717214829692861,0.0852449730954403,0.0981091199730775,0.1096889826041117,0.1255696898560839,0.139317571939203,0.1518088955096829,0.1636573307849188,0.1748960164658462,0.1889758692351592,0.2022076727449813,0.214674947519551,0.2260142154182613,0.2365328756271455,0.2478290727039121,0.2581916425708639,0.2686278261065283,0.2774971336458889,0.2864555889023804,0.2941380827755518,0.3018605032374395,0.3089976181729846,0.3156858271593079,0.3228444184857998,0.3292039770271104,0.3350802407221665,0.3394997195165485,0.3451109178468048,0.3499914065495313,0.35036299354978,0.3509850688652062,0.3519122903686121,0.3529497070595742,0.3533137602646835,0.3523029399560466,0.3525569716810222,0.3539037010183568,0.3550863723608445,0.3558494696983292,0.3573245886809521,0.3587217731524696,0.3594547833059037,0.3599549295774648,0.3598178382830289,0.3611927761444771,0.3633675871175154,0.3662185671358532,0.3673823082092455,0.3697003506534906,0.37184,0.3741253138187063,0.3728050713153724,0.3718697188508219,0.3711898205298642,0.3715166607375785,0.3740036787247087,0.3761672756800649,0.3778763515386748,0.3727901614142967,0.0,2.611813178079707,58.07567963309561,209.68081259221017,319.80599679632394,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95684,42242,397.97667321600267,7174,73.7636386438694,5560,57.554032022072654,2308,23.74482672129092,77.34181859432726,79.72499055885578,63.3271521787835,65.08586874203756,77.05425037809002,79.4358478852026,63.22214110927777,64.98269274974174,0.287568216237247,289.14267365317414,0.1050110695057284,103.17599229581732,85.6823,60.32248755871213,89547.1552192634,63043.44253868163,257.59983,160.49367258382009,268543.0793027047,167056.7729022826,281.82864,134.9637310259577,291189.0180176414,138361.85139101077,3210.6132,1452.6959092653703,3326515.279461561,1489303.9476457618,1360.1623,594.3295098101305,1409004.953806279,608627.8895218951,2278.73162,949.003747045812,2348044.3752351487,964669.0763471642,0.38313,100000,0,389465,4070.325237239246,0,0.0,0,0.0,21787,227.1330629990385,0,0.0,26256,271.00664687931106,2035144,0,73091,0,0,0,0,0,44,0.4389448601647088,0,0.0,0,0.0,0,0.0,0.07174,0.1872471484874585,0.321717312517424,0.02308,0.3191686523696055,0.6808313476303945,25.303076123078444,4.4901035883013245,0.3267985611510791,0.2012589928057554,0.2336330935251798,0.2383093525179856,11.219602824044872,5.745089538606135,24.628625203349973,12959.972134476602,62.72669253360159,13.13146655841433,20.37771965147179,14.531034128224244,14.686472195491229,0.5453237410071943,0.7658623771224308,0.6995046780407265,0.5812163202463433,0.1124528301886792,0.7249283667621776,0.9244791666666666,0.8785714285714286,0.7859424920127795,0.1505376344086021,0.4851104707012488,0.6829931972789116,0.6456692913385826,0.5162271805273834,0.1022944550669216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771931423479,0.004409215767761,0.0065136004382983,0.0086023034267026,0.0110220848415829,0.0133277673698786,0.0154623938680447,0.017516817573982,0.0197160641461993,0.0221109848601173,0.0242289393815109,0.0261479526337951,0.0281375706011255,0.0303882774823791,0.0325856961489631,0.0346514682913205,0.036621761658031,0.0388097512355164,0.0407698309492847,0.0425653909906904,0.0573604379074043,0.0713365792366891,0.0844581120510506,0.0967643499763245,0.1096014683854089,0.1246615332543577,0.1381765323770013,0.1508190788423259,0.1629449976494722,0.1743503951785005,0.1885674901462448,0.2017673845088856,0.2143105735975463,0.2259432982364067,0.2371365391597082,0.2483718045279341,0.2591840151811129,0.2683878951513106,0.2778925385331305,0.2863606166815568,0.2940366707154838,0.3017241379310345,0.308828922618273,0.3154974474510462,0.3219123990037057,0.3277688049414984,0.3340971126637117,0.3391494835513328,0.3450485033978316,0.3499815020347762,0.3516735442457588,0.3515759588748466,0.3515979155780881,0.3523115694339841,0.3526327548968496,0.352541539218248,0.3522043531410246,0.3531087400382006,0.3548121602853175,0.3556797020484171,0.3571455392009612,0.3582631109348667,0.3607898389199647,0.3618570369205186,0.3629201807592856,0.3640111332843189,0.3643722372122395,0.3666318157336121,0.3690142841952291,0.3711484593837535,0.3726670957065367,0.3725910064239828,0.3739888776541961,0.3759681006057818,0.3786920826649051,0.3801752070082803,0.3827217835578262,0.379443428803575,0.3796270526022822,0.3744697261858851,0.0,2.20603215357788,61.60958389689968,207.11737059466932,319.4761251312095,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95671,42186,397.5708417388759,7124,73.20922745659604,5609,57.95904715117433,2273,23.382216136551303,77.38307130315455,79.75852989152528,63.34642469116329,65.09700470842888,77.1094630481716,79.48421508399575,63.2468010352862,64.99958582999847,0.2736082549829461,274.3148075295352,0.0996236558770959,97.41887843041752,85.91682,60.46425814818425,89804.45485047715,63200.19457117021,254.29988,158.04365914183066,265175.10008257465,164563.39867026647,280.63547,134.80403479033586,288562.52155825694,137389.20006115688,3240.78824,1461.6056844990983,3351674.091417462,1491985.6220788944,1372.55477,600.7192449057416,1417075.080222847,610314.9072401682,2246.02672,927.4353622399482,2312573.4025984886,940016.1994059996,0.38332,100000,0,390531,4082.020675021689,0,0.0,0,0.0,21530,224.37311201931615,0,0.0,26123,268.2213000804841,2036245,0,73182,0,0,0,0,0,48,0.5017194343113378,0,0.0,1,0.0104524882148195,0,0.0,0.07124,0.1858499426066993,0.3190623245367771,0.02273,0.3173564753004005,0.6826435246995994,25.14804643099769,4.523193879104987,0.324300231770369,0.2034230700659654,0.2321269388482795,0.2401497593153859,11.147280074607252,5.619318263746435,24.091384224121867,13018.365596773723,63.25322802476689,13.50935609910952,20.436511005235385,14.511607404570876,14.795753515851109,0.5384203957924764,0.7633654688869412,0.679494227597581,0.5829493087557603,0.1143281365998515,0.7302725968436155,0.9492957746478872,0.8758029978586723,0.7361563517915309,0.1735849056603773,0.4749703440094899,0.6793893129770993,0.6116863905325444,0.535678391959799,0.099815157116451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021258718605428,0.0044982067959394,0.0068863398951329,0.0090783541167391,0.0112246454171114,0.0135081486608915,0.0157087810149034,0.0177709275383029,0.0200443613095785,0.0221118902595076,0.0242267037124373,0.0263595662531832,0.0282825789598181,0.0304166452078075,0.0326820310726886,0.0346741354720023,0.0367442920482327,0.0386723128658612,0.0406618205264197,0.0425312392525507,0.0573413423870462,0.0714607259136734,0.08546040138902,0.0983039441447693,0.1104585569532164,0.1255484484854892,0.1392301739582118,0.1511677372697494,0.1631668800682885,0.1742987550088928,0.1883788232509601,0.2019721477380849,0.214524823928354,0.2261773352714237,0.2366968037132361,0.2476816202621403,0.2585101630556176,0.2682937817473279,0.2776907179032954,0.2871254225634561,0.2947651068853369,0.3022814800941154,0.3095094241271872,0.3162934696522428,0.323177035820714,0.3295245616416382,0.3354797489445398,0.341562527865887,0.3473969546834064,0.3529567263210764,0.3535015968413534,0.3538539916834191,0.3545035455993684,0.3550777067114288,0.3560698456138263,0.356162490788504,0.3558415590186308,0.3563589093841015,0.3580454350621517,0.3593822781181697,0.3600239803660753,0.361392005056091,0.3628745024093861,0.3637399973177165,0.3634770501248319,0.3650934068793256,0.3665284326535249,0.3710461142982538,0.3724505914978762,0.3732140736929591,0.3761396790663749,0.3768868174355171,0.3786499215070644,0.3787085514834206,0.3800841514726508,0.3836277974087161,0.3850453172205438,0.3868800632286109,0.3877221324717286,0.3803658081373647,0.0,2.6377581708818485,61.17380382896398,216.6967417912173,313.3798550697316,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95701,42026,395.4399640547121,7138,73.51020365513422,5594,57.95132757233467,2306,23.740608771068224,77.3960056150407,79.78029805936325,63.35197710932333,65.11307689056478,77.11701558421544,79.50097208751208,63.24956305734342,65.01318006040107,0.2789900308252697,279.3259718511649,0.1024140519799061,99.89683016371488,84.86038,59.80047416566209,88672.40676690944,62486.78087549983,257.80807,160.16815012827968,268877.98455606523,166851.96615320598,276.77662,132.22703191484408,286450.5386568583,135938.41426313706,3249.1814,1442.8254732758378,3366983.5006948723,1479618.9153515885,1373.85188,591.2050935902762,1422630.066561478,604917.4227914449,2279.72982,944.4101121114056,2348992.2780326223,956891.7553575828,0.38165,100000,0,385729,4030.563943950429,0,0.0,0,0.0,21756,226.78968871798625,0,0.0,25697,265.7130019540026,2044429,0,73167,0,0,0,0,0,52,0.5433590035631812,0,0.0,0,0.0,0,0.0,0.07138,0.1870300013101009,0.3230596805827963,0.02306,0.325,0.675,25.50827641187317,4.633553004723839,0.3337504469074008,0.1978905970682874,0.221308544869503,0.2470504111548087,10.918936202312397,5.210510828596053,24.459908947808383,12940.613150991618,62.28814996796344,12.847678702173717,20.67953986672474,13.663129421956496,15.09780197710848,0.531283518055059,0.7660343270099368,0.6802356722013926,0.5646203554119548,0.1121562952243125,0.694296577946768,0.9193083573487032,0.8537170263788969,0.7095588235294118,0.1612903225806451,0.4811871932694554,0.6960526315789474,0.6303448275862069,0.5238095238095238,0.099728014505893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044918983593924,0.00692231176793,0.0091643383286766,0.0111692063556649,0.0136337718405082,0.0158650855960112,0.0180093722243208,0.0202212271770021,0.0226104935617924,0.0244822636866926,0.0265305912913128,0.0284776929880494,0.0304378727480609,0.0324910492266738,0.0346289022121149,0.0365747550288993,0.0385713247734609,0.0407991347213844,0.0429295034810522,0.0571971714766187,0.0717492543561299,0.084986103099271,0.0980276714748307,0.110274896702926,0.1259385376789831,0.1389560789306174,0.1509596653147255,0.1627551728926538,0.1739773921623302,0.1872449034536976,0.199848566792861,0.2116341744365477,0.2228926197971318,0.2336305760497872,0.2455165389895053,0.2565278010150019,0.2666074879769877,0.2756506860956568,0.2844173069886571,0.2924192728784589,0.3004379050621825,0.3082494446807505,0.3146769444377947,0.3214853274780731,0.3280971301342059,0.3344736316420296,0.3401312199393393,0.3453615570393522,0.3506878167577174,0.3512141398947029,0.351670075918782,0.3525323579065841,0.352991292544512,0.3540190968355088,0.3549888252763065,0.3552846172116222,0.3562325505009032,0.3566592579928193,0.3576750585166258,0.3577711509968304,0.3589621989052898,0.3595644435137682,0.3599107142857143,0.360915281153004,0.3617365441310757,0.3611680911680912,0.3635159010600706,0.3658020862700874,0.3672564604385509,0.3688784659953097,0.3710816304696694,0.3722081218274111,0.374770079705702,0.3747268408551069,0.3733493397358943,0.3774313059586292,0.3828653412584546,0.3770172509738453,0.3755356447214647,0.0,1.9490754674763888,58.20965996265576,206.71800214258573,330.173005218878,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95827,41782,392.2798376240517,7150,73.42398280234173,5585,57.74990347188162,2288,23.52155446794745,77.38566316619061,79.70663813018116,63.36611244363343,65.08427838381343,77.10784883447052,79.42779413575924,63.26393849459749,64.98428508386736,0.2778143317200943,278.8439944219192,0.1021739490359365,99.99329994606398,85.88294,60.37600571422924,89622.90377451033,63005.21326372446,257.16408,160.19827079074753,267850.87710144324,166662.47591049233,276.57071,132.6742269326816,285050.413766475,135767.86560348538,3211.73156,1448.3734028242352,3322902.897930646,1483001.5081006452,1357.11096,589.7301547635694,1402545.629102445,601852.8067988568,2243.17208,932.6640885014036,2307919.8138311747,945397.1575100408,0.3789,100000,0,390377,4073.7683533868326,0,0.0,0,0.0,21776,226.71063478977743,0,0.0,25728,264.98794702954285,2040163,0,73211,0,0,0,0,0,54,0.5635155018940382,0,0.0,0,0.0,0,0.0,0.0715,0.1887041435735022,0.32,0.02288,0.3232040517126482,0.6767959482873517,25.2637541914068,4.547693898364217,0.3324977618621307,0.2005371530886302,0.2336615935541629,0.2333034914950761,11.087604187359076,5.626490949302477,24.320027574872107,12872.62177524649,62.83266256538151,12.988954897363527,20.859867402661973,14.63464870440597,14.34919156095004,0.5453894359892569,0.7678571428571429,0.6941303177167475,0.5739463601532567,0.113584036838066,0.6958762886597938,0.9397590361445785,0.8609271523178808,0.7095709570957096,0.1037037037037037,0.4970428199668796,0.6954314720812182,0.6403133903133903,0.5329341317365269,0.1161665053242981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864351331368,0.0042881907484565,0.0064954176858044,0.0086968890333854,0.010761218926726,0.0127583749109052,0.014861021924594,0.0172262475762832,0.0196024324186212,0.021746249411572,0.0240625544430666,0.0261010582064888,0.028355601233299,0.0306227483273288,0.03255444646098,0.0347887163913937,0.0369603907123049,0.0390982119720134,0.0410267592909878,0.0428941590268166,0.0574656291072956,0.0713763040705818,0.0847832466879087,0.0971337914223875,0.1093730249020351,0.1243451626531474,0.137410079564356,0.1493771523319586,0.1608643713469004,0.1726948493579101,0.1864299234276865,0.1999913577979669,0.2118708472662526,0.2230312424950331,0.2332524191865382,0.2452563138573134,0.2558328690807799,0.2654450673527396,0.2748739448189904,0.2835090447549569,0.2911269542308448,0.2985815188838946,0.306607617360496,0.3134333711962695,0.32008918293407,0.3262146420584404,0.3322680914277154,0.337809025838875,0.3435880870857291,0.3488007586633826,0.3492902791792802,0.3503925639721149,0.3510762603297059,0.3521761747875845,0.352550284686399,0.3520286944925581,0.3519053209379065,0.3528956766453269,0.3533326472505231,0.3537046664634911,0.3554866591506952,0.3564101037760184,0.3568473488686254,0.3582224024145775,0.3584983498349835,0.3602720227739996,0.3610455409062122,0.3636507835797221,0.364185039230305,0.3665488999518227,0.3705373573794626,0.3701305650684932,0.3711870869344179,0.3710160509945472,0.3724611423667398,0.3751503488092374,0.3767846058348851,0.3764633394947628,0.3797539149888143,0.3762567672080433,0.0,2.102923140147149,59.918152240321234,212.41730294997345,321.56321441008134,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95765,41728,391.81329295671696,7245,74.49485720252702,5641,58.30940322664857,2269,23.265284811778837,77.37657405990127,79.72266741964381,63.3458979718325,65.07946659894384,77.0981037146678,79.44501967938402,63.24426052889553,64.98132064933755,0.2784703452334724,277.6477402597948,0.101637442936969,98.14594960629108,86.60366,60.8907915052417,90433.51955307263,63583.55506212259,258.23876,160.13838320025584,269057.12943142065,166619.03555771048,277.8436,133.18348828448148,286854.4040098157,136479.2291861185,3232.93408,1453.741196967834,3342646.185976088,1484821.4610709965,1347.77187,590.6593651450833,1390153.3754503212,599588.8813763586,2230.4135,927.1075362284276,2289141.5026366627,933725.115004364,0.37955,100000,0,393653,4110.614525139665,0,0.0,0,0.0,21862,227.6510207278233,0,0.0,25894,267.05999060199446,2034310,0,72979,0,0,0,0,0,49,0.5116691902051898,0,0.0,0,0.0,0,0.0,0.07245,0.1908839415096825,0.3131815044858523,0.02269,0.3239196111913832,0.6760803888086169,25.118125243392885,4.590260962024674,0.3237014713703244,0.2098918631448324,0.2368374401701826,0.2295692253146605,11.224331314782418,5.602756359181632,24.12348267344756,12938.542426964,63.32125542227764,13.854648542942458,20.292317967011037,14.943696352194618,14.230592560129535,0.5497252260237546,0.7846283783783784,0.6944140197152245,0.5696107784431138,0.1104247104247104,0.7094932191291934,0.9015544041450776,0.8931116389548693,0.7184466019417476,0.1684210526315789,0.4969339622641509,0.7280701754385965,0.6348754448398577,0.5248296007789679,0.094059405940594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864985313481,0.0045109428377378,0.0065748087420605,0.0087163232963549,0.0111361972174762,0.013411268724351,0.0159374330841941,0.0180810225834116,0.0202314502443313,0.0222438325314771,0.0243012493978496,0.0268630671320057,0.0291553581709022,0.0308750682279276,0.0330327851940495,0.0350391218513886,0.037090728353387,0.0392335861074514,0.0412508316699933,0.0430435642945667,0.057781024945204,0.0717116890994467,0.0845380494606296,0.0972559405576399,0.1098604611947219,0.1260094710583062,0.1384132571380103,0.1507038806541887,0.1621777483500288,0.1734006734006734,0.1876581767271552,0.2006187864429515,0.2121660429901662,0.2240347479786873,0.2347896921061611,0.2461347490219114,0.2570120589548906,0.2670275501935716,0.2770419801845357,0.2860201756495253,0.2938903925787123,0.3012966665497445,0.3083200283838921,0.3155127606318638,0.3224051017309444,0.3285180757047244,0.3347422126073853,0.3399550081976589,0.3454159713328417,0.3501464495870385,0.3508273913628413,0.3513164048529533,0.3519605772615276,0.3522464438533595,0.3523853388206279,0.3518785241480755,0.3511496347473339,0.3518159408381265,0.3532632875868441,0.353446735517993,0.3550016903948011,0.3566592762689049,0.3576617813799185,0.3583061160574471,0.3597292153508877,0.3612970711297071,0.3626122262251958,0.3636134400806909,0.3652238332098634,0.3665827438756344,0.367763852545563,0.368373236425823,0.3716976362027556,0.3731160584500038,0.3721829325789721,0.3783235960414928,0.3824842234877635,0.3867962737950587,0.3898678414096916,0.3926096997690531,0.0,2.2728104288585955,61.752410118819775,211.14960469259236,321.3369998302141,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95758,41662,390.9542805823013,7173,73.85283736084713,5589,57.8541740637858,2324,23.956222978758955,77.3313489084019,79.69839416770901,63.31030609897547,65.0636142164181,77.0529905603748,79.41761690322666,63.20922303089717,64.96358410639603,0.2783583480271119,280.77726448235296,0.1010830680782959,100.03011002207528,85.20314,59.95014210442672,88977.56845381064,62605.88369058117,253.86669,157.82166598987774,264560.6111238748,164263.97829127085,280.21961,133.4776415968912,289360.6069466781,136892.7630570719,3241.06812,1452.6518260516534,3355870.2562710163,1488732.8457263412,1384.46769,593.1617751004068,1435323.0330625118,609027.8016320162,2290.04494,940.3463903846368,2362947.659725558,957843.243343146,0.37864,100000,0,387287,4044.434929718666,0,0.0,0,0.0,21510,224.0752730842332,0,0.0,26035,268.63551870339813,2039463,0,73171,0,0,0,0,0,46,0.4803776185801708,0,0.0,0,0.0,0,0.0,0.07173,0.189441157828016,0.3239927505924996,0.02324,0.3167174864112422,0.6832825135887578,25.659450018403287,4.549679026239603,0.3358382537126498,0.1941313293970298,0.2336732868133834,0.2363571300769368,11.086790383541931,5.548308390170006,24.533496194064902,12962.1472203279,62.83179164898653,12.795797628369684,21.255312965205427,14.367039830696784,14.413641224714633,0.5466094113437109,0.7585253456221198,0.7080447522642515,0.5712098009188361,0.1188493565480696,0.7035139092240117,0.9090909090909092,0.8601694915254238,0.7083333333333334,0.1423220973782771,0.4958560265214302,0.682825484764543,0.6569395017793594,0.536468330134357,0.1129032258064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0046847906547552,0.0070032986551636,0.0090327169274537,0.0114854829192862,0.0138505565683209,0.0161311702745969,0.0184200046968969,0.0207632276079329,0.0227994346231845,0.0247579586478503,0.0270200852725124,0.0290721607047297,0.0311968586711189,0.0332469730906989,0.0351780617942672,0.0371014672838163,0.0390577980699387,0.0410486159475276,0.0433999208448767,0.0581413555182096,0.0718852347518546,0.0856165820500986,0.0991482649842271,0.1112716001222996,0.1264158725793999,0.1395526505666143,0.1521519176083414,0.1640717667047798,0.1753017541977361,0.189035692732132,0.2014964969842662,0.2140843230533088,0.2255207820213895,0.2357584832536938,0.2472506762449559,0.2575911552850522,0.2679906331622084,0.276922029126985,0.2856733524355301,0.293862239049637,0.3015939941206095,0.309051243745702,0.3155770201110069,0.3216990090331377,0.3279467680608365,0.3341561517160148,0.3397005415737496,0.3445635528330781,0.3492902645978166,0.3489335294038287,0.3492430816700415,0.3504377123362984,0.3512137992857452,0.3531849167570136,0.3522934374760701,0.3512760874036803,0.3520467644209454,0.3532128926298501,0.354119034009717,0.3553117674636662,0.3573776334547758,0.3581506676744772,0.3596591546137459,0.3597287252015253,0.3603551690720029,0.3604528172436465,0.3631620553359684,0.3658519305703153,0.369007982670785,0.3695532266960838,0.3696940573442255,0.3714050424426707,0.3733088741114423,0.3735211267605633,0.3749116607773851,0.3745829542007886,0.374900714853058,0.3701492537313433,0.3734392735527809,0.0,1.8104206073598903,60.7726333744373,208.44230301624813,324.7407490646296,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95482,42038,397.3314341970215,7159,73.72070128401165,5526,57.1835529209694,2279,23.418026434301755,77.22623088476638,79.713122304224,63.24095407219974,65.07615072019725,76.95204274267547,79.43982993102063,63.1411798114402,64.97921844683806,0.2741881420909067,273.2923732033754,0.0997742607595455,96.93227335918664,86.185,60.6827572612909,90263.08623614922,63554.13298976865,257.87835,161.08817587624128,269365.1368844389,168001.87353141353,283.47574,135.90803040890327,292494.69009865733,138915.57245826098,3167.87472,1433.430613377492,3279517.898661528,1463390.3775491763,1346.19812,585.5708811439033,1392296.1081669845,595677.6472465002,2238.83962,920.7462086735616,2302411.721581031,929161.7495991774,0.38059,100000,0,391750,4102.867556188601,0,0.0,0,0.0,21842,228.02203556691316,0,0.0,26408,272.1979011750906,2025105,0,72673,0,0,0,0,0,42,0.4398734840074569,0,0.0,0,0.0,0,0.0,0.07159,0.1881026826768964,0.318340550356195,0.02279,0.308264682434228,0.691735317565772,25.204437963328548,4.516241076501745,0.3384002895403546,0.2017734346724574,0.2305465074194715,0.2292797683677162,11.193895172136306,5.786386102688456,24.214397359698243,12948.40675395302,62.821814965748,13.215986962299503,21.374437759738868,14.28419098980737,13.947199253902255,0.5521172638436482,0.7829596412556054,0.6957219251336898,0.5714285714285714,0.1176006314127861,0.7268041237113402,0.8948863636363636,0.8662280701754386,0.7635782747603834,0.160337552742616,0.4952015355086372,0.7313237221494102,0.6407355021216408,0.5088449531737773,0.1077669902912621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002573846075898,0.0047876494872549,0.0073507015655775,0.0093950177935943,0.0115552207199869,0.0136064821892676,0.0157042418800191,0.0180757362107371,0.0202052236897296,0.0222536423433946,0.0241316308096567,0.0262081019946535,0.0282754643930969,0.0303433480821395,0.0323393879280061,0.034248560897834,0.0360877142027301,0.0377019188790253,0.0400791790383914,0.041976881389205,0.0568150892838451,0.0708672982301534,0.0844383221695286,0.097421143043831,0.1093827604062093,0.1250463703907831,0.1381367014320798,0.1507505521118946,0.1620148230657184,0.1734456961045661,0.1864284171885122,0.2001345004501426,0.2123551281631941,0.2240029817368617,0.2350137367184138,0.24644138988588,0.2572013468616111,0.2671288468041934,0.2767162549474546,0.2864716615218663,0.2948789312552184,0.3024027580707576,0.3100264635029133,0.3163803776850861,0.3223108249811008,0.3283258881615581,0.3343599929600482,0.3400368201692705,0.3459347690387016,0.3511579839949122,0.3512526378442725,0.3514196542009611,0.3512405456987347,0.3521153288901767,0.3535615723129708,0.3537304017355715,0.3534374353341929,0.3546086410988757,0.3549729218602252,0.3560750350379128,0.3570674707877874,0.3584080472337634,0.3596097519860083,0.3604849957259189,0.3612896988446851,0.3628996302027328,0.3629432166709662,0.3639326624897158,0.3665889171614362,0.3697519274557584,0.3716919689950924,0.3751469174057057,0.3754255453284579,0.3788281784330116,0.3811650846826726,0.381466275659824,0.3886248658592672,0.3872427983539094,0.3864774624373956,0.3818181818181818,0.0,2.610957520039628,59.73960799435399,217.98957991875503,311.9177102985227,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95705,41870,394.2218274907267,7056,72.44135625097958,5525,57.0921059505773,2203,22.621597617679328,77.36399481233721,79.74795537841914,63.33329461681414,65.09685568837912,77.09103838702292,79.47540637875404,63.23472245322227,65.0012928479155,0.2729564253142911,272.5489996650907,0.098572163591875,95.56284046362862,85.8704,60.41144501489279,89723.81798234157,63122.35541557349,259.28117,161.31546947474962,270259.0878219529,167899.70600102664,279.68937,134.422924626866,288060.132699441,137251.04385208496,3196.1694,1432.7246029911644,3305027.3653414138,1462634.8768580952,1319.77195,575.7596984091073,1360541.9466067604,583384.7678969587,2171.6488,895.1779150121445,2231489.2638838096,904060.829540655,0.38017,100000,0,390320,4078.355362833708,0,0.0,0,0.0,21946,228.64009194921897,0,0.0,25997,267.4886369573168,2037386,0,73095,0,0,0,0,0,60,0.6269264928687112,0,0.0,1,0.0104487748811451,0,0.0,0.07056,0.1856011784201804,0.3122165532879818,0.02203,0.3073078481696609,0.692692151830339,25.103390157303902,4.534180566401168,0.3388235294117647,0.2009049773755656,0.228235294117647,0.2320361990950226,11.125501316068435,5.550694690126142,23.324234233796236,12920.43123748299,61.84867807404041,12.97106788425242,20.809153399044465,13.961950024580212,14.106506766163308,0.5402714932126697,0.7639639639639639,0.6885683760683761,0.5654242664551943,0.1053042121684867,0.7308270676691729,0.9222222222222224,0.9016393442622952,0.7430555555555556,0.1607843137254902,0.4798569725864124,0.688,0.62560553633218,0.512846865364851,0.0915287244401168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871115794166,0.0042897563053332,0.0066393242913993,0.0089639612171473,0.0108874824477502,0.0133259979216333,0.0155963115590191,0.0176477797295641,0.0198418786372515,0.0218210489668025,0.0239660352978577,0.0262611946430038,0.0282146493998086,0.0304685165531524,0.0323030084111667,0.0343686670251044,0.036453099911949,0.0383956830799564,0.040249898647595,0.0421767715181762,0.0566260404591074,0.0703706417408962,0.0840056654251691,0.0964610611558079,0.1083411512960249,0.1245109856414811,0.1378293833837018,0.1505419809163147,0.1626529174405943,0.1732737463695892,0.1881846551167545,0.2018581811888898,0.2140434045144174,0.225187793170561,0.235624725032996,0.2474926384307126,0.2579799692177288,0.2675991409842701,0.2767927032637919,0.2861427165129003,0.2939632545931758,0.3018188619254687,0.3089093211213272,0.3155157745905076,0.3216380660910117,0.3273201906145719,0.3332874655991994,0.3385567586802908,0.3440878291005017,0.3500197654499934,0.3503737965901146,0.3514416073440892,0.3516931864545083,0.35244351404028,0.3526732732019938,0.3521871323585583,0.3523913283754125,0.3529854531769018,0.3537339626177778,0.3550603097566198,0.3559426921201665,0.3571555731381663,0.3573720974136303,0.3580662537032049,0.3586306653809065,0.3598416319253257,0.358882418748745,0.3614145879381117,0.3624068646491755,0.36319380711065,0.3647010384738551,0.3674502905272136,0.3684880096685961,0.3731089842543995,0.3751075422999713,0.3817677559387435,0.3810713727940028,0.3715054876786084,0.3741169821983611,0.3767772511848341,0.0,2.4385231899133752,58.36037472621695,203.4546640590925,325.4730834157146,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95677,42266,397.4100358497863,7227,74.2916270368009,5658,58.613877943497386,2360,24.33186659280705,77.31725194233033,79.72498310140278,63.30264576078415,65.08458148957993,77.03143104280912,79.43736684786612,63.19794458061968,64.98194731658252,0.2858208995212123,287.61625353666886,0.1047011801644757,102.63417299741208,85.6427,60.36144088918656,89512.31748487098,63088.76834472919,260.70768,161.73905601040929,271968.466820657,168528.1164861035,280.42495,133.83653435757685,290289.11859694595,137776.7255050136,3261.29056,1457.8148785561634,3379841.0067205285,1494878.3914171238,1386.47539,596.2700773704933,1440103.776247165,614194.4013404403,2328.60846,960.6055580935227,2402268.423968143,975635.220681909,0.38325,100000,0,389285,4068.741703857771,0,0.0,0,0.0,22043,229.8671572060161,0,0.0,26126,270.1798760412638,2034428,0,72995,0,0,0,0,0,41,0.4285251418836293,0,0.0,0,0.0,0,0.0,0.07227,0.1885714285714285,0.326553203265532,0.0236,0.3080368906455863,0.6919631093544137,25.643557022897998,4.558193727766223,0.3243195475433015,0.2014846235418876,0.2317073170731707,0.2424885118416401,10.861934780708705,5.345872932982232,24.9789581995086,13045.648869636643,63.44461310210433,13.281141623098334,20.58877612405752,14.66767922622462,14.90701612872386,0.5383527748320961,0.7543859649122807,0.6833787465940054,0.581998474446987,0.1231778425655976,0.6906367041198502,0.8895522388059701,0.8329571106094809,0.711864406779661,0.1717557251908397,0.4913254684247051,0.698136645962733,0.6357758620689655,0.5442913385826772,0.1117117117117117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025023554560466,0.0049181159052882,0.0070227427260825,0.0093893851172148,0.0115277000559597,0.0135988591219313,0.0157305204741599,0.0179082216410591,0.02007325407706,0.022191486091901,0.0240796979521484,0.026326606107937,0.0285449585670904,0.0307651067602816,0.0329150529305447,0.0351053263253735,0.0372869759920388,0.0394936340789665,0.0415643597319905,0.0435108933597414,0.0580903325567059,0.0726335961798247,0.0853777595817718,0.0986585301699195,0.1107149262076313,0.1264484586812279,0.1400430901815943,0.1532571538109285,0.1654607829516186,0.1766832596661374,0.1903202524964183,0.2037630450785952,0.2155008217329313,0.2273976201683616,0.2378381951176522,0.2488305065957211,0.2591831951156898,0.2694787295086578,0.2789370369109621,0.2882353614823467,0.2959448199240811,0.3030196670293543,0.3106176348670575,0.3173352521436709,0.3231964591870235,0.3301662121642131,0.3362771994437972,0.3417344483904227,0.3468951581565244,0.3524049497374739,0.353747173468289,0.3536766526367912,0.3543341452082952,0.3549538870739252,0.3551193065030236,0.3536948840067598,0.3536655030149159,0.3553218453233266,0.3573543253187302,0.3581860107609531,0.3590234741784037,0.3603100037660304,0.3606446855577794,0.3616571454275561,0.3626461598175731,0.3630034416625069,0.3637641658298666,0.3652399317190364,0.3664157212031244,0.3693837613323216,0.3724562451192062,0.3750133933354763,0.3748170770503277,0.3760030864197531,0.3735960403578907,0.374401913875598,0.3804499612102405,0.3785391875256463,0.3848460070863995,0.3890369242481918,0.0,2.058929188524246,58.97048381854689,214.7044652930152,331.53026997900423,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95864,42012,395.5395143119419,7152,73.3956438287574,5568,57.57114245180672,2228,22.87615789034465,77.4717338221379,79.75882315476952,63.40399372213196,65.09086143696331,77.19979033264855,79.48687541371791,63.30415104824399,64.99366711182114,0.2719434894893595,271.9477410516049,0.09984267388797,97.1943251421692,86.47254,60.80113590677537,90203.35057998831,63424.36775721373,257.87932,160.09309777193957,268489.9440874572,166485.72081099174,279.66568,133.42744022620775,288919.2084619878,136909.0400337097,3189.91476,1430.5790598559724,3298716.7236918965,1463701.7156141598,1311.69918,571.1611224469456,1355114.7980472336,582830.7239672376,2189.61338,909.6631878293738,2250000.3338062256,918503.9118199372,0.38285,100000,0,393057,4100.152299090378,0,0.0,0,0.0,21742,226.25803221230075,0,0.0,26073,269.2251522990904,2038103,0,73088,0,0,0,0,0,50,0.5215722273220396,0,0.0,1,0.0104314445464407,0,0.0,0.07152,0.1868094554002873,0.3115212527964205,0.02228,0.3288288288288288,0.6711711711711712,25.39234527116341,4.535315498059325,0.335308908045977,0.201867816091954,0.2347341954022988,0.2280890804597701,11.06622022743799,5.5229288433414,23.538426883818836,12968.32387281608,62.25625869903281,13.198849455823542,20.756732149855623,14.537754674883043,13.762922418470582,0.5520833333333334,0.7677935943060499,0.7005891805034815,0.576893649579189,0.1173228346456693,0.7106038291605302,0.9228650137741048,0.8826185101580135,0.6677631578947368,0.1451612903225806,0.5009501187648456,0.6938239159001314,0.6439606741573034,0.5493519441674976,0.1105675146771037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025407429901811,0.0047411129458722,0.0068547324017927,0.009185952090946,0.0116250711324282,0.0136945882975368,0.0159624317496536,0.0180744397637674,0.0206073974225435,0.0226519676020616,0.0246213091080408,0.0263060734724016,0.0283633300460223,0.0301780018520423,0.0322337903308937,0.0341701174113735,0.0361516819065745,0.0378696017162578,0.039810603700704,0.0416788078091828,0.0560885070175804,0.0705624085302111,0.0843603286384976,0.0964254192409532,0.1086049158902145,0.1240669866576449,0.1374308074059935,0.1499851057491808,0.1614084537117111,0.1731865729229186,0.1868650998622589,0.1999373135618866,0.2121705704140469,0.2241364251714048,0.2352850725449493,0.2460535043112978,0.2575833528278136,0.2678755894902313,0.2774184779530859,0.2862615059173289,0.2942820515781815,0.3022265269447102,0.3094068176986133,0.3164971886589305,0.3237353330178491,0.3296194615091041,0.3355290294356602,0.3414234341842764,0.3469387755102041,0.3519399249061327,0.3527592096945569,0.3540454495553848,0.3543259500787047,0.3543612360198316,0.3546660736787488,0.3548150636816224,0.3541436464088398,0.3550837330364889,0.3565602383993189,0.3570653430823148,0.3579557133513968,0.3588975198138874,0.3605553116310188,0.3614272325612532,0.3636036554652083,0.3636410950348704,0.3652971928628253,0.3660431744838174,0.3690990112797661,0.3715073891625616,0.3726837205098074,0.3754766949152542,0.3771702759012564,0.3820620927558451,0.3844909609895338,0.3860426143164951,0.3871559633027523,0.3854838709677419,0.3923601637107776,0.3919483478921382,0.0,1.9429126934131145,59.98239986780966,207.9248927479197,320.132807705251,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95742,41553,390.9151678469219,6969,71.49422406049591,5361,55.4406634496877,2234,22.98886591046772,77.34438518034166,79.69835773740752,63.33412346583962,65.072842907804,77.06568087450347,79.41713769816626,63.23048866273288,64.97071263572045,0.2787043058381897,281.22003924126204,0.1036348031067433,102.1302720835564,84.67844,59.59835802509336,88444.40266549685,62248.91690699312,252.2449,157.80944954535462,262909.82014163065,164274.47676605318,269.70042,129.94561188370457,278068.8203714149,132998.8772951605,3113.18476,1411.0620031374533,3222935.47241545,1445113.036219688,1315.0705,573.154994602551,1360975.5697603978,586064.3443865292,2207.45352,928.105270933753,2274678.406550939,943377.817214866,0.37753,100000,0,384902,4020.200121158948,0,0.0,0,0.0,21437,223.30847485951827,0,0.0,25109,258.6221303085375,2042451,0,73297,0,0,0,0,0,50,0.5222368448538781,0,0.0,1,0.0104447368970775,0,0.0,0.06969,0.184594601753503,0.3205624910317118,0.02234,0.3141882673942701,0.6858117326057299,25.220278030453866,4.612932678968963,0.3241932475284462,0.1915687371759,0.2391344898339862,0.2451035254616676,11.03426290034316,5.451967591261714,23.910478475739986,12825.50800235428,60.37874240716856,11.905986462324329,19.723705880486733,14.298483875406848,14.45056618895064,0.5295653795933595,0.7468354430379747,0.6915995397008056,0.5639625585023401,0.1118721461187214,0.6725533480500367,0.9009584664536742,0.8314606741573034,0.715625,0.1174377224199288,0.4810094952523738,0.6792717086834734,0.6434648105181748,0.5135135135135135,0.1103581800580832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715368096916,0.0048158324293086,0.00726468409785,0.0092420503133156,0.0115907843097382,0.0136308572475644,0.0155418764395344,0.0176539619368335,0.019985491105639,0.0218970633377673,0.0242232969915566,0.0261723681374511,0.0282341812498714,0.030226570545829,0.0322274490385408,0.0342162100716153,0.0362177828382155,0.0382976075661885,0.0403766407882019,0.0423107370526228,0.0570757425484157,0.0711632044372351,0.0841034247653013,0.0967955661657219,0.1088591042824452,0.1241976588027536,0.1375978447635815,0.1502303461043313,0.1622129659297233,0.1732241257316837,0.1871380282903093,0.199660345927937,0.2116942279048023,0.2222149352920601,0.2321972571403433,0.2427285510247013,0.2537111860169208,0.2632686120548068,0.2729284903518729,0.2816702944208958,0.2903207138806263,0.2977971299482642,0.3058827707862242,0.3128765150606024,0.3188493896804941,0.3249922844268872,0.3309879469716923,0.3363269888248201,0.3422196840889327,0.3474591963600772,0.3483802228036576,0.3487667080060631,0.3494292124684268,0.3496735337975765,0.3504155124653739,0.3498694115839607,0.3494747548591135,0.3502024958019163,0.3505423142166858,0.3518773836595105,0.3530693925101937,0.3547671401121214,0.3553538409816776,0.3559143165079935,0.3565124882129645,0.3566732154551408,0.3573801477747866,0.3589670559194911,0.3624929338609384,0.3644216925291953,0.3662016922021495,0.3691905447948349,0.3712642951917609,0.3742312656594032,0.3764362403465813,0.3813188114123357,0.3812086729201906,0.3829831067161104,0.378476084538376,0.3831702544031311,0.0,2.20387762847368,59.93510576464846,198.4276546023944,305.6343041830158,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95685,41742,393.8652871400951,7026,72.40424308930343,5448,56.50833463970319,2237,23.117521032554738,77.28108161739658,79.66970558873318,63.29287913429015,65.05635975583915,77.01225408507028,79.39628016140148,63.19562408938988,64.95915681693532,0.2688275323262985,273.42542733170205,0.0972550449002724,97.20293890383402,86.34692,60.7531651110374,90240.81099440872,63492.88301305053,256.46463,159.36371453609888,267599.5088049328,166119.74137649464,274.80964,130.98627787656488,284284.87223702774,134640.89729954413,3150.66152,1406.354248339757,3270982.118409364,1448013.7621777246,1353.9655,584.3059863207405,1405772.9529184303,601404.9603602865,2204.89588,904.9899830102198,2280502.1058682133,925776.2504538835,0.38019,100000,0,392486,4101.855045200397,0,0.0,0,0.0,21739,226.7440037623452,0,0.0,25566,264.283848043058,2031028,0,72878,0,0,0,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.07026,0.1848023356742681,0.3183888414460575,0.02237,0.3197619369674015,0.6802380630325984,25.465530058537965,4.577632436468007,0.3283773861967695,0.1976872246696035,0.2331130690161527,0.2408223201174743,11.0009353829055,5.524265179915232,23.659459811552654,12926.500467336358,61.47257667056594,12.802242149821202,20.242950448562027,14.134429722627942,14.292954349554783,0.539647577092511,0.7771587743732591,0.7003912800447177,0.5598425196850394,0.1059451219512195,0.7106060606060606,0.9337016574585636,0.8694638694638694,0.7,0.1467181467181467,0.4849806201550387,0.6979020979020979,0.6470588235294118,0.522,0.0959164292497625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0044911242003669,0.0067081400895095,0.0088488382724954,0.0111974452332038,0.0131664697975642,0.0151722168974447,0.0171621676808102,0.0192793253258369,0.021433177412256,0.0234694609918897,0.0257505441701917,0.0281777046482928,0.0300648072781973,0.0321901478951007,0.0341925411251382,0.0359547535685429,0.0378523684975297,0.0398918187964841,0.0416601523821435,0.0566763129577199,0.0711578330157267,0.0840015954320262,0.0969299722245602,0.1097584133347399,0.125493224444891,0.1385324119776242,0.1511427293446079,0.1635805768778464,0.1747350790736625,0.1882791941676372,0.2013848254339769,0.2143782736053488,0.225347640424833,0.2357963621941411,0.2468866093706681,0.2568478224427532,0.2668649117471474,0.27608031179338,0.2850066504609457,0.2929414626799967,0.2999425846290849,0.3071951233974929,0.3146927058936571,0.3213433925529326,0.3271338302808905,0.3329573086661151,0.338953221445697,0.3448213196256344,0.3502210222610445,0.3512374365070788,0.3513703831549879,0.3524266485499554,0.3528028906850866,0.3535400277649236,0.3529655999630934,0.3520934297290856,0.3536279683377308,0.3549993132811427,0.3557395855739585,0.3560934262572989,0.3577932298619274,0.3596303892753684,0.3609480812641084,0.3615528417781447,0.3628894663621807,0.3632341110217216,0.3657646797576372,0.3666843126874889,0.3695461434154901,0.3724475780606172,0.3753668819040504,0.3739527798933739,0.3750095238095238,0.3748707828211634,0.3738865447726207,0.3779310344827586,0.3811252268602541,0.3815359477124183,0.3845559845559845,0.0,1.6140970835771489,59.0059291105896,208.378596487795,314.2189726030713,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95729,41767,391.908408110395,7119,73.24844091132259,5579,57.735900301893885,2214,22.75172622716209,77.3612597271838,79.72583644889112,63.34108899169471,65.08868199162619,77.08669199018608,79.45150733184862,63.24055644749024,64.99105680641466,0.2745677369977244,274.3291170424982,0.1005325442044693,97.62518521152684,85.76392,60.311910763633406,89590.32268173699,63002.75858270055,255.3714,158.85882289517824,266213.4567372478,165394.91992518282,276.80881,132.92283741160094,285806.87148095143,136284.2856594554,3214.2494,1441.148741825732,3327228.1126931235,1475019.630232982,1377.05387,595.6241830546891,1425255.199573797,608961.613570276,2193.00552,904.9712015872168,2255633.1728107478,915538.3489032256,0.37961,100000,0,389836,4072.287394624409,0,0.0,0,0.0,21578,224.84304651672952,0,0.0,25802,266.1575906987433,2039601,0,73170,0,0,0,0,0,47,0.4909692987495952,0,0.0,0,0.0,0,0.0,0.07119,0.18753457495851,0.3109987357774968,0.02214,0.3190495260979842,0.6809504739020158,25.4627279820002,4.4923180700866086,0.3172611579136046,0.212224412977236,0.2337336440222262,0.2367807850869331,11.141910358051202,5.6000049370531935,23.487933400554727,12919.24798037149,62.71423154516701,13.859731579236536,20.02980793062677,14.43768905972352,14.387002975580176,0.5459759813586664,0.7677364864864865,0.6807909604519774,0.593558282208589,0.1196063588190764,0.7055435565154787,0.8975741239892183,0.847457627118644,0.7391304347826086,0.1592592592592592,0.4930787589498807,0.7084870848708487,0.6201848998459168,0.5544747081712063,0.1094196003805899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045725525184524,0.0070731261797,0.0092247361095589,0.0113800467812468,0.0137268080079835,0.0157139069606183,0.0178077296165824,0.020111034997495,0.0223177723177723,0.024422503152779,0.0269295948236019,0.0291473824951146,0.0313684687654524,0.0334354973530231,0.0353472696069309,0.0373645947681282,0.0394765517169809,0.0415739450533452,0.0436368183049575,0.0584304389591947,0.0726404923643747,0.0861980341351348,0.0985794050535746,0.1102152237610405,0.125735970318066,0.1386564869307035,0.150511778349967,0.1621257916715617,0.1728355361181678,0.1867873946232275,0.1997057741816844,0.2113588675922201,0.2226728171046303,0.2342865309981639,0.2456423820538076,0.2563939616919749,0.266108551522643,0.275066598651023,0.283722846613409,0.2926248366919866,0.3005550686532282,0.3084939025111481,0.3151888882236724,0.3213323952546156,0.3268613192573179,0.3326583923906658,0.3380466157191358,0.3425903138479074,0.3483836036131213,0.3499346810143971,0.3498473303441257,0.3507049593644802,0.3515768468846248,0.3524380448040936,0.352082438814942,0.352023194651288,0.3529904699309891,0.3537164934354486,0.3548277465746073,0.356075117370892,0.3572690635484703,0.3575849437918403,0.358081545546445,0.3601064473206725,0.3611140304781923,0.3603186471873921,0.3625766286567354,0.3641935941043084,0.3656952739808394,0.3696289509848832,0.3734028960817717,0.3756703892990094,0.377345537757437,0.3782894736842105,0.3776223776223776,0.3757075110907144,0.3780710659898477,0.3839009287925696,0.3801452784503632,0.0,2.1565834462020628,61.36027523864527,206.6316883489069,321.3320629195013,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95652,41868,394.2520804583281,7049,72.40831346966085,5515,57.09237653159369,2272,23.407769832308787,77.2430810454354,79.64946255699347,63.27207635196621,65.0509213580328,76.96242601310745,79.36609692559158,63.16974218178921,64.94981334872244,0.2806550323279566,283.3656314018924,0.1023341701770021,101.10800931035158,85.59342,60.2136524279405,89484.19269853218,62950.75108512159,257.18131,161.21072415932517,268273.8050432819,167941.08479730107,277.97731,133.8192237644452,286916.1753021369,137021.1732620034,3196.80708,1452.4160557532043,3311155.1457366287,1487540.8991507643,1359.58876,593.2691672513145,1409352.3501860911,608256.2974546682,2253.19864,937.55244059159,2323429.138962071,952897.0061419592,0.37975,100000,0,389061,4067.463304478735,0,0.0,0,0.0,21835,227.6481411784385,0,0.0,25900,267.17684941245346,2030279,0,72849,0,0,0,0,0,44,0.4495462719023125,0,0.0,1,0.0104545644628444,0,0.0,0.07049,0.1856221198156682,0.3223152220173074,0.02272,0.3214237379889024,0.6785762620110976,25.23112882079485,4.520044131693669,0.3182230281051677,0.2012692656391659,0.2339075249320036,0.2466001813236627,11.052531277330427,5.530737308917032,24.334181637740123,12945.57502900953,62.77017654172289,13.19664665161453,20.028354749507777,14.516067813115166,15.029107327485422,0.5392565729827743,0.772972972972973,0.7008547008547008,0.5736434108527132,0.1073529411764705,0.7058823529411765,0.9353932584269664,0.8810572687224669,0.6777408637873754,0.166077738515901,0.4828925018199466,0.6962864721485411,0.6379707916986933,0.5419615773508595,0.0919220055710306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.0044833952082445,0.0067307594692547,0.0092157002204858,0.0113108134224365,0.0137888894546565,0.0158552128473107,0.0180321842836137,0.0200834424083769,0.0221905912712228,0.0241101003989293,0.0260739188925516,0.0279928835138164,0.0300816944647621,0.0326579482468544,0.0344738447539576,0.0364837987900886,0.0383298044588367,0.040377354565595,0.0426070911043232,0.0573993186900457,0.0716964136081783,0.0851530676521227,0.097938090075677,0.1101093703813183,0.1255161023947151,0.1392999415732724,0.1519502808958819,0.163956001626399,0.1749385116049276,0.188050328038674,0.2004119687771032,0.2120644395307547,0.223545002519002,0.2347669855826462,0.2463829220663944,0.2570105997584865,0.2668147029317944,0.2770337865490428,0.2849983370987534,0.2931903796001159,0.3008291951653705,0.3081261032852725,0.3156884157976214,0.3222178950442995,0.328125,0.3344998871076992,0.3399599341593191,0.3455757213568394,0.3511763693415774,0.3523900805918166,0.3528787001020718,0.3527507633156169,0.3526656224620025,0.3529157086978591,0.3522297110146801,0.3514825484235488,0.3526292313029687,0.352579303708286,0.3537056677032589,0.3550556279632043,0.3557953095086152,0.3580658783783784,0.3597501860077108,0.360343992248062,0.3621734091866835,0.3635969726731758,0.367428698610537,0.3693177776196912,0.3708577194752775,0.3717109842684115,0.3722525247070259,0.373561013046815,0.3769337871287129,0.3756003842459174,0.3777134587554269,0.3816204287515763,0.380595461170102,0.3856741573033708,0.3995308835027365,0.0,2.1152576677130264,61.813937456417065,212.72688929535096,311.71269593407686,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95825,42214,397.5893555961388,7093,73.07070180015653,5510,57.02061048786851,2234,22.968953822071484,77.44904619750217,79.77671647926783,63.38601454967061,65.10763836951797,77.1754979203437,79.50211705017487,63.286070231328765,65.00956964615523,0.2735482771584685,274.5994290929588,0.0999443183418478,98.06872336274353,85.57472,60.17053415889307,89302.89590399165,62791.9012726062,257.76942,160.65259579747078,268498.55465692666,167152.21140772387,279.68801,133.73415787308485,289290.7278893817,137483.08421805588,3166.31228,1425.096576193977,3278500.7252804595,1461517.747921707,1318.45237,569.3952152782465,1363632.6324028175,582044.8519959565,2191.00586,906.3930108720904,2254746.9032089747,918412.4336596192,0.38346,100000,0,388976,4059.2225410905294,0,0.0,0,0.0,21799,226.95538742499343,0,0.0,25993,268.8233759457344,2042216,0,73264,0,0,0,0,0,56,0.5530915731802766,0,0.0,0,0.0,0,0.0,0.07093,0.1849736608772753,0.3149584096997039,0.02234,0.3154227522444057,0.6845772477555943,25.13554670633585,4.594948295866911,0.3288566243194192,0.2032667876588021,0.2346642468239564,0.2332123411978221,11.318232913047623,5.795922758759449,23.597416788526147,12948.292572689965,61.89985957220594,13.087230250986371,20.380186140535148,14.454914013467253,13.977529167217163,0.5430127041742286,0.7741071428571429,0.6810154525386314,0.576952822892498,0.11284046692607,0.698237885462555,0.9211267605633804,0.8426966292134831,0.7278688524590164,0.1050583657587548,0.4920443587270974,0.7058823529411765,0.6283833211411851,0.5303643724696356,0.1147859922178988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021571149347295,0.0046222618673532,0.0067374915020344,0.0090307900163549,0.011277545583046,0.0134299939926486,0.0157213788322135,0.0178711764765919,0.020091977516607,0.0220400896337907,0.0239483527181431,0.0261083743842364,0.0280941611842105,0.0298887024205421,0.0320644382793081,0.0341129798752014,0.0361101623870587,0.0381791787639983,0.0400831168831168,0.0421819696023318,0.057080864558124,0.071064132321268,0.084841688239548,0.0972693556351716,0.1089732782601365,0.1245297374984148,0.1382523160416357,0.1506805614632071,0.1629184714191222,0.1745871972244233,0.1883972256572934,0.2009830929617025,0.2129759306908119,0.2249380749211614,0.2355860009660563,0.2464932739391393,0.2571778594498273,0.2675466657687084,0.2763847538404066,0.2854319238634935,0.2936653621030028,0.3013033686888134,0.3083604777415852,0.3156051259981829,0.3227737650879829,0.3287516290048932,0.3344566343405599,0.3397212985760337,0.3449612403100775,0.3504041707259275,0.3512649299351076,0.3520670237604724,0.3527757862033093,0.353000577034045,0.353180013040128,0.3530687353969732,0.3531212039943839,0.3537305860596043,0.3548765957446808,0.3569357220373961,0.3582212257100149,0.3591769969058552,0.3600359847692372,0.3612024424612494,0.3630918013856813,0.3639319529705546,0.3651742993848257,0.3692790953353227,0.3715985496532545,0.3730300504148306,0.3718645771462512,0.3750066727165964,0.3758151313706869,0.3728878354614267,0.3742296387598369,0.3723062269317776,0.3748845798707294,0.3718263718263718,0.3734072022160665,0.3623076923076923,0.0,1.815766190911111,60.22703513281533,210.65350010085697,310.7065819945347,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95804,41987,394.0023381069684,7081,72.73182748110726,5500,56.793035781387,2248,23.099244290426288,77.3497797498425,79.68313521528783,63.33168066437421,65.06010357910846,77.07729273760248,79.41052496930959,63.2314156567826,64.96189068702618,0.2724870122400205,272.61024597824246,0.1002650075916165,98.21289208227311,86.3478,60.74719720651034,90129.6396810154,63407.78799059575,256.66363,160.03289563948366,267318.19130725233,166455.24783879967,278.88973,133.51686659577723,287102.1773621143,136222.3681799387,3174.6394,1433.2005157246988,3282734.875370548,1465024.8796758992,1341.92847,580.1296830357832,1386043.077533297,590887.4134334925,2216.89574,919.1812709227424,2281467.350006263,933920.904362855,0.38112,100000,0,392490,4096.801803682519,0,0.0,0,0.0,21728,226.17009728195063,0,0.0,25920,266.4606905765939,2033064,0,72934,0,0,0,0,0,51,0.5323368544110892,0,0.0,0,0.0,0,0.0,0.07081,0.1857945004198153,0.3174692839994351,0.02248,0.3176328502415459,0.6823671497584541,25.151351742058356,4.683700685905105,0.3296363636363636,0.1958181818181818,0.2358181818181818,0.2387272727272727,11.103907146178283,5.447389251133548,23.852985579287218,12900.430398694818,62.044939251425895,12.485489708567195,20.57488470152415,14.56677226161423,14.41779257972032,0.5416363636363636,0.7669452181987001,0.6839492553778268,0.5844255975327679,0.118050266565118,0.6992700729927007,0.9142011834319528,0.8463203463203464,0.7318611987381703,0.1027667984189723,0.4893462469733656,0.699594046008119,0.6284233900814211,0.536734693877551,0.1216981132075471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.004440974580997,0.0064241784561674,0.0087982200367777,0.0112704709592106,0.013583829743903,0.0156606851549755,0.0178434715147555,0.0200639839733434,0.0222827255140789,0.0245102561736937,0.0265516710303403,0.0283690130997182,0.0306038388664634,0.0327202582961121,0.0350902571838932,0.0371305833031416,0.0394568971776493,0.0414779103112921,0.0434578904078211,0.0579416827499869,0.0721888788975093,0.0853160046116759,0.0979928541403951,0.110406104746145,0.1258365668249051,0.1392507106792821,0.1521334227359324,0.1638022196349031,0.1750640936249638,0.1880839233181392,0.1998528027015033,0.2121963689368969,0.2226607340031266,0.2331550919813396,0.2440824468085106,0.2546877092727354,0.2647942139185404,0.2745730011916246,0.2837248187638146,0.2916507550772435,0.2996175393864255,0.3077587635210301,0.3138194627495147,0.3206369256555694,0.3270820754833224,0.3330414660078804,0.3388812541354914,0.3434080520052316,0.348554676667503,0.3489876796161,0.3493146907145418,0.3505236119344003,0.3499883970528514,0.3503620273531778,0.3493199054315453,0.3495889802266163,0.3510734556222752,0.3519000788130075,0.3533860186728312,0.3549933271930979,0.3558108161726778,0.3577551792242719,0.3599874498554492,0.3597985590708658,0.361296223703123,0.3621127765881513,0.3646203706617161,0.3671644930584771,0.3688294208463639,0.3706609496875427,0.3739560614926326,0.3756650620724601,0.3748843663274745,0.3770663119893597,0.3799880881477069,0.3803945745992602,0.3825680617635107,0.3838940981798124,0.3840438013296832,0.0,2.361545685734743,60.41674267616709,205.57177770544357,316.48541444193586,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95790,41785,392.7549848627205,7194,73.94300031318508,5620,57.99143960747468,2247,23.02954379371542,77.41775944651599,79.74514261503901,63.37436231324406,65.09494381421027,77.14442076143368,79.47362585842905,63.27439792123453,64.99871892184026,0.2733386850823081,271.51675660996943,0.0999643920095323,96.22489237000308,83.97576,59.13146552079257,87666.52051362356,61730.31164087333,253.16272,156.95331217978554,263610.75268817204,163173.9495028162,275.40958,132.32131715683997,283237.874517173,134904.7229332877,3237.8224,1447.7442928496948,3342946.570623238,1474247.1050030694,1368.0428,587.9083190228259,1412751.7590562687,598383.424050589,2220.72274,917.1434232477012,2278366.2177680344,923563.6082668907,0.37955,100000,0,381708,3984.841841528343,0,0.0,0,0.0,21403,222.72679820440547,0,0.0,25626,263.1798726380624,2052107,0,73579,0,0,0,0,0,48,0.5010961478233635,0,0.0,0,0.0,0,0.0,0.07194,0.1895402450270056,0.3123436196830692,0.02247,0.3233969263381028,0.6766030736618972,25.39800469255654,4.57181608504443,0.3202846975088968,0.2056939501779359,0.2389679715302491,0.2350533807829181,10.941299680124857,5.374823789419355,23.84793043511024,12846.289164607382,62.81912749064981,13.392690018646544,20.144703630390303,14.871100416455397,14.410633425157569,0.5393238434163701,0.7612456747404844,0.6872222222222222,0.573343261355175,0.109008327024981,0.6959761549925484,0.920424403183024,0.8496420047732697,0.6920415224913494,0.1206225680933852,0.4901823281907433,0.6842105263157895,0.6379435191889935,0.540796963946869,0.106203007518797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023997812857562,0.00468308110245,0.0068999807206421,0.0090999573439499,0.011144553811112,0.013345413086852,0.0154214657017633,0.0175961459949375,0.0197980334839224,0.0217689442010889,0.0242517425174251,0.0261348005502063,0.02806274542053,0.0300409743241295,0.0320062692692383,0.0338683688646504,0.0361086675291073,0.0384328280838534,0.0404637488442639,0.0426023674922697,0.0572811785941591,0.070380127963869,0.0836862629989936,0.097152041684613,0.108754042069118,0.1243370031485747,0.1377432648607418,0.1500170111422982,0.1617728650078955,0.1727458731025913,0.1865401987353206,0.1994620519800375,0.211400651465798,0.2225352112676056,0.233340656926288,0.2441538904006548,0.2547400100317672,0.2645126511909976,0.2732761647994381,0.2817064104763538,0.2898205806578324,0.2981364283879405,0.3053508150248051,0.3123915307185005,0.3188089257762732,0.3248291571753986,0.3309293169176926,0.3366210788550511,0.3421250064676359,0.3479120270929144,0.3488503428801936,0.3497062506019455,0.3506526422506653,0.3507048763577536,0.3509228162986298,0.3510137775666273,0.3507330356860137,0.3516970722015139,0.3522585709653748,0.3529380265600457,0.3539811395039277,0.3557121149330018,0.3581317415436171,0.3596007413527454,0.3602563793643527,0.3617071260767424,0.3631515911942511,0.3660930569100575,0.368252853380158,0.3708119709073566,0.3713646532438479,0.3734464180935616,0.3760040478148124,0.3762981062919975,0.3791635124905375,0.3803475134811264,0.3773614363778298,0.3800041059330732,0.3814773980154355,0.3860537592520452,0.0,2.560536600318664,58.62297480594895,209.6881910196428,328.8069767740876,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95713,41747,393.2799097301307,7106,73.00993595436357,5505,56.847032273567855,2252,23.037622893441853,77.3893283971574,79.7502679344775,63.35181630130408,65.09359678668672,77.11667041930323,79.48295254013092,63.25270051070304,65.00053824190007,0.2726579778541662,267.315394346582,0.0991157906010329,93.05854478664344,85.42798,60.06459400501619,89254.31237136021,62754.89641429711,254.27018,157.83423516369714,264992.8954269535,164237.5697801732,276.27479,131.86752432545006,285527.9115689614,135223.80784792456,3179.70288,1425.7286688171514,3287043.6826763344,1454508.6966422016,1367.18419,595.4688069906539,1412956.1292614378,606675.4954819657,2216.55208,903.0183694787833,2271715.064829229,904302.2427599356,0.3798,100000,0,388309,4057.014198698192,0,0.0,0,0.0,21516,224.117935912572,0,0.0,25778,266.1080521977161,2042299,0,73264,0,0,0,0,0,42,0.4388118646369877,0,0.0,1,0.0104479015389758,0,0.0,0.07106,0.1870984728804634,0.3169152828595553,0.02252,0.3153382451440054,0.6846617548559947,25.215761792112293,4.613729324749805,0.3280653950953678,0.2065395095367847,0.2277929155313351,0.2376021798365122,11.576827339018584,6.001264645686154,23.614958289959105,12860.126274038734,61.88955842692534,13.343731970004647,20.354331380683117,13.829155121961628,14.362339954275946,0.5522252497729337,0.7792436235708003,0.6982281284606866,0.5845295055821371,0.1223241590214067,0.7288389513108614,0.9411764705882352,0.8356164383561644,0.762589928057554,0.1755102040816326,0.4956834532374101,0.6998689384010485,0.6542397660818714,0.5338114754098361,0.1100658513640639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078855950656,0.004449309292874,0.006613716360833,0.0087527796675568,0.0109796266926924,0.0131710196852798,0.0152963476275884,0.0173976041305279,0.0193119233245118,0.0214268172888015,0.0235787186949215,0.0253421706030821,0.0271583879652273,0.029254634728813,0.031414692505234,0.0334735384392794,0.0356266501009473,0.0378730511094283,0.0397596748542145,0.041827273674341,0.0559941520467836,0.0694858673698971,0.0832668988377459,0.0961083479668983,0.1086993189820574,0.1241367640682339,0.1372836048879837,0.1501298811906485,0.1626123094345266,0.1737778397332103,0.1863450355373681,0.1991908614945264,0.2110034895476633,0.2227349268484702,0.2336652181088068,0.245098690768924,0.255546875,0.2659933417311499,0.2752606914706516,0.284077892325315,0.2926620568441987,0.2997592107723957,0.3071466572087249,0.3140938150994899,0.3203525213042317,0.3265293560023145,0.3329664006404643,0.3382412775912928,0.3428441970354068,0.3475955577831122,0.3482664012696022,0.3489011744643397,0.3497545951875342,0.351012800878435,0.3518774219411162,0.3521288309781611,0.3519413641676934,0.3522861260317044,0.3525730655117143,0.3540113437734099,0.3550736849989701,0.3557730328192962,0.357553624648449,0.3586652024831357,0.3584113502557668,0.3603474359643174,0.361440968257593,0.3652901926224348,0.3689999297209923,0.3719664773404297,0.3738403180841826,0.376551133932392,0.3778214557443571,0.3766877717598596,0.3777462121212121,0.3830673969992855,0.3792838481635162,0.3839249286005712,0.3748231966053748,0.3752479174930583,0.0,2.667905944134058,58.3725752815424,210.92270079470825,314.3774562103565,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95672,41735,392.6749728238147,7132,73.250271761853,5531,57.22677481394766,2211,22.72347186219584,77.35982293729873,79.73780002330709,63.33991942654043,65.0907305274423,77.09262633472206,79.47015549199065,63.2420540120905,64.99554646067536,0.267196602576675,267.64453131643506,0.0978654144499344,95.18406676694724,85.29862,60.01765661817157,89157.35011288569,62732.72913514044,255.50428,158.72661404477267,266493.60314407555,165339.0296522755,273.21383,130.70281625656116,282093.47562505223,133866.1435414571,3199.49316,1435.6219075882016,3312109.164645873,1468504.9684650549,1351.0725,584.1309964507562,1395738.5023831422,594112.4874040637,2190.68774,910.9225630313244,2253206.978008195,919607.3617593616,0.3803,100000,0,387721,4052.6068233129854,0,0.0,0,0.0,21653,225.71912367254788,0,0.0,25468,262.7728070908939,2041288,0,73154,0,0,0,0,0,50,0.5226189480725814,0,0.0,0,0.0,0,0.0,0.07132,0.187536155666579,0.3100112170499158,0.02211,0.3204906012531662,0.6795093987468338,25.31021287351313,4.595741598957675,0.3281504248779606,0.2080998011209546,0.2236485264870728,0.2401012475140119,10.967440350891904,5.239359758197702,23.572113851184152,12943.014175998846,62.22985101479785,13.586812829665575,20.202504407507792,13.797391130763256,14.64314264686123,0.5351654312059302,0.7463075586446568,0.6776859504132231,0.5788197251414713,0.1167168674698795,0.7020348837209303,0.9037974683544304,0.8666666666666667,0.7068965517241379,0.1476014760147601,0.4799037304452467,0.6640211640211641,0.6207885304659498,0.5395987328405492,0.1087984862819299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022481467979098,0.0045712084815681,0.0071323492111804,0.0092421441774491,0.0114181714657556,0.0134052623543182,0.0154678568153333,0.0176508998898094,0.0197143966168869,0.0217386856534904,0.0239924600979367,0.0261708130289817,0.0285423561576253,0.030364184882775,0.0325432190452613,0.0346032205386857,0.0365443345928878,0.0387591271158314,0.0406820190258356,0.0426880106720026,0.0574721049772242,0.0713694857753159,0.0847100065072734,0.0969371113519428,0.1090285834827549,0.1240225591755108,0.1371905914320893,0.1499568630374812,0.1624458816612325,0.1744142364949715,0.1877417755891512,0.200651839660437,0.2127071522616729,0.2246456908344733,0.2353414008390499,0.2464885462359874,0.2568881052549352,0.2663271958813875,0.2761756801197509,0.2849228515177876,0.2933203811638449,0.3014946669161676,0.3082502159277795,0.3151634926338483,0.3216357238199248,0.3276203843928145,0.3332708294268391,0.339222390279243,0.3448217866614917,0.3494107866295411,0.3511309659970128,0.3517697897170538,0.3524667597253359,0.3528646398056989,0.3525190544817032,0.3517539423474782,0.3529421089341196,0.3544141357638775,0.3559955429844861,0.3579388683842763,0.3593873332080436,0.3615038369257005,0.3629442691903259,0.3633671363187651,0.3639345843986685,0.36531182290443,0.3663027677222586,0.3677665134437378,0.3699111314060908,0.3699339119356636,0.369865520080505,0.3703505485683703,0.3696331738437001,0.3756071235833783,0.3793070716658756,0.3823953823953824,0.3867590454195535,0.3930894308943089,0.4010303687635574,0.3970023059185242,0.0,2.2621598335293034,60.82717062416857,203.97593740265748,320.0232141135102,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95851,41586,391.0965978445713,7027,71.94499796559244,5457,56.3270075429573,2233,22.88969337826418,77.34109898624328,79.63048947803823,63.34986309044478,65.04355900266445,77.06550561069474,79.35601516814286,63.24817344200044,64.94458591637367,0.2755933755485387,274.4743098953677,0.101689648444335,98.9730862907834,84.87006,59.69239628352756,88543.73976275677,62276.23737209581,253.88515,158.1042570855716,264264.14956547145,164337.29130167823,271.62815,130.00997402650984,279158.3290732491,132374.62465101018,3165.44956,1432.0439689822292,3269984.204650969,1461758.847925225,1346.20889,586.2510115564153,1392279.4858686922,599506.094655335,2206.20108,922.1146764733884,2265028.5547359963,933419.5854614018,0.37873,100000,0,385773,4024.715443761672,0,0.0,0,0.0,21473,223.37795119508405,0,0.0,25279,259.5591073645554,2043531,0,73366,0,0,0,0,0,53,0.5529415446891529,0,0.0,0,0.0,0,0.0,0.07027,0.1855411506878251,0.3177742991319197,0.02233,0.3203357703763878,0.6796642296236123,25.268993457265907,4.644364430159606,0.3309510720175921,0.203591717060656,0.2255818215136522,0.2398753894080997,11.360991161048418,5.660582623692106,23.857898308931205,12893.299079890014,61.651004183018,13.118808061481351,20.346552223074188,13.618109358900082,14.56753453956235,0.544621586952538,0.7713771377137714,0.6993355481727574,0.5751421608448416,0.1100076394194041,0.6909361069836553,0.9154518950437318,0.8526785714285714,0.7297297297297297,0.152027027027027,0.4967161274629044,0.70703125,0.6487481590574374,0.5339506172839507,0.0977295162882527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695002784669,0.0047522063815342,0.0070697542322165,0.0092899059841208,0.0112414367897871,0.0136367336969795,0.0157604653768961,0.0178627901045651,0.0201009131207484,0.0220035393884836,0.0239178087804478,0.0257740946246705,0.0279475354608108,0.0299610054222011,0.0320563020361058,0.0340595939683555,0.0362630544928135,0.03802438948579,0.0400423574847128,0.0419692461349591,0.0564135183891385,0.0699273658358154,0.0833036555986173,0.0962172607170611,0.1079123054566897,0.1233180541179949,0.1361286495190474,0.1489655758967489,0.1606961829454386,0.1723646418313542,0.1865192965840849,0.1996474265381828,0.2116919263302094,0.2231356173068934,0.233693499405836,0.2449255451161141,0.2563158364577754,0.2660178882826123,0.275501634283639,0.2847111650763468,0.2922409303940288,0.3005124365304069,0.3077159799732503,0.3133863175938912,0.3195187165775401,0.3266053914009006,0.3336255918234425,0.3389442053528228,0.3440450748008549,0.3493531720337751,0.3496602491506229,0.3511923622687258,0.3513193003261192,0.3520456983790994,0.3531490427625693,0.3527143691050416,0.3527645853519068,0.3538694942365726,0.3555215462392956,0.3558852122565081,0.3558184807877677,0.3572439077848845,0.3585456082866504,0.3608531598093043,0.3632186702321623,0.3651525530905833,0.3663781949915183,0.3684795377337524,0.3722055447642592,0.3741907121732875,0.3737901931104078,0.3740237509361292,0.3765730265666709,0.3783472723087547,0.3801621363853124,0.3844305622296972,0.3864343497199751,0.3843169287318767,0.3811634349030471,0.3871217998448409,0.0,2.3994973687260077,59.14596041384434,207.18319597060656,314.0707539788085,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95634,41824,394.44130748478574,7130,73.27937762720371,5565,57.51092707614447,2250,23.04619695924044,77.31769350596971,79.74074790460148,63.289715480586615,65.08162823911445,77.05196055055978,79.47689572960856,63.19227307871197,64.98812957696917,0.2657329554099306,263.8521749929197,0.0974424018746447,93.49866214527935,85.83058,60.33244958324499,89749.02231423972,63086.82015103936,256.50482,159.18614037192958,267574.61781374825,165813.02713671868,273.30601,130.15536961252303,281976.0231716754,133124.64342700024,3210.21356,1432.8901306903467,3319152.5608047345,1460688.5947365465,1364.21162,587.7816504898134,1407286.3521341784,595409.8547481152,2224.20588,911.4445154291566,2280466.08946609,914299.1553838104,0.38074,100000,0,390139,4079.501014283623,0,0.0,0,0.0,21790,227.15770541857495,0,0.0,25561,263.41050254093733,2035710,0,73000,0,0,0,0,0,33,0.3450655624568668,0,0.0,0,0.0,0,0.0,0.0713,0.1872669012974733,0.3155680224403927,0.0225,0.3202728002139609,0.679727199786039,25.491461238042845,4.5723565855342585,0.3250673854447439,0.2109613656783468,0.2197663971248876,0.2442048517520215,11.253464752690352,5.642617791885074,23.55647971810414,12912.480605229272,62.34265895169709,13.680750020959389,20.35839066364929,13.581092661092825,14.722425605995578,0.5376460017969452,0.7614991482112436,0.6920950801547816,0.5560098119378577,0.12214863870493,0.7071865443425076,0.907608695652174,0.8624708624708625,0.6828358208955224,0.1563786008230452,0.485553206483439,0.6947890818858561,0.6391304347826087,0.5204188481675392,0.1146953405017921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019146608315098,0.0044619316107573,0.0066192893401015,0.0087704143334789,0.0110187512081964,0.0129889975550122,0.0152000489666006,0.0173990335005465,0.0192604873455937,0.0215154062198897,0.0236513883898783,0.0256439257621716,0.0278550097827206,0.0299666807645887,0.0321117505450112,0.0342722324551418,0.0364333851736651,0.0384635359862058,0.0403267769799146,0.0420590474402694,0.0567997742640066,0.070489982395842,0.0842839436146299,0.0969634412226283,0.1086972593335797,0.1242320891412108,0.1371727971262474,0.1497009818030637,0.1614404467695863,0.1728379147733986,0.1867017604418364,0.1997052640703898,0.2122684151481816,0.2241556791799903,0.2346406885379588,0.2457434418501469,0.2563337468289357,0.266772533252244,0.2767677685293483,0.2854457726381901,0.2936700944969427,0.3017896227629715,0.3086709310589907,0.3148365887603782,0.3218821468541676,0.3282858798722518,0.3337297662714856,0.3392852597551353,0.3452924097884695,0.3505947660586835,0.3513546316399876,0.3517210032643279,0.3528947182850293,0.3530899891579327,0.3537627219374489,0.3540804121814334,0.3535922114576561,0.3549091745228788,0.3557746527006476,0.3562498885381556,0.3569170921468514,0.3576527191702488,0.3581837513290387,0.3584640755927973,0.3596642685851319,0.359764669131046,0.3608124253285543,0.3637445955260354,0.3658904397839658,0.3655358703424168,0.3655402624719923,0.3698527842969917,0.3699670802734869,0.3721623480853015,0.3761702127659574,0.3761751755325479,0.3787528868360277,0.3759595959595959,0.3750345208505937,0.3789796701189106,0.0,2.6447814374549865,57.20663516173675,208.30851178021533,329.8566768469236,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95712,41956,393.02281845536606,7250,74.55700434637245,5656,58.51930792377132,2320,23.831912403878302,77.34880342590687,79.70754281981411,63.338894218876014,65.07756654464826,77.06194254582725,79.4201063022315,63.23330464844222,64.97453524164517,0.2868608800796153,287.4365175826057,0.1055895704337928,103.03130300309248,85.61564,60.229063795159085,89451.31227014375,62927.39029082987,256.90702,159.85652787590504,267846.27841858915,166447.82041531368,282.94021,135.27354192039675,292343.7917920428,138745.26226062828,3263.82524,1477.417961750513,3379262.1614844534,1512821.9259345888,1392.66587,608.2793262825126,1437970.7769140757,618450.5321317468,2292.0273,955.3752706059428,2357349.548645938,966740.7553725092,0.38093,100000,0,389162,4065.968739551989,0,0.0,0,0.0,21675,225.8650952858576,0,0.0,26364,272.1602306920762,2037345,0,73108,0,0,0,0,0,53,0.5537445670344366,0,0.0,0,0.0,0,0.0,0.0725,0.1903236815162891,0.32,0.0232,0.3205986608901142,0.6794013391098858,25.40595382149038,4.507350267872913,0.323019801980198,0.2153465346534653,0.2194130127298444,0.2422206506364922,11.031326662023924,5.571908532850636,24.74992537555631,13036.274424980726,64.03986583437477,14.273705139736302,20.765186798370927,13.910535597019631,15.090438299247907,0.5498585572842999,0.7816091954022989,0.6836343732895457,0.5914585012087027,0.1277372262773722,0.7015781922525107,0.9140625,0.8217391304347826,0.7247386759581882,0.155893536121673,0.5002346316283435,0.7206235011990407,0.6371616678858815,0.5513626834381551,0.1210478771454381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021163914007675,0.004480395734501,0.0068286743442747,0.0091630349759749,0.0114486741499918,0.0136509390746678,0.016115058048865,0.0186791875063795,0.0208267334321189,0.0229670948262627,0.025100957300699,0.027279724944835,0.0293216540209322,0.031544377297108,0.0338350130491742,0.0360102502634896,0.0381967094295861,0.0404855779207304,0.0424837280875044,0.0443779891842327,0.0591091848989608,0.0737213366963547,0.0872160730210355,0.0994529195160441,0.1111427546779739,0.1264068714563764,0.1396284074148743,0.1528478654317044,0.1641559829059829,0.1752936759105294,0.1895819866408101,0.2022183746347798,0.2145110410094637,0.2261381286779987,0.2367123709751964,0.2480718085106383,0.2589820359281437,0.2687348685321772,0.2784787126520322,0.2867194572728418,0.2947687747493226,0.3025277940315974,0.30985932171277,0.3169377944543678,0.3229615950040701,0.3292132892985656,0.3353843844970547,0.3403329814430891,0.3455884256024018,0.350405023879258,0.351254093831287,0.3520521334196713,0.3527220387774109,0.353502446934816,0.354065204116587,0.3544847694314432,0.3533864415386568,0.3544266337854501,0.3555391913414279,0.3571735549029439,0.358629751290474,0.3601488578328516,0.3611752845801655,0.3604034685716853,0.3626559628590773,0.3641535154406753,0.365602826692712,0.3690268573421695,0.3701229855810009,0.3743005595523581,0.3770062083237526,0.3791931830439003,0.3778162911611785,0.3788819875776397,0.3795019157088122,0.3797238372093023,0.3855819067064551,0.385880882965431,0.3864406779661017,0.3822257176563114,0.0,2.219213971449835,61.5653718597241,218.8860177767377,321.7985424834064,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95636,41896,395.1336316868125,7198,73.98887448241248,5602,57.96980216654816,2275,23.296666527249155,77.26744378178137,79.68392405921354,63.28338998351626,65.06976637737557,76.99578931389843,79.41453722486429,63.18366473480771,64.97424185577688,0.2716544678829393,269.38683434924826,0.0997252487085518,95.52452159869064,85.81122,60.30704472238595,89726.90200342967,63058.9367208854,256.68789,159.57773138431483,267799.2701493162,166257.84368262457,275.51176,131.90368882748396,285165.73256932537,135508.68869732317,3237.88072,1442.627093575138,3351507.089380568,1474333.6124211971,1333.08702,576.8155865191115,1378521.8432389477,587740.7216101792,2247.5751,930.9306920721232,2303597.243715756,933117.0876417042,0.38058,100000,0,390051,4078.49554561044,0,0.0,0,0.0,21679,226.03412940733617,0,0.0,25609,264.7956836337781,2034530,0,72991,0,0,0,0,0,53,0.5541846166715463,0,0.0,0,0.0,0,0.0,0.07198,0.1891323768984182,0.3160600166712976,0.02275,0.3131273111463286,0.6868726888536715,25.415237866461226,4.597011961504866,0.3250624776865405,0.2079614423420207,0.2277757943591574,0.2392002856122813,10.772375382833046,5.2206632853064345,24.357603049131946,12911.806218217627,62.6770202002095,13.458592151987208,20.40599389213325,14.114937675900222,14.69749648018881,0.5355230274901821,0.7579399141630901,0.6886326194398682,0.5658307210031348,0.1052238805970149,0.6979560938682816,0.8945868945868946,0.8528735632183908,0.737037037037037,0.1433962264150943,0.4854006073347349,0.699017199017199,0.637085137085137,0.5198807157057654,0.095813953488372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020568626258941,0.0043804502129385,0.0065891000649772,0.0088102593285098,0.0107732530341102,0.0128528944473866,0.0152639843383567,0.0173763897538514,0.0195503021503287,0.0217406887794287,0.0239782575252551,0.0261946829929736,0.0281355443996378,0.0300769698405992,0.0322763774488553,0.0342606663978744,0.0362598779944693,0.0382902753702915,0.0400586681090977,0.0420376587359509,0.0572115384615384,0.0713193397016926,0.0842802831397424,0.0972915481982266,0.1096928810481529,0.124837189601313,0.1374812800713747,0.1491234613950018,0.1611937105572788,0.1733802983279459,0.187514154148109,0.2003141247833622,0.2120717426320142,0.224076424757069,0.2347112897011064,0.2461584480905797,0.2567184500691933,0.267205976664904,0.2765213442325159,0.2848956482871649,0.2929605186986222,0.3000865780606514,0.3080038367259938,0.3147588192944564,0.3206603727675313,0.3275050935358399,0.3334836979675714,0.3386392288199264,0.3447363643436989,0.3495515517104532,0.3506542611372935,0.3512585338942142,0.3524701296500296,0.3528217915078065,0.3530219370243247,0.3528561765971837,0.3533509335538662,0.3535406753708612,0.3542787621234449,0.3561499050553545,0.3564209218723532,0.3581501740427648,0.3588452217890633,0.3591546132422963,0.3596062687433491,0.360829069919979,0.3637977438011796,0.3651164996364326,0.3666808119386095,0.367347758018546,0.3699486182474656,0.3720715835140998,0.375048231511254,0.3755336489947993,0.3803288090231313,0.3799079011148812,0.3822055137844611,0.3846153846153846,0.3847701149425287,0.3841463414634146,0.0,2.3948442341845912,58.16877576844106,205.47827042309143,335.52998719830293,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95829,42062,395.15178077617423,7123,73.06765175468804,5572,57.4669463314863,2242,22.926254056705176,77.40182060844235,79.71375399810829,63.36325590393732,65.07491838673494,77.12452367830386,79.43976549588004,63.2616100314814,64.9777787477861,0.2772969301384904,273.98850222824933,0.1016458724559186,97.13963894883192,86.8967,61.04453518650863,90678.91765540704,63701.5258288291,257.45623,160.08786552874358,268018.4495298918,166412.08353290084,278.89058,133.59826602226488,286903.317367394,136271.8203388547,3184.91204,1439.0447038910445,3286100.074090306,1464293.1720993042,1340.47351,583.9319882417468,1385181.6047334317,595711.2755447166,2209.34938,917.7639148591684,2261977.8563900283,921265.2152079354,0.3834,100000,0,394985,4121.768984336683,0,0.0,0,0.0,21825,227.06070187521524,0,0.0,25963,266.7564098550544,2033423,0,73089,0,0,0,0,0,58,0.6052447588934456,0,0.0,0,0.0,0,0.0,0.07123,0.1857850808555033,0.3147550189526885,0.02242,0.3167842406495408,0.6832157593504592,25.12750235129036,4.588379811874356,0.3176597272074659,0.2112347451543431,0.2395908111988514,0.2315147164393395,11.182375069232926,5.62547269230496,23.841384515593905,13031.06664827425,62.887298626155705,13.802014177515058,19.943043992676323,14.798351429992795,14.343889025971524,0.5463029432878679,0.7502124044180118,0.6983050847457627,0.5842696629213483,0.1124031007751938,0.7166546503244412,0.916030534351145,0.8660508083140878,0.7090301003344481,0.1793893129770992,0.4898446833930704,0.6670918367346939,0.643979057591623,0.5482625482625483,0.0953307392996108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002085906964499,0.0044593540017634,0.0067463377023901,0.0090597925998151,0.011325627026972,0.0138136731951626,0.0159506701319879,0.0182894468258828,0.0203814624772573,0.022373929152636,0.024386243657424,0.0265324136798456,0.0285752464358033,0.0306927227049956,0.0329530921242625,0.0348208842644734,0.0369845147399801,0.0390717352081129,0.040965557355935,0.0429823283308702,0.0581143095536086,0.0716757446185692,0.0857636887608069,0.0979084157115693,0.1102977576019295,0.126091870253599,0.1395018698420433,0.1521616651252777,0.1638989092616704,0.1753684977290256,0.1889688404160347,0.2025003241561135,0.2143974620833514,0.2262466675407543,0.236478167187019,0.2473237316093035,0.2579821342939031,0.2684018213502726,0.2774242578918116,0.2862358650368539,0.2946646464880119,0.3029006348426923,0.310806974378386,0.3178658741191697,0.3243768524367135,0.3302197192818149,0.3357737313059258,0.3411612049664156,0.3471465015993059,0.3525289055488094,0.3531503380653503,0.3540418852492875,0.3539894066602806,0.3547646217625561,0.3555855882615024,0.3554625840957504,0.3556879019228942,0.3566644780039396,0.3577387261102944,0.3586253706283713,0.3601754484620142,0.3614126673389887,0.3626074198281283,0.363265945776524,0.3641941149580155,0.3666083961698019,0.3672398551344569,0.368746857717446,0.370362563237774,0.3734676007005253,0.375811614083219,0.3795222572543152,0.3798380976473564,0.3791813044142355,0.3814741968717804,0.3814652621612025,0.3799877225291589,0.3779141104294478,0.3797293565313449,0.3780769230769231,0.0,2.605590692620847,60.95165566504171,212.98794326673436,314.52084679793387,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95708,41658,391.9212605006896,7047,72.50177623605133,5481,56.80820830024658,2200,22.68357922012789,77.32145341825886,79.71002750531639,63.3143933609397,65.08083605302882,77.05542909533216,79.44192439073494,63.21730053651227,64.98542723622188,0.2660243229266967,268.1031145814501,0.0970928244274276,95.40881680693758,85.55932,60.14828804705385,89396.2051239186,62845.62214971982,256.9617,160.34899318280554,268028.9526476366,167086.94591530174,274.86956,131.751631211709,284684.84348225856,135695.2418445816,3171.2254,1428.5790763715918,3287966.648556025,1467341.8649697783,1367.73018,593.9237560151327,1419428.3445480005,610920.7757085429,2189.49272,903.5016668344504,2259068.437330213,918287.0471733776,0.37806,100000,0,388906,4063.463869269027,0,0.0,0,0.0,21802,227.32686922723283,0,0.0,25606,265.03531575207927,2036642,0,73086,0,0,0,0,0,57,0.5955614995611652,0,0.0,0,0.0,0,0.0,0.07047,0.1863989842882082,0.3121895842202355,0.022,0.3144441439004598,0.6855558560995402,25.3100070645218,4.59455085396534,0.3229337712096333,0.1981390257252326,0.2337164750957854,0.2452107279693486,10.964260352978654,5.310346287937047,23.388452301897576,12877.375357642031,61.83105197044452,12.715199096598182,20.111499152892645,14.19878181073611,14.805571910217584,0.5322021528918081,0.7697974217311234,0.6790960451977401,0.5807962529274004,0.1004464285714285,0.7183613752743233,0.9279538904899136,0.8782051282051282,0.7661870503597122,0.1313868613138686,0.4703451628585318,0.6955345060893099,0.6075268817204301,0.5294117647058824,0.0925233644859813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594634027721,0.0045837136193083,0.00677074874127,0.0090751110252944,0.0113645612892723,0.0137621220764403,0.0157255473857042,0.0181235258681424,0.0201803349076857,0.0223148024935256,0.0243392318891098,0.0265254985725728,0.0286798819063686,0.0308307400614141,0.0325763831544178,0.0345840096773193,0.0365739973483593,0.0386064323297736,0.0405170710400698,0.0424396548130237,0.0563615663418251,0.0700206220100702,0.0833210889779811,0.0965946162103003,0.1086234001920297,0.1241201934780538,0.1373681193877767,0.1496293613939419,0.1611986235492765,0.1725990669741005,0.186665230504093,0.2000173175166681,0.212638928159732,0.2237060856630354,0.2349402228308091,0.2466428278847325,0.2566919473566807,0.266262812443805,0.2756184947504478,0.2836712962432875,0.2913288379463098,0.298793321173004,0.3063000142052181,0.313557188582663,0.3200792329472955,0.3270583597186118,0.3326658072268045,0.3382472653268888,0.3437390843111634,0.348224649150575,0.3485485000269295,0.34923538148413,0.3493711179030691,0.349645902587079,0.351108466002083,0.3516458221437888,0.3509389671361502,0.3514398013386616,0.3526502250594739,0.3538725779614621,0.3548562738213702,0.3549147839873167,0.3555046834964506,0.3571204023891858,0.3590400464025908,0.3611526651444768,0.3616140713916192,0.363209939148073,0.3656397014608609,0.3658029430582213,0.3686526122823098,0.3704398135747576,0.3734739533397251,0.3773716409819562,0.3788731051577843,0.3832508748642452,0.387704280155642,0.3881457089936201,0.3883171070931849,0.3854207056998837,0.0,1.7791198517540725,60.87942181205611,206.82196664999083,312.3875505410803,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95699,41774,392.3447475940188,7099,72.7071338258498,5513,56.959842840573046,2271,23.291779433431905,77.3455376358958,79.7312125501305,63.32130932583449,65.0868881396018,77.06679514783332,79.4562320942201,63.21858947946277,64.98881671044424,0.2787424880624769,274.980455910395,0.1027198463717269,98.07142915755662,86.31326,60.63070078073479,90192.43670257788,63355.62626645502,257.02144,160.57158741879005,267937.05263377883,167152.45448624334,280.87442,135.00751198015942,290110.7012612462,138325.02604472896,3168.59524,1436.8942867623623,3277188.3509754543,1467659.564637416,1355.02199,590.634044654607,1399659.850155174,600918.0186361475,2234.55058,928.4645111398108,2295336.711982361,935592.0961028256,0.37975,100000,0,392333,4099.65621375354,0,0.0,0,0.0,21781,226.9198215237359,0,0.0,26190,270.1909110858003,2033374,0,72932,0,0,0,0,0,48,0.5015726392125309,0,0.0,0,0.0,0,0.0,0.07099,0.186938775510204,0.3199042118608254,0.02271,0.3226581265012009,0.677341873498799,25.17908161341401,4.596197623648247,0.3243243243243243,0.2040631235262107,0.2388898966080174,0.2327226555414475,11.242881979263508,5.627694053909107,24.15377988067333,12930.507528463428,62.30157685434655,13.183034842231203,20.33957346546404,14.751810983998832,14.02715756265248,0.5583167059677127,0.7706666666666667,0.6996644295302014,0.6097190584662111,0.1223694466095089,0.7338593974175036,0.9303621169916436,0.8813186813186813,0.7838709677419354,0.1666666666666666,0.4989075018208303,0.695822454308094,0.6376594148537135,0.5561072492552135,0.1105626850937808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012401341452,0.0047162635022059,0.0067820701558454,0.009187178601191,0.0114246764873443,0.0135261764106742,0.0156635597887051,0.017952881345547,0.0198687009162303,0.0219659808911327,0.0240195274040039,0.0261914543960558,0.028174374588545,0.0303567380417533,0.0325287154666198,0.034674909797678,0.0368467395245247,0.0389413596263622,0.0409430312610495,0.0432929751807781,0.0576832694496955,0.0714106294350365,0.0845490229004429,0.0980408661433892,0.1108579625762082,0.1272119564642543,0.1398297890402818,0.1526041111939503,0.1645089214124589,0.1757267379449525,0.1892229900919647,0.202419896444897,0.2146511931719212,0.2259889478579635,0.235926733152808,0.2472767970922952,0.2580000669695177,0.2677940547717095,0.2767693040775112,0.2849162011173184,0.2932057704098749,0.3007856341189674,0.3082691648037093,0.3148496353162389,0.3206963108634691,0.3268170179239708,0.3322831101609091,0.3375974999364821,0.3425031010957204,0.3473499953935852,0.3488215850151837,0.3493782426089105,0.3501237832667529,0.351145809281921,0.3514463729417,0.3510156632403328,0.3508238276299112,0.3524057217165149,0.3537789951211161,0.3552131852382658,0.3560444937983474,0.3565182829888712,0.3564112291350531,0.3571027512633352,0.3586917107839582,0.3596003566371217,0.3589501402484401,0.3606215652833049,0.3621577758961332,0.3647941869285743,0.3673254643608747,0.3683592916577768,0.3694263487445449,0.372834585313506,0.3767632481890964,0.3777292576419214,0.3794663754095803,0.3794956593633733,0.3757643135075041,0.3768059351815697,0.0,2.5340016149275337,61.25957514840617,207.59338245018617,312.71807373741416,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95612,41523,390.94465129900016,6950,71.4868426557336,5415,56.05990879805882,2223,22.884156800401623,77.23812690061078,79.66982993153225,63.25655152000609,65.05464783931154,76.96228744906298,79.39284589312864,63.15539028145599,64.95526876439276,0.275839451547796,276.9840384036115,0.1011612385500981,99.3790749187866,85.8253,60.40132429237705,89764.15094339623,63173.37184911627,256.18304,159.89350018418295,267400.0439275405,166691.4092207913,274.74312,132.11171362632692,283551.7717441325,135257.649620249,3120.22628,1413.0322824468726,3233062.2934359703,1447518.640387059,1308.82313,570.5556620727402,1354728.2035727734,582578.8207262065,2193.95652,918.1090781193476,2261174.747939589,931737.8121440236,0.37662,100000,0,390115,4080.1886792452833,0,0.0,0,0.0,21747,226.87528762080075,0,0.0,25548,263.4711124126679,2028860,0,72835,0,0,0,0,0,44,0.4601932811780948,0,0.0,2,0.0209178764171861,0,0.0,0.0695,0.1845361372205406,0.3198561151079137,0.02223,0.319015047879617,0.680984952120383,25.25433256191584,4.564501446998295,0.3268698060941828,0.2036934441366574,0.2326869806094182,0.2367497691597414,11.089129323762096,5.54467199418765,23.910926855631605,12800.674617895322,61.24437209676621,12.826378583324404,19.91786077935096,14.277976631427483,14.222156102663376,0.5407202216066482,0.7642792384406165,0.6745762711864407,0.5904761904761905,0.1146645865834633,0.6750184229918939,0.9098837209302324,0.8085106382978723,0.7290969899665551,0.1477663230240549,0.4958107442089699,0.6982872200263505,0.6325167037861915,0.5473465140478668,0.1049445005045408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023512242581482,0.0044425060602679,0.0066099423279993,0.0089344703861439,0.0111341801009607,0.0129893945413979,0.0152073027691366,0.0173660769010746,0.0195978151913753,0.0216832423463378,0.0236292374620372,0.0257904092557771,0.0278503941870278,0.0298141256275708,0.031848646639059,0.034135590414304,0.036211150504862,0.0383940165169064,0.040274394686986,0.0424681827665345,0.0572972746944877,0.0714757259171548,0.0845292374929086,0.0969994418056009,0.1087069011035429,0.1235701576004067,0.136846019015244,0.1498353282244225,0.1610497710446356,0.1725760195916263,0.1858229486972002,0.1986687481028576,0.210853220006538,0.2217571387872279,0.2327249884282219,0.2436109415746546,0.2544407158836689,0.2641437093336641,0.2737848841176337,0.2829566854990584,0.2913673656481728,0.2990969860443297,0.3056063231349837,0.3120498298522179,0.3184788704918432,0.3244195970265556,0.3297788160819925,0.3352917134974967,0.3410444461782528,0.3463949220147622,0.3468659138548921,0.3481975008293708,0.3480117653713445,0.3481619141645856,0.3485689557405915,0.3476279198681921,0.3467723957835738,0.3471921800439212,0.3475141923275417,0.3491789730875642,0.3513620436306092,0.3523163527141805,0.3542132579433731,0.355577083380269,0.3562247343322601,0.3576680672268907,0.3581510334320292,0.3612670027584895,0.3639610963748895,0.3674535449397879,0.3694074414331649,0.3737708422402736,0.3750079128948534,0.3765110941086457,0.3783477932855526,0.3825272641062114,0.3852334748332323,0.3928643014632191,0.3893465129049973,0.3911382734912146,0.0,2.270289043102438,59.87547383393152,204.17930783944283,309.85297260042665,fqhc6_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95724,41762,392.7646149346036,7070,72.72993188750992,5530,57.24792110651456,2219,22.85738163887844,77.33641368994157,79.71263490912669,63.332022412709286,65.09001635055755,77.06584239033786,79.43889857547673,63.23276680822168,64.99130644492672,0.2705712996037022,273.7363336499641,0.0992556044876096,98.70990563082673,85.30214,59.94696943826245,89112.59454264343,62624.80614920234,254.57861,158.47623791934328,265409.3644227153,165016.49938809758,278.18956,133.22793077059936,286685.00062680204,136155.25463237485,3649.25674,1651.5225305274346,3782091.669800677,1695511.6970533037,1326.62194,585.0201967904951,1373545.881910493,599170.9089574032,2189.26438,915.8613234558816,2258255.129330158,934673.708408566,0.37993,100000,0,387737,4050.572479211065,0,0.0,0,0.0,21608,225.17863858593452,0,0.0,25897,266.725168191885,2041330,0,73352,0,0,0,0,0,46,0.4701015419330575,0,0.0,0,0.0,0,0.0,0.0707,0.1860869107467165,0.3138613861386138,0.02219,0.3191374663072776,0.6808625336927224,25.11404004564892,4.563445149287317,0.3361663652802893,0.2014466546112115,0.2300180831826401,0.2323688969258589,11.065017988523294,5.419266597288342,23.79668554105776,12845.17391291586,62.6373282302621,13.165786058521483,20.833100762022625,14.274380381411603,14.364061028306391,0.5488245931283906,0.7639138240574507,0.6966110812264659,0.5880503144654088,0.1097276264591439,0.6989720998531571,0.9206798866855525,0.8733031674208145,0.7169117647058824,0.1559322033898305,0.4997600767754319,0.6911957950065704,0.6414961185603387,0.553,0.0959595959595959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017733371164525,0.0037322893741315,0.006284582973755,0.0086084234490609,0.0106914336286786,0.0130364817794797,0.0153581007352716,0.0176638758423524,0.0197008577591935,0.0219990582069078,0.0242324842396596,0.0262314942198312,0.0283619386485402,0.0303336183011113,0.0326588312988205,0.0349054751051712,0.0368821056555323,0.0387990953793804,0.0406468576892297,0.0426956929326597,0.0578567624855123,0.0711005095048282,0.0841958452616897,0.0967897912418273,0.1089517947853213,0.1244623854762181,0.1384796387764187,0.1505008187482721,0.1622287915817334,0.1730258365825442,0.1870379735938794,0.2001189382061956,0.2113852940856885,0.2223448064928397,0.2329340659340659,0.2437468208859499,0.254331717644437,0.2644196187736018,0.273534313669913,0.2823398876725804,0.2900045082014588,0.2976707784319222,0.304877039978256,0.3118251250987622,0.3183323828821723,0.3245678829960112,0.3305733440064038,0.3370184723423744,0.3424941395878932,0.3468503572985325,0.3472576057799884,0.3482290632240979,0.3487537950999082,0.3495414306205537,0.350471191697483,0.3505747126436782,0.3506609049313676,0.3522560664217584,0.3538419328840647,0.3546670012187253,0.355694608865588,0.3568242640499554,0.3584976999180793,0.358967464372143,0.3605287916435481,0.362483991531847,0.3650784527846428,0.3681923430710185,0.3699745186862967,0.3700850585780773,0.3711960040699287,0.3719785864921862,0.3718171855862824,0.3722933643771827,0.3712786259541984,0.3722424242424242,0.3752725007785736,0.3792607802874743,0.3850400220811482,0.3854406130268199,0.0,2.0320903490677398,60.227899034979885,214.62843729603557,314.60949733538683,fqhc6_100Compliance_baseline_low_initial_treat_cost,0 -100000,95615,41998,395.73288709930455,7267,74.89410657323643,5679,58.87151597552685,2270,23.37499346336872,77.26635035352784,79.7041792787259,63.26822878755484,65.07199178343876,76.98621671437253,79.42379965789041,63.16536880632894,64.97190540565741,0.2801336391553093,280.3796208354896,0.1028599812258974,100.0863777813521,85.80572,60.38408913040831,89739.93620247868,63152.56971269331,259.31042,160.79413661313507,270667.6567484182,167636.0331164973,281.00164,134.18940302614632,290920.5982324949,138028.26257059228,3782.18609,1684.3082884205749,3921234.743502589,1727437.7520300336,1361.36963,588.2489237525967,1411119.803378131,602769.4599585878,2232.28666,925.4413977774316,2299508.2779898555,936740.762065533,0.38187,100000,0,390026,4079.088009203577,0,0.0,0,0.0,21938,228.86576373999893,0,0.0,26184,270.888458923809,2031930,0,72909,0,0,0,0,0,47,0.4915546723840402,0,0.0,0,0.0,0,0.0,0.07267,0.1903003639982192,0.3123709921563231,0.0227,0.3173605655930872,0.6826394344069128,25.23517373033079,4.565669710351236,0.3345659447085755,0.2002113048071843,0.2345483359746434,0.2306744145095967,11.021036249464489,5.487075473428648,24.06496852858948,12966.664216980533,63.71959455618787,13.354931479022644,21.30748334418304,14.62859134762544,14.428588385356758,0.5493924986793449,0.7695690413368513,0.7047368421052631,0.5623123123123123,0.1198473282442748,0.7046289493019838,0.8882521489971347,0.8780487804878049,0.7310344827586207,0.1512915129151291,0.500463177396943,0.7170050761421319,0.6507936507936508,0.5153550863723608,0.1116458132820019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020673720053508,0.0043824499112351,0.0066925975199813,0.0090287945339189,0.0113597035890963,0.0133310231662199,0.0156658229915088,0.0178208311619304,0.0199312433494311,0.0220616866482221,0.0242620797241266,0.0263347244207799,0.0283293701038674,0.0304155067532735,0.032350024789291,0.034311848762973,0.0365679222206098,0.0386888378807864,0.0408617818484596,0.0425423180817888,0.0573432860787019,0.0708222422502148,0.0846761486585852,0.0973593014314756,0.1099727497412281,0.1243723649922671,0.1378679987246253,0.1501365362461066,0.1625046829007225,0.1740088105726872,0.1877090030420055,0.2008303793077281,0.2134206112357592,0.2247348584450872,0.2355521753028449,0.2478091096665409,0.2577736561602664,0.2675353635462654,0.2765529467918267,0.2850783598357082,0.2941960148285449,0.3026380526204812,0.3104502369668246,0.3168204008684283,0.323984432011676,0.329740474603057,0.33559016023471,0.3404371932955197,0.3455821313686832,0.3504492600422833,0.3509715873080087,0.351331982745552,0.3521949567499682,0.3531608737821914,0.3541520816265733,0.3537987017969217,0.3529803952694658,0.3543200724816737,0.355377284102986,0.3563820248897177,0.3574025582578226,0.3582760128821916,0.359884492970512,0.3603157823710667,0.3616036821705426,0.363156512605042,0.3651359273521466,0.3670656971390468,0.3713030850423263,0.3729445736745007,0.3738270469181233,0.3768442513010354,0.3782330345710627,0.3794056668970283,0.3839176037040536,0.3857602095487558,0.3836332871865867,0.3785656071719641,0.3807947019867549,0.3849641103135625,0.0,1.9841473620948096,60.3758083938604,212.4776443923436,332.68723071200424,fqhc6_100Compliance_baseline_low_initial_treat_cost,1 -100000,95711,41784,393.48664207875794,7107,73.05325406693066,5563,57.60048479276154,2294,23.654543364921484,77.34534288058313,79.71448630715332,63.32656324425341,65.07463357964518,77.07306684164521,79.43872377082327,63.226819543989805,64.97536488729881,0.2722760389379175,275.7625363300491,0.0997437002636019,99.2686923463708,85.2445,59.988951834273415,89064.47534766118,62677.17590901089,253.835,158.1454904666467,264673.67387238663,164696.12736952567,278.61769,133.70637379471088,287469.70567646355,136866.0266113906,3643.4493,1643.9227066995777,3777267.545005276,1688138.193833077,1309.29051,566.1696550196564,1355675.9202181569,579255.8464751133,2238.05466,928.2441419818804,2310519.6476893984,947345.6432306032,0.37995,100000,0,387475,4048.3852430755087,0,0.0,0,0.0,21482,223.89276049774844,0,0.0,25989,267.91068947142963,2038134,0,73148,0,0,0,0,0,40,0.4179247944332417,0,0.0,0,0.0,0,0.0,0.07107,0.1870509277536517,0.3227803573941185,0.02294,0.3289491343443833,0.6710508656556167,25.202812008439416,4.498205598024799,0.3350710048534963,0.2042063634729462,0.2406974653963688,0.2200251662771885,11.313244937869207,5.952763703228913,24.3613359180108,12896.63950264153,62.804379564085885,13.215882932949224,21.05660661793953,15.028847522070189,13.503042491126957,0.543951105518605,0.7570422535211268,0.6765021459227468,0.573562359970127,0.1119281045751634,0.6965566714490674,0.8820224719101124,0.8454935622317596,0.7459807073954984,0.1187739463601532,0.4929239625809546,0.7,0.6201716738197425,0.5214007782101168,0.1100726895119418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.004510165609227,0.0068584878860435,0.0091306114158033,0.0113079379283695,0.0134291735814862,0.0153614058693414,0.0173024509253493,0.0195960174186821,0.0218341505358733,0.0239989338363438,0.026134729924009,0.0282137787743514,0.0302465256673088,0.0322287695689414,0.0343084556543311,0.0363815244407622,0.0384798987152612,0.0404878505255934,0.0421942247371327,0.0569578612082919,0.0708305425318151,0.0847804417396778,0.0982651053667055,0.1107582248295946,0.1264828826922059,0.139018927210386,0.1510687925360258,0.1628672502057349,0.1739107116040589,0.187123538602446,0.2002577124232547,0.212487894055301,0.2229982703128763,0.2338190108038457,0.2451999822632139,0.2554497661595473,0.2656315049226441,0.2753175693317138,0.283596622867813,0.2923089385733463,0.2996748385889398,0.3075939475740569,0.3142374222318121,0.3205026921253813,0.3262046595379929,0.3320598734890712,0.3373751510910363,0.3426226106802915,0.3488928547822064,0.3497692494534855,0.3503378844297338,0.3507266455553042,0.351488448940549,0.3519172590572421,0.3521327887479655,0.3521267485012846,0.3528367336873428,0.3540616725036303,0.3553026513256628,0.3562524603070463,0.3564139076777026,0.3564923619271445,0.3584092643296377,0.3596953578336557,0.3620847621790005,0.3626076050396215,0.3639704727501178,0.3661497438776226,0.3694419102772599,0.3708476125199909,0.374993337952353,0.3769187038089824,0.3752391154640753,0.3761936276827077,0.3784073324604213,0.3788228062086983,0.3781307269395235,0.3822062084257206,0.3804091266719119,0.0,1.9801056849809289,61.84009680634562,210.61433543474976,315.7101012665608,fqhc6_100Compliance_baseline_low_initial_treat_cost,2 -100000,95664,41851,394.1608128449573,7050,72.54557618330824,5466,56.59391202542231,2193,22.558120086971066,77.2498286400838,79.64744609024493,63.26585613190741,65.03858737481919,76.97559719634052,79.37388203191558,63.16536733200191,64.94133494230071,0.2742314437432895,273.5640583293417,0.1004887999055057,97.2524325184736,84.98776,59.8550008320966,88839.856163238,62567.94701465191,256.97885,160.65987929902815,268060.77521324635,167376.11776533298,278.80035,133.29313962518438,288436.4128616826,137083.16432878858,3588.95507,1610.7429500009152,3716244.627027931,1648369.4388703338,1283.93652,555.0323758101827,1330333.301973574,568391.3549613049,2150.82736,895.1044986044594,2213849.7867536377,904562.4858775582,0.37912,100000,0,386308,4038.1752801471816,0,0.0,0,0.0,21723,226.49063388526508,0,0.0,25962,268.3245526007694,2030765,0,72955,0,0,0,0,0,52,0.5435691587221944,0,0.0,0,0.0,0,0.0,0.0705,0.185956952943659,0.311063829787234,0.02193,0.3245425188374596,0.6754574811625403,25.276345784781576,4.557847360003551,0.3278448591291621,0.2109403585803146,0.2319795096963044,0.2292352725942188,10.997444997821924,5.472643980453857,23.34098489671811,12873.959826469803,61.977577591044856,13.677029647786805,20.312804222286168,14.1173965532156,13.87034716775628,0.5360409806073911,0.7519514310494363,0.6863839285714286,0.5473186119873817,0.1109337589784517,0.702903946388682,0.9184210526315788,0.8337182448036952,0.7163636363636363,0.1450980392156863,0.4816880911957312,0.6701164294954722,0.6394407652685798,0.500503524672709,0.1022044088176352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019854937396166,0.0040970722159684,0.0062626242120969,0.0085145295671611,0.0108126252403088,0.0129346342655775,0.0149488110290818,0.0171031806810639,0.0196154632849253,0.0218555729662744,0.0240427517873078,0.0263071391884951,0.0285023408962288,0.0304360821660843,0.0326763646124779,0.0343679218939072,0.0362993896562801,0.0382179492503841,0.0402846560406175,0.0424699957248469,0.0572186869795095,0.071454004691689,0.0845822837951301,0.0974567799909509,0.1095644648944141,0.1246692771721875,0.1379951152171604,0.1500713966028004,0.1618565743870609,0.1735795546102033,0.187419076391886,0.1999284304582619,0.2128408954605428,0.2237332748409739,0.2338767536065519,0.2452802933496305,0.2561289600358222,0.2665553575054714,0.2760375167892184,0.2839954492696997,0.2926922764180422,0.3002585193889541,0.3080170281582953,0.3145807756192677,0.3211141191678252,0.3273944298033975,0.3324079889461123,0.3381169013724538,0.3434343434343434,0.348864329066285,0.3491539637239121,0.3502749150388196,0.3505964256908774,0.351333691501256,0.3510620829663686,0.3505986505387086,0.3498999014903556,0.3510696201487737,0.3514724821842535,0.3517992594456627,0.3535759428000075,0.3538908685525451,0.3536729358185038,0.3553972405086121,0.3559527562874396,0.3564955474070194,0.3569856828508559,0.3591132384431288,0.3627250984805852,0.3654834468746265,0.3669432035737077,0.3701543193509041,0.3726058467741935,0.371864277544796,0.370913190529876,0.3733474976392823,0.3788990825688073,0.3777051857901184,0.3717842323651452,0.3790076335877863,0.0,2.10390306633988,59.53914377846024,213.21109671471052,309.90342472840086,fqhc6_100Compliance_baseline_low_initial_treat_cost,3 -100000,95744,41876,392.8601270053476,7133,73.34141042780749,5521,57.079294786096256,2311,23.719502005347596,77.32698317968122,79.68754213238215,63.31555014592704,65.06140612040397,77.04397265352418,79.4039209019909,63.21225558212399,64.96059434806315,0.2830105261570423,283.62123039124754,0.103294563803054,100.81177234081906,85.76348,60.30750904647003,89575.82720588235,62988.29069860256,255.00523,159.7074932003913,265776.97819184494,166243.07862674567,278.30099,134.0541852541064,286956.7805815508,137078.6462499274,3673.0928,1661.3272477279029,3799316.427139037,1698124.1307318509,1357.62871,592.6662608127203,1403191.333138369,604224.8713368151,2272.22994,942.0576737984924,2334266.0427807486,951893.1112065724,0.38068,100000,0,389834,4071.6285093582887,0,0.0,0,0.0,21633,225.350935828877,0,0.0,25943,267.3483455882353,2033558,0,72969,0,0,0,0,0,44,0.4491143048128342,0,0.0,0,0.0,0,0.0,0.07133,0.1873752232846485,0.3239871022010374,0.02311,0.3195793957140955,0.6804206042859045,25.033787568925632,4.562895917245735,0.3300126788625249,0.1977902553885165,0.237456982430719,0.2347400833182394,11.17086776613846,5.683208417819731,24.640649133113264,12945.190187806564,62.35903619508048,12.808428430669569,20.545156121998144,14.590037609743773,14.415414032669004,0.5417496830284368,0.75,0.6970362239297475,0.5728451563691839,0.1165123456790123,0.6997855611150822,0.8926553672316384,0.8763326226012793,0.7016949152542373,0.1601423487544484,0.4881125667151868,0.6815718157181572,0.6348854397634885,0.5354330708661418,0.1044334975369458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025226685578238,0.0047859503964632,0.0073787629661206,0.0095192620286085,0.0120010170353419,0.0139402270760144,0.0161214667373659,0.0181185309188902,0.0206042271370753,0.0227530936223784,0.0251714136372487,0.0272642351950891,0.0292645320450223,0.0312718810494666,0.0332263954363994,0.0351219814625375,0.0374154941971819,0.0396348737098698,0.0418961897436963,0.0438283952160686,0.0578790219865116,0.0716124037495815,0.0849845882870981,0.0975327719785129,0.1092290827834812,0.1251096850585163,0.1377518557794273,0.150524814239179,0.1627730517676228,0.1739317064795141,0.1875330049898156,0.2004699868966787,0.2122580434569728,0.2233526972770138,0.2340612891863332,0.2451175988118197,0.2564366057167112,0.2663933503029757,0.2752897068847989,0.2838146114429172,0.2924258394820057,0.3005365887949012,0.3082915377227617,0.3151726208345842,0.3221023930666796,0.3281680228179135,0.3345709519210265,0.3399941340746503,0.3450303022437935,0.3494633604737232,0.3505204681516639,0.3513170772051222,0.3520614047464514,0.3527665121668598,0.3535168469032085,0.353048743008175,0.3532560355781448,0.3544218359014882,0.3560399636693914,0.3569870167030294,0.3568732039892568,0.3586286212845274,0.358652812611967,0.3590429117052348,0.3595554481758879,0.3603919924536212,0.3609076341993819,0.3644549763033175,0.3657719304433706,0.3666121765479845,0.3676820343944383,0.3704987996799146,0.3735693961429023,0.3773728748951742,0.3788492325077691,0.3769577598481253,0.3766712770862148,0.3795768917819365,0.3765001395478649,0.380281690140845,0.0,2.3101799995510093,61.61433477189762,208.01302957031143,312.4362449962076,fqhc6_100Compliance_baseline_low_initial_treat_cost,4 -100000,95758,41532,390.275486121264,7120,73.11138494956036,5471,56.53835710854446,2314,23.87267904509284,77.39144353273707,79.72950869021078,63.36142006586866,65.08692231492822,77.103614310693,79.4396130216211,63.25624494547896,64.98309898582379,0.287829222044067,289.8956685896792,0.1051751203896955,103.82332910442926,85.38398,59.98945773570119,89166.4195158629,62646.94097172161,254.18633,158.53675343749737,264874.2768228242,164988.1479457837,273.39118,131.03802955983602,281059.7234695796,133490.99938823984,3624.70173,1634.7979307599842,3749037.0308485976,1671360.2271397538,1325.11387,575.4822441064294,1367581.758182084,584884.8946357234,2279.18806,948.685431698382,2352200.2965809647,966295.3451895816,0.3782,100000,0,388109,4053.01906890286,0,0.0,0,0.0,21553,224.46166377743896,0,0.0,25501,261.85801708473446,2042149,0,73232,0,0,0,0,0,40,0.4177196683305834,0,0.0,3,0.0313289751247937,0,0.0,0.0712,0.1882601797990481,0.325,0.02314,0.3140948563794255,0.6859051436205745,25.355859335022387,4.531001850452695,0.3262657649424237,0.2021568269055017,0.2345092304880277,0.2370681776640467,11.118763039680864,5.659569519261543,24.555034276593936,12851.613243390795,61.8581613621609,13.006875017842676,20.077175685799457,14.290057973553385,14.484052684965386,0.5441418387863279,0.759493670886076,0.6935574229691877,0.5892439594699922,0.110254433307633,0.6913109756097561,0.9083094555873924,0.875,0.704225352112676,0.0988593155893536,0.4977157970666025,0.6908850726552179,0.6384222059897735,0.5565565565565566,0.1131528046421663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021565689292078,0.0043880539538088,0.0067673139749599,0.0090187993215587,0.0113979522323108,0.0135269929158863,0.0156816792337477,0.0179158079458036,0.0203189326686348,0.0224073013014651,0.0244569672131147,0.0265101772816808,0.0285858139558779,0.0307836396945307,0.0328739163153174,0.034749912195525,0.0368446109581668,0.0389964633526587,0.0409966425163456,0.0426363049230192,0.057240076403603,0.0711804465649653,0.0842249916079221,0.0968746056450595,0.1092941114449892,0.1247726599839275,0.137553288510891,0.1491856123067757,0.1613254594577277,0.1724873509990566,0.1863837483447986,0.1995175927227888,0.2117717391304348,0.2227247896864416,0.2335345140331783,0.2448376601819268,0.2551059085841694,0.2655042243393852,0.2747372359604068,0.2828072424290979,0.291100166481687,0.2981924893607071,0.3060497799649836,0.3129846006351489,0.3196071528292037,0.3261287223823247,0.3318573554980174,0.3374579896119767,0.3426295336787565,0.3481886065595398,0.3490027723198665,0.3497043047723834,0.3497240058578348,0.3494245570461076,0.349979952777654,0.3492245572175828,0.3488519298023515,0.3501353679547133,0.3510078578749573,0.353083109919571,0.3545379351830964,0.354764456086042,0.354958860293344,0.3567764578833693,0.3573747456148851,0.3583077286693453,0.3593087240628224,0.3611700947611954,0.3629598128853923,0.3647506509112758,0.3657403147142725,0.3671505376344086,0.3681925557045266,0.3713734567901234,0.3731484998101025,0.3730755460078768,0.3735745780751102,0.3802104411169567,0.3822562979189485,0.3755742725880551,0.0,2.333462046275398,57.56486464982464,218.7732200116515,308.0677633301503,fqhc6_100Compliance_baseline_low_initial_treat_cost,5 -100000,95718,41661,389.96844898556174,7320,75.20006686307696,5680,58.661902672433605,2324,23.85131323262082,77.37264048070351,79.73227278433127,63.34029949113111,65.08205807133051,77.08455775330613,79.44533238714139,63.23456650302291,64.97984290423166,0.2880827273973807,286.9403971898805,0.1057329881082012,102.2151670988478,85.04034,59.79750982885741,88844.43887252136,62472.35611782258,255.78575,159.74795213147624,266501.55665601033,166167.4524451788,280.33677,134.7715751864151,288055.52769594017,137061.43945230122,3775.9062,1701.723854461385,3903807.643285485,1736835.5528337257,1421.36382,618.2793515360293,1467973.024927391,628972.3428571733,2298.0616,958.3162446272172,2361044.7564721373,967212.273377454,0.37965,100000,0,386547,4038.3835851146073,0,0.0,0,0.0,21705,226.059884243298,0,0.0,26143,268.5388328214129,2038586,0,73225,0,0,0,0,0,48,0.4701310098414091,0,0.0,1,0.0104473557742535,0,0.0,0.0732,0.192809166337416,0.3174863387978142,0.02324,0.3217165149544863,0.6782834850455136,25.26690127551066,4.581345773325109,0.3322183098591549,0.2029929577464788,0.2223591549295774,0.2424295774647887,11.133559628564749,5.454926638498828,24.917023592293965,12985.75772550778,64.35674562625503,13.524957628214104,21.34228537593324,14.344015007026089,15.145487615081604,0.5422535211267606,0.7684301821335646,0.6846846846846847,0.5859065716547902,0.1176470588235294,0.6963064295485636,0.9213483146067416,0.8464730290456431,0.7321428571428571,0.125,0.4888572783309625,0.7001254705144291,0.6291814946619217,0.5329018338727076,0.1157024793388429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075949367088,0.0046111904979072,0.0068474390577923,0.0092216444588885,0.0117235559080417,0.0142007858786163,0.0163296093941123,0.0184948914496851,0.0208731562215702,0.022991329627696,0.0253655135645005,0.0275972525949425,0.029654917122527,0.031740800626165,0.0336019148036191,0.0358320328244984,0.0381007599445054,0.0401414805671669,0.0422396141893507,0.0443078845953546,0.0587854487741719,0.072804511828902,0.085967726715108,0.0996920425044406,0.1125611401585427,0.1278291664464295,0.1410556904835134,0.1530906498398544,0.1634309391085197,0.1748367239696719,0.1887176504797906,0.2026161469716313,0.2155954323001631,0.2263176891358321,0.237379516746622,0.2474877851516192,0.2580285086005782,0.2674893875758633,0.2766361085551352,0.2852850097488244,0.2931831077247305,0.301058275385732,0.3083551625635616,0.3154646849074952,0.3225060827250608,0.3282812075732517,0.3342773718968909,0.3397425286185425,0.3451757569473248,0.3501367257163238,0.3500700921981992,0.3508177296463164,0.3514024493481573,0.3519084522343739,0.3526747131575026,0.3523909002933902,0.352344518873615,0.3528510722403399,0.3532320432536016,0.3542295667708798,0.3553543985906518,0.356144616418589,0.3564316921525794,0.3566120512131793,0.3569227064772454,0.3577278180585259,0.3586696306429549,0.3614590199956053,0.3629294945886309,0.3655586735702146,0.3693202471828426,0.3706401531263292,0.3724547868976856,0.3739998475958241,0.3754577035020185,0.3734696303340069,0.3768227168073676,0.3709415584415584,0.3677080453414432,0.3562908811081185,0.0,2.6529788016321363,64.49999567859247,214.725070999683,317.02090322439017,fqhc6_100Compliance_baseline_low_initial_treat_cost,6 -100000,95747,41859,393.8400158751711,7080,72.72290515629733,5504,56.973064430217136,2216,22.841446729401444,77.33281654085012,79.69883847738429,63.319784280511655,65.07123412886106,77.07019365307285,79.43301883458977,63.223880187071565,64.97565047934945,0.2626228877772689,265.8196427945114,0.0959040934400903,95.58364951161025,86.35088,60.71178920517682,90186.51237114478,63408.55505151788,255.63456,158.39199182359596,266468.36976615456,164906.3697281335,276.8131,132.55642784624533,285419.81472004345,135646.83988511094,3641.74549,1623.9216532542837,3772877.009201333,1665990.0525201033,1326.55579,576.1797921141434,1371761.5382205185,588181.2172837232,2178.51412,895.9424140385787,2247673.4519097204,914167.918755661,0.38133,100000,0,392504,4099.386925961127,0,0.0,0,0.0,21633,225.3960959612312,0,0.0,25798,265.7211191995572,2034607,0,73113,0,0,0,0,0,44,0.4595444243683875,0,0.0,0,0.0,0,0.0,0.0708,0.1856659586185194,0.3129943502824859,0.02216,0.3225676762262128,0.6774323237737871,25.23006339000923,4.562448696783799,0.3297601744186046,0.1976744186046511,0.2423691860465116,0.2301962209302325,11.288292616823226,5.775098790318532,23.385087390467767,12941.16712884304,61.89329438132496,12.809495471257804,20.407062600612385,14.98340287037884,13.693333439075916,0.5496002906976745,0.7830882352941176,0.6964187327823691,0.568215892053973,0.1191791633780584,0.7229876722262509,0.9206798866855525,0.851528384279476,0.7305389221556886,0.1623931623931624,0.4916363636363636,0.7170068027210884,0.6440677966101694,0.514,0.1093901258470474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023102878740285,0.0044830768918685,0.0066707279926896,0.0088228418088858,0.0108961054816261,0.0129155801825293,0.0152357254306081,0.0174068402246043,0.0194883540213901,0.0217384626411771,0.023898378068035,0.0258448079351877,0.0279568565758762,0.0300511838189102,0.0322833589550467,0.0341712490180675,0.036225805449405,0.0384383885764097,0.0403639199376137,0.0425330222092587,0.0569137941833517,0.0708053480635239,0.0838436372787517,0.0963564114963311,0.1084339889120765,0.1240774810209562,0.1372259987062154,0.1495364900965335,0.1615008330841201,0.1723254118050789,0.1865242576282865,0.2003699937252526,0.2126414909695869,0.2239360713622003,0.2350424530377018,0.2461771837941381,0.2564420190386912,0.2670058646735032,0.2770090020546934,0.2853985088131206,0.2939882613074634,0.3019060107242372,0.3094366447485338,0.3162395212453378,0.3224931919859949,0.3285948740729772,0.3338512429831596,0.3398074326905932,0.3448570983972198,0.3498612029081295,0.3507659941741288,0.3511625022395567,0.3519592487547446,0.3525461019598761,0.3534073136218068,0.3541251188905593,0.3544554769533357,0.3561400624691764,0.3575483959231137,0.3580174093338338,0.3581899059667036,0.3598065066116849,0.360475370595893,0.3621292230486603,0.3632156201036519,0.3665821063367942,0.3663091663091663,0.3681388012618296,0.3717456403029769,0.3723425471660484,0.3751086310204455,0.377742193755004,0.3838530488574675,0.385829774252593,0.3874237447207884,0.3861562166646912,0.3908256880733945,0.391850800729779,0.392817679558011,0.4003853564547206,0.0,2.0236913245232766,61.22427013818861,199.93022515642343,320.28288924871487,fqhc6_100Compliance_baseline_low_initial_treat_cost,7 -100000,95772,42080,394.7187069289562,7051,72.3802363947709,5474,56.49876790711272,2178,22.417825669297915,77.34910350822409,79.67851314044974,63.34642956891118,65.06719341736901,77.08278460354234,79.41160109309338,63.24925740706173,64.97236500172082,0.2663189046817535,266.91204735635665,0.0971721618494427,94.82841564819466,86.17334,60.62471141666531,89977.59261579585,63301.08112670229,259.12869,161.65185637199306,269918.21200350835,168138.1159127856,284.71005,136.69824445901023,292178.9667126091,138924.54778674495,3619.07283,1633.8970418421668,3739819.936933551,1667111.3294204716,1321.60269,572.9748278466215,1367680.5538153115,586050.0195933395,2145.1328,891.0023130450492,2209210.4581714906,904385.5748127872,0.38089,100000,0,391697,4089.8905734452655,0,0.0,0,0.0,21914,228.1355719834607,0,0.0,26495,271.749571899929,2032184,0,72997,0,0,0,0,0,47,0.4698659315875203,0,0.0,0,0.0,0,0.0,0.07051,0.1851190632466066,0.3088923556942278,0.02178,0.3236955352339967,0.6763044647660033,25.161692806972614,4.529888638673922,0.324625502374863,0.206430398246255,0.2365728900255754,0.2323712093533065,11.06888510719316,5.616195334067884,23.24991773073058,12956.168335738805,61.81938476012909,13.293596102584686,20.10293456980451,14.39771926965183,14.025134818088054,0.5500548045305078,0.772566371681416,0.7006190208216094,0.5706563706563706,0.1210691823899371,0.7151079136690648,0.9175824175824177,0.8939393939393939,0.7361111111111112,0.1268115942028985,0.4938785504407443,0.7036553524804178,0.6326996197718631,0.5233366434955313,0.1194779116465863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0046726603756372,0.0069898854632701,0.0092838061573777,0.0116931711880261,0.0139867258438861,0.0162049776799364,0.0183293361228759,0.0205887461811196,0.0228458595076834,0.0250379051755931,0.0269673990005233,0.0291246171870182,0.0311358139056147,0.0333852292528018,0.0356143159634354,0.0374390761302606,0.0395288066697084,0.0415757424610844,0.0436652573261408,0.0594447923189313,0.0735898589074478,0.0867801088289875,0.0996048593887931,0.1114881240911294,0.1267620516938943,0.1399652365609632,0.1524425256800153,0.1635897983139473,0.1743727636963555,0.1879661217593439,0.2010229017538548,0.2138003761564637,0.2251246501049685,0.2360227947809632,0.2474584154687811,0.2584946716509513,0.2681882061948395,0.2769483834373227,0.2858271141431253,0.2939108309720696,0.3013323663247043,0.3091033895095625,0.3149796891663571,0.3214342106861328,0.3275747262503699,0.3333583752785916,0.3394705680125291,0.3448409971868234,0.3496412004916148,0.3501678961066983,0.3500592760056243,0.3506480684879342,0.3515151515151515,0.3518970028544244,0.3514370633656085,0.3503761780312029,0.3512123800762255,0.3517033896856464,0.352996941349026,0.353784113288943,0.3546072582403425,0.3565834505637558,0.3568398608461452,0.3568094420393257,0.3569910529215753,0.3579307175274315,0.3595070198843784,0.3629598128853923,0.3636947275499558,0.3668337087949979,0.3694557531604885,0.368249296135142,0.3659873398178169,0.3673977588353606,0.3699829725127706,0.3730545511711995,0.3710548172757475,0.3746478873239436,0.3705482192877151,0.0,2.5599551031736483,61.00859734799222,205.3337305327607,310.00409023401613,fqhc6_100Compliance_baseline_low_initial_treat_cost,8 -100000,95672,42214,396.3019483234384,7233,74.45229534241993,5650,58.53332218412911,2343,24.124090643030357,77.31532774038504,79.70699155467317,63.31028192710126,65.07602849003275,77.0285405072225,79.418025535868,63.20543933842927,64.97285087021585,0.286787233162542,288.96601880516926,0.1048425886719854,103.1776198169041,86.19798,60.64753540296695,90097.3952671628,63391.10231098643,259.24649,161.47255080252444,270447.393176687,168250.3666720926,287.48324,138.56109522405438,297022.0127100928,142244.28307765402,3744.03748,1702.2804300915352,3880367.0248348527,1746245.1815489735,1400.30636,608.8837028127392,1450552.9935613344,623341.5880371246,2308.44938,959.2254187665362,2378821.724224434,974300.0597283788,0.38291,100000,0,391809,4095.3361485074006,0,0.0,0,0.0,21857,227.91412325445276,0,0.0,26775,276.44451877247263,2029789,0,72897,0,0,0,0,0,65,0.6794046324943558,0,0.0,1,0.0104523789614516,0,0.0,0.07233,0.1888955629260139,0.3239319784321858,0.02343,0.3217847769028871,0.6782152230971129,24.928735782663363,4.570465961741374,0.3327433628318584,0.2040707964601769,0.2254867256637168,0.2376991150442478,11.35842772858617,5.850587931847565,25.051364091996163,13094.150973233289,64.05769891708584,13.47464133192243,21.440094679595397,14.234531544100532,14.908431361467493,0.5495575221238939,0.7710320901994796,0.7148936170212766,0.5588697017268446,0.1191362620997766,0.722632639355272,0.9242819843342036,0.884313725490196,0.7138364779874213,0.158273381294964,0.4876231675078106,0.6948051948051948,0.6518248175182482,0.5073221757322176,0.1089201877934272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0048257263934791,0.0074286062229799,0.0096112815719423,0.01171875,0.0141889483065953,0.0165435926726775,0.0189367243756702,0.0210973053126757,0.0231534105455029,0.0254756166350443,0.0275192604006163,0.0295255339286449,0.0318299380712438,0.0338566665634451,0.0359503149272409,0.03790123712622,0.0401448869238513,0.0419713533811123,0.0441285292922134,0.0586452967788446,0.0734935343699282,0.0873653938999559,0.0998810939357907,0.1120198395947657,0.1275629558277143,0.1409505000955596,0.1535069499920115,0.1657243023119101,0.1763941956811059,0.1909319193421492,0.2043441540160686,0.216192974626362,0.2271588185727886,0.2372817886447491,0.2489240871378499,0.2594665236914416,0.2694030522666907,0.2788091426235651,0.2873435422493237,0.2956511668307371,0.3040307191608424,0.311500065132693,0.3179641077966508,0.3241048088029667,0.3302783979474781,0.3371259585985665,0.3424739536897878,0.3475229690678899,0.3524995373674888,0.3530562149331031,0.3530271686663908,0.3539961618784218,0.3547643888019475,0.3555247754792011,0.3563248388087197,0.3565182892961993,0.357129947587204,0.3578992387306475,0.3587693408460781,0.3596489583137998,0.3601354965234444,0.3615472031651164,0.3633850303438975,0.3635615775465763,0.3650165189574702,0.3669645679473548,0.3693198079308042,0.3702901381441102,0.3737588937572858,0.3759329217727817,0.3762684563758389,0.3767792174634582,0.3797173474141948,0.3817570811329813,0.3836942058787952,0.3879217377907872,0.387090246863618,0.386395316420407,0.3850596842510589,0.0,1.9769860026149888,66.08504261306659,209.19890268705515,316.6962960919516,fqhc6_100Compliance_baseline_low_initial_treat_cost,9 -100000,95612,42016,394.8772120654312,7072,72.64778479688742,5522,57.02213111324939,2332,23.877755930217965,77.3146043072854,79.73321461146504,63.296484254502126,65.08250516541183,77.02770133220528,79.448337706478,63.19020694577846,64.9802046429167,0.2869029750801246,284.8769049870441,0.1062773087236621,102.30052249512768,85.13538,59.924866531410245,89042.56787850897,62675.04762102063,255.71603,159.60880809167364,266733.1715684224,166215.22203454966,281.81611,135.56251382267672,289561.7077354307,137781.0836730956,3661.60301,1652.3920823993071,3785235.409781199,1683814.1158006394,1345.40398,588.0280930009064,1389373.0494080242,597239.356211456,2297.19558,955.2052066446018,2356123.1017027157,962102.2165714606,0.38134,100000,0,386979,4047.389449023136,0,0.0,0,0.0,21599,225.14956281638288,0,0.0,26285,269.86152365811824,2035051,0,73016,0,0,0,0,0,39,0.3974396519265364,0,0.0,1,0.010458938208593,0,0.0,0.07072,0.1854513032988933,0.3297511312217194,0.02332,0.3246073298429319,0.675392670157068,25.06792589055456,4.636297805558028,0.3203549438609199,0.2015574067366896,0.2377761680550525,0.2403114813473379,11.377613304324989,5.797393380039464,24.939203622141758,12950.971664022343,62.24914515418764,13.006385359891476,20.12331482029535,14.560239874755707,14.559205099245103,0.5476276711336472,0.7960467205750225,0.6907857546636518,0.5818735719725818,0.1145440844009043,0.7176724137931034,0.9346590909090908,0.8556034482758621,0.7467948717948718,0.1515151515151515,0.4903147699757869,0.7319316688567674,0.632183908045977,0.5304695304695305,0.1053621825023518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0045431037105393,0.0065781459373857,0.0088401158360006,0.0110677083333333,0.0134446934202485,0.0159015105925072,0.018020226785167,0.0202820877356271,0.0223448812608165,0.0245335849598457,0.0268107530637191,0.0292377807269322,0.0315397931006058,0.0335583632685081,0.0356415373321063,0.0376126826235623,0.0396723217808418,0.0416527928077915,0.0437449152012015,0.0581072040807793,0.0717907351924406,0.0851667104226831,0.0983125072373753,0.110321749778322,0.1251667831501366,0.1380874479476502,0.1509538527123521,0.1628421964761385,0.1732006833052204,0.1864959053979694,0.1995057339200936,0.2122830149614793,0.2236014637246094,0.234434939812161,0.2456825749167591,0.2562059214717618,0.2671301565123328,0.2761724032135268,0.2847932822465929,0.2936196333229098,0.3018002200529063,0.308952236578751,0.3160545947372208,0.3222208723119912,0.3284266587765367,0.3348813920010014,0.3404293221697693,0.345146498795368,0.3506273940034342,0.3511425682507583,0.3515996198923028,0.3520377193353943,0.3520716490587365,0.3533219964796086,0.3529511272414111,0.3526764415890079,0.3537569963841696,0.3546910755148741,0.3552111765550926,0.35694674289153,0.3583994617378742,0.3592076302274394,0.3599757999462221,0.3600115434563032,0.3592834639518837,0.361670607674995,0.3647889533971442,0.3674377847879425,0.3680555555555556,0.3692468619246862,0.3707739740591112,0.3744045728802794,0.3759467523525361,0.378626098459794,0.3771380390267405,0.3763087982497265,0.3753351206434316,0.3829078801331853,0.3916275430359937,0.0,2.863229574540469,60.70444957044519,206.55284373634956,314.3367603898474,fqhc6_100Compliance_baseline_low_initial_treat_cost,10 -100000,95645,41681,391.541638350149,7063,72.51816613518741,5545,57.38930419781484,2242,23.074912436614564,77.29129418892526,79.69264742888673,63.29829466637945,65.07079652613302,77.01862033644159,79.41871520830153,63.20038725725588,64.97456903797928,0.2726738524836776,273.93222058519484,0.0979074091235645,96.22748815374392,86.03848,60.53529739963159,89956.06670500287,63291.64870054011,256.28836,159.5506448031044,267336.4211406765,166194.5005160545,280.74265,134.96733416597044,290026.27424329554,138335.87056160148,3656.8974,1634.6839048669497,3787948.172931152,1673695.761722612,1354.31102,591.0947418360032,1398519.1384808407,600552.5770542772,2209.74878,900.1917305508669,2276581.4417899526,913201.4261666484,0.37885,100000,0,391084,4088.912122954676,0,0.0,0,0.0,21677,225.98149406660045,0,0.0,26044,268.90062209211146,2032859,0,72926,0,0,0,0,0,58,0.5854984578388834,0,0.0,0,0.0,0,0.0,0.07063,0.1864326250494918,0.317428854594365,0.02242,0.3240877878012656,0.6759122121987343,25.17205746029778,4.565243602170123,0.3289449954914337,0.2052299368800721,0.2326420198376916,0.2331830477908025,11.32275636052034,5.664789745958986,23.581328742837044,12913.280451774684,62.31686290634888,13.420105582567396,20.58466878320341,14.208093358305108,14.103995182272952,0.5513074842200181,0.7820738137082601,0.7044956140350878,0.575968992248062,0.1075019334880123,0.7254612546125462,0.9109947643979056,0.8808988764044944,0.7463235294117647,0.15625,0.4949880668257757,0.716931216931217,0.6475707034082668,0.5304518664047151,0.0954676952748312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268974808302,0.0044408395011659,0.0068917917643595,0.0092775124479219,0.0117917569616132,0.0139226969496358,0.0161000876888879,0.0183797251209998,0.0204788974317029,0.0226998136506051,0.024643120846665,0.0266828256270155,0.0287842314260436,0.0308410444531459,0.0330552917372094,0.035217094512132,0.0370178456691607,0.0389355538712323,0.0414312617702448,0.0432951429792646,0.056961628490219,0.0712445273058633,0.0845197597748939,0.097237278324475,0.1098599575756936,0.1251296488368647,0.1385093892975807,0.1507359989774833,0.1619220695921749,0.1729324115424252,0.1861375250663044,0.1993070593330446,0.2124440865013114,0.2242462724147746,0.235222163448823,0.2455949701156562,0.255436785845927,0.2655179011581447,0.2753007945516458,0.2832722273143904,0.2916435185185185,0.2997145464330003,0.3072877802650748,0.3133952350104369,0.3203936643877278,0.3267986766085625,0.3324808504770143,0.3379392981427424,0.3436040477426051,0.3487266194652858,0.3499784296807592,0.3510815766616574,0.3525591246028944,0.3532598461694454,0.3534417239169635,0.3533500438266004,0.3527458208860357,0.3543103163867903,0.3550552922590837,0.3556237549130458,0.3559468876542047,0.35706046141607,0.3575631049535016,0.3583980200247497,0.3600106226310325,0.3612994424229732,0.3625153426769046,0.3644452858765619,0.3653948159411577,0.365781356407483,0.3679206283588259,0.3684435652034433,0.368343949044586,0.3733539891556932,0.3759463344513656,0.3811086797957695,0.3880573499291003,0.3894361769021169,0.390616167326173,0.3947266382318728,0.0,2.2332926331635656,59.74497280394358,203.7890554465604,326.4993212363206,fqhc6_100Compliance_baseline_low_initial_treat_cost,11 -100000,95633,41787,394.13173277006894,7084,72.93507471270378,5528,57.239655767360645,2240,23.077807869668423,77.27514686010801,79.68851320001755,63.27600815666828,65.05721598562776,77.00800570935024,79.41839808595996,63.17989370930468,64.96249059228559,0.2671411507577659,270.1151140575888,0.0961144473636039,94.72539334217343,85.4546,60.12286604440722,89356.81197912854,62868.32583355873,253.63515,157.57845553393693,264660.8179185009,164217.77580326554,276.39468,132.1556402619335,285290.75737454643,135311.97326498703,3668.57486,1633.8657346318582,3801228.331224577,1673605.9358504466,1360.6567,586.212392908411,1405030.3347170954,595221.9395719338,2203.44086,894.2403415636068,2271785.6388485148,907562.7486800712,0.37981,100000,0,388430,4061.6732717785694,0,0.0,0,0.0,21513,224.37861407673088,0,0.0,25798,266.0065040310353,2034721,0,72996,0,0,0,0,0,30,0.3136992460761453,0,0.0,1,0.0104566415358715,0,0.0,0.07084,0.1865143097864721,0.3162055335968379,0.0224,0.311004144939163,0.688995855060837,25.31153675677305,4.5188478507372105,0.3319464544138929,0.2000723589001447,0.2326338639652677,0.2353473227206946,11.276351585220722,5.8136290440824325,23.598337895242565,12894.1287813763,62.13049315061453,12.955597858240669,20.708027298043245,14.383590801451607,14.083277192879017,0.5515557163531114,0.7739602169981917,0.7138964577656676,0.5668740279937792,0.11837048424289,0.7374631268436578,0.9149560117302052,0.88125,0.7348993288590604,0.1940928270042194,0.4911313518696069,0.7111111111111111,0.6546125461254613,0.5161943319838057,0.1015037593984962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022581821127673,0.0047028774717979,0.0071635127593729,0.0091213814118842,0.0112185844038283,0.0131782629949486,0.0152955092384875,0.0172228971628671,0.019404373651764,0.0216251638269986,0.0238170945606351,0.0257956483326827,0.0279644014609805,0.0299228993155768,0.0318156940901909,0.0338698998593064,0.0361229735892864,0.0382610140622728,0.0400853322233206,0.0418613382279325,0.0569526317989882,0.071045351664012,0.084082696024876,0.0966076696165191,0.1085571834497037,0.1243804278754501,0.137200726863118,0.1495848123394412,0.1612554575806865,0.1721614476992843,0.1866162978953049,0.1997940044451672,0.2117348328810714,0.2231820822872929,0.2343277653964121,0.2454829144779948,0.2561067036668196,0.2663921480144404,0.2760076469651107,0.2844922610572727,0.2925708983355564,0.2999120492524186,0.3072332752013856,0.3147160565004324,0.3213260340632603,0.3273849191657411,0.3332455546359692,0.3380312201338005,0.3437597382362106,0.3494197509626708,0.3504320820955982,0.3513051156117212,0.3513765353663702,0.3515313880240388,0.3512225630640021,0.3510821181887951,0.3507767913760304,0.3523278569901492,0.3537668192063383,0.3553730810424848,0.3563718957070185,0.3582736375509558,0.3591859879032258,0.3600331972544973,0.3602345107122177,0.3622464980137989,0.3635427983303791,0.3647880204713464,0.3653778186187884,0.369050475961923,0.3725310480729572,0.3763671456144113,0.3815322171486555,0.3832083269554569,0.3874524714828897,0.3915923873765358,0.3957102890892136,0.3958720330237358,0.3961420184512161,0.396504854368932,0.0,2.2067298166611526,60.06221602119576,202.21818892654332,324.75987817784375,fqhc6_100Compliance_baseline_low_initial_treat_cost,12 -100000,95677,41683,390.5431817469193,7053,72.35803798196014,5420,55.99046792855127,2147,22.022011559727,77.28391542799022,79.6840946152267,63.28504443165552,65.06062915166862,77.01607123412403,79.41654325652861,63.184856131684576,64.96352532425024,0.2678441938661962,267.55135869808555,0.1001882999709451,97.10382741837977,84.92572,59.77780853262495,88762.94198187652,62478.76556813544,254.22926,158.54934971573672,265069.0761625051,165066.03438207373,272.38863,130.9177806231199,280840.7767802084,133812.04761707544,3579.21804,1621.3973669597424,3699560.448174588,1653279.029400736,1294.5222,570.6138048739182,1336488.957638722,579872.01195054,2121.70062,902.9703019285868,2178306.824001589,908728.7030316336,0.37933,100000,0,386026,4034.679180994387,0,0.0,0,0.0,21565,224.7248555034125,0,0.0,25384,261.50485487630255,2037408,0,73176,0,0,0,0,0,48,0.4912361382568433,0,0.0,0,0.0,0,0.0,0.07053,0.185933092557931,0.3044094711470296,0.02147,0.3160803342768567,0.6839196657231433,25.36439080846918,4.496763431008358,0.3354243542435424,0.1966789667896679,0.2383763837638376,0.229520295202952,10.975850152802389,5.492380363010072,23.165592076392887,12933.874261927194,61.18425186841936,12.50336656379596,20.423825019119256,14.416612821400426,13.840447464103736,0.5415129151291513,0.7457786116322702,0.6941694169416942,0.56656346749226,0.1173633440514469,0.7024246877296105,0.9143730886850152,0.8755555555555555,0.7245901639344262,0.1505376344086021,0.4875585119487558,0.6711772665764547,0.6345029239766082,0.5177304964539007,0.1077720207253886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712531160698,0.004635264524505,0.007005289501203,0.0093393359823579,0.0116602057324257,0.0139454812158748,0.0161354480085674,0.0184561016464436,0.0205983124520582,0.022854391608105,0.0249297248497035,0.0271669886153466,0.0292855599345551,0.0315153763706818,0.0339093273875882,0.0358542664198475,0.0379039862393401,0.0399846372629415,0.0419921570259109,0.0442739817401092,0.0590207774028768,0.0730259438406935,0.0856711060734863,0.0976492623692573,0.1097754042301684,0.1262001291428934,0.1389372637301958,0.1518143379024613,0.1634935057993479,0.174558023207136,0.1883987667895565,0.2011181052882479,0.2133382702066952,0.2244128987031195,0.2347902772419114,0.2460026648900732,0.2562404938713429,0.265013246152979,0.2743116345694731,0.2833698658434419,0.29124231527665,0.2994134209291412,0.3067554574267298,0.3137876767458344,0.3198377608068111,0.326228172005829,0.3321296017654729,0.3385956194335079,0.3437771524166461,0.3489736070381232,0.3494807821982468,0.3501694635033479,0.350974616284478,0.3511896157960163,0.3517421083978558,0.3518899499493352,0.3519264948584486,0.3529063553399654,0.3538899268121283,0.3552919250206086,0.3556777729644209,0.3564606629790282,0.3578749392447328,0.3580060422960725,0.3591655333203808,0.361314731615039,0.3626109361580303,0.3650547503006519,0.3674001056152086,0.3703291903268078,0.3717896081383148,0.3728615450005313,0.3744358074222668,0.3744632768361582,0.3759426496601806,0.3804809052333804,0.377605355241138,0.3779081529435565,0.3832035595105673,0.3920738745671412,0.0,2.607447138063787,59.7962954497812,202.38648922010236,310.2599306006916,fqhc6_100Compliance_baseline_low_initial_treat_cost,13 -100000,95659,41884,394.47412161950257,7134,73.42748722023019,5552,57.474989284855575,2199,22.65338337218662,77.35161970545354,79.75665190937185,63.31721993396855,65.09391230477932,77.07720061480919,79.48181968957574,63.2160666034536,64.99499062854194,0.2744190906443577,274.83221979611017,0.1011533305149541,98.92167623738146,85.53512,60.191507932917865,89416.69889921493,62922.99515248735,256.97163,160.0846611658446,268098.2343532757,166814.54036300257,278.51893,133.239195351524,287782.3414419971,136695.1673748129,3684.12201,1641.571312320878,3818667.6319008144,1683426.0992911053,1348.82983,582.0414910635028,1398324.53820341,596739.3878918899,2172.7171,909.1892214413554,2241226.8788091037,923565.927953396,0.37949,100000,0,388796,4064.395404509769,0,0.0,0,0.0,21690,226.16795074169707,0,0.0,25918,267.6590806928778,2036193,0,73009,0,0,0,0,0,44,0.4286057767695668,0,0.0,1,0.010453799433404,0,0.0,0.07134,0.1879891433239347,0.308242220353238,0.02199,0.3230830670926518,0.6769169329073482,25.443824495024632,4.582648764217516,0.3369956772334294,0.2017291066282421,0.2249639769452449,0.2363112391930835,10.975128573622277,5.300138398743422,23.425766267686747,12912.000927030327,62.37904612147314,13.286739126355648,20.86697499823954,13.856310457413906,14.36902153946404,0.5462896253602305,0.76875,0.6814537680384821,0.589271417133707,0.1227134146341463,0.6989720998531571,0.8962765957446809,0.8436018957345972,0.7216494845360825,0.1794871794871795,0.4966587112171837,0.7043010752688172,0.6342305037957212,0.5490605427974948,0.107795957651588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593489427665,0.0047051665568118,0.0068707248259484,0.0089612289685442,0.0110976614552075,0.0132206151965777,0.0155611074287462,0.0177778231612053,0.0198261758691206,0.021970705725699,0.0243041662819447,0.0264712833845426,0.028824879338911,0.030732592424586,0.032629915403923,0.0347934944545605,0.0366692923178972,0.0385342053358247,0.0404282102766304,0.0423943529804293,0.0570601634171316,0.0710696038194153,0.0849837841241852,0.0976125590547038,0.1096899470229426,0.125439227805766,0.1383084894041703,0.1500575545702592,0.1617845297956563,0.1734680727678859,0.1868718457490402,0.2001213381868608,0.2124708802333935,0.2235686918445539,0.234024978523756,0.2453016376356842,0.256442636507901,0.2657515118072994,0.2751007892794276,0.2833327604578421,0.2912992153322686,0.2989183184236683,0.3064462692571645,0.3135976997723733,0.3207746478873239,0.3271793482277015,0.3336666583335416,0.3393492628368073,0.3449916603095382,0.3504604561084542,0.351101481650944,0.3519692075056705,0.3530604486123432,0.3537101503705094,0.3540452978242777,0.3536772138328177,0.3529365205002374,0.3535529450423067,0.3546284893267651,0.354699631471609,0.3555764352156347,0.3577143988908695,0.3580015973769389,0.3586683979582699,0.3602721939020871,0.3617420295894978,0.3634496919917864,0.3648495530655923,0.3671103930315057,0.3682116570519196,0.3704312865497076,0.3715783343040186,0.3723604826546003,0.3753998476770754,0.3780178487552841,0.373820613877941,0.3733661387052129,0.3765656565656565,0.3818181818181818,0.3885971492873218,0.0,2.226517402883912,60.19191370261579,208.1296302726259,319.30724772449275,fqhc6_100Compliance_baseline_low_initial_treat_cost,14 -100000,95796,42242,397.12514092446446,7213,74.1471460186229,5639,58.34272829763246,2231,22.94459058833354,77.3507064425629,79.67873997084502,63.34838135415546,65.06981361009716,77.07077265433854,79.39837632548674,63.245384870196965,64.96937212162237,0.2799337882243549,280.3636453582783,0.102996483958492,100.44148847478596,85.65854,60.28492069717534,89417.65835734269,62930.519747354105,259.05313,161.25829169935437,269906.7080045096,167820.1508406973,282.20136,134.60052391677257,291246.9518560274,137968.34524789968,3720.93643,1665.7073873103873,3853530.147396551,1708107.538217031,1308.11166,564.820641336393,1355288.268821245,579377.9816864929,2195.05616,918.3629157387916,2260219.57075452,930790.5998984936,0.3834,100000,0,389357,4064.439016242849,0,0.0,0,0.0,21890,227.95315044469496,0,0.0,26283,271.08647542694894,2037873,0,73135,0,0,0,0,0,37,0.3862374211866883,0,0.0,0,0.0,0,0.0,0.07213,0.1881324986958789,0.3093026479966727,0.02231,0.3094518206914683,0.6905481793085316,25.3484348076659,4.528904795866761,0.3376485192410002,0.2010994857244192,0.2344387302713247,0.2268132647632559,10.884467878408948,5.460364989425936,23.872137095343675,13048.203286504828,63.64621588096101,13.14050860093903,21.645215953280108,14.780024650082774,14.080466676659086,0.5479694981379677,0.7380952380952381,0.7058823529411765,0.5726172465960666,0.1188428459734167,0.697037037037037,0.9,0.8699360341151386,0.6892857142857143,0.1586715867158671,0.5010491956166939,0.6716417910447762,0.6522648083623693,0.5412667946257198,0.1081349206349206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019853328471293,0.0042072181670721,0.006514657980456,0.0089895173086299,0.0111741499918659,0.0136622313620491,0.015979780685663,0.0182261636272718,0.0203255771176308,0.0226156365124846,0.0246226676093572,0.0265245185055973,0.0287652227531987,0.030861719321001,0.0330696969384493,0.0352482980196076,0.037198377550598,0.0394144844602019,0.0413114141214833,0.0430373948530024,0.0572018865562001,0.071685487243831,0.0850865331194901,0.0974125609551034,0.1099072512647554,0.1260610801611044,0.1390211570072644,0.1511600681140911,0.1634797091701098,0.1753362988370223,0.189625850340136,0.2031668828361435,0.215904028165647,0.2277991434315182,0.2382654014887464,0.2492227692648116,0.2595428354898748,0.269387204781915,0.278672545308232,0.2879034103913939,0.2960644110478346,0.3032625074466469,0.31041417738291,0.3175262918333613,0.3239840211755849,0.330417426445222,0.3370235548717178,0.3425241433715471,0.3477083711169262,0.3526215128932269,0.3535223020808097,0.3546868547832071,0.3558512212653803,0.3561980839917802,0.3562725933859954,0.3560424722273368,0.3559900338025487,0.3576313924551312,0.3587540095027359,0.3585687382297551,0.3596033107713192,0.3600254589573761,0.3606301207872286,0.3603878491998915,0.3625584947748709,0.3634473684210526,0.3662308489805322,0.3687828162291169,0.3696184560780834,0.3697616762635956,0.3721283550481101,0.3744676262871313,0.3754397185801087,0.3771242337239078,0.3807978621874403,0.3800626808100289,0.3787665886026541,0.3779724655819774,0.3808848553601815,0.3825371965544244,0.0,2.026207420369567,59.79255580616354,218.5382177969101,325.4962447333721,fqhc6_100Compliance_baseline_low_initial_treat_cost,15 -100000,95732,41854,392.7840220615886,7158,73.45506204821794,5601,57.88033259516149,2309,23.67024610370618,77.31652017658898,79.67825091258489,63.31665033110207,65.06280789573417,77.02807765121558,79.39075663129496,63.21123589987087,64.96100441957343,0.288442525373398,287.4942812899235,0.1054144312311962,101.8034761607396,84.89338,59.73541113960564,88678.16404128191,62398.58264697869,255.80371,159.4766392172043,266568.1590272845,165946.55832658283,279.50877,133.93172005327466,288373.7621693895,137132.3228918962,3708.04768,1661.9485610935158,3833020.985668324,1695701.0519925582,1356.78801,593.8075022628043,1397711.935403,600751.8733000796,2267.7961,939.6429313778568,2326879.5804955503,945862.959297472,0.38084,100000,0,385879,4030.825638240087,0,0.0,0,0.0,21649,225.46275017757907,0,0.0,26021,268.2279697488823,2038762,0,73197,0,0,0,0,0,52,0.5431830526887561,0,0.0,1,0.0104458279363222,0,0.0,0.07158,0.1879529461191051,0.3225761385861972,0.02309,0.3169886742171885,0.6830113257828114,25.346887522020367,4.5593604278200575,0.3231565791822888,0.1967505802535261,0.2467416532762006,0.2333511872879843,11.039973730592342,5.488776433777399,24.56420969510289,12980.01854202097,63.19194965986368,12.920451142083165,20.38226169119937,15.432496457373128,14.45674036920801,0.5470451705052669,0.7713248638838476,0.7049723756906078,0.5701881331403763,0.1147666411629686,0.7193240264511389,0.92797783933518,0.875,0.724025974025974,0.1653846153846153,0.4917452830188679,0.6950067476383266,0.6516690856313497,0.5260707635009311,0.102196752626552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021981138764801,0.0049573706673695,0.0074092869829992,0.0098255382708271,0.0120137532552083,0.0142280976921353,0.0163075071644926,0.0184430624061762,0.0206746352286786,0.0227489122088559,0.0248133869247805,0.0270156487452252,0.0291014540443822,0.0310878161298294,0.0330596414498793,0.0352640932385518,0.0371524399080764,0.039158532410817,0.0413721413721413,0.0434968328054675,0.0578414892617379,0.0719331107878737,0.0848444169437132,0.0979862243020137,0.1098257971992576,0.1256240480622779,0.138905981455155,0.1519406416998446,0.1634364716440873,0.1747993648341272,0.1887638028548343,0.2012294106188177,0.2135011093226606,0.2248501946376241,0.2350383124889906,0.2461371344964419,0.257077763259289,0.2677335494108511,0.2770304784607525,0.2853410939755723,0.2932135913341357,0.3019082049302118,0.3088235294117647,0.3154453402437854,0.321937460487283,0.3280434380206083,0.3347365255957303,0.3404930250334416,0.3457092501879066,0.351351708464364,0.3518378684501497,0.3521797331051709,0.3529070589899561,0.353113616903943,0.3534089213784872,0.3529456994786781,0.3521417785901613,0.3530276016904384,0.3544366899302094,0.3562075044069503,0.3570404196701513,0.3573716354666083,0.3595676406012498,0.3599513305243235,0.3613068856111797,0.3620233259074826,0.3625699125197189,0.3655614905654414,0.3688816741362882,0.3698865452221156,0.3718348623853211,0.3741003330110645,0.3770439651332951,0.3804564251799663,0.380604103343465,0.3830659751537812,0.3881363848668846,0.3959317854941442,0.3932773109243697,0.4037558685446009,0.0,2.363885946856305,59.94100276090014,213.994555336487,323.12630508553616,fqhc6_100Compliance_baseline_low_initial_treat_cost,16 -100000,95681,41941,393.9653640743721,7290,75.07237591580356,5641,58.402399640471984,2266,23.296161202328573,77.40264542862671,79.78387441438717,63.35728834693722,65.11248953549979,77.12337700165399,79.50418219725053,63.25593359604917,65.01336378210382,0.2792684269727203,279.69221713664183,0.1013547508880492,99.12575339596684,85.63764,60.24400565793509,89503.28696397404,62963.39467390087,260.58369,161.9849561538766,271792.6338562515,168745.39518797986,280.02937,133.48436870797738,289649.063032368,137127.94301750814,3749.50536,1676.2417602192568,3881544.8626164026,1714857.3980071484,1359.83369,590.3619211460169,1405989.9039516726,601867.2087498936,2238.69436,924.6418721740816,2302944.1790951183,935746.1184602536,0.38186,100000,0,389262,4068.331225635184,0,0.0,0,0.0,22059,229.9516100375205,0,0.0,26046,269.1443442271716,2038908,0,73088,0,0,0,0,0,55,0.5748267681148818,0,0.0,1,0.0104513957839069,0,0.0,0.0729,0.1909076624941078,0.3108367626886145,0.02266,0.3087755900378146,0.6912244099621854,25.42298094088044,4.574864429873104,0.3265378478993086,0.1994327246942031,0.2382556284346747,0.2357737989718135,11.145663658109957,5.518643591673392,24.12649544237844,12943.31397665728,63.095744915680456,13.097419611495177,20.55026003840599,14.935243327532683,14.512821938246612,0.5373160787094486,0.7493333333333333,0.7046688382193268,0.5580357142857143,0.1052631578947368,0.7060957910014514,0.8974358974358975,0.8651685393258427,0.725,0.1564885496183206,0.4827586206896552,0.6821705426356589,0.6535433070866141,0.505859375,0.0926966292134831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366872234205,0.004581065604508,0.0069892473118279,0.0090693966261438,0.011033038102114,0.0133698552023297,0.0156901526196132,0.0178708116879803,0.0201216085023759,0.0222072127389577,0.0242829906312142,0.0264249342969776,0.0287679542673836,0.0308451255432655,0.032872132974278,0.0349136460884933,0.0371831510934393,0.0391320590249673,0.0413511939429237,0.0433690486116901,0.0581266584484235,0.0724390320520204,0.0848016118707565,0.0977036281202991,0.1096309422101277,0.1248413034278459,0.137862243869311,0.1494188026909648,0.1613189302390187,0.1735349311028899,0.1867429014439383,0.1997554588932892,0.2122213765358269,0.2242361300901885,0.2352203609806531,0.2462223107834346,0.2561913466039544,0.265590600709889,0.2752143917166064,0.2843112594896186,0.2927271467504272,0.3012921525370312,0.3085591438493704,0.3156490102683166,0.3222197956856179,0.3285846210675368,0.3341255644646811,0.339512604187843,0.344836949494427,0.3503405393299872,0.3512913938448714,0.3522894212947072,0.3531188960555345,0.3540258055215166,0.3545544892237863,0.353790834672175,0.3537803816008233,0.3547305625400582,0.3558887826205766,0.3569451142188644,0.358422602855374,0.3585821705579348,0.3600334623026247,0.3609732098931079,0.3610910317575057,0.3615891614793116,0.3615540985484009,0.3637653289618864,0.3653113087674714,0.3675796356097755,0.3680978783851899,0.3720431261063133,0.3762615042843542,0.3766393128307385,0.3755583008647724,0.3808788598574822,0.3814147018030513,0.3813576494427558,0.3865199449793672,0.3873292867981791,0.0,2.101961023243453,60.96383238458946,204.2366150217077,332.19497427729493,fqhc6_100Compliance_baseline_low_initial_treat_cost,17 -100000,95722,41736,392.0310900315497,6995,71.83301644345083,5464,56.444704456655735,2200,22.617580075635697,77.33907921770925,79.70829646473393,63.32552877917672,65.07662246716599,77.06789158073656,79.43672890202872,63.22696359910564,64.98026180255889,0.271187636972698,271.567562705215,0.0985651800710769,96.36066460710424,84.8144,59.68682907491668,88604.91840956103,62354.34808603736,254.66443,159.14732337073096,265415.33816677466,165630.91602842908,278.59607,133.6659804361534,287294.9792106308,136696.66374085218,3620.59765,1622.1822581169388,3743624.9033659976,1656093.572532056,1348.07004,587.8437398561243,1392581.569545141,598461.2898669621,2173.19736,897.6538308665346,2236307.181212261,908735.0136806988,0.37947,100000,0,385520,4027.496291343683,0,0.0,0,0.0,21521,224.15954535007629,0,0.0,25875,266.5531434779884,2041202,0,73150,0,0,0,0,0,60,0.6268151522116129,0,0.0,0,0.0,0,0.0,0.06995,0.1843360476454001,0.3145103645461043,0.022,0.3188150953604761,0.6811849046395239,25.44483700841745,4.567643198124864,0.3418740849194729,0.1976573938506588,0.2225475841874085,0.2379209370424597,11.111267758571634,5.517770008667184,23.3389026127094,12929.611603380234,61.46610816631294,12.585593290757172,21.133251327286526,13.45921080083531,14.288052747433944,0.556185944363104,0.7546296296296297,0.7066381156316917,0.6118421052631579,0.123076923076923,0.7177541729893778,0.9190031152647976,0.8864628820960698,0.7306273062730627,0.1753731343283582,0.5048239266763145,0.6851119894598156,0.64822695035461,0.5777777777777777,0.1094961240310077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788040836169,0.0045423206391694,0.0071252397917237,0.0092261420907169,0.0112102377343519,0.0135147521616474,0.0159078162443277,0.0182135601180206,0.0205116669052536,0.0227370490997357,0.0252597249428246,0.02750531516079,0.0295475815823845,0.0316395705837505,0.0337844114823646,0.0356555639432075,0.0376256086190821,0.0396948941469489,0.0413659713412224,0.0430366295786973,0.0577278469778756,0.0718672511744211,0.0850597609561753,0.0976645881746774,0.1101749427929685,0.1258673210357082,0.1390880930153611,0.1512967379269227,0.1633647496313393,0.1745493562231759,0.1885257384239054,0.2017107898868496,0.2134650535294629,0.223925675453859,0.2346884841544255,0.2459590696436886,0.2566636516922939,0.266575875924321,0.2757818264373687,0.2843797996469752,0.2926755868327237,0.3001275047668066,0.3073402091119837,0.314077303596881,0.3199393203883495,0.3258309439720414,0.3313176241285389,0.3369065460919044,0.3424147646496239,0.3472820999617661,0.3476436410587475,0.3481886101900136,0.3492970061062458,0.3506681530598949,0.3511691249795347,0.3510873232524614,0.3510505034488226,0.3522603799677323,0.3539707598325211,0.3550880591125937,0.3561272850372376,0.3571442732805964,0.3580817200688699,0.3607974316952158,0.3631655022886051,0.3636814362507176,0.3645076386107455,0.3685706166524581,0.3706863125242342,0.3737018693081962,0.3746326230712711,0.3761886853274593,0.3774936061381074,0.3793956256279465,0.3794084186575654,0.3825228695233509,0.3784885544057698,0.3827493261455525,0.3800226372382569,0.3848259679311693,0.0,2.395490019277941,57.91530450383066,207.3966287038637,316.6378589045725,fqhc6_100Compliance_baseline_low_initial_treat_cost,18 -100000,95695,41754,392.4969956633053,7136,73.49391295260986,5537,57.36976853545118,2280,23.501750352683004,77.30793472821749,79.68509579075814,63.31631099018998,65.07061494332416,77.03242929302438,79.40633087206486,63.21556911240287,64.9709112577978,0.2755054351931107,278.7649186932839,0.1007418777871151,99.70368552636444,85.19852,59.95585875998525,89031.08835362349,62652.85726734443,257.3761,160.26827954160598,268461.643764042,166985.82844830555,276.99292,132.80823444659467,286260.87047390145,136313.99757166105,3653.18267,1644.513943080735,3788249.5741679296,1689277.9981208388,1313.9194,570.6850798821465,1362119.9958200532,585450.0338389116,2241.57712,928.4277106937516,2312873.776059355,945094.811038954,0.37971,100000,0,387266,4046.867652437432,0,0.0,0,0.0,21778,227.0651549192748,0,0.0,25796,266.3880035529548,2037227,0,73214,0,0,0,0,0,44,0.4597941376247453,0,0.0,0,0.0,0,0.0,0.07136,0.1879328961575939,0.3195067264573991,0.0228,0.3105473965287049,0.6894526034712951,25.179938549125037,4.513128633487046,0.3404370597796641,0.2044428390825356,0.2255734152067906,0.2295466859310095,10.895982016739124,5.357320399556051,24.33612540766679,12901.722087597796,62.5554328183832,13.215114756618249,21.47411609631221,13.785497365368794,14.080704600083957,0.5468665342243092,0.7632508833922261,0.6923076923076923,0.5764611689351481,0.1093627065302911,0.6971014492753623,0.8933717579250721,0.8545081967213115,0.7087719298245614,0.1269230769230769,0.4969930238152514,0.7057324840764331,0.635647816750179,0.5373443983402489,0.1048466864490603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679869590749,0.0043472092740464,0.0066545613163046,0.008562200373771,0.0107497355788788,0.0128609832593377,0.0152338611822047,0.0176110260336906,0.0196487354065713,0.0219569868258079,0.0240907040636404,0.0262731006160164,0.0285182442716689,0.0308643247141238,0.0328562436150123,0.0348392432544195,0.0365036109873485,0.0386839564364248,0.0406753565595514,0.0429402443601184,0.0568044123177203,0.0711452107560421,0.0841639213546803,0.0971708035338662,0.1098436528101377,0.1247382780280439,0.1379727364345197,0.1506578107037935,0.1626801414424135,0.1743467627751319,0.1882962340753184,0.2009129950347782,0.2135075778990628,0.2245801626869588,0.2355128261539138,0.2467240443513995,0.2573481822036735,0.2672660170578572,0.2759763474786911,0.2841905067424355,0.2920860309702227,0.2993832578497115,0.3067039304619684,0.3140041531130343,0.3203602287939637,0.3262955143164055,0.3316274052331853,0.3377900820330939,0.3435336597784156,0.3476160859611745,0.3485421166306695,0.3489107325289229,0.3498961292237249,0.3508667585406542,0.3520151603324529,0.3512803172358673,0.351637519872814,0.3528673775958268,0.3539529529013523,0.3554227677289693,0.3567175428679103,0.3567621320604614,0.3574753069519618,0.3567610062893082,0.3575905713801698,0.3588765876876956,0.3598666628351389,0.362445691814924,0.3645145251793451,0.3680925133047897,0.3708667219305517,0.3738473085996139,0.376916714385697,0.3812562466364265,0.3844619621996391,0.3903519272204931,0.3910443183560803,0.3978844589096826,0.3899233296823658,0.3883384146341463,0.0,1.864797786984247,61.3764304530992,209.01574844767748,317.0251752930234,fqhc6_100Compliance_baseline_low_initial_treat_cost,19 -100000,95710,42087,396.8864277504963,7260,74.66304461393794,5599,57.95632640267475,2281,23.456274161529624,77.38171245272493,79.75501264809051,63.34258245905804,65.09481881885296,77.10949487684434,79.48393261399742,63.24258412610782,64.99854501443475,0.2722175758805889,271.0800340930888,0.0999983329502214,96.2738044182032,85.61872,60.24088014031827,89456.16967923936,62940.84145048402,256.10756,158.970096221949,267042.1899488037,165551.57522117754,277.86268,132.34069325880583,287436.0881830529,136053.44887290496,3702.08524,1658.2262603087447,3830587.326298192,1695567.4023488278,1365.34181,595.2559010518964,1408043.9556995088,603711.5237433206,2249.58248,931.9704674345842,2313711.691568279,939336.8580408434,0.38333,100000,0,389176,4066.189530874517,0,0.0,0,0.0,21673,225.86981506634623,0,0.0,25957,268.27917667955285,2039202,0,73136,0,0,0,0,0,45,0.4701703061331104,0,0.0,0,0.0,0,0.0,0.0726,0.1893929512430542,0.3141873278236914,0.02281,0.3158032443746729,0.684196755625327,25.34386368267841,4.573149859036332,0.3305947490623325,0.1991427040542954,0.2375424182889801,0.2327201285943918,11.035981272955167,5.393436933203761,24.11684922236005,12988.10532623019,62.88414813256692,12.97310093859826,20.717090085476528,14.753466998159404,14.440490110332712,0.5359885693873906,0.7524663677130045,0.6763911399243652,0.5796992481203007,0.1066768994627782,0.7124907612712491,0.9208211143695014,0.8648648648648649,0.7661016949152543,0.1465201465201465,0.4797456429580782,0.6782945736434108,0.6169154228855721,0.5265700483091788,0.0961165048543689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.0048454621942442,0.0069407801274505,0.0088576478475509,0.011036068108306,0.0131568228105906,0.0154065765995411,0.0177222426395524,0.0199135172709894,0.0218957928140034,0.0241334413221107,0.0262528362714196,0.028352529823118,0.0301407115927398,0.032321647867411,0.0342021733061756,0.0362809677686635,0.038157007212162,0.0401044212628316,0.0420618212893678,0.0575057181948259,0.0707742239438831,0.0835029695074605,0.0965502004229397,0.1083906493944892,0.1239833744037735,0.137518303940918,0.1508821243385398,0.1629683443552953,0.1743458811161054,0.1879721123694787,0.2017083283714585,0.2145288826530057,0.22620388084176,0.2369743832286591,0.2473431342160031,0.2582353859535651,0.2678864622927959,0.277752574513451,0.2865321638766116,0.2940700028926815,0.3018391422792269,0.3099786931818182,0.3171445009109214,0.3235040398517708,0.3294712190311845,0.3351180274959657,0.3409446714269349,0.346360034185378,0.3510297241315619,0.3519635022743789,0.3528247422680412,0.3540798513346097,0.3548280041556043,0.3554533995699562,0.3554825399251165,0.3547713576185128,0.356533997770638,0.3572037656047479,0.3587959245579287,0.3602384344305316,0.360435212660732,0.3608124503200435,0.3636201077359798,0.3642395249885815,0.3657464026436991,0.3668460465248712,0.3692505729804402,0.3711351048166585,0.372014465683742,0.3742406942224252,0.3753601536655639,0.3781822810590631,0.3801016479285384,0.382255468232175,0.3828974083363191,0.3871166589613191,0.3895705521472393,0.3924686192468619,0.3916601714731099,0.0,2.1165852355039774,59.81260942244874,211.1538436944092,324.4862194901713,fqhc6_100Compliance_baseline_low_initial_treat_cost,20 -100000,95864,41931,393.505382625386,7102,73.07226904781774,5485,56.6949011099057,2187,22.469331553033463,77.44506122741345,79.72282614761255,63.40474875222951,65.08417277612331,77.18462591700593,79.46198689179873,63.30913569686143,64.99082305898304,0.2604353104075159,260.8392558138206,0.0956130553680836,93.34971714027064,86.08358,60.57924973658736,89797.60911290995,63192.90842921989,256.186,159.0654103017844,266733.9355753985,165423.130999942,274.04356,130.8944500034554,282431.8096469999,133910.51634043714,3629.20679,1611.6787662580723,3752889.885671368,1648316.7156159494,1307.35609,558.609993281221,1352645.9880664274,571600.298612563,2159.81466,892.5129656628819,2221154.4479679544,903667.3601295667,0.38167,100000,0,391289,4081.7095051322704,0,0.0,0,0.0,21676,225.5695568722357,0,0.0,25469,262.41341901026453,2039874,0,73250,0,0,0,0,0,50,0.500709338229158,0,0.0,1,0.0104314445464407,0,0.0,0.07102,0.1860769774936463,0.3079414249507181,0.02187,0.3108144192256342,0.6891855807743659,25.564919577193475,4.64046793947585,0.331084776663628,0.2034639927073837,0.2273473108477666,0.2381039197812215,10.96924575662381,5.349729764381528,22.99733763783392,12955.96561973712,61.19080515046131,12.940788975857943,20.358078845708647,13.751081135175378,14.140856193719332,0.5473108477666363,0.78584229390681,0.6965859030837004,0.5685645549318364,0.1156202143950995,0.7043879907621247,0.9285714285714286,0.8506787330316742,0.7454545454545455,0.1346153846153846,0.4985666507405638,0.7279596977329975,0.6470160116448326,0.5185185185185185,0.1108986615678776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0043254084826629,0.0065299169564908,0.0088506353781819,0.0113703334891377,0.0137855958327822,0.0159394606045791,0.0179775051750333,0.0200961921392028,0.0222903885480572,0.0242676196229815,0.0262650503558755,0.02840827393546,0.0305187257634824,0.0325053316986225,0.0345781466113416,0.0366915551510889,0.0386608086543841,0.0408828537020887,0.0430145566920203,0.0574428595261928,0.0716457203748393,0.0846717621191498,0.0976925256298597,0.1097644372902397,0.1246345607869212,0.1379273832339767,0.151230862400527,0.1637627689748566,0.1747412805941717,0.1886707289550891,0.2018788467768059,0.2138561410364966,0.224574466923606,0.2348799402447329,0.2459172383270635,0.2567466642886603,0.2666449416233102,0.2762001927109901,0.2850032609068754,0.29277289546716,0.3004841992000187,0.3079517216897408,0.3151662456148753,0.3220499496132972,0.3282291345857714,0.3339428857715431,0.3397151113204424,0.3452926999922258,0.3496760059651855,0.3501548404470176,0.3502227477725222,0.3520065243679519,0.352858954406594,0.3537891695681162,0.3535760628959621,0.3537759676706447,0.3539934533551555,0.3554192229038855,0.3575100958887051,0.359088528025144,0.3601256321112516,0.3609139075621453,0.3615176636203159,0.3615277377175271,0.3630705934432205,0.3649886234357224,0.3667587592615848,0.3712068242203887,0.3719998413139207,0.3735992315784659,0.3767211015049632,0.3809583938379948,0.3822669947708397,0.3799487325548277,0.3887688984881209,0.3876029206151934,0.3930948419301164,0.3916339135317238,0.3982615566969577,0.0,2.02344244910037,57.44953002727805,205.33704906430305,319.4643745588868,fqhc6_100Compliance_baseline_low_initial_treat_cost,21 -100000,95684,41861,393.3991053885707,7063,72.5722168805652,5518,57.07328288951131,2197,22.678817775176626,77.29747507811412,79.70093631824277,63.28577397120039,65.06573238852928,77.03396531352709,79.43445609631485,63.18838814872554,64.96944313881711,0.2635097645870274,266.480221927921,0.0973858224748553,96.28924971217144,86.16938,60.60384489108163,90056.20584423728,63337.491002760784,257.98819,160.8061380924286,269047.28063208057,167482.14390463862,278.75565,133.30617456839056,287108.4089293926,136184.00045010404,3625.75548,1630.4075328195477,3753756.699134652,1668457.3218145955,1295.5801,565.3669209297221,1341041.856527737,578055.1761932963,2164.28918,901.6470454898124,2234708.498808578,918554.4653612402,0.38081,100000,0,391679,4093.4639020107857,0,0.0,0,0.0,21885,228.1050123322604,0,0.0,26030,267.72501149617494,2028010,0,72856,0,0,0,0,0,42,0.4389448601647088,0,0.0,1,0.0104510680991597,0,0.0,0.07063,0.1854730705601218,0.3110576242389919,0.02197,0.321947283485745,0.678052716514255,25.509671298090904,4.474923133995664,0.3405219282348677,0.2062341428053642,0.2258064516129032,0.2274374773468648,10.79269125816739,5.390714831511733,23.486790128687552,12939.394660183176,61.96551240922432,13.189103285831733,21.033402577712547,13.963729767058382,13.779276778621666,0.5514679231605655,0.7583479789103691,0.6881319850984566,0.6051364365971108,0.1059760956175298,0.7001477104874446,0.9171270718232044,0.8362445414847162,0.7293233082706767,0.1455223880597015,0.5031219980787704,0.6842783505154639,0.6403940886699507,0.5714285714285714,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025234099477076,0.0047775546223601,0.0069648205492664,0.0089828269484808,0.0111897786458333,0.0133940393978284,0.0155542409530414,0.0179530646841363,0.0200149319369585,0.0222936785081565,0.0244222662139845,0.0265455815578064,0.028477073281139,0.0306458925848068,0.0327713132272619,0.0349717619313597,0.0369706266453846,0.0387510772841018,0.0409388362342512,0.0430006670001667,0.0569930325599857,0.0711728498450716,0.0843870344914427,0.0977962446746962,0.1099754227186903,0.125526287950915,0.1386088174736261,0.1512805494915073,0.1633220360728299,0.1742439694689267,0.1883262524531475,0.201049140528472,0.2134027467680277,0.2243634690389587,0.2350768891583531,0.2466492100124267,0.2578665563765216,0.2677301968206757,0.2768762216464385,0.2853146532451303,0.2934434968017058,0.3005002870499467,0.3071964355543969,0.3144990875036019,0.320755176317359,0.3271553107944583,0.3330867046224072,0.3388911568097157,0.3445265714916667,0.349431404477276,0.3498472931700856,0.3500601169170386,0.3511478472556402,0.3525544267053701,0.3529657228017884,0.3528499477919046,0.3526045464633334,0.3541471588388941,0.3551558180018432,0.3566408619028932,0.3573085412847469,0.3589202618503037,0.359366169175057,0.3599231782755309,0.3605970292746238,0.3611834566100635,0.3620517786448691,0.3640395018241288,0.3662273765594799,0.3689146763104558,0.370938298649142,0.3731137088204038,0.3731362063541994,0.3725967018770423,0.3766099464134624,0.3768475818848291,0.3774803876326719,0.384505896705978,0.3891652846876727,0.3860393366756652,0.0,2.282850489283355,59.67425668394526,204.3972403790702,320.6960331497954,fqhc6_100Compliance_baseline_low_initial_treat_cost,22 -100000,95822,41907,393.65698900043833,7200,73.80351067604516,5670,58.53561812527394,2275,23.314061489010875,77.32864418348662,79.63822309300384,63.32870225298407,65.03796005696626,77.05108950854665,79.36196792198812,63.22705548249948,64.93992215628357,0.2775546749399638,276.2551710157197,0.1016467704845851,98.0379006826837,85.02054,59.87115000227261,88727.57821794577,62481.63261283694,257.11303,159.82801097274017,267672.2882010394,166145.83768431094,285.23252,136.73740845039123,293115.9858905053,139315.36679204513,3741.59867,1681.3840715261597,3864612.2602325142,1714607.354124096,1391.19187,604.1748839346681,1439070.4535492894,617738.206189255,2244.25442,930.5596027034868,2302769.32228507,937590.7238149784,0.38092,100000,0,386457,4033.0717371793535,0,0.0,0,0.0,21762,226.44069211663293,0,0.0,26474,271.7851850305775,2036852,0,73189,0,0,0,0,0,52,0.5426728726179791,0,0.0,0,0.0,0,0.0,0.072,0.189016066365641,0.3159722222222222,0.02275,0.3121713985278654,0.6878286014721346,25.25105689715717,4.552599242430559,0.3287477954144621,0.2075837742504409,0.2305114638447971,0.2331569664902998,11.081173203178556,5.487478511675416,24.18777625755133,12995.061868038703,63.92925745566791,13.808249017407183,20.94984191582833,14.53416156891553,14.637004953516875,0.5483245149911816,0.7689039932030586,0.6958154506437768,0.5791889824024483,0.113464447806354,0.7129695251594613,0.9304123711340206,0.868421052631579,0.7561837455830389,0.1232394366197183,0.4937778821319558,0.6894803548795945,0.6399147727272727,0.5302734375,0.1107899807321772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023801083708917,0.0048351782021651,0.0070511844975396,0.0091926702421582,0.0112975391498881,0.0136428425982488,0.015920905106513,0.0180636206843765,0.0202037750503305,0.0222154003581478,0.0244269803375103,0.0263846556448385,0.0285599769793636,0.0305959624036155,0.0328754692076063,0.0349797002035145,0.0370167232386786,0.0388611243597453,0.0410196216929293,0.04277996939827,0.0576816764193551,0.0714046717831824,0.0846226415094339,0.0981766591350953,0.1102291653490186,0.1257029895555837,0.1388561914760495,0.1513242601913234,0.1640928702635738,0.1757491289198606,0.1895172146418687,0.2023218323650015,0.2145474712106219,0.2255684302579798,0.2366843072318982,0.2481058088528512,0.2591471924790371,0.2690766217098597,0.2784792877906977,0.2878325688073394,0.2954455858822438,0.3023138538038443,0.3092549718017215,0.3153733387806109,0.3220116138928454,0.3285317533790038,0.3349468905581821,0.3406572386794017,0.3454970456463866,0.3504804002011593,0.3515691435513262,0.3519804508994519,0.3522497418560901,0.3531521328803322,0.3543117979623193,0.3538097142329816,0.352875701633036,0.3540248825904259,0.3551060951173982,0.3558263545916541,0.3573980743192417,0.3586141207286581,0.3584437955591034,0.3594349142280524,0.3613116654190713,0.3624097650610316,0.3635842622575006,0.3675016584009856,0.3699560246262093,0.3719402985074627,0.372408110953449,0.376056488712956,0.3750795064241191,0.3772071863674917,0.3789693858147936,0.3845228065952581,0.3908629441624365,0.3904081632653061,0.392719249862107,0.3925490196078431,0.0,2.50735502693403,62.1439384870925,211.3730250950877,326.8461507055077,fqhc6_100Compliance_baseline_low_initial_treat_cost,23 -100000,95746,42285,397.8338520669271,7146,73.51743153760992,5563,57.51676310237504,2194,22.517911975435005,77.35098256499538,79.69832178087835,63.33757887846742,65.07062175706955,77.07916075685615,79.42819005390072,63.23805585436598,64.97472641735112,0.2718218081392223,270.131726977624,0.0995230241014368,95.89533971842457,85.27772,60.013270182513146,89066.61374887724,62679.66304860062,257.89869,160.69448786725113,268772.00091909844,167249.0107860914,281.39939,134.47573333180372,291026.9671840077,138124.82453263563,3652.90394,1630.964563231803,3777034.883963821,1665260.6304511973,1348.49236,585.0914060092289,1394446.817621624,597127.9176249967,2157.2038,895.7071914184775,2215540.910325236,901634.029329925,0.3827,100000,0,387626,4048.482443130784,0,0.0,0,0.0,21753,226.59954462849623,0,0.0,26215,270.85204603847683,2036273,0,73113,0,0,0,0,0,41,0.428216322352892,0,0.0,0,0.0,0,0.0,0.07146,0.1867258949568853,0.3070249090400224,0.02194,0.3183814721150007,0.6816185278849993,25.39003629608723,4.522510291296892,0.3251842531008448,0.2103181736473126,0.2399784289052669,0.2245191443465755,11.282156890122572,5.742683110428073,23.256390281880503,12960.354763138035,62.26346450182732,13.455325329327463,20.20714971473015,14.833894278832666,13.76709517893704,0.5486248427107676,0.7615384615384615,0.6843559977888336,0.5760299625468165,0.1232986389111289,0.7176029962546816,0.9315476190476192,0.8758620689655172,0.7491525423728813,0.1598513011152416,0.4952696310312204,0.6930455635491607,0.62372634643377,0.5269230769230769,0.1132653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366439500572,0.004186051225915,0.0063620589936379,0.0085317299098074,0.0106150420432939,0.0125724058596573,0.0146685558760868,0.0168600675627404,0.0192050204928505,0.0214207493680213,0.0234946798696106,0.0258879080270991,0.0282115869017632,0.0302025517191667,0.0324540681060895,0.034521250206714,0.0365714759054857,0.0388099660672221,0.0408804050611854,0.0429954056278454,0.0577182048792709,0.0714001757542787,0.0844605221767851,0.0974094244800975,0.1093084545646215,0.1249141129586368,0.1376516501230169,0.1499276380198357,0.1616710818663476,0.1732367927058192,0.1872058079040058,0.2008571985193843,0.2138381882654948,0.2256278382666739,0.2359280909761441,0.2466940820466209,0.2569893554043941,0.2667049265185785,0.2759098235975208,0.2848445239405613,0.2938840717287366,0.3006929974480837,0.308378592642552,0.3157043409496651,0.321810189907232,0.3285387059432034,0.3349138038882078,0.3411854489951666,0.3466799658022229,0.3519132467738314,0.3524500613695526,0.3537417780167955,0.354681124429949,0.3555971068690119,0.3558418348350584,0.3557755775577558,0.3552591886957212,0.3564297716714441,0.3577363921393938,0.3581256374013705,0.3597235784571471,0.3615550670389955,0.3621675001050553,0.3630390420021079,0.3628567987474407,0.363569726956203,0.3633973479652492,0.3661856190987463,0.3672536820274877,0.3677038925853619,0.3704772373362645,0.3724388808644947,0.3726869455006337,0.3783763103527431,0.3791016548463357,0.3791287697462901,0.3828491096532334,0.387826444581534,0.3894795747062115,0.38671875,0.0,2.2662804812716124,58.75425012817767,205.99203275323063,326.8941891361608,fqhc6_100Compliance_baseline_low_initial_treat_cost,24 -100000,95838,42042,394.90598718671095,7119,73.0816586322753,5520,56.95027024770968,2207,22.64237567561928,77.51248185563044,79.79720466851127,63.42745123530996,65.1103839458494,77.23596807180867,79.52243657639194,63.3258009202137,65.01204173689624,0.2765137838217697,274.7680921193308,0.1016503150962577,98.34220895317004,84.95454,59.76234301639066,88643.89907969699,62357.66920886356,256.35728,159.57475180022064,266839.7086750558,165854.16202364475,280.26601,134.01114756507624,288641.2279054238,136906.45903826808,3656.79317,1639.5681474544465,3771674.628018114,1666846.665680049,1345.26443,586.3096030324264,1382283.8644379056,590379.7852964649,2180.05994,908.2473009187412,2237262.9437175235,914483.2347014794,0.3818,100000,0,386157,4029.268139986227,0,0.0,0,0.0,21613,224.8481813059538,0,0.0,26027,267.78522089359126,2047074,0,73360,0,0,0,0,0,54,0.5425822742544711,0,0.0,1,0.0104342745048936,0,0.0,0.07119,0.1864588789942378,0.3100154516083719,0.02207,0.3174116077384923,0.6825883922615077,25.35224393749589,4.556391148032465,0.3380434782608695,0.1980072463768116,0.223731884057971,0.2402173913043478,11.004042718271254,5.4145446632809175,23.36595892031793,12997.073075460234,61.8364046187161,12.68252001470364,20.8791738597189,13.731696628927482,14.543014115366082,0.5509057971014493,0.7785910338517841,0.7020364415862809,0.5902834008097166,0.1138763197586727,0.7104072398190046,0.9246376811594202,0.8758465011286681,0.7318007662835249,0.1588447653429603,0.5004768717215069,0.7112299465240641,0.6479269149683766,0.5523613963039015,0.102001906577693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022969663853641,0.0046586524341458,0.0070546022157127,0.0094570323994682,0.0115097828074524,0.0137904382227013,0.0161676219952963,0.0183965246476718,0.020514443843114,0.0225794576021597,0.0246382599612915,0.0266750079481473,0.0289657014857894,0.0308550491951751,0.0328869369787317,0.0349322426045281,0.036951190488509,0.0390026437198693,0.040979775000779,0.0428382556553784,0.0577849619355511,0.0715488127476709,0.0846780953977701,0.09754022602193,0.1100125301407798,0.1256324400832338,0.1390961505850432,0.1507985453926801,0.1631753620249922,0.1746431210443461,0.1884288633186364,0.2017369512616661,0.2141251832148092,0.2251889223780195,0.2364902721170641,0.2480533557492368,0.2586996490055156,0.2686642623613873,0.2778790933701845,0.2867462167969642,0.2948654354170752,0.303055018292825,0.3108036377791146,0.3178924232832041,0.3240258639478846,0.3302451311666769,0.3356074684759969,0.3412835200486642,0.3472141594746958,0.3516333342093506,0.3522394868904812,0.3527057404462964,0.3529601526010912,0.3534775844185778,0.3538657541146319,0.3539291499831892,0.353938185443669,0.3545693191140279,0.3560467696509345,0.3564860280332113,0.3572821358932053,0.3579453301159064,0.3591194968553459,0.3597157668930997,0.360712316947487,0.362255232950709,0.361661650292464,0.3644491684381643,0.366006001814502,0.3668957392499509,0.3693151177422254,0.3699010315756401,0.3709838107098381,0.3698929594451982,0.3722206716903898,0.3754098360655737,0.3700739845991243,0.3695695298551875,0.3709150326797386,0.374195989405978,0.0,2.495730941565592,58.07577814175714,213.17983527753256,312.5844235112795,fqhc6_100Compliance_baseline_low_initial_treat_cost,25 -100000,95737,42043,395.33304782894805,7055,72.55293146850225,5461,56.46719659065983,2201,22.58270052330865,77.31288813594676,79.67225034031866,63.318020272784125,65.0624457463295,77.04686694269827,79.40800293840404,63.22113819492248,64.96910572348995,0.2660211932484912,264.2474019146164,0.0968820778616432,93.34002283955556,85.81408,60.41571406882605,89635.22984843895,63105.91941342015,257.45397,160.48727710045404,268340.3281907727,167055.8792321193,282.01704,134.62837874873313,291734.6376009276,138279.8858643869,3614.0373,1613.5625462278613,3738361.072521596,1648808.7011582367,1355.5971,585.3145223983535,1399704.8267649915,595122.9225882923,2171.75662,887.4471751613236,2230548.356434816,894336.3984017427,0.38045,100000,0,390064,4074.328629474498,0,0.0,0,0.0,21648,225.503201479052,0,0.0,26193,270.63726667850466,2034303,0,73057,0,0,0,0,0,60,0.626716943292562,0,0.0,0,0.0,0,0.0,0.07055,0.1854382967538441,0.3119773210489014,0.02201,0.3182491582491582,0.6817508417508418,25.45513398659883,4.546802668692284,0.3202710126350485,0.2093023255813953,0.2376854056033693,0.2327412561801868,11.07950191227352,5.597545790917989,23.157611737278994,12887.594602477831,61.50271193796213,13.37807622328958,19.648648665445585,14.599817546841626,13.87616950238534,0.5442226698406886,0.7699037620297463,0.6986849628359062,0.5546995377503852,0.1180173092053501,0.7228915662650602,0.9255014326647564,0.8942528735632184,0.7205387205387206,0.1376518218623481,0.4868134526977982,0.7015113350125944,0.6339421613394216,0.5054945054945055,0.11328125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205473070145,0.0046118448392949,0.0069805903063139,0.0089282086702149,0.0111268192959794,0.0135845213849287,0.0158866116039563,0.0180498412471541,0.0200175843948719,0.0221070847113996,0.0240231311070326,0.0262155362735534,0.0284882704431623,0.0305914343983684,0.0328181743149554,0.0347789238687806,0.0368429772604895,0.0388175233984269,0.0410773710482529,0.0430746147353943,0.0575589893505951,0.0710354497133051,0.0846074791837077,0.0975091736849299,0.1095657858664248,0.1252882316853885,0.1385065947941978,0.1512964618725252,0.1628923024333967,0.17400162999185,0.1877691645133505,0.199913485454742,0.2122200478364861,0.2242150504708056,0.2346495329673352,0.2452146749966768,0.2556140899147283,0.2653779943067385,0.2745474368001454,0.2832701144815099,0.2911031863653205,0.299382355005498,0.3064516129032258,0.3123613825183124,0.3187541015482585,0.3250036984072192,0.3314960728557291,0.3370845161865237,0.3427597558288728,0.3488163060288422,0.349330778779211,0.3499421264399493,0.3510762933163949,0.351108986338679,0.3518943571705368,0.3517081341918827,0.3519975835042368,0.3519916902987535,0.3530693850932743,0.3543619581223288,0.3548818378683739,0.3560080332465053,0.358345611450221,0.3583986348429396,0.3601828118198965,0.361417033773862,0.3626449316955573,0.3648507154868801,0.3656176908356368,0.3663883089770355,0.3681811904433089,0.3719822279321235,0.3743207380260331,0.3728995626486611,0.3722100864279609,0.3746563060370592,0.3786679087098277,0.3810108450992429,0.3802302723953945,0.3889957676029242,0.0,2.228805364165414,58.70752839112909,206.2908015308606,315.98217917702016,fqhc6_100Compliance_baseline_low_initial_treat_cost,26 -100000,95772,41879,392.5990895042392,7204,73.78983418953347,5548,57.26099486279914,2274,23.336674602180175,77.37208356525132,79.7103900154853,63.35007434272507,65.07913586208636,77.09560414243337,79.43470532115725,63.2479825135019,64.98018152493792,0.2764794228179426,275.6846943280493,0.1020918292231698,98.9543371484416,85.09556,59.94669197479437,88852.2323852483,62593.129489615305,255.26893,158.74634804647116,265874.2012279163,165090.7912004954,278.35045,133.38242471324105,286341.22708098404,136010.83509519763,3645.59442,1642.1631389102588,3765941.4442634583,1674098.6746484656,1339.34589,584.1909148436608,1382292.2044021217,593893.5597901621,2230.2083,925.295126785112,2290925.489704716,934226.2765140414,0.38086,100000,0,386798,4038.737835693104,0,0.0,0,0.0,21584,224.66900555485944,0,0.0,25973,266.842083281126,2042505,0,73286,0,0,0,0,0,38,0.3967756755627949,0,0.0,1,0.0104414651463893,0,0.0,0.07204,0.1891508690857533,0.315657967795669,0.02274,0.3135304894006804,0.6864695105993196,25.361755552116072,4.598108102842478,0.3285868781542898,0.2060201874549387,0.2384643114635904,0.2269286229271809,11.341972835924969,5.765529758257076,24.01227561853889,12970.515611901474,62.45215000388893,13.446871903924444,20.55858008743258,14.657531820547344,13.78916619198456,0.5475847152126893,0.7725284339457568,0.7004936917169501,0.5495086923658352,0.1199364575059571,0.6964671953857245,0.8903743315508021,0.8687089715536105,0.654485049833887,0.1529411764705882,0.4979572218216774,0.7152145643693107,0.6442166910688141,0.5185909980430529,0.1115537848605577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0048355703337253,0.0069614986503216,0.0090815818612163,0.0115834435065595,0.0138764456751913,0.0162268497283633,0.0186950221442129,0.0208980542838456,0.0231501381639545,0.0254660230987589,0.0277404324757027,0.029572904353189,0.031486820428336,0.0335656980221502,0.0357187138369978,0.0376784290993406,0.0398751374110717,0.0418333523831295,0.0437281359320339,0.0581175709380837,0.0718895455258616,0.084904077995597,0.0978375084061869,0.1097590526459959,0.1253975129686955,0.1382909950296209,0.1511410280950254,0.162063813893928,0.1734346204945785,0.1875638859897352,0.2008605684508686,0.2125210586381175,0.2238513853353451,0.2345674938401971,0.246347757705982,0.2571208622016936,0.2665504834720036,0.2758773173082374,0.2841518163910394,0.292463416044884,0.3007122223911492,0.3087092768876012,0.3163366751709847,0.3229256449165402,0.3292442605182776,0.3347691074827206,0.3395547073791348,0.3453177798780409,0.3496410283482025,0.350292751867555,0.3511369572987984,0.3522251216587911,0.353644243152122,0.3548108815611381,0.3545212032011774,0.3537252167297969,0.3553963454712764,0.3561303371556881,0.3563718382471403,0.3574472078836227,0.3576353118313654,0.3592155545290387,0.3597088465845465,0.3613100836890722,0.361896533668447,0.363372843899779,0.3649325137823965,0.3675660404011866,0.3696906555537746,0.3720022052742809,0.3754686663095876,0.3760792280345353,0.378554957724827,0.380716934487021,0.3825599427412621,0.3819497920837825,0.3835725677830941,0.3819520174482007,0.391238670694864,0.0,2.562654681534025,60.80161287675072,205.97867071659437,319.0543876135916,fqhc6_100Compliance_baseline_low_initial_treat_cost,27 -100000,95653,41789,392.5229736652274,7152,73.50527427263128,5570,57.75041033736527,2269,23.3866162064964,77.25911226955019,79.65633775789114,63.27736057920528,65.04613706860802,76.97830544627708,79.37357619314801,63.17255205482692,64.9431987688034,0.2808068232731102,282.76156474312586,0.1048085243783631,102.9382998046202,85.53314,60.15386213890792,89420.23773431047,62887.58547971096,255.83311,158.9339131538436,266953.39403886965,165650.56313324577,272.96344,130.16097880478637,283091.8946609098,134233.16070614554,3672.77532,1648.9899615190498,3808990.256447785,1693529.8739395095,1337.78877,582.317355839702,1387607.6547520726,597937.3105205958,2235.85002,940.4598340367072,2306412.804616688,954928.7283095235,0.3809,100000,0,388787,4064.556260650476,0,0.0,0,0.0,21690,226.21350088340145,0,0.0,25473,263.9540840329106,2032294,0,73033,0,0,0,0,0,34,0.3554514756463466,0,0.0,2,0.020908910332138,0,0.0,0.07152,0.1877658177999475,0.3172539149888143,0.02269,0.313537930118241,0.686462069881759,25.356724451978906,4.582036209465979,0.3285457809694793,0.2170556552962298,0.2193895870736086,0.2350089766606822,11.029635506404851,5.441443070832518,24.273991263204906,12977.890087541824,62.77616214977599,14.057244997088889,20.6152502079945,13.455943472454946,14.647723472237663,0.5362657091561939,0.7402812241521919,0.6885245901639344,0.5613747954173486,0.1115355233002291,0.6730627306273063,0.8879310344827587,0.8470588235294118,0.7224199288256228,0.132890365448505,0.4922894424673784,0.6806039488966318,0.6405693950177936,0.5132837407013815,0.1051587301587301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588454564792,0.0045630152404709,0.0068611331019223,0.0091245325963258,0.0114451396307034,0.0137290448740146,0.0163957827762709,0.0187020835672795,0.0210077590701383,0.0231129854443466,0.0252214566929133,0.0270561659307937,0.0289951966098556,0.0309979293506814,0.0330240766158577,0.0352172384556527,0.0373973127803503,0.039308698359975,0.0413346924341078,0.0434107234078043,0.0578110794118569,0.0720173444913434,0.0852558515609412,0.0974559315965714,0.1100832171672369,0.1257745061695705,0.1386035543186139,0.1513788841055368,0.164139037433155,0.1750155736472407,0.1877818778187782,0.2007738746843263,0.212477120195241,0.2236627250709597,0.2346290454234596,0.2459120195512108,0.2561361881204741,0.2667005133412309,0.2754909322593123,0.2841281335126375,0.2923893106730746,0.3016804355989486,0.3086906444067112,0.3154892971880302,0.3219807441213437,0.3282440859150747,0.334393063583815,0.3400296288728257,0.3461643426165382,0.3517878197739888,0.3527494963425682,0.3530941021917997,0.3540329550445587,0.3533574049269116,0.3538740032613737,0.353310115268446,0.3531491360777132,0.3546868806975822,0.3565088757396449,0.3574174541012467,0.3580484129226712,0.3581191147840598,0.3596149390179681,0.360413258331279,0.3623999228320633,0.3625914315569488,0.3636753113218325,0.3668340121878058,0.3694202336003387,0.3706307673870491,0.3753899798128097,0.376797647687784,0.3790567951318458,0.3832659598810159,0.3849403811848653,0.3859544533206152,0.3864265927977839,0.3922483766233766,0.398262331838565,0.4094674556213017,0.0,1.8643420369195427,60.28535294507044,210.92444771452864,322.36293363596184,fqhc6_100Compliance_baseline_low_initial_treat_cost,28 -100000,95617,41911,394.36501877281233,7035,72.44527646757375,5423,56.1197276634908,2254,23.16533670790759,77.28554750318864,79.71888294929737,63.27381344368565,65.07247010185563,77.01244487446087,79.44478130972638,63.17296663634244,64.9736565102993,0.27310262872777,274.1016395709863,0.1008468073432098,98.81359155632197,85.16332,59.92965141441556,89067.13241369212,62676.77443803461,256.15649,160.25038959230977,267280.27442818746,166977.92190960795,279.75467,134.185913142624,289189.23413200583,137609.60049445814,3619.15647,1633.379007393898,3748971.584550865,1672286.9239106104,1343.2478,581.5717382861156,1389114.28930002,592580.6259220112,2223.62846,925.6665890226908,2288254.536327222,936685.5115252172,0.38,100000,0,387106,4048.506018804188,0,0.0,0,0.0,21636,225.63979208718115,0,0.0,26060,269.1466998546284,2033437,0,72989,0,0,0,0,0,50,0.5229195645125867,0,0.0,0,0.0,0,0.0,0.07035,0.1851315789473684,0.3203980099502487,0.02254,0.3217320922703359,0.678267907729664,25.19217938925033,4.609775671505625,0.3179052185137377,0.2043149548220542,0.2345565185321777,0.2432233081320302,11.175741587077496,5.52878694917735,24.09330241100684,12905.57197422993,61.32587139210793,13.027372631030303,19.650597294316498,14.160194317447631,14.487707149313492,0.5408445509865388,0.7572202166064982,0.70707656612529,0.5715408805031447,0.1122062168309325,0.7035175879396985,0.9289772727272728,0.8658008658008658,0.7006578947368421,0.1454545454545454,0.4846153846153846,0.6772486772486772,0.6489698890649762,0.53099173553719,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022294284556141,0.0045441174978953,0.0067721236242537,0.0090969151801595,0.0115167053269849,0.0136397437072803,0.0159439361018453,0.018020594965675,0.0201798079185034,0.0221521256004014,0.0240557231078558,0.0265307590345352,0.0284605566534914,0.0307793800830816,0.0326690758905524,0.0346914078257361,0.0367349899483948,0.0385494122045445,0.0407589745724783,0.042879642860868,0.0571595826974138,0.0717728920839184,0.0857151864150309,0.0981247366203118,0.1104890672863631,0.1257214873494805,0.1389057137088633,0.1518633805219171,0.1636474528392736,0.1746048800403984,0.188363887480173,0.2018193449057258,0.214365893263876,0.2257725180802104,0.2365815471465114,0.2471917595346978,0.2579152133082908,0.2675932501437219,0.2764213780717907,0.2855521155830753,0.2932740205277913,0.3001874414245548,0.3077233265335167,0.3146773341021575,0.3213259291733645,0.3267577449478729,0.332100359861071,0.337448664643012,0.3429836291170628,0.3480319542905513,0.3489890338157735,0.3492664784076038,0.3492121759756029,0.3497240849905131,0.3504942829919009,0.3499777221257701,0.3488641779189833,0.350587498558033,0.350666712371028,0.3509200251323938,0.3512557614523563,0.352703345489139,0.3541000168378515,0.3552374756018217,0.3565158676569885,0.356039655622228,0.3575712783194519,0.3579549023302556,0.36091407806003,0.3625084235144884,0.3657858769931663,0.3682755687858813,0.3695446219920419,0.3705112598904443,0.3751993246412156,0.379679773958088,0.38038496791934,0.3806921675774135,0.3807702813438951,0.3780211480362537,0.0,2.307622485431974,61.490926042946846,203.8433292773813,304.1030369794228,fqhc6_100Compliance_baseline_low_initial_treat_cost,29 -100000,95802,41888,393.54084465877537,7048,72.28450345504268,5566,57.4413895325776,2259,23.162355691947976,77.35864855579545,79.66148032498424,63.35358995694328,65.05365037266913,77.08073779647414,79.3844383838341,63.25235026624279,64.95502006875095,0.2779107593213155,277.041941150145,0.1012396907004813,98.63030391817064,86.22966,60.65324468885025,90008.2044216196,63311.04224217683,256.37151,159.39028081409324,266985.96062712674,165755.0581554595,283.29633,135.9942972356332,290307.1125863761,137888.25080086038,3688.0805,1656.8483809219003,3809072.722907664,1688910.7296291315,1370.72455,592.0443440063825,1413429.197720298,600665.4568332395,2226.75278,923.498753210949,2285803.6784200747,934019.3867756872,0.38056,100000,0,391953,4091.2820191645264,0,0.0,0,0.0,21671,225.53808897517797,0,0.0,26372,270.1300599152418,2033467,0,73031,0,0,0,0,0,44,0.4384042086804033,0,0.0,0,0.0,0,0.0,0.07048,0.1852007567794828,0.320516458569807,0.02259,0.3136382031566168,0.6863617968433833,25.512283194020718,4.513146902683594,0.3282429033417176,0.2024793388429752,0.2353575278476464,0.2339202299676608,11.03907883457735,5.586943738923145,24.05645219400516,12973.837752227391,62.52204761709402,13.097868606381244,20.612253371436783,14.438817438071135,14.373108201204849,0.5461731943945383,0.7763975155279503,0.6836343732895457,0.5778625954198473,0.1221198156682027,0.6954277286135693,0.9252873563218392,0.8347639484978541,0.7316176470588235,0.1222222222222222,0.4980997624703088,0.7098844672657253,0.6318883174136665,0.5375722543352601,0.1220930232558139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025909357731311,0.0047908922403751,0.0070054847572411,0.009386384161872,0.0116127852396724,0.013854839530034,0.0159617813633215,0.0181163485764997,0.0201765318840283,0.0223408825876143,0.0244899213372664,0.0265657373787104,0.0285919761647917,0.0306756673321122,0.0327566296861467,0.0351255886970172,0.0370013968648145,0.038854678526259,0.0408205660867307,0.0428599685603339,0.057669838090469,0.0721693674856246,0.0851396109340935,0.0975040723030844,0.110250492660154,0.1256723768057742,0.1390800089051915,0.1512243899325575,0.1638248577316065,0.1756948018528049,0.1891696906395029,0.2020858802782616,0.2142204628501827,0.2254020347883163,0.2358711808422791,0.2469464210502981,0.2575510659671838,0.2678239933395587,0.2774253583141362,0.2858419448708842,0.29387868476789,0.3021924639174051,0.3089731291671108,0.3160280626011872,0.3219706182808776,0.3276338514680483,0.3337548674671641,0.3396428162272941,0.3457855523161645,0.3504576009297289,0.351065119851247,0.3513446523732804,0.3519888405123219,0.3524615050965083,0.3535678152710825,0.3537067696835909,0.3529234478601567,0.3534254243706472,0.3559037301151947,0.3556672350354483,0.3564811327860209,0.3584965632325479,0.3588196831958828,0.3595765721220839,0.3621769299581731,0.3627196092334357,0.3617393800229621,0.3628228723741829,0.3663797683561789,0.370449077786688,0.3719766854835008,0.3752415718273567,0.3775120834393284,0.3785830178474851,0.3790849673202614,0.3793103448275862,0.3777262180974478,0.3802845947618065,0.3781488819699972,0.3765974440894569,0.0,2.6129737011758443,59.25899302049545,210.7305401526381,319.9995547168205,fqhc6_100Compliance_baseline_low_initial_treat_cost,30 -100000,95871,41752,392.3814292121705,7017,71.91955857349981,5483,56.71162290995192,2176,22.342522764965423,77.41454581429173,79.70348895390578,63.37712166936033,65.06824828367068,77.15243211043116,79.44174396347249,63.279915403737,64.9740132299276,0.2621137038605639,261.7449904332858,0.0972062656233276,94.23505374307696,85.38662,60.03701240769029,89064.07568503509,62622.70384964201,255.59345,159.3563432472749,266148.282588061,165766.4082436554,278.3183,133.14239947551044,287903.4535991072,136998.9287245505,3612.28909,1623.329566227271,3737332.936967384,1662712.328261174,1328.61376,580.7486319940563,1372402.4991916222,592328.0992104555,2142.53924,894.1402390429528,2201849.3183548725,903604.8051144724,0.37934,100000,0,388121,4048.367076592505,0,0.0,0,0.0,21596,224.78121642623944,0,0.0,25846,267.1089276214914,2039869,0,73286,0,0,0,0,0,59,0.615410290911746,0,0.0,1,0.0104306828968092,0,0.0,0.07017,0.1849791743554595,0.3101040330625623,0.02176,0.3189643486512132,0.6810356513487867,25.216231751390907,4.592112936728978,0.3355827101951486,0.2022615356556629,0.2352726609520335,0.2268830931971548,11.050393309235815,5.539048649804717,23.14828734279206,12854.923714036571,61.57502285824814,12.92109148041917,20.70330162490665,14.266448884049138,13.684180868873176,0.5557176728068576,0.7835888187556357,0.6804347826086956,0.6007751937984496,0.1213826366559485,0.7111613876319759,0.9114285714285716,0.8696629213483146,0.7148014440433214,0.1535433070866141,0.5061342314168872,0.7246376811594203,0.6200716845878136,0.5695952615992103,0.1131313131313131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023890266740901,0.0046603515526062,0.0069359238265207,0.0090958926359815,0.0112613070433987,0.0133192238423264,0.0153524857375713,0.0174221714472234,0.0196126501593527,0.0219603751777184,0.024009997336775,0.0260955194485475,0.0281847886397731,0.030211013896037,0.0323019661618088,0.0343014728666157,0.0363568642463244,0.0383144541978008,0.0401760687664804,0.0421191694753047,0.056463301460851,0.0705223334657107,0.0840387194099899,0.0970976752000336,0.1091675003949239,0.1241616054924742,0.1369757069150007,0.1495083709806005,0.1604323147832024,0.1714934452917488,0.1849273803119957,0.1975175157858316,0.2088956988546217,0.2210772475440111,0.2317499395511397,0.2426378636801275,0.2544495494691765,0.2646615865308966,0.2734985538478988,0.2825145997938852,0.2911032193135678,0.2988726201057211,0.305918678796626,0.3126730181556714,0.3192440906605092,0.3256479175400094,0.3327949719551282,0.3388234096173917,0.3443513667721354,0.3490897561233387,0.3505692152239811,0.3503888774175786,0.3514183847465509,0.3515416082450384,0.3524759540339245,0.3527690540022979,0.3523603044737383,0.3522768311500706,0.3543144258540837,0.3559579022475919,0.3564999345047624,0.3569607746270131,0.3580999036971904,0.3593624430752746,0.359419314521944,0.359501979579079,0.3611229627101288,0.3640577531397789,0.3661359332257838,0.3680508642956487,0.3717256094792754,0.3773764761955198,0.3786941580756013,0.3799442477209372,0.3824545030331311,0.3887905604719764,0.3905605620895066,0.39244126659857,0.3920220082530949,0.4012181195279787,0.0,1.9125101720170985,58.61828692153541,211.0355432478441,312.24007236722247,fqhc6_100Compliance_baseline_low_initial_treat_cost,31 -100000,95718,41905,393.8862074009068,7195,74.1762259972001,5602,58.024613970204136,2276,23.47520842474769,77.36002699221102,79.73173710640032,63.33690834044432,65.08841856184955,77.08439722332776,79.452740259426,63.23737780450552,64.98965444966105,0.2756297688832632,278.9968469743229,0.0995305359388041,98.76411218850478,85.73598,60.30115215882841,89571.42857142857,62998.7590200677,257.67633,160.28949391759838,268716.8453164504,166973.35288827433,281.05897,134.65337020373192,290397.55322927766,138198.158433814,3689.48026,1657.7640411761683,3824178.984099125,1701699.842347968,1339.13518,580.8957271238157,1384696.1177625945,592603.2939710994,2235.42902,918.3464701619578,2307086.7130529266,935365.1609183882,0.38094,100000,0,389709,4071.428571428571,0,0.0,0,0.0,21766,226.87477799368975,0,0.0,26155,270.0223573413569,2037059,0,73075,0,0,0,0,0,64,0.6581834137779727,0,0.0,0,0.0,0,0.0,0.07195,0.1888748884338741,0.3163307852675469,0.02276,0.3226959745762712,0.6773040254237288,25.03436161355405,4.540325986766943,0.326669046769011,0.2070689039628704,0.2379507318814709,0.2283113173866476,11.09217792537929,5.664500372023775,24.077315174322017,12952.735767582397,63.20920900241091,13.76862893547618,20.52175452624253,14.904677420162828,14.014148120529375,0.5548018564798286,0.7836206896551724,0.6879781420765028,0.6009002250562641,0.1086786551993745,0.7195207892882312,0.915,0.8620689655172413,0.7477203647416414,0.1333333333333333,0.4989242170690892,0.7144736842105263,0.6336917562724015,0.5527888446215139,0.1025390625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002309305081484,0.0045920384393151,0.0069817237145205,0.0092443974887746,0.0113409821392245,0.013512687874221,0.0157084607543323,0.0179836289779338,0.0201277791975466,0.0221953766457134,0.024359736717997,0.0264981571409504,0.0286910111781824,0.0310337013843111,0.0329962855963681,0.0351936477740328,0.0370665810274632,0.0391816992921346,0.0411882176734897,0.0429812862084774,0.0574671832412619,0.0712715855572998,0.0838779385076944,0.0974096315850362,0.1097569975225344,0.1259857502272775,0.1392554094187526,0.1523522713971034,0.16377791304905,0.174351878666967,0.187781440544675,0.2010106256356987,0.2126142576108339,0.2242517653746092,0.2346776056043726,0.2456142293890931,0.2566659972778187,0.2668113530046779,0.2769942406240079,0.2858925770292086,0.294115606134203,0.3022758354665638,0.3097502128867442,0.3168500580706186,0.3228701185156402,0.3288413687763297,0.3344471978173262,0.3396998982706002,0.3451061626100466,0.3507623259190812,0.3515658689090125,0.3525026183782592,0.3521180457497882,0.3523053293534645,0.3525792852780384,0.3529032654063344,0.3523706896551724,0.352762449086848,0.3537956166914746,0.3544738111831877,0.355797373358349,0.3566976035461975,0.3561721285729243,0.356532820604543,0.3576948075395392,0.3596154348564412,0.3621099001687691,0.3645342027792725,0.3655716255878921,0.3680215278335609,0.3705087403717541,0.369247311827957,0.3721728081321473,0.3765844664669278,0.3775384906016813,0.3809807898818756,0.3780619319057156,0.3792537925379254,0.3795701925760535,0.3817686014803272,0.0,1.945669515991101,63.065759872843095,210.13602673431836,316.867763929096,fqhc6_100Compliance_baseline_low_initial_treat_cost,32 -100000,95747,41798,393.464024982506,7169,73.62110562210826,5581,57.66238106676972,2205,22.62211870868017,77.33346816806463,79.69526703449722,63.32120940122799,65.06998936162795,77.0771820231746,79.440964792302,63.22774892537184,64.97995751743787,0.2562861448900264,254.30224219522304,0.0934604758561477,90.03184419007937,85.44338,60.15755744578839,89238.701995885,62829.70479052962,257.85369,159.92283254986629,268661.38886858075,166380.52633488912,283.74368,135.73576380151707,292219.6309022737,138612.25114756962,3663.68189,1634.450107728169,3787383.3853802206,1668141.8965091624,1386.41037,601.0113066364077,1432993.9005921856,612768.4482214132,2180.7209,891.5815974523848,2239840.976740786,898723.7371580902,0.3791,100000,0,388379,4056.304636176591,0,0.0,0,0.0,21843,227.4640458708889,0,0.0,26381,271.4340919297733,2037780,0,73118,0,0,0,0,0,48,0.5013211902200592,0,0.0,0,0.0,0,0.0,0.07169,0.1891057768398839,0.3075742781420003,0.02205,0.3162586482171368,0.6837413517828632,25.47485061695211,4.539866098804176,0.3241354595950546,0.2150152302454757,0.2254076330406737,0.2354416771187959,11.166534182677571,5.59374704051509,23.18509986884438,12909.861603102998,62.61385560285292,14.138364703254885,20.151702209917637,13.989786978528674,14.334001711151744,0.5540225765991758,0.7733333333333333,0.6965174129353234,0.5850556438791733,0.1278538812785388,0.7149220489977728,0.9093264248704664,0.8658823529411764,0.7360594795539034,0.1722846441947565,0.5028341993386868,0.7088452088452089,0.6445086705202312,0.5439838220424671,0.1165234001910219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022898829727949,0.0046140429156694,0.0067900858656598,0.0088601678554735,0.0112690954211671,0.0132778054964412,0.0151898217999429,0.0172888897960849,0.0194902089039695,0.021864411984482,0.0240406794951969,0.0260048252143113,0.0281974023837191,0.0302983491416154,0.0322617254400264,0.0344909560723514,0.0364376242544731,0.0382791503668115,0.0402665724028944,0.0422034975159096,0.0578625412334544,0.0721723932223257,0.085933729251044,0.0982289344158849,0.1104783599088838,0.1252075160461452,0.1380978652972881,0.1503831417624521,0.1624089540124313,0.1731740533816606,0.1868476328970754,0.20014064697609,0.2133574046482289,0.224968556898343,0.235712085881473,0.2471406269030193,0.257004442658451,0.2672068422237227,0.2757110107360919,0.2840818009022832,0.2915924598126518,0.2989603919871832,0.3064092554475122,0.3140865148484013,0.3207499089916272,0.3266353300191957,0.332541627081354,0.3376464905813864,0.3430431181738185,0.3487798117914131,0.3487378536098869,0.3500343926262209,0.3509192082834401,0.3514064646756815,0.3515201999167013,0.3505263804057579,0.3506194774497517,0.3521458062605892,0.3534940254048687,0.3544935678373977,0.3557766306898169,0.3565458506634977,0.3576313139788555,0.3595852833822245,0.3617293178694572,0.36267448864678,0.36488645441059,0.3661922943422422,0.3693083624307833,0.3707253061873707,0.3743039707895937,0.3770587921752572,0.3802888269571827,0.3845680909929296,0.387381404174573,0.3900734851222744,0.3868026580126719,0.3896345240553376,0.3909604519774011,0.3980314960629921,0.0,2.386626452217127,59.15491955625651,212.43005807485997,320.46469395861175,fqhc6_100Compliance_baseline_low_initial_treat_cost,33 -100000,95804,41865,393.6056949605445,7045,72.36649826729573,5469,56.56340027556261,2174,22.35814788526575,77.34149214859087,79.68029355014777,63.33904717832892,65.07231504796883,77.07993339875686,79.41791287556347,63.24344844986269,64.97847872379582,0.261558749834009,262.3806745842927,0.0955987284662285,93.83632417301158,86.0178,60.50457964125182,89785.18642227881,63154.54432095928,255.35545,159.50803115267863,266002.6094943844,165966.53704246366,280.25019,134.8552032959808,289013.8198822596,138016.95270316242,3618.61809,1624.5468576114465,3744181.71475095,1663401.6320813713,1336.15159,582.1460886839961,1380587.4180618764,593602.3731224437,2149.609,890.2076645470914,2212302.9518600474,902381.1155434432,0.37996,100000,0,390990,4081.14483737631,0,0.0,0,0.0,21648,225.39768694417768,0,0.0,26034,268.3499645108764,2036530,0,73063,0,0,0,0,0,48,0.4905849442611999,0,0.0,0,0.0,0,0.0,0.07045,0.1854142541320139,0.3085876508161816,0.02174,0.3134909970438054,0.6865090029561945,25.20623145464756,4.57070512429668,0.3318705430608886,0.2029621503017005,0.2289266776375937,0.2362406289998171,11.177163771289512,5.646861189587035,23.101176322664735,12856.886341993886,61.51904788922758,12.930867793919768,20.4817594311618,13.922042728164078,14.184377935981948,0.5474492594624246,0.7360360360360361,0.7090909090909091,0.5838658146964856,0.1230650154798761,0.7195385724585436,0.904632152588556,0.8673684210526316,0.7429577464788732,0.1647509578544061,0.4889759921607055,0.6527590847913862,0.6529850746268657,0.5371900826446281,0.1125121241513094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044199791166124,0.0065553807905018,0.0087895785066861,0.0108256600702039,0.0131505230668934,0.0154822127937336,0.0177373403179854,0.0198378207029132,0.0219129829304006,0.0240646371848373,0.0259188137316314,0.0278746361382828,0.0296484016853643,0.0318117093505582,0.0340169102598557,0.036075588920528,0.0381539227585348,0.0403690888119953,0.0424838642515094,0.0571234806197506,0.0710349947199481,0.0844711775246518,0.0969399550240642,0.1094273610554935,0.1254756066627209,0.1384065805931862,0.1514175120695889,0.1630751496910121,0.1745211734065015,0.1880415478176632,0.200471366638918,0.2119701019055689,0.2234072778931264,0.2337309658622395,0.2442655980162068,0.2537785902180213,0.2636270756379885,0.2725460886895864,0.2810220647078998,0.2898495502672994,0.2975027144408252,0.3050621092318784,0.3119726148727094,0.3185358633407745,0.3246479913351713,0.331737799162657,0.3374865053661015,0.3432098765432099,0.3488653874013881,0.349206776376872,0.3497998982300276,0.3508032694475761,0.3511790304625038,0.3516628986197049,0.3511869186091061,0.3509656550280658,0.3518268597761685,0.3524473607565659,0.35346171070309,0.3546530220658778,0.3560294672464804,0.357455586427549,0.357873670481887,0.3601335979476257,0.3607408962115647,0.3612743403617928,0.3654348518636508,0.3671228007819442,0.3696463693653916,0.3703378065710319,0.3744547951106564,0.3777422449632235,0.3786113699906803,0.3818634015687775,0.3816454173682944,0.3802221874511031,0.3846153846153846,0.3877435752612256,0.3828549262994569,0.0,1.9569711940519163,61.40928726680767,197.06813547135047,318.4594466768639,fqhc6_100Compliance_baseline_low_initial_treat_cost,34 -100000,95703,42056,396.3721095472451,7121,73.17429965622811,5594,57.866524560358606,2332,23.93864351169765,77.3419109081298,79.71047731203512,63.33255108723839,65.08068253290276,77.052639469895,79.4233138368425,63.2261823595582,64.97868094763517,0.289271438234806,287.163475192628,0.1063687276801843,102.00158526758683,85.85566,60.31849796458483,89710.52109129285,63026.75774488242,255.07937,158.70199101163837,265933.6697909156,165229.01164189036,276.56387,132.0608137522423,285945.38311233715,135578.40586357538,3724.56747,1661.6823002847268,3850785.189596983,1695277.8703747278,1356.66005,583.1636957895959,1403852.846828208,595627.0292358609,2303.67116,955.0023054280124,2366253.8060457874,960551.2036320854,0.38161,100000,0,390253,4077.7509586951296,0,0.0,0,0.0,21554,224.60110968308203,0,0.0,25727,265.7596940534779,2037808,0,73136,0,0,0,0,0,44,0.4597557025380604,0,0.0,0,0.0,0,0.0,0.07121,0.1866041246298577,0.3274820952113467,0.02332,0.3134947171325398,0.6865052828674603,25.361699137956183,4.52178205679611,0.3337504469074008,0.194315337861995,0.2304254558455488,0.2415087593850554,10.929485980457,5.49524653159146,24.772397139120017,12974.325605359809,62.83557268863221,12.684314997517172,21.062694600597936,14.349757915308604,14.7388051752085,0.539327851269217,0.7773689052437902,0.6845206213176218,0.5748642358417377,0.1132494448556624,0.6937869822485208,0.9592476489028212,0.8602150537634409,0.6836363636363636,0.1501706484641638,0.4900990099009901,0.7018229166666666,0.6262482168330956,0.5453648915187377,0.1030245746691871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0047633525894395,0.0066849259484682,0.0089481595839765,0.0110119168666368,0.0132157693247536,0.0151992415670203,0.0173920143708663,0.0193072292235202,0.0216056332262092,0.0235676429281694,0.0257013184375898,0.0276215254568452,0.0298365992870536,0.0318552839320172,0.0339790770757525,0.0361647921456533,0.0382112724291451,0.0403032099073525,0.0421035079308835,0.056912182486631,0.0707743198400485,0.0847699491107497,0.0978898870258557,0.1101323909488897,0.125175912895341,0.1384812893231902,0.1504849717321635,0.162382203987435,0.1734204512536612,0.1877659173407727,0.2010628395783276,0.2133323180349625,0.2245054187946326,0.2351944737768391,0.2462606423613033,0.2570459843187116,0.2669597283745193,0.2764731241349579,0.2850437868467746,0.2927698574338085,0.3005243813938245,0.308125836204549,0.3163775430688262,0.3227857333884418,0.3296718215815262,0.335791136859529,0.3414938604982931,0.3465567309686787,0.3518203290975548,0.3524115062141105,0.3535005986870174,0.3540833568009011,0.3544192229334335,0.3552477072402158,0.3550917838864883,0.3549828124257449,0.3560918670984924,0.3571771154504967,0.3582445141065831,0.3594899091541745,0.3599944414666587,0.3620024049110816,0.3634008425510824,0.3641582096059292,0.366172418317806,0.3682925428013329,0.3705805878809018,0.3737535043826963,0.3781546375180839,0.3793230316409124,0.3829752953813104,0.3846986877309211,0.3888116210786586,0.3891173376685474,0.3858695652173913,0.3910806174957118,0.3904682274247492,0.4000571102227299,0.3964774951076321,0.0,2.238855509267366,59.776763399608406,208.38393697402367,327.27097283869216,fqhc6_100Compliance_baseline_low_initial_treat_cost,35 -100000,95707,41892,393.95237547932754,7085,72.81599047091645,5519,57.08046433385229,2266,23.30028106617071,77.33810060160408,79.72263816626611,63.31256206328344,65.07586313830308,77.06431876972358,79.44784616567341,63.21197268587124,64.97771057589439,0.2737818318804983,274.79200059269715,0.1005893774121986,98.15256240868564,85.54722,60.17537357128349,89384.49643181796,62874.57925886664,255.86781,159.67665749035203,266742.88192086265,166237.6035827892,278.83951,133.4564052849018,288028.9529501499,136899.27151156554,3653.31306,1638.1748700319515,3780947.06761261,1675453.6820505126,1320.75176,571.4001984008887,1367131.3070099363,584190.9905272903,2228.20408,927.2246311416948,2293242.5214456622,938132.7452845958,0.38137,100000,0,388851,4062.931655991725,0,0.0,0,0.0,21668,225.76196098508996,0,0.0,25972,268.06816638281424,2035597,0,73070,0,0,0,0,0,53,0.5433249396595861,0,0.0,1,0.0104485565319151,0,0.0,0.07085,0.1857775913155203,0.3198306280875088,0.02266,0.3147826086956521,0.6852173913043478,25.402078168336597,4.525398508674537,0.3286827323790541,0.2022105453886573,0.2342815727486863,0.2348251494836021,11.051249992857256,5.6230535460721445,24.040659935456105,12976.550440227042,62.017229355655225,13.133036265984527,20.376568467809804,14.251864330707216,14.255760291153669,0.5473817720601558,0.7580645161290323,0.7078280044101434,0.5823665893271461,0.1064814814814814,0.7190929041697147,0.8954423592493298,0.8819742489270386,0.7491039426523297,0.1164658634538152,0.4908477842003854,0.6890982503364738,0.6476261127596439,0.5364891518737672,0.1041069723018147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0044329478596064,0.006599386764676,0.008862329003801,0.0110092489901405,0.0135161287036942,0.0158293046121208,0.0181600906983157,0.0204736971283645,0.0227207568807339,0.0247646588322155,0.0269545930626578,0.0289644961288133,0.0309867567400572,0.0330424197408599,0.0350532722932404,0.0370872720872203,0.0390090052703656,0.0409410835144042,0.0427318374065045,0.0578154209267594,0.0716147605338916,0.0846712417889147,0.0975650801998422,0.1098631061612774,0.1256466406423561,0.1385834960522964,0.1517433068518242,0.1630365082079343,0.1746738477383915,0.188025255354911,0.2011713886693587,0.2136753997365929,0.2254880504245819,0.2365333392035573,0.2475753444396413,0.2576617226590422,0.2675514132306757,0.2766641302002294,0.2851835714449515,0.2936243165600963,0.3013482014219952,0.3091471435173664,0.315446062321587,0.3219001531989398,0.3285920657850872,0.3349717868338558,0.3405297185631033,0.3458082085197432,0.3506683926873085,0.3512555908821469,0.3518554230144081,0.3526666102603153,0.3535375448339697,0.3543516741785295,0.3545342949209759,0.3544705136334813,0.355982905982906,0.357377666678081,0.3585381560588172,0.3589049846870714,0.3607038123167155,0.3617857969003007,0.3607814045499505,0.3620427381383557,0.3632263614797049,0.3639189960068454,0.3653039997478488,0.3667592560036567,0.369012630073874,0.3708717575977831,0.3724349481700867,0.3719344344344344,0.3716680510458355,0.3723642470610188,0.3718190386427898,0.3703368071288325,0.3636363636363636,0.3653585926928281,0.3678204640547737,0.0,2.2248121890394343,60.4232639608669,201.53569787189596,322.40427192125264,fqhc6_100Compliance_baseline_low_initial_treat_cost,36 -100000,95655,41777,393.0270242015577,7159,73.57691704563274,5544,57.42512153050024,2238,23.009774711201715,77.27782633283482,79.6870728519356,63.2892740309558,65.0715742331714,77.00728482488715,79.4166699488408,63.190523968321,64.97557389594174,0.2705415079476694,270.4029030947908,0.0987500626347923,96.00033722966828,84.95146,59.80985523124315,88810.26606032094,62526.6376365513,256.51592,159.29237718224945,267642.5696513512,166002.7778811871,276.727,131.98326923922903,286198.881396686,135633.78993883773,3666.32555,1637.8448161001704,3799179.865140348,1678558.116251289,1311.301,566.7887644585215,1357621.797083268,579291.0924243599,2210.84058,909.957945429852,2275194.1038105693,921155.1536270864,0.3802,100000,0,386143,4036.830275469134,0,0.0,0,0.0,21703,226.3237677068632,0,0.0,25796,266.50985311797604,2039326,0,73162,0,0,0,0,0,46,0.4808948826511944,0,0.0,0,0.0,0,0.0,0.07159,0.1882956338769069,0.3126134935046794,0.02238,0.3154817275747508,0.6845182724252492,25.4936930704854,4.558239176271124,0.3297258297258297,0.2052669552669552,0.2337662337662337,0.2312409812409812,11.226872915342858,5.72174429757207,23.646844727863296,12908.00428349284,62.13475121140439,13.248502682270953,20.45644515592242,14.322555168791329,14.107248204419708,0.5501443001443002,0.7565905096660809,0.7106126914660832,0.5802469135802469,0.1076443057722308,0.7074468085106383,0.9213483146067416,0.87409200968523,0.7259786476868327,0.1428571428571428,0.5011825922421949,0.6815856777493606,0.6628975265017668,0.5399014778325123,0.0984251968503937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.0047967710530585,0.0070148011288652,0.0092075977926156,0.0112925377689607,0.0132741108994407,0.0155532891381947,0.0176391882092189,0.019649761666087,0.0217576136282152,0.0239384615384615,0.0258127471624467,0.0280910437932169,0.0301262561195568,0.0322327531024799,0.0345765586860287,0.0366524699225914,0.0388038004257307,0.0407821345321345,0.0428018809888746,0.0572345183606077,0.0711009174311926,0.0844223320842648,0.0973543525846102,0.1097052647130209,0.1252765398905484,0.1379189499171658,0.1505162108313711,0.1622066782177159,0.1733533737720758,0.1875303067854872,0.2006755952058724,0.2121858571786192,0.2233444215870792,0.2341622359455324,0.2449807206488498,0.2552110663287521,0.2647906024259063,0.2742819532234087,0.282657967032967,0.2904456830954969,0.29817999041485,0.3068742384630854,0.313687415345152,0.3206081820170641,0.3272588187392812,0.3323853670759208,0.3387635011208477,0.3453201011870013,0.3505542856387828,0.3513356640524817,0.3519502934069727,0.3523664078960392,0.3528524609182401,0.3543002893708422,0.3527530482648339,0.3527718584014503,0.354280810614562,0.3553384052619828,0.3562929595664112,0.357903851221624,0.3594243803541969,0.3604212743549236,0.3603611697587709,0.3607385388723749,0.3625484445375511,0.3645074301451603,0.3666941676715111,0.3687955879736702,0.3713331455474629,0.3731033528570769,0.3746311101572141,0.3732112192329708,0.3724671307037896,0.3750834048231817,0.3818555206571635,0.3777881765715177,0.3761200250052094,0.3793884484711212,0.3797814207650273,0.0,2.0356477644875066,58.16911813100701,204.55258176894867,330.7984948870878,fqhc6_100Compliance_baseline_low_initial_treat_cost,37 -100000,95806,42070,394.7351940379517,7083,72.68855812788344,5547,57.19892282320523,2239,22.952633446756987,77.39792083527668,79.7022664031433,63.37134666233783,65.07167039860785,77.13194843064862,79.43685051984717,63.27468582030608,64.97832998971151,0.2659724046280587,265.41588329612864,0.0966608420317527,93.34040889633854,86.4138,60.75563989888711,90196.64739160388,63415.27659946883,259.05385,161.3723111660143,269676.9930902031,167721.5486517513,279.9035,134.26506598285812,286772.16458259395,136110.57827683815,3671.85937,1643.1420298057872,3788714.725591299,1671696.5400054615,1348.80638,585.2354642001696,1388081.2057699936,591411.3625501988,2208.65208,905.1789514505284,2266358.7249232824,911457.4698176316,0.38238,100000,0,392790,4099.847608709267,0,0.0,0,0.0,21944,228.2946788301359,0,0.0,26076,266.924827255078,2035139,0,72947,0,0,0,0,0,45,0.4592614241279252,0,0.0,0,0.0,0,0.0,0.07083,0.1852345833987133,0.3161089933643936,0.02239,0.3142435622317596,0.6857564377682404,25.458564667776237,4.518910628743624,0.3295475031548585,0.2046151072651884,0.2312961961420587,0.2345411934378943,11.235128198855342,5.643334033869543,23.675515054790782,12968.392719657755,62.21462469776532,13.231896270275874,20.477818171662378,14.230304602966294,14.274605652860764,0.5520100955471426,0.7814977973568282,0.6925601750547046,0.5728760717069369,0.1337432744043044,0.7211678832116788,0.9090909090909092,0.8713968957871396,0.717687074829932,0.1752988047808765,0.4965286090495571,0.7187910643889619,0.6339869281045751,0.5298281092012134,0.1238095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023082530169271,0.0041139336704191,0.0063289213448957,0.0086207771899718,0.0110096779440468,0.0130467525594838,0.0153654908194249,0.0174955368528436,0.0197498825019923,0.0217411321758525,0.0239127093898878,0.0263047202815138,0.0282435375827066,0.0304305767093401,0.0326746858797942,0.0349406298399587,0.0370063832648796,0.0393557147151193,0.041610849766867,0.0435357298973793,0.057655796874674,0.0710819178311438,0.0846842690266971,0.0972853057448061,0.1094268818451094,0.1244965059362082,0.1375368496956586,0.1497253916893733,0.1623117188334579,0.1734844909691535,0.1870638407857327,0.200741966535795,0.2131101206652897,0.2244744006034963,0.2351447044334975,0.2470084240123094,0.2576595460018731,0.2667633404152474,0.276352630445379,0.2851014174417407,0.2943801003305823,0.3013282555110337,0.3092284954182678,0.3163840455704079,0.3232837521669031,0.3289907489420333,0.3352526791736404,0.3403474462194905,0.3461846870150026,0.3512146948449536,0.3519955951869359,0.3524727462448856,0.3539231818629312,0.3552058390791334,0.3552125844030571,0.3553331295843521,0.3546088083310946,0.3557056884705574,0.356423130785258,0.3570726652253926,0.359074299634592,0.3599193325161137,0.3613459481004426,0.3626469796248092,0.3641130981150314,0.3643956849602011,0.3648695252327854,0.3676423899930154,0.3706610109579357,0.3715244487056567,0.3734518163819697,0.3741529525653436,0.3756546174479499,0.3767567567567567,0.3753105293330785,0.3782451923076923,0.3784581908610506,0.3779737489745693,0.3790434061376831,0.3839320200849749,0.0,2.702000532049918,60.02416874087681,202.13918249694,323.87318492349686,fqhc6_100Compliance_baseline_low_initial_treat_cost,38 -100000,95548,41694,391.980993846025,7000,71.9847615857998,5435,56.26491396994181,2270,23.328588772135472,77.19945181010942,79.66927660394063,63.224607941291474,65.053140094694,76.91718918973017,79.38748458558521,63.11994754963568,64.95173429558463,0.2822626203792566,281.7920183554179,0.1046603916557913,101.4057991093722,84.77744,59.6222871726064,88727.59241428392,62400.35078976682,251.15079,156.25867180436111,262228.4715535647,162914.9137651872,273.09368,131.0834005619032,281706.5454012643,134077.40006872642,3588.50691,1626.117698165917,3714992.788964709,1661167.2647945737,1337.00468,585.1236582321723,1381781.2199104114,594866.7666849883,2231.9907,934.2510562775363,2295472.0768618914,942971.9793776711,0.3793,100000,0,385352,4033.072382467451,0,0.0,0,0.0,21295,222.2338510486876,0,0.0,25512,262.9254406162348,2036256,0,73119,0,0,0,0,0,34,0.3558420898396617,0,0.0,1,0.0104659438188135,0,0.0,0.07,0.1845504877405747,0.3242857142857143,0.0227,0.3255307566684812,0.6744692433315188,25.17271486356325,4.545650393327756,0.3321067157313707,0.2075436982520699,0.2294388224471021,0.2309107635694572,11.185652552731618,5.640700483836227,24.19676876064721,12945.2785857599,61.56684546331668,13.298243394079892,20.47805197709293,13.869951369383982,13.920598722759868,0.5449862005519779,0.7668439716312057,0.6803324099722992,0.5717722534081796,0.1243027888446215,0.7032727272727273,0.937007874015748,0.8465011286681715,0.6942446043165468,0.1538461538461538,0.4913793103448275,0.6800535475234271,0.6262848751835536,0.5366357069143447,0.1160896130346232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024530922139664,0.0048091556583673,0.0072406369323259,0.0096185130958191,0.0118703424685425,0.0143020245061061,0.0165025258968209,0.0186697186768718,0.0207022175830698,0.0229047531205804,0.0251190769483452,0.0273927528482704,0.0296083459490633,0.031554950382703,0.0334821428571428,0.0356913649255739,0.0376462291545673,0.0395971689583138,0.0415512176829649,0.0435962751075291,0.0582660362358257,0.0721364079655205,0.0858659658344283,0.0981822013804731,0.110373549246348,0.1256017134253663,0.1384919832749944,0.1513954853514061,0.1628808982985471,0.1735286525554981,0.1878355170067292,0.2004493503956237,0.2124495362793235,0.2233523144948048,0.2346175074511535,0.2455863563135381,0.2559800311174291,0.2659833845042442,0.2754994024244493,0.2846425165730304,0.2928679993966747,0.3005654887606175,0.307475936717424,0.3141531768636358,0.3213658964609535,0.3279246076406495,0.3337732860698393,0.3394211857263276,0.3440628168794363,0.3496873178228841,0.3500878972278566,0.3503922868666777,0.3511961993099938,0.3517352446172596,0.351726300698883,0.3517236072637734,0.3517181037225581,0.35256928740034,0.353847476571232,0.3547076170610659,0.356409094342473,0.356685994381015,0.3594735282915062,0.3596895026626951,0.3613000388651379,0.3620930539080005,0.3640452029520295,0.3656600298497983,0.3669128613024643,0.3689176762224621,0.3710657347768489,0.3727911432829465,0.3751182890669358,0.3764075067024128,0.3750943396226415,0.3748208313425705,0.3739663093415007,0.3777420004024954,0.3814348302300109,0.3883346124328473,0.0,2.447577702973761,60.51819965586648,206.1816978855048,307.9241759123415,fqhc6_100Compliance_baseline_low_initial_treat_cost,39 -100000,95670,42292,397.0837253057385,7170,73.62809658200062,5624,58.08508414340964,2290,23.47653391867879,77.33990302576841,79.7306578424551,63.32261558699434,65.08909206502943,77.06231436265102,79.45545363173808,63.2221829747945,64.99219524920086,0.2775886631173847,275.2042107170212,0.1004326121998389,96.8968158285719,85.15298,59.946368141627566,89006.98233511028,62659.52560011243,260.28532,162.19691056765322,271357.7715062193,168831.00972261088,287.29669,138.0577267148624,295991.27208111214,140862.1216393726,3725.45562,1670.5044080955215,3851462.7992056026,1703557.758963604,1363.44896,588.322522909757,1407291.0212187727,597123.5933239133,2249.56952,920.5122517848848,2309305.194940943,927802.412228698,0.38309,100000,0,387059,4045.771924323194,0,0.0,0,0.0,22006,229.27772551479043,0,0.0,26753,275.321417372217,2035664,0,73097,0,0,0,0,0,43,0.4494616912302707,0,0.0,0,0.0,0,0.0,0.0717,0.1871622856247879,0.3193863319386332,0.0229,0.3220002645852626,0.6779997354147373,25.24191067460663,4.596065232622673,0.340149359886202,0.1980796586059744,0.2293741109530583,0.2323968705547653,11.364527697617444,5.835890099766893,24.279992154845363,13008.015961069788,63.41246220117957,12.999592306208667,21.67589956456076,14.415875662630786,14.321094667779343,0.5517425320056899,0.7504488330341114,0.7114479874542603,0.5868217054263566,0.1140015302218821,0.715018315018315,0.9,0.8592436974789915,0.752542372881356,0.1229508196721311,0.4994130077482977,0.6819371727748691,0.662491301322199,0.5376884422110553,0.1119473189087488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397143725311,0.0046931224975926,0.0070014510253574,0.0091719822857839,0.0114192164160133,0.0136810602821718,0.0159416153626615,0.0182187474483546,0.0204755479228001,0.0223955454564064,0.0243067302270746,0.0268533535896856,0.0290288746298124,0.0313752150221975,0.0335431933120033,0.0354949440641866,0.0375243462765737,0.0397330371692805,0.0419427656011068,0.0441041571112871,0.0586342696570527,0.0723947318829958,0.086415996978535,0.0991584262571007,0.1107958141693742,0.1270086428503422,0.1406172092973913,0.1524969134488484,0.1645610175464827,0.1761420285815367,0.1894618954804389,0.2015882117471411,0.2142616373264323,0.2263921988761834,0.2374931220424782,0.2487956677261099,0.259510051092122,0.2693834853716972,0.2778704050268241,0.2865077183821172,0.2944530545210613,0.3029544843390115,0.3100147885241053,0.3164155147217364,0.3224075557821643,0.3286759813705922,0.3345597897503285,0.3397887771981168,0.3451967442583856,0.350554139201881,0.3509424803818461,0.3520950163274867,0.3518194393473167,0.352775846082522,0.3540375446960667,0.3534284399447768,0.3521948743973611,0.3527001678349294,0.353625170998632,0.3551477027002877,0.3563613159919674,0.3577329186394342,0.359459005376344,0.3599020246736028,0.3597522620602894,0.3605319065229365,0.3619621342512908,0.364206723913939,0.3674003821926534,0.3676212507977026,0.370468692786525,0.3732484757728099,0.3743190168503738,0.3772817916858413,0.3787507076806944,0.381378159275155,0.3892773892773892,0.3878562577447336,0.3852227862380146,0.3841961852861035,0.0,2.68919265986268,59.68329587932918,216.5447765994684,322.2775173374161,fqhc6_100Compliance_baseline_low_initial_treat_cost,40 -100000,95787,41567,390.40788415964585,7100,72.88045350621691,5528,57.14762963658952,2230,22.89454727677033,77.331780499572,79.67256877352756,63.32970022966426,65.06265136365676,77.06009430028394,79.40056987363033,63.22922418811687,64.96433503714974,0.2716861992880695,271.9988998972269,0.1004760415473882,98.3163265070175,85.9738,60.42999386161275,89755.18598557216,63087.886520731154,254.11335,158.0398995445158,264690.5947571174,164391.54535011615,274.05057,131.32365391406634,282502.114065583,134256.42679112745,3662.74508,1650.1165295111186,3787480.1904225,1686330.190434108,1382.22391,602.8935153725715,1426747.314353722,613222.0655145035,2207.2127,924.1941967402686,2267587.6475930973,934379.5980950588,0.37856,100000,0,390790,4079.7811811623706,0,0.0,0,0.0,21519,224.03875264910687,0,0.0,25563,263.37603223819514,2037926,0,73157,0,0,0,0,0,48,0.4906720118596469,0,0.0,1,0.0104398300395669,0,0.0,0.071,0.187552831783601,0.3140845070422535,0.0223,0.3190208667736757,0.6809791332263242,25.63002623340945,4.604008403577764,0.3299565846599132,0.2027858176555716,0.2306439942112879,0.2366136034732272,11.228028306829971,5.641639782695747,23.785702071532118,12944.169181859075,62.18944837477069,13.002797760344574,20.4918148192557,14.138033175333783,14.556802619836642,0.5495658465991317,0.776092774308653,0.6907894736842105,0.5835294117647059,0.1253822629969418,0.7107377647918188,0.9313432835820896,0.8719646799116998,0.7758007117437722,0.16,0.4965135849963933,0.7099236641221374,0.6309263311451495,0.5291750503018109,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021980248164092,0.0043895219171971,0.0067581965965478,0.0090210898451785,0.0110958555809814,0.0136457601401236,0.0159254501335617,0.0181305892441504,0.0201692870724376,0.0224394738189077,0.0246955345060893,0.0265827463704129,0.0285746601682193,0.030572723526988,0.0325097529258777,0.0345487062326196,0.0363611884961526,0.0385297503604061,0.0407440120538265,0.0426172155641861,0.0575173219801318,0.0714734001380724,0.0849625242413124,0.0976650343624556,0.1099273964952212,0.1248480877550804,0.1378012846331588,0.1505316886431305,0.1625082705483106,0.174155738407474,0.1876984682289368,0.2008761492698756,0.2130234783648879,0.2244435938098102,0.2358327555276741,0.2470138504155124,0.2573204481542651,0.2674338811829952,0.2765798160142469,0.2848209991067134,0.2925447017186741,0.300661771583575,0.3082103419299097,0.3151938040259444,0.3217345859818423,0.3283276366283733,0.3342065352268027,0.339489560348456,0.344849515256129,0.3500218193358987,0.351173139158576,0.3520494568285395,0.3522337980911564,0.3522044450879606,0.3535332479676007,0.3536242569466845,0.3534870417745857,0.3543561354949255,0.3550800487327762,0.3559501200415666,0.3580423529411765,0.3591635916359164,0.3600025285515614,0.3603111440839909,0.3598256447511805,0.3615317987348749,0.3622444590991198,0.3636880507912442,0.3672075750642402,0.3700630335913189,0.3709085908132392,0.3693032721041075,0.3716673045031254,0.3735393603936039,0.3739089184060721,0.3786720802483879,0.3799410944039684,0.378757108042242,0.3725653867557039,0.3709869203329369,0.0,2.094687238745708,60.42188735280692,206.15633801688384,318.9823916143755,fqhc6_100Compliance_baseline_low_initial_treat_cost,41 -100000,95697,41825,392.5932892358172,7226,74.41194603801581,5579,57.81790442751601,2233,23.020575357639213,77.34192318165195,79.71613906633306,63.32298576779221,65.07455254017518,77.06918778422305,79.44175185757848,63.22387135950655,64.9767539115731,0.272735397428903,274.38720875457534,0.0991144082856578,97.798628602078,85.93882,60.44221884299043,89803.04502753483,63159.99335714853,255.96086,158.7216945195999,266986.68714797747,165386.4323732296,275.38563,131.85698280388334,284771.0377545796,135475.30321735225,3695.14134,1643.349918825366,3831790.996582965,1688523.3004513143,1351.39393,580.3351534012825,1399826.755279685,594360.6558009926,2199.38294,908.3545584495372,2269734.9760180567,925148.0553115476,0.38072,100000,0,390631,4081.9565921606736,0,0.0,0,0.0,21632,225.5452104036699,0,0.0,25636,264.8985861625756,2035658,0,73019,0,0,0,0,0,52,0.5433817152052833,0,0.0,2,0.0208992967386647,0,0.0,0.07226,0.1897982769489388,0.3090229725989482,0.02233,0.3182057353328071,0.6817942646671928,25.547929522445774,4.588811668182116,0.3215630041226026,0.2046961821114895,0.2401864133357232,0.2335544004301846,11.208659609203393,5.591439533589616,23.681873954860777,13013.733054815357,62.55275887564496,13.30664569340507,20.111231459784463,14.982713713064436,14.152168009391008,0.5583437892095358,0.7889667250437828,0.7001114827201784,0.5940298507462687,0.1243284727551803,0.7207207207207207,0.9183098591549296,0.8767123287671232,0.7104377104377104,0.1611570247933884,0.5074170002354603,0.7306226175349428,0.6430678466076696,0.5608820709491851,0.1159283694627709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.0048955514336972,0.0072126358075413,0.0095069778779937,0.0117356330021457,0.0140396245240373,0.0163020206757335,0.0187270889281447,0.0207370444598961,0.0229867403880612,0.0250489597965733,0.0270789262902795,0.0294057145208071,0.0313739632167327,0.0334437803858421,0.0352921711975348,0.0375066032752245,0.0395981026125406,0.0417528935847172,0.0435462190127856,0.058472690809196,0.0728331204322241,0.0864408736447695,0.0992192925233054,0.1109856717803709,0.1264457824950528,0.1400133770742427,0.1519625073227885,0.1644772705409536,0.1757167237326521,0.1898051815035632,0.2019472361809045,0.2141628565207925,0.225542020991343,0.235754546655511,0.2470025043771193,0.2574666443365154,0.2675177879852292,0.276979804855911,0.2859990149024639,0.2938963984816221,0.3011374274480434,0.3086603918782928,0.3155268775936098,0.3221261957724051,0.3286145878290893,0.3343899169349887,0.339793215850056,0.3446491114282008,0.3496893588896232,0.3504071518277943,0.3505205888038885,0.3516783266200268,0.3526516905974988,0.3530767286621173,0.3539147625396533,0.3534220532319391,0.3540720258081506,0.3567167249537132,0.3585628142501834,0.3600781675717319,0.3612771280503544,0.3620149332211589,0.3632502640390103,0.3630751422783833,0.3652269285005484,0.367934487973293,0.3719677399029676,0.3758080382237212,0.3787848645207496,0.381887789982225,0.3824953445065177,0.3827129177500158,0.3840877914951989,0.3821176470588235,0.3870815652993871,0.3866221750341271,0.3835781847454216,0.381553664562174,0.3776856388993592,0.0,1.812200507399624,59.08601113484915,210.47638018759835,325.40256195452923,fqhc6_100Compliance_baseline_low_initial_treat_cost,42 -100000,95731,41763,392.2971660172776,6962,71.3353041334573,5428,56.04245228818252,2227,22.793034649173205,77.32392886815877,79.68817267233646,63.31606620966248,65.06527914763421,77.05712121684759,79.42399352154875,63.21740892386892,64.97032957746238,0.2668076513111828,264.1791507877116,0.0986572857935641,94.9495701718348,85.5943,60.18458499093236,89411.03717708997,62868.27918397691,255.29988,159.5945547735494,265994.79792334774,166025.35603977082,276.42293,132.8522380005458,284962.13347818365,135785.08592034513,3612.87764,1630.2203683284774,3733026.386436996,1662711.6712906046,1307.50375,569.166631343178,1351520.865759263,580439.0411092162,2195.62424,912.1644081031072,2250402.0641171616,918477.2462542875,0.37953,100000,0,389065,4064.13805350409,0,0.0,0,0.0,21583,224.7338897535804,0,0.0,25651,264.1673021278374,2035283,0,73130,0,0,0,0,0,51,0.5327427896919493,0,0.0,0,0.0,0,0.0,0.06962,0.1834374094274497,0.3198793450158,0.02227,0.3176550783912747,0.6823449216087253,25.17488067179952,4.641124656209835,0.3279292557111274,0.2043109801031687,0.2301031687546057,0.237656595431098,11.44865711084865,5.789949682431134,23.60987274734814,12885.00744578074,61.23599773356909,13.02103587717247,20.17960953161709,13.89006036156493,14.14529196321462,0.5473470891672808,0.7781785392245266,0.6966292134831461,0.5812650120096077,0.1100775193798449,0.6993464052287581,0.9144542772861356,0.867237687366167,0.7379310344827587,0.1209964412811387,0.4956800789928413,0.7181818181818181,0.635948210205636,0.5338894681960376,0.1070366699702675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0045118575672469,0.0067793857957659,0.0091040256863581,0.0115758636123204,0.0138798370672097,0.0159553860897579,0.0179652331907683,0.0204582400392601,0.0225350670625575,0.0244009965449009,0.0265200517464424,0.0287655882141278,0.030952258330329,0.0330103499159004,0.0352580004961548,0.0370815379516075,0.0388802972588663,0.0407636953537706,0.042945999729113,0.0575172269784923,0.0723238198861734,0.0856516678376309,0.097867463038129,0.1091942508251521,0.1248016586624918,0.1383627778661998,0.1505142784130837,0.1623154656354818,0.17376947240895,0.1862881259218586,0.1991953015996625,0.2109847331564525,0.2226900405726096,0.233415098282936,0.2446226435992291,0.2562528599649549,0.265481148002251,0.2744966671587386,0.2835582976869,0.2913039950858242,0.2989722134327134,0.3063230794772668,0.3128429242054964,0.3196372047723399,0.3253657633187233,0.3311969295990166,0.3365941382037089,0.3422859739079639,0.3479716319563894,0.3490544389401077,0.3491671722464288,0.3494952347334981,0.3505628069362152,0.3508311982363105,0.3513542529370265,0.3516995483717614,0.3535896172170198,0.3540380108455788,0.355772840212359,0.3567181257151432,0.3581498495168699,0.3593251636729898,0.3604025642175102,0.3614126501664496,0.3622456984467339,0.3608818573835565,0.3623935951393943,0.363919900762006,0.3669823762138832,0.3694515774027879,0.3729700854700855,0.3740032907226933,0.3751242259766073,0.3757598784194529,0.375344105326152,0.3778049152801099,0.3741537236160892,0.370112479914301,0.3708079268292683,0.0,2.4447993926011398,60.60019165200787,201.86625461883924,308.9238530267146,fqhc6_100Compliance_baseline_low_initial_treat_cost,43 -100000,95791,41832,392.1140816986982,7156,73.4933344468687,5647,58.33533421720204,2348,24.15675794176906,77.4066300966336,79.74495676597368,63.35719594835807,65.0874267715601,77.11480417849744,79.45209514697841,63.24922389318742,64.98164554634533,0.2918259181361691,292.86161899527485,0.1079720551706486,105.78122521476983,85.7219,60.30594904220229,89488.46968921924,62955.75684793174,257.34391,160.14985111885184,268064.6407282521,166599.9322680125,282.30668,135.35973590401545,290279.2120345336,137952.98521793768,3737.58568,1693.0178147602026,3864881.8991345754,1730476.9286887115,1428.05664,627.3179068334737,1476390.224551367,640470.2335493709,2310.55976,970.874610514052,2379119.040410895,985581.0107242372,0.38071,100000,0,389645,4067.657713146329,0,0.0,0,0.0,21778,226.72276101095093,0,0.0,26350,270.69348894990134,2037365,0,73200,0,0,0,0,0,39,0.4071363698050965,0,0.0,1,0.0104393940975665,0,0.0,0.07156,0.1879645924719603,0.3281162660704304,0.02348,0.3209203351509509,0.679079664849049,25.309236873916216,4.594589099188104,0.3260138126438817,0.2078979989374889,0.2280857092261377,0.2380024791924916,11.276537374001942,5.691276472153276,25.141438051146043,12943.92013527537,63.83835013114749,13.802136256023946,20.873223157496717,14.30399724128904,14.858993476337805,0.5578183106074022,0.7998296422487223,0.6963606735469854,0.5908385093167702,0.125,0.7132867132867133,0.9378378378378378,0.8479657387580299,0.7601351351351351,0.1750841750841751,0.5050984111927911,0.736318407960199,0.6448326055312955,0.5403225806451613,0.110792741165234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0045020380848086,0.0068093483930546,0.009398209768042,0.0113810884755037,0.0134925968921203,0.0158234946269448,0.017771653141428,0.0200846314240157,0.0222379139547259,0.0243612474762485,0.026607425041558,0.028686249922914,0.0308327413858776,0.0328323437242289,0.0350677915345773,0.0369952721366424,0.0395592092304821,0.0417432860630616,0.043725859681634,0.0586921816796919,0.0730898747150237,0.0866192901913925,0.0990079239968892,0.1109343391773432,0.1259153590109367,0.13939413211227,0.1521195946879884,0.1639281294012206,0.1750731033300843,0.1884139058952646,0.2008477233653752,0.2124327555289898,0.2235946834420016,0.2343078765505345,0.2461986233151103,0.2563579172801499,0.2661854325485169,0.27570639412879,0.2846118616899473,0.2929349020696676,0.3009178602747734,0.3088759217394392,0.3154620640057533,0.3223845761104763,0.3280571456770628,0.3334920794064568,0.3395416385339567,0.3452533821030649,0.3504211347498975,0.3506479481641468,0.3515227551597204,0.3509956220872758,0.3511031275803624,0.3514620057170081,0.3513057354159634,0.3518377693282636,0.3534567658065787,0.3545879223923347,0.355227070347284,0.3559649188561148,0.3569537732121691,0.3571952011055045,0.3580517476574904,0.3595616333004878,0.3594539675923514,0.3608872689996867,0.3627715685043325,0.3653684210526315,0.3656621728786677,0.3676049292892547,0.3666454824700773,0.3692597239648683,0.370096001209464,0.3738004285847386,0.3722619187068057,0.3700859950859951,0.3725845410628019,0.3760376314333148,0.3805825242718446,0.0,2.414580154400481,62.998009974671646,214.4637791886866,317.8212913934451,fqhc6_100Compliance_baseline_low_initial_treat_cost,44 -100000,95691,42044,396.3382136251058,7160,73.70599115904317,5565,57.60207334023053,2308,23.795341254663448,77.29491858535671,79.69892434562087,63.29396199958445,65.07494076821177,77.01638940521529,79.41712595168484,63.19350906897771,64.97516309145568,0.2785291801414189,281.7983939360289,0.1004529306067425,99.77767675609071,85.6966,60.30242810729906,89555.5485886865,63017.86804119411,256.51658,159.91335552321283,267513.97728104,166561.34696163397,278.01365,133.43349603805274,286994.1896312088,136695.42744821872,3688.49843,1656.4880310303515,3822179.734771295,1698739.3343669684,1364.57968,588.8303554387003,1414128.4551316216,603529.2184808675,2269.2472,933.2342768896464,2342221.839044424,951380.5689616876,0.38086,100000,0,389530,4070.7067540312046,0,0.0,0,0.0,21709,226.26997314271975,0,0.0,25914,267.2560637886531,2035119,0,73036,0,0,0,0,0,48,0.5016145719033138,0,0.0,1,0.010450303581319,0,0.0,0.0716,0.1879955889303156,0.3223463687150838,0.02308,0.319377990430622,0.680622009569378,25.276527396850785,4.606670832498623,0.3299191374663073,0.2019766397124887,0.2309074573225516,0.2371967654986523,11.05051821085349,5.522900110831892,24.479376028741505,12904.839873269042,62.66845449170416,12.985419663069582,20.760534889930053,14.391782755444982,14.530717183259544,0.5371069182389937,0.7313167259786477,0.69880174291939,0.5665369649805447,0.1181818181818181,0.7021739130434783,0.9156976744186046,0.8682505399568035,0.7022653721682848,0.1325757575757575,0.4826762246117085,0.65,0.6416605972323379,0.5235655737704918,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0044648746283499,0.0065708627431066,0.0086523308423567,0.0108105907142929,0.0131379124071224,0.0154496101881709,0.0175823951288285,0.0196014240700577,0.0218912301908439,0.0239213835832837,0.0260419341914672,0.0279892982095081,0.0301450052045222,0.0321431889263927,0.0343333436747019,0.0364651876107478,0.0384136212624584,0.0402163736606678,0.042108335157333,0.0573654908760458,0.0710427135678392,0.0840215326820361,0.0970908517018254,0.1097302372688237,0.1251322527402767,0.1384675801606928,0.1512525418134974,0.1627723110783465,0.1741140876953942,0.1873498712797699,0.2006901699462359,0.2133353624070611,0.2249442720398619,0.2355004342997878,0.2463633344403852,0.2565478315188292,0.2662016201620162,0.2762508088961548,0.2846809047242379,0.293067908097091,0.30023997658765,0.3080776381701266,0.3151434433605701,0.3211827930841621,0.3280688539570033,0.3336635028900284,0.3389564885009875,0.344095773625975,0.3499042714728989,0.3504378283712784,0.3509295828918216,0.3507980373357396,0.350994431185362,0.3512290935063389,0.3512123212996944,0.3506031180967214,0.3514043647392365,0.3525044155220604,0.3533823793289072,0.3546695835847918,0.3555971412076208,0.3562230853668834,0.3569963716674554,0.3578458771780602,0.3598704308437796,0.3609799631506218,0.3637403852266226,0.365213082259663,0.366609225343646,0.3694819871765303,0.3719397867895216,0.3724868396016997,0.3723820483314154,0.3754734848484848,0.3763183125599233,0.3766313526792568,0.3819971293828173,0.3872832369942196,0.3890160183066362,0.0,2.103284301327647,61.03489015842346,206.8477019241461,322.08038944972463,fqhc6_100Compliance_baseline_low_initial_treat_cost,45 -100000,95714,41789,392.8369935432643,7131,73.34350251791797,5548,57.32703679712477,2281,23.403054934492346,77.3593554540744,79.73093419783268,63.33143217950936,65.08405711629217,77.08057550079245,79.45320924675215,63.22923863910287,64.98518422961648,0.2787799532819548,277.7249510805291,0.1021935404064962,98.87288667569294,84.98908,59.73603451525732,88794.5964017803,62410.74567488279,255.54456,159.31664786580308,266323.2860396598,165786.91268941096,281.36773,134.72324037633103,289869.31901289255,137597.8754186701,3679.75746,1651.2622096501348,3807431.107257037,1688151.6740969825,1382.88002,592.742932674527,1432017.552291201,606636.0034855655,2246.08506,931.2894912856387,2308454.9595670435,941320.5910330748,0.37941,100000,0,386314,4036.118018262741,0,0.0,0,0.0,21624,225.2230603673444,0,0.0,26095,268.68587667425874,2041568,0,73197,0,0,0,0,0,63,0.6373153352696576,0,0.0,0,0.0,0,0.0,0.07131,0.1879497113940064,0.3198709858364886,0.02281,0.318175738932727,0.681824261067273,25.15614872007321,4.617318689690251,0.3233597692862293,0.2042177361211247,0.2334174477289113,0.2390050468637346,11.286066513652056,5.693580213778953,24.256399496494403,12928.415525049084,62.59925056024544,13.268436084088403,20.37300036682467,14.44102836964946,14.516785739682891,0.5502883922134102,0.7837599293909974,0.6978818283166109,0.5837837837837838,0.1184012066365007,0.712789827973074,0.9436201780415432,0.8568329718004338,0.7052631578947368,0.1535433070866141,0.4986938969365946,0.7160804020100503,0.6429107276819205,0.5495049504950495,0.1100746268656716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0045008971382809,0.0066973119425248,0.0087444902602019,0.0110531507072186,0.0132550113512578,0.0153626586472297,0.0176796031276157,0.0197297131524605,0.0218575318904973,0.0239042599011424,0.0260071077877524,0.0283347908843047,0.030538440932226,0.0328981992673236,0.0351579056184421,0.0370857361756758,0.0391453168758427,0.0410948935462408,0.042999552087999,0.0578824807075801,0.0721013961861302,0.0855449491240952,0.0980862250262881,0.1101198949732688,0.1260208183472263,0.1388048772722931,0.1514160988074957,0.1629795874746179,0.1746600701859821,0.1883533227728747,0.2008726060173005,0.212738409983571,0.224019436175801,0.2347051177546209,0.2462266975702261,0.2561508135937727,0.2663074049906622,0.2758491551006048,0.2843017060623073,0.292562117372033,0.3005344966725535,0.3081226198642288,0.3152121850751987,0.3219843177238851,0.3289248463802381,0.3340424200713258,0.3401073327059541,0.3458396447482554,0.350246643277322,0.3508205542103847,0.350904463855836,0.3514760277344134,0.3521049596309112,0.3528634818871228,0.3525794955721081,0.353005326294827,0.353311475409836,0.353702470590244,0.3547684896065661,0.3552577242181927,0.3556286404881721,0.3564838220424671,0.3567550519272793,0.3575213530450773,0.358610747051114,0.3592029816513761,0.3611454666539815,0.3647108783353386,0.3669274367366488,0.3675707926017715,0.3694011879916519,0.3714996491675703,0.3696483180428134,0.3713640214628636,0.3718968998693431,0.3753260702777352,0.3750252576278036,0.3812672176308539,0.3805140007671653,0.0,2.444113862833246,58.73910134514557,214.702965265182,318.6324600986166,fqhc6_100Compliance_baseline_low_initial_treat_cost,46 -100000,95875,42188,396.2346805736637,7210,73.95045632333768,5594,57.63754889178618,2267,23.259452411994783,77.4394230829848,79.7174901880083,63.39129033748679,65.07647267719659,77.16419876637096,79.44207045152628,63.29206167268799,64.97920218838428,0.2752243166138441,275.41973648202145,0.0992286647987938,97.27048881231326,86.20788,60.63309259993122,89916.95436766623,63241.817574895664,257.45952,160.3214663076606,267805.9661016949,166488.56981242303,281.24795,134.86417773578177,288017.87744458934,136622.677101172,3721.47506,1668.9469296402444,3839581.308996089,1698803.270704229,1360.47805,592.009576540443,1399502.6544980444,598009.1490499416,2235.27932,914.1451599029,2296359.7809647983,925828.3828468458,0.38382,100000,0,391854,4087.1342894393742,0,0.0,0,0.0,21807,226.6910039113429,0,0.0,26142,267.2542372881356,2037907,0,73149,0,0,0,0,0,60,0.6258148631029987,0,0.0,1,0.0104302477183833,0,0.0,0.0721,0.1878484706372779,0.3144244105409154,0.02267,0.3082218985833443,0.6917781014166556,25.371969777845543,4.567891375788405,0.3291026099392206,0.2066499821237039,0.2275652484805148,0.2366821594565606,11.335175660177908,5.754252349258762,23.822159960546426,13042.200128551432,62.82902551262899,13.605421277948846,20.8253501389305,14.070700083701343,14.327554012048312,0.559706828745084,0.7837370242214533,0.7213470939706681,0.5765907305577376,0.1231117824773413,0.7338129496402878,0.9124668435013262,0.8970588235294118,0.7314487632508834,0.1653543307086614,0.5021408182683159,0.7214377406931964,0.6600732600732601,0.5323232323232323,0.1130841121495327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022777890261186,0.0045198427175807,0.0070096065084855,0.0093005310237691,0.0117291918647788,0.0139293054679391,0.0159918512859689,0.018329253365973,0.020156511789465,0.022535240082653,0.0245291911719502,0.0266562695587043,0.028649231875867,0.0308610839466776,0.0328869369787317,0.035014352683642,0.0371811052947383,0.038948120978521,0.0412345448316671,0.0429830127638326,0.0576929090359499,0.0720293383205692,0.0853681521192829,0.0984945514099145,0.1111321628563007,0.1269899919766901,0.1402124527382679,0.1528793030174245,0.164069494777233,0.1753086948147831,0.1892754651275271,0.2027634336581466,0.2150126535533132,0.2255872391565607,0.2360947721400692,0.2477257132738661,0.2581058638638415,0.2679496253356251,0.2772767442387437,0.2865832742573578,0.2953224818918013,0.3035363916658881,0.3104398202884842,0.316809983472658,0.3236387040365279,0.329280610987928,0.3351181614602229,0.3417256586556181,0.3471422843617833,0.3526420488229017,0.3537617196432654,0.3549420042878346,0.3551415021320311,0.3561479554977604,0.3566135523248043,0.3568136932192232,0.3567176466862987,0.3578717679485497,0.3582823762511529,0.358950562198822,0.3601236765670383,0.360727071342392,0.3617306724802951,0.361801970905678,0.3625906536669708,0.3640089807852966,0.364727634760347,0.3689725490196078,0.3716736694677871,0.3731266354769645,0.3738964230454173,0.3762771392081737,0.3790862047204342,0.3821231617647059,0.3830556877677296,0.3859923113887554,0.3863920099875156,0.3912414790332575,0.3911830357142857,0.3935681470137825,0.0,2.6851743093471727,60.78530562083947,207.3378135451024,322.01399198392994,fqhc6_100Compliance_baseline_low_initial_treat_cost,47 -100000,95739,41844,394.40562362255713,7045,72.47830037915583,5441,56.26756076416089,2194,22.561338639425937,77.34647984393533,79.69916066063529,63.33814763576003,65.07540838802694,77.0821733220428,79.43589292178486,63.24120794746479,64.98173551842312,0.2643065218925216,263.26773885043053,0.0969396882952438,93.6728696038216,84.78074,59.6339719278387,88554.02709449649,62288.06643879579,252.86699,157.43230703365072,263541.0229895863,163858.88408449088,273.38106,130.95460646307544,282322.3451258108,134243.0593913404,3568.36716,1597.0313275550957,3692373.254368648,1633300.324376792,1329.77035,569.845423149763,1376268.5008199376,582522.0371528459,2165.51722,892.4710935408998,2228750.248070274,902745.7061969334,0.37969,100000,0,385367,4025.18304974984,0,0.0,0,0.0,21468,223.6497143274945,0,0.0,25423,262.3068968758813,2043747,0,73341,0,0,0,0,0,44,0.4595828241364543,0,0.0,0,0.0,0,0.0,0.07045,0.1855461034001422,0.3114265436479773,0.02194,0.3159956768440962,0.6840043231559038,25.421930189445817,4.50210696161937,0.31703730931814,0.2196287447160448,0.2271641242418673,0.2361698217239478,11.06876870126182,5.525284595679086,23.17138048920626,12919.655746248543,61.20408890863264,13.998435863945874,19.32406189695994,13.839351085969623,14.042240061757198,0.5421797463701525,0.7606694560669456,0.6805797101449276,0.5687702265372169,0.1276264591439688,0.7106824925816023,0.9276485788113696,0.8361445783132531,0.7208480565371025,0.182509505703422,0.4866845834351331,0.6806930693069307,0.6312977099236641,0.5236096537250787,0.1135029354207436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660320032408,0.0042473821326115,0.0063831298647263,0.0086040511163934,0.0106473854414546,0.0128787261769017,0.0149643221202854,0.0172485940864879,0.0194621336795085,0.0214900740225036,0.0234114740823501,0.025650237103032,0.0277078085642317,0.0297256097560975,0.0318097399917457,0.0337071683291126,0.0359176658176471,0.0378486055776892,0.0397829454140981,0.0418415707515233,0.0567753521053236,0.070482091645559,0.0838998699064165,0.0967192429022082,0.108827901778654,0.1246339116735919,0.1371833495990155,0.1501154734411085,0.1619102527145191,0.1730350807618516,0.1867390110777379,0.1983734737798349,0.2103856018780159,0.2225196970855962,0.2334894253176801,0.2448609097047721,0.2547279214986619,0.2652294681915815,0.2741082773643129,0.2834432838555983,0.2922320550639135,0.3010874649204864,0.3085599981061951,0.3153585172575018,0.3220229851544087,0.3278484598425972,0.3339672927015428,0.3394568995149524,0.3458805528902259,0.351614522777719,0.3528912137839914,0.3536939841027124,0.3543614695719624,0.3546463667018829,0.3557556365801027,0.3555313401682117,0.3555492172149331,0.3559717430589781,0.3570670410189687,0.3575772753291356,0.3584076612524645,0.3596736181252847,0.3604643826108902,0.3616610549943883,0.3630790026310073,0.3641591177628988,0.3654138792385655,0.3683744465528146,0.3706315900835772,0.3727808295517872,0.377623980199835,0.3779620219309976,0.378811793673843,0.3798217304441371,0.3833349186721202,0.3885220314563573,0.3912976392532016,0.3986071282261368,0.4011824324324324,0.3988985051140834,0.0,2.156543670333362,59.564390947500776,204.71048544779092,310.4611100548829,fqhc6_100Compliance_baseline_low_initial_treat_cost,48 -100000,95740,41583,390.9651138500105,7154,73.65782327135993,5591,57.80238144975977,2270,23.34447461875914,77.41222784566315,79.76689879736988,63.350809200748486,65.08930044288952,77.13511930983304,79.48785183319599,63.249390993414565,64.98969430403142,0.2771085358301093,279.04696417388664,0.1014182073339213,99.60613885810687,85.1906,59.85331444959833,88981.19908084394,62516.51812157753,257.1083,160.18295725531462,267956.3296427825,166729.46723590684,278.95155,133.16908059818442,287078.5460622519,136010.348922806,3702.48823,1655.5731870215354,3830575.7259243783,1693327.7856132907,1351.33395,579.0909982608732,1398352.548569041,592253.703188922,2235.27846,923.3793488462674,2300273.407144349,936325.651415867,0.37711,100000,0,387230,4044.59995822018,0,0.0,0,0.0,21775,226.80175475245457,0,0.0,25979,267.0461667014832,2039548,0,73129,0,0,0,0,0,47,0.490912889074577,0,0.0,0,0.0,0,0.0,0.07154,0.1897059213492084,0.3173050041934582,0.0227,0.3201649374833732,0.6798350625166267,25.22474777559076,4.640581693614022,0.3330352351994276,0.2056877123949204,0.2248256125916651,0.2364514398139867,11.153902558225225,5.52494667290371,23.996118573424837,12834.23237508824,62.90849904275776,13.4632515057102,20.96935566321656,13.927918387593794,14.547973486237208,0.5419424074405295,0.7652173913043478,0.69656283566058,0.5616547334924423,0.1111951588502269,0.6916234247590808,0.92,0.8619246861924686,0.7018867924528301,0.1281138790035587,0.4943422913719943,0.7042424242424242,0.6394508670520231,0.5241935483870968,0.1066282420749279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407534940247,0.0047534586732884,0.0068579312583695,0.0092412056219026,0.0113766915076403,0.0137832748002239,0.0158387182257374,0.017938226380825,0.020061113325362,0.0222824974411463,0.0243297532180044,0.0262077319481799,0.028282101367328,0.0303907231570925,0.0324314842331187,0.0345241048540478,0.0365626359061445,0.0385856426963261,0.0406616485070282,0.0426480545861763,0.0573889439891423,0.0705660772208852,0.0840553865519773,0.0965895941596011,0.1086678976523344,0.1243465193557262,0.1372078707732801,0.149349404774581,0.1604684961956057,0.1715962995556891,0.1852838121934127,0.1981245465669023,0.2095311700610665,0.2204547693857219,0.2309073484539716,0.2428715605487595,0.2533221570271025,0.2638544717278666,0.2734819491920006,0.282448436765532,0.2911093353715735,0.2993983941571666,0.3067900723153945,0.3132885230581215,0.3196011513657286,0.3256908425630475,0.3309694445486723,0.3364298331448323,0.3421413243012643,0.347426494792421,0.3486138720249288,0.349247955206675,0.3505376344086021,0.3509705517579533,0.3516838131892532,0.3510385213651752,0.3503769359366621,0.3515488353085411,0.3517834340682727,0.3528124666453197,0.3533045896560091,0.3544263909404234,0.3566240344964729,0.3578395268385225,0.3592184007498738,0.3601520595740249,0.3602869996013894,0.3620261909995917,0.3640763080375929,0.3663554359867068,0.3681628202798473,0.3701050620821394,0.3733266293759034,0.3778588253172251,0.3772914328469884,0.3795102330533538,0.3791533909877105,0.3829787234042553,0.3820316766794102,0.3886562618956985,0.0,2.2770517922283333,59.610728532306034,219.9911893004707,312.5093433938183,fqhc6_100Compliance_baseline_low_initial_treat_cost,49 -100000,95740,42148,396.4069354501776,7123,73.33402966367245,5555,57.55170252767913,2254,23.24002506789221,77.32373385663094,79.69271588560485,63.321321634088775,65.07472653007977,77.05003172667813,79.41681345783299,63.22220546200669,64.97701363382957,0.2737021299528095,275.902427771868,0.0991161720820912,97.71289625020074,86.19666,60.66653148159263,90032.0242322958,63365.91965906897,258.06879,161.09324822132274,269097.07541257574,167806.55757397407,283.2569,135.7771413499469,292719.63651556295,139479.4031800197,3665.31398,1644.292914902885,3797894.0150407352,1686946.5896207287,1355.69375,587.0409045244162,1403562.2623772717,600707.8175521373,2217.46632,913.1547231030034,2287107.708376854,930098.4549740452,0.3818,100000,0,391803,4092.364737831628,0,0.0,0,0.0,21800,227.229997911009,0,0.0,26333,271.8821809066221,2032820,0,72933,0,0,0,0,0,46,0.4804679339878839,0,0.0,0,0.0,0,0.0,0.07123,0.1865636458878994,0.3164397023725958,0.02254,0.3041450086632014,0.6958549913367986,25.402549397419826,4.555431126256565,0.3278127812781278,0.2066606660666066,0.2336633663366336,0.2318631863186318,11.158880252627146,5.608302495321893,23.979256123682017,13031.978489638906,62.56674813982116,13.371296368774749,20.6070715344093,14.452215236271572,14.136165000365528,0.544014401440144,0.7613240418118467,0.6941241076331686,0.5647149460708782,0.1172360248447205,0.717948717948718,0.9424657534246575,0.8735362997658079,0.7124183006535948,0.1685393258426966,0.4873508353221957,0.6768837803320562,0.639167862266858,0.5191532258064516,0.1038197845249755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024924012158054,0.0046041356090338,0.0068615509541209,0.0089831920817836,0.0113136903792935,0.0135175055261844,0.0156141639130257,0.0179036491579259,0.0201957195300277,0.0224793896256848,0.0244690342628011,0.0266509191742836,0.0285893584626147,0.0305437907688502,0.0326589595375722,0.034871338922948,0.0367892283790782,0.0388773604482257,0.0409882088714205,0.0430755123943691,0.0583549114600735,0.0719219659228869,0.0856174801481155,0.0985484379930577,0.1103483909064068,0.1259753441458205,0.1395215615551901,0.1521519391392243,0.1642371234207968,0.1750048249093989,0.1896728071403193,0.2035975425085449,0.2161409917696815,0.2271281305683395,0.2377935434196777,0.2494491989858618,0.2601304275124018,0.2698084592484412,0.2794299384360721,0.2875008581432069,0.295002773668639,0.3031503423777139,0.3109815929161691,0.3180250107805088,0.3246393705376657,0.330938354982623,0.3365261813537675,0.3418582436477106,0.3467683369644154,0.3516782422689941,0.3524963605974012,0.3528998097129147,0.3538405070796335,0.3543701985795043,0.3548117903019104,0.3549367554955176,0.3547921981208309,0.3560934726878327,0.3568217173530266,0.3575082272141937,0.3583175146127389,0.3589519650655022,0.3609103361078917,0.3620755608559663,0.3625511513595971,0.3623325453112687,0.3632284415808549,0.3648850592985914,0.3665743305632502,0.3684528605962933,0.370161402210609,0.3716818943612477,0.3719352154151463,0.3693393300248139,0.3680403540496811,0.368560743153577,0.3720894371626831,0.3726134264011496,0.3725055432372505,0.3731982859368913,0.0,1.8615972215332937,60.488678396289785,208.6645204747991,321.6597527314854,fqhc6_100Compliance_baseline_low_initial_treat_cost,50 -100000,95777,41965,393.9567954728171,7128,73.07599945707216,5579,57.62343777733694,2267,23.272810800087704,77.38153749659537,79.72257598634013,63.350937847410606,65.08268450479416,77.10236692782479,79.44293572737251,63.24909685782407,64.98295038840742,0.2791705687705814,279.6402589676177,0.1018409895865346,99.7341163867418,84.4723,59.42615508175881,88196.85310669575,62046.373431783,255.39433,159.097404561495,266013.77157355106,165478.8116324557,281.36768,135.07587260672344,289857.2308591833,138013.30666472824,3692.31519,1658.5880943719303,3817173.3819184154,1694333.5440505869,1397.59612,605.8685645169265,1442008.707727325,615420.6886662772,2230.17498,925.5670867897028,2291560.7087296536,936579.5361045148,0.38118,100000,0,383965,4008.947868486171,0,0.0,0,0.0,21633,225.2106455620869,0,0.0,26246,270.0021925932113,2043822,0,73390,0,0,0,0,0,43,0.4489595623166313,0,0.0,0,0.0,0,0.0,0.07128,0.1869982685345506,0.3180415263748597,0.02267,0.3146666666666666,0.6853333333333333,25.395735842887344,4.5645979234631096,0.3350062735257214,0.2050546692955726,0.22172432335544,0.2382147338232658,11.179142926848352,5.626304783147972,24.17118007173367,12977.21999350763,62.847409920934325,13.387282037575469,20.938536773187863,13.834564694307964,14.687026415863016,0.5558343789209536,0.7770979020979021,0.7025147137506688,0.6063055780113177,0.1121143717080511,0.717948717948718,0.9303621169916436,0.8599562363238512,0.7353951890034365,0.1511627906976744,0.5033222591362126,0.7070063694267515,0.6515580736543909,0.5665961945031712,0.1027077497665732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0047641251241713,0.0070411103445477,0.0094147040004874,0.0117432946296032,0.0138338915072732,0.0159212296652668,0.0179426203574235,0.0202844938584479,0.0223668324226983,0.0245014653741315,0.0267701340559627,0.0290664199054081,0.0308883489147893,0.0329032191519427,0.0347677842640905,0.0366737033817624,0.0391931253951964,0.0411368735976065,0.0432808937291117,0.0582421940223743,0.0721240835451246,0.0851574621545687,0.0978385364674729,0.1103805098051612,0.1260541500221926,0.1386878331549442,0.1516462721000202,0.1633709328011781,0.1747397982699666,0.1891475872164993,0.2021046483960978,0.2144534052127035,0.2257507540324343,0.2362574514418952,0.247694743017811,0.2578138067149117,0.2668127915472377,0.2761064556000318,0.2856685201711631,0.2929080310880829,0.300729551512884,0.307676834607284,0.3144551608458635,0.3211756847027388,0.3283648279090393,0.3348627867725198,0.3403906100897003,0.3463346412338293,0.3512679103886851,0.3515136823960353,0.3513565598028824,0.3518510683308652,0.3523580741791239,0.3529280385938267,0.3534201205207231,0.3528983211910041,0.3547365484649087,0.3558726149435096,0.3567424756328323,0.3573787099921203,0.3588946117274168,0.3604211322657925,0.3600862805015054,0.3608851992180901,0.362562840385421,0.3648246667810766,0.3671244959677419,0.3698394293946102,0.3730168197542646,0.3746347699050402,0.3757802080554814,0.3788532284663199,0.3776669224865694,0.3746436038775898,0.381453154875717,0.3813702848344881,0.3838013838013838,0.384529461044401,0.3849129593810445,0.0,2.405603719186768,59.998350912867565,207.47423204719917,326.93537654404474,fqhc6_100Compliance_baseline_low_initial_treat_cost,51 -100000,95860,41587,390.6634675568537,7208,74.06634675568537,5598,57.84477362820781,2307,23.70123096181932,77.37299817448195,79.67597507591856,63.35320242165369,65.0578815398406,77.0963945380778,79.39763977813142,63.25246389617075,64.958490905064,0.2766036364041468,278.3352977871374,0.1007385254829387,99.39063477659715,85.45416,60.0863816725972,89144.75276444816,62681.39127122596,256.6859,159.4032381370515,267217.4525349468,165733.3487763942,273.65772,130.71653300201035,282088.98393490503,133622.85624985653,3755.51606,1678.9062531703046,3883870.4360525766,1717576.0412792664,1373.50176,594.9519997874359,1417949.2906321718,605783.2447665408,2281.96964,942.2311498018676,2346995.034425203,956260.9596555772,0.37949,100000,0,388428,4052.034216565825,0,0.0,0,0.0,21668,225.4537867723764,0,0.0,25490,262.54955142916754,2040983,0,73269,0,0,0,0,0,56,0.5737533903609431,0,0.0,1,0.0104318798247444,0,0.0,0.07208,0.1899391288307992,0.3200610432852386,0.02307,0.3133403638281044,0.6866596361718956,25.42804266917367,4.505649876480301,0.3224365844944623,0.2075741336191497,0.2198999642729546,0.2500893176134334,11.03773529757126,5.494644470349878,24.51333903871052,12873.574421369036,62.98777123607103,13.687899131127852,20.42384538315718,13.593147892035638,15.28287882975035,0.5392997499106824,0.7771084337349398,0.710803324099723,0.5507717303005687,0.1107142857142857,0.6896046852122987,0.9025069637883008,0.8665207877461707,0.6781609195402298,0.1557093425605536,0.4907844990548204,0.7210460772104608,0.6580118694362018,0.5164948453608248,0.099009900990099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0045202549991385,0.0066238600975827,0.0085291310440062,0.0103897688225606,0.0127850162866449,0.0149725316726631,0.0171243711028788,0.0195976253972146,0.0217426893404547,0.023943445520209,0.0261319215734556,0.0281177740095575,0.030086874176548,0.0322051895302207,0.0340682604430216,0.0361691341547947,0.0384551615510559,0.0404681301792352,0.0424070914311873,0.0568994640585573,0.0712121212121212,0.085080974628648,0.0972667037686516,0.1093490027589983,0.123984662997898,0.1375667542595575,0.149522675568218,0.1610455311973018,0.1721314988641721,0.1865005058005639,0.1997470598408855,0.2121772019824363,0.2231320927995102,0.2339322850760885,0.245370575466265,0.256027221509455,0.2663366336633663,0.2754243056816119,0.2845331073498087,0.2919832980556808,0.2995296265094074,0.3072451758020599,0.3148787268718244,0.3207175911867947,0.3267142452144116,0.3325567121365851,0.3381836235869233,0.3434681181959564,0.3488728560479928,0.3496359223300971,0.3503412145860619,0.3519627223948037,0.3518333405768757,0.3520784944315407,0.3519754507096279,0.3510636610244776,0.3518935718866652,0.3529421829817086,0.3540361553606587,0.3550349177742735,0.3557576117747271,0.3556680459576971,0.3554450343885117,0.3559260776329422,0.3561815663626623,0.3581290100824931,0.3609618909182835,0.363412054987663,0.36704432518386,0.3690746974797562,0.3712157488693801,0.3728877919119043,0.3775205090853331,0.378219139028794,0.3793718772305496,0.377107501933488,0.3855371900826446,0.3843336151028458,0.389988358556461,0.0,2.117121101505122,60.3588220527991,211.11568926594416,323.5813301582113,fqhc6_100Compliance_baseline_low_initial_treat_cost,52 -100000,95785,41852,393.7777313775644,7172,73.65453881087853,5520,56.981782116197735,2267,23.24998694993997,77.39816222968327,79.72814432973351,63.35848721039546,65.07955599581112,77.11599054847484,79.44619396546354,63.25425467233926,64.97834913542576,0.2821716812084247,281.9503642699744,0.1042325380562019,101.20686038536064,86.44196,60.78009560157654,90245.8213707783,63454.71169971972,255.67959,159.29177633841817,266294.55551495537,165666.9756762585,276.61752,132.76376398764384,284405.02166309964,135227.30752433257,3699.12917,1662.1765148231814,3822426.9144438063,1695922.65021512,1382.9682,606.5400263206051,1423622.5713838283,613080.7542348622,2243.73916,935.2754078363242,2303417.591480921,943243.044556784,0.38047,100000,0,392918,4102.0827895808325,0,0.0,0,0.0,21622,225.07699535417865,0,0.0,25702,264.12277496476486,2035077,0,72999,0,0,0,0,0,58,0.5742026413321502,0,0.0,1,0.0104400480242209,0,0.0,0.07172,0.1885036928010093,0.316090351366425,0.02267,0.317808944165123,0.6821910558348769,25.224049938024763,4.552609224973065,0.3278985507246377,0.2016304347826087,0.2235507246376811,0.2469202898550724,11.14185403278045,5.630127192793816,24.01250502594681,12903.785012322956,61.959934696462696,13.06680851346131,20.261712016486012,13.70477250214202,14.926641664373337,0.5445652173913044,0.7753818508535489,0.7011049723756906,0.5777957860615883,0.1181217901687454,0.6937728937728938,0.925207756232687,0.8701594533029613,0.6906474820143885,0.1358885017421602,0.4955475330926594,0.7034574468085106,0.6469730123997083,0.5449790794979079,0.1133828996282527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989204188693,0.0045605642938219,0.0068173517834679,0.0088959298074579,0.0110506785950287,0.0131292364687442,0.0154379171549396,0.0174774517406031,0.0194323545638447,0.021618801092706,0.0238505040570445,0.0257978450487429,0.0279841734751554,0.0301461506792918,0.0322690392486365,0.0343395953607981,0.0366420110691563,0.0384910512453597,0.0405611847233047,0.0423930021868166,0.0560025043042729,0.0698433283828728,0.0832127655113124,0.0963236221465506,0.1087742602021991,0.1245044873624457,0.1375312884476687,0.1501495110297638,0.1616059126979888,0.1724145326641787,0.1861980569138967,0.1988447684669385,0.2113618829256631,0.2234459850744637,0.2347102532536053,0.2468156214379779,0.2570848622062612,0.2676084853665669,0.2771575101549912,0.2854033496002016,0.2931235903070961,0.3009426018618141,0.3081067639257294,0.3150215209754577,0.3218341937443061,0.3276531253465419,0.3340173421253488,0.3395544699311731,0.3444062965602125,0.3492797063367356,0.3503780476299581,0.3510967901846573,0.3516517617852004,0.3525082064407907,0.3530923241444867,0.3522854299058265,0.3516300731869594,0.3516252484273114,0.3522414117727607,0.3536698723678095,0.3552900575801339,0.3561842079178479,0.358005249343832,0.3585779488097368,0.3593487344507948,0.3603862212943632,0.3606095931307043,0.3643130849927759,0.3682330695426851,0.3702808699441429,0.3722491096703497,0.3754105307765653,0.3783292598859434,0.3825482861287121,0.3853930461073318,0.3853728833913774,0.3820362965241464,0.3821071938047687,0.3751735628991947,0.3736559139784946,0.0,2.5271287747619,59.778514981276224,206.3090477946295,316.2864545829418,fqhc6_100Compliance_baseline_low_initial_treat_cost,53 -100000,95884,41754,390.6908347586667,7159,73.51591506403571,5637,58.27875349380501,2289,23.518000917775645,77.3584022892406,79.64173269161243,63.35300198276878,65.04202060757258,77.06758980675448,79.3493561471468,63.24547876795331,64.9364534713713,0.2908124824861176,292.37654446562544,0.1075232148154725,105.56713620128733,86.18764,60.61398899798724,89887.40561511827,63215.95782193822,257.49227,160.16179775720926,268074.3606858287,166565.79591715953,276.99472,132.57627498262298,286009.9390930708,136027.5591380232,3757.5664,1702.3719674353044,3887609.872345751,1744192.3756156424,1398.90464,613.1380438758218,1445091.7045596763,625594.6079385728,2257.42754,952.9111857903532,2321495.2233949355,965959.2137466042,0.3799,100000,0,391762,4085.7911643235575,0,0.0,0,0.0,21776,226.5967210379208,0,0.0,25915,267.3543031162655,2033492,0,73074,0,0,0,0,0,43,0.4484585540861874,0,0.0,1,0.0104292686996787,0,0.0,0.07159,0.1884443274545933,0.319737393490711,0.02289,0.3147458078253926,0.6852541921746074,25.01983368018156,4.640285744468465,0.3304949441192123,0.1993968422919992,0.2299095263437998,0.2401986872449884,11.16227571959553,5.581585175782005,24.68715893726426,12908.022263056197,63.996374836492784,13.168250876108864,21.15780015195676,14.632838272019276,15.03748553640789,0.5506475075394713,0.7846975088967971,0.6983360171765969,0.5833333333333334,0.121861152141802,0.6830110497237569,0.9128065395095368,0.8231578947368421,0.7100977198697068,0.1505016722408027,0.5048937693960373,0.7225891677675033,0.6556195965417867,0.5439838220424671,0.1137440758293838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023995383166783,0.0047724716539502,0.0069073241979491,0.0093614515326584,0.0117808497662126,0.0137290222778575,0.0159541953624842,0.0181243306644907,0.0202464698855456,0.0223473967225181,0.0247218155947055,0.027004029074953,0.0295171875481425,0.0316936180718429,0.0338836332158535,0.0359303694220166,0.037994848506791,0.0399125261695997,0.0419033574610823,0.0438523481553923,0.058255058745035,0.0724353013697198,0.085549120841144,0.0984133317932186,0.109950070575347,0.1253829414126048,0.1388573911384759,0.1507640284556735,0.1629361597660294,0.1739596509658469,0.187356656006719,0.2003677663601947,0.2128957209949556,0.2246635839919544,0.2352423779314591,0.2462621321617105,0.2574895714827455,0.2662243463592915,0.2747469704534108,0.2826266330506532,0.2902773918681115,0.2973172273333802,0.3055446929029353,0.3120198770885347,0.3186293001691471,0.3251830721545092,0.3316524924111286,0.3379943863230416,0.3429889538661468,0.347376925420182,0.3478889414307911,0.348891804184216,0.3494416961130742,0.3507703020280268,0.3519098776484631,0.3518196506886205,0.351097677378301,0.352754814118113,0.3537713981559383,0.3544385486877958,0.3557458823529412,0.356392172444621,0.3563555124665416,0.3586543434752299,0.3604383906321825,0.3620351226150907,0.3623823015941158,0.3643418188700671,0.3669718309859155,0.3676324074443072,0.3696667277055484,0.3708570516571793,0.3720782922657883,0.3744009893337455,0.3792081101759755,0.3832588476869187,0.3865165024245268,0.3864615384615384,0.3832318760376314,0.3857965451055662,0.0,2.033911467640336,64.17704947762292,215.5045568732456,315.1737794215733,fqhc6_100Compliance_baseline_low_initial_treat_cost,54 -100000,95716,42242,397.5824313594384,7095,72.70466797609596,5553,57.26315349575829,2275,23.2458523130929,77.38965647392791,79.75406082869972,63.34469261111818,65.09298302584556,77.11602863937034,79.48639507872825,63.24543747865494,64.99945788755878,0.2736278345575726,267.66574997147075,0.0992551324632415,93.525138286779,85.7769,60.34069370021495,89615.82180617661,63041.1568601017,257.58408,160.70982445442328,268334.18655188265,167124.0904910603,280.34729,134.5113409704508,288143.52877261897,136836.0713795371,3712.49112,1655.8081819466147,3830462.367838188,1682069.4202832566,1379.78609,597.2364469936795,1418557.3362865143,601239.5915912356,2242.37068,917.4606027103908,2294413.4522963767,917396.4185901012,0.38414,100000,0,389895,4073.4464457353006,0,0.0,0,0.0,21821,227.15115550169253,0,0.0,26016,267.0608884616992,2037299,0,73072,0,0,0,0,0,58,0.6059592962514104,0,0.0,1,0.0104475740733001,0,0.0,0.07095,0.1846982870828344,0.3206483439041578,0.02275,0.318254817987152,0.681745182012848,25.34001462095404,4.658519093244072,0.3153250495227804,0.2015126958400864,0.2456329911759409,0.2375292634611921,11.35321097477406,5.736267201003018,23.917157739002853,13074.462553398003,62.39172977238099,13.0022091385665,20.059841335191077,15.06249763990188,14.267181658721524,0.5479920763551234,0.7640750670241286,0.6956025128498001,0.5755131964809385,0.1402577710386656,0.7318181818181818,0.9230769230769232,0.8893709327548807,0.723404255319149,0.1673640167364016,0.4906685565792582,0.6952624839948783,0.6263565891472869,0.5369685767097967,0.1342592592592592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022182157037517,0.004632868019018,0.007124082850445,0.0096206595282117,0.0117285645986552,0.0140320149892061,0.0162212864876989,0.0185379896081093,0.0205965328317932,0.0227858985382631,0.0248265116803509,0.0270209227357657,0.0288977527396837,0.030870935189571,0.0329541117861231,0.0350041339396444,0.0369772089507419,0.0389774766830239,0.0407741157639819,0.042732103782432,0.0574674239893083,0.0721694805262772,0.0856249540976382,0.0981778394983798,0.1108192501635124,0.126573308230914,0.1408201156437324,0.1539705851052508,0.16576963328421,0.1769241493206361,0.1906064260487552,0.2041001785038134,0.215425098133026,0.2270724212966506,0.2374429223744292,0.2488567030971442,0.2595793558747435,0.2696871628910464,0.2789374029184004,0.2872571677001579,0.2952222376393321,0.3031220413077273,0.3101088536680495,0.3173651261057444,0.3243564692889304,0.3310546995282612,0.3364145798413929,0.3422401404062114,0.3485817071276981,0.3538512265892904,0.3552805058522804,0.3557142071090569,0.3564097148891235,0.3571665920221911,0.3576813486881158,0.3575943071390313,0.3570174467344711,0.3577622240070811,0.3581598937221105,0.3589268536003135,0.3597705659249294,0.3609675255494614,0.3619957759143472,0.3633866356976952,0.3639136386560676,0.3639375048905814,0.3644526795895096,0.366566787572938,0.3683096355361112,0.3695773971506323,0.3714864056677554,0.3734453238572121,0.3762388818297331,0.3767112868877396,0.3818164811523711,0.3823738450604122,0.380085653104925,0.3804435483870967,0.3791313848675225,0.3757159221076747,0.0,2.732074487682263,57.59678737057774,216.1218933222867,317.3846371846682,fqhc6_100Compliance_baseline_low_initial_treat_cost,55 -100000,95749,41873,393.863121285862,7156,73.48379617541698,5579,57.55673688498052,2291,23.49893993670952,77.34687979821054,79.70688174048465,63.33382307926016,65.08149736053247,77.06775092867358,79.42891157700517,63.23192337621705,64.98273983771767,0.2791288695369616,277.97016347948045,0.1018997030431094,98.75752281479322,85.5261,60.156279022161605,89322.77099499734,62826.644110834975,255.22191,158.4076806104916,265859.528559045,164748.09840318374,276.85779,132.57253729586628,284531.34758587554,134824.23541180842,3732.39031,1668.6191449732507,3854835.319428924,1699555.5450934118,1365.09279,592.8743253149844,1404556.0266947958,598223.7380060215,2259.82566,932.616084008924,2320580.016501478,940376.4622469216,0.38113,100000,0,388755,4060.125954318061,0,0.0,0,0.0,21614,225.0154048606252,0,0.0,25797,264.82783110006375,2040541,0,73286,0,0,0,0,0,39,0.407314958902965,0,0.0,1,0.0104439733052042,0,0.0,0.07156,0.1877574580851677,0.3201509223029625,0.02291,0.3234354194407456,0.6765645805592543,25.3743946544168,4.626374554592681,0.3416382864312601,0.1939415665889944,0.2272808747087291,0.2371392722710163,11.140687092507084,5.453928270182367,24.42615486602099,12934.157870394796,62.9140481054069,12.645636508045415,21.501866538954765,14.227965259795498,14.538579798611227,0.5466929557268327,0.7513863216266173,0.6909758656873033,0.5922712933753943,0.127739984882842,0.7139737991266376,0.9309309309309308,0.832271762208068,0.7442622950819672,0.1962264150943396,0.4920332936979786,0.671562082777036,0.6445993031358885,0.5441329179646937,0.110586011342155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0046951689449559,0.006994923857868,0.0091872719696738,0.0115772767966143,0.0137064418239954,0.0158731776939545,0.0182115149040424,0.0204452986035861,0.0224024245402793,0.0245035217404677,0.0265624839567525,0.0286604553587955,0.0308527515091579,0.0327677668379879,0.0348470595532216,0.0367305939855852,0.0384874734166709,0.0406968887410472,0.0426528933365267,0.0570319186689768,0.070986233733629,0.0845600570374098,0.097481764866626,0.1092608791880526,0.1247675205004649,0.1383129822776223,0.1512789980650237,0.1634718977673952,0.1748048025533646,0.1886757951575256,0.202122371350148,0.2140374128229082,0.2250346702774714,0.2359034635791416,0.2464262004868333,0.2565949381201918,0.2668600272053781,0.2764424168141994,0.2846653455366041,0.2936166273202796,0.3020395745328169,0.3088550359243872,0.3152839894006067,0.3212294912743038,0.3277846862264685,0.3328492739108663,0.337740675226836,0.3439916080655814,0.3493759729808174,0.3500424236710616,0.3507430822417806,0.3518343645614579,0.3520237062734894,0.3527339220408527,0.3516911471589341,0.3511473382070759,0.3520310751201527,0.3536856888401726,0.355288349705656,0.3561376148512805,0.356274179148894,0.357205956587582,0.3579439462387341,0.3588571152078192,0.3603563357334314,0.3618506073920909,0.364436395984242,0.3645958773110434,0.3652588938354791,0.3669416155937514,0.3708431667024244,0.3722781102763275,0.3770039119429316,0.3778510838831291,0.3783460803059273,0.382939267501159,0.3809622135040264,0.3824858757062147,0.3764517420905086,0.0,2.754229345235488,60.2128809881859,213.8089875649739,316.3317651839655,fqhc6_100Compliance_baseline_low_initial_treat_cost,56 -100000,95748,42148,397.14667669298575,7224,74.19476124827672,5613,57.97510130759911,2253,23.081422066257257,77.36211040614715,79.72367483425936,63.32787542470121,65.07542805763687,77.08599126499861,79.45025488287266,63.22716553118024,64.97874736765073,0.2761191411485413,273.4199513866997,0.1007098935209711,96.68068998614388,84.59484,59.52262184463672,88351.31804319673,62165.68684947647,257.59675,160.08381115745465,268406.66123574384,166563.3445685076,280.74302,133.99099230392696,289721.7487571542,137141.29596336838,3720.17894,1669.6138448767583,3844447.497597861,1702820.4190967523,1373.20347,594.0828069482262,1415609.809082174,601989.0526005193,2226.07274,922.6085741961756,2283468.145548732,928076.2093996792,0.38264,100000,0,384522,4015.9690019634872,0,0.0,0,0.0,21701,225.96816643689684,0,0.0,26145,269.509545891298,2041583,0,73312,0,0,0,0,0,52,0.5430922839119354,0,0.0,0,0.0,0,0.0,0.07224,0.1887936441563872,0.3118770764119601,0.02253,0.3206399576887478,0.6793600423112521,25.20828246890945,4.55818211050139,0.3340459647247461,0.1997149474434348,0.2303580972741849,0.235880990557634,11.173043409438163,5.58472938813229,23.963290717845176,12996.802860924156,63.32602558701804,13.15859276719578,21.15295225733263,14.50761531459212,14.506865247897508,0.5487261713878496,0.7582515611061552,0.6853333333333333,0.6071152358855375,0.120845921450151,0.7018181818181818,0.904899135446686,0.8491379310344828,0.7389830508474576,0.1449814126394052,0.499056158565361,0.6925064599483204,0.631467044649185,0.5681362725450901,0.114691943127962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024214056310345,0.0049283063256738,0.007197238858999,0.0094394261154068,0.0114236305376125,0.0137796879455737,0.0158974568147982,0.0181838601649922,0.020296315988589,0.0226509379864012,0.0245713348100746,0.0266966606062473,0.0287651361611506,0.0306262301501427,0.0323249837446202,0.0345105661469749,0.0362324093154259,0.0380976095617529,0.0401230718057461,0.0422586558893379,0.056953172300048,0.0703674255105457,0.0843602193952995,0.0972328856448712,0.1102567348058139,0.1254680063458487,0.1384453803800087,0.1515761234071093,0.1645493883220257,0.1755610598213615,0.1895233377129687,0.2027313652497619,0.2146897572012879,0.2253396337861783,0.2364224636006471,0.2478923170664155,0.2589300668847772,0.269060263738242,0.2780425261533574,0.2870167802531355,0.2946325197980827,0.3023903403573225,0.3096447301440731,0.3168753898565328,0.3236133892230119,0.3297815926104061,0.3358346382712183,0.34097074518894,0.3460686097899197,0.3517193112190999,0.3521645313553607,0.3529752305338461,0.353570673246387,0.3535445601851852,0.3538466114424235,0.353564473341205,0.3523022769074649,0.3532447892695114,0.3543464515798287,0.3558701706777119,0.3579126914209668,0.3589596745527074,0.3600460926042321,0.3608388165256703,0.3632356129405246,0.3640256959314775,0.3661055634807418,0.3685618097725199,0.3702650517816395,0.373352390026997,0.3737883959044368,0.3739867549668874,0.3733308138070043,0.3745258686087088,0.3757019842755522,0.3741690408357075,0.3729383017715333,0.3760786674693959,0.3883733624454148,0.3873348873348873,0.0,2.441608048061549,60.56360994990497,212.7293956088886,323.6761147444571,fqhc6_100Compliance_baseline_low_initial_treat_cost,57 -100000,95759,41551,389.7492663874936,7145,73.35080775697324,5510,56.94503910859554,2196,22.53574076588101,77.32840490063373,79.68911843944852,63.31625382636724,65.06469779172649,77.06061896603121,79.42124648218642,63.21856930377695,64.9695715178211,0.2677859346025144,267.871957262102,0.097684522590292,95.12627390539308,86.88592,61.02696511833263,90733.94667864118,63729.74354194659,257.70631,160.8054326531032,268551.0395889681,167358.5904751545,275.65751,132.2601851926877,284147.34907423845,135186.3945162221,3643.60381,1628.7190230613262,3769467.110141083,1665346.5711435252,1336.22775,578.9007597696227,1379270.951033323,588403.2621159608,2158.41404,890.0517683797217,2218287.6596455686,899430.0219871134,0.3781,100000,0,394936,4124.270303574599,0,0.0,0,0.0,21858,227.65484184254225,0,0.0,25691,264.53910337409536,2029414,0,72887,0,0,0,0,0,49,0.5117012500130536,0,0.0,0,0.0,0,0.0,0.07145,0.1889711716477122,0.3073477956613016,0.02196,0.313031914893617,0.686968085106383,25.394357492816354,4.567304479719602,0.3288566243194192,0.2056261343012704,0.2352087114337568,0.2303085299455535,11.282453058795086,5.7287482577838,23.147082178844016,12891.335877156407,61.72062810823503,13.143223363107026,20.402734865491787,14.472728075203031,13.701941804433192,0.5482758620689655,0.766107678729038,0.6909492273730684,0.5879629629629629,0.1095350669818755,0.7198177676537585,0.9171597633136096,0.8390022675736961,0.7542087542087542,0.1825726141078838,0.4943954209396613,0.7018867924528301,0.6433260393873085,0.5385385385385385,0.0924124513618677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021786933919722,0.0045639870991298,0.006883807821955,0.0092888066830626,0.0116884702244104,0.0138323011734028,0.0160303475281448,0.0182341650671785,0.0203234578502934,0.0224988228550371,0.0247450156322074,0.0268497032671417,0.0287953269298011,0.0308180376161341,0.0328981992673236,0.0349685768626478,0.03706809100884,0.0392122293205011,0.0414315553200112,0.0433677720379936,0.0576065967329471,0.0717886501976697,0.0850773812020299,0.097584561374004,0.1093491523280685,0.1242192041431062,0.13783998727533,0.1502612730542873,0.1629213483146067,0.1745102454402161,0.1879543765549775,0.2005214813532549,0.2122389033942558,0.2240023621788913,0.2347690174021199,0.2458575162819547,0.2559325817613573,0.2652813112096719,0.2739433580886193,0.2829241455195653,0.2911679592545433,0.2983326507927221,0.3058036243041573,0.3123102219128431,0.3190087066491561,0.3257104795737122,0.3324426714837674,0.3383093456395089,0.3434855956397612,0.3487148992401718,0.3490847283862351,0.3499545316762655,0.3502272278205888,0.3510722910731587,0.352097376605211,0.3518711816535167,0.3522700223749147,0.3533413497175048,0.3533917036478591,0.3542353447040275,0.3545551862076737,0.355314258540065,0.3561287616650938,0.3561025963243049,0.3564688563361247,0.3572792674950948,0.3582281740921967,0.3605487228003784,0.3641894981183836,0.3651179470832005,0.3703416149068323,0.3712301902793237,0.3738857501569366,0.3780950934224518,0.3786837397608511,0.3832958712883,0.3797061524334251,0.381587041213861,0.3776223776223776,0.3856803797468354,0.0,2.3145507586973517,57.77175392836428,207.48753401848649,321.1775348360141,fqhc6_100Compliance_baseline_low_initial_treat_cost,58 -100000,95739,41665,391.6585717419233,7129,73.33479564231922,5581,57.80298519934405,2270,23.39694377421949,77.31464774318667,79.68021922071647,63.30648041847581,65.05582646275457,77.03160851647777,79.39339999305571,63.20292009465305,64.9529223215375,0.2830392267088939,286.8192276607573,0.1035603238227551,102.90414121706704,85.6427,60.24592115900612,89454.3498469798,62927.25133854138,256.60113,159.8438843095065,267538.32816302654,166474.76400370436,277.78007,133.47174392448147,286561.75644199335,136769.3154770219,3726.90662,1681.7581911225634,3862501.8957791496,1726379.355701109,1370.00312,595.602898640747,1420815.8221832272,611988.5040064651,2246.73622,935.9611363878984,2317956.026279781,954671.8886464458,0.37872,100000,0,389285,4066.1068112263542,0,0.0,0,0.0,21660,225.7387271644784,0,0.0,25937,267.34141781301247,2034446,0,73000,0,0,0,0,0,40,0.4178025673967766,0,0.0,0,0.0,0,0.0,0.07129,0.1882393324883819,0.3184177303969701,0.0227,0.3204530313124583,0.6795469686875416,25.37401424072516,4.602563418642109,0.3262856118975094,0.1974556531087618,0.2338290628919548,0.2424296721017738,11.045252958778836,5.392738801325795,24.208044950960257,12917.359661430828,62.98627460578937,12.890954180150036,20.71563430128583,14.439194254573009,14.940491869780493,0.5393298691990682,0.7667876588021778,0.6946732564524987,0.5800766283524904,0.1056910569105691,0.7014716187806588,0.9005681818181818,0.8849206349206349,0.7093425605536332,0.1170212765957446,0.4836302359171882,0.704,0.621867881548975,0.5433070866141733,0.1027077497665732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0045624600784743,0.0069124423963133,0.0091352504826745,0.01109924207742,0.0131525327030441,0.0154660735964742,0.0176635151416144,0.0197902398135465,0.0218869006183203,0.0241559267119846,0.0262652606503681,0.0282460886470473,0.0302833590932509,0.0324115649418346,0.0343840133979799,0.0366577265996334,0.0386842378333506,0.0406459260491619,0.0427761803558778,0.0577063626302491,0.0717156493343381,0.0850581706408736,0.0978526058974466,0.1103741353129745,0.126368569705817,0.1397034631345453,0.1522630239664406,0.1643222096329392,0.1755282049080939,0.1888479123533471,0.2019631848665749,0.213714596949891,0.2244468553769273,0.2348115641608044,0.2458692369192502,0.256133442223142,0.2655446259362873,0.2749800887472977,0.2834984029229956,0.292255400106726,0.2999343431974863,0.306912136273591,0.3134195702566689,0.3209401917368242,0.3274989507986274,0.3336005410957188,0.3388086688568009,0.3437508094806372,0.3483063036908987,0.3493216205656081,0.3499277207957596,0.3506233711347468,0.3513794898490369,0.3524674358020097,0.352613486387772,0.3521922722798997,0.3530942265257056,0.3543502863609863,0.3553852215337225,0.3556508169289488,0.3562138155285907,0.3564817729648051,0.3577350542260464,0.3590658215034585,0.3589267986833168,0.3603139141891505,0.3625922887612797,0.3635339669130588,0.3670855774985039,0.3719277329420396,0.3732676975761143,0.3733086545825887,0.3758788534342888,0.3776504297994269,0.377496991576414,0.3806703039750584,0.3829742731646099,0.3782485875706214,0.3760921366163622,0.0,1.9107775021564517,63.48538684256777,203.82149702438804,320.87546837446047,fqhc6_100Compliance_baseline_low_initial_treat_cost,59 -100000,95814,41800,392.0512659945311,7174,73.68443025027658,5604,57.90385538647797,2243,23.034212119314507,77.3504688262772,79.68169675036378,63.33176974345843,65.05955581026693,77.07146529318364,79.40367854686717,63.22861685627176,64.95961302757564,0.2790035330935581,278.01820349661455,0.1031528871866669,99.94278269128642,85.88162,60.41858839895507,89633.68610015238,63058.204854149786,257.5568,160.41781898126146,268199.52199052327,166817.48080826676,282.10844,135.17926446196694,291032.4169745548,138523.01482438494,3701.20369,1662.0670752534425,3827027.313336256,1698851.059681974,1357.27441,590.4552283484511,1401156.9081762582,600864.8009202778,2211.22514,925.84653249787,2273099.129563529,936023.8844947738,0.37928,100000,0,390371,4074.258459097836,0,0.0,0,0.0,21715,226.02124950424783,0,0.0,26213,270.117101884902,2033916,0,73094,0,0,0,0,0,60,0.6262132882459767,0,0.0,0,0.0,0,0.0,0.07174,0.1891478591014554,0.3126568162810147,0.02243,0.3249406802003691,0.6750593197996309,25.34264946012453,4.5752339396563775,0.3361884368308351,0.2025339043540328,0.2310849393290506,0.2301927194860813,11.06208074779044,5.438763980733938,23.9258135310588,12888.181456787708,63.01706488581317,13.277903760347131,21.255404231821885,14.34008118293792,14.143675710706232,0.5433618843683083,0.7682819383259912,0.6863057324840764,0.5768339768339769,0.1031007751937984,0.6924177396280401,0.925414364640884,0.8100208768267223,0.7323943661971831,0.1355311355311355,0.4938183547313362,0.6946959896507116,0.6441281138790036,0.533135509396637,0.0943952802359882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024312660818121,0.0048365999817486,0.0071754795493758,0.0095099722625809,0.0118091014504546,0.0140860850257684,0.0162561827545765,0.0184625439098112,0.0204490613880822,0.0225723235673484,0.0247531351578601,0.0268111105406376,0.029041248033237,0.031101956745623,0.0331569774037519,0.0355847617866774,0.0376071384207693,0.0395390567466368,0.0415908878334701,0.0435371033563754,0.0587940746922595,0.0727601601789989,0.0862990442655935,0.0987118601328065,0.11055504045853,0.1261361234411329,0.1394078849702033,0.1517504760486367,0.1630367475925095,0.1737965622186977,0.1871011482625399,0.1997686411451182,0.2121742153465077,0.2226254632109399,0.2331686599843762,0.2441597588545591,0.2551994373555711,0.2647763982845758,0.2737680155368033,0.2823312405480959,0.2910179086162787,0.2989903008037814,0.3065904274839885,0.3125104893428277,0.3191936876147402,0.3249821045096636,0.3305667001003009,0.3365555059618695,0.3419229272090307,0.3476029888249686,0.3482300825196169,0.349121983544094,0.350059348858241,0.3501949473134956,0.350937830549886,0.351347615756738,0.3507395110172049,0.3508922245472969,0.3524191337719298,0.3537915838125436,0.3544389364578639,0.3558654017547681,0.3561781941148054,0.3570787323817219,0.3579316177358946,0.3582984293193717,0.3590139115034136,0.3622412000126052,0.3637991573033708,0.3662353175393191,0.3681859617137648,0.3697385204081632,0.3711619696109955,0.373201370384469,0.3769485120453472,0.3806650100579813,0.3849801162434995,0.3880355699272433,0.3956403269754768,0.4027617951668584,0.0,2.2262644175179616,61.6874907975089,205.1962121651729,325.8921224624545,fqhc6_100Compliance_baseline_low_initial_treat_cost,60 -100000,95711,41692,392.4836225721182,7166,73.56521194011138,5610,57.94527274816897,2302,23.64409524506065,77.30949638025908,79.66885899460196,63.31695901961641,65.05917627263109,77.02642550511516,79.38698089499418,63.21264188221807,64.95854226499927,0.2830708751439204,281.87809960778054,0.1043171373983398,100.63400763182528,85.41896,60.08550671379415,89246.75324675324,62778.05760444896,256.31597,159.2310810642254,267089.74934960454,165657.85776102808,279.50747,133.27430569626466,287894.24413076864,136128.55945985197,3699.96302,1666.0491887973174,3822894.839673601,1698584.6442784874,1343.8527,584.2483674267944,1387995.9356813745,594511.801854329,2262.62504,941.8304235590138,2325905.841543814,950466.8083608806,0.37853,100000,0,388268,4056.670602125148,0,0.0,0,0.0,21617,225.16743112076983,0,0.0,26015,267.65993459476965,2037081,0,73190,0,0,0,0,0,57,0.5850947122065384,0,0.0,0,0.0,0,0.0,0.07166,0.1893112831215491,0.3212391850404689,0.02302,0.3131940772078265,0.6868059227921735,25.30554305312681,4.520182038589244,0.3219251336898395,0.203030303030303,0.2429590017825312,0.2320855614973262,11.14136063319927,5.667855638018913,24.588924337736803,12839.893944266852,63.39318973275884,13.098579913712644,20.509005774297123,15.3905999427771,14.395004101971969,0.5459893048128343,0.742756804214223,0.6926910299003323,0.5920763022743947,0.1221198156682027,0.6860294117647059,0.9041533546325878,0.8517699115044248,0.7089783281733746,0.1323529411764706,0.5011764705882353,0.6815980629539952,0.6395864106351551,0.5557692307692308,0.1194174757281553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019140985001164,0.0044197550888005,0.0063813813813813,0.0083895344113106,0.0102882122706247,0.0126823210886846,0.0147785761606278,0.0168526136352036,0.0192858018887208,0.0214305451791507,0.0239137342531186,0.0260796352958087,0.0282570694087403,0.0303801118400049,0.03234190008663,0.0343744511143025,0.0363371040021527,0.0385704359008929,0.0403064035005664,0.0422526407900493,0.0570494679351288,0.0710375650244397,0.0847091401120224,0.0968525548673403,0.1088953335090957,0.1236898604985669,0.1370075231051643,0.1492718446601941,0.1612682676694299,0.1728146178261988,0.1862469431067731,0.1997899682787142,0.2121472646345046,0.2234273081469159,0.2337311986610583,0.2449307657343045,0.2561748047856831,0.2659358734593632,0.2749108096439203,0.2828676580181378,0.2907899155771213,0.2982359620269463,0.3052616613153561,0.3118998463606683,0.3191409147846814,0.3249027957785595,0.3307982408880758,0.3366813674254977,0.3423910927706622,0.3473444592967085,0.3480762218590895,0.3488115438204417,0.3493265874305742,0.3502984469170144,0.3512627090849459,0.3510908168442415,0.3502378944353388,0.3509486883352582,0.3518079329071286,0.3532827556450453,0.3539166855331673,0.3565362994857075,0.3575637262148635,0.3593380081621609,0.3605219039288578,0.3622175512348923,0.362630395942597,0.3632385120350109,0.3638936049801924,0.3664739884393063,0.3660624370594159,0.3659735955957026,0.3686008985635639,0.3729696598222494,0.3733055265901981,0.374850870913863,0.3754641089108911,0.3803578859758635,0.3867634738899748,0.3901205756514975,0.0,2.560732081569894,59.774142950841096,216.62974827638547,322.09162549562524,fqhc6_100Compliance_baseline_low_initial_treat_cost,61 -100000,95729,41980,395.0213623875733,7101,72.84104085491335,5513,56.9419924996605,2242,22.960649333012984,77.40440741590693,79.76286923294163,63.3594678928421,65.09969824218452,77.12913343889909,79.4900565244929,63.258464890962,65.0030730960826,0.275273977007842,272.8127084487255,0.1010030018800947,96.62514610191408,85.88646,60.43091819032894,89718.32986869183,63127.07558872331,256.96124,159.92047133130248,267776.1597843914,166406.0412194875,279.29266,133.800337664277,288368.4045587022,137041.1905531498,3679.58161,1648.4086375037948,3798396.9225626495,1676615.0331763,1365.46265,593.2589849820254,1405942.932653637,599302.3653465442,2221.15846,919.6419347761944,2276166.887776954,921348.5175627487,0.38018,100000,0,390393,4078.105903122356,0,0.0,0,0.0,21755,226.56666213999935,0,0.0,25969,267.9229909431834,2038610,0,73031,0,0,0,0,0,49,0.5014154540421398,0,0.0,0,0.0,0,0.0,0.07101,0.1867799463412068,0.3157301788480495,0.02242,0.313211082853701,0.686788917146299,25.285230453421843,4.605855844334462,0.3203337565753673,0.2033375657536731,0.2343551605296571,0.2419735171413023,11.222382097048929,5.602077188309927,23.66225510894297,12895.98442368932,61.72954677340274,13.053285008954107,19.898099206026533,14.248078191848895,14.5300843665732,0.5470705604933793,0.7814451382694023,0.6947904869762175,0.5743034055727554,0.1281859070464767,0.7122676579925651,0.925925925925926,0.860730593607306,0.7206896551724138,0.1766917293233082,0.4937619961612284,0.7155844155844155,0.6400602409638554,0.5319361277445109,0.1161048689138576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002470460781435,0.00449961996453,0.0066853328463895,0.0089168740161478,0.0111231990889957,0.0132227198697068,0.0153579617834394,0.0176627246104711,0.0199852869053457,0.0222460987464824,0.0242182615736233,0.0263260530421216,0.0281895754086563,0.0303951054713249,0.0326468281811052,0.0346606297421902,0.0368149620976761,0.0387144961513724,0.0406460128246432,0.0426540284360189,0.0567580266249021,0.0705905746669317,0.0833648036253776,0.0960667010125011,0.1087194839144917,0.1245373601505826,0.1370585302199259,0.1497939933353916,0.1620354048481352,0.1734099707248024,0.1866929447621509,0.1999653720877384,0.2124768845860981,0.2234981462646412,0.2352662852112676,0.2465556195454746,0.2567012610199754,0.2659911834825244,0.2758010548403561,0.2845973327227978,0.2925199944524063,0.3006363477144024,0.308200089747526,0.3149710761581489,0.3210269955895894,0.3266849476777787,0.3324376343548468,0.3385113679664677,0.3437641371644241,0.3489909029871378,0.3500846069135935,0.350157945337179,0.3503593176480515,0.3513092404241506,0.3514731831729414,0.3508227306092488,0.3504833325422817,0.3509928345385082,0.3518799815671349,0.3525676471112855,0.3547249779644806,0.3563063509362925,0.3579684910528855,0.3603972354559485,0.3611211355707927,0.3621288486146293,0.3616887926613868,0.3633216904244941,0.3673039077874613,0.3688984365676095,0.370845507669832,0.3705621696652608,0.3725093301284078,0.3758312313689521,0.3816607041988326,0.3854821492112442,0.388605047220932,0.3862985685071575,0.3942199775533109,0.3957497995188452,0.0,2.472039999006418,58.8893611577129,203.94602170480465,320.5553513331956,fqhc6_100Compliance_baseline_low_initial_treat_cost,62 -100000,95754,41638,391.3883493117781,7072,72.72803224930551,5472,56.624266349186456,2175,22.338492386741024,77.33232137485312,79.69712519309452,63.31916690730778,65.0706218667118,77.06899328038165,79.43454094760764,63.22295148954287,64.97735750408157,0.2633280944714755,262.5842454868774,0.0962154177649097,93.26436263023652,85.64446,60.23173553932275,89442.17473943646,62902.57904559888,254.33212,157.94295928924467,265085.21837207844,164421.89286008384,275.27945,132.0350248111781,284320.50880380976,135433.34205274505,3617.7125,1616.366955147731,3746747.7389978487,1656656.9387678122,1359.25236,588.8851453363077,1407131.576748752,602622.9329823576,2144.1607,885.9058256163511,2205072.205860852,896010.9589820227,0.37871,100000,0,389293,4065.553397247112,0,0.0,0,0.0,21530,224.28305867117825,0,0.0,25630,264.54247342147585,2038873,0,73174,0,0,0,0,0,50,0.5117279695887378,0,0.0,0,0.0,0,0.0,0.07072,0.1867391935781996,0.3075509049773756,0.02175,0.3216453135536075,0.6783546864463924,25.349895765255237,4.592823880382016,0.3245614035087719,0.2081505847953216,0.2335526315789473,0.233735380116959,11.134240490216914,5.489236278304089,23.035915088466748,12863.142080051366,61.442672779293126,13.304564523751653,20.05836334294064,14.160234775633873,13.919510136966943,0.5484283625730995,0.7576821773485514,0.6987612612612613,0.5954616588419406,0.106333072713057,0.7148120854826824,0.9177718832891246,0.8422222222222222,0.7446043165467626,0.1507936507936507,0.4935601458080194,0.678477690288714,0.6500754147812972,0.554,0.0954235637779941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021484454173253,0.0045238312590654,0.0067419381041345,0.0090047971379786,0.0112415561162203,0.0133454223163985,0.0154095618830056,0.0176316246209762,0.0198251623127651,0.022092547092547,0.0243574892103293,0.0264049442539473,0.0285761293175251,0.03061981172884,0.0325199896827443,0.0344175374406995,0.0364169151756129,0.0384276214090819,0.0405295865982167,0.0424521423959005,0.0567897110405879,0.0706774784200889,0.0835500922973653,0.0961158310901749,0.1080827464046223,0.1238643214485917,0.1367137764196587,0.1483602456704312,0.1604562493992502,0.1714971960412176,0.1857659831121833,0.1984828645940418,0.2106591529683097,0.2223814315715785,0.2335211391597156,0.2446956945428774,0.2546030754123239,0.2649375492292112,0.274204529980482,0.2830849930709058,0.2911251779246178,0.2995542660598757,0.3067647998485404,0.3133434002061312,0.3190292842307272,0.3261110700288397,0.3320402928111118,0.3376658061070061,0.342968142968143,0.3486331732545253,0.3496109001804131,0.3502429088506902,0.3513768575251778,0.3525672512930162,0.3533809998067575,0.3531476032855216,0.3527311391119433,0.3532273706010947,0.3540018116251645,0.3546407614140546,0.3552822133197916,0.3567020537751761,0.3574854834637718,0.3588724168912848,0.3587592476185871,0.3609008773078433,0.3615074486032082,0.3639384732244587,0.3660550458715596,0.3677065395859196,0.3694396037787765,0.3726564598442116,0.37426714249299,0.376797109248866,0.3795799189978336,0.3815540859707133,0.3855861334955147,0.3886883273164861,0.3932951757972199,0.3951089033244173,0.0,1.956007180773279,60.0964276138539,201.6034387053481,316.8382136561753,fqhc6_100Compliance_baseline_low_initial_treat_cost,63 -100000,95735,41959,394.02517365644746,7161,73.6407792343448,5577,57.77406382200867,2281,23.460594348984174,77.41699606751023,79.77009285605855,63.36600846061516,65.10066155617989,77.14506626354458,79.49779713428849,63.26684306379079,65.00370442738668,0.2719298039656479,272.2957217700639,0.0991653968243753,96.95712879320696,85.99954,60.48134706446511,89830.5948712592,63175.60329098448,257.0933,159.90218606426376,268013.756724291,166494.8541995446,279.97806,134.03299280521054,289312.79051548545,137520.2144777009,3694.88136,1653.1846315673154,3826217.026165979,1694087.0917783305,1359.46673,590.3093043167138,1403357.163002037,600176.2351904644,2244.6275,924.2901961463448,2309358.4373531104,935362.5340109856,0.38167,100000,0,390907,4083.208857784509,0,0.0,0,0.0,21822,227.39854807541653,0,0.0,26065,269.22233248028414,2036548,0,73067,0,0,0,0,0,51,0.5327205306314305,0,0.0,0,0.0,0,0.0,0.07161,0.1876228155212618,0.3185309314341572,0.02281,0.3133756278086175,0.6866243721913825,25.446114630564125,4.577201796637224,0.3363815671507979,0.197776582391967,0.2305899228976152,0.2352519275596198,11.189073081389344,5.616408736109952,24.024678677001788,12961.68864567836,62.734251299651056,12.99613968637516,21.13780051487078,14.279287498799548,14.321023599605564,0.5492200107584723,0.7932910244786945,0.6871002132196162,0.583203732503888,0.1135670731707317,0.7139722019019751,0.9243243243243244,0.8625277161862528,0.734982332155477,0.1406844106463878,0.4957244655581947,0.7271487039563438,0.631578947368421,0.5403788634097707,0.1067683508102955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026822405311848,0.00470068585438,0.006897111327491,0.0089866875171356,0.0110724743777452,0.013233168427696,0.0155644799608594,0.0179016125739946,0.0201831299691376,0.0225889285604673,0.0248186252408082,0.0268170528951743,0.0290096424679783,0.0309468394059854,0.0328783799118979,0.0349591815645344,0.0372513899386045,0.0390607173232103,0.0411881476246401,0.0432957256409455,0.058117195004803,0.072060100656043,0.0852164243301651,0.097827230086448,0.1099497975025312,0.1254984082664382,0.1383246173266434,0.1509861733493704,0.1625929407742928,0.17358154697436,0.1877961064691188,0.2004262546925881,0.2130917706386123,0.2243460215171208,0.235612735942341,0.2474554144355445,0.2582230792380485,0.2675852148211416,0.276824180309283,0.285661975054354,0.293868066313672,0.3013893920095353,0.308267032356453,0.3156432941063796,0.3219664332609249,0.3280218697665255,0.3335291911488936,0.3394266827687027,0.3452628855978788,0.3501667963238881,0.3511000470968176,0.3514479799785484,0.3524481631733153,0.3532169157539895,0.3539404397108261,0.3541366520552984,0.3539510744010886,0.3540795407954079,0.3557690666757684,0.356362404862485,0.3574235562708185,0.3579745036902553,0.3594738385488668,0.3609710384220626,0.361619269693983,0.3631384005425426,0.3634860921112631,0.3659976758064009,0.3678358470712031,0.3703689012296707,0.3706700609146286,0.3726935312831389,0.3728994231251568,0.3740178503318331,0.3725673652694611,0.3728095966129601,0.3693501750114137,0.3724939855653568,0.3709150326797386,0.3723564954682779,0.0,1.7888291816350268,60.81782244533046,214.98887296955317,314.0189205711424,fqhc6_100Compliance_baseline_low_initial_treat_cost,64 -100000,95688,41938,394.5635816403311,7198,74.06362344285594,5619,58.063707047905694,2309,23.64977844661817,77.3508434030137,79.74146005598554,63.31502979323547,65.0828100792465,77.07496880852652,79.47021852711848,63.21281505071455,64.98627514933267,0.2758745944871776,271.24152886706554,0.1022147425209141,96.5349299138296,85.3468,60.0413037518469,89192.79324471198,62746.95233660114,255.75725,158.63717099060034,266630.2566675027,165133.64370725726,280.65231,133.92152006777263,289950.5476130759,137314.15408588946,3741.27863,1672.8010982406297,3867570.614915141,1705881.028175559,1362.88835,589.0322978860523,1405132.5558063707,596405.1590465067,2277.0866,937.1685979318491,2334772.343449544,938931.1750952352,0.38118,100000,0,387940,4054.2178747596354,0,0.0,0,0.0,21581,224.866231920408,0,0.0,26127,269.66808795251234,2038873,0,73161,0,0,0,0,0,52,0.5434328233425298,0,0.0,0,0.0,0,0.0,0.07198,0.1888346712839078,0.3207835509863851,0.02309,0.3157755426151403,0.6842244573848597,25.364964734985165,4.6061196972899126,0.3237230823990034,0.199145755472504,0.2407901761879338,0.2363409859405588,11.350902158324608,5.702168892017204,24.22831277887404,12984.327176766865,62.99364639475904,13.002999046625083,20.55381505810138,15.112168355315292,14.324663934717265,0.5484961736963873,0.77390527256479,0.7064321055525014,0.5809312638580931,0.1091867469879518,0.7152466367713004,0.9373219373219374,0.872093023255814,0.6878980891719745,0.1522633744855967,0.4963793506190142,0.69921875,0.6551475881929446,0.548604427333975,0.0995391705069124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481842033287,0.00463437141901,0.0070551929265346,0.0092893731197658,0.0117398115933182,0.0138342739552983,0.0159646635179385,0.0182711358947647,0.0203720559208844,0.0227873251264824,0.0250743513485796,0.0273412625048787,0.0293657814075003,0.0315272154050629,0.033644319682959,0.0354381176859777,0.0373697188205797,0.0391011002698775,0.0408292764116007,0.042895861565725,0.0577630149578006,0.072240837696335,0.0856060128907644,0.0981945584243419,0.1111556558985504,0.1266043785116446,0.1399832266420374,0.1522845883480668,0.1640404515522107,0.1744743874561319,0.1888596623617429,0.2020594668341382,0.2145663506851104,0.2261139873687897,0.2365934767767084,0.2471523795792065,0.257831782798557,0.2681600108115413,0.2774735263373176,0.285946925388197,0.2941898716582495,0.3007754843848839,0.3085758312096248,0.3151672987374586,0.3216383514331927,0.327784149063421,0.3336337125621096,0.3398920735121926,0.3449606380774808,0.3499372730274018,0.3514938251631343,0.352778351580252,0.3534244644870349,0.3528246790794495,0.3535062582589716,0.3535327251576562,0.3524830217353448,0.352579045867945,0.3530206391819565,0.3546439987856492,0.3555663897691687,0.3567193675889328,0.358593259367804,0.3600563216592539,0.3611785929043896,0.3621544079290558,0.3630113636363636,0.3660380910545637,0.367601683029453,0.3691797322380633,0.3708002720471548,0.3723980458793542,0.3735834802316797,0.3787867226249523,0.3796655012756307,0.3826408787010506,0.3851931330472103,0.384984984984985,0.3807838867719107,0.3792307692307692,0.0,2.5640878117931254,58.5293788045775,216.6676807124545,321.8643935490712,fqhc6_100Compliance_baseline_low_initial_treat_cost,65 -100000,95729,42053,394.1021007218293,7120,73.25888706661513,5552,57.48519257487282,2197,22.60548005306647,77.26691653433518,79.62764370888799,63.2951211478972,65.0393861016596,76.99876719161686,79.35878527575494,63.19667439995088,64.9430238686702,0.268149342718317,268.85843313304747,0.0984467479463191,96.3622329894065,85.06036,59.88042894073629,88855.37297997472,62552.02596991121,258.60235,161.11679430871044,269629.0570255617,167794.1316724404,279.77414,133.77777233295643,289267.13952929626,137324.8876138689,3660.54371,1646.65878955459,3790434.3615832194,1686698.8995545676,1366.85063,592.9917241906008,1410916.796373095,602531.7659127336,2160.86536,899.3220111078128,2224907.8544641645,910814.450835148,0.38178,100000,0,386638,4038.880589998851,0,0.0,0,0.0,21882,228.03957003624816,0,0.0,26011,268.7273449007093,2034862,0,73068,0,0,0,0,0,48,0.5014154540421398,0,0.0,0,0.0,0,0.0,0.0712,0.1864948399601864,0.3085674157303371,0.02197,0.3280118057418835,0.6719881942581164,25.55272079829659,4.562712713820477,0.3337536023054755,0.2067723342939481,0.232528818443804,0.2269452449567723,11.14488753716619,5.614663471967554,23.473113166032377,13025.359647341527,62.731722553296194,13.411116156103496,21.057691745462183,14.343915116648288,13.918999535082234,0.5565561959654178,0.7674216027874564,0.7037236913113869,0.5879163439194423,0.1158730158730158,0.7113553113553114,0.9322493224932248,0.8539823008849557,0.7236363636363636,0.1561338289962825,0.5060902794363507,0.6893453145057766,0.6552462526766595,0.5511811023622047,0.1049445005045408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0046436646422451,0.0071640215935381,0.0090815818612163,0.0114008502328987,0.0138779998574526,0.0159743106172587,0.0182317452863894,0.0208233237582163,0.0229589747789059,0.024940288868615,0.0270317440762186,0.0292865516319437,0.0314041755502683,0.0337150520994532,0.036074588604978,0.0381281777796187,0.040419130615209,0.0425341718205914,0.0443742902093166,0.0595482975013313,0.0733708735425258,0.0866239231035604,0.09950023672997,0.1114827084168548,0.1264536883207585,0.1400121020392997,0.1528015933030151,0.1651500732455812,0.1763468329701705,0.1899295000323394,0.2027022634435981,0.214651304612972,0.2261671393996473,0.2371544115216361,0.2488401003396452,0.2590969069398162,0.2683141205503532,0.2777790401745137,0.2861729329343102,0.2942695068302848,0.302009414740392,0.3092242441474742,0.3157073779441585,0.3223224927634939,0.3292318704645308,0.334633375553354,0.339911777454805,0.3449623474422228,0.349586711174694,0.3499939129140909,0.3510217625750076,0.3513758351262597,0.3522021702547438,0.3534502051473331,0.3533266671794477,0.3537572990087668,0.3548120884018023,0.3562888652214244,0.3573107916509628,0.3584543246144285,0.3594523161304425,0.3612459376187059,0.3617868797119388,0.3632705500206045,0.3639517464322321,0.3656458669122726,0.368647032631512,0.3705422482418877,0.3730171576561994,0.3739935215178158,0.374972972972973,0.3742884553885513,0.3755969804344476,0.3795037551098013,0.3802295003585943,0.3827559661277906,0.3904374364191251,0.3904603438713255,0.3856920684292379,0.0,2.028447041096918,60.59349848631243,212.56969895022732,317.2471852893885,fqhc6_100Compliance_baseline_low_initial_treat_cost,66 -100000,95695,41587,390.6578191128064,7135,73.37896441820368,5565,57.495166936621565,2305,23.72119755473118,77.288290147924,79.65668834562749,63.294707477804174,65.04346363756592,77.00201582593762,79.36978277776774,63.19014889313914,64.94112096519096,0.286274321986383,286.90556785974763,0.1045585846650354,102.34267237495942,85.89152,60.43652869600515,89755.49401745129,63155.36725639286,257.98907,160.91301650409395,268870.1708553216,167427.2267208965,277.69301,133.19737807420253,285547.79246564605,135645.27415755016,3674.92829,1659.5664399480934,3802237.368723549,1696228.677365353,1318.4218,576.4076369392955,1363021.5789748682,587654.3335205569,2269.22724,944.4373889299408,2337839.908041172,957946.5087576124,0.37806,100000,0,390416,4079.795182611422,0,0.0,0,0.0,21884,228.00564292805268,0,0.0,25901,266.0222582162078,2029409,0,72900,0,0,0,0,0,52,0.5329432049741366,0,0.0,0,0.0,0,0.0,0.07135,0.1887266571443686,0.3230553608969866,0.02305,0.3125585127725023,0.6874414872274976,25.205520986473715,4.489022851753495,0.3232704402515723,0.2098831985624438,0.2323450134770889,0.2345013477088948,10.97454108763191,5.5003164435766045,24.627456382066768,12845.792828467054,62.911193687786806,13.717902909880197,20.306324086080338,14.522804724736169,14.364161967090103,0.5487870619946091,0.7517123287671232,0.708171206225681,0.588553750966744,0.1080459770114942,0.6955287437899219,0.8842105263157894,0.8623853211009175,0.7443365695792881,0.1338028169014084,0.4990375360923965,0.6878172588832487,0.6588407923697726,0.5396341463414634,0.1008814887365328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166914795572,0.0044302065064222,0.0066160652676868,0.0090513825961518,0.0112582377349279,0.0132879878626195,0.0155482147590791,0.0178022763231766,0.0200145151233274,0.0220436985109757,0.0242995060159468,0.0264108722875736,0.0283975242129505,0.0305349014438425,0.032284016833072,0.0343106352634788,0.0365488750608285,0.0386974253603561,0.0408029538717562,0.04302195912497,0.0575659784232018,0.071977469743289,0.0845349789056104,0.0973774494327629,0.1094162356170167,0.1247591216144675,0.1379588629437312,0.1503942041338163,0.1618460025021118,0.1732346877416029,0.1862228117282952,0.1994691511835762,0.2110255600448689,0.222049485439019,0.2324866722474335,0.2440832177531206,0.2546349099854635,0.2639781672192525,0.2733406916013336,0.2824126721573222,0.2903783457669594,0.2981898382233902,0.3054632223752315,0.3119274877984276,0.3189656222961528,0.3254853468529739,0.3310917820960808,0.3368882190661081,0.3422797846609971,0.3476469341247549,0.3485560688332388,0.349797593224554,0.3501054747780782,0.3505198048553839,0.3508837459473188,0.350715494691491,0.3506208563206512,0.3515264407226691,0.3523865139206155,0.3539201781001454,0.3551798235693282,0.3554844988182956,0.356027232679215,0.3561828258576974,0.3581791016001542,0.3597191773671573,0.3594625500285878,0.3614499715567916,0.3638836872416351,0.3652146085843433,0.3693079791887287,0.3683729924262771,0.3712347009956243,0.3704528012279355,0.3721673718852844,0.3764831514000949,0.3772775991425509,0.3779495524816924,0.3791780821917808,0.3853491033956505,0.0,2.5141456572661984,62.02530268825605,209.62875412147915,315.2437164271399,fqhc6_100Compliance_baseline_low_initial_treat_cost,67 -100000,95822,41959,393.9700695038717,7080,72.55118866231136,5477,56.51103086973764,2314,23.741938177036587,77.36488025655099,79.6821212631181,63.35773544642036,65.07227868473133,77.07808331252453,79.39437221581635,63.25231532375249,64.9692229391319,0.286796944026463,287.7490473017588,0.1054201226678657,103.05574559943408,85.88008,60.42956499399656,89624.59560434974,63064.39543528268,254.87844,159.28169378612037,265311.7133852351,165546.7886144313,279.7298,134.6037568875856,288040.0116883388,137453.6859020359,3645.42978,1653.2745863779342,3761814.416313581,1682797.913191057,1375.57801,601.4278709772315,1419099.2673916218,611194.8831972105,2287.14052,954.9771992492598,2348109.5990482355,962919.1716360726,0.38062,100000,0,390364,4073.845254743169,0,0.0,0,0.0,21527,223.95692012272755,0,0.0,25985,267.3707499321659,2038563,0,73175,0,0,0,0,0,48,0.4904927887124042,0,0.0,1,0.0104360167811149,0,0.0,0.0708,0.1860122957280227,0.3268361581920904,0.02314,0.3204628010224674,0.6795371989775326,25.331723362359764,4.532290941214556,0.3335767756070841,0.1959101698009859,0.2200109549023187,0.2505020996896111,11.101200474543653,5.621330340478852,24.709829207674343,12937.126680872036,62.13904989488872,12.498306406565687,20.77318410128057,13.573437969403413,15.294121417639046,0.534964396567464,0.7595526561043803,0.6912972085385879,0.5825726141078839,0.1093294460641399,0.6942628903413217,0.9410029498525072,0.865296803652968,0.7703180212014135,0.1261829652996845,0.4814634146341463,0.6757493188010899,0.6364290856731462,0.5249457700650759,0.1042654028436018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026435733819507,0.0048866539600145,0.0068999107070379,0.00920245398773,0.0113075929673279,0.0136541359508003,0.0159636282085261,0.0180492884415133,0.0201893195943735,0.0223757612979169,0.0246279670397245,0.0267233151688679,0.028869772556758,0.0309280472617614,0.0330265016028779,0.0351402409439552,0.0371013953103505,0.039268507485883,0.0411288899041606,0.0430114239340782,0.0573148090201723,0.0703355283788021,0.0837872946697955,0.0972748752953531,0.1100801482901347,0.1255966209081309,0.138681414147835,0.1510657524052517,0.1627691125952162,0.174311238699173,0.1876728098204391,0.2005145834684655,0.2131480596236582,0.2240193080552158,0.2348842831710587,0.2464059804485336,0.2571463583093821,0.2664802461649035,0.2761237132082309,0.2845593532378132,0.2931303353394402,0.3002032187989068,0.30729031190144,0.3146946884649448,0.3212676278742089,0.3275921545436625,0.3337252939704778,0.3390095635364737,0.3445133396331439,0.3495167394084837,0.3508946723573842,0.3514194454387752,0.3519425353861786,0.3515396425364271,0.3531700481507431,0.353158080722725,0.3527485454487648,0.3533942472621718,0.3537417303892087,0.3548190065570825,0.3554153125236188,0.3551133531393934,0.3561319758354104,0.356991477657032,0.3599458728010825,0.362272858379002,0.3627049766763014,0.3665095384226011,0.3670594896839721,0.3677598041183318,0.3714022140221402,0.3745148771021992,0.376555883485179,0.3812776527206396,0.3839961667465261,0.3893294881038212,0.3957750854302578,0.3943400123941334,0.3943032672437866,0.3913214990138067,0.0,2.48098568319787,60.540084988094286,210.77324869456407,309.37640690591235,fqhc6_100Compliance_baseline_low_initial_treat_cost,68 -100000,95633,42228,396.4531071910324,7102,72.9664446373114,5516,57.05143621971496,2276,23.381050474208696,77.2563444549925,79.66670971056845,63.27473565930678,65.05568945121541,76.96766927075063,79.37729975657331,63.16857180863729,64.95195222493294,0.2886751842418675,289.4099539951469,0.106163850669489,103.73722628247606,85.28916,60.00995396154717,89183.5872554453,62750.05405783463,254.81224,159.0923324828435,265792.6343417021,165702.8521665286,280.35017,134.62490684737486,289334.71709556325,137841.67823545294,3649.58913,1653.24605420059,3777473.016636517,1690086.0875417772,1350.2956,596.4817578586682,1396592.7138121778,608407.3554788108,2230.12214,933.9622083511118,2293019.961728692,944316.5288693,0.38374,100000,0,387678,4053.7994207020593,0,0.0,0,0.0,21537,224.5145504166972,0,0.0,26091,268.9866468687587,2031918,0,73053,0,0,0,0,0,59,0.6064852090805475,0,0.0,0,0.0,0,0.0,0.07102,0.185073226663887,0.3204731061672768,0.02276,0.3210470085470085,0.6789529914529915,25.268425774570144,4.526156057031105,0.3219724437998549,0.2055837563451776,0.2414793328498912,0.2309644670050761,11.16024386111671,5.719054183794545,24.355501716622765,13061.272577303302,62.68969474987716,13.410005743719262,20.364262191102245,14.727335458072474,14.188091356983186,0.5540246555474981,0.7663139329805997,0.7207207207207207,0.5780780780780781,0.1075353218210361,0.6999282124910265,0.902439024390244,0.8593073593073594,0.737410071942446,0.1408450704225352,0.5047295658501092,0.7006535947712418,0.6719939117199392,0.5360531309297912,0.0979797979797979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661366283486,0.0043481345590545,0.0065659282111651,0.0089705688133044,0.0116186794180486,0.0139258172631235,0.0161579892280071,0.0183599656708488,0.0205797516519035,0.0229372835863708,0.0253858151370875,0.0275414148888066,0.0297315104595618,0.0319407786209171,0.0338722173441454,0.0359164329839302,0.0378275833471554,0.039911077869193,0.0421965077316905,0.0442265567956607,0.0589858283516575,0.0723063223508459,0.085372639181968,0.0985137155007263,0.1108250142462168,0.1262857142857142,0.1388832875200322,0.1514386727152684,0.1632925734319552,0.1751556127924447,0.189088948787062,0.201798580638171,0.2143534102421647,0.22604616497512,0.2366275798925573,0.2478655253194772,0.258667949564225,0.2690078917700113,0.2780380207385847,0.2865488350740273,0.2948805698309764,0.3024974485905662,0.3101029165628005,0.3175516578567996,0.3238082472216806,0.3304236009792527,0.3369072579126439,0.3420683141019095,0.3471623096512655,0.3524086818422445,0.3538752618420163,0.3545930706615625,0.3559259626414399,0.356656976744186,0.3576417450607959,0.3568562698682139,0.3562960130031551,0.3575028504387197,0.3588439186742313,0.3603071044948275,0.3618265427776621,0.3621484601105766,0.3640458467264422,0.3644422445214417,0.3657061285717742,0.3666430613476014,0.3673727473917167,0.3690721649484536,0.3703860540616839,0.3717994807269822,0.3730624598734293,0.3750937332619175,0.3781255964878793,0.3784259684581228,0.378572762936671,0.3806528189910979,0.3843232568737658,0.3785642062689585,0.3885088919288645,0.392226148409894,0.0,2.355971639438494,61.4403211188136,212.68261288996865,311.1394411246264,fqhc6_100Compliance_baseline_low_initial_treat_cost,69 -100000,95698,41830,392.3906455725303,7178,73.90959058705512,5600,57.99494242303915,2242,23.093481577462438,77.32722884548278,79.704702438974,63.32110870231941,65.07621680597998,77.05019027653,79.42789050713203,63.219156454826994,64.977405718258,0.2770385689527757,276.8119318419622,0.1019522474924201,98.81108772198388,85.10964,59.9194263819161,88935.65173775837,62613.03933406769,257.69962,160.2790278551055,268777.4248155656,166977.39540544787,277.25187,132.0009660802249,286915.5781730026,135755.86605743985,3709.04883,1657.9421297872536,3843559.510125604,1700622.38062511,1368.41918,589.9441269318282,1420018.0254550774,606587.4269683083,2216.482,918.6350645538008,2285724.424752868,932152.7175443304,0.38031,100000,0,386862,4042.529624443562,0,0.0,0,0.0,21854,227.8313026395536,0,0.0,25871,267.57090012330457,2037484,0,73141,0,0,0,0,0,41,0.4179815670128947,0,0.0,0,0.0,0,0.0,0.07178,0.1887407641134863,0.3123432711061577,0.02242,0.3123099299219886,0.6876900700780114,25.139800630107658,4.553749129619916,0.3251785714285714,0.2071428571428571,0.2326785714285714,0.235,11.248948376256273,5.61881117439277,23.802218675619716,12965.980241455658,62.82742910527966,13.464501587315327,20.41389413062275,14.48577370388635,14.463259683455224,0.5483928571428571,0.7681034482758621,0.6891817682591982,0.5970836531082118,0.1117021276595744,0.6996282527881041,0.9023668639053254,0.8767123287671232,0.7227722772277227,0.1240601503759398,0.500587544065805,0.7128953771289538,0.6297903109182935,0.559,0.1085714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020653208334177,0.0043680514031478,0.0068986507050826,0.0092121433722335,0.0115007982428488,0.0137049066824147,0.0162951481655211,0.0183530276878453,0.0205244104473032,0.0226930599789044,0.0250435852733053,0.0272688057187461,0.0295615144876107,0.0316644169440179,0.0336653078074204,0.0356271200463307,0.0374948197264815,0.039433519529871,0.0417446843922939,0.0438018596505858,0.0579946309005254,0.0721440159087341,0.0848106577153047,0.0970226196738558,0.1093731872211616,0.1248585120225111,0.1388821088601415,0.151290569895221,0.1630038782465624,0.1740039904743515,0.1872576475657044,0.2007057117189275,0.2129013312451057,0.2244947064485082,0.2342523801661989,0.2448307958247457,0.2553526378067022,0.2655159998199738,0.2753794285584552,0.2847827830810309,0.2934411229890782,0.3011615109008734,0.3089761205344452,0.3160703791213404,0.322602223249252,0.3282162028753008,0.3344906246866539,0.3394680159569722,0.345103126216111,0.3506807666886979,0.3517975996003834,0.3525390086563378,0.3535988029868865,0.3544214044886914,0.3558041833025445,0.3554315064280002,0.3545851528384279,0.3553587274460183,0.3563145652322638,0.3576415549167009,0.3577577314754037,0.3591317780330336,0.3603864734299516,0.3617212213671953,0.3625797409626909,0.3632096499278878,0.3636520142316079,0.3653249794316815,0.3672979931576905,0.3700355957285126,0.3707011647714193,0.3691026329930145,0.3681430571464936,0.3703474903474903,0.3717568214456678,0.3708188466610718,0.3681361175560712,0.3693693693693693,0.3683184855233853,0.378001549186677,0.0,2.040700224737464,59.49225290617061,209.08350539634927,328.38681470038915,fqhc6_100Compliance_baseline_low_initial_treat_cost,70 -100000,95779,41830,393.4682968082774,7079,72.60464193612378,5518,57.037555205212,2284,23.481138871777738,77.38146625236273,79.70379944088825,63.35451413110488,65.06746137973026,77.10840084377772,79.42956153785775,63.25586176698562,64.97047518528439,0.2730654085850119,274.237903030496,0.0986523641192604,96.98619444587564,85.19412,59.96668496065658,88948.64218670064,62609.42895692853,256.03957,159.29679056999558,266752.8790235855,165746.62563818332,281.58015,135.00991039856302,289824.36651040416,137781.21807656027,3666.88176,1636.2023784284129,3795353.574374341,1675181.7396594395,1364.43738,587.6325835184111,1411814.6253354074,600775.8835636318,2255.90954,921.529138217916,2322626.9641570696,935784.6044718768,0.37903,100000,0,387246,4043.120099395484,0,0.0,0,0.0,21643,225.3938754841876,0,0.0,26117,268.4930934756053,2038556,0,73216,0,0,0,0,0,55,0.5742386118042577,0,0.0,0,0.0,0,0.0,0.07079,0.1867662190327942,0.3226444413052691,0.02284,0.3124915960736856,0.6875084039263144,25.13170432577465,4.601901072870667,0.3258426966292135,0.2035157665820949,0.2296121783254802,0.2410293584632113,11.224182201453551,5.757618740502551,24.059639512965177,12870.312744583096,61.74914549584668,13.06293141835834,20.05032680798813,14.193237220772458,14.442650048727751,0.5415005436752447,0.7791629563668745,0.6874304783092324,0.579321231254933,0.1075187969924812,0.723752792256143,0.9376770538243626,0.880184331797235,0.7260726072607261,0.1541501976284585,0.4828742514970059,0.7064935064935065,0.626099706744868,0.533195020746888,0.096564531104921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022578620172934,0.0044894401880903,0.0067862975624106,0.0088349987813794,0.0110527011500096,0.0130097522242807,0.0150338388780169,0.0172552781150828,0.0194217409072333,0.021505156326731,0.0234397410154489,0.0255981450322157,0.0279113741932831,0.0299558383002377,0.0320216089157396,0.0340693159286186,0.0361762453693164,0.0383060335890524,0.0402227208509931,0.0421772673795121,0.0565614401252282,0.0701879211484535,0.0833543082473361,0.0959614010007147,0.108884484830596,0.1242874517476601,0.1372083156554942,0.1498259694089346,0.1613337320574162,0.1724518674156339,0.1859271059826484,0.1996474837258591,0.211692561947528,0.2228067680932745,0.2337899543378995,0.2444574936016043,0.2552099030014845,0.265277418338528,0.274462383904444,0.2838621669952771,0.2916077922679576,0.3001112607600866,0.3074189459718783,0.3143836766010502,0.3209890043132252,0.3268633540372671,0.3327952952952953,0.3383409868596796,0.3437904939615404,0.3490348203565161,0.3495677699081679,0.3505537593726353,0.3517631141302816,0.3517113569236115,0.3526117457811406,0.3516682525553271,0.3516314596770359,0.3530368496278894,0.3541246108050775,0.3552201482539966,0.357149554617909,0.3580141956147808,0.3585784416565267,0.3590640913475559,0.3607173850159098,0.3599142998981005,0.3608518169621192,0.3649874055415617,0.3652850653238018,0.3659676452965847,0.3690263459335624,0.3694460703453413,0.3724861739567622,0.3735452955046778,0.3744789693065555,0.3779761904761904,0.3803053435114504,0.3782688019460774,0.38215859030837,0.3835457705677867,0.0,2.2781826297690086,59.08249948411996,202.6974229483569,322.66175609389904,fqhc6_100Compliance_baseline_low_initial_treat_cost,71 -100000,95749,42065,395.1059541091813,7094,72.73183009744227,5511,56.888322593447455,2242,23.028961137975333,77.31912755708531,79.67039255563361,63.32066847763053,65.05904378947774,77.0417078721222,79.39334266800527,63.21820344275896,64.95971199395831,0.2774196849631067,277.04988762833693,0.1024650348715709,99.33179551943284,85.6878,60.339320635069946,89492.10957816792,63018.22539668294,256.84727,160.26144909239312,267589.6354008919,166716.4186648151,281.22906,134.67616997948383,289750.23237840604,137558.02727966258,3598.62205,1612.4410925149748,3717372.003885158,1643127.9588785714,1324.95398,577.6821874441832,1369013.55627735,588596.6884300092,2203.09198,917.7218575444008,2264114.6330509977,926034.65418388,0.38009,100000,0,389490,4067.823162643997,0,0.0,0,0.0,21649,225.4018318729177,0,0.0,26088,268.47277778358,2035059,0,73046,0,0,0,0,0,60,0.626638398312254,0,0.0,0,0.0,0,0.0,0.07094,0.1866400063142939,0.3160417254017479,0.02242,0.3210257787325457,0.6789742212674543,25.169455092275506,4.47580652082714,0.3331518780620577,0.210669569951007,0.2240972600254037,0.2320812919615315,11.09796579670946,5.653870557761553,23.90731313771608,12977.11960177599,62.03530568601459,13.551308057329535,20.658390779656383,13.69789584498873,14.12771100403992,0.5420068953003084,0.7665805340223945,0.6797385620915033,0.5797570850202429,0.1039874902267396,0.7208427389014297,0.925,0.8574712643678161,0.7526132404181185,0.145748987854251,0.4851745576279292,0.6953807740324595,0.6245538900785154,0.5274261603375527,0.0939922480620155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002156983868191,0.0043068940706735,0.0066657197354003,0.0087651587478925,0.0111358574610244,0.0135040175979957,0.0157838388988019,0.0181350324715108,0.0202552095049181,0.022440162977826,0.0243814913926568,0.0267275901016531,0.0290944618707255,0.0311312105322798,0.0330994634750309,0.0352935097147581,0.0370619597287644,0.039303756107175,0.0411709081084451,0.0431635193267157,0.0572896006012902,0.0717214829692861,0.0852449730954403,0.0981091199730775,0.1096889826041117,0.1255696898560839,0.139317571939203,0.1518088955096829,0.1636573307849188,0.1748960164658462,0.1889758692351592,0.2022076727449813,0.214674947519551,0.2260142154182613,0.2365328756271455,0.2478290727039121,0.2581916425708639,0.2686278261065283,0.2774971336458889,0.2864555889023804,0.2941380827755518,0.3018605032374395,0.3089976181729846,0.3156858271593079,0.3228444184857998,0.3292039770271104,0.3350802407221665,0.3394997195165485,0.3451109178468048,0.3499914065495313,0.35036299354978,0.3509850688652062,0.3519122903686121,0.3529497070595742,0.3533137602646835,0.3523029399560466,0.3525569716810222,0.3539037010183568,0.3550863723608445,0.3558494696983292,0.3573245886809521,0.3587217731524696,0.3594547833059037,0.3599549295774648,0.3598178382830289,0.3611927761444771,0.3633675871175154,0.3662185671358532,0.3673823082092455,0.3697003506534906,0.37184,0.3741253138187063,0.3728050713153724,0.3718697188508219,0.3711898205298642,0.3715166607375785,0.3740036787247087,0.3761672756800649,0.3778763515386748,0.3727901614142967,0.0,2.611813178079707,58.07567963309561,209.68081259221017,319.80599679632394,fqhc6_100Compliance_baseline_low_initial_treat_cost,72 -100000,95684,42242,397.97667321600267,7174,73.7636386438694,5560,57.554032022072654,2308,23.74482672129092,77.34181859432726,79.72499055885578,63.3271521787835,65.08586874203756,77.05425037809002,79.4358478852026,63.22214110927777,64.98269274974174,0.287568216237247,289.14267365317414,0.1050110695057284,103.17599229581732,85.6823,60.32248755871213,89547.1552192634,63043.44253868163,257.59983,160.49367258382009,268543.0793027047,167056.7729022826,281.82864,134.9637310259577,291189.0180176414,138361.85139101077,3694.51151,1667.2780078091646,3828759.270097404,1710083.731667954,1360.1623,594.3295098101305,1409004.953806279,608627.8895218951,2278.73162,949.003747045812,2348044.3752351487,964669.0763471642,0.38313,100000,0,389465,4070.325237239246,0,0.0,0,0.0,21787,227.1330629990385,0,0.0,26256,271.00664687931106,2035144,0,73091,0,0,0,0,0,44,0.4389448601647088,0,0.0,0,0.0,0,0.0,0.07174,0.1872471484874585,0.321717312517424,0.02308,0.3191686523696055,0.6808313476303945,25.303076123078444,4.4901035883013245,0.3267985611510791,0.2012589928057554,0.2336330935251798,0.2383093525179856,11.219602824044872,5.745089538606135,24.628625203349973,12959.972134476602,62.72669253360159,13.13146655841433,20.37771965147179,14.531034128224244,14.686472195491229,0.5453237410071943,0.7658623771224308,0.6995046780407265,0.5812163202463433,0.1124528301886792,0.7249283667621776,0.9244791666666666,0.8785714285714286,0.7859424920127795,0.1505376344086021,0.4851104707012488,0.6829931972789116,0.6456692913385826,0.5162271805273834,0.1022944550669216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771931423479,0.004409215767761,0.0065136004382983,0.0086023034267026,0.0110220848415829,0.0133277673698786,0.0154623938680447,0.017516817573982,0.0197160641461993,0.0221109848601173,0.0242289393815109,0.0261479526337951,0.0281375706011255,0.0303882774823791,0.0325856961489631,0.0346514682913205,0.036621761658031,0.0388097512355164,0.0407698309492847,0.0425653909906904,0.0573604379074043,0.0713365792366891,0.0844581120510506,0.0967643499763245,0.1096014683854089,0.1246615332543577,0.1381765323770013,0.1508190788423259,0.1629449976494722,0.1743503951785005,0.1885674901462448,0.2017673845088856,0.2143105735975463,0.2259432982364067,0.2371365391597082,0.2483718045279341,0.2591840151811129,0.2683878951513106,0.2778925385331305,0.2863606166815568,0.2940366707154838,0.3017241379310345,0.308828922618273,0.3154974474510462,0.3219123990037057,0.3277688049414984,0.3340971126637117,0.3391494835513328,0.3450485033978316,0.3499815020347762,0.3516735442457588,0.3515759588748466,0.3515979155780881,0.3523115694339841,0.3526327548968496,0.352541539218248,0.3522043531410246,0.3531087400382006,0.3548121602853175,0.3556797020484171,0.3571455392009612,0.3582631109348667,0.3607898389199647,0.3618570369205186,0.3629201807592856,0.3640111332843189,0.3643722372122395,0.3666318157336121,0.3690142841952291,0.3711484593837535,0.3726670957065367,0.3725910064239828,0.3739888776541961,0.3759681006057818,0.3786920826649051,0.3801752070082803,0.3827217835578262,0.379443428803575,0.3796270526022822,0.3744697261858851,0.0,2.20603215357788,61.60958389689968,207.11737059466932,319.4761251312095,fqhc6_100Compliance_baseline_low_initial_treat_cost,73 -100000,95671,42186,397.5708417388759,7124,73.20922745659604,5609,57.95904715117433,2273,23.382216136551303,77.38307130315455,79.75852989152528,63.34642469116329,65.09700470842888,77.1094630481716,79.48421508399575,63.24680103528621,64.99958582999847,0.2736082549829461,274.3148075295352,0.0996236558770888,97.41887843041752,85.91682,60.46425814818425,89804.45485047715,63200.19457117021,254.29988,158.04365914183066,265175.10008257465,164563.39867026647,280.63547,134.80403479033586,288562.52155825694,137389.2000611569,3731.61654,1676.9682750984805,3860125.137188908,1712506.4597406553,1372.55477,600.7192449057416,1417075.080222847,610314.9072401682,2246.02672,927.4353622399482,2312573.4025984886,940016.1994059996,0.38332,100000,0,390531,4082.020675021689,0,0.0,0,0.0,21530,224.37311201931615,0,0.0,26123,268.2213000804841,2036245,0,73182,0,0,0,0,0,48,0.5017194343113378,0,0.0,1,0.0104524882148195,0,0.0,0.07124,0.1858499426066993,0.3190623245367771,0.02273,0.3173564753004005,0.6826435246995994,25.14804643099769,4.523193879104987,0.324300231770369,0.2034230700659654,0.2321269388482795,0.2401497593153859,11.147280074607252,5.619318263746435,24.091384224121867,13018.365596773723,63.25322802476689,13.50935609910952,20.436511005235385,14.511607404570876,14.795753515851109,0.5384203957924764,0.7633654688869412,0.679494227597581,0.5829493087557603,0.1143281365998515,0.7302725968436155,0.9492957746478872,0.8758029978586723,0.7361563517915309,0.1735849056603773,0.4749703440094899,0.6793893129770993,0.6116863905325444,0.535678391959799,0.099815157116451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021258718605428,0.0044982067959394,0.0068863398951329,0.0090783541167391,0.0112246454171114,0.0135081486608915,0.0157087810149034,0.0177709275383029,0.0200443613095785,0.0221118902595076,0.0242267037124373,0.0263595662531832,0.0282825789598181,0.0304166452078075,0.0326820310726886,0.0346741354720023,0.0367442920482327,0.0386723128658612,0.0406618205264197,0.0425312392525507,0.0573413423870462,0.0714607259136734,0.08546040138902,0.0983039441447693,0.1104585569532164,0.1255484484854892,0.1392301739582118,0.1511677372697494,0.1631668800682885,0.1742987550088928,0.1883788232509601,0.2019721477380849,0.214524823928354,0.2261773352714237,0.2366968037132361,0.2476816202621403,0.2585101630556176,0.2682937817473279,0.2776907179032954,0.2871254225634561,0.2947651068853369,0.3022814800941154,0.3095094241271872,0.3162934696522428,0.323177035820714,0.3295245616416382,0.3354797489445398,0.341562527865887,0.3473969546834064,0.3529567263210764,0.3535015968413534,0.3538539916834191,0.3545035455993684,0.3550777067114288,0.3560698456138263,0.356162490788504,0.3558415590186308,0.3563589093841015,0.3580454350621517,0.3593822781181697,0.3600239803660753,0.361392005056091,0.3628745024093861,0.3637399973177165,0.3634770501248319,0.3650934068793256,0.3665284326535249,0.3710461142982538,0.3724505914978762,0.3732140736929591,0.3761396790663749,0.3768868174355171,0.3786499215070644,0.3787085514834206,0.3800841514726508,0.3836277974087161,0.3850453172205438,0.3868800632286109,0.3877221324717286,0.3803658081373647,0.0,2.6377581708818485,61.17380382896398,216.6967417912173,313.3798550697316,fqhc6_100Compliance_baseline_low_initial_treat_cost,74 -100000,95701,42026,395.4399640547121,7138,73.51020365513422,5594,57.95132757233467,2306,23.740608771068224,77.3960056150407,79.78029805936325,63.35197710932333,65.11307689056478,77.11701558421544,79.50097208751208,63.24956305734342,65.01318006040107,0.2789900308252697,279.3259718511649,0.1024140519799061,99.89683016371488,84.86038,59.80047416566209,88672.40676690944,62486.78087549983,257.80807,160.16815012827968,268877.98455606523,166851.96615320598,276.77662,132.22703191484408,286450.5386568583,135938.41426313706,3732.09955,1652.9948756571346,3867190.447330749,1694824.9240466866,1373.85188,591.2050935902762,1422630.066561478,604917.4227914449,2279.72982,944.4101121114056,2348992.2780326223,956891.7553575828,0.38165,100000,0,385729,4030.563943950429,0,0.0,0,0.0,21756,226.78968871798625,0,0.0,25697,265.7130019540026,2044429,0,73167,0,0,0,0,0,52,0.5433590035631812,0,0.0,0,0.0,0,0.0,0.07138,0.1870300013101009,0.3230596805827963,0.02306,0.325,0.675,25.50827641187317,4.633553004723839,0.3337504469074008,0.1978905970682874,0.221308544869503,0.2470504111548087,10.918936202312397,5.210510828596053,24.459908947808383,12940.613150991618,62.28814996796344,12.847678702173717,20.67953986672474,13.663129421956496,15.09780197710848,0.531283518055059,0.7660343270099368,0.6802356722013926,0.5646203554119548,0.1121562952243125,0.694296577946768,0.9193083573487032,0.8537170263788969,0.7095588235294118,0.1612903225806451,0.4811871932694554,0.6960526315789474,0.6303448275862069,0.5238095238095238,0.099728014505893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044918983593924,0.00692231176793,0.0091643383286766,0.0111692063556649,0.0136337718405082,0.0158650855960112,0.0180093722243208,0.0202212271770021,0.0226104935617924,0.0244822636866926,0.0265305912913128,0.0284776929880494,0.0304378727480609,0.0324910492266738,0.0346289022121149,0.0365747550288993,0.0385713247734609,0.0407991347213844,0.0429295034810522,0.0571971714766187,0.0717492543561299,0.084986103099271,0.0980276714748307,0.110274896702926,0.1259385376789831,0.1389560789306174,0.1509596653147255,0.1627551728926538,0.1739773921623302,0.1872449034536976,0.199848566792861,0.2116341744365477,0.2228926197971318,0.2336305760497872,0.2455165389895053,0.2565278010150019,0.2666074879769877,0.2756506860956568,0.2844173069886571,0.2924192728784589,0.3004379050621825,0.3082494446807505,0.3146769444377947,0.3214853274780731,0.3280971301342059,0.3344736316420296,0.3401312199393393,0.3453615570393522,0.3506878167577174,0.3512141398947029,0.351670075918782,0.3525323579065841,0.352991292544512,0.3540190968355088,0.3549888252763065,0.3552846172116222,0.3562325505009032,0.3566592579928193,0.3576750585166258,0.3577711509968304,0.3589621989052898,0.3595644435137682,0.3599107142857143,0.360915281153004,0.3617365441310757,0.3611680911680912,0.3635159010600706,0.3658020862700874,0.3672564604385509,0.3688784659953097,0.3710816304696694,0.3722081218274111,0.374770079705702,0.3747268408551069,0.3733493397358943,0.3774313059586292,0.3828653412584546,0.3770172509738453,0.3755356447214647,0.0,1.9490754674763888,58.20965996265576,206.71800214258573,330.173005218878,fqhc6_100Compliance_baseline_low_initial_treat_cost,75 -100000,95827,41782,392.2798376240517,7150,73.42398280234173,5585,57.74990347188162,2288,23.52155446794745,77.38566316619061,79.70663813018116,63.36611244363343,65.08427838381343,77.10784883447052,79.42779413575924,63.26393849459749,64.98428508386736,0.2778143317200943,278.8439944219192,0.1021739490359365,99.99329994606398,85.88294,60.37600571422924,89622.90377451033,63005.21326372446,257.16408,160.19827079074753,267850.87710144324,166662.47591049233,276.57071,132.6742269326816,285050.413766475,135767.86560348538,3691.15343,1660.1497409861065,3819164.671752221,1699962.5296935935,1357.11096,589.7301547635694,1402545.629102445,601852.8067988568,2243.17208,932.6640885014036,2307919.8138311747,945397.1575100408,0.3789,100000,0,390377,4073.7683533868326,0,0.0,0,0.0,21776,226.71063478977743,0,0.0,25728,264.98794702954285,2040163,0,73211,0,0,0,0,0,54,0.5635155018940382,0,0.0,0,0.0,0,0.0,0.0715,0.1887041435735022,0.32,0.02288,0.3232040517126482,0.6767959482873517,25.2637541914068,4.547693898364217,0.3324977618621307,0.2005371530886302,0.2336615935541629,0.2333034914950761,11.087604187359076,5.626490949302477,24.320027574872107,12872.62177524649,62.83266256538151,12.988954897363527,20.859867402661973,14.63464870440597,14.34919156095004,0.5453894359892569,0.7678571428571429,0.6941303177167475,0.5739463601532567,0.113584036838066,0.6958762886597938,0.9397590361445785,0.8609271523178808,0.7095709570957096,0.1037037037037037,0.4970428199668796,0.6954314720812182,0.6403133903133903,0.5329341317365269,0.1161665053242981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864351331368,0.0042881907484565,0.0064954176858044,0.0086968890333854,0.010761218926726,0.0127583749109052,0.014861021924594,0.0172262475762832,0.0196024324186212,0.021746249411572,0.0240625544430666,0.0261010582064888,0.028355601233299,0.0306227483273288,0.03255444646098,0.0347887163913937,0.0369603907123049,0.0390982119720134,0.0410267592909878,0.0428941590268166,0.0574656291072956,0.0713763040705818,0.0847832466879087,0.0971337914223875,0.1093730249020351,0.1243451626531474,0.137410079564356,0.1493771523319586,0.1608643713469004,0.1726948493579101,0.1864299234276865,0.1999913577979669,0.2118708472662526,0.2230312424950331,0.2332524191865382,0.2452563138573134,0.2558328690807799,0.2654450673527396,0.2748739448189904,0.2835090447549569,0.2911269542308448,0.2985815188838946,0.306607617360496,0.3134333711962695,0.32008918293407,0.3262146420584404,0.3322680914277154,0.337809025838875,0.3435880870857291,0.3488007586633826,0.3492902791792802,0.3503925639721149,0.3510762603297059,0.3521761747875845,0.352550284686399,0.3520286944925581,0.3519053209379065,0.3528956766453269,0.3533326472505231,0.3537046664634911,0.3554866591506952,0.3564101037760184,0.3568473488686254,0.3582224024145775,0.3584983498349835,0.3602720227739996,0.3610455409062122,0.3636507835797221,0.364185039230305,0.3665488999518227,0.3705373573794626,0.3701305650684932,0.3711870869344179,0.3710160509945472,0.3724611423667398,0.3751503488092374,0.3767846058348851,0.3764633394947628,0.3797539149888143,0.3762567672080433,0.0,2.102923140147149,59.918152240321234,212.41730294997345,321.56321441008134,fqhc6_100Compliance_baseline_low_initial_treat_cost,76 -100000,95765,41728,391.81329295671696,7245,74.49485720252702,5641,58.30940322664857,2269,23.265284811778837,77.37657405990127,79.72266741964381,63.3458979718325,65.07946659894384,77.0981037146678,79.44501967938402,63.24426052889553,64.98132064933755,0.2784703452334724,277.6477402597948,0.101637442936969,98.14594960629108,86.60366,60.8907915052417,90433.51955307263,63583.55506212259,258.23876,160.13838320025584,269057.12943142065,166619.03555771048,277.8436,133.18348828448148,286854.4040098157,136479.2291861185,3717.16209,1667.4273534260074,3843137.6703388505,1702817.9721307002,1347.77187,590.6593651450833,1390153.3754503212,599588.8813763586,2230.4135,927.1075362284276,2289141.5026366627,933725.115004364,0.37955,100000,0,393653,4110.614525139665,0,0.0,0,0.0,21862,227.6510207278233,0,0.0,25894,267.05999060199446,2034310,0,72979,0,0,0,0,0,49,0.5116691902051898,0,0.0,0,0.0,0,0.0,0.07245,0.1908839415096825,0.3131815044858523,0.02269,0.3239196111913832,0.6760803888086169,25.118125243392885,4.590260962024674,0.3237014713703244,0.2098918631448324,0.2368374401701826,0.2295692253146605,11.224331314782418,5.602756359181632,24.12348267344756,12938.542426964,63.32125542227764,13.854648542942458,20.292317967011037,14.943696352194618,14.230592560129535,0.5497252260237546,0.7846283783783784,0.6944140197152245,0.5696107784431138,0.1104247104247104,0.7094932191291934,0.9015544041450776,0.8931116389548693,0.7184466019417476,0.1684210526315789,0.4969339622641509,0.7280701754385965,0.6348754448398577,0.5248296007789679,0.094059405940594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864985313481,0.0045109428377378,0.0065748087420605,0.0087163232963549,0.0111361972174762,0.013411268724351,0.0159374330841941,0.0180810225834116,0.0202314502443313,0.0222438325314771,0.0243012493978496,0.0268630671320057,0.0291553581709022,0.0308750682279276,0.0330327851940495,0.0350391218513886,0.037090728353387,0.0392335861074514,0.0412508316699933,0.0430435642945667,0.057781024945204,0.0717116890994467,0.0845380494606296,0.0972559405576399,0.1098604611947219,0.1260094710583062,0.1384132571380103,0.1507038806541887,0.1621777483500288,0.1734006734006734,0.1876581767271552,0.2006187864429515,0.2121660429901662,0.2240347479786873,0.2347896921061611,0.2461347490219114,0.2570120589548906,0.2670275501935716,0.2770419801845357,0.2860201756495253,0.2938903925787123,0.3012966665497445,0.3083200283838921,0.3155127606318638,0.3224051017309444,0.3285180757047244,0.3347422126073853,0.3399550081976589,0.3454159713328417,0.3501464495870385,0.3508273913628413,0.3513164048529533,0.3519605772615276,0.3522464438533595,0.3523853388206279,0.3518785241480755,0.3511496347473339,0.3518159408381265,0.3532632875868441,0.353446735517993,0.3550016903948011,0.3566592762689049,0.3576617813799185,0.3583061160574471,0.3597292153508877,0.3612970711297071,0.3626122262251958,0.3636134400806909,0.3652238332098634,0.3665827438756344,0.367763852545563,0.368373236425823,0.3716976362027556,0.3731160584500038,0.3721829325789721,0.3783235960414928,0.3824842234877635,0.3867962737950587,0.3898678414096916,0.3926096997690531,0.0,2.2728104288585955,61.752410118819775,211.14960469259236,321.3369998302141,fqhc6_100Compliance_baseline_low_initial_treat_cost,77 -100000,95758,41662,390.9542805823013,7173,73.85283736084713,5589,57.8541740637858,2324,23.956222978758955,77.3313489084019,79.69839416770901,63.31030609897547,65.0636142164181,77.0529905603748,79.41761690322666,63.20922303089717,64.96358410639603,0.2783583480271119,280.77726448235296,0.1010830680782959,100.03011002207528,85.20314,59.95014210442672,88977.56845381064,62605.88369058117,253.86669,157.82166598987774,264560.6111238748,164263.97829127085,280.21961,133.4776415968912,289360.6069466781,136892.7630570719,3728.60574,1663.2089732086197,3861694.1352158566,1705421.7791924716,1384.46769,593.1617751004068,1435323.0330625118,609027.8016320162,2290.04494,940.3463903846368,2362947.659725558,957843.243343146,0.37864,100000,0,387287,4044.434929718666,0,0.0,0,0.0,21510,224.0752730842332,0,0.0,26035,268.63551870339813,2039463,0,73171,0,0,0,0,0,46,0.4803776185801708,0,0.0,0,0.0,0,0.0,0.07173,0.189441157828016,0.3239927505924996,0.02324,0.3167174864112422,0.6832825135887578,25.659450018403287,4.549679026239603,0.3358382537126498,0.1941313293970298,0.2336732868133834,0.2363571300769368,11.086790383541931,5.548308390170006,24.533496194064902,12962.1472203279,62.83179164898653,12.795797628369684,21.255312965205427,14.367039830696784,14.413641224714633,0.5466094113437109,0.7585253456221198,0.7080447522642515,0.5712098009188361,0.1188493565480696,0.7035139092240117,0.9090909090909092,0.8601694915254238,0.7083333333333334,0.1423220973782771,0.4958560265214302,0.682825484764543,0.6569395017793594,0.536468330134357,0.1129032258064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0046847906547552,0.0070032986551636,0.0090327169274537,0.0114854829192862,0.0138505565683209,0.0161311702745969,0.0184200046968969,0.0207632276079329,0.0227994346231845,0.0247579586478503,0.0270200852725124,0.0290721607047297,0.0311968586711189,0.0332469730906989,0.0351780617942672,0.0371014672838163,0.0390577980699387,0.0410486159475276,0.0433999208448767,0.0581413555182096,0.0718852347518546,0.0856165820500986,0.0991482649842271,0.1112716001222996,0.1264158725793999,0.1395526505666143,0.1521519176083414,0.1640717667047798,0.1753017541977361,0.189035692732132,0.2014964969842662,0.2140843230533088,0.2255207820213895,0.2357584832536938,0.2472506762449559,0.2575911552850522,0.2679906331622084,0.276922029126985,0.2856733524355301,0.293862239049637,0.3015939941206095,0.309051243745702,0.3155770201110069,0.3216990090331377,0.3279467680608365,0.3341561517160148,0.3397005415737496,0.3445635528330781,0.3492902645978166,0.3489335294038287,0.3492430816700415,0.3504377123362984,0.3512137992857452,0.3531849167570136,0.3522934374760701,0.3512760874036803,0.3520467644209454,0.3532128926298501,0.354119034009717,0.3553117674636662,0.3573776334547758,0.3581506676744772,0.3596591546137459,0.3597287252015253,0.3603551690720029,0.3604528172436465,0.3631620553359684,0.3658519305703153,0.369007982670785,0.3695532266960838,0.3696940573442255,0.3714050424426707,0.3733088741114423,0.3735211267605633,0.3749116607773851,0.3745829542007886,0.374900714853058,0.3701492537313433,0.3734392735527809,0.0,1.8104206073598903,60.7726333744373,208.44230301624813,324.7407490646296,fqhc6_100Compliance_baseline_low_initial_treat_cost,78 -100000,95482,42038,397.3314341970215,7159,73.72070128401165,5526,57.1835529209694,2279,23.418026434301755,77.22623088476638,79.713122304224,63.24095407219974,65.07615072019725,76.95204274267547,79.43982993102063,63.1411798114402,64.97921844683806,0.2741881420909067,273.2923732033754,0.0997742607595455,96.93227335918664,86.185,60.6827572612909,90263.08623614922,63554.13298976865,257.87835,161.08817587624128,269365.1368844389,168001.87353141353,283.47574,135.90803040890327,292494.69009865733,138915.57245826098,3635.24233,1639.5797635062895,3763297.647724178,1673678.052426366,1346.19812,585.5708811439033,1392296.1081669845,595677.6472465002,2238.83962,920.7462086735616,2302411.721581031,929161.7495991774,0.38059,100000,0,391750,4102.867556188601,0,0.0,0,0.0,21842,228.02203556691316,0,0.0,26408,272.1979011750906,2025105,0,72673,0,0,0,0,0,42,0.4398734840074569,0,0.0,0,0.0,0,0.0,0.07159,0.1881026826768964,0.318340550356195,0.02279,0.308264682434228,0.691735317565772,25.204437963328548,4.516241076501745,0.3384002895403546,0.2017734346724574,0.2305465074194715,0.2292797683677162,11.193895172136306,5.786386102688456,24.214397359698243,12948.40675395302,62.821814965748,13.215986962299503,21.374437759738868,14.28419098980737,13.947199253902255,0.5521172638436482,0.7829596412556054,0.6957219251336898,0.5714285714285714,0.1176006314127861,0.7268041237113402,0.8948863636363636,0.8662280701754386,0.7635782747603834,0.160337552742616,0.4952015355086372,0.7313237221494102,0.6407355021216408,0.5088449531737773,0.1077669902912621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002573846075898,0.0047876494872549,0.0073507015655775,0.0093950177935943,0.0115552207199869,0.0136064821892676,0.0157042418800191,0.0180757362107371,0.0202052236897296,0.0222536423433946,0.0241316308096567,0.0262081019946535,0.0282754643930969,0.0303433480821395,0.0323393879280061,0.034248560897834,0.0360877142027301,0.0377019188790253,0.0400791790383914,0.041976881389205,0.0568150892838451,0.0708672982301534,0.0844383221695286,0.097421143043831,0.1093827604062093,0.1250463703907831,0.1381367014320798,0.1507505521118946,0.1620148230657184,0.1734456961045661,0.1864284171885122,0.2001345004501426,0.2123551281631941,0.2240029817368617,0.2350137367184138,0.24644138988588,0.2572013468616111,0.2671288468041934,0.2767162549474546,0.2864716615218663,0.2948789312552184,0.3024027580707576,0.3100264635029133,0.3163803776850861,0.3223108249811008,0.3283258881615581,0.3343599929600482,0.3400368201692705,0.3459347690387016,0.3511579839949122,0.3512526378442725,0.3514196542009611,0.3512405456987347,0.3521153288901767,0.3535615723129708,0.3537304017355715,0.3534374353341929,0.3546086410988757,0.3549729218602252,0.3560750350379128,0.3570674707877874,0.3584080472337634,0.3596097519860083,0.3604849957259189,0.3612896988446851,0.3628996302027328,0.3629432166709662,0.3639326624897158,0.3665889171614362,0.3697519274557584,0.3716919689950924,0.3751469174057057,0.3754255453284579,0.3788281784330116,0.3811650846826726,0.381466275659824,0.3886248658592672,0.3872427983539094,0.3864774624373956,0.3818181818181818,0.0,2.610957520039628,59.73960799435399,217.98957991875503,311.9177102985227,fqhc6_100Compliance_baseline_low_initial_treat_cost,79 -100000,95705,41870,394.2218274907267,7056,72.44135625097958,5525,57.0921059505773,2203,22.621597617679328,77.36399481233721,79.74795537841914,63.33329461681414,65.09685568837912,77.09103838702292,79.47540637875404,63.23472245322227,65.0012928479155,0.2729564253142911,272.5489996650907,0.098572163591875,95.56284046362862,85.8704,60.41144501489282,89723.81798234157,63122.35541557349,259.28117,161.31546947474962,270259.0878219529,167899.70600102667,279.68937,134.422924626866,288060.132699441,137251.043852085,3669.4921,1639.4090475358798,3794257.144349825,1673303.2186157848,1319.77195,575.7596984091073,1360541.9466067604,583384.7678969587,2171.6488,895.1779150121445,2231489.2638838096,904060.8295406552,0.38017,100000,0,390320,4078.355362833708,0,0.0,0,0.0,21946,228.64009194921897,0,0.0,25997,267.4886369573168,2037386,0,73095,0,0,0,0,0,60,0.6269264928687112,0,0.0,1,0.0104487748811451,0,0.0,0.07056,0.1856011784201804,0.3122165532879818,0.02203,0.3073078481696609,0.692692151830339,25.103390157303902,4.534180566401168,0.3388235294117647,0.2009049773755656,0.228235294117647,0.2320361990950226,11.125501316068435,5.550694690126142,23.324234233796236,12920.43123748299,61.84867807404041,12.97106788425242,20.809153399044465,13.961950024580212,14.106506766163308,0.5402714932126697,0.7639639639639639,0.6885683760683761,0.5654242664551943,0.1053042121684867,0.7308270676691729,0.9222222222222224,0.9016393442622952,0.7430555555555556,0.1607843137254902,0.4798569725864124,0.688,0.62560553633218,0.512846865364851,0.0915287244401168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871115794166,0.0042897563053332,0.0066393242913993,0.0089639612171473,0.0108874824477502,0.0133259979216333,0.0155963115590191,0.0176477797295641,0.0198418786372515,0.0218210489668025,0.0239660352978577,0.0262611946430038,0.0282146493998086,0.0304685165531524,0.0323030084111667,0.0343686670251044,0.036453099911949,0.0383956830799564,0.040249898647595,0.0421767715181762,0.0566260404591074,0.0703706417408962,0.0840056654251691,0.0964610611558079,0.1083411512960249,0.1245109856414811,0.1378293833837018,0.1505419809163147,0.1626529174405943,0.1732737463695892,0.1881846551167545,0.2018581811888898,0.2140434045144174,0.225187793170561,0.235624725032996,0.2474926384307126,0.2579799692177288,0.2675991409842701,0.2767927032637919,0.2861427165129003,0.2939632545931758,0.3018188619254687,0.3089093211213272,0.3155157745905076,0.3216380660910117,0.3273201906145719,0.3332874655991994,0.3385567586802908,0.3440878291005017,0.3500197654499934,0.3503737965901146,0.3514416073440892,0.3516931864545083,0.35244351404028,0.3526732732019938,0.3521871323585583,0.3523913283754125,0.3529854531769018,0.3537339626177778,0.3550603097566198,0.3559426921201665,0.3571555731381663,0.3573720974136303,0.3580662537032049,0.3586306653809065,0.3598416319253257,0.358882418748745,0.3614145879381117,0.3624068646491755,0.36319380711065,0.3647010384738551,0.3674502905272136,0.3684880096685961,0.3731089842543995,0.3751075422999713,0.3817677559387435,0.3810713727940028,0.3715054876786084,0.3741169821983611,0.3767772511848341,0.0,2.4385231899133752,58.36037472621695,203.4546640590925,325.4730834157146,fqhc6_100Compliance_baseline_low_initial_treat_cost,80 -100000,95677,42266,397.4100358497863,7227,74.2916270368009,5658,58.613877943497386,2360,24.33186659280705,77.31725194233033,79.72498310140278,63.30264576078415,65.08458148957993,77.03143104280912,79.43736684786612,63.19794458061968,64.98194731658252,0.2858208995212123,287.61625353666886,0.1047011801644757,102.63417299741208,85.6427,60.36144088918656,89512.31748487098,63088.76834472919,260.70768,161.73905601040929,271968.466820657,168528.1164861035,280.42495,133.83653435757685,290289.11859694595,137776.7255050136,3754.63551,1673.2379253887973,3891781.420822141,1716339.481159316,1386.47539,596.2700773704933,1440103.776247165,614194.4013404403,2328.60846,960.6055580935227,2402268.423968143,975635.220681909,0.38325,100000,0,389285,4068.741703857771,0,0.0,0,0.0,22043,229.8671572060161,0,0.0,26126,270.1798760412638,2034428,0,72995,0,0,0,0,0,41,0.4285251418836293,0,0.0,0,0.0,0,0.0,0.07227,0.1885714285714285,0.326553203265532,0.0236,0.3080368906455863,0.6919631093544137,25.643557022897998,4.558193727766223,0.3243195475433015,0.2014846235418876,0.2317073170731707,0.2424885118416401,10.861934780708705,5.345872932982232,24.9789581995086,13045.648869636643,63.44461310210433,13.281141623098334,20.58877612405752,14.66767922622462,14.90701612872386,0.5383527748320961,0.7543859649122807,0.6833787465940054,0.581998474446987,0.1231778425655976,0.6906367041198502,0.8895522388059701,0.8329571106094809,0.711864406779661,0.1717557251908397,0.4913254684247051,0.698136645962733,0.6357758620689655,0.5442913385826772,0.1117117117117117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025023554560466,0.0049181159052882,0.0070227427260825,0.0093893851172148,0.0115277000559597,0.0135988591219313,0.0157305204741599,0.0179082216410591,0.02007325407706,0.022191486091901,0.0240796979521484,0.026326606107937,0.0285449585670904,0.0307651067602816,0.0329150529305447,0.0351053263253735,0.0372869759920388,0.0394936340789665,0.0415643597319905,0.0435108933597414,0.0580903325567059,0.0726335961798247,0.0853777595817718,0.0986585301699195,0.1107149262076313,0.1264484586812279,0.1400430901815943,0.1532571538109285,0.1654607829516186,0.1766832596661374,0.1903202524964183,0.2037630450785952,0.2155008217329313,0.2273976201683616,0.2378381951176522,0.2488305065957211,0.2591831951156898,0.2694787295086578,0.2789370369109621,0.2882353614823467,0.2959448199240811,0.3030196670293543,0.3106176348670575,0.3173352521436709,0.3231964591870235,0.3301662121642131,0.3362771994437972,0.3417344483904227,0.3468951581565244,0.3524049497374739,0.353747173468289,0.3536766526367912,0.3543341452082952,0.3549538870739252,0.3551193065030236,0.3536948840067598,0.3536655030149159,0.3553218453233266,0.3573543253187302,0.3581860107609531,0.3590234741784037,0.3603100037660304,0.3606446855577794,0.3616571454275561,0.3626461598175731,0.3630034416625069,0.3637641658298666,0.3652399317190364,0.3664157212031244,0.3693837613323216,0.3724562451192062,0.3750133933354763,0.3748170770503277,0.3760030864197531,0.3735960403578907,0.374401913875598,0.3804499612102405,0.3785391875256463,0.3848460070863995,0.3890369242481918,0.0,2.058929188524246,58.97048381854689,214.7044652930152,331.53026997900423,fqhc6_100Compliance_baseline_low_initial_treat_cost,81 -100000,95864,42012,395.5395143119419,7152,73.3956438287574,5568,57.57114245180672,2228,22.87615789034465,77.4717338221379,79.75882315476952,63.40399372213196,65.09086143696331,77.19979033264855,79.48687541371791,63.30415104824399,64.99366711182114,0.2719434894893595,271.9477410516049,0.09984267388797,97.1943251421692,86.47254,60.80113590677537,90203.35057998831,63424.36775721373,257.87932,160.09309777193957,268489.9440874572,166485.72081099174,279.66568,133.42744022620775,288919.2084619878,136909.0400337097,3661.45961,1636.783417913021,3786376.460402237,1674591.3173505128,1311.69918,571.1611224469456,1355114.7980472336,582830.7239672376,2189.61338,909.6631878293738,2250000.3338062256,918503.9118199372,0.38285,100000,0,393057,4100.152299090378,0,0.0,0,0.0,21742,226.25803221230075,0,0.0,26073,269.2251522990904,2038103,0,73088,0,0,0,0,0,50,0.5215722273220396,0,0.0,1,0.0104314445464407,0,0.0,0.07152,0.1868094554002873,0.3115212527964205,0.02228,0.3288288288288288,0.6711711711711712,25.39234527116341,4.535315498059325,0.335308908045977,0.201867816091954,0.2347341954022988,0.2280890804597701,11.06622022743799,5.5229288433414,23.538426883818836,12968.32387281608,62.25625869903281,13.198849455823542,20.756732149855623,14.537754674883043,13.762922418470582,0.5520833333333334,0.7677935943060499,0.7005891805034815,0.576893649579189,0.1173228346456693,0.7106038291605302,0.9228650137741048,0.8826185101580135,0.6677631578947368,0.1451612903225806,0.5009501187648456,0.6938239159001314,0.6439606741573034,0.5493519441674976,0.1105675146771037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025407429901811,0.0047411129458722,0.0068547324017927,0.009185952090946,0.0116250711324282,0.0136945882975368,0.0159624317496536,0.0180744397637674,0.0206073974225435,0.0226519676020616,0.0246213091080408,0.0263060734724016,0.0283633300460223,0.0301780018520423,0.0322337903308937,0.0341701174113735,0.0361516819065745,0.0378696017162578,0.039810603700704,0.0416788078091828,0.0560885070175804,0.0705624085302111,0.0843603286384976,0.0964254192409532,0.1086049158902145,0.1240669866576449,0.1374308074059935,0.1499851057491808,0.1614084537117111,0.1731865729229186,0.1868650998622589,0.1999373135618866,0.2121705704140469,0.2241364251714048,0.2352850725449493,0.2460535043112978,0.2575833528278136,0.2678755894902313,0.2774184779530859,0.2862615059173289,0.2942820515781815,0.3022265269447102,0.3094068176986133,0.3164971886589305,0.3237353330178491,0.3296194615091041,0.3355290294356602,0.3414234341842764,0.3469387755102041,0.3519399249061327,0.3527592096945569,0.3540454495553848,0.3543259500787047,0.3543612360198316,0.3546660736787488,0.3548150636816224,0.3541436464088398,0.3550837330364889,0.3565602383993189,0.3570653430823148,0.3579557133513968,0.3588975198138874,0.3605553116310188,0.3614272325612532,0.3636036554652083,0.3636410950348704,0.3652971928628253,0.3660431744838174,0.3690990112797661,0.3715073891625616,0.3726837205098074,0.3754766949152542,0.3771702759012564,0.3820620927558451,0.3844909609895338,0.3860426143164951,0.3871559633027523,0.3854838709677419,0.3923601637107776,0.3919483478921382,0.0,1.9429126934131145,59.98239986780966,207.9248927479197,320.132807705251,fqhc6_100Compliance_baseline_low_initial_treat_cost,82 -100000,95742,41553,390.9151678469219,6969,71.49422406049591,5361,55.4406634496877,2234,22.98886591046772,77.34438518034166,79.69835773740752,63.33412346583962,65.072842907804,77.06568087450347,79.41713769816626,63.23048866273288,64.97071263572045,0.2787043058381897,281.22003924126204,0.1036348031067433,102.1302720835564,84.67844,59.59835802509335,88444.40266549685,62248.91690699312,252.2449,157.80944954535462,262909.82014163065,164274.47676605318,269.70042,129.94561188370457,278068.8203714149,132998.8772951605,3592.16966,1623.5553321044567,3719395.072173132,1663229.201504517,1315.0705,573.154994602551,1360975.5697603978,586064.3443865292,2207.45352,928.105270933753,2274678.406550939,943377.817214866,0.37753,100000,0,384902,4020.200121158948,0,0.0,0,0.0,21437,223.30847485951827,0,0.0,25109,258.6221303085375,2042451,0,73297,0,0,0,0,0,50,0.5222368448538781,0,0.0,1,0.0104447368970775,0,0.0,0.06969,0.184594601753503,0.3205624910317118,0.02234,0.3141882673942701,0.6858117326057299,25.220278030453866,4.612932678968963,0.3241932475284462,0.1915687371759,0.2391344898339862,0.2451035254616676,11.03426290034316,5.451967591261714,23.910478475739986,12825.50800235428,60.37874240716856,11.905986462324329,19.723705880486733,14.298483875406848,14.45056618895064,0.5295653795933595,0.7468354430379747,0.6915995397008056,0.5639625585023401,0.1118721461187214,0.6725533480500367,0.9009584664536742,0.8314606741573034,0.715625,0.1174377224199288,0.4810094952523738,0.6792717086834734,0.6434648105181748,0.5135135135135135,0.1103581800580832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715368096916,0.0048158324293086,0.00726468409785,0.0092420503133156,0.0115907843097382,0.0136308572475644,0.0155418764395344,0.0176539619368335,0.019985491105639,0.0218970633377673,0.0242232969915566,0.0261723681374511,0.0282341812498714,0.030226570545829,0.0322274490385408,0.0342162100716153,0.0362177828382155,0.0382976075661885,0.0403766407882019,0.0423107370526228,0.0570757425484157,0.0711632044372351,0.0841034247653013,0.0967955661657219,0.1088591042824452,0.1241976588027536,0.1375978447635815,0.1502303461043313,0.1622129659297233,0.1732241257316837,0.1871380282903093,0.199660345927937,0.2116942279048023,0.2222149352920601,0.2321972571403433,0.2427285510247013,0.2537111860169208,0.2632686120548068,0.2729284903518729,0.2816702944208958,0.2903207138806263,0.2977971299482642,0.3058827707862242,0.3128765150606024,0.3188493896804941,0.3249922844268872,0.3309879469716923,0.3363269888248201,0.3422196840889327,0.3474591963600772,0.3483802228036576,0.3487667080060631,0.3494292124684268,0.3496735337975765,0.3504155124653739,0.3498694115839607,0.3494747548591135,0.3502024958019163,0.3505423142166858,0.3518773836595105,0.3530693925101937,0.3547671401121214,0.3553538409816776,0.3559143165079935,0.3565124882129645,0.3566732154551408,0.3573801477747866,0.3589670559194911,0.3624929338609384,0.3644216925291953,0.3662016922021495,0.3691905447948349,0.3712642951917609,0.3742312656594032,0.3764362403465813,0.3813188114123357,0.3812086729201906,0.3829831067161104,0.378476084538376,0.3831702544031311,0.0,2.20387762847368,59.93510576464846,198.4276546023944,305.6343041830158,fqhc6_100Compliance_baseline_low_initial_treat_cost,83 -100000,95685,41742,393.8652871400951,7026,72.40424308930343,5448,56.50833463970319,2237,23.117521032554738,77.28108161739658,79.66970558873318,63.29287913429015,65.05635975583915,77.01225408507028,79.39628016140148,63.19562408938988,64.95915681693532,0.2688275323262985,273.42542733170205,0.0972550449002724,97.20293890383402,86.34692,60.7531651110374,90240.81099440872,63492.88301305053,256.46463,159.36371453609888,267599.5088049328,166119.74137649464,274.80964,130.98627787656488,284284.87223702774,134640.89729954413,3625.63587,1611.5515658151555,3764450.0600930136,1659538.8366150968,1353.9655,584.3059863207405,1405772.9529184303,601404.9603602865,2204.89588,904.9899830102198,2280502.1058682133,925776.2504538835,0.38019,100000,0,392486,4101.855045200397,0,0.0,0,0.0,21739,226.7440037623452,0,0.0,25566,264.283848043058,2031028,0,72878,0,0,0,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.07026,0.1848023356742681,0.3183888414460575,0.02237,0.3197619369674015,0.6802380630325984,25.465530058537965,4.577632436468007,0.3283773861967695,0.1976872246696035,0.2331130690161527,0.2408223201174743,11.0009353829055,5.524265179915232,23.659459811552654,12926.500467336358,61.47257667056594,12.802242149821202,20.242950448562027,14.134429722627942,14.292954349554783,0.539647577092511,0.7771587743732591,0.7003912800447177,0.5598425196850394,0.1059451219512195,0.7106060606060606,0.9337016574585636,0.8694638694638694,0.7,0.1467181467181467,0.4849806201550387,0.6979020979020979,0.6470588235294118,0.522,0.0959164292497625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0044911242003669,0.0067081400895095,0.0088488382724954,0.0111974452332038,0.0131664697975642,0.0151722168974447,0.0171621676808102,0.0192793253258369,0.021433177412256,0.0234694609918897,0.0257505441701917,0.0281777046482928,0.0300648072781973,0.0321901478951007,0.0341925411251382,0.0359547535685429,0.0378523684975297,0.0398918187964841,0.0416601523821435,0.0566763129577199,0.0711578330157267,0.0840015954320262,0.0969299722245602,0.1097584133347399,0.125493224444891,0.1385324119776242,0.1511427293446079,0.1635805768778464,0.1747350790736625,0.1882791941676372,0.2013848254339769,0.2143782736053488,0.225347640424833,0.2357963621941411,0.2468866093706681,0.2568478224427532,0.2668649117471474,0.27608031179338,0.2850066504609457,0.2929414626799967,0.2999425846290849,0.3071951233974929,0.3146927058936571,0.3213433925529326,0.3271338302808905,0.3329573086661151,0.338953221445697,0.3448213196256344,0.3502210222610445,0.3512374365070788,0.3513703831549879,0.3524266485499554,0.3528028906850866,0.3535400277649236,0.3529655999630934,0.3520934297290856,0.3536279683377308,0.3549993132811427,0.3557395855739585,0.3560934262572989,0.3577932298619274,0.3596303892753684,0.3609480812641084,0.3615528417781447,0.3628894663621807,0.3632341110217216,0.3657646797576372,0.3666843126874889,0.3695461434154901,0.3724475780606172,0.3753668819040504,0.3739527798933739,0.3750095238095238,0.3748707828211634,0.3738865447726207,0.3779310344827586,0.3811252268602541,0.3815359477124183,0.3845559845559845,0.0,1.6140970835771489,59.0059291105896,208.378596487795,314.2189726030713,fqhc6_100Compliance_baseline_low_initial_treat_cost,84 -100000,95729,41767,391.908408110395,7119,73.24844091132259,5579,57.735900301893885,2214,22.75172622716209,77.3612597271838,79.72583644889112,63.34108899169471,65.08868199162619,77.08669199018608,79.45150733184862,63.24055644749024,64.99105680641466,0.2745677369977244,274.3291170424982,0.1005325442044693,97.62518521152684,85.76392,60.311910763633406,89590.32268173699,63002.75858270055,255.3714,158.85882289517824,266213.4567372478,165394.91992518282,276.80881,132.92283741160094,285806.87148095143,136284.2856594554,3697.63502,1650.168791305154,3827763.895998078,1688948.8778793823,1377.05387,595.6241830546891,1425255.199573797,608961.613570276,2193.00552,904.9712015872168,2255633.1728107478,915538.3489032256,0.37961,100000,0,389836,4072.287394624409,0,0.0,0,0.0,21578,224.84304651672952,0,0.0,25802,266.1575906987433,2039601,0,73170,0,0,0,0,0,47,0.4909692987495952,0,0.0,0,0.0,0,0.0,0.07119,0.18753457495851,0.3109987357774968,0.02214,0.3190495260979842,0.6809504739020158,25.4627279820002,4.4923180700866086,0.3172611579136046,0.212224412977236,0.2337336440222262,0.2367807850869331,11.141910358051202,5.6000049370531935,23.487933400554727,12919.24798037149,62.71423154516701,13.859731579236536,20.02980793062677,14.43768905972352,14.387002975580176,0.5459759813586664,0.7677364864864865,0.6807909604519774,0.593558282208589,0.1196063588190764,0.7055435565154787,0.8975741239892183,0.847457627118644,0.7391304347826086,0.1592592592592592,0.4930787589498807,0.7084870848708487,0.6201848998459168,0.5544747081712063,0.1094196003805899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0045725525184524,0.0070731261797,0.0092247361095589,0.0113800467812468,0.0137268080079835,0.0157139069606183,0.0178077296165824,0.020111034997495,0.0223177723177723,0.024422503152779,0.0269295948236019,0.0291473824951146,0.0313684687654524,0.0334354973530231,0.0353472696069309,0.0373645947681282,0.0394765517169809,0.0415739450533452,0.0436368183049575,0.0584304389591947,0.0726404923643747,0.0861980341351348,0.0985794050535746,0.1102152237610405,0.125735970318066,0.1386564869307035,0.150511778349967,0.1621257916715617,0.1728355361181678,0.1867873946232275,0.1997057741816844,0.2113588675922201,0.2226728171046303,0.2342865309981639,0.2456423820538076,0.2563939616919749,0.266108551522643,0.275066598651023,0.283722846613409,0.2926248366919866,0.3005550686532282,0.3084939025111481,0.3151888882236724,0.3213323952546156,0.3268613192573179,0.3326583923906658,0.3380466157191358,0.3425903138479074,0.3483836036131213,0.3499346810143971,0.3498473303441257,0.3507049593644802,0.3515768468846248,0.3524380448040936,0.352082438814942,0.352023194651288,0.3529904699309891,0.3537164934354486,0.3548277465746073,0.356075117370892,0.3572690635484703,0.3575849437918403,0.358081545546445,0.3601064473206725,0.3611140304781923,0.3603186471873921,0.3625766286567354,0.3641935941043084,0.3656952739808394,0.3696289509848832,0.3734028960817717,0.3756703892990094,0.377345537757437,0.3782894736842105,0.3776223776223776,0.3757075110907144,0.3780710659898477,0.3839009287925696,0.3801452784503632,0.0,2.1565834462020628,61.36027523864527,206.6316883489069,321.3320629195013,fqhc6_100Compliance_baseline_low_initial_treat_cost,85 -100000,95652,41868,394.2520804583281,7049,72.40831346966085,5515,57.09237653159369,2272,23.407769832308787,77.2430810454354,79.64946255699347,63.27207635196621,65.0509213580328,76.96242601310745,79.36609692559158,63.16974218178921,64.94981334872244,0.2806550323279566,283.3656314018924,0.1023341701770021,101.10800931035158,85.59342,60.2136524279405,89484.19269853218,62950.75108512159,257.18131,161.21072415932517,268273.8050432819,167941.08479730107,277.97731,133.8192237644452,286916.1753021369,137021.1732620034,3686.28293,1669.6847947604058,3818460.9312926014,1710283.2044390328,1359.58876,593.2691672513145,1409352.3501860911,608256.2974546682,2253.19864,937.55244059159,2323429.138962071,952897.0061419592,0.37975,100000,0,389061,4067.463304478735,0,0.0,0,0.0,21835,227.6481411784385,0,0.0,25900,267.17684941245346,2030279,0,72849,0,0,0,0,0,44,0.4495462719023125,0,0.0,1,0.0104545644628444,0,0.0,0.07049,0.1856221198156682,0.3223152220173074,0.02272,0.3214237379889024,0.6785762620110976,25.23112882079485,4.520044131693669,0.3182230281051677,0.2012692656391659,0.2339075249320036,0.2466001813236627,11.052531277330427,5.530737308917032,24.334181637740123,12945.57502900953,62.77017654172289,13.19664665161453,20.028354749507777,14.516067813115166,15.029107327485422,0.5392565729827743,0.772972972972973,0.7008547008547008,0.5736434108527132,0.1073529411764705,0.7058823529411765,0.9353932584269664,0.8810572687224669,0.6777408637873754,0.166077738515901,0.4828925018199466,0.6962864721485411,0.6379707916986933,0.5419615773508595,0.0919220055710306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.0044833952082445,0.0067307594692547,0.0092157002204858,0.0113108134224365,0.0137888894546565,0.0158552128473107,0.0180321842836137,0.0200834424083769,0.0221905912712228,0.0241101003989293,0.0260739188925516,0.0279928835138164,0.0300816944647621,0.0326579482468544,0.0344738447539576,0.0364837987900886,0.0383298044588367,0.040377354565595,0.0426070911043232,0.0573993186900457,0.0716964136081783,0.0851530676521227,0.097938090075677,0.1101093703813183,0.1255161023947151,0.1392999415732724,0.1519502808958819,0.163956001626399,0.1749385116049276,0.188050328038674,0.2004119687771032,0.2120644395307547,0.223545002519002,0.2347669855826462,0.2463829220663944,0.2570105997584865,0.2668147029317944,0.2770337865490428,0.2849983370987534,0.2931903796001159,0.3008291951653705,0.3081261032852725,0.3156884157976214,0.3222178950442995,0.328125,0.3344998871076992,0.3399599341593191,0.3455757213568394,0.3511763693415774,0.3523900805918166,0.3528787001020718,0.3527507633156169,0.3526656224620025,0.3529157086978591,0.3522297110146801,0.3514825484235488,0.3526292313029687,0.352579303708286,0.3537056677032589,0.3550556279632043,0.3557953095086152,0.3580658783783784,0.3597501860077108,0.360343992248062,0.3621734091866835,0.3635969726731758,0.367428698610537,0.3693177776196912,0.3708577194752775,0.3717109842684115,0.3722525247070259,0.373561013046815,0.3769337871287129,0.3756003842459174,0.3777134587554269,0.3816204287515763,0.380595461170102,0.3856741573033708,0.3995308835027365,0.0,2.1152576677130264,61.813937456417065,212.72688929535096,311.71269593407686,fqhc6_100Compliance_baseline_low_initial_treat_cost,86 -100000,95825,42214,397.5893555961388,7093,73.07070180015653,5510,57.02061048786851,2234,22.968953822071484,77.44904619750217,79.77671647926783,63.38601454967061,65.10763836951797,77.1754979203437,79.50211705017487,63.286070231328765,65.00956964615523,0.2735482771584685,274.5994290929588,0.0999443183418478,98.06872336274353,85.57472,60.17053415889307,89302.89590399165,62791.9012726062,257.76942,160.65259579747078,268498.55465692666,167152.21140772387,279.68801,133.73415787308485,289290.7278893817,137483.08421805588,3640.00885,1632.7284537034652,3768991.8184189927,1674373.4386660096,1318.45237,569.3952152782465,1363632.6324028175,582044.8519959565,2191.00586,906.3930108720904,2254746.9032089747,918412.4336596192,0.38346,100000,0,388976,4059.2225410905294,0,0.0,0,0.0,21799,226.95538742499343,0,0.0,25993,268.8233759457344,2042216,0,73264,0,0,0,0,0,56,0.5530915731802766,0,0.0,0,0.0,0,0.0,0.07093,0.1849736608772753,0.3149584096997039,0.02234,0.3154227522444057,0.6845772477555943,25.13554670633585,4.594948295866911,0.3288566243194192,0.2032667876588021,0.2346642468239564,0.2332123411978221,11.318232913047623,5.795922758759449,23.597416788526147,12948.292572689965,61.89985957220594,13.087230250986371,20.380186140535148,14.454914013467253,13.977529167217163,0.5430127041742286,0.7741071428571429,0.6810154525386314,0.576952822892498,0.11284046692607,0.698237885462555,0.9211267605633804,0.8426966292134831,0.7278688524590164,0.1050583657587548,0.4920443587270974,0.7058823529411765,0.6283833211411851,0.5303643724696356,0.1147859922178988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021571149347295,0.0046222618673532,0.0067374915020344,0.0090307900163549,0.011277545583046,0.0134299939926486,0.0157213788322135,0.0178711764765919,0.020091977516607,0.0220400896337907,0.0239483527181431,0.0261083743842364,0.0280941611842105,0.0298887024205421,0.0320644382793081,0.0341129798752014,0.0361101623870587,0.0381791787639983,0.0400831168831168,0.0421819696023318,0.057080864558124,0.071064132321268,0.084841688239548,0.0972693556351716,0.1089732782601365,0.1245297374984148,0.1382523160416357,0.1506805614632071,0.1629184714191222,0.1745871972244233,0.1883972256572934,0.2009830929617025,0.2129759306908119,0.2249380749211614,0.2355860009660563,0.2464932739391393,0.2571778594498273,0.2675466657687084,0.2763847538404066,0.2854319238634935,0.2936653621030028,0.3013033686888134,0.3083604777415852,0.3156051259981829,0.3227737650879829,0.3287516290048932,0.3344566343405599,0.3397212985760337,0.3449612403100775,0.3504041707259275,0.3512649299351076,0.3520670237604724,0.3527757862033093,0.353000577034045,0.353180013040128,0.3530687353969732,0.3531212039943839,0.3537305860596043,0.3548765957446808,0.3569357220373961,0.3582212257100149,0.3591769969058552,0.3600359847692372,0.3612024424612494,0.3630918013856813,0.3639319529705546,0.3651742993848257,0.3692790953353227,0.3715985496532545,0.3730300504148306,0.3718645771462512,0.3750066727165964,0.3758151313706869,0.3728878354614267,0.3742296387598369,0.3723062269317776,0.3748845798707294,0.3718263718263718,0.3734072022160665,0.3623076923076923,0.0,1.815766190911111,60.22703513281533,210.65350010085697,310.7065819945347,fqhc6_100Compliance_baseline_low_initial_treat_cost,87 -100000,95804,41987,394.0023381069684,7081,72.73182748110726,5500,56.793035781387,2248,23.099244290426288,77.3497797498425,79.68313521528783,63.33168066437421,65.06010357910846,77.07729273760248,79.41052496930959,63.2314156567826,64.96189068702618,0.2724870122400205,272.61024597824246,0.1002650075916165,98.21289208227311,86.3478,60.74719720651034,90129.6396810154,63407.78799059575,256.66363,160.03289563948366,267318.19130725233,166455.24783879967,278.88973,133.51686659577723,287102.1773621143,136222.3681799387,3653.74682,1644.8975472737134,3778104.776418521,1681272.4179300584,1341.92847,580.1296830357832,1386043.077533297,590887.4134334925,2216.89574,919.1812709227424,2281467.350006263,933920.904362855,0.38112,100000,0,392490,4096.801803682519,0,0.0,0,0.0,21728,226.17009728195063,0,0.0,25920,266.4606905765939,2033064,0,72934,0,0,0,0,0,51,0.5323368544110892,0,0.0,0,0.0,0,0.0,0.07081,0.1857945004198153,0.3174692839994351,0.02248,0.3176328502415459,0.6823671497584541,25.151351742058356,4.683700685905105,0.3296363636363636,0.1958181818181818,0.2358181818181818,0.2387272727272727,11.103907146178283,5.447389251133548,23.852985579287218,12900.430398694818,62.044939251425895,12.485489708567195,20.57488470152415,14.56677226161423,14.41779257972032,0.5416363636363636,0.7669452181987001,0.6839492553778268,0.5844255975327679,0.118050266565118,0.6992700729927007,0.9142011834319528,0.8463203463203464,0.7318611987381703,0.1027667984189723,0.4893462469733656,0.699594046008119,0.6284233900814211,0.536734693877551,0.1216981132075471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.004440974580997,0.0064241784561674,0.0087982200367777,0.0112704709592106,0.013583829743903,0.0156606851549755,0.0178434715147555,0.0200639839733434,0.0222827255140789,0.0245102561736937,0.0265516710303403,0.0283690130997182,0.0306038388664634,0.0327202582961121,0.0350902571838932,0.0371305833031416,0.0394568971776493,0.0414779103112921,0.0434578904078211,0.0579416827499869,0.0721888788975093,0.0853160046116759,0.0979928541403951,0.110406104746145,0.1258365668249051,0.1392507106792821,0.1521334227359324,0.1638022196349031,0.1750640936249638,0.1880839233181392,0.1998528027015033,0.2121963689368969,0.2226607340031266,0.2331550919813396,0.2440824468085106,0.2546877092727354,0.2647942139185404,0.2745730011916246,0.2837248187638146,0.2916507550772435,0.2996175393864255,0.3077587635210301,0.3138194627495147,0.3206369256555694,0.3270820754833224,0.3330414660078804,0.3388812541354914,0.3434080520052316,0.348554676667503,0.3489876796161,0.3493146907145418,0.3505236119344003,0.3499883970528514,0.3503620273531778,0.3493199054315453,0.3495889802266163,0.3510734556222752,0.3519000788130075,0.3533860186728312,0.3549933271930979,0.3558108161726778,0.3577551792242719,0.3599874498554492,0.3597985590708658,0.361296223703123,0.3621127765881513,0.3646203706617161,0.3671644930584771,0.3688294208463639,0.3706609496875427,0.3739560614926326,0.3756650620724601,0.3748843663274745,0.3770663119893597,0.3799880881477069,0.3803945745992602,0.3825680617635107,0.3838940981798124,0.3840438013296832,0.0,2.361545685734743,60.41674267616709,205.57177770544357,316.48541444193586,fqhc6_100Compliance_baseline_low_initial_treat_cost,88 -100000,95790,41785,392.7549848627205,7194,73.94300031318508,5620,57.99143960747468,2247,23.02954379371542,77.41775944651599,79.74514261503901,63.37436231324406,65.09494381421027,77.14442076143368,79.47362585842905,63.27439792123453,64.99871892184026,0.2733386850823081,271.51675660996943,0.0999643920095323,96.22489237000308,83.97576,59.13146552079257,87666.52051362356,61730.31164087333,253.16272,156.95331217978554,263610.75268817204,163173.9495028162,275.40958,132.32131715683994,283237.874517173,134904.7229332877,3729.28223,1661.4788789780794,3850863.680968786,1692236.6524386008,1368.0428,587.9083190228259,1412751.7590562687,598383.424050589,2220.72274,917.1434232477012,2278366.2177680344,923563.6082668907,0.37955,100000,0,381708,3984.841841528343,0,0.0,0,0.0,21403,222.72679820440547,0,0.0,25626,263.1798726380624,2052107,0,73579,0,0,0,0,0,48,0.5010961478233635,0,0.0,0,0.0,0,0.0,0.07194,0.1895402450270056,0.3123436196830692,0.02247,0.3233969263381028,0.6766030736618972,25.39800469255654,4.57181608504443,0.3202846975088968,0.2056939501779359,0.2389679715302491,0.2350533807829181,10.941299680124857,5.374823789419355,23.84793043511024,12846.289164607382,62.81912749064981,13.392690018646544,20.144703630390303,14.871100416455397,14.410633425157569,0.5393238434163701,0.7612456747404844,0.6872222222222222,0.573343261355175,0.109008327024981,0.6959761549925484,0.920424403183024,0.8496420047732697,0.6920415224913494,0.1206225680933852,0.4901823281907433,0.6842105263157895,0.6379435191889935,0.540796963946869,0.106203007518797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023997812857562,0.00468308110245,0.0068999807206421,0.0090999573439499,0.011144553811112,0.013345413086852,0.0154214657017633,0.0175961459949375,0.0197980334839224,0.0217689442010889,0.0242517425174251,0.0261348005502063,0.02806274542053,0.0300409743241295,0.0320062692692383,0.0338683688646504,0.0361086675291073,0.0384328280838534,0.0404637488442639,0.0426023674922697,0.0572811785941591,0.070380127963869,0.0836862629989936,0.097152041684613,0.108754042069118,0.1243370031485747,0.1377432648607418,0.1500170111422982,0.1617728650078955,0.1727458731025913,0.1865401987353206,0.1994620519800375,0.211400651465798,0.2225352112676056,0.233340656926288,0.2441538904006548,0.2547400100317672,0.2645126511909976,0.2732761647994381,0.2817064104763538,0.2898205806578324,0.2981364283879405,0.3053508150248051,0.3123915307185005,0.3188089257762732,0.3248291571753986,0.3309293169176926,0.3366210788550511,0.3421250064676359,0.3479120270929144,0.3488503428801936,0.3497062506019455,0.3506526422506653,0.3507048763577536,0.3509228162986298,0.3510137775666273,0.3507330356860137,0.3516970722015139,0.3522585709653748,0.3529380265600457,0.3539811395039277,0.3557121149330018,0.3581317415436171,0.3596007413527454,0.3602563793643527,0.3617071260767424,0.3631515911942511,0.3660930569100575,0.368252853380158,0.3708119709073566,0.3713646532438479,0.3734464180935616,0.3760040478148124,0.3762981062919975,0.3791635124905375,0.3803475134811264,0.3773614363778298,0.3800041059330732,0.3814773980154355,0.3860537592520452,0.0,2.560536600318664,58.62297480594895,209.6881910196428,328.8069767740876,fqhc6_100Compliance_baseline_low_initial_treat_cost,89 -100000,95713,41747,393.2799097301307,7106,73.00993595436357,5505,56.847032273567855,2252,23.037622893441853,77.3893283971574,79.7502679344775,63.35181630130408,65.09359678668672,77.11667041930323,79.48295254013092,63.25270051070304,65.00053824190007,0.2726579778541662,267.315394346582,0.0991157906010329,93.05854478664344,85.42798,60.06459400501619,89254.31237136021,62754.89641429711,254.27018,157.83423516369714,264992.8954269535,164237.5697801732,276.27479,131.86752432545006,285527.9115689614,135223.80784792453,3656.06754,1632.4732653254762,3780153.552808919,1665922.1791454426,1367.18419,595.4688069906539,1412956.1292614378,606675.4954819657,2216.55208,903.0183694787833,2271715.064829229,904302.2427599356,0.3798,100000,0,388309,4057.014198698192,0,0.0,0,0.0,21516,224.117935912572,0,0.0,25778,266.1080521977161,2042299,0,73264,0,0,0,0,0,42,0.4388118646369877,0,0.0,1,0.0104479015389758,0,0.0,0.07106,0.1870984728804634,0.3169152828595553,0.02252,0.3153382451440054,0.6846617548559947,25.215761792112293,4.613729324749805,0.3280653950953678,0.2065395095367847,0.2277929155313351,0.2376021798365122,11.576827339018584,6.001264645686154,23.614958289959105,12860.126274038734,61.88955842692534,13.343731970004647,20.354331380683117,13.829155121961628,14.362339954275946,0.5522252497729337,0.7792436235708003,0.6982281284606866,0.5845295055821371,0.1223241590214067,0.7288389513108614,0.9411764705882352,0.8356164383561644,0.762589928057554,0.1755102040816326,0.4956834532374101,0.6998689384010485,0.6542397660818714,0.5338114754098361,0.1100658513640639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078855950656,0.004449309292874,0.006613716360833,0.0087527796675568,0.0109796266926924,0.0131710196852798,0.0152963476275884,0.0173976041305279,0.0193119233245118,0.0214268172888015,0.0235787186949215,0.0253421706030821,0.0271583879652273,0.029254634728813,0.031414692505234,0.0334735384392794,0.0356266501009473,0.0378730511094283,0.0397596748542145,0.041827273674341,0.0559941520467836,0.0694858673698971,0.0832668988377459,0.0961083479668983,0.1086993189820574,0.1241367640682339,0.1372836048879837,0.1501298811906485,0.1626123094345266,0.1737778397332103,0.1863450355373681,0.1991908614945264,0.2110034895476633,0.2227349268484702,0.2336652181088068,0.245098690768924,0.255546875,0.2659933417311499,0.2752606914706516,0.284077892325315,0.2926620568441987,0.2997592107723957,0.3071466572087249,0.3140938150994899,0.3203525213042317,0.3265293560023145,0.3329664006404643,0.3382412775912928,0.3428441970354068,0.3475955577831122,0.3482664012696022,0.3489011744643397,0.3497545951875342,0.351012800878435,0.3518774219411162,0.3521288309781611,0.3519413641676934,0.3522861260317044,0.3525730655117143,0.3540113437734099,0.3550736849989701,0.3557730328192962,0.357553624648449,0.3586652024831357,0.3584113502557668,0.3603474359643174,0.361440968257593,0.3652901926224348,0.3689999297209923,0.3719664773404297,0.3738403180841826,0.376551133932392,0.3778214557443571,0.3766877717598596,0.3777462121212121,0.3830673969992855,0.3792838481635162,0.3839249286005712,0.3748231966053748,0.3752479174930583,0.0,2.667905944134058,58.3725752815424,210.92270079470825,314.3774562103565,fqhc6_100Compliance_baseline_low_initial_treat_cost,90 -100000,95672,41735,392.6749728238147,7132,73.250271761853,5531,57.22677481394766,2211,22.72347186219584,77.35982293729873,79.73780002330709,63.33991942654043,65.0907305274423,77.09262633472206,79.47015549199065,63.2420540120905,64.99554646067536,0.267196602576675,267.64453131643506,0.0978654144499344,95.18406676694724,85.29862,60.01765661817157,89157.35011288569,62732.72913514044,255.50428,158.72661404477267,266493.60314407555,165339.0296522755,273.21383,130.70281625656116,282093.47562505223,133866.1435414571,3674.5874,1643.5709402604157,3804089.27376871,1681275.8478586476,1351.0725,584.1309964507562,1395738.5023831422,594112.4874040637,2190.68774,910.9225630313244,2253206.978008195,919607.3617593616,0.3803,100000,0,387721,4052.6068233129854,0,0.0,0,0.0,21653,225.71912367254788,0,0.0,25468,262.7728070908939,2041288,0,73154,0,0,0,0,0,50,0.5226189480725814,0,0.0,0,0.0,0,0.0,0.07132,0.187536155666579,0.3100112170499158,0.02211,0.3204906012531662,0.6795093987468338,25.31021287351313,4.595741598957675,0.3281504248779606,0.2080998011209546,0.2236485264870728,0.2401012475140119,10.967440350891904,5.239359758197702,23.572113851184152,12943.014175998846,62.22985101479785,13.586812829665575,20.202504407507792,13.797391130763256,14.64314264686123,0.5351654312059302,0.7463075586446568,0.6776859504132231,0.5788197251414713,0.1167168674698795,0.7020348837209303,0.9037974683544304,0.8666666666666667,0.7068965517241379,0.1476014760147601,0.4799037304452467,0.6640211640211641,0.6207885304659498,0.5395987328405492,0.1087984862819299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022481467979098,0.0045712084815681,0.0071323492111804,0.0092421441774491,0.0114181714657556,0.0134052623543182,0.0154678568153333,0.0176508998898094,0.0197143966168869,0.0217386856534904,0.0239924600979367,0.0261708130289817,0.0285423561576253,0.030364184882775,0.0325432190452613,0.0346032205386857,0.0365443345928878,0.0387591271158314,0.0406820190258356,0.0426880106720026,0.0574721049772242,0.0713694857753159,0.0847100065072734,0.0969371113519428,0.1090285834827549,0.1240225591755108,0.1371905914320893,0.1499568630374812,0.1624458816612325,0.1744142364949715,0.1877417755891512,0.200651839660437,0.2127071522616729,0.2246456908344733,0.2353414008390499,0.2464885462359874,0.2568881052549352,0.2663271958813875,0.2761756801197509,0.2849228515177876,0.2933203811638449,0.3014946669161676,0.3082502159277795,0.3151634926338483,0.3216357238199248,0.3276203843928145,0.3332708294268391,0.339222390279243,0.3448217866614917,0.3494107866295411,0.3511309659970128,0.3517697897170538,0.3524667597253359,0.3528646398056989,0.3525190544817032,0.3517539423474782,0.3529421089341196,0.3544141357638775,0.3559955429844861,0.3579388683842763,0.3593873332080436,0.3615038369257005,0.3629442691903259,0.3633671363187651,0.3639345843986685,0.36531182290443,0.3663027677222586,0.3677665134437378,0.3699111314060908,0.3699339119356636,0.369865520080505,0.3703505485683703,0.3696331738437001,0.3756071235833783,0.3793070716658756,0.3823953823953824,0.3867590454195535,0.3930894308943089,0.4010303687635574,0.3970023059185242,0.0,2.2621598335293034,60.82717062416857,203.97593740265748,320.0232141135102,fqhc6_100Compliance_baseline_low_initial_treat_cost,91 -100000,95851,41586,391.0965978445713,7027,71.94499796559244,5457,56.3270075429573,2233,22.88969337826418,77.34109898624328,79.63048947803823,63.34986309044478,65.04355900266445,77.06550561069474,79.35601516814286,63.24817344200044,64.94458591637367,0.2755933755485387,274.4743098953677,0.101689648444335,98.9730862907834,84.87006,59.69239628352756,88543.73976275677,62276.23737209581,253.88515,158.1042570855716,264264.14956547145,164337.29130167823,271.62815,130.00997402650984,279158.3290732491,132374.62465101018,3637.03332,1641.1803759904403,3757422.614265892,1675389.625912111,1346.20889,586.2510115564153,1392279.4858686922,599506.094655335,2206.20108,922.1146764733884,2265028.5547359963,933419.5854614018,0.37873,100000,0,385773,4024.715443761672,0,0.0,0,0.0,21473,223.37795119508405,0,0.0,25279,259.5591073645554,2043531,0,73366,0,0,0,0,0,53,0.5529415446891529,0,0.0,0,0.0,0,0.0,0.07027,0.1855411506878251,0.3177742991319197,0.02233,0.3203357703763878,0.6796642296236123,25.268993457265907,4.644364430159606,0.3309510720175921,0.203591717060656,0.2255818215136522,0.2398753894080997,11.360991161048418,5.660582623692106,23.857898308931205,12893.299079890014,61.651004183018,13.118808061481351,20.346552223074188,13.618109358900082,14.56753453956235,0.544621586952538,0.7713771377137714,0.6993355481727574,0.5751421608448416,0.1100076394194041,0.6909361069836553,0.9154518950437318,0.8526785714285714,0.7297297297297297,0.152027027027027,0.4967161274629044,0.70703125,0.6487481590574374,0.5339506172839507,0.0977295162882527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695002784669,0.0047522063815342,0.0070697542322165,0.0092899059841208,0.0112414367897871,0.0136367336969795,0.0157604653768961,0.0178627901045651,0.0201009131207484,0.0220035393884836,0.0239178087804478,0.0257740946246705,0.0279475354608108,0.0299610054222011,0.0320563020361058,0.0340595939683555,0.0362630544928135,0.03802438948579,0.0400423574847128,0.0419692461349591,0.0564135183891385,0.0699273658358154,0.0833036555986173,0.0962172607170611,0.1079123054566897,0.1233180541179949,0.1361286495190474,0.1489655758967489,0.1606961829454386,0.1723646418313542,0.1865192965840849,0.1996474265381828,0.2116919263302094,0.2231356173068934,0.233693499405836,0.2449255451161141,0.2563158364577754,0.2660178882826123,0.275501634283639,0.2847111650763468,0.2922409303940288,0.3005124365304069,0.3077159799732503,0.3133863175938912,0.3195187165775401,0.3266053914009006,0.3336255918234425,0.3389442053528228,0.3440450748008549,0.3493531720337751,0.3496602491506229,0.3511923622687258,0.3513193003261192,0.3520456983790994,0.3531490427625693,0.3527143691050416,0.3527645853519068,0.3538694942365726,0.3555215462392956,0.3558852122565081,0.3558184807877677,0.3572439077848845,0.3585456082866504,0.3608531598093043,0.3632186702321623,0.3651525530905833,0.3663781949915183,0.3684795377337524,0.3722055447642592,0.3741907121732875,0.3737901931104078,0.3740237509361292,0.3765730265666709,0.3783472723087547,0.3801621363853124,0.3844305622296972,0.3864343497199751,0.3843169287318767,0.3811634349030471,0.3871217998448409,0.0,2.3994973687260077,59.14596041384434,207.18319597060656,314.0707539788085,fqhc6_100Compliance_baseline_low_initial_treat_cost,92 -100000,95634,41824,394.44130748478574,7130,73.27937762720371,5565,57.51092707614447,2250,23.04619695924044,77.31769350596971,79.74074790460148,63.289715480586615,65.08162823911445,77.05196055055978,79.47689572960856,63.19227307871197,64.98812957696917,0.2657329554099306,263.8521749929197,0.0974424018746447,93.49866214527935,85.83058,60.332449583244994,89749.02231423972,63086.82015103938,256.50482,159.18614037192958,267574.61781374825,165813.0271367187,273.30601,130.15536961252303,281976.0231716754,133124.64342700024,3685.50341,1639.9102657386588,3810963.6112679592,1671982.5540484143,1364.21162,587.7816504898134,1407286.3521341784,595409.8547481152,2224.20588,911.4445154291566,2280466.08946609,914299.1553838104,0.38074,100000,0,390139,4079.501014283623,0,0.0,0,0.0,21790,227.15770541857495,0,0.0,25561,263.41050254093733,2035710,0,73000,0,0,0,0,0,33,0.3450655624568668,0,0.0,0,0.0,0,0.0,0.0713,0.1872669012974733,0.3155680224403927,0.0225,0.3202728002139609,0.679727199786039,25.491461238042845,4.5723565855342585,0.3250673854447439,0.2109613656783468,0.2197663971248876,0.2442048517520215,11.253464752690352,5.642617791885074,23.55647971810414,12912.480605229272,62.34265895169709,13.680750020959389,20.35839066364929,13.581092661092825,14.722425605995578,0.5376460017969452,0.7614991482112436,0.6920950801547816,0.5560098119378577,0.12214863870493,0.7071865443425076,0.907608695652174,0.8624708624708625,0.6828358208955224,0.1563786008230452,0.485553206483439,0.6947890818858561,0.6391304347826087,0.5204188481675392,0.1146953405017921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019146608315098,0.0044619316107573,0.0066192893401015,0.0087704143334789,0.0110187512081964,0.0129889975550122,0.0152000489666006,0.0173990335005465,0.0192604873455937,0.0215154062198897,0.0236513883898783,0.0256439257621716,0.0278550097827206,0.0299666807645887,0.0321117505450112,0.0342722324551418,0.0364333851736651,0.0384635359862058,0.0403267769799146,0.0420590474402694,0.0567997742640066,0.070489982395842,0.0842839436146299,0.0969634412226283,0.1086972593335797,0.1242320891412108,0.1371727971262474,0.1497009818030637,0.1614404467695863,0.1728379147733986,0.1867017604418364,0.1997052640703898,0.2122684151481816,0.2241556791799903,0.2346406885379588,0.2457434418501469,0.2563337468289357,0.266772533252244,0.2767677685293483,0.2854457726381901,0.2936700944969427,0.3017896227629715,0.3086709310589907,0.3148365887603782,0.3218821468541676,0.3282858798722518,0.3337297662714856,0.3392852597551353,0.3452924097884695,0.3505947660586835,0.3513546316399876,0.3517210032643279,0.3528947182850293,0.3530899891579327,0.3537627219374489,0.3540804121814334,0.3535922114576561,0.3549091745228788,0.3557746527006476,0.3562498885381556,0.3569170921468514,0.3576527191702488,0.3581837513290387,0.3584640755927973,0.3596642685851319,0.359764669131046,0.3608124253285543,0.3637445955260354,0.3658904397839658,0.3655358703424168,0.3655402624719923,0.3698527842969917,0.3699670802734869,0.3721623480853015,0.3761702127659574,0.3761751755325479,0.3787528868360277,0.3759595959595959,0.3750345208505937,0.3789796701189106,0.0,2.6447814374549865,57.20663516173675,208.30851178021533,329.8566768469236,fqhc6_100Compliance_baseline_low_initial_treat_cost,93 -100000,95712,41956,393.02281845536606,7250,74.55700434637245,5656,58.51930792377132,2320,23.831912403878302,77.34880342590687,79.70754281981411,63.338894218876014,65.07756654464826,77.06194254582725,79.4201063022315,63.23330464844222,64.97453524164517,0.2868608800796153,287.4365175826057,0.1055895704337928,103.03130300309248,85.61564,60.229063795159085,89451.31227014375,62927.39029082987,256.90702,159.85652787590504,267846.27841858915,166447.82041531368,282.94021,135.27354192039675,292343.7917920428,138745.26226062828,3745.59181,1690.3841915026671,3877666.1965061855,1730383.07788226,1392.66587,608.2793262825126,1437970.7769140757,618450.5321317468,2292.0273,955.3752706059428,2357349.548645938,966740.7553725092,0.38093,100000,0,389162,4065.968739551989,0,0.0,0,0.0,21675,225.8650952858576,0,0.0,26364,272.1602306920762,2037345,0,73108,0,0,0,0,0,53,0.5537445670344366,0,0.0,0,0.0,0,0.0,0.0725,0.1903236815162891,0.32,0.0232,0.3205986608901142,0.6794013391098858,25.40595382149038,4.507350267872913,0.323019801980198,0.2153465346534653,0.2194130127298444,0.2422206506364922,11.031326662023924,5.571908532850636,24.74992537555631,13036.274424980726,64.03986583437477,14.273705139736302,20.765186798370927,13.910535597019631,15.090438299247907,0.5498585572842999,0.7816091954022989,0.6836343732895457,0.5914585012087027,0.1277372262773722,0.7015781922525107,0.9140625,0.8217391304347826,0.7247386759581882,0.155893536121673,0.5002346316283435,0.7206235011990407,0.6371616678858815,0.5513626834381551,0.1210478771454381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021163914007675,0.004480395734501,0.0068286743442747,0.0091630349759749,0.0114486741499918,0.0136509390746678,0.016115058048865,0.0186791875063795,0.0208267334321189,0.0229670948262627,0.025100957300699,0.027279724944835,0.0293216540209322,0.031544377297108,0.0338350130491742,0.0360102502634896,0.0381967094295861,0.0404855779207304,0.0424837280875044,0.0443779891842327,0.0591091848989608,0.0737213366963547,0.0872160730210355,0.0994529195160441,0.1111427546779739,0.1264068714563764,0.1396284074148743,0.1528478654317044,0.1641559829059829,0.1752936759105294,0.1895819866408101,0.2022183746347798,0.2145110410094637,0.2261381286779987,0.2367123709751964,0.2480718085106383,0.2589820359281437,0.2687348685321772,0.2784787126520322,0.2867194572728418,0.2947687747493226,0.3025277940315974,0.30985932171277,0.3169377944543678,0.3229615950040701,0.3292132892985656,0.3353843844970547,0.3403329814430891,0.3455884256024018,0.350405023879258,0.351254093831287,0.3520521334196713,0.3527220387774109,0.353502446934816,0.354065204116587,0.3544847694314432,0.3533864415386568,0.3544266337854501,0.3555391913414279,0.3571735549029439,0.358629751290474,0.3601488578328516,0.3611752845801655,0.3604034685716853,0.3626559628590773,0.3641535154406753,0.365602826692712,0.3690268573421695,0.3701229855810009,0.3743005595523581,0.3770062083237526,0.3791931830439003,0.3778162911611785,0.3788819875776397,0.3795019157088122,0.3797238372093023,0.3855819067064551,0.385880882965431,0.3864406779661017,0.3822257176563114,0.0,2.219213971449835,61.5653718597241,218.8860177767377,321.7985424834064,fqhc6_100Compliance_baseline_low_initial_treat_cost,94 -100000,95636,41896,395.1336316868125,7198,73.98887448241248,5602,57.96980216654816,2275,23.296666527249155,77.26744378178137,79.68392405921354,63.28338998351626,65.06976637737557,76.99578931389843,79.41453722486429,63.18366473480771,64.97424185577688,0.2716544678829393,269.38683434924826,0.0997252487085518,95.52452159869064,85.81122,60.30704472238597,89726.90200342967,63058.93672088541,256.68789,159.57773138431483,267799.2701493162,166257.84368262457,275.51176,131.90368882748402,285165.73256932537,135508.68869732317,3723.96861,1654.1522862154811,3853707.348697144,1689442.507231044,1333.08702,576.8155865191117,1378521.8432389477,587740.7216101792,2247.5751,930.9306920721232,2303597.243715756,933117.0876417044,0.38058,100000,0,390051,4078.49554561044,0,0.0,0,0.0,21679,226.03412940733617,0,0.0,25609,264.7956836337781,2034530,0,72991,0,0,0,0,0,53,0.5541846166715463,0,0.0,0,0.0,0,0.0,0.07198,0.1891323768984182,0.3160600166712976,0.02275,0.3131273111463286,0.6868726888536715,25.415237866461226,4.597011961504866,0.3250624776865405,0.2079614423420207,0.2277757943591574,0.2392002856122813,10.772375382833046,5.2206632853064345,24.357603049131946,12911.806218217627,62.6770202002095,13.458592151987208,20.40599389213325,14.114937675900222,14.69749648018881,0.5355230274901821,0.7579399141630901,0.6886326194398682,0.5658307210031348,0.1052238805970149,0.6979560938682816,0.8945868945868946,0.8528735632183908,0.737037037037037,0.1433962264150943,0.4854006073347349,0.699017199017199,0.637085137085137,0.5198807157057654,0.095813953488372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020568626258941,0.0043804502129385,0.0065891000649772,0.0088102593285098,0.0107732530341102,0.0128528944473866,0.0152639843383567,0.0173763897538514,0.0195503021503287,0.0217406887794287,0.0239782575252551,0.0261946829929736,0.0281355443996378,0.0300769698405992,0.0322763774488553,0.0342606663978744,0.0362598779944693,0.0382902753702915,0.0400586681090977,0.0420376587359509,0.0572115384615384,0.0713193397016926,0.0842802831397424,0.0972915481982266,0.1096928810481529,0.124837189601313,0.1374812800713747,0.1491234613950018,0.1611937105572788,0.1733802983279459,0.187514154148109,0.2003141247833622,0.2120717426320142,0.224076424757069,0.2347112897011064,0.2461584480905797,0.2567184500691933,0.267205976664904,0.2765213442325159,0.2848956482871649,0.2929605186986222,0.3000865780606514,0.3080038367259938,0.3147588192944564,0.3206603727675313,0.3275050935358399,0.3334836979675714,0.3386392288199264,0.3447363643436989,0.3495515517104532,0.3506542611372935,0.3512585338942142,0.3524701296500296,0.3528217915078065,0.3530219370243247,0.3528561765971837,0.3533509335538662,0.3535406753708612,0.3542787621234449,0.3561499050553545,0.3564209218723532,0.3581501740427648,0.3588452217890633,0.3591546132422963,0.3596062687433491,0.360829069919979,0.3637977438011796,0.3651164996364326,0.3666808119386095,0.367347758018546,0.3699486182474656,0.3720715835140998,0.375048231511254,0.3755336489947993,0.3803288090231313,0.3799079011148812,0.3822055137844611,0.3846153846153846,0.3847701149425287,0.3841463414634146,0.0,2.3948442341845912,58.16877576844106,205.47827042309143,335.52998719830293,fqhc6_100Compliance_baseline_low_initial_treat_cost,95 -100000,95829,42062,395.15178077617423,7123,73.06765175468804,5572,57.4669463314863,2242,22.926254056705176,77.40182060844235,79.71375399810829,63.36325590393732,65.07491838673494,77.12452367830386,79.43976549588004,63.2616100314814,64.9777787477861,0.2772969301384904,273.98850222824933,0.1016458724559186,97.13963894883192,86.8967,61.04453518650863,90678.91765540704,63701.5258288291,257.45623,160.08786552874358,268018.4495298918,166412.08353290084,278.89058,133.59826602226488,286903.317367394,136271.8203388547,3666.97571,1651.6389259756477,3783811.643656931,1680817.7426203403,1340.47351,583.9319882417468,1385181.6047334317,595711.2755447166,2209.34938,917.7639148591684,2261977.8563900283,921265.2152079354,0.3834,100000,0,394985,4121.768984336683,0,0.0,0,0.0,21825,227.06070187521524,0,0.0,25963,266.7564098550544,2033423,0,73089,0,0,0,0,0,58,0.6052447588934456,0,0.0,0,0.0,0,0.0,0.07123,0.1857850808555033,0.3147550189526885,0.02242,0.3167842406495408,0.6832157593504592,25.12750235129036,4.588379811874356,0.3176597272074659,0.2112347451543431,0.2395908111988514,0.2315147164393395,11.182375069232926,5.62547269230496,23.841384515593905,13031.06664827425,62.887298626155705,13.802014177515058,19.943043992676323,14.798351429992795,14.343889025971524,0.5463029432878679,0.7502124044180118,0.6983050847457627,0.5842696629213483,0.1124031007751938,0.7166546503244412,0.916030534351145,0.8660508083140878,0.7090301003344481,0.1793893129770992,0.4898446833930704,0.6670918367346939,0.643979057591623,0.5482625482625483,0.0953307392996108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002085906964499,0.0044593540017634,0.0067463377023901,0.0090597925998151,0.011325627026972,0.0138136731951626,0.0159506701319879,0.0182894468258828,0.0203814624772573,0.022373929152636,0.024386243657424,0.0265324136798456,0.0285752464358033,0.0306927227049956,0.0329530921242625,0.0348208842644734,0.0369845147399801,0.0390717352081129,0.040965557355935,0.0429823283308702,0.0581143095536086,0.0716757446185692,0.0857636887608069,0.0979084157115693,0.1102977576019295,0.126091870253599,0.1395018698420433,0.1521616651252777,0.1638989092616704,0.1753684977290256,0.1889688404160347,0.2025003241561135,0.2143974620833514,0.2262466675407543,0.236478167187019,0.2473237316093035,0.2579821342939031,0.2684018213502726,0.2774242578918116,0.2862358650368539,0.2946646464880119,0.3029006348426923,0.310806974378386,0.3178658741191697,0.3243768524367135,0.3302197192818149,0.3357737313059258,0.3411612049664156,0.3471465015993059,0.3525289055488094,0.3531503380653503,0.3540418852492875,0.3539894066602806,0.3547646217625561,0.3555855882615024,0.3554625840957504,0.3556879019228942,0.3566644780039396,0.3577387261102944,0.3586253706283713,0.3601754484620142,0.3614126673389887,0.3626074198281283,0.363265945776524,0.3641941149580155,0.3666083961698019,0.3672398551344569,0.368746857717446,0.370362563237774,0.3734676007005253,0.375811614083219,0.3795222572543152,0.3798380976473564,0.3791813044142355,0.3814741968717804,0.3814652621612025,0.3799877225291589,0.3779141104294478,0.3797293565313449,0.3780769230769231,0.0,2.605590692620847,60.95165566504171,212.98794326673436,314.52084679793387,fqhc6_100Compliance_baseline_low_initial_treat_cost,96 -100000,95708,41658,391.9212605006896,7047,72.50177623605133,5481,56.80820830024658,2200,22.68357922012789,77.32145341825886,79.71002750531639,63.3143933609397,65.08083605302882,77.05542909533216,79.44192439073494,63.21730053651227,64.98542723622188,0.2660243229266967,268.1031145814501,0.0970928244274276,95.40881680693758,85.55932,60.14828804705385,89396.2051239186,62845.62214971982,256.9617,160.34899318280554,268028.9526476366,167086.94591530174,274.86956,131.751631211709,284684.84348225856,135695.2418445816,3654.29657,1639.4723354701498,3788832.574079492,1683862.2486015526,1367.73018,593.9237560151327,1419428.3445480005,610920.7757085429,2189.49272,903.5016668344504,2259068.437330213,918287.0471733776,0.37806,100000,0,388906,4063.463869269027,0,0.0,0,0.0,21802,227.32686922723283,0,0.0,25606,265.03531575207927,2036642,0,73086,0,0,0,0,0,57,0.5955614995611652,0,0.0,0,0.0,0,0.0,0.07047,0.1863989842882082,0.3121895842202355,0.022,0.3144441439004598,0.6855558560995402,25.3100070645218,4.59455085396534,0.3229337712096333,0.1981390257252326,0.2337164750957854,0.2452107279693486,10.964260352978654,5.310346287937047,23.388452301897576,12877.375357642031,61.83105197044452,12.715199096598182,20.111499152892645,14.19878181073611,14.805571910217584,0.5322021528918081,0.7697974217311234,0.6790960451977401,0.5807962529274004,0.1004464285714285,0.7183613752743233,0.9279538904899136,0.8782051282051282,0.7661870503597122,0.1313868613138686,0.4703451628585318,0.6955345060893099,0.6075268817204301,0.5294117647058824,0.0925233644859813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594634027721,0.0045837136193083,0.00677074874127,0.0090751110252944,0.0113645612892723,0.0137621220764403,0.0157255473857042,0.0181235258681424,0.0201803349076857,0.0223148024935256,0.0243392318891098,0.0265254985725728,0.0286798819063686,0.0308307400614141,0.0325763831544178,0.0345840096773193,0.0365739973483593,0.0386064323297736,0.0405170710400698,0.0424396548130237,0.0563615663418251,0.0700206220100702,0.0833210889779811,0.0965946162103003,0.1086234001920297,0.1241201934780538,0.1373681193877767,0.1496293613939419,0.1611986235492765,0.1725990669741005,0.186665230504093,0.2000173175166681,0.212638928159732,0.2237060856630354,0.2349402228308091,0.2466428278847325,0.2566919473566807,0.266262812443805,0.2756184947504478,0.2836712962432875,0.2913288379463098,0.298793321173004,0.3063000142052181,0.313557188582663,0.3200792329472955,0.3270583597186118,0.3326658072268045,0.3382472653268888,0.3437390843111634,0.348224649150575,0.3485485000269295,0.34923538148413,0.3493711179030691,0.349645902587079,0.351108466002083,0.3516458221437888,0.3509389671361502,0.3514398013386616,0.3526502250594739,0.3538725779614621,0.3548562738213702,0.3549147839873167,0.3555046834964506,0.3571204023891858,0.3590400464025908,0.3611526651444768,0.3616140713916192,0.363209939148073,0.3656397014608609,0.3658029430582213,0.3686526122823098,0.3704398135747576,0.3734739533397251,0.3773716409819562,0.3788731051577843,0.3832508748642452,0.387704280155642,0.3881457089936201,0.3883171070931849,0.3854207056998837,0.0,1.7791198517540725,60.87942181205611,206.82196664999083,312.3875505410803,fqhc6_100Compliance_baseline_low_initial_treat_cost,97 -100000,95699,41774,392.3447475940188,7099,72.7071338258498,5513,56.959842840573046,2271,23.291779433431905,77.3455376358958,79.7312125501305,63.32130932583449,65.0868881396018,77.06679514783332,79.4562320942201,63.21858947946277,64.98881671044424,0.2787424880624769,274.980455910395,0.1027198463717269,98.07142915755662,86.31326,60.63070078073479,90192.43670257788,63355.62626645502,257.02144,160.57158741879005,267937.05263377883,167152.45448624334,280.87442,135.00751198015942,290110.7012612462,138325.02604472896,3647.51336,1648.2889363250115,3772870.991337423,1683795.427669057,1355.02199,590.634044654607,1399659.850155174,600918.0186361475,2234.55058,928.4645111398108,2295336.711982361,935592.0961028256,0.37975,100000,0,392333,4099.65621375354,0,0.0,0,0.0,21781,226.9198215237359,0,0.0,26190,270.1909110858003,2033374,0,72932,0,0,0,0,0,48,0.5015726392125309,0,0.0,0,0.0,0,0.0,0.07099,0.186938775510204,0.3199042118608254,0.02271,0.3226581265012009,0.677341873498799,25.17908161341401,4.596197623648247,0.3243243243243243,0.2040631235262107,0.2388898966080174,0.2327226555414475,11.242881979263508,5.627694053909107,24.15377988067333,12930.507528463428,62.30157685434655,13.183034842231203,20.33957346546404,14.751810983998832,14.02715756265248,0.5583167059677127,0.7706666666666667,0.6996644295302014,0.6097190584662111,0.1223694466095089,0.7338593974175036,0.9303621169916436,0.8813186813186813,0.7838709677419354,0.1666666666666666,0.4989075018208303,0.695822454308094,0.6376594148537135,0.5561072492552135,0.1105626850937808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012401341452,0.0047162635022059,0.0067820701558454,0.009187178601191,0.0114246764873443,0.0135261764106742,0.0156635597887051,0.017952881345547,0.0198687009162303,0.0219659808911327,0.0240195274040039,0.0261914543960558,0.028174374588545,0.0303567380417533,0.0325287154666198,0.034674909797678,0.0368467395245247,0.0389413596263622,0.0409430312610495,0.0432929751807781,0.0576832694496955,0.0714106294350365,0.0845490229004429,0.0980408661433892,0.1108579625762082,0.1272119564642543,0.1398297890402818,0.1526041111939503,0.1645089214124589,0.1757267379449525,0.1892229900919647,0.202419896444897,0.2146511931719212,0.2259889478579635,0.235926733152808,0.2472767970922952,0.2580000669695177,0.2677940547717095,0.2767693040775112,0.2849162011173184,0.2932057704098749,0.3007856341189674,0.3082691648037093,0.3148496353162389,0.3206963108634691,0.3268170179239708,0.3322831101609091,0.3375974999364821,0.3425031010957204,0.3473499953935852,0.3488215850151837,0.3493782426089105,0.3501237832667529,0.351145809281921,0.3514463729417,0.3510156632403328,0.3508238276299112,0.3524057217165149,0.3537789951211161,0.3552131852382658,0.3560444937983474,0.3565182829888712,0.3564112291350531,0.3571027512633352,0.3586917107839582,0.3596003566371217,0.3589501402484401,0.3606215652833049,0.3621577758961332,0.3647941869285743,0.3673254643608747,0.3683592916577768,0.3694263487445449,0.372834585313506,0.3767632481890964,0.3777292576419214,0.3794663754095803,0.3794956593633733,0.3757643135075041,0.3768059351815697,0.0,2.5340016149275337,61.25957514840617,207.59338245018617,312.71807373741416,fqhc6_100Compliance_baseline_low_initial_treat_cost,98 -100000,95612,41523,390.94465129900016,6950,71.4868426557336,5415,56.05990879805882,2223,22.884156800401623,77.23812690061078,79.66982993153225,63.25655152000609,65.05464783931154,76.96228744906298,79.39284589312864,63.15539028145599,64.95526876439276,0.275839451547796,276.9840384036115,0.1011612385500981,99.3790749187866,85.8253,60.40132429237705,89764.15094339623,63173.37184911627,256.18304,159.89350018418295,267400.0439275405,166691.4092207913,274.74312,132.11171362632692,283551.7717441325,135257.649620249,3588.4184,1621.7794953877385,3719418.629460737,1662523.151265258,1308.82313,570.5556620727402,1354728.2035727734,582578.8207262065,2193.95652,918.1090781193476,2261174.747939589,931737.8121440236,0.37662,100000,0,390115,4080.1886792452833,0,0.0,0,0.0,21747,226.87528762080075,0,0.0,25548,263.4711124126679,2028860,0,72835,0,0,0,0,0,44,0.4601932811780948,0,0.0,2,0.0209178764171861,0,0.0,0.0695,0.1845361372205406,0.3198561151079137,0.02223,0.319015047879617,0.680984952120383,25.25433256191584,4.564501446998295,0.3268698060941828,0.2036934441366574,0.2326869806094182,0.2367497691597414,11.089129323762096,5.54467199418765,23.910926855631605,12800.674617895322,61.24437209676621,12.826378583324404,19.91786077935096,14.277976631427483,14.222156102663376,0.5407202216066482,0.7642792384406165,0.6745762711864407,0.5904761904761905,0.1146645865834633,0.6750184229918939,0.9098837209302324,0.8085106382978723,0.7290969899665551,0.1477663230240549,0.4958107442089699,0.6982872200263505,0.6325167037861915,0.5473465140478668,0.1049445005045408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023512242581482,0.0044425060602679,0.0066099423279993,0.0089344703861439,0.0111341801009607,0.0129893945413979,0.0152073027691366,0.0173660769010746,0.0195978151913753,0.0216832423463378,0.0236292374620372,0.0257904092557771,0.0278503941870278,0.0298141256275708,0.031848646639059,0.034135590414304,0.036211150504862,0.0383940165169064,0.040274394686986,0.0424681827665345,0.0572972746944877,0.0714757259171548,0.0845292374929086,0.0969994418056009,0.1087069011035429,0.1235701576004067,0.136846019015244,0.1498353282244225,0.1610497710446356,0.1725760195916263,0.1858229486972002,0.1986687481028576,0.210853220006538,0.2217571387872279,0.2327249884282219,0.2436109415746546,0.2544407158836689,0.2641437093336641,0.2737848841176337,0.2829566854990584,0.2913673656481728,0.2990969860443297,0.3056063231349837,0.3120498298522179,0.3184788704918432,0.3244195970265556,0.3297788160819925,0.3352917134974967,0.3410444461782528,0.3463949220147622,0.3468659138548921,0.3481975008293708,0.3480117653713445,0.3481619141645856,0.3485689557405915,0.3476279198681921,0.3467723957835738,0.3471921800439212,0.3475141923275417,0.3491789730875642,0.3513620436306092,0.3523163527141805,0.3542132579433731,0.355577083380269,0.3562247343322601,0.3576680672268907,0.3581510334320292,0.3612670027584895,0.3639610963748895,0.3674535449397879,0.3694074414331649,0.3737708422402736,0.3750079128948534,0.3765110941086457,0.3783477932855526,0.3825272641062114,0.3852334748332323,0.3928643014632191,0.3893465129049973,0.3911382734912146,0.0,2.270289043102438,59.87547383393152,204.17930783944283,309.85297260042665,fqhc6_100Compliance_baseline_low_initial_treat_cost,99 -100000,95719,44825,424.8895203669073,5951,60.97013132189012,4677,48.27672666868647,1893,19.369195248592234,77.33641368994157,79.7129002433944,63.332022412709286,65.09009998996936,77.10377876598561,79.4811770349833,63.24585366381358,65.00665997601985,0.2326349239559562,231.72320841109692,0.0861687488957088,83.44001394951306,159.55434,112.29242946232507,166690.3540571882,117314.67050671768,400.52658,263.43483702575725,417846.01803194766,274622.89307844546,381.18098,185.30741927177183,394694.37624714006,190848.80300702705,3398.9813,1544.85827822632,3512153.637208913,1575189.633924936,1142.02889,505.8217011033262,1177669.8356648106,513052.0999168701,1861.44694,777.0337859985658,1907801.899309437,782346.1692775999,0.3773,100000,0,725247,7576.834275326738,0,0.0,0,0.0,34727,362.1851461047441,0,0.0,34712,359.0405248696706,1568166,0,56264,0,0,0,0,0,73,0.7626490038550341,0,0.0,0,0.0,0,0.0,0.05951,0.1577259475218659,0.3180977986892959,0.01893,0.3397466730800064,0.6602533269199936,24.408011301435785,4.451823116621884,0.3264913406029506,0.2202266410091939,0.2195852041907205,0.2336968141971349,11.342112826891809,5.8115724579405885,20.1603193761888,11982.272145089222,53.069147059712606,12.366537690269716,17.242461770785027,11.524470557180104,11.935677041477753,0.5567671584348942,0.7786407766990291,0.7000654878847413,0.5715676728334956,0.1335773101555352,0.714516129032258,0.9206798866855525,0.8582089552238806,0.728744939271255,0.1512605042016806,0.4998545242944428,0.7045790251107829,0.6435555555555555,0.5217948717948718,0.1286549707602339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0044523778131624,0.0067008477587694,0.0087405480120334,0.0107626420353397,0.0129957427739188,0.0150827562997787,0.0175107208494996,0.0197519757087503,0.0217636099338697,0.0240787248218953,0.0262928246563247,0.0285775986179095,0.0304981048121292,0.0324314842331187,0.0345544001819196,0.036499373556851,0.0384679226491825,0.0404610459798786,0.0425824461990375,0.0572535424519928,0.071217827997489,0.0843645134228188,0.097171269092094,0.1098123946037099,0.1248454360025787,0.1368739068214342,0.1479843040505333,0.1586154634333774,0.1686359789606744,0.1806745297232146,0.1928654072816531,0.203518570838676,0.2133658120965187,0.2226812732806645,0.2325529962070529,0.2410304407897669,0.2493285837893719,0.2575635634047087,0.264943383278051,0.2722113706499,0.2796024200518582,0.2862695984025898,0.2916447273945718,0.2966295950420239,0.3009546304497589,0.3050925810240136,0.3088065257995248,0.313318155947638,0.3167816577180323,0.317043618739903,0.315416827373409,0.3143271968650447,0.3138409455881715,0.3137613859617789,0.3120725086648468,0.3109307633781384,0.311328041545465,0.3119473189087488,0.3120563571671226,0.3131595224261054,0.3140626544124913,0.3152476407691825,0.3171482762467923,0.3184415210293835,0.3192640974264227,0.3193034626712035,0.3229064739118083,0.3262513630447782,0.3290119270812557,0.3318775285031261,0.3351979345955249,0.33620246659815,0.3408037094281298,0.3448275862068966,0.3484573502722323,0.3482726423902894,0.3448770491803278,0.3484262838210933,0.3476263399693721,0.0,2.234335243660774,54.24619034635897,175.7135289961243,258.37263021376776,fqhc6_100Compliance_implementation,0 -100000,95615,45099,427.3388066725933,5982,61.36066516759923,4684,48.45474036500549,1835,18.82549809130367,77.26635035352784,79.70500073971813,63.26822878755484,65.07224732339576,77.03324567335545,79.47273488545349,63.18146697158886,64.98823951718455,0.2331046801723886,232.26585426463944,0.0867618159659784,84.00780621120418,157.9347,111.09753863178824,165177.7440778121,116192.5834145147,400.18528,262.934589253295,418016.2003869686,274471.49464364245,378.49484,184.35635880351543,392304.8684829786,190035.83705962315,3360.37974,1530.24777134615,3480394.655650264,1566385.8954798742,1130.78184,504.7816852661126,1167513.7583015217,512830.11977303127,1803.04166,763.2101200589091,1852774.020812634,769936.9087539412,0.38023,100000,0,717885,7508.079276264185,0,0.0,0,0.0,34590,361.2194739319145,0,0.0,34607,358.5525283689798,1572283,0,56395,0,0,0,0,0,56,0.5752235527898343,0,0.0,0,0.0,0,0.0,0.05982,0.1573258291034374,0.3067535941156804,0.01835,0.3281049935979513,0.6718950064020487,24.49715961012435,4.40757250714664,0.3270708795900939,0.2335610589239966,0.2147736976942784,0.224594363791631,11.08177870380702,5.654795199478965,19.775759944082974,12167.82141499598,53.16584341561136,13.129277007631936,17.233425711376178,11.120867377405178,11.682273319198051,0.5567890691716482,0.8025594149908593,0.674934725848564,0.558648111332008,0.1273764258555133,0.7256778309409888,0.9271356783919598,0.8439897698209718,0.6954732510288066,0.1891891891891892,0.4950437317784256,0.7313218390804598,0.6170026292725679,0.5150720838794234,0.1108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0047577986304844,0.0069769567469304,0.0091711403936879,0.0116956088027523,0.0138813865079445,0.016176110385369,0.0185361168163657,0.0206679217483834,0.0227687263039245,0.0248162896670635,0.0269514626976132,0.0289264280493705,0.0310444375708835,0.0332692943315154,0.0355838377567385,0.0376762023217247,0.0395920317400967,0.0416627637097865,0.0433227303540699,0.0583647825041554,0.0719188489630817,0.0849561983991933,0.0979008457706202,0.1104105277610553,0.1257282067577587,0.1372640707362693,0.1483136719499968,0.158380871854698,0.1686238275836135,0.1821172410073882,0.1940536322053372,0.2052183950603839,0.2148444347063978,0.2247167482255433,0.2346070656092285,0.2445402651950982,0.2536679841007105,0.2623381049761418,0.2703552053584741,0.2782049797336421,0.2848946135831381,0.2903653698110973,0.2968633845711134,0.30152574311592,0.3067486176935229,0.3112200135362094,0.3156519966361713,0.3204543097189088,0.3252122700682697,0.3237315081781682,0.3220086999614558,0.321882001493652,0.3193611331936113,0.3185867027525391,0.3168453292496171,0.3148007349680035,0.315078399789619,0.3156355801785164,0.3164099536664341,0.3170928768719114,0.3180187501238776,0.3201562762560914,0.3214869555480909,0.3219174780680613,0.3221685173089484,0.3219448094612352,0.3249076966770803,0.3292846078017181,0.3315132916185086,0.3326791419443176,0.3359923420548819,0.3386534929381214,0.3435438623095003,0.3437383525903839,0.3466228893058161,0.3541256623769871,0.3555110220440882,0.3593579978237214,0.3568215892053973,0.0,2.0818525919584867,55.111950293988166,174.71418444227814,258.02996418306924,fqhc6_100Compliance_implementation,1 -100000,95698,45303,429.3088674789442,5881,60.2624924240841,4565,47.05427490647663,1750,17.90006060732722,77.34534288058313,79.71316231789741,63.32656324425341,65.07410625771728,77.12145619332121,79.4909019106904,63.24259078382254,64.99297486088382,0.223886687261924,222.2604072070169,0.0839724604308642,81.13139683345594,159.4494,112.18737031805578,166617.27517816465,117230.6321114922,402.13681,265.4833449624251,419567.4831239943,276770.9094886258,385.14759,188.63624734526715,397521.7768396413,193372.8341050132,3267.60111,1491.7169491919208,3372869.725595101,1517152.614675249,1086.51021,480.75388628151046,1119233.1814666972,486245.7379271349,1715.06358,725.4155231562119,1756786.9547952935,729589.7493117981,0.3801,100000,0,724770,7573.5125080983935,0,0.0,0,0.0,34787,362.8393487847186,0,0.0,35113,362.07653242492006,1561115,0,56086,0,0,0,0,0,66,0.679220046395954,0,0.0,0,0.0,0,0.0,0.05881,0.1547224414627729,0.2975684407413705,0.0175,0.3335499593826158,0.6664500406173842,24.65213728719745,4.3273576745801385,0.3338444687842278,0.2302300109529025,0.2144578313253012,0.2214676889375684,11.11390792397654,5.7125938538645125,18.702113048650297,12092.241917377703,51.67226514633255,12.737309007776444,17.21214114994733,10.795595306642104,10.927219681966672,0.5640744797371303,0.7973358705994291,0.7001312335958005,0.5689479060265578,0.1117705242334322,0.7387173396674585,0.9197080291970804,0.8791469194312796,0.7168949771689498,0.1279620853080568,0.4972743791641429,0.71875,0.631578947368421,0.5263157894736842,0.1075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.004591247238157,0.0067468852725132,0.0090493601462522,0.0112774309015843,0.0134189922520082,0.0155244997604558,0.0178945111930014,0.0202093512972011,0.0223869138405789,0.0244807577963217,0.0264017252002464,0.0289029232066816,0.0309676621784503,0.0329927760577915,0.0351461148037502,0.0371693697052548,0.0391448733914487,0.0412776310590779,0.0431529475516095,0.057513158994068,0.0717335789341482,0.0853392373717235,0.0986269661739176,0.1113631807198404,0.1271482390789028,0.1386503327990148,0.1499398238382805,0.1598110566082096,0.1696447724055086,0.1823059766622491,0.1935875085272493,0.2051362968605473,0.2151670078714296,0.2244234962447415,0.2347555230399166,0.2441349137257528,0.2528046269311699,0.2618709772626656,0.2694444762679436,0.275815783383476,0.281955019122136,0.2884028123002627,0.2941098927437234,0.2996051752414505,0.3036044476221,0.3078791217045141,0.3119429363373978,0.3160902411527646,0.3208571692803635,0.3197384387218552,0.318252579663025,0.3171516922946583,0.3157833801267765,0.3156054745611425,0.3138553016719538,0.3114569986871036,0.3116478762454116,0.3125851034858388,0.312987012987013,0.31418124836772,0.3148782119387714,0.3158268275372605,0.3165933501551928,0.3163881207166045,0.3170115840166602,0.3189227498228207,0.3233860383726017,0.3270780285325613,0.3314436439510255,0.3355113894182775,0.3382352941176471,0.3412494517200325,0.3448982690555724,0.3472404115996258,0.350088287227781,0.3513431476703597,0.3528229857343781,0.3551120831055221,0.3534214618973561,0.0,2.5674667598894185,54.87850371665687,163.39768411863457,251.34179920872916,fqhc6_100Compliance_implementation,2 -100000,95658,45503,431.43281272867927,6066,62.0230404148111,4764,49.175186602270585,1869,19.10974513370549,77.2498286400838,79.64848584295257,63.26585613190741,65.03874924307354,77.01040332437846,79.41256729742649,63.177101370982015,64.95458767349295,0.2394253157053469,235.9185455260757,0.0887547609253971,84.16156958058707,157.9138,111.2396780263588,165081.64502707563,116288.94397369667,400.67632,263.9071596864612,418237.6068912166,275261.89162089454,387.32297,188.64089556701555,401422.6201676807,194559.1265527165,3397.84472,1540.1262281322522,3507711.053963077,1565796.9368219832,1149.47499,502.8039742957026,1184718.1103514603,508796.4654464002,1827.98372,766.5574689357321,1870897.8234962053,765302.4088215731,0.38274,100000,0,717790,7503.711137594347,0,0.0,0,0.0,34590,360.9316523448117,0,0.0,35325,365.8345355328357,1565588,0,56153,0,0,0,0,0,73,0.7526814275857743,0,0.0,0,0.0,0,0.0,0.06066,0.158488791346606,0.3081107814045499,0.01869,0.3461175730902232,0.6538824269097768,24.482911836010626,4.341321121480268,0.3228379513014274,0.2338371116708648,0.2222921914357682,0.2210327455919395,11.15785799449434,5.781956793713561,19.850344673291463,12239.437953985967,53.8897281383065,13.400377203849878,17.31057115582141,11.828371078154444,11.350408700480772,0.5564651553316541,0.7935368043087971,0.6729518855656696,0.5684608120868744,0.1234567901234567,0.7416534181240063,0.9424460431654677,0.8110236220472441,0.7518518518518519,0.1473684210526315,0.4900171135196805,0.7044476327116213,0.6274848746758859,0.5057034220532319,0.1181923522595596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995259127193,0.0045432880018659,0.0065874280610225,0.0089006299532615,0.0113415589303333,0.0133929480781374,0.0155096463678264,0.0178485730331342,0.0198097770505215,0.0222037873434315,0.0245761234139886,0.0266974833076528,0.0288316098163296,0.0308895828824093,0.0329547800949824,0.0350191333126486,0.0369414739285418,0.0393172686593507,0.0412201668782122,0.0433127926011657,0.0581044228739799,0.0721638688462787,0.0857577665827036,0.0992076436606231,0.111465237029845,0.1274740162147287,0.1396257672620691,0.1508915154163425,0.1615971412370141,0.1716053892601586,0.1849122163352073,0.1971499528245616,0.2086873071092838,0.2185316411263341,0.2284162536290278,0.2390794635019057,0.2489812368456405,0.2576096031047632,0.2661347235185649,0.2736798566110575,0.2808853071983464,0.2871841854892702,0.2936422093589911,0.2995621210663073,0.3041549355857009,0.3078131183221211,0.3117474984620406,0.3161947818091261,0.320502994323127,0.3237614848942198,0.3223867289871126,0.3218942749513598,0.3210087595365922,0.3187155697303566,0.3185239280444729,0.3168088894345877,0.3146078104932693,0.3150876615359289,0.3154556829673814,0.3160245372363323,0.3171975241284593,0.3183513170422088,0.3197975938018351,0.3211015351467816,0.3208299115984735,0.3209151861417652,0.3218037407122726,0.325598168647496,0.3295040627626786,0.3330291608807776,0.3374324998865544,0.3417220639442861,0.3426941641070645,0.3451206556381848,0.3461933675852405,0.3485741220834315,0.3501601342077169,0.347001223990208,0.3452544704264099,0.3371255214258627,0.0,2.3485243705728784,54.97665655356159,176.55078340943174,265.1197249073415,fqhc6_100Compliance_implementation,3 -100000,95740,45234,428.2953833298517,6026,61.656569876749536,4738,48.84060998537706,1871,19.082932943388343,77.32698317968122,79.68703809938646,63.31555014592704,65.06144573230421,77.09088582894627,79.45573304022496,63.22657560526129,64.97759105051536,0.2360973507349513,231.3050591614996,0.0889745406657525,83.85468178884992,158.13864,111.2860673995866,165175.09922707334,116237.79757633863,399.92181,263.1641900612637,417092.166283685,274249.61711034575,379.49962,184.22937665725487,393044.9550866931,189793.2070687441,3394.37707,1556.8115322631145,3500289.3879256323,1580970.3071614853,1114.48508,498.7936647557455,1145241.7275955714,502171.4369185024,1834.69786,780.2307555338716,1873105.0135784417,777011.1229920327,0.38182,100000,0,718812,7507.95905577606,0,0.0,0,0.0,34561,360.3091706705661,0,0.0,34723,359.2542302068101,1572341,0,56425,0,0,0,0,0,66,0.6893670357217464,0,0.0,2,0.0208899101733862,0,0.0,0.06026,0.1578230579854381,0.3104878858280783,0.01871,0.3378058405682715,0.6621941594317285,24.280756530203217,4.278610398613179,0.3262980160405234,0.2363866610384128,0.2171802448290418,0.2201350780920219,11.208202193925413,5.827599519774191,20.01382763090518,12194.875902880964,53.816089247934194,13.51339057236793,17.524779693648522,11.301752704011118,11.476166277906623,0.5637399746728577,0.8017857142857143,0.6752910737386805,0.5811467444120505,0.1255992329817833,0.7120743034055728,0.9263657957244656,0.8374384236453202,0.6752136752136753,0.1385281385281385,0.508125362739408,0.7267525035765379,0.6175438596491228,0.5534591194968553,0.1219211822660098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.004603435338971,0.006739337839758,0.0090417750325097,0.0112789219425375,0.0132885290972964,0.0154586613370314,0.0178020946042504,0.0200318874943788,0.0221287397263078,0.0243719957774338,0.0267612429042158,0.0288533689674667,0.03098356604473,0.0330919518887582,0.0349780418496512,0.0369825854678731,0.0390037447744318,0.0412015383016318,0.0432255039849976,0.0583494284073706,0.0726802883357919,0.0862699868938401,0.0982748289021351,0.1104048070841239,0.1245849635190863,0.1369383512240655,0.1483271929637753,0.1597237811200547,0.1698190171536529,0.1822278279055226,0.195162635529608,0.2055350593663956,0.216421748312197,0.2261047625338529,0.2366262442636398,0.2462409794678165,0.2553555740769941,0.2637318943481965,0.2718249647568509,0.2786315679757258,0.2851536875644269,0.2918321144523332,0.2970462210593276,0.3033351172521163,0.3083593393445252,0.3128297016552432,0.3165148716642252,0.320519635425445,0.3248131815901349,0.3236949846468782,0.3218208848388074,0.3202045387313527,0.3193898207056102,0.3195338397276768,0.3172186445875498,0.3147801832070747,0.3154160713405922,0.3168956325610006,0.3175319118590886,0.3192544491644366,0.3212656277774486,0.3222063698543913,0.3232323232323232,0.3239619377162629,0.3257159236000729,0.3269805148627506,0.3302271586345381,0.3314181614349776,0.332541473650869,0.3342553963359332,0.33882987157127,0.3414099674430253,0.3411222020568663,0.340930319447039,0.3445842643772786,0.3399696048632218,0.3392425463336019,0.3329649074329925,0.3320433436532508,0.0,2.542876262754617,56.40957715450441,177.22404369090626,255.79160750662615,fqhc6_100Compliance_implementation,4 -100000,95773,45184,428.65943428732527,5890,60.44501059797647,4656,48.176417153059845,1863,19.076357637329934,77.39144353273707,79.73088185188016,63.36142006586866,65.0874321336049,77.16696912302163,79.50911243631796,63.27805309073244,65.00786189424491,0.2244744097154409,221.7694155621928,0.0833669751362151,79.5702393599953,159.23732,112.00678139505813,166265.3566245184,116950.26927741444,400.71011,263.3930243861204,417947.8663088762,274570.20703759976,380.76403,183.9629255475224,395683.52249590174,190401.5005247296,3364.00654,1524.0158763562358,3481203.32452779,1560003.546256499,1155.36305,509.2662034435631,1193676.5163459429,519063.7898401037,1831.40634,764.6021724812518,1877492.8006849529,766933.5842067605,0.38057,100000,0,723806,7557.516210205382,0,0.0,0,0.0,34578,360.59223371931546,0,0.0,34838,361.9391686592255,1571354,0,56420,0,0,0,0,0,66,0.6786881480166644,0,0.0,0,0.0,0,0.0,0.0589,0.1547678482276585,0.3162988115449915,0.01863,0.3266526588007111,0.6733473411992889,24.36323211140178,4.460495298933605,0.3069158075601375,0.2330326460481099,0.2291666666666666,0.2308848797250859,11.316404479143102,5.714482009681675,19.662143557910035,12110.394993704913,52.70528828510493,12.944936118394128,16.29167104721415,11.702086405381674,11.76659471411497,0.5659364261168385,0.7926267281105991,0.7193841847445767,0.5613870665417057,0.1376744186046511,0.7308943089430894,0.9240506329113924,0.8835978835978836,0.6751054852320675,0.1818181818181818,0.506713368359603,0.717391304347826,0.6603235014272122,0.5289156626506024,0.1263157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780657702899,0.0043069813634382,0.0067977516690002,0.009028955627101,0.0112149342660471,0.013201286540184,0.0151823925005094,0.0174566898606321,0.0196446996087405,0.0217013178358025,0.0239344262295081,0.0261203217334208,0.0281542524223959,0.0304025194775789,0.0322657127836135,0.0341504230066007,0.036109041231992,0.0380837801678092,0.0402386669577239,0.0422001145893015,0.0564277065675754,0.0710347064547518,0.0847302939386945,0.0981470575863374,0.1106155500727525,0.1259636025251937,0.13800307545469,0.1489425081918379,0.1598231543875012,0.1699110301211276,0.1824434876210979,0.1936621241617997,0.2054693274205469,0.2148124679070479,0.2239578752968076,0.2347851104324348,0.2442618747700848,0.2529683340260382,0.2609267319550236,0.268470426724631,0.275422112817668,0.2825225814744271,0.2886973383940501,0.2942338782108856,0.299417828987265,0.3051085191200354,0.3104546988042134,0.3151510527921879,0.3190272927176303,0.3230132799325463,0.3215039170104409,0.3205052515960733,0.3191967736042606,0.317847882454624,0.3172859067955989,0.3154548642344224,0.3139527549121645,0.3150297521741973,0.3154822680552719,0.3166963332146671,0.3174395331001328,0.317624770587887,0.3188430063416982,0.3204087565126003,0.3236051915528907,0.3242495432002088,0.3238217286060088,0.3282346646523778,0.3311871085778622,0.3333995628849592,0.3341093764265498,0.3377953175830622,0.3399052132701421,0.3389223382364149,0.3405071582296248,0.343269569299378,0.3449310137972405,0.3530115676106901,0.3626047014320454,0.3656884875846501,0.0,1.7304040876975268,54.52400612006837,172.38115089590656,259.03952900260566,fqhc6_100Compliance_implementation,5 -100000,95727,44996,426.755251914298,5832,59.74281028341011,4562,47.0818055512029,1775,18.14535084145539,77.37264048070351,79.7321268775193,63.34029949113111,65.08182619856868,77.15227318725228,79.5149999231617,63.25834538555421,65.00406403183975,0.2203672934512326,217.1269543576102,0.081954105576905,77.76216672893099,159.72198,112.42212985133251,166851.54658560283,117440.3562749616,400.74921,263.2782057908009,418064.2556436533,274456.9095352417,374.3811,181.4601689311017,387423.85116006975,186740.98585973372,3297.52733,1488.2419151086124,3407356.942137537,1517309.8134367664,1096.80007,476.5361394239952,1131725.2394831134,483774.3681761629,1740.76666,724.49810628599,1782298.327535596,725456.8724450014,0.37979,100000,0,726009,7584.161208436491,0,0.0,0,0.0,34603,360.86997398852986,0,0.0,34263,354.3096514045149,1567247,0,56203,0,0,0,0,0,79,0.8252635097725824,0,0.0,0,0.0,0,0.0,0.05832,0.1535585455119934,0.304355281207133,0.01775,0.3380189604445897,0.6619810395554102,24.52289463798839,4.465470326383644,0.3145550197281894,0.2314774221832529,0.2281893906181499,0.2257781674704077,11.405899458008683,5.840602201617839,18.74195853126209,12039.243226351631,51.47113127410088,12.489726842338232,16.30177961628684,11.576266350252144,11.103358465223664,0.5611573871109162,0.7878787878787878,0.7073170731707317,0.5802113352545629,0.1058252427184466,0.724429416737109,0.912568306010929,0.8847184986595175,0.6962025316455697,0.1352657004830917,0.5039952648712637,0.7217391304347827,0.6450094161958568,0.5460199004975125,0.0984204131227217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468354430379,0.0044490387441346,0.0063909431206062,0.0087646246343841,0.0109304619264049,0.0131420892969847,0.0153000897007257,0.0174539664393908,0.0193911763503291,0.021660575909263,0.0237968298234461,0.0258932238193018,0.0278968853790706,0.029877031452759,0.0317974537275859,0.0341901543104606,0.0361960967023865,0.0382744349593917,0.0402752226830054,0.042370145087542,0.0566025915445898,0.0707215502448415,0.0843101893597835,0.0965219310692775,0.108824676625307,0.1234841997314641,0.1349972421400992,0.1461761137481109,0.1574495354053188,0.1670581169632036,0.1802899112604462,0.1925844179731031,0.2038761038848044,0.2142286870454421,0.2239140958500198,0.2342332362161982,0.2430969441282171,0.2515534942363112,0.260019306115496,0.2673224194066125,0.2750303801863318,0.2819153914549113,0.2886970321419266,0.2938650159552772,0.2982070139184343,0.3040653012909828,0.3090510766149223,0.3131152544959683,0.3174001371617862,0.3212261041529334,0.3207407606649093,0.3199752628324057,0.3191585168507704,0.3178412093385888,0.3161638059036645,0.3140474368783473,0.3119210950589574,0.3120448730564849,0.3130377008126203,0.3137415304725152,0.3146421511953157,0.3165870629164455,0.3174967644971402,0.3176234979973297,0.3188846337960747,0.3196279599979273,0.3211790331249469,0.3244843272885898,0.3255676483883306,0.3286672156216915,0.3332432310672613,0.3339829347940588,0.3362765357880894,0.3363306634426477,0.3372461337805105,0.3393697083725305,0.3441479684657368,0.344917637605464,0.3468886462882096,0.3509908536585366,0.0,2.281614958426182,51.72470245422902,170.7710255965658,253.51627629265167,fqhc6_100Compliance_implementation,6 -100000,95743,44870,425.55591531495776,6013,61.65463793697712,4695,48.46307301839299,1862,19.103224256603617,77.33281654085012,79.69914968208266,63.319784280511655,65.07093127553648,77.10317776658154,79.46861222159778,63.23497510479138,64.98768638370792,0.2296387742685794,230.53746048488225,0.0848091757202738,83.24489182855643,158.14744,111.17087217101152,165178.885140428,116113.6285503395,396.58509,260.4820200209556,413659.160460817,271505.9139790226,378.70465,184.1609068499953,391177.8824561587,189006.6911337708,3362.88521,1529.0776046038395,3474726.3716407465,1559486.4590109668,1126.7395,498.6519121845904,1161315.1770886646,505445.32814216,1821.65154,762.3333901284543,1870721.243328494,770883.5668098886,0.37868,100000,0,718852,7508.131142746729,0,0.0,0,0.0,34263,357.26893872136867,0,0.0,34480,355.9111371066292,1577876,0,56680,0,0,0,0,0,88,0.8982379912891805,0,0.0,0,0.0,0,0.0,0.06013,0.1587884229428541,0.309662398137369,0.01862,0.3377777777777778,0.6622222222222223,24.40590891356061,4.312592617264771,0.3194888178913738,0.2340788072417465,0.2242811501597444,0.2221512247071352,11.360966391072004,5.999001483000233,19.74349674114456,12110.06437969466,53.24264685630203,13.258839635539884,16.844186329049265,11.75045155233111,11.389169339381777,0.5614483493077742,0.7734303912647862,0.6886666666666666,0.5982905982905983,0.1179290508149568,0.7235772357723578,0.8673218673218673,0.8849315068493151,0.7418032786885246,0.1542056074766355,0.5038961038961038,0.7182080924855492,0.6255506607929515,0.5550061804697157,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0043309362733662,0.0067722611432632,0.0091887661235401,0.0116693118463354,0.0141480606258148,0.0163676969987456,0.0184788157223073,0.0204085806016236,0.0226190598089308,0.0245340277635383,0.0264403577406072,0.0284915224611082,0.0304734245785316,0.0323449300482852,0.0342019038956475,0.0363907500802584,0.0382611763729193,0.0401767611125552,0.0422522006354497,0.0573749099602259,0.0712880816873116,0.0841189115503591,0.096226831652982,0.1078200925467213,0.1237681343315146,0.1363409797121737,0.1475662845525859,0.1584917752616962,0.168607768697853,0.1818123088849649,0.1943071047592258,0.2051413099031111,0.2154438212688729,0.2247459193101324,0.2353918214131481,0.2443281366826993,0.253283661042893,0.2620288078455409,0.2691660273219664,0.2761426372379949,0.2828529955751176,0.2904387377996778,0.2960569695371225,0.3007194419463821,0.3053067870623936,0.3110582341891045,0.3153078626517677,0.3197709073003861,0.3233355785358638,0.3223542407587024,0.3213386011040293,0.3204504771167209,0.3188441412009598,0.3184590212702662,0.3167948285898103,0.3139225679825255,0.3139580667388522,0.3143417797116287,0.3153927037479282,0.3153569690389727,0.3158945371175587,0.3164403339540917,0.3178266886914594,0.3185912989165685,0.3199708264957933,0.3194416749750747,0.3207191350264018,0.3241582698451708,0.3279326503057739,0.3290275629946329,0.3319352269710645,0.3342963009483137,0.3393548387096774,0.3436973215958044,0.347512702351412,0.3467619337184555,0.3549687562991332,0.3545904343045629,0.346743295019157,0.0,2.186889477935673,53.747759067198494,181.21800371746576,255.5458386851384,fqhc6_100Compliance_implementation,7 -100000,95785,45187,427.7078874562823,5891,60.312157435924206,4695,48.48358302448192,1877,19.26188860468758,77.34910350822409,79.6786529846833,63.34642956891118,65.0671309391283,77.11162235103787,79.44153937523659,63.25745595782613,64.98079396053308,0.2374811571862238,237.113609446709,0.088973611085052,86.33697859522727,159.97916,112.52735908752888,167019.0113274521,117479.1032912553,401.42435,263.4854001132567,418587.7955838597,274578.8694610396,383.84013,186.31786187434244,397183.97452628287,191819.49122391504,3363.11302,1541.090896273307,3474239.672182492,1572039.8248925267,1091.12621,488.07521817817735,1125468.3092342224,495880.1776668337,1837.6423,778.7271259331069,1887044.1509630943,785722.7858037914,0.38047,100000,0,727178,7591.773242156914,0,0.0,0,0.0,34595,360.6410189486872,0,0.0,35071,362.6559482173618,1566285,0,56296,0,0,0,0,0,74,0.7725635537923474,0,0.0,0,0.0,0,0.0,0.05891,0.1548348095776276,0.3186216262094721,0.01877,0.3417190775681342,0.6582809224318659,24.45231646542308,4.431474338170902,0.3288604898828541,0.227689030883919,0.222790202342918,0.2206602768903088,11.28127996506746,5.865073896395336,20.072935241142723,12101.233617443411,53.414240246858725,12.81533321256091,17.443766789847135,11.659147473300251,11.495992771150435,0.5584664536741214,0.7839101964452759,0.6845854922279793,0.5755258126195029,0.1206563706563706,0.7220496894409938,0.9256410256410256,0.837772397094431,0.728744939271255,0.180672268907563,0.4966245964191371,0.7025036818851251,0.6286472148541115,0.5281602002503129,0.1027568922305764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0046929322210847,0.0070609002647837,0.0092838061573777,0.0114593077642656,0.0138543914654505,0.0161030595813204,0.0182476909731081,0.0203333026801132,0.0223752327556219,0.024587140925296,0.026628494027829,0.0287646315270227,0.030774931296767,0.0330130320026393,0.0354475877668639,0.0374367517564645,0.0394852811563546,0.0412402198647146,0.0433288557058511,0.0576258805113488,0.0719261180604945,0.0854285055253832,0.0981313322402993,0.1101614535030773,0.1245878424078457,0.1366546533813864,0.1474013336311138,0.1578295765027322,0.1680684874264713,0.1810226991421898,0.1926183859072378,0.2040814107721411,0.2147941610628178,0.2240595878579837,0.2344667183519769,0.2442244592754626,0.2528504284075831,0.2606475913866261,0.2682449372087965,0.2756662348477838,0.2823026970104721,0.2891992661419187,0.2950375687562165,0.3003169668338535,0.3051647823245835,0.3095574888902798,0.3138962080421583,0.3192021566137017,0.3226147382883716,0.3214107626581852,0.320615418520406,0.319949281487743,0.3179657588672975,0.3171390815008389,0.3146887382770069,0.3123823682920271,0.3128997343304142,0.3128753753753753,0.3141500508737794,0.3143835872861368,0.315131617981528,0.3167441665619371,0.3169274155643591,0.3182825751734772,0.3194135939582407,0.319035772497212,0.323016123932975,0.3269603866097569,0.3312836893591535,0.3349030724213606,0.3360874200426439,0.3395686199656423,0.3402330573443728,0.344106463878327,0.3502348548717331,0.3549138332557056,0.353217568947906,0.3575186928828579,0.3547244094488189,0.0,2.077733779615877,56.6444783926834,170.7465326760313,260.35477652408423,fqhc6_100Compliance_implementation,8 -100000,95665,45187,427.9726127632885,6003,61.41221972508232,4712,48.659384309831175,1859,19.097893691527727,77.31532774038504,79.70800963311507,63.31028192710126,65.07664815695136,77.08608916944087,79.4790707176216,63.22388452598688,64.99273121307448,0.229238570944176,228.93891549347245,0.0863974011143753,83.91694387688631,157.89444,111.11375076394532,165049.32838551197,116148.80130031392,398.87368,262.3414651248561,416369.66497674177,273650.57766670786,381.88913,185.8294234453746,395349.9189881357,191287.10177130357,3344.91618,1526.2025190238417,3458729.033606857,1557601.493779167,1092.82035,485.0103746787833,1130032.279308002,494679.77283100673,1820.50304,767.4916510537561,1871439.8578372444,775402.1064966235,0.37984,100000,0,717702,7502.242199341452,0,0.0,0,0.0,34385,358.8146134950086,0,0.0,34850,360.41394449380647,1574227,0,56465,0,0,0,0,0,80,0.8362515026394187,0,0.0,0,0.0,0,0.0,0.06003,0.1580402274641954,0.3096784940862901,0.01859,0.3355948248658883,0.6644051751341117,24.547568490663654,4.364573151831576,0.3249151103565365,0.2376910016977928,0.2171052631578947,0.2202886247877759,11.248703825109548,5.861053254799381,19.76563273543016,12138.786027076709,53.33035788341659,13.445692480104436,17.195267828367307,11.334601279279989,11.35479629566484,0.5519949066213922,0.7696428571428572,0.6923579359895493,0.5610948191593352,0.1011560693641618,0.7086614173228346,0.9014423076923076,0.848404255319149,0.6908396946564885,0.1157407407407407,0.4941894247530505,0.6917613636363636,0.6415584415584416,0.5164257555847569,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.005018349925992,0.0073981611155087,0.0096214414890374,0.011871337890625,0.0141991341991341,0.0162274081024846,0.0185281650579643,0.0206677915835762,0.0229074077866754,0.0251881935470637,0.0270980996404725,0.0291960290108533,0.0310777252259214,0.0330928271348795,0.0351857023177883,0.0373118090165887,0.0394092248930958,0.0413481042284287,0.043420257228024,0.0579446673353393,0.0718182294120726,0.085615324061926,0.0982742291907818,0.1102210965120574,0.1251018874315898,0.1368728431112291,0.1485986982967073,0.1590598144426867,0.168967219801215,0.1818211213865356,0.1943108974358974,0.2054382966680092,0.2152987524622455,0.2253364463337812,0.2349202475763693,0.2440040661758956,0.2529206527855937,0.2610132158590308,0.2687030775402602,0.2753755806006973,0.2823595518771291,0.2890451999478963,0.2952407238515816,0.3006380263717567,0.3054134355775276,0.3106453309293066,0.3153662136712984,0.3198016854150755,0.3236897329972151,0.3220364086820703,0.3204212265124923,0.3192756663897376,0.3181180689096771,0.3171938373768738,0.3153978073130397,0.3137202164351486,0.3131734957911631,0.313854548554864,0.3159461097052429,0.3175516609992153,0.3185341512001736,0.3187793034159411,0.3189499296827912,0.3209998079139454,0.3215614834092388,0.3227427135965288,0.3247150929696625,0.3282109121669251,0.329344661162299,0.3332115454877603,0.3385073357431427,0.3422865449029893,0.3463751438434982,0.34967815221507,0.3501903855306996,0.3518856447688564,0.3575563984827311,0.3585941790225151,0.3628787878787878,0.0,2.2866048374047243,55.510938055213245,174.84591472582215,257.4358204280548,fqhc6_100Compliance_implementation,9 -100000,95629,45037,425.885453157515,5866,60.211860418910575,4646,48.01890639868659,1850,18.92731284443004,77.3146043072854,79.7335418121324,63.296484254502126,65.08282167535233,77.0817093015994,79.50381135684611,63.20848971000333,64.99901639502579,0.2328950056860037,229.73045528628688,0.0879945444987981,83.8052803265441,160.00248,112.43940346049864,167315.85606876574,117578.77156563246,399.3022,262.7414384198434,416983.87518430606,274181.2090682151,377.2713,183.75555125040745,391468.6758200964,189778.17018647984,3365.73374,1542.221542322077,3479615.6709784693,1573078.4879067277,1125.45038,498.54319072441785,1164587.6564640433,509064.16824775335,1820.90784,773.9133586406211,1865080.5090506016,775326.2449872853,0.37927,100000,0,727284,7605.266184943897,0,0.0,0,0.0,34417,359.30523167658345,0,0.0,34545,358.1863242321889,1563318,0,56112,0,0,0,0,0,57,0.5960534984157525,0,0.0,1,0.0104570789195746,0,0.0,0.05866,0.1546655416985261,0.3153767473576542,0.0185,0.3380487804878049,0.6619512195121952,24.454819516986344,4.420886093282186,0.2996125699526474,0.2425742574257425,0.2257856220404649,0.232027550581145,11.202471822843224,5.702416052007533,19.80690347214672,12096.071465933786,52.65611238358037,13.535923663579885,15.606324611374273,11.631630259862678,11.882233848763546,0.5482135170038743,0.7852706299911268,0.6910919540229885,0.5586272640610105,0.1057513914656771,0.6996830427892234,0.8971291866028708,0.8260869565217391,0.7016806722689075,0.1554621848739495,0.491725768321513,0.7193229901269393,0.642578125,0.5166461159062885,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025939023031015,0.0047662025534676,0.0069639014090226,0.0090738200477569,0.01129150390625,0.0136585862701161,0.0157689130057832,0.0181325978138727,0.0202820877356271,0.0224472867661365,0.0245948717948717,0.0267180277349768,0.0286719545693034,0.0309727674569565,0.0332896353107548,0.0352999565729884,0.0373735908488063,0.0396698504983388,0.0420975965040058,0.0442010846891948,0.0584724414387105,0.0726392759119193,0.085795896078802,0.0980829762819635,0.1098502042669087,0.1254474213703272,0.1365635490587685,0.1481998593140494,0.1585445441804234,0.1680723732983786,0.1804998057749579,0.19289345603937,0.2044481251838856,0.2144406705379642,0.2243705630759733,0.2342305344358732,0.2433888454230468,0.2520365508771534,0.2606838092424466,0.2686395962376692,0.2763915102532334,0.2826402377664927,0.2885366604323019,0.2938934043012299,0.2993358345778846,0.3044094274766838,0.3093886025916846,0.3136736380395397,0.3173190140389467,0.3209150154349489,0.320176619460449,0.3186131587633403,0.3176303143891887,0.31596910884216,0.3146764688374308,0.3122018559705499,0.3104754958697341,0.3113934048575001,0.3131041338177829,0.3146724359891288,0.3159234238449014,0.3161076865509975,0.3180841969182009,0.3187011425135297,0.3201644320164432,0.3218497827436375,0.3223633945499307,0.3257785952551673,0.3290133779264214,0.3319659198485327,0.3361629114552761,0.3400179428993614,0.3434426229508197,0.3455469579729934,0.3487304413004778,0.3549272250059652,0.3594669972110319,0.367047308319739,0.3660542911982451,0.3670935195964299,0.0,2.1229565945667326,55.41064544705501,170.4002550387916,255.29218369452863,fqhc6_100Compliance_implementation,10 -100000,95639,45500,432.072690011397,6031,61.9098903167118,4730,48.80854044898002,1843,18.82077395204885,77.29129418892526,79.69191994968165,63.29829466637945,65.07015324463869,77.05611480324454,79.46031945890824,63.21025649144714,64.98639607872663,0.2351793856807233,231.6004907734026,0.0880381749323078,83.75716591206128,157.47974,110.85768436923864,164660.58825374587,115912.63435339,400.87767,263.31615616703283,418490.0093058272,274655.8895084985,388.76194,188.9995957420436,402479.3755685442,194472.2637918044,3345.63427,1534.374078240059,3453311.494264892,1559460.4588505311,1108.33213,494.0891820793242,1140135.6664122378,497884.1289425062,1799.23166,764.1352339654917,1839203.2329907257,763487.9095662524,0.38293,100000,0,715817,7484.572193352084,0,0.0,0,0.0,34546,360.5223810370247,0,0.0,35444,366.76460439778754,1572918,0,56477,0,0,0,0,0,83,0.8364788423132823,0,0.0,0,0.0,0,0.0,0.06031,0.1574961481210665,0.3055877963853424,0.01843,0.3334914611005692,0.6665085388994307,24.605515996141627,4.357558956416156,0.3150105708245243,0.246723044397463,0.2255813953488372,0.2126849894291754,11.146605125873954,5.765550577530137,19.8370810504698,12238.332478288983,53.83272574249515,14.077209971712374,16.739299272122985,11.931263974858055,11.08495252380172,0.5670190274841438,0.7883461868037703,0.6959731543624161,0.5660731021555764,0.1202783300198807,0.7323943661971831,0.9302884615384616,0.8297872340425532,0.7376425855513308,0.1928251121076233,0.5057937427578215,0.7097203728362184,0.6508078994614004,0.5099502487562189,0.0996168582375478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020562584200237,0.004369867180371,0.0067598428793276,0.0090844426379432,0.0112932271159539,0.0133523450628914,0.0157534106898872,0.0180325525353809,0.0203766563062326,0.0225052730735363,0.024643120846665,0.0266933703076054,0.0287536649349313,0.0306555654019743,0.0326736659543497,0.0347727155194704,0.0367802512125357,0.0387386826148351,0.0410471443881426,0.0429121010873984,0.0574041174626397,0.0715228458299289,0.0854088789953379,0.098866399317945,0.1113796597289652,0.1273537474729299,0.1399634804025648,0.1509070186090606,0.1610395997263085,0.1707982178324118,0.1833610074828024,0.1952093733418519,0.206631542279892,0.216442016052208,0.22679173739556,0.2370350649494714,0.2462903369983016,0.2552858526040846,0.2641779352157771,0.272113676731794,0.2799249921866861,0.2860569048621835,0.2927201885384715,0.2977702613555947,0.3029868171425792,0.3087621868443786,0.3138539800278157,0.3187569282519781,0.3228997834627802,0.3271023102310231,0.325811362442238,0.3243820441456088,0.3235356371795053,0.3216529164857432,0.3206496657883376,0.3190133165404641,0.317116888472947,0.3181982812551447,0.3185463143826462,0.3196690485144791,0.3202803510024615,0.3203394535432446,0.3214893572314093,0.3218151260504202,0.3227148146367264,0.322774753184506,0.3232162630248999,0.3249678451548138,0.3290965907095958,0.3339824345268847,0.3362751342007096,0.3397513885215551,0.3432403501038977,0.342972993650065,0.3452876608629825,0.3473254977212761,0.347008547008547,0.3466804979253112,0.3455307262569832,0.3505945531261987,0.0,2.5231305504803787,55.70291356385565,178.80837585665424,257.04467688561726,fqhc6_100Compliance_implementation,11 -100000,95638,45410,430.8747568957945,5902,60.66626236433217,4655,48.16077291453188,1856,19.082373115288902,77.27514686010801,79.68700424415542,63.27600815666828,65.05680791070613,77.04027941646994,79.45205181579051,63.1889778966318,64.97173196985557,0.2348674436380662,234.95242836490604,0.0870302600364851,85.07594085055814,157.91204,111.15147299211937,165114.09690708714,116220.824571885,398.78555,262.23575221818123,416451.4209832911,273675.0030512571,381.15471,184.94040328555985,395534.2018862795,190994.9864969873,3340.5788,1520.6384626876988,3459003.732825864,1556160.8445750957,1118.45132,495.77874669134405,1156268.052447772,505285.7435034662,1813.67974,764.6565645353618,1866472.6363997571,773816.1443239909,0.38176,100000,0,717782,7505.186223049415,0,0.0,0,0.0,34403,359.1773144565967,0,0.0,34795,360.7770969698237,1570216,0,56313,0,0,0,0,0,65,0.6796461657500157,0,0.0,1,0.0104560948576925,0,0.0,0.05902,0.1545997485331098,0.3144696712978651,0.01856,0.3350548741123305,0.6649451258876695,24.648256795659368,4.339294602662947,0.3303974221267454,0.235016111707841,0.2150375939849624,0.2195488721804511,11.011519682532516,5.67467898191343,19.81932350622387,12199.193636817829,53.020675134161216,13.225298675396882,17.305434359152503,11.164008413168816,11.32593368644301,0.5602577873254565,0.7815356489945156,0.6723016905071522,0.5944055944055944,0.12133072407045,0.7210231814548361,0.9137055837563453,0.845360824742268,0.7552742616033755,0.1508620689655172,0.5011750881316098,0.7071428571428572,0.6139130434782609,0.5445026178010471,0.1126582278481012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0047940970779319,0.0068997006747501,0.0094362620619603,0.0114626877816088,0.0134939709956004,0.0156320104417343,0.0182846525303468,0.0205187449521024,0.0227924311926605,0.025037695014001,0.0272236033777814,0.0289623951849374,0.0310258101756411,0.0330232029822079,0.0354519686342664,0.0372520160036485,0.0393498805691141,0.0412079335678161,0.0431418351704504,0.0577027591973244,0.0714719812230185,0.0850525210084033,0.0976002865329512,0.1098659681661192,0.1259279655183369,0.1378068218042716,0.1490060224910728,0.1589615170583451,0.1689844169801182,0.1818711745846692,0.1946366219176299,0.2063196215638829,0.2160158777152757,0.2259410070513457,0.2355371900826446,0.245173637147046,0.2540846723235241,0.2621502879646702,0.2699561252383249,0.276725328012436,0.2839436685779951,0.2899260858732663,0.2957985010089363,0.3011875212926461,0.3057753311033487,0.3118071926568691,0.3161931456236463,0.3212607420100215,0.3254632752668545,0.3252530705898231,0.3239312350938142,0.3232809083856407,0.3219824094433515,0.3211519305392426,0.3193458903584729,0.3176809575074409,0.3175205254515599,0.3175377270014494,0.3186403821474404,0.3205973841022373,0.3210215489146537,0.3221854582007036,0.3226527737405809,0.3245004448505542,0.3266066034788042,0.3275763956068969,0.3302406038685327,0.3322560247312583,0.3360057151928877,0.3373012267151294,0.3393730074388948,0.3432639237330657,0.3490694507489786,0.3533277011170562,0.3589011773100249,0.3645561858040779,0.3686027619821283,0.3680154142581888,0.3682600382409178,0.0,1.903600510223567,55.34959083350939,173.44639896100287,257.533912352682,fqhc6_100Compliance_implementation,12 -100000,95680,45075,427.7069397993311,6077,62.10284280936455,4823,49.75961538461538,1965,20.077341137123742,77.28391542799022,79.68108377850248,63.28504443165552,65.05955768509956,77.02890280905044,79.42965126517839,63.188840300811705,64.9676810860203,0.2550126189397872,251.43251332409025,0.0962041308438159,91.8765990792565,158.32674,111.48349905948778,165475.27173913046,116517.03497020045,399.44124,262.12639613198564,416846.25836120406,273331.58040550334,382.83689,186.6307488755376,396577.1634615385,192248.86940337933,3443.7931,1586.365644385334,3556902.5606187293,1615611.3235632658,1143.27254,506.6790613594895,1182804.7554347827,517468.76187237626,1923.6591,823.3269278371039,1968812.37458194,825543.4834752458,0.3809,100000,0,719667,7521.603260869565,0,0.0,0,0.0,34525,360.15886287625415,0,0.0,35030,362.5209030100334,1570858,0,56377,0,0,0,0,0,61,0.6375418060200668,0,0.0,0,0.0,0,0.0,0.06077,0.1595431871882383,0.323350337337502,0.01965,0.3440287994991391,0.6559712005008609,24.33650869035502,4.368828619556573,0.3238648144308522,0.22911051212938,0.2241343562098279,0.2228903172299398,11.243137653633266,5.801685272694498,21.228153574769483,12173.518674800776,54.93943297557529,13.263646450253528,17.78071265724063,11.972321504826407,11.922752363254723,0.5525606469002695,0.7782805429864253,0.6971830985915493,0.5541165587419057,0.1088372093023255,0.7103235747303543,0.9285714285714286,0.8523002421307506,0.6808510638297872,0.1352459016393442,0.4944680851063829,0.6909871244635193,0.6414273281114012,0.5189125295508275,0.1010830324909747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.0046048360921778,0.007025594688163,0.0093494984807064,0.0113447900450739,0.0132731643712818,0.0153908919373756,0.0172713159292396,0.0197085144464331,0.0222090188284947,0.0242423620657816,0.0262319674489334,0.0281642313233175,0.0304229532525352,0.0327329032258064,0.0347067096880946,0.0365465717512719,0.0386272331855788,0.0405592368746814,0.0424722497264057,0.057726660189915,0.0713089180643675,0.0850326927719062,0.0979996001304837,0.1099617909691583,0.1257013402214647,0.1379083301474024,0.1495840744725041,0.1603716097029046,0.1702020310453657,0.1830579002403975,0.1942488135740134,0.2056719051197438,0.2164012355144691,0.2259088604246125,0.2365081655990141,0.2457370321916965,0.2544099910954812,0.2622622850192673,0.2697982880877527,0.2769402050378067,0.2849971263356674,0.2918813056379822,0.2978002570972043,0.3028549852622347,0.3083516537805992,0.3130972385944671,0.3171682678830814,0.321311858076564,0.324393561251304,0.3233181015541806,0.3220142933862106,0.3204277441988249,0.3187467483669576,0.3174971721140679,0.316644923643619,0.3141674333026679,0.3151859639900118,0.3161742048139144,0.3166371396360122,0.3172566871073323,0.3176659975753721,0.3200582499683424,0.319878433138226,0.3206617985978021,0.3219485323050287,0.3241706431979884,0.3280055594162613,0.3300165254386273,0.3339547059056836,0.3377818264632202,0.3411608799363901,0.342732103782432,0.3463875759621877,0.3495172669884887,0.3508751321508281,0.3494599117602312,0.3497884344146685,0.3495550611790878,0.3460949464012251,0.0,2.5388166672148875,56.58019979085406,183.1547047097328,262.7529039165584,fqhc6_100Compliance_implementation,13 -100000,95667,45078,428.42359434287687,6028,61.9649408887077,4720,48.8674255490399,1849,19.00341810655712,77.35161970545354,79.75576445296505,63.31721993396855,65.09351243773843,77.12055870603187,79.52601903291767,63.233077392286646,65.01228444137708,0.2310609994216719,229.7454200473794,0.0841425416819063,81.22799636134914,159.15064,111.85050729874668,166358.97435897437,116916.49920949408,398.72594,261.7512327138726,416306.8769795227,273128.2393237717,380.97771,184.43019530444653,395522.3431277243,190678.24381261136,3366.20756,1521.4065332829111,3483847.585896913,1555538.2074612037,1105.46629,486.7154675271647,1138091.557172275,491352.7390430519,1810.18794,750.373097437651,1860546.478932129,756437.6612450427,0.38053,100000,0,723412,7561.771561771561,0,0.0,0,0.0,34447,359.57017571367345,0,0.0,34848,361.4935139598817,1572240,0,56370,0,0,0,0,0,49,0.5121933373054449,0,0.0,1,0.0104529252511315,0,0.0,0.06028,0.1584106377946548,0.3067352355673524,0.01849,0.3283841415258253,0.6716158584741747,24.431838422397693,4.379515215899973,0.3186440677966101,0.2421610169491525,0.2235169491525423,0.2156779661016949,11.25996559256542,5.805206791936814,19.635078555532328,12125.56668942516,53.43888558498029,13.665116505366877,16.976666409500655,11.580955359136134,11.216147310976604,0.5697033898305085,0.7891513560804899,0.6928191489361702,0.5933649289099526,0.1168958742632613,0.7451456310679612,0.9387254901960784,0.8567774936061381,0.7457627118644068,0.1343283582089552,0.5074626865671642,0.7061224489795919,0.6352201257861635,0.5494505494505495,0.1126070991432068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884276755048,0.0043705318663489,0.0065967077354009,0.0088799479801674,0.010995941368542,0.0133326543084131,0.0153265691123234,0.0172059919739408,0.0194069529652351,0.0214585680630953,0.0233703346533434,0.0257927944591733,0.0278160824912013,0.0296707148601002,0.0317516061726609,0.0339247840256582,0.0359856140459977,0.0380786280066855,0.0399508936931688,0.0419994578024315,0.0565801159814011,0.0699619931105969,0.0824656786598933,0.0951504119361525,0.1068605620574299,0.1229626180093984,0.1355090081003896,0.1476133130135453,0.1586396508194616,0.1694533036951129,0.1825377141809633,0.1955975387815235,0.2071664145069824,0.2167365298952598,0.226531016714012,0.236255819108845,0.2464925606541262,0.2558723227048138,0.2640843471944797,0.2715803452855245,0.2781594042002035,0.2850866943964107,0.2910021634530129,0.2961637440900114,0.3011644832605531,0.3060405822781695,0.3109804068482373,0.3150938844947757,0.3201627486437613,0.3240458015267176,0.3232210543294174,0.3226293606447095,0.3214145106861642,0.3198846431146359,0.3180597789809389,0.3155175049686592,0.3140392726813162,0.3139858993277586,0.3149368385114373,0.3151190794755151,0.3157086112568388,0.3163794975033059,0.3169960639812411,0.3175350165045945,0.318752395553852,0.3204918670713674,0.3227290802704085,0.3270816998588678,0.3297076105204253,0.3331619740588421,0.3344675831405109,0.3353488616646511,0.3393136213039945,0.3377498485766202,0.3380703066566941,0.3410603899191631,0.3432307692307692,0.3487386478304742,0.3505965292841648,0.3468077068379297,0.0,1.7796248374763468,54.77866529948353,177.4490600744237,261.0135166985102,fqhc6_100Compliance_implementation,14 -100000,95782,45126,427.07398049737947,5961,61.02399198179199,4669,48.0674865841181,1776,18.082729531644777,77.3507064425629,79.67823561645558,63.34838135415546,65.06967784331579,77.13168875974448,79.46486989294925,63.26599424298356,64.9927052808723,0.2190176828184178,213.3657235063282,0.0823871111718972,76.97256244348694,158.69348,111.60361866835952,165681.9444154434,116518.36322937456,397.66653,262.0107843527898,414535.6329999374,272907.03427476075,381.79733,185.64116670524535,394592.5330437869,190779.20349364748,3344.31191,1526.3698842217616,3446026.810883047,1548529.7236371883,1108.64117,489.867096453181,1142602.90033618,496707.9015242215,1738.2097,729.6961347805706,1771873.3164895284,725486.294467578,0.38047,100000,0,721334,7530.997473429245,0,0.0,0,0.0,34270,357.09214674991125,0,0.0,34885,360.15117663026456,1575867,0,56515,0,0,0,0,0,80,0.8352300014616525,0,0.0,0,0.0,0,0.0,0.05961,0.1566746392619654,0.2979365878208354,0.01776,0.3298127700432069,0.6701872299567931,24.39187713052253,4.300475420307718,0.3242664382094667,0.2383808095952024,0.2225315913471835,0.2148211608481473,11.298968717000518,5.965006151141832,18.84390395604868,12149.515381532272,52.97405302680077,13.386140287283176,17.079424410653488,11.50326755325092,11.005220775613193,0.5733561790533305,0.7852650494159928,0.7093791281373845,0.5967276227141483,0.1086739780658025,0.7517956903431764,0.9097222222222222,0.8938992042440318,0.7347826086956522,0.2009345794392523,0.507903981264637,0.7063142437591777,0.6481970096745823,0.5574783683559951,0.0836501901140684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0046025952960259,0.0070727673089997,0.0092637737688932,0.0113775012201073,0.0133771773544952,0.0155007949125596,0.0177771427988284,0.0200190073270179,0.0218993041342611,0.0242023075189048,0.026288247244967,0.0281999897230358,0.0304914455127545,0.0327400593961392,0.0345258634048575,0.0368067052980132,0.0389603657588355,0.0410958904109589,0.0431962519521082,0.0573822666986674,0.0711036754326344,0.0843379809204319,0.0968345384227341,0.1088193756455386,0.12448334548991,0.1364200345716194,0.1477831463783231,0.1584813802528185,0.1683154521387766,0.1807652978849362,0.193735611685743,0.2058612596166384,0.2159463357077306,0.2258504298876355,0.2361797926830617,0.2459602826130563,0.254277465089369,0.2616983420029692,0.269102723975792,0.2759755632802485,0.2838191330343796,0.2905152127898589,0.2958373738462091,0.3004598565829865,0.3051239750818703,0.3111574843490322,0.3160449895151553,0.3208879919273461,0.3245129934275516,0.3235337588176016,0.3214339695233384,0.3202104907699235,0.3194233796998454,0.3185158790254331,0.3164702280728608,0.3149256093700538,0.3155075821052459,0.316097944397929,0.3174110171004248,0.3180777602642047,0.3189730200174064,0.3195761644985312,0.3213781037615234,0.3233851185609158,0.3246163482618227,0.3260540231527797,0.3299011402040365,0.3325820538103958,0.3384627587848021,0.3413509812870835,0.3439871726349546,0.3469013103753877,0.3513969910961007,0.3519268821256949,0.3519180366928758,0.3533962556088503,0.3544984488107549,0.3563186039966226,0.3679467084639498,0.0,2.5918208013991424,54.289075929401314,174.89229215124206,256.26770538770484,fqhc6_100Compliance_implementation,15 -100000,95730,45384,429.8652460043873,6026,61.7361328737073,4752,49.00240259061945,1900,19.429645879034783,77.31652017658898,79.67832673041993,63.31665033110207,65.06282986825377,77.08147664761185,79.44508316706374,63.22918736389848,64.97900625987675,0.2350435289771297,233.2435633561829,0.0874629672035851,83.82360837701697,157.43926,110.7781697448484,164461.77791705838,115719.38759516182,397.85706,261.73247992258166,414966.1130262196,272769.74816941575,384.23318,187.16400442558628,397726.0315470594,192700.08897932875,3405.37003,1546.327239559481,3517020.4951425884,1575055.812764526,1140.98782,499.53532200535096,1178856.7220307114,508793.8761154811,1862.45342,778.0361805843208,1907730.3457641285,780595.6740071877,0.38207,100000,0,715633,7475.53535986629,0,0.0,0,0.0,34365,358.32027577561894,0,0.0,35081,362.686723075316,1576760,0,56600,0,0,0,0,0,76,0.79389950903583,0,0.0,1,0.010446046171524,0,0.0,0.06026,0.1577197895673567,0.3153003650846332,0.019,0.3273358585858585,0.6726641414141414,24.64059674637088,4.332205728324079,0.3146043771043771,0.2344276094276094,0.2218013468013468,0.2291666666666666,11.23167270899105,5.874919939668949,20.262031741063517,12159.307467137189,53.951305736477465,13.442916397714017,16.933920421884068,11.709326486979569,11.865142429899835,0.5608164983164983,0.7944344703770198,0.7010033444816054,0.5654648956356736,0.1248852157943067,0.7429022082018928,0.9277389277389276,0.8903743315508021,0.7233201581027668,0.1320754716981132,0.4945464982778416,0.710948905109489,0.6378233719892953,0.5156054931335831,0.1231470923603192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027653690704105,0.0050790239352804,0.0075006343567622,0.0097848948860461,0.0120849609375,0.0141975434379646,0.016531875618288,0.0184022139844571,0.0207155346059856,0.0230355771691835,0.0249979493068657,0.0270769799464005,0.0292762684326347,0.0313655226385756,0.0333790627868835,0.0355216663567044,0.0374932715001449,0.0396249118293846,0.0416003991642498,0.0433405567594599,0.0575595903068522,0.0718060337159779,0.0854176498348277,0.0976171447800117,0.1097086457245895,0.1250330537427414,0.1364976978081436,0.1480795435189916,0.1591251482482664,0.1691862024569497,0.1815253689540019,0.1938684962340922,0.2058746764686691,0.2158929391441254,0.225039078840184,0.2342014850936495,0.2438362588771271,0.2535498098517068,0.2619769144335864,0.2699841913533576,0.2765268103029321,0.2826295473154755,0.2886245265151515,0.2945155371127715,0.2999282962458831,0.3048873757185503,0.3102044905268167,0.3152822862962255,0.3197115073353274,0.3240699178834526,0.3224685504943027,0.3212159629588799,0.3201971138911638,0.3187427578215527,0.3182637182637182,0.3173287912964753,0.3151846568394357,0.3157357732942764,0.3164411714334646,0.3171836939389597,0.3181374206393929,0.3193435353275394,0.3205392012766136,0.3210659614048456,0.3234274154705712,0.3249628799916643,0.3266801630977161,0.3324017960875435,0.3349921149465568,0.3378158594152882,0.3385105898428604,0.341684434968017,0.3412217594345576,0.3434159654309757,0.3461538461538461,0.3510777658687626,0.3471837488457987,0.3507673667205169,0.3542526837324525,0.3556661562021439,0.0,2.4459824894200426,55.353845464003854,180.81731251721396,257.83571091552267,fqhc6_100Compliance_implementation,16 -100000,95697,45515,430.2329226621524,6078,62.52024619371558,4709,48.82075718152084,1876,19.42589631858888,77.40264542862671,79.78353441270747,63.35728834693722,65.11208810416755,77.17791326506064,79.55355424137706,63.275404360340175,65.02952862855952,0.2247321635660739,229.9801713304106,0.0818839865970417,82.55947560803634,159.66038,112.31567461512302,166839.48295139868,117365.93060923857,402.88937,264.85567794305024,420637.0314638912,276396.6769523081,388.78084,188.87450511343093,402884.1342988808,194843.7539630274,3398.80062,1527.472665685653,3528866.6415875102,1573394.73095881,1143.21978,495.37177403839496,1186393.053073764,509414.66716657294,1843.496,759.7220173607324,1910086.439491311,780544.2122933158,0.38226,100000,0,725729,7583.612861427213,0,0.0,0,0.0,34639,361.5787328756387,0,0.0,35434,367.0543486211689,1567814,0,56205,0,0,0,0,0,87,0.8882201113932516,0,0.0,0,0.0,0,0.0,0.06078,0.1590017265735363,0.3086541625534715,0.01876,0.334168886103713,0.665831113896287,25.050191683290368,4.349908234591197,0.3276704183478445,0.2331705245275005,0.207687407092801,0.2314716500318539,11.133723962799532,5.781814280169712,19.813621195398262,12216.59187323763,52.91104839945736,13.063584633619111,17.2519684185175,10.831851462283144,11.7636438850376,0.5548948821405819,0.7923497267759563,0.6830848995463383,0.5858895705521472,0.1064220183486238,0.7360197368421053,0.9209876543209876,0.851063829787234,0.7288135593220338,0.1507537688442211,0.4918408245061552,0.7171717171717171,0.6289631533847472,0.5404312668463612,0.0965207631874298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506080951078,0.0048243080259863,0.0071819841752891,0.0094553283974691,0.0118872087938906,0.014398305602509,0.0167300457756889,0.0190036843877894,0.0211026518828879,0.0230770805190552,0.0253080218946677,0.0272667542706964,0.0293645897594077,0.0314427840201036,0.0337185307470078,0.036101866589495,0.0380732472534868,0.0402316145568503,0.0422243715744698,0.0446790549342893,0.0588954235393663,0.0731224675691805,0.0869779643231899,0.1000610063951531,0.1119735912336395,0.1272467601163713,0.1395662231276925,0.1503187967683907,0.1612710216466867,0.1715238462858123,0.1835398744603193,0.1959339565480827,0.2066412238640441,0.217211636220524,0.2270197743219761,0.2374785544302396,0.2472416022111762,0.2553208216808742,0.2634255169758329,0.2709181107402496,0.2779605453013355,0.2842842142107105,0.29104733120034,0.2963738129978233,0.3013868011443534,0.3066845446046351,0.3113987953914978,0.3147466490658002,0.3191522337169205,0.3238157894736842,0.3225516259835119,0.3219676716160079,0.3212361820324336,0.3197128181517344,0.3189641139474657,0.3169823415393538,0.3152352383959583,0.3155126650719271,0.3157025637533621,0.3177014766055862,0.3179491968621591,0.3180594580787141,0.3188273018781493,0.3195958876674529,0.3204439756436688,0.3215753602830238,0.3226898887276245,0.3249569168102773,0.3281545907273619,0.3302566946601172,0.3320419325432999,0.3329604176655479,0.336333312354459,0.337556904400607,0.3379990605918271,0.3410798122065728,0.3429311395490554,0.347052947052947,0.3544097693351424,0.3507322568531731,0.0,1.5306492723558285,53.79938444092856,173.598278895764,264.45661000005373,fqhc6_100Compliance_implementation,17 -100000,95722,45278,428.6684356783185,5976,61.15626501744636,4644,47.85733687135664,1821,18.605963101481372,77.33907921770925,79.705546433288,63.32552877917672,65.07512155066357,77.11538235675265,79.48607363231005,63.2425532213974,64.99668744879311,0.2236968609566076,219.47280097795385,0.0829755577793136,78.43410187045663,157.62142,110.92434775351656,164665.8239485176,115881.7698684906,399.35258,263.1475039900787,416545.632143081,274254.2580749342,381.67188,185.574436872645,394855.6549173649,190864.6507203486,3357.49701,1531.183173076548,3462680.7943837363,1554823.75636468,1137.88573,505.46278914396527,1169956.3632184868,509497.0800745144,1795.56266,746.1277547878256,1836472.1589603224,746358.132353849,0.38142,100000,0,716461,7484.810179478072,0,0.0,0,0.0,34527,360.0112826727398,0,0.0,34905,360.7112262593761,1576870,0,56506,0,0,0,0,0,67,0.699943586636301,0,0.0,0,0.0,0,0.0,0.05976,0.1566776781500707,0.304718875502008,0.01821,0.3279655612244898,0.6720344387755102,24.50915637285156,4.412911189568784,0.3223514211886304,0.2340654608096468,0.2151162790697674,0.2284668389319552,11.39970768322809,5.8919032433866985,19.241125151992826,12196.71467351232,52.476311228564455,13.000366552145415,16.82776579009418,10.989342416321495,11.65883647000336,0.5566322136089578,0.7847286108555658,0.6700066800267201,0.5805805805805806,0.1404335532516493,0.7273456295108259,0.9065656565656566,0.8611111111111112,0.7652173913043478,0.1377777777777777,0.4939652634677657,0.7149059334298119,0.6012715712988193,0.5253576072821846,0.1411483253588516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0047248245934217,0.0071049399632573,0.0092566249390343,0.0115561071381341,0.0138610231288637,0.0158364350175903,0.017662433127782,0.0197961082650797,0.0221227608386165,0.024490800566119,0.0266225696120623,0.0290030957205006,0.0309396249742427,0.0330418984898376,0.0351905855101238,0.0372641851502688,0.0393229274772717,0.0413993198906001,0.0435077044893366,0.0587234131417652,0.0726041873750954,0.0859039151131335,0.0981544771018455,0.1096722487029147,0.1258488290918322,0.1379043294681788,0.1497439500888988,0.1604210076401132,0.1707222865971417,0.1837576906914349,0.1957620970798098,0.2071629060684523,0.2171976891767692,0.2270960638590696,0.2376090547296773,0.247451343836886,0.2557511367217395,0.2638209490517427,0.2712563597194848,0.2783743751157193,0.2842256683741492,0.2910774251525327,0.2967135588147261,0.302346176242236,0.3078994945209017,0.3122986640029966,0.3165589978550849,0.3204664617609835,0.3245834705301284,0.3234827928968648,0.3220036269714788,0.320631970260223,0.3202491581518362,0.3191884385164941,0.3170694378548799,0.3145013289457031,0.3154861589991133,0.3158488823519351,0.315977685595766,0.3159029548522574,0.3161555485298767,0.3169782908771489,0.3175852431525992,0.3180967912130078,0.3206919839991687,0.3217985202048947,0.3255470785846598,0.3280647648419429,0.3316397411979518,0.3337588329154319,0.3353749467405198,0.3386240040470469,0.3451834862385321,0.3480828724102371,0.3526478271194491,0.3549435246789417,0.3579742699612007,0.3706896551724138,0.3758157389635316,0.0,2.5406139041608005,54.25232069002641,168.3161573144391,258.82952652709986,fqhc6_100Compliance_implementation,18 -100000,95704,45189,429.8670901947672,5965,61.19911393463178,4699,48.70224859984954,1827,18.860235726824374,77.30793472821749,79.68441549903683,63.31631099018998,65.07039379762325,77.08479157437743,79.45906150620154,63.23319266563454,64.98798526014419,0.2231431538400556,225.353992835295,0.0831183245554427,82.4085374790684,159.53652,112.26782737224472,166697.63019309536,117307.14137777392,403.56447,265.6318159344273,421282.2243584385,277159.2789975941,381.00411,185.35484115175652,395561.22001170274,191716.0581368314,3367.77659,1541.0561852959922,3492923.6082086437,1584336.625276309,1116.47489,497.3002925131971,1157905.3017637716,510996.9911081057,1790.09784,749.6301125738788,1849270.5425060603,765648.8669220983,0.38147,100000,0,725166,7577.165008777063,0,0.0,0,0.0,34764,362.8374989551117,0,0.0,34916,362.2837080999749,1564325,0,56184,0,0,0,0,0,82,0.8568084928529633,0,0.0,0,0.0,0,0.0,0.05965,0.1563687839148557,0.3062866722548197,0.01827,0.3389504092441021,0.661049590755898,24.581713942397084,4.436347930764169,0.3164503085762928,0.2360076612045116,0.2268567780378804,0.2206852521813151,11.342254849439632,5.789044875566657,19.45807897739164,12114.733794482903,53.431313759669806,13.394420789922403,16.98478690860539,11.74497394774647,11.307132113395545,0.5694828686954672,0.8025247971145176,0.6967047747141897,0.5806754221388368,0.1263259402121504,0.7301829268292683,0.9122401847575058,0.8459715639810427,0.7426160337552743,0.1363636363636363,0.5072335400059049,0.7322485207100592,0.6375586854460094,0.53437876960193,0.1236230110159118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0041445421750233,0.0062082187889915,0.0084200048752742,0.0104548043283703,0.0127184228748319,0.0149687471321797,0.0174476773864216,0.0192193665787482,0.0213223326611458,0.0232705949891335,0.0252361396303901,0.0274278309696926,0.0297514190643961,0.031803031710161,0.0335976347265152,0.0355385173289126,0.0374169435215946,0.0394985956517216,0.0415428720354443,0.0565223749634396,0.0705478448366095,0.0835020720767979,0.0965061736185608,0.1090447122328705,0.1251374788494078,0.1372813206165989,0.1486326815196449,0.1593966005363076,0.1696595224303276,0.182250942380183,0.1940240379934441,0.2054627696590118,0.2164100769769069,0.2265886287625418,0.2363529620275599,0.2459299925239067,0.2544607699750242,0.2627398472693438,0.2705377082975433,0.2778472366928295,0.2842356408547069,0.2904920826528439,0.2967329511381899,0.3019333657587548,0.3063163089069824,0.3108638169354737,0.3150569702531161,0.3195525796740371,0.3227183798646362,0.3219977886249022,0.3205442814602404,0.3198301162659442,0.3193593697959656,0.3186109539267951,0.3172010857063992,0.3144497486241733,0.3148096327632467,0.3149579313535651,0.3158205430932703,0.3167195628086912,0.3174892512531949,0.3183715418335885,0.3194410285075461,0.319750649850775,0.3206615456968177,0.3225364572928855,0.3241490065182479,0.3278676963221552,0.3283967283411419,0.3303493948390043,0.3315795068027211,0.3353111980810503,0.3400396281054717,0.3405314055018308,0.3440160832544938,0.3395742110825909,0.3426,0.3466307277628032,0.346646571213263,0.0,1.5239691491269067,58.17139685344132,169.3249837855086,258.43874331681747,fqhc6_100Compliance_implementation,19 -100000,95714,45236,429.1326242764904,5974,61.21361556303153,4667,48.24790521762752,1874,19.244833566667364,77.38171245272493,79.75495924598059,63.34258245905804,65.09484295877022,77.14507932103922,79.5195266910151,63.254855004381575,65.01002235459872,0.2366331316857071,235.4325549654845,0.0877274546764681,84.8206041714974,159.56028,112.23282218335464,166705.26777691874,117258.52245581069,401.1658,264.1598281489724,418609.11674363207,275468.1218515289,390.28819,189.926980745315,404874.4697745366,196176.9284039331,3356.62079,1531.2399464246855,3470270.37841904,1563150.371340332,1138.00701,503.62868529290927,1171870.645882525,509098.6327088592,1834.2365,767.8665342494619,1884212.2782456067,773376.9330842274,0.3787,100000,0,725274,7577.512171678124,0,0.0,0,0.0,34598,360.9189878178741,0,0.0,35491,367.88766533631446,1566151,0,56177,0,0,0,0,0,73,0.7626888438472951,0,0.0,0,0.0,0,0.0,0.05974,0.1577501980459466,0.3136926682289923,0.01874,0.3402489626556016,0.6597510373443983,24.42168089703237,4.442167065495947,0.3291193486179559,0.2228412256267409,0.2241268480822798,0.2239125776730233,11.041252984034475,5.677430964710386,19.910498467351157,12078.641641544473,53.083147575542384,12.658938832318322,17.445919186839845,11.6224431943305,11.355846362053732,0.5654596100278552,0.7721153846153846,0.7135416666666666,0.5889101338432122,0.1186602870813397,0.7253521126760564,0.9106699751861044,0.8588807785888077,0.7389558232931727,0.1069767441860465,0.505163765122455,0.6844583987441131,0.6604444444444444,0.5420326223337516,0.1216867469879518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.004521079787935,0.0065653285708487,0.008918594965768,0.0111581260044347,0.0134215885947046,0.0154779505480499,0.0176609906488627,0.0197908467333858,0.0220083938990684,0.024214961606676,0.0263036313795546,0.0284239320458238,0.0305318348973516,0.0327544038884245,0.0347497932175351,0.0368705594796694,0.038912928431342,0.0408727847574673,0.042716160026678,0.0573761931616433,0.070905874100983,0.0844935945188807,0.0971827726230301,0.1095417914855913,0.1246801040587128,0.1365319525936614,0.1476252834648184,0.1588039228254599,0.169273347493081,0.1825646551724138,0.194675991079741,0.2055599060297572,0.2158716970405921,0.2254314279743507,0.2355982111229188,0.2447338782519486,0.253648937366468,0.2621091667895256,0.2696350064114307,0.2758130010759032,0.2826114910281138,0.2882146195993041,0.2938737853608272,0.2989457831325301,0.3048706859374807,0.3094815296501013,0.3136546389129218,0.3176275662101638,0.3212585549826592,0.3195539293497269,0.3181512166302571,0.3174507127478435,0.3166690699351117,0.3153809693091599,0.3133280420050064,0.3116829807388696,0.3126196436460021,0.3131591481254678,0.3134285866799523,0.3149909377977914,0.3152956019476807,0.3153132492442406,0.314605740753112,0.3151265534829147,0.3165491862755261,0.3179756166713921,0.3211820198044544,0.3239755884917175,0.3290383779297261,0.331578947368421,0.3341996393338283,0.3361179672172647,0.3372609028309105,0.341869880425572,0.3449175661250148,0.3440366972477064,0.3444782168186423,0.347079988928868,0.3477756286266925,0.0,1.905558363909951,56.30551910032491,175.04810457453786,251.8933652438853,fqhc6_100Compliance_implementation,20 -100000,95849,45676,432.02328662792513,5988,61.28389445899279,4689,48.25298125176058,1805,18.393514799319764,77.44506122741345,79.72154414657751,63.40474875222951,65.08358858727827,77.21569809520697,79.49589779622593,63.31868565151407,65.00183741669764,0.2293631322064726,225.64635035158176,0.0860631007154353,81.75117058063108,159.51738,112.27073570227736,166425.71127502635,117132.92335055904,401.88878,264.6207401806912,418648.5826664858,275435.7793828743,386.67817,188.80264796809288,398802.22015879146,193487.3636979669,3322.21966,1519.03146486901,3421231.520412315,1539951.3869409277,1107.05839,493.1586806493829,1137095.3583240304,496609.98927605886,1766.13718,746.9009504480232,1802300.9316737785,746184.5436746698,0.38466,100000,0,725079,7564.805057955743,0,0.0,0,0.0,34624,360.55670899018247,0,0.0,35460,365.3350582687352,1568403,0,56324,0,0,0,0,0,68,0.7094492378637232,0,0.0,2,0.0208661540548153,0,0.0,0.05988,0.1556699422866947,0.301436205744823,0.01805,0.3291826309067688,0.6708173690932312,24.491704176611684,4.32119449928542,0.3316272126252932,0.2298997654084026,0.2200895713371721,0.218383450629132,11.408393914389372,6.073066581030248,19.198415787123828,12217.337852286364,53.1793673703367,12.993742941925111,17.53767008705343,11.50424598271962,11.143708358638545,0.5645126892727661,0.7884972170686456,0.690032154340836,0.5794573643410853,0.123046875,0.7396726422447389,0.9127358490566038,0.8666666666666667,0.7306122448979592,0.1531100478468899,0.4985320023487962,0.7079510703363915,0.6278260869565218,0.5324015247776366,0.1153374233128834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022571307111479,0.0049230644556772,0.0073512263873538,0.0096220210304088,0.011919035909525,0.0139585516476584,0.0161737146581927,0.0181814473778131,0.0202902102543679,0.0222392638036809,0.02443170182265,0.0267678580585611,0.0288504991577995,0.0309311224489795,0.0330829701521754,0.0356833195706028,0.037551062619577,0.0395842616291721,0.0415278080584711,0.0436189584308828,0.0590185814685825,0.0726076055160886,0.0857337312182608,0.0990723445337586,0.1115483355077648,0.1271241899052162,0.1385776911836337,0.1499075628466393,0.1604355058863675,0.1711331820711503,0.1836228021151283,0.1955812798306805,0.2071735637674236,0.2170637433668901,0.2263744713571703,0.2369571230982019,0.2468201326570425,0.2558829478794417,0.2629245839190966,0.2707944754036457,0.2781581016698274,0.2846333762133083,0.2913466885967507,0.2971413522313733,0.3029600592254572,0.308298448657966,0.312574310709503,0.3164094800717493,0.3212560699255422,0.3252400295420974,0.3239053795850265,0.3222216115202814,0.3206701241022613,0.3192022463820289,0.3184226886527132,0.31736883033713,0.3156377044530585,0.3161480029404557,0.3158458608257942,0.3164583925021301,0.3178215051757903,0.3181281021035216,0.3200217105400497,0.3211105174102769,0.3229211546747091,0.3234638319937775,0.3244918756723093,0.3272011743761127,0.3301227441844292,0.3329518096065043,0.3378040463741759,0.3401985243378098,0.3428786737000753,0.3441568387195589,0.3438888363739484,0.3482153515578369,0.3531592769967557,0.3528559602649007,0.3614592035644667,0.3643502159403219,0.0,2.6120206923643807,55.74377854564512,174.82547384457845,252.7083917043984,fqhc6_100Compliance_implementation,21 -100000,95691,44993,426.7485970467442,5983,61.32238141518011,4698,48.5834613495522,1859,19.040453125163285,77.29747507811412,79.70046076561079,63.28577397120039,65.0657888224751,77.06618961161355,79.47153326440643,63.19999830813805,64.98347281476904,0.2312854665005659,228.92750120435323,0.0857756630623427,82.31600770605496,158.20134,111.3426213686324,165325.20299714708,116356.41948420688,399.0733,262.5468659730409,416512.7963967353,273838.52815107047,380.18306,184.88857375278496,394415.6921758577,190898.01358932856,3396.92256,1547.5324406303691,3512536.44543374,1579867.6266632893,1165.1043,513.3615777790853,1204385.6684536685,523376.2920775479,1829.16126,766.2980278817573,1875028.581580295,769935.4267141848,0.38009,100000,0,719097,7514.781954415775,0,0.0,0,0.0,34496,359.92935594779027,0,0.0,34847,361.24609419903646,1570574,0,56346,0,0,0,0,0,53,0.5538660898099089,0,0.0,0,0.0,0,0.0,0.05983,0.1574100870846378,0.3107136887848905,0.01859,0.3277565328234544,0.6722434671765456,24.30176006822461,4.346132579502624,0.3101319710515113,0.2396764580672626,0.2179650915283099,0.2322264793529161,11.341806721597422,5.956057794097512,19.792783005813074,12097.82340232958,53.2915434898737,13.526566534290277,16.204494365004482,11.51576783579611,12.044714754782843,0.5661983822903364,0.7868561278863233,0.693891557995882,0.607421875,0.1292392300641613,0.7346123101518784,0.9370629370629372,0.8690476190476191,0.7410358565737052,0.1659574468085106,0.5050768784450247,0.6944045911047346,0.6413916146297948,0.5640362225097024,0.1191588785046729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0042298095064207,0.0063353469719275,0.0087592724316634,0.011077880859375,0.013200513353297,0.0152380563828485,0.0174424541982394,0.0194831095247348,0.0218021320826207,0.0241453232539772,0.0261346592426701,0.0281475689800621,0.0303676682741849,0.0324822153159943,0.0346307808475645,0.036618229307021,0.0385234411505113,0.040449859028912,0.0426155016623068,0.0572565733805509,0.0708311087382096,0.0839402270867001,0.0964338312644645,0.1081619950840251,0.1248558460382788,0.1366608636575941,0.1478234937000074,0.1588369282758178,0.1692418369428666,0.1823809831963588,0.194074989431238,0.2055527115487251,0.2154031551270815,0.224434010096334,0.2348634437468107,0.2445941868651312,0.2537953869717992,0.2618203712539477,0.2701172479398517,0.2764416950487708,0.2825356302186413,0.2890149451694654,0.294876564694022,0.3003856400773713,0.305210673117271,0.3102709341086243,0.3143348843138505,0.3192425500986398,0.3231078436557889,0.3219886102939192,0.3204409979026382,0.3181259448690959,0.3162088548910524,0.3162990615286226,0.3146726723966233,0.3131209264063785,0.314130719811197,0.3150276713495104,0.315126050420168,0.3156991173561738,0.316570259316098,0.3176409185803758,0.317474452879756,0.3183178868213712,0.3190887626164344,0.3201293910674763,0.3228785175446834,0.3270616213191579,0.3292190837882744,0.332924168030551,0.3364248237850442,0.3416383540958852,0.3454725157758686,0.3504747579204663,0.3504910661460182,0.3540353574173712,0.3603567085528982,0.3563756540897824,0.367794004611837,0.0,1.993164895665501,55.105438487903015,177.7113363025501,256.0560372401272,fqhc6_100Compliance_implementation,22 -100000,95830,45041,424.83564645726807,5982,61.20212876969634,4727,48.75300010435146,1868,19.12762183032453,77.32864418348662,79.64122694768,63.32870225298407,65.03946113020783,77.09149794944496,79.40425481382626,63.24127255164146,64.95421079605029,0.2371462340416599,236.97213385374027,0.0874297013426073,85.25033415753569,158.75794,111.75614927218264,165665.99186058645,116618.95259749828,402.44482,264.5550003809103,419357.69591985806,275469.3762592225,383.86082,186.6620089181068,397122.3312115204,192085.92055044253,3379.90189,1544.972506175351,3488714.4005008866,1574176.904970173,1117.38335,498.51558994731135,1149181.2167379735,503730.3618636216,1829.50084,769.5468861572616,1875588.7717833663,774491.3828231512,0.37943,100000,0,721627,7530.272357299385,0,0.0,0,0.0,34753,362.04737556088907,0,0.0,35072,362.5482625482625,1567327,0,56348,0,0,0,0,0,71,0.7408953354899301,0,0.0,0,0.0,0,0.0,0.05982,0.1576575389399889,0.3122701437646272,0.01868,0.3390263367916999,0.6609736632083001,24.485699778665797,4.410784028269823,0.3270573302305902,0.2350327903532896,0.2183202877089063,0.2195895917072138,11.49477098107156,5.948440090686696,19.94989725336921,12129.64767808544,53.681225638728016,13.319174229632267,17.53118170428706,11.424663626078294,11.406206078730388,0.5540511952612651,0.7776777677767777,0.685640362225097,0.5571705426356589,0.1156069364161849,0.7174427782162589,0.9032258064516128,0.8535980148883374,0.6979591836734694,0.1388888888888889,0.4942196531791907,0.7062146892655368,0.626421697287839,0.5133418043202033,0.1094890510948905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024712614574365,0.0048655881279649,0.0074975904225637,0.0096802372826263,0.012111043319097,0.0145387904703726,0.0167159310977474,0.0189310826946431,0.0208780427984548,0.0228393672103636,0.0250210045287813,0.0271335331061943,0.029381538651265,0.0314803376569899,0.0335859757669502,0.0358356662500129,0.037966824301251,0.0402479990046862,0.0423777226128774,0.0443375901583039,0.0589615753681839,0.0727242313040387,0.0860164339915314,0.0984805497761805,0.1107855433877546,0.1254505671067513,0.1377068996596295,0.1490557003777198,0.1591188185419714,0.1696108907707149,0.1819542395693135,0.1937277556009909,0.2055580925044034,0.2159119476232635,0.225893043774822,0.2351716269951153,0.2451100790425579,0.2537150448056919,0.2618771858109642,0.269625943169048,0.2762649973917579,0.2818883234445721,0.2882496794719597,0.2934017348679626,0.2987657927408165,0.3033422195892575,0.307931492765616,0.3125486046481979,0.3170880490084103,0.3212311192233421,0.3200879429180323,0.3192097021206142,0.3183661932018938,0.3171230492545106,0.3164747419071312,0.3146288276666973,0.3127033762440673,0.3127805455531988,0.3135814700305758,0.3142500445871232,0.3150507813963947,0.3164169072001898,0.3179524756620956,0.3180629734742676,0.3188628875153322,0.3192934782608695,0.3201368106028217,0.3241892911010558,0.328144676087869,0.3315155107686228,0.3341361446878124,0.3374356798047849,0.3407687460617517,0.3460334427731542,0.3478424722065197,0.3521817095038852,0.3529231711049893,0.3587088915956151,0.3680593732820231,0.3631067961165048,0.0,2.1497595273522645,55.54973981654024,175.89364832478373,261.45817243472857,fqhc6_100Compliance_implementation,23 -100000,95741,45252,428.58336553827513,5862,59.88030206494605,4645,47.879174021579054,1835,18.76938824537032,77.35098256499538,79.69695872244917,63.33757887846742,65.06999053348328,77.12157694774902,79.46959587690944,63.252617534674016,64.98819573053676,0.229405617246357,227.36284553973007,0.0849613437934024,81.79480294651853,159.41046,112.07458841211508,166501.77040139542,117060.18154407732,397.75902,262.1080738837605,414827.0960194692,273141.7719511604,382.32238,186.1228012639283,394752.1960288696,190989.38519018597,3296.24879,1507.2259840914812,3403313.2200415703,1534706.451876918,1099.51437,491.843948882043,1131531.2144222432,496828.8182513688,1790.6385,751.0340598183958,1833992.5632696543,753761.0668326295,0.38114,100000,0,724593,7568.26229097252,0,0.0,0,0.0,34344,358.05976540875906,0,0.0,34821,359.1251396998151,1569007,0,56296,0,0,0,0,0,89,0.929591293176382,0,0.0,1,0.0104448459907458,0,0.0,0.05862,0.1538017526368263,0.3130330945069942,0.01835,0.3407730874979783,0.6592269125020217,24.5367225460669,4.361552742494633,0.3280947255113025,0.2368137782561894,0.2208826695371367,0.2142088266953713,11.550775443319116,6.184435280322485,19.50250586584177,12158.512410238229,52.68502209602246,13.095796044445969,17.28459026395179,11.286506080858215,11.018129706766471,0.5608180839612487,0.7945454545454546,0.6751968503937008,0.5604288499025342,0.1276381909547738,0.735973597359736,0.9460154241645244,0.8529411764705882,0.7219730941704036,0.1946902654867256,0.4989804835420914,0.7116736990154712,0.6173913043478261,0.5155666251556662,0.1079323797139141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0043482227019795,0.0067273446774831,0.0091411391890793,0.0114386228914805,0.0138550966599138,0.0160446886372208,0.0182888868477184,0.0205337339915575,0.0225465412602728,0.0244787502306414,0.0267193594744405,0.0289415514316557,0.0310163731850478,0.0332387682467632,0.0353174644189724,0.0373380825662424,0.0391715350053439,0.0412850236523366,0.0431702641886823,0.057747111078635,0.0718029185626863,0.085912598557289,0.0981422879190891,0.1103204722749314,0.1252087870266613,0.1363906329543526,0.1479518533890999,0.1590299663479515,0.1697151745963632,0.181502827901966,0.1939516609120133,0.2053170312516996,0.2152384912514909,0.2247088351203188,0.2357328899972291,0.2445248545359109,0.2533384333269583,0.2627517730496453,0.2706955634763274,0.2775965009719522,0.2842285059138715,0.2909058656575213,0.2962031682172492,0.3010701805474665,0.3061872415829887,0.3103258627801457,0.3153219554968167,0.3190759673870842,0.3231498099662162,0.3223081483078249,0.3210296527882986,0.3196005698086063,0.3183022336744886,0.3174874685784831,0.3157095992887144,0.3143418779030136,0.3140808472848074,0.3148803721375677,0.3162170365476976,0.3170297660303842,0.3182823297137216,0.3200284804824929,0.3211046069976317,0.3238209528381135,0.325950439065065,0.3272613600841172,0.3289576987092925,0.3314231804046263,0.3350342154186939,0.3392548841435711,0.3444432650461734,0.3473750392958189,0.3490859440188121,0.3518015910154422,0.3536585365853658,0.3538795106086418,0.3525940996948118,0.3586474501108647,0.3604471858134155,0.0,2.4764189487111983,52.60596445205689,182.09581281499263,250.0445084010356,fqhc6_100Compliance_implementation,24 -100000,95830,45256,428.5609934258583,5932,60.523844307628096,4637,47.678180110612544,1816,18.50151309610769,77.51248185563044,79.79982070668515,63.42745123530996,65.11146317271229,77.28499583155516,79.57727804956329,63.34213722917991,65.03130112793508,0.2274860240752758,222.54265712186336,0.085314006130055,80.1620447772109,158.42992,111.34091835540931,165323.46864238754,116185.41683753446,397.0649,261.0550312984221,413661.2647396432,271733.4279436733,377.39094,183.26328296722752,389560.200354795,187857.6846093496,3277.41659,1493.4699907280406,3371173.37994365,1509634.7880914563,1105.47974,491.52565930173375,1132812.1882500262,492279.2768479381,1770.5059,746.5405729798043,1804905.979338412,741702.4496103863,0.38169,100000,0,720136,7514.703120108526,0,0.0,0,0.0,34275,356.93415423145154,0,0.0,34499,355.7967233642909,1583168,0,56774,0,0,0,0,0,72,0.7408953354899301,0,0.0,1,0.0104351455702807,0,0.0,0.05932,0.1554140794885902,0.306136210384356,0.01816,0.3395468423589908,0.6604531576410092,24.602011958196183,4.261623762427679,0.3228380418373948,0.2471425490618934,0.2173819279706706,0.2126374811300409,11.28449903174965,6.032094134301689,19.27149272548033,12125.02633940214,52.20498539100433,13.571522796986978,16.629814416403207,11.211800095678155,10.791848081935983,0.569333620875566,0.7923211169284468,0.6833667334669339,0.5882936507936508,0.1176470588235294,0.7293921731890092,0.9298701298701298,0.8442622950819673,0.7478632478632479,0.1574074074074074,0.5133876600698487,0.7227332457293035,0.6312997347480106,0.5400516795865633,0.1064935064935064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022463724121182,0.0043244447595223,0.0065173983113552,0.0086858580836318,0.010920579451025,0.0130885792738736,0.0153631569302192,0.0174885788872573,0.0196971398813474,0.0217915942325391,0.0240745481542163,0.0260591330031074,0.02819477410273,0.0302369141469238,0.0323298969072164,0.0345596893139705,0.0367243038524819,0.0387761661361727,0.0409100353210056,0.0429771683792985,0.0580290562456327,0.071846081455534,0.0849095157757961,0.097994937453392,0.1098674304246648,0.1246725536589487,0.1364445763466389,0.1469725004785299,0.157817785983373,0.1673431358899943,0.180172914381573,0.1932710482259545,0.2052131054997069,0.2156333937501365,0.2254050194958537,0.2357416130387669,0.2447867932094639,0.2532264042861475,0.2618149695919546,0.269051890619465,0.2768288604149607,0.2836693571869504,0.2901978353651347,0.2956382610356891,0.3007951011121734,0.3059918700185442,0.3107360127655331,0.3141590678824721,0.3191966587604414,0.3225438078361882,0.3217837707422995,0.3204413838423942,0.3198829098854309,0.3186740490400517,0.3183202720686086,0.3164968269465462,0.3138706876134838,0.3150169363944298,0.3157491704245724,0.3165043704270735,0.3175804462383675,0.317819830475064,0.318896897524287,0.3196401932625298,0.3202032733692799,0.3218604651162791,0.324062570589564,0.3287058604304481,0.3325598309839642,0.3358799454297408,0.3394863563402889,0.3428571428571428,0.3461704622600753,0.3475177304964539,0.353547437195178,0.358264081255771,0.3597915115413254,0.3657154026583268,0.367237687366167,0.3696053116931022,0.0,2.774865942055172,51.80849015157986,177.19671875826822,252.2168602642831,fqhc6_100Compliance_implementation,25 -100000,95727,45268,428.3744398132188,5882,60.17111159860854,4630,47.6668024695227,1800,18.281153697493917,77.31288813594676,79.67102153785783,63.318020272784125,65.06188861034428,77.07768790615586,79.44116491027748,63.23083071853304,64.9793976945671,0.2352002297909052,229.85662758034664,0.0871895542510827,82.49091577718559,159.22984,112.04510053479385,166337.4387581351,117046.4973672985,397.59601,261.5392287626679,414637.78244382463,272508.13248073665,383.95402,186.91567874320145,397290.7748075256,192197.697757789,3305.7676,1516.1221649983097,3405984.591599026,1536487.7349134448,1135.70048,503.3434101618453,1170377.5632789077,509873.0766233544,1761.10564,743.930775084338,1792311.7824647175,739282.3682390002,0.37996,100000,0,723772,7560.792670824323,0,0.0,0,0.0,34288,357.4226707198596,0,0.0,35134,363.1263906734777,1567929,0,56325,0,0,0,0,0,63,0.6581215331097809,0,0.0,1,0.010446373541425,0,0.0,0.05882,0.1548057690283187,0.3060183611016661,0.018,0.3361016121152906,0.6638983878847093,24.586601689708488,4.374250774919153,0.3086393088552915,0.2362850971922246,0.2377969762419006,0.2172786177105831,11.504515615781552,6.103297617290329,19.391328527159164,12156.936129208454,52.64221880510557,13.066637736224935,16.229550490301435,12.275461304886797,11.0705692736924,0.5647948164146869,0.7824497257769653,0.6934919524142757,0.5876475930971844,0.1202783300198807,0.734920634920635,0.9138755980861244,0.873972602739726,0.7451737451737451,0.146788990825688,0.501186943620178,0.7011834319526628,0.631578947368421,0.5391923990498813,0.1129441624365482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901638680143,0.0046929322210847,0.0069602978926328,0.0088875797342867,0.0111166485287985,0.0131670061099796,0.0156724788416437,0.017661892170575,0.0201198192487782,0.0225781018011283,0.0249254083317099,0.0269856754120244,0.0295372970082173,0.0318068516572935,0.0341174043123903,0.0361727195684077,0.0379282852024809,0.0396878923394585,0.0415544440169295,0.0435738473560823,0.0576425140948005,0.0719263367165428,0.0848277019232786,0.0973388987603957,0.1097919719958246,0.1250978401133887,0.1368874551667055,0.1481792925798588,0.1588656270027771,0.1691543888996118,0.1821646587642518,0.1938382680537232,0.2049358556207871,0.2153450727332385,0.2247859862238947,0.2344965104685942,0.2441599607129703,0.2528378728047971,0.2613178303375762,0.2696670409496093,0.2770349274707973,0.2836508660514836,0.2903741037836303,0.296216825297883,0.3011178614823815,0.3061458436051671,0.3106954148198232,0.3157097775741843,0.3196321005246453,0.3225077624364141,0.3218384603973081,0.3212568704971554,0.3197821270831275,0.318880875836302,0.3174551143559562,0.316200070642075,0.3145571228872792,0.3154350260159388,0.3169365201747622,0.3178372372264736,0.3187736008566759,0.3188615628718762,0.3205892227631358,0.322302769946749,0.3232934146165153,0.3242141569334483,0.3244062080201217,0.3292359223914555,0.3325814977973568,0.3344516335170541,0.3369619905776883,0.3399925615004516,0.3428141836862549,0.3487894015532206,0.3508953817153629,0.3553924470226116,0.3552266419981498,0.3613138686131387,0.3674147963424771,0.3722326454033771,0.0,2.6370646602987087,54.64036648333497,173.11907421139117,252.23765402888472,fqhc6_100Compliance_implementation,26 -100000,95772,45632,432.7151985966671,5981,61.16610282754876,4697,48.36486655807543,1866,19.076556822453327,77.37208356525132,79.71054071414022,63.35007434272507,65.07956826628835,77.13561003569868,79.4787492396775,63.26162036141532,64.99600973270447,0.2364735295526401,231.79147446272447,0.0884539813097546,83.55853358388288,158.0777,111.24593514073568,165056.27949713904,116157.05544494808,401.54083,264.6700927399649,418588.10508290527,275675.0018167782,386.57474,188.34389236684493,399626.46702585305,193510.60779947197,3379.53434,1553.9668440684188,3479503.5083322893,1573343.5702172024,1136.18548,507.4841629918408,1166598.598755377,510153.06582995714,1825.958,774.4898012527561,1866774.5687674892,772648.1054692575,0.38389,100000,0,718535,7502.558158960865,0,0.0,0,0.0,34659,361.1807208787537,0,0.0,35333,364.8978824708683,1573305,0,56510,0,0,0,0,0,72,0.7517854905400325,0,0.0,2,0.0208829302927786,0,0.0,0.05981,0.1557998384954023,0.3119879618792844,0.01866,0.3364187679540377,0.6635812320459623,24.2260176445443,4.314212119246912,0.3199914839259101,0.2375984671066638,0.2182243985522674,0.2241856504151586,11.260002746416992,5.901893269847451,19.963861442249375,12271.18505795582,53.54218686716358,13.388388303366664,16.96990311471556,11.578974151824694,11.604921297256656,0.5720672769853098,0.7956989247311828,0.7092481703260146,0.5951219512195122,0.1168091168091168,0.7380216383307573,0.9195121951219511,0.8790931989924433,0.7644787644787645,0.1359649122807017,0.5089626799882456,0.7237960339943342,0.6482820976491862,0.5378590078328982,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877848678213,0.0043591095251611,0.0065555803616731,0.0088377810058816,0.0111664802196684,0.0130925232122495,0.0153196954407852,0.0173071820723717,0.0198250490516677,0.0220552866163812,0.0241750358680057,0.0260986473449783,0.0283499856091443,0.0305813546407463,0.0326073505754238,0.0347061497768226,0.0367464392182842,0.0389621164196749,0.0410640066500415,0.0429264534399466,0.058178972084529,0.0728809304660697,0.0860563365516663,0.0990805443177638,0.1116554463373263,0.1277627519756582,0.1405150487494701,0.1522266173280592,0.1623663486778923,0.1724928489549296,0.185097524502157,0.1979114868224764,0.2089922076228359,0.2194489996720236,0.2288680884763025,0.2389891137025593,0.2481509164537757,0.2572935052670631,0.2656531646430636,0.2732289865692662,0.279959287060919,0.285989875016076,0.2921247369789819,0.2976293103448276,0.3034381485212199,0.3093666896483797,0.3140261073077934,0.3187047890260491,0.3227813712807244,0.3268023838405147,0.3256686433498729,0.3242218620367572,0.3227156770165325,0.3207402588014169,0.3196505771716361,0.317620943049602,0.3159393690073099,0.3167382959876644,0.317153265944892,0.3182548466564318,0.3187185388948146,0.3204784084629352,0.3221225241053314,0.3230247450744137,0.3245755181440476,0.3255468363010663,0.3273610515787969,0.3296751813308105,0.3335910864292995,0.3377942406500179,0.3404138937004284,0.3437599575146043,0.347336645493994,0.3487628473543966,0.3508292499057671,0.352334676463617,0.355281207133059,0.3556741795175959,0.3570073190566549,0.3559894855426211,0.0,2.57050169918242,56.33856155962158,175.55423364787313,254.413439529985,fqhc6_100Compliance_implementation,27 -100000,95644,45244,429.15394588264815,6114,62.71172263811634,4806,49.63196855003973,1813,18.558404081803356,77.25911226955019,79.65648513253856,63.27736057920528,65.04613230727703,77.02969519743756,79.4281941890507,63.19162329894014,64.96371055003151,0.2294170721126249,228.29094348786327,0.0857372802651426,82.4217572455268,158.29506,111.33922789583552,165504.4331061018,116410.04965898072,397.34273,261.14076446560284,414820.375559366,272415.2424256648,382.08644,186.1517215877704,395592.792020409,191667.18305863187,3399.77812,1557.7577580376674,3511459.673372088,1585546.5351069248,1115.43516,498.3558947091335,1148880.3584124462,503722.6860840237,1782.06612,754.625313522935,1825946.8863702896,756334.4445354178,0.38138,100000,0,719523,7522.928777550082,0,0.0,0,0.0,34340,358.41244615448954,0,0.0,34984,361.8836518757057,1568886,0,56372,0,0,0,0,0,63,0.6586926519175275,0,0.0,2,0.0209108778386516,0,0.0,0.06114,0.1603125491635639,0.2965325482499182,0.01813,0.33453125,0.66546875,24.603087786189157,4.239681551524723,0.33083645443196,0.2317935913441531,0.223886808156471,0.2134831460674157,11.115329797648544,5.739634720076939,19.490256031295218,12217.44459100021,54.58249244309152,13.38366421203289,17.868511129897197,12.011157750598036,11.319159350563387,0.5659592176446109,0.7917414721723519,0.6974842767295597,0.5715613382899628,0.1111111111111111,0.7438271604938271,0.9302884615384616,0.8603491271820449,0.75,0.1581395348837209,0.5002849002849002,0.7091690544412608,0.6425567703952901,0.5135467980295566,0.0986436498150431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024614324929347,0.0046035753759417,0.0069017315226437,0.0093785563323036,0.0115367007477491,0.0138716313934776,0.0160796949242408,0.0182222812050185,0.0202512752885372,0.0225192949413474,0.0247085721316013,0.0269840128964688,0.028860889688866,0.0309564034943135,0.0329824561403508,0.0349484045743118,0.0367557935957069,0.0387701506171045,0.0407218639484085,0.0429719670986103,0.0577901788046942,0.0723652512725977,0.0860986264544041,0.0986152793134312,0.1106311976598059,0.1262973946197839,0.1380834023750345,0.1494251648855124,0.1601398750962443,0.1695912712901909,0.1823438039351052,0.1948357316227461,0.2065487342599451,0.2172002717331755,0.2270160578789483,0.2373062058549153,0.2479077157178661,0.2563608066044119,0.2645202379192303,0.2707268026429187,0.278324437224414,0.2848698793202529,0.2920656391271847,0.2985176903379377,0.3035977713568145,0.3080459770114943,0.3120943952802359,0.3161997346397224,0.3202129040633519,0.3241984359079541,0.3226107037232103,0.3215676526638495,0.3208131737543502,0.3210009300162753,0.320055560534098,0.3177798625101887,0.3159826493159826,0.3171635644869049,0.3174404445435368,0.3188538087056128,0.3202806912208942,0.3204991298845119,0.3206890770391483,0.3216522882810584,0.3236592151971601,0.3245666467423789,0.3265271348649646,0.3290924512298558,0.3331813398807436,0.335871505056514,0.3401038345933145,0.342524705132292,0.3447819510965465,0.3462442204199196,0.3487657196087564,0.3519876952200662,0.3491070065638834,0.3495263051804071,0.3519955654101995,0.3525516166731593,0.0,2.402544159511017,56.57631588694716,178.65285786484108,264.66458303821,fqhc6_100Compliance_implementation,28 -100000,95614,45134,428.4832765076244,6054,62.13525215972556,4709,48.62258665049051,1931,19.78789716987052,77.28554750318864,79.71681640210188,63.27381344368565,65.07166850293486,77.04431594294384,79.47737071881288,63.18451010792344,64.98552065749833,0.2412315602447989,239.44568328900573,0.0893033357622101,86.14784543652831,158.34478,111.35241209612342,165608.36279205975,116460.36364562032,399.69634,263.0755078165437,417413.8201518606,274525.9248818622,383.80628,186.4928427272826,396972.1379714268,191615.512811339,3376.09545,1540.785359013609,3487524.724412743,1568025.392739147,1132.98455,498.7724336849624,1167269.583952141,503964.925309015,1892.15644,789.9483105225967,1940439.517225511,793750.240979437,0.3797,100000,0,719749,7527.652854184534,0,0.0,0,0.0,34531,360.5016001840734,0,0.0,35082,362.6351789486895,1568609,0,56288,0,0,0,0,0,57,0.5752295688915849,0,0.0,0,0.0,0,0.0,0.06054,0.1594416644719515,0.3189626693095474,0.01931,0.3283699059561129,0.6716300940438872,24.65965643230497,4.316927229731624,0.323423232108728,0.2282862603525164,0.2172435761308133,0.2310469314079422,11.154436849768674,5.853213089037228,20.474750398883234,12124.205426488854,53.5332330127579,12.995951073291373,17.282892776215093,11.478461002163844,11.775928161087595,0.5502229772775536,0.7813953488372093,0.6815495732107683,0.5689149560117303,0.1204044117647058,0.7310398749022674,0.9133663366336634,0.8547619047619047,0.7142857142857143,0.1330049261083744,0.482798833819242,0.7019374068554396,0.6155938349954669,0.5214007782101168,0.1175141242937853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002199027158492,0.0046151193337999,0.0068431953864273,0.0089444529145703,0.0111911447523704,0.0132017235583534,0.0155155001989166,0.0178367113435763,0.0199547923208313,0.0219268150302633,0.0241890810611189,0.0262227702424989,0.0282343979989912,0.0305013812724199,0.0325355195770692,0.0347124534546959,0.0367150259067357,0.0386328940399414,0.0407698072359382,0.0426914491937334,0.0567722107815979,0.0708738983263993,0.084026019062431,0.0967592397488305,0.1095347756274824,0.1246425318279068,0.13663705152185,0.1484040171432226,0.1592453476302075,0.1686060879562475,0.181122669198895,0.1931951251246909,0.2058044617849319,0.215981064673782,0.2258398844504228,0.2361180479250602,0.2459366406581859,0.2544968893697593,0.2627738885353214,0.2705125706489963,0.2773081020984852,0.283477568418957,0.2900992329306318,0.2961384212675008,0.3017476389835459,0.3061363019277762,0.3101936518275421,0.3147192600236976,0.3187035523909575,0.3232147103114845,0.322043488804462,0.3205221673521603,0.3194428780872899,0.3180424596517614,0.3173015471961714,0.3155021164345745,0.3126576055064787,0.3129976966107272,0.3130644499178981,0.3141680837733822,0.3146817729924406,0.3169107329894666,0.3179013641133263,0.3180781103207623,0.3202674105425163,0.3213932677800322,0.3217484975620818,0.3261931604659902,0.3315915978681158,0.3345320897881758,0.3374347332576617,0.3405517022290464,0.3405633094429774,0.3458595348132434,0.3482326538245745,0.3476930320150659,0.3494894071025758,0.3519417475728155,0.3507767784137367,0.3487933634992458,0.0,2.44405029583785,55.83477444639013,175.26727529026954,257.543836649481,fqhc6_100Compliance_implementation,29 -100000,95820,45208,428.9501147985807,5876,60.290127322062204,4616,47.71446462116469,1723,17.689417658108955,77.35864855579545,79.66393806905121,63.35358995694328,65.05435253548994,77.14523897891048,79.45058571020222,63.27534092429311,64.97845227396392,0.2134095768849704,213.3523588489936,0.078249032650163,75.90026152601581,159.13282,111.9509703667528,166074.74431225212,116834.6591178802,400.50813,263.3576849098104,417496.8900020872,274363.4678666359,380.80061,184.360282020563,394696.5351701106,190339.0113653057,3254.4651,1466.9745347004878,3365947.474431225,1500480.3847844778,1096.57107,479.52973268108207,1134116.9380087666,490200.730395494,1691.34754,702.5058910344912,1737877.582968065,709189.0996366099,0.3805,100000,0,723331,7548.852014193279,0,0.0,0,0.0,34623,360.8328115216031,0,0.0,34766,360.0709663953246,1570366,0,56335,0,0,0,0,0,78,0.8140262993112086,0,0.0,1,0.0104362346065539,0,0.0,0.05876,0.1544283837056504,0.2932266848196052,0.01723,0.3274090983205609,0.6725909016794391,24.473251659795963,4.400018034829033,0.3318890814558058,0.2411178509532062,0.2097053726169844,0.2172876949740034,11.333432545970318,5.802835470574502,18.33810804705709,12120.06970377934,52.05146747855531,13.156936695680002,17.394940587564406,10.61517385743999,10.884416337870926,0.5721403812824957,0.7646001796945193,0.7030026109660574,0.6157024793388429,0.1166500498504486,0.7368421052631579,0.9198966408268734,0.8517587939698492,0.7064676616915423,0.1614583333333333,0.5157068062827225,0.6818181818181818,0.6507936507936508,0.5919165580182529,0.1060419235511714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023379147015363,0.0046389611968114,0.00696493202348,0.0092544674114889,0.0115721455712921,0.0137225980367224,0.0158497331214602,0.0179429375822427,0.0199211327462558,0.0220033143067575,0.0240802196001311,0.0259298008082548,0.0279550007705347,0.0303669554837514,0.0321998597764671,0.034258389019138,0.0363288323244865,0.0386162426655055,0.0404989924590232,0.0420895926377047,0.0561786030984299,0.06996267681467,0.0831158486096699,0.0959992433557174,0.1085994309200126,0.1236116541790398,0.1359448714550755,0.14706820986341,0.158040270749258,0.1681639829327386,0.1814198354937341,0.194130754586362,0.2056018875925583,0.2161106857705348,0.2267108435061146,0.2358664095915608,0.2446886855612586,0.2539645050273297,0.2623190707382367,0.2699174329787112,0.2781698287829708,0.2847080022933901,0.2906379453189726,0.2959767015424441,0.3010000121508159,0.3061755172966244,0.3101196953210011,0.3143282102131879,0.3186471829254086,0.3229661285216841,0.3220633148115758,0.321457534397207,0.3207841703348474,0.3199174853219082,0.3185029087023626,0.3171287098450347,0.3149699652228896,0.3149287272607975,0.3162864558431801,0.3168483115954976,0.3170133033539442,0.3181001283697047,0.3190726727733876,0.3195427448703923,0.3203256327746026,0.3208630090527249,0.3211066742726754,0.3253308128544423,0.3279547212261829,0.331834281848211,0.3327724213207204,0.3343607184610479,0.3363550519357884,0.337688135075254,0.3391434729641083,0.3365520489872821,0.3416832136856575,0.3441756454563935,0.3553441522104085,0.3588328075709779,0.0,1.7306548333241154,51.96469277824147,173.06124549874212,260.15299111672635,fqhc6_100Compliance_implementation,30 -100000,95852,45182,427.4715185911614,6134,62.596502942035634,4751,48.88786879772983,1885,19.18582815173392,77.41454581429173,79.70399237031305,63.37712166936033,65.06828346680153,77.17118983000087,79.46501777298765,63.28539313109943,64.98119253617706,0.2433559842908579,238.9745973253952,0.0917285382609023,87.09093062446982,161.17948,113.33356020632472,168154.5299002629,118238.075581443,404.63944,266.113572678169,421483.3493302175,276963.92370771465,385.50889,187.0709406475069,398222.8122522222,192023.5986175498,3388.08529,1577.5151630426112,3488079.007219463,1599477.7733528586,1108.47892,494.2218601504675,1139877.5821057465,499219.925684628,1846.47514,790.9100333208834,1883009.2851479363,789290.7263463617,0.38128,100000,0,732634,7643.387722739222,0,0.0,0,0.0,34789,362.2250970245796,0,0.0,35381,365.1775654133456,1560209,0,56062,0,0,0,0,0,74,0.7720235362851062,0,0.0,2,0.0208655009806785,0,0.0,0.06134,0.1608791439362148,0.3073035539615259,0.01885,0.3515443116560608,0.6484556883439392,24.099559271484573,4.295461962858856,0.3260366238686592,0.2311092401599663,0.2266891180804041,0.2161650178909703,11.273523909267052,5.885285600170689,20.224774029134156,12133.582343820512,54.49226022822416,13.246432562531393,17.816324056726533,12.07700256418634,11.352501044779892,0.5632498421384972,0.785063752276867,0.6952872821174951,0.5979572887650882,0.0905550146056475,0.7126099706744868,0.9225352112676056,0.8387850467289719,0.7178571428571429,0.0826086956521739,0.5031000885739593,0.6979166666666666,0.64049955396967,0.5558343789209536,0.0928481806775407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021764437920736,0.004680613950661,0.0072806919699443,0.0095628692668466,0.0115967069824169,0.0138890302099125,0.016320293398533,0.0184626055734628,0.0205422080575304,0.0224817936339088,0.0245731201409446,0.0266286452830575,0.0288937753026037,0.0310344827586206,0.0331168161666151,0.0350761222086802,0.0371742211829948,0.0391016871865025,0.0410368740137862,0.0429197049920422,0.0574637137137137,0.070858241712303,0.0850270292922096,0.097527169633013,0.1097444106279684,0.1250607347318165,0.1363554500863411,0.1472654796704756,0.1581042006764615,0.1683768556800411,0.180558394749583,0.1927809857479616,0.2048208483215058,0.215569058599812,0.2251338250327005,0.235753101723241,0.2450650190707737,0.2546337406004473,0.2629811945647982,0.271140832006962,0.2778825353122867,0.2842539853335049,0.2911416367917273,0.29598820554004,0.3010063932712643,0.3065144491567215,0.3107416079231723,0.3151417189548307,0.3186981327800829,0.3234536593097436,0.3223347519258741,0.3204435090036179,0.3197229105654426,0.3172411801233266,0.3166921580565166,0.3146153375359569,0.3124614679334166,0.3128360655737704,0.3132456095438021,0.3147316655976053,0.3155239109715759,0.3166824494949495,0.3172046380445001,0.3181281337047353,0.3185840707964602,0.3198805349954551,0.3224277850292265,0.3243293882521937,0.3276585331748584,0.3306033630069238,0.3336045565500407,0.3390822784810126,0.3436682853940979,0.3459808038392321,0.3502505102987567,0.3496536339086533,0.3583042090867649,0.3588283157038242,0.3578889499725123,0.3553183377811666,0.0,2.567647386277692,59.60850779465103,176.90750051827084,251.510654350956,fqhc6_100Compliance_implementation,31 -100000,95703,44969,427.4474154415222,5905,60.40562991755744,4631,47.74145011128178,1826,18.66190192574945,77.36002699221102,79.73184018871125,63.33690834044432,65.08850474197425,77.13112505654011,79.50651104163232,63.251232825907024,65.00709305866421,0.2289019356709047,225.3291470789236,0.0856755145373,81.41168331003712,159.31762,112.09634834379403,166470.8734313449,117129.39860170949,398.57001,261.4803595976593,415829.6814101961,272584.79838422965,378.88611,184.594736461724,392014.0747938936,189861.606189021,3316.169,1513.6813360468043,3422785.492617786,1539367.3511246294,1094.44806,485.7773743041647,1130200.6624661714,494207.3424980069,1791.90628,756.5465979072903,1833883.3683374608,757202.1831320389,0.3793,100000,0,724171,7566.857883242949,0,0.0,0,0.0,34458,359.38267347941024,0,0.0,34616,357.79442650700605,1570947,0,56356,0,0,0,0,0,61,0.6373885876095838,0,0.0,0,0.0,0,0.0,0.05905,0.1556815185868705,0.309229466553768,0.01826,0.3408354922279792,0.6591645077720207,24.497889939454243,4.354317860284452,0.3293025264521702,0.2375296912114014,0.2072986396026776,0.2258691427337508,10.909866690184254,5.4525652229867685,19.456540245522643,12043.330122692463,52.391056606736846,13.143797477708205,17.220158793766675,10.57570185187775,11.45139848338421,0.5715828114877997,0.7854545454545454,0.7259016393442623,0.575,0.1185468451242829,0.7288135593220338,0.9166666666666666,0.8737113402061856,0.6933333333333334,0.1559633027522936,0.5141509433962265,0.708092485549133,0.6754617414248021,0.5387755102040817,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586624261883,0.0043690255349775,0.0061901910840952,0.0084418618826063,0.0107307050734366,0.0129118976823754,0.0148725790010193,0.0172895956235073,0.0193202146690518,0.0213968344970208,0.0236933297791629,0.0256354975155024,0.0277343589321706,0.0296535102175346,0.0316959172934658,0.0337772171791319,0.0357923525572625,0.0377709042597359,0.0396193051799459,0.0414834420523935,0.0558648132095374,0.0703587016820356,0.0831418709806019,0.095929315241401,0.1082220956959996,0.1236031083152719,0.1353361126139027,0.1469270473048475,0.1577772556390977,0.1681541234016991,0.1803490627020038,0.192514121237042,0.2037888421533144,0.2138531167326234,0.2243569299798748,0.2347273291099986,0.2430918887562611,0.2516866819592497,0.259934919897051,0.2677796480139237,0.2749392853012605,0.2821393924518157,0.2880491987463781,0.2938563406252619,0.2987870767213433,0.3044608108773831,0.3095372142776714,0.3136843710679833,0.317989465919532,0.3216797055370123,0.3202666307568004,0.3192312457838291,0.3182138627262986,0.3171031510751833,0.3165685749955413,0.3140604668962878,0.3121077509208467,0.3125747130201254,0.3123476363388397,0.3125923552137299,0.3141532536967453,0.3153670177099357,0.3162651859892289,0.317300198187365,0.3193146417445482,0.3212058212058212,0.3230257168866636,0.3263849588128026,0.3314959800582804,0.3353233830845771,0.3398648031424134,0.3447193402500665,0.3427297840281266,0.3461334142824618,0.3524253731343283,0.3569154580827732,0.3596171376481312,0.3650282030620467,0.3613098514034122,0.3648960739030023,0.0,2.5334706083395955,53.74605608137934,171.13538755449514,255.92994597369852,fqhc6_100Compliance_implementation,32 -100000,95754,45087,427.3346283183992,6071,62.169726591056246,4735,48.885686237650646,1887,19.28901142511018,77.33346816806463,79.69543218578089,63.32120940122799,65.07011067946266,77.09231412185657,79.45861588035419,63.2311019329374,64.98491549212676,0.2411540462080523,236.81630542670007,0.09010746829059,85.19518733589848,158.12236,111.19156684712767,165133.94740689686,116122.1117103491,398.58411,262.31424924835915,415673.3504605552,273360.9031981528,382.57362,186.09958668266424,396987.23813104414,192299.79240930267,3401.48572,1557.2744658607346,3507140.6416442133,1581677.8285817488,1158.94197,517.2035601126414,1190142.5632349562,519947.73607591377,1849.26772,785.3716786715881,1890247.049731604,782410.3013615051,0.37861,100000,0,718738,7506.08851849531,0,0.0,0,0.0,34398,358.63775925809887,0,0.0,34969,362.5958184514485,1575486,0,56517,0,0,0,0,0,55,0.5743885372934812,0,0.0,1,0.0104434279507905,0,0.0,0.06071,0.1603497002192229,0.3108219403722616,0.01887,0.3248938512344708,0.6751061487655292,24.701203944715623,4.435055326390386,0.3275607180570222,0.2249208025343189,0.2240760295670538,0.223442449841605,11.36642022614152,5.888806724345816,20.268825486772734,12096.576176389544,53.68767848947498,12.744728293753075,17.318280468461513,11.964475844435556,11.66019388282484,0.5564941921858501,0.7981220657276995,0.6782720825274017,0.5730442978322338,0.1181474480151228,0.7180892717306187,0.9172932330827068,0.862796833773087,0.6966292134831461,0.1637931034482758,0.496818970503181,0.7267267267267268,0.6186006825938567,0.5314861460957179,0.1053268765133172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381073002685,0.0045531983937046,0.0067291882345776,0.0092259546018004,0.0111267061288419,0.0132065289331934,0.0154242955592708,0.017574656569574,0.0197559380237929,0.021864411984482,0.0241637021621233,0.0261690878291668,0.0283105210657836,0.0305146187989825,0.0322926768875224,0.0345740007648657,0.0364176693519995,0.0385178113747911,0.040536466184956,0.0425372357046141,0.0570715717387673,0.071099621109041,0.0840731180087724,0.097532500315537,0.1098209200784661,0.1255419495378888,0.1366091228368011,0.1479328990505386,0.1582747644784345,0.168482807439027,0.1811982202303358,0.1934796251812417,0.2048705147866566,0.2146333993283818,0.224026402640264,0.2348785187482004,0.2440274180584085,0.2526418852763429,0.2622822447937354,0.2690101333944009,0.2756283470395688,0.282258819126041,0.2888228890571753,0.29539191488342,0.2998070458599808,0.3049118186405425,0.3098375,0.3135769836832207,0.3182482696164047,0.3228079435244441,0.3217615044724647,0.3198734699491129,0.3192738846327174,0.3180129252389145,0.3174756559875121,0.3153092364550905,0.313486529318542,0.3135093397295832,0.3140175090623076,0.3150885722968021,0.3162748847148802,0.3180730988950167,0.3184786704064972,0.3194366826869341,0.3212385332145522,0.3216404840944141,0.3218017710201873,0.3231524922069335,0.3270294065856665,0.3315868857664523,0.3356391935557274,0.3361670474470007,0.3399722677423421,0.3433279926756695,0.3452437069859527,0.3466140224934195,0.3471391317686761,0.3504395829073809,0.3593618807724601,0.3613477924089853,0.0,2.1374502475665453,56.08668939152331,171.5171441771707,265.3823352528155,fqhc6_100Compliance_implementation,33 -100000,95792,45201,428.25079338566894,6003,61.37255720728245,4680,48.21905795891097,1855,18.947302488725573,77.34149214859087,79.68319457055695,63.33904717832892,65.07356597681137,77.10713462922547,79.45176588385503,63.252098225023424,64.99048181145514,0.2343575193654032,231.4286867019177,0.0869489533054945,83.08416535622598,159.24964,112.02597457778084,166245.23968598628,116947.10892118428,399.39542,262.9430252976363,416315.3812426925,273868.83591284894,378.69092,183.99972709258736,391850.0605478537,189211.9821438868,3357.21517,1533.9878023926206,3460481.898279606,1557162.8657848453,1093.70352,484.7994407784248,1121813.658760648,486163.1918459247,1819.27354,765.4053521358863,1859683.1050609653,764063.0608327992,0.38135,100000,0,723862,7556.601803908468,0,0.0,0,0.0,34490,359.38282946383833,0,0.0,34592,357.60815099381995,1573555,0,56362,0,0,0,0,0,73,0.762067813596125,0,0.0,0,0.0,0,0.0,0.06003,0.1574144486692015,0.3090121605863735,0.01855,0.3367265786543661,0.6632734213456338,24.66715112726466,4.368173506843486,0.3241452991452991,0.2356837606837606,0.2185897435897436,0.2215811965811965,11.05808088041802,5.649087294614674,19.67202828399158,12183.103329017293,53.16852593669774,13.287479341352617,17.1357142032885,11.390080428088794,11.355251963967817,0.5551282051282052,0.7896645512239348,0.6644693473961767,0.5718475073313783,0.1292189006750241,0.7322580645161291,0.9090909090909092,0.8817204301075269,0.7068965517241379,0.1651376146788991,0.4912790697674418,0.7167883211678832,0.5938864628820961,0.5322376738305942,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044605293837373,0.0065858237353493,0.008850546681299,0.0111105458615251,0.013109777836632,0.0149212630548302,0.0172063433712179,0.0190504432832615,0.0213293193663666,0.0234186754708855,0.0257234396500379,0.0279874925428401,0.0303585961080836,0.0325539642577077,0.0344610168790763,0.036365895582662,0.0384862756488723,0.0406396774595785,0.0428794503435352,0.0576862884210087,0.0717362664937998,0.0845978119629458,0.097028100632632,0.1096567496074277,0.1260371854091135,0.1383514444738934,0.1498064406347045,0.1600930798544026,0.170109225772566,0.1835238648840663,0.1950394100920109,0.2060737762807627,0.2169071038251366,0.2267204697137956,0.237157344670298,0.2461989477438915,0.2552295617610401,0.2642522253176598,0.2715757222393707,0.2786750868767101,0.2856325663386217,0.2915923190546529,0.2962674868063616,0.3019092210281167,0.3072748751015184,0.3118635596926344,0.316409572779788,0.3210945170792207,0.3253941100613206,0.3238883810957578,0.3228168008131198,0.3216879680198187,0.3204130262112788,0.3190285204991087,0.3176922370796487,0.3159361099238574,0.3166157585312182,0.3167900432530388,0.3177463177463177,0.3178482271899694,0.3187670852977299,0.3203225061414744,0.3213957553618251,0.3213803088803089,0.3233985765124555,0.3238918732584528,0.3275227027370292,0.3311497468219964,0.3329469603101643,0.336695219673943,0.3390884718498659,0.3405949423530161,0.3429278861033735,0.3437797675747761,0.3475500179705283,0.3538052820753242,0.3539162867799419,0.3591470258136924,0.3609831029185867,0.0,2.483046562294967,53.88944239220268,177.78192956967865,257.2795804748323,fqhc6_100Compliance_implementation,34 -100000,95700,44954,425.8411703239289,5971,61.12852664576803,4718,48.69383490073145,1872,19.237199582027166,77.3419109081298,79.71094623420447,63.33255108723839,65.08101639485442,77.11264396567287,79.48185430784645,63.24662152475438,64.99748127028042,0.2292669424569311,229.0919263580236,0.0859295624840044,83.53512457399859,158.76168,111.6588622310947,165895.1724137931,116675.92709623271,398.16385,262.7921489826052,415460.762800418,274007.5911147535,380.56938,185.26787779564623,393480.9508881922,190402.7382300882,3389.33332,1540.52499576721,3503884.4932079413,1572094.55620329,1135.04049,502.4896804910068,1169931.7241379311,508994.4696780282,1831.86502,769.2271303927769,1884786.896551724,778014.1457518723,0.37913,100000,0,721644,7540.689655172414,0,0.0,0,0.0,34394,358.77742946708463,0,0.0,34844,359.90595611285266,1571976,0,56375,0,0,0,0,0,69,0.7105538140020898,0,0.0,1,0.0104493207941483,0,0.0,0.05971,0.1574921530873315,0.3135153240663205,0.01872,0.3481943112815596,0.6518056887184404,24.540691034256945,4.331712667265755,0.3192030521407376,0.2414158541754981,0.218524798643493,0.2208562950402713,10.90895016747353,5.593107646900749,19.904123330496464,12107.543408770278,53.44412356666604,13.725566945820155,17.032437773658184,11.344048115431518,11.342070731756175,0.5671894870707928,0.7945566286215979,0.6952191235059761,0.5945683802133851,0.1065259117082533,0.7420127795527156,0.9327146171693736,0.8578947368421053,0.7124463519313304,0.1682692307692307,0.5040392383150606,0.71045197740113,0.6403197158081705,0.5601503759398496,0.0911270983213429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019948963058976,0.004337691294213,0.0066342057212416,0.0090192573332249,0.0112661162402895,0.0135721267410605,0.0157599111083927,0.0180860618927084,0.0201860179885527,0.0223320744675407,0.0246130189646335,0.0264403577406072,0.0288552507095553,0.0308153551338319,0.0328359441107877,0.0349400953099641,0.0370239956917532,0.0388854296388542,0.0409786632283824,0.0428633957230397,0.0574209652320128,0.0715452090355266,0.0854684713041653,0.0975576405250757,0.1100773231220397,0.1255409423241739,0.1374949606399456,0.1480677099968061,0.1578952991452991,0.1677519712492624,0.1797404275943777,0.1919201757518695,0.2033112870942476,0.2139060825441263,0.2239661240651121,0.2349861069598043,0.2445081290840562,0.2539598673486594,0.2622844827586207,0.2692897525692966,0.2766698285634963,0.2834944185719969,0.2897331203029765,0.2949049775924461,0.299599076661402,0.3039296679449082,0.3085181009645497,0.3131751383675806,0.3174161304105758,0.3218107538218239,0.320496944571567,0.3191451346893897,0.3186681852054948,0.31745413637937,0.3173524787136203,0.3157170593001391,0.3136424678094636,0.3143751844443715,0.3161479761681205,0.3168258502186914,0.3173559601408556,0.3178988557538388,0.3185862995298858,0.3187792481135666,0.3197062718189479,0.3220060504902983,0.3231015005420208,0.3261882278879446,0.3298947294299897,0.3328949990037856,0.3360980722781753,0.3389911673938491,0.3446972083937236,0.3498473282442748,0.3531689808255407,0.3566674589969099,0.3613868947609592,0.3611111111111111,0.3625486922648859,0.3687022900763358,0.0,2.367790687188442,54.57201123986789,177.14782908114023,259.61975031187734,fqhc6_100Compliance_implementation,35 -100000,95700,45393,429.36259143155695,6094,62.215256008359454,4746,48.913270637408566,1838,18.798328108672937,77.33810060160408,79.72344706034593,63.31256206328344,65.07596749199531,77.10991741233293,79.49704111495788,63.2278861859421,64.99427977199908,0.2281831892711494,226.40594538805203,0.0846758773413398,81.68771999623914,158.79468,111.72554795234464,165929.6551724138,116745.60914560567,400.07652,263.614718023734,417384.84848484845,274791.8616271546,387.26437,189.31607653243856,400715.3500522466,194607.3176742872,3322.38677,1532.4652346490004,3429402.382445141,1559074.903465069,1142.06411,512.286875788279,1177217.554858934,519167.8273979153,1798.22394,755.9643788018291,1841723.3228840125,758941.6935912721,0.38226,100000,0,721794,7542.257053291536,0,0.0,0,0.0,34548,360.282131661442,0,0.0,35440,366.25914315569486,1567652,0,56318,0,0,0,0,0,67,0.7001044932079414,0,0.0,0,0.0,0,0.0,0.06094,0.1594202898550724,0.3016081391532655,0.01838,0.3374194562313374,0.6625805437686626,24.470198980888227,4.307058741615118,0.3268015170670038,0.2473662031184155,0.2094395280235988,0.2163927517909818,11.496620693153185,6.133423717330881,19.49853820511155,12191.100508754278,53.8741428075557,13.967813479779316,17.662651627971417,11.082127275718513,11.161550424086446,0.5762747576906869,0.7921635434412265,0.7111540941328175,0.5734406438631791,0.1285296981499513,0.7507418397626113,0.922077922077922,0.8729411764705882,0.7531380753138075,0.1576576576576576,0.5070629782224838,0.7078651685393258,0.650088809946714,0.5165562913907285,0.1204968944099378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002300784496564,0.0047068370866301,0.0070359615814161,0.0092078785291786,0.0114365950692402,0.0137503946872549,0.0159822940252534,0.0183030835384599,0.0207496037224523,0.0228433932319664,0.0250105107722597,0.0272523771383977,0.0291084446363757,0.031285721641522,0.0333828505405628,0.0354249338624338,0.0374600084901069,0.0396522388679088,0.0417398717135698,0.0440425842205045,0.058868373783366,0.0724275096828221,0.084915954924139,0.0977577249111293,0.1100940650440798,0.1257721926038757,0.137788341149757,0.1494085202891915,0.1600286395161204,0.1696722630477927,0.1826879565582778,0.1955806249052681,0.2067467833583698,0.2175944671211739,0.2272852347146552,0.2373942826739971,0.2464650300444524,0.2555746912954896,0.2627657641286571,0.2700394368780667,0.2766196465383457,0.2832451168673006,0.2894440693225298,0.2940569962474073,0.2993412256605975,0.3048033964406487,0.3102363586234554,0.3152589458660414,0.3194023274499131,0.3232436571006151,0.3217117396045068,0.3198910306682627,0.3187213968879814,0.3183150659215295,0.3185044397588572,0.3181456304733909,0.3164568970969578,0.3173593811459289,0.3183183183183183,0.3191777647037849,0.3199610625432898,0.321395449791827,0.322067969093536,0.3226549741616518,0.3236862330675377,0.3254776904928573,0.3259150058118107,0.3304424058361251,0.3356719022687609,0.3381535915520706,0.3423942394239423,0.3447588053120571,0.3478747203579418,0.3509680324178298,0.3550657529172069,0.3567986837466212,0.3509274619212788,0.3512272999401317,0.3532284319045035,0.3598786499810391,0.0,2.607741037239289,58.69709940643297,170.86966130376103,255.0590513722075,fqhc6_100Compliance_implementation,36 -100000,95656,44628,424.61528811574806,5828,59.891695241281255,4612,47.69172869448858,1785,18.273814501965376,77.27782633283482,79.68834063462104,63.2892740309558,65.0719991598051,77.06143150779158,79.47525416244325,63.209512033329,64.99653026184293,0.2163948250432383,213.08647217779253,0.0797619976267967,75.4688979621676,160.0599,112.56451670287784,167328.65685372584,117676.3785887742,398.83008,261.8566715687475,416430.6786819436,273236.9339808768,379.49398,183.70180635503445,393975.23417245125,189860.47087637283,3296.11497,1476.1847825425764,3407378.334866605,1504800.1511066477,1129.6769,489.7387513760707,1163975.1609935602,494975.6746843581,1754.77694,720.8292154332588,1797320.105377603,719971.0537387562,0.37632,100000,0,727545,7605.84803880572,0,0.0,0,0.0,34402,359.09927239274066,0,0.0,34620,359.1724512837668,1565804,0,56197,0,0,0,0,0,83,0.8676925650246717,0,0.0,0,0.0,0,0.0,0.05828,0.1548681972789115,0.3062800274536719,0.01785,0.3299525601177818,0.6700474398822183,24.525964700298623,4.406091747341102,0.3248048568950564,0.2346053772766695,0.2192107545533391,0.2213790112749349,11.123903235464812,5.678436766152205,18.72099733000305,11959.932106479197,51.99700807910404,12.998618890837696,16.89546822010584,11.053519857290055,11.049401110870448,0.5732870771899393,0.8022181146025879,0.7162883845126836,0.5736894164193868,0.1204701273261508,0.7402707275803723,0.905852417302799,0.8958904109589041,0.7440758293838863,0.1643192488262911,0.5157434402332362,0.7431059506531205,0.6584289496910856,0.52875,0.1089108910891089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021380945625519,0.0046142300827519,0.0068016161452094,0.0089636879173145,0.0110483747901724,0.0132231741730422,0.0152779194288628,0.0174246989490026,0.0193940385834987,0.0215117648866534,0.0235384615384615,0.0255354116378203,0.0277000329272308,0.0296212316413295,0.0317368546030828,0.0336346523798688,0.0354803945950426,0.0371316428882935,0.0389922577422577,0.0410506120576397,0.0555102723263736,0.0694154980467727,0.0830805403646516,0.0959747434885556,0.1080544915424145,0.1236451011940045,0.13517617823843,0.1465540202209603,0.1569321597022428,0.1668545538484663,0.1797521551724138,0.1918275425242802,0.2034719198955158,0.2133924175283111,0.2220730190527555,0.2324362653312208,0.2413904734262845,0.2501153253299429,0.2581893274936743,0.2657617963126151,0.2726253237143914,0.2794371990838125,0.2854236887233162,0.2910167014113531,0.2960160330377748,0.3004204011687399,0.3046324458963864,0.3094520147079405,0.3146377487562189,0.319577291977255,0.3181977417877065,0.3170667842672473,0.3158050680060951,0.3141439277756879,0.3138077804565883,0.3113680626907328,0.3101441461442096,0.3107192208988616,0.3114521316635872,0.3121524735835225,0.3127859017622797,0.3139024100676718,0.3158137390502535,0.3170748056126553,0.3175930598611011,0.3189518332509303,0.3207396643587771,0.3247580314637914,0.3278068438914027,0.3324275724275724,0.3348594451057595,0.3406441309555496,0.3441546137813427,0.345841006752609,0.3461865608165579,0.3513093387540356,0.354424504950495,0.3557394002068252,0.3591687728166245,0.3566190659976843,0.0,2.0333590031137883,52.04567528659788,171.8692470226288,259.24401463875245,fqhc6_100Compliance_implementation,37 -100000,95820,45367,430.2650803590065,5839,59.6117720726362,4581,47.25527029847631,1804,18.503443957420163,77.39792083527668,79.70262479577744,63.37134666233783,65.07184434775169,77.17492273109168,79.47946109716251,63.288094004169416,64.99061501548955,0.2229981041849953,223.1636986149255,0.0832526581684121,81.22933226214002,158.70536,111.53820389800012,165628.6370277604,116403.88634731804,398.81925,262.6583424829572,415682.59236067627,273587.5880846827,377.83798,183.81841520445712,390171.8743477354,188636.9130254356,3280.37662,1481.9017413318325,3385663.3479440617,1509174.205619952,1074.27707,471.46709958720766,1108902.7029847633,479800.2153195648,1773.67696,741.6811525812848,1820620.6219995825,748066.6267547399,0.38243,100000,0,721388,7528.574410352745,0,0.0,0,0.0,34455,359.00647046545606,0,0.0,34516,356.2304320601127,1574968,0,56429,0,0,0,0,0,70,0.720100187852223,0,0.0,0,0.0,0,0.0,0.05839,0.1526815364903381,0.3089570131871896,0.01804,0.3379705400981996,0.6620294599018003,24.628341896581592,4.41269204569639,0.3075747653350796,0.2447063959834097,0.2202575856799825,0.227461253001528,11.04282371445431,5.505721144876002,19.124739208198758,12111.68691473611,51.52039422012498,13.278052113399657,15.769681046711405,11.160135919327958,11.312525140685986,0.5540275049115914,0.7850133809099019,0.6976579134137686,0.5698711595639246,0.0959692898272552,0.7377049180327869,0.9394736842105263,0.8841463414634146,0.7396694214876033,0.138755980861244,0.4918176504967855,0.7058029689608637,0.6410730804810361,0.516297262059974,0.0852340936374549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020652790151453,0.0044685831247656,0.0069070439677468,0.0091690951737863,0.0112739915419648,0.0134538275223382,0.0156507917099712,0.0180260137719969,0.020158571224227,0.0223650017392727,0.0243122790840633,0.0264480784619488,0.0285511743070252,0.0306145550341648,0.0327142297623219,0.0347843145352799,0.0366324239884961,0.0389080054724099,0.0405798305366339,0.0425235201065689,0.0570489751212642,0.0708585652578624,0.0842604145914376,0.0973137780581401,0.1098590658500848,0.1253819073696229,0.1370428106342591,0.1477763821769953,0.1584154184739642,0.1685741561102232,0.1808370850655924,0.1929230536233922,0.2047231252650234,0.2154502214203706,0.225227107757957,0.2353931153603419,0.2447618729022402,0.2536002967926161,0.2619735872584027,0.269859064702114,0.2769520595441727,0.2831978319783197,0.2898184053721744,0.2948714880582013,0.3001151445366947,0.3053198553825721,0.3097128589263421,0.3140960552368381,0.3184091819721077,0.3227321771625569,0.3220764235496163,0.3205441132106519,0.3192063023971015,0.3178354866122225,0.3163024961113991,0.3142203234665853,0.3135145367638939,0.3150626656631434,0.3157742303695248,0.3171205186201001,0.3167697222170331,0.3178378591416072,0.3178637816161574,0.3184946813265397,0.3199153561294666,0.3201218718262545,0.3210807414388941,0.3239347778093165,0.3247812181492285,0.3294570566756628,0.3337595907928389,0.338290953675569,0.3389369904569297,0.3418659738671964,0.3463359212270403,0.349423374152895,0.3485617597292724,0.3534169025475131,0.3583673469387755,0.3651877133105802,0.0,2.153239744583163,50.52671271557725,176.09212887614382,252.68117422329,fqhc6_100Compliance_implementation,38 -100000,95549,44974,427.91656636908806,5887,60.346000481428376,4657,48.11144020345581,1827,18.691980031188184,77.19945181010942,79.67056724006143,63.224607941291474,65.05368842724316,76.96650777399633,79.44154276912194,63.13660942902013,64.97046978577197,0.2329440361130963,229.02447093949263,0.0879985122713407,83.21864147119129,158.73396,111.6704751125455,166128.33205999015,116872.46869412082,396.76224,260.5135303336889,414608.7661827963,272013.1245054254,374.33482,181.9848524465946,388224.2095678657,187706.55046415105,3319.53136,1516.9100547120163,3430436.802059676,1543843.2162681094,1098.92908,487.1231680880004,1135150.8231378663,494855.8634080197,1794.70594,763.7878346643403,1837928.8532585371,762730.0353531361,0.37845,100000,0,721518,7551.287820908643,0,0.0,0,0.0,34292,358.2141100377816,0,0.0,34161,354.0591738270416,1567913,0,56259,0,0,0,0,0,79,0.8163350741504358,0,0.0,0,0.0,0,0.0,0.05887,0.1555555555555555,0.3103448275862069,0.01827,0.332036947010209,0.667963052989791,24.458627851312738,4.363177047406395,0.3227399613485076,0.2331973373416362,0.2235344642473695,0.2205282370624866,10.90836905603522,5.4365282721686805,19.52376247697545,12083.274391787963,52.97574927028687,13.04925660841918,17.01959031736969,11.715527043188969,11.19137530130904,0.5636675971655573,0.787292817679558,0.697272122421823,0.5734870317002881,0.121713729308666,0.7185483870967742,0.922680412371134,0.845360824742268,0.6932773109243697,0.1769911504424778,0.5074626865671642,0.7120343839541547,0.6457399103139013,0.5379825653798257,0.1061173533083645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021692633627636,0.004240985369615,0.0065500853034365,0.0085102489019033,0.0106181536832675,0.0125486758139819,0.0148288003265805,0.0173206621704475,0.0195047073270569,0.0216747455907521,0.0236816982662163,0.0258503681158228,0.0279296814656903,0.0299979368681658,0.0320570454193148,0.0339426938843112,0.0363298832216714,0.0381533408857062,0.04009375,0.0419059152694548,0.0560809255811034,0.0704697986577181,0.0837398032125136,0.0966722164850681,0.1082372340313084,0.1242193878091966,0.1369100812800544,0.1476247905482566,0.1585437714946913,0.1686634259657575,0.1812664024278293,0.1930152046275897,0.2050579879332729,0.2149267158153414,0.2248874072765807,0.234903951914851,0.2441765449925562,0.2535416360947747,0.2617361806757126,0.2692908681465141,0.2761477150116598,0.2826576576576576,0.2890499863554928,0.2945713153057915,0.2989853960365891,0.3042403569265755,0.3094314028411017,0.3142069528817193,0.3182621119625925,0.3229046730456187,0.3218935710426796,0.3202758620689655,0.3191068958703813,0.3174223998146861,0.3168715083798882,0.31478068558791,0.3126270002540005,0.3133202694024075,0.3141945773524721,0.3155338065533806,0.3165747831486255,0.3184225665033425,0.3195965296495957,0.3200897867564534,0.3220515050490409,0.3232212092633343,0.3249792340961819,0.3283177186839532,0.3312528650516591,0.3331349442526683,0.3367643057948671,0.3371576609918579,0.3404775333709344,0.3403511438777837,0.3424055368499813,0.3407100591715976,0.3461363980039316,0.3522050059594755,0.3499323410013532,0.353811149032992,0.0,2.401912505932672,54.29427969485076,173.75160584156149,258.7858878658351,fqhc6_100Compliance_implementation,39 -100000,95678,45192,427.8517527540292,5977,61.28890654068856,4715,48.65277284224169,1844,18.86536089801208,77.33990302576841,79.73078949864416,63.32261558699434,65.08894680228603,77.10938131996335,79.50172083840378,63.23657270438697,65.00633065669729,0.2305217058050601,229.0686602403724,0.0860428826073658,82.61614558874442,159.56886,112.22917703269778,166776.96022074038,117298.83257666108,400.27144,264.108115177515,417719.24580363306,275405.10376211343,385.50272,187.89758229797383,398702.5334977738,193152.3843207052,3410.11005,1562.5851046010685,3522021.4155814294,1591072.5121773763,1116.88553,504.2052669819619,1150151.7172181692,509813.97169388575,1808.39194,768.5258645185612,1852366.6882668952,770992.0383620287,0.38073,100000,0,725313,7580.770919124564,0,0.0,0,0.0,34490,359.84238800978284,0,0.0,35345,365.21457388323336,1566052,0,56168,0,0,0,0,0,75,0.7838792616902528,0,0.0,0,0.0,0,0.0,0.05977,0.1569878916817692,0.3085159779153421,0.01844,0.3357792311373425,0.6642207688626576,24.335580401638406,4.418003619296746,0.311983032873807,0.2364793213149522,0.2271474019088017,0.224390243902439,11.263726313757944,5.845671064293907,19.848583976850964,12152.183409261872,53.66133293519336,13.411758552143736,16.666683163971058,11.93065747295364,11.652233746124931,0.5639448568398727,0.7937219730941704,0.6961250849762066,0.580765639589169,0.1209829867674858,0.7316118935837246,0.9215686274509804,0.8438287153652393,0.7419354838709677,0.1777777777777777,0.5016002327611289,0.7199434229137199,0.6415270018621974,0.5321992709599028,0.1056422569027611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0047133951649688,0.0070826272691296,0.009446227603299,0.011510732843212,0.0136810602821718,0.0158091083295959,0.017769657875398,0.0202302093555773,0.0226821429302544,0.0245732738735968,0.0267609681988954,0.0289160591072218,0.0313851922046887,0.0335531679928992,0.0355680549236941,0.0376390874619257,0.0394855665929685,0.0415075889188261,0.0436364394500099,0.0582078014332574,0.0729092508061476,0.0865149559871161,0.0995202827806766,0.1115741277996392,0.1267006622796809,0.1391968595830459,0.1500766348773842,0.1607873292535751,0.1712214943551586,0.1836273179556761,0.1958191772521694,0.2072681404477888,0.2177449329864223,0.2262161567246313,0.2361827968898832,0.2453221757322175,0.2539294996568368,0.2621929774802881,0.2700377963578055,0.2761313159355913,0.2826389457313579,0.2894649660427364,0.2948426196521822,0.3006869098764533,0.3055552134773346,0.3102840205605373,0.3141988964324764,0.317755072970488,0.3224474177288681,0.3211660158879763,0.3205216386496822,0.3191123635082775,0.3183658712942878,0.3172573739295908,0.3138611285410385,0.312922157014727,0.3130127994748933,0.3135562869860327,0.3138184150513113,0.3151261289900331,0.3156004577923359,0.315484653341139,0.3163073620180696,0.3171834780726021,0.3175679199040517,0.3196340524980762,0.3238781093745086,0.3268299529791564,0.3296824957494761,0.3312165472194502,0.3322024913861648,0.3357829282080271,0.3403932285735975,0.3434022257551669,0.3468809073724007,0.3538155072019613,0.3621886484279297,0.3621606493143017,0.3661371561410306,0.0,2.459977059613451,55.68295470989884,178.76270374517478,255.04955320597185,fqhc6_100Compliance_implementation,40 -100000,95780,45207,428.8786803090416,5923,60.55543954896638,4649,47.901440801837545,1770,18.093547713510127,77.331780499572,79.6722507025047,63.32970022966426,65.06257587058916,77.10669887041854,79.44981146353915,63.24480135531416,64.98154362555093,0.2250816291534647,222.4392389655492,0.0848988743501024,81.03224503823014,159.324,112.10552129879036,166343.7043224055,117044.81238128038,399.95578,263.69877083008095,416948.2564209647,274687.8584569648,384.50659,187.420511546196,397409.772395072,192629.94843152727,3286.71656,1518.5248005607575,3388058.7805387345,1541961.72537143,1089.39071,492.3963070407573,1119054.7400292335,495757.1800383768,1721.6734,734.5074632511565,1760635.727709334,734618.1501831185,0.38028,100000,0,724200,7561.077469200251,0,0.0,0,0.0,34612,360.69116725830025,0,0.0,35181,363.1969095844644,1566982,0,56212,0,0,0,0,0,64,0.668197953643767,0,0.0,0,0.0,0,0.0,0.05923,0.1557536552014305,0.2988350498058416,0.0177,0.3351055260190108,0.6648944739809892,24.46483525300402,4.356841136865744,0.3275973327597333,0.2391912239191224,0.2252097225209722,0.208001720800172,11.477688702465157,6.107151081374456,19.003194351178447,12104.400425440845,52.90781086850619,13.43667285695949,17.25681169908455,11.538359906647694,10.675966405814457,0.5760378576037858,0.8093525179856115,0.701247537754432,0.559694364851958,0.1282316442605998,0.748650732459522,0.9212962962962964,0.8564356435643564,0.7272727272727273,0.2328767123287671,0.5092482100238663,0.7382352941176471,0.645218945487042,0.5093167701863354,0.0975935828877005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020055710306406,0.004004298284741,0.0063522989030614,0.0085334633670608,0.0108212560386473,0.0132078738072689,0.0154564548031239,0.0176303646535179,0.0196683772566498,0.0218357151631792,0.0238039099100946,0.0260182970028646,0.0279688640733771,0.0297186769265634,0.0320463200916493,0.0344260769779487,0.0364873542266503,0.0385532921213127,0.0404776255897574,0.0422866663195709,0.0566222815878448,0.0702503111892135,0.0837159569784263,0.0964965743348325,0.1085435501886156,0.1245297374984148,0.1361627253744316,0.1470441228079504,0.1585395788642354,0.1683881198302833,0.181144911623501,0.193570022284243,0.2051505133112928,0.2152481571406697,0.2256339144215531,0.2360683344042897,0.2459078584738292,0.2545583388637054,0.2630725439720575,0.27023561468184,0.2770095273332716,0.2840409613766015,0.2904439606209769,0.2954706171418983,0.3009937556187282,0.3064249599210753,0.3105970467041569,0.3150293806482862,0.3191218993529648,0.3227037951942511,0.3212347308453758,0.3192954957927734,0.3194115990990991,0.318035345288499,0.3169546676968337,0.3144980842911877,0.3121444981383189,0.3122176405841862,0.3133488419828265,0.3140776179085294,0.3143339270647792,0.316749945687595,0.3177756334955529,0.319410264441362,0.3206428760752753,0.3222976501305483,0.3225585770480588,0.3262576147710858,0.3283394007280873,0.3307957654335672,0.3327712710203709,0.3375731772219265,0.3412980098871847,0.3440745265729993,0.3472693032015066,0.3528713811105837,0.3569892473118279,0.3591606133979015,0.3626886145404664,0.3649068322981366,0.0,2.441734321737368,56.39084931694561,173.74512675541678,248.2752035644804,fqhc6_100Compliance_implementation,41 -100000,95681,45135,428.3818103907777,5981,61.16156812742342,4663,48.08687200175584,1812,18.5198733290831,77.34192318165195,79.71791942574208,63.32298576779221,65.07524307538226,77.1104843736814,79.48888250395864,63.235451202546216,64.99104779071486,0.231438807970548,229.0369217834467,0.0875345652459884,84.19528466740189,158.8609,111.73529501022998,166031.81404876622,116778.9791183516,399.49357,263.4899860794998,416847.8590315736,274705.1306732788,386.6001,188.2855090556752,399787.5126723174,193413.47067055837,3344.90899,1536.182604919807,3454046.7804475287,1563675.2489206912,1112.22388,492.2371791186682,1145962.374975178,497989.7358082245,1781.37282,762.8703890359266,1823922.3461293257,764601.7838927623,0.37979,100000,0,722095,7546.900638580282,0,0.0,0,0.0,34478,359.6847859031574,0,0.0,35223,363.886247008288,1567590,0,56241,0,0,0,0,0,81,0.8361116627125553,0,0.0,1,0.0104513957839069,0,0.0,0.05981,0.1574817662392375,0.3029593713425848,0.01812,0.3351429027622545,0.6648570972377454,24.419566566958725,4.333150018039096,0.327042676388591,0.2322539137894059,0.2159553935234827,0.2247480162985202,10.990450084047604,5.595581885575906,19.426446482806377,12056.755017824164,52.89485050094094,13.0134656633178,17.27477907909163,11.150456442814637,11.456149315716877,0.5612266781042248,0.7922437673130194,0.6983606557377049,0.5749751737835154,0.1097328244274809,0.7160493827160493,0.9375,0.8585858585858586,0.7024793388429752,0.1157024793388429,0.5016335016335016,0.7016491754122939,0.6421612046058459,0.534640522875817,0.107940446650124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.004520529895298,0.0068474390577923,0.0088670851362057,0.0110135966562598,0.0136018407281464,0.0158228493362967,0.0181552694188884,0.0203484805104503,0.0221880919469615,0.024105650626993,0.0263395699410568,0.0283566124287741,0.0303436195971356,0.0324115649418346,0.0345173465694638,0.0367205303501139,0.0391202358216391,0.040899306386032,0.0427221290208296,0.0576161776533628,0.0717875691070531,0.0851325111519286,0.0977470509623175,0.1092597477971825,0.1242181464116756,0.1353331563578444,0.1465963566634707,0.1577968312343646,0.1686617639164743,0.1812162322466542,0.1923347740838235,0.2040565257152811,0.2146703441029682,0.2238319608965608,0.2336886662825229,0.2434653476401558,0.2522603672885726,0.2609613289760348,0.2676374218087666,0.2750506395046009,0.2810996804887469,0.288019797290897,0.2932512982885378,0.2986335675557393,0.3040186443394946,0.3089854564130829,0.3130896451625224,0.3175582812540518,0.3212049147839873,0.3196529998246111,0.3184106362144345,0.3180285307107279,0.3167668651367131,0.3156965181513254,0.3135077252562337,0.3116045165575482,0.3124620260439759,0.3129605251910485,0.3135233474833232,0.3141979816135857,0.3156334018662027,0.3166247906197655,0.3169160571696974,0.3166350471890685,0.3182668815303842,0.3186810068390135,0.3223958170262062,0.3263796832484476,0.3288471405454474,0.3316015360289135,0.3336675990922045,0.3362264150943396,0.338489398626726,0.3439241917502787,0.3465438862338267,0.3519268256110361,0.3566752628446736,0.3604556550040683,0.3553318419090231,0.0,2.574282030053806,56.47208599727014,169.47497178486748,253.11236816415877,fqhc6_100Compliance_implementation,42 -100000,95743,45131,428.2506292888253,5923,60.75639994568794,4658,48.11840030080528,1837,18.81077467804435,77.32392886815877,79.68775668132757,63.31606620966248,65.06493979845811,77.09495004991795,79.46063887522047,63.231097840465225,64.98309523968284,0.2289788182408187,227.11780610710264,0.0849683691972558,81.84455877527341,158.58502,111.5342225899466,165636.15094576104,116493.34425487672,398.15247,262.1663864803774,415318.0806951944,273287.0060278839,378.75598,184.11745045755876,392717.5250409952,190052.4570950358,3311.98759,1518.5953752397072,3424321.381197581,1551292.5890625804,1113.63443,492.5766601726952,1152512.7581128648,503927.644267686,1793.58594,755.8230959899462,1839298.7685783815,760734.6329464369,0.38188,100000,0,720841,7528.915952080048,0,0.0,0,0.0,34418,358.9296345424731,0,0.0,34641,358.8565221478333,1571767,0,56448,0,0,0,0,0,58,0.6057884127299124,0,0.0,1,0.0104446278056881,0,0.0,0.05923,0.1551010788729444,0.3101468850244808,0.01837,0.3319851156770749,0.6680148843229251,24.284556416865527,4.3645431538886434,0.3327608415629025,0.2271361099184199,0.2241305281236582,0.2159725203950193,11.43424675675888,5.986420699656051,19.69056279684432,12142.5144362307,53.20440570534301,12.742904688477358,17.581014500561164,11.818904263955485,11.061582252348996,0.5674109059682267,0.7835538752362949,0.6993548387096774,0.5842911877394636,0.1192842942345924,0.722266560255387,0.91005291005291,0.8473282442748091,0.7404580152671756,0.1545454545454545,0.5104258443465491,0.7132352941176471,0.6490924805531547,0.5319693094629157,0.1094147582697201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022992697033233,0.0043394944691723,0.0064241784561674,0.0089008108272876,0.011118118566139,0.0129938900203665,0.0151397752992272,0.0172098767952473,0.0195585273338854,0.0216549944710652,0.0237043112728764,0.0256994712254222,0.0279645508194024,0.0300776663027131,0.0321235824037479,0.0340076284589065,0.0361075146304831,0.0381633436776717,0.0401805211821225,0.0423712038339323,0.0570339823563188,0.070575188835185,0.0838357888114088,0.0966015436058127,0.1087573153371645,0.1239158028347789,0.1357757477374245,0.1478429368425535,0.1580437058082156,0.168456937029652,0.1813425766448501,0.1935379225329267,0.2045397719242936,0.2155407104512207,0.2248298160143405,0.2348928630751342,0.2444570905723116,0.2541772151898734,0.2632367632367632,0.2712054851062854,0.2782470655032966,0.2848020434227331,0.2906614186297407,0.2967892936446018,0.3023303924551263,0.3072500246767348,0.3123190494692118,0.3168518707309614,0.320603953717636,0.3253704903295744,0.3246236443101494,0.3231282206729312,0.3212713729473506,0.3197921792237112,0.3186767418337597,0.317097445948429,0.3152490348712107,0.3160363433594647,0.315723893080258,0.3161846000213987,0.3165537632396422,0.316877061972777,0.3176273668793807,0.3193693894868474,0.321335031357378,0.3231117942839278,0.3256283407255771,0.3289154730048796,0.3318886539816772,0.3358108108108108,0.3393353694671103,0.3437781665871375,0.3467219812684644,0.3472676141977655,0.3464299206649037,0.349011669445106,0.3560066656567187,0.3603639240506329,0.369034994697773,0.3790627362055933,0.0,2.0564327960719955,54.97330349367119,187.0296330553441,241.96088924869872,fqhc6_100Compliance_implementation,43 -100000,95779,45142,427.5571889453847,6095,62.28922832771276,4754,48.90424832165715,1884,19.179569634262208,77.4066300966336,79.74540905097304,63.35719594835807,65.08769473335447,77.16673625412533,79.51169281209447,63.26707654372478,65.00334401235908,0.2398938425082803,233.7162388785714,0.0901194046332918,84.35072099538843,158.36524,111.3829229024842,165344.4283193602,116291.59095676945,399.47027,262.29498977770874,416364.3387381368,273143.7160313939,377.3364,183.48981591601063,389990.0604516648,188480.0407786465,3455.59736,1577.8462389518156,3557337.265997766,1596833.2713348623,1126.68532,501.5836140961143,1158005.9407594567,505355.8756054191,1855.11622,785.6243805794313,1890691.6338654608,780404.1946841398,0.38107,100000,0,719842,7515.655832698191,0,0.0,0,0.0,34422,358.6276741248081,0,0.0,34502,356.2993975714927,1577359,0,56662,0,0,0,0,0,82,0.8352561626243749,0,0.0,0,0.0,0,0.0,0.06095,0.1599443671766342,0.3091058244462674,0.01884,0.3379288735704214,0.6620711264295785,24.53138678676769,4.39676452538736,0.3245687841817417,0.2303323517038283,0.2149768615902398,0.2301220025241901,10.97565488130137,5.503446089368091,20.032283005283503,12180.30475314484,53.54592060611825,13.01990049026342,17.305163718257838,11.23998335466561,11.980873042931377,0.5473285654185949,0.7698630136986301,0.6908619572261827,0.5538160469667319,0.1160877513711151,0.7304347826086957,0.926208651399491,0.8539603960396039,0.7489711934156379,0.1466666666666666,0.4809400974491258,0.6823361823361823,0.6330114135206322,0.4929396662387676,0.1081703107019562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0045324572610573,0.0065353507677007,0.0085955518527173,0.0111166485287985,0.0133093012362273,0.0156807569176811,0.0177818608686775,0.0199108712539351,0.021971836751402,0.0241560251706397,0.0261969749830689,0.028192320342049,0.0304412279437501,0.0325536805863373,0.0346027550029945,0.0368914361382963,0.0388861819802821,0.0408619131229805,0.0428114816395798,0.0573596009766888,0.0720381526104417,0.085167714884696,0.0979126815630715,0.1105620297979052,0.1261425959780621,0.1382037121445001,0.1491339068298544,0.1597268167751574,0.1696340575052491,0.1818983977359546,0.1944180111596522,0.2059533124673969,0.2160214055588926,0.2261151395297737,0.2362483540073696,0.2459932412085522,0.2551148882593642,0.2636258477171176,0.2714027377191778,0.2781439341381064,0.2854588587255028,0.2918776321393082,0.2969253434584197,0.3023419658908702,0.3067517933295536,0.3121462559479088,0.3165858562720319,0.3219383921863261,0.32644600821198,0.3250431359861965,0.3238217156700804,0.3221736678883563,0.3209876543209876,0.3198942694643679,0.3177868877535411,0.3158734169219593,0.3152572326220709,0.3155086574569676,0.3157586512866016,0.3167463043153651,0.318114758935421,0.320004169707078,0.3197996661101836,0.3191326591599129,0.3200777202072539,0.3213982451174639,0.3245958934032328,0.3270900910327509,0.3305755820824961,0.333995754482634,0.3365758754863813,0.3376153654277875,0.3412215460897002,0.3445502449847462,0.3472496801953715,0.349307774227902,0.3551271860095389,0.3492626979792463,0.3514132925897631,0.0,2.882850408841798,54.46602147240069,175.05088938868843,262.0388599577815,fqhc6_100Compliance_implementation,44 -100000,95692,45049,426.7859382184509,5931,60.93508339255111,4667,48.22764703423484,1876,19.31195920244117,77.29491858535671,79.69700584626398,63.29396199958445,65.07387667534532,77.06284142595341,79.46435762321767,63.20872281495865,64.99062051815322,0.2320771594033033,232.6482230463114,0.0852391846258058,83.25615719209623,159.56688,112.28980026451244,166750.49115913556,117345.02389385994,402.38077,264.6192466076298,419970.687204782,276007.21753921936,386.463,187.93004948014817,399542.9293984868,193162.41457391565,3369.82679,1532.3714298642635,3487576.798478452,1567400.2318524665,1135.7005,500.6887506967421,1174313.1296242112,510713.5086493564,1842.10064,764.0955578673816,1898169.3767504075,775467.6372725974,0.3793,100000,0,725304,7579.567779960707,0,0.0,0,0.0,34703,362.0887848513983,0,0.0,35376,365.4328470509552,1563922,0,56197,0,0,0,0,0,69,0.7210634117794591,0,0.0,0,0.0,0,0.0,0.05931,0.1563669918270498,0.3163041645590962,0.01876,0.3345138441725692,0.6654861558274308,24.48431112208576,4.349815421046688,0.3205485322476966,0.2380544246839511,0.2114848939361474,0.2299121491322048,11.048366251295178,5.6990134571804285,19.921877858871376,12070.594219396946,53.02655610546947,13.358074704617747,17.072155735209886,10.88073041025325,11.71559525538858,0.5658881508463681,0.7965796579657966,0.7038770053475936,0.5835866261398176,0.1183597390493942,0.7382875605815832,0.9237875288683602,0.8743455497382199,0.7156862745098039,0.1552511415525114,0.5036453776611257,0.7153392330383481,0.6454219030520646,0.5491698595146871,0.1088992974238875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023315458148752,0.0043735476473154,0.0063982125628395,0.0085811600833714,0.0110548978490792,0.0132092587118934,0.0154598146863137,0.0177969391716556,0.0199392308715357,0.0218507022342419,0.0242091009806737,0.026412303140506,0.0288957263550016,0.0306715587253164,0.0330935103275287,0.0352130883067727,0.0372538860103627,0.0391827072821279,0.0411647213032894,0.0431528695615918,0.0575454649911733,0.0713388332844759,0.0843503720105359,0.0973990446328991,0.1097618871786215,0.1254589121533692,0.1373955867837014,0.1485377253031545,0.1593269230769231,0.1697528215251255,0.1820835397772559,0.1945264752014711,0.2055591186285913,0.2156095641911089,0.2246962449832316,0.2351729864378632,0.244020526550647,0.2527176971033738,0.2601042506558252,0.2675479832144741,0.2747906847474899,0.2818681961840103,0.2880637484163539,0.2934670473357165,0.2981257748498918,0.3038493341725597,0.308495045287699,0.3130879788168497,0.3174670963233296,0.3219141052520538,0.3208011621963358,0.3196400357216459,0.3180493983533882,0.3167196072769275,0.3151970538445546,0.3135588028061146,0.3111981230778986,0.3121333136123848,0.3119305263517787,0.3126061841658172,0.3139517402089754,0.3145405887600356,0.3158723493596473,0.315814245371823,0.3168769030013049,0.316216499162479,0.318158392028861,0.32079226686884,0.3248988210452226,0.3279732526667728,0.3300837566936702,0.332410856838744,0.3349710254472159,0.3371986573085139,0.3415300546448087,0.3403722261989979,0.3425869432580842,0.3416666666666667,0.340797378481704,0.3395015105740181,0.0,2.167631332277897,54.062888937017306,178.5218039463509,254.942225601454,fqhc6_100Compliance_implementation,45 -100000,95718,44753,423.974592030757,5821,59.59171733634217,4610,47.5563634844021,1884,19.306713470820533,77.3593554540744,79.73019944644224,63.33143217950936,65.08370000822138,77.12623848395734,79.49968556241926,63.2443639559218,65.00020264304774,0.2331169701170665,230.513884022983,0.0870682235875648,83.49736517364192,159.53608,112.23587484098438,166673.0186589774,117256.81150983556,400.47214,263.4505435814272,417770.9730667168,274620.154311404,380.29854,185.77081432856127,393629.5576589565,191176.389997564,3304.71682,1514.975257017312,3410806.2537871664,1541064.242857143,1106.08159,493.1988004218215,1136822.938214338,496745.3906814056,1844.10546,776.6639065799259,1891076.6626966717,780047.044841362,0.37728,100000,0,725164,7576.046302680791,0,0.0,0,0.0,34677,361.6247727700119,0,0.0,34690,358.6995131532209,1567044,0,56189,0,0,0,0,0,79,0.8253411061660293,0,0.0,0,0.0,0,0.0,0.05821,0.1542885920271416,0.3236557292561415,0.01884,0.3310976607230492,0.6689023392769508,24.432048352217794,4.3898862312206886,0.3253796095444685,0.2338394793926247,0.2145336225596529,0.2262472885032538,11.30389922689093,5.911824757360977,20.17292199709757,12026.727107870423,52.35216215846966,12.944597017091564,17.02547148284047,10.905336979739856,11.47675667879776,0.5587852494577007,0.7792207792207793,0.708,0.5631951466127402,0.112176414189837,0.7257551669316376,0.9187817258883249,0.8561151079136691,0.7048458149779736,0.1545454545454545,0.4961217183770883,0.6988304093567251,0.6509695290858726,0.520997375328084,0.1008505467800729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020459425515537,0.0043184283353776,0.0065958375191532,0.0090085515224147,0.0112565205454379,0.0136418703615095,0.0158927570212549,0.0178735479656207,0.0197808263989695,0.0220518228073587,0.0243552274009126,0.0267463716759621,0.0287151734639285,0.0309911395013393,0.033299280768556,0.0355079130443771,0.0373223178142891,0.038956593890992,0.0407618017943093,0.042612807799675,0.057534875950213,0.0711676731310636,0.084736339700622,0.0973606729758149,0.109508293526515,0.124920661786485,0.1369009720276752,0.1477530422562202,0.1580555882070078,0.1680419783026258,0.1805624393923068,0.1925308508335137,0.2033136789887078,0.2140488723038706,0.2233775388817905,0.2328975237588298,0.2416762534484491,0.2504556398082938,0.2587296723748567,0.2658944305044741,0.273376300290432,0.2796604223672209,0.2856973953345393,0.2917349931174816,0.2971995728984663,0.3024154827272056,0.3072361507281189,0.3123665208990135,0.317252445778767,0.3212675647886953,0.320002688533405,0.3187646889044654,0.3171759747102213,0.3159706221198157,0.3147796971762126,0.3137135181340823,0.3120860404970668,0.3119624578959417,0.3119741100323625,0.3128559225512528,0.3132766881269651,0.3134711445438212,0.3144721383014434,0.3164667638157157,0.3183240277242972,0.318933847476616,0.3186763114427294,0.3220547039753234,0.324875412367516,0.3273144848340857,0.3298555742858444,0.3359910700047839,0.3362462006079027,0.3403657888745541,0.3412039197386841,0.3428839830906529,0.3407059536433873,0.3422417231751097,0.3486610765485529,0.3567141785446361,0.0,2.289051650257501,54.8974130767913,169.0276155917722,254.37628232443777,fqhc6_100Compliance_implementation,46 -100000,95886,45161,427.3720876874622,5853,59.90446989132929,4611,47.473040902738674,1843,18.866153557349357,77.4394230829848,79.71814428044564,63.39129033748679,65.07667032006403,77.21441456911445,79.49393490461162,63.30959365125531,64.99717445118732,0.2250085138703497,224.20937583402176,0.0816966862314743,79.49586887670534,159.75124,112.300837246848,166605.38556202158,117119.11775112944,400.07665,263.51442524205777,416625.5136307699,274204.7513821236,380.88749,185.5196761100829,392968.8797113238,190223.3792994604,3320.50452,1501.7837283419042,3424876.593037565,1528180.5734477795,1099.8921,486.53254250835647,1135190.7682039088,495554.9801488776,1814.1878,749.6050151321758,1859372.3588427925,756284.8552831957,0.38081,100000,0,726142,7572.972071000981,0,0.0,0,0.0,34533,359.5102517572951,0,0.0,34769,358.2900527709989,1570917,0,56396,0,0,0,0,0,77,0.8030369396992262,0,0.0,2,0.02085810232985,0,0.0,0.05853,0.1536986948872141,0.3148812574747992,0.01843,0.3393349553933495,0.6606650446066504,24.449622045002293,4.319823049891759,0.3133810453263934,0.2376924745174582,0.2183908045977011,0.2305356755584472,10.909009425947122,5.6134625523851325,19.41342600729785,12100.306817917251,52.089035102595794,13.128858374150708,16.32408676687079,11.107338834506097,11.528751127068196,0.5601821730644112,0.7864963503649635,0.7044982698961938,0.5749751737835154,0.1166509877704609,0.742998352553542,0.9303482587064676,0.8715846994535519,0.7587719298245614,0.1651376146788991,0.4948483956432146,0.7031700288184438,0.6478220574606117,0.521181001283697,0.1041420118343195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022777890261186,0.0047934654829948,0.0071009038436178,0.0094528322959924,0.0115462408651549,0.0138072078305284,0.0156862745098039,0.017890656874745,0.0199521883045237,0.0220544610159782,0.0240886083731224,0.0264305428726798,0.0283615064481323,0.0303669771990323,0.0324745615934184,0.0344567664126551,0.0365090367366362,0.0383172728214692,0.040602128211783,0.0427337979818995,0.0570889532823281,0.0719584569732937,0.0851186362589265,0.0974267986687803,0.1100818930127786,0.1254513207069107,0.1375055603804359,0.14858533164756,0.1597011266374615,0.1697822481408164,0.1824689632933842,0.193954387822348,0.2046051917019659,0.2141218371716995,0.2237808363748296,0.2343756915858894,0.2438209008446812,0.2532401895819762,0.2624157653321252,0.2696039773701354,0.2760643395725321,0.2835864451889292,0.2900545957316064,0.2951518125351556,0.2999878655502973,0.3046849996307147,0.3091509068409934,0.3131999288961121,0.3172827224454464,0.3212791156731149,0.3201650071888311,0.320321075740944,0.3191824120250052,0.3179517498954533,0.3171277431208973,0.3151406837136834,0.3130488344178406,0.3131422213495647,0.3134994295056283,0.3146313261584986,0.3147691618108471,0.3168761574530123,0.3172880223771552,0.318803513844101,0.3192002675329639,0.321880838696284,0.3222731387191672,0.3234899747419626,0.3260204436409151,0.3295280085029327,0.3320686540198735,0.3350765979926043,0.3369067770045765,0.3400273847558193,0.3410976989815164,0.3417796811801094,0.337409069803436,0.3346963811081578,0.3349043526476296,0.3443557582668187,0.0,2.344601587456217,52.893957367353735,171.19881250576825,256.2289706684684,fqhc6_100Compliance_implementation,47 -100000,95721,45348,430.1459449859488,6061,62.11803052621681,4730,48.65181099236322,1845,18.79420398867542,77.34647984393533,79.7007746008464,63.33814763576003,65.0760679665337,77.12138700028582,79.47939291250134,63.2546802065197,64.99662944149301,0.2250928436495058,221.3816883450619,0.0834674292403292,79.43852504068616,159.1117,111.95157125150484,166224.2141222929,116955.89395378738,400.865,264.24427983403524,418033.2006560734,275305.1470774807,388.67494,189.82506646316085,401421.307759008,194675.96685602012,3380.33699,1549.117729823765,3481043.585002246,1567963.633710226,1135.58512,508.4777135018457,1162227.2228664556,507186.6073691257,1801.15268,753.2593075895995,1837181.9558926465,750800.4616614921,0.38213,100000,0,723235,7555.646096467859,0,0.0,0,0.0,34644,361.1433227818347,0,0.0,35481,365.9907439328883,1567149,0,56275,0,0,0,0,0,78,0.8148682107374557,0,0.0,1,0.0104470283427878,0,0.0,0.06061,0.1586109439196085,0.304405213661112,0.01845,0.3345397324940991,0.6654602675059008,24.3997496736147,4.332297254604353,0.3154334038054968,0.241860465116279,0.2274841437632135,0.2152219873150105,11.500576381615014,6.108824977724364,19.680794111226582,12190.95378605078,53.637804218313576,13.586440056396112,16.96146188467457,12.012072988071294,11.077829289171602,0.5788583509513742,0.8033216783216783,0.707774798927614,0.5855018587360595,0.130648330058939,0.7618320610687023,0.951276102088167,0.8669950738916257,0.7662835249042146,0.1698113207547169,0.5087719298245614,0.7138849929873773,0.6482504604051565,0.5276073619631901,0.1203473945409429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192221997164,0.0045920384393151,0.0066469794298819,0.0091729140001219,0.0113897532898082,0.0137644567519139,0.0160142711518858,0.0182181896120597,0.0201469881734828,0.0220531774390056,0.0243749935936202,0.0264816373452671,0.0285402915715666,0.030517761687489,0.032437786306797,0.0344389205279532,0.0364438278443268,0.0384587452925126,0.0405604873079561,0.0426214482126489,0.05706589827111,0.0707101365848553,0.084768878910594,0.0978948918003827,0.1112786235398304,0.1269082758912335,0.1379551746449293,0.1491268211180521,0.1603684963385213,0.1707408558476492,0.1838252707270339,0.1961937716262976,0.2069433880256438,0.2178520703594449,0.2280025055220387,0.2383776904775079,0.2486817903126916,0.2576376004947434,0.2654142417951423,0.2729781727399739,0.2793957759837146,0.2856357725858883,0.2914703723870173,0.2970085726275403,0.3016823565138172,0.3062430735131141,0.3108339692030571,0.3150010182262499,0.3196972053714937,0.3238532836885051,0.3225497857662561,0.3210736407432897,0.3209631289009115,0.3189847070047122,0.3186844217222007,0.3156628352490421,0.3145297793245274,0.3149669569210082,0.3158569085690857,0.3162750031226022,0.3163414360088393,0.316970103866356,0.3179082884280712,0.319367394416607,0.3201029563878665,0.3215396273746374,0.3219424460431654,0.3246614509693027,0.3272210924900077,0.331013484123532,0.3355787174002094,0.338451729451145,0.3405388471177945,0.3441375637221334,0.3482755380133446,0.350207468879668,0.3496108652525561,0.3551458670988655,0.3588530066815145,0.3547376664056382,0.0,2.916515023794505,56.53174097057461,170.87794162114935,259.85425435505834,fqhc6_100Compliance_implementation,48 -100000,95737,45529,431.0872494437887,6031,61.689837784764514,4749,48.97792911831372,1853,18.999968664152835,77.41222784566315,79.76781454607803,63.350809200748486,65.08946002276859,77.17553220379521,79.53273569945407,63.26278042896743,65.00479667730033,0.2366956418679393,235.0788466239635,0.0880287717810546,84.66334546825749,158.3318,111.4022929905285,165382.03620334875,116362.84089801068,397.65241,261.4725557329371,414717.67446232913,272473.9711218621,386.88948,188.54845648919505,399967.29582084256,193810.6060836436,3393.7491,1554.983271799479,3502371.810271891,1581728.9781374808,1140.35043,507.04125609336046,1174889.091991602,513379.7759417568,1815.69886,765.7903512906805,1862559.5119964068,769465.0608415416,0.38346,100000,0,719690,7517.365281970398,0,0.0,0,0.0,34338,358.00160857348783,0,0.0,35282,364.4150119598484,1575215,0,56423,0,0,0,0,0,70,0.7207244847864462,0,0.0,0,0.0,0,0.0,0.06031,0.1572784645073801,0.3072458962029514,0.01853,0.3332278481012658,0.6667721518987342,24.418223458521084,4.432743124402586,0.3177511054958938,0.2398399663086965,0.2238365971783533,0.2185723310170562,11.125293215891018,5.749396919471695,19.722633689672573,12325.171872534462,53.76400084192552,13.60353732416548,17.009790518593945,11.76495437063345,11.385718628532628,0.5615919140871762,0.7840210711150132,0.68389662027833,0.561618062088429,0.1396917148362235,0.7313664596273292,0.9258373205741628,0.8625,0.6744186046511628,0.1698113207547169,0.4984108639121641,0.7018030513176144,0.6194770063119928,0.5254658385093167,0.1319612590799031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267976503949,0.004459534789439,0.0068376415209187,0.0089873263465756,0.0112953568051728,0.013620400061078,0.0157367959720325,0.0180810791506382,0.0204085803926377,0.0228863868986693,0.0252008690661638,0.0272850455777285,0.0291762190169731,0.0312763897756997,0.0335152872222967,0.0356925048840743,0.0375367601375139,0.0397161354581673,0.0414929562821645,0.0435856034168446,0.0583598684553949,0.0728905072827724,0.0867207250679226,0.1004397130293913,0.1125637048526479,0.1281006603454114,0.1402099275123908,0.1523456632381439,0.1631846112743788,0.1728556709882373,0.1858504398826979,0.1972148225153228,0.2088091531586453,0.2190726446597689,0.2282191961924907,0.2377677452274517,0.2467866323907455,0.256445781096881,0.2648768965203961,0.2733150672368134,0.280279341254951,0.2867391482439407,0.2926404979704862,0.2980081685451126,0.3032815743787104,0.3083364117719492,0.3131468426578671,0.318954132168436,0.3230489080600793,0.3267558572424589,0.3254350538702016,0.3247923007320885,0.3244032165260956,0.3247282413073213,0.3244137767993026,0.3232410874661308,0.3215549926844233,0.3218816240013044,0.3229239150727245,0.3230949298622071,0.3246410237333532,0.3251265350963236,0.3260933005377913,0.3261995244127386,0.3270449274322741,0.3283160621761658,0.3291042451360765,0.3335416145963509,0.3363928247365115,0.339332125698984,0.3414799421756415,0.3448603558418246,0.3470970970970971,0.3519595257872083,0.354572435540716,0.3567821491485614,0.3623777276147479,0.3639088729016786,0.3557065217391304,0.3533891850723534,0.0,2.476395613594553,56.137950658601206,178.11817245421756,255.31690665326855,fqhc6_100Compliance_implementation,49 -100000,95737,45186,428.6743892121124,5825,59.83057751966325,4566,47.19178582992991,1857,19.08353092325851,77.32373385663094,79.69309527656704,63.321321634088775,65.07490496692574,77.09202380773317,79.46130817771389,63.23607832161808,64.99180049671043,0.2317100488977672,231.78709885314677,0.0852433124706948,83.10447021531786,159.10004,111.9176134057939,166184.48457754057,116901.10762379634,397.21695,261.8094398654194,414421.1120047631,272984.14392076153,376.82213,183.2737671288467,390498.8875774256,189030.6594960281,3286.6619,1493.6875194748905,3400941.746660121,1528129.3747191697,1095.3546,480.8572770925933,1133473.5159865047,491613.70952985104,1824.4058,759.6313931805339,1876195.201437271,768021.5938061585,0.37997,100000,0,723182,7553.840208070025,0,0.0,0,0.0,34267,357.42711804213627,0,0.0,34383,355.964778507787,1571523,0,56367,0,0,0,0,0,73,0.7625056143392837,0,0.0,0,0.0,0,0.0,0.05825,0.1533015764402452,0.3187982832618026,0.01857,0.3331692913385827,0.6668307086614174,24.565576846168813,4.40935365627124,0.3083661848445028,0.2409110819097678,0.2222952255803767,0.2284275076653526,10.932921171803232,5.593274309303105,19.77547384265776,12079.1210983412,51.77617018661232,13.130238594475024,15.93452097632044,11.33883419271685,11.372576423100012,0.5582566798072711,0.7854545454545454,0.6917613636363636,0.5832512315270936,0.1140939597315436,0.7125103562551781,0.904040404040404,0.8286516853932584,0.696,0.1609756097560975,0.502828222685323,0.71875,0.6454372623574145,0.5464052287581699,0.1026252983293556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020770010131712,0.0044418753232529,0.006617945594803,0.0087697904599313,0.0110084649194204,0.0130692988621662,0.0153286011504099,0.0175053363700427,0.0196537584489687,0.0216600952429719,0.0240998451456758,0.0261887645065215,0.0288048062876777,0.0306874272229836,0.0329159914536089,0.0347761363753837,0.0367040888189237,0.0385425420440515,0.0405082243340472,0.0424073186488007,0.0569250848342469,0.0710443137336989,0.0843928331654917,0.0974881137711953,0.1100566258580873,0.1250779754919064,0.1372031102483319,0.1480295356854066,0.1592307035154414,0.168977088760949,0.1815147763363298,0.1930557057869118,0.2042709114829674,0.2145137309777855,0.2238648363252376,0.2336788023739923,0.2430591173650291,0.2523366585782331,0.2605974717986509,0.2677848202640551,0.2753460747382774,0.281529689435188,0.2878639227414035,0.293841529858342,0.2991382449326374,0.3039745784631301,0.308737596816777,0.3138093419880362,0.3175645909456062,0.3219091340826341,0.32099962298702,0.319407917383821,0.3185931773329574,0.3171240013893713,0.316336854634727,0.3142257040795989,0.3132099351368454,0.3132822624300782,0.3139167960154877,0.3139642691580787,0.3143520773236429,0.3161891202467817,0.3172753988245172,0.3186778711484593,0.3218496106463511,0.3242091503267973,0.3259861453025706,0.3289914638001897,0.3304139002683995,0.3341335573960709,0.3348335246842709,0.337791384681491,0.339782345828295,0.3402815168063995,0.3456568895595586,0.3475820895522388,0.3515446659564754,0.3544866612772837,0.362964989059081,0.365554276946682,0.0,1.983713922394907,52.97737947586718,173.70710641992846,249.57437500254477,fqhc6_100Compliance_implementation,50 -100000,95774,45280,429.1561384091716,5954,60.788940631068975,4700,48.41606281454257,1830,18.700273560674088,77.38153749659537,79.72171056331366,63.350937847410606,65.08245811752683,77.15475610334674,79.49790854151455,63.26632227023537,65.00150247962014,0.2267813932486291,223.80202179911635,0.084615577175235,80.95563790668336,158.62594,111.64294317000736,165625.0339340531,116568.93955771648,399.79343,263.67250961667577,416746.8728464928,274620.2190664228,388.02044,189.33095430973248,400351.3479650009,194149.73664560504,3372.24798,1534.1262911869237,3475854.8249002863,1556696.8275167828,1148.35963,508.3153452265134,1177931.9648338796,509647.25659344817,1796.27106,753.8414127951222,1836915.5511934345,754588.8197484924,0.38033,100000,0,721027,7528.410633366049,0,0.0,0,0.0,34502,359.5130202351369,0,0.0,35398,364.9320274813624,1571909,0,56373,0,0,0,0,0,63,0.6577985674608975,0,0.0,0,0.0,0,0.0,0.05954,0.1565482607209528,0.3073563990594558,0.0183,0.338318057565525,0.661681942434475,24.34338594659187,4.381389433311771,0.3136170212765957,0.2412765957446808,0.215531914893617,0.2295744680851063,11.27399192888582,5.807572738399812,19.375961617019183,12107.104639646086,53.20997866433703,13.653722464504527,16.74502093206819,11.100350026439989,11.710885241324323,0.5625531914893617,0.7927689594356261,0.7069199457259159,0.5636722606120435,0.1223354958294717,0.7377706495589414,0.908235294117647,0.889763779527559,0.70995670995671,0.1476190476190476,0.4992759918911091,0.7235543018335684,0.6431838975297347,0.520460358056266,0.1162255466052934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0048654894885154,0.0068584878860435,0.0093436113057696,0.0115501148911076,0.0140476602502112,0.0161148937905165,0.0180242705069453,0.020059678309387,0.0219370945627928,0.0240710757690652,0.0262158444704481,0.0283158544108574,0.0304559120299822,0.0326140770690651,0.0344781270018391,0.0365591175314058,0.0386744340326726,0.040813994556749,0.0426670553693022,0.0579505964121348,0.0713703014202941,0.0845170826824896,0.0978826249146219,0.1095760488128734,0.1246340664334555,0.1363665267709525,0.1481367285099144,0.1590518575438372,0.1688516330971497,0.1823358449946178,0.19512669932838,0.2062451769974023,0.2154955742541798,0.2249098028863076,0.2339831943937028,0.2437332738626226,0.2522229841384039,0.260849842936687,0.2687339092625436,0.2759808966546018,0.2823713677911027,0.2895583469353961,0.2950756849971259,0.3003799050844166,0.3054994830387474,0.3102789262650361,0.3129543952412426,0.3171400486315898,0.3215509515525331,0.3203486495211449,0.3194975123010528,0.3187589740702159,0.3176659157858257,0.3172934117507277,0.3156461752604126,0.3134043090920578,0.3129673566227604,0.3141117234809825,0.3152931966979789,0.3161543492478744,0.3173895899053627,0.3184260595036484,0.3192283619456366,0.3194164507150398,0.3219156689224362,0.3238319881777878,0.3285052868672965,0.3315761913073834,0.3330170777988614,0.3343918704350587,0.3365079365079365,0.3400893812551142,0.3437191275932821,0.3458215962441314,0.3464576211246021,0.3492569002123142,0.352008032128514,0.353395913859746,0.3628386112170927,0.0,2.430551507604727,54.16925527198579,182.06791507025167,250.83283158899707,fqhc6_100Compliance_implementation,51 -100000,95849,45536,431.6581289319659,6012,61.5655875387328,4720,48.57640663961022,1871,19.05079865204645,77.37299817448195,79.67239334855788,63.35320242165369,65.05604194074255,77.13497522937811,79.43832941339737,63.26465449138927,64.9717363079512,0.238022945103836,234.06393516050628,0.0885479302644256,84.30563279134162,159.1062,111.8932195651296,165996.7240138134,116739.05785676387,404.30323,266.6915640713007,421183.8308172229,277612.51976682147,384.7931,187.65160680595025,397217.10189986334,192535.5661627188,3372.33228,1536.8263998625823,3473571.5343926386,1558574.1112192944,1104.89251,490.4948600024933,1135807.8331542322,494805.36845720257,1836.73946,775.471793267611,1872919.1123538064,773511.8284859675,0.38248,100000,0,723210,7545.305636991517,0,0.0,0,0.0,34845,362.8624190132396,0,0.0,35186,362.7580882429655,1566434,0,56268,0,0,0,0,0,83,0.8659453932748385,0,0.0,0,0.0,0,0.0,0.06012,0.1571846893955239,0.3112109115103127,0.01871,0.3379408960915157,0.6620591039084843,24.38387443155965,4.35684342865072,0.3247881355932203,0.2389830508474576,0.211228813559322,0.225,11.163331590759949,5.802478892987725,20.11180133908317,12144.945020062172,53.45035992180208,13.44958200865131,17.16266122066573,11.04730626394979,11.790810428535254,0.559322033898305,0.7783687943262412,0.6973255055446836,0.563691073219659,0.123352165725047,0.7205308352849337,0.914351851851852,0.8505154639175257,0.70995670995671,0.1478260869565217,0.4992730444896772,0.6939655172413793,0.645414847161572,0.5195822454308094,0.1165865384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045506603018233,0.0068368785693273,0.0087118981378063,0.0107354167090254,0.0130802117263843,0.0154006095012893,0.017624427231628,0.0195976253972146,0.0217426893404547,0.0235336304492597,0.0257728256743308,0.0281283400476856,0.0301901164167121,0.0323082791253878,0.0341921825786131,0.0361997972231993,0.0385368633749546,0.0405192107995846,0.0425527487619126,0.0573907240573907,0.0714151357451877,0.0847921053458625,0.0973053577804381,0.1096215009372959,0.1248283438615764,0.1380976602238046,0.1490038061621552,0.1595794641904152,0.1689417966740956,0.1816323016658775,0.1936787945608232,0.2057516112554206,0.2166916290408982,0.2260808327556421,0.2358205318477333,0.24573538763625,0.2548238656180736,0.2629805674354233,0.2701207992213889,0.2763043754843336,0.2829983386760886,0.2897593427796915,0.2953998058787581,0.3000983570726021,0.3048604694141563,0.3098198299715785,0.3142130041990075,0.3194431854969246,0.3235628086297499,0.322495890484788,0.3219213925689261,0.321467858855386,0.3207817382247425,0.3192615274846151,0.3178003736485865,0.3152786573780874,0.3150907479733499,0.315608831514779,0.3162483251451541,0.3176369221547913,0.3187933384697445,0.3202076660595784,0.3214014728855166,0.3229965490797546,0.3237649505980239,0.3246816148608222,0.327948202162434,0.3320464675534342,0.3362208773387128,0.3389876509702809,0.3424780632202135,0.347722274583726,0.3510840623811335,0.3509068696551076,0.3572854291417165,0.3591506263366941,0.3533374157991427,0.3590100111234705,0.3618244538137217,0.0,2.568680812936449,55.85384293826328,173.94800099330976,257.5367832152744,fqhc6_100Compliance_implementation,52 -100000,95799,44922,425.5472395327717,5944,60.87746218645288,4706,48.62263697950917,1889,19.415651520370776,77.39816222968327,79.72775560182396,63.35848721039546,65.07960553549044,77.1645696084636,79.49268688056421,63.27313135735786,64.99519563763596,0.233592621219671,235.06872125975065,0.0853558530375977,84.40989785448494,159.63926,112.31268034345972,166639.79791020782,117237.84208964572,401.46895,264.09049521210386,418576.6552886773,275173.84859142976,382.96383,186.34539345681375,396258.3429889665,191783.82502321768,3423.55517,1555.7275172844686,3545408.709903026,1595672.645105345,1135.47563,502.69240960672624,1174120.147391935,513587.9702363557,1856.88166,773.486907846545,1912292.1742398145,787128.9320011843,0.37871,100000,0,725633,7574.53626864581,0,0.0,0,0.0,34600,360.6613847743713,0,0.0,34965,361.4442739485798,1567872,0,56232,0,0,0,0,0,68,0.7098195179490391,0,0.0,0,0.0,0,0.0,0.05944,0.1569538697156135,0.3177994616419919,0.01889,0.334136546184739,0.665863453815261,24.449831700175807,4.387719071287616,0.3259668508287293,0.2235444113897152,0.219294517637059,0.2311942201444964,11.096651014605612,5.614915038214833,20.0457051166927,12090.917543849822,53.37194531727891,12.721632749827648,17.268040173428357,11.57021198950116,11.812060404521722,0.5699107522311943,0.8127376425855514,0.71251629726206,0.5920542635658915,0.1130514705882353,0.731437598736177,0.9121140142517816,0.8708791208791209,0.7089552238805971,0.1643192488262911,0.5104651162790698,0.7464342313787639,0.6632478632478632,0.5510471204188482,0.1005714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090478215956,0.0044490838333063,0.0068782209958203,0.0090888780567064,0.0111625069892746,0.0134142121440348,0.015488867376573,0.0172427865975594,0.0191358718417638,0.0211274810722324,0.0233892366482598,0.0254589485998091,0.0275933652601072,0.0297238603966612,0.0319078743891626,0.0342156629865636,0.0362378060765307,0.0383749987038976,0.0405279019016938,0.0425057792031988,0.0574585520069279,0.0715204501009171,0.0847773899005147,0.0970250417713138,0.1091610536634727,0.125,0.1369864466455978,0.1481922839571851,0.1586625230940099,0.1689003731183256,0.181473584458659,0.1941473543056742,0.2056120453656628,0.2149028431618843,0.2242478187292587,0.234609555626846,0.2441251226255239,0.2529597607456461,0.2604124132298897,0.2686652620007329,0.2762639166676301,0.2832612507305669,0.2894867667250603,0.2952701650109647,0.3010295760283619,0.3061000837314682,0.3101310131013101,0.3140496918091123,0.3184071231671174,0.3227758804836562,0.3215867332516725,0.3200434441893396,0.3191366541829752,0.3187813889049241,0.3179123061871868,0.3156037038168872,0.3138915664554462,0.3142365661861074,0.3148280924579194,0.3155473945055533,0.3162076766317049,0.316537952556835,0.3167430280968221,0.3164277593240743,0.3181513730743469,0.3189019322667775,0.3186253712346202,0.3217274544091931,0.3234628901492745,0.3271947428481486,0.3305965071444772,0.3353520459213229,0.3389176060285234,0.3423847087378641,0.3433944522802069,0.3447001311553594,0.347912221883572,0.3529411764705882,0.3517089305402425,0.3596657804785416,0.0,1.990121423137292,55.681388007930266,177.08413133066904,255.53387497272507,fqhc6_100Compliance_implementation,53 -100000,95887,45317,429.58899537997854,5973,61.197034008781166,4696,48.48415322202175,1794,18.407083337678724,77.3584022892406,79.63988311460302,63.35300198276878,65.0415132584688,77.13594657586857,79.41759574233879,63.27011103371324,64.96068519156617,0.2224557133720281,222.2873722642333,0.0828909490555389,80.828066902626,159.49978,112.22637042349888,166341.40185843754,117040.2353014474,400.43633,263.3549323338676,417139.9772649056,274178.5772147085,381.71689,185.73089539617288,394848.25888806616,191302.44986297123,3348.06266,1514.4254613258108,3458844.848623901,1546697.458345188,1133.54293,495.0553473306052,1168077.560044636,502268.2909202801,1763.05604,739.0884390854857,1810282.8746336836,747054.0399721443,0.38038,100000,0,724999,7560.97281174716,0,0.0,0,0.0,34578,360.11138110484217,0,0.0,34810,359.75679706320983,1566712,0,56291,0,0,0,0,0,76,0.7925996224722851,0,0.0,0,0.0,0,0.0,0.05973,0.1570271833429728,0.3003515821195379,0.01794,0.3439948824564209,0.656005117543579,24.275329397815337,4.398077509899465,0.3175042589437819,0.2482964224872231,0.2123083475298126,0.2218909710391823,11.01216364049439,5.506859029398624,19.18630821965986,12128.064897101578,53.22358497547923,13.993856315982589,16.76826228667224,11.080582506987357,11.380883865837069,0.5660136286201022,0.7924528301886793,0.6867873910127431,0.5697091273821464,0.1362763915547025,0.7443548387096774,0.9209302325581395,0.8455284552845529,0.7702127659574468,0.1650485436893204,0.5020254629629629,0.717391304347826,0.6345811051693404,0.5078740157480315,0.1291866028708134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022172949002217,0.0043975641142556,0.0067348946658417,0.0090263887337672,0.0110286643626753,0.0130573280819059,0.0154040506948123,0.0174511703809475,0.0195521885178113,0.0219180322841165,0.0240973722194355,0.0261220807447048,0.0282947169501273,0.0301811486118111,0.0325748675776499,0.0346500918908873,0.03651598220751,0.0385751448381647,0.0405433473185726,0.0422605547348051,0.0570243109128059,0.0709703706799281,0.0841518838879929,0.0970776936566106,0.1089880657699316,0.1243741153106712,0.1362990907742195,0.1468080129295678,0.1575621731241328,0.1673616396359699,0.180660235152246,0.193097257073635,0.2037262489673464,0.214596449807625,0.2246457272897175,0.2354418614943736,0.2453280406761518,0.2542245207712631,0.2625370069987182,0.270109280854086,0.2768894339797288,0.2829336764533863,0.2896323050506246,0.2961195318495779,0.3008132057811759,0.305554527624616,0.3101007316828706,0.3147428629664072,0.3193512812195913,0.3238358410238781,0.3227202848126871,0.3207292370020256,0.3197495699258298,0.3183652802893309,0.3177638235819296,0.3157313368721426,0.3144633144633144,0.3155861660858702,0.3167553146004002,0.317697646618017,0.3191453503614097,0.3205381484847288,0.3220292830062211,0.321776427486373,0.3226550671697388,0.3242155029093931,0.3264975715056665,0.3312374874874875,0.3358711975692383,0.3391699604743083,0.3422760906078351,0.3450076480827048,0.3483082706766917,0.3504012227741689,0.3501323751891074,0.3553056585715994,0.3541085271317829,0.355460820138043,0.3643071877562175,0.3618147448015122,0.0,1.941562475063579,54.55385133171886,177.75273608185933,257.73481059768955,fqhc6_100Compliance_implementation,54 -100000,95720,45298,428.4997910572503,5947,60.78144588382783,4705,48.42248223986628,1845,18.846636021730045,77.38965647392791,79.75586147047052,63.34469261111818,65.09363011639996,77.15591937928843,79.52482107323748,63.257192567611256,65.01004307391337,0.2337370946394799,231.0403972330448,0.0875000435069282,83.58704248659876,159.11852,111.98381247790262,166233.30547430002,116991.0284975999,401.6141,264.7807480522978,418764.3125783536,275821.80747762194,388.8569,189.45514683116517,401028.95946510654,194044.2376324633,3374.82197,1552.6883762517168,3477070.695779356,1574608.7867511546,1111.31546,499.0028861439463,1143231.8533221895,503718.6509963381,1810.65982,768.610025503181,1851454.053489344,768513.4164167176,0.38117,100000,0,723266,7556.059339740911,0,0.0,0,0.0,34650,361.199331383201,0,0.0,35611,366.8616798997075,1568169,0,56265,0,0,0,0,0,68,0.6999582114500627,0,0.0,1,0.0104471374843292,0,0.0,0.05947,0.15601962378991,0.3102404573734656,0.01845,0.3338676069882994,0.6661323930117006,24.31144365893781,4.309037690218054,0.3241232731137088,0.2318809776833156,0.2238044633368756,0.2201912858660999,11.0886809613369,5.653585057385938,19.66429724340702,12138.48939714905,53.59643536342665,13.06526611336835,17.340033735893755,11.754735376188608,11.436400137975944,0.5628055260361318,0.7891842346471127,0.7016393442622951,0.5698005698005698,0.1129343629343629,0.7441154138192863,0.9228971962616822,0.8878048780487805,0.7569721115537849,0.1359649122807017,0.4923258559622196,0.702865761689291,0.6331838565022422,0.5112219451371571,0.1064356435643564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024714366744996,0.0048052066542988,0.0068399313977207,0.0092650913302314,0.0114437425615673,0.0138690888354853,0.0161397212508029,0.0186502791927399,0.0207396352931556,0.0228675544818973,0.0252060355078109,0.0272059955854422,0.0292684431285467,0.0313658456215503,0.0336874677668901,0.0359663900286284,0.0377338952687659,0.0396949732842247,0.0417511147142278,0.0436259442563167,0.0581332219670077,0.0716872514130207,0.0852883162665771,0.0980947070520036,0.1097221343122982,0.1250383407194305,0.1368097183173306,0.1478028585719911,0.158179721041502,0.168734784054225,0.1810761626842689,0.1931843998485422,0.2052347139610495,0.2154448429708687,0.224849531815631,0.2347228067066823,0.2442394771475095,0.2537310078216308,0.2614814142834463,0.2694565553228741,0.2770716474874226,0.2835531238309016,0.2894310672955306,0.2948710275899216,0.3005594456512505,0.3058633766745469,0.3105453363178231,0.3149389042175798,0.320246303506979,0.3241614808564497,0.3231896725610166,0.3209479428704964,0.3209060213843556,0.3186561025241373,0.3172387219159405,0.3146544482626957,0.3119455756542602,0.311999346084682,0.3131654468576474,0.3151278409090909,0.3157375339813056,0.3162914167731786,0.3174897419341401,0.3186871831361736,0.3196433267194186,0.3195071335927367,0.3215247272211988,0.3262778300407651,0.3292866916950282,0.3325647040114499,0.3328917313841937,0.336645829994123,0.3402913539761619,0.3425751525653582,0.3447478019435446,0.3512377393741242,0.355221637866266,0.3593811979373265,0.3605808012906695,0.3803611738148984,0.0,2.7331636331536764,57.25928399504132,174.13291730240522,252.30463986489917,fqhc6_100Compliance_implementation,55 -100000,95762,45093,426.7350305966877,5859,59.992481360038425,4594,47.39875942440634,1731,17.70013157619933,77.34687979821054,79.70513257903569,63.33382307926016,65.08090233649015,77.12954412099215,79.49083525270584,63.25314606276142,65.0036894296255,0.2173356772183865,214.29732632985576,0.0806770164987398,77.2129068646592,158.55488,111.62181253273526,165571.58371796747,116561.46752650868,399.44935,262.2629458555228,416533.311752052,273275.6478096978,378.36811,183.67109841995855,391391.5853887763,188939.15755667715,3275.88045,1480.0708418590625,3383122.731354817,1507903.465125234,1080.22391,471.2088298112666,1112531.7244836155,476699.92101827945,1701.72126,710.8406798256249,1741854.2636954116,713245.2892695349,0.38081,100000,0,720704,7525.98107808943,0,0.0,0,0.0,34489,359.5476284956454,0,0.0,34635,357.918589837305,1575441,0,56534,0,0,0,0,0,67,0.6996512186462271,0,0.0,0,0.0,0,0.0,0.05859,0.1538562537748483,0.2954429083461341,0.01731,0.3238017871649066,0.6761982128350934,24.66103051168879,4.359790716374399,0.3313016978667827,0.237701349586417,0.2109272964736613,0.2200696560731389,11.285578326458614,5.764817448829142,18.420094050882625,12133.455881167733,51.981322781473445,12.951860684061865,17.374061476963973,10.6964718581908,10.958928762256807,0.5766216804527645,0.7967032967032966,0.7115637319316689,0.5830753353973168,0.1295746785361028,0.749185667752443,0.9195979899497488,0.8777506112469438,0.7397260273972602,0.1633663366336633,0.5136660724896019,0.7262247838616714,0.6504941599281222,0.5373333333333333,0.1211372064276885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381378946941,0.0045126353790613,0.0065177664974619,0.0087705925993678,0.0108041018963131,0.0130750901203641,0.0153124681415027,0.0177011024908125,0.020005724683609,0.0223105040597131,0.0244422572178477,0.0265011499917857,0.028722452463467,0.0308321486700867,0.0329225751852539,0.0347547423373132,0.0368448848985678,0.0387986928782613,0.0410503227684279,0.0432672782747237,0.0575335316528364,0.0716669281866206,0.0850441420093526,0.0972536077273157,0.1096613724270944,0.1252364497141468,0.1377252490990036,0.1487687662144345,0.1594393061733926,0.1697514995715509,0.1824919591665501,0.1947611277407363,0.2064268022422109,0.2163003243030759,0.226284107386089,0.237144880077883,0.2465328874024526,0.2554260472748935,0.2627321511634503,0.2704890812692523,0.2777932023784734,0.2838327835871523,0.2897134338247474,0.2951418847665612,0.30068207194524,0.3053020051666871,0.309566087282731,0.3139614680764538,0.3182500064661304,0.3225364542856014,0.3212926989931036,0.3201660344164055,0.3188515831505539,0.3168473872418964,0.3163911335161984,0.3150268254283662,0.3130955579083769,0.3141189586202373,0.3146537018082566,0.314591723990448,0.3148051170793746,0.3160803821706344,0.3171328744481871,0.3182813967004962,0.3194160513720869,0.3207616162143809,0.3230409223217853,0.3279997475225651,0.3317988544119197,0.3349763485312239,0.3347175321712147,0.3361629881154499,0.3389712843168191,0.3386006229582922,0.3406040268456375,0.3414289082763499,0.3497942386831276,0.3501937589231083,0.3537987104008971,0.3574249605055292,0.0,2.237815094153944,53.78656517648665,169.26863833652828,253.93685588879683,fqhc6_100Compliance_implementation,56 -100000,95760,45469,430.2944862155388,5907,60.50543024227235,4665,48.20384294068504,1877,19.256474519632413,77.36211040614715,79.72369479430925,63.32787542470121,65.0754466354201,77.12847541519055,79.49088701759074,63.24235166921505,64.9923469723689,0.2336349909566024,232.8077767185164,0.0855237554861645,83.09966305120042,157.90654,111.147768489644,164898.2247284879,116069.09825568504,395.32386,260.0647376288154,412331.6624895572,271083.6232548198,383.22623,186.45517900391584,397163.9828738513,192326.25035250187,3361.80764,1530.0215787230086,3475436.267752715,1562543.555475153,1134.60131,499.8933831117831,1170469.2773600668,507658.1590557464,1840.36008,759.8950154199031,1889250.104427736,766673.7741690977,0.38213,100000,0,717757,7495.373851294904,0,0.0,0,0.0,34147,356.0568086883876,0,0.0,34952,361.9569757727653,1576774,0,56550,0,0,0,0,0,57,0.5952380952380952,0,0.0,1,0.0104427736006683,0,0.0,0.05907,0.1545809017873498,0.3177585915016082,0.01877,0.333656330749354,0.666343669250646,24.27713712436676,4.416923728179397,0.3217577706323687,0.2252947481243301,0.2289389067524115,0.2240085744908896,11.39549095478544,5.980648141814969,19.69620757984572,12232.405989917375,52.72617777742197,12.656937264860083,16.86744330929794,11.846784790703088,11.355012412560855,0.5616291532690246,0.7916270218839201,0.6975349766822119,0.5664794007490637,0.1301435406698564,0.7318435754189944,0.9002557544757033,0.8595238095238096,0.7477876106194691,0.162037037037037,0.4991207502930832,0.7272727272727273,0.6345975948196114,0.517814726840855,0.1218335343787696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289089490694,0.0044212789259131,0.006781037458126,0.0089720271904244,0.011199837241239,0.0137695034016376,0.0158158791018293,0.017897982520624,0.0199793458144599,0.0224358974358974,0.0247251620313397,0.0270867144647369,0.0291352029793625,0.0313472517054471,0.033109370323353,0.0353786508141638,0.037536371449577,0.039684598225865,0.0417545865599501,0.0437042360612026,0.0586202937277538,0.0713994288045695,0.084054323318127,0.0966965008781985,0.108958199289082,0.1242742472794187,0.1370410836842719,0.1481765344574311,0.1585341097280837,0.1691507613124598,0.1815538372067977,0.1940933292931042,0.2052849729659163,0.2151991511054226,0.2250751130823327,0.2360103253824934,0.2453578088187675,0.2545112951129511,0.2629769953264667,0.2710585379259802,0.2783519472252763,0.2850926954792678,0.2918441730568967,0.297275910028296,0.3027322404371584,0.3082848550581739,0.3138121408630553,0.3187498409304929,0.3230020325992672,0.3279287598944591,0.3267565419994343,0.3256418723685297,0.3237215589096643,0.3222824124232575,0.3222354163574291,0.3210618927396527,0.3199784888410863,0.3197140608604407,0.3200211358832753,0.3208430496466525,0.3211370725238602,0.3220245591939547,0.3249504330585411,0.3257623038516405,0.3267179597804463,0.3287770905878073,0.3296899841017488,0.3336466459880314,0.3360601293480161,0.337126600284495,0.3405583963075252,0.3448094058100912,0.3471726470035694,0.3494239024022893,0.353787597474935,0.356308273338841,0.3621317947160644,0.3652503490923598,0.3627477599782785,0.3615950445218738,0.0,1.9720646303658864,55.02298988321356,169.27311734028035,260.3356240720853,fqhc6_100Compliance_implementation,57 -100000,95758,45056,428.3401908978884,5848,59.817456504939535,4581,47.23365149648071,1837,18.880929008542367,77.32840490063373,79.68866376719647,63.31625382636724,65.06462885024816,77.09660889827383,79.45677318175217,63.2306033595434,64.98114535893713,0.2317960023598999,231.8905854443045,0.0856504668238358,83.4834913110285,158.63782,111.64031336987314,165665.34388771694,116585.8866829645,399.90505,263.88052415660155,417032.64479208,274982.3452417569,383.03918,186.66882547836624,395405.5118110237,191499.35158906964,3245.06766,1493.6302075812416,3352776.008270849,1523751.328955535,1074.64373,484.2805729175726,1105095.36540028,488579.6099726106,1793.99638,754.148924807753,1845653.1255874184,763090.4671565831,0.37866,100000,0,721081,7530.242903987135,0,0.0,0,0.0,34533,360.01169615071325,0,0.0,35012,361.0351093381232,1568040,0,56318,0,0,0,0,0,64,0.6683514693289334,0,0.0,0,0.0,0,0.0,0.05848,0.1544393387207521,0.3141244870041039,0.01837,0.3413838120104439,0.6586161879895561,24.363916197929843,4.325285981677364,0.3241650294695481,0.2403405370006548,0.2187295350360183,0.2167648984937786,11.15643613594211,5.845378360556179,19.70863834534575,12006.231706376604,52.26894083665269,13.224065910634373,16.930581587070062,11.196796351772694,10.917496987175571,0.5616677581314123,0.7874659400544959,0.6962962962962963,0.5668662674650699,0.1047331319234642,0.7291338582677165,0.9308641975308642,0.8430379746835444,0.7290836653386454,0.1506849315068493,0.4974327997583811,0.7040229885057471,0.6431192660550459,0.5126498002663116,0.0917312661498708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.004665409034666,0.0067619705153718,0.0089737596292607,0.0110781062440235,0.0132313396349413,0.0155102790014684,0.0174276146526728,0.0194749432619763,0.0215161627121419,0.0236071959407513,0.0257102666516074,0.0277052181246014,0.0296232206497332,0.0313296527526959,0.0331593363998139,0.0352044882875982,0.0371169302566761,0.0391038230923507,0.0412947707176854,0.0552058869578832,0.0693413098500219,0.0828099606815203,0.0960353997183157,0.108165630597408,0.1237105774921789,0.1353933597022364,0.1463705343365224,0.1565984534540949,0.1674082969666427,0.1805923532579429,0.1924787138514135,0.2035659117115941,0.2141654273466888,0.223311870562985,0.2338132683575146,0.2434242096218014,0.2529458768977974,0.2606059918035578,0.2683921676462837,0.2751382749762792,0.2813103020805314,0.2876778822248005,0.292028602965878,0.2973935665831895,0.3029693935432954,0.3081823311806382,0.3124163682473333,0.3171636467399058,0.3209106996645625,0.3197341278936511,0.3182675755697858,0.3170869295425058,0.3162101611621016,0.315703364369218,0.3134840935224224,0.3110170700394655,0.3116099325768788,0.3131250961686413,0.3136417259500232,0.313826896771413,0.313355859861284,0.3139386590286634,0.3152317288559995,0.3155440165392567,0.3165885416666666,0.3172559186347967,0.3217680459265301,0.324088969713926,0.3286527964559765,0.3328348740257386,0.3370171560888327,0.3418399103697249,0.3435522747815607,0.340832710978342,0.3450621627961529,0.3469294920394238,0.3441822620016273,0.335918028247023,0.3342487249901922,0.0,2.4043601827174057,55.33319127437063,175.02146053812731,242.239695951369,fqhc6_100Compliance_implementation,58 -100000,95725,44822,424.2778793418647,5867,59.89031078610604,4571,47.1036824236093,1808,18.45912770958475,77.31464774318667,79.6814765907911,63.30648041847581,65.05640347532643,77.08757935973043,79.45654295898281,63.22147628110421,64.97451206442005,0.2270683834562419,224.93363180829817,0.0850041373715981,81.89141090637975,158.76498,111.71693739754944,165855.0639853748,116705.90796505552,399.049,262.177841405459,416229.30268999736,273248.09744132194,375.68074,182.6661319797145,388629.6787673021,187795.78432850295,3296.46629,1509.5204374493287,3401359.0284669627,1534924.232996896,1106.17577,491.9496735358677,1137962.1728910943,496757.2457634974,1780.14534,753.3848893665077,1820485.51580047,754352.750880785,0.37848,100000,0,721659,7538.866544789763,0,0.0,0,0.0,34429,358.9971271872552,0,0.0,34374,355.1945677722643,1570430,0,56336,0,0,0,0,0,83,0.8670671193523114,0,0.0,0,0.0,0,0.0,0.05867,0.1550147960262101,0.3081643088460883,0.01808,0.3423276983094928,0.6576723016905072,24.571415898423588,4.399616107704686,0.3082476482170203,0.2393349376504047,0.223583460949464,0.2288339531831109,11.20163306996727,5.754506173561458,19.225371375154367,12052.530236347868,51.88963540677357,13.110889384296732,15.87312346730262,11.329446087379896,11.57617646779431,0.55895865237366,0.7870201096892139,0.6955287437899219,0.5812133072407045,0.1147227533460803,0.7121090617481957,0.9148418491484184,0.8808864265927978,0.725,0.0851063829787234,0.5015042117930204,0.7101024890190337,0.6316793893129771,0.5370843989769821,0.1233045622688039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868155802056,0.0044712108769048,0.0070139466899449,0.0092470277410832,0.0113027112264102,0.0134683564937446,0.0155272849695473,0.0177860366339262,0.0200049066710281,0.0220404569837435,0.0242789619923513,0.0263471332347626,0.0285338106112036,0.030560936405226,0.0324108958412898,0.0344456849853202,0.0365430615816342,0.0384555519814052,0.0406866720735333,0.0429107198666527,0.0571315215235072,0.0710039353596248,0.0844706943759638,0.0971521117280834,0.1093113993461984,0.1246403182125931,0.1370270126837552,0.1484805894503716,0.1594368666353102,0.1691921359890109,0.1818005348977655,0.1934900150613832,0.2047346173958515,0.2142544051897957,0.2234851825718821,0.2334347381978061,0.2432133149894298,0.2515987863886038,0.2597458735738093,0.2672088028209458,0.2754693787616982,0.2821513542655556,0.2885244735344336,0.2938789232283937,0.2987129893195144,0.3034281906360293,0.3075921637353696,0.3123003906299703,0.3165862305432996,0.3199594037090247,0.3190685034709142,0.3178344649385634,0.3174609869253479,0.3157902329943013,0.3143905082933638,0.3125994857352761,0.3101014417066262,0.310782414551663,0.3110074818079327,0.3123484091881866,0.3133984725965858,0.3143770472394332,0.3158103509467838,0.3172612018448786,0.3189907420732,0.3202712886209495,0.32113253767055,0.3257863213020163,0.3283086177951874,0.3312871287128713,0.3353639132608992,0.3387071114175107,0.3399835848222741,0.3420128283445326,0.3438649438838064,0.3436426116838488,0.348951156025111,0.3571135711357113,0.3592017738359201,0.3548387096774194,0.0,2.4456915754455664,54.43552442610324,167.0749699864549,251.8264666512451,fqhc6_100Compliance_implementation,59 -100000,95814,44850,424.7709103053834,5933,60.7322520717223,4723,48.71939382553698,1890,19.370864383075546,77.3504688262772,79.6843638365693,63.33176974345843,65.06055330718564,77.10840578260022,79.44221399325629,63.24198498506425,64.97344413827092,0.2420630436769784,242.14984331301537,0.0897847583941811,87.10916891472209,157.4694,110.81058556413302,164349.0512868683,115651.7685976298,397.87269,261.72545332818044,414701.4945623813,272606.1466259425,381.62968,185.57525533122697,394524.6519297806,190781.17245445357,3379.1908,1550.5650556621408,3486913.4155760114,1578612.903663319,1144.23143,507.3521806483683,1177980.8065627152,513359.73820394085,1858.49038,787.0543940684834,1906348.9260442103,792197.654915704,0.37968,100000,0,715770,7470.411422130378,0,0.0,0,0.0,34335,357.76608846306385,0,0.0,34921,360.7927860229194,1577829,0,56714,0,0,0,0,0,69,0.6992715052080072,0,0.0,1,0.0104368881374329,0,0.0,0.05933,0.1562631689844079,0.3185572223158604,0.0189,0.3405867182462927,0.6594132817537073,24.12941373478415,4.34123153233715,0.3256404827440186,0.2339614651704425,0.213635401228033,0.2267626508575058,11.315375518061709,5.819811339033767,20.37972079690161,12057.57093513041,53.6920307928412,13.146771576845362,17.353453165944202,11.361736744308496,11.830069305743136,0.5593902180817277,0.7764705882352941,0.7009102730819246,0.5698711595639246,0.1223155929038282,0.7264296754250387,0.9132530120481928,0.8663366336633663,0.7310924369747899,0.1561181434599156,0.4963546223388743,0.6942028985507246,0.6419753086419753,0.5201037613488976,0.1127098321342925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211358064712,0.0048163207365421,0.006911600527758,0.0091137234183066,0.0113615558313159,0.0134444195473712,0.0154403141094283,0.0176456171881382,0.0197640178315815,0.0220297688512171,0.0240561104161112,0.0260823133163558,0.0281368586678184,0.0301248249155475,0.0321988448844884,0.0343559169671733,0.0363139479513881,0.0383151300162844,0.0403537578982374,0.0425263903058568,0.0565512205299394,0.0708662240577134,0.083613652320622,0.0971568462637639,0.1094991255241587,0.1248731822793371,0.1373420137416235,0.1481256914305165,0.1587060958684744,0.1678096870981568,0.180537620523416,0.1927047859976864,0.2034697402583294,0.2145698983495464,0.2241449489004521,0.2336550073678495,0.2426873500362703,0.2517863371929469,0.2597756483037376,0.2671973428015118,0.2742000810044552,0.2814005707068344,0.2884947585129795,0.2948837766594775,0.3001069596713421,0.3046605151485246,0.308884517559796,0.3134014576219356,0.3169741840955357,0.3205826371999577,0.3196437006545651,0.3185103448275862,0.3175062456774266,0.3156172633956364,0.3155725508867992,0.3135150055973869,0.311026181829715,0.3117880097973139,0.3127339223762241,0.3129657760700563,0.3137511938425813,0.3155442358190685,0.3170828710778055,0.3178292841018305,0.3192031949189241,0.3219490575383893,0.3236339846972153,0.3268977208513844,0.3297087514422572,0.332276348646399,0.3356002901704751,0.3400760536600823,0.3413410274101486,0.3444957951359951,0.3517215498639647,0.3539312617702448,0.3572516758074345,0.358304880498092,0.3583061889250814,0.3550724637681159,0.0,2.236171931623629,56.63114900804591,178.6987462848602,252.4180019753861,fqhc6_100Compliance_implementation,60 -100000,95714,45224,428.63113024217984,6040,61.79869193639384,4771,49.22999770148568,1867,19.129907850471195,77.30949638025908,79.66924486011591,63.31695901961641,65.05940278290453,77.08112868097349,79.4422532142575,63.23179851456295,64.9772545058105,0.2283676992855845,226.9916458584049,0.0851605050534587,82.14827709402073,158.6948,111.73958223476812,165800.8023904549,116742.96574667048,401.00283,263.40076521116646,418299.1829826358,274535.40256510687,386.83096,188.53443325172995,399595.0226717094,193543.01783518528,3415.6251,1550.2128549163842,3528872.839918925,1579928.855670416,1116.86668,491.78702328712376,1151818.469607372,498748.22208571713,1825.43518,765.6129871918708,1872491.7149006412,770038.6255287812,0.38069,100000,0,721340,7536.400108657041,0,0.0,0,0.0,34612,360.9921223645444,0,0.0,35323,364.5234761894812,1568137,0,56255,0,0,0,0,0,68,0.7000020895584763,0,0.0,0,0.0,0,0.0,0.0604,0.1586592765767422,0.3091059602649006,0.01867,0.3403108150967333,0.6596891849032668,24.57655838639975,4.437307635319957,0.321106686229302,0.2364284217145252,0.2221756445189687,0.2202892475372039,11.317565330171329,5.818714354095238,19.797583572994192,12146.750155137945,53.78745139142183,13.387812093410442,17.154341040286514,11.85055388497035,11.39474437275452,0.5548103123035003,0.7819148936170213,0.6775456919060052,0.5754716981132075,0.1113225499524262,0.7266244057052298,0.9250645994832042,0.8452088452088452,0.728,0.1513761467889908,0.4930179538330008,0.7071524966261808,0.6168888888888889,0.528395061728395,0.1008403361344537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020761385847824,0.0043792068769767,0.006614722830939,0.0084809458032014,0.0109693488537589,0.0132319561920465,0.0151862610202313,0.0173425745404064,0.0197661583745554,0.0220241323904166,0.02431349234822,0.0263465921925375,0.0284218860862322,0.0305448853279507,0.0326719194752691,0.0347563747572013,0.0369059446928299,0.0391081151153746,0.0411976844490173,0.0430203852043207,0.0574949094136688,0.0710555235752786,0.0841601812422647,0.0962460567823343,0.1080354318253717,0.1240005076786394,0.1359628179416165,0.1480294674984563,0.1592812580121357,0.1695994852822905,0.1829513989894092,0.1951061065396275,0.206484121628975,0.2161526169472232,0.2254853380022684,0.2356762749445676,0.2452020822627851,0.2537456347865269,0.2627046433156477,0.270199935800431,0.2776947927884114,0.2843185434802958,0.2905743043220841,0.2958760166014922,0.3019700302614149,0.3069095663328235,0.3118562184758257,0.3165847697125544,0.3214535652264068,0.3248985848121671,0.323281207872742,0.3225277827505955,0.320695102685624,0.3196952391967499,0.3190324596114367,0.3167290350285258,0.3148139331905102,0.3153602025882623,0.3155777690293206,0.3163170330063721,0.3171569639739426,0.3179862391687982,0.3182505671792286,0.3189838792852178,0.3201457951144154,0.321201044386423,0.3233315200274859,0.3246675490010714,0.3270143846938416,0.3313646993539181,0.3339856193683444,0.3363419166445447,0.3386426592797784,0.3401629979434838,0.3401430992280173,0.3400378608613346,0.3447114648706567,0.351445560795571,0.3570839064649243,0.3576362240982348,0.0,2.408801887698278,54.905988850405,173.67318739062932,267.74055098699296,fqhc6_100Compliance_implementation,61 -100000,95736,45100,427.9581348708949,6043,61.82627224868388,4751,49.06200384390407,1830,18.72858694743879,77.40440741590693,79.7594771980444,63.3594678928421,65.09843111264553,77.17342931558602,79.53143980900181,63.27397461933881,65.01657833830494,0.230978100320911,228.03738904258356,0.0854932735032889,81.85277434058946,158.62176,111.5215862934275,165686.6382552018,116488.66287856972,398.5616,262.0080823987799,415748.7569984123,273114.2691766869,382.91723,186.12451498863,396318.07261636166,191635.1740521983,3382.16542,1545.9074670802763,3493505.8076376705,1575520.7558054964,1112.4212,492.222439759743,1144242.5106542993,496426.7899614974,1791.92376,755.4930141009307,1835569.5663073447,758544.4401563288,0.37934,100000,0,721008,7531.2108297818995,0,0.0,0,0.0,34478,359.5408205899557,0,0.0,34946,361.4523272332247,1575407,0,56487,0,0,0,0,0,64,0.6476142725829364,0,0.0,0,0.0,0,0.0,0.06043,0.1593029999472768,0.3028297203375806,0.0183,0.3363320707070707,0.6636679292929293,24.24326127265384,4.38775910512196,0.3214060197853083,0.232582614186487,0.2292149021258682,0.2167964639023363,11.341937286968754,5.941424060751956,19.54484014283932,12100.337508384308,54.05021930807256,13.40423421847166,17.215419807314348,12.056068456360675,11.37449682592588,0.5704062302673122,0.7846153846153846,0.6967910936476752,0.6069788797061524,0.1145631067961165,0.7266244057052298,0.9041769041769042,0.8720626631853786,0.7649402390438247,0.1040723981900452,0.5139008311837203,0.7148997134670487,0.6381118881118881,0.5596658711217184,0.1174289245982694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502111028987,0.0045502913605269,0.0068172134639965,0.0089981211598029,0.0111130316309619,0.0132837947882736,0.0152764331210191,0.0176423170719263,0.0196072421121464,0.0216218981836786,0.0238595484313986,0.0260489366943098,0.0281381720982831,0.0302715062623599,0.0322237814189607,0.0342988277615828,0.0363382177807694,0.0383717673419848,0.0403338113944835,0.0423085335749773,0.056932553769054,0.0700195690620454,0.0834233686131769,0.0966829627293276,0.1094046464561285,0.124800406061311,0.1369341269083463,0.1476603673143465,0.1585397123870168,0.1679821551132464,0.1810496160597934,0.1931679236504106,0.2053794783667964,0.2156556158152554,0.2261801300315728,0.2359239533621959,0.2453758450657087,0.2535413949723434,0.2620365120761991,0.2692901852635915,0.2760082718146004,0.282449875125458,0.2888456090651558,0.2950394763559919,0.3005811841627315,0.305719024510105,0.3094854602889214,0.3140036544513247,0.3187000477733734,0.322833506503755,0.3214880025766278,0.3204324383651854,0.3195285391174859,0.3180095401420933,0.316733569344255,0.3153506695780971,0.3134102037592797,0.3147069411264195,0.3149065890086684,0.3156105980533461,0.3165787800590897,0.3181836138105396,0.3195283590826417,0.3212940048603215,0.3208953435425504,0.3228752048700538,0.322451642180498,0.3246602792911265,0.3278797413039678,0.3306582328523423,0.3341033654935,0.3353252247488101,0.336753848079089,0.3396611707759794,0.3419655333022822,0.3420620009394082,0.3423863289594141,0.3444466760393653,0.3494742667404538,0.3488188976377953,0.0,2.1500566427367303,55.32733125757576,184.20985332521863,256.0027294847559,fqhc6_100Compliance_implementation,62 -100000,95745,45037,426.9883544832628,5901,60.379132069559766,4585,47.26095357459919,1758,17.95394015353282,77.33232137485312,79.69891625247577,63.31916690730778,65.07160938596067,77.11066512955689,79.4798791180959,63.23530402048309,64.9911525822075,0.2216562452962307,219.0371343798745,0.08386288682469,80.45680375316522,159.14778,111.91079204379388,166220.46059846468,116884.2154094667,398.45943,262.19341638665526,415515.0242832524,273194.12065807177,379.49352,184.5649249147771,392340.9995300016,189603.31043943096,3247.08781,1481.675633253821,3348563.695232127,1504764.6605456746,1063.13155,461.9770122058167,1097989.7644785629,470119.3401282748,1721.93168,729.573488195644,1760050.2584991383,730180.569384159,0.37963,100000,0,723399,7555.475481748394,0,0.0,0,0.0,34440,359.0265810225077,0,0.0,34624,357.64791895138126,1571145,0,56349,0,0,0,0,0,72,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.05901,0.1554408239601717,0.2979156075241485,0.01758,0.3307966321243523,0.6692033678756477,24.67277817976438,4.342286881059346,0.314721919302072,0.2486368593238822,0.2215921483097055,0.2150490730643402,11.136630283671538,5.601405331257661,18.63168245346689,12058.209331814138,51.75951398015388,13.624509231335711,16.271999858278665,11.203944613525689,10.659060277013811,0.5655398037077426,0.7912280701754386,0.7124047124047124,0.5501968503937008,0.1054766734279918,0.7238805970149254,0.9205607476635514,0.8594594594594595,0.6829268292682927,0.1034482758620689,0.5090263391535957,0.7134831460674157,0.6616961789375583,0.5166461159062885,0.1060025542784163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0046962642891194,0.0068840874015108,0.0093198634035287,0.0115569300887116,0.0137121667464675,0.0156747164885371,0.0182339789073905,0.0202750370635448,0.0224510897941215,0.024655034547803,0.0268774703557312,0.029059424775576,0.0312480688817022,0.0330671453922661,0.0351723995369604,0.0368103876739562,0.0388422035480859,0.0409660590692744,0.0425137477087152,0.0567467691087124,0.0701737865804534,0.0835518449371735,0.0964258299246048,0.1084176007254552,0.1242582269376011,0.1362623368354027,0.1476067793723119,0.1581943836187098,0.1677712716899384,0.1803757244113148,0.1926123942076668,0.2041018387553041,0.2140185075802323,0.2241847975612708,0.2345182724252491,0.2438069094804499,0.2522786092044559,0.2607550981037437,0.26842593547057,0.2751102315731,0.282590638417352,0.287658265294048,0.2936679129517783,0.2988389886084865,0.3024803164159243,0.3074142179857645,0.3120003050601858,0.3171429310969612,0.3214290422516643,0.319834299471426,0.3187622857299957,0.3174132012829891,0.3155609411289508,0.3149703264094955,0.3133239531398158,0.3114349065568578,0.3128136171329245,0.3133290142189791,0.3137230417952514,0.3144533813300336,0.3151690171489605,0.316602397518652,0.3169417236906838,0.3186498580570658,0.3194770016148356,0.3201739427012278,0.3244110338753814,0.3269365457346967,0.3285356447059759,0.3331514820876523,0.3368477103301384,0.3409349336702463,0.34332673870035,0.3425960462513987,0.3455246552932928,0.348994296007205,0.3498710061520143,0.3601294847585649,0.358526395746297,0.0,2.412025803164004,52.30258528779025,170.64816830840465,254.60976333706617,fqhc6_100Compliance_implementation,63 -100000,95721,45055,427.53418790025177,5920,60.64499952988372,4621,47.6384492431128,1817,18.564369365134088,77.41699606751023,79.76979202679595,63.36600846061516,65.10030100947417,77.1856780980507,79.54202721268223,63.279889912190974,65.01856753274573,0.2313179694595248,227.7648141137263,0.0861185484241886,81.73347672843079,158.80348,111.72489729875988,165902.44564933504,116719.3168675211,402.03791,264.7323655299483,419398.8362010426,275960.105603308,383.53311,186.56237111416831,396822.4318592576,191957.2055728027,3299.89217,1511.6950271329126,3401235.7998767253,1533485.9961958493,1086.62651,483.0229090971608,1116721.4822243813,486252.34112882166,1773.53228,750.6791585836401,1812195.9235695405,747952.755156355,0.37945,100000,0,721834,7541.020256787956,0,0.0,0,0.0,34632,361.1433227818347,0,0.0,35078,362.5641186364538,1571468,0,56375,0,0,0,0,0,79,0.8253152390802436,0,0.0,0,0.0,0,0.0,0.0592,0.1560152852813282,0.3069256756756757,0.01817,0.3363460296965784,0.6636539703034215,24.23660039333096,4.324974679458495,0.3343432157541657,0.233715645964077,0.2179181995239126,0.2140229387578446,11.328192572769362,6.016588559756546,19.34307351351824,12022.166768742374,52.40125737384236,12.823067758888923,17.366178074989495,11.292112719041151,10.91989882092276,0.575632979874486,0.7898148148148149,0.7003236245954693,0.5998013902681232,0.1223458038422649,0.7291666666666666,0.9029850746268656,0.8406862745098039,0.7727272727272727,0.1559633027522936,0.5188259709457457,0.7227138643067846,0.6499560246262093,0.5514612452350699,0.11284046692607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0044271545654398,0.0068159688412852,0.0089968419663075,0.0112046526761021,0.013049939941774,0.0153708158356097,0.0175648091447234,0.0197947963292251,0.022046712431072,0.0241425599721274,0.026037336945924,0.0281975369559407,0.0301844433230693,0.0321252824115626,0.0342361706744928,0.036651274511834,0.0383973115658676,0.0405762155195709,0.0422340059798518,0.0566983397723713,0.0702828263803873,0.0836480758739351,0.0963704630788485,0.1083161946949322,0.1235352595287448,0.1353790996648139,0.1466283463728777,0.1576439415793241,0.1674817150333526,0.1799112719128225,0.1918770082982613,0.2027237058049931,0.2135133363916377,0.2234221367756111,0.2334258880272575,0.243104389787253,0.250831535418914,0.2591799022775454,0.2669885694016957,0.2743602191552812,0.2813478525026873,0.2879112046241681,0.2932805094077656,0.2995402326738078,0.3045560301847771,0.3096389607468226,0.3145155142181901,0.3184403764608542,0.3218761943671995,0.3204829969476529,0.3190092181725762,0.3183340368650626,0.3163894869164415,0.315116503556737,0.3138670500780079,0.3108485872672426,0.3115808071719534,0.3119545431346864,0.3124611311501626,0.3130523960469886,0.3135249931175522,0.3135708174210647,0.3139783033967633,0.3150278648137961,0.3151573322265169,0.3162952883143392,0.3196700824793801,0.3232996163236833,0.3258271877588042,0.3296177625344104,0.3327885274423999,0.3346635904470911,0.3372454001665783,0.3379156604124094,0.3393960592281683,0.3415222305953278,0.348731165741475,0.3546231961517905,0.3626577579806978,0.0,2.452979878870712,54.331145762489015,174.11120935127727,249.6546985064465,fqhc6_100Compliance_implementation,64 -100000,95702,44948,425.88451652003096,6085,62.36024325510439,4754,49.16302689598964,1936,19.874192806837893,77.3508434030137,79.74188251348632,63.31502979323547,65.08294789533898,77.11072028518343,79.50107375868909,63.22615291223144,64.9958806521836,0.2401231178302652,240.80875479722863,0.0888768810040261,87.06724315537429,158.89478,111.792197462046,166030.78305573552,116812.81212727632,398.98598,261.8351983722179,416387.36912499217,273077.1126749889,378.89684,184.1935436987979,392784.0588493448,190051.16564851892,3420.4127,1554.541596481686,3539645.5664458424,1589977.7397355195,1130.25009,500.56898266531095,1166884.7568493865,508929.0204019425,1888.1526,789.2171950336103,1940771.708010282,797550.296022927,0.3798,100000,0,722249,7546.853775260705,0,0.0,0,0.0,34412,359.04160832584483,0,0.0,34635,358.72813525318173,1571760,0,56392,0,0,0,0,0,72,0.7523353743913398,0,0.0,1,0.0104491024221019,0,0.0,0.06085,0.1602159031068983,0.3181594083812654,0.01936,0.3351691581431943,0.6648308418568056,24.50500687614242,4.365031771528688,0.3161548169962137,0.2391670172486327,0.2219183845183003,0.2227597812368531,11.200255352819813,5.91511941603221,20.52210543414215,12172.354083741911,53.771430709962026,13.686813087597525,16.897895591064138,11.765759973926174,11.420962057374188,0.56541859486748,0.7985927880386984,0.6899534264803726,0.571563981042654,0.1322001888574126,0.7325670498084291,0.9198113207547168,0.8486352357320099,0.7450199203187251,0.1629955947136563,0.5021745433458974,0.726507713884993,0.6318181818181818,0.5174129353233831,0.1237980769230769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026034016430807,0.004867611118435,0.0069232252890598,0.0094011708268964,0.0116482532706667,0.014129703958762,0.0162808964694121,0.0183324141593643,0.0205254599564332,0.0225312877655107,0.0247666905958363,0.026837986072595,0.0288617802554977,0.0308778075417267,0.0330244174286363,0.0348887694343367,0.0368705129134853,0.0390256053639449,0.0410334820732049,0.04298519908276,0.0570363252772961,0.0706208773950371,0.0836420886906323,0.0962845300961477,0.1084060294722629,0.124189367892092,0.1370969453819864,0.1488355748650289,0.1595835649236821,0.1698876500949662,0.1832801586617228,0.1945587216351983,0.2064290067032297,0.2163111641294474,0.2258909795545377,0.2364440797498392,0.2454496728231011,0.2545603999639672,0.2626777843413459,0.2700765914511099,0.2759163819561063,0.2831896753642198,0.2897733331753498,0.295720404563942,0.3010091185410334,0.3056295309957094,0.3099245429404477,0.3144482047889259,0.3196024381721474,0.3232363228403616,0.3219863890573411,0.3210569777043765,0.3198760825177779,0.3200075102182296,0.3195474227415624,0.3175993883792048,0.3163926651912741,0.3167666240618753,0.3177420180542994,0.3184678181202431,0.3200770684075646,0.3219738008470403,0.3224945249765356,0.3231875667972925,0.3243061879883046,0.3266408664710007,0.3272125396106836,0.3298779155087895,0.3330659785186218,0.3372508942258559,0.3398097642338727,0.3409785932721712,0.3482142857142857,0.3548044862079418,0.3598687294889826,0.3617905485632866,0.3628197320341047,0.36096203538064,0.3589536138079827,0.3621351766513057,0.0,1.9789258561736327,57.47256767599298,174.59926417410716,256.8084143540163,fqhc6_100Compliance_implementation,65 -100000,95718,45213,428.19532376355545,6021,61.7438726258384,4730,48.77870410998976,1825,18.669424768591067,77.26691653433518,79.6255357951826,63.2951211478972,65.03849526442474,77.04405035536593,79.40512036525375,63.21234687252112,64.95887134556348,0.2228661789692552,220.415429928849,0.0827742753760745,79.62391886125886,157.87772,111.09620236692652,164940.4709667983,116066.15512957492,398.50932,261.9202690640127,415690.04784888943,272990.6068492996,379.50643,184.92753710011817,392119.6222236152,189824.66978524532,3391.07,1540.3006028387942,3502207.9546166863,1568833.1105650065,1134.29426,496.8674064252968,1167125.7234793874,501288.943406316,1791.37946,750.5621610029641,1835240.9578135773,755160.7483168545,0.38124,100000,0,717626,7497.294134854468,0,0.0,0,0.0,34423,358.96069704757724,0,0.0,34747,358.5950395954784,1573097,0,56487,0,0,0,0,0,60,0.6268413464552122,0,0.0,0,0.0,0,0.0,0.06021,0.1579320113314447,0.303105796379339,0.01825,0.3283629441624365,0.6716370558375635,24.3789867577636,4.347587314748639,0.321353065539112,0.2315010570824524,0.2257928118393234,0.221353065539112,11.124240254079496,5.7340248964139775,19.479669055521185,12176.547179421625,53.63931224747784,13.19572047615824,17.073804565237904,11.897293452181064,11.472493753900649,0.5653276955602538,0.7917808219178082,0.6967105263157894,0.5889513108614233,0.1136580706781279,0.7126530612244898,0.9053398058252428,0.8502824858757062,0.7004048582995951,0.1226415094339622,0.5138373751783167,0.7232796486090776,0.6500857632933105,0.5554202192448234,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0042076873941741,0.0064435604984373,0.0087565140541034,0.0111364237332953,0.0133790842352845,0.0158213976247515,0.0180684149814722,0.0202406387045991,0.022324353095316,0.0245405061863807,0.0267340150301835,0.0288652372872641,0.0309307020435069,0.0329110267414988,0.0351767624560678,0.037570159269308,0.0393318462416351,0.0414124299658014,0.0433020411140169,0.0579716198014012,0.0713209127067197,0.0848304231027535,0.0978368369000273,0.1095802255535979,0.1253306808321517,0.1370382165605095,0.1480483518824218,0.1584063131556154,0.1679726915562807,0.1811252816438297,0.193214572091108,0.2044518981552066,0.2145477642832893,0.2243465420725525,0.2354926075567198,0.2451247875480812,0.2550844497526788,0.2634927126287927,0.2708576931013137,0.2780105075566459,0.2842782751155579,0.2905391007884083,0.2971262094018631,0.3023999027887478,0.3072228250147958,0.3122760417971784,0.3163277001642831,0.3203417739572393,0.3252341145971112,0.3237332324692342,0.322895525273026,0.3215926276660401,0.3214130529243069,0.3203694049303642,0.3174803052872433,0.3162175902389425,0.3165307635285396,0.316443545484153,0.3183770626767369,0.3194689600781162,0.3196709939550094,0.3198838774823291,0.3217761830006728,0.323859657595441,0.3251824149384104,0.3265241896260692,0.3289935218833939,0.3321984608291662,0.3360109245722548,0.33960877950225,0.3413536252076523,0.3449214792299899,0.3451145038167938,0.3506456781977566,0.3471926083866382,0.3472477064220183,0.3475363489499192,0.3515367727771679,0.3533950617283951,0.0,2.397150021249335,53.39793509755386,180.91553785452632,262.19935807974394,fqhc6_100Compliance_implementation,66 -100000,95706,45070,427.6534386558836,5968,61.16648903934967,4720,48.77437151275782,1899,19.46586420914049,77.288290147924,79.65827082536899,63.294707477804174,65.04426652810812,77.05451772584871,79.42426015489642,63.20876184109764,64.96020249757096,0.2337724220752903,234.0106704725713,0.0859456367065334,84.0640305371636,157.9996,111.15758369947991,165088.50019852465,116144.843269471,399.07443,262.55300950801404,416371.2097465154,273724.541311949,383.7004,186.69098442294597,397284.43357783207,192217.5773878774,3423.58248,1561.1680146634856,3537706.7268509814,1591764.631317787,1133.70446,507.68895261509977,1167760.8718366665,513737.9845402468,1871.09216,786.1192747176488,1919918.5839968235,792697.4100297793,0.37986,100000,0,718180,7504.022736296574,0,0.0,0,0.0,34426,359.1415376256452,0,0.0,35083,362.95530060811234,1570054,0,56377,0,0,0,0,0,65,0.668714605144923,0,0.0,0,0.0,0,0.0,0.05968,0.1571105144000421,0.3181970509383378,0.01899,0.3256668263855614,0.6743331736144386,24.407206912798248,4.4174625486300085,0.3120762711864406,0.2324152542372881,0.2213983050847457,0.2341101694915254,11.38539981843232,5.810602693242403,20.30624942033541,12162.217274806651,53.65001712384189,13.19682921697081,16.711798091987607,11.534139734119814,12.207250080763655,0.5555084745762712,0.7894257064721969,0.6992532247114732,0.5866028708133971,0.102262443438914,0.7287066246056783,0.9140811455847256,0.8605898123324397,0.7689075630252101,0.1554621848739495,0.4918887601390498,0.7123893805309734,0.6445454545454545,0.5328376703841388,0.0876585928489042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382240046992,0.0042984154661854,0.0065653285708487,0.0089294784534427,0.011227727605565,0.0132065289331934,0.0154768459044473,0.0175572908691879,0.0198509644379478,0.0220744000409353,0.0239817984299096,0.0261853193869904,0.0284389426388788,0.0305043202438697,0.0325422120452599,0.0346206711242933,0.0366109977946429,0.0384280110416969,0.0402716673427148,0.0424061780246579,0.0576489263931823,0.071548971365754,0.0846513092302041,0.0972260223517774,0.1092392623790071,0.1249761778718898,0.137010883992567,0.1489756128743567,0.1591745081266039,0.1688643587320677,0.1812907747883755,0.1929281001852473,0.2047959228122141,0.2150450519493316,0.2255911538927497,0.2357496283476447,0.2457938805853353,0.2544583474241912,0.2629549590536851,0.2712284730195178,0.2781952271620399,0.2841870824053452,0.290199753273866,0.2964675642888886,0.3024997260407407,0.308307182921104,0.3130053739139169,0.3170436135879479,0.3216155475012016,0.3260498418454453,0.3239429018591975,0.3222347941273871,0.3219394967486571,0.3209087218742751,0.3196266698473282,0.3175614474108417,0.3156133003363157,0.3160249346206352,0.3172222507576147,0.3169195533924993,0.3183081661783487,0.318693715982187,0.319564030408669,0.3195853255283971,0.3213189448441247,0.3219784499545631,0.3222127417519909,0.3251367838500723,0.327431763094109,0.3299964247407937,0.3338809784592917,0.3381382978723404,0.3401206636500754,0.3404287669150068,0.3450041903342956,0.3472906403940887,0.3555153161309793,0.359168997203356,0.3639291465378422,0.3666542334949645,0.0,2.074550420638563,55.74344235727981,176.8482166573718,259.1617253380069,fqhc6_100Compliance_implementation,67 -100000,95824,45734,433.3256804140925,5924,60.53806979462348,4679,48.18208382033728,1855,18.982718316914344,77.36488025655099,79.68051844990424,63.35773544642036,65.07161313612218,77.13415003067252,79.45231056868172,63.27194434447655,64.98936581820762,0.2307302258784744,228.20788122251656,0.085791101943812,82.24731791456463,159.05252,111.9607248181729,165984.012355986,116839.96161522467,401.76709,264.4599278870919,418659.365085991,275368.37106266903,386.44738,188.7214766168406,399353.387460344,193862.0078776696,3394.33477,1551.7147348374165,3501763.796126231,1578842.5705850476,1137.18488,505.084758539826,1170990.2947069628,511343.3153905348,1822.58882,768.5333581605847,1867753.923860411,771597.2158253542,0.38424,100000,0,722966,7544.727834362999,0,0.0,0,0.0,34601,360.4420604441476,0,0.0,35340,364.8877108031391,1570043,0,56356,0,0,0,0,0,77,0.7931207213224245,0,0.0,1,0.0104357989647687,0,0.0,0.05924,0.154174474286904,0.313133018230925,0.01855,0.3324162485839133,0.6675837514160867,24.55746132133813,4.3918593738038645,0.3261380636888224,0.2263304124812994,0.2169266937379782,0.2306048300918999,11.15682057426496,5.720261105199104,19.962898124632417,12193.135571585372,53.04135107149353,12.616467012478966,17.28065456226504,11.260975353902996,11.883254142846535,0.569993588373584,0.785646836638338,0.7103538663171691,0.6029556650246305,0.1288229842446709,0.750197628458498,0.9170854271356784,0.9015151515151516,0.799163179916318,0.1551724137931034,0.5032220269478618,0.7065052950075643,0.643362831858407,0.5425257731958762,0.1216056670602125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044709842248266,0.0065650620991963,0.0088875797342867,0.0112262433776349,0.0136134077302162,0.0156883932394136,0.0177328133613737,0.0197190873405299,0.0216899534264803,0.0238080596892551,0.0260562585306281,0.0280475647231729,0.0301355482137894,0.0326753594804927,0.0347579229895736,0.0369155978485726,0.0391342188698012,0.0409722871175071,0.0430933133576786,0.0577314211212516,0.0718787562059054,0.0849657455322536,0.0982537565759768,0.1109847407828641,0.1272544878563886,0.1395018698420433,0.150547464653981,0.1609933541704447,0.1709401709401709,0.1835863122451833,0.1955875517506026,0.2071527898487745,0.2173381239966363,0.2260733870347374,0.2354333233807738,0.244759061643683,0.2534866485503178,0.2624010688526818,0.2699505024062918,0.2772248649147924,0.2840350651927768,0.2899269866023959,0.2958228196266488,0.3010669158969254,0.3065417569430766,0.31178669200095,0.3156456880011182,0.3210401768973142,0.3248692857801367,0.3233700402027618,0.3226440510226523,0.3216967442908865,0.3214807105791885,0.3201630418612954,0.317634072302456,0.315405478278799,0.3155176100939315,0.3169624503220501,0.3180719872563584,0.319144131428894,0.3210521091811414,0.3226572515394153,0.3241182933118091,0.325042057197789,0.3261572143452877,0.3270438464380097,0.3290729807813088,0.3322101716331473,0.3369305511309334,0.340583360043958,0.3435713904171785,0.3460732651895117,0.3506912442396313,0.3539923954372623,0.3555423122765196,0.3550077041602465,0.3547200653861871,0.3580858085808581,0.3562908811081185,0.0,2.5689251350082407,54.87591825250025,174.40588321831703,255.40609797532883,fqhc6_100Compliance_implementation,68 -100000,95636,45501,431.751641641223,6041,61.8700071102932,4738,48.93554728344975,1894,19.406917897026226,77.2563444549925,79.66582906196668,63.27473565930678,65.0553908680278,77.02145563649265,79.43349345606904,63.186535623691285,64.9709501438679,0.2348888184998543,232.3356058976316,0.0882000356154932,84.44072415990433,157.96704,111.14022644615986,165175.0596009871,116211.4888202767,401.72498,264.9133561651881,419463.2774269104,276409.6249155005,386.11761,188.51748216991948,400160.1907231586,194393.14856862844,3384.57877,1543.2960173166614,3495482.402024342,1570249.807306518,1102.5869,489.3024710637853,1138047.08477979,496846.6364836504,1848.20054,779.8721575360313,1895088.5440629048,781874.0799070814,0.38256,100000,0,718032,7507.957254590322,0,0.0,0,0.0,34618,361.3492826968924,0,0.0,35227,364.7475845915764,1567256,0,56315,0,0,0,0,0,75,0.7737672006357439,0,0.0,0,0.0,0,0.0,0.06041,0.157909870347135,0.3135242509518292,0.01894,0.3306553245116572,0.6693446754883428,24.449127275042056,4.391772663802476,0.314689742507387,0.2363866610384128,0.2306880540312368,0.2182355424229632,11.244573707058946,5.743630849269622,20.22878779106246,12201.727601416513,53.75504342708438,13.444137030938014,16.8945216463876,12.151032032281943,11.265352717476814,0.5523427606585057,0.7794642857142857,0.6901408450704225,0.5580969807868252,0.1015473887814313,0.7250778816199377,0.9156908665105388,0.8427835051546392,0.7121212121212122,0.1219512195121951,0.4881297046902142,0.6955266955266955,0.6364460562103355,0.5090470446320868,0.0965018094089264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0048143681015172,0.0070834897857701,0.0093870957910456,0.0117611150676569,0.0141804957061214,0.0163314019911865,0.0184314847357881,0.020733179223861,0.0228041059684061,0.024934585193166,0.0270175835243096,0.0289188131859081,0.0310344472053531,0.0329328636509199,0.0347685716946574,0.0371023086572053,0.0389341920739625,0.0409985327936233,0.0431304238985313,0.0577944065883533,0.0712908835669537,0.0845660413014036,0.0981694544153096,0.1105752487890332,0.1266033103331499,0.1388829922730746,0.1503839476851309,0.1614806580227251,0.1712544133586598,0.1838578559799894,0.1958568534188543,0.2067406673129922,0.2164682931106288,0.2262173937020901,0.2367661426414424,0.2456536817846195,0.255098244783388,0.2635671251563032,0.27084361124815,0.2775039717973397,0.2833087079903374,0.2901518747033697,0.2961046134633396,0.3014284148613597,0.3068664755880609,0.3115584822828472,0.3157626232351703,0.3206952052127411,0.3252336695707354,0.3239946018893387,0.3223255685581806,0.3209619952494061,0.3191961694718514,0.3179192477050526,0.316811107861398,0.315233977619532,0.3154971820309152,0.3161776081687381,0.3169650070919439,0.3183394263747032,0.3189646610118988,0.3201497875205116,0.3212311135982093,0.3233283589274539,0.3258863399374348,0.3269252742230347,0.3300989225631655,0.3319784147452519,0.3349456823408135,0.3376558376558377,0.3427160231557704,0.3465858891833901,0.346497877501516,0.3484974572353213,0.3521820741435945,0.3553619705617302,0.3572567783094099,0.3610738255033557,0.367112810707457,0.0,2.3178033467946606,56.10858245697303,174.83220323070557,260.7113263223872,fqhc6_100Compliance_implementation,69 -100000,95691,45232,429.03721353105306,6018,61.75084386201419,4753,49.0746256178742,1868,19.09270464306988,77.32722884548278,79.7043737193021,63.32110870231941,65.07602037721992,77.09544421911583,79.47519537770843,63.2349845662816,64.9936605556299,0.2317846263669452,229.17834159366635,0.0861241360378173,82.35982159001765,158.20618,111.307598072661,165330.26094408042,116319.81907667492,398.58047,261.9080213961461,415961.187572499,273134.3296612494,382.53872,185.9722646541888,395871.7434241465,191298.00836005172,3413.21853,1554.7927284270174,3527990.5111243483,1585879.1301449623,1124.48669,494.60308058705726,1161794.2962243054,503546.80229808064,1831.04218,768.4397853942439,1874870.029574359,770550.9576695081,0.38081,100000,0,719119,7515.011861094565,0,0.0,0,0.0,34407,358.9470274111463,0,0.0,35005,362.01941666405406,1573449,0,56525,0,0,0,0,0,57,0.585217000553866,0,0.0,1,0.010450303581319,0,0.0,0.06018,0.158031564297156,0.3104021269524759,0.01868,0.3368771818470327,0.6631228181529674,24.270806169568573,4.336180072149968,0.3326320218809173,0.2185987797180728,0.228066484325689,0.2207027140753208,11.172378866196189,5.730722732827783,19.901895693718505,12173.267803427456,53.84733767342925,12.438940474007184,17.81210696585613,12.018340858098824,11.57794937546711,0.5606985062066063,0.7969201154956689,0.6932321315623023,0.577490774907749,0.109628217349857,0.7360126083530338,0.918158567774936,0.8910411622276029,0.6935483870967742,0.1612903225806451,0.4968427095292766,0.7237654320987654,0.6232876712328768,0.5430622009569378,0.0961538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0045910145838189,0.0070609718981434,0.0094762180444254,0.011714340915793,0.0141732764501644,0.0161727815960679,0.0181691910165146,0.0201255803489252,0.0220581458459206,0.0242749312876892,0.026313897476454,0.0281732153877802,0.0303042792816,0.032457815160741,0.0344688508314718,0.0367987567987568,0.0387039171104951,0.0406390746731295,0.0428610144051366,0.0578975955211096,0.0715451919454096,0.0848796349714165,0.0977044144257879,0.1098255531883477,0.1254191746622801,0.1378951725016183,0.1492594524952883,0.1603170872417256,0.1703855478555643,0.1836444521042257,0.1948692969637928,0.2066628961736747,0.2162652842487477,0.2265618981588475,0.236229282992112,0.2450391732327403,0.2539650401565769,0.2624519116195145,0.2698758190899509,0.2772766745788224,0.2841257578949833,0.2900953170327393,0.2960023973629008,0.3018656943178365,0.3069437592501233,0.3114355840512923,0.3146983164811655,0.3190761334473909,0.3240044905236743,0.3228695921973856,0.3214856230031949,0.3216330559864617,0.3199381538639385,0.3189935909827655,0.3170641863891703,0.3149143246627673,0.3154529656710056,0.3156440776235462,0.3170197614384903,0.3182073038537734,0.319540048519753,0.3192851761948606,0.3214213923570008,0.3225798691301,0.3249451811632035,0.3261384725196288,0.3297972802820448,0.3329476931706633,0.3378093838147074,0.3380095046609395,0.340956340956341,0.3427164857359253,0.3432093094472516,0.3479784111353091,0.3489972706775839,0.3529231241368727,0.3518067397482745,0.3561379310344827,0.3620292083013067,0.0,2.363198501563716,55.487896221868816,178.57441830259117,259.3087571288664,fqhc6_100Compliance_implementation,70 -100000,95774,45157,426.1699417378412,6111,62.54307014429804,4776,49.24092133564433,1927,19.713074529621817,77.38146625236273,79.7050857702997,63.35451413110488,65.06811829307163,77.14388885484578,79.46987762237937,63.26545715858294,64.98285215645772,0.2375773975169437,235.20814792033207,0.0890569725219379,85.26613661391025,156.58962,110.30222385492742,163499.09161150208,115169.27752305158,398.25323,261.9057952742268,415183.7555077578,272820.0297306437,381.07364,185.42100708973751,394117.9547685176,190695.78591888212,3480.47898,1590.826572305093,3590914.402656253,1617881.629988403,1199.13216,527.9606697283915,1237166.0889176603,536379.3511061365,1898.19982,801.3489204813693,1943380.4790444167,802311.9693463501,0.38139,100000,0,711771,7431.776891431912,0,0.0,0,0.0,34338,357.8841856871385,0,0.0,34775,359.3146365401884,1582668,0,56724,0,0,0,0,0,84,0.87706475661453,0,0.0,0,0.0,0,0.0,0.06111,0.1602296861480374,0.3153330060546555,0.01927,0.3407003891050583,0.6592996108949416,24.5001183116495,4.434441361172547,0.314070351758794,0.2248743718592964,0.2267587939698492,0.2342964824120603,11.044537481234991,5.58550628233615,20.50471188827904,12257.91187405556,53.98814349009469,12.828195176472416,16.741448469445114,12.174830629284823,12.243669214892332,0.5504606365159129,0.7746741154562383,0.674,0.5992613111726686,0.1224307417336908,0.7014925373134329,0.9172932330827068,0.8169014084507042,0.7545787545787546,0.1260162601626016,0.495575221238938,0.6903703703703704,0.6296943231441048,0.5469135802469136,0.1214203894616265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021059878905696,0.0042158174226762,0.0065631308264269,0.0088349987813794,0.0112967350300466,0.0135696398395667,0.0157982713633398,0.0179083460035306,0.0200143032284429,0.022149923779708,0.0244747005972687,0.0269937517313552,0.0290832108686939,0.0313664532334108,0.0337642789393377,0.0360008674907829,0.0381944803750116,0.040473154397205,0.0424769384193468,0.0444592526264277,0.0589413925530138,0.0723711059719766,0.0859309447893942,0.0991558298203378,0.1111731961371399,0.1265469315224979,0.1386655351649517,0.1503044626128427,0.1614715747644583,0.1715863399989277,0.1846006437929958,0.1965390439108803,0.2082644628099173,0.2186159971996149,0.2283686382393397,0.2384846369488858,0.2480156293608707,0.2566087847038567,0.2649269832617928,0.2721915876600672,0.2799606162400093,0.2867132048068589,0.2930146057167225,0.2990109692501349,0.3041275318647404,0.3095824912505545,0.3137191116671879,0.3178435587894824,0.3221513902925704,0.3264064808950813,0.3251369429751954,0.3236499120105587,0.3233409836527224,0.3221292160009252,0.3214806222301538,0.3194729584801593,0.3179194407983173,0.3179218225026632,0.3169358827843826,0.3172125311498754,0.3168065185295931,0.3182391175891274,0.3194641812254451,0.3198329947085221,0.3210456889315266,0.3216161406063127,0.3222736698576826,0.325985534020102,0.3265999159781543,0.3283090714370711,0.3308499523009131,0.3315536290109425,0.3338328026471873,0.3384150943396226,0.3385382372307403,0.3390791027154664,0.3405994550408719,0.3452428743476515,0.3587578316535004,0.3570064910271096,0.0,2.428242739270774,55.43004118733261,176.33284057651483,264.4290689095656,fqhc6_100Compliance_implementation,71 -100000,95747,45111,428.1282964479305,5889,60.08543348616667,4588,47.21818960385182,1844,18.789100441789294,77.31912755708531,79.66861643517343,63.32066847763053,65.05806846108118,77.0855451161598,79.44000836412329,63.23286068880668,64.97542686755615,0.2335824409255025,228.60807105014655,0.0878077888238522,82.64159352502531,158.04052,111.28389985612948,165060.54497791053,116227.03568375978,394.83675,259.90935783311403,411706.59132923227,270785.8395909156,377.9524,184.5826841348004,390372.9411887579,189362.3248527104,3299.463,1506.565981941707,3399210.2311299574,1526674.2581404208,1130.42158,501.492280614182,1163945.6797602014,507079.8778177719,1803.87208,759.7641801861574,1840612.530940917,756505.8570454821,0.38005,100000,0,718366,7502.752044450479,0,0.0,0,0.0,34034,354.74740722946933,0,0.0,34551,356.57514073548,1576776,0,56561,0,0,0,0,0,72,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.05889,0.1549532956189975,0.3131261674308032,0.01844,0.3368319069917649,0.6631680930082351,24.622698089103515,4.392247474055612,0.3201830863121185,0.2301656495204882,0.2244986922406277,0.2251525719267654,11.275341254059082,5.9237738987430655,19.64168450369767,12164.57421115645,51.91556384150978,12.743625900179806,16.51437132111481,11.495454664876275,11.1621119553389,0.5680034873583261,0.8001893939393939,0.6943498978897209,0.5766990291262136,0.1423039690222652,0.7481542247744053,0.917948717948718,0.8578811369509044,0.7427385892116183,0.2139303482587064,0.5028198278420897,0.7312312312312312,0.6358595194085028,0.5259822560202788,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987574557717,0.004418366623091,0.0065439714297309,0.0089784476629628,0.0112782337208001,0.0136465939527257,0.0157430537853683,0.0177470081280888,0.0200404899695302,0.0220104216787297,0.0240641437081543,0.0261939233383647,0.028323425962112,0.0303077129111681,0.032098969242357,0.0341256717651922,0.0360366888898091,0.0379967428399531,0.0399758918458325,0.0422356237436073,0.0569752390496471,0.0708636706000502,0.0844670072058653,0.0973026973026973,0.1092392679429872,0.1249920697020322,0.137657103462905,0.149019482661389,0.1606389680836296,0.1704474795771779,0.1834169771899972,0.1956100570389531,0.2068965517241379,0.2171392950491584,0.2265490036421254,0.237097417268418,0.2459841711038924,0.2546219716661603,0.2627420709696461,0.270742658175654,0.2772985677731593,0.2836505818173304,0.2893427474766621,0.2947135929322514,0.3010910948656505,0.305384786312125,0.3109273182957393,0.3152241772522838,0.319417425362488,0.3231409325056135,0.3228928003450227,0.3218348067972128,0.3206218873887219,0.3194520865309432,0.3189444874159576,0.3170540971540726,0.3157844660809996,0.3161493950552341,0.3170810903187216,0.3184444484195839,0.319598272949127,0.320131295355229,0.3204385080645161,0.3216864767885176,0.3241940924203729,0.325926312766013,0.3263109817019211,0.3292030945342474,0.3327709234067981,0.3350631858336965,0.3382393022621968,0.3412445577147711,0.3434228780426283,0.3453907203907204,0.3475517890772128,0.3533905276765777,0.3614952134933901,0.3652525252525253,0.3619361936193619,0.3562999619337647,0.0,2.7746823217554173,52.524765780583046,172.7951810466471,251.08686683314275,fqhc6_100Compliance_implementation,72 -100000,95687,45300,429.8285033494623,5913,60.69790044624662,4585,47.39410787254277,1820,18.74862834031791,77.34181859432726,79.7252471966403,63.3271521787835,65.086010670699,77.11970543270988,79.50240812162737,63.24647882968363,65.00686196900142,0.2221131616173863,222.83907501292788,0.0806733490998681,79.14870169757648,160.08828,112.6135405592723,167303.87617962735,117689.27834628774,400.42518,263.9788464173893,417942.8449005612,275347.1556633914,383.38699,186.69927668338053,396961.3845140928,192268.17700247795,3287.87249,1483.989787950052,3404798.070793316,1519655.2281732862,1103.98041,485.9682282897199,1141558.3726106996,495718.4977113763,1784.2923,733.5699333478633,1839894.3848171644,745955.9864944782,0.38111,100000,0,727674,7604.721644528515,0,0.0,0,0.0,34566,360.68640463176814,0,0.0,34856,360.6341509295934,1563382,0,56073,0,0,0,0,0,87,0.909214417841504,0,0.0,1,0.0104507404349598,0,0.0,0.05913,0.1551520558368974,0.3077963808557415,0.0182,0.3408614292627843,0.6591385707372157,24.66083247512564,4.334613478838788,0.3236641221374046,0.2344601962922573,0.2165757906215921,0.2252998909487459,11.172524530822724,5.821741959482621,19.279715927879916,12124.339978571908,51.78353030038573,12.796626043414602,16.666793560412195,11.016982199292428,11.3031284972665,0.5511450381679389,0.7767441860465116,0.6617250673854448,0.5871097683786506,0.1229428848015488,0.7320692497938994,0.9285714285714286,0.848404255319149,0.6811594202898551,0.1809523809523809,0.486061684460261,0.6793893129770993,0.5983754512635379,0.5623409669211196,0.1081409477521263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278255410071,0.004368671254954,0.0068484116757809,0.0090999573439499,0.0114186358644812,0.0138368493931742,0.0162778134523845,0.0185274032032502,0.0206461635952943,0.0228684908229176,0.0246800918710524,0.026651192884799,0.0286616668209828,0.0306758580893793,0.0325946721438376,0.0346914078257361,0.0367653154273398,0.0386528099336579,0.0405392753487501,0.0423668737750719,0.0572658233137293,0.0713754724685631,0.0849259574110806,0.0974306096252183,0.1101512562496044,0.1259122157588577,0.1372066375249331,0.1480862568119891,0.1586116274597782,0.1682500536135535,0.1809264363855629,0.1945928409213799,0.2051301567970772,0.2149548033096875,0.2243912632250401,0.2354654059500215,0.2446946198647714,0.253420730130533,0.2616635851132612,0.2695451111467228,0.2763256765661306,0.2823261250730567,0.2884503978340801,0.2939936523145098,0.2990286546867411,0.3039750680577968,0.3081079728816951,0.3127369412004173,0.3169572313032666,0.3209752750877378,0.320332274220475,0.3192417218087521,0.3183041817592423,0.3182067809347631,0.318659931659486,0.318130967158598,0.3162700170896892,0.3169135377196004,0.3172976757689089,0.318084575340512,0.3180884056346448,0.3187365681500029,0.3197207824778465,0.3207715663511341,0.3225318643335493,0.3238346021482949,0.3236944816386997,0.3277461555394824,0.3325002640008448,0.3355872876973867,0.3383077765607886,0.342826780021254,0.3477034901936212,0.3497798694398056,0.3537599252685661,0.3562522265764161,0.3622745337817181,0.3647318738702551,0.3656654725819785,0.3695901953274607,0.0,2.025867425649179,53.1987568882413,167.7197919912958,256.93003815016914,fqhc6_100Compliance_implementation,73 -100000,95676,45190,428.3519377900414,5904,60.40177264935825,4645,47.92215393620135,1852,18.98072661900581,77.38307130315455,79.75892552931334,63.34642469116329,65.09719929050397,77.15128376975902,79.53000749290227,63.26000514405607,65.01456838702592,0.2317875333955328,228.91803641107344,0.0864195471072193,82.63090347804791,159.44742,112.1609370359809,166653.05823822066,117229.59590906926,398.64201,262.5452967164066,416003.8045068774,273762.2759208527,382.59348,186.47199630318917,395791.8495756512,191812.69071761303,3338.39279,1526.461536316548,3447665.098875371,1554246.3419102996,1092.09138,482.52446326177926,1126565.9831096618,489806.00089456455,1819.4479,764.5802333437551,1866794.5984363891,769173.7604457855,0.37889,100000,0,724761,7575.139010828212,0,0.0,0,0.0,34428,359.1809858271667,0,0.0,34904,360.7592290647602,1567349,0,56349,0,0,0,0,0,64,0.6689242861323634,0,0.0,0,0.0,0,0.0,0.05904,0.1558235899601467,0.3136856368563686,0.01852,0.3330112721417069,0.6669887278582931,24.54377459262306,4.386613064004606,0.3171151776103337,0.2357373519913886,0.2219590958019375,0.2251883745963401,11.135708037743932,5.695379552401245,19.635057257122263,12056.548848308905,52.54472590955572,13.090702616469573,16.685464669782643,11.330005073321306,11.438553549982196,0.5623250807319699,0.8045662100456621,0.6978954514596063,0.5683802133850631,0.1118546845124283,0.7178683385579937,0.9400921658986175,0.848404255319149,0.690677966101695,0.1130434782608695,0.5034134758088453,0.7155824508320726,0.6463081130355515,0.5320754716981132,0.1115196078431372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024093214419485,0.0045691244706502,0.006764637275484,0.00901742556562,0.01105180214529,0.0131213290308132,0.0152908316173622,0.0174238789821269,0.0199116853381306,0.022163302076082,0.024288467847769,0.0265754803199737,0.0287251110745433,0.0307362696221828,0.0324760401514448,0.0345711421395868,0.0367546513073385,0.0390667164860713,0.0412957570715474,0.0430423545105886,0.0573935753460433,0.0711070164785694,0.0842041210289982,0.0976109860991356,0.1098868656621996,0.1249682821618878,0.1370796760378238,0.1479622224112992,0.1583058552357781,0.168288292149761,0.1815873289145218,0.1938215004000778,0.2056870183371558,0.2160392619797131,0.2251493185793011,0.2352941176470588,0.2443014931707262,0.2519736471648178,0.259887583035258,0.2674450580929028,0.2733922020206696,0.2794517020180737,0.2867244687655461,0.2921365839612228,0.297520761645368,0.3028927403935114,0.3071662951181023,0.3120519513592665,0.3164396168453253,0.3207686719936604,0.3198195772182577,0.3181143077176962,0.3176066547496727,0.3156488329096372,0.3141563358325291,0.3126225490196078,0.3104753158744735,0.3113933605736884,0.3123718036373581,0.313773096492011,0.3139235307295945,0.3154330708661417,0.317264550595797,0.3173914011533409,0.3193096524358177,0.3214405923931336,0.3222332155477032,0.3248081841432225,0.3297864917666759,0.3329401588424943,0.3355665203023856,0.3403460789985799,0.3421134760626677,0.3442116370214049,0.3458117123795404,0.3487341033718352,0.3482810164424514,0.3481915933528837,0.3572380698480405,0.3665807876334192,0.0,2.4044802052339134,55.585768773330585,168.6205957765011,254.07878721679012,fqhc6_100Compliance_implementation,74 -100000,95698,45177,428.1907667871847,6060,62.1329599364668,4790,49.52036615185271,1894,19.446592405274927,77.3960056150407,79.78054326860688,63.35197710932333,65.11311321480349,77.16040354082762,79.54702974534472,63.26423748739783,65.02910745044943,0.2356020742130908,233.51352326216104,0.0877396219255004,84.00576435406037,159.97454,112.48996984452134,167166.02227841754,117546.83467211576,404.97419,266.19481387217286,422657.84028924326,277639.7875317905,388.21087,189.09939962757676,402809.7661393132,195364.9959271668,3450.16218,1583.056942428139,3569422.3076762315,1618383.3752305566,1155.0364,517.0063660138893,1193248.35419758,526536.3706805671,1851.79416,781.6127646064551,1902325.2314572928,786471.0239475308,0.37994,100000,0,727157,7598.455558109887,0,0.0,0,0.0,34978,364.960605237309,0,0.0,35505,368.0745679115551,1566041,0,56135,0,0,0,0,0,60,0.6269723505193422,0,0.0,1,0.0104495391753223,0,0.0,0.0606,0.159498868242354,0.3125412541254125,0.01894,0.336,0.664,24.36448864602273,4.382420433348055,0.318580375782881,0.2286012526096033,0.2346555323590814,0.2181628392484342,11.170928622559282,5.843548043367556,20.25014385668804,12106.481631269924,54.50397170113871,13.167021021411257,17.42422877941339,12.381568254007291,11.53115364630678,0.5640918580375783,0.7899543378995434,0.7031454783748362,0.5604982206405694,0.1282296650717703,0.7244274809160305,0.8997668997668997,0.8629807692307693,0.7166666666666667,0.1422222222222222,0.503735632183908,0.7192192192192193,0.6432432432432432,0.5180995475113123,0.124390243902439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002329892521045,0.0045730161627223,0.006577211181259,0.0087376174752349,0.0108436921449352,0.0131043049729157,0.0152227331586406,0.017794974935936,0.0200167658304197,0.0223341317120104,0.0244104982571252,0.0265308636905006,0.028776238519844,0.0307369028244164,0.0326980818638628,0.0348053505344332,0.0368344727574062,0.0389358300981959,0.040893585156835,0.0429512434077501,0.05757439652381,0.0713448456305599,0.0839653020338378,0.0966375068343357,0.1095100560779187,0.1253251834775068,0.1377934795293718,0.14871238010071,0.1595876508919987,0.1698289269051321,0.1825544701612295,0.1943903599861543,0.2058922613808018,0.2157081338667016,0.2246544918804217,0.2355102944432145,0.2452072668874836,0.2535216014019006,0.2612690177064334,0.2689124619921813,0.2763262714310454,0.2828045848215328,0.2886330085621494,0.2947460344043831,0.2995598986433239,0.3051618375600821,0.3092642031986826,0.3133012922124858,0.317723724111233,0.3222904638531241,0.321361007875706,0.3206108963285898,0.3190081483562798,0.3172911950864343,0.3167506670619626,0.3156664425838782,0.3136393794824808,0.3138799711721156,0.3143509914579461,0.3145503116651825,0.3146441324384453,0.3162995941846263,0.3174202432866651,0.3189379114036648,0.3200095854301462,0.3209732284282413,0.3224390382055566,0.3247555165496489,0.3270563528176409,0.3312832314895643,0.3333941772382952,0.3345383020573069,0.336510541598283,0.3394544346235904,0.3425768722882475,0.3418732125834128,0.3417585784313725,0.3385554425228891,0.3452183526810392,0.3443632166217776,0.0,2.114613709718939,57.467723668099055,178.9660050423659,260.5000397708078,fqhc6_100Compliance_implementation,75 -100000,95822,45317,428.5550291164868,5989,61.22811045480161,4629,47.72390474003882,1790,18.263029366951223,77.38566316619061,79.70513068919047,63.36611244363343,65.08348495655468,77.15865065367835,79.48299976097225,63.28114463043528,65.00356685465133,0.2270125125122604,222.13092821822045,0.0849678131981477,79.91810190335968,158.26162,111.39138693479404,165161.8626202751,116248.00873994912,400.69919,263.972682677556,417582.8724092588,274895.22646198684,383.54252,186.65836938273404,397007.5661121663,192287.6154191768,3275.63774,1500.9030514821045,3374013.3372294465,1522474.2241277932,1088.25246,489.0125485901772,1118754.6075014088,493544.9843847829,1752.0055,738.2038145998885,1788086.0345223434,734656.7251674199,0.38171,100000,0,719371,7507.357391830686,0,0.0,0,0.0,34518,359.6147022604412,0,0.0,35066,362.672455177308,1577774,0,56552,0,0,0,0,0,70,0.7305211746780489,0,0.0,2,0.0208720335622299,0,0.0,0.05989,0.156899216682822,0.2988812823509768,0.0179,0.3291905672402804,0.6708094327597196,24.78294230596277,4.38343814246556,0.3316050982933679,0.2395765824152084,0.2136530568157269,0.2151652624756967,11.479095284630937,5.981875067698968,19.110957684641583,12194.897819147756,52.58050598328018,13.20712275489586,17.459345845603252,10.975645051848884,10.938392330932206,0.5772305033484554,0.7926059513074842,0.7322475570032573,0.5803842264914054,0.0953815261044176,0.7417061611374408,0.9183168316831684,0.8688524590163934,0.7478260869565218,0.1219512195121951,0.5153137079988106,0.7205673758865249,0.6796028880866426,0.5296442687747036,0.0884955752212389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047747939539551,0.0072160030853234,0.0098043199967488,0.0117885186541356,0.0141737093982282,0.016420511879644,0.018491682824778,0.0208493024681894,0.0231789434904521,0.0252000942825812,0.0271790450383873,0.0292705988756307,0.0314983324412237,0.0335137922144882,0.0354298581772732,0.0377372157033173,0.0395646540554547,0.0415468167516432,0.043425776575264,0.057957105900025,0.0717847398626399,0.0846164327565063,0.0974815344043203,0.1096480601700182,0.1246765317870232,0.136344373106181,0.1478879227874742,0.1587503066633956,0.1687891608204359,0.1810399526805398,0.1933131684130928,0.2054784109785358,0.2152346436407698,0.2248289345063538,0.2357916850950906,0.2457889577113319,0.2546277575594195,0.2628884080791146,0.270589714573117,0.2776494502448489,0.2845741888060485,0.2909865571410024,0.2968583822281705,0.302046500363284,0.3071237384279154,0.3124017859369933,0.3165680098361071,0.320536313425902,0.3244903327633828,0.3244441458991066,0.3229611523831756,0.3221470848739614,0.3212224402631882,0.3205693337489054,0.318304254667891,0.316326207442597,0.316267384772007,0.3167701863354037,0.3170182338219521,0.3182823097388241,0.3205039457289215,0.3215787702918664,0.3212099468574119,0.3223696911196911,0.3245281043013849,0.3265574520399119,0.3285552265137672,0.3314068226670426,0.3341030336810255,0.3368905915081862,0.3406523468575974,0.3448297564352697,0.3486782133090246,0.3533572236891739,0.3593434043059355,0.358568796068796,0.363599513579246,0.3813582623040968,0.3811710677382319,0.0,2.157459735048313,55.39503785863077,171.52556257727113,252.52915790754815,fqhc6_100Compliance_implementation,76 -100000,95765,45111,427.70323186968096,5953,61.0452670599906,4706,48.55636192763536,1806,18.46185976087297,77.37657405990127,79.7216345316526,63.3458979718325,65.07896989356404,77.15131165007217,79.49947397032948,63.26185068119809,64.9992597511552,0.2252624098290994,222.1605613231219,0.0840472906344089,79.71014240884244,158.8873,111.80418400377,165913.74719365113,116748.4822260429,401.76877,263.7895418397802,418963.013627108,274881.95252940035,382.50945,186.1502630234107,395765.4257818618,191559.84188444613,3352.12463,1508.2301609910244,3460018.065055083,1534793.8550969602,1111.75532,488.7850455552264,1146312.118206025,495872.37590653816,1767.25278,736.1552981621619,1808960.935623662,736441.342724704,0.37897,100000,0,722215,7541.533963347779,0,0.0,0,0.0,34603,360.7267790946588,0,0.0,34994,361.7605597034407,1571774,0,56325,0,0,0,0,0,70,0.730955986007414,0,0.0,0,0.0,0,0.0,0.05953,0.1570836741694593,0.3033764488493197,0.01806,0.3325335892514395,0.6674664107485605,24.545648075384424,4.32355926232474,0.3293667658308542,0.2339566510837229,0.2214194645133871,0.2152571185720357,11.042724895374947,5.6883158391926525,18.863736858281158,12077.548010574155,52.54838222360941,13.135612885522091,17.20036223405175,11.34685807199673,10.865549032038848,0.5546111347216319,0.779291553133515,0.6909677419354838,0.5441458733205374,0.1125370187561698,0.7294213528932355,0.9186602870813396,0.8370165745856354,0.7404255319148936,0.160377358490566,0.4929577464788732,0.6939970717423133,0.6464646464646465,0.4869888475836431,0.0998751560549313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024815152435936,0.0046325862401038,0.0067675886280159,0.0090922020399041,0.0116548694166463,0.0136862150079938,0.0159578264726575,0.0179993465920692,0.0203845878612539,0.0224892774155244,0.0243524962333575,0.026288236501745,0.028292091167974,0.0305355303810504,0.0326517558700945,0.0346474272838153,0.036615167957586,0.0387360471388854,0.0406699310731996,0.0425124194169903,0.0572081663326653,0.0708010876385693,0.0837596444146259,0.0960958436235615,0.1090267165516151,0.124560012684319,0.1360595426160158,0.1474431274073759,0.1580819138142788,0.1682483512948367,0.1808958631756938,0.1927446228415631,0.2042339323789217,0.2141598923401787,0.2237744531413411,0.2343519657721766,0.2440010272787163,0.25292892915424,0.2611814106565284,0.2684164118771972,0.2748906730835975,0.2818554941007261,0.2875894282504582,0.2938978829389788,0.2992871801721939,0.3049214659685864,0.3090227443139215,0.3140048765620237,0.3191283105199891,0.3232759756515323,0.3216261953368432,0.3200214162159194,0.3195476575121163,0.3178417494342016,0.3167281399517101,0.3143127701495273,0.3126233831867212,0.3131733193621271,0.3133150367352505,0.3134097298836257,0.3135872208297482,0.3142361453384066,0.3155243410463828,0.3159816538273144,0.3170182166826462,0.3188047746599745,0.3202319038281183,0.3238563421736544,0.329423709824242,0.3337165510406343,0.3348820260544775,0.3379383634431456,0.3402638190954773,0.3453401076818078,0.3490328006728343,0.3478979688238073,0.3505405816963606,0.3537537537537537,0.354109961894393,0.3558235959291368,0.0,2.2785774129244687,53.57544228488842,163.19378537491195,271.35667746126825,fqhc6_100Compliance_implementation,77 -100000,95760,45126,427.57936507936506,6043,62.04051796157059,4767,49.30033416875522,1893,19.46532999164578,77.3313489084019,79.6987414336142,63.31030609897547,65.0637672979462,77.0998372982937,79.46759208345586,63.22393680587302,64.980068227577,0.2315116101081997,231.14935015834703,0.0863692931024502,83.69907036920665,159.17,111.8897652350987,166217.6274018379,116843.94865820666,400.20506,263.1616747457089,417457.56056808686,274346.25600011385,380.02022,184.9034415793907,394025.8040935673,190953.14060023276,3381.8927,1528.9881307279784,3499340.194235589,1564393.9021804284,1133.51623,498.4555492525354,1172279.0726817043,509099.58150849614,1857.76446,774.7952621831063,1911660.67251462,784689.4304989704,0.38036,100000,0,723500,7555.346700083542,0,0.0,0,0.0,34526,360.0459482038429,0,0.0,34665,359.2000835421888,1568904,0,56328,0,0,0,0,0,83,0.8667502088554719,0,0.0,1,0.0104427736006683,0,0.0,0.06043,0.1588758018719108,0.3132550057918252,0.01893,0.3360668664248541,0.6639331335751458,24.541134011489472,4.366866367731707,0.3276693937486889,0.2353681560730018,0.2122928466540801,0.224669603524229,10.930953098094104,5.527271067367973,20.095134086153987,12153.320571613678,53.9580077686605,13.514956050075693,17.545931380071742,11.275744766815215,11.621375571697858,0.5504510174113698,0.7869875222816399,0.6587708066581306,0.5721343873517787,0.1241830065359477,0.7292332268370607,0.8962264150943396,0.8835978835978836,0.7174887892376681,0.171806167400881,0.4867709815078236,0.7206303724928367,0.5869932432432432,0.5310519645120405,0.1113744075829383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0048673149659794,0.0072773407764526,0.0095610648242227,0.0117805041811634,0.0139829515943416,0.01609038349767,0.0182157917845145,0.0202825026337591,0.0223385296105864,0.0243374630784378,0.0264344788616633,0.0284138271706579,0.0304969801908766,0.0325667334172877,0.0349520185307743,0.0368126747437092,0.0388842190467295,0.0408332986818578,0.0426739716895643,0.0576138131178687,0.0719547928003348,0.0855913978494623,0.0983384162372489,0.1104081654171807,0.1252088930256171,0.1369945877109201,0.1477769019365559,0.1586186994998076,0.1690239086577671,0.1813321836602716,0.1924730600530676,0.2038863487916394,0.213682885446883,0.2238577562479357,0.2342944560843393,0.243892089865559,0.2531768095715105,0.2618601854058163,0.2700433059138922,0.2772659938894546,0.2837690695577853,0.2899112359417404,0.2959214302008668,0.3017130204151154,0.3066219283529063,0.3111358769831828,0.3158558168553202,0.3201291460283706,0.3241848184818481,0.3232868960685511,0.3224941195889902,0.3212822570426997,0.3201894338641909,0.319858829112047,0.3175806870824224,0.3158044388278967,0.3168969077233174,0.3174741370480385,0.3186476322871553,0.3190764855560545,0.3191023211747987,0.3208340304500585,0.3202983674654398,0.3205697950947657,0.3209178756544161,0.3227419996589553,0.3259510570791317,0.3297576759399289,0.3352451507547695,0.3375410134888807,0.340799576383373,0.3440185684712377,0.3451327433628318,0.3469387755102041,0.3505800464037123,0.3543776057176891,0.355862874951305,0.3643142476697736,0.3704808050689526,0.0,1.9047722241916527,55.36375450106222,182.23978161701072,258.4729650291921,fqhc6_100Compliance_implementation,78 -100000,95497,44859,425.48980596249095,6009,61.813460108694514,4742,49.13243347958575,1902,19.5712954333644,77.22623088476638,79.71300722120215,63.24095407219974,65.07586696665953,76.99075544471502,79.47830406225047,63.15348465101351,64.99144887993708,0.2354754400513599,234.7031589516746,0.0874694211862348,84.41808672245088,157.54024,110.7426986728716,164968.78435971812,115964.5838852232,396.95906,260.82894300668886,415176.6338209577,272627.5307147752,381.63277,185.5678180888823,395970.0618867609,191577.23697403536,3414.44711,1552.9481004849702,3538622.825847932,1589564.10577734,1140.52031,508.2730761047868,1180140.014869577,518101.2627700849,1868.35124,784.6488684338108,1923683.843471523,793296.4195079135,0.37889,100000,0,716092,7498.581107259914,0,0.0,0,0.0,34245,358.0740756254123,0,0.0,34828,361.2678932322481,1572831,0,56519,0,0,0,0,0,73,0.7434788527388295,0,0.0,2,0.0209430662743332,0,0.0,0.06009,0.1585948428303729,0.3165252121817274,0.01902,0.3412081813857618,0.6587918186142382,24.518956808607363,4.370939955415127,0.3148460565162378,0.2374525516659637,0.2165752846900042,0.2311261071277942,11.354859970902334,5.972958641858143,20.468338338813417,12123.03195609466,53.88281722262147,13.355813277242069,16.953466078071525,11.46257509548069,12.110962771827168,0.5535638970898356,0.7770870337477798,0.6912257200267917,0.5842259006815969,0.1076642335766423,0.7246262785208497,0.9147869674185464,0.8692307692307693,0.7404255319148936,0.1740890688259109,0.4909248055315471,0.7015130674002751,0.628286491387126,0.5378787878787878,0.0883392226148409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027055783553731,0.004848509438364,0.0070765731922756,0.0095170310116929,0.011585763153608,0.0135657137033073,0.0157348544372901,0.0179429015184027,0.0200826632291858,0.0222641161463509,0.0243063752912556,0.0263317533595862,0.0283790184731346,0.0303852302614615,0.0326193649711209,0.0347469560175598,0.0369298436705774,0.039064449064449,0.0414444074012335,0.0433352477418681,0.0590698307355727,0.0728262808339191,0.0856574962140333,0.098390547761839,0.1104770359097922,0.125802895724249,0.137957430521593,0.1500357405767569,0.1599515914835282,0.1692175408426483,0.1821420474787058,0.1939115251553569,0.2056771605476585,0.2155242333238343,0.2241453486448026,0.2347954580805724,0.2441523575144023,0.2526012016819037,0.2613937512084712,0.2693155212780608,0.2762231680022265,0.2827310461271486,0.288916045750083,0.2948670183998942,0.3002242753711514,0.3044032158317872,0.3096584483148609,0.3140217016218703,0.3185144743854723,0.3227387101046219,0.3219876179404687,0.3203967881680969,0.3203766978228334,0.3195867338079527,0.3183951371403882,0.3163450310368139,0.3148577784840298,0.3160800210928746,0.3151538026042649,0.3158809822548843,0.3167621372898864,0.3170132212729687,0.3173353488274443,0.3178610631958601,0.3193479358515063,0.3198414354266639,0.3193375520209794,0.3222173283835651,0.3235170087152094,0.3254308633150663,0.325952250774558,0.3274355035228055,0.3319982477001064,0.3334087822544138,0.3371243643088303,0.3407053893609591,0.344125246998024,0.3484632607368206,0.355433287482806,0.3571156047310187,0.0,2.083317953049717,56.09465625060007,176.3448961574557,261.5907464513044,fqhc6_100Compliance_implementation,79 -100000,95709,44686,423.5756302960014,6083,62.20940559404026,4860,50.19381667345809,1926,19.68466915337116,77.36399481233721,79.74954812729227,63.33329461681414,65.0975383329224,77.11636859642806,79.50457550426879,63.24032422660971,65.00867912391728,0.2476262159091504,244.97262302348588,0.0929703902044352,88.8592090051219,158.9324,111.73931639687964,166057.71662017156,116748.78684019222,400.05318,262.7199942180627,417426.0309897711,273935.6739889276,378.65627,184.4831285881074,392529.8561263831,190282.23876647395,3516.38136,1605.7950326461178,3631652.8748602537,1635407.6655759823,1122.09387,502.254399594778,1155803.1219634518,508173.8808207987,1886.94816,805.1142198235956,1930034.375032651,805054.4571322899,0.37744,100000,0,722420,7548.078028189616,0,0.0,0,0.0,34545,360.3318392209719,0,0.0,34750,360.049734089793,1573380,0,56506,0,0,0,0,0,70,0.7209353352349308,0,0.0,0,0.0,0,0.0,0.06083,0.1611646884272997,0.3166200887719875,0.01926,0.3339578454332553,0.6660421545667448,24.23559554173677,4.390221570244018,0.328395061728395,0.2244855967078189,0.2224279835390946,0.2246913580246913,11.170527650330028,5.731912479836477,20.613880640839323,12048.6458203231,54.85300025626198,12.99476168255697,18.020137850928844,11.956342569518563,11.881758153257593,0.5456790123456791,0.7653528872593951,0.6904761904761905,0.5596669750231268,0.1007326007326007,0.7122137404580152,0.8914141414141414,0.8574766355140186,0.7182539682539683,0.1367521367521367,0.484225352112676,0.6935251798561151,0.6292808219178082,0.51145958986731,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0045534292697273,0.0070149435555916,0.0092688578571864,0.0114979954822035,0.0136112639321881,0.0157493165775837,0.0177601209199722,0.0196680065048633,0.0214524155727129,0.0236686390532544,0.0258195711116588,0.0279163537991544,0.0302006161708792,0.0321278923359547,0.0342342528640555,0.0363594928316897,0.0385297871678064,0.0406232783442999,0.0425396693095508,0.0567692886085467,0.0706824366757379,0.0845503378236602,0.096933302484067,0.1095767669846624,0.1256978514633733,0.1378001187749215,0.1488254819354015,0.1600687549377575,0.1701931528286921,0.1827838946110878,0.194097346185886,0.2054441447711849,0.2163542509678689,0.2255654814293258,0.2360086815936925,0.245024320585479,0.2528681333513294,0.2602226686187055,0.2674874026568942,0.2748863412884791,0.2813384482234333,0.2877133994743447,0.2927136280809437,0.297025733239375,0.3020683198442909,0.307340080819707,0.311022120518688,0.3156220089505135,0.3201127918621198,0.3184513006654567,0.3172259384915457,0.3158604984607599,0.3152042229145033,0.3137708222182702,0.3125629521106126,0.3111675286993818,0.3107322490038539,0.3108919309582518,0.3119393421614694,0.3116528632055189,0.3129043711535427,0.3146685059777611,0.3153739488280551,0.3165666266506602,0.3171629132851439,0.3180649951453538,0.321114185110664,0.3248602468094083,0.3288460011119053,0.3321964529331514,0.3382041507835663,0.3425341081354219,0.3470840348997397,0.3485394537177542,0.3527303142549886,0.3527769159168477,0.3562320032908268,0.3621123218776194,0.3599686643164904,0.0,2.230385159104081,57.32391062210928,176.1805794949866,269.5054155092259,fqhc6_100Compliance_implementation,80 -100000,95665,45233,429.1538180107667,5993,61.35995400616735,4690,48.39805571525636,1926,19.672816599592327,77.31725194233033,79.72305769302636,63.30264576078415,65.08387550399085,77.07365725784145,79.4831426953847,63.210942503089385,64.99603750243409,0.2435946844888832,239.91499764166235,0.0917032576947676,87.83800155676147,157.8379,111.06428143555054,164990.2263105629,116097.09030005806,399.14505,262.9076252718253,416629.7496472064,274224.16033646546,381.60939,186.6985025981967,394940.88747190713,192123.4527069269,3390.07281,1559.6265458428172,3500968.462865207,1588009.0722445191,1132.70502,503.5997008558312,1166322.061359954,509270.5509561105,1885.1426,797.7043426616502,1928582.17738985,801174.4421314485,0.3816,100000,0,717445,7499.555741389222,0,0.0,0,0.0,34551,360.5289290754194,0,0.0,34858,360.3825850624575,1573778,0,56456,0,0,0,0,0,61,0.6376417707625568,0,0.0,1,0.0104531437829927,0,0.0,0.05993,0.1570492662473794,0.3213749374269982,0.01926,0.3289137380191693,0.6710862619808307,24.479997801548212,4.275730504621584,0.3168443496801705,0.2375266524520256,0.2153518123667377,0.2302771855010661,11.215621666864514,5.988193282671226,20.549181528713373,12176.832673727327,53.29950606159323,13.330303083473416,16.805062068575154,11.327602205805237,11.836538703739423,0.550319829424307,0.7675044883303411,0.6884253028263796,0.5762376237623762,0.112037037037037,0.7193251533742331,0.900709219858156,0.8391089108910891,0.7294117647058823,0.1441441441441441,0.4852333136444182,0.6859623733719248,0.6321626617375231,0.5245033112582781,0.1037296037296037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0047051665568118,0.0070024457817875,0.0091963133453241,0.0113852571602991,0.0136090455332586,0.0158121314753228,0.0183679306963059,0.0207894252215015,0.0227032897230731,0.024643480045142,0.0270248052775437,0.0289355306906029,0.0309194383157721,0.0328217627496746,0.0350735613632131,0.0369026640406343,0.0388489656891252,0.0408984976486745,0.0428641419353493,0.0581100141043723,0.0724652857771168,0.0855553222758765,0.0984481035299068,0.1105930012976189,0.126125840080436,0.1380836632664975,0.1502625440679952,0.161076551444024,0.1712014248009784,0.1835604632372744,0.1951692181105601,0.2064566689161242,0.2163227324976736,0.2256739041827775,0.235999645280007,0.2455691964285714,0.254680046800468,0.2635609662011141,0.2711082096389958,0.2775893797525491,0.2838958759871307,0.289957014458773,0.2965782658737771,0.3014124911871247,0.3062594063803015,0.3105236133201418,0.3157426019694155,0.319810490343292,0.323357635364069,0.3229308187944741,0.3210996563573883,0.3197400441699841,0.3186016973615842,0.3175268769237632,0.3156691923065124,0.3140884546563,0.3151404692708077,0.3152424351031693,0.3164764621968616,0.3174436681713461,0.3183030686241577,0.3192386788097536,0.3210216461844962,0.3211398788697729,0.3234202686457952,0.3250734266731301,0.3271556463012408,0.3301512652230372,0.3325133902003571,0.3340022805017104,0.3357792311373425,0.3408159404754398,0.3427634588988867,0.3470212366096598,0.3494160670048366,0.3505518087063151,0.350162206001622,0.3556395035078251,0.3577082548058801,0.0,2.380458007681534,56.863293208466274,173.39830257832116,252.55004132653065,fqhc6_100Compliance_implementation,81 -100000,95870,45550,430.6873891728382,5968,61.14530092834046,4680,48.35715030770835,1823,18.764994263064565,77.4717338221379,79.75854330904697,63.40399372213196,65.09078089509677,77.2422851935469,79.5267734233872,63.3182340352249,65.00603251419801,0.2294486285910011,231.76988565977297,0.0857596869070533,84.74838089875902,159.36426,112.0889521181002,166229.54000208617,116917.65110889764,400.97285,264.52103894439483,417817.49243767606,275487.4506565086,388.08977,189.14294239398063,401361.5208094294,194716.72791957247,3335.06843,1523.7473598514166,3449305.2466882234,1559953.968761258,1094.01329,487.8536956840999,1132223.625743194,499951.1793930322,1787.80942,757.4211167130445,1841398.8108897463,769432.5862647941,0.38245,100000,0,724383,7555.8881819130065,0,0.0,0,0.0,34633,360.7906540106394,0,0.0,35437,366.2668196516115,1569532,0,56304,0,0,0,0,0,67,0.6988630437050172,0,0.0,1,0.0104307916970898,0,0.0,0.05968,0.1560465420316381,0.3054624664879357,0.01823,0.3353658536585366,0.6646341463414634,24.647239773355157,4.265575078997543,0.3307692307692307,0.2282051282051282,0.2213675213675213,0.2196581196581196,10.808745484746938,5.594684280091769,19.42553907330631,12154.910784993272,52.8576798389262,12.749077211656138,17.363389734813133,11.58539764783529,11.159815244621656,0.5638888888888889,0.7865168539325843,0.7060723514211886,0.5752895752895753,0.1070038910505836,0.7370517928286853,0.9262899262899262,0.8596059113300493,0.7232142857142857,0.1697247706422018,0.5004379562043796,0.7004538577912254,0.6514886164623468,0.5344827586206896,0.0901234567901234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025407429901811,0.0049234634437904,0.0070676752722626,0.0093077547706049,0.0116860417852207,0.0139591197208176,0.0163495232662374,0.0183702404145289,0.0208014214815268,0.0228565000409064,0.0249595444396648,0.027168116179849,0.0292676412274123,0.0313615738406609,0.0335013555163847,0.0354605534902932,0.0376312386863201,0.0394548657892009,0.041439533169278,0.0435311992673687,0.058518070530333,0.0722253002853887,0.0856502101170577,0.0987874839767163,0.1114565767284991,0.1268804245557282,0.1392005089598133,0.1505893366239734,0.1605692141812475,0.1708231965447394,0.1836444827029644,0.1958370708195091,0.2067276892841243,0.2168022271958076,0.2270620538165842,0.2364074557233511,0.2454410765408994,0.2536969873903816,0.2618047139572549,0.2687272020399529,0.2757684934986951,0.2827142057121523,0.2892940648543964,0.2941556344849855,0.2987723512143048,0.3035542865582002,0.3090011868324068,0.3132650987961599,0.3177195725490703,0.321849370071484,0.3207557311403155,0.3201705675071641,0.3189246104169591,0.3173862982153138,0.3167818609676321,0.3141350082322093,0.3125059079308063,0.3136595244316697,0.3149239785950904,0.3167745941630444,0.3171903812841097,0.3186183060699487,0.3198867067913447,0.320593725002222,0.3201681073594727,0.3219197596415343,0.3234662143059089,0.3260320922262034,0.3290210999654099,0.3326159264331833,0.3363518178150356,0.339645468413024,0.3429858027393833,0.3417375455650061,0.3453826602654617,0.3454091934909134,0.3465736810187992,0.3525538707102953,0.3561606902129954,0.3538461538461538,0.0,1.8229624831960969,55.10159460031666,177.43720518634146,251.07017438161407,fqhc6_100Compliance_implementation,82 -100000,95722,45631,432.763628006101,5930,60.48766218842064,4666,47.97225298259544,1832,18.699985374313115,77.34438518034166,79.69705013609436,63.33412346583962,65.07197792458378,77.10968431771136,79.46593241796347,63.24606439308821,64.98825985552199,0.2347008626303051,231.1177181308892,0.0880590727514132,83.71806906178847,159.12226,111.95541674482271,166233.04987359227,116958.25029441784,402.70523,265.2349824338151,419838.877165124,276235.4524456476,387.3702,188.6999375544925,399078.4145755417,192947.14505231657,3347.88457,1527.4975197852182,3446663.682330081,1545875.0446866874,1108.51588,486.7492517077542,1138731.8693717222,489846.4998883418,1795.01414,761.1809227866785,1833848.268945488,760229.1608797471,0.38374,100000,0,723283,7556.047721526922,0,0.0,0,0.0,34745,362.1529011094629,0,0.0,35282,363.0513361609662,1565922,0,56251,0,0,0,0,0,78,0.8044127786715698,0,0.0,0,0.0,0,0.0,0.0593,0.154531714181477,0.30893760539629,0.01832,0.3408287825248956,0.6591712174751044,24.43922967534102,4.41762017305749,0.3236176596656665,0.227818259751393,0.2258894127732533,0.2226746678096871,11.440293662826903,5.903114182859279,19.54801168305201,12166.343312630805,52.730150037117234,12.775494578419991,16.947021278904955,11.67687731884454,11.330756860947757,0.5696528075439349,0.8184383819379115,0.695364238410596,0.5929791271347249,0.1087584215591915,0.7281475541299118,0.9183673469387756,0.8801020408163265,0.773109243697479,0.0844444444444444,0.5118455688797894,0.7600596125186289,0.6305903398926654,0.5404411764705882,0.1154791154791154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026741217940926,0.0049679113481289,0.0073458537525746,0.0095264210921869,0.0116924578563149,0.0139260737226797,0.0160004891869305,0.0182560334710954,0.0201387540742405,0.0224498357703445,0.0246846532979475,0.0269424201991173,0.0289436344568056,0.0307009413170199,0.0327332748749161,0.0347436082921687,0.0366843325604504,0.038869184659739,0.0407711494491789,0.0429873444091453,0.0576383016484491,0.0723128603869941,0.0853594579286328,0.0981827359919232,0.1102358883511014,0.1259701808184413,0.1377843771543724,0.1495308211162414,0.1603549916698705,0.170309702732545,0.1830913142229733,0.1943624190111518,0.2058078474434381,0.2156286207725772,0.2251891606545838,0.2355240140829476,0.2448298568096338,0.2533913747722211,0.2612741426658496,0.2688647373423882,0.276162925248785,0.2825313611683205,0.2887970832642818,0.2950837372234752,0.3005286504223127,0.3054150109830441,0.3102946890785796,0.3151535235861682,0.320430888090948,0.3250386337520307,0.3246431457042822,0.3240294934932731,0.3225538387864617,0.3209264691008395,0.3198644692455157,0.3186702021672823,0.3155792276964048,0.3156572704437622,0.3160719168717528,0.3175025442339624,0.317547703312548,0.3179861796643632,0.3188357240079573,0.320655092178271,0.3211912557781202,0.3227437387610435,0.3243712796559482,0.3269987100022024,0.3316258508174864,0.3345385196074536,0.3379884456170677,0.338540006375518,0.3391643594261263,0.3394758704025375,0.3436856875584658,0.3491577335375191,0.3461714809720311,0.3538587848932676,0.3578743426515361,0.352963967454475,0.0,2.884191750338492,53.70685462197685,167.44681292745742,264.47474448528885,fqhc6_100Compliance_implementation,83 -100000,95675,45325,428.7431408413901,5937,60.94591063496211,4621,47.77632610399791,1840,18.886856545597077,77.28108161739658,79.67043763645002,63.29287913429015,65.0567829897576,77.0553026368111,79.44426453949467,63.209892899642725,64.97556255893865,0.2257789805854742,226.1730969553497,0.0829862346474286,81.22043081894503,158.34258,111.39471027354728,165500.24562320355,116430.09174136116,398.88674,262.76505367845965,416392.4745231252,274117.3908319412,380.80206,185.4260285754926,394892.59472171415,191370.57018546737,3316.12898,1498.7620858454973,3427878.003658218,1528816.455816263,1123.2157,487.0738353647377,1161663.809772668,496879.5022824188,1805.92042,748.6301375428287,1855849.8876404492,756093.3052480355,0.38273,100000,0,719739,7522.738437418344,0,0.0,0,0.0,34339,358.359027959237,0,0.0,34676,359.31016461980664,1570205,0,56405,0,0,0,0,0,96,1.0033969166448915,0,0.0,0,0.0,0,0.0,0.05937,0.1551224100540851,0.3099208354387738,0.0184,0.3305044035228182,0.6694955964771817,24.71429949569069,4.3436454508960285,0.31681454230686,0.2322008223328284,0.2283055615667604,0.2226790737935511,11.166130474442156,5.715643816334556,19.41201868660701,12232.132939019575,52.27376451573062,12.782860304085643,16.567596929480175,11.735377412738892,11.187929869425917,0.5671932482146721,0.7912395153774464,0.7008196721311475,0.5857819905213271,0.1243926141885325,0.7346600331674958,0.9248704663212436,0.8812664907651715,0.7400881057268722,0.1261682242990654,0.5080527086383602,0.7161572052401747,0.6377880184331797,0.5434782608695652,0.1239263803680981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730638707389,0.0048256774703717,0.0071445243918528,0.0092958519165709,0.0113906799829139,0.0136552482587267,0.0157024287782694,0.0179993465920692,0.020454893943266,0.0227637949211353,0.0250689524356358,0.0271777075033882,0.0293911970382558,0.0318475931421035,0.0338934070924328,0.035846852156291,0.0379121391354789,0.0400622729631551,0.0419405841724224,0.0439735679146168,0.0588290603648216,0.072382129058603,0.0857727630543164,0.0983944616291059,0.1108614232209737,0.1268672506453387,0.1387429275076165,0.1506992299417397,0.1607291778039132,0.1708291279232074,0.1829114401889621,0.1946358907672301,0.2064992485788339,0.217541746509718,0.2266807694850267,0.2372381364296725,0.2464015913459389,0.2564171875879935,0.264476987923062,0.2722509487394091,0.2791169077872887,0.2859050497241452,0.2926421602911367,0.2974634158053325,0.3030977487503192,0.3078859060402684,0.3125086125900407,0.3167142347484837,0.3210696269014796,0.3245987466617309,0.3234079870480302,0.3224556759588606,0.3212271950030383,0.3200533132442847,0.3184378352604601,0.3168354818907305,0.3154048570160421,0.3159288687097994,0.3166706611428767,0.3178844641452777,0.3184541135377739,0.3203922035647652,0.3217157048448878,0.3222082472374449,0.3236252988480765,0.3240864091110937,0.3242037852364343,0.3281161249605553,0.3308999017268005,0.3363077533214356,0.3392938392938392,0.341286252054504,0.3421897626392999,0.3442437070073323,0.3448758633563561,0.3448476389858106,0.3436692506459948,0.3446,0.3478964401294498,0.3544546850998464,0.0,1.973385587360836,53.113190621523565,171.82189364551363,258.79083212191,fqhc6_100Compliance_implementation,84 -100000,95735,45008,426.4375620201598,5912,60.70924949078184,4698,48.59246879406695,1797,18.44675406068836,77.3612597271838,79.7269055841375,63.34108899169471,65.08916380555316,77.14381488684737,79.50985118809706,63.2606464931068,65.01108225797297,0.2174448403364408,217.05439604043875,0.0804424985879137,78.08154758018304,158.12544,111.26342300195692,165169.478247245,116219.78922640304,400.93772,263.5641827773078,418297.24761059176,274804.9963072416,381.63742,185.26950285886517,395878.53971901606,191353.44726405328,3331.67681,1516.1653855092254,3448212.952420745,1551924.271537322,1138.94154,496.967266537425,1176441.113490364,506011.1191058468,1756.69816,733.6731209056624,1805161.2054107687,740841.6730412246,0.37981,100000,0,718752,7507.703556692954,0,0.0,0,0.0,34569,360.5682352326736,0,0.0,34907,361.79035880294566,1576338,0,56566,0,0,0,0,0,69,0.7207395414425236,0,0.0,0,0.0,0,0.0,0.05912,0.1556567757562992,0.303958051420839,0.01797,0.3482186039013381,0.6517813960986619,24.13183131329028,4.2982106400332105,0.3171562366964666,0.24223073648361,0.2254150702426564,0.2151979565772669,11.323465976860865,5.941454593283325,19.152956032416085,12039.652413328526,53.383472539545934,13.697043899118889,16.855061835321344,11.798775265450711,11.032591539654996,0.5766283524904214,0.7952548330404218,0.697986577181208,0.5996222851746931,0.1275964391691394,0.7405362776025236,0.9216152019002376,0.8831168831168831,0.7439024390243902,0.1296296296296296,0.5160349854227405,0.7210599721059973,0.6334841628959276,0.5559655596555966,0.1270440251572327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.0043292237813285,0.0066266160621866,0.0091434609015452,0.0110851215295433,0.0135129630761084,0.0156221320335284,0.0178485730331342,0.0198452053534,0.0217242191259124,0.0236127629906082,0.0261595661640852,0.0281806026946415,0.0304104170100543,0.0324441463288788,0.0344888190474221,0.0367420908196551,0.038686646465485,0.0410015909823536,0.0427919479869967,0.0569158322282898,0.0706301025748377,0.0836943410080243,0.0967236557104704,0.1087982968318543,0.1246234342793721,0.1364359333248505,0.1478411678335071,0.1578767489052654,0.1676420777327588,0.1801289711375943,0.1922170066408531,0.2029434462668884,0.2128782662863512,0.2222625250060454,0.2327174153573799,0.2416675955857763,0.2506038715186104,0.2587865942809216,0.2665751230117862,0.2738989712172003,0.2808097563254912,0.2874182832689056,0.2932553074363945,0.2987223932701399,0.3041997590302195,0.308633650508229,0.313291581447935,0.3173933851586449,0.3217323644612077,0.3202017484868864,0.3190913710463791,0.317637793060771,0.3160949410949411,0.3156753545704314,0.3140369401215014,0.3121977431488447,0.3122624197142483,0.3126554673390807,0.3131692888833455,0.3136723206104015,0.3152412389065681,0.3170578505475178,0.3174199308112934,0.3187298842292357,0.3212543372205265,0.3226110286562393,0.3262746580954181,0.3301028828259419,0.3341272676749632,0.3391276721281713,0.3429671430831707,0.3465098824118088,0.3493456388531659,0.350527003078071,0.3484045684681502,0.3527714502657555,0.3459983831851253,0.3401341531581889,0.3401197604790419,0.0,1.8628321643194523,55.94206570896831,179.3980029750022,251.88273321232387,fqhc6_100Compliance_implementation,85 -100000,95645,45343,428.9403523446077,5944,60.91275027445241,4670,48.17815881645669,1797,18.42229076271629,77.2430810454354,79.64882426450447,63.27207635196621,65.05072672741423,77.00989961613222,79.41640443514403,63.18545033776228,64.9667153103176,0.2331814293031868,232.41982936043823,0.0866260142039294,84.01141709663307,158.3252,111.47344421565636,165534.21506612995,116549.16013974212,400.49121,263.4428886199989,418075.111087877,274786.57391395146,386.97291,188.06736920567937,400523.3415233415,193480.24610877695,3328.77255,1528.1463265791172,3437359.9142662976,1554745.8482713336,1107.13857,494.55390189686665,1142100.2979768936,501624.5156111143,1758.00958,744.6780348479514,1803924.0106644365,749032.5886692832,0.38038,100000,0,719660,7524.2825030059075,0,0.0,0,0.0,34552,360.5729520623138,0,0.0,35340,365.3719483506717,1567630,0,56250,0,0,0,0,0,70,0.7318730722986042,0,0.0,0,0.0,0,0.0,0.05944,0.1562647878437352,0.302321668909825,0.01797,0.3420289855072463,0.6579710144927536,24.49871994945713,4.354697830223703,0.3134903640256959,0.2419700214132762,0.2286937901498929,0.2158458244111349,11.235893614507674,5.817564863337167,19.276782171729977,12202.77739571794,53.295592550009225,13.610549693069023,16.633723811997402,11.954747345047055,11.096571699895758,0.576017130620985,0.8141592920353983,0.7110655737704918,0.5777153558052435,0.1111111111111111,0.7235202492211839,0.924574209245742,0.8641975308641975,0.6586345381526104,0.1598173515981735,0.5200826934435913,0.7510431154381085,0.6525023607176582,0.5531135531135531,0.0975918884664131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024018971947462,0.0046355466293388,0.0068424311949889,0.0091648970219165,0.0114633873445017,0.0139823819950099,0.0161305123629875,0.0185529325273648,0.0207992473821989,0.0229074077866754,0.0249202654059542,0.0269881695695037,0.0294740739217178,0.0317815162410244,0.0339275208240867,0.0359524769674597,0.0380280522924565,0.0401154161520337,0.0421568321527756,0.0442333955360028,0.0588413550962402,0.0726825180685031,0.0858687664041994,0.0988063660477453,0.1108905873907351,0.1261274613593055,0.1379918415908897,0.1501428510511278,0.161222677522548,0.1714043320911951,0.1835983859482554,0.1955468351960455,0.2062625932581822,0.2158033074143029,0.2249385519194947,0.2353554744282559,0.2450435541043733,0.2540240768294332,0.2623232231367378,0.2701212030868373,0.2773270906730947,0.2837619449128724,0.2901139513396982,0.2953738362606776,0.3008090516454772,0.3065575389477322,0.3111757478498533,0.3162841111961234,0.3212162127073975,0.3250128973371959,0.3239708202424455,0.3231782059581032,0.322448173184121,0.3205883630362081,0.319886185886454,0.3177841223061337,0.3155530155101522,0.3160477562783038,0.3160138327740875,0.3164436802607777,0.3168849744052996,0.3173915635120904,0.318600445771479,0.3197216298125491,0.3214121962402567,0.3234044784729141,0.3223349524329607,0.3250379458639008,0.3290235975695916,0.3336675355925406,0.3381844977663151,0.3422333993258066,0.3449673782225882,0.3506204994637659,0.3545532400799315,0.3572790088158208,0.3558530510585305,0.3596797372202833,0.3671377112773621,0.357390968737939,0.0,2.4785304116883897,56.0169215301551,175.0112344504136,253.52846966930548,fqhc6_100Compliance_implementation,86 -100000,95823,45565,430.5125074355844,6079,62.30236999467769,4748,49.04876699748495,1882,19.30642956283982,77.44904619750217,79.77514632022417,63.38601454967061,65.10670358766436,77.20996825318016,79.53746122115562,63.29598475419647,65.01978036143123,0.2390779443220054,237.68509906854263,0.0900297954741446,86.9232262331252,158.39978,111.45625942743216,165304.55109942288,116314.72551207138,399.31917,262.7596633573572,416220.52116923913,273708.2781350585,384.76802,187.2998801461032,398355.8853302443,193018.8242784528,3386.47748,1552.3169393935534,3500693.27823174,1586580.235844789,1123.50265,500.7772718257421,1158746.8770545693,508876.4094484017,1835.3326,781.7290785888927,1884151.0493305365,788309.2552375302,0.38272,100000,0,719999,7513.8432317919505,0,0.0,0,0.0,34502,359.51702618369285,0,0.0,35091,363.0861066758503,1578315,0,56575,0,0,0,0,0,70,0.7305135510263716,0,0.0,0,0.0,0,0.0,0.06079,0.1588367474916387,0.3095903931567692,0.01882,0.3372166246851385,0.6627833753148614,24.48734732596709,4.352864213835689,0.321609098567818,0.2320977253580455,0.2291491154170176,0.2171440606571187,11.112040316557442,5.754360180767106,20.1816808702482,12238.774544926044,53.85166981802468,13.263655404281854,17.237073823032397,12.039733431800126,11.311207158910298,0.5625526537489469,0.7876588021778584,0.696136214800262,0.5919117647058824,0.093113482056256,0.700675168792198,0.908256880733945,0.8238213399503722,0.7142857142857143,0.0893617021276595,0.5086383601756954,0.7087087087087087,0.650355871886121,0.5536791314837153,0.0942211055276382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002460933939621,0.0049364945820198,0.0071839517822897,0.0096606088926361,0.012162258356468,0.0141223666928003,0.0164758418890123,0.0185345839414568,0.0207664793050587,0.02292005607228,0.0250860796851942,0.0272786050759962,0.029585008069573,0.0316290179766488,0.0339628090223702,0.0358087445243408,0.0377366301996543,0.0398705890892499,0.0418926500841593,0.0439956275050752,0.0585946464709686,0.0734366995305655,0.0874696067745451,0.0996049424224594,0.1121227448996796,0.128400515758101,0.1397254465468808,0.1508561097522067,0.1621572602155126,0.1718480600563295,0.1848283130262719,0.1970246969598755,0.2080863353093175,0.2176883369165457,0.227737338471504,0.2375056654248792,0.2473518306062665,0.2555510653106126,0.2641178335295716,0.2716791407187339,0.2787610108636673,0.2849791117231078,0.2914940575245783,0.2972934200459066,0.3020217201590225,0.3066179815340734,0.3108939558450959,0.3156939862978939,0.3202520693707305,0.3244605263157895,0.3234176790388616,0.3214403337358656,0.3200668473605123,0.3196495727727266,0.318621792025575,0.3174465230450228,0.3155185441722813,0.3160231817810791,0.3163766024280499,0.3173839737332505,0.316964535306286,0.3166322821495235,0.3177591526978567,0.3177139037433155,0.3190557138410707,0.3209013209013209,0.3222093056225013,0.3262453485099597,0.3311501821238442,0.3353721095414727,0.3411236159012525,0.3434552199258082,0.3441880932922612,0.3470592687911589,0.3478056573630297,0.3514214934528725,0.3503281941688292,0.3553886746498884,0.3593964334705075,0.3688212927756654,0.0,1.9498793460360595,58.75281701536436,173.33090373839264,254.16872546812405,fqhc6_100Compliance_implementation,87 -100000,95801,45266,428.0017953883571,6103,62.316677278942805,4859,50.06210791119091,1925,19.665765493053307,77.3497797498425,79.68339926393216,63.33168066437421,65.05995644534408,77.1060252570762,79.44327148411205,63.239138016883096,64.97181034191439,0.2437544927662998,240.1277798201136,0.0925426474911148,88.14610342969331,158.65432,111.6082000736231,165608.20868258158,116500.03661091544,399.15652,262.25237539406044,415973.2570641225,273068.62333307456,388.4709,189.58435666143572,401474.71320758655,194741.64256898436,3462.61696,1593.8298458928514,3569878.059727978,1619187.6336756176,1155.72739,515.309945739032,1189194.7578835292,520821.82000655937,1880.95708,801.8304305196534,1923250.2792246428,801438.1633815564,0.3826,100000,0,721156,7527.645849208255,0,0.0,0,0.0,34445,358.83759042181185,0,0.0,35483,366.37404619993526,1571914,0,56414,0,0,0,0,0,65,0.6784897861191428,0,0.0,1,0.0104383044018329,0,0.0,0.06103,0.1595138525875588,0.315418646567262,0.01925,0.3352601156069364,0.6647398843930635,24.14713910150644,4.352577560519514,0.3261988063387528,0.2319407285449681,0.2245317966659806,0.2173286684502984,11.188263096575117,5.768062074292721,20.669817795427456,12214.535532788575,55.20283408488407,13.471371671893646,17.939441871431843,12.17525123900366,11.61676930255492,0.5735748096316114,0.8039041703637977,0.705993690851735,0.5774518790100825,0.125,0.7265917602996255,0.9095354523227384,0.8888888888888888,0.6893939393939394,0.1391304347826087,0.5156072644721907,0.7437325905292479,0.6374674761491761,0.5417170495767836,0.1210653753026634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044004177355085,0.0069519150749994,0.0093062004084162,0.0115756281151459,0.0138485820477572,0.0161704730831973,0.0182619968763716,0.0205443748275192,0.0227330883632381,0.0248895449559717,0.0269215762777994,0.028914275138042,0.0309230579125133,0.0329265650949527,0.0350806493278361,0.0372965922736118,0.0393954795813582,0.0413744376214374,0.0436466619466078,0.0581950965049556,0.0714293183315382,0.0847212468686784,0.097313884568498,0.1096143102594103,0.1245796586511008,0.1361056595767251,0.1472425942286608,0.158163483314105,0.1685224517817682,0.1818269987176309,0.1940986729591063,0.2061968950248593,0.2164715143166387,0.2266305782941642,0.2371331678340278,0.2464306843932442,0.2547587975879758,0.2637774271541596,0.2714225169810888,0.2780330297313875,0.2849722748648838,0.2916272133320708,0.2975608587310715,0.3026902289427339,0.3083139312859553,0.3132471364977742,0.3174619328083856,0.3215242631735636,0.3265368068202813,0.3248901942820188,0.3240882348888797,0.3227944494584837,0.3214151134815501,0.3198356458047996,0.3182731385629936,0.3170240755709825,0.3179465268762427,0.3188527253758402,0.3198433420365535,0.3204457200742867,0.3212589073634204,0.322528600762687,0.3230253602949391,0.3224581971939266,0.3244883079006301,0.3264546203916887,0.3298132364001003,0.3322160539087322,0.3357632595161163,0.3396936185641769,0.3455707569594844,0.3474842767295597,0.3504390988927071,0.3507322568531731,0.3522821087392381,0.3562919975565058,0.3621382636655949,0.3599348534201954,0.3607060629316961,0.0,2.499422312113286,58.196862514971606,180.23644735803447,263.60630299914084,fqhc6_100Compliance_implementation,88 -100000,95789,45724,432.7114804413868,5949,60.727223376379335,4718,48.56507532180104,1858,18.9478958961885,77.41775944651599,79.74451583204488,63.37436231324406,65.09456042956236,77.18621643443275,79.51881965952683,63.28844087524189,65.01403315272218,0.231543012083236,225.696172518056,0.085921438002174,80.52727684018635,159.09916,111.90548524260004,166093.35101107645,116824.98537681784,402.20009,264.84047639233626,419201.881218094,275803.7732853838,387.70089,189.23002936801524,400253.78696927626,194027.06732106576,3401.98406,1551.95210943727,3505084.0701959515,1573722.4832050318,1127.24416,501.8118556944386,1162160.582112769,509233.51918742,1827.01656,761.62907050024,1865459.7709549116,759600.7501857084,0.38407,100000,0,723178,7549.697773230747,0,0.0,0,0.0,34760,362.1814613368967,0,0.0,35328,364.363340258276,1570663,0,56355,0,0,0,0,0,76,0.7829709048011776,0,0.0,1,0.0104396120640157,0,0.0,0.05949,0.1548936391803577,0.3123213985543789,0.01858,0.3441778064100499,0.6558221935899501,24.29553145002256,4.343296594459353,0.3126324713861806,0.2356930902924968,0.2202204323866045,0.2314540059347181,11.242257287856628,5.851500397404977,19.717564542227144,12222.185627445331,53.48601583751592,13.284468291154525,16.851830397504205,11.472397959684196,11.877319189173,0.5606189063162357,0.7967625899280576,0.696271186440678,0.5957651588065448,0.1034798534798534,0.7393658159319412,0.9146341463414634,0.8665105386416861,0.7385892116182573,0.1534883720930232,0.4931386861313868,0.7279202279202279,0.6269083969465649,0.5526315789473685,0.0912200684150513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002450409582924,0.0049567676603853,0.0071536564824304,0.0092929251894131,0.0116428048482876,0.0140783419520338,0.0161655284884313,0.0184228790724259,0.0205135019113228,0.0224858248214029,0.0244062445544655,0.0265975465790689,0.0286389802631578,0.030926985957254,0.0328734352121099,0.0348916479021629,0.0370404868355688,0.039190071848465,0.0413381123058542,0.0436656671664167,0.0582754231098311,0.071949064829432,0.0859574824940249,0.0984915332576999,0.1109695086629101,0.1264526898533575,0.1384533898305084,0.1494152668509462,0.1598288500730908,0.1697626087329134,0.1830637529037253,0.1957630231402458,0.2076049425611848,0.2174796082156779,0.2273381453039341,0.2378455513888428,0.2473165022571476,0.256148231330713,0.2645236558043653,0.2714860723596944,0.277990181923188,0.2848855532081286,0.2921772803475715,0.2970770868977399,0.302058192138361,0.3065486812794604,0.3107458249540963,0.3147955295910591,0.3198479991727846,0.324263128101839,0.3244658707884029,0.3234728366903905,0.3235298254497377,0.3210864924124401,0.3204546128965251,0.3182868068833652,0.3165294870377099,0.3172724296005239,0.3189165277163371,0.3196000996193119,0.3199977576799462,0.320394077045602,0.3215030879652812,0.3221157054204942,0.3231625407791211,0.3244184535412605,0.3248465560354626,0.3288805268109125,0.3314449573366904,0.3336887835703002,0.3369599709868988,0.338327950442103,0.3424124513618677,0.3477766835845769,0.347703313253012,0.348286530223703,0.3500464252553389,0.3487760469350597,0.3456722917800762,0.3539412673879443,0.0,2.745684013341329,56.02962580063471,173.673540048409,256.80164189194033,fqhc6_100Compliance_implementation,89 -100000,95723,45456,431.3696812678249,5915,60.675072866500216,4661,48.1180071665117,1852,18.992300700980955,77.3893283971574,79.7527314195326,63.35181630130408,65.09474151836415,77.14856022390741,79.5127933707457,63.26205235470152,65.00819731751442,0.2407681732499895,239.93804878689676,0.0897639466025523,86.54420084972969,158.63254,111.70928622513888,165720.40157537896,116700.56958634692,400.27436,263.8067721233384,417589.9940453182,275024.8969665998,385.74937,187.9948130704291,399969.71469761705,193940.58054714743,3354.97796,1535.2051045768023,3463957.930695862,1562875.7922096078,1115.23537,496.7858233192867,1148296.3342143476,502241.058660255,1812.5302,772.584191727437,1859587.915130115,775874.6542894244,0.38065,100000,0,721057,7532.745526153589,0,0.0,0,0.0,34512,359.94484084284863,0,0.0,35138,364.0608840090678,1569921,0,56275,0,0,0,0,0,64,0.6685958442589556,0,0.0,0,0.0,0,0.0,0.05915,0.1553920924734007,0.3131022823330515,0.01852,0.3244415876586855,0.6755584123413145,24.39113939093641,4.454083221153002,0.3226775370092254,0.2284917399699635,0.2254880926839734,0.2233426303368376,11.457256901966892,5.975038737413489,19.87723882411409,12119.33654703866,52.78825737126192,12.6737215449704,17.017136478730762,11.579448680277643,11.51795066728312,0.559322033898305,0.7924882629107981,0.6855053191489362,0.5803996194100857,0.1171950048030739,0.7137192704203014,0.9143576826196472,0.8432835820895522,0.7304347826086957,0.1293103448275862,0.5020588235294118,0.7200598802395209,0.6279491833030852,0.53836784409257,0.1137206427688504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025421068089976,0.0051486312546241,0.0073440654068145,0.0095346404963293,0.0119759261518441,0.0142295869551941,0.0164988586336213,0.0188975735189077,0.0208241797541561,0.0229614546347552,0.0248898452710318,0.0269524356711946,0.0288846873137549,0.0307983694980853,0.0326512932634792,0.0348052538572033,0.0368457015073712,0.0388150115138061,0.0404540162980209,0.042533908369273,0.0568376425379056,0.0710511170407576,0.0844355405447928,0.0973745360488712,0.1089360446117032,0.1243430166770656,0.1360246931913404,0.1473891520732421,0.1584446106185236,0.1685823343983874,0.1819855712285991,0.1929600623079918,0.2044552679357693,0.2146028343976904,0.2242528937986884,0.2347225915093503,0.2442874206043557,0.2532284917206623,0.2608631509663069,0.2688157261667468,0.276042329266177,0.2823054889811188,0.2890368198264242,0.2946705461163595,0.3000206383314516,0.3052932267874952,0.3103405138982711,0.3149589277993947,0.3188585929205831,0.3228320497942821,0.3214247311827957,0.3204243740208339,0.319331983805668,0.3187725631768953,0.3178048454816551,0.3164473784746099,0.3137313715584743,0.3146666666666666,0.3147123422947916,0.3150406865974609,0.3166115501746913,0.3180178581988055,0.319183639329179,0.3192244187603195,0.3195215104129134,0.3213924149209563,0.3224633564367685,0.32568477069964,0.3288728949758926,0.3314522494080505,0.3353309724870607,0.3395205770046669,0.3425157232704403,0.3473357553739025,0.3505067567567567,0.3554742803209061,0.3592350887843375,0.3671953423007428,0.3730136604404795,0.3663943990665111,0.0,2.219736054832722,55.18788550889749,172.26922739850147,255.07812198204223,fqhc6_100Compliance_implementation,90 -100000,95675,44942,425.1580872746276,5820,59.51397961850013,4561,47.1178468774497,1838,18.803240135876667,77.35982293729873,79.73437172993833,63.33991942654043,65.08939824889922,77.13290397188909,79.51124648504495,63.25613116694226,65.00985106579725,0.2269189654096379,223.1252448933816,0.0837882595981724,79.5471831019654,158.06076,111.16965545504192,165205.45597073424,116194.64024566702,397.23455,261.7092491779838,414637.8573295009,272987.6710552768,378.73696,184.27723169787,392420.71596550825,189917.76523119168,3299.42133,1495.3649843293506,3409712.5581395347,1524232.6512574565,1063.19671,464.9505695501636,1097132.9605435068,471873.5086288204,1804.49538,751.9687673382249,1847969.354585837,753081.2158821893,0.37994,100000,0,718458,7509.338907760648,0,0.0,0,0.0,34337,358.2963156519467,0,0.0,34490,357.2511105304416,1576708,0,56477,0,0,0,0,0,87,0.8884243532793311,0,0.0,1,0.0104520512150509,0,0.0,0.0582,0.1531820813812707,0.315807560137457,0.01838,0.3330596157004434,0.6669403842995566,24.552639206837902,4.40195271859419,0.3277789958342468,0.2212234159175619,0.2256084192063144,0.2253891690418767,11.278573058295082,5.815470211874077,19.588279950007472,12131.60499234327,51.53208445460097,12.109158086675723,16.792924148871126,11.420114501391913,11.209887717662223,0.561718921289191,0.7958374628344896,0.6963210702341137,0.5850340136054422,0.11284046692607,0.745819397993311,0.9243902439024392,0.8870056497175142,0.7510729613733905,0.1206030150753768,0.4962852897473997,0.7078464106844741,0.6371603856266433,0.5364321608040201,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025114432697371,0.0047739228266488,0.0072135139248211,0.0093944872133411,0.0119367170977712,0.0142500890630566,0.0161913204740215,0.0184263151450842,0.0206235060981838,0.022925362140928,0.0252935029811297,0.0274224160041036,0.0296112812711986,0.0317023949259694,0.0338318720990201,0.035853073711191,0.037796596132345,0.0396208019582218,0.0414513697561989,0.0436160123396316,0.057848217643863,0.0713283491445205,0.0843960242241044,0.0975863810445688,0.1093789553624166,0.1245992190724104,0.1361243206521739,0.1479150023965489,0.1586312323612417,0.1685663382488677,0.1817486315245032,0.1927991337303735,0.2043745579193644,0.2142403747236632,0.2239889007564663,0.2347748067081681,0.2452268035485131,0.2539311445559689,0.2614971200507959,0.2689385270288826,0.2773070387367496,0.2841378020410787,0.2902047042963068,0.2959420636820685,0.3014514192867796,0.3063049763178938,0.3107626959835092,0.3152827001003518,0.3190056362790217,0.3226125354247677,0.3210988213474539,0.3193203376316296,0.318856499084636,0.3170326735103449,0.3161775614966915,0.3151680151726037,0.3132613992342499,0.3133588350215889,0.3143448370215822,0.3152845760834614,0.3166925800348426,0.3174142323872726,0.318715838411761,0.3199687290596381,0.3212511102042776,0.3221263770525878,0.3235986944799205,0.3271701660921341,0.3305949800741103,0.3334785708627109,0.3354718354718354,0.3346999627282892,0.3365268701224541,0.3350179952523164,0.3337734603414128,0.3356409644306517,0.3383504837966518,0.3389146661287068,0.3407806191117092,0.3443683409436834,0.0,2.0618250558752624,52.34813448300893,168.23748784921807,256.22902893798016,fqhc6_100Compliance_implementation,91 -100000,95863,44915,424.92932622596834,5873,60.19006290226677,4585,47.34882071289236,1747,17.9318402303287,77.34109898624328,79.6320867494526,63.34986309044478,65.04434818284766,77.12796878621475,79.41963806972458,63.27150975551322,64.96803663937526,0.2131302000285302,212.44867972801276,0.0783533349315561,76.31154347239999,159.52002,112.1874041221287,166403.70111513307,117028.43716775884,399.15073,262.71762849739446,415884.9816926239,273564.34922482545,378.26251,183.60292480350304,391357.9065958712,189006.8380733592,3249.69593,1469.8772146771446,3356547.1245423155,1499955.3752512918,1076.97116,473.8444578966567,1109211.8961434546,480077.7115522122,1711.58986,706.9510012721867,1757137.8738407935,713254.9240740057,0.37881,100000,0,725091,7563.804596142411,0,0.0,0,0.0,34483,359.1896769347924,0,0.0,34555,357.24940800934667,1570081,0,56364,0,0,0,0,0,67,0.6989140752949522,0,0.0,1,0.0104315533626112,0,0.0,0.05873,0.1550381457722869,0.2974629661161246,0.01747,0.3353936239427456,0.6646063760572544,24.75075873149614,4.23544518528535,0.3254089422028353,0.2359869138495092,0.2268266085059978,0.2117775354416576,11.247353730785322,5.884582994034463,18.446991538838045,12108.766241310006,51.87619970011967,12.91507784016991,16.85349101111132,11.564987418888776,10.542643429949662,0.5696837513631406,0.7855822550831792,0.7050938337801609,0.5846153846153846,0.1050463439752832,0.7417998317914214,0.9333333333333332,0.8624338624338624,0.743801652892562,0.134020618556701,0.5094228504122497,0.7072135785007072,0.651705565529623,0.5363408521303258,0.0978120978120978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002379626348033,0.0044076967504635,0.0065017395449796,0.0088025666538063,0.0109670075010672,0.0131279003500773,0.015465020324582,0.0177811782708492,0.0197944967622004,0.0221774399787227,0.0244502033248998,0.026594053516302,0.0286351077924879,0.0305468388291578,0.0325605358062854,0.0347603517318251,0.0367061645676944,0.0389134083421396,0.0407993771087464,0.0426961850168017,0.0573802969636303,0.0709403674518738,0.0848966680283652,0.0974459683686543,0.1100031588922817,0.1253102392142366,0.1366785305707385,0.1474949771980738,0.158666311016271,0.1687169156254688,0.1807411711537219,0.1933698073221893,0.205251945567584,0.2147150757393604,0.2243171592946637,0.2349800620292423,0.2446784773974742,0.2537822120738333,0.2617467179539549,0.2693857921494985,0.2768460257240677,0.2831671129090717,0.2897774308758485,0.2954158982588077,0.3009942095487818,0.3052403307088555,0.309387704046532,0.3141959767045599,0.3177896493293148,0.3221904146273894,0.3209177151315346,0.3201534294788072,0.3198788817688895,0.319142167141473,0.3179898271810583,0.3153807269886494,0.3130790061285571,0.3130124718602626,0.314307745030843,0.3153101470060954,0.3165252403620012,0.3174137247124157,0.3192733083813449,0.3195980577286215,0.3204923582898046,0.3199769536978839,0.3199988570448895,0.3255711220497286,0.3296159915833772,0.3331218274111675,0.3356391935557274,0.3364317204015509,0.3386974630821658,0.3399452804377565,0.3426573426573426,0.3451970003571003,0.3468793129888054,0.3489215883894376,0.352651722252597,0.3519083969465649,0.0,1.8306144047729465,52.37638074380278,171.4705406461048,257.5730453479921,fqhc6_100Compliance_implementation,92 -100000,95659,45016,427.8426494109284,5964,61.02928109221296,4706,48.7878819556968,1890,19.464974544998377,77.31769350596971,79.73900185606706,63.289715480586615,65.08074235522427,77.0820746236973,79.5017976883773,63.2012478196197,64.99358082581423,0.2356188822724192,237.20416768976804,0.0884676609669128,87.1615294100394,158.4726,111.45518948678898,165664.07760900698,116513.0196706938,399.01657,262.3637891951877,416685.0897458681,273841.1834147776,378.55952,183.65939020616523,393346.12529924,190142.32779274075,3404.32393,1542.0371459914172,3530855.3925924376,1584795.0510041097,1122.03362,491.2410090009674,1163217.7944573956,504005.4752133637,1863.47892,789.0119455863843,1920961.8331782685,802068.4324587442,0.38088,100000,0,720330,7530.185345863953,0,0.0,0,0.0,34485,360.0602138847364,0,0.0,34585,359.1089181362966,1571151,0,56336,0,0,0,0,0,68,0.7108583614714767,0,0.0,0,0.0,0,0.0,0.05964,0.1565847511027095,0.3169014084507042,0.0189,0.3313590523451256,0.6686409476548744,24.5385706899774,4.371670420523659,0.3257543561410965,0.2301317467063323,0.208244793880153,0.2358691032724182,10.923496724293406,5.572056249118714,20.089148447785675,12099.14090129078,52.92114673062274,12.802422329771202,17.27530490782644,10.806010562135372,12.037408930889711,0.5560985975350616,0.7793167128347184,0.7084148727984344,0.5663265306122449,0.1189189189189189,0.7190357439733999,0.9182561307901907,0.9069148936170212,0.6754385964912281,0.1422413793103448,0.5001427347987439,0.7081005586592178,0.6439066551426103,0.5332446808510638,0.112756264236902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023705324580598,0.0046647466839735,0.0070050761421319,0.0088720413825343,0.0109475312096208,0.0129788101059494,0.0150470283394201,0.0173377333237977,0.0194447002957641,0.021464154656717,0.0235797729279159,0.0256130790190735,0.027721140974153,0.0299460496590709,0.031946439087894,0.0340649220294084,0.0359871852028491,0.0379849389768891,0.039982100673306,0.0419225996183166,0.0560345278030326,0.0704324228040947,0.0837088151579124,0.0968023929391443,0.1086481291780633,0.123939544785367,0.1365186987895469,0.147978382066069,0.158931895500353,0.1691625128910278,0.1814660984950644,0.1939074082101521,0.2047388201971784,0.2147934762368971,0.223210546039724,0.2328533072980229,0.2432435453224544,0.252002027369488,0.2608611723025912,0.2690610710643028,0.2761719473781731,0.2826079324025419,0.2886282871357498,0.2948953272149241,0.2998479411228028,0.3046963642642198,0.3099381525903297,0.3148002036141512,0.3199010067766303,0.3250409554510384,0.3240587212358959,0.3226832222895215,0.3212322782491051,0.3199289335702214,0.3185232468380737,0.3171534915067318,0.3158795020431436,0.315861118855887,0.3159214161465261,0.316644426652433,0.3176712073147975,0.318024467959561,0.3192683433797547,0.3202559203803261,0.3211802652012901,0.3230529998704159,0.3249419493685224,0.3273781685529885,0.331357645910327,0.3328726009004028,0.3359570499112789,0.3375431148845847,0.3394385699899295,0.3397601335964779,0.3398668292225452,0.3443513162554598,0.3439926907263591,0.345356715823037,0.3461016028253192,0.3499433748584371,0.0,1.4948404996283744,53.295662216424255,173.16713921513187,267.62848994343045,fqhc6_100Compliance_implementation,93 -100000,95713,45111,426.9117047840941,5997,61.31873413224954,4719,48.73946067932256,1949,20.01817934867782,77.34880342590687,79.7067666790779,63.338894218876014,65.07730984896118,77.10253825679952,79.46019827213901,63.24737415690218,64.98752214535578,0.246265169107346,246.56840693889137,0.0915200619738314,89.78770360539556,159.83814,112.339812567977,166997.31488930449,117371.53006172308,398.53752,261.5975744414051,415822.6468713759,272749.14007648383,379.35941,184.93030166464743,392517.7875523701,190225.8181418645,3407.43388,1563.3598426537717,3522317.7102378984,1595647.3129603807,1151.13803,510.7838719289328,1186817.7677013571,517782.04834132496,1908.88254,806.1108725386678,1962110.45521507,816282.9670911185,0.38092,100000,0,726537,7590.787040422932,0,0.0,0,0.0,34357,358.3734706884123,0,0.0,34659,358.32123118071735,1569415,0,56338,0,0,0,0,0,74,0.7731447138842164,0,0.0,1,0.0104479015389758,0,0.0,0.05997,0.1574346319437152,0.3249958312489578,0.01949,0.3402258628916813,0.6597741371083188,24.239436222141048,4.461649399563482,0.3297308751854206,0.2231404958677686,0.2178427632973087,0.229285865649502,11.507403629034435,5.991423060882203,20.82117573343068,12202.308753007068,53.77177624411347,12.825432519112187,17.558841358508886,11.457103394124346,11.93039897236805,0.5713074803983895,0.8024691358024691,0.6908740359897172,0.607976653696498,0.1395563770794824,0.7204874333587205,0.8987654320987655,0.8663484486873508,0.7368421052631579,0.152892561983471,0.5137991779213154,0.7422839506172839,0.6262093227792436,0.5672215108834827,0.1357142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.004713538498966,0.0072142458525696,0.0092544621542274,0.0117842036765902,0.0139970478953529,0.0161558298592353,0.0182811064611615,0.0206836646057942,0.0229466250447776,0.0251624541336121,0.0272078821778621,0.0293319351057923,0.0314411019828278,0.0335038785278098,0.0355231344671529,0.0376360229025812,0.0398203002604193,0.0417857996901675,0.0434483620905226,0.0586048454469507,0.0726523008655063,0.085566209949852,0.0980390094051802,0.1103387899755295,0.1263870524144496,0.1389065749819601,0.1494234516242374,0.1591892556067227,0.1701335621949257,0.18292288798397,0.1952304179876432,0.2060320636923277,0.2160551211242959,0.2260719354803217,0.235741908318282,0.2452861802421697,0.2537093324327367,0.262574653132593,0.2697683477304493,0.2772755159919895,0.2846330221567114,0.2906303640130216,0.2970654140654021,0.3016385875836603,0.3063397202883371,0.3107117847138855,0.3155104013020701,0.3203688853247795,0.3250181290790427,0.324213332615223,0.3228061484264267,0.3219600879418231,0.3207795399673264,0.3193791996194327,0.3163891994547654,0.3138745071961241,0.3145960490910284,0.3157822827182211,0.3170204788516131,0.3180542563143124,0.3189243578108353,0.3210630951135294,0.3209953900550508,0.3229176697159364,0.3240359025204822,0.32500500271576,0.3290975594374724,0.3335911407980313,0.337138992759965,0.3424363020904807,0.3464916979110873,0.3494298273555456,0.3513222632226322,0.355740968995923,0.3550168026884301,0.3630970964720574,0.3641078838174273,0.3634324172742568,0.3666146645865835,0.0,2.2251271714569687,57.66243682039907,174.09026108610243,255.50482915306557,fqhc6_100Compliance_implementation,94 -100000,95635,45180,429.2047890416689,6022,61.81837193496105,4732,48.88377685993621,1893,19.38620797825064,77.26744378178137,79.68273456032978,63.28338998351626,65.06935505214322,77.030562009433,79.44987380700496,63.19481225804866,64.98547022521262,0.2368817723483687,232.8607533248146,0.0885777254675943,83.88482693059984,158.15712,111.21337000895514,165375.7724682386,116289.40242479756,400.73586,263.819136711827,418368.58890573535,275213.42181627714,382.41175,185.52756512578773,396438.3750718879,191257.649515287,3390.05004,1546.304676554531,3501988.612955508,1574920.9755011362,1124.65514,493.27019289789627,1161314.2677889897,501111.4684978268,1846.14442,777.1743836820244,1892001.233857897,778535.2540364977,0.38025,100000,0,718896,7517.080566738118,0,0.0,0,0.0,34616,361.2903225806451,0,0.0,34985,362.5660061692895,1570091,0,56386,0,0,0,0,0,67,0.6796674857531239,0,0.0,0,0.0,0,0.0,0.06022,0.1583694937541091,0.3143473928927267,0.01893,0.336815447926559,0.663184552073441,24.38648885843857,4.394481345729319,0.316356720202874,0.2360524091293322,0.2311918850380389,0.2163989856297548,11.11647280821849,5.7555794389319495,20.268019711382266,12138.51786303972,53.93317009398259,13.43181798573977,17.040181785874566,12.069565247325446,11.391605075042806,0.5657227387996618,0.7833482542524619,0.7060788243152972,0.5722120658135283,0.1162109375,0.7284716834755625,0.9189814814814816,0.8585858585858586,0.7008196721311475,0.1428571428571428,0.5047923322683706,0.6978102189781021,0.6512261580381471,0.5352941176470588,0.1090458488228005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.0047454877306834,0.006924139051332,0.0090541419396797,0.0111598286859479,0.0132908298366399,0.0153149662499745,0.0176214152262912,0.0199490792339389,0.0221915002560163,0.0244195109944207,0.0264825829250002,0.0286604874134578,0.0307370503560057,0.0327631945663057,0.0347893512535538,0.0368095617859991,0.038913050247553,0.0406719717064544,0.0425168117604128,0.0575041806020066,0.0717472819825292,0.0845944611894684,0.0975201389985784,0.1092483108108108,0.1251005972298699,0.136721363708778,0.1479997442400733,0.1592345787295033,0.1693104077840903,0.182047604154309,0.1952205045985852,0.2062255115367871,0.2166057475541158,0.2258799696125601,0.2366633798291583,0.2457137116578113,0.2545405441901289,0.2627252392901343,0.2701454391253022,0.2777005904828065,0.2832643129547741,0.2900563607085346,0.295941260452784,0.3016029383148472,0.3058390827295953,0.3110816091378187,0.3157057401043655,0.319979781746546,0.323128577282521,0.3218193839137533,0.3204905608378117,0.3195253749453278,0.3178902868063297,0.3185148780269859,0.3164419079179515,0.3141034794611833,0.3150363092695429,0.3158092698021918,0.3162306097648152,0.3163504663251327,0.3180880602935343,0.31828973631684,0.3184443847393874,0.3192104692357747,0.3205450075840786,0.3216671424493291,0.3242834645669291,0.3262690980778708,0.3277327692860278,0.3309104292220637,0.3327772695474358,0.3354842831587017,0.3389660493827161,0.3391551969625059,0.3438701923076923,0.3470433028092503,0.34643886372993,0.3530079455164586,0.3565705128205128,0.0,2.194144735096988,56.79346016590548,177.60711279120773,256.88191470148,fqhc6_100Compliance_implementation,95 -100000,95839,44997,425.9643777585325,6115,62.59455962603951,4822,49.73966756748297,1840,18.83366896566116,77.40182060844235,79.7169113749846,63.36325590393732,65.07626553881886,77.17347926684803,79.48923481332719,63.27839192772195,64.99417676026108,0.2283413415943158,227.6765616574181,0.0848639762153737,82.0887785577753,158.76806,111.6625951190768,165661.223510262,116510.60123652876,400.02126,263.4577466385928,416844.6874445685,274352.0556752396,383.54866,186.52100325027504,396740.7422865431,191961.01679236247,3428.03449,1569.6625814496556,3540904.516950302,1601848.4869934558,1135.18722,507.6310306640112,1170983.4305449766,516183.7647025434,1798.20734,762.5884713276835,1843009.275973247,766801.2228267353,0.38065,100000,0,721673,7530.055614102818,0,0.0,0,0.0,34594,360.3856467617567,0,0.0,35084,362.56638737883327,1573571,0,56511,0,0,0,0,0,72,0.7512599255000574,0,0.0,0,0.0,0,0.0,0.06115,0.1606462629712334,0.3008994276369583,0.0184,0.3298807281858129,0.6701192718141871,24.3786984961914,4.291292083061367,0.3139776026545002,0.2478224802986312,0.226047283284944,0.2121526337619245,11.211784275882351,5.953823933406444,19.710379875481404,12114.159730119469,54.81774252028617,14.372134031212758,17.13871345603276,12.04372362862694,11.263171404413717,0.5769390294483617,0.7882845188284519,0.7001321003963011,0.5954128440366973,0.1280547409579667,0.7380410022779044,0.9223946784922394,0.868766404199475,0.7330677290836654,0.1752136752136752,0.5164051355206848,0.706989247311828,0.6434245366284201,0.5542312276519666,0.1140684410646387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.004469488897222,0.0068376415209187,0.0091512030632661,0.0113967934445562,0.0135897227085793,0.0156652907302655,0.0180138803837517,0.0201259275916348,0.0221282867465686,0.0242427348675106,0.0263887178223919,0.0285552757362388,0.0303741685714874,0.0322723709723998,0.0341599504029758,0.0358880400803262,0.038117359159676,0.0405799810966046,0.0426800711854881,0.0572259941804073,0.0710544747488474,0.0845095512034621,0.0969842753752586,0.1093090120167244,0.1244573999556414,0.1363665254237288,0.1478910667970576,0.1587176230776619,0.1687036065082102,0.1807289818130975,0.1927731673582296,0.2040242060775941,0.2145377866640445,0.2247125552355618,0.2353136519111347,0.2447252208047105,0.2529596276434281,0.26130847057756,0.2684054521109191,0.2757244952239979,0.28273346815201,0.2897979941337875,0.2961995590913447,0.3018808358730891,0.3075596506571735,0.3112601005678833,0.3151324069718659,0.3190534106200186,0.3230978153387741,0.3219823818169592,0.320041785218479,0.3196725922592259,0.3187375645203149,0.3182835544356333,0.3163333944841925,0.3147042093287827,0.3148293705377611,0.3149316329662086,0.3150848332710214,0.315642979899873,0.3169516230696502,0.3185403104656985,0.3204197112814115,0.3214832535885167,0.3221732365145228,0.3244973095440385,0.326725266504582,0.3309304917119376,0.3333859572956545,0.3355573710965868,0.3378930067334711,0.3400603545831762,0.343067354368932,0.34388676785548,0.3455294117647058,0.3466626121331914,0.3479579458147998,0.346206518761983,0.3461096205442698,0.0,2.229287890513519,57.81922640159758,180.3685701269769,260.8919380179456,fqhc6_100Compliance_implementation,96 -100000,95706,45055,427.9877959584561,6120,62.83827555221198,4733,48.97289616116022,1846,19.00612291810336,77.32145341825886,79.70742139057482,63.3143933609397,65.07964048986324,77.09012034348441,79.47591428284666,63.22870008063708,64.99611125696653,0.2313330747744402,231.50710772816296,0.0856932803026211,83.52923289670855,158.47898,111.51309575923828,165589.38833510963,116516.30593613592,399.84829,263.0158717646792,417324.6609407979,274353.041360708,380.29125,184.44472774431665,394133.6593317033,190286.6532578027,3409.77777,1551.9350943914756,3530387.258897039,1589237.6910785062,1112.65497,494.1992813428235,1153204.5953231773,507029.52997533017,1817.57364,763.8308414987112,1872676.8854617265,775083.5064229273,0.37987,100000,0,720359,7526.790378868618,0,0.0,0,0.0,34566,360.6774914843375,0,0.0,34889,361.2730654295447,1572478,0,56397,0,0,0,0,0,59,0.6164712766179758,0,0.0,0,0.0,0,0.0,0.0612,0.161107747387264,0.3016339869281045,0.01846,0.3321917808219178,0.6678082191780822,24.470375001768943,4.377124529754251,0.3226283541094443,0.2328332981195859,0.2146630044369321,0.2298753433340376,11.022001000230103,5.623776552574954,19.611748589701783,12101.516638187566,53.76319914297915,13.216373491689165,17.313685426720703,11.305854803518631,11.927285421050648,0.5569406296218044,0.7912885662431942,0.6987557301899149,0.5856299212598425,0.09375,0.7308943089430894,0.9297820823244553,0.8919667590027701,0.7477064220183486,0.1260504201680672,0.4958606908364259,0.7082728592162555,0.6389365351629502,0.5413533834586466,0.0847058823529411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019858960849477,0.0039549741405536,0.0059180607438687,0.0081299986788752,0.0102657496337294,0.0124786081003993,0.0147057323801462,0.017143148866653,0.0190964945460493,0.0210453047270047,0.0229859131825544,0.0249132247530242,0.0271371258101018,0.0288737982131632,0.0312767736408022,0.0334477553299282,0.0358078783547227,0.0376727967121922,0.0398930915065985,0.0419489317352787,0.0566725504736638,0.0706883557342042,0.0840006296898777,0.0966441823022445,0.1084662783827129,0.124355676922914,0.1368856809255917,0.1479619550746093,0.1591052400953327,0.169221198502676,0.182282408454801,0.1944092587179404,0.2057825349171126,0.2158658264408559,0.2250154022179193,0.2353781419554866,0.2450971642756743,0.2541900383314036,0.2624423100910565,0.2700251889168766,0.2766156728067436,0.2833196960841613,0.2902802101576182,0.2958662832494608,0.3011161446251381,0.3054225395457623,0.3104004602416269,0.3148769574944071,0.3192416057073435,0.322836098190874,0.3220500820355577,0.3209601889616721,0.3197221519165331,0.3185799841258388,0.3174190674190674,0.3153227659085688,0.3135218980990519,0.3146106133700896,0.3160356423474788,0.3171884756043172,0.3184218410605947,0.3185859943092001,0.3186882224828279,0.3202874862861877,0.3211979568234387,0.3226515290239883,0.3247322297955209,0.3282409014866955,0.33188987466554,0.3347653142402546,0.3363118304080237,0.3369750586228949,0.338607192781802,0.3401585713186051,0.3389637502372367,0.3425925925925926,0.3460883036405887,0.3439099283520982,0.3498477719346803,0.3531898539584934,0.0,1.870074903070705,54.13316880687334,185.0619691533895,257.3673759550366,fqhc6_100Compliance_implementation,97 -100000,95703,45003,425.9950053812315,5933,60.69820172826348,4655,48.034021921987815,1848,18.912677763497488,77.3455376358958,79.7311090631829,63.32130932583449,65.08674319869826,77.11122734996098,79.49999496706398,63.23428870388118,65.00336446540892,0.2343102859348107,231.1140961189153,0.0870206219533145,83.37873328933654,158.54916,111.53919878659784,165667.91009686215,116547.23340605608,399.13066,262.7509832394843,416473.53792462096,273970.5058770199,379.82843,184.9920136256618,392895.92802733456,190273.42397786555,3379.86659,1544.3574651425788,3492163.432703259,1574241.1890354329,1142.01434,505.5799063640519,1179583.9106402097,514574.00119541865,1818.00114,765.7771968639227,1862915.4780936856,769835.2592720967,0.37914,100000,0,720678,7530.359549857371,0,0.0,0,0.0,34509,359.96781710082234,0,0.0,34771,359.4140204591288,1573463,0,56350,0,0,0,0,0,68,0.700082547046592,0,0.0,0,0.0,0,0.0,0.05933,0.1564857308645882,0.3114781729310635,0.01848,0.3332260659694288,0.6667739340305712,24.430722572520555,4.402960080002166,0.3203007518796992,0.227282491944146,0.2214822771213748,0.2309344790547798,11.231655917032976,5.84646066245012,19.74934346644012,12099.789868062926,52.75249532618497,12.766117115751914,16.770701139448047,11.327340754253894,11.888336316731095,0.5568206229860365,0.8109640831758034,0.6841046277665996,0.5615906886517944,0.1255813953488372,0.7354581673306773,0.9287469287469288,0.8712121212121212,0.7217391304347827,0.1531531531531531,0.4908823529411765,0.7373271889400922,0.6164383561643836,0.5156054931335831,0.1184056271981242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023607128744972,0.0044728434504792,0.0069546677496319,0.0090855505193194,0.0111906893464637,0.0133632104298227,0.015398421406865,0.0177486392369514,0.020216377617801,0.0224880186785728,0.0248807753448541,0.0268896169924302,0.0288118333213326,0.0309849866559502,0.0330130752004623,0.035191100910792,0.0372806563218628,0.0393457255243848,0.0415245424292845,0.0433346531352241,0.0579867566269087,0.0723324088126013,0.0859028987636699,0.0989120828247969,0.1116068603252958,0.1266857765413947,0.1398285301982089,0.150432393286189,0.1600782485996493,0.1700835068587252,0.1823610572155391,0.1939847506823203,0.2055711579909868,0.2161724477513951,0.225452103948136,0.235166369347708,0.244905247650722,0.2538362883628836,0.2621518915546481,0.2687980037315568,0.2753044866234082,0.2819092364690345,0.2884031070073182,0.2936290409450515,0.2988890505991364,0.3036568715482355,0.3088744237184372,0.3133703144238947,0.316979329399765,0.3202577421263725,0.3189881910896404,0.3176915591979936,0.3164517850622173,0.3150736247586664,0.3150467898602227,0.3131860582281187,0.3117837666956453,0.3118267209668944,0.3117397840645073,0.3121883210896026,0.3137718705414132,0.3135774580905957,0.3139705882352941,0.3151310341740707,0.3162874684001444,0.3174238668093213,0.3200205104831358,0.3240720369613729,0.3274857904708441,0.3299325129019452,0.3357883251500272,0.338102808691044,0.3416609126859582,0.3430933778350906,0.3434999529323166,0.3440526001195457,0.3505313414446326,0.3491317671092952,0.3555008210180624,0.3657874321179208,0.0,2.3877620698947277,54.798029922157774,169.98923645161614,258.7164906240824,fqhc6_100Compliance_implementation,98 -100000,95609,45071,427.7003210994781,6004,61.500486355887,4707,48.64604796619565,1812,18.607034902571936,77.23812690061078,79.66708859746352,63.25655152000609,65.05335974412982,77.00961009959276,79.43987126137147,63.17279183565018,64.97201782914873,0.2285168010180172,227.2173360920533,0.0837596843559111,81.34191498109544,159.16626,111.97006044138332,166476.23131713542,117112.4689531146,400.50767,263.6314224567167,418278.3629156251,275115.87302736135,384.51698,187.0683229455444,397882.51106067415,192402.8816182342,3331.42811,1517.8701034187463,3446903.617860243,1550056.3544649195,1111.27711,489.1806196206536,1147910.771998452,497257.46513121255,1771.19986,736.8782383860812,1821040.4878201843,745068.9159056294,0.37859,100000,0,723483,7567.101423506156,0,0.0,0,0.0,34648,361.7441872627054,0,0.0,35157,363.553640347666,1562107,0,56104,0,0,0,0,0,66,0.6693930487715593,0,0.0,0,0.0,0,0.0,0.06004,0.1585884466045062,0.301798800799467,0.01812,0.3335452089623391,0.6664547910376609,24.501002964110796,4.336359377024523,0.3246229020607605,0.2502655619290418,0.2152113872955173,0.2099001487146802,11.049377907922803,5.680313396434394,19.14578226212599,12094.450962740504,53.30874212020831,14.063485531963469,17.33063461627095,11.111265614367348,10.803356357606544,0.5708519226683663,0.7835314091680815,0.68717277486911,0.5853899308983218,0.1224696356275303,0.747832939322301,0.92,0.8511749347258486,0.8070175438596491,0.1201923076923077,0.5055264688772542,0.6991758241758241,0.6323144104803493,0.5210191082802548,0.123076923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.004381649812867,0.0064474859881406,0.0090462783204415,0.011205422569614,0.0132440885520136,0.0153194961497271,0.0177338291178032,0.0197921567825215,0.022103182325648,0.0241422473939095,0.0263144374916515,0.0284267511990284,0.0304732843314124,0.0324672642405716,0.0345070203938042,0.0365724711297244,0.0387767609510849,0.0408243988758197,0.0427589372333434,0.057005760163919,0.0710348729985749,0.0836336131275672,0.0965204204140952,0.1087996451841135,0.1244306988370368,0.1371386684514134,0.1482413131528459,0.1595733299097017,0.1691084854994629,0.1820015967891591,0.1933871754566643,0.205393331880584,0.2155081737301135,0.2246663507422387,0.2353065187239944,0.2446815649956378,0.2536334013597772,0.2615755480760484,0.2687555974005098,0.275944080283079,0.2817897217629885,0.2880022778232551,0.293148412994099,0.2978689703069219,0.3029363058899132,0.3076701051627638,0.3125047840175541,0.3170538508486021,0.3218816557088619,0.3206991968684619,0.3192402129831434,0.3175987468777782,0.316906813409601,0.3165945037123004,0.3150438946528332,0.3140607388357067,0.3150788685085784,0.3169021329126946,0.3179947021764032,0.3193821437285336,0.320592545648988,0.3208803208803208,0.3219563608638127,0.3222329394743188,0.3238471397556956,0.3239396282613054,0.328661173722259,0.3318069742867207,0.3348010631123805,0.3343537259560469,0.3348221406922954,0.3365663181760927,0.3416622228993677,0.3457531675269826,0.349075491697091,0.3507473954401329,0.3522025114610325,0.3520087455588959,0.3539923954372623,0.0,2.2193162034699583,55.63446071457953,170.3675125034633,263.2107017581393,fqhc6_100Compliance_implementation,99 -100000,95719,44825,424.8895203669073,5951,60.97013132189012,4677,48.27672666868647,1893,19.369195248592234,77.33641368994157,79.7129002433944,63.332022412709286,65.09009998996936,77.10377876598561,79.4811770349833,63.24585366381358,65.00665997601985,0.2326349239559562,231.72320841109692,0.0861687488957088,83.44001394951306,159.55434,112.29242946232507,166690.3540571882,117314.67050671768,400.52658,263.4348370257572,417846.01803194766,274622.89307844546,381.18098,185.30741927177183,394694.37624714006,190848.80300702705,2717.77992,1244.0405931702967,2807290.13048611,1267722.3546428464,1142.02889,505.8217011033262,1177669.8356648106,513052.0999168701,1861.44694,777.0337859985658,1907801.899309437,782346.1692775999,0.3773,100000,0,725247,7576.834275326738,0,0.0,0,0.0,34727,362.1851461047441,0,0.0,34712,359.0405248696706,1568166,0,56264,0,0,0,0,0,73,0.7626490038550341,0,0.0,0,0.0,0,0.0,0.05951,0.1577259475218659,0.3180977986892959,0.01893,0.3397466730800064,0.6602533269199936,24.408011301435785,4.451823116621884,0.3264913406029506,0.2202266410091939,0.2195852041907205,0.2336968141971349,11.342112826891809,5.8115724579405885,20.1603193761888,11982.272145089222,53.069147059712606,12.366537690269716,17.242461770785027,11.524470557180104,11.935677041477753,0.5567671584348942,0.7786407766990291,0.7000654878847413,0.5715676728334956,0.1335773101555352,0.714516129032258,0.9206798866855525,0.8582089552238806,0.728744939271255,0.1512605042016806,0.4998545242944428,0.7045790251107829,0.6435555555555555,0.5217948717948718,0.1286549707602339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0044523778131624,0.0067008477587694,0.0087405480120334,0.0107626420353397,0.0129957427739188,0.0150827562997787,0.0175107208494996,0.0197519757087503,0.0217636099338697,0.0240787248218953,0.0262928246563247,0.0285775986179095,0.0304981048121292,0.0324314842331187,0.0345544001819196,0.036499373556851,0.0384679226491825,0.0404610459798786,0.0425824461990375,0.0572535424519928,0.071217827997489,0.0843645134228188,0.097171269092094,0.1098123946037099,0.1248454360025787,0.1368739068214342,0.1479843040505333,0.1586154634333774,0.1686359789606744,0.1806745297232146,0.1928654072816531,0.203518570838676,0.2133658120965187,0.2226812732806645,0.2325529962070529,0.2410304407897669,0.2493285837893719,0.2575635634047087,0.264943383278051,0.2722113706499,0.2796024200518582,0.2862695984025898,0.2916447273945718,0.2966295950420239,0.3009546304497589,0.3050925810240136,0.3088065257995248,0.313318155947638,0.3167816577180323,0.317043618739903,0.315416827373409,0.3143271968650447,0.3138409455881715,0.3137613859617789,0.3120725086648468,0.3109307633781384,0.311328041545465,0.3119473189087488,0.3120563571671226,0.3131595224261054,0.3140626544124913,0.3152476407691825,0.3171482762467923,0.3184415210293835,0.3192640974264227,0.3193034626712035,0.3229064739118083,0.3262513630447782,0.3290119270812557,0.3318775285031261,0.3351979345955249,0.33620246659815,0.3408037094281298,0.3448275862068966,0.3484573502722323,0.3482726423902894,0.3448770491803278,0.3484262838210933,0.3476263399693721,0.0,2.234335243660774,54.24619034635897,175.7135289961243,258.37263021376776,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95615,45099,427.3388066725933,5982,61.36066516759923,4684,48.45474036500549,1835,18.82549809130367,77.26635035352784,79.70500073971813,63.26822878755484,65.07224732339576,77.03324567335545,79.47273488545349,63.18146697158886,64.98823951718455,0.2331046801723886,232.26585426463944,0.0867618159659784,84.00780621120418,157.9347,111.09753863178824,165177.7440778121,116192.5834145147,400.18528,262.934589253295,418016.2003869686,274471.49464364245,378.49484,184.35635880351543,392304.8684829786,190035.83705962315,2699.4426,1238.2844711486669,2795451.968833342,1267322.2234746828,1130.78184,504.7816852661126,1167513.7583015217,512830.11977303127,1803.04166,763.2101200589091,1852774.020812634,769936.9087539412,0.38023,100000,0,717885,7508.079276264185,0,0.0,0,0.0,34590,361.2194739319145,0,0.0,34607,358.5525283689798,1572283,0,56395,0,0,0,0,0,56,0.5752235527898343,0,0.0,0,0.0,0,0.0,0.05982,0.1573258291034374,0.3067535941156804,0.01835,0.3281049935979513,0.6718950064020487,24.49715961012435,4.40757250714664,0.3270708795900939,0.2335610589239966,0.2147736976942784,0.224594363791631,11.08177870380702,5.654795199478965,19.775759944082974,12167.82141499598,53.16584341561136,13.129277007631936,17.233425711376178,11.120867377405178,11.682273319198051,0.5567890691716482,0.8025594149908593,0.674934725848564,0.558648111332008,0.1273764258555133,0.7256778309409888,0.9271356783919598,0.8439897698209718,0.6954732510288066,0.1891891891891892,0.4950437317784256,0.7313218390804598,0.6170026292725679,0.5150720838794234,0.1108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0047577986304844,0.0069769567469304,0.0091711403936879,0.0116956088027523,0.0138813865079445,0.016176110385369,0.0185361168163657,0.0206679217483834,0.0227687263039245,0.0248162896670635,0.0269514626976132,0.0289264280493705,0.0310444375708835,0.0332692943315154,0.0355838377567385,0.0376762023217247,0.0395920317400967,0.0416627637097865,0.0433227303540699,0.0583647825041554,0.0719188489630817,0.0849561983991933,0.0979008457706202,0.1104105277610553,0.1257282067577587,0.1372640707362693,0.1483136719499968,0.158380871854698,0.1686238275836135,0.1821172410073882,0.1940536322053372,0.2052183950603839,0.2148444347063978,0.2247167482255433,0.2346070656092285,0.2445402651950982,0.2536679841007105,0.2623381049761418,0.2703552053584741,0.2782049797336421,0.2848946135831381,0.2903653698110973,0.2968633845711134,0.30152574311592,0.3067486176935229,0.3112200135362094,0.3156519966361713,0.3204543097189088,0.3252122700682697,0.3237315081781682,0.3220086999614558,0.321882001493652,0.3193611331936113,0.3185867027525391,0.3168453292496171,0.3148007349680035,0.315078399789619,0.3156355801785164,0.3164099536664341,0.3170928768719114,0.3180187501238776,0.3201562762560914,0.3214869555480909,0.3219174780680613,0.3221685173089484,0.3219448094612352,0.3249076966770803,0.3292846078017181,0.3315132916185086,0.3326791419443176,0.3359923420548819,0.3386534929381214,0.3435438623095003,0.3437383525903839,0.3466228893058161,0.3541256623769871,0.3555110220440882,0.3593579978237214,0.3568215892053973,0.0,2.0818525919584867,55.111950293988166,174.71418444227814,258.02996418306924,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95698,45303,429.3088674789442,5881,60.2624924240841,4565,47.05427490647663,1750,17.90006060732722,77.34534288058313,79.71316231789741,63.32656324425341,65.07410625771728,77.12145619332121,79.4909019106904,63.24259078382254,64.99297486088382,0.223886687261924,222.2604072070169,0.0839724604308642,81.13139683345594,159.4494,112.18737031805578,166617.27517816465,117230.6321114922,402.13681,265.4833449624251,419567.4831239943,276770.9094886258,385.14759,188.63624734526715,397521.7768396413,193372.8341050132,2627.02432,1211.7826817223458,2710934.857572781,1232072.5633998048,1086.51021,480.75388628151046,1119233.1814666972,486245.7379271349,1715.06358,725.4155231562119,1756786.9547952935,729589.7493117981,0.3801,100000,0,724770,7573.5125080983935,0,0.0,0,0.0,34787,362.8393487847186,0,0.0,35113,362.07653242492006,1561115,0,56086,0,0,0,0,0,66,0.679220046395954,0,0.0,0,0.0,0,0.0,0.05881,0.1547224414627729,0.2975684407413705,0.0175,0.3335499593826158,0.6664500406173842,24.65213728719745,4.3273576745801385,0.3338444687842278,0.2302300109529025,0.2144578313253012,0.2214676889375684,11.11390792397654,5.7125938538645125,18.702113048650297,12092.241917377703,51.67226514633255,12.737309007776444,17.21214114994733,10.795595306642104,10.927219681966672,0.5640744797371303,0.7973358705994291,0.7001312335958005,0.5689479060265578,0.1117705242334322,0.7387173396674585,0.9197080291970804,0.8791469194312796,0.7168949771689498,0.1279620853080568,0.4972743791641429,0.71875,0.631578947368421,0.5263157894736842,0.1075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.004591247238157,0.0067468852725132,0.0090493601462522,0.0112774309015843,0.0134189922520082,0.0155244997604558,0.0178945111930014,0.0202093512972011,0.0223869138405789,0.0244807577963217,0.0264017252002464,0.0289029232066816,0.0309676621784503,0.0329927760577915,0.0351461148037502,0.0371693697052548,0.0391448733914487,0.0412776310590779,0.0431529475516095,0.057513158994068,0.0717335789341482,0.0853392373717235,0.0986269661739176,0.1113631807198404,0.1271482390789028,0.1386503327990148,0.1499398238382805,0.1598110566082096,0.1696447724055086,0.1823059766622491,0.1935875085272493,0.2051362968605473,0.2151670078714296,0.2244234962447415,0.2347555230399166,0.2441349137257528,0.2528046269311699,0.2618709772626656,0.2694444762679436,0.275815783383476,0.281955019122136,0.2884028123002627,0.2941098927437234,0.2996051752414505,0.3036044476221,0.3078791217045141,0.3119429363373978,0.3160902411527646,0.3208571692803635,0.3197384387218552,0.318252579663025,0.3171516922946583,0.3157833801267765,0.3156054745611425,0.3138553016719538,0.3114569986871036,0.3116478762454116,0.3125851034858388,0.312987012987013,0.31418124836772,0.3148782119387714,0.3158268275372605,0.3165933501551928,0.3163881207166045,0.3170115840166602,0.3189227498228207,0.3233860383726017,0.3270780285325613,0.3314436439510255,0.3355113894182775,0.3382352941176471,0.3412494517200325,0.3448982690555724,0.3472404115996258,0.350088287227781,0.3513431476703597,0.3528229857343781,0.3551120831055221,0.3534214618973561,0.0,2.5674667598894185,54.87850371665687,163.39768411863457,251.34179920872916,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95658,45503,431.43281272867927,6066,62.0230404148111,4764,49.175186602270585,1869,19.10974513370549,77.2498286400838,79.64848584295257,63.26585613190741,65.03874924307354,77.01040332437846,79.41256729742649,63.177101370982015,64.95458767349295,0.2394253157053469,235.9185455260757,0.0887547609253971,84.16156958058707,157.9138,111.2396780263588,165081.64502707563,116288.94397369667,400.67632,263.9071596864612,418237.6068912166,275261.89162089454,387.32297,188.64089556701555,401422.6201676807,194559.1265527165,2725.5742,1244.1711835121769,2815379.246900416,1266817.519578375,1149.47499,502.8039742957026,1184718.1103514603,508796.4654464002,1827.98372,766.5574689357321,1870897.8234962053,765302.4088215731,0.38274,100000,0,717790,7503.711137594347,0,0.0,0,0.0,34590,360.9316523448117,0,0.0,35325,365.8345355328357,1565588,0,56153,0,0,0,0,0,73,0.7526814275857743,0,0.0,0,0.0,0,0.0,0.06066,0.158488791346606,0.3081107814045499,0.01869,0.3461175730902232,0.6538824269097768,24.482911836010626,4.341321121480268,0.3228379513014274,0.2338371116708648,0.2222921914357682,0.2210327455919395,11.15785799449434,5.781956793713561,19.850344673291463,12239.437953985967,53.8897281383065,13.400377203849878,17.31057115582141,11.828371078154444,11.350408700480772,0.5564651553316541,0.7935368043087971,0.6729518855656696,0.5684608120868744,0.1234567901234567,0.7416534181240063,0.9424460431654677,0.8110236220472441,0.7518518518518519,0.1473684210526315,0.4900171135196805,0.7044476327116213,0.6274848746758859,0.5057034220532319,0.1181923522595596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995259127193,0.0045432880018659,0.0065874280610225,0.0089006299532615,0.0113415589303333,0.0133929480781374,0.0155096463678264,0.0178485730331342,0.0198097770505215,0.0222037873434315,0.0245761234139886,0.0266974833076528,0.0288316098163296,0.0308895828824093,0.0329547800949824,0.0350191333126486,0.0369414739285418,0.0393172686593507,0.0412201668782122,0.0433127926011657,0.0581044228739799,0.0721638688462787,0.0857577665827036,0.0992076436606231,0.111465237029845,0.1274740162147287,0.1396257672620691,0.1508915154163425,0.1615971412370141,0.1716053892601586,0.1849122163352073,0.1971499528245616,0.2086873071092838,0.2185316411263341,0.2284162536290278,0.2390794635019057,0.2489812368456405,0.2576096031047632,0.2661347235185649,0.2736798566110575,0.2808853071983464,0.2871841854892702,0.2936422093589911,0.2995621210663073,0.3041549355857009,0.3078131183221211,0.3117474984620406,0.3161947818091261,0.320502994323127,0.3237614848942198,0.3223867289871126,0.3218942749513598,0.3210087595365922,0.3187155697303566,0.3185239280444729,0.3168088894345877,0.3146078104932693,0.3150876615359289,0.3154556829673814,0.3160245372363323,0.3171975241284593,0.3183513170422088,0.3197975938018351,0.3211015351467816,0.3208299115984735,0.3209151861417652,0.3218037407122726,0.325598168647496,0.3295040627626786,0.3330291608807776,0.3374324998865544,0.3417220639442861,0.3426941641070645,0.3451206556381848,0.3461933675852405,0.3485741220834315,0.3501601342077169,0.347001223990208,0.3452544704264099,0.3371255214258627,0.0,2.3485243705728784,54.97665655356159,176.55078340943174,265.1197249073415,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95740,45234,428.2953833298517,6026,61.656569876749536,4738,48.84060998537706,1871,19.082932943388343,77.32698317968122,79.68703809938646,63.31555014592704,65.06144573230421,77.09088582894627,79.45573304022496,63.22657560526129,64.97759105051536,0.2360973507349513,231.3050591614996,0.0889745406657525,83.85468178884992,158.13864,111.2860673995866,165175.09922707334,116237.79757633863,399.92181,263.1641900612637,417092.166283685,274249.61711034575,379.49962,184.22937665725487,393044.9550866931,189793.2070687441,2728.6938,1260.3618705688384,2814191.142678086,1280534.9074390314,1114.48508,498.7936647557455,1145241.7275955714,502171.4369185024,1834.69786,780.2307555338716,1873105.0135784417,777011.1229920327,0.38182,100000,0,718812,7507.95905577606,0,0.0,0,0.0,34561,360.3091706705661,0,0.0,34723,359.2542302068101,1572341,0,56425,0,0,0,0,0,66,0.6893670357217464,0,0.0,2,0.0208899101733862,0,0.0,0.06026,0.1578230579854381,0.3104878858280783,0.01871,0.3378058405682715,0.6621941594317285,24.280756530203217,4.278610398613179,0.3262980160405234,0.2363866610384128,0.2171802448290418,0.2201350780920219,11.208202193925413,5.827599519774191,20.01382763090518,12194.875902880964,53.816089247934194,13.51339057236793,17.524779693648522,11.301752704011118,11.476166277906623,0.5637399746728577,0.8017857142857143,0.6752910737386805,0.5811467444120505,0.1255992329817833,0.7120743034055728,0.9263657957244656,0.8374384236453202,0.6752136752136753,0.1385281385281385,0.508125362739408,0.7267525035765379,0.6175438596491228,0.5534591194968553,0.1219211822660098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.004603435338971,0.006739337839758,0.0090417750325097,0.0112789219425375,0.0132885290972964,0.0154586613370314,0.0178020946042504,0.0200318874943788,0.0221287397263078,0.0243719957774338,0.0267612429042158,0.0288533689674667,0.03098356604473,0.0330919518887582,0.0349780418496512,0.0369825854678731,0.0390037447744318,0.0412015383016318,0.0432255039849976,0.0583494284073706,0.0726802883357919,0.0862699868938401,0.0982748289021351,0.1104048070841239,0.1245849635190863,0.1369383512240655,0.1483271929637753,0.1597237811200547,0.1698190171536529,0.1822278279055226,0.195162635529608,0.2055350593663956,0.216421748312197,0.2261047625338529,0.2366262442636398,0.2462409794678165,0.2553555740769941,0.2637318943481965,0.2718249647568509,0.2786315679757258,0.2851536875644269,0.2918321144523332,0.2970462210593276,0.3033351172521163,0.3083593393445252,0.3128297016552432,0.3165148716642252,0.320519635425445,0.3248131815901349,0.3236949846468782,0.3218208848388074,0.3202045387313527,0.3193898207056102,0.3195338397276768,0.3172186445875498,0.3147801832070747,0.3154160713405922,0.3168956325610006,0.3175319118590886,0.3192544491644366,0.3212656277774486,0.3222063698543913,0.3232323232323232,0.3239619377162629,0.3257159236000729,0.3269805148627506,0.3302271586345381,0.3314181614349776,0.332541473650869,0.3342553963359332,0.33882987157127,0.3414099674430253,0.3411222020568663,0.340930319447039,0.3445842643772786,0.3399696048632218,0.3392425463336019,0.3329649074329925,0.3320433436532508,0.0,2.542876262754617,56.40957715450441,177.22404369090626,255.79160750662615,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95773,45184,428.65943428732527,5890,60.44501059797647,4656,48.176417153059845,1863,19.076357637329934,77.39144353273707,79.73088185188016,63.36142006586866,65.0874321336049,77.16696912302163,79.50911243631796,63.27805309073244,65.00786189424491,0.2244744097154409,221.7694155621928,0.0833669751362151,79.5702393599953,159.23732,112.00678139505813,166265.3566245184,116950.26927741444,400.71011,263.3930243861204,417947.8663088762,274570.20703759976,380.76403,183.9629255475224,395683.52249590174,190401.5005247296,2680.4532,1223.608919117893,2774432.877742161,1253289.8824490122,1155.36305,509.2662034435631,1193676.5163459429,519063.7898401037,1831.40634,764.6021724812518,1877492.8006849529,766933.5842067605,0.38057,100000,0,723806,7557.516210205382,0,0.0,0,0.0,34578,360.59223371931546,0,0.0,34838,361.9391686592255,1571354,0,56420,0,0,0,0,0,66,0.6786881480166644,0,0.0,0,0.0,0,0.0,0.0589,0.1547678482276585,0.3162988115449915,0.01863,0.3266526588007111,0.6733473411992889,24.36323211140178,4.460495298933605,0.3069158075601375,0.2330326460481099,0.2291666666666666,0.2308848797250859,11.316404479143102,5.714482009681675,19.662143557910035,12110.394993704913,52.70528828510493,12.944936118394128,16.29167104721415,11.702086405381674,11.76659471411497,0.5659364261168385,0.7926267281105991,0.7193841847445767,0.5613870665417057,0.1376744186046511,0.7308943089430894,0.9240506329113924,0.8835978835978836,0.6751054852320675,0.1818181818181818,0.506713368359603,0.717391304347826,0.6603235014272122,0.5289156626506024,0.1263157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780657702899,0.0043069813634382,0.0067977516690002,0.009028955627101,0.0112149342660471,0.013201286540184,0.0151823925005094,0.0174566898606321,0.0196446996087405,0.0217013178358025,0.0239344262295081,0.0261203217334208,0.0281542524223959,0.0304025194775789,0.0322657127836135,0.0341504230066007,0.036109041231992,0.0380837801678092,0.0402386669577239,0.0422001145893015,0.0564277065675754,0.0710347064547518,0.0847302939386945,0.0981470575863374,0.1106155500727525,0.1259636025251937,0.13800307545469,0.1489425081918379,0.1598231543875012,0.1699110301211276,0.1824434876210979,0.1936621241617997,0.2054693274205469,0.2148124679070479,0.2239578752968076,0.2347851104324348,0.2442618747700848,0.2529683340260382,0.2609267319550236,0.268470426724631,0.275422112817668,0.2825225814744271,0.2886973383940501,0.2942338782108856,0.299417828987265,0.3051085191200354,0.3104546988042134,0.3151510527921879,0.3190272927176303,0.3230132799325463,0.3215039170104409,0.3205052515960733,0.3191967736042606,0.317847882454624,0.3172859067955989,0.3154548642344224,0.3139527549121645,0.3150297521741973,0.3154822680552719,0.3166963332146671,0.3174395331001328,0.317624770587887,0.3188430063416982,0.3204087565126003,0.3236051915528907,0.3242495432002088,0.3238217286060088,0.3282346646523778,0.3311871085778622,0.3333995628849592,0.3341093764265498,0.3377953175830622,0.3399052132701421,0.3389223382364149,0.3405071582296248,0.343269569299378,0.3449310137972405,0.3530115676106901,0.3626047014320454,0.3656884875846501,0.0,1.7304040876975268,54.52400612006837,172.38115089590656,259.03952900260566,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95727,44996,426.755251914298,5832,59.74281028341011,4562,47.0818055512029,1775,18.14535084145539,77.37264048070351,79.7321268775193,63.34029949113111,65.08182619856868,77.15227318725228,79.5149999231617,63.25834538555421,65.00406403183975,0.2203672934512326,217.1269543576102,0.081954105576905,77.76216672893099,159.72198,112.4221298513325,166851.54658560283,117440.3562749616,400.74921,263.2782057908009,418064.2556436533,274456.9095352417,374.3811,181.4601689311017,387423.85116006975,186740.98585973372,2634.86712,1198.976734060805,2721567.1231731903,1221582.3895670031,1096.80007,476.5361394239952,1131725.2394831134,483774.3681761629,1740.76666,724.49810628599,1782298.327535596,725456.8724450014,0.37979,100000,0,726009,7584.161208436491,0,0.0,0,0.0,34603,360.86997398852986,0,0.0,34263,354.3096514045149,1567247,0,56203,0,0,0,0,0,79,0.8252635097725824,0,0.0,0,0.0,0,0.0,0.05832,0.1535585455119934,0.304355281207133,0.01775,0.3380189604445897,0.6619810395554102,24.52289463798839,4.465470326383644,0.3145550197281894,0.2314774221832529,0.2281893906181499,0.2257781674704077,11.405899458008683,5.840602201617839,18.74195853126209,12039.243226351631,51.47113127410088,12.489726842338232,16.30177961628684,11.576266350252144,11.103358465223664,0.5611573871109162,0.7878787878787878,0.7073170731707317,0.5802113352545629,0.1058252427184466,0.724429416737109,0.912568306010929,0.8847184986595175,0.6962025316455697,0.1352657004830917,0.5039952648712637,0.7217391304347827,0.6450094161958568,0.5460199004975125,0.0984204131227217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468354430379,0.0044490387441346,0.0063909431206062,0.0087646246343841,0.0109304619264049,0.0131420892969847,0.0153000897007257,0.0174539664393908,0.0193911763503291,0.021660575909263,0.0237968298234461,0.0258932238193018,0.0278968853790706,0.029877031452759,0.0317974537275859,0.0341901543104606,0.0361960967023865,0.0382744349593917,0.0402752226830054,0.042370145087542,0.0566025915445898,0.0707215502448415,0.0843101893597835,0.0965219310692775,0.108824676625307,0.1234841997314641,0.1349972421400992,0.1461761137481109,0.1574495354053188,0.1670581169632036,0.1802899112604462,0.1925844179731031,0.2038761038848044,0.2142286870454421,0.2239140958500198,0.2342332362161982,0.2430969441282171,0.2515534942363112,0.260019306115496,0.2673224194066125,0.2750303801863318,0.2819153914549113,0.2886970321419266,0.2938650159552772,0.2982070139184343,0.3040653012909828,0.3090510766149223,0.3131152544959683,0.3174001371617862,0.3212261041529334,0.3207407606649093,0.3199752628324057,0.3191585168507704,0.3178412093385888,0.3161638059036645,0.3140474368783473,0.3119210950589574,0.3120448730564849,0.3130377008126203,0.3137415304725152,0.3146421511953157,0.3165870629164455,0.3174967644971402,0.3176234979973297,0.3188846337960747,0.3196279599979273,0.3211790331249469,0.3244843272885898,0.3255676483883306,0.3286672156216915,0.3332432310672613,0.3339829347940588,0.3362765357880894,0.3363306634426477,0.3372461337805105,0.3393697083725305,0.3441479684657368,0.344917637605464,0.3468886462882096,0.3509908536585366,0.0,2.281614958426182,51.72470245422902,170.7710255965658,253.51627629265167,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95743,44870,425.55591531495776,6013,61.65463793697712,4695,48.46307301839299,1862,19.103224256603617,77.33281654085012,79.69914968208266,63.319784280511655,65.07093127553648,77.10317776658154,79.46861222159778,63.23497510479138,64.98768638370792,0.2296387742685794,230.53746048488225,0.0848091757202738,83.24489182855643,158.14744,111.17087217101152,165178.885140428,116113.6285503395,396.58509,260.4820200209556,413659.160460817,271505.9139790226,378.70465,184.1609068499953,391177.8824561587,189006.6911337708,2695.69804,1236.1144868520146,2785233.343429807,1260825.614877343,1126.7395,498.6519121845904,1161315.1770886646,505445.32814216,1821.65154,762.3333901284543,1870721.243328494,770883.5668098886,0.37868,100000,0,718852,7508.131142746729,0,0.0,0,0.0,34263,357.26893872136867,0,0.0,34480,355.9111371066292,1577876,0,56680,0,0,0,0,0,88,0.8982379912891805,0,0.0,0,0.0,0,0.0,0.06013,0.1587884229428541,0.309662398137369,0.01862,0.3377777777777778,0.6622222222222223,24.40590891356061,4.312592617264771,0.3194888178913738,0.2340788072417465,0.2242811501597444,0.2221512247071352,11.360966391072004,5.999001483000233,19.74349674114456,12110.06437969466,53.24264685630203,13.258839635539884,16.844186329049265,11.75045155233111,11.389169339381777,0.5614483493077742,0.7734303912647862,0.6886666666666666,0.5982905982905983,0.1179290508149568,0.7235772357723578,0.8673218673218673,0.8849315068493151,0.7418032786885246,0.1542056074766355,0.5038961038961038,0.7182080924855492,0.6255506607929515,0.5550061804697157,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0043309362733662,0.0067722611432632,0.0091887661235401,0.0116693118463354,0.0141480606258148,0.0163676969987456,0.0184788157223073,0.0204085806016236,0.0226190598089308,0.0245340277635383,0.0264403577406072,0.0284915224611082,0.0304734245785316,0.0323449300482852,0.0342019038956475,0.0363907500802584,0.0382611763729193,0.0401767611125552,0.0422522006354497,0.0573749099602259,0.0712880816873116,0.0841189115503591,0.096226831652982,0.1078200925467213,0.1237681343315146,0.1363409797121737,0.1475662845525859,0.1584917752616962,0.168607768697853,0.1818123088849649,0.1943071047592258,0.2051413099031111,0.2154438212688729,0.2247459193101324,0.2353918214131481,0.2443281366826993,0.253283661042893,0.2620288078455409,0.2691660273219664,0.2761426372379949,0.2828529955751176,0.2904387377996778,0.2960569695371225,0.3007194419463821,0.3053067870623936,0.3110582341891045,0.3153078626517677,0.3197709073003861,0.3233355785358638,0.3223542407587024,0.3213386011040293,0.3204504771167209,0.3188441412009598,0.3184590212702662,0.3167948285898103,0.3139225679825255,0.3139580667388522,0.3143417797116287,0.3153927037479282,0.3153569690389727,0.3158945371175587,0.3164403339540917,0.3178266886914594,0.3185912989165685,0.3199708264957933,0.3194416749750747,0.3207191350264018,0.3241582698451708,0.3279326503057739,0.3290275629946329,0.3319352269710645,0.3342963009483137,0.3393548387096774,0.3436973215958044,0.347512702351412,0.3467619337184555,0.3549687562991332,0.3545904343045629,0.346743295019157,0.0,2.186889477935673,53.747759067198494,181.21800371746576,255.5458386851384,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95785,45187,427.7078874562823,5891,60.312157435924206,4695,48.48358302448192,1877,19.26188860468758,77.34910350822409,79.6786529846833,63.34642956891118,65.0671309391283,77.11162235103787,79.44153937523659,63.25745595782613,64.98079396053308,0.2374811571862238,237.113609446709,0.088973611085052,86.33697859522727,159.97916,112.52735908752888,167019.0113274521,117479.1032912553,401.42435,263.4854001132567,418587.7955838597,274578.8694610396,383.84013,186.31786187434244,397183.97452628287,191819.49122391504,2697.08752,1244.471342909139,2786135.031581145,1269596.7666222667,1091.12621,488.07521817817735,1125468.3092342224,495880.1776668337,1837.6423,778.7271259331069,1887044.1509630943,785722.7858037914,0.38047,100000,0,727178,7591.773242156914,0,0.0,0,0.0,34595,360.6410189486872,0,0.0,35071,362.6559482173618,1566285,0,56296,0,0,0,0,0,74,0.7725635537923474,0,0.0,0,0.0,0,0.0,0.05891,0.1548348095776276,0.3186216262094721,0.01877,0.3417190775681342,0.6582809224318659,24.45231646542308,4.431474338170902,0.3288604898828541,0.227689030883919,0.222790202342918,0.2206602768903088,11.28127996506746,5.865073896395336,20.072935241142723,12101.233617443411,53.414240246858725,12.81533321256091,17.443766789847135,11.659147473300251,11.495992771150435,0.5584664536741214,0.7839101964452759,0.6845854922279793,0.5755258126195029,0.1206563706563706,0.7220496894409938,0.9256410256410256,0.837772397094431,0.728744939271255,0.180672268907563,0.4966245964191371,0.7025036818851251,0.6286472148541115,0.5281602002503129,0.1027568922305764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0046929322210847,0.0070609002647837,0.0092838061573777,0.0114593077642656,0.0138543914654505,0.0161030595813204,0.0182476909731081,0.0203333026801132,0.0223752327556219,0.024587140925296,0.026628494027829,0.0287646315270227,0.030774931296767,0.0330130320026393,0.0354475877668639,0.0374367517564645,0.0394852811563546,0.0412402198647146,0.0433288557058511,0.0576258805113488,0.0719261180604945,0.0854285055253832,0.0981313322402993,0.1101614535030773,0.1245878424078457,0.1366546533813864,0.1474013336311138,0.1578295765027322,0.1680684874264713,0.1810226991421898,0.1926183859072378,0.2040814107721411,0.2147941610628178,0.2240595878579837,0.2344667183519769,0.2442244592754626,0.2528504284075831,0.2606475913866261,0.2682449372087965,0.2756662348477838,0.2823026970104721,0.2891992661419187,0.2950375687562165,0.3003169668338535,0.3051647823245835,0.3095574888902798,0.3138962080421583,0.3192021566137017,0.3226147382883716,0.3214107626581852,0.320615418520406,0.319949281487743,0.3179657588672975,0.3171390815008389,0.3146887382770069,0.3123823682920271,0.3128997343304142,0.3128753753753753,0.3141500508737794,0.3143835872861368,0.315131617981528,0.3167441665619371,0.3169274155643591,0.3182825751734772,0.3194135939582407,0.319035772497212,0.323016123932975,0.3269603866097569,0.3312836893591535,0.3349030724213606,0.3360874200426439,0.3395686199656423,0.3402330573443728,0.344106463878327,0.3502348548717331,0.3549138332557056,0.353217568947906,0.3575186928828579,0.3547244094488189,0.0,2.077733779615877,56.6444783926834,170.7465326760313,260.35477652408423,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95665,45187,427.9726127632885,6003,61.41221972508232,4712,48.659384309831175,1859,19.097893691527727,77.31532774038504,79.70800963311507,63.31028192710126,65.07664815695136,77.08608916944087,79.4790707176216,63.22388452598688,64.99273121307448,0.229238570944176,228.93891549347245,0.0863974011143753,83.91694387688631,157.89444,111.11375076394532,165049.32838551197,116148.80130031392,398.87368,262.3414651248561,416369.66497674177,273650.57766670786,381.88913,185.8294234453746,395349.9189881357,191287.10177130357,2691.33684,1236.0713873648472,2781733.340302096,1260523.4384203702,1092.82035,485.0103746787833,1130032.279308002,494679.77283100673,1820.50304,767.4916510537561,1871439.8578372444,775402.1064966235,0.37984,100000,0,717702,7502.242199341452,0,0.0,0,0.0,34385,358.8146134950086,0,0.0,34850,360.41394449380647,1574227,0,56465,0,0,0,0,0,80,0.8362515026394187,0,0.0,0,0.0,0,0.0,0.06003,0.1580402274641954,0.3096784940862901,0.01859,0.3355948248658883,0.6644051751341117,24.547568490663654,4.364573151831576,0.3249151103565365,0.2376910016977928,0.2171052631578947,0.2202886247877759,11.248703825109548,5.861053254799381,19.76563273543016,12138.786027076709,53.33035788341659,13.445692480104436,17.195267828367307,11.334601279279989,11.35479629566484,0.5519949066213922,0.7696428571428572,0.6923579359895493,0.5610948191593352,0.1011560693641618,0.7086614173228346,0.9014423076923076,0.848404255319149,0.6908396946564885,0.1157407407407407,0.4941894247530505,0.6917613636363636,0.6415584415584416,0.5164257555847569,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.005018349925992,0.0073981611155087,0.0096214414890374,0.011871337890625,0.0141991341991341,0.0162274081024846,0.0185281650579643,0.0206677915835762,0.0229074077866754,0.0251881935470637,0.0270980996404725,0.0291960290108533,0.0310777252259214,0.0330928271348795,0.0351857023177883,0.0373118090165887,0.0394092248930958,0.0413481042284287,0.043420257228024,0.0579446673353393,0.0718182294120726,0.085615324061926,0.0982742291907818,0.1102210965120574,0.1251018874315898,0.1368728431112291,0.1485986982967073,0.1590598144426867,0.168967219801215,0.1818211213865356,0.1943108974358974,0.2054382966680092,0.2152987524622455,0.2253364463337812,0.2349202475763693,0.2440040661758956,0.2529206527855937,0.2610132158590308,0.2687030775402602,0.2753755806006973,0.2823595518771291,0.2890451999478963,0.2952407238515816,0.3006380263717567,0.3054134355775276,0.3106453309293066,0.3153662136712984,0.3198016854150755,0.3236897329972151,0.3220364086820703,0.3204212265124923,0.3192756663897376,0.3181180689096771,0.3171938373768738,0.3153978073130397,0.3137202164351486,0.3131734957911631,0.313854548554864,0.3159461097052429,0.3175516609992153,0.3185341512001736,0.3187793034159411,0.3189499296827912,0.3209998079139454,0.3215614834092388,0.3227427135965288,0.3247150929696625,0.3282109121669251,0.329344661162299,0.3332115454877603,0.3385073357431427,0.3422865449029893,0.3463751438434982,0.34967815221507,0.3501903855306996,0.3518856447688564,0.3575563984827311,0.3585941790225151,0.3628787878787878,0.0,2.2866048374047243,55.510938055213245,174.84591472582215,257.4358204280548,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95629,45037,425.885453157515,5866,60.211860418910575,4646,48.01890639868659,1850,18.92731284443004,77.3146043072854,79.7335418121324,63.296484254502126,65.08282167535233,77.0817093015994,79.50381135684611,63.20848971000333,64.99901639502579,0.2328950056860037,229.73045528628688,0.0879945444987981,83.8052803265441,160.00248,112.43940346049864,167315.85606876574,117578.77156563246,399.3022,262.7414384198434,416983.87518430606,274181.2090682151,377.2713,183.75555125040745,391468.6758200964,189778.17018647984,2682.66596,1238.73286497226,2773200.221690073,1263479.3127088335,1125.45038,498.54319072441785,1164587.6564640433,509064.16824775335,1820.90784,773.9133586406211,1865080.5090506016,775326.2449872853,0.37927,100000,0,727284,7605.266184943897,0,0.0,0,0.0,34417,359.30523167658345,0,0.0,34545,358.1863242321889,1563318,0,56112,0,0,0,0,0,57,0.5960534984157525,0,0.0,1,0.0104570789195746,0,0.0,0.05866,0.1546655416985261,0.3153767473576542,0.0185,0.3380487804878049,0.6619512195121952,24.454819516986344,4.420886093282186,0.2996125699526474,0.2425742574257425,0.2257856220404649,0.232027550581145,11.202471822843224,5.702416052007533,19.80690347214672,12096.071465933786,52.65611238358037,13.535923663579885,15.606324611374273,11.631630259862678,11.882233848763546,0.5482135170038743,0.7852706299911268,0.6910919540229885,0.5586272640610105,0.1057513914656771,0.6996830427892234,0.8971291866028708,0.8260869565217391,0.7016806722689075,0.1554621848739495,0.491725768321513,0.7193229901269393,0.642578125,0.5166461159062885,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025939023031015,0.0047662025534676,0.0069639014090226,0.0090738200477569,0.01129150390625,0.0136585862701161,0.0157689130057832,0.0181325978138727,0.0202820877356271,0.0224472867661365,0.0245948717948717,0.0267180277349768,0.0286719545693034,0.0309727674569565,0.0332896353107548,0.0352999565729884,0.0373735908488063,0.0396698504983388,0.0420975965040058,0.0442010846891948,0.0584724414387105,0.0726392759119193,0.085795896078802,0.0980829762819635,0.1098502042669087,0.1254474213703272,0.1365635490587685,0.1481998593140494,0.1585445441804234,0.1680723732983786,0.1804998057749579,0.19289345603937,0.2044481251838856,0.2144406705379642,0.2243705630759733,0.2342305344358732,0.2433888454230468,0.2520365508771534,0.2606838092424466,0.2686395962376692,0.2763915102532334,0.2826402377664927,0.2885366604323019,0.2938934043012299,0.2993358345778846,0.3044094274766838,0.3093886025916846,0.3136736380395397,0.3173190140389467,0.3209150154349489,0.320176619460449,0.3186131587633403,0.3176303143891887,0.31596910884216,0.3146764688374308,0.3122018559705499,0.3104754958697341,0.3113934048575001,0.3131041338177829,0.3146724359891288,0.3159234238449014,0.3161076865509975,0.3180841969182009,0.3187011425135297,0.3201644320164432,0.3218497827436375,0.3223633945499307,0.3257785952551673,0.3290133779264214,0.3319659198485327,0.3361629114552761,0.3400179428993614,0.3434426229508197,0.3455469579729934,0.3487304413004778,0.3549272250059652,0.3594669972110319,0.367047308319739,0.3660542911982451,0.3670935195964299,0.0,2.1229565945667326,55.41064544705501,170.4002550387916,255.29218369452863,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95639,45500,432.072690011397,6031,61.9098903167118,4730,48.80854044898002,1843,18.82077395204885,77.29129418892526,79.69191994968165,63.29829466637945,65.07015324463869,77.05611480324454,79.46031945890824,63.21025649144714,64.98639607872663,0.2351793856807233,231.6004907734026,0.0880381749323078,83.75716591206128,157.47974,110.85768436923864,164660.58825374587,115912.63435339,400.87767,263.31615616703283,418490.0093058272,274655.8895084985,388.76194,188.9995957420436,402479.3755685442,194472.2637918044,2685.24684,1239.9949556067495,2771874.4027018263,1260721.1238163828,1108.33213,494.0891820793242,1140135.6664122378,497884.1289425062,1799.23166,764.1352339654917,1839203.2329907257,763487.9095662524,0.38293,100000,0,715817,7484.572193352084,0,0.0,0,0.0,34546,360.5223810370247,0,0.0,35444,366.76460439778754,1572918,0,56477,0,0,0,0,0,83,0.8364788423132823,0,0.0,0,0.0,0,0.0,0.06031,0.1574961481210665,0.3055877963853424,0.01843,0.3334914611005692,0.6665085388994307,24.605515996141627,4.357558956416156,0.3150105708245243,0.246723044397463,0.2255813953488372,0.2126849894291754,11.146605125873954,5.765550577530137,19.8370810504698,12238.332478288983,53.83272574249515,14.077209971712374,16.739299272122985,11.931263974858055,11.08495252380172,0.5670190274841438,0.7883461868037703,0.6959731543624161,0.5660731021555764,0.1202783300198807,0.7323943661971831,0.9302884615384616,0.8297872340425532,0.7376425855513308,0.1928251121076233,0.5057937427578215,0.7097203728362184,0.6508078994614004,0.5099502487562189,0.0996168582375478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020562584200237,0.004369867180371,0.0067598428793276,0.0090844426379432,0.0112932271159539,0.0133523450628914,0.0157534106898872,0.0180325525353809,0.0203766563062326,0.0225052730735363,0.024643120846665,0.0266933703076054,0.0287536649349313,0.0306555654019743,0.0326736659543497,0.0347727155194704,0.0367802512125357,0.0387386826148351,0.0410471443881426,0.0429121010873984,0.0574041174626397,0.0715228458299289,0.0854088789953379,0.098866399317945,0.1113796597289652,0.1273537474729299,0.1399634804025648,0.1509070186090606,0.1610395997263085,0.1707982178324118,0.1833610074828024,0.1952093733418519,0.206631542279892,0.216442016052208,0.22679173739556,0.2370350649494714,0.2462903369983016,0.2552858526040846,0.2641779352157771,0.272113676731794,0.2799249921866861,0.2860569048621835,0.2927201885384715,0.2977702613555947,0.3029868171425792,0.3087621868443786,0.3138539800278157,0.3187569282519781,0.3228997834627802,0.3271023102310231,0.325811362442238,0.3243820441456088,0.3235356371795053,0.3216529164857432,0.3206496657883376,0.3190133165404641,0.317116888472947,0.3181982812551447,0.3185463143826462,0.3196690485144791,0.3202803510024615,0.3203394535432446,0.3214893572314093,0.3218151260504202,0.3227148146367264,0.322774753184506,0.3232162630248999,0.3249678451548138,0.3290965907095958,0.3339824345268847,0.3362751342007096,0.3397513885215551,0.3432403501038977,0.342972993650065,0.3452876608629825,0.3473254977212761,0.347008547008547,0.3466804979253112,0.3455307262569832,0.3505945531261987,0.0,2.5231305504803787,55.70291356385565,178.80837585665424,257.04467688561726,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95638,45410,430.8747568957945,5902,60.66626236433217,4655,48.16077291453188,1856,19.082373115288902,77.27514686010801,79.68700424415542,63.27600815666828,65.05680791070613,77.04027941646994,79.45205181579051,63.1889778966318,64.97173196985557,0.2348674436380662,234.95242836490604,0.0870302600364851,85.07594085055814,157.91204,111.15147299211937,165114.09690708714,116220.824571885,398.78555,262.23575221818123,416451.4209832911,273675.0030512571,381.15471,184.94040328555985,395534.2018862795,190994.9864969873,2688.0178,1231.5334084462752,2783692.632635563,1260851.784903778,1118.45132,495.77874669134405,1156268.052447772,505285.7435034662,1813.67974,764.6565645353618,1866472.6363997571,773816.1443239909,0.38176,100000,0,717782,7505.186223049415,0,0.0,0,0.0,34403,359.1773144565967,0,0.0,34795,360.7770969698237,1570216,0,56313,0,0,0,0,0,65,0.6796461657500157,0,0.0,1,0.0104560948576925,0,0.0,0.05902,0.1545997485331098,0.3144696712978651,0.01856,0.3350548741123305,0.6649451258876695,24.648256795659368,4.339294602662947,0.3303974221267454,0.235016111707841,0.2150375939849624,0.2195488721804511,11.011519682532516,5.67467898191343,19.81932350622387,12199.193636817829,53.020675134161216,13.225298675396882,17.305434359152503,11.164008413168816,11.32593368644301,0.5602577873254565,0.7815356489945156,0.6723016905071522,0.5944055944055944,0.12133072407045,0.7210231814548361,0.9137055837563453,0.845360824742268,0.7552742616033755,0.1508620689655172,0.5011750881316098,0.7071428571428572,0.6139130434782609,0.5445026178010471,0.1126582278481012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0047940970779319,0.0068997006747501,0.0094362620619603,0.0114626877816088,0.0134939709956004,0.0156320104417343,0.0182846525303468,0.0205187449521024,0.0227924311926605,0.025037695014001,0.0272236033777814,0.0289623951849374,0.0310258101756411,0.0330232029822079,0.0354519686342664,0.0372520160036485,0.0393498805691141,0.0412079335678161,0.0431418351704504,0.0577027591973244,0.0714719812230185,0.0850525210084033,0.0976002865329512,0.1098659681661192,0.1259279655183369,0.1378068218042716,0.1490060224910728,0.1589615170583451,0.1689844169801182,0.1818711745846692,0.1946366219176299,0.2063196215638829,0.2160158777152757,0.2259410070513457,0.2355371900826446,0.245173637147046,0.2540846723235241,0.2621502879646702,0.2699561252383249,0.276725328012436,0.2839436685779951,0.2899260858732663,0.2957985010089363,0.3011875212926461,0.3057753311033487,0.3118071926568691,0.3161931456236463,0.3212607420100215,0.3254632752668545,0.3252530705898231,0.3239312350938142,0.3232809083856407,0.3219824094433515,0.3211519305392426,0.3193458903584729,0.3176809575074409,0.3175205254515599,0.3175377270014494,0.3186403821474404,0.3205973841022373,0.3210215489146537,0.3221854582007036,0.3226527737405809,0.3245004448505542,0.3266066034788042,0.3275763956068969,0.3302406038685327,0.3322560247312583,0.3360057151928877,0.3373012267151294,0.3393730074388948,0.3432639237330657,0.3490694507489786,0.3533277011170562,0.3589011773100249,0.3645561858040779,0.3686027619821283,0.3680154142581888,0.3682600382409178,0.0,1.903600510223567,55.34959083350939,173.44639896100287,257.533912352682,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95680,45075,427.7069397993311,6077,62.10284280936455,4823,49.75961538461538,1965,20.077341137123742,77.28391542799022,79.68108377850248,63.28504443165552,65.05955768509956,77.02890280905044,79.42965126517839,63.188840300811705,64.9676810860203,0.2550126189397872,251.43251332409025,0.0962041308438159,91.8765990792565,158.32674,111.48349905948778,165475.27173913046,116517.03497020045,399.44124,262.12639613198564,416846.25836120406,273331.58040550334,382.83689,186.6307488755376,396577.1634615385,192248.86940337933,2763.38588,1282.8888503623148,2854049.623745819,1306707.41049573,1143.27254,506.6790613594895,1182804.7554347827,517468.76187237626,1923.6591,823.3269278371039,1968812.37458194,825543.4834752458,0.3809,100000,0,719667,7521.603260869565,0,0.0,0,0.0,34525,360.15886287625415,0,0.0,35030,362.5209030100334,1570858,0,56377,0,0,0,0,0,61,0.6375418060200668,0,0.0,0,0.0,0,0.0,0.06077,0.1595431871882383,0.323350337337502,0.01965,0.3440287994991391,0.6559712005008609,24.33650869035502,4.368828619556573,0.3238648144308522,0.22911051212938,0.2241343562098279,0.2228903172299398,11.243137653633266,5.801685272694498,21.228153574769483,12173.518674800776,54.93943297557529,13.263646450253528,17.78071265724063,11.972321504826407,11.922752363254723,0.5525606469002695,0.7782805429864253,0.6971830985915493,0.5541165587419057,0.1088372093023255,0.7103235747303543,0.9285714285714286,0.8523002421307506,0.6808510638297872,0.1352459016393442,0.4944680851063829,0.6909871244635193,0.6414273281114012,0.5189125295508275,0.1010830324909747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.0046048360921778,0.007025594688163,0.0093494984807064,0.0113447900450739,0.0132731643712818,0.0153908919373756,0.0172713159292396,0.0197085144464331,0.0222090188284947,0.0242423620657816,0.0262319674489334,0.0281642313233175,0.0304229532525352,0.0327329032258064,0.0347067096880946,0.0365465717512719,0.0386272331855788,0.0405592368746814,0.0424722497264057,0.057726660189915,0.0713089180643675,0.0850326927719062,0.0979996001304837,0.1099617909691583,0.1257013402214647,0.1379083301474024,0.1495840744725041,0.1603716097029046,0.1702020310453657,0.1830579002403975,0.1942488135740134,0.2056719051197438,0.2164012355144691,0.2259088604246125,0.2365081655990141,0.2457370321916965,0.2544099910954812,0.2622622850192673,0.2697982880877527,0.2769402050378067,0.2849971263356674,0.2918813056379822,0.2978002570972043,0.3028549852622347,0.3083516537805992,0.3130972385944671,0.3171682678830814,0.321311858076564,0.324393561251304,0.3233181015541806,0.3220142933862106,0.3204277441988249,0.3187467483669576,0.3174971721140679,0.316644923643619,0.3141674333026679,0.3151859639900118,0.3161742048139144,0.3166371396360122,0.3172566871073323,0.3176659975753721,0.3200582499683424,0.319878433138226,0.3206617985978021,0.3219485323050287,0.3241706431979884,0.3280055594162613,0.3300165254386273,0.3339547059056836,0.3377818264632202,0.3411608799363901,0.342732103782432,0.3463875759621877,0.3495172669884887,0.3508751321508281,0.3494599117602312,0.3497884344146685,0.3495550611790878,0.3460949464012251,0.0,2.5388166672148875,56.58019979085406,183.1547047097328,262.7529039165584,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95667,45078,428.42359434287687,6028,61.9649408887077,4720,48.8674255490399,1849,19.00341810655712,77.35161970545354,79.75576445296505,63.31721993396855,65.09351243773843,77.12055870603187,79.52601903291767,63.233077392286646,65.01228444137708,0.2310609994216719,229.7454200473794,0.0841425416819063,81.22799636134914,159.15064,111.85050729874668,166358.97435897437,116916.49920949408,398.72594,261.7512327138726,416306.8769795227,273128.2393237717,380.97771,184.43019530444653,395522.3431277243,190678.24381261136,2703.3754,1231.70826014063,2797978.404256431,1259686.6319008952,1105.46629,486.7154675271647,1138091.557172275,491352.739043052,1810.18794,750.373097437651,1860546.478932129,756437.6612450427,0.38053,100000,0,723412,7561.771561771561,0,0.0,0,0.0,34447,359.57017571367345,0,0.0,34848,361.4935139598817,1572240,0,56370,0,0,0,0,0,49,0.5121933373054449,0,0.0,1,0.0104529252511315,0,0.0,0.06028,0.1584106377946548,0.3067352355673524,0.01849,0.3283841415258253,0.6716158584741747,24.431838422397693,4.379515215899973,0.3186440677966101,0.2421610169491525,0.2235169491525423,0.2156779661016949,11.25996559256542,5.805206791936814,19.635078555532328,12125.56668942516,53.43888558498029,13.665116505366877,16.976666409500655,11.580955359136134,11.216147310976604,0.5697033898305085,0.7891513560804899,0.6928191489361702,0.5933649289099526,0.1168958742632613,0.7451456310679612,0.9387254901960784,0.8567774936061381,0.7457627118644068,0.1343283582089552,0.5074626865671642,0.7061224489795919,0.6352201257861635,0.5494505494505495,0.1126070991432068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884276755048,0.0043705318663489,0.0065967077354009,0.0088799479801674,0.010995941368542,0.0133326543084131,0.0153265691123234,0.0172059919739408,0.0194069529652351,0.0214585680630953,0.0233703346533434,0.0257927944591733,0.0278160824912013,0.0296707148601002,0.0317516061726609,0.0339247840256582,0.0359856140459977,0.0380786280066855,0.0399508936931688,0.0419994578024315,0.0565801159814011,0.0699619931105969,0.0824656786598933,0.0951504119361525,0.1068605620574299,0.1229626180093984,0.1355090081003896,0.1476133130135453,0.1586396508194616,0.1694533036951129,0.1825377141809633,0.1955975387815235,0.2071664145069824,0.2167365298952598,0.226531016714012,0.236255819108845,0.2464925606541262,0.2558723227048138,0.2640843471944797,0.2715803452855245,0.2781594042002035,0.2850866943964107,0.2910021634530129,0.2961637440900114,0.3011644832605531,0.3060405822781695,0.3109804068482373,0.3150938844947757,0.3201627486437613,0.3240458015267176,0.3232210543294174,0.3226293606447095,0.3214145106861642,0.3198846431146359,0.3180597789809389,0.3155175049686592,0.3140392726813162,0.3139858993277586,0.3149368385114373,0.3151190794755151,0.3157086112568388,0.3163794975033059,0.3169960639812411,0.3175350165045945,0.318752395553852,0.3204918670713674,0.3227290802704085,0.3270816998588678,0.3297076105204253,0.3331619740588421,0.3344675831405109,0.3353488616646511,0.3393136213039945,0.3377498485766202,0.3380703066566941,0.3410603899191631,0.3432307692307692,0.3487386478304742,0.3505965292841648,0.3468077068379297,0.0,1.7796248374763468,54.77866529948353,177.4490600744237,261.0135166985102,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95782,45126,427.07398049737947,5961,61.02399198179199,4669,48.0674865841181,1776,18.082729531644777,77.3507064425629,79.67823561645558,63.34838135415546,65.06967784331579,77.13168875974448,79.46486989294925,63.26599424298356,64.9927052808723,0.2190176828184178,213.3657235063282,0.0823871111718972,76.97256244348694,158.69348,111.60361866835952,165681.9444154434,116518.36322937456,397.66653,262.0107843527898,414535.6329999374,272907.03427476075,381.79733,185.64116670524535,394592.5330437869,190779.2034936475,2685.16032,1235.7066348098235,2766011.9437890206,1253190.108722209,1108.64117,489.867096453181,1142602.90033618,496707.9015242216,1738.2097,729.6961347805706,1771873.3164895284,725486.294467578,0.38047,100000,0,721334,7530.997473429245,0,0.0,0,0.0,34270,357.09214674991125,0,0.0,34885,360.15117663026456,1575867,0,56515,0,0,0,0,0,80,0.8352300014616525,0,0.0,0,0.0,0,0.0,0.05961,0.1566746392619654,0.2979365878208354,0.01776,0.3298127700432069,0.6701872299567931,24.39187713052253,4.300475420307718,0.3242664382094667,0.2383808095952024,0.2225315913471835,0.2148211608481473,11.298968717000518,5.965006151141832,18.84390395604868,12149.515381532272,52.97405302680077,13.386140287283176,17.079424410653488,11.50326755325092,11.005220775613193,0.5733561790533305,0.7852650494159928,0.7093791281373845,0.5967276227141483,0.1086739780658025,0.7517956903431764,0.9097222222222222,0.8938992042440318,0.7347826086956522,0.2009345794392523,0.507903981264637,0.7063142437591777,0.6481970096745823,0.5574783683559951,0.0836501901140684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0046025952960259,0.0070727673089997,0.0092637737688932,0.0113775012201073,0.0133771773544952,0.0155007949125596,0.0177771427988284,0.0200190073270179,0.0218993041342611,0.0242023075189048,0.026288247244967,0.0281999897230358,0.0304914455127545,0.0327400593961392,0.0345258634048575,0.0368067052980132,0.0389603657588355,0.0410958904109589,0.0431962519521082,0.0573822666986674,0.0711036754326344,0.0843379809204319,0.0968345384227341,0.1088193756455386,0.12448334548991,0.1364200345716194,0.1477831463783231,0.1584813802528185,0.1683154521387766,0.1807652978849362,0.193735611685743,0.2058612596166384,0.2159463357077306,0.2258504298876355,0.2361797926830617,0.2459602826130563,0.254277465089369,0.2616983420029692,0.269102723975792,0.2759755632802485,0.2838191330343796,0.2905152127898589,0.2958373738462091,0.3004598565829865,0.3051239750818703,0.3111574843490322,0.3160449895151553,0.3208879919273461,0.3245129934275516,0.3235337588176016,0.3214339695233384,0.3202104907699235,0.3194233796998454,0.3185158790254331,0.3164702280728608,0.3149256093700538,0.3155075821052459,0.316097944397929,0.3174110171004248,0.3180777602642047,0.3189730200174064,0.3195761644985312,0.3213781037615234,0.3233851185609158,0.3246163482618227,0.3260540231527797,0.3299011402040365,0.3325820538103958,0.3384627587848021,0.3413509812870835,0.3439871726349546,0.3469013103753877,0.3513969910961007,0.3519268821256949,0.3519180366928758,0.3533962556088503,0.3544984488107549,0.3563186039966226,0.3679467084639498,0.0,2.5918208013991424,54.289075929401314,174.89229215124206,256.26770538770484,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95730,45384,429.8652460043873,6026,61.7361328737073,4752,49.00240259061945,1900,19.429645879034783,77.31652017658898,79.67832673041993,63.31665033110207,65.06282986825377,77.08147664761185,79.44508316706374,63.22918736389848,64.97900625987675,0.2350435289771297,233.2435633561829,0.0874629672035851,83.82360837701697,157.43926,110.7781697448484,164461.77791705838,115719.38759516182,397.85706,261.73247992258166,414966.1130262196,272769.74816941575,384.23318,187.16400442558628,397726.0315470594,192700.08897932875,2725.47532,1248.3113873817435,2813248.929280268,1270196.6649762285,1140.98782,499.53532200535096,1178856.7220307114,508793.8761154811,1862.45342,778.0361805843208,1907730.3457641285,780595.6740071877,0.38207,100000,0,715633,7475.53535986629,0,0.0,0,0.0,34365,358.32027577561894,0,0.0,35081,362.686723075316,1576760,0,56600,0,0,0,0,0,76,0.79389950903583,0,0.0,1,0.010446046171524,0,0.0,0.06026,0.1577197895673567,0.3153003650846332,0.019,0.3273358585858585,0.6726641414141414,24.64059674637088,4.332205728324079,0.3146043771043771,0.2344276094276094,0.2218013468013468,0.2291666666666666,11.23167270899105,5.874919939668949,20.262031741063517,12159.307467137189,53.951305736477465,13.442916397714017,16.933920421884068,11.709326486979569,11.865142429899835,0.5608164983164983,0.7944344703770198,0.7010033444816054,0.5654648956356736,0.1248852157943067,0.7429022082018928,0.9277389277389276,0.8903743315508021,0.7233201581027668,0.1320754716981132,0.4945464982778416,0.710948905109489,0.6378233719892953,0.5156054931335831,0.1231470923603192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027653690704105,0.0050790239352804,0.0075006343567622,0.0097848948860461,0.0120849609375,0.0141975434379646,0.016531875618288,0.0184022139844571,0.0207155346059856,0.0230355771691835,0.0249979493068657,0.0270769799464005,0.0292762684326347,0.0313655226385756,0.0333790627868835,0.0355216663567044,0.0374932715001449,0.0396249118293846,0.0416003991642498,0.0433405567594599,0.0575595903068522,0.0718060337159779,0.0854176498348277,0.0976171447800117,0.1097086457245895,0.1250330537427414,0.1364976978081436,0.1480795435189916,0.1591251482482664,0.1691862024569497,0.1815253689540019,0.1938684962340922,0.2058746764686691,0.2158929391441254,0.225039078840184,0.2342014850936495,0.2438362588771271,0.2535498098517068,0.2619769144335864,0.2699841913533576,0.2765268103029321,0.2826295473154755,0.2886245265151515,0.2945155371127715,0.2999282962458831,0.3048873757185503,0.3102044905268167,0.3152822862962255,0.3197115073353274,0.3240699178834526,0.3224685504943027,0.3212159629588799,0.3201971138911638,0.3187427578215527,0.3182637182637182,0.3173287912964753,0.3151846568394357,0.3157357732942764,0.3164411714334646,0.3171836939389597,0.3181374206393929,0.3193435353275394,0.3205392012766136,0.3210659614048456,0.3234274154705712,0.3249628799916643,0.3266801630977161,0.3324017960875435,0.3349921149465568,0.3378158594152882,0.3385105898428604,0.341684434968017,0.3412217594345576,0.3434159654309757,0.3461538461538461,0.3510777658687626,0.3471837488457987,0.3507673667205169,0.3542526837324525,0.3556661562021439,0.0,2.4459824894200426,55.353845464003854,180.81731251721396,257.83571091552267,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95697,45515,430.2329226621524,6078,62.52024619371558,4709,48.82075718152084,1876,19.42589631858888,77.40264542862671,79.78353441270747,63.35728834693722,65.11208810416755,77.17791326506064,79.55355424137706,63.275404360340175,65.02952862855952,0.2247321635660739,229.9801713304106,0.0818839865970417,82.55947560803634,159.66038,112.31567461512302,166839.48295139868,117365.93060923857,402.88937,264.85567794305024,420637.0314638912,276396.6769523081,388.78084,188.87450511343093,402884.1342988808,194843.7539630274,2731.01652,1237.009082985756,2834977.564604951,1273792.3268083185,1143.21978,495.37177403839496,1186393.053073764,509414.66716657294,1843.496,759.7220173607324,1910086.439491311,780544.2122933158,0.38226,100000,0,725729,7583.612861427213,0,0.0,0,0.0,34639,361.5787328756387,0,0.0,35434,367.0543486211689,1567814,0,56205,0,0,0,0,0,87,0.8882201113932516,0,0.0,0,0.0,0,0.0,0.06078,0.1590017265735363,0.3086541625534715,0.01876,0.334168886103713,0.665831113896287,25.050191683290368,4.349908234591197,0.3276704183478445,0.2331705245275005,0.207687407092801,0.2314716500318539,11.133723962799532,5.781814280169712,19.813621195398262,12216.59187323763,52.91104839945736,13.063584633619111,17.2519684185175,10.831851462283144,11.7636438850376,0.5548948821405819,0.7923497267759563,0.6830848995463383,0.5858895705521472,0.1064220183486238,0.7360197368421053,0.9209876543209876,0.851063829787234,0.7288135593220338,0.1507537688442211,0.4918408245061552,0.7171717171717171,0.6289631533847472,0.5404312668463612,0.0965207631874298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506080951078,0.0048243080259863,0.0071819841752891,0.0094553283974691,0.0118872087938906,0.014398305602509,0.0167300457756889,0.0190036843877894,0.0211026518828879,0.0230770805190552,0.0253080218946677,0.0272667542706964,0.0293645897594077,0.0314427840201036,0.0337185307470078,0.036101866589495,0.0380732472534868,0.0402316145568503,0.0422243715744698,0.0446790549342893,0.0588954235393663,0.0731224675691805,0.0869779643231899,0.1000610063951531,0.1119735912336395,0.1272467601163713,0.1395662231276925,0.1503187967683907,0.1612710216466867,0.1715238462858123,0.1835398744603193,0.1959339565480827,0.2066412238640441,0.217211636220524,0.2270197743219761,0.2374785544302396,0.2472416022111762,0.2553208216808742,0.2634255169758329,0.2709181107402496,0.2779605453013355,0.2842842142107105,0.29104733120034,0.2963738129978233,0.3013868011443534,0.3066845446046351,0.3113987953914978,0.3147466490658002,0.3191522337169205,0.3238157894736842,0.3225516259835119,0.3219676716160079,0.3212361820324336,0.3197128181517344,0.3189641139474657,0.3169823415393538,0.3152352383959583,0.3155126650719271,0.3157025637533621,0.3177014766055862,0.3179491968621591,0.3180594580787141,0.3188273018781493,0.3195958876674529,0.3204439756436688,0.3215753602830238,0.3226898887276245,0.3249569168102773,0.3281545907273619,0.3302566946601172,0.3320419325432999,0.3329604176655479,0.336333312354459,0.337556904400607,0.3379990605918271,0.3410798122065728,0.3429311395490554,0.347052947052947,0.3544097693351424,0.3507322568531731,0.0,1.5306492723558285,53.79938444092856,173.598278895764,264.45661000005373,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95722,45278,428.6684356783185,5976,61.15626501744636,4644,47.85733687135664,1821,18.605963101481372,77.33907921770925,79.705546433288,63.32552877917672,65.07512155066357,77.11538235675265,79.48607363231005,63.2425532213974,64.99668744879311,0.2236968609566076,219.47280097795385,0.0829755577793136,78.43410187045663,157.62142,110.92434775351656,164665.8239485176,115881.7698684906,399.35258,263.1475039900787,416545.632143081,274254.2580749342,381.67188,185.574436872645,394855.6549173649,190864.6507203486,2692.3718,1236.2453636265964,2776125.906270241,1254977.3640415466,1137.88573,505.46278914396527,1169956.3632184868,509497.0800745144,1795.56266,746.1277547878256,1836472.1589603224,746358.132353849,0.38142,100000,0,716461,7484.810179478072,0,0.0,0,0.0,34527,360.0112826727398,0,0.0,34905,360.7112262593761,1576870,0,56506,0,0,0,0,0,67,0.699943586636301,0,0.0,0,0.0,0,0.0,0.05976,0.1566776781500707,0.304718875502008,0.01821,0.3279655612244898,0.6720344387755102,24.50915637285156,4.412911189568784,0.3223514211886304,0.2340654608096468,0.2151162790697674,0.2284668389319552,11.39970768322809,5.8919032433866985,19.241125151992826,12196.71467351232,52.476311228564455,13.000366552145415,16.82776579009418,10.989342416321495,11.65883647000336,0.5566322136089578,0.7847286108555658,0.6700066800267201,0.5805805805805806,0.1404335532516493,0.7273456295108259,0.9065656565656566,0.8611111111111112,0.7652173913043478,0.1377777777777777,0.4939652634677657,0.7149059334298119,0.6012715712988193,0.5253576072821846,0.1411483253588516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0047248245934217,0.0071049399632573,0.0092566249390343,0.0115561071381341,0.0138610231288637,0.0158364350175903,0.017662433127782,0.0197961082650797,0.0221227608386165,0.024490800566119,0.0266225696120623,0.0290030957205006,0.0309396249742427,0.0330418984898376,0.0351905855101238,0.0372641851502688,0.0393229274772717,0.0413993198906001,0.0435077044893366,0.0587234131417652,0.0726041873750954,0.0859039151131335,0.0981544771018455,0.1096722487029147,0.1258488290918322,0.1379043294681788,0.1497439500888988,0.1604210076401132,0.1707222865971417,0.1837576906914349,0.1957620970798098,0.2071629060684523,0.2171976891767692,0.2270960638590696,0.2376090547296773,0.247451343836886,0.2557511367217395,0.2638209490517427,0.2712563597194848,0.2783743751157193,0.2842256683741492,0.2910774251525327,0.2967135588147261,0.302346176242236,0.3078994945209017,0.3122986640029966,0.3165589978550849,0.3204664617609835,0.3245834705301284,0.3234827928968648,0.3220036269714788,0.320631970260223,0.3202491581518362,0.3191884385164941,0.3170694378548799,0.3145013289457031,0.3154861589991133,0.3158488823519351,0.315977685595766,0.3159029548522574,0.3161555485298767,0.3169782908771489,0.3175852431525992,0.3180967912130078,0.3206919839991687,0.3217985202048947,0.3255470785846598,0.3280647648419429,0.3316397411979518,0.3337588329154319,0.3353749467405198,0.3386240040470469,0.3451834862385321,0.3480828724102371,0.3526478271194491,0.3549435246789417,0.3579742699612007,0.3706896551724138,0.3758157389635316,0.0,2.5406139041608005,54.25232069002641,168.3161573144391,258.82952652709986,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95704,45189,429.8670901947672,5965,61.19911393463178,4699,48.70224859984954,1827,18.860235726824374,77.30793472821749,79.68441549903683,63.31631099018998,65.07039379762325,77.08479157437743,79.45906150620154,63.23319266563454,64.98798526014419,0.2231431538400556,225.353992835295,0.0831183245554427,82.4085374790684,159.53652,112.26782737224472,166697.63019309536,117307.14137777392,403.56447,265.6318159344273,421282.2243584385,277159.2789975941,381.00411,185.35484115175652,395561.22001170274,191716.0581368314,2695.2144,1245.9107191298988,2794522.569589568,1280269.638310642,1116.47489,497.3002925131971,1157905.3017637716,510996.9911081057,1790.09784,749.6301125738788,1849270.5425060603,765648.8669220983,0.38147,100000,0,725166,7577.165008777063,0,0.0,0,0.0,34764,362.8374989551117,0,0.0,34916,362.2837080999749,1564325,0,56184,0,0,0,0,0,82,0.8568084928529633,0,0.0,0,0.0,0,0.0,0.05965,0.1563687839148557,0.3062866722548197,0.01827,0.3389504092441021,0.661049590755898,24.581713942397084,4.436347930764169,0.3164503085762928,0.2360076612045116,0.2268567780378804,0.2206852521813151,11.342254849439632,5.789044875566657,19.45807897739164,12114.733794482903,53.431313759669806,13.394420789922403,16.98478690860539,11.74497394774647,11.307132113395545,0.5694828686954672,0.8025247971145176,0.6967047747141897,0.5806754221388368,0.1263259402121504,0.7301829268292683,0.9122401847575058,0.8459715639810427,0.7426160337552743,0.1363636363636363,0.5072335400059049,0.7322485207100592,0.6375586854460094,0.53437876960193,0.1236230110159118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0041445421750233,0.0062082187889915,0.0084200048752742,0.0104548043283703,0.0127184228748319,0.0149687471321797,0.0174476773864216,0.0192193665787482,0.0213223326611458,0.0232705949891335,0.0252361396303901,0.0274278309696926,0.0297514190643961,0.031803031710161,0.0335976347265152,0.0355385173289126,0.0374169435215946,0.0394985956517216,0.0415428720354443,0.0565223749634396,0.0705478448366095,0.0835020720767979,0.0965061736185608,0.1090447122328705,0.1251374788494078,0.1372813206165989,0.1486326815196449,0.1593966005363076,0.1696595224303276,0.182250942380183,0.1940240379934441,0.2054627696590118,0.2164100769769069,0.2265886287625418,0.2363529620275599,0.2459299925239067,0.2544607699750242,0.2627398472693438,0.2705377082975433,0.2778472366928295,0.2842356408547069,0.2904920826528439,0.2967329511381899,0.3019333657587548,0.3063163089069824,0.3108638169354737,0.3150569702531161,0.3195525796740371,0.3227183798646362,0.3219977886249022,0.3205442814602404,0.3198301162659442,0.3193593697959656,0.3186109539267951,0.3172010857063992,0.3144497486241733,0.3148096327632467,0.3149579313535651,0.3158205430932703,0.3167195628086912,0.3174892512531949,0.3183715418335885,0.3194410285075461,0.319750649850775,0.3206615456968177,0.3225364572928855,0.3241490065182479,0.3278676963221552,0.3283967283411419,0.3303493948390043,0.3315795068027211,0.3353111980810503,0.3400396281054717,0.3405314055018308,0.3440160832544938,0.3395742110825909,0.3426,0.3466307277628032,0.346646571213263,0.0,1.5239691491269067,58.17139685344132,169.3249837855086,258.43874331681747,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95714,45236,429.1326242764904,5974,61.21361556303153,4667,48.24790521762752,1874,19.244833566667364,77.38171245272493,79.75495924598059,63.34258245905804,65.09484295877022,77.14507932103922,79.5195266910151,63.254855004381575,65.01002235459872,0.2366331316857071,235.4325549654845,0.0877274546764681,84.8206041714974,159.56028,112.23282218335464,166705.26777691874,117258.52245581069,401.1658,264.1598281489724,418609.11674363207,275468.1218515289,390.28819,189.926980745315,404874.4697745366,196176.9284039331,2690.42668,1238.548573386412,2781984.7044319534,1265092.6023219305,1138.00701,503.62868529290927,1171870.645882525,509098.6327088592,1834.2365,767.8665342494619,1884212.2782456067,773376.9330842274,0.3787,100000,0,725274,7577.512171678124,0,0.0,0,0.0,34598,360.9189878178741,0,0.0,35491,367.88766533631446,1566151,0,56177,0,0,0,0,0,73,0.7626888438472951,0,0.0,0,0.0,0,0.0,0.05974,0.1577501980459466,0.3136926682289923,0.01874,0.3402489626556016,0.6597510373443983,24.42168089703237,4.442167065495947,0.3291193486179559,0.2228412256267409,0.2241268480822798,0.2239125776730233,11.041252984034475,5.677430964710386,19.910498467351157,12078.641641544473,53.083147575542384,12.658938832318322,17.445919186839845,11.6224431943305,11.355846362053732,0.5654596100278552,0.7721153846153846,0.7135416666666666,0.5889101338432122,0.1186602870813397,0.7253521126760564,0.9106699751861044,0.8588807785888077,0.7389558232931727,0.1069767441860465,0.505163765122455,0.6844583987441131,0.6604444444444444,0.5420326223337516,0.1216867469879518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.004521079787935,0.0065653285708487,0.008918594965768,0.0111581260044347,0.0134215885947046,0.0154779505480499,0.0176609906488627,0.0197908467333858,0.0220083938990684,0.024214961606676,0.0263036313795546,0.0284239320458238,0.0305318348973516,0.0327544038884245,0.0347497932175351,0.0368705594796694,0.038912928431342,0.0408727847574673,0.042716160026678,0.0573761931616433,0.070905874100983,0.0844935945188807,0.0971827726230301,0.1095417914855913,0.1246801040587128,0.1365319525936614,0.1476252834648184,0.1588039228254599,0.169273347493081,0.1825646551724138,0.194675991079741,0.2055599060297572,0.2158716970405921,0.2254314279743507,0.2355982111229188,0.2447338782519486,0.253648937366468,0.2621091667895256,0.2696350064114307,0.2758130010759032,0.2826114910281138,0.2882146195993041,0.2938737853608272,0.2989457831325301,0.3048706859374807,0.3094815296501013,0.3136546389129218,0.3176275662101638,0.3212585549826592,0.3195539293497269,0.3181512166302571,0.3174507127478435,0.3166690699351117,0.3153809693091599,0.3133280420050064,0.3116829807388696,0.3126196436460021,0.3131591481254678,0.3134285866799523,0.3149909377977914,0.3152956019476807,0.3153132492442406,0.314605740753112,0.3151265534829147,0.3165491862755261,0.3179756166713921,0.3211820198044544,0.3239755884917175,0.3290383779297261,0.331578947368421,0.3341996393338283,0.3361179672172647,0.3372609028309105,0.341869880425572,0.3449175661250148,0.3440366972477064,0.3444782168186423,0.347079988928868,0.3477756286266925,0.0,1.905558363909951,56.30551910032491,175.04810457453786,251.8933652438853,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95849,45676,432.02328662792513,5988,61.28389445899279,4689,48.25298125176058,1805,18.393514799319764,77.44506122741345,79.72154414657751,63.40474875222951,65.08358858727827,77.21569809520697,79.49589779622593,63.31868565151407,65.00183741669764,0.2293631322064726,225.64635035158176,0.0860631007154353,81.75117058063108,159.51738,112.27073570227736,166425.71127502635,117132.92335055904,401.88878,264.6207401806911,418648.5826664858,275435.77938287426,386.67817,188.80264796809288,398802.22015879146,193487.3636979669,2672.82672,1231.3299050699989,2752809.0642573214,1248884.3337645666,1107.05839,493.1586806493829,1137095.3583240304,496609.98927605886,1766.13718,746.9009504480232,1802300.9316737785,746184.5436746698,0.38466,100000,0,725079,7564.805057955743,0,0.0,0,0.0,34624,360.55670899018247,0,0.0,35460,365.3350582687352,1568403,0,56324,0,0,0,0,0,68,0.7094492378637232,0,0.0,2,0.0208661540548153,0,0.0,0.05988,0.1556699422866947,0.301436205744823,0.01805,0.3291826309067688,0.6708173690932312,24.491704176611684,4.32119449928542,0.3316272126252932,0.2298997654084026,0.2200895713371721,0.218383450629132,11.408393914389372,6.073066581030248,19.198415787123828,12217.337852286364,53.1793673703367,12.993742941925111,17.53767008705343,11.50424598271962,11.143708358638545,0.5645126892727661,0.7884972170686456,0.690032154340836,0.5794573643410853,0.123046875,0.7396726422447389,0.9127358490566038,0.8666666666666667,0.7306122448979592,0.1531100478468899,0.4985320023487962,0.7079510703363915,0.6278260869565218,0.5324015247776366,0.1153374233128834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022571307111479,0.0049230644556772,0.0073512263873538,0.0096220210304088,0.011919035909525,0.0139585516476584,0.0161737146581927,0.0181814473778131,0.0202902102543679,0.0222392638036809,0.02443170182265,0.0267678580585611,0.0288504991577995,0.0309311224489795,0.0330829701521754,0.0356833195706028,0.037551062619577,0.0395842616291721,0.0415278080584711,0.0436189584308828,0.0590185814685825,0.0726076055160886,0.0857337312182608,0.0990723445337586,0.1115483355077648,0.1271241899052162,0.1385776911836337,0.1499075628466393,0.1604355058863675,0.1711331820711503,0.1836228021151283,0.1955812798306805,0.2071735637674236,0.2170637433668901,0.2263744713571703,0.2369571230982019,0.2468201326570425,0.2558829478794417,0.2629245839190966,0.2707944754036457,0.2781581016698274,0.2846333762133083,0.2913466885967507,0.2971413522313733,0.3029600592254572,0.308298448657966,0.312574310709503,0.3164094800717493,0.3212560699255422,0.3252400295420974,0.3239053795850265,0.3222216115202814,0.3206701241022613,0.3192022463820289,0.3184226886527132,0.31736883033713,0.3156377044530585,0.3161480029404557,0.3158458608257942,0.3164583925021301,0.3178215051757903,0.3181281021035216,0.3200217105400497,0.3211105174102769,0.3229211546747091,0.3234638319937775,0.3244918756723093,0.3272011743761127,0.3301227441844292,0.3329518096065043,0.3378040463741759,0.3401985243378098,0.3428786737000753,0.3441568387195589,0.3438888363739484,0.3482153515578369,0.3531592769967557,0.3528559602649007,0.3614592035644667,0.3643502159403219,0.0,2.6120206923643807,55.74377854564512,174.82547384457845,252.7083917043984,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95691,44993,426.7485970467442,5983,61.32238141518011,4698,48.5834613495522,1859,19.040453125163285,77.29747507811412,79.70046076561079,63.28577397120039,65.0657888224751,77.06618961161355,79.47153326440643,63.19999830813805,64.98347281476904,0.2312854665005659,228.92750120435323,0.0857756630623427,82.31600770605496,158.20134,111.3426213686324,165325.20299714708,116356.41948420688,399.0733,262.5468659730409,416512.7963967353,273838.52815107047,380.18306,184.88857375278496,394415.6921758577,190898.01358932856,2716.88452,1244.772161821467,2810377.402263536,1271975.2973858218,1165.1043,513.3615777790853,1204385.6684536685,523376.2920775479,1829.16126,766.2980278817573,1875028.581580295,769935.4267141848,0.38009,100000,0,719097,7514.781954415775,0,0.0,0,0.0,34496,359.92935594779027,0,0.0,34847,361.24609419903646,1570574,0,56346,0,0,0,0,0,53,0.5538660898099089,0,0.0,0,0.0,0,0.0,0.05983,0.1574100870846378,0.3107136887848905,0.01859,0.3277565328234544,0.6722434671765456,24.30176006822461,4.346132579502624,0.3101319710515113,0.2396764580672626,0.2179650915283099,0.2322264793529161,11.341806721597422,5.956057794097512,19.792783005813074,12097.82340232958,53.2915434898737,13.526566534290277,16.204494365004482,11.51576783579611,12.044714754782843,0.5661983822903364,0.7868561278863233,0.693891557995882,0.607421875,0.1292392300641613,0.7346123101518784,0.9370629370629372,0.8690476190476191,0.7410358565737052,0.1659574468085106,0.5050768784450247,0.6944045911047346,0.6413916146297948,0.5640362225097024,0.1191588785046729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0042298095064207,0.0063353469719275,0.0087592724316634,0.011077880859375,0.013200513353297,0.0152380563828485,0.0174424541982394,0.0194831095247348,0.0218021320826207,0.0241453232539772,0.0261346592426701,0.0281475689800621,0.0303676682741849,0.0324822153159943,0.0346307808475645,0.036618229307021,0.0385234411505113,0.040449859028912,0.0426155016623068,0.0572565733805509,0.0708311087382096,0.0839402270867001,0.0964338312644645,0.1081619950840251,0.1248558460382788,0.1366608636575941,0.1478234937000074,0.1588369282758178,0.1692418369428666,0.1823809831963588,0.194074989431238,0.2055527115487251,0.2154031551270815,0.224434010096334,0.2348634437468107,0.2445941868651312,0.2537953869717992,0.2618203712539477,0.2701172479398517,0.2764416950487708,0.2825356302186413,0.2890149451694654,0.294876564694022,0.3003856400773713,0.305210673117271,0.3102709341086243,0.3143348843138505,0.3192425500986398,0.3231078436557889,0.3219886102939192,0.3204409979026382,0.3181259448690959,0.3162088548910524,0.3162990615286226,0.3146726723966233,0.3131209264063785,0.314130719811197,0.3150276713495104,0.315126050420168,0.3156991173561738,0.316570259316098,0.3176409185803758,0.317474452879756,0.3183178868213712,0.3190887626164344,0.3201293910674763,0.3228785175446834,0.3270616213191579,0.3292190837882744,0.332924168030551,0.3364248237850442,0.3416383540958852,0.3454725157758686,0.3504747579204663,0.3504910661460182,0.3540353574173712,0.3603567085528982,0.3563756540897824,0.367794004611837,0.0,1.993164895665501,55.105438487903015,177.7113363025501,256.0560372401272,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95830,45041,424.83564645726807,5982,61.20212876969634,4727,48.75300010435146,1868,19.12762183032453,77.32864418348662,79.64122694768,63.32870225298407,65.03946113020783,77.09149794944496,79.40425481382626,63.24127255164146,64.95421079605029,0.2371462340416599,236.97213385374027,0.0874297013426073,85.25033415753569,158.75794,111.75614927218264,165665.99186058645,116618.95259749828,402.44482,264.5550003809103,419357.69591985806,275469.3762592225,383.86082,186.6620089181068,397122.3312115204,192085.92055044253,2717.00224,1250.725427279169,2804397.07815924,1274483.0791705514,1117.38335,498.51558994731135,1149181.2167379735,503730.3618636216,1829.50084,769.5468861572616,1875588.7717833663,774491.3828231512,0.37943,100000,0,721627,7530.272357299385,0,0.0,0,0.0,34753,362.04737556088907,0,0.0,35072,362.5482625482625,1567327,0,56348,0,0,0,0,0,71,0.7408953354899301,0,0.0,0,0.0,0,0.0,0.05982,0.1576575389399889,0.3122701437646272,0.01868,0.3390263367916999,0.6609736632083001,24.485699778665797,4.410784028269823,0.3270573302305902,0.2350327903532896,0.2183202877089063,0.2195895917072138,11.49477098107156,5.948440090686696,19.94989725336921,12129.64767808544,53.681225638728016,13.319174229632267,17.53118170428706,11.424663626078294,11.406206078730388,0.5540511952612651,0.7776777677767777,0.685640362225097,0.5571705426356589,0.1156069364161849,0.7174427782162589,0.9032258064516128,0.8535980148883374,0.6979591836734694,0.1388888888888889,0.4942196531791907,0.7062146892655368,0.626421697287839,0.5133418043202033,0.1094890510948905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024712614574365,0.0048655881279649,0.0074975904225637,0.0096802372826263,0.012111043319097,0.0145387904703726,0.0167159310977474,0.0189310826946431,0.0208780427984548,0.0228393672103636,0.0250210045287813,0.0271335331061943,0.029381538651265,0.0314803376569899,0.0335859757669502,0.0358356662500129,0.037966824301251,0.0402479990046862,0.0423777226128774,0.0443375901583039,0.0589615753681839,0.0727242313040387,0.0860164339915314,0.0984805497761805,0.1107855433877546,0.1254505671067513,0.1377068996596295,0.1490557003777198,0.1591188185419714,0.1696108907707149,0.1819542395693135,0.1937277556009909,0.2055580925044034,0.2159119476232635,0.225893043774822,0.2351716269951153,0.2451100790425579,0.2537150448056919,0.2618771858109642,0.269625943169048,0.2762649973917579,0.2818883234445721,0.2882496794719597,0.2934017348679626,0.2987657927408165,0.3033422195892575,0.307931492765616,0.3125486046481979,0.3170880490084103,0.3212311192233421,0.3200879429180323,0.3192097021206142,0.3183661932018938,0.3171230492545106,0.3164747419071312,0.3146288276666973,0.3127033762440673,0.3127805455531988,0.3135814700305758,0.3142500445871232,0.3150507813963947,0.3164169072001898,0.3179524756620956,0.3180629734742676,0.3188628875153322,0.3192934782608695,0.3201368106028217,0.3241892911010558,0.328144676087869,0.3315155107686228,0.3341361446878124,0.3374356798047849,0.3407687460617517,0.3460334427731542,0.3478424722065197,0.3521817095038852,0.3529231711049893,0.3587088915956151,0.3680593732820231,0.3631067961165048,0.0,2.1497595273522645,55.54973981654024,175.89364832478373,261.45817243472857,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95741,45252,428.58336553827513,5862,59.88030206494605,4645,47.879174021579054,1835,18.76938824537032,77.35098256499538,79.69695872244917,63.33757887846742,65.06999053348328,77.12157694774902,79.46959587690944,63.252617534674016,64.98819573053676,0.229405617246357,227.36284553973007,0.0849613437934024,81.79480294651853,159.41046,112.07458841211508,166501.77040139542,117060.18154407732,397.75902,262.1080738837605,414827.0960194692,273141.7719511604,382.32238,186.1228012639283,394752.1960288696,190989.38519018597,2654.5306,1222.3788230196883,2739370.51002183,1243510.0354285918,1099.51437,491.843948882043,1131531.2144222432,496828.8182513688,1790.6385,751.0340598183958,1833992.5632696543,753761.0668326295,0.38114,100000,0,724593,7568.26229097252,0,0.0,0,0.0,34344,358.05976540875906,0,0.0,34821,359.1251396998151,1569007,0,56296,0,0,0,0,0,89,0.929591293176382,0,0.0,1,0.0104448459907458,0,0.0,0.05862,0.1538017526368263,0.3130330945069942,0.01835,0.3407730874979783,0.6592269125020217,24.5367225460669,4.361552742494633,0.3280947255113025,0.2368137782561894,0.2208826695371367,0.2142088266953713,11.550775443319116,6.184435280322485,19.50250586584177,12158.512410238229,52.68502209602246,13.095796044445969,17.28459026395179,11.286506080858215,11.018129706766471,0.5608180839612487,0.7945454545454546,0.6751968503937008,0.5604288499025342,0.1276381909547738,0.735973597359736,0.9460154241645244,0.8529411764705882,0.7219730941704036,0.1946902654867256,0.4989804835420914,0.7116736990154712,0.6173913043478261,0.5155666251556662,0.1079323797139141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0043482227019795,0.0067273446774831,0.0091411391890793,0.0114386228914805,0.0138550966599138,0.0160446886372208,0.0182888868477184,0.0205337339915575,0.0225465412602728,0.0244787502306414,0.0267193594744405,0.0289415514316557,0.0310163731850478,0.0332387682467632,0.0353174644189724,0.0373380825662424,0.0391715350053439,0.0412850236523366,0.0431702641886823,0.057747111078635,0.0718029185626863,0.085912598557289,0.0981422879190891,0.1103204722749314,0.1252087870266613,0.1363906329543526,0.1479518533890999,0.1590299663479515,0.1697151745963632,0.181502827901966,0.1939516609120133,0.2053170312516996,0.2152384912514909,0.2247088351203188,0.2357328899972291,0.2445248545359109,0.2533384333269583,0.2627517730496453,0.2706955634763274,0.2775965009719522,0.2842285059138715,0.2909058656575213,0.2962031682172492,0.3010701805474665,0.3061872415829887,0.3103258627801457,0.3153219554968167,0.3190759673870842,0.3231498099662162,0.3223081483078249,0.3210296527882986,0.3196005698086063,0.3183022336744886,0.3174874685784831,0.3157095992887144,0.3143418779030136,0.3140808472848074,0.3148803721375677,0.3162170365476976,0.3170297660303842,0.3182823297137216,0.3200284804824929,0.3211046069976317,0.3238209528381135,0.325950439065065,0.3272613600841172,0.3289576987092925,0.3314231804046263,0.3350342154186939,0.3392548841435711,0.3444432650461734,0.3473750392958189,0.3490859440188121,0.3518015910154422,0.3536585365853658,0.3538795106086418,0.3525940996948118,0.3586474501108647,0.3604471858134155,0.0,2.4764189487111983,52.60596445205689,182.09581281499263,250.0445084010356,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95830,45256,428.5609934258583,5932,60.523844307628096,4637,47.678180110612544,1816,18.50151309610769,77.51248185563044,79.79982070668515,63.42745123530996,65.11146317271229,77.28499583155516,79.57727804956329,63.34213722917991,65.03130112793508,0.2274860240752758,222.54265712186336,0.085314006130055,80.1620447772109,158.42992,111.34091835540931,165323.46864238754,116185.41683753447,397.0649,261.0550312984221,413661.2647396432,271733.42794367333,377.39094,183.26328296722752,389560.200354795,187857.6846093496,2642.06648,1210.2107395082792,2717726.223520818,1223588.9591028683,1105.47974,491.52565930173375,1132812.1882500262,492279.2768479383,1770.5059,746.5405729798043,1804905.979338412,741702.4496103864,0.38169,100000,0,720136,7514.703120108526,0,0.0,0,0.0,34275,356.93415423145154,0,0.0,34499,355.7967233642909,1583168,0,56774,0,0,0,0,0,72,0.7408953354899301,0,0.0,1,0.0104351455702807,0,0.0,0.05932,0.1554140794885902,0.306136210384356,0.01816,0.3395468423589908,0.6604531576410092,24.602011958196183,4.261623762427679,0.3228380418373948,0.2471425490618934,0.2173819279706706,0.2126374811300409,11.28449903174965,6.032094134301689,19.27149272548033,12125.02633940214,52.20498539100433,13.571522796986978,16.629814416403207,11.211800095678155,10.791848081935983,0.569333620875566,0.7923211169284468,0.6833667334669339,0.5882936507936508,0.1176470588235294,0.7293921731890092,0.9298701298701298,0.8442622950819673,0.7478632478632479,0.1574074074074074,0.5133876600698487,0.7227332457293035,0.6312997347480106,0.5400516795865633,0.1064935064935064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022463724121182,0.0043244447595223,0.0065173983113552,0.0086858580836318,0.010920579451025,0.0130885792738736,0.0153631569302192,0.0174885788872573,0.0196971398813474,0.0217915942325391,0.0240745481542163,0.0260591330031074,0.02819477410273,0.0302369141469238,0.0323298969072164,0.0345596893139705,0.0367243038524819,0.0387761661361727,0.0409100353210056,0.0429771683792985,0.0580290562456327,0.071846081455534,0.0849095157757961,0.097994937453392,0.1098674304246648,0.1246725536589487,0.1364445763466389,0.1469725004785299,0.157817785983373,0.1673431358899943,0.180172914381573,0.1932710482259545,0.2052131054997069,0.2156333937501365,0.2254050194958537,0.2357416130387669,0.2447867932094639,0.2532264042861475,0.2618149695919546,0.269051890619465,0.2768288604149607,0.2836693571869504,0.2901978353651347,0.2956382610356891,0.3007951011121734,0.3059918700185442,0.3107360127655331,0.3141590678824721,0.3191966587604414,0.3225438078361882,0.3217837707422995,0.3204413838423942,0.3198829098854309,0.3186740490400517,0.3183202720686086,0.3164968269465462,0.3138706876134838,0.3150169363944298,0.3157491704245724,0.3165043704270735,0.3175804462383675,0.317819830475064,0.318896897524287,0.3196401932625298,0.3202032733692799,0.3218604651162791,0.324062570589564,0.3287058604304481,0.3325598309839642,0.3358799454297408,0.3394863563402889,0.3428571428571428,0.3461704622600753,0.3475177304964539,0.353547437195178,0.358264081255771,0.3597915115413254,0.3657154026583268,0.367237687366167,0.3696053116931022,0.0,2.774865942055172,51.80849015157986,177.19671875826822,252.2168602642831,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95727,45268,428.3744398132188,5882,60.17111159860854,4630,47.6668024695227,1800,18.281153697493917,77.31288813594676,79.67102153785783,63.318020272784125,65.06188861034428,77.07768790615586,79.44116491027748,63.23083071853304,64.9793976945671,0.2352002297909052,229.85662758034664,0.0871895542510827,82.49091577718559,159.22984,112.04510053479385,166337.4387581351,117046.4973672985,397.59601,261.5392287626679,414637.78244382463,272508.13248073665,383.95402,186.91567874320148,397290.7748075256,192197.697757789,2640.58348,1220.2181097421962,2720795.428666938,1237052.3191023574,1135.70048,503.3434101618453,1170377.5632789077,509873.0766233544,1761.10564,743.930775084338,1792311.7824647175,739282.3682390002,0.37996,100000,0,723772,7560.792670824323,0,0.0,0,0.0,34288,357.4226707198596,0,0.0,35134,363.1263906734777,1567929,0,56325,0,0,0,0,0,63,0.6581215331097809,0,0.0,1,0.010446373541425,0,0.0,0.05882,0.1548057690283187,0.3060183611016661,0.018,0.3361016121152906,0.6638983878847093,24.586601689708488,4.374250774919153,0.3086393088552915,0.2362850971922246,0.2377969762419006,0.2172786177105831,11.504515615781552,6.103297617290329,19.391328527159164,12156.936129208454,52.64221880510557,13.066637736224935,16.229550490301435,12.275461304886797,11.0705692736924,0.5647948164146869,0.7824497257769653,0.6934919524142757,0.5876475930971844,0.1202783300198807,0.734920634920635,0.9138755980861244,0.873972602739726,0.7451737451737451,0.146788990825688,0.501186943620178,0.7011834319526628,0.631578947368421,0.5391923990498813,0.1129441624365482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901638680143,0.0046929322210847,0.0069602978926328,0.0088875797342867,0.0111166485287985,0.0131670061099796,0.0156724788416437,0.017661892170575,0.0201198192487782,0.0225781018011283,0.0249254083317099,0.0269856754120244,0.0295372970082173,0.0318068516572935,0.0341174043123903,0.0361727195684077,0.0379282852024809,0.0396878923394585,0.0415544440169295,0.0435738473560823,0.0576425140948005,0.0719263367165428,0.0848277019232786,0.0973388987603957,0.1097919719958246,0.1250978401133887,0.1368874551667055,0.1481792925798588,0.1588656270027771,0.1691543888996118,0.1821646587642518,0.1938382680537232,0.2049358556207871,0.2153450727332385,0.2247859862238947,0.2344965104685942,0.2441599607129703,0.2528378728047971,0.2613178303375762,0.2696670409496093,0.2770349274707973,0.2836508660514836,0.2903741037836303,0.296216825297883,0.3011178614823815,0.3061458436051671,0.3106954148198232,0.3157097775741843,0.3196321005246453,0.3225077624364141,0.3218384603973081,0.3212568704971554,0.3197821270831275,0.318880875836302,0.3174551143559562,0.316200070642075,0.3145571228872792,0.3154350260159388,0.3169365201747622,0.3178372372264736,0.3187736008566759,0.3188615628718762,0.3205892227631358,0.322302769946749,0.3232934146165153,0.3242141569334483,0.3244062080201217,0.3292359223914555,0.3325814977973568,0.3344516335170541,0.3369619905776883,0.3399925615004516,0.3428141836862549,0.3487894015532206,0.3508953817153629,0.3553924470226116,0.3552266419981498,0.3613138686131387,0.3674147963424771,0.3722326454033771,0.0,2.6370646602987087,54.64036648333497,173.11907421139117,252.23765402888472,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95772,45632,432.7151985966671,5981,61.16610282754876,4697,48.36486655807543,1866,19.076556822453327,77.37208356525132,79.71054071414022,63.35007434272507,65.07956826628835,77.13561003569868,79.4787492396775,63.26162036141532,64.99600973270447,0.2364735295526401,231.79147446272447,0.0884539813097546,83.55853358388288,158.0777,111.24593514073568,165056.27949713904,116157.05544494808,401.54083,264.6700927399649,418588.10508290527,275675.0018167782,386.57474,188.34389236684493,399626.46702585305,193510.60779947197,2710.84828,1254.9512699470736,2791560.7066783607,1271390.9179583527,1136.18548,507.4841629918408,1166598.598755377,510153.06582995714,1825.958,774.4898012527561,1866774.5687674892,772648.1054692575,0.38389,100000,0,718535,7502.558158960865,0,0.0,0,0.0,34659,361.1807208787537,0,0.0,35333,364.8978824708683,1573305,0,56510,0,0,0,0,0,72,0.7517854905400325,0,0.0,2,0.0208829302927786,0,0.0,0.05981,0.1557998384954023,0.3119879618792844,0.01866,0.3364187679540377,0.6635812320459623,24.2260176445443,4.314212119246912,0.3199914839259101,0.2375984671066638,0.2182243985522674,0.2241856504151586,11.260002746416992,5.901893269847451,19.963861442249375,12271.18505795582,53.54218686716358,13.388388303366664,16.96990311471556,11.578974151824694,11.604921297256656,0.5720672769853098,0.7956989247311828,0.7092481703260146,0.5951219512195122,0.1168091168091168,0.7380216383307573,0.9195121951219511,0.8790931989924433,0.7644787644787645,0.1359649122807017,0.5089626799882456,0.7237960339943342,0.6482820976491862,0.5378590078328982,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877848678213,0.0043591095251611,0.0065555803616731,0.0088377810058816,0.0111664802196684,0.0130925232122495,0.0153196954407852,0.0173071820723717,0.0198250490516677,0.0220552866163812,0.0241750358680057,0.0260986473449783,0.0283499856091443,0.0305813546407463,0.0326073505754238,0.0347061497768226,0.0367464392182842,0.0389621164196749,0.0410640066500415,0.0429264534399466,0.058178972084529,0.0728809304660697,0.0860563365516663,0.0990805443177638,0.1116554463373263,0.1277627519756582,0.1405150487494701,0.1522266173280592,0.1623663486778923,0.1724928489549296,0.185097524502157,0.1979114868224764,0.2089922076228359,0.2194489996720236,0.2288680884763025,0.2389891137025593,0.2481509164537757,0.2572935052670631,0.2656531646430636,0.2732289865692662,0.279959287060919,0.285989875016076,0.2921247369789819,0.2976293103448276,0.3034381485212199,0.3093666896483797,0.3140261073077934,0.3187047890260491,0.3227813712807244,0.3268023838405147,0.3256686433498729,0.3242218620367572,0.3227156770165325,0.3207402588014169,0.3196505771716361,0.317620943049602,0.3159393690073099,0.3167382959876644,0.317153265944892,0.3182548466564318,0.3187185388948146,0.3204784084629352,0.3221225241053314,0.3230247450744137,0.3245755181440476,0.3255468363010663,0.3273610515787969,0.3296751813308105,0.3335910864292995,0.3377942406500179,0.3404138937004284,0.3437599575146043,0.347336645493994,0.3487628473543966,0.3508292499057671,0.352334676463617,0.355281207133059,0.3556741795175959,0.3570073190566549,0.3559894855426211,0.0,2.57050169918242,56.33856155962158,175.55423364787313,254.413439529985,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95644,45244,429.15394588264815,6114,62.71172263811634,4806,49.63196855003973,1813,18.558404081803356,77.25911226955019,79.65648513253856,63.27736057920528,65.04613230727703,77.02969519743756,79.4281941890507,63.19162329894014,64.96371055003151,0.2294170721126249,228.29094348786327,0.0857372802651426,82.4217572455268,158.29506,111.33922789583552,165504.4331061018,116410.04965898072,397.34273,261.14076446560284,414820.375559366,272415.2424256648,382.08644,186.1517215877704,395592.792020409,191667.18305863187,2734.03928,1260.9968758380028,2824387.269457572,1284256.7812283086,1115.43516,498.3558947091335,1148880.3584124462,503722.6860840237,1782.06612,754.625313522935,1825946.8863702896,756334.4445354178,0.38138,100000,0,719523,7522.928777550082,0,0.0,0,0.0,34340,358.41244615448954,0,0.0,34984,361.8836518757057,1568886,0,56372,0,0,0,0,0,63,0.6586926519175275,0,0.0,2,0.0209108778386516,0,0.0,0.06114,0.1603125491635639,0.2965325482499182,0.01813,0.33453125,0.66546875,24.603087786189157,4.239681551524723,0.33083645443196,0.2317935913441531,0.223886808156471,0.2134831460674157,11.115329797648544,5.739634720076939,19.490256031295218,12217.44459100021,54.58249244309152,13.38366421203289,17.868511129897197,12.011157750598036,11.319159350563387,0.5659592176446109,0.7917414721723519,0.6974842767295597,0.5715613382899628,0.1111111111111111,0.7438271604938271,0.9302884615384616,0.8603491271820449,0.75,0.1581395348837209,0.5002849002849002,0.7091690544412608,0.6425567703952901,0.5135467980295566,0.0986436498150431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024614324929347,0.0046035753759417,0.0069017315226437,0.0093785563323036,0.0115367007477491,0.0138716313934776,0.0160796949242408,0.0182222812050185,0.0202512752885372,0.0225192949413474,0.0247085721316013,0.0269840128964688,0.028860889688866,0.0309564034943135,0.0329824561403508,0.0349484045743118,0.0367557935957069,0.0387701506171045,0.0407218639484085,0.0429719670986103,0.0577901788046942,0.0723652512725977,0.0860986264544041,0.0986152793134312,0.1106311976598059,0.1262973946197839,0.1380834023750345,0.1494251648855124,0.1601398750962443,0.1695912712901909,0.1823438039351052,0.1948357316227461,0.2065487342599451,0.2172002717331755,0.2270160578789483,0.2373062058549153,0.2479077157178661,0.2563608066044119,0.2645202379192303,0.2707268026429187,0.278324437224414,0.2848698793202529,0.2920656391271847,0.2985176903379377,0.3035977713568145,0.3080459770114943,0.3120943952802359,0.3161997346397224,0.3202129040633519,0.3241984359079541,0.3226107037232103,0.3215676526638495,0.3208131737543502,0.3210009300162753,0.320055560534098,0.3177798625101887,0.3159826493159826,0.3171635644869049,0.3174404445435368,0.3188538087056128,0.3202806912208942,0.3204991298845119,0.3206890770391483,0.3216522882810584,0.3236592151971601,0.3245666467423789,0.3265271348649646,0.3290924512298558,0.3331813398807436,0.335871505056514,0.3401038345933145,0.342524705132292,0.3447819510965465,0.3462442204199196,0.3487657196087564,0.3519876952200662,0.3491070065638834,0.3495263051804071,0.3519955654101995,0.3525516166731593,0.0,2.402544159511017,56.57631588694716,178.65285786484108,264.66458303821,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95614,45134,428.4832765076244,6054,62.13525215972556,4709,48.62258665049051,1931,19.78789716987052,77.28554750318864,79.71681640210188,63.27381344368565,65.07166850293486,77.04431594294384,79.47737071881288,63.18451010792344,64.98552065749833,0.2412315602447989,239.44568328900573,0.0893033357622101,86.14784543652831,158.34478,111.35241209612342,165608.36279205975,116460.36364562032,399.69634,263.0755078165437,417413.8201518606,274525.9248818622,383.80628,186.4928427272826,396972.1379714268,191615.512811339,2703.27188,1244.8308928375752,2792700.06484406,1267357.5552090432,1132.98455,498.7724336849624,1167269.583952141,503964.925309015,1892.15644,789.9483105225967,1940439.517225511,793750.240979437,0.3797,100000,0,719749,7527.652854184534,0,0.0,0,0.0,34531,360.5016001840734,0,0.0,35082,362.6351789486895,1568609,0,56288,0,0,0,0,0,57,0.5752295688915849,0,0.0,0,0.0,0,0.0,0.06054,0.1594416644719515,0.3189626693095474,0.01931,0.3283699059561129,0.6716300940438872,24.65965643230497,4.316927229731624,0.323423232108728,0.2282862603525164,0.2172435761308133,0.2310469314079422,11.154436849768674,5.853213089037228,20.474750398883234,12124.205426488854,53.5332330127579,12.995951073291373,17.282892776215093,11.478461002163844,11.775928161087595,0.5502229772775536,0.7813953488372093,0.6815495732107683,0.5689149560117303,0.1204044117647058,0.7310398749022674,0.9133663366336634,0.8547619047619047,0.7142857142857143,0.1330049261083744,0.482798833819242,0.7019374068554396,0.6155938349954669,0.5214007782101168,0.1175141242937853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002199027158492,0.0046151193337999,0.0068431953864273,0.0089444529145703,0.0111911447523704,0.0132017235583534,0.0155155001989166,0.0178367113435763,0.0199547923208313,0.0219268150302633,0.0241890810611189,0.0262227702424989,0.0282343979989912,0.0305013812724199,0.0325355195770692,0.0347124534546959,0.0367150259067357,0.0386328940399414,0.0407698072359382,0.0426914491937334,0.0567722107815979,0.0708738983263993,0.084026019062431,0.0967592397488305,0.1095347756274824,0.1246425318279068,0.13663705152185,0.1484040171432226,0.1592453476302075,0.1686060879562475,0.181122669198895,0.1931951251246909,0.2058044617849319,0.215981064673782,0.2258398844504228,0.2361180479250602,0.2459366406581859,0.2544968893697593,0.2627738885353214,0.2705125706489963,0.2773081020984852,0.283477568418957,0.2900992329306318,0.2961384212675008,0.3017476389835459,0.3061363019277762,0.3101936518275421,0.3147192600236976,0.3187035523909575,0.3232147103114845,0.322043488804462,0.3205221673521603,0.3194428780872899,0.3180424596517614,0.3173015471961714,0.3155021164345745,0.3126576055064787,0.3129976966107272,0.3130644499178981,0.3141680837733822,0.3146817729924406,0.3169107329894666,0.3179013641133263,0.3180781103207623,0.3202674105425163,0.3213932677800322,0.3217484975620818,0.3261931604659902,0.3315915978681158,0.3345320897881758,0.3374347332576617,0.3405517022290464,0.3405633094429774,0.3458595348132434,0.3482326538245745,0.3476930320150659,0.3494894071025758,0.3519417475728155,0.3507767784137367,0.3487933634992458,0.0,2.44405029583785,55.83477444639013,175.26727529026954,257.543836649481,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95820,45208,428.9501147985807,5876,60.290127322062204,4616,47.71446462116469,1723,17.689417658108955,77.35864855579545,79.66393806905121,63.35358995694328,65.05435253548994,77.14523897891048,79.45058571020222,63.27534092429311,64.97845227396392,0.2134095768849704,213.3523588489936,0.078249032650163,75.90026152601581,159.13282,111.9509703667528,166074.74431225212,116834.6591178802,400.50813,263.3576849098104,417496.8900020872,274363.4678666359,380.80061,184.360282020563,394696.5351701106,190339.0113653057,2630.56976,1196.0865389718624,2719686.787726988,1222626.4443455038,1096.57107,479.52973268108207,1134116.9380087666,490200.730395494,1691.34754,702.5058910344912,1737877.582968065,709189.0996366099,0.3805,100000,0,723331,7548.852014193279,0,0.0,0,0.0,34623,360.8328115216031,0,0.0,34766,360.0709663953246,1570366,0,56335,0,0,0,0,0,78,0.8140262993112086,0,0.0,1,0.0104362346065539,0,0.0,0.05876,0.1544283837056504,0.2932266848196052,0.01723,0.3274090983205609,0.6725909016794391,24.473251659795963,4.400018034829033,0.3318890814558058,0.2411178509532062,0.2097053726169844,0.2172876949740034,11.333432545970318,5.802835470574502,18.33810804705709,12120.06970377934,52.05146747855531,13.156936695680002,17.394940587564406,10.61517385743999,10.884416337870926,0.5721403812824957,0.7646001796945193,0.7030026109660574,0.6157024793388429,0.1166500498504486,0.7368421052631579,0.9198966408268734,0.8517587939698492,0.7064676616915423,0.1614583333333333,0.5157068062827225,0.6818181818181818,0.6507936507936508,0.5919165580182529,0.1060419235511714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023379147015363,0.0046389611968114,0.00696493202348,0.0092544674114889,0.0115721455712921,0.0137225980367224,0.0158497331214602,0.0179429375822427,0.0199211327462558,0.0220033143067575,0.0240802196001311,0.0259298008082548,0.0279550007705347,0.0303669554837514,0.0321998597764671,0.034258389019138,0.0363288323244865,0.0386162426655055,0.0404989924590232,0.0420895926377047,0.0561786030984299,0.06996267681467,0.0831158486096699,0.0959992433557174,0.1085994309200126,0.1236116541790398,0.1359448714550755,0.14706820986341,0.158040270749258,0.1681639829327386,0.1814198354937341,0.194130754586362,0.2056018875925583,0.2161106857705348,0.2267108435061146,0.2358664095915608,0.2446886855612586,0.2539645050273297,0.2623190707382367,0.2699174329787112,0.2781698287829708,0.2847080022933901,0.2906379453189726,0.2959767015424441,0.3010000121508159,0.3061755172966244,0.3101196953210011,0.3143282102131879,0.3186471829254086,0.3229661285216841,0.3220633148115758,0.321457534397207,0.3207841703348474,0.3199174853219082,0.3185029087023626,0.3171287098450347,0.3149699652228896,0.3149287272607975,0.3162864558431801,0.3168483115954976,0.3170133033539442,0.3181001283697047,0.3190726727733876,0.3195427448703923,0.3203256327746026,0.3208630090527249,0.3211066742726754,0.3253308128544423,0.3279547212261829,0.331834281848211,0.3327724213207204,0.3343607184610479,0.3363550519357884,0.337688135075254,0.3391434729641083,0.3365520489872821,0.3416832136856575,0.3441756454563935,0.3553441522104085,0.3588328075709779,0.0,1.7306548333241154,51.96469277824147,173.06124549874212,260.15299111672635,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95852,45182,427.4715185911614,6134,62.596502942035634,4751,48.88786879772983,1885,19.18582815173392,77.41454581429173,79.70399237031305,63.37712166936033,65.06828346680153,77.17118983000087,79.46501777298765,63.28539313109943,64.98119253617706,0.2433559842908579,238.9745973253952,0.0917285382609023,87.09093062446982,161.17948,113.33356020632472,168154.5299002629,118238.075581443,404.63944,266.113572678169,421483.3493302175,276963.92370771465,385.50889,187.0709406475069,398222.8122522222,192023.5986175498,2719.46672,1274.3818877425497,2800175.687518257,1292771.643737906,1108.47892,494.2218601504675,1139877.5821057465,499219.925684628,1846.47514,790.9100333208834,1883009.2851479363,789290.7263463617,0.38128,100000,0,732634,7643.387722739222,0,0.0,0,0.0,34789,362.2250970245796,0,0.0,35381,365.1775654133456,1560209,0,56062,0,0,0,0,0,74,0.7720235362851062,0,0.0,2,0.0208655009806785,0,0.0,0.06134,0.1608791439362148,0.3073035539615259,0.01885,0.3515443116560608,0.6484556883439392,24.099559271484573,4.295461962858856,0.3260366238686592,0.2311092401599663,0.2266891180804041,0.2161650178909703,11.273523909267052,5.885285600170689,20.224774029134156,12133.582343820512,54.49226022822416,13.246432562531393,17.816324056726533,12.07700256418634,11.352501044779892,0.5632498421384972,0.785063752276867,0.6952872821174951,0.5979572887650882,0.0905550146056475,0.7126099706744868,0.9225352112676056,0.8387850467289719,0.7178571428571429,0.0826086956521739,0.5031000885739593,0.6979166666666666,0.64049955396967,0.5558343789209536,0.0928481806775407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021764437920736,0.004680613950661,0.0072806919699443,0.0095628692668466,0.0115967069824169,0.0138890302099125,0.016320293398533,0.0184626055734628,0.0205422080575304,0.0224817936339088,0.0245731201409446,0.0266286452830575,0.0288937753026037,0.0310344827586206,0.0331168161666151,0.0350761222086802,0.0371742211829948,0.0391016871865025,0.0410368740137862,0.0429197049920422,0.0574637137137137,0.070858241712303,0.0850270292922096,0.097527169633013,0.1097444106279684,0.1250607347318165,0.1363554500863411,0.1472654796704756,0.1581042006764615,0.1683768556800411,0.180558394749583,0.1927809857479616,0.2048208483215058,0.215569058599812,0.2251338250327005,0.235753101723241,0.2450650190707737,0.2546337406004473,0.2629811945647982,0.271140832006962,0.2778825353122867,0.2842539853335049,0.2911416367917273,0.29598820554004,0.3010063932712643,0.3065144491567215,0.3107416079231723,0.3151417189548307,0.3186981327800829,0.3234536593097436,0.3223347519258741,0.3204435090036179,0.3197229105654426,0.3172411801233266,0.3166921580565166,0.3146153375359569,0.3124614679334166,0.3128360655737704,0.3132456095438021,0.3147316655976053,0.3155239109715759,0.3166824494949495,0.3172046380445001,0.3181281337047353,0.3185840707964602,0.3198805349954551,0.3224277850292265,0.3243293882521937,0.3276585331748584,0.3306033630069238,0.3336045565500407,0.3390822784810126,0.3436682853940979,0.3459808038392321,0.3502505102987567,0.3496536339086533,0.3583042090867649,0.3588283157038242,0.3578889499725123,0.3553183377811666,0.0,2.567647386277692,59.60850779465103,176.90750051827084,251.510654350956,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95703,44969,427.4474154415222,5905,60.40562991755744,4631,47.74145011128178,1826,18.66190192574945,77.36002699221102,79.73184018871125,63.33690834044432,65.08850474197425,77.13112505654011,79.50651104163232,63.251232825907024,65.00709305866421,0.2289019356709047,225.3291470789236,0.0856755145373,81.41168331003712,159.31762,112.09634834379403,166470.8734313449,117129.39860170949,398.57001,261.4803595976593,415829.6814101961,272584.79838422965,378.88611,184.594736461724,392014.0747938936,189861.606189021,2666.7608,1227.221756736816,2750695.380500089,1246522.007394561,1094.44806,485.7773743041647,1130200.6624661714,494207.3424980069,1791.90628,756.5465979072903,1833883.3683374608,757202.1831320389,0.3793,100000,0,724171,7566.857883242949,0,0.0,0,0.0,34458,359.38267347941024,0,0.0,34616,357.79442650700605,1570947,0,56356,0,0,0,0,0,61,0.6373885876095838,0,0.0,0,0.0,0,0.0,0.05905,0.1556815185868705,0.309229466553768,0.01826,0.3408354922279792,0.6591645077720207,24.497889939454243,4.354317860284452,0.3293025264521702,0.2375296912114014,0.2072986396026776,0.2258691427337508,10.909866690184254,5.4525652229867685,19.456540245522643,12043.330122692463,52.391056606736846,13.143797477708205,17.220158793766675,10.57570185187775,11.45139848338421,0.5715828114877997,0.7854545454545454,0.7259016393442623,0.575,0.1185468451242829,0.7288135593220338,0.9166666666666666,0.8737113402061856,0.6933333333333334,0.1559633027522936,0.5141509433962265,0.708092485549133,0.6754617414248021,0.5387755102040817,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586624261883,0.0043690255349775,0.0061901910840952,0.0084418618826063,0.0107307050734366,0.0129118976823754,0.0148725790010193,0.0172895956235073,0.0193202146690518,0.0213968344970208,0.0236933297791629,0.0256354975155024,0.0277343589321706,0.0296535102175346,0.0316959172934658,0.0337772171791319,0.0357923525572625,0.0377709042597359,0.0396193051799459,0.0414834420523935,0.0558648132095374,0.0703587016820356,0.0831418709806019,0.095929315241401,0.1082220956959996,0.1236031083152719,0.1353361126139027,0.1469270473048475,0.1577772556390977,0.1681541234016991,0.1803490627020038,0.192514121237042,0.2037888421533144,0.2138531167326234,0.2243569299798748,0.2347273291099986,0.2430918887562611,0.2516866819592497,0.259934919897051,0.2677796480139237,0.2749392853012605,0.2821393924518157,0.2880491987463781,0.2938563406252619,0.2987870767213433,0.3044608108773831,0.3095372142776714,0.3136843710679833,0.317989465919532,0.3216797055370123,0.3202666307568004,0.3192312457838291,0.3182138627262986,0.3171031510751833,0.3165685749955413,0.3140604668962878,0.3121077509208467,0.3125747130201254,0.3123476363388397,0.3125923552137299,0.3141532536967453,0.3153670177099357,0.3162651859892289,0.317300198187365,0.3193146417445482,0.3212058212058212,0.3230257168866636,0.3263849588128026,0.3314959800582804,0.3353233830845771,0.3398648031424134,0.3447193402500665,0.3427297840281266,0.3461334142824618,0.3524253731343283,0.3569154580827732,0.3596171376481312,0.3650282030620467,0.3613098514034122,0.3648960739030023,0.0,2.5334706083395955,53.74605608137934,171.13538755449514,255.92994597369852,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95754,45087,427.3346283183992,6071,62.169726591056246,4735,48.885686237650646,1887,19.28901142511018,77.33346816806463,79.69543218578089,63.32120940122799,65.07011067946266,77.09231412185657,79.45861588035419,63.2311019329374,64.98491549212676,0.2411540462080523,236.81630542670007,0.09010746829059,85.19518733589848,158.12236,111.19156684712767,165133.94740689686,116122.1117103491,398.58411,262.31424924835915,415673.3504605552,273360.9031981528,382.57362,186.09958668266424,396987.23813104414,192299.79240930267,2726.3338,1253.5777614057674,2812745.577208263,1275052.8477324364,1158.94197,517.2035601126414,1190142.5632349562,519947.73607591377,1849.26772,785.3716786715881,1890247.049731604,782410.3013615051,0.37861,100000,0,718738,7506.08851849531,0,0.0,0,0.0,34398,358.63775925809887,0,0.0,34969,362.5958184514485,1575486,0,56517,0,0,0,0,0,55,0.5743885372934812,0,0.0,1,0.0104434279507905,0,0.0,0.06071,0.1603497002192229,0.3108219403722616,0.01887,0.3248938512344708,0.6751061487655292,24.701203944715623,4.435055326390386,0.3275607180570222,0.2249208025343189,0.2240760295670538,0.223442449841605,11.36642022614152,5.888806724345816,20.268825486772734,12096.576176389544,53.68767848947498,12.744728293753075,17.318280468461513,11.964475844435556,11.66019388282484,0.5564941921858501,0.7981220657276995,0.6782720825274017,0.5730442978322338,0.1181474480151228,0.7180892717306187,0.9172932330827068,0.862796833773087,0.6966292134831461,0.1637931034482758,0.496818970503181,0.7267267267267268,0.6186006825938567,0.5314861460957179,0.1053268765133172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381073002685,0.0045531983937046,0.0067291882345776,0.0092259546018004,0.0111267061288419,0.0132065289331934,0.0154242955592708,0.017574656569574,0.0197559380237929,0.021864411984482,0.0241637021621233,0.0261690878291668,0.0283105210657836,0.0305146187989825,0.0322926768875224,0.0345740007648657,0.0364176693519995,0.0385178113747911,0.040536466184956,0.0425372357046141,0.0570715717387673,0.071099621109041,0.0840731180087724,0.097532500315537,0.1098209200784661,0.1255419495378888,0.1366091228368011,0.1479328990505386,0.1582747644784345,0.168482807439027,0.1811982202303358,0.1934796251812417,0.2048705147866566,0.2146333993283818,0.224026402640264,0.2348785187482004,0.2440274180584085,0.2526418852763429,0.2622822447937354,0.2690101333944009,0.2756283470395688,0.282258819126041,0.2888228890571753,0.29539191488342,0.2998070458599808,0.3049118186405425,0.3098375,0.3135769836832207,0.3182482696164047,0.3228079435244441,0.3217615044724647,0.3198734699491129,0.3192738846327174,0.3180129252389145,0.3174756559875121,0.3153092364550905,0.313486529318542,0.3135093397295832,0.3140175090623076,0.3150885722968021,0.3162748847148802,0.3180730988950167,0.3184786704064972,0.3194366826869341,0.3212385332145522,0.3216404840944141,0.3218017710201873,0.3231524922069335,0.3270294065856665,0.3315868857664523,0.3356391935557274,0.3361670474470007,0.3399722677423421,0.3433279926756695,0.3452437069859527,0.3466140224934195,0.3471391317686761,0.3504395829073809,0.3593618807724601,0.3613477924089853,0.0,2.1374502475665453,56.08668939152331,171.5171441771707,265.3823352528155,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95792,45201,428.25079338566894,6003,61.37255720728245,4680,48.21905795891097,1855,18.947302488725573,77.34149214859087,79.68319457055695,63.33904717832892,65.07356597681137,77.10713462922547,79.45176588385503,63.252098225023424,64.99048181145514,0.2343575193654032,231.4286867019177,0.0869489533054945,83.08416535622598,159.24964,112.02597457778084,166245.23968598628,116947.10892118428,399.39542,262.9430252976363,416315.3812426925,273868.83591284894,378.69092,183.99972709258736,391850.0605478537,189211.9821438868,2696.27636,1239.8115800411013,2779152.7893769834,1258707.6791810398,1093.70352,484.7994407784248,1121813.658760648,486163.1918459247,1819.27354,765.4053521358863,1859683.1050609653,764063.0608327992,0.38135,100000,0,723862,7556.601803908468,0,0.0,0,0.0,34490,359.38282946383833,0,0.0,34592,357.60815099381995,1573555,0,56362,0,0,0,0,0,73,0.762067813596125,0,0.0,0,0.0,0,0.0,0.06003,0.1574144486692015,0.3090121605863735,0.01855,0.3367265786543661,0.6632734213456338,24.66715112726466,4.368173506843486,0.3241452991452991,0.2356837606837606,0.2185897435897436,0.2215811965811965,11.05808088041802,5.649087294614674,19.67202828399158,12183.103329017293,53.16852593669774,13.287479341352617,17.1357142032885,11.390080428088794,11.355251963967817,0.5551282051282052,0.7896645512239348,0.6644693473961767,0.5718475073313783,0.1292189006750241,0.7322580645161291,0.9090909090909092,0.8817204301075269,0.7068965517241379,0.1651376146788991,0.4912790697674418,0.7167883211678832,0.5938864628820961,0.5322376738305942,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044605293837373,0.0065858237353493,0.008850546681299,0.0111105458615251,0.013109777836632,0.0149212630548302,0.0172063433712179,0.0190504432832615,0.0213293193663666,0.0234186754708855,0.0257234396500379,0.0279874925428401,0.0303585961080836,0.0325539642577077,0.0344610168790763,0.036365895582662,0.0384862756488723,0.0406396774595785,0.0428794503435352,0.0576862884210087,0.0717362664937998,0.0845978119629458,0.097028100632632,0.1096567496074277,0.1260371854091135,0.1383514444738934,0.1498064406347045,0.1600930798544026,0.170109225772566,0.1835238648840663,0.1950394100920109,0.2060737762807627,0.2169071038251366,0.2267204697137956,0.237157344670298,0.2461989477438915,0.2552295617610401,0.2642522253176598,0.2715757222393707,0.2786750868767101,0.2856325663386217,0.2915923190546529,0.2962674868063616,0.3019092210281167,0.3072748751015184,0.3118635596926344,0.316409572779788,0.3210945170792207,0.3253941100613206,0.3238883810957578,0.3228168008131198,0.3216879680198187,0.3204130262112788,0.3190285204991087,0.3176922370796487,0.3159361099238574,0.3166157585312182,0.3167900432530388,0.3177463177463177,0.3178482271899694,0.3187670852977299,0.3203225061414744,0.3213957553618251,0.3213803088803089,0.3233985765124555,0.3238918732584528,0.3275227027370292,0.3311497468219964,0.3329469603101643,0.336695219673943,0.3390884718498659,0.3405949423530161,0.3429278861033735,0.3437797675747761,0.3475500179705283,0.3538052820753242,0.3539162867799419,0.3591470258136924,0.3609831029185867,0.0,2.483046562294967,53.88944239220268,177.78192956967865,257.2795804748323,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95700,44954,425.8411703239289,5971,61.12852664576803,4718,48.69383490073145,1872,19.237199582027166,77.3419109081298,79.71094623420447,63.33255108723839,65.08101639485442,77.11264396567287,79.48185430784645,63.24662152475438,64.99748127028042,0.2292669424569311,229.0919263580236,0.0859295624840044,83.53512457399859,158.76168,111.6588622310947,165895.1724137931,116675.92709623271,398.16385,262.7921489826052,415460.762800418,274007.5911147535,380.56938,185.26787779564623,393480.9508881922,190402.7382300882,2720.86476,1247.342122678525,2811477.7429467086,1271804.8576434818,1135.04049,502.4896804910068,1169931.7241379311,508994.4696780282,1831.86502,769.2271303927769,1884786.896551724,778014.1457518723,0.37913,100000,0,721644,7540.689655172414,0,0.0,0,0.0,34394,358.77742946708463,0,0.0,34844,359.90595611285266,1571976,0,56375,0,0,0,0,0,69,0.7105538140020898,0,0.0,1,0.0104493207941483,0,0.0,0.05971,0.1574921530873315,0.3135153240663205,0.01872,0.3481943112815596,0.6518056887184404,24.540691034256945,4.331712667265755,0.3192030521407376,0.2414158541754981,0.218524798643493,0.2208562950402713,10.90895016747353,5.593107646900749,19.904123330496464,12107.543408770278,53.44412356666604,13.725566945820155,17.032437773658184,11.344048115431518,11.342070731756175,0.5671894870707928,0.7945566286215979,0.6952191235059761,0.5945683802133851,0.1065259117082533,0.7420127795527156,0.9327146171693736,0.8578947368421053,0.7124463519313304,0.1682692307692307,0.5040392383150606,0.71045197740113,0.6403197158081705,0.5601503759398496,0.0911270983213429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019948963058976,0.004337691294213,0.0066342057212416,0.0090192573332249,0.0112661162402895,0.0135721267410605,0.0157599111083927,0.0180860618927084,0.0201860179885527,0.0223320744675407,0.0246130189646335,0.0264403577406072,0.0288552507095553,0.0308153551338319,0.0328359441107877,0.0349400953099641,0.0370239956917532,0.0388854296388542,0.0409786632283824,0.0428633957230397,0.0574209652320128,0.0715452090355266,0.0854684713041653,0.0975576405250757,0.1100773231220397,0.1255409423241739,0.1374949606399456,0.1480677099968061,0.1578952991452991,0.1677519712492624,0.1797404275943777,0.1919201757518695,0.2033112870942476,0.2139060825441263,0.2239661240651121,0.2349861069598043,0.2445081290840562,0.2539598673486594,0.2622844827586207,0.2692897525692966,0.2766698285634963,0.2834944185719969,0.2897331203029765,0.2949049775924461,0.299599076661402,0.3039296679449082,0.3085181009645497,0.3131751383675806,0.3174161304105758,0.3218107538218239,0.320496944571567,0.3191451346893897,0.3186681852054948,0.31745413637937,0.3173524787136203,0.3157170593001391,0.3136424678094636,0.3143751844443715,0.3161479761681205,0.3168258502186914,0.3173559601408556,0.3178988557538388,0.3185862995298858,0.3187792481135666,0.3197062718189479,0.3220060504902983,0.3231015005420208,0.3261882278879446,0.3298947294299897,0.3328949990037856,0.3360980722781753,0.3389911673938491,0.3446972083937236,0.3498473282442748,0.3531689808255407,0.3566674589969099,0.3613868947609592,0.3611111111111111,0.3625486922648859,0.3687022900763358,0.0,2.367790687188442,54.57201123986789,177.14782908114023,259.61975031187734,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95700,45393,429.36259143155695,6094,62.215256008359454,4746,48.913270637408566,1838,18.798328108672937,77.33810060160408,79.72344706034593,63.31256206328344,65.07596749199531,77.10991741233293,79.49704111495788,63.2278861859421,64.99427977199908,0.2281831892711494,226.40594538805203,0.0846758773413398,81.68771999623914,158.79468,111.72554795234464,165929.6551724138,116745.60914560567,400.07652,263.614718023734,417384.84848484845,274791.8616271546,387.26437,189.31607653243856,400715.3500522466,194607.3176742872,2684.32888,1248.9349858394964,2769354.1065830723,1269483.9329222213,1142.06411,512.286875788279,1177217.554858934,519167.8273979153,1798.22394,755.9643788018291,1841723.3228840125,758941.6935912721,0.38226,100000,0,721794,7542.257053291536,0,0.0,0,0.0,34548,360.282131661442,0,0.0,35440,366.25914315569486,1567652,0,56318,0,0,0,0,0,67,0.7001044932079414,0,0.0,0,0.0,0,0.0,0.06094,0.1594202898550724,0.3016081391532655,0.01838,0.3374194562313374,0.6625805437686626,24.470198980888227,4.307058741615118,0.3268015170670038,0.2473662031184155,0.2094395280235988,0.2163927517909818,11.496620693153185,6.133423717330881,19.49853820511155,12191.100508754278,53.8741428075557,13.967813479779316,17.662651627971417,11.082127275718513,11.161550424086446,0.5762747576906869,0.7921635434412265,0.7111540941328175,0.5734406438631791,0.1285296981499513,0.7507418397626113,0.922077922077922,0.8729411764705882,0.7531380753138075,0.1576576576576576,0.5070629782224838,0.7078651685393258,0.650088809946714,0.5165562913907285,0.1204968944099378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002300784496564,0.0047068370866301,0.0070359615814161,0.0092078785291786,0.0114365950692402,0.0137503946872549,0.0159822940252534,0.0183030835384599,0.0207496037224523,0.0228433932319664,0.0250105107722597,0.0272523771383977,0.0291084446363757,0.031285721641522,0.0333828505405628,0.0354249338624338,0.0374600084901069,0.0396522388679088,0.0417398717135698,0.0440425842205045,0.058868373783366,0.0724275096828221,0.084915954924139,0.0977577249111293,0.1100940650440798,0.1257721926038757,0.137788341149757,0.1494085202891915,0.1600286395161204,0.1696722630477927,0.1826879565582778,0.1955806249052681,0.2067467833583698,0.2175944671211739,0.2272852347146552,0.2373942826739971,0.2464650300444524,0.2555746912954896,0.2627657641286571,0.2700394368780667,0.2766196465383457,0.2832451168673006,0.2894440693225298,0.2940569962474073,0.2993412256605975,0.3048033964406487,0.3102363586234554,0.3152589458660414,0.3194023274499131,0.3232436571006151,0.3217117396045068,0.3198910306682627,0.3187213968879814,0.3183150659215295,0.3185044397588572,0.3181456304733909,0.3164568970969578,0.3173593811459289,0.3183183183183183,0.3191777647037849,0.3199610625432898,0.321395449791827,0.322067969093536,0.3226549741616518,0.3236862330675377,0.3254776904928573,0.3259150058118107,0.3304424058361251,0.3356719022687609,0.3381535915520706,0.3423942394239423,0.3447588053120571,0.3478747203579418,0.3509680324178298,0.3550657529172069,0.3567986837466212,0.3509274619212788,0.3512272999401317,0.3532284319045035,0.3598786499810391,0.0,2.607741037239289,58.69709940643297,170.86966130376103,255.0590513722075,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95656,44628,424.61528811574806,5828,59.891695241281255,4612,47.69172869448858,1785,18.273814501965376,77.27782633283482,79.68834063462104,63.2892740309558,65.0719991598051,77.06143150779158,79.47525416244325,63.209512033329,64.99653026184293,0.2163948250432383,213.08647217779253,0.0797619976267967,75.4688979621676,160.0599,112.56451670287784,167328.65685372584,117676.3785887742,398.83008,261.8566715687475,416430.6786819436,273236.9339808768,379.49398,183.70180635503445,393975.23417245125,189860.47087637283,2646.2162,1195.6469000516477,2736140.754369825,1219697.143986418,1129.6769,489.7387513760707,1163975.1609935602,494975.6746843581,1754.77694,720.8292154332588,1797320.105377603,719971.0537387562,0.37632,100000,0,727545,7605.84803880572,0,0.0,0,0.0,34402,359.09927239274066,0,0.0,34620,359.1724512837668,1565804,0,56197,0,0,0,0,0,83,0.8676925650246717,0,0.0,0,0.0,0,0.0,0.05828,0.1548681972789115,0.3062800274536719,0.01785,0.3299525601177818,0.6700474398822183,24.525964700298623,4.406091747341102,0.3248048568950564,0.2346053772766695,0.2192107545533391,0.2213790112749349,11.123903235464812,5.678436766152205,18.72099733000305,11959.932106479197,51.99700807910404,12.998618890837696,16.89546822010584,11.053519857290055,11.049401110870448,0.5732870771899393,0.8022181146025879,0.7162883845126836,0.5736894164193868,0.1204701273261508,0.7402707275803723,0.905852417302799,0.8958904109589041,0.7440758293838863,0.1643192488262911,0.5157434402332362,0.7431059506531205,0.6584289496910856,0.52875,0.1089108910891089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021380945625519,0.0046142300827519,0.0068016161452094,0.0089636879173145,0.0110483747901724,0.0132231741730422,0.0152779194288628,0.0174246989490026,0.0193940385834987,0.0215117648866534,0.0235384615384615,0.0255354116378203,0.0277000329272308,0.0296212316413295,0.0317368546030828,0.0336346523798688,0.0354803945950426,0.0371316428882935,0.0389922577422577,0.0410506120576397,0.0555102723263736,0.0694154980467727,0.0830805403646516,0.0959747434885556,0.1080544915424145,0.1236451011940045,0.13517617823843,0.1465540202209603,0.1569321597022428,0.1668545538484663,0.1797521551724138,0.1918275425242802,0.2034719198955158,0.2133924175283111,0.2220730190527555,0.2324362653312208,0.2413904734262845,0.2501153253299429,0.2581893274936743,0.2657617963126151,0.2726253237143914,0.2794371990838125,0.2854236887233162,0.2910167014113531,0.2960160330377748,0.3004204011687399,0.3046324458963864,0.3094520147079405,0.3146377487562189,0.319577291977255,0.3181977417877065,0.3170667842672473,0.3158050680060951,0.3141439277756879,0.3138077804565883,0.3113680626907328,0.3101441461442096,0.3107192208988616,0.3114521316635872,0.3121524735835225,0.3127859017622797,0.3139024100676718,0.3158137390502535,0.3170748056126553,0.3175930598611011,0.3189518332509303,0.3207396643587771,0.3247580314637914,0.3278068438914027,0.3324275724275724,0.3348594451057595,0.3406441309555496,0.3441546137813427,0.345841006752609,0.3461865608165579,0.3513093387540356,0.354424504950495,0.3557394002068252,0.3591687728166245,0.3566190659976843,0.0,2.0333590031137883,52.04567528659788,171.8692470226288,259.24401463875245,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95820,45367,430.2650803590065,5839,59.6117720726362,4581,47.25527029847631,1804,18.503443957420163,77.39792083527668,79.70262479577744,63.37134666233783,65.07184434775169,77.17492273109168,79.47946109716251,63.288094004169416,64.99061501548955,0.2229981041849953,223.1636986149255,0.0832526581684121,81.22933226214002,158.70536,111.53820389800012,165628.6370277604,116403.88634731804,398.81925,262.6583424829572,415682.59236067627,273587.5880846827,377.83798,183.81841520445712,390171.8743477354,188636.9130254356,2626.84784,1194.8717022597343,2711054.268419954,1216920.456459741,1074.27707,471.46709958720766,1108902.7029847633,479800.2153195648,1773.67696,741.6811525812848,1820620.6219995825,748066.6267547399,0.38243,100000,0,721388,7528.574410352745,0,0.0,0,0.0,34455,359.00647046545606,0,0.0,34516,356.2304320601127,1574968,0,56429,0,0,0,0,0,70,0.720100187852223,0,0.0,0,0.0,0,0.0,0.05839,0.1526815364903381,0.3089570131871896,0.01804,0.3379705400981996,0.6620294599018003,24.628341896581592,4.41269204569639,0.3075747653350796,0.2447063959834097,0.2202575856799825,0.227461253001528,11.04282371445431,5.505721144876002,19.124739208198758,12111.68691473611,51.52039422012498,13.278052113399657,15.769681046711405,11.160135919327958,11.312525140685986,0.5540275049115914,0.7850133809099019,0.6976579134137686,0.5698711595639246,0.0959692898272552,0.7377049180327869,0.9394736842105263,0.8841463414634146,0.7396694214876033,0.138755980861244,0.4918176504967855,0.7058029689608637,0.6410730804810361,0.516297262059974,0.0852340936374549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020652790151453,0.0044685831247656,0.0069070439677468,0.0091690951737863,0.0112739915419648,0.0134538275223382,0.0156507917099712,0.0180260137719969,0.020158571224227,0.0223650017392727,0.0243122790840633,0.0264480784619488,0.0285511743070252,0.0306145550341648,0.0327142297623219,0.0347843145352799,0.0366324239884961,0.0389080054724099,0.0405798305366339,0.0425235201065689,0.0570489751212642,0.0708585652578624,0.0842604145914376,0.0973137780581401,0.1098590658500848,0.1253819073696229,0.1370428106342591,0.1477763821769953,0.1584154184739642,0.1685741561102232,0.1808370850655924,0.1929230536233922,0.2047231252650234,0.2154502214203706,0.225227107757957,0.2353931153603419,0.2447618729022402,0.2536002967926161,0.2619735872584027,0.269859064702114,0.2769520595441727,0.2831978319783197,0.2898184053721744,0.2948714880582013,0.3001151445366947,0.3053198553825721,0.3097128589263421,0.3140960552368381,0.3184091819721077,0.3227321771625569,0.3220764235496163,0.3205441132106519,0.3192063023971015,0.3178354866122225,0.3163024961113991,0.3142203234665853,0.3135145367638939,0.3150626656631434,0.3157742303695248,0.3171205186201001,0.3167697222170331,0.3178378591416072,0.3178637816161574,0.3184946813265397,0.3199153561294666,0.3201218718262545,0.3210807414388941,0.3239347778093165,0.3247812181492285,0.3294570566756628,0.3337595907928389,0.338290953675569,0.3389369904569297,0.3418659738671964,0.3463359212270403,0.349423374152895,0.3485617597292724,0.3534169025475131,0.3583673469387755,0.3651877133105802,0.0,2.153239744583163,50.52671271557725,176.09212887614382,252.68117422329,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95549,44974,427.91656636908806,5887,60.346000481428376,4657,48.11144020345581,1827,18.691980031188184,77.19945181010942,79.67056724006143,63.224607941291474,65.05368842724316,76.96650777399633,79.44154276912194,63.13660942902013,64.97046978577197,0.2329440361130963,229.02447093949263,0.0879985122713407,83.21864147119129,158.73396,111.6704751125455,166128.33205999015,116872.46869412082,396.76224,260.5135303336889,414608.7661827963,272013.1245054254,374.33482,181.9848524465946,388224.2095678657,187706.55046415105,2661.882,1224.868012501447,2750944.6671341406,1246989.6414420323,1098.92908,487.1231680880004,1135150.8231378663,494855.8634080197,1794.70594,763.7878346643403,1837928.8532585371,762730.0353531361,0.37845,100000,0,721518,7551.287820908643,0,0.0,0,0.0,34292,358.2141100377816,0,0.0,34161,354.0591738270416,1567913,0,56259,0,0,0,0,0,79,0.8163350741504358,0,0.0,0,0.0,0,0.0,0.05887,0.1555555555555555,0.3103448275862069,0.01827,0.332036947010209,0.667963052989791,24.458627851312738,4.363177047406395,0.3227399613485076,0.2331973373416362,0.2235344642473695,0.2205282370624866,10.90836905603522,5.4365282721686805,19.52376247697545,12083.274391787963,52.97574927028687,13.04925660841918,17.01959031736969,11.715527043188969,11.19137530130904,0.5636675971655573,0.787292817679558,0.697272122421823,0.5734870317002881,0.121713729308666,0.7185483870967742,0.922680412371134,0.845360824742268,0.6932773109243697,0.1769911504424778,0.5074626865671642,0.7120343839541547,0.6457399103139013,0.5379825653798257,0.1061173533083645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021692633627636,0.004240985369615,0.0065500853034365,0.0085102489019033,0.0106181536832675,0.0125486758139819,0.0148288003265805,0.0173206621704475,0.0195047073270569,0.0216747455907521,0.0236816982662163,0.0258503681158228,0.0279296814656903,0.0299979368681658,0.0320570454193148,0.0339426938843112,0.0363298832216714,0.0381533408857062,0.04009375,0.0419059152694548,0.0560809255811034,0.0704697986577181,0.0837398032125136,0.0966722164850681,0.1082372340313084,0.1242193878091966,0.1369100812800544,0.1476247905482566,0.1585437714946913,0.1686634259657575,0.1812664024278293,0.1930152046275897,0.2050579879332729,0.2149267158153414,0.2248874072765807,0.234903951914851,0.2441765449925562,0.2535416360947747,0.2617361806757126,0.2692908681465141,0.2761477150116598,0.2826576576576576,0.2890499863554928,0.2945713153057915,0.2989853960365891,0.3042403569265755,0.3094314028411017,0.3142069528817193,0.3182621119625925,0.3229046730456187,0.3218935710426796,0.3202758620689655,0.3191068958703813,0.3174223998146861,0.3168715083798882,0.31478068558791,0.3126270002540005,0.3133202694024075,0.3141945773524721,0.3155338065533806,0.3165747831486255,0.3184225665033425,0.3195965296495957,0.3200897867564534,0.3220515050490409,0.3232212092633343,0.3249792340961819,0.3283177186839532,0.3312528650516591,0.3331349442526683,0.3367643057948671,0.3371576609918579,0.3404775333709344,0.3403511438777837,0.3424055368499813,0.3407100591715976,0.3461363980039316,0.3522050059594755,0.3499323410013532,0.353811149032992,0.0,2.401912505932672,54.29427969485076,173.75160584156149,258.7858878658351,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95678,45192,427.8517527540292,5977,61.28890654068856,4715,48.65277284224169,1844,18.86536089801208,77.33990302576841,79.73078949864416,63.32261558699434,65.08894680228603,77.10938131996335,79.50172083840378,63.23657270438697,65.00633065669729,0.2305217058050601,229.0686602403724,0.0860428826073658,82.61614558874442,159.56886,112.22917703269778,166776.96022074038,117298.83257666108,400.27144,264.108115177515,417719.24580363306,275405.10376211343,385.50272,187.89758229797383,398702.5334977738,193152.3843207052,2726.26504,1258.3229291261114,2815358.055143293,1281138.6345096172,1116.88553,504.2052669819619,1150151.7172181692,509813.97169388575,1808.39194,768.5258645185612,1852366.6882668952,770992.0383620287,0.38073,100000,0,725313,7580.770919124564,0,0.0,0,0.0,34490,359.84238800978284,0,0.0,35345,365.21457388323336,1566052,0,56168,0,0,0,0,0,75,0.7838792616902528,0,0.0,0,0.0,0,0.0,0.05977,0.1569878916817692,0.3085159779153421,0.01844,0.3357792311373425,0.6642207688626576,24.335580401638406,4.418003619296746,0.311983032873807,0.2364793213149522,0.2271474019088017,0.224390243902439,11.263726313757944,5.845671064293907,19.848583976850964,12152.183409261872,53.66133293519336,13.411758552143736,16.666683163971058,11.93065747295364,11.652233746124931,0.5639448568398727,0.7937219730941704,0.6961250849762066,0.580765639589169,0.1209829867674858,0.7316118935837246,0.9215686274509804,0.8438287153652393,0.7419354838709677,0.1777777777777777,0.5016002327611289,0.7199434229137199,0.6415270018621974,0.5321992709599028,0.1056422569027611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0047133951649688,0.0070826272691296,0.009446227603299,0.011510732843212,0.0136810602821718,0.0158091083295959,0.017769657875398,0.0202302093555773,0.0226821429302544,0.0245732738735968,0.0267609681988954,0.0289160591072218,0.0313851922046887,0.0335531679928992,0.0355680549236941,0.0376390874619257,0.0394855665929685,0.0415075889188261,0.0436364394500099,0.0582078014332574,0.0729092508061476,0.0865149559871161,0.0995202827806766,0.1115741277996392,0.1267006622796809,0.1391968595830459,0.1500766348773842,0.1607873292535751,0.1712214943551586,0.1836273179556761,0.1958191772521694,0.2072681404477888,0.2177449329864223,0.2262161567246313,0.2361827968898832,0.2453221757322175,0.2539294996568368,0.2621929774802881,0.2700377963578055,0.2761313159355913,0.2826389457313579,0.2894649660427364,0.2948426196521822,0.3006869098764533,0.3055552134773346,0.3102840205605373,0.3141988964324764,0.317755072970488,0.3224474177288681,0.3211660158879763,0.3205216386496822,0.3191123635082775,0.3183658712942878,0.3172573739295908,0.3138611285410385,0.312922157014727,0.3130127994748933,0.3135562869860327,0.3138184150513113,0.3151261289900331,0.3156004577923359,0.315484653341139,0.3163073620180696,0.3171834780726021,0.3175679199040517,0.3196340524980762,0.3238781093745086,0.3268299529791564,0.3296824957494761,0.3312165472194502,0.3322024913861648,0.3357829282080271,0.3403932285735975,0.3434022257551669,0.3468809073724007,0.3538155072019613,0.3621886484279297,0.3621606493143017,0.3661371561410306,0.0,2.459977059613451,55.68295470989884,178.76270374517478,255.04955320597185,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95780,45207,428.8786803090416,5923,60.55543954896638,4649,47.901440801837545,1770,18.093547713510127,77.331780499572,79.6722507025047,63.32970022966426,65.06257587058916,77.10669887041854,79.44981146353915,63.24480135531416,64.98154362555093,0.2250816291534647,222.4392389655492,0.0848988743501024,81.03224503823014,159.324,112.10552129879036,166343.7043224055,117044.81238128038,399.95578,263.69877083008095,416948.2564209647,274687.8584569648,384.50659,187.420511546196,397409.772395072,192629.94843152733,2647.17504,1232.7076962090862,2728149.9686782206,1251362.1802141224,1089.39071,492.3963070407573,1119054.7400292335,495757.1800383768,1721.6734,734.5074632511565,1760635.727709334,734618.1501831185,0.38028,100000,0,724200,7561.077469200251,0,0.0,0,0.0,34612,360.69116725830025,0,0.0,35181,363.1969095844644,1566982,0,56212,0,0,0,0,0,64,0.668197953643767,0,0.0,0,0.0,0,0.0,0.05923,0.1557536552014305,0.2988350498058416,0.0177,0.3351055260190108,0.6648944739809892,24.46483525300402,4.356841136865744,0.3275973327597333,0.2391912239191224,0.2252097225209722,0.208001720800172,11.477688702465157,6.107151081374456,19.003194351178447,12104.400425440845,52.90781086850619,13.43667285695949,17.25681169908455,11.538359906647694,10.675966405814457,0.5760378576037858,0.8093525179856115,0.701247537754432,0.559694364851958,0.1282316442605998,0.748650732459522,0.9212962962962964,0.8564356435643564,0.7272727272727273,0.2328767123287671,0.5092482100238663,0.7382352941176471,0.645218945487042,0.5093167701863354,0.0975935828877005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020055710306406,0.004004298284741,0.0063522989030614,0.0085334633670608,0.0108212560386473,0.0132078738072689,0.0154564548031239,0.0176303646535179,0.0196683772566498,0.0218357151631792,0.0238039099100946,0.0260182970028646,0.0279688640733771,0.0297186769265634,0.0320463200916493,0.0344260769779487,0.0364873542266503,0.0385532921213127,0.0404776255897574,0.0422866663195709,0.0566222815878448,0.0702503111892135,0.0837159569784263,0.0964965743348325,0.1085435501886156,0.1245297374984148,0.1361627253744316,0.1470441228079504,0.1585395788642354,0.1683881198302833,0.181144911623501,0.193570022284243,0.2051505133112928,0.2152481571406697,0.2256339144215531,0.2360683344042897,0.2459078584738292,0.2545583388637054,0.2630725439720575,0.27023561468184,0.2770095273332716,0.2840409613766015,0.2904439606209769,0.2954706171418983,0.3009937556187282,0.3064249599210753,0.3105970467041569,0.3150293806482862,0.3191218993529648,0.3227037951942511,0.3212347308453758,0.3192954957927734,0.3194115990990991,0.318035345288499,0.3169546676968337,0.3144980842911877,0.3121444981383189,0.3122176405841862,0.3133488419828265,0.3140776179085294,0.3143339270647792,0.316749945687595,0.3177756334955529,0.319410264441362,0.3206428760752753,0.3222976501305483,0.3225585770480588,0.3262576147710858,0.3283394007280873,0.3307957654335672,0.3327712710203709,0.3375731772219265,0.3412980098871847,0.3440745265729993,0.3472693032015066,0.3528713811105837,0.3569892473118279,0.3591606133979015,0.3626886145404664,0.3649068322981366,0.0,2.441734321737368,56.39084931694561,173.74512675541678,248.2752035644804,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95681,45135,428.3818103907777,5981,61.16156812742342,4663,48.08687200175584,1812,18.5198733290831,77.34192318165195,79.71791942574208,63.32298576779221,65.07524307538226,77.1104843736814,79.48888250395864,63.235451202546216,64.99104779071486,0.231438807970548,229.0369217834467,0.0875345652459955,84.19528466740189,158.8609,111.73529501023,166031.81404876622,116778.9791183516,399.49357,263.4899860794998,416847.8590315736,274705.1306732788,386.6001,188.2855090556752,399787.5126723174,193413.47067055837,2685.25324,1241.842616099817,2772105.2246527523,1263539.653745066,1112.22388,492.2371791186682,1145962.374975178,497989.7358082245,1781.37282,762.8703890359266,1823922.3461293257,764601.7838927623,0.37979,100000,0,722095,7546.900638580282,0,0.0,0,0.0,34478,359.6847859031574,0,0.0,35223,363.886247008288,1567590,0,56241,0,0,0,0,0,81,0.8361116627125553,0,0.0,1,0.0104513957839069,0,0.0,0.05981,0.1574817662392375,0.3029593713425848,0.01812,0.3351429027622545,0.6648570972377454,24.419566566958725,4.333150018039096,0.327042676388591,0.2322539137894059,0.2159553935234827,0.2247480162985202,10.990450084047604,5.595581885575906,19.426446482806377,12056.755017824164,52.89485050094094,13.0134656633178,17.27477907909163,11.150456442814637,11.456149315716877,0.5612266781042248,0.7922437673130194,0.6983606557377049,0.5749751737835154,0.1097328244274809,0.7160493827160493,0.9375,0.8585858585858586,0.7024793388429752,0.1157024793388429,0.5016335016335016,0.7016491754122939,0.6421612046058459,0.534640522875817,0.107940446650124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.004520529895298,0.0068474390577923,0.0088670851362057,0.0110135966562598,0.0136018407281464,0.0158228493362967,0.0181552694188884,0.0203484805104503,0.0221880919469615,0.024105650626993,0.0263395699410568,0.0283566124287741,0.0303436195971356,0.0324115649418346,0.0345173465694638,0.0367205303501139,0.0391202358216391,0.040899306386032,0.0427221290208296,0.0576161776533628,0.0717875691070531,0.0851325111519286,0.0977470509623175,0.1092597477971825,0.1242181464116756,0.1353331563578444,0.1465963566634707,0.1577968312343646,0.1686617639164743,0.1812162322466542,0.1923347740838235,0.2040565257152811,0.2146703441029682,0.2238319608965608,0.2336886662825229,0.2434653476401558,0.2522603672885726,0.2609613289760348,0.2676374218087666,0.2750506395046009,0.2810996804887469,0.288019797290897,0.2932512982885378,0.2986335675557393,0.3040186443394946,0.3089854564130829,0.3130896451625224,0.3175582812540518,0.3212049147839873,0.3196529998246111,0.3184106362144345,0.3180285307107279,0.3167668651367131,0.3156965181513254,0.3135077252562337,0.3116045165575482,0.3124620260439759,0.3129605251910485,0.3135233474833232,0.3141979816135857,0.3156334018662027,0.3166247906197655,0.3169160571696974,0.3166350471890685,0.3182668815303842,0.3186810068390135,0.3223958170262062,0.3263796832484476,0.3288471405454474,0.3316015360289135,0.3336675990922045,0.3362264150943396,0.338489398626726,0.3439241917502787,0.3465438862338267,0.3519268256110361,0.3566752628446736,0.3604556550040683,0.3553318419090231,0.0,2.574282030053806,56.47208599727014,169.47497178486748,253.11236816415877,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95743,45131,428.2506292888253,5923,60.75639994568794,4658,48.11840030080528,1837,18.81077467804435,77.32392886815877,79.68775668132757,63.31606620966248,65.06493979845811,77.09495004991795,79.46063887522047,63.231097840465225,64.98309523968284,0.2289788182408187,227.11780610710264,0.0849683691972558,81.84455877527341,158.58502,111.5342225899466,165636.15094576104,116493.34425487672,398.15247,262.1663864803774,415318.0806951944,273287.0060278839,378.75598,184.11745045755876,392717.5250409952,190052.4570950358,2662.52048,1230.0082725035825,2752350.1457025576,1256216.551502654,1113.63443,492.5766601726952,1152512.7581128648,503927.644267686,1793.58594,755.8230959899462,1839298.7685783815,760734.6329464369,0.38188,100000,0,720841,7528.915952080048,0,0.0,0,0.0,34418,358.9296345424731,0,0.0,34641,358.8565221478333,1571767,0,56448,0,0,0,0,0,58,0.6057884127299124,0,0.0,1,0.0104446278056881,0,0.0,0.05923,0.1551010788729444,0.3101468850244808,0.01837,0.3319851156770749,0.6680148843229251,24.284556416865527,4.3645431538886434,0.3327608415629025,0.2271361099184199,0.2241305281236582,0.2159725203950193,11.43424675675888,5.986420699656051,19.69056279684432,12142.5144362307,53.20440570534301,12.742904688477358,17.581014500561164,11.818904263955485,11.061582252348996,0.5674109059682267,0.7835538752362949,0.6993548387096774,0.5842911877394636,0.1192842942345924,0.722266560255387,0.91005291005291,0.8473282442748091,0.7404580152671756,0.1545454545454545,0.5104258443465491,0.7132352941176471,0.6490924805531547,0.5319693094629157,0.1094147582697201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022992697033233,0.0043394944691723,0.0064241784561674,0.0089008108272876,0.011118118566139,0.0129938900203665,0.0151397752992272,0.0172098767952473,0.0195585273338854,0.0216549944710652,0.0237043112728764,0.0256994712254222,0.0279645508194024,0.0300776663027131,0.0321235824037479,0.0340076284589065,0.0361075146304831,0.0381633436776717,0.0401805211821225,0.0423712038339323,0.0570339823563188,0.070575188835185,0.0838357888114088,0.0966015436058127,0.1087573153371645,0.1239158028347789,0.1357757477374245,0.1478429368425535,0.1580437058082156,0.168456937029652,0.1813425766448501,0.1935379225329267,0.2045397719242936,0.2155407104512207,0.2248298160143405,0.2348928630751342,0.2444570905723116,0.2541772151898734,0.2632367632367632,0.2712054851062854,0.2782470655032966,0.2848020434227331,0.2906614186297407,0.2967892936446018,0.3023303924551263,0.3072500246767348,0.3123190494692118,0.3168518707309614,0.320603953717636,0.3253704903295744,0.3246236443101494,0.3231282206729312,0.3212713729473506,0.3197921792237112,0.3186767418337597,0.317097445948429,0.3152490348712107,0.3160363433594647,0.315723893080258,0.3161846000213987,0.3165537632396422,0.316877061972777,0.3176273668793807,0.3193693894868474,0.321335031357378,0.3231117942839278,0.3256283407255771,0.3289154730048796,0.3318886539816772,0.3358108108108108,0.3393353694671103,0.3437781665871375,0.3467219812684644,0.3472676141977655,0.3464299206649037,0.349011669445106,0.3560066656567187,0.3603639240506329,0.369034994697773,0.3790627362055933,0.0,2.0564327960719955,54.97330349367119,187.0296330553441,241.96088924869872,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95779,45142,427.5571889453847,6095,62.28922832771276,4754,48.90424832165715,1884,19.179569634262208,77.4066300966336,79.74540905097304,63.35719594835807,65.08769473335447,77.16673625412533,79.51169281209447,63.26707654372478,65.00334401235908,0.2398938425082803,233.7162388785714,0.0901194046332918,84.35072099538843,158.36524,111.3829229024842,165344.4283193602,116291.59095676945,399.47027,262.29498977770874,416364.3387381368,273143.7160313939,377.3364,183.48981591601063,389990.0604516648,188480.0407786465,2768.46624,1272.9248613010252,2850111.1099510333,1288660.9186784427,1126.68532,501.5836140961143,1158005.9407594567,505355.8756054191,1855.11622,785.6243805794313,1890691.6338654608,780404.1946841398,0.38107,100000,0,719842,7515.655832698191,0,0.0,0,0.0,34422,358.6276741248081,0,0.0,34502,356.2993975714927,1577359,0,56662,0,0,0,0,0,82,0.8352561626243749,0,0.0,0,0.0,0,0.0,0.06095,0.1599443671766342,0.3091058244462674,0.01884,0.3379288735704214,0.6620711264295785,24.53138678676769,4.39676452538736,0.3245687841817417,0.2303323517038283,0.2149768615902398,0.2301220025241901,10.97565488130137,5.503446089368091,20.032283005283503,12180.30475314484,53.54592060611825,13.01990049026342,17.305163718257838,11.23998335466561,11.980873042931377,0.5473285654185949,0.7698630136986301,0.6908619572261827,0.5538160469667319,0.1160877513711151,0.7304347826086957,0.926208651399491,0.8539603960396039,0.7489711934156379,0.1466666666666666,0.4809400974491258,0.6823361823361823,0.6330114135206322,0.4929396662387676,0.1081703107019562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0045324572610573,0.0065353507677007,0.0085955518527173,0.0111166485287985,0.0133093012362273,0.0156807569176811,0.0177818608686775,0.0199108712539351,0.021971836751402,0.0241560251706397,0.0261969749830689,0.028192320342049,0.0304412279437501,0.0325536805863373,0.0346027550029945,0.0368914361382963,0.0388861819802821,0.0408619131229805,0.0428114816395798,0.0573596009766888,0.0720381526104417,0.085167714884696,0.0979126815630715,0.1105620297979052,0.1261425959780621,0.1382037121445001,0.1491339068298544,0.1597268167751574,0.1696340575052491,0.1818983977359546,0.1944180111596522,0.2059533124673969,0.2160214055588926,0.2261151395297737,0.2362483540073696,0.2459932412085522,0.2551148882593642,0.2636258477171176,0.2714027377191778,0.2781439341381064,0.2854588587255028,0.2918776321393082,0.2969253434584197,0.3023419658908702,0.3067517933295536,0.3121462559479088,0.3165858562720319,0.3219383921863261,0.32644600821198,0.3250431359861965,0.3238217156700804,0.3221736678883563,0.3209876543209876,0.3198942694643679,0.3177868877535411,0.3158734169219593,0.3152572326220709,0.3155086574569676,0.3157586512866016,0.3167463043153651,0.318114758935421,0.320004169707078,0.3197996661101836,0.3191326591599129,0.3200777202072539,0.3213982451174639,0.3245958934032328,0.3270900910327509,0.3305755820824961,0.333995754482634,0.3365758754863813,0.3376153654277875,0.3412215460897002,0.3445502449847462,0.3472496801953715,0.349307774227902,0.3551271860095389,0.3492626979792463,0.3514132925897631,0.0,2.882850408841798,54.46602147240069,175.05088938868843,262.0388599577815,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95692,45049,426.7859382184509,5931,60.93508339255111,4667,48.22764703423484,1876,19.31195920244117,77.29491858535671,79.69700584626398,63.29396199958445,65.07387667534532,77.06284142595341,79.46435762321767,63.20872281495865,64.99062051815322,0.2320771594033033,232.6482230463114,0.0852391846258058,83.25615719209623,159.56688,112.28980026451244,166750.49115913556,117345.02389385994,402.38077,264.61924660762975,419970.687204782,276007.21753921936,386.463,187.93004948014817,399542.9293984868,193162.41457391565,2702.8638,1241.7544420925888,2797242.2773063583,1270354.5981822803,1135.7005,500.6887506967421,1174313.1296242112,510713.5086493564,1842.10064,764.0955578673816,1898169.3767504075,775467.6372725974,0.3793,100000,0,725304,7579.567779960707,0,0.0,0,0.0,34703,362.0887848513983,0,0.0,35376,365.4328470509552,1563922,0,56197,0,0,0,0,0,69,0.7210634117794591,0,0.0,0,0.0,0,0.0,0.05931,0.1563669918270498,0.3163041645590962,0.01876,0.3345138441725692,0.6654861558274308,24.48431112208576,4.349815421046688,0.3205485322476966,0.2380544246839511,0.2114848939361474,0.2299121491322048,11.048366251295178,5.6990134571804285,19.921877858871376,12070.594219396946,53.02655610546947,13.358074704617747,17.072155735209886,10.88073041025325,11.71559525538858,0.5658881508463681,0.7965796579657966,0.7038770053475936,0.5835866261398176,0.1183597390493942,0.7382875605815832,0.9237875288683602,0.8743455497382199,0.7156862745098039,0.1552511415525114,0.5036453776611257,0.7153392330383481,0.6454219030520646,0.5491698595146871,0.1088992974238875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023315458148752,0.0043735476473154,0.0063982125628395,0.0085811600833714,0.0110548978490792,0.0132092587118934,0.0154598146863137,0.0177969391716556,0.0199392308715357,0.0218507022342419,0.0242091009806737,0.026412303140506,0.0288957263550016,0.0306715587253164,0.0330935103275287,0.0352130883067727,0.0372538860103627,0.0391827072821279,0.0411647213032894,0.0431528695615918,0.0575454649911733,0.0713388332844759,0.0843503720105359,0.0973990446328991,0.1097618871786215,0.1254589121533692,0.1373955867837014,0.1485377253031545,0.1593269230769231,0.1697528215251255,0.1820835397772559,0.1945264752014711,0.2055591186285913,0.2156095641911089,0.2246962449832316,0.2351729864378632,0.244020526550647,0.2527176971033738,0.2601042506558252,0.2675479832144741,0.2747906847474899,0.2818681961840103,0.2880637484163539,0.2934670473357165,0.2981257748498918,0.3038493341725597,0.308495045287699,0.3130879788168497,0.3174670963233296,0.3219141052520538,0.3208011621963358,0.3196400357216459,0.3180493983533882,0.3167196072769275,0.3151970538445546,0.3135588028061146,0.3111981230778986,0.3121333136123848,0.3119305263517787,0.3126061841658172,0.3139517402089754,0.3145405887600356,0.3158723493596473,0.315814245371823,0.3168769030013049,0.316216499162479,0.318158392028861,0.32079226686884,0.3248988210452226,0.3279732526667728,0.3300837566936702,0.332410856838744,0.3349710254472159,0.3371986573085139,0.3415300546448087,0.3403722261989979,0.3425869432580842,0.3416666666666667,0.340797378481704,0.3395015105740181,0.0,2.167631332277897,54.062888937017306,178.5218039463509,254.942225601454,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95718,44753,423.974592030757,5821,59.59171733634217,4610,47.5563634844021,1884,19.306713470820533,77.3593554540744,79.73019944644224,63.33143217950936,65.08370000822138,77.12623848395734,79.49968556241926,63.2443639559218,65.00020264304774,0.2331169701170665,230.513884022983,0.0870682235875648,83.49736517364192,159.53608,112.23587484098438,166673.0186589774,117256.81150983556,400.47214,263.4505435814272,417770.9730667168,274620.154311404,380.29854,185.77081432856127,393629.5576589565,191176.389997564,2655.74028,1227.5067356092109,2741220.5854698177,1249139.6184907514,1106.08159,493.1988004218215,1136822.938214338,496745.3906814056,1844.10546,776.6639065799259,1891076.6626966717,780047.044841362,0.37728,100000,0,725164,7576.046302680791,0,0.0,0,0.0,34677,361.6247727700119,0,0.0,34690,358.6995131532209,1567044,0,56189,0,0,0,0,0,79,0.8253411061660293,0,0.0,0,0.0,0,0.0,0.05821,0.1542885920271416,0.3236557292561415,0.01884,0.3310976607230492,0.6689023392769508,24.432048352217794,4.3898862312206886,0.3253796095444685,0.2338394793926247,0.2145336225596529,0.2262472885032538,11.30389922689093,5.911824757360977,20.17292199709757,12026.727107870423,52.35216215846966,12.944597017091564,17.02547148284047,10.905336979739856,11.47675667879776,0.5587852494577007,0.7792207792207793,0.708,0.5631951466127402,0.112176414189837,0.7257551669316376,0.9187817258883249,0.8561151079136691,0.7048458149779736,0.1545454545454545,0.4961217183770883,0.6988304093567251,0.6509695290858726,0.520997375328084,0.1008505467800729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020459425515537,0.0043184283353776,0.0065958375191532,0.0090085515224147,0.0112565205454379,0.0136418703615095,0.0158927570212549,0.0178735479656207,0.0197808263989695,0.0220518228073587,0.0243552274009126,0.0267463716759621,0.0287151734639285,0.0309911395013393,0.033299280768556,0.0355079130443771,0.0373223178142891,0.038956593890992,0.0407618017943093,0.042612807799675,0.057534875950213,0.0711676731310636,0.084736339700622,0.0973606729758149,0.109508293526515,0.124920661786485,0.1369009720276752,0.1477530422562202,0.1580555882070078,0.1680419783026258,0.1805624393923068,0.1925308508335137,0.2033136789887078,0.2140488723038706,0.2233775388817905,0.2328975237588298,0.2416762534484491,0.2504556398082938,0.2587296723748567,0.2658944305044741,0.273376300290432,0.2796604223672209,0.2856973953345393,0.2917349931174816,0.2971995728984663,0.3024154827272056,0.3072361507281189,0.3123665208990135,0.317252445778767,0.3212675647886953,0.320002688533405,0.3187646889044654,0.3171759747102213,0.3159706221198157,0.3147796971762126,0.3137135181340823,0.3120860404970668,0.3119624578959417,0.3119741100323625,0.3128559225512528,0.3132766881269651,0.3134711445438212,0.3144721383014434,0.3164667638157157,0.3183240277242972,0.318933847476616,0.3186763114427294,0.3220547039753234,0.324875412367516,0.3273144848340857,0.3298555742858444,0.3359910700047839,0.3362462006079027,0.3403657888745541,0.3412039197386841,0.3428839830906529,0.3407059536433873,0.3422417231751097,0.3486610765485529,0.3567141785446361,0.0,2.289051650257501,54.8974130767913,169.0276155917722,254.37628232443777,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95886,45161,427.3720876874622,5853,59.90446989132929,4611,47.473040902738674,1843,18.866153557349357,77.4394230829848,79.71814428044564,63.39129033748679,65.07667032006403,77.21441456911445,79.49393490461162,63.30959365125531,64.99717445118732,0.2250085138703497,224.20937583402176,0.0816966862314743,79.49586887670534,159.75124,112.300837246848,166605.38556202158,117119.11775112948,400.07665,263.51442524205777,416625.5136307699,274204.7513821236,380.88749,185.5196761100829,392968.8797113238,190223.3792994604,2659.98044,1213.8061986022271,2741971.716413241,1233786.5182094593,1099.8921,486.5325425083566,1135190.7682039088,495554.9801488776,1814.1878,749.6050151321758,1859372.3588427925,756284.8552831959,0.38081,100000,0,726142,7572.972071000981,0,0.0,0,0.0,34533,359.5102517572951,0,0.0,34769,358.2900527709989,1570917,0,56396,0,0,0,0,0,77,0.8030369396992262,0,0.0,2,0.02085810232985,0,0.0,0.05853,0.1536986948872141,0.3148812574747992,0.01843,0.3393349553933495,0.6606650446066504,24.449622045002293,4.319823049891759,0.3133810453263934,0.2376924745174582,0.2183908045977011,0.2305356755584472,10.909009425947122,5.6134625523851325,19.41342600729785,12100.306817917251,52.089035102595794,13.128858374150708,16.32408676687079,11.107338834506097,11.528751127068196,0.5601821730644112,0.7864963503649635,0.7044982698961938,0.5749751737835154,0.1166509877704609,0.742998352553542,0.9303482587064676,0.8715846994535519,0.7587719298245614,0.1651376146788991,0.4948483956432146,0.7031700288184438,0.6478220574606117,0.521181001283697,0.1041420118343195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022777890261186,0.0047934654829948,0.0071009038436178,0.0094528322959924,0.0115462408651549,0.0138072078305284,0.0156862745098039,0.017890656874745,0.0199521883045237,0.0220544610159782,0.0240886083731224,0.0264305428726798,0.0283615064481323,0.0303669771990323,0.0324745615934184,0.0344567664126551,0.0365090367366362,0.0383172728214692,0.040602128211783,0.0427337979818995,0.0570889532823281,0.0719584569732937,0.0851186362589265,0.0974267986687803,0.1100818930127786,0.1254513207069107,0.1375055603804359,0.14858533164756,0.1597011266374615,0.1697822481408164,0.1824689632933842,0.193954387822348,0.2046051917019659,0.2141218371716995,0.2237808363748296,0.2343756915858894,0.2438209008446812,0.2532401895819762,0.2624157653321252,0.2696039773701354,0.2760643395725321,0.2835864451889292,0.2900545957316064,0.2951518125351556,0.2999878655502973,0.3046849996307147,0.3091509068409934,0.3131999288961121,0.3172827224454464,0.3212791156731149,0.3201650071888311,0.320321075740944,0.3191824120250052,0.3179517498954533,0.3171277431208973,0.3151406837136834,0.3130488344178406,0.3131422213495647,0.3134994295056283,0.3146313261584986,0.3147691618108471,0.3168761574530123,0.3172880223771552,0.318803513844101,0.3192002675329639,0.321880838696284,0.3222731387191672,0.3234899747419626,0.3260204436409151,0.3295280085029327,0.3320686540198735,0.3350765979926043,0.3369067770045765,0.3400273847558193,0.3410976989815164,0.3417796811801094,0.337409069803436,0.3346963811081578,0.3349043526476296,0.3443557582668187,0.0,2.344601587456217,52.893957367353735,171.19881250576825,256.2289706684684,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95721,45348,430.1459449859488,6061,62.11803052621681,4730,48.65181099236322,1845,18.79420398867542,77.34647984393533,79.7007746008464,63.33814763576003,65.0760679665337,77.12138700028582,79.47939291250134,63.2546802065197,64.99662944149301,0.2250928436495058,221.3816883450619,0.0834674292403292,79.43852504068616,159.1117,111.95157125150484,166224.2141222929,116955.89395378738,400.865,264.24427983403524,418033.2006560734,275305.1470774807,388.67494,189.82506646316085,401421.307759008,194675.96685602012,2713.14648,1254.8653442093207,2793437.093218834,1269966.6574830185,1135.58512,508.4777135018457,1162227.2228664556,507186.6073691257,1801.15268,753.2593075895995,1837181.9558926465,750800.4616614921,0.38213,100000,0,723235,7555.646096467859,0,0.0,0,0.0,34644,361.1433227818347,0,0.0,35481,365.9907439328883,1567149,0,56275,0,0,0,0,0,78,0.8148682107374557,0,0.0,1,0.0104470283427878,0,0.0,0.06061,0.1586109439196085,0.304405213661112,0.01845,0.3345397324940991,0.6654602675059008,24.3997496736147,4.332297254604353,0.3154334038054968,0.241860465116279,0.2274841437632135,0.2152219873150105,11.500576381615014,6.108824977724364,19.680794111226582,12190.95378605078,53.637804218313576,13.586440056396112,16.96146188467457,12.012072988071294,11.077829289171602,0.5788583509513742,0.8033216783216783,0.707774798927614,0.5855018587360595,0.130648330058939,0.7618320610687023,0.951276102088167,0.8669950738916257,0.7662835249042146,0.1698113207547169,0.5087719298245614,0.7138849929873773,0.6482504604051565,0.5276073619631901,0.1203473945409429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192221997164,0.0045920384393151,0.0066469794298819,0.0091729140001219,0.0113897532898082,0.0137644567519139,0.0160142711518858,0.0182181896120597,0.0201469881734828,0.0220531774390056,0.0243749935936202,0.0264816373452671,0.0285402915715666,0.030517761687489,0.032437786306797,0.0344389205279532,0.0364438278443268,0.0384587452925126,0.0405604873079561,0.0426214482126489,0.05706589827111,0.0707101365848553,0.084768878910594,0.0978948918003827,0.1112786235398304,0.1269082758912335,0.1379551746449293,0.1491268211180521,0.1603684963385213,0.1707408558476492,0.1838252707270339,0.1961937716262976,0.2069433880256438,0.2178520703594449,0.2280025055220387,0.2383776904775079,0.2486817903126916,0.2576376004947434,0.2654142417951423,0.2729781727399739,0.2793957759837146,0.2856357725858883,0.2914703723870173,0.2970085726275403,0.3016823565138172,0.3062430735131141,0.3108339692030571,0.3150010182262499,0.3196972053714937,0.3238532836885051,0.3225497857662561,0.3210736407432897,0.3209631289009115,0.3189847070047122,0.3186844217222007,0.3156628352490421,0.3145297793245274,0.3149669569210082,0.3158569085690857,0.3162750031226022,0.3163414360088393,0.316970103866356,0.3179082884280712,0.319367394416607,0.3201029563878665,0.3215396273746374,0.3219424460431654,0.3246614509693027,0.3272210924900077,0.331013484123532,0.3355787174002094,0.338451729451145,0.3405388471177945,0.3441375637221334,0.3482755380133446,0.350207468879668,0.3496108652525561,0.3551458670988655,0.3588530066815145,0.3547376664056382,0.0,2.916515023794505,56.53174097057461,170.87794162114935,259.85425435505834,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95737,45529,431.0872494437887,6031,61.689837784764514,4749,48.97792911831372,1853,18.999968664152835,77.41222784566315,79.76781454607803,63.350809200748486,65.08946002276859,77.17553220379521,79.53273569945407,63.26278042896743,65.00479667730033,0.2366956418679393,235.0788466239635,0.0880287717810546,84.66334546825749,158.3318,111.4022929905285,165382.03620334875,116362.84089801068,397.65241,261.4725557329371,414717.67446232913,272473.9711218621,386.88948,188.54845648919505,399967.29582084256,193810.6060836436,2723.89636,1257.8018495752578,2810910.7241714275,1279533.6072524288,1140.35043,507.04125609336046,1174889.091991602,513379.7759417568,1815.69886,765.7903512906805,1862559.5119964068,769465.0608415416,0.38346,100000,0,719690,7517.365281970398,0,0.0,0,0.0,34338,358.00160857348783,0,0.0,35282,364.4150119598484,1575215,0,56423,0,0,0,0,0,70,0.7207244847864462,0,0.0,0,0.0,0,0.0,0.06031,0.1572784645073801,0.3072458962029514,0.01853,0.3332278481012658,0.6667721518987342,24.418223458521084,4.432743124402586,0.3177511054958938,0.2398399663086965,0.2238365971783533,0.2185723310170562,11.125293215891018,5.749396919471695,19.722633689672573,12325.171872534462,53.76400084192552,13.60353732416548,17.009790518593945,11.76495437063345,11.385718628532628,0.5615919140871762,0.7840210711150132,0.68389662027833,0.561618062088429,0.1396917148362235,0.7313664596273292,0.9258373205741628,0.8625,0.6744186046511628,0.1698113207547169,0.4984108639121641,0.7018030513176144,0.6194770063119928,0.5254658385093167,0.1319612590799031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267976503949,0.004459534789439,0.0068376415209187,0.0089873263465756,0.0112953568051728,0.013620400061078,0.0157367959720325,0.0180810791506382,0.0204085803926377,0.0228863868986693,0.0252008690661638,0.0272850455777285,0.0291762190169731,0.0312763897756997,0.0335152872222967,0.0356925048840743,0.0375367601375139,0.0397161354581673,0.0414929562821645,0.0435856034168446,0.0583598684553949,0.0728905072827724,0.0867207250679226,0.1004397130293913,0.1125637048526479,0.1281006603454114,0.1402099275123908,0.1523456632381439,0.1631846112743788,0.1728556709882373,0.1858504398826979,0.1972148225153228,0.2088091531586453,0.2190726446597689,0.2282191961924907,0.2377677452274517,0.2467866323907455,0.256445781096881,0.2648768965203961,0.2733150672368134,0.280279341254951,0.2867391482439407,0.2926404979704862,0.2980081685451126,0.3032815743787104,0.3083364117719492,0.3131468426578671,0.318954132168436,0.3230489080600793,0.3267558572424589,0.3254350538702016,0.3247923007320885,0.3244032165260956,0.3247282413073213,0.3244137767993026,0.3232410874661308,0.3215549926844233,0.3218816240013044,0.3229239150727245,0.3230949298622071,0.3246410237333532,0.3251265350963236,0.3260933005377913,0.3261995244127386,0.3270449274322741,0.3283160621761658,0.3291042451360765,0.3335416145963509,0.3363928247365115,0.339332125698984,0.3414799421756415,0.3448603558418246,0.3470970970970971,0.3519595257872083,0.354572435540716,0.3567821491485614,0.3623777276147479,0.3639088729016786,0.3557065217391304,0.3533891850723534,0.0,2.476395613594553,56.137950658601206,178.11817245421756,255.31690665326855,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95737,45186,428.6743892121124,5825,59.83057751966325,4566,47.19178582992991,1857,19.08353092325851,77.32373385663094,79.69309527656704,63.321321634088775,65.07490496692574,77.09202380773317,79.46130817771389,63.23607832161808,64.99180049671043,0.2317100488977672,231.78709885314677,0.0852433124706948,83.10447021531786,159.10004,111.9176134057939,166184.48457754057,116901.10762379634,397.21695,261.8094398654194,414421.1120047631,272984.14392076153,376.82213,183.2737671288467,390498.8875774256,189030.6594960281,2630.37144,1203.4975787321564,2721193.645090195,1230783.6037604648,1095.3546,480.8572770925933,1133473.5159865047,491613.70952985104,1824.4058,759.6313931805339,1876195.201437271,768021.5938061585,0.37997,100000,0,723182,7553.840208070025,0,0.0,0,0.0,34267,357.42711804213627,0,0.0,34383,355.964778507787,1571523,0,56367,0,0,0,0,0,73,0.7625056143392837,0,0.0,0,0.0,0,0.0,0.05825,0.1533015764402452,0.3187982832618026,0.01857,0.3331692913385827,0.6668307086614174,24.565576846168813,4.40935365627124,0.3083661848445028,0.2409110819097678,0.2222952255803767,0.2284275076653526,10.932921171803232,5.593274309303105,19.77547384265776,12079.1210983412,51.77617018661232,13.130238594475024,15.93452097632044,11.33883419271685,11.372576423100012,0.5582566798072711,0.7854545454545454,0.6917613636363636,0.5832512315270936,0.1140939597315436,0.7125103562551781,0.904040404040404,0.8286516853932584,0.696,0.1609756097560975,0.502828222685323,0.71875,0.6454372623574145,0.5464052287581699,0.1026252983293556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020770010131712,0.0044418753232529,0.006617945594803,0.0087697904599313,0.0110084649194204,0.0130692988621662,0.0153286011504099,0.0175053363700427,0.0196537584489687,0.0216600952429719,0.0240998451456758,0.0261887645065215,0.0288048062876777,0.0306874272229836,0.0329159914536089,0.0347761363753837,0.0367040888189237,0.0385425420440515,0.0405082243340472,0.0424073186488007,0.0569250848342469,0.0710443137336989,0.0843928331654917,0.0974881137711953,0.1100566258580873,0.1250779754919064,0.1372031102483319,0.1480295356854066,0.1592307035154414,0.168977088760949,0.1815147763363298,0.1930557057869118,0.2042709114829674,0.2145137309777855,0.2238648363252376,0.2336788023739923,0.2430591173650291,0.2523366585782331,0.2605974717986509,0.2677848202640551,0.2753460747382774,0.281529689435188,0.2878639227414035,0.293841529858342,0.2991382449326374,0.3039745784631301,0.308737596816777,0.3138093419880362,0.3175645909456062,0.3219091340826341,0.32099962298702,0.319407917383821,0.3185931773329574,0.3171240013893713,0.316336854634727,0.3142257040795989,0.3132099351368454,0.3132822624300782,0.3139167960154877,0.3139642691580787,0.3143520773236429,0.3161891202467817,0.3172753988245172,0.3186778711484593,0.3218496106463511,0.3242091503267973,0.3259861453025706,0.3289914638001897,0.3304139002683995,0.3341335573960709,0.3348335246842709,0.337791384681491,0.339782345828295,0.3402815168063995,0.3456568895595586,0.3475820895522388,0.3515446659564754,0.3544866612772837,0.362964989059081,0.365554276946682,0.0,1.983713922394907,52.97737947586718,173.70710641992846,249.57437500254477,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95774,45280,429.1561384091716,5954,60.788940631068975,4700,48.41606281454257,1830,18.700273560674088,77.38153749659537,79.72171056331366,63.350937847410606,65.08245811752683,77.15475610334674,79.49790854151455,63.26632227023537,65.00150247962014,0.2267813932486291,223.80202179911635,0.084615577175235,80.95563790668336,158.62594,111.64294317000736,165625.0339340531,116568.93955771648,399.79343,263.67250961667577,416746.8728464928,274620.2190664228,388.02044,189.33095430973248,400351.3479650009,194149.73664560504,2704.53304,1242.602820699726,2788081.2746674465,1261693.1742432453,1148.35963,508.3153452265134,1177931.9648338796,509647.25659344817,1796.27106,753.8414127951222,1836915.5511934345,754588.8197484924,0.38033,100000,0,721027,7528.410633366049,0,0.0,0,0.0,34502,359.5130202351369,0,0.0,35398,364.9320274813624,1571909,0,56373,0,0,0,0,0,63,0.6577985674608975,0,0.0,0,0.0,0,0.0,0.05954,0.1565482607209528,0.3073563990594558,0.0183,0.338318057565525,0.661681942434475,24.34338594659187,4.381389433311771,0.3136170212765957,0.2412765957446808,0.215531914893617,0.2295744680851063,11.27399192888582,5.807572738399812,19.375961617019183,12107.104639646086,53.20997866433703,13.653722464504527,16.74502093206819,11.100350026439989,11.710885241324323,0.5625531914893617,0.7927689594356261,0.7069199457259159,0.5636722606120435,0.1223354958294717,0.7377706495589414,0.908235294117647,0.889763779527559,0.70995670995671,0.1476190476190476,0.4992759918911091,0.7235543018335684,0.6431838975297347,0.520460358056266,0.1162255466052934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0048654894885154,0.0068584878860435,0.0093436113057696,0.0115501148911076,0.0140476602502112,0.0161148937905165,0.0180242705069453,0.020059678309387,0.0219370945627928,0.0240710757690652,0.0262158444704481,0.0283158544108574,0.0304559120299822,0.0326140770690651,0.0344781270018391,0.0365591175314058,0.0386744340326726,0.040813994556749,0.0426670553693022,0.0579505964121348,0.0713703014202941,0.0845170826824896,0.0978826249146219,0.1095760488128734,0.1246340664334555,0.1363665267709525,0.1481367285099144,0.1590518575438372,0.1688516330971497,0.1823358449946178,0.19512669932838,0.2062451769974023,0.2154955742541798,0.2249098028863076,0.2339831943937028,0.2437332738626226,0.2522229841384039,0.260849842936687,0.2687339092625436,0.2759808966546018,0.2823713677911027,0.2895583469353961,0.2950756849971259,0.3003799050844166,0.3054994830387474,0.3102789262650361,0.3129543952412426,0.3171400486315898,0.3215509515525331,0.3203486495211449,0.3194975123010528,0.3187589740702159,0.3176659157858257,0.3172934117507277,0.3156461752604126,0.3134043090920578,0.3129673566227604,0.3141117234809825,0.3152931966979789,0.3161543492478744,0.3173895899053627,0.3184260595036484,0.3192283619456366,0.3194164507150398,0.3219156689224362,0.3238319881777878,0.3285052868672965,0.3315761913073834,0.3330170777988614,0.3343918704350587,0.3365079365079365,0.3400893812551142,0.3437191275932821,0.3458215962441314,0.3464576211246021,0.3492569002123142,0.352008032128514,0.353395913859746,0.3628386112170927,0.0,2.430551507604727,54.16925527198579,182.06791507025167,250.83283158899707,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95849,45536,431.6581289319659,6012,61.5655875387328,4720,48.57640663961022,1871,19.05079865204645,77.37299817448195,79.67239334855788,63.35320242165369,65.05604194074255,77.13497522937811,79.43832941339737,63.26465449138927,64.9717363079512,0.238022945103836,234.06393516050628,0.0885479302644256,84.30563279134162,159.1062,111.8932195651296,165996.7240138134,116739.05785676387,404.30323,266.6915640713007,421183.8308172229,277612.51976682147,384.7931,187.65160680595025,397217.10189986334,192535.5661627188,2712.87376,1245.3925571740065,2793687.153752256,1262652.711216608,1104.89251,490.4948600024933,1135807.8331542322,494805.36845720257,1836.73946,775.471793267611,1872919.1123538064,773511.8284859675,0.38248,100000,0,723210,7545.305636991517,0,0.0,0,0.0,34845,362.8624190132396,0,0.0,35186,362.7580882429655,1566434,0,56268,0,0,0,0,0,83,0.8659453932748385,0,0.0,0,0.0,0,0.0,0.06012,0.1571846893955239,0.3112109115103127,0.01871,0.3379408960915157,0.6620591039084843,24.38387443155965,4.35684342865072,0.3247881355932203,0.2389830508474576,0.211228813559322,0.225,11.163331590759949,5.802478892987725,20.11180133908317,12144.945020062172,53.45035992180208,13.44958200865131,17.16266122066573,11.04730626394979,11.790810428535254,0.559322033898305,0.7783687943262412,0.6973255055446836,0.563691073219659,0.123352165725047,0.7205308352849337,0.914351851851852,0.8505154639175257,0.70995670995671,0.1478260869565217,0.4992730444896772,0.6939655172413793,0.645414847161572,0.5195822454308094,0.1165865384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045506603018233,0.0068368785693273,0.0087118981378063,0.0107354167090254,0.0130802117263843,0.0154006095012893,0.017624427231628,0.0195976253972146,0.0217426893404547,0.0235336304492597,0.0257728256743308,0.0281283400476856,0.0301901164167121,0.0323082791253878,0.0341921825786131,0.0361997972231993,0.0385368633749546,0.0405192107995846,0.0425527487619126,0.0573907240573907,0.0714151357451877,0.0847921053458625,0.0973053577804381,0.1096215009372959,0.1248283438615764,0.1380976602238046,0.1490038061621552,0.1595794641904152,0.1689417966740956,0.1816323016658775,0.1936787945608232,0.2057516112554206,0.2166916290408982,0.2260808327556421,0.2358205318477333,0.24573538763625,0.2548238656180736,0.2629805674354233,0.2701207992213889,0.2763043754843336,0.2829983386760886,0.2897593427796915,0.2953998058787581,0.3000983570726021,0.3048604694141563,0.3098198299715785,0.3142130041990075,0.3194431854969246,0.3235628086297499,0.322495890484788,0.3219213925689261,0.321467858855386,0.3207817382247425,0.3192615274846151,0.3178003736485865,0.3152786573780874,0.3150907479733499,0.315608831514779,0.3162483251451541,0.3176369221547913,0.3187933384697445,0.3202076660595784,0.3214014728855166,0.3229965490797546,0.3237649505980239,0.3246816148608222,0.327948202162434,0.3320464675534342,0.3362208773387128,0.3389876509702809,0.3424780632202135,0.347722274583726,0.3510840623811335,0.3509068696551076,0.3572854291417165,0.3591506263366941,0.3533374157991427,0.3590100111234705,0.3618244538137217,0.0,2.568680812936449,55.85384293826328,173.94800099330976,257.5367832152744,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95799,44922,425.5472395327717,5944,60.87746218645288,4706,48.62263697950917,1889,19.415651520370776,77.39816222968327,79.72775560182396,63.35848721039546,65.07960553549044,77.1645696084636,79.49268688056421,63.27313135735786,64.99519563763596,0.233592621219671,235.06872125975065,0.0853558530375977,84.40989785448494,159.63926,112.31268034345972,166639.79791020782,117237.84208964572,401.46895,264.09049521210386,418576.6552886773,275173.84859142976,382.96383,186.34539345681375,396258.3429889665,191783.82502321768,2739.52128,1253.8774337981536,2835978.914184908,1285186.2689570377,1135.47563,502.69240960672624,1174120.147391935,513587.9702363557,1856.88166,773.486907846545,1912292.1742398145,787128.9320011843,0.37871,100000,0,725633,7574.53626864581,0,0.0,0,0.0,34600,360.6613847743713,0,0.0,34965,361.4442739485798,1567872,0,56232,0,0,0,0,0,68,0.7098195179490391,0,0.0,0,0.0,0,0.0,0.05944,0.1569538697156135,0.3177994616419919,0.01889,0.334136546184739,0.665863453815261,24.449831700175807,4.387719071287616,0.3259668508287293,0.2235444113897152,0.219294517637059,0.2311942201444964,11.096651014605612,5.614915038214833,20.0457051166927,12090.917543849822,53.37194531727891,12.721632749827648,17.268040173428357,11.57021198950116,11.812060404521722,0.5699107522311943,0.8127376425855514,0.71251629726206,0.5920542635658915,0.1130514705882353,0.731437598736177,0.9121140142517816,0.8708791208791209,0.7089552238805971,0.1643192488262911,0.5104651162790698,0.7464342313787639,0.6632478632478632,0.5510471204188482,0.1005714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090478215956,0.0044490838333063,0.0068782209958203,0.0090888780567064,0.0111625069892746,0.0134142121440348,0.015488867376573,0.0172427865975594,0.0191358718417638,0.0211274810722324,0.0233892366482598,0.0254589485998091,0.0275933652601072,0.0297238603966612,0.0319078743891626,0.0342156629865636,0.0362378060765307,0.0383749987038976,0.0405279019016938,0.0425057792031988,0.0574585520069279,0.0715204501009171,0.0847773899005147,0.0970250417713138,0.1091610536634727,0.125,0.1369864466455978,0.1481922839571851,0.1586625230940099,0.1689003731183256,0.181473584458659,0.1941473543056742,0.2056120453656628,0.2149028431618843,0.2242478187292587,0.234609555626846,0.2441251226255239,0.2529597607456461,0.2604124132298897,0.2686652620007329,0.2762639166676301,0.2832612507305669,0.2894867667250603,0.2952701650109647,0.3010295760283619,0.3061000837314682,0.3101310131013101,0.3140496918091123,0.3184071231671174,0.3227758804836562,0.3215867332516725,0.3200434441893396,0.3191366541829752,0.3187813889049241,0.3179123061871868,0.3156037038168872,0.3138915664554462,0.3142365661861074,0.3148280924579194,0.3155473945055533,0.3162076766317049,0.316537952556835,0.3167430280968221,0.3164277593240743,0.3181513730743469,0.3189019322667775,0.3186253712346202,0.3217274544091931,0.3234628901492745,0.3271947428481486,0.3305965071444772,0.3353520459213229,0.3389176060285234,0.3423847087378641,0.3433944522802069,0.3447001311553594,0.347912221883572,0.3529411764705882,0.3517089305402425,0.3596657804785416,0.0,1.990121423137292,55.681388007930266,177.08413133066904,255.53387497272507,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95887,45317,429.58899537997854,5973,61.197034008781166,4696,48.48415322202175,1794,18.407083337678724,77.3584022892406,79.63988311460302,63.35300198276878,65.0415132584688,77.13594657586857,79.41759574233879,63.27011103371324,64.96068519156617,0.2224557133720281,222.2873722642333,0.0828909490555389,80.828066902626,159.49978,112.22637042349888,166341.40185843754,117040.2353014474,400.43633,263.3549323338676,417139.9772649056,274178.5772147085,381.71689,185.73089539617288,394848.25888806616,191302.44986297123,2693.32332,1227.9370633551057,2781777.759237436,1253677.1553106734,1133.54293,495.0553473306052,1168077.560044636,502268.2909202801,1763.05604,739.0884390854857,1810282.8746336836,747054.0399721443,0.38038,100000,0,724999,7560.97281174716,0,0.0,0,0.0,34578,360.11138110484217,0,0.0,34810,359.75679706320983,1566712,0,56291,0,0,0,0,0,76,0.7925996224722851,0,0.0,0,0.0,0,0.0,0.05973,0.1570271833429728,0.3003515821195379,0.01794,0.3439948824564209,0.656005117543579,24.275329397815337,4.398077509899465,0.3175042589437819,0.2482964224872231,0.2123083475298126,0.2218909710391823,11.01216364049439,5.506859029398624,19.18630821965986,12128.064897101578,53.22358497547923,13.993856315982589,16.76826228667224,11.080582506987357,11.380883865837069,0.5660136286201022,0.7924528301886793,0.6867873910127431,0.5697091273821464,0.1362763915547025,0.7443548387096774,0.9209302325581395,0.8455284552845529,0.7702127659574468,0.1650485436893204,0.5020254629629629,0.717391304347826,0.6345811051693404,0.5078740157480315,0.1291866028708134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022172949002217,0.0043975641142556,0.0067348946658417,0.0090263887337672,0.0110286643626753,0.0130573280819059,0.0154040506948123,0.0174511703809475,0.0195521885178113,0.0219180322841165,0.0240973722194355,0.0261220807447048,0.0282947169501273,0.0301811486118111,0.0325748675776499,0.0346500918908873,0.03651598220751,0.0385751448381647,0.0405433473185726,0.0422605547348051,0.0570243109128059,0.0709703706799281,0.0841518838879929,0.0970776936566106,0.1089880657699316,0.1243741153106712,0.1362990907742195,0.1468080129295678,0.1575621731241328,0.1673616396359699,0.180660235152246,0.193097257073635,0.2037262489673464,0.214596449807625,0.2246457272897175,0.2354418614943736,0.2453280406761518,0.2542245207712631,0.2625370069987182,0.270109280854086,0.2768894339797288,0.2829336764533863,0.2896323050506246,0.2961195318495779,0.3008132057811759,0.305554527624616,0.3101007316828706,0.3147428629664072,0.3193512812195913,0.3238358410238781,0.3227202848126871,0.3207292370020256,0.3197495699258298,0.3183652802893309,0.3177638235819296,0.3157313368721426,0.3144633144633144,0.3155861660858702,0.3167553146004002,0.317697646618017,0.3191453503614097,0.3205381484847288,0.3220292830062211,0.321776427486373,0.3226550671697388,0.3242155029093931,0.3264975715056665,0.3312374874874875,0.3358711975692383,0.3391699604743083,0.3422760906078351,0.3450076480827048,0.3483082706766917,0.3504012227741689,0.3501323751891074,0.3553056585715994,0.3541085271317829,0.355460820138043,0.3643071877562175,0.3618147448015122,0.0,1.941562475063579,54.55385133171886,177.75273608185933,257.73481059768955,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95720,45298,428.4997910572503,5947,60.78144588382783,4705,48.42248223986628,1845,18.846636021730045,77.38965647392791,79.75586147047052,63.34469261111818,65.09363011639996,77.15591937928843,79.52482107323748,63.257192567611256,65.01004307391337,0.2337370946394799,231.0403972330448,0.0875000435069282,83.58704248659876,159.11852,111.98381247790262,166233.30547430002,116991.0284975999,401.6141,264.7807480522978,418764.3125783536,275821.80747762194,388.8569,189.45514683116517,401028.95946510654,194044.2376324633,2708.67508,1255.5965127470788,2790547.304638529,1273301.2179652152,1111.31546,499.0028861439463,1143231.8533221895,503718.6509963381,1810.65982,768.610025503181,1851454.053489344,768513.4164167176,0.38117,100000,0,723266,7556.059339740911,0,0.0,0,0.0,34650,361.199331383201,0,0.0,35611,366.8616798997075,1568169,0,56265,0,0,0,0,0,68,0.6999582114500627,0,0.0,1,0.0104471374843292,0,0.0,0.05947,0.15601962378991,0.3102404573734656,0.01845,0.3338676069882994,0.6661323930117006,24.31144365893781,4.309037690218054,0.3241232731137088,0.2318809776833156,0.2238044633368756,0.2201912858660999,11.0886809613369,5.653585057385938,19.66429724340702,12138.48939714905,53.59643536342665,13.06526611336835,17.340033735893755,11.754735376188608,11.436400137975944,0.5628055260361318,0.7891842346471127,0.7016393442622951,0.5698005698005698,0.1129343629343629,0.7441154138192863,0.9228971962616822,0.8878048780487805,0.7569721115537849,0.1359649122807017,0.4923258559622196,0.702865761689291,0.6331838565022422,0.5112219451371571,0.1064356435643564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024714366744996,0.0048052066542988,0.0068399313977207,0.0092650913302314,0.0114437425615673,0.0138690888354853,0.0161397212508029,0.0186502791927399,0.0207396352931556,0.0228675544818973,0.0252060355078109,0.0272059955854422,0.0292684431285467,0.0313658456215503,0.0336874677668901,0.0359663900286284,0.0377338952687659,0.0396949732842247,0.0417511147142278,0.0436259442563167,0.0581332219670077,0.0716872514130207,0.0852883162665771,0.0980947070520036,0.1097221343122982,0.1250383407194305,0.1368097183173306,0.1478028585719911,0.158179721041502,0.168734784054225,0.1810761626842689,0.1931843998485422,0.2052347139610495,0.2154448429708687,0.224849531815631,0.2347228067066823,0.2442394771475095,0.2537310078216308,0.2614814142834463,0.2694565553228741,0.2770716474874226,0.2835531238309016,0.2894310672955306,0.2948710275899216,0.3005594456512505,0.3058633766745469,0.3105453363178231,0.3149389042175798,0.320246303506979,0.3241614808564497,0.3231896725610166,0.3209479428704964,0.3209060213843556,0.3186561025241373,0.3172387219159405,0.3146544482626957,0.3119455756542602,0.311999346084682,0.3131654468576474,0.3151278409090909,0.3157375339813056,0.3162914167731786,0.3174897419341401,0.3186871831361736,0.3196433267194186,0.3195071335927367,0.3215247272211988,0.3262778300407651,0.3292866916950282,0.3325647040114499,0.3328917313841937,0.336645829994123,0.3402913539761619,0.3425751525653582,0.3447478019435446,0.3512377393741242,0.355221637866266,0.3593811979373265,0.3605808012906695,0.3803611738148984,0.0,2.7331636331536764,57.25928399504132,174.13291730240522,252.30463986489917,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95762,45093,426.7350305966877,5859,59.992481360038425,4594,47.39875942440634,1731,17.70013157619933,77.34687979821054,79.70513257903569,63.33382307926016,65.08090233649015,77.12954412099215,79.49083525270584,63.25314606276142,65.0036894296255,0.2173356772183865,214.29732632985576,0.0806770164987398,77.2129068646592,158.55488,111.62181253273526,165571.58371796747,116561.46752650868,399.44935,262.2629458555228,416533.311752052,273275.6478096978,378.36811,183.67109841995855,391391.5853887763,188939.15755667715,2638.59812,1203.1345537382335,2723552.8497733967,1224626.9377753185,1080.22391,471.2088298112666,1112531.7244836155,476699.92101827945,1701.72126,710.8406798256249,1741854.2636954116,713245.2892695349,0.38081,100000,0,720704,7525.98107808943,0,0.0,0,0.0,34489,359.5476284956454,0,0.0,34635,357.918589837305,1575441,0,56534,0,0,0,0,0,67,0.6996512186462271,0,0.0,0,0.0,0,0.0,0.05859,0.1538562537748483,0.2954429083461341,0.01731,0.3238017871649066,0.6761982128350934,24.66103051168879,4.359790716374399,0.3313016978667827,0.237701349586417,0.2109272964736613,0.2200696560731389,11.285578326458614,5.764817448829142,18.420094050882625,12133.455881167733,51.981322781473445,12.951860684061865,17.374061476963973,10.6964718581908,10.958928762256807,0.5766216804527645,0.7967032967032966,0.7115637319316689,0.5830753353973168,0.1295746785361028,0.749185667752443,0.9195979899497488,0.8777506112469438,0.7397260273972602,0.1633663366336633,0.5136660724896019,0.7262247838616714,0.6504941599281222,0.5373333333333333,0.1211372064276885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381378946941,0.0045126353790613,0.0065177664974619,0.0087705925993678,0.0108041018963131,0.0130750901203641,0.0153124681415027,0.0177011024908125,0.020005724683609,0.0223105040597131,0.0244422572178477,0.0265011499917857,0.028722452463467,0.0308321486700867,0.0329225751852539,0.0347547423373132,0.0368448848985678,0.0387986928782613,0.0410503227684279,0.0432672782747237,0.0575335316528364,0.0716669281866206,0.0850441420093526,0.0972536077273157,0.1096613724270944,0.1252364497141468,0.1377252490990036,0.1487687662144345,0.1594393061733926,0.1697514995715509,0.1824919591665501,0.1947611277407363,0.2064268022422109,0.2163003243030759,0.226284107386089,0.237144880077883,0.2465328874024526,0.2554260472748935,0.2627321511634503,0.2704890812692523,0.2777932023784734,0.2838327835871523,0.2897134338247474,0.2951418847665612,0.30068207194524,0.3053020051666871,0.309566087282731,0.3139614680764538,0.3182500064661304,0.3225364542856014,0.3212926989931036,0.3201660344164055,0.3188515831505539,0.3168473872418964,0.3163911335161984,0.3150268254283662,0.3130955579083769,0.3141189586202373,0.3146537018082566,0.314591723990448,0.3148051170793746,0.3160803821706344,0.3171328744481871,0.3182813967004962,0.3194160513720869,0.3207616162143809,0.3230409223217853,0.3279997475225651,0.3317988544119197,0.3349763485312239,0.3347175321712147,0.3361629881154499,0.3389712843168191,0.3386006229582922,0.3406040268456375,0.3414289082763499,0.3497942386831276,0.3501937589231083,0.3537987104008971,0.3574249605055292,0.0,2.237815094153944,53.78656517648665,169.26863833652828,253.93685588879683,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95760,45469,430.2944862155388,5907,60.50543024227235,4665,48.20384294068504,1877,19.256474519632413,77.36211040614715,79.72369479430925,63.32787542470121,65.0754466354201,77.12847541519055,79.49088701759074,63.24235166921505,64.9923469723689,0.2336349909566024,232.8077767185164,0.0855237554861645,83.09966305120042,157.90654,111.147768489644,164898.2247284879,116069.09825568504,395.32386,260.0647376288154,412331.6624895572,271083.6232548198,383.22623,186.45517900391584,397163.9828738513,192326.25035250187,2690.67184,1235.9903848413112,2781815.4135338347,1262724.5038025384,1134.60131,499.8933831117831,1170469.2773600668,507658.1590557464,1840.36008,759.8950154199031,1889250.104427736,766673.7741690977,0.38213,100000,0,717757,7495.373851294904,0,0.0,0,0.0,34147,356.0568086883876,0,0.0,34952,361.9569757727653,1576774,0,56550,0,0,0,0,0,57,0.5952380952380952,0,0.0,1,0.0104427736006683,0,0.0,0.05907,0.1545809017873498,0.3177585915016082,0.01877,0.333656330749354,0.666343669250646,24.27713712436676,4.416923728179397,0.3217577706323687,0.2252947481243301,0.2289389067524115,0.2240085744908896,11.39549095478544,5.980648141814969,19.69620757984572,12232.405989917375,52.72617777742197,12.656937264860083,16.86744330929794,11.846784790703088,11.355012412560855,0.5616291532690246,0.7916270218839201,0.6975349766822119,0.5664794007490637,0.1301435406698564,0.7318435754189944,0.9002557544757033,0.8595238095238096,0.7477876106194691,0.162037037037037,0.4991207502930832,0.7272727272727273,0.6345975948196114,0.517814726840855,0.1218335343787696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289089490694,0.0044212789259131,0.006781037458126,0.0089720271904244,0.011199837241239,0.0137695034016376,0.0158158791018293,0.017897982520624,0.0199793458144599,0.0224358974358974,0.0247251620313397,0.0270867144647369,0.0291352029793625,0.0313472517054471,0.033109370323353,0.0353786508141638,0.037536371449577,0.039684598225865,0.0417545865599501,0.0437042360612026,0.0586202937277538,0.0713994288045695,0.084054323318127,0.0966965008781985,0.108958199289082,0.1242742472794187,0.1370410836842719,0.1481765344574311,0.1585341097280837,0.1691507613124598,0.1815538372067977,0.1940933292931042,0.2052849729659163,0.2151991511054226,0.2250751130823327,0.2360103253824934,0.2453578088187675,0.2545112951129511,0.2629769953264667,0.2710585379259802,0.2783519472252763,0.2850926954792678,0.2918441730568967,0.297275910028296,0.3027322404371584,0.3082848550581739,0.3138121408630553,0.3187498409304929,0.3230020325992672,0.3279287598944591,0.3267565419994343,0.3256418723685297,0.3237215589096643,0.3222824124232575,0.3222354163574291,0.3210618927396527,0.3199784888410863,0.3197140608604407,0.3200211358832753,0.3208430496466525,0.3211370725238602,0.3220245591939547,0.3249504330585411,0.3257623038516405,0.3267179597804463,0.3287770905878073,0.3296899841017488,0.3336466459880314,0.3360601293480161,0.337126600284495,0.3405583963075252,0.3448094058100912,0.3471726470035694,0.3494239024022893,0.353787597474935,0.356308273338841,0.3621317947160644,0.3652503490923598,0.3627477599782785,0.3615950445218738,0.0,1.9720646303658864,55.02298988321356,169.27311734028035,260.3356240720853,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95758,45056,428.3401908978884,5848,59.817456504939535,4581,47.23365149648071,1837,18.880929008542367,77.32840490063373,79.68866376719647,63.31625382636724,65.06462885024816,77.09660889827383,79.45677318175217,63.2306033595434,64.98114535893713,0.2317960023598999,231.8905854443045,0.0856504668238358,83.4834913110285,158.63782,111.64031336987314,165665.34388771694,116585.8866829645,399.90505,263.88052415660155,417032.64479208,274982.3452417569,383.03918,186.66882547836624,395405.5118110237,191499.35158906964,2610.37172,1211.9854570317552,2694742.120762756,1234408.5058499083,1074.64373,484.2805729175726,1105095.36540028,488579.6099726106,1793.99638,754.148924807753,1845653.1255874184,763090.4671565831,0.37866,100000,0,721081,7530.242903987135,0,0.0,0,0.0,34533,360.01169615071325,0,0.0,35012,361.0351093381232,1568040,0,56318,0,0,0,0,0,64,0.6683514693289334,0,0.0,0,0.0,0,0.0,0.05848,0.1544393387207521,0.3141244870041039,0.01837,0.3413838120104439,0.6586161879895561,24.363916197929843,4.325285981677364,0.3241650294695481,0.2403405370006548,0.2187295350360183,0.2167648984937786,11.15643613594211,5.845378360556179,19.70863834534575,12006.231706376604,52.26894083665269,13.224065910634373,16.930581587070062,11.196796351772694,10.917496987175571,0.5616677581314123,0.7874659400544959,0.6962962962962963,0.5668662674650699,0.1047331319234642,0.7291338582677165,0.9308641975308642,0.8430379746835444,0.7290836653386454,0.1506849315068493,0.4974327997583811,0.7040229885057471,0.6431192660550459,0.5126498002663116,0.0917312661498708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.004665409034666,0.0067619705153718,0.0089737596292607,0.0110781062440235,0.0132313396349413,0.0155102790014684,0.0174276146526728,0.0194749432619763,0.0215161627121419,0.0236071959407513,0.0257102666516074,0.0277052181246014,0.0296232206497332,0.0313296527526959,0.0331593363998139,0.0352044882875982,0.0371169302566761,0.0391038230923507,0.0412947707176854,0.0552058869578832,0.0693413098500219,0.0828099606815203,0.0960353997183157,0.108165630597408,0.1237105774921789,0.1353933597022364,0.1463705343365224,0.1565984534540949,0.1674082969666427,0.1805923532579429,0.1924787138514135,0.2035659117115941,0.2141654273466888,0.223311870562985,0.2338132683575146,0.2434242096218014,0.2529458768977974,0.2606059918035578,0.2683921676462837,0.2751382749762792,0.2813103020805314,0.2876778822248005,0.292028602965878,0.2973935665831895,0.3029693935432954,0.3081823311806382,0.3124163682473333,0.3171636467399058,0.3209106996645625,0.3197341278936511,0.3182675755697858,0.3170869295425058,0.3162101611621016,0.315703364369218,0.3134840935224224,0.3110170700394655,0.3116099325768788,0.3131250961686413,0.3136417259500232,0.313826896771413,0.313355859861284,0.3139386590286634,0.3152317288559995,0.3155440165392567,0.3165885416666666,0.3172559186347967,0.3217680459265301,0.324088969713926,0.3286527964559765,0.3328348740257386,0.3370171560888327,0.3418399103697249,0.3435522747815607,0.340832710978342,0.3450621627961529,0.3469294920394238,0.3441822620016273,0.335918028247023,0.3342487249901922,0.0,2.4043601827174057,55.33319127437063,175.02146053812731,242.239695951369,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95725,44822,424.2778793418647,5867,59.89031078610604,4571,47.1036824236093,1808,18.45912770958475,77.31464774318667,79.6814765907911,63.30648041847581,65.05640347532643,77.08757935973043,79.45654295898281,63.22147628110421,64.97451206442005,0.2270683834562419,224.93363180829817,0.0850041373715981,81.89141090637975,158.76498,111.71693739754944,165855.0639853748,116705.90796505552,399.049,262.177841405459,416229.30268999736,273248.09744132194,375.68074,182.6661319797145,388629.6787673021,187795.78432850295,2635.3572,1215.4697077096532,2718161.608775137,1235084.0120409837,1106.17577,491.9496735358677,1137962.1728910943,496757.2457634974,1780.14534,753.3848893665077,1820485.51580047,754352.750880785,0.37848,100000,0,721659,7538.866544789763,0,0.0,0,0.0,34429,358.9971271872552,0,0.0,34374,355.1945677722643,1570430,0,56336,0,0,0,0,0,83,0.8670671193523114,0,0.0,0,0.0,0,0.0,0.05867,0.1550147960262101,0.3081643088460883,0.01808,0.3423276983094928,0.6576723016905072,24.571415898423588,4.399616107704686,0.3082476482170203,0.2393349376504047,0.223583460949464,0.2288339531831109,11.20163306996727,5.754506173561458,19.225371375154367,12052.530236347868,51.88963540677357,13.110889384296732,15.87312346730262,11.329446087379896,11.57617646779431,0.55895865237366,0.7870201096892139,0.6955287437899219,0.5812133072407045,0.1147227533460803,0.7121090617481957,0.9148418491484184,0.8808864265927978,0.725,0.0851063829787234,0.5015042117930204,0.7101024890190337,0.6316793893129771,0.5370843989769821,0.1233045622688039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868155802056,0.0044712108769048,0.0070139466899449,0.0092470277410832,0.0113027112264102,0.0134683564937446,0.0155272849695473,0.0177860366339262,0.0200049066710281,0.0220404569837435,0.0242789619923513,0.0263471332347626,0.0285338106112036,0.030560936405226,0.0324108958412898,0.0344456849853202,0.0365430615816342,0.0384555519814052,0.0406866720735333,0.0429107198666527,0.0571315215235072,0.0710039353596248,0.0844706943759638,0.0971521117280834,0.1093113993461984,0.1246403182125931,0.1370270126837552,0.1484805894503716,0.1594368666353102,0.1691921359890109,0.1818005348977655,0.1934900150613832,0.2047346173958515,0.2142544051897957,0.2234851825718821,0.2334347381978061,0.2432133149894298,0.2515987863886038,0.2597458735738093,0.2672088028209458,0.2754693787616982,0.2821513542655556,0.2885244735344336,0.2938789232283937,0.2987129893195144,0.3034281906360293,0.3075921637353696,0.3123003906299703,0.3165862305432996,0.3199594037090247,0.3190685034709142,0.3178344649385634,0.3174609869253479,0.3157902329943013,0.3143905082933638,0.3125994857352761,0.3101014417066262,0.310782414551663,0.3110074818079327,0.3123484091881866,0.3133984725965858,0.3143770472394332,0.3158103509467838,0.3172612018448786,0.3189907420732,0.3202712886209495,0.32113253767055,0.3257863213020163,0.3283086177951874,0.3312871287128713,0.3353639132608992,0.3387071114175107,0.3399835848222741,0.3420128283445326,0.3438649438838064,0.3436426116838488,0.348951156025111,0.3571135711357113,0.3592017738359201,0.3548387096774194,0.0,2.4456915754455664,54.43552442610324,167.0749699864549,251.8264666512451,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95814,44850,424.7709103053834,5933,60.7322520717223,4723,48.71939382553698,1890,19.370864383075546,77.3504688262772,79.6843638365693,63.33176974345843,65.06055330718564,77.10840578260022,79.44221399325629,63.24198498506425,64.97344413827092,0.2420630436769784,242.14984331301537,0.0897847583941811,87.10916891472209,157.4694,110.81058556413302,164349.0512868683,115651.7685976298,397.87269,261.72545332818044,414701.4945623813,272606.1466259425,381.62968,185.57525533122697,394524.6519297806,190781.17245445357,2710.96836,1253.259973933592,2796521.760911767,1275343.5466502013,1144.23143,507.3521806483683,1177980.8065627152,513359.73820394085,1858.49038,787.0543940684834,1906348.9260442103,792197.654915704,0.37968,100000,0,715770,7470.411422130378,0,0.0,0,0.0,34335,357.76608846306385,0,0.0,34921,360.7927860229194,1577829,0,56714,0,0,0,0,0,69,0.6992715052080072,0,0.0,1,0.0104368881374329,0,0.0,0.05933,0.1562631689844079,0.3185572223158604,0.0189,0.3405867182462927,0.6594132817537073,24.12941373478415,4.34123153233715,0.3256404827440186,0.2339614651704425,0.213635401228033,0.2267626508575058,11.315375518061709,5.819811339033767,20.37972079690161,12057.57093513041,53.6920307928412,13.146771576845362,17.353453165944202,11.361736744308496,11.830069305743136,0.5593902180817277,0.7764705882352941,0.7009102730819246,0.5698711595639246,0.1223155929038282,0.7264296754250387,0.9132530120481928,0.8663366336633663,0.7310924369747899,0.1561181434599156,0.4963546223388743,0.6942028985507246,0.6419753086419753,0.5201037613488976,0.1127098321342925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211358064712,0.0048163207365421,0.006911600527758,0.0091137234183066,0.0113615558313159,0.0134444195473712,0.0154403141094283,0.0176456171881382,0.0197640178315815,0.0220297688512171,0.0240561104161112,0.0260823133163558,0.0281368586678184,0.0301248249155475,0.0321988448844884,0.0343559169671733,0.0363139479513881,0.0383151300162844,0.0403537578982374,0.0425263903058568,0.0565512205299394,0.0708662240577134,0.083613652320622,0.0971568462637639,0.1094991255241587,0.1248731822793371,0.1373420137416235,0.1481256914305165,0.1587060958684744,0.1678096870981568,0.180537620523416,0.1927047859976864,0.2034697402583294,0.2145698983495464,0.2241449489004521,0.2336550073678495,0.2426873500362703,0.2517863371929469,0.2597756483037376,0.2671973428015118,0.2742000810044552,0.2814005707068344,0.2884947585129795,0.2948837766594775,0.3001069596713421,0.3046605151485246,0.308884517559796,0.3134014576219356,0.3169741840955357,0.3205826371999577,0.3196437006545651,0.3185103448275862,0.3175062456774266,0.3156172633956364,0.3155725508867992,0.3135150055973869,0.311026181829715,0.3117880097973139,0.3127339223762241,0.3129657760700563,0.3137511938425813,0.3155442358190685,0.3170828710778055,0.3178292841018305,0.3192031949189241,0.3219490575383893,0.3236339846972153,0.3268977208513844,0.3297087514422572,0.332276348646399,0.3356002901704751,0.3400760536600823,0.3413410274101486,0.3444957951359951,0.3517215498639647,0.3539312617702448,0.3572516758074345,0.358304880498092,0.3583061889250814,0.3550724637681159,0.0,2.236171931623629,56.63114900804591,178.6987462848602,252.4180019753861,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95714,45224,428.63113024217984,6040,61.79869193639384,4771,49.22999770148568,1867,19.129907850471195,77.30949638025908,79.66924486011591,63.31695901961641,65.05940278290453,77.08112868097349,79.4422532142575,63.23179851456295,64.9772545058105,0.2283676992855845,226.9916458584049,0.0851605050534587,82.14827709402073,158.6948,111.73958223476812,165800.8023904549,116742.96574667048,401.00283,263.40076521116646,418299.1829826358,274535.40256510687,386.83096,188.53443325172995,399595.0226717094,193543.01783518528,2741.87596,1254.4049557439776,2831555.8852414484,1277477.062649118,1116.86668,491.78702328712376,1151818.469607372,498748.22208571713,1825.43518,765.6129871918708,1872491.7149006412,770038.6255287812,0.38069,100000,0,721340,7536.400108657041,0,0.0,0,0.0,34612,360.9921223645444,0,0.0,35323,364.5234761894812,1568137,0,56255,0,0,0,0,0,68,0.7000020895584763,0,0.0,0,0.0,0,0.0,0.0604,0.1586592765767422,0.3091059602649006,0.01867,0.3403108150967333,0.6596891849032668,24.57655838639975,4.437307635319957,0.321106686229302,0.2364284217145252,0.2221756445189687,0.2202892475372039,11.317565330171329,5.818714354095238,19.797583572994192,12146.750155137945,53.78745139142183,13.387812093410442,17.154341040286514,11.85055388497035,11.39474437275452,0.5548103123035003,0.7819148936170213,0.6775456919060052,0.5754716981132075,0.1113225499524262,0.7266244057052298,0.9250645994832042,0.8452088452088452,0.728,0.1513761467889908,0.4930179538330008,0.7071524966261808,0.6168888888888889,0.528395061728395,0.1008403361344537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020761385847824,0.0043792068769767,0.006614722830939,0.0084809458032014,0.0109693488537589,0.0132319561920465,0.0151862610202313,0.0173425745404064,0.0197661583745554,0.0220241323904166,0.02431349234822,0.0263465921925375,0.0284218860862322,0.0305448853279507,0.0326719194752691,0.0347563747572013,0.0369059446928299,0.0391081151153746,0.0411976844490173,0.0430203852043207,0.0574949094136688,0.0710555235752786,0.0841601812422647,0.0962460567823343,0.1080354318253717,0.1240005076786394,0.1359628179416165,0.1480294674984563,0.1592812580121357,0.1695994852822905,0.1829513989894092,0.1951061065396275,0.206484121628975,0.2161526169472232,0.2254853380022684,0.2356762749445676,0.2452020822627851,0.2537456347865269,0.2627046433156477,0.270199935800431,0.2776947927884114,0.2843185434802958,0.2905743043220841,0.2958760166014922,0.3019700302614149,0.3069095663328235,0.3118562184758257,0.3165847697125544,0.3214535652264068,0.3248985848121671,0.323281207872742,0.3225277827505955,0.320695102685624,0.3196952391967499,0.3190324596114367,0.3167290350285258,0.3148139331905102,0.3153602025882623,0.3155777690293206,0.3163170330063721,0.3171569639739426,0.3179862391687982,0.3182505671792286,0.3189838792852178,0.3201457951144154,0.321201044386423,0.3233315200274859,0.3246675490010714,0.3270143846938416,0.3313646993539181,0.3339856193683444,0.3363419166445447,0.3386426592797784,0.3401629979434838,0.3401430992280173,0.3400378608613346,0.3447114648706567,0.351445560795571,0.3570839064649243,0.3576362240982348,0.0,2.408801887698278,54.905988850405,173.67318739062932,267.74055098699296,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95736,45100,427.9581348708949,6043,61.82627224868388,4751,49.06200384390407,1830,18.72858694743879,77.40440741590693,79.7594771980444,63.3594678928421,65.09843111264553,77.17342931558602,79.53143980900181,63.27397461933881,65.01657833830494,0.230978100320911,228.03738904258356,0.0854932735032889,81.85277434058946,158.62176,111.5215862934275,165686.6382552018,116488.66287856972,398.5616,262.0080823987799,415748.7569984123,273114.2691766869,382.91723,186.12451498863,396318.07261636166,191635.1740521983,2713.0124,1248.6491302903478,2803173.435280354,1273646.9394877793,1112.4212,492.222439759743,1144242.5106542993,496426.7899614974,1791.92376,755.4930141009307,1835569.5663073447,758544.4401563288,0.37934,100000,0,721008,7531.2108297818995,0,0.0,0,0.0,34478,359.5408205899557,0,0.0,34946,361.4523272332247,1575407,0,56487,0,0,0,0,0,64,0.6476142725829364,0,0.0,0,0.0,0,0.0,0.06043,0.1593029999472768,0.3028297203375806,0.0183,0.3363320707070707,0.6636679292929293,24.24326127265384,4.38775910512196,0.3214060197853083,0.232582614186487,0.2292149021258682,0.2167964639023363,11.341937286968754,5.941424060751956,19.54484014283932,12100.337508384308,54.05021930807256,13.40423421847166,17.215419807314348,12.056068456360675,11.37449682592588,0.5704062302673122,0.7846153846153846,0.6967910936476752,0.6069788797061524,0.1145631067961165,0.7266244057052298,0.9041769041769042,0.8720626631853786,0.7649402390438247,0.1040723981900452,0.5139008311837203,0.7148997134670487,0.6381118881118881,0.5596658711217184,0.1174289245982694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502111028987,0.0045502913605269,0.0068172134639965,0.0089981211598029,0.0111130316309619,0.0132837947882736,0.0152764331210191,0.0176423170719263,0.0196072421121464,0.0216218981836786,0.0238595484313986,0.0260489366943098,0.0281381720982831,0.0302715062623599,0.0322237814189607,0.0342988277615828,0.0363382177807694,0.0383717673419848,0.0403338113944835,0.0423085335749773,0.056932553769054,0.0700195690620454,0.0834233686131769,0.0966829627293276,0.1094046464561285,0.124800406061311,0.1369341269083463,0.1476603673143465,0.1585397123870168,0.1679821551132464,0.1810496160597934,0.1931679236504106,0.2053794783667964,0.2156556158152554,0.2261801300315728,0.2359239533621959,0.2453758450657087,0.2535413949723434,0.2620365120761991,0.2692901852635915,0.2760082718146004,0.282449875125458,0.2888456090651558,0.2950394763559919,0.3005811841627315,0.305719024510105,0.3094854602889214,0.3140036544513247,0.3187000477733734,0.322833506503755,0.3214880025766278,0.3204324383651854,0.3195285391174859,0.3180095401420933,0.316733569344255,0.3153506695780971,0.3134102037592797,0.3147069411264195,0.3149065890086684,0.3156105980533461,0.3165787800590897,0.3181836138105396,0.3195283590826417,0.3212940048603215,0.3208953435425504,0.3228752048700538,0.322451642180498,0.3246602792911265,0.3278797413039678,0.3306582328523423,0.3341033654935,0.3353252247488101,0.336753848079089,0.3396611707759794,0.3419655333022822,0.3420620009394082,0.3423863289594141,0.3444466760393653,0.3494742667404538,0.3488188976377953,0.0,2.1500566427367303,55.32733125757576,184.20985332521863,256.0027294847559,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95745,45037,426.9883544832628,5901,60.379132069559766,4585,47.26095357459919,1758,17.95394015353282,77.33232137485312,79.69891625247577,63.31916690730778,65.07160938596067,77.11066512955689,79.4798791180959,63.23530402048309,64.9911525822075,0.2216562452962307,219.0371343798745,0.08386288682469,80.45680375316522,159.14778,111.91079204379388,166220.46059846468,116884.2154094667,398.45943,262.19341638665526,415515.0242832524,273194.12065807177,379.49352,184.5649249147771,392340.9995300016,189603.31043943096,2611.03464,1201.3343083668387,2693018.497049454,1220718.7267385789,1063.13155,461.9770122058167,1097989.7644785629,470119.3401282748,1721.93168,729.573488195644,1760050.2584991383,730180.569384159,0.37963,100000,0,723399,7555.475481748394,0,0.0,0,0.0,34440,359.0265810225077,0,0.0,34624,357.64791895138126,1571145,0,56349,0,0,0,0,0,72,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.05901,0.1554408239601717,0.2979156075241485,0.01758,0.3307966321243523,0.6692033678756477,24.67277817976438,4.342286881059346,0.314721919302072,0.2486368593238822,0.2215921483097055,0.2150490730643402,11.136630283671538,5.601405331257661,18.63168245346689,12058.209331814138,51.75951398015388,13.624509231335711,16.271999858278665,11.203944613525689,10.659060277013811,0.5655398037077426,0.7912280701754386,0.7124047124047124,0.5501968503937008,0.1054766734279918,0.7238805970149254,0.9205607476635514,0.8594594594594595,0.6829268292682927,0.1034482758620689,0.5090263391535957,0.7134831460674157,0.6616961789375583,0.5166461159062885,0.1060025542784163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0046962642891194,0.0068840874015108,0.0093198634035287,0.0115569300887116,0.0137121667464675,0.0156747164885371,0.0182339789073905,0.0202750370635448,0.0224510897941215,0.024655034547803,0.0268774703557312,0.029059424775576,0.0312480688817022,0.0330671453922661,0.0351723995369604,0.0368103876739562,0.0388422035480859,0.0409660590692744,0.0425137477087152,0.0567467691087124,0.0701737865804534,0.0835518449371735,0.0964258299246048,0.1084176007254552,0.1242582269376011,0.1362623368354027,0.1476067793723119,0.1581943836187098,0.1677712716899384,0.1803757244113148,0.1926123942076668,0.2041018387553041,0.2140185075802323,0.2241847975612708,0.2345182724252491,0.2438069094804499,0.2522786092044559,0.2607550981037437,0.26842593547057,0.2751102315731,0.282590638417352,0.287658265294048,0.2936679129517783,0.2988389886084865,0.3024803164159243,0.3074142179857645,0.3120003050601858,0.3171429310969612,0.3214290422516643,0.319834299471426,0.3187622857299957,0.3174132012829891,0.3155609411289508,0.3149703264094955,0.3133239531398158,0.3114349065568578,0.3128136171329245,0.3133290142189791,0.3137230417952514,0.3144533813300336,0.3151690171489605,0.316602397518652,0.3169417236906838,0.3186498580570658,0.3194770016148356,0.3201739427012278,0.3244110338753814,0.3269365457346967,0.3285356447059759,0.3331514820876523,0.3368477103301384,0.3409349336702463,0.34332673870035,0.3425960462513987,0.3455246552932928,0.348994296007205,0.3498710061520143,0.3601294847585649,0.358526395746297,0.0,2.412025803164004,52.30258528779025,170.64816830840465,254.60976333706617,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95721,45055,427.53418790025177,5920,60.64499952988372,4621,47.6384492431128,1817,18.564369365134088,77.41699606751023,79.76979202679595,63.36600846061516,65.10030100947417,77.1856780980507,79.54202721268223,63.279889912190974,65.01856753274573,0.2313179694595248,227.7648141137263,0.0861185484241886,81.73347672843079,158.80348,111.72489729875988,165902.44564933504,116719.3168675211,402.03791,264.7323655299483,419398.8362010426,275960.105603308,383.53311,186.56237111416831,396822.4318592576,191957.2055728027,2659.31204,1226.6413275542927,2741378.1719789803,1244933.330224831,1086.62651,483.0229090971608,1116721.4822243813,486252.34112882166,1773.53228,750.6791585836401,1812195.9235695405,747952.755156355,0.37945,100000,0,721834,7541.020256787956,0,0.0,0,0.0,34632,361.1433227818347,0,0.0,35078,362.5641186364538,1571468,0,56375,0,0,0,0,0,79,0.8253152390802436,0,0.0,0,0.0,0,0.0,0.0592,0.1560152852813282,0.3069256756756757,0.01817,0.3363460296965784,0.6636539703034215,24.23660039333096,4.324974679458495,0.3343432157541657,0.233715645964077,0.2179181995239126,0.2140229387578446,11.328192572769362,6.016588559756546,19.34307351351824,12022.166768742374,52.40125737384236,12.823067758888923,17.366178074989495,11.292112719041151,10.91989882092276,0.575632979874486,0.7898148148148149,0.7003236245954693,0.5998013902681232,0.1223458038422649,0.7291666666666666,0.9029850746268656,0.8406862745098039,0.7727272727272727,0.1559633027522936,0.5188259709457457,0.7227138643067846,0.6499560246262093,0.5514612452350699,0.11284046692607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0044271545654398,0.0068159688412852,0.0089968419663075,0.0112046526761021,0.013049939941774,0.0153708158356097,0.0175648091447234,0.0197947963292251,0.022046712431072,0.0241425599721274,0.026037336945924,0.0281975369559407,0.0301844433230693,0.0321252824115626,0.0342361706744928,0.036651274511834,0.0383973115658676,0.0405762155195709,0.0422340059798518,0.0566983397723713,0.0702828263803873,0.0836480758739351,0.0963704630788485,0.1083161946949322,0.1235352595287448,0.1353790996648139,0.1466283463728777,0.1576439415793241,0.1674817150333526,0.1799112719128225,0.1918770082982613,0.2027237058049931,0.2135133363916377,0.2234221367756111,0.2334258880272575,0.243104389787253,0.250831535418914,0.2591799022775454,0.2669885694016957,0.2743602191552812,0.2813478525026873,0.2879112046241681,0.2932805094077656,0.2995402326738078,0.3045560301847771,0.3096389607468226,0.3145155142181901,0.3184403764608542,0.3218761943671995,0.3204829969476529,0.3190092181725762,0.3183340368650626,0.3163894869164415,0.315116503556737,0.3138670500780079,0.3108485872672426,0.3115808071719534,0.3119545431346864,0.3124611311501626,0.3130523960469886,0.3135249931175522,0.3135708174210647,0.3139783033967633,0.3150278648137961,0.3151573322265169,0.3162952883143392,0.3196700824793801,0.3232996163236833,0.3258271877588042,0.3296177625344104,0.3327885274423999,0.3346635904470911,0.3372454001665783,0.3379156604124094,0.3393960592281683,0.3415222305953278,0.348731165741475,0.3546231961517905,0.3626577579806978,0.0,2.452979878870712,54.331145762489015,174.11120935127727,249.6546985064465,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95702,44948,425.88451652003096,6085,62.36024325510439,4754,49.16302689598964,1936,19.874192806837893,77.3508434030137,79.74188251348632,63.31502979323547,65.08294789533898,77.11072028518343,79.50107375868909,63.22615291223144,64.9958806521836,0.2401231178302652,240.80875479722863,0.0888768810040261,87.06724315537429,158.89478,111.792197462046,166030.78305573552,116812.81212727632,398.98598,261.8351983722179,416387.36912499217,273077.1126749889,378.89684,184.1935436987979,392784.0588493448,190051.16564851892,2739.74076,1256.3277201712465,2835134.312762534,1285100.8340173103,1130.25009,500.56898266531095,1166884.7568493865,508929.02040194254,1888.1526,789.2171950336103,1940771.708010282,797550.296022927,0.3798,100000,0,722249,7546.853775260705,0,0.0,0,0.0,34412,359.04160832584483,0,0.0,34635,358.72813525318173,1571760,0,56392,0,0,0,0,0,72,0.7523353743913398,0,0.0,1,0.0104491024221019,0,0.0,0.06085,0.1602159031068983,0.3181594083812654,0.01936,0.3351691581431943,0.6648308418568056,24.50500687614242,4.365031771528688,0.3161548169962137,0.2391670172486327,0.2219183845183003,0.2227597812368531,11.200255352819813,5.91511941603221,20.52210543414215,12172.354083741911,53.771430709962026,13.686813087597525,16.897895591064138,11.765759973926174,11.420962057374188,0.56541859486748,0.7985927880386984,0.6899534264803726,0.571563981042654,0.1322001888574126,0.7325670498084291,0.9198113207547168,0.8486352357320099,0.7450199203187251,0.1629955947136563,0.5021745433458974,0.726507713884993,0.6318181818181818,0.5174129353233831,0.1237980769230769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026034016430807,0.004867611118435,0.0069232252890598,0.0094011708268964,0.0116482532706667,0.014129703958762,0.0162808964694121,0.0183324141593643,0.0205254599564332,0.0225312877655107,0.0247666905958363,0.026837986072595,0.0288617802554977,0.0308778075417267,0.0330244174286363,0.0348887694343367,0.0368705129134853,0.0390256053639449,0.0410334820732049,0.04298519908276,0.0570363252772961,0.0706208773950371,0.0836420886906323,0.0962845300961477,0.1084060294722629,0.124189367892092,0.1370969453819864,0.1488355748650289,0.1595835649236821,0.1698876500949662,0.1832801586617228,0.1945587216351983,0.2064290067032297,0.2163111641294474,0.2258909795545377,0.2364440797498392,0.2454496728231011,0.2545603999639672,0.2626777843413459,0.2700765914511099,0.2759163819561063,0.2831896753642198,0.2897733331753498,0.295720404563942,0.3010091185410334,0.3056295309957094,0.3099245429404477,0.3144482047889259,0.3196024381721474,0.3232363228403616,0.3219863890573411,0.3210569777043765,0.3198760825177779,0.3200075102182296,0.3195474227415624,0.3175993883792048,0.3163926651912741,0.3167666240618753,0.3177420180542994,0.3184678181202431,0.3200770684075646,0.3219738008470403,0.3224945249765356,0.3231875667972925,0.3243061879883046,0.3266408664710007,0.3272125396106836,0.3298779155087895,0.3330659785186218,0.3372508942258559,0.3398097642338727,0.3409785932721712,0.3482142857142857,0.3548044862079418,0.3598687294889826,0.3617905485632866,0.3628197320341047,0.36096203538064,0.3589536138079827,0.3621351766513057,0.0,1.9789258561736327,57.47256767599298,174.59926417410716,256.8084143540163,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95718,45213,428.19532376355545,6021,61.7438726258384,4730,48.77870410998976,1825,18.669424768591067,77.26691653433518,79.6255357951826,63.2951211478972,65.03849526442474,77.04405035536593,79.40512036525375,63.21234687252112,64.95887134556348,0.2228661789692552,220.415429928849,0.0827742753760745,79.62391886125886,157.87772,111.09620236692652,164940.4709667983,116066.15512957492,398.50932,261.9202690640127,415690.04784888943,272990.6068492996,379.50643,184.92753710011817,392119.6222236152,189824.6697852453,2718.60392,1242.5157943246957,2807373.827284314,1265441.837748924,1134.29426,496.8674064252968,1167125.7234793874,501288.943406316,1791.37946,750.5621610029641,1835240.9578135773,755160.7483168545,0.38124,100000,0,717626,7497.294134854468,0,0.0,0,0.0,34423,358.96069704757724,0,0.0,34747,358.5950395954784,1573097,0,56487,0,0,0,0,0,60,0.6268413464552122,0,0.0,0,0.0,0,0.0,0.06021,0.1579320113314447,0.303105796379339,0.01825,0.3283629441624365,0.6716370558375635,24.3789867577636,4.347587314748639,0.321353065539112,0.2315010570824524,0.2257928118393234,0.221353065539112,11.124240254079496,5.7340248964139775,19.479669055521185,12176.547179421625,53.63931224747784,13.19572047615824,17.073804565237904,11.897293452181064,11.472493753900649,0.5653276955602538,0.7917808219178082,0.6967105263157894,0.5889513108614233,0.1136580706781279,0.7126530612244898,0.9053398058252428,0.8502824858757062,0.7004048582995951,0.1226415094339622,0.5138373751783167,0.7232796486090776,0.6500857632933105,0.5554202192448234,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0042076873941741,0.0064435604984373,0.0087565140541034,0.0111364237332953,0.0133790842352845,0.0158213976247515,0.0180684149814722,0.0202406387045991,0.022324353095316,0.0245405061863807,0.0267340150301835,0.0288652372872641,0.0309307020435069,0.0329110267414988,0.0351767624560678,0.037570159269308,0.0393318462416351,0.0414124299658014,0.0433020411140169,0.0579716198014012,0.0713209127067197,0.0848304231027535,0.0978368369000273,0.1095802255535979,0.1253306808321517,0.1370382165605095,0.1480483518824218,0.1584063131556154,0.1679726915562807,0.1811252816438297,0.193214572091108,0.2044518981552066,0.2145477642832893,0.2243465420725525,0.2354926075567198,0.2451247875480812,0.2550844497526788,0.2634927126287927,0.2708576931013137,0.2780105075566459,0.2842782751155579,0.2905391007884083,0.2971262094018631,0.3023999027887478,0.3072228250147958,0.3122760417971784,0.3163277001642831,0.3203417739572393,0.3252341145971112,0.3237332324692342,0.322895525273026,0.3215926276660401,0.3214130529243069,0.3203694049303642,0.3174803052872433,0.3162175902389425,0.3165307635285396,0.316443545484153,0.3183770626767369,0.3194689600781162,0.3196709939550094,0.3198838774823291,0.3217761830006728,0.323859657595441,0.3251824149384104,0.3265241896260692,0.3289935218833939,0.3321984608291662,0.3360109245722548,0.33960877950225,0.3413536252076523,0.3449214792299899,0.3451145038167938,0.3506456781977566,0.3471926083866382,0.3472477064220183,0.3475363489499192,0.3515367727771679,0.3533950617283951,0.0,2.397150021249335,53.39793509755386,180.91553785452632,262.19935807974394,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95706,45070,427.6534386558836,5968,61.16648903934967,4720,48.77437151275782,1899,19.46586420914049,77.288290147924,79.65827082536899,63.294707477804174,65.04426652810812,77.05451772584871,79.42426015489642,63.20876184109764,64.96020249757096,0.2337724220752903,234.0106704725713,0.0859456367065334,84.0640305371636,157.9996,111.15758369947991,165088.50019852465,116144.843269471,399.07443,262.55300950801404,416371.2097465154,273724.541311949,383.7004,186.69098442294597,397284.43357783207,192217.5773878774,2733.39968,1257.289960263021,2824298.5392765347,1281993.3584608452,1133.70446,507.68895261509977,1167760.8718366665,513737.9845402468,1871.09216,786.1192747176488,1919918.5839968235,792697.4100297793,0.37986,100000,0,718180,7504.022736296574,0,0.0,0,0.0,34426,359.1415376256452,0,0.0,35083,362.95530060811234,1570054,0,56377,0,0,0,0,0,65,0.668714605144923,0,0.0,0,0.0,0,0.0,0.05968,0.1571105144000421,0.3181970509383378,0.01899,0.3256668263855614,0.6743331736144386,24.407206912798248,4.4174625486300085,0.3120762711864406,0.2324152542372881,0.2213983050847457,0.2341101694915254,11.38539981843232,5.810602693242403,20.30624942033541,12162.217274806651,53.65001712384189,13.19682921697081,16.711798091987607,11.534139734119814,12.207250080763655,0.5555084745762712,0.7894257064721969,0.6992532247114732,0.5866028708133971,0.102262443438914,0.7287066246056783,0.9140811455847256,0.8605898123324397,0.7689075630252101,0.1554621848739495,0.4918887601390498,0.7123893805309734,0.6445454545454545,0.5328376703841388,0.0876585928489042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382240046992,0.0042984154661854,0.0065653285708487,0.0089294784534427,0.011227727605565,0.0132065289331934,0.0154768459044473,0.0175572908691879,0.0198509644379478,0.0220744000409353,0.0239817984299096,0.0261853193869904,0.0284389426388788,0.0305043202438697,0.0325422120452599,0.0346206711242933,0.0366109977946429,0.0384280110416969,0.0402716673427148,0.0424061780246579,0.0576489263931823,0.071548971365754,0.0846513092302041,0.0972260223517774,0.1092392623790071,0.1249761778718898,0.137010883992567,0.1489756128743567,0.1591745081266039,0.1688643587320677,0.1812907747883755,0.1929281001852473,0.2047959228122141,0.2150450519493316,0.2255911538927497,0.2357496283476447,0.2457938805853353,0.2544583474241912,0.2629549590536851,0.2712284730195178,0.2781952271620399,0.2841870824053452,0.290199753273866,0.2964675642888886,0.3024997260407407,0.308307182921104,0.3130053739139169,0.3170436135879479,0.3216155475012016,0.3260498418454453,0.3239429018591975,0.3222347941273871,0.3219394967486571,0.3209087218742751,0.3196266698473282,0.3175614474108417,0.3156133003363157,0.3160249346206352,0.3172222507576147,0.3169195533924993,0.3183081661783487,0.318693715982187,0.319564030408669,0.3195853255283971,0.3213189448441247,0.3219784499545631,0.3222127417519909,0.3251367838500723,0.327431763094109,0.3299964247407937,0.3338809784592917,0.3381382978723404,0.3401206636500754,0.3404287669150068,0.3450041903342956,0.3472906403940887,0.3555153161309793,0.359168997203356,0.3639291465378422,0.3666542334949645,0.0,2.074550420638563,55.74344235727981,176.8482166573718,259.1617253380069,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95824,45734,433.3256804140925,5924,60.53806979462348,4679,48.18208382033728,1855,18.982718316914344,77.36488025655099,79.68051844990424,63.35773544642036,65.07161313612218,77.13415003067252,79.45231056868172,63.27194434447655,64.98936581820762,0.2307302258784744,228.20788122251656,0.085791101943812,82.24731791456463,159.05252,111.9607248181729,165984.012355986,116839.96161522467,401.76709,264.4599278870919,418659.365085991,275368.37106266903,386.44738,188.7214766168406,399353.387460344,193862.0078776696,2720.01064,1253.6509554977897,2804647.269994991,1274383.7822443114,1137.18488,505.084758539826,1170990.2947069628,511343.3153905348,1822.58882,768.5333581605847,1867753.923860411,771597.2158253542,0.38424,100000,0,722966,7544.727834362999,0,0.0,0,0.0,34601,360.4420604441476,0,0.0,35340,364.8877108031391,1570043,0,56356,0,0,0,0,0,77,0.7931207213224245,0,0.0,1,0.0104357989647687,0,0.0,0.05924,0.154174474286904,0.313133018230925,0.01855,0.3324162485839133,0.6675837514160867,24.55746132133813,4.3918593738038645,0.3261380636888224,0.2263304124812994,0.2169266937379782,0.2306048300918999,11.15682057426496,5.720261105199104,19.962898124632417,12193.135571585372,53.04135107149353,12.616467012478966,17.28065456226504,11.260975353902996,11.883254142846535,0.569993588373584,0.785646836638338,0.7103538663171691,0.6029556650246305,0.1288229842446709,0.750197628458498,0.9170854271356784,0.9015151515151516,0.799163179916318,0.1551724137931034,0.5032220269478618,0.7065052950075643,0.643362831858407,0.5425257731958762,0.1216056670602125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044709842248266,0.0065650620991963,0.0088875797342867,0.0112262433776349,0.0136134077302162,0.0156883932394136,0.0177328133613737,0.0197190873405299,0.0216899534264803,0.0238080596892551,0.0260562585306281,0.0280475647231729,0.0301355482137894,0.0326753594804927,0.0347579229895736,0.0369155978485726,0.0391342188698012,0.0409722871175071,0.0430933133576786,0.0577314211212516,0.0718787562059054,0.0849657455322536,0.0982537565759768,0.1109847407828641,0.1272544878563886,0.1395018698420433,0.150547464653981,0.1609933541704447,0.1709401709401709,0.1835863122451833,0.1955875517506026,0.2071527898487745,0.2173381239966363,0.2260733870347374,0.2354333233807738,0.244759061643683,0.2534866485503178,0.2624010688526818,0.2699505024062918,0.2772248649147924,0.2840350651927768,0.2899269866023959,0.2958228196266488,0.3010669158969254,0.3065417569430766,0.31178669200095,0.3156456880011182,0.3210401768973142,0.3248692857801367,0.3233700402027618,0.3226440510226523,0.3216967442908865,0.3214807105791885,0.3201630418612954,0.317634072302456,0.315405478278799,0.3155176100939315,0.3169624503220501,0.3180719872563584,0.319144131428894,0.3210521091811414,0.3226572515394153,0.3241182933118091,0.325042057197789,0.3261572143452877,0.3270438464380097,0.3290729807813088,0.3322101716331473,0.3369305511309334,0.340583360043958,0.3435713904171785,0.3460732651895117,0.3506912442396313,0.3539923954372623,0.3555423122765196,0.3550077041602465,0.3547200653861871,0.3580858085808581,0.3562908811081185,0.0,2.5689251350082407,54.87591825250025,174.40588321831703,255.40609797532883,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95636,45501,431.751641641223,6041,61.8700071102932,4738,48.93554728344975,1894,19.406917897026226,77.2563444549925,79.66582906196668,63.27473565930678,65.0553908680278,77.02145563649265,79.43349345606904,63.186535623691285,64.9709501438679,0.2348888184998543,232.3356058976316,0.0882000356154932,84.44072415990433,157.96704,111.14022644615986,165175.0596009871,116211.4888202767,401.72498,264.9133561651881,419463.2774269104,276409.6249155005,386.11761,188.51748216991948,400160.1907231586,194393.14856862844,2706.85572,1245.1130078584954,2796251.620728596,1267857.049498615,1102.5869,489.3024710637853,1138047.08477979,496846.6364836504,1848.20054,779.8721575360313,1895088.5440629048,781874.0799070814,0.38256,100000,0,718032,7507.957254590322,0,0.0,0,0.0,34618,361.3492826968924,0,0.0,35227,364.7475845915764,1567256,0,56315,0,0,0,0,0,75,0.7737672006357439,0,0.0,0,0.0,0,0.0,0.06041,0.157909870347135,0.3135242509518292,0.01894,0.3306553245116572,0.6693446754883428,24.449127275042056,4.391772663802476,0.314689742507387,0.2363866610384128,0.2306880540312368,0.2182355424229632,11.244573707058946,5.743630849269622,20.22878779106246,12201.727601416513,53.75504342708438,13.444137030938014,16.8945216463876,12.151032032281943,11.265352717476814,0.5523427606585057,0.7794642857142857,0.6901408450704225,0.5580969807868252,0.1015473887814313,0.7250778816199377,0.9156908665105388,0.8427835051546392,0.7121212121212122,0.1219512195121951,0.4881297046902142,0.6955266955266955,0.6364460562103355,0.5090470446320868,0.0965018094089264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0048143681015172,0.0070834897857701,0.0093870957910456,0.0117611150676569,0.0141804957061214,0.0163314019911865,0.0184314847357881,0.020733179223861,0.0228041059684061,0.024934585193166,0.0270175835243096,0.0289188131859081,0.0310344472053531,0.0329328636509199,0.0347685716946574,0.0371023086572053,0.0389341920739625,0.0409985327936233,0.0431304238985313,0.0577944065883533,0.0712908835669537,0.0845660413014036,0.0981694544153096,0.1105752487890332,0.1266033103331499,0.1388829922730746,0.1503839476851309,0.1614806580227251,0.1712544133586598,0.1838578559799894,0.1958568534188543,0.2067406673129922,0.2164682931106288,0.2262173937020901,0.2367661426414424,0.2456536817846195,0.255098244783388,0.2635671251563032,0.27084361124815,0.2775039717973397,0.2833087079903374,0.2901518747033697,0.2961046134633396,0.3014284148613597,0.3068664755880609,0.3115584822828472,0.3157626232351703,0.3206952052127411,0.3252336695707354,0.3239946018893387,0.3223255685581806,0.3209619952494061,0.3191961694718514,0.3179192477050526,0.316811107861398,0.315233977619532,0.3154971820309152,0.3161776081687381,0.3169650070919439,0.3183394263747032,0.3189646610118988,0.3201497875205116,0.3212311135982093,0.3233283589274539,0.3258863399374348,0.3269252742230347,0.3300989225631655,0.3319784147452519,0.3349456823408135,0.3376558376558377,0.3427160231557704,0.3465858891833901,0.346497877501516,0.3484974572353213,0.3521820741435945,0.3553619705617302,0.3572567783094099,0.3610738255033557,0.367112810707457,0.0,2.3178033467946606,56.10858245697303,174.83220323070557,260.7113263223872,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95691,45232,429.03721353105306,6018,61.75084386201419,4753,49.0746256178742,1868,19.09270464306988,77.32722884548278,79.7043737193021,63.32110870231941,65.07602037721992,77.09544421911583,79.47519537770843,63.2349845662816,64.9936605556299,0.2317846263669452,229.17834159366635,0.0861241360378173,82.35982159001765,158.20618,111.307598072661,165330.26094408042,116319.81907667492,398.58047,261.9080213961461,415961.187572499,273134.3296612494,382.53872,185.9722646541888,395871.7434241465,191298.00836005172,2733.26992,1254.642687101847,2824913.565539079,1279703.2187999368,1124.48669,494.60308058705726,1161794.2962243054,503546.80229808064,1831.04218,768.4397853942439,1874870.029574359,770550.9576695081,0.38081,100000,0,719119,7515.011861094565,0,0.0,0,0.0,34407,358.9470274111463,0,0.0,35005,362.01941666405406,1573449,0,56525,0,0,0,0,0,57,0.585217000553866,0,0.0,1,0.010450303581319,0,0.0,0.06018,0.158031564297156,0.3104021269524759,0.01868,0.3368771818470327,0.6631228181529674,24.270806169568573,4.336180072149968,0.3326320218809173,0.2185987797180728,0.228066484325689,0.2207027140753208,11.172378866196189,5.730722732827783,19.901895693718505,12173.267803427456,53.84733767342925,12.438940474007184,17.81210696585613,12.018340858098824,11.57794937546711,0.5606985062066063,0.7969201154956689,0.6932321315623023,0.577490774907749,0.109628217349857,0.7360126083530338,0.918158567774936,0.8910411622276029,0.6935483870967742,0.1612903225806451,0.4968427095292766,0.7237654320987654,0.6232876712328768,0.5430622009569378,0.0961538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0045910145838189,0.0070609718981434,0.0094762180444254,0.011714340915793,0.0141732764501644,0.0161727815960679,0.0181691910165146,0.0201255803489252,0.0220581458459206,0.0242749312876892,0.026313897476454,0.0281732153877802,0.0303042792816,0.032457815160741,0.0344688508314718,0.0367987567987568,0.0387039171104951,0.0406390746731295,0.0428610144051366,0.0578975955211096,0.0715451919454096,0.0848796349714165,0.0977044144257879,0.1098255531883477,0.1254191746622801,0.1378951725016183,0.1492594524952883,0.1603170872417256,0.1703855478555643,0.1836444521042257,0.1948692969637928,0.2066628961736747,0.2162652842487477,0.2265618981588475,0.236229282992112,0.2450391732327403,0.2539650401565769,0.2624519116195145,0.2698758190899509,0.2772766745788224,0.2841257578949833,0.2900953170327393,0.2960023973629008,0.3018656943178365,0.3069437592501233,0.3114355840512923,0.3146983164811655,0.3190761334473909,0.3240044905236743,0.3228695921973856,0.3214856230031949,0.3216330559864617,0.3199381538639385,0.3189935909827655,0.3170641863891703,0.3149143246627673,0.3154529656710056,0.3156440776235462,0.3170197614384903,0.3182073038537734,0.319540048519753,0.3192851761948606,0.3214213923570008,0.3225798691301,0.3249451811632035,0.3261384725196288,0.3297972802820448,0.3329476931706633,0.3378093838147074,0.3380095046609395,0.340956340956341,0.3427164857359253,0.3432093094472516,0.3479784111353091,0.3489972706775839,0.3529231241368727,0.3518067397482745,0.3561379310344827,0.3620292083013067,0.0,2.363198501563716,55.487896221868816,178.57441830259117,259.3087571288664,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95774,45157,426.1699417378412,6111,62.54307014429804,4776,49.24092133564433,1927,19.713074529621817,77.38146625236273,79.7050857702997,63.35451413110488,65.06811829307163,77.14388885484578,79.46987762237937,63.26545715858294,64.98285215645772,0.2375773975169437,235.20814792033207,0.0890569725219379,85.26613661391025,156.58962,110.30222385492742,163499.09161150208,115169.27752305158,398.25323,261.9057952742268,415183.7555077578,272820.0297306437,381.07364,185.42100708973751,394117.9547685176,190695.78591888212,2772.91,1274.7826557590377,2860896.2766512837,1296664.4974200071,1199.13216,527.9606697283917,1237166.0889176603,536379.3511061366,1898.19982,801.3489204813693,1943380.4790444167,802311.9693463501,0.38139,100000,0,711771,7431.776891431912,0,0.0,0,0.0,34338,357.8841856871385,0,0.0,34775,359.3146365401884,1582668,0,56724,0,0,0,0,0,84,0.87706475661453,0,0.0,0,0.0,0,0.0,0.06111,0.1602296861480374,0.3153330060546555,0.01927,0.3407003891050583,0.6592996108949416,24.5001183116495,4.434441361172547,0.314070351758794,0.2248743718592964,0.2267587939698492,0.2342964824120603,11.044537481234991,5.58550628233615,20.50471188827904,12257.91187405556,53.98814349009469,12.828195176472416,16.741448469445114,12.174830629284823,12.243669214892332,0.5504606365159129,0.7746741154562383,0.674,0.5992613111726686,0.1224307417336908,0.7014925373134329,0.9172932330827068,0.8169014084507042,0.7545787545787546,0.1260162601626016,0.495575221238938,0.6903703703703704,0.6296943231441048,0.5469135802469136,0.1214203894616265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021059878905696,0.0042158174226762,0.0065631308264269,0.0088349987813794,0.0112967350300466,0.0135696398395667,0.0157982713633398,0.0179083460035306,0.0200143032284429,0.022149923779708,0.0244747005972687,0.0269937517313552,0.0290832108686939,0.0313664532334108,0.0337642789393377,0.0360008674907829,0.0381944803750116,0.040473154397205,0.0424769384193468,0.0444592526264277,0.0589413925530138,0.0723711059719766,0.0859309447893942,0.0991558298203378,0.1111731961371399,0.1265469315224979,0.1386655351649517,0.1503044626128427,0.1614715747644583,0.1715863399989277,0.1846006437929958,0.1965390439108803,0.2082644628099173,0.2186159971996149,0.2283686382393397,0.2384846369488858,0.2480156293608707,0.2566087847038567,0.2649269832617928,0.2721915876600672,0.2799606162400093,0.2867132048068589,0.2930146057167225,0.2990109692501349,0.3041275318647404,0.3095824912505545,0.3137191116671879,0.3178435587894824,0.3221513902925704,0.3264064808950813,0.3251369429751954,0.3236499120105587,0.3233409836527224,0.3221292160009252,0.3214806222301538,0.3194729584801593,0.3179194407983173,0.3179218225026632,0.3169358827843826,0.3172125311498754,0.3168065185295931,0.3182391175891274,0.3194641812254451,0.3198329947085221,0.3210456889315266,0.3216161406063127,0.3222736698576826,0.325985534020102,0.3265999159781543,0.3283090714370711,0.3308499523009131,0.3315536290109425,0.3338328026471873,0.3384150943396226,0.3385382372307403,0.3390791027154664,0.3405994550408719,0.3452428743476515,0.3587578316535004,0.3570064910271096,0.0,2.428242739270774,55.43004118733261,176.33284057651483,264.4290689095656,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95747,45111,428.1282964479305,5889,60.08543348616667,4588,47.21818960385182,1844,18.789100441789294,77.31912755708531,79.66861643517343,63.32066847763053,65.05806846108118,77.0855451161598,79.44000836412329,63.23286068880668,64.97542686755615,0.2335824409255025,228.60807105014655,0.0878077888238522,82.64159352502531,158.04052,111.28389985612948,165060.54497791053,116227.03568375978,394.83675,259.90935783311403,411706.59132923227,270785.8395909156,377.9524,184.5826841348004,390372.9411887579,189362.3248527104,2640.94364,1216.4290577820773,2720366.0480223927,1232575.7441821443,1130.42158,501.492280614182,1163945.6797602014,507079.8778177719,1803.87208,759.7641801861574,1840612.530940917,756505.8570454821,0.38005,100000,0,718366,7502.752044450479,0,0.0,0,0.0,34034,354.74740722946933,0,0.0,34551,356.57514073548,1576776,0,56561,0,0,0,0,0,72,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.05889,0.1549532956189975,0.3131261674308032,0.01844,0.3368319069917649,0.6631680930082351,24.622698089103515,4.392247474055612,0.3201830863121185,0.2301656495204882,0.2244986922406277,0.2251525719267654,11.275341254059082,5.9237738987430655,19.64168450369767,12164.57421115645,51.91556384150978,12.743625900179806,16.51437132111481,11.495454664876275,11.1621119553389,0.5680034873583261,0.8001893939393939,0.6943498978897209,0.5766990291262136,0.1423039690222652,0.7481542247744053,0.917948717948718,0.8578811369509044,0.7427385892116183,0.2139303482587064,0.5028198278420897,0.7312312312312312,0.6358595194085028,0.5259822560202788,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987574557717,0.004418366623091,0.0065439714297309,0.0089784476629628,0.0112782337208001,0.0136465939527257,0.0157430537853683,0.0177470081280888,0.0200404899695302,0.0220104216787297,0.0240641437081543,0.0261939233383647,0.028323425962112,0.0303077129111681,0.032098969242357,0.0341256717651922,0.0360366888898091,0.0379967428399531,0.0399758918458325,0.0422356237436073,0.0569752390496471,0.0708636706000502,0.0844670072058653,0.0973026973026973,0.1092392679429872,0.1249920697020322,0.137657103462905,0.149019482661389,0.1606389680836296,0.1704474795771779,0.1834169771899972,0.1956100570389531,0.2068965517241379,0.2171392950491584,0.2265490036421254,0.237097417268418,0.2459841711038924,0.2546219716661603,0.2627420709696461,0.270742658175654,0.2772985677731593,0.2836505818173304,0.2893427474766621,0.2947135929322514,0.3010910948656505,0.305384786312125,0.3109273182957393,0.3152241772522838,0.319417425362488,0.3231409325056135,0.3228928003450227,0.3218348067972128,0.3206218873887219,0.3194520865309432,0.3189444874159576,0.3170540971540726,0.3157844660809996,0.3161493950552341,0.3170810903187216,0.3184444484195839,0.319598272949127,0.320131295355229,0.3204385080645161,0.3216864767885176,0.3241940924203729,0.325926312766013,0.3263109817019211,0.3292030945342474,0.3327709234067981,0.3350631858336965,0.3382393022621968,0.3412445577147711,0.3434228780426283,0.3453907203907204,0.3475517890772128,0.3533905276765777,0.3614952134933901,0.3652525252525253,0.3619361936193619,0.3562999619337647,0.0,2.7746823217554173,52.524765780583046,172.7951810466471,251.08686683314275,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95687,45300,429.8285033494623,5913,60.69790044624662,4585,47.39410787254277,1820,18.74862834031791,77.34181859432726,79.7252471966403,63.3271521787835,65.086010670699,77.11970543270988,79.50240812162737,63.24647882968363,65.00686196900142,0.2221131616173863,222.83907501292788,0.0806733490998681,79.14870169757648,160.08828,112.6135405592723,167303.87617962735,117689.27834628774,400.42518,263.9788464173893,417942.8449005612,275347.1556633914,383.38699,186.69927668338053,396961.3845140928,192268.17700247795,2638.45928,1202.501449840997,2729908.5560211944,1229274.4469709748,1103.98041,485.9682282897199,1141558.3726106996,495718.4977113763,1784.2923,733.5699333478633,1839894.3848171644,745955.9864944782,0.38111,100000,0,727674,7604.721644528515,0,0.0,0,0.0,34566,360.68640463176814,0,0.0,34856,360.6341509295934,1563382,0,56073,0,0,0,0,0,87,0.909214417841504,0,0.0,1,0.0104507404349598,0,0.0,0.05913,0.1551520558368974,0.3077963808557415,0.0182,0.3408614292627843,0.6591385707372157,24.66083247512564,4.334613478838788,0.3236641221374046,0.2344601962922573,0.2165757906215921,0.2252998909487459,11.172524530822724,5.821741959482621,19.279715927879916,12124.339978571908,51.78353030038573,12.796626043414602,16.666793560412195,11.016982199292428,11.3031284972665,0.5511450381679389,0.7767441860465116,0.6617250673854448,0.5871097683786506,0.1229428848015488,0.7320692497938994,0.9285714285714286,0.848404255319149,0.6811594202898551,0.1809523809523809,0.486061684460261,0.6793893129770993,0.5983754512635379,0.5623409669211196,0.1081409477521263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278255410071,0.004368671254954,0.0068484116757809,0.0090999573439499,0.0114186358644812,0.0138368493931742,0.0162778134523845,0.0185274032032502,0.0206461635952943,0.0228684908229176,0.0246800918710524,0.026651192884799,0.0286616668209828,0.0306758580893793,0.0325946721438376,0.0346914078257361,0.0367653154273398,0.0386528099336579,0.0405392753487501,0.0423668737750719,0.0572658233137293,0.0713754724685631,0.0849259574110806,0.0974306096252183,0.1101512562496044,0.1259122157588577,0.1372066375249331,0.1480862568119891,0.1586116274597782,0.1682500536135535,0.1809264363855629,0.1945928409213799,0.2051301567970772,0.2149548033096875,0.2243912632250401,0.2354654059500215,0.2446946198647714,0.253420730130533,0.2616635851132612,0.2695451111467228,0.2763256765661306,0.2823261250730567,0.2884503978340801,0.2939936523145098,0.2990286546867411,0.3039750680577968,0.3081079728816951,0.3127369412004173,0.3169572313032666,0.3209752750877378,0.320332274220475,0.3192417218087521,0.3183041817592423,0.3182067809347631,0.318659931659486,0.318130967158598,0.3162700170896892,0.3169135377196004,0.3172976757689089,0.318084575340512,0.3180884056346448,0.3187365681500029,0.3197207824778465,0.3207715663511341,0.3225318643335493,0.3238346021482949,0.3236944816386997,0.3277461555394824,0.3325002640008448,0.3355872876973867,0.3383077765607886,0.342826780021254,0.3477034901936212,0.3497798694398056,0.3537599252685661,0.3562522265764161,0.3622745337817181,0.3647318738702551,0.3656654725819785,0.3695901953274607,0.0,2.025867425649179,53.1987568882413,167.7197919912958,256.93003815016914,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95676,45190,428.3519377900414,5904,60.40177264935825,4645,47.92215393620135,1852,18.98072661900581,77.38307130315455,79.75892552931334,63.34642469116329,65.09719929050397,77.15128376975902,79.53000749290227,63.26000514405607,65.01456838702592,0.2317875333955328,228.91803641107344,0.0864195471072193,82.63090347804791,159.44742,112.1609370359809,166653.05823822066,117229.59590906926,398.64201,262.5452967164066,416003.8045068774,273762.2759208527,382.59348,186.47199630318917,395791.8495756512,191812.69071761303,2673.8948,1232.640081845066,2761411.0121660605,1255301.8151052345,1092.09138,482.52446326177926,1126565.9831096618,489806.00089456455,1819.4479,764.5802333437551,1866794.5984363891,769173.7604457855,0.37889,100000,0,724761,7575.139010828212,0,0.0,0,0.0,34428,359.1809858271667,0,0.0,34904,360.7592290647602,1567349,0,56349,0,0,0,0,0,64,0.6689242861323634,0,0.0,0,0.0,0,0.0,0.05904,0.1558235899601467,0.3136856368563686,0.01852,0.3330112721417069,0.6669887278582931,24.54377459262306,4.386613064004606,0.3171151776103337,0.2357373519913886,0.2219590958019375,0.2251883745963401,11.135708037743932,5.695379552401245,19.635057257122263,12056.548848308905,52.54472590955572,13.090702616469573,16.685464669782643,11.330005073321306,11.438553549982196,0.5623250807319699,0.8045662100456621,0.6978954514596063,0.5683802133850631,0.1118546845124283,0.7178683385579937,0.9400921658986175,0.848404255319149,0.690677966101695,0.1130434782608695,0.5034134758088453,0.7155824508320726,0.6463081130355515,0.5320754716981132,0.1115196078431372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024093214419485,0.0045691244706502,0.006764637275484,0.00901742556562,0.01105180214529,0.0131213290308132,0.0152908316173622,0.0174238789821269,0.0199116853381306,0.022163302076082,0.024288467847769,0.0265754803199737,0.0287251110745433,0.0307362696221828,0.0324760401514448,0.0345711421395868,0.0367546513073385,0.0390667164860713,0.0412957570715474,0.0430423545105886,0.0573935753460433,0.0711070164785694,0.0842041210289982,0.0976109860991356,0.1098868656621996,0.1249682821618878,0.1370796760378238,0.1479622224112992,0.1583058552357781,0.168288292149761,0.1815873289145218,0.1938215004000778,0.2056870183371558,0.2160392619797131,0.2251493185793011,0.2352941176470588,0.2443014931707262,0.2519736471648178,0.259887583035258,0.2674450580929028,0.2733922020206696,0.2794517020180737,0.2867244687655461,0.2921365839612228,0.297520761645368,0.3028927403935114,0.3071662951181023,0.3120519513592665,0.3164396168453253,0.3207686719936604,0.3198195772182577,0.3181143077176962,0.3176066547496727,0.3156488329096372,0.3141563358325291,0.3126225490196078,0.3104753158744735,0.3113933605736884,0.3123718036373581,0.313773096492011,0.3139235307295945,0.3154330708661417,0.317264550595797,0.3173914011533409,0.3193096524358177,0.3214405923931336,0.3222332155477032,0.3248081841432225,0.3297864917666759,0.3329401588424943,0.3355665203023856,0.3403460789985799,0.3421134760626677,0.3442116370214049,0.3458117123795404,0.3487341033718352,0.3482810164424514,0.3481915933528837,0.3572380698480405,0.3665807876334192,0.0,2.4044802052339134,55.585768773330585,168.6205957765011,254.07878721679012,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95698,45177,428.1907667871847,6060,62.1329599364668,4790,49.52036615185271,1894,19.446592405274927,77.3960056150407,79.78054326860688,63.35197710932333,65.11311321480349,77.16040354082762,79.54702974534472,63.26423748739783,65.02910745044943,0.2356020742130908,233.51352326216104,0.0877396219255004,84.00576435406037,159.97454,112.48996984452134,167166.02227841754,117546.83467211576,404.97419,266.19481387217286,422657.84028924326,277639.7875317905,388.21087,189.09939962757676,402809.7661393132,195364.9959271668,2755.56212,1276.0662979159447,2850630.399799369,1304625.444540058,1155.0364,517.0063660138893,1193248.35419758,526536.3706805671,1851.79416,781.6127646064551,1902325.2314572928,786471.0239475308,0.37994,100000,0,727157,7598.455558109887,0,0.0,0,0.0,34978,364.960605237309,0,0.0,35505,368.0745679115551,1566041,0,56135,0,0,0,0,0,60,0.6269723505193422,0,0.0,1,0.0104495391753223,0,0.0,0.0606,0.159498868242354,0.3125412541254125,0.01894,0.336,0.664,24.36448864602273,4.382420433348055,0.318580375782881,0.2286012526096033,0.2346555323590814,0.2181628392484342,11.170928622559282,5.843548043367556,20.25014385668804,12106.481631269924,54.50397170113871,13.167021021411257,17.42422877941339,12.381568254007291,11.53115364630678,0.5640918580375783,0.7899543378995434,0.7031454783748362,0.5604982206405694,0.1282296650717703,0.7244274809160305,0.8997668997668997,0.8629807692307693,0.7166666666666667,0.1422222222222222,0.503735632183908,0.7192192192192193,0.6432432432432432,0.5180995475113123,0.124390243902439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002329892521045,0.0045730161627223,0.006577211181259,0.0087376174752349,0.0108436921449352,0.0131043049729157,0.0152227331586406,0.017794974935936,0.0200167658304197,0.0223341317120104,0.0244104982571252,0.0265308636905006,0.028776238519844,0.0307369028244164,0.0326980818638628,0.0348053505344332,0.0368344727574062,0.0389358300981959,0.040893585156835,0.0429512434077501,0.05757439652381,0.0713448456305599,0.0839653020338378,0.0966375068343357,0.1095100560779187,0.1253251834775068,0.1377934795293718,0.14871238010071,0.1595876508919987,0.1698289269051321,0.1825544701612295,0.1943903599861543,0.2058922613808018,0.2157081338667016,0.2246544918804217,0.2355102944432145,0.2452072668874836,0.2535216014019006,0.2612690177064334,0.2689124619921813,0.2763262714310454,0.2828045848215328,0.2886330085621494,0.2947460344043831,0.2995598986433239,0.3051618375600821,0.3092642031986826,0.3133012922124858,0.317723724111233,0.3222904638531241,0.321361007875706,0.3206108963285898,0.3190081483562798,0.3172911950864343,0.3167506670619626,0.3156664425838782,0.3136393794824808,0.3138799711721156,0.3143509914579461,0.3145503116651825,0.3146441324384453,0.3162995941846263,0.3174202432866651,0.3189379114036648,0.3200095854301462,0.3209732284282413,0.3224390382055566,0.3247555165496489,0.3270563528176409,0.3312832314895643,0.3333941772382952,0.3345383020573069,0.336510541598283,0.3394544346235904,0.3425768722882475,0.3418732125834128,0.3417585784313725,0.3385554425228891,0.3452183526810392,0.3443632166217776,0.0,2.114613709718939,57.467723668099055,178.9660050423659,260.5000397708078,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95822,45317,428.5550291164868,5989,61.22811045480161,4629,47.72390474003882,1790,18.263029366951223,77.38566316619061,79.70513068919047,63.36611244363343,65.08348495655468,77.15865065367835,79.48299976097225,63.28114463043528,65.00356685465133,0.2270125125122604,222.13092821822045,0.0849678131981477,79.91810190335968,158.26162,111.39138693479404,165161.8626202751,116248.00873994912,400.69919,263.972682677556,417582.8724092588,274895.22646198684,383.54252,186.65836938273404,397007.5661121663,192287.6154191768,2640.99236,1219.4477661562507,2720842.395274572,1237798.301425431,1088.25246,489.0125485901772,1118754.6075014088,493544.9843847829,1752.0055,738.2038145998885,1788086.0345223434,734656.7251674199,0.38171,100000,0,719371,7507.357391830686,0,0.0,0,0.0,34518,359.6147022604412,0,0.0,35066,362.672455177308,1577774,0,56552,0,0,0,0,0,70,0.7305211746780489,0,0.0,2,0.0208720335622299,0,0.0,0.05989,0.156899216682822,0.2988812823509768,0.0179,0.3291905672402804,0.6708094327597196,24.78294230596277,4.38343814246556,0.3316050982933679,0.2395765824152084,0.2136530568157269,0.2151652624756967,11.479095284630937,5.981875067698968,19.110957684641583,12194.897819147756,52.58050598328018,13.20712275489586,17.459345845603252,10.975645051848884,10.938392330932206,0.5772305033484554,0.7926059513074842,0.7322475570032573,0.5803842264914054,0.0953815261044176,0.7417061611374408,0.9183168316831684,0.8688524590163934,0.7478260869565218,0.1219512195121951,0.5153137079988106,0.7205673758865249,0.6796028880866426,0.5296442687747036,0.0884955752212389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047747939539551,0.0072160030853234,0.0098043199967488,0.0117885186541356,0.0141737093982282,0.016420511879644,0.018491682824778,0.0208493024681894,0.0231789434904521,0.0252000942825812,0.0271790450383873,0.0292705988756307,0.0314983324412237,0.0335137922144882,0.0354298581772732,0.0377372157033173,0.0395646540554547,0.0415468167516432,0.043425776575264,0.057957105900025,0.0717847398626399,0.0846164327565063,0.0974815344043203,0.1096480601700182,0.1246765317870232,0.136344373106181,0.1478879227874742,0.1587503066633956,0.1687891608204359,0.1810399526805398,0.1933131684130928,0.2054784109785358,0.2152346436407698,0.2248289345063538,0.2357916850950906,0.2457889577113319,0.2546277575594195,0.2628884080791146,0.270589714573117,0.2776494502448489,0.2845741888060485,0.2909865571410024,0.2968583822281705,0.302046500363284,0.3071237384279154,0.3124017859369933,0.3165680098361071,0.320536313425902,0.3244903327633828,0.3244441458991066,0.3229611523831756,0.3221470848739614,0.3212224402631882,0.3205693337489054,0.318304254667891,0.316326207442597,0.316267384772007,0.3167701863354037,0.3170182338219521,0.3182823097388241,0.3205039457289215,0.3215787702918664,0.3212099468574119,0.3223696911196911,0.3245281043013849,0.3265574520399119,0.3285552265137672,0.3314068226670426,0.3341030336810255,0.3368905915081862,0.3406523468575974,0.3448297564352697,0.3486782133090246,0.3533572236891739,0.3593434043059355,0.358568796068796,0.363599513579246,0.3813582623040968,0.3811710677382319,0.0,2.157459735048313,55.39503785863077,171.52556257727113,252.52915790754815,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95765,45111,427.70323186968096,5953,61.0452670599906,4706,48.55636192763536,1806,18.46185976087297,77.37657405990127,79.7216345316526,63.3458979718325,65.07896989356404,77.15131165007217,79.49947397032948,63.26185068119809,64.9992597511552,0.2252624098290994,222.1605613231219,0.0840472906344089,79.71014240884244,158.8873,111.80418400377,165913.74719365113,116748.4822260429,401.76877,263.7895418397802,418963.013627108,274881.95252940035,382.50945,186.1502630234107,395765.4257818618,191559.84188444613,2696.31472,1222.8381719224635,2783954.680728868,1245529.323098254,1111.75532,488.7850455552264,1146312.118206025,495872.37590653816,1767.25278,736.1552981621619,1808960.935623662,736441.342724704,0.37897,100000,0,722215,7541.533963347779,0,0.0,0,0.0,34603,360.7267790946588,0,0.0,34994,361.7605597034407,1571774,0,56325,0,0,0,0,0,70,0.730955986007414,0,0.0,0,0.0,0,0.0,0.05953,0.1570836741694593,0.3033764488493197,0.01806,0.3325335892514395,0.6674664107485605,24.545648075384424,4.32355926232474,0.3293667658308542,0.2339566510837229,0.2214194645133871,0.2152571185720357,11.042724895374947,5.6883158391926525,18.863736858281158,12077.548010574155,52.54838222360941,13.135612885522091,17.20036223405175,11.34685807199673,10.865549032038848,0.5546111347216319,0.779291553133515,0.6909677419354838,0.5441458733205374,0.1125370187561698,0.7294213528932355,0.9186602870813396,0.8370165745856354,0.7404255319148936,0.160377358490566,0.4929577464788732,0.6939970717423133,0.6464646464646465,0.4869888475836431,0.0998751560549313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024815152435936,0.0046325862401038,0.0067675886280159,0.0090922020399041,0.0116548694166463,0.0136862150079938,0.0159578264726575,0.0179993465920692,0.0203845878612539,0.0224892774155244,0.0243524962333575,0.026288236501745,0.028292091167974,0.0305355303810504,0.0326517558700945,0.0346474272838153,0.036615167957586,0.0387360471388854,0.0406699310731996,0.0425124194169903,0.0572081663326653,0.0708010876385693,0.0837596444146259,0.0960958436235615,0.1090267165516151,0.124560012684319,0.1360595426160158,0.1474431274073759,0.1580819138142788,0.1682483512948367,0.1808958631756938,0.1927446228415631,0.2042339323789217,0.2141598923401787,0.2237744531413411,0.2343519657721766,0.2440010272787163,0.25292892915424,0.2611814106565284,0.2684164118771972,0.2748906730835975,0.2818554941007261,0.2875894282504582,0.2938978829389788,0.2992871801721939,0.3049214659685864,0.3090227443139215,0.3140048765620237,0.3191283105199891,0.3232759756515323,0.3216261953368432,0.3200214162159194,0.3195476575121163,0.3178417494342016,0.3167281399517101,0.3143127701495273,0.3126233831867212,0.3131733193621271,0.3133150367352505,0.3134097298836257,0.3135872208297482,0.3142361453384066,0.3155243410463828,0.3159816538273144,0.3170182166826462,0.3188047746599745,0.3202319038281183,0.3238563421736544,0.329423709824242,0.3337165510406343,0.3348820260544775,0.3379383634431456,0.3402638190954773,0.3453401076818078,0.3490328006728343,0.3478979688238073,0.3505405816963606,0.3537537537537537,0.354109961894393,0.3558235959291368,0.0,2.2785774129244687,53.57544228488842,163.19378537491195,271.35667746126825,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95760,45126,427.57936507936506,6043,62.04051796157059,4767,49.30033416875522,1893,19.46532999164578,77.3313489084019,79.6987414336142,63.31030609897547,65.0637672979462,77.0998372982937,79.46759208345586,63.22393680587302,64.980068227577,0.2315116101081997,231.14935015834703,0.0863692931024502,83.69907036920665,159.17,111.8897652350987,166217.6274018379,116843.94865820666,400.20506,263.1616747457089,417457.56056808686,274346.25600011385,380.02022,184.9034415793907,394025.8040935673,190953.14060023276,2720.35028,1238.6202296855754,2815029.69924812,1267692.553974076,1133.51623,498.4555492525354,1172279.0726817043,509099.58150849614,1857.76446,774.7952621831063,1911660.67251462,784689.4304989704,0.38036,100000,0,723500,7555.346700083542,0,0.0,0,0.0,34526,360.0459482038429,0,0.0,34665,359.2000835421888,1568904,0,56328,0,0,0,0,0,83,0.8667502088554719,0,0.0,1,0.0104427736006683,0,0.0,0.06043,0.1588758018719108,0.3132550057918252,0.01893,0.3360668664248541,0.6639331335751458,24.541134011489472,4.366866367731707,0.3276693937486889,0.2353681560730018,0.2122928466540801,0.224669603524229,10.930953098094104,5.527271067367973,20.095134086153987,12153.320571613678,53.9580077686605,13.514956050075693,17.545931380071742,11.275744766815215,11.621375571697858,0.5504510174113698,0.7869875222816399,0.6587708066581306,0.5721343873517787,0.1241830065359477,0.7292332268370607,0.8962264150943396,0.8835978835978836,0.7174887892376681,0.171806167400881,0.4867709815078236,0.7206303724928367,0.5869932432432432,0.5310519645120405,0.1113744075829383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0048673149659794,0.0072773407764526,0.0095610648242227,0.0117805041811634,0.0139829515943416,0.01609038349767,0.0182157917845145,0.0202825026337591,0.0223385296105864,0.0243374630784378,0.0264344788616633,0.0284138271706579,0.0304969801908766,0.0325667334172877,0.0349520185307743,0.0368126747437092,0.0388842190467295,0.0408332986818578,0.0426739716895643,0.0576138131178687,0.0719547928003348,0.0855913978494623,0.0983384162372489,0.1104081654171807,0.1252088930256171,0.1369945877109201,0.1477769019365559,0.1586186994998076,0.1690239086577671,0.1813321836602716,0.1924730600530676,0.2038863487916394,0.213682885446883,0.2238577562479357,0.2342944560843393,0.243892089865559,0.2531768095715105,0.2618601854058163,0.2700433059138922,0.2772659938894546,0.2837690695577853,0.2899112359417404,0.2959214302008668,0.3017130204151154,0.3066219283529063,0.3111358769831828,0.3158558168553202,0.3201291460283706,0.3241848184818481,0.3232868960685511,0.3224941195889902,0.3212822570426997,0.3201894338641909,0.319858829112047,0.3175806870824224,0.3158044388278967,0.3168969077233174,0.3174741370480385,0.3186476322871553,0.3190764855560545,0.3191023211747987,0.3208340304500585,0.3202983674654398,0.3205697950947657,0.3209178756544161,0.3227419996589553,0.3259510570791317,0.3297576759399289,0.3352451507547695,0.3375410134888807,0.340799576383373,0.3440185684712377,0.3451327433628318,0.3469387755102041,0.3505800464037123,0.3543776057176891,0.355862874951305,0.3643142476697736,0.3704808050689526,0.0,1.9047722241916527,55.36375450106222,182.23978161701072,258.4729650291921,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95497,44859,425.48980596249095,6009,61.813460108694514,4742,49.13243347958575,1902,19.5712954333644,77.22623088476638,79.71300722120215,63.24095407219974,65.07586696665953,76.99075544471502,79.47830406225047,63.15348465101351,64.99144887993708,0.2354754400513599,234.7031589516746,0.0874694211862348,84.41808672245088,157.54024,110.7426986728716,164968.78435971812,115964.5838852232,396.95906,260.82894300668886,415176.6338209577,272627.5307147752,381.63277,185.5678180888823,395970.0618867609,191577.23697403536,2734.43268,1252.4620683382338,2834428.264762244,1282718.8372224164,1140.52031,508.2730761047868,1180140.014869577,518101.2627700849,1868.35124,784.6488684338108,1923683.843471523,793296.4195079135,0.37889,100000,0,716092,7498.581107259914,0,0.0,0,0.0,34245,358.0740756254123,0,0.0,34828,361.2678932322481,1572831,0,56519,0,0,0,0,0,73,0.7434788527388295,0,0.0,2,0.0209430662743332,0,0.0,0.06009,0.1585948428303729,0.3165252121817274,0.01902,0.3412081813857618,0.6587918186142382,24.518956808607363,4.370939955415127,0.3148460565162378,0.2374525516659637,0.2165752846900042,0.2311261071277942,11.354859970902334,5.972958641858143,20.468338338813417,12123.03195609466,53.88281722262147,13.355813277242069,16.953466078071525,11.46257509548069,12.110962771827168,0.5535638970898356,0.7770870337477798,0.6912257200267917,0.5842259006815969,0.1076642335766423,0.7246262785208497,0.9147869674185464,0.8692307692307693,0.7404255319148936,0.1740890688259109,0.4909248055315471,0.7015130674002751,0.628286491387126,0.5378787878787878,0.0883392226148409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027055783553731,0.004848509438364,0.0070765731922756,0.0095170310116929,0.011585763153608,0.0135657137033073,0.0157348544372901,0.0179429015184027,0.0200826632291858,0.0222641161463509,0.0243063752912556,0.0263317533595862,0.0283790184731346,0.0303852302614615,0.0326193649711209,0.0347469560175598,0.0369298436705774,0.039064449064449,0.0414444074012335,0.0433352477418681,0.0590698307355727,0.0728262808339191,0.0856574962140333,0.098390547761839,0.1104770359097922,0.125802895724249,0.137957430521593,0.1500357405767569,0.1599515914835282,0.1692175408426483,0.1821420474787058,0.1939115251553569,0.2056771605476585,0.2155242333238343,0.2241453486448026,0.2347954580805724,0.2441523575144023,0.2526012016819037,0.2613937512084712,0.2693155212780608,0.2762231680022265,0.2827310461271486,0.288916045750083,0.2948670183998942,0.3002242753711514,0.3044032158317872,0.3096584483148609,0.3140217016218703,0.3185144743854723,0.3227387101046219,0.3219876179404687,0.3203967881680969,0.3203766978228334,0.3195867338079527,0.3183951371403882,0.3163450310368139,0.3148577784840298,0.3160800210928746,0.3151538026042649,0.3158809822548843,0.3167621372898864,0.3170132212729687,0.3173353488274443,0.3178610631958601,0.3193479358515063,0.3198414354266639,0.3193375520209794,0.3222173283835651,0.3235170087152094,0.3254308633150663,0.325952250774558,0.3274355035228055,0.3319982477001064,0.3334087822544138,0.3371243643088303,0.3407053893609591,0.344125246998024,0.3484632607368206,0.355433287482806,0.3571156047310187,0.0,2.083317953049717,56.09465625060007,176.3448961574557,261.5907464513044,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95709,44686,423.5756302960014,6083,62.20940559404026,4860,50.19381667345809,1926,19.68466915337116,77.36399481233721,79.74954812729227,63.33329461681414,65.0975383329224,77.11636859642806,79.50457550426879,63.24032422660971,65.00867912391728,0.2476262159091504,244.97262302348588,0.0929703902044352,88.8592090051219,158.9324,111.73931639687964,166057.71662017156,116748.78684019222,400.05318,262.7199942180627,417426.0309897711,273935.6739889276,378.65627,184.4831285881074,392529.8561263831,190282.23876647395,2818.25408,1296.7933543342165,2911509.5550052766,1321835.934273911,1122.09387,502.254399594778,1155803.1219634518,508173.8808207987,1886.94816,805.1142198235956,1930034.375032651,805054.4571322899,0.37744,100000,0,722420,7548.078028189616,0,0.0,0,0.0,34545,360.3318392209719,0,0.0,34750,360.049734089793,1573380,0,56506,0,0,0,0,0,70,0.7209353352349308,0,0.0,0,0.0,0,0.0,0.06083,0.1611646884272997,0.3166200887719875,0.01926,0.3339578454332553,0.6660421545667448,24.23559554173677,4.390221570244018,0.328395061728395,0.2244855967078189,0.2224279835390946,0.2246913580246913,11.170527650330028,5.731912479836477,20.613880640839323,12048.6458203231,54.85300025626198,12.99476168255697,18.020137850928844,11.956342569518563,11.881758153257593,0.5456790123456791,0.7653528872593951,0.6904761904761905,0.5596669750231268,0.1007326007326007,0.7122137404580152,0.8914141414141414,0.8574766355140186,0.7182539682539683,0.1367521367521367,0.484225352112676,0.6935251798561151,0.6292808219178082,0.51145958986731,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0045534292697273,0.0070149435555916,0.0092688578571864,0.0114979954822035,0.0136112639321881,0.0157493165775837,0.0177601209199722,0.0196680065048633,0.0214524155727129,0.0236686390532544,0.0258195711116588,0.0279163537991544,0.0302006161708792,0.0321278923359547,0.0342342528640555,0.0363594928316897,0.0385297871678064,0.0406232783442999,0.0425396693095508,0.0567692886085467,0.0706824366757379,0.0845503378236602,0.096933302484067,0.1095767669846624,0.1256978514633733,0.1378001187749215,0.1488254819354015,0.1600687549377575,0.1701931528286921,0.1827838946110878,0.194097346185886,0.2054441447711849,0.2163542509678689,0.2255654814293258,0.2360086815936925,0.245024320585479,0.2528681333513294,0.2602226686187055,0.2674874026568942,0.2748863412884791,0.2813384482234333,0.2877133994743447,0.2927136280809437,0.297025733239375,0.3020683198442909,0.307340080819707,0.311022120518688,0.3156220089505135,0.3201127918621198,0.3184513006654567,0.3172259384915457,0.3158604984607599,0.3152042229145033,0.3137708222182702,0.3125629521106126,0.3111675286993818,0.3107322490038539,0.3108919309582518,0.3119393421614694,0.3116528632055189,0.3129043711535427,0.3146685059777611,0.3153739488280551,0.3165666266506602,0.3171629132851439,0.3180649951453538,0.321114185110664,0.3248602468094083,0.3288460011119053,0.3321964529331514,0.3382041507835663,0.3425341081354219,0.3470840348997397,0.3485394537177542,0.3527303142549886,0.3527769159168477,0.3562320032908268,0.3621123218776194,0.3599686643164904,0.0,2.230385159104081,57.32391062210928,176.1805794949866,269.5054155092259,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95665,45233,429.1538180107667,5993,61.35995400616735,4690,48.39805571525636,1926,19.672816599592327,77.31725194233033,79.72305769302636,63.30264576078415,65.08387550399085,77.07365725784145,79.4831426953847,63.210942503089385,64.99603750243409,0.2435946844888832,239.91499764166235,0.0917032576947676,87.83800155676147,157.8379,111.06428143555054,164990.2263105629,116097.09030005806,399.14505,262.9076252718253,416629.7496472064,274224.16033646546,381.60939,186.6985025981967,394940.88747190713,192123.4527069269,2714.9984,1258.3840990882563,2804212.4915068205,1281896.3590896763,1132.70502,503.5997008558312,1166322.061359954,509270.5509561105,1885.1426,797.7043426616502,1928582.17738985,801174.4421314485,0.3816,100000,0,717445,7499.555741389222,0,0.0,0,0.0,34551,360.5289290754194,0,0.0,34858,360.3825850624575,1573778,0,56456,0,0,0,0,0,61,0.6376417707625568,0,0.0,1,0.0104531437829927,0,0.0,0.05993,0.1570492662473794,0.3213749374269982,0.01926,0.3289137380191693,0.6710862619808307,24.479997801548212,4.275730504621584,0.3168443496801705,0.2375266524520256,0.2153518123667377,0.2302771855010661,11.215621666864514,5.988193282671226,20.549181528713373,12176.832673727327,53.29950606159323,13.330303083473416,16.805062068575154,11.327602205805237,11.836538703739423,0.550319829424307,0.7675044883303411,0.6884253028263796,0.5762376237623762,0.112037037037037,0.7193251533742331,0.900709219858156,0.8391089108910891,0.7294117647058823,0.1441441441441441,0.4852333136444182,0.6859623733719248,0.6321626617375231,0.5245033112582781,0.1037296037296037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0047051665568118,0.0070024457817875,0.0091963133453241,0.0113852571602991,0.0136090455332586,0.0158121314753228,0.0183679306963059,0.0207894252215015,0.0227032897230731,0.024643480045142,0.0270248052775437,0.0289355306906029,0.0309194383157721,0.0328217627496746,0.0350735613632131,0.0369026640406343,0.0388489656891252,0.0408984976486745,0.0428641419353493,0.0581100141043723,0.0724652857771168,0.0855553222758765,0.0984481035299068,0.1105930012976189,0.126125840080436,0.1380836632664975,0.1502625440679952,0.161076551444024,0.1712014248009784,0.1835604632372744,0.1951692181105601,0.2064566689161242,0.2163227324976736,0.2256739041827775,0.235999645280007,0.2455691964285714,0.254680046800468,0.2635609662011141,0.2711082096389958,0.2775893797525491,0.2838958759871307,0.289957014458773,0.2965782658737771,0.3014124911871247,0.3062594063803015,0.3105236133201418,0.3157426019694155,0.319810490343292,0.323357635364069,0.3229308187944741,0.3210996563573883,0.3197400441699841,0.3186016973615842,0.3175268769237632,0.3156691923065124,0.3140884546563,0.3151404692708077,0.3152424351031693,0.3164764621968616,0.3174436681713461,0.3183030686241577,0.3192386788097536,0.3210216461844962,0.3211398788697729,0.3234202686457952,0.3250734266731301,0.3271556463012408,0.3301512652230372,0.3325133902003571,0.3340022805017104,0.3357792311373425,0.3408159404754398,0.3427634588988867,0.3470212366096598,0.3494160670048366,0.3505518087063151,0.350162206001622,0.3556395035078251,0.3577082548058801,0.0,2.380458007681534,56.863293208466274,173.39830257832116,252.55004132653065,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95870,45550,430.6873891728382,5968,61.14530092834046,4680,48.35715030770835,1823,18.764994263064565,77.4717338221379,79.75854330904697,63.40399372213196,65.09078089509677,77.2422851935469,79.5267734233872,63.3182340352249,65.00603251419801,0.2294486285910011,231.76988565977297,0.0857596869070533,84.74838089875902,159.36426,112.0889521181002,166229.54000208617,116917.65110889764,400.97285,264.52103894439483,417817.49243767606,275487.4506565086,388.08977,189.14294239398063,401361.5208094294,194716.72791957247,2679.76936,1233.7510468810972,2770549.410660269,1262237.829228223,1094.01329,487.8536956840999,1132223.625743194,499951.1793930322,1787.80942,757.4211167130445,1841398.8108897463,769432.5862647941,0.38245,100000,0,724383,7555.8881819130065,0,0.0,0,0.0,34633,360.7906540106394,0,0.0,35437,366.2668196516115,1569532,0,56304,0,0,0,0,0,67,0.6988630437050172,0,0.0,1,0.0104307916970898,0,0.0,0.05968,0.1560465420316381,0.3054624664879357,0.01823,0.3353658536585366,0.6646341463414634,24.647239773355157,4.265575078997543,0.3307692307692307,0.2282051282051282,0.2213675213675213,0.2196581196581196,10.808745484746938,5.594684280091769,19.42553907330631,12154.910784993272,52.8576798389262,12.749077211656138,17.363389734813133,11.58539764783529,11.159815244621656,0.5638888888888889,0.7865168539325843,0.7060723514211886,0.5752895752895753,0.1070038910505836,0.7370517928286853,0.9262899262899262,0.8596059113300493,0.7232142857142857,0.1697247706422018,0.5004379562043796,0.7004538577912254,0.6514886164623468,0.5344827586206896,0.0901234567901234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025407429901811,0.0049234634437904,0.0070676752722626,0.0093077547706049,0.0116860417852207,0.0139591197208176,0.0163495232662374,0.0183702404145289,0.0208014214815268,0.0228565000409064,0.0249595444396648,0.027168116179849,0.0292676412274123,0.0313615738406609,0.0335013555163847,0.0354605534902932,0.0376312386863201,0.0394548657892009,0.041439533169278,0.0435311992673687,0.058518070530333,0.0722253002853887,0.0856502101170577,0.0987874839767163,0.1114565767284991,0.1268804245557282,0.1392005089598133,0.1505893366239734,0.1605692141812475,0.1708231965447394,0.1836444827029644,0.1958370708195091,0.2067276892841243,0.2168022271958076,0.2270620538165842,0.2364074557233511,0.2454410765408994,0.2536969873903816,0.2618047139572549,0.2687272020399529,0.2757684934986951,0.2827142057121523,0.2892940648543964,0.2941556344849855,0.2987723512143048,0.3035542865582002,0.3090011868324068,0.3132650987961599,0.3177195725490703,0.321849370071484,0.3207557311403155,0.3201705675071641,0.3189246104169591,0.3173862982153138,0.3167818609676321,0.3141350082322093,0.3125059079308063,0.3136595244316697,0.3149239785950904,0.3167745941630444,0.3171903812841097,0.3186183060699487,0.3198867067913447,0.320593725002222,0.3201681073594727,0.3219197596415343,0.3234662143059089,0.3260320922262034,0.3290210999654099,0.3326159264331833,0.3363518178150356,0.339645468413024,0.3429858027393833,0.3417375455650061,0.3453826602654617,0.3454091934909134,0.3465736810187992,0.3525538707102953,0.3561606902129954,0.3538461538461538,0.0,1.8229624831960969,55.10159460031666,177.43720518634146,251.07017438161407,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95722,45631,432.763628006101,5930,60.48766218842064,4666,47.97225298259544,1832,18.699985374313115,77.34438518034166,79.69705013609436,63.33412346583962,65.07197792458378,77.10968431771136,79.46593241796347,63.24606439308821,64.98825985552199,0.2347008626303051,231.1177181308892,0.0880590727514132,83.71806906178847,159.12226,111.95541674482271,166233.04987359227,116958.25029441784,402.70523,265.2349824338151,419838.877165124,276235.4524456476,387.3702,188.6999375544925,399078.4145755417,192947.14505231657,2682.34296,1233.412410578429,2760230.3754622764,1247253.3568985632,1108.51588,486.7492517077542,1138731.8693717222,489846.4998883418,1795.01414,761.1809227866785,1833848.268945488,760229.1608797471,0.38374,100000,0,723283,7556.047721526922,0,0.0,0,0.0,34745,362.1529011094629,0,0.0,35282,363.0513361609662,1565922,0,56251,0,0,0,0,0,78,0.8044127786715698,0,0.0,0,0.0,0,0.0,0.0593,0.154531714181477,0.30893760539629,0.01832,0.3408287825248956,0.6591712174751044,24.43922967534102,4.41762017305749,0.3236176596656665,0.227818259751393,0.2258894127732533,0.2226746678096871,11.440293662826903,5.903114182859279,19.54801168305201,12166.343312630805,52.730150037117234,12.775494578419991,16.947021278904955,11.67687731884454,11.330756860947757,0.5696528075439349,0.8184383819379115,0.695364238410596,0.5929791271347249,0.1087584215591915,0.7281475541299118,0.9183673469387756,0.8801020408163265,0.773109243697479,0.0844444444444444,0.5118455688797894,0.7600596125186289,0.6305903398926654,0.5404411764705882,0.1154791154791154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026741217940926,0.0049679113481289,0.0073458537525746,0.0095264210921869,0.0116924578563149,0.0139260737226797,0.0160004891869305,0.0182560334710954,0.0201387540742405,0.0224498357703445,0.0246846532979475,0.0269424201991173,0.0289436344568056,0.0307009413170199,0.0327332748749161,0.0347436082921687,0.0366843325604504,0.038869184659739,0.0407711494491789,0.0429873444091453,0.0576383016484491,0.0723128603869941,0.0853594579286328,0.0981827359919232,0.1102358883511014,0.1259701808184413,0.1377843771543724,0.1495308211162414,0.1603549916698705,0.170309702732545,0.1830913142229733,0.1943624190111518,0.2058078474434381,0.2156286207725772,0.2251891606545838,0.2355240140829476,0.2448298568096338,0.2533913747722211,0.2612741426658496,0.2688647373423882,0.276162925248785,0.2825313611683205,0.2887970832642818,0.2950837372234752,0.3005286504223127,0.3054150109830441,0.3102946890785796,0.3151535235861682,0.320430888090948,0.3250386337520307,0.3246431457042822,0.3240294934932731,0.3225538387864617,0.3209264691008395,0.3198644692455157,0.3186702021672823,0.3155792276964048,0.3156572704437622,0.3160719168717528,0.3175025442339624,0.317547703312548,0.3179861796643632,0.3188357240079573,0.320655092178271,0.3211912557781202,0.3227437387610435,0.3243712796559482,0.3269987100022024,0.3316258508174864,0.3345385196074536,0.3379884456170677,0.338540006375518,0.3391643594261263,0.3394758704025375,0.3436856875584658,0.3491577335375191,0.3461714809720311,0.3538587848932676,0.3578743426515361,0.352963967454475,0.0,2.884191750338492,53.70685462197685,167.44681292745742,264.47474448528885,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95675,45325,428.7431408413901,5937,60.94591063496211,4621,47.77632610399791,1840,18.886856545597077,77.28108161739658,79.67043763645002,63.29287913429015,65.0567829897576,77.0553026368111,79.44426453949467,63.209892899642725,64.97556255893865,0.2257789805854742,226.1730969553497,0.0829862346474286,81.22043081894503,158.34258,111.39471027354728,165500.24562320355,116430.09174136116,398.88674,262.76505367845965,416392.4745231252,274117.3908319412,380.80206,185.4260285754926,394892.59472171415,191370.57018546737,2655.06544,1208.5885432144426,2745560.6584792268,1233995.469675315,1123.2157,487.0738353647377,1161663.809772668,496879.5022824188,1805.92042,748.6301375428287,1855849.8876404492,756093.3052480355,0.38273,100000,0,719739,7522.738437418344,0,0.0,0,0.0,34339,358.359027959237,0,0.0,34676,359.31016461980664,1570205,0,56405,0,0,0,0,0,96,1.0033969166448915,0,0.0,0,0.0,0,0.0,0.05937,0.1551224100540851,0.3099208354387738,0.0184,0.3305044035228182,0.6694955964771817,24.71429949569069,4.3436454508960285,0.31681454230686,0.2322008223328284,0.2283055615667604,0.2226790737935511,11.166130474442156,5.715643816334556,19.41201868660701,12232.132939019575,52.27376451573062,12.782860304085643,16.567596929480175,11.735377412738892,11.187929869425917,0.5671932482146721,0.7912395153774464,0.7008196721311475,0.5857819905213271,0.1243926141885325,0.7346600331674958,0.9248704663212436,0.8812664907651715,0.7400881057268722,0.1261682242990654,0.5080527086383602,0.7161572052401747,0.6377880184331797,0.5434782608695652,0.1239263803680981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730638707389,0.0048256774703717,0.0071445243918528,0.0092958519165709,0.0113906799829139,0.0136552482587267,0.0157024287782694,0.0179993465920692,0.020454893943266,0.0227637949211353,0.0250689524356358,0.0271777075033882,0.0293911970382558,0.0318475931421035,0.0338934070924328,0.035846852156291,0.0379121391354789,0.0400622729631551,0.0419405841724224,0.0439735679146168,0.0588290603648216,0.072382129058603,0.0857727630543164,0.0983944616291059,0.1108614232209737,0.1268672506453387,0.1387429275076165,0.1506992299417397,0.1607291778039132,0.1708291279232074,0.1829114401889621,0.1946358907672301,0.2064992485788339,0.217541746509718,0.2266807694850267,0.2372381364296725,0.2464015913459389,0.2564171875879935,0.264476987923062,0.2722509487394091,0.2791169077872887,0.2859050497241452,0.2926421602911367,0.2974634158053325,0.3030977487503192,0.3078859060402684,0.3125086125900407,0.3167142347484837,0.3210696269014796,0.3245987466617309,0.3234079870480302,0.3224556759588606,0.3212271950030383,0.3200533132442847,0.3184378352604601,0.3168354818907305,0.3154048570160421,0.3159288687097994,0.3166706611428767,0.3178844641452777,0.3184541135377739,0.3203922035647652,0.3217157048448878,0.3222082472374449,0.3236252988480765,0.3240864091110937,0.3242037852364343,0.3281161249605553,0.3308999017268005,0.3363077533214356,0.3392938392938392,0.341286252054504,0.3421897626392999,0.3442437070073323,0.3448758633563561,0.3448476389858106,0.3436692506459948,0.3446,0.3478964401294498,0.3544546850998464,0.0,1.973385587360836,53.113190621523565,171.82189364551363,258.79083212191,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95735,45008,426.4375620201598,5912,60.70924949078184,4698,48.59246879406695,1797,18.44675406068836,77.3612597271838,79.7269055841375,63.34108899169471,65.08916380555316,77.14381488684737,79.50985118809706,63.2606464931068,65.01108225797297,0.2174448403364408,217.05439604043875,0.0804424985879137,78.08154758018304,158.12544,111.26342300195692,165169.478247245,116219.78922640304,400.93772,263.5641827773078,418297.24761059176,274804.9963072416,381.63742,185.26950285886517,395878.53971901606,191353.44726405328,2672.71744,1226.11109558085,2766143.6256332584,1255163.8556231789,1138.94154,496.967266537425,1176441.113490364,506011.1191058468,1756.69816,733.6731209056624,1805161.2054107687,740841.6730412246,0.37981,100000,0,718752,7507.703556692954,0,0.0,0,0.0,34569,360.5682352326736,0,0.0,34907,361.79035880294566,1576338,0,56566,0,0,0,0,0,69,0.7207395414425236,0,0.0,0,0.0,0,0.0,0.05912,0.1556567757562992,0.303958051420839,0.01797,0.3482186039013381,0.6517813960986619,24.13183131329028,4.2982106400332105,0.3171562366964666,0.24223073648361,0.2254150702426564,0.2151979565772669,11.323465976860865,5.941454593283325,19.152956032416085,12039.652413328526,53.383472539545934,13.697043899118889,16.855061835321344,11.798775265450711,11.032591539654996,0.5766283524904214,0.7952548330404218,0.697986577181208,0.5996222851746931,0.1275964391691394,0.7405362776025236,0.9216152019002376,0.8831168831168831,0.7439024390243902,0.1296296296296296,0.5160349854227405,0.7210599721059973,0.6334841628959276,0.5559655596555966,0.1270440251572327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.0043292237813285,0.0066266160621866,0.0091434609015452,0.0110851215295433,0.0135129630761084,0.0156221320335284,0.0178485730331342,0.0198452053534,0.0217242191259124,0.0236127629906082,0.0261595661640852,0.0281806026946415,0.0304104170100543,0.0324441463288788,0.0344888190474221,0.0367420908196551,0.038686646465485,0.0410015909823536,0.0427919479869967,0.0569158322282898,0.0706301025748377,0.0836943410080243,0.0967236557104704,0.1087982968318543,0.1246234342793721,0.1364359333248505,0.1478411678335071,0.1578767489052654,0.1676420777327588,0.1801289711375943,0.1922170066408531,0.2029434462668884,0.2128782662863512,0.2222625250060454,0.2327174153573799,0.2416675955857763,0.2506038715186104,0.2587865942809216,0.2665751230117862,0.2738989712172003,0.2808097563254912,0.2874182832689056,0.2932553074363945,0.2987223932701399,0.3041997590302195,0.308633650508229,0.313291581447935,0.3173933851586449,0.3217323644612077,0.3202017484868864,0.3190913710463791,0.317637793060771,0.3160949410949411,0.3156753545704314,0.3140369401215014,0.3121977431488447,0.3122624197142483,0.3126554673390807,0.3131692888833455,0.3136723206104015,0.3152412389065681,0.3170578505475178,0.3174199308112934,0.3187298842292357,0.3212543372205265,0.3226110286562393,0.3262746580954181,0.3301028828259419,0.3341272676749632,0.3391276721281713,0.3429671430831707,0.3465098824118088,0.3493456388531659,0.350527003078071,0.3484045684681502,0.3527714502657555,0.3459983831851253,0.3401341531581889,0.3401197604790419,0.0,1.8628321643194523,55.94206570896831,179.3980029750022,251.88273321232387,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95645,45343,428.9403523446077,5944,60.91275027445241,4670,48.17815881645669,1797,18.42229076271629,77.2430810454354,79.64882426450447,63.27207635196621,65.05072672741423,77.00989961613222,79.41640443514403,63.18545033776228,64.9667153103176,0.2331814293031868,232.41982936043823,0.0866260142039294,84.01141709663307,158.3252,111.47344421565636,165534.21506612995,116549.16013974212,400.49121,263.4428886199989,418075.111087877,274786.57391395146,386.97291,188.06736920567937,400523.3415233415,193480.24610877695,2667.48984,1234.6565550444398,2755080.641957238,1257006.215739913,1107.13857,494.55390189686665,1142100.2979768936,501624.5156111143,1758.00958,744.6780348479514,1803924.0106644365,749032.5886692832,0.38038,100000,0,719660,7524.2825030059075,0,0.0,0,0.0,34552,360.5729520623138,0,0.0,35340,365.3719483506717,1567630,0,56250,0,0,0,0,0,70,0.7318730722986042,0,0.0,0,0.0,0,0.0,0.05944,0.1562647878437352,0.302321668909825,0.01797,0.3420289855072463,0.6579710144927536,24.49871994945713,4.354697830223703,0.3134903640256959,0.2419700214132762,0.2286937901498929,0.2158458244111349,11.235893614507674,5.817564863337167,19.276782171729977,12202.77739571794,53.295592550009225,13.610549693069023,16.633723811997402,11.954747345047055,11.096571699895758,0.576017130620985,0.8141592920353983,0.7110655737704918,0.5777153558052435,0.1111111111111111,0.7235202492211839,0.924574209245742,0.8641975308641975,0.6586345381526104,0.1598173515981735,0.5200826934435913,0.7510431154381085,0.6525023607176582,0.5531135531135531,0.0975918884664131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024018971947462,0.0046355466293388,0.0068424311949889,0.0091648970219165,0.0114633873445017,0.0139823819950099,0.0161305123629875,0.0185529325273648,0.0207992473821989,0.0229074077866754,0.0249202654059542,0.0269881695695037,0.0294740739217178,0.0317815162410244,0.0339275208240867,0.0359524769674597,0.0380280522924565,0.0401154161520337,0.0421568321527756,0.0442333955360028,0.0588413550962402,0.0726825180685031,0.0858687664041994,0.0988063660477453,0.1108905873907351,0.1261274613593055,0.1379918415908897,0.1501428510511278,0.161222677522548,0.1714043320911951,0.1835983859482554,0.1955468351960455,0.2062625932581822,0.2158033074143029,0.2249385519194947,0.2353554744282559,0.2450435541043733,0.2540240768294332,0.2623232231367378,0.2701212030868373,0.2773270906730947,0.2837619449128724,0.2901139513396982,0.2953738362606776,0.3008090516454772,0.3065575389477322,0.3111757478498533,0.3162841111961234,0.3212162127073975,0.3250128973371959,0.3239708202424455,0.3231782059581032,0.322448173184121,0.3205883630362081,0.319886185886454,0.3177841223061337,0.3155530155101522,0.3160477562783038,0.3160138327740875,0.3164436802607777,0.3168849744052996,0.3173915635120904,0.318600445771479,0.3197216298125491,0.3214121962402567,0.3234044784729141,0.3223349524329607,0.3250379458639008,0.3290235975695916,0.3336675355925406,0.3381844977663151,0.3422333993258066,0.3449673782225882,0.3506204994637659,0.3545532400799315,0.3572790088158208,0.3558530510585305,0.3596797372202833,0.3671377112773621,0.357390968737939,0.0,2.4785304116883897,56.0169215301551,175.0112344504136,253.52846966930548,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95823,45565,430.5125074355844,6079,62.30236999467769,4748,49.04876699748495,1882,19.30642956283982,77.44904619750217,79.77514632022417,63.38601454967061,65.10670358766436,77.20996825318016,79.53746122115562,63.29598475419647,65.01978036143123,0.2390779443220054,237.68509906854263,0.0900297954741446,86.9232262331252,158.39978,111.45625942743216,165304.55109942288,116314.72551207138,399.31917,262.7596633573572,416220.52116923913,273708.2781350585,384.76802,187.2998801461032,398355.8853302443,193018.8242784528,2712.435,1252.3828166105282,2803105.0582845453,1279408.050896474,1123.50265,500.7772718257421,1158746.8770545693,508876.4094484017,1835.3326,781.7290785888927,1884151.0493305365,788309.2552375302,0.38272,100000,0,719999,7513.8432317919505,0,0.0,0,0.0,34502,359.51702618369285,0,0.0,35091,363.0861066758503,1578315,0,56575,0,0,0,0,0,70,0.7305135510263716,0,0.0,0,0.0,0,0.0,0.06079,0.1588367474916387,0.3095903931567692,0.01882,0.3372166246851385,0.6627833753148614,24.48734732596709,4.352864213835689,0.321609098567818,0.2320977253580455,0.2291491154170176,0.2171440606571187,11.112040316557442,5.754360180767106,20.1816808702482,12238.774544926044,53.85166981802468,13.263655404281854,17.237073823032397,12.039733431800126,11.311207158910298,0.5625526537489469,0.7876588021778584,0.696136214800262,0.5919117647058824,0.093113482056256,0.700675168792198,0.908256880733945,0.8238213399503722,0.7142857142857143,0.0893617021276595,0.5086383601756954,0.7087087087087087,0.650355871886121,0.5536791314837153,0.0942211055276382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002460933939621,0.0049364945820198,0.0071839517822897,0.0096606088926361,0.012162258356468,0.0141223666928003,0.0164758418890123,0.0185345839414568,0.0207664793050587,0.02292005607228,0.0250860796851942,0.0272786050759962,0.029585008069573,0.0316290179766488,0.0339628090223702,0.0358087445243408,0.0377366301996543,0.0398705890892499,0.0418926500841593,0.0439956275050752,0.0585946464709686,0.0734366995305655,0.0874696067745451,0.0996049424224594,0.1121227448996796,0.128400515758101,0.1397254465468808,0.1508561097522067,0.1621572602155126,0.1718480600563295,0.1848283130262719,0.1970246969598755,0.2080863353093175,0.2176883369165457,0.227737338471504,0.2375056654248792,0.2473518306062665,0.2555510653106126,0.2641178335295716,0.2716791407187339,0.2787610108636673,0.2849791117231078,0.2914940575245783,0.2972934200459066,0.3020217201590225,0.3066179815340734,0.3108939558450959,0.3156939862978939,0.3202520693707305,0.3244605263157895,0.3234176790388616,0.3214403337358656,0.3200668473605123,0.3196495727727266,0.318621792025575,0.3174465230450228,0.3155185441722813,0.3160231817810791,0.3163766024280499,0.3173839737332505,0.316964535306286,0.3166322821495235,0.3177591526978567,0.3177139037433155,0.3190557138410707,0.3209013209013209,0.3222093056225013,0.3262453485099597,0.3311501821238442,0.3353721095414727,0.3411236159012525,0.3434552199258082,0.3441880932922612,0.3470592687911589,0.3478056573630297,0.3514214934528725,0.3503281941688292,0.3553886746498884,0.3593964334705075,0.3688212927756654,0.0,1.9498793460360595,58.75281701536436,173.33090373839264,254.16872546812405,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95801,45266,428.0017953883571,6103,62.316677278942805,4859,50.06210791119091,1925,19.665765493053307,77.3497797498425,79.68339926393216,63.33168066437421,65.05995644534408,77.1060252570762,79.44327148411205,63.239138016883096,64.97181034191439,0.2437544927662998,240.1277798201136,0.0925426474911148,88.14610342969331,158.65432,111.60820007362312,165608.20868258158,116500.03661091546,399.15652,262.25237539406044,415973.2570641225,273068.62333307456,388.4709,189.58435666143575,401474.71320758655,194741.64256898436,2780.44112,1288.613054273192,2866015.678333211,1308804.662447268,1155.72739,515.309945739032,1189194.7578835292,520821.82000655937,1880.95708,801.8304305196534,1923250.2792246428,801438.1633815564,0.3826,100000,0,721156,7527.645849208255,0,0.0,0,0.0,34445,358.83759042181185,0,0.0,35483,366.37404619993526,1571914,0,56414,0,0,0,0,0,65,0.6784897861191428,0,0.0,1,0.0104383044018329,0,0.0,0.06103,0.1595138525875588,0.315418646567262,0.01925,0.3352601156069364,0.6647398843930635,24.14713910150644,4.352577560519514,0.3261988063387528,0.2319407285449681,0.2245317966659806,0.2173286684502984,11.188263096575117,5.768062074292721,20.669817795427456,12214.535532788575,55.20283408488407,13.471371671893646,17.939441871431843,12.17525123900366,11.61676930255492,0.5735748096316114,0.8039041703637977,0.705993690851735,0.5774518790100825,0.125,0.7265917602996255,0.9095354523227384,0.8888888888888888,0.6893939393939394,0.1391304347826087,0.5156072644721907,0.7437325905292479,0.6374674761491761,0.5417170495767836,0.1210653753026634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044004177355085,0.0069519150749994,0.0093062004084162,0.0115756281151459,0.0138485820477572,0.0161704730831973,0.0182619968763716,0.0205443748275192,0.0227330883632381,0.0248895449559717,0.0269215762777994,0.028914275138042,0.0309230579125133,0.0329265650949527,0.0350806493278361,0.0372965922736118,0.0393954795813582,0.0413744376214374,0.0436466619466078,0.0581950965049556,0.0714293183315382,0.0847212468686784,0.097313884568498,0.1096143102594103,0.1245796586511008,0.1361056595767251,0.1472425942286608,0.158163483314105,0.1685224517817682,0.1818269987176309,0.1940986729591063,0.2061968950248593,0.2164715143166387,0.2266305782941642,0.2371331678340278,0.2464306843932442,0.2547587975879758,0.2637774271541596,0.2714225169810888,0.2780330297313875,0.2849722748648838,0.2916272133320708,0.2975608587310715,0.3026902289427339,0.3083139312859553,0.3132471364977742,0.3174619328083856,0.3215242631735636,0.3265368068202813,0.3248901942820188,0.3240882348888797,0.3227944494584837,0.3214151134815501,0.3198356458047996,0.3182731385629936,0.3170240755709825,0.3179465268762427,0.3188527253758402,0.3198433420365535,0.3204457200742867,0.3212589073634204,0.322528600762687,0.3230253602949391,0.3224581971939266,0.3244883079006301,0.3264546203916887,0.3298132364001003,0.3322160539087322,0.3357632595161163,0.3396936185641769,0.3455707569594844,0.3474842767295597,0.3504390988927071,0.3507322568531731,0.3522821087392381,0.3562919975565058,0.3621382636655949,0.3599348534201954,0.3607060629316961,0.0,2.499422312113286,58.196862514971606,180.23644735803447,263.60630299914084,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95789,45724,432.7114804413868,5949,60.727223376379335,4718,48.56507532180104,1858,18.9478958961885,77.41775944651599,79.74451583204488,63.37436231324406,65.09456042956236,77.18621643443275,79.51881965952683,63.28844087524189,65.01403315272218,0.231543012083236,225.696172518056,0.085921438002174,80.52727684018635,159.09916,111.90548524260004,166093.35101107645,116824.98537681784,402.20009,264.84047639233626,419201.881218094,275803.7732853838,387.70089,189.23002936801524,400253.78696927626,194027.06732106576,2718.21656,1252.5963730269384,2799623.255279834,1269572.6367609403,1127.24416,501.8118556944386,1162160.582112769,509233.51918742,1827.01656,761.62907050024,1865459.7709549116,759600.7501857084,0.38407,100000,0,723178,7549.697773230747,0,0.0,0,0.0,34760,362.1814613368967,0,0.0,35328,364.363340258276,1570663,0,56355,0,0,0,0,0,76,0.7829709048011776,0,0.0,1,0.0104396120640157,0,0.0,0.05949,0.1548936391803577,0.3123213985543789,0.01858,0.3441778064100499,0.6558221935899501,24.29553145002256,4.343296594459353,0.3126324713861806,0.2356930902924968,0.2202204323866045,0.2314540059347181,11.242257287856628,5.851500397404977,19.717564542227144,12222.185627445331,53.48601583751592,13.284468291154525,16.851830397504205,11.472397959684196,11.877319189173,0.5606189063162357,0.7967625899280576,0.696271186440678,0.5957651588065448,0.1034798534798534,0.7393658159319412,0.9146341463414634,0.8665105386416861,0.7385892116182573,0.1534883720930232,0.4931386861313868,0.7279202279202279,0.6269083969465649,0.5526315789473685,0.0912200684150513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002450409582924,0.0049567676603853,0.0071536564824304,0.0092929251894131,0.0116428048482876,0.0140783419520338,0.0161655284884313,0.0184228790724259,0.0205135019113228,0.0224858248214029,0.0244062445544655,0.0265975465790689,0.0286389802631578,0.030926985957254,0.0328734352121099,0.0348916479021629,0.0370404868355688,0.039190071848465,0.0413381123058542,0.0436656671664167,0.0582754231098311,0.071949064829432,0.0859574824940249,0.0984915332576999,0.1109695086629101,0.1264526898533575,0.1384533898305084,0.1494152668509462,0.1598288500730908,0.1697626087329134,0.1830637529037253,0.1957630231402458,0.2076049425611848,0.2174796082156779,0.2273381453039341,0.2378455513888428,0.2473165022571476,0.256148231330713,0.2645236558043653,0.2714860723596944,0.277990181923188,0.2848855532081286,0.2921772803475715,0.2970770868977399,0.302058192138361,0.3065486812794604,0.3107458249540963,0.3147955295910591,0.3198479991727846,0.324263128101839,0.3244658707884029,0.3234728366903905,0.3235298254497377,0.3210864924124401,0.3204546128965251,0.3182868068833652,0.3165294870377099,0.3172724296005239,0.3189165277163371,0.3196000996193119,0.3199977576799462,0.320394077045602,0.3215030879652812,0.3221157054204942,0.3231625407791211,0.3244184535412605,0.3248465560354626,0.3288805268109125,0.3314449573366904,0.3336887835703002,0.3369599709868988,0.338327950442103,0.3424124513618677,0.3477766835845769,0.347703313253012,0.348286530223703,0.3500464252553389,0.3487760469350597,0.3456722917800762,0.3539412673879443,0.0,2.745684013341329,56.02962580063471,173.673540048409,256.80164189194033,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95723,45456,431.3696812678249,5915,60.675072866500216,4661,48.1180071665117,1852,18.992300700980955,77.3893283971574,79.7527314195326,63.35181630130408,65.09474151836415,77.14856022390741,79.5127933707457,63.26205235470152,65.00819731751442,0.2407681732499895,239.93804878689676,0.0897639466025523,86.54420084972969,158.63254,111.70928622513888,165720.40157537896,116700.56958634692,400.27436,263.8067721233384,417589.9940453182,275024.8969665998,385.74937,187.9948130704291,399969.71469761705,193940.58054714743,2688.73496,1240.1586200728648,2775964.188335092,1262663.999323951,1115.23537,496.7858233192867,1148296.3342143476,502241.058660255,1812.5302,772.584191727437,1859587.915130115,775874.6542894244,0.38065,100000,0,721057,7532.745526153589,0,0.0,0,0.0,34512,359.94484084284863,0,0.0,35138,364.0608840090678,1569921,0,56275,0,0,0,0,0,64,0.6685958442589556,0,0.0,0,0.0,0,0.0,0.05915,0.1553920924734007,0.3131022823330515,0.01852,0.3244415876586855,0.6755584123413145,24.39113939093641,4.454083221153002,0.3226775370092254,0.2284917399699635,0.2254880926839734,0.2233426303368376,11.457256901966892,5.975038737413489,19.87723882411409,12119.33654703866,52.78825737126192,12.6737215449704,17.017136478730762,11.579448680277643,11.51795066728312,0.559322033898305,0.7924882629107981,0.6855053191489362,0.5803996194100857,0.1171950048030739,0.7137192704203014,0.9143576826196472,0.8432835820895522,0.7304347826086957,0.1293103448275862,0.5020588235294118,0.7200598802395209,0.6279491833030852,0.53836784409257,0.1137206427688504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025421068089976,0.0051486312546241,0.0073440654068145,0.0095346404963293,0.0119759261518441,0.0142295869551941,0.0164988586336213,0.0188975735189077,0.0208241797541561,0.0229614546347552,0.0248898452710318,0.0269524356711946,0.0288846873137549,0.0307983694980853,0.0326512932634792,0.0348052538572033,0.0368457015073712,0.0388150115138061,0.0404540162980209,0.042533908369273,0.0568376425379056,0.0710511170407576,0.0844355405447928,0.0973745360488712,0.1089360446117032,0.1243430166770656,0.1360246931913404,0.1473891520732421,0.1584446106185236,0.1685823343983874,0.1819855712285991,0.1929600623079918,0.2044552679357693,0.2146028343976904,0.2242528937986884,0.2347225915093503,0.2442874206043557,0.2532284917206623,0.2608631509663069,0.2688157261667468,0.276042329266177,0.2823054889811188,0.2890368198264242,0.2946705461163595,0.3000206383314516,0.3052932267874952,0.3103405138982711,0.3149589277993947,0.3188585929205831,0.3228320497942821,0.3214247311827957,0.3204243740208339,0.319331983805668,0.3187725631768953,0.3178048454816551,0.3164473784746099,0.3137313715584743,0.3146666666666666,0.3147123422947916,0.3150406865974609,0.3166115501746913,0.3180178581988055,0.319183639329179,0.3192244187603195,0.3195215104129134,0.3213924149209563,0.3224633564367685,0.32568477069964,0.3288728949758926,0.3314522494080505,0.3353309724870607,0.3395205770046669,0.3425157232704403,0.3473357553739025,0.3505067567567567,0.3554742803209061,0.3592350887843375,0.3671953423007428,0.3730136604404795,0.3663943990665111,0.0,2.219736054832722,55.18788550889749,172.26922739850147,255.07812198204223,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95675,44942,425.1580872746276,5820,59.51397961850013,4561,47.1178468774497,1838,18.803240135876667,77.35982293729873,79.73437172993833,63.33991942654043,65.08939824889922,77.13290397188909,79.51124648504495,63.25613116694226,65.00985106579725,0.2269189654096379,223.1252448933816,0.0837882595981724,79.5471831019654,158.06076,111.16965545504192,165205.45597073424,116194.64024566702,397.23455,261.7092491779838,414637.8573295009,272987.6710552768,378.73696,184.27723169787,392420.71596550825,189917.76523119168,2637.53668,1205.9530283317076,2725980.120198589,1229767.5193868775,1063.19671,464.9505695501636,1097132.9605435068,471873.5086288204,1804.49538,751.9687673382249,1847969.354585837,753081.2158821893,0.37994,100000,0,718458,7509.338907760648,0,0.0,0,0.0,34337,358.2963156519467,0,0.0,34490,357.2511105304416,1576708,0,56477,0,0,0,0,0,87,0.8884243532793311,0,0.0,1,0.0104520512150509,0,0.0,0.0582,0.1531820813812707,0.315807560137457,0.01838,0.3330596157004434,0.6669403842995566,24.552639206837902,4.40195271859419,0.3277789958342468,0.2212234159175619,0.2256084192063144,0.2253891690418767,11.278573058295082,5.815470211874077,19.588279950007472,12131.60499234327,51.53208445460097,12.109158086675723,16.792924148871126,11.420114501391913,11.209887717662223,0.561718921289191,0.7958374628344896,0.6963210702341137,0.5850340136054422,0.11284046692607,0.745819397993311,0.9243902439024392,0.8870056497175142,0.7510729613733905,0.1206030150753768,0.4962852897473997,0.7078464106844741,0.6371603856266433,0.5364321608040201,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025114432697371,0.0047739228266488,0.0072135139248211,0.0093944872133411,0.0119367170977712,0.0142500890630566,0.0161913204740215,0.0184263151450842,0.0206235060981838,0.022925362140928,0.0252935029811297,0.0274224160041036,0.0296112812711986,0.0317023949259694,0.0338318720990201,0.035853073711191,0.037796596132345,0.0396208019582218,0.0414513697561989,0.0436160123396316,0.057848217643863,0.0713283491445205,0.0843960242241044,0.0975863810445688,0.1093789553624166,0.1245992190724104,0.1361243206521739,0.1479150023965489,0.1586312323612417,0.1685663382488677,0.1817486315245032,0.1927991337303735,0.2043745579193644,0.2142403747236632,0.2239889007564663,0.2347748067081681,0.2452268035485131,0.2539311445559689,0.2614971200507959,0.2689385270288826,0.2773070387367496,0.2841378020410787,0.2902047042963068,0.2959420636820685,0.3014514192867796,0.3063049763178938,0.3107626959835092,0.3152827001003518,0.3190056362790217,0.3226125354247677,0.3210988213474539,0.3193203376316296,0.318856499084636,0.3170326735103449,0.3161775614966915,0.3151680151726037,0.3132613992342499,0.3133588350215889,0.3143448370215822,0.3152845760834614,0.3166925800348426,0.3174142323872726,0.318715838411761,0.3199687290596381,0.3212511102042776,0.3221263770525878,0.3235986944799205,0.3271701660921341,0.3305949800741103,0.3334785708627109,0.3354718354718354,0.3346999627282892,0.3365268701224541,0.3350179952523164,0.3337734603414128,0.3356409644306517,0.3383504837966518,0.3389146661287068,0.3407806191117092,0.3443683409436834,0.0,2.0618250558752624,52.34813448300893,168.23748784921807,256.22902893798016,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95863,44915,424.92932622596834,5873,60.19006290226677,4585,47.34882071289236,1747,17.9318402303287,77.34109898624328,79.6320867494526,63.34986309044478,65.04434818284766,77.12796878621475,79.41963806972458,63.27150975551322,64.96803663937526,0.2131302000285302,212.44867972801276,0.0783533349315561,76.31154347239999,159.52002,112.18740412212864,166403.70111513307,117028.43716775882,399.15073,262.71762849739446,415884.9816926239,273564.34922482545,378.26251,183.60292480350304,391357.9065958712,189006.8380733592,2610.68552,1190.0790957871443,2695945.130029313,1214056.993612911,1076.97116,473.8444578966567,1109211.8961434546,480077.7115522122,1711.58986,706.9510012721868,1757137.8738407935,713254.9240740058,0.37881,100000,0,725091,7563.804596142411,0,0.0,0,0.0,34483,359.1896769347924,0,0.0,34555,357.24940800934667,1570081,0,56364,0,0,0,0,0,67,0.6989140752949522,0,0.0,1,0.0104315533626112,0,0.0,0.05873,0.1550381457722869,0.2974629661161246,0.01747,0.3353936239427456,0.6646063760572544,24.75075873149614,4.23544518528535,0.3254089422028353,0.2359869138495092,0.2268266085059978,0.2117775354416576,11.247353730785322,5.884582994034463,18.446991538838045,12108.766241310006,51.87619970011967,12.91507784016991,16.85349101111132,11.564987418888776,10.542643429949662,0.5696837513631406,0.7855822550831792,0.7050938337801609,0.5846153846153846,0.1050463439752832,0.7417998317914214,0.9333333333333332,0.8624338624338624,0.743801652892562,0.134020618556701,0.5094228504122497,0.7072135785007072,0.651705565529623,0.5363408521303258,0.0978120978120978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002379626348033,0.0044076967504635,0.0065017395449796,0.0088025666538063,0.0109670075010672,0.0131279003500773,0.015465020324582,0.0177811782708492,0.0197944967622004,0.0221774399787227,0.0244502033248998,0.026594053516302,0.0286351077924879,0.0305468388291578,0.0325605358062854,0.0347603517318251,0.0367061645676944,0.0389134083421396,0.0407993771087464,0.0426961850168017,0.0573802969636303,0.0709403674518738,0.0848966680283652,0.0974459683686543,0.1100031588922817,0.1253102392142366,0.1366785305707385,0.1474949771980738,0.158666311016271,0.1687169156254688,0.1807411711537219,0.1933698073221893,0.205251945567584,0.2147150757393604,0.2243171592946637,0.2349800620292423,0.2446784773974742,0.2537822120738333,0.2617467179539549,0.2693857921494985,0.2768460257240677,0.2831671129090717,0.2897774308758485,0.2954158982588077,0.3009942095487818,0.3052403307088555,0.309387704046532,0.3141959767045599,0.3177896493293148,0.3221904146273894,0.3209177151315346,0.3201534294788072,0.3198788817688895,0.319142167141473,0.3179898271810583,0.3153807269886494,0.3130790061285571,0.3130124718602626,0.314307745030843,0.3153101470060954,0.3165252403620012,0.3174137247124157,0.3192733083813449,0.3195980577286215,0.3204923582898046,0.3199769536978839,0.3199988570448895,0.3255711220497286,0.3296159915833772,0.3331218274111675,0.3356391935557274,0.3364317204015509,0.3386974630821658,0.3399452804377565,0.3426573426573426,0.3451970003571003,0.3468793129888054,0.3489215883894376,0.352651722252597,0.3519083969465649,0.0,1.8306144047729465,52.37638074380278,171.4705406461048,257.5730453479921,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95659,45016,427.8426494109284,5964,61.02928109221296,4706,48.7878819556968,1890,19.464974544998377,77.31769350596971,79.73900185606706,63.289715480586615,65.08074235522427,77.0820746236973,79.5017976883773,63.2012478196197,64.99358082581423,0.2356188822724192,237.20416768976804,0.0884676609669128,87.1615294100394,158.4726,111.45518948678898,165664.07760900698,116513.0196706938,399.01657,262.3637891951877,416685.0897458681,273841.18341477774,378.55952,183.65939020616528,393346.12529924,190142.32779274075,2730.7062,1245.3580604525578,2832085.177557784,1279849.6582496956,1122.03362,491.2410090009674,1163217.7944573956,504005.4752133637,1863.47892,789.0119455863843,1920961.8331782685,802068.4324587442,0.38088,100000,0,720330,7530.185345863953,0,0.0,0,0.0,34485,360.0602138847364,0,0.0,34585,359.1089181362966,1571151,0,56336,0,0,0,0,0,68,0.7108583614714767,0,0.0,0,0.0,0,0.0,0.05964,0.1565847511027095,0.3169014084507042,0.0189,0.3313590523451256,0.6686409476548744,24.5385706899774,4.371670420523659,0.3257543561410965,0.2301317467063323,0.208244793880153,0.2358691032724182,10.923496724293406,5.572056249118714,20.089148447785675,12099.14090129078,52.92114673062274,12.802422329771202,17.27530490782644,10.806010562135372,12.037408930889711,0.5560985975350616,0.7793167128347184,0.7084148727984344,0.5663265306122449,0.1189189189189189,0.7190357439733999,0.9182561307901907,0.9069148936170212,0.6754385964912281,0.1422413793103448,0.5001427347987439,0.7081005586592178,0.6439066551426103,0.5332446808510638,0.112756264236902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023705324580598,0.0046647466839735,0.0070050761421319,0.0088720413825343,0.0109475312096208,0.0129788101059494,0.0150470283394201,0.0173377333237977,0.0194447002957641,0.021464154656717,0.0235797729279159,0.0256130790190735,0.027721140974153,0.0299460496590709,0.031946439087894,0.0340649220294084,0.0359871852028491,0.0379849389768891,0.039982100673306,0.0419225996183166,0.0560345278030326,0.0704324228040947,0.0837088151579124,0.0968023929391443,0.1086481291780633,0.123939544785367,0.1365186987895469,0.147978382066069,0.158931895500353,0.1691625128910278,0.1814660984950644,0.1939074082101521,0.2047388201971784,0.2147934762368971,0.223210546039724,0.2328533072980229,0.2432435453224544,0.252002027369488,0.2608611723025912,0.2690610710643028,0.2761719473781731,0.2826079324025419,0.2886282871357498,0.2948953272149241,0.2998479411228028,0.3046963642642198,0.3099381525903297,0.3148002036141512,0.3199010067766303,0.3250409554510384,0.3240587212358959,0.3226832222895215,0.3212322782491051,0.3199289335702214,0.3185232468380737,0.3171534915067318,0.3158795020431436,0.315861118855887,0.3159214161465261,0.316644426652433,0.3176712073147975,0.318024467959561,0.3192683433797547,0.3202559203803261,0.3211802652012901,0.3230529998704159,0.3249419493685224,0.3273781685529885,0.331357645910327,0.3328726009004028,0.3359570499112789,0.3375431148845847,0.3394385699899295,0.3397601335964779,0.3398668292225452,0.3443513162554598,0.3439926907263591,0.345356715823037,0.3461016028253192,0.3499433748584371,0.0,1.4948404996283744,53.295662216424255,173.16713921513187,267.62848994343045,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95713,45111,426.9117047840941,5997,61.31873413224954,4719,48.73946067932256,1949,20.01817934867782,77.34880342590687,79.7067666790779,63.338894218876014,65.07730984896118,77.10253825679952,79.46019827213901,63.24737415690218,64.98752214535578,0.246265169107346,246.56840693889137,0.0915200619738314,89.78770360539556,159.83814,112.33981256797703,166997.31488930449,117371.5300617231,398.53752,261.5975744414051,415822.6468713759,272749.14007648383,379.35941,184.93030166464743,392517.7875523701,190225.81814186453,2732.52808,1263.5403871767933,2824493.14095264,1289709.2632942155,1151.13803,510.7838719289328,1186817.7677013571,517782.04834132496,1908.88254,806.1108725386678,1962110.45521507,816282.9670911185,0.38092,100000,0,726537,7590.787040422932,0,0.0,0,0.0,34357,358.3734706884123,0,0.0,34659,358.32123118071735,1569415,0,56338,0,0,0,0,0,74,0.7731447138842164,0,0.0,1,0.0104479015389758,0,0.0,0.05997,0.1574346319437152,0.3249958312489578,0.01949,0.3402258628916813,0.6597741371083188,24.239436222141048,4.461649399563482,0.3297308751854206,0.2231404958677686,0.2178427632973087,0.229285865649502,11.507403629034435,5.991423060882203,20.82117573343068,12202.308753007068,53.77177624411347,12.825432519112187,17.558841358508886,11.457103394124346,11.93039897236805,0.5713074803983895,0.8024691358024691,0.6908740359897172,0.607976653696498,0.1395563770794824,0.7204874333587205,0.8987654320987655,0.8663484486873508,0.7368421052631579,0.152892561983471,0.5137991779213154,0.7422839506172839,0.6262093227792436,0.5672215108834827,0.1357142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.004713538498966,0.0072142458525696,0.0092544621542274,0.0117842036765902,0.0139970478953529,0.0161558298592353,0.0182811064611615,0.0206836646057942,0.0229466250447776,0.0251624541336121,0.0272078821778621,0.0293319351057923,0.0314411019828278,0.0335038785278098,0.0355231344671529,0.0376360229025812,0.0398203002604193,0.0417857996901675,0.0434483620905226,0.0586048454469507,0.0726523008655063,0.085566209949852,0.0980390094051802,0.1103387899755295,0.1263870524144496,0.1389065749819601,0.1494234516242374,0.1591892556067227,0.1701335621949257,0.18292288798397,0.1952304179876432,0.2060320636923277,0.2160551211242959,0.2260719354803217,0.235741908318282,0.2452861802421697,0.2537093324327367,0.262574653132593,0.2697683477304493,0.2772755159919895,0.2846330221567114,0.2906303640130216,0.2970654140654021,0.3016385875836603,0.3063397202883371,0.3107117847138855,0.3155104013020701,0.3203688853247795,0.3250181290790427,0.324213332615223,0.3228061484264267,0.3219600879418231,0.3207795399673264,0.3193791996194327,0.3163891994547654,0.3138745071961241,0.3145960490910284,0.3157822827182211,0.3170204788516131,0.3180542563143124,0.3189243578108353,0.3210630951135294,0.3209953900550508,0.3229176697159364,0.3240359025204822,0.32500500271576,0.3290975594374724,0.3335911407980313,0.337138992759965,0.3424363020904807,0.3464916979110873,0.3494298273555456,0.3513222632226322,0.355740968995923,0.3550168026884301,0.3630970964720574,0.3641078838174273,0.3634324172742568,0.3666146645865835,0.0,2.2251271714569687,57.66243682039907,174.09026108610243,255.50482915306557,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95635,45180,429.2047890416689,6022,61.81837193496105,4732,48.88377685993621,1893,19.38620797825064,77.26744378178137,79.68273456032978,63.28338998351626,65.06935505214322,77.030562009433,79.44987380700496,63.19481225804866,64.98547022521262,0.2368817723483687,232.8607533248146,0.0885777254675943,83.88482693059984,158.15712,111.21337000895514,165375.7724682386,116289.40242479756,400.73586,263.819136711827,418368.58890573535,275213.42181627714,382.41175,185.52756512578773,396438.3750718879,191257.649515287,2714.16644,1248.482792053414,2803914.090029801,1271916.650292957,1124.65514,493.27019289789627,1161314.2677889897,501111.4684978268,1846.14442,777.1743836820244,1892001.233857897,778535.2540364977,0.38025,100000,0,718896,7517.080566738118,0,0.0,0,0.0,34616,361.2903225806451,0,0.0,34985,362.5660061692895,1570091,0,56386,0,0,0,0,0,67,0.6796674857531239,0,0.0,0,0.0,0,0.0,0.06022,0.1583694937541091,0.3143473928927267,0.01893,0.336815447926559,0.663184552073441,24.38648885843857,4.394481345729319,0.316356720202874,0.2360524091293322,0.2311918850380389,0.2163989856297548,11.11647280821849,5.7555794389319495,20.268019711382266,12138.51786303972,53.93317009398259,13.43181798573977,17.040181785874566,12.069565247325446,11.391605075042806,0.5657227387996618,0.7833482542524619,0.7060788243152972,0.5722120658135283,0.1162109375,0.7284716834755625,0.9189814814814816,0.8585858585858586,0.7008196721311475,0.1428571428571428,0.5047923322683706,0.6978102189781021,0.6512261580381471,0.5352941176470588,0.1090458488228005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.0047454877306834,0.006924139051332,0.0090541419396797,0.0111598286859479,0.0132908298366399,0.0153149662499745,0.0176214152262912,0.0199490792339389,0.0221915002560163,0.0244195109944207,0.0264825829250002,0.0286604874134578,0.0307370503560057,0.0327631945663057,0.0347893512535538,0.0368095617859991,0.038913050247553,0.0406719717064544,0.0425168117604128,0.0575041806020066,0.0717472819825292,0.0845944611894684,0.0975201389985784,0.1092483108108108,0.1251005972298699,0.136721363708778,0.1479997442400733,0.1592345787295033,0.1693104077840903,0.182047604154309,0.1952205045985852,0.2062255115367871,0.2166057475541158,0.2258799696125601,0.2366633798291583,0.2457137116578113,0.2545405441901289,0.2627252392901343,0.2701454391253022,0.2777005904828065,0.2832643129547741,0.2900563607085346,0.295941260452784,0.3016029383148472,0.3058390827295953,0.3110816091378187,0.3157057401043655,0.319979781746546,0.323128577282521,0.3218193839137533,0.3204905608378117,0.3195253749453278,0.3178902868063297,0.3185148780269859,0.3164419079179515,0.3141034794611833,0.3150363092695429,0.3158092698021918,0.3162306097648152,0.3163504663251327,0.3180880602935343,0.31828973631684,0.3184443847393874,0.3192104692357747,0.3205450075840786,0.3216671424493291,0.3242834645669291,0.3262690980778708,0.3277327692860278,0.3309104292220637,0.3327772695474358,0.3354842831587017,0.3389660493827161,0.3391551969625059,0.3438701923076923,0.3470433028092503,0.34643886372993,0.3530079455164586,0.3565705128205128,0.0,2.194144735096988,56.79346016590548,177.60711279120773,256.88191470148,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95839,44997,425.9643777585325,6115,62.59455962603951,4822,49.73966756748297,1840,18.83366896566116,77.40182060844235,79.7169113749846,63.36325590393732,65.07626553881886,77.17347926684803,79.48923481332719,63.27839192772195,64.99417676026108,0.2283413415943158,227.6765616574181,0.0848639762153737,82.0887785577753,158.76806,111.6625951190768,165661.223510262,116510.60123652876,400.02126,263.4577466385928,416844.6874445685,274352.0556752396,383.54866,186.52100325027504,396740.7422865431,191961.01679236247,2753.02256,1269.971134016601,2841991.965692464,1294551.5437521266,1135.18722,507.6310306640112,1170983.4305449766,516183.7647025434,1798.20734,762.5884713276835,1843009.275973247,766801.2228267353,0.38065,100000,0,721673,7530.055614102818,0,0.0,0,0.0,34594,360.3856467617567,0,0.0,35084,362.56638737883327,1573571,0,56511,0,0,0,0,0,72,0.7512599255000574,0,0.0,0,0.0,0,0.0,0.06115,0.1606462629712334,0.3008994276369583,0.0184,0.3298807281858129,0.6701192718141871,24.3786984961914,4.291292083061367,0.3139776026545002,0.2478224802986312,0.226047283284944,0.2121526337619245,11.211784275882351,5.953823933406444,19.710379875481404,12114.159730119469,54.81774252028617,14.372134031212758,17.13871345603276,12.04372362862694,11.263171404413717,0.5769390294483617,0.7882845188284519,0.7001321003963011,0.5954128440366973,0.1280547409579667,0.7380410022779044,0.9223946784922394,0.868766404199475,0.7330677290836654,0.1752136752136752,0.5164051355206848,0.706989247311828,0.6434245366284201,0.5542312276519666,0.1140684410646387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.004469488897222,0.0068376415209187,0.0091512030632661,0.0113967934445562,0.0135897227085793,0.0156652907302655,0.0180138803837517,0.0201259275916348,0.0221282867465686,0.0242427348675106,0.0263887178223919,0.0285552757362388,0.0303741685714874,0.0322723709723998,0.0341599504029758,0.0358880400803262,0.038117359159676,0.0405799810966046,0.0426800711854881,0.0572259941804073,0.0710544747488474,0.0845095512034621,0.0969842753752586,0.1093090120167244,0.1244573999556414,0.1363665254237288,0.1478910667970576,0.1587176230776619,0.1687036065082102,0.1807289818130975,0.1927731673582296,0.2040242060775941,0.2145377866640445,0.2247125552355618,0.2353136519111347,0.2447252208047105,0.2529596276434281,0.26130847057756,0.2684054521109191,0.2757244952239979,0.28273346815201,0.2897979941337875,0.2961995590913447,0.3018808358730891,0.3075596506571735,0.3112601005678833,0.3151324069718659,0.3190534106200186,0.3230978153387741,0.3219823818169592,0.320041785218479,0.3196725922592259,0.3187375645203149,0.3182835544356333,0.3163333944841925,0.3147042093287827,0.3148293705377611,0.3149316329662086,0.3150848332710214,0.315642979899873,0.3169516230696502,0.3185403104656985,0.3204197112814115,0.3214832535885167,0.3221732365145228,0.3244973095440385,0.326725266504582,0.3309304917119376,0.3333859572956545,0.3355573710965868,0.3378930067334711,0.3400603545831762,0.343067354368932,0.34388676785548,0.3455294117647058,0.3466626121331914,0.3479579458147998,0.346206518761983,0.3461096205442698,0.0,2.229287890513519,57.81922640159758,180.3685701269769,260.8919380179456,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95706,45055,427.9877959584561,6120,62.83827555221198,4733,48.97289616116022,1846,19.00612291810336,77.32145341825886,79.70742139057482,63.3143933609397,65.07964048986324,77.09012034348441,79.47591428284666,63.22870008063708,64.99611125696653,0.2313330747744402,231.50710772816296,0.0856932803026211,83.52923289670855,158.47898,111.51309575923828,165589.38833510963,116516.30593613592,399.84829,263.0158717646792,417324.6609407979,274353.041360708,380.29125,184.44472774431665,394133.6593317033,190286.6532578027,2733.4928,1253.1111471932406,2829375.880300085,1282622.716888555,1112.65497,494.1992813428235,1153204.5953231773,507029.52997533017,1817.57364,763.8308414987112,1872676.8854617265,775083.5064229273,0.37987,100000,0,720359,7526.790378868618,0,0.0,0,0.0,34566,360.6774914843375,0,0.0,34889,361.2730654295447,1572478,0,56397,0,0,0,0,0,59,0.6164712766179758,0,0.0,0,0.0,0,0.0,0.0612,0.161107747387264,0.3016339869281045,0.01846,0.3321917808219178,0.6678082191780822,24.470375001768943,4.377124529754251,0.3226283541094443,0.2328332981195859,0.2146630044369321,0.2298753433340376,11.022001000230103,5.623776552574954,19.611748589701783,12101.516638187566,53.76319914297915,13.216373491689165,17.313685426720703,11.305854803518631,11.927285421050648,0.5569406296218044,0.7912885662431942,0.6987557301899149,0.5856299212598425,0.09375,0.7308943089430894,0.9297820823244553,0.8919667590027701,0.7477064220183486,0.1260504201680672,0.4958606908364259,0.7082728592162555,0.6389365351629502,0.5413533834586466,0.0847058823529411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019858960849477,0.0039549741405536,0.0059180607438687,0.0081299986788752,0.0102657496337294,0.0124786081003993,0.0147057323801462,0.017143148866653,0.0190964945460493,0.0210453047270047,0.0229859131825544,0.0249132247530242,0.0271371258101018,0.0288737982131632,0.0312767736408022,0.0334477553299282,0.0358078783547227,0.0376727967121922,0.0398930915065985,0.0419489317352787,0.0566725504736638,0.0706883557342042,0.0840006296898777,0.0966441823022445,0.1084662783827129,0.124355676922914,0.1368856809255917,0.1479619550746093,0.1591052400953327,0.169221198502676,0.182282408454801,0.1944092587179404,0.2057825349171126,0.2158658264408559,0.2250154022179193,0.2353781419554866,0.2450971642756743,0.2541900383314036,0.2624423100910565,0.2700251889168766,0.2766156728067436,0.2833196960841613,0.2902802101576182,0.2958662832494608,0.3011161446251381,0.3054225395457623,0.3104004602416269,0.3148769574944071,0.3192416057073435,0.322836098190874,0.3220500820355577,0.3209601889616721,0.3197221519165331,0.3185799841258388,0.3174190674190674,0.3153227659085688,0.3135218980990519,0.3146106133700896,0.3160356423474788,0.3171884756043172,0.3184218410605947,0.3185859943092001,0.3186882224828279,0.3202874862861877,0.3211979568234387,0.3226515290239883,0.3247322297955209,0.3282409014866955,0.33188987466554,0.3347653142402546,0.3363118304080237,0.3369750586228949,0.338607192781802,0.3401585713186051,0.3389637502372367,0.3425925925925926,0.3460883036405887,0.3439099283520982,0.3498477719346803,0.3531898539584934,0.0,1.870074903070705,54.13316880687334,185.0619691533895,257.3673759550366,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95703,45003,425.9950053812315,5933,60.69820172826348,4655,48.034021921987815,1848,18.912677763497488,77.3455376358958,79.7311090631829,63.32130932583449,65.08674319869826,77.11122734996098,79.49999496706398,63.23428870388118,65.00336446540892,0.2343102859348107,231.1140961189153,0.0870206219533145,83.37873328933654,158.54916,111.53919878659784,165667.91009686215,116547.23340605608,399.13066,262.7509832394843,416473.53792462096,273970.5058770199,379.82843,184.9920136256618,392895.92802733456,190273.42397786555,2704.8394,1245.2286984292778,2793228.3000532896,1268082.0647516567,1142.01434,505.5799063640519,1179583.9106402097,514574.00119541865,1818.00114,765.7771968639227,1862915.4780936856,769835.2592720967,0.37914,100000,0,720678,7530.359549857371,0,0.0,0,0.0,34509,359.96781710082234,0,0.0,34771,359.4140204591288,1573463,0,56350,0,0,0,0,0,68,0.700082547046592,0,0.0,0,0.0,0,0.0,0.05933,0.1564857308645882,0.3114781729310635,0.01848,0.3332260659694288,0.6667739340305712,24.430722572520555,4.402960080002166,0.3203007518796992,0.227282491944146,0.2214822771213748,0.2309344790547798,11.231655917032976,5.84646066245012,19.74934346644012,12099.789868062926,52.75249532618497,12.766117115751914,16.770701139448047,11.327340754253894,11.888336316731095,0.5568206229860365,0.8109640831758034,0.6841046277665996,0.5615906886517944,0.1255813953488372,0.7354581673306773,0.9287469287469288,0.8712121212121212,0.7217391304347827,0.1531531531531531,0.4908823529411765,0.7373271889400922,0.6164383561643836,0.5156054931335831,0.1184056271981242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023607128744972,0.0044728434504792,0.0069546677496319,0.0090855505193194,0.0111906893464637,0.0133632104298227,0.015398421406865,0.0177486392369514,0.020216377617801,0.0224880186785728,0.0248807753448541,0.0268896169924302,0.0288118333213326,0.0309849866559502,0.0330130752004623,0.035191100910792,0.0372806563218628,0.0393457255243848,0.0415245424292845,0.0433346531352241,0.0579867566269087,0.0723324088126013,0.0859028987636699,0.0989120828247969,0.1116068603252958,0.1266857765413947,0.1398285301982089,0.150432393286189,0.1600782485996493,0.1700835068587252,0.1823610572155391,0.1939847506823203,0.2055711579909868,0.2161724477513951,0.225452103948136,0.235166369347708,0.244905247650722,0.2538362883628836,0.2621518915546481,0.2687980037315568,0.2753044866234082,0.2819092364690345,0.2884031070073182,0.2936290409450515,0.2988890505991364,0.3036568715482355,0.3088744237184372,0.3133703144238947,0.316979329399765,0.3202577421263725,0.3189881910896404,0.3176915591979936,0.3164517850622173,0.3150736247586664,0.3150467898602227,0.3131860582281187,0.3117837666956453,0.3118267209668944,0.3117397840645073,0.3121883210896026,0.3137718705414132,0.3135774580905957,0.3139705882352941,0.3151310341740707,0.3162874684001444,0.3174238668093213,0.3200205104831358,0.3240720369613729,0.3274857904708441,0.3299325129019452,0.3357883251500272,0.338102808691044,0.3416609126859582,0.3430933778350906,0.3434999529323166,0.3440526001195457,0.3505313414446326,0.3491317671092952,0.3555008210180624,0.3657874321179208,0.0,2.3877620698947277,54.798029922157774,169.98923645161614,258.7164906240824,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95609,45071,427.7003210994781,6004,61.500486355887,4707,48.64604796619565,1812,18.607034902571936,77.23812690061078,79.66708859746352,63.25655152000609,65.05335974412982,77.00961009959276,79.43987126137147,63.17279183565018,64.97201782914873,0.2285168010180172,227.2173360920533,0.0837596843559111,81.34191498109544,159.16626,111.97006044138332,166476.23131713542,117112.4689531146,400.50767,263.6314224567167,418278.3629156251,275115.8730273613,384.51698,187.0683229455444,397882.51106067415,192402.8816182342,2688.64436,1236.6365340797283,2780575.3014883534,1261883.00327516,1111.27711,489.1806196206536,1147910.771998452,497257.46513121255,1771.19986,736.8782383860812,1821040.4878201843,745068.9159056292,0.37859,100000,0,723483,7567.101423506156,0,0.0,0,0.0,34648,361.7441872627054,0,0.0,35157,363.553640347666,1562107,0,56104,0,0,0,0,0,66,0.6693930487715593,0,0.0,0,0.0,0,0.0,0.06004,0.1585884466045062,0.301798800799467,0.01812,0.3335452089623391,0.6664547910376609,24.501002964110796,4.336359377024523,0.3246229020607605,0.2502655619290418,0.2152113872955173,0.2099001487146802,11.049377907922803,5.680313396434394,19.14578226212599,12094.450962740504,53.30874212020831,14.063485531963469,17.33063461627095,11.111265614367348,10.803356357606544,0.5708519226683663,0.7835314091680815,0.68717277486911,0.5853899308983218,0.1224696356275303,0.747832939322301,0.92,0.8511749347258486,0.8070175438596491,0.1201923076923077,0.5055264688772542,0.6991758241758241,0.6323144104803493,0.5210191082802548,0.123076923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.004381649812867,0.0064474859881406,0.0090462783204415,0.011205422569614,0.0132440885520136,0.0153194961497271,0.0177338291178032,0.0197921567825215,0.022103182325648,0.0241422473939095,0.0263144374916515,0.0284267511990284,0.0304732843314124,0.0324672642405716,0.0345070203938042,0.0365724711297244,0.0387767609510849,0.0408243988758197,0.0427589372333434,0.057005760163919,0.0710348729985749,0.0836336131275672,0.0965204204140952,0.1087996451841135,0.1244306988370368,0.1371386684514134,0.1482413131528459,0.1595733299097017,0.1691084854994629,0.1820015967891591,0.1933871754566643,0.205393331880584,0.2155081737301135,0.2246663507422387,0.2353065187239944,0.2446815649956378,0.2536334013597772,0.2615755480760484,0.2687555974005098,0.275944080283079,0.2817897217629885,0.2880022778232551,0.293148412994099,0.2978689703069219,0.3029363058899132,0.3076701051627638,0.3125047840175541,0.3170538508486021,0.3218816557088619,0.3206991968684619,0.3192402129831434,0.3175987468777782,0.316906813409601,0.3165945037123004,0.3150438946528332,0.3140607388357067,0.3150788685085784,0.3169021329126946,0.3179947021764032,0.3193821437285336,0.320592545648988,0.3208803208803208,0.3219563608638127,0.3222329394743188,0.3238471397556956,0.3239396282613054,0.328661173722259,0.3318069742867207,0.3348010631123805,0.3343537259560469,0.3348221406922954,0.3365663181760927,0.3416622228993677,0.3457531675269826,0.349075491697091,0.3507473954401329,0.3522025114610325,0.3520087455588959,0.3539923954372623,0.0,2.2193162034699583,55.63446071457953,170.3675125034633,263.2107017581393,fqhc6_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95719,44825,424.8895203669073,5951,60.97013132189012,4677,48.27672666868647,1893,19.369195248592234,77.33641368994157,79.7129002433944,63.332022412709286,65.09009998996936,77.10377876598561,79.4811770349833,63.24585366381358,65.00665997601985,0.2326349239559562,231.72320841109692,0.0861687488957088,83.44001394951306,159.55434,112.29242946232507,166690.3540571882,117314.67050671768,400.52658,263.4348370257572,417846.01803194766,274622.89307844546,381.18098,185.30741927177183,394694.37624714006,190848.80300702705,3112.9529,1418.8441874650375,3216101.536789979,1446308.4287710132,1142.02889,505.8217011033262,1177669.8356648106,513052.0999168701,1861.44694,777.0337859985658,1907801.899309437,782346.1692775999,0.3773,100000,0,725247,7576.834275326738,0,0.0,0,0.0,34727,362.1851461047441,0,0.0,34712,359.0405248696706,1568166,0,56264,0,0,0,0,0,73,0.7626490038550341,0,0.0,0,0.0,0,0.0,0.05951,0.1577259475218659,0.3180977986892959,0.01893,0.3397466730800064,0.6602533269199936,24.408011301435785,4.451823116621884,0.3264913406029506,0.2202266410091939,0.2195852041907205,0.2336968141971349,11.342112826891809,5.8115724579405885,20.1603193761888,11982.272145089222,53.069147059712606,12.366537690269716,17.242461770785027,11.524470557180104,11.935677041477753,0.5567671584348942,0.7786407766990291,0.7000654878847413,0.5715676728334956,0.1335773101555352,0.714516129032258,0.9206798866855525,0.8582089552238806,0.728744939271255,0.1512605042016806,0.4998545242944428,0.7045790251107829,0.6435555555555555,0.5217948717948718,0.1286549707602339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0044523778131624,0.0067008477587694,0.0087405480120334,0.0107626420353397,0.0129957427739188,0.0150827562997787,0.0175107208494996,0.0197519757087503,0.0217636099338697,0.0240787248218953,0.0262928246563247,0.0285775986179095,0.0304981048121292,0.0324314842331187,0.0345544001819196,0.036499373556851,0.0384679226491825,0.0404610459798786,0.0425824461990375,0.0572535424519928,0.071217827997489,0.0843645134228188,0.097171269092094,0.1098123946037099,0.1248454360025787,0.1368739068214342,0.1479843040505333,0.1586154634333774,0.1686359789606744,0.1806745297232146,0.1928654072816531,0.203518570838676,0.2133658120965187,0.2226812732806645,0.2325529962070529,0.2410304407897669,0.2493285837893719,0.2575635634047087,0.264943383278051,0.2722113706499,0.2796024200518582,0.2862695984025898,0.2916447273945718,0.2966295950420239,0.3009546304497589,0.3050925810240136,0.3088065257995248,0.313318155947638,0.3167816577180323,0.317043618739903,0.315416827373409,0.3143271968650447,0.3138409455881715,0.3137613859617789,0.3120725086648468,0.3109307633781384,0.311328041545465,0.3119473189087488,0.3120563571671226,0.3131595224261054,0.3140626544124913,0.3152476407691825,0.3171482762467923,0.3184415210293835,0.3192640974264227,0.3193034626712035,0.3229064739118083,0.3262513630447782,0.3290119270812557,0.3318775285031261,0.3351979345955249,0.33620246659815,0.3408037094281298,0.3448275862068966,0.3484573502722323,0.3482726423902894,0.3448770491803278,0.3484262838210933,0.3476263399693721,0.0,2.234335243660774,54.24619034635897,175.7135289961243,258.37263021376776,fqhc6_100Compliance_implementation_low_initial_treat_cost,0 -100000,95615,45099,427.3388066725933,5982,61.36066516759923,4684,48.45474036500549,1835,18.82549809130367,77.26635035352784,79.70500073971813,63.26822878755484,65.07224732339576,77.03324567335545,79.47273488545349,63.18146697158886,64.98823951718455,0.2331046801723886,232.26585426463944,0.0867618159659784,84.00780621120418,157.9347,111.09753863178824,165177.7440778121,116192.5834145147,400.18528,262.934589253295,418016.2003869686,274471.49464364245,378.49484,184.35635880351543,392304.8684829786,190035.83705962315,3082.96411,1407.8802113472202,3192722.9514197563,1440865.2290509378,1130.78184,504.7816852661126,1167513.7583015217,512830.11977303127,1803.04166,763.2101200589091,1852774.020812634,769936.9087539412,0.38023,100000,0,717885,7508.079276264185,0,0.0,0,0.0,34590,361.2194739319145,0,0.0,34607,358.5525283689798,1572283,0,56395,0,0,0,0,0,56,0.5752235527898343,0,0.0,0,0.0,0,0.0,0.05982,0.1573258291034374,0.3067535941156804,0.01835,0.3281049935979513,0.6718950064020487,24.49715961012435,4.40757250714664,0.3270708795900939,0.2335610589239966,0.2147736976942784,0.224594363791631,11.08177870380702,5.654795199478965,19.775759944082974,12167.82141499598,53.16584341561136,13.129277007631936,17.233425711376178,11.120867377405178,11.682273319198051,0.5567890691716482,0.8025594149908593,0.674934725848564,0.558648111332008,0.1273764258555133,0.7256778309409888,0.9271356783919598,0.8439897698209718,0.6954732510288066,0.1891891891891892,0.4950437317784256,0.7313218390804598,0.6170026292725679,0.5150720838794234,0.1108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022599213587903,0.0047577986304844,0.0069769567469304,0.0091711403936879,0.0116956088027523,0.0138813865079445,0.016176110385369,0.0185361168163657,0.0206679217483834,0.0227687263039245,0.0248162896670635,0.0269514626976132,0.0289264280493705,0.0310444375708835,0.0332692943315154,0.0355838377567385,0.0376762023217247,0.0395920317400967,0.0416627637097865,0.0433227303540699,0.0583647825041554,0.0719188489630817,0.0849561983991933,0.0979008457706202,0.1104105277610553,0.1257282067577587,0.1372640707362693,0.1483136719499968,0.158380871854698,0.1686238275836135,0.1821172410073882,0.1940536322053372,0.2052183950603839,0.2148444347063978,0.2247167482255433,0.2346070656092285,0.2445402651950982,0.2536679841007105,0.2623381049761418,0.2703552053584741,0.2782049797336421,0.2848946135831381,0.2903653698110973,0.2968633845711134,0.30152574311592,0.3067486176935229,0.3112200135362094,0.3156519966361713,0.3204543097189088,0.3252122700682697,0.3237315081781682,0.3220086999614558,0.321882001493652,0.3193611331936113,0.3185867027525391,0.3168453292496171,0.3148007349680035,0.315078399789619,0.3156355801785164,0.3164099536664341,0.3170928768719114,0.3180187501238776,0.3201562762560914,0.3214869555480909,0.3219174780680613,0.3221685173089484,0.3219448094612352,0.3249076966770803,0.3292846078017181,0.3315132916185086,0.3326791419443176,0.3359923420548819,0.3386534929381214,0.3435438623095003,0.3437383525903839,0.3466228893058161,0.3541256623769871,0.3555110220440882,0.3593579978237214,0.3568215892053973,0.0,2.0818525919584867,55.111950293988166,174.71418444227814,258.02996418306924,fqhc6_100Compliance_implementation_low_initial_treat_cost,1 -100000,95698,45303,429.3088674789442,5881,60.2624924240841,4565,47.05427490647663,1750,17.90006060732722,77.34534288058313,79.71316231789741,63.32656324425341,65.07410625771728,77.12145619332121,79.4909019106904,63.24259078382254,64.99297486088382,0.223886687261924,222.2604072070169,0.0839724604308642,81.13139683345594,159.4494,112.18737031805578,166617.27517816465,117230.6321114922,402.13681,265.4833449624251,419567.4831239943,276770.9094886258,385.14759,188.63624734526715,397521.7768396413,193372.8341050132,2999.03581,1374.638449653724,3095265.1361574954,1397844.7508346273,1086.51021,480.75388628151046,1119233.1814666972,486245.7379271349,1715.06358,725.4155231562119,1756786.9547952935,729589.7493117981,0.3801,100000,0,724770,7573.5125080983935,0,0.0,0,0.0,34787,362.8393487847186,0,0.0,35113,362.07653242492006,1561115,0,56086,0,0,0,0,0,66,0.679220046395954,0,0.0,0,0.0,0,0.0,0.05881,0.1547224414627729,0.2975684407413705,0.0175,0.3335499593826158,0.6664500406173842,24.65213728719745,4.3273576745801385,0.3338444687842278,0.2302300109529025,0.2144578313253012,0.2214676889375684,11.11390792397654,5.7125938538645125,18.702113048650297,12092.241917377703,51.67226514633255,12.737309007776444,17.21214114994733,10.795595306642104,10.927219681966672,0.5640744797371303,0.7973358705994291,0.7001312335958005,0.5689479060265578,0.1117705242334322,0.7387173396674585,0.9197080291970804,0.8791469194312796,0.7168949771689498,0.1279620853080568,0.4972743791641429,0.71875,0.631578947368421,0.5263157894736842,0.1075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.004591247238157,0.0067468852725132,0.0090493601462522,0.0112774309015843,0.0134189922520082,0.0155244997604558,0.0178945111930014,0.0202093512972011,0.0223869138405789,0.0244807577963217,0.0264017252002464,0.0289029232066816,0.0309676621784503,0.0329927760577915,0.0351461148037502,0.0371693697052548,0.0391448733914487,0.0412776310590779,0.0431529475516095,0.057513158994068,0.0717335789341482,0.0853392373717235,0.0986269661739176,0.1113631807198404,0.1271482390789028,0.1386503327990148,0.1499398238382805,0.1598110566082096,0.1696447724055086,0.1823059766622491,0.1935875085272493,0.2051362968605473,0.2151670078714296,0.2244234962447415,0.2347555230399166,0.2441349137257528,0.2528046269311699,0.2618709772626656,0.2694444762679436,0.275815783383476,0.281955019122136,0.2884028123002627,0.2941098927437234,0.2996051752414505,0.3036044476221,0.3078791217045141,0.3119429363373978,0.3160902411527646,0.3208571692803635,0.3197384387218552,0.318252579663025,0.3171516922946583,0.3157833801267765,0.3156054745611425,0.3138553016719538,0.3114569986871036,0.3116478762454116,0.3125851034858388,0.312987012987013,0.31418124836772,0.3148782119387714,0.3158268275372605,0.3165933501551928,0.3163881207166045,0.3170115840166602,0.3189227498228207,0.3233860383726017,0.3270780285325613,0.3314436439510255,0.3355113894182775,0.3382352941176471,0.3412494517200325,0.3448982690555724,0.3472404115996258,0.350088287227781,0.3513431476703597,0.3528229857343781,0.3551120831055221,0.3534214618973561,0.0,2.5674667598894185,54.87850371665687,163.39768411863457,251.34179920872916,fqhc6_100Compliance_implementation_low_initial_treat_cost,2 -100000,95658,45503,431.43281272867927,6066,62.0230404148111,4764,49.175186602270585,1869,19.10974513370549,77.2498286400838,79.64848584295257,63.26585613190741,65.03874924307354,77.01040332437846,79.41256729742649,63.177101370982015,64.95458767349295,0.2394253157053469,235.9185455260757,0.0887547609253971,84.16156958058707,157.9138,111.2396780263588,165081.64502707563,116288.94397369667,400.67632,263.9071596864612,418237.6068912166,275261.89162089454,387.32297,188.64089556701555,401422.6201676807,194559.1265527165,3116.37433,1416.7666082873332,3217683.3929206133,1441041.231324474,1149.47499,502.8039742957026,1184718.1103514603,508796.4654464002,1827.98372,766.5574689357321,1870897.8234962053,765302.4088215731,0.38274,100000,0,717790,7503.711137594347,0,0.0,0,0.0,34590,360.9316523448117,0,0.0,35325,365.8345355328357,1565588,0,56153,0,0,0,0,0,73,0.7526814275857743,0,0.0,0,0.0,0,0.0,0.06066,0.158488791346606,0.3081107814045499,0.01869,0.3461175730902232,0.6538824269097768,24.482911836010626,4.341321121480268,0.3228379513014274,0.2338371116708648,0.2222921914357682,0.2210327455919395,11.15785799449434,5.781956793713561,19.850344673291463,12239.437953985967,53.8897281383065,13.400377203849878,17.31057115582141,11.828371078154444,11.350408700480772,0.5564651553316541,0.7935368043087971,0.6729518855656696,0.5684608120868744,0.1234567901234567,0.7416534181240063,0.9424460431654677,0.8110236220472441,0.7518518518518519,0.1473684210526315,0.4900171135196805,0.7044476327116213,0.6274848746758859,0.5057034220532319,0.1181923522595596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995259127193,0.0045432880018659,0.0065874280610225,0.0089006299532615,0.0113415589303333,0.0133929480781374,0.0155096463678264,0.0178485730331342,0.0198097770505215,0.0222037873434315,0.0245761234139886,0.0266974833076528,0.0288316098163296,0.0308895828824093,0.0329547800949824,0.0350191333126486,0.0369414739285418,0.0393172686593507,0.0412201668782122,0.0433127926011657,0.0581044228739799,0.0721638688462787,0.0857577665827036,0.0992076436606231,0.111465237029845,0.1274740162147287,0.1396257672620691,0.1508915154163425,0.1615971412370141,0.1716053892601586,0.1849122163352073,0.1971499528245616,0.2086873071092838,0.2185316411263341,0.2284162536290278,0.2390794635019057,0.2489812368456405,0.2576096031047632,0.2661347235185649,0.2736798566110575,0.2808853071983464,0.2871841854892702,0.2936422093589911,0.2995621210663073,0.3041549355857009,0.3078131183221211,0.3117474984620406,0.3161947818091261,0.320502994323127,0.3237614848942198,0.3223867289871126,0.3218942749513598,0.3210087595365922,0.3187155697303566,0.3185239280444729,0.3168088894345877,0.3146078104932693,0.3150876615359289,0.3154556829673814,0.3160245372363323,0.3171975241284593,0.3183513170422088,0.3197975938018351,0.3211015351467816,0.3208299115984735,0.3209151861417652,0.3218037407122726,0.325598168647496,0.3295040627626786,0.3330291608807776,0.3374324998865544,0.3417220639442861,0.3426941641070645,0.3451206556381848,0.3461933675852405,0.3485741220834315,0.3501601342077169,0.347001223990208,0.3452544704264099,0.3371255214258627,0.0,2.3485243705728784,54.97665655356159,176.55078340943174,265.1197249073415,fqhc6_100Compliance_implementation_low_initial_treat_cost,3 -100000,95740,45234,428.2953833298517,6026,61.656569876749536,4738,48.84060998537706,1871,19.082932943388343,77.32698317968122,79.68703809938646,63.31555014592704,65.06144573230421,77.09088582894627,79.45573304022496,63.22657560526129,64.97759105051536,0.2360973507349513,231.3050591614996,0.0889745406657525,83.85468178884992,158.13864,111.2860673995866,165175.09922707334,116237.79757633863,399.92181,263.1641900612637,417092.166283685,274249.61711034575,379.49962,184.22937665725487,393044.9550866931,189793.2070687441,3115.17524,1432.4505214138585,3212530.1754752453,1454941.6348727257,1114.48508,498.7936647557455,1145241.7275955714,502171.4369185024,1834.69786,780.2307555338716,1873105.0135784417,777011.1229920327,0.38182,100000,0,718812,7507.95905577606,0,0.0,0,0.0,34561,360.3091706705661,0,0.0,34723,359.2542302068101,1572341,0,56425,0,0,0,0,0,66,0.6893670357217464,0,0.0,2,0.0208899101733862,0,0.0,0.06026,0.1578230579854381,0.3104878858280783,0.01871,0.3378058405682715,0.6621941594317285,24.280756530203217,4.278610398613179,0.3262980160405234,0.2363866610384128,0.2171802448290418,0.2201350780920219,11.208202193925413,5.827599519774191,20.01382763090518,12194.875902880964,53.816089247934194,13.51339057236793,17.524779693648522,11.301752704011118,11.476166277906623,0.5637399746728577,0.8017857142857143,0.6752910737386805,0.5811467444120505,0.1255992329817833,0.7120743034055728,0.9263657957244656,0.8374384236453202,0.6752136752136753,0.1385281385281385,0.508125362739408,0.7267525035765379,0.6175438596491228,0.5534591194968553,0.1219211822660098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099133782483,0.004603435338971,0.006739337839758,0.0090417750325097,0.0112789219425375,0.0132885290972964,0.0154586613370314,0.0178020946042504,0.0200318874943788,0.0221287397263078,0.0243719957774338,0.0267612429042158,0.0288533689674667,0.03098356604473,0.0330919518887582,0.0349780418496512,0.0369825854678731,0.0390037447744318,0.0412015383016318,0.0432255039849976,0.0583494284073706,0.0726802883357919,0.0862699868938401,0.0982748289021351,0.1104048070841239,0.1245849635190863,0.1369383512240655,0.1483271929637753,0.1597237811200547,0.1698190171536529,0.1822278279055226,0.195162635529608,0.2055350593663956,0.216421748312197,0.2261047625338529,0.2366262442636398,0.2462409794678165,0.2553555740769941,0.2637318943481965,0.2718249647568509,0.2786315679757258,0.2851536875644269,0.2918321144523332,0.2970462210593276,0.3033351172521163,0.3083593393445252,0.3128297016552432,0.3165148716642252,0.320519635425445,0.3248131815901349,0.3236949846468782,0.3218208848388074,0.3202045387313527,0.3193898207056102,0.3195338397276768,0.3172186445875498,0.3147801832070747,0.3154160713405922,0.3168956325610006,0.3175319118590886,0.3192544491644366,0.3212656277774486,0.3222063698543913,0.3232323232323232,0.3239619377162629,0.3257159236000729,0.3269805148627506,0.3302271586345381,0.3314181614349776,0.332541473650869,0.3342553963359332,0.33882987157127,0.3414099674430253,0.3411222020568663,0.340930319447039,0.3445842643772786,0.3399696048632218,0.3392425463336019,0.3329649074329925,0.3320433436532508,0.0,2.542876262754617,56.40957715450441,177.22404369090626,255.79160750662615,fqhc6_100Compliance_implementation_low_initial_treat_cost,4 -100000,95773,45184,428.65943428732527,5890,60.44501059797647,4656,48.176417153059845,1863,19.076357637329934,77.39144353273707,79.73088185188016,63.36142006586866,65.0874321336049,77.16696912302163,79.50911243631796,63.27805309073246,65.00786189424491,0.2244744097154409,221.7694155621928,0.0833669751361938,79.5702393599953,159.23732,112.00678139505814,166265.3566245184,116950.26927741448,400.71011,263.3930243861204,417947.8663088762,274570.20703759976,380.76403,183.9629255475224,395683.52249590174,190401.5005247296,3077.92829,1398.375764869161,3185404.320633164,1431723.716359686,1155.36305,509.2662034435631,1193676.5163459429,519063.7898401037,1831.40634,764.6021724812518,1877492.8006849529,766933.5842067605,0.38057,100000,0,723806,7557.516210205382,0,0.0,0,0.0,34578,360.59223371931546,0,0.0,34838,361.9391686592255,1571354,0,56420,0,0,0,0,0,66,0.6786881480166644,0,0.0,0,0.0,0,0.0,0.0589,0.1547678482276585,0.3162988115449915,0.01863,0.3266526588007111,0.6733473411992889,24.36323211140178,4.460495298933605,0.3069158075601375,0.2330326460481099,0.2291666666666666,0.2308848797250859,11.316404479143102,5.714482009681675,19.662143557910035,12110.394993704913,52.70528828510493,12.944936118394128,16.29167104721415,11.702086405381674,11.76659471411497,0.5659364261168385,0.7926267281105991,0.7193841847445767,0.5613870665417057,0.1376744186046511,0.7308943089430894,0.9240506329113924,0.8835978835978836,0.6751054852320675,0.1818181818181818,0.506713368359603,0.717391304347826,0.6603235014272122,0.5289156626506024,0.1263157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780657702899,0.0043069813634382,0.0067977516690002,0.009028955627101,0.0112149342660471,0.013201286540184,0.0151823925005094,0.0174566898606321,0.0196446996087405,0.0217013178358025,0.0239344262295081,0.0261203217334208,0.0281542524223959,0.0304025194775789,0.0322657127836135,0.0341504230066007,0.036109041231992,0.0380837801678092,0.0402386669577239,0.0422001145893015,0.0564277065675754,0.0710347064547518,0.0847302939386945,0.0981470575863374,0.1106155500727525,0.1259636025251937,0.13800307545469,0.1489425081918379,0.1598231543875012,0.1699110301211276,0.1824434876210979,0.1936621241617997,0.2054693274205469,0.2148124679070479,0.2239578752968076,0.2347851104324348,0.2442618747700848,0.2529683340260382,0.2609267319550236,0.268470426724631,0.275422112817668,0.2825225814744271,0.2886973383940501,0.2942338782108856,0.299417828987265,0.3051085191200354,0.3104546988042134,0.3151510527921879,0.3190272927176303,0.3230132799325463,0.3215039170104409,0.3205052515960733,0.3191967736042606,0.317847882454624,0.3172859067955989,0.3154548642344224,0.3139527549121645,0.3150297521741973,0.3154822680552719,0.3166963332146671,0.3174395331001328,0.317624770587887,0.3188430063416982,0.3204087565126003,0.3236051915528907,0.3242495432002088,0.3238217286060088,0.3282346646523778,0.3311871085778622,0.3333995628849592,0.3341093764265498,0.3377953175830622,0.3399052132701421,0.3389223382364149,0.3405071582296248,0.343269569299378,0.3449310137972405,0.3530115676106901,0.3626047014320454,0.3656884875846501,0.0,1.7304040876975268,54.52400612006837,172.38115089590656,259.03952900260566,fqhc6_100Compliance_implementation_low_initial_treat_cost,5 -100000,95727,44996,426.755251914298,5832,59.74281028341011,4562,47.0818055512029,1775,18.14535084145539,77.37264048070351,79.7321268775193,63.34029949113111,65.08182619856868,77.15227318725228,79.5149999231617,63.25834538555421,65.00406403183975,0.2203672934512326,217.1269543576102,0.081954105576905,77.76216672893099,159.72198,112.4221298513325,166851.54658560283,117440.3562749616,400.74921,263.2782057908009,418064.2556436533,274456.9095352417,374.3811,181.4601689311017,387423.85116006975,186740.98585973372,3020.48619,1367.6907125258333,3120551.307363649,1393979.4128363277,1096.80007,476.5361394239952,1131725.2394831134,483774.3681761629,1740.76666,724.49810628599,1782298.327535596,725456.8724450014,0.37979,100000,0,726009,7584.161208436491,0,0.0,0,0.0,34603,360.86997398852986,0,0.0,34263,354.3096514045149,1567247,0,56203,0,0,0,0,0,79,0.8252635097725824,0,0.0,0,0.0,0,0.0,0.05832,0.1535585455119934,0.304355281207133,0.01775,0.3380189604445897,0.6619810395554102,24.52289463798839,4.465470326383644,0.3145550197281894,0.2314774221832529,0.2281893906181499,0.2257781674704077,11.405899458008683,5.840602201617839,18.74195853126209,12039.243226351631,51.47113127410088,12.489726842338232,16.30177961628684,11.576266350252144,11.103358465223664,0.5611573871109162,0.7878787878787878,0.7073170731707317,0.5802113352545629,0.1058252427184466,0.724429416737109,0.912568306010929,0.8847184986595175,0.6962025316455697,0.1352657004830917,0.5039952648712637,0.7217391304347827,0.6450094161958568,0.5460199004975125,0.0984204131227217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468354430379,0.0044490387441346,0.0063909431206062,0.0087646246343841,0.0109304619264049,0.0131420892969847,0.0153000897007257,0.0174539664393908,0.0193911763503291,0.021660575909263,0.0237968298234461,0.0258932238193018,0.0278968853790706,0.029877031452759,0.0317974537275859,0.0341901543104606,0.0361960967023865,0.0382744349593917,0.0402752226830054,0.042370145087542,0.0566025915445898,0.0707215502448415,0.0843101893597835,0.0965219310692775,0.108824676625307,0.1234841997314641,0.1349972421400992,0.1461761137481109,0.1574495354053188,0.1670581169632036,0.1802899112604462,0.1925844179731031,0.2038761038848044,0.2142286870454421,0.2239140958500198,0.2342332362161982,0.2430969441282171,0.2515534942363112,0.260019306115496,0.2673224194066125,0.2750303801863318,0.2819153914549113,0.2886970321419266,0.2938650159552772,0.2982070139184343,0.3040653012909828,0.3090510766149223,0.3131152544959683,0.3174001371617862,0.3212261041529334,0.3207407606649093,0.3199752628324057,0.3191585168507704,0.3178412093385888,0.3161638059036645,0.3140474368783473,0.3119210950589574,0.3120448730564849,0.3130377008126203,0.3137415304725152,0.3146421511953157,0.3165870629164455,0.3174967644971402,0.3176234979973297,0.3188846337960747,0.3196279599979273,0.3211790331249469,0.3244843272885898,0.3255676483883306,0.3286672156216915,0.3332432310672613,0.3339829347940588,0.3362765357880894,0.3363306634426477,0.3372461337805105,0.3393697083725305,0.3441479684657368,0.344917637605464,0.3468886462882096,0.3509908536585366,0.0,2.281614958426182,51.72470245422902,170.7710255965658,253.51627629265167,fqhc6_100Compliance_implementation_low_initial_treat_cost,6 -100000,95743,44870,425.55591531495776,6013,61.65463793697712,4695,48.46307301839299,1862,19.103224256603617,77.33281654085012,79.69914968208266,63.319784280511655,65.07093127553648,77.10317776658154,79.46861222159778,63.23497510479138,64.98768638370792,0.2296387742685794,230.53746048488225,0.0848091757202738,83.24489182855643,158.14744,111.17087217101152,165178.885140428,116113.6285503395,396.58509,260.4820200209556,413659.160460817,271505.9139790226,378.70465,184.1609068499953,391177.8824561587,189006.6911337708,3083.80852,1406.760810191916,3186204.3700322737,1434679.7785700134,1126.7395,498.6519121845904,1161315.1770886646,505445.32814216,1821.65154,762.3333901284543,1870721.243328494,770883.5668098886,0.37868,100000,0,718852,7508.131142746729,0,0.0,0,0.0,34263,357.26893872136867,0,0.0,34480,355.9111371066292,1577876,0,56680,0,0,0,0,0,88,0.8982379912891805,0,0.0,0,0.0,0,0.0,0.06013,0.1587884229428541,0.309662398137369,0.01862,0.3377777777777778,0.6622222222222223,24.40590891356061,4.312592617264771,0.3194888178913738,0.2340788072417465,0.2242811501597444,0.2221512247071352,11.360966391072004,5.999001483000233,19.74349674114456,12110.06437969466,53.24264685630203,13.258839635539884,16.844186329049265,11.75045155233111,11.389169339381777,0.5614483493077742,0.7734303912647862,0.6886666666666666,0.5982905982905983,0.1179290508149568,0.7235772357723578,0.8673218673218673,0.8849315068493151,0.7418032786885246,0.1542056074766355,0.5038961038961038,0.7182080924855492,0.6255506607929515,0.5550061804697157,0.1085645355850422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.0043309362733662,0.0067722611432632,0.0091887661235401,0.0116693118463354,0.0141480606258148,0.0163676969987456,0.0184788157223073,0.0204085806016236,0.0226190598089308,0.0245340277635383,0.0264403577406072,0.0284915224611082,0.0304734245785316,0.0323449300482852,0.0342019038956475,0.0363907500802584,0.0382611763729193,0.0401767611125552,0.0422522006354497,0.0573749099602259,0.0712880816873116,0.0841189115503591,0.096226831652982,0.1078200925467213,0.1237681343315146,0.1363409797121737,0.1475662845525859,0.1584917752616962,0.168607768697853,0.1818123088849649,0.1943071047592258,0.2051413099031111,0.2154438212688729,0.2247459193101324,0.2353918214131481,0.2443281366826993,0.253283661042893,0.2620288078455409,0.2691660273219664,0.2761426372379949,0.2828529955751176,0.2904387377996778,0.2960569695371225,0.3007194419463821,0.3053067870623936,0.3110582341891045,0.3153078626517677,0.3197709073003861,0.3233355785358638,0.3223542407587024,0.3213386011040293,0.3204504771167209,0.3188441412009598,0.3184590212702662,0.3167948285898103,0.3139225679825255,0.3139580667388522,0.3143417797116287,0.3153927037479282,0.3153569690389727,0.3158945371175587,0.3164403339540917,0.3178266886914594,0.3185912989165685,0.3199708264957933,0.3194416749750747,0.3207191350264018,0.3241582698451708,0.3279326503057739,0.3290275629946329,0.3319352269710645,0.3342963009483137,0.3393548387096774,0.3436973215958044,0.347512702351412,0.3467619337184555,0.3549687562991332,0.3545904343045629,0.346743295019157,0.0,2.186889477935673,53.747759067198494,181.21800371746576,255.5458386851384,fqhc6_100Compliance_implementation_low_initial_treat_cost,7 -100000,95785,45187,427.7078874562823,5891,60.312157435924206,4695,48.48358302448192,1877,19.26188860468758,77.34910350822409,79.6786529846833,63.34642956891118,65.0671309391283,77.11162235103787,79.44153937523659,63.25745595782613,64.98079396053308,0.2374811571862238,237.113609446709,0.088973611085052,86.33697859522727,159.97916,112.52735908752888,167019.0113274521,117479.1032912553,401.42435,263.4854001132567,418587.7955838597,274578.8694610396,383.84013,186.31786187434244,397183.97452628287,191819.49122391504,3084.64745,1417.135662497286,3186522.900245341,1445632.5859970644,1091.12621,488.07521817817735,1125468.3092342224,495880.1776668337,1837.6423,778.7271259331069,1887044.1509630943,785722.7858037914,0.38047,100000,0,727178,7591.773242156914,0,0.0,0,0.0,34595,360.6410189486872,0,0.0,35071,362.6559482173618,1566285,0,56296,0,0,0,0,0,74,0.7725635537923474,0,0.0,0,0.0,0,0.0,0.05891,0.1548348095776276,0.3186216262094721,0.01877,0.3417190775681342,0.6582809224318659,24.45231646542308,4.431474338170902,0.3288604898828541,0.227689030883919,0.222790202342918,0.2206602768903088,11.28127996506746,5.865073896395336,20.072935241142723,12101.233617443411,53.414240246858725,12.81533321256091,17.443766789847135,11.659147473300251,11.495992771150435,0.5584664536741214,0.7839101964452759,0.6845854922279793,0.5755258126195029,0.1206563706563706,0.7220496894409938,0.9256410256410256,0.837772397094431,0.728744939271255,0.180672268907563,0.4966245964191371,0.7025036818851251,0.6286472148541115,0.5281602002503129,0.1027568922305764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0046929322210847,0.0070609002647837,0.0092838061573777,0.0114593077642656,0.0138543914654505,0.0161030595813204,0.0182476909731081,0.0203333026801132,0.0223752327556219,0.024587140925296,0.026628494027829,0.0287646315270227,0.030774931296767,0.0330130320026393,0.0354475877668639,0.0374367517564645,0.0394852811563546,0.0412402198647146,0.0433288557058511,0.0576258805113488,0.0719261180604945,0.0854285055253832,0.0981313322402993,0.1101614535030773,0.1245878424078457,0.1366546533813864,0.1474013336311138,0.1578295765027322,0.1680684874264713,0.1810226991421898,0.1926183859072378,0.2040814107721411,0.2147941610628178,0.2240595878579837,0.2344667183519769,0.2442244592754626,0.2528504284075831,0.2606475913866261,0.2682449372087965,0.2756662348477838,0.2823026970104721,0.2891992661419187,0.2950375687562165,0.3003169668338535,0.3051647823245835,0.3095574888902798,0.3138962080421583,0.3192021566137017,0.3226147382883716,0.3214107626581852,0.320615418520406,0.319949281487743,0.3179657588672975,0.3171390815008389,0.3146887382770069,0.3123823682920271,0.3128997343304142,0.3128753753753753,0.3141500508737794,0.3143835872861368,0.315131617981528,0.3167441665619371,0.3169274155643591,0.3182825751734772,0.3194135939582407,0.319035772497212,0.323016123932975,0.3269603866097569,0.3312836893591535,0.3349030724213606,0.3360874200426439,0.3395686199656423,0.3402330573443728,0.344106463878327,0.3502348548717331,0.3549138332557056,0.353217568947906,0.3575186928828579,0.3547244094488189,0.0,2.077733779615877,56.6444783926834,170.7465326760313,260.35477652408423,fqhc6_100Compliance_implementation_low_initial_treat_cost,8 -100000,95665,45187,427.9726127632885,6003,61.41221972508232,4712,48.659384309831175,1859,19.097893691527727,77.31532774038504,79.70800963311507,63.31028192710126,65.07664815695136,77.08608916944087,79.4790707176216,63.22388452598688,64.99273121307448,0.229238570944176,228.93891549347245,0.0863974011143753,83.91694387688631,157.89444,111.11375076394532,165049.32838551197,116148.80130031392,398.87368,262.3414651248561,416369.66497674177,273650.57766670786,381.88913,185.8294234453746,395349.9189881357,191287.10177130357,3071.22167,1404.9758594190052,3175317.3156326767,1433566.6120514346,1092.82035,485.0103746787833,1130032.279308002,494679.77283100673,1820.50304,767.4916510537561,1871439.8578372444,775402.1064966235,0.37984,100000,0,717702,7502.242199341452,0,0.0,0,0.0,34385,358.8146134950086,0,0.0,34850,360.41394449380647,1574227,0,56465,0,0,0,0,0,80,0.8362515026394187,0,0.0,0,0.0,0,0.0,0.06003,0.1580402274641954,0.3096784940862901,0.01859,0.3355948248658883,0.6644051751341117,24.547568490663654,4.364573151831576,0.3249151103565365,0.2376910016977928,0.2171052631578947,0.2202886247877759,11.248703825109548,5.861053254799381,19.76563273543016,12138.786027076709,53.33035788341659,13.445692480104436,17.195267828367307,11.334601279279989,11.35479629566484,0.5519949066213922,0.7696428571428572,0.6923579359895493,0.5610948191593352,0.1011560693641618,0.7086614173228346,0.9014423076923076,0.848404255319149,0.6908396946564885,0.1157407407407407,0.4941894247530505,0.6917613636363636,0.6415584415584416,0.5164257555847569,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.005018349925992,0.0073981611155087,0.0096214414890374,0.011871337890625,0.0141991341991341,0.0162274081024846,0.0185281650579643,0.0206677915835762,0.0229074077866754,0.0251881935470637,0.0270980996404725,0.0291960290108533,0.0310777252259214,0.0330928271348795,0.0351857023177883,0.0373118090165887,0.0394092248930958,0.0413481042284287,0.043420257228024,0.0579446673353393,0.0718182294120726,0.085615324061926,0.0982742291907818,0.1102210965120574,0.1251018874315898,0.1368728431112291,0.1485986982967073,0.1590598144426867,0.168967219801215,0.1818211213865356,0.1943108974358974,0.2054382966680092,0.2152987524622455,0.2253364463337812,0.2349202475763693,0.2440040661758956,0.2529206527855937,0.2610132158590308,0.2687030775402602,0.2753755806006973,0.2823595518771291,0.2890451999478963,0.2952407238515816,0.3006380263717567,0.3054134355775276,0.3106453309293066,0.3153662136712984,0.3198016854150755,0.3236897329972151,0.3220364086820703,0.3204212265124923,0.3192756663897376,0.3181180689096771,0.3171938373768738,0.3153978073130397,0.3137202164351486,0.3131734957911631,0.313854548554864,0.3159461097052429,0.3175516609992153,0.3185341512001736,0.3187793034159411,0.3189499296827912,0.3209998079139454,0.3215614834092388,0.3227427135965288,0.3247150929696625,0.3282109121669251,0.329344661162299,0.3332115454877603,0.3385073357431427,0.3422865449029893,0.3463751438434982,0.34967815221507,0.3501903855306996,0.3518856447688564,0.3575563984827311,0.3585941790225151,0.3628787878787878,0.0,2.2866048374047243,55.510938055213245,174.84591472582215,257.4358204280548,fqhc6_100Compliance_implementation_low_initial_treat_cost,9 -100000,95629,45037,425.885453157515,5866,60.211860418910575,4646,48.01890639868659,1850,18.92731284443004,77.3146043072854,79.7335418121324,63.296484254502126,65.08282167535233,77.0817093015994,79.50381135684611,63.20848971000333,64.99901639502579,0.2328950056860037,229.73045528628688,0.0879945444987981,83.8052803265441,160.00248,112.43940346049864,167315.85606876574,117578.77156563246,399.3022,262.7414384198434,416983.87518430606,274181.2090682151,377.2713,183.75555125040745,391468.6758200964,189778.17018647984,3079.49953,1415.18078490062,3183570.349998432,1443463.545549052,1125.45038,498.54319072441785,1164587.6564640433,509064.16824775335,1820.90784,773.9133586406211,1865080.5090506016,775326.2449872853,0.37927,100000,0,727284,7605.266184943897,0,0.0,0,0.0,34417,359.30523167658345,0,0.0,34545,358.1863242321889,1563318,0,56112,0,0,0,0,0,57,0.5960534984157525,0,0.0,1,0.0104570789195746,0,0.0,0.05866,0.1546655416985261,0.3153767473576542,0.0185,0.3380487804878049,0.6619512195121952,24.454819516986344,4.420886093282186,0.2996125699526474,0.2425742574257425,0.2257856220404649,0.232027550581145,11.202471822843224,5.702416052007533,19.80690347214672,12096.071465933786,52.65611238358037,13.535923663579885,15.606324611374273,11.631630259862678,11.882233848763546,0.5482135170038743,0.7852706299911268,0.6910919540229885,0.5586272640610105,0.1057513914656771,0.6996830427892234,0.8971291866028708,0.8260869565217391,0.7016806722689075,0.1554621848739495,0.491725768321513,0.7193229901269393,0.642578125,0.5166461159062885,0.0916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025939023031015,0.0047662025534676,0.0069639014090226,0.0090738200477569,0.01129150390625,0.0136585862701161,0.0157689130057832,0.0181325978138727,0.0202820877356271,0.0224472867661365,0.0245948717948717,0.0267180277349768,0.0286719545693034,0.0309727674569565,0.0332896353107548,0.0352999565729884,0.0373735908488063,0.0396698504983388,0.0420975965040058,0.0442010846891948,0.0584724414387105,0.0726392759119193,0.085795896078802,0.0980829762819635,0.1098502042669087,0.1254474213703272,0.1365635490587685,0.1481998593140494,0.1585445441804234,0.1680723732983786,0.1804998057749579,0.19289345603937,0.2044481251838856,0.2144406705379642,0.2243705630759733,0.2342305344358732,0.2433888454230468,0.2520365508771534,0.2606838092424466,0.2686395962376692,0.2763915102532334,0.2826402377664927,0.2885366604323019,0.2938934043012299,0.2993358345778846,0.3044094274766838,0.3093886025916846,0.3136736380395397,0.3173190140389467,0.3209150154349489,0.320176619460449,0.3186131587633403,0.3176303143891887,0.31596910884216,0.3146764688374308,0.3122018559705499,0.3104754958697341,0.3113934048575001,0.3131041338177829,0.3146724359891288,0.3159234238449014,0.3161076865509975,0.3180841969182009,0.3187011425135297,0.3201644320164432,0.3218497827436375,0.3223633945499307,0.3257785952551673,0.3290133779264214,0.3319659198485327,0.3361629114552761,0.3400179428993614,0.3434426229508197,0.3455469579729934,0.3487304413004778,0.3549272250059652,0.3594669972110319,0.367047308319739,0.3660542911982451,0.3670935195964299,0.0,2.1229565945667326,55.41064544705501,170.4002550387916,255.29218369452863,fqhc6_100Compliance_implementation_low_initial_treat_cost,10 -100000,95639,45500,432.072690011397,6031,61.9098903167118,4730,48.80854044898002,1843,18.82077395204885,77.29129418892526,79.69191994968165,63.29829466637945,65.07015324463869,77.05611480324454,79.46031945890824,63.21025649144714,64.98639607872663,0.2351793856807233,231.6004907734026,0.0880381749323078,83.75716591206128,157.47974,110.85768436923864,164660.58825374587,115912.63435339,400.87767,263.31615616703283,418490.0093058272,274655.8895084985,388.76194,188.9995957420436,402479.3755685442,194472.2637918044,3070.36847,1411.9004916659762,3169225.4833279317,1435133.7651648151,1108.33213,494.0891820793242,1140135.6664122378,497884.1289425062,1799.23166,764.1352339654917,1839203.2329907257,763487.9095662524,0.38293,100000,0,715817,7484.572193352084,0,0.0,0,0.0,34546,360.5223810370247,0,0.0,35444,366.76460439778754,1572918,0,56477,0,0,0,0,0,83,0.8364788423132823,0,0.0,0,0.0,0,0.0,0.06031,0.1574961481210665,0.3055877963853424,0.01843,0.3334914611005692,0.6665085388994307,24.605515996141627,4.357558956416156,0.3150105708245243,0.246723044397463,0.2255813953488372,0.2126849894291754,11.146605125873954,5.765550577530137,19.8370810504698,12238.332478288983,53.83272574249515,14.077209971712374,16.739299272122985,11.931263974858055,11.08495252380172,0.5670190274841438,0.7883461868037703,0.6959731543624161,0.5660731021555764,0.1202783300198807,0.7323943661971831,0.9302884615384616,0.8297872340425532,0.7376425855513308,0.1928251121076233,0.5057937427578215,0.7097203728362184,0.6508078994614004,0.5099502487562189,0.0996168582375478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020562584200237,0.004369867180371,0.0067598428793276,0.0090844426379432,0.0112932271159539,0.0133523450628914,0.0157534106898872,0.0180325525353809,0.0203766563062326,0.0225052730735363,0.024643120846665,0.0266933703076054,0.0287536649349313,0.0306555654019743,0.0326736659543497,0.0347727155194704,0.0367802512125357,0.0387386826148351,0.0410471443881426,0.0429121010873984,0.0574041174626397,0.0715228458299289,0.0854088789953379,0.098866399317945,0.1113796597289652,0.1273537474729299,0.1399634804025648,0.1509070186090606,0.1610395997263085,0.1707982178324118,0.1833610074828024,0.1952093733418519,0.206631542279892,0.216442016052208,0.22679173739556,0.2370350649494714,0.2462903369983016,0.2552858526040846,0.2641779352157771,0.272113676731794,0.2799249921866861,0.2860569048621835,0.2927201885384715,0.2977702613555947,0.3029868171425792,0.3087621868443786,0.3138539800278157,0.3187569282519781,0.3228997834627802,0.3271023102310231,0.325811362442238,0.3243820441456088,0.3235356371795053,0.3216529164857432,0.3206496657883376,0.3190133165404641,0.317116888472947,0.3181982812551447,0.3185463143826462,0.3196690485144791,0.3202803510024615,0.3203394535432446,0.3214893572314093,0.3218151260504202,0.3227148146367264,0.322774753184506,0.3232162630248999,0.3249678451548138,0.3290965907095958,0.3339824345268847,0.3362751342007096,0.3397513885215551,0.3432403501038977,0.342972993650065,0.3452876608629825,0.3473254977212761,0.347008547008547,0.3466804979253112,0.3455307262569832,0.3505945531261987,0.0,2.5231305504803787,55.70291356385565,178.80837585665424,257.04467688561726,fqhc6_100Compliance_implementation_low_initial_treat_cost,11 -100000,95638,45410,430.8747568957945,5902,60.66626236433217,4655,48.16077291453188,1856,19.082373115288902,77.27514686010801,79.68700424415542,63.27600815666828,65.05680791070613,77.04027941646994,79.45205181579051,63.1889778966318,64.97173196985557,0.2348674436380662,234.95242836490604,0.0870302600364851,85.07594085055814,157.91204,111.15147299211937,165114.09690708714,116220.824571885,398.78555,262.23575221818123,416451.4209832911,273675.0030512571,381.15471,184.94040328555985,395534.2018862795,190994.9864969873,3066.91511,1399.551487631474,3175657.9915933,1432336.1925550967,1118.45132,495.77874669134405,1156268.052447772,505285.7435034662,1813.67974,764.6565645353618,1866472.6363997571,773816.1443239909,0.38176,100000,0,717782,7505.186223049415,0,0.0,0,0.0,34403,359.1773144565967,0,0.0,34795,360.7770969698237,1570216,0,56313,0,0,0,0,0,65,0.6796461657500157,0,0.0,1,0.0104560948576925,0,0.0,0.05902,0.1545997485331098,0.3144696712978651,0.01856,0.3350548741123305,0.6649451258876695,24.648256795659368,4.339294602662947,0.3303974221267454,0.235016111707841,0.2150375939849624,0.2195488721804511,11.011519682532516,5.67467898191343,19.81932350622387,12199.193636817829,53.020675134161216,13.225298675396882,17.305434359152503,11.164008413168816,11.32593368644301,0.5602577873254565,0.7815356489945156,0.6723016905071522,0.5944055944055944,0.12133072407045,0.7210231814548361,0.9137055837563453,0.845360824742268,0.7552742616033755,0.1508620689655172,0.5011750881316098,0.7071428571428572,0.6139130434782609,0.5445026178010471,0.1126582278481012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023999513933895,0.0047940970779319,0.0068997006747501,0.0094362620619603,0.0114626877816088,0.0134939709956004,0.0156320104417343,0.0182846525303468,0.0205187449521024,0.0227924311926605,0.025037695014001,0.0272236033777814,0.0289623951849374,0.0310258101756411,0.0330232029822079,0.0354519686342664,0.0372520160036485,0.0393498805691141,0.0412079335678161,0.0431418351704504,0.0577027591973244,0.0714719812230185,0.0850525210084033,0.0976002865329512,0.1098659681661192,0.1259279655183369,0.1378068218042716,0.1490060224910728,0.1589615170583451,0.1689844169801182,0.1818711745846692,0.1946366219176299,0.2063196215638829,0.2160158777152757,0.2259410070513457,0.2355371900826446,0.245173637147046,0.2540846723235241,0.2621502879646702,0.2699561252383249,0.276725328012436,0.2839436685779951,0.2899260858732663,0.2957985010089363,0.3011875212926461,0.3057753311033487,0.3118071926568691,0.3161931456236463,0.3212607420100215,0.3254632752668545,0.3252530705898231,0.3239312350938142,0.3232809083856407,0.3219824094433515,0.3211519305392426,0.3193458903584729,0.3176809575074409,0.3175205254515599,0.3175377270014494,0.3186403821474404,0.3205973841022373,0.3210215489146537,0.3221854582007036,0.3226527737405809,0.3245004448505542,0.3266066034788042,0.3275763956068969,0.3302406038685327,0.3322560247312583,0.3360057151928877,0.3373012267151294,0.3393730074388948,0.3432639237330657,0.3490694507489786,0.3533277011170562,0.3589011773100249,0.3645561858040779,0.3686027619821283,0.3680154142581888,0.3682600382409178,0.0,1.903600510223567,55.34959083350939,173.44639896100287,257.533912352682,fqhc6_100Compliance_implementation_low_initial_treat_cost,12 -100000,95680,45075,427.7069397993311,6077,62.10284280936455,4823,49.75961538461538,1965,20.077341137123742,77.28391542799022,79.68108377850248,63.28504443165552,65.05955768509956,77.02890280905044,79.42965126517839,63.188840300811705,64.9676810860203,0.2550126189397872,251.43251332409025,0.0962041308438159,91.8765990792565,158.32674,111.48349905948778,165475.27173913046,116517.03497020045,399.44124,262.12639613198564,416846.25836120406,273331.58040550334,382.83689,186.6307488755376,396577.1634615385,192248.86940337933,3159.38863,1459.6357489714449,3262984.24958194,1486486.6732561104,1143.27254,506.6790613594895,1182804.7554347827,517468.76187237626,1923.6591,823.3269278371039,1968812.37458194,825543.4834752458,0.3809,100000,0,719667,7521.603260869565,0,0.0,0,0.0,34525,360.15886287625415,0,0.0,35030,362.5209030100334,1570858,0,56377,0,0,0,0,0,61,0.6375418060200668,0,0.0,0,0.0,0,0.0,0.06077,0.1595431871882383,0.323350337337502,0.01965,0.3440287994991391,0.6559712005008609,24.33650869035502,4.368828619556573,0.3238648144308522,0.22911051212938,0.2241343562098279,0.2228903172299398,11.243137653633266,5.801685272694498,21.228153574769483,12173.518674800776,54.93943297557529,13.263646450253528,17.78071265724063,11.972321504826407,11.922752363254723,0.5525606469002695,0.7782805429864253,0.6971830985915493,0.5541165587419057,0.1088372093023255,0.7103235747303543,0.9285714285714286,0.8523002421307506,0.6808510638297872,0.1352459016393442,0.4944680851063829,0.6909871244635193,0.6414273281114012,0.5189125295508275,0.1010830324909747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.0046048360921778,0.007025594688163,0.0093494984807064,0.0113447900450739,0.0132731643712818,0.0153908919373756,0.0172713159292396,0.0197085144464331,0.0222090188284947,0.0242423620657816,0.0262319674489334,0.0281642313233175,0.0304229532525352,0.0327329032258064,0.0347067096880946,0.0365465717512719,0.0386272331855788,0.0405592368746814,0.0424722497264057,0.057726660189915,0.0713089180643675,0.0850326927719062,0.0979996001304837,0.1099617909691583,0.1257013402214647,0.1379083301474024,0.1495840744725041,0.1603716097029046,0.1702020310453657,0.1830579002403975,0.1942488135740134,0.2056719051197438,0.2164012355144691,0.2259088604246125,0.2365081655990141,0.2457370321916965,0.2544099910954812,0.2622622850192673,0.2697982880877527,0.2769402050378067,0.2849971263356674,0.2918813056379822,0.2978002570972043,0.3028549852622347,0.3083516537805992,0.3130972385944671,0.3171682678830814,0.321311858076564,0.324393561251304,0.3233181015541806,0.3220142933862106,0.3204277441988249,0.3187467483669576,0.3174971721140679,0.316644923643619,0.3141674333026679,0.3151859639900118,0.3161742048139144,0.3166371396360122,0.3172566871073323,0.3176659975753721,0.3200582499683424,0.319878433138226,0.3206617985978021,0.3219485323050287,0.3241706431979884,0.3280055594162613,0.3300165254386273,0.3339547059056836,0.3377818264632202,0.3411608799363901,0.342732103782432,0.3463875759621877,0.3495172669884887,0.3508751321508281,0.3494599117602312,0.3497884344146685,0.3495550611790878,0.3460949464012251,0.0,2.5388166672148875,56.58019979085406,183.1547047097328,262.7529039165584,fqhc6_100Compliance_implementation_low_initial_treat_cost,13 -100000,95667,45078,428.42359434287687,6028,61.9649408887077,4720,48.8674255490399,1849,19.00341810655712,77.35161970545354,79.75576445296505,63.31721993396855,65.09351243773843,77.12055870603187,79.52601903291767,63.233077392286646,65.01228444137708,0.2310609994216719,229.7454200473794,0.0841425416819063,81.22799636134914,159.15064,111.85050729874668,166358.97435897437,116916.49920949408,398.72594,261.7512327138726,416306.8769795227,273128.2393237717,380.97771,184.43019530444653,395522.3431277243,190678.24381261136,3089.75851,1400.6704744235144,3197965.296288166,1432415.774220487,1105.46629,486.7154675271647,1138091.557172275,491352.7390430519,1810.18794,750.373097437651,1860546.478932129,756437.6612450427,0.38053,100000,0,723412,7561.771561771561,0,0.0,0,0.0,34447,359.57017571367345,0,0.0,34848,361.4935139598817,1572240,0,56370,0,0,0,0,0,49,0.5121933373054449,0,0.0,1,0.0104529252511315,0,0.0,0.06028,0.1584106377946548,0.3067352355673524,0.01849,0.3283841415258253,0.6716158584741747,24.431838422397693,4.379515215899973,0.3186440677966101,0.2421610169491525,0.2235169491525423,0.2156779661016949,11.25996559256542,5.805206791936814,19.635078555532328,12125.56668942516,53.43888558498029,13.665116505366877,16.976666409500655,11.580955359136134,11.216147310976604,0.5697033898305085,0.7891513560804899,0.6928191489361702,0.5933649289099526,0.1168958742632613,0.7451456310679612,0.9387254901960784,0.8567774936061381,0.7457627118644068,0.1343283582089552,0.5074626865671642,0.7061224489795919,0.6352201257861635,0.5494505494505495,0.1126070991432068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884276755048,0.0043705318663489,0.0065967077354009,0.0088799479801674,0.010995941368542,0.0133326543084131,0.0153265691123234,0.0172059919739408,0.0194069529652351,0.0214585680630953,0.0233703346533434,0.0257927944591733,0.0278160824912013,0.0296707148601002,0.0317516061726609,0.0339247840256582,0.0359856140459977,0.0380786280066855,0.0399508936931688,0.0419994578024315,0.0565801159814011,0.0699619931105969,0.0824656786598933,0.0951504119361525,0.1068605620574299,0.1229626180093984,0.1355090081003896,0.1476133130135453,0.1586396508194616,0.1694533036951129,0.1825377141809633,0.1955975387815235,0.2071664145069824,0.2167365298952598,0.226531016714012,0.236255819108845,0.2464925606541262,0.2558723227048138,0.2640843471944797,0.2715803452855245,0.2781594042002035,0.2850866943964107,0.2910021634530129,0.2961637440900114,0.3011644832605531,0.3060405822781695,0.3109804068482373,0.3150938844947757,0.3201627486437613,0.3240458015267176,0.3232210543294174,0.3226293606447095,0.3214145106861642,0.3198846431146359,0.3180597789809389,0.3155175049686592,0.3140392726813162,0.3139858993277586,0.3149368385114373,0.3151190794755151,0.3157086112568388,0.3163794975033059,0.3169960639812411,0.3175350165045945,0.318752395553852,0.3204918670713674,0.3227290802704085,0.3270816998588678,0.3297076105204253,0.3331619740588421,0.3344675831405109,0.3353488616646511,0.3393136213039945,0.3377498485766202,0.3380703066566941,0.3410603899191631,0.3432307692307692,0.3487386478304742,0.3505965292841648,0.3468077068379297,0.0,1.7796248374763468,54.77866529948353,177.4490600744237,261.0135166985102,fqhc6_100Compliance_implementation_low_initial_treat_cost,14 -100000,95782,45126,427.07398049737947,5961,61.02399198179199,4669,48.0674865841181,1776,18.082729531644777,77.3507064425629,79.67823561645558,63.34838135415546,65.06967784331579,77.13168875974448,79.46486989294925,63.26599424298356,64.9927052808723,0.2190176828184178,213.3657235063282,0.0823871111718972,76.97256244348694,158.69348,111.60361866835952,165681.9444154434,116518.36322937456,397.66653,262.0107843527898,414535.6329999374,272907.03427476075,381.79733,185.64116670524535,394592.5330437869,190779.20349364748,3069.2755,1405.1487363765311,3162421.728508488,1425494.5219850629,1108.64117,489.867096453181,1142602.90033618,496707.9015242215,1738.2097,729.6961347805706,1771873.3164895284,725486.294467578,0.38047,100000,0,721334,7530.997473429245,0,0.0,0,0.0,34270,357.09214674991125,0,0.0,34885,360.15117663026456,1575867,0,56515,0,0,0,0,0,80,0.8352300014616525,0,0.0,0,0.0,0,0.0,0.05961,0.1566746392619654,0.2979365878208354,0.01776,0.3298127700432069,0.6701872299567931,24.39187713052253,4.300475420307718,0.3242664382094667,0.2383808095952024,0.2225315913471835,0.2148211608481473,11.298968717000518,5.965006151141832,18.84390395604868,12149.515381532272,52.97405302680077,13.386140287283176,17.079424410653488,11.50326755325092,11.005220775613193,0.5733561790533305,0.7852650494159928,0.7093791281373845,0.5967276227141483,0.1086739780658025,0.7517956903431764,0.9097222222222222,0.8938992042440318,0.7347826086956522,0.2009345794392523,0.507903981264637,0.7063142437591777,0.6481970096745823,0.5574783683559951,0.0836501901140684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0046025952960259,0.0070727673089997,0.0092637737688932,0.0113775012201073,0.0133771773544952,0.0155007949125596,0.0177771427988284,0.0200190073270179,0.0218993041342611,0.0242023075189048,0.026288247244967,0.0281999897230358,0.0304914455127545,0.0327400593961392,0.0345258634048575,0.0368067052980132,0.0389603657588355,0.0410958904109589,0.0431962519521082,0.0573822666986674,0.0711036754326344,0.0843379809204319,0.0968345384227341,0.1088193756455386,0.12448334548991,0.1364200345716194,0.1477831463783231,0.1584813802528185,0.1683154521387766,0.1807652978849362,0.193735611685743,0.2058612596166384,0.2159463357077306,0.2258504298876355,0.2361797926830617,0.2459602826130563,0.254277465089369,0.2616983420029692,0.269102723975792,0.2759755632802485,0.2838191330343796,0.2905152127898589,0.2958373738462091,0.3004598565829865,0.3051239750818703,0.3111574843490322,0.3160449895151553,0.3208879919273461,0.3245129934275516,0.3235337588176016,0.3214339695233384,0.3202104907699235,0.3194233796998454,0.3185158790254331,0.3164702280728608,0.3149256093700538,0.3155075821052459,0.316097944397929,0.3174110171004248,0.3180777602642047,0.3189730200174064,0.3195761644985312,0.3213781037615234,0.3233851185609158,0.3246163482618227,0.3260540231527797,0.3299011402040365,0.3325820538103958,0.3384627587848021,0.3413509812870835,0.3439871726349546,0.3469013103753877,0.3513969910961007,0.3519268821256949,0.3519180366928758,0.3533962556088503,0.3544984488107549,0.3563186039966226,0.3679467084639498,0.0,2.5918208013991424,54.289075929401314,174.89229215124206,256.26770538770484,fqhc6_100Compliance_implementation_low_initial_treat_cost,15 -100000,95730,45384,429.8652460043873,6026,61.7361328737073,4752,49.00240259061945,1900,19.429645879034783,77.31652017658898,79.67832673041993,63.31665033110207,65.06282986825377,77.08147664761185,79.44508316706374,63.22918736389848,64.97900625987675,0.2350435289771297,233.2435633561829,0.0874629672035851,83.82360837701697,157.43926,110.7781697448484,164461.77791705838,115719.38759516182,397.85706,261.73247992258166,414966.1130262196,272769.74816941575,384.23318,187.16400442558628,397726.0315470594,192700.08897932875,3120.08513,1421.6022956531874,3221612.378564713,1447369.3676519229,1140.98782,499.53532200535096,1178856.7220307114,508793.8761154811,1862.45342,778.0361805843208,1907730.3457641285,780595.6740071877,0.38207,100000,0,715633,7475.53535986629,0,0.0,0,0.0,34365,358.32027577561894,0,0.0,35081,362.686723075316,1576760,0,56600,0,0,0,0,0,76,0.79389950903583,0,0.0,1,0.010446046171524,0,0.0,0.06026,0.1577197895673567,0.3153003650846332,0.019,0.3273358585858585,0.6726641414141414,24.64059674637088,4.332205728324079,0.3146043771043771,0.2344276094276094,0.2218013468013468,0.2291666666666666,11.23167270899105,5.874919939668949,20.262031741063517,12159.307467137189,53.951305736477465,13.442916397714017,16.933920421884068,11.709326486979569,11.865142429899835,0.5608164983164983,0.7944344703770198,0.7010033444816054,0.5654648956356736,0.1248852157943067,0.7429022082018928,0.9277389277389276,0.8903743315508021,0.7233201581027668,0.1320754716981132,0.4945464982778416,0.710948905109489,0.6378233719892953,0.5156054931335831,0.1231470923603192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027653690704105,0.0050790239352804,0.0075006343567622,0.0097848948860461,0.0120849609375,0.0141975434379646,0.016531875618288,0.0184022139844571,0.0207155346059856,0.0230355771691835,0.0249979493068657,0.0270769799464005,0.0292762684326347,0.0313655226385756,0.0333790627868835,0.0355216663567044,0.0374932715001449,0.0396249118293846,0.0416003991642498,0.0433405567594599,0.0575595903068522,0.0718060337159779,0.0854176498348277,0.0976171447800117,0.1097086457245895,0.1250330537427414,0.1364976978081436,0.1480795435189916,0.1591251482482664,0.1691862024569497,0.1815253689540019,0.1938684962340922,0.2058746764686691,0.2158929391441254,0.225039078840184,0.2342014850936495,0.2438362588771271,0.2535498098517068,0.2619769144335864,0.2699841913533576,0.2765268103029321,0.2826295473154755,0.2886245265151515,0.2945155371127715,0.2999282962458831,0.3048873757185503,0.3102044905268167,0.3152822862962255,0.3197115073353274,0.3240699178834526,0.3224685504943027,0.3212159629588799,0.3201971138911638,0.3187427578215527,0.3182637182637182,0.3173287912964753,0.3151846568394357,0.3157357732942764,0.3164411714334646,0.3171836939389597,0.3181374206393929,0.3193435353275394,0.3205392012766136,0.3210659614048456,0.3234274154705712,0.3249628799916643,0.3266801630977161,0.3324017960875435,0.3349921149465568,0.3378158594152882,0.3385105898428604,0.341684434968017,0.3412217594345576,0.3434159654309757,0.3461538461538461,0.3510777658687626,0.3471837488457987,0.3507673667205169,0.3542526837324525,0.3556661562021439,0.0,2.4459824894200426,55.353845464003854,180.81731251721396,257.83571091552267,fqhc6_100Compliance_implementation_low_initial_treat_cost,16 -100000,95697,45515,430.2329226621524,6078,62.52024619371558,4709,48.82075718152084,1876,19.42589631858888,77.40264542862671,79.78353441270747,63.35728834693722,65.11208810416755,77.17791326506064,79.55355424137706,63.275404360340175,65.02952862855952,0.2247321635660739,229.9801713304106,0.0818839865970417,82.55947560803634,159.66038,112.31567461512302,166839.48295139868,117365.93060923857,402.88937,264.85567794305024,420637.0314638912,276396.6769523081,388.78084,188.87450511343093,402884.1342988808,194843.7539630274,3117.23136,1405.490606289112,3236181.9910760005,1447473.0935025266,1143.21978,495.37177403839496,1186393.053073764,509414.66716657294,1843.496,759.7220173607324,1910086.439491311,780544.2122933158,0.38226,100000,0,725729,7583.612861427213,0,0.0,0,0.0,34639,361.5787328756387,0,0.0,35434,367.0543486211689,1567814,0,56205,0,0,0,0,0,87,0.8882201113932516,0,0.0,0,0.0,0,0.0,0.06078,0.1590017265735363,0.3086541625534715,0.01876,0.334168886103713,0.665831113896287,25.050191683290368,4.349908234591197,0.3276704183478445,0.2331705245275005,0.207687407092801,0.2314716500318539,11.133723962799532,5.781814280169712,19.813621195398262,12216.59187323763,52.91104839945736,13.063584633619111,17.2519684185175,10.831851462283144,11.7636438850376,0.5548948821405819,0.7923497267759563,0.6830848995463383,0.5858895705521472,0.1064220183486238,0.7360197368421053,0.9209876543209876,0.851063829787234,0.7288135593220338,0.1507537688442211,0.4918408245061552,0.7171717171717171,0.6289631533847472,0.5404312668463612,0.0965207631874298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506080951078,0.0048243080259863,0.0071819841752891,0.0094553283974691,0.0118872087938906,0.014398305602509,0.0167300457756889,0.0190036843877894,0.0211026518828879,0.0230770805190552,0.0253080218946677,0.0272667542706964,0.0293645897594077,0.0314427840201036,0.0337185307470078,0.036101866589495,0.0380732472534868,0.0402316145568503,0.0422243715744698,0.0446790549342893,0.0588954235393663,0.0731224675691805,0.0869779643231899,0.1000610063951531,0.1119735912336395,0.1272467601163713,0.1395662231276925,0.1503187967683907,0.1612710216466867,0.1715238462858123,0.1835398744603193,0.1959339565480827,0.2066412238640441,0.217211636220524,0.2270197743219761,0.2374785544302396,0.2472416022111762,0.2553208216808742,0.2634255169758329,0.2709181107402496,0.2779605453013355,0.2842842142107105,0.29104733120034,0.2963738129978233,0.3013868011443534,0.3066845446046351,0.3113987953914978,0.3147466490658002,0.3191522337169205,0.3238157894736842,0.3225516259835119,0.3219676716160079,0.3212361820324336,0.3197128181517344,0.3189641139474657,0.3169823415393538,0.3152352383959583,0.3155126650719271,0.3157025637533621,0.3177014766055862,0.3179491968621591,0.3180594580787141,0.3188273018781493,0.3195958876674529,0.3204439756436688,0.3215753602830238,0.3226898887276245,0.3249569168102773,0.3281545907273619,0.3302566946601172,0.3320419325432999,0.3329604176655479,0.336333312354459,0.337556904400607,0.3379990605918271,0.3410798122065728,0.3429311395490554,0.347052947052947,0.3544097693351424,0.3507322568531731,0.0,1.5306492723558285,53.79938444092856,173.598278895764,264.45661000005373,fqhc6_100Compliance_implementation_low_initial_treat_cost,17 -100000,95722,45278,428.6684356783185,5976,61.15626501744636,4644,47.85733687135664,1821,18.605963101481372,77.33907921770925,79.705546433288,63.32552877917672,65.07512155066357,77.11538235675265,79.48607363231005,63.2425532213974,64.99668744879311,0.2236968609566076,219.47280097795385,0.0829755577793136,78.43410187045663,157.62142,110.9243477535166,164665.8239485176,115881.7698684906,399.35258,263.1475039900787,416545.632143081,274254.2580749342,381.67188,185.574436872645,394855.6549173649,190864.6507203486,3078.20541,1407.4237929944734,3174411.8488957607,1429027.0970719245,1137.88573,505.46278914396527,1169956.3632184868,509497.0800745144,1795.56266,746.1277547878256,1836472.1589603224,746358.132353849,0.38142,100000,0,716461,7484.810179478072,0,0.0,0,0.0,34527,360.0112826727398,0,0.0,34905,360.7112262593761,1576870,0,56506,0,0,0,0,0,67,0.699943586636301,0,0.0,0,0.0,0,0.0,0.05976,0.1566776781500707,0.304718875502008,0.01821,0.3279655612244898,0.6720344387755102,24.50915637285156,4.412911189568784,0.3223514211886304,0.2340654608096468,0.2151162790697674,0.2284668389319552,11.39970768322809,5.8919032433866985,19.241125151992826,12196.71467351232,52.476311228564455,13.000366552145415,16.82776579009418,10.989342416321495,11.65883647000336,0.5566322136089578,0.7847286108555658,0.6700066800267201,0.5805805805805806,0.1404335532516493,0.7273456295108259,0.9065656565656566,0.8611111111111112,0.7652173913043478,0.1377777777777777,0.4939652634677657,0.7149059334298119,0.6012715712988193,0.5253576072821846,0.1411483253588516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.0047248245934217,0.0071049399632573,0.0092566249390343,0.0115561071381341,0.0138610231288637,0.0158364350175903,0.017662433127782,0.0197961082650797,0.0221227608386165,0.024490800566119,0.0266225696120623,0.0290030957205006,0.0309396249742427,0.0330418984898376,0.0351905855101238,0.0372641851502688,0.0393229274772717,0.0413993198906001,0.0435077044893366,0.0587234131417652,0.0726041873750954,0.0859039151131335,0.0981544771018455,0.1096722487029147,0.1258488290918322,0.1379043294681788,0.1497439500888988,0.1604210076401132,0.1707222865971417,0.1837576906914349,0.1957620970798098,0.2071629060684523,0.2171976891767692,0.2270960638590696,0.2376090547296773,0.247451343836886,0.2557511367217395,0.2638209490517427,0.2712563597194848,0.2783743751157193,0.2842256683741492,0.2910774251525327,0.2967135588147261,0.302346176242236,0.3078994945209017,0.3122986640029966,0.3165589978550849,0.3204664617609835,0.3245834705301284,0.3234827928968648,0.3220036269714788,0.320631970260223,0.3202491581518362,0.3191884385164941,0.3170694378548799,0.3145013289457031,0.3154861589991133,0.3158488823519351,0.315977685595766,0.3159029548522574,0.3161555485298767,0.3169782908771489,0.3175852431525992,0.3180967912130078,0.3206919839991687,0.3217985202048947,0.3255470785846598,0.3280647648419429,0.3316397411979518,0.3337588329154319,0.3353749467405198,0.3386240040470469,0.3451834862385321,0.3480828724102371,0.3526478271194491,0.3549435246789417,0.3579742699612007,0.3706896551724138,0.3758157389635316,0.0,2.5406139041608005,54.25232069002641,168.3161573144391,258.82952652709986,fqhc6_100Compliance_implementation_low_initial_treat_cost,18 -100000,95704,45189,429.8670901947672,5965,61.19911393463178,4699,48.70224859984954,1827,18.860235726824374,77.30793472821749,79.68441549903683,63.31631099018998,65.07039379762325,77.08479157437743,79.45906150620154,63.23319266563454,64.98798526014419,0.2231431538400556,225.353992835295,0.0831183245554427,82.4085374790684,159.53652,112.26782737224472,166697.63019309536,117307.14137777392,403.56447,265.6318159344273,421282.2243584385,277159.2789975941,381.00411,185.35484115175652,395561.22001170274,191716.0581368314,3086.48936,1417.8357823966091,3200790.9596255124,1457357.6501363865,1116.47489,497.3002925131971,1157905.3017637716,510996.9911081057,1790.09784,749.6301125738788,1849270.5425060603,765648.8669220983,0.38147,100000,0,725166,7577.165008777063,0,0.0,0,0.0,34764,362.8374989551117,0,0.0,34916,362.2837080999749,1564325,0,56184,0,0,0,0,0,82,0.8568084928529633,0,0.0,0,0.0,0,0.0,0.05965,0.1563687839148557,0.3062866722548197,0.01827,0.3389504092441021,0.661049590755898,24.581713942397084,4.436347930764169,0.3164503085762928,0.2360076612045116,0.2268567780378804,0.2206852521813151,11.342254849439632,5.789044875566657,19.45807897739164,12114.733794482903,53.431313759669806,13.394420789922403,16.98478690860539,11.74497394774647,11.307132113395545,0.5694828686954672,0.8025247971145176,0.6967047747141897,0.5806754221388368,0.1263259402121504,0.7301829268292683,0.9122401847575058,0.8459715639810427,0.7426160337552743,0.1363636363636363,0.5072335400059049,0.7322485207100592,0.6375586854460094,0.53437876960193,0.1236230110159118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0041445421750233,0.0062082187889915,0.0084200048752742,0.0104548043283703,0.0127184228748319,0.0149687471321797,0.0174476773864216,0.0192193665787482,0.0213223326611458,0.0232705949891335,0.0252361396303901,0.0274278309696926,0.0297514190643961,0.031803031710161,0.0335976347265152,0.0355385173289126,0.0374169435215946,0.0394985956517216,0.0415428720354443,0.0565223749634396,0.0705478448366095,0.0835020720767979,0.0965061736185608,0.1090447122328705,0.1251374788494078,0.1372813206165989,0.1486326815196449,0.1593966005363076,0.1696595224303276,0.182250942380183,0.1940240379934441,0.2054627696590118,0.2164100769769069,0.2265886287625418,0.2363529620275599,0.2459299925239067,0.2544607699750242,0.2627398472693438,0.2705377082975433,0.2778472366928295,0.2842356408547069,0.2904920826528439,0.2967329511381899,0.3019333657587548,0.3063163089069824,0.3108638169354737,0.3150569702531161,0.3195525796740371,0.3227183798646362,0.3219977886249022,0.3205442814602404,0.3198301162659442,0.3193593697959656,0.3186109539267951,0.3172010857063992,0.3144497486241733,0.3148096327632467,0.3149579313535651,0.3158205430932703,0.3167195628086912,0.3174892512531949,0.3183715418335885,0.3194410285075461,0.319750649850775,0.3206615456968177,0.3225364572928855,0.3241490065182479,0.3278676963221552,0.3283967283411419,0.3303493948390043,0.3315795068027211,0.3353111980810503,0.3400396281054717,0.3405314055018308,0.3440160832544938,0.3395742110825909,0.3426,0.3466307277628032,0.346646571213263,0.0,1.5239691491269067,58.17139685344132,169.3249837855086,258.43874331681747,fqhc6_100Compliance_implementation_low_initial_treat_cost,19 -100000,95714,45236,429.1326242764904,5974,61.21361556303153,4667,48.24790521762752,1874,19.244833566667364,77.38171245272493,79.75495924598059,63.34258245905804,65.09484295877022,77.14507932103922,79.5195266910151,63.254855004381575,65.01002235459872,0.2366331316857071,235.4325549654845,0.0877274546764681,84.8206041714974,159.56028,112.23282218335464,166705.26777691874,117258.52245581069,401.1658,264.1598281489724,418609.11674363207,275468.1218515289,390.28819,189.926980745315,404874.4697745366,196176.9284039331,3077.85147,1409.023082220007,3182327.862172723,1438770.6105898877,1138.00701,503.62868529290927,1171870.645882525,509098.6327088592,1834.2365,767.8665342494619,1884212.2782456067,773376.9330842274,0.3787,100000,0,725274,7577.512171678124,0,0.0,0,0.0,34598,360.9189878178741,0,0.0,35491,367.88766533631446,1566151,0,56177,0,0,0,0,0,73,0.7626888438472951,0,0.0,0,0.0,0,0.0,0.05974,0.1577501980459466,0.3136926682289923,0.01874,0.3402489626556016,0.6597510373443983,24.42168089703237,4.442167065495947,0.3291193486179559,0.2228412256267409,0.2241268480822798,0.2239125776730233,11.041252984034475,5.677430964710386,19.910498467351157,12078.641641544473,53.083147575542384,12.658938832318322,17.445919186839845,11.6224431943305,11.355846362053732,0.5654596100278552,0.7721153846153846,0.7135416666666666,0.5889101338432122,0.1186602870813397,0.7253521126760564,0.9106699751861044,0.8588807785888077,0.7389558232931727,0.1069767441860465,0.505163765122455,0.6844583987441131,0.6604444444444444,0.5420326223337516,0.1216867469879518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484200291686,0.004521079787935,0.0065653285708487,0.008918594965768,0.0111581260044347,0.0134215885947046,0.0154779505480499,0.0176609906488627,0.0197908467333858,0.0220083938990684,0.024214961606676,0.0263036313795546,0.0284239320458238,0.0305318348973516,0.0327544038884245,0.0347497932175351,0.0368705594796694,0.038912928431342,0.0408727847574673,0.042716160026678,0.0573761931616433,0.070905874100983,0.0844935945188807,0.0971827726230301,0.1095417914855913,0.1246801040587128,0.1365319525936614,0.1476252834648184,0.1588039228254599,0.169273347493081,0.1825646551724138,0.194675991079741,0.2055599060297572,0.2158716970405921,0.2254314279743507,0.2355982111229188,0.2447338782519486,0.253648937366468,0.2621091667895256,0.2696350064114307,0.2758130010759032,0.2826114910281138,0.2882146195993041,0.2938737853608272,0.2989457831325301,0.3048706859374807,0.3094815296501013,0.3136546389129218,0.3176275662101638,0.3212585549826592,0.3195539293497269,0.3181512166302571,0.3174507127478435,0.3166690699351117,0.3153809693091599,0.3133280420050064,0.3116829807388696,0.3126196436460021,0.3131591481254678,0.3134285866799523,0.3149909377977914,0.3152956019476807,0.3153132492442406,0.314605740753112,0.3151265534829147,0.3165491862755261,0.3179756166713921,0.3211820198044544,0.3239755884917175,0.3290383779297261,0.331578947368421,0.3341996393338283,0.3361179672172647,0.3372609028309105,0.341869880425572,0.3449175661250148,0.3440366972477064,0.3444782168186423,0.347079988928868,0.3477756286266925,0.0,1.905558363909951,56.30551910032491,175.04810457453786,251.8933652438853,fqhc6_100Compliance_implementation_low_initial_treat_cost,20 -100000,95849,45676,432.02328662792513,5988,61.28389445899279,4689,48.25298125176058,1805,18.393514799319764,77.44506122741345,79.72154414657751,63.40474875222951,65.08358858727827,77.21569809520697,79.49589779622593,63.31868565151407,65.00183741669764,0.2293631322064726,225.64635035158176,0.0860631007154353,81.75117058063108,159.51738,112.27073570227736,166425.71127502635,117132.92335055904,401.88878,264.6207401806911,418648.5826664858,275435.77938287426,386.67817,188.80264796809288,398802.22015879146,193487.3636979669,3050.84904,1399.136110601442,3141722.06282799,1418477.240869953,1107.05839,493.1586806493829,1137095.3583240304,496609.98927605886,1766.13718,746.9009504480232,1802300.9316737785,746184.5436746698,0.38466,100000,0,725079,7564.805057955743,0,0.0,0,0.0,34624,360.55670899018247,0,0.0,35460,365.3350582687352,1568403,0,56324,0,0,0,0,0,68,0.7094492378637232,0,0.0,2,0.0208661540548153,0,0.0,0.05988,0.1556699422866947,0.301436205744823,0.01805,0.3291826309067688,0.6708173690932312,24.491704176611684,4.32119449928542,0.3316272126252932,0.2298997654084026,0.2200895713371721,0.218383450629132,11.408393914389372,6.073066581030248,19.198415787123828,12217.337852286364,53.1793673703367,12.993742941925111,17.53767008705343,11.50424598271962,11.143708358638545,0.5645126892727661,0.7884972170686456,0.690032154340836,0.5794573643410853,0.123046875,0.7396726422447389,0.9127358490566038,0.8666666666666667,0.7306122448979592,0.1531100478468899,0.4985320023487962,0.7079510703363915,0.6278260869565218,0.5324015247776366,0.1153374233128834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022571307111479,0.0049230644556772,0.0073512263873538,0.0096220210304088,0.011919035909525,0.0139585516476584,0.0161737146581927,0.0181814473778131,0.0202902102543679,0.0222392638036809,0.02443170182265,0.0267678580585611,0.0288504991577995,0.0309311224489795,0.0330829701521754,0.0356833195706028,0.037551062619577,0.0395842616291721,0.0415278080584711,0.0436189584308828,0.0590185814685825,0.0726076055160886,0.0857337312182608,0.0990723445337586,0.1115483355077648,0.1271241899052162,0.1385776911836337,0.1499075628466393,0.1604355058863675,0.1711331820711503,0.1836228021151283,0.1955812798306805,0.2071735637674236,0.2170637433668901,0.2263744713571703,0.2369571230982019,0.2468201326570425,0.2558829478794417,0.2629245839190966,0.2707944754036457,0.2781581016698274,0.2846333762133083,0.2913466885967507,0.2971413522313733,0.3029600592254572,0.308298448657966,0.312574310709503,0.3164094800717493,0.3212560699255422,0.3252400295420974,0.3239053795850265,0.3222216115202814,0.3206701241022613,0.3192022463820289,0.3184226886527132,0.31736883033713,0.3156377044530585,0.3161480029404557,0.3158458608257942,0.3164583925021301,0.3178215051757903,0.3181281021035216,0.3200217105400497,0.3211105174102769,0.3229211546747091,0.3234638319937775,0.3244918756723093,0.3272011743761127,0.3301227441844292,0.3329518096065043,0.3378040463741759,0.3401985243378098,0.3428786737000753,0.3441568387195589,0.3438888363739484,0.3482153515578369,0.3531592769967557,0.3528559602649007,0.3614592035644667,0.3643502159403219,0.0,2.6120206923643807,55.74377854564512,174.82547384457845,252.7083917043984,fqhc6_100Compliance_implementation_low_initial_treat_cost,21 -100000,95691,44993,426.7485970467442,5983,61.32238141518011,4698,48.5834613495522,1859,19.040453125163285,77.29747507811412,79.70046076561079,63.28577397120039,65.0657888224751,77.06618961161355,79.47153326440643,63.19999830813805,64.98347281476904,0.2312854665005659,228.92750120435323,0.0857756630623427,82.31600770605496,158.20134,111.3426213686324,165325.20299714708,116356.41948420688,399.0733,262.5468659730409,416512.7963967353,273838.52815107047,380.18306,184.88857375278496,394415.6921758577,190898.01358932856,3111.05736,1420.5099353898,3217332.925771493,1450659.5451921253,1165.1043,513.3615777790853,1204385.6684536685,523376.2920775479,1829.16126,766.2980278817573,1875028.581580295,769935.4267141848,0.38009,100000,0,719097,7514.781954415775,0,0.0,0,0.0,34496,359.92935594779027,0,0.0,34847,361.24609419903646,1570574,0,56346,0,0,0,0,0,53,0.5538660898099089,0,0.0,0,0.0,0,0.0,0.05983,0.1574100870846378,0.3107136887848905,0.01859,0.3277565328234544,0.6722434671765456,24.30176006822461,4.346132579502624,0.3101319710515113,0.2396764580672626,0.2179650915283099,0.2322264793529161,11.341806721597422,5.956057794097512,19.792783005813074,12097.82340232958,53.2915434898737,13.526566534290277,16.204494365004482,11.51576783579611,12.044714754782843,0.5661983822903364,0.7868561278863233,0.693891557995882,0.607421875,0.1292392300641613,0.7346123101518784,0.9370629370629372,0.8690476190476191,0.7410358565737052,0.1659574468085106,0.5050768784450247,0.6944045911047346,0.6413916146297948,0.5640362225097024,0.1191588785046729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021991162998094,0.0042298095064207,0.0063353469719275,0.0087592724316634,0.011077880859375,0.013200513353297,0.0152380563828485,0.0174424541982394,0.0194831095247348,0.0218021320826207,0.0241453232539772,0.0261346592426701,0.0281475689800621,0.0303676682741849,0.0324822153159943,0.0346307808475645,0.036618229307021,0.0385234411505113,0.040449859028912,0.0426155016623068,0.0572565733805509,0.0708311087382096,0.0839402270867001,0.0964338312644645,0.1081619950840251,0.1248558460382788,0.1366608636575941,0.1478234937000074,0.1588369282758178,0.1692418369428666,0.1823809831963588,0.194074989431238,0.2055527115487251,0.2154031551270815,0.224434010096334,0.2348634437468107,0.2445941868651312,0.2537953869717992,0.2618203712539477,0.2701172479398517,0.2764416950487708,0.2825356302186413,0.2890149451694654,0.294876564694022,0.3003856400773713,0.305210673117271,0.3102709341086243,0.3143348843138505,0.3192425500986398,0.3231078436557889,0.3219886102939192,0.3204409979026382,0.3181259448690959,0.3162088548910524,0.3162990615286226,0.3146726723966233,0.3131209264063785,0.314130719811197,0.3150276713495104,0.315126050420168,0.3156991173561738,0.316570259316098,0.3176409185803758,0.317474452879756,0.3183178868213712,0.3190887626164344,0.3201293910674763,0.3228785175446834,0.3270616213191579,0.3292190837882744,0.332924168030551,0.3364248237850442,0.3416383540958852,0.3454725157758686,0.3504747579204663,0.3504910661460182,0.3540353574173712,0.3603567085528982,0.3563756540897824,0.367794004611837,0.0,1.993164895665501,55.105438487903015,177.7113363025501,256.0560372401272,fqhc6_100Compliance_implementation_low_initial_treat_cost,22 -100000,95830,45041,424.83564645726807,5982,61.20212876969634,4727,48.75300010435146,1868,19.12762183032453,77.32864418348662,79.64122694768,63.32870225298407,65.03946113020783,77.09149794944496,79.40425481382626,63.24127255164146,64.95421079605029,0.2371462340416599,236.97213385374027,0.0874297013426073,85.25033415753569,158.75794,111.75614927218264,165665.99186058645,116618.95259749828,402.44482,264.5550003809103,419357.69591985806,275469.3762592225,383.86082,186.6620089181068,397122.3312115204,192085.92055044253,3102.04289,1421.845334734406,3201794.083272462,1448688.1511149018,1117.38335,498.51558994731135,1149181.2167379735,503730.3618636216,1829.50084,769.5468861572616,1875588.7717833663,774491.3828231512,0.37943,100000,0,721627,7530.272357299385,0,0.0,0,0.0,34753,362.04737556088907,0,0.0,35072,362.5482625482625,1567327,0,56348,0,0,0,0,0,71,0.7408953354899301,0,0.0,0,0.0,0,0.0,0.05982,0.1576575389399889,0.3122701437646272,0.01868,0.3390263367916999,0.6609736632083001,24.485699778665797,4.410784028269823,0.3270573302305902,0.2350327903532896,0.2183202877089063,0.2195895917072138,11.49477098107156,5.948440090686696,19.94989725336921,12129.64767808544,53.681225638728016,13.319174229632267,17.53118170428706,11.424663626078294,11.406206078730388,0.5540511952612651,0.7776777677767777,0.685640362225097,0.5571705426356589,0.1156069364161849,0.7174427782162589,0.9032258064516128,0.8535980148883374,0.6979591836734694,0.1388888888888889,0.4942196531791907,0.7062146892655368,0.626421697287839,0.5133418043202033,0.1094890510948905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024712614574365,0.0048655881279649,0.0074975904225637,0.0096802372826263,0.012111043319097,0.0145387904703726,0.0167159310977474,0.0189310826946431,0.0208780427984548,0.0228393672103636,0.0250210045287813,0.0271335331061943,0.029381538651265,0.0314803376569899,0.0335859757669502,0.0358356662500129,0.037966824301251,0.0402479990046862,0.0423777226128774,0.0443375901583039,0.0589615753681839,0.0727242313040387,0.0860164339915314,0.0984805497761805,0.1107855433877546,0.1254505671067513,0.1377068996596295,0.1490557003777198,0.1591188185419714,0.1696108907707149,0.1819542395693135,0.1937277556009909,0.2055580925044034,0.2159119476232635,0.225893043774822,0.2351716269951153,0.2451100790425579,0.2537150448056919,0.2618771858109642,0.269625943169048,0.2762649973917579,0.2818883234445721,0.2882496794719597,0.2934017348679626,0.2987657927408165,0.3033422195892575,0.307931492765616,0.3125486046481979,0.3170880490084103,0.3212311192233421,0.3200879429180323,0.3192097021206142,0.3183661932018938,0.3171230492545106,0.3164747419071312,0.3146288276666973,0.3127033762440673,0.3127805455531988,0.3135814700305758,0.3142500445871232,0.3150507813963947,0.3164169072001898,0.3179524756620956,0.3180629734742676,0.3188628875153322,0.3192934782608695,0.3201368106028217,0.3241892911010558,0.328144676087869,0.3315155107686228,0.3341361446878124,0.3374356798047849,0.3407687460617517,0.3460334427731542,0.3478424722065197,0.3521817095038852,0.3529231711049893,0.3587088915956151,0.3680593732820231,0.3631067961165048,0.0,2.1497595273522645,55.54973981654024,175.89364832478373,261.45817243472857,fqhc6_100Compliance_implementation_low_initial_treat_cost,23 -100000,95741,45252,428.58336553827513,5862,59.88030206494605,4645,47.879174021579054,1835,18.76938824537032,77.35098256499538,79.69695872244917,63.33757887846742,65.06999053348328,77.12157694774902,79.46959587690944,63.252617534674016,64.98819573053676,0.229405617246357,227.36284553973007,0.0849613437934024,81.79480294651853,159.41046,112.07458841211508,166501.77040139542,117060.18154407732,397.75902,262.1080738837605,414827.0960194692,273141.7719511604,382.32238,186.1228012639283,394752.1960288696,190989.38519018597,3028.13958,1388.277970814569,3125919.512016795,1413109.3166089433,1099.51437,491.843948882043,1131531.2144222432,496828.8182513688,1790.6385,751.0340598183958,1833992.5632696543,753761.0668326295,0.38114,100000,0,724593,7568.26229097252,0,0.0,0,0.0,34344,358.05976540875906,0,0.0,34821,359.1251396998151,1569007,0,56296,0,0,0,0,0,89,0.929591293176382,0,0.0,1,0.0104448459907458,0,0.0,0.05862,0.1538017526368263,0.3130330945069942,0.01835,0.3407730874979783,0.6592269125020217,24.5367225460669,4.361552742494633,0.3280947255113025,0.2368137782561894,0.2208826695371367,0.2142088266953713,11.550775443319116,6.184435280322485,19.50250586584177,12158.512410238229,52.68502209602246,13.095796044445969,17.28459026395179,11.286506080858215,11.018129706766471,0.5608180839612487,0.7945454545454546,0.6751968503937008,0.5604288499025342,0.1276381909547738,0.735973597359736,0.9460154241645244,0.8529411764705882,0.7219730941704036,0.1946902654867256,0.4989804835420914,0.7116736990154712,0.6173913043478261,0.5155666251556662,0.1079323797139141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0043482227019795,0.0067273446774831,0.0091411391890793,0.0114386228914805,0.0138550966599138,0.0160446886372208,0.0182888868477184,0.0205337339915575,0.0225465412602728,0.0244787502306414,0.0267193594744405,0.0289415514316557,0.0310163731850478,0.0332387682467632,0.0353174644189724,0.0373380825662424,0.0391715350053439,0.0412850236523366,0.0431702641886823,0.057747111078635,0.0718029185626863,0.085912598557289,0.0981422879190891,0.1103204722749314,0.1252087870266613,0.1363906329543526,0.1479518533890999,0.1590299663479515,0.1697151745963632,0.181502827901966,0.1939516609120133,0.2053170312516996,0.2152384912514909,0.2247088351203188,0.2357328899972291,0.2445248545359109,0.2533384333269583,0.2627517730496453,0.2706955634763274,0.2775965009719522,0.2842285059138715,0.2909058656575213,0.2962031682172492,0.3010701805474665,0.3061872415829887,0.3103258627801457,0.3153219554968167,0.3190759673870842,0.3231498099662162,0.3223081483078249,0.3210296527882986,0.3196005698086063,0.3183022336744886,0.3174874685784831,0.3157095992887144,0.3143418779030136,0.3140808472848074,0.3148803721375677,0.3162170365476976,0.3170297660303842,0.3182823297137216,0.3200284804824929,0.3211046069976317,0.3238209528381135,0.325950439065065,0.3272613600841172,0.3289576987092925,0.3314231804046263,0.3350342154186939,0.3392548841435711,0.3444432650461734,0.3473750392958189,0.3490859440188121,0.3518015910154422,0.3536585365853658,0.3538795106086418,0.3525940996948118,0.3586474501108647,0.3604471858134155,0.0,2.4764189487111983,52.60596445205689,182.09581281499263,250.0445084010356,fqhc6_100Compliance_implementation_low_initial_treat_cost,24 -100000,95830,45256,428.5609934258583,5932,60.523844307628096,4637,47.678180110612544,1816,18.50151309610769,77.51248185563044,79.79982070668515,63.42745123530996,65.11146317271229,77.28499583155516,79.57727804956329,63.34213722917991,65.03130112793508,0.2274860240752758,222.54265712186336,0.085314006130055,80.1620447772109,158.42992,111.34091835540931,165323.46864238754,116185.41683753446,397.0649,261.0550312984221,413661.2647396432,271733.4279436733,377.39094,183.26328296722752,389560.200354795,187857.6846093496,3011.82529,1375.2119771505422,3098053.730564541,1390254.5721074203,1105.47974,491.52565930173375,1132812.1882500262,492279.2768479381,1770.5059,746.5405729798043,1804905.979338412,741702.4496103863,0.38169,100000,0,720136,7514.703120108526,0,0.0,0,0.0,34275,356.93415423145154,0,0.0,34499,355.7967233642909,1583168,0,56774,0,0,0,0,0,72,0.7408953354899301,0,0.0,1,0.0104351455702807,0,0.0,0.05932,0.1554140794885902,0.306136210384356,0.01816,0.3395468423589908,0.6604531576410092,24.602011958196183,4.261623762427679,0.3228380418373948,0.2471425490618934,0.2173819279706706,0.2126374811300409,11.28449903174965,6.032094134301689,19.27149272548033,12125.02633940214,52.20498539100433,13.571522796986978,16.629814416403207,11.211800095678155,10.791848081935983,0.569333620875566,0.7923211169284468,0.6833667334669339,0.5882936507936508,0.1176470588235294,0.7293921731890092,0.9298701298701298,0.8442622950819673,0.7478632478632479,0.1574074074074074,0.5133876600698487,0.7227332457293035,0.6312997347480106,0.5400516795865633,0.1064935064935064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022463724121182,0.0043244447595223,0.0065173983113552,0.0086858580836318,0.010920579451025,0.0130885792738736,0.0153631569302192,0.0174885788872573,0.0196971398813474,0.0217915942325391,0.0240745481542163,0.0260591330031074,0.02819477410273,0.0302369141469238,0.0323298969072164,0.0345596893139705,0.0367243038524819,0.0387761661361727,0.0409100353210056,0.0429771683792985,0.0580290562456327,0.071846081455534,0.0849095157757961,0.097994937453392,0.1098674304246648,0.1246725536589487,0.1364445763466389,0.1469725004785299,0.157817785983373,0.1673431358899943,0.180172914381573,0.1932710482259545,0.2052131054997069,0.2156333937501365,0.2254050194958537,0.2357416130387669,0.2447867932094639,0.2532264042861475,0.2618149695919546,0.269051890619465,0.2768288604149607,0.2836693571869504,0.2901978353651347,0.2956382610356891,0.3007951011121734,0.3059918700185442,0.3107360127655331,0.3141590678824721,0.3191966587604414,0.3225438078361882,0.3217837707422995,0.3204413838423942,0.3198829098854309,0.3186740490400517,0.3183202720686086,0.3164968269465462,0.3138706876134838,0.3150169363944298,0.3157491704245724,0.3165043704270735,0.3175804462383675,0.317819830475064,0.318896897524287,0.3196401932625298,0.3202032733692799,0.3218604651162791,0.324062570589564,0.3287058604304481,0.3325598309839642,0.3358799454297408,0.3394863563402889,0.3428571428571428,0.3461704622600753,0.3475177304964539,0.353547437195178,0.358264081255771,0.3597915115413254,0.3657154026583268,0.367237687366167,0.3696053116931022,0.0,2.774865942055172,51.80849015157986,177.19671875826822,252.2168602642831,fqhc6_100Compliance_implementation_low_initial_treat_cost,25 -100000,95727,45268,428.3744398132188,5882,60.17111159860854,4630,47.6668024695227,1800,18.281153697493917,77.31288813594676,79.67102153785783,63.318020272784125,65.06188861034428,77.07768790615586,79.44116491027748,63.23083071853304,64.9793976945671,0.2352002297909052,229.85662758034664,0.0871895542510827,82.49091577718559,159.22984,112.04510053479385,166337.4387581351,117046.4973672985,397.59601,261.5392287626679,414637.78244382463,272508.13248073665,383.95402,186.91567874320145,397290.7748075256,192197.697757789,3029.2687,1393.338417780056,3121135.855087906,1412210.8787451107,1135.70048,503.3434101618453,1170377.5632789077,509873.0766233544,1761.10564,743.930775084338,1792311.7824647175,739282.3682390002,0.37996,100000,0,723772,7560.792670824323,0,0.0,0,0.0,34288,357.4226707198596,0,0.0,35134,363.1263906734777,1567929,0,56325,0,0,0,0,0,63,0.6581215331097809,0,0.0,1,0.010446373541425,0,0.0,0.05882,0.1548057690283187,0.3060183611016661,0.018,0.3361016121152906,0.6638983878847093,24.586601689708488,4.374250774919153,0.3086393088552915,0.2362850971922246,0.2377969762419006,0.2172786177105831,11.504515615781552,6.103297617290329,19.391328527159164,12156.936129208454,52.64221880510557,13.066637736224935,16.229550490301435,12.275461304886797,11.0705692736924,0.5647948164146869,0.7824497257769653,0.6934919524142757,0.5876475930971844,0.1202783300198807,0.734920634920635,0.9138755980861244,0.873972602739726,0.7451737451737451,0.146788990825688,0.501186943620178,0.7011834319526628,0.631578947368421,0.5391923990498813,0.1129441624365482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901638680143,0.0046929322210847,0.0069602978926328,0.0088875797342867,0.0111166485287985,0.0131670061099796,0.0156724788416437,0.017661892170575,0.0201198192487782,0.0225781018011283,0.0249254083317099,0.0269856754120244,0.0295372970082173,0.0318068516572935,0.0341174043123903,0.0361727195684077,0.0379282852024809,0.0396878923394585,0.0415544440169295,0.0435738473560823,0.0576425140948005,0.0719263367165428,0.0848277019232786,0.0973388987603957,0.1097919719958246,0.1250978401133887,0.1368874551667055,0.1481792925798588,0.1588656270027771,0.1691543888996118,0.1821646587642518,0.1938382680537232,0.2049358556207871,0.2153450727332385,0.2247859862238947,0.2344965104685942,0.2441599607129703,0.2528378728047971,0.2613178303375762,0.2696670409496093,0.2770349274707973,0.2836508660514836,0.2903741037836303,0.296216825297883,0.3011178614823815,0.3061458436051671,0.3106954148198232,0.3157097775741843,0.3196321005246453,0.3225077624364141,0.3218384603973081,0.3212568704971554,0.3197821270831275,0.318880875836302,0.3174551143559562,0.316200070642075,0.3145571228872792,0.3154350260159388,0.3169365201747622,0.3178372372264736,0.3187736008566759,0.3188615628718762,0.3205892227631358,0.322302769946749,0.3232934146165153,0.3242141569334483,0.3244062080201217,0.3292359223914555,0.3325814977973568,0.3344516335170541,0.3369619905776883,0.3399925615004516,0.3428141836862549,0.3487894015532206,0.3508953817153629,0.3553924470226116,0.3552266419981498,0.3613138686131387,0.3674147963424771,0.3722326454033771,0.0,2.6370646602987087,54.64036648333497,173.11907421139117,252.23765402888472,fqhc6_100Compliance_implementation_low_initial_treat_cost,26 -100000,95772,45632,432.7151985966671,5981,61.16610282754876,4697,48.36486655807543,1866,19.076556822453327,77.37208356525132,79.71054071414022,63.35007434272507,65.07956826628835,77.13561003569868,79.4787492396775,63.26162036141532,64.99600973270447,0.2364735295526401,231.79147446272447,0.0884539813097546,83.55853358388288,158.0777,111.24593514073568,165056.27949713904,116157.05544494808,401.54083,264.6700927399649,418588.10508290527,275675.0018167782,386.57474,188.34389236684493,399626.46702585305,193510.60779947197,3099.23903,1428.8137841704452,3191198.565342689,1447029.866944874,1136.18548,507.4841629918408,1166598.598755377,510153.06582995714,1825.958,774.4898012527561,1866774.5687674892,772648.1054692575,0.38389,100000,0,718535,7502.558158960865,0,0.0,0,0.0,34659,361.1807208787537,0,0.0,35333,364.8978824708683,1573305,0,56510,0,0,0,0,0,72,0.7517854905400325,0,0.0,2,0.0208829302927786,0,0.0,0.05981,0.1557998384954023,0.3119879618792844,0.01866,0.3364187679540377,0.6635812320459623,24.2260176445443,4.314212119246912,0.3199914839259101,0.2375984671066638,0.2182243985522674,0.2241856504151586,11.260002746416992,5.901893269847451,19.963861442249375,12271.18505795582,53.54218686716358,13.388388303366664,16.96990311471556,11.578974151824694,11.604921297256656,0.5720672769853098,0.7956989247311828,0.7092481703260146,0.5951219512195122,0.1168091168091168,0.7380216383307573,0.9195121951219511,0.8790931989924433,0.7644787644787645,0.1359649122807017,0.5089626799882456,0.7237960339943342,0.6482820976491862,0.5378590078328982,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877848678213,0.0043591095251611,0.0065555803616731,0.0088377810058816,0.0111664802196684,0.0130925232122495,0.0153196954407852,0.0173071820723717,0.0198250490516677,0.0220552866163812,0.0241750358680057,0.0260986473449783,0.0283499856091443,0.0305813546407463,0.0326073505754238,0.0347061497768226,0.0367464392182842,0.0389621164196749,0.0410640066500415,0.0429264534399466,0.058178972084529,0.0728809304660697,0.0860563365516663,0.0990805443177638,0.1116554463373263,0.1277627519756582,0.1405150487494701,0.1522266173280592,0.1623663486778923,0.1724928489549296,0.185097524502157,0.1979114868224764,0.2089922076228359,0.2194489996720236,0.2288680884763025,0.2389891137025593,0.2481509164537757,0.2572935052670631,0.2656531646430636,0.2732289865692662,0.279959287060919,0.285989875016076,0.2921247369789819,0.2976293103448276,0.3034381485212199,0.3093666896483797,0.3140261073077934,0.3187047890260491,0.3227813712807244,0.3268023838405147,0.3256686433498729,0.3242218620367572,0.3227156770165325,0.3207402588014169,0.3196505771716361,0.317620943049602,0.3159393690073099,0.3167382959876644,0.317153265944892,0.3182548466564318,0.3187185388948146,0.3204784084629352,0.3221225241053314,0.3230247450744137,0.3245755181440476,0.3255468363010663,0.3273610515787969,0.3296751813308105,0.3335910864292995,0.3377942406500179,0.3404138937004284,0.3437599575146043,0.347336645493994,0.3487628473543966,0.3508292499057671,0.352334676463617,0.355281207133059,0.3556741795175959,0.3570073190566549,0.3559894855426211,0.0,2.57050169918242,56.33856155962158,175.55423364787313,254.413439529985,fqhc6_100Compliance_implementation_low_initial_treat_cost,27 -100000,95644,45244,429.15394588264815,6114,62.71172263811634,4806,49.63196855003973,1813,18.558404081803356,77.25911226955019,79.65648513253856,63.27736057920528,65.04613230727703,77.02969519743756,79.4281941890507,63.19162329894014,64.96371055003151,0.2294170721126249,228.29094348786327,0.0857372802651426,82.4217572455268,158.29506,111.33922789583552,165504.4331061018,116410.04965898072,397.34273,261.14076446560284,414820.375559366,272415.2424256648,382.08644,186.1517215877704,395592.792020409,191667.18305863187,3122.47315,1434.3734519277791,3225187.267366484,1460204.9390738378,1115.43516,498.3558947091335,1148880.3584124462,503722.6860840237,1782.06612,754.625313522935,1825946.8863702896,756334.4445354181,0.38138,100000,0,719523,7522.928777550082,0,0.0,0,0.0,34340,358.41244615448954,0,0.0,34984,361.8836518757057,1568886,0,56372,0,0,0,0,0,63,0.6586926519175275,0,0.0,2,0.0209108778386516,0,0.0,0.06114,0.1603125491635639,0.2965325482499182,0.01813,0.33453125,0.66546875,24.603087786189157,4.239681551524723,0.33083645443196,0.2317935913441531,0.223886808156471,0.2134831460674157,11.115329797648544,5.739634720076939,19.490256031295218,12217.44459100021,54.58249244309152,13.38366421203289,17.868511129897197,12.011157750598036,11.319159350563387,0.5659592176446109,0.7917414721723519,0.6974842767295597,0.5715613382899628,0.1111111111111111,0.7438271604938271,0.9302884615384616,0.8603491271820449,0.75,0.1581395348837209,0.5002849002849002,0.7091690544412608,0.6425567703952901,0.5135467980295566,0.0986436498150431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024614324929347,0.0046035753759417,0.0069017315226437,0.0093785563323036,0.0115367007477491,0.0138716313934776,0.0160796949242408,0.0182222812050185,0.0202512752885372,0.0225192949413474,0.0247085721316013,0.0269840128964688,0.028860889688866,0.0309564034943135,0.0329824561403508,0.0349484045743118,0.0367557935957069,0.0387701506171045,0.0407218639484085,0.0429719670986103,0.0577901788046942,0.0723652512725977,0.0860986264544041,0.0986152793134312,0.1106311976598059,0.1262973946197839,0.1380834023750345,0.1494251648855124,0.1601398750962443,0.1695912712901909,0.1823438039351052,0.1948357316227461,0.2065487342599451,0.2172002717331755,0.2270160578789483,0.2373062058549153,0.2479077157178661,0.2563608066044119,0.2645202379192303,0.2707268026429187,0.278324437224414,0.2848698793202529,0.2920656391271847,0.2985176903379377,0.3035977713568145,0.3080459770114943,0.3120943952802359,0.3161997346397224,0.3202129040633519,0.3241984359079541,0.3226107037232103,0.3215676526638495,0.3208131737543502,0.3210009300162753,0.320055560534098,0.3177798625101887,0.3159826493159826,0.3171635644869049,0.3174404445435368,0.3188538087056128,0.3202806912208942,0.3204991298845119,0.3206890770391483,0.3216522882810584,0.3236592151971601,0.3245666467423789,0.3265271348649646,0.3290924512298558,0.3331813398807436,0.335871505056514,0.3401038345933145,0.342524705132292,0.3447819510965465,0.3462442204199196,0.3487657196087564,0.3519876952200662,0.3491070065638834,0.3495263051804071,0.3519955654101995,0.3525516166731593,0.0,2.402544159511017,56.57631588694716,178.65285786484108,264.66458303821,fqhc6_100Compliance_implementation_low_initial_treat_cost,28 -100000,95614,45134,428.4832765076244,6054,62.13525215972556,4709,48.62258665049051,1931,19.78789716987052,77.28554750318864,79.71681640210188,63.27381344368565,65.07166850293486,77.04431594294384,79.47737071881288,63.18451010792344,64.98552065749833,0.2412315602447989,239.44568328900573,0.0893033357622101,86.14784543652831,158.34478,111.35241209612342,165608.36279205975,116460.36364562032,399.69634,263.0755078165437,417413.8201518606,274525.9248818622,383.80628,186.4928427272826,396972.1379714268,191615.512811339,3093.37107,1416.8065916181915,3195535.266801933,1442063.517495547,1132.98455,498.7724336849624,1167269.583952141,503964.925309015,1892.15644,789.9483105225967,1940439.517225511,793750.240979437,0.3797,100000,0,719749,7527.652854184534,0,0.0,0,0.0,34531,360.5016001840734,0,0.0,35082,362.6351789486895,1568609,0,56288,0,0,0,0,0,57,0.5752295688915849,0,0.0,0,0.0,0,0.0,0.06054,0.1594416644719515,0.3189626693095474,0.01931,0.3283699059561129,0.6716300940438872,24.65965643230497,4.316927229731624,0.323423232108728,0.2282862603525164,0.2172435761308133,0.2310469314079422,11.154436849768674,5.853213089037228,20.474750398883234,12124.205426488854,53.5332330127579,12.995951073291373,17.282892776215093,11.478461002163844,11.775928161087595,0.5502229772775536,0.7813953488372093,0.6815495732107683,0.5689149560117303,0.1204044117647058,0.7310398749022674,0.9133663366336634,0.8547619047619047,0.7142857142857143,0.1330049261083744,0.482798833819242,0.7019374068554396,0.6155938349954669,0.5214007782101168,0.1175141242937853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002199027158492,0.0046151193337999,0.0068431953864273,0.0089444529145703,0.0111911447523704,0.0132017235583534,0.0155155001989166,0.0178367113435763,0.0199547923208313,0.0219268150302633,0.0241890810611189,0.0262227702424989,0.0282343979989912,0.0305013812724199,0.0325355195770692,0.0347124534546959,0.0367150259067357,0.0386328940399414,0.0407698072359382,0.0426914491937334,0.0567722107815979,0.0708738983263993,0.084026019062431,0.0967592397488305,0.1095347756274824,0.1246425318279068,0.13663705152185,0.1484040171432226,0.1592453476302075,0.1686060879562475,0.181122669198895,0.1931951251246909,0.2058044617849319,0.215981064673782,0.2258398844504228,0.2361180479250602,0.2459366406581859,0.2544968893697593,0.2627738885353214,0.2705125706489963,0.2773081020984852,0.283477568418957,0.2900992329306318,0.2961384212675008,0.3017476389835459,0.3061363019277762,0.3101936518275421,0.3147192600236976,0.3187035523909575,0.3232147103114845,0.322043488804462,0.3205221673521603,0.3194428780872899,0.3180424596517614,0.3173015471961714,0.3155021164345745,0.3126576055064787,0.3129976966107272,0.3130644499178981,0.3141680837733822,0.3146817729924406,0.3169107329894666,0.3179013641133263,0.3180781103207623,0.3202674105425163,0.3213932677800322,0.3217484975620818,0.3261931604659902,0.3315915978681158,0.3345320897881758,0.3374347332576617,0.3405517022290464,0.3405633094429774,0.3458595348132434,0.3482326538245745,0.3476930320150659,0.3494894071025758,0.3519417475728155,0.3507767784137367,0.3487933634992458,0.0,2.44405029583785,55.83477444639013,175.26727529026954,257.543836649481,fqhc6_100Compliance_implementation_low_initial_treat_cost,29 -100000,95820,45208,428.9501147985807,5876,60.290127322062204,4616,47.71446462116469,1723,17.689417658108955,77.35864855579545,79.66393806905121,63.35358995694328,65.05435253548994,77.14523897891048,79.45058571020222,63.27534092429311,64.97845227396392,0.2134095768849704,213.3523588489936,0.078249032650163,75.90026152601581,159.13282,111.9509703667528,166074.74431225212,116834.6591178802,400.50813,263.3576849098104,417496.8900020872,274363.4678666359,380.80061,184.360282020563,394696.5351701106,190339.0113653057,2992.88957,1353.5268231480447,3095044.7714464623,1384167.3483072892,1096.57107,479.52973268108207,1134116.9380087666,490200.730395494,1691.34754,702.5058910344912,1737877.582968065,709189.0996366099,0.3805,100000,0,723331,7548.852014193279,0,0.0,0,0.0,34623,360.8328115216031,0,0.0,34766,360.0709663953246,1570366,0,56335,0,0,0,0,0,78,0.8140262993112086,0,0.0,1,0.0104362346065539,0,0.0,0.05876,0.1544283837056504,0.2932266848196052,0.01723,0.3274090983205609,0.6725909016794391,24.473251659795963,4.400018034829033,0.3318890814558058,0.2411178509532062,0.2097053726169844,0.2172876949740034,11.333432545970318,5.802835470574502,18.33810804705709,12120.06970377934,52.05146747855531,13.156936695680002,17.394940587564406,10.61517385743999,10.884416337870926,0.5721403812824957,0.7646001796945193,0.7030026109660574,0.6157024793388429,0.1166500498504486,0.7368421052631579,0.9198966408268734,0.8517587939698492,0.7064676616915423,0.1614583333333333,0.5157068062827225,0.6818181818181818,0.6507936507936508,0.5919165580182529,0.1060419235511714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023379147015363,0.0046389611968114,0.00696493202348,0.0092544674114889,0.0115721455712921,0.0137225980367224,0.0158497331214602,0.0179429375822427,0.0199211327462558,0.0220033143067575,0.0240802196001311,0.0259298008082548,0.0279550007705347,0.0303669554837514,0.0321998597764671,0.034258389019138,0.0363288323244865,0.0386162426655055,0.0404989924590232,0.0420895926377047,0.0561786030984299,0.06996267681467,0.0831158486096699,0.0959992433557174,0.1085994309200126,0.1236116541790398,0.1359448714550755,0.14706820986341,0.158040270749258,0.1681639829327386,0.1814198354937341,0.194130754586362,0.2056018875925583,0.2161106857705348,0.2267108435061146,0.2358664095915608,0.2446886855612586,0.2539645050273297,0.2623190707382367,0.2699174329787112,0.2781698287829708,0.2847080022933901,0.2906379453189726,0.2959767015424441,0.3010000121508159,0.3061755172966244,0.3101196953210011,0.3143282102131879,0.3186471829254086,0.3229661285216841,0.3220633148115758,0.321457534397207,0.3207841703348474,0.3199174853219082,0.3185029087023626,0.3171287098450347,0.3149699652228896,0.3149287272607975,0.3162864558431801,0.3168483115954976,0.3170133033539442,0.3181001283697047,0.3190726727733876,0.3195427448703923,0.3203256327746026,0.3208630090527249,0.3211066742726754,0.3253308128544423,0.3279547212261829,0.331834281848211,0.3327724213207204,0.3343607184610479,0.3363550519357884,0.337688135075254,0.3391434729641083,0.3365520489872821,0.3416832136856575,0.3441756454563935,0.3553441522104085,0.3588328075709779,0.0,1.7306548333241154,51.96469277824147,173.06124549874212,260.15299111672635,fqhc6_100Compliance_implementation_low_initial_treat_cost,30 -100000,95852,45182,427.4715185911614,6134,62.596502942035634,4751,48.88786879772983,1885,19.18582815173392,77.41454581429173,79.70399237031305,63.37712166936033,65.06828346680153,77.17118983000087,79.46501777298765,63.28539313109943,64.98119253617706,0.2433559842908579,238.9745973253952,0.0917285382609023,87.09093062446982,161.17948,113.33356020632472,168154.5299002629,118238.075581443,404.63944,266.113572678169,421483.3493302175,276963.92370771465,385.50889,187.0709406475069,398222.8122522222,192023.5986175498,3109.19993,1451.4249705691177,3200933.219964111,1471697.5717411384,1108.47892,494.2218601504675,1139877.5821057465,499219.925684628,1846.47514,790.9100333208834,1883009.2851479363,789290.7263463617,0.38128,100000,0,732634,7643.387722739222,0,0.0,0,0.0,34789,362.2250970245796,0,0.0,35381,365.1775654133456,1560209,0,56062,0,0,0,0,0,74,0.7720235362851062,0,0.0,2,0.0208655009806785,0,0.0,0.06134,0.1608791439362148,0.3073035539615259,0.01885,0.3515443116560608,0.6484556883439392,24.099559271484573,4.295461962858856,0.3260366238686592,0.2311092401599663,0.2266891180804041,0.2161650178909703,11.273523909267052,5.885285600170689,20.224774029134156,12133.582343820512,54.49226022822416,13.246432562531393,17.816324056726533,12.07700256418634,11.352501044779892,0.5632498421384972,0.785063752276867,0.6952872821174951,0.5979572887650882,0.0905550146056475,0.7126099706744868,0.9225352112676056,0.8387850467289719,0.7178571428571429,0.0826086956521739,0.5031000885739593,0.6979166666666666,0.64049955396967,0.5558343789209536,0.0928481806775407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021764437920736,0.004680613950661,0.0072806919699443,0.0095628692668466,0.0115967069824169,0.0138890302099125,0.016320293398533,0.0184626055734628,0.0205422080575304,0.0224817936339088,0.0245731201409446,0.0266286452830575,0.0288937753026037,0.0310344827586206,0.0331168161666151,0.0350761222086802,0.0371742211829948,0.0391016871865025,0.0410368740137862,0.0429197049920422,0.0574637137137137,0.070858241712303,0.0850270292922096,0.097527169633013,0.1097444106279684,0.1250607347318165,0.1363554500863411,0.1472654796704756,0.1581042006764615,0.1683768556800411,0.180558394749583,0.1927809857479616,0.2048208483215058,0.215569058599812,0.2251338250327005,0.235753101723241,0.2450650190707737,0.2546337406004473,0.2629811945647982,0.271140832006962,0.2778825353122867,0.2842539853335049,0.2911416367917273,0.29598820554004,0.3010063932712643,0.3065144491567215,0.3107416079231723,0.3151417189548307,0.3186981327800829,0.3234536593097436,0.3223347519258741,0.3204435090036179,0.3197229105654426,0.3172411801233266,0.3166921580565166,0.3146153375359569,0.3124614679334166,0.3128360655737704,0.3132456095438021,0.3147316655976053,0.3155239109715759,0.3166824494949495,0.3172046380445001,0.3181281337047353,0.3185840707964602,0.3198805349954551,0.3224277850292265,0.3243293882521937,0.3276585331748584,0.3306033630069238,0.3336045565500407,0.3390822784810126,0.3436682853940979,0.3459808038392321,0.3502505102987567,0.3496536339086533,0.3583042090867649,0.3588283157038242,0.3578889499725123,0.3553183377811666,0.0,2.567647386277692,59.60850779465103,176.90750051827084,251.510654350956,fqhc6_100Compliance_implementation_low_initial_treat_cost,31 -100000,95703,44969,427.4474154415222,5905,60.40562991755744,4631,47.74145011128178,1826,18.66190192574945,77.36002699221102,79.73184018871125,63.33690834044432,65.08850474197425,77.13112505654011,79.50651104163232,63.251232825907024,65.00709305866421,0.2289019356709047,225.3291470789236,0.0856755145373,81.41168331003712,159.31762,112.09634834379403,166470.8734313449,117129.39860170949,398.57001,261.4803595976593,415829.6814101961,272584.79838422965,378.88611,184.594736461724,392014.0747938936,189861.606189021,3042.38741,1393.1642621108672,3139492.899909094,1416220.7476368204,1094.44806,485.7773743041647,1130200.6624661714,494207.3424980069,1791.90628,756.5465979072903,1833883.3683374608,757202.1831320389,0.3793,100000,0,724171,7566.857883242949,0,0.0,0,0.0,34458,359.38267347941024,0,0.0,34616,357.79442650700605,1570947,0,56356,0,0,0,0,0,61,0.6373885876095838,0,0.0,0,0.0,0,0.0,0.05905,0.1556815185868705,0.309229466553768,0.01826,0.3408354922279792,0.6591645077720207,24.497889939454243,4.354317860284452,0.3293025264521702,0.2375296912114014,0.2072986396026776,0.2258691427337508,10.909866690184254,5.4525652229867685,19.456540245522643,12043.330122692463,52.391056606736846,13.143797477708205,17.220158793766675,10.57570185187775,11.45139848338421,0.5715828114877997,0.7854545454545454,0.7259016393442623,0.575,0.1185468451242829,0.7288135593220338,0.9166666666666666,0.8737113402061856,0.6933333333333334,0.1559633027522936,0.5141509433962265,0.708092485549133,0.6754617414248021,0.5387755102040817,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586624261883,0.0043690255349775,0.0061901910840952,0.0084418618826063,0.0107307050734366,0.0129118976823754,0.0148725790010193,0.0172895956235073,0.0193202146690518,0.0213968344970208,0.0236933297791629,0.0256354975155024,0.0277343589321706,0.0296535102175346,0.0316959172934658,0.0337772171791319,0.0357923525572625,0.0377709042597359,0.0396193051799459,0.0414834420523935,0.0558648132095374,0.0703587016820356,0.0831418709806019,0.095929315241401,0.1082220956959996,0.1236031083152719,0.1353361126139027,0.1469270473048475,0.1577772556390977,0.1681541234016991,0.1803490627020038,0.192514121237042,0.2037888421533144,0.2138531167326234,0.2243569299798748,0.2347273291099986,0.2430918887562611,0.2516866819592497,0.259934919897051,0.2677796480139237,0.2749392853012605,0.2821393924518157,0.2880491987463781,0.2938563406252619,0.2987870767213433,0.3044608108773831,0.3095372142776714,0.3136843710679833,0.317989465919532,0.3216797055370123,0.3202666307568004,0.3192312457838291,0.3182138627262986,0.3171031510751833,0.3165685749955413,0.3140604668962878,0.3121077509208467,0.3125747130201254,0.3123476363388397,0.3125923552137299,0.3141532536967453,0.3153670177099357,0.3162651859892289,0.317300198187365,0.3193146417445482,0.3212058212058212,0.3230257168866636,0.3263849588128026,0.3314959800582804,0.3353233830845771,0.3398648031424134,0.3447193402500665,0.3427297840281266,0.3461334142824618,0.3524253731343283,0.3569154580827732,0.3596171376481312,0.3650282030620467,0.3613098514034122,0.3648960739030023,0.0,2.5334706083395955,53.74605608137934,171.13538755449514,255.92994597369852,fqhc6_100Compliance_implementation_low_initial_treat_cost,32 -100000,95754,45087,427.3346283183992,6071,62.169726591056246,4735,48.885686237650646,1887,19.28901142511018,77.33346816806463,79.69543218578089,63.32120940122799,65.07011067946266,77.09231412185657,79.45861588035419,63.2311019329374,64.98491549212676,0.2411540462080523,236.81630542670007,0.09010746829059,85.19518733589848,158.12236,111.19156684712767,165133.94740689686,116122.11171034913,398.58411,262.31424924835915,415673.3504605552,273360.9031981528,382.57362,186.0995866826643,396987.23813104414,192299.79240930272,3118.88286,1430.435916000509,3216607.4106564736,1453742.2409009729,1158.94197,517.2035601126414,1190142.5632349562,519947.73607591377,1849.26772,785.3716786715881,1890247.049731604,782410.3013615051,0.37861,100000,0,718738,7506.08851849531,0,0.0,0,0.0,34398,358.63775925809887,0,0.0,34969,362.5958184514485,1575486,0,56517,0,0,0,0,0,55,0.5743885372934812,0,0.0,1,0.0104434279507905,0,0.0,0.06071,0.1603497002192229,0.3108219403722616,0.01887,0.3248938512344708,0.6751061487655292,24.701203944715623,4.435055326390386,0.3275607180570222,0.2249208025343189,0.2240760295670538,0.223442449841605,11.36642022614152,5.888806724345816,20.268825486772734,12096.576176389544,53.68767848947498,12.744728293753075,17.318280468461513,11.964475844435556,11.66019388282484,0.5564941921858501,0.7981220657276995,0.6782720825274017,0.5730442978322338,0.1181474480151228,0.7180892717306187,0.9172932330827068,0.862796833773087,0.6966292134831461,0.1637931034482758,0.496818970503181,0.7267267267267268,0.6186006825938567,0.5314861460957179,0.1053268765133172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381073002685,0.0045531983937046,0.0067291882345776,0.0092259546018004,0.0111267061288419,0.0132065289331934,0.0154242955592708,0.017574656569574,0.0197559380237929,0.021864411984482,0.0241637021621233,0.0261690878291668,0.0283105210657836,0.0305146187989825,0.0322926768875224,0.0345740007648657,0.0364176693519995,0.0385178113747911,0.040536466184956,0.0425372357046141,0.0570715717387673,0.071099621109041,0.0840731180087724,0.097532500315537,0.1098209200784661,0.1255419495378888,0.1366091228368011,0.1479328990505386,0.1582747644784345,0.168482807439027,0.1811982202303358,0.1934796251812417,0.2048705147866566,0.2146333993283818,0.224026402640264,0.2348785187482004,0.2440274180584085,0.2526418852763429,0.2622822447937354,0.2690101333944009,0.2756283470395688,0.282258819126041,0.2888228890571753,0.29539191488342,0.2998070458599808,0.3049118186405425,0.3098375,0.3135769836832207,0.3182482696164047,0.3228079435244441,0.3217615044724647,0.3198734699491129,0.3192738846327174,0.3180129252389145,0.3174756559875121,0.3153092364550905,0.313486529318542,0.3135093397295832,0.3140175090623076,0.3150885722968021,0.3162748847148802,0.3180730988950167,0.3184786704064972,0.3194366826869341,0.3212385332145522,0.3216404840944141,0.3218017710201873,0.3231524922069335,0.3270294065856665,0.3315868857664523,0.3356391935557274,0.3361670474470007,0.3399722677423421,0.3433279926756695,0.3452437069859527,0.3466140224934195,0.3471391317686761,0.3504395829073809,0.3593618807724601,0.3613477924089853,0.0,2.1374502475665453,56.08668939152331,171.5171441771707,265.3823352528155,fqhc6_100Compliance_implementation_low_initial_treat_cost,33 -100000,95792,45201,428.25079338566894,6003,61.37255720728245,4680,48.21905795891097,1855,18.947302488725573,77.34149214859087,79.68319457055695,63.33904717832892,65.07356597681137,77.10713462922547,79.45176588385503,63.252098225023424,64.99048181145514,0.2343575193654032,231.4286867019177,0.0869489533054945,83.08416535622598,159.24964,112.02597457778084,166245.23968598628,116947.10892118428,399.39542,262.9430252976363,416315.3812426925,273868.83591284894,378.69092,183.99972709258736,391850.0605478537,189211.9821438868,3080.24746,1411.0093497026942,3175016.1704526474,1432450.914171009,1093.70352,484.7994407784248,1121813.658760648,486163.1918459247,1819.27354,765.4053521358863,1859683.1050609653,764063.0608327992,0.38135,100000,0,723862,7556.601803908468,0,0.0,0,0.0,34490,359.38282946383833,0,0.0,34592,357.60815099381995,1573555,0,56362,0,0,0,0,0,73,0.762067813596125,0,0.0,0,0.0,0,0.0,0.06003,0.1574144486692015,0.3090121605863735,0.01855,0.3367265786543661,0.6632734213456338,24.66715112726466,4.368173506843486,0.3241452991452991,0.2356837606837606,0.2185897435897436,0.2215811965811965,11.05808088041802,5.649087294614674,19.67202828399158,12183.103329017293,53.16852593669774,13.287479341352617,17.1357142032885,11.390080428088794,11.355251963967817,0.5551282051282052,0.7896645512239348,0.6644693473961767,0.5718475073313783,0.1292189006750241,0.7322580645161291,0.9090909090909092,0.8817204301075269,0.7068965517241379,0.1651376146788991,0.4912790697674418,0.7167883211678832,0.5938864628820961,0.5322376738305942,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044605293837373,0.0065858237353493,0.008850546681299,0.0111105458615251,0.013109777836632,0.0149212630548302,0.0172063433712179,0.0190504432832615,0.0213293193663666,0.0234186754708855,0.0257234396500379,0.0279874925428401,0.0303585961080836,0.0325539642577077,0.0344610168790763,0.036365895582662,0.0384862756488723,0.0406396774595785,0.0428794503435352,0.0576862884210087,0.0717362664937998,0.0845978119629458,0.097028100632632,0.1096567496074277,0.1260371854091135,0.1383514444738934,0.1498064406347045,0.1600930798544026,0.170109225772566,0.1835238648840663,0.1950394100920109,0.2060737762807627,0.2169071038251366,0.2267204697137956,0.237157344670298,0.2461989477438915,0.2552295617610401,0.2642522253176598,0.2715757222393707,0.2786750868767101,0.2856325663386217,0.2915923190546529,0.2962674868063616,0.3019092210281167,0.3072748751015184,0.3118635596926344,0.316409572779788,0.3210945170792207,0.3253941100613206,0.3238883810957578,0.3228168008131198,0.3216879680198187,0.3204130262112788,0.3190285204991087,0.3176922370796487,0.3159361099238574,0.3166157585312182,0.3167900432530388,0.3177463177463177,0.3178482271899694,0.3187670852977299,0.3203225061414744,0.3213957553618251,0.3213803088803089,0.3233985765124555,0.3238918732584528,0.3275227027370292,0.3311497468219964,0.3329469603101643,0.336695219673943,0.3390884718498659,0.3405949423530161,0.3429278861033735,0.3437797675747761,0.3475500179705283,0.3538052820753242,0.3539162867799419,0.3591470258136924,0.3609831029185867,0.0,2.483046562294967,53.88944239220268,177.78192956967865,257.2795804748323,fqhc6_100Compliance_implementation_low_initial_treat_cost,34 -100000,95700,44954,425.8411703239289,5971,61.12852664576803,4718,48.69383490073145,1872,19.237199582027166,77.3419109081298,79.71094623420447,63.33255108723839,65.08101639485442,77.11264396567287,79.48185430784645,63.24662152475438,64.99748127028042,0.2292669424569311,229.0919263580236,0.0859295624840044,83.53512457399859,158.76168,111.6588622310947,165895.1724137931,116675.92709623271,398.16385,262.7921489826052,415460.762800418,274007.5911147535,380.56938,185.26787779564623,393480.9508881922,190402.7382300882,3109.23658,1417.9594502011378,3213638.2967607104,1446446.8899407322,1135.04049,502.4896804910068,1169931.7241379311,508994.4696780282,1831.86502,769.2271303927769,1884786.896551724,778014.1457518723,0.37913,100000,0,721644,7540.689655172414,0,0.0,0,0.0,34394,358.77742946708463,0,0.0,34844,359.90595611285266,1571976,0,56375,0,0,0,0,0,69,0.7105538140020898,0,0.0,1,0.0104493207941483,0,0.0,0.05971,0.1574921530873315,0.3135153240663205,0.01872,0.3481943112815596,0.6518056887184404,24.540691034256945,4.331712667265755,0.3192030521407376,0.2414158541754981,0.218524798643493,0.2208562950402713,10.90895016747353,5.593107646900749,19.904123330496464,12107.543408770278,53.44412356666604,13.725566945820155,17.032437773658184,11.344048115431518,11.342070731756175,0.5671894870707928,0.7945566286215979,0.6952191235059761,0.5945683802133851,0.1065259117082533,0.7420127795527156,0.9327146171693736,0.8578947368421053,0.7124463519313304,0.1682692307692307,0.5040392383150606,0.71045197740113,0.6403197158081705,0.5601503759398496,0.0911270983213429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019948963058976,0.004337691294213,0.0066342057212416,0.0090192573332249,0.0112661162402895,0.0135721267410605,0.0157599111083927,0.0180860618927084,0.0201860179885527,0.0223320744675407,0.0246130189646335,0.0264403577406072,0.0288552507095553,0.0308153551338319,0.0328359441107877,0.0349400953099641,0.0370239956917532,0.0388854296388542,0.0409786632283824,0.0428633957230397,0.0574209652320128,0.0715452090355266,0.0854684713041653,0.0975576405250757,0.1100773231220397,0.1255409423241739,0.1374949606399456,0.1480677099968061,0.1578952991452991,0.1677519712492624,0.1797404275943777,0.1919201757518695,0.2033112870942476,0.2139060825441263,0.2239661240651121,0.2349861069598043,0.2445081290840562,0.2539598673486594,0.2622844827586207,0.2692897525692966,0.2766698285634963,0.2834944185719969,0.2897331203029765,0.2949049775924461,0.299599076661402,0.3039296679449082,0.3085181009645497,0.3131751383675806,0.3174161304105758,0.3218107538218239,0.320496944571567,0.3191451346893897,0.3186681852054948,0.31745413637937,0.3173524787136203,0.3157170593001391,0.3136424678094636,0.3143751844443715,0.3161479761681205,0.3168258502186914,0.3173559601408556,0.3178988557538388,0.3185862995298858,0.3187792481135666,0.3197062718189479,0.3220060504902983,0.3231015005420208,0.3261882278879446,0.3298947294299897,0.3328949990037856,0.3360980722781753,0.3389911673938491,0.3446972083937236,0.3498473282442748,0.3531689808255407,0.3566674589969099,0.3613868947609592,0.3611111111111111,0.3625486922648859,0.3687022900763358,0.0,2.367790687188442,54.57201123986789,177.14782908114023,259.61975031187734,fqhc6_100Compliance_implementation_low_initial_treat_cost,35 -100000,95700,45393,429.36259143155695,6094,62.215256008359454,4746,48.913270637408566,1838,18.798328108672937,77.33810060160408,79.72344706034593,63.31256206328344,65.07596749199531,77.10991741233293,79.49704111495788,63.2278861859421,64.99427977199908,0.2281831892711494,226.40594538805203,0.0846758773413398,81.68771999623914,158.79468,111.72554795234464,165929.6551724138,116745.60914560567,400.07652,263.614718023734,417384.84848484845,274791.8616271546,387.26437,189.31607653243856,400715.3500522466,194607.3176742872,3054.62299,1413.738425240007,3152417.5339602926,1437823.5665695707,1142.06411,512.286875788279,1177217.554858934,519167.8273979154,1798.22394,755.9643788018291,1841723.3228840125,758941.6935912721,0.38226,100000,0,721794,7542.257053291536,0,0.0,0,0.0,34548,360.282131661442,0,0.0,35440,366.25914315569486,1567652,0,56318,0,0,0,0,0,67,0.7001044932079414,0,0.0,0,0.0,0,0.0,0.06094,0.1594202898550724,0.3016081391532655,0.01838,0.3374194562313374,0.6625805437686626,24.470198980888227,4.307058741615118,0.3268015170670038,0.2473662031184155,0.2094395280235988,0.2163927517909818,11.496620693153185,6.133423717330881,19.49853820511155,12191.100508754278,53.8741428075557,13.967813479779316,17.662651627971417,11.082127275718513,11.161550424086446,0.5762747576906869,0.7921635434412265,0.7111540941328175,0.5734406438631791,0.1285296981499513,0.7507418397626113,0.922077922077922,0.8729411764705882,0.7531380753138075,0.1576576576576576,0.5070629782224838,0.7078651685393258,0.650088809946714,0.5165562913907285,0.1204968944099378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002300784496564,0.0047068370866301,0.0070359615814161,0.0092078785291786,0.0114365950692402,0.0137503946872549,0.0159822940252534,0.0183030835384599,0.0207496037224523,0.0228433932319664,0.0250105107722597,0.0272523771383977,0.0291084446363757,0.031285721641522,0.0333828505405628,0.0354249338624338,0.0374600084901069,0.0396522388679088,0.0417398717135698,0.0440425842205045,0.058868373783366,0.0724275096828221,0.084915954924139,0.0977577249111293,0.1100940650440798,0.1257721926038757,0.137788341149757,0.1494085202891915,0.1600286395161204,0.1696722630477927,0.1826879565582778,0.1955806249052681,0.2067467833583698,0.2175944671211739,0.2272852347146552,0.2373942826739971,0.2464650300444524,0.2555746912954896,0.2627657641286571,0.2700394368780667,0.2766196465383457,0.2832451168673006,0.2894440693225298,0.2940569962474073,0.2993412256605975,0.3048033964406487,0.3102363586234554,0.3152589458660414,0.3194023274499131,0.3232436571006151,0.3217117396045068,0.3198910306682627,0.3187213968879814,0.3183150659215295,0.3185044397588572,0.3181456304733909,0.3164568970969578,0.3173593811459289,0.3183183183183183,0.3191777647037849,0.3199610625432898,0.321395449791827,0.322067969093536,0.3226549741616518,0.3236862330675377,0.3254776904928573,0.3259150058118107,0.3304424058361251,0.3356719022687609,0.3381535915520706,0.3423942394239423,0.3447588053120571,0.3478747203579418,0.3509680324178298,0.3550657529172069,0.3567986837466212,0.3509274619212788,0.3512272999401317,0.3532284319045035,0.3598786499810391,0.0,2.607741037239289,58.69709940643297,170.86966130376103,255.0590513722075,fqhc6_100Compliance_implementation_low_initial_treat_cost,36 -100000,95656,44628,424.61528811574806,5828,59.891695241281255,4612,47.69172869448858,1785,18.273814501965376,77.27782633283482,79.68834063462104,63.2892740309558,65.0719991598051,77.06143150779158,79.47525416244325,63.209512033329,64.99653026184293,0.2163948250432383,213.08647217779253,0.0797619976267967,75.4688979621676,160.0599,112.56451670287784,167328.65685372584,117676.3785887742,398.83008,261.8566715687475,416430.6786819436,273236.9339808768,379.49398,183.70180635503445,393975.23417245125,189860.47087637283,3023.8331,1358.8094165505422,3126279.31337292,1385642.3606993204,1129.6769,489.7387513760707,1163975.1609935602,494975.6746843581,1754.77694,720.8292154332588,1797320.105377603,719971.0537387562,0.37632,100000,0,727545,7605.84803880572,0,0.0,0,0.0,34402,359.09927239274066,0,0.0,34620,359.1724512837668,1565804,0,56197,0,0,0,0,0,83,0.8676925650246717,0,0.0,0,0.0,0,0.0,0.05828,0.1548681972789115,0.3062800274536719,0.01785,0.3299525601177818,0.6700474398822183,24.525964700298623,4.406091747341102,0.3248048568950564,0.2346053772766695,0.2192107545533391,0.2213790112749349,11.123903235464812,5.678436766152205,18.72099733000305,11959.932106479197,51.99700807910404,12.998618890837696,16.89546822010584,11.053519857290055,11.049401110870448,0.5732870771899393,0.8022181146025879,0.7162883845126836,0.5736894164193868,0.1204701273261508,0.7402707275803723,0.905852417302799,0.8958904109589041,0.7440758293838863,0.1643192488262911,0.5157434402332362,0.7431059506531205,0.6584289496910856,0.52875,0.1089108910891089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021380945625519,0.0046142300827519,0.0068016161452094,0.0089636879173145,0.0110483747901724,0.0132231741730422,0.0152779194288628,0.0174246989490026,0.0193940385834987,0.0215117648866534,0.0235384615384615,0.0255354116378203,0.0277000329272308,0.0296212316413295,0.0317368546030828,0.0336346523798688,0.0354803945950426,0.0371316428882935,0.0389922577422577,0.0410506120576397,0.0555102723263736,0.0694154980467727,0.0830805403646516,0.0959747434885556,0.1080544915424145,0.1236451011940045,0.13517617823843,0.1465540202209603,0.1569321597022428,0.1668545538484663,0.1797521551724138,0.1918275425242802,0.2034719198955158,0.2133924175283111,0.2220730190527555,0.2324362653312208,0.2413904734262845,0.2501153253299429,0.2581893274936743,0.2657617963126151,0.2726253237143914,0.2794371990838125,0.2854236887233162,0.2910167014113531,0.2960160330377748,0.3004204011687399,0.3046324458963864,0.3094520147079405,0.3146377487562189,0.319577291977255,0.3181977417877065,0.3170667842672473,0.3158050680060951,0.3141439277756879,0.3138077804565883,0.3113680626907328,0.3101441461442096,0.3107192208988616,0.3114521316635872,0.3121524735835225,0.3127859017622797,0.3139024100676718,0.3158137390502535,0.3170748056126553,0.3175930598611011,0.3189518332509303,0.3207396643587771,0.3247580314637914,0.3278068438914027,0.3324275724275724,0.3348594451057595,0.3406441309555496,0.3441546137813427,0.345841006752609,0.3461865608165579,0.3513093387540356,0.354424504950495,0.3557394002068252,0.3591687728166245,0.3566190659976843,0.0,2.0333590031137883,52.04567528659788,171.8692470226288,259.24401463875245,fqhc6_100Compliance_implementation_low_initial_treat_cost,37 -100000,95820,45367,430.2650803590065,5839,59.6117720726362,4581,47.25527029847631,1804,18.503443957420163,77.39792083527668,79.70262479577744,63.37134666233783,65.07184434775169,77.17492273109168,79.47946109716251,63.288094004169416,64.99061501548955,0.2229981041849953,223.1636986149255,0.0832526581684121,81.22933226214002,158.70536,111.53820389800012,165628.6370277604,116403.88634731804,398.81925,262.6583424829572,415682.59236067627,273587.5880846827,377.83798,183.81841520445712,390171.8743477354,188636.9130254356,3006.12901,1361.726511796693,3102482.018367773,1386724.5736312242,1074.27707,471.46709958720766,1108902.7029847633,479800.2153195648,1773.67696,741.6811525812848,1820620.6219995825,748066.6267547399,0.38243,100000,0,721388,7528.574410352745,0,0.0,0,0.0,34455,359.00647046545606,0,0.0,34516,356.2304320601127,1574968,0,56429,0,0,0,0,0,70,0.720100187852223,0,0.0,0,0.0,0,0.0,0.05839,0.1526815364903381,0.3089570131871896,0.01804,0.3379705400981996,0.6620294599018003,24.628341896581592,4.41269204569639,0.3075747653350796,0.2447063959834097,0.2202575856799825,0.227461253001528,11.04282371445431,5.505721144876002,19.124739208198758,12111.68691473611,51.52039422012498,13.278052113399657,15.769681046711405,11.160135919327958,11.312525140685986,0.5540275049115914,0.7850133809099019,0.6976579134137686,0.5698711595639246,0.0959692898272552,0.7377049180327869,0.9394736842105263,0.8841463414634146,0.7396694214876033,0.138755980861244,0.4918176504967855,0.7058029689608637,0.6410730804810361,0.516297262059974,0.0852340936374549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020652790151453,0.0044685831247656,0.0069070439677468,0.0091690951737863,0.0112739915419648,0.0134538275223382,0.0156507917099712,0.0180260137719969,0.020158571224227,0.0223650017392727,0.0243122790840633,0.0264480784619488,0.0285511743070252,0.0306145550341648,0.0327142297623219,0.0347843145352799,0.0366324239884961,0.0389080054724099,0.0405798305366339,0.0425235201065689,0.0570489751212642,0.0708585652578624,0.0842604145914376,0.0973137780581401,0.1098590658500848,0.1253819073696229,0.1370428106342591,0.1477763821769953,0.1584154184739642,0.1685741561102232,0.1808370850655924,0.1929230536233922,0.2047231252650234,0.2154502214203706,0.225227107757957,0.2353931153603419,0.2447618729022402,0.2536002967926161,0.2619735872584027,0.269859064702114,0.2769520595441727,0.2831978319783197,0.2898184053721744,0.2948714880582013,0.3001151445366947,0.3053198553825721,0.3097128589263421,0.3140960552368381,0.3184091819721077,0.3227321771625569,0.3220764235496163,0.3205441132106519,0.3192063023971015,0.3178354866122225,0.3163024961113991,0.3142203234665853,0.3135145367638939,0.3150626656631434,0.3157742303695248,0.3171205186201001,0.3167697222170331,0.3178378591416072,0.3178637816161574,0.3184946813265397,0.3199153561294666,0.3201218718262545,0.3210807414388941,0.3239347778093165,0.3247812181492285,0.3294570566756628,0.3337595907928389,0.338290953675569,0.3389369904569297,0.3418659738671964,0.3463359212270403,0.349423374152895,0.3485617597292724,0.3534169025475131,0.3583673469387755,0.3651877133105802,0.0,2.153239744583163,50.52671271557725,176.09212887614382,252.68117422329,fqhc6_100Compliance_implementation_low_initial_treat_cost,38 -100000,95549,44974,427.91656636908806,5887,60.346000481428376,4657,48.11144020345581,1827,18.691980031188184,77.19945181010942,79.67056724006143,63.224607941291474,65.05368842724316,76.96650777399633,79.44154276912194,63.13660942902013,64.97046978577197,0.2329440361130963,229.02447093949263,0.0879985122713407,83.21864147119129,158.73396,111.6704751125455,166128.33205999015,116872.46869412082,396.76224,260.5135303336889,414608.7661827963,272013.1245054254,374.33482,181.9848524465946,388224.2095678657,187706.55046415105,3044.81773,1395.2559411427096,3146563.3549278383,1420159.322591246,1098.92908,487.1231680880004,1135150.8231378663,494855.8634080197,1794.70594,763.7878346643403,1837928.8532585371,762730.0353531361,0.37845,100000,0,721518,7551.287820908643,0,0.0,0,0.0,34292,358.2141100377816,0,0.0,34161,354.0591738270416,1567913,0,56259,0,0,0,0,0,79,0.8163350741504358,0,0.0,0,0.0,0,0.0,0.05887,0.1555555555555555,0.3103448275862069,0.01827,0.332036947010209,0.667963052989791,24.458627851312738,4.363177047406395,0.3227399613485076,0.2331973373416362,0.2235344642473695,0.2205282370624866,10.90836905603522,5.4365282721686805,19.52376247697545,12083.274391787963,52.97574927028687,13.04925660841918,17.01959031736969,11.715527043188969,11.19137530130904,0.5636675971655573,0.787292817679558,0.697272122421823,0.5734870317002881,0.121713729308666,0.7185483870967742,0.922680412371134,0.845360824742268,0.6932773109243697,0.1769911504424778,0.5074626865671642,0.7120343839541547,0.6457399103139013,0.5379825653798257,0.1061173533083645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021692633627636,0.004240985369615,0.0065500853034365,0.0085102489019033,0.0106181536832675,0.0125486758139819,0.0148288003265805,0.0173206621704475,0.0195047073270569,0.0216747455907521,0.0236816982662163,0.0258503681158228,0.0279296814656903,0.0299979368681658,0.0320570454193148,0.0339426938843112,0.0363298832216714,0.0381533408857062,0.04009375,0.0419059152694548,0.0560809255811034,0.0704697986577181,0.0837398032125136,0.0966722164850681,0.1082372340313084,0.1242193878091966,0.1369100812800544,0.1476247905482566,0.1585437714946913,0.1686634259657575,0.1812664024278293,0.1930152046275897,0.2050579879332729,0.2149267158153414,0.2248874072765807,0.234903951914851,0.2441765449925562,0.2535416360947747,0.2617361806757126,0.2692908681465141,0.2761477150116598,0.2826576576576576,0.2890499863554928,0.2945713153057915,0.2989853960365891,0.3042403569265755,0.3094314028411017,0.3142069528817193,0.3182621119625925,0.3229046730456187,0.3218935710426796,0.3202758620689655,0.3191068958703813,0.3174223998146861,0.3168715083798882,0.31478068558791,0.3126270002540005,0.3133202694024075,0.3141945773524721,0.3155338065533806,0.3165747831486255,0.3184225665033425,0.3195965296495957,0.3200897867564534,0.3220515050490409,0.3232212092633343,0.3249792340961819,0.3283177186839532,0.3312528650516591,0.3331349442526683,0.3367643057948671,0.3371576609918579,0.3404775333709344,0.3403511438777837,0.3424055368499813,0.3407100591715976,0.3461363980039316,0.3522050059594755,0.3499323410013532,0.353811149032992,0.0,2.401912505932672,54.29427969485076,173.75160584156149,258.7858878658351,fqhc6_100Compliance_implementation_low_initial_treat_cost,39 -100000,95678,45192,427.8517527540292,5977,61.28890654068856,4715,48.65277284224169,1844,18.86536089801208,77.33990302576841,79.73078949864416,63.32261558699434,65.08894680228603,77.10938131996335,79.50172083840378,63.23657270438697,65.00633065669729,0.2305217058050601,229.0686602403724,0.0860428826073658,82.61614558874442,159.56886,112.22917703269778,166776.96022074038,117298.83257666108,400.27144,264.108115177515,417719.24580363306,275405.10376211343,385.50272,187.89758229797383,398702.5334977738,193152.3843207052,3124.21496,1435.7428930326498,3226510.577144171,1461799.344292992,1116.88553,504.2052669819619,1150151.7172181692,509813.97169388575,1808.39194,768.5258645185612,1852366.6882668952,770992.0383620287,0.38073,100000,0,725313,7580.770919124564,0,0.0,0,0.0,34490,359.84238800978284,0,0.0,35345,365.21457388323336,1566052,0,56168,0,0,0,0,0,75,0.7838792616902528,0,0.0,0,0.0,0,0.0,0.05977,0.1569878916817692,0.3085159779153421,0.01844,0.3357792311373425,0.6642207688626576,24.335580401638406,4.418003619296746,0.311983032873807,0.2364793213149522,0.2271474019088017,0.224390243902439,11.263726313757944,5.845671064293907,19.848583976850964,12152.183409261872,53.66133293519336,13.411758552143736,16.666683163971058,11.93065747295364,11.652233746124931,0.5639448568398727,0.7937219730941704,0.6961250849762066,0.580765639589169,0.1209829867674858,0.7316118935837246,0.9215686274509804,0.8438287153652393,0.7419354838709677,0.1777777777777777,0.5016002327611289,0.7199434229137199,0.6415270018621974,0.5321992709599028,0.1056422569027611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0047133951649688,0.0070826272691296,0.009446227603299,0.011510732843212,0.0136810602821718,0.0158091083295959,0.017769657875398,0.0202302093555773,0.0226821429302544,0.0245732738735968,0.0267609681988954,0.0289160591072218,0.0313851922046887,0.0335531679928992,0.0355680549236941,0.0376390874619257,0.0394855665929685,0.0415075889188261,0.0436364394500099,0.0582078014332574,0.0729092508061476,0.0865149559871161,0.0995202827806766,0.1115741277996392,0.1267006622796809,0.1391968595830459,0.1500766348773842,0.1607873292535751,0.1712214943551586,0.1836273179556761,0.1958191772521694,0.2072681404477888,0.2177449329864223,0.2262161567246313,0.2361827968898832,0.2453221757322175,0.2539294996568368,0.2621929774802881,0.2700377963578055,0.2761313159355913,0.2826389457313579,0.2894649660427364,0.2948426196521822,0.3006869098764533,0.3055552134773346,0.3102840205605373,0.3141988964324764,0.317755072970488,0.3224474177288681,0.3211660158879763,0.3205216386496822,0.3191123635082775,0.3183658712942878,0.3172573739295908,0.3138611285410385,0.312922157014727,0.3130127994748933,0.3135562869860327,0.3138184150513113,0.3151261289900331,0.3156004577923359,0.315484653341139,0.3163073620180696,0.3171834780726021,0.3175679199040517,0.3196340524980762,0.3238781093745086,0.3268299529791564,0.3296824957494761,0.3312165472194502,0.3322024913861648,0.3357829282080271,0.3403932285735975,0.3434022257551669,0.3468809073724007,0.3538155072019613,0.3621886484279297,0.3621606493143017,0.3661371561410306,0.0,2.459977059613451,55.68295470989884,178.76270374517478,255.04955320597185,fqhc6_100Compliance_implementation_low_initial_treat_cost,40 -100000,95780,45207,428.8786803090416,5923,60.55543954896638,4649,47.901440801837545,1770,18.093547713510127,77.331780499572,79.6722507025047,63.32970022966426,65.06257587058916,77.10669887041854,79.44981146353915,63.24480135531416,64.98154362555093,0.2250816291534647,222.4392389655492,0.0848988743501024,81.03224503823014,159.324,112.10552129879036,166343.7043224055,117044.81238128038,399.95578,263.69877083008095,416948.2564209647,274687.8584569648,384.50659,187.420511546196,397409.772395072,192629.94843152727,3020.14513,1399.4835840367798,3113119.106285237,1421052.3429074725,1089.39071,492.3963070407573,1119054.7400292335,495757.1800383768,1721.6734,734.5074632511565,1760635.727709334,734618.1501831185,0.38028,100000,0,724200,7561.077469200251,0,0.0,0,0.0,34612,360.69116725830025,0,0.0,35181,363.1969095844644,1566982,0,56212,0,0,0,0,0,64,0.668197953643767,0,0.0,0,0.0,0,0.0,0.05923,0.1557536552014305,0.2988350498058416,0.0177,0.3351055260190108,0.6648944739809892,24.46483525300402,4.356841136865744,0.3275973327597333,0.2391912239191224,0.2252097225209722,0.208001720800172,11.477688702465157,6.107151081374456,19.003194351178447,12104.400425440845,52.90781086850619,13.43667285695949,17.25681169908455,11.538359906647694,10.675966405814457,0.5760378576037858,0.8093525179856115,0.701247537754432,0.559694364851958,0.1282316442605998,0.748650732459522,0.9212962962962964,0.8564356435643564,0.7272727272727273,0.2328767123287671,0.5092482100238663,0.7382352941176471,0.645218945487042,0.5093167701863354,0.0975935828877005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020055710306406,0.004004298284741,0.0063522989030614,0.0085334633670608,0.0108212560386473,0.0132078738072689,0.0154564548031239,0.0176303646535179,0.0196683772566498,0.0218357151631792,0.0238039099100946,0.0260182970028646,0.0279688640733771,0.0297186769265634,0.0320463200916493,0.0344260769779487,0.0364873542266503,0.0385532921213127,0.0404776255897574,0.0422866663195709,0.0566222815878448,0.0702503111892135,0.0837159569784263,0.0964965743348325,0.1085435501886156,0.1245297374984148,0.1361627253744316,0.1470441228079504,0.1585395788642354,0.1683881198302833,0.181144911623501,0.193570022284243,0.2051505133112928,0.2152481571406697,0.2256339144215531,0.2360683344042897,0.2459078584738292,0.2545583388637054,0.2630725439720575,0.27023561468184,0.2770095273332716,0.2840409613766015,0.2904439606209769,0.2954706171418983,0.3009937556187282,0.3064249599210753,0.3105970467041569,0.3150293806482862,0.3191218993529648,0.3227037951942511,0.3212347308453758,0.3192954957927734,0.3194115990990991,0.318035345288499,0.3169546676968337,0.3144980842911877,0.3121444981383189,0.3122176405841862,0.3133488419828265,0.3140776179085294,0.3143339270647792,0.316749945687595,0.3177756334955529,0.319410264441362,0.3206428760752753,0.3222976501305483,0.3225585770480588,0.3262576147710858,0.3283394007280873,0.3307957654335672,0.3327712710203709,0.3375731772219265,0.3412980098871847,0.3440745265729993,0.3472693032015066,0.3528713811105837,0.3569892473118279,0.3591606133979015,0.3626886145404664,0.3649068322981366,0.0,2.441734321737368,56.39084931694561,173.74512675541678,248.2752035644804,fqhc6_100Compliance_implementation_low_initial_treat_cost,41 -100000,95681,45135,428.3818103907777,5981,61.16156812742342,4663,48.08687200175584,1812,18.5198733290831,77.34192318165195,79.71791942574208,63.32298576779221,65.07524307538226,77.1104843736814,79.48888250395864,63.235451202546216,64.99104779071486,0.231438807970548,229.0369217834467,0.0875345652459884,84.19528466740189,158.8609,111.73529501022998,166031.81404876622,116778.9791183516,399.49357,263.4899860794998,416847.8590315736,274705.1306732788,386.6001,188.2855090556752,399787.5126723174,193413.47067055837,3068.51341,1413.0766620890615,3168099.2046487806,1437936.7398846813,1112.22388,492.2371791186682,1145962.374975178,497989.7358082245,1781.37282,762.8703890359266,1823922.3461293257,764601.7838927623,0.37979,100000,0,722095,7546.900638580282,0,0.0,0,0.0,34478,359.6847859031574,0,0.0,35223,363.886247008288,1567590,0,56241,0,0,0,0,0,81,0.8361116627125553,0,0.0,1,0.0104513957839069,0,0.0,0.05981,0.1574817662392375,0.3029593713425848,0.01812,0.3351429027622545,0.6648570972377454,24.419566566958725,4.333150018039096,0.327042676388591,0.2322539137894059,0.2159553935234827,0.2247480162985202,10.990450084047604,5.595581885575906,19.426446482806377,12056.755017824164,52.89485050094094,13.0134656633178,17.27477907909163,11.150456442814637,11.456149315716877,0.5612266781042248,0.7922437673130194,0.6983606557377049,0.5749751737835154,0.1097328244274809,0.7160493827160493,0.9375,0.8585858585858586,0.7024793388429752,0.1157024793388429,0.5016335016335016,0.7016491754122939,0.6421612046058459,0.534640522875817,0.107940446650124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022984315988781,0.004520529895298,0.0068474390577923,0.0088670851362057,0.0110135966562598,0.0136018407281464,0.0158228493362967,0.0181552694188884,0.0203484805104503,0.0221880919469615,0.024105650626993,0.0263395699410568,0.0283566124287741,0.0303436195971356,0.0324115649418346,0.0345173465694638,0.0367205303501139,0.0391202358216391,0.040899306386032,0.0427221290208296,0.0576161776533628,0.0717875691070531,0.0851325111519286,0.0977470509623175,0.1092597477971825,0.1242181464116756,0.1353331563578444,0.1465963566634707,0.1577968312343646,0.1686617639164743,0.1812162322466542,0.1923347740838235,0.2040565257152811,0.2146703441029682,0.2238319608965608,0.2336886662825229,0.2434653476401558,0.2522603672885726,0.2609613289760348,0.2676374218087666,0.2750506395046009,0.2810996804887469,0.288019797290897,0.2932512982885378,0.2986335675557393,0.3040186443394946,0.3089854564130829,0.3130896451625224,0.3175582812540518,0.3212049147839873,0.3196529998246111,0.3184106362144345,0.3180285307107279,0.3167668651367131,0.3156965181513254,0.3135077252562337,0.3116045165575482,0.3124620260439759,0.3129605251910485,0.3135233474833232,0.3141979816135857,0.3156334018662027,0.3166247906197655,0.3169160571696974,0.3166350471890685,0.3182668815303842,0.3186810068390135,0.3223958170262062,0.3263796832484476,0.3288471405454474,0.3316015360289135,0.3336675990922045,0.3362264150943396,0.338489398626726,0.3439241917502787,0.3465438862338267,0.3519268256110361,0.3566752628446736,0.3604556550040683,0.3553318419090231,0.0,2.574282030053806,56.47208599727014,169.47497178486748,253.11236816415877,fqhc6_100Compliance_implementation_low_initial_treat_cost,42 -100000,95743,45131,428.2506292888253,5923,60.75639994568794,4658,48.11840030080528,1837,18.81077467804435,77.32392886815877,79.68775668132757,63.31606620966248,65.06493979845811,77.09495004991795,79.46063887522047,63.231097840465225,64.98309523968284,0.2289788182408187,227.11780610710264,0.0849683691972558,81.84455877527341,158.58502,111.5342225899466,165636.15094576104,116493.34425487672,398.15247,262.1663864803774,415318.0806951944,273287.0060278839,378.75598,184.11745045755876,392717.5250409952,190052.4570950358,3040.9987,1398.6566587991772,3143815.8925456693,1428539.0046907288,1113.63443,492.5766601726952,1152512.7581128648,503927.644267686,1793.58594,755.8230959899462,1839298.7685783815,760734.6329464369,0.38188,100000,0,720841,7528.915952080048,0,0.0,0,0.0,34418,358.9296345424731,0,0.0,34641,358.8565221478333,1571767,0,56448,0,0,0,0,0,58,0.6057884127299124,0,0.0,1,0.0104446278056881,0,0.0,0.05923,0.1551010788729444,0.3101468850244808,0.01837,0.3319851156770749,0.6680148843229251,24.284556416865527,4.3645431538886434,0.3327608415629025,0.2271361099184199,0.2241305281236582,0.2159725203950193,11.43424675675888,5.986420699656051,19.69056279684432,12142.5144362307,53.20440570534301,12.742904688477358,17.581014500561164,11.818904263955485,11.061582252348996,0.5674109059682267,0.7835538752362949,0.6993548387096774,0.5842911877394636,0.1192842942345924,0.722266560255387,0.91005291005291,0.8473282442748091,0.7404580152671756,0.1545454545454545,0.5104258443465491,0.7132352941176471,0.6490924805531547,0.5319693094629157,0.1094147582697201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022992697033233,0.0043394944691723,0.0064241784561674,0.0089008108272876,0.011118118566139,0.0129938900203665,0.0151397752992272,0.0172098767952473,0.0195585273338854,0.0216549944710652,0.0237043112728764,0.0256994712254222,0.0279645508194024,0.0300776663027131,0.0321235824037479,0.0340076284589065,0.0361075146304831,0.0381633436776717,0.0401805211821225,0.0423712038339323,0.0570339823563188,0.070575188835185,0.0838357888114088,0.0966015436058127,0.1087573153371645,0.1239158028347789,0.1357757477374245,0.1478429368425535,0.1580437058082156,0.168456937029652,0.1813425766448501,0.1935379225329267,0.2045397719242936,0.2155407104512207,0.2248298160143405,0.2348928630751342,0.2444570905723116,0.2541772151898734,0.2632367632367632,0.2712054851062854,0.2782470655032966,0.2848020434227331,0.2906614186297407,0.2967892936446018,0.3023303924551263,0.3072500246767348,0.3123190494692118,0.3168518707309614,0.320603953717636,0.3253704903295744,0.3246236443101494,0.3231282206729312,0.3212713729473506,0.3197921792237112,0.3186767418337597,0.317097445948429,0.3152490348712107,0.3160363433594647,0.315723893080258,0.3161846000213987,0.3165537632396422,0.316877061972777,0.3176273668793807,0.3193693894868474,0.321335031357378,0.3231117942839278,0.3256283407255771,0.3289154730048796,0.3318886539816772,0.3358108108108108,0.3393353694671103,0.3437781665871375,0.3467219812684644,0.3472676141977655,0.3464299206649037,0.349011669445106,0.3560066656567187,0.3603639240506329,0.369034994697773,0.3790627362055933,0.0,2.0564327960719955,54.97330349367119,187.0296330553441,241.96088924869872,fqhc6_100Compliance_implementation_low_initial_treat_cost,43 -100000,95779,45142,427.5571889453847,6095,62.28922832771276,4754,48.90424832165715,1884,19.179569634262208,77.4066300966336,79.74540905097304,63.35719594835807,65.08769473335447,77.16673625412533,79.51169281209447,63.26707654372478,65.00334401235908,0.2398938425082803,233.7162388785714,0.0901194046332918,84.35072099538843,158.36524,111.3829229024842,165344.4283193602,116291.59095676945,399.47027,262.29498977770874,416364.3387381368,273143.7160313939,377.3364,183.48981591601063,389990.0604516648,188480.0407786465,3166.55235,1449.7304143253386,3259848.9856857974,1467366.3583095858,1126.68532,501.5836140961143,1158005.9407594567,505355.8756054191,1855.11622,785.6243805794313,1890691.6338654608,780404.1946841398,0.38107,100000,0,719842,7515.655832698191,0,0.0,0,0.0,34422,358.6276741248081,0,0.0,34502,356.2993975714927,1577359,0,56662,0,0,0,0,0,82,0.8352561626243749,0,0.0,0,0.0,0,0.0,0.06095,0.1599443671766342,0.3091058244462674,0.01884,0.3379288735704214,0.6620711264295785,24.53138678676769,4.39676452538736,0.3245687841817417,0.2303323517038283,0.2149768615902398,0.2301220025241901,10.97565488130137,5.503446089368091,20.032283005283503,12180.30475314484,53.54592060611825,13.01990049026342,17.305163718257838,11.23998335466561,11.980873042931377,0.5473285654185949,0.7698630136986301,0.6908619572261827,0.5538160469667319,0.1160877513711151,0.7304347826086957,0.926208651399491,0.8539603960396039,0.7489711934156379,0.1466666666666666,0.4809400974491258,0.6823361823361823,0.6330114135206322,0.4929396662387676,0.1081703107019562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0045324572610573,0.0065353507677007,0.0085955518527173,0.0111166485287985,0.0133093012362273,0.0156807569176811,0.0177818608686775,0.0199108712539351,0.021971836751402,0.0241560251706397,0.0261969749830689,0.028192320342049,0.0304412279437501,0.0325536805863373,0.0346027550029945,0.0368914361382963,0.0388861819802821,0.0408619131229805,0.0428114816395798,0.0573596009766888,0.0720381526104417,0.085167714884696,0.0979126815630715,0.1105620297979052,0.1261425959780621,0.1382037121445001,0.1491339068298544,0.1597268167751574,0.1696340575052491,0.1818983977359546,0.1944180111596522,0.2059533124673969,0.2160214055588926,0.2261151395297737,0.2362483540073696,0.2459932412085522,0.2551148882593642,0.2636258477171176,0.2714027377191778,0.2781439341381064,0.2854588587255028,0.2918776321393082,0.2969253434584197,0.3023419658908702,0.3067517933295536,0.3121462559479088,0.3165858562720319,0.3219383921863261,0.32644600821198,0.3250431359861965,0.3238217156700804,0.3221736678883563,0.3209876543209876,0.3198942694643679,0.3177868877535411,0.3158734169219593,0.3152572326220709,0.3155086574569676,0.3157586512866016,0.3167463043153651,0.318114758935421,0.320004169707078,0.3197996661101836,0.3191326591599129,0.3200777202072539,0.3213982451174639,0.3245958934032328,0.3270900910327509,0.3305755820824961,0.333995754482634,0.3365758754863813,0.3376153654277875,0.3412215460897002,0.3445502449847462,0.3472496801953715,0.349307774227902,0.3551271860095389,0.3492626979792463,0.3514132925897631,0.0,2.882850408841798,54.46602147240069,175.05088938868843,262.0388599577815,fqhc6_100Compliance_implementation_low_initial_treat_cost,44 -100000,95692,45049,426.7859382184509,5931,60.93508339255111,4667,48.22764703423484,1876,19.31195920244117,77.29491858535671,79.69700584626398,63.29396199958445,65.07387667534532,77.06284142595341,79.46435762321767,63.20872281495865,64.99062051815322,0.2320771594033033,232.6482230463114,0.0852391846258058,83.25615719209623,159.56688,112.28980026451244,166750.49115913556,117345.02389385994,402.38077,264.61924660762975,419970.687204782,276007.21753921936,386.463,187.93004948014817,399542.9293984868,193162.41457391565,3089.15699,1410.1601159466722,3196902.666889604,1442318.2982346206,1135.7005,500.6887506967421,1174313.1296242112,510713.5086493564,1842.10064,764.0955578673816,1898169.3767504075,775467.6372725974,0.3793,100000,0,725304,7579.567779960707,0,0.0,0,0.0,34703,362.0887848513983,0,0.0,35376,365.4328470509552,1563922,0,56197,0,0,0,0,0,69,0.7210634117794591,0,0.0,0,0.0,0,0.0,0.05931,0.1563669918270498,0.3163041645590962,0.01876,0.3345138441725692,0.6654861558274308,24.48431112208576,4.349815421046688,0.3205485322476966,0.2380544246839511,0.2114848939361474,0.2299121491322048,11.048366251295178,5.6990134571804285,19.921877858871376,12070.594219396946,53.02655610546947,13.358074704617747,17.072155735209886,10.88073041025325,11.71559525538858,0.5658881508463681,0.7965796579657966,0.7038770053475936,0.5835866261398176,0.1183597390493942,0.7382875605815832,0.9237875288683602,0.8743455497382199,0.7156862745098039,0.1552511415525114,0.5036453776611257,0.7153392330383481,0.6454219030520646,0.5491698595146871,0.1088992974238875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023315458148752,0.0043735476473154,0.0063982125628395,0.0085811600833714,0.0110548978490792,0.0132092587118934,0.0154598146863137,0.0177969391716556,0.0199392308715357,0.0218507022342419,0.0242091009806737,0.026412303140506,0.0288957263550016,0.0306715587253164,0.0330935103275287,0.0352130883067727,0.0372538860103627,0.0391827072821279,0.0411647213032894,0.0431528695615918,0.0575454649911733,0.0713388332844759,0.0843503720105359,0.0973990446328991,0.1097618871786215,0.1254589121533692,0.1373955867837014,0.1485377253031545,0.1593269230769231,0.1697528215251255,0.1820835397772559,0.1945264752014711,0.2055591186285913,0.2156095641911089,0.2246962449832316,0.2351729864378632,0.244020526550647,0.2527176971033738,0.2601042506558252,0.2675479832144741,0.2747906847474899,0.2818681961840103,0.2880637484163539,0.2934670473357165,0.2981257748498918,0.3038493341725597,0.308495045287699,0.3130879788168497,0.3174670963233296,0.3219141052520538,0.3208011621963358,0.3196400357216459,0.3180493983533882,0.3167196072769275,0.3151970538445546,0.3135588028061146,0.3111981230778986,0.3121333136123848,0.3119305263517787,0.3126061841658172,0.3139517402089754,0.3145405887600356,0.3158723493596473,0.315814245371823,0.3168769030013049,0.316216499162479,0.318158392028861,0.32079226686884,0.3248988210452226,0.3279732526667728,0.3300837566936702,0.332410856838744,0.3349710254472159,0.3371986573085139,0.3415300546448087,0.3403722261989979,0.3425869432580842,0.3416666666666667,0.340797378481704,0.3395015105740181,0.0,2.167631332277897,54.062888937017306,178.5218039463509,254.942225601454,fqhc6_100Compliance_implementation_low_initial_treat_cost,45 -100000,95718,44753,423.974592030757,5821,59.59171733634217,4610,47.5563634844021,1884,19.306713470820533,77.3593554540744,79.73019944644224,63.33143217950936,65.08370000822138,77.12623848395734,79.49968556241926,63.2443639559218,65.00020264304774,0.2331169701170665,230.513884022983,0.0870682235875648,83.49736517364192,159.53608,112.23587484098438,166673.0186589774,117256.81150983556,400.47214,263.4505435814272,417770.9730667168,274620.154311404,380.29854,185.77081432856127,393629.5576589565,191176.389997564,3032.22821,1394.5577933731315,3129591.8531519677,1418714.9170266655,1106.08159,493.1988004218215,1136822.938214338,496745.3906814056,1844.10546,776.6639065799259,1891076.6626966717,780047.044841362,0.37728,100000,0,725164,7576.046302680791,0,0.0,0,0.0,34677,361.6247727700119,0,0.0,34690,358.6995131532209,1567044,0,56189,0,0,0,0,0,79,0.8253411061660293,0,0.0,0,0.0,0,0.0,0.05821,0.1542885920271416,0.3236557292561415,0.01884,0.3310976607230492,0.6689023392769508,24.432048352217794,4.3898862312206886,0.3253796095444685,0.2338394793926247,0.2145336225596529,0.2262472885032538,11.30389922689093,5.911824757360977,20.17292199709757,12026.727107870423,52.35216215846966,12.944597017091564,17.02547148284047,10.905336979739856,11.47675667879776,0.5587852494577007,0.7792207792207793,0.708,0.5631951466127402,0.112176414189837,0.7257551669316376,0.9187817258883249,0.8561151079136691,0.7048458149779736,0.1545454545454545,0.4961217183770883,0.6988304093567251,0.6509695290858726,0.520997375328084,0.1008505467800729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020459425515537,0.0043184283353776,0.0065958375191532,0.0090085515224147,0.0112565205454379,0.0136418703615095,0.0158927570212549,0.0178735479656207,0.0197808263989695,0.0220518228073587,0.0243552274009126,0.0267463716759621,0.0287151734639285,0.0309911395013393,0.033299280768556,0.0355079130443771,0.0373223178142891,0.038956593890992,0.0407618017943093,0.042612807799675,0.057534875950213,0.0711676731310636,0.084736339700622,0.0973606729758149,0.109508293526515,0.124920661786485,0.1369009720276752,0.1477530422562202,0.1580555882070078,0.1680419783026258,0.1805624393923068,0.1925308508335137,0.2033136789887078,0.2140488723038706,0.2233775388817905,0.2328975237588298,0.2416762534484491,0.2504556398082938,0.2587296723748567,0.2658944305044741,0.273376300290432,0.2796604223672209,0.2856973953345393,0.2917349931174816,0.2971995728984663,0.3024154827272056,0.3072361507281189,0.3123665208990135,0.317252445778767,0.3212675647886953,0.320002688533405,0.3187646889044654,0.3171759747102213,0.3159706221198157,0.3147796971762126,0.3137135181340823,0.3120860404970668,0.3119624578959417,0.3119741100323625,0.3128559225512528,0.3132766881269651,0.3134711445438212,0.3144721383014434,0.3164667638157157,0.3183240277242972,0.318933847476616,0.3186763114427294,0.3220547039753234,0.324875412367516,0.3273144848340857,0.3298555742858444,0.3359910700047839,0.3362462006079027,0.3403657888745541,0.3412039197386841,0.3428839830906529,0.3407059536433873,0.3422417231751097,0.3486610765485529,0.3567141785446361,0.0,2.289051650257501,54.8974130767913,169.0276155917722,254.37628232443777,fqhc6_100Compliance_implementation_low_initial_treat_cost,46 -100000,95886,45161,427.3720876874622,5853,59.90446989132929,4611,47.473040902738674,1843,18.866153557349357,77.4394230829848,79.71814428044564,63.39129033748679,65.07667032006403,77.21441456911445,79.49393490461162,63.30959365125531,64.99717445118732,0.2250085138703497,224.20937583402176,0.0816966862314743,79.49586887670534,159.75124,112.300837246848,166605.38556202158,117119.11775112944,400.07665,263.51442524205777,416625.5136307699,274204.7513821236,380.88749,185.5196761100829,392968.8797113238,190223.3792994604,3042.86674,1380.97302425903,3137798.542018648,1404651.3121466802,1099.8921,486.53254250835647,1135190.7682039088,495554.9801488776,1814.1878,749.6050151321758,1859372.3588427925,756284.8552831957,0.38081,100000,0,726142,7572.972071000981,0,0.0,0,0.0,34533,359.5102517572951,0,0.0,34769,358.2900527709989,1570917,0,56396,0,0,0,0,0,77,0.8030369396992262,0,0.0,2,0.02085810232985,0,0.0,0.05853,0.1536986948872141,0.3148812574747992,0.01843,0.3393349553933495,0.6606650446066504,24.449622045002293,4.319823049891759,0.3133810453263934,0.2376924745174582,0.2183908045977011,0.2305356755584472,10.909009425947122,5.6134625523851325,19.41342600729785,12100.306817917251,52.089035102595794,13.128858374150708,16.32408676687079,11.107338834506097,11.528751127068196,0.5601821730644112,0.7864963503649635,0.7044982698961938,0.5749751737835154,0.1166509877704609,0.742998352553542,0.9303482587064676,0.8715846994535519,0.7587719298245614,0.1651376146788991,0.4948483956432146,0.7031700288184438,0.6478220574606117,0.521181001283697,0.1041420118343195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022777890261186,0.0047934654829948,0.0071009038436178,0.0094528322959924,0.0115462408651549,0.0138072078305284,0.0156862745098039,0.017890656874745,0.0199521883045237,0.0220544610159782,0.0240886083731224,0.0264305428726798,0.0283615064481323,0.0303669771990323,0.0324745615934184,0.0344567664126551,0.0365090367366362,0.0383172728214692,0.040602128211783,0.0427337979818995,0.0570889532823281,0.0719584569732937,0.0851186362589265,0.0974267986687803,0.1100818930127786,0.1254513207069107,0.1375055603804359,0.14858533164756,0.1597011266374615,0.1697822481408164,0.1824689632933842,0.193954387822348,0.2046051917019659,0.2141218371716995,0.2237808363748296,0.2343756915858894,0.2438209008446812,0.2532401895819762,0.2624157653321252,0.2696039773701354,0.2760643395725321,0.2835864451889292,0.2900545957316064,0.2951518125351556,0.2999878655502973,0.3046849996307147,0.3091509068409934,0.3131999288961121,0.3172827224454464,0.3212791156731149,0.3201650071888311,0.320321075740944,0.3191824120250052,0.3179517498954533,0.3171277431208973,0.3151406837136834,0.3130488344178406,0.3131422213495647,0.3134994295056283,0.3146313261584986,0.3147691618108471,0.3168761574530123,0.3172880223771552,0.318803513844101,0.3192002675329639,0.321880838696284,0.3222731387191672,0.3234899747419626,0.3260204436409151,0.3295280085029327,0.3320686540198735,0.3350765979926043,0.3369067770045765,0.3400273847558193,0.3410976989815164,0.3417796811801094,0.337409069803436,0.3346963811081578,0.3349043526476296,0.3443557582668187,0.0,2.344601587456217,52.893957367353735,171.19881250576825,256.2289706684684,fqhc6_100Compliance_implementation_low_initial_treat_cost,47 -100000,95721,45348,430.1459449859488,6061,62.11803052621681,4730,48.65181099236322,1845,18.79420398867542,77.34647984393533,79.7007746008464,63.33814763576003,65.0760679665337,77.12138700028582,79.47939291250134,63.2546802065197,64.99662944149301,0.2250928436495058,221.3816883450619,0.0834674292403292,79.43852504068616,159.1117,111.95157125150484,166224.2141222929,116955.89395378738,400.865,264.24427983403524,418033.2006560734,275305.1470774807,388.67494,189.82506646316085,401421.307759008,194675.96685602012,3102.15614,1426.719630040256,3194322.290824375,1443989.0202152664,1135.58512,508.4777135018457,1162227.2228664556,507186.6073691257,1801.15268,753.2593075895995,1837181.9558926465,750800.4616614921,0.38213,100000,0,723235,7555.646096467859,0,0.0,0,0.0,34644,361.1433227818347,0,0.0,35481,365.9907439328883,1567149,0,56275,0,0,0,0,0,78,0.8148682107374557,0,0.0,1,0.0104470283427878,0,0.0,0.06061,0.1586109439196085,0.304405213661112,0.01845,0.3345397324940991,0.6654602675059008,24.3997496736147,4.332297254604353,0.3154334038054968,0.241860465116279,0.2274841437632135,0.2152219873150105,11.500576381615014,6.108824977724364,19.680794111226582,12190.95378605078,53.637804218313576,13.586440056396112,16.96146188467457,12.012072988071294,11.077829289171602,0.5788583509513742,0.8033216783216783,0.707774798927614,0.5855018587360595,0.130648330058939,0.7618320610687023,0.951276102088167,0.8669950738916257,0.7662835249042146,0.1698113207547169,0.5087719298245614,0.7138849929873773,0.6482504604051565,0.5276073619631901,0.1203473945409429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192221997164,0.0045920384393151,0.0066469794298819,0.0091729140001219,0.0113897532898082,0.0137644567519139,0.0160142711518858,0.0182181896120597,0.0201469881734828,0.0220531774390056,0.0243749935936202,0.0264816373452671,0.0285402915715666,0.030517761687489,0.032437786306797,0.0344389205279532,0.0364438278443268,0.0384587452925126,0.0405604873079561,0.0426214482126489,0.05706589827111,0.0707101365848553,0.084768878910594,0.0978948918003827,0.1112786235398304,0.1269082758912335,0.1379551746449293,0.1491268211180521,0.1603684963385213,0.1707408558476492,0.1838252707270339,0.1961937716262976,0.2069433880256438,0.2178520703594449,0.2280025055220387,0.2383776904775079,0.2486817903126916,0.2576376004947434,0.2654142417951423,0.2729781727399739,0.2793957759837146,0.2856357725858883,0.2914703723870173,0.2970085726275403,0.3016823565138172,0.3062430735131141,0.3108339692030571,0.3150010182262499,0.3196972053714937,0.3238532836885051,0.3225497857662561,0.3210736407432897,0.3209631289009115,0.3189847070047122,0.3186844217222007,0.3156628352490421,0.3145297793245274,0.3149669569210082,0.3158569085690857,0.3162750031226022,0.3163414360088393,0.316970103866356,0.3179082884280712,0.319367394416607,0.3201029563878665,0.3215396273746374,0.3219424460431654,0.3246614509693027,0.3272210924900077,0.331013484123532,0.3355787174002094,0.338451729451145,0.3405388471177945,0.3441375637221334,0.3482755380133446,0.350207468879668,0.3496108652525561,0.3551458670988655,0.3588530066815145,0.3547376664056382,0.0,2.916515023794505,56.53174097057461,170.87794162114935,259.85425435505834,fqhc6_100Compliance_implementation_low_initial_treat_cost,48 -100000,95737,45529,431.0872494437887,6031,61.689837784764514,4749,48.97792911831372,1853,18.999968664152835,77.41222784566315,79.76781454607803,63.350809200748486,65.08946002276859,77.17553220379521,79.53273569945407,63.26278042896743,65.00479667730033,0.2366956418679393,235.0788466239635,0.0880287717810546,84.66334546825749,158.3318,111.4022929905285,165382.03620334875,116362.84089801068,397.65241,261.4725557329371,414717.67446232913,272473.9711218621,386.88948,188.54845648919505,399967.29582084256,193810.6060836436,3114.18643,1431.1400646113118,3213795.752948181,1455806.2970547571,1140.35043,507.04125609336046,1174889.091991602,513379.7759417568,1815.69886,765.7903512906805,1862559.5119964068,769465.0608415416,0.38346,100000,0,719690,7517.365281970398,0,0.0,0,0.0,34338,358.00160857348783,0,0.0,35282,364.4150119598484,1575215,0,56423,0,0,0,0,0,70,0.7207244847864462,0,0.0,0,0.0,0,0.0,0.06031,0.1572784645073801,0.3072458962029514,0.01853,0.3332278481012658,0.6667721518987342,24.418223458521084,4.432743124402586,0.3177511054958938,0.2398399663086965,0.2238365971783533,0.2185723310170562,11.125293215891018,5.749396919471695,19.722633689672573,12325.171872534462,53.76400084192552,13.60353732416548,17.009790518593945,11.76495437063345,11.385718628532628,0.5615919140871762,0.7840210711150132,0.68389662027833,0.561618062088429,0.1396917148362235,0.7313664596273292,0.9258373205741628,0.8625,0.6744186046511628,0.1698113207547169,0.4984108639121641,0.7018030513176144,0.6194770063119928,0.5254658385093167,0.1319612590799031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021267976503949,0.004459534789439,0.0068376415209187,0.0089873263465756,0.0112953568051728,0.013620400061078,0.0157367959720325,0.0180810791506382,0.0204085803926377,0.0228863868986693,0.0252008690661638,0.0272850455777285,0.0291762190169731,0.0312763897756997,0.0335152872222967,0.0356925048840743,0.0375367601375139,0.0397161354581673,0.0414929562821645,0.0435856034168446,0.0583598684553949,0.0728905072827724,0.0867207250679226,0.1004397130293913,0.1125637048526479,0.1281006603454114,0.1402099275123908,0.1523456632381439,0.1631846112743788,0.1728556709882373,0.1858504398826979,0.1972148225153228,0.2088091531586453,0.2190726446597689,0.2282191961924907,0.2377677452274517,0.2467866323907455,0.256445781096881,0.2648768965203961,0.2733150672368134,0.280279341254951,0.2867391482439407,0.2926404979704862,0.2980081685451126,0.3032815743787104,0.3083364117719492,0.3131468426578671,0.318954132168436,0.3230489080600793,0.3267558572424589,0.3254350538702016,0.3247923007320885,0.3244032165260956,0.3247282413073213,0.3244137767993026,0.3232410874661308,0.3215549926844233,0.3218816240013044,0.3229239150727245,0.3230949298622071,0.3246410237333532,0.3251265350963236,0.3260933005377913,0.3261995244127386,0.3270449274322741,0.3283160621761658,0.3291042451360765,0.3335416145963509,0.3363928247365115,0.339332125698984,0.3414799421756415,0.3448603558418246,0.3470970970970971,0.3519595257872083,0.354572435540716,0.3567821491485614,0.3623777276147479,0.3639088729016786,0.3557065217391304,0.3533891850723534,0.0,2.476395613594553,56.137950658601206,178.11817245421756,255.31690665326855,fqhc6_100Compliance_implementation_low_initial_treat_cost,49 -100000,95737,45186,428.6743892121124,5825,59.83057751966325,4566,47.19178582992991,1857,19.08353092325851,77.32373385663094,79.69309527656704,63.321321634088775,65.07490496692574,77.09202380773317,79.46130817771389,63.23607832161808,64.99180049671043,0.2317100488977672,231.78709885314677,0.0852433124706948,83.10447021531786,159.10004,111.9176134057939,166184.48457754057,116901.10762379634,397.21695,261.8094398654194,414421.1120047631,272984.14392076153,376.82213,183.2737671288467,390498.8875774256,189030.6594960281,3011.69075,1372.4829001560618,3116173.861725352,1403974.973266405,1095.3546,480.8572770925933,1133473.5159865047,491613.70952985104,1824.4058,759.6313931805339,1876195.201437271,768021.5938061585,0.37997,100000,0,723182,7553.840208070025,0,0.0,0,0.0,34267,357.42711804213627,0,0.0,34383,355.964778507787,1571523,0,56367,0,0,0,0,0,73,0.7625056143392837,0,0.0,0,0.0,0,0.0,0.05825,0.1533015764402452,0.3187982832618026,0.01857,0.3331692913385827,0.6668307086614174,24.565576846168813,4.40935365627124,0.3083661848445028,0.2409110819097678,0.2222952255803767,0.2284275076653526,10.932921171803232,5.593274309303105,19.77547384265776,12079.1210983412,51.77617018661232,13.130238594475024,15.93452097632044,11.33883419271685,11.372576423100012,0.5582566798072711,0.7854545454545454,0.6917613636363636,0.5832512315270936,0.1140939597315436,0.7125103562551781,0.904040404040404,0.8286516853932584,0.696,0.1609756097560975,0.502828222685323,0.71875,0.6454372623574145,0.5464052287581699,0.1026252983293556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020770010131712,0.0044418753232529,0.006617945594803,0.0087697904599313,0.0110084649194204,0.0130692988621662,0.0153286011504099,0.0175053363700427,0.0196537584489687,0.0216600952429719,0.0240998451456758,0.0261887645065215,0.0288048062876777,0.0306874272229836,0.0329159914536089,0.0347761363753837,0.0367040888189237,0.0385425420440515,0.0405082243340472,0.0424073186488007,0.0569250848342469,0.0710443137336989,0.0843928331654917,0.0974881137711953,0.1100566258580873,0.1250779754919064,0.1372031102483319,0.1480295356854066,0.1592307035154414,0.168977088760949,0.1815147763363298,0.1930557057869118,0.2042709114829674,0.2145137309777855,0.2238648363252376,0.2336788023739923,0.2430591173650291,0.2523366585782331,0.2605974717986509,0.2677848202640551,0.2753460747382774,0.281529689435188,0.2878639227414035,0.293841529858342,0.2991382449326374,0.3039745784631301,0.308737596816777,0.3138093419880362,0.3175645909456062,0.3219091340826341,0.32099962298702,0.319407917383821,0.3185931773329574,0.3171240013893713,0.316336854634727,0.3142257040795989,0.3132099351368454,0.3132822624300782,0.3139167960154877,0.3139642691580787,0.3143520773236429,0.3161891202467817,0.3172753988245172,0.3186778711484593,0.3218496106463511,0.3242091503267973,0.3259861453025706,0.3289914638001897,0.3304139002683995,0.3341335573960709,0.3348335246842709,0.337791384681491,0.339782345828295,0.3402815168063995,0.3456568895595586,0.3475820895522388,0.3515446659564754,0.3544866612772837,0.362964989059081,0.365554276946682,0.0,1.983713922394907,52.97737947586718,173.70710641992846,249.57437500254477,fqhc6_100Compliance_implementation_low_initial_treat_cost,50 -100000,95774,45280,429.1561384091716,5954,60.788940631068975,4700,48.41606281454257,1830,18.700273560674088,77.38153749659537,79.72171056331366,63.350937847410606,65.08245811752683,77.15475610334674,79.49790854151455,63.26632227023537,65.00150247962014,0.2267813932486291,223.80202179911635,0.084615577175235,80.95563790668336,158.62594,111.64294317000736,165625.0339340531,116568.93955771653,399.79343,263.6725096166758,416746.8728464928,274620.2190664228,388.02044,189.3309543097325,400351.3479650009,194149.73664560504,3091.64075,1411.8759721415172,3186758.7549856952,1432935.2740435984,1148.35963,508.3153452265134,1177931.9648338796,509647.25659344817,1796.27106,753.8414127951222,1836915.5511934345,754588.8197484924,0.38033,100000,0,721027,7528.410633366049,0,0.0,0,0.0,34502,359.5130202351369,0,0.0,35398,364.9320274813624,1571909,0,56373,0,0,0,0,0,63,0.6577985674608975,0,0.0,0,0.0,0,0.0,0.05954,0.1565482607209528,0.3073563990594558,0.0183,0.338318057565525,0.661681942434475,24.34338594659187,4.381389433311771,0.3136170212765957,0.2412765957446808,0.215531914893617,0.2295744680851063,11.27399192888582,5.807572738399812,19.375961617019183,12107.104639646086,53.20997866433703,13.653722464504527,16.74502093206819,11.100350026439989,11.710885241324323,0.5625531914893617,0.7927689594356261,0.7069199457259159,0.5636722606120435,0.1223354958294717,0.7377706495589414,0.908235294117647,0.889763779527559,0.70995670995671,0.1476190476190476,0.4992759918911091,0.7235543018335684,0.6431838975297347,0.520460358056266,0.1162255466052934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0048654894885154,0.0068584878860435,0.0093436113057696,0.0115501148911076,0.0140476602502112,0.0161148937905165,0.0180242705069453,0.020059678309387,0.0219370945627928,0.0240710757690652,0.0262158444704481,0.0283158544108574,0.0304559120299822,0.0326140770690651,0.0344781270018391,0.0365591175314058,0.0386744340326726,0.040813994556749,0.0426670553693022,0.0579505964121348,0.0713703014202941,0.0845170826824896,0.0978826249146219,0.1095760488128734,0.1246340664334555,0.1363665267709525,0.1481367285099144,0.1590518575438372,0.1688516330971497,0.1823358449946178,0.19512669932838,0.2062451769974023,0.2154955742541798,0.2249098028863076,0.2339831943937028,0.2437332738626226,0.2522229841384039,0.260849842936687,0.2687339092625436,0.2759808966546018,0.2823713677911027,0.2895583469353961,0.2950756849971259,0.3003799050844166,0.3054994830387474,0.3102789262650361,0.3129543952412426,0.3171400486315898,0.3215509515525331,0.3203486495211449,0.3194975123010528,0.3187589740702159,0.3176659157858257,0.3172934117507277,0.3156461752604126,0.3134043090920578,0.3129673566227604,0.3141117234809825,0.3152931966979789,0.3161543492478744,0.3173895899053627,0.3184260595036484,0.3192283619456366,0.3194164507150398,0.3219156689224362,0.3238319881777878,0.3285052868672965,0.3315761913073834,0.3330170777988614,0.3343918704350587,0.3365079365079365,0.3400893812551142,0.3437191275932821,0.3458215962441314,0.3464576211246021,0.3492569002123142,0.352008032128514,0.353395913859746,0.3628386112170927,0.0,2.430551507604727,54.16925527198579,182.06791507025167,250.83283158899707,fqhc6_100Compliance_implementation_low_initial_treat_cost,51 -100000,95849,45536,431.6581289319659,6012,61.5655875387328,4720,48.57640663961022,1871,19.05079865204645,77.37299817448195,79.67239334855788,63.35320242165369,65.05604194074255,77.13497522937811,79.43832941339737,63.26465449138927,64.9717363079512,0.238022945103836,234.06393516050628,0.0885479302644256,84.30563279134162,159.1062,111.8932195651296,165996.7240138134,116739.05785676387,404.30323,266.6915640713007,421183.8308172229,277612.51976682147,384.7931,187.65160680595025,397217.10189986334,192535.5661627188,3095.06806,1414.4233685852646,3187661.6135796933,1434232.0614563157,1104.89251,490.4948600024933,1135807.8331542322,494805.36845720257,1836.73946,775.471793267611,1872919.1123538064,773511.8284859675,0.38248,100000,0,723210,7545.305636991517,0,0.0,0,0.0,34845,362.8624190132396,0,0.0,35186,362.7580882429655,1566434,0,56268,0,0,0,0,0,83,0.8659453932748385,0,0.0,0,0.0,0,0.0,0.06012,0.1571846893955239,0.3112109115103127,0.01871,0.3379408960915157,0.6620591039084843,24.38387443155965,4.35684342865072,0.3247881355932203,0.2389830508474576,0.211228813559322,0.225,11.163331590759949,5.802478892987725,20.11180133908317,12144.945020062172,53.45035992180208,13.44958200865131,17.16266122066573,11.04730626394979,11.790810428535254,0.559322033898305,0.7783687943262412,0.6973255055446836,0.563691073219659,0.123352165725047,0.7205308352849337,0.914351851851852,0.8505154639175257,0.70995670995671,0.1478260869565217,0.4992730444896772,0.6939655172413793,0.645414847161572,0.5195822454308094,0.1165865384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0045506603018233,0.0068368785693273,0.0087118981378063,0.0107354167090254,0.0130802117263843,0.0154006095012893,0.017624427231628,0.0195976253972146,0.0217426893404547,0.0235336304492597,0.0257728256743308,0.0281283400476856,0.0301901164167121,0.0323082791253878,0.0341921825786131,0.0361997972231993,0.0385368633749546,0.0405192107995846,0.0425527487619126,0.0573907240573907,0.0714151357451877,0.0847921053458625,0.0973053577804381,0.1096215009372959,0.1248283438615764,0.1380976602238046,0.1490038061621552,0.1595794641904152,0.1689417966740956,0.1816323016658775,0.1936787945608232,0.2057516112554206,0.2166916290408982,0.2260808327556421,0.2358205318477333,0.24573538763625,0.2548238656180736,0.2629805674354233,0.2701207992213889,0.2763043754843336,0.2829983386760886,0.2897593427796915,0.2953998058787581,0.3000983570726021,0.3048604694141563,0.3098198299715785,0.3142130041990075,0.3194431854969246,0.3235628086297499,0.322495890484788,0.3219213925689261,0.321467858855386,0.3207817382247425,0.3192615274846151,0.3178003736485865,0.3152786573780874,0.3150907479733499,0.315608831514779,0.3162483251451541,0.3176369221547913,0.3187933384697445,0.3202076660595784,0.3214014728855166,0.3229965490797546,0.3237649505980239,0.3246816148608222,0.327948202162434,0.3320464675534342,0.3362208773387128,0.3389876509702809,0.3424780632202135,0.347722274583726,0.3510840623811335,0.3509068696551076,0.3572854291417165,0.3591506263366941,0.3533374157991427,0.3590100111234705,0.3618244538137217,0.0,2.568680812936449,55.85384293826328,173.94800099330976,257.5367832152744,fqhc6_100Compliance_implementation_low_initial_treat_cost,52 -100000,95799,44922,425.5472395327717,5944,60.87746218645288,4706,48.62263697950917,1889,19.415651520370776,77.39816222968327,79.72775560182396,63.35848721039546,65.07960553549044,77.1645696084636,79.49268688056421,63.27313135735786,64.99519563763596,0.233592621219671,235.06872125975065,0.0853558530375977,84.40989785448494,159.63926,112.31268034345972,166639.79791020782,117237.84208964572,401.46895,264.09049521210386,418576.6552886773,275173.84859142976,382.96383,186.34539345681375,396258.3429889665,191783.82502321768,3136.28912,1429.5567365452778,3247243.353270911,1465666.9449005504,1135.47563,502.69240960672624,1174120.147391935,513587.9702363557,1856.88166,773.486907846545,1912292.1742398145,787128.9320011843,0.37871,100000,0,725633,7574.53626864581,0,0.0,0,0.0,34600,360.6613847743713,0,0.0,34965,361.4442739485798,1567872,0,56232,0,0,0,0,0,68,0.7098195179490391,0,0.0,0,0.0,0,0.0,0.05944,0.1569538697156135,0.3177994616419919,0.01889,0.334136546184739,0.665863453815261,24.449831700175807,4.387719071287616,0.3259668508287293,0.2235444113897152,0.219294517637059,0.2311942201444964,11.096651014605612,5.614915038214833,20.0457051166927,12090.917543849822,53.37194531727891,12.721632749827648,17.268040173428357,11.57021198950116,11.812060404521722,0.5699107522311943,0.8127376425855514,0.71251629726206,0.5920542635658915,0.1130514705882353,0.731437598736177,0.9121140142517816,0.8708791208791209,0.7089552238805971,0.1643192488262911,0.5104651162790698,0.7464342313787639,0.6632478632478632,0.5510471204188482,0.1005714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090478215956,0.0044490838333063,0.0068782209958203,0.0090888780567064,0.0111625069892746,0.0134142121440348,0.015488867376573,0.0172427865975594,0.0191358718417638,0.0211274810722324,0.0233892366482598,0.0254589485998091,0.0275933652601072,0.0297238603966612,0.0319078743891626,0.0342156629865636,0.0362378060765307,0.0383749987038976,0.0405279019016938,0.0425057792031988,0.0574585520069279,0.0715204501009171,0.0847773899005147,0.0970250417713138,0.1091610536634727,0.125,0.1369864466455978,0.1481922839571851,0.1586625230940099,0.1689003731183256,0.181473584458659,0.1941473543056742,0.2056120453656628,0.2149028431618843,0.2242478187292587,0.234609555626846,0.2441251226255239,0.2529597607456461,0.2604124132298897,0.2686652620007329,0.2762639166676301,0.2832612507305669,0.2894867667250603,0.2952701650109647,0.3010295760283619,0.3061000837314682,0.3101310131013101,0.3140496918091123,0.3184071231671174,0.3227758804836562,0.3215867332516725,0.3200434441893396,0.3191366541829752,0.3187813889049241,0.3179123061871868,0.3156037038168872,0.3138915664554462,0.3142365661861074,0.3148280924579194,0.3155473945055533,0.3162076766317049,0.316537952556835,0.3167430280968221,0.3164277593240743,0.3181513730743469,0.3189019322667775,0.3186253712346202,0.3217274544091931,0.3234628901492745,0.3271947428481486,0.3305965071444772,0.3353520459213229,0.3389176060285234,0.3423847087378641,0.3433944522802069,0.3447001311553594,0.347912221883572,0.3529411764705882,0.3517089305402425,0.3596657804785416,0.0,1.990121423137292,55.681388007930266,177.08413133066904,255.53387497272507,fqhc6_100Compliance_implementation_low_initial_treat_cost,53 -100000,95887,45317,429.58899537997854,5973,61.197034008781166,4696,48.48415322202175,1794,18.407083337678724,77.3584022892406,79.63988311460302,63.35300198276878,65.0415132584688,77.13594657586857,79.41759574233879,63.27011103371324,64.96068519156617,0.2224557133720281,222.2873722642333,0.0828909490555389,80.828066902626,159.49978,112.22637042349888,166341.40185843754,117040.2353014474,400.43633,263.3549323338676,417139.9772649056,274178.5772147085,381.71689,185.73089539617288,394848.25888806616,191302.44986297123,3073.30911,1394.503561862777,3174749.3716562204,1424075.0179069284,1133.54293,495.0553473306052,1168077.560044636,502268.2909202801,1763.05604,739.0884390854857,1810282.8746336836,747054.0399721443,0.38038,100000,0,724999,7560.97281174716,0,0.0,0,0.0,34578,360.11138110484217,0,0.0,34810,359.75679706320983,1566712,0,56291,0,0,0,0,0,76,0.7925996224722851,0,0.0,0,0.0,0,0.0,0.05973,0.1570271833429728,0.3003515821195379,0.01794,0.3439948824564209,0.656005117543579,24.275329397815337,4.398077509899465,0.3175042589437819,0.2482964224872231,0.2123083475298126,0.2218909710391823,11.01216364049439,5.506859029398624,19.18630821965986,12128.064897101578,53.22358497547923,13.993856315982589,16.76826228667224,11.080582506987357,11.380883865837069,0.5660136286201022,0.7924528301886793,0.6867873910127431,0.5697091273821464,0.1362763915547025,0.7443548387096774,0.9209302325581395,0.8455284552845529,0.7702127659574468,0.1650485436893204,0.5020254629629629,0.717391304347826,0.6345811051693404,0.5078740157480315,0.1291866028708134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022172949002217,0.0043975641142556,0.0067348946658417,0.0090263887337672,0.0110286643626753,0.0130573280819059,0.0154040506948123,0.0174511703809475,0.0195521885178113,0.0219180322841165,0.0240973722194355,0.0261220807447048,0.0282947169501273,0.0301811486118111,0.0325748675776499,0.0346500918908873,0.03651598220751,0.0385751448381647,0.0405433473185726,0.0422605547348051,0.0570243109128059,0.0709703706799281,0.0841518838879929,0.0970776936566106,0.1089880657699316,0.1243741153106712,0.1362990907742195,0.1468080129295678,0.1575621731241328,0.1673616396359699,0.180660235152246,0.193097257073635,0.2037262489673464,0.214596449807625,0.2246457272897175,0.2354418614943736,0.2453280406761518,0.2542245207712631,0.2625370069987182,0.270109280854086,0.2768894339797288,0.2829336764533863,0.2896323050506246,0.2961195318495779,0.3008132057811759,0.305554527624616,0.3101007316828706,0.3147428629664072,0.3193512812195913,0.3238358410238781,0.3227202848126871,0.3207292370020256,0.3197495699258298,0.3183652802893309,0.3177638235819296,0.3157313368721426,0.3144633144633144,0.3155861660858702,0.3167553146004002,0.317697646618017,0.3191453503614097,0.3205381484847288,0.3220292830062211,0.321776427486373,0.3226550671697388,0.3242155029093931,0.3264975715056665,0.3312374874874875,0.3358711975692383,0.3391699604743083,0.3422760906078351,0.3450076480827048,0.3483082706766917,0.3504012227741689,0.3501323751891074,0.3553056585715994,0.3541085271317829,0.355460820138043,0.3643071877562175,0.3618147448015122,0.0,1.941562475063579,54.55385133171886,177.75273608185933,257.73481059768955,fqhc6_100Compliance_implementation_low_initial_treat_cost,54 -100000,95720,45298,428.4997910572503,5947,60.78144588382783,4705,48.42248223986628,1845,18.846636021730045,77.38965647392791,79.75586147047052,63.34469261111818,65.09363011639996,77.15591937928843,79.52482107323748,63.257192567611256,65.01004307391337,0.2337370946394799,231.0403972330448,0.0875000435069282,83.58704248659876,159.11852,111.98381247790262,166233.30547430002,116991.0284975999,401.6141,264.7807480522978,418764.3125783536,275821.80747762194,388.8569,189.45514683116517,401028.95946510654,194044.2376324633,3096.39539,1428.6180744455412,3190089.688675303,1448725.314277114,1111.31546,499.0028861439463,1143231.8533221895,503718.6509963381,1810.65982,768.610025503181,1851454.053489344,768513.4164167176,0.38117,100000,0,723266,7556.059339740911,0,0.0,0,0.0,34650,361.199331383201,0,0.0,35611,366.8616798997075,1568169,0,56265,0,0,0,0,0,68,0.6999582114500627,0,0.0,1,0.0104471374843292,0,0.0,0.05947,0.15601962378991,0.3102404573734656,0.01845,0.3338676069882994,0.6661323930117006,24.31144365893781,4.309037690218054,0.3241232731137088,0.2318809776833156,0.2238044633368756,0.2201912858660999,11.0886809613369,5.653585057385938,19.66429724340702,12138.48939714905,53.59643536342665,13.06526611336835,17.340033735893755,11.754735376188608,11.436400137975944,0.5628055260361318,0.7891842346471127,0.7016393442622951,0.5698005698005698,0.1129343629343629,0.7441154138192863,0.9228971962616822,0.8878048780487805,0.7569721115537849,0.1359649122807017,0.4923258559622196,0.702865761689291,0.6331838565022422,0.5112219451371571,0.1064356435643564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024714366744996,0.0048052066542988,0.0068399313977207,0.0092650913302314,0.0114437425615673,0.0138690888354853,0.0161397212508029,0.0186502791927399,0.0207396352931556,0.0228675544818973,0.0252060355078109,0.0272059955854422,0.0292684431285467,0.0313658456215503,0.0336874677668901,0.0359663900286284,0.0377338952687659,0.0396949732842247,0.0417511147142278,0.0436259442563167,0.0581332219670077,0.0716872514130207,0.0852883162665771,0.0980947070520036,0.1097221343122982,0.1250383407194305,0.1368097183173306,0.1478028585719911,0.158179721041502,0.168734784054225,0.1810761626842689,0.1931843998485422,0.2052347139610495,0.2154448429708687,0.224849531815631,0.2347228067066823,0.2442394771475095,0.2537310078216308,0.2614814142834463,0.2694565553228741,0.2770716474874226,0.2835531238309016,0.2894310672955306,0.2948710275899216,0.3005594456512505,0.3058633766745469,0.3105453363178231,0.3149389042175798,0.320246303506979,0.3241614808564497,0.3231896725610166,0.3209479428704964,0.3209060213843556,0.3186561025241373,0.3172387219159405,0.3146544482626957,0.3119455756542602,0.311999346084682,0.3131654468576474,0.3151278409090909,0.3157375339813056,0.3162914167731786,0.3174897419341401,0.3186871831361736,0.3196433267194186,0.3195071335927367,0.3215247272211988,0.3262778300407651,0.3292866916950282,0.3325647040114499,0.3328917313841937,0.336645829994123,0.3402913539761619,0.3425751525653582,0.3447478019435446,0.3512377393741242,0.355221637866266,0.3593811979373265,0.3605808012906695,0.3803611738148984,0.0,2.7331636331536764,57.25928399504132,174.13291730240522,252.30463986489917,fqhc6_100Compliance_implementation_low_initial_treat_cost,55 -100000,95762,45093,426.7350305966877,5859,59.992481360038425,4594,47.39875942440634,1731,17.70013157619933,77.34687979821054,79.70513257903569,63.33382307926016,65.08090233649015,77.12954412099215,79.49083525270584,63.25314606276142,65.0036894296255,0.2173356772183865,214.29732632985576,0.0806770164987398,77.2129068646592,158.55488,111.62181253273526,165571.58371796747,116561.46752650868,399.44935,262.2629458555228,416533.311752052,273275.6478096978,378.36811,183.67109841995855,391391.5853887763,188939.15755667715,3008.22547,1363.9376045821157,3106207.3787097177,1389215.533297427,1080.22391,471.2088298112666,1112531.7244836155,476699.92101827945,1701.72126,710.8406798256249,1741854.2636954116,713245.2892695349,0.38081,100000,0,720704,7525.98107808943,0,0.0,0,0.0,34489,359.5476284956454,0,0.0,34635,357.918589837305,1575441,0,56534,0,0,0,0,0,67,0.6996512186462271,0,0.0,0,0.0,0,0.0,0.05859,0.1538562537748483,0.2954429083461341,0.01731,0.3238017871649066,0.6761982128350934,24.66103051168879,4.359790716374399,0.3313016978667827,0.237701349586417,0.2109272964736613,0.2200696560731389,11.285578326458614,5.764817448829142,18.420094050882625,12133.455881167733,51.981322781473445,12.951860684061865,17.374061476963973,10.6964718581908,10.958928762256807,0.5766216804527645,0.7967032967032966,0.7115637319316689,0.5830753353973168,0.1295746785361028,0.749185667752443,0.9195979899497488,0.8777506112469438,0.7397260273972602,0.1633663366336633,0.5136660724896019,0.7262247838616714,0.6504941599281222,0.5373333333333333,0.1211372064276885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381378946941,0.0045126353790613,0.0065177664974619,0.0087705925993678,0.0108041018963131,0.0130750901203641,0.0153124681415027,0.0177011024908125,0.020005724683609,0.0223105040597131,0.0244422572178477,0.0265011499917857,0.028722452463467,0.0308321486700867,0.0329225751852539,0.0347547423373132,0.0368448848985678,0.0387986928782613,0.0410503227684279,0.0432672782747237,0.0575335316528364,0.0716669281866206,0.0850441420093526,0.0972536077273157,0.1096613724270944,0.1252364497141468,0.1377252490990036,0.1487687662144345,0.1594393061733926,0.1697514995715509,0.1824919591665501,0.1947611277407363,0.2064268022422109,0.2163003243030759,0.226284107386089,0.237144880077883,0.2465328874024526,0.2554260472748935,0.2627321511634503,0.2704890812692523,0.2777932023784734,0.2838327835871523,0.2897134338247474,0.2951418847665612,0.30068207194524,0.3053020051666871,0.309566087282731,0.3139614680764538,0.3182500064661304,0.3225364542856014,0.3212926989931036,0.3201660344164055,0.3188515831505539,0.3168473872418964,0.3163911335161984,0.3150268254283662,0.3130955579083769,0.3141189586202373,0.3146537018082566,0.314591723990448,0.3148051170793746,0.3160803821706344,0.3171328744481871,0.3182813967004962,0.3194160513720869,0.3207616162143809,0.3230409223217853,0.3279997475225651,0.3317988544119197,0.3349763485312239,0.3347175321712147,0.3361629881154499,0.3389712843168191,0.3386006229582922,0.3406040268456375,0.3414289082763499,0.3497942386831276,0.3501937589231083,0.3537987104008971,0.3574249605055292,0.0,2.237815094153944,53.78656517648665,169.26863833652828,253.93685588879683,fqhc6_100Compliance_implementation_low_initial_treat_cost,56 -100000,95760,45469,430.2944862155388,5907,60.50543024227235,4665,48.20384294068504,1877,19.256474519632413,77.36211040614715,79.72369479430925,63.32787542470121,65.0754466354201,77.12847541519055,79.49088701759074,63.24235166921505,64.9923469723689,0.2336349909566024,232.8077767185164,0.0855237554861645,83.09966305120042,157.90654,111.147768489644,164898.2247284879,116069.09825568504,395.32386,260.0647376288154,412331.6624895572,271083.6232548198,383.22623,186.45517900391584,397163.9828738513,192326.25035250187,3081.67284,1407.5678520793126,3185901.2426900584,1437671.3054295229,1134.60131,499.8933831117831,1170469.2773600668,507658.1590557464,1840.36008,759.8950154199031,1889250.104427736,766673.7741690977,0.38213,100000,0,717757,7495.373851294904,0,0.0,0,0.0,34147,356.0568086883876,0,0.0,34952,361.9569757727653,1576774,0,56550,0,0,0,0,0,57,0.5952380952380952,0,0.0,1,0.0104427736006683,0,0.0,0.05907,0.1545809017873498,0.3177585915016082,0.01877,0.333656330749354,0.666343669250646,24.27713712436676,4.416923728179397,0.3217577706323687,0.2252947481243301,0.2289389067524115,0.2240085744908896,11.39549095478544,5.980648141814969,19.69620757984572,12232.405989917375,52.72617777742197,12.656937264860083,16.86744330929794,11.846784790703088,11.355012412560855,0.5616291532690246,0.7916270218839201,0.6975349766822119,0.5664794007490637,0.1301435406698564,0.7318435754189944,0.9002557544757033,0.8595238095238096,0.7477876106194691,0.162037037037037,0.4991207502930832,0.7272727272727273,0.6345975948196114,0.517814726840855,0.1218335343787696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289089490694,0.0044212789259131,0.006781037458126,0.0089720271904244,0.011199837241239,0.0137695034016376,0.0158158791018293,0.017897982520624,0.0199793458144599,0.0224358974358974,0.0247251620313397,0.0270867144647369,0.0291352029793625,0.0313472517054471,0.033109370323353,0.0353786508141638,0.037536371449577,0.039684598225865,0.0417545865599501,0.0437042360612026,0.0586202937277538,0.0713994288045695,0.084054323318127,0.0966965008781985,0.108958199289082,0.1242742472794187,0.1370410836842719,0.1481765344574311,0.1585341097280837,0.1691507613124598,0.1815538372067977,0.1940933292931042,0.2052849729659163,0.2151991511054226,0.2250751130823327,0.2360103253824934,0.2453578088187675,0.2545112951129511,0.2629769953264667,0.2710585379259802,0.2783519472252763,0.2850926954792678,0.2918441730568967,0.297275910028296,0.3027322404371584,0.3082848550581739,0.3138121408630553,0.3187498409304929,0.3230020325992672,0.3279287598944591,0.3267565419994343,0.3256418723685297,0.3237215589096643,0.3222824124232575,0.3222354163574291,0.3210618927396527,0.3199784888410863,0.3197140608604407,0.3200211358832753,0.3208430496466525,0.3211370725238602,0.3220245591939547,0.3249504330585411,0.3257623038516405,0.3267179597804463,0.3287770905878073,0.3296899841017488,0.3336466459880314,0.3360601293480161,0.337126600284495,0.3405583963075252,0.3448094058100912,0.3471726470035694,0.3494239024022893,0.353787597474935,0.356308273338841,0.3621317947160644,0.3652503490923598,0.3627477599782785,0.3615950445218738,0.0,1.9720646303658864,55.02298988321356,169.27311734028035,260.3356240720853,fqhc6_100Compliance_implementation_low_initial_treat_cost,57 -100000,95758,45056,428.3401908978884,5848,59.817456504939535,4581,47.23365149648071,1837,18.880929008542367,77.32840490063373,79.68866376719647,63.31625382636724,65.06462885024816,77.09660889827383,79.45677318175217,63.2306033595434,64.98114535893713,0.2317960023598999,231.8905854443045,0.0856504668238358,83.4834913110285,158.63782,111.64031336987314,165665.34388771694,116585.8866829645,399.90505,263.88052415660155,417032.64479208,274982.3452417569,383.03918,186.66882547836624,395405.5118110237,191499.35158906964,2979.62415,1376.144072090235,3077589.454666973,1403076.5388690592,1074.64373,484.2805729175726,1105095.36540028,488579.6099726106,1793.99638,754.148924807753,1845653.1255874184,763090.4671565831,0.37866,100000,0,721081,7530.242903987135,0,0.0,0,0.0,34533,360.01169615071325,0,0.0,35012,361.0351093381232,1568040,0,56318,0,0,0,0,0,64,0.6683514693289334,0,0.0,0,0.0,0,0.0,0.05848,0.1544393387207521,0.3141244870041039,0.01837,0.3413838120104439,0.6586161879895561,24.363916197929843,4.325285981677364,0.3241650294695481,0.2403405370006548,0.2187295350360183,0.2167648984937786,11.15643613594211,5.845378360556179,19.70863834534575,12006.231706376604,52.26894083665269,13.224065910634373,16.930581587070062,11.196796351772694,10.917496987175571,0.5616677581314123,0.7874659400544959,0.6962962962962963,0.5668662674650699,0.1047331319234642,0.7291338582677165,0.9308641975308642,0.8430379746835444,0.7290836653386454,0.1506849315068493,0.4974327997583811,0.7040229885057471,0.6431192660550459,0.5126498002663116,0.0917312661498708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022597610530689,0.004665409034666,0.0067619705153718,0.0089737596292607,0.0110781062440235,0.0132313396349413,0.0155102790014684,0.0174276146526728,0.0194749432619763,0.0215161627121419,0.0236071959407513,0.0257102666516074,0.0277052181246014,0.0296232206497332,0.0313296527526959,0.0331593363998139,0.0352044882875982,0.0371169302566761,0.0391038230923507,0.0412947707176854,0.0552058869578832,0.0693413098500219,0.0828099606815203,0.0960353997183157,0.108165630597408,0.1237105774921789,0.1353933597022364,0.1463705343365224,0.1565984534540949,0.1674082969666427,0.1805923532579429,0.1924787138514135,0.2035659117115941,0.2141654273466888,0.223311870562985,0.2338132683575146,0.2434242096218014,0.2529458768977974,0.2606059918035578,0.2683921676462837,0.2751382749762792,0.2813103020805314,0.2876778822248005,0.292028602965878,0.2973935665831895,0.3029693935432954,0.3081823311806382,0.3124163682473333,0.3171636467399058,0.3209106996645625,0.3197341278936511,0.3182675755697858,0.3170869295425058,0.3162101611621016,0.315703364369218,0.3134840935224224,0.3110170700394655,0.3116099325768788,0.3131250961686413,0.3136417259500232,0.313826896771413,0.313355859861284,0.3139386590286634,0.3152317288559995,0.3155440165392567,0.3165885416666666,0.3172559186347967,0.3217680459265301,0.324088969713926,0.3286527964559765,0.3328348740257386,0.3370171560888327,0.3418399103697249,0.3435522747815607,0.340832710978342,0.3450621627961529,0.3469294920394238,0.3441822620016273,0.335918028247023,0.3342487249901922,0.0,2.4043601827174057,55.33319127437063,175.02146053812731,242.239695951369,fqhc6_100Compliance_implementation_low_initial_treat_cost,58 -100000,95725,44822,424.2778793418647,5867,59.89031078610604,4571,47.1036824236093,1808,18.45912770958475,77.31464774318667,79.6814765907911,63.30648041847581,65.05640347532643,77.08757935973043,79.45654295898281,63.22147628110421,64.97451206442005,0.2270683834562419,224.93363180829817,0.0850041373715981,81.89141090637975,158.76498,111.71693739754944,165855.0639853748,116705.90796505552,399.049,262.177841405459,416229.30268999736,273248.09744132194,375.68074,182.66613197971452,388629.6787673021,187795.784328503,3019.64275,1386.5386985519335,3115205.6933925305,1409439.0949354058,1106.17577,491.9496735358677,1137962.1728910943,496757.2457634974,1780.14534,753.3848893665077,1820485.51580047,754352.750880785,0.37848,100000,0,721659,7538.866544789763,0,0.0,0,0.0,34429,358.9971271872552,0,0.0,34374,355.1945677722643,1570430,0,56336,0,0,0,0,0,83,0.8670671193523114,0,0.0,0,0.0,0,0.0,0.05867,0.1550147960262101,0.3081643088460883,0.01808,0.3423276983094928,0.6576723016905072,24.571415898423588,4.399616107704686,0.3082476482170203,0.2393349376504047,0.223583460949464,0.2288339531831109,11.20163306996727,5.754506173561458,19.225371375154367,12052.530236347868,51.88963540677357,13.110889384296732,15.87312346730262,11.329446087379896,11.57617646779431,0.55895865237366,0.7870201096892139,0.6955287437899219,0.5812133072407045,0.1147227533460803,0.7121090617481957,0.9148418491484184,0.8808864265927978,0.725,0.0851063829787234,0.5015042117930204,0.7101024890190337,0.6316793893129771,0.5370843989769821,0.1233045622688039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868155802056,0.0044712108769048,0.0070139466899449,0.0092470277410832,0.0113027112264102,0.0134683564937446,0.0155272849695473,0.0177860366339262,0.0200049066710281,0.0220404569837435,0.0242789619923513,0.0263471332347626,0.0285338106112036,0.030560936405226,0.0324108958412898,0.0344456849853202,0.0365430615816342,0.0384555519814052,0.0406866720735333,0.0429107198666527,0.0571315215235072,0.0710039353596248,0.0844706943759638,0.0971521117280834,0.1093113993461984,0.1246403182125931,0.1370270126837552,0.1484805894503716,0.1594368666353102,0.1691921359890109,0.1818005348977655,0.1934900150613832,0.2047346173958515,0.2142544051897957,0.2234851825718821,0.2334347381978061,0.2432133149894298,0.2515987863886038,0.2597458735738093,0.2672088028209458,0.2754693787616982,0.2821513542655556,0.2885244735344336,0.2938789232283937,0.2987129893195144,0.3034281906360293,0.3075921637353696,0.3123003906299703,0.3165862305432996,0.3199594037090247,0.3190685034709142,0.3178344649385634,0.3174609869253479,0.3157902329943013,0.3143905082933638,0.3125994857352761,0.3101014417066262,0.310782414551663,0.3110074818079327,0.3123484091881866,0.3133984725965858,0.3143770472394332,0.3158103509467838,0.3172612018448786,0.3189907420732,0.3202712886209495,0.32113253767055,0.3257863213020163,0.3283086177951874,0.3312871287128713,0.3353639132608992,0.3387071114175107,0.3399835848222741,0.3420128283445326,0.3438649438838064,0.3436426116838488,0.348951156025111,0.3571135711357113,0.3592017738359201,0.3548387096774194,0.0,2.4456915754455664,54.43552442610324,167.0749699864549,251.8264666512451,fqhc6_100Compliance_implementation_low_initial_treat_cost,59 -100000,95814,44850,424.7709103053834,5933,60.7322520717223,4723,48.71939382553698,1890,19.370864383075546,77.3504688262772,79.6843638365693,63.33176974345843,65.06055330718564,77.10840578260022,79.44221399325629,63.24198498506425,64.97344413827092,0.2420630436769784,242.14984331301537,0.0897847583941811,87.10916891472209,157.4694,110.81058556413302,164349.0512868683,115651.7685976298,397.87269,261.72545332818044,414701.4945623813,272606.1466259425,381.62968,185.575255331227,394524.6519297806,190781.17245445357,3098.12024,1425.8447647569665,3196536.5395453693,1451417.054512699,1144.23143,507.3521806483683,1177980.8065627152,513359.73820394085,1858.49038,787.0543940684834,1906348.9260442103,792197.6549157039,0.37968,100000,0,715770,7470.411422130378,0,0.0,0,0.0,34335,357.76608846306385,0,0.0,34921,360.7927860229194,1577829,0,56714,0,0,0,0,0,69,0.6992715052080072,0,0.0,1,0.0104368881374329,0,0.0,0.05933,0.1562631689844079,0.3185572223158604,0.0189,0.3405867182462927,0.6594132817537073,24.12941373478415,4.34123153233715,0.3256404827440186,0.2339614651704425,0.213635401228033,0.2267626508575058,11.315375518061709,5.819811339033767,20.37972079690161,12057.57093513041,53.6920307928412,13.146771576845362,17.353453165944202,11.361736744308496,11.830069305743136,0.5593902180817277,0.7764705882352941,0.7009102730819246,0.5698711595639246,0.1223155929038282,0.7264296754250387,0.9132530120481928,0.8663366336633663,0.7310924369747899,0.1561181434599156,0.4963546223388743,0.6942028985507246,0.6419753086419753,0.5201037613488976,0.1127098321342925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211358064712,0.0048163207365421,0.006911600527758,0.0091137234183066,0.0113615558313159,0.0134444195473712,0.0154403141094283,0.0176456171881382,0.0197640178315815,0.0220297688512171,0.0240561104161112,0.0260823133163558,0.0281368586678184,0.0301248249155475,0.0321988448844884,0.0343559169671733,0.0363139479513881,0.0383151300162844,0.0403537578982374,0.0425263903058568,0.0565512205299394,0.0708662240577134,0.083613652320622,0.0971568462637639,0.1094991255241587,0.1248731822793371,0.1373420137416235,0.1481256914305165,0.1587060958684744,0.1678096870981568,0.180537620523416,0.1927047859976864,0.2034697402583294,0.2145698983495464,0.2241449489004521,0.2336550073678495,0.2426873500362703,0.2517863371929469,0.2597756483037376,0.2671973428015118,0.2742000810044552,0.2814005707068344,0.2884947585129795,0.2948837766594775,0.3001069596713421,0.3046605151485246,0.308884517559796,0.3134014576219356,0.3169741840955357,0.3205826371999577,0.3196437006545651,0.3185103448275862,0.3175062456774266,0.3156172633956364,0.3155725508867992,0.3135150055973869,0.311026181829715,0.3117880097973139,0.3127339223762241,0.3129657760700563,0.3137511938425813,0.3155442358190685,0.3170828710778055,0.3178292841018305,0.3192031949189241,0.3219490575383893,0.3236339846972153,0.3268977208513844,0.3297087514422572,0.332276348646399,0.3356002901704751,0.3400760536600823,0.3413410274101486,0.3444957951359951,0.3517215498639647,0.3539312617702448,0.3572516758074345,0.358304880498092,0.3583061889250814,0.3550724637681159,0.0,2.236171931623629,56.63114900804591,178.6987462848602,252.4180019753861,fqhc6_100Compliance_implementation_low_initial_treat_cost,60 -100000,95714,45224,428.63113024217984,6040,61.79869193639384,4771,49.22999770148568,1867,19.129907850471195,77.30949638025908,79.66924486011591,63.31695901961641,65.05940278290453,77.08112868097349,79.4422532142575,63.23179851456295,64.9772545058105,0.2283676992855845,226.9916458584049,0.0851605050534587,82.14827709402073,158.6948,111.73958223476812,165800.8023904549,116742.96574667048,401.00283,263.40076521116646,418299.1829826358,274535.40256510687,386.83096,188.53443325172995,399595.0226717094,193543.01783518528,3134.0033,1426.8171346128863,3237380.780241135,1453748.1189929252,1116.86668,491.78702328712376,1151818.469607372,498748.22208571713,1825.43518,765.6129871918708,1872491.7149006412,770038.6255287812,0.38069,100000,0,721340,7536.400108657041,0,0.0,0,0.0,34612,360.9921223645444,0,0.0,35323,364.5234761894812,1568137,0,56255,0,0,0,0,0,68,0.7000020895584763,0,0.0,0,0.0,0,0.0,0.0604,0.1586592765767422,0.3091059602649006,0.01867,0.3403108150967333,0.6596891849032668,24.57655838639975,4.437307635319957,0.321106686229302,0.2364284217145252,0.2221756445189687,0.2202892475372039,11.317565330171329,5.818714354095238,19.797583572994192,12146.750155137945,53.78745139142183,13.387812093410442,17.154341040286514,11.85055388497035,11.39474437275452,0.5548103123035003,0.7819148936170213,0.6775456919060052,0.5754716981132075,0.1113225499524262,0.7266244057052298,0.9250645994832042,0.8452088452088452,0.728,0.1513761467889908,0.4930179538330008,0.7071524966261808,0.6168888888888889,0.528395061728395,0.1008403361344537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020761385847824,0.0043792068769767,0.006614722830939,0.0084809458032014,0.0109693488537589,0.0132319561920465,0.0151862610202313,0.0173425745404064,0.0197661583745554,0.0220241323904166,0.02431349234822,0.0263465921925375,0.0284218860862322,0.0305448853279507,0.0326719194752691,0.0347563747572013,0.0369059446928299,0.0391081151153746,0.0411976844490173,0.0430203852043207,0.0574949094136688,0.0710555235752786,0.0841601812422647,0.0962460567823343,0.1080354318253717,0.1240005076786394,0.1359628179416165,0.1480294674984563,0.1592812580121357,0.1695994852822905,0.1829513989894092,0.1951061065396275,0.206484121628975,0.2161526169472232,0.2254853380022684,0.2356762749445676,0.2452020822627851,0.2537456347865269,0.2627046433156477,0.270199935800431,0.2776947927884114,0.2843185434802958,0.2905743043220841,0.2958760166014922,0.3019700302614149,0.3069095663328235,0.3118562184758257,0.3165847697125544,0.3214535652264068,0.3248985848121671,0.323281207872742,0.3225277827505955,0.320695102685624,0.3196952391967499,0.3190324596114367,0.3167290350285258,0.3148139331905102,0.3153602025882623,0.3155777690293206,0.3163170330063721,0.3171569639739426,0.3179862391687982,0.3182505671792286,0.3189838792852178,0.3201457951144154,0.321201044386423,0.3233315200274859,0.3246675490010714,0.3270143846938416,0.3313646993539181,0.3339856193683444,0.3363419166445447,0.3386426592797784,0.3401629979434838,0.3401430992280173,0.3400378608613346,0.3447114648706567,0.351445560795571,0.3570839064649243,0.3576362240982348,0.0,2.408801887698278,54.905988850405,173.67318739062932,267.74055098699296,fqhc6_100Compliance_implementation_low_initial_treat_cost,61 -100000,95736,45100,427.9581348708949,6043,61.82627224868388,4751,49.06200384390407,1830,18.72858694743879,77.40440741590693,79.7594771980444,63.3594678928421,65.09843111264553,77.17342931558602,79.53143980900181,63.27397461933881,65.01657833830494,0.230978100320911,228.03738904258356,0.0854932735032889,81.85277434058946,158.62176,111.5215862934275,165686.6382552018,116488.66287856972,398.5616,262.0080823987799,415748.7569984123,273114.2691766869,382.91723,186.12451498863,396318.07261636166,191635.1740521983,3103.5412,1422.3114835922893,3205963.806718476,1449911.8171742705,1112.4212,492.222439759743,1144242.5106542993,496426.7899614974,1791.92376,755.4930141009307,1835569.5663073447,758544.4401563288,0.37934,100000,0,721008,7531.2108297818995,0,0.0,0,0.0,34478,359.5408205899557,0,0.0,34946,361.4523272332247,1575407,0,56487,0,0,0,0,0,64,0.6476142725829364,0,0.0,0,0.0,0,0.0,0.06043,0.1593029999472768,0.3028297203375806,0.0183,0.3363320707070707,0.6636679292929293,24.24326127265384,4.38775910512196,0.3214060197853083,0.232582614186487,0.2292149021258682,0.2167964639023363,11.341937286968754,5.941424060751956,19.54484014283932,12100.337508384308,54.05021930807256,13.40423421847166,17.215419807314348,12.056068456360675,11.37449682592588,0.5704062302673122,0.7846153846153846,0.6967910936476752,0.6069788797061524,0.1145631067961165,0.7266244057052298,0.9041769041769042,0.8720626631853786,0.7649402390438247,0.1040723981900452,0.5139008311837203,0.7148997134670487,0.6381118881118881,0.5596658711217184,0.1174289245982694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502111028987,0.0045502913605269,0.0068172134639965,0.0089981211598029,0.0111130316309619,0.0132837947882736,0.0152764331210191,0.0176423170719263,0.0196072421121464,0.0216218981836786,0.0238595484313986,0.0260489366943098,0.0281381720982831,0.0302715062623599,0.0322237814189607,0.0342988277615828,0.0363382177807694,0.0383717673419848,0.0403338113944835,0.0423085335749773,0.056932553769054,0.0700195690620454,0.0834233686131769,0.0966829627293276,0.1094046464561285,0.124800406061311,0.1369341269083463,0.1476603673143465,0.1585397123870168,0.1679821551132464,0.1810496160597934,0.1931679236504106,0.2053794783667964,0.2156556158152554,0.2261801300315728,0.2359239533621959,0.2453758450657087,0.2535413949723434,0.2620365120761991,0.2692901852635915,0.2760082718146004,0.282449875125458,0.2888456090651558,0.2950394763559919,0.3005811841627315,0.305719024510105,0.3094854602889214,0.3140036544513247,0.3187000477733734,0.322833506503755,0.3214880025766278,0.3204324383651854,0.3195285391174859,0.3180095401420933,0.316733569344255,0.3153506695780971,0.3134102037592797,0.3147069411264195,0.3149065890086684,0.3156105980533461,0.3165787800590897,0.3181836138105396,0.3195283590826417,0.3212940048603215,0.3208953435425504,0.3228752048700538,0.322451642180498,0.3246602792911265,0.3278797413039678,0.3306582328523423,0.3341033654935,0.3353252247488101,0.336753848079089,0.3396611707759794,0.3419655333022822,0.3420620009394082,0.3423863289594141,0.3444466760393653,0.3494742667404538,0.3488188976377953,0.0,2.1500566427367303,55.32733125757576,184.20985332521863,256.0027294847559,fqhc6_100Compliance_implementation_low_initial_treat_cost,62 -100000,95745,45037,426.9883544832628,5901,60.379132069559766,4585,47.26095357459919,1758,17.95394015353282,77.33232137485312,79.69891625247577,63.31916690730778,65.07160938596067,77.11066512955689,79.4798791180959,63.23530402048309,64.9911525822075,0.2216562452962307,219.0371343798745,0.08386288682469,80.45680375316522,159.14778,111.91079204379388,166220.46059846468,116884.2154094667,398.45943,262.19341638665526,415515.0242832524,273194.12065807177,379.49352,184.5649249147771,392340.9995300016,189603.31043943096,2981.4539,1364.678759766729,3074754.598151339,1386188.3984268084,1063.13155,461.9770122058167,1097989.7644785629,470119.3401282748,1721.93168,729.573488195644,1760050.2584991383,730180.569384159,0.37963,100000,0,723399,7555.475481748394,0,0.0,0,0.0,34440,359.0265810225077,0,0.0,34624,357.64791895138126,1571145,0,56349,0,0,0,0,0,72,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.05901,0.1554408239601717,0.2979156075241485,0.01758,0.3307966321243523,0.6692033678756477,24.67277817976438,4.342286881059346,0.314721919302072,0.2486368593238822,0.2215921483097055,0.2150490730643402,11.136630283671538,5.601405331257661,18.63168245346689,12058.209331814138,51.75951398015388,13.624509231335711,16.271999858278665,11.203944613525689,10.659060277013811,0.5655398037077426,0.7912280701754386,0.7124047124047124,0.5501968503937008,0.1054766734279918,0.7238805970149254,0.9205607476635514,0.8594594594594595,0.6829268292682927,0.1034482758620689,0.5090263391535957,0.7134831460674157,0.6616961789375583,0.5166461159062885,0.1060025542784163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0046962642891194,0.0068840874015108,0.0093198634035287,0.0115569300887116,0.0137121667464675,0.0156747164885371,0.0182339789073905,0.0202750370635448,0.0224510897941215,0.024655034547803,0.0268774703557312,0.029059424775576,0.0312480688817022,0.0330671453922661,0.0351723995369604,0.0368103876739562,0.0388422035480859,0.0409660590692744,0.0425137477087152,0.0567467691087124,0.0701737865804534,0.0835518449371735,0.0964258299246048,0.1084176007254552,0.1242582269376011,0.1362623368354027,0.1476067793723119,0.1581943836187098,0.1677712716899384,0.1803757244113148,0.1926123942076668,0.2041018387553041,0.2140185075802323,0.2241847975612708,0.2345182724252491,0.2438069094804499,0.2522786092044559,0.2607550981037437,0.26842593547057,0.2751102315731,0.282590638417352,0.287658265294048,0.2936679129517783,0.2988389886084865,0.3024803164159243,0.3074142179857645,0.3120003050601858,0.3171429310969612,0.3214290422516643,0.319834299471426,0.3187622857299957,0.3174132012829891,0.3155609411289508,0.3149703264094955,0.3133239531398158,0.3114349065568578,0.3128136171329245,0.3133290142189791,0.3137230417952514,0.3144533813300336,0.3151690171489605,0.316602397518652,0.3169417236906838,0.3186498580570658,0.3194770016148356,0.3201739427012278,0.3244110338753814,0.3269365457346967,0.3285356447059759,0.3331514820876523,0.3368477103301384,0.3409349336702463,0.34332673870035,0.3425960462513987,0.3455246552932928,0.348994296007205,0.3498710061520143,0.3601294847585649,0.358526395746297,0.0,2.412025803164004,52.30258528779025,170.64816830840465,254.60976333706617,fqhc6_100Compliance_implementation_low_initial_treat_cost,63 -100000,95721,45055,427.53418790025177,5920,60.64499952988372,4621,47.6384492431128,1817,18.564369365134088,77.41699606751023,79.76979202679595,63.36600846061516,65.10030100947417,77.1856780980507,79.54202721268223,63.279889912190974,65.01856753274573,0.2313179694595248,227.7648141137263,0.0861185484241886,81.73347672843079,158.80348,111.72489729875988,165902.44564933504,116719.3168675211,402.03791,264.7323655299483,419398.8362010426,275960.105603308,383.53311,186.56237111416831,396822.4318592576,191957.2055728027,3032.22271,1392.6074307661622,3125605.6664681733,1413025.8363360297,1086.62651,483.0229090971608,1116721.4822243813,486252.34112882166,1773.53228,750.6791585836401,1812195.9235695405,747952.755156355,0.37945,100000,0,721834,7541.020256787956,0,0.0,0,0.0,34632,361.1433227818347,0,0.0,35078,362.5641186364538,1571468,0,56375,0,0,0,0,0,79,0.8253152390802436,0,0.0,0,0.0,0,0.0,0.0592,0.1560152852813282,0.3069256756756757,0.01817,0.3363460296965784,0.6636539703034215,24.23660039333096,4.324974679458495,0.3343432157541657,0.233715645964077,0.2179181995239126,0.2140229387578446,11.328192572769362,6.016588559756546,19.34307351351824,12022.166768742374,52.40125737384236,12.823067758888923,17.366178074989495,11.292112719041151,10.91989882092276,0.575632979874486,0.7898148148148149,0.7003236245954693,0.5998013902681232,0.1223458038422649,0.7291666666666666,0.9029850746268656,0.8406862745098039,0.7727272727272727,0.1559633027522936,0.5188259709457457,0.7227138643067846,0.6499560246262093,0.5514612452350699,0.11284046692607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0044271545654398,0.0068159688412852,0.0089968419663075,0.0112046526761021,0.013049939941774,0.0153708158356097,0.0175648091447234,0.0197947963292251,0.022046712431072,0.0241425599721274,0.026037336945924,0.0281975369559407,0.0301844433230693,0.0321252824115626,0.0342361706744928,0.036651274511834,0.0383973115658676,0.0405762155195709,0.0422340059798518,0.0566983397723713,0.0702828263803873,0.0836480758739351,0.0963704630788485,0.1083161946949322,0.1235352595287448,0.1353790996648139,0.1466283463728777,0.1576439415793241,0.1674817150333526,0.1799112719128225,0.1918770082982613,0.2027237058049931,0.2135133363916377,0.2234221367756111,0.2334258880272575,0.243104389787253,0.250831535418914,0.2591799022775454,0.2669885694016957,0.2743602191552812,0.2813478525026873,0.2879112046241681,0.2932805094077656,0.2995402326738078,0.3045560301847771,0.3096389607468226,0.3145155142181901,0.3184403764608542,0.3218761943671995,0.3204829969476529,0.3190092181725762,0.3183340368650626,0.3163894869164415,0.315116503556737,0.3138670500780079,0.3108485872672426,0.3115808071719534,0.3119545431346864,0.3124611311501626,0.3130523960469886,0.3135249931175522,0.3135708174210647,0.3139783033967633,0.3150278648137961,0.3151573322265169,0.3162952883143392,0.3196700824793801,0.3232996163236833,0.3258271877588042,0.3296177625344104,0.3327885274423999,0.3346635904470911,0.3372454001665783,0.3379156604124094,0.3393960592281683,0.3415222305953278,0.348731165741475,0.3546231961517905,0.3626577579806978,0.0,2.452979878870712,54.331145762489015,174.11120935127727,249.6546985064465,fqhc6_100Compliance_implementation_low_initial_treat_cost,64 -100000,95702,44948,425.88451652003096,6085,62.36024325510439,4754,49.16302689598964,1936,19.874192806837893,77.3508434030137,79.74188251348632,63.31502979323547,65.08294789533898,77.11072028518343,79.50107375868909,63.22615291223144,64.9958806521836,0.2401231178302652,240.80875479722863,0.0888768810040261,87.06724315537429,158.89478,111.792197462046,166030.78305573552,116812.81212727632,398.98598,261.8351983722179,416387.36912499217,273077.1126749889,378.89684,184.1935436987979,392784.0588493448,190051.16564851892,3135.46692,1430.067769525769,3244602.955006165,1462613.915619078,1130.25009,500.56898266531095,1166884.7568493865,508929.0204019425,1888.1526,789.2171950336103,1940771.708010282,797550.296022927,0.3798,100000,0,722249,7546.853775260705,0,0.0,0,0.0,34412,359.04160832584483,0,0.0,34635,358.72813525318173,1571760,0,56392,0,0,0,0,0,72,0.7523353743913398,0,0.0,1,0.0104491024221019,0,0.0,0.06085,0.1602159031068983,0.3181594083812654,0.01936,0.3351691581431943,0.6648308418568056,24.50500687614242,4.365031771528688,0.3161548169962137,0.2391670172486327,0.2219183845183003,0.2227597812368531,11.200255352819813,5.91511941603221,20.52210543414215,12172.354083741911,53.771430709962026,13.686813087597525,16.897895591064138,11.765759973926174,11.420962057374188,0.56541859486748,0.7985927880386984,0.6899534264803726,0.571563981042654,0.1322001888574126,0.7325670498084291,0.9198113207547168,0.8486352357320099,0.7450199203187251,0.1629955947136563,0.5021745433458974,0.726507713884993,0.6318181818181818,0.5174129353233831,0.1237980769230769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026034016430807,0.004867611118435,0.0069232252890598,0.0094011708268964,0.0116482532706667,0.014129703958762,0.0162808964694121,0.0183324141593643,0.0205254599564332,0.0225312877655107,0.0247666905958363,0.026837986072595,0.0288617802554977,0.0308778075417267,0.0330244174286363,0.0348887694343367,0.0368705129134853,0.0390256053639449,0.0410334820732049,0.04298519908276,0.0570363252772961,0.0706208773950371,0.0836420886906323,0.0962845300961477,0.1084060294722629,0.124189367892092,0.1370969453819864,0.1488355748650289,0.1595835649236821,0.1698876500949662,0.1832801586617228,0.1945587216351983,0.2064290067032297,0.2163111641294474,0.2258909795545377,0.2364440797498392,0.2454496728231011,0.2545603999639672,0.2626777843413459,0.2700765914511099,0.2759163819561063,0.2831896753642198,0.2897733331753498,0.295720404563942,0.3010091185410334,0.3056295309957094,0.3099245429404477,0.3144482047889259,0.3196024381721474,0.3232363228403616,0.3219863890573411,0.3210569777043765,0.3198760825177779,0.3200075102182296,0.3195474227415624,0.3175993883792048,0.3163926651912741,0.3167666240618753,0.3177420180542994,0.3184678181202431,0.3200770684075646,0.3219738008470403,0.3224945249765356,0.3231875667972925,0.3243061879883046,0.3266408664710007,0.3272125396106836,0.3298779155087895,0.3330659785186218,0.3372508942258559,0.3398097642338727,0.3409785932721712,0.3482142857142857,0.3548044862079418,0.3598687294889826,0.3617905485632866,0.3628197320341047,0.36096203538064,0.3589536138079827,0.3621351766513057,0.0,1.9789258561736327,57.47256767599298,174.59926417410716,256.8084143540163,fqhc6_100Compliance_implementation_low_initial_treat_cost,65 -100000,95718,45213,428.19532376355545,6021,61.7438726258384,4730,48.77870410998976,1825,18.669424768591067,77.26691653433518,79.6255357951826,63.2951211478972,65.03849526442474,77.04405035536593,79.40512036525375,63.21234687252112,64.95887134556348,0.2228661789692552,220.415429928849,0.0827742753760745,79.62391886125886,157.87772,111.09620236692652,164940.4709667983,116066.15512957492,398.50932,261.9202690640127,415690.04784888943,272990.6068492996,379.50643,184.92753710011817,392119.6222236152,189824.6697852453,3110.02033,1416.1352341132676,3211716.072212123,1442243.8392414022,1134.29426,496.8674064252968,1167125.7234793874,501288.943406316,1791.37946,750.5621610029641,1835240.9578135773,755160.7483168545,0.38124,100000,0,717626,7497.294134854468,0,0.0,0,0.0,34423,358.96069704757724,0,0.0,34747,358.5950395954784,1573097,0,56487,0,0,0,0,0,60,0.6268413464552122,0,0.0,0,0.0,0,0.0,0.06021,0.1579320113314447,0.303105796379339,0.01825,0.3283629441624365,0.6716370558375635,24.3789867577636,4.347587314748639,0.321353065539112,0.2315010570824524,0.2257928118393234,0.221353065539112,11.124240254079496,5.7340248964139775,19.479669055521185,12176.547179421625,53.63931224747784,13.19572047615824,17.073804565237904,11.897293452181064,11.472493753900649,0.5653276955602538,0.7917808219178082,0.6967105263157894,0.5889513108614233,0.1136580706781279,0.7126530612244898,0.9053398058252428,0.8502824858757062,0.7004048582995951,0.1226415094339622,0.5138373751783167,0.7232796486090776,0.6500857632933105,0.5554202192448234,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586395494875,0.0042076873941741,0.0064435604984373,0.0087565140541034,0.0111364237332953,0.0133790842352845,0.0158213976247515,0.0180684149814722,0.0202406387045991,0.022324353095316,0.0245405061863807,0.0267340150301835,0.0288652372872641,0.0309307020435069,0.0329110267414988,0.0351767624560678,0.037570159269308,0.0393318462416351,0.0414124299658014,0.0433020411140169,0.0579716198014012,0.0713209127067197,0.0848304231027535,0.0978368369000273,0.1095802255535979,0.1253306808321517,0.1370382165605095,0.1480483518824218,0.1584063131556154,0.1679726915562807,0.1811252816438297,0.193214572091108,0.2044518981552066,0.2145477642832893,0.2243465420725525,0.2354926075567198,0.2451247875480812,0.2550844497526788,0.2634927126287927,0.2708576931013137,0.2780105075566459,0.2842782751155579,0.2905391007884083,0.2971262094018631,0.3023999027887478,0.3072228250147958,0.3122760417971784,0.3163277001642831,0.3203417739572393,0.3252341145971112,0.3237332324692342,0.322895525273026,0.3215926276660401,0.3214130529243069,0.3203694049303642,0.3174803052872433,0.3162175902389425,0.3165307635285396,0.316443545484153,0.3183770626767369,0.3194689600781162,0.3196709939550094,0.3198838774823291,0.3217761830006728,0.323859657595441,0.3251824149384104,0.3265241896260692,0.3289935218833939,0.3321984608291662,0.3360109245722548,0.33960877950225,0.3413536252076523,0.3449214792299899,0.3451145038167938,0.3506456781977566,0.3471926083866382,0.3472477064220183,0.3475363489499192,0.3515367727771679,0.3533950617283951,0.0,2.397150021249335,53.39793509755386,180.91553785452632,262.19935807974394,fqhc6_100Compliance_implementation_low_initial_treat_cost,66 -100000,95706,45070,427.6534386558836,5968,61.16648903934967,4720,48.77437151275782,1899,19.46586420914049,77.288290147924,79.65827082536899,63.294707477804174,65.04426652810812,77.05451772584871,79.42426015489642,63.20876184109764,64.96020249757096,0.2337724220752903,234.0106704725713,0.0859456367065334,84.0640305371636,157.9996,111.15758369947991,165088.50019852465,116144.843269471,399.07443,262.55300950801404,416371.2097465154,273724.541311949,383.7004,186.69098442294597,397284.43357783207,192217.5773878774,3133.54917,1433.5099658880015,3237970.775082022,1461689.1618848527,1133.70446,507.68895261509977,1167760.8718366665,513737.9845402468,1871.09216,786.1192747176488,1919918.5839968235,792697.4100297793,0.37986,100000,0,718180,7504.022736296574,0,0.0,0,0.0,34426,359.1415376256452,0,0.0,35083,362.95530060811234,1570054,0,56377,0,0,0,0,0,65,0.668714605144923,0,0.0,0,0.0,0,0.0,0.05968,0.1571105144000421,0.3181970509383378,0.01899,0.3256668263855614,0.6743331736144386,24.407206912798248,4.4174625486300085,0.3120762711864406,0.2324152542372881,0.2213983050847457,0.2341101694915254,11.38539981843232,5.810602693242403,20.30624942033541,12162.217274806651,53.65001712384189,13.19682921697081,16.711798091987607,11.534139734119814,12.207250080763655,0.5555084745762712,0.7894257064721969,0.6992532247114732,0.5866028708133971,0.102262443438914,0.7287066246056783,0.9140811455847256,0.8605898123324397,0.7689075630252101,0.1554621848739495,0.4918887601390498,0.7123893805309734,0.6445454545454545,0.5328376703841388,0.0876585928489042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382240046992,0.0042984154661854,0.0065653285708487,0.0089294784534427,0.011227727605565,0.0132065289331934,0.0154768459044473,0.0175572908691879,0.0198509644379478,0.0220744000409353,0.0239817984299096,0.0261853193869904,0.0284389426388788,0.0305043202438697,0.0325422120452599,0.0346206711242933,0.0366109977946429,0.0384280110416969,0.0402716673427148,0.0424061780246579,0.0576489263931823,0.071548971365754,0.0846513092302041,0.0972260223517774,0.1092392623790071,0.1249761778718898,0.137010883992567,0.1489756128743567,0.1591745081266039,0.1688643587320677,0.1812907747883755,0.1929281001852473,0.2047959228122141,0.2150450519493316,0.2255911538927497,0.2357496283476447,0.2457938805853353,0.2544583474241912,0.2629549590536851,0.2712284730195178,0.2781952271620399,0.2841870824053452,0.290199753273866,0.2964675642888886,0.3024997260407407,0.308307182921104,0.3130053739139169,0.3170436135879479,0.3216155475012016,0.3260498418454453,0.3239429018591975,0.3222347941273871,0.3219394967486571,0.3209087218742751,0.3196266698473282,0.3175614474108417,0.3156133003363157,0.3160249346206352,0.3172222507576147,0.3169195533924993,0.3183081661783487,0.318693715982187,0.319564030408669,0.3195853255283971,0.3213189448441247,0.3219784499545631,0.3222127417519909,0.3251367838500723,0.327431763094109,0.3299964247407937,0.3338809784592917,0.3381382978723404,0.3401206636500754,0.3404287669150068,0.3450041903342956,0.3472906403940887,0.3555153161309793,0.359168997203356,0.3639291465378422,0.3666542334949645,0.0,2.074550420638563,55.74344235727981,176.8482166573718,259.1617253380069,fqhc6_100Compliance_implementation_low_initial_treat_cost,67 -100000,95824,45734,433.3256804140925,5924,60.53806979462348,4679,48.18208382033728,1855,18.982718316914344,77.36488025655099,79.68051844990424,63.35773544642036,65.07161313612218,77.13415003067252,79.45231056868172,63.27194434447655,64.98936581820762,0.2307302258784744,228.20788122251656,0.085791101943812,82.24731791456463,159.05252,111.9607248181729,165984.012355986,116839.96161522467,401.76709,264.4599278870919,418659.365085991,275368.37106266903,386.44738,188.7214766168406,399353.387460344,193862.0078776696,3110.83969,1426.5465038033478,3208651.433878778,1450956.9249909709,1137.18488,505.084758539826,1170990.2947069628,511343.3153905348,1822.58882,768.5333581605847,1867753.923860411,771597.2158253542,0.38424,100000,0,722966,7544.727834362999,0,0.0,0,0.0,34601,360.4420604441476,0,0.0,35340,364.8877108031391,1570043,0,56356,0,0,0,0,0,77,0.7931207213224245,0,0.0,1,0.0104357989647687,0,0.0,0.05924,0.154174474286904,0.313133018230925,0.01855,0.3324162485839133,0.6675837514160867,24.55746132133813,4.3918593738038645,0.3261380636888224,0.2263304124812994,0.2169266937379782,0.2306048300918999,11.15682057426496,5.720261105199104,19.962898124632417,12193.135571585372,53.04135107149353,12.616467012478966,17.28065456226504,11.260975353902996,11.883254142846535,0.569993588373584,0.785646836638338,0.7103538663171691,0.6029556650246305,0.1288229842446709,0.750197628458498,0.9170854271356784,0.9015151515151516,0.799163179916318,0.1551724137931034,0.5032220269478618,0.7065052950075643,0.643362831858407,0.5425257731958762,0.1216056670602125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044709842248266,0.0065650620991963,0.0088875797342867,0.0112262433776349,0.0136134077302162,0.0156883932394136,0.0177328133613737,0.0197190873405299,0.0216899534264803,0.0238080596892551,0.0260562585306281,0.0280475647231729,0.0301355482137894,0.0326753594804927,0.0347579229895736,0.0369155978485726,0.0391342188698012,0.0409722871175071,0.0430933133576786,0.0577314211212516,0.0718787562059054,0.0849657455322536,0.0982537565759768,0.1109847407828641,0.1272544878563886,0.1395018698420433,0.150547464653981,0.1609933541704447,0.1709401709401709,0.1835863122451833,0.1955875517506026,0.2071527898487745,0.2173381239966363,0.2260733870347374,0.2354333233807738,0.244759061643683,0.2534866485503178,0.2624010688526818,0.2699505024062918,0.2772248649147924,0.2840350651927768,0.2899269866023959,0.2958228196266488,0.3010669158969254,0.3065417569430766,0.31178669200095,0.3156456880011182,0.3210401768973142,0.3248692857801367,0.3233700402027618,0.3226440510226523,0.3216967442908865,0.3214807105791885,0.3201630418612954,0.317634072302456,0.315405478278799,0.3155176100939315,0.3169624503220501,0.3180719872563584,0.319144131428894,0.3210521091811414,0.3226572515394153,0.3241182933118091,0.325042057197789,0.3261572143452877,0.3270438464380097,0.3290729807813088,0.3322101716331473,0.3369305511309334,0.340583360043958,0.3435713904171785,0.3460732651895117,0.3506912442396313,0.3539923954372623,0.3555423122765196,0.3550077041602465,0.3547200653861871,0.3580858085808581,0.3562908811081185,0.0,2.5689251350082407,54.87591825250025,174.40588321831703,255.40609797532883,fqhc6_100Compliance_implementation_low_initial_treat_cost,68 -100000,95636,45501,431.751641641223,6041,61.8700071102932,4738,48.93554728344975,1894,19.406917897026226,77.2563444549925,79.66582906196668,63.27473565930678,65.0553908680278,77.02145563649265,79.43349345606904,63.186535623691285,64.9709501438679,0.2348888184998543,232.3356058976316,0.0882000356154932,84.44072415990433,157.96704,111.14022644615986,165175.0596009871,116211.4888202767,401.72498,264.9133561651881,419463.2774269104,276409.6249155005,386.11761,188.51748216991948,400160.1907231586,194393.14856862844,3102.17541,1419.3537664478742,3204091.084947091,1444540.532507501,1102.5869,489.3024710637853,1138047.08477979,496846.6364836504,1848.20054,779.8721575360313,1895088.5440629048,781874.0799070814,0.38256,100000,0,718032,7507.957254590322,0,0.0,0,0.0,34618,361.3492826968924,0,0.0,35227,364.7475845915764,1567256,0,56315,0,0,0,0,0,75,0.7737672006357439,0,0.0,0,0.0,0,0.0,0.06041,0.157909870347135,0.3135242509518292,0.01894,0.3306553245116572,0.6693446754883428,24.449127275042056,4.391772663802476,0.314689742507387,0.2363866610384128,0.2306880540312368,0.2182355424229632,11.244573707058946,5.743630849269622,20.22878779106246,12201.727601416513,53.75504342708438,13.444137030938014,16.8945216463876,12.151032032281943,11.265352717476814,0.5523427606585057,0.7794642857142857,0.6901408450704225,0.5580969807868252,0.1015473887814313,0.7250778816199377,0.9156908665105388,0.8427835051546392,0.7121212121212122,0.1219512195121951,0.4881297046902142,0.6955266955266955,0.6364460562103355,0.5090470446320868,0.0965018094089264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0048143681015172,0.0070834897857701,0.0093870957910456,0.0117611150676569,0.0141804957061214,0.0163314019911865,0.0184314847357881,0.020733179223861,0.0228041059684061,0.024934585193166,0.0270175835243096,0.0289188131859081,0.0310344472053531,0.0329328636509199,0.0347685716946574,0.0371023086572053,0.0389341920739625,0.0409985327936233,0.0431304238985313,0.0577944065883533,0.0712908835669537,0.0845660413014036,0.0981694544153096,0.1105752487890332,0.1266033103331499,0.1388829922730746,0.1503839476851309,0.1614806580227251,0.1712544133586598,0.1838578559799894,0.1958568534188543,0.2067406673129922,0.2164682931106288,0.2262173937020901,0.2367661426414424,0.2456536817846195,0.255098244783388,0.2635671251563032,0.27084361124815,0.2775039717973397,0.2833087079903374,0.2901518747033697,0.2961046134633396,0.3014284148613597,0.3068664755880609,0.3115584822828472,0.3157626232351703,0.3206952052127411,0.3252336695707354,0.3239946018893387,0.3223255685581806,0.3209619952494061,0.3191961694718514,0.3179192477050526,0.316811107861398,0.315233977619532,0.3154971820309152,0.3161776081687381,0.3169650070919439,0.3183394263747032,0.3189646610118988,0.3201497875205116,0.3212311135982093,0.3233283589274539,0.3258863399374348,0.3269252742230347,0.3300989225631655,0.3319784147452519,0.3349456823408135,0.3376558376558377,0.3427160231557704,0.3465858891833901,0.346497877501516,0.3484974572353213,0.3521820741435945,0.3553619705617302,0.3572567783094099,0.3610738255033557,0.367112810707457,0.0,2.3178033467946606,56.10858245697303,174.83220323070557,260.7113263223872,fqhc6_100Compliance_implementation_low_initial_treat_cost,69 -100000,95691,45232,429.03721353105306,6018,61.75084386201419,4753,49.0746256178742,1868,19.09270464306988,77.32722884548278,79.7043737193021,63.32110870231941,65.07602037721992,77.09544421911583,79.47519537770843,63.2349845662816,64.9936605556299,0.2317846263669452,229.17834159366635,0.0861241360378173,82.35982159001765,158.20618,111.307598072661,165330.26094408042,116319.81907667492,398.58047,261.9080213961461,415961.187572499,273134.3296612494,382.53872,185.9722646541888,395871.7434241465,191298.00836005172,3129.38257,1429.7165095281568,3234297.394739317,1458094.7628597843,1124.48669,494.60308058705726,1161794.2962243054,503546.80229808064,1831.04218,768.4397853942439,1874870.029574359,770550.9576695081,0.38081,100000,0,719119,7515.011861094565,0,0.0,0,0.0,34407,358.9470274111463,0,0.0,35005,362.01941666405406,1573449,0,56525,0,0,0,0,0,57,0.585217000553866,0,0.0,1,0.010450303581319,0,0.0,0.06018,0.158031564297156,0.3104021269524759,0.01868,0.3368771818470327,0.6631228181529674,24.270806169568573,4.336180072149968,0.3326320218809173,0.2185987797180728,0.228066484325689,0.2207027140753208,11.172378866196189,5.730722732827783,19.901895693718505,12173.267803427456,53.84733767342925,12.438940474007184,17.81210696585613,12.018340858098824,11.57794937546711,0.5606985062066063,0.7969201154956689,0.6932321315623023,0.577490774907749,0.109628217349857,0.7360126083530338,0.918158567774936,0.8910411622276029,0.6935483870967742,0.1612903225806451,0.4968427095292766,0.7237654320987654,0.6232876712328768,0.5430622009569378,0.0961538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024500374592504,0.0045910145838189,0.0070609718981434,0.0094762180444254,0.011714340915793,0.0141732764501644,0.0161727815960679,0.0181691910165146,0.0201255803489252,0.0220581458459206,0.0242749312876892,0.026313897476454,0.0281732153877802,0.0303042792816,0.032457815160741,0.0344688508314718,0.0367987567987568,0.0387039171104951,0.0406390746731295,0.0428610144051366,0.0578975955211096,0.0715451919454096,0.0848796349714165,0.0977044144257879,0.1098255531883477,0.1254191746622801,0.1378951725016183,0.1492594524952883,0.1603170872417256,0.1703855478555643,0.1836444521042257,0.1948692969637928,0.2066628961736747,0.2162652842487477,0.2265618981588475,0.236229282992112,0.2450391732327403,0.2539650401565769,0.2624519116195145,0.2698758190899509,0.2772766745788224,0.2841257578949833,0.2900953170327393,0.2960023973629008,0.3018656943178365,0.3069437592501233,0.3114355840512923,0.3146983164811655,0.3190761334473909,0.3240044905236743,0.3228695921973856,0.3214856230031949,0.3216330559864617,0.3199381538639385,0.3189935909827655,0.3170641863891703,0.3149143246627673,0.3154529656710056,0.3156440776235462,0.3170197614384903,0.3182073038537734,0.319540048519753,0.3192851761948606,0.3214213923570008,0.3225798691301,0.3249451811632035,0.3261384725196288,0.3297972802820448,0.3329476931706633,0.3378093838147074,0.3380095046609395,0.340956340956341,0.3427164857359253,0.3432093094472516,0.3479784111353091,0.3489972706775839,0.3529231241368727,0.3518067397482745,0.3561379310344827,0.3620292083013067,0.0,2.363198501563716,55.487896221868816,178.57441830259117,259.3087571288664,fqhc6_100Compliance_implementation_low_initial_treat_cost,70 -100000,95774,45157,426.1699417378412,6111,62.54307014429804,4776,49.24092133564433,1927,19.713074529621817,77.38146625236273,79.7050857702997,63.35451413110488,65.06811829307163,77.14388885484578,79.46987762237937,63.26545715858294,64.98285215645772,0.2375773975169437,235.20814792033207,0.0890569725219379,85.26613661391025,156.58962,110.30222385492742,163499.09161150208,115169.27752305158,398.25323,261.9057952742268,415183.7555077578,272820.0297306437,381.07364,185.42100708973751,394117.9547685176,190695.78591888212,3183.86121,1458.7279424239632,3284837.200075177,1483582.9269154088,1199.13216,527.9606697283915,1237166.0889176603,536379.3511061365,1898.19982,801.3489204813693,1943380.4790444167,802311.9693463501,0.38139,100000,0,711771,7431.776891431912,0,0.0,0,0.0,34338,357.8841856871385,0,0.0,34775,359.3146365401884,1582668,0,56724,0,0,0,0,0,84,0.87706475661453,0,0.0,0,0.0,0,0.0,0.06111,0.1602296861480374,0.3153330060546555,0.01927,0.3407003891050583,0.6592996108949416,24.5001183116495,4.434441361172547,0.314070351758794,0.2248743718592964,0.2267587939698492,0.2342964824120603,11.044537481234991,5.58550628233615,20.50471188827904,12257.91187405556,53.98814349009469,12.828195176472416,16.741448469445114,12.174830629284823,12.243669214892332,0.5504606365159129,0.7746741154562383,0.674,0.5992613111726686,0.1224307417336908,0.7014925373134329,0.9172932330827068,0.8169014084507042,0.7545787545787546,0.1260162601626016,0.495575221238938,0.6903703703703704,0.6296943231441048,0.5469135802469136,0.1214203894616265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021059878905696,0.0042158174226762,0.0065631308264269,0.0088349987813794,0.0112967350300466,0.0135696398395667,0.0157982713633398,0.0179083460035306,0.0200143032284429,0.022149923779708,0.0244747005972687,0.0269937517313552,0.0290832108686939,0.0313664532334108,0.0337642789393377,0.0360008674907829,0.0381944803750116,0.040473154397205,0.0424769384193468,0.0444592526264277,0.0589413925530138,0.0723711059719766,0.0859309447893942,0.0991558298203378,0.1111731961371399,0.1265469315224979,0.1386655351649517,0.1503044626128427,0.1614715747644583,0.1715863399989277,0.1846006437929958,0.1965390439108803,0.2082644628099173,0.2186159971996149,0.2283686382393397,0.2384846369488858,0.2480156293608707,0.2566087847038567,0.2649269832617928,0.2721915876600672,0.2799606162400093,0.2867132048068589,0.2930146057167225,0.2990109692501349,0.3041275318647404,0.3095824912505545,0.3137191116671879,0.3178435587894824,0.3221513902925704,0.3264064808950813,0.3251369429751954,0.3236499120105587,0.3233409836527224,0.3221292160009252,0.3214806222301538,0.3194729584801593,0.3179194407983173,0.3179218225026632,0.3169358827843826,0.3172125311498754,0.3168065185295931,0.3182391175891274,0.3194641812254451,0.3198329947085221,0.3210456889315266,0.3216161406063127,0.3222736698576826,0.325985534020102,0.3265999159781543,0.3283090714370711,0.3308499523009131,0.3315536290109425,0.3338328026471873,0.3384150943396226,0.3385382372307403,0.3390791027154664,0.3405994550408719,0.3452428743476515,0.3587578316535004,0.3570064910271096,0.0,2.428242739270774,55.43004118733261,176.33284057651483,264.4290689095656,fqhc6_100Compliance_implementation_low_initial_treat_cost,71 -100000,95747,45111,428.1282964479305,5889,60.08543348616667,4588,47.21818960385182,1844,18.789100441789294,77.31912755708531,79.66861643517343,63.32066847763053,65.05806846108118,77.0855451161598,79.44000836412329,63.23286068880668,64.97542686755615,0.2335824409255025,228.60807105014655,0.0878077888238522,82.64159352502531,158.04052,111.28389985612948,165060.54497791053,116227.03568375978,394.83675,259.90935783311403,411706.59132923227,270785.8395909156,377.9524,184.5826841348004,390372.9411887579,189362.3248527104,3023.95509,1385.525736271806,3115232.519034539,1404025.5321543266,1130.42158,501.492280614182,1163945.6797602014,507079.8778177719,1803.87208,759.7641801861574,1840612.530940917,756505.8570454821,0.38005,100000,0,718366,7502.752044450479,0,0.0,0,0.0,34034,354.74740722946933,0,0.0,34551,356.57514073548,1576776,0,56561,0,0,0,0,0,72,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.05889,0.1549532956189975,0.3131261674308032,0.01844,0.3368319069917649,0.6631680930082351,24.622698089103515,4.392247474055612,0.3201830863121185,0.2301656495204882,0.2244986922406277,0.2251525719267654,11.275341254059082,5.9237738987430655,19.64168450369767,12164.57421115645,51.91556384150978,12.743625900179806,16.51437132111481,11.495454664876275,11.1621119553389,0.5680034873583261,0.8001893939393939,0.6943498978897209,0.5766990291262136,0.1423039690222652,0.7481542247744053,0.917948717948718,0.8578811369509044,0.7427385892116183,0.2139303482587064,0.5028198278420897,0.7312312312312312,0.6358595194085028,0.5259822560202788,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987574557717,0.004418366623091,0.0065439714297309,0.0089784476629628,0.0112782337208001,0.0136465939527257,0.0157430537853683,0.0177470081280888,0.0200404899695302,0.0220104216787297,0.0240641437081543,0.0261939233383647,0.028323425962112,0.0303077129111681,0.032098969242357,0.0341256717651922,0.0360366888898091,0.0379967428399531,0.0399758918458325,0.0422356237436073,0.0569752390496471,0.0708636706000502,0.0844670072058653,0.0973026973026973,0.1092392679429872,0.1249920697020322,0.137657103462905,0.149019482661389,0.1606389680836296,0.1704474795771779,0.1834169771899972,0.1956100570389531,0.2068965517241379,0.2171392950491584,0.2265490036421254,0.237097417268418,0.2459841711038924,0.2546219716661603,0.2627420709696461,0.270742658175654,0.2772985677731593,0.2836505818173304,0.2893427474766621,0.2947135929322514,0.3010910948656505,0.305384786312125,0.3109273182957393,0.3152241772522838,0.319417425362488,0.3231409325056135,0.3228928003450227,0.3218348067972128,0.3206218873887219,0.3194520865309432,0.3189444874159576,0.3170540971540726,0.3157844660809996,0.3161493950552341,0.3170810903187216,0.3184444484195839,0.319598272949127,0.320131295355229,0.3204385080645161,0.3216864767885176,0.3241940924203729,0.325926312766013,0.3263109817019211,0.3292030945342474,0.3327709234067981,0.3350631858336965,0.3382393022621968,0.3412445577147711,0.3434228780426283,0.3453907203907204,0.3475517890772128,0.3533905276765777,0.3614952134933901,0.3652525252525253,0.3619361936193619,0.3562999619337647,0.0,2.7746823217554173,52.524765780583046,172.7951810466471,251.08686683314275,fqhc6_100Compliance_implementation_low_initial_treat_cost,72 -100000,95687,45300,429.8285033494623,5913,60.69790044624662,4585,47.39410787254277,1820,18.74862834031791,77.34181859432726,79.7252471966403,63.3271521787835,65.086010670699,77.11970543270988,79.50240812162737,63.24647882968363,65.00686196900142,0.2221131616173863,222.83907501292788,0.0806733490998681,79.14870169757648,160.08828,112.6135405592723,167303.87617962735,117689.27834628774,400.42518,263.9788464173893,417942.8449005612,275347.1556633914,383.38699,186.69927668338053,396961.3845140928,192268.17700247795,3015.43466,1366.056732892334,3121666.600478644,1397992.687746979,1103.98041,485.9682282897199,1141558.3726106996,495718.4977113763,1784.2923,733.5699333478633,1839894.3848171644,745955.9864944782,0.38111,100000,0,727674,7604.721644528515,0,0.0,0,0.0,34566,360.68640463176814,0,0.0,34856,360.6341509295934,1563382,0,56073,0,0,0,0,0,87,0.909214417841504,0,0.0,1,0.0104507404349598,0,0.0,0.05913,0.1551520558368974,0.3077963808557415,0.0182,0.3408614292627843,0.6591385707372157,24.66083247512564,4.334613478838788,0.3236641221374046,0.2344601962922573,0.2165757906215921,0.2252998909487459,11.172524530822724,5.821741959482621,19.279715927879916,12124.339978571908,51.78353030038573,12.796626043414602,16.666793560412195,11.016982199292428,11.3031284972665,0.5511450381679389,0.7767441860465116,0.6617250673854448,0.5871097683786506,0.1229428848015488,0.7320692497938994,0.9285714285714286,0.848404255319149,0.6811594202898551,0.1809523809523809,0.486061684460261,0.6793893129770993,0.5983754512635379,0.5623409669211196,0.1081409477521263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278255410071,0.004368671254954,0.0068484116757809,0.0090999573439499,0.0114186358644812,0.0138368493931742,0.0162778134523845,0.0185274032032502,0.0206461635952943,0.0228684908229176,0.0246800918710524,0.026651192884799,0.0286616668209828,0.0306758580893793,0.0325946721438376,0.0346914078257361,0.0367653154273398,0.0386528099336579,0.0405392753487501,0.0423668737750719,0.0572658233137293,0.0713754724685631,0.0849259574110806,0.0974306096252183,0.1101512562496044,0.1259122157588577,0.1372066375249331,0.1480862568119891,0.1586116274597782,0.1682500536135535,0.1809264363855629,0.1945928409213799,0.2051301567970772,0.2149548033096875,0.2243912632250401,0.2354654059500215,0.2446946198647714,0.253420730130533,0.2616635851132612,0.2695451111467228,0.2763256765661306,0.2823261250730567,0.2884503978340801,0.2939936523145098,0.2990286546867411,0.3039750680577968,0.3081079728816951,0.3127369412004173,0.3169572313032666,0.3209752750877378,0.320332274220475,0.3192417218087521,0.3183041817592423,0.3182067809347631,0.318659931659486,0.318130967158598,0.3162700170896892,0.3169135377196004,0.3172976757689089,0.318084575340512,0.3180884056346448,0.3187365681500029,0.3197207824778465,0.3207715663511341,0.3225318643335493,0.3238346021482949,0.3236944816386997,0.3277461555394824,0.3325002640008448,0.3355872876973867,0.3383077765607886,0.342826780021254,0.3477034901936212,0.3497798694398056,0.3537599252685661,0.3562522265764161,0.3622745337817181,0.3647318738702551,0.3656654725819785,0.3695901953274607,0.0,2.025867425649179,53.1987568882413,167.7197919912958,256.93003815016914,fqhc6_100Compliance_implementation_low_initial_treat_cost,73 -100000,95676,45190,428.3519377900414,5904,60.40177264935825,4645,47.92215393620135,1852,18.98072661900581,77.38307130315455,79.75892552931334,63.34642469116329,65.09719929050397,77.15128376975902,79.53000749290227,63.26000514405607,65.01456838702592,0.2317875333955328,228.91803641107344,0.0864195471072193,82.63090347804791,159.44742,112.1609370359809,166653.05823822066,117229.59590906926,398.64201,262.5452967164066,416003.8045068774,273762.2759208527,382.59348,186.47199630318917,395791.8495756512,191812.69071761303,3059.97345,1403.6195336034828,3159990.1229148377,1429123.669887417,1092.09138,482.52446326177926,1126565.9831096618,489806.00089456455,1819.4479,764.5802333437551,1866794.5984363891,769173.7604457855,0.37889,100000,0,724761,7575.139010828212,0,0.0,0,0.0,34428,359.1809858271667,0,0.0,34904,360.7592290647602,1567349,0,56349,0,0,0,0,0,64,0.6689242861323634,0,0.0,0,0.0,0,0.0,0.05904,0.1558235899601467,0.3136856368563686,0.01852,0.3330112721417069,0.6669887278582931,24.54377459262306,4.386613064004606,0.3171151776103337,0.2357373519913886,0.2219590958019375,0.2251883745963401,11.135708037743932,5.695379552401245,19.635057257122263,12056.548848308905,52.54472590955572,13.090702616469573,16.685464669782643,11.330005073321306,11.438553549982196,0.5623250807319699,0.8045662100456621,0.6978954514596063,0.5683802133850631,0.1118546845124283,0.7178683385579937,0.9400921658986175,0.848404255319149,0.690677966101695,0.1130434782608695,0.5034134758088453,0.7155824508320726,0.6463081130355515,0.5320754716981132,0.1115196078431372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024093214419485,0.0045691244706502,0.006764637275484,0.00901742556562,0.01105180214529,0.0131213290308132,0.0152908316173622,0.0174238789821269,0.0199116853381306,0.022163302076082,0.024288467847769,0.0265754803199737,0.0287251110745433,0.0307362696221828,0.0324760401514448,0.0345711421395868,0.0367546513073385,0.0390667164860713,0.0412957570715474,0.0430423545105886,0.0573935753460433,0.0711070164785694,0.0842041210289982,0.0976109860991356,0.1098868656621996,0.1249682821618878,0.1370796760378238,0.1479622224112992,0.1583058552357781,0.168288292149761,0.1815873289145218,0.1938215004000778,0.2056870183371558,0.2160392619797131,0.2251493185793011,0.2352941176470588,0.2443014931707262,0.2519736471648178,0.259887583035258,0.2674450580929028,0.2733922020206696,0.2794517020180737,0.2867244687655461,0.2921365839612228,0.297520761645368,0.3028927403935114,0.3071662951181023,0.3120519513592665,0.3164396168453253,0.3207686719936604,0.3198195772182577,0.3181143077176962,0.3176066547496727,0.3156488329096372,0.3141563358325291,0.3126225490196078,0.3104753158744735,0.3113933605736884,0.3123718036373581,0.313773096492011,0.3139235307295945,0.3154330708661417,0.317264550595797,0.3173914011533409,0.3193096524358177,0.3214405923931336,0.3222332155477032,0.3248081841432225,0.3297864917666759,0.3329401588424943,0.3355665203023856,0.3403460789985799,0.3421134760626677,0.3442116370214049,0.3458117123795404,0.3487341033718352,0.3482810164424514,0.3481915933528837,0.3572380698480405,0.3665807876334192,0.0,2.4044802052339134,55.585768773330585,168.6205957765011,254.07878721679012,fqhc6_100Compliance_implementation_low_initial_treat_cost,74 -100000,95698,45177,428.1907667871847,6060,62.1329599364668,4790,49.52036615185271,1894,19.446592405274927,77.3960056150407,79.78054326860688,63.35197710932333,65.11311321480349,77.16040354082762,79.54702974534472,63.26423748739783,65.02910745044943,0.2356020742130908,233.51352326216104,0.0877396219255004,84.00576435406037,159.97454,112.48996984452134,167166.02227841754,117546.83467211576,404.97419,266.19481387217286,422657.84028924326,277639.7875317905,388.21087,189.09939962757676,402809.7661393132,195364.9959271668,3161.18977,1455.3123846295678,3270436.3832055004,1487873.126533019,1155.0364,517.0063660138893,1193248.35419758,526536.3706805671,1851.79416,781.6127646064551,1902325.2314572928,786471.0239475308,0.37994,100000,0,727157,7598.455558109887,0,0.0,0,0.0,34978,364.960605237309,0,0.0,35505,368.0745679115551,1566041,0,56135,0,0,0,0,0,60,0.6269723505193422,0,0.0,1,0.0104495391753223,0,0.0,0.0606,0.159498868242354,0.3125412541254125,0.01894,0.336,0.664,24.36448864602273,4.382420433348055,0.318580375782881,0.2286012526096033,0.2346555323590814,0.2181628392484342,11.170928622559282,5.843548043367556,20.25014385668804,12106.481631269924,54.50397170113871,13.167021021411257,17.42422877941339,12.381568254007291,11.53115364630678,0.5640918580375783,0.7899543378995434,0.7031454783748362,0.5604982206405694,0.1282296650717703,0.7244274809160305,0.8997668997668997,0.8629807692307693,0.7166666666666667,0.1422222222222222,0.503735632183908,0.7192192192192193,0.6432432432432432,0.5180995475113123,0.124390243902439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002329892521045,0.0045730161627223,0.006577211181259,0.0087376174752349,0.0108436921449352,0.0131043049729157,0.0152227331586406,0.017794974935936,0.0200167658304197,0.0223341317120104,0.0244104982571252,0.0265308636905006,0.028776238519844,0.0307369028244164,0.0326980818638628,0.0348053505344332,0.0368344727574062,0.0389358300981959,0.040893585156835,0.0429512434077501,0.05757439652381,0.0713448456305599,0.0839653020338378,0.0966375068343357,0.1095100560779187,0.1253251834775068,0.1377934795293718,0.14871238010071,0.1595876508919987,0.1698289269051321,0.1825544701612295,0.1943903599861543,0.2058922613808018,0.2157081338667016,0.2246544918804217,0.2355102944432145,0.2452072668874836,0.2535216014019006,0.2612690177064334,0.2689124619921813,0.2763262714310454,0.2828045848215328,0.2886330085621494,0.2947460344043831,0.2995598986433239,0.3051618375600821,0.3092642031986826,0.3133012922124858,0.317723724111233,0.3222904638531241,0.321361007875706,0.3206108963285898,0.3190081483562798,0.3172911950864343,0.3167506670619626,0.3156664425838782,0.3136393794824808,0.3138799711721156,0.3143509914579461,0.3145503116651825,0.3146441324384453,0.3162995941846263,0.3174202432866651,0.3189379114036648,0.3200095854301462,0.3209732284282413,0.3224390382055566,0.3247555165496489,0.3270563528176409,0.3312832314895643,0.3333941772382952,0.3345383020573069,0.336510541598283,0.3394544346235904,0.3425768722882475,0.3418732125834128,0.3417585784313725,0.3385554425228891,0.3452183526810392,0.3443632166217776,0.0,2.114613709718939,57.467723668099055,178.9660050423659,260.5000397708078,fqhc6_100Compliance_implementation_low_initial_treat_cost,75 -100000,95822,45317,428.5550291164868,5989,61.22811045480161,4629,47.72390474003882,1790,18.263029366951223,77.38566316619061,79.70513068919047,63.36611244363343,65.08348495655468,77.15865065367835,79.48299976097225,63.28114463043528,65.00356685465133,0.2270125125122604,222.13092821822045,0.0849678131981477,79.91810190335968,158.26162,111.39138693479404,165161.8626202751,116248.00873994912,400.69919,263.972682677556,417582.8724092588,274895.22646198684,383.54252,186.65836938273404,397007.5661121663,192287.6154191768,3009.64113,1383.0968338916282,3100391.131472939,1403459.1407785942,1088.25246,489.0125485901772,1118754.6075014088,493544.9843847829,1752.0055,738.2038145998885,1788086.0345223434,734656.7251674199,0.38171,100000,0,719371,7507.357391830686,0,0.0,0,0.0,34518,359.6147022604412,0,0.0,35066,362.672455177308,1577774,0,56552,0,0,0,0,0,70,0.7305211746780489,0,0.0,2,0.0208720335622299,0,0.0,0.05989,0.156899216682822,0.2988812823509768,0.0179,0.3291905672402804,0.6708094327597196,24.78294230596277,4.38343814246556,0.3316050982933679,0.2395765824152084,0.2136530568157269,0.2151652624756967,11.479095284630937,5.981875067698968,19.110957684641583,12194.897819147756,52.58050598328018,13.20712275489586,17.459345845603252,10.975645051848884,10.938392330932206,0.5772305033484554,0.7926059513074842,0.7322475570032573,0.5803842264914054,0.0953815261044176,0.7417061611374408,0.9183168316831684,0.8688524590163934,0.7478260869565218,0.1219512195121951,0.5153137079988106,0.7205673758865249,0.6796028880866426,0.5296442687747036,0.0884955752212389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497716062512,0.0047747939539551,0.0072160030853234,0.0098043199967488,0.0117885186541356,0.0141737093982282,0.016420511879644,0.018491682824778,0.0208493024681894,0.0231789434904521,0.0252000942825812,0.0271790450383873,0.0292705988756307,0.0314983324412237,0.0335137922144882,0.0354298581772732,0.0377372157033173,0.0395646540554547,0.0415468167516432,0.043425776575264,0.057957105900025,0.0717847398626399,0.0846164327565063,0.0974815344043203,0.1096480601700182,0.1246765317870232,0.136344373106181,0.1478879227874742,0.1587503066633956,0.1687891608204359,0.1810399526805398,0.1933131684130928,0.2054784109785358,0.2152346436407698,0.2248289345063538,0.2357916850950906,0.2457889577113319,0.2546277575594195,0.2628884080791146,0.270589714573117,0.2776494502448489,0.2845741888060485,0.2909865571410024,0.2968583822281705,0.302046500363284,0.3071237384279154,0.3124017859369933,0.3165680098361071,0.320536313425902,0.3244903327633828,0.3244441458991066,0.3229611523831756,0.3221470848739614,0.3212224402631882,0.3205693337489054,0.318304254667891,0.316326207442597,0.316267384772007,0.3167701863354037,0.3170182338219521,0.3182823097388241,0.3205039457289215,0.3215787702918664,0.3212099468574119,0.3223696911196911,0.3245281043013849,0.3265574520399119,0.3285552265137672,0.3314068226670426,0.3341030336810255,0.3368905915081862,0.3406523468575974,0.3448297564352697,0.3486782133090246,0.3533572236891739,0.3593434043059355,0.358568796068796,0.363599513579246,0.3813582623040968,0.3811710677382319,0.0,2.157459735048313,55.39503785863077,171.52556257727113,252.52915790754815,fqhc6_100Compliance_implementation_low_initial_treat_cost,76 -100000,95765,45111,427.70323186968096,5953,61.0452670599906,4706,48.55636192763536,1806,18.46185976087297,77.37657405990127,79.7216345316526,63.3458979718325,65.07896989356404,77.15131165007217,79.49947397032948,63.26185068119809,64.99925975115521,0.2252624098290994,222.1605613231219,0.0840472906344089,79.71014240882823,158.8873,111.80418400377005,165913.74719365113,116748.48222604296,401.76877,263.7895418397802,418963.013627108,274881.95252940035,382.50945,186.15026302341076,395765.4257818618,191559.84188444613,3078.34128,1389.1842352742185,3177577.371691119,1413933.5139318109,1111.75532,488.7850455552264,1146312.118206025,495872.37590653816,1767.25278,736.1552981621619,1808960.935623662,736441.3427247038,0.37897,100000,0,722215,7541.533963347779,0,0.0,0,0.0,34603,360.7267790946588,0,0.0,34994,361.7605597034407,1571774,0,56325,0,0,0,0,0,70,0.730955986007414,0,0.0,0,0.0,0,0.0,0.05953,0.1570836741694593,0.3033764488493197,0.01806,0.3325335892514395,0.6674664107485605,24.545648075384424,4.32355926232474,0.3293667658308542,0.2339566510837229,0.2214194645133871,0.2152571185720357,11.042724895374947,5.6883158391926525,18.863736858281158,12077.548010574155,52.54838222360941,13.135612885522091,17.20036223405175,11.34685807199673,10.865549032038848,0.5546111347216319,0.779291553133515,0.6909677419354838,0.5441458733205374,0.1125370187561698,0.7294213528932355,0.9186602870813396,0.8370165745856354,0.7404255319148936,0.160377358490566,0.4929577464788732,0.6939970717423133,0.6464646464646465,0.4869888475836431,0.0998751560549313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024815152435936,0.0046325862401038,0.0067675886280159,0.0090922020399041,0.0116548694166463,0.0136862150079938,0.0159578264726575,0.0179993465920692,0.0203845878612539,0.0224892774155244,0.0243524962333575,0.026288236501745,0.028292091167974,0.0305355303810504,0.0326517558700945,0.0346474272838153,0.036615167957586,0.0387360471388854,0.0406699310731996,0.0425124194169903,0.0572081663326653,0.0708010876385693,0.0837596444146259,0.0960958436235615,0.1090267165516151,0.124560012684319,0.1360595426160158,0.1474431274073759,0.1580819138142788,0.1682483512948367,0.1808958631756938,0.1927446228415631,0.2042339323789217,0.2141598923401787,0.2237744531413411,0.2343519657721766,0.2440010272787163,0.25292892915424,0.2611814106565284,0.2684164118771972,0.2748906730835975,0.2818554941007261,0.2875894282504582,0.2938978829389788,0.2992871801721939,0.3049214659685864,0.3090227443139215,0.3140048765620237,0.3191283105199891,0.3232759756515323,0.3216261953368432,0.3200214162159194,0.3195476575121163,0.3178417494342016,0.3167281399517101,0.3143127701495273,0.3126233831867212,0.3131733193621271,0.3133150367352505,0.3134097298836257,0.3135872208297482,0.3142361453384066,0.3155243410463828,0.3159816538273144,0.3170182166826462,0.3188047746599745,0.3202319038281183,0.3238563421736544,0.329423709824242,0.3337165510406343,0.3348820260544775,0.3379383634431456,0.3402638190954773,0.3453401076818078,0.3490328006728343,0.3478979688238073,0.3505405816963606,0.3537537537537537,0.354109961894393,0.3558235959291368,0.0,2.2785774129244687,53.57544228488842,163.19378537491195,271.35667746126825,fqhc6_100Compliance_implementation_low_initial_treat_cost,77 -100000,95760,45126,427.57936507936506,6043,62.04051796157059,4767,49.30033416875522,1893,19.46532999164578,77.3313489084019,79.6987414336142,63.31030609897547,65.0637672979462,77.0998372982937,79.46759208345586,63.22393680587302,64.980068227577,0.2315116101081997,231.14935015834703,0.0863692931024502,83.69907036920665,159.17,111.8897652350987,166217.6274018379,116843.94865820666,400.20506,263.1616747457089,417457.56056808686,274346.25600011385,380.02022,184.9034415793907,394025.8040935673,190953.14060023276,3104.2241,1407.2132984352922,3212047.2744360906,1439897.3145731958,1133.51623,498.4555492525354,1172279.0726817043,509099.58150849614,1857.76446,774.7952621831063,1911660.67251462,784689.4304989704,0.38036,100000,0,723500,7555.346700083542,0,0.0,0,0.0,34526,360.0459482038429,0,0.0,34665,359.2000835421888,1568904,0,56328,0,0,0,0,0,83,0.8667502088554719,0,0.0,1,0.0104427736006683,0,0.0,0.06043,0.1588758018719108,0.3132550057918252,0.01893,0.3360668664248541,0.6639331335751458,24.541134011489472,4.366866367731707,0.3276693937486889,0.2353681560730018,0.2122928466540801,0.224669603524229,10.930953098094104,5.527271067367973,20.095134086153987,12153.320571613678,53.9580077686605,13.514956050075693,17.545931380071742,11.275744766815215,11.621375571697858,0.5504510174113698,0.7869875222816399,0.6587708066581306,0.5721343873517787,0.1241830065359477,0.7292332268370607,0.8962264150943396,0.8835978835978836,0.7174887892376681,0.171806167400881,0.4867709815078236,0.7206303724928367,0.5869932432432432,0.5310519645120405,0.1113744075829383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0048673149659794,0.0072773407764526,0.0095610648242227,0.0117805041811634,0.0139829515943416,0.01609038349767,0.0182157917845145,0.0202825026337591,0.0223385296105864,0.0243374630784378,0.0264344788616633,0.0284138271706579,0.0304969801908766,0.0325667334172877,0.0349520185307743,0.0368126747437092,0.0388842190467295,0.0408332986818578,0.0426739716895643,0.0576138131178687,0.0719547928003348,0.0855913978494623,0.0983384162372489,0.1104081654171807,0.1252088930256171,0.1369945877109201,0.1477769019365559,0.1586186994998076,0.1690239086577671,0.1813321836602716,0.1924730600530676,0.2038863487916394,0.213682885446883,0.2238577562479357,0.2342944560843393,0.243892089865559,0.2531768095715105,0.2618601854058163,0.2700433059138922,0.2772659938894546,0.2837690695577853,0.2899112359417404,0.2959214302008668,0.3017130204151154,0.3066219283529063,0.3111358769831828,0.3158558168553202,0.3201291460283706,0.3241848184818481,0.3232868960685511,0.3224941195889902,0.3212822570426997,0.3201894338641909,0.319858829112047,0.3175806870824224,0.3158044388278967,0.3168969077233174,0.3174741370480385,0.3186476322871553,0.3190764855560545,0.3191023211747987,0.3208340304500585,0.3202983674654398,0.3205697950947657,0.3209178756544161,0.3227419996589553,0.3259510570791317,0.3297576759399289,0.3352451507547695,0.3375410134888807,0.340799576383373,0.3440185684712377,0.3451327433628318,0.3469387755102041,0.3505800464037123,0.3543776057176891,0.355862874951305,0.3643142476697736,0.3704808050689526,0.0,1.9047722241916527,55.36375450106222,182.23978161701072,258.4729650291921,fqhc6_100Compliance_implementation_low_initial_treat_cost,78 -100000,95497,44859,425.48980596249095,6009,61.813460108694514,4742,49.13243347958575,1902,19.5712954333644,77.22623088476638,79.71300722120215,63.24095407219974,65.07586696665953,76.99075544471502,79.47830406225047,63.15348465101351,64.99144887993708,0.2354754400513599,234.7031589516746,0.0874694211862348,84.41808672245088,157.54024,110.7426986728716,164968.78435971812,115964.5838852232,396.95906,260.82894300668886,415176.6338209577,272627.5307147752,381.63277,185.5678180888823,395970.0618867609,191577.23697403536,3128.75328,1426.893102060642,3242734.159188247,1460815.432884323,1140.52031,508.2730761047868,1180140.014869577,518101.2627700849,1868.35124,784.6488684338108,1923683.843471523,793296.4195079135,0.37889,100000,0,716092,7498.581107259914,0,0.0,0,0.0,34245,358.0740756254123,0,0.0,34828,361.2678932322481,1572831,0,56519,0,0,0,0,0,73,0.7434788527388295,0,0.0,2,0.0209430662743332,0,0.0,0.06009,0.1585948428303729,0.3165252121817274,0.01902,0.3412081813857618,0.6587918186142382,24.518956808607363,4.370939955415127,0.3148460565162378,0.2374525516659637,0.2165752846900042,0.2311261071277942,11.354859970902334,5.972958641858143,20.468338338813417,12123.03195609466,53.88281722262147,13.355813277242069,16.953466078071525,11.46257509548069,12.110962771827168,0.5535638970898356,0.7770870337477798,0.6912257200267917,0.5842259006815969,0.1076642335766423,0.7246262785208497,0.9147869674185464,0.8692307692307693,0.7404255319148936,0.1740890688259109,0.4909248055315471,0.7015130674002751,0.628286491387126,0.5378787878787878,0.0883392226148409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027055783553731,0.004848509438364,0.0070765731922756,0.0095170310116929,0.011585763153608,0.0135657137033073,0.0157348544372901,0.0179429015184027,0.0200826632291858,0.0222641161463509,0.0243063752912556,0.0263317533595862,0.0283790184731346,0.0303852302614615,0.0326193649711209,0.0347469560175598,0.0369298436705774,0.039064449064449,0.0414444074012335,0.0433352477418681,0.0590698307355727,0.0728262808339191,0.0856574962140333,0.098390547761839,0.1104770359097922,0.125802895724249,0.137957430521593,0.1500357405767569,0.1599515914835282,0.1692175408426483,0.1821420474787058,0.1939115251553569,0.2056771605476585,0.2155242333238343,0.2241453486448026,0.2347954580805724,0.2441523575144023,0.2526012016819037,0.2613937512084712,0.2693155212780608,0.2762231680022265,0.2827310461271486,0.288916045750083,0.2948670183998942,0.3002242753711514,0.3044032158317872,0.3096584483148609,0.3140217016218703,0.3185144743854723,0.3227387101046219,0.3219876179404687,0.3203967881680969,0.3203766978228334,0.3195867338079527,0.3183951371403882,0.3163450310368139,0.3148577784840298,0.3160800210928746,0.3151538026042649,0.3158809822548843,0.3167621372898864,0.3170132212729687,0.3173353488274443,0.3178610631958601,0.3193479358515063,0.3198414354266639,0.3193375520209794,0.3222173283835651,0.3235170087152094,0.3254308633150663,0.325952250774558,0.3274355035228055,0.3319982477001064,0.3334087822544138,0.3371243643088303,0.3407053893609591,0.344125246998024,0.3484632607368206,0.355433287482806,0.3571156047310187,0.0,2.083317953049717,56.09465625060007,176.3448961574557,261.5907464513044,fqhc6_100Compliance_implementation_low_initial_treat_cost,79 -100000,95709,44686,423.5756302960014,6083,62.20940559404026,4860,50.19381667345809,1926,19.68466915337116,77.36399481233721,79.74954812729227,63.33329461681414,65.0975383329224,77.11636859642806,79.50457550426879,63.24032422660971,65.00867912391728,0.2476262159091504,244.97262302348588,0.0929703902044352,88.8592090051219,158.9324,111.73931639687966,166057.71662017156,116748.78684019222,400.05318,262.7199942180627,417426.0309897711,273935.6739889276,378.65627,184.4831285881074,392529.8561263831,190282.238766474,3223.88909,1476.503265009129,3329983.314003908,1504255.50889585,1122.09387,502.254399594778,1155803.1219634518,508173.8808207987,1886.94816,805.1142198235956,1930034.375032651,805054.4571322899,0.37744,100000,0,722420,7548.078028189616,0,0.0,0,0.0,34545,360.3318392209719,0,0.0,34750,360.049734089793,1573380,0,56506,0,0,0,0,0,70,0.7209353352349308,0,0.0,0,0.0,0,0.0,0.06083,0.1611646884272997,0.3166200887719875,0.01926,0.3339578454332553,0.6660421545667448,24.23559554173677,4.390221570244018,0.328395061728395,0.2244855967078189,0.2224279835390946,0.2246913580246913,11.170527650330028,5.731912479836477,20.613880640839323,12048.6458203231,54.85300025626198,12.99476168255697,18.020137850928844,11.956342569518563,11.881758153257593,0.5456790123456791,0.7653528872593951,0.6904761904761905,0.5596669750231268,0.1007326007326007,0.7122137404580152,0.8914141414141414,0.8574766355140186,0.7182539682539683,0.1367521367521367,0.484225352112676,0.6935251798561151,0.6292808219178082,0.51145958986731,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022492173331577,0.0045534292697273,0.0070149435555916,0.0092688578571864,0.0114979954822035,0.0136112639321881,0.0157493165775837,0.0177601209199722,0.0196680065048633,0.0214524155727129,0.0236686390532544,0.0258195711116588,0.0279163537991544,0.0302006161708792,0.0321278923359547,0.0342342528640555,0.0363594928316897,0.0385297871678064,0.0406232783442999,0.0425396693095508,0.0567692886085467,0.0706824366757379,0.0845503378236602,0.096933302484067,0.1095767669846624,0.1256978514633733,0.1378001187749215,0.1488254819354015,0.1600687549377575,0.1701931528286921,0.1827838946110878,0.194097346185886,0.2054441447711849,0.2163542509678689,0.2255654814293258,0.2360086815936925,0.245024320585479,0.2528681333513294,0.2602226686187055,0.2674874026568942,0.2748863412884791,0.2813384482234333,0.2877133994743447,0.2927136280809437,0.297025733239375,0.3020683198442909,0.307340080819707,0.311022120518688,0.3156220089505135,0.3201127918621198,0.3184513006654567,0.3172259384915457,0.3158604984607599,0.3152042229145033,0.3137708222182702,0.3125629521106126,0.3111675286993818,0.3107322490038539,0.3108919309582518,0.3119393421614694,0.3116528632055189,0.3129043711535427,0.3146685059777611,0.3153739488280551,0.3165666266506602,0.3171629132851439,0.3180649951453538,0.321114185110664,0.3248602468094083,0.3288460011119053,0.3321964529331514,0.3382041507835663,0.3425341081354219,0.3470840348997397,0.3485394537177542,0.3527303142549886,0.3527769159168477,0.3562320032908268,0.3621123218776194,0.3599686643164904,0.0,2.230385159104081,57.32391062210928,176.1805794949866,269.5054155092259,fqhc6_100Compliance_implementation_low_initial_treat_cost,80 -100000,95665,45233,429.1538180107667,5993,61.35995400616735,4690,48.39805571525636,1926,19.672816599592327,77.31725194233033,79.72305769302636,63.30264576078415,65.08387550399085,77.07365725784145,79.4831426953847,63.210942503089385,64.99603750243409,0.2435946844888832,239.91499764166235,0.0917032576947676,87.83800155676147,157.8379,111.06428143555054,164990.2263105629,116097.09030005806,399.14505,262.9076252718253,416629.7496472064,274224.16033646546,381.60939,186.6985025981967,394940.88747190713,192123.4527069269,3106.19238,1433.5032236333377,3207816.285998014,1459702.0799006966,1132.70502,503.5997008558312,1166322.061359954,509270.5509561105,1885.1426,797.7043426616502,1928582.17738985,801174.4421314485,0.3816,100000,0,717445,7499.555741389222,0,0.0,0,0.0,34551,360.5289290754194,0,0.0,34858,360.3825850624575,1573778,0,56456,0,0,0,0,0,61,0.6376417707625568,0,0.0,1,0.0104531437829927,0,0.0,0.05993,0.1570492662473794,0.3213749374269982,0.01926,0.3289137380191693,0.6710862619808307,24.479997801548212,4.275730504621584,0.3168443496801705,0.2375266524520256,0.2153518123667377,0.2302771855010661,11.215621666864514,5.988193282671226,20.549181528713373,12176.832673727327,53.29950606159323,13.330303083473416,16.805062068575154,11.327602205805237,11.836538703739423,0.550319829424307,0.7675044883303411,0.6884253028263796,0.5762376237623762,0.112037037037037,0.7193251533742331,0.900709219858156,0.8391089108910891,0.7294117647058823,0.1441441441441441,0.4852333136444182,0.6859623733719248,0.6321626617375231,0.5245033112582781,0.1037296037296037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0047051665568118,0.0070024457817875,0.0091963133453241,0.0113852571602991,0.0136090455332586,0.0158121314753228,0.0183679306963059,0.0207894252215015,0.0227032897230731,0.024643480045142,0.0270248052775437,0.0289355306906029,0.0309194383157721,0.0328217627496746,0.0350735613632131,0.0369026640406343,0.0388489656891252,0.0408984976486745,0.0428641419353493,0.0581100141043723,0.0724652857771168,0.0855553222758765,0.0984481035299068,0.1105930012976189,0.126125840080436,0.1380836632664975,0.1502625440679952,0.161076551444024,0.1712014248009784,0.1835604632372744,0.1951692181105601,0.2064566689161242,0.2163227324976736,0.2256739041827775,0.235999645280007,0.2455691964285714,0.254680046800468,0.2635609662011141,0.2711082096389958,0.2775893797525491,0.2838958759871307,0.289957014458773,0.2965782658737771,0.3014124911871247,0.3062594063803015,0.3105236133201418,0.3157426019694155,0.319810490343292,0.323357635364069,0.3229308187944741,0.3210996563573883,0.3197400441699841,0.3186016973615842,0.3175268769237632,0.3156691923065124,0.3140884546563,0.3151404692708077,0.3152424351031693,0.3164764621968616,0.3174436681713461,0.3183030686241577,0.3192386788097536,0.3210216461844962,0.3211398788697729,0.3234202686457952,0.3250734266731301,0.3271556463012408,0.3301512652230372,0.3325133902003571,0.3340022805017104,0.3357792311373425,0.3408159404754398,0.3427634588988867,0.3470212366096598,0.3494160670048366,0.3505518087063151,0.350162206001622,0.3556395035078251,0.3577082548058801,0.0,2.380458007681534,56.863293208466274,173.39830257832116,252.55004132653065,fqhc6_100Compliance_implementation_low_initial_treat_cost,81 -100000,95870,45550,430.6873891728382,5968,61.14530092834046,4680,48.35715030770835,1823,18.764994263064565,77.4717338221379,79.75854330904697,63.40399372213196,65.09078089509677,77.2422851935469,79.5267734233872,63.3182340352249,65.00603251419801,0.2294486285910011,231.76988565977297,0.0857596869070533,84.74838089875902,159.36426,112.0889521181002,166229.54000208617,116917.65110889764,400.97285,264.52103894439483,417817.49243767606,275487.4506565086,388.08977,189.14294239398063,401361.5208094294,194716.72791957247,3060.85257,1402.5838732720413,3165289.9238552204,1435584.388517828,1094.01329,487.8536956840999,1132223.625743194,499951.1793930322,1787.80942,757.4211167130445,1841398.8108897463,769432.5862647941,0.38245,100000,0,724383,7555.8881819130065,0,0.0,0,0.0,34633,360.7906540106394,0,0.0,35437,366.2668196516115,1569532,0,56304,0,0,0,0,0,67,0.6988630437050172,0,0.0,1,0.0104307916970898,0,0.0,0.05968,0.1560465420316381,0.3054624664879357,0.01823,0.3353658536585366,0.6646341463414634,24.647239773355157,4.265575078997543,0.3307692307692307,0.2282051282051282,0.2213675213675213,0.2196581196581196,10.808745484746938,5.594684280091769,19.42553907330631,12154.910784993272,52.8576798389262,12.749077211656138,17.363389734813133,11.58539764783529,11.159815244621656,0.5638888888888889,0.7865168539325843,0.7060723514211886,0.5752895752895753,0.1070038910505836,0.7370517928286853,0.9262899262899262,0.8596059113300493,0.7232142857142857,0.1697247706422018,0.5004379562043796,0.7004538577912254,0.6514886164623468,0.5344827586206896,0.0901234567901234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025407429901811,0.0049234634437904,0.0070676752722626,0.0093077547706049,0.0116860417852207,0.0139591197208176,0.0163495232662374,0.0183702404145289,0.0208014214815268,0.0228565000409064,0.0249595444396648,0.027168116179849,0.0292676412274123,0.0313615738406609,0.0335013555163847,0.0354605534902932,0.0376312386863201,0.0394548657892009,0.041439533169278,0.0435311992673687,0.058518070530333,0.0722253002853887,0.0856502101170577,0.0987874839767163,0.1114565767284991,0.1268804245557282,0.1392005089598133,0.1505893366239734,0.1605692141812475,0.1708231965447394,0.1836444827029644,0.1958370708195091,0.2067276892841243,0.2168022271958076,0.2270620538165842,0.2364074557233511,0.2454410765408994,0.2536969873903816,0.2618047139572549,0.2687272020399529,0.2757684934986951,0.2827142057121523,0.2892940648543964,0.2941556344849855,0.2987723512143048,0.3035542865582002,0.3090011868324068,0.3132650987961599,0.3177195725490703,0.321849370071484,0.3207557311403155,0.3201705675071641,0.3189246104169591,0.3173862982153138,0.3167818609676321,0.3141350082322093,0.3125059079308063,0.3136595244316697,0.3149239785950904,0.3167745941630444,0.3171903812841097,0.3186183060699487,0.3198867067913447,0.320593725002222,0.3201681073594727,0.3219197596415343,0.3234662143059089,0.3260320922262034,0.3290210999654099,0.3326159264331833,0.3363518178150356,0.339645468413024,0.3429858027393833,0.3417375455650061,0.3453826602654617,0.3454091934909134,0.3465736810187992,0.3525538707102953,0.3561606902129954,0.3538461538461538,0.0,1.8229624831960969,55.10159460031666,177.43720518634146,251.07017438161407,fqhc6_100Compliance_implementation_low_initial_treat_cost,82 -100000,95722,45631,432.763628006101,5930,60.48766218842064,4666,47.97225298259544,1832,18.699985374313115,77.34438518034166,79.69705013609436,63.33412346583962,65.07197792458378,77.10968431771136,79.46593241796347,63.24606439308821,64.98825985552199,0.2347008626303051,231.1177181308892,0.0880590727514132,83.71806906178847,159.12226,111.95541674482271,166233.04987359227,116958.25029441784,402.70523,265.2349824338151,419838.877165124,276235.4524456476,387.3702,188.6999375544925,399078.4145755417,192947.14505231657,3069.71096,1404.7944844058195,3159757.819519024,1421277.5697718316,1108.51588,486.7492517077542,1138731.8693717222,489846.4998883418,1795.01414,761.1809227866785,1833848.268945488,760229.1608797471,0.38374,100000,0,723283,7556.047721526922,0,0.0,0,0.0,34745,362.1529011094629,0,0.0,35282,363.0513361609662,1565922,0,56251,0,0,0,0,0,78,0.8044127786715698,0,0.0,0,0.0,0,0.0,0.0593,0.154531714181477,0.30893760539629,0.01832,0.3408287825248956,0.6591712174751044,24.43922967534102,4.41762017305749,0.3236176596656665,0.227818259751393,0.2258894127732533,0.2226746678096871,11.440293662826903,5.903114182859279,19.54801168305201,12166.343312630805,52.730150037117234,12.775494578419991,16.947021278904955,11.67687731884454,11.330756860947757,0.5696528075439349,0.8184383819379115,0.695364238410596,0.5929791271347249,0.1087584215591915,0.7281475541299118,0.9183673469387756,0.8801020408163265,0.773109243697479,0.0844444444444444,0.5118455688797894,0.7600596125186289,0.6305903398926654,0.5404411764705882,0.1154791154791154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026741217940926,0.0049679113481289,0.0073458537525746,0.0095264210921869,0.0116924578563149,0.0139260737226797,0.0160004891869305,0.0182560334710954,0.0201387540742405,0.0224498357703445,0.0246846532979475,0.0269424201991173,0.0289436344568056,0.0307009413170199,0.0327332748749161,0.0347436082921687,0.0366843325604504,0.038869184659739,0.0407711494491789,0.0429873444091453,0.0576383016484491,0.0723128603869941,0.0853594579286328,0.0981827359919232,0.1102358883511014,0.1259701808184413,0.1377843771543724,0.1495308211162414,0.1603549916698705,0.170309702732545,0.1830913142229733,0.1943624190111518,0.2058078474434381,0.2156286207725772,0.2251891606545838,0.2355240140829476,0.2448298568096338,0.2533913747722211,0.2612741426658496,0.2688647373423882,0.276162925248785,0.2825313611683205,0.2887970832642818,0.2950837372234752,0.3005286504223127,0.3054150109830441,0.3102946890785796,0.3151535235861682,0.320430888090948,0.3250386337520307,0.3246431457042822,0.3240294934932731,0.3225538387864617,0.3209264691008395,0.3198644692455157,0.3186702021672823,0.3155792276964048,0.3156572704437622,0.3160719168717528,0.3175025442339624,0.317547703312548,0.3179861796643632,0.3188357240079573,0.320655092178271,0.3211912557781202,0.3227437387610435,0.3243712796559482,0.3269987100022024,0.3316258508174864,0.3345385196074536,0.3379884456170677,0.338540006375518,0.3391643594261263,0.3394758704025375,0.3436856875584658,0.3491577335375191,0.3461714809720311,0.3538587848932676,0.3578743426515361,0.352963967454475,0.0,2.884191750338492,53.70685462197685,167.44681292745742,264.47474448528885,fqhc6_100Compliance_implementation_low_initial_treat_cost,83 -100000,95675,45325,428.7431408413901,5937,60.94591063496211,4621,47.77632610399791,1840,18.886856545597077,77.28108161739658,79.67043763645002,63.29287913429015,65.0567829897576,77.0553026368111,79.44426453949467,63.209892899642725,64.97556255893865,0.2257789805854742,226.1730969553497,0.0829862346474286,81.22043081894503,158.34258,111.39471027354728,165500.24562320355,116430.09174136116,398.88674,262.76505367845965,416392.4745231252,274117.3908319412,380.80206,185.4260285754926,394892.59472171415,191370.57018546737,3040.0961,1377.852751002694,3142861.154951659,1405879.5209089278,1123.2157,487.0738353647377,1161663.809772668,496879.5022824188,1805.92042,748.6301375428287,1855849.8876404492,756093.3052480355,0.38273,100000,0,719739,7522.738437418344,0,0.0,0,0.0,34339,358.359027959237,0,0.0,34676,359.31016461980664,1570205,0,56405,0,0,0,0,0,96,1.0033969166448915,0,0.0,0,0.0,0,0.0,0.05937,0.1551224100540851,0.3099208354387738,0.0184,0.3305044035228182,0.6694955964771817,24.71429949569069,4.3436454508960285,0.31681454230686,0.2322008223328284,0.2283055615667604,0.2226790737935511,11.166130474442156,5.715643816334556,19.41201868660701,12232.132939019575,52.27376451573062,12.782860304085643,16.567596929480175,11.735377412738892,11.187929869425917,0.5671932482146721,0.7912395153774464,0.7008196721311475,0.5857819905213271,0.1243926141885325,0.7346600331674958,0.9248704663212436,0.8812664907651715,0.7400881057268722,0.1261682242990654,0.5080527086383602,0.7161572052401747,0.6377880184331797,0.5434782608695652,0.1239263803680981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730638707389,0.0048256774703717,0.0071445243918528,0.0092958519165709,0.0113906799829139,0.0136552482587267,0.0157024287782694,0.0179993465920692,0.020454893943266,0.0227637949211353,0.0250689524356358,0.0271777075033882,0.0293911970382558,0.0318475931421035,0.0338934070924328,0.035846852156291,0.0379121391354789,0.0400622729631551,0.0419405841724224,0.0439735679146168,0.0588290603648216,0.072382129058603,0.0857727630543164,0.0983944616291059,0.1108614232209737,0.1268672506453387,0.1387429275076165,0.1506992299417397,0.1607291778039132,0.1708291279232074,0.1829114401889621,0.1946358907672301,0.2064992485788339,0.217541746509718,0.2266807694850267,0.2372381364296725,0.2464015913459389,0.2564171875879935,0.264476987923062,0.2722509487394091,0.2791169077872887,0.2859050497241452,0.2926421602911367,0.2974634158053325,0.3030977487503192,0.3078859060402684,0.3125086125900407,0.3167142347484837,0.3210696269014796,0.3245987466617309,0.3234079870480302,0.3224556759588606,0.3212271950030383,0.3200533132442847,0.3184378352604601,0.3168354818907305,0.3154048570160421,0.3159288687097994,0.3166706611428767,0.3178844641452777,0.3184541135377739,0.3203922035647652,0.3217157048448878,0.3222082472374449,0.3236252988480765,0.3240864091110937,0.3242037852364343,0.3281161249605553,0.3308999017268005,0.3363077533214356,0.3392938392938392,0.341286252054504,0.3421897626392999,0.3442437070073323,0.3448758633563561,0.3448476389858106,0.3436692506459948,0.3446,0.3478964401294498,0.3544546850998464,0.0,1.973385587360836,53.113190621523565,171.82189364551363,258.79083212191,fqhc6_100Compliance_implementation_low_initial_treat_cost,84 -100000,95735,45008,426.4375620201598,5912,60.70924949078184,4698,48.59246879406695,1797,18.44675406068836,77.3612597271838,79.7269055841375,63.34108899169471,65.08916380555316,77.14381488684737,79.50985118809706,63.2606464931068,65.01108225797297,0.2174448403364408,217.05439604043875,0.0804424985879137,78.08154758018304,158.12544,111.26342300195692,165169.478247245,116219.78922640304,400.93772,263.5641827773078,418297.24761059176,274804.9963072416,381.63742,185.26950285886517,395878.53971901606,191353.44726405328,3057.11552,1395.562322950817,3163993.1999791088,1428507.0383404046,1138.94154,496.967266537425,1176441.113490364,506011.1191058468,1756.69816,733.6731209056624,1805161.2054107687,740841.6730412246,0.37981,100000,0,718752,7507.703556692954,0,0.0,0,0.0,34569,360.5682352326736,0,0.0,34907,361.79035880294566,1576338,0,56566,0,0,0,0,0,69,0.7207395414425236,0,0.0,0,0.0,0,0.0,0.05912,0.1556567757562992,0.303958051420839,0.01797,0.3482186039013381,0.6517813960986619,24.13183131329028,4.2982106400332105,0.3171562366964666,0.24223073648361,0.2254150702426564,0.2151979565772669,11.323465976860865,5.941454593283325,19.152956032416085,12039.652413328526,53.383472539545934,13.697043899118889,16.855061835321344,11.798775265450711,11.032591539654996,0.5766283524904214,0.7952548330404218,0.697986577181208,0.5996222851746931,0.1275964391691394,0.7405362776025236,0.9216152019002376,0.8831168831168831,0.7439024390243902,0.1296296296296296,0.5160349854227405,0.7210599721059973,0.6334841628959276,0.5559655596555966,0.1270440251572327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.0043292237813285,0.0066266160621866,0.0091434609015452,0.0110851215295433,0.0135129630761084,0.0156221320335284,0.0178485730331342,0.0198452053534,0.0217242191259124,0.0236127629906082,0.0261595661640852,0.0281806026946415,0.0304104170100543,0.0324441463288788,0.0344888190474221,0.0367420908196551,0.038686646465485,0.0410015909823536,0.0427919479869967,0.0569158322282898,0.0706301025748377,0.0836943410080243,0.0967236557104704,0.1087982968318543,0.1246234342793721,0.1364359333248505,0.1478411678335071,0.1578767489052654,0.1676420777327588,0.1801289711375943,0.1922170066408531,0.2029434462668884,0.2128782662863512,0.2222625250060454,0.2327174153573799,0.2416675955857763,0.2506038715186104,0.2587865942809216,0.2665751230117862,0.2738989712172003,0.2808097563254912,0.2874182832689056,0.2932553074363945,0.2987223932701399,0.3041997590302195,0.308633650508229,0.313291581447935,0.3173933851586449,0.3217323644612077,0.3202017484868864,0.3190913710463791,0.317637793060771,0.3160949410949411,0.3156753545704314,0.3140369401215014,0.3121977431488447,0.3122624197142483,0.3126554673390807,0.3131692888833455,0.3136723206104015,0.3152412389065681,0.3170578505475178,0.3174199308112934,0.3187298842292357,0.3212543372205265,0.3226110286562393,0.3262746580954181,0.3301028828259419,0.3341272676749632,0.3391276721281713,0.3429671430831707,0.3465098824118088,0.3493456388531659,0.350527003078071,0.3484045684681502,0.3527714502657555,0.3459983831851253,0.3401341531581889,0.3401197604790419,0.0,1.8628321643194523,55.94206570896831,179.3980029750022,251.88273321232387,fqhc6_100Compliance_implementation_low_initial_treat_cost,85 -100000,95645,45343,428.9403523446077,5944,60.91275027445241,4670,48.17815881645669,1797,18.42229076271629,77.2430810454354,79.64882426450447,63.27207635196621,65.05072672741423,77.00989961613222,79.41640443514403,63.18545033776228,64.9667153103176,0.2331814293031868,232.41982936043823,0.0866260142039294,84.01141709663307,158.3252,111.47344421565636,165534.21506612995,116549.16013974212,400.49121,263.4428886199989,418075.111087877,274786.57391395146,386.97291,188.06736920567937,400523.3415233415,193480.24610877695,3052.98902,1405.974497812048,3152640.4516702387,1430632.4824215046,1107.13857,494.55390189686665,1142100.2979768936,501624.5156111143,1758.00958,744.6780348479514,1803924.0106644365,749032.5886692832,0.38038,100000,0,719660,7524.2825030059075,0,0.0,0,0.0,34552,360.5729520623138,0,0.0,35340,365.3719483506717,1567630,0,56250,0,0,0,0,0,70,0.7318730722986042,0,0.0,0,0.0,0,0.0,0.05944,0.1562647878437352,0.302321668909825,0.01797,0.3420289855072463,0.6579710144927536,24.49871994945713,4.354697830223703,0.3134903640256959,0.2419700214132762,0.2286937901498929,0.2158458244111349,11.235893614507674,5.817564863337167,19.276782171729977,12202.77739571794,53.295592550009225,13.610549693069023,16.633723811997402,11.954747345047055,11.096571699895758,0.576017130620985,0.8141592920353983,0.7110655737704918,0.5777153558052435,0.1111111111111111,0.7235202492211839,0.924574209245742,0.8641975308641975,0.6586345381526104,0.1598173515981735,0.5200826934435913,0.7510431154381085,0.6525023607176582,0.5531135531135531,0.0975918884664131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024018971947462,0.0046355466293388,0.0068424311949889,0.0091648970219165,0.0114633873445017,0.0139823819950099,0.0161305123629875,0.0185529325273648,0.0207992473821989,0.0229074077866754,0.0249202654059542,0.0269881695695037,0.0294740739217178,0.0317815162410244,0.0339275208240867,0.0359524769674597,0.0380280522924565,0.0401154161520337,0.0421568321527756,0.0442333955360028,0.0588413550962402,0.0726825180685031,0.0858687664041994,0.0988063660477453,0.1108905873907351,0.1261274613593055,0.1379918415908897,0.1501428510511278,0.161222677522548,0.1714043320911951,0.1835983859482554,0.1955468351960455,0.2062625932581822,0.2158033074143029,0.2249385519194947,0.2353554744282559,0.2450435541043733,0.2540240768294332,0.2623232231367378,0.2701212030868373,0.2773270906730947,0.2837619449128724,0.2901139513396982,0.2953738362606776,0.3008090516454772,0.3065575389477322,0.3111757478498533,0.3162841111961234,0.3212162127073975,0.3250128973371959,0.3239708202424455,0.3231782059581032,0.322448173184121,0.3205883630362081,0.319886185886454,0.3177841223061337,0.3155530155101522,0.3160477562783038,0.3160138327740875,0.3164436802607777,0.3168849744052996,0.3173915635120904,0.318600445771479,0.3197216298125491,0.3214121962402567,0.3234044784729141,0.3223349524329607,0.3250379458639008,0.3290235975695916,0.3336675355925406,0.3381844977663151,0.3422333993258066,0.3449673782225882,0.3506204994637659,0.3545532400799315,0.3572790088158208,0.3558530510585305,0.3596797372202833,0.3671377112773621,0.357390968737939,0.0,2.4785304116883897,56.0169215301551,175.0112344504136,253.52846966930548,fqhc6_100Compliance_implementation_low_initial_treat_cost,86 -100000,95823,45565,430.5125074355844,6079,62.30236999467769,4748,49.04876699748495,1882,19.30642956283982,77.44904619750217,79.77514632022417,63.38601454967061,65.10670358766436,77.20996825318016,79.53746122115562,63.29598475419647,65.01978036143123,0.2390779443220054,237.68509906854263,0.0900297954741446,86.9232262331252,158.39978,111.45625942743216,165304.55109942288,116314.72551207138,399.31917,262.7596633573572,416220.52116923913,273708.2781350585,384.76802,187.2998801461032,398355.8853302443,193018.8242784528,3105.48676,1427.413770922195,3209968.07655782,1458746.564939727,1123.50265,500.7772718257421,1158746.8770545693,508876.4094484017,1835.3326,781.7290785888927,1884151.0493305365,788309.2552375302,0.38272,100000,0,719999,7513.8432317919505,0,0.0,0,0.0,34502,359.51702618369285,0,0.0,35091,363.0861066758503,1578315,0,56575,0,0,0,0,0,70,0.7305135510263716,0,0.0,0,0.0,0,0.0,0.06079,0.1588367474916387,0.3095903931567692,0.01882,0.3372166246851385,0.6627833753148614,24.48734732596709,4.352864213835689,0.321609098567818,0.2320977253580455,0.2291491154170176,0.2171440606571187,11.112040316557442,5.754360180767106,20.1816808702482,12238.774544926044,53.85166981802468,13.263655404281854,17.237073823032397,12.039733431800126,11.311207158910298,0.5625526537489469,0.7876588021778584,0.696136214800262,0.5919117647058824,0.093113482056256,0.700675168792198,0.908256880733945,0.8238213399503722,0.7142857142857143,0.0893617021276595,0.5086383601756954,0.7087087087087087,0.650355871886121,0.5536791314837153,0.0942211055276382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002460933939621,0.0049364945820198,0.0071839517822897,0.0096606088926361,0.012162258356468,0.0141223666928003,0.0164758418890123,0.0185345839414568,0.0207664793050587,0.02292005607228,0.0250860796851942,0.0272786050759962,0.029585008069573,0.0316290179766488,0.0339628090223702,0.0358087445243408,0.0377366301996543,0.0398705890892499,0.0418926500841593,0.0439956275050752,0.0585946464709686,0.0734366995305655,0.0874696067745451,0.0996049424224594,0.1121227448996796,0.128400515758101,0.1397254465468808,0.1508561097522067,0.1621572602155126,0.1718480600563295,0.1848283130262719,0.1970246969598755,0.2080863353093175,0.2176883369165457,0.227737338471504,0.2375056654248792,0.2473518306062665,0.2555510653106126,0.2641178335295716,0.2716791407187339,0.2787610108636673,0.2849791117231078,0.2914940575245783,0.2972934200459066,0.3020217201590225,0.3066179815340734,0.3108939558450959,0.3156939862978939,0.3202520693707305,0.3244605263157895,0.3234176790388616,0.3214403337358656,0.3200668473605123,0.3196495727727266,0.318621792025575,0.3174465230450228,0.3155185441722813,0.3160231817810791,0.3163766024280499,0.3173839737332505,0.316964535306286,0.3166322821495235,0.3177591526978567,0.3177139037433155,0.3190557138410707,0.3209013209013209,0.3222093056225013,0.3262453485099597,0.3311501821238442,0.3353721095414727,0.3411236159012525,0.3434552199258082,0.3441880932922612,0.3470592687911589,0.3478056573630297,0.3514214934528725,0.3503281941688292,0.3553886746498884,0.3593964334705075,0.3688212927756654,0.0,1.9498793460360595,58.75281701536436,173.33090373839264,254.16872546812405,fqhc6_100Compliance_implementation_low_initial_treat_cost,87 -100000,95801,45266,428.0017953883571,6103,62.316677278942805,4859,50.06210791119091,1925,19.665765493053307,77.3497797498425,79.68339926393216,63.33168066437421,65.05995644534408,77.1060252570762,79.44327148411205,63.239138016883096,64.97181034191439,0.2437544927662998,240.1277798201136,0.0925426474911148,88.14610342969331,158.65432,111.6082000736231,165608.20868258158,116500.03661091544,399.15652,262.25237539406044,415973.2570641225,273068.62333307456,388.4709,189.58435666143572,401474.71320758655,194741.64256898436,3177.79632,1466.6613312372388,3276006.356927381,1489877.1145197796,1155.72739,515.309945739032,1189194.7578835292,520821.82000655937,1880.95708,801.8304305196534,1923250.2792246428,801438.1633815564,0.3826,100000,0,721156,7527.645849208255,0,0.0,0,0.0,34445,358.83759042181185,0,0.0,35483,366.37404619993526,1571914,0,56414,0,0,0,0,0,65,0.6784897861191428,0,0.0,1,0.0104383044018329,0,0.0,0.06103,0.1595138525875588,0.315418646567262,0.01925,0.3352601156069364,0.6647398843930635,24.14713910150644,4.352577560519514,0.3261988063387528,0.2319407285449681,0.2245317966659806,0.2173286684502984,11.188263096575117,5.768062074292721,20.669817795427456,12214.535532788575,55.20283408488407,13.471371671893646,17.939441871431843,12.17525123900366,11.61676930255492,0.5735748096316114,0.8039041703637977,0.705993690851735,0.5774518790100825,0.125,0.7265917602996255,0.9095354523227384,0.8888888888888888,0.6893939393939394,0.1391304347826087,0.5156072644721907,0.7437325905292479,0.6374674761491761,0.5417170495767836,0.1210653753026634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0044004177355085,0.0069519150749994,0.0093062004084162,0.0115756281151459,0.0138485820477572,0.0161704730831973,0.0182619968763716,0.0205443748275192,0.0227330883632381,0.0248895449559717,0.0269215762777994,0.028914275138042,0.0309230579125133,0.0329265650949527,0.0350806493278361,0.0372965922736118,0.0393954795813582,0.0413744376214374,0.0436466619466078,0.0581950965049556,0.0714293183315382,0.0847212468686784,0.097313884568498,0.1096143102594103,0.1245796586511008,0.1361056595767251,0.1472425942286608,0.158163483314105,0.1685224517817682,0.1818269987176309,0.1940986729591063,0.2061968950248593,0.2164715143166387,0.2266305782941642,0.2371331678340278,0.2464306843932442,0.2547587975879758,0.2637774271541596,0.2714225169810888,0.2780330297313875,0.2849722748648838,0.2916272133320708,0.2975608587310715,0.3026902289427339,0.3083139312859553,0.3132471364977742,0.3174619328083856,0.3215242631735636,0.3265368068202813,0.3248901942820188,0.3240882348888797,0.3227944494584837,0.3214151134815501,0.3198356458047996,0.3182731385629936,0.3170240755709825,0.3179465268762427,0.3188527253758402,0.3198433420365535,0.3204457200742867,0.3212589073634204,0.322528600762687,0.3230253602949391,0.3224581971939266,0.3244883079006301,0.3264546203916887,0.3298132364001003,0.3322160539087322,0.3357632595161163,0.3396936185641769,0.3455707569594844,0.3474842767295597,0.3504390988927071,0.3507322568531731,0.3522821087392381,0.3562919975565058,0.3621382636655949,0.3599348534201954,0.3607060629316961,0.0,2.499422312113286,58.196862514971606,180.23644735803447,263.60630299914084,fqhc6_100Compliance_implementation_low_initial_treat_cost,88 -100000,95789,45724,432.7114804413868,5949,60.727223376379335,4718,48.56507532180104,1858,18.9478958961885,77.41775944651599,79.74451583204488,63.37436231324406,65.09456042956236,77.18621643443275,79.51881965952683,63.28844087524189,65.01403315272218,0.231543012083236,225.696172518056,0.085921438002174,80.52727684018635,159.09916,111.90548524260004,166093.35101107645,116824.98537681784,402.20009,264.8404763923363,419201.881218094,275803.7732853838,387.70089,189.23002936801527,400253.78696927626,194027.0673210658,3114.8114,1426.4725520229294,3208858.334464291,1446298.073915512,1127.24416,501.8118556944386,1162160.582112769,509233.51918742,1827.01656,761.62907050024,1865459.7709549116,759600.7501857084,0.38407,100000,0,723178,7549.697773230747,0,0.0,0,0.0,34760,362.1814613368967,0,0.0,35328,364.363340258276,1570663,0,56355,0,0,0,0,0,76,0.7829709048011776,0,0.0,1,0.0104396120640157,0,0.0,0.05949,0.1548936391803577,0.3123213985543789,0.01858,0.3441778064100499,0.6558221935899501,24.29553145002256,4.343296594459353,0.3126324713861806,0.2356930902924968,0.2202204323866045,0.2314540059347181,11.242257287856628,5.851500397404977,19.717564542227144,12222.185627445331,53.48601583751592,13.284468291154525,16.851830397504205,11.472397959684196,11.877319189173,0.5606189063162357,0.7967625899280576,0.696271186440678,0.5957651588065448,0.1034798534798534,0.7393658159319412,0.9146341463414634,0.8665105386416861,0.7385892116182573,0.1534883720930232,0.4931386861313868,0.7279202279202279,0.6269083969465649,0.5526315789473685,0.0912200684150513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002450409582924,0.0049567676603853,0.0071536564824304,0.0092929251894131,0.0116428048482876,0.0140783419520338,0.0161655284884313,0.0184228790724259,0.0205135019113228,0.0224858248214029,0.0244062445544655,0.0265975465790689,0.0286389802631578,0.030926985957254,0.0328734352121099,0.0348916479021629,0.0370404868355688,0.039190071848465,0.0413381123058542,0.0436656671664167,0.0582754231098311,0.071949064829432,0.0859574824940249,0.0984915332576999,0.1109695086629101,0.1264526898533575,0.1384533898305084,0.1494152668509462,0.1598288500730908,0.1697626087329134,0.1830637529037253,0.1957630231402458,0.2076049425611848,0.2174796082156779,0.2273381453039341,0.2378455513888428,0.2473165022571476,0.256148231330713,0.2645236558043653,0.2714860723596944,0.277990181923188,0.2848855532081286,0.2921772803475715,0.2970770868977399,0.302058192138361,0.3065486812794604,0.3107458249540963,0.3147955295910591,0.3198479991727846,0.324263128101839,0.3244658707884029,0.3234728366903905,0.3235298254497377,0.3210864924124401,0.3204546128965251,0.3182868068833652,0.3165294870377099,0.3172724296005239,0.3189165277163371,0.3196000996193119,0.3199977576799462,0.320394077045602,0.3215030879652812,0.3221157054204942,0.3231625407791211,0.3244184535412605,0.3248465560354626,0.3288805268109125,0.3314449573366904,0.3336887835703002,0.3369599709868988,0.338327950442103,0.3424124513618677,0.3477766835845769,0.347703313253012,0.348286530223703,0.3500464252553389,0.3487760469350597,0.3456722917800762,0.3539412673879443,0.0,2.745684013341329,56.02962580063471,173.673540048409,256.80164189194033,fqhc6_100Compliance_implementation_low_initial_treat_cost,89 -100000,95723,45456,431.3696812678249,5915,60.675072866500216,4661,48.1180071665117,1852,18.992300700980955,77.3893283971574,79.7527314195326,63.35181630130408,65.09474151836415,77.14856022390741,79.5127933707457,63.26205235470152,65.00819731751442,0.2407681732499895,239.93804878689676,0.0897639466025523,86.54420084972969,158.63254,111.70928622513888,165720.40157537896,116700.56958634692,400.27436,263.8067721233384,417589.9940453182,275024.8969665998,385.74937,187.9948130704291,399969.71469761705,193940.58054714743,3076.31382,1411.768250621558,3176249.929484032,1437330.7884432776,1115.23537,496.7858233192867,1148296.3342143476,502241.058660255,1812.5302,772.584191727437,1859587.915130115,775874.6542894244,0.38065,100000,0,721057,7532.745526153589,0,0.0,0,0.0,34512,359.94484084284863,0,0.0,35138,364.0608840090678,1569921,0,56275,0,0,0,0,0,64,0.6685958442589556,0,0.0,0,0.0,0,0.0,0.05915,0.1553920924734007,0.3131022823330515,0.01852,0.3244415876586855,0.6755584123413145,24.39113939093641,4.454083221153002,0.3226775370092254,0.2284917399699635,0.2254880926839734,0.2233426303368376,11.457256901966892,5.975038737413489,19.87723882411409,12119.33654703866,52.78825737126192,12.6737215449704,17.017136478730762,11.579448680277643,11.51795066728312,0.559322033898305,0.7924882629107981,0.6855053191489362,0.5803996194100857,0.1171950048030739,0.7137192704203014,0.9143576826196472,0.8432835820895522,0.7304347826086957,0.1293103448275862,0.5020588235294118,0.7200598802395209,0.6279491833030852,0.53836784409257,0.1137206427688504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025421068089976,0.0051486312546241,0.0073440654068145,0.0095346404963293,0.0119759261518441,0.0142295869551941,0.0164988586336213,0.0188975735189077,0.0208241797541561,0.0229614546347552,0.0248898452710318,0.0269524356711946,0.0288846873137549,0.0307983694980853,0.0326512932634792,0.0348052538572033,0.0368457015073712,0.0388150115138061,0.0404540162980209,0.042533908369273,0.0568376425379056,0.0710511170407576,0.0844355405447928,0.0973745360488712,0.1089360446117032,0.1243430166770656,0.1360246931913404,0.1473891520732421,0.1584446106185236,0.1685823343983874,0.1819855712285991,0.1929600623079918,0.2044552679357693,0.2146028343976904,0.2242528937986884,0.2347225915093503,0.2442874206043557,0.2532284917206623,0.2608631509663069,0.2688157261667468,0.276042329266177,0.2823054889811188,0.2890368198264242,0.2946705461163595,0.3000206383314516,0.3052932267874952,0.3103405138982711,0.3149589277993947,0.3188585929205831,0.3228320497942821,0.3214247311827957,0.3204243740208339,0.319331983805668,0.3187725631768953,0.3178048454816551,0.3164473784746099,0.3137313715584743,0.3146666666666666,0.3147123422947916,0.3150406865974609,0.3166115501746913,0.3180178581988055,0.319183639329179,0.3192244187603195,0.3195215104129134,0.3213924149209563,0.3224633564367685,0.32568477069964,0.3288728949758926,0.3314522494080505,0.3353309724870607,0.3395205770046669,0.3425157232704403,0.3473357553739025,0.3505067567567567,0.3554742803209061,0.3592350887843375,0.3671953423007428,0.3730136604404795,0.3663943990665111,0.0,2.219736054832722,55.18788550889749,172.26922739850147,255.07812198204223,fqhc6_100Compliance_implementation_low_initial_treat_cost,90 -100000,95675,44942,425.1580872746276,5820,59.51397961850013,4561,47.1178468774497,1838,18.803240135876667,77.35982293729873,79.73437172993833,63.33991942654043,65.08939824889922,77.13290397188909,79.51124648504495,63.25613116694226,65.00985106579725,0.2269189654096379,223.1252448933816,0.0837882595981724,79.5471831019654,158.06076,111.16965545504192,165205.45597073424,116194.64024566702,397.23455,261.7092491779838,414637.8573295009,272987.6710552768,378.73696,184.27723169786992,392420.71596550825,189917.76523119168,3022.48899,1374.626192844612,3123560.3658217923,1401318.3810269358,1063.19671,464.9505695501636,1097132.9605435068,471873.5086288204,1804.49538,751.9687673382249,1847969.354585837,753081.2158821893,0.37994,100000,0,718458,7509.338907760648,0,0.0,0,0.0,34337,358.2963156519467,0,0.0,34490,357.2511105304416,1576708,0,56477,0,0,0,0,0,87,0.8884243532793311,0,0.0,1,0.0104520512150509,0,0.0,0.0582,0.1531820813812707,0.315807560137457,0.01838,0.3330596157004434,0.6669403842995566,24.552639206837902,4.40195271859419,0.3277789958342468,0.2212234159175619,0.2256084192063144,0.2253891690418767,11.278573058295082,5.815470211874077,19.588279950007472,12131.60499234327,51.53208445460097,12.109158086675723,16.792924148871126,11.420114501391913,11.209887717662223,0.561718921289191,0.7958374628344896,0.6963210702341137,0.5850340136054422,0.11284046692607,0.745819397993311,0.9243902439024392,0.8870056497175142,0.7510729613733905,0.1206030150753768,0.4962852897473997,0.7078464106844741,0.6371603856266433,0.5364321608040201,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025114432697371,0.0047739228266488,0.0072135139248211,0.0093944872133411,0.0119367170977712,0.0142500890630566,0.0161913204740215,0.0184263151450842,0.0206235060981838,0.022925362140928,0.0252935029811297,0.0274224160041036,0.0296112812711986,0.0317023949259694,0.0338318720990201,0.035853073711191,0.037796596132345,0.0396208019582218,0.0414513697561989,0.0436160123396316,0.057848217643863,0.0713283491445205,0.0843960242241044,0.0975863810445688,0.1093789553624166,0.1245992190724104,0.1361243206521739,0.1479150023965489,0.1586312323612417,0.1685663382488677,0.1817486315245032,0.1927991337303735,0.2043745579193644,0.2142403747236632,0.2239889007564663,0.2347748067081681,0.2452268035485131,0.2539311445559689,0.2614971200507959,0.2689385270288826,0.2773070387367496,0.2841378020410787,0.2902047042963068,0.2959420636820685,0.3014514192867796,0.3063049763178938,0.3107626959835092,0.3152827001003518,0.3190056362790217,0.3226125354247677,0.3210988213474539,0.3193203376316296,0.318856499084636,0.3170326735103449,0.3161775614966915,0.3151680151726037,0.3132613992342499,0.3133588350215889,0.3143448370215822,0.3152845760834614,0.3166925800348426,0.3174142323872726,0.318715838411761,0.3199687290596381,0.3212511102042776,0.3221263770525878,0.3235986944799205,0.3271701660921341,0.3305949800741103,0.3334785708627109,0.3354718354718354,0.3346999627282892,0.3365268701224541,0.3350179952523164,0.3337734603414128,0.3356409644306517,0.3383504837966518,0.3389146661287068,0.3407806191117092,0.3443683409436834,0.0,2.0618250558752624,52.34813448300893,168.23748784921807,256.22902893798016,fqhc6_100Compliance_implementation_low_initial_treat_cost,91 -100000,95863,44915,424.92932622596834,5873,60.19006290226677,4585,47.34882071289236,1747,17.9318402303287,77.34109898624328,79.6320867494526,63.34986309044478,65.04434818284766,77.12796878621475,79.41963806972458,63.27150975551322,64.96803663937526,0.2131302000285302,212.44867972801276,0.0783533349315561,76.31154347239999,159.52002,112.18740412212864,166403.70111513307,117028.43716775882,399.15073,262.71762849739446,415884.9816926239,273564.34922482545,378.26251,183.60292480350304,391357.9065958712,189006.8380733592,2983.7592,1353.6568986770562,3081784.9743905365,1381365.7072875404,1076.97116,473.8444578966567,1109211.8961434546,480077.7115522122,1711.58986,706.9510012721868,1757137.8738407935,713254.9240740058,0.37881,100000,0,725091,7563.804596142411,0,0.0,0,0.0,34483,359.1896769347924,0,0.0,34555,357.24940800934667,1570081,0,56364,0,0,0,0,0,67,0.6989140752949522,0,0.0,1,0.0104315533626112,0,0.0,0.05873,0.1550381457722869,0.2974629661161246,0.01747,0.3353936239427456,0.6646063760572544,24.75075873149614,4.23544518528535,0.3254089422028353,0.2359869138495092,0.2268266085059978,0.2117775354416576,11.247353730785322,5.884582994034463,18.446991538838045,12108.766241310006,51.87619970011967,12.91507784016991,16.85349101111132,11.564987418888776,10.542643429949662,0.5696837513631406,0.7855822550831792,0.7050938337801609,0.5846153846153846,0.1050463439752832,0.7417998317914214,0.9333333333333332,0.8624338624338624,0.743801652892562,0.134020618556701,0.5094228504122497,0.7072135785007072,0.651705565529623,0.5363408521303258,0.0978120978120978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002379626348033,0.0044076967504635,0.0065017395449796,0.0088025666538063,0.0109670075010672,0.0131279003500773,0.015465020324582,0.0177811782708492,0.0197944967622004,0.0221774399787227,0.0244502033248998,0.026594053516302,0.0286351077924879,0.0305468388291578,0.0325605358062854,0.0347603517318251,0.0367061645676944,0.0389134083421396,0.0407993771087464,0.0426961850168017,0.0573802969636303,0.0709403674518738,0.0848966680283652,0.0974459683686543,0.1100031588922817,0.1253102392142366,0.1366785305707385,0.1474949771980738,0.158666311016271,0.1687169156254688,0.1807411711537219,0.1933698073221893,0.205251945567584,0.2147150757393604,0.2243171592946637,0.2349800620292423,0.2446784773974742,0.2537822120738333,0.2617467179539549,0.2693857921494985,0.2768460257240677,0.2831671129090717,0.2897774308758485,0.2954158982588077,0.3009942095487818,0.3052403307088555,0.309387704046532,0.3141959767045599,0.3177896493293148,0.3221904146273894,0.3209177151315346,0.3201534294788072,0.3198788817688895,0.319142167141473,0.3179898271810583,0.3153807269886494,0.3130790061285571,0.3130124718602626,0.314307745030843,0.3153101470060954,0.3165252403620012,0.3174137247124157,0.3192733083813449,0.3195980577286215,0.3204923582898046,0.3199769536978839,0.3199988570448895,0.3255711220497286,0.3296159915833772,0.3331218274111675,0.3356391935557274,0.3364317204015509,0.3386974630821658,0.3399452804377565,0.3426573426573426,0.3451970003571003,0.3468793129888054,0.3489215883894376,0.352651722252597,0.3519083969465649,0.0,1.8306144047729465,52.37638074380278,171.4705406461048,257.5730453479921,fqhc6_100Compliance_implementation_low_initial_treat_cost,92 -100000,95659,45016,427.8426494109284,5964,61.02928109221296,4706,48.7878819556968,1890,19.464974544998377,77.31769350596971,79.73900185606706,63.289715480586615,65.08074235522427,77.0820746236973,79.5017976883773,63.2012478196197,64.99358082581423,0.2356188822724192,237.20416768976804,0.0884676609669128,87.1615294100394,158.4726,111.45518948678898,165664.07760900698,116513.0196706938,399.01657,262.3637891951877,416685.0897458681,273841.1834147776,378.55952,183.65939020616523,393346.12529924,190142.32779274075,3119.97562,1417.120336345109,3235885.7922411896,1456388.6882869168,1122.03362,491.2410090009674,1163217.7944573956,504005.4752133637,1863.47892,789.0119455863843,1920961.8331782685,802068.4324587442,0.38088,100000,0,720330,7530.185345863953,0,0.0,0,0.0,34485,360.0602138847364,0,0.0,34585,359.1089181362966,1571151,0,56336,0,0,0,0,0,68,0.7108583614714767,0,0.0,0,0.0,0,0.0,0.05964,0.1565847511027095,0.3169014084507042,0.0189,0.3313590523451256,0.6686409476548744,24.5385706899774,4.371670420523659,0.3257543561410965,0.2301317467063323,0.208244793880153,0.2358691032724182,10.923496724293406,5.572056249118714,20.089148447785675,12099.14090129078,52.92114673062274,12.802422329771202,17.27530490782644,10.806010562135372,12.037408930889711,0.5560985975350616,0.7793167128347184,0.7084148727984344,0.5663265306122449,0.1189189189189189,0.7190357439733999,0.9182561307901907,0.9069148936170212,0.6754385964912281,0.1422413793103448,0.5001427347987439,0.7081005586592178,0.6439066551426103,0.5332446808510638,0.112756264236902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023705324580598,0.0046647466839735,0.0070050761421319,0.0088720413825343,0.0109475312096208,0.0129788101059494,0.0150470283394201,0.0173377333237977,0.0194447002957641,0.021464154656717,0.0235797729279159,0.0256130790190735,0.027721140974153,0.0299460496590709,0.031946439087894,0.0340649220294084,0.0359871852028491,0.0379849389768891,0.039982100673306,0.0419225996183166,0.0560345278030326,0.0704324228040947,0.0837088151579124,0.0968023929391443,0.1086481291780633,0.123939544785367,0.1365186987895469,0.147978382066069,0.158931895500353,0.1691625128910278,0.1814660984950644,0.1939074082101521,0.2047388201971784,0.2147934762368971,0.223210546039724,0.2328533072980229,0.2432435453224544,0.252002027369488,0.2608611723025912,0.2690610710643028,0.2761719473781731,0.2826079324025419,0.2886282871357498,0.2948953272149241,0.2998479411228028,0.3046963642642198,0.3099381525903297,0.3148002036141512,0.3199010067766303,0.3250409554510384,0.3240587212358959,0.3226832222895215,0.3212322782491051,0.3199289335702214,0.3185232468380737,0.3171534915067318,0.3158795020431436,0.315861118855887,0.3159214161465261,0.316644426652433,0.3176712073147975,0.318024467959561,0.3192683433797547,0.3202559203803261,0.3211802652012901,0.3230529998704159,0.3249419493685224,0.3273781685529885,0.331357645910327,0.3328726009004028,0.3359570499112789,0.3375431148845847,0.3394385699899295,0.3397601335964779,0.3398668292225452,0.3443513162554598,0.3439926907263591,0.345356715823037,0.3461016028253192,0.3499433748584371,0.0,1.4948404996283744,53.295662216424255,173.16713921513187,267.62848994343045,fqhc6_100Compliance_implementation_low_initial_treat_cost,93 -100000,95713,45111,426.9117047840941,5997,61.31873413224954,4719,48.73946067932256,1949,20.01817934867782,77.34880342590687,79.7067666790779,63.338894218876014,65.07730984896118,77.10253825679952,79.46019827213901,63.24737415690218,64.98752214535578,0.246265169107346,246.56840693889137,0.0915200619738314,89.78770360539556,159.83814,112.339812567977,166997.31488930449,117371.53006172308,398.53752,261.5975744414051,415822.6468713759,272749.14007648383,379.35941,184.93030166464743,392517.7875523701,190225.8181418645,3123.8572,1437.5445556273198,3229113.620929236,1467270.7736956507,1151.13803,510.7838719289328,1186817.7677013571,517782.04834132496,1908.88254,806.1108725386678,1962110.45521507,816282.9670911185,0.38092,100000,0,726537,7590.787040422932,0,0.0,0,0.0,34357,358.3734706884123,0,0.0,34659,358.32123118071735,1569415,0,56338,0,0,0,0,0,74,0.7731447138842164,0,0.0,1,0.0104479015389758,0,0.0,0.05997,0.1574346319437152,0.3249958312489578,0.01949,0.3402258628916813,0.6597741371083188,24.239436222141048,4.461649399563482,0.3297308751854206,0.2231404958677686,0.2178427632973087,0.229285865649502,11.507403629034435,5.991423060882203,20.82117573343068,12202.308753007068,53.77177624411347,12.825432519112187,17.558841358508886,11.457103394124346,11.93039897236805,0.5713074803983895,0.8024691358024691,0.6908740359897172,0.607976653696498,0.1395563770794824,0.7204874333587205,0.8987654320987655,0.8663484486873508,0.7368421052631579,0.152892561983471,0.5137991779213154,0.7422839506172839,0.6262093227792436,0.5672215108834827,0.1357142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.004713538498966,0.0072142458525696,0.0092544621542274,0.0117842036765902,0.0139970478953529,0.0161558298592353,0.0182811064611615,0.0206836646057942,0.0229466250447776,0.0251624541336121,0.0272078821778621,0.0293319351057923,0.0314411019828278,0.0335038785278098,0.0355231344671529,0.0376360229025812,0.0398203002604193,0.0417857996901675,0.0434483620905226,0.0586048454469507,0.0726523008655063,0.085566209949852,0.0980390094051802,0.1103387899755295,0.1263870524144496,0.1389065749819601,0.1494234516242374,0.1591892556067227,0.1701335621949257,0.18292288798397,0.1952304179876432,0.2060320636923277,0.2160551211242959,0.2260719354803217,0.235741908318282,0.2452861802421697,0.2537093324327367,0.262574653132593,0.2697683477304493,0.2772755159919895,0.2846330221567114,0.2906303640130216,0.2970654140654021,0.3016385875836603,0.3063397202883371,0.3107117847138855,0.3155104013020701,0.3203688853247795,0.3250181290790427,0.324213332615223,0.3228061484264267,0.3219600879418231,0.3207795399673264,0.3193791996194327,0.3163891994547654,0.3138745071961241,0.3145960490910284,0.3157822827182211,0.3170204788516131,0.3180542563143124,0.3189243578108353,0.3210630951135294,0.3209953900550508,0.3229176697159364,0.3240359025204822,0.32500500271576,0.3290975594374724,0.3335911407980313,0.337138992759965,0.3424363020904807,0.3464916979110873,0.3494298273555456,0.3513222632226322,0.355740968995923,0.3550168026884301,0.3630970964720574,0.3641078838174273,0.3634324172742568,0.3666146645865835,0.0,2.2251271714569687,57.66243682039907,174.09026108610243,255.50482915306557,fqhc6_100Compliance_implementation_low_initial_treat_cost,94 -100000,95635,45180,429.2047890416689,6022,61.81837193496105,4732,48.88377685993621,1893,19.38620797825064,77.26744378178137,79.68273456032978,63.28338998351626,65.06935505214322,77.030562009433,79.44987380700496,63.19481225804866,64.98547022521262,0.2368817723483687,232.8607533248146,0.0885777254675943,83.88482693059984,158.15712,111.21337000895514,165375.7724682386,116289.40242479756,400.73586,263.819136711827,418368.58890573535,275213.42181627714,382.41175,185.52756512578773,396438.3750718879,191257.649515287,3108.57696,1422.268491375538,3211343.2425367283,1448781.9138875,1124.65514,493.27019289789627,1161314.2677889897,501111.4684978268,1846.14442,777.1743836820244,1892001.233857897,778535.2540364977,0.38025,100000,0,718896,7517.080566738118,0,0.0,0,0.0,34616,361.2903225806451,0,0.0,34985,362.5660061692895,1570091,0,56386,0,0,0,0,0,67,0.6796674857531239,0,0.0,0,0.0,0,0.0,0.06022,0.1583694937541091,0.3143473928927267,0.01893,0.336815447926559,0.663184552073441,24.38648885843857,4.394481345729319,0.316356720202874,0.2360524091293322,0.2311918850380389,0.2163989856297548,11.11647280821849,5.7555794389319495,20.268019711382266,12138.51786303972,53.93317009398259,13.43181798573977,17.040181785874566,12.069565247325446,11.391605075042806,0.5657227387996618,0.7833482542524619,0.7060788243152972,0.5722120658135283,0.1162109375,0.7284716834755625,0.9189814814814816,0.8585858585858586,0.7008196721311475,0.1428571428571428,0.5047923322683706,0.6978102189781021,0.6512261580381471,0.5352941176470588,0.1090458488228005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418910977364,0.0047454877306834,0.006924139051332,0.0090541419396797,0.0111598286859479,0.0132908298366399,0.0153149662499745,0.0176214152262912,0.0199490792339389,0.0221915002560163,0.0244195109944207,0.0264825829250002,0.0286604874134578,0.0307370503560057,0.0327631945663057,0.0347893512535538,0.0368095617859991,0.038913050247553,0.0406719717064544,0.0425168117604128,0.0575041806020066,0.0717472819825292,0.0845944611894684,0.0975201389985784,0.1092483108108108,0.1251005972298699,0.136721363708778,0.1479997442400733,0.1592345787295033,0.1693104077840903,0.182047604154309,0.1952205045985852,0.2062255115367871,0.2166057475541158,0.2258799696125601,0.2366633798291583,0.2457137116578113,0.2545405441901289,0.2627252392901343,0.2701454391253022,0.2777005904828065,0.2832643129547741,0.2900563607085346,0.295941260452784,0.3016029383148472,0.3058390827295953,0.3110816091378187,0.3157057401043655,0.319979781746546,0.323128577282521,0.3218193839137533,0.3204905608378117,0.3195253749453278,0.3178902868063297,0.3185148780269859,0.3164419079179515,0.3141034794611833,0.3150363092695429,0.3158092698021918,0.3162306097648152,0.3163504663251327,0.3180880602935343,0.31828973631684,0.3184443847393874,0.3192104692357747,0.3205450075840786,0.3216671424493291,0.3242834645669291,0.3262690980778708,0.3277327692860278,0.3309104292220637,0.3327772695474358,0.3354842831587017,0.3389660493827161,0.3391551969625059,0.3438701923076923,0.3470433028092503,0.34643886372993,0.3530079455164586,0.3565705128205128,0.0,2.194144735096988,56.79346016590548,177.60711279120773,256.88191470148,fqhc6_100Compliance_implementation_low_initial_treat_cost,95 -100000,95839,44997,425.9643777585325,6115,62.59455962603951,4822,49.73966756748297,1840,18.83366896566116,77.40182060844235,79.7169113749846,63.36325590393732,65.07626553881886,77.17347926684803,79.48923481332719,63.27839192772195,64.99417676026108,0.2283413415943158,227.6765616574181,0.0848639762153737,82.0887785577753,158.76806,111.6625951190768,165661.223510262,116510.60123652876,400.02126,263.4577466385928,416844.6874445685,274352.0556752396,383.54866,186.52100325027504,396740.7422865431,191961.01679236247,3146.90777,1444.9802237322658,3249850.374064838,1474030.9829320696,1135.18722,507.6310306640112,1170983.4305449766,516183.7647025434,1798.20734,762.5884713276835,1843009.275973247,766801.2228267353,0.38065,100000,0,721673,7530.055614102818,0,0.0,0,0.0,34594,360.3856467617567,0,0.0,35084,362.56638737883327,1573571,0,56511,0,0,0,0,0,72,0.7512599255000574,0,0.0,0,0.0,0,0.0,0.06115,0.1606462629712334,0.3008994276369583,0.0184,0.3298807281858129,0.6701192718141871,24.3786984961914,4.291292083061367,0.3139776026545002,0.2478224802986312,0.226047283284944,0.2121526337619245,11.211784275882351,5.953823933406444,19.710379875481404,12114.159730119469,54.81774252028617,14.372134031212758,17.13871345603276,12.04372362862694,11.263171404413717,0.5769390294483617,0.7882845188284519,0.7001321003963011,0.5954128440366973,0.1280547409579667,0.7380410022779044,0.9223946784922394,0.868766404199475,0.7330677290836654,0.1752136752136752,0.5164051355206848,0.706989247311828,0.6434245366284201,0.5542312276519666,0.1140684410646387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.004469488897222,0.0068376415209187,0.0091512030632661,0.0113967934445562,0.0135897227085793,0.0156652907302655,0.0180138803837517,0.0201259275916348,0.0221282867465686,0.0242427348675106,0.0263887178223919,0.0285552757362388,0.0303741685714874,0.0322723709723998,0.0341599504029758,0.0358880400803262,0.038117359159676,0.0405799810966046,0.0426800711854881,0.0572259941804073,0.0710544747488474,0.0845095512034621,0.0969842753752586,0.1093090120167244,0.1244573999556414,0.1363665254237288,0.1478910667970576,0.1587176230776619,0.1687036065082102,0.1807289818130975,0.1927731673582296,0.2040242060775941,0.2145377866640445,0.2247125552355618,0.2353136519111347,0.2447252208047105,0.2529596276434281,0.26130847057756,0.2684054521109191,0.2757244952239979,0.28273346815201,0.2897979941337875,0.2961995590913447,0.3018808358730891,0.3075596506571735,0.3112601005678833,0.3151324069718659,0.3190534106200186,0.3230978153387741,0.3219823818169592,0.320041785218479,0.3196725922592259,0.3187375645203149,0.3182835544356333,0.3163333944841925,0.3147042093287827,0.3148293705377611,0.3149316329662086,0.3150848332710214,0.315642979899873,0.3169516230696502,0.3185403104656985,0.3204197112814115,0.3214832535885167,0.3221732365145228,0.3244973095440385,0.326725266504582,0.3309304917119376,0.3333859572956545,0.3355573710965868,0.3378930067334711,0.3400603545831762,0.343067354368932,0.34388676785548,0.3455294117647058,0.3466626121331914,0.3479579458147998,0.346206518761983,0.3461096205442698,0.0,2.229287890513519,57.81922640159758,180.3685701269769,260.8919380179456,fqhc6_100Compliance_implementation_low_initial_treat_cost,96 -100000,95706,45055,427.9877959584561,6120,62.83827555221198,4733,48.97289616116022,1846,19.00612291810336,77.32145341825886,79.70742139057482,63.3143933609397,65.07964048986324,77.09012034348441,79.47591428284666,63.22870008063708,64.99611125696653,0.2313330747744402,231.50710772816296,0.0856932803026211,83.52923289670855,158.47898,111.51309575923828,165589.38833510963,116516.30593613592,399.84829,263.0158717646792,417324.6609407979,274353.041360708,380.29125,184.44472774431665,394133.6593317033,190286.6532578027,3125.3914,1426.3952524155834,3235551.16711596,1460375.0262759945,1112.65497,494.1992813428235,1153204.5953231773,507029.52997533017,1817.57364,763.8308414987112,1872676.8854617265,775083.5064229273,0.37987,100000,0,720359,7526.790378868618,0,0.0,0,0.0,34566,360.6774914843375,0,0.0,34889,361.2730654295447,1572478,0,56397,0,0,0,0,0,59,0.6164712766179758,0,0.0,0,0.0,0,0.0,0.0612,0.161107747387264,0.3016339869281045,0.01846,0.3321917808219178,0.6678082191780822,24.470375001768943,4.377124529754251,0.3226283541094443,0.2328332981195859,0.2146630044369321,0.2298753433340376,11.022001000230103,5.623776552574954,19.611748589701783,12101.516638187566,53.76319914297915,13.216373491689165,17.313685426720703,11.305854803518631,11.927285421050648,0.5569406296218044,0.7912885662431942,0.6987557301899149,0.5856299212598425,0.09375,0.7308943089430894,0.9297820823244553,0.8919667590027701,0.7477064220183486,0.1260504201680672,0.4958606908364259,0.7082728592162555,0.6389365351629502,0.5413533834586466,0.0847058823529411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019858960849477,0.0039549741405536,0.0059180607438687,0.0081299986788752,0.0102657496337294,0.0124786081003993,0.0147057323801462,0.017143148866653,0.0190964945460493,0.0210453047270047,0.0229859131825544,0.0249132247530242,0.0271371258101018,0.0288737982131632,0.0312767736408022,0.0334477553299282,0.0358078783547227,0.0376727967121922,0.0398930915065985,0.0419489317352787,0.0566725504736638,0.0706883557342042,0.0840006296898777,0.0966441823022445,0.1084662783827129,0.124355676922914,0.1368856809255917,0.1479619550746093,0.1591052400953327,0.169221198502676,0.182282408454801,0.1944092587179404,0.2057825349171126,0.2158658264408559,0.2250154022179193,0.2353781419554866,0.2450971642756743,0.2541900383314036,0.2624423100910565,0.2700251889168766,0.2766156728067436,0.2833196960841613,0.2902802101576182,0.2958662832494608,0.3011161446251381,0.3054225395457623,0.3104004602416269,0.3148769574944071,0.3192416057073435,0.322836098190874,0.3220500820355577,0.3209601889616721,0.3197221519165331,0.3185799841258388,0.3174190674190674,0.3153227659085688,0.3135218980990519,0.3146106133700896,0.3160356423474788,0.3171884756043172,0.3184218410605947,0.3185859943092001,0.3186882224828279,0.3202874862861877,0.3211979568234387,0.3226515290239883,0.3247322297955209,0.3282409014866955,0.33188987466554,0.3347653142402546,0.3363118304080237,0.3369750586228949,0.338607192781802,0.3401585713186051,0.3389637502372367,0.3425925925925926,0.3460883036405887,0.3439099283520982,0.3498477719346803,0.3531898539584934,0.0,1.870074903070705,54.13316880687334,185.0619691533895,257.3673759550366,fqhc6_100Compliance_implementation_low_initial_treat_cost,97 -100000,95703,45003,425.9950053812315,5933,60.69820172826348,4655,48.034021921987815,1848,18.912677763497488,77.3455376358958,79.7311090631829,63.32130932583449,65.08674319869826,77.11122734996098,79.49999496706398,63.23428870388118,65.00336446540892,0.2343102859348107,231.1140961189153,0.0870206219533145,83.37873328933654,158.54916,111.53919878659784,165667.91009686215,116547.23340605608,399.13066,262.7509832394843,416473.53792462096,273970.5058770199,379.82843,184.9920136256618,392895.92802733456,190273.42397786555,3096.3289,1418.8249474577865,3198607.5358139244,1445784.78987888,1142.01434,505.5799063640519,1179583.9106402097,514574.00119541865,1818.00114,765.7771968639227,1862915.4780936856,769835.2592720967,0.37914,100000,0,720678,7530.359549857371,0,0.0,0,0.0,34509,359.96781710082234,0,0.0,34771,359.4140204591288,1573463,0,56350,0,0,0,0,0,68,0.700082547046592,0,0.0,0,0.0,0,0.0,0.05933,0.1564857308645882,0.3114781729310635,0.01848,0.3332260659694288,0.6667739340305712,24.430722572520555,4.402960080002166,0.3203007518796992,0.227282491944146,0.2214822771213748,0.2309344790547798,11.231655917032976,5.84646066245012,19.74934346644012,12099.789868062926,52.75249532618497,12.766117115751914,16.770701139448047,11.327340754253894,11.888336316731095,0.5568206229860365,0.8109640831758034,0.6841046277665996,0.5615906886517944,0.1255813953488372,0.7354581673306773,0.9287469287469288,0.8712121212121212,0.7217391304347827,0.1531531531531531,0.4908823529411765,0.7373271889400922,0.6164383561643836,0.5156054931335831,0.1184056271981242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023607128744972,0.0044728434504792,0.0069546677496319,0.0090855505193194,0.0111906893464637,0.0133632104298227,0.015398421406865,0.0177486392369514,0.020216377617801,0.0224880186785728,0.0248807753448541,0.0268896169924302,0.0288118333213326,0.0309849866559502,0.0330130752004623,0.035191100910792,0.0372806563218628,0.0393457255243848,0.0415245424292845,0.0433346531352241,0.0579867566269087,0.0723324088126013,0.0859028987636699,0.0989120828247969,0.1116068603252958,0.1266857765413947,0.1398285301982089,0.150432393286189,0.1600782485996493,0.1700835068587252,0.1823610572155391,0.1939847506823203,0.2055711579909868,0.2161724477513951,0.225452103948136,0.235166369347708,0.244905247650722,0.2538362883628836,0.2621518915546481,0.2687980037315568,0.2753044866234082,0.2819092364690345,0.2884031070073182,0.2936290409450515,0.2988890505991364,0.3036568715482355,0.3088744237184372,0.3133703144238947,0.316979329399765,0.3202577421263725,0.3189881910896404,0.3176915591979936,0.3164517850622173,0.3150736247586664,0.3150467898602227,0.3131860582281187,0.3117837666956453,0.3118267209668944,0.3117397840645073,0.3121883210896026,0.3137718705414132,0.3135774580905957,0.3139705882352941,0.3151310341740707,0.3162874684001444,0.3174238668093213,0.3200205104831358,0.3240720369613729,0.3274857904708441,0.3299325129019452,0.3357883251500272,0.338102808691044,0.3416609126859582,0.3430933778350906,0.3434999529323166,0.3440526001195457,0.3505313414446326,0.3491317671092952,0.3555008210180624,0.3657874321179208,0.0,2.3877620698947277,54.798029922157774,169.98923645161614,258.7164906240824,fqhc6_100Compliance_implementation_low_initial_treat_cost,98 -100000,95609,45071,427.7003210994781,6004,61.500486355887,4707,48.64604796619565,1812,18.607034902571936,77.23812690061078,79.66708859746352,63.25655152000609,65.05335974412982,77.00961009959276,79.43987126137147,63.17279183565018,64.97201782914873,0.2285168010180172,227.2173360920533,0.0837596843559111,81.34191498109544,159.16626,111.97006044138332,166476.23131713542,117112.4689531146,400.50767,263.6314224567167,418278.3629156251,275115.8730273613,384.51698,187.0683229455444,397882.51106067415,192402.8816182342,3062.94534,1400.4262820780837,3168569.3083287138,1429697.704818271,1111.27711,489.1806196206536,1147910.771998452,497257.46513121255,1771.19986,736.8782383860812,1821040.4878201843,745068.9159056292,0.37859,100000,0,723483,7567.101423506156,0,0.0,0,0.0,34648,361.7441872627054,0,0.0,35157,363.553640347666,1562107,0,56104,0,0,0,0,0,66,0.6693930487715593,0,0.0,0,0.0,0,0.0,0.06004,0.1585884466045062,0.301798800799467,0.01812,0.3335452089623391,0.6664547910376609,24.501002964110796,4.336359377024523,0.3246229020607605,0.2502655619290418,0.2152113872955173,0.2099001487146802,11.049377907922803,5.680313396434394,19.14578226212599,12094.450962740504,53.30874212020831,14.063485531963469,17.33063461627095,11.111265614367348,10.803356357606544,0.5708519226683663,0.7835314091680815,0.68717277486911,0.5853899308983218,0.1224696356275303,0.747832939322301,0.92,0.8511749347258486,0.8070175438596491,0.1201923076923077,0.5055264688772542,0.6991758241758241,0.6323144104803493,0.5210191082802548,0.123076923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.004381649812867,0.0064474859881406,0.0090462783204415,0.011205422569614,0.0132440885520136,0.0153194961497271,0.0177338291178032,0.0197921567825215,0.022103182325648,0.0241422473939095,0.0263144374916515,0.0284267511990284,0.0304732843314124,0.0324672642405716,0.0345070203938042,0.0365724711297244,0.0387767609510849,0.0408243988758197,0.0427589372333434,0.057005760163919,0.0710348729985749,0.0836336131275672,0.0965204204140952,0.1087996451841135,0.1244306988370368,0.1371386684514134,0.1482413131528459,0.1595733299097017,0.1691084854994629,0.1820015967891591,0.1933871754566643,0.205393331880584,0.2155081737301135,0.2246663507422387,0.2353065187239944,0.2446815649956378,0.2536334013597772,0.2615755480760484,0.2687555974005098,0.275944080283079,0.2817897217629885,0.2880022778232551,0.293148412994099,0.2978689703069219,0.3029363058899132,0.3076701051627638,0.3125047840175541,0.3170538508486021,0.3218816557088619,0.3206991968684619,0.3192402129831434,0.3175987468777782,0.316906813409601,0.3165945037123004,0.3150438946528332,0.3140607388357067,0.3150788685085784,0.3169021329126946,0.3179947021764032,0.3193821437285336,0.320592545648988,0.3208803208803208,0.3219563608638127,0.3222329394743188,0.3238471397556956,0.3239396282613054,0.328661173722259,0.3318069742867207,0.3348010631123805,0.3343537259560469,0.3348221406922954,0.3365663181760927,0.3416622228993677,0.3457531675269826,0.349075491697091,0.3507473954401329,0.3522025114610325,0.3520087455588959,0.3539923954372623,0.0,2.2193162034699583,55.63446071457953,170.3675125034633,263.2107017581393,fqhc6_100Compliance_implementation_low_initial_treat_cost,99 -100000,95712,41722,391.706369107322,7154,73.28234704112337,5600,57.85063523905048,2271,23.278167836843863,77.33641368994157,79.7107153039075,63.332022412709286,65.08905694942023,77.05724284800681,79.43200508475574,63.2283687795006,64.98850204080003,0.2791708419347571,278.71021915176186,0.1036536332086868,100.55490862019668,89.54638,62.72434799848168,93558.15362754933,65534.46589610674,233.97179,143.35767922402093,243783.5485623537,149109.8286777216,275.50323,131.28617958736774,282931.6491140087,133568.16763921894,4017.50631,1813.1596646853725,4152035.460548312,1849319.9271888903,1399.4332,609.5372115669334,1444485.330992979,619337.24449021,2236.42684,938.0550554496792,2294582.4557004347,945132.6476796146,0.38091,100000,0,407029,4252.643346706787,0,0.0,0,0.0,19595,204.03920093614173,0,0.0,25634,263.08090939485123,2040544,0,73260,0,0,3620,0,0,43,0.4388164493480441,0,0.0,0,0.0,0,0.0,0.07154,0.1878133942401092,0.3174447861336315,0.02271,0.3221896643580181,0.6778103356419819,25.323196326869763,4.5432605220478415,0.3344642857142857,0.2055357142857143,0.2269642857142857,0.2330357142857143,11.31310258070845,5.761151164903195,24.264683009116855,13019.494254649797,63.181396371199895,13.523150196759843,21.071300227939595,14.134743234699808,14.452202711800636,0.54875,0.7680278019113814,0.6849973304858515,0.5845790715971676,0.1249042145593869,0.7019774011299436,0.9021739130434784,0.8586956521739131,0.7423728813559322,0.1638225255972696,0.4968929254302103,0.7049808429118773,0.6284501061571125,0.5368852459016393,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509383486684,0.0046653617176644,0.0069546677496319,0.0092690462639238,0.0115255892495651,0.0137901533823559,0.015929185490368,0.0183173371451909,0.0203756146933434,0.0225518498044755,0.0247247678208991,0.0268782981868955,0.0291123359795977,0.0312805776143538,0.0334733214326251,0.0358770814598902,0.0374216929847269,0.0395161373987198,0.041323688367839,0.0433754518276232,0.0578407109217547,0.0718485812337825,0.0845306764551651,0.0970522686178041,0.1092909999367529,0.1243010707226585,0.1376140953471361,0.1506189382337927,0.1626459725454196,0.1746536817407514,0.1885681690989711,0.2006964948141418,0.2133215962441314,0.2244436432761954,0.2356251098997714,0.2471245299712453,0.2572441155492154,0.2679795867898653,0.2779125938357562,0.2866573612191662,0.2945073239534319,0.3025002920901974,0.3103709132171816,0.3173468410212195,0.3239513545004369,0.3300865667598419,0.3360519370051161,0.3415760351078039,0.3476177525674398,0.352680104615222,0.3536945414346765,0.3542727084626526,0.3547394134508126,0.3548709626001652,0.3553279055202648,0.3549056371795659,0.3549478835642558,0.35508320975449,0.3562705817782656,0.3578035925567387,0.3594675390602967,0.3602688928989272,0.3620113844021088,0.3627833019797545,0.3646664577255961,0.3655138159098632,0.3664635548401931,0.3702516581511218,0.3726899383983573,0.3752806286080821,0.3788719371243643,0.3788944180008654,0.3800103439358676,0.3834762275915822,0.3833605220228385,0.3883743602242261,0.3930472909489508,0.3975232198142415,0.3951233028539762,0.3996919522525991,0.0,2.5275574900069664,62.13377548799828,205.49354066432355,324.38865588827696,fqhc6_80Compliance_baseline,0 -100000,95595,41243,388.2943668601914,7213,74.09383335948533,5602,57.86913541503217,2295,23.52633505936503,77.26635035352784,79.70371586161329,63.26822878755484,65.07181820278592,76.97902938224598,79.42086751260784,63.1610427921952,64.97014456260302,0.2873209712818578,282.8483490054481,0.107185995359643,101.67364018289504,91.3506,63.8748878279995,95560.01882943668,66818.23089910508,235.18418,143.58657270860678,245308.53078089855,149490.12260955782,266.98649,127.06378358537296,275104.6812071761,129668.46732434368,4011.7561,1803.877832905283,4144465.4009100897,1834896.612066828,1351.07024,587.8303300377436,1392896.1765782728,594515.3445024048,2252.8746,942.433186866041,2310742.7585124746,945454.245201255,0.37856,100000,0,415230,4343.637219519849,0,0.0,0,0.0,19681,205.1257910978608,0,0.0,24959,256.8753595899367,2028528,0,72786,0,0,3664,0,0,42,0.43935352267378,0,0.0,0,0.0,0,0.0,0.07213,0.1905378275570583,0.3181755164286705,0.02295,0.3244568097509274,0.6755431902490726,25.1528324437121,4.595538034074306,0.3388075687254552,0.203141735094609,0.2240271331667261,0.2340235630132095,11.040766047192353,5.541466088092255,24.46774414868374,12959.956046255544,63.4482749733324,13.417453205990366,21.58645095111971,14.018117514639323,14.426253301582994,0.5458764726883256,0.7574692442882249,0.7012644889357218,0.5649402390438247,0.1189931350114416,0.6929429429429429,0.8952095808383234,0.8564814814814815,0.7128712871287128,0.1444866920152091,0.5,0.7002487562189055,0.655525238744884,0.5178571428571429,0.1125954198473282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0047577986304844,0.007200381853819,0.0094049943061656,0.0117261456403574,0.0138813865079445,0.016176110385369,0.0183215311200351,0.0205351204788458,0.0224925195720785,0.0244575815423774,0.026386661732659,0.0284843680835074,0.0305811028168433,0.0325775964468315,0.034622269590141,0.036693063559849,0.0385034847367491,0.0404055123027603,0.0422937722290017,0.056834577504548,0.0706694893938123,0.0837570384065887,0.0962974666877337,0.1088906023892767,0.1246014174179264,0.137932867073404,0.1511068437616685,0.1632552562839892,0.1747694886839899,0.1886456568882367,0.201324962864175,0.2142748208021961,0.2252051852420035,0.2357681453390951,0.2466826432343673,0.2578442765833817,0.2670541587816527,0.2768571558465175,0.2855864229405487,0.2933453841786306,0.3009419814415596,0.3084881956954584,0.3147159397684324,0.3217153284671533,0.3279328229192393,0.334549695282522,0.3398311999592024,0.3455236563185138,0.3507944061120364,0.350923340482646,0.3506604528031327,0.3514604774610704,0.3524410908511594,0.3534698622786621,0.353475804470646,0.3533054898286513,0.3543719719191852,0.3563640104238101,0.3574016934557979,0.3582576243073095,0.3590875643855776,0.3597512123128821,0.3599901021280424,0.3619649734757648,0.3629100084104289,0.3639996550038812,0.367822662601626,0.370409754714306,0.3728221597751907,0.3744996088897069,0.3767983680480996,0.3769358761039293,0.3796508957280661,0.3817361045800809,0.3865466603505447,0.3888293802601377,0.3903526550466153,0.3898817706901292,0.3900304414003044,0.0,2.7846391625274425,58.19522802061825,226.28619311644903,315.2420110636087,fqhc6_80Compliance_baseline,1 -100000,95705,41625,391.5678386709158,7209,74.11316023196281,5622,58.1578809884541,2214,22.80967556553994,77.34534288058313,79.71502545691695,63.32656324425341,65.07497626506348,77.06654659402477,79.43459020899166,63.22318814095735,64.97335971592605,0.2787962865583608,280.43524792528274,0.1033751032960594,101.61654913743234,89.38886,62.57982025943613,93400.40750222036,65388.24539933769,234.5064,143.25887653858973,244445.74473642965,149103.26162540072,268.68322,128.1851402729983,276905.7311530223,130962.4541943346,4056.34204,1825.556077535325,4201350.096651168,1870452.0636699493,1370.37347,598.7731482869038,1416241.220416906,610032.7703871201,2187.67682,921.6087691007727,2255276.5895198784,936703.8207763364,0.38125,100000,0,406313,4245.473068282744,0,0.0,0,0.0,19582,204.01232955435972,0,0.0,25025,257.69813489368374,2039657,0,73206,0,0,3534,0,0,59,0.6060289431064207,0,0.0,0,0.0,0,0.0,0.07209,0.1890885245901639,0.3071161048689138,0.02214,0.3271629250361034,0.6728370749638966,25.03143232080257,4.564826774839769,0.3191035218783351,0.211846318036286,0.2331910352187833,0.2358591248665955,11.004397246444595,5.445628218833912,23.74657802994396,13014.278986749956,63.24039032934736,13.964811781787748,20.02109760080725,14.576550185246772,14.677930761505593,0.5483813589469939,0.780016792611251,0.6917502787068004,0.5873379099923722,0.1078431372549019,0.7001424501424501,0.938337801608579,0.8449074074074074,0.7796052631578947,0.1050847457627118,0.4978662873399715,0.7078239608801956,0.6431718061674009,0.5292949354518371,0.1086323957322987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025720998055735,0.0046824640707031,0.0069295077310174,0.0091204550071094,0.0112977689194411,0.0133579042751402,0.0156264334424023,0.0177618080295621,0.0198413509700897,0.0221207685457206,0.0241834621614417,0.0261758061203532,0.0280492069696159,0.0301847139663538,0.0324667953229651,0.0346093015082129,0.0366001429207618,0.0386682994665725,0.04045707868907,0.0425815729962378,0.0573693445293896,0.071486137131972,0.0853865849563465,0.0978430134680134,0.1100523405512642,0.1255093293257273,0.1386060831254313,0.151291473611333,0.1637560652373725,0.1741928563767028,0.1878973342240803,0.2013232411829039,0.2134811896703703,0.2248073048962074,0.236006168080185,0.2471395627300545,0.2578841023007625,0.2678985393081407,0.2771230699364214,0.2858288739414912,0.2942592592592593,0.3017477363655506,0.3093865081526565,0.3165082067452372,0.3231865206238831,0.3288718929254302,0.3354673014282134,0.3408295470454227,0.3465634201071377,0.3523445558170903,0.3530015392508979,0.354564521470361,0.355315085932527,0.3560489601763494,0.3568872454000537,0.3572558961358223,0.3571507892440707,0.3587698380067429,0.3595044852627082,0.3605459190053413,0.3610069730824023,0.3629620839019759,0.3648722359753283,0.3660161507402422,0.3669784642157929,0.3688108447608081,0.3694047924324016,0.3710857753070134,0.3729164473453346,0.3742564834641922,0.376770538243626,0.3765313731756685,0.3781019132411441,0.3790644171779141,0.3796725655342103,0.3806797853309481,0.3812739831158864,0.3786704730831974,0.3856191004997223,0.3834319526627219,0.0,2.2801548489417587,61.98849024436394,208.6631236027268,322.5969482445224,fqhc6_80Compliance_baseline,2 -100000,95659,41457,389.2367681033671,7096,72.93615864686019,5544,57.33908989222133,2195,22.52793777898577,77.2498286400838,79.64830879636776,63.26585613190741,65.038685609847,76.98205531316188,79.38203271214383,63.16740732933902,64.94383152677895,0.267773326921926,266.27608422393223,0.0984488025683916,94.85408306804288,89.5092,62.67501647230857,93570.43247368257,65518.56209022712,232.86469,142.67371287317533,242801.98413113249,148520.39569904364,270.72953,129.49211365302347,279616.39782979124,132663.97763698603,3978.5759,1781.8663928832918,4117947.030598271,1821793.6178027247,1323.70416,578.2782249518089,1367447.2553549588,588575.8792796638,2158.74608,894.2439475811587,2218106.0433414523,901523.30645228,0.378,100000,0,406860,4253.20147607648,0,0.0,0,0.0,19542,203.60865156441108,0,0.0,25183,259.85009251612496,2032109,0,73003,0,0,3484,0,0,39,0.3972443784693547,0,0.0,0,0.0,0,0.0,0.07096,0.1877248677248677,0.3093291995490417,0.02195,0.3098270545649551,0.6901729454350449,25.286663219976194,4.526533036455476,0.3262987012987013,0.2123015873015873,0.2368326118326118,0.2245670995670995,11.20517788954619,5.601204924425419,23.3283590246136,12979.223308277393,62.26977008705795,13.79055366863088,20.20207563875862,14.731769915251432,13.545370864417029,0.5564574314574314,0.7672047578589635,0.6887783305693753,0.6146230007616146,0.1036144578313253,0.7211815561959655,0.912087912087912,0.8654708520179372,0.7484848484848485,0.1451612903225806,0.5014436958614052,0.7023370233702337,0.6309611151870873,0.5696846388606307,0.0932798395185556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210867539203,0.0048373847698439,0.0071355345560844,0.00954074375127,0.0118298054134328,0.0140244026643309,0.0160194966757759,0.0182161637821003,0.0201268152996522,0.0225007937239479,0.0246786948806581,0.0267693888032871,0.0291200197563384,0.0310341984292222,0.0329248273227541,0.0351243729637482,0.0371702140888271,0.039370814514873,0.0413046870935858,0.0433037203870537,0.0580841326562597,0.0719955598374733,0.0849145711766928,0.0973084450430354,0.1088562443276557,0.1239773509022596,0.1373517261885798,0.1500868508828951,0.1624466480536568,0.1740554940864315,0.1878472709225673,0.2009433450799674,0.2132934993566958,0.2247178688542569,0.2350480647190614,0.2459919784016798,0.2564225985917858,0.2662590390668186,0.2759970861409579,0.2856633954632162,0.2939714252526426,0.3018801410105758,0.3092046576352629,0.3167164250975104,0.3233816283721157,0.3298645053517292,0.3357540425424985,0.3416813684129784,0.3461343390337473,0.3513810836602693,0.3522633522227782,0.3527298850574712,0.353052706048815,0.3540683748276112,0.3555847333711319,0.3549407843197493,0.3545339050341432,0.3545073859140069,0.355945291987713,0.3572198082378712,0.3589226477683956,0.3590345156672498,0.3596749747389693,0.3600999527250624,0.3613359833244461,0.3627556230525516,0.3634649448602937,0.3669612251957608,0.3695973012861058,0.370889402022454,0.372068667182733,0.3741323583955916,0.3742925418186392,0.375580421709675,0.3788860711937635,0.3802034058656575,0.3796112046532986,0.379126512200123,0.3856551724137931,0.386986301369863,0.0,2.315807162219917,61.3365978243986,197.511121399582,327.1769206755257,fqhc6_80Compliance_baseline,3 -100000,95758,41513,390.26504312955575,7315,75.26264124146286,5706,59.1491050356106,2305,23.768249128010197,77.32698317968122,79.68704744929525,63.31555014592704,65.06137222162238,77.03605774882412,79.39400950706164,63.207755454829496,64.95509790298509,0.2909254308571007,293.03794223361024,0.1077946910975455,106.27431863728988,90.48292,63.36556195632991,94491.23832995676,66172.6038099479,235.50333,143.21771772812232,245511.68570772157,149137.89733298766,269.95177,128.14666791290136,279320.4327575764,131784.71478838674,4163.92481,1870.7027754978344,4318583.136656989,1923773.2675054152,1424.775,619.7465281831311,1475458.729296769,634768.1636867226,2282.81796,960.2096358748024,2356242.778671234,978573.4474796808,0.38033,100000,0,411286,4295.056287725308,0,0.0,0,0.0,19679,205.0481421917751,0,0.0,25139,259.9678355855386,2034466,0,73051,0,0,3655,0,0,57,0.5952505273710813,0,0.0,1,0.0104429917082645,0,0.0,0.07315,0.1923329739962664,0.315105946684894,0.02305,0.3227650727650727,0.6772349272349273,25.241272984020394,4.5547952207925615,0.3240448650543288,0.1957588503329828,0.237819838766211,0.2423764458464773,11.0383947695176,5.405219036612453,24.67946651671192,13020.071795367356,64.32315593807034,13.127710563547636,20.68772616320576,15.317270186525048,15.190449024791915,0.544689800210305,0.7672336615935542,0.7036235803136831,0.5770081061164333,0.1207519884309472,0.6805755395683454,0.902439024390244,0.8448275862068966,0.7356687898089171,0.1295681063122923,0.5009267840593142,0.7005347593582888,0.6638946638946639,0.5292425695110259,0.1182994454713493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0044107805560625,0.0067291882345776,0.0090011378413524,0.0113399440630561,0.0136754747721602,0.0156524044540522,0.0175674985964375,0.0196130535654058,0.0219140225179119,0.0240237778005534,0.0261250718567791,0.0282063669911495,0.0304999227719713,0.0324943263874561,0.034254360585269,0.0362977533906201,0.0385760370097607,0.0406996684577569,0.0423885074953382,0.0565693049669081,0.070676109675597,0.083788515773251,0.0969315350734266,0.1089373992052365,0.1243259816878475,0.1382225050376498,0.1507202248506851,0.1626659256567556,0.1745052161593611,0.188600131503778,0.2014708749431362,0.2142756091456182,0.2255914731566391,0.2363576304778683,0.2482344985088857,0.259070136429154,0.2696372239747634,0.2792489714272725,0.2872885729029298,0.2959212050984936,0.3033570892723181,0.3105493540848646,0.3176002787021131,0.3239247966489698,0.3305749397887976,0.3368044664701085,0.3429974489795918,0.3487532936152538,0.3531675195366734,0.3532775829511734,0.3534448289649657,0.3539920413174159,0.3544069073419482,0.3555125148986889,0.3550969605703925,0.354942733236962,0.3556935340426232,0.3571734622174233,0.3585469244665438,0.3593101245608431,0.3612576869668716,0.362708289390424,0.3649723607927733,0.3658011797698481,0.3664926958483044,0.3675123124498912,0.3698565198154351,0.3722151720248167,0.3739892451702848,0.3756850566313482,0.3772037283621837,0.3828593050387841,0.3866026520347508,0.3884328710255684,0.3886509635974304,0.392193022898417,0.3914460285132383,0.3921678321678322,0.3946957878315132,0.0,1.7386351179554165,61.89907586966679,220.28562208104952,324.6877859923087,fqhc6_80Compliance_baseline,4 -100000,95755,42004,393.9011017701426,7149,73.42697509268446,5603,57.8977599080988,2241,22.9857448697196,77.39144353273707,79.72862563750334,63.36142006586866,65.08650106936155,77.1146285058702,79.45192731190903,63.25894711371912,64.98658424794594,0.2768150268668705,276.6983255943103,0.1024729521495402,99.91682141560432,89.969,62.98346916080291,93957.49569213096,65775.64530395584,235.87072,144.8850635288196,245699.61881886065,150680.396354049,273.18718,131.00376181778398,280905.6028405827,133465.05305599127,4014.2107,1811.454151139156,4148446.169912799,1848346.1371967243,1340.75423,583.259784869391,1384260.759229283,593295.3637828794,2193.64128,923.3150245550148,2251939.136337528,932834.5456592044,0.38406,100000,0,408950,4270.795258733226,0,0.0,0,0.0,19708,205.17988616782412,0,0.0,25444,261.3858284162707,2037438,0,73088,0,0,3611,0,0,51,0.5221659443371104,0,0.0,1,0.0104433188867422,0,0.0,0.07149,0.1861427901890329,0.3134704154427192,0.02241,0.3166028265750891,0.6833971734249108,25.38814212226177,4.5015447929408525,0.3233981795466714,0.2147064072818133,0.242013207210423,0.2198822059610922,11.056562874996027,5.524589123191713,24.003825580384028,13159.719336441967,63.05634417179009,13.906321618883272,20.5081532238618,15.108732300307828,13.533137028737205,0.5509548456184187,0.7896924355777224,0.6854304635761589,0.56047197640118,0.109577922077922,0.7005689900426743,0.9483695652173914,0.8319148936170213,0.7161716171617162,0.1056603773584905,0.5008339289969026,0.7197604790419162,0.6341281669150521,0.5156695156695157,0.1106514994829369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002014822614612,0.004611003577328,0.0068281893630405,0.0092727069601161,0.0115097965450275,0.0136389544825339,0.0159262278377827,0.01838512865509,0.0206764805034273,0.0224993861013342,0.0247950819672131,0.0270744418910045,0.0290893024116069,0.0312155861799244,0.0334302325581395,0.0352966696967192,0.0376411413431584,0.0397531632441402,0.0419837013014011,0.043876828201175,0.0589113303063514,0.0736094253547064,0.08669562115776,0.0991313127063921,0.1117999978911629,0.1276609244630563,0.1413572587572778,0.1537790450251085,0.1662323514962513,0.1775974443634492,0.190726865607372,0.204123131503234,0.2165708260411118,0.2280450626659527,0.2388591408371724,0.2501604656824771,0.2610460125093374,0.2711123595505618,0.280314282150996,0.2893505007153076,0.2980991582647304,0.3063386457444196,0.3135839859924756,0.3205503091893965,0.3272791287773016,0.3337274608335797,0.3394045534150613,0.3445887445887446,0.3504442890080568,0.3556059786551983,0.3563403969054827,0.3566105703129296,0.3569759585608918,0.3573108952617374,0.3582698787312048,0.3575632500191087,0.3573733156196622,0.3582405326947993,0.3587711958470654,0.3601450440312237,0.3611815296790791,0.3628976315528689,0.3649509237268543,0.3655254526665768,0.3684987178866902,0.3704266694622077,0.3714481733462924,0.3735735735735735,0.3760031109697034,0.3772770853307766,0.3813042081593318,0.3823687318801675,0.383298326013621,0.3827075174690931,0.386432350718065,0.3843872345473959,0.3914828897338403,0.3878172588832487,0.3898678414096916,0.3910207214121258,0.0,2.3893996102076387,61.83519460397131,207.36231572908704,321.96005777085577,fqhc6_80Compliance_baseline,5 -100000,95729,41576,390.9891464446511,7190,73.99011793709326,5611,58.05973111596277,2283,23.49340325293276,77.37264048070351,79.73284538666447,63.34029949113111,65.08219695591032,77.08900345714042,79.44716890420074,63.23703237885535,64.98058696850376,0.283637023563088,285.6764824637281,0.1032671122757662,101.60998740656169,90.43386,63.365372911105815,94468.61452642355,66192.4525599409,237.42693,145.05322275963238,247461.2499869423,150966.24090884932,272.86098,130.1812230610138,281305.4769192199,133086.43325748146,4073.19137,1825.7172279647689,4220340.858047196,1872594.4676793555,1402.72879,608.3682064358085,1449944.5935923285,620143.1921735402,2255.5394,942.4849931624302,2323725.41236198,956801.1431646284,0.3793,100000,0,411063,4294.0279330192525,0,0.0,0,0.0,19804,206.2802285618778,0,0.0,25431,261.9268978052628,2033148,0,73018,0,0,3620,0,0,42,0.4387385222868723,0,0.0,0,0.0,0,0.0,0.0719,0.1895597152649617,0.3175243393602225,0.02283,0.3173953242636376,0.6826046757363624,25.23770516261205,4.618827946421343,0.3213330957048654,0.2062021030119408,0.2313313134913562,0.2411334877918374,11.132499911413634,5.50324153456177,24.52714013705304,12959.234615606116,63.43783453691209,13.622564560863616,20.35758219288763,14.514416860731313,14.943270922429535,0.5405453573338086,0.7545375972342264,0.6932889628397116,0.5785824345146379,0.1175166297117516,0.7112573099415205,0.9184210526315788,0.8518518518518519,0.7551724137931034,0.1390977443609022,0.4855055385340561,0.6743886743886743,0.6433260393873085,0.5277777777777778,0.1122355105795768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020962025316455,0.0044895766825778,0.0070401817868265,0.0090286805329866,0.0112660016878666,0.0135899993892135,0.0159014922938921,0.0179845467628836,0.0201882877265432,0.0223359606919848,0.0242169477623417,0.0264881624607297,0.0288323119318882,0.0309577754891864,0.0330547818012999,0.0349428471030819,0.0370642619760014,0.0389266896236982,0.0407005144727953,0.0425254913397144,0.0573114069433568,0.0709091479811243,0.0841502668358199,0.0969162532582191,0.1090765338393421,0.1247674221921515,0.1384829136881403,0.151347152464459,0.1628349012782043,0.1740351930686168,0.1881784114403859,0.2004110996916752,0.2127058004741294,0.224078914272591,0.2353310081528017,0.2463164425143464,0.2567505720823798,0.2664324799027224,0.2757798123452302,0.2838237655099653,0.2923333410517054,0.3003792046066337,0.3071800158792231,0.3140566298176755,0.3210828428272608,0.3275630189889817,0.3341686505450444,0.3398340037680126,0.3459769668234166,0.3511914977886329,0.3515472389497366,0.35240167456208,0.3530772594546557,0.3537009150932468,0.354802192564347,0.3542175335145345,0.3549400841203079,0.3559735169142594,0.3573030245973194,0.3586200732862633,0.3603628934000637,0.3615186869685584,0.3625703958981255,0.3627707955283733,0.3639234403625494,0.3651978698966273,0.3662236924656362,0.3678121168296287,0.3693586281866957,0.3718171753914281,0.3718204941860465,0.3746153029820651,0.3773775671406003,0.3824088868599254,0.3859863052246506,0.3841787868038311,0.3882962511429442,0.3900322841000807,0.3908741066520066,0.3964858670741024,0.0,2.1920033046880887,60.516960604043724,221.9219567993466,313.7193957613033,fqhc6_80Compliance_baseline,6 -100000,95756,41774,392.62291657963993,7032,72.48631939512929,5511,57.11391453277079,2203,22.68265173983876,77.33281654085012,79.6975876410056,63.319784280511655,65.07034499269345,77.0646501536767,79.42715907914875,63.22198139330274,64.97355395365003,0.268166387173423,270.4285618568463,0.097802887208914,96.79103904342412,90.35686,63.30717816084618,94361.10530932788,66112.5618873451,235.43135,144.01131354552797,245397.49989556792,149928.7163873463,273.02321,129.3872724868404,282038.03417018254,132754.1227436775,4013.71612,1790.9205750949227,4159329.639918125,1838330.5316188016,1358.0815,587.2305902302268,1405314.1735243744,600396.47906479,2177.55878,900.4449992606355,2244096.098416809,916595.6788730376,0.38091,100000,0,410713,4289.141150423994,0,0.0,0,0.0,19618,204.3840594845232,0,0.0,25424,262.49007895066626,2034680,0,73064,0,0,3467,0,0,53,0.5534901207235056,0,0.0,0,0.0,0,0.0,0.07032,0.1846105379223438,0.3132821387940842,0.02203,0.3166080605896673,0.6833919394103327,25.324022914696,4.549458854296085,0.3360551624024678,0.1979677009617129,0.2304481945200508,0.2355289421157684,11.077442222298751,5.495347514562639,23.318516413556026,12972.704338697817,61.95428447707677,12.831803498868714,20.820770334103752,14.01124149405146,14.290469150052829,0.5494465614226093,0.7717690192483959,0.6976241900647948,0.5763779527559055,0.1248073959938366,0.7070854638422206,0.9154929577464788,0.8744493392070485,0.7163636363636363,0.1719298245614035,0.4973442781265089,0.7024456521739131,0.6402002861230329,0.5376884422110553,0.1115498519249753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022798893493702,0.0043410789812664,0.0066402680475175,0.008782183551702,0.0110385382330199,0.0132618970013037,0.0156130492866539,0.0177845839714139,0.0197235230363387,0.0219739711860415,0.0241444360146814,0.0261631190380843,0.0284709583885992,0.0303910361376298,0.0323758821344558,0.0344809765475612,0.0368467927342018,0.0389672384628955,0.0408729828647479,0.042835118129922,0.0572177217304159,0.0712141026311659,0.083949374521585,0.0968409986859395,0.1092267802183903,0.1251929705838814,0.1384726331753152,0.1514096874101982,0.1633269957915874,0.1751994680851064,0.1890288544358311,0.2022221500979087,0.2138686210758674,0.2253307095222477,0.2356900875533459,0.2476719852070023,0.2573427665937597,0.2678762366765338,0.2768324384457334,0.285079481423794,0.2932860963495536,0.3007107645109542,0.3080322760287688,0.3146551207167444,0.321511076526518,0.3276228091829178,0.333684263297739,0.340083807777056,0.3457737894545737,0.3507693527918781,0.3519162823313644,0.3524142872891632,0.3533752892701924,0.3544212172100295,0.3550093109869646,0.3547966431935687,0.3542201922161956,0.3554693280281482,0.3567030410837067,0.358418390147114,0.3605301693387902,0.3616206889713028,0.3618679494989811,0.3634713225900441,0.3650510265627639,0.3663578793112472,0.3672364917103342,0.3694490976326685,0.3713065273414057,0.3725035948234542,0.37487984620314,0.3770097751188505,0.3766989063784057,0.3774622079706825,0.3756833176248821,0.3794166469053829,0.378820293398533,0.3732551082338661,0.3713733075435203,0.3744697261858851,0.0,1.5682976441856444,61.20070434112203,205.8318794469594,315.12076304733955,fqhc6_80Compliance_baseline,7 -100000,95776,41654,390.4318409622453,7163,73.54660875375878,5607,57.91638823922486,2278,23.37746408286001,77.34910350822409,79.67750192902243,63.34642956891118,65.06679125534377,77.07121222504355,79.40036629592498,63.243891045360535,64.96721256537836,0.2778912831805371,277.13563309744416,0.1025385235506419,99.57868996541208,90.06162,63.05914647562852,94033.59923154028,65840.2381344267,234.31375,143.51328959949498,244031.3439692616,149226.31932790577,277.73606,132.74882383079202,285701.0942198463,135324.5581400068,4025.81607,1815.8239702635424,4163876.931590378,1856726.5628102133,1373.74671,598.0846117638135,1420018.9817908453,610306.1903418145,2240.72646,929.0757683843252,2302698.0454393583,939172.8064513918,0.38039,100000,0,409371,4274.254510524557,0,0.0,0,0.0,19632,204.3309388573338,0,0.0,25889,266.05830270631475,2036505,0,73175,0,0,3568,0,0,33,0.3445539592382225,0,0.0,0,0.0,0,0.0,0.07163,0.1883067378217092,0.3180231746474941,0.02278,0.3160973016084009,0.6839026983915991,25.21360165711864,4.495775837971969,0.333868378812199,0.2079543427858034,0.2270376315320135,0.2311396468699839,11.20245691402155,5.761416011343692,24.158560054915604,13053.317291112997,63.65520402789265,13.755942190611188,21.34368815376079,14.32515269911299,14.2304209844077,0.561976101301944,0.7753001715265866,0.7072649572649573,0.6072270227808326,0.1157407407407407,0.7139874739039666,0.9067357512953368,0.8678861788617886,0.7250859106529209,0.1417910447761194,0.5095923261390888,0.7102564102564103,0.65,0.5723014256619144,0.1089494163424124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872974724562,0.0047841555255982,0.0072333647827454,0.0096494702948674,0.0118965306869483,0.0141292397898937,0.0162355531095211,0.0185130377098535,0.0207828832418845,0.0229072456057784,0.0251403515961152,0.0274288880679719,0.0293915134574079,0.0315671380637724,0.0336416030022785,0.0358500309853336,0.0380790761684999,0.040015346647587,0.041667965543398,0.0436534796780139,0.0575755045814113,0.0716758531968079,0.0851463141008838,0.0981976774735957,0.1104999156971842,0.1258361424903044,0.1389778051003752,0.1519859626734726,0.1639524460001707,0.1756071952774295,0.1894003810179853,0.2026603222666811,0.2138484456381093,0.225644166411479,0.2365731010882362,0.2485405704790916,0.2597301128436373,0.2697000708494056,0.2785380355846042,0.2876428424210502,0.2959835269075933,0.303409702557862,0.3107375399550136,0.3171389528193326,0.32414044466043,0.3304140814841312,0.3355087622602748,0.34142271140666,0.3476845245816578,0.3532452765327304,0.3537562739489449,0.3543298400441257,0.3549060542797494,0.3549880633726398,0.3560773932570901,0.3560579354739827,0.3560796994626468,0.3570724008680213,0.3579039181816627,0.35765548098434,0.359155855128518,0.3593970048596648,0.3606877850881803,0.3621553603127879,0.3636627766209869,0.3642643273625046,0.3651811385853939,0.3675577736100957,0.36952820148989,0.3704640333975594,0.3724813690311896,0.3742630507021117,0.3771362734430007,0.3757804671240268,0.3804191788687913,0.3819351705718101,0.3819292201691199,0.3819689119170984,0.3825352112676056,0.3810865191146881,0.0,2.436729875997146,63.3095783370601,213.27556959894983,315.3806481578352,fqhc6_80Compliance_baseline,8 -100000,95667,41562,391.6083916083916,7242,74.5293570405678,5651,58.50502263058317,2276,23.44591133828802,77.31532774038504,79.70851172232857,63.31028192710126,65.07673759694353,77.03772723263747,79.42768728999926,63.20913832723296,64.97653777291228,0.2776005077475787,280.824432329311,0.1011435998682941,100.19982403125027,88.84414,62.25588035047943,92868.11544210649,65075.60637469496,236.49258,144.4293779039224,246648.614464758,150415.63747574648,271.01955,129.30304559750724,279439.4932421838,132153.27265690142,4052.68627,1812.8868166527127,4200581.046755935,1859835.0190910725,1356.09511,589.828952198886,1404411.907972446,603628.7743726815,2239.95596,926.4433477129112,2310242.2779014707,943342.4052299816,0.37961,100000,0,403837,4221.277974641203,0,0.0,0,0.0,19781,206.1839505785694,0,0.0,25303,260.63323821171355,2039492,0,73195,0,0,3592,0,0,42,0.4285699352963927,0,0.0,1,0.0104529252511315,0,0.0,0.07242,0.1907747424988804,0.3142778238055785,0.02276,0.321451972218582,0.6785480277814179,25.2290780393953,4.567458654117263,0.3387011148469298,0.2019111661652805,0.2302247389842505,0.2291629800035391,11.004521529929407,5.416952580828545,24.22516240895037,12949.61236042629,63.5813660437358,13.25388017382022,21.426712590123778,14.672743164829372,14.228030114962442,0.5390196425411432,0.761612620508326,0.6781609195402298,0.5580322828593389,0.1181467181467181,0.6983321247280638,0.9395604395604396,0.8521939953810623,0.6828478964401294,0.1501831501831501,0.4875936329588015,0.6782496782496783,0.6272788656313302,0.5191532258064516,0.1095890410958904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020767064448811,0.0043289604412092,0.0064645111530577,0.0087578485359559,0.0110575358072916,0.0131194295900178,0.0151872137735483,0.0170983820885765,0.0192567291172379,0.0214125526097508,0.0235680221527101,0.0258962506420133,0.0280026747595288,0.0297590833213115,0.0316893412333037,0.0336339566440509,0.0359847896138344,0.0379665379665379,0.039911792546054,0.0418460191564092,0.0566270347075662,0.0700764317872474,0.0833000986545202,0.0962908402167622,0.1088105866337417,0.1249655990007832,0.1382781063204051,0.1510352319686448,0.1633590886259925,0.174175753412896,0.1878644177399364,0.2011369173298684,0.2132967607105538,0.2246222193042926,0.2356257915313033,0.2464205307928621,0.256913729169459,0.2670028023814615,0.2771784797765312,0.286215435410648,0.294101976046517,0.3023133297431454,0.3103578957341481,0.3166346615458473,0.3225116380829677,0.3291240704887102,0.3359934853420195,0.340981435738114,0.3459699674798854,0.3511588572636697,0.3516341279257901,0.3528965830932723,0.3536437475322917,0.3538263237168346,0.3540184021677634,0.3535692916647489,0.3529626282325707,0.3550140396394029,0.3562217813654398,0.3565553250840426,0.3569982377863597,0.3576165495397406,0.3588601210490921,0.3614114585670061,0.3628483121649684,0.3642881440196771,0.3636024238247035,0.3659939615445733,0.3679406123463806,0.3693142972049065,0.3694108970222181,0.3706766917293233,0.3723349929784246,0.3769206891199751,0.3808702319340617,0.3857194548305391,0.3888717632552404,0.3901699029126214,0.3951410220608768,0.39258114374034,0.0,2.213357482772002,60.915645637830494,216.65731361415124,321.3117555650728,fqhc6_80Compliance_baseline,9 -100000,95625,41651,392.2300653594771,7179,73.84052287581699,5570,57.65228758169935,2235,22.954248366013072,77.3146043072854,79.73501809936143,63.296484254502126,65.08346756625205,77.04083871850412,79.46308818869629,63.19558432945557,64.98659487237904,0.2737655887812877,271.9299106651363,0.1008999250465549,96.87269387301,89.72898,62.887187044369526,93834.2274509804,65764.378608491,237.26323,145.22079853185775,247530.58300653595,151277.05990259632,272.38795,129.53843170326996,281910.4209150327,133134.29902837664,3988.26128,1787.8638153492975,4130109.270588236,1829040.026509069,1368.71935,592.6992997902864,1414822.745098039,603307.218519199,2198.35632,913.5123652505208,2260511.226143791,920472.8602042338,0.38036,100000,0,407859,4265.192156862745,0,0.0,0,0.0,19833,206.7764705882353,0,0.0,25313,261.7516339869281,2034023,0,72937,0,0,3560,0,0,52,0.5437908496732026,0,0.0,0,0.0,0,0.0,0.07179,0.188742244189715,0.3113246970330129,0.02235,0.3181938559322034,0.6818061440677966,25.367371326951627,4.5291046332011735,0.3324955116696589,0.2053859964093357,0.2281867145421903,0.233931777378815,11.078590931378564,5.637754695772935,23.738504729167403,12985.314051967594,62.77445469796493,13.396406272601071,20.918451091301247,14.14346908915292,14.3161282449097,0.5552962298025135,0.7596153846153846,0.7008639308855291,0.5979543666404405,0.1273983115886416,0.7197406340057637,0.907859078590786,0.869281045751634,0.7516778523489933,0.1564885496183206,0.5007173601147776,0.6890322580645162,0.6453697056712132,0.5508735868448099,0.1200768491834774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899293769568,0.0046242305625133,0.0068116295123238,0.0090331758370167,0.0112813313802083,0.0133632104298227,0.0155037178323354,0.0176728981509858,0.0199343363574065,0.0219147781384727,0.023876923076923,0.0257627118644067,0.0279820996862301,0.0301272474370202,0.0321841453344343,0.0342239133132056,0.0363056136933501,0.0382894340680447,0.0405364630479341,0.0425010429703796,0.0571112016974486,0.0697053185137074,0.0830244158571803,0.0953954986630734,0.1074644512240179,0.122855508959207,0.1365167047325649,0.1494847008920483,0.1612803149437829,0.1732310535250005,0.18703537865628,0.1999197892842819,0.2138451815368522,0.2247907445549761,0.2358575837742504,0.2469145394006659,0.2581593418876022,0.2679782750771866,0.2775322388229279,0.2864598268050697,0.2951516344561655,0.3024363415090807,0.3098124644819094,0.3166206979254107,0.3233800626837386,0.3292741547828873,0.3356652108075638,0.3410727462405536,0.3465149102021261,0.3524402962415345,0.353208228368202,0.3541388472074999,0.3550229920726718,0.3549400590722187,0.3563435893615436,0.356627135307853,0.3566072506592952,0.3575811559778306,0.3589681898640636,0.3603013723203875,0.3616537681268315,0.3612126721871974,0.3632576154087721,0.3640308690303098,0.3655702280912365,0.3671346853874155,0.3675520255074444,0.3695270355037009,0.3718681010617794,0.3739582506548138,0.3774142240399909,0.3785938247329542,0.3821065989847715,0.3858225522468039,0.3865419147528589,0.3873332532147578,0.3880620397932007,0.3893366398016119,0.3912319644839068,0.3819253438113948,0.0,2.2627332816023125,61.46605140459209,207.5361685810574,319.93793814044056,fqhc6_80Compliance_baseline,10 -100000,95645,41542,390.558837367348,7170,73.78326101730357,5569,57.640232108317214,2249,23.13764441424016,77.29129418892526,79.6916052234635,63.29829466637945,65.06996587619578,77.01343685295258,79.41325757477001,63.19640230354977,64.97043447840215,0.2778573359726835,278.34764869348305,0.1018923628296804,99.5313977936263,89.75472,62.9111370551858,93841.51811385856,65775.66736911057,235.43676,143.9603727789112,245495.31078467247,149853.73284427956,268.77526,128.65879948085814,277269.67431648285,131562.4903618526,4017.53223,1798.6789893106863,4160336.7870772127,1840452.5895872104,1316.95489,572.0218854897754,1358133.6400230017,579281.6304979617,2211.869,922.3739150128598,2277267.3741439697,934279.5906327576,0.38037,100000,0,407976,4265.523550629934,0,0.0,0,0.0,19690,205.24857546134143,0,0.0,25154,259.2608081969784,2034780,0,73017,0,0,3594,0,0,38,0.3763918657535679,0,0.0,1,0.0104553296042657,0,0.0,0.0717,0.1885006703998738,0.3136680613668061,0.02249,0.3199734571997346,0.6800265428002654,25.13189284890281,4.53819464643455,0.3330939127311905,0.2034476566708565,0.2314598671215658,0.2319985634763871,10.944026370931578,5.52535673680116,23.92466738601348,13002.06268962634,62.695234907306656,13.103240630735788,21.081002574210498,14.28360175212782,14.22738995023256,0.5442628838211528,0.766107678729038,0.6964959568733153,0.5640031031807603,0.1114551083591331,0.7138664710198093,0.9202279202279202,0.8765957446808511,0.7419354838709677,0.11787072243346,0.4893009985734665,0.69693094629156,0.6353790613718412,0.5148514851485149,0.1098153547133139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0046030619486971,0.0067801427077941,0.008992988517427,0.0111406159387113,0.0133727147731323,0.015325162632298,0.0176343251577593,0.0200290364796335,0.0222595376077652,0.0241713840347854,0.0262414625378729,0.0282290005658145,0.0303361292582898,0.0323739521823512,0.0344417438072089,0.0366247979107076,0.0386871696898588,0.0409010508792009,0.0429202894018056,0.0571828660403582,0.0709437519639677,0.0839808475786467,0.0971191596408685,0.1087211204576398,0.1239904736702831,0.137674774133959,0.1510929311006008,0.1635428583647852,0.1744937619446412,0.1881260715325476,0.20201210729795,0.2146154013629139,0.2264659184232137,0.2363918957648978,0.2480865224625624,0.2589869372339118,0.268389348646062,0.2776591879371423,0.2859025636911652,0.2941605501400819,0.3022874861054233,0.3093997252096461,0.3166854620054226,0.323851815803881,0.3304942477657631,0.3366928660072957,0.3421260645621908,0.347867839808975,0.3532738685166832,0.3536233447503978,0.3538204834728408,0.354602717283846,0.3556061023137215,0.3560496550079728,0.3546710141806884,0.3537228969288484,0.354674192909487,0.3558285370672622,0.3575070923259238,0.3588863966222457,0.3607020616094882,0.3618686069809132,0.3634440543703303,0.3647999227221135,0.365626882480815,0.3666381033990288,0.370089680434508,0.3710578418894074,0.3722373478539398,0.3738699463081088,0.3744323948928896,0.3736885610733134,0.3766895805978218,0.3789936866271283,0.3768905021173623,0.3778996865203762,0.3776384535005224,0.3737345331833521,0.3732612055641422,0.0,2.286163521948268,60.00863236414309,209.52628489865572,322.3923987738912,fqhc6_80Compliance_baseline,11 -100000,95619,41483,389.7342578357858,7123,73.10262604712453,5585,57.69773789727983,2256,23.17531034627009,77.27514686010801,79.68620411405055,63.27600815666828,65.05630753505524,76.99000282703534,79.40035380379274,63.17142735162712,64.95389264428641,0.2851440330726689,285.85031025781404,0.1045808050411665,102.41489076882716,90.12278,63.121111642575,94251.95829280792,66013.14764071471,235.27124,143.8207162370649,245320.19786862444,149681.01198873276,274.17047,131.45886624505465,281442.2029094636,133511.045973077,4019.60209,1812.0917217299627,4158982.681266276,1850330.249981658,1344.70854,584.4514528831903,1389152.3651157196,594073.2222369851,2223.05938,930.216605493804,2286986.8540771184,941738.5826422364,0.38012,100000,0,409649,4284.17992240036,0,0.0,0,0.0,19631,204.5618548614815,0,0.0,25553,261.9772221002102,2029589,0,72876,0,0,3586,0,0,52,0.5438249720243885,0,0.0,0,0.0,0,0.0,0.07123,0.1873881932021467,0.3167204829425804,0.02256,0.3218804101744573,0.6781195898255427,25.30512733792456,4.553447102817849,0.3253357206803939,0.211101163831692,0.2327663384064458,0.2307967770814682,11.053523009954564,5.458473532099839,24.140819806475925,13039.16313753327,63.00389485193311,13.789348064398126,20.50319802254791,14.51282593704668,14.198522827940383,0.5532676812891674,0.7718405428329093,0.6923500275178867,0.5853846153846154,0.1249030256012412,0.7015250544662309,0.9108635097493036,0.8512035010940919,0.7166666666666667,0.1340996168582375,0.5047528517110266,0.7109756097560975,0.6389705882352941,0.546,0.122568093385214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0046116578656639,0.0068286743442747,0.0092432706957846,0.011472858755683,0.0137485742219325,0.0156014194232573,0.0181927698543149,0.0202427080244957,0.0228436271297509,0.0249966664273332,0.0271311458568757,0.029209020947364,0.0313244070626797,0.0330541815966377,0.0352868152899187,0.0372934762329235,0.0394022162448462,0.0413432121376095,0.0433200196055938,0.0581208193979933,0.0726994572165056,0.0850990073008036,0.0977603607020205,0.1103811052898428,0.1256261715895491,0.1389812856672228,0.1518058931388853,0.163511242869527,0.1757593344940994,0.1886024569812379,0.2020409048517578,0.2150292671760717,0.227331045146009,0.2375082763186934,0.2481057660259971,0.2587480690442608,0.268882618510158,0.2784311493140547,0.2876526614506141,0.294848136671193,0.3032429134597334,0.3111675608945444,0.3187723072116136,0.3247020439964452,0.3310236648386937,0.3370978266325352,0.3431463797126209,0.3481915501740892,0.3533025300199912,0.3541413322523983,0.3544169220997984,0.3544704419577257,0.3547844740122329,0.3551549463647199,0.3544923974811856,0.3542648575735936,0.3559528513104175,0.3571660652906271,0.3581502600861591,0.3581244947453517,0.359166517972204,0.3606653908435154,0.3608154834074273,0.3619174112533204,0.361419300816412,0.3617386331140978,0.363047052871237,0.3666478116382662,0.3693888156053883,0.3715083798882682,0.3744436699018714,0.3730586370839936,0.3759847036328871,0.3781113433403002,0.3794433064224605,0.3777017571139792,0.3751803751803751,0.3755947383151413,0.3737334372564302,0.0,2.76245805024226,60.14454129741095,212.79682657547943,319.30904299863903,fqhc6_80Compliance_baseline,12 -100000,95691,41496,390.4128914944979,7137,73.50743539099811,5556,57.549821822323935,2271,23.408680022154645,77.28391542799022,79.68052951804391,63.28504443165552,65.0592272282882,77.00925090623788,79.40400835126374,63.18545871396915,64.96108755747177,0.2746645217523422,276.5211667801708,0.0995857176863737,98.1396708164226,88.6589,62.15762940161663,92651.24201858064,64956.60971420158,234.80214,143.5367279778651,244878.0554075096,149502.92919696218,271.71881,129.22534733964295,280397.1115360901,132346.2114184834,4021.98029,1791.390706166048,4168244.0354892304,1837428.1469605104,1368.23077,592.3485292345872,1412787.1691172628,602065.3926389127,2241.68832,920.3977998065308,2312382.60651472,936576.651091748,0.37899,100000,0,402995,4211.4200917536655,0,0.0,0,0.0,19655,204.8782017117597,0,0.0,25238,260.1916585676814,2040283,0,73260,0,0,3426,0,0,41,0.4284624468340805,0,0.0,0,0.0,0,0.0,0.07137,0.1883163144146283,0.3182009247583018,0.02271,0.3223262032085561,0.6776737967914439,25.29804570388155,4.536921076502909,0.3275737940964723,0.2125629949604031,0.2183225341972642,0.2415406767458603,11.042952621393251,5.502836352466539,24.047166610863822,12935.540937842548,62.59931757848454,13.82419625968811,20.47477389055972,13.5835804483383,14.7167669798984,0.5433765298776098,0.7925486875529213,0.6785714285714286,0.5770816158285244,0.1102831594634873,0.7121326299924642,0.9157608695652174,0.875609756097561,0.7316176470588235,0.1805054151624548,0.4904232679120359,0.7367773677736777,0.6212765957446809,0.5324123273113709,0.092018779342723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024827222796457,0.0049801200908795,0.007035747281643,0.0092783609922663,0.0114363623414018,0.0134157770352864,0.0154112907338467,0.0176798627282755,0.0196266939401687,0.0220860906799975,0.0240371791452079,0.0262422424068061,0.0282668422839855,0.0303814166314552,0.0327631945663057,0.0347370162774824,0.0366805168429887,0.0385829060183935,0.040607447472436,0.042478687704525,0.0571264427847704,0.0708011850797206,0.0839971035481535,0.0964266172818721,0.1089886336052684,0.1239176916400279,0.1372946685496459,0.1496213936547493,0.1611706733081782,0.1728490468830499,0.1872123478879463,0.2002686570397894,0.2119595396491839,0.2235886765591633,0.2348960744120434,0.2460124537977423,0.2565673276844999,0.2661550251312913,0.276411491953814,0.2849588179961915,0.2937199972171332,0.3015128415620968,0.3087083452007975,0.316244038967435,0.3230594997442704,0.3293943322837562,0.3348043025850613,0.339936305732484,0.3457215819970703,0.3512193189770131,0.3526826637907791,0.3528342172325918,0.3532081641858367,0.3536444328794055,0.3545985227543483,0.3537053530296981,0.3528384833912615,0.353800111816358,0.3551014110103382,0.356405292029687,0.3576125251992388,0.3573703910169626,0.3579659583465482,0.3589471545633084,0.3592575473763592,0.3587591432931642,0.3610840263837109,0.3640112940579296,0.3668526234023021,0.3703541409393299,0.3720642768850433,0.3714361843858246,0.3722613951145807,0.3739763421292084,0.3732156273478587,0.3770472347495846,0.3787855495772482,0.3883554647599591,0.3898591549295774,0.3912534166341272,0.0,2.0049209640067884,58.989170421232174,214.02516857548272,320.5752780969241,fqhc6_80Compliance_baseline,13 -100000,95647,41745,392.10848223153886,7056,72.45391909835122,5500,56.83398329273265,2206,22.59349482994762,77.35161970545354,79.75831041443101,63.31721993396855,65.0945362669608,77.08147064608312,79.48978629500279,63.217080691409485,64.99828873730085,0.270149059370425,268.5241194282213,0.1001392425590665,96.24752965994789,90.30516,63.20763968375775,94415.04699572384,66084.28877409406,236.25698,145.10525787268986,246364.3919830209,151065.34847909966,272.25586,130.04660320297444,280718.76796972204,132915.27476484753,3944.42752,1769.4008409898308,4079526.801677,1805648.8358981616,1342.95612,581.912728675548,1387698.0877602017,592263.3783240536,2171.8822,905.2336364363232,2227472.76966345,909369.8150892016,0.38146,100000,0,410478,4291.593045260175,0,0.0,0,0.0,19738,205.67294321829223,0,0.0,25231,259.85132832185013,2033680,0,72878,0,0,3698,0,0,64,0.6691271027841961,0,0.0,1,0.010455110981003,0,0.0,0.07056,0.1849735227808944,0.3126417233560091,0.02206,0.315945545221728,0.684054454778272,25.30610533203117,4.518041884097921,0.3296363636363636,0.2127272727272727,0.2250909090909091,0.2325454545454545,11.143440898365364,5.692145034423152,23.43580775570387,13026.264814888214,61.86779928724831,13.711033457730997,20.518220739638483,13.715117140659933,13.9234279492189,0.5554545454545454,0.7700854700854701,0.7142857142857143,0.5807754442649434,0.1094605160281469,0.7170767004341534,0.9272237196765498,0.8673913043478261,0.7439446366782007,0.1259541984732824,0.5012141816415736,0.6971214017521903,0.6622320768662232,0.5310853530031612,0.1052114060963618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002624086888684,0.0044617958728388,0.0069620638561308,0.0091949118101276,0.0112400695765392,0.0134956202892646,0.0157038698822209,0.0177676118900041,0.020122699386503,0.0222679736553687,0.0245606475639407,0.0265123878618478,0.0287734247167423,0.0309287916121117,0.0329814485807544,0.0352080617460218,0.0372093987417211,0.0393663185432801,0.0413779470212456,0.0435449056839866,0.0586747755938012,0.0723739319819065,0.0850844966936076,0.0972935432275444,0.1094986807387862,0.1251428934332528,0.1385553042610348,0.1510387243250157,0.162984282550314,0.1749291176217888,0.1878693757818903,0.2012633130004225,0.2136044941862997,0.2244665593764027,0.2353653835563632,0.2461441227671394,0.2573647742512293,0.2671937114992623,0.2765312379351849,0.2853411837478092,0.2931818444770973,0.3012008746389775,0.3096170454411016,0.3171488469601677,0.3239761537620961,0.3306570781203822,0.3368284239599085,0.3426001219760113,0.3474410848404152,0.3528156490812092,0.3538148990272713,0.3545420807389386,0.3555608746462413,0.3563278158130398,0.3563117616464819,0.3563804535918286,0.3568591457914642,0.3577400016424407,0.3590300831650638,0.3603613272515875,0.3621580004882354,0.3636453572347203,0.3645503200755588,0.3660222848704524,0.3653208363374189,0.3653976355398156,0.3664481185860889,0.3696609423161602,0.3723183876970612,0.3746474397171572,0.3780704552704735,0.3812919241535942,0.3829159605849495,0.3841700312333359,0.3867205868522524,0.3877502097566822,0.3875657284256109,0.38582995951417,0.3910917979359044,0.3850207000376364,0.0,2.603651832312488,60.66659190459752,201.51008819279892,317.40388394159794,fqhc6_80Compliance_baseline,14 -100000,95796,41765,392.2293206396927,7174,73.86529708964883,5622,58.15482901164975,2281,23.44565535095411,77.3507064425629,79.6793292287339,63.34838135415546,65.07020862215529,77.07139200337295,79.39928669509641,63.24674562415202,64.97070555495098,0.279314439189946,280.04253363749854,0.1016357300034371,99.50306720431,90.84196,63.61678510405494,94828.55234039,66408.60276426462,237.11304,144.67923253631963,246920.49772433087,150430.23981828018,271.67451,129.2642652312152,280214.77932272747,132246.23131680235,4071.40858,1820.4839508612,4214200.572048937,1864494.290848472,1399.10831,601.9833823273624,1446261.7541442232,614155.0610958304,2249.70512,933.5797706732696,2314996.221136582,945531.7432208632,0.38127,100000,0,412918,4310.388742745,0,0.0,0,0.0,19814,206.28209946135536,0,0.0,25352,261.30527370662656,2034246,0,73037,0,0,3565,0,0,50,0.5115036118418306,0,0.0,1,0.0104388492212618,0,0.0,0.07174,0.1881606210821727,0.3179537217730694,0.02281,0.3231828412551304,0.6768171587448696,25.211674925401617,4.52605449634021,0.3347563144788331,0.1967271433653504,0.2310565635005336,0.2374599786552828,10.876237386899426,5.434085294118741,24.38698242641664,13036.811969209715,63.3682460120008,12.87422842890394,21.22285159977713,14.612666863157212,14.658499120162505,0.5426894343649946,0.7640144665461122,0.6801275239107333,0.5850654349499615,0.1243445692883895,0.7104874446085672,0.9129129129129128,0.8636363636363636,0.7254237288135593,0.1704545454545454,0.489456419868791,0.6998706338939198,0.6204225352112676,0.5438247011952191,0.1129785247432306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020866253393298,0.0041666666666666,0.00632185657605,0.0084105314480741,0.0107674475353831,0.0133568163539556,0.0156332803391626,0.0176648875917176,0.0197635325015073,0.0219709373720835,0.0244379777445334,0.026472942190482,0.0286004973999547,0.0307278959883882,0.0326362680195508,0.0344321738860938,0.0365989942261128,0.0386784433248325,0.0408856303158069,0.0428604147580578,0.0578574484291363,0.071284437241884,0.0839841088481011,0.0967297870998928,0.1088711377144543,0.1249550787443187,0.1387339624642137,0.1515557825735325,0.163766599769418,0.1747578017832647,0.1887080804167205,0.2023278181837831,0.2148995578153689,0.2262071225693686,0.2368869490649633,0.2486116335154988,0.2590074779061863,0.2693076871222165,0.2786851799376594,0.2873117245799569,0.2956381073430008,0.3037331308056318,0.3115262217700434,0.31761831183298,0.3250303471716436,0.3309603281151851,0.3364011504314118,0.3430039555855156,0.3487640333044142,0.3537540546955352,0.3545548723882304,0.3546868547832071,0.3554208374453687,0.3555806446943708,0.3563220101819048,0.3555211003822477,0.3550912179863768,0.3562477327441216,0.3588388690639583,0.3599461883408071,0.3608177429088715,0.3616725015913431,0.3615170200185826,0.3632216099015268,0.365107434412926,0.3667131248849501,0.3682634730538922,0.3707689858302818,0.3735791418016482,0.3755252311016847,0.3754090050232729,0.3766479360276637,0.3764720942140297,0.373893461717658,0.3738201925827057,0.380449141347424,0.3809225957779515,0.3853076601088321,0.3878186968838527,0.3844033083891295,0.0,2.0539245045537644,59.82347897221513,216.31713352490576,324.3816162722482,fqhc6_80Compliance_baseline,15 -100000,95729,41553,390.6444233199971,7095,72.8514870102059,5574,57.57920797250572,2305,23.63964942702838,77.31652017658898,79.67874060896314,63.31665033110207,65.06302859671158,77.0375581207326,79.40115570824725,63.21324536048388,64.96329054352539,0.2789620558563825,277.5849007158939,0.1034049706181861,99.73805318618643,90.44992,63.32591171738856,94485.39105182338,66151.23078418094,233.32166,142.8347114577569,243086.22256578464,148562.15092370845,270.04763,129.35182568446643,278255.3980507474,132090.62392328904,4030.6354,1818.3707280077035,4164071.1905483184,1853105.1593641452,1330.87192,586.3687518482253,1368036.0810203804,590316.5099898927,2264.5705,941.7143759631072,2323605.093545321,947369.5292333522,0.38035,100000,0,411136,4294.790502355608,0,0.0,0,0.0,19529,203.32396661408768,0,0.0,25220,259.64963595148805,2034343,0,73045,0,0,3610,0,0,44,0.4491846775794169,0,0.0,0,0.0,0,0.0,0.07095,0.1865387143420533,0.324876673713883,0.02305,0.3143584248593624,0.6856415751406375,25.084249105139325,4.554700450799031,0.3311804808037316,0.1978830283458916,0.2380696088984571,0.2328668819519196,11.329789495774245,5.774011458549518,24.402834683322038,13020.940306129156,62.9927935510706,12.981607932322095,21.01359930369716,14.663885338899762,14.333700976151588,0.5410836024398995,0.771532184950136,0.6749729144095341,0.5840241145440844,0.110939907550077,0.7160142348754448,0.9297752808988764,0.8614457831325302,0.7385159010600707,0.1380597014925373,0.4821300071959702,0.6961178045515395,0.6060830860534124,0.5421455938697318,0.103883495145631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.0044302065064222,0.0065668612027404,0.0087180060355426,0.01104736328125,0.0131179597906015,0.0151856648955156,0.0173605792306199,0.0194171779141104,0.0217253312038003,0.0237987818632979,0.0258761436331337,0.0279705897475448,0.0302128492137862,0.032389833305826,0.0344275337610944,0.0362721654606999,0.0383494289596796,0.0406133056133056,0.0425487581263543,0.0572875339319273,0.0707513604018417,0.0841522375224171,0.0973026973026973,0.1099699478040807,0.1256332963139246,0.1385529386802461,0.1514632147077296,0.1632349955657182,0.1749678111587982,0.1891065003339581,0.2024394467412714,0.2143463128127039,0.2262735405411317,0.2376291043625713,0.2483536220315306,0.2592878046600987,0.2689394365721617,0.2784608921738933,0.2869127709075906,0.2947802229605362,0.3025536596212813,0.3110942663239805,0.3178425725941924,0.3243506177643739,0.3306877653796781,0.3365534004911542,0.3418990712310966,0.3468501743063385,0.3516181464987512,0.3525264236410699,0.3537640193684559,0.3547438652041162,0.3549205888751903,0.3555823975901818,0.3560858675107949,0.3564997856428333,0.3576600201210562,0.3590443803242649,0.3606719367588933,0.3617759017073079,0.363222729982118,0.3635999409569196,0.3638983317949526,0.3643033560947261,0.3637863747086095,0.3665663082437276,0.3684592793760066,0.3716371072952293,0.3727475681709456,0.3734437934822409,0.3755220044972695,0.3792054742444402,0.3783619047619048,0.3808490566037736,0.3820845341018252,0.3829688227082364,0.3901740020470829,0.3915713089589729,0.3961748633879781,0.0,2.53162907702034,61.65584138761383,211.1717721873052,315.8007374350054,fqhc6_80Compliance_baseline,16 -100000,95678,41382,389.3685068667824,7147,73.33974372374004,5540,57.327703338280486,2201,22.627981354125296,77.40264542862671,79.78196547507346,63.35728834693722,65.11160138805027,77.12758178377301,79.50810531626703,63.25537940998797,65.01298708000546,0.2750636448537022,273.86015880642844,0.1019089369492505,98.61430804481586,90.68554,63.48944030279734,94782.01885490915,66357.40745291222,236.01554,144.45578962044723,246113.67294466856,150417.95357391174,267.10307,127.3052423934974,275890.0478688936,130535.10844306262,3972.34971,1790.2976113353602,4108378.2583247977,1827757.7408969256,1368.28246,600.3453231197853,1411096.78295951,608470.1217832583,2173.83996,911.4923854360476,2235387.800748344,920586.7441521812,0.37928,100000,0,412207,4308.273584314054,0,0.0,0,0.0,19766,205.98256652522,0,0.0,24944,257.45730470954663,2036555,0,72985,0,0,3629,0,0,54,0.5434896214385753,0,0.0,0,0.0,0,0.0,0.07147,0.1884359839696266,0.307961382398209,0.02201,0.3140364789849326,0.6859635210150674,25.479725359996976,4.5419701085744535,0.3370036101083032,0.207942238267148,0.2231046931407942,0.2319494584837545,11.07948922207852,5.4544983714066495,23.35003415362109,12949.342082796458,62.18271611050736,13.520564289412354,21.00442027537608,13.552724602438389,14.105006943280536,0.5581227436823105,0.7821180555555556,0.6930905195500804,0.5736245954692557,0.1463035019455253,0.715429403202329,0.9162162162162162,0.8671023965141612,0.7186311787072244,0.202127659574468,0.5062409985597696,0.7186700767263428,0.6363636363636364,0.5344295991778006,0.1306081754735792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002167066662616,0.0043276880821348,0.006522621221343,0.0088865868397265,0.0111042189930954,0.0131152882715923,0.015200791134401,0.0174727753339933,0.0198559092534873,0.0220025379671701,0.0242727403185797,0.0260245565045992,0.0281410651860991,0.030186308536824,0.0321399092034667,0.0341591475199735,0.0363241004400724,0.0384575472677085,0.0404467972251978,0.0423046056677123,0.0566426041808133,0.0699259693615773,0.0835974393955294,0.0965285083105407,0.1083393105776127,0.1236694529679399,0.1373323144846323,0.1501746092585494,0.1617878098047388,0.1736164736164736,0.1874394158068199,0.2008528969271898,0.2130559150778199,0.2247834835097542,0.2355918403274431,0.2462432866397209,0.2568125055748818,0.2656808324156685,0.2749235127478753,0.2836017201152843,0.292809702570026,0.3011861122136869,0.3087027914614121,0.3159374850414054,0.3222175047006733,0.3276131621385397,0.3337502032240717,0.3399443505660233,0.3455680819154987,0.3512085885529868,0.3522018496612539,0.3526916265085053,0.3533346448947472,0.3540894739118524,0.3549741170886545,0.355085873338737,0.3545782674772036,0.3555621272610774,0.3574439041037454,0.3586595767460119,0.3600067448570465,0.3606615545348814,0.3620772492740908,0.3640141191188955,0.3660649819494584,0.3668181580734472,0.3676781530373164,0.3708530059804847,0.3730796335447498,0.3733365208383138,0.3754466330737517,0.3789332618600911,0.3830744849445325,0.3835490541472007,0.3825732435763724,0.3862721893491124,0.3842121492445267,0.3845997973657548,0.386600768808347,0.3980916030534351,0.0,2.265867505633572,60.381440109206224,207.9890400465212,315.6636206345615,fqhc6_80Compliance_baseline,17 -100000,95718,41634,391.67136797676505,7053,72.28525460206022,5488,56.66645771955118,2199,22.524499049290625,77.33907921770925,79.70651187211226,63.32552877917672,65.07568180365026,77.06423893501206,79.43436411491389,63.223144734225,64.97732748710865,0.2748402826971983,272.1477571983684,0.1023840449517194,98.35431654160232,91.12444,63.775224546279645,95200.944440962,66628.24604178905,234.9022,143.86769054629738,244744.81288785808,149637.82208811026,270.56043,129.304202163771,278523.4752084248,131766.89062898743,3949.09008,1772.55449355444,4080658.225203201,1806754.0625111675,1299.64622,567.3768146929575,1337570.394283207,572568.8551022336,2163.2418,910.4122403128908,2218583.6310829725,915164.1650732555,0.38106,100000,0,414202,4327.315656407363,0,0.0,0,0.0,19660,204.7054890407238,0,0.0,25177,258.94816022064816,2031177,0,72845,0,0,3518,0,0,39,0.4074468751958879,0,0.0,0,0.0,0,0.0,0.07053,0.185088962368131,0.3117822203317737,0.02199,0.3224462365591398,0.6775537634408603,25.317515374311697,4.556079100500335,0.3365524781341107,0.2095481049562682,0.2244897959183673,0.2294096209912536,10.818329258171127,5.216839514870653,23.57739778134049,12982.418748747194,61.79548412671319,13.45986650153562,20.821316639981344,13.611534165044349,13.902766820151864,0.5481049562682215,0.768695652173913,0.715755278830536,0.549512987012987,0.0992851469420174,0.7117117117117117,0.9168975069252078,0.8816964285714286,0.6867924528301886,0.1550387596899224,0.4956689124157844,0.7008871989860583,0.6626161543959972,0.5118924508790073,0.0849150849150849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598282288121,0.004907328547674,0.0072673385909889,0.0094598439278166,0.0116374881743181,0.01370825652568,0.0159690001529597,0.0179379064615258,0.0200617599541912,0.0221839857432557,0.0239880213728245,0.0261192880105997,0.0283242998632123,0.0301356878663933,0.0323086768925865,0.0344973785715024,0.0365996415659218,0.0385433638788281,0.0407025717286633,0.0423933654226834,0.0575435152603606,0.0715062989160005,0.0845522317637067,0.0975561023829053,0.1097272899837597,0.1246191926884996,0.1384341146137277,0.1509711219013544,0.1627051983584131,0.174352095294307,0.1877539582457615,0.2010072565796599,0.2135091900362378,0.2254022107912881,0.2364511404059426,0.2472251483062593,0.2579863282995264,0.2677572250430631,0.2770271804536888,0.2857945296558681,0.29405499276411,0.302300545297105,0.3103586977096347,0.316283749790374,0.3218334992352327,0.3279994091653229,0.3341331433784476,0.3396701146211909,0.3462105344814211,0.3512615238522309,0.3518062563067608,0.3524561958900527,0.3529710512950736,0.353787999478616,0.3543890998436453,0.3547862382223859,0.3533853670918205,0.3545279383429672,0.3552234195895394,0.3564587294185171,0.3589941318086067,0.3607217210270645,0.3618959654057685,0.3644421506148461,0.3650434489565029,0.3665223288814691,0.3671968873376438,0.3707280128751302,0.3708312768807728,0.3731969472969193,0.37635938145276,0.3770518184744126,0.3791653392800255,0.3830082491712281,0.3858223062381852,0.3850946561226935,0.3842310694769711,0.3834431630971993,0.3766124509254066,0.3804897007384376,0.0,2.6165107340003764,58.31843179040251,210.4384674628294,314.20251359052924,fqhc6_80Compliance_baseline,18 -100000,95691,41417,388.8244453501374,7211,74.07175178438933,5650,58.51124975180529,2286,23.554984272293108,77.30793472821749,79.68534358009923,63.31631099018998,65.07060118542356,77.02691140190267,79.40129600829391,63.21234265606634,64.9676369828458,0.2810233263148234,284.04757180531703,0.1039683341236425,102.96420257775196,89.0054,62.32531433230211,93012.88522431576,65131.41940855681,231.45153,141.37350308066553,241353.1680095307,147219.727563622,270.45223,129.53678510586917,279240.01212235214,132707.2598435,4114.08895,1853.5631651308,4263862.045542424,1901647.9093936004,1383.53694,607.5257953449801,1432795.1635995023,621839.9591863189,2262.29618,946.7026738818024,2333034.078439979,963787.6853105986,0.38033,100000,0,404570,4227.85841928708,0,0.0,0,0.0,19405,202.234274905686,0,0.0,25178,259.73184521010336,2042184,0,73344,0,0,3628,0,0,48,0.5016145719033138,0,0.0,0,0.0,0,0.0,0.07211,0.1895985065600925,0.3170156705033976,0.02286,0.3153532429943428,0.6846467570056571,25.13009910742809,4.566770471297013,0.3205309734513274,0.2070796460176991,0.2330973451327433,0.2392920353982301,11.170030152628,5.601832151246717,24.47907177531903,13038.311052087263,64.03249272571169,13.905102121540663,20.639642760919173,14.626298318929022,14.861449524322826,0.5520353982300885,0.7829059829059829,0.7012700165654334,0.5861807137433561,0.1190828402366863,0.7079584775086505,0.9462915601023018,0.86875,0.6853146853146853,0.1388888888888889,0.4984542211652794,0.7008985879332478,0.6408715251690458,0.5586808923375364,0.1137218045112782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0048234769567508,0.0072327777721421,0.0093645892581457,0.0115735090716784,0.014011649219991,0.0162739239938411,0.0184481878509443,0.0205790345335214,0.0228270772128445,0.0250133267724607,0.0270328542094455,0.029042442691568,0.0309570413103945,0.0329900524208527,0.035210685192077,0.0371137866009076,0.0391599098865276,0.0412033328825689,0.0431369687366434,0.0571386788116826,0.0712289479468687,0.0848905163097648,0.0976040724457813,0.1101212440695835,0.1253410605131242,0.1386027266458012,0.1512348307430274,0.1636645299145299,0.1759903884317911,0.1890171667348741,0.2013154905503207,0.2139199077950178,0.2255486184764424,0.2362810244675233,0.2471555343828589,0.2580360730389749,0.2688018365762258,0.2784021250510829,0.2870337477797513,0.2957501766416086,0.3029643413029994,0.310320326839955,0.3171343527209006,0.3242799255284196,0.3301762141736951,0.3355662602237945,0.3414406941874561,0.3465226882894121,0.3520860089769221,0.3528069251441613,0.3536017680779059,0.3546006023840835,0.3554130330687639,0.35635305528613,0.3560062114666134,0.3568235687129154,0.3580760781593248,0.3599766126119929,0.360535909915411,0.3615087223008015,0.3625614586858292,0.3628102135914142,0.3638755819445382,0.3641559699685154,0.3667868326184775,0.3670806025066114,0.3692195385152506,0.3694941744813868,0.3721497719817585,0.3739829924155367,0.3767317464562717,0.3792665905341961,0.3798265141628925,0.3822664770033191,0.38363201911589,0.384180790960452,0.3849414614452967,0.3835281326447404,0.3963185574755822,0.0,2.027039648453498,64.03148445665278,213.82005598451263,318.74749914250214,fqhc6_80Compliance_baseline,19 -100000,95724,42056,395.41807697129246,7165,73.68058167230788,5590,57.9896368726756,2297,23.755797919017173,77.38171245272493,79.75623602661892,63.34258245905804,65.09530192861637,77.10412146652112,79.47324391773715,63.24090604386522,64.99305471419869,0.2775909862038048,282.9921088817713,0.10167641519282,102.24721441767316,89.97252,63.00923120185552,93991.6008524508,65823.85943113067,237.29296,145.7223758949549,247427.74016965443,151766.6895396712,276.18322,131.54615317162958,286070.6092515984,135494.2897625642,4053.85666,1819.920174330287,4210296.811666875,1876570.1750138805,1364.67679,593.0728888651829,1416487.3281517697,610424.2462967945,2268.65532,944.8823006992898,2348372.7173958463,969038.2975442142,0.38402,100000,0,408966,4272.345493293218,0,0.0,0,0.0,19840,206.8446784505453,0,0.0,25664,265.6073711921775,2035230,0,72995,0,0,3554,0,0,54,0.5536751493878233,0,0.0,0,0.0,0,0.0,0.07165,0.1865788240195823,0.320586182833217,0.02297,0.3061197398114961,0.6938802601885039,25.211174710690003,4.564644607838463,0.320035778175313,0.204293381037567,0.2359570661896243,0.2397137745974955,10.949411444893828,5.456837627376903,24.43431127562637,13104.560531299534,63.18545805119542,13.375104809798454,20.241865367591465,14.840561365689467,14.727926508116022,0.5429338103756708,0.7802101576182137,0.6819452207937395,0.577710386656558,0.1208955223880597,0.6991150442477876,0.9289940828402368,0.851528384279476,0.721830985915493,0.1413043478260869,0.4929145016532829,0.7176616915422885,0.6235912847483095,0.5381642512077295,0.1156015037593985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218765192027,0.0045920384393151,0.0069103381093477,0.0088779635536233,0.011036068108306,0.0134012219959266,0.0154371654346163,0.0176303646535179,0.0201281907117957,0.0225918722489507,0.0245840296074551,0.0266937711111795,0.0290615166286172,0.0311910917912215,0.0332600641878992,0.0354107648725212,0.0374493822301852,0.0393479366199375,0.0413295338727458,0.0431008430508227,0.0574155684120386,0.0720207687798341,0.0855470225355659,0.0980181772279727,0.1101466090074886,0.1258076455348173,0.1394954060305133,0.1525678150151173,0.1645266733608221,0.1757159712538882,0.1894664253081631,0.2029465571179597,0.2152459052052291,0.2270813972557809,0.2378972378972379,0.2491253708870289,0.2597789352755501,0.2691338582677165,0.2783544921321035,0.2875942002428018,0.2958629867499855,0.3042705458627625,0.3125443955107259,0.3193042602670758,0.3262488911572065,0.3329922453860663,0.3388982053913348,0.3447722613423656,0.3501567479337772,0.3554291596283784,0.3561946306917629,0.3563923423919023,0.357250510599338,0.3580255825368867,0.3587853073819131,0.3580613102973778,0.3578740842708185,0.3584364030051507,0.359414454377943,0.3609375557856403,0.3619955346254151,0.3639189135685156,0.3652292233619426,0.3665980948973659,0.3672207654742717,0.3688676053405512,0.3694563051522915,0.3722469724540377,0.3751182426514381,0.3758741258741259,0.3781094527363184,0.3800224107571634,0.3831127513362178,0.3828082877609181,0.3848269321953532,0.3860109811410838,0.3867343798091721,0.381651376146789,0.3717555121406642,0.3739299610894941,0.0,1.5655423478195478,60.50013631933239,224.7409905408296,309.21052543845065,fqhc6_80Compliance_baseline,20 -100000,95855,41669,391.36195294976784,7198,73.84069688592145,5626,58.0877366856189,2252,23.045224557926037,77.44506122741345,79.72368928714853,63.40474875222951,65.08447444484173,77.1749809321941,79.45731281076881,63.30482676568232,64.98952635601528,0.2700802952193442,266.3764763797189,0.0999219865471943,94.948088826456,89.91466,62.98146779104778,93802.78545720098,65704.93744827894,234.51439,143.4493195651105,244062.2189765792,149059.2765793235,270.07312,128.2778893533633,278733.7541077669,131342.29206840036,4050.47559,1809.2485782249487,4185006.1238328726,1846863.08301596,1361.92675,591.4241253829495,1406852.850659851,603031.8453736891,2223.9117,920.4143290977194,2279895.8635438946,923994.5015102112,0.38147,100000,0,408703,4263.762975327317,0,0.0,0,0.0,19647,204.3503207970372,0,0.0,25217,260.04903239267645,2041837,0,73292,0,0,3584,0,0,39,0.4068645349747014,0,0.0,1,0.0104324239737102,0,0.0,0.07198,0.188691115946208,0.3128646846346207,0.02252,0.3187830687830688,0.6812169312169312,25.373501652873877,4.561075267150199,0.3266974760042659,0.2140063988624244,0.2268041237113402,0.2324920014219694,11.02935320162648,5.4174763833785615,23.847851940881128,12997.657472824509,63.28311998620882,14.091019012727845,20.675512491669483,14.269345304998549,14.247243176812947,0.5549235691432635,0.776578073089701,0.6882480957562568,0.6050156739811913,0.1146788990825688,0.717814371257485,0.9078212290502792,0.859122401847575,0.7517006802721088,0.1633466135458167,0.5041958041958042,0.7210401891252955,0.6355871886120996,0.5610997963340122,0.1031220435193945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0045786525390249,0.0069355018606207,0.0091754293370143,0.0112077549942081,0.0133379454883967,0.015552432168174,0.0177429716418367,0.0198000592265825,0.0219734151329243,0.0241754641054259,0.0261112136689024,0.0283777538129718,0.0304984673620111,0.0323202143004327,0.0344450293665293,0.0364345254100564,0.0382690334815183,0.040344684385382,0.042454008157829,0.0567060835471021,0.0700711472361231,0.0840183030899553,0.0971760187216001,0.1095737629023263,0.1250804842778581,0.1383579197068697,0.1502587370233022,0.1624025510040846,0.1742895370618143,0.1879843919637962,0.2019117567640546,0.2137722860431279,0.2254774566221513,0.2354886193865893,0.2471343217526001,0.2577387388391613,0.2675693898190808,0.2765105997052488,0.2855916980354915,0.2937204435348665,0.3011588881222738,0.3095516984346715,0.3167969544970251,0.3239149431983688,0.3301682307445996,0.3354997871114784,0.3417608717792036,0.3466074020319303,0.352163064858942,0.3533618878293195,0.352895859127803,0.35412562616086,0.3545902915981656,0.3561134011446873,0.3558420923979467,0.3564140632403575,0.3576248976248976,0.358946362767845,0.3591606996544476,0.3596801677808363,0.3608184244341207,0.3622760138321282,0.364046852646638,0.3650679168169251,0.3676700343714196,0.3693493783960627,0.3715917291581688,0.3734623986580934,0.3746827411167512,0.3766850980212951,0.3798151413153817,0.3813017901195522,0.3837854500616522,0.3843294252216185,0.3865718418514947,0.3911346964257843,0.3938127090301003,0.3921348314606742,0.3929133858267716,0.0,2.3670847378378883,58.53988774296455,226.86756732017747,312.52132818197686,fqhc6_80Compliance_baseline,21 -100000,95683,41733,392.5462203317204,7322,75.27983027288023,5723,59.20591954683695,2273,23.400186030956384,77.29747507811412,79.7021172045449,63.28577397120039,65.06621729208905,77.01355617388467,79.41781246510476,63.18161739709546,64.96461915942035,0.2839189042294521,284.3047394401452,0.1041565741049339,101.59813266869833,89.04698,62.38783053599887,93064.57782469197,65202.62798616146,236.99575,144.39270562542524,247091.4582527722,150310.37449225594,273.22595,129.63155970424754,282029.13788238243,132643.85081703565,4128.34002,1846.0961708022733,4273986.632944201,1888773.116229918,1364.01893,589.8034786057552,1410332.9118025145,601187.8906231264,2232.64996,932.9315082645744,2299753.4358245456,944831.698482052,0.38202,100000,0,404759,4230.208082940543,0,0.0,0,0.0,19731,205.574657985222,0,0.0,25593,263.92358099139864,2037003,0,73135,0,0,3548,0,0,40,0.4180470930050269,0,0.0,1,0.0104511773251256,0,0.0,0.07322,0.1916653578346683,0.3104343075662387,0.02273,0.3246685729139589,0.6753314270860411,25.320324214882937,4.531454959508309,0.3298969072164948,0.2053118993534859,0.2365892014677616,0.2282019919622575,11.056818993767555,5.525999352392694,24.280893683961143,13031.723877463968,64.48664600884482,13.790080330371127,21.23656158012393,15.06446854459844,14.39553555375133,0.554080027957365,0.7429787234042553,0.715042372881356,0.6019202363367799,0.1018376722817764,0.7101139601139601,0.9146666666666666,0.8777292576419214,0.7342192691029901,0.1148148148148148,0.5033572586246816,0.6625,0.6629370629370629,0.5641025641025641,0.0984555984555984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004797841478506,0.0071780293415909,0.0095010669647393,0.0115152994791666,0.0135671942797775,0.015819428011913,0.0179122158452646,0.0201785696022582,0.0223141596092205,0.0245761234139886,0.0267510427153746,0.0288165759611526,0.0309038261389281,0.0327923016561351,0.0348173279821258,0.0367429856655714,0.0386783930555411,0.040658357435652,0.0427392292139983,0.0577457432361851,0.0717373781783542,0.0851749249721924,0.0980423096748403,0.110816912105996,0.1257590825416305,0.1386872160658939,0.151681683600656,0.1640254074169126,0.1757910220208505,0.1896704197403045,0.2029679895068888,0.2148272406431092,0.2259898766351863,0.2362259408691051,0.2476421898231365,0.257556111955647,0.2675424760016224,0.2777859845687079,0.2873307576782418,0.2953923886339406,0.3030111306385472,0.3099848319666303,0.3172234096203261,0.3229520367057334,0.3304769783550852,0.3372040529695024,0.3420931775271725,0.347667922567234,0.3530642235843936,0.3539126909041762,0.3545346490864361,0.3551880848894992,0.3567643685669904,0.3562963073391076,0.3559171006744404,0.3554155691663229,0.3564288063137126,0.3572966875192288,0.3586008436405233,0.3596310322846751,0.3606239743767176,0.3617378528701857,0.3632944547672883,0.3638071836380718,0.3638950528651612,0.3641841338740076,0.3651143739366059,0.3661500528355054,0.3686854591124756,0.3725957135006411,0.3750266922912663,0.3762420099993671,0.3802246504164438,0.3820160908660672,0.3830975870676334,0.3789213413691856,0.3824790688176434,0.3909919867366676,0.3874082657396678,0.0,2.317239711374252,62.02777928308372,215.20061043183608,330.84966429946473,fqhc6_80Compliance_baseline,22 -100000,95841,41553,390.4070283073007,7212,74.10189793512171,5620,58.17969345061091,2319,23.831136987301885,77.32864418348662,79.63976390392136,63.32870225298407,65.0384913811956,77.05172549850352,79.36217468011212,63.22802712694328,64.94034044969588,0.2769186849831015,277.5892238092439,0.1006751260407909,98.15093149971688,90.94426,63.686144444175845,94890.7669995096,66449.79126279551,238.03644,145.45519580648593,247932.5862626642,151333.79848549783,273.06749,129.88079187708806,282653.3112133638,133681.78851644142,4059.52615,1809.885478618034,4203142.4755584765,1856136.8623300008,1412.40831,608.5725552553401,1462503.4692876744,623812.2859574261,2281.83314,935.7757511817756,2346745.129954821,946319.6753959048,0.37945,100000,0,413383,4313.216681795891,0,0.0,0,0.0,19962,207.81294018217676,0,0.0,25506,263.7910706273933,2027596,0,72900,0,0,3643,0,0,37,0.3860560720359762,0,0.0,0,0.0,0,0.0,0.07212,0.1900645671366451,0.3215474209650582,0.02319,0.3223249669749009,0.6776750330250991,25.255239347868606,4.542161014218593,0.3272241992882562,0.2060498220640569,0.2302491103202847,0.2364768683274021,11.200506126095238,5.7311244100061085,24.42618302973513,12966.24031434452,63.31650408130191,13.651874380832588,20.721455570665903,14.410086885204452,14.533087244598958,0.552491103202847,0.7728842832469776,0.6960304513322458,0.5788253477588872,0.1361926260346125,0.7160493827160493,0.9333333333333332,0.8556701030927835,0.7072243346007605,0.1821561338289963,0.4994107942493518,0.7005012531328321,0.6388478581979321,0.5460717749757517,0.1245283018867924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484428014381,0.0047236751408993,0.0070816212651549,0.0091215667154233,0.0112365263371974,0.0132864996945632,0.0155030068290694,0.0179207445885678,0.0199889631491814,0.022307267257434,0.024273038381934,0.0262407126144246,0.0283124543969087,0.0303167560556304,0.0321522851014684,0.0341928019503326,0.036249055744694,0.0383195786505204,0.0402280942290913,0.0421944441553305,0.0570018983248847,0.0708027518139807,0.084344800117393,0.097037589718261,0.1095288289237904,0.1246921279901903,0.1379354222999841,0.1508241378209562,0.1635963647625455,0.1750396672241519,0.1888070470160022,0.202044901271301,0.2141870656937481,0.2252454141979492,0.2357601029827591,0.2471281557054711,0.2572691946938228,0.2669203832772229,0.2764831470882166,0.2847771737883896,0.2930120928938307,0.3010718641523595,0.3082812982264536,0.3149616706317737,0.3225445205896315,0.329379821042888,0.3355109717868338,0.3409415485055595,0.3460444825302847,0.3514722424402832,0.3519390936947395,0.3527844501504735,0.3531500183880732,0.3539658576239693,0.3544787253088262,0.3541317420525676,0.3534564996184177,0.3546351669714492,0.35548821202938,0.3572169187314526,0.3574596016535137,0.3583655658038282,0.3597294572340783,0.361348496063522,0.3621914102130538,0.3637294275139774,0.3656455768680217,0.3678378634340373,0.3701892633504538,0.3714615598996695,0.3746790168745414,0.3776849322406128,0.3803184713375796,0.3800370541917554,0.3809886655871988,0.3811019816336394,0.3799443757725587,0.3797909407665505,0.3823366555924695,0.3846755277560594,0.0,1.826638352845245,61.30502718426573,211.9551441587992,324.26622571131776,fqhc6_80Compliance_baseline,23 -100000,95748,41802,392.2484020553954,7285,74.92584701508125,5675,58.70618707440364,2294,23.676734762083804,77.35098256499538,79.70100159254912,63.33757887846742,65.07198292254711,77.06814881745692,79.41487791043076,63.23483116537303,64.9702149191168,0.2828337475384614,286.12368211835815,0.1027477130943879,101.76800343030834,89.44188,62.61474112208682,93413.8363203409,65395.351466439846,237.27725,144.7848099231604,247269.67665120945,150669.81025521198,270.75211,129.53239113600844,279454.95467268245,132676.99126221417,4092.15393,1825.7626018493609,4237075.698709112,1870182.600552468,1349.67343,592.5079451284234,1394875.3394326775,604144.2877249864,2263.86142,935.3232920650332,2338175.565024857,953050.0504592774,0.38224,100000,0,406554,4246.083469106404,0,0.0,0,0.0,19851,206.75105485232064,0,0.0,25238,260.21431257049755,2037710,0,73155,0,0,3493,0,0,37,0.3864310481681079,0,0.0,0,0.0,0,0.0,0.07285,0.1905870657178736,0.3148936170212766,0.02294,0.3266989655623936,0.6733010344376064,25.340519688996963,4.541030255327252,0.3235242290748898,0.2081057268722466,0.2333039647577092,0.2350660792951542,10.938203554867435,5.390013889051151,24.43943752572676,13052.5851818946,63.59876186695204,13.866846841522571,20.515642874340102,14.702377597248027,14.513894553841332,0.531806167400881,0.7502116850127011,0.6786492374727668,0.5574018126888217,0.1109445277361319,0.708420320111343,0.8982630272952854,0.8612975391498882,0.7098765432098766,0.155893536121673,0.4719207173194903,0.6735218508997429,0.6198704103671706,0.508,0.099906629318394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0046624299368544,0.0070114557649183,0.0090801982611521,0.0112352695956319,0.0133359122883814,0.015718494204952,0.0182174458834695,0.0204008626416868,0.0227102928082367,0.024847776616028,0.0269349209607883,0.0290238009561507,0.0309851613102532,0.032980523231823,0.0349656854638663,0.0371206394897335,0.039286084881187,0.0413166431007236,0.0435249137940015,0.0581658750456704,0.0714793815511433,0.0841930884079852,0.0973307120554253,0.1097969767883119,0.1255219068759579,0.1386016818842193,0.1513274807129555,0.1639232190734589,0.1753172228121547,0.1889708654208627,0.2023050700719658,0.2150556347143214,0.226262117863317,0.2367030644593166,0.2474450774789953,0.2577485396446003,0.2673020016427197,0.2764440812249577,0.2854685959320324,0.2933896735355406,0.3023095201863536,0.3090921999242711,0.3173235893135258,0.3244585275835275,0.3311903442330193,0.3372866936896362,0.3433925777025737,0.3487838695883168,0.3541779545664785,0.3553153590802364,0.3559474040040288,0.3566825876833507,0.357416378985234,0.3572876606147333,0.3581436077057793,0.3578897187351025,0.3587802625503001,0.3591511845333059,0.360516558900969,0.3616465146016284,0.3628830829005273,0.3635292632641898,0.3654649126745387,0.3658471856980868,0.3675025548305951,0.3689300941425587,0.3720893494676313,0.3731269785437918,0.3763852347923144,0.3770123377516855,0.3798030611152734,0.382031746031746,0.381298820646347,0.3828901296489069,0.3828790971305079,0.3810196078431372,0.3799216656359513,0.3777840428531153,0.3818110544884359,0.0,2.2408016069240912,63.51279539837478,198.3542290246586,335.6389977979476,fqhc6_80Compliance_baseline,24 -100000,95829,41690,390.0593765978984,7341,75.31123146437926,5678,58.53134228678167,2298,23.46888728881654,77.51248185563044,79.79837434686696,63.42745123530996,65.11063250236798,77.23123002055262,79.52146581010075,63.32383833904899,65.01243114994958,0.2812518350778248,276.9085367662143,0.1036128962609694,98.20135241839978,90.13708,63.07500436307135,94060.336641309,65820.37208263819,237.80329,145.0947403932104,247462.5217835937,150718.7911730378,273.79039,130.6740418909036,281313.5376556157,132904.82760479004,4109.32457,1846.502736721144,4236904.141752496,1876055.4836479,1384.54261,603.5347050317206,1426028.425633159,611129.4583948379,2261.989,939.2301243768768,2313049.51528243,938865.0635877273,0.38191,100000,0,409714,4275.469847332228,0,0.0,0,0.0,19850,206.39889803712865,0,0.0,25528,261.97706331068883,2043255,0,73267,0,0,3386,0,0,53,0.5530684865750451,0,0.0,1,0.01043525446368,0,0.0,0.07341,0.192218061847032,0.3130363710666122,0.02298,0.3177279211516016,0.6822720788483984,25.43325147124874,4.609132460002134,0.3321592109897851,0.2011271574498062,0.2361747094047199,0.2305389221556886,11.328107149162538,5.77974617807179,24.30788234124202,13055.48016786224,63.65178999035624,13.437633310939878,20.991508205830453,14.92734432837513,14.29530414521078,0.5507220852412822,0.7653239929947461,0.690880169671262,0.5995525727069351,0.1115355233002291,0.7091690544412608,0.9090909090909092,0.8832951945080092,0.7147335423197492,0.1660649819494584,0.4990658570761326,0.6983311938382541,0.6328502415458938,0.5636007827788649,0.0968992248062015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024487483051018,0.0046991624553123,0.0068721556066856,0.0092135036681515,0.0117027977000751,0.0141157327367029,0.0162387245220011,0.0185185185185185,0.0207386682732071,0.0229369056140709,0.0254160053248681,0.027371832343681,0.0294794599371159,0.0313078918117821,0.0334134045382846,0.0355427473583093,0.0376567738730907,0.0397938764295416,0.0418662151071588,0.0441119821761355,0.0584259819361298,0.0724420975584252,0.0863250550141465,0.099079889922904,0.1119312617801598,0.1272444970214204,0.1411053998198293,0.1532760563979329,0.165026890899778,0.1754853771109754,0.189214473896446,0.201816826710161,0.2139661650053206,0.225566537432425,0.2366313245069494,0.2476053533901117,0.2576051347195293,0.2684321700635941,0.2775235074204146,0.2858596483204902,0.2943477658788774,0.3024589208716933,0.3109155469570244,0.3176311765268088,0.3242172833525101,0.3300561625149009,0.3357823570501946,0.341587044123983,0.3467263440305438,0.3520371975727007,0.3528898904135313,0.3530838815789474,0.3542768186471817,0.3550152676153713,0.3556964462944583,0.3554475570430822,0.3552935591074537,0.3568252301330751,0.35818780833376,0.3589084154879268,0.3605466406718656,0.3616251482799525,0.3631828281557875,0.3631954223384519,0.3645538668073069,0.3657516815124523,0.3657961294722782,0.3687734668335419,0.3724812292648856,0.374528005034613,0.3750056354537667,0.3783897414336767,0.3815346225826575,0.3827841596130592,0.383641946589746,0.3830659327790139,0.3866344848393422,0.393716444621197,0.3899508465319498,0.3863293051359516,0.0,2.8275815595164357,60.922518288133965,213.1008926769887,324.3611912410552,fqhc6_80Compliance_baseline,25 -100000,95744,41504,389.55965909090907,7184,73.84274732620321,5601,57.99841243315508,2285,23.55238970588235,77.31288813594676,79.67178798720356,63.318020272784125,65.06209772613136,77.0365588928485,79.39180918726565,63.217094507280144,64.96184146844148,0.2763292430982602,279.9787999379077,0.1009257655039803,100.25625768987824,89.64582,62.782839962562,93630.51470588236,65573.42492747534,233.31794,142.47878387728278,243176.93014705885,148299.8035148759,268.56026,127.50682900132836,277032.3048963904,130589.9336333047,4083.91928,1823.9163778863008,4232078.793449198,1871614.53238459,1400.96856,605.7506563913416,1452954.2007854276,622397.6040183636,2260.44188,934.8983140731806,2331435.22309492,951644.136755268,0.38068,100000,0,407481,4255.932486631016,0,0.0,0,0.0,19564,203.80389371657756,0,0.0,25097,258.66895053475935,2038968,0,73200,0,0,3464,0,0,35,0.3655581550802139,0,0.0,1,0.0104445187165775,0,0.0,0.07184,0.1887149311757907,0.3180679287305122,0.02285,0.3095300950369588,0.6904699049630412,25.328440448260555,4.518845299648801,0.3299410819496518,0.2033565434743795,0.2246027495090162,0.2420996250669523,10.93635683857062,5.3780529542781,24.232278687785517,13020.726295263516,63.020910377531166,13.44978232803494,20.761409412391863,13.925486998067022,14.88423163903735,0.5400821281913943,0.7655838454784899,0.6915584415584416,0.5604133545310016,0.1253687315634218,0.6990504017531045,0.9119318181818182,0.8531317494600432,0.7116788321167883,0.1642857142857142,0.4886578449905482,0.7001270648030495,0.6375451263537906,0.5182926829268293,0.1152416356877323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025927201280155,0.0046929322210847,0.0067979585831836,0.0091008816479096,0.0112488685021511,0.0134114052953156,0.015907005200367,0.0184888362548621,0.0206923344306541,0.0227214548284371,0.0246178138232972,0.0268111105406376,0.0287145310748408,0.0307253362997754,0.0327349633756319,0.0350148306617472,0.0369442316055416,0.0389599609881615,0.0409695431999916,0.0429989893622563,0.0573773058974599,0.0717155652283095,0.0845436718086389,0.0974766060351172,0.1094018535896165,0.1259347796194243,0.1402816243805643,0.1531747298951514,0.1652779558176302,0.1765898123324396,0.1903218512097686,0.2026888175043533,0.2149428037057979,0.2255570017609677,0.236259806564484,0.2469645943191385,0.2576205730358398,0.2672712543318781,0.2767209167622573,0.2856766296873567,0.2936476691137306,0.3020167988582392,0.3095156384980415,0.3162816347571721,0.3227586542201478,0.3293872467413957,0.3358481107838837,0.3414932368749522,0.3472938979798242,0.3521927736338147,0.3531476556277085,0.3538463659804476,0.3543543967684529,0.3548835995709274,0.355669564958017,0.3558792763967511,0.3550713103272634,0.3556908556908557,0.3564988923806089,0.3578472758626884,0.3585826237661065,0.3597930965880831,0.3606243154435925,0.3617776579491327,0.3627719035060127,0.3641994750656168,0.3643960714490839,0.3662029979674797,0.3689919183326244,0.3728057842940349,0.3773098013916409,0.381834734643603,0.3845424671385237,0.3869408424767896,0.3884195538680589,0.3851132686084142,0.3887587822014051,0.3919474116680361,0.3947146471745853,0.4032134659525631,0.0,1.9418681767991972,60.83014533942983,207.4942206145321,327.8956947870827,fqhc6_80Compliance_baseline,26 -100000,95786,41829,393.0323846908734,7333,75.33460004593573,5734,59.319733572755936,2309,23.75086129497004,77.37208356525132,79.71019749201673,63.35007434272507,65.07926175485959,77.08438053235528,79.42100833847522,63.24511707111208,64.97640489992726,0.287703032896033,289.1891535415141,0.1049572716129958,102.85685493232675,90.40636,63.347215173685335,94383.68863925835,66134.10641814601,236.88402,144.34706785577424,246743.6264172217,150135.6125694509,271.05573,128.9409764085784,279902.8876871359,132294.38005402128,4119.75457,1840.5922901872173,4263094.585847619,1883852.7176404032,1384.40376,595.3880712996532,1434373.5410185205,610744.2651525016,2282.55774,948.176589999391,2349505.460088113,960511.1355399886,0.38255,100000,0,410938,4290.167665420834,0,0.0,0,0.0,19834,206.48111415029337,0,0.0,25304,261.1133150982398,2037553,0,73133,0,0,3482,0,0,40,0.4071576221994863,0,0.0,0,0.0,0,0.0,0.07333,0.1916873611292641,0.3148779489976817,0.02309,0.3263592922639803,0.6736407077360196,25.23231652171021,4.551326856452199,0.3257760725497035,0.2040460411580048,0.2343913498430415,0.2357865364492501,10.823341429231052,5.339874717252632,24.545654390997512,13090.601391856211,64.49864382868594,13.662961843819495,21.180279253699627,14.814718423404855,14.84068430776198,0.5484827345657481,0.7692307692307693,0.699678800856531,0.5729166666666666,0.1242603550295858,0.7086044830079538,0.921832884097035,0.8463157894736842,0.7333333333333333,0.1423220973782771,0.4975867616639853,0.6983729662077597,0.6496769562096195,0.5325884543761639,0.1198156682027649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397143725311,0.0045618588054012,0.006738243591565,0.0089292063266321,0.0110749516932777,0.0132859586251832,0.0154725866128489,0.0174602526685307,0.0195593525179856,0.0217889673523692,0.0241645402281181,0.0265088927431521,0.0284936012746055,0.0308487525612907,0.0328854423396203,0.0348194451619569,0.0369216437221819,0.0388671692712924,0.0409592485609193,0.0427798021863612,0.0574878168404136,0.0718349928876244,0.0848507720854168,0.0976493952735717,0.1096818373367046,0.12540936846331,0.13954326286229,0.1526306835098464,0.1651407473803273,0.1764283648128903,0.1900012909888975,0.2030136956686231,0.2156293808887295,0.2272230360539607,0.2381334682386063,0.249424116239922,0.2609636645581624,0.2710734323525112,0.2800771062478739,0.288942335223043,0.2971193891716798,0.3046462945420949,0.312444565333081,0.3195793558587153,0.3260170201400944,0.3323644246283455,0.3376909591785625,0.3440354135395731,0.3496051779935275,0.3546995011481511,0.3553736808098212,0.3566497992409658,0.3574522724386561,0.3574686183381835,0.3582633803655414,0.3582746613900265,0.3580174464710547,0.3580183945112621,0.3584445893537427,0.359541300842143,0.3602601210389806,0.3612521821933026,0.3628715057947542,0.3636078008931978,0.3652907342065832,0.3656769315586359,0.3661765129061034,0.3677405006989452,0.3693211996742325,0.3727922286448298,0.3760169140966126,0.3768077129084092,0.3796625222024867,0.3807730730807654,0.3815827064089134,0.3855927124535538,0.3846390641834692,0.3814,0.3799126637554585,0.3868640850417615,0.0,2.055644468306211,61.01489667556468,218.15116769151692,332.6349788163034,fqhc6_80Compliance_baseline,27 -100000,95654,41830,393.77339159888766,7204,74.22585568820959,5630,58.366613001024525,2313,23.867271624814435,77.25911226955019,79.6548587359181,63.27736057920528,65.04550508173575,76.97830117460556,79.37171976427807,63.17590616432901,64.94545976858093,0.2808110949446245,283.1389716400281,0.1014544148762723,100.04531315482268,88.80718,62.22500769400106,92842.09755995568,65052.175229474,233.8255,143.13977330803212,243956.9594580467,149150.9642127168,275.17462,130.3553926389566,284382.2108850649,133707.90521689891,4077.01318,1807.6865102051347,4229207.382859055,1856876.9088903016,1362.74317,583.1697823059804,1413193.5413051206,598251.050383352,2276.14094,930.479908799828,2350717.8790223096,948794.671480431,0.38129,100000,0,403669,4220.095343634349,0,0.0,0,0.0,19548,203.83883580404373,0,0.0,25604,264.3590440546135,2035251,0,73127,0,0,3467,0,0,44,0.4599912183494679,0,0.0,0,0.0,0,0.0,0.07204,0.1889375540926853,0.3210716268739589,0.02313,0.3206428665524963,0.6793571334475036,25.079103681933677,4.6405831853706685,0.3293072824156305,0.2078152753108348,0.2285968028419183,0.2342806394316163,11.19399332438588,5.622774583577002,24.465512000910977,13070.560093550062,63.863744504390816,13.742311639160752,21.251492660848573,14.485401698660272,14.384538505721208,0.5460035523978686,0.7743589743589744,0.6952535059331176,0.574980574980575,0.1053828658074298,0.7180811808118082,0.943502824858757,0.8505494505494505,0.75,0.12,0.4914619883040935,0.7009803921568627,0.6447462473195139,0.5227043390514632,0.1019644527595884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702683265297,0.004451474867926,0.0065363457361508,0.0086063241749309,0.0110687217050714,0.0131586987961623,0.0155596794257397,0.0179976928652367,0.020465953118451,0.0225704751571232,0.025005895198745,0.0270866917887689,0.029015767873857,0.0309258171853591,0.0327863777089783,0.0347312695163058,0.0371908960001657,0.0389985156274328,0.0408263035812729,0.042700916359997,0.0574539678558739,0.0712834370221412,0.0846660296325853,0.0974382192833752,0.1099800420278989,0.1256248411420825,0.1394326256200015,0.1516727040272746,0.1633715770452188,0.1746679408575017,0.1882604193631892,0.2011875352143197,0.213697555875049,0.2251947283662536,0.2357358681987605,0.2473180374475268,0.2585510489510489,0.2685284397875052,0.2781998498737574,0.2874197143612193,0.2959567356791384,0.3035955187987565,0.3118139203702605,0.3187448886323182,0.3254823994340497,0.3322367607410522,0.3389193874602716,0.3439211530850642,0.3493471906463137,0.3546601697496127,0.3552035893347027,0.3559392322472733,0.3567817133793142,0.3571729988504576,0.3578852912585059,0.3582190725620089,0.3587017080275704,0.3606386843235032,0.3617863102303418,0.3624409434674044,0.3632440784638866,0.3642090620031796,0.3651171611598112,0.3648166834846956,0.3657471097917119,0.3655370927646212,0.3659904432172594,0.3704524586011462,0.3719572601188791,0.3741289547456948,0.376184343666636,0.3773483628556092,0.377318799005546,0.3863863095694881,0.391025641025641,0.3904511188225439,0.3930609097918273,0.3897163844113446,0.3915866741953698,0.3956607495069033,0.0,1.9442651762757344,60.475283727923234,221.96247767245077,321.12478543142254,fqhc6_80Compliance_baseline,28 -100000,95618,41518,390.65866259490895,7154,73.57401326110147,5546,57.4264259867389,2245,23.0814281829781,77.28554750318864,79.71743794571186,63.27381344368565,65.07208334405526,77.00592441122092,79.43840904332932,63.17048332450347,64.97175379894254,0.2796230919677214,279.0289023825494,0.1033301191821749,100.3295451127144,88.60566,62.00850946932097,92666.29714070572,64850.247306282254,231.69044,141.6239580924429,241718.8081741932,147525.11183842714,267.4844,127.21238223848044,276577.0566211383,130524.01374148688,4019.79616,1812.811103888274,4163477.661109833,1855385.405884907,1372.69031,594.9065724036997,1418448.9426676985,605086.4091797308,2203.8607,924.9286351953192,2267463.0927231275,935136.436884596,0.38015,100000,0,402753,4212.104415486624,0,0.0,0,0.0,19416,202.45142128051205,0,0.0,24974,258.0371896504842,2041150,0,73325,0,0,3468,0,0,35,0.3555815850572068,0,0.0,0,0.0,0,0.0,0.07154,0.1881888728133631,0.3138104556891249,0.02245,0.3189781998127591,0.6810218001872409,25.39546633885717,4.508355705120534,0.3243779300396682,0.212585647313379,0.2307969707897584,0.2322394518571943,11.02260237958902,5.623498718837594,24.04769988865877,13011.606449813478,62.75999209592349,13.84392080158308,20.34672124322821,14.26190026896236,14.307449782149842,0.5494049765596827,0.7608142493638677,0.6903835464146748,0.58984375,0.1187888198757764,0.6972934472934473,0.91005291005291,0.8322440087145969,0.7372013651877133,0.1350364963503649,0.4992757122163206,0.6903870162297129,0.6417910447761194,0.5460992907801419,0.1143984220907297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025435751925415,0.0046962642891194,0.0068533484953092,0.0092087208415917,0.0113946201115044,0.0134665729507278,0.0157399190052126,0.0177958483164432,0.0198116005768581,0.0220189875362289,0.0242403725816048,0.0263663546408277,0.028419384057971,0.0305319905579664,0.0326794011357769,0.0347645300427186,0.0368194159464444,0.0389356818677495,0.040813564967576,0.0426006863675717,0.0569209379148851,0.0709786948639216,0.0847099621689785,0.0972449033345625,0.1097249218287839,0.1255534136886478,0.1387064549724755,0.1510938632777517,0.1631403773504136,0.1746717383362345,0.1888637099384914,0.2017760718235638,0.2147348918315078,0.2262536162005786,0.2371049904073036,0.2486652681118399,0.2594795206582007,0.2691124260355029,0.2781648123103499,0.2872212348793212,0.2959620998007691,0.3036241390619875,0.3111487968881563,0.3180338502564595,0.3243506533042705,0.3301137556661685,0.3364717977006883,0.342098215993573,0.346650739447135,0.3515540272450734,0.3522340942204954,0.352463760127873,0.3528314946393004,0.3539402370808335,0.3553129375316512,0.3548545778761606,0.3544935692596302,0.3558212401055409,0.3566310087087705,0.3576004450266478,0.3581817155543848,0.3582814544589396,0.3600210526315789,0.3615044545678957,0.3629806532542095,0.3640729816501788,0.3654026683355617,0.3670921896616778,0.3693034651732587,0.3709863068069061,0.3726832831187802,0.3746004687832943,0.3747235387045813,0.3745906009597075,0.3759992476253174,0.3780271707028942,0.3820516740559547,0.3859684593610998,0.3829321663019693,0.3784905660377358,0.0,2.191728308677894,62.22762579535388,209.49544689287808,313.90990264666965,fqhc6_80Compliance_baseline,29 -100000,95808,41769,391.1990647962592,7048,72.1756012024048,5532,57.13510354041416,2277,23.369655978623918,77.35864855579545,79.66382031084403,63.35358995694328,65.05449953437159,77.08060990987012,79.38678082098467,63.25010493539176,64.9540788681268,0.278038645925335,277.0394898593622,0.1034850215515135,100.42066624478709,89.12838,62.41358322990584,93028.11873747496,65144.438073966514,233.79848,143.21113467401796,243422.39687708757,148871.47698941422,270.1251,129.32167887942137,278297.209001336,132126.48417806547,4032.72165,1823.5193134352928,4168881.0433366736,1863094.6682037965,1351.3048,592.2200688351492,1396246.8478623915,603986.865172164,2251.91846,941.2207113756835,2313477.621910488,950365.9654244072,0.38344,100000,0,405129,4228.550851703407,0,0.0,0,0.0,19551,203.41725116900463,0,0.0,25265,260.1035404141616,2040140,0,73255,0,0,3511,0,0,35,0.365313961255845,0,0.0,0,0.0,0,0.0,0.07048,0.1838097225119966,0.3230703745743473,0.02277,0.3231517772671983,0.6768482227328018,25.330257796012624,4.621857918032489,0.3233911785972523,0.202819956616052,0.2312002892263196,0.242588575560376,11.147858539133354,5.45909814798458,24.18652632601105,13081.987245506893,62.51769474029617,13.064602167074638,20.457454544200303,14.24647737946172,14.749160649559515,0.5527838033261027,0.7789661319073083,0.7126886528787032,0.5856137607505864,0.1192250372578241,0.7142857142857143,0.923943661971831,0.8867924528301887,0.7542662116040956,0.1314878892733564,0.4973288003885381,0.711864406779661,0.649390243902439,0.5354969574036511,0.1158594491927825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026415399874501,0.0047199910867121,0.0074008739114125,0.0096705125473124,0.0122528600166622,0.0145160469965922,0.0165933259992665,0.0185447757387818,0.0207384099871278,0.0230569365167045,0.0250225335955424,0.0271503887418712,0.0292597729490933,0.0314062853732326,0.0337670639666762,0.0357456389494231,0.0377249164485188,0.0399738759939043,0.04198390028564,0.0437765470142416,0.0579932398597896,0.0719699741769558,0.0849518379154569,0.0977288730544082,0.1099974705956747,0.1253897291184459,0.138294826800123,0.1509425933018426,0.1631410906683467,0.174487432444025,0.1893475194107321,0.2025298649584487,0.2150152828690459,0.2265257445458325,0.2368933963199101,0.2482151567557979,0.2587167435161719,0.2679901861480631,0.277326855183844,0.2871992940070828,0.2954463882553171,0.302619714021384,0.3105164018907488,0.3176937749679091,0.3245709002882966,0.3313634288675311,0.3376576215579959,0.3439484770959817,0.3497751454750457,0.3550952469021639,0.3553539656009058,0.3566144563375625,0.35661220519616,0.3571066981009271,0.3575138014671964,0.3573586004936909,0.3571145210174709,0.3583554245632522,0.3594157180085036,0.3604448829491434,0.3609945229715232,0.3625841291270424,0.3643546416080233,0.3667212783625468,0.3675358256204538,0.3679250236270083,0.3706891604980777,0.3711912235644757,0.3742656946705358,0.3755208333333333,0.3770732154311372,0.3770711566303823,0.3793519695044473,0.3812605948528278,0.3812983581807888,0.3807214665878178,0.3820276497695852,0.3846784104875051,0.3844206974128234,0.3729083665338645,0.0,2.276774940971815,62.28735348065271,207.35301692506545,312.7915003067748,fqhc6_80Compliance_baseline,30 -100000,95857,41849,392.4074402495384,7153,73.36970695932483,5573,57.523185578518,2346,24.11926098250519,77.41454581429173,79.70382461740992,63.37712166936033,65.06819806081815,77.12695253701528,79.41486429538784,63.27241356098048,64.96545161036134,0.2875932772764429,288.9603220220778,0.104708108379846,102.74645045680586,90.53022,63.43891170249245,94442.76370009492,66180.57201292807,235.70091,144.04389492213372,245237.8438716004,149620.18563524177,268.99612,128.61218841892378,276416.2450316617,130937.59081084482,4041.3421,1799.9088087109756,4177558.488164662,1839713.630546495,1346.57134,582.4863075733418,1389624.3675474925,592851.0524403009,2310.8818,953.1073480753316,2378447.8128879475,966463.2732685648,0.3823,100000,0,411501,4292.852895458861,0,0.0,0,0.0,19647,204.28346390978228,0,0.0,25127,257.9571653609022,2036106,0,73128,0,0,3596,0,0,45,0.469449283829037,0,0.0,1,0.0104322063073119,0,0.0,0.07153,0.1871043682971488,0.3279742765273312,0.02346,0.3286554397219994,0.6713445602780005,25.48069455478811,4.559777120368534,0.3262156827561457,0.207249237394581,0.2233985286201328,0.2431365512291405,10.94533017265331,5.375532436340787,24.971962502751143,13035.410245440757,62.58275655910866,13.328742271650771,20.62457223984125,13.75627187642718,14.873170171189456,0.5298761887672707,0.7316017316017316,0.6947194719471947,0.5606425702811245,0.1084870848708487,0.688839615668884,0.8969359331476323,0.841648590021692,0.678030303030303,0.1598513011152416,0.478909952606635,0.657035175879397,0.6448047162859248,0.5290519877675841,0.0957642725598526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.0047616635428803,0.0074125150836062,0.0096339309280652,0.011627197885964,0.0136550025946539,0.0156988590057049,0.0178709861683463,0.0201438261011685,0.0222567711316586,0.0244706894609073,0.0266491604180984,0.028811277909641,0.0310647233201581,0.0334048168921148,0.0353439372030572,0.037245874502095,0.0393077361521322,0.0414499704151225,0.043384647389224,0.0576576200852874,0.0713457137184002,0.0850854311365326,0.0985415638551433,0.1102639975569432,0.125710242274465,0.1396339138172111,0.1529828141440551,0.1647375102680905,0.1761852236584242,0.1903117536952172,0.2030942547624711,0.2153358034618017,0.2266791962149109,0.2371521519321229,0.2484673439125334,0.2588813808791061,0.2692860996223701,0.2784230106160965,0.2879650091026712,0.2967555375628939,0.3038170081392085,0.310988594955279,0.3180750329617643,0.3246255956432947,0.3301637807705589,0.3356795751715846,0.341003438176493,0.345955696284665,0.3509957419798471,0.3520121918325511,0.3525156062673116,0.3527535945591286,0.3532774666029843,0.3536347530928526,0.3535159845370313,0.3526699413722072,0.3542570677186061,0.3560954743776199,0.3572743027639313,0.3587676036529338,0.3603073693383241,0.3612742219612448,0.3628409675759135,0.3632135714113593,0.3646856068518905,0.3649280986076238,0.3664299629233959,0.3684229050082708,0.371500258871321,0.3733029612756264,0.3755978318631098,0.3788925163234555,0.3813456584330959,0.3821979676326684,0.3852283539486204,0.3864265927977839,0.3876796714579055,0.3906510851419031,0.3992292870905587,0.0,2.364531839222523,59.40224206688057,215.6723681228725,314.4511996542912,fqhc6_80Compliance_baseline,31 -100000,95710,41382,389.1442900428378,7149,73.35701598579041,5533,57.23539859993731,2245,23.090586145648317,77.36002699221102,79.73214478437401,63.33690834044432,65.0884418102307,77.08953768068405,79.46040672311845,63.23770942341741,64.991378694805,0.2704893115269726,271.73806125556155,0.0991989170269107,97.063115425712,90.76826,63.48501940106478,94836.7568697106,66330.60223703351,233.08025,142.36477266100792,242974.05704733048,148192.6602328307,264.25313,125.79194241314536,272203.21805453976,128530.53953981458,3981.8933,1775.017101333553,4123113.269250862,1817344.8883845136,1316.6671,569.0000442409336,1363378.821439766,582216.7386492578,2204.98748,909.2174989517118,2270423.487618848,921481.5381012808,0.3788,100000,0,412583,4310.761675895936,0,0.0,0,0.0,19530,203.45836380733468,0,0.0,24552,252.69041897398392,2036019,0,73045,0,0,3542,0,0,53,0.5433079093093721,0,0.0,0,0.0,0,0.0,0.07149,0.188727560718057,0.3140299342565393,0.02245,0.3192225772097976,0.6807774227902024,25.43787569150892,4.512264592384224,0.3164648472799566,0.2071209108982468,0.246520874751491,0.2298933670703054,10.957225579423673,5.520324393847152,23.723520227257865,12938.948155391672,62.01877503826871,13.339099837948366,19.62190415344341,15.179122966769516,13.878648080107409,0.5441894090005422,0.7486910994764397,0.6893203883495146,0.5879765395894428,0.1132075471698113,0.7023901310717039,0.9,0.8511166253101737,0.7320261437908496,0.1532258064516129,0.4957507082152974,0.684863523573201,0.6409495548961425,0.5463137996219282,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713615784302,0.0047238187918782,0.0069309844433394,0.0092748735244519,0.0115138939745311,0.0135432365280436,0.0157186544342507,0.0177488824021719,0.0198517761308458,0.022072524007453,0.0241751932580122,0.0263233542770317,0.0281456953642384,0.0301166970511592,0.0320264135369376,0.0339429906638682,0.0358130717193796,0.0380611344646842,0.0402517031566904,0.0423561038636268,0.0570402163810478,0.0707430162335283,0.0830334756564522,0.0957444570659262,0.1083463371430981,0.1236930298449079,0.1378940891925149,0.1514538720252032,0.1631205673758865,0.1742134114290005,0.1883968972204266,0.2011839442442345,0.2131133285506206,0.2246723005105443,0.2350534512339976,0.2467326776537302,0.2570204505137731,0.2669575386829795,0.2758691067419552,0.2853331501265272,0.294233282068479,0.3022592596921423,0.3092489651094027,0.3158058605865376,0.3216857958340924,0.3274407145056975,0.3334167834968956,0.3387390137495071,0.3443051742891179,0.3500726072607261,0.3505525606469002,0.3518161274320674,0.3533853688831176,0.3547929336808572,0.3544703342514703,0.3538879342089112,0.3536059597400539,0.3551803984037574,0.3560690280319485,0.3573969150476326,0.3585681301972857,0.3599493280022169,0.3617061373201834,0.3624701070558523,0.3618873551055745,0.362879657655777,0.3622513148868054,0.3632312505925855,0.3654355893267362,0.3670728774152169,0.36917199797487,0.3685169309901414,0.37051111533346,0.3694569962472237,0.3715146948003014,0.3771721018805046,0.379638147807421,0.3791912212964844,0.3735807255607865,0.3705426356589147,0.0,2.2340282936976363,57.05160296819477,213.31024921151496,320.8325282523014,fqhc6_80Compliance_baseline,32 -100000,95751,41598,391.21262441123326,7173,73.83734895719104,5605,57.9628411191528,2300,23.6446616745517,77.33346816806463,79.69529903668905,63.32120940122799,65.07007231589341,77.05861946972128,79.42077360866051,63.22062356059666,64.97231985967859,0.274848698343348,274.5254280285394,0.1005858406313251,97.75245621482044,89.53428,62.71615625989436,93507.4098442836,65499.218034166064,234.73483,143.22620033046866,244587.63877139665,149018.2664729023,267.93379,127.67576148600726,276395.24391390174,130696.3787574511,4063.85499,1817.8306709997685,4208008.824973107,1862841.95791083,1392.64493,603.1740675492157,1443629.1735856545,619125.1920488614,2271.67298,941.7417381922372,2338671.804994204,954989.0927129806,0.3802,100000,0,406974,4250.3368111038,0,0.0,0,0.0,19672,204.8542573967896,0,0.0,25097,258.5978214326743,2039914,0,73197,0,0,3539,0,0,33,0.3446439201679355,0,0.0,0,0.0,0,0.0,0.07173,0.1886638611257233,0.3206468702077234,0.023,0.3324496288441145,0.6675503711558854,25.202239419838797,4.599674923565272,0.3232827832292596,0.2096342551293488,0.2256913470115968,0.2413916146297948,11.187175434234383,5.606586163636801,24.508906290821297,12978.625516634344,63.24272421838372,13.800223667624696,20.297016426147398,14.288343622729876,14.857140501881762,0.5496877787689562,0.7804255319148936,0.6926048565121413,0.5794466403162055,0.1300813008130081,0.6995548961424333,0.9032258064516128,0.8497652582159625,0.7087719298245614,0.1622641509433962,0.5022316185106883,0.7235367372353674,0.6443001443001443,0.5418367346938775,0.1222426470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020467095597548,0.0042996795521843,0.0067596370501187,0.0089516145420553,0.0110453408189418,0.0131963465670152,0.0154446845818211,0.0175542446571819,0.0196026327623564,0.0213935491795727,0.0236613596055073,0.0256762999846003,0.0278580463375255,0.0299893924882339,0.0319422233685839,0.0339955347914168,0.0361384652024893,0.0383733358237607,0.0404532931330249,0.0424946881639795,0.0570065555973109,0.0711788839117511,0.0845933496322256,0.0968722392831601,0.1091050977579988,0.1243364984033666,0.1381406550037662,0.1507433935356158,0.1628806083325323,0.1746399425194908,0.1883166546378981,0.2010820168794633,0.2139368956853702,0.2251342689316459,0.2358635863586358,0.2475830832438179,0.2572312089040713,0.2672481710748452,0.2771547908201484,0.285781355563444,0.2944183571973815,0.3015030118720393,0.3093972995041596,0.3164743520615407,0.3231577797468047,0.3290777697071171,0.3344922461230615,0.3406411740020601,0.3458037113295262,0.3513584910644705,0.3523151832319499,0.3532854152897114,0.3544880291023942,0.3553561088592936,0.3565494446595003,0.356470172527692,0.3568139232064026,0.3582281189813824,0.3587256430909496,0.3593629637591587,0.3605901146401052,0.3616688137944703,0.3628751311647429,0.363452960032279,0.3649946895819252,0.3646518945850269,0.3646490902339398,0.3662359000284369,0.3669552924544972,0.3669538167025604,0.3684114118239684,0.3719101123595505,0.375063548551093,0.379710813720966,0.3825541619156214,0.3818445545751239,0.3846750426554987,0.385298368779682,0.3824531516183986,0.3866404715127701,0.0,2.194771748750009,59.43177259261335,217.28147683328928,322.30126744204983,fqhc6_80Compliance_baseline,33 -100000,95801,41592,390.3195164977401,7080,72.74454337637394,5503,56.8991972943915,2174,22.337971419922543,77.34149214859087,79.68022404955626,63.33904717832892,65.07210031863202,77.07879209406818,79.41888447808647,63.241865849768686,64.9782270947354,0.2627000545226963,261.33957146979014,0.0971813285602323,93.87322389662243,91.03138,63.76985623501534,95021.32545589296,66564.9171042216,234.97748,143.71713775444206,244646.9974217388,149386.67420427976,272.20187,129.72653609842232,280898.7066940846,132899.93648898858,3963.17985,1780.6459462110186,4100061.690379015,1821866.3648719932,1311.27993,569.0617735704818,1356194.4029811798,581444.4980433207,2142.75024,890.9525446514062,2202726.1093308004,899387.6106908298,0.3793,100000,0,413779,4319.151157086043,0,0.0,0,0.0,19608,204.10016596904,0,0.0,25398,261.8970574419891,2035261,0,72985,0,0,3676,0,0,52,0.5323535244934813,0,0.0,0,0.0,0,0.0,0.0708,0.1866596361718956,0.3070621468926554,0.02174,0.3200323537341601,0.6799676462658398,25.022057525071283,4.544831774418876,0.3254588406323823,0.2107941123023805,0.2300563329093221,0.2336907141559149,11.200277193037229,5.585842903704221,23.086294981642677,12946.889127321296,62.1886616576559,13.586581537293032,20.30649074796509,14.24938096097659,14.0462084114212,0.5507904779211339,0.7620689655172413,0.7035175879396985,0.6018957345971564,0.0972006220839813,0.7099853157121879,0.8917378917378918,0.8864628820960698,0.6986754966887417,0.147410358565737,0.4984303308379618,0.7058096415327565,0.6406601650412603,0.5715767634854771,0.0850241545893719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044605293837373,0.0065553807905018,0.0090842580173149,0.0111715928168082,0.0132727587576779,0.0156657963446475,0.0178496665951863,0.0198582720644626,0.022189682360892,0.0246800918710524,0.0266684466168965,0.0288003620616944,0.0307091643316301,0.0329460563787197,0.0349257865795675,0.0368414512922465,0.0390041493775933,0.0409302035599613,0.04280657922132,0.0575303876049872,0.0710177962734477,0.0842468193917545,0.0972413430718301,0.1085852198473926,0.124437115494387,0.1380319318109535,0.1507316969413366,0.1627298829104804,0.174482041608163,0.1880052095105858,0.2012432432432432,0.2134390787114998,0.2255543776434715,0.2360463581984518,0.2466065853280485,0.2566523605150214,0.2668845315904139,0.2766022518746743,0.2854365601235062,0.2937806779465265,0.3013079528202733,0.3087289578210705,0.3154580175520515,0.3221770523633274,0.3284381308779359,0.3346958163022962,0.3408242079321121,0.3464934393381165,0.3506255761885947,0.3514477154082127,0.3517367509144413,0.3517020796934002,0.351886396830217,0.3523793939574253,0.3523742396150958,0.3516427755930483,0.3529750448271891,0.3550083057900776,0.3557485673352435,0.3561352693349383,0.3568932655654384,0.3576150574761043,0.3583273413625741,0.3597242380261248,0.3610557246300766,0.3614013875694504,0.3632718014003819,0.3655875768451725,0.3674558587479936,0.3700944094779711,0.3710529151848259,0.3723921669013183,0.3769791990065197,0.381548757170172,0.3840144230769231,0.3884633421916523,0.3914575990047688,0.395152198421646,0.3982232522209347,0.0,2.1514593332812937,60.04659272928589,212.3427806260076,311.6534217056596,fqhc6_80Compliance_baseline,34 -100000,95691,41767,392.2625952283914,7272,74.64651848136188,5610,57.94693335841406,2267,23.272826075597496,77.3419109081298,79.71004319193801,63.33255108723839,65.08067637432909,77.05862642010497,79.4260395413424,63.22972549822437,64.97958250509191,0.2832844880248331,284.00365059560784,0.1028255890140172,101.09386923717524,89.50194,62.69066599139456,93532.24441170016,65513.64913251461,234.80782,143.81196510544433,244646.98874502303,149564.5973138577,275.75468,131.5901941560095,283122.70746465184,133644.84963738776,4065.30928,1829.46917901008,4209348.465372919,1873644.6208670535,1363.42271,594.1058110845096,1411047.747437063,607326.2103484179,2239.8491,930.7564787849968,2304278.2915843707,945527.6508827604,0.38119,100000,0,406827,4251.46565507728,0,0.0,0,0.0,19605,204.1257798539048,0,0.0,25680,263.389451463565,2039051,0,73184,0,0,3470,0,0,53,0.5434157862285899,0,0.0,1,0.010450303581319,0,0.0,0.07272,0.1907710065846428,0.3117436743674367,0.02267,0.3182175622542595,0.6817824377457405,25.062515389441945,4.505348418677702,0.3288770053475935,0.2046345811051693,0.2324420677361854,0.2340463458110517,11.09267499890249,5.478981623667078,24.22810593749813,13030.046702885753,63.326574833616014,13.547777903956046,20.83495793657933,14.46452476109438,14.479314231986276,0.551693404634581,0.7778745644599303,0.699728997289973,0.5866564417177914,0.1111957349581111,0.7166193181818182,0.9184210526315788,0.8626609442060086,0.7431506849315068,0.1518518518518518,0.4964302712993812,0.7083333333333334,0.6446700507614214,0.541501976284585,0.1006711409395973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0044998479781088,0.0065429093122337,0.0090497277971885,0.0112559482653434,0.0134601286959354,0.0156477772001182,0.0179125500122478,0.0201757972199509,0.02244465596119,0.0244284982060481,0.0264711620408875,0.0285981654395129,0.030804417703783,0.0326388673910575,0.0347640017366495,0.0368678866208924,0.0389369143118066,0.0412893163504029,0.0433405237544419,0.0588499456930403,0.0718973403531542,0.0856414452977464,0.0988304831619023,0.1107618635754743,0.1261333700102624,0.1398519052872782,0.1519422591737015,0.1646708186003781,0.1759758857792605,0.1898053913174587,0.2025450689289501,0.2152280068298731,0.226347842249702,0.2374353898603321,0.2485802530636644,0.2585339741945556,0.268413597733711,0.2779372227831157,0.2856603255270929,0.2936977172014023,0.3021045485403937,0.3094256956779159,0.3164778517053287,0.3232441105681569,0.3301176876958377,0.3358571930000501,0.3416759008062359,0.3471295060080107,0.3525685857932727,0.3533971420868158,0.3542257593699226,0.3547532855351936,0.3553221005173261,0.3558125362308069,0.3551683981489994,0.3545039764266025,0.3555201209889532,0.3565815828668275,0.3588838941920232,0.359589234328274,0.3599976186696301,0.3613827993254637,0.3619995048502172,0.3624503824184335,0.3642662187696829,0.3655846021258259,0.3689234184239733,0.3708235794849968,0.3745985870263327,0.3751321535279246,0.3772480807430075,0.3786642875350497,0.3808676823138195,0.3832008428311464,0.3797101449275362,0.383719123815442,0.3855923381220071,0.3830633702756464,0.3841653666146646,0.0,2.6160646570595123,61.69161916490616,209.24273448153065,322.72927112015464,fqhc6_80Compliance_baseline,35 -100000,95711,41477,389.7253189288588,7313,75.16377427881852,5681,58.77067421717462,2286,23.52916592659151,77.33810060160408,79.71976755932093,63.31256206328344,65.0745631599136,77.05826154306844,79.43840940750025,63.21083184722318,64.97437330948202,0.2798390585356429,281.35815182068313,0.101730216060254,100.18985043157612,89.6445,62.73391452112388,93661.64808642684,65545.14582558314,233.58758,142.08278139171313,243451.54684414537,147846.23647408668,271.08264,128.68755750422167,279335.3846475327,131527.28511107736,4093.37063,1823.2466271302264,4240855.8054978,1869035.6133842764,1393.45409,607.3755430778325,1442330.8815078726,621050.331610251,2252.49648,925.0903892084326,2321481.5642925054,940578.7272416792,0.38088,100000,0,407475,4257.34764029213,0,0.0,0,0.0,19504,203.1532425739988,0,0.0,25301,260.4298356510746,2040569,0,73236,0,0,3630,0,0,38,0.3970285547115796,0,0.0,2,0.020896239721662,0,0.0,0.07313,0.1920027305187985,0.3125940106659374,0.02286,0.3203175842769751,0.6796824157230249,25.266581506801764,4.577400779785035,0.3231825382855131,0.211406442527724,0.2312973068121809,0.2341137123745819,11.286872814151032,5.682194335081932,24.09933767316,13091.025763227815,63.85461855800584,14.064030042251185,20.736361440605016,14.588656395760813,14.465570679388827,0.5576483013553952,0.771856786011657,0.710239651416122,0.5996955859969558,0.1120300751879699,0.7120765832106039,0.8907563025210085,0.8537117903930131,0.7455830388692579,0.1807692307692307,0.5091371732593106,0.7215639810426541,0.6625544267053701,0.5596508244422891,0.0953271028037383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022298351949078,0.0045952525867315,0.0066196925701057,0.0087708600117893,0.0110194238967857,0.013404088450687,0.0153907349611406,0.0174757678204827,0.0196962724344224,0.0218194849741463,0.0242209210512823,0.0262971443827204,0.0284603837216475,0.0304203653739212,0.032619123760793,0.0346081906395643,0.0366727408266379,0.0388637589741461,0.0408042332442744,0.0427196399924998,0.0575519283185563,0.0714338054412796,0.0854099994753685,0.0982204833722471,0.1106576394161815,0.126253543773537,0.1396222410865874,0.1524422059183695,0.1643102176910006,0.1764705882352941,0.1903787103377686,0.2034621255588875,0.2167448543097536,0.2278517027050687,0.2385428131190843,0.2497838568800017,0.2610176684759543,0.2711421785477099,0.2805206310266108,0.2892157424709672,0.2975132906334333,0.305533110837871,0.312339316391209,0.3190578415264502,0.3254459454529979,0.3305714709078336,0.3362849617458924,0.3423291287767673,0.3473787994758896,0.3525493616683847,0.3541644204851752,0.3553920555532592,0.3564285210522603,0.3570467662843008,0.3585264974558871,0.358788232224797,0.3582572298325723,0.3595021620110813,0.3602472772107679,0.3625154351366345,0.3636397812071201,0.364056304520222,0.3650399663441313,0.3653448430896502,0.3652360722216858,0.3653480063629488,0.3665060309675211,0.3702524663535789,0.3722222222222222,0.3749205340114431,0.3752497729336966,0.3773694800381235,0.3796110414052697,0.3784869617950273,0.3805152224824356,0.3839782274287067,0.3806549885757807,0.3757575757575757,0.3794899917740609,0.3846153846153846,0.0,2.2449112932908197,60.01659375540672,218.55479373754247,326.40610317126243,fqhc6_80Compliance_baseline,36 -100000,95658,41382,389.1362980618453,7116,73.22963055886596,5511,57.10970331807063,2242,23.01950699366493,77.27782633283482,79.6876363998812,63.2892740309558,65.0718024984622,77.00121636474637,79.41155842272372,63.18741752942416,64.97306670667494,0.2766099680884508,276.0779771574846,0.1018565015316355,98.73579178726288,90.13928,63.09452944723455,94229.86054485771,65957.66663662609,231.96248,141.71832447889363,241945.62922076567,147611.80248448544,264.98922,125.5757101414664,274617.5646574254,129427.13864029228,4011.97577,1794.235721152841,4154975.548307512,1837038.895674245,1376.89302,594.2098618620103,1423818.227435238,605914.4910317868,2214.12434,921.1110773494552,2274404.670806415,929175.7223412537,0.37921,100000,0,409724,4283.175479311714,0,0.0,0,0.0,19409,202.32494929854272,0,0.0,24707,255.82805410943152,2037172,0,73107,0,0,3601,0,0,39,0.4077024399422944,0,0.0,0,0.0,0,0.0,0.07116,0.1876532791856754,0.3150646430578977,0.02242,0.3081962829255248,0.6918037170744752,25.227996829601725,4.54653785651352,0.3302485937216476,0.202322627472328,0.22591181273816,0.2415169660678642,11.172080249513048,5.595872744496704,23.791837679825477,12986.89910264942,62.19910453354581,13.009049059436608,20.68272214667856,13.867356931236737,14.639976396193893,0.5459989112683723,0.7506726457399103,0.7060439560439561,0.576706827309237,0.1269722013523666,0.7057926829268293,0.9055374592833876,0.8672566371681416,0.75,0.1768953068592057,0.4960704929745177,0.6918316831683168,0.6527777777777778,0.5273477812177503,0.1138519924098671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394260584074,0.0043201362972578,0.0066290378251071,0.008841732979664,0.0110687217050714,0.0132027994824828,0.0158694543600203,0.0178638912437312,0.0201407499846566,0.022146874135688,0.0247076923076923,0.0267272017585307,0.028667270332565,0.0306109828496042,0.0325221718616104,0.0345155718290046,0.0365488440534295,0.0385865445520908,0.0406585287169721,0.0425429861422479,0.057174208381231,0.0711151143183317,0.0843419022326723,0.0974595891564236,0.1096313962200436,0.1245382083011358,0.137761116362053,0.1505923968632799,0.1624971924232863,0.1738836337867872,0.1880179762687387,0.2005219331016037,0.2130712124180872,0.2246711462277572,0.2361754830186602,0.2470937641987211,0.2576826871538324,0.2674320445720074,0.2764699205448354,0.2849962215759463,0.2932936985287314,0.3014640535104542,0.3086644735285068,0.3160721779269828,0.3232330598602249,0.3294795548207191,0.3347950285657011,0.3409970958373668,0.3466623418747973,0.3518327651364993,0.3526172286261911,0.3536396774549873,0.3541354446486639,0.3548176611324585,0.3564374160823512,0.3564837598425197,0.3560815755146193,0.3571699826632543,0.3581686995361621,0.3590807074243648,0.3599035636254049,0.3622482454221922,0.3631674246252316,0.3644675067951569,0.3636011991103375,0.3642718751636383,0.3650998622589532,0.367294438974815,0.3708941930887068,0.3727946507693547,0.375854108956602,0.3798066595059076,0.3787347900872778,0.3803253292021689,0.3801849909411652,0.3824311261478975,0.3860059217702976,0.3812681309573145,0.3831644144144144,0.3822273961971284,0.0,1.820455709399587,58.3559208352912,213.4309621027027,319.39934678270527,fqhc6_80Compliance_baseline,37 -100000,95807,41819,392.1529742085651,7180,73.59587504044589,5552,57.25051405429666,2277,23.296836348074773,77.39792083527668,79.70161817456744,63.37134666233783,65.07162560052095,77.11564090097092,79.42341066353515,63.266701391195866,64.97214186513663,0.2822799343057625,278.20751103229213,0.1046452711419618,99.483735384311,90.09682,63.13069403493241,94039.91357625226,65893.61323800184,236.50068,145.09279845788666,246144.16483137972,150735.81101369072,273.26395,129.8085531314676,281330.9987787949,132438.19214303402,4008.56676,1802.311952894616,4135897.314392477,1833085.612632288,1380.45324,605.4317458049625,1421527.7276190675,612587.363976497,2252.54012,940.5840278562962,2307140.709969,942537.7038778848,0.38138,100000,0,409531,4274.541526193284,0,0.0,0,0.0,19855,206.49848132182407,0,0.0,25492,262.1311595186156,2036966,0,72996,0,0,3508,0,0,31,0.3235671715010385,0,0.0,0,0.0,0,0.0,0.0718,0.1882636740259059,0.3171309192200557,0.02277,0.3130457793066949,0.6869542206933051,25.189292946913724,4.616894200937455,0.3207853025936599,0.2109149855907781,0.2262247838616714,0.2420749279538905,11.106156550011873,5.436313773144669,24.127885026086485,13040.60775114396,62.767997094732834,13.7253409345156,20.0986876555814,14.15983586880802,14.78413263582782,0.5527737752161384,0.7608881298035867,0.7029758562605278,0.6019108280254777,0.1264880952380952,0.7049666419570052,0.9159663865546218,0.8341121495327103,0.740983606557377,0.1583011583011583,0.5039257673090649,0.6928746928746928,0.6614929785661493,0.5573080967402734,0.1188940092165898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0046307085896097,0.0069476139763679,0.0090675548064132,0.0116297983083929,0.0138100181148358,0.0160787430457907,0.0179853913327348,0.0201587771908493,0.0222424571060251,0.0244249782285743,0.0266840388206085,0.0287874740583968,0.0309438544496583,0.0332295767970151,0.0352076321060565,0.0372960614117671,0.0393668957368077,0.0414974816968689,0.0435162730669553,0.0580030670686543,0.0712627086732772,0.085284649182597,0.0979233478786604,0.1100920332711344,0.1251784260443871,0.1390179234277229,0.1522509767184389,0.1645439781177878,0.1763872947082738,0.1899499111326547,0.2021702440713172,0.215131514565007,0.2262044075025974,0.2369214185146075,0.2481726765305218,0.2585751095940836,0.2686970017319328,0.2771943751417555,0.2863110429518065,0.2946345975948196,0.3024122858278207,0.3104888321029718,0.3172559960724677,0.3239089828493802,0.3301913492893619,0.3360110941755578,0.3414119858750603,0.3473451327433628,0.353118619508661,0.3548699074509382,0.3552210517641565,0.3554999085576016,0.3560659616522153,0.3572191719839739,0.3568328391967478,0.3564101348254224,0.3574462502254948,0.3577177423489004,0.3580768061244567,0.35970723468143,0.361556290734761,0.3621276416957271,0.3629088456783185,0.3642943597191963,0.3640322115258505,0.3657862938028655,0.3690521628498728,0.3685478442625854,0.3675569615184399,0.3708502397639247,0.3726356630920946,0.3743209560938199,0.3789189189189189,0.3794915902140672,0.382881802924958,0.3833539603960396,0.3825270463359869,0.3883682469680264,0.3795088257866462,0.0,2.728387371942316,58.916802826711766,216.0163814003693,317.04000396834,fqhc6_80Compliance_baseline,38 -100000,95560,41509,389.6504813729594,7136,73.52448723315194,5578,57.858936793637504,2257,23.283800753453328,77.19945181010942,79.66953936933467,63.224607941291474,65.05333018411186,76.92521664160465,79.3934638726533,63.12415970878454,64.95436111749889,0.2742351685047737,276.0754966813721,0.1004482325069346,98.96906661296612,89.42428,62.67872643389358,93579.1963164504,65590.96529289825,234.20412,143.02420742131454,244598.3465885308,149181.94581552382,273.60181,130.80813113953084,282724.33026370866,134134.22467551526,4035.13663,1811.698969835761,4187550.962745919,1860805.8181621605,1355.33989,598.0221766221238,1402607.2310590204,610102.2986836785,2231.16152,927.2116245468212,2303329.2381749684,943816.1369070376,0.37946,100000,0,406474,4253.599832565928,0,0.0,0,0.0,19575,204.32189200502305,0,0.0,25483,263.143574717455,2031395,0,72939,0,0,3447,0,0,45,0.4709083298451235,0,0.0,0,0.0,0,0.0,0.07136,0.1880567121699256,0.3162836322869955,0.02257,0.312733084709643,0.687266915290357,25.196730383053414,4.513608697600538,0.3291502330584439,0.2006095374686267,0.2296522050914306,0.2405880243814987,11.082883735884344,5.612112384373575,24.08349679094554,13011.455085348269,63.04097420569939,13.236480513499464,20.5920861024025,14.365844603227597,14.846562986569827,0.5482251703119397,0.775692582663092,0.6851851851851852,0.5964090554254489,0.1251862891207153,0.7141812865497076,0.9257142857142856,0.8755760368663594,0.7622377622377622,0.1845637583892617,0.4942992874109264,0.7074122236671001,0.6262482168330956,0.5487437185929648,0.1082375478927203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020070754477906,0.0044641951259105,0.0066008611585019,0.0090999674638034,0.0113816834303864,0.0138432995575852,0.0159105985610042,0.0179235642754956,0.0204461727384363,0.0225048422303979,0.0246260919552028,0.027125127245432,0.0292887891083602,0.0313589569020651,0.0336371527777777,0.0358255612947302,0.0378329046710362,0.0400124714196632,0.0421748867246497,0.0440542430917309,0.0588266058596487,0.0722254844392249,0.0853103484521995,0.0980960308512543,0.1104675741946393,0.1257725619904801,0.1397419396015275,0.1526624693202433,0.1641225053829096,0.1756317883643402,0.1900709526226551,0.2029496668330692,0.2148428551168905,0.225058411855687,0.2352791850159487,0.2463618387433624,0.2573944962342066,0.2675371281542003,0.2769805050700474,0.2857372623355735,0.2943360326704875,0.3022617427619539,0.3097433341639671,0.3169550588800769,0.3236132774419964,0.33063768223467,0.3368098313689025,0.3414450416863501,0.3477125032492851,0.3521783476613725,0.3527446817142934,0.3536489342597836,0.3537826529458329,0.3533916372971327,0.3544751612132792,0.354397845325125,0.3543244447272958,0.3550491288910907,0.356422870510527,0.3569719538741072,0.3574207683299966,0.3589682302559506,0.3599492224690574,0.360138992305783,0.361565732601622,0.3617279072830238,0.3619398686787236,0.3619748699073487,0.3640039727582292,0.3669860279441118,0.3669858641130871,0.3676126700680272,0.3704845814977973,0.371162364441729,0.372235294117647,0.3763569127997137,0.3761650114591291,0.3795326349717969,0.3852278967600219,0.3946360153256705,0.0,1.9895518713558027,60.65182874583687,217.29323648423036,314.93659209151406,fqhc6_80Compliance_baseline,39 -100000,95686,41417,388.8970173275087,7117,73.32316117300336,5554,57.51102564638504,2266,23.36809982651589,77.33990302576841,79.73254864233854,63.32261558699434,65.08979602212236,77.06864691187764,79.456341901215,63.223894335459605,64.99106078077283,0.2712561138907716,276.20674112354493,0.0987212515347337,98.73524134953016,89.9503,62.988394316823786,94005.70616391112,65828.22389568358,236.22013,144.37848552687828,246328.7732792676,150347.27602758905,270.78175,128.7126732265864,279052.7140856552,131478.93997933692,4052.69017,1813.7616926279009,4201457.214221517,1861653.374867638,1356.96792,587.5532211531327,1404951.079572769,600892.7085313958,2238.71878,922.7744657255432,2311143.82459294,941304.100113038,0.37848,100000,0,408865,4272.986643814142,0,0.0,0,0.0,19717,205.4950567481136,0,0.0,25301,260.4769767782121,2037103,0,73122,0,0,3484,0,0,52,0.5434441820119975,0,0.0,0,0.0,0,0.0,0.07117,0.1880416402451913,0.3183925811437403,0.02266,0.3117749033204427,0.6882250966795572,25.22514444401915,4.577022565331105,0.325711199135758,0.200576161325171,0.234785740007202,0.2389268995318689,11.337644422528069,5.634325769400902,23.98781800254926,12905.31970039122,62.59434352407257,13.07247777551138,20.381358997712468,14.607083797121026,14.533422953727696,0.5489737126395391,0.7630161579892281,0.710889994472084,0.5812883435582822,0.1168048229088168,0.7127272727272728,0.925414364640884,0.8671328671328671,0.7572815533980582,0.1418181818181818,0.4950945202201484,0.6848404255319149,0.6623188405797101,0.5266331658291458,0.1102661596958174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019446976602856,0.0039734428057371,0.0063215999837647,0.0089993093080892,0.0114293849079243,0.0134062175532889,0.0156358299017409,0.0178104842002122,0.0200359829898593,0.0219554136215685,0.0241016966528269,0.0261245355067851,0.0285253015517188,0.0305402482360817,0.0327271601370598,0.0348018486543491,0.0370167005097177,0.0393078823358452,0.041308214831844,0.0431242963766,0.0570661541193552,0.0712820083331588,0.0846499234174692,0.0975953548061346,0.1090822784810126,0.1245557248032495,0.1374090340101415,0.1500548111410296,0.1619803291293343,0.1737046923744894,0.1875585514768432,0.2005301595888558,0.2121231893514289,0.2236775928801032,0.2348933453672926,0.2449904183789891,0.2552944589498114,0.2656682494317798,0.2752521528006262,0.2843185540678296,0.2927560038869094,0.3008793676037233,0.3075694288317497,0.3144400915309875,0.3214415814653811,0.3271398824558593,0.3334834947568636,0.3382405333876221,0.3436491582753392,0.3483211370300901,0.3491175320560357,0.3498884082329926,0.3510870945440693,0.35234248320593,0.3530882944040016,0.3526490827445631,0.3526625156455472,0.3540026624155669,0.3542318142205362,0.3549067257522693,0.3564018384766907,0.3575206513341653,0.358145684245871,0.3582719597628884,0.3593274387592404,0.3613291470434328,0.3621711373851307,0.3635817497707654,0.3664499717354437,0.3683623471298251,0.3694698354661792,0.3707103591823664,0.371470178548816,0.3705918429929469,0.3747637051039698,0.3758076094759512,0.3798570096363071,0.3781043046357616,0.3778971170152628,0.3857868020304568,0.0,2.0005575385427394,60.90523175979733,208.6076613954836,319.61007692921345,fqhc6_80Compliance_baseline,40 -100000,95789,41113,385.9106995584044,7069,72.62838112935724,5452,56.3843447577488,2188,22.49736399795384,77.331780499572,79.6722979864445,63.32970022966426,65.06256701171452,77.06992268120992,79.40899325909437,63.23411478651139,64.96855547624924,0.2618578183620883,263.3047273501319,0.0955854431528706,94.01153546528462,90.19736,63.11127400118846,94162.54475983672,65885.72174382076,231.13601,140.9646391803964,240782.04177932747,146648.19387257026,264.50894,125.93822282109096,272075.1234484127,128416.98744898528,3898.12422,1735.0093467829215,4036854.503126664,1778773.001612728,1336.04254,575.2107679775123,1383545.4697303448,589315.5194820052,2146.83002,884.5328863460045,2210517.637724582,898710.2260395736,0.37697,100000,0,409988,4280.11567090167,0,0.0,0,0.0,19400,201.97517460251177,0,0.0,24656,253.49466013842925,2039798,0,73209,0,0,3600,0,0,45,0.4593429308166908,0,0.0,0,0.0,0,0.0,0.07069,0.1875215534392657,0.3095204413637006,0.02188,0.3158672578261454,0.6841327421738547,25.54700305420566,4.5564244817006125,0.336573734409391,0.2059794570799706,0.231107850330154,0.2263389581804842,10.929783259012854,5.488764273573442,23.12764200171405,12880.612948309725,61.139859949009285,13.296585503235397,20.397871909455265,13.90342873159844,13.541973804720184,0.5612619222303742,0.792520035618878,0.7002724795640327,0.5841269841269842,0.1207455429497568,0.7217125382262997,0.9251336898395722,0.8609756097560975,0.7266187050359713,0.1747967479674796,0.5106177606177607,0.7263017356475301,0.6540350877192982,0.5437881873727087,0.1072874493927125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297037224613,0.0042780098130651,0.0063928886724101,0.0084013978625706,0.0105059750826341,0.0129431053269381,0.0150996105299647,0.01720160071869,0.0191879127394655,0.0213748272508573,0.0233833599868782,0.0257100026695689,0.0278754601353157,0.0299234659717143,0.0321794951183767,0.0345073552975716,0.036299050321565,0.0385409212068411,0.0404335356222462,0.0424718867138692,0.0572147090742132,0.071075175465205,0.084420077155317,0.0965941929992328,0.1089545004320246,0.1236830147206458,0.1370713869309449,0.1499346029923118,0.1620315034576965,0.1732036297018459,0.1867781760254878,0.1997166219607164,0.2114872285593119,0.2230558076969345,0.2342434547195351,0.2451195461898114,0.2556681246094796,0.2651527932426809,0.274093311256776,0.2830892875542377,0.2915351440100824,0.2990437893063381,0.3068776181572906,0.3127914364144181,0.3194420819867324,0.325879421777098,0.3316086193936357,0.3374260505915952,0.3440738867053223,0.3489573697703306,0.3503483404977833,0.3517139829633809,0.3527065687669997,0.352997352085775,0.3531450845036896,0.352787710440294,0.3522604609816496,0.3528753415188123,0.3536612546505049,0.3556287007388061,0.3574595183529323,0.3593790221975802,0.3599638100448166,0.3609208309938237,0.3609100810843519,0.3623005877413938,0.362927500501677,0.3668278193825639,0.3691722169362512,0.3709117048041212,0.3730555683017482,0.3760317290170436,0.3791914159800728,0.3792997069258059,0.3776529932426001,0.3793764988009592,0.382101167315175,0.374948917041275,0.3744419642857143,0.3696343402225755,0.0,2.0224002583437857,57.731887369636816,205.38871013954767,317.4077689568978,fqhc6_80Compliance_baseline,41 -100000,95691,41808,392.29394613913536,7348,75.7019991430751,5716,59.19051948459103,2288,23.565434575874427,77.34192318165195,79.71714050074102,63.32298576779221,65.07487213791451,77.06495958952699,79.43909004212763,63.22165733022504,64.97555731216875,0.2769635921249573,278.05045861339295,0.1013284375671688,99.31482574576478,89.7688,62.86517612516878,93811.12121307124,65696.01752011033,237.10475,144.72465128286927,247255.9383850101,150716.9550553112,271.50554,128.8860901058382,280428.514698352,132110.711819571,4092.23424,1827.5410991228773,4240774.148039,1874161.9868641216,1391.39535,603.9839217290487,1439495.7415012906,616680.6026514607,2252.70364,929.4608245469508,2322480.2332507763,944258.9927733586,0.38209,100000,0,408040,4264.14187332142,0,0.0,0,0.0,19783,206.1740393558433,0,0.0,25355,261.6128998547408,2036512,0,73040,0,0,3700,0,0,50,0.5225151790659519,0,0.0,0,0.0,0,0.0,0.07348,0.1923107121358842,0.311377245508982,0.02288,0.3202495451000779,0.679750454899922,25.420321801511253,4.560983648716238,0.3252274317704688,0.2136109167249825,0.2286564030790762,0.2325052484254723,11.23914046104263,5.64732034853957,24.18175605338088,13122.848163018947,64.17283558953207,14.14474333639644,20.89747119445682,14.630470049831668,14.500151008847142,0.5526592022393282,0.764946764946765,0.6993006993006993,0.5914307574598316,0.1143717080511663,0.705710102489019,0.9211267605633804,0.8461538461538461,0.7152542372881356,0.1570881226053639,0.5045977011494253,0.7009237875288684,0.6517094017094017,0.5553359683794467,0.1039325842696629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002450310338892,0.0046827013713625,0.0068170059953133,0.0088670851362057,0.0111559700202373,0.0134185823949827,0.0156903125828354,0.0179102039149214,0.0199498951889155,0.0225569298820445,0.0247621195964235,0.0268122118277692,0.0287994733810581,0.0308182127291273,0.0328767406092261,0.0351377901866501,0.0372384503832608,0.0394004816075728,0.0416588673280505,0.0436187062354118,0.0585894248647293,0.072772583060218,0.0863080556284439,0.0988403906052698,0.1107945552389996,0.1260199168192353,0.1394822899855601,0.1524318796736189,0.1648173091313364,0.175966079862602,0.1900418337861733,0.2027770557144095,0.2151993816610239,0.2272030819069299,0.2376570050968175,0.2492493157970549,0.2597054587273762,0.2706524798738952,0.2806245177688013,0.2886829413584136,0.2971515214648657,0.3051787699689859,0.312349012363223,0.3190029508432694,0.3251553134840066,0.3312577833125778,0.3373220729751403,0.3429266366982057,0.3483891058661719,0.3541903578134504,0.3555783617360304,0.3569130500821585,0.3580716284591684,0.3585222502099076,0.3585385438972163,0.3580381220887472,0.3585584158415841,0.3598722970081954,0.3616142575614772,0.3625543643620353,0.3639695517338596,0.3647161641441226,0.3656108597285067,0.3663833805476865,0.3683676917877661,0.3701088093743461,0.3719076729703479,0.3749133312322723,0.3773286467486819,0.3770791882212495,0.3801494713816988,0.3838001917137075,0.3877576910878528,0.3896717190951329,0.3953051643192488,0.3923095069591885,0.391871398240825,0.3919951729686243,0.3966557017543859,0.3986537023186238,0.0,2.06624906504033,60.45857110124104,214.62351394276655,335.381126461193,fqhc6_80Compliance_baseline,42 -100000,95735,41974,393.2417611114013,7112,73.07672220191152,5550,57.37713479918525,2257,23.22034783517,77.32392886815877,79.68859880075334,63.31606620966248,65.0654234994431,77.0462340203004,79.40973856634399,63.21456754877751,64.96604753855091,0.2776948478583705,278.8602344093505,0.101498660884971,99.37596089218914,89.52064,62.74253359480196,93508.78988875542,65537.71723486912,236.00898,144.80940874633134,245913.91862955032,150651.400998936,272.57155,130.1152766584689,281037.6769206664,133083.382508285,3969.76482,1785.5726274205306,4109844.8111975766,1828346.725252553,1320.29888,575.4337276012674,1366912.5293779704,588863.9375776241,2212.99588,917.5552734376604,2279414.884838356,931731.0551345908,0.38316,100000,0,406912,4250.399540397973,0,0.0,0,0.0,19691,205.0556222906983,0,0.0,25423,261.82691805504777,2035498,0,73158,0,0,3635,0,0,48,0.5013840288295817,0,0.0,0,0.0,0,0.0,0.07112,0.1856143647562376,0.3173509561304837,0.02257,0.312926992632284,0.687073007367716,25.21921104836985,4.608382802321723,0.3374774774774774,0.2066666666666666,0.2282882882882883,0.2275675675675675,11.50102956857829,5.947606350389408,24.095566512011544,13146.650324980095,62.9351319639297,13.431351410043678,21.209060423036043,14.29821948759647,13.996500643253505,0.5466666666666666,0.7497820401046208,0.6833956219967966,0.5927387529597474,0.1132224861441013,0.6979241231209735,0.9047619047619048,0.8680851063829788,0.7201365187713311,0.1191335740072202,0.4957861786660245,0.6797468354430379,0.6215253029223093,0.5544147843942505,0.1115618661257606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022283671133529,0.0046031086191688,0.0068199809202914,0.0090735434574976,0.0114334540423973,0.0138391038696537,0.0162816304059702,0.0186185143977053,0.0205400321033851,0.0225762524444808,0.0248010990813648,0.0269207470455968,0.0293210511165028,0.0313439907708788,0.0335675737031648,0.0357028415492593,0.0379615723237868,0.0401162488971923,0.0422195416164053,0.0442890928601939,0.0589567977281743,0.0732437097871004,0.0862398020175751,0.0988317683305117,0.1108357761984098,0.1258634002898274,0.1396089083173296,0.1526954077449717,0.1650466770630834,0.1764075296942669,0.1904413347685683,0.2032397244720309,0.2158192827403276,0.2274153519848688,0.2376145073845578,0.2491224573409073,0.2597527227280842,0.2696644385929377,0.2797116257947321,0.2884319886246359,0.2968105326595893,0.3052664885388834,0.3128098095486564,0.3202516297105538,0.3272864517385799,0.3332715912178015,0.3388276320576023,0.3453035502430188,0.3507842526228316,0.3559317547087398,0.3572528571042607,0.3584223455052303,0.3589863184079602,0.3591227535790435,0.3598783560173521,0.3592085469560679,0.3589625634517766,0.3608077884488883,0.3615928506616904,0.3634087006296508,0.3654098914717038,0.3669251670997044,0.3673881067451145,0.3680666232687602,0.3682494444981161,0.3680530092713844,0.3681651795927705,0.3687460417986067,0.3710134656272147,0.3719004959206527,0.3729077819048929,0.3734430961672101,0.3768860149613288,0.3764083697401701,0.3796913697847209,0.3799735545137637,0.3818933823529412,0.3902780556111222,0.3930682428801719,0.3983083429450211,0.0,2.30634671270748,61.69889967242074,215.6848401909414,309.5004170332854,fqhc6_80Compliance_baseline,43 -100000,95788,41543,390.40380841023926,7259,74.43521109115964,5650,58.33716123105191,2243,22.9360671482858,77.4066300966336,79.7470031295633,63.35719594835807,65.08832752472638,77.13697522922864,79.48040867839056,63.25777264062331,64.99399286712874,0.2696548674049666,266.59445117273606,0.0994233077347601,94.33465759764204,90.58302,63.46513447281143,94566.14607257694,66255.83003383662,236.14522,144.14350435995993,245904.11116214973,149856.88641579312,273.79963,130.08885120385278,282633.6179897273,133285.62518021758,4063.74726,1812.5049056616167,4197014.30241784,1846780.082746917,1350.18751,581.0808180320795,1395760.4084018874,592834.4761682871,2209.96864,913.701267772463,2262066.8977324925,913827.6295733358,0.37964,100000,0,411741,4298.461185117134,0,0.0,0,0.0,19746,205.4745897189627,0,0.0,25467,262.6320624712908,2035613,0,73067,0,0,3644,0,0,51,0.5324257735833299,0,0.0,0,0.0,0,0.0,0.07259,0.1912074596986619,0.3089957294393167,0.02243,0.3153483499214248,0.6846516500785752,25.37504668658501,4.508845669589234,0.3304424778761062,0.2044247787610619,0.2361061946902654,0.2290265486725663,10.888728154543369,5.439955829407261,23.64732258931789,12980.489105612114,63.41478923829607,13.468547667033578,21.01124445029996,14.79597346356698,14.139023657395544,0.5500884955752212,0.7731601731601732,0.6946973754686663,0.5877061469265368,0.1035548686244204,0.7148231753197893,0.9197707736389684,0.8715596330275229,0.7391304347826086,0.1142857142857142,0.4994214302244851,0.7096774193548387,0.6408106219426974,0.5439613526570048,0.1010486177311725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189798771961,0.0044918983593924,0.0068499406338478,0.0088292370685713,0.011259039269332,0.0133296674202154,0.0154972370057706,0.017577706323687,0.0198291017621325,0.0218694993655082,0.023889805581462,0.026063311271869,0.0279867620457161,0.0300497225625135,0.0320489031832426,0.0342217495017503,0.0362519010521741,0.0381724498999554,0.0399717382043369,0.0422632000916275,0.0567665995345973,0.0712866316648189,0.0844558119057851,0.0978496205831038,0.110133504736415,0.1251849346916346,0.1390608437566249,0.1515805590702718,0.1633214891641858,0.1744215938303342,0.1885328800137717,0.2017473670552107,0.2145069274653626,0.2263668825141684,0.2370375252658405,0.2476238949313446,0.2581522951331578,0.2679039129506188,0.27714833339004,0.2860740655944136,0.2943713932160658,0.3022570804062978,0.309641847202338,0.3167277693911293,0.3233389622538359,0.3289692666148896,0.3347860389976331,0.3405211369798495,0.3461020111963508,0.3504841415569147,0.351209182503608,0.352168163535181,0.353176002595534,0.352792208731893,0.3537622261200464,0.3532943302600545,0.3537371948906033,0.3551245720650625,0.3557654667687856,0.3563441127842273,0.3571348419674583,0.3595064940184079,0.3617785950102386,0.3635531748688762,0.3646765333781093,0.3653291030608795,0.3669007477326358,0.367686712234276,0.3682439537329127,0.3705889342152164,0.3747045991637884,0.3774014289494575,0.3810719216769173,0.3846969696969697,0.3820873289265432,0.3832903679400047,0.3843558282208589,0.3860670548082714,0.3883977900552486,0.3915732508697332,0.0,2.5227062553220607,58.32089458063586,219.45002009708315,325.0931255187099,fqhc6_80Compliance_baseline,44 -100000,95687,41670,391.7878081662086,7137,73.32239489167807,5571,57.63583349880339,2266,23.231995986915678,77.29491858535671,79.69645763526381,63.29396199958445,65.07369611918834,77.0201879890264,79.42209639831682,63.19313056024787,64.97542604283618,0.2747305963303148,274.3612369469872,0.1008314393365807,98.27007635216488,88.89342,62.22672865423413,92900.20587958656,65031.53892820772,234.40503,143.25612603124765,244339.57590895315,149093.53489998763,269.67098,128.74618230357015,278221.64975388505,131715.8720454221,4029.30308,1793.7926013763708,4172966.871152821,1837530.052051406,1364.44505,587.5374727607172,1410232.7170880055,599044.6711597047,2235.10214,922.3925156851176,2295754.67931903,932156.869112442,0.38121,100000,0,404061,4222.736630890298,0,0.0,0,0.0,19547,203.653578856062,0,0.0,25143,259.0843061230888,2041906,0,73307,0,0,3494,0,0,65,0.6792981282723881,0,0.0,1,0.0104507404349598,0,0.0,0.07137,0.1872196427166129,0.3175003502872355,0.02266,0.314220796578455,0.6857792034215451,25.20164473774295,4.581998946993211,0.3213067671872195,0.2075031412672769,0.2356847962663794,0.235505295279124,11.087830703176689,5.549005402294008,23.98117098791966,13061.379358579235,62.65434575618124,13.537311703823608,20.19059168415564,14.579411234533856,14.347031133668136,0.5444264943457189,0.7664359861591695,0.6949720670391062,0.5696877380045697,0.118140243902439,0.7237325495958854,0.9195710455764076,0.8539823008849557,0.7700348432055749,0.1405622489959839,0.4864608076009501,0.6934865900383141,0.6412556053811659,0.51364522417154,0.1128880526810912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0045562016093843,0.0069161631036408,0.0094352091911951,0.0115944094383989,0.0138819524425917,0.0163271970284501,0.0185836006620216,0.0204505463027376,0.0223931816552105,0.0243316989106128,0.0262576661906865,0.0283082938876312,0.0306809164081582,0.0327934846561174,0.0350365567379186,0.0368697021823381,0.0389327242524916,0.0407481768909879,0.0428279585582956,0.0580972674855853,0.0726564626562532,0.0854330419451994,0.0982312896539388,0.110430030384875,0.1261334659457629,0.1393482645154442,0.1525144007069922,0.1643212053213656,0.1755150214592274,0.189186568852406,0.2024623507010559,0.2148557263693492,0.2251248811306524,0.2362632528265364,0.2477214587093987,0.2575209783967149,0.2674853116628773,0.2774004497648956,0.2864646047637068,0.2946416160867349,0.302598147692812,0.3101402245487706,0.3175774593803249,0.3245583103318296,0.3305920849540038,0.336692487027149,0.3422658090810673,0.3483576831416433,0.3542741754543415,0.3547544339254211,0.3548724440652778,0.3554399469892427,0.3566139249660119,0.3574478848929427,0.3570682878899533,0.3572359222066861,0.3587327215513122,0.3596742391770253,0.3602856732701694,0.3616254950028286,0.3637847305150863,0.3643728112737859,0.364741641337386,0.3651745399815507,0.365666342284527,0.3696177757310614,0.3717044660440887,0.3744032252360575,0.3787799895862538,0.3813453824519341,0.3822914992768761,0.3848642476528799,0.387593927311762,0.3892147587511826,0.3906138046333891,0.3913574591540693,0.3993506493506493,0.4024523160762943,0.4088855421686747,0.0,2.286662495689317,59.93173607666666,208.6283797483088,323.41428017534446,fqhc6_80Compliance_baseline,45 -100000,95720,41553,390.03343083994986,7230,74.36272461345591,5619,58.12787296280819,2262,23.265775177601338,77.3593554540744,79.73153056305583,63.33143217950936,65.08427189193601,77.08078191740199,79.45141550882178,63.22924129468836,64.98400988098733,0.2785735366724111,280.11505423404515,0.102190884821006,100.2620109486827,89.59742,62.76094085161832,93603.65649811953,65567.21777227154,234.28918,143.66720178525952,244200.41788549937,149526.3913343706,273.14748,130.77822097066164,281735.8754701212,133848.5954854582,4067.33787,1831.7593904942496,4211448.6209778525,1875909.0477374108,1338.87004,586.440575278551,1384009.569577936,597936.1630574078,2229.14852,932.5360019403632,2295327.831174258,946282.3003802109,0.37903,100000,0,407261,4254.711659005433,0,0.0,0,0.0,19597,204.14751358127876,0,0.0,25462,262.3485165064772,2038762,0,73169,0,0,3462,0,0,38,0.3969912244045132,0,0.0,0,0.0,0,0.0,0.0723,0.1907500725536237,0.3128630705394191,0.02262,0.3214049914168757,0.6785950085831243,24.955828707877693,4.601066080684561,0.3354689446520733,0.2028830752802989,0.2279765082754938,0.2336714717921338,11.049276826035516,5.496663964632259,24.19521672464931,12971.429849857936,63.542620157965416,13.388712117678883,21.26435312582362,14.420157769770428,14.46939714469247,0.5365723438334223,0.7587719298245614,0.6827586206896552,0.5768930523028883,0.0944402132520944,0.6894366197183098,0.8943089430894309,0.8501070663811563,0.7035830618892508,0.1299638989169675,0.4848773517504167,0.6939040207522698,0.6276445698166432,0.5369609856262834,0.0849420849420849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024915934043673,0.0047340517197684,0.0069915877703024,0.0091202697487355,0.0114293849079243,0.0135298848585419,0.0158519802232529,0.01843496723353,0.0203430721105681,0.0223794264888051,0.0245603240527098,0.0267874567323,0.0288695008025021,0.0311250772717906,0.0332270480553921,0.0352705245094998,0.0371980826370986,0.039288899952289,0.0411455896876137,0.0431019217749075,0.0578063653830089,0.0718188097879555,0.0853132768983856,0.0975730299270226,0.1101772664480275,0.1262139003490955,0.1398752042787104,0.1521894196680471,0.1631314048791955,0.1747416540578823,0.1879424599967674,0.2006776578585578,0.2124828651624273,0.2237530367030706,0.2340610680296087,0.2457414718537905,0.2563022863589148,0.2660883848611673,0.2759235090506724,0.2842836190301586,0.2932578808498819,0.300625694403836,0.3081217253491975,0.3154529562489523,0.3226875455207574,0.3282331781112179,0.3347730288690252,0.3413541679921615,0.3464517967717698,0.352132939126762,0.3524541611695969,0.3532601962862531,0.3541695983788804,0.3546726276319584,0.3559196272222716,0.3560384774197495,0.355709364432224,0.3562472341053252,0.3565111991259219,0.3575517628805307,0.3582478576384331,0.3595336592704024,0.3597938144329897,0.3604813315339631,0.3615654064500543,0.3619728265137831,0.3629512893982808,0.3647375931504677,0.3656906429026098,0.3660357770324229,0.368626550298576,0.3685988524853879,0.3690841647480174,0.37170245398773,0.3704508932791379,0.3711266769559539,0.3703817261996014,0.3646464646464646,0.362962962962963,0.367315769377625,0.0,2.261528705676687,62.759812398001074,213.77427480639335,316.36018214053564,fqhc6_80Compliance_baseline,46 -100000,95887,41604,390.1363062771805,7196,73.95163056514438,5642,58.245643309312,2263,23.2982573237248,77.4394230829848,79.71946066247227,63.39129033748679,65.07735577128487,77.16041354458596,79.43870140375563,63.29068004005922,64.97831835984708,0.2790095383988387,280.75925871664253,0.1006102974275648,99.03741143779143,90.87892,63.75463538115901,94777.10221406446,66489.34201837475,238.65756,145.3089109309225,248296.29668255345,150943.52824775258,276.48463,131.49471674180924,284179.7949669924,134010.8598934352,4065.25098,1812.506150769211,4203769.270078321,1854500.3090508825,1352.04818,581.404844802609,1399512.2905086195,595859.377935404,2229.81342,918.80615163661,2297819.3915755004,934596.869810452,0.3788,100000,0,413086,4308.050100639294,0,0.0,0,0.0,19896,206.8893593500683,0,0.0,25710,264.0086768800776,2035000,0,73092,0,0,3543,0,0,57,0.5840207744532627,0,0.0,1,0.0104289424009511,0,0.0,0.07196,0.1899683210137275,0.3144802668148971,0.02263,0.3211419550059203,0.6788580449940798,25.233616135598933,4.537034679023734,0.3335696561503013,0.2011697979439914,0.2323644097837646,0.2328961361219425,10.997446233311098,5.487846499608717,24.147070218702428,12950.459291595946,63.409838847729056,13.183173894650924,21.280342899613668,14.555888679226117,14.390433374238354,0.5448422545196738,0.7515418502202643,0.6992561105207227,0.585812356979405,0.1042617960426179,0.6955266955266955,0.9073033707865168,0.8424507658643327,0.7403846153846154,0.0957854406130268,0.4957706766917293,0.6803594351732991,0.6533333333333333,0.5375375375375375,0.1063627730294397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024802591617736,0.0046921237180266,0.0069994623601375,0.0089857750611743,0.0109973878662831,0.0132068944465924,0.0152584670231729,0.0174826601387188,0.0198295942135589,0.0221669837762638,0.0243242689399372,0.0267283659272331,0.0290502908111885,0.0312319855060528,0.03335120311759,0.0350563793317087,0.0370266914959652,0.0387425006994166,0.0408205639300693,0.0429110882251973,0.0581220813875917,0.0718442747134483,0.0856762898040817,0.0980523912016378,0.1099321016895626,0.1254434121621621,0.1385040671072699,0.1507926388711802,0.1625165224065151,0.1744788322417704,0.1882048139667387,0.2010631171805786,0.2133446294546363,0.2247082987370537,0.2355547249461325,0.2470926694329183,0.257554485893836,0.2673060509411077,0.2765740562458235,0.2850742345101894,0.2940374865748172,0.3016252948182051,0.3091942747054026,0.3156394812783638,0.322234365513054,0.3276709493834612,0.3336293924117139,0.33849360685325,0.3435915347200662,0.3490682902401096,0.350527534047478,0.3518785829174743,0.352816990612377,0.3537607677631959,0.3537027677854743,0.353399932583581,0.3533735722319915,0.3547693318010179,0.3547350427350427,0.3544988661321714,0.3554405505240854,0.3558480110825252,0.3565118865272036,0.3567451532836922,0.3583079103509572,0.3593403439187955,0.3590874178590732,0.3620581402649588,0.3648799944020712,0.3688527838319794,0.3724081484176064,0.374481658692185,0.3783800819413804,0.3807114382091383,0.3819272519520091,0.3861124459394522,0.3841235184029944,0.3820666804721474,0.3779151447035684,0.386451116243264,0.0,2.3119820495058634,61.22279804782848,212.85930509101084,322.369892670612,fqhc6_80Compliance_baseline,47 -100000,95736,41462,389.759338179995,7080,72.79393331662071,5514,57.02139216177822,2224,22.91718893624133,77.34647984393533,79.6977261826599,63.33814763576003,65.0749849633882,77.0768673944952,79.42434334117576,63.23910701822558,64.97608646858964,0.2696124494401317,273.3828414841497,0.0990406175344489,98.8984947985614,89.39986,62.608282329691605,93381.65371438122,65396.80196550054,233.94298,142.71242538747038,243768.90615860283,148486.62532800122,264.881,125.95973461923904,272019.7000083563,128168.3815909632,3965.78518,1778.0618767631463,4107280.375198462,1822976.5353940488,1327.34776,577.3943986059643,1372290.36099273,588934.7148470426,2196.78048,921.1269960227944,2265933.859781065,940403.224149423,0.37872,100000,0,406363,4244.620623380964,0,0.0,0,0.0,19539,203.465780897468,0,0.0,24723,253.62455084816577,2041584,0,73305,0,0,3498,0,0,39,0.4073702682376535,0,0.0,0,0.0,0,0.0,0.0708,0.1869455006337135,0.3141242937853107,0.02224,0.323881198763607,0.676118801236393,25.4832626240725,4.59419261479811,0.3387740297424737,0.2036634022488211,0.2194414218353282,0.2381211461733768,10.98343508208736,5.448281244392673,23.75440750719464,12964.191709673843,62.119766206419285,13.00533067477864,20.98957424227341,13.457539941282077,14.667321348085173,0.5404425099746101,0.7622439893143366,0.686830835117773,0.571900826446281,0.1134805788271134,0.6771771771771772,0.9316239316239316,0.868421052631579,0.6410256410256411,0.1275862068965517,0.4968914395026303,0.6852331606217616,0.6344827586206897,0.551760939167556,0.1094819159335288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0047643665926669,0.0069818654164256,0.0092948131894922,0.0115117863607704,0.0135506597165662,0.0156167176350662,0.0178915890139723,0.0198403369075241,0.02201222446326,0.0241904898574196,0.0261839755301459,0.0282421401106244,0.0303529678342997,0.032437786306797,0.0346046511627907,0.0368683156118318,0.0386762112252308,0.0406016444393626,0.0424738574344873,0.0574080260575437,0.0707176422568525,0.0840449862565307,0.0966982124079915,0.1096444987981276,0.1249881069423741,0.138705332046373,0.1519272928506055,0.1640476546320217,0.1753692152701862,0.1892345785337496,0.2023208279710599,0.2141195904970982,0.2256146869194623,0.2365464937348868,0.2484033427417123,0.258482844749724,0.2679878974658913,0.2766536920824775,0.2851414824149387,0.2934110949107825,0.3009545199326221,0.3087890486227885,0.3154232794712155,0.3218274852024259,0.3277436207045255,0.3334167866307817,0.3389672916242103,0.3448266915732669,0.3500482414982619,0.3507479799819243,0.3518475129897873,0.3528781038374717,0.3532468660432529,0.354195814604233,0.3534748768019159,0.3523676659427067,0.3536160420775805,0.3550518711267846,0.3560719908401317,0.3575748469253597,0.3591836734693877,0.3602079255845276,0.3609576427255985,0.3611151339608979,0.3623002020944332,0.3624315097966092,0.3654817527465589,0.3675096109759108,0.37029222071821,0.3710253825712453,0.373012048192771,0.3755927916534935,0.377950334435304,0.3833190516995144,0.3875959692898272,0.3913981809773393,0.3986887932800655,0.4000564652738566,0.397934868943606,0.0,2.2199015294309774,58.79073315459307,210.82252304629955,318.08897207630315,fqhc6_80Compliance_baseline,48 -100000,95737,41754,392.2307989596499,7221,74.11972382673366,5554,57.40727200559868,2268,23.29297972570689,77.41222784566315,79.76865453774235,63.350809200748486,65.08986237647504,77.13135515987015,79.49003934922243,63.24729515643556,64.9905573629976,0.2808726857929997,278.61518851992173,0.1035140443129307,99.3050134774336,90.2176,63.25736699223411,94234.83083865172,66074.10613684794,236.48884,144.91341800661914,246374.1186792985,150723.57219639546,272.11006,129.69193897610813,280855.18660496984,132825.3401837043,4009.17368,1804.0315584183431,4144231.039201145,1841134.8034380125,1336.77874,582.5904360255532,1382467.7606359087,594948.792312611,2243.60288,936.0828098589152,2305549.68298568,943372.359105712,0.38193,100000,0,410080,4283.401401756897,0,0.0,0,0.0,19750,205.61538381190132,0,0.0,25404,261.9885728610673,2034956,0,72888,0,0,3531,0,0,47,0.4909282722458402,0,0.0,1,0.0104452823882093,0,0.0,0.07221,0.1890660592255125,0.3140839218944744,0.02268,0.3200158751157561,0.679984124884244,25.598691457794573,4.528575391869628,0.3284119553474973,0.2097587324450846,0.2205617572920417,0.2412675549153763,11.133121805713296,5.54962302028548,24.03497371511516,13053.195481233404,62.58342614460452,13.611407260847972,20.567601472277808,13.623726732979744,14.780690678498992,0.5381706877925819,0.7545064377682403,0.6825657894736842,0.5795918367346938,0.1156716417910447,0.703125,0.9245810055865922,0.8722943722943723,0.7414965986394558,0.1292517006802721,0.4821514712976363,0.6790582403965304,0.618208516886931,0.5284640171858217,0.1118546845124283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0043176405006841,0.0066956133587631,0.0091701194248111,0.011346190994215,0.0136611187458645,0.0159916016062947,0.0180096527657316,0.020142870282368,0.0222415557830092,0.0247499385094695,0.0268644459272186,0.0291967801297406,0.0310807192436819,0.0332366810785153,0.0353517603522771,0.0370393381172791,0.0389599609881615,0.041067975296833,0.0429823007927661,0.057630870100854,0.0719188832848502,0.0853719944609961,0.0985019041807814,0.1106643873200793,0.1264764404555268,0.1401322563182643,0.1532899570852013,0.1654821575521807,0.1764964741491268,0.1903693959847325,0.2035196014728178,0.2164318839948616,0.2277868412696674,0.2395751853606407,0.2508735537831811,0.2615314117107954,0.2712557447958907,0.2797728563316297,0.2879797273279746,0.2960011120893378,0.3037507901945634,0.3106909900204799,0.3170760934691431,0.3231910991266747,0.3295511943920858,0.3348260075550996,0.3399801738599969,0.3456113359277024,0.3510139583882012,0.3513912763214439,0.3523009566160223,0.3527601326662544,0.3543699816926381,0.3545208398064716,0.3546517833996676,0.3551978051434067,0.3567143440948099,0.3583563136213529,0.3595131759221366,0.3603061986557132,0.3613672182821119,0.3620877281098275,0.3631375872605214,0.3648483101534914,0.3642918499622563,0.3645883725562733,0.3675243175400062,0.3694022005746724,0.3680648990898298,0.3707507725868024,0.3725146198830409,0.3764965343415249,0.3778268483971674,0.3798536859876196,0.3826881975777725,0.382227632379793,0.3818842041557393,0.3819233948746211,0.3905165767154973,0.0,2.308790312850113,62.22491525293941,207.74626149079432,313.3025225949053,fqhc6_80Compliance_baseline,49 -100000,95744,41562,390.52055481283423,7052,72.49540441176471,5458,56.577957887700535,2212,22.78993983957219,77.32373385663094,79.69354276948087,63.321321634088775,65.07501307745703,77.05076324321136,79.41776909151862,63.2208396190986,64.97519821981382,0.2729706134195737,275.77367796224905,0.1004820149901775,99.81485764321008,89.4047,62.62564881166099,93378.90625,65409.47611512051,232.65031,142.43346954337784,242527.92864304813,148300.97632079397,264.01108,125.7312678743176,272989.0332553476,129165.79592762036,3960.91295,1786.2633915862257,4111002.0889037433,1839709.7070827847,1296.86226,566.852544131835,1347374.9477774063,584960.703453462,2174.8903,908.8318135329756,2243803.475935829,927324.8306483106,0.38095,100000,0,406385,4244.495738636364,0,0.0,0,0.0,19447,202.6341076203209,0,0.0,24674,254.99247994652407,2042055,0,73295,0,0,3635,0,0,36,0.3760026737967914,0,0.0,0,0.0,0,0.0,0.07052,0.1851161569759811,0.3136698808848553,0.02212,0.3077026844732227,0.6922973155267773,25.40024183663217,4.561194226977481,0.3336386954928545,0.1991572004397215,0.2332356174422865,0.2339684866251374,11.408579111300776,5.864108776459744,23.530590948875687,13030.886218099866,61.6107583135536,12.60753941589544,20.615641982088263,14.292280621189326,14.095296294380566,0.5439721509710517,0.766329346826127,0.6847885777045579,0.5923016496465043,0.105716523101018,0.6740847092605886,0.904320987654321,0.8408602150537634,0.697452229299363,0.1241379310344827,0.4993849938499385,0.7077326343381389,0.6312684365781711,0.5578727841501564,0.1003039513677811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681864235055,0.0042289086981654,0.0066686967113276,0.0090543259557344,0.0113035161972977,0.0133137752243579,0.0156243625831191,0.0176176810025226,0.0196437336387434,0.0219368317561754,0.0240795815813762,0.0262609249350409,0.0281467002726197,0.0302755507924403,0.0325241014842798,0.0344766985072158,0.0367251825384495,0.0389272189656066,0.0408929276965626,0.0427819744725188,0.0578826477343913,0.0714599686028257,0.0842984222893588,0.0973513695460091,0.1094918221219247,0.1252854846895618,0.1388258258895419,0.1518408171951479,0.1644434001559312,0.1748734665866003,0.1888492888137564,0.2013977540731765,0.2142367794343131,0.225981040684897,0.2371863276823727,0.24798174992525,0.2582382656987053,0.2685963414086026,0.2783252628117168,0.2873067283152317,0.2954923717059639,0.3034128097241702,0.3110914035710063,0.3180255196789073,0.3246972512723342,0.3305350098619329,0.3363352831393965,0.3417844084035112,0.3472440229870147,0.3523374238801632,0.3532592572615227,0.3543177869101139,0.3553629163195866,0.3567029431796774,0.3571513706793802,0.3563786513576987,0.3561559182379971,0.3571052977520704,0.3580715152136401,0.3587259598198327,0.3591698751056437,0.3613695423617861,0.3622767104819683,0.3632477671038718,0.3642831215970962,0.3643883097445054,0.3654952260439434,0.3678358114118694,0.3705504489477233,0.3741253116705542,0.3755021007433399,0.3768757422001511,0.38,0.3819659442724458,0.3843088890997059,0.3877403846153846,0.3897940362742084,0.3945647731916633,0.3975670445120265,0.4025720966484801,0.0,1.6081351957669603,62.17892817841624,198.71398164418,315.68556442923136,fqhc6_80Compliance_baseline,50 -100000,95762,41655,390.5306906706209,7218,73.93329295545206,5640,58.1023788141434,2241,22.90052421628621,77.38153749659537,79.72390636075815,63.350937847410606,65.08317255361204,77.10611257455402,79.45109278816432,63.24957877057296,64.98603980151583,0.2754249220413527,272.813572593833,0.101359076837646,97.13275209621486,90.19648,63.15620772858493,94188.17485014931,65951.2204513115,237.37875,144.95021997839882,247036.48628892464,150517.48081535342,271.62089,129.74536103384187,278482.69668553286,131501.4267283908,4090.81709,1820.4096257069295,4218205.65568806,1847320.05984308,1363.60286,589.9323180022794,1402965.2054050667,595055.4478835854,2218.13814,919.5947693885798,2269815.4382740543,921237.6829742836,0.38059,100000,0,409984,4281.280675006788,0,0.0,0,0.0,19847,206.4388797226457,0,0.0,25325,259.36175100770663,2037587,0,73142,0,0,3576,0,0,47,0.4699149975982122,0,0.0,0,0.0,0,0.0,0.07218,0.1896529073280958,0.3104738154613466,0.02241,0.3206026166248183,0.6793973833751817,25.325509455251005,4.526724981560489,0.3209219858156028,0.2108156028368794,0.2276595744680851,0.2406028368794326,10.81809603535732,5.241550070596902,23.78453715530653,13012.086454105924,63.25838403437064,13.852781377235177,20.373541988754496,14.347121036822395,14.684939631558564,0.5382978723404256,0.7577796467619848,0.7005524861878453,0.5669781931464174,0.1024318349299926,0.6956521739130435,0.8977272727272727,0.8571428571428571,0.7064516129032258,0.1220472440944882,0.4884426803642306,0.6989247311827957,0.6501095690284879,0.5225872689938398,0.0979147778785131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129757540156,0.004906035234253,0.0069295077310174,0.0089272112367082,0.0113569351526119,0.0135590459806386,0.0156869540399767,0.0180448672150891,0.0201927302083652,0.0225412352146686,0.024809394982784,0.0269451857934715,0.0291492730675111,0.0314453104889776,0.0333684036803234,0.0350991393116559,0.0371297886872115,0.0393805263867149,0.0415433041418643,0.0434280121610928,0.0574398363632568,0.071686312244407,0.0849312770619502,0.0979013630106035,0.1098828141466087,0.1249960367368076,0.1387043101346983,0.1513108932786153,0.1636802168600121,0.174413120377318,0.1886881822292075,0.2015099727426123,0.2140046522750494,0.2256939890710382,0.2363430356632125,0.2478549206735825,0.2583134464839307,0.2683340827338129,0.2782376956225901,0.286740729723236,0.2946849847349431,0.3028411083830235,0.3096474931664083,0.3164004936082523,0.3224733154424354,0.3287839968466693,0.3347379740662473,0.3407298081327294,0.3460382832128889,0.3519241936335321,0.3529205780549233,0.3532415691672402,0.3540179956562209,0.3543948491644361,0.3550883145097689,0.3552347234355602,0.3553758250106836,0.3567059672367709,0.3574314303734892,0.357879155371665,0.3589051874332603,0.3600688331981723,0.3610207550733458,0.3618611541310349,0.3626193461278811,0.3643238434163701,0.3661806746712407,0.3689745285098076,0.3715009143339429,0.3728340967934674,0.3729193341869398,0.3784043575776994,0.3803595248681954,0.3790849673202614,0.3780905287181438,0.3774668101901686,0.3754995388871811,0.3816778387162299,0.3810975609756097,0.3800383877159309,0.0,3.1053203908737546,58.875694130307245,212.73017585432584,327.0641146782051,fqhc6_80Compliance_baseline,51 -100000,95854,41364,387.9754626828301,7184,73.5493563127256,5600,57.80666430195923,2267,23.2749806998143,77.37299817448195,79.67492037645094,63.35320242165369,65.05731595134246,77.08932598152934,79.38968303941273,63.249029268450855,64.9549626622682,0.2836721929526078,285.2373370382111,0.1041731532028364,102.35328907425868,89.51382,62.69548692025233,93385.58641266928,65407.27243542505,236.57851,144.5241224739464,246199.814300916,150163.77248100904,268.97643,128.17465479893548,276729.78696768003,130706.60541767256,4071.45921,1827.062938574927,4203259.947420035,1861786.1733208064,1347.07194,585.4834353016254,1389246.1451791266,594716.4388566203,2244.8106,936.7327426585288,2306867.840674359,948101.0257085426,0.37817,100000,0,406881,4244.799382394058,0,0.0,0,0.0,19807,206.0007928724936,0,0.0,25141,258.28864731779584,2038182,0,73240,0,0,3614,0,0,40,0.4173013124126275,0,0.0,1,0.0104325328103156,0,0.0,0.07184,0.1899674749451305,0.3155623608017817,0.02267,0.3269866455110406,0.6730133544889594,25.18646088108552,4.580372768689673,0.3264285714285714,0.2014285714285714,0.2296428571428571,0.2425,10.889318098190008,5.32701743054744,24.14664311151185,12993.029497185038,63.09202000926133,13.322134102995491,20.662440639912823,14.194092688996347,14.913352577356672,0.5414285714285715,0.7553191489361702,0.6974835886214442,0.5777604976671851,0.1192930780559646,0.6920263350402341,0.8861111111111111,0.8616780045351474,0.7062937062937062,0.1607142857142857,0.4927947082447437,0.6940104166666666,0.6452775775054074,0.541,0.1085343228200371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0044898496964537,0.0068774535163263,0.00917896959974,0.0114165463676473,0.0137214983713355,0.0157777256836504,0.0178897631366786,0.019771326977899,0.021793848609491,0.0242303160698734,0.0262242605189448,0.0284569138276553,0.0304471343873517,0.0326381658299227,0.0346152257424924,0.0367791595108527,0.038712618904524,0.0406853582554517,0.0426871137560082,0.05706807920503,0.0710172945294947,0.0845939490445859,0.0973683657824543,0.1098028477546549,0.1250699821479501,0.1381429752241273,0.1509919411426991,0.1635534967124925,0.1751122445699345,0.1886374153832908,0.201960805508415,0.2142686346542616,0.2254378867726487,0.2360489044909817,0.2474687049961227,0.2578643723566893,0.2682633113119422,0.2775255906852175,0.2870218688783751,0.2953128073402987,0.302247191011236,0.3095170420900542,0.3171427543962696,0.3234893947860735,0.3304858055052204,0.3355423875324154,0.3415590699569613,0.3469937918788963,0.3523170232164801,0.352961799328488,0.3542798070296347,0.3543690691369182,0.3544256120527307,0.3556197510274584,0.3557738049566485,0.3548863113466512,0.3552404296971392,0.3556867779204107,0.3561989686291362,0.3563729908367132,0.3573820516377038,0.3585040445424939,0.3594621848739496,0.360599272587133,0.3620112899853648,0.3641287216666189,0.3660025300442758,0.3670022964140611,0.3694483170683131,0.3696177154052946,0.3728245249880249,0.3759188846641318,0.3764118325009604,0.3770304930179538,0.3800071318198026,0.3842828469970665,0.3800371977681339,0.3879164313946923,0.3863813229571984,0.0,2.399478788127259,60.03662333985682,213.3075576080112,322.0685912988146,fqhc6_80Compliance_baseline,52 -100000,95779,41746,392.2884974785705,7333,75.25658025245617,5722,59.02128859144489,2309,23.627308700237005,77.39816222968327,79.7273315811865,63.35848721039546,65.0795283573877,77.1147928681297,79.4470532412419,63.25293528625694,64.9783613735837,0.2833693615535679,280.2783399446014,0.105551924138517,101.16698380400636,89.39502,62.63181564606239,93334.67670366156,65392.0124934092,235.57003,143.8771810811997,245225.41475688823,149491.64334687113,277.47345,132.6550378434987,285520.8866244166,135302.61765902195,4129.11293,1857.149449426636,4265270.361979139,1893180.9889711065,1369.55432,596.8855395892026,1414895.4259284397,608196.9749505302,2269.28412,954.8653689587552,2326204.9300995,959231.487745976,0.38123,100000,0,406341,4242.485304711889,0,0.0,0,0.0,19663,204.5333528226438,0,0.0,25806,265.19383163323903,2040046,0,73199,0,0,3587,0,0,52,0.5429165057058437,0,0.0,0,0.0,0,0.0,0.07333,0.1923510741547097,0.3148779489976817,0.02309,0.3238651102464332,0.6761348897535668,25.31757049687861,4.534952029673046,0.3287312128626354,0.2081440055924502,0.2364557846906676,0.2266689968542467,11.15498609604427,5.580066319132623,24.694645466601045,13046.011812179397,64.4042844502319,13.834067988894384,21.20929983066188,15.057444897644356,14.303471733031284,0.547885354771059,0.7732997481108312,0.6900584795321637,0.5794530672579453,0.1017733230531997,0.7101865136298422,0.9153005464480874,0.8558758314855875,0.7476340694006309,0.123076923076923,0.4956099815157117,0.7103030303030303,0.6377622377622377,0.527992277992278,0.0964320154291224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.004712583103616,0.0069695248143489,0.0090685677146803,0.0110506785950287,0.0137297209273922,0.0158149487950272,0.0180182018528343,0.0200962412774956,0.022171066093718,0.0245674066940548,0.0265364131717478,0.0285082986485792,0.0307845902078037,0.0328879541424388,0.0348470921165425,0.0369013997082647,0.0388539787220805,0.0408829214557396,0.0427887118608768,0.0578267493061207,0.0720157292559978,0.0853838814858305,0.0981018645029743,0.1109916292407278,0.1269926846801133,0.140270677329713,0.153155262317761,0.164863450426684,0.1758763793121937,0.1897586143754241,0.202682821289485,0.2148748655198269,0.2261959395965821,0.2366410535457133,0.2473577618167531,0.2578637397938696,0.2679439294392944,0.2773049162467656,0.2859041486692407,0.2947633865053384,0.3025437108940997,0.3103011356235272,0.3168509148461667,0.323955979884848,0.3303721044849679,0.3363613613613613,0.3423423423423423,0.3476277490507108,0.3523717711689821,0.3528809080859554,0.3542576193689661,0.3548109480812641,0.3554568858291632,0.3562386711437316,0.3568113233559535,0.357217556647124,0.3578421709704974,0.3585296534721271,0.3598484171388735,0.3613174281641533,0.3629858674753721,0.3655514250309789,0.366965085049239,0.3673027928664135,0.3671140589095467,0.3668686179139289,0.3678337943173246,0.3701239582603823,0.3723741577487118,0.3746579091406677,0.3781925863254191,0.3798861717430734,0.3781333333333333,0.380109248446035,0.3839808726838015,0.3832901356914164,0.382072601906307,0.3876311430149088,0.3907563025210084,0.0,2.6856865677593103,60.836412632853055,221.59664426825944,324.20904983572143,fqhc6_80Compliance_baseline,53 -100000,95877,41612,390.0309771895241,7117,73.11451130093766,5540,57.19828530304453,2167,22.22639423427934,77.3584022892406,79.64132903726849,63.35300198276878,65.04184067170594,77.08379285553178,79.36778243970626,63.2513667063264,64.943425857882,0.2746094337088181,273.54659756223043,0.10163527644238,98.41481382393624,89.24828,62.56586051776566,93085.99559852728,65256.15165030788,235.98957,144.54216147096568,245561.91787394267,150183.7176646535,269.30995,128.39400922381748,277353.9222128352,131201.78771321787,4005.71273,1792.7251441002131,4139130.3545167246,1831192.7390201,1353.42978,589.4608139933242,1396395.558893165,599655.0074999022,2138.6566,899.3025776587833,2195954.837969481,905885.9057841622,0.38024,100000,0,405674,4231.181618114877,0,0.0,0,0.0,19645,204.2721403464856,0,0.0,25142,258.71689769183433,2039061,0,73208,0,0,3356,0,0,52,0.5423615674249299,0,0.0,0,0.0,0,0.0,0.07117,0.18717126025668,0.3044822256568779,0.02167,0.3140374331550802,0.6859625668449197,25.304344372751267,4.530313721199772,0.3505415162454873,0.1976534296028881,0.2169675090252707,0.2348375451263538,10.902866532033787,5.511448942140307,23.240094997711047,12949.321143461622,62.51891269109806,12.906949795178916,21.89049618891603,13.339703806542172,14.381762900460952,0.5444043321299639,0.7598173515981735,0.6915550978372812,0.569883527454243,0.1199077632590315,0.6927578639356254,0.9174041297935104,0.8212058212058212,0.7178571428571429,0.149812734082397,0.4958063743110472,0.6891534391534392,0.648870636550308,0.5249457700650759,0.1121856866537717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185412426976,0.0044380946590874,0.0067044659248815,0.0090365421519154,0.0114657450701362,0.0136781363539217,0.015801377399242,0.0178081493191901,0.0201443696844082,0.0221327145033173,0.024343054858886,0.0263271206249615,0.0283974200969517,0.0304482893410414,0.0324711459192085,0.0347732716610225,0.0367634889109566,0.0388653393721434,0.0408748208611128,0.0430091865291981,0.057878550951264,0.0712718610919576,0.0846231176827863,0.097020097020097,0.1096165999578681,0.1245312516505223,0.1383110621297699,0.1511658816149028,0.1634894543591495,0.1751942970466848,0.18891269935281,0.200832972739074,0.2130384673929588,0.224072514952382,0.2346207139243847,0.2457328817161453,0.2570083553651707,0.2677906623626404,0.2780967727293359,0.2868029611973138,0.2948441913228689,0.3024363415090807,0.309884354708754,0.3158823105906069,0.3223726627981947,0.3282846985631758,0.3341778184691407,0.3395747503220622,0.3445144527443975,0.349319601821455,0.3493707464621368,0.3509038222712847,0.3515647065469129,0.3519294025590123,0.3526710500812571,0.3533860010451569,0.3532974107100281,0.354144347568111,0.3548481158127647,0.3557031361878848,0.3563617916729295,0.3566599924667446,0.3585377646044859,0.3585091830556365,0.3594787015807892,0.3594006943175589,0.3605321760977559,0.3627660914472855,0.3659540052043041,0.3686138653287142,0.3700718897385411,0.3706010754405579,0.3755386565272496,0.3752319109461967,0.3789544107808468,0.3798720888138047,0.3824588880187941,0.383670963781461,0.3852981969486824,0.3844973138910207,0.0,2.1618731845976344,60.46937827039401,209.29400447377088,318.7369812428227,fqhc6_80Compliance_baseline,54 -100000,95726,41524,389.4239809456156,7126,73.17761109834319,5599,57.85262102250172,2265,23.25387042182897,77.38965647392791,79.75771982440794,63.34469261111818,65.09462174866366,77.10971462515339,79.47685856123226,63.24175200624055,64.99408239090428,0.2799418487745271,280.86126317568016,0.1029406048776309,100.53935775937362,90.2264,63.14343607136073,94254.8523911999,65962.68105985911,234.49865,143.60965810790418,244338.9570231703,149391.9291602116,273.18887,130.58395742337785,281103.8798236634,133217.3542850665,4051.10947,1826.012903355338,4187157.815013685,1863111.982514624,1348.3531,584.2613814117447,1390791.6135637132,592723.7855666622,2234.20098,931.6718953935124,2295457.8066564985,940596.029672325,0.37966,100000,0,410120,4284.311472327267,0,0.0,0,0.0,19624,204.32275452855023,0,0.0,25528,262.4156446524455,2036705,0,73085,0,0,3521,0,0,35,0.3656268934249838,0,0.0,0,0.0,0,0.0,0.07126,0.1876942527524627,0.3178501262980634,0.02265,0.3209234053909794,0.6790765946090206,25.09999091621666,4.560986456508364,0.3295231291302018,0.202000357206644,0.2337917485265226,0.2346847651366315,10.976173155283089,5.451015193605145,24.08625919153039,12980.835329551404,63.16575442465037,13.450106391239157,20.60508705146922,14.75178592071621,14.358775061225776,0.5384890158956956,0.7674624226348364,0.6878048780487804,0.5584415584415584,0.1118721461187214,0.69375,0.9193954659949622,0.8600451467268623,0.689873417721519,0.1232394366197183,0.4847319067083434,0.6852861035422343,0.6333808844507846,0.5166163141993958,0.1087378640776699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195040920508,0.0049471325892359,0.0071342311166137,0.0095190686145031,0.0115352925020598,0.0135534194126512,0.0157726776847707,0.0180582068374148,0.0201467822389402,0.0225399977480474,0.0246727554147831,0.0270006673168728,0.0292376017764618,0.0311084109069939,0.0333058277462609,0.0354086568274835,0.0374650512581547,0.0395289723504694,0.0414089864984253,0.043512237816886,0.058698852542886,0.0726823600833167,0.0857928255920093,0.0978506727825529,0.1100269001529616,0.1255407134773825,0.139427310438482,0.1514696805227422,0.1638705267991584,0.1751691743434105,0.1889825672168922,0.201373864128083,0.2136589502984701,0.225158828224951,0.2359705105633802,0.2471786920648984,0.2580389707440579,0.2680783150133747,0.2781047641728756,0.2870908674753948,0.2948769851827004,0.3025175691951496,0.3091749736895006,0.3158203592814371,0.3231494074217991,0.3290530881845517,0.3349982474588153,0.3407551685507689,0.3461389011216745,0.3511412089290193,0.351362999676759,0.3519864541174527,0.352032909751768,0.3524693231583055,0.3522032187184512,0.3524621531019914,0.3521726063367025,0.3533325685442239,0.3541812113678546,0.355287288784431,0.3562943593574897,0.3571738530119531,0.3589475664040459,0.3578905081795255,0.3569799543872284,0.3581965076882981,0.358169451006062,0.3607042741503669,0.3642521963094944,0.3671346853874155,0.3695752114748069,0.370021528525296,0.3710220415422727,0.3722910805261957,0.373689138576779,0.3759933578460444,0.3812078479460454,0.3800364446244179,0.3749312809235844,0.3766781741465286,0.0,2.436292350963454,63.43324442445689,205.68635792996685,318.53012183355787,fqhc6_80Compliance_baseline,55 -100000,95779,41691,392.9358210046044,7094,73.03271071946878,5523,57.2672506499337,2182,22.604119901022145,77.34687979821054,79.70602283653646,63.33382307926016,65.08117257797471,77.07739563046,79.43041775866028,63.23511218302058,64.98123390784458,0.2694841677505337,275.60507787617894,0.0987108962395737,99.93867013012904,90.7412,63.56201146211222,94740.18312991364,66363.20222816298,240.00158,147.05683942337294,250177.7216300024,153136.88744231296,269.47262,128.8330541636391,278226.30221656105,132222.4624885339,3979.45752,1790.6391434336542,4129899.195021873,1845016.3673250596,1350.416,588.4445849271623,1401124.8499149082,605884.034608127,2153.46768,898.7943310281664,2231745.434803036,924884.8904330588,0.38064,100000,0,412460,4306.3719604506205,0,0.0,0,0.0,20081,209.2316687374059,0,0.0,25048,258.4700195241128,2032127,0,72987,0,0,3685,0,0,61,0.6264421219682812,0,0.0,0,0.0,0,0.0,0.07094,0.1863703236654056,0.3075838736960812,0.02182,0.3126009693053311,0.6873990306946688,25.208211852387414,4.557597389776243,0.3324280282455187,0.2060474379866015,0.2317581024805359,0.2297664312873438,10.852869259495977,5.323801958856904,23.376864148356766,12967.773521015935,62.19536349966909,13.233240168404922,20.59760034526027,14.355959494022663,14.008563491981231,0.5498823103385841,0.7829525483304042,0.6835511982570807,0.5734375,0.123719464144996,0.7146932952924394,0.9331395348837208,0.8468085106382979,0.7555555555555555,0.1648351648351648,0.4938121815093424,0.7178841309823678,0.6273792093704246,0.5139896373056995,0.1124497991967871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019050707308175,0.0039548939277167,0.0062233502538071,0.0083844019634744,0.0104785545698705,0.0125353862446793,0.0146396166785605,0.0167211106574111,0.0191061315450512,0.0211430560674939,0.0232322093154392,0.025566519154354,0.0275086896608461,0.0297089878959567,0.0316321791630115,0.0337406189915028,0.0354665009837423,0.0375730038693347,0.039489002536277,0.0414015723434164,0.0558077882497834,0.0697788749189347,0.0835281659869366,0.0968891224382553,0.1096837423991737,0.1249286755848602,0.1379968203497615,0.1502748216582855,0.1622967956649741,0.1737002206465157,0.187653949165851,0.2010827282157676,0.2135314822057098,0.2248806962751029,0.2361555108811477,0.248188185308534,0.2586587568857468,0.268932409947385,0.2783899411037097,0.2871101132862166,0.2958706571302918,0.3030742764859393,0.3110066541949844,0.3176759803333733,0.3244349441927687,0.3308136457089391,0.3362747675015333,0.3414351704567145,0.3464103925708143,0.3509947754498918,0.3519074615208521,0.3523263979730939,0.3535071777749602,0.3537639069498627,0.3538171172108368,0.3537633914202951,0.3534091989729609,0.3549480194762469,0.3565730914070524,0.3572820742065266,0.3589315212494368,0.3599944497304155,0.3610854212207836,0.3606675201581205,0.3619310078081562,0.3650756143667297,0.3661664706051129,0.3686833417978669,0.3710578418894074,0.3758606885508406,0.3780577524370057,0.3780807270783213,0.3787252970705979,0.3811274509803921,0.3805534638554217,0.3792405665992144,0.3822714681440443,0.3819116135662898,0.3817976894899972,0.3868149324861001,0.0,1.4401829016638117,62.70305555672574,204.02805060170985,315.01888375514505,fqhc6_80Compliance_baseline,56 -100000,95747,41695,391.6989566252728,7209,74.05976166355082,5627,58.12192549113811,2312,23.73964719521238,77.36211040614715,79.72328250749305,63.32787542470121,65.0754631751064,77.091039786802,79.45215583532544,63.22852015693327,64.97830094993456,0.2710706193451528,271.1266721676111,0.0993552677679403,97.16222517184292,89.3486,62.587246855800736,93317.38853436662,65367.31892988891,234.11689,142.93995949915038,243895.3178689672,148668.38595376397,270.16111,129.10616824455627,277684.1989827358,131392.12301585934,4068.28301,1821.1156279539773,4207252.550993765,1860398.1664830896,1400.7733,602.4774413645353,1447292.5522470677,613541.2160135931,2278.44742,936.393343339194,2342526.157477519,948050.9893602018,0.38195,100000,0,406130,4241.699478834846,0,0.0,0,0.0,19558,203.60951256958444,0,0.0,25269,259.4232717474177,2039983,0,73241,0,0,3546,0,0,42,0.4386560414425517,0,0.0,1,0.0104441914629178,0,0.0,0.07209,0.1887419819348082,0.3207102233319461,0.02312,0.3231683168316832,0.6768316831683169,25.12185154671289,4.583912553251502,0.3360582903856406,0.198329482850542,0.224098098453883,0.2415141283099342,11.11586600562532,5.5469591814659776,24.355438675238894,13058.82549774986,63.3994955831424,13.136984225421733,21.4702421060038,14.18856335800077,14.603705893716104,0.5519815176826017,0.7795698924731183,0.6948704389212057,0.5860428231562252,0.1346578366445916,0.7192982456140351,0.9234972677595628,0.8519269776876268,0.7185430463576159,0.1893939393939394,0.4952403617325083,0.7093333333333334,0.6394849785407726,0.5443169968717414,0.1214611872146118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019958866498485,0.00451254385787,0.0068013399654857,0.0092260483453061,0.0110574233253649,0.0131278771336619,0.0156629208900128,0.017969451931716,0.0201633930123413,0.0223539772261817,0.0244277627368939,0.0262444275530538,0.0283841896257278,0.0306259145524618,0.0329232547578747,0.0350068235391423,0.037277885929669,0.0393733464750739,0.0411101294111532,0.0428189023945671,0.0577029467333326,0.0718918692722935,0.0853607382550335,0.0982068675395698,0.1100388136522803,0.1253199094735506,0.1391655793527034,0.1512683762867392,0.1636252911386995,0.1746836800343126,0.1885837372105546,0.2010930144472701,0.214089900352465,0.2255852111135419,0.2364484849818946,0.2488060544948862,0.2591835595018708,0.2689394365721617,0.2786926176019973,0.2877305533279872,0.2958558642011046,0.3030029959741597,0.3107119173929519,0.3178606135499274,0.3235672969425947,0.3299903782103471,0.3363318591277547,0.3426475457856797,0.3491946247845637,0.3543765597559848,0.3553344657445604,0.3562759171752517,0.3569606336946257,0.3577978997309572,0.35778329591245,0.3580112530087234,0.3572039942938659,0.3583622233540903,0.3593835429196282,0.3610065137860266,0.3622604753966321,0.3627911567311488,0.3649384370550297,0.3645267324075937,0.3658120069270733,0.3670691318747229,0.368361066788238,0.3707872233400402,0.3722072182666339,0.3759911195686647,0.3788092102275308,0.3809523809523809,0.3803588290840415,0.3781569965870307,0.3802302723953945,0.379175086176156,0.3790310255234602,0.3806943608268112,0.3821049768833288,0.3882854926299457,0.0,2.524192080776916,62.77537087931998,209.4227669869521,319.1209305281513,fqhc6_80Compliance_baseline,57 -100000,95755,41721,391.3947052373245,7338,75.2649992167511,5735,59.25539136337528,2377,24.374706281656312,77.32840490063373,79.68928839920345,63.31625382636724,65.06499865580663,77.03783177974238,79.40032448135216,63.20875382202559,64.96125061673843,0.2905731208913522,288.96391785129083,0.1075000043416523,103.74803906820772,90.49678,63.3384428260917,94508.67317633543,66146.3556222565,236.4739,144.0135780999439,246305.47752075607,149746.2149234441,271.82571,129.5130975391061,280296.266513498,132412.1202795636,4184.13314,1885.2606327097085,4325720.756096287,1924934.888736576,1387.00041,612.5403454349031,1433632.1758654902,624844.162044642,2341.51242,979.2819706399084,2402961.182183698,986269.1403269408,0.38178,100000,0,411349,4295.84878074252,0,0.0,0,0.0,19774,205.8378152576889,0,0.0,25377,261.52159156179835,2033211,0,73069,0,0,3489,0,0,42,0.4281760743564305,0,0.0,1,0.0104433188867422,0,0.0,0.07338,0.1922049347791922,0.3239302262196784,0.02377,0.3161783769769251,0.6838216230230749,25.359058709352983,4.594877718460563,0.3326939843068875,0.2019180470793374,0.2282476024411508,0.2371403661726242,11.315772474186897,5.7159348475997165,25.391744495617644,13073.62945981557,64.68141004854651,13.545212073618195,21.550780446738464,14.603821022326033,14.981596505863816,0.5429816913687882,0.7668393782383419,0.689203354297694,0.5729564553093965,0.1183823529411764,0.7035991531404375,0.9090909090909092,0.8512396694214877,0.760655737704918,0.1498257839721254,0.4902732746641964,0.7074663402692778,0.6341292134831461,0.5159362549800797,0.1099720410065237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025130974939959,0.0049493904541674,0.007229013523941,0.0093091322994369,0.0115969156273524,0.0138221153846153,0.0160405449502365,0.0184281455466165,0.0205688114661923,0.0226114193297438,0.0247757675157603,0.027075589872066,0.0291341011929247,0.0309725398100653,0.0329398167258317,0.0350926155627222,0.0372548004761658,0.0392433419065792,0.0412769672028931,0.0433600666597229,0.0575985636893143,0.071668392481722,0.0854497409978399,0.0982581180947575,0.1104390161654056,0.1266661733771656,0.1406119094331618,0.1535325797730804,0.1656376842555009,0.1774653626731866,0.1914235856779697,0.2041032743956543,0.2170648909779344,0.2287954851199265,0.2394204940772381,0.2495790126739342,0.2601022504018574,0.2696598853900454,0.2792372255727054,0.2882004952765294,0.2966767021769337,0.3042017790262172,0.3112685568048529,0.3178925629757702,0.32368078453321,0.3298200577592378,0.3353960085352077,0.3413529614368996,0.3476713680874828,0.3526697167640758,0.3540569731335223,0.3543390709478097,0.3543724301640456,0.3554329408697919,0.3562515839532491,0.3565335013910878,0.3554676327581275,0.3554474226804123,0.3568083975095621,0.3581152583717468,0.3592612792206571,0.3598873306488406,0.360744877393349,0.3614249455313223,0.3632077752526473,0.3646867712945738,0.3657501648556438,0.3675518645994505,0.3691814369780472,0.3720280836125738,0.372135571513516,0.3735656608584785,0.3741984156921916,0.3755425264600624,0.3757541478129713,0.3793389408837815,0.386042944785276,0.3861528951164228,0.3918767507002801,0.4028548770816812,0.0,2.4380191086727447,62.2912567691049,218.8926409328381,326.67597291010907,fqhc6_80Compliance_baseline,58 -100000,95739,41563,389.9142460230418,7178,73.83615872319535,5526,57.2389517333584,2287,23.57450986536312,77.31464774318667,79.68132525305256,63.30648041847581,65.05632913027675,77.03173334937232,79.39553047239693,63.20282747040336,64.95397123151548,0.2829143938143517,285.7947806556353,0.1036529480724439,102.35789876126944,91.1955,63.80949953168466,95254.28508758188,66649.43182160317,234.7127,143.7914494339667,244665.51770960636,149697.69233924523,265.56943,126.85467821116276,274651.3542025716,130403.31468589776,4016.98652,1800.6221740395274,4160013.787484724,1845007.3741093425,1360.472,594.2529196315965,1404841.6946072134,604539.0219455332,2264.97836,942.2316677374976,2335273.3159945267,956616.7713663392,0.37984,100000,0,414525,4329.740231253721,0,0.0,0,0.0,19680,205.04705501415305,0,0.0,24761,255.87273733797093,2029071,0,72781,0,0,3630,0,0,45,0.4700278883213737,0,0.0,0,0.0,0,0.0,0.07178,0.1889743049705139,0.3186124268598495,0.02287,0.3128306878306878,0.6871693121693122,25.66919050410189,4.533083274342345,0.3248280854144046,0.2048498009410061,0.2245747376040535,0.2457473760405356,10.81410520399455,5.330103638693364,24.35225806851132,13035.27426416346,62.34364455560205,13.220316012528698,20.476837944294807,13.67752835537308,14.968962243405478,0.5343829171190735,0.7712014134275619,0.6924791086350975,0.5535858178887993,0.1104565537555228,0.6907600596125186,0.9096385542168676,0.8393234672304439,0.7315175097276264,0.1428571428571428,0.4842256214149139,0.71375,0.6399394856278366,0.5071138211382114,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0050389836866705,0.0074301142938346,0.0095417132405243,0.0117706902690879,0.0138147438770936,0.016057783536181,0.0182863327275326,0.0205466849303866,0.0227980017198312,0.0249556560343678,0.0270864136684737,0.0292024110761381,0.0312615917240242,0.0332676169734003,0.0352727122358681,0.0372683027855441,0.0391304347826087,0.0413209391311581,0.0433188173275269,0.0577794483075445,0.071403152540244,0.0847119792704803,0.0975907288807563,0.1098656599953603,0.125659822495848,0.1389847058448932,0.1511318384122319,0.163091000438273,0.1744650254340967,0.1882771636559719,0.2013241732044558,0.2134530320528185,0.2252446763039356,0.2365466896034581,0.2482231698649609,0.2582081371024577,0.2678962210941906,0.2771413294501769,0.2866398621481907,0.2947691950823475,0.3030089906342675,0.3103370573305818,0.3174574581787177,0.3230570830697357,0.3304697721493989,0.3362559182344247,0.342561346763616,0.3478103182518814,0.352422558633706,0.3532185487565004,0.3537631299990363,0.3544334108035777,0.3546904138898125,0.3553511083322168,0.3559348046287486,0.3552257757320847,0.357131093544137,0.3582984849523548,0.3599054999731534,0.3615581290419612,0.362540878010108,0.3634684022674785,0.3636791712447025,0.3640948910394092,0.363935883691133,0.3660053895992202,0.3672425228184316,0.3705229793977813,0.3723510396296444,0.3736984541993486,0.3770421554448551,0.3831280709590964,0.3874478925428439,0.3890214797136038,0.3897897897897898,0.3940099317194289,0.3902641980445184,0.3941687692738996,0.3977987421383648,0.0,1.8125483776899745,59.651139320966806,215.781942589006,312.408983696817,fqhc6_80Compliance_baseline,59 -100000,95828,41982,393.9349668155445,7130,73.308427599449,5558,57.561464290186585,2251,23.17694202112117,77.3504688262772,79.68300625941211,63.33176974345843,65.06029049856974,77.06843709814572,79.39816327092736,63.22877838525868,64.95830040259041,0.2820317281314715,284.8429884847548,0.1029913581997519,101.99009597933184,88.7711,62.21121816453953,92635.86843093878,64919.666657490015,235.46114,144.46660103577884,245272.75952748675,150317.4783112974,273.74726,130.57305310990233,282934.7372375506,134151.1514809384,3988.98529,1795.6740887053656,4131178.413407355,1842426.2927073613,1344.4471,590.6526658691079,1388051.1541511875,601467.7629444554,2221.42106,929.281527984649,2288154.422506992,944232.762881178,0.382,100000,0,403505,4210.721292315398,0,0.0,0,0.0,19688,204.99227783111408,0,0.0,25452,262.9815920190341,2039595,0,73314,0,0,3372,0,0,44,0.4487206244521434,0,0.0,0,0.0,0,0.0,0.0713,0.1866492146596858,0.3157082748948107,0.02251,0.319078070876632,0.680921929123368,25.39152762765208,4.563083440338897,0.3290752069089601,0.2106872975890608,0.224361281036344,0.2358762144656351,11.195839579787304,5.65802160061933,23.98460245895921,13075.311691619068,62.69535664324492,13.730844737316463,20.67619105934921,13.752342670765236,14.535978175814009,0.5453400503778337,0.7702818104184458,0.6971022416621104,0.56214915797915,0.1167048054919908,0.691970802919708,0.9051490514905148,0.8614318706697459,0.7352941176470589,0.1385135135135135,0.4973734479465138,0.7082294264339152,0.6461318051575932,0.5138461538461538,0.1103448275862069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022489211256761,0.0046642263974934,0.0068811529483406,0.0091848450057405,0.0113310413572838,0.01349534537899,0.0158278517158737,0.0180847153010374,0.0202956934276716,0.0222856908871281,0.024445515416876,0.026605740103712,0.0288458572001522,0.0308139115747844,0.0329923062643097,0.0349445144758322,0.0371213846504213,0.0393216471320402,0.0414137845028267,0.0433596718614989,0.0580945327088179,0.0721507208799021,0.0852475164521943,0.0986730823781557,0.1114517488411293,0.1272112437916094,0.1406669140645708,0.1531481698171412,0.1651026486884668,0.1760413206313826,0.1893334481200094,0.2024131295002919,0.2148622956162746,0.2272563315006503,0.2377075333648736,0.2499612136793812,0.2607089031537817,0.270044236332324,0.2800177176085771,0.288511330568476,0.296675695071417,0.3046174003579743,0.3120798219865543,0.3186454899610428,0.3251881298856024,0.331087501079727,0.3361915507082863,0.3415144135759183,0.3467465753424658,0.3523516111544513,0.3531381205027473,0.3538504002208115,0.3549995761873817,0.3562360511289528,0.3566373131882049,0.356633797192271,0.3561841833574231,0.3576511283149399,0.3592949761052397,0.3588232132298927,0.360327536340758,0.3614634533058506,0.3616493632045731,0.3614790534776166,0.3626718867058169,0.3636006392287338,0.3641613539552303,0.3667318858874022,0.3697960618846694,0.3730044699872286,0.3742521806640179,0.376543867120954,0.380976441609297,0.3853371986573085,0.3854225751559841,0.385794037296591,0.3933343572415911,0.3910569105691057,0.4003308519437552,0.4110120201628538,0.0,1.6947213969808326,60.973537673906,211.86796866137135,317.61775821192776,fqhc6_80Compliance_baseline,60 -100000,95712,41660,392.6048980274156,7283,74.68238047475761,5725,59.16708458709461,2299,23.61250417920428,77.30949638025908,79.66958343190741,63.31695901961641,65.05961565455945,77.02319075048122,79.38268452053927,63.21242365446448,64.95759520501387,0.286305629777857,286.89891136814083,0.104535365151932,102.0204495455772,89.85262,62.92899367489092,93878.11350718825,65748.27991776467,237.73416,145.2074436535346,247717.27683049144,151045.27588973753,274.44608,131.339837927166,282236.8041624875,133834.54442537235,4145.46523,1837.281190388562,4290341.723085924,1879063.427060573,1376.25472,589.3494218107395,1422941.135907723,600824.6671751469,2263.32516,932.64436353894,2327410.9620528254,943783.417771119,0.38029,100000,0,408421,4267.186977599465,0,0.0,0,0.0,19904,207.28853226345703,0,0.0,25497,261.9211802072885,2033551,0,73014,0,0,3649,0,0,55,0.5746405884319625,0,0.0,0,0.0,0,0.0,0.07283,0.1915117410397328,0.3156666208979816,0.02299,0.3171145316984085,0.6828854683015915,25.325897235783938,4.580286372123885,0.3282096069868995,0.2038427947598253,0.2291703056768559,0.2387772925764192,11.092696815088155,5.534327169496273,24.345224559749028,13004.350306377088,64.19407949274157,13.693324842424106,21.198484530754765,14.667682341948664,14.634587777614032,0.5385152838427948,0.7592116538131962,0.6875997871208089,0.5762195121951219,0.1089978054133138,0.7231222385861561,0.9178470254957508,0.854389721627409,0.7702702702702703,0.128099173553719,0.4811083123425693,0.6904176904176904,0.6324362606232294,0.5196850393700787,0.1048888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774136376986,0.0042676992944611,0.0065538511484457,0.0086332981230194,0.0109795150714176,0.0132319561920465,0.0152372216276818,0.0174446497289903,0.0195310903070193,0.0217273387847837,0.0239444848758187,0.025905352540737,0.0280722680953017,0.0299169945006282,0.0321259875002578,0.0341581856692669,0.0358928183314186,0.0379066800800655,0.0398698720547119,0.0417621567565315,0.0561084366286901,0.0696656967616336,0.0830413895823281,0.095703289307647,0.108429033924937,0.1235113696456901,0.1373350027587963,0.1501293392520678,0.1625129525376291,0.1735936863325398,0.1872306498879503,0.2006301497417685,0.2136956781994493,0.2256422605821119,0.2368780423338693,0.2484310203357505,0.2592120846461531,0.2694894820456773,0.2789614226464405,0.2874734850656423,0.2957580109089646,0.3036679852999696,0.31172492212207,0.3183138139579533,0.3246985315569386,0.3307545190943303,0.3368517266421255,0.3425437590766644,0.3470827820582665,0.352504564578868,0.3539601955118684,0.3544316018868445,0.3550811658495924,0.355743879472693,0.3561821543600143,0.3550346821698272,0.3558833826665393,0.3568305920781299,0.3575797141286421,0.3600007189589474,0.3612567419756346,0.3633791591950587,0.3651426882809861,0.3660527087043758,0.3658056520788278,0.3661875607641169,0.3655588252264728,0.3686515997968512,0.3699110654430783,0.370719622807368,0.3712149018168471,0.3738678385765582,0.3758896797153025,0.379071379071379,0.3844541817489045,0.3879682997118155,0.3864201367308887,0.3877849822212926,0.386299831555306,0.3757836990595611,0.0,2.5192916267647107,59.52712155232856,217.08406628595384,334.20483056581463,fqhc6_80Compliance_baseline,61 -100000,95726,41422,390.2701460418277,7051,72.43591082882394,5517,56.96466999561248,2231,22.877797045734702,77.40440741590693,79.76372797384832,63.3594678928421,65.10016056014442,77.13443488686013,79.49272399558957,63.26027840752664,65.00323428799359,0.2699725290467967,271.0039782587472,0.0991894853154633,96.9262721508244,90.72206,63.47229659104836,94772.64275118567,66306.224631812,235.00483,144.07695835132486,244758.11169379269,149771.82683941798,269.19769,128.13740852997438,276970.46779349394,130620.86732055954,3984.15229,1784.0807738863584,4117443.787476756,1819318.8323495167,1337.34386,587.899744603561,1376235.0563065414,593425.6563436761,2194.98672,916.7146960820636,2252685.999623927,922983.9697477858,0.37928,100000,0,412373,4307.847397781167,0,0.0,0,0.0,19646,204.531684181936,0,0.0,25144,258.4146417901093,2036543,0,72999,0,0,3685,0,0,40,0.4074128241021248,0,0.0,0,0.0,0,0.0,0.07051,0.1859048723897911,0.3164090199971635,0.02231,0.3096138266270591,0.6903861733729408,25.107401269992398,4.57890277856702,0.323726663041508,0.2042776871488127,0.2417980786659416,0.2301975711437375,11.046416839523324,5.483965095464407,23.64327331672139,12869.075613721128,62.02949391025253,13.29478942413014,20.06390128139705,14.695394138534173,13.975409066191178,0.5530179445350734,0.7817213842058562,0.6898096304591266,0.5869565217391305,0.1220472440944882,0.7050147492625368,0.9355742296918768,0.837037037037037,0.7300613496932515,0.167910447761194,0.5034847392453737,0.7103896103896103,0.6466328747284577,0.5406746031746031,0.1097804391217564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043780086141373,0.0063809929596039,0.0086223531203981,0.0107266682256768,0.0128664495114006,0.0149910828025477,0.017274981378121,0.0191883276115743,0.0212330519314402,0.0233061052976806,0.0253815442406576,0.0272023521913005,0.0292415128543177,0.0311916382058875,0.033430503008125,0.0354687046932604,0.0375726141078838,0.0394296522624763,0.0414644307884595,0.0564093462237163,0.0694328170782754,0.0824041537735354,0.0954088123048456,0.1078072792048317,0.1228085016389975,0.1364933535608576,0.1486713792956606,0.1607713263180385,0.1720532727116754,0.1861572094726299,0.19889628307093,0.2108074007200583,0.2227313488331401,0.2333821150735577,0.2451854394843796,0.255930463502265,0.2658270549870685,0.2754752506692073,0.2844778238270785,0.2928842241538746,0.3011000046709328,0.3084709328419909,0.3150943621738559,0.3220521768633296,0.3278214900417998,0.3338998300509847,0.3398364070517705,0.3452442491599896,0.34871565310126,0.3501390400193447,0.3504848767890992,0.351084923570193,0.3515938266262801,0.3523114788126797,0.3520064843702208,0.3517824085061945,0.3534571808030956,0.3551854758898406,0.3565733854138798,0.3570651970157087,0.3575815206624668,0.3578889960985023,0.3581779149335838,0.3593659803732922,0.3608753558091557,0.3619506081408266,0.3639823843976093,0.3661451924767094,0.3691659378230102,0.3719298245614035,0.3743674426037394,0.3789845029608164,0.380847173548682,0.3796957175056348,0.3816568047337278,0.3794271635355713,0.3843025620170801,0.3820067264573991,0.3843700159489633,0.0,2.59282039389722,59.451472351894616,211.34262073235823,311.33056377403614,fqhc6_80Compliance_baseline,62 -100000,95744,41544,390.3952205882353,7202,74.10386029411765,5619,58.06107954545455,2315,23.782169117647054,77.33232137485312,79.70035451790459,63.31916690730778,65.07211911308818,77.04375157316424,79.40995325550202,63.21314970912408,64.96806517940065,0.2885698016888796,290.40126240256825,0.1060171981837072,104.05393368752414,89.04698,62.445186723596855,93005.05514705884,65220.78243601358,234.92461,143.5074467244159,244750.91911764708,149271.37696549747,268.63823,128.13195065185428,276970.0451203208,130972.6672221372,4082.44153,1832.9162203503809,4223859.1138870325,1874442.0707275767,1362.33584,593.6247100352359,1407364.0750334226,604483.2410960709,2285.85782,949.8533238907896,2350929.624832888,961107.5698171732,0.38115,100000,0,404759,4227.502506684492,0,0.0,0,0.0,19638,204.46189839572196,0,0.0,25150,258.9822860962567,2041853,0,73244,0,0,3493,0,0,36,0.3760026737967914,0,0.0,1,0.0104445187165775,0,0.0,0.07202,0.1889544798635707,0.3214384893085254,0.02315,0.3205094189440169,0.679490581055983,25.245220689330957,4.564364804605584,0.3212315358604733,0.2046627513792489,0.2361630183306638,0.2379426944296138,11.152096160574898,5.572819696644278,24.566344276721217,13037.945764453809,63.26236123757064,13.37773643550134,20.35953178647324,14.86085830104232,14.664234714553755,0.5445808862786973,0.7643478260869565,0.6930747922437673,0.5772418990203466,0.1226626776364996,0.6935832732516222,0.9415204678362572,0.8373626373626374,0.697452229299363,0.144927536231884,0.4957466918714556,0.6893564356435643,0.6444444444444445,0.5399802566633761,0.1168708765315739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046049762143849,0.0066607099342051,0.0087913651516383,0.0109668755595344,0.0130703639938468,0.0153075793424165,0.0174274367272764,0.0195286539542968,0.021590909090909,0.0239376697934286,0.0262514886452301,0.0284121875224942,0.0304347378286797,0.0324274689447402,0.0345836218747093,0.036635119183217,0.0386877898471785,0.0405100651611361,0.0426604453517195,0.0570187800778762,0.0712013727582815,0.0845473710707655,0.0976604805215288,0.110037958667229,0.1251414730117092,0.1378746883123773,0.1510590739755189,0.1629501473792131,0.1738561671009318,0.1878783309278128,0.2019997619331032,0.2144170410905253,0.2269430618607449,0.2377944089808496,0.2489727203251852,0.2600629562654879,0.2694567639973885,0.278628597377533,0.2872022274930391,0.2952522083424986,0.3033112117700762,0.3109061634267042,0.3179823509663805,0.3244005298914695,0.331092913696569,0.3370776667418038,0.3432727550397068,0.3486554785200544,0.3537356587407417,0.3546817942948001,0.3547107438016529,0.3557219191022008,0.3568587750379637,0.3570525125366427,0.357029991562476,0.356330420969023,0.3566246030832003,0.357884473940783,0.3585243553008596,0.3600775777660616,0.3618044515103338,0.3627515011060782,0.364028971163795,0.3650582282158681,0.3669760855884204,0.3673013600572655,0.3685997081403464,0.371324440041046,0.373293172690763,0.3758959750045947,0.3769599655153833,0.378279790093434,0.3791743970315399,0.3812416935636985,0.3839285714285714,0.3921177733476461,0.3949767065019242,0.3887969094922737,0.388221619527315,0.0,2.4085274044079545,60.9613927024632,209.00405375594252,326.40024322670325,fqhc6_80Compliance_baseline,63 -100000,95724,41733,391.4796707199866,7090,72.75082528937361,5529,57.164347499059794,2241,23.01408215285613,77.41699606751023,79.77154728925119,63.36600846061516,65.10116089334235,77.13402197563872,79.48833395268484,63.26237745207084,65.00004610491698,0.2829740918715089,283.21333656634806,0.1036310085443261,101.11478842537736,89.6038,62.793298105542256,93606.41009569178,65598.28058328346,236.11361,144.1776464667039,246027.73599097403,149989.73971081688,270.80137,129.1617917214031,279488.6862228908,132297.08704871632,4021.90391,1803.3081150218568,4161267.028122519,1844160.1873704605,1344.9796,592.3224222411533,1386084.1063892024,600536.796112912,2218.09604,924.177386571224,2279986.6073294054,934353.9829182712,0.38111,100000,0,407290,4254.836822531444,0,0.0,0,0.0,19686,205.0165057874723,0,0.0,25197,259.8094521750031,2040097,0,73156,0,0,3686,0,0,51,0.5327817475241319,0,0.0,0,0.0,0,0.0,0.0709,0.1860355278003726,0.3160789844851904,0.02241,0.3127433865986303,0.6872566134013697,25.286899466044478,4.609330475968188,0.3266413456321215,0.1989509857117019,0.235485621269669,0.2389220473865075,11.3545163386095,5.66254816785851,23.735978769821365,13039.130029018266,61.75623053799097,12.72107229833903,20.18287936221141,14.38128388724368,14.470994990196852,0.5451257008500633,0.76,0.6971207087486158,0.5921658986175116,0.1120363361090083,0.7170513775130305,0.9202279202279202,0.8705882352941177,0.7835051546391752,0.1521739130434782,0.4899665551839465,0.684913217623498,0.6437364228819696,0.5370919881305638,0.1014354066985645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019534808396931,0.0042751927382508,0.0066232554365465,0.0088648341270727,0.0110216365706848,0.0134062175532889,0.0156562155991356,0.0181567666870789,0.0204079547080344,0.02274261862378,0.0247266541650014,0.0268583802867493,0.0290507617344106,0.0312551491184709,0.0332693736073285,0.0352371012575821,0.0373334437668885,0.0395258146819058,0.0417476434458174,0.0435552592376527,0.0584513218894875,0.0728029882916723,0.0855539236256819,0.098094276519215,0.1098466471196236,0.1247369144694397,0.1383761880515953,0.1507977902434351,0.1635631336602459,0.174620367192862,0.1885788742556238,0.2021055592824219,0.2146739130434782,0.2262349522623495,0.2367677921963761,0.2473886872621049,0.25868123293016,0.2686241667322414,0.2781778387634524,0.286819753199478,0.2951706910907577,0.3033090598810094,0.3105164829967365,0.3174399808417649,0.3239149431983688,0.3301798472530179,0.3359429714857428,0.3414171986672432,0.3468714418797226,0.3522854692962205,0.3525705746940754,0.3534073554298922,0.3539584772160284,0.3553191489361702,0.3555965541354838,0.3554192856047831,0.3564531957326917,0.3573408110723012,0.3583885059040338,0.3593220943080158,0.3615034893075642,0.3630910095508722,0.3641279289097539,0.3644442459697227,0.3645567793756914,0.3669719982254234,0.3690829246036272,0.3706148623161071,0.3728617092275809,0.3745881792561426,0.3750227148827912,0.377997554102196,0.3802116135533442,0.3812442537542139,0.3817052512704686,0.3831245568423541,0.3848271642704191,0.3869215291750503,0.3844686648501362,0.3813303099017385,0.0,2.220406317257196,58.88442182256223,201.8464861128299,325.1233058044026,fqhc6_80Compliance_baseline,64 -100000,95702,41527,390.5978976405927,7313,75.4007230778876,5688,58.90159035338864,2289,23.56272596183988,77.3508434030137,79.74282075947853,63.31502979323547,65.08359818423399,77.07340905855028,79.4629926793311,63.21460821402248,64.9850317999691,0.2774343444634155,279.8280801474391,0.1004215792129841,98.56638426489894,90.08208,63.10122367539636,94127.68803159808,65935.11491441805,237.17229,144.2274871395951,247277.99836994003,150159.56384575614,269.95477,128.05960143641542,279286.75471776974,131692.6358805471,4125.16078,1829.2724488250424,4273134.55309189,1874182.6235517524,1368.25051,582.7710842176739,1415373.8793337652,594865.214808776,2264.96546,928.3891384176676,2332767.005914192,940721.380822038,0.37918,100000,0,409464,4278.53127416355,0,0.0,0,0.0,19780,206.1189943783829,0,0.0,25199,260.4438778708909,2035971,0,73054,0,0,3523,0,0,41,0.4284131993061796,0,0.0,1,0.0104491024221019,0,0.0,0.07313,0.192863547655467,0.3130042390263913,0.02289,0.3153435014991526,0.6846564985008473,25.42288506865145,4.609567320699118,0.3238396624472573,0.2041139240506329,0.2329465541490858,0.2390998593530239,11.067752819818567,5.434633061405997,24.07020093541257,12995.510302393554,63.62611615125286,13.562012522710292,20.663988509795963,14.578829138703046,14.821285980043555,0.5453586497890295,0.788975021533161,0.6845819761129207,0.5894339622641509,0.1058823529411764,0.7085137085137085,0.9251336898395722,0.8530701754385965,0.7414965986394558,0.1106870229007633,0.4927940492794049,0.7242693773824651,0.6291486291486291,0.5460717749757517,0.104735883424408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717120658042,0.0048270476924481,0.0070247388563481,0.0093605171152126,0.0113939245966347,0.0136509036083209,0.0155158167481051,0.0178115489102681,0.0197788936500956,0.0219680055713729,0.0244180084093939,0.0266839218586306,0.0287489328437271,0.0306520910392861,0.0326539037102017,0.0346937931604846,0.0366241543291097,0.0388615557077909,0.0407135798616528,0.0424150188152147,0.0563929015343799,0.0704181108051224,0.0836596093085748,0.0965776987575352,0.1090680844779205,0.1241668253665968,0.1375587801331111,0.150208193561441,0.1618209803963486,0.1731786622597572,0.1872231264214191,0.200653870719799,0.2140066812478917,0.2254601562670985,0.2362835755173932,0.247189267102783,0.2575887823339622,0.2678585501502989,0.2767813532946375,0.2856585992226821,0.293883317507006,0.3022986217637209,0.3104678168546781,0.3169962086672745,0.3232776440261666,0.3305957357601766,0.3363746730246936,0.3416701668639505,0.3476926662523306,0.3525503869825924,0.3529610053395178,0.3532401349769299,0.3542685591058366,0.3549837368991688,0.3560051657339647,0.3559555514739645,0.3552758647985435,0.3559644774208375,0.357442079165598,0.3588360336542756,0.3602408734476419,0.3611994547932758,0.3635393564045696,0.3639918661035508,0.365457693972774,0.3667092668422837,0.3678167452964247,0.3690506090669346,0.3721183199410505,0.3733728981206726,0.3753632401017072,0.3761170212765957,0.3776921619402513,0.3787576687116564,0.3805452645578037,0.3789410348977136,0.3841397433915597,0.3904511430305482,0.386326194398682,0.3806350450803606,0.0,1.9918495435995331,61.59224002072704,206.9978812472708,333.60908895919863,fqhc6_80Compliance_baseline,65 -100000,95733,41607,391.2130613268152,7095,73.07824887969666,5500,56.95005901831134,2124,21.915118088851283,77.26691653433518,79.6268309087687,63.2951211478972,65.03931005506519,76.99952896309684,79.35648881827109,63.19837560057854,64.94323930206546,0.2673875712383449,270.34209049760705,0.0967455473186618,96.07075299972225,89.15544,62.5030316498906,93129.265770424,65288.90941461209,235.74331,144.6412211704594,245777.98669215423,150615.3062898472,273.19677,130.7711598862344,281662.947990766,133773.24439420615,3942.19954,1758.0247955877642,4086421.4847544734,1804893.9608993384,1327.67913,574.2408889550695,1375052.1345826413,588031.7330022769,2099.56,868.002902645766,2168485.308096477,886830.295421578,0.37889,100000,0,405252,4233.148444110181,0,0.0,0,0.0,19687,205.1434719480221,0,0.0,25457,262.3442282180648,2035003,0,73078,0,0,3555,0,0,45,0.4596116281741927,0,0.0,0,0.0,0,0.0,0.07095,0.1872575153738552,0.2993657505285412,0.02124,0.3186622073578595,0.6813377926421404,25.4003744819126,4.507302531355103,0.3383636363636363,0.2101818181818182,0.2172727272727272,0.2341818181818181,11.03510654159696,5.52785720068903,22.672631069812255,12928.81160983897,61.98561228992955,13.524810865189,20.97463804534109,13.403025479515383,14.08313789988406,0.5576363636363636,0.777681660899654,0.6974744760881246,0.606694560669456,0.1125776397515528,0.7297698589458055,0.9102902374670184,0.8869936034115139,0.75,0.1234567901234567,0.5018059234288467,0.712998712998713,0.6336206896551724,0.5676251331203408,0.1100478468899521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674836932301,0.0043394944691723,0.0064942971952753,0.0086752471023252,0.0106889327339666,0.0127987130013338,0.0150772210612161,0.0171190575841406,0.019392167486174,0.0215669014084507,0.023525673223786,0.0258613609297359,0.0279291693231598,0.0301067073170731,0.0321991581379993,0.0343490934650927,0.0367835136954383,0.0388234683820096,0.0407792018793983,0.0424789272429853,0.0572302680352089,0.0713612861359402,0.0840503672612801,0.0967310909339589,0.1087256960195803,0.1247354609328705,0.1383728583257255,0.1511437212472312,0.1635624933176521,0.1748202211012128,0.1887099555900487,0.2011592632719393,0.2125326655052264,0.2235787491240364,0.2339525352019567,0.2452608213096559,0.2554197739291823,0.2653357818009756,0.2744146948234144,0.2831873624358034,0.2913705701256915,0.2989793290727345,0.3063203893843038,0.313160514856711,0.3205165620895958,0.3275385564466379,0.3333625855627711,0.3398327980832951,0.3458408503900216,0.3510174899707397,0.3520065985180377,0.3525972410361319,0.3530419031176146,0.353978706738998,0.3547299816557546,0.3543336153195416,0.3546749423092226,0.3556593805718814,0.3570323778098577,0.3585881254600621,0.3594394530146352,0.3608946322067594,0.3616409996408729,0.3611918768454031,0.3622614943923872,0.3636411470665614,0.3639925104421719,0.3668004075913896,0.3692181305139836,0.3705009727626459,0.3722590515043345,0.3750675748729592,0.380219639892734,0.3827511924911524,0.3867996201329535,0.3894322519083969,0.3973469072960049,0.394570320473566,0.3910505836575875,0.3918971562134787,0.0,1.9977057754164824,59.63064513116855,207.3403662130884,318.3942523647473,fqhc6_80Compliance_baseline,66 -100000,95713,41220,388.7664162652931,7178,73.97114289594936,5553,57.54704167667924,2194,22.640602634960768,77.288290147924,79.65662630344542,63.294707477804174,65.0435067523578,77.01773945803929,79.38186828998742,63.19513388836128,64.9437084833784,0.2705506898847147,274.75801345799766,0.0995735894428904,99.7982689793986,89.80004,62.94767201558261,93822.1976116097,65767.10793265555,235.19581,143.7897300594382,245286.76355354028,149786.59122526535,268.25379,128.09075243542836,276668.1955429252,131140.70051105047,3979.1119,1795.3194991941934,4127437.4013979295,1845832.6028796425,1302.83809,569.2059661732231,1350233.082235433,583744.7639245926,2156.3322,904.6813634977711,2227782.5582731706,925500.2227968331,0.37649,100000,0,408182,4264.64534598226,0,0.0,0,0.0,19677,205.10275511163584,0,0.0,25012,257.71838726191845,2032688,0,72989,0,0,3578,0,0,43,0.4492597661759636,0,0.0,0,0.0,0,0.0,0.07178,0.1906557943106058,0.3056561716355531,0.02194,0.3195698353690919,0.6804301646309081,25.324647693734256,4.402479709119169,0.3351341617143886,0.2047541869259859,0.2326670268323429,0.2274446245272825,10.94826810126034,5.663757763983395,23.593153220570795,12907.185387444752,62.647352624669296,13.375688315886135,21.003182408625783,14.347164776654608,13.921317123502751,0.5515937331172339,0.7748460861917327,0.6980118216012896,0.5735294117647058,0.11243072050673,0.7108603667136812,0.9162011173184358,0.8747346072186837,0.7180327868852459,0.1725352112676056,0.4969770253929867,0.7098844672657253,0.6381294964028777,0.5288753799392097,0.0949948927477017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0041666244259486,0.0063116450866582,0.008634876775229,0.0109124562688145,0.0129825168772719,0.0151505882832731,0.0171693972337059,0.0193909781353177,0.021665046308141,0.0237255826347182,0.0255486440434398,0.0275133145524459,0.0296492348252353,0.031520752537338,0.0332975073374395,0.0352853474695601,0.0371508032045162,0.039033573241253,0.0411751219308849,0.0563933330548477,0.070090767281902,0.0837128764823171,0.0964612292572053,0.1082963901203293,0.1238341255809521,0.138042705004194,0.1504026931435633,0.161746624041741,0.1735778555629523,0.1879036866906048,0.2018329740328678,0.2135568116226135,0.2248864071823507,0.2356815578465063,0.2464938753772412,0.2567256300735738,0.2666178045892766,0.2754568002366487,0.2845115718141618,0.2924483426728388,0.2999225642951004,0.3070584743247254,0.3147587102358797,0.322108060014382,0.3280809380101914,0.3336433913644648,0.3391226613881616,0.3445733309058753,0.3490667267211573,0.3500763090720006,0.3504780061892131,0.3515323094344964,0.3529292196007259,0.3535235876528829,0.3529520323577811,0.3526953149831542,0.3540839361334014,0.3557660951204023,0.3569058593539824,0.3577601626781646,0.3591086771037958,0.360022738278207,0.3613831432221052,0.3634330511735282,0.3641314260402824,0.3650992923989957,0.3670902039915503,0.3697935020085982,0.3719733535442179,0.373066507550374,0.3761777301927195,0.3755533071961553,0.3778372181887657,0.3757598428878705,0.3748231966053748,0.3732383694499167,0.3775817124523761,0.3818770226537217,0.3787537537537537,0.0,1.822700195726888,63.1856606186909,206.3421945089813,314.23488278485075,fqhc6_80Compliance_baseline,67 -100000,95831,41750,390.7399484509188,7311,75.09052394319166,5687,58.78056161367407,2314,23.72927340839603,77.36488025655099,79.67890124604834,63.35773544642036,65.07073333181214,77.08033336490482,79.39440501578902,63.25220238035797,64.96757444750266,0.2845468916461726,284.4962302593217,0.1055330660623852,103.1588843094795,90.32474,63.25443256657384,94254.1974935042,66006.23239512667,236.79816,144.5061883584534,246565.95464933055,150258.9437222333,275.40106,131.64321748018563,284398.0966493097,134989.68261125698,4076.45983,1832.3755777218491,4218199.152675021,1876489.0043116012,1381.5042,600.6493956003771,1428960.1068547757,614135.2543544128,2272.82948,953.3562435024648,2334092.7257359307,963890.4662390328,0.38109,100000,0,410567,4284.28170425019,0,0.0,0,0.0,19720,205.204996295562,0,0.0,25592,263.9438177625194,2037054,0,73142,0,0,3580,0,0,60,0.6261022007492356,0,0.0,0,0.0,0,0.0,0.07311,0.1918444461938125,0.3165093694433046,0.02314,0.321345105167489,0.6786548948325111,25.254930098617464,4.59641662813636,0.3363812203270617,0.2055565324424125,0.2263056092843327,0.231756637946193,11.138292252186488,5.638913378320522,24.79388678033709,13012.98520729634,64.15189782092322,13.605478980876294,21.59850791385148,14.458765453903766,14.489145472291664,0.5415860735009671,0.7502138579982891,0.6759017250392054,0.5765345765345765,0.1274658573596358,0.690677966101695,0.9166666666666666,0.8299180327868853,0.7114093959731543,0.1148148148148148,0.4921564036525404,0.6761433868974042,0.6231578947368421,0.5358948432760364,0.1307251908396946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0047447179528772,0.0069506453445896,0.0091821395197659,0.0114499547492907,0.0137763206125524,0.0159330465452914,0.0180390795679604,0.0201688747137716,0.0222938737908797,0.0246177181978436,0.0268875137259731,0.0289622709380363,0.0312779819063204,0.0333457026820871,0.035614741406008,0.0377426795337243,0.040013676347172,0.0421551017017786,0.0441431974947721,0.0589394855962786,0.0728926051737653,0.0863571608145478,0.0994413642473118,0.1113638517676049,0.1268597615703832,0.1406097716004915,0.1523472381681337,0.1642182749239878,0.1750856898029134,0.1881112485878745,0.20135788187725,0.2143423697506383,0.2253667274693347,0.2365031214279433,0.247552896154314,0.2588800249576611,0.2686743198616134,0.278006230529595,0.2864103766570968,0.2951853863129556,0.302855807977574,0.3108005863715893,0.317403324835733,0.3238345115759298,0.3292834699032715,0.3349727186264203,0.3404783106475003,0.3459850044675809,0.3503957783641161,0.3506978122642526,0.3511231699422921,0.3523176377597109,0.3534352913914957,0.3539495848426576,0.353694142233696,0.352372471695713,0.3530333778811728,0.354871407219063,0.3560451003626701,0.3566909056568136,0.3569848324796205,0.3581906832429238,0.3597431854021176,0.360091798526392,0.3623332721888839,0.3641119464852348,0.3661228103459179,0.3693569484215364,0.3696610305312925,0.370489839177918,0.3734194242668819,0.372192718664022,0.37678916827853,0.3808292636215646,0.3814383479409293,0.3951537744641193,0.3992568125516102,0.4068831529281154,0.4126119112495134,0.0,2.2341222719394414,62.2940847432251,217.11261147264864,322.5767158432278,fqhc6_80Compliance_baseline,68 -100000,95643,41405,389.9292159384377,7154,73.6802484238261,5617,58.19558148531518,2308,23.796827786664995,77.2563444549925,79.66661453993962,63.27473565930678,65.05561687503216,76.97250615793045,79.38108718336754,63.17243487681616,64.95522234837493,0.2838382970620472,285.52735657207506,0.102300782490623,100.39452665722592,89.38358,62.62952054497612,93455.4332256412,65482.59730976247,235.10619,143.8783457754161,245319.70975398092,149935.9971722093,269.88329,128.83558001369602,278769.925661052,132047.98936589525,4066.59888,1807.6881556710616,4217846.72166285,1856031.71760721,1325.38008,576.757233895725,1373983.2815783694,591257.0537265926,2276.71634,937.0773310185886,2349406.668548665,952798.219022155,0.37958,100000,0,406289,4247.974237529144,0,0.0,0,0.0,19707,205.5142561400207,0,0.0,25206,260.2176845142875,2033536,0,73070,0,0,3485,0,0,44,0.4495885741768869,0,0.0,1,0.0104555482366717,0,0.0,0.07154,0.1884714684651456,0.3226167179200447,0.02308,0.3141721854304636,0.6858278145695365,25.226565985825275,4.665267906141351,0.3257966886238205,0.2104326152750578,0.2255652483532134,0.2382054477479081,11.135003755100913,5.351007274976595,24.543841851044192,13000.153383351304,63.36042334623591,14.033726487571483,20.60759476941577,13.978479622595936,14.740622466652724,0.5426384190849208,0.7715736040609137,0.694535519125683,0.5730071033938438,0.1038863976083707,0.7167034584253127,0.9065934065934066,0.8605150214592274,0.7509157509157509,0.1484375,0.4870831376232973,0.7114914425427873,0.6378299120234604,0.5241448692152918,0.0933456561922366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092115258013,0.0047231484953832,0.0067384487360334,0.0091127975374112,0.0111608505443076,0.013385898963968,0.0156479516892443,0.017726511095672,0.0197921567825215,0.0217694183211424,0.0237132654736496,0.0259896411394746,0.0280737515056054,0.029929994948089,0.0318158810829795,0.0339289964094657,0.0360748864885037,0.0382377994307439,0.040197710718002,0.0419834986596572,0.056529827348355,0.0701070672784796,0.0832755905511811,0.0961473684210526,0.1087532316783622,0.1247526428851099,0.1381403691243114,0.1513609064190484,0.1635868113076471,0.1742928274026698,0.1887364029366422,0.201718272626812,0.2139612900414983,0.225651983344291,0.2363884998400917,0.2472528692254756,0.2583239198756305,0.2678319865661381,0.2769550739296957,0.2859699232595753,0.2941824464569394,0.301891438689478,0.309515899383009,0.3159759334206007,0.3222450943373244,0.3290285106961454,0.3355290397862009,0.3414814625806945,0.3470394950452615,0.3528011111846021,0.3540771952570024,0.3553778367104518,0.3557037477523397,0.3563811239611786,0.3572464526547151,0.3565995525727069,0.3566773427665439,0.3572538260668363,0.3585286357286978,0.3599026851684988,0.3610974456007568,0.362716734172669,0.3638054968287526,0.3651829515279715,0.3654633059732209,0.3672328249284645,0.3679606342263532,0.3703280302308596,0.3729508196721312,0.3742404860889031,0.3759357060849598,0.377632495579015,0.3791608213238107,0.3817332005210329,0.3787198203256597,0.3816304734781061,0.3835512313773183,0.3826685563879328,0.3820379016753639,0.3824106792304672,0.0,2.1126345112196607,60.33263263792799,211.8539181477496,328.007952823676,fqhc6_80Compliance_baseline,69 -100000,95685,41396,388.7652192088624,7245,74.38992527564403,5645,58.32680148403616,2313,23.723676647332397,77.32722884548278,79.70392988085939,63.32110870231941,65.07575080472522,77.04741487223586,79.42503961315742,63.217895142475314,64.97564427220604,0.2798139732469167,278.8902677019678,0.1032135598441001,100.10653251917743,89.48698,62.69433345443756,93522.47478706171,65521.59006577578,237.67546,144.85194844624974,247721.49239692744,150713.29091151294,268.34342,127.41309905251174,276323.86476459214,129949.80623072688,4100.41173,1837.656883309556,4239364.4980927,1874862.6714546815,1373.44827,593.8967706893084,1418263.3328107854,603669.4769961103,2280.99076,952.7837529408032,2342421.633484872,962384.8822153104,0.37936,100000,0,406759,4251.021581230078,0,0.0,0,0.0,19851,206.78267231018447,0,0.0,25068,257.8147044991378,2038593,0,73177,0,0,3506,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.07245,0.1909795444959932,0.3192546583850931,0.02313,0.3168058455114823,0.6831941544885177,25.25100048903224,4.538341881472887,0.3231178033658105,0.2014171833480956,0.2380868024800708,0.237378210806023,10.960589760149968,5.50005082445428,24.7052713049372,13017.067979134998,63.70823400420246,13.339049221889676,20.72721318902005,14.854710753492713,14.787260839800004,0.5383525243578388,0.7704485488126649,0.6962719298245614,0.5587797619047619,0.1059701492537313,0.6909747292418773,0.9052924791086352,0.8347826086956521,0.7167235494880546,0.1391941391941392,0.4887323943661972,0.7082262210796915,0.6495601173020528,0.5147478591817317,0.0974695407685098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023690444853908,0.0045707452037579,0.00687836055595,0.0089988522908477,0.0110025320059791,0.0133994481382301,0.0156323292476495,0.0176278941509299,0.0201255803489252,0.0221195891491126,0.0242436673161727,0.0264776870538694,0.0287794943531299,0.0308809891808346,0.0329012549537648,0.0350472605431342,0.0371199171199171,0.0390253524636116,0.0410447373074402,0.0429869913275517,0.0573568429189211,0.0718195614631848,0.0845562397071318,0.0969184315458342,0.1089043118724158,0.1240902166553825,0.1380829070532549,0.1507161492998243,0.1625991067039942,0.1754052807192593,0.1901966065176407,0.2039059878100269,0.2161965165740146,0.2272762079791714,0.2385905818638135,0.2498697959952572,0.2604735273433575,0.2701148778649144,0.2799368913305032,0.2890156853309502,0.2965793557053197,0.3040618049865387,0.3117139947422021,0.3189530101557535,0.3245740968177341,0.3307994175284448,0.3365289421908092,0.3407048626601236,0.3451573143042491,0.3503511579615644,0.351146894334423,0.351936894074166,0.3529162547662759,0.3532136653155761,0.3539993144458189,0.3535159255270041,0.3530916776582389,0.3547962774178697,0.3549772439516819,0.3552904193755805,0.3558921675227775,0.3571838454993371,0.3579091004513487,0.3588019011747825,0.360349910589145,0.3614366234106698,0.3636598233742402,0.3661700041124925,0.3685342547865026,0.3693870206725578,0.3727394045372969,0.3744964279959177,0.375612238407226,0.3764378908360997,0.3837920489296636,0.3859543817527011,0.3844961240310077,0.3848366550236285,0.3800841514726508,0.3792697290930506,0.0,2.61523974072634,60.9084604281361,215.33679917808533,323.09566515649925,fqhc6_80Compliance_baseline,70 -100000,95789,41570,390.305776237355,7168,73.68278194782282,5595,57.929407343223126,2277,23.499566756099345,77.38146625236273,79.70493149555269,63.35451413110488,65.06799539823284,77.09977023143014,79.41930518251648,63.25322722383804,64.96696345322184,0.2816960209325856,285.6263130362038,0.1012869072668394,101.03194501100177,89.74592,62.854413933832085,93691.0292413534,65617.35370014524,235.21076,143.88588469462096,245085.8240507783,149747.14658637316,271.56403,129.58369426515958,280344.7264299659,132835.8276740386,4045.64063,1808.858138971805,4194584.660034033,1859713.1602977316,1375.04257,601.4681610480632,1424138.721565107,616593.793004641,2243.05304,927.8979451387996,2317655.8895071456,948910.0020707662,0.38001,100000,0,407936,4258.683147334245,0,0.0,0,0.0,19647,204.6163964547077,0,0.0,25311,261.02162043658456,2037285,0,73182,0,0,3581,0,0,52,0.5428598273288164,0,0.0,0,0.0,0,0.0,0.07168,0.1886266150890766,0.3176618303571428,0.02277,0.3236702127659574,0.6763297872340426,25.0791775916227,4.557369719051318,0.3354781054512958,0.2007149240393208,0.2307417336907953,0.233065236818588,11.13799207279007,5.695292551530853,24.28694707798685,12959.633052261552,63.13023618565767,13.110653085831238,21.154493362454968,14.373733130827604,14.491356606543835,0.5528150134048258,0.7684772929652716,0.7011188066062867,0.5848179705654531,0.1219325153374233,0.7058823529411765,0.910144927536232,0.8453389830508474,0.7560137457044673,0.1449814126394052,0.5028449502133713,0.705655526992288,0.6526690391459075,0.535,0.1159420289855072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919850960856,0.0045705136000648,0.0067051460220529,0.0087943780973271,0.0110832053850142,0.0132744263696887,0.0154415362035225,0.0176430371738487,0.0195545565999182,0.0215460795547552,0.0236138999303364,0.0259982763573685,0.0283638381616944,0.0305120339297111,0.032691732734002,0.0347509087904824,0.0366112358620404,0.0388255906777113,0.0408040305406949,0.0428331962476704,0.0576050091312288,0.0715474035553974,0.0846643524587585,0.097263830637108,0.1097477414798182,0.1251189745976014,0.1383797887234313,0.1506646657513543,0.1627348163653256,0.1736664951547894,0.1876910492099711,0.2008650519031141,0.2124668377332231,0.2238410885782415,0.2341497766334367,0.2457650591063693,0.2566944602573976,0.2669817158931083,0.2767817605849693,0.2853540274418551,0.2941653348157413,0.3020938239220554,0.3097257094130465,0.316574963138778,0.3227589726143902,0.3287071844995254,0.3347474595785153,0.3402290076335877,0.3461423813165022,0.3515101114103173,0.3519942885623072,0.3531192799438488,0.3534994570658995,0.3543293398426748,0.3549180327868853,0.35467866797739,0.3540427826142112,0.3548556775593399,0.3554361221415856,0.3561163937942375,0.3573666535337048,0.3585898551871488,0.3595248588637746,0.3614963421749472,0.3617508742312794,0.3629730365875984,0.3633271402029441,0.3642467610251237,0.3663530323853825,0.3687322705661432,0.3722209488883795,0.3748999946663822,0.3766233766233766,0.3786689029503697,0.381015662078785,0.3831385642737897,0.3852760736196319,0.3860361274609296,0.3868834389639019,0.3847641144624903,0.0,1.8619802952651152,61.2636414153669,215.2388065435429,316.9891567937218,fqhc6_80Compliance_baseline,71 -100000,95757,41690,391.12545296949565,7195,73.81183621040759,5644,58.36649017826373,2358,24.238436876677422,77.31912755708531,79.66763503370976,63.32066847763053,65.05784747171971,77.0237201811619,79.37077831683887,63.21176324500775,64.95082551136389,0.2954073759234035,296.85671687089155,0.1089052326227815,107.0219603558229,90.8303,63.597438446379456,94854.99754587132,66415.44581219071,235.65584,144.1921754224509,245533.4544733022,150017.0279169678,269.13944,128.87687090161523,276716.8248796432,131322.6609286085,4110.6778,1854.2596039240368,4255331.599778607,1898931.34071038,1366.35282,595.528187350345,1413766.4400513798,608786.5089239901,2327.3135,974.1539499472352,2395384.7760477043,987952.732899548,0.38155,100000,0,412865,4311.590797539605,0,0.0,0,0.0,19771,205.87528849065865,0,0.0,25034,257.24490115605124,2030713,0,72925,0,0,3625,0,0,45,0.4594964336810885,0,0.0,1,0.0104431007654792,0,0.0,0.07195,0.1885729262219892,0.3277275886031967,0.02358,0.3285545179534394,0.6714454820465605,25.21368676917349,4.572383234653613,0.3244153082919915,0.2055279943302622,0.2274982282069454,0.2425584691708008,10.919737449118433,5.364211891467028,25.180894949980274,13017.152453678476,63.69809688885584,13.600668929918358,20.686174354284606,14.263261025239409,15.14799257941347,0.5263997165131112,0.7620689655172413,0.6744948115783724,0.5482866043613707,0.1081081081081081,0.6885364095169431,0.9211267605633804,0.8344086021505376,0.6866197183098591,0.1590106007067137,0.4735729386892177,0.6919254658385093,0.6200585651537335,0.509,0.0948434622467771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0044994375703037,0.0066961568118177,0.0090292307379796,0.0112782337208001,0.0135854898006986,0.0160591384144787,0.0181758771392394,0.0203267826833807,0.0225222919503281,0.0248636344994463,0.0271283204468677,0.0292078902441532,0.0313890720290093,0.0334296326867519,0.0353654881615526,0.0374852481417834,0.0395402871131026,0.0415835411471321,0.0434302616230628,0.0580142791532712,0.0711416556831733,0.0843175095970296,0.0968169342881478,0.108898470361273,0.1242320746936229,0.1381160972815884,0.1518817633351422,0.1637070337109846,0.1749324585102277,0.1883998664670852,0.2016494756096241,0.21420257378137,0.226120431330519,0.236467079706397,0.247100526170036,0.2575454738323079,0.2678515150150826,0.2770738242841247,0.2851217416213119,0.2940059072218683,0.3019183922046285,0.3104555797857211,0.3167867435158501,0.3234510204826755,0.3288613818577128,0.3348886213124624,0.3415561224489796,0.3474783150677816,0.3522991850989522,0.3526027952197691,0.3537941501103753,0.3547255731074373,0.3549281463202206,0.3561263760852054,0.3558396406374992,0.3554494828957836,0.3568411325985083,0.3591613334934715,0.3602629499245635,0.3620488062459925,0.3627834867126473,0.363219991979569,0.3631995668944982,0.3638214831155608,0.3652212784979883,0.3673803707429228,0.369233206590621,0.3706667610920293,0.3736118878325477,0.3735210492524993,0.3727331258718747,0.374490575649516,0.3753179680875665,0.3765355680411389,0.3813549232051434,0.3839876828329484,0.3890366128042544,0.3894150417827298,0.3970588235294117,0.0,2.282012290623052,61.05196538374022,215.56969924612235,323.5771092101847,fqhc6_80Compliance_baseline,72 -100000,95676,41493,390.38003261005895,7133,73.1949496216397,5593,57.82014298256616,2274,23.4018980726619,77.34181859432726,79.72437983704361,63.3271521787835,65.08574832741016,77.06205774185489,79.44260639177601,63.22502712880706,64.98501216473893,0.2797608524723785,281.7734452676035,0.1021250499764363,100.73616267122532,90.61228,63.49287809435971,94707.1992976295,66362.18417360833,235.64409,144.11136640651404,245573.7384506041,149905.36031615746,274.74206,131.17722191683518,282495.06668338977,133582.4965835068,4074.29248,1828.6621530730088,4218222.939922238,1871195.0369124464,1372.33182,589.134977995698,1420337.0124169071,601795.8732330576,2244.055,930.8344835332632,2311938.856139471,946439.3689193772,0.3783,100000,0,411874,4304.872695346795,0,0.0,0,0.0,19700,205.2343325389857,0,0.0,25634,263.2739663029391,2033204,0,72972,0,0,3519,0,0,40,0.4076257368619089,0,0.0,1,0.0104519419708181,0,0.0,0.07133,0.1885540576262225,0.3187999439226132,0.02274,0.3199573390214638,0.6800426609785362,25.14488065124924,4.541641740445206,0.3261219381369569,0.2059717504022885,0.2249240121580547,0.2429822993026998,11.107345152264063,5.599636620970436,24.116878335989476,12907.427322783524,63.06303500189566,13.62249415842784,20.451457074311765,14.170356961739047,14.818726807416986,0.5519399249061326,0.7907986111111112,0.6951754385964912,0.5985691573926868,0.1140544518027961,0.7256186317321689,0.9285714285714286,0.8620689655172413,0.7551020408163265,0.1422924901185771,0.495378051671012,0.7197368421052631,0.6429085673146149,0.5508298755186722,0.1075949367088607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594697775212,0.004571393818989,0.0069701612166837,0.0092319879750563,0.011591491438565,0.0137553962694469,0.0156152850401084,0.017578065187877,0.0195423093040607,0.0216708124763279,0.0239831021153116,0.0259533517516201,0.0279626752811185,0.0302955360455051,0.0321002435902729,0.0340098057469124,0.0359692846557995,0.0381249026631365,0.0401876742540884,0.0423677571360063,0.0570789850303467,0.0711690487409036,0.0840907659690589,0.0966570914485937,0.1085232067510548,0.1242384498223049,0.1379427431506122,0.1511635333943665,0.1634096567050954,0.1746814808459525,0.1887525980809201,0.2023947302953933,0.2147261950078851,0.2257376816189091,0.2359328074981023,0.2468463080484212,0.2579802669762043,0.2676370017097093,0.2761504851614367,0.2842662268494657,0.2923703326701522,0.3003731125068716,0.3074666414308697,0.313841581073145,0.3202123652974694,0.3263726239491137,0.3333291601983074,0.3378462714131058,0.3435048177302849,0.3491497205375193,0.3506148535677687,0.3510541546093427,0.3511815692142635,0.3515829702224989,0.3520279824365557,0.3521661010181673,0.3513959390862944,0.3516172551084202,0.3520120603703767,0.3520453813392505,0.3531872584699658,0.3542995207351369,0.3558688207735456,0.3572695234460931,0.3584450078473983,0.3600640067154587,0.3606091894682499,0.3633974095069195,0.3647158909645174,0.3654246794871795,0.3660656793303284,0.3659948542024013,0.3723619360545937,0.3774018219398301,0.3810240963855422,0.3840813883901855,0.3825027002005863,0.3897477624084621,0.3873848730114429,0.3947266382318728,0.0,2.4486568358163274,60.19049315917455,213.33091247559437,320.69898578984345,fqhc6_80Compliance_baseline,73 -100000,95682,41577,391.3797788507765,7226,74.40270897347463,5625,58.23456867540394,2298,23.724420476160613,77.38307130315455,79.76003397066378,63.34642469116329,65.0977364850892,77.10042863669673,79.47376460814316,63.24437227191506,64.99627851465824,0.2826426664578179,286.2693625206276,0.1020524192482312,101.45797043095683,89.76572,62.890275960515446,93816.72623900004,65728.42954841605,236.86505,144.82937976856888,247000.7629439184,150811.64667185978,267.69053,127.2922124673634,276107.8154720846,130285.6251416808,4055.53335,1807.366715057329,4203327.104366547,1853703.732214343,1351.04481,586.5956356558804,1398385.7778892582,599438.2351572828,2263.8995,932.0460319074324,2339209.7573211263,952269.1772987169,0.3804,100000,0,408026,4264.396647227273,0,0.0,0,0.0,19759,205.91124767458876,0,0.0,25075,258.32444973976294,2037294,0,73198,0,0,3576,0,0,43,0.4494053217951129,0,0.0,0,0.0,0,0.0,0.07226,0.1899579390115667,0.3180182673678383,0.02298,0.3264849203213486,0.6735150796786514,25.166810214098128,4.600539388627168,0.3240888888888888,0.2115555555555555,0.2323555555555555,0.232,11.03898638669687,5.3970596173750405,24.383363927428174,13042.577487817258,63.29096783469227,13.688926941571054,20.731638710569158,14.55326144875488,14.31714073379716,0.544,0.7546218487394958,0.6944596818431158,0.5592960979342004,0.1264367816091954,0.7106227106227107,0.9109195402298852,0.8634361233480177,0.7440273037542662,0.1592592592592592,0.4906103286384976,0.6900237529691211,0.6384222059897735,0.5059171597633136,0.1178743961352657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080894485893,0.0043766336392924,0.0067037859656595,0.0090885088752589,0.0113669869350821,0.0134877897329926,0.0156170360251992,0.0178117567802059,0.0197888238120061,0.0219480984798075,0.0241856936342106,0.0266162819354308,0.0286836773523392,0.0305402482360817,0.0323316104938462,0.0344161145963599,0.036381341095791,0.0382559599796577,0.040098582614935,0.0422272476213303,0.0573604379074043,0.0708625147870146,0.0844505990222613,0.097682537012113,0.1103179958668972,0.1261101243339254,0.1398072866425686,0.1533757988876718,0.1646821586326099,0.1759676883684554,0.1902303116360624,0.2037901883202525,0.2162549852751002,0.2281976744186046,0.2392961231784437,0.2507090627077332,0.2611230233181452,0.270929302713235,0.280460109463357,0.2885137690377144,0.296926905492216,0.3043503711161582,0.3124577927847876,0.3197278095146656,0.3259706139924102,0.3317621509568994,0.3373752051208177,0.3424556307253246,0.347277892360976,0.351960551016631,0.3523925057285348,0.3530473107912678,0.3541372891872074,0.3547504631773969,0.3554910714285714,0.3550224979652011,0.3540972156078357,0.3543916249670792,0.3551331320340379,0.3568279569892473,0.3582439426899707,0.3595721121524894,0.3593835185573495,0.3604822834645669,0.3602720303751232,0.3622270856130478,0.3619329669390893,0.3635106249214133,0.3652709359605911,0.3662335598203997,0.3666819012797075,0.3677984084880636,0.3675536264704032,0.3670135987236952,0.3686722185833255,0.3720738736619221,0.3783783783783784,0.377466456195738,0.3815541812315138,0.3885991058122205,0.0,2.1415265546163167,60.374522920828014,213.2572666857028,324.71116182007603,fqhc6_80Compliance_baseline,74 -100000,95687,41344,388.32861308223687,7056,72.42363121427154,5528,57.13419795792532,2255,23.179742284740875,77.3960056150407,79.78260434834567,63.35197710932333,65.11407414800775,77.11920317423797,79.50564574635436,63.24994103241781,65.01493605234239,0.2768024408027401,276.9586019913106,0.1020360769055201,99.13809566535292,90.22882,63.18587460422551,94295.79775727112,66033.91746446802,234.08017,143.5700812587366,243989.956838442,149400.2124204297,270.78193,129.64410830333432,279132.6826005622,132442.2624431659,3976.60006,1793.0804670657433,4113631.68455485,1831692.0345143464,1333.44925,582.9481522883744,1376511.9295202063,592182.7126865444,2210.53294,920.5702083092568,2273538.0354698133,929493.3365697348,0.37777,100000,0,410131,4286.172625330505,0,0.0,0,0.0,19540,203.5386207112774,0,0.0,25259,260.1607323878897,2039684,0,73033,0,0,3573,0,0,44,0.4493818387032721,0,0.0,0,0.0,0,0.0,0.07056,0.1867803160653307,0.3195861678004535,0.02255,0.3187288708586883,0.6812711291413117,25.162369456806964,4.591219304661512,0.3386396526772793,0.1982633863965267,0.236794500723589,0.2263024602026049,11.166326916552304,5.677803044499788,24.01091764447365,12936.707788270644,62.40400805209681,12.922064551513786,21.138060591761626,14.694195942811104,13.649686966010302,0.5506512301013025,0.7664233576642335,0.6944444444444444,0.5790679908326967,0.1167066346922462,0.7052932761087267,0.8994413407821229,0.8676171079429735,0.6877076411960132,0.125,0.4983050847457627,0.7018970189701897,0.6328747284576394,0.5466269841269841,0.1146560319042871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0047555312202145,0.0069933618887152,0.0091033782067564,0.0113523080992004,0.0136134077302162,0.0159364580890524,0.0181727225392806,0.0203847962542681,0.0227537922987164,0.0249436128767685,0.0268491519158897,0.0289202225581849,0.0311077233678745,0.0330585334145007,0.0348463391186594,0.0367930391547545,0.0389046897382133,0.0407488299531981,0.0428365955850165,0.0575860448111975,0.0721798373677435,0.0852641626197044,0.0975617449452733,0.1097348864175407,0.1250978235580278,0.1386451647127473,0.1512919057606115,0.1639317992436382,0.1757822136888736,0.1883138564273789,0.2008934849156814,0.213069324146625,0.223719735475761,0.2351227128782547,0.246612496125404,0.2566173271909961,0.2662180077747567,0.2756104470001699,0.2843520614666941,0.2925626515763945,0.3005452995644609,0.3079485846604602,0.3138754263148447,0.3207467067756726,0.327088663648888,0.3339450457535922,0.339310187300137,0.3444930961883726,0.349615647870268,0.3506552798367172,0.351102083390519,0.3509129786455842,0.3515344068163766,0.3524598684308222,0.3521667916787852,0.3523320984136031,0.3543769800233088,0.3548376068376068,0.3572462085350387,0.3577014684645824,0.3588030674361609,0.3599330123508478,0.360885477104347,0.3603943729710232,0.3603441533046539,0.3607528259445915,0.3642924676961865,0.3641065334412272,0.3668301630976592,0.3661292545128841,0.3657727102403512,0.367718986216096,0.372373063353275,0.3717411988582302,0.3719614921780986,0.3749034152372121,0.3803366174055829,0.3828954723309111,0.3783255086071987,0.0,2.4837004710175687,61.36694211181839,209.3570945640112,311.45813372448566,fqhc6_80Compliance_baseline,75 -100000,95826,41582,390.3324776156784,7122,72.99689019681506,5572,57.614843570638456,2253,23.15655458852504,77.38566316619061,79.70795449725387,63.36611244363343,65.0849064816191,77.1073862515652,79.43000909508842,63.26350152122984,64.98544999600865,0.2782769146254082,277.94540216544306,0.102610922403592,99.45648561044608,90.71634,63.58215155713882,94667.77283826936,66351.67027439194,239.57695,146.93542411295076,249463.2667543256,152791.21966711676,274.00385,130.75171971056153,283431.9913175965,134467.21514111513,4015.37412,1811.8657559184176,4150594.734205748,1851508.0847772453,1361.57039,594.3424361885436,1405038.9247177176,604528.7022004684,2217.65186,921.0806099212624,2279504.769060589,929418.8425450724,0.37989,100000,0,412347,4303.080583557698,0,0.0,0,0.0,20107,209.2438377893265,0,0.0,25524,263.8010560808132,2034395,0,72981,0,0,3572,0,0,46,0.4800367332456745,0,0.0,0,0.0,0,0.0,0.07122,0.18747532180368,0.3163437236731255,0.02253,0.319748797434527,0.680251202565473,24.965938014441207,4.609324261781242,0.3431442928930366,0.1988513998564249,0.226848528356066,0.2311557788944723,11.33901753246155,5.675119578777389,23.85937928949704,12945.432302629652,62.8037433813907,12.902872014266842,21.75053373495434,14.073778453569632,14.076559178599892,0.5527638190954773,0.7734657039711191,0.6893305439330544,0.5941455696202531,0.1195652173913043,0.7053380782918149,0.9300291545189504,0.8346938775510204,0.7128378378378378,0.1884057971014492,0.5013198944084474,0.7032679738562092,0.6392405063291139,0.5578512396694215,0.1007905138339921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268744999139,0.0045517674847683,0.0069318285615694,0.0091236055513787,0.0111477277350583,0.0133285816108339,0.0154216228888277,0.0176242473721808,0.0197148551280085,0.0221248899895618,0.0243702473918301,0.026481093730755,0.0283764478566069,0.0304586815992094,0.0325960299046145,0.0347164120521004,0.0367526850568052,0.0388063723711895,0.0408074263285776,0.0426851476081957,0.0576337311190853,0.0715988207990967,0.0851946962947434,0.0976096664039926,0.1093847110006215,0.1248547709077082,0.1380610850380854,0.149798044217687,0.1623287963476554,0.1738338777914636,0.1879268253336631,0.201097583372044,0.2124159944412476,0.2241992882562277,0.2352211067419432,0.2463841832898403,0.2562054367201426,0.265564267900874,0.2748736772936351,0.2834669075194073,0.2911794611082867,0.2996743051259003,0.3073625283446712,0.3144975189812877,0.3215103668068296,0.3275648037757648,0.3337745367364267,0.3397644191714054,0.3455151648294845,0.3509754073527668,0.3522097216988749,0.3524032180430447,0.3527838012898138,0.3530347280455715,0.3537869101073478,0.3537855204036252,0.3548504798921234,0.3561154631031532,0.3570105320937253,0.3580238061092786,0.3598496946923438,0.3613817186166941,0.3625946949714068,0.3631266045129037,0.3640199835087549,0.3659461309602169,0.3670416295060272,0.3690589504410178,0.3710410453060644,0.3719996788954002,0.3724452218744246,0.3730447825155346,0.3721225995167239,0.3737428023032629,0.3764302059496567,0.3775375375375375,0.3812248685431488,0.3790206924810489,0.3872044506258693,0.3987659082144234,0.0,1.9905520609990357,62.16861952312882,208.7963439498294,316.74750687540256,fqhc6_80Compliance_baseline,76 -100000,95776,42076,395.4226528566656,7220,74.1835115268961,5614,58.15653190778483,2218,22.90761777480789,77.37657405990127,79.72352631372256,63.3458979718325,65.08016606756381,77.10868198209249,79.45160654790946,63.24778524361467,64.98230208497817,0.2678920778087814,271.9197658130952,0.0981127282178278,97.86398258563622,90.40108,63.28133424600958,94388.03040427664,66072.22503133309,235.31426,143.59229900719566,245224.85800200468,149457.69191362726,272.47159,129.53505698425158,281731.59246575343,133118.26817536933,4059.15087,1817.3595706431167,4207820.038422987,1867159.2263647644,1341.40929,577.1536771209456,1392110.079769462,594164.1858252164,2190.50066,911.6462699131662,2263574.173070498,931448.2177250086,0.38444,100000,0,410914,4290.365018376211,0,0.0,0,0.0,19592,204.05947210157035,0,0.0,25340,261.7879218175744,2036490,0,73119,0,0,3652,0,0,50,0.5220514533912463,0,0.0,1,0.0104410290678249,0,0.0,0.0722,0.1878056393715534,0.307202216066482,0.02218,0.3152302243211334,0.6847697756788665,25.36883241882971,4.543716706073934,0.3247239045244032,0.2075169219807623,0.2367296045600285,0.2310295689348058,10.897949551869138,5.375923811561396,23.610368431035447,13139.00804232459,63.13880652922231,13.647335357691746,20.37157335025709,14.84485365722804,14.275044164045434,0.5422158888493053,0.7716738197424893,0.68019747668678,0.5688487584650113,0.1148804934464148,0.6833333333333333,0.9034090909090908,0.8635294117647059,0.7028753993610224,0.1310344827586207,0.4962210675484175,0.7146371463714637,0.6244635193133047,0.5275590551181102,0.1102284011916583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0046629970906952,0.0070516853020556,0.0093766508188061,0.0115531689854364,0.0135436502683272,0.0157233025053277,0.0181626985747539,0.020272135270244,0.0225199864880081,0.024741718596261,0.0268938616300554,0.0290836940095197,0.0309683930833479,0.0329612511863987,0.0350808285442593,0.037141732935719,0.0390053632374451,0.0410021831791246,0.0430838766116098,0.0576533700711795,0.0715914081944241,0.085117088408562,0.098452129504114,0.1114401332012561,0.1273053955503884,0.1402113878022665,0.15275354300549,0.1650026162076735,0.1767544094783681,0.1905577273069923,0.2040505014442893,0.2165499086241406,0.2278118161925601,0.2381822585261674,0.2494568831744624,0.2602670894839098,0.270019921439746,0.2796118708505929,0.2886443278898788,0.2968545746908367,0.3045237649700599,0.3122442220802877,0.3198826206731345,0.3276394119791034,0.3334196220553974,0.3387855142056822,0.3440689383444121,0.3499676542890412,0.3557982772039521,0.3564510922199505,0.3573618577537019,0.3581471941899252,0.3584300351161144,0.3591160220994475,0.3584654261428899,0.3589268462647091,0.3603284072249589,0.3617115884525927,0.3629203650456307,0.363716564992961,0.3647212491836371,0.3657917374792807,0.3661153330353151,0.3674112945934235,0.3686876599300224,0.3706271757119215,0.3713998239215193,0.3738038277511962,0.3780176878336387,0.3799734444393571,0.3841466673793361,0.3857576140528245,0.3883124809276777,0.3896616541353383,0.3926788685524126,0.394817540631708,0.3945399393326592,0.3970264317180617,0.4036029129934841,0.0,1.692590244307279,61.648564600984926,211.11006982331955,322.0248452265595,fqhc6_80Compliance_baseline,77 -100000,95751,41552,388.90455452162377,7232,74.2237678979854,5652,58.43281010119998,2280,23.41489906110641,77.3313489084019,79.69656965170181,63.31030609897547,65.0626599602557,77.05328680309935,79.41900767782944,63.207798455354,64.96265907276133,0.2780621053025527,277.56197387236625,0.1025076436214647,100.00088749437452,89.72634,62.83833369096744,93707.99260582136,65626.81715174508,237.56326,145.17472463307186,247482.0419630082,150995.269228309,274.39719,130.84257251409636,283040.1875698426,133913.4512050523,4045.66176,1818.117077660718,4184917.212352873,1858717.8385214184,1377.20264,605.5303019637536,1419152.0819625906,613541.6888168827,2246.06298,934.4241613131658,2308593.1844053846,945181.2461973664,0.38012,100000,0,407847,4259.454209355516,0,0.0,0,0.0,19877,206.95345218326705,0,0.0,25552,263.22440496705,2034864,0,73028,0,0,3568,0,0,45,0.4699689820471848,0,0.0,0,0.0,0,0.0,0.07232,0.1902557087235609,0.3152654867256637,0.0228,0.3030541355354568,0.6969458644645432,25.426326466926582,4.508150483990823,0.3356334041047417,0.2022292993630573,0.2317763623496107,0.2303609341825902,11.191237735048622,5.6187192717508845,24.12638857168311,13103.878014485324,63.53119202044602,13.286706071441186,21.50917864154656,14.484096027592273,14.25121127986601,0.5539631988676574,0.7646544181977253,0.7037427517132314,0.5854961832061069,0.119047619047619,0.706268221574344,0.899135446685879,0.8625792811839323,0.7330960854092526,0.1586715867158671,0.5051401869158878,0.7060301507537688,0.6509831460674157,0.5451895043731778,0.1086323957322987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002056758427137,0.0045935284991431,0.0067901547830499,0.0092765698028855,0.0117906773281246,0.0140338727581957,0.0163962843246219,0.0185527430899455,0.0208450531354519,0.0231784009668762,0.0252605021332458,0.0275337751065906,0.0295146750092619,0.0316087807894465,0.0337317561569744,0.035932168338331,0.0381357687210072,0.0400639196438762,0.0422652335710276,0.044128981190243,0.0584643326861652,0.0729614632053656,0.0862240777065654,0.0994773757321471,0.1117390295848006,0.1268760113803424,0.13976908546809,0.1529612270984235,0.1650065194621978,0.1766536463922393,0.1912542979402222,0.2040765490128123,0.2163356850448567,0.2279241895043412,0.2388110655918241,0.250013861320263,0.2603887399463807,0.2704166666666667,0.2804491728452534,0.2886623940933011,0.2965682584172062,0.3043895924368271,0.3116136223497605,0.3178781689294725,0.3246125564577982,0.3309839161616037,0.3370920253085259,0.3426179584867675,0.3472979286715464,0.3526706054958563,0.3534086156419908,0.3545437016224554,0.3549219510131562,0.3554182880784642,0.3572893141566623,0.3564677950524623,0.355964928939955,0.3575497873877423,0.3586248182673394,0.3597127442924006,0.3610855824596282,0.3621659077410414,0.3630736303166376,0.3643699287219258,0.3649254811170597,0.3664355788096795,0.3660660746409297,0.3674668351231838,0.369415260532739,0.3711769415532426,0.3725283295866403,0.3740792142628376,0.3768933392483681,0.3774956016216629,0.3794818847381265,0.3771744240714622,0.3798062367544656,0.3879173290937996,0.3940873338757797,0.3945680875141456,0.0,2.260961964650257,60.30960767924423,212.76564207514815,328.55738651403175,fqhc6_80Compliance_baseline,78 -100000,95489,41421,390.68374367728217,7239,74.56356229513347,5655,58.62455361350522,2273,23.489616605053985,77.22623088476638,79.71333247623714,63.24095407219974,65.07614340453442,76.95038778781907,79.43388302681747,63.14263803616541,64.97852829297797,0.2758430969473124,279.44944941967265,0.0983160360343333,97.61511155645051,89.68784,62.868102563084776,93924.78714825792,65838.05732920523,235.5696,143.57522830448283,246109.4890510949,149769.20724322475,272.61726,130.21062932283672,281104.22142864624,132979.4796143818,4066.07807,1807.801378501662,4221516.090858633,1856556.0520077315,1349.28831,581.8554012441556,1396357.7375404497,592670.4973810138,2229.16596,907.922016797209,2305513.284252636,927317.7844052204,0.37821,100000,0,407672,4269.308506738996,0,0.0,0,0.0,19709,205.772392631612,0,0.0,25494,262.6480537025207,2031685,0,72908,0,0,3679,0,0,35,0.3560619547801317,0,0.0,0,0.0,0,0.0,0.07239,0.1914016022844451,0.3139936455311507,0.02273,0.3254352663961251,0.6745647336038748,25.077625530079175,4.512458448308958,0.3115826702033598,0.2203359858532272,0.2415561450044208,0.226525198938992,11.1657668754637,5.708932610850384,24.1354534362798,12938.803614727918,63.88052093392845,14.580804898623144,19.93888779115588,15.317319328361783,14.043508915787635,0.5492484526967285,0.7728731942215088,0.6855845629965948,0.5893118594436311,0.1014832162373146,0.7401633259094283,0.9247311827956988,0.8599562363238512,0.773972602739726,0.1504424778761062,0.4895543175487465,0.7082379862700229,0.6245210727969349,0.5391061452513967,0.0909952606635071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989157420073,0.0042297666020874,0.0063151054886592,0.0084697508896797,0.0108934679915295,0.0128930336849615,0.0152552577067112,0.017431998855578,0.019611855095297,0.0214954611585828,0.0236184102479881,0.0255192268147234,0.027678810470169,0.0298492068403572,0.0318237707035326,0.0341253817880623,0.0363066773166253,0.0382536382536382,0.0402979632234203,0.0422474913594169,0.0564161607703579,0.0707301720520352,0.0847117214692057,0.0983981452207819,0.1096399928146496,0.1253537098466462,0.1384028235494227,0.1506096715347934,0.161938724151594,0.1731023439263184,0.1875364321336816,0.2004619789181451,0.2134323151721281,0.2247150372643577,0.2355530063203874,0.246728286710956,0.2568137337135827,0.2670160608622147,0.2762894569271354,0.2851831878004842,0.293260980474004,0.3019553596548813,0.3095147704354016,0.3166900993787327,0.3237290821114726,0.3298740815872152,0.3359934648736961,0.3409683521652436,0.3457372807530782,0.3512378631131363,0.3513637777387118,0.3521292014631789,0.3529553065521188,0.3528176459513085,0.3531333442725659,0.3530153846153846,0.3526321654276572,0.3532822359509729,0.3542243707743389,0.3557624894385819,0.3569058481957693,0.3580666985036612,0.3593058074311501,0.3604753223955168,0.3607445008460236,0.3623948203098377,0.3615055799409014,0.364039814873518,0.3658277206664303,0.3661723446893787,0.368050441826215,0.3716548918861057,0.37560913866211,0.3762308220746508,0.3778754441743033,0.3780416127894675,0.3814117286786097,0.375796178343949,0.3771491957848031,0.3754818812644564,0.0,2.327106771400325,59.45064009490026,218.9100255621299,328.40828390864743,fqhc6_80Compliance_baseline,79 -100000,95690,41690,391.921830912321,7256,74.37558783571951,5589,57.62357613125719,2320,23.785139513010765,77.36399481233721,79.74778734570151,63.33329461681414,65.09685857566048,77.08681152063956,79.47374474565028,63.23161687906588,64.99931968032514,0.2771832916976535,274.0426000512315,0.1016777377482682,97.53889533533312,90.33948,63.22844593450452,94408.48573518656,66076.33601682988,236.36464,145.05003195596038,246224.31811056536,150796.78331691964,271.34202,130.00115408923114,277992.07858710416,131568.47202621037,4089.00381,1835.761940506264,4221568.25164594,1866837.4861597505,1372.69578,598.0261663312789,1413188.828508726,603726.4473476829,2292.2071,946.7313221294896,2352914.8500365764,953744.3422190866,0.38137,100000,0,410634,4291.294806144842,0,0.0,0,0.0,19854,206.6778137736441,0,0.0,25299,258.9925802069182,2035542,0,73042,0,0,3681,0,0,39,0.3866652732782945,0,0.0,0,0.0,0,0.0,0.07256,0.1902614259118441,0.3197353914002205,0.0232,0.3210864715916546,0.6789135284083454,25.1680961050848,4.583804218726907,0.3190195025943818,0.2020039363034532,0.2361782071926999,0.242798353909465,10.951341883159806,5.290320699620052,24.61805790417242,12995.363921085967,63.00070414788614,13.345127227648142,20.067643430715695,14.740316558395143,14.847616931127142,0.5448201825013419,0.7883082373782108,0.704991587212563,0.5590909090909091,0.1179071481208548,0.6896807720861173,0.9162162162162162,0.8560975609756097,0.6710963455149501,0.1390977443609022,0.4988213107024988,0.7259552042160737,0.6598689002184996,0.5260058881256133,0.1127406049495875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023707966484635,0.0045027229304207,0.0068931210915292,0.0090859198731629,0.0114064185270355,0.0134380667114941,0.0159125219307193,0.0181073573266881,0.0204862283043376,0.0225685555714841,0.0245095525724775,0.0265490361210677,0.0287498199921825,0.03086038124678,0.0329944785592651,0.0349063236692998,0.036867075495152,0.0386750651156516,0.0407367753604357,0.0427376251549785,0.0571568811746767,0.0703908392472105,0.0837197591220965,0.0965536824171548,0.1085764884466183,0.1240100240026223,0.138018430736275,0.1508707354177083,0.1632644345746498,0.1744517567364788,0.1883945674867093,0.2012461598373069,0.2137964030185068,0.2249767619880802,0.236513838166058,0.24836695378756,0.2594786333366797,0.2696161675232515,0.2787246113695676,0.2876574307304786,0.2960118441750717,0.3039639850327408,0.3107317881578635,0.3170424713201711,0.3240957853940638,0.3300481687260542,0.3358904726744841,0.3408062054933876,0.3456970606499689,0.3509997495683349,0.3511921571791665,0.3515025707294273,0.3530943067008133,0.3540685750599381,0.3550244916134778,0.35447333425047,0.3539455395501643,0.3547568779561709,0.3564088143565622,0.3576144758913594,0.35899840570196,0.3593184112094045,0.3617900677674506,0.3618119780910478,0.3627120277563608,0.3632410342388599,0.3618649167550219,0.3654173764906303,0.3687585890975721,0.3693618376527728,0.3727753947248334,0.3732177058948712,0.374341395289786,0.3751249903853549,0.3749521988527725,0.3757099697885196,0.3739607843137255,0.3802083333333333,0.3720600736752621,0.3773285770907649,0.0,3.0639268565903155,58.39452855052261,218.3906811332436,317.74545626771226,fqhc6_80Compliance_baseline,80 -100000,95674,41921,393.6806237849363,7175,73.75044421681962,5585,57.85270815477559,2295,23.674143445450174,77.31725194233033,79.72449581118885,63.30264576078415,65.08446516215483,77.03875922130646,79.44408651765255,63.19993670190138,64.98342566223886,0.2784927210238663,280.4092935362945,0.1027090588827732,101.03949991597004,89.10352,62.501449721070976,93132.19892551788,65327.31458562699,235.58698,144.0801669970904,245703.76486819825,150064.06017734844,276.5855,131.42081907528464,285530.1649350921,134763.0836648381,4039.93935,1816.7984144970264,4185850.858122374,1862794.989366232,1344.18257,587.6763411094017,1390227.146351151,599916.2179721997,2260.5246,941.7607632376396,2333368.8985513304,958695.3338565768,0.38173,100000,0,405016,4233.281769341723,0,0.0,0,0.0,19679,205.12364905826036,0,0.0,25671,264.78458097288706,2039316,0,73183,0,0,3448,0,0,41,0.4285385789242636,0,0.0,1,0.0104521604615674,0,0.0,0.07175,0.1879600764938569,0.3198606271777003,0.02295,0.3183921724183525,0.6816078275816475,25.51746561345476,4.571150709560819,0.3434198746642793,0.1951656222023276,0.2291853178155774,0.2322291853178155,11.10372650581693,5.50124494502639,24.515460332209788,13048.032537850326,63.17401711376154,12.961367286093068,21.369673715879653,14.395488616518596,14.447487495270224,0.5491495076096687,0.7990825688073394,0.6882168925964547,0.5578125,0.1249036237471087,0.6932299012693935,0.9081364829396326,0.875,0.6543624161073825,0.1519434628975265,0.5001199904007679,0.7404795486600846,0.6299589603283173,0.5285132382892057,0.1173570019723865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024517004873007,0.0050093799117781,0.0071343759197052,0.0092979300673718,0.0116192704888843,0.0136090455332586,0.0157203190990145,0.0178571428571428,0.02007325407706,0.0222934830493714,0.0245716630758182,0.0265418524836104,0.0288840622973432,0.0308263312541883,0.0330183320423444,0.0350842705347997,0.0373284405191358,0.039378991640272,0.0416380548099132,0.0437089544459501,0.0588831426631144,0.0728512188992209,0.0862673468959291,0.0984796675259087,0.1108016583852897,0.1258188437238737,0.1393500042455633,0.1519708604475307,0.1637702535163097,0.1747073906000236,0.1882264232239995,0.2020156096082443,0.2141854314726336,0.2252774919543753,0.236886166861272,0.2483262392480269,0.2584375,0.2690403869951626,0.2789293940115956,0.2880470879234134,0.2961209989122133,0.3041967857393501,0.3112855671201733,0.3179349455081707,0.3238958923426654,0.3300803178167372,0.3360100219229565,0.3417273514284259,0.3479534058074296,0.3531958708451039,0.3543546779450984,0.3548617993613038,0.3552240487962924,0.3554893653937913,0.3561011217542866,0.357098955132145,0.3564877986862564,0.3580009215376514,0.35892435594786,0.3597518459585576,0.3603432734920754,0.361146320209142,0.3622130095330289,0.3627913242624276,0.3625317681229578,0.3649648441599328,0.3655498281786941,0.3678262516573016,0.3687182382834557,0.37159843587902,0.3724141094445209,0.3708970383834064,0.3722081218274111,0.3745298226759807,0.3723706651506537,0.3708814083501843,0.3706736711990111,0.3666666666666666,0.3677629790703995,0.3700757575757575,0.0,1.9932671787043252,63.10774836636031,209.1614105036515,317.3231630600362,fqhc6_80Compliance_baseline,81 -100000,95856,41808,393.0374728759807,7076,72.59848105491571,5493,56.7413620430646,2236,22.99282256718411,77.4717338221379,79.7575413962116,63.40399372213196,65.09035060960481,77.19954209087044,79.48396840061118,63.3046252567288,64.99275316361559,0.2721917312674691,273.5729956004178,0.0993684654031596,97.59744598922282,90.61734,63.43932816640167,94534.8647971958,66181.90636621774,233.70296,143.164133220676,243249.2801702554,148796.3228391295,276.2411,132.49005220994476,284245.70188616257,135251.48096349044,3943.37149,1773.703132791418,4077520.979385745,1814054.574352588,1350.10696,588.2111901806151,1394226.725504924,599393.0480936139,2192.28222,902.24920482518,2256013.833249875,915047.4603249676,0.38155,100000,0,411897,4297.039308963445,0,0.0,0,0.0,19586,203.72225004172927,0,0.0,25802,265.2311801034885,2037740,0,73106,0,0,3598,0,0,37,0.385995660156902,0,0.0,1,0.0104323151393757,0,0.0,0.07076,0.185454068929367,0.3159977388355003,0.02236,0.3219702053415649,0.6780297946584352,25.352249869810205,4.521850668182974,0.3282359366466412,0.2066266156926998,0.2364827962861824,0.2286546513744766,11.305563362246795,5.8643199638070245,23.527439887129614,12967.936952908376,61.90913522897782,13.369961831868556,20.50333426041623,14.500055619610356,13.53578351708269,0.5659930821044966,0.771806167400881,0.7176927343316695,0.6066204772902233,0.1202229299363057,0.7161016949152542,0.9128205128205128,0.8418891170431212,0.71280276816609,0.168,0.5138582290900172,0.697986577181208,0.6717325227963525,0.5762376237623762,0.1083499005964214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022978034213989,0.004497978948648,0.0068952929485489,0.0090336987413723,0.0112287618892772,0.0135012768728316,0.0156568331839295,0.0176664388661655,0.0198108776014541,0.0219156508222204,0.0240272841794774,0.0262342830184809,0.028434947865838,0.030589252091243,0.0326760331089647,0.0346647115920778,0.0366478066137757,0.0386975086017493,0.0404830135393305,0.0422069137755208,0.056056056056056,0.0708118166042942,0.0835621319137342,0.095812976096664,0.1078708290297422,0.1239758539395925,0.1367844002163102,0.14943299078743,0.161609907120743,0.1736166929235122,0.1877293220138373,0.20133792999103,0.2142531381661816,0.2259233784241154,0.2365727214814489,0.2485103089934221,0.2586135834512258,0.2681105721728195,0.2773971439248949,0.2861014235892745,0.2940497222895809,0.3019228974143564,0.3097200897602457,0.3167230840998529,0.3230722562640296,0.3287532934426633,0.335012625946946,0.3408940733963607,0.3463140196585618,0.3508406683181363,0.3512786364798149,0.352392065344224,0.3538831402541896,0.3546312982051466,0.3554992141861637,0.3553019539545045,0.3544989419827559,0.3548233907020158,0.3567656878108605,0.3577997971999359,0.3591396643868894,0.3596105713328472,0.359582027168234,0.3603203640906657,0.3602912993484093,0.3620107085304361,0.363123102675405,0.365755954057522,0.3688113641111343,0.3687965627340455,0.3710799819249887,0.3730449074810455,0.3737131308027537,0.3780777786300529,0.3800133371439458,0.3834433113377324,0.3898357131890066,0.3882257738215658,0.3963766126818556,0.4001533154465312,0.0,2.221811873924441,62.364257168577,205.98683664101847,305.93486292601585,fqhc6_80Compliance_baseline,82 -100000,95728,41642,389.7814641484205,7177,73.58348654521144,5509,56.83812468661207,2255,23.065351830185527,77.34438518034166,79.69752264702109,63.33412346583962,65.07224574291587,77.06951100029478,79.42675452071308,63.23241965912199,64.97578313440249,0.2748741800468792,270.7681263080133,0.1017038067176301,96.46260851337728,90.40438,63.31846228527797,94438.80578305195,66144.13994367163,237.35347,145.2494509387421,247166.04337288984,150951.749685298,271.61045,129.412312742596,279620.61256894533,131939.00722517044,3987.04822,1782.6298073648086,4117406.735751295,1814612.9735968667,1311.66477,567.8293385361007,1351075.3906902892,574091.2749115234,2219.68166,920.2880191995932,2273270.2030753805,920822.7434090856,0.38148,100000,0,410929,4292.672990138727,0,0.0,0,0.0,19844,206.54354003008527,0,0.0,25344,260.62385091091426,2032538,0,73032,0,0,3506,0,0,50,0.5014206919605549,0,0.0,0,0.0,0,0.0,0.07177,0.1881356820803187,0.3141981329246203,0.02255,0.3143839238498149,0.685616076150185,25.461671335637693,4.585816435640605,0.330731530223271,0.204574332909784,0.2294427300780541,0.2352514067888909,11.2321365119773,5.5217592492420735,23.799886548598977,13029.78338924298,61.90365583174941,13.160465330754125,20.52588036819856,14.119806323907405,14.097503808889323,0.5420221455799601,0.7710736468500443,0.6926454445664105,0.5704113924050633,0.103395061728395,0.6940406976744186,0.9192200557103064,0.8552915766738661,0.6996587030716723,0.0919540229885057,0.491410597628841,0.7018229166666666,0.637233259749816,0.5314109165808445,0.1062801932367149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0046637535104883,0.0070313213405168,0.0092217381148248,0.0111637554141163,0.0133560005293536,0.015868001059905,0.0181131690392366,0.0203328871678025,0.0224496060575053,0.0248995819329453,0.0271268897989346,0.0294779917539764,0.0316574323906819,0.0337535331861602,0.0358696663118625,0.0380192321626349,0.0400613935930807,0.0421014342132612,0.0442699110435199,0.0587786976812169,0.0730701607501674,0.0866313525987308,0.0987442682259896,0.1109599586615626,0.1265941921702163,0.1396582266396529,0.1531135609091683,0.1652673631139311,0.1763627396320281,0.1897440866466414,0.2024664647338814,0.2153963248885506,0.2264051944644848,0.2365214139592178,0.2479987599508409,0.258484648951486,0.2685922526656769,0.277808666840654,0.2868185982592762,0.2945138109399771,0.3021603782417377,0.3101456138273943,0.3160395469379919,0.3221713077194219,0.3286354268224956,0.3337721607863788,0.339768684408513,0.34524488948843,0.3512280887290802,0.3518690769873687,0.3515850937835679,0.3528300023977095,0.3531760960787151,0.3532878873574852,0.3533296473768276,0.3533841754051477,0.3543539094650206,0.3555871617800778,0.3569010906355773,0.3580836073273837,0.3607171156893819,0.3614057937524946,0.3623035473731477,0.3644914045310573,0.3654057447810391,0.3669070925639704,0.3695349572919962,0.3706686446964077,0.3753000480076812,0.3741811351871363,0.3768596810446323,0.3786727456940223,0.3804273439282183,0.384289347273241,0.3882241440587608,0.3963658761934093,0.3985117817279868,0.3968697596422582,0.3935837245696401,0.0,2.7063364062549744,60.27739411060416,200.8059197051953,320.15483739006856,fqhc6_80Compliance_baseline,83 -100000,95681,41435,389.74300017767376,7154,73.53602073556924,5662,58.68458732663748,2266,23.40067516016764,77.28108161739658,79.66911496125822,63.29287913429015,65.05598672454933,76.99944082449049,79.38396759348117,63.18903972063037,64.95292972468907,0.2816407929060887,285.14736777704286,0.1038394136597844,103.05699986025728,90.14654,63.15148326376671,94215.71680897984,66002.11459304013,234.47306,143.1275616086366,244587.62972795017,149118.83405131276,269.77979,128.66626770780223,278650.83976965124,132015.37334191604,4093.08309,1829.724997296913,4248294.164985734,1882769.0422308631,1369.65726,593.3407611500057,1420519.2253425445,609160.127036722,2228.86172,931.8866027287572,2304611.0095003187,952671.1818834628,0.37927,100000,0,409757,4282.532582226357,0,0.0,0,0.0,19552,203.8544747651049,0,0.0,25214,260.3442689771219,2032236,0,72965,0,0,3582,0,0,53,0.543472580763161,0,0.0,0,0.0,0,0.0,0.07154,0.1886255174414005,0.3167458764327648,0.02266,0.3241875332978157,0.6758124667021843,25.27177645355725,4.5444735401571545,0.3244436594842811,0.2029318262098198,0.240904274108089,0.2317202401978099,10.969676933477649,5.482414372764142,24.169861198368867,12913.107723902933,63.6580022946453,13.291594976340315,20.83399008052232,15.254560991621412,14.277856246161235,0.5400918403391027,0.7467362924281984,0.6946107784431138,0.5645161290322581,0.1173780487804878,0.7042052744119743,0.9178885630498532,0.8526315789473684,0.7220447284345048,0.1605839416058394,0.4860295844094858,0.6745049504950495,0.6395007342143906,0.5176022835394862,0.1059730250481695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019652535075723,0.0043796064436987,0.0068096248109847,0.0090317074905263,0.0112177857331733,0.0135636022972587,0.0156106613373575,0.0178462041083023,0.0201175568617429,0.022016602012303,0.0241054034656003,0.0262025771343498,0.0284248089758224,0.0304463402571711,0.0323965611550886,0.0345747430674745,0.0366177049452029,0.0386615325535293,0.040672394782283,0.0425052897093005,0.057053605942518,0.0708975540291506,0.0840120916953564,0.0972076091073608,0.1089646877604633,0.1244935309488294,0.1375781573444018,0.1503206015806403,0.1612223731060808,0.1726959378926006,0.1870523772542928,0.2002427710582217,0.212619265455496,0.2237128870100428,0.2338064487690917,0.245105108436408,0.255575553642695,0.2657059804407589,0.2753736857061665,0.2845097566851361,0.2917695330157516,0.3002590764685884,0.3073628511769172,0.3141418511308193,0.3206750027394591,0.3273277352432699,0.3330030726782467,0.3385133583403506,0.3441485907260683,0.3489816457875361,0.3502695836655271,0.3507201944455952,0.3514879519778011,0.3514262901938013,0.3531203799112943,0.352705010075528,0.3523764107455094,0.3530246526517276,0.3547572415214926,0.3564162824491846,0.3577715373452195,0.3593416884177808,0.3609777758981624,0.3635419723269305,0.3650046123221828,0.365142287094403,0.3670987955963092,0.3687988312265769,0.3711759504862953,0.3725364781131321,0.3761581506283827,0.3773130816130067,0.3773177546355092,0.3774506064535815,0.3791513783046382,0.3796860356138706,0.3838739290085679,0.380024115755627,0.375917368850231,0.3688871775125144,0.0,1.94351322378432,62.38886967949031,205.69066036741768,332.58362747513894,fqhc6_80Compliance_baseline,84 -100000,95731,41534,390.928748263363,7114,73.20512686590551,5502,56.94080287472188,2247,23.179534320126187,77.3612597271838,79.72674769897206,63.34108899169471,65.08939679560847,77.08805814622757,79.4507185552308,63.24422298155983,64.99347561438725,0.2732015809562398,276.02914374126897,0.0968660101348817,95.92118122121462,90.18284,63.13091595329651,94204.42698812296,65946.15741326896,234.81294,144.16375423977058,244783.53929239223,150091.97045865038,272.05653,130.33176837122443,280616.36251579947,133394.61096342257,4001.26986,1778.2728526871256,4147230.938776362,1825102.2580847635,1376.26843,590.1736728066772,1426930.7120995289,605781.0769830853,2215.55004,896.9049006178034,2287847.8653727635,914153.3657447244,0.37934,100000,0,409922,4282.019408551045,0,0.0,0,0.0,19617,204.37475843770568,0,0.0,25301,260.7201429004189,2037707,0,73076,0,0,3523,0,0,53,0.5431887267447326,0,0.0,0,0.0,0,0.0,0.07114,0.1875362471661306,0.315856058476244,0.02247,0.3157684098185699,0.6842315901814301,25.319963341715848,4.542724571286043,0.331879316612141,0.1977462740821519,0.2333696837513631,0.2370047255543438,11.34807791709452,5.763442419321026,23.668717635100563,13004.53665839573,61.84653829177653,12.821863157141571,20.636128824293177,14.113765679808578,14.274780630533202,0.5554343874954561,0.7794117647058824,0.7097480832420592,0.5841121495327103,0.1242331288343558,0.7218100890207715,0.9096045197740112,0.8725701943844493,0.7581227436823105,0.1456692913385826,0.5014443909484834,0.7166212534059946,0.6544387380777696,0.5362462760675273,0.119047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021373365342733,0.0043697785708492,0.0064642487467272,0.0088691570744988,0.0110241025119495,0.0130139915683998,0.0153162156098953,0.0176443559503752,0.0200905865633339,0.0219492219492219,0.0239203543452405,0.0259746929049751,0.0280263293222256,0.0300807647931432,0.0318556126555631,0.0338368017864342,0.0361199995857798,0.0381470258602797,0.0402316778970135,0.0419267116079894,0.0569975776812562,0.0710876664154735,0.0847528740454812,0.0974135211859951,0.1093007324656162,0.1249418678391747,0.138295165394402,0.1515851063829787,0.1633027914824544,0.1743245126094552,0.1884385596641369,0.2019727876441195,0.2135721817015772,0.2261734331457297,0.2375996043303841,0.2485921959530473,0.2592258222712631,0.2693422294109718,0.2789454005732996,0.2862192429563367,0.2942637916291109,0.3024945111412155,0.3105983592992742,0.3178429096305516,0.3247099613281771,0.3304800206619193,0.3359233488650985,0.3415282138635006,0.3468983465617029,0.352242273825397,0.3531328692045622,0.3533933851337413,0.3546351973637887,0.3554964282615611,0.3561855746775945,0.3552300613496932,0.3540699424804703,0.3554927540994381,0.3568290222761698,0.3572438225768934,0.3581197865784925,0.359907028487425,0.3605407795817802,0.3619961353525367,0.3640454875393177,0.3643150036799495,0.3648679744578036,0.3674844286259057,0.3705396690407852,0.3719306692344728,0.3747073674546706,0.3764329512130098,0.3777117196888242,0.3802234807898362,0.3822029095031173,0.3888689836378837,0.3938879456706282,0.392321905152946,0.3958392704474209,0.3944878650761004,0.0,2.113684379437576,59.52474430277909,204.29360652855144,320.6179500744201,fqhc6_80Compliance_baseline,85 -100000,95647,41823,393.2899097723922,7084,72.64211109600927,5530,57.18945706608675,2280,23.48217926333288,77.2430810454354,79.64806551403474,63.27207635196621,65.05061628831459,76.96400319112539,79.3677224916868,63.168361471344994,64.94838473501093,0.2790778543100174,280.3430223479353,0.1037148806212187,102.2315533036533,90.36258,63.38468717680144,94475.08024297678,66269.39389296208,237.36386,145.46146045623604,247528.7881480862,151443.8094830324,274.94973,131.43563904997978,283157.966271812,134128.8516152666,3999.90715,1802.902955732382,4140267.452194005,1843487.9505629684,1324.27308,576.8228174425276,1369385.8145054209,588007.6643817036,2242.56588,939.3076075444806,2311826.2569657178,955325.2135836948,0.38049,100000,0,410739,4294.321829226217,0,0.0,0,0.0,19760,205.93432099281733,0,0.0,25585,263.1969638357711,2028231,0,72746,0,0,3545,0,0,46,0.4809351051261409,0,0.0,0,0.0,0,0.0,0.07084,0.1861809771610292,0.3218520609824957,0.0228,0.3147501343363783,0.6852498656636217,25.383209678529024,4.54418742512713,0.3327305605786618,0.2081374321880651,0.2229656419529837,0.2361663652802893,10.996193162622824,5.513163564387829,24.28261764158112,13067.746685900456,62.38884854701988,13.435650046064792,20.972132578804896,13.676400910536495,14.304665011613698,0.5508137432188065,0.7662901824500434,0.7016304347826087,0.583941605839416,0.1171516079632465,0.7072819033886085,0.9166666666666666,0.8385093167701864,0.7491166077738516,0.1648351648351648,0.4984310885831523,0.701120797011208,0.6529108327192336,0.5347368421052632,0.1045498547918683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022600129722717,0.0042095226502748,0.0064566561424525,0.0087991139922169,0.0111378963107625,0.0134630072814298,0.0156410910017843,0.0177973370364319,0.0200936681937172,0.0223544350461834,0.0244998000225615,0.0266079258962588,0.0288875862565431,0.0308955485273362,0.0328234346937511,0.0347123845764096,0.0367949448386595,0.03894297635605,0.0409086653976971,0.0430449422974677,0.0571995820271682,0.071600645201835,0.0847751228320665,0.0979876226160906,0.1102818536894331,0.1254406300612912,0.1384504259522848,0.1512622063025031,0.1629733460307949,0.1749852317276193,0.1897681043692201,0.2033890954822902,0.2162512527778988,0.2281958593493263,0.2388018565270596,0.2502441514626892,0.2605218713999709,0.2702343098121462,0.2797629878991902,0.28900029828144,0.2973026254754615,0.3048517520215633,0.3116916985739518,0.3186047907786516,0.3253729525665225,0.332015175294423,0.3374791350293051,0.3435465338950593,0.3482199721850345,0.3541520405865444,0.3544597769436418,0.3556481315437352,0.3561039732010346,0.3568217414003132,0.3572558500477555,0.3569737044441027,0.3571167215514087,0.3578313253012048,0.3580403735237572,0.3586796451276894,0.359710057384476,0.3603508422206717,0.3613725572954037,0.3611949713873744,0.3622756666424471,0.3633155108383596,0.3646233361245055,0.3658428108520236,0.3666773196974539,0.3683064516129032,0.3698985500532728,0.3725352871457817,0.3756390593047035,0.3792810204870506,0.3819491118578972,0.3835616438356164,0.3801536290954695,0.3819946314268015,0.385065477848983,0.389751552795031,0.0,2.389074515918672,60.85424172542567,204.4993573917077,320.830623370676,fqhc6_80Compliance_baseline,86 -100000,95815,41473,390.59646193184784,7288,74.76908625998017,5705,58.9260554192976,2327,23.91066116996295,77.44904619750217,79.77396816856213,63.38601454967061,65.10623639280719,77.1578145721936,79.4815461641763,63.28014670528951,65.00235379662907,0.2912316253085691,292.4220043858412,0.1058678443811018,103.88259617812425,90.47896,63.308247347995,94430.8928664614,66073.41997390283,235.27527,143.58948574178766,244949.38162083185,149262.8388113903,274.39816,131.28148410238148,281885.5294056254,133660.21985128164,4143.70029,1870.346986868228,4285452.006470803,1913288.6206500945,1385.16968,608.1052949434877,1429358.3572509524,618806.3682981592,2295.2429,955.9133538385844,2360848.7397589106,970090.7119815588,0.37974,100000,0,411268,4292.313312111883,0,0.0,0,0.0,19660,204.560872514742,0,0.0,25674,263.5704221677191,2040915,0,73237,0,0,3666,0,0,37,0.3757240515576893,0,0.0,0,0.0,0,0.0,0.07288,0.1919207879075156,0.3192919868276619,0.02327,0.3228120516499282,0.6771879483500718,25.11312729201901,4.530119526805813,0.3226993865030675,0.2054338299737072,0.2345311130587204,0.2373356704645048,11.090216197648848,5.616703270113245,24.885083935009103,12923.42757483983,64.33046102085274,13.587911538643224,20.84089080221468,15.095100273181032,14.80655840681381,0.5447852760736196,0.7773037542662116,0.694731124388919,0.577727952167414,0.1070901033973412,0.7138888888888889,0.9304347826086956,0.8704883227176221,0.7249283667621776,0.16,0.4876905041031653,0.713422007255139,0.6343065693430657,0.5257836198179979,0.0936051899907321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.0042674829959555,0.0066461700810731,0.0087971475299925,0.0109317957635478,0.0130736256910999,0.015446101770949,0.0177384949836189,0.0198978027593254,0.0220605539695695,0.0239178553861288,0.0259649626946089,0.0281150094059355,0.030095238095238,0.0323745088130034,0.0345582841734423,0.036204059243006,0.0380025093062079,0.0397626914365272,0.0415486799367035,0.0567273789405603,0.0709603220241518,0.0843359604259243,0.0974143999327596,0.1093033793110715,0.1249445184198846,0.1380962476150095,0.1514249255635899,0.1628919210130471,0.1742980746578716,0.1880054198210598,0.2009701710223528,0.2134434986536958,0.2251009494706973,0.2360626221373207,0.2477064220183486,0.2586512223645375,0.2686026019509019,0.2771865872710394,0.2849912022120152,0.292955762837089,0.299919480004201,0.3075933531605532,0.3147034561908974,0.3211588581126129,0.3277626109840379,0.3340324332422006,0.3399677587235501,0.3450967216715986,0.3500842815002107,0.3503332795785626,0.3511705226136176,0.3519393581413664,0.3529717478237018,0.3531567080045096,0.3524824538601507,0.3513270284351958,0.3520981426278377,0.3528389635610978,0.3539730028136909,0.3549865329941642,0.3566143829535365,0.3573434487383687,0.3578515913723206,0.3592546224961479,0.3597916666666667,0.3612719235705119,0.3638337371385419,0.3637678602928206,0.366374850775965,0.3693450061878351,0.3714683965045837,0.3748169838945827,0.3755183535555214,0.3743795341733486,0.3767352800382958,0.3790697674418604,0.3798721385852753,0.3809256661991584,0.3740279937791602,0.0,2.4022141366499885,63.22213270202788,213.71547737936172,324.9722290191906,fqhc6_80Compliance_baseline,87 -100000,95813,41456,389.0077546888209,7001,71.94222078423596,5518,57.069499963470506,2221,22.825712585974763,77.3497797498425,79.6823709378327,63.33168066437421,65.05970414000446,77.0792715244654,79.41044085766174,63.23383822077373,64.96327369051095,0.2705082253770996,271.9300801709608,0.0978424436004772,96.43044949351064,89.95514,62.96364419907121,93886.15323599096,65715.13698461713,233.74952,142.6265953616247,243349.9420746663,148244.97235409048,266.99788,126.90338868154733,274823.6564975525,129525.52201592564,3952.89372,1762.9443922956937,4093742.571467337,1808177.0634110025,1322.74807,566.142089238329,1370391.523070982,580755.9111600192,2183.40092,891.6753299512679,2247532.1511694654,906608.6330091006,0.3788,100000,0,408887,4267.55241981777,0,0.0,0,0.0,19507,203.0413409453832,0,0.0,24877,255.87342009956893,2039695,0,73188,0,0,3471,0,0,43,0.4383538768225606,0,0.0,0,0.0,0,0.0,0.07001,0.1848204857444561,0.3172403942293958,0.02221,0.3080043266630611,0.6919956733369389,25.493986839275887,4.504249828312027,0.3316418992388547,0.2049655672345052,0.2339615802827111,0.2294309532439289,11.07387338205753,5.602242225231842,23.270947223735043,12898.694470907149,61.95712546730677,13.158536795833086,20.57854242191894,14.34845159581604,13.871594653738704,0.5462123957955781,0.757736516357206,0.6956284153005464,0.5662277304415182,0.1208530805687203,0.7095057034220532,0.9,0.8678414096916299,0.740484429065744,0.1157024793388429,0.4951225315251011,0.6991260923845194,0.6388081395348837,0.5159680638722555,0.1220703125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172275462447,0.0042686079876707,0.0066981955467148,0.0091334870820591,0.0113213304851998,0.0131968840690392,0.0157014681892332,0.0178843032573522,0.0200537628913396,0.0224157872649668,0.0245717624627118,0.0264800706409019,0.0285746601682193,0.0305314427522576,0.0327508664796171,0.034883240338913,0.0368188969857568,0.0387188449690394,0.0407272727272727,0.0427789114229792,0.0568549312524776,0.070024467261967,0.0829665031652203,0.0958786070069985,0.1080605383529015,0.1234339483004704,0.1370814640406418,0.1496722427957263,0.1616668624582163,0.1725654225654225,0.1869094435166729,0.2001233659423426,0.2121080281490988,0.2234585578594148,0.2335566482954358,0.2445426944130487,0.2545870535714286,0.265310942895385,0.2747543290288904,0.2839705495059141,0.2915369931162145,0.2989593077642656,0.3063281555006092,0.313314332247557,0.3201520081589044,0.3270566502463054,0.3334125326697262,0.3391594158652623,0.3450873786407767,0.3497445915444622,0.3509386665947898,0.3514679531357684,0.3524215398509822,0.353071669880671,0.353869752341807,0.3533060071539323,0.3525517898245892,0.3536952622311451,0.3548105255944631,0.3556120986238532,0.3562527020168793,0.3575624082232012,0.3588967373023881,0.3597666330079659,0.3614777635674814,0.3620563291801905,0.3632566655223709,0.3663366336633663,0.3695545250140528,0.3719611342454888,0.3749885855173043,0.3762839959550801,0.3761949984172206,0.3769810740113863,0.379502694525858,0.3802182163187855,0.3823620104841196,0.3815228426395939,0.3916506454270804,0.398749022673964,0.0,2.0227587716554893,58.07152382340707,210.9877000434431,319.68418457422024,fqhc6_80Compliance_baseline,88 -100000,95790,41551,390.9802693391794,7076,72.63806242822841,5489,56.602985697880776,2246,22.97734627831715,77.41775944651599,79.7466674056896,63.37436231324406,65.09553969260051,77.14583912782344,79.47727012404474,63.27425666876098,64.99961714549207,0.2719203186925512,269.39728164487065,0.1001056444830794,95.92254710844372,89.75648,62.8039352549488,93701.30493788495,65564.18755083912,232.3248,142.0524327593876,241862.1881198455,147622.32253824783,265.8305,126.93360895680668,273204.0818457041,129123.40178601407,4015.8662,1791.8730300824495,4142296.346173922,1820557.99152568,1326.18907,578.4662339285081,1363402.5994362668,582877.2532336855,2211.49894,914.5431562100238,2264646.936005846,916732.5733259636,0.38004,100000,0,407984,4259.150224449316,0,0.0,0,0.0,19391,201.7225180081428,0,0.0,24764,254.2645370080384,2044100,0,73368,0,0,3548,0,0,44,0.4593381355047499,0,0.0,2,0.0208790061593068,0,0.0,0.07076,0.1861909272708136,0.3174109666478236,0.02246,0.3153080441216034,0.6846919558783966,25.05165786546651,4.640241085953295,0.3352158863180907,0.1974858808526143,0.2291856440153033,0.2381125888139916,11.281926318827496,5.66615696086287,23.67213844923779,12968.463102273536,61.516581877076256,12.66417998501946,20.675904463682617,13.961813057023232,14.214684371350971,0.5461832756421935,0.7859778597785978,0.6820652173913043,0.5922098569157392,0.1117061973986228,0.7255779269202088,0.9291784702549576,0.8623655913978494,0.7410071942446043,0.1551020408163265,0.4881870781099325,0.7168262653898769,0.6210909090909091,0.55,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022175194159519,0.0043283022310522,0.0068289515073413,0.0089679267128435,0.0111547221996258,0.0133250539517081,0.0153297319335439,0.0174430472768841,0.0195322880680308,0.0214416571995865,0.0236782221857766,0.0256839295796335,0.0276110197368421,0.0297015432448292,0.0318928449902558,0.0338779978929537,0.0362420830401125,0.0380177284744181,0.039933513401205,0.0419152325327169,0.0569687610859539,0.0709939784226812,0.0840382821262723,0.0959694108007605,0.1076905253401862,0.1237243011388847,0.1379222677725871,0.1505119127356234,0.1627204729030399,0.1742731032118446,0.1876909176956503,0.2006461302417045,0.213181156744782,0.2249740649740649,0.236082576165416,0.2477624489705605,0.2578598822689975,0.2682384391602736,0.2772326587958032,0.2865640227860264,0.2953158940703425,0.303139306736429,0.3108564678086237,0.3178819839341082,0.3238474327390993,0.3300661240472349,0.3360785833010485,0.3424163086855952,0.3469965852649007,0.3512345516350892,0.3521615227443811,0.3527251722572925,0.3538481034045788,0.3548429016980478,0.3555440029706647,0.3549731162206461,0.3538425009893154,0.3551596749035383,0.3564395296848069,0.3570587185436373,0.3575673496934816,0.3586849271815921,0.3595467967915558,0.3595972225323182,0.3603900794606309,0.3617548804676897,0.3633225889266052,0.3642922403200907,0.3667170527647906,0.3684984304843644,0.371002326748483,0.3721314094031202,0.3724747474747474,0.3771054035515586,0.3807539306686872,0.3845509984455339,0.3880829823740446,0.3868986693961105,0.395054945054945,0.4020938348196975,0.0,2.6919601747104345,58.59500932779312,203.4808434702146,318.42669110115696,fqhc6_80Compliance_baseline,89 -100000,95726,41324,388.5464764013957,7138,73.38654075172889,5591,57.86306750517101,2281,23.45235359254539,77.3893283971574,79.74944414812165,63.35181630130408,65.09320462885064,77.10691685036967,79.4672141221618,63.24848309469689,64.9928760436683,0.2824115467877277,282.2300259598478,0.1033332066071892,100.32858518233922,89.46366,62.63468672052094,93458.05737208284,65431.21693220332,232.3892,141.74222976542245,242239.26623905727,147545.06588118424,271.46101,129.54397831578717,280610.2939640223,133038.12349297584,4084.08543,1824.7838860495317,4228058.0824436415,1867882.640086841,1390.36926,601.5191872575055,1440366.577523348,616295.71616646,2255.91802,933.9851118466696,2321397.6767022545,945291.5386890244,0.37755,100000,0,406653,4248.093516912855,0,0.0,0,0.0,19403,202.13943965066963,0,0.0,25230,260.54572425464346,2043199,0,73290,0,0,3573,0,0,49,0.5118776507949774,0,0.0,0,0.0,0,0.0,0.07138,0.1890610515163554,0.319557298963295,0.02281,0.3198617388992289,0.680138261100771,25.15686410026893,4.54671706472273,0.3255231622250045,0.1967447683777499,0.2364514398139867,0.2412806295832588,11.136556232234293,5.613779477863778,24.217263323528307,12922.421531756592,62.858354487381206,13.008803618821831,20.56834507750082,14.499715080600865,14.78149071045769,0.5439098551243069,0.7736363636363637,0.7153846153846154,0.5514372163388804,0.1178650852483321,0.6883686905632772,0.8966480446927374,0.8329718004338394,0.7338129496402878,0.1185185185185185,0.4971590909090909,0.7142857142857143,0.6754966887417219,0.5028735632183908,0.1177015755329008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585251729341,0.0046722815125624,0.0066644350445817,0.0091081709533625,0.0112337847179862,0.0132320908739287,0.0153676830262514,0.0175914777249443,0.0198432566646571,0.0220917025652569,0.0241315708576698,0.0263473791129305,0.0287196876284422,0.0308495198097767,0.0327853636401138,0.0345889526171653,0.0365163013656082,0.0385261716561897,0.0403097552102281,0.0423160263355279,0.0571717973351154,0.0708747109236838,0.0843822110341934,0.0966815973755599,0.1090497022084014,0.1245849284067595,0.1380853884911164,0.1503518465289089,0.1627959148790701,0.1739880984292071,0.187655464266101,0.2000281242225275,0.212683849507017,0.2244344584030351,0.2348980736861791,0.246092495153697,0.2563564524410117,0.2667701444189499,0.2754754663882711,0.2840073318822316,0.292225666173205,0.3003706691923621,0.308247288554566,0.3139927652540545,0.3209089363355923,0.3274774552801459,0.3338674745552648,0.3391484705044027,0.3440362811791383,0.3498455690187693,0.3515884656269763,0.3514859658778206,0.351909707562836,0.352052397958446,0.3527829782175864,0.3533985337557586,0.3526993263544071,0.3537563343555767,0.3553107923497268,0.3569170313476824,0.3577347030593881,0.3591802824702299,0.3599445657651604,0.3610126922904426,0.3611097696431158,0.3627399833055091,0.3626916378793502,0.3636020151133501,0.3640004215407313,0.3672051760409637,0.369851127956891,0.3734187349879904,0.3758640370346883,0.3766620816139385,0.3780741581536133,0.3814788397527341,0.3850865104884397,0.378827823970797,0.3722566122678672,0.3774912075029308,0.0,2.1560546049116365,60.34646852791426,211.98014848201956,320.38079927076853,fqhc6_80Compliance_baseline,90 -100000,95685,41593,391.430213722109,7106,73.17761404608872,5509,57.12494121335632,2264,23.326540210064277,77.35982293729873,79.73488143961278,63.33991942654043,65.08956494942201,77.08580014275228,79.4598167896233,63.24006248394986,64.99201423853995,0.2740227945464539,275.0646499894742,0.0998569425905699,97.5507108820608,90.21826,63.13676818037687,94286.73250770758,65983.97677836324,232.89022,142.25668384793755,242948.12144014213,148228.32236065858,268.53383,127.664284961424,277958.2797721691,131347.05266278447,3995.93004,1786.6308080809686,4143559.784710247,1834747.2324153548,1312.62751,574.9414281313279,1360647.154726446,589694.5512312981,2234.88756,919.1787875248862,2303837.4457856505,933166.5226845328,0.3799,100000,0,410083,4285.760568532162,0,0.0,0,0.0,19445,202.7486021842504,0,0.0,25026,258.91205518106284,2037503,0,73129,0,0,3494,0,0,51,0.532998902649318,0,0.0,2,0.0209019177509536,0,0.0,0.07106,0.1870492234798631,0.3186039966225725,0.02264,0.3174412393162393,0.6825587606837606,25.304627200907813,4.571558071976699,0.3256489381012888,0.2054819386458522,0.234162279905609,0.2347068433472499,11.216027343635934,5.627095619610141,23.984094266788897,12964.41770968731,62.0784385050782,13.139285484721857,20.304603664970337,14.409192194927371,14.225357160458644,0.5476493011435832,0.7676678445229682,0.6984392419175028,0.5806201550387597,0.1129156999226604,0.7136563876651982,0.933130699088146,0.8787234042553191,0.6946308724832215,0.1698113207547169,0.4931275620930793,0.6998754669987547,0.6344410876132931,0.5463709677419355,0.098249027237354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023696682464454,0.0047536513921407,0.0068381271242327,0.0090999573439499,0.0111741499918659,0.0132424041935976,0.0154576671863377,0.0173142064237032,0.0193674920323608,0.0217391304347826,0.0238802606236938,0.0263152495075508,0.0286771507863089,0.0307464192674814,0.0325854866161225,0.0344802637698835,0.0366075865496107,0.0386151245164033,0.0405044340711322,0.0423853344866757,0.056990325748553,0.0710119889011046,0.0844362346372233,0.0965047031838555,0.1078660928996329,0.123785842767961,0.1373498068186643,0.1501134318184238,0.1625761624799572,0.1737212646762111,0.1885572675358258,0.2020853860562816,0.2146564387138893,0.2258212777133352,0.2367189650426644,0.2480396065922381,0.2587826979733952,0.2675180717473665,0.2764779931274595,0.2850912836948435,0.2933223851598279,0.3011766357107768,0.3091276978417266,0.3157976690981829,0.3218372671561191,0.328256024430188,0.3342335246239826,0.3405123641217977,0.3456486573924296,0.3511573279843754,0.3523056015285458,0.3531937734836285,0.3540958639459619,0.3550229135645411,0.355612351035692,0.3549049662783568,0.3545823684294008,0.3558981784674115,0.3564706084034766,0.3581257839096936,0.3582650529955649,0.3592907013646461,0.3599351960949335,0.3613286948715071,0.3615338237067406,0.3633845510609386,0.3652677527032039,0.3657713889414287,0.3676527489535333,0.3693848240644698,0.3718800091596061,0.372755052806519,0.3750239540083041,0.3744595429277331,0.3741438356164384,0.3760694059525244,0.3751741216529949,0.373597225056111,0.378208629164391,0.3737412858249419,0.0,1.7029138723050774,60.75679914888986,209.51132839474,313.04611932706496,fqhc6_80Compliance_baseline,91 -100000,95856,41769,391.5143548656318,7051,72.41069938240695,5463,56.4388249040227,2264,23.201468869971624,77.34109898624328,79.63300785866743,63.34986309044478,65.04443696393233,77.06594169478156,79.35722001319408,63.24854997831027,64.94548157837708,0.2751572914617242,275.7878454733458,0.1013131121345054,98.95538555524296,89.61326,62.74204383700901,93487.37689868137,65454.47737962048,232.98955,142.7224024251093,242492.94775496575,148323.4147315862,266.91639,127.29779869282724,274987.66900350526,130112.0637620368,3987.57871,1783.873293591001,4125291.562343516,1826316.624510727,1310.74955,566.3484018443158,1357074.4345685192,580492.9964959858,2233.05642,927.709330636089,2292267.96444667,937816.0902964256,0.3822,100000,0,407333,4249.426222667335,0,0.0,0,0.0,19492,202.7624770489067,0,0.0,24833,255.581288599566,2040292,0,73268,0,0,3642,0,0,40,0.4172926055750292,0,0.0,0,0.0,0,0.0,0.07051,0.1844845630559916,0.3210892072046518,0.02264,0.3240877878012656,0.6759122121987343,25.375182201393176,4.535665095155892,0.3320519860882299,0.1991579718103606,0.2297272560863994,0.23906278601501,11.086627223634002,5.577901211386091,24.102056850937256,13040.515133387778,61.59804013401386,12.814191789757157,20.390779959556635,13.924117038973822,14.468951345726245,0.537799743730551,0.7601102941176471,0.6957001102535832,0.5713147410358566,0.1010719754977029,0.6953298739807264,0.9302949061662198,0.8413793103448276,0.6881720430107527,0.1259541984732824,0.4861448711716091,0.6713286713286714,0.649746192893401,0.5379098360655737,0.0948275862068965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019239532175586,0.0044482272952954,0.0068871780827475,0.0092899059841208,0.0112414367897871,0.0135044370267849,0.0158215919394439,0.0179546034174955,0.0202439074214042,0.0225663897868161,0.0245633802816901,0.0265330611993723,0.0288000328673698,0.0308972868416449,0.0331073283323716,0.0351639505000567,0.037370227902552,0.0392374242345749,0.0411021480258718,0.0433330558907986,0.0585941166042733,0.0722071841392932,0.086102149411321,0.0991377952342445,0.1111017511346046,0.1257789231321687,0.139450377150606,0.1526659933017915,0.1648187473988624,0.1762663179781783,0.1900585424648099,0.2032206432634698,0.2148455760053051,0.2258487637452725,0.2365496754318407,0.2478118283143876,0.2584727321422593,0.268532271131515,0.2776800408603371,0.2870071253465301,0.2949269828045083,0.3027864211683784,0.3097078071929845,0.3163906133895827,0.3234640197305276,0.3293451580674207,0.3351616700478373,0.3408651153317378,0.3465608122984471,0.3522035018169805,0.3536429197277078,0.3540917668774191,0.3546985027447328,0.3554553887181865,0.3560916695245053,0.3559665724468477,0.3554182418909045,0.3567094284866273,0.3575592893872427,0.3589185102514716,0.3601715732587581,0.3604048776599984,0.3601412650411318,0.3613069414316703,0.3642379272594575,0.3667132351002978,0.3683271461049239,0.3704492702934724,0.3731839230796422,0.3746752468124225,0.3768115942028985,0.3775220765319775,0.3791107435913746,0.3816676885346413,0.3836567732115677,0.3818378119001919,0.3810261974887614,0.3843800978792822,0.3862815884476534,0.3857589984350548,0.0,2.1500071430899697,59.52703096073808,204.09352334840483,317.16238821064354,fqhc6_80Compliance_baseline,92 -100000,95644,41828,393.3963447785538,7305,75.12232863535611,5678,58.79093304336916,2259,23.30517335117728,77.31769350596971,79.73980045086542,63.289715480586615,65.08108155855925,77.04280186898634,79.46267257047141,63.18904766707331,64.98193644821069,0.2748916369833694,277.12788039400493,0.1006678135133043,99.14511034855876,90.37974,63.3026550125039,94495.98511145498,66185.70429143897,238.08952,145.56011341935377,248398.20584668143,151654.64997214018,275.08272,131.51298035323114,283386.9976161599,134397.86610733316,4134.84089,1855.2642864186805,4283239.534105642,1899842.1400387671,1386.78713,598.2541506411736,1433502.9066120195,609057.0664559965,2229.73778,926.8948944074276,2300733.386307557,942583.347488646,0.38239,100000,0,410817,4295.272050520681,0,0.0,0,0.0,19827,206.72493831291035,0,0.0,25666,264.2193969302831,2030973,0,72844,0,0,3606,0,0,50,0.5123165070469659,0,0.0,0,0.0,0,0.0,0.07305,0.1910353304218206,0.3092402464065708,0.02259,0.3172763963025647,0.6827236036974352,25.293793089029226,4.537444325914045,0.3316308559351884,0.2000704473406128,0.2330045790771398,0.2352941176470588,11.03112443315528,5.491955519555661,24.12998649543412,13099.981584059691,64.12737380463118,13.34264899429392,21.40522930363904,14.713332035473464,14.666163471224744,0.5484325466713632,0.7570422535211268,0.7010090281465746,0.5978835978835979,0.1070359281437125,0.7203626220362622,0.9133858267716536,0.8669438669438669,0.77,0.1360294117647058,0.4903393025447691,0.6781456953642384,0.6440798858773181,0.5474095796676441,0.0996240601503759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021983142880298,0.0047864357279032,0.0068934010152284,0.0091769225297005,0.0113036312024988,0.0136715566422167,0.0158019301001775,0.0182265858866559,0.0200587434629987,0.0224481846696324,0.0246163321870348,0.026877519124784,0.0288329849347653,0.0310601293570315,0.0328150023247404,0.0349348593188944,0.0369836595885866,0.0391386993237979,0.0410457081009075,0.0430606540964458,0.0577815400050163,0.0718596755941154,0.0858664369892653,0.0992132452842111,0.1114126704191439,0.1259968439892822,0.1396297791851741,0.1517922808812714,0.1644185822627745,0.1761022501476827,0.19017571109601,0.2034043383101826,0.2163760523650304,0.2280720965375265,0.2387931414466434,0.2499223602484472,0.2602820868165765,0.2704349392977003,0.2797497388381705,0.2884287007643911,0.2972309402758636,0.3048827599124357,0.3126458844299103,0.319480114250054,0.3249732281931464,0.3311577752553916,0.3369950522953592,0.343333757799567,0.3492814899356713,0.3547973285723732,0.35541014570966,0.3555610677029504,0.3560171010116688,0.3569682151589242,0.3573871409028727,0.3574157906851837,0.3578467935187977,0.3574434508153603,0.3585134765357778,0.3601627612299894,0.3609852880619923,0.3630281620650865,0.3647250271217558,0.3652255345715623,0.3658659499412061,0.3670167027125622,0.3679384965831435,0.3690618136178224,0.3714115252333824,0.3713162284534117,0.3747828472158727,0.3779993601365042,0.3777144666033555,0.3799327011318446,0.3827534039334342,0.3825104104699584,0.3832178598922248,0.3908138597904915,0.3949972512369434,0.4039785768936496,0.0,2.2746154196399004,63.49191792878247,215.38004573819867,319.1282492177191,fqhc6_80Compliance_baseline,93 -100000,95720,41646,391.2244045131634,7122,73.22398662766402,5469,56.64437944003343,2242,23.098620977852068,77.34880342590687,79.70673073539926,63.338894218876014,65.07726612741473,77.07706542550409,79.43240924509989,63.23878301216503,64.97835339839862,0.2717380004027774,274.32149029937136,0.1001112067109843,98.91272901610648,90.63934,63.4961517565033,94692.16464688675,66335.3027126027,236.2743,145.12637080098636,246370.4346009193,151146.93982551852,271.79185,129.8721378017543,280741.08859172586,133221.0917593426,3947.36671,1775.198367503995,4090470.685332219,1821176.5540158732,1325.5199,577.5479001502681,1372162.317175094,590745.6854892061,2200.7122,914.8922251207616,2269236.54408692,930981.783465083,0.37971,100000,0,411997,4304.189302131216,0,0.0,0,0.0,19752,205.86084412870875,0,0.0,25333,261.46050982030926,2031083,0,72884,0,0,3440,0,0,50,0.5223568742164647,0,0.0,0,0.0,0,0.0,0.07122,0.1875641937267915,0.3147992137040157,0.02242,0.3207043756670224,0.6792956243329776,25.21939987441661,4.558029459836392,0.3313219967087218,0.2035106966538672,0.2329493508868166,0.2322179557505942,11.176443377565253,5.682693728563939,23.859878947646628,12962.870432281592,61.602128986234106,12.954680768948853,20.43975904003585,14.116559928580548,14.091129248668873,0.5576887913695374,0.7762803234501348,0.7064017660044151,0.5934065934065934,0.1181102362204724,0.7038690476190477,0.9120234604105572,0.8726851851851852,0.7474402730375427,0.1402877697841726,0.5100606060606061,0.716321243523316,0.6543478260869565,0.5474006116207951,0.1118951612903225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265176754123,0.0043790293151684,0.0066764750646846,0.0090004977701927,0.011184317553278,0.0132641115691963,0.0156257963244212,0.0179034398285189,0.0203975269531449,0.0223837060539378,0.0244552405551114,0.0265307798099226,0.0284380654712946,0.0304739941522876,0.0326999649274824,0.0346666115582926,0.036653171948934,0.0387321020958705,0.040767735160482,0.0428970346135411,0.0569874057519998,0.0712693479011647,0.0845057123973184,0.0975350593879204,0.109620394688268,0.1248823212075695,0.1387037901617079,0.1511780174387037,0.1634277411566115,0.1747870674304348,0.1892430493466763,0.2024453581475871,0.2143983641683253,0.2253636661927157,0.2367245439140864,0.2479529312694596,0.2589249810106787,0.2686046249802977,0.2779253809296728,0.286989401317674,0.2950145880609456,0.3027040941694066,0.3101361752516282,0.3169793227449805,0.3228173325720672,0.3288270524733196,0.3345255812208451,0.3402853727395274,0.3451586192620193,0.3505090736442287,0.3508594676150447,0.3512862179134075,0.3509316332143814,0.3517140540853553,0.3521827169316896,0.3518620774280631,0.3513007614213198,0.3517169957095655,0.3531384762817441,0.3540253744430328,0.3550976016801365,0.3576274203437432,0.3578563035084774,0.3588909576257879,0.3597674250283481,0.3611009462073292,0.361553442547829,0.3633862500790589,0.365108484741577,0.368555568867058,0.3694065813024921,0.3720017209852641,0.3715693173821253,0.3721757969668833,0.3762773374080794,0.375919006869953,0.376232973226867,0.379783693843594,0.3774964838255977,0.3739742086752637,0.0,1.9040381740491823,59.54867308978455,204.9923956990974,317.03463340350487,fqhc6_80Compliance_baseline,94 -100000,95651,41610,391.8098085749234,7101,73.19317100709873,5544,57.51116036424084,2277,23.51256129052493,77.26744378178137,79.68307453134402,63.28338998351626,65.06953735682872,76.98749323103262,79.40000837324224,63.18111161780917,64.96831238260175,0.2799505507487509,283.06615810177504,0.102278365707086,101.22497422696595,89.68476,62.82751293899639,93762.49072147704,65684.11510490888,235.20242,144.0953789581117,245456.14787090567,150206.70872036013,269.23121,128.2668930236259,278801.35074385005,132015.48345041776,3994.31809,1796.874071622929,4147031.0085623777,1849674.976344136,1319.70839,576.163895615024,1367542.398929441,590190.8873038695,2232.90342,927.3354384877756,2307725.773907225,946301.5736971016,0.38061,100000,0,407658,4261.931396430775,0,0.0,0,0.0,19696,205.45524876896215,0,0.0,25169,260.45728743034573,2034684,0,73017,0,0,3639,0,0,34,0.3554589079047788,0,0.0,1,0.0104546737619052,0,0.0,0.07101,0.1865689288247812,0.320659062103929,0.02277,0.3111170712082607,0.6888829287917393,25.314087231568504,4.506797949405655,0.3354978354978355,0.2050865800865801,0.2299783549783549,0.2294372294372294,11.121151217272638,5.686319959078134,24.34702143965874,13040.313426427088,62.78469982329374,13.42985948678845,20.99982743687096,14.223923277415183,14.131089622219148,0.5447330447330447,0.7590149516270889,0.6795698924731183,0.5905882352941176,0.110062893081761,0.7130620985010707,0.9098360655737704,0.8556485355648535,0.7535211267605634,0.1575091575091575,0.4878107651460294,0.6874189364461738,0.6186685962373372,0.5438950554994955,0.0970970970970971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000385028471,0.0044007300750354,0.0065992527615334,0.0085968620437362,0.0107732530341102,0.0127816026398337,0.0147745579868262,0.0169680139664519,0.0191515250667184,0.0214129911624048,0.0236398133429054,0.0258556929777704,0.0281561188379557,0.030355486862442,0.0324628406275805,0.0344061120473084,0.0362805920064627,0.0384240134515184,0.0402754373920822,0.0423908170605836,0.0572823042514945,0.0714390448261416,0.0850074033624917,0.0978288337615297,0.1105832673528635,0.1258788648877594,0.1394615262067866,0.1522091263667171,0.1641830960302093,0.175568419809041,0.1898963534982042,0.2038521535661669,0.2163162248051891,0.2276935197951546,0.2386472472670828,0.249958452896664,0.2604784069472814,0.2697328441853661,0.2795213007539286,0.2882541065349213,0.2966363688994384,0.3037475575939814,0.3115126826611089,0.3179369022332625,0.3240435496624293,0.3304770841564599,0.3369920685636958,0.3419946503630111,0.3476066934751589,0.3524999007713374,0.3532844348988937,0.353758293904239,0.3540680671912747,0.3551885629775696,0.355356609967174,0.3551521114202702,0.3552321882951654,0.356507706494533,0.3575971610292983,0.3588714014268813,0.3593591143577964,0.3603702229299363,0.3620031628887717,0.3632359550561798,0.3648200585686972,0.3671125594596725,0.3680057388809182,0.3691508896346482,0.3715156023093543,0.3731361279691331,0.3743862899490505,0.3748370981754995,0.3771052461766793,0.379624581353688,0.3794724220623501,0.3788819875776397,0.3755890669180018,0.3786367414796342,0.3737431772479173,0.3711967545638945,0.0,1.77172000868047,62.469404491494565,211.39027534768564,312.52362708891246,fqhc6_80Compliance_baseline,95 -100000,95829,41647,390.2472111782446,7078,72.63980632167716,5528,56.99735988062069,2240,22.926254056705176,77.40182060844235,79.7166619967504,63.36325590393732,65.07614760743044,77.12064423981353,79.43859809902308,63.25968232771446,64.97724296407611,0.2811763686288202,278.0638977273213,0.103573576222864,98.9046433543308,89.47488,62.65880969710592,93369.0845151259,65385.84635038026,234.03665,143.71516728547215,243543.39500568723,149291.19189125643,270.40108,129.6804675394837,278838.4935666656,132648.01465241215,4032.6251,1816.1398205871096,4162993.248390362,1850104.6958500145,1366.74111,600.5719516920624,1409510.1900259838,610062.0166085223,2218.48236,925.023978934795,2273572.9059053105,928250.5325814264,0.38039,100000,0,406704,4244.049296142087,0,0.0,0,0.0,19536,203.16396915338785,0,0.0,25139,258.92996900729423,2040957,0,73257,0,0,3548,0,0,54,0.5530684865750451,0,0.0,0,0.0,0,0.0,0.07078,0.1860721890691132,0.316473580107375,0.0224,0.3223428494839834,0.6776571505160166,25.1608258284876,4.652945011792238,0.3276049204052098,0.196273516642547,0.2331765557163531,0.24294500723589,11.125094889260662,5.572325348208082,23.738961312028454,13035.013175543105,62.19792921704464,12.630273583882488,20.430991232553836,14.363542042022276,14.773122358586054,0.5412445730824892,0.7548387096774194,0.6946438431805633,0.5880527540729248,0.1169024571854058,0.7010014306151645,0.8983516483516484,0.881578947368421,0.7263513513513513,0.1276595744680851,0.4871670702179176,0.6823855755894591,0.6317343173431734,0.5468277945619335,0.1140433553251649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023795540614431,0.0045302982699733,0.0066043095402345,0.0086941507460109,0.0110714612498856,0.013345413086852,0.0155633695153646,0.0175239844866299,0.0198705958112293,0.0220159259789973,0.0241919776941764,0.0269229979676882,0.0291723202170963,0.0311776031960132,0.0333659945335464,0.0354105746081278,0.037410071942446,0.0394458500974739,0.0415571735720888,0.0435334644644957,0.0581333500203372,0.0714099039295832,0.0844388557057529,0.0977751633437677,0.1098379129848655,0.1254132384161218,0.1387149743100799,0.1513521557955608,0.1641016884031676,0.1756129958330209,0.1898461869420243,0.2031057511508785,0.2149282920469361,0.226699591355084,0.2370382585751979,0.2479045098712256,0.2579983044040873,0.2673496699317371,0.2777431103143897,0.2865484354785157,0.2948505848190011,0.302567101339103,0.3102885138813283,0.3174331063584923,0.3244553529118723,0.3315049243778273,0.3370008762047816,0.3419934349474541,0.3471938048742586,0.352472973508098,0.3528445210645404,0.3538334480385409,0.3543356997971602,0.3555385437580344,0.3556334367899731,0.3551254348459075,0.3553690212226797,0.3561731536352742,0.358068376068376,0.3594865752642102,0.3606701774770891,0.3618910155014236,0.3620584844355937,0.363284136973416,0.363157388250012,0.3649928263988522,0.3672660947875402,0.3696027633851468,0.37292953396968,0.3728813559322034,0.3742322852690439,0.378245275948825,0.3812060110329085,0.383107435485106,0.3830307591007431,0.3811280342693955,0.377743668457406,0.3770892784345699,0.380242825607064,0.3787528868360277,0.0,2.6983441355293585,61.06043275632005,203.2146543585492,317.51067713749575,fqhc6_80Compliance_baseline,96 -100000,95698,41628,391.9517649271667,7173,73.79464565612658,5574,57.68145624777948,2340,24.065288720767416,77.32145341825886,79.70913281957888,63.3143933609397,65.080263879968,77.02815033159878,79.41496018265408,63.206999520621245,64.97560364820745,0.2933030866600745,294.1726369247988,0.1073938403184513,104.66023176054762,89.90344,62.97796060616045,93944.9518276244,65809.06665359823,233.75578,143.05009556508472,243660.20188509685,148876.97626352625,270.64396,129.53243137509054,279528.09881084244,132835.14972804527,4069.18054,1841.363372292431,4206979.309912433,1879160.6982726592,1357.95219,598.2293044235834,1400699.6279964054,606891.4519825053,2305.43232,960.1877609728178,2371056.782795879,969259.0187449724,0.381,100000,0,408652,4270.225083073837,0,0.0,0,0.0,19526,203.42117912600057,0,0.0,25312,261.2175803047086,2037372,0,73085,0,0,3587,0,0,40,0.4179815670128947,0,0.0,0,0.0,0,0.0,0.07173,0.188267716535433,0.3262233375156838,0.0234,0.3188636665339174,0.6811363334660826,25.179762548950396,4.544818551809077,0.3243631144599928,0.1980624327233584,0.2411194833153929,0.2364549695012558,11.033230589885486,5.499284307883493,24.97015240833823,12974.02607079008,63.12322295376134,12.946052934794697,20.56128976288846,15.12033869093677,14.49554156514142,0.5486185862935056,0.7690217391304348,0.7063053097345132,0.5944940476190477,0.1009104704097116,0.7195207892882312,0.9439775910364144,0.854978354978355,0.7447447447447447,0.1535580524344569,0.4902527075812274,0.6854082998661312,0.6552748885586924,0.5450049455984174,0.0875356803044719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024722379833022,0.0047256870499949,0.006862108169563,0.0088007235698824,0.0111712518313527,0.0136398826501507,0.0157663399859265,0.0178578721666326,0.0197712100921088,0.0219256044383483,0.024205950501343,0.0260017663127195,0.0278775035746983,0.0298724316303608,0.0320499587118084,0.0340884417746254,0.0360046818516101,0.0380775457677778,0.0401114843433135,0.0421070185312571,0.0559658230360257,0.0704624918870255,0.0841292164312252,0.0972596396699781,0.1090055394355051,0.1246692211613777,0.1382425374718695,0.1512388419011909,0.1639589568191534,0.1754660716967369,0.1898102759133367,0.2027780484372124,0.2152165872549659,0.2255848049191448,0.236260411279941,0.2471815544087355,0.2577038937855628,0.2672550452526842,0.2766341148048589,0.2860938681082071,0.2944490069748881,0.3025912673355317,0.309723093679338,0.316560563008788,0.3228934991067196,0.3293701641121679,0.3350273504487476,0.3403957498250302,0.3456107882850819,0.3510746374995052,0.3519523726142532,0.3535488308115543,0.3531069465971537,0.3534780784863958,0.3544496068620443,0.3543794443335227,0.3539267847216708,0.35505492152891,0.3555022283167638,0.3568855191697586,0.3578420299676229,0.3592294707576209,0.3609783821331593,0.3610135135135135,0.3620727299192159,0.3639572248854238,0.3654267589388696,0.3681449690033381,0.3696068691456145,0.3711249248044916,0.372136877932113,0.3741862592134287,0.3767373342727214,0.3762522326628873,0.3754426260886209,0.3762280169799878,0.3752154159486135,0.3695154917862341,0.3777464788732394,0.3765723270440251,0.0,2.098376513747389,62.7144437963581,208.7341201871536,318.45141831095714,fqhc6_80Compliance_baseline,97 -100000,95717,41762,392.39633502930513,7171,73.85312953811757,5541,57.419267214810326,2218,22.95308043503244,77.3455376358958,79.73282435417795,63.32130932583449,65.08737508655126,77.06874782621676,79.44989026648942,63.221311362415,64.98650054284337,0.2767898096790304,282.9340876885311,0.09999796341949,100.87454370788862,90.79532,63.59847443459248,94858.09208395582,66444.28307886005,234.93812,143.26329297064942,244970.94560005012,149194.14257472678,270.87299,129.00121764776176,279291.964854728,132038.09197646176,3963.13725,1769.0135462180222,4113070.6248628767,1820776.313236256,1323.73177,569.3240447229928,1373403.6900446103,585255.1394231232,2186.14342,909.8055399877884,2264388.499430613,934090.1192889712,0.38196,100000,0,412706,4311.731458361629,0,0.0,0,0.0,19558,203.8509355704838,0,0.0,25179,259.3687641693743,2036183,0,72945,0,0,3624,0,0,45,0.4701359215186435,0,0.0,1,0.0104474649226365,0,0.0,0.07171,0.1877421719551785,0.3093013526704783,0.02218,0.3162871221201225,0.6837128778798774,25.4202410611952,4.489256905839567,0.3344161703663598,0.213499368345064,0.2169283522829814,0.2351561090055946,10.803002299194896,5.347395253055168,23.751020949163596,13076.44480470998,62.393290760441765,13.943286082577124,20.78780230746188,13.23936304773346,14.422839322669295,0.5392528424472117,0.7531699070160609,0.6832164058283864,0.5615640599001663,0.1197237145049884,0.702819956616052,0.9047619047619048,0.8787234042553191,0.6984126984126984,0.1448763250883392,0.4848484848484848,0.6819875776397516,0.6167751265365148,0.5252631578947369,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002127681131521,0.0042699934073735,0.0066602365602314,0.0087095266163946,0.0108346219581671,0.0131391322061519,0.0154392119271481,0.0176260939717941,0.0198073462041884,0.0221193626346618,0.0245013076252499,0.0266536565324568,0.0288018433179723,0.0308513488448776,0.0332401110411657,0.0351397733851625,0.0372702977066025,0.0393445004877846,0.0413044382513206,0.0432594630075328,0.0587541120568116,0.072618624024112,0.0858956868506663,0.0981041955981988,0.1103388632840102,0.1258976447072012,0.1391724137931034,0.1527501198019275,0.1645201628849011,0.1761883807540811,0.1903750808363871,0.2041280429697652,0.2162953449645729,0.227085749294357,0.2379631769509282,0.2492549714728854,0.2605430258121394,0.2701164294954722,0.280685633905073,0.2888916870807482,0.2966947789770821,0.3043956043956043,0.3117142688191118,0.3186526325873238,0.3248382907974417,0.331281925041541,0.3369461946194619,0.3430705141231457,0.3482669973775659,0.3527337324824001,0.3541691855075968,0.3545898759196222,0.355325164938737,0.356995454217476,0.3573336102786267,0.3565057752619903,0.3568339853959102,0.3578119084069995,0.3585261031111415,0.3595139088041296,0.3596791806303422,0.3604237473416413,0.3608223510806536,0.3607865168539326,0.3628536880290205,0.362729920495395,0.364563635321758,0.3668195476830618,0.3703690623344517,0.3717461713783038,0.3733571461281311,0.378832311383631,0.3841582906631266,0.3808539944903581,0.3831144108128688,0.3821710127349909,0.3849033063006862,0.3841702831163464,0.3830611680044284,0.3867554858934169,0.0,1.819004511776517,61.618045850007256,206.8418247931662,316.9119270873694,fqhc6_80Compliance_baseline,98 -100000,95616,41669,390.7400435073628,7370,75.83458835341365,5726,59.35199129852744,2317,23.939508032128515,77.23812690061078,79.66935206083242,63.25655152000609,65.05428391429717,76.95543131746868,79.38256746753723,63.153309293512,64.95114349306104,0.2826955831421003,286.7845932951951,0.1032422264940962,103.14042123613376,91.4881,64.00195827529126,95682.83550870148,66936.45234614631,237.59669,144.87917770292518,247952.9472054886,150984.3307636015,272.87167,129.77491684824585,281389.17126840696,132701.54266009026,4107.34738,1852.4481421256276,4262834.724313922,1904548.205452672,1379.84471,603.980238245613,1431792.1582161982,620354.2484998469,2286.81588,952.5202054023104,2364908.27894913,974199.2137905258,0.38113,100000,0,415855,4349.219795850067,0,0.0,0,0.0,19905,207.63261378848728,0,0.0,25460,262.33057228915663,2023404,0,72742,0,0,3563,0,0,38,0.3974230254350736,0,0.0,0,0.0,0,0.0,0.0737,0.1933723401464067,0.31438263229308,0.02317,0.3184451023297722,0.6815548976702278,25.293756812497083,4.501389923544546,0.3292001397135871,0.2135871463499825,0.2247642333216905,0.2324484806147397,10.90123446123304,5.3992732637054495,24.778600732469723,13141.566035060603,64.94779093577195,14.359559289959874,21.380787250499445,14.310740972314038,14.896703422998588,0.5387705204331121,0.7636958299264105,0.6710875331564987,0.5742035742035742,0.1104432757325319,0.6856140350877193,0.9029649595687332,0.8239130434782609,0.7474402730375427,0.1461794019933555,0.4901185770750988,0.7030516431924883,0.6217543859649123,0.5231388329979879,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025235122425814,0.0048989279157749,0.0071785395175046,0.0092190724007196,0.0115311024263149,0.0140081705838605,0.0163190371768065,0.0184489028725534,0.0206308941758893,0.0226972437597943,0.0249425428876303,0.0271467176309813,0.0292192420905292,0.0311949114975825,0.033427650873642,0.0355106728610303,0.0377542346526237,0.0400540147501817,0.0420006245446028,0.0441563047650838,0.0591875561874098,0.0735691682209694,0.0870058515164567,0.0995755794972249,0.111636747624076,0.1272983392645314,0.1404882297951899,0.1535903475767685,0.1657519444533598,0.1774271505751694,0.191588986708096,0.2039179124703229,0.2167801688913102,0.2282887384129906,0.2393625814130327,0.2505547911766011,0.2613087248322148,0.2717338595996617,0.2809485896269336,0.2900373241458512,0.2981548102587907,0.3062991202346041,0.3137739051983048,0.3207370168137974,0.3265303634346463,0.3324840134077106,0.3382452702193412,0.3435396308360477,0.3488502159096821,0.3540029420729687,0.3547344360739548,0.3554787417905288,0.3558614640219575,0.3562125194209296,0.3571449889572017,0.3568250057741166,0.3564102564102564,0.3575051631557208,0.3595608102294044,0.3599877781372443,0.3605964072307779,0.3613498885705189,0.3626540604423434,0.3633288990101689,0.3649785449344226,0.3664220521318288,0.3674062562951452,0.3699473316834824,0.3704687057490796,0.371515175686994,0.3738790526557829,0.3776530339481422,0.3805719358315896,0.3815144083384427,0.3840709634802302,0.381624184943687,0.3828077622801697,0.3876528362397274,0.3836183121897407,0.3879508825786646,0.0,2.0692701404796123,63.3865890663236,222.1908932292152,322.712154110205,fqhc6_80Compliance_baseline,99 -100000,95712,41722,391.706369107322,7154,73.28234704112337,5600,57.85063523905048,2271,23.278167836843863,77.33641368994157,79.7107153039075,63.332022412709286,65.08905694942023,77.05724284800681,79.43200508475574,63.2283687795006,64.98850204080003,0.2791708419347571,278.71021915176186,0.1036536332086868,100.55490862019668,89.54638,62.72434799848168,93558.15362754933,65534.46589610674,233.97179,143.35767922402093,243783.5485623537,149109.8286777216,275.50323,131.28617958736774,282931.6491140087,133568.16763921894,3204.13472,1453.0895029534995,3311280.090270812,1482174.3741423828,1399.4332,609.5372115669334,1444485.330992979,619337.24449021,2236.42684,938.0550554496792,2294582.4557004347,945132.6476796146,0.38091,100000,0,407029,4252.643346706787,0,0.0,0,0.0,19595,204.03920093614173,0,0.0,25634,263.08090939485123,2040544,0,73260,0,0,3620,0,0,43,0.4388164493480441,0,0.0,0,0.0,0,0.0,0.07154,0.1878133942401092,0.3174447861336315,0.02271,0.3221896643580181,0.6778103356419819,25.323196326869763,4.5432605220478415,0.3344642857142857,0.2055357142857143,0.2269642857142857,0.2330357142857143,11.31310258070845,5.761151164903195,24.264683009116855,13019.494254649797,63.181396371199895,13.523150196759843,21.071300227939595,14.134743234699808,14.452202711800636,0.54875,0.7680278019113814,0.6849973304858515,0.5845790715971676,0.1249042145593869,0.7019774011299436,0.9021739130434784,0.8586956521739131,0.7423728813559322,0.1638225255972696,0.4968929254302103,0.7049808429118773,0.6284501061571125,0.5368852459016393,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509383486684,0.0046653617176644,0.0069546677496319,0.0092690462639238,0.0115255892495651,0.0137901533823559,0.015929185490368,0.0183173371451909,0.0203756146933434,0.0225518498044755,0.0247247678208991,0.0268782981868955,0.0291123359795977,0.0312805776143538,0.0334733214326251,0.0358770814598902,0.0374216929847269,0.0395161373987198,0.041323688367839,0.0433754518276232,0.0578407109217547,0.0718485812337825,0.0845306764551651,0.0970522686178041,0.1092909999367529,0.1243010707226585,0.1376140953471361,0.1506189382337927,0.1626459725454196,0.1746536817407514,0.1885681690989711,0.2006964948141418,0.2133215962441314,0.2244436432761954,0.2356251098997714,0.2471245299712453,0.2572441155492154,0.2679795867898653,0.2779125938357562,0.2866573612191662,0.2945073239534319,0.3025002920901974,0.3103709132171816,0.3173468410212195,0.3239513545004369,0.3300865667598419,0.3360519370051161,0.3415760351078039,0.3476177525674398,0.352680104615222,0.3536945414346765,0.3542727084626526,0.3547394134508126,0.3548709626001652,0.3553279055202648,0.3549056371795659,0.3549478835642558,0.35508320975449,0.3562705817782656,0.3578035925567387,0.3594675390602967,0.3602688928989272,0.3620113844021088,0.3627833019797545,0.3646664577255961,0.3655138159098632,0.3664635548401931,0.3702516581511218,0.3726899383983573,0.3752806286080821,0.3788719371243643,0.3788944180008654,0.3800103439358676,0.3834762275915822,0.3833605220228385,0.3883743602242261,0.3930472909489508,0.3975232198142415,0.3951233028539762,0.3996919522525991,0.0,2.5275574900069664,62.13377548799828,205.49354066432355,324.38865588827696,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95595,41243,388.2943668601914,7213,74.09383335948533,5602,57.86913541503217,2295,23.52633505936503,77.26635035352784,79.70371586161329,63.26822878755484,65.07181820278592,76.97902938224598,79.42086751260784,63.1610427921952,64.97014456260302,0.2873209712818578,282.8483490054481,0.107185995359643,101.67364018289504,91.3506,63.8748878279995,95560.01882943668,66818.23089910508,235.18418,143.58657270860678,245308.53078089855,149490.12260955782,266.98649,127.06378358537296,275104.6812071761,129668.46732434368,3203.6162,1446.8851878668384,3310002.1549244206,1472352.6835784682,1351.07024,587.8303300377436,1392896.1765782728,594515.3445024048,2252.8746,942.433186866041,2310742.7585124746,945454.245201255,0.37856,100000,0,415230,4343.637219519849,0,0.0,0,0.0,19681,205.1257910978608,0,0.0,24959,256.8753595899367,2028528,0,72786,0,0,3664,0,0,42,0.43935352267378,0,0.0,0,0.0,0,0.0,0.07213,0.1905378275570583,0.3181755164286705,0.02295,0.3244568097509274,0.6755431902490726,25.1528324437121,4.595538034074306,0.3388075687254552,0.203141735094609,0.2240271331667261,0.2340235630132095,11.040766047192353,5.541466088092255,24.46774414868374,12959.956046255544,63.4482749733324,13.417453205990366,21.58645095111971,14.018117514639323,14.426253301582994,0.5458764726883256,0.7574692442882249,0.7012644889357218,0.5649402390438247,0.1189931350114416,0.6929429429429429,0.8952095808383234,0.8564814814814815,0.7128712871287128,0.1444866920152091,0.5,0.7002487562189055,0.655525238744884,0.5178571428571429,0.1125954198473282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0047577986304844,0.007200381853819,0.0094049943061656,0.0117261456403574,0.0138813865079445,0.016176110385369,0.0183215311200351,0.0205351204788458,0.0224925195720785,0.0244575815423774,0.026386661732659,0.0284843680835074,0.0305811028168433,0.0325775964468315,0.034622269590141,0.036693063559849,0.0385034847367491,0.0404055123027603,0.0422937722290017,0.056834577504548,0.0706694893938123,0.0837570384065887,0.0962974666877337,0.1088906023892767,0.1246014174179264,0.137932867073404,0.1511068437616685,0.1632552562839892,0.1747694886839899,0.1886456568882367,0.201324962864175,0.2142748208021961,0.2252051852420035,0.2357681453390951,0.2466826432343673,0.2578442765833817,0.2670541587816527,0.2768571558465175,0.2855864229405487,0.2933453841786306,0.3009419814415596,0.3084881956954584,0.3147159397684324,0.3217153284671533,0.3279328229192393,0.334549695282522,0.3398311999592024,0.3455236563185138,0.3507944061120364,0.350923340482646,0.3506604528031327,0.3514604774610704,0.3524410908511594,0.3534698622786621,0.353475804470646,0.3533054898286513,0.3543719719191852,0.3563640104238101,0.3574016934557979,0.3582576243073095,0.3590875643855776,0.3597512123128821,0.3599901021280424,0.3619649734757648,0.3629100084104289,0.3639996550038812,0.367822662601626,0.370409754714306,0.3728221597751907,0.3744996088897069,0.3767983680480996,0.3769358761039293,0.3796508957280661,0.3817361045800809,0.3865466603505447,0.3888293802601377,0.3903526550466153,0.3898817706901292,0.3900304414003044,0.0,2.7846391625274425,58.19522802061825,226.28619311644903,315.2420110636087,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95705,41625,391.5678386709158,7209,74.11316023196281,5622,58.1578809884541,2214,22.80967556553994,77.34534288058313,79.71502545691695,63.32656324425341,65.07497626506348,77.06654659402477,79.43459020899166,63.22318814095735,64.97335971592605,0.2787962865583608,280.43524792528274,0.1033751032960594,101.61654913743234,89.38886,62.57982025943613,93400.40750222036,65388.24539933769,234.5064,143.25887653858973,244445.74473642965,149103.26162540072,268.68322,128.1851402729983,276905.7311530223,130962.4541943346,3221.42148,1455.7808937958553,3335157.995924978,1490279.8952989436,1370.37347,598.7731482869038,1416241.220416906,610032.7703871201,2187.67682,921.6087691007727,2255276.5895198784,936703.8207763364,0.38125,100000,0,406313,4245.473068282744,0,0.0,0,0.0,19582,204.01232955435972,0,0.0,25025,257.69813489368374,2039657,0,73206,0,0,3534,0,0,59,0.6060289431064207,0,0.0,0,0.0,0,0.0,0.07209,0.1890885245901639,0.3071161048689138,0.02214,0.3271629250361034,0.6728370749638966,25.03143232080257,4.564826774839769,0.3191035218783351,0.211846318036286,0.2331910352187833,0.2358591248665955,11.004397246444595,5.445628218833912,23.74657802994396,13014.278986749956,63.24039032934736,13.964811781787748,20.02109760080725,14.576550185246772,14.677930761505593,0.5483813589469939,0.780016792611251,0.6917502787068004,0.5873379099923722,0.1078431372549019,0.7001424501424501,0.938337801608579,0.8449074074074074,0.7796052631578947,0.1050847457627118,0.4978662873399715,0.7078239608801956,0.6431718061674009,0.5292949354518371,0.1086323957322987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025720998055735,0.0046824640707031,0.0069295077310174,0.0091204550071094,0.0112977689194411,0.0133579042751402,0.0156264334424023,0.0177618080295621,0.0198413509700897,0.0221207685457206,0.0241834621614417,0.0261758061203532,0.0280492069696159,0.0301847139663538,0.0324667953229651,0.0346093015082129,0.0366001429207618,0.0386682994665725,0.04045707868907,0.0425815729962378,0.0573693445293896,0.071486137131972,0.0853865849563465,0.0978430134680134,0.1100523405512642,0.1255093293257273,0.1386060831254313,0.151291473611333,0.1637560652373725,0.1741928563767028,0.1878973342240803,0.2013232411829039,0.2134811896703703,0.2248073048962074,0.236006168080185,0.2471395627300545,0.2578841023007625,0.2678985393081407,0.2771230699364214,0.2858288739414912,0.2942592592592593,0.3017477363655506,0.3093865081526565,0.3165082067452372,0.3231865206238831,0.3288718929254302,0.3354673014282134,0.3408295470454227,0.3465634201071377,0.3523445558170903,0.3530015392508979,0.354564521470361,0.355315085932527,0.3560489601763494,0.3568872454000537,0.3572558961358223,0.3571507892440707,0.3587698380067429,0.3595044852627082,0.3605459190053413,0.3610069730824023,0.3629620839019759,0.3648722359753283,0.3660161507402422,0.3669784642157929,0.3688108447608081,0.3694047924324016,0.3710857753070134,0.3729164473453346,0.3742564834641922,0.376770538243626,0.3765313731756685,0.3781019132411441,0.3790644171779141,0.3796725655342103,0.3806797853309481,0.3812739831158864,0.3786704730831974,0.3856191004997223,0.3834319526627219,0.0,2.2801548489417587,61.98849024436394,208.6631236027268,322.5969482445224,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95659,41457,389.2367681033671,7096,72.93615864686019,5544,57.33908989222133,2195,22.52793777898577,77.2498286400838,79.64830879636776,63.26585613190741,65.038685609847,76.98205531316188,79.38203271214383,63.16740732933902,64.94383152677895,0.267773326921926,266.27608422393223,0.0984488025683916,94.85408306804288,89.5092,62.67501647230857,93570.43247368257,65518.56209022712,232.86469,142.67371287317533,242801.98413113249,148520.39569904364,270.72953,129.49211365302347,279616.39782979124,132663.97763698603,3170.69404,1426.4970936362913,3281274.9871940957,1458096.926988878,1323.70416,578.2782249518089,1367447.2553549588,588575.8792796638,2158.74608,894.2439475811587,2218106.0433414523,901523.30645228,0.378,100000,0,406860,4253.20147607648,0,0.0,0,0.0,19542,203.60865156441108,0,0.0,25183,259.85009251612496,2032109,0,73003,0,0,3484,0,0,39,0.3972443784693547,0,0.0,0,0.0,0,0.0,0.07096,0.1877248677248677,0.3093291995490417,0.02195,0.3098270545649551,0.6901729454350449,25.286663219976194,4.526533036455476,0.3262987012987013,0.2123015873015873,0.2368326118326118,0.2245670995670995,11.20517788954619,5.601204924425419,23.3283590246136,12979.223308277393,62.26977008705795,13.79055366863088,20.20207563875862,14.731769915251432,13.545370864417029,0.5564574314574314,0.7672047578589635,0.6887783305693753,0.6146230007616146,0.1036144578313253,0.7211815561959655,0.912087912087912,0.8654708520179372,0.7484848484848485,0.1451612903225806,0.5014436958614052,0.7023370233702337,0.6309611151870873,0.5696846388606307,0.0932798395185556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210867539203,0.0048373847698439,0.0071355345560844,0.00954074375127,0.0118298054134328,0.0140244026643309,0.0160194966757759,0.0182161637821003,0.0201268152996522,0.0225007937239479,0.0246786948806581,0.0267693888032871,0.0291200197563384,0.0310341984292222,0.0329248273227541,0.0351243729637482,0.0371702140888271,0.039370814514873,0.0413046870935858,0.0433037203870537,0.0580841326562597,0.0719955598374733,0.0849145711766928,0.0973084450430354,0.1088562443276557,0.1239773509022596,0.1373517261885798,0.1500868508828951,0.1624466480536568,0.1740554940864315,0.1878472709225673,0.2009433450799674,0.2132934993566958,0.2247178688542569,0.2350480647190614,0.2459919784016798,0.2564225985917858,0.2662590390668186,0.2759970861409579,0.2856633954632162,0.2939714252526426,0.3018801410105758,0.3092046576352629,0.3167164250975104,0.3233816283721157,0.3298645053517292,0.3357540425424985,0.3416813684129784,0.3461343390337473,0.3513810836602693,0.3522633522227782,0.3527298850574712,0.353052706048815,0.3540683748276112,0.3555847333711319,0.3549407843197493,0.3545339050341432,0.3545073859140069,0.355945291987713,0.3572198082378712,0.3589226477683956,0.3590345156672498,0.3596749747389693,0.3600999527250624,0.3613359833244461,0.3627556230525516,0.3634649448602937,0.3669612251957608,0.3695973012861058,0.370889402022454,0.372068667182733,0.3741323583955916,0.3742925418186392,0.375580421709675,0.3788860711937635,0.3802034058656575,0.3796112046532986,0.379126512200123,0.3856551724137931,0.386986301369863,0.0,2.315807162219917,61.3365978243986,197.511121399582,327.1769206755257,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95758,41513,390.26504312955575,7315,75.26264124146286,5706,59.1491050356106,2305,23.768249128010197,77.32698317968122,79.68704744929525,63.31555014592704,65.06137222162238,77.03605774882412,79.39400950706164,63.207755454829496,64.95509790298509,0.2909254308571007,293.03794223361024,0.1077946910975455,106.27431863728988,90.48292,63.36556195632991,94491.23832995676,66172.6038099479,235.50333,143.21771772812232,245511.68570772157,149137.89733298766,269.95177,128.14666791290136,279320.4327575764,131784.71478838674,3295.71552,1485.2120378906775,3418284.8848138014,1527577.5996686192,1424.775,619.7465281831311,1475458.729296769,634768.1636867226,2282.81796,960.2096358748024,2356242.778671234,978573.4474796808,0.38033,100000,0,411286,4295.056287725308,0,0.0,0,0.0,19679,205.0481421917751,0,0.0,25139,259.9678355855386,2034466,0,73051,0,0,3655,0,0,57,0.5952505273710813,0,0.0,1,0.0104429917082645,0,0.0,0.07315,0.1923329739962664,0.315105946684894,0.02305,0.3227650727650727,0.6772349272349273,25.241272984020394,4.5547952207925615,0.3240448650543288,0.1957588503329828,0.237819838766211,0.2423764458464773,11.0383947695176,5.405219036612453,24.67946651671192,13020.071795367356,64.32315593807034,13.127710563547636,20.68772616320576,15.317270186525048,15.190449024791915,0.544689800210305,0.7672336615935542,0.7036235803136831,0.5770081061164333,0.1207519884309472,0.6805755395683454,0.902439024390244,0.8448275862068966,0.7356687898089171,0.1295681063122923,0.5009267840593142,0.7005347593582888,0.6638946638946639,0.5292425695110259,0.1182994454713493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0044107805560625,0.0067291882345776,0.0090011378413524,0.0113399440630561,0.0136754747721602,0.0156524044540522,0.0175674985964375,0.0196130535654058,0.0219140225179119,0.0240237778005534,0.0261250718567791,0.0282063669911495,0.0304999227719713,0.0324943263874561,0.034254360585269,0.0362977533906201,0.0385760370097607,0.0406996684577569,0.0423885074953382,0.0565693049669081,0.070676109675597,0.083788515773251,0.0969315350734266,0.1089373992052365,0.1243259816878475,0.1382225050376498,0.1507202248506851,0.1626659256567556,0.1745052161593611,0.188600131503778,0.2014708749431362,0.2142756091456182,0.2255914731566391,0.2363576304778683,0.2482344985088857,0.259070136429154,0.2696372239747634,0.2792489714272725,0.2872885729029298,0.2959212050984936,0.3033570892723181,0.3105493540848646,0.3176002787021131,0.3239247966489698,0.3305749397887976,0.3368044664701085,0.3429974489795918,0.3487532936152538,0.3531675195366734,0.3532775829511734,0.3534448289649657,0.3539920413174159,0.3544069073419482,0.3555125148986889,0.3550969605703925,0.354942733236962,0.3556935340426232,0.3571734622174233,0.3585469244665438,0.3593101245608431,0.3612576869668716,0.362708289390424,0.3649723607927733,0.3658011797698481,0.3664926958483044,0.3675123124498912,0.3698565198154351,0.3722151720248167,0.3739892451702848,0.3756850566313482,0.3772037283621837,0.3828593050387841,0.3866026520347508,0.3884328710255684,0.3886509635974304,0.392193022898417,0.3914460285132383,0.3921678321678322,0.3946957878315132,0.0,1.7386351179554165,61.89907586966679,220.28562208104952,324.6877859923087,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95755,42004,393.9011017701426,7149,73.42697509268446,5603,57.8977599080988,2241,22.9857448697196,77.39144353273707,79.72862563750334,63.36142006586866,65.08650106936155,77.1146285058702,79.45192731190903,63.25894711371912,64.98658424794594,0.2768150268668705,276.6983255943103,0.1024729521495402,99.91682141560432,89.969,62.98346916080291,93957.49569213096,65775.64530395584,235.87072,144.8850635288196,245699.61881886065,150680.396354049,273.18718,131.00376181778398,280905.6028405827,133465.05305599127,3198.21408,1450.9311357572824,3305251.2349224584,1480816.8119584883,1340.75423,583.259784869391,1384260.759229283,593295.3637828794,2193.64128,923.3150245550148,2251939.136337528,932834.5456592044,0.38406,100000,0,408950,4270.795258733226,0,0.0,0,0.0,19708,205.17988616782412,0,0.0,25444,261.3858284162707,2037438,0,73088,0,0,3611,0,0,51,0.5221659443371104,0,0.0,1,0.0104433188867422,0,0.0,0.07149,0.1861427901890329,0.3134704154427192,0.02241,0.3166028265750891,0.6833971734249108,25.38814212226177,4.5015447929408525,0.3233981795466714,0.2147064072818133,0.242013207210423,0.2198822059610922,11.056562874996027,5.524589123191713,24.003825580384028,13159.719336441967,63.05634417179009,13.906321618883272,20.5081532238618,15.108732300307828,13.533137028737205,0.5509548456184187,0.7896924355777224,0.6854304635761589,0.56047197640118,0.109577922077922,0.7005689900426743,0.9483695652173914,0.8319148936170213,0.7161716171617162,0.1056603773584905,0.5008339289969026,0.7197604790419162,0.6341281669150521,0.5156695156695157,0.1106514994829369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002014822614612,0.004611003577328,0.0068281893630405,0.0092727069601161,0.0115097965450275,0.0136389544825339,0.0159262278377827,0.01838512865509,0.0206764805034273,0.0224993861013342,0.0247950819672131,0.0270744418910045,0.0290893024116069,0.0312155861799244,0.0334302325581395,0.0352966696967192,0.0376411413431584,0.0397531632441402,0.0419837013014011,0.043876828201175,0.0589113303063514,0.0736094253547064,0.08669562115776,0.0991313127063921,0.1117999978911629,0.1276609244630563,0.1413572587572778,0.1537790450251085,0.1662323514962513,0.1775974443634492,0.190726865607372,0.204123131503234,0.2165708260411118,0.2280450626659527,0.2388591408371724,0.2501604656824771,0.2610460125093374,0.2711123595505618,0.280314282150996,0.2893505007153076,0.2980991582647304,0.3063386457444196,0.3135839859924756,0.3205503091893965,0.3272791287773016,0.3337274608335797,0.3394045534150613,0.3445887445887446,0.3504442890080568,0.3556059786551983,0.3563403969054827,0.3566105703129296,0.3569759585608918,0.3573108952617374,0.3582698787312048,0.3575632500191087,0.3573733156196622,0.3582405326947993,0.3587711958470654,0.3601450440312237,0.3611815296790791,0.3628976315528689,0.3649509237268543,0.3655254526665768,0.3684987178866902,0.3704266694622077,0.3714481733462924,0.3735735735735735,0.3760031109697034,0.3772770853307766,0.3813042081593318,0.3823687318801675,0.383298326013621,0.3827075174690931,0.386432350718065,0.3843872345473959,0.3914828897338403,0.3878172588832487,0.3898678414096916,0.3910207214121258,0.0,2.3893996102076387,61.83519460397131,207.36231572908704,321.96005777085577,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95729,41576,390.9891464446511,7190,73.99011793709326,5611,58.05973111596277,2283,23.49340325293276,77.37264048070351,79.73284538666447,63.34029949113111,65.08219695591032,77.08900345714042,79.44716890420074,63.23703237885535,64.98058696850376,0.283637023563088,285.6764824637281,0.1032671122757662,101.60998740656169,90.43386,63.365372911105815,94468.61452642355,66192.4525599409,237.42693,145.05322275963238,247461.2499869423,150966.24090884932,272.86098,130.1812230610138,281305.4769192199,133086.43325748146,3231.80996,1456.852174366904,3346908.794618141,1492760.327974704,1402.72879,608.3682064358085,1449944.5935923285,620143.1921735402,2255.5394,942.4849931624302,2323725.41236198,956801.1431646284,0.3793,100000,0,411063,4294.0279330192525,0,0.0,0,0.0,19804,206.2802285618778,0,0.0,25431,261.9268978052628,2033148,0,73018,0,0,3620,0,0,42,0.4387385222868723,0,0.0,0,0.0,0,0.0,0.0719,0.1895597152649617,0.3175243393602225,0.02283,0.3173953242636376,0.6826046757363624,25.23770516261205,4.618827946421343,0.3213330957048654,0.2062021030119408,0.2313313134913562,0.2411334877918374,11.132499911413634,5.50324153456177,24.52714013705304,12959.234615606116,63.43783453691209,13.622564560863616,20.35758219288763,14.514416860731313,14.943270922429535,0.5405453573338086,0.7545375972342264,0.6932889628397116,0.5785824345146379,0.1175166297117516,0.7112573099415205,0.9184210526315788,0.8518518518518519,0.7551724137931034,0.1390977443609022,0.4855055385340561,0.6743886743886743,0.6433260393873085,0.5277777777777778,0.1122355105795768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020962025316455,0.0044895766825778,0.0070401817868265,0.0090286805329866,0.0112660016878666,0.0135899993892135,0.0159014922938921,0.0179845467628836,0.0201882877265432,0.0223359606919848,0.0242169477623417,0.0264881624607297,0.0288323119318882,0.0309577754891864,0.0330547818012999,0.0349428471030819,0.0370642619760014,0.0389266896236982,0.0407005144727953,0.0425254913397144,0.0573114069433568,0.0709091479811243,0.0841502668358199,0.0969162532582191,0.1090765338393421,0.1247674221921515,0.1384829136881403,0.151347152464459,0.1628349012782043,0.1740351930686168,0.1881784114403859,0.2004110996916752,0.2127058004741294,0.224078914272591,0.2353310081528017,0.2463164425143464,0.2567505720823798,0.2664324799027224,0.2757798123452302,0.2838237655099653,0.2923333410517054,0.3003792046066337,0.3071800158792231,0.3140566298176755,0.3210828428272608,0.3275630189889817,0.3341686505450444,0.3398340037680126,0.3459769668234166,0.3511914977886329,0.3515472389497366,0.35240167456208,0.3530772594546557,0.3537009150932468,0.354802192564347,0.3542175335145345,0.3549400841203079,0.3559735169142594,0.3573030245973194,0.3586200732862633,0.3603628934000637,0.3615186869685584,0.3625703958981255,0.3627707955283733,0.3639234403625494,0.3651978698966273,0.3662236924656362,0.3678121168296287,0.3693586281866957,0.3718171753914281,0.3718204941860465,0.3746153029820651,0.3773775671406003,0.3824088868599254,0.3859863052246506,0.3841787868038311,0.3882962511429442,0.3900322841000807,0.3908741066520066,0.3964858670741024,0.0,2.1920033046880887,60.516960604043724,221.9219567993466,313.7193957613033,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95756,41774,392.62291657963993,7032,72.48631939512929,5511,57.11391453277079,2203,22.68265173983876,77.33281654085012,79.6975876410056,63.319784280511655,65.07034499269345,77.0646501536767,79.42715907914875,63.22198139330274,64.97355395365003,0.268166387173423,270.4285618568463,0.097802887208914,96.79103904342412,90.35686,63.30717816084618,94361.10530932788,66112.5618873451,235.43135,144.01131354552797,245397.49989556792,149928.7163873463,273.02321,129.3872724868404,282038.03417018254,132754.1227436775,3192.76756,1432.3661756280435,3309075.7759304903,1470865.9614834366,1358.0815,587.2305902302268,1405314.1735243744,600396.47906479,2177.55878,900.4449992606355,2244096.098416809,916595.6788730376,0.38091,100000,0,410713,4289.141150423994,0,0.0,0,0.0,19618,204.3840594845232,0,0.0,25424,262.49007895066626,2034680,0,73064,0,0,3467,0,0,53,0.5534901207235056,0,0.0,0,0.0,0,0.0,0.07032,0.1846105379223438,0.3132821387940842,0.02203,0.3166080605896673,0.6833919394103327,25.324022914696,4.549458854296085,0.3360551624024678,0.1979677009617129,0.2304481945200508,0.2355289421157684,11.077442222298751,5.495347514562639,23.318516413556026,12972.704338697817,61.95428447707677,12.831803498868714,20.820770334103752,14.01124149405146,14.290469150052829,0.5494465614226093,0.7717690192483959,0.6976241900647948,0.5763779527559055,0.1248073959938366,0.7070854638422206,0.9154929577464788,0.8744493392070485,0.7163636363636363,0.1719298245614035,0.4973442781265089,0.7024456521739131,0.6402002861230329,0.5376884422110553,0.1115498519249753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022798893493702,0.0043410789812664,0.0066402680475175,0.008782183551702,0.0110385382330199,0.0132618970013037,0.0156130492866539,0.0177845839714139,0.0197235230363387,0.0219739711860415,0.0241444360146814,0.0261631190380843,0.0284709583885992,0.0303910361376298,0.0323758821344558,0.0344809765475612,0.0368467927342018,0.0389672384628955,0.0408729828647479,0.042835118129922,0.0572177217304159,0.0712141026311659,0.083949374521585,0.0968409986859395,0.1092267802183903,0.1251929705838814,0.1384726331753152,0.1514096874101982,0.1633269957915874,0.1751994680851064,0.1890288544358311,0.2022221500979087,0.2138686210758674,0.2253307095222477,0.2356900875533459,0.2476719852070023,0.2573427665937597,0.2678762366765338,0.2768324384457334,0.285079481423794,0.2932860963495536,0.3007107645109542,0.3080322760287688,0.3146551207167444,0.321511076526518,0.3276228091829178,0.333684263297739,0.340083807777056,0.3457737894545737,0.3507693527918781,0.3519162823313644,0.3524142872891632,0.3533752892701924,0.3544212172100295,0.3550093109869646,0.3547966431935687,0.3542201922161956,0.3554693280281482,0.3567030410837067,0.358418390147114,0.3605301693387902,0.3616206889713028,0.3618679494989811,0.3634713225900441,0.3650510265627639,0.3663578793112472,0.3672364917103342,0.3694490976326685,0.3713065273414057,0.3725035948234542,0.37487984620314,0.3770097751188505,0.3766989063784057,0.3774622079706825,0.3756833176248821,0.3794166469053829,0.378820293398533,0.3732551082338661,0.3713733075435203,0.3744697261858851,0.0,1.5682976441856444,61.20070434112203,205.8318794469594,315.12076304733955,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95776,41654,390.4318409622453,7163,73.54660875375878,5607,57.91638823922486,2278,23.37746408286001,77.34910350822409,79.67750192902243,63.34642956891118,65.06679125534377,77.07121222504355,79.40036629592498,63.243891045360535,64.96721256537836,0.2778912831805371,277.13563309744416,0.1025385235506419,99.57868996541208,90.06162,63.05914647562852,94033.59923154028,65840.2381344267,234.31375,143.51328959949498,244031.3439692616,149226.31932790577,277.73606,132.74882383079202,285701.0942198463,135324.5581400068,3211.86448,1457.610568217062,3320271.7591045774,1488958.957098467,1373.74671,598.0846117638135,1420018.9817908453,610306.1903418145,2240.72646,929.0757683843252,2302698.0454393583,939172.8064513918,0.38039,100000,0,409371,4274.254510524557,0,0.0,0,0.0,19632,204.3309388573338,0,0.0,25889,266.05830270631475,2036505,0,73175,0,0,3568,0,0,33,0.3445539592382225,0,0.0,0,0.0,0,0.0,0.07163,0.1883067378217092,0.3180231746474941,0.02278,0.3160973016084009,0.6839026983915991,25.21360165711864,4.495775837971969,0.333868378812199,0.2079543427858034,0.2270376315320135,0.2311396468699839,11.20245691402155,5.761416011343692,24.158560054915604,13053.317291112997,63.65520402789265,13.755942190611188,21.34368815376079,14.32515269911299,14.2304209844077,0.561976101301944,0.7753001715265866,0.7072649572649573,0.6072270227808326,0.1157407407407407,0.7139874739039666,0.9067357512953368,0.8678861788617886,0.7250859106529209,0.1417910447761194,0.5095923261390888,0.7102564102564103,0.65,0.5723014256619144,0.1089494163424124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872974724562,0.0047841555255982,0.0072333647827454,0.0096494702948674,0.0118965306869483,0.0141292397898937,0.0162355531095211,0.0185130377098535,0.0207828832418845,0.0229072456057784,0.0251403515961152,0.0274288880679719,0.0293915134574079,0.0315671380637724,0.0336416030022785,0.0358500309853336,0.0380790761684999,0.040015346647587,0.041667965543398,0.0436534796780139,0.0575755045814113,0.0716758531968079,0.0851463141008838,0.0981976774735957,0.1104999156971842,0.1258361424903044,0.1389778051003752,0.1519859626734726,0.1639524460001707,0.1756071952774295,0.1894003810179853,0.2026603222666811,0.2138484456381093,0.225644166411479,0.2365731010882362,0.2485405704790916,0.2597301128436373,0.2697000708494056,0.2785380355846042,0.2876428424210502,0.2959835269075933,0.303409702557862,0.3107375399550136,0.3171389528193326,0.32414044466043,0.3304140814841312,0.3355087622602748,0.34142271140666,0.3476845245816578,0.3532452765327304,0.3537562739489449,0.3543298400441257,0.3549060542797494,0.3549880633726398,0.3560773932570901,0.3560579354739827,0.3560796994626468,0.3570724008680213,0.3579039181816627,0.35765548098434,0.359155855128518,0.3593970048596648,0.3606877850881803,0.3621553603127879,0.3636627766209869,0.3642643273625046,0.3651811385853939,0.3675577736100957,0.36952820148989,0.3704640333975594,0.3724813690311896,0.3742630507021117,0.3771362734430007,0.3757804671240268,0.3804191788687913,0.3819351705718101,0.3819292201691199,0.3819689119170984,0.3825352112676056,0.3810865191146881,0.0,2.436729875997146,63.3095783370601,213.27556959894983,315.3806481578352,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95667,41562,391.6083916083916,7242,74.5293570405678,5651,58.50502263058317,2276,23.44591133828802,77.31532774038504,79.70851172232857,63.31028192710126,65.07673759694353,77.03772723263747,79.42768728999926,63.20913832723296,64.97653777291228,0.2776005077475787,280.824432329311,0.1011435998682941,100.19982403125027,88.84414,62.25588035047943,92868.11544210649,65075.60637469496,236.49258,144.4293779039224,246648.614464758,150415.63747574648,271.01955,129.30304559750724,279439.4932421838,132153.27265690142,3234.73716,1452.0952116346325,3351127.6406702413,1488244.9357623593,1356.09511,589.828952198886,1404411.907972446,603628.7743726815,2239.95596,926.4433477129112,2310242.2779014707,943342.4052299816,0.37961,100000,0,403837,4221.277974641203,0,0.0,0,0.0,19781,206.1839505785694,0,0.0,25303,260.63323821171355,2039492,0,73195,0,0,3592,0,0,42,0.4285699352963927,0,0.0,1,0.0104529252511315,0,0.0,0.07242,0.1907747424988804,0.3142778238055785,0.02276,0.321451972218582,0.6785480277814179,25.2290780393953,4.567458654117263,0.3387011148469298,0.2019111661652805,0.2302247389842505,0.2291629800035391,11.004521529929407,5.416952580828545,24.22516240895037,12949.61236042629,63.5813660437358,13.25388017382022,21.426712590123778,14.672743164829372,14.228030114962442,0.5390196425411432,0.761612620508326,0.6781609195402298,0.5580322828593389,0.1181467181467181,0.6983321247280638,0.9395604395604396,0.8521939953810623,0.6828478964401294,0.1501831501831501,0.4875936329588015,0.6782496782496783,0.6272788656313302,0.5191532258064516,0.1095890410958904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020767064448811,0.0043289604412092,0.0064645111530577,0.0087578485359559,0.0110575358072916,0.0131194295900178,0.0151872137735483,0.0170983820885765,0.0192567291172379,0.0214125526097508,0.0235680221527101,0.0258962506420133,0.0280026747595288,0.0297590833213115,0.0316893412333037,0.0336339566440509,0.0359847896138344,0.0379665379665379,0.039911792546054,0.0418460191564092,0.0566270347075662,0.0700764317872474,0.0833000986545202,0.0962908402167622,0.1088105866337417,0.1249655990007832,0.1382781063204051,0.1510352319686448,0.1633590886259925,0.174175753412896,0.1878644177399364,0.2011369173298684,0.2132967607105538,0.2246222193042926,0.2356257915313033,0.2464205307928621,0.256913729169459,0.2670028023814615,0.2771784797765312,0.286215435410648,0.294101976046517,0.3023133297431454,0.3103578957341481,0.3166346615458473,0.3225116380829677,0.3291240704887102,0.3359934853420195,0.340981435738114,0.3459699674798854,0.3511588572636697,0.3516341279257901,0.3528965830932723,0.3536437475322917,0.3538263237168346,0.3540184021677634,0.3535692916647489,0.3529626282325707,0.3550140396394029,0.3562217813654398,0.3565553250840426,0.3569982377863597,0.3576165495397406,0.3588601210490921,0.3614114585670061,0.3628483121649684,0.3642881440196771,0.3636024238247035,0.3659939615445733,0.3679406123463806,0.3693142972049065,0.3694108970222181,0.3706766917293233,0.3723349929784246,0.3769206891199751,0.3808702319340617,0.3857194548305391,0.3888717632552404,0.3901699029126214,0.3951410220608768,0.39258114374034,0.0,2.213357482772002,60.915645637830494,216.65731361415124,321.3117555650728,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95625,41651,392.2300653594771,7179,73.84052287581699,5570,57.65228758169935,2235,22.954248366013072,77.3146043072854,79.73501809936143,63.296484254502126,65.08346756625205,77.04083871850412,79.46308818869629,63.19558432945557,64.98659487237904,0.2737655887812877,271.9299106651363,0.1008999250465549,96.87269387301,89.72898,62.887187044369526,93834.2274509804,65764.378608491,237.26323,145.22079853185775,247530.58300653595,151277.05990259632,272.38795,129.53843170326996,281910.4209150327,133134.29902837664,3179.10304,1431.3454358889055,3292210.488888889,1464490.1185766323,1368.71935,592.6992997902864,1414822.745098039,603307.218519199,2198.35632,913.5123652505208,2260511.226143791,920472.8602042338,0.38036,100000,0,407859,4265.192156862745,0,0.0,0,0.0,19833,206.7764705882353,0,0.0,25313,261.7516339869281,2034023,0,72937,0,0,3560,0,0,52,0.5437908496732026,0,0.0,0,0.0,0,0.0,0.07179,0.188742244189715,0.3113246970330129,0.02235,0.3181938559322034,0.6818061440677966,25.367371326951627,4.5291046332011735,0.3324955116696589,0.2053859964093357,0.2281867145421903,0.233931777378815,11.078590931378564,5.637754695772935,23.738504729167403,12985.314051967594,62.77445469796493,13.396406272601071,20.918451091301247,14.14346908915292,14.3161282449097,0.5552962298025135,0.7596153846153846,0.7008639308855291,0.5979543666404405,0.1273983115886416,0.7197406340057637,0.907859078590786,0.869281045751634,0.7516778523489933,0.1564885496183206,0.5007173601147776,0.6890322580645162,0.6453697056712132,0.5508735868448099,0.1200768491834774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899293769568,0.0046242305625133,0.0068116295123238,0.0090331758370167,0.0112813313802083,0.0133632104298227,0.0155037178323354,0.0176728981509858,0.0199343363574065,0.0219147781384727,0.023876923076923,0.0257627118644067,0.0279820996862301,0.0301272474370202,0.0321841453344343,0.0342239133132056,0.0363056136933501,0.0382894340680447,0.0405364630479341,0.0425010429703796,0.0571112016974486,0.0697053185137074,0.0830244158571803,0.0953954986630734,0.1074644512240179,0.122855508959207,0.1365167047325649,0.1494847008920483,0.1612803149437829,0.1732310535250005,0.18703537865628,0.1999197892842819,0.2138451815368522,0.2247907445549761,0.2358575837742504,0.2469145394006659,0.2581593418876022,0.2679782750771866,0.2775322388229279,0.2864598268050697,0.2951516344561655,0.3024363415090807,0.3098124644819094,0.3166206979254107,0.3233800626837386,0.3292741547828873,0.3356652108075638,0.3410727462405536,0.3465149102021261,0.3524402962415345,0.353208228368202,0.3541388472074999,0.3550229920726718,0.3549400590722187,0.3563435893615436,0.356627135307853,0.3566072506592952,0.3575811559778306,0.3589681898640636,0.3603013723203875,0.3616537681268315,0.3612126721871974,0.3632576154087721,0.3640308690303098,0.3655702280912365,0.3671346853874155,0.3675520255074444,0.3695270355037009,0.3718681010617794,0.3739582506548138,0.3774142240399909,0.3785938247329542,0.3821065989847715,0.3858225522468039,0.3865419147528589,0.3873332532147578,0.3880620397932007,0.3893366398016119,0.3912319644839068,0.3819253438113948,0.0,2.2627332816023125,61.46605140459209,207.5361685810574,319.93793814044056,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95645,41542,390.558837367348,7170,73.78326101730357,5569,57.640232108317214,2249,23.13764441424016,77.29129418892526,79.6916052234635,63.29829466637945,65.06996587619578,77.01343685295258,79.41325757477001,63.19640230354977,64.97043447840215,0.2778573359726835,278.34764869348305,0.1018923628296804,99.5313977936263,89.75472,62.9111370551858,93841.51811385856,65775.66736911057,235.43676,143.9603727789112,245495.31078467247,149853.73284427956,268.77526,128.65879948085814,277269.67431648285,131562.4903618526,3200.93868,1440.660267571276,3314915.155000261,1474486.0552786617,1316.95489,572.0218854897754,1358133.6400230017,579281.6304979617,2211.869,922.3739150128598,2277267.3741439697,934279.5906327576,0.38037,100000,0,407976,4265.523550629934,0,0.0,0,0.0,19690,205.24857546134143,0,0.0,25154,259.2608081969784,2034780,0,73017,0,0,3594,0,0,38,0.3763918657535679,0,0.0,1,0.0104553296042657,0,0.0,0.0717,0.1885006703998738,0.3136680613668061,0.02249,0.3199734571997346,0.6800265428002654,25.13189284890281,4.53819464643455,0.3330939127311905,0.2034476566708565,0.2314598671215658,0.2319985634763871,10.944026370931578,5.52535673680116,23.92466738601348,13002.06268962634,62.695234907306656,13.103240630735788,21.081002574210498,14.28360175212782,14.22738995023256,0.5442628838211528,0.766107678729038,0.6964959568733153,0.5640031031807603,0.1114551083591331,0.7138664710198093,0.9202279202279202,0.8765957446808511,0.7419354838709677,0.11787072243346,0.4893009985734665,0.69693094629156,0.6353790613718412,0.5148514851485149,0.1098153547133139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0046030619486971,0.0067801427077941,0.008992988517427,0.0111406159387113,0.0133727147731323,0.015325162632298,0.0176343251577593,0.0200290364796335,0.0222595376077652,0.0241713840347854,0.0262414625378729,0.0282290005658145,0.0303361292582898,0.0323739521823512,0.0344417438072089,0.0366247979107076,0.0386871696898588,0.0409010508792009,0.0429202894018056,0.0571828660403582,0.0709437519639677,0.0839808475786467,0.0971191596408685,0.1087211204576398,0.1239904736702831,0.137674774133959,0.1510929311006008,0.1635428583647852,0.1744937619446412,0.1881260715325476,0.20201210729795,0.2146154013629139,0.2264659184232137,0.2363918957648978,0.2480865224625624,0.2589869372339118,0.268389348646062,0.2776591879371423,0.2859025636911652,0.2941605501400819,0.3022874861054233,0.3093997252096461,0.3166854620054226,0.323851815803881,0.3304942477657631,0.3366928660072957,0.3421260645621908,0.347867839808975,0.3532738685166832,0.3536233447503978,0.3538204834728408,0.354602717283846,0.3556061023137215,0.3560496550079728,0.3546710141806884,0.3537228969288484,0.354674192909487,0.3558285370672622,0.3575070923259238,0.3588863966222457,0.3607020616094882,0.3618686069809132,0.3634440543703303,0.3647999227221135,0.365626882480815,0.3666381033990288,0.370089680434508,0.3710578418894074,0.3722373478539398,0.3738699463081088,0.3744323948928896,0.3736885610733134,0.3766895805978218,0.3789936866271283,0.3768905021173623,0.3778996865203762,0.3776384535005224,0.3737345331833521,0.3732612055641422,0.0,2.286163521948268,60.00863236414309,209.52628489865572,322.3923987738912,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95619,41483,389.7342578357858,7123,73.10262604712453,5585,57.69773789727983,2256,23.17531034627009,77.27514686010801,79.68620411405055,63.27600815666828,65.05630753505524,76.99000282703534,79.40035380379274,63.17142735162712,64.95389264428641,0.2851440330726689,285.85031025781404,0.1045808050411665,102.41489076882716,90.12278,63.121111642575,94251.95829280792,66013.14764071471,235.27124,143.8207162370649,245320.19786862444,149681.01198873276,274.17047,131.45886624505465,281442.2029094636,133511.045973077,3201.2652,1450.7805779473358,3310926.071178322,1480239.0507611833,1344.70854,584.4514528831903,1389152.3651157196,594073.2222369851,2223.05938,930.216605493804,2286986.8540771184,941738.5826422364,0.38012,100000,0,409649,4284.17992240036,0,0.0,0,0.0,19631,204.5618548614815,0,0.0,25553,261.9772221002102,2029589,0,72876,0,0,3586,0,0,52,0.5438249720243885,0,0.0,0,0.0,0,0.0,0.07123,0.1873881932021467,0.3167204829425804,0.02256,0.3218804101744573,0.6781195898255427,25.30512733792456,4.553447102817849,0.3253357206803939,0.211101163831692,0.2327663384064458,0.2307967770814682,11.053523009954564,5.458473532099839,24.140819806475925,13039.16313753327,63.00389485193311,13.789348064398126,20.50319802254791,14.51282593704668,14.198522827940383,0.5532676812891674,0.7718405428329093,0.6923500275178867,0.5853846153846154,0.1249030256012412,0.7015250544662309,0.9108635097493036,0.8512035010940919,0.7166666666666667,0.1340996168582375,0.5047528517110266,0.7109756097560975,0.6389705882352941,0.546,0.122568093385214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0046116578656639,0.0068286743442747,0.0092432706957846,0.011472858755683,0.0137485742219325,0.0156014194232573,0.0181927698543149,0.0202427080244957,0.0228436271297509,0.0249966664273332,0.0271311458568757,0.029209020947364,0.0313244070626797,0.0330541815966377,0.0352868152899187,0.0372934762329235,0.0394022162448462,0.0413432121376095,0.0433200196055938,0.0581208193979933,0.0726994572165056,0.0850990073008036,0.0977603607020205,0.1103811052898428,0.1256261715895491,0.1389812856672228,0.1518058931388853,0.163511242869527,0.1757593344940994,0.1886024569812379,0.2020409048517578,0.2150292671760717,0.227331045146009,0.2375082763186934,0.2481057660259971,0.2587480690442608,0.268882618510158,0.2784311493140547,0.2876526614506141,0.294848136671193,0.3032429134597334,0.3111675608945444,0.3187723072116136,0.3247020439964452,0.3310236648386937,0.3370978266325352,0.3431463797126209,0.3481915501740892,0.3533025300199912,0.3541413322523983,0.3544169220997984,0.3544704419577257,0.3547844740122329,0.3551549463647199,0.3544923974811856,0.3542648575735936,0.3559528513104175,0.3571660652906271,0.3581502600861591,0.3581244947453517,0.359166517972204,0.3606653908435154,0.3608154834074273,0.3619174112533204,0.361419300816412,0.3617386331140978,0.363047052871237,0.3666478116382662,0.3693888156053883,0.3715083798882682,0.3744436699018714,0.3730586370839936,0.3759847036328871,0.3781113433403002,0.3794433064224605,0.3777017571139792,0.3751803751803751,0.3755947383151413,0.3737334372564302,0.0,2.76245805024226,60.14454129741095,212.79682657547943,319.30904299863903,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95691,41496,390.4128914944979,7137,73.50743539099811,5556,57.549821822323935,2271,23.408680022154645,77.28391542799022,79.68052951804391,63.28504443165552,65.0592272282882,77.00925090623788,79.40400835126374,63.18545871396915,64.96108755747177,0.2746645217523422,276.5211667801708,0.0995857176863737,98.1396708164226,88.6589,62.15762940161663,92651.24201858064,64956.60971420158,234.80214,143.5367279778651,244878.0554075096,149502.92919696218,271.71881,129.22534733964295,280397.1115360901,132346.2114184834,3208.68788,1435.570248309991,3324856.757688811,1472112.947144379,1368.23077,592.3485292345872,1412787.1691172628,602065.3926389127,2241.68832,920.3977998065308,2312382.60651472,936576.651091748,0.37899,100000,0,402995,4211.4200917536655,0,0.0,0,0.0,19655,204.8782017117597,0,0.0,25238,260.1916585676814,2040283,0,73260,0,0,3426,0,0,41,0.4284624468340805,0,0.0,0,0.0,0,0.0,0.07137,0.1883163144146283,0.3182009247583018,0.02271,0.3223262032085561,0.6776737967914439,25.29804570388155,4.536921076502909,0.3275737940964723,0.2125629949604031,0.2183225341972642,0.2415406767458603,11.042952621393251,5.502836352466539,24.047166610863822,12935.540937842548,62.59931757848454,13.82419625968811,20.47477389055972,13.5835804483383,14.7167669798984,0.5433765298776098,0.7925486875529213,0.6785714285714286,0.5770816158285244,0.1102831594634873,0.7121326299924642,0.9157608695652174,0.875609756097561,0.7316176470588235,0.1805054151624548,0.4904232679120359,0.7367773677736777,0.6212765957446809,0.5324123273113709,0.092018779342723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024827222796457,0.0049801200908795,0.007035747281643,0.0092783609922663,0.0114363623414018,0.0134157770352864,0.0154112907338467,0.0176798627282755,0.0196266939401687,0.0220860906799975,0.0240371791452079,0.0262422424068061,0.0282668422839855,0.0303814166314552,0.0327631945663057,0.0347370162774824,0.0366805168429887,0.0385829060183935,0.040607447472436,0.042478687704525,0.0571264427847704,0.0708011850797206,0.0839971035481535,0.0964266172818721,0.1089886336052684,0.1239176916400279,0.1372946685496459,0.1496213936547493,0.1611706733081782,0.1728490468830499,0.1872123478879463,0.2002686570397894,0.2119595396491839,0.2235886765591633,0.2348960744120434,0.2460124537977423,0.2565673276844999,0.2661550251312913,0.276411491953814,0.2849588179961915,0.2937199972171332,0.3015128415620968,0.3087083452007975,0.316244038967435,0.3230594997442704,0.3293943322837562,0.3348043025850613,0.339936305732484,0.3457215819970703,0.3512193189770131,0.3526826637907791,0.3528342172325918,0.3532081641858367,0.3536444328794055,0.3545985227543483,0.3537053530296981,0.3528384833912615,0.353800111816358,0.3551014110103382,0.356405292029687,0.3576125251992388,0.3573703910169626,0.3579659583465482,0.3589471545633084,0.3592575473763592,0.3587591432931642,0.3610840263837109,0.3640112940579296,0.3668526234023021,0.3703541409393299,0.3720642768850433,0.3714361843858246,0.3722613951145807,0.3739763421292084,0.3732156273478587,0.3770472347495846,0.3787855495772482,0.3883554647599591,0.3898591549295774,0.3912534166341272,0.0,2.0049209640067884,58.989170421232174,214.02516857548272,320.5752780969241,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95647,41745,392.10848223153886,7056,72.45391909835122,5500,56.83398329273265,2206,22.59349482994762,77.35161970545354,79.75831041443101,63.31721993396855,65.0945362669608,77.08147064608312,79.48978629500279,63.217080691409485,64.99828873730085,0.270149059370425,268.5241194282213,0.1001392425590665,96.24752965994789,90.30516,63.20763968375775,94415.04699572384,66084.28877409406,236.25698,145.10525787268986,246364.3919830209,151065.34847909966,272.25586,130.04660320297444,280718.76796972204,132915.27476484753,3144.66376,1418.8818533932042,3251591.665185526,1447363.4579745033,1342.95612,581.912728675548,1387698.0877602017,592263.3783240536,2171.8822,905.2336364363232,2227472.76966345,909369.8150892016,0.38146,100000,0,410478,4291.593045260175,0,0.0,0,0.0,19738,205.67294321829223,0,0.0,25231,259.85132832185013,2033680,0,72878,0,0,3698,0,0,64,0.6691271027841961,0,0.0,1,0.010455110981003,0,0.0,0.07056,0.1849735227808944,0.3126417233560091,0.02206,0.315945545221728,0.684054454778272,25.30610533203117,4.518041884097921,0.3296363636363636,0.2127272727272727,0.2250909090909091,0.2325454545454545,11.143440898365364,5.692145034423152,23.43580775570387,13026.264814888214,61.86779928724831,13.711033457730997,20.518220739638483,13.715117140659933,13.9234279492189,0.5554545454545454,0.7700854700854701,0.7142857142857143,0.5807754442649434,0.1094605160281469,0.7170767004341534,0.9272237196765498,0.8673913043478261,0.7439446366782007,0.1259541984732824,0.5012141816415736,0.6971214017521903,0.6622320768662232,0.5310853530031612,0.1052114060963618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002624086888684,0.0044617958728388,0.0069620638561308,0.0091949118101276,0.0112400695765392,0.0134956202892646,0.0157038698822209,0.0177676118900041,0.020122699386503,0.0222679736553687,0.0245606475639407,0.0265123878618478,0.0287734247167423,0.0309287916121117,0.0329814485807544,0.0352080617460218,0.0372093987417211,0.0393663185432801,0.0413779470212456,0.0435449056839866,0.0586747755938012,0.0723739319819065,0.0850844966936076,0.0972935432275444,0.1094986807387862,0.1251428934332528,0.1385553042610348,0.1510387243250157,0.162984282550314,0.1749291176217888,0.1878693757818903,0.2012633130004225,0.2136044941862997,0.2244665593764027,0.2353653835563632,0.2461441227671394,0.2573647742512293,0.2671937114992623,0.2765312379351849,0.2853411837478092,0.2931818444770973,0.3012008746389775,0.3096170454411016,0.3171488469601677,0.3239761537620961,0.3306570781203822,0.3368284239599085,0.3426001219760113,0.3474410848404152,0.3528156490812092,0.3538148990272713,0.3545420807389386,0.3555608746462413,0.3563278158130398,0.3563117616464819,0.3563804535918286,0.3568591457914642,0.3577400016424407,0.3590300831650638,0.3603613272515875,0.3621580004882354,0.3636453572347203,0.3645503200755588,0.3660222848704524,0.3653208363374189,0.3653976355398156,0.3664481185860889,0.3696609423161602,0.3723183876970612,0.3746474397171572,0.3780704552704735,0.3812919241535942,0.3829159605849495,0.3841700312333359,0.3867205868522524,0.3877502097566822,0.3875657284256109,0.38582995951417,0.3910917979359044,0.3850207000376364,0.0,2.603651832312488,60.66659190459752,201.51008819279892,317.40388394159794,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95796,41765,392.2293206396927,7174,73.86529708964883,5622,58.15482901164975,2281,23.44565535095411,77.3507064425629,79.6793292287339,63.34838135415546,65.07020862215529,77.07139200337295,79.39928669509641,63.24674562415202,64.97070555495098,0.279314439189946,280.04253363749854,0.1016357300034371,99.50306720431,90.84196,63.61678510405494,94828.55234039,66408.60276426462,237.11304,144.67923253631963,246920.49772433087,150430.23981828018,271.67451,129.2642652312152,280214.77932272747,132246.23131680235,3237.53164,1454.107126696097,3351008.392834774,1489318.4336466007,1399.10831,601.9833823273624,1446261.7541442232,614155.0610958304,2249.70512,933.5797706732696,2314996.221136582,945531.7432208632,0.38127,100000,0,412918,4310.388742745,0,0.0,0,0.0,19814,206.28209946135536,0,0.0,25352,261.30527370662656,2034246,0,73037,0,0,3565,0,0,50,0.5115036118418306,0,0.0,1,0.0104388492212618,0,0.0,0.07174,0.1881606210821727,0.3179537217730694,0.02281,0.3231828412551304,0.6768171587448696,25.211674925401617,4.52605449634021,0.3347563144788331,0.1967271433653504,0.2310565635005336,0.2374599786552828,10.876237386899426,5.434085294118741,24.38698242641664,13036.811969209715,63.3682460120008,12.87422842890394,21.22285159977713,14.612666863157212,14.658499120162505,0.5426894343649946,0.7640144665461122,0.6801275239107333,0.5850654349499615,0.1243445692883895,0.7104874446085672,0.9129129129129128,0.8636363636363636,0.7254237288135593,0.1704545454545454,0.489456419868791,0.6998706338939198,0.6204225352112676,0.5438247011952191,0.1129785247432306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020866253393298,0.0041666666666666,0.00632185657605,0.0084105314480741,0.0107674475353831,0.0133568163539556,0.0156332803391626,0.0176648875917176,0.0197635325015073,0.0219709373720835,0.0244379777445334,0.026472942190482,0.0286004973999547,0.0307278959883882,0.0326362680195508,0.0344321738860938,0.0365989942261128,0.0386784433248325,0.0408856303158069,0.0428604147580578,0.0578574484291363,0.071284437241884,0.0839841088481011,0.0967297870998928,0.1088711377144543,0.1249550787443187,0.1387339624642137,0.1515557825735325,0.163766599769418,0.1747578017832647,0.1887080804167205,0.2023278181837831,0.2148995578153689,0.2262071225693686,0.2368869490649633,0.2486116335154988,0.2590074779061863,0.2693076871222165,0.2786851799376594,0.2873117245799569,0.2956381073430008,0.3037331308056318,0.3115262217700434,0.31761831183298,0.3250303471716436,0.3309603281151851,0.3364011504314118,0.3430039555855156,0.3487640333044142,0.3537540546955352,0.3545548723882304,0.3546868547832071,0.3554208374453687,0.3555806446943708,0.3563220101819048,0.3555211003822477,0.3550912179863768,0.3562477327441216,0.3588388690639583,0.3599461883408071,0.3608177429088715,0.3616725015913431,0.3615170200185826,0.3632216099015268,0.365107434412926,0.3667131248849501,0.3682634730538922,0.3707689858302818,0.3735791418016482,0.3755252311016847,0.3754090050232729,0.3766479360276637,0.3764720942140297,0.373893461717658,0.3738201925827057,0.380449141347424,0.3809225957779515,0.3853076601088321,0.3878186968838527,0.3844033083891295,0.0,2.0539245045537644,59.82347897221513,216.31713352490576,324.3816162722482,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95729,41553,390.6444233199971,7095,72.8514870102059,5574,57.57920797250572,2305,23.63964942702838,77.31652017658898,79.67874060896314,63.31665033110207,65.06302859671158,77.0375581207326,79.40115570824725,63.21324536048388,64.96329054352539,0.2789620558563825,277.5849007158939,0.1034049706181861,99.73805318618643,90.44992,63.32591171738856,94485.39105182338,66151.23078418094,233.32166,142.8347114577569,243086.22256578464,148562.15092370845,270.04763,129.35182568446643,278255.3980507474,132090.62392328904,3201.81152,1454.6806500111686,3307626.361917496,1482546.3234873114,1330.87192,586.3687518482253,1368036.0810203804,590316.5099898927,2264.5705,941.7143759631072,2323605.093545321,947369.5292333522,0.38035,100000,0,411136,4294.790502355608,0,0.0,0,0.0,19529,203.32396661408768,0,0.0,25220,259.64963595148805,2034343,0,73045,0,0,3610,0,0,44,0.4491846775794169,0,0.0,0,0.0,0,0.0,0.07095,0.1865387143420533,0.324876673713883,0.02305,0.3143584248593624,0.6856415751406375,25.084249105139325,4.554700450799031,0.3311804808037316,0.1978830283458916,0.2380696088984571,0.2328668819519196,11.329789495774245,5.774011458549518,24.402834683322038,13020.940306129156,62.9927935510706,12.981607932322095,21.01359930369716,14.663885338899762,14.333700976151588,0.5410836024398995,0.771532184950136,0.6749729144095341,0.5840241145440844,0.110939907550077,0.7160142348754448,0.9297752808988764,0.8614457831325302,0.7385159010600707,0.1380597014925373,0.4821300071959702,0.6961178045515395,0.6060830860534124,0.5421455938697318,0.103883495145631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.0044302065064222,0.0065668612027404,0.0087180060355426,0.01104736328125,0.0131179597906015,0.0151856648955156,0.0173605792306199,0.0194171779141104,0.0217253312038003,0.0237987818632979,0.0258761436331337,0.0279705897475448,0.0302128492137862,0.032389833305826,0.0344275337610944,0.0362721654606999,0.0383494289596796,0.0406133056133056,0.0425487581263543,0.0572875339319273,0.0707513604018417,0.0841522375224171,0.0973026973026973,0.1099699478040807,0.1256332963139246,0.1385529386802461,0.1514632147077296,0.1632349955657182,0.1749678111587982,0.1891065003339581,0.2024394467412714,0.2143463128127039,0.2262735405411317,0.2376291043625713,0.2483536220315306,0.2592878046600987,0.2689394365721617,0.2784608921738933,0.2869127709075906,0.2947802229605362,0.3025536596212813,0.3110942663239805,0.3178425725941924,0.3243506177643739,0.3306877653796781,0.3365534004911542,0.3418990712310966,0.3468501743063385,0.3516181464987512,0.3525264236410699,0.3537640193684559,0.3547438652041162,0.3549205888751903,0.3555823975901818,0.3560858675107949,0.3564997856428333,0.3576600201210562,0.3590443803242649,0.3606719367588933,0.3617759017073079,0.363222729982118,0.3635999409569196,0.3638983317949526,0.3643033560947261,0.3637863747086095,0.3665663082437276,0.3684592793760066,0.3716371072952293,0.3727475681709456,0.3734437934822409,0.3755220044972695,0.3792054742444402,0.3783619047619048,0.3808490566037736,0.3820845341018252,0.3829688227082364,0.3901740020470829,0.3915713089589729,0.3961748633879781,0.0,2.53162907702034,61.65584138761383,211.1717721873052,315.8007374350054,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95678,41382,389.3685068667824,7147,73.33974372374004,5540,57.327703338280486,2201,22.627981354125296,77.40264542862671,79.78196547507346,63.35728834693722,65.11160138805027,77.12758178377301,79.50810531626703,63.25537940998797,65.01298708000546,0.2750636448537022,273.86015880642844,0.1019089369492505,98.61430804481586,90.68554,63.48944030279734,94782.01885490915,66357.40745291222,236.01554,144.45578962044723,246113.67294466856,150417.95357391174,267.10307,127.3052423934974,275890.0478688936,130535.10844306262,3172.31956,1438.1039589976433,3281368.674094358,1468814.4808604314,1368.28246,600.3453231197853,1411096.78295951,608470.1217832583,2173.83996,911.4923854360476,2235387.800748344,920586.7441521812,0.37928,100000,0,412207,4308.273584314054,0,0.0,0,0.0,19766,205.98256652522,0,0.0,24944,257.45730470954663,2036555,0,72985,0,0,3629,0,0,54,0.5434896214385753,0,0.0,0,0.0,0,0.0,0.07147,0.1884359839696266,0.307961382398209,0.02201,0.3140364789849326,0.6859635210150674,25.479725359996976,4.5419701085744535,0.3370036101083032,0.207942238267148,0.2231046931407942,0.2319494584837545,11.07948922207852,5.4544983714066495,23.35003415362109,12949.342082796458,62.18271611050736,13.520564289412354,21.00442027537608,13.552724602438389,14.105006943280536,0.5581227436823105,0.7821180555555556,0.6930905195500804,0.5736245954692557,0.1463035019455253,0.715429403202329,0.9162162162162162,0.8671023965141612,0.7186311787072244,0.202127659574468,0.5062409985597696,0.7186700767263428,0.6363636363636364,0.5344295991778006,0.1306081754735792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002167066662616,0.0043276880821348,0.006522621221343,0.0088865868397265,0.0111042189930954,0.0131152882715923,0.015200791134401,0.0174727753339933,0.0198559092534873,0.0220025379671701,0.0242727403185797,0.0260245565045992,0.0281410651860991,0.030186308536824,0.0321399092034667,0.0341591475199735,0.0363241004400724,0.0384575472677085,0.0404467972251978,0.0423046056677123,0.0566426041808133,0.0699259693615773,0.0835974393955294,0.0965285083105407,0.1083393105776127,0.1236694529679399,0.1373323144846323,0.1501746092585494,0.1617878098047388,0.1736164736164736,0.1874394158068199,0.2008528969271898,0.2130559150778199,0.2247834835097542,0.2355918403274431,0.2462432866397209,0.2568125055748818,0.2656808324156685,0.2749235127478753,0.2836017201152843,0.292809702570026,0.3011861122136869,0.3087027914614121,0.3159374850414054,0.3222175047006733,0.3276131621385397,0.3337502032240717,0.3399443505660233,0.3455680819154987,0.3512085885529868,0.3522018496612539,0.3526916265085053,0.3533346448947472,0.3540894739118524,0.3549741170886545,0.355085873338737,0.3545782674772036,0.3555621272610774,0.3574439041037454,0.3586595767460119,0.3600067448570465,0.3606615545348814,0.3620772492740908,0.3640141191188955,0.3660649819494584,0.3668181580734472,0.3676781530373164,0.3708530059804847,0.3730796335447498,0.3733365208383138,0.3754466330737517,0.3789332618600911,0.3830744849445325,0.3835490541472007,0.3825732435763724,0.3862721893491124,0.3842121492445267,0.3845997973657548,0.386600768808347,0.3980916030534351,0.0,2.265867505633572,60.381440109206224,207.9890400465212,315.6636206345615,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95718,41634,391.67136797676505,7053,72.28525460206022,5488,56.66645771955118,2199,22.524499049290625,77.33907921770925,79.70651187211226,63.32552877917672,65.07568180365026,77.06423893501206,79.43436411491389,63.223144734225,64.97732748710865,0.2748402826971983,272.1477571983684,0.1023840449517194,98.35431654160232,91.12444,63.775224546279645,95200.944440962,66628.24604178905,234.9022,143.86769054629738,244744.81288785808,149637.82208811023,270.56043,129.304202163771,278523.4752084248,131766.89062898743,3152.49772,1423.7206374653033,3256650.494159928,1450535.5705983215,1299.64622,567.3768146929575,1337570.394283207,572568.8551022336,2163.2418,910.4122403128908,2218583.6310829725,915164.1650732554,0.38106,100000,0,414202,4327.315656407363,0,0.0,0,0.0,19660,204.7054890407238,0,0.0,25177,258.94816022064816,2031177,0,72845,0,0,3518,0,0,39,0.4074468751958879,0,0.0,0,0.0,0,0.0,0.07053,0.185088962368131,0.3117822203317737,0.02199,0.3224462365591398,0.6775537634408603,25.317515374311697,4.556079100500335,0.3365524781341107,0.2095481049562682,0.2244897959183673,0.2294096209912536,10.818329258171127,5.216839514870653,23.57739778134049,12982.418748747194,61.79548412671319,13.45986650153562,20.821316639981344,13.611534165044349,13.902766820151864,0.5481049562682215,0.768695652173913,0.715755278830536,0.549512987012987,0.0992851469420174,0.7117117117117117,0.9168975069252078,0.8816964285714286,0.6867924528301886,0.1550387596899224,0.4956689124157844,0.7008871989860583,0.6626161543959972,0.5118924508790073,0.0849150849150849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598282288121,0.004907328547674,0.0072673385909889,0.0094598439278166,0.0116374881743181,0.01370825652568,0.0159690001529597,0.0179379064615258,0.0200617599541912,0.0221839857432557,0.0239880213728245,0.0261192880105997,0.0283242998632123,0.0301356878663933,0.0323086768925865,0.0344973785715024,0.0365996415659218,0.0385433638788281,0.0407025717286633,0.0423933654226834,0.0575435152603606,0.0715062989160005,0.0845522317637067,0.0975561023829053,0.1097272899837597,0.1246191926884996,0.1384341146137277,0.1509711219013544,0.1627051983584131,0.174352095294307,0.1877539582457615,0.2010072565796599,0.2135091900362378,0.2254022107912881,0.2364511404059426,0.2472251483062593,0.2579863282995264,0.2677572250430631,0.2770271804536888,0.2857945296558681,0.29405499276411,0.302300545297105,0.3103586977096347,0.316283749790374,0.3218334992352327,0.3279994091653229,0.3341331433784476,0.3396701146211909,0.3462105344814211,0.3512615238522309,0.3518062563067608,0.3524561958900527,0.3529710512950736,0.353787999478616,0.3543890998436453,0.3547862382223859,0.3533853670918205,0.3545279383429672,0.3552234195895394,0.3564587294185171,0.3589941318086067,0.3607217210270645,0.3618959654057685,0.3644421506148461,0.3650434489565029,0.3665223288814691,0.3671968873376438,0.3707280128751302,0.3708312768807728,0.3731969472969193,0.37635938145276,0.3770518184744126,0.3791653392800255,0.3830082491712281,0.3858223062381852,0.3850946561226935,0.3842310694769711,0.3834431630971993,0.3766124509254066,0.3804897007384376,0.0,2.6165107340003764,58.31843179040251,210.4384674628294,314.20251359052924,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95691,41417,388.8244453501374,7211,74.07175178438933,5650,58.51124975180529,2286,23.554984272293108,77.30793472821749,79.68534358009923,63.31631099018998,65.07060118542356,77.02691140190267,79.40129600829391,63.21234265606634,64.9676369828458,0.2810233263148234,284.04757180531703,0.1039683341236425,102.96420257775196,89.0054,62.32531433230211,93012.88522431576,65131.41940855681,231.45153,141.37350308066553,241353.1680095307,147219.727563622,270.45223,129.53678510586917,279240.01212235214,132707.2598435,3262.61,1481.048732889629,3380847.059807088,1519134.4582976757,1383.53694,607.5257953449801,1432795.1635995023,621839.9591863189,2262.29618,946.7026738818024,2333034.078439979,963787.6853105986,0.38033,100000,0,404570,4227.85841928708,0,0.0,0,0.0,19405,202.234274905686,0,0.0,25178,259.73184521010336,2042184,0,73344,0,0,3628,0,0,48,0.5016145719033138,0,0.0,0,0.0,0,0.0,0.07211,0.1895985065600925,0.3170156705033976,0.02286,0.3153532429943428,0.6846467570056571,25.13009910742809,4.566770471297013,0.3205309734513274,0.2070796460176991,0.2330973451327433,0.2392920353982301,11.170030152628,5.601832151246717,24.47907177531903,13038.311052087263,64.03249272571169,13.905102121540663,20.639642760919173,14.626298318929022,14.861449524322826,0.5520353982300885,0.7829059829059829,0.7012700165654334,0.5861807137433561,0.1190828402366863,0.7079584775086505,0.9462915601023018,0.86875,0.6853146853146853,0.1388888888888889,0.4984542211652794,0.7008985879332478,0.6408715251690458,0.5586808923375364,0.1137218045112782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0048234769567508,0.0072327777721421,0.0093645892581457,0.0115735090716784,0.014011649219991,0.0162739239938411,0.0184481878509443,0.0205790345335214,0.0228270772128445,0.0250133267724607,0.0270328542094455,0.029042442691568,0.0309570413103945,0.0329900524208527,0.035210685192077,0.0371137866009076,0.0391599098865276,0.0412033328825689,0.0431369687366434,0.0571386788116826,0.0712289479468687,0.0848905163097648,0.0976040724457813,0.1101212440695835,0.1253410605131242,0.1386027266458012,0.1512348307430274,0.1636645299145299,0.1759903884317911,0.1890171667348741,0.2013154905503207,0.2139199077950178,0.2255486184764424,0.2362810244675233,0.2471555343828589,0.2580360730389749,0.2688018365762258,0.2784021250510829,0.2870337477797513,0.2957501766416086,0.3029643413029994,0.310320326839955,0.3171343527209006,0.3242799255284196,0.3301762141736951,0.3355662602237945,0.3414406941874561,0.3465226882894121,0.3520860089769221,0.3528069251441613,0.3536017680779059,0.3546006023840835,0.3554130330687639,0.35635305528613,0.3560062114666134,0.3568235687129154,0.3580760781593248,0.3599766126119929,0.360535909915411,0.3615087223008015,0.3625614586858292,0.3628102135914142,0.3638755819445382,0.3641559699685154,0.3667868326184775,0.3670806025066114,0.3692195385152506,0.3694941744813868,0.3721497719817585,0.3739829924155367,0.3767317464562717,0.3792665905341961,0.3798265141628925,0.3822664770033191,0.38363201911589,0.384180790960452,0.3849414614452967,0.3835281326447404,0.3963185574755822,0.0,2.027039648453498,64.03148445665278,213.82005598451263,318.74749914250214,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95724,42056,395.41807697129246,7165,73.68058167230788,5590,57.9896368726756,2297,23.755797919017173,77.38171245272493,79.75623602661892,63.34258245905804,65.09530192861637,77.10412146652112,79.47324391773715,63.24090604386522,64.99305471419869,0.2775909862038048,282.9921088817713,0.10167641519282,102.24721441767316,89.97252,63.00923120185553,93991.6008524508,65823.85943113068,237.29296,145.7223758949549,247427.74016965443,151766.6895396712,276.18322,131.54615317162958,286070.6092515984,135494.2897625642,3214.94192,1451.7630955725372,3337625.840959425,1495685.654143721,1364.67679,593.0728888651829,1416487.3281517697,610424.2462967945,2268.65532,944.8823006992898,2348372.7173958463,969038.2975442144,0.38402,100000,0,408966,4272.345493293218,0,0.0,0,0.0,19840,206.8446784505453,0,0.0,25664,265.6073711921775,2035230,0,72995,0,0,3554,0,0,54,0.5536751493878233,0,0.0,0,0.0,0,0.0,0.07165,0.1865788240195823,0.320586182833217,0.02297,0.3061197398114961,0.6938802601885039,25.211174710690003,4.564644607838463,0.320035778175313,0.204293381037567,0.2359570661896243,0.2397137745974955,10.949411444893828,5.456837627376903,24.43431127562637,13104.560531299534,63.18545805119542,13.375104809798454,20.241865367591465,14.840561365689467,14.727926508116022,0.5429338103756708,0.7802101576182137,0.6819452207937395,0.577710386656558,0.1208955223880597,0.6991150442477876,0.9289940828402368,0.851528384279476,0.721830985915493,0.1413043478260869,0.4929145016532829,0.7176616915422885,0.6235912847483095,0.5381642512077295,0.1156015037593985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218765192027,0.0045920384393151,0.0069103381093477,0.0088779635536233,0.011036068108306,0.0134012219959266,0.0154371654346163,0.0176303646535179,0.0201281907117957,0.0225918722489507,0.0245840296074551,0.0266937711111795,0.0290615166286172,0.0311910917912215,0.0332600641878992,0.0354107648725212,0.0374493822301852,0.0393479366199375,0.0413295338727458,0.0431008430508227,0.0574155684120386,0.0720207687798341,0.0855470225355659,0.0980181772279727,0.1101466090074886,0.1258076455348173,0.1394954060305133,0.1525678150151173,0.1645266733608221,0.1757159712538882,0.1894664253081631,0.2029465571179597,0.2152459052052291,0.2270813972557809,0.2378972378972379,0.2491253708870289,0.2597789352755501,0.2691338582677165,0.2783544921321035,0.2875942002428018,0.2958629867499855,0.3042705458627625,0.3125443955107259,0.3193042602670758,0.3262488911572065,0.3329922453860663,0.3388982053913348,0.3447722613423656,0.3501567479337772,0.3554291596283784,0.3561946306917629,0.3563923423919023,0.357250510599338,0.3580255825368867,0.3587853073819131,0.3580613102973778,0.3578740842708185,0.3584364030051507,0.359414454377943,0.3609375557856403,0.3619955346254151,0.3639189135685156,0.3652292233619426,0.3665980948973659,0.3672207654742717,0.3688676053405512,0.3694563051522915,0.3722469724540377,0.3751182426514381,0.3758741258741259,0.3781094527363184,0.3800224107571634,0.3831127513362178,0.3828082877609181,0.3848269321953532,0.3860109811410838,0.3867343798091721,0.381651376146789,0.3717555121406642,0.3739299610894941,0.0,1.5655423478195478,60.50013631933239,224.7409905408296,309.21052543845065,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95855,41669,391.36195294976784,7198,73.84069688592145,5626,58.0877366856189,2252,23.045224557926037,77.44506122741345,79.72368928714853,63.40474875222951,65.08447444484173,77.1749809321941,79.45731281076881,63.30482676568232,64.98952635601528,0.2700802952193442,266.3764763797189,0.0999219865471943,94.948088826456,89.91466,62.98146779104778,93802.78545720098,65704.93744827894,234.51439,143.4493195651105,244062.2189765792,149059.27657932346,270.07312,128.2778893533633,278733.7541077669,131342.29206840036,3228.80036,1450.2334922204109,3335908.319858119,1480431.9568310576,1361.92675,591.4241253829495,1406852.850659851,603031.8453736891,2223.9117,920.4143290977194,2279895.8635438946,923994.5015102112,0.38147,100000,0,408703,4263.762975327317,0,0.0,0,0.0,19647,204.3503207970372,0,0.0,25217,260.04903239267645,2041837,0,73292,0,0,3584,0,0,39,0.4068645349747014,0,0.0,1,0.0104324239737102,0,0.0,0.07198,0.188691115946208,0.3128646846346207,0.02252,0.3187830687830688,0.6812169312169312,25.373501652873877,4.561075267150199,0.3266974760042659,0.2140063988624244,0.2268041237113402,0.2324920014219694,11.02935320162648,5.4174763833785615,23.847851940881128,12997.657472824509,63.28311998620882,14.091019012727845,20.675512491669483,14.269345304998549,14.247243176812947,0.5549235691432635,0.776578073089701,0.6882480957562568,0.6050156739811913,0.1146788990825688,0.717814371257485,0.9078212290502792,0.859122401847575,0.7517006802721088,0.1633466135458167,0.5041958041958042,0.7210401891252955,0.6355871886120996,0.5610997963340122,0.1031220435193945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0045786525390249,0.0069355018606207,0.0091754293370143,0.0112077549942081,0.0133379454883967,0.015552432168174,0.0177429716418367,0.0198000592265825,0.0219734151329243,0.0241754641054259,0.0261112136689024,0.0283777538129718,0.0304984673620111,0.0323202143004327,0.0344450293665293,0.0364345254100564,0.0382690334815183,0.040344684385382,0.042454008157829,0.0567060835471021,0.0700711472361231,0.0840183030899553,0.0971760187216001,0.1095737629023263,0.1250804842778581,0.1383579197068697,0.1502587370233022,0.1624025510040846,0.1742895370618143,0.1879843919637962,0.2019117567640546,0.2137722860431279,0.2254774566221513,0.2354886193865893,0.2471343217526001,0.2577387388391613,0.2675693898190808,0.2765105997052488,0.2855916980354915,0.2937204435348665,0.3011588881222738,0.3095516984346715,0.3167969544970251,0.3239149431983688,0.3301682307445996,0.3354997871114784,0.3417608717792036,0.3466074020319303,0.352163064858942,0.3533618878293195,0.352895859127803,0.35412562616086,0.3545902915981656,0.3561134011446873,0.3558420923979467,0.3564140632403575,0.3576248976248976,0.358946362767845,0.3591606996544476,0.3596801677808363,0.3608184244341207,0.3622760138321282,0.364046852646638,0.3650679168169251,0.3676700343714196,0.3693493783960627,0.3715917291581688,0.3734623986580934,0.3746827411167512,0.3766850980212951,0.3798151413153817,0.3813017901195522,0.3837854500616522,0.3843294252216185,0.3865718418514947,0.3911346964257843,0.3938127090301003,0.3921348314606742,0.3929133858267716,0.0,2.3670847378378883,58.53988774296455,226.86756732017747,312.52132818197686,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95683,41733,392.5462203317204,7322,75.27983027288023,5723,59.20591954683695,2273,23.400186030956384,77.29747507811412,79.7021172045449,63.28577397120039,65.06621729208905,77.01355617388467,79.41781246510476,63.18161739709546,64.96461915942035,0.2839189042294521,284.3047394401452,0.1041565741049339,101.59813266869833,89.04698,62.38783053599887,93064.57782469197,65202.62798616146,236.99575,144.39270562542524,247091.4582527722,150310.37449225594,273.22595,129.63155970424754,282029.13788238243,132643.85081703565,3285.06192,1476.2237810714794,3400531.2124410816,1510082.398201855,1364.01893,589.8034786057552,1410332.9118025145,601187.8906231264,2232.64996,932.9315082645744,2299753.4358245456,944831.698482052,0.38202,100000,0,404759,4230.208082940543,0,0.0,0,0.0,19731,205.574657985222,0,0.0,25593,263.92358099139864,2037003,0,73135,0,0,3548,0,0,40,0.4180470930050269,0,0.0,1,0.0104511773251256,0,0.0,0.07322,0.1916653578346683,0.3104343075662387,0.02273,0.3246685729139589,0.6753314270860411,25.320324214882937,4.531454959508309,0.3298969072164948,0.2053118993534859,0.2365892014677616,0.2282019919622575,11.056818993767555,5.525999352392694,24.280893683961143,13031.723877463968,64.48664600884482,13.790080330371127,21.23656158012393,15.06446854459844,14.39553555375133,0.554080027957365,0.7429787234042553,0.715042372881356,0.6019202363367799,0.1018376722817764,0.7101139601139601,0.9146666666666666,0.8777292576419214,0.7342192691029901,0.1148148148148148,0.5033572586246816,0.6625,0.6629370629370629,0.5641025641025641,0.0984555984555984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004797841478506,0.0071780293415909,0.0095010669647393,0.0115152994791666,0.0135671942797775,0.015819428011913,0.0179122158452646,0.0201785696022582,0.0223141596092205,0.0245761234139886,0.0267510427153746,0.0288165759611526,0.0309038261389281,0.0327923016561351,0.0348173279821258,0.0367429856655714,0.0386783930555411,0.040658357435652,0.0427392292139983,0.0577457432361851,0.0717373781783542,0.0851749249721924,0.0980423096748403,0.110816912105996,0.1257590825416305,0.1386872160658939,0.151681683600656,0.1640254074169126,0.1757910220208505,0.1896704197403045,0.2029679895068888,0.2148272406431092,0.2259898766351863,0.2362259408691051,0.2476421898231365,0.257556111955647,0.2675424760016224,0.2777859845687079,0.2873307576782418,0.2953923886339406,0.3030111306385472,0.3099848319666303,0.3172234096203261,0.3229520367057334,0.3304769783550852,0.3372040529695024,0.3420931775271725,0.347667922567234,0.3530642235843936,0.3539126909041762,0.3545346490864361,0.3551880848894992,0.3567643685669904,0.3562963073391076,0.3559171006744404,0.3554155691663229,0.3564288063137126,0.3572966875192288,0.3586008436405233,0.3596310322846751,0.3606239743767176,0.3617378528701857,0.3632944547672883,0.3638071836380718,0.3638950528651612,0.3641841338740076,0.3651143739366059,0.3661500528355054,0.3686854591124756,0.3725957135006411,0.3750266922912663,0.3762420099993671,0.3802246504164438,0.3820160908660672,0.3830975870676334,0.3789213413691856,0.3824790688176434,0.3909919867366676,0.3874082657396678,0.0,2.317239711374252,62.02777928308372,215.20061043183608,330.84966429946473,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95841,41553,390.4070283073007,7212,74.10189793512171,5620,58.17969345061091,2319,23.831136987301885,77.32864418348662,79.63976390392136,63.32870225298407,65.0384913811956,77.05172549850352,79.36217468011212,63.22802712694328,64.94034044969588,0.2769186849831015,277.5892238092439,0.1006751260407909,98.15093149971688,90.94426,63.68614444417584,94890.7669995096,66449.7912627955,238.03644,145.45519580648593,247932.5862626642,151333.7984854978,273.06749,129.88079187708803,282653.3112133638,133681.78851644142,3229.06172,1448.8854791145034,3342829.0188958794,1485660.1462027372,1412.40831,608.5725552553401,1462503.4692876744,623812.2859574261,2281.83314,935.7757511817758,2346745.129954821,946319.6753959048,0.37945,100000,0,413383,4313.216681795891,0,0.0,0,0.0,19962,207.81294018217676,0,0.0,25506,263.7910706273933,2027596,0,72900,0,0,3643,0,0,37,0.3860560720359762,0,0.0,0,0.0,0,0.0,0.07212,0.1900645671366451,0.3215474209650582,0.02319,0.3223249669749009,0.6776750330250991,25.255239347868606,4.542161014218593,0.3272241992882562,0.2060498220640569,0.2302491103202847,0.2364768683274021,11.200506126095238,5.7311244100061085,24.42618302973513,12966.24031434452,63.31650408130191,13.651874380832588,20.721455570665903,14.410086885204452,14.533087244598958,0.552491103202847,0.7728842832469776,0.6960304513322458,0.5788253477588872,0.1361926260346125,0.7160493827160493,0.9333333333333332,0.8556701030927835,0.7072243346007605,0.1821561338289963,0.4994107942493518,0.7005012531328321,0.6388478581979321,0.5460717749757517,0.1245283018867924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484428014381,0.0047236751408993,0.0070816212651549,0.0091215667154233,0.0112365263371974,0.0132864996945632,0.0155030068290694,0.0179207445885678,0.0199889631491814,0.022307267257434,0.024273038381934,0.0262407126144246,0.0283124543969087,0.0303167560556304,0.0321522851014684,0.0341928019503326,0.036249055744694,0.0383195786505204,0.0402280942290913,0.0421944441553305,0.0570018983248847,0.0708027518139807,0.084344800117393,0.097037589718261,0.1095288289237904,0.1246921279901903,0.1379354222999841,0.1508241378209562,0.1635963647625455,0.1750396672241519,0.1888070470160022,0.202044901271301,0.2141870656937481,0.2252454141979492,0.2357601029827591,0.2471281557054711,0.2572691946938228,0.2669203832772229,0.2764831470882166,0.2847771737883896,0.2930120928938307,0.3010718641523595,0.3082812982264536,0.3149616706317737,0.3225445205896315,0.329379821042888,0.3355109717868338,0.3409415485055595,0.3460444825302847,0.3514722424402832,0.3519390936947395,0.3527844501504735,0.3531500183880732,0.3539658576239693,0.3544787253088262,0.3541317420525676,0.3534564996184177,0.3546351669714492,0.35548821202938,0.3572169187314526,0.3574596016535137,0.3583655658038282,0.3597294572340783,0.361348496063522,0.3621914102130538,0.3637294275139774,0.3656455768680217,0.3678378634340373,0.3701892633504538,0.3714615598996695,0.3746790168745414,0.3776849322406128,0.3803184713375796,0.3800370541917554,0.3809886655871988,0.3811019816336394,0.3799443757725587,0.3797909407665505,0.3823366555924695,0.3846755277560594,0.0,1.826638352845245,61.30502718426573,211.9551441587992,324.26622571131776,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95748,41802,392.2484020553954,7285,74.92584701508125,5675,58.70618707440364,2294,23.676734762083804,77.35098256499538,79.70100159254912,63.33757887846742,65.07198292254711,77.06814881745692,79.41487791043076,63.23483116537303,64.9702149191168,0.2828337475384614,286.12368211835815,0.1027477130943879,101.76800343030834,89.44188,62.61474112208682,93413.8363203409,65395.351466439846,237.27725,144.7848099231604,247269.67665120945,150669.81025521198,270.75211,129.53239113600844,279454.95467268245,132676.99126221417,3252.19724,1458.701407480775,3366190.6671679826,1493193.5205000553,1349.67343,592.5079451284234,1394875.3394326775,604144.2877249864,2263.86142,935.3232920650332,2338175.565024857,953050.0504592774,0.38224,100000,0,406554,4246.083469106404,0,0.0,0,0.0,19851,206.75105485232064,0,0.0,25238,260.21431257049755,2037710,0,73155,0,0,3493,0,0,37,0.3864310481681079,0,0.0,0,0.0,0,0.0,0.07285,0.1905870657178736,0.3148936170212766,0.02294,0.3266989655623936,0.6733010344376064,25.340519688996963,4.541030255327252,0.3235242290748898,0.2081057268722466,0.2333039647577092,0.2350660792951542,10.938203554867435,5.390013889051151,24.43943752572676,13052.5851818946,63.59876186695204,13.866846841522571,20.515642874340102,14.702377597248027,14.513894553841332,0.531806167400881,0.7502116850127011,0.6786492374727668,0.5574018126888217,0.1109445277361319,0.708420320111343,0.8982630272952854,0.8612975391498882,0.7098765432098766,0.155893536121673,0.4719207173194903,0.6735218508997429,0.6198704103671706,0.508,0.099906629318394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0046624299368544,0.0070114557649183,0.0090801982611521,0.0112352695956319,0.0133359122883814,0.015718494204952,0.0182174458834695,0.0204008626416868,0.0227102928082367,0.024847776616028,0.0269349209607883,0.0290238009561507,0.0309851613102532,0.032980523231823,0.0349656854638663,0.0371206394897335,0.039286084881187,0.0413166431007236,0.0435249137940015,0.0581658750456704,0.0714793815511433,0.0841930884079852,0.0973307120554253,0.1097969767883119,0.1255219068759579,0.1386016818842193,0.1513274807129555,0.1639232190734589,0.1753172228121547,0.1889708654208627,0.2023050700719658,0.2150556347143214,0.226262117863317,0.2367030644593166,0.2474450774789953,0.2577485396446003,0.2673020016427197,0.2764440812249577,0.2854685959320324,0.2933896735355406,0.3023095201863536,0.3090921999242711,0.3173235893135258,0.3244585275835275,0.3311903442330193,0.3372866936896362,0.3433925777025737,0.3487838695883168,0.3541779545664785,0.3553153590802364,0.3559474040040288,0.3566825876833507,0.357416378985234,0.3572876606147333,0.3581436077057793,0.3578897187351025,0.3587802625503001,0.3591511845333059,0.360516558900969,0.3616465146016284,0.3628830829005273,0.3635292632641898,0.3654649126745387,0.3658471856980868,0.3675025548305951,0.3689300941425587,0.3720893494676313,0.3731269785437918,0.3763852347923144,0.3770123377516855,0.3798030611152734,0.382031746031746,0.381298820646347,0.3828901296489069,0.3828790971305079,0.3810196078431372,0.3799216656359513,0.3777840428531153,0.3818110544884359,0.0,2.2408016069240912,63.51279539837478,198.3542290246586,335.6389977979476,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95829,41690,390.0593765978984,7341,75.31123146437926,5678,58.53134228678167,2298,23.46888728881654,77.51248185563044,79.79837434686696,63.42745123530996,65.11063250236798,77.23123002055262,79.52146581010075,63.32383833904899,65.01243114994958,0.2812518350778248,276.9085367662143,0.1036128962609694,98.20135241839978,90.13708,63.07500436307134,94060.336641309,65820.37208263818,237.80329,145.0947403932104,247462.5217835937,150718.7911730378,273.79039,130.6740418909036,281313.5376556157,132904.82760479,3268.08148,1473.505398714752,3369556.230368677,1497333.9296231335,1384.54261,603.5347050317206,1426028.425633159,611129.4583948379,2261.989,939.2301243768763,2313049.51528243,938865.0635877273,0.38191,100000,0,409714,4275.469847332228,0,0.0,0,0.0,19850,206.39889803712865,0,0.0,25528,261.97706331068883,2043255,0,73267,0,0,3386,0,0,53,0.5530684865750451,0,0.0,1,0.01043525446368,0,0.0,0.07341,0.192218061847032,0.3130363710666122,0.02298,0.3177279211516016,0.6822720788483984,25.43325147124874,4.609132460002134,0.3321592109897851,0.2011271574498062,0.2361747094047199,0.2305389221556886,11.328107149162538,5.77974617807179,24.30788234124202,13055.48016786224,63.65178999035624,13.437633310939878,20.991508205830453,14.92734432837513,14.29530414521078,0.5507220852412822,0.7653239929947461,0.690880169671262,0.5995525727069351,0.1115355233002291,0.7091690544412608,0.9090909090909092,0.8832951945080092,0.7147335423197492,0.1660649819494584,0.4990658570761326,0.6983311938382541,0.6328502415458938,0.5636007827788649,0.0968992248062015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024487483051018,0.0046991624553123,0.0068721556066856,0.0092135036681515,0.0117027977000751,0.0141157327367029,0.0162387245220011,0.0185185185185185,0.0207386682732071,0.0229369056140709,0.0254160053248681,0.027371832343681,0.0294794599371159,0.0313078918117821,0.0334134045382846,0.0355427473583093,0.0376567738730907,0.0397938764295416,0.0418662151071588,0.0441119821761355,0.0584259819361298,0.0724420975584252,0.0863250550141465,0.099079889922904,0.1119312617801598,0.1272444970214204,0.1411053998198293,0.1532760563979329,0.165026890899778,0.1754853771109754,0.189214473896446,0.201816826710161,0.2139661650053206,0.225566537432425,0.2366313245069494,0.2476053533901117,0.2576051347195293,0.2684321700635941,0.2775235074204146,0.2858596483204902,0.2943477658788774,0.3024589208716933,0.3109155469570244,0.3176311765268088,0.3242172833525101,0.3300561625149009,0.3357823570501946,0.341587044123983,0.3467263440305438,0.3520371975727007,0.3528898904135313,0.3530838815789474,0.3542768186471817,0.3550152676153713,0.3556964462944583,0.3554475570430822,0.3552935591074537,0.3568252301330751,0.35818780833376,0.3589084154879268,0.3605466406718656,0.3616251482799525,0.3631828281557875,0.3631954223384519,0.3645538668073069,0.3657516815124523,0.3657961294722782,0.3687734668335419,0.3724812292648856,0.374528005034613,0.3750056354537667,0.3783897414336767,0.3815346225826575,0.3827841596130592,0.383641946589746,0.3830659327790139,0.3866344848393422,0.393716444621197,0.3899508465319498,0.3863293051359516,0.0,2.8275815595164357,60.922518288133965,213.1008926769887,324.3611912410552,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95744,41504,389.55965909090907,7184,73.84274732620321,5601,57.99841243315508,2285,23.55238970588235,77.31288813594676,79.67178798720356,63.318020272784125,65.06209772613136,77.0365588928485,79.39180918726565,63.217094507280144,64.96184146844148,0.2763292430982602,279.9787999379077,0.1009257655039803,100.25625768987824,89.64582,62.782839962562,93630.51470588236,65573.42492747534,233.31794,142.47878387728278,243176.93014705885,148299.8035148759,268.56026,127.50682900132836,277032.3048963904,130589.9336333047,3247.47956,1458.0424648211092,3364779.6206550803,1495798.6973816757,1400.96856,605.7506563913416,1452954.2007854276,622397.6040183636,2260.44188,934.8983140731806,2331435.22309492,951644.136755268,0.38068,100000,0,407481,4255.932486631016,0,0.0,0,0.0,19564,203.80389371657756,0,0.0,25097,258.66895053475935,2038968,0,73200,0,0,3464,0,0,35,0.3655581550802139,0,0.0,1,0.0104445187165775,0,0.0,0.07184,0.1887149311757907,0.3180679287305122,0.02285,0.3095300950369588,0.6904699049630412,25.328440448260555,4.518845299648801,0.3299410819496518,0.2033565434743795,0.2246027495090162,0.2420996250669523,10.93635683857062,5.3780529542781,24.232278687785517,13020.726295263516,63.020910377531166,13.44978232803494,20.761409412391863,13.925486998067022,14.88423163903735,0.5400821281913943,0.7655838454784899,0.6915584415584416,0.5604133545310016,0.1253687315634218,0.6990504017531045,0.9119318181818182,0.8531317494600432,0.7116788321167883,0.1642857142857142,0.4886578449905482,0.7001270648030495,0.6375451263537906,0.5182926829268293,0.1152416356877323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025927201280155,0.0046929322210847,0.0067979585831836,0.0091008816479096,0.0112488685021511,0.0134114052953156,0.015907005200367,0.0184888362548621,0.0206923344306541,0.0227214548284371,0.0246178138232972,0.0268111105406376,0.0287145310748408,0.0307253362997754,0.0327349633756319,0.0350148306617472,0.0369442316055416,0.0389599609881615,0.0409695431999916,0.0429989893622563,0.0573773058974599,0.0717155652283095,0.0845436718086389,0.0974766060351172,0.1094018535896165,0.1259347796194243,0.1402816243805643,0.1531747298951514,0.1652779558176302,0.1765898123324396,0.1903218512097686,0.2026888175043533,0.2149428037057979,0.2255570017609677,0.236259806564484,0.2469645943191385,0.2576205730358398,0.2672712543318781,0.2767209167622573,0.2856766296873567,0.2936476691137306,0.3020167988582392,0.3095156384980415,0.3162816347571721,0.3227586542201478,0.3293872467413957,0.3358481107838837,0.3414932368749522,0.3472938979798242,0.3521927736338147,0.3531476556277085,0.3538463659804476,0.3543543967684529,0.3548835995709274,0.355669564958017,0.3558792763967511,0.3550713103272634,0.3556908556908557,0.3564988923806089,0.3578472758626884,0.3585826237661065,0.3597930965880831,0.3606243154435925,0.3617776579491327,0.3627719035060127,0.3641994750656168,0.3643960714490839,0.3662029979674797,0.3689919183326244,0.3728057842940349,0.3773098013916409,0.381834734643603,0.3845424671385237,0.3869408424767896,0.3884195538680589,0.3851132686084142,0.3887587822014051,0.3919474116680361,0.3947146471745853,0.4032134659525631,0.0,1.9418681767991972,60.83014533942983,207.4942206145321,327.8956947870827,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95786,41829,393.0323846908734,7333,75.33460004593573,5734,59.319733572755936,2309,23.75086129497004,77.37208356525132,79.71019749201673,63.35007434272507,65.07926175485959,77.08438053235528,79.42100833847522,63.24511707111208,64.97640489992726,0.287703032896033,289.1891535415141,0.1049572716129958,102.85685493232675,90.40636,63.347215173685335,94383.68863925835,66134.10641814601,236.88402,144.34706785577424,246743.6264172217,150135.6125694509,271.05573,128.9409764085784,279902.8876871359,132294.38005402128,3274.0098,1473.028857309689,3387371.306871568,1507347.8391847536,1384.40376,595.3880712996532,1434373.5410185205,610744.2651525016,2282.55774,948.176589999391,2349505.460088113,960511.1355399886,0.38255,100000,0,410938,4290.167665420834,0,0.0,0,0.0,19834,206.48111415029337,0,0.0,25304,261.1133150982398,2037553,0,73133,0,0,3482,0,0,40,0.4071576221994863,0,0.0,0,0.0,0,0.0,0.07333,0.1916873611292641,0.3148779489976817,0.02309,0.3263592922639803,0.6736407077360196,25.23231652171021,4.551326856452199,0.3257760725497035,0.2040460411580048,0.2343913498430415,0.2357865364492501,10.823341429231052,5.339874717252632,24.545654390997512,13090.601391856211,64.49864382868594,13.662961843819495,21.180279253699627,14.814718423404855,14.84068430776198,0.5484827345657481,0.7692307692307693,0.699678800856531,0.5729166666666666,0.1242603550295858,0.7086044830079538,0.921832884097035,0.8463157894736842,0.7333333333333333,0.1423220973782771,0.4975867616639853,0.6983729662077597,0.6496769562096195,0.5325884543761639,0.1198156682027649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397143725311,0.0045618588054012,0.006738243591565,0.0089292063266321,0.0110749516932777,0.0132859586251832,0.0154725866128489,0.0174602526685307,0.0195593525179856,0.0217889673523692,0.0241645402281181,0.0265088927431521,0.0284936012746055,0.0308487525612907,0.0328854423396203,0.0348194451619569,0.0369216437221819,0.0388671692712924,0.0409592485609193,0.0427798021863612,0.0574878168404136,0.0718349928876244,0.0848507720854168,0.0976493952735717,0.1096818373367046,0.12540936846331,0.13954326286229,0.1526306835098464,0.1651407473803273,0.1764283648128903,0.1900012909888975,0.2030136956686231,0.2156293808887295,0.2272230360539607,0.2381334682386063,0.249424116239922,0.2609636645581624,0.2710734323525112,0.2800771062478739,0.288942335223043,0.2971193891716798,0.3046462945420949,0.312444565333081,0.3195793558587153,0.3260170201400944,0.3323644246283455,0.3376909591785625,0.3440354135395731,0.3496051779935275,0.3546995011481511,0.3553736808098212,0.3566497992409658,0.3574522724386561,0.3574686183381835,0.3582633803655414,0.3582746613900265,0.3580174464710547,0.3580183945112621,0.3584445893537427,0.359541300842143,0.3602601210389806,0.3612521821933026,0.3628715057947542,0.3636078008931978,0.3652907342065832,0.3656769315586359,0.3661765129061034,0.3677405006989452,0.3693211996742325,0.3727922286448298,0.3760169140966126,0.3768077129084092,0.3796625222024867,0.3807730730807654,0.3815827064089134,0.3855927124535538,0.3846390641834692,0.3814,0.3799126637554585,0.3868640850417615,0.0,2.055644468306211,61.01489667556468,218.15116769151692,332.6349788163034,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95654,41830,393.77339159888766,7204,74.22585568820959,5630,58.366613001024525,2313,23.867271624814435,77.25911226955019,79.6548587359181,63.27736057920528,65.04550508173575,76.97830117460556,79.37171976427807,63.17590616432901,64.94545976858093,0.2808110949446245,283.1389716400281,0.1014544148762723,100.04531315482268,88.80718,62.22500769400106,92842.09755995568,65052.175229474,233.8255,143.13977330803212,243956.9594580467,149150.9642127168,275.17462,130.3553926389566,284382.2108850649,133707.90521689891,3246.13736,1448.8627298488611,3367035.774771573,1488204.829984796,1362.74317,583.1697823059804,1413193.5413051206,598251.050383352,2276.14094,930.479908799828,2350717.8790223096,948794.671480431,0.38129,100000,0,403669,4220.095343634349,0,0.0,0,0.0,19548,203.83883580404373,0,0.0,25604,264.3590440546135,2035251,0,73127,0,0,3467,0,0,44,0.4599912183494679,0,0.0,0,0.0,0,0.0,0.07204,0.1889375540926853,0.3210716268739589,0.02313,0.3206428665524963,0.6793571334475036,25.079103681933677,4.6405831853706685,0.3293072824156305,0.2078152753108348,0.2285968028419183,0.2342806394316163,11.19399332438588,5.622774583577002,24.465512000910977,13070.560093550062,63.863744504390816,13.742311639160752,21.251492660848573,14.485401698660272,14.384538505721208,0.5460035523978686,0.7743589743589744,0.6952535059331176,0.574980574980575,0.1053828658074298,0.7180811808118082,0.943502824858757,0.8505494505494505,0.75,0.12,0.4914619883040935,0.7009803921568627,0.6447462473195139,0.5227043390514632,0.1019644527595884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702683265297,0.004451474867926,0.0065363457361508,0.0086063241749309,0.0110687217050714,0.0131586987961623,0.0155596794257397,0.0179976928652367,0.020465953118451,0.0225704751571232,0.025005895198745,0.0270866917887689,0.029015767873857,0.0309258171853591,0.0327863777089783,0.0347312695163058,0.0371908960001657,0.0389985156274328,0.0408263035812729,0.042700916359997,0.0574539678558739,0.0712834370221412,0.0846660296325853,0.0974382192833752,0.1099800420278989,0.1256248411420825,0.1394326256200015,0.1516727040272746,0.1633715770452188,0.1746679408575017,0.1882604193631892,0.2011875352143197,0.213697555875049,0.2251947283662536,0.2357358681987605,0.2473180374475268,0.2585510489510489,0.2685284397875052,0.2781998498737574,0.2874197143612193,0.2959567356791384,0.3035955187987565,0.3118139203702605,0.3187448886323182,0.3254823994340497,0.3322367607410522,0.3389193874602716,0.3439211530850642,0.3493471906463137,0.3546601697496127,0.3552035893347027,0.3559392322472733,0.3567817133793142,0.3571729988504576,0.3578852912585059,0.3582190725620089,0.3587017080275704,0.3606386843235032,0.3617863102303418,0.3624409434674044,0.3632440784638866,0.3642090620031796,0.3651171611598112,0.3648166834846956,0.3657471097917119,0.3655370927646212,0.3659904432172594,0.3704524586011462,0.3719572601188791,0.3741289547456948,0.376184343666636,0.3773483628556092,0.377318799005546,0.3863863095694881,0.391025641025641,0.3904511188225439,0.3930609097918273,0.3897163844113446,0.3915866741953698,0.3956607495069033,0.0,1.9442651762757344,60.475283727923234,221.96247767245077,321.12478543142254,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95618,41518,390.65866259490895,7154,73.57401326110147,5546,57.4264259867389,2245,23.0814281829781,77.28554750318864,79.71743794571186,63.27381344368565,65.07208334405526,77.00592441122092,79.43840904332932,63.17048332450347,64.97175379894254,0.2796230919677214,279.0289023825494,0.1033301191821749,100.3295451127144,88.60566,62.00850946932097,92666.29714070572,64850.247306282254,231.69044,141.6239580924429,241718.8081741932,147525.11183842714,267.4844,127.21238223848044,276577.0566211383,130524.01374148688,3198.19176,1449.637736546156,3313285.657512184,1484621.9507480566,1372.69031,594.9065724036997,1418448.9426676985,605086.4091797308,2203.8607,924.9286351953192,2267463.0927231275,935136.436884596,0.38015,100000,0,402753,4212.104415486624,0,0.0,0,0.0,19416,202.45142128051205,0,0.0,24974,258.0371896504842,2041150,0,73325,0,0,3468,0,0,35,0.3555815850572068,0,0.0,0,0.0,0,0.0,0.07154,0.1881888728133631,0.3138104556891249,0.02245,0.3189781998127591,0.6810218001872409,25.39546633885717,4.508355705120534,0.3243779300396682,0.212585647313379,0.2307969707897584,0.2322394518571943,11.02260237958902,5.623498718837594,24.04769988865877,13011.606449813478,62.75999209592349,13.84392080158308,20.34672124322821,14.26190026896236,14.307449782149842,0.5494049765596827,0.7608142493638677,0.6903835464146748,0.58984375,0.1187888198757764,0.6972934472934473,0.91005291005291,0.8322440087145969,0.7372013651877133,0.1350364963503649,0.4992757122163206,0.6903870162297129,0.6417910447761194,0.5460992907801419,0.1143984220907297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025435751925415,0.0046962642891194,0.0068533484953092,0.0092087208415917,0.0113946201115044,0.0134665729507278,0.0157399190052126,0.0177958483164432,0.0198116005768581,0.0220189875362289,0.0242403725816048,0.0263663546408277,0.028419384057971,0.0305319905579664,0.0326794011357769,0.0347645300427186,0.0368194159464444,0.0389356818677495,0.040813564967576,0.0426006863675717,0.0569209379148851,0.0709786948639216,0.0847099621689785,0.0972449033345625,0.1097249218287839,0.1255534136886478,0.1387064549724755,0.1510938632777517,0.1631403773504136,0.1746717383362345,0.1888637099384914,0.2017760718235638,0.2147348918315078,0.2262536162005786,0.2371049904073036,0.2486652681118399,0.2594795206582007,0.2691124260355029,0.2781648123103499,0.2872212348793212,0.2959620998007691,0.3036241390619875,0.3111487968881563,0.3180338502564595,0.3243506533042705,0.3301137556661685,0.3364717977006883,0.342098215993573,0.346650739447135,0.3515540272450734,0.3522340942204954,0.352463760127873,0.3528314946393004,0.3539402370808335,0.3553129375316512,0.3548545778761606,0.3544935692596302,0.3558212401055409,0.3566310087087705,0.3576004450266478,0.3581817155543848,0.3582814544589396,0.3600210526315789,0.3615044545678957,0.3629806532542095,0.3640729816501788,0.3654026683355617,0.3670921896616778,0.3693034651732587,0.3709863068069061,0.3726832831187802,0.3746004687832943,0.3747235387045813,0.3745906009597075,0.3759992476253174,0.3780271707028942,0.3820516740559547,0.3859684593610998,0.3829321663019693,0.3784905660377358,0.0,2.191728308677894,62.22762579535388,209.49544689287808,313.90990264666965,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95808,41769,391.1990647962592,7048,72.1756012024048,5532,57.13510354041416,2277,23.369655978623918,77.35864855579545,79.66382031084403,63.35358995694328,65.05449953437159,77.08060990987012,79.38678082098467,63.25010493539176,64.9540788681268,0.278038645925335,277.0394898593622,0.1034850215515135,100.42066624478709,89.12838,62.41358322990584,93028.11873747496,65144.438073966514,233.79848,143.21113467401796,243422.39687708757,148871.47698941422,270.1251,129.32167887942137,278297.209001336,132126.48417806547,3199.52416,1456.314506419124,3305620.991983968,1486216.425242701,1351.3048,592.2200688351492,1396246.8478623915,603986.8651721638,2251.91846,941.2207113756835,2313477.621910488,950365.9654244072,0.38344,100000,0,405129,4228.550851703407,0,0.0,0,0.0,19551,203.41725116900463,0,0.0,25265,260.1035404141616,2040140,0,73255,0,0,3511,0,0,35,0.365313961255845,0,0.0,0,0.0,0,0.0,0.07048,0.1838097225119966,0.3230703745743473,0.02277,0.3231517772671983,0.6768482227328018,25.330257796012624,4.621857918032489,0.3233911785972523,0.202819956616052,0.2312002892263196,0.242588575560376,11.147858539133354,5.45909814798458,24.18652632601105,13081.987245506893,62.51769474029617,13.064602167074638,20.457454544200303,14.24647737946172,14.749160649559515,0.5527838033261027,0.7789661319073083,0.7126886528787032,0.5856137607505864,0.1192250372578241,0.7142857142857143,0.923943661971831,0.8867924528301887,0.7542662116040956,0.1314878892733564,0.4973288003885381,0.711864406779661,0.649390243902439,0.5354969574036511,0.1158594491927825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026415399874501,0.0047199910867121,0.0074008739114125,0.0096705125473124,0.0122528600166622,0.0145160469965922,0.0165933259992665,0.0185447757387818,0.0207384099871278,0.0230569365167045,0.0250225335955424,0.0271503887418712,0.0292597729490933,0.0314062853732326,0.0337670639666762,0.0357456389494231,0.0377249164485188,0.0399738759939043,0.04198390028564,0.0437765470142416,0.0579932398597896,0.0719699741769558,0.0849518379154569,0.0977288730544082,0.1099974705956747,0.1253897291184459,0.138294826800123,0.1509425933018426,0.1631410906683467,0.174487432444025,0.1893475194107321,0.2025298649584487,0.2150152828690459,0.2265257445458325,0.2368933963199101,0.2482151567557979,0.2587167435161719,0.2679901861480631,0.277326855183844,0.2871992940070828,0.2954463882553171,0.302619714021384,0.3105164018907488,0.3176937749679091,0.3245709002882966,0.3313634288675311,0.3376576215579959,0.3439484770959817,0.3497751454750457,0.3550952469021639,0.3553539656009058,0.3566144563375625,0.35661220519616,0.3571066981009271,0.3575138014671964,0.3573586004936909,0.3571145210174709,0.3583554245632522,0.3594157180085036,0.3604448829491434,0.3609945229715232,0.3625841291270424,0.3643546416080233,0.3667212783625468,0.3675358256204538,0.3679250236270083,0.3706891604980777,0.3711912235644757,0.3742656946705358,0.3755208333333333,0.3770732154311372,0.3770711566303823,0.3793519695044473,0.3812605948528278,0.3812983581807888,0.3807214665878178,0.3820276497695852,0.3846784104875051,0.3844206974128234,0.3729083665338645,0.0,2.276774940971815,62.28735348065271,207.35301692506545,312.7915003067748,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95857,41849,392.4074402495384,7153,73.36970695932483,5573,57.523185578518,2346,24.11926098250519,77.41454581429173,79.70382461740992,63.37712166936033,65.06819806081815,77.12695253701528,79.41486429538784,63.27241356098048,64.96545161036134,0.2875932772764429,288.9603220220778,0.104708108379846,102.74645045680586,90.53022,63.43891170249245,94442.76370009492,66180.57201292807,235.70091,144.04389492213372,245237.8438716004,149620.18563524177,268.99612,128.61218841892378,276416.2450316617,130937.59081084482,3215.40964,1441.8358084974077,3322016.2116486016,1472221.1214333402,1346.57134,582.4863075733418,1389624.3675474925,592851.0524403009,2310.8818,953.1073480753316,2378447.8128879475,966463.2732685648,0.3823,100000,0,411501,4292.852895458861,0,0.0,0,0.0,19647,204.28346390978228,0,0.0,25127,257.9571653609022,2036106,0,73128,0,0,3596,0,0,45,0.469449283829037,0,0.0,1,0.0104322063073119,0,0.0,0.07153,0.1871043682971488,0.3279742765273312,0.02346,0.3286554397219994,0.6713445602780005,25.48069455478811,4.559777120368534,0.3262156827561457,0.207249237394581,0.2233985286201328,0.2431365512291405,10.94533017265331,5.375532436340787,24.971962502751143,13035.410245440757,62.58275655910866,13.328742271650771,20.62457223984125,13.75627187642718,14.873170171189456,0.5298761887672707,0.7316017316017316,0.6947194719471947,0.5606425702811245,0.1084870848708487,0.688839615668884,0.8969359331476323,0.841648590021692,0.678030303030303,0.1598513011152416,0.478909952606635,0.657035175879397,0.6448047162859248,0.5290519877675841,0.0957642725598526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.0047616635428803,0.0074125150836062,0.0096339309280652,0.011627197885964,0.0136550025946539,0.0156988590057049,0.0178709861683463,0.0201438261011685,0.0222567711316586,0.0244706894609073,0.0266491604180984,0.028811277909641,0.0310647233201581,0.0334048168921148,0.0353439372030572,0.037245874502095,0.0393077361521322,0.0414499704151225,0.043384647389224,0.0576576200852874,0.0713457137184002,0.0850854311365326,0.0985415638551433,0.1102639975569432,0.125710242274465,0.1396339138172111,0.1529828141440551,0.1647375102680905,0.1761852236584242,0.1903117536952172,0.2030942547624711,0.2153358034618017,0.2266791962149109,0.2371521519321229,0.2484673439125334,0.2588813808791061,0.2692860996223701,0.2784230106160965,0.2879650091026712,0.2967555375628939,0.3038170081392085,0.310988594955279,0.3180750329617643,0.3246255956432947,0.3301637807705589,0.3356795751715846,0.341003438176493,0.345955696284665,0.3509957419798471,0.3520121918325511,0.3525156062673116,0.3527535945591286,0.3532774666029843,0.3536347530928526,0.3535159845370313,0.3526699413722072,0.3542570677186061,0.3560954743776199,0.3572743027639313,0.3587676036529338,0.3603073693383241,0.3612742219612448,0.3628409675759135,0.3632135714113593,0.3646856068518905,0.3649280986076238,0.3664299629233959,0.3684229050082708,0.371500258871321,0.3733029612756264,0.3755978318631098,0.3788925163234555,0.3813456584330959,0.3821979676326684,0.3852283539486204,0.3864265927977839,0.3876796714579055,0.3906510851419031,0.3992292870905587,0.0,2.364531839222523,59.40224206688057,215.6723681228725,314.4511996542912,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95710,41382,389.1442900428378,7149,73.35701598579041,5533,57.23539859993731,2245,23.090586145648317,77.36002699221102,79.73214478437401,63.33690834044432,65.0884418102307,77.08953768068405,79.46040672311845,63.23770942341741,64.991378694805,0.2704893115269726,271.73806125556155,0.0991989170269107,97.063115425712,90.76826,63.48501940106478,94836.7568697106,66330.60223703351,233.08025,142.36477266100792,242974.05704733048,148192.6602328307,264.25313,125.79194241314536,272203.21805453976,128530.53953981458,3154.59192,1413.5685592759944,3264699.864173023,1445657.3376428338,1316.6671,569.0000442409336,1363378.821439766,582216.7386492578,2204.98748,909.2174989517118,2270423.487618848,921481.5381012808,0.3788,100000,0,412583,4310.761675895936,0,0.0,0,0.0,19530,203.45836380733468,0,0.0,24552,252.69041897398392,2036019,0,73045,0,0,3542,0,0,53,0.5433079093093721,0,0.0,0,0.0,0,0.0,0.07149,0.188727560718057,0.3140299342565393,0.02245,0.3192225772097976,0.6807774227902024,25.43787569150892,4.512264592384224,0.3164648472799566,0.2071209108982468,0.246520874751491,0.2298933670703054,10.957225579423673,5.520324393847152,23.723520227257865,12938.948155391672,62.01877503826871,13.339099837948366,19.62190415344341,15.179122966769516,13.878648080107409,0.5441894090005422,0.7486910994764397,0.6893203883495146,0.5879765395894428,0.1132075471698113,0.7023901310717039,0.9,0.8511166253101737,0.7320261437908496,0.1532258064516129,0.4957507082152974,0.684863523573201,0.6409495548961425,0.5463137996219282,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713615784302,0.0047238187918782,0.0069309844433394,0.0092748735244519,0.0115138939745311,0.0135432365280436,0.0157186544342507,0.0177488824021719,0.0198517761308458,0.022072524007453,0.0241751932580122,0.0263233542770317,0.0281456953642384,0.0301166970511592,0.0320264135369376,0.0339429906638682,0.0358130717193796,0.0380611344646842,0.0402517031566904,0.0423561038636268,0.0570402163810478,0.0707430162335283,0.0830334756564522,0.0957444570659262,0.1083463371430981,0.1236930298449079,0.1378940891925149,0.1514538720252032,0.1631205673758865,0.1742134114290005,0.1883968972204266,0.2011839442442345,0.2131133285506206,0.2246723005105443,0.2350534512339976,0.2467326776537302,0.2570204505137731,0.2669575386829795,0.2758691067419552,0.2853331501265272,0.294233282068479,0.3022592596921423,0.3092489651094027,0.3158058605865376,0.3216857958340924,0.3274407145056975,0.3334167834968956,0.3387390137495071,0.3443051742891179,0.3500726072607261,0.3505525606469002,0.3518161274320674,0.3533853688831176,0.3547929336808572,0.3544703342514703,0.3538879342089112,0.3536059597400539,0.3551803984037574,0.3560690280319485,0.3573969150476326,0.3585681301972857,0.3599493280022169,0.3617061373201834,0.3624701070558523,0.3618873551055745,0.362879657655777,0.3622513148868054,0.3632312505925855,0.3654355893267362,0.3670728774152169,0.36917199797487,0.3685169309901414,0.37051111533346,0.3694569962472237,0.3715146948003014,0.3771721018805046,0.379638147807421,0.3791912212964844,0.3735807255607865,0.3705426356589147,0.0,2.2340282936976363,57.05160296819477,213.31024921151496,320.8325282523014,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95751,41598,391.21262441123326,7173,73.83734895719104,5605,57.9628411191528,2300,23.6446616745517,77.33346816806463,79.69529903668905,63.32120940122799,65.07007231589341,77.05861946972128,79.42077360866051,63.22062356059666,64.97231985967859,0.274848698343348,274.5254280285394,0.1005858406313251,97.75245621482044,89.53428,62.71615625989436,93507.4098442836,65499.218034166064,234.73483,143.22620033046866,244587.63877139665,149018.2664729023,267.93379,127.67576148600726,276395.24391390174,130696.3787574511,3228.79444,1451.0820190971142,3341505.571743376,1485275.6853808975,1392.64493,603.1740675492157,1443629.1735856545,619125.1920488614,2271.67298,941.7417381922372,2338671.804994204,954989.0927129806,0.3802,100000,0,406974,4250.3368111038,0,0.0,0,0.0,19672,204.8542573967896,0,0.0,25097,258.5978214326743,2039914,0,73197,0,0,3539,0,0,33,0.3446439201679355,0,0.0,0,0.0,0,0.0,0.07173,0.1886638611257233,0.3206468702077234,0.023,0.3324496288441145,0.6675503711558854,25.202239419838797,4.599674923565272,0.3232827832292596,0.2096342551293488,0.2256913470115968,0.2413916146297948,11.187175434234383,5.606586163636801,24.508906290821297,12978.625516634344,63.24272421838372,13.800223667624696,20.297016426147398,14.288343622729876,14.857140501881762,0.5496877787689562,0.7804255319148936,0.6926048565121413,0.5794466403162055,0.1300813008130081,0.6995548961424333,0.9032258064516128,0.8497652582159625,0.7087719298245614,0.1622641509433962,0.5022316185106883,0.7235367372353674,0.6443001443001443,0.5418367346938775,0.1222426470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020467095597548,0.0042996795521843,0.0067596370501187,0.0089516145420553,0.0110453408189418,0.0131963465670152,0.0154446845818211,0.0175542446571819,0.0196026327623564,0.0213935491795727,0.0236613596055073,0.0256762999846003,0.0278580463375255,0.0299893924882339,0.0319422233685839,0.0339955347914168,0.0361384652024893,0.0383733358237607,0.0404532931330249,0.0424946881639795,0.0570065555973109,0.0711788839117511,0.0845933496322256,0.0968722392831601,0.1091050977579988,0.1243364984033666,0.1381406550037662,0.1507433935356158,0.1628806083325323,0.1746399425194908,0.1883166546378981,0.2010820168794633,0.2139368956853702,0.2251342689316459,0.2358635863586358,0.2475830832438179,0.2572312089040713,0.2672481710748452,0.2771547908201484,0.285781355563444,0.2944183571973815,0.3015030118720393,0.3093972995041596,0.3164743520615407,0.3231577797468047,0.3290777697071171,0.3344922461230615,0.3406411740020601,0.3458037113295262,0.3513584910644705,0.3523151832319499,0.3532854152897114,0.3544880291023942,0.3553561088592936,0.3565494446595003,0.356470172527692,0.3568139232064026,0.3582281189813824,0.3587256430909496,0.3593629637591587,0.3605901146401052,0.3616688137944703,0.3628751311647429,0.363452960032279,0.3649946895819252,0.3646518945850269,0.3646490902339398,0.3662359000284369,0.3669552924544972,0.3669538167025604,0.3684114118239684,0.3719101123595505,0.375063548551093,0.379710813720966,0.3825541619156214,0.3818445545751239,0.3846750426554987,0.385298368779682,0.3824531516183986,0.3866404715127701,0.0,2.194771748750009,59.43177259261335,217.28147683328928,322.30126744204983,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95801,41592,390.3195164977401,7080,72.74454337637394,5503,56.8991972943915,2174,22.337971419922543,77.34149214859087,79.68022404955626,63.33904717832892,65.07210031863202,77.07879209406818,79.41888447808647,63.241865849768686,64.9782270947354,0.2627000545226963,261.33957146979014,0.0971813285602323,93.87322389662243,91.03138,63.76985623501534,95021.32545589296,66564.9171042216,234.97748,143.71713775444206,244646.9974217388,149386.67420427976,272.20187,129.72653609842234,280898.7066940846,132899.93648898858,3155.18328,1425.389946517292,3264029.6030312832,1458418.6663158971,1311.27993,569.0617735704818,1356194.4029811798,581444.4980433207,2142.75024,890.9525446514062,2202726.1093308004,899387.6106908298,0.3793,100000,0,413779,4319.151157086043,0,0.0,0,0.0,19608,204.10016596904,0,0.0,25398,261.8970574419891,2035261,0,72985,0,0,3676,0,0,52,0.5323535244934813,0,0.0,0,0.0,0,0.0,0.0708,0.1866596361718956,0.3070621468926554,0.02174,0.3200323537341601,0.6799676462658398,25.022057525071283,4.544831774418876,0.3254588406323823,0.2107941123023805,0.2300563329093221,0.2336907141559149,11.200277193037229,5.585842903704221,23.086294981642677,12946.889127321296,62.1886616576559,13.586581537293032,20.30649074796509,14.24938096097659,14.0462084114212,0.5507904779211339,0.7620689655172413,0.7035175879396985,0.6018957345971564,0.0972006220839813,0.7099853157121879,0.8917378917378918,0.8864628820960698,0.6986754966887417,0.147410358565737,0.4984303308379618,0.7058096415327565,0.6406601650412603,0.5715767634854771,0.0850241545893719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044605293837373,0.0065553807905018,0.0090842580173149,0.0111715928168082,0.0132727587576779,0.0156657963446475,0.0178496665951863,0.0198582720644626,0.022189682360892,0.0246800918710524,0.0266684466168965,0.0288003620616944,0.0307091643316301,0.0329460563787197,0.0349257865795675,0.0368414512922465,0.0390041493775933,0.0409302035599613,0.04280657922132,0.0575303876049872,0.0710177962734477,0.0842468193917545,0.0972413430718301,0.1085852198473926,0.124437115494387,0.1380319318109535,0.1507316969413366,0.1627298829104804,0.174482041608163,0.1880052095105858,0.2012432432432432,0.2134390787114998,0.2255543776434715,0.2360463581984518,0.2466065853280485,0.2566523605150214,0.2668845315904139,0.2766022518746743,0.2854365601235062,0.2937806779465265,0.3013079528202733,0.3087289578210705,0.3154580175520515,0.3221770523633274,0.3284381308779359,0.3346958163022962,0.3408242079321121,0.3464934393381165,0.3506255761885947,0.3514477154082127,0.3517367509144413,0.3517020796934002,0.351886396830217,0.3523793939574253,0.3523742396150958,0.3516427755930483,0.3529750448271891,0.3550083057900776,0.3557485673352435,0.3561352693349383,0.3568932655654384,0.3576150574761043,0.3583273413625741,0.3597242380261248,0.3610557246300766,0.3614013875694504,0.3632718014003819,0.3655875768451725,0.3674558587479936,0.3700944094779711,0.3710529151848259,0.3723921669013183,0.3769791990065197,0.381548757170172,0.3840144230769231,0.3884633421916523,0.3914575990047688,0.395152198421646,0.3982232522209347,0.0,2.1514593332812937,60.04659272928589,212.3427806260076,311.6534217056596,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95691,41767,392.2625952283914,7272,74.64651848136188,5610,57.94693335841406,2267,23.272826075597496,77.3419109081298,79.71004319193801,63.33255108723839,65.08067637432909,77.05862642010497,79.4260395413424,63.22972549822437,64.97958250509191,0.2832844880248331,284.00365059560784,0.1028255890140172,101.09386923717524,89.50194,62.69066599139456,93532.24441170016,65513.64913251461,234.80782,143.81196510544433,244646.98874502303,149564.5973138577,275.75468,131.5901941560095,283122.70746465184,133644.84963738776,3234.0204,1465.1421836947843,3346016.1143681225,1498058.526330383,1363.42271,594.1058110845096,1411047.747437063,607326.2103484179,2239.8491,930.7564787849968,2304278.2915843707,945527.6508827604,0.38119,100000,0,406827,4251.46565507728,0,0.0,0,0.0,19605,204.1257798539048,0,0.0,25680,263.389451463565,2039051,0,73184,0,0,3470,0,0,53,0.5434157862285899,0,0.0,1,0.010450303581319,0,0.0,0.07272,0.1907710065846428,0.3117436743674367,0.02267,0.3182175622542595,0.6817824377457405,25.062515389441945,4.505348418677702,0.3288770053475935,0.2046345811051693,0.2324420677361854,0.2340463458110517,11.09267499890249,5.478981623667078,24.22810593749813,13030.046702885753,63.326574833616014,13.547777903956046,20.83495793657933,14.46452476109438,14.479314231986276,0.551693404634581,0.7778745644599303,0.699728997289973,0.5866564417177914,0.1111957349581111,0.7166193181818182,0.9184210526315788,0.8626609442060086,0.7431506849315068,0.1518518518518518,0.4964302712993812,0.7083333333333334,0.6446700507614214,0.541501976284585,0.1006711409395973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0044998479781088,0.0065429093122337,0.0090497277971885,0.0112559482653434,0.0134601286959354,0.0156477772001182,0.0179125500122478,0.0201757972199509,0.02244465596119,0.0244284982060481,0.0264711620408875,0.0285981654395129,0.030804417703783,0.0326388673910575,0.0347640017366495,0.0368678866208924,0.0389369143118066,0.0412893163504029,0.0433405237544419,0.0588499456930403,0.0718973403531542,0.0856414452977464,0.0988304831619023,0.1107618635754743,0.1261333700102624,0.1398519052872782,0.1519422591737015,0.1646708186003781,0.1759758857792605,0.1898053913174587,0.2025450689289501,0.2152280068298731,0.226347842249702,0.2374353898603321,0.2485802530636644,0.2585339741945556,0.268413597733711,0.2779372227831157,0.2856603255270929,0.2936977172014023,0.3021045485403937,0.3094256956779159,0.3164778517053287,0.3232441105681569,0.3301176876958377,0.3358571930000501,0.3416759008062359,0.3471295060080107,0.3525685857932727,0.3533971420868158,0.3542257593699226,0.3547532855351936,0.3553221005173261,0.3558125362308069,0.3551683981489994,0.3545039764266025,0.3555201209889532,0.3565815828668275,0.3588838941920232,0.359589234328274,0.3599976186696301,0.3613827993254637,0.3619995048502172,0.3624503824184335,0.3642662187696829,0.3655846021258259,0.3689234184239733,0.3708235794849968,0.3745985870263327,0.3751321535279246,0.3772480807430075,0.3786642875350497,0.3808676823138195,0.3832008428311464,0.3797101449275362,0.383719123815442,0.3855923381220071,0.3830633702756464,0.3841653666146646,0.0,2.6160646570595123,61.69161916490616,209.24273448153065,322.72927112015464,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95711,41477,389.7253189288588,7313,75.16377427881852,5681,58.77067421717462,2286,23.52916592659151,77.33810060160408,79.71976755932093,63.31256206328344,65.0745631599136,77.05826154306844,79.43840940750025,63.21083184722318,64.97437330948202,0.2798390585356429,281.35815182068313,0.101730216060254,100.18985043157612,89.6445,62.73391452112388,93661.64808642684,65545.14582558314,233.58758,142.08278139171313,243451.54684414537,147846.23647408668,271.08264,128.68755750422167,279335.3846475327,131527.28511107736,3255.18256,1458.8621171232944,3370368.6723574093,1493584.1187734886,1393.45409,607.3755430778325,1442330.8815078726,621050.331610251,2252.49648,925.0903892084326,2321481.5642925054,940578.7272416792,0.38088,100000,0,407475,4257.34764029213,0,0.0,0,0.0,19504,203.1532425739988,0,0.0,25301,260.4298356510746,2040569,0,73236,0,0,3630,0,0,38,0.3970285547115796,0,0.0,2,0.020896239721662,0,0.0,0.07313,0.1920027305187985,0.3125940106659374,0.02286,0.3203175842769751,0.6796824157230249,25.266581506801764,4.577400779785035,0.3231825382855131,0.211406442527724,0.2312973068121809,0.2341137123745819,11.286872814151032,5.682194335081932,24.09933767316,13091.025763227815,63.85461855800584,14.064030042251185,20.736361440605016,14.588656395760813,14.465570679388827,0.5576483013553952,0.771856786011657,0.710239651416122,0.5996955859969558,0.1120300751879699,0.7120765832106039,0.8907563025210085,0.8537117903930131,0.7455830388692579,0.1807692307692307,0.5091371732593106,0.7215639810426541,0.6625544267053701,0.5596508244422891,0.0953271028037383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022298351949078,0.0045952525867315,0.0066196925701057,0.0087708600117893,0.0110194238967857,0.013404088450687,0.0153907349611406,0.0174757678204827,0.0196962724344224,0.0218194849741463,0.0242209210512823,0.0262971443827204,0.0284603837216475,0.0304203653739212,0.032619123760793,0.0346081906395643,0.0366727408266379,0.0388637589741461,0.0408042332442744,0.0427196399924998,0.0575519283185563,0.0714338054412796,0.0854099994753685,0.0982204833722471,0.1106576394161815,0.126253543773537,0.1396222410865874,0.1524422059183695,0.1643102176910006,0.1764705882352941,0.1903787103377686,0.2034621255588875,0.2167448543097536,0.2278517027050687,0.2385428131190843,0.2497838568800017,0.2610176684759543,0.2711421785477099,0.2805206310266108,0.2892157424709672,0.2975132906334333,0.305533110837871,0.312339316391209,0.3190578415264502,0.3254459454529979,0.3305714709078336,0.3362849617458924,0.3423291287767673,0.3473787994758896,0.3525493616683847,0.3541644204851752,0.3553920555532592,0.3564285210522603,0.3570467662843008,0.3585264974558871,0.358788232224797,0.3582572298325723,0.3595021620110813,0.3602472772107679,0.3625154351366345,0.3636397812071201,0.364056304520222,0.3650399663441313,0.3653448430896502,0.3652360722216858,0.3653480063629488,0.3665060309675211,0.3702524663535789,0.3722222222222222,0.3749205340114431,0.3752497729336966,0.3773694800381235,0.3796110414052697,0.3784869617950273,0.3805152224824356,0.3839782274287067,0.3806549885757807,0.3757575757575757,0.3794899917740609,0.3846153846153846,0.0,2.2449112932908197,60.01659375540672,218.55479373754247,326.40610317126243,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95658,41382,389.1362980618453,7116,73.22963055886596,5511,57.10970331807063,2242,23.01950699366493,77.27782633283482,79.6876363998812,63.2892740309558,65.0718024984622,77.00121636474637,79.41155842272372,63.18741752942416,64.97306670667494,0.2766099680884508,276.0779771574846,0.1018565015316355,98.73579178726288,90.13928,63.09452944723456,94229.86054485771,65957.66663662609,231.96248,141.7183244788937,241945.62922076567,147611.80248448544,264.98922,125.57571014146644,274617.5646574254,129427.13864029228,3191.07944,1432.6578555900055,3305903.949486713,1468040.1302115412,1376.89302,594.2098618620103,1423818.227435238,605914.4910317868,2214.12434,921.1110773494552,2274404.670806415,929175.7223412537,0.37921,100000,0,409724,4283.175479311714,0,0.0,0,0.0,19409,202.32494929854272,0,0.0,24707,255.82805410943152,2037172,0,73107,0,0,3601,0,0,39,0.4077024399422944,0,0.0,0,0.0,0,0.0,0.07116,0.1876532791856754,0.3150646430578977,0.02242,0.3081962829255248,0.6918037170744752,25.227996829601725,4.54653785651352,0.3302485937216476,0.202322627472328,0.22591181273816,0.2415169660678642,11.172080249513048,5.595872744496704,23.791837679825477,12986.89910264942,62.19910453354581,13.009049059436608,20.68272214667856,13.867356931236737,14.639976396193893,0.5459989112683723,0.7506726457399103,0.7060439560439561,0.576706827309237,0.1269722013523666,0.7057926829268293,0.9055374592833876,0.8672566371681416,0.75,0.1768953068592057,0.4960704929745177,0.6918316831683168,0.6527777777777778,0.5273477812177503,0.1138519924098671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394260584074,0.0043201362972578,0.0066290378251071,0.008841732979664,0.0110687217050714,0.0132027994824828,0.0158694543600203,0.0178638912437312,0.0201407499846566,0.022146874135688,0.0247076923076923,0.0267272017585307,0.028667270332565,0.0306109828496042,0.0325221718616104,0.0345155718290046,0.0365488440534295,0.0385865445520908,0.0406585287169721,0.0425429861422479,0.057174208381231,0.0711151143183317,0.0843419022326723,0.0974595891564236,0.1096313962200436,0.1245382083011358,0.137761116362053,0.1505923968632799,0.1624971924232863,0.1738836337867872,0.1880179762687387,0.2005219331016037,0.2130712124180872,0.2246711462277572,0.2361754830186602,0.2470937641987211,0.2576826871538324,0.2674320445720074,0.2764699205448354,0.2849962215759463,0.2932936985287314,0.3014640535104542,0.3086644735285068,0.3160721779269828,0.3232330598602249,0.3294795548207191,0.3347950285657011,0.3409970958373668,0.3466623418747973,0.3518327651364993,0.3526172286261911,0.3536396774549873,0.3541354446486639,0.3548176611324585,0.3564374160823512,0.3564837598425197,0.3560815755146193,0.3571699826632543,0.3581686995361621,0.3590807074243648,0.3599035636254049,0.3622482454221922,0.3631674246252316,0.3644675067951569,0.3636011991103375,0.3642718751636383,0.3650998622589532,0.367294438974815,0.3708941930887068,0.3727946507693547,0.375854108956602,0.3798066595059076,0.3787347900872778,0.3803253292021689,0.3801849909411652,0.3824311261478975,0.3860059217702976,0.3812681309573145,0.3831644144144144,0.3822273961971284,0.0,1.820455709399587,58.3559208352912,213.4309621027027,319.39934678270527,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95807,41819,392.1529742085651,7180,73.59587504044589,5552,57.25051405429666,2277,23.296836348074773,77.39792083527668,79.70161817456744,63.37134666233783,65.07162560052095,77.11564090097092,79.42341066353515,63.266701391195866,64.97214186513663,0.2822799343057625,278.20751103229213,0.1046452711419618,99.483735384311,90.09682,63.13069403493241,94039.91357625226,65893.61323800184,236.50068,145.09279845788666,246144.16483137972,150735.81101369072,273.26395,129.8085531314676,281330.9987787949,132438.19214303402,3186.0232,1438.0876597063066,3287387.7274103146,1462953.6669620248,1380.45324,605.4317458049625,1421527.7276190675,612587.363976497,2252.54012,940.5840278562962,2307140.709969,942537.7038778848,0.38138,100000,0,409531,4274.541526193284,0,0.0,0,0.0,19855,206.49848132182407,0,0.0,25492,262.1311595186156,2036966,0,72996,0,0,3508,0,0,31,0.3235671715010385,0,0.0,0,0.0,0,0.0,0.0718,0.1882636740259059,0.3171309192200557,0.02277,0.3130457793066949,0.6869542206933051,25.189292946913724,4.616894200937455,0.3207853025936599,0.2109149855907781,0.2262247838616714,0.2420749279538905,11.106156550011873,5.436313773144669,24.127885026086485,13040.60775114396,62.767997094732834,13.7253409345156,20.0986876555814,14.15983586880802,14.78413263582782,0.5527737752161384,0.7608881298035867,0.7029758562605278,0.6019108280254777,0.1264880952380952,0.7049666419570052,0.9159663865546218,0.8341121495327103,0.740983606557377,0.1583011583011583,0.5039257673090649,0.6928746928746928,0.6614929785661493,0.5573080967402734,0.1188940092165898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0046307085896097,0.0069476139763679,0.0090675548064132,0.0116297983083929,0.0138100181148358,0.0160787430457907,0.0179853913327348,0.0201587771908493,0.0222424571060251,0.0244249782285743,0.0266840388206085,0.0287874740583968,0.0309438544496583,0.0332295767970151,0.0352076321060565,0.0372960614117671,0.0393668957368077,0.0414974816968689,0.0435162730669553,0.0580030670686543,0.0712627086732772,0.085284649182597,0.0979233478786604,0.1100920332711344,0.1251784260443871,0.1390179234277229,0.1522509767184389,0.1645439781177878,0.1763872947082738,0.1899499111326547,0.2021702440713172,0.215131514565007,0.2262044075025974,0.2369214185146075,0.2481726765305218,0.2585751095940836,0.2686970017319328,0.2771943751417555,0.2863110429518065,0.2946345975948196,0.3024122858278207,0.3104888321029718,0.3172559960724677,0.3239089828493802,0.3301913492893619,0.3360110941755578,0.3414119858750603,0.3473451327433628,0.353118619508661,0.3548699074509382,0.3552210517641565,0.3554999085576016,0.3560659616522153,0.3572191719839739,0.3568328391967478,0.3564101348254224,0.3574462502254948,0.3577177423489004,0.3580768061244567,0.35970723468143,0.361556290734761,0.3621276416957271,0.3629088456783185,0.3642943597191963,0.3640322115258505,0.3657862938028655,0.3690521628498728,0.3685478442625854,0.3675569615184399,0.3708502397639247,0.3726356630920946,0.3743209560938199,0.3789189189189189,0.3794915902140672,0.382881802924958,0.3833539603960396,0.3825270463359869,0.3883682469680264,0.3795088257866462,0.0,2.728387371942316,58.916802826711766,216.0163814003693,317.04000396834,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95560,41509,389.6504813729594,7136,73.52448723315194,5578,57.858936793637504,2257,23.283800753453328,77.19945181010942,79.66953936933467,63.224607941291474,65.05333018411186,76.92521664160465,79.3934638726533,63.12415970878454,64.95436111749889,0.2742351685047737,276.0754966813721,0.1004482325069346,98.96906661296612,89.42428,62.67872643389358,93579.1963164504,65590.96529289825,234.20412,143.02420742131454,244598.3465885308,149181.94581552382,273.60181,130.8081311395308,282724.33026370866,134134.22467551526,3207.14388,1446.8034298816815,3328257.5554625364,1486126.4858535803,1355.33989,598.0221766221238,1402607.2310590204,610102.2986836785,2231.16152,927.2116245468212,2303329.2381749684,943816.1369070376,0.37946,100000,0,406474,4253.599832565928,0,0.0,0,0.0,19575,204.32189200502305,0,0.0,25483,263.143574717455,2031395,0,72939,0,0,3447,0,0,45,0.4709083298451235,0,0.0,0,0.0,0,0.0,0.07136,0.1880567121699256,0.3162836322869955,0.02257,0.312733084709643,0.687266915290357,25.196730383053414,4.513608697600538,0.3291502330584439,0.2006095374686267,0.2296522050914306,0.2405880243814987,11.082883735884344,5.612112384373575,24.08349679094554,13011.455085348269,63.04097420569939,13.236480513499464,20.5920861024025,14.365844603227597,14.846562986569827,0.5482251703119397,0.775692582663092,0.6851851851851852,0.5964090554254489,0.1251862891207153,0.7141812865497076,0.9257142857142856,0.8755760368663594,0.7622377622377622,0.1845637583892617,0.4942992874109264,0.7074122236671001,0.6262482168330956,0.5487437185929648,0.1082375478927203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020070754477906,0.0044641951259105,0.0066008611585019,0.0090999674638034,0.0113816834303864,0.0138432995575852,0.0159105985610042,0.0179235642754956,0.0204461727384363,0.0225048422303979,0.0246260919552028,0.027125127245432,0.0292887891083602,0.0313589569020651,0.0336371527777777,0.0358255612947302,0.0378329046710362,0.0400124714196632,0.0421748867246497,0.0440542430917309,0.0588266058596487,0.0722254844392249,0.0853103484521995,0.0980960308512543,0.1104675741946393,0.1257725619904801,0.1397419396015275,0.1526624693202433,0.1641225053829096,0.1756317883643402,0.1900709526226551,0.2029496668330692,0.2148428551168905,0.225058411855687,0.2352791850159487,0.2463618387433624,0.2573944962342066,0.2675371281542003,0.2769805050700474,0.2857372623355735,0.2943360326704875,0.3022617427619539,0.3097433341639671,0.3169550588800769,0.3236132774419964,0.33063768223467,0.3368098313689025,0.3414450416863501,0.3477125032492851,0.3521783476613725,0.3527446817142934,0.3536489342597836,0.3537826529458329,0.3533916372971327,0.3544751612132792,0.354397845325125,0.3543244447272958,0.3550491288910907,0.356422870510527,0.3569719538741072,0.3574207683299966,0.3589682302559506,0.3599492224690574,0.360138992305783,0.361565732601622,0.3617279072830238,0.3619398686787236,0.3619748699073487,0.3640039727582292,0.3669860279441118,0.3669858641130871,0.3676126700680272,0.3704845814977973,0.371162364441729,0.372235294117647,0.3763569127997137,0.3761650114591291,0.3795326349717969,0.3852278967600219,0.3946360153256705,0.0,1.9895518713558027,60.65182874583687,217.29323648423036,314.93659209151406,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95686,41417,388.8970173275087,7117,73.32316117300336,5554,57.51102564638504,2266,23.36809982651589,77.33990302576841,79.73254864233854,63.32261558699434,65.08979602212236,77.06864691187764,79.456341901215,63.223894335459605,64.99106078077283,0.2712561138907716,276.20674112354493,0.0987212515347337,98.73524134953016,89.9503,62.988394316823786,94005.70616391112,65828.22389568358,236.22013,144.37848552687828,246328.7732792676,150347.27602758905,270.78175,128.7126732265864,279052.7140856552,131478.93997933692,3211.5482,1443.8522119305203,3328490.771899756,1481145.0895541029,1356.96792,587.5532211531327,1404951.079572769,600892.7085313958,2238.71878,922.7744657255432,2311143.82459294,941304.100113038,0.37848,100000,0,408865,4272.986643814142,0,0.0,0,0.0,19717,205.4950567481136,0,0.0,25301,260.4769767782121,2037103,0,73122,0,0,3484,0,0,52,0.5434441820119975,0,0.0,0,0.0,0,0.0,0.07117,0.1880416402451913,0.3183925811437403,0.02266,0.3117749033204427,0.6882250966795572,25.22514444401915,4.577022565331105,0.325711199135758,0.200576161325171,0.234785740007202,0.2389268995318689,11.337644422528069,5.634325769400902,23.98781800254926,12905.31970039122,62.59434352407257,13.07247777551138,20.381358997712468,14.607083797121026,14.533422953727696,0.5489737126395391,0.7630161579892281,0.710889994472084,0.5812883435582822,0.1168048229088168,0.7127272727272728,0.925414364640884,0.8671328671328671,0.7572815533980582,0.1418181818181818,0.4950945202201484,0.6848404255319149,0.6623188405797101,0.5266331658291458,0.1102661596958174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019446976602856,0.0039734428057371,0.0063215999837647,0.0089993093080892,0.0114293849079243,0.0134062175532889,0.0156358299017409,0.0178104842002122,0.0200359829898593,0.0219554136215685,0.0241016966528269,0.0261245355067851,0.0285253015517188,0.0305402482360817,0.0327271601370598,0.0348018486543491,0.0370167005097177,0.0393078823358452,0.041308214831844,0.0431242963766,0.0570661541193552,0.0712820083331588,0.0846499234174692,0.0975953548061346,0.1090822784810126,0.1245557248032495,0.1374090340101415,0.1500548111410296,0.1619803291293343,0.1737046923744894,0.1875585514768432,0.2005301595888558,0.2121231893514289,0.2236775928801032,0.2348933453672926,0.2449904183789891,0.2552944589498114,0.2656682494317798,0.2752521528006262,0.2843185540678296,0.2927560038869094,0.3008793676037233,0.3075694288317497,0.3144400915309875,0.3214415814653811,0.3271398824558593,0.3334834947568636,0.3382405333876221,0.3436491582753392,0.3483211370300901,0.3491175320560357,0.3498884082329926,0.3510870945440693,0.35234248320593,0.3530882944040016,0.3526490827445631,0.3526625156455472,0.3540026624155669,0.3542318142205362,0.3549067257522693,0.3564018384766907,0.3575206513341653,0.358145684245871,0.3582719597628884,0.3593274387592404,0.3613291470434328,0.3621711373851307,0.3635817497707654,0.3664499717354437,0.3683623471298251,0.3694698354661792,0.3707103591823664,0.371470178548816,0.3705918429929469,0.3747637051039698,0.3758076094759512,0.3798570096363071,0.3781043046357616,0.3778971170152628,0.3857868020304568,0.0,2.0005575385427394,60.90523175979733,208.6076613954836,319.61007692921345,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95789,41113,385.9106995584044,7069,72.62838112935724,5452,56.3843447577488,2188,22.49736399795384,77.331780499572,79.6722979864445,63.32970022966426,65.06256701171452,77.06992268120992,79.40899325909437,63.23411478651139,64.96855547624924,0.2618578183620883,263.3047273501319,0.0955854431528706,94.01153546528462,90.19736,63.11127400118846,94162.54475983672,65885.72174382076,231.13601,140.9646391803964,240782.04177932747,146648.19387257026,264.50894,125.93822282109096,272075.1234484127,128416.98744898528,3109.95188,1391.9629344137477,3219493.0941966195,1426068.1482352908,1336.04254,575.2107679775123,1383545.4697303448,589315.5194820052,2146.83002,884.5328863460045,2210517.637724582,898710.2260395736,0.37697,100000,0,409988,4280.11567090167,0,0.0,0,0.0,19400,201.97517460251177,0,0.0,24656,253.49466013842925,2039798,0,73209,0,0,3600,0,0,45,0.4593429308166908,0,0.0,0,0.0,0,0.0,0.07069,0.1875215534392657,0.3095204413637006,0.02188,0.3158672578261454,0.6841327421738547,25.54700305420566,4.5564244817006125,0.336573734409391,0.2059794570799706,0.231107850330154,0.2263389581804842,10.929783259012854,5.488764273573442,23.12764200171405,12880.612948309725,61.139859949009285,13.296585503235397,20.397871909455265,13.90342873159844,13.541973804720184,0.5612619222303742,0.792520035618878,0.7002724795640327,0.5841269841269842,0.1207455429497568,0.7217125382262997,0.9251336898395722,0.8609756097560975,0.7266187050359713,0.1747967479674796,0.5106177606177607,0.7263017356475301,0.6540350877192982,0.5437881873727087,0.1072874493927125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297037224613,0.0042780098130651,0.0063928886724101,0.0084013978625706,0.0105059750826341,0.0129431053269381,0.0150996105299647,0.01720160071869,0.0191879127394655,0.0213748272508573,0.0233833599868782,0.0257100026695689,0.0278754601353157,0.0299234659717143,0.0321794951183767,0.0345073552975716,0.036299050321565,0.0385409212068411,0.0404335356222462,0.0424718867138692,0.0572147090742132,0.071075175465205,0.084420077155317,0.0965941929992328,0.1089545004320246,0.1236830147206458,0.1370713869309449,0.1499346029923118,0.1620315034576965,0.1732036297018459,0.1867781760254878,0.1997166219607164,0.2114872285593119,0.2230558076969345,0.2342434547195351,0.2451195461898114,0.2556681246094796,0.2651527932426809,0.274093311256776,0.2830892875542377,0.2915351440100824,0.2990437893063381,0.3068776181572906,0.3127914364144181,0.3194420819867324,0.325879421777098,0.3316086193936357,0.3374260505915952,0.3440738867053223,0.3489573697703306,0.3503483404977833,0.3517139829633809,0.3527065687669997,0.352997352085775,0.3531450845036896,0.352787710440294,0.3522604609816496,0.3528753415188123,0.3536612546505049,0.3556287007388061,0.3574595183529323,0.3593790221975802,0.3599638100448166,0.3609208309938237,0.3609100810843519,0.3623005877413938,0.362927500501677,0.3668278193825639,0.3691722169362512,0.3709117048041212,0.3730555683017482,0.3760317290170436,0.3791914159800728,0.3792997069258059,0.3776529932426001,0.3793764988009592,0.382101167315175,0.374948917041275,0.3744419642857143,0.3696343402225755,0.0,2.0224002583437857,57.731887369636816,205.38871013954767,317.4077689568978,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95691,41808,392.29394613913536,7348,75.7019991430751,5716,59.19051948459103,2288,23.565434575874427,77.34192318165195,79.71714050074102,63.32298576779221,65.07487213791451,77.06495958952699,79.43909004212763,63.22165733022504,64.97555731216875,0.2769635921249573,278.05045861339295,0.1013284375671688,99.31482574576478,89.7688,62.86517612516878,93811.12121307124,65696.01752011033,237.10475,144.72465128286927,247255.9383850101,150716.9550553112,271.50554,128.8860901058382,280428.514698352,132110.711819571,3260.19508,1462.6205054152647,3378276.953945512,1499816.0129555953,1391.39535,603.9839217290487,1439495.7415012906,616680.6026514607,2252.70364,929.4608245469508,2322480.2332507763,944258.9927733586,0.38209,100000,0,408040,4264.14187332142,0,0.0,0,0.0,19783,206.1740393558433,0,0.0,25355,261.6128998547408,2036512,0,73040,0,0,3700,0,0,50,0.5225151790659519,0,0.0,0,0.0,0,0.0,0.07348,0.1923107121358842,0.311377245508982,0.02288,0.3202495451000779,0.679750454899922,25.420321801511253,4.560983648716238,0.3252274317704688,0.2136109167249825,0.2286564030790762,0.2325052484254723,11.23914046104263,5.64732034853957,24.18175605338088,13122.848163018947,64.17283558953207,14.14474333639644,20.89747119445682,14.630470049831668,14.500151008847142,0.5526592022393282,0.764946764946765,0.6993006993006993,0.5914307574598316,0.1143717080511663,0.705710102489019,0.9211267605633804,0.8461538461538461,0.7152542372881356,0.1570881226053639,0.5045977011494253,0.7009237875288684,0.6517094017094017,0.5553359683794467,0.1039325842696629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002450310338892,0.0046827013713625,0.0068170059953133,0.0088670851362057,0.0111559700202373,0.0134185823949827,0.0156903125828354,0.0179102039149214,0.0199498951889155,0.0225569298820445,0.0247621195964235,0.0268122118277692,0.0287994733810581,0.0308182127291273,0.0328767406092261,0.0351377901866501,0.0372384503832608,0.0394004816075728,0.0416588673280505,0.0436187062354118,0.0585894248647293,0.072772583060218,0.0863080556284439,0.0988403906052698,0.1107945552389996,0.1260199168192353,0.1394822899855601,0.1524318796736189,0.1648173091313364,0.175966079862602,0.1900418337861733,0.2027770557144095,0.2151993816610239,0.2272030819069299,0.2376570050968175,0.2492493157970549,0.2597054587273762,0.2706524798738952,0.2806245177688013,0.2886829413584136,0.2971515214648657,0.3051787699689859,0.312349012363223,0.3190029508432694,0.3251553134840066,0.3312577833125778,0.3373220729751403,0.3429266366982057,0.3483891058661719,0.3541903578134504,0.3555783617360304,0.3569130500821585,0.3580716284591684,0.3585222502099076,0.3585385438972163,0.3580381220887472,0.3585584158415841,0.3598722970081954,0.3616142575614772,0.3625543643620353,0.3639695517338596,0.3647161641441226,0.3656108597285067,0.3663833805476865,0.3683676917877661,0.3701088093743461,0.3719076729703479,0.3749133312322723,0.3773286467486819,0.3770791882212495,0.3801494713816988,0.3838001917137075,0.3877576910878528,0.3896717190951329,0.3953051643192488,0.3923095069591885,0.391871398240825,0.3919951729686243,0.3966557017543859,0.3986537023186238,0.0,2.06624906504033,60.45857110124104,214.62351394276655,335.381126461193,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95735,41974,393.2417611114013,7112,73.07672220191152,5550,57.37713479918525,2257,23.22034783517,77.32392886815877,79.68859880075334,63.31606620966248,65.0654234994431,77.0462340203004,79.40973856634399,63.21456754877751,64.96604753855091,0.2776948478583705,278.8602344093505,0.101498660884971,99.37596089218914,89.52064,62.74253359480196,93508.78988875542,65537.71723486912,236.00898,144.80940874633134,245913.91862955032,150651.400998936,272.57155,130.1152766584689,281037.6769206664,133083.382508285,3170.91828,1433.1529680009417,3281783.13051653,1466600.2694949007,1320.29888,575.4337276012674,1366912.5293779704,588863.9375776241,2212.99588,917.5552734376604,2279414.884838356,931731.0551345908,0.38316,100000,0,406912,4250.399540397973,0,0.0,0,0.0,19691,205.0556222906983,0,0.0,25423,261.82691805504777,2035498,0,73158,0,0,3635,0,0,48,0.5013840288295817,0,0.0,0,0.0,0,0.0,0.07112,0.1856143647562376,0.3173509561304837,0.02257,0.312926992632284,0.687073007367716,25.21921104836985,4.608382802321723,0.3374774774774774,0.2066666666666666,0.2282882882882883,0.2275675675675675,11.50102956857829,5.947606350389408,24.095566512011544,13146.650324980095,62.9351319639297,13.431351410043678,21.209060423036043,14.29821948759647,13.996500643253505,0.5466666666666666,0.7497820401046208,0.6833956219967966,0.5927387529597474,0.1132224861441013,0.6979241231209735,0.9047619047619048,0.8680851063829788,0.7201365187713311,0.1191335740072202,0.4957861786660245,0.6797468354430379,0.6215253029223093,0.5544147843942505,0.1115618661257606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022283671133529,0.0046031086191688,0.0068199809202914,0.0090735434574976,0.0114334540423973,0.0138391038696537,0.0162816304059702,0.0186185143977053,0.0205400321033851,0.0225762524444808,0.0248010990813648,0.0269207470455968,0.0293210511165028,0.0313439907708788,0.0335675737031648,0.0357028415492593,0.0379615723237868,0.0401162488971923,0.0422195416164053,0.0442890928601939,0.0589567977281743,0.0732437097871004,0.0862398020175751,0.0988317683305117,0.1108357761984098,0.1258634002898274,0.1396089083173296,0.1526954077449717,0.1650466770630834,0.1764075296942669,0.1904413347685683,0.2032397244720309,0.2158192827403276,0.2274153519848688,0.2376145073845578,0.2491224573409073,0.2597527227280842,0.2696644385929377,0.2797116257947321,0.2884319886246359,0.2968105326595893,0.3052664885388834,0.3128098095486564,0.3202516297105538,0.3272864517385799,0.3332715912178015,0.3388276320576023,0.3453035502430188,0.3507842526228316,0.3559317547087398,0.3572528571042607,0.3584223455052303,0.3589863184079602,0.3591227535790435,0.3598783560173521,0.3592085469560679,0.3589625634517766,0.3608077884488883,0.3615928506616904,0.3634087006296508,0.3654098914717038,0.3669251670997044,0.3673881067451145,0.3680666232687602,0.3682494444981161,0.3680530092713844,0.3681651795927705,0.3687460417986067,0.3710134656272147,0.3719004959206527,0.3729077819048929,0.3734430961672101,0.3768860149613288,0.3764083697401701,0.3796913697847209,0.3799735545137637,0.3818933823529412,0.3902780556111222,0.3930682428801719,0.3983083429450211,0.0,2.30634671270748,61.69889967242074,215.6848401909414,309.5004170332854,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95788,41543,390.40380841023926,7259,74.43521109115964,5650,58.33716123105191,2243,22.9360671482858,77.4066300966336,79.7470031295633,63.35719594835807,65.08832752472638,77.13697522922864,79.48040867839056,63.25777264062331,64.99399286712874,0.2696548674049666,266.59445117273606,0.0994233077347601,94.33465759764204,90.58302,63.46513447281143,94566.14607257694,66255.83003383662,236.14522,144.14350435995993,245904.11116214973,149856.88641579312,273.79963,130.08885120385278,282633.6179897273,133285.62518021758,3236.08672,1450.3185650703858,3343070.113166576,1478777.9733060375,1350.18751,581.0808180320795,1395760.4084018874,592834.4761682871,2209.96864,913.701267772463,2262066.8977324925,913827.6295733358,0.37964,100000,0,411741,4298.461185117134,0,0.0,0,0.0,19746,205.4745897189627,0,0.0,25467,262.6320624712908,2035613,0,73067,0,0,3644,0,0,51,0.5324257735833299,0,0.0,0,0.0,0,0.0,0.07259,0.1912074596986619,0.3089957294393167,0.02243,0.3153483499214248,0.6846516500785752,25.37504668658501,4.508845669589234,0.3304424778761062,0.2044247787610619,0.2361061946902654,0.2290265486725663,10.888728154543369,5.439955829407261,23.64732258931789,12980.489105612114,63.41478923829607,13.468547667033578,21.01124445029996,14.79597346356698,14.139023657395544,0.5500884955752212,0.7731601731601732,0.6946973754686663,0.5877061469265368,0.1035548686244204,0.7148231753197893,0.9197707736389684,0.8715596330275229,0.7391304347826086,0.1142857142857142,0.4994214302244851,0.7096774193548387,0.6408106219426974,0.5439613526570048,0.1010486177311725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189798771961,0.0044918983593924,0.0068499406338478,0.0088292370685713,0.011259039269332,0.0133296674202154,0.0154972370057706,0.017577706323687,0.0198291017621325,0.0218694993655082,0.023889805581462,0.026063311271869,0.0279867620457161,0.0300497225625135,0.0320489031832426,0.0342217495017503,0.0362519010521741,0.0381724498999554,0.0399717382043369,0.0422632000916275,0.0567665995345973,0.0712866316648189,0.0844558119057851,0.0978496205831038,0.110133504736415,0.1251849346916346,0.1390608437566249,0.1515805590702718,0.1633214891641858,0.1744215938303342,0.1885328800137717,0.2017473670552107,0.2145069274653626,0.2263668825141684,0.2370375252658405,0.2476238949313446,0.2581522951331578,0.2679039129506188,0.27714833339004,0.2860740655944136,0.2943713932160658,0.3022570804062978,0.309641847202338,0.3167277693911293,0.3233389622538359,0.3289692666148896,0.3347860389976331,0.3405211369798495,0.3461020111963508,0.3504841415569147,0.351209182503608,0.352168163535181,0.353176002595534,0.352792208731893,0.3537622261200464,0.3532943302600545,0.3537371948906033,0.3551245720650625,0.3557654667687856,0.3563441127842273,0.3571348419674583,0.3595064940184079,0.3617785950102386,0.3635531748688762,0.3646765333781093,0.3653291030608795,0.3669007477326358,0.367686712234276,0.3682439537329127,0.3705889342152164,0.3747045991637884,0.3774014289494575,0.3810719216769173,0.3846969696969697,0.3820873289265432,0.3832903679400047,0.3843558282208589,0.3860670548082714,0.3883977900552486,0.3915732508697332,0.0,2.5227062553220607,58.32089458063586,219.45002009708315,325.0931255187099,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95687,41670,391.7878081662086,7137,73.32239489167807,5571,57.63583349880339,2266,23.231995986915678,77.29491858535671,79.69645763526381,63.29396199958445,65.07369611918834,77.0201879890264,79.42209639831682,63.19313056024787,64.97542604283618,0.2747305963303148,274.3612369469872,0.1008314393365807,98.27007635216488,88.89342,62.22672865423413,92900.20587958656,65031.53892820772,234.40503,143.2561260312476,244339.57590895315,149093.53489998763,269.67098,128.74618230357015,278221.64975388505,131715.8720454221,3200.26504,1433.2181870137056,3314126.809284438,1468020.0601075643,1364.44505,587.5374727607172,1410232.7170880055,599044.6711597047,2235.10214,922.3925156851176,2295754.67931903,932156.869112442,0.38121,100000,0,404061,4222.736630890298,0,0.0,0,0.0,19547,203.653578856062,0,0.0,25143,259.0843061230888,2041906,0,73307,0,0,3494,0,0,65,0.6792981282723881,0,0.0,1,0.0104507404349598,0,0.0,0.07137,0.1872196427166129,0.3175003502872355,0.02266,0.314220796578455,0.6857792034215451,25.20164473774295,4.581998946993211,0.3213067671872195,0.2075031412672769,0.2356847962663794,0.235505295279124,11.087830703176689,5.549005402294008,23.98117098791966,13061.379358579235,62.65434575618124,13.537311703823608,20.19059168415564,14.579411234533856,14.347031133668136,0.5444264943457189,0.7664359861591695,0.6949720670391062,0.5696877380045697,0.118140243902439,0.7237325495958854,0.9195710455764076,0.8539823008849557,0.7700348432055749,0.1405622489959839,0.4864608076009501,0.6934865900383141,0.6412556053811659,0.51364522417154,0.1128880526810912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0045562016093843,0.0069161631036408,0.0094352091911951,0.0115944094383989,0.0138819524425917,0.0163271970284501,0.0185836006620216,0.0204505463027376,0.0223931816552105,0.0243316989106128,0.0262576661906865,0.0283082938876312,0.0306809164081582,0.0327934846561174,0.0350365567379186,0.0368697021823381,0.0389327242524916,0.0407481768909879,0.0428279585582956,0.0580972674855853,0.0726564626562532,0.0854330419451994,0.0982312896539388,0.110430030384875,0.1261334659457629,0.1393482645154442,0.1525144007069922,0.1643212053213656,0.1755150214592274,0.189186568852406,0.2024623507010559,0.2148557263693492,0.2251248811306524,0.2362632528265364,0.2477214587093987,0.2575209783967149,0.2674853116628773,0.2774004497648956,0.2864646047637068,0.2946416160867349,0.302598147692812,0.3101402245487706,0.3175774593803249,0.3245583103318296,0.3305920849540038,0.336692487027149,0.3422658090810673,0.3483576831416433,0.3542741754543415,0.3547544339254211,0.3548724440652778,0.3554399469892427,0.3566139249660119,0.3574478848929427,0.3570682878899533,0.3572359222066861,0.3587327215513122,0.3596742391770253,0.3602856732701694,0.3616254950028286,0.3637847305150863,0.3643728112737859,0.364741641337386,0.3651745399815507,0.365666342284527,0.3696177757310614,0.3717044660440887,0.3744032252360575,0.3787799895862538,0.3813453824519341,0.3822914992768761,0.3848642476528799,0.387593927311762,0.3892147587511826,0.3906138046333891,0.3913574591540693,0.3993506493506493,0.4024523160762943,0.4088855421686747,0.0,2.286662495689317,59.93173607666666,208.6283797483088,323.41428017534446,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95720,41553,390.03343083994986,7230,74.36272461345591,5619,58.12787296280819,2262,23.265775177601338,77.3593554540744,79.73153056305583,63.33143217950936,65.08427189193601,77.08078191740199,79.45141550882178,63.22924129468836,64.98400988098733,0.2785735366724111,280.11505423404515,0.102190884821006,100.2620109486827,89.59742,62.76094085161832,93603.65649811953,65567.21777227154,234.28918,143.66720178525952,244200.41788549937,149526.3913343706,273.14748,130.77822097066164,281735.8754701212,133848.5954854582,3240.36012,1467.267741930132,3354019.5988299204,1501645.6142186893,1338.87004,586.440575278551,1384009.569577936,597936.1630574078,2229.14852,932.5360019403632,2295327.831174258,946282.3003802109,0.37903,100000,0,407261,4254.711659005433,0,0.0,0,0.0,19597,204.14751358127876,0,0.0,25462,262.3485165064772,2038762,0,73169,0,0,3462,0,0,38,0.3969912244045132,0,0.0,0,0.0,0,0.0,0.0723,0.1907500725536237,0.3128630705394191,0.02262,0.3214049914168757,0.6785950085831243,24.955828707877693,4.601066080684561,0.3354689446520733,0.2028830752802989,0.2279765082754938,0.2336714717921338,11.049276826035516,5.496663964632259,24.19521672464931,12971.429849857936,63.542620157965416,13.388712117678883,21.26435312582362,14.420157769770428,14.46939714469247,0.5365723438334223,0.7587719298245614,0.6827586206896552,0.5768930523028883,0.0944402132520944,0.6894366197183098,0.8943089430894309,0.8501070663811563,0.7035830618892508,0.1299638989169675,0.4848773517504167,0.6939040207522698,0.6276445698166432,0.5369609856262834,0.0849420849420849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024915934043673,0.0047340517197684,0.0069915877703024,0.0091202697487355,0.0114293849079243,0.0135298848585419,0.0158519802232529,0.01843496723353,0.0203430721105681,0.0223794264888051,0.0245603240527098,0.0267874567323,0.0288695008025021,0.0311250772717906,0.0332270480553921,0.0352705245094998,0.0371980826370986,0.039288899952289,0.0411455896876137,0.0431019217749075,0.0578063653830089,0.0718188097879555,0.0853132768983856,0.0975730299270226,0.1101772664480275,0.1262139003490955,0.1398752042787104,0.1521894196680471,0.1631314048791955,0.1747416540578823,0.1879424599967674,0.2006776578585578,0.2124828651624273,0.2237530367030706,0.2340610680296087,0.2457414718537905,0.2563022863589148,0.2660883848611673,0.2759235090506724,0.2842836190301586,0.2932578808498819,0.300625694403836,0.3081217253491975,0.3154529562489523,0.3226875455207574,0.3282331781112179,0.3347730288690252,0.3413541679921615,0.3464517967717698,0.352132939126762,0.3524541611695969,0.3532601962862531,0.3541695983788804,0.3546726276319584,0.3559196272222716,0.3560384774197495,0.355709364432224,0.3562472341053252,0.3565111991259219,0.3575517628805307,0.3582478576384331,0.3595336592704024,0.3597938144329897,0.3604813315339631,0.3615654064500543,0.3619728265137831,0.3629512893982808,0.3647375931504677,0.3656906429026098,0.3660357770324229,0.368626550298576,0.3685988524853879,0.3690841647480174,0.37170245398773,0.3704508932791379,0.3711266769559539,0.3703817261996014,0.3646464646464646,0.362962962962963,0.367315769377625,0.0,2.261528705676687,62.759812398001074,213.77427480639335,316.36018214053564,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95887,41604,390.1363062771805,7196,73.95163056514438,5642,58.245643309312,2263,23.2982573237248,77.4394230829848,79.71946066247227,63.39129033748679,65.07735577128487,77.16041354458596,79.43870140375563,63.29068004005922,64.97831835984708,0.2790095383988387,280.75925871664253,0.1006102974275648,99.03741143779143,90.87892,63.75463538115901,94777.10221406446,66489.34201837475,238.65756,145.3089109309225,248296.29668255345,150943.52824775258,276.48463,131.49471674180924,284179.7949669924,134010.8598934352,3236.28544,1451.2853616335651,3344220.2175477385,1482759.5630314564,1352.04818,581.404844802609,1399512.2905086195,595859.377935404,2229.81342,918.80615163661,2297819.3915755004,934596.869810452,0.3788,100000,0,413086,4308.050100639294,0,0.0,0,0.0,19896,206.8893593500683,0,0.0,25710,264.0086768800776,2035000,0,73092,0,0,3543,0,0,57,0.5840207744532627,0,0.0,1,0.0104289424009511,0,0.0,0.07196,0.1899683210137275,0.3144802668148971,0.02263,0.3211419550059203,0.6788580449940798,25.233616135598933,4.537034679023734,0.3335696561503013,0.2011697979439914,0.2323644097837646,0.2328961361219425,10.997446233311098,5.487846499608717,24.147070218702428,12950.459291595946,63.409838847729056,13.183173894650924,21.280342899613668,14.555888679226117,14.390433374238354,0.5448422545196738,0.7515418502202643,0.6992561105207227,0.585812356979405,0.1042617960426179,0.6955266955266955,0.9073033707865168,0.8424507658643327,0.7403846153846154,0.0957854406130268,0.4957706766917293,0.6803594351732991,0.6533333333333333,0.5375375375375375,0.1063627730294397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024802591617736,0.0046921237180266,0.0069994623601375,0.0089857750611743,0.0109973878662831,0.0132068944465924,0.0152584670231729,0.0174826601387188,0.0198295942135589,0.0221669837762638,0.0243242689399372,0.0267283659272331,0.0290502908111885,0.0312319855060528,0.03335120311759,0.0350563793317087,0.0370266914959652,0.0387425006994166,0.0408205639300693,0.0429110882251973,0.0581220813875917,0.0718442747134483,0.0856762898040817,0.0980523912016378,0.1099321016895626,0.1254434121621621,0.1385040671072699,0.1507926388711802,0.1625165224065151,0.1744788322417704,0.1882048139667387,0.2010631171805786,0.2133446294546363,0.2247082987370537,0.2355547249461325,0.2470926694329183,0.257554485893836,0.2673060509411077,0.2765740562458235,0.2850742345101894,0.2940374865748172,0.3016252948182051,0.3091942747054026,0.3156394812783638,0.322234365513054,0.3276709493834612,0.3336293924117139,0.33849360685325,0.3435915347200662,0.3490682902401096,0.350527534047478,0.3518785829174743,0.352816990612377,0.3537607677631959,0.3537027677854743,0.353399932583581,0.3533735722319915,0.3547693318010179,0.3547350427350427,0.3544988661321714,0.3554405505240854,0.3558480110825252,0.3565118865272036,0.3567451532836922,0.3583079103509572,0.3593403439187955,0.3590874178590732,0.3620581402649588,0.3648799944020712,0.3688527838319794,0.3724081484176064,0.374481658692185,0.3783800819413804,0.3807114382091383,0.3819272519520091,0.3861124459394522,0.3841235184029944,0.3820666804721474,0.3779151447035684,0.386451116243264,0.0,2.3119820495058634,61.22279804782848,212.85930509101084,322.369892670612,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95736,41462,389.759338179995,7080,72.79393331662071,5514,57.02139216177822,2224,22.91718893624133,77.34647984393533,79.6977261826599,63.33814763576003,65.0749849633882,77.0768673944952,79.42434334117576,63.23910701822558,64.97608646858964,0.2696124494401317,273.3828414841497,0.0990406175344489,98.8984947985614,89.39986,62.608282329691605,93381.65371438122,65396.80196550054,233.94298,142.71242538747038,243768.90615860283,148486.62532800122,264.881,125.95973461923904,272019.7000083563,128168.38159096318,3164.2342,1423.217051223744,3275086.9056572244,1457129.586977227,1327.34776,577.3943986059644,1372290.36099273,588934.7148470426,2196.78048,921.126996022794,2265933.859781065,940403.224149423,0.37872,100000,0,406363,4244.620623380964,0,0.0,0,0.0,19539,203.465780897468,0,0.0,24723,253.62455084816577,2041584,0,73305,0,0,3498,0,0,39,0.4073702682376535,0,0.0,0,0.0,0,0.0,0.0708,0.1869455006337135,0.3141242937853107,0.02224,0.323881198763607,0.676118801236393,25.4832626240725,4.59419261479811,0.3387740297424737,0.2036634022488211,0.2194414218353282,0.2381211461733768,10.98343508208736,5.448281244392673,23.75440750719464,12964.191709673843,62.119766206419285,13.00533067477864,20.98957424227341,13.457539941282077,14.667321348085173,0.5404425099746101,0.7622439893143366,0.686830835117773,0.571900826446281,0.1134805788271134,0.6771771771771772,0.9316239316239316,0.868421052631579,0.6410256410256411,0.1275862068965517,0.4968914395026303,0.6852331606217616,0.6344827586206897,0.551760939167556,0.1094819159335288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0047643665926669,0.0069818654164256,0.0092948131894922,0.0115117863607704,0.0135506597165662,0.0156167176350662,0.0178915890139723,0.0198403369075241,0.02201222446326,0.0241904898574196,0.0261839755301459,0.0282421401106244,0.0303529678342997,0.032437786306797,0.0346046511627907,0.0368683156118318,0.0386762112252308,0.0406016444393626,0.0424738574344873,0.0574080260575437,0.0707176422568525,0.0840449862565307,0.0966982124079915,0.1096444987981276,0.1249881069423741,0.138705332046373,0.1519272928506055,0.1640476546320217,0.1753692152701862,0.1892345785337496,0.2023208279710599,0.2141195904970982,0.2256146869194623,0.2365464937348868,0.2484033427417123,0.258482844749724,0.2679878974658913,0.2766536920824775,0.2851414824149387,0.2934110949107825,0.3009545199326221,0.3087890486227885,0.3154232794712155,0.3218274852024259,0.3277436207045255,0.3334167866307817,0.3389672916242103,0.3448266915732669,0.3500482414982619,0.3507479799819243,0.3518475129897873,0.3528781038374717,0.3532468660432529,0.354195814604233,0.3534748768019159,0.3523676659427067,0.3536160420775805,0.3550518711267846,0.3560719908401317,0.3575748469253597,0.3591836734693877,0.3602079255845276,0.3609576427255985,0.3611151339608979,0.3623002020944332,0.3624315097966092,0.3654817527465589,0.3675096109759108,0.37029222071821,0.3710253825712453,0.373012048192771,0.3755927916534935,0.377950334435304,0.3833190516995144,0.3875959692898272,0.3913981809773393,0.3986887932800655,0.4000564652738566,0.397934868943606,0.0,2.2199015294309774,58.79073315459307,210.82252304629955,318.08897207630315,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95737,41754,392.2307989596499,7221,74.11972382673366,5554,57.40727200559868,2268,23.29297972570689,77.41222784566315,79.76865453774235,63.350809200748486,65.08986237647504,77.13135515987015,79.49003934922243,63.24729515643556,64.9905573629976,0.2808726857929997,278.61518851992173,0.1035140443129307,99.3050134774336,90.2176,63.25736699223411,94234.83083865172,66074.10613684794,236.48884,144.91341800661914,246374.1186792985,150723.57219639551,272.11006,129.69193897610813,280855.18660496984,132825.3401837043,3193.65404,1442.5416072941505,3302564.5257319533,1473644.6048496098,1336.77874,582.5904360255532,1382467.7606359087,594948.792312611,2243.60288,936.0828098589152,2305549.68298568,943372.359105712,0.38193,100000,0,410080,4283.401401756897,0,0.0,0,0.0,19750,205.61538381190132,0,0.0,25404,261.9885728610673,2034956,0,72888,0,0,3531,0,0,47,0.4909282722458402,0,0.0,1,0.0104452823882093,0,0.0,0.07221,0.1890660592255125,0.3140839218944744,0.02268,0.3200158751157561,0.679984124884244,25.598691457794573,4.528575391869628,0.3284119553474973,0.2097587324450846,0.2205617572920417,0.2412675549153763,11.133121805713296,5.54962302028548,24.03497371511516,13053.195481233404,62.58342614460452,13.611407260847972,20.567601472277808,13.623726732979744,14.780690678498992,0.5381706877925819,0.7545064377682403,0.6825657894736842,0.5795918367346938,0.1156716417910447,0.703125,0.9245810055865922,0.8722943722943723,0.7414965986394558,0.1292517006802721,0.4821514712976363,0.6790582403965304,0.618208516886931,0.5284640171858217,0.1118546845124283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0043176405006841,0.0066956133587631,0.0091701194248111,0.011346190994215,0.0136611187458645,0.0159916016062947,0.0180096527657316,0.020142870282368,0.0222415557830092,0.0247499385094695,0.0268644459272186,0.0291967801297406,0.0310807192436819,0.0332366810785153,0.0353517603522771,0.0370393381172791,0.0389599609881615,0.041067975296833,0.0429823007927661,0.057630870100854,0.0719188832848502,0.0853719944609961,0.0985019041807814,0.1106643873200793,0.1264764404555268,0.1401322563182643,0.1532899570852013,0.1654821575521807,0.1764964741491268,0.1903693959847325,0.2035196014728178,0.2164318839948616,0.2277868412696674,0.2395751853606407,0.2508735537831811,0.2615314117107954,0.2712557447958907,0.2797728563316297,0.2879797273279746,0.2960011120893378,0.3037507901945634,0.3106909900204799,0.3170760934691431,0.3231910991266747,0.3295511943920858,0.3348260075550996,0.3399801738599969,0.3456113359277024,0.3510139583882012,0.3513912763214439,0.3523009566160223,0.3527601326662544,0.3543699816926381,0.3545208398064716,0.3546517833996676,0.3551978051434067,0.3567143440948099,0.3583563136213529,0.3595131759221366,0.3603061986557132,0.3613672182821119,0.3620877281098275,0.3631375872605214,0.3648483101534914,0.3642918499622563,0.3645883725562733,0.3675243175400062,0.3694022005746724,0.3680648990898298,0.3707507725868024,0.3725146198830409,0.3764965343415249,0.3778268483971674,0.3798536859876196,0.3826881975777725,0.382227632379793,0.3818842041557393,0.3819233948746211,0.3905165767154973,0.0,2.308790312850113,62.22491525293941,207.74626149079432,313.3025225949053,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95744,41562,390.52055481283423,7052,72.49540441176471,5458,56.577957887700535,2212,22.78993983957219,77.32373385663094,79.69354276948087,63.321321634088775,65.07501307745703,77.05076324321136,79.41776909151862,63.2208396190986,64.97519821981382,0.2729706134195737,275.77367796224905,0.1004820149901775,99.81485764321008,89.4047,62.62564881166099,93378.90625,65409.47611512051,232.65031,142.43346954337784,242527.92864304813,148300.97632079397,264.01108,125.7312678743176,272989.0332553476,129165.79592762036,3149.74164,1426.3840544236573,3267211.8566176468,1467264.9541350815,1296.86226,566.852544131835,1347374.9477774063,584960.703453462,2174.8903,908.8318135329756,2243803.475935829,927324.8306483106,0.38095,100000,0,406385,4244.495738636364,0,0.0,0,0.0,19447,202.6341076203209,0,0.0,24674,254.99247994652407,2042055,0,73295,0,0,3635,0,0,36,0.3760026737967914,0,0.0,0,0.0,0,0.0,0.07052,0.1851161569759811,0.3136698808848553,0.02212,0.3077026844732227,0.6922973155267773,25.40024183663217,4.561194226977481,0.3336386954928545,0.1991572004397215,0.2332356174422865,0.2339684866251374,11.408579111300776,5.864108776459744,23.530590948875687,13030.886218099866,61.6107583135536,12.60753941589544,20.615641982088263,14.292280621189326,14.095296294380566,0.5439721509710517,0.766329346826127,0.6847885777045579,0.5923016496465043,0.105716523101018,0.6740847092605886,0.904320987654321,0.8408602150537634,0.697452229299363,0.1241379310344827,0.4993849938499385,0.7077326343381389,0.6312684365781711,0.5578727841501564,0.1003039513677811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681864235055,0.0042289086981654,0.0066686967113276,0.0090543259557344,0.0113035161972977,0.0133137752243579,0.0156243625831191,0.0176176810025226,0.0196437336387434,0.0219368317561754,0.0240795815813762,0.0262609249350409,0.0281467002726197,0.0302755507924403,0.0325241014842798,0.0344766985072158,0.0367251825384495,0.0389272189656066,0.0408929276965626,0.0427819744725188,0.0578826477343913,0.0714599686028257,0.0842984222893588,0.0973513695460091,0.1094918221219247,0.1252854846895618,0.1388258258895419,0.1518408171951479,0.1644434001559312,0.1748734665866003,0.1888492888137564,0.2013977540731765,0.2142367794343131,0.225981040684897,0.2371863276823727,0.24798174992525,0.2582382656987053,0.2685963414086026,0.2783252628117168,0.2873067283152317,0.2954923717059639,0.3034128097241702,0.3110914035710063,0.3180255196789073,0.3246972512723342,0.3305350098619329,0.3363352831393965,0.3417844084035112,0.3472440229870147,0.3523374238801632,0.3532592572615227,0.3543177869101139,0.3553629163195866,0.3567029431796774,0.3571513706793802,0.3563786513576987,0.3561559182379971,0.3571052977520704,0.3580715152136401,0.3587259598198327,0.3591698751056437,0.3613695423617861,0.3622767104819683,0.3632477671038718,0.3642831215970962,0.3643883097445054,0.3654952260439434,0.3678358114118694,0.3705504489477233,0.3741253116705542,0.3755021007433399,0.3768757422001511,0.38,0.3819659442724458,0.3843088890997059,0.3877403846153846,0.3897940362742084,0.3945647731916633,0.3975670445120265,0.4025720966484801,0.0,1.6081351957669603,62.17892817841624,198.71398164418,315.68556442923136,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95762,41655,390.5306906706209,7218,73.93329295545206,5640,58.1023788141434,2241,22.90052421628621,77.38153749659537,79.72390636075815,63.350937847410606,65.08317255361204,77.10611257455402,79.45109278816432,63.24957877057296,64.98603980151583,0.2754249220413527,272.813572593833,0.101359076837646,97.13275209621486,90.19648,63.15620772858493,94188.17485014931,65951.2204513115,237.37875,144.95021997839882,247036.48628892464,150517.48081535342,271.62089,129.74536103384187,278482.69668553286,131501.4267283908,3251.1318,1455.828262338739,3352560.765230467,1477805.0817012363,1363.60286,589.9323180022794,1402965.2054050667,595055.4478835854,2218.13814,919.5947693885798,2269815.4382740543,921237.6829742836,0.38059,100000,0,409984,4281.280675006788,0,0.0,0,0.0,19847,206.4388797226457,0,0.0,25325,259.36175100770663,2037587,0,73142,0,0,3576,0,0,47,0.4699149975982122,0,0.0,0,0.0,0,0.0,0.07218,0.1896529073280958,0.3104738154613466,0.02241,0.3206026166248183,0.6793973833751817,25.325509455251005,4.526724981560489,0.3209219858156028,0.2108156028368794,0.2276595744680851,0.2406028368794326,10.81809603535732,5.241550070596902,23.78453715530653,13012.086454105924,63.25838403437064,13.852781377235177,20.373541988754496,14.347121036822395,14.684939631558564,0.5382978723404256,0.7577796467619848,0.7005524861878453,0.5669781931464174,0.1024318349299926,0.6956521739130435,0.8977272727272727,0.8571428571428571,0.7064516129032258,0.1220472440944882,0.4884426803642306,0.6989247311827957,0.6501095690284879,0.5225872689938398,0.0979147778785131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129757540156,0.004906035234253,0.0069295077310174,0.0089272112367082,0.0113569351526119,0.0135590459806386,0.0156869540399767,0.0180448672150891,0.0201927302083652,0.0225412352146686,0.024809394982784,0.0269451857934715,0.0291492730675111,0.0314453104889776,0.0333684036803234,0.0350991393116559,0.0371297886872115,0.0393805263867149,0.0415433041418643,0.0434280121610928,0.0574398363632568,0.071686312244407,0.0849312770619502,0.0979013630106035,0.1098828141466087,0.1249960367368076,0.1387043101346983,0.1513108932786153,0.1636802168600121,0.174413120377318,0.1886881822292075,0.2015099727426123,0.2140046522750494,0.2256939890710382,0.2363430356632125,0.2478549206735825,0.2583134464839307,0.2683340827338129,0.2782376956225901,0.286740729723236,0.2946849847349431,0.3028411083830235,0.3096474931664083,0.3164004936082523,0.3224733154424354,0.3287839968466693,0.3347379740662473,0.3407298081327294,0.3460382832128889,0.3519241936335321,0.3529205780549233,0.3532415691672402,0.3540179956562209,0.3543948491644361,0.3550883145097689,0.3552347234355602,0.3553758250106836,0.3567059672367709,0.3574314303734892,0.357879155371665,0.3589051874332603,0.3600688331981723,0.3610207550733458,0.3618611541310349,0.3626193461278811,0.3643238434163701,0.3661806746712407,0.3689745285098076,0.3715009143339429,0.3728340967934674,0.3729193341869398,0.3784043575776994,0.3803595248681954,0.3790849673202614,0.3780905287181438,0.3774668101901686,0.3754995388871811,0.3816778387162299,0.3810975609756097,0.3800383877159309,0.0,3.1053203908737546,58.875694130307245,212.73017585432584,327.0641146782051,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95854,41364,387.9754626828301,7184,73.5493563127256,5600,57.80666430195923,2267,23.2749806998143,77.37299817448195,79.67492037645094,63.35320242165369,65.05731595134246,77.08932598152934,79.38968303941273,63.249029268450855,64.9549626622682,0.2836721929526078,285.2373370382111,0.1041731532028364,102.35328907425868,89.51382,62.69548692025233,93385.58641266928,65407.27243542505,236.57851,144.5241224739464,246199.814300916,150163.77248100904,268.97643,128.17465479893548,276729.78696768003,130706.60541767252,3231.89364,1458.7537960021325,3336145.22085672,1486311.2608781406,1347.07194,585.4834353016254,1389246.1451791266,594716.4388566203,2244.8106,936.7327426585288,2306867.840674359,948101.0257085426,0.37817,100000,0,406881,4244.799382394058,0,0.0,0,0.0,19807,206.0007928724936,0,0.0,25141,258.28864731779584,2038182,0,73240,0,0,3614,0,0,40,0.4173013124126275,0,0.0,1,0.0104325328103156,0,0.0,0.07184,0.1899674749451305,0.3155623608017817,0.02267,0.3269866455110406,0.6730133544889594,25.18646088108552,4.580372768689673,0.3264285714285714,0.2014285714285714,0.2296428571428571,0.2425,10.889318098190008,5.32701743054744,24.14664311151185,12993.029497185038,63.09202000926133,13.322134102995491,20.662440639912823,14.194092688996347,14.913352577356672,0.5414285714285715,0.7553191489361702,0.6974835886214442,0.5777604976671851,0.1192930780559646,0.6920263350402341,0.8861111111111111,0.8616780045351474,0.7062937062937062,0.1607142857142857,0.4927947082447437,0.6940104166666666,0.6452775775054074,0.541,0.1085343228200371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0044898496964537,0.0068774535163263,0.00917896959974,0.0114165463676473,0.0137214983713355,0.0157777256836504,0.0178897631366786,0.019771326977899,0.021793848609491,0.0242303160698734,0.0262242605189448,0.0284569138276553,0.0304471343873517,0.0326381658299227,0.0346152257424924,0.0367791595108527,0.038712618904524,0.0406853582554517,0.0426871137560082,0.05706807920503,0.0710172945294947,0.0845939490445859,0.0973683657824543,0.1098028477546549,0.1250699821479501,0.1381429752241273,0.1509919411426991,0.1635534967124925,0.1751122445699345,0.1886374153832908,0.201960805508415,0.2142686346542616,0.2254378867726487,0.2360489044909817,0.2474687049961227,0.2578643723566893,0.2682633113119422,0.2775255906852175,0.2870218688783751,0.2953128073402987,0.302247191011236,0.3095170420900542,0.3171427543962696,0.3234893947860735,0.3304858055052204,0.3355423875324154,0.3415590699569613,0.3469937918788963,0.3523170232164801,0.352961799328488,0.3542798070296347,0.3543690691369182,0.3544256120527307,0.3556197510274584,0.3557738049566485,0.3548863113466512,0.3552404296971392,0.3556867779204107,0.3561989686291362,0.3563729908367132,0.3573820516377038,0.3585040445424939,0.3594621848739496,0.360599272587133,0.3620112899853648,0.3641287216666189,0.3660025300442758,0.3670022964140611,0.3694483170683131,0.3696177154052946,0.3728245249880249,0.3759188846641318,0.3764118325009604,0.3770304930179538,0.3800071318198026,0.3842828469970665,0.3800371977681339,0.3879164313946923,0.3863813229571984,0.0,2.399478788127259,60.03662333985682,213.3075576080112,322.0685912988146,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95779,41746,392.2884974785705,7333,75.25658025245617,5722,59.02128859144489,2309,23.627308700237005,77.39816222968327,79.7273315811865,63.35848721039546,65.0795283573877,77.1147928681297,79.4470532412419,63.25293528625694,64.9783613735837,0.2833693615535679,280.2783399446014,0.105551924138517,101.16698380400636,89.39502,62.63181564606239,93334.67670366156,65392.0124934092,235.57003,143.8771810811997,245225.41475688823,149491.64334687113,277.47345,132.6550378434987,285520.8866244166,135302.61765902195,3287.26456,1485.4931328444254,3394992.889881916,1513817.0296666524,1369.55432,596.8855395892026,1414895.4259284397,608196.9749505302,2269.28412,954.8653689587552,2326204.9300995,959231.487745976,0.38123,100000,0,406341,4242.485304711889,0,0.0,0,0.0,19663,204.5333528226438,0,0.0,25806,265.19383163323903,2040046,0,73199,0,0,3587,0,0,52,0.5429165057058437,0,0.0,0,0.0,0,0.0,0.07333,0.1923510741547097,0.3148779489976817,0.02309,0.3238651102464332,0.6761348897535668,25.31757049687861,4.534952029673046,0.3287312128626354,0.2081440055924502,0.2364557846906676,0.2266689968542467,11.15498609604427,5.580066319132623,24.694645466601045,13046.011812179397,64.4042844502319,13.834067988894384,21.20929983066188,15.057444897644356,14.303471733031284,0.547885354771059,0.7732997481108312,0.6900584795321637,0.5794530672579453,0.1017733230531997,0.7101865136298422,0.9153005464480874,0.8558758314855875,0.7476340694006309,0.123076923076923,0.4956099815157117,0.7103030303030303,0.6377622377622377,0.527992277992278,0.0964320154291224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.004712583103616,0.0069695248143489,0.0090685677146803,0.0110506785950287,0.0137297209273922,0.0158149487950272,0.0180182018528343,0.0200962412774956,0.022171066093718,0.0245674066940548,0.0265364131717478,0.0285082986485792,0.0307845902078037,0.0328879541424388,0.0348470921165425,0.0369013997082647,0.0388539787220805,0.0408829214557396,0.0427887118608768,0.0578267493061207,0.0720157292559978,0.0853838814858305,0.0981018645029743,0.1109916292407278,0.1269926846801133,0.140270677329713,0.153155262317761,0.164863450426684,0.1758763793121937,0.1897586143754241,0.202682821289485,0.2148748655198269,0.2261959395965821,0.2366410535457133,0.2473577618167531,0.2578637397938696,0.2679439294392944,0.2773049162467656,0.2859041486692407,0.2947633865053384,0.3025437108940997,0.3103011356235272,0.3168509148461667,0.323955979884848,0.3303721044849679,0.3363613613613613,0.3423423423423423,0.3476277490507108,0.3523717711689821,0.3528809080859554,0.3542576193689661,0.3548109480812641,0.3554568858291632,0.3562386711437316,0.3568113233559535,0.357217556647124,0.3578421709704974,0.3585296534721271,0.3598484171388735,0.3613174281641533,0.3629858674753721,0.3655514250309789,0.366965085049239,0.3673027928664135,0.3671140589095467,0.3668686179139289,0.3678337943173246,0.3701239582603823,0.3723741577487118,0.3746579091406677,0.3781925863254191,0.3798861717430734,0.3781333333333333,0.380109248446035,0.3839808726838015,0.3832901356914164,0.382072601906307,0.3876311430149088,0.3907563025210084,0.0,2.6856865677593103,60.836412632853055,221.59664426825944,324.20904983572143,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95877,41612,390.0309771895241,7117,73.11451130093766,5540,57.19828530304453,2167,22.22639423427934,77.3584022892406,79.64132903726849,63.35300198276878,65.04184067170594,77.08379285553178,79.36778243970626,63.2513667063264,64.943425857882,0.2746094337088181,273.54659756223043,0.10163527644238,98.41481382393624,89.24828,62.56586051776566,93085.99559852728,65256.15165030788,235.98957,144.54216147096568,245561.91787394267,150183.7176646535,269.30995,128.39400922381748,277353.9222128352,131201.78771321787,3204.79064,1441.2942498785976,3311670.7448084527,1472489.7937571483,1353.42978,589.4608139933242,1396395.558893165,599655.0074999022,2138.6566,899.3025776587833,2195954.837969481,905885.9057841622,0.38024,100000,0,405674,4231.181618114877,0,0.0,0,0.0,19645,204.2721403464856,0,0.0,25142,258.71689769183433,2039061,0,73208,0,0,3356,0,0,52,0.5423615674249299,0,0.0,0,0.0,0,0.0,0.07117,0.18717126025668,0.3044822256568779,0.02167,0.3140374331550802,0.6859625668449197,25.304344372751267,4.530313721199772,0.3505415162454873,0.1976534296028881,0.2169675090252707,0.2348375451263538,10.902866532033787,5.511448942140307,23.240094997711047,12949.321143461622,62.51891269109806,12.906949795178916,21.89049618891603,13.339703806542172,14.381762900460952,0.5444043321299639,0.7598173515981735,0.6915550978372812,0.569883527454243,0.1199077632590315,0.6927578639356254,0.9174041297935104,0.8212058212058212,0.7178571428571429,0.149812734082397,0.4958063743110472,0.6891534391534392,0.648870636550308,0.5249457700650759,0.1121856866537717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185412426976,0.0044380946590874,0.0067044659248815,0.0090365421519154,0.0114657450701362,0.0136781363539217,0.015801377399242,0.0178081493191901,0.0201443696844082,0.0221327145033173,0.024343054858886,0.0263271206249615,0.0283974200969517,0.0304482893410414,0.0324711459192085,0.0347732716610225,0.0367634889109566,0.0388653393721434,0.0408748208611128,0.0430091865291981,0.057878550951264,0.0712718610919576,0.0846231176827863,0.097020097020097,0.1096165999578681,0.1245312516505223,0.1383110621297699,0.1511658816149028,0.1634894543591495,0.1751942970466848,0.18891269935281,0.200832972739074,0.2130384673929588,0.224072514952382,0.2346207139243847,0.2457328817161453,0.2570083553651707,0.2677906623626404,0.2780967727293359,0.2868029611973138,0.2948441913228689,0.3024363415090807,0.309884354708754,0.3158823105906069,0.3223726627981947,0.3282846985631758,0.3341778184691407,0.3395747503220622,0.3445144527443975,0.349319601821455,0.3493707464621368,0.3509038222712847,0.3515647065469129,0.3519294025590123,0.3526710500812571,0.3533860010451569,0.3532974107100281,0.354144347568111,0.3548481158127647,0.3557031361878848,0.3563617916729295,0.3566599924667446,0.3585377646044859,0.3585091830556365,0.3594787015807892,0.3594006943175589,0.3605321760977559,0.3627660914472855,0.3659540052043041,0.3686138653287142,0.3700718897385411,0.3706010754405579,0.3755386565272496,0.3752319109461967,0.3789544107808468,0.3798720888138047,0.3824588880187941,0.383670963781461,0.3852981969486824,0.3844973138910207,0.0,2.1618731845976344,60.46937827039401,209.29400447377088,318.7369812428227,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95726,41524,389.4239809456156,7126,73.17761109834319,5599,57.85262102250172,2265,23.25387042182897,77.38965647392791,79.75771982440794,63.34469261111818,65.09462174866366,77.10971462515339,79.47685856123226,63.24175200624055,64.99408239090428,0.2799418487745271,280.86126317568016,0.1029406048776309,100.53935775937362,90.2264,63.14343607136073,94254.8523911999,65962.68105985911,234.49865,143.60965810790418,244338.9570231703,149391.9291602116,273.18887,130.58395742337785,281103.8798236634,133217.3542850665,3219.38392,1459.0345585470716,3327705.9941917555,1489039.2613701469,1348.3531,584.2613814117447,1390791.6135637132,592723.7855666622,2234.20098,931.6718953935124,2295457.8066564985,940596.029672325,0.37966,100000,0,410120,4284.311472327267,0,0.0,0,0.0,19624,204.32275452855023,0,0.0,25528,262.4156446524455,2036705,0,73085,0,0,3521,0,0,35,0.3656268934249838,0,0.0,0,0.0,0,0.0,0.07126,0.1876942527524627,0.3178501262980634,0.02265,0.3209234053909794,0.6790765946090206,25.09999091621666,4.560986456508364,0.3295231291302018,0.202000357206644,0.2337917485265226,0.2346847651366315,10.976173155283089,5.451015193605145,24.08625919153039,12980.835329551404,63.16575442465037,13.450106391239157,20.60508705146922,14.75178592071621,14.358775061225776,0.5384890158956956,0.7674624226348364,0.6878048780487804,0.5584415584415584,0.1118721461187214,0.69375,0.9193954659949622,0.8600451467268623,0.689873417721519,0.1232394366197183,0.4847319067083434,0.6852861035422343,0.6333808844507846,0.5166163141993958,0.1087378640776699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195040920508,0.0049471325892359,0.0071342311166137,0.0095190686145031,0.0115352925020598,0.0135534194126512,0.0157726776847707,0.0180582068374148,0.0201467822389402,0.0225399977480474,0.0246727554147831,0.0270006673168728,0.0292376017764618,0.0311084109069939,0.0333058277462609,0.0354086568274835,0.0374650512581547,0.0395289723504694,0.0414089864984253,0.043512237816886,0.058698852542886,0.0726823600833167,0.0857928255920093,0.0978506727825529,0.1100269001529616,0.1255407134773825,0.139427310438482,0.1514696805227422,0.1638705267991584,0.1751691743434105,0.1889825672168922,0.201373864128083,0.2136589502984701,0.225158828224951,0.2359705105633802,0.2471786920648984,0.2580389707440579,0.2680783150133747,0.2781047641728756,0.2870908674753948,0.2948769851827004,0.3025175691951496,0.3091749736895006,0.3158203592814371,0.3231494074217991,0.3290530881845517,0.3349982474588153,0.3407551685507689,0.3461389011216745,0.3511412089290193,0.351362999676759,0.3519864541174527,0.352032909751768,0.3524693231583055,0.3522032187184512,0.3524621531019914,0.3521726063367025,0.3533325685442239,0.3541812113678546,0.355287288784431,0.3562943593574897,0.3571738530119531,0.3589475664040459,0.3578905081795255,0.3569799543872284,0.3581965076882981,0.358169451006062,0.3607042741503669,0.3642521963094944,0.3671346853874155,0.3695752114748069,0.370021528525296,0.3710220415422727,0.3722910805261957,0.373689138576779,0.3759933578460444,0.3812078479460454,0.3800364446244179,0.3749312809235844,0.3766781741465286,0.0,2.436292350963454,63.43324442445689,205.68635792996685,318.53012183355787,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95779,41691,392.9358210046044,7094,73.03271071946878,5523,57.2672506499337,2182,22.604119901022145,77.34687979821054,79.70602283653646,63.33382307926016,65.08117257797471,77.07739563046,79.43041775866028,63.23511218302058,64.98123390784458,0.2694841677505337,275.60507787617894,0.0987108962395737,99.93867013012904,90.7412,63.56201146211222,94740.18312991364,66363.20222816298,240.00158,147.05683942337294,250177.7216300024,153136.88744231296,269.47262,128.8330541636391,278226.30221656105,132222.4624885339,3170.999,1433.6435593812766,3289325.3427160443,1475683.316983254,1350.416,588.4445849271623,1401124.8499149082,605884.034608127,2153.46768,898.7943310281664,2231745.434803036,924884.8904330588,0.38064,100000,0,412460,4306.3719604506205,0,0.0,0,0.0,20081,209.2316687374059,0,0.0,25048,258.4700195241128,2032127,0,72987,0,0,3685,0,0,61,0.6264421219682812,0,0.0,0,0.0,0,0.0,0.07094,0.1863703236654056,0.3075838736960812,0.02182,0.3126009693053311,0.6873990306946688,25.208211852387414,4.557597389776243,0.3324280282455187,0.2060474379866015,0.2317581024805359,0.2297664312873438,10.852869259495977,5.323801958856904,23.376864148356766,12967.773521015935,62.19536349966909,13.233240168404922,20.59760034526027,14.355959494022663,14.008563491981231,0.5498823103385841,0.7829525483304042,0.6835511982570807,0.5734375,0.123719464144996,0.7146932952924394,0.9331395348837208,0.8468085106382979,0.7555555555555555,0.1648351648351648,0.4938121815093424,0.7178841309823678,0.6273792093704246,0.5139896373056995,0.1124497991967871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019050707308175,0.0039548939277167,0.0062233502538071,0.0083844019634744,0.0104785545698705,0.0125353862446793,0.0146396166785605,0.0167211106574111,0.0191061315450512,0.0211430560674939,0.0232322093154392,0.025566519154354,0.0275086896608461,0.0297089878959567,0.0316321791630115,0.0337406189915028,0.0354665009837423,0.0375730038693347,0.039489002536277,0.0414015723434164,0.0558077882497834,0.0697788749189347,0.0835281659869366,0.0968891224382553,0.1096837423991737,0.1249286755848602,0.1379968203497615,0.1502748216582855,0.1622967956649741,0.1737002206465157,0.187653949165851,0.2010827282157676,0.2135314822057098,0.2248806962751029,0.2361555108811477,0.248188185308534,0.2586587568857468,0.268932409947385,0.2783899411037097,0.2871101132862166,0.2958706571302918,0.3030742764859393,0.3110066541949844,0.3176759803333733,0.3244349441927687,0.3308136457089391,0.3362747675015333,0.3414351704567145,0.3464103925708143,0.3509947754498918,0.3519074615208521,0.3523263979730939,0.3535071777749602,0.3537639069498627,0.3538171172108368,0.3537633914202951,0.3534091989729609,0.3549480194762469,0.3565730914070524,0.3572820742065266,0.3589315212494368,0.3599944497304155,0.3610854212207836,0.3606675201581205,0.3619310078081562,0.3650756143667297,0.3661664706051129,0.3686833417978669,0.3710578418894074,0.3758606885508406,0.3780577524370057,0.3780807270783213,0.3787252970705979,0.3811274509803921,0.3805534638554217,0.3792405665992144,0.3822714681440443,0.3819116135662898,0.3817976894899972,0.3868149324861001,0.0,1.4401829016638117,62.70305555672574,204.02805060170985,315.01888375514505,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95747,41695,391.6989566252728,7209,74.05976166355082,5627,58.12192549113811,2312,23.73964719521238,77.36211040614715,79.72328250749305,63.32787542470121,65.0754631751064,77.091039786802,79.45215583532544,63.22852015693327,64.97830094993456,0.2710706193451528,271.1266721676111,0.0993552677679403,97.16222517184292,89.3486,62.587246855800736,93317.38853436662,65367.31892988891,234.11689,142.93995949915038,243895.3178689672,148668.38595376397,270.16111,129.10616824455627,277684.1989827358,131392.12301585934,3238.62276,1459.5580441354234,3347820.109246243,1489861.1117257047,1400.7733,602.4774413645353,1447292.5522470677,613541.2160135931,2278.44742,936.393343339194,2342526.157477519,948050.9893602018,0.38195,100000,0,406130,4241.699478834846,0,0.0,0,0.0,19558,203.60951256958444,0,0.0,25269,259.4232717474177,2039983,0,73241,0,0,3546,0,0,42,0.4386560414425517,0,0.0,1,0.0104441914629178,0,0.0,0.07209,0.1887419819348082,0.3207102233319461,0.02312,0.3231683168316832,0.6768316831683169,25.12185154671289,4.583912553251502,0.3360582903856406,0.198329482850542,0.224098098453883,0.2415141283099342,11.11586600562532,5.5469591814659776,24.355438675238894,13058.82549774986,63.3994955831424,13.136984225421733,21.4702421060038,14.18856335800077,14.603705893716104,0.5519815176826017,0.7795698924731183,0.6948704389212057,0.5860428231562252,0.1346578366445916,0.7192982456140351,0.9234972677595628,0.8519269776876268,0.7185430463576159,0.1893939393939394,0.4952403617325083,0.7093333333333334,0.6394849785407726,0.5443169968717414,0.1214611872146118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019958866498485,0.00451254385787,0.0068013399654857,0.0092260483453061,0.0110574233253649,0.0131278771336619,0.0156629208900128,0.017969451931716,0.0201633930123413,0.0223539772261817,0.0244277627368939,0.0262444275530538,0.0283841896257278,0.0306259145524618,0.0329232547578747,0.0350068235391423,0.037277885929669,0.0393733464750739,0.0411101294111532,0.0428189023945671,0.0577029467333326,0.0718918692722935,0.0853607382550335,0.0982068675395698,0.1100388136522803,0.1253199094735506,0.1391655793527034,0.1512683762867392,0.1636252911386995,0.1746836800343126,0.1885837372105546,0.2010930144472701,0.214089900352465,0.2255852111135419,0.2364484849818946,0.2488060544948862,0.2591835595018708,0.2689394365721617,0.2786926176019973,0.2877305533279872,0.2958558642011046,0.3030029959741597,0.3107119173929519,0.3178606135499274,0.3235672969425947,0.3299903782103471,0.3363318591277547,0.3426475457856797,0.3491946247845637,0.3543765597559848,0.3553344657445604,0.3562759171752517,0.3569606336946257,0.3577978997309572,0.35778329591245,0.3580112530087234,0.3572039942938659,0.3583622233540903,0.3593835429196282,0.3610065137860266,0.3622604753966321,0.3627911567311488,0.3649384370550297,0.3645267324075937,0.3658120069270733,0.3670691318747229,0.368361066788238,0.3707872233400402,0.3722072182666339,0.3759911195686647,0.3788092102275308,0.3809523809523809,0.3803588290840415,0.3781569965870307,0.3802302723953945,0.379175086176156,0.3790310255234602,0.3806943608268112,0.3821049768833288,0.3882854926299457,0.0,2.524192080776916,62.77537087931998,209.4227669869521,319.1209305281513,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95755,41721,391.3947052373245,7338,75.2649992167511,5735,59.25539136337528,2377,24.374706281656312,77.32840490063373,79.68928839920345,63.31625382636724,65.06499865580663,77.03783177974238,79.40032448135216,63.20875382202559,64.96125061673843,0.2905731208913522,288.96391785129083,0.1075000043416523,103.74803906820772,90.49678,63.3384428260917,94508.67317633543,66146.3556222565,236.4739,144.0135780999439,246305.47752075607,149746.2149234441,271.82571,129.5130975391061,280296.266513498,132412.1202795636,3326.38556,1505.079965533866,3438594.7052373243,1536547.1939155806,1387.00041,612.5403454349031,1433632.1758654902,624844.162044642,2341.51242,979.2819706399084,2402961.182183698,986269.1403269408,0.38178,100000,0,411349,4295.84878074252,0,0.0,0,0.0,19774,205.8378152576889,0,0.0,25377,261.52159156179835,2033211,0,73069,0,0,3489,0,0,42,0.4281760743564305,0,0.0,1,0.0104433188867422,0,0.0,0.07338,0.1922049347791922,0.3239302262196784,0.02377,0.3161783769769251,0.6838216230230749,25.359058709352983,4.594877718460563,0.3326939843068875,0.2019180470793374,0.2282476024411508,0.2371403661726242,11.315772474186897,5.7159348475997165,25.391744495617644,13073.62945981557,64.68141004854651,13.545212073618195,21.550780446738464,14.603821022326033,14.981596505863816,0.5429816913687882,0.7668393782383419,0.689203354297694,0.5729564553093965,0.1183823529411764,0.7035991531404375,0.9090909090909092,0.8512396694214877,0.760655737704918,0.1498257839721254,0.4902732746641964,0.7074663402692778,0.6341292134831461,0.5159362549800797,0.1099720410065237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025130974939959,0.0049493904541674,0.007229013523941,0.0093091322994369,0.0115969156273524,0.0138221153846153,0.0160405449502365,0.0184281455466165,0.0205688114661923,0.0226114193297438,0.0247757675157603,0.027075589872066,0.0291341011929247,0.0309725398100653,0.0329398167258317,0.0350926155627222,0.0372548004761658,0.0392433419065792,0.0412769672028931,0.0433600666597229,0.0575985636893143,0.071668392481722,0.0854497409978399,0.0982581180947575,0.1104390161654056,0.1266661733771656,0.1406119094331618,0.1535325797730804,0.1656376842555009,0.1774653626731866,0.1914235856779697,0.2041032743956543,0.2170648909779344,0.2287954851199265,0.2394204940772381,0.2495790126739342,0.2601022504018574,0.2696598853900454,0.2792372255727054,0.2882004952765294,0.2966767021769337,0.3042017790262172,0.3112685568048529,0.3178925629757702,0.32368078453321,0.3298200577592378,0.3353960085352077,0.3413529614368996,0.3476713680874828,0.3526697167640758,0.3540569731335223,0.3543390709478097,0.3543724301640456,0.3554329408697919,0.3562515839532491,0.3565335013910878,0.3554676327581275,0.3554474226804123,0.3568083975095621,0.3581152583717468,0.3592612792206571,0.3598873306488406,0.360744877393349,0.3614249455313223,0.3632077752526473,0.3646867712945738,0.3657501648556438,0.3675518645994505,0.3691814369780472,0.3720280836125738,0.372135571513516,0.3735656608584785,0.3741984156921916,0.3755425264600624,0.3757541478129713,0.3793389408837815,0.386042944785276,0.3861528951164228,0.3918767507002801,0.4028548770816812,0.0,2.4380191086727447,62.2912567691049,218.8926409328381,326.67597291010907,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95739,41563,389.9142460230418,7178,73.83615872319535,5526,57.2389517333584,2287,23.57450986536312,77.31464774318667,79.68132525305256,63.30648041847581,65.05632913027675,77.03173334937232,79.39553047239693,63.20282747040336,64.95397123151548,0.2829143938143517,285.7947806556353,0.1036529480724439,102.35789876126944,91.1955,63.80949953168466,95254.28508758188,66649.43182160317,234.7127,143.7914494339667,244665.51770960636,149697.69233924523,265.56943,126.85467821116276,274651.3542025716,130403.31468589776,3191.7824,1439.8069848829591,3306301.6325635323,1476352.3089323118,1360.472,594.2529196315965,1404841.6946072134,604539.0219455332,2264.97836,942.2316677374976,2335273.3159945267,956616.7713663392,0.37984,100000,0,414525,4329.740231253721,0,0.0,0,0.0,19680,205.04705501415305,0,0.0,24761,255.87273733797093,2029071,0,72781,0,0,3630,0,0,45,0.4700278883213737,0,0.0,0,0.0,0,0.0,0.07178,0.1889743049705139,0.3186124268598495,0.02287,0.3128306878306878,0.6871693121693122,25.66919050410189,4.533083274342345,0.3248280854144046,0.2048498009410061,0.2245747376040535,0.2457473760405356,10.81410520399455,5.330103638693364,24.35225806851132,13035.27426416346,62.34364455560205,13.220316012528698,20.476837944294807,13.67752835537308,14.968962243405478,0.5343829171190735,0.7712014134275619,0.6924791086350975,0.5535858178887993,0.1104565537555228,0.6907600596125186,0.9096385542168676,0.8393234672304439,0.7315175097276264,0.1428571428571428,0.4842256214149139,0.71375,0.6399394856278366,0.5071138211382114,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0050389836866705,0.0074301142938346,0.0095417132405243,0.0117706902690879,0.0138147438770936,0.016057783536181,0.0182863327275326,0.0205466849303866,0.0227980017198312,0.0249556560343678,0.0270864136684737,0.0292024110761381,0.0312615917240242,0.0332676169734003,0.0352727122358681,0.0372683027855441,0.0391304347826087,0.0413209391311581,0.0433188173275269,0.0577794483075445,0.071403152540244,0.0847119792704803,0.0975907288807563,0.1098656599953603,0.125659822495848,0.1389847058448932,0.1511318384122319,0.163091000438273,0.1744650254340967,0.1882771636559719,0.2013241732044558,0.2134530320528185,0.2252446763039356,0.2365466896034581,0.2482231698649609,0.2582081371024577,0.2678962210941906,0.2771413294501769,0.2866398621481907,0.2947691950823475,0.3030089906342675,0.3103370573305818,0.3174574581787177,0.3230570830697357,0.3304697721493989,0.3362559182344247,0.342561346763616,0.3478103182518814,0.352422558633706,0.3532185487565004,0.3537631299990363,0.3544334108035777,0.3546904138898125,0.3553511083322168,0.3559348046287486,0.3552257757320847,0.357131093544137,0.3582984849523548,0.3599054999731534,0.3615581290419612,0.362540878010108,0.3634684022674785,0.3636791712447025,0.3640948910394092,0.363935883691133,0.3660053895992202,0.3672425228184316,0.3705229793977813,0.3723510396296444,0.3736984541993486,0.3770421554448551,0.3831280709590964,0.3874478925428439,0.3890214797136038,0.3897897897897898,0.3940099317194289,0.3902641980445184,0.3941687692738996,0.3977987421383648,0.0,1.8125483776899745,59.651139320966806,215.781942589006,312.408983696817,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95828,41982,393.9349668155445,7130,73.308427599449,5558,57.561464290186585,2251,23.17694202112117,77.3504688262772,79.68300625941211,63.33176974345843,65.06029049856974,77.06843709814572,79.39816327092736,63.22877838525868,64.95830040259041,0.2820317281314715,284.8429884847548,0.1029913581997519,101.99009597933184,88.7711,62.21121816453953,92635.86843093878,64919.666657490015,235.46114,144.46660103577884,245272.75952748675,150317.4783112974,273.74726,130.57305310990233,282934.7372375506,134151.1514809384,3180.579,1438.6901816533878,3294044.705096632,1476368.2438573616,1344.4471,590.6526658691079,1388051.1541511875,601467.7629444554,2221.42106,929.281527984649,2288154.422506992,944232.762881178,0.382,100000,0,403505,4210.721292315398,0,0.0,0,0.0,19688,204.99227783111408,0,0.0,25452,262.9815920190341,2039595,0,73314,0,0,3372,0,0,44,0.4487206244521434,0,0.0,0,0.0,0,0.0,0.0713,0.1866492146596858,0.3157082748948107,0.02251,0.319078070876632,0.680921929123368,25.39152762765208,4.563083440338897,0.3290752069089601,0.2106872975890608,0.224361281036344,0.2358762144656351,11.195839579787304,5.65802160061933,23.98460245895921,13075.311691619068,62.69535664324492,13.730844737316463,20.67619105934921,13.752342670765236,14.535978175814009,0.5453400503778337,0.7702818104184458,0.6971022416621104,0.56214915797915,0.1167048054919908,0.691970802919708,0.9051490514905148,0.8614318706697459,0.7352941176470589,0.1385135135135135,0.4973734479465138,0.7082294264339152,0.6461318051575932,0.5138461538461538,0.1103448275862069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022489211256761,0.0046642263974934,0.0068811529483406,0.0091848450057405,0.0113310413572838,0.01349534537899,0.0158278517158737,0.0180847153010374,0.0202956934276716,0.0222856908871281,0.024445515416876,0.026605740103712,0.0288458572001522,0.0308139115747844,0.0329923062643097,0.0349445144758322,0.0371213846504213,0.0393216471320402,0.0414137845028267,0.0433596718614989,0.0580945327088179,0.0721507208799021,0.0852475164521943,0.0986730823781557,0.1114517488411293,0.1272112437916094,0.1406669140645708,0.1531481698171412,0.1651026486884668,0.1760413206313826,0.1893334481200094,0.2024131295002919,0.2148622956162746,0.2272563315006503,0.2377075333648736,0.2499612136793812,0.2607089031537817,0.270044236332324,0.2800177176085771,0.288511330568476,0.296675695071417,0.3046174003579743,0.3120798219865543,0.3186454899610428,0.3251881298856024,0.331087501079727,0.3361915507082863,0.3415144135759183,0.3467465753424658,0.3523516111544513,0.3531381205027473,0.3538504002208115,0.3549995761873817,0.3562360511289528,0.3566373131882049,0.356633797192271,0.3561841833574231,0.3576511283149399,0.3592949761052397,0.3588232132298927,0.360327536340758,0.3614634533058506,0.3616493632045731,0.3614790534776166,0.3626718867058169,0.3636006392287338,0.3641613539552303,0.3667318858874022,0.3697960618846694,0.3730044699872286,0.3742521806640179,0.376543867120954,0.380976441609297,0.3853371986573085,0.3854225751559841,0.385794037296591,0.3933343572415911,0.3910569105691057,0.4003308519437552,0.4110120201628538,0.0,1.6947213969808326,60.973537673906,211.86796866137135,317.61775821192776,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95712,41660,392.6048980274156,7283,74.68238047475761,5725,59.16708458709461,2299,23.61250417920428,77.30949638025908,79.66958343190741,63.31695901961641,65.05961565455945,77.02319075048122,79.38268452053927,63.21242365446448,64.95759520501387,0.286305629777857,286.89891136814083,0.104535365151932,102.0204495455772,89.85262,62.92899367489092,93878.11350718825,65748.27991776467,237.73416,145.2074436535346,247717.27683049144,151045.27588973753,274.44608,131.339837927166,282236.8041624875,133834.54442537233,3293.98628,1469.4645680640497,3407039.5770645267,1501091.778921921,1376.25472,589.3494218107395,1422941.135907723,600824.6671751469,2263.32516,932.64436353894,2327410.9620528254,943783.417771119,0.38029,100000,0,408421,4267.186977599465,0,0.0,0,0.0,19904,207.28853226345703,0,0.0,25497,261.9211802072885,2033551,0,73014,0,0,3649,0,0,55,0.5746405884319625,0,0.0,0,0.0,0,0.0,0.07283,0.1915117410397328,0.3156666208979816,0.02299,0.3171145316984085,0.6828854683015915,25.325897235783938,4.580286372123885,0.3282096069868995,0.2038427947598253,0.2291703056768559,0.2387772925764192,11.092696815088155,5.534327169496273,24.345224559749028,13004.350306377088,64.19407949274157,13.693324842424106,21.198484530754765,14.667682341948664,14.634587777614032,0.5385152838427948,0.7592116538131962,0.6875997871208089,0.5762195121951219,0.1089978054133138,0.7231222385861561,0.9178470254957508,0.854389721627409,0.7702702702702703,0.128099173553719,0.4811083123425693,0.6904176904176904,0.6324362606232294,0.5196850393700787,0.1048888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774136376986,0.0042676992944611,0.0065538511484457,0.0086332981230194,0.0109795150714176,0.0132319561920465,0.0152372216276818,0.0174446497289903,0.0195310903070193,0.0217273387847837,0.0239444848758187,0.025905352540737,0.0280722680953017,0.0299169945006282,0.0321259875002578,0.0341581856692669,0.0358928183314186,0.0379066800800655,0.0398698720547119,0.0417621567565315,0.0561084366286901,0.0696656967616336,0.0830413895823281,0.095703289307647,0.108429033924937,0.1235113696456901,0.1373350027587963,0.1501293392520678,0.1625129525376291,0.1735936863325398,0.1872306498879503,0.2006301497417685,0.2136956781994493,0.2256422605821119,0.2368780423338693,0.2484310203357505,0.2592120846461531,0.2694894820456773,0.2789614226464405,0.2874734850656423,0.2957580109089646,0.3036679852999696,0.31172492212207,0.3183138139579533,0.3246985315569386,0.3307545190943303,0.3368517266421255,0.3425437590766644,0.3470827820582665,0.352504564578868,0.3539601955118684,0.3544316018868445,0.3550811658495924,0.355743879472693,0.3561821543600143,0.3550346821698272,0.3558833826665393,0.3568305920781299,0.3575797141286421,0.3600007189589474,0.3612567419756346,0.3633791591950587,0.3651426882809861,0.3660527087043758,0.3658056520788278,0.3661875607641169,0.3655588252264728,0.3686515997968512,0.3699110654430783,0.370719622807368,0.3712149018168471,0.3738678385765582,0.3758896797153025,0.379071379071379,0.3844541817489045,0.3879682997118155,0.3864201367308887,0.3877849822212926,0.386299831555306,0.3757836990595611,0.0,2.5192916267647107,59.52712155232856,217.08406628595384,334.20483056581463,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95726,41422,390.2701460418277,7051,72.43591082882394,5517,56.96466999561248,2231,22.877797045734702,77.40440741590693,79.76372797384832,63.3594678928421,65.10016056014442,77.13443488686013,79.49272399558957,63.26027840752664,65.00323428799359,0.2699725290467967,271.0039782587472,0.0991894853154633,96.9262721508244,90.72206,63.47229659104836,94772.64275118567,66306.224631812,235.00483,144.07695835132486,244758.11169379269,149771.82683941798,269.19769,128.13740852997438,276970.46779349394,130620.86732055954,3163.72816,1422.105362948316,3268963.123916177,1449730.1410190144,1337.34386,587.899744603561,1376235.0563065414,593425.6563436761,2194.98672,916.7146960820636,2252685.999623927,922983.9697477858,0.37928,100000,0,412373,4307.847397781167,0,0.0,0,0.0,19646,204.531684181936,0,0.0,25144,258.4146417901093,2036543,0,72999,0,0,3685,0,0,40,0.4074128241021248,0,0.0,0,0.0,0,0.0,0.07051,0.1859048723897911,0.3164090199971635,0.02231,0.3096138266270591,0.6903861733729408,25.107401269992398,4.57890277856702,0.323726663041508,0.2042776871488127,0.2417980786659416,0.2301975711437375,11.046416839523324,5.483965095464407,23.64327331672139,12869.075613721128,62.02949391025253,13.29478942413014,20.06390128139705,14.695394138534173,13.975409066191178,0.5530179445350734,0.7817213842058562,0.6898096304591266,0.5869565217391305,0.1220472440944882,0.7050147492625368,0.9355742296918768,0.837037037037037,0.7300613496932515,0.167910447761194,0.5034847392453737,0.7103896103896103,0.6466328747284577,0.5406746031746031,0.1097804391217564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043780086141373,0.0063809929596039,0.0086223531203981,0.0107266682256768,0.0128664495114006,0.0149910828025477,0.017274981378121,0.0191883276115743,0.0212330519314402,0.0233061052976806,0.0253815442406576,0.0272023521913005,0.0292415128543177,0.0311916382058875,0.033430503008125,0.0354687046932604,0.0375726141078838,0.0394296522624763,0.0414644307884595,0.0564093462237163,0.0694328170782754,0.0824041537735354,0.0954088123048456,0.1078072792048317,0.1228085016389975,0.1364933535608576,0.1486713792956606,0.1607713263180385,0.1720532727116754,0.1861572094726299,0.19889628307093,0.2108074007200583,0.2227313488331401,0.2333821150735577,0.2451854394843796,0.255930463502265,0.2658270549870685,0.2754752506692073,0.2844778238270785,0.2928842241538746,0.3011000046709328,0.3084709328419909,0.3150943621738559,0.3220521768633296,0.3278214900417998,0.3338998300509847,0.3398364070517705,0.3452442491599896,0.34871565310126,0.3501390400193447,0.3504848767890992,0.351084923570193,0.3515938266262801,0.3523114788126797,0.3520064843702208,0.3517824085061945,0.3534571808030956,0.3551854758898406,0.3565733854138798,0.3570651970157087,0.3575815206624668,0.3578889960985023,0.3581779149335838,0.3593659803732922,0.3608753558091557,0.3619506081408266,0.3639823843976093,0.3661451924767094,0.3691659378230102,0.3719298245614035,0.3743674426037394,0.3789845029608164,0.380847173548682,0.3796957175056348,0.3816568047337278,0.3794271635355713,0.3843025620170801,0.3820067264573991,0.3843700159489633,0.0,2.59282039389722,59.451472351894616,211.34262073235823,311.33056377403614,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95744,41544,390.3952205882353,7202,74.10386029411765,5619,58.06107954545455,2315,23.782169117647054,77.33232137485312,79.70035451790459,63.31916690730778,65.07211911308818,77.04375157316424,79.40995325550202,63.21314970912408,64.96806517940065,0.2885698016888796,290.40126240256825,0.1060171981837072,104.05393368752414,89.04698,62.445186723596855,93005.05514705884,65220.78243601358,234.92461,143.5074467244159,244750.91911764708,149271.37696549747,268.63823,128.13195065185428,276970.0451203208,130972.6672221372,3238.10288,1461.993273890737,3348385.611631016,1493397.576339758,1362.33584,593.6247100352359,1407364.0750334226,604483.2410960709,2285.85782,949.8533238907896,2350929.624832888,961107.5698171732,0.38115,100000,0,404759,4227.502506684492,0,0.0,0,0.0,19638,204.46189839572196,0,0.0,25150,258.9822860962567,2041853,0,73244,0,0,3493,0,0,36,0.3760026737967914,0,0.0,1,0.0104445187165775,0,0.0,0.07202,0.1889544798635707,0.3214384893085254,0.02315,0.3205094189440169,0.679490581055983,25.245220689330957,4.564364804605584,0.3212315358604733,0.2046627513792489,0.2361630183306638,0.2379426944296138,11.152096160574898,5.572819696644278,24.566344276721217,13037.945764453809,63.26236123757064,13.37773643550134,20.35953178647324,14.86085830104232,14.664234714553755,0.5445808862786973,0.7643478260869565,0.6930747922437673,0.5772418990203466,0.1226626776364996,0.6935832732516222,0.9415204678362572,0.8373626373626374,0.697452229299363,0.144927536231884,0.4957466918714556,0.6893564356435643,0.6444444444444445,0.5399802566633761,0.1168708765315739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046049762143849,0.0066607099342051,0.0087913651516383,0.0109668755595344,0.0130703639938468,0.0153075793424165,0.0174274367272764,0.0195286539542968,0.021590909090909,0.0239376697934286,0.0262514886452301,0.0284121875224942,0.0304347378286797,0.0324274689447402,0.0345836218747093,0.036635119183217,0.0386877898471785,0.0405100651611361,0.0426604453517195,0.0570187800778762,0.0712013727582815,0.0845473710707655,0.0976604805215288,0.110037958667229,0.1251414730117092,0.1378746883123773,0.1510590739755189,0.1629501473792131,0.1738561671009318,0.1878783309278128,0.2019997619331032,0.2144170410905253,0.2269430618607449,0.2377944089808496,0.2489727203251852,0.2600629562654879,0.2694567639973885,0.278628597377533,0.2872022274930391,0.2952522083424986,0.3033112117700762,0.3109061634267042,0.3179823509663805,0.3244005298914695,0.331092913696569,0.3370776667418038,0.3432727550397068,0.3486554785200544,0.3537356587407417,0.3546817942948001,0.3547107438016529,0.3557219191022008,0.3568587750379637,0.3570525125366427,0.357029991562476,0.356330420969023,0.3566246030832003,0.357884473940783,0.3585243553008596,0.3600775777660616,0.3618044515103338,0.3627515011060782,0.364028971163795,0.3650582282158681,0.3669760855884204,0.3673013600572655,0.3685997081403464,0.371324440041046,0.373293172690763,0.3758959750045947,0.3769599655153833,0.378279790093434,0.3791743970315399,0.3812416935636985,0.3839285714285714,0.3921177733476461,0.3949767065019242,0.3887969094922737,0.388221619527315,0.0,2.4085274044079545,60.9613927024632,209.00405375594252,326.40024322670325,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95724,41733,391.4796707199866,7090,72.75082528937361,5529,57.164347499059794,2241,23.01408215285613,77.41699606751023,79.77154728925119,63.36600846061516,65.10116089334235,77.13402197563872,79.48833395268484,63.26237745207084,65.00004610491698,0.2829740918715089,283.21333656634806,0.1036310085443261,101.11478842537736,89.6038,62.793298105542256,93606.41009569178,65598.28058328346,236.11361,144.1776464667039,246027.73599097403,149989.73971081688,270.80137,129.1617917214031,279488.6862228908,132297.08704871632,3191.87448,1437.8592923184576,3302304.5004387614,1470354.42343639,1344.9796,592.3224222411533,1386084.1063892024,600536.796112912,2218.09604,924.177386571224,2279986.6073294054,934353.9829182712,0.38111,100000,0,407290,4254.836822531444,0,0.0,0,0.0,19686,205.0165057874723,0,0.0,25197,259.8094521750031,2040097,0,73156,0,0,3686,0,0,51,0.5327817475241319,0,0.0,0,0.0,0,0.0,0.0709,0.1860355278003726,0.3160789844851904,0.02241,0.3127433865986303,0.6872566134013697,25.286899466044478,4.609330475968188,0.3266413456321215,0.1989509857117019,0.235485621269669,0.2389220473865075,11.3545163386095,5.66254816785851,23.735978769821365,13039.130029018266,61.75623053799097,12.72107229833903,20.18287936221141,14.38128388724368,14.470994990196852,0.5451257008500633,0.76,0.6971207087486158,0.5921658986175116,0.1120363361090083,0.7170513775130305,0.9202279202279202,0.8705882352941177,0.7835051546391752,0.1521739130434782,0.4899665551839465,0.684913217623498,0.6437364228819696,0.5370919881305638,0.1014354066985645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019534808396931,0.0042751927382508,0.0066232554365465,0.0088648341270727,0.0110216365706848,0.0134062175532889,0.0156562155991356,0.0181567666870789,0.0204079547080344,0.02274261862378,0.0247266541650014,0.0268583802867493,0.0290507617344106,0.0312551491184709,0.0332693736073285,0.0352371012575821,0.0373334437668885,0.0395258146819058,0.0417476434458174,0.0435552592376527,0.0584513218894875,0.0728029882916723,0.0855539236256819,0.098094276519215,0.1098466471196236,0.1247369144694397,0.1383761880515953,0.1507977902434351,0.1635631336602459,0.174620367192862,0.1885788742556238,0.2021055592824219,0.2146739130434782,0.2262349522623495,0.2367677921963761,0.2473886872621049,0.25868123293016,0.2686241667322414,0.2781778387634524,0.286819753199478,0.2951706910907577,0.3033090598810094,0.3105164829967365,0.3174399808417649,0.3239149431983688,0.3301798472530179,0.3359429714857428,0.3414171986672432,0.3468714418797226,0.3522854692962205,0.3525705746940754,0.3534073554298922,0.3539584772160284,0.3553191489361702,0.3555965541354838,0.3554192856047831,0.3564531957326917,0.3573408110723012,0.3583885059040338,0.3593220943080158,0.3615034893075642,0.3630910095508722,0.3641279289097539,0.3644442459697227,0.3645567793756914,0.3669719982254234,0.3690829246036272,0.3706148623161071,0.3728617092275809,0.3745881792561426,0.3750227148827912,0.377997554102196,0.3802116135533442,0.3812442537542139,0.3817052512704686,0.3831245568423541,0.3848271642704191,0.3869215291750503,0.3844686648501362,0.3813303099017385,0.0,2.220406317257196,58.88442182256223,201.8464861128299,325.1233058044026,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95702,41527,390.5978976405927,7313,75.4007230778876,5688,58.90159035338864,2289,23.56272596183988,77.3508434030137,79.74282075947853,63.31502979323547,65.08359818423399,77.07340905855028,79.4629926793311,63.21460821402248,64.9850317999691,0.2774343444634155,279.8280801474391,0.1004215792129841,98.56638426489894,90.08208,63.10122367539636,94127.68803159808,65935.11491441805,237.17229,144.2274871395951,247277.99836994003,150159.56384575614,269.95477,128.05960143641542,279286.75471776974,131692.6358805471,3276.29684,1461.9251388549642,3393534.889552987,1497711.138186302,1368.25051,582.7710842176739,1415373.8793337652,594865.214808776,2264.96546,928.3891384176676,2332767.005914192,940721.380822038,0.37918,100000,0,409464,4278.53127416355,0,0.0,0,0.0,19780,206.1189943783829,0,0.0,25199,260.4438778708909,2035971,0,73054,0,0,3523,0,0,41,0.4284131993061796,0,0.0,1,0.0104491024221019,0,0.0,0.07313,0.192863547655467,0.3130042390263913,0.02289,0.3153435014991526,0.6846564985008473,25.42288506865145,4.609567320699118,0.3238396624472573,0.2041139240506329,0.2329465541490858,0.2390998593530239,11.067752819818567,5.434633061405997,24.07020093541257,12995.510302393554,63.62611615125286,13.562012522710292,20.663988509795963,14.578829138703046,14.821285980043555,0.5453586497890295,0.788975021533161,0.6845819761129207,0.5894339622641509,0.1058823529411764,0.7085137085137085,0.9251336898395722,0.8530701754385965,0.7414965986394558,0.1106870229007633,0.4927940492794049,0.7242693773824651,0.6291486291486291,0.5460717749757517,0.104735883424408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717120658042,0.0048270476924481,0.0070247388563481,0.0093605171152126,0.0113939245966347,0.0136509036083209,0.0155158167481051,0.0178115489102681,0.0197788936500956,0.0219680055713729,0.0244180084093939,0.0266839218586306,0.0287489328437271,0.0306520910392861,0.0326539037102017,0.0346937931604846,0.0366241543291097,0.0388615557077909,0.0407135798616528,0.0424150188152147,0.0563929015343799,0.0704181108051224,0.0836596093085748,0.0965776987575352,0.1090680844779205,0.1241668253665968,0.1375587801331111,0.150208193561441,0.1618209803963486,0.1731786622597572,0.1872231264214191,0.200653870719799,0.2140066812478917,0.2254601562670985,0.2362835755173932,0.247189267102783,0.2575887823339622,0.2678585501502989,0.2767813532946375,0.2856585992226821,0.293883317507006,0.3022986217637209,0.3104678168546781,0.3169962086672745,0.3232776440261666,0.3305957357601766,0.3363746730246936,0.3416701668639505,0.3476926662523306,0.3525503869825924,0.3529610053395178,0.3532401349769299,0.3542685591058366,0.3549837368991688,0.3560051657339647,0.3559555514739645,0.3552758647985435,0.3559644774208375,0.357442079165598,0.3588360336542756,0.3602408734476419,0.3611994547932758,0.3635393564045696,0.3639918661035508,0.365457693972774,0.3667092668422837,0.3678167452964247,0.3690506090669346,0.3721183199410505,0.3733728981206726,0.3753632401017072,0.3761170212765957,0.3776921619402513,0.3787576687116564,0.3805452645578037,0.3789410348977136,0.3841397433915597,0.3904511430305482,0.386326194398682,0.3806350450803606,0.0,1.9918495435995331,61.59224002072704,206.9978812472708,333.60908895919863,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95733,41607,391.2130613268152,7095,73.07824887969666,5500,56.95005901831134,2124,21.915118088851283,77.26691653433518,79.6268309087687,63.2951211478972,65.03931005506519,76.99952896309684,79.35648881827109,63.19837560057854,64.94323930206546,0.2673875712383449,270.34209049760705,0.0967455473186618,96.07075299972225,89.15544,62.5030316498906,93129.265770424,65288.90941461209,235.74331,144.6412211704594,245777.98669215423,150615.3062898472,273.19677,130.7711598862344,281662.947990766,133773.24439420615,3155.61028,1416.3559109940818,3270235.5927423146,1453459.3828607502,1327.67913,574.2408889550695,1375052.1345826413,588031.7330022769,2099.56,868.002902645766,2168485.308096477,886830.295421578,0.37889,100000,0,405252,4233.148444110181,0,0.0,0,0.0,19687,205.1434719480221,0,0.0,25457,262.3442282180648,2035003,0,73078,0,0,3555,0,0,45,0.4596116281741927,0,0.0,0,0.0,0,0.0,0.07095,0.1872575153738552,0.2993657505285412,0.02124,0.3186622073578595,0.6813377926421404,25.4003744819126,4.507302531355103,0.3383636363636363,0.2101818181818182,0.2172727272727272,0.2341818181818181,11.03510654159696,5.52785720068903,22.672631069812255,12928.81160983897,61.98561228992955,13.524810865189,20.97463804534109,13.403025479515383,14.08313789988406,0.5576363636363636,0.777681660899654,0.6974744760881246,0.606694560669456,0.1125776397515528,0.7297698589458055,0.9102902374670184,0.8869936034115139,0.75,0.1234567901234567,0.5018059234288467,0.712998712998713,0.6336206896551724,0.5676251331203408,0.1100478468899521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674836932301,0.0043394944691723,0.0064942971952753,0.0086752471023252,0.0106889327339666,0.0127987130013338,0.0150772210612161,0.0171190575841406,0.019392167486174,0.0215669014084507,0.023525673223786,0.0258613609297359,0.0279291693231598,0.0301067073170731,0.0321991581379993,0.0343490934650927,0.0367835136954383,0.0388234683820096,0.0407792018793983,0.0424789272429853,0.0572302680352089,0.0713612861359402,0.0840503672612801,0.0967310909339589,0.1087256960195803,0.1247354609328705,0.1383728583257255,0.1511437212472312,0.1635624933176521,0.1748202211012128,0.1887099555900487,0.2011592632719393,0.2125326655052264,0.2235787491240364,0.2339525352019567,0.2452608213096559,0.2554197739291823,0.2653357818009756,0.2744146948234144,0.2831873624358034,0.2913705701256915,0.2989793290727345,0.3063203893843038,0.313160514856711,0.3205165620895958,0.3275385564466379,0.3333625855627711,0.3398327980832951,0.3458408503900216,0.3510174899707397,0.3520065985180377,0.3525972410361319,0.3530419031176146,0.353978706738998,0.3547299816557546,0.3543336153195416,0.3546749423092226,0.3556593805718814,0.3570323778098577,0.3585881254600621,0.3594394530146352,0.3608946322067594,0.3616409996408729,0.3611918768454031,0.3622614943923872,0.3636411470665614,0.3639925104421719,0.3668004075913896,0.3692181305139836,0.3705009727626459,0.3722590515043345,0.3750675748729592,0.380219639892734,0.3827511924911524,0.3867996201329535,0.3894322519083969,0.3973469072960049,0.394570320473566,0.3910505836575875,0.3918971562134787,0.0,1.9977057754164824,59.63064513116855,207.3403662130884,318.3942523647473,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95713,41220,388.7664162652931,7178,73.97114289594936,5553,57.54704167667924,2194,22.640602634960768,77.288290147924,79.65662630344542,63.294707477804174,65.0435067523578,77.01773945803929,79.38186828998742,63.19513388836128,64.9437084833784,0.2705506898847147,274.75801345799766,0.0995735894428904,99.7982689793986,89.80004,62.94767201558261,93822.1976116097,65767.10793265555,235.19581,143.7897300594382,245286.76355354028,149786.59122526535,268.25379,128.09075243542836,276668.1955429252,131140.70051105047,3174.42672,1438.095309206573,3293136.3137713787,1479034.351871295,1302.83809,569.2059661732231,1350233.082235433,583744.7639245926,2156.3322,904.6813634977711,2227782.5582731706,925500.2227968331,0.37649,100000,0,408182,4264.64534598226,0,0.0,0,0.0,19677,205.10275511163584,0,0.0,25012,257.71838726191845,2032688,0,72989,0,0,3578,0,0,43,0.4492597661759636,0,0.0,0,0.0,0,0.0,0.07178,0.1906557943106058,0.3056561716355531,0.02194,0.3195698353690919,0.6804301646309081,25.324647693734256,4.402479709119169,0.3351341617143886,0.2047541869259859,0.2326670268323429,0.2274446245272825,10.94826810126034,5.663757763983395,23.593153220570795,12907.185387444752,62.647352624669296,13.375688315886135,21.003182408625783,14.347164776654608,13.921317123502751,0.5515937331172339,0.7748460861917327,0.6980118216012896,0.5735294117647058,0.11243072050673,0.7108603667136812,0.9162011173184358,0.8747346072186837,0.7180327868852459,0.1725352112676056,0.4969770253929867,0.7098844672657253,0.6381294964028777,0.5288753799392097,0.0949948927477017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0041666244259486,0.0063116450866582,0.008634876775229,0.0109124562688145,0.0129825168772719,0.0151505882832731,0.0171693972337059,0.0193909781353177,0.021665046308141,0.0237255826347182,0.0255486440434398,0.0275133145524459,0.0296492348252353,0.031520752537338,0.0332975073374395,0.0352853474695601,0.0371508032045162,0.039033573241253,0.0411751219308849,0.0563933330548477,0.070090767281902,0.0837128764823171,0.0964612292572053,0.1082963901203293,0.1238341255809521,0.138042705004194,0.1504026931435633,0.161746624041741,0.1735778555629523,0.1879036866906048,0.2018329740328678,0.2135568116226135,0.2248864071823507,0.2356815578465063,0.2464938753772412,0.2567256300735738,0.2666178045892766,0.2754568002366487,0.2845115718141618,0.2924483426728388,0.2999225642951004,0.3070584743247254,0.3147587102358797,0.322108060014382,0.3280809380101914,0.3336433913644648,0.3391226613881616,0.3445733309058753,0.3490667267211573,0.3500763090720006,0.3504780061892131,0.3515323094344964,0.3529292196007259,0.3535235876528829,0.3529520323577811,0.3526953149831542,0.3540839361334014,0.3557660951204023,0.3569058593539824,0.3577601626781646,0.3591086771037958,0.360022738278207,0.3613831432221052,0.3634330511735282,0.3641314260402824,0.3650992923989957,0.3670902039915503,0.3697935020085982,0.3719733535442179,0.373066507550374,0.3761777301927195,0.3755533071961553,0.3778372181887657,0.3757598428878705,0.3748231966053748,0.3732383694499167,0.3775817124523761,0.3818770226537217,0.3787537537537537,0.0,1.822700195726888,63.1856606186909,206.3421945089813,314.23488278485075,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95831,41750,390.7399484509188,7311,75.09052394319166,5687,58.78056161367407,2314,23.72927340839603,77.36488025655099,79.67890124604834,63.35773544642036,65.07073333181214,77.08033336490482,79.39440501578902,63.25220238035797,64.96757444750266,0.2845468916461726,284.4962302593217,0.1055330660623852,103.1588843094795,90.32474,63.25443256657384,94254.1974935042,66006.23239512667,236.79816,144.5061883584534,246565.95464933055,150258.9437222333,275.40106,131.64321748018563,284398.0966493097,134989.68261125698,3254.15404,1470.919230090931,3365804.5517629995,1504992.486868477,1381.5042,600.6493956003771,1428960.1068547757,614135.2543544128,2272.82948,953.3562435024648,2334092.7257359307,963890.4662390328,0.38109,100000,0,410567,4284.28170425019,0,0.0,0,0.0,19720,205.204996295562,0,0.0,25592,263.9438177625194,2037054,0,73142,0,0,3580,0,0,60,0.6261022007492356,0,0.0,0,0.0,0,0.0,0.07311,0.1918444461938125,0.3165093694433046,0.02314,0.321345105167489,0.6786548948325111,25.254930098617464,4.59641662813636,0.3363812203270617,0.2055565324424125,0.2263056092843327,0.231756637946193,11.138292252186488,5.638913378320522,24.79388678033709,13012.98520729634,64.15189782092322,13.605478980876294,21.59850791385148,14.458765453903766,14.489145472291664,0.5415860735009671,0.7502138579982891,0.6759017250392054,0.5765345765345765,0.1274658573596358,0.690677966101695,0.9166666666666666,0.8299180327868853,0.7114093959731543,0.1148148148148148,0.4921564036525404,0.6761433868974042,0.6231578947368421,0.5358948432760364,0.1307251908396946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0047447179528772,0.0069506453445896,0.0091821395197659,0.0114499547492907,0.0137763206125524,0.0159330465452914,0.0180390795679604,0.0201688747137716,0.0222938737908797,0.0246177181978436,0.0268875137259731,0.0289622709380363,0.0312779819063204,0.0333457026820871,0.035614741406008,0.0377426795337243,0.040013676347172,0.0421551017017786,0.0441431974947721,0.0589394855962786,0.0728926051737653,0.0863571608145478,0.0994413642473118,0.1113638517676049,0.1268597615703832,0.1406097716004915,0.1523472381681337,0.1642182749239878,0.1750856898029134,0.1881112485878745,0.20135788187725,0.2143423697506383,0.2253667274693347,0.2365031214279433,0.247552896154314,0.2588800249576611,0.2686743198616134,0.278006230529595,0.2864103766570968,0.2951853863129556,0.302855807977574,0.3108005863715893,0.317403324835733,0.3238345115759298,0.3292834699032715,0.3349727186264203,0.3404783106475003,0.3459850044675809,0.3503957783641161,0.3506978122642526,0.3511231699422921,0.3523176377597109,0.3534352913914957,0.3539495848426576,0.353694142233696,0.352372471695713,0.3530333778811728,0.354871407219063,0.3560451003626701,0.3566909056568136,0.3569848324796205,0.3581906832429238,0.3597431854021176,0.360091798526392,0.3623332721888839,0.3641119464852348,0.3661228103459179,0.3693569484215364,0.3696610305312925,0.370489839177918,0.3734194242668819,0.372192718664022,0.37678916827853,0.3808292636215646,0.3814383479409293,0.3951537744641193,0.3992568125516102,0.4068831529281154,0.4126119112495134,0.0,2.2341222719394414,62.2940847432251,217.11261147264864,322.5767158432278,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95643,41405,389.9292159384377,7154,73.6802484238261,5617,58.19558148531518,2308,23.796827786664995,77.2563444549925,79.66661453993962,63.27473565930678,65.05561687503216,76.97250615793045,79.38108718336754,63.17243487681616,64.95522234837493,0.2838382970620472,285.52735657207506,0.102300782490623,100.39452665722592,89.38358,62.62952054497612,93455.4332256412,65482.59730976247,235.10619,143.8783457754161,245319.70975398092,149935.9971722093,269.88329,128.83558001369602,278769.925661052,132047.98936589525,3237.97724,1448.6113674838612,3356615.999079912,1485735.8797652326,1325.38008,576.757233895725,1373983.2815783694,591257.0537265926,2276.71634,937.0773310185886,2349406.668548665,952798.219022155,0.37958,100000,0,406289,4247.974237529144,0,0.0,0,0.0,19707,205.5142561400207,0,0.0,25206,260.2176845142875,2033536,0,73070,0,0,3485,0,0,44,0.4495885741768869,0,0.0,1,0.0104555482366717,0,0.0,0.07154,0.1884714684651456,0.3226167179200447,0.02308,0.3141721854304636,0.6858278145695365,25.226565985825275,4.665267906141351,0.3257966886238205,0.2104326152750578,0.2255652483532134,0.2382054477479081,11.135003755100913,5.351007274976595,24.543841851044192,13000.153383351304,63.36042334623591,14.033726487571483,20.60759476941577,13.978479622595936,14.740622466652724,0.5426384190849208,0.7715736040609137,0.694535519125683,0.5730071033938438,0.1038863976083707,0.7167034584253127,0.9065934065934066,0.8605150214592274,0.7509157509157509,0.1484375,0.4870831376232973,0.7114914425427873,0.6378299120234604,0.5241448692152918,0.0933456561922366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092115258013,0.0047231484953832,0.0067384487360334,0.0091127975374112,0.0111608505443076,0.013385898963968,0.0156479516892443,0.017726511095672,0.0197921567825215,0.0217694183211424,0.0237132654736496,0.0259896411394746,0.0280737515056054,0.029929994948089,0.0318158810829795,0.0339289964094657,0.0360748864885037,0.0382377994307439,0.040197710718002,0.0419834986596572,0.056529827348355,0.0701070672784796,0.0832755905511811,0.0961473684210526,0.1087532316783622,0.1247526428851099,0.1381403691243114,0.1513609064190484,0.1635868113076471,0.1742928274026698,0.1887364029366422,0.201718272626812,0.2139612900414983,0.225651983344291,0.2363884998400917,0.2472528692254756,0.2583239198756305,0.2678319865661381,0.2769550739296957,0.2859699232595753,0.2941824464569394,0.301891438689478,0.309515899383009,0.3159759334206007,0.3222450943373244,0.3290285106961454,0.3355290397862009,0.3414814625806945,0.3470394950452615,0.3528011111846021,0.3540771952570024,0.3553778367104518,0.3557037477523397,0.3563811239611786,0.3572464526547151,0.3565995525727069,0.3566773427665439,0.3572538260668363,0.3585286357286978,0.3599026851684988,0.3610974456007568,0.362716734172669,0.3638054968287526,0.3651829515279715,0.3654633059732209,0.3672328249284645,0.3679606342263532,0.3703280302308596,0.3729508196721312,0.3742404860889031,0.3759357060849598,0.377632495579015,0.3791608213238107,0.3817332005210329,0.3787198203256597,0.3816304734781061,0.3835512313773183,0.3826685563879328,0.3820379016753639,0.3824106792304672,0.0,2.1126345112196607,60.33263263792799,211.8539181477496,328.007952823676,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95685,41396,388.7652192088624,7245,74.38992527564403,5645,58.32680148403616,2313,23.723676647332397,77.32722884548278,79.70392988085939,63.32110870231941,65.07575080472522,77.04741487223586,79.42503961315742,63.217895142475314,64.97564427220604,0.2798139732469167,278.8902677019678,0.1032135598441001,100.10653251917743,89.48698,62.69433345443756,93522.47478706171,65521.59006577578,237.67546,144.85194844624974,247721.49239692744,150713.29091151294,268.34342,127.41309905251174,276323.86476459214,129949.80623072688,3249.24472,1464.3047231933494,3358720.5100067933,1493550.503288611,1373.44827,593.8967706893084,1418263.3328107854,603669.4769961103,2280.99076,952.7837529408032,2342421.633484872,962384.8822153104,0.37936,100000,0,406759,4251.021581230078,0,0.0,0,0.0,19851,206.78267231018447,0,0.0,25068,257.8147044991378,2038593,0,73177,0,0,3506,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.07245,0.1909795444959932,0.3192546583850931,0.02313,0.3168058455114823,0.6831941544885177,25.25100048903224,4.538341881472887,0.3231178033658105,0.2014171833480956,0.2380868024800708,0.237378210806023,10.960589760149968,5.50005082445428,24.7052713049372,13017.067979134998,63.70823400420246,13.339049221889676,20.72721318902005,14.854710753492713,14.787260839800004,0.5383525243578388,0.7704485488126649,0.6962719298245614,0.5587797619047619,0.1059701492537313,0.6909747292418773,0.9052924791086352,0.8347826086956521,0.7167235494880546,0.1391941391941392,0.4887323943661972,0.7082262210796915,0.6495601173020528,0.5147478591817317,0.0974695407685098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023690444853908,0.0045707452037579,0.00687836055595,0.0089988522908477,0.0110025320059791,0.0133994481382301,0.0156323292476495,0.0176278941509299,0.0201255803489252,0.0221195891491126,0.0242436673161727,0.0264776870538694,0.0287794943531299,0.0308809891808346,0.0329012549537648,0.0350472605431342,0.0371199171199171,0.0390253524636116,0.0410447373074402,0.0429869913275517,0.0573568429189211,0.0718195614631848,0.0845562397071318,0.0969184315458342,0.1089043118724158,0.1240902166553825,0.1380829070532549,0.1507161492998243,0.1625991067039942,0.1754052807192593,0.1901966065176407,0.2039059878100269,0.2161965165740146,0.2272762079791714,0.2385905818638135,0.2498697959952572,0.2604735273433575,0.2701148778649144,0.2799368913305032,0.2890156853309502,0.2965793557053197,0.3040618049865387,0.3117139947422021,0.3189530101557535,0.3245740968177341,0.3307994175284448,0.3365289421908092,0.3407048626601236,0.3451573143042491,0.3503511579615644,0.351146894334423,0.351936894074166,0.3529162547662759,0.3532136653155761,0.3539993144458189,0.3535159255270041,0.3530916776582389,0.3547962774178697,0.3549772439516819,0.3552904193755805,0.3558921675227775,0.3571838454993371,0.3579091004513487,0.3588019011747825,0.360349910589145,0.3614366234106698,0.3636598233742402,0.3661700041124925,0.3685342547865026,0.3693870206725578,0.3727394045372969,0.3744964279959177,0.375612238407226,0.3764378908360997,0.3837920489296636,0.3859543817527011,0.3844961240310077,0.3848366550236285,0.3800841514726508,0.3792697290930506,0.0,2.61523974072634,60.9084604281361,215.33679917808533,323.09566515649925,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95789,41570,390.305776237355,7168,73.68278194782282,5595,57.929407343223126,2277,23.499566756099345,77.38146625236273,79.70493149555269,63.35451413110488,65.06799539823284,77.09977023143014,79.41930518251648,63.25322722383804,64.96696345322184,0.2816960209325856,285.6263130362038,0.1012869072668394,101.03194501100177,89.74592,62.854413933832085,93691.0292413534,65617.35370014524,235.21076,143.88588469462096,245085.8240507783,149747.14658637316,271.56403,129.58369426515958,280344.7264299659,132835.8276740386,3221.229,1447.0731640433785,3338405.161344204,1486481.506791143,1375.04257,601.4681610480632,1424138.721565107,616593.793004641,2243.05304,927.8979451387996,2317655.8895071456,948910.0020707662,0.38001,100000,0,407936,4258.683147334245,0,0.0,0,0.0,19647,204.6163964547077,0,0.0,25311,261.02162043658456,2037285,0,73182,0,0,3581,0,0,52,0.5428598273288164,0,0.0,0,0.0,0,0.0,0.07168,0.1886266150890766,0.3176618303571428,0.02277,0.3236702127659574,0.6763297872340426,25.0791775916227,4.557369719051318,0.3354781054512958,0.2007149240393208,0.2307417336907953,0.233065236818588,11.13799207279007,5.695292551530853,24.28694707798685,12959.633052261552,63.13023618565767,13.110653085831238,21.154493362454968,14.373733130827604,14.491356606543835,0.5528150134048258,0.7684772929652716,0.7011188066062867,0.5848179705654531,0.1219325153374233,0.7058823529411765,0.910144927536232,0.8453389830508474,0.7560137457044673,0.1449814126394052,0.5028449502133713,0.705655526992288,0.6526690391459075,0.535,0.1159420289855072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919850960856,0.0045705136000648,0.0067051460220529,0.0087943780973271,0.0110832053850142,0.0132744263696887,0.0154415362035225,0.0176430371738487,0.0195545565999182,0.0215460795547552,0.0236138999303364,0.0259982763573685,0.0283638381616944,0.0305120339297111,0.032691732734002,0.0347509087904824,0.0366112358620404,0.0388255906777113,0.0408040305406949,0.0428331962476704,0.0576050091312288,0.0715474035553974,0.0846643524587585,0.097263830637108,0.1097477414798182,0.1251189745976014,0.1383797887234313,0.1506646657513543,0.1627348163653256,0.1736664951547894,0.1876910492099711,0.2008650519031141,0.2124668377332231,0.2238410885782415,0.2341497766334367,0.2457650591063693,0.2566944602573976,0.2669817158931083,0.2767817605849693,0.2853540274418551,0.2941653348157413,0.3020938239220554,0.3097257094130465,0.316574963138778,0.3227589726143902,0.3287071844995254,0.3347474595785153,0.3402290076335877,0.3461423813165022,0.3515101114103173,0.3519942885623072,0.3531192799438488,0.3534994570658995,0.3543293398426748,0.3549180327868853,0.35467866797739,0.3540427826142112,0.3548556775593399,0.3554361221415856,0.3561163937942375,0.3573666535337048,0.3585898551871488,0.3595248588637746,0.3614963421749472,0.3617508742312794,0.3629730365875984,0.3633271402029441,0.3642467610251237,0.3663530323853825,0.3687322705661432,0.3722209488883795,0.3748999946663822,0.3766233766233766,0.3786689029503697,0.381015662078785,0.3831385642737897,0.3852760736196319,0.3860361274609296,0.3868834389639019,0.3847641144624903,0.0,1.8619802952651152,61.2636414153669,215.2388065435429,316.9891567937218,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95757,41690,391.12545296949565,7195,73.81183621040759,5644,58.36649017826373,2358,24.238436876677422,77.31912755708531,79.66763503370976,63.32066847763053,65.05784747171971,77.0237201811619,79.37077831683887,63.21176324500775,64.95082551136389,0.2954073759234035,296.85671687089155,0.1089052326227815,107.0219603558229,90.8303,63.597438446379456,94854.99754587132,66415.44581219071,235.65584,144.1921754224509,245533.4544733022,150017.0279169678,269.13944,128.87687090161523,276716.8248796432,131322.6609286085,3264.52832,1480.2491219750957,3377858.746619046,1514518.0007467817,1366.35282,595.528187350345,1413766.4400513798,608786.5089239901,2327.3135,974.1539499472352,2395384.7760477043,987952.732899548,0.38155,100000,0,412865,4311.590797539605,0,0.0,0,0.0,19771,205.87528849065865,0,0.0,25034,257.24490115605124,2030713,0,72925,0,0,3625,0,0,45,0.4594964336810885,0,0.0,1,0.0104431007654792,0,0.0,0.07195,0.1885729262219892,0.3277275886031967,0.02358,0.3285545179534394,0.6714454820465605,25.21368676917349,4.572383234653613,0.3244153082919915,0.2055279943302622,0.2274982282069454,0.2425584691708008,10.919737449118433,5.364211891467028,25.180894949980274,13017.152453678476,63.69809688885584,13.600668929918358,20.686174354284606,14.263261025239409,15.14799257941347,0.5263997165131112,0.7620689655172413,0.6744948115783724,0.5482866043613707,0.1081081081081081,0.6885364095169431,0.9211267605633804,0.8344086021505376,0.6866197183098591,0.1590106007067137,0.4735729386892177,0.6919254658385093,0.6200585651537335,0.509,0.0948434622467771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0044994375703037,0.0066961568118177,0.0090292307379796,0.0112782337208001,0.0135854898006986,0.0160591384144787,0.0181758771392394,0.0203267826833807,0.0225222919503281,0.0248636344994463,0.0271283204468677,0.0292078902441532,0.0313890720290093,0.0334296326867519,0.0353654881615526,0.0374852481417834,0.0395402871131026,0.0415835411471321,0.0434302616230628,0.0580142791532712,0.0711416556831733,0.0843175095970296,0.0968169342881478,0.108898470361273,0.1242320746936229,0.1381160972815884,0.1518817633351422,0.1637070337109846,0.1749324585102277,0.1883998664670852,0.2016494756096241,0.21420257378137,0.226120431330519,0.236467079706397,0.247100526170036,0.2575454738323079,0.2678515150150826,0.2770738242841247,0.2851217416213119,0.2940059072218683,0.3019183922046285,0.3104555797857211,0.3167867435158501,0.3234510204826755,0.3288613818577128,0.3348886213124624,0.3415561224489796,0.3474783150677816,0.3522991850989522,0.3526027952197691,0.3537941501103753,0.3547255731074373,0.3549281463202206,0.3561263760852054,0.3558396406374992,0.3554494828957836,0.3568411325985083,0.3591613334934715,0.3602629499245635,0.3620488062459925,0.3627834867126473,0.363219991979569,0.3631995668944982,0.3638214831155608,0.3652212784979883,0.3673803707429228,0.369233206590621,0.3706667610920293,0.3736118878325477,0.3735210492524993,0.3727331258718747,0.374490575649516,0.3753179680875665,0.3765355680411389,0.3813549232051434,0.3839876828329484,0.3890366128042544,0.3894150417827298,0.3970588235294117,0.0,2.282012290623052,61.05196538374022,215.56969924612235,323.5771092101847,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95676,41493,390.38003261005895,7133,73.1949496216397,5593,57.82014298256616,2274,23.4018980726619,77.34181859432726,79.72437983704361,63.3271521787835,65.08574832741016,77.06205774185489,79.44260639177601,63.22502712880706,64.98501216473893,0.2797608524723785,281.7734452676035,0.1021250499764363,100.73616267122532,90.61228,63.49287809435971,94707.1992976295,66362.18417360833,235.64409,144.11136640651404,245573.7384506041,149905.36031615746,274.74206,131.17722191683518,282495.06668338977,133582.4965835068,3240.73416,1462.4930704421738,3354356.9129144195,1495809.5907408071,1372.33182,589.134977995698,1420337.0124169071,601795.8732330576,2244.055,930.8344835332632,2311938.856139471,946439.3689193772,0.3783,100000,0,411874,4304.872695346795,0,0.0,0,0.0,19700,205.2343325389857,0,0.0,25634,263.2739663029391,2033204,0,72972,0,0,3519,0,0,40,0.4076257368619089,0,0.0,1,0.0104519419708181,0,0.0,0.07133,0.1885540576262225,0.3187999439226132,0.02274,0.3199573390214638,0.6800426609785362,25.14488065124924,4.541641740445206,0.3261219381369569,0.2059717504022885,0.2249240121580547,0.2429822993026998,11.107345152264063,5.599636620970436,24.116878335989476,12907.427322783524,63.06303500189566,13.62249415842784,20.451457074311765,14.170356961739047,14.818726807416986,0.5519399249061326,0.7907986111111112,0.6951754385964912,0.5985691573926868,0.1140544518027961,0.7256186317321689,0.9285714285714286,0.8620689655172413,0.7551020408163265,0.1422924901185771,0.495378051671012,0.7197368421052631,0.6429085673146149,0.5508298755186722,0.1075949367088607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594697775212,0.004571393818989,0.0069701612166837,0.0092319879750563,0.011591491438565,0.0137553962694469,0.0156152850401084,0.017578065187877,0.0195423093040607,0.0216708124763279,0.0239831021153116,0.0259533517516201,0.0279626752811185,0.0302955360455051,0.0321002435902729,0.0340098057469124,0.0359692846557995,0.0381249026631365,0.0401876742540884,0.0423677571360063,0.0570789850303467,0.0711690487409036,0.0840907659690589,0.0966570914485937,0.1085232067510548,0.1242384498223049,0.1379427431506122,0.1511635333943665,0.1634096567050954,0.1746814808459525,0.1887525980809201,0.2023947302953933,0.2147261950078851,0.2257376816189091,0.2359328074981023,0.2468463080484212,0.2579802669762043,0.2676370017097093,0.2761504851614367,0.2842662268494657,0.2923703326701522,0.3003731125068716,0.3074666414308697,0.313841581073145,0.3202123652974694,0.3263726239491137,0.3333291601983074,0.3378462714131058,0.3435048177302849,0.3491497205375193,0.3506148535677687,0.3510541546093427,0.3511815692142635,0.3515829702224989,0.3520279824365557,0.3521661010181673,0.3513959390862944,0.3516172551084202,0.3520120603703767,0.3520453813392505,0.3531872584699658,0.3542995207351369,0.3558688207735456,0.3572695234460931,0.3584450078473983,0.3600640067154587,0.3606091894682499,0.3633974095069195,0.3647158909645174,0.3654246794871795,0.3660656793303284,0.3659948542024013,0.3723619360545937,0.3774018219398301,0.3810240963855422,0.3840813883901855,0.3825027002005863,0.3897477624084621,0.3873848730114429,0.3947266382318728,0.0,2.4486568358163274,60.19049315917455,213.33091247559437,320.69898578984345,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95682,41577,391.3797788507765,7226,74.40270897347463,5625,58.23456867540394,2298,23.724420476160613,77.38307130315455,79.76003397066378,63.34642469116329,65.0977364850892,77.10042863669673,79.47376460814316,63.24437227191506,64.99627851465824,0.2826426664578179,286.2693625206276,0.1020524192482312,101.45797043095683,89.76572,62.890275960515446,93816.72623900004,65728.42954841605,236.86505,144.82937976856886,247000.7629439184,150811.64667185978,267.69053,127.2922124673634,276107.8154720846,130285.6251416808,3224.58336,1445.0632593399184,3340697.686085157,1480870.236136282,1351.04481,586.5956356558804,1398385.7778892582,599438.2351572827,2263.8995,932.0460319074324,2339209.7573211263,952269.1772987169,0.3804,100000,0,408026,4264.396647227273,0,0.0,0,0.0,19759,205.91124767458876,0,0.0,25075,258.32444973976294,2037294,0,73198,0,0,3576,0,0,43,0.4494053217951129,0,0.0,0,0.0,0,0.0,0.07226,0.1899579390115667,0.3180182673678383,0.02298,0.3264849203213486,0.6735150796786514,25.166810214098128,4.600539388627168,0.3240888888888888,0.2115555555555555,0.2323555555555555,0.232,11.03898638669687,5.3970596173750405,24.383363927428174,13042.577487817258,63.29096783469227,13.688926941571054,20.731638710569158,14.55326144875488,14.31714073379716,0.544,0.7546218487394958,0.6944596818431158,0.5592960979342004,0.1264367816091954,0.7106227106227107,0.9109195402298852,0.8634361233480177,0.7440273037542662,0.1592592592592592,0.4906103286384976,0.6900237529691211,0.6384222059897735,0.5059171597633136,0.1178743961352657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080894485893,0.0043766336392924,0.0067037859656595,0.0090885088752589,0.0113669869350821,0.0134877897329926,0.0156170360251992,0.0178117567802059,0.0197888238120061,0.0219480984798075,0.0241856936342106,0.0266162819354308,0.0286836773523392,0.0305402482360817,0.0323316104938462,0.0344161145963599,0.036381341095791,0.0382559599796577,0.040098582614935,0.0422272476213303,0.0573604379074043,0.0708625147870146,0.0844505990222613,0.097682537012113,0.1103179958668972,0.1261101243339254,0.1398072866425686,0.1533757988876718,0.1646821586326099,0.1759676883684554,0.1902303116360624,0.2037901883202525,0.2162549852751002,0.2281976744186046,0.2392961231784437,0.2507090627077332,0.2611230233181452,0.270929302713235,0.280460109463357,0.2885137690377144,0.296926905492216,0.3043503711161582,0.3124577927847876,0.3197278095146656,0.3259706139924102,0.3317621509568994,0.3373752051208177,0.3424556307253246,0.347277892360976,0.351960551016631,0.3523925057285348,0.3530473107912678,0.3541372891872074,0.3547504631773969,0.3554910714285714,0.3550224979652011,0.3540972156078357,0.3543916249670792,0.3551331320340379,0.3568279569892473,0.3582439426899707,0.3595721121524894,0.3593835185573495,0.3604822834645669,0.3602720303751232,0.3622270856130478,0.3619329669390893,0.3635106249214133,0.3652709359605911,0.3662335598203997,0.3666819012797075,0.3677984084880636,0.3675536264704032,0.3670135987236952,0.3686722185833255,0.3720738736619221,0.3783783783783784,0.377466456195738,0.3815541812315138,0.3885991058122205,0.0,2.1415265546163167,60.374522920828014,213.2572666857028,324.71116182007603,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95687,41344,388.32861308223687,7056,72.42363121427154,5528,57.13419795792532,2255,23.179742284740875,77.3960056150407,79.78260434834567,63.35197710932333,65.11407414800775,77.11920317423797,79.50564574635436,63.24994103241781,65.01493605234239,0.2768024408027401,276.9586019913106,0.1020360769055201,99.13809566535292,90.22882,63.18587460422551,94295.79775727112,66033.91746446802,234.08017,143.5700812587366,243989.956838442,149400.2124204297,270.78193,129.64410830333432,279132.6826005622,132442.26244316588,3169.63876,1438.9669785038648,3277204.46873661,1468524.3120840513,1333.44925,582.9481522883744,1376511.9295202063,592182.7126865444,2210.53294,920.5702083092568,2273538.0354698133,929493.3365697348,0.37777,100000,0,410131,4286.172625330505,0,0.0,0,0.0,19540,203.5386207112774,0,0.0,25259,260.1607323878897,2039684,0,73033,0,0,3573,0,0,44,0.4493818387032721,0,0.0,0,0.0,0,0.0,0.07056,0.1867803160653307,0.3195861678004535,0.02255,0.3187288708586883,0.6812711291413117,25.162369456806964,4.591219304661512,0.3386396526772793,0.1982633863965267,0.236794500723589,0.2263024602026049,11.166326916552304,5.677803044499788,24.01091764447365,12936.707788270644,62.40400805209681,12.922064551513786,21.138060591761626,14.694195942811104,13.649686966010302,0.5506512301013025,0.7664233576642335,0.6944444444444444,0.5790679908326967,0.1167066346922462,0.7052932761087267,0.8994413407821229,0.8676171079429735,0.6877076411960132,0.125,0.4983050847457627,0.7018970189701897,0.6328747284576394,0.5466269841269841,0.1146560319042871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0047555312202145,0.0069933618887152,0.0091033782067564,0.0113523080992004,0.0136134077302162,0.0159364580890524,0.0181727225392806,0.0203847962542681,0.0227537922987164,0.0249436128767685,0.0268491519158897,0.0289202225581849,0.0311077233678745,0.0330585334145007,0.0348463391186594,0.0367930391547545,0.0389046897382133,0.0407488299531981,0.0428365955850165,0.0575860448111975,0.0721798373677435,0.0852641626197044,0.0975617449452733,0.1097348864175407,0.1250978235580278,0.1386451647127473,0.1512919057606115,0.1639317992436382,0.1757822136888736,0.1883138564273789,0.2008934849156814,0.213069324146625,0.223719735475761,0.2351227128782547,0.246612496125404,0.2566173271909961,0.2662180077747567,0.2756104470001699,0.2843520614666941,0.2925626515763945,0.3005452995644609,0.3079485846604602,0.3138754263148447,0.3207467067756726,0.327088663648888,0.3339450457535922,0.339310187300137,0.3444930961883726,0.349615647870268,0.3506552798367172,0.351102083390519,0.3509129786455842,0.3515344068163766,0.3524598684308222,0.3521667916787852,0.3523320984136031,0.3543769800233088,0.3548376068376068,0.3572462085350387,0.3577014684645824,0.3588030674361609,0.3599330123508478,0.360885477104347,0.3603943729710232,0.3603441533046539,0.3607528259445915,0.3642924676961865,0.3641065334412272,0.3668301630976592,0.3661292545128841,0.3657727102403512,0.367718986216096,0.372373063353275,0.3717411988582302,0.3719614921780986,0.3749034152372121,0.3803366174055829,0.3828954723309111,0.3783255086071987,0.0,2.4837004710175687,61.36694211181839,209.3570945640112,311.45813372448566,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95826,41582,390.3324776156784,7122,72.99689019681506,5572,57.614843570638456,2253,23.15655458852504,77.38566316619061,79.70795449725387,63.36611244363343,65.0849064816191,77.1073862515652,79.43000909508842,63.26350152122984,64.98544999600865,0.2782769146254082,277.94540216544306,0.102610922403592,99.45648561044608,90.71634,63.582151557138815,94667.77283826936,66351.67027439193,239.57695,146.93542411295076,249463.2667543256,152791.21966711676,274.00385,130.75171971056153,283431.9913175965,134467.21514111513,3206.6256,1454.8379301496602,3314854.6740968004,1487055.1737676451,1361.57039,594.3424361885436,1405038.9247177176,604528.7022004684,2217.65186,921.0806099212624,2279504.769060589,929418.8425450724,0.37989,100000,0,412347,4303.080583557698,0,0.0,0,0.0,20107,209.2438377893265,0,0.0,25524,263.8010560808132,2034395,0,72981,0,0,3572,0,0,46,0.4800367332456745,0,0.0,0,0.0,0,0.0,0.07122,0.18747532180368,0.3163437236731255,0.02253,0.319748797434527,0.680251202565473,24.965938014441207,4.609324261781242,0.3431442928930366,0.1988513998564249,0.226848528356066,0.2311557788944723,11.33901753246155,5.675119578777389,23.85937928949704,12945.432302629652,62.8037433813907,12.902872014266842,21.75053373495434,14.073778453569632,14.076559178599892,0.5527638190954773,0.7734657039711191,0.6893305439330544,0.5941455696202531,0.1195652173913043,0.7053380782918149,0.9300291545189504,0.8346938775510204,0.7128378378378378,0.1884057971014492,0.5013198944084474,0.7032679738562092,0.6392405063291139,0.5578512396694215,0.1007905138339921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268744999139,0.0045517674847683,0.0069318285615694,0.0091236055513787,0.0111477277350583,0.0133285816108339,0.0154216228888277,0.0176242473721808,0.0197148551280085,0.0221248899895618,0.0243702473918301,0.026481093730755,0.0283764478566069,0.0304586815992094,0.0325960299046145,0.0347164120521004,0.0367526850568052,0.0388063723711895,0.0408074263285776,0.0426851476081957,0.0576337311190853,0.0715988207990967,0.0851946962947434,0.0976096664039926,0.1093847110006215,0.1248547709077082,0.1380610850380854,0.149798044217687,0.1623287963476554,0.1738338777914636,0.1879268253336631,0.201097583372044,0.2124159944412476,0.2241992882562277,0.2352211067419432,0.2463841832898403,0.2562054367201426,0.265564267900874,0.2748736772936351,0.2834669075194073,0.2911794611082867,0.2996743051259003,0.3073625283446712,0.3144975189812877,0.3215103668068296,0.3275648037757648,0.3337745367364267,0.3397644191714054,0.3455151648294845,0.3509754073527668,0.3522097216988749,0.3524032180430447,0.3527838012898138,0.3530347280455715,0.3537869101073478,0.3537855204036252,0.3548504798921234,0.3561154631031532,0.3570105320937253,0.3580238061092786,0.3598496946923438,0.3613817186166941,0.3625946949714068,0.3631266045129037,0.3640199835087549,0.3659461309602169,0.3670416295060272,0.3690589504410178,0.3710410453060644,0.3719996788954002,0.3724452218744246,0.3730447825155346,0.3721225995167239,0.3737428023032629,0.3764302059496567,0.3775375375375375,0.3812248685431488,0.3790206924810489,0.3872044506258693,0.3987659082144234,0.0,1.9905520609990357,62.16861952312882,208.7963439498294,316.74750687540256,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95776,42076,395.4226528566656,7220,74.1835115268961,5614,58.15653190778483,2218,22.90761777480789,77.37657405990127,79.72352631372256,63.3458979718325,65.08016606756381,77.10868198209249,79.45160654790946,63.24778524361467,64.98230208497817,0.2678920778087814,271.9197658130952,0.0981127282178278,97.86398258563622,90.40108,63.28133424600958,94388.03040427664,66072.22503133309,235.31426,143.5922990071957,245224.85800200468,149457.69191362726,272.47159,129.53505698425158,281731.59246575343,133118.26817536933,3227.66476,1449.7308715015563,3344996.909455396,1488650.968407072,1341.40929,577.1536771209456,1392110.079769462,594164.1858252164,2190.50066,911.6462699131662,2263574.173070498,931448.2177250086,0.38444,100000,0,410914,4290.365018376211,0,0.0,0,0.0,19592,204.05947210157035,0,0.0,25340,261.7879218175744,2036490,0,73119,0,0,3652,0,0,50,0.5220514533912463,0,0.0,1,0.0104410290678249,0,0.0,0.0722,0.1878056393715534,0.307202216066482,0.02218,0.3152302243211334,0.6847697756788665,25.36883241882971,4.543716706073934,0.3247239045244032,0.2075169219807623,0.2367296045600285,0.2310295689348058,10.897949551869138,5.375923811561396,23.610368431035447,13139.00804232459,63.13880652922231,13.647335357691746,20.37157335025709,14.84485365722804,14.275044164045434,0.5422158888493053,0.7716738197424893,0.68019747668678,0.5688487584650113,0.1148804934464148,0.6833333333333333,0.9034090909090908,0.8635294117647059,0.7028753993610224,0.1310344827586207,0.4962210675484175,0.7146371463714637,0.6244635193133047,0.5275590551181102,0.1102284011916583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0046629970906952,0.0070516853020556,0.0093766508188061,0.0115531689854364,0.0135436502683272,0.0157233025053277,0.0181626985747539,0.020272135270244,0.0225199864880081,0.024741718596261,0.0268938616300554,0.0290836940095197,0.0309683930833479,0.0329612511863987,0.0350808285442593,0.037141732935719,0.0390053632374451,0.0410021831791246,0.0430838766116098,0.0576533700711795,0.0715914081944241,0.085117088408562,0.098452129504114,0.1114401332012561,0.1273053955503884,0.1402113878022665,0.15275354300549,0.1650026162076735,0.1767544094783681,0.1905577273069923,0.2040505014442893,0.2165499086241406,0.2278118161925601,0.2381822585261674,0.2494568831744624,0.2602670894839098,0.270019921439746,0.2796118708505929,0.2886443278898788,0.2968545746908367,0.3045237649700599,0.3122442220802877,0.3198826206731345,0.3276394119791034,0.3334196220553974,0.3387855142056822,0.3440689383444121,0.3499676542890412,0.3557982772039521,0.3564510922199505,0.3573618577537019,0.3581471941899252,0.3584300351161144,0.3591160220994475,0.3584654261428899,0.3589268462647091,0.3603284072249589,0.3617115884525927,0.3629203650456307,0.363716564992961,0.3647212491836371,0.3657917374792807,0.3661153330353151,0.3674112945934235,0.3686876599300224,0.3706271757119215,0.3713998239215193,0.3738038277511962,0.3780176878336387,0.3799734444393571,0.3841466673793361,0.3857576140528245,0.3883124809276777,0.3896616541353383,0.3926788685524126,0.394817540631708,0.3945399393326592,0.3970264317180617,0.4036029129934841,0.0,1.692590244307279,61.648564600984926,211.11006982331955,322.0248452265595,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95751,41552,388.90455452162377,7232,74.2237678979854,5652,58.43281010119998,2280,23.41489906110641,77.3313489084019,79.69656965170181,63.31030609897547,65.0626599602557,77.05328680309935,79.41900767782944,63.207798455354,64.96265907276133,0.2780621053025527,277.56197387236625,0.1025076436214647,100.00088749437452,89.72634,62.83833369096744,93707.99260582136,65626.81715174508,237.56326,145.1747246330719,247482.0419630082,150995.269228309,274.39719,130.84257251409636,283040.1875698426,133913.4512050523,3224.78236,1458.6332142007066,3335196.5410282924,1490809.715295386,1377.20264,605.5303019637536,1419152.0819625906,613541.6888168827,2246.06298,934.424161313166,2308593.1844053846,945181.2461973666,0.38012,100000,0,407847,4259.454209355516,0,0.0,0,0.0,19877,206.95345218326705,0,0.0,25552,263.22440496705,2034864,0,73028,0,0,3568,0,0,45,0.4699689820471848,0,0.0,0,0.0,0,0.0,0.07232,0.1902557087235609,0.3152654867256637,0.0228,0.3030541355354568,0.6969458644645432,25.426326466926582,4.508150483990823,0.3356334041047417,0.2022292993630573,0.2317763623496107,0.2303609341825902,11.191237735048622,5.6187192717508845,24.12638857168311,13103.878014485324,63.53119202044602,13.286706071441186,21.50917864154656,14.484096027592273,14.25121127986601,0.5539631988676574,0.7646544181977253,0.7037427517132314,0.5854961832061069,0.119047619047619,0.706268221574344,0.899135446685879,0.8625792811839323,0.7330960854092526,0.1586715867158671,0.5051401869158878,0.7060301507537688,0.6509831460674157,0.5451895043731778,0.1086323957322987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002056758427137,0.0045935284991431,0.0067901547830499,0.0092765698028855,0.0117906773281246,0.0140338727581957,0.0163962843246219,0.0185527430899455,0.0208450531354519,0.0231784009668762,0.0252605021332458,0.0275337751065906,0.0295146750092619,0.0316087807894465,0.0337317561569744,0.035932168338331,0.0381357687210072,0.0400639196438762,0.0422652335710276,0.044128981190243,0.0584643326861652,0.0729614632053656,0.0862240777065654,0.0994773757321471,0.1117390295848006,0.1268760113803424,0.13976908546809,0.1529612270984235,0.1650065194621978,0.1766536463922393,0.1912542979402222,0.2040765490128123,0.2163356850448567,0.2279241895043412,0.2388110655918241,0.250013861320263,0.2603887399463807,0.2704166666666667,0.2804491728452534,0.2886623940933011,0.2965682584172062,0.3043895924368271,0.3116136223497605,0.3178781689294725,0.3246125564577982,0.3309839161616037,0.3370920253085259,0.3426179584867675,0.3472979286715464,0.3526706054958563,0.3534086156419908,0.3545437016224554,0.3549219510131562,0.3554182880784642,0.3572893141566623,0.3564677950524623,0.355964928939955,0.3575497873877423,0.3586248182673394,0.3597127442924006,0.3610855824596282,0.3621659077410414,0.3630736303166376,0.3643699287219258,0.3649254811170597,0.3664355788096795,0.3660660746409297,0.3674668351231838,0.369415260532739,0.3711769415532426,0.3725283295866403,0.3740792142628376,0.3768933392483681,0.3774956016216629,0.3794818847381265,0.3771744240714622,0.3798062367544656,0.3879173290937996,0.3940873338757797,0.3945680875141456,0.0,2.260961964650257,60.30960767924423,212.76564207514815,328.55738651403175,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95489,41421,390.68374367728217,7239,74.56356229513347,5655,58.62455361350522,2273,23.489616605053985,77.22623088476638,79.71333247623714,63.24095407219974,65.07614340453442,76.95038778781907,79.43388302681747,63.14263803616541,64.97852829297797,0.2758430969473124,279.44944941967265,0.0983160360343333,97.61511155645051,89.68784,62.868102563084776,93924.78714825792,65838.05732920523,235.5696,143.5752283044829,246109.4890510949,149769.20724322475,272.61726,130.21062932283675,281104.22142864624,132979.47961438182,3227.59332,1445.198465698184,3348846.3383216914,1482249.2912253602,1349.28831,581.8554012441556,1396357.7375404497,592670.4973810138,2229.16596,907.9220167972094,2305513.284252636,927317.7844052204,0.37821,100000,0,407672,4269.308506738996,0,0.0,0,0.0,19709,205.772392631612,0,0.0,25494,262.6480537025207,2031685,0,72908,0,0,3679,0,0,35,0.3560619547801317,0,0.0,0,0.0,0,0.0,0.07239,0.1914016022844451,0.3139936455311507,0.02273,0.3254352663961251,0.6745647336038748,25.077625530079175,4.512458448308958,0.3115826702033598,0.2203359858532272,0.2415561450044208,0.226525198938992,11.1657668754637,5.708932610850384,24.1354534362798,12938.803614727918,63.88052093392845,14.580804898623144,19.93888779115588,15.317319328361783,14.043508915787635,0.5492484526967285,0.7728731942215088,0.6855845629965948,0.5893118594436311,0.1014832162373146,0.7401633259094283,0.9247311827956988,0.8599562363238512,0.773972602739726,0.1504424778761062,0.4895543175487465,0.7082379862700229,0.6245210727969349,0.5391061452513967,0.0909952606635071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989157420073,0.0042297666020874,0.0063151054886592,0.0084697508896797,0.0108934679915295,0.0128930336849615,0.0152552577067112,0.017431998855578,0.019611855095297,0.0214954611585828,0.0236184102479881,0.0255192268147234,0.027678810470169,0.0298492068403572,0.0318237707035326,0.0341253817880623,0.0363066773166253,0.0382536382536382,0.0402979632234203,0.0422474913594169,0.0564161607703579,0.0707301720520352,0.0847117214692057,0.0983981452207819,0.1096399928146496,0.1253537098466462,0.1384028235494227,0.1506096715347934,0.161938724151594,0.1731023439263184,0.1875364321336816,0.2004619789181451,0.2134323151721281,0.2247150372643577,0.2355530063203874,0.246728286710956,0.2568137337135827,0.2670160608622147,0.2762894569271354,0.2851831878004842,0.293260980474004,0.3019553596548813,0.3095147704354016,0.3166900993787327,0.3237290821114726,0.3298740815872152,0.3359934648736961,0.3409683521652436,0.3457372807530782,0.3512378631131363,0.3513637777387118,0.3521292014631789,0.3529553065521188,0.3528176459513085,0.3531333442725659,0.3530153846153846,0.3526321654276572,0.3532822359509729,0.3542243707743389,0.3557624894385819,0.3569058481957693,0.3580666985036612,0.3593058074311501,0.3604753223955168,0.3607445008460236,0.3623948203098377,0.3615055799409014,0.364039814873518,0.3658277206664303,0.3661723446893787,0.368050441826215,0.3716548918861057,0.37560913866211,0.3762308220746508,0.3778754441743033,0.3780416127894675,0.3814117286786097,0.375796178343949,0.3771491957848031,0.3754818812644564,0.0,2.327106771400325,59.45064009490026,218.9100255621299,328.40828390864743,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95690,41690,391.921830912321,7256,74.37558783571951,5589,57.62357613125719,2320,23.785139513010765,77.36399481233721,79.74778734570151,63.33329461681414,65.09685857566048,77.08681152063956,79.47374474565028,63.23161687906588,64.99931968032514,0.2771832916976535,274.0426000512315,0.1016777377482682,97.53889533533312,90.33948,63.22844593450452,94408.48573518656,66076.33601682988,236.36464,145.05003195596038,246224.31811056536,150796.78331691964,271.34202,130.00115408923114,277992.07858710416,131568.47202621037,3235.63652,1461.5080410276148,3339379.203678545,1485341.7086713496,1372.69578,598.0261663312789,1413188.828508726,603726.4473476829,2292.2071,946.7313221294896,2352914.8500365764,953744.3422190866,0.38137,100000,0,410634,4291.294806144842,0,0.0,0,0.0,19854,206.6778137736441,0,0.0,25299,258.9925802069182,2035542,0,73042,0,0,3681,0,0,39,0.3866652732782945,0,0.0,0,0.0,0,0.0,0.07256,0.1902614259118441,0.3197353914002205,0.0232,0.3210864715916546,0.6789135284083454,25.1680961050848,4.583804218726907,0.3190195025943818,0.2020039363034532,0.2361782071926999,0.242798353909465,10.951341883159806,5.290320699620052,24.61805790417242,12995.363921085967,63.00070414788614,13.345127227648142,20.067643430715695,14.740316558395143,14.847616931127142,0.5448201825013419,0.7883082373782108,0.704991587212563,0.5590909090909091,0.1179071481208548,0.6896807720861173,0.9162162162162162,0.8560975609756097,0.6710963455149501,0.1390977443609022,0.4988213107024988,0.7259552042160737,0.6598689002184996,0.5260058881256133,0.1127406049495875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023707966484635,0.0045027229304207,0.0068931210915292,0.0090859198731629,0.0114064185270355,0.0134380667114941,0.0159125219307193,0.0181073573266881,0.0204862283043376,0.0225685555714841,0.0245095525724775,0.0265490361210677,0.0287498199921825,0.03086038124678,0.0329944785592651,0.0349063236692998,0.036867075495152,0.0386750651156516,0.0407367753604357,0.0427376251549785,0.0571568811746767,0.0703908392472105,0.0837197591220965,0.0965536824171548,0.1085764884466183,0.1240100240026223,0.138018430736275,0.1508707354177083,0.1632644345746498,0.1744517567364788,0.1883945674867093,0.2012461598373069,0.2137964030185068,0.2249767619880802,0.236513838166058,0.24836695378756,0.2594786333366797,0.2696161675232515,0.2787246113695676,0.2876574307304786,0.2960118441750717,0.3039639850327408,0.3107317881578635,0.3170424713201711,0.3240957853940638,0.3300481687260542,0.3358904726744841,0.3408062054933876,0.3456970606499689,0.3509997495683349,0.3511921571791665,0.3515025707294273,0.3530943067008133,0.3540685750599381,0.3550244916134778,0.35447333425047,0.3539455395501643,0.3547568779561709,0.3564088143565622,0.3576144758913594,0.35899840570196,0.3593184112094045,0.3617900677674506,0.3618119780910478,0.3627120277563608,0.3632410342388599,0.3618649167550219,0.3654173764906303,0.3687585890975721,0.3693618376527728,0.3727753947248334,0.3732177058948712,0.374341395289786,0.3751249903853549,0.3749521988527725,0.3757099697885196,0.3739607843137255,0.3802083333333333,0.3720600736752621,0.3773285770907649,0.0,3.0639268565903155,58.39452855052261,218.3906811332436,317.74545626771226,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95674,41921,393.6806237849363,7175,73.75044421681962,5585,57.85270815477559,2295,23.674143445450174,77.31725194233033,79.72449581118885,63.30264576078415,65.08446516215483,77.03875922130646,79.44408651765255,63.19993670190138,64.98342566223886,0.2784927210238663,280.4092935362945,0.1027090588827732,101.03949991597004,89.10352,62.501449721070976,93132.19892551788,65327.31458562699,235.58698,144.0801669970904,245703.76486819825,150064.06017734844,276.5855,131.42081907528464,285530.1649350921,134763.0836648381,3218.98912,1453.0035266501409,3334739.6366829025,1489317.9241217433,1344.18257,587.6763411094017,1390227.146351151,599916.2179721997,2260.5246,941.7607632376396,2333368.8985513304,958695.3338565768,0.38173,100000,0,405016,4233.281769341723,0,0.0,0,0.0,19679,205.12364905826036,0,0.0,25671,264.78458097288706,2039316,0,73183,0,0,3448,0,0,41,0.4285385789242636,0,0.0,1,0.0104521604615674,0,0.0,0.07175,0.1879600764938569,0.3198606271777003,0.02295,0.3183921724183525,0.6816078275816475,25.51746561345476,4.571150709560819,0.3434198746642793,0.1951656222023276,0.2291853178155774,0.2322291853178155,11.10372650581693,5.50124494502639,24.515460332209788,13048.032537850326,63.17401711376154,12.961367286093068,21.369673715879653,14.395488616518596,14.447487495270224,0.5491495076096687,0.7990825688073394,0.6882168925964547,0.5578125,0.1249036237471087,0.6932299012693935,0.9081364829396326,0.875,0.6543624161073825,0.1519434628975265,0.5001199904007679,0.7404795486600846,0.6299589603283173,0.5285132382892057,0.1173570019723865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024517004873007,0.0050093799117781,0.0071343759197052,0.0092979300673718,0.0116192704888843,0.0136090455332586,0.0157203190990145,0.0178571428571428,0.02007325407706,0.0222934830493714,0.0245716630758182,0.0265418524836104,0.0288840622973432,0.0308263312541883,0.0330183320423444,0.0350842705347997,0.0373284405191358,0.039378991640272,0.0416380548099132,0.0437089544459501,0.0588831426631144,0.0728512188992209,0.0862673468959291,0.0984796675259087,0.1108016583852897,0.1258188437238737,0.1393500042455633,0.1519708604475307,0.1637702535163097,0.1747073906000236,0.1882264232239995,0.2020156096082443,0.2141854314726336,0.2252774919543753,0.236886166861272,0.2483262392480269,0.2584375,0.2690403869951626,0.2789293940115956,0.2880470879234134,0.2961209989122133,0.3041967857393501,0.3112855671201733,0.3179349455081707,0.3238958923426654,0.3300803178167372,0.3360100219229565,0.3417273514284259,0.3479534058074296,0.3531958708451039,0.3543546779450984,0.3548617993613038,0.3552240487962924,0.3554893653937913,0.3561011217542866,0.357098955132145,0.3564877986862564,0.3580009215376514,0.35892435594786,0.3597518459585576,0.3603432734920754,0.361146320209142,0.3622130095330289,0.3627913242624276,0.3625317681229578,0.3649648441599328,0.3655498281786941,0.3678262516573016,0.3687182382834557,0.37159843587902,0.3724141094445209,0.3708970383834064,0.3722081218274111,0.3745298226759807,0.3723706651506537,0.3708814083501843,0.3706736711990111,0.3666666666666666,0.3677629790703995,0.3700757575757575,0.0,1.9932671787043252,63.10774836636031,209.1614105036515,317.3231630600362,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95856,41808,393.0374728759807,7076,72.59848105491571,5493,56.7413620430646,2236,22.99282256718411,77.4717338221379,79.7575413962116,63.40399372213196,65.09035060960481,77.19954209087044,79.48396840061118,63.3046252567288,64.99275316361559,0.2721917312674691,273.5729956004178,0.0993684654031596,97.59744598922282,90.61734,63.43932816640167,94534.8647971958,66181.90636621774,233.70296,143.164133220676,243249.2801702554,148796.3228391295,276.2411,132.49005220994476,284245.70188616257,135251.48096349044,3138.8802,1423.0203919311896,3245120.597563011,1455081.5722867516,1350.10696,588.2111901806151,1394226.725504924,599393.0480936139,2192.28222,902.24920482518,2256013.833249875,915047.4603249676,0.38155,100000,0,411897,4297.039308963445,0,0.0,0,0.0,19586,203.72225004172927,0,0.0,25802,265.2311801034885,2037740,0,73106,0,0,3598,0,0,37,0.385995660156902,0,0.0,1,0.0104323151393757,0,0.0,0.07076,0.185454068929367,0.3159977388355003,0.02236,0.3219702053415649,0.6780297946584352,25.352249869810205,4.521850668182974,0.3282359366466412,0.2066266156926998,0.2364827962861824,0.2286546513744766,11.305563362246795,5.8643199638070245,23.527439887129614,12967.936952908376,61.90913522897782,13.369961831868556,20.50333426041623,14.500055619610356,13.53578351708269,0.5659930821044966,0.771806167400881,0.7176927343316695,0.6066204772902233,0.1202229299363057,0.7161016949152542,0.9128205128205128,0.8418891170431212,0.71280276816609,0.168,0.5138582290900172,0.697986577181208,0.6717325227963525,0.5762376237623762,0.1083499005964214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022978034213989,0.004497978948648,0.0068952929485489,0.0090336987413723,0.0112287618892772,0.0135012768728316,0.0156568331839295,0.0176664388661655,0.0198108776014541,0.0219156508222204,0.0240272841794774,0.0262342830184809,0.028434947865838,0.030589252091243,0.0326760331089647,0.0346647115920778,0.0366478066137757,0.0386975086017493,0.0404830135393305,0.0422069137755208,0.056056056056056,0.0708118166042942,0.0835621319137342,0.095812976096664,0.1078708290297422,0.1239758539395925,0.1367844002163102,0.14943299078743,0.161609907120743,0.1736166929235122,0.1877293220138373,0.20133792999103,0.2142531381661816,0.2259233784241154,0.2365727214814489,0.2485103089934221,0.2586135834512258,0.2681105721728195,0.2773971439248949,0.2861014235892745,0.2940497222895809,0.3019228974143564,0.3097200897602457,0.3167230840998529,0.3230722562640296,0.3287532934426633,0.335012625946946,0.3408940733963607,0.3463140196585618,0.3508406683181363,0.3512786364798149,0.352392065344224,0.3538831402541896,0.3546312982051466,0.3554992141861637,0.3553019539545045,0.3544989419827559,0.3548233907020158,0.3567656878108605,0.3577997971999359,0.3591396643868894,0.3596105713328472,0.359582027168234,0.3603203640906657,0.3602912993484093,0.3620107085304361,0.363123102675405,0.365755954057522,0.3688113641111343,0.3687965627340455,0.3710799819249887,0.3730449074810455,0.3737131308027537,0.3780777786300529,0.3800133371439458,0.3834433113377324,0.3898357131890066,0.3882257738215658,0.3963766126818556,0.4001533154465312,0.0,2.221811873924441,62.364257168577,205.98683664101847,305.93486292601585,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95728,41642,389.7814641484205,7177,73.58348654521144,5509,56.83812468661207,2255,23.065351830185527,77.34438518034166,79.69752264702109,63.33412346583962,65.07224574291587,77.06951100029478,79.42675452071308,63.23241965912199,64.97578313440249,0.2748741800468792,270.7681263080133,0.1017038067176301,96.46260851337728,90.40438,63.31846228527797,94438.80578305195,66144.13994367163,237.35347,145.2494509387421,247166.04337288984,150951.749685298,271.61045,129.412312742596,279620.61256894533,131939.00722517044,3173.87052,1427.9283501305383,3276716.154103293,1452858.797980254,1311.66477,567.8293385361007,1351075.3906902892,574091.2749115234,2219.68166,920.2880191995932,2273270.2030753805,920822.7434090856,0.38148,100000,0,410929,4292.672990138727,0,0.0,0,0.0,19844,206.54354003008527,0,0.0,25344,260.62385091091426,2032538,0,73032,0,0,3506,0,0,50,0.5014206919605549,0,0.0,0,0.0,0,0.0,0.07177,0.1881356820803187,0.3141981329246203,0.02255,0.3143839238498149,0.685616076150185,25.461671335637693,4.585816435640605,0.330731530223271,0.204574332909784,0.2294427300780541,0.2352514067888909,11.2321365119773,5.5217592492420735,23.799886548598977,13029.78338924298,61.90365583174941,13.160465330754125,20.52588036819856,14.119806323907405,14.097503808889323,0.5420221455799601,0.7710736468500443,0.6926454445664105,0.5704113924050633,0.103395061728395,0.6940406976744186,0.9192200557103064,0.8552915766738661,0.6996587030716723,0.0919540229885057,0.491410597628841,0.7018229166666666,0.637233259749816,0.5314109165808445,0.1062801932367149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0046637535104883,0.0070313213405168,0.0092217381148248,0.0111637554141163,0.0133560005293536,0.015868001059905,0.0181131690392366,0.0203328871678025,0.0224496060575053,0.0248995819329453,0.0271268897989346,0.0294779917539764,0.0316574323906819,0.0337535331861602,0.0358696663118625,0.0380192321626349,0.0400613935930807,0.0421014342132612,0.0442699110435199,0.0587786976812169,0.0730701607501674,0.0866313525987308,0.0987442682259896,0.1109599586615626,0.1265941921702163,0.1396582266396529,0.1531135609091683,0.1652673631139311,0.1763627396320281,0.1897440866466414,0.2024664647338814,0.2153963248885506,0.2264051944644848,0.2365214139592178,0.2479987599508409,0.258484648951486,0.2685922526656769,0.277808666840654,0.2868185982592762,0.2945138109399771,0.3021603782417377,0.3101456138273943,0.3160395469379919,0.3221713077194219,0.3286354268224956,0.3337721607863788,0.339768684408513,0.34524488948843,0.3512280887290802,0.3518690769873687,0.3515850937835679,0.3528300023977095,0.3531760960787151,0.3532878873574852,0.3533296473768276,0.3533841754051477,0.3543539094650206,0.3555871617800778,0.3569010906355773,0.3580836073273837,0.3607171156893819,0.3614057937524946,0.3623035473731477,0.3644914045310573,0.3654057447810391,0.3669070925639704,0.3695349572919962,0.3706686446964077,0.3753000480076812,0.3741811351871363,0.3768596810446323,0.3786727456940223,0.3804273439282183,0.384289347273241,0.3882241440587608,0.3963658761934093,0.3985117817279868,0.3968697596422582,0.3935837245696401,0.0,2.7063364062549744,60.27739411060416,200.8059197051953,320.15483739006856,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95681,41435,389.74300017767376,7154,73.53602073556924,5662,58.68458732663748,2266,23.40067516016764,77.28108161739658,79.66911496125822,63.29287913429015,65.05598672454933,76.99944082449049,79.38396759348117,63.18903972063037,64.95292972468907,0.2816407929060887,285.14736777704286,0.1038394136597844,103.05699986025728,90.14654,63.15148326376671,94215.71680897984,66002.11459304013,234.47306,143.1275616086366,244587.62972795017,149118.83405131276,269.77979,128.66626770780218,278650.83976965124,132015.37334191604,3248.76304,1459.8139360298178,3371379.0616736864,1501677.549387879,1369.65726,593.3407611500057,1420519.2253425445,609160.127036722,2228.86172,931.8866027287572,2304611.0095003187,952671.1818834628,0.37927,100000,0,409757,4282.532582226357,0,0.0,0,0.0,19552,203.8544747651049,0,0.0,25214,260.3442689771219,2032236,0,72965,0,0,3582,0,0,53,0.543472580763161,0,0.0,0,0.0,0,0.0,0.07154,0.1886255174414005,0.3167458764327648,0.02266,0.3241875332978157,0.6758124667021843,25.27177645355725,4.5444735401571545,0.3244436594842811,0.2029318262098198,0.240904274108089,0.2317202401978099,10.969676933477649,5.482414372764142,24.169861198368867,12913.107723902933,63.6580022946453,13.291594976340315,20.83399008052232,15.254560991621412,14.277856246161235,0.5400918403391027,0.7467362924281984,0.6946107784431138,0.5645161290322581,0.1173780487804878,0.7042052744119743,0.9178885630498532,0.8526315789473684,0.7220447284345048,0.1605839416058394,0.4860295844094858,0.6745049504950495,0.6395007342143906,0.5176022835394862,0.1059730250481695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019652535075723,0.0043796064436987,0.0068096248109847,0.0090317074905263,0.0112177857331733,0.0135636022972587,0.0156106613373575,0.0178462041083023,0.0201175568617429,0.022016602012303,0.0241054034656003,0.0262025771343498,0.0284248089758224,0.0304463402571711,0.0323965611550886,0.0345747430674745,0.0366177049452029,0.0386615325535293,0.040672394782283,0.0425052897093005,0.057053605942518,0.0708975540291506,0.0840120916953564,0.0972076091073608,0.1089646877604633,0.1244935309488294,0.1375781573444018,0.1503206015806403,0.1612223731060808,0.1726959378926006,0.1870523772542928,0.2002427710582217,0.212619265455496,0.2237128870100428,0.2338064487690917,0.245105108436408,0.255575553642695,0.2657059804407589,0.2753736857061665,0.2845097566851361,0.2917695330157516,0.3002590764685884,0.3073628511769172,0.3141418511308193,0.3206750027394591,0.3273277352432699,0.3330030726782467,0.3385133583403506,0.3441485907260683,0.3489816457875361,0.3502695836655271,0.3507201944455952,0.3514879519778011,0.3514262901938013,0.3531203799112943,0.352705010075528,0.3523764107455094,0.3530246526517276,0.3547572415214926,0.3564162824491846,0.3577715373452195,0.3593416884177808,0.3609777758981624,0.3635419723269305,0.3650046123221828,0.365142287094403,0.3670987955963092,0.3687988312265769,0.3711759504862953,0.3725364781131321,0.3761581506283827,0.3773130816130067,0.3773177546355092,0.3774506064535815,0.3791513783046382,0.3796860356138706,0.3838739290085679,0.380024115755627,0.375917368850231,0.3688871775125144,0.0,1.94351322378432,62.38886967949031,205.69066036741768,332.58362747513894,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95731,41534,390.928748263363,7114,73.20512686590551,5502,56.94080287472188,2247,23.179534320126187,77.3612597271838,79.72674769897206,63.34108899169471,65.08939679560847,77.08805814622757,79.4507185552308,63.24422298155983,64.99347561438725,0.2732015809562398,276.02914374126897,0.0968660101348817,95.92118122121462,90.18284,63.13091595329651,94204.42698812296,65946.15741326896,234.81294,144.16375423977058,244783.53929239223,150091.97045865038,272.05653,130.33176837122443,280616.36251579947,133394.61096342257,3177.9474,1423.4655487414304,3292454.1893430552,1459733.491493279,1376.26843,590.1736728066772,1426930.7120995289,605781.0769830853,2215.55004,896.9049006178034,2287847.8653727635,914153.3657447244,0.37934,100000,0,409922,4282.019408551045,0,0.0,0,0.0,19617,204.37475843770568,0,0.0,25301,260.7201429004189,2037707,0,73076,0,0,3523,0,0,53,0.5431887267447326,0,0.0,0,0.0,0,0.0,0.07114,0.1875362471661306,0.315856058476244,0.02247,0.3157684098185699,0.6842315901814301,25.319963341715848,4.542724571286043,0.331879316612141,0.1977462740821519,0.2333696837513631,0.2370047255543438,11.34807791709452,5.763442419321026,23.668717635100563,13004.53665839573,61.84653829177653,12.821863157141571,20.636128824293177,14.113765679808578,14.274780630533202,0.5554343874954561,0.7794117647058824,0.7097480832420592,0.5841121495327103,0.1242331288343558,0.7218100890207715,0.9096045197740112,0.8725701943844493,0.7581227436823105,0.1456692913385826,0.5014443909484834,0.7166212534059946,0.6544387380777696,0.5362462760675273,0.119047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021373365342733,0.0043697785708492,0.0064642487467272,0.0088691570744988,0.0110241025119495,0.0130139915683998,0.0153162156098953,0.0176443559503752,0.0200905865633339,0.0219492219492219,0.0239203543452405,0.0259746929049751,0.0280263293222256,0.0300807647931432,0.0318556126555631,0.0338368017864342,0.0361199995857798,0.0381470258602797,0.0402316778970135,0.0419267116079894,0.0569975776812562,0.0710876664154735,0.0847528740454812,0.0974135211859951,0.1093007324656162,0.1249418678391747,0.138295165394402,0.1515851063829787,0.1633027914824544,0.1743245126094552,0.1884385596641369,0.2019727876441195,0.2135721817015772,0.2261734331457297,0.2375996043303841,0.2485921959530473,0.2592258222712631,0.2693422294109718,0.2789454005732996,0.2862192429563367,0.2942637916291109,0.3024945111412155,0.3105983592992742,0.3178429096305516,0.3247099613281771,0.3304800206619193,0.3359233488650985,0.3415282138635006,0.3468983465617029,0.352242273825397,0.3531328692045622,0.3533933851337413,0.3546351973637887,0.3554964282615611,0.3561855746775945,0.3552300613496932,0.3540699424804703,0.3554927540994381,0.3568290222761698,0.3572438225768934,0.3581197865784925,0.359907028487425,0.3605407795817802,0.3619961353525367,0.3640454875393177,0.3643150036799495,0.3648679744578036,0.3674844286259057,0.3705396690407852,0.3719306692344728,0.3747073674546706,0.3764329512130098,0.3777117196888242,0.3802234807898362,0.3822029095031173,0.3888689836378837,0.3938879456706282,0.392321905152946,0.3958392704474209,0.3944878650761004,0.0,2.113684379437576,59.52474430277909,204.29360652855144,320.6179500744201,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95647,41823,393.2899097723922,7084,72.64211109600927,5530,57.18945706608675,2280,23.48217926333288,77.2430810454354,79.64806551403474,63.27207635196621,65.05061628831459,76.96400319112539,79.3677224916868,63.168361471344994,64.94838473501093,0.2790778543100174,280.3430223479353,0.1037148806212187,102.2315533036533,90.36258,63.38468717680144,94475.08024297678,66269.39389296208,237.36386,145.46146045623604,247528.7881480862,151443.8094830324,274.94973,131.43563904997978,283157.966271812,134128.8516152666,3188.9128,1446.3564354902037,3299730.383598022,1478081.1314863844,1324.27308,576.8228174425276,1369385.8145054209,588007.6643817036,2242.56588,939.3076075444806,2311826.2569657178,955325.2135836948,0.38049,100000,0,410739,4294.321829226217,0,0.0,0,0.0,19760,205.93432099281733,0,0.0,25585,263.1969638357711,2028231,0,72746,0,0,3545,0,0,46,0.4809351051261409,0,0.0,0,0.0,0,0.0,0.07084,0.1861809771610292,0.3218520609824957,0.0228,0.3147501343363783,0.6852498656636217,25.383209678529024,4.54418742512713,0.3327305605786618,0.2081374321880651,0.2229656419529837,0.2361663652802893,10.996193162622824,5.513163564387829,24.28261764158112,13067.746685900456,62.38884854701988,13.435650046064792,20.972132578804896,13.676400910536495,14.304665011613698,0.5508137432188065,0.7662901824500434,0.7016304347826087,0.583941605839416,0.1171516079632465,0.7072819033886085,0.9166666666666666,0.8385093167701864,0.7491166077738516,0.1648351648351648,0.4984310885831523,0.701120797011208,0.6529108327192336,0.5347368421052632,0.1045498547918683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022600129722717,0.0042095226502748,0.0064566561424525,0.0087991139922169,0.0111378963107625,0.0134630072814298,0.0156410910017843,0.0177973370364319,0.0200936681937172,0.0223544350461834,0.0244998000225615,0.0266079258962588,0.0288875862565431,0.0308955485273362,0.0328234346937511,0.0347123845764096,0.0367949448386595,0.03894297635605,0.0409086653976971,0.0430449422974677,0.0571995820271682,0.071600645201835,0.0847751228320665,0.0979876226160906,0.1102818536894331,0.1254406300612912,0.1384504259522848,0.1512622063025031,0.1629733460307949,0.1749852317276193,0.1897681043692201,0.2033890954822902,0.2162512527778988,0.2281958593493263,0.2388018565270596,0.2502441514626892,0.2605218713999709,0.2702343098121462,0.2797629878991902,0.28900029828144,0.2973026254754615,0.3048517520215633,0.3116916985739518,0.3186047907786516,0.3253729525665225,0.332015175294423,0.3374791350293051,0.3435465338950593,0.3482199721850345,0.3541520405865444,0.3544597769436418,0.3556481315437352,0.3561039732010346,0.3568217414003132,0.3572558500477555,0.3569737044441027,0.3571167215514087,0.3578313253012048,0.3580403735237572,0.3586796451276894,0.359710057384476,0.3603508422206717,0.3613725572954037,0.3611949713873744,0.3622756666424471,0.3633155108383596,0.3646233361245055,0.3658428108520236,0.3666773196974539,0.3683064516129032,0.3698985500532728,0.3725352871457817,0.3756390593047035,0.3792810204870506,0.3819491118578972,0.3835616438356164,0.3801536290954695,0.3819946314268015,0.385065477848983,0.389751552795031,0.0,2.389074515918672,60.85424172542567,204.4993573917077,320.830623370676,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95815,41473,390.59646193184784,7288,74.76908625998017,5705,58.9260554192976,2327,23.91066116996295,77.44904619750217,79.77396816856213,63.38601454967061,65.10623639280719,77.1578145721936,79.4815461641763,63.28014670528951,65.00235379662907,0.2912316253085691,292.4220043858412,0.1058678443811018,103.88259617812425,90.47896,63.308247347995,94430.8928664614,66073.41997390283,235.27527,143.58948574178766,244949.38162083185,149262.8388113903,274.39816,131.28148410238146,281885.5294056254,133660.21985128164,3287.8866,1491.5459577044282,3398929.0194645934,1524468.820046715,1385.16968,608.1052949434877,1429358.3572509524,618806.3682981592,2295.2429,955.9133538385844,2360848.7397589106,970090.7119815588,0.37974,100000,0,411268,4292.313312111883,0,0.0,0,0.0,19660,204.560872514742,0,0.0,25674,263.5704221677191,2040915,0,73237,0,0,3666,0,0,37,0.3757240515576893,0,0.0,0,0.0,0,0.0,0.07288,0.1919207879075156,0.3192919868276619,0.02327,0.3228120516499282,0.6771879483500718,25.11312729201901,4.530119526805813,0.3226993865030675,0.2054338299737072,0.2345311130587204,0.2373356704645048,11.090216197648848,5.616703270113245,24.885083935009103,12923.42757483983,64.33046102085274,13.587911538643224,20.84089080221468,15.095100273181032,14.80655840681381,0.5447852760736196,0.7773037542662116,0.694731124388919,0.577727952167414,0.1070901033973412,0.7138888888888889,0.9304347826086956,0.8704883227176221,0.7249283667621776,0.16,0.4876905041031653,0.713422007255139,0.6343065693430657,0.5257836198179979,0.0936051899907321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.0042674829959555,0.0066461700810731,0.0087971475299925,0.0109317957635478,0.0130736256910999,0.015446101770949,0.0177384949836189,0.0198978027593254,0.0220605539695695,0.0239178553861288,0.0259649626946089,0.0281150094059355,0.030095238095238,0.0323745088130034,0.0345582841734423,0.036204059243006,0.0380025093062079,0.0397626914365272,0.0415486799367035,0.0567273789405603,0.0709603220241518,0.0843359604259243,0.0974143999327596,0.1093033793110715,0.1249445184198846,0.1380962476150095,0.1514249255635899,0.1628919210130471,0.1742980746578716,0.1880054198210598,0.2009701710223528,0.2134434986536958,0.2251009494706973,0.2360626221373207,0.2477064220183486,0.2586512223645375,0.2686026019509019,0.2771865872710394,0.2849912022120152,0.292955762837089,0.299919480004201,0.3075933531605532,0.3147034561908974,0.3211588581126129,0.3277626109840379,0.3340324332422006,0.3399677587235501,0.3450967216715986,0.3500842815002107,0.3503332795785626,0.3511705226136176,0.3519393581413664,0.3529717478237018,0.3531567080045096,0.3524824538601507,0.3513270284351958,0.3520981426278377,0.3528389635610978,0.3539730028136909,0.3549865329941642,0.3566143829535365,0.3573434487383687,0.3578515913723206,0.3592546224961479,0.3597916666666667,0.3612719235705119,0.3638337371385419,0.3637678602928206,0.366374850775965,0.3693450061878351,0.3714683965045837,0.3748169838945827,0.3755183535555214,0.3743795341733486,0.3767352800382958,0.3790697674418604,0.3798721385852753,0.3809256661991584,0.3740279937791602,0.0,2.4022141366499885,63.22213270202788,213.71547737936172,324.9722290191906,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95813,41456,389.0077546888209,7001,71.94222078423596,5518,57.069499963470506,2221,22.825712585974763,77.3497797498425,79.6823709378327,63.33168066437421,65.05970414000446,77.0792715244654,79.41044085766174,63.23383822077373,64.96327369051095,0.2705082253770996,271.9300801709608,0.0978424436004772,96.43044949351064,89.95514,62.96364419907121,93886.15323599096,65715.13698461713,233.74952,142.6265953616247,243349.9420746663,148244.97235409048,266.99788,126.90338868154728,274823.6564975525,129525.52201592564,3150.14744,1412.8917246908609,3261097.053635728,1448007.73607042,1322.74807,566.142089238329,1370391.523070982,580755.9111600192,2183.40092,891.6753299512678,2247532.1511694654,906608.6330091004,0.3788,100000,0,408887,4267.55241981777,0,0.0,0,0.0,19507,203.0413409453832,0,0.0,24877,255.87342009956893,2039695,0,73188,0,0,3471,0,0,43,0.4383538768225606,0,0.0,0,0.0,0,0.0,0.07001,0.1848204857444561,0.3172403942293958,0.02221,0.3080043266630611,0.6919956733369389,25.493986839275887,4.504249828312027,0.3316418992388547,0.2049655672345052,0.2339615802827111,0.2294309532439289,11.07387338205753,5.602242225231842,23.270947223735043,12898.694470907149,61.95712546730677,13.158536795833086,20.57854242191894,14.34845159581604,13.871594653738704,0.5462123957955781,0.757736516357206,0.6956284153005464,0.5662277304415182,0.1208530805687203,0.7095057034220532,0.9,0.8678414096916299,0.740484429065744,0.1157024793388429,0.4951225315251011,0.6991260923845194,0.6388081395348837,0.5159680638722555,0.1220703125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172275462447,0.0042686079876707,0.0066981955467148,0.0091334870820591,0.0113213304851998,0.0131968840690392,0.0157014681892332,0.0178843032573522,0.0200537628913396,0.0224157872649668,0.0245717624627118,0.0264800706409019,0.0285746601682193,0.0305314427522576,0.0327508664796171,0.034883240338913,0.0368188969857568,0.0387188449690394,0.0407272727272727,0.0427789114229792,0.0568549312524776,0.070024467261967,0.0829665031652203,0.0958786070069985,0.1080605383529015,0.1234339483004704,0.1370814640406418,0.1496722427957263,0.1616668624582163,0.1725654225654225,0.1869094435166729,0.2001233659423426,0.2121080281490988,0.2234585578594148,0.2335566482954358,0.2445426944130487,0.2545870535714286,0.265310942895385,0.2747543290288904,0.2839705495059141,0.2915369931162145,0.2989593077642656,0.3063281555006092,0.313314332247557,0.3201520081589044,0.3270566502463054,0.3334125326697262,0.3391594158652623,0.3450873786407767,0.3497445915444622,0.3509386665947898,0.3514679531357684,0.3524215398509822,0.353071669880671,0.353869752341807,0.3533060071539323,0.3525517898245892,0.3536952622311451,0.3548105255944631,0.3556120986238532,0.3562527020168793,0.3575624082232012,0.3588967373023881,0.3597666330079659,0.3614777635674814,0.3620563291801905,0.3632566655223709,0.3663366336633663,0.3695545250140528,0.3719611342454888,0.3749885855173043,0.3762839959550801,0.3761949984172206,0.3769810740113863,0.379502694525858,0.3802182163187855,0.3823620104841196,0.3815228426395939,0.3916506454270804,0.398749022673964,0.0,2.0227587716554893,58.07152382340707,210.9877000434431,319.68418457422024,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95790,41551,390.9802693391794,7076,72.63806242822841,5489,56.602985697880776,2246,22.97734627831715,77.41775944651599,79.7466674056896,63.37436231324406,65.09553969260051,77.14583912782344,79.47727012404474,63.27425666876098,64.99961714549207,0.2719203186925512,269.39728164487065,0.1001056444830794,95.92254710844372,89.75648,62.8039352549488,93701.30493788495,65564.18755083912,232.3248,142.0524327593876,241862.1881198455,147622.32253824783,265.8305,126.93360895680668,273204.0818457041,129123.40178601407,3193.15236,1433.4497644597318,3293407.3702891744,1456365.3037475017,1326.18907,578.4662339285081,1363402.5994362668,582877.2532336855,2211.49894,914.5431562100238,2264646.936005846,916732.5733259636,0.38004,100000,0,407984,4259.150224449316,0,0.0,0,0.0,19391,201.7225180081428,0,0.0,24764,254.2645370080384,2044100,0,73368,0,0,3548,0,0,44,0.4593381355047499,0,0.0,2,0.0208790061593068,0,0.0,0.07076,0.1861909272708136,0.3174109666478236,0.02246,0.3153080441216034,0.6846919558783966,25.05165786546651,4.640241085953295,0.3352158863180907,0.1974858808526143,0.2291856440153033,0.2381125888139916,11.281926318827496,5.66615696086287,23.67213844923779,12968.463102273536,61.516581877076256,12.66417998501946,20.675904463682617,13.961813057023232,14.214684371350971,0.5461832756421935,0.7859778597785978,0.6820652173913043,0.5922098569157392,0.1117061973986228,0.7255779269202088,0.9291784702549576,0.8623655913978494,0.7410071942446043,0.1551020408163265,0.4881870781099325,0.7168262653898769,0.6210909090909091,0.55,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022175194159519,0.0043283022310522,0.0068289515073413,0.0089679267128435,0.0111547221996258,0.0133250539517081,0.0153297319335439,0.0174430472768841,0.0195322880680308,0.0214416571995865,0.0236782221857766,0.0256839295796335,0.0276110197368421,0.0297015432448292,0.0318928449902558,0.0338779978929537,0.0362420830401125,0.0380177284744181,0.039933513401205,0.0419152325327169,0.0569687610859539,0.0709939784226812,0.0840382821262723,0.0959694108007605,0.1076905253401862,0.1237243011388847,0.1379222677725871,0.1505119127356234,0.1627204729030399,0.1742731032118446,0.1876909176956503,0.2006461302417045,0.213181156744782,0.2249740649740649,0.236082576165416,0.2477624489705605,0.2578598822689975,0.2682384391602736,0.2772326587958032,0.2865640227860264,0.2953158940703425,0.303139306736429,0.3108564678086237,0.3178819839341082,0.3238474327390993,0.3300661240472349,0.3360785833010485,0.3424163086855952,0.3469965852649007,0.3512345516350892,0.3521615227443811,0.3527251722572925,0.3538481034045788,0.3548429016980478,0.3555440029706647,0.3549731162206461,0.3538425009893154,0.3551596749035383,0.3564395296848069,0.3570587185436373,0.3575673496934816,0.3586849271815921,0.3595467967915558,0.3595972225323182,0.3603900794606309,0.3617548804676897,0.3633225889266052,0.3642922403200907,0.3667170527647906,0.3684984304843644,0.371002326748483,0.3721314094031202,0.3724747474747474,0.3771054035515586,0.3807539306686872,0.3845509984455339,0.3880829823740446,0.3868986693961105,0.395054945054945,0.4020938348196975,0.0,2.6919601747104345,58.59500932779312,203.4808434702146,318.42669110115696,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95726,41324,388.5464764013957,7138,73.38654075172889,5591,57.86306750517101,2281,23.45235359254539,77.3893283971574,79.74944414812165,63.35181630130408,65.09320462885064,77.10691685036967,79.4672141221618,63.24848309469689,64.9928760436683,0.2824115467877277,282.2300259598478,0.1033332066071892,100.32858518233922,89.46366,62.63468672052095,93458.05737208284,65431.21693220333,232.3892,141.74222976542245,242239.26623905727,147545.06588118424,271.46101,129.54397831578717,280610.2939640223,133038.12349297586,3238.779,1457.627005900402,3353356.9563128096,1492679.6125403787,1390.36926,601.5191872575055,1440366.577523348,616295.71616646,2255.91802,933.9851118466696,2321397.6767022545,945291.5386890244,0.37755,100000,0,406653,4248.093516912855,0,0.0,0,0.0,19403,202.13943965066963,0,0.0,25230,260.54572425464346,2043199,0,73290,0,0,3573,0,0,49,0.5118776507949774,0,0.0,0,0.0,0,0.0,0.07138,0.1890610515163554,0.319557298963295,0.02281,0.3198617388992289,0.680138261100771,25.15686410026893,4.54671706472273,0.3255231622250045,0.1967447683777499,0.2364514398139867,0.2412806295832588,11.136556232234293,5.613779477863778,24.217263323528307,12922.421531756592,62.858354487381206,13.008803618821831,20.56834507750082,14.499715080600865,14.78149071045769,0.5439098551243069,0.7736363636363637,0.7153846153846154,0.5514372163388804,0.1178650852483321,0.6883686905632772,0.8966480446927374,0.8329718004338394,0.7338129496402878,0.1185185185185185,0.4971590909090909,0.7142857142857143,0.6754966887417219,0.5028735632183908,0.1177015755329008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585251729341,0.0046722815125624,0.0066644350445817,0.0091081709533625,0.0112337847179862,0.0132320908739287,0.0153676830262514,0.0175914777249443,0.0198432566646571,0.0220917025652569,0.0241315708576698,0.0263473791129305,0.0287196876284422,0.0308495198097767,0.0327853636401138,0.0345889526171653,0.0365163013656082,0.0385261716561897,0.0403097552102281,0.0423160263355279,0.0571717973351154,0.0708747109236838,0.0843822110341934,0.0966815973755599,0.1090497022084014,0.1245849284067595,0.1380853884911164,0.1503518465289089,0.1627959148790701,0.1739880984292071,0.187655464266101,0.2000281242225275,0.212683849507017,0.2244344584030351,0.2348980736861791,0.246092495153697,0.2563564524410117,0.2667701444189499,0.2754754663882711,0.2840073318822316,0.292225666173205,0.3003706691923621,0.308247288554566,0.3139927652540545,0.3209089363355923,0.3274774552801459,0.3338674745552648,0.3391484705044027,0.3440362811791383,0.3498455690187693,0.3515884656269763,0.3514859658778206,0.351909707562836,0.352052397958446,0.3527829782175864,0.3533985337557586,0.3526993263544071,0.3537563343555767,0.3553107923497268,0.3569170313476824,0.3577347030593881,0.3591802824702299,0.3599445657651604,0.3610126922904426,0.3611097696431158,0.3627399833055091,0.3626916378793502,0.3636020151133501,0.3640004215407313,0.3672051760409637,0.369851127956891,0.3734187349879904,0.3758640370346883,0.3766620816139385,0.3780741581536133,0.3814788397527341,0.3850865104884397,0.378827823970797,0.3722566122678672,0.3774912075029308,0.0,2.1560546049116365,60.34646852791426,211.98014848201956,320.38079927076853,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95685,41593,391.430213722109,7106,73.17761404608872,5509,57.12494121335632,2264,23.326540210064277,77.35982293729873,79.73488143961278,63.33991942654043,65.08956494942201,77.08580014275228,79.4598167896233,63.24006248394986,64.99201423853995,0.2740227945464539,275.0646499894742,0.0998569425905699,97.5507108820608,90.21826,63.13676818037687,94286.73250770758,65983.97677836324,232.89022,142.25668384793755,242948.12144014213,148228.32236065858,268.53383,127.664284961424,277958.2797721691,131347.05266278447,3174.01036,1426.2599205303634,3291609.0087265507,1465124.3897790338,1312.62751,574.9414281313279,1360647.154726446,589694.5512312981,2234.88756,919.1787875248862,2303837.4457856505,933166.5226845328,0.3799,100000,0,410083,4285.760568532162,0,0.0,0,0.0,19445,202.7486021842504,0,0.0,25026,258.91205518106284,2037503,0,73129,0,0,3494,0,0,51,0.532998902649318,0,0.0,2,0.0209019177509536,0,0.0,0.07106,0.1870492234798631,0.3186039966225725,0.02264,0.3174412393162393,0.6825587606837606,25.304627200907813,4.571558071976699,0.3256489381012888,0.2054819386458522,0.234162279905609,0.2347068433472499,11.216027343635934,5.627095619610141,23.984094266788897,12964.41770968731,62.0784385050782,13.139285484721857,20.304603664970337,14.409192194927371,14.225357160458644,0.5476493011435832,0.7676678445229682,0.6984392419175028,0.5806201550387597,0.1129156999226604,0.7136563876651982,0.933130699088146,0.8787234042553191,0.6946308724832215,0.1698113207547169,0.4931275620930793,0.6998754669987547,0.6344410876132931,0.5463709677419355,0.098249027237354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023696682464454,0.0047536513921407,0.0068381271242327,0.0090999573439499,0.0111741499918659,0.0132424041935976,0.0154576671863377,0.0173142064237032,0.0193674920323608,0.0217391304347826,0.0238802606236938,0.0263152495075508,0.0286771507863089,0.0307464192674814,0.0325854866161225,0.0344802637698835,0.0366075865496107,0.0386151245164033,0.0405044340711322,0.0423853344866757,0.056990325748553,0.0710119889011046,0.0844362346372233,0.0965047031838555,0.1078660928996329,0.123785842767961,0.1373498068186643,0.1501134318184238,0.1625761624799572,0.1737212646762111,0.1885572675358258,0.2020853860562816,0.2146564387138893,0.2258212777133352,0.2367189650426644,0.2480396065922381,0.2587826979733952,0.2675180717473665,0.2764779931274595,0.2850912836948435,0.2933223851598279,0.3011766357107768,0.3091276978417266,0.3157976690981829,0.3218372671561191,0.328256024430188,0.3342335246239826,0.3405123641217977,0.3456486573924296,0.3511573279843754,0.3523056015285458,0.3531937734836285,0.3540958639459619,0.3550229135645411,0.355612351035692,0.3549049662783568,0.3545823684294008,0.3558981784674115,0.3564706084034766,0.3581257839096936,0.3582650529955649,0.3592907013646461,0.3599351960949335,0.3613286948715071,0.3615338237067406,0.3633845510609386,0.3652677527032039,0.3657713889414287,0.3676527489535333,0.3693848240644698,0.3718800091596061,0.372755052806519,0.3750239540083041,0.3744595429277331,0.3741438356164384,0.3760694059525244,0.3751741216529949,0.373597225056111,0.378208629164391,0.3737412858249419,0.0,1.7029138723050774,60.75679914888986,209.51132839474,313.04611932706496,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95856,41769,391.5143548656318,7051,72.41069938240695,5463,56.4388249040227,2264,23.201468869971624,77.34109898624328,79.63300785866743,63.34986309044478,65.04443696393233,77.06594169478156,79.35722001319408,63.24854997831027,64.94548157837708,0.2751572914617242,275.7878454733458,0.1013131121345054,98.95538555524296,89.61326,62.74204383700901,93487.37689868137,65454.47737962048,232.98955,142.7224024251093,242492.94775496575,148323.4147315862,266.91639,127.29779869282724,274987.66900350526,130112.0637620368,3168.66516,1425.4374409961238,3276784.802203305,1458194.709768949,1310.74955,566.3484018443158,1357074.4345685192,580492.9964959858,2233.05642,927.709330636089,2292267.96444667,937816.0902964256,0.3822,100000,0,407333,4249.426222667335,0,0.0,0,0.0,19492,202.7624770489067,0,0.0,24833,255.581288599566,2040292,0,73268,0,0,3642,0,0,40,0.4172926055750292,0,0.0,0,0.0,0,0.0,0.07051,0.1844845630559916,0.3210892072046518,0.02264,0.3240877878012656,0.6759122121987343,25.375182201393176,4.535665095155892,0.3320519860882299,0.1991579718103606,0.2297272560863994,0.23906278601501,11.086627223634002,5.577901211386091,24.102056850937256,13040.515133387778,61.59804013401386,12.814191789757157,20.390779959556635,13.924117038973822,14.468951345726245,0.537799743730551,0.7601102941176471,0.6957001102535832,0.5713147410358566,0.1010719754977029,0.6953298739807264,0.9302949061662198,0.8413793103448276,0.6881720430107527,0.1259541984732824,0.4861448711716091,0.6713286713286714,0.649746192893401,0.5379098360655737,0.0948275862068965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019239532175586,0.0044482272952954,0.0068871780827475,0.0092899059841208,0.0112414367897871,0.0135044370267849,0.0158215919394439,0.0179546034174955,0.0202439074214042,0.0225663897868161,0.0245633802816901,0.0265330611993723,0.0288000328673698,0.0308972868416449,0.0331073283323716,0.0351639505000567,0.037370227902552,0.0392374242345749,0.0411021480258718,0.0433330558907986,0.0585941166042733,0.0722071841392932,0.086102149411321,0.0991377952342445,0.1111017511346046,0.1257789231321687,0.139450377150606,0.1526659933017915,0.1648187473988624,0.1762663179781783,0.1900585424648099,0.2032206432634698,0.2148455760053051,0.2258487637452725,0.2365496754318407,0.2478118283143876,0.2584727321422593,0.268532271131515,0.2776800408603371,0.2870071253465301,0.2949269828045083,0.3027864211683784,0.3097078071929845,0.3163906133895827,0.3234640197305276,0.3293451580674207,0.3351616700478373,0.3408651153317378,0.3465608122984471,0.3522035018169805,0.3536429197277078,0.3540917668774191,0.3546985027447328,0.3554553887181865,0.3560916695245053,0.3559665724468477,0.3554182418909045,0.3567094284866273,0.3575592893872427,0.3589185102514716,0.3601715732587581,0.3604048776599984,0.3601412650411318,0.3613069414316703,0.3642379272594575,0.3667132351002978,0.3683271461049239,0.3704492702934724,0.3731839230796422,0.3746752468124225,0.3768115942028985,0.3775220765319775,0.3791107435913746,0.3816676885346413,0.3836567732115677,0.3818378119001919,0.3810261974887614,0.3843800978792822,0.3862815884476534,0.3857589984350548,0.0,2.1500071430899697,59.52703096073808,204.09352334840483,317.16238821064354,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95644,41828,393.3963447785538,7305,75.12232863535611,5678,58.79093304336916,2259,23.30517335117728,77.31769350596971,79.73980045086542,63.289715480586615,65.08108155855925,77.04280186898634,79.46267257047141,63.18904766707331,64.98193644821069,0.2748916369833694,277.12788039400493,0.1006678135133043,99.14511034855876,90.37974,63.3026550125039,94495.98511145498,66185.70429143897,238.08952,145.56011341935377,248398.20584668143,151654.64997214018,275.08272,131.51298035323114,283386.9976161599,134397.86610733316,3287.5264,1485.1028749680445,3405359.3325247797,1520846.4252520243,1386.78713,598.2541506411736,1433502.9066120195,609057.0664559965,2229.73778,926.8948944074276,2300733.386307557,942583.347488646,0.38239,100000,0,410817,4295.272050520681,0,0.0,0,0.0,19827,206.72493831291035,0,0.0,25666,264.2193969302831,2030973,0,72844,0,0,3606,0,0,50,0.5123165070469659,0,0.0,0,0.0,0,0.0,0.07305,0.1910353304218206,0.3092402464065708,0.02259,0.3172763963025647,0.6827236036974352,25.293793089029226,4.537444325914045,0.3316308559351884,0.2000704473406128,0.2330045790771398,0.2352941176470588,11.03112443315528,5.491955519555661,24.12998649543412,13099.981584059691,64.12737380463118,13.34264899429392,21.40522930363904,14.713332035473464,14.666163471224744,0.5484325466713632,0.7570422535211268,0.7010090281465746,0.5978835978835979,0.1070359281437125,0.7203626220362622,0.9133858267716536,0.8669438669438669,0.77,0.1360294117647058,0.4903393025447691,0.6781456953642384,0.6440798858773181,0.5474095796676441,0.0996240601503759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021983142880298,0.0047864357279032,0.0068934010152284,0.0091769225297005,0.0113036312024988,0.0136715566422167,0.0158019301001775,0.0182265858866559,0.0200587434629987,0.0224481846696324,0.0246163321870348,0.026877519124784,0.0288329849347653,0.0310601293570315,0.0328150023247404,0.0349348593188944,0.0369836595885866,0.0391386993237979,0.0410457081009075,0.0430606540964458,0.0577815400050163,0.0718596755941154,0.0858664369892653,0.0992132452842111,0.1114126704191439,0.1259968439892822,0.1396297791851741,0.1517922808812714,0.1644185822627745,0.1761022501476827,0.19017571109601,0.2034043383101826,0.2163760523650304,0.2280720965375265,0.2387931414466434,0.2499223602484472,0.2602820868165765,0.2704349392977003,0.2797497388381705,0.2884287007643911,0.2972309402758636,0.3048827599124357,0.3126458844299103,0.319480114250054,0.3249732281931464,0.3311577752553916,0.3369950522953592,0.343333757799567,0.3492814899356713,0.3547973285723732,0.35541014570966,0.3555610677029504,0.3560171010116688,0.3569682151589242,0.3573871409028727,0.3574157906851837,0.3578467935187977,0.3574434508153603,0.3585134765357778,0.3601627612299894,0.3609852880619923,0.3630281620650865,0.3647250271217558,0.3652255345715623,0.3658659499412061,0.3670167027125622,0.3679384965831435,0.3690618136178224,0.3714115252333824,0.3713162284534117,0.3747828472158727,0.3779993601365042,0.3777144666033555,0.3799327011318446,0.3827534039334342,0.3825104104699584,0.3832178598922248,0.3908138597904915,0.3949972512369434,0.4039785768936496,0.0,2.2746154196399004,63.49191792878247,215.38004573819867,319.1282492177191,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95720,41646,391.2244045131634,7122,73.22398662766402,5469,56.64437944003343,2242,23.098620977852068,77.34880342590687,79.70673073539926,63.338894218876014,65.07726612741473,77.07706542550409,79.43240924509989,63.23878301216503,64.97835339839862,0.2717380004027774,274.32149029937136,0.1001112067109843,98.91272901610648,90.63934,63.4961517565033,94692.16464688675,66335.3027126027,236.2743,145.12637080098636,246370.4346009193,151146.93982551852,271.79185,129.8721378017543,280741.08859172586,133221.0917593426,3140.31264,1418.1429463497511,3253223.861262014,1454049.505171073,1325.5199,577.5479001502681,1372162.317175094,590745.6854892061,2200.7122,914.8922251207616,2269236.54408692,930981.783465083,0.37971,100000,0,411997,4304.189302131216,0,0.0,0,0.0,19752,205.86084412870875,0,0.0,25333,261.46050982030926,2031083,0,72884,0,0,3440,0,0,50,0.5223568742164647,0,0.0,0,0.0,0,0.0,0.07122,0.1875641937267915,0.3147992137040157,0.02242,0.3207043756670224,0.6792956243329776,25.21939987441661,4.558029459836392,0.3313219967087218,0.2035106966538672,0.2329493508868166,0.2322179557505942,11.176443377565253,5.682693728563939,23.859878947646628,12962.870432281592,61.602128986234106,12.954680768948853,20.43975904003585,14.116559928580548,14.091129248668873,0.5576887913695374,0.7762803234501348,0.7064017660044151,0.5934065934065934,0.1181102362204724,0.7038690476190477,0.9120234604105572,0.8726851851851852,0.7474402730375427,0.1402877697841726,0.5100606060606061,0.716321243523316,0.6543478260869565,0.5474006116207951,0.1118951612903225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265176754123,0.0043790293151684,0.0066764750646846,0.0090004977701927,0.011184317553278,0.0132641115691963,0.0156257963244212,0.0179034398285189,0.0203975269531449,0.0223837060539378,0.0244552405551114,0.0265307798099226,0.0284380654712946,0.0304739941522876,0.0326999649274824,0.0346666115582926,0.036653171948934,0.0387321020958705,0.040767735160482,0.0428970346135411,0.0569874057519998,0.0712693479011647,0.0845057123973184,0.0975350593879204,0.109620394688268,0.1248823212075695,0.1387037901617079,0.1511780174387037,0.1634277411566115,0.1747870674304348,0.1892430493466763,0.2024453581475871,0.2143983641683253,0.2253636661927157,0.2367245439140864,0.2479529312694596,0.2589249810106787,0.2686046249802977,0.2779253809296728,0.286989401317674,0.2950145880609456,0.3027040941694066,0.3101361752516282,0.3169793227449805,0.3228173325720672,0.3288270524733196,0.3345255812208451,0.3402853727395274,0.3451586192620193,0.3505090736442287,0.3508594676150447,0.3512862179134075,0.3509316332143814,0.3517140540853553,0.3521827169316896,0.3518620774280631,0.3513007614213198,0.3517169957095655,0.3531384762817441,0.3540253744430328,0.3550976016801365,0.3576274203437432,0.3578563035084774,0.3588909576257879,0.3597674250283481,0.3611009462073292,0.361553442547829,0.3633862500790589,0.365108484741577,0.368555568867058,0.3694065813024921,0.3720017209852641,0.3715693173821253,0.3721757969668833,0.3762773374080794,0.375919006869953,0.376232973226867,0.379783693843594,0.3774964838255977,0.3739742086752637,0.0,1.9040381740491823,59.54867308978455,204.9923956990974,317.03463340350487,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95651,41610,391.8098085749234,7101,73.19317100709873,5544,57.51116036424084,2277,23.51256129052493,77.26744378178137,79.68307453134402,63.28338998351626,65.06953735682872,76.98749323103262,79.40000837324224,63.18111161780917,64.96831238260175,0.2799505507487509,283.06615810177504,0.102278365707086,101.22497422696595,89.68476,62.82751293899639,93762.49072147704,65684.11510490888,235.20242,144.0953789581117,245456.14787090567,150206.70872036013,269.23121,128.2668930236259,278801.35074385005,132015.48345041776,3186.58624,1440.144720600878,3306927.517746809,1481079.8847904128,1319.70839,576.163895615024,1367542.398929441,590190.8873038695,2232.90342,927.3354384877756,2307725.773907225,946301.5736971016,0.38061,100000,0,407658,4261.931396430775,0,0.0,0,0.0,19696,205.45524876896215,0,0.0,25169,260.45728743034573,2034684,0,73017,0,0,3639,0,0,34,0.3554589079047788,0,0.0,1,0.0104546737619052,0,0.0,0.07101,0.1865689288247812,0.320659062103929,0.02277,0.3111170712082607,0.6888829287917393,25.314087231568504,4.506797949405655,0.3354978354978355,0.2050865800865801,0.2299783549783549,0.2294372294372294,11.121151217272638,5.686319959078134,24.34702143965874,13040.313426427088,62.78469982329374,13.42985948678845,20.99982743687096,14.223923277415183,14.131089622219148,0.5447330447330447,0.7590149516270889,0.6795698924731183,0.5905882352941176,0.110062893081761,0.7130620985010707,0.9098360655737704,0.8556485355648535,0.7535211267605634,0.1575091575091575,0.4878107651460294,0.6874189364461738,0.6186685962373372,0.5438950554994955,0.0970970970970971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000385028471,0.0044007300750354,0.0065992527615334,0.0085968620437362,0.0107732530341102,0.0127816026398337,0.0147745579868262,0.0169680139664519,0.0191515250667184,0.0214129911624048,0.0236398133429054,0.0258556929777704,0.0281561188379557,0.030355486862442,0.0324628406275805,0.0344061120473084,0.0362805920064627,0.0384240134515184,0.0402754373920822,0.0423908170605836,0.0572823042514945,0.0714390448261416,0.0850074033624917,0.0978288337615297,0.1105832673528635,0.1258788648877594,0.1394615262067866,0.1522091263667171,0.1641830960302093,0.175568419809041,0.1898963534982042,0.2038521535661669,0.2163162248051891,0.2276935197951546,0.2386472472670828,0.249958452896664,0.2604784069472814,0.2697328441853661,0.2795213007539286,0.2882541065349213,0.2966363688994384,0.3037475575939814,0.3115126826611089,0.3179369022332625,0.3240435496624293,0.3304770841564599,0.3369920685636958,0.3419946503630111,0.3476066934751589,0.3524999007713374,0.3532844348988937,0.353758293904239,0.3540680671912747,0.3551885629775696,0.355356609967174,0.3551521114202702,0.3552321882951654,0.356507706494533,0.3575971610292983,0.3588714014268813,0.3593591143577964,0.3603702229299363,0.3620031628887717,0.3632359550561798,0.3648200585686972,0.3671125594596725,0.3680057388809182,0.3691508896346482,0.3715156023093543,0.3731361279691331,0.3743862899490505,0.3748370981754995,0.3771052461766793,0.379624581353688,0.3794724220623501,0.3788819875776397,0.3755890669180018,0.3786367414796342,0.3737431772479173,0.3711967545638945,0.0,1.77172000868047,62.469404491494565,211.39027534768564,312.52362708891246,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95829,41647,390.2472111782446,7078,72.63980632167716,5528,56.99735988062069,2240,22.926254056705176,77.40182060844235,79.7166619967504,63.36325590393732,65.07614760743044,77.12064423981353,79.43859809902308,63.25968232771446,64.97724296407611,0.2811763686288202,278.0638977273213,0.103573576222864,98.9046433543308,89.47488,62.65880969710592,93369.0845151259,65385.84635038026,234.03665,143.71516728547215,243543.39500568723,149291.19189125643,270.40108,129.6804675394837,278838.4935666656,132648.01465241215,3198.89316,1448.3521520265786,3301588.537916497,1474903.7890686323,1366.74111,600.5719516920624,1409510.1900259838,610062.0166085223,2218.48236,925.023978934795,2273572.9059053105,928250.5325814264,0.38039,100000,0,406704,4244.049296142087,0,0.0,0,0.0,19536,203.16396915338785,0,0.0,25139,258.92996900729423,2040957,0,73257,0,0,3548,0,0,54,0.5530684865750451,0,0.0,0,0.0,0,0.0,0.07078,0.1860721890691132,0.316473580107375,0.0224,0.3223428494839834,0.6776571505160166,25.1608258284876,4.652945011792238,0.3276049204052098,0.196273516642547,0.2331765557163531,0.24294500723589,11.125094889260662,5.572325348208082,23.738961312028454,13035.013175543105,62.19792921704464,12.630273583882488,20.430991232553836,14.363542042022276,14.773122358586054,0.5412445730824892,0.7548387096774194,0.6946438431805633,0.5880527540729248,0.1169024571854058,0.7010014306151645,0.8983516483516484,0.881578947368421,0.7263513513513513,0.1276595744680851,0.4871670702179176,0.6823855755894591,0.6317343173431734,0.5468277945619335,0.1140433553251649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023795540614431,0.0045302982699733,0.0066043095402345,0.0086941507460109,0.0110714612498856,0.013345413086852,0.0155633695153646,0.0175239844866299,0.0198705958112293,0.0220159259789973,0.0241919776941764,0.0269229979676882,0.0291723202170963,0.0311776031960132,0.0333659945335464,0.0354105746081278,0.037410071942446,0.0394458500974739,0.0415571735720888,0.0435334644644957,0.0581333500203372,0.0714099039295832,0.0844388557057529,0.0977751633437677,0.1098379129848655,0.1254132384161218,0.1387149743100799,0.1513521557955608,0.1641016884031676,0.1756129958330209,0.1898461869420243,0.2031057511508785,0.2149282920469361,0.226699591355084,0.2370382585751979,0.2479045098712256,0.2579983044040873,0.2673496699317371,0.2777431103143897,0.2865484354785157,0.2948505848190011,0.302567101339103,0.3102885138813283,0.3174331063584923,0.3244553529118723,0.3315049243778273,0.3370008762047816,0.3419934349474541,0.3471938048742586,0.352472973508098,0.3528445210645404,0.3538334480385409,0.3543356997971602,0.3555385437580344,0.3556334367899731,0.3551254348459075,0.3553690212226797,0.3561731536352742,0.358068376068376,0.3594865752642102,0.3606701774770891,0.3618910155014236,0.3620584844355937,0.363284136973416,0.363157388250012,0.3649928263988522,0.3672660947875402,0.3696027633851468,0.37292953396968,0.3728813559322034,0.3742322852690439,0.378245275948825,0.3812060110329085,0.383107435485106,0.3830307591007431,0.3811280342693955,0.377743668457406,0.3770892784345699,0.380242825607064,0.3787528868360277,0.0,2.6983441355293585,61.06043275632005,203.2146543585492,317.51067713749575,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95698,41628,391.9517649271667,7173,73.79464565612658,5574,57.68145624777948,2340,24.065288720767416,77.32145341825886,79.70913281957888,63.3143933609397,65.080263879968,77.02815033159878,79.41496018265408,63.206999520621245,64.97560364820745,0.2933030866600745,294.1726369247988,0.1073938403184513,104.66023176054762,89.90344,62.97796060616047,93944.9518276244,65809.06665359826,233.75578,143.05009556508475,243660.20188509685,148876.97626352625,270.64396,129.53243137509054,279528.09881084244,132835.14972804527,3222.03132,1464.055425254292,3332651.257079562,1495794.111515478,1357.95219,598.2293044235834,1400699.6279964054,606891.4519825053,2305.43232,960.1877609728178,2371056.782795879,969259.0187449724,0.381,100000,0,408652,4270.225083073837,0,0.0,0,0.0,19526,203.42117912600057,0,0.0,25312,261.2175803047086,2037372,0,73085,0,0,3587,0,0,40,0.4179815670128947,0,0.0,0,0.0,0,0.0,0.07173,0.188267716535433,0.3262233375156838,0.0234,0.3188636665339174,0.6811363334660826,25.179762548950396,4.544818551809077,0.3243631144599928,0.1980624327233584,0.2411194833153929,0.2364549695012558,11.033230589885486,5.499284307883493,24.97015240833823,12974.02607079008,63.12322295376134,12.946052934794697,20.56128976288846,15.12033869093677,14.49554156514142,0.5486185862935056,0.7690217391304348,0.7063053097345132,0.5944940476190477,0.1009104704097116,0.7195207892882312,0.9439775910364144,0.854978354978355,0.7447447447447447,0.1535580524344569,0.4902527075812274,0.6854082998661312,0.6552748885586924,0.5450049455984174,0.0875356803044719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024722379833022,0.0047256870499949,0.006862108169563,0.0088007235698824,0.0111712518313527,0.0136398826501507,0.0157663399859265,0.0178578721666326,0.0197712100921088,0.0219256044383483,0.024205950501343,0.0260017663127195,0.0278775035746983,0.0298724316303608,0.0320499587118084,0.0340884417746254,0.0360046818516101,0.0380775457677778,0.0401114843433135,0.0421070185312571,0.0559658230360257,0.0704624918870255,0.0841292164312252,0.0972596396699781,0.1090055394355051,0.1246692211613777,0.1382425374718695,0.1512388419011909,0.1639589568191534,0.1754660716967369,0.1898102759133367,0.2027780484372124,0.2152165872549659,0.2255848049191448,0.236260411279941,0.2471815544087355,0.2577038937855628,0.2672550452526842,0.2766341148048589,0.2860938681082071,0.2944490069748881,0.3025912673355317,0.309723093679338,0.316560563008788,0.3228934991067196,0.3293701641121679,0.3350273504487476,0.3403957498250302,0.3456107882850819,0.3510746374995052,0.3519523726142532,0.3535488308115543,0.3531069465971537,0.3534780784863958,0.3544496068620443,0.3543794443335227,0.3539267847216708,0.35505492152891,0.3555022283167638,0.3568855191697586,0.3578420299676229,0.3592294707576209,0.3609783821331593,0.3610135135135135,0.3620727299192159,0.3639572248854238,0.3654267589388696,0.3681449690033381,0.3696068691456145,0.3711249248044916,0.372136877932113,0.3741862592134287,0.3767373342727214,0.3762522326628873,0.3754426260886209,0.3762280169799878,0.3752154159486135,0.3695154917862341,0.3777464788732394,0.3765723270440251,0.0,2.098376513747389,62.7144437963581,208.7341201871536,318.45141831095714,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95717,41762,392.39633502930513,7171,73.85312953811757,5541,57.419267214810326,2218,22.95308043503244,77.3455376358958,79.73282435417795,63.32130932583449,65.08737508655126,77.06874782621676,79.44989026648942,63.221311362415,64.98650054284337,0.2767898096790304,282.9340876885311,0.09999796341949,100.87454370788862,90.79532,63.59847443459248,94858.09208395582,66444.28307886005,234.93812,143.26329297064942,244970.94560005012,149194.14257472678,270.87299,129.00121764776176,279291.964854728,132038.09197646176,3172.50492,1424.6757705458383,3290702.9681247845,1464673.3266485198,1323.73177,569.3240447229928,1373403.6900446103,585255.1394231232,2186.14342,909.8055399877884,2264388.499430613,934090.1192889712,0.38196,100000,0,412706,4311.731458361629,0,0.0,0,0.0,19558,203.8509355704838,0,0.0,25179,259.3687641693743,2036183,0,72945,0,0,3624,0,0,45,0.4701359215186435,0,0.0,1,0.0104474649226365,0,0.0,0.07171,0.1877421719551785,0.3093013526704783,0.02218,0.3162871221201225,0.6837128778798774,25.4202410611952,4.489256905839567,0.3344161703663598,0.213499368345064,0.2169283522829814,0.2351561090055946,10.803002299194896,5.347395253055168,23.751020949163596,13076.44480470998,62.393290760441765,13.943286082577124,20.78780230746188,13.23936304773346,14.422839322669295,0.5392528424472117,0.7531699070160609,0.6832164058283864,0.5615640599001663,0.1197237145049884,0.702819956616052,0.9047619047619048,0.8787234042553191,0.6984126984126984,0.1448763250883392,0.4848484848484848,0.6819875776397516,0.6167751265365148,0.5252631578947369,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002127681131521,0.0042699934073735,0.0066602365602314,0.0087095266163946,0.0108346219581671,0.0131391322061519,0.0154392119271481,0.0176260939717941,0.0198073462041884,0.0221193626346618,0.0245013076252499,0.0266536565324568,0.0288018433179723,0.0308513488448776,0.0332401110411657,0.0351397733851625,0.0372702977066025,0.0393445004877846,0.0413044382513206,0.0432594630075328,0.0587541120568116,0.072618624024112,0.0858956868506663,0.0981041955981988,0.1103388632840102,0.1258976447072012,0.1391724137931034,0.1527501198019275,0.1645201628849011,0.1761883807540811,0.1903750808363871,0.2041280429697652,0.2162953449645729,0.227085749294357,0.2379631769509282,0.2492549714728854,0.2605430258121394,0.2701164294954722,0.280685633905073,0.2888916870807482,0.2966947789770821,0.3043956043956043,0.3117142688191118,0.3186526325873238,0.3248382907974417,0.331281925041541,0.3369461946194619,0.3430705141231457,0.3482669973775659,0.3527337324824001,0.3541691855075968,0.3545898759196222,0.355325164938737,0.356995454217476,0.3573336102786267,0.3565057752619903,0.3568339853959102,0.3578119084069995,0.3585261031111415,0.3595139088041296,0.3596791806303422,0.3604237473416413,0.3608223510806536,0.3607865168539326,0.3628536880290205,0.362729920495395,0.364563635321758,0.3668195476830618,0.3703690623344517,0.3717461713783038,0.3733571461281311,0.378832311383631,0.3841582906631266,0.3808539944903581,0.3831144108128688,0.3821710127349909,0.3849033063006862,0.3841702831163464,0.3830611680044284,0.3867554858934169,0.0,1.819004511776517,61.618045850007256,206.8418247931662,316.9119270873694,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95616,41669,390.7400435073628,7370,75.83458835341365,5726,59.35199129852744,2317,23.939508032128515,77.23812690061078,79.66935206083242,63.25655152000609,65.05428391429717,76.95543131746868,79.38256746753723,63.153309293512,64.95114349306104,0.2826955831421003,286.7845932951951,0.1032422264940962,103.14042123613376,91.4881,64.00195827529126,95682.83550870148,66936.45234614631,237.59669,144.87917770292518,247952.9472054886,150984.3307636015,272.87167,129.77491684824585,281389.17126840696,132701.54266009026,3277.39212,1484.082814681682,3400092.9969879515,1524560.3399866982,1379.84471,603.980238245613,1431792.1582161982,620354.2484998469,2286.81588,952.5202054023104,2364908.27894913,974199.2137905258,0.38113,100000,0,415855,4349.219795850067,0,0.0,0,0.0,19905,207.63261378848728,0,0.0,25460,262.33057228915663,2023404,0,72742,0,0,3563,0,0,38,0.3974230254350736,0,0.0,0,0.0,0,0.0,0.0737,0.1933723401464067,0.31438263229308,0.02317,0.3184451023297722,0.6815548976702278,25.293756812497083,4.501389923544546,0.3292001397135871,0.2135871463499825,0.2247642333216905,0.2324484806147397,10.90123446123304,5.3992732637054495,24.778600732469723,13141.566035060603,64.94779093577195,14.359559289959874,21.380787250499445,14.310740972314038,14.896703422998588,0.5387705204331121,0.7636958299264105,0.6710875331564987,0.5742035742035742,0.1104432757325319,0.6856140350877193,0.9029649595687332,0.8239130434782609,0.7474402730375427,0.1461794019933555,0.4901185770750988,0.7030516431924883,0.6217543859649123,0.5231388329979879,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025235122425814,0.0048989279157749,0.0071785395175046,0.0092190724007196,0.0115311024263149,0.0140081705838605,0.0163190371768065,0.0184489028725534,0.0206308941758893,0.0226972437597943,0.0249425428876303,0.0271467176309813,0.0292192420905292,0.0311949114975825,0.033427650873642,0.0355106728610303,0.0377542346526237,0.0400540147501817,0.0420006245446028,0.0441563047650838,0.0591875561874098,0.0735691682209694,0.0870058515164567,0.0995755794972249,0.111636747624076,0.1272983392645314,0.1404882297951899,0.1535903475767685,0.1657519444533598,0.1774271505751694,0.191588986708096,0.2039179124703229,0.2167801688913102,0.2282887384129906,0.2393625814130327,0.2505547911766011,0.2613087248322148,0.2717338595996617,0.2809485896269336,0.2900373241458512,0.2981548102587907,0.3062991202346041,0.3137739051983048,0.3207370168137974,0.3265303634346463,0.3324840134077106,0.3382452702193412,0.3435396308360477,0.3488502159096821,0.3540029420729687,0.3547344360739548,0.3554787417905288,0.3558614640219575,0.3562125194209296,0.3571449889572017,0.3568250057741166,0.3564102564102564,0.3575051631557208,0.3595608102294044,0.3599877781372443,0.3605964072307779,0.3613498885705189,0.3626540604423434,0.3633288990101689,0.3649785449344226,0.3664220521318288,0.3674062562951452,0.3699473316834824,0.3704687057490796,0.371515175686994,0.3738790526557829,0.3776530339481422,0.3805719358315896,0.3815144083384427,0.3840709634802302,0.381624184943687,0.3828077622801697,0.3876528362397274,0.3836183121897407,0.3879508825786646,0.0,2.0692701404796123,63.3865890663236,222.1908932292152,322.712154110205,fqhc6_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95712,41722,391.706369107322,7154,73.28234704112337,5600,57.85063523905048,2271,23.278167836843863,77.33641368994157,79.7107153039075,63.332022412709286,65.08905694942023,77.05724284800681,79.43200508475574,63.2283687795006,64.98850204080003,0.2791708419347571,278.71021915176186,0.1036536332086868,100.55490862019668,89.54638,62.72434799848168,93558.15362754933,65534.46589610674,233.97179,143.35767922402093,243783.5485623537,149109.8286777216,275.50323,131.28617958736774,282931.6491140087,133568.16763921897,3676.5798,1662.273041427376,3799563.7433132734,1695402.0869410683,1399.4332,609.5372115669334,1444485.330992979,619337.24449021,2236.42684,938.0550554496792,2294582.4557004347,945132.6476796146,0.38091,100000,0,407029,4252.643346706787,0,0.0,0,0.0,19595,204.03920093614173,0,0.0,25634,263.08090939485123,2040544,0,73260,0,0,3620,0,0,43,0.4388164493480441,0,0.0,0,0.0,0,0.0,0.07154,0.1878133942401092,0.3174447861336315,0.02271,0.3221896643580181,0.6778103356419819,25.323196326869763,4.5432605220478415,0.3344642857142857,0.2055357142857143,0.2269642857142857,0.2330357142857143,11.31310258070845,5.761151164903195,24.264683009116855,13019.494254649797,63.181396371199895,13.523150196759843,21.071300227939595,14.134743234699808,14.452202711800636,0.54875,0.7680278019113814,0.6849973304858515,0.5845790715971676,0.1249042145593869,0.7019774011299436,0.9021739130434784,0.8586956521739131,0.7423728813559322,0.1638225255972696,0.4968929254302103,0.7049808429118773,0.6284501061571125,0.5368852459016393,0.1136363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509383486684,0.0046653617176644,0.0069546677496319,0.0092690462639238,0.0115255892495651,0.0137901533823559,0.015929185490368,0.0183173371451909,0.0203756146933434,0.0225518498044755,0.0247247678208991,0.0268782981868955,0.0291123359795977,0.0312805776143538,0.0334733214326251,0.0358770814598902,0.0374216929847269,0.0395161373987198,0.041323688367839,0.0433754518276232,0.0578407109217547,0.0718485812337825,0.0845306764551651,0.0970522686178041,0.1092909999367529,0.1243010707226585,0.1376140953471361,0.1506189382337927,0.1626459725454196,0.1746536817407514,0.1885681690989711,0.2006964948141418,0.2133215962441314,0.2244436432761954,0.2356251098997714,0.2471245299712453,0.2572441155492154,0.2679795867898653,0.2779125938357562,0.2866573612191662,0.2945073239534319,0.3025002920901974,0.3103709132171816,0.3173468410212195,0.3239513545004369,0.3300865667598419,0.3360519370051161,0.3415760351078039,0.3476177525674398,0.352680104615222,0.3536945414346765,0.3542727084626526,0.3547394134508126,0.3548709626001652,0.3553279055202648,0.3549056371795659,0.3549478835642558,0.35508320975449,0.3562705817782656,0.3578035925567387,0.3594675390602967,0.3602688928989272,0.3620113844021088,0.3627833019797545,0.3646664577255961,0.3655138159098632,0.3664635548401931,0.3702516581511218,0.3726899383983573,0.3752806286080821,0.3788719371243643,0.3788944180008654,0.3800103439358676,0.3834762275915822,0.3833605220228385,0.3883743602242261,0.3930472909489508,0.3975232198142415,0.3951233028539762,0.3996919522525991,0.0,2.5275574900069664,62.13377548799828,205.49354066432355,324.38865588827696,fqhc6_80Compliance_baseline_low_initial_treat_cost,0 -100000,95595,41243,388.2943668601914,7213,74.09383335948533,5602,57.86913541503217,2295,23.52633505936503,77.26635035352784,79.70371586161329,63.26822878755484,65.07181820278592,76.97902938224598,79.42086751260784,63.1610427921952,64.97014456260304,0.2873209712818578,282.8483490054481,0.107185995359643,101.67364018288085,91.3506,63.8748878279995,95560.01882943668,66818.23089910508,235.18418,143.58657270860678,245308.53078089855,149490.12260955787,266.98649,127.06378358537296,275104.6812071761,129668.46732434368,3672.45983,1654.3768487480536,3794171.557089806,1683137.9243140898,1351.07024,587.8303300377436,1392896.1765782728,594515.3445024049,2252.8746,942.433186866041,2310742.7585124746,945454.245201255,0.37856,100000,0,415230,4343.637219519849,0,0.0,0,0.0,19681,205.1257910978608,0,0.0,24959,256.8753595899367,2028528,0,72786,0,0,3664,0,0,42,0.43935352267378,0,0.0,0,0.0,0,0.0,0.07213,0.1905378275570583,0.3181755164286705,0.02295,0.3244568097509274,0.6755431902490726,25.1528324437121,4.595538034074306,0.3388075687254552,0.203141735094609,0.2240271331667261,0.2340235630132095,11.040766047192353,5.541466088092255,24.46774414868374,12959.956046255544,63.4482749733324,13.417453205990366,21.58645095111971,14.018117514639323,14.426253301582994,0.5458764726883256,0.7574692442882249,0.7012644889357218,0.5649402390438247,0.1189931350114416,0.6929429429429429,0.8952095808383234,0.8564814814814815,0.7128712871287128,0.1444866920152091,0.5,0.7002487562189055,0.655525238744884,0.5178571428571429,0.1125954198473282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0047577986304844,0.007200381853819,0.0094049943061656,0.0117261456403574,0.0138813865079445,0.016176110385369,0.0183215311200351,0.0205351204788458,0.0224925195720785,0.0244575815423774,0.026386661732659,0.0284843680835074,0.0305811028168433,0.0325775964468315,0.034622269590141,0.036693063559849,0.0385034847367491,0.0404055123027603,0.0422937722290017,0.056834577504548,0.0706694893938123,0.0837570384065887,0.0962974666877337,0.1088906023892767,0.1246014174179264,0.137932867073404,0.1511068437616685,0.1632552562839892,0.1747694886839899,0.1886456568882367,0.201324962864175,0.2142748208021961,0.2252051852420035,0.2357681453390951,0.2466826432343673,0.2578442765833817,0.2670541587816527,0.2768571558465175,0.2855864229405487,0.2933453841786306,0.3009419814415596,0.3084881956954584,0.3147159397684324,0.3217153284671533,0.3279328229192393,0.334549695282522,0.3398311999592024,0.3455236563185138,0.3507944061120364,0.350923340482646,0.3506604528031327,0.3514604774610704,0.3524410908511594,0.3534698622786621,0.353475804470646,0.3533054898286513,0.3543719719191852,0.3563640104238101,0.3574016934557979,0.3582576243073095,0.3590875643855776,0.3597512123128821,0.3599901021280424,0.3619649734757648,0.3629100084104289,0.3639996550038812,0.367822662601626,0.370409754714306,0.3728221597751907,0.3744996088897069,0.3767983680480996,0.3769358761039293,0.3796508957280661,0.3817361045800809,0.3865466603505447,0.3888293802601377,0.3903526550466153,0.3898817706901292,0.3900304414003044,0.0,2.7846391625274425,58.19522802061825,226.28619311644903,315.2420110636087,fqhc6_80Compliance_baseline_low_initial_treat_cost,1 -100000,95705,41625,391.5678386709158,7209,74.11316023196281,5622,58.1578809884541,2214,22.80967556553994,77.34534288058313,79.71502545691695,63.32656324425341,65.07497626506348,77.06654659402477,79.43459020899166,63.22318814095735,64.97335971592605,0.2787962865583608,280.43524792528274,0.1033751032960594,101.61654913743234,89.38886,62.57982025943613,93400.40750222036,65388.24539933769,234.5064,143.25887653858973,244445.74473642965,149103.26162540072,268.68322,128.1851402729983,276905.7311530223,130962.4541943346,3706.67855,1670.7753391469453,3838678.553889556,1711409.1208891356,1370.37347,598.7731482869038,1416241.220416906,610032.7703871201,2187.67682,921.6087691007727,2255276.5895198784,936703.8207763364,0.38125,100000,0,406313,4245.473068282744,0,0.0,0,0.0,19582,204.01232955435972,0,0.0,25025,257.69813489368374,2039657,0,73206,0,0,3534,0,0,59,0.6060289431064207,0,0.0,0,0.0,0,0.0,0.07209,0.1890885245901639,0.3071161048689138,0.02214,0.3271629250361034,0.6728370749638966,25.03143232080257,4.564826774839769,0.3191035218783351,0.211846318036286,0.2331910352187833,0.2358591248665955,11.004397246444595,5.445628218833912,23.74657802994396,13014.278986749956,63.24039032934736,13.964811781787748,20.02109760080725,14.576550185246772,14.677930761505593,0.5483813589469939,0.780016792611251,0.6917502787068004,0.5873379099923722,0.1078431372549019,0.7001424501424501,0.938337801608579,0.8449074074074074,0.7796052631578947,0.1050847457627118,0.4978662873399715,0.7078239608801956,0.6431718061674009,0.5292949354518371,0.1086323957322987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025720998055735,0.0046824640707031,0.0069295077310174,0.0091204550071094,0.0112977689194411,0.0133579042751402,0.0156264334424023,0.0177618080295621,0.0198413509700897,0.0221207685457206,0.0241834621614417,0.0261758061203532,0.0280492069696159,0.0301847139663538,0.0324667953229651,0.0346093015082129,0.0366001429207618,0.0386682994665725,0.04045707868907,0.0425815729962378,0.0573693445293896,0.071486137131972,0.0853865849563465,0.0978430134680134,0.1100523405512642,0.1255093293257273,0.1386060831254313,0.151291473611333,0.1637560652373725,0.1741928563767028,0.1878973342240803,0.2013232411829039,0.2134811896703703,0.2248073048962074,0.236006168080185,0.2471395627300545,0.2578841023007625,0.2678985393081407,0.2771230699364214,0.2858288739414912,0.2942592592592593,0.3017477363655506,0.3093865081526565,0.3165082067452372,0.3231865206238831,0.3288718929254302,0.3354673014282134,0.3408295470454227,0.3465634201071377,0.3523445558170903,0.3530015392508979,0.354564521470361,0.355315085932527,0.3560489601763494,0.3568872454000537,0.3572558961358223,0.3571507892440707,0.3587698380067429,0.3595044852627082,0.3605459190053413,0.3610069730824023,0.3629620839019759,0.3648722359753283,0.3660161507402422,0.3669784642157929,0.3688108447608081,0.3694047924324016,0.3710857753070134,0.3729164473453346,0.3742564834641922,0.376770538243626,0.3765313731756685,0.3781019132411441,0.3790644171779141,0.3796725655342103,0.3806797853309481,0.3812739831158864,0.3786704730831974,0.3856191004997223,0.3834319526627219,0.0,2.2801548489417587,61.98849024436394,208.6631236027268,322.5969482445224,fqhc6_80Compliance_baseline_low_initial_treat_cost,2 -100000,95659,41457,389.2367681033671,7096,72.93615864686019,5544,57.33908989222133,2195,22.52793777898577,77.2498286400838,79.64830879636776,63.26585613190741,65.038685609847,76.98205531316188,79.38203271214383,63.16740732933902,64.94383152677895,0.267773326921926,266.27608422393223,0.0984488025683916,94.85408306804288,89.5092,62.67501647230858,93570.43247368257,65518.56209022713,232.86469,142.67371287317533,242801.98413113249,148520.39569904364,270.72953,129.49211365302347,279616.39782979124,132663.97763698606,3641.61262,1634.129980705639,3768963.401248184,1670589.961346947,1323.70416,578.2782249518089,1367447.2553549588,588575.8792796638,2158.74608,894.2439475811587,2218106.0433414523,901523.30645228,0.378,100000,0,406860,4253.20147607648,0,0.0,0,0.0,19542,203.60865156441108,0,0.0,25183,259.85009251612496,2032109,0,73003,0,0,3484,0,0,39,0.3972443784693547,0,0.0,0,0.0,0,0.0,0.07096,0.1877248677248677,0.3093291995490417,0.02195,0.3098270545649551,0.6901729454350449,25.286663219976194,4.526533036455476,0.3262987012987013,0.2123015873015873,0.2368326118326118,0.2245670995670995,11.20517788954619,5.601204924425419,23.3283590246136,12979.223308277393,62.26977008705795,13.79055366863088,20.20207563875862,14.731769915251432,13.545370864417029,0.5564574314574314,0.7672047578589635,0.6887783305693753,0.6146230007616146,0.1036144578313253,0.7211815561959655,0.912087912087912,0.8654708520179372,0.7484848484848485,0.1451612903225806,0.5014436958614052,0.7023370233702337,0.6309611151870873,0.5696846388606307,0.0932798395185556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024210867539203,0.0048373847698439,0.0071355345560844,0.00954074375127,0.0118298054134328,0.0140244026643309,0.0160194966757759,0.0182161637821003,0.0201268152996522,0.0225007937239479,0.0246786948806581,0.0267693888032871,0.0291200197563384,0.0310341984292222,0.0329248273227541,0.0351243729637482,0.0371702140888271,0.039370814514873,0.0413046870935858,0.0433037203870537,0.0580841326562597,0.0719955598374733,0.0849145711766928,0.0973084450430354,0.1088562443276557,0.1239773509022596,0.1373517261885798,0.1500868508828951,0.1624466480536568,0.1740554940864315,0.1878472709225673,0.2009433450799674,0.2132934993566958,0.2247178688542569,0.2350480647190614,0.2459919784016798,0.2564225985917858,0.2662590390668186,0.2759970861409579,0.2856633954632162,0.2939714252526426,0.3018801410105758,0.3092046576352629,0.3167164250975104,0.3233816283721157,0.3298645053517292,0.3357540425424985,0.3416813684129784,0.3461343390337473,0.3513810836602693,0.3522633522227782,0.3527298850574712,0.353052706048815,0.3540683748276112,0.3555847333711319,0.3549407843197493,0.3545339050341432,0.3545073859140069,0.355945291987713,0.3572198082378712,0.3589226477683956,0.3590345156672498,0.3596749747389693,0.3600999527250624,0.3613359833244461,0.3627556230525516,0.3634649448602937,0.3669612251957608,0.3695973012861058,0.370889402022454,0.372068667182733,0.3741323583955916,0.3742925418186392,0.375580421709675,0.3788860711937635,0.3802034058656575,0.3796112046532986,0.379126512200123,0.3856551724137931,0.386986301369863,0.0,2.315807162219917,61.3365978243986,197.511121399582,327.1769206755257,fqhc6_80Compliance_baseline_low_initial_treat_cost,3 -100000,95758,41513,390.26504312955575,7315,75.26264124146286,5706,59.1491050356106,2305,23.768249128010197,77.32698317968122,79.68704744929525,63.31555014592704,65.06137222162238,77.03605774882412,79.39400950706164,63.207755454829496,64.95509790298509,0.2909254308571007,293.03794223361024,0.1077946910975455,106.27431863728988,90.48292,63.36556195632991,94491.23832995676,66172.6038099479,235.50333,143.21771772812232,245511.68570772157,149137.8973329877,269.95177,128.1466679129014,279320.4327575764,131784.71478838674,3799.90005,1709.4029877514472,3940964.305854341,1757859.9571330303,1424.775,619.7465281831311,1475458.729296769,634768.1636867226,2282.81796,960.2096358748024,2356242.778671234,978573.4474796808,0.38033,100000,0,411286,4295.056287725308,0,0.0,0,0.0,19679,205.0481421917751,0,0.0,25139,259.9678355855386,2034466,0,73051,0,0,3655,0,0,57,0.5952505273710813,0,0.0,1,0.0104429917082645,0,0.0,0.07315,0.1923329739962664,0.315105946684894,0.02305,0.3227650727650727,0.6772349272349273,25.241272984020394,4.5547952207925615,0.3240448650543288,0.1957588503329828,0.237819838766211,0.2423764458464773,11.0383947695176,5.405219036612453,24.67946651671192,13020.071795367356,64.32315593807034,13.127710563547636,20.68772616320576,15.317270186525048,15.190449024791915,0.544689800210305,0.7672336615935542,0.7036235803136831,0.5770081061164333,0.1207519884309472,0.6805755395683454,0.902439024390244,0.8448275862068966,0.7356687898089171,0.1295681063122923,0.5009267840593142,0.7005347593582888,0.6638946638946639,0.5292425695110259,0.1182994454713493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0044107805560625,0.0067291882345776,0.0090011378413524,0.0113399440630561,0.0136754747721602,0.0156524044540522,0.0175674985964375,0.0196130535654058,0.0219140225179119,0.0240237778005534,0.0261250718567791,0.0282063669911495,0.0304999227719713,0.0324943263874561,0.034254360585269,0.0362977533906201,0.0385760370097607,0.0406996684577569,0.0423885074953382,0.0565693049669081,0.070676109675597,0.083788515773251,0.0969315350734266,0.1089373992052365,0.1243259816878475,0.1382225050376498,0.1507202248506851,0.1626659256567556,0.1745052161593611,0.188600131503778,0.2014708749431362,0.2142756091456182,0.2255914731566391,0.2363576304778683,0.2482344985088857,0.259070136429154,0.2696372239747634,0.2792489714272725,0.2872885729029298,0.2959212050984936,0.3033570892723181,0.3105493540848646,0.3176002787021131,0.3239247966489698,0.3305749397887976,0.3368044664701085,0.3429974489795918,0.3487532936152538,0.3531675195366734,0.3532775829511734,0.3534448289649657,0.3539920413174159,0.3544069073419482,0.3555125148986889,0.3550969605703925,0.354942733236962,0.3556935340426232,0.3571734622174233,0.3585469244665438,0.3593101245608431,0.3612576869668716,0.362708289390424,0.3649723607927733,0.3658011797698481,0.3664926958483044,0.3675123124498912,0.3698565198154351,0.3722151720248167,0.3739892451702848,0.3756850566313482,0.3772037283621837,0.3828593050387841,0.3866026520347508,0.3884328710255684,0.3886509635974304,0.392193022898417,0.3914460285132383,0.3921678321678322,0.3946957878315132,0.0,1.7386351179554165,61.89907586966679,220.28562208104952,324.6877859923087,fqhc6_80Compliance_baseline_low_initial_treat_cost,4 -100000,95755,42004,393.9011017701426,7149,73.42697509268446,5603,57.8977599080988,2241,22.9857448697196,77.39144353273707,79.72862563750334,63.36142006586866,65.08650106936155,77.1146285058702,79.45192731190903,63.25894711371912,64.98658424794594,0.2768150268668705,276.6983255943103,0.1024729521495402,99.91682141560432,89.969,62.98346916080291,93957.49569213096,65775.64530395584,235.87072,144.8850635288196,245699.61881886065,150680.396354049,273.18718,131.00376181778398,280905.6028405827,133465.05305599127,3674.93263,1661.6024792290627,3797785.128713905,1695509.1240798193,1340.75423,583.259784869391,1384260.759229283,593295.3637828794,2193.64128,923.3150245550148,2251939.136337528,932834.5456592044,0.38406,100000,0,408950,4270.795258733226,0,0.0,0,0.0,19708,205.17988616782412,0,0.0,25444,261.3858284162707,2037438,0,73088,0,0,3611,0,0,51,0.5221659443371104,0,0.0,1,0.0104433188867422,0,0.0,0.07149,0.1861427901890329,0.3134704154427192,0.02241,0.3166028265750891,0.6833971734249108,25.38814212226177,4.5015447929408525,0.3233981795466714,0.2147064072818133,0.242013207210423,0.2198822059610922,11.056562874996027,5.524589123191713,24.003825580384028,13159.719336441967,63.05634417179009,13.906321618883272,20.5081532238618,15.108732300307828,13.533137028737205,0.5509548456184187,0.7896924355777224,0.6854304635761589,0.56047197640118,0.109577922077922,0.7005689900426743,0.9483695652173914,0.8319148936170213,0.7161716171617162,0.1056603773584905,0.5008339289969026,0.7197604790419162,0.6341281669150521,0.5156695156695157,0.1106514994829369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002014822614612,0.004611003577328,0.0068281893630405,0.0092727069601161,0.0115097965450275,0.0136389544825339,0.0159262278377827,0.01838512865509,0.0206764805034273,0.0224993861013342,0.0247950819672131,0.0270744418910045,0.0290893024116069,0.0312155861799244,0.0334302325581395,0.0352966696967192,0.0376411413431584,0.0397531632441402,0.0419837013014011,0.043876828201175,0.0589113303063514,0.0736094253547064,0.08669562115776,0.0991313127063921,0.1117999978911629,0.1276609244630563,0.1413572587572778,0.1537790450251085,0.1662323514962513,0.1775974443634492,0.190726865607372,0.204123131503234,0.2165708260411118,0.2280450626659527,0.2388591408371724,0.2501604656824771,0.2610460125093374,0.2711123595505618,0.280314282150996,0.2893505007153076,0.2980991582647304,0.3063386457444196,0.3135839859924756,0.3205503091893965,0.3272791287773016,0.3337274608335797,0.3394045534150613,0.3445887445887446,0.3504442890080568,0.3556059786551983,0.3563403969054827,0.3566105703129296,0.3569759585608918,0.3573108952617374,0.3582698787312048,0.3575632500191087,0.3573733156196622,0.3582405326947993,0.3587711958470654,0.3601450440312237,0.3611815296790791,0.3628976315528689,0.3649509237268543,0.3655254526665768,0.3684987178866902,0.3704266694622077,0.3714481733462924,0.3735735735735735,0.3760031109697034,0.3772770853307766,0.3813042081593318,0.3823687318801675,0.383298326013621,0.3827075174690931,0.386432350718065,0.3843872345473959,0.3914828897338403,0.3878172588832487,0.3898678414096916,0.3910207214121258,0.0,2.3893996102076387,61.83519460397131,207.36231572908704,321.96005777085577,fqhc6_80Compliance_baseline_low_initial_treat_cost,5 -100000,95729,41576,390.9891464446511,7190,73.99011793709326,5611,58.05973111596277,2283,23.49340325293276,77.37264048070351,79.73284538666447,63.34029949113111,65.08219695591032,77.08900345714042,79.44716890420074,63.23703237885535,64.98058696850376,0.283637023563088,285.6764824637281,0.1032671122757662,101.60998740656169,90.43386,63.365372911105815,94468.61452642355,66192.4525599409,237.42693,145.05322275963238,247461.2499869423,150966.24090884932,272.86098,130.1812230610138,281305.4769192199,133086.43325748146,3719.87657,1671.149075584207,3853612.6252232864,1713480.0693459732,1402.72879,608.3682064358085,1449944.5935923285,620143.1921735402,2255.5394,942.4849931624302,2323725.41236198,956801.1431646284,0.3793,100000,0,411063,4294.0279330192525,0,0.0,0,0.0,19804,206.2802285618778,0,0.0,25431,261.9268978052628,2033148,0,73018,0,0,3620,0,0,42,0.4387385222868723,0,0.0,0,0.0,0,0.0,0.0719,0.1895597152649617,0.3175243393602225,0.02283,0.3173953242636376,0.6826046757363624,25.23770516261205,4.618827946421343,0.3213330957048654,0.2062021030119408,0.2313313134913562,0.2411334877918374,11.132499911413634,5.50324153456177,24.52714013705304,12959.234615606116,63.43783453691209,13.622564560863616,20.35758219288763,14.514416860731313,14.943270922429535,0.5405453573338086,0.7545375972342264,0.6932889628397116,0.5785824345146379,0.1175166297117516,0.7112573099415205,0.9184210526315788,0.8518518518518519,0.7551724137931034,0.1390977443609022,0.4855055385340561,0.6743886743886743,0.6433260393873085,0.5277777777777778,0.1122355105795768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020962025316455,0.0044895766825778,0.0070401817868265,0.0090286805329866,0.0112660016878666,0.0135899993892135,0.0159014922938921,0.0179845467628836,0.0201882877265432,0.0223359606919848,0.0242169477623417,0.0264881624607297,0.0288323119318882,0.0309577754891864,0.0330547818012999,0.0349428471030819,0.0370642619760014,0.0389266896236982,0.0407005144727953,0.0425254913397144,0.0573114069433568,0.0709091479811243,0.0841502668358199,0.0969162532582191,0.1090765338393421,0.1247674221921515,0.1384829136881403,0.151347152464459,0.1628349012782043,0.1740351930686168,0.1881784114403859,0.2004110996916752,0.2127058004741294,0.224078914272591,0.2353310081528017,0.2463164425143464,0.2567505720823798,0.2664324799027224,0.2757798123452302,0.2838237655099653,0.2923333410517054,0.3003792046066337,0.3071800158792231,0.3140566298176755,0.3210828428272608,0.3275630189889817,0.3341686505450444,0.3398340037680126,0.3459769668234166,0.3511914977886329,0.3515472389497366,0.35240167456208,0.3530772594546557,0.3537009150932468,0.354802192564347,0.3542175335145345,0.3549400841203079,0.3559735169142594,0.3573030245973194,0.3586200732862633,0.3603628934000637,0.3615186869685584,0.3625703958981255,0.3627707955283733,0.3639234403625494,0.3651978698966273,0.3662236924656362,0.3678121168296287,0.3693586281866957,0.3718171753914281,0.3718204941860465,0.3746153029820651,0.3773775671406003,0.3824088868599254,0.3859863052246506,0.3841787868038311,0.3882962511429442,0.3900322841000807,0.3908741066520066,0.3964858670741024,0.0,2.1920033046880887,60.516960604043724,221.9219567993466,313.7193957613033,fqhc6_80Compliance_baseline_low_initial_treat_cost,6 -100000,95756,41774,392.62291657963993,7032,72.48631939512929,5511,57.11391453277079,2203,22.68265173983876,77.33281654085012,79.6975876410056,63.319784280511655,65.07034499269345,77.0646501536767,79.42715907914875,63.22198139330274,64.97355395365003,0.268166387173423,270.4285618568463,0.097802887208914,96.79103904342412,90.35686,63.30717816084618,94361.10530932788,66112.5618873451,235.43135,144.01131354552797,245397.49989556792,149928.7163873463,273.02321,129.3872724868404,282038.03417018254,132754.1227436775,3669.31784,1640.626535815176,3802532.572371444,1684198.763596196,1358.0815,587.2305902302268,1405314.1735243744,600396.47906479,2177.55878,900.4449992606355,2244096.098416809,916595.6788730376,0.38091,100000,0,410713,4289.141150423994,0,0.0,0,0.0,19618,204.3840594845232,0,0.0,25424,262.49007895066626,2034680,0,73064,0,0,3467,0,0,53,0.5534901207235056,0,0.0,0,0.0,0,0.0,0.07032,0.1846105379223438,0.3132821387940842,0.02203,0.3166080605896673,0.6833919394103327,25.324022914696,4.549458854296085,0.3360551624024678,0.1979677009617129,0.2304481945200508,0.2355289421157684,11.077442222298751,5.495347514562639,23.318516413556026,12972.704338697817,61.95428447707677,12.831803498868714,20.820770334103752,14.01124149405146,14.290469150052829,0.5494465614226093,0.7717690192483959,0.6976241900647948,0.5763779527559055,0.1248073959938366,0.7070854638422206,0.9154929577464788,0.8744493392070485,0.7163636363636363,0.1719298245614035,0.4973442781265089,0.7024456521739131,0.6402002861230329,0.5376884422110553,0.1115498519249753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022798893493702,0.0043410789812664,0.0066402680475175,0.008782183551702,0.0110385382330199,0.0132618970013037,0.0156130492866539,0.0177845839714139,0.0197235230363387,0.0219739711860415,0.0241444360146814,0.0261631190380843,0.0284709583885992,0.0303910361376298,0.0323758821344558,0.0344809765475612,0.0368467927342018,0.0389672384628955,0.0408729828647479,0.042835118129922,0.0572177217304159,0.0712141026311659,0.083949374521585,0.0968409986859395,0.1092267802183903,0.1251929705838814,0.1384726331753152,0.1514096874101982,0.1633269957915874,0.1751994680851064,0.1890288544358311,0.2022221500979087,0.2138686210758674,0.2253307095222477,0.2356900875533459,0.2476719852070023,0.2573427665937597,0.2678762366765338,0.2768324384457334,0.285079481423794,0.2932860963495536,0.3007107645109542,0.3080322760287688,0.3146551207167444,0.321511076526518,0.3276228091829178,0.333684263297739,0.340083807777056,0.3457737894545737,0.3507693527918781,0.3519162823313644,0.3524142872891632,0.3533752892701924,0.3544212172100295,0.3550093109869646,0.3547966431935687,0.3542201922161956,0.3554693280281482,0.3567030410837067,0.358418390147114,0.3605301693387902,0.3616206889713028,0.3618679494989811,0.3634713225900441,0.3650510265627639,0.3663578793112472,0.3672364917103342,0.3694490976326685,0.3713065273414057,0.3725035948234542,0.37487984620314,0.3770097751188505,0.3766989063784057,0.3774622079706825,0.3756833176248821,0.3794166469053829,0.378820293398533,0.3732551082338661,0.3713733075435203,0.3744697261858851,0.0,1.5682976441856444,61.20070434112203,205.8318794469594,315.12076304733955,fqhc6_80Compliance_baseline_low_initial_treat_cost,7 -100000,95776,41654,390.4318409622453,7163,73.54660875375878,5607,57.91638823922486,2278,23.37746408286001,77.34910350822409,79.67750192902243,63.34642956891118,65.06679125534377,77.07121222504355,79.40036629592498,63.243891045360535,64.96721256537836,0.2778912831805371,277.13563309744416,0.1025385235506419,99.57868996541208,90.06162,63.05914647562852,94033.59923154028,65840.2381344267,234.31375,143.51328959949498,244031.3439692616,149226.31932790577,277.73606,132.74882383079202,285701.0942198463,135324.5581400068,3684.36004,1665.9071728148804,3809933.856080856,1702770.156770432,1373.74671,598.0846117638135,1420018.9817908453,610306.1903418145,2240.72646,929.0757683843252,2302698.0454393583,939172.8064513918,0.38039,100000,0,409371,4274.254510524557,0,0.0,0,0.0,19632,204.3309388573338,0,0.0,25889,266.05830270631475,2036505,0,73175,0,0,3568,0,0,33,0.3445539592382225,0,0.0,0,0.0,0,0.0,0.07163,0.1883067378217092,0.3180231746474941,0.02278,0.3160973016084009,0.6839026983915991,25.21360165711864,4.495775837971969,0.333868378812199,0.2079543427858034,0.2270376315320135,0.2311396468699839,11.20245691402155,5.761416011343692,24.158560054915604,13053.317291112997,63.65520402789265,13.755942190611188,21.34368815376079,14.32515269911299,14.2304209844077,0.561976101301944,0.7753001715265866,0.7072649572649573,0.6072270227808326,0.1157407407407407,0.7139874739039666,0.9067357512953368,0.8678861788617886,0.7250859106529209,0.1417910447761194,0.5095923261390888,0.7102564102564103,0.65,0.5723014256619144,0.1089494163424124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872974724562,0.0047841555255982,0.0072333647827454,0.0096494702948674,0.0118965306869483,0.0141292397898937,0.0162355531095211,0.0185130377098535,0.0207828832418845,0.0229072456057784,0.0251403515961152,0.0274288880679719,0.0293915134574079,0.0315671380637724,0.0336416030022785,0.0358500309853336,0.0380790761684999,0.040015346647587,0.041667965543398,0.0436534796780139,0.0575755045814113,0.0716758531968079,0.0851463141008838,0.0981976774735957,0.1104999156971842,0.1258361424903044,0.1389778051003752,0.1519859626734726,0.1639524460001707,0.1756071952774295,0.1894003810179853,0.2026603222666811,0.2138484456381093,0.225644166411479,0.2365731010882362,0.2485405704790916,0.2597301128436373,0.2697000708494056,0.2785380355846042,0.2876428424210502,0.2959835269075933,0.303409702557862,0.3107375399550136,0.3171389528193326,0.32414044466043,0.3304140814841312,0.3355087622602748,0.34142271140666,0.3476845245816578,0.3532452765327304,0.3537562739489449,0.3543298400441257,0.3549060542797494,0.3549880633726398,0.3560773932570901,0.3560579354739827,0.3560796994626468,0.3570724008680213,0.3579039181816627,0.35765548098434,0.359155855128518,0.3593970048596648,0.3606877850881803,0.3621553603127879,0.3636627766209869,0.3642643273625046,0.3651811385853939,0.3675577736100957,0.36952820148989,0.3704640333975594,0.3724813690311896,0.3742630507021117,0.3771362734430007,0.3757804671240268,0.3804191788687913,0.3819351705718101,0.3819292201691199,0.3819689119170984,0.3825352112676056,0.3810865191146881,0.0,2.436729875997146,63.3095783370601,213.27556959894983,315.3806481578352,fqhc6_80Compliance_baseline_low_initial_treat_cost,8 -100000,95667,41562,391.6083916083916,7242,74.5293570405678,5651,58.50502263058317,2276,23.44591133828802,77.31532774038504,79.70851172232857,63.31028192710126,65.07673759694353,77.03772723263747,79.42768728999926,63.20913832723296,64.97653777291228,0.2776005077475787,280.824432329311,0.1011435998682941,100.19982403125027,88.84414,62.25588035047943,92868.11544210649,65075.60637469496,236.49258,144.4293779039224,246648.614464758,150415.63747574648,271.01955,129.30304559750724,279439.4932421838,132153.27265690142,3710.27731,1662.3479709659096,3844904.993362392,1704719.361981723,1356.09511,589.828952198886,1404411.907972446,603628.7743726815,2239.95596,926.4433477129112,2310242.2779014707,943342.4052299816,0.37961,100000,0,403837,4221.277974641203,0,0.0,0,0.0,19781,206.1839505785694,0,0.0,25303,260.63323821171355,2039492,0,73195,0,0,3592,0,0,42,0.4285699352963927,0,0.0,1,0.0104529252511315,0,0.0,0.07242,0.1907747424988804,0.3142778238055785,0.02276,0.321451972218582,0.6785480277814179,25.2290780393953,4.567458654117263,0.3387011148469298,0.2019111661652805,0.2302247389842505,0.2291629800035391,11.004521529929407,5.416952580828545,24.22516240895037,12949.61236042629,63.5813660437358,13.25388017382022,21.426712590123778,14.672743164829372,14.228030114962442,0.5390196425411432,0.761612620508326,0.6781609195402298,0.5580322828593389,0.1181467181467181,0.6983321247280638,0.9395604395604396,0.8521939953810623,0.6828478964401294,0.1501831501831501,0.4875936329588015,0.6782496782496783,0.6272788656313302,0.5191532258064516,0.1095890410958904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020767064448811,0.0043289604412092,0.0064645111530577,0.0087578485359559,0.0110575358072916,0.0131194295900178,0.0151872137735483,0.0170983820885765,0.0192567291172379,0.0214125526097508,0.0235680221527101,0.0258962506420133,0.0280026747595288,0.0297590833213115,0.0316893412333037,0.0336339566440509,0.0359847896138344,0.0379665379665379,0.039911792546054,0.0418460191564092,0.0566270347075662,0.0700764317872474,0.0833000986545202,0.0962908402167622,0.1088105866337417,0.1249655990007832,0.1382781063204051,0.1510352319686448,0.1633590886259925,0.174175753412896,0.1878644177399364,0.2011369173298684,0.2132967607105538,0.2246222193042926,0.2356257915313033,0.2464205307928621,0.256913729169459,0.2670028023814615,0.2771784797765312,0.286215435410648,0.294101976046517,0.3023133297431454,0.3103578957341481,0.3166346615458473,0.3225116380829677,0.3291240704887102,0.3359934853420195,0.340981435738114,0.3459699674798854,0.3511588572636697,0.3516341279257901,0.3528965830932723,0.3536437475322917,0.3538263237168346,0.3540184021677634,0.3535692916647489,0.3529626282325707,0.3550140396394029,0.3562217813654398,0.3565553250840426,0.3569982377863597,0.3576165495397406,0.3588601210490921,0.3614114585670061,0.3628483121649684,0.3642881440196771,0.3636024238247035,0.3659939615445733,0.3679406123463806,0.3693142972049065,0.3694108970222181,0.3706766917293233,0.3723349929784246,0.3769206891199751,0.3808702319340617,0.3857194548305391,0.3888717632552404,0.3901699029126214,0.3951410220608768,0.39258114374034,0.0,2.213357482772002,60.915645637830494,216.65731361415124,321.3117555650728,fqhc6_80Compliance_baseline_low_initial_treat_cost,9 -100000,95625,41651,392.2300653594771,7179,73.84052287581699,5570,57.65228758169935,2235,22.954248366013072,77.3146043072854,79.73501809936143,63.296484254502126,65.08346756625205,77.04083871850412,79.46308818869629,63.19558432945557,64.98659487237904,0.2737655887812877,271.9299106651363,0.1008999250465549,96.87269387301,89.72898,62.887187044369526,93834.2274509804,65764.378608491,237.26323,145.22079853185775,247530.58300653595,151277.05990259632,272.38795,129.53843170326996,281910.4209150327,133134.29902837664,3648.93419,1638.674294218165,3778586.488888889,1676353.9181366432,1368.71935,592.6992997902864,1414822.745098039,603307.218519199,2198.35632,913.5123652505208,2260511.226143791,920472.8602042338,0.38036,100000,0,407859,4265.192156862745,0,0.0,0,0.0,19833,206.7764705882353,0,0.0,25313,261.7516339869281,2034023,0,72937,0,0,3560,0,0,52,0.5437908496732026,0,0.0,0,0.0,0,0.0,0.07179,0.188742244189715,0.3113246970330129,0.02235,0.3181938559322034,0.6818061440677966,25.367371326951627,4.5291046332011735,0.3324955116696589,0.2053859964093357,0.2281867145421903,0.233931777378815,11.078590931378564,5.637754695772935,23.738504729167403,12985.314051967594,62.77445469796493,13.396406272601071,20.918451091301247,14.14346908915292,14.3161282449097,0.5552962298025135,0.7596153846153846,0.7008639308855291,0.5979543666404405,0.1273983115886416,0.7197406340057637,0.907859078590786,0.869281045751634,0.7516778523489933,0.1564885496183206,0.5007173601147776,0.6890322580645162,0.6453697056712132,0.5508735868448099,0.1200768491834774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899293769568,0.0046242305625133,0.0068116295123238,0.0090331758370167,0.0112813313802083,0.0133632104298227,0.0155037178323354,0.0176728981509858,0.0199343363574065,0.0219147781384727,0.023876923076923,0.0257627118644067,0.0279820996862301,0.0301272474370202,0.0321841453344343,0.0342239133132056,0.0363056136933501,0.0382894340680447,0.0405364630479341,0.0425010429703796,0.0571112016974486,0.0697053185137074,0.0830244158571803,0.0953954986630734,0.1074644512240179,0.122855508959207,0.1365167047325649,0.1494847008920483,0.1612803149437829,0.1732310535250005,0.18703537865628,0.1999197892842819,0.2138451815368522,0.2247907445549761,0.2358575837742504,0.2469145394006659,0.2581593418876022,0.2679782750771866,0.2775322388229279,0.2864598268050697,0.2951516344561655,0.3024363415090807,0.3098124644819094,0.3166206979254107,0.3233800626837386,0.3292741547828873,0.3356652108075638,0.3410727462405536,0.3465149102021261,0.3524402962415345,0.353208228368202,0.3541388472074999,0.3550229920726718,0.3549400590722187,0.3563435893615436,0.356627135307853,0.3566072506592952,0.3575811559778306,0.3589681898640636,0.3603013723203875,0.3616537681268315,0.3612126721871974,0.3632576154087721,0.3640308690303098,0.3655702280912365,0.3671346853874155,0.3675520255074444,0.3695270355037009,0.3718681010617794,0.3739582506548138,0.3774142240399909,0.3785938247329542,0.3821065989847715,0.3858225522468039,0.3865419147528589,0.3873332532147578,0.3880620397932007,0.3893366398016119,0.3912319644839068,0.3819253438113948,0.0,2.2627332816023125,61.46605140459209,207.5361685810574,319.93793814044056,fqhc6_80Compliance_baseline_low_initial_treat_cost,10 -100000,95645,41542,390.558837367348,7170,73.78326101730357,5569,57.640232108317214,2249,23.13764441424016,77.29129418892526,79.6916052234635,63.29829466637945,65.06996587619578,77.01343685295258,79.41325757477001,63.19640230354977,64.97043447840215,0.2778573359726835,278.34764869348305,0.1018923628296804,99.5313977936263,89.75472,62.9111370551858,93841.51811385856,65775.66736911057,235.43676,143.9603727789112,245495.31078467247,149853.73284427956,268.77526,128.65879948085814,277269.67431648285,131562.4903618526,3675.76159,1649.0772652339103,3806401.902869988,1687436.640947159,1316.95489,572.0218854897754,1358133.6400230017,579281.6304979617,2211.869,922.3739150128598,2277267.3741439697,934279.5906327576,0.38037,100000,0,407976,4265.523550629934,0,0.0,0,0.0,19690,205.24857546134143,0,0.0,25154,259.2608081969784,2034780,0,73017,0,0,3594,0,0,38,0.3763918657535679,0,0.0,1,0.0104553296042657,0,0.0,0.0717,0.1885006703998738,0.3136680613668061,0.02249,0.3199734571997346,0.6800265428002654,25.13189284890281,4.53819464643455,0.3330939127311905,0.2034476566708565,0.2314598671215658,0.2319985634763871,10.944026370931578,5.52535673680116,23.92466738601348,13002.06268962634,62.695234907306656,13.103240630735788,21.081002574210498,14.28360175212782,14.22738995023256,0.5442628838211528,0.766107678729038,0.6964959568733153,0.5640031031807603,0.1114551083591331,0.7138664710198093,0.9202279202279202,0.8765957446808511,0.7419354838709677,0.11787072243346,0.4893009985734665,0.69693094629156,0.6353790613718412,0.5148514851485149,0.1098153547133139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0046030619486971,0.0067801427077941,0.008992988517427,0.0111406159387113,0.0133727147731323,0.015325162632298,0.0176343251577593,0.0200290364796335,0.0222595376077652,0.0241713840347854,0.0262414625378729,0.0282290005658145,0.0303361292582898,0.0323739521823512,0.0344417438072089,0.0366247979107076,0.0386871696898588,0.0409010508792009,0.0429202894018056,0.0571828660403582,0.0709437519639677,0.0839808475786467,0.0971191596408685,0.1087211204576398,0.1239904736702831,0.137674774133959,0.1510929311006008,0.1635428583647852,0.1744937619446412,0.1881260715325476,0.20201210729795,0.2146154013629139,0.2264659184232137,0.2363918957648978,0.2480865224625624,0.2589869372339118,0.268389348646062,0.2776591879371423,0.2859025636911652,0.2941605501400819,0.3022874861054233,0.3093997252096461,0.3166854620054226,0.323851815803881,0.3304942477657631,0.3366928660072957,0.3421260645621908,0.347867839808975,0.3532738685166832,0.3536233447503978,0.3538204834728408,0.354602717283846,0.3556061023137215,0.3560496550079728,0.3546710141806884,0.3537228969288484,0.354674192909487,0.3558285370672622,0.3575070923259238,0.3588863966222457,0.3607020616094882,0.3618686069809132,0.3634440543703303,0.3647999227221135,0.365626882480815,0.3666381033990288,0.370089680434508,0.3710578418894074,0.3722373478539398,0.3738699463081088,0.3744323948928896,0.3736885610733134,0.3766895805978218,0.3789936866271283,0.3768905021173623,0.3778996865203762,0.3776384535005224,0.3737345331833521,0.3732612055641422,0.0,2.286163521948268,60.00863236414309,209.52628489865572,322.3923987738912,fqhc6_80Compliance_baseline_low_initial_treat_cost,11 -100000,95619,41483,389.7342578357858,7123,73.10262604712453,5585,57.69773789727983,2256,23.17531034627009,77.27514686010801,79.68620411405055,63.27600815666828,65.05630753505524,76.99000282703534,79.40035380379274,63.17142735162712,64.95389264428641,0.2851440330726689,285.85031025781404,0.1045808050411665,102.41489076882716,90.12278,63.121111642575,94251.95829280792,66013.14764071471,235.27124,143.8207162370649,245320.19786862444,149681.01198873276,274.17047,131.45886624505465,281442.2029094636,133511.045973077,3677.13873,1661.2354161508626,3803852.539767201,1695586.0719635864,1344.70854,584.4514528831903,1389152.3651157196,594073.2222369851,2223.05938,930.216605493804,2286986.8540771184,941738.5826422364,0.38012,100000,0,409649,4284.17992240036,0,0.0,0,0.0,19631,204.5618548614815,0,0.0,25553,261.9772221002102,2029589,0,72876,0,0,3586,0,0,52,0.5438249720243885,0,0.0,0,0.0,0,0.0,0.07123,0.1873881932021467,0.3167204829425804,0.02256,0.3218804101744573,0.6781195898255427,25.30512733792456,4.553447102817849,0.3253357206803939,0.211101163831692,0.2327663384064458,0.2307967770814682,11.053523009954564,5.458473532099839,24.140819806475925,13039.16313753327,63.00389485193311,13.789348064398126,20.50319802254791,14.51282593704668,14.198522827940383,0.5532676812891674,0.7718405428329093,0.6923500275178867,0.5853846153846154,0.1249030256012412,0.7015250544662309,0.9108635097493036,0.8512035010940919,0.7166666666666667,0.1340996168582375,0.5047528517110266,0.7109756097560975,0.6389705882352941,0.546,0.122568093385214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021771710952689,0.0046116578656639,0.0068286743442747,0.0092432706957846,0.011472858755683,0.0137485742219325,0.0156014194232573,0.0181927698543149,0.0202427080244957,0.0228436271297509,0.0249966664273332,0.0271311458568757,0.029209020947364,0.0313244070626797,0.0330541815966377,0.0352868152899187,0.0372934762329235,0.0394022162448462,0.0413432121376095,0.0433200196055938,0.0581208193979933,0.0726994572165056,0.0850990073008036,0.0977603607020205,0.1103811052898428,0.1256261715895491,0.1389812856672228,0.1518058931388853,0.163511242869527,0.1757593344940994,0.1886024569812379,0.2020409048517578,0.2150292671760717,0.227331045146009,0.2375082763186934,0.2481057660259971,0.2587480690442608,0.268882618510158,0.2784311493140547,0.2876526614506141,0.294848136671193,0.3032429134597334,0.3111675608945444,0.3187723072116136,0.3247020439964452,0.3310236648386937,0.3370978266325352,0.3431463797126209,0.3481915501740892,0.3533025300199912,0.3541413322523983,0.3544169220997984,0.3544704419577257,0.3547844740122329,0.3551549463647199,0.3544923974811856,0.3542648575735936,0.3559528513104175,0.3571660652906271,0.3581502600861591,0.3581244947453517,0.359166517972204,0.3606653908435154,0.3608154834074273,0.3619174112533204,0.361419300816412,0.3617386331140978,0.363047052871237,0.3666478116382662,0.3693888156053883,0.3715083798882682,0.3744436699018714,0.3730586370839936,0.3759847036328871,0.3781113433403002,0.3794433064224605,0.3777017571139792,0.3751803751803751,0.3755947383151413,0.3737334372564302,0.0,2.76245805024226,60.14454129741095,212.79682657547943,319.30904299863903,fqhc6_80Compliance_baseline_low_initial_treat_cost,12 -100000,95691,41496,390.4128914944979,7137,73.50743539099811,5556,57.549821822323935,2271,23.408680022154645,77.28391542799022,79.68052951804391,63.28504443165552,65.0592272282882,77.00925090623788,79.40400835126374,63.18545871396915,64.96108755747177,0.2746645217523422,276.5211667801708,0.0995857176863737,98.1396708164226,88.6589,62.15762940161663,92651.24201858064,64956.60971420158,234.80214,143.5367279778651,244878.0554075096,149502.92919696218,271.71881,129.22534733964295,280397.1115360901,132346.2114184834,3679.32829,1641.7718620854005,3812834.331337325,1683743.9508703384,1368.23077,592.3485292345872,1412787.1691172628,602065.3926389127,2241.68832,920.3977998065308,2312382.60651472,936576.651091748,0.37899,100000,0,402995,4211.4200917536655,0,0.0,0,0.0,19655,204.8782017117597,0,0.0,25238,260.1916585676814,2040283,0,73260,0,0,3426,0,0,41,0.4284624468340805,0,0.0,0,0.0,0,0.0,0.07137,0.1883163144146283,0.3182009247583018,0.02271,0.3223262032085561,0.6776737967914439,25.29804570388155,4.536921076502909,0.3275737940964723,0.2125629949604031,0.2183225341972642,0.2415406767458603,11.042952621393251,5.502836352466539,24.047166610863822,12935.540937842548,62.59931757848454,13.82419625968811,20.47477389055972,13.5835804483383,14.7167669798984,0.5433765298776098,0.7925486875529213,0.6785714285714286,0.5770816158285244,0.1102831594634873,0.7121326299924642,0.9157608695652174,0.875609756097561,0.7316176470588235,0.1805054151624548,0.4904232679120359,0.7367773677736777,0.6212765957446809,0.5324123273113709,0.092018779342723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024827222796457,0.0049801200908795,0.007035747281643,0.0092783609922663,0.0114363623414018,0.0134157770352864,0.0154112907338467,0.0176798627282755,0.0196266939401687,0.0220860906799975,0.0240371791452079,0.0262422424068061,0.0282668422839855,0.0303814166314552,0.0327631945663057,0.0347370162774824,0.0366805168429887,0.0385829060183935,0.040607447472436,0.042478687704525,0.0571264427847704,0.0708011850797206,0.0839971035481535,0.0964266172818721,0.1089886336052684,0.1239176916400279,0.1372946685496459,0.1496213936547493,0.1611706733081782,0.1728490468830499,0.1872123478879463,0.2002686570397894,0.2119595396491839,0.2235886765591633,0.2348960744120434,0.2460124537977423,0.2565673276844999,0.2661550251312913,0.276411491953814,0.2849588179961915,0.2937199972171332,0.3015128415620968,0.3087083452007975,0.316244038967435,0.3230594997442704,0.3293943322837562,0.3348043025850613,0.339936305732484,0.3457215819970703,0.3512193189770131,0.3526826637907791,0.3528342172325918,0.3532081641858367,0.3536444328794055,0.3545985227543483,0.3537053530296981,0.3528384833912615,0.353800111816358,0.3551014110103382,0.356405292029687,0.3576125251992388,0.3573703910169626,0.3579659583465482,0.3589471545633084,0.3592575473763592,0.3587591432931642,0.3610840263837109,0.3640112940579296,0.3668526234023021,0.3703541409393299,0.3720642768850433,0.3714361843858246,0.3722613951145807,0.3739763421292084,0.3732156273478587,0.3770472347495846,0.3787855495772482,0.3883554647599591,0.3898591549295774,0.3912534166341272,0.0,2.0049209640067884,58.989170421232174,214.02516857548272,320.5752780969241,fqhc6_80Compliance_baseline_low_initial_treat_cost,13 -100000,95647,41745,392.10848223153886,7056,72.45391909835122,5500,56.83398329273265,2206,22.59349482994762,77.35161970545354,79.75831041443101,63.31721993396855,65.0945362669608,77.08147064608312,79.48978629500279,63.217080691409485,64.99828873730085,0.270149059370425,268.5241194282213,0.1001392425590665,96.24752965994789,90.30516,63.20763968375775,94415.04699572384,66084.28877409406,236.25698,145.10525787268986,246364.3919830209,151065.34847909966,272.25586,130.04660320297444,280718.76796972204,132915.27476484753,3608.88319,1622.625036419155,3732149.759009692,1655612.246092575,1342.95612,581.912728675548,1387698.0877602017,592263.3783240536,2171.8822,905.2336364363232,2227472.76966345,909369.8150892016,0.38146,100000,0,410478,4291.593045260175,0,0.0,0,0.0,19738,205.67294321829223,0,0.0,25231,259.85132832185013,2033680,0,72878,0,0,3698,0,0,64,0.6691271027841961,0,0.0,1,0.010455110981003,0,0.0,0.07056,0.1849735227808944,0.3126417233560091,0.02206,0.315945545221728,0.684054454778272,25.30610533203117,4.518041884097921,0.3296363636363636,0.2127272727272727,0.2250909090909091,0.2325454545454545,11.143440898365364,5.692145034423152,23.43580775570387,13026.264814888214,61.86779928724831,13.711033457730997,20.518220739638483,13.715117140659933,13.9234279492189,0.5554545454545454,0.7700854700854701,0.7142857142857143,0.5807754442649434,0.1094605160281469,0.7170767004341534,0.9272237196765498,0.8673913043478261,0.7439446366782007,0.1259541984732824,0.5012141816415736,0.6971214017521903,0.6622320768662232,0.5310853530031612,0.1052114060963618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002624086888684,0.0044617958728388,0.0069620638561308,0.0091949118101276,0.0112400695765392,0.0134956202892646,0.0157038698822209,0.0177676118900041,0.020122699386503,0.0222679736553687,0.0245606475639407,0.0265123878618478,0.0287734247167423,0.0309287916121117,0.0329814485807544,0.0352080617460218,0.0372093987417211,0.0393663185432801,0.0413779470212456,0.0435449056839866,0.0586747755938012,0.0723739319819065,0.0850844966936076,0.0972935432275444,0.1094986807387862,0.1251428934332528,0.1385553042610348,0.1510387243250157,0.162984282550314,0.1749291176217888,0.1878693757818903,0.2012633130004225,0.2136044941862997,0.2244665593764027,0.2353653835563632,0.2461441227671394,0.2573647742512293,0.2671937114992623,0.2765312379351849,0.2853411837478092,0.2931818444770973,0.3012008746389775,0.3096170454411016,0.3171488469601677,0.3239761537620961,0.3306570781203822,0.3368284239599085,0.3426001219760113,0.3474410848404152,0.3528156490812092,0.3538148990272713,0.3545420807389386,0.3555608746462413,0.3563278158130398,0.3563117616464819,0.3563804535918286,0.3568591457914642,0.3577400016424407,0.3590300831650638,0.3603613272515875,0.3621580004882354,0.3636453572347203,0.3645503200755588,0.3660222848704524,0.3653208363374189,0.3653976355398156,0.3664481185860889,0.3696609423161602,0.3723183876970612,0.3746474397171572,0.3780704552704735,0.3812919241535942,0.3829159605849495,0.3841700312333359,0.3867205868522524,0.3877502097566822,0.3875657284256109,0.38582995951417,0.3910917979359044,0.3850207000376364,0.0,2.603651832312488,60.66659190459752,201.51008819279892,317.40388394159794,fqhc6_80Compliance_baseline_low_initial_treat_cost,14 -100000,95796,41765,392.2293206396927,7174,73.86529708964883,5622,58.15482901164975,2281,23.44565535095411,77.3507064425629,79.6793292287339,63.34838135415546,65.07020862215529,77.07139200337295,79.39928669509641,63.24674562415202,64.97070555495098,0.279314439189946,280.04253363749854,0.1016357300034371,99.50306720431,90.84196,63.61678510405494,94828.55234039,66408.60276426462,237.11304,144.67923253631963,246920.49772433087,150430.23981828018,271.67451,129.2642652312152,280214.77932272747,132246.23131680235,3721.49936,1667.1805187552632,3851828.093031024,1707355.629415908,1399.10831,601.9833823273624,1446261.7541442232,614155.0610958304,2249.70512,933.5797706732696,2314996.221136582,945531.7432208632,0.38127,100000,0,412918,4310.388742745,0,0.0,0,0.0,19814,206.28209946135536,0,0.0,25352,261.30527370662656,2034246,0,73037,0,0,3565,0,0,50,0.5115036118418306,0,0.0,1,0.0104388492212618,0,0.0,0.07174,0.1881606210821727,0.3179537217730694,0.02281,0.3231828412551304,0.6768171587448696,25.211674925401617,4.52605449634021,0.3347563144788331,0.1967271433653504,0.2310565635005336,0.2374599786552828,10.876237386899426,5.434085294118741,24.38698242641664,13036.811969209715,63.3682460120008,12.87422842890394,21.22285159977713,14.612666863157212,14.658499120162505,0.5426894343649946,0.7640144665461122,0.6801275239107333,0.5850654349499615,0.1243445692883895,0.7104874446085672,0.9129129129129128,0.8636363636363636,0.7254237288135593,0.1704545454545454,0.489456419868791,0.6998706338939198,0.6204225352112676,0.5438247011952191,0.1129785247432306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020866253393298,0.0041666666666666,0.00632185657605,0.0084105314480741,0.0107674475353831,0.0133568163539556,0.0156332803391626,0.0176648875917176,0.0197635325015073,0.0219709373720835,0.0244379777445334,0.026472942190482,0.0286004973999547,0.0307278959883882,0.0326362680195508,0.0344321738860938,0.0365989942261128,0.0386784433248325,0.0408856303158069,0.0428604147580578,0.0578574484291363,0.071284437241884,0.0839841088481011,0.0967297870998928,0.1088711377144543,0.1249550787443187,0.1387339624642137,0.1515557825735325,0.163766599769418,0.1747578017832647,0.1887080804167205,0.2023278181837831,0.2148995578153689,0.2262071225693686,0.2368869490649633,0.2486116335154988,0.2590074779061863,0.2693076871222165,0.2786851799376594,0.2873117245799569,0.2956381073430008,0.3037331308056318,0.3115262217700434,0.31761831183298,0.3250303471716436,0.3309603281151851,0.3364011504314118,0.3430039555855156,0.3487640333044142,0.3537540546955352,0.3545548723882304,0.3546868547832071,0.3554208374453687,0.3555806446943708,0.3563220101819048,0.3555211003822477,0.3550912179863768,0.3562477327441216,0.3588388690639583,0.3599461883408071,0.3608177429088715,0.3616725015913431,0.3615170200185826,0.3632216099015268,0.365107434412926,0.3667131248849501,0.3682634730538922,0.3707689858302818,0.3735791418016482,0.3755252311016847,0.3754090050232729,0.3766479360276637,0.3764720942140297,0.373893461717658,0.3738201925827057,0.380449141347424,0.3809225957779515,0.3853076601088321,0.3878186968838527,0.3844033083891295,0.0,2.0539245045537644,59.82347897221513,216.31713352490576,324.3816162722482,fqhc6_80Compliance_baseline_low_initial_treat_cost,15 -100000,95729,41553,390.6444233199971,7095,72.8514870102059,5574,57.57920797250572,2305,23.63964942702838,77.31652017658898,79.67874060896314,63.31665033110207,65.06302859671158,77.0375581207326,79.40115570824725,63.21324536048388,64.96329054352539,0.2789620558563825,277.5849007158939,0.1034049706181861,99.73805318618643,90.44992,63.32591171738856,94485.39105182338,66151.23078418094,233.32166,142.8347114577569,243086.22256578464,148562.15092370845,270.04763,129.35182568446643,278255.3980507474,132090.62392328904,3684.74019,1666.6657174858713,3806748.258103605,1698636.3249233498,1330.87192,586.3687518482253,1368036.0810203804,590316.5099898927,2264.5705,941.7143759631072,2323605.093545321,947369.5292333522,0.38035,100000,0,411136,4294.790502355608,0,0.0,0,0.0,19529,203.32396661408768,0,0.0,25220,259.64963595148805,2034343,0,73045,0,0,3610,0,0,44,0.4491846775794169,0,0.0,0,0.0,0,0.0,0.07095,0.1865387143420533,0.324876673713883,0.02305,0.3143584248593624,0.6856415751406375,25.084249105139325,4.554700450799031,0.3311804808037316,0.1978830283458916,0.2380696088984571,0.2328668819519196,11.329789495774245,5.774011458549518,24.402834683322038,13020.940306129156,62.9927935510706,12.981607932322095,21.01359930369716,14.663885338899762,14.333700976151588,0.5410836024398995,0.771532184950136,0.6749729144095341,0.5840241145440844,0.110939907550077,0.7160142348754448,0.9297752808988764,0.8614457831325302,0.7385159010600707,0.1380597014925373,0.4821300071959702,0.6961178045515395,0.6060830860534124,0.5421455938697318,0.103883495145631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.0044302065064222,0.0065668612027404,0.0087180060355426,0.01104736328125,0.0131179597906015,0.0151856648955156,0.0173605792306199,0.0194171779141104,0.0217253312038003,0.0237987818632979,0.0258761436331337,0.0279705897475448,0.0302128492137862,0.032389833305826,0.0344275337610944,0.0362721654606999,0.0383494289596796,0.0406133056133056,0.0425487581263543,0.0572875339319273,0.0707513604018417,0.0841522375224171,0.0973026973026973,0.1099699478040807,0.1256332963139246,0.1385529386802461,0.1514632147077296,0.1632349955657182,0.1749678111587982,0.1891065003339581,0.2024394467412714,0.2143463128127039,0.2262735405411317,0.2376291043625713,0.2483536220315306,0.2592878046600987,0.2689394365721617,0.2784608921738933,0.2869127709075906,0.2947802229605362,0.3025536596212813,0.3110942663239805,0.3178425725941924,0.3243506177643739,0.3306877653796781,0.3365534004911542,0.3418990712310966,0.3468501743063385,0.3516181464987512,0.3525264236410699,0.3537640193684559,0.3547438652041162,0.3549205888751903,0.3555823975901818,0.3560858675107949,0.3564997856428333,0.3576600201210562,0.3590443803242649,0.3606719367588933,0.3617759017073079,0.363222729982118,0.3635999409569196,0.3638983317949526,0.3643033560947261,0.3637863747086095,0.3665663082437276,0.3684592793760066,0.3716371072952293,0.3727475681709456,0.3734437934822409,0.3755220044972695,0.3792054742444402,0.3783619047619048,0.3808490566037736,0.3820845341018252,0.3829688227082364,0.3901740020470829,0.3915713089589729,0.3961748633879781,0.0,2.53162907702034,61.65584138761383,211.1717721873052,315.8007374350054,fqhc6_80Compliance_baseline_low_initial_treat_cost,16 -100000,95678,41382,389.3685068667824,7147,73.33974372374004,5540,57.327703338280486,2201,22.627981354125296,77.40264542862671,79.78196547507346,63.35728834693722,65.11160138805027,77.12758178377301,79.50810531626703,63.25537940998797,65.01298708000546,0.2750636448537022,273.86015880642844,0.1019089369492505,98.61430804481586,90.68554,63.48944030279734,94782.01885490915,66357.40745291222,236.01554,144.45578962044723,246113.67294466856,150417.95357391174,267.10307,127.3052423934974,275890.0478688936,130535.10844306262,3636.71199,1642.4102194377988,3761557.275444721,1677168.2094502368,1368.28246,600.3453231197853,1411096.78295951,608470.1217832583,2173.83996,911.4923854360476,2235387.800748344,920586.7441521812,0.37928,100000,0,412207,4308.273584314054,0,0.0,0,0.0,19766,205.98256652522,0,0.0,24944,257.45730470954663,2036555,0,72985,0,0,3629,0,0,54,0.5434896214385753,0,0.0,0,0.0,0,0.0,0.07147,0.1884359839696266,0.307961382398209,0.02201,0.3140364789849326,0.6859635210150674,25.479725359996976,4.5419701085744535,0.3370036101083032,0.207942238267148,0.2231046931407942,0.2319494584837545,11.07948922207852,5.4544983714066495,23.35003415362109,12949.342082796458,62.18271611050736,13.520564289412354,21.00442027537608,13.552724602438389,14.105006943280536,0.5581227436823105,0.7821180555555556,0.6930905195500804,0.5736245954692557,0.1463035019455253,0.715429403202329,0.9162162162162162,0.8671023965141612,0.7186311787072244,0.202127659574468,0.5062409985597696,0.7186700767263428,0.6363636363636364,0.5344295991778006,0.1306081754735792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002167066662616,0.0043276880821348,0.006522621221343,0.0088865868397265,0.0111042189930954,0.0131152882715923,0.015200791134401,0.0174727753339933,0.0198559092534873,0.0220025379671701,0.0242727403185797,0.0260245565045992,0.0281410651860991,0.030186308536824,0.0321399092034667,0.0341591475199735,0.0363241004400724,0.0384575472677085,0.0404467972251978,0.0423046056677123,0.0566426041808133,0.0699259693615773,0.0835974393955294,0.0965285083105407,0.1083393105776127,0.1236694529679399,0.1373323144846323,0.1501746092585494,0.1617878098047388,0.1736164736164736,0.1874394158068199,0.2008528969271898,0.2130559150778199,0.2247834835097542,0.2355918403274431,0.2462432866397209,0.2568125055748818,0.2656808324156685,0.2749235127478753,0.2836017201152843,0.292809702570026,0.3011861122136869,0.3087027914614121,0.3159374850414054,0.3222175047006733,0.3276131621385397,0.3337502032240717,0.3399443505660233,0.3455680819154987,0.3512085885529868,0.3522018496612539,0.3526916265085053,0.3533346448947472,0.3540894739118524,0.3549741170886545,0.355085873338737,0.3545782674772036,0.3555621272610774,0.3574439041037454,0.3586595767460119,0.3600067448570465,0.3606615545348814,0.3620772492740908,0.3640141191188955,0.3660649819494584,0.3668181580734472,0.3676781530373164,0.3708530059804847,0.3730796335447498,0.3733365208383138,0.3754466330737517,0.3789332618600911,0.3830744849445325,0.3835490541472007,0.3825732435763724,0.3862721893491124,0.3842121492445267,0.3845997973657548,0.386600768808347,0.3980916030534351,0.0,2.265867505633572,60.381440109206224,207.9890400465212,315.6636206345615,fqhc6_80Compliance_baseline_low_initial_treat_cost,17 -100000,95718,41634,391.67136797676505,7053,72.28525460206022,5488,56.66645771955118,2199,22.524499049290625,77.33907921770925,79.70651187211226,63.32552877917672,65.07568180365026,77.06423893501206,79.43436411491389,63.223144734225,64.97732748710865,0.2748402826971983,272.1477571983684,0.1023840449517194,98.35431654160232,91.12444,63.775224546279645,95200.944440962,66628.24604178905,234.9022,143.86769054629738,244744.81288785808,149637.82208811023,270.56043,129.304202163771,278523.4752084248,131766.89062898743,3614.94298,1626.2137354428928,3734998.5896069705,1657302.3939519124,1299.64622,567.3768146929575,1337570.394283207,572568.8551022336,2163.2418,910.4122403128908,2218583.6310829725,915164.1650732554,0.38106,100000,0,414202,4327.315656407363,0,0.0,0,0.0,19660,204.7054890407238,0,0.0,25177,258.94816022064816,2031177,0,72845,0,0,3518,0,0,39,0.4074468751958879,0,0.0,0,0.0,0,0.0,0.07053,0.185088962368131,0.3117822203317737,0.02199,0.3224462365591398,0.6775537634408603,25.317515374311697,4.556079100500335,0.3365524781341107,0.2095481049562682,0.2244897959183673,0.2294096209912536,10.818329258171127,5.216839514870653,23.57739778134049,12982.418748747194,61.79548412671319,13.45986650153562,20.821316639981344,13.611534165044349,13.902766820151864,0.5481049562682215,0.768695652173913,0.715755278830536,0.549512987012987,0.0992851469420174,0.7117117117117117,0.9168975069252078,0.8816964285714286,0.6867924528301886,0.1550387596899224,0.4956689124157844,0.7008871989860583,0.6626161543959972,0.5118924508790073,0.0849150849150849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598282288121,0.004907328547674,0.0072673385909889,0.0094598439278166,0.0116374881743181,0.01370825652568,0.0159690001529597,0.0179379064615258,0.0200617599541912,0.0221839857432557,0.0239880213728245,0.0261192880105997,0.0283242998632123,0.0301356878663933,0.0323086768925865,0.0344973785715024,0.0365996415659218,0.0385433638788281,0.0407025717286633,0.0423933654226834,0.0575435152603606,0.0715062989160005,0.0845522317637067,0.0975561023829053,0.1097272899837597,0.1246191926884996,0.1384341146137277,0.1509711219013544,0.1627051983584131,0.174352095294307,0.1877539582457615,0.2010072565796599,0.2135091900362378,0.2254022107912881,0.2364511404059426,0.2472251483062593,0.2579863282995264,0.2677572250430631,0.2770271804536888,0.2857945296558681,0.29405499276411,0.302300545297105,0.3103586977096347,0.316283749790374,0.3218334992352327,0.3279994091653229,0.3341331433784476,0.3396701146211909,0.3462105344814211,0.3512615238522309,0.3518062563067608,0.3524561958900527,0.3529710512950736,0.353787999478616,0.3543890998436453,0.3547862382223859,0.3533853670918205,0.3545279383429672,0.3552234195895394,0.3564587294185171,0.3589941318086067,0.3607217210270645,0.3618959654057685,0.3644421506148461,0.3650434489565029,0.3665223288814691,0.3671968873376438,0.3707280128751302,0.3708312768807728,0.3731969472969193,0.37635938145276,0.3770518184744126,0.3791653392800255,0.3830082491712281,0.3858223062381852,0.3850946561226935,0.3842310694769711,0.3834431630971993,0.3766124509254066,0.3804897007384376,0.0,2.6165107340003764,58.31843179040251,210.4384674628294,314.20251359052924,fqhc6_80Compliance_baseline_low_initial_treat_cost,18 -100000,95691,41417,388.8244453501374,7211,74.07175178438933,5650,58.51124975180529,2286,23.554984272293108,77.30793472821749,79.68534358009923,63.31631099018998,65.07060118542356,77.02691140190267,79.40129600829391,63.21234265606634,64.9676369828458,0.2810233263148234,284.04757180531703,0.1039683341236425,102.96420257775196,89.0054,62.32531433230211,93012.88522431576,65131.41940855681,231.45153,141.37350308066553,241353.1680095307,147219.727563622,270.45223,129.53678510586917,279240.01212235214,132707.2598435,3756.94878,1697.4422812126002,3893409.359291888,1741251.9164989071,1383.53694,607.5257953449801,1432795.1635995023,621839.9591863189,2262.29618,946.7026738818024,2333034.078439979,963787.6853105986,0.38033,100000,0,404570,4227.85841928708,0,0.0,0,0.0,19405,202.234274905686,0,0.0,25178,259.73184521010336,2042184,0,73344,0,0,3628,0,0,48,0.5016145719033138,0,0.0,0,0.0,0,0.0,0.07211,0.1895985065600925,0.3170156705033976,0.02286,0.3153532429943428,0.6846467570056571,25.13009910742809,4.566770471297013,0.3205309734513274,0.2070796460176991,0.2330973451327433,0.2392920353982301,11.170030152628,5.601832151246717,24.47907177531903,13038.311052087263,64.03249272571169,13.905102121540663,20.639642760919173,14.626298318929022,14.861449524322826,0.5520353982300885,0.7829059829059829,0.7012700165654334,0.5861807137433561,0.1190828402366863,0.7079584775086505,0.9462915601023018,0.86875,0.6853146853146853,0.1388888888888889,0.4984542211652794,0.7008985879332478,0.6408715251690458,0.5586808923375364,0.1137218045112782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0048234769567508,0.0072327777721421,0.0093645892581457,0.0115735090716784,0.014011649219991,0.0162739239938411,0.0184481878509443,0.0205790345335214,0.0228270772128445,0.0250133267724607,0.0270328542094455,0.029042442691568,0.0309570413103945,0.0329900524208527,0.035210685192077,0.0371137866009076,0.0391599098865276,0.0412033328825689,0.0431369687366434,0.0571386788116826,0.0712289479468687,0.0848905163097648,0.0976040724457813,0.1101212440695835,0.1253410605131242,0.1386027266458012,0.1512348307430274,0.1636645299145299,0.1759903884317911,0.1890171667348741,0.2013154905503207,0.2139199077950178,0.2255486184764424,0.2362810244675233,0.2471555343828589,0.2580360730389749,0.2688018365762258,0.2784021250510829,0.2870337477797513,0.2957501766416086,0.3029643413029994,0.310320326839955,0.3171343527209006,0.3242799255284196,0.3301762141736951,0.3355662602237945,0.3414406941874561,0.3465226882894121,0.3520860089769221,0.3528069251441613,0.3536017680779059,0.3546006023840835,0.3554130330687639,0.35635305528613,0.3560062114666134,0.3568235687129154,0.3580760781593248,0.3599766126119929,0.360535909915411,0.3615087223008015,0.3625614586858292,0.3628102135914142,0.3638755819445382,0.3641559699685154,0.3667868326184775,0.3670806025066114,0.3692195385152506,0.3694941744813868,0.3721497719817585,0.3739829924155367,0.3767317464562717,0.3792665905341961,0.3798265141628925,0.3822664770033191,0.38363201911589,0.384180790960452,0.3849414614452967,0.3835281326447404,0.3963185574755822,0.0,2.027039648453498,64.03148445665278,213.82005598451263,318.74749914250214,fqhc6_80Compliance_baseline_low_initial_treat_cost,19 -100000,95724,42056,395.41807697129246,7165,73.68058167230788,5590,57.9896368726756,2297,23.755797919017173,77.38171245272493,79.75623602661892,63.34258245905804,65.09530192861637,77.10412146652112,79.47324391773715,63.24090604386522,64.99305471419869,0.2775909862038048,282.9921088817713,0.10167641519282,102.24721441767316,89.97252,63.00923120185553,93991.6008524508,65823.85943113068,237.29296,145.7223758949549,247427.74016965443,151766.6895396712,276.18322,131.54615317162958,286070.6092515984,135494.2897625642,3702.3444,1665.826491543699,3844598.940704525,1717109.5875054318,1364.67679,593.0728888651829,1416487.3281517697,610424.2462967945,2268.65532,944.8823006992898,2348372.7173958463,969038.2975442144,0.38402,100000,0,408966,4272.345493293218,0,0.0,0,0.0,19840,206.8446784505453,0,0.0,25664,265.6073711921775,2035230,0,72995,0,0,3554,0,0,54,0.5536751493878233,0,0.0,0,0.0,0,0.0,0.07165,0.1865788240195823,0.320586182833217,0.02297,0.3061197398114961,0.6938802601885039,25.211174710690003,4.564644607838463,0.320035778175313,0.204293381037567,0.2359570661896243,0.2397137745974955,10.949411444893828,5.456837627376903,24.43431127562637,13104.560531299534,63.18545805119542,13.375104809798454,20.241865367591465,14.840561365689467,14.727926508116022,0.5429338103756708,0.7802101576182137,0.6819452207937395,0.577710386656558,0.1208955223880597,0.6991150442477876,0.9289940828402368,0.851528384279476,0.721830985915493,0.1413043478260869,0.4929145016532829,0.7176616915422885,0.6235912847483095,0.5381642512077295,0.1156015037593985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218765192027,0.0045920384393151,0.0069103381093477,0.0088779635536233,0.011036068108306,0.0134012219959266,0.0154371654346163,0.0176303646535179,0.0201281907117957,0.0225918722489507,0.0245840296074551,0.0266937711111795,0.0290615166286172,0.0311910917912215,0.0332600641878992,0.0354107648725212,0.0374493822301852,0.0393479366199375,0.0413295338727458,0.0431008430508227,0.0574155684120386,0.0720207687798341,0.0855470225355659,0.0980181772279727,0.1101466090074886,0.1258076455348173,0.1394954060305133,0.1525678150151173,0.1645266733608221,0.1757159712538882,0.1894664253081631,0.2029465571179597,0.2152459052052291,0.2270813972557809,0.2378972378972379,0.2491253708870289,0.2597789352755501,0.2691338582677165,0.2783544921321035,0.2875942002428018,0.2958629867499855,0.3042705458627625,0.3125443955107259,0.3193042602670758,0.3262488911572065,0.3329922453860663,0.3388982053913348,0.3447722613423656,0.3501567479337772,0.3554291596283784,0.3561946306917629,0.3563923423919023,0.357250510599338,0.3580255825368867,0.3587853073819131,0.3580613102973778,0.3578740842708185,0.3584364030051507,0.359414454377943,0.3609375557856403,0.3619955346254151,0.3639189135685156,0.3652292233619426,0.3665980948973659,0.3672207654742717,0.3688676053405512,0.3694563051522915,0.3722469724540377,0.3751182426514381,0.3758741258741259,0.3781094527363184,0.3800224107571634,0.3831127513362178,0.3828082877609181,0.3848269321953532,0.3860109811410838,0.3867343798091721,0.381651376146789,0.3717555121406642,0.3739299610894941,0.0,1.5655423478195478,60.50013631933239,224.7409905408296,309.21052543845065,fqhc6_80Compliance_baseline_low_initial_treat_cost,20 -100000,95855,41669,391.36195294976784,7198,73.84069688592145,5626,58.0877366856189,2252,23.045224557926037,77.44506122741345,79.72368928714853,63.40474875222951,65.08447444484173,77.1749809321941,79.45731281076881,63.30482676568232,64.98952635601528,0.2700802952193442,266.3764763797189,0.0999219865471943,94.948088826456,89.91466,62.98146779104778,93802.78545720098,65704.93744827894,234.51439,143.4493195651105,244062.2189765792,149059.27657932346,270.07312,128.2778893533633,278733.7541077669,131342.29206840036,3705.86333,1659.121947953372,3828674.988263523,1693427.6020587047,1361.92675,591.4241253829495,1406852.850659851,603031.8453736891,2223.9117,920.4143290977194,2279895.8635438946,923994.5015102112,0.38147,100000,0,408703,4263.762975327317,0,0.0,0,0.0,19647,204.3503207970372,0,0.0,25217,260.04903239267645,2041837,0,73292,0,0,3584,0,0,39,0.4068645349747014,0,0.0,1,0.0104324239737102,0,0.0,0.07198,0.188691115946208,0.3128646846346207,0.02252,0.3187830687830688,0.6812169312169312,25.373501652873877,4.561075267150199,0.3266974760042659,0.2140063988624244,0.2268041237113402,0.2324920014219694,11.02935320162648,5.4174763833785615,23.847851940881128,12997.657472824509,63.28311998620882,14.091019012727845,20.675512491669483,14.269345304998549,14.247243176812947,0.5549235691432635,0.776578073089701,0.6882480957562568,0.6050156739811913,0.1146788990825688,0.717814371257485,0.9078212290502792,0.859122401847575,0.7517006802721088,0.1633466135458167,0.5041958041958042,0.7210401891252955,0.6355871886120996,0.5610997963340122,0.1031220435193945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023381040102026,0.0045786525390249,0.0069355018606207,0.0091754293370143,0.0112077549942081,0.0133379454883967,0.015552432168174,0.0177429716418367,0.0198000592265825,0.0219734151329243,0.0241754641054259,0.0261112136689024,0.0283777538129718,0.0304984673620111,0.0323202143004327,0.0344450293665293,0.0364345254100564,0.0382690334815183,0.040344684385382,0.042454008157829,0.0567060835471021,0.0700711472361231,0.0840183030899553,0.0971760187216001,0.1095737629023263,0.1250804842778581,0.1383579197068697,0.1502587370233022,0.1624025510040846,0.1742895370618143,0.1879843919637962,0.2019117567640546,0.2137722860431279,0.2254774566221513,0.2354886193865893,0.2471343217526001,0.2577387388391613,0.2675693898190808,0.2765105997052488,0.2855916980354915,0.2937204435348665,0.3011588881222738,0.3095516984346715,0.3167969544970251,0.3239149431983688,0.3301682307445996,0.3354997871114784,0.3417608717792036,0.3466074020319303,0.352163064858942,0.3533618878293195,0.352895859127803,0.35412562616086,0.3545902915981656,0.3561134011446873,0.3558420923979467,0.3564140632403575,0.3576248976248976,0.358946362767845,0.3591606996544476,0.3596801677808363,0.3608184244341207,0.3622760138321282,0.364046852646638,0.3650679168169251,0.3676700343714196,0.3693493783960627,0.3715917291581688,0.3734623986580934,0.3746827411167512,0.3766850980212951,0.3798151413153817,0.3813017901195522,0.3837854500616522,0.3843294252216185,0.3865718418514947,0.3911346964257843,0.3938127090301003,0.3921348314606742,0.3929133858267716,0.0,2.3670847378378883,58.53988774296455,226.86756732017747,312.52132818197686,fqhc6_80Compliance_baseline_low_initial_treat_cost,21 -100000,95683,41733,392.5462203317204,7322,75.27983027288023,5723,59.20591954683695,2273,23.400186030956384,77.29747507811412,79.7021172045449,63.28577397120039,65.06621729208905,77.01355617388467,79.41781246510476,63.18161739709546,64.96461915942035,0.2839189042294521,284.3047394401452,0.1041565741049339,101.59813266869833,89.04698,62.38783053599887,93064.57782469197,65202.62798616146,236.99575,144.39270562542524,247091.4582527722,150310.37449225594,273.22595,129.63155970424754,282029.13788238243,132643.85081703565,3776.43972,1692.0076474277948,3909479.594076273,1731002.67281314,1364.01893,589.8034786057552,1410332.9118025145,601187.8906231264,2232.64996,932.9315082645744,2299753.4358245456,944831.698482052,0.38202,100000,0,404759,4230.208082940543,0,0.0,0,0.0,19731,205.574657985222,0,0.0,25593,263.92358099139864,2037003,0,73135,0,0,3548,0,0,40,0.4180470930050269,0,0.0,1,0.0104511773251256,0,0.0,0.07322,0.1916653578346683,0.3104343075662387,0.02273,0.3246685729139589,0.6753314270860411,25.320324214882937,4.531454959508309,0.3298969072164948,0.2053118993534859,0.2365892014677616,0.2282019919622575,11.056818993767555,5.525999352392694,24.280893683961143,13031.723877463968,64.48664600884482,13.790080330371127,21.23656158012393,15.06446854459844,14.39553555375133,0.554080027957365,0.7429787234042553,0.715042372881356,0.6019202363367799,0.1018376722817764,0.7101139601139601,0.9146666666666666,0.8777292576419214,0.7342192691029901,0.1148148148148148,0.5033572586246816,0.6625,0.6629370629370629,0.5641025641025641,0.0984555984555984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004797841478506,0.0071780293415909,0.0095010669647393,0.0115152994791666,0.0135671942797775,0.015819428011913,0.0179122158452646,0.0201785696022582,0.0223141596092205,0.0245761234139886,0.0267510427153746,0.0288165759611526,0.0309038261389281,0.0327923016561351,0.0348173279821258,0.0367429856655714,0.0386783930555411,0.040658357435652,0.0427392292139983,0.0577457432361851,0.0717373781783542,0.0851749249721924,0.0980423096748403,0.110816912105996,0.1257590825416305,0.1386872160658939,0.151681683600656,0.1640254074169126,0.1757910220208505,0.1896704197403045,0.2029679895068888,0.2148272406431092,0.2259898766351863,0.2362259408691051,0.2476421898231365,0.257556111955647,0.2675424760016224,0.2777859845687079,0.2873307576782418,0.2953923886339406,0.3030111306385472,0.3099848319666303,0.3172234096203261,0.3229520367057334,0.3304769783550852,0.3372040529695024,0.3420931775271725,0.347667922567234,0.3530642235843936,0.3539126909041762,0.3545346490864361,0.3551880848894992,0.3567643685669904,0.3562963073391076,0.3559171006744404,0.3554155691663229,0.3564288063137126,0.3572966875192288,0.3586008436405233,0.3596310322846751,0.3606239743767176,0.3617378528701857,0.3632944547672883,0.3638071836380718,0.3638950528651612,0.3641841338740076,0.3651143739366059,0.3661500528355054,0.3686854591124756,0.3725957135006411,0.3750266922912663,0.3762420099993671,0.3802246504164438,0.3820160908660672,0.3830975870676334,0.3789213413691856,0.3824790688176434,0.3909919867366676,0.3874082657396678,0.0,2.317239711374252,62.02777928308372,215.20061043183608,330.84966429946473,fqhc6_80Compliance_baseline_low_initial_treat_cost,22 -100000,95841,41553,390.4070283073007,7212,74.10189793512171,5620,58.17969345061091,2319,23.831136987301885,77.32864418348662,79.63976390392136,63.32870225298407,65.0384913811956,77.05172549850352,79.36217468011212,63.22802712694328,64.94034044969588,0.2769186849831015,277.5892238092439,0.1006751260407909,98.15093149971688,90.94426,63.68614444417584,94890.7669995096,66449.7912627955,238.03644,145.45519580648593,247932.5862626642,151333.7984854978,273.06749,129.88079187708803,282653.3112133638,133681.78851644142,3711.3841,1658.6050792266824,3842573.032418276,1700971.8396451883,1412.40831,608.5725552553401,1462503.4692876744,623812.2859574261,2281.83314,935.7757511817758,2346745.129954821,946319.6753959048,0.37945,100000,0,413383,4313.216681795891,0,0.0,0,0.0,19962,207.81294018217676,0,0.0,25506,263.7910706273933,2027596,0,72900,0,0,3643,0,0,37,0.3860560720359762,0,0.0,0,0.0,0,0.0,0.07212,0.1900645671366451,0.3215474209650582,0.02319,0.3223249669749009,0.6776750330250991,25.255239347868606,4.542161014218593,0.3272241992882562,0.2060498220640569,0.2302491103202847,0.2364768683274021,11.200506126095238,5.7311244100061085,24.42618302973513,12966.24031434452,63.31650408130191,13.651874380832588,20.721455570665903,14.410086885204452,14.533087244598958,0.552491103202847,0.7728842832469776,0.6960304513322458,0.5788253477588872,0.1361926260346125,0.7160493827160493,0.9333333333333332,0.8556701030927835,0.7072243346007605,0.1821561338289963,0.4994107942493518,0.7005012531328321,0.6388478581979321,0.5460717749757517,0.1245283018867924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022484428014381,0.0047236751408993,0.0070816212651549,0.0091215667154233,0.0112365263371974,0.0132864996945632,0.0155030068290694,0.0179207445885678,0.0199889631491814,0.022307267257434,0.024273038381934,0.0262407126144246,0.0283124543969087,0.0303167560556304,0.0321522851014684,0.0341928019503326,0.036249055744694,0.0383195786505204,0.0402280942290913,0.0421944441553305,0.0570018983248847,0.0708027518139807,0.084344800117393,0.097037589718261,0.1095288289237904,0.1246921279901903,0.1379354222999841,0.1508241378209562,0.1635963647625455,0.1750396672241519,0.1888070470160022,0.202044901271301,0.2141870656937481,0.2252454141979492,0.2357601029827591,0.2471281557054711,0.2572691946938228,0.2669203832772229,0.2764831470882166,0.2847771737883896,0.2930120928938307,0.3010718641523595,0.3082812982264536,0.3149616706317737,0.3225445205896315,0.329379821042888,0.3355109717868338,0.3409415485055595,0.3460444825302847,0.3514722424402832,0.3519390936947395,0.3527844501504735,0.3531500183880732,0.3539658576239693,0.3544787253088262,0.3541317420525676,0.3534564996184177,0.3546351669714492,0.35548821202938,0.3572169187314526,0.3574596016535137,0.3583655658038282,0.3597294572340783,0.361348496063522,0.3621914102130538,0.3637294275139774,0.3656455768680217,0.3678378634340373,0.3701892633504538,0.3714615598996695,0.3746790168745414,0.3776849322406128,0.3803184713375796,0.3800370541917554,0.3809886655871988,0.3811019816336394,0.3799443757725587,0.3797909407665505,0.3823366555924695,0.3846755277560594,0.0,1.826638352845245,61.30502718426573,211.9551441587992,324.26622571131776,fqhc6_80Compliance_baseline_low_initial_treat_cost,23 -100000,95748,41802,392.2484020553954,7285,74.92584701508125,5675,58.70618707440364,2294,23.676734762083804,77.35098256499538,79.70100159254912,63.33757887846742,65.07198292254711,77.06814881745692,79.41487791043076,63.23483116537303,64.9702149191168,0.2828337475384614,286.12368211835815,0.1027477130943879,101.76800343030834,89.44188,62.61474112208682,93413.8363203409,65395.351466439846,237.27725,144.7848099231604,247269.67665120945,150669.81025521198,270.75211,129.53239113600844,279454.95467268245,132676.99126221417,3740.43948,1672.709862978293,3872274.418264611,1712865.2478442432,1349.67343,592.5079451284234,1394875.3394326775,604144.2877249864,2263.86142,935.3232920650332,2338175.565024857,953050.0504592774,0.38224,100000,0,406554,4246.083469106404,0,0.0,0,0.0,19851,206.75105485232064,0,0.0,25238,260.21431257049755,2037710,0,73155,0,0,3493,0,0,37,0.3864310481681079,0,0.0,0,0.0,0,0.0,0.07285,0.1905870657178736,0.3148936170212766,0.02294,0.3266989655623936,0.6733010344376064,25.340519688996963,4.541030255327252,0.3235242290748898,0.2081057268722466,0.2333039647577092,0.2350660792951542,10.938203554867435,5.390013889051151,24.43943752572676,13052.5851818946,63.59876186695204,13.866846841522571,20.515642874340102,14.702377597248027,14.513894553841332,0.531806167400881,0.7502116850127011,0.6786492374727668,0.5574018126888217,0.1109445277361319,0.708420320111343,0.8982630272952854,0.8612975391498882,0.7098765432098766,0.155893536121673,0.4719207173194903,0.6735218508997429,0.6198704103671706,0.508,0.099906629318394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0046624299368544,0.0070114557649183,0.0090801982611521,0.0112352695956319,0.0133359122883814,0.015718494204952,0.0182174458834695,0.0204008626416868,0.0227102928082367,0.024847776616028,0.0269349209607883,0.0290238009561507,0.0309851613102532,0.032980523231823,0.0349656854638663,0.0371206394897335,0.039286084881187,0.0413166431007236,0.0435249137940015,0.0581658750456704,0.0714793815511433,0.0841930884079852,0.0973307120554253,0.1097969767883119,0.1255219068759579,0.1386016818842193,0.1513274807129555,0.1639232190734589,0.1753172228121547,0.1889708654208627,0.2023050700719658,0.2150556347143214,0.226262117863317,0.2367030644593166,0.2474450774789953,0.2577485396446003,0.2673020016427197,0.2764440812249577,0.2854685959320324,0.2933896735355406,0.3023095201863536,0.3090921999242711,0.3173235893135258,0.3244585275835275,0.3311903442330193,0.3372866936896362,0.3433925777025737,0.3487838695883168,0.3541779545664785,0.3553153590802364,0.3559474040040288,0.3566825876833507,0.357416378985234,0.3572876606147333,0.3581436077057793,0.3578897187351025,0.3587802625503001,0.3591511845333059,0.360516558900969,0.3616465146016284,0.3628830829005273,0.3635292632641898,0.3654649126745387,0.3658471856980868,0.3675025548305951,0.3689300941425587,0.3720893494676313,0.3731269785437918,0.3763852347923144,0.3770123377516855,0.3798030611152734,0.382031746031746,0.381298820646347,0.3828901296489069,0.3828790971305079,0.3810196078431372,0.3799216656359513,0.3777840428531153,0.3818110544884359,0.0,2.2408016069240912,63.51279539837478,198.3542290246586,335.6389977979476,fqhc6_80Compliance_baseline_low_initial_treat_cost,24 -100000,95829,41690,390.0593765978984,7341,75.31123146437926,5678,58.53134228678167,2298,23.46888728881654,77.51248185563044,79.79837434686696,63.42745123530996,65.11063250236798,77.23123002055262,79.52146581010075,63.32383833904899,65.01243114994958,0.2812518350778248,276.9085367662143,0.1036128962609694,98.20135241839978,90.13708,63.07500436307134,94060.336641309,65820.37208263818,237.80329,145.0947403932104,247462.5217835937,150718.7911730378,273.79039,130.6740418909036,281313.5376556157,132904.82760479,3757.93383,1691.0830027016098,3874499.420843377,1718151.4942297323,1384.54261,603.5347050317206,1426028.425633159,611129.4583948379,2261.989,939.2301243768763,2313049.51528243,938865.0635877273,0.38191,100000,0,409714,4275.469847332228,0,0.0,0,0.0,19850,206.39889803712865,0,0.0,25528,261.97706331068883,2043255,0,73267,0,0,3386,0,0,53,0.5530684865750451,0,0.0,1,0.01043525446368,0,0.0,0.07341,0.192218061847032,0.3130363710666122,0.02298,0.3177279211516016,0.6822720788483984,25.43325147124874,4.609132460002134,0.3321592109897851,0.2011271574498062,0.2361747094047199,0.2305389221556886,11.328107149162538,5.77974617807179,24.30788234124202,13055.48016786224,63.65178999035624,13.437633310939878,20.991508205830453,14.92734432837513,14.29530414521078,0.5507220852412822,0.7653239929947461,0.690880169671262,0.5995525727069351,0.1115355233002291,0.7091690544412608,0.9090909090909092,0.8832951945080092,0.7147335423197492,0.1660649819494584,0.4990658570761326,0.6983311938382541,0.6328502415458938,0.5636007827788649,0.0968992248062015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024487483051018,0.0046991624553123,0.0068721556066856,0.0092135036681515,0.0117027977000751,0.0141157327367029,0.0162387245220011,0.0185185185185185,0.0207386682732071,0.0229369056140709,0.0254160053248681,0.027371832343681,0.0294794599371159,0.0313078918117821,0.0334134045382846,0.0355427473583093,0.0376567738730907,0.0397938764295416,0.0418662151071588,0.0441119821761355,0.0584259819361298,0.0724420975584252,0.0863250550141465,0.099079889922904,0.1119312617801598,0.1272444970214204,0.1411053998198293,0.1532760563979329,0.165026890899778,0.1754853771109754,0.189214473896446,0.201816826710161,0.2139661650053206,0.225566537432425,0.2366313245069494,0.2476053533901117,0.2576051347195293,0.2684321700635941,0.2775235074204146,0.2858596483204902,0.2943477658788774,0.3024589208716933,0.3109155469570244,0.3176311765268088,0.3242172833525101,0.3300561625149009,0.3357823570501946,0.341587044123983,0.3467263440305438,0.3520371975727007,0.3528898904135313,0.3530838815789474,0.3542768186471817,0.3550152676153713,0.3556964462944583,0.3554475570430822,0.3552935591074537,0.3568252301330751,0.35818780833376,0.3589084154879268,0.3605466406718656,0.3616251482799525,0.3631828281557875,0.3631954223384519,0.3645538668073069,0.3657516815124523,0.3657961294722782,0.3687734668335419,0.3724812292648856,0.374528005034613,0.3750056354537667,0.3783897414336767,0.3815346225826575,0.3827841596130592,0.383641946589746,0.3830659327790139,0.3866344848393422,0.393716444621197,0.3899508465319498,0.3863293051359516,0.0,2.8275815595164357,60.922518288133965,213.1008926769887,324.3611912410552,fqhc6_80Compliance_baseline_low_initial_treat_cost,25 -100000,95744,41504,389.55965909090907,7184,73.84274732620321,5601,57.99841243315508,2285,23.55238970588235,77.31288813594676,79.67178798720356,63.318020272784125,65.06209772613136,77.0365588928485,79.39180918726565,63.217094507280144,64.96184146844148,0.2763292430982602,279.9787999379077,0.1009257655039803,100.25625768987824,89.64582,62.782839962562,93630.51470588236,65573.42492747534,233.31794,142.47878387728278,243176.93014705885,148299.8035148759,268.56026,127.50682900132836,277032.3048963904,130589.9336333047,3731.96996,1670.0936894863105,3867126.8173462567,1713596.2874815238,1400.96856,605.7506563913416,1452954.2007854276,622397.6040183636,2260.44188,934.8983140731806,2331435.22309492,951644.136755268,0.38068,100000,0,407481,4255.932486631016,0,0.0,0,0.0,19564,203.80389371657756,0,0.0,25097,258.66895053475935,2038968,0,73200,0,0,3464,0,0,35,0.3655581550802139,0,0.0,1,0.0104445187165775,0,0.0,0.07184,0.1887149311757907,0.3180679287305122,0.02285,0.3095300950369588,0.6904699049630412,25.328440448260555,4.518845299648801,0.3299410819496518,0.2033565434743795,0.2246027495090162,0.2420996250669523,10.93635683857062,5.3780529542781,24.232278687785517,13020.726295263516,63.020910377531166,13.44978232803494,20.761409412391863,13.925486998067022,14.88423163903735,0.5400821281913943,0.7655838454784899,0.6915584415584416,0.5604133545310016,0.1253687315634218,0.6990504017531045,0.9119318181818182,0.8531317494600432,0.7116788321167883,0.1642857142857142,0.4886578449905482,0.7001270648030495,0.6375451263537906,0.5182926829268293,0.1152416356877323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025927201280155,0.0046929322210847,0.0067979585831836,0.0091008816479096,0.0112488685021511,0.0134114052953156,0.015907005200367,0.0184888362548621,0.0206923344306541,0.0227214548284371,0.0246178138232972,0.0268111105406376,0.0287145310748408,0.0307253362997754,0.0327349633756319,0.0350148306617472,0.0369442316055416,0.0389599609881615,0.0409695431999916,0.0429989893622563,0.0573773058974599,0.0717155652283095,0.0845436718086389,0.0974766060351172,0.1094018535896165,0.1259347796194243,0.1402816243805643,0.1531747298951514,0.1652779558176302,0.1765898123324396,0.1903218512097686,0.2026888175043533,0.2149428037057979,0.2255570017609677,0.236259806564484,0.2469645943191385,0.2576205730358398,0.2672712543318781,0.2767209167622573,0.2856766296873567,0.2936476691137306,0.3020167988582392,0.3095156384980415,0.3162816347571721,0.3227586542201478,0.3293872467413957,0.3358481107838837,0.3414932368749522,0.3472938979798242,0.3521927736338147,0.3531476556277085,0.3538463659804476,0.3543543967684529,0.3548835995709274,0.355669564958017,0.3558792763967511,0.3550713103272634,0.3556908556908557,0.3564988923806089,0.3578472758626884,0.3585826237661065,0.3597930965880831,0.3606243154435925,0.3617776579491327,0.3627719035060127,0.3641994750656168,0.3643960714490839,0.3662029979674797,0.3689919183326244,0.3728057842940349,0.3773098013916409,0.381834734643603,0.3845424671385237,0.3869408424767896,0.3884195538680589,0.3851132686084142,0.3887587822014051,0.3919474116680361,0.3947146471745853,0.4032134659525631,0.0,1.9418681767991972,60.83014533942983,207.4942206145321,327.8956947870827,fqhc6_80Compliance_baseline_low_initial_treat_cost,26 -100000,95786,41829,393.0323846908734,7333,75.33460004593573,5734,59.319733572755936,2309,23.75086129497004,77.37208356525132,79.71019749201673,63.35007434272507,65.07926175485959,77.08438053235528,79.42100833847522,63.24511707111208,64.97640489992726,0.287703032896033,289.1891535415141,0.1049572716129958,102.85685493232675,90.40636,63.347215173685335,94383.68863925835,66134.10641814601,236.88402,144.34706785577424,246743.6264172217,150135.6125694509,271.05573,128.9409764085784,279902.8876871359,132294.38005402128,3766.05173,1686.8453093713692,3896833.566491972,1726344.3961572556,1384.40376,595.3880712996532,1434373.5410185205,610744.2651525016,2282.55774,948.176589999391,2349505.460088113,960511.1355399886,0.38255,100000,0,410938,4290.167665420834,0,0.0,0,0.0,19834,206.48111415029337,0,0.0,25304,261.1133150982398,2037553,0,73133,0,0,3482,0,0,40,0.4071576221994863,0,0.0,0,0.0,0,0.0,0.07333,0.1916873611292641,0.3148779489976817,0.02309,0.3263592922639803,0.6736407077360196,25.23231652171021,4.551326856452199,0.3257760725497035,0.2040460411580048,0.2343913498430415,0.2357865364492501,10.823341429231052,5.339874717252632,24.545654390997512,13090.601391856211,64.49864382868594,13.662961843819495,21.180279253699627,14.814718423404855,14.84068430776198,0.5484827345657481,0.7692307692307693,0.699678800856531,0.5729166666666666,0.1242603550295858,0.7086044830079538,0.921832884097035,0.8463157894736842,0.7333333333333333,0.1423220973782771,0.4975867616639853,0.6983729662077597,0.6496769562096195,0.5325884543761639,0.1198156682027649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397143725311,0.0045618588054012,0.006738243591565,0.0089292063266321,0.0110749516932777,0.0132859586251832,0.0154725866128489,0.0174602526685307,0.0195593525179856,0.0217889673523692,0.0241645402281181,0.0265088927431521,0.0284936012746055,0.0308487525612907,0.0328854423396203,0.0348194451619569,0.0369216437221819,0.0388671692712924,0.0409592485609193,0.0427798021863612,0.0574878168404136,0.0718349928876244,0.0848507720854168,0.0976493952735717,0.1096818373367046,0.12540936846331,0.13954326286229,0.1526306835098464,0.1651407473803273,0.1764283648128903,0.1900012909888975,0.2030136956686231,0.2156293808887295,0.2272230360539607,0.2381334682386063,0.249424116239922,0.2609636645581624,0.2710734323525112,0.2800771062478739,0.288942335223043,0.2971193891716798,0.3046462945420949,0.312444565333081,0.3195793558587153,0.3260170201400944,0.3323644246283455,0.3376909591785625,0.3440354135395731,0.3496051779935275,0.3546995011481511,0.3553736808098212,0.3566497992409658,0.3574522724386561,0.3574686183381835,0.3582633803655414,0.3582746613900265,0.3580174464710547,0.3580183945112621,0.3584445893537427,0.359541300842143,0.3602601210389806,0.3612521821933026,0.3628715057947542,0.3636078008931978,0.3652907342065832,0.3656769315586359,0.3661765129061034,0.3677405006989452,0.3693211996742325,0.3727922286448298,0.3760169140966126,0.3768077129084092,0.3796625222024867,0.3807730730807654,0.3815827064089134,0.3855927124535538,0.3846390641834692,0.3814,0.3799126637554585,0.3868640850417615,0.0,2.055644468306211,61.01489667556468,218.15116769151692,332.6349788163034,fqhc6_80Compliance_baseline_low_initial_treat_cost,27 -100000,95654,41830,393.77339159888766,7204,74.22585568820959,5630,58.366613001024525,2313,23.867271624814435,77.25911226955019,79.6548587359181,63.27736057920528,65.04550508173575,76.97830117460556,79.37171976427807,63.17590616432901,64.94545976858093,0.2808110949446245,283.1389716400281,0.1014544148762723,100.04531315482268,88.80718,62.22500769400106,92842.09755995568,65052.175229474,233.8255,143.13977330803212,243956.9594580467,149150.9642127168,275.17462,130.3553926389566,284382.2108850649,133707.90521689891,3728.64536,1657.701150154444,3867615.489158844,1702680.9003065613,1362.74317,583.1697823059804,1413193.5413051206,598251.050383352,2276.14094,930.479908799828,2350717.8790223096,948794.671480431,0.38129,100000,0,403669,4220.095343634349,0,0.0,0,0.0,19548,203.83883580404373,0,0.0,25604,264.3590440546135,2035251,0,73127,0,0,3467,0,0,44,0.4599912183494679,0,0.0,0,0.0,0,0.0,0.07204,0.1889375540926853,0.3210716268739589,0.02313,0.3206428665524963,0.6793571334475036,25.079103681933677,4.6405831853706685,0.3293072824156305,0.2078152753108348,0.2285968028419183,0.2342806394316163,11.19399332438588,5.622774583577002,24.465512000910977,13070.560093550062,63.863744504390816,13.742311639160752,21.251492660848573,14.485401698660272,14.384538505721208,0.5460035523978686,0.7743589743589744,0.6952535059331176,0.574980574980575,0.1053828658074298,0.7180811808118082,0.943502824858757,0.8505494505494505,0.75,0.12,0.4914619883040935,0.7009803921568627,0.6447462473195139,0.5227043390514632,0.1019644527595884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702683265297,0.004451474867926,0.0065363457361508,0.0086063241749309,0.0110687217050714,0.0131586987961623,0.0155596794257397,0.0179976928652367,0.020465953118451,0.0225704751571232,0.025005895198745,0.0270866917887689,0.029015767873857,0.0309258171853591,0.0327863777089783,0.0347312695163058,0.0371908960001657,0.0389985156274328,0.0408263035812729,0.042700916359997,0.0574539678558739,0.0712834370221412,0.0846660296325853,0.0974382192833752,0.1099800420278989,0.1256248411420825,0.1394326256200015,0.1516727040272746,0.1633715770452188,0.1746679408575017,0.1882604193631892,0.2011875352143197,0.213697555875049,0.2251947283662536,0.2357358681987605,0.2473180374475268,0.2585510489510489,0.2685284397875052,0.2781998498737574,0.2874197143612193,0.2959567356791384,0.3035955187987565,0.3118139203702605,0.3187448886323182,0.3254823994340497,0.3322367607410522,0.3389193874602716,0.3439211530850642,0.3493471906463137,0.3546601697496127,0.3552035893347027,0.3559392322472733,0.3567817133793142,0.3571729988504576,0.3578852912585059,0.3582190725620089,0.3587017080275704,0.3606386843235032,0.3617863102303418,0.3624409434674044,0.3632440784638866,0.3642090620031796,0.3651171611598112,0.3648166834846956,0.3657471097917119,0.3655370927646212,0.3659904432172594,0.3704524586011462,0.3719572601188791,0.3741289547456948,0.376184343666636,0.3773483628556092,0.377318799005546,0.3863863095694881,0.391025641025641,0.3904511188225439,0.3930609097918273,0.3897163844113446,0.3915866741953698,0.3956607495069033,0.0,1.9442651762757344,60.475283727923234,221.96247767245077,321.12478543142254,fqhc6_80Compliance_baseline_low_initial_treat_cost,28 -100000,95618,41518,390.65866259490895,7154,73.57401326110147,5546,57.4264259867389,2245,23.0814281829781,77.28554750318864,79.71743794571186,63.27381344368565,65.07208334405526,77.00592441122092,79.43840904332932,63.17048332450347,64.97175379894254,0.2796230919677214,279.0289023825494,0.1033301191821749,100.3295451127144,88.60566,62.00850946932097,92666.29714070572,64850.247306282254,231.69044,141.6239580924429,241718.8081741932,147525.11183842714,267.4844,127.21238223848044,276577.0566211383,130524.01374148688,3675.69801,1660.8128180999938,3807342.445982974,1700149.1706430383,1372.69031,594.9065724036997,1418448.9426676985,605086.4091797308,2203.8607,924.9286351953192,2267463.0927231275,935136.436884596,0.38015,100000,0,402753,4212.104415486624,0,0.0,0,0.0,19416,202.45142128051205,0,0.0,24974,258.0371896504842,2041150,0,73325,0,0,3468,0,0,35,0.3555815850572068,0,0.0,0,0.0,0,0.0,0.07154,0.1881888728133631,0.3138104556891249,0.02245,0.3189781998127591,0.6810218001872409,25.39546633885717,4.508355705120534,0.3243779300396682,0.212585647313379,0.2307969707897584,0.2322394518571943,11.02260237958902,5.623498718837594,24.04769988865877,13011.606449813478,62.75999209592349,13.84392080158308,20.34672124322821,14.26190026896236,14.307449782149842,0.5494049765596827,0.7608142493638677,0.6903835464146748,0.58984375,0.1187888198757764,0.6972934472934473,0.91005291005291,0.8322440087145969,0.7372013651877133,0.1350364963503649,0.4992757122163206,0.6903870162297129,0.6417910447761194,0.5460992907801419,0.1143984220907297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025435751925415,0.0046962642891194,0.0068533484953092,0.0092087208415917,0.0113946201115044,0.0134665729507278,0.0157399190052126,0.0177958483164432,0.0198116005768581,0.0220189875362289,0.0242403725816048,0.0263663546408277,0.028419384057971,0.0305319905579664,0.0326794011357769,0.0347645300427186,0.0368194159464444,0.0389356818677495,0.040813564967576,0.0426006863675717,0.0569209379148851,0.0709786948639216,0.0847099621689785,0.0972449033345625,0.1097249218287839,0.1255534136886478,0.1387064549724755,0.1510938632777517,0.1631403773504136,0.1746717383362345,0.1888637099384914,0.2017760718235638,0.2147348918315078,0.2262536162005786,0.2371049904073036,0.2486652681118399,0.2594795206582007,0.2691124260355029,0.2781648123103499,0.2872212348793212,0.2959620998007691,0.3036241390619875,0.3111487968881563,0.3180338502564595,0.3243506533042705,0.3301137556661685,0.3364717977006883,0.342098215993573,0.346650739447135,0.3515540272450734,0.3522340942204954,0.352463760127873,0.3528314946393004,0.3539402370808335,0.3553129375316512,0.3548545778761606,0.3544935692596302,0.3558212401055409,0.3566310087087705,0.3576004450266478,0.3581817155543848,0.3582814544589396,0.3600210526315789,0.3615044545678957,0.3629806532542095,0.3640729816501788,0.3654026683355617,0.3670921896616778,0.3693034651732587,0.3709863068069061,0.3726832831187802,0.3746004687832943,0.3747235387045813,0.3745906009597075,0.3759992476253174,0.3780271707028942,0.3820516740559547,0.3859684593610998,0.3829321663019693,0.3784905660377358,0.0,2.191728308677894,62.22762579535388,209.49544689287808,313.90990264666965,fqhc6_80Compliance_baseline_low_initial_treat_cost,29 -100000,95808,41769,391.1990647962592,7048,72.1756012024048,5532,57.13510354041416,2277,23.369655978623918,77.35864855579545,79.66382031084403,63.35358995694328,65.05449953437159,77.08060990987012,79.38678082098467,63.25010493539176,64.9540788681268,0.278038645925335,277.0394898593622,0.1034850215515135,100.42066624478709,89.12838,62.41358322990584,93028.11873747496,65144.438073966514,233.79848,143.21113467401796,243422.39687708757,148871.47698941422,270.1251,129.32167887942137,278297.209001336,132126.48417806547,3682.68367,1669.53710184511,3806236.911322645,1705084.5630036243,1351.3048,592.2200688351492,1396246.8478623915,603986.8651721638,2251.91846,941.2207113756835,2313477.621910488,950365.9654244072,0.38344,100000,0,405129,4228.550851703407,0,0.0,0,0.0,19551,203.41725116900463,0,0.0,25265,260.1035404141616,2040140,0,73255,0,0,3511,0,0,35,0.365313961255845,0,0.0,0,0.0,0,0.0,0.07048,0.1838097225119966,0.3230703745743473,0.02277,0.3231517772671983,0.6768482227328018,25.330257796012624,4.621857918032489,0.3233911785972523,0.202819956616052,0.2312002892263196,0.242588575560376,11.147858539133354,5.45909814798458,24.18652632601105,13081.987245506893,62.51769474029617,13.064602167074638,20.457454544200303,14.24647737946172,14.749160649559515,0.5527838033261027,0.7789661319073083,0.7126886528787032,0.5856137607505864,0.1192250372578241,0.7142857142857143,0.923943661971831,0.8867924528301887,0.7542662116040956,0.1314878892733564,0.4973288003885381,0.711864406779661,0.649390243902439,0.5354969574036511,0.1158594491927825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026415399874501,0.0047199910867121,0.0074008739114125,0.0096705125473124,0.0122528600166622,0.0145160469965922,0.0165933259992665,0.0185447757387818,0.0207384099871278,0.0230569365167045,0.0250225335955424,0.0271503887418712,0.0292597729490933,0.0314062853732326,0.0337670639666762,0.0357456389494231,0.0377249164485188,0.0399738759939043,0.04198390028564,0.0437765470142416,0.0579932398597896,0.0719699741769558,0.0849518379154569,0.0977288730544082,0.1099974705956747,0.1253897291184459,0.138294826800123,0.1509425933018426,0.1631410906683467,0.174487432444025,0.1893475194107321,0.2025298649584487,0.2150152828690459,0.2265257445458325,0.2368933963199101,0.2482151567557979,0.2587167435161719,0.2679901861480631,0.277326855183844,0.2871992940070828,0.2954463882553171,0.302619714021384,0.3105164018907488,0.3176937749679091,0.3245709002882966,0.3313634288675311,0.3376576215579959,0.3439484770959817,0.3497751454750457,0.3550952469021639,0.3553539656009058,0.3566144563375625,0.35661220519616,0.3571066981009271,0.3575138014671964,0.3573586004936909,0.3571145210174709,0.3583554245632522,0.3594157180085036,0.3604448829491434,0.3609945229715232,0.3625841291270424,0.3643546416080233,0.3667212783625468,0.3675358256204538,0.3679250236270083,0.3706891604980777,0.3711912235644757,0.3742656946705358,0.3755208333333333,0.3770732154311372,0.3770711566303823,0.3793519695044473,0.3812605948528278,0.3812983581807888,0.3807214665878178,0.3820276497695852,0.3846784104875051,0.3844206974128234,0.3729083665338645,0.0,2.276774940971815,62.28735348065271,207.35301692506545,312.7915003067748,fqhc6_80Compliance_baseline_low_initial_treat_cost,30 -100000,95857,41849,392.4074402495384,7153,73.36970695932483,5573,57.523185578518,2346,24.11926098250519,77.41454581429173,79.70382461740992,63.37712166936033,65.06819806081815,77.12695253701528,79.41486429538784,63.27241356098048,64.96545161036134,0.2875932772764429,288.9603220220778,0.104708108379846,102.74645045680586,90.53022,63.43891170249245,94442.76370009492,66180.57201292807,235.70091,144.04389492213372,245237.8438716004,149620.18563524177,268.99612,128.61218841892378,276416.2450316617,130937.59081084482,3693.89184,1649.5332777112114,3817523.091688661,1685256.1192093748,1346.57134,582.4863075733418,1389624.3675474925,592851.0524403009,2310.8818,953.1073480753316,2378447.8128879475,966463.2732685648,0.3823,100000,0,411501,4292.852895458861,0,0.0,0,0.0,19647,204.28346390978228,0,0.0,25127,257.9571653609022,2036106,0,73128,0,0,3596,0,0,45,0.469449283829037,0,0.0,1,0.0104322063073119,0,0.0,0.07153,0.1871043682971488,0.3279742765273312,0.02346,0.3286554397219994,0.6713445602780005,25.48069455478811,4.559777120368534,0.3262156827561457,0.207249237394581,0.2233985286201328,0.2431365512291405,10.94533017265331,5.375532436340787,24.971962502751143,13035.410245440757,62.58275655910866,13.328742271650771,20.62457223984125,13.75627187642718,14.873170171189456,0.5298761887672707,0.7316017316017316,0.6947194719471947,0.5606425702811245,0.1084870848708487,0.688839615668884,0.8969359331476323,0.841648590021692,0.678030303030303,0.1598513011152416,0.478909952606635,0.657035175879397,0.6448047162859248,0.5290519877675841,0.0957642725598526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023384117021815,0.0047616635428803,0.0074125150836062,0.0096339309280652,0.011627197885964,0.0136550025946539,0.0156988590057049,0.0178709861683463,0.0201438261011685,0.0222567711316586,0.0244706894609073,0.0266491604180984,0.028811277909641,0.0310647233201581,0.0334048168921148,0.0353439372030572,0.037245874502095,0.0393077361521322,0.0414499704151225,0.043384647389224,0.0576576200852874,0.0713457137184002,0.0850854311365326,0.0985415638551433,0.1102639975569432,0.125710242274465,0.1396339138172111,0.1529828141440551,0.1647375102680905,0.1761852236584242,0.1903117536952172,0.2030942547624711,0.2153358034618017,0.2266791962149109,0.2371521519321229,0.2484673439125334,0.2588813808791061,0.2692860996223701,0.2784230106160965,0.2879650091026712,0.2967555375628939,0.3038170081392085,0.310988594955279,0.3180750329617643,0.3246255956432947,0.3301637807705589,0.3356795751715846,0.341003438176493,0.345955696284665,0.3509957419798471,0.3520121918325511,0.3525156062673116,0.3527535945591286,0.3532774666029843,0.3536347530928526,0.3535159845370313,0.3526699413722072,0.3542570677186061,0.3560954743776199,0.3572743027639313,0.3587676036529338,0.3603073693383241,0.3612742219612448,0.3628409675759135,0.3632135714113593,0.3646856068518905,0.3649280986076238,0.3664299629233959,0.3684229050082708,0.371500258871321,0.3733029612756264,0.3755978318631098,0.3788925163234555,0.3813456584330959,0.3821979676326684,0.3852283539486204,0.3864265927977839,0.3876796714579055,0.3906510851419031,0.3992292870905587,0.0,2.364531839222523,59.40224206688057,215.6723681228725,314.4511996542912,fqhc6_80Compliance_baseline_low_initial_treat_cost,31 -100000,95710,41382,389.1442900428378,7149,73.35701598579041,5533,57.23539859993731,2245,23.090586145648317,77.36002699221102,79.73214478437401,63.33690834044432,65.0884418102307,77.08953768068405,79.46040672311845,63.23770942341741,64.991378694805,0.2704893115269726,271.73806125556155,0.0991989170269107,97.063115425712,90.76826,63.48501940106478,94836.7568697106,66330.60223703351,233.08025,142.36477266100792,242974.05704733048,148192.6602328307,264.25313,125.79194241314536,272203.21805453976,128530.53953981458,3637.38808,1624.766032643587,3765642.681015568,1662831.785173664,1316.6671,569.0000442409336,1363378.821439766,582216.7386492578,2204.98748,909.2174989517118,2270423.487618848,921481.5381012808,0.3788,100000,0,412583,4310.761675895936,0,0.0,0,0.0,19530,203.45836380733468,0,0.0,24552,252.69041897398392,2036019,0,73045,0,0,3542,0,0,53,0.5433079093093721,0,0.0,0,0.0,0,0.0,0.07149,0.188727560718057,0.3140299342565393,0.02245,0.3192225772097976,0.6807774227902024,25.43787569150892,4.512264592384224,0.3164648472799566,0.2071209108982468,0.246520874751491,0.2298933670703054,10.957225579423673,5.520324393847152,23.723520227257865,12938.948155391672,62.01877503826871,13.339099837948366,19.62190415344341,15.179122966769516,13.878648080107409,0.5441894090005422,0.7486910994764397,0.6893203883495146,0.5879765395894428,0.1132075471698113,0.7023901310717039,0.9,0.8511166253101737,0.7320261437908496,0.1532258064516129,0.4957507082152974,0.684863523573201,0.6409495548961425,0.5463137996219282,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713615784302,0.0047238187918782,0.0069309844433394,0.0092748735244519,0.0115138939745311,0.0135432365280436,0.0157186544342507,0.0177488824021719,0.0198517761308458,0.022072524007453,0.0241751932580122,0.0263233542770317,0.0281456953642384,0.0301166970511592,0.0320264135369376,0.0339429906638682,0.0358130717193796,0.0380611344646842,0.0402517031566904,0.0423561038636268,0.0570402163810478,0.0707430162335283,0.0830334756564522,0.0957444570659262,0.1083463371430981,0.1236930298449079,0.1378940891925149,0.1514538720252032,0.1631205673758865,0.1742134114290005,0.1883968972204266,0.2011839442442345,0.2131133285506206,0.2246723005105443,0.2350534512339976,0.2467326776537302,0.2570204505137731,0.2669575386829795,0.2758691067419552,0.2853331501265272,0.294233282068479,0.3022592596921423,0.3092489651094027,0.3158058605865376,0.3216857958340924,0.3274407145056975,0.3334167834968956,0.3387390137495071,0.3443051742891179,0.3500726072607261,0.3505525606469002,0.3518161274320674,0.3533853688831176,0.3547929336808572,0.3544703342514703,0.3538879342089112,0.3536059597400539,0.3551803984037574,0.3560690280319485,0.3573969150476326,0.3585681301972857,0.3599493280022169,0.3617061373201834,0.3624701070558523,0.3618873551055745,0.362879657655777,0.3622513148868054,0.3632312505925855,0.3654355893267362,0.3670728774152169,0.36917199797487,0.3685169309901414,0.37051111533346,0.3694569962472237,0.3715146948003014,0.3771721018805046,0.379638147807421,0.3791912212964844,0.3735807255607865,0.3705426356589147,0.0,2.2340282936976363,57.05160296819477,213.31024921151496,320.8325282523014,fqhc6_80Compliance_baseline_low_initial_treat_cost,32 -100000,95751,41598,391.21262441123326,7173,73.83734895719104,5605,57.9628411191528,2300,23.6446616745517,77.33346816806463,79.69529903668905,63.32120940122799,65.07007231589341,77.05861946972128,79.42077360866051,63.22062356059666,64.97231985967859,0.274848698343348,274.5254280285394,0.1005858406313251,97.75245621482044,89.53428,62.71615625989436,93507.4098442836,65499.218034166064,234.73483,143.22620033046866,244587.63877139665,149018.2664729023,267.93379,127.67576148600726,276395.24391390174,130696.3787574511,3712.71536,1664.0655629863493,3843595.82667544,1704488.3837643012,1392.64493,603.1740675492157,1443629.1735856545,619125.1920488614,2271.67298,941.7417381922372,2338671.804994204,954989.0927129806,0.3802,100000,0,406974,4250.3368111038,0,0.0,0,0.0,19672,204.8542573967896,0,0.0,25097,258.5978214326743,2039914,0,73197,0,0,3539,0,0,33,0.3446439201679355,0,0.0,0,0.0,0,0.0,0.07173,0.1886638611257233,0.3206468702077234,0.023,0.3324496288441145,0.6675503711558854,25.202239419838797,4.599674923565272,0.3232827832292596,0.2096342551293488,0.2256913470115968,0.2413916146297948,11.187175434234383,5.606586163636801,24.508906290821297,12978.625516634344,63.24272421838372,13.800223667624696,20.297016426147398,14.288343622729876,14.857140501881762,0.5496877787689562,0.7804255319148936,0.6926048565121413,0.5794466403162055,0.1300813008130081,0.6995548961424333,0.9032258064516128,0.8497652582159625,0.7087719298245614,0.1622641509433962,0.5022316185106883,0.7235367372353674,0.6443001443001443,0.5418367346938775,0.1222426470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020467095597548,0.0042996795521843,0.0067596370501187,0.0089516145420553,0.0110453408189418,0.0131963465670152,0.0154446845818211,0.0175542446571819,0.0196026327623564,0.0213935491795727,0.0236613596055073,0.0256762999846003,0.0278580463375255,0.0299893924882339,0.0319422233685839,0.0339955347914168,0.0361384652024893,0.0383733358237607,0.0404532931330249,0.0424946881639795,0.0570065555973109,0.0711788839117511,0.0845933496322256,0.0968722392831601,0.1091050977579988,0.1243364984033666,0.1381406550037662,0.1507433935356158,0.1628806083325323,0.1746399425194908,0.1883166546378981,0.2010820168794633,0.2139368956853702,0.2251342689316459,0.2358635863586358,0.2475830832438179,0.2572312089040713,0.2672481710748452,0.2771547908201484,0.285781355563444,0.2944183571973815,0.3015030118720393,0.3093972995041596,0.3164743520615407,0.3231577797468047,0.3290777697071171,0.3344922461230615,0.3406411740020601,0.3458037113295262,0.3513584910644705,0.3523151832319499,0.3532854152897114,0.3544880291023942,0.3553561088592936,0.3565494446595003,0.356470172527692,0.3568139232064026,0.3582281189813824,0.3587256430909496,0.3593629637591587,0.3605901146401052,0.3616688137944703,0.3628751311647429,0.363452960032279,0.3649946895819252,0.3646518945850269,0.3646490902339398,0.3662359000284369,0.3669552924544972,0.3669538167025604,0.3684114118239684,0.3719101123595505,0.375063548551093,0.379710813720966,0.3825541619156214,0.3818445545751239,0.3846750426554987,0.385298368779682,0.3824531516183986,0.3866404715127701,0.0,2.194771748750009,59.43177259261335,217.28147683328928,322.30126744204983,fqhc6_80Compliance_baseline_low_initial_treat_cost,33 -100000,95801,41592,390.3195164977401,7080,72.74454337637394,5503,56.8991972943915,2174,22.337971419922543,77.34149214859087,79.68022404955626,63.33904717832892,65.07210031863202,77.07879209406818,79.41888447808647,63.241865849768686,64.9782270947354,0.2627000545226963,261.33957146979014,0.0971813285602323,93.87322389662243,91.03138,63.76985623501534,95021.32545589296,66564.9171042216,234.97748,143.71713775444206,244646.9974217388,149386.67420427976,272.20187,129.72653609842232,280898.7066940846,132899.93648898858,3624.46388,1632.3066475886503,3749639.9515662673,1670165.59074399,1311.27993,569.0617735704818,1356194.4029811798,581444.4980433207,2142.75024,890.9525446514062,2202726.1093308004,899387.6106908298,0.3793,100000,0,413779,4319.151157086043,0,0.0,0,0.0,19608,204.10016596904,0,0.0,25398,261.8970574419891,2035261,0,72985,0,0,3676,0,0,52,0.5323535244934813,0,0.0,0,0.0,0,0.0,0.0708,0.1866596361718956,0.3070621468926554,0.02174,0.3200323537341601,0.6799676462658398,25.022057525071283,4.544831774418876,0.3254588406323823,0.2107941123023805,0.2300563329093221,0.2336907141559149,11.200277193037229,5.585842903704221,23.086294981642677,12946.889127321296,62.1886616576559,13.586581537293032,20.30649074796509,14.24938096097659,14.0462084114212,0.5507904779211339,0.7620689655172413,0.7035175879396985,0.6018957345971564,0.0972006220839813,0.7099853157121879,0.8917378917378918,0.8864628820960698,0.6986754966887417,0.147410358565737,0.4984303308379618,0.7058096415327565,0.6406601650412603,0.5715767634854771,0.0850241545893719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.0044605293837373,0.0065553807905018,0.0090842580173149,0.0111715928168082,0.0132727587576779,0.0156657963446475,0.0178496665951863,0.0198582720644626,0.022189682360892,0.0246800918710524,0.0266684466168965,0.0288003620616944,0.0307091643316301,0.0329460563787197,0.0349257865795675,0.0368414512922465,0.0390041493775933,0.0409302035599613,0.04280657922132,0.0575303876049872,0.0710177962734477,0.0842468193917545,0.0972413430718301,0.1085852198473926,0.124437115494387,0.1380319318109535,0.1507316969413366,0.1627298829104804,0.174482041608163,0.1880052095105858,0.2012432432432432,0.2134390787114998,0.2255543776434715,0.2360463581984518,0.2466065853280485,0.2566523605150214,0.2668845315904139,0.2766022518746743,0.2854365601235062,0.2937806779465265,0.3013079528202733,0.3087289578210705,0.3154580175520515,0.3221770523633274,0.3284381308779359,0.3346958163022962,0.3408242079321121,0.3464934393381165,0.3506255761885947,0.3514477154082127,0.3517367509144413,0.3517020796934002,0.351886396830217,0.3523793939574253,0.3523742396150958,0.3516427755930483,0.3529750448271891,0.3550083057900776,0.3557485673352435,0.3561352693349383,0.3568932655654384,0.3576150574761043,0.3583273413625741,0.3597242380261248,0.3610557246300766,0.3614013875694504,0.3632718014003819,0.3655875768451725,0.3674558587479936,0.3700944094779711,0.3710529151848259,0.3723921669013183,0.3769791990065197,0.381548757170172,0.3840144230769231,0.3884633421916523,0.3914575990047688,0.395152198421646,0.3982232522209347,0.0,2.1514593332812937,60.04659272928589,212.3427806260076,311.6534217056596,fqhc6_80Compliance_baseline_low_initial_treat_cost,34 -100000,95691,41767,392.2625952283914,7272,74.64651848136188,5610,57.94693335841406,2267,23.272826075597496,77.3419109081298,79.71004319193801,63.33255108723839,65.08067637432909,77.05862642010497,79.4260395413424,63.22972549822437,64.97958250509191,0.2832844880248331,284.00365059560784,0.1028255890140172,101.09386923717524,89.50194,62.69066599139456,93532.24441170016,65513.64913251461,234.80782,143.81196510544433,244646.98874502303,149564.5973138577,275.75468,131.5901941560095,283122.70746465184,133644.84963738776,3717.16361,1677.1448661618672,3847628.2409003978,1716449.191090971,1363.42271,594.1058110845096,1411047.747437063,607326.2103484179,2239.8491,930.7564787849968,2304278.2915843707,945527.6508827604,0.38119,100000,0,406827,4251.46565507728,0,0.0,0,0.0,19605,204.1257798539048,0,0.0,25680,263.389451463565,2039051,0,73184,0,0,3470,0,0,53,0.5434157862285899,0,0.0,1,0.010450303581319,0,0.0,0.07272,0.1907710065846428,0.3117436743674367,0.02267,0.3182175622542595,0.6817824377457405,25.062515389441945,4.505348418677702,0.3288770053475935,0.2046345811051693,0.2324420677361854,0.2340463458110517,11.09267499890249,5.478981623667078,24.22810593749813,13030.046702885753,63.326574833616014,13.547777903956046,20.83495793657933,14.46452476109438,14.479314231986276,0.551693404634581,0.7778745644599303,0.699728997289973,0.5866564417177914,0.1111957349581111,0.7166193181818182,0.9184210526315788,0.8626609442060086,0.7431506849315068,0.1518518518518518,0.4964302712993812,0.7083333333333334,0.6446700507614214,0.541501976284585,0.1006711409395973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0044998479781088,0.0065429093122337,0.0090497277971885,0.0112559482653434,0.0134601286959354,0.0156477772001182,0.0179125500122478,0.0201757972199509,0.02244465596119,0.0244284982060481,0.0264711620408875,0.0285981654395129,0.030804417703783,0.0326388673910575,0.0347640017366495,0.0368678866208924,0.0389369143118066,0.0412893163504029,0.0433405237544419,0.0588499456930403,0.0718973403531542,0.0856414452977464,0.0988304831619023,0.1107618635754743,0.1261333700102624,0.1398519052872782,0.1519422591737015,0.1646708186003781,0.1759758857792605,0.1898053913174587,0.2025450689289501,0.2152280068298731,0.226347842249702,0.2374353898603321,0.2485802530636644,0.2585339741945556,0.268413597733711,0.2779372227831157,0.2856603255270929,0.2936977172014023,0.3021045485403937,0.3094256956779159,0.3164778517053287,0.3232441105681569,0.3301176876958377,0.3358571930000501,0.3416759008062359,0.3471295060080107,0.3525685857932727,0.3533971420868158,0.3542257593699226,0.3547532855351936,0.3553221005173261,0.3558125362308069,0.3551683981489994,0.3545039764266025,0.3555201209889532,0.3565815828668275,0.3588838941920232,0.359589234328274,0.3599976186696301,0.3613827993254637,0.3619995048502172,0.3624503824184335,0.3642662187696829,0.3655846021258259,0.3689234184239733,0.3708235794849968,0.3745985870263327,0.3751321535279246,0.3772480807430075,0.3786642875350497,0.3808676823138195,0.3832008428311464,0.3797101449275362,0.383719123815442,0.3855923381220071,0.3830633702756464,0.3841653666146646,0.0,2.6160646570595123,61.69161916490616,209.24273448153065,322.72927112015464,fqhc6_80Compliance_baseline_low_initial_treat_cost,35 -100000,95711,41477,389.7253189288588,7313,75.16377427881852,5681,58.77067421717462,2286,23.52916592659151,77.33810060160408,79.71976755932093,63.31256206328344,65.0745631599136,77.05826154306844,79.43840940750025,63.21083184722318,64.97437330948202,0.2798390585356429,281.35815182068313,0.101730216060254,100.18985043157612,89.6445,62.73391452112388,93661.64808642684,65545.14582558314,233.58758,142.08278139171313,243451.54684414537,147846.23647408668,271.08264,128.68755750422167,279335.3846475327,131527.28511107736,3742.07235,1670.882230445154,3875958.019454399,1711986.3330663703,1393.45409,607.3755430778325,1442330.8815078726,621050.331610251,2252.49648,925.0903892084326,2321481.5642925054,940578.7272416792,0.38088,100000,0,407475,4257.34764029213,0,0.0,0,0.0,19504,203.1532425739988,0,0.0,25301,260.4298356510746,2040569,0,73236,0,0,3630,0,0,38,0.3970285547115796,0,0.0,2,0.020896239721662,0,0.0,0.07313,0.1920027305187985,0.3125940106659374,0.02286,0.3203175842769751,0.6796824157230249,25.266581506801764,4.577400779785035,0.3231825382855131,0.211406442527724,0.2312973068121809,0.2341137123745819,11.286872814151032,5.682194335081932,24.09933767316,13091.025763227815,63.85461855800584,14.064030042251185,20.736361440605016,14.588656395760813,14.465570679388827,0.5576483013553952,0.771856786011657,0.710239651416122,0.5996955859969558,0.1120300751879699,0.7120765832106039,0.8907563025210085,0.8537117903930131,0.7455830388692579,0.1807692307692307,0.5091371732593106,0.7215639810426541,0.6625544267053701,0.5596508244422891,0.0953271028037383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022298351949078,0.0045952525867315,0.0066196925701057,0.0087708600117893,0.0110194238967857,0.013404088450687,0.0153907349611406,0.0174757678204827,0.0196962724344224,0.0218194849741463,0.0242209210512823,0.0262971443827204,0.0284603837216475,0.0304203653739212,0.032619123760793,0.0346081906395643,0.0366727408266379,0.0388637589741461,0.0408042332442744,0.0427196399924998,0.0575519283185563,0.0714338054412796,0.0854099994753685,0.0982204833722471,0.1106576394161815,0.126253543773537,0.1396222410865874,0.1524422059183695,0.1643102176910006,0.1764705882352941,0.1903787103377686,0.2034621255588875,0.2167448543097536,0.2278517027050687,0.2385428131190843,0.2497838568800017,0.2610176684759543,0.2711421785477099,0.2805206310266108,0.2892157424709672,0.2975132906334333,0.305533110837871,0.312339316391209,0.3190578415264502,0.3254459454529979,0.3305714709078336,0.3362849617458924,0.3423291287767673,0.3473787994758896,0.3525493616683847,0.3541644204851752,0.3553920555532592,0.3564285210522603,0.3570467662843008,0.3585264974558871,0.358788232224797,0.3582572298325723,0.3595021620110813,0.3602472772107679,0.3625154351366345,0.3636397812071201,0.364056304520222,0.3650399663441313,0.3653448430896502,0.3652360722216858,0.3653480063629488,0.3665060309675211,0.3702524663535789,0.3722222222222222,0.3749205340114431,0.3752497729336966,0.3773694800381235,0.3796110414052697,0.3784869617950273,0.3805152224824356,0.3839782274287067,0.3806549885757807,0.3757575757575757,0.3794899917740609,0.3846153846153846,0.0,2.2449112932908197,60.01659375540672,218.55479373754247,326.40610317126243,fqhc6_80Compliance_baseline_low_initial_treat_cost,36 -100000,95658,41382,389.1362980618453,7116,73.22963055886596,5511,57.10970331807063,2242,23.01950699366493,77.27782633283482,79.6876363998812,63.2892740309558,65.0718024984622,77.00121636474637,79.41155842272372,63.18741752942416,64.97306670667494,0.2766099680884508,276.0779771574846,0.1018565015316355,98.73579178726288,90.13928,63.09452944723455,94229.86054485771,65957.66663662609,231.96248,141.71832447889363,241945.62922076567,147611.80248448544,264.98922,125.5757101414664,274617.5646574254,129427.13864029228,3666.57647,1642.311393822017,3797808.19168287,1682084.0118682692,1376.89302,594.2098618620103,1423818.227435238,605914.4910317868,2214.12434,921.1110773494552,2274404.670806415,929175.7223412537,0.37921,100000,0,409724,4283.175479311714,0,0.0,0,0.0,19409,202.32494929854272,0,0.0,24707,255.82805410943152,2037172,0,73107,0,0,3601,0,0,39,0.4077024399422944,0,0.0,0,0.0,0,0.0,0.07116,0.1876532791856754,0.3150646430578977,0.02242,0.3081962829255248,0.6918037170744752,25.227996829601725,4.54653785651352,0.3302485937216476,0.202322627472328,0.22591181273816,0.2415169660678642,11.172080249513048,5.595872744496704,23.791837679825477,12986.89910264942,62.19910453354581,13.009049059436608,20.68272214667856,13.867356931236737,14.639976396193893,0.5459989112683723,0.7506726457399103,0.7060439560439561,0.576706827309237,0.1269722013523666,0.7057926829268293,0.9055374592833876,0.8672566371681416,0.75,0.1768953068592057,0.4960704929745177,0.6918316831683168,0.6527777777777778,0.5273477812177503,0.1138519924098671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394260584074,0.0043201362972578,0.0066290378251071,0.008841732979664,0.0110687217050714,0.0132027994824828,0.0158694543600203,0.0178638912437312,0.0201407499846566,0.022146874135688,0.0247076923076923,0.0267272017585307,0.028667270332565,0.0306109828496042,0.0325221718616104,0.0345155718290046,0.0365488440534295,0.0385865445520908,0.0406585287169721,0.0425429861422479,0.057174208381231,0.0711151143183317,0.0843419022326723,0.0974595891564236,0.1096313962200436,0.1245382083011358,0.137761116362053,0.1505923968632799,0.1624971924232863,0.1738836337867872,0.1880179762687387,0.2005219331016037,0.2130712124180872,0.2246711462277572,0.2361754830186602,0.2470937641987211,0.2576826871538324,0.2674320445720074,0.2764699205448354,0.2849962215759463,0.2932936985287314,0.3014640535104542,0.3086644735285068,0.3160721779269828,0.3232330598602249,0.3294795548207191,0.3347950285657011,0.3409970958373668,0.3466623418747973,0.3518327651364993,0.3526172286261911,0.3536396774549873,0.3541354446486639,0.3548176611324585,0.3564374160823512,0.3564837598425197,0.3560815755146193,0.3571699826632543,0.3581686995361621,0.3590807074243648,0.3599035636254049,0.3622482454221922,0.3631674246252316,0.3644675067951569,0.3636011991103375,0.3642718751636383,0.3650998622589532,0.367294438974815,0.3708941930887068,0.3727946507693547,0.375854108956602,0.3798066595059076,0.3787347900872778,0.3803253292021689,0.3801849909411652,0.3824311261478975,0.3860059217702976,0.3812681309573145,0.3831644144144144,0.3822273961971284,0.0,1.820455709399587,58.3559208352912,213.4309621027027,319.39934678270527,fqhc6_80Compliance_baseline_low_initial_treat_cost,37 -100000,95807,41819,392.1529742085651,7180,73.59587504044589,5552,57.25051405429666,2277,23.296836348074773,77.39792083527668,79.70161817456744,63.37134666233783,65.07162560052095,77.11564090097092,79.42341066353515,63.266701391195866,64.97214186513663,0.2822799343057625,278.20751103229213,0.1046452711419618,99.483735384311,90.09682,63.13069403493241,94039.91357625226,65893.61323800184,236.50068,145.09279845788666,246144.16483137972,150735.81101369072,273.26395,129.8085531314676,281330.9987787949,132438.19214303402,3662.7123,1649.5825072841014,3779062.083146325,1677827.5254251813,1380.45324,605.4317458049625,1421527.7276190675,612587.363976497,2252.54012,940.5840278562962,2307140.709969,942537.7038778848,0.38138,100000,0,409531,4274.541526193284,0,0.0,0,0.0,19855,206.49848132182407,0,0.0,25492,262.1311595186156,2036966,0,72996,0,0,3508,0,0,31,0.3235671715010385,0,0.0,0,0.0,0,0.0,0.0718,0.1882636740259059,0.3171309192200557,0.02277,0.3130457793066949,0.6869542206933051,25.189292946913724,4.616894200937455,0.3207853025936599,0.2109149855907781,0.2262247838616714,0.2420749279538905,11.106156550011873,5.436313773144669,24.127885026086485,13040.60775114396,62.767997094732834,13.7253409345156,20.0986876555814,14.15983586880802,14.78413263582782,0.5527737752161384,0.7608881298035867,0.7029758562605278,0.6019108280254777,0.1264880952380952,0.7049666419570052,0.9159663865546218,0.8341121495327103,0.740983606557377,0.1583011583011583,0.5039257673090649,0.6928746928746928,0.6614929785661493,0.5573080967402734,0.1188940092165898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020754029318862,0.0046307085896097,0.0069476139763679,0.0090675548064132,0.0116297983083929,0.0138100181148358,0.0160787430457907,0.0179853913327348,0.0201587771908493,0.0222424571060251,0.0244249782285743,0.0266840388206085,0.0287874740583968,0.0309438544496583,0.0332295767970151,0.0352076321060565,0.0372960614117671,0.0393668957368077,0.0414974816968689,0.0435162730669553,0.0580030670686543,0.0712627086732772,0.085284649182597,0.0979233478786604,0.1100920332711344,0.1251784260443871,0.1390179234277229,0.1522509767184389,0.1645439781177878,0.1763872947082738,0.1899499111326547,0.2021702440713172,0.215131514565007,0.2262044075025974,0.2369214185146075,0.2481726765305218,0.2585751095940836,0.2686970017319328,0.2771943751417555,0.2863110429518065,0.2946345975948196,0.3024122858278207,0.3104888321029718,0.3172559960724677,0.3239089828493802,0.3301913492893619,0.3360110941755578,0.3414119858750603,0.3473451327433628,0.353118619508661,0.3548699074509382,0.3552210517641565,0.3554999085576016,0.3560659616522153,0.3572191719839739,0.3568328391967478,0.3564101348254224,0.3574462502254948,0.3577177423489004,0.3580768061244567,0.35970723468143,0.361556290734761,0.3621276416957271,0.3629088456783185,0.3642943597191963,0.3640322115258505,0.3657862938028655,0.3690521628498728,0.3685478442625854,0.3675569615184399,0.3708502397639247,0.3726356630920946,0.3743209560938199,0.3789189189189189,0.3794915902140672,0.382881802924958,0.3833539603960396,0.3825270463359869,0.3883682469680264,0.3795088257866462,0.0,2.728387371942316,58.916802826711766,216.0163814003693,317.04000396834,fqhc6_80Compliance_baseline_low_initial_treat_cost,38 -100000,95560,41509,389.6504813729594,7136,73.52448723315194,5578,57.858936793637504,2257,23.283800753453328,77.19945181010942,79.66953936933467,63.224607941291474,65.05333018411186,76.92521664160465,79.3934638726533,63.12415970878454,64.95436111749889,0.2742351685047737,276.0754966813721,0.1004482325069346,98.96906661296612,89.42428,62.67872643389358,93579.1963164504,65590.96529289825,234.20412,143.02420742131454,244598.3465885308,149181.94581552382,273.60181,130.8081311395308,282724.33026370866,134134.22467551526,3687.45336,1658.7125509860728,3826653.725408121,1703651.6230494704,1355.33989,598.0221766221238,1402607.2310590204,610102.2986836785,2231.16152,927.2116245468212,2303329.2381749684,943816.1369070376,0.37946,100000,0,406474,4253.599832565928,0,0.0,0,0.0,19575,204.32189200502305,0,0.0,25483,263.143574717455,2031395,0,72939,0,0,3447,0,0,45,0.4709083298451235,0,0.0,0,0.0,0,0.0,0.07136,0.1880567121699256,0.3162836322869955,0.02257,0.312733084709643,0.687266915290357,25.196730383053414,4.513608697600538,0.3291502330584439,0.2006095374686267,0.2296522050914306,0.2405880243814987,11.082883735884344,5.612112384373575,24.08349679094554,13011.455085348269,63.04097420569939,13.236480513499464,20.5920861024025,14.365844603227597,14.846562986569827,0.5482251703119397,0.775692582663092,0.6851851851851852,0.5964090554254489,0.1251862891207153,0.7141812865497076,0.9257142857142856,0.8755760368663594,0.7622377622377622,0.1845637583892617,0.4942992874109264,0.7074122236671001,0.6262482168330956,0.5487437185929648,0.1082375478927203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020070754477906,0.0044641951259105,0.0066008611585019,0.0090999674638034,0.0113816834303864,0.0138432995575852,0.0159105985610042,0.0179235642754956,0.0204461727384363,0.0225048422303979,0.0246260919552028,0.027125127245432,0.0292887891083602,0.0313589569020651,0.0336371527777777,0.0358255612947302,0.0378329046710362,0.0400124714196632,0.0421748867246497,0.0440542430917309,0.0588266058596487,0.0722254844392249,0.0853103484521995,0.0980960308512543,0.1104675741946393,0.1257725619904801,0.1397419396015275,0.1526624693202433,0.1641225053829096,0.1756317883643402,0.1900709526226551,0.2029496668330692,0.2148428551168905,0.225058411855687,0.2352791850159487,0.2463618387433624,0.2573944962342066,0.2675371281542003,0.2769805050700474,0.2857372623355735,0.2943360326704875,0.3022617427619539,0.3097433341639671,0.3169550588800769,0.3236132774419964,0.33063768223467,0.3368098313689025,0.3414450416863501,0.3477125032492851,0.3521783476613725,0.3527446817142934,0.3536489342597836,0.3537826529458329,0.3533916372971327,0.3544751612132792,0.354397845325125,0.3543244447272958,0.3550491288910907,0.356422870510527,0.3569719538741072,0.3574207683299966,0.3589682302559506,0.3599492224690574,0.360138992305783,0.361565732601622,0.3617279072830238,0.3619398686787236,0.3619748699073487,0.3640039727582292,0.3669860279441118,0.3669858641130871,0.3676126700680272,0.3704845814977973,0.371162364441729,0.372235294117647,0.3763569127997137,0.3761650114591291,0.3795326349717969,0.3852278967600219,0.3946360153256705,0.0,1.9895518713558027,60.65182874583687,217.29323648423036,314.93659209151406,fqhc6_80Compliance_baseline_low_initial_treat_cost,39 -100000,95686,41417,388.8970173275087,7117,73.32316117300336,5554,57.51102564638504,2266,23.36809982651589,77.33990302576841,79.73254864233854,63.32261558699434,65.08979602212236,77.06864691187764,79.456341901215,63.223894335459605,64.99106078077283,0.2712561138907716,276.20674112354493,0.0987212515347337,98.73524134953016,89.9503,62.988394316823786,94005.70616391112,65828.22389568358,236.22013,144.37848552687828,246328.7732792676,150347.27602758905,270.78175,128.7126732265864,279052.7140856552,131478.93997933692,3700.19323,1659.1952774854087,3835504.190790711,1702545.2281007697,1356.96792,587.5532211531327,1404951.079572769,600892.7085313958,2238.71878,922.7744657255432,2311143.82459294,941304.100113038,0.37848,100000,0,408865,4272.986643814142,0,0.0,0,0.0,19717,205.4950567481136,0,0.0,25301,260.4769767782121,2037103,0,73122,0,0,3484,0,0,52,0.5434441820119975,0,0.0,0,0.0,0,0.0,0.07117,0.1880416402451913,0.3183925811437403,0.02266,0.3117749033204427,0.6882250966795572,25.22514444401915,4.577022565331105,0.325711199135758,0.200576161325171,0.234785740007202,0.2389268995318689,11.337644422528069,5.634325769400902,23.98781800254926,12905.31970039122,62.59434352407257,13.07247777551138,20.381358997712468,14.607083797121026,14.533422953727696,0.5489737126395391,0.7630161579892281,0.710889994472084,0.5812883435582822,0.1168048229088168,0.7127272727272728,0.925414364640884,0.8671328671328671,0.7572815533980582,0.1418181818181818,0.4950945202201484,0.6848404255319149,0.6623188405797101,0.5266331658291458,0.1102661596958174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019446976602856,0.0039734428057371,0.0063215999837647,0.0089993093080892,0.0114293849079243,0.0134062175532889,0.0156358299017409,0.0178104842002122,0.0200359829898593,0.0219554136215685,0.0241016966528269,0.0261245355067851,0.0285253015517188,0.0305402482360817,0.0327271601370598,0.0348018486543491,0.0370167005097177,0.0393078823358452,0.041308214831844,0.0431242963766,0.0570661541193552,0.0712820083331588,0.0846499234174692,0.0975953548061346,0.1090822784810126,0.1245557248032495,0.1374090340101415,0.1500548111410296,0.1619803291293343,0.1737046923744894,0.1875585514768432,0.2005301595888558,0.2121231893514289,0.2236775928801032,0.2348933453672926,0.2449904183789891,0.2552944589498114,0.2656682494317798,0.2752521528006262,0.2843185540678296,0.2927560038869094,0.3008793676037233,0.3075694288317497,0.3144400915309875,0.3214415814653811,0.3271398824558593,0.3334834947568636,0.3382405333876221,0.3436491582753392,0.3483211370300901,0.3491175320560357,0.3498884082329926,0.3510870945440693,0.35234248320593,0.3530882944040016,0.3526490827445631,0.3526625156455472,0.3540026624155669,0.3542318142205362,0.3549067257522693,0.3564018384766907,0.3575206513341653,0.358145684245871,0.3582719597628884,0.3593274387592404,0.3613291470434328,0.3621711373851307,0.3635817497707654,0.3664499717354437,0.3683623471298251,0.3694698354661792,0.3707103591823664,0.371470178548816,0.3705918429929469,0.3747637051039698,0.3758076094759512,0.3798570096363071,0.3781043046357616,0.3778971170152628,0.3857868020304568,0.0,2.0005575385427394,60.90523175979733,208.6076613954836,319.61007692921345,fqhc6_80Compliance_baseline_low_initial_treat_cost,40 -100000,95789,41113,385.9106995584044,7069,72.62838112935724,5452,56.3843447577488,2188,22.49736399795384,77.331780499572,79.6722979864445,63.32970022966426,65.06256701171452,77.06992268120992,79.40899325909437,63.23411478651139,64.96855547624924,0.2618578183620883,263.3047273501319,0.0955854431528706,94.01153546528462,90.19736,63.11127400118846,94162.54475983672,65885.72174382076,231.13601,140.9646391803964,240782.04177932747,146648.19387257026,264.50894,125.93822282109096,272075.1234484127,128416.98744898528,3568.96764,1591.9361974849337,3695397.3211955447,1631561.9758919163,1336.04254,575.2107679775123,1383545.4697303448,589315.5194820052,2146.83002,884.5328863460045,2210517.637724582,898710.2260395736,0.37697,100000,0,409988,4280.11567090167,0,0.0,0,0.0,19400,201.97517460251177,0,0.0,24656,253.49466013842925,2039798,0,73209,0,0,3600,0,0,45,0.4593429308166908,0,0.0,0,0.0,0,0.0,0.07069,0.1875215534392657,0.3095204413637006,0.02188,0.3158672578261454,0.6841327421738547,25.54700305420566,4.5564244817006125,0.336573734409391,0.2059794570799706,0.231107850330154,0.2263389581804842,10.929783259012854,5.488764273573442,23.12764200171405,12880.612948309725,61.139859949009285,13.296585503235397,20.397871909455265,13.90342873159844,13.541973804720184,0.5612619222303742,0.792520035618878,0.7002724795640327,0.5841269841269842,0.1207455429497568,0.7217125382262997,0.9251336898395722,0.8609756097560975,0.7266187050359713,0.1747967479674796,0.5106177606177607,0.7263017356475301,0.6540350877192982,0.5437881873727087,0.1072874493927125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297037224613,0.0042780098130651,0.0063928886724101,0.0084013978625706,0.0105059750826341,0.0129431053269381,0.0150996105299647,0.01720160071869,0.0191879127394655,0.0213748272508573,0.0233833599868782,0.0257100026695689,0.0278754601353157,0.0299234659717143,0.0321794951183767,0.0345073552975716,0.036299050321565,0.0385409212068411,0.0404335356222462,0.0424718867138692,0.0572147090742132,0.071075175465205,0.084420077155317,0.0965941929992328,0.1089545004320246,0.1236830147206458,0.1370713869309449,0.1499346029923118,0.1620315034576965,0.1732036297018459,0.1867781760254878,0.1997166219607164,0.2114872285593119,0.2230558076969345,0.2342434547195351,0.2451195461898114,0.2556681246094796,0.2651527932426809,0.274093311256776,0.2830892875542377,0.2915351440100824,0.2990437893063381,0.3068776181572906,0.3127914364144181,0.3194420819867324,0.325879421777098,0.3316086193936357,0.3374260505915952,0.3440738867053223,0.3489573697703306,0.3503483404977833,0.3517139829633809,0.3527065687669997,0.352997352085775,0.3531450845036896,0.352787710440294,0.3522604609816496,0.3528753415188123,0.3536612546505049,0.3556287007388061,0.3574595183529323,0.3593790221975802,0.3599638100448166,0.3609208309938237,0.3609100810843519,0.3623005877413938,0.362927500501677,0.3668278193825639,0.3691722169362512,0.3709117048041212,0.3730555683017482,0.3760317290170436,0.3791914159800728,0.3792997069258059,0.3776529932426001,0.3793764988009592,0.382101167315175,0.374948917041275,0.3744419642857143,0.3696343402225755,0.0,2.0224002583437857,57.731887369636816,205.38871013954767,317.4077689568978,fqhc6_80Compliance_baseline_low_initial_treat_cost,41 -100000,95691,41808,392.29394613913536,7348,75.7019991430751,5716,59.19051948459103,2288,23.565434575874427,77.34192318165195,79.71714050074102,63.32298576779221,65.07487213791451,77.06495958952699,79.43909004212763,63.22165733022504,64.97555731216875,0.2769635921249573,278.05045861339295,0.1013284375671688,99.31482574576478,89.7688,62.86517612516878,93811.12121307124,65696.01752011033,237.10475,144.72465128286927,247255.9383850101,150716.9550553112,271.50554,128.8860901058382,280428.514698352,132110.711819571,3743.70322,1675.1046251633145,3879346.709721917,1717658.6492970376,1391.39535,603.9839217290487,1439495.7415012906,616680.6026514607,2252.70364,929.4608245469508,2322480.2332507763,944258.9927733586,0.38209,100000,0,408040,4264.14187332142,0,0.0,0,0.0,19783,206.1740393558433,0,0.0,25355,261.6128998547408,2036512,0,73040,0,0,3700,0,0,50,0.5225151790659519,0,0.0,0,0.0,0,0.0,0.07348,0.1923107121358842,0.311377245508982,0.02288,0.3202495451000779,0.679750454899922,25.420321801511253,4.560983648716238,0.3252274317704688,0.2136109167249825,0.2286564030790762,0.2325052484254723,11.23914046104263,5.64732034853957,24.18175605338088,13122.848163018947,64.17283558953207,14.14474333639644,20.89747119445682,14.630470049831668,14.500151008847142,0.5526592022393282,0.764946764946765,0.6993006993006993,0.5914307574598316,0.1143717080511663,0.705710102489019,0.9211267605633804,0.8461538461538461,0.7152542372881356,0.1570881226053639,0.5045977011494253,0.7009237875288684,0.6517094017094017,0.5553359683794467,0.1039325842696629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002450310338892,0.0046827013713625,0.0068170059953133,0.0088670851362057,0.0111559700202373,0.0134185823949827,0.0156903125828354,0.0179102039149214,0.0199498951889155,0.0225569298820445,0.0247621195964235,0.0268122118277692,0.0287994733810581,0.0308182127291273,0.0328767406092261,0.0351377901866501,0.0372384503832608,0.0394004816075728,0.0416588673280505,0.0436187062354118,0.0585894248647293,0.072772583060218,0.0863080556284439,0.0988403906052698,0.1107945552389996,0.1260199168192353,0.1394822899855601,0.1524318796736189,0.1648173091313364,0.175966079862602,0.1900418337861733,0.2027770557144095,0.2151993816610239,0.2272030819069299,0.2376570050968175,0.2492493157970549,0.2597054587273762,0.2706524798738952,0.2806245177688013,0.2886829413584136,0.2971515214648657,0.3051787699689859,0.312349012363223,0.3190029508432694,0.3251553134840066,0.3312577833125778,0.3373220729751403,0.3429266366982057,0.3483891058661719,0.3541903578134504,0.3555783617360304,0.3569130500821585,0.3580716284591684,0.3585222502099076,0.3585385438972163,0.3580381220887472,0.3585584158415841,0.3598722970081954,0.3616142575614772,0.3625543643620353,0.3639695517338596,0.3647161641441226,0.3656108597285067,0.3663833805476865,0.3683676917877661,0.3701088093743461,0.3719076729703479,0.3749133312322723,0.3773286467486819,0.3770791882212495,0.3801494713816988,0.3838001917137075,0.3877576910878528,0.3896717190951329,0.3953051643192488,0.3923095069591885,0.391871398240825,0.3919951729686243,0.3966557017543859,0.3986537023186238,0.0,2.06624906504033,60.45857110124104,214.62351394276655,335.381126461193,fqhc6_80Compliance_baseline_low_initial_treat_cost,42 -100000,95735,41974,393.2417611114013,7112,73.07672220191152,5550,57.37713479918525,2257,23.22034783517,77.32392886815877,79.68859880075334,63.31606620966248,65.0654234994431,77.0462340203004,79.40973856634399,63.21456754877751,64.96604753855091,0.2776948478583705,278.8602344093505,0.101498660884971,99.37596089218914,89.52064,62.74253359480196,93508.78988875542,65537.71723486912,236.00898,144.80940874633134,245913.91862955032,150651.400998936,272.57155,130.1152766584689,281037.6769206664,133083.382508285,3635.35751,1638.4543145989517,3763072.1679636496,1677206.8152702258,1320.29888,575.4337276012674,1366912.5293779704,588863.9375776241,2212.99588,917.5552734376604,2279414.884838356,931731.0551345908,0.38316,100000,0,406912,4250.399540397973,0,0.0,0,0.0,19691,205.0556222906983,0,0.0,25423,261.82691805504777,2035498,0,73158,0,0,3635,0,0,48,0.5013840288295817,0,0.0,0,0.0,0,0.0,0.07112,0.1856143647562376,0.3173509561304837,0.02257,0.312926992632284,0.687073007367716,25.21921104836985,4.608382802321723,0.3374774774774774,0.2066666666666666,0.2282882882882883,0.2275675675675675,11.50102956857829,5.947606350389408,24.095566512011544,13146.650324980095,62.9351319639297,13.431351410043678,21.209060423036043,14.29821948759647,13.996500643253505,0.5466666666666666,0.7497820401046208,0.6833956219967966,0.5927387529597474,0.1132224861441013,0.6979241231209735,0.9047619047619048,0.8680851063829788,0.7201365187713311,0.1191335740072202,0.4957861786660245,0.6797468354430379,0.6215253029223093,0.5544147843942505,0.1115618661257606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022283671133529,0.0046031086191688,0.0068199809202914,0.0090735434574976,0.0114334540423973,0.0138391038696537,0.0162816304059702,0.0186185143977053,0.0205400321033851,0.0225762524444808,0.0248010990813648,0.0269207470455968,0.0293210511165028,0.0313439907708788,0.0335675737031648,0.0357028415492593,0.0379615723237868,0.0401162488971923,0.0422195416164053,0.0442890928601939,0.0589567977281743,0.0732437097871004,0.0862398020175751,0.0988317683305117,0.1108357761984098,0.1258634002898274,0.1396089083173296,0.1526954077449717,0.1650466770630834,0.1764075296942669,0.1904413347685683,0.2032397244720309,0.2158192827403276,0.2274153519848688,0.2376145073845578,0.2491224573409073,0.2597527227280842,0.2696644385929377,0.2797116257947321,0.2884319886246359,0.2968105326595893,0.3052664885388834,0.3128098095486564,0.3202516297105538,0.3272864517385799,0.3332715912178015,0.3388276320576023,0.3453035502430188,0.3507842526228316,0.3559317547087398,0.3572528571042607,0.3584223455052303,0.3589863184079602,0.3591227535790435,0.3598783560173521,0.3592085469560679,0.3589625634517766,0.3608077884488883,0.3615928506616904,0.3634087006296508,0.3654098914717038,0.3669251670997044,0.3673881067451145,0.3680666232687602,0.3682494444981161,0.3680530092713844,0.3681651795927705,0.3687460417986067,0.3710134656272147,0.3719004959206527,0.3729077819048929,0.3734430961672101,0.3768860149613288,0.3764083697401701,0.3796913697847209,0.3799735545137637,0.3818933823529412,0.3902780556111222,0.3930682428801719,0.3983083429450211,0.0,2.30634671270748,61.69889967242074,215.6848401909414,309.5004170332854,fqhc6_80Compliance_baseline_low_initial_treat_cost,43 -100000,95788,41543,390.40380841023926,7259,74.43521109115964,5650,58.33716123105191,2243,22.9360671482858,77.4066300966336,79.7470031295633,63.35719594835807,65.08832752472638,77.13697522922864,79.48040867839056,63.25777264062331,64.99399286712874,0.2696548674049666,266.59445117273606,0.0994233077347601,94.33465759764204,90.58302,63.46513447281144,94566.14607257694,66255.83003383664,236.14522,144.14350435995993,245904.11116214973,149856.88641579312,273.79963,130.08885120385278,282633.6179897273,133285.62518021758,3718.01525,1661.526657802052,3840305.226124358,1693388.5014845834,1350.18751,581.0808180320796,1395760.4084018874,592834.4761682872,2209.96864,913.701267772463,2262066.8977324925,913827.6295733356,0.37964,100000,0,411741,4298.461185117134,0,0.0,0,0.0,19746,205.4745897189627,0,0.0,25467,262.6320624712908,2035613,0,73067,0,0,3644,0,0,51,0.5324257735833299,0,0.0,0,0.0,0,0.0,0.07259,0.1912074596986619,0.3089957294393167,0.02243,0.3153483499214248,0.6846516500785752,25.37504668658501,4.508845669589234,0.3304424778761062,0.2044247787610619,0.2361061946902654,0.2290265486725663,10.888728154543369,5.439955829407261,23.64732258931789,12980.489105612114,63.41478923829607,13.468547667033578,21.01124445029996,14.79597346356698,14.139023657395544,0.5500884955752212,0.7731601731601732,0.6946973754686663,0.5877061469265368,0.1035548686244204,0.7148231753197893,0.9197707736389684,0.8715596330275229,0.7391304347826086,0.1142857142857142,0.4994214302244851,0.7096774193548387,0.6408106219426974,0.5439613526570048,0.1010486177311725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189798771961,0.0044918983593924,0.0068499406338478,0.0088292370685713,0.011259039269332,0.0133296674202154,0.0154972370057706,0.017577706323687,0.0198291017621325,0.0218694993655082,0.023889805581462,0.026063311271869,0.0279867620457161,0.0300497225625135,0.0320489031832426,0.0342217495017503,0.0362519010521741,0.0381724498999554,0.0399717382043369,0.0422632000916275,0.0567665995345973,0.0712866316648189,0.0844558119057851,0.0978496205831038,0.110133504736415,0.1251849346916346,0.1390608437566249,0.1515805590702718,0.1633214891641858,0.1744215938303342,0.1885328800137717,0.2017473670552107,0.2145069274653626,0.2263668825141684,0.2370375252658405,0.2476238949313446,0.2581522951331578,0.2679039129506188,0.27714833339004,0.2860740655944136,0.2943713932160658,0.3022570804062978,0.309641847202338,0.3167277693911293,0.3233389622538359,0.3289692666148896,0.3347860389976331,0.3405211369798495,0.3461020111963508,0.3504841415569147,0.351209182503608,0.352168163535181,0.353176002595534,0.352792208731893,0.3537622261200464,0.3532943302600545,0.3537371948906033,0.3551245720650625,0.3557654667687856,0.3563441127842273,0.3571348419674583,0.3595064940184079,0.3617785950102386,0.3635531748688762,0.3646765333781093,0.3653291030608795,0.3669007477326358,0.367686712234276,0.3682439537329127,0.3705889342152164,0.3747045991637884,0.3774014289494575,0.3810719216769173,0.3846969696969697,0.3820873289265432,0.3832903679400047,0.3843558282208589,0.3860670548082714,0.3883977900552486,0.3915732508697332,0.0,2.5227062553220607,58.32089458063586,219.45002009708315,325.0931255187099,fqhc6_80Compliance_baseline_low_initial_treat_cost,44 -100000,95687,41670,391.7878081662086,7137,73.32239489167807,5571,57.63583349880339,2266,23.231995986915678,77.29491858535671,79.69645763526381,63.29396199958445,65.07369611918834,77.0201879890264,79.42209639831682,63.19313056024787,64.97542604283618,0.2747305963303148,274.3612369469872,0.1008314393365807,98.27007635216488,88.89342,62.22672865423413,92900.20587958656,65031.53892820772,234.40503,143.2561260312476,244339.57590895315,149093.53489998763,269.67098,128.74618230357015,278221.64975388505,131715.8720454221,3682.31346,1643.1911226147968,3813330.4001588514,1683016.428538588,1364.44505,587.5374727607172,1410232.7170880055,599044.6711597047,2235.10214,922.3925156851176,2295754.67931903,932156.869112442,0.38121,100000,0,404061,4222.736630890298,0,0.0,0,0.0,19547,203.653578856062,0,0.0,25143,259.0843061230888,2041906,0,73307,0,0,3494,0,0,65,0.6792981282723881,0,0.0,1,0.0104507404349598,0,0.0,0.07137,0.1872196427166129,0.3175003502872355,0.02266,0.314220796578455,0.6857792034215451,25.20164473774295,4.581998946993211,0.3213067671872195,0.2075031412672769,0.2356847962663794,0.235505295279124,11.087830703176689,5.549005402294008,23.98117098791966,13061.379358579235,62.65434575618124,13.537311703823608,20.19059168415564,14.579411234533856,14.347031133668136,0.5444264943457189,0.7664359861591695,0.6949720670391062,0.5696877380045697,0.118140243902439,0.7237325495958854,0.9195710455764076,0.8539823008849557,0.7700348432055749,0.1405622489959839,0.4864608076009501,0.6934865900383141,0.6412556053811659,0.51364522417154,0.1128880526810912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0045562016093843,0.0069161631036408,0.0094352091911951,0.0115944094383989,0.0138819524425917,0.0163271970284501,0.0185836006620216,0.0204505463027376,0.0223931816552105,0.0243316989106128,0.0262576661906865,0.0283082938876312,0.0306809164081582,0.0327934846561174,0.0350365567379186,0.0368697021823381,0.0389327242524916,0.0407481768909879,0.0428279585582956,0.0580972674855853,0.0726564626562532,0.0854330419451994,0.0982312896539388,0.110430030384875,0.1261334659457629,0.1393482645154442,0.1525144007069922,0.1643212053213656,0.1755150214592274,0.189186568852406,0.2024623507010559,0.2148557263693492,0.2251248811306524,0.2362632528265364,0.2477214587093987,0.2575209783967149,0.2674853116628773,0.2774004497648956,0.2864646047637068,0.2946416160867349,0.302598147692812,0.3101402245487706,0.3175774593803249,0.3245583103318296,0.3305920849540038,0.336692487027149,0.3422658090810673,0.3483576831416433,0.3542741754543415,0.3547544339254211,0.3548724440652778,0.3554399469892427,0.3566139249660119,0.3574478848929427,0.3570682878899533,0.3572359222066861,0.3587327215513122,0.3596742391770253,0.3602856732701694,0.3616254950028286,0.3637847305150863,0.3643728112737859,0.364741641337386,0.3651745399815507,0.365666342284527,0.3696177757310614,0.3717044660440887,0.3744032252360575,0.3787799895862538,0.3813453824519341,0.3822914992768761,0.3848642476528799,0.387593927311762,0.3892147587511826,0.3906138046333891,0.3913574591540693,0.3993506493506493,0.4024523160762943,0.4088855421686747,0.0,2.286662495689317,59.93173607666666,208.6283797483088,323.41428017534446,fqhc6_80Compliance_baseline_low_initial_treat_cost,45 -100000,95720,41553,390.03343083994986,7230,74.36272461345591,5619,58.12787296280819,2262,23.265775177601338,77.3593554540744,79.73153056305583,63.33143217950936,65.08427189193601,77.08078191740199,79.45141550882178,63.22924129468836,64.98400988098733,0.2785735366724111,280.11505423404515,0.102190884821006,100.2620109486827,89.59742,62.76094085161834,93603.65649811953,65567.21777227156,234.28918,143.66720178525952,244200.41788549937,149526.3913343706,273.14748,130.77822097066164,281735.8754701212,133848.5954854582,3720.58126,1679.3390204617388,3851858.451734225,1719344.6202065828,1338.87004,586.440575278551,1384009.569577936,597936.1630574078,2229.14852,932.5360019403632,2295327.831174258,946282.3003802109,0.37903,100000,0,407261,4254.711659005433,0,0.0,0,0.0,19597,204.14751358127876,0,0.0,25462,262.3485165064772,2038762,0,73169,0,0,3462,0,0,38,0.3969912244045132,0,0.0,0,0.0,0,0.0,0.0723,0.1907500725536237,0.3128630705394191,0.02262,0.3214049914168757,0.6785950085831243,24.955828707877693,4.601066080684561,0.3354689446520733,0.2028830752802989,0.2279765082754938,0.2336714717921338,11.049276826035516,5.496663964632259,24.19521672464931,12971.429849857936,63.542620157965416,13.388712117678883,21.26435312582362,14.420157769770428,14.46939714469247,0.5365723438334223,0.7587719298245614,0.6827586206896552,0.5768930523028883,0.0944402132520944,0.6894366197183098,0.8943089430894309,0.8501070663811563,0.7035830618892508,0.1299638989169675,0.4848773517504167,0.6939040207522698,0.6276445698166432,0.5369609856262834,0.0849420849420849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024915934043673,0.0047340517197684,0.0069915877703024,0.0091202697487355,0.0114293849079243,0.0135298848585419,0.0158519802232529,0.01843496723353,0.0203430721105681,0.0223794264888051,0.0245603240527098,0.0267874567323,0.0288695008025021,0.0311250772717906,0.0332270480553921,0.0352705245094998,0.0371980826370986,0.039288899952289,0.0411455896876137,0.0431019217749075,0.0578063653830089,0.0718188097879555,0.0853132768983856,0.0975730299270226,0.1101772664480275,0.1262139003490955,0.1398752042787104,0.1521894196680471,0.1631314048791955,0.1747416540578823,0.1879424599967674,0.2006776578585578,0.2124828651624273,0.2237530367030706,0.2340610680296087,0.2457414718537905,0.2563022863589148,0.2660883848611673,0.2759235090506724,0.2842836190301586,0.2932578808498819,0.300625694403836,0.3081217253491975,0.3154529562489523,0.3226875455207574,0.3282331781112179,0.3347730288690252,0.3413541679921615,0.3464517967717698,0.352132939126762,0.3524541611695969,0.3532601962862531,0.3541695983788804,0.3546726276319584,0.3559196272222716,0.3560384774197495,0.355709364432224,0.3562472341053252,0.3565111991259219,0.3575517628805307,0.3582478576384331,0.3595336592704024,0.3597938144329897,0.3604813315339631,0.3615654064500543,0.3619728265137831,0.3629512893982808,0.3647375931504677,0.3656906429026098,0.3660357770324229,0.368626550298576,0.3685988524853879,0.3690841647480174,0.37170245398773,0.3704508932791379,0.3711266769559539,0.3703817261996014,0.3646464646464646,0.362962962962963,0.367315769377625,0.0,2.261528705676687,62.759812398001074,213.77427480639335,316.36018214053564,fqhc6_80Compliance_baseline_low_initial_treat_cost,46 -100000,95887,41604,390.1363062771805,7196,73.95163056514438,5642,58.245643309312,2263,23.2982573237248,77.4394230829848,79.71946066247227,63.39129033748679,65.07735577128489,77.16041354458596,79.43870140375563,63.29068004005923,64.97831835984708,0.2790095383988387,280.75925871664253,0.1006102974275577,99.03741143780564,90.87892,63.75463538115901,94777.10221406446,66489.34201837475,238.65756,145.3089109309225,248296.29668255345,150943.52824775258,276.48463,131.49471674180924,284179.7949669924,134010.8598934352,3718.32755,1661.7205764183277,3844006.3616548646,1699288.4405484954,1352.04818,581.404844802609,1399512.2905086195,595859.377935404,2229.81342,918.8061516366104,2297819.3915755004,934596.869810452,0.3788,100000,0,413086,4308.050100639294,0,0.0,0,0.0,19896,206.8893593500683,0,0.0,25710,264.0086768800776,2035000,0,73092,0,0,3543,0,0,57,0.5840207744532627,0,0.0,1,0.0104289424009511,0,0.0,0.07196,0.1899683210137275,0.3144802668148971,0.02263,0.3211419550059203,0.6788580449940798,25.233616135598933,4.537034679023734,0.3335696561503013,0.2011697979439914,0.2323644097837646,0.2328961361219425,10.997446233311098,5.487846499608717,24.147070218702428,12950.459291595946,63.409838847729056,13.183173894650924,21.280342899613668,14.555888679226117,14.390433374238354,0.5448422545196738,0.7515418502202643,0.6992561105207227,0.585812356979405,0.1042617960426179,0.6955266955266955,0.9073033707865168,0.8424507658643327,0.7403846153846154,0.0957854406130268,0.4957706766917293,0.6803594351732991,0.6533333333333333,0.5375375375375375,0.1063627730294397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024802591617736,0.0046921237180266,0.0069994623601375,0.0089857750611743,0.0109973878662831,0.0132068944465924,0.0152584670231729,0.0174826601387188,0.0198295942135589,0.0221669837762638,0.0243242689399372,0.0267283659272331,0.0290502908111885,0.0312319855060528,0.03335120311759,0.0350563793317087,0.0370266914959652,0.0387425006994166,0.0408205639300693,0.0429110882251973,0.0581220813875917,0.0718442747134483,0.0856762898040817,0.0980523912016378,0.1099321016895626,0.1254434121621621,0.1385040671072699,0.1507926388711802,0.1625165224065151,0.1744788322417704,0.1882048139667387,0.2010631171805786,0.2133446294546363,0.2247082987370537,0.2355547249461325,0.2470926694329183,0.257554485893836,0.2673060509411077,0.2765740562458235,0.2850742345101894,0.2940374865748172,0.3016252948182051,0.3091942747054026,0.3156394812783638,0.322234365513054,0.3276709493834612,0.3336293924117139,0.33849360685325,0.3435915347200662,0.3490682902401096,0.350527534047478,0.3518785829174743,0.352816990612377,0.3537607677631959,0.3537027677854743,0.353399932583581,0.3533735722319915,0.3547693318010179,0.3547350427350427,0.3544988661321714,0.3554405505240854,0.3558480110825252,0.3565118865272036,0.3567451532836922,0.3583079103509572,0.3593403439187955,0.3590874178590732,0.3620581402649588,0.3648799944020712,0.3688527838319794,0.3724081484176064,0.374481658692185,0.3783800819413804,0.3807114382091383,0.3819272519520091,0.3861124459394522,0.3841235184029944,0.3820666804721474,0.3779151447035684,0.386451116243264,0.0,2.3119820495058634,61.22279804782848,212.85930509101084,322.369892670612,fqhc6_80Compliance_baseline_low_initial_treat_cost,47 -100000,95736,41462,389.759338179995,7080,72.79393331662071,5514,57.02139216177822,2224,22.91718893624133,77.34647984393533,79.6977261826599,63.33814763576003,65.0749849633882,77.0768673944952,79.42434334117576,63.23910701822558,64.97608646858964,0.2696124494401317,273.3828414841497,0.0990406175344489,98.8984947985614,89.39986,62.608282329691605,93381.65371438122,65396.80196550054,233.94298,142.71242538747038,243768.90615860283,148486.62532800122,264.881,125.95973461923904,272019.7000083563,128168.38159096318,3628.30955,1628.7538449652016,3756887.764268405,1669012.013555283,1327.34776,577.3943986059644,1372290.36099273,588934.7148470426,2196.78048,921.126996022794,2265933.859781065,940403.224149423,0.37872,100000,0,406363,4244.620623380964,0,0.0,0,0.0,19539,203.465780897468,0,0.0,24723,253.62455084816577,2041584,0,73305,0,0,3498,0,0,39,0.4073702682376535,0,0.0,0,0.0,0,0.0,0.0708,0.1869455006337135,0.3141242937853107,0.02224,0.323881198763607,0.676118801236393,25.4832626240725,4.59419261479811,0.3387740297424737,0.2036634022488211,0.2194414218353282,0.2381211461733768,10.98343508208736,5.448281244392673,23.75440750719464,12964.191709673843,62.119766206419285,13.00533067477864,20.98957424227341,13.457539941282077,14.667321348085173,0.5404425099746101,0.7622439893143366,0.686830835117773,0.571900826446281,0.1134805788271134,0.6771771771771772,0.9316239316239316,0.868421052631579,0.6410256410256411,0.1275862068965517,0.4968914395026303,0.6852331606217616,0.6344827586206897,0.551760939167556,0.1094819159335288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0047643665926669,0.0069818654164256,0.0092948131894922,0.0115117863607704,0.0135506597165662,0.0156167176350662,0.0178915890139723,0.0198403369075241,0.02201222446326,0.0241904898574196,0.0261839755301459,0.0282421401106244,0.0303529678342997,0.032437786306797,0.0346046511627907,0.0368683156118318,0.0386762112252308,0.0406016444393626,0.0424738574344873,0.0574080260575437,0.0707176422568525,0.0840449862565307,0.0966982124079915,0.1096444987981276,0.1249881069423741,0.138705332046373,0.1519272928506055,0.1640476546320217,0.1753692152701862,0.1892345785337496,0.2023208279710599,0.2141195904970982,0.2256146869194623,0.2365464937348868,0.2484033427417123,0.258482844749724,0.2679878974658913,0.2766536920824775,0.2851414824149387,0.2934110949107825,0.3009545199326221,0.3087890486227885,0.3154232794712155,0.3218274852024259,0.3277436207045255,0.3334167866307817,0.3389672916242103,0.3448266915732669,0.3500482414982619,0.3507479799819243,0.3518475129897873,0.3528781038374717,0.3532468660432529,0.354195814604233,0.3534748768019159,0.3523676659427067,0.3536160420775805,0.3550518711267846,0.3560719908401317,0.3575748469253597,0.3591836734693877,0.3602079255845276,0.3609576427255985,0.3611151339608979,0.3623002020944332,0.3624315097966092,0.3654817527465589,0.3675096109759108,0.37029222071821,0.3710253825712453,0.373012048192771,0.3755927916534935,0.377950334435304,0.3833190516995144,0.3875959692898272,0.3913981809773393,0.3986887932800655,0.4000564652738566,0.397934868943606,0.0,2.2199015294309774,58.79073315459307,210.82252304629955,318.08897207630315,fqhc6_80Compliance_baseline_low_initial_treat_cost,48 -100000,95737,41754,392.2307989596499,7221,74.11972382673366,5554,57.40727200559868,2268,23.29297972570689,77.41222784566315,79.76865453774235,63.350809200748486,65.08986237647504,77.13135515987015,79.49003934922243,63.24729515643556,64.9905573629976,0.2808726857929997,278.61518851992173,0.1035140443129307,99.3050134774336,90.2176,63.25736699223411,94234.83083865172,66074.10613684794,236.48884,144.91341800661914,246374.1186792985,150723.57219639546,272.11006,129.69193897610813,280855.18660496984,132825.3401837043,3665.537,1651.9808941760743,3789410.708503504,1686398.2708704737,1336.77874,582.5904360255532,1382467.7606359087,594948.792312611,2243.60288,936.0828098589152,2305549.68298568,943372.359105712,0.38193,100000,0,410080,4283.401401756897,0,0.0,0,0.0,19750,205.61538381190132,0,0.0,25404,261.9885728610673,2034956,0,72888,0,0,3531,0,0,47,0.4909282722458402,0,0.0,1,0.0104452823882093,0,0.0,0.07221,0.1890660592255125,0.3140839218944744,0.02268,0.3200158751157561,0.679984124884244,25.598691457794573,4.528575391869628,0.3284119553474973,0.2097587324450846,0.2205617572920417,0.2412675549153763,11.133121805713296,5.54962302028548,24.03497371511516,13053.195481233404,62.58342614460452,13.611407260847972,20.567601472277808,13.623726732979744,14.780690678498992,0.5381706877925819,0.7545064377682403,0.6825657894736842,0.5795918367346938,0.1156716417910447,0.703125,0.9245810055865922,0.8722943722943723,0.7414965986394558,0.1292517006802721,0.4821514712976363,0.6790582403965304,0.618208516886931,0.5284640171858217,0.1118546845124283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0043176405006841,0.0066956133587631,0.0091701194248111,0.011346190994215,0.0136611187458645,0.0159916016062947,0.0180096527657316,0.020142870282368,0.0222415557830092,0.0247499385094695,0.0268644459272186,0.0291967801297406,0.0310807192436819,0.0332366810785153,0.0353517603522771,0.0370393381172791,0.0389599609881615,0.041067975296833,0.0429823007927661,0.057630870100854,0.0719188832848502,0.0853719944609961,0.0985019041807814,0.1106643873200793,0.1264764404555268,0.1401322563182643,0.1532899570852013,0.1654821575521807,0.1764964741491268,0.1903693959847325,0.2035196014728178,0.2164318839948616,0.2277868412696674,0.2395751853606407,0.2508735537831811,0.2615314117107954,0.2712557447958907,0.2797728563316297,0.2879797273279746,0.2960011120893378,0.3037507901945634,0.3106909900204799,0.3170760934691431,0.3231910991266747,0.3295511943920858,0.3348260075550996,0.3399801738599969,0.3456113359277024,0.3510139583882012,0.3513912763214439,0.3523009566160223,0.3527601326662544,0.3543699816926381,0.3545208398064716,0.3546517833996676,0.3551978051434067,0.3567143440948099,0.3583563136213529,0.3595131759221366,0.3603061986557132,0.3613672182821119,0.3620877281098275,0.3631375872605214,0.3648483101534914,0.3642918499622563,0.3645883725562733,0.3675243175400062,0.3694022005746724,0.3680648990898298,0.3707507725868024,0.3725146198830409,0.3764965343415249,0.3778268483971674,0.3798536859876196,0.3826881975777725,0.382227632379793,0.3818842041557393,0.3819233948746211,0.3905165767154973,0.0,2.308790312850113,62.22491525293941,207.74626149079432,313.3025225949053,fqhc6_80Compliance_baseline_low_initial_treat_cost,49 -100000,95744,41562,390.52055481283423,7052,72.49540441176471,5458,56.577957887700535,2212,22.78993983957219,77.32373385663094,79.69354276948087,63.321321634088775,65.07501307745703,77.05076324321136,79.41776909151862,63.2208396190986,64.97519821981382,0.2729706134195737,275.77367796224905,0.1004820149901775,99.81485764321008,89.4047,62.62564881166099,93378.90625,65409.47611512051,232.65031,142.43346954337784,242527.92864304813,148300.97632079397,264.01108,125.7312678743176,272989.0332553476,129165.79592762036,3621.69559,1635.8965116945549,3758124.498663102,1684073.9325985922,1296.86226,566.852544131835,1347374.9477774063,584960.703453462,2174.8903,908.8318135329756,2243803.475935829,927324.8306483106,0.38095,100000,0,406385,4244.495738636364,0,0.0,0,0.0,19447,202.6341076203209,0,0.0,24674,254.99247994652407,2042055,0,73295,0,0,3635,0,0,36,0.3760026737967914,0,0.0,0,0.0,0,0.0,0.07052,0.1851161569759811,0.3136698808848553,0.02212,0.3077026844732227,0.6922973155267773,25.40024183663217,4.561194226977481,0.3336386954928545,0.1991572004397215,0.2332356174422865,0.2339684866251374,11.408579111300776,5.864108776459744,23.530590948875687,13030.886218099866,61.6107583135536,12.60753941589544,20.615641982088263,14.292280621189326,14.095296294380566,0.5439721509710517,0.766329346826127,0.6847885777045579,0.5923016496465043,0.105716523101018,0.6740847092605886,0.904320987654321,0.8408602150537634,0.697452229299363,0.1241379310344827,0.4993849938499385,0.7077326343381389,0.6312684365781711,0.5578727841501564,0.1003039513677811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681864235055,0.0042289086981654,0.0066686967113276,0.0090543259557344,0.0113035161972977,0.0133137752243579,0.0156243625831191,0.0176176810025226,0.0196437336387434,0.0219368317561754,0.0240795815813762,0.0262609249350409,0.0281467002726197,0.0302755507924403,0.0325241014842798,0.0344766985072158,0.0367251825384495,0.0389272189656066,0.0408929276965626,0.0427819744725188,0.0578826477343913,0.0714599686028257,0.0842984222893588,0.0973513695460091,0.1094918221219247,0.1252854846895618,0.1388258258895419,0.1518408171951479,0.1644434001559312,0.1748734665866003,0.1888492888137564,0.2013977540731765,0.2142367794343131,0.225981040684897,0.2371863276823727,0.24798174992525,0.2582382656987053,0.2685963414086026,0.2783252628117168,0.2873067283152317,0.2954923717059639,0.3034128097241702,0.3110914035710063,0.3180255196789073,0.3246972512723342,0.3305350098619329,0.3363352831393965,0.3417844084035112,0.3472440229870147,0.3523374238801632,0.3532592572615227,0.3543177869101139,0.3553629163195866,0.3567029431796774,0.3571513706793802,0.3563786513576987,0.3561559182379971,0.3571052977520704,0.3580715152136401,0.3587259598198327,0.3591698751056437,0.3613695423617861,0.3622767104819683,0.3632477671038718,0.3642831215970962,0.3643883097445054,0.3654952260439434,0.3678358114118694,0.3705504489477233,0.3741253116705542,0.3755021007433399,0.3768757422001511,0.38,0.3819659442724458,0.3843088890997059,0.3877403846153846,0.3897940362742084,0.3945647731916633,0.3975670445120265,0.4025720966484801,0.0,1.6081351957669603,62.17892817841624,198.71398164418,315.68556442923136,fqhc6_80Compliance_baseline_low_initial_treat_cost,50 -100000,95762,41655,390.5306906706209,7218,73.93329295545206,5640,58.1023788141434,2241,22.90052421628621,77.38153749659537,79.72390636075815,63.350937847410606,65.08317255361204,77.10611257455402,79.45109278816432,63.24957877057296,64.98603980151583,0.2754249220413527,272.813572593833,0.101359076837646,97.13275209621486,90.19648,63.15620772858493,94188.17485014931,65951.2204513115,237.37875,144.95021997839882,247036.48628892464,150517.48081535342,271.62089,129.74536103384187,278482.69668553286,131501.4267283908,3737.85227,1667.960181059174,3854057.9666255927,1692561.6643962895,1363.60286,589.9323180022794,1402965.2054050667,595055.4478835854,2218.13814,919.5947693885798,2269815.4382740543,921237.6829742836,0.38059,100000,0,409984,4281.280675006788,0,0.0,0,0.0,19847,206.4388797226457,0,0.0,25325,259.36175100770663,2037587,0,73142,0,0,3576,0,0,47,0.4699149975982122,0,0.0,0,0.0,0,0.0,0.07218,0.1896529073280958,0.3104738154613466,0.02241,0.3206026166248183,0.6793973833751817,25.325509455251005,4.526724981560489,0.3209219858156028,0.2108156028368794,0.2276595744680851,0.2406028368794326,10.81809603535732,5.241550070596902,23.78453715530653,13012.086454105924,63.25838403437064,13.852781377235177,20.373541988754496,14.347121036822395,14.684939631558564,0.5382978723404256,0.7577796467619848,0.7005524861878453,0.5669781931464174,0.1024318349299926,0.6956521739130435,0.8977272727272727,0.8571428571428571,0.7064516129032258,0.1220472440944882,0.4884426803642306,0.6989247311827957,0.6501095690284879,0.5225872689938398,0.0979147778785131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129757540156,0.004906035234253,0.0069295077310174,0.0089272112367082,0.0113569351526119,0.0135590459806386,0.0156869540399767,0.0180448672150891,0.0201927302083652,0.0225412352146686,0.024809394982784,0.0269451857934715,0.0291492730675111,0.0314453104889776,0.0333684036803234,0.0350991393116559,0.0371297886872115,0.0393805263867149,0.0415433041418643,0.0434280121610928,0.0574398363632568,0.071686312244407,0.0849312770619502,0.0979013630106035,0.1098828141466087,0.1249960367368076,0.1387043101346983,0.1513108932786153,0.1636802168600121,0.174413120377318,0.1886881822292075,0.2015099727426123,0.2140046522750494,0.2256939890710382,0.2363430356632125,0.2478549206735825,0.2583134464839307,0.2683340827338129,0.2782376956225901,0.286740729723236,0.2946849847349431,0.3028411083830235,0.3096474931664083,0.3164004936082523,0.3224733154424354,0.3287839968466693,0.3347379740662473,0.3407298081327294,0.3460382832128889,0.3519241936335321,0.3529205780549233,0.3532415691672402,0.3540179956562209,0.3543948491644361,0.3550883145097689,0.3552347234355602,0.3553758250106836,0.3567059672367709,0.3574314303734892,0.357879155371665,0.3589051874332603,0.3600688331981723,0.3610207550733458,0.3618611541310349,0.3626193461278811,0.3643238434163701,0.3661806746712407,0.3689745285098076,0.3715009143339429,0.3728340967934674,0.3729193341869398,0.3784043575776994,0.3803595248681954,0.3790849673202614,0.3780905287181438,0.3774668101901686,0.3754995388871811,0.3816778387162299,0.3810975609756097,0.3800383877159309,0.0,3.1053203908737546,58.875694130307245,212.73017585432584,327.0641146782051,fqhc6_80Compliance_baseline_low_initial_treat_cost,51 -100000,95854,41364,387.9754626828301,7184,73.5493563127256,5600,57.80666430195923,2267,23.2749806998143,77.37299817448195,79.67492037645094,63.35320242165369,65.05731595134246,77.08932598152934,79.38968303941273,63.249029268450855,64.9549626622682,0.2836721929526078,285.2373370382111,0.1041731532028364,102.35328907425868,89.51382,62.69548692025233,93385.58641266928,65407.27243542505,236.57851,144.5241224739464,246199.814300916,150163.77248100904,268.97643,128.17465479893548,276729.78696768003,130706.60541767252,3718.90332,1672.5328485457844,3839080.570450894,1704197.8619001624,1347.07194,585.4834353016254,1389246.1451791266,594716.4388566203,2244.8106,936.7327426585288,2306867.840674359,948101.0257085426,0.37817,100000,0,406881,4244.799382394058,0,0.0,0,0.0,19807,206.0007928724936,0,0.0,25141,258.28864731779584,2038182,0,73240,0,0,3614,0,0,40,0.4173013124126275,0,0.0,1,0.0104325328103156,0,0.0,0.07184,0.1899674749451305,0.3155623608017817,0.02267,0.3269866455110406,0.6730133544889594,25.18646088108552,4.580372768689673,0.3264285714285714,0.2014285714285714,0.2296428571428571,0.2425,10.889318098190008,5.32701743054744,24.14664311151185,12993.029497185038,63.09202000926133,13.322134102995491,20.662440639912823,14.194092688996347,14.913352577356672,0.5414285714285715,0.7553191489361702,0.6974835886214442,0.5777604976671851,0.1192930780559646,0.6920263350402341,0.8861111111111111,0.8616780045351474,0.7062937062937062,0.1607142857142857,0.4927947082447437,0.6940104166666666,0.6452775775054074,0.541,0.1085343228200371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0044898496964537,0.0068774535163263,0.00917896959974,0.0114165463676473,0.0137214983713355,0.0157777256836504,0.0178897631366786,0.019771326977899,0.021793848609491,0.0242303160698734,0.0262242605189448,0.0284569138276553,0.0304471343873517,0.0326381658299227,0.0346152257424924,0.0367791595108527,0.038712618904524,0.0406853582554517,0.0426871137560082,0.05706807920503,0.0710172945294947,0.0845939490445859,0.0973683657824543,0.1098028477546549,0.1250699821479501,0.1381429752241273,0.1509919411426991,0.1635534967124925,0.1751122445699345,0.1886374153832908,0.201960805508415,0.2142686346542616,0.2254378867726487,0.2360489044909817,0.2474687049961227,0.2578643723566893,0.2682633113119422,0.2775255906852175,0.2870218688783751,0.2953128073402987,0.302247191011236,0.3095170420900542,0.3171427543962696,0.3234893947860735,0.3304858055052204,0.3355423875324154,0.3415590699569613,0.3469937918788963,0.3523170232164801,0.352961799328488,0.3542798070296347,0.3543690691369182,0.3544256120527307,0.3556197510274584,0.3557738049566485,0.3548863113466512,0.3552404296971392,0.3556867779204107,0.3561989686291362,0.3563729908367132,0.3573820516377038,0.3585040445424939,0.3594621848739496,0.360599272587133,0.3620112899853648,0.3641287216666189,0.3660025300442758,0.3670022964140611,0.3694483170683131,0.3696177154052946,0.3728245249880249,0.3759188846641318,0.3764118325009604,0.3770304930179538,0.3800071318198026,0.3842828469970665,0.3800371977681339,0.3879164313946923,0.3863813229571984,0.0,2.399478788127259,60.03662333985682,213.3075576080112,322.0685912988146,fqhc6_80Compliance_baseline_low_initial_treat_cost,52 -100000,95779,41746,392.2884974785705,7333,75.25658025245617,5722,59.02128859144489,2309,23.627308700237005,77.39816222968327,79.7273315811865,63.35848721039546,65.0795283573877,77.1147928681297,79.4470532412419,63.25293528625694,64.9783613735837,0.2833693615535679,280.2783399446014,0.105551924138517,101.16698380400636,89.39502,62.63181564606239,93334.67670366156,65392.0124934092,235.57003,143.8771810811997,245225.41475688823,149491.64334687113,277.47345,132.6550378434987,285520.8866244166,135302.61765902195,3777.46922,1702.3016620290446,3901510.1640234287,1734889.5499316575,1369.55432,596.8855395892026,1414895.4259284397,608196.9749505302,2269.28412,954.8653689587552,2326204.9300995,959231.487745976,0.38123,100000,0,406341,4242.485304711889,0,0.0,0,0.0,19663,204.5333528226438,0,0.0,25806,265.19383163323903,2040046,0,73199,0,0,3587,0,0,52,0.5429165057058437,0,0.0,0,0.0,0,0.0,0.07333,0.1923510741547097,0.3148779489976817,0.02309,0.3238651102464332,0.6761348897535668,25.31757049687861,4.534952029673046,0.3287312128626354,0.2081440055924502,0.2364557846906676,0.2266689968542467,11.15498609604427,5.580066319132623,24.694645466601045,13046.011812179397,64.4042844502319,13.834067988894384,21.20929983066188,15.057444897644356,14.303471733031284,0.547885354771059,0.7732997481108312,0.6900584795321637,0.5794530672579453,0.1017733230531997,0.7101865136298422,0.9153005464480874,0.8558758314855875,0.7476340694006309,0.123076923076923,0.4956099815157117,0.7103030303030303,0.6377622377622377,0.527992277992278,0.0964320154291224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.004712583103616,0.0069695248143489,0.0090685677146803,0.0110506785950287,0.0137297209273922,0.0158149487950272,0.0180182018528343,0.0200962412774956,0.022171066093718,0.0245674066940548,0.0265364131717478,0.0285082986485792,0.0307845902078037,0.0328879541424388,0.0348470921165425,0.0369013997082647,0.0388539787220805,0.0408829214557396,0.0427887118608768,0.0578267493061207,0.0720157292559978,0.0853838814858305,0.0981018645029743,0.1109916292407278,0.1269926846801133,0.140270677329713,0.153155262317761,0.164863450426684,0.1758763793121937,0.1897586143754241,0.202682821289485,0.2148748655198269,0.2261959395965821,0.2366410535457133,0.2473577618167531,0.2578637397938696,0.2679439294392944,0.2773049162467656,0.2859041486692407,0.2947633865053384,0.3025437108940997,0.3103011356235272,0.3168509148461667,0.323955979884848,0.3303721044849679,0.3363613613613613,0.3423423423423423,0.3476277490507108,0.3523717711689821,0.3528809080859554,0.3542576193689661,0.3548109480812641,0.3554568858291632,0.3562386711437316,0.3568113233559535,0.357217556647124,0.3578421709704974,0.3585296534721271,0.3598484171388735,0.3613174281641533,0.3629858674753721,0.3655514250309789,0.366965085049239,0.3673027928664135,0.3671140589095467,0.3668686179139289,0.3678337943173246,0.3701239582603823,0.3723741577487118,0.3746579091406677,0.3781925863254191,0.3798861717430734,0.3781333333333333,0.380109248446035,0.3839808726838015,0.3832901356914164,0.382072601906307,0.3876311430149088,0.3907563025210084,0.0,2.6856865677593103,60.836412632853055,221.59664426825944,324.20904983572143,fqhc6_80Compliance_baseline_low_initial_treat_cost,53 -100000,95877,41612,390.0309771895241,7117,73.11451130093766,5540,57.19828530304453,2167,22.22639423427934,77.3584022892406,79.64132903726849,63.35300198276878,65.04184067170594,77.08379285553178,79.36778243970626,63.2513667063264,64.943425857882,0.2746094337088181,273.54659756223043,0.10163527644238,98.41481382393624,89.24828,62.56586051776566,93085.99559852728,65256.15165030788,235.98957,144.54216147096568,245561.91787394267,150183.7176646535,269.30995,128.39400922381748,277353.9222128352,131201.78771321787,3668.66144,1645.0208432851502,3790738.727744923,1680260.452137042,1353.42978,589.4608139933242,1396395.558893165,599655.0074999022,2138.6566,899.3025776587833,2195954.837969481,905885.9057841622,0.38024,100000,0,405674,4231.181618114877,0,0.0,0,0.0,19645,204.2721403464856,0,0.0,25142,258.71689769183433,2039061,0,73208,0,0,3356,0,0,52,0.5423615674249299,0,0.0,0,0.0,0,0.0,0.07117,0.18717126025668,0.3044822256568779,0.02167,0.3140374331550802,0.6859625668449197,25.304344372751267,4.530313721199772,0.3505415162454873,0.1976534296028881,0.2169675090252707,0.2348375451263538,10.902866532033787,5.511448942140307,23.240094997711047,12949.321143461622,62.51891269109806,12.906949795178916,21.89049618891603,13.339703806542172,14.381762900460952,0.5444043321299639,0.7598173515981735,0.6915550978372812,0.569883527454243,0.1199077632590315,0.6927578639356254,0.9174041297935104,0.8212058212058212,0.7178571428571429,0.149812734082397,0.4958063743110472,0.6891534391534392,0.648870636550308,0.5249457700650759,0.1121856866537717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185412426976,0.0044380946590874,0.0067044659248815,0.0090365421519154,0.0114657450701362,0.0136781363539217,0.015801377399242,0.0178081493191901,0.0201443696844082,0.0221327145033173,0.024343054858886,0.0263271206249615,0.0283974200969517,0.0304482893410414,0.0324711459192085,0.0347732716610225,0.0367634889109566,0.0388653393721434,0.0408748208611128,0.0430091865291981,0.057878550951264,0.0712718610919576,0.0846231176827863,0.097020097020097,0.1096165999578681,0.1245312516505223,0.1383110621297699,0.1511658816149028,0.1634894543591495,0.1751942970466848,0.18891269935281,0.200832972739074,0.2130384673929588,0.224072514952382,0.2346207139243847,0.2457328817161453,0.2570083553651707,0.2677906623626404,0.2780967727293359,0.2868029611973138,0.2948441913228689,0.3024363415090807,0.309884354708754,0.3158823105906069,0.3223726627981947,0.3282846985631758,0.3341778184691407,0.3395747503220622,0.3445144527443975,0.349319601821455,0.3493707464621368,0.3509038222712847,0.3515647065469129,0.3519294025590123,0.3526710500812571,0.3533860010451569,0.3532974107100281,0.354144347568111,0.3548481158127647,0.3557031361878848,0.3563617916729295,0.3566599924667446,0.3585377646044859,0.3585091830556365,0.3594787015807892,0.3594006943175589,0.3605321760977559,0.3627660914472855,0.3659540052043041,0.3686138653287142,0.3700718897385411,0.3706010754405579,0.3755386565272496,0.3752319109461967,0.3789544107808468,0.3798720888138047,0.3824588880187941,0.383670963781461,0.3852981969486824,0.3844973138910207,0.0,2.1618731845976344,60.46937827039401,209.29400447377088,318.7369812428227,fqhc6_80Compliance_baseline_low_initial_treat_cost,54 -100000,95726,41524,389.4239809456156,7126,73.17761109834319,5599,57.85262102250172,2265,23.25387042182897,77.38965647392791,79.75771982440794,63.34469261111818,65.09462174866366,77.10971462515339,79.47685856123226,63.24175200624055,64.99408239090428,0.2799418487745271,280.86126317568016,0.1029406048776309,100.53935775937362,90.2264,63.14343607136073,94254.8523911999,65962.68105985911,234.49865,143.60965810790418,244338.9570231703,149391.9291602116,273.18887,130.58395742337785,281103.8798236634,133217.3542850665,3703.01458,1672.7953820180378,3827415.916260995,1706892.7004050568,1348.3531,584.2613814117447,1390791.6135637132,592723.7855666622,2234.20098,931.6718953935124,2295457.8066564985,940596.029672325,0.37966,100000,0,410120,4284.311472327267,0,0.0,0,0.0,19624,204.32275452855023,0,0.0,25528,262.4156446524455,2036705,0,73085,0,0,3521,0,0,35,0.3656268934249838,0,0.0,0,0.0,0,0.0,0.07126,0.1876942527524627,0.3178501262980634,0.02265,0.3209234053909794,0.6790765946090206,25.09999091621666,4.560986456508364,0.3295231291302018,0.202000357206644,0.2337917485265226,0.2346847651366315,10.976173155283089,5.451015193605145,24.08625919153039,12980.835329551404,63.16575442465037,13.450106391239157,20.60508705146922,14.75178592071621,14.358775061225776,0.5384890158956956,0.7674624226348364,0.6878048780487804,0.5584415584415584,0.1118721461187214,0.69375,0.9193954659949622,0.8600451467268623,0.689873417721519,0.1232394366197183,0.4847319067083434,0.6852861035422343,0.6333808844507846,0.5166163141993958,0.1087378640776699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195040920508,0.0049471325892359,0.0071342311166137,0.0095190686145031,0.0115352925020598,0.0135534194126512,0.0157726776847707,0.0180582068374148,0.0201467822389402,0.0225399977480474,0.0246727554147831,0.0270006673168728,0.0292376017764618,0.0311084109069939,0.0333058277462609,0.0354086568274835,0.0374650512581547,0.0395289723504694,0.0414089864984253,0.043512237816886,0.058698852542886,0.0726823600833167,0.0857928255920093,0.0978506727825529,0.1100269001529616,0.1255407134773825,0.139427310438482,0.1514696805227422,0.1638705267991584,0.1751691743434105,0.1889825672168922,0.201373864128083,0.2136589502984701,0.225158828224951,0.2359705105633802,0.2471786920648984,0.2580389707440579,0.2680783150133747,0.2781047641728756,0.2870908674753948,0.2948769851827004,0.3025175691951496,0.3091749736895006,0.3158203592814371,0.3231494074217991,0.3290530881845517,0.3349982474588153,0.3407551685507689,0.3461389011216745,0.3511412089290193,0.351362999676759,0.3519864541174527,0.352032909751768,0.3524693231583055,0.3522032187184512,0.3524621531019914,0.3521726063367025,0.3533325685442239,0.3541812113678546,0.355287288784431,0.3562943593574897,0.3571738530119531,0.3589475664040459,0.3578905081795255,0.3569799543872284,0.3581965076882981,0.358169451006062,0.3607042741503669,0.3642521963094944,0.3671346853874155,0.3695752114748069,0.370021528525296,0.3710220415422727,0.3722910805261957,0.373689138576779,0.3759933578460444,0.3812078479460454,0.3800364446244179,0.3749312809235844,0.3766781741465286,0.0,2.436292350963454,63.43324442445689,205.68635792996685,318.53012183355787,fqhc6_80Compliance_baseline_low_initial_treat_cost,55 -100000,95779,41691,392.9358210046044,7094,73.03271071946878,5523,57.2672506499337,2182,22.604119901022145,77.34687979821054,79.70602283653646,63.33382307926016,65.08117257797471,77.07739563046,79.43041775866028,63.23511218302058,64.98123390784458,0.2694841677505337,275.60507787617894,0.0987108962395737,99.93867013012904,90.7412,63.56201146211222,94740.18312991364,66363.20222816298,240.00158,147.05683942337294,250177.7216300024,153136.88744231296,269.47262,128.8330541636391,278226.30221656105,132222.4624885339,3641.06888,1641.524020856628,3778084.9037889303,1690761.257925363,1350.416,588.4445849271623,1401124.8499149082,605884.034608127,2153.46768,898.7943310281664,2231745.434803036,924884.8904330588,0.38064,100000,0,412460,4306.3719604506205,0,0.0,0,0.0,20081,209.2316687374059,0,0.0,25048,258.4700195241128,2032127,0,72987,0,0,3685,0,0,61,0.6264421219682812,0,0.0,0,0.0,0,0.0,0.07094,0.1863703236654056,0.3075838736960812,0.02182,0.3126009693053311,0.6873990306946688,25.208211852387414,4.557597389776243,0.3324280282455187,0.2060474379866015,0.2317581024805359,0.2297664312873438,10.852869259495977,5.323801958856904,23.376864148356766,12967.773521015935,62.19536349966909,13.233240168404922,20.59760034526027,14.355959494022663,14.008563491981231,0.5498823103385841,0.7829525483304042,0.6835511982570807,0.5734375,0.123719464144996,0.7146932952924394,0.9331395348837208,0.8468085106382979,0.7555555555555555,0.1648351648351648,0.4938121815093424,0.7178841309823678,0.6273792093704246,0.5139896373056995,0.1124497991967871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019050707308175,0.0039548939277167,0.0062233502538071,0.0083844019634744,0.0104785545698705,0.0125353862446793,0.0146396166785605,0.0167211106574111,0.0191061315450512,0.0211430560674939,0.0232322093154392,0.025566519154354,0.0275086896608461,0.0297089878959567,0.0316321791630115,0.0337406189915028,0.0354665009837423,0.0375730038693347,0.039489002536277,0.0414015723434164,0.0558077882497834,0.0697788749189347,0.0835281659869366,0.0968891224382553,0.1096837423991737,0.1249286755848602,0.1379968203497615,0.1502748216582855,0.1622967956649741,0.1737002206465157,0.187653949165851,0.2010827282157676,0.2135314822057098,0.2248806962751029,0.2361555108811477,0.248188185308534,0.2586587568857468,0.268932409947385,0.2783899411037097,0.2871101132862166,0.2958706571302918,0.3030742764859393,0.3110066541949844,0.3176759803333733,0.3244349441927687,0.3308136457089391,0.3362747675015333,0.3414351704567145,0.3464103925708143,0.3509947754498918,0.3519074615208521,0.3523263979730939,0.3535071777749602,0.3537639069498627,0.3538171172108368,0.3537633914202951,0.3534091989729609,0.3549480194762469,0.3565730914070524,0.3572820742065266,0.3589315212494368,0.3599944497304155,0.3610854212207836,0.3606675201581205,0.3619310078081562,0.3650756143667297,0.3661664706051129,0.3686833417978669,0.3710578418894074,0.3758606885508406,0.3780577524370057,0.3780807270783213,0.3787252970705979,0.3811274509803921,0.3805534638554217,0.3792405665992144,0.3822714681440443,0.3819116135662898,0.3817976894899972,0.3868149324861001,0.0,1.4401829016638117,62.70305555672574,204.02805060170985,315.01888375514505,fqhc6_80Compliance_baseline_low_initial_treat_cost,56 -100000,95747,41695,391.6989566252728,7209,74.05976166355082,5627,58.12192549113811,2312,23.73964719521238,77.36211040614715,79.72328250749305,63.32787542470121,65.0754631751064,77.091039786802,79.45215583532544,63.22852015693327,64.97830094993456,0.2710706193451528,271.1266721676111,0.0993552677679403,97.16222517184292,89.3486,62.587246855800736,93317.38853436662,65367.31892988891,234.11689,142.93995949915038,243895.3178689672,148668.38595376397,270.16111,129.10616824455627,277684.1989827358,131392.12301585934,3719.07737,1669.5516323995134,3845401.046507984,1704967.3795608208,1400.7733,602.4774413645353,1447292.5522470677,613541.2160135931,2278.44742,936.393343339194,2342526.157477519,948050.9893602018,0.38195,100000,0,406130,4241.699478834846,0,0.0,0,0.0,19558,203.60951256958444,0,0.0,25269,259.4232717474177,2039983,0,73241,0,0,3546,0,0,42,0.4386560414425517,0,0.0,1,0.0104441914629178,0,0.0,0.07209,0.1887419819348082,0.3207102233319461,0.02312,0.3231683168316832,0.6768316831683169,25.12185154671289,4.583912553251502,0.3360582903856406,0.198329482850542,0.224098098453883,0.2415141283099342,11.11586600562532,5.5469591814659776,24.355438675238894,13058.82549774986,63.3994955831424,13.136984225421733,21.4702421060038,14.18856335800077,14.603705893716104,0.5519815176826017,0.7795698924731183,0.6948704389212057,0.5860428231562252,0.1346578366445916,0.7192982456140351,0.9234972677595628,0.8519269776876268,0.7185430463576159,0.1893939393939394,0.4952403617325083,0.7093333333333334,0.6394849785407726,0.5443169968717414,0.1214611872146118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019958866498485,0.00451254385787,0.0068013399654857,0.0092260483453061,0.0110574233253649,0.0131278771336619,0.0156629208900128,0.017969451931716,0.0201633930123413,0.0223539772261817,0.0244277627368939,0.0262444275530538,0.0283841896257278,0.0306259145524618,0.0329232547578747,0.0350068235391423,0.037277885929669,0.0393733464750739,0.0411101294111532,0.0428189023945671,0.0577029467333326,0.0718918692722935,0.0853607382550335,0.0982068675395698,0.1100388136522803,0.1253199094735506,0.1391655793527034,0.1512683762867392,0.1636252911386995,0.1746836800343126,0.1885837372105546,0.2010930144472701,0.214089900352465,0.2255852111135419,0.2364484849818946,0.2488060544948862,0.2591835595018708,0.2689394365721617,0.2786926176019973,0.2877305533279872,0.2958558642011046,0.3030029959741597,0.3107119173929519,0.3178606135499274,0.3235672969425947,0.3299903782103471,0.3363318591277547,0.3426475457856797,0.3491946247845637,0.3543765597559848,0.3553344657445604,0.3562759171752517,0.3569606336946257,0.3577978997309572,0.35778329591245,0.3580112530087234,0.3572039942938659,0.3583622233540903,0.3593835429196282,0.3610065137860266,0.3622604753966321,0.3627911567311488,0.3649384370550297,0.3645267324075937,0.3658120069270733,0.3670691318747229,0.368361066788238,0.3707872233400402,0.3722072182666339,0.3759911195686647,0.3788092102275308,0.3809523809523809,0.3803588290840415,0.3781569965870307,0.3802302723953945,0.379175086176156,0.3790310255234602,0.3806943608268112,0.3821049768833288,0.3882854926299457,0.0,2.524192080776916,62.77537087931998,209.4227669869521,319.1209305281513,fqhc6_80Compliance_baseline_low_initial_treat_cost,57 -100000,95755,41721,391.3947052373245,7338,75.2649992167511,5735,59.25539136337528,2377,24.374706281656312,77.32840490063373,79.68928839920345,63.31625382636724,65.06499865580663,77.03783177974238,79.40032448135216,63.20875382202559,64.96125061673843,0.2905731208913522,288.96391785129083,0.1075000043416523,103.74803906820772,90.49678,63.3384428260917,94508.67317633543,66146.3556222565,236.4739,144.0135780999439,246305.47752075607,149746.2149234441,271.82571,129.5130975391061,280296.266513498,132412.1202795636,3823.81678,1725.725340323717,3953101.070440186,1761997.274631837,1387.00041,612.5403454349031,1433632.1758654902,624844.162044642,2341.51242,979.2819706399084,2402961.182183698,986269.1403269408,0.38178,100000,0,411349,4295.84878074252,0,0.0,0,0.0,19774,205.8378152576889,0,0.0,25377,261.52159156179835,2033211,0,73069,0,0,3489,0,0,42,0.4281760743564305,0,0.0,1,0.0104433188867422,0,0.0,0.07338,0.1922049347791922,0.3239302262196784,0.02377,0.3161783769769251,0.6838216230230749,25.359058709352983,4.594877718460563,0.3326939843068875,0.2019180470793374,0.2282476024411508,0.2371403661726242,11.315772474186897,5.7159348475997165,25.391744495617644,13073.62945981557,64.68141004854651,13.545212073618195,21.550780446738464,14.603821022326033,14.981596505863816,0.5429816913687882,0.7668393782383419,0.689203354297694,0.5729564553093965,0.1183823529411764,0.7035991531404375,0.9090909090909092,0.8512396694214877,0.760655737704918,0.1498257839721254,0.4902732746641964,0.7074663402692778,0.6341292134831461,0.5159362549800797,0.1099720410065237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025130974939959,0.0049493904541674,0.007229013523941,0.0093091322994369,0.0115969156273524,0.0138221153846153,0.0160405449502365,0.0184281455466165,0.0205688114661923,0.0226114193297438,0.0247757675157603,0.027075589872066,0.0291341011929247,0.0309725398100653,0.0329398167258317,0.0350926155627222,0.0372548004761658,0.0392433419065792,0.0412769672028931,0.0433600666597229,0.0575985636893143,0.071668392481722,0.0854497409978399,0.0982581180947575,0.1104390161654056,0.1266661733771656,0.1406119094331618,0.1535325797730804,0.1656376842555009,0.1774653626731866,0.1914235856779697,0.2041032743956543,0.2170648909779344,0.2287954851199265,0.2394204940772381,0.2495790126739342,0.2601022504018574,0.2696598853900454,0.2792372255727054,0.2882004952765294,0.2966767021769337,0.3042017790262172,0.3112685568048529,0.3178925629757702,0.32368078453321,0.3298200577592378,0.3353960085352077,0.3413529614368996,0.3476713680874828,0.3526697167640758,0.3540569731335223,0.3543390709478097,0.3543724301640456,0.3554329408697919,0.3562515839532491,0.3565335013910878,0.3554676327581275,0.3554474226804123,0.3568083975095621,0.3581152583717468,0.3592612792206571,0.3598873306488406,0.360744877393349,0.3614249455313223,0.3632077752526473,0.3646867712945738,0.3657501648556438,0.3675518645994505,0.3691814369780472,0.3720280836125738,0.372135571513516,0.3735656608584785,0.3741984156921916,0.3755425264600624,0.3757541478129713,0.3793389408837815,0.386042944785276,0.3861528951164228,0.3918767507002801,0.4028548770816812,0.0,2.4380191086727447,62.2912567691049,218.8926409328381,326.67597291010907,fqhc6_80Compliance_baseline_low_initial_treat_cost,58 -100000,95739,41563,389.9142460230418,7178,73.83615872319535,5526,57.2389517333584,2287,23.57450986536312,77.31464774318667,79.68132525305256,63.30648041847581,65.05632913027675,77.03173334937232,79.39553047239693,63.20282747040336,64.95397123151548,0.2829143938143517,285.7947806556353,0.1036529480724439,102.35789876126944,91.1955,63.80949953168466,95254.28508758188,66649.43182160317,234.7127,143.7914494339667,244665.51770960636,149697.69233924523,265.56943,126.85467821116276,274651.3542025716,130403.31468589776,3669.30232,1648.570299198753,3800290.383229405,1689623.1438534446,1360.472,594.2529196315965,1404841.6946072134,604539.0219455332,2264.97836,942.2316677374976,2335273.3159945267,956616.7713663392,0.37984,100000,0,414525,4329.740231253721,0,0.0,0,0.0,19680,205.04705501415305,0,0.0,24761,255.87273733797093,2029071,0,72781,0,0,3630,0,0,45,0.4700278883213737,0,0.0,0,0.0,0,0.0,0.07178,0.1889743049705139,0.3186124268598495,0.02287,0.3128306878306878,0.6871693121693122,25.66919050410189,4.533083274342345,0.3248280854144046,0.2048498009410061,0.2245747376040535,0.2457473760405356,10.81410520399455,5.330103638693364,24.35225806851132,13035.27426416346,62.34364455560205,13.220316012528698,20.476837944294807,13.67752835537308,14.968962243405478,0.5343829171190735,0.7712014134275619,0.6924791086350975,0.5535858178887993,0.1104565537555228,0.6907600596125186,0.9096385542168676,0.8393234672304439,0.7315175097276264,0.1428571428571428,0.4842256214149139,0.71375,0.6399394856278366,0.5071138211382114,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0050389836866705,0.0074301142938346,0.0095417132405243,0.0117706902690879,0.0138147438770936,0.016057783536181,0.0182863327275326,0.0205466849303866,0.0227980017198312,0.0249556560343678,0.0270864136684737,0.0292024110761381,0.0312615917240242,0.0332676169734003,0.0352727122358681,0.0372683027855441,0.0391304347826087,0.0413209391311581,0.0433188173275269,0.0577794483075445,0.071403152540244,0.0847119792704803,0.0975907288807563,0.1098656599953603,0.125659822495848,0.1389847058448932,0.1511318384122319,0.163091000438273,0.1744650254340967,0.1882771636559719,0.2013241732044558,0.2134530320528185,0.2252446763039356,0.2365466896034581,0.2482231698649609,0.2582081371024577,0.2678962210941906,0.2771413294501769,0.2866398621481907,0.2947691950823475,0.3030089906342675,0.3103370573305818,0.3174574581787177,0.3230570830697357,0.3304697721493989,0.3362559182344247,0.342561346763616,0.3478103182518814,0.352422558633706,0.3532185487565004,0.3537631299990363,0.3544334108035777,0.3546904138898125,0.3553511083322168,0.3559348046287486,0.3552257757320847,0.357131093544137,0.3582984849523548,0.3599054999731534,0.3615581290419612,0.362540878010108,0.3634684022674785,0.3636791712447025,0.3640948910394092,0.363935883691133,0.3660053895992202,0.3672425228184316,0.3705229793977813,0.3723510396296444,0.3736984541993486,0.3770421554448551,0.3831280709590964,0.3874478925428439,0.3890214797136038,0.3897897897897898,0.3940099317194289,0.3902641980445184,0.3941687692738996,0.3977987421383648,0.0,1.8125483776899745,59.651139320966806,215.781942589006,312.408983696817,fqhc6_80Compliance_baseline_low_initial_treat_cost,59 -100000,95828,41982,393.9349668155445,7130,73.308427599449,5558,57.561464290186585,2251,23.17694202112117,77.3504688262772,79.68300625941211,63.33176974345843,65.06029049856974,77.06843709814572,79.39816327092736,63.22877838525868,64.95830040259041,0.2820317281314715,284.8429884847548,0.1029913581997519,101.99009597933184,88.7711,62.21121816453953,92635.86843093878,64919.666657490015,235.46114,144.46660103577884,245272.75952748675,150317.4783112974,273.74726,130.57305310990233,282934.7372375506,134151.1514809384,3649.59563,1645.6026703540074,3779790.9483658224,1688599.291881553,1344.4471,590.6526658691079,1388051.1541511875,601467.7629444554,2221.42106,929.281527984649,2288154.422506992,944232.762881178,0.382,100000,0,403505,4210.721292315398,0,0.0,0,0.0,19688,204.99227783111408,0,0.0,25452,262.9815920190341,2039595,0,73314,0,0,3372,0,0,44,0.4487206244521434,0,0.0,0,0.0,0,0.0,0.0713,0.1866492146596858,0.3157082748948107,0.02251,0.319078070876632,0.680921929123368,25.39152762765208,4.563083440338897,0.3290752069089601,0.2106872975890608,0.224361281036344,0.2358762144656351,11.195839579787304,5.65802160061933,23.98460245895921,13075.311691619068,62.69535664324492,13.730844737316463,20.67619105934921,13.752342670765236,14.535978175814009,0.5453400503778337,0.7702818104184458,0.6971022416621104,0.56214915797915,0.1167048054919908,0.691970802919708,0.9051490514905148,0.8614318706697459,0.7352941176470589,0.1385135135135135,0.4973734479465138,0.7082294264339152,0.6461318051575932,0.5138461538461538,0.1103448275862069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022489211256761,0.0046642263974934,0.0068811529483406,0.0091848450057405,0.0113310413572838,0.01349534537899,0.0158278517158737,0.0180847153010374,0.0202956934276716,0.0222856908871281,0.024445515416876,0.026605740103712,0.0288458572001522,0.0308139115747844,0.0329923062643097,0.0349445144758322,0.0371213846504213,0.0393216471320402,0.0414137845028267,0.0433596718614989,0.0580945327088179,0.0721507208799021,0.0852475164521943,0.0986730823781557,0.1114517488411293,0.1272112437916094,0.1406669140645708,0.1531481698171412,0.1651026486884668,0.1760413206313826,0.1893334481200094,0.2024131295002919,0.2148622956162746,0.2272563315006503,0.2377075333648736,0.2499612136793812,0.2607089031537817,0.270044236332324,0.2800177176085771,0.288511330568476,0.296675695071417,0.3046174003579743,0.3120798219865543,0.3186454899610428,0.3251881298856024,0.331087501079727,0.3361915507082863,0.3415144135759183,0.3467465753424658,0.3523516111544513,0.3531381205027473,0.3538504002208115,0.3549995761873817,0.3562360511289528,0.3566373131882049,0.356633797192271,0.3561841833574231,0.3576511283149399,0.3592949761052397,0.3588232132298927,0.360327536340758,0.3614634533058506,0.3616493632045731,0.3614790534776166,0.3626718867058169,0.3636006392287338,0.3641613539552303,0.3667318858874022,0.3697960618846694,0.3730044699872286,0.3742521806640179,0.376543867120954,0.380976441609297,0.3853371986573085,0.3854225751559841,0.385794037296591,0.3933343572415911,0.3910569105691057,0.4003308519437552,0.4110120201628538,0.0,1.6947213969808326,60.973537673906,211.86796866137135,317.61775821192776,fqhc6_80Compliance_baseline_low_initial_treat_cost,60 -100000,95712,41660,392.6048980274156,7283,74.68238047475761,5725,59.16708458709461,2299,23.61250417920428,77.30949638025908,79.66958343190741,63.31695901961641,65.05961565455945,77.02319075048122,79.38268452053927,63.21242365446448,64.95759520501387,0.286305629777857,286.89891136814083,0.104535365151932,102.0204495455772,89.85262,62.92899367489092,93878.11350718825,65748.27991776467,237.73416,145.2074436535346,247717.27683049144,151045.27588973753,274.44608,131.339837927166,282236.8041624875,133834.54442537233,3788.32506,1683.5882865090678,3919844.324640589,1721127.752368071,1376.25472,589.3494218107395,1422941.135907723,600824.6671751469,2263.32516,932.64436353894,2327410.9620528254,943783.417771119,0.38029,100000,0,408421,4267.186977599465,0,0.0,0,0.0,19904,207.28853226345703,0,0.0,25497,261.9211802072885,2033551,0,73014,0,0,3649,0,0,55,0.5746405884319625,0,0.0,0,0.0,0,0.0,0.07283,0.1915117410397328,0.3156666208979816,0.02299,0.3171145316984085,0.6828854683015915,25.325897235783938,4.580286372123885,0.3282096069868995,0.2038427947598253,0.2291703056768559,0.2387772925764192,11.092696815088155,5.534327169496273,24.345224559749028,13004.350306377088,64.19407949274157,13.693324842424106,21.198484530754765,14.667682341948664,14.634587777614032,0.5385152838427948,0.7592116538131962,0.6875997871208089,0.5762195121951219,0.1089978054133138,0.7231222385861561,0.9178470254957508,0.854389721627409,0.7702702702702703,0.128099173553719,0.4811083123425693,0.6904176904176904,0.6324362606232294,0.5196850393700787,0.1048888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774136376986,0.0042676992944611,0.0065538511484457,0.0086332981230194,0.0109795150714176,0.0132319561920465,0.0152372216276818,0.0174446497289903,0.0195310903070193,0.0217273387847837,0.0239444848758187,0.025905352540737,0.0280722680953017,0.0299169945006282,0.0321259875002578,0.0341581856692669,0.0358928183314186,0.0379066800800655,0.0398698720547119,0.0417621567565315,0.0561084366286901,0.0696656967616336,0.0830413895823281,0.095703289307647,0.108429033924937,0.1235113696456901,0.1373350027587963,0.1501293392520678,0.1625129525376291,0.1735936863325398,0.1872306498879503,0.2006301497417685,0.2136956781994493,0.2256422605821119,0.2368780423338693,0.2484310203357505,0.2592120846461531,0.2694894820456773,0.2789614226464405,0.2874734850656423,0.2957580109089646,0.3036679852999696,0.31172492212207,0.3183138139579533,0.3246985315569386,0.3307545190943303,0.3368517266421255,0.3425437590766644,0.3470827820582665,0.352504564578868,0.3539601955118684,0.3544316018868445,0.3550811658495924,0.355743879472693,0.3561821543600143,0.3550346821698272,0.3558833826665393,0.3568305920781299,0.3575797141286421,0.3600007189589474,0.3612567419756346,0.3633791591950587,0.3651426882809861,0.3660527087043758,0.3658056520788278,0.3661875607641169,0.3655588252264728,0.3686515997968512,0.3699110654430783,0.370719622807368,0.3712149018168471,0.3738678385765582,0.3758896797153025,0.379071379071379,0.3844541817489045,0.3879682997118155,0.3864201367308887,0.3877849822212926,0.386299831555306,0.3757836990595611,0.0,2.5192916267647107,59.52712155232856,217.08406628595384,334.20483056581463,fqhc6_80Compliance_baseline_low_initial_treat_cost,61 -100000,95726,41422,390.2701460418277,7051,72.43591082882394,5517,56.96466999561248,2231,22.877797045734702,77.40440741590693,79.76372797384832,63.3594678928421,65.10016056014442,77.13443488686013,79.49272399558957,63.26027840752664,65.00323428799359,0.2699725290467967,271.0039782587472,0.0991894853154633,96.9262721508244,90.72206,63.47229659104836,94772.64275118567,66306.224631812,235.00483,144.07695835132486,244758.11169379269,149771.82683941798,269.19769,128.13740852997438,276970.46779349394,130620.86732055954,3642.18039,1633.4358449130625,3763805.580511042,1665541.0086169872,1337.34386,587.899744603561,1376235.0563065414,593425.6563436761,2194.98672,916.7146960820636,2252685.999623927,922983.9697477858,0.37928,100000,0,412373,4307.847397781167,0,0.0,0,0.0,19646,204.531684181936,0,0.0,25144,258.4146417901093,2036543,0,72999,0,0,3685,0,0,40,0.4074128241021248,0,0.0,0,0.0,0,0.0,0.07051,0.1859048723897911,0.3164090199971635,0.02231,0.3096138266270591,0.6903861733729408,25.107401269992398,4.57890277856702,0.323726663041508,0.2042776871488127,0.2417980786659416,0.2301975711437375,11.046416839523324,5.483965095464407,23.64327331672139,12869.075613721128,62.02949391025253,13.29478942413014,20.06390128139705,14.695394138534173,13.975409066191178,0.5530179445350734,0.7817213842058562,0.6898096304591266,0.5869565217391305,0.1220472440944882,0.7050147492625368,0.9355742296918768,0.837037037037037,0.7300613496932515,0.167910447761194,0.5034847392453737,0.7103896103896103,0.6466328747284577,0.5406746031746031,0.1097804391217564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043780086141373,0.0063809929596039,0.0086223531203981,0.0107266682256768,0.0128664495114006,0.0149910828025477,0.017274981378121,0.0191883276115743,0.0212330519314402,0.0233061052976806,0.0253815442406576,0.0272023521913005,0.0292415128543177,0.0311916382058875,0.033430503008125,0.0354687046932604,0.0375726141078838,0.0394296522624763,0.0414644307884595,0.0564093462237163,0.0694328170782754,0.0824041537735354,0.0954088123048456,0.1078072792048317,0.1228085016389975,0.1364933535608576,0.1486713792956606,0.1607713263180385,0.1720532727116754,0.1861572094726299,0.19889628307093,0.2108074007200583,0.2227313488331401,0.2333821150735577,0.2451854394843796,0.255930463502265,0.2658270549870685,0.2754752506692073,0.2844778238270785,0.2928842241538746,0.3011000046709328,0.3084709328419909,0.3150943621738559,0.3220521768633296,0.3278214900417998,0.3338998300509847,0.3398364070517705,0.3452442491599896,0.34871565310126,0.3501390400193447,0.3504848767890992,0.351084923570193,0.3515938266262801,0.3523114788126797,0.3520064843702208,0.3517824085061945,0.3534571808030956,0.3551854758898406,0.3565733854138798,0.3570651970157087,0.3575815206624668,0.3578889960985023,0.3581779149335838,0.3593659803732922,0.3608753558091557,0.3619506081408266,0.3639823843976093,0.3661451924767094,0.3691659378230102,0.3719298245614035,0.3743674426037394,0.3789845029608164,0.380847173548682,0.3796957175056348,0.3816568047337278,0.3794271635355713,0.3843025620170801,0.3820067264573991,0.3843700159489633,0.0,2.59282039389722,59.451472351894616,211.34262073235823,311.33056377403614,fqhc6_80Compliance_baseline_low_initial_treat_cost,62 -100000,95744,41544,390.3952205882353,7202,74.10386029411765,5619,58.06107954545455,2315,23.782169117647054,77.33232137485312,79.70035451790459,63.31916690730778,65.07211911308818,77.04375157316424,79.40995325550202,63.21314970912408,64.96806517940065,0.2885698016888796,290.40126240256825,0.1060171981837072,104.05393368752414,89.04698,62.445186723596855,93005.05514705884,65220.78243601358,234.92461,143.50744672441596,244750.91911764708,149271.37696549747,268.63823,128.13195065185428,276970.0451203208,130972.6672221372,3728.82391,1677.7088852001204,3857233.810995989,1715032.2060959346,1362.33584,593.6247100352359,1407364.0750334226,604483.241096071,2285.85782,949.8533238907896,2350929.624832888,961107.5698171732,0.38115,100000,0,404759,4227.502506684492,0,0.0,0,0.0,19638,204.46189839572196,0,0.0,25150,258.9822860962567,2041853,0,73244,0,0,3493,0,0,36,0.3760026737967914,0,0.0,1,0.0104445187165775,0,0.0,0.07202,0.1889544798635707,0.3214384893085254,0.02315,0.3205094189440169,0.679490581055983,25.245220689330957,4.564364804605584,0.3212315358604733,0.2046627513792489,0.2361630183306638,0.2379426944296138,11.152096160574898,5.572819696644278,24.566344276721217,13037.945764453809,63.26236123757064,13.37773643550134,20.35953178647324,14.86085830104232,14.664234714553755,0.5445808862786973,0.7643478260869565,0.6930747922437673,0.5772418990203466,0.1226626776364996,0.6935832732516222,0.9415204678362572,0.8373626373626374,0.697452229299363,0.144927536231884,0.4957466918714556,0.6893564356435643,0.6444444444444445,0.5399802566633761,0.1168708765315739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046049762143849,0.0066607099342051,0.0087913651516383,0.0109668755595344,0.0130703639938468,0.0153075793424165,0.0174274367272764,0.0195286539542968,0.021590909090909,0.0239376697934286,0.0262514886452301,0.0284121875224942,0.0304347378286797,0.0324274689447402,0.0345836218747093,0.036635119183217,0.0386877898471785,0.0405100651611361,0.0426604453517195,0.0570187800778762,0.0712013727582815,0.0845473710707655,0.0976604805215288,0.110037958667229,0.1251414730117092,0.1378746883123773,0.1510590739755189,0.1629501473792131,0.1738561671009318,0.1878783309278128,0.2019997619331032,0.2144170410905253,0.2269430618607449,0.2377944089808496,0.2489727203251852,0.2600629562654879,0.2694567639973885,0.278628597377533,0.2872022274930391,0.2952522083424986,0.3033112117700762,0.3109061634267042,0.3179823509663805,0.3244005298914695,0.331092913696569,0.3370776667418038,0.3432727550397068,0.3486554785200544,0.3537356587407417,0.3546817942948001,0.3547107438016529,0.3557219191022008,0.3568587750379637,0.3570525125366427,0.357029991562476,0.356330420969023,0.3566246030832003,0.357884473940783,0.3585243553008596,0.3600775777660616,0.3618044515103338,0.3627515011060782,0.364028971163795,0.3650582282158681,0.3669760855884204,0.3673013600572655,0.3685997081403464,0.371324440041046,0.373293172690763,0.3758959750045947,0.3769599655153833,0.378279790093434,0.3791743970315399,0.3812416935636985,0.3839285714285714,0.3921177733476461,0.3949767065019242,0.3887969094922737,0.388221619527315,0.0,2.4085274044079545,60.9613927024632,209.00405375594252,326.40024322670325,fqhc6_80Compliance_baseline_low_initial_treat_cost,63 -100000,95724,41733,391.4796707199866,7090,72.75082528937361,5529,57.164347499059794,2241,23.01408215285613,77.41699606751023,79.77154728925119,63.36600846061516,65.10116089334235,77.13402197563872,79.48833395268484,63.26237745207084,65.00004610491698,0.2829740918715089,283.21333656634806,0.1036310085443261,101.11478842537736,89.6038,62.793298105542256,93606.41009569178,65598.28058328346,236.11361,144.1776464667039,246027.73599097403,149989.73971081685,270.80137,129.1617917214031,279488.6862228908,132297.08704871632,3674.159,1650.437979379141,3801354.6863900376,1687744.4868077096,1344.9796,592.3224222411532,1386084.1063892024,600536.796112912,2218.09604,924.177386571224,2279986.6073294054,934353.9829182712,0.38111,100000,0,407290,4254.836822531444,0,0.0,0,0.0,19686,205.0165057874723,0,0.0,25197,259.8094521750031,2040097,0,73156,0,0,3686,0,0,51,0.5327817475241319,0,0.0,0,0.0,0,0.0,0.0709,0.1860355278003726,0.3160789844851904,0.02241,0.3127433865986303,0.6872566134013697,25.286899466044478,4.609330475968188,0.3266413456321215,0.1989509857117019,0.235485621269669,0.2389220473865075,11.3545163386095,5.66254816785851,23.735978769821365,13039.130029018266,61.75623053799097,12.72107229833903,20.18287936221141,14.38128388724368,14.470994990196852,0.5451257008500633,0.76,0.6971207087486158,0.5921658986175116,0.1120363361090083,0.7170513775130305,0.9202279202279202,0.8705882352941177,0.7835051546391752,0.1521739130434782,0.4899665551839465,0.684913217623498,0.6437364228819696,0.5370919881305638,0.1014354066985645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019534808396931,0.0042751927382508,0.0066232554365465,0.0088648341270727,0.0110216365706848,0.0134062175532889,0.0156562155991356,0.0181567666870789,0.0204079547080344,0.02274261862378,0.0247266541650014,0.0268583802867493,0.0290507617344106,0.0312551491184709,0.0332693736073285,0.0352371012575821,0.0373334437668885,0.0395258146819058,0.0417476434458174,0.0435552592376527,0.0584513218894875,0.0728029882916723,0.0855539236256819,0.098094276519215,0.1098466471196236,0.1247369144694397,0.1383761880515953,0.1507977902434351,0.1635631336602459,0.174620367192862,0.1885788742556238,0.2021055592824219,0.2146739130434782,0.2262349522623495,0.2367677921963761,0.2473886872621049,0.25868123293016,0.2686241667322414,0.2781778387634524,0.286819753199478,0.2951706910907577,0.3033090598810094,0.3105164829967365,0.3174399808417649,0.3239149431983688,0.3301798472530179,0.3359429714857428,0.3414171986672432,0.3468714418797226,0.3522854692962205,0.3525705746940754,0.3534073554298922,0.3539584772160284,0.3553191489361702,0.3555965541354838,0.3554192856047831,0.3564531957326917,0.3573408110723012,0.3583885059040338,0.3593220943080158,0.3615034893075642,0.3630910095508722,0.3641279289097539,0.3644442459697227,0.3645567793756914,0.3669719982254234,0.3690829246036272,0.3706148623161071,0.3728617092275809,0.3745881792561426,0.3750227148827912,0.377997554102196,0.3802116135533442,0.3812442537542139,0.3817052512704686,0.3831245568423541,0.3848271642704191,0.3869215291750503,0.3844686648501362,0.3813303099017385,0.0,2.220406317257196,58.88442182256223,201.8464861128299,325.1233058044026,fqhc6_80Compliance_baseline_low_initial_treat_cost,64 -100000,95702,41527,390.5978976405927,7313,75.4007230778876,5688,58.90159035338864,2289,23.56272596183988,77.3508434030137,79.74282075947853,63.31502979323547,65.08359818423399,77.07340905855028,79.4629926793311,63.21460821402248,64.9850317999691,0.2774343444634155,279.8280801474391,0.1004215792129841,98.56638426489894,90.08208,63.10122367539636,94127.68803159808,65935.11491441805,237.17229,144.2274871395951,247277.99836994003,150159.56384575614,269.95477,128.05960143641542,279286.75471776974,131692.6358805471,3769.05969,1675.3760907219018,3904184.42665775,1716511.944739514,1368.25051,582.7710842176739,1415373.8793337652,594865.214808776,2264.96546,928.3891384176676,2332767.005914192,940721.380822038,0.37918,100000,0,409464,4278.53127416355,0,0.0,0,0.0,19780,206.1189943783829,0,0.0,25199,260.4438778708909,2035971,0,73054,0,0,3523,0,0,41,0.4284131993061796,0,0.0,1,0.0104491024221019,0,0.0,0.07313,0.192863547655467,0.3130042390263913,0.02289,0.3153435014991526,0.6846564985008473,25.42288506865145,4.609567320699118,0.3238396624472573,0.2041139240506329,0.2329465541490858,0.2390998593530239,11.067752819818567,5.434633061405997,24.07020093541257,12995.510302393554,63.62611615125286,13.562012522710292,20.663988509795963,14.578829138703046,14.821285980043555,0.5453586497890295,0.788975021533161,0.6845819761129207,0.5894339622641509,0.1058823529411764,0.7085137085137085,0.9251336898395722,0.8530701754385965,0.7414965986394558,0.1106870229007633,0.4927940492794049,0.7242693773824651,0.6291486291486291,0.5460717749757517,0.104735883424408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717120658042,0.0048270476924481,0.0070247388563481,0.0093605171152126,0.0113939245966347,0.0136509036083209,0.0155158167481051,0.0178115489102681,0.0197788936500956,0.0219680055713729,0.0244180084093939,0.0266839218586306,0.0287489328437271,0.0306520910392861,0.0326539037102017,0.0346937931604846,0.0366241543291097,0.0388615557077909,0.0407135798616528,0.0424150188152147,0.0563929015343799,0.0704181108051224,0.0836596093085748,0.0965776987575352,0.1090680844779205,0.1241668253665968,0.1375587801331111,0.150208193561441,0.1618209803963486,0.1731786622597572,0.1872231264214191,0.200653870719799,0.2140066812478917,0.2254601562670985,0.2362835755173932,0.247189267102783,0.2575887823339622,0.2678585501502989,0.2767813532946375,0.2856585992226821,0.293883317507006,0.3022986217637209,0.3104678168546781,0.3169962086672745,0.3232776440261666,0.3305957357601766,0.3363746730246936,0.3416701668639505,0.3476926662523306,0.3525503869825924,0.3529610053395178,0.3532401349769299,0.3542685591058366,0.3549837368991688,0.3560051657339647,0.3559555514739645,0.3552758647985435,0.3559644774208375,0.357442079165598,0.3588360336542756,0.3602408734476419,0.3611994547932758,0.3635393564045696,0.3639918661035508,0.365457693972774,0.3667092668422837,0.3678167452964247,0.3690506090669346,0.3721183199410505,0.3733728981206726,0.3753632401017072,0.3761170212765957,0.3776921619402513,0.3787576687116564,0.3805452645578037,0.3789410348977136,0.3841397433915597,0.3904511430305482,0.386326194398682,0.3806350450803606,0.0,1.9918495435995331,61.59224002072704,206.9978812472708,333.60908895919863,fqhc6_80Compliance_baseline_low_initial_treat_cost,65 -100000,95733,41607,391.2130613268152,7095,73.07824887969666,5500,56.95005901831134,2124,21.915118088851283,77.26691653433518,79.6268309087687,63.2951211478972,65.03931005506519,76.99952896309684,79.35648881827109,63.19837560057854,64.94323930206546,0.2673875712383449,270.34209049760705,0.0967455473186618,96.07075299972225,89.15544,62.5030316498906,93129.265770424,65288.90941461209,235.74331,144.6412211704594,245777.98669215423,150615.3062898472,273.19677,130.7711598862344,281662.947990766,133773.24439420615,3611.19233,1614.5926453623852,3742831.447881086,1657239.557271145,1327.67913,574.2408889550695,1375052.1345826413,588031.7330022769,2099.56,868.002902645766,2168485.308096477,886830.295421578,0.37889,100000,0,405252,4233.148444110181,0,0.0,0,0.0,19687,205.1434719480221,0,0.0,25457,262.3442282180648,2035003,0,73078,0,0,3555,0,0,45,0.4596116281741927,0,0.0,0,0.0,0,0.0,0.07095,0.1872575153738552,0.2993657505285412,0.02124,0.3186622073578595,0.6813377926421404,25.4003744819126,4.507302531355103,0.3383636363636363,0.2101818181818182,0.2172727272727272,0.2341818181818181,11.03510654159696,5.52785720068903,22.672631069812255,12928.81160983897,61.98561228992955,13.524810865189,20.97463804534109,13.403025479515383,14.08313789988406,0.5576363636363636,0.777681660899654,0.6974744760881246,0.606694560669456,0.1125776397515528,0.7297698589458055,0.9102902374670184,0.8869936034115139,0.75,0.1234567901234567,0.5018059234288467,0.712998712998713,0.6336206896551724,0.5676251331203408,0.1100478468899521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674836932301,0.0043394944691723,0.0064942971952753,0.0086752471023252,0.0106889327339666,0.0127987130013338,0.0150772210612161,0.0171190575841406,0.019392167486174,0.0215669014084507,0.023525673223786,0.0258613609297359,0.0279291693231598,0.0301067073170731,0.0321991581379993,0.0343490934650927,0.0367835136954383,0.0388234683820096,0.0407792018793983,0.0424789272429853,0.0572302680352089,0.0713612861359402,0.0840503672612801,0.0967310909339589,0.1087256960195803,0.1247354609328705,0.1383728583257255,0.1511437212472312,0.1635624933176521,0.1748202211012128,0.1887099555900487,0.2011592632719393,0.2125326655052264,0.2235787491240364,0.2339525352019567,0.2452608213096559,0.2554197739291823,0.2653357818009756,0.2744146948234144,0.2831873624358034,0.2913705701256915,0.2989793290727345,0.3063203893843038,0.313160514856711,0.3205165620895958,0.3275385564466379,0.3333625855627711,0.3398327980832951,0.3458408503900216,0.3510174899707397,0.3520065985180377,0.3525972410361319,0.3530419031176146,0.353978706738998,0.3547299816557546,0.3543336153195416,0.3546749423092226,0.3556593805718814,0.3570323778098577,0.3585881254600621,0.3594394530146352,0.3608946322067594,0.3616409996408729,0.3611918768454031,0.3622614943923872,0.3636411470665614,0.3639925104421719,0.3668004075913896,0.3692181305139836,0.3705009727626459,0.3722590515043345,0.3750675748729592,0.380219639892734,0.3827511924911524,0.3867996201329535,0.3894322519083969,0.3973469072960049,0.394570320473566,0.3910505836575875,0.3918971562134787,0.0,1.9977057754164824,59.63064513116855,207.3403662130884,318.3942523647473,fqhc6_80Compliance_baseline_low_initial_treat_cost,66 -100000,95713,41220,388.7664162652931,7178,73.97114289594936,5553,57.54704167667924,2194,22.640602634960768,77.288290147924,79.65662630344542,63.294707477804174,65.0435067523578,77.01773945803929,79.38186828998742,63.19513388836128,64.9437084833784,0.2705506898847147,274.75801345799766,0.0995735894428904,99.7982689793986,89.80004,62.94767201558261,93822.1976116097,65767.10793265555,235.19581,143.7897300594382,245286.76355354028,149786.59122526535,268.25379,128.09075243542836,276668.1955429252,131140.70051105047,3643.2693,1646.4711204037978,3778975.583254104,1692740.5058913613,1302.83809,569.2059661732231,1350233.082235433,583744.7639245926,2156.3322,904.6813634977711,2227782.5582731706,925500.2227968331,0.37649,100000,0,408182,4264.64534598226,0,0.0,0,0.0,19677,205.10275511163584,0,0.0,25012,257.71838726191845,2032688,0,72989,0,0,3578,0,0,43,0.4492597661759636,0,0.0,0,0.0,0,0.0,0.07178,0.1906557943106058,0.3056561716355531,0.02194,0.3195698353690919,0.6804301646309081,25.324647693734256,4.402479709119169,0.3351341617143886,0.2047541869259859,0.2326670268323429,0.2274446245272825,10.94826810126034,5.663757763983395,23.593153220570795,12907.185387444752,62.647352624669296,13.375688315886135,21.003182408625783,14.347164776654608,13.921317123502751,0.5515937331172339,0.7748460861917327,0.6980118216012896,0.5735294117647058,0.11243072050673,0.7108603667136812,0.9162011173184358,0.8747346072186837,0.7180327868852459,0.1725352112676056,0.4969770253929867,0.7098844672657253,0.6381294964028777,0.5288753799392097,0.0949948927477017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0041666244259486,0.0063116450866582,0.008634876775229,0.0109124562688145,0.0129825168772719,0.0151505882832731,0.0171693972337059,0.0193909781353177,0.021665046308141,0.0237255826347182,0.0255486440434398,0.0275133145524459,0.0296492348252353,0.031520752537338,0.0332975073374395,0.0352853474695601,0.0371508032045162,0.039033573241253,0.0411751219308849,0.0563933330548477,0.070090767281902,0.0837128764823171,0.0964612292572053,0.1082963901203293,0.1238341255809521,0.138042705004194,0.1504026931435633,0.161746624041741,0.1735778555629523,0.1879036866906048,0.2018329740328678,0.2135568116226135,0.2248864071823507,0.2356815578465063,0.2464938753772412,0.2567256300735738,0.2666178045892766,0.2754568002366487,0.2845115718141618,0.2924483426728388,0.2999225642951004,0.3070584743247254,0.3147587102358797,0.322108060014382,0.3280809380101914,0.3336433913644648,0.3391226613881616,0.3445733309058753,0.3490667267211573,0.3500763090720006,0.3504780061892131,0.3515323094344964,0.3529292196007259,0.3535235876528829,0.3529520323577811,0.3526953149831542,0.3540839361334014,0.3557660951204023,0.3569058593539824,0.3577601626781646,0.3591086771037958,0.360022738278207,0.3613831432221052,0.3634330511735282,0.3641314260402824,0.3650992923989957,0.3670902039915503,0.3697935020085982,0.3719733535442179,0.373066507550374,0.3761777301927195,0.3755533071961553,0.3778372181887657,0.3757598428878705,0.3748231966053748,0.3732383694499167,0.3775817124523761,0.3818770226537217,0.3787537537537537,0.0,1.822700195726888,63.1856606186909,206.3421945089813,314.23488278485075,fqhc6_80Compliance_baseline_low_initial_treat_cost,67 -100000,95831,41750,390.7399484509188,7311,75.09052394319166,5687,58.78056161367407,2314,23.72927340839603,77.36488025655099,79.67890124604834,63.35773544642036,65.07073333181214,77.08033336490482,79.39440501578902,63.25220238035797,64.96757444750266,0.2845468916461726,284.4962302593217,0.1055330660623852,103.1588843094795,90.32474,63.25443256657384,94254.1974935042,66006.23239512667,236.79816,144.5061883584534,246565.95464933055,150258.9437222333,275.40106,131.6432174801856,284398.0966493097,134989.68261125698,3731.87115,1681.2345260322627,3860995.377278751,1721148.53860678,1381.5042,600.6493956003771,1428960.1068547757,614135.2543544128,2272.82948,953.3562435024648,2334092.7257359307,963890.4662390328,0.38109,100000,0,410567,4284.28170425019,0,0.0,0,0.0,19720,205.204996295562,0,0.0,25592,263.9438177625194,2037054,0,73142,0,0,3580,0,0,60,0.6261022007492356,0,0.0,0,0.0,0,0.0,0.07311,0.1918444461938125,0.3165093694433046,0.02314,0.321345105167489,0.6786548948325111,25.254930098617464,4.59641662813636,0.3363812203270617,0.2055565324424125,0.2263056092843327,0.231756637946193,11.138292252186488,5.638913378320522,24.79388678033709,13012.98520729634,64.15189782092322,13.605478980876294,21.59850791385148,14.458765453903766,14.489145472291664,0.5415860735009671,0.7502138579982891,0.6759017250392054,0.5765345765345765,0.1274658573596358,0.690677966101695,0.9166666666666666,0.8299180327868853,0.7114093959731543,0.1148148148148148,0.4921564036525404,0.6761433868974042,0.6231578947368421,0.5358948432760364,0.1307251908396946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0047447179528772,0.0069506453445896,0.0091821395197659,0.0114499547492907,0.0137763206125524,0.0159330465452914,0.0180390795679604,0.0201688747137716,0.0222938737908797,0.0246177181978436,0.0268875137259731,0.0289622709380363,0.0312779819063204,0.0333457026820871,0.035614741406008,0.0377426795337243,0.040013676347172,0.0421551017017786,0.0441431974947721,0.0589394855962786,0.0728926051737653,0.0863571608145478,0.0994413642473118,0.1113638517676049,0.1268597615703832,0.1406097716004915,0.1523472381681337,0.1642182749239878,0.1750856898029134,0.1881112485878745,0.20135788187725,0.2143423697506383,0.2253667274693347,0.2365031214279433,0.247552896154314,0.2588800249576611,0.2686743198616134,0.278006230529595,0.2864103766570968,0.2951853863129556,0.302855807977574,0.3108005863715893,0.317403324835733,0.3238345115759298,0.3292834699032715,0.3349727186264203,0.3404783106475003,0.3459850044675809,0.3503957783641161,0.3506978122642526,0.3511231699422921,0.3523176377597109,0.3534352913914957,0.3539495848426576,0.353694142233696,0.352372471695713,0.3530333778811728,0.354871407219063,0.3560451003626701,0.3566909056568136,0.3569848324796205,0.3581906832429238,0.3597431854021176,0.360091798526392,0.3623332721888839,0.3641119464852348,0.3661228103459179,0.3693569484215364,0.3696610305312925,0.370489839177918,0.3734194242668819,0.372192718664022,0.37678916827853,0.3808292636215646,0.3814383479409293,0.3951537744641193,0.3992568125516102,0.4068831529281154,0.4126119112495134,0.0,2.2341222719394414,62.2940847432251,217.11261147264864,322.5767158432278,fqhc6_80Compliance_baseline_low_initial_treat_cost,68 -100000,95643,41405,389.9292159384377,7154,73.6802484238261,5617,58.19558148531518,2308,23.796827786664995,77.2563444549925,79.66661453993962,63.27473565930678,65.05561687503216,76.97250615793045,79.38108718336754,63.17243487681616,64.95522234837493,0.2838382970620472,285.52735657207506,0.102300782490623,100.39452665722592,89.38358,62.62952054497612,93455.4332256412,65482.59730976247,235.10619,143.8783457754161,245319.70975398092,149935.9971722093,269.88329,128.83558001369602,278769.925661052,132047.98936589525,3718.49127,1656.93209361355,3856066.288175821,1700593.1470296297,1325.38008,576.757233895725,1373983.2815783694,591257.0537265926,2276.71634,937.0773310185886,2349406.668548665,952798.219022155,0.37958,100000,0,406289,4247.974237529144,0,0.0,0,0.0,19707,205.5142561400207,0,0.0,25206,260.2176845142875,2033536,0,73070,0,0,3485,0,0,44,0.4495885741768869,0,0.0,1,0.0104555482366717,0,0.0,0.07154,0.1884714684651456,0.3226167179200447,0.02308,0.3141721854304636,0.6858278145695365,25.226565985825275,4.665267906141351,0.3257966886238205,0.2104326152750578,0.2255652483532134,0.2382054477479081,11.135003755100913,5.351007274976595,24.543841851044192,13000.153383351304,63.36042334623591,14.033726487571483,20.60759476941577,13.978479622595936,14.740622466652724,0.5426384190849208,0.7715736040609137,0.694535519125683,0.5730071033938438,0.1038863976083707,0.7167034584253127,0.9065934065934066,0.8605150214592274,0.7509157509157509,0.1484375,0.4870831376232973,0.7114914425427873,0.6378299120234604,0.5241448692152918,0.0933456561922366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092115258013,0.0047231484953832,0.0067384487360334,0.0091127975374112,0.0111608505443076,0.013385898963968,0.0156479516892443,0.017726511095672,0.0197921567825215,0.0217694183211424,0.0237132654736496,0.0259896411394746,0.0280737515056054,0.029929994948089,0.0318158810829795,0.0339289964094657,0.0360748864885037,0.0382377994307439,0.040197710718002,0.0419834986596572,0.056529827348355,0.0701070672784796,0.0832755905511811,0.0961473684210526,0.1087532316783622,0.1247526428851099,0.1381403691243114,0.1513609064190484,0.1635868113076471,0.1742928274026698,0.1887364029366422,0.201718272626812,0.2139612900414983,0.225651983344291,0.2363884998400917,0.2472528692254756,0.2583239198756305,0.2678319865661381,0.2769550739296957,0.2859699232595753,0.2941824464569394,0.301891438689478,0.309515899383009,0.3159759334206007,0.3222450943373244,0.3290285106961454,0.3355290397862009,0.3414814625806945,0.3470394950452615,0.3528011111846021,0.3540771952570024,0.3553778367104518,0.3557037477523397,0.3563811239611786,0.3572464526547151,0.3565995525727069,0.3566773427665439,0.3572538260668363,0.3585286357286978,0.3599026851684988,0.3610974456007568,0.362716734172669,0.3638054968287526,0.3651829515279715,0.3654633059732209,0.3672328249284645,0.3679606342263532,0.3703280302308596,0.3729508196721312,0.3742404860889031,0.3759357060849598,0.377632495579015,0.3791608213238107,0.3817332005210329,0.3787198203256597,0.3816304734781061,0.3835512313773183,0.3826685563879328,0.3820379016753639,0.3824106792304672,0.0,2.1126345112196607,60.33263263792799,211.8539181477496,328.007952823676,fqhc6_80Compliance_baseline_low_initial_treat_cost,69 -100000,95685,41396,388.7652192088624,7245,74.38992527564403,5645,58.32680148403616,2313,23.723676647332397,77.32722884548278,79.70392988085939,63.32110870231941,65.07575080472522,77.04741487223586,79.42503961315742,63.217895142475314,64.97564427220604,0.2798139732469167,278.8902677019678,0.1032135598441001,100.10653251917743,89.48698,62.69433345443756,93522.47478706171,65521.59006577578,237.67546,144.85194844624974,247721.49239692744,150713.29091151294,268.34342,127.41309905251174,276323.86476459214,129949.80623072688,3744.15561,1681.445218269946,3870634.059674975,1715183.501166397,1373.44827,593.8967706893084,1418263.3328107854,603669.4769961103,2280.99076,952.7837529408032,2342421.633484872,962384.8822153104,0.37936,100000,0,406759,4251.021581230078,0,0.0,0,0.0,19851,206.78267231018447,0,0.0,25068,257.8147044991378,2038593,0,73177,0,0,3506,0,0,45,0.4702931493964571,0,0.0,0,0.0,0,0.0,0.07245,0.1909795444959932,0.3192546583850931,0.02313,0.3168058455114823,0.6831941544885177,25.25100048903224,4.538341881472887,0.3231178033658105,0.2014171833480956,0.2380868024800708,0.237378210806023,10.960589760149968,5.50005082445428,24.7052713049372,13017.067979134998,63.70823400420246,13.339049221889676,20.72721318902005,14.854710753492713,14.787260839800004,0.5383525243578388,0.7704485488126649,0.6962719298245614,0.5587797619047619,0.1059701492537313,0.6909747292418773,0.9052924791086352,0.8347826086956521,0.7167235494880546,0.1391941391941392,0.4887323943661972,0.7082262210796915,0.6495601173020528,0.5147478591817317,0.0974695407685098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023690444853908,0.0045707452037579,0.00687836055595,0.0089988522908477,0.0110025320059791,0.0133994481382301,0.0156323292476495,0.0176278941509299,0.0201255803489252,0.0221195891491126,0.0242436673161727,0.0264776870538694,0.0287794943531299,0.0308809891808346,0.0329012549537648,0.0350472605431342,0.0371199171199171,0.0390253524636116,0.0410447373074402,0.0429869913275517,0.0573568429189211,0.0718195614631848,0.0845562397071318,0.0969184315458342,0.1089043118724158,0.1240902166553825,0.1380829070532549,0.1507161492998243,0.1625991067039942,0.1754052807192593,0.1901966065176407,0.2039059878100269,0.2161965165740146,0.2272762079791714,0.2385905818638135,0.2498697959952572,0.2604735273433575,0.2701148778649144,0.2799368913305032,0.2890156853309502,0.2965793557053197,0.3040618049865387,0.3117139947422021,0.3189530101557535,0.3245740968177341,0.3307994175284448,0.3365289421908092,0.3407048626601236,0.3451573143042491,0.3503511579615644,0.351146894334423,0.351936894074166,0.3529162547662759,0.3532136653155761,0.3539993144458189,0.3535159255270041,0.3530916776582389,0.3547962774178697,0.3549772439516819,0.3552904193755805,0.3558921675227775,0.3571838454993371,0.3579091004513487,0.3588019011747825,0.360349910589145,0.3614366234106698,0.3636598233742402,0.3661700041124925,0.3685342547865026,0.3693870206725578,0.3727394045372969,0.3744964279959177,0.375612238407226,0.3764378908360997,0.3837920489296636,0.3859543817527011,0.3844961240310077,0.3848366550236285,0.3800841514726508,0.3792697290930506,0.0,2.61523974072634,60.9084604281361,215.33679917808533,323.09566515649925,fqhc6_80Compliance_baseline_low_initial_treat_cost,70 -100000,95789,41570,390.305776237355,7168,73.68278194782282,5595,57.929407343223126,2277,23.499566756099345,77.38146625236273,79.70493149555269,63.35451413110488,65.06799539823284,77.09977023143014,79.41930518251648,63.25322722383804,64.96696345322184,0.2816960209325856,285.6263130362038,0.1012869072668394,101.03194501100177,89.74592,62.854413933832085,93691.0292413534,65617.35370014524,235.21076,143.88588469462096,245085.8240507783,149747.14658637316,271.56403,129.58369426515958,280344.7264299659,132835.8276740386,3700.02828,1657.4798745782923,3835517.6064057457,1703413.1950172598,1375.04257,601.4681610480632,1424138.721565107,616593.793004641,2243.05304,927.8979451387996,2317655.8895071456,948910.0020707662,0.38001,100000,0,407936,4258.683147334245,0,0.0,0,0.0,19647,204.6163964547077,0,0.0,25311,261.02162043658456,2037285,0,73182,0,0,3581,0,0,52,0.5428598273288164,0,0.0,0,0.0,0,0.0,0.07168,0.1886266150890766,0.3176618303571428,0.02277,0.3236702127659574,0.6763297872340426,25.0791775916227,4.557369719051318,0.3354781054512958,0.2007149240393208,0.2307417336907953,0.233065236818588,11.13799207279007,5.695292551530853,24.28694707798685,12959.633052261552,63.13023618565767,13.110653085831238,21.154493362454968,14.373733130827604,14.491356606543835,0.5528150134048258,0.7684772929652716,0.7011188066062867,0.5848179705654531,0.1219325153374233,0.7058823529411765,0.910144927536232,0.8453389830508474,0.7560137457044673,0.1449814126394052,0.5028449502133713,0.705655526992288,0.6526690391459075,0.535,0.1159420289855072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919850960856,0.0045705136000648,0.0067051460220529,0.0087943780973271,0.0110832053850142,0.0132744263696887,0.0154415362035225,0.0176430371738487,0.0195545565999182,0.0215460795547552,0.0236138999303364,0.0259982763573685,0.0283638381616944,0.0305120339297111,0.032691732734002,0.0347509087904824,0.0366112358620404,0.0388255906777113,0.0408040305406949,0.0428331962476704,0.0576050091312288,0.0715474035553974,0.0846643524587585,0.097263830637108,0.1097477414798182,0.1251189745976014,0.1383797887234313,0.1506646657513543,0.1627348163653256,0.1736664951547894,0.1876910492099711,0.2008650519031141,0.2124668377332231,0.2238410885782415,0.2341497766334367,0.2457650591063693,0.2566944602573976,0.2669817158931083,0.2767817605849693,0.2853540274418551,0.2941653348157413,0.3020938239220554,0.3097257094130465,0.316574963138778,0.3227589726143902,0.3287071844995254,0.3347474595785153,0.3402290076335877,0.3461423813165022,0.3515101114103173,0.3519942885623072,0.3531192799438488,0.3534994570658995,0.3543293398426748,0.3549180327868853,0.35467866797739,0.3540427826142112,0.3548556775593399,0.3554361221415856,0.3561163937942375,0.3573666535337048,0.3585898551871488,0.3595248588637746,0.3614963421749472,0.3617508742312794,0.3629730365875984,0.3633271402029441,0.3642467610251237,0.3663530323853825,0.3687322705661432,0.3722209488883795,0.3748999946663822,0.3766233766233766,0.3786689029503697,0.381015662078785,0.3831385642737897,0.3852760736196319,0.3860361274609296,0.3868834389639019,0.3847641144624903,0.0,1.8619802952651152,61.2636414153669,215.2388065435429,316.9891567937218,fqhc6_80Compliance_baseline_low_initial_treat_cost,71 -100000,95757,41690,391.12545296949565,7195,73.81183621040759,5644,58.36649017826373,2358,24.238436876677422,77.31912755708531,79.66763503370976,63.32066847763053,65.05784747171971,77.0237201811619,79.37077831683887,63.21176324500775,64.95082551136389,0.2954073759234035,296.85671687089155,0.1089052326227815,107.0219603558229,90.8303,63.597438446379456,94854.99754587132,66415.44581219071,235.65584,144.1921754224509,245533.4544733022,150017.0279169678,269.13944,128.87687090161523,276716.8248796432,131322.6609286085,3754.95751,1697.1286288692186,3886352.861931765,1737341.4255555396,1366.35282,595.528187350345,1413766.4400513798,608786.5089239901,2327.3135,974.1539499472352,2395384.7760477043,987952.732899548,0.38155,100000,0,412865,4311.590797539605,0,0.0,0,0.0,19771,205.87528849065865,0,0.0,25034,257.24490115605124,2030713,0,72925,0,0,3625,0,0,45,0.4594964336810885,0,0.0,1,0.0104431007654792,0,0.0,0.07195,0.1885729262219892,0.3277275886031967,0.02358,0.3285545179534394,0.6714454820465605,25.21368676917349,4.572383234653613,0.3244153082919915,0.2055279943302622,0.2274982282069454,0.2425584691708008,10.919737449118433,5.364211891467028,25.180894949980274,13017.152453678476,63.69809688885584,13.600668929918358,20.686174354284606,14.263261025239409,15.14799257941347,0.5263997165131112,0.7620689655172413,0.6744948115783724,0.5482866043613707,0.1081081081081081,0.6885364095169431,0.9211267605633804,0.8344086021505376,0.6866197183098591,0.1590106007067137,0.4735729386892177,0.6919254658385093,0.6200585651537335,0.509,0.0948434622467771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207617292327,0.0044994375703037,0.0066961568118177,0.0090292307379796,0.0112782337208001,0.0135854898006986,0.0160591384144787,0.0181758771392394,0.0203267826833807,0.0225222919503281,0.0248636344994463,0.0271283204468677,0.0292078902441532,0.0313890720290093,0.0334296326867519,0.0353654881615526,0.0374852481417834,0.0395402871131026,0.0415835411471321,0.0434302616230628,0.0580142791532712,0.0711416556831733,0.0843175095970296,0.0968169342881478,0.108898470361273,0.1242320746936229,0.1381160972815884,0.1518817633351422,0.1637070337109846,0.1749324585102277,0.1883998664670852,0.2016494756096241,0.21420257378137,0.226120431330519,0.236467079706397,0.247100526170036,0.2575454738323079,0.2678515150150826,0.2770738242841247,0.2851217416213119,0.2940059072218683,0.3019183922046285,0.3104555797857211,0.3167867435158501,0.3234510204826755,0.3288613818577128,0.3348886213124624,0.3415561224489796,0.3474783150677816,0.3522991850989522,0.3526027952197691,0.3537941501103753,0.3547255731074373,0.3549281463202206,0.3561263760852054,0.3558396406374992,0.3554494828957836,0.3568411325985083,0.3591613334934715,0.3602629499245635,0.3620488062459925,0.3627834867126473,0.363219991979569,0.3631995668944982,0.3638214831155608,0.3652212784979883,0.3673803707429228,0.369233206590621,0.3706667610920293,0.3736118878325477,0.3735210492524993,0.3727331258718747,0.374490575649516,0.3753179680875665,0.3765355680411389,0.3813549232051434,0.3839876828329484,0.3890366128042544,0.3894150417827298,0.3970588235294117,0.0,2.282012290623052,61.05196538374022,215.56969924612235,323.5771092101847,fqhc6_80Compliance_baseline_low_initial_treat_cost,72 -100000,95676,41493,390.38003261005895,7133,73.1949496216397,5593,57.82014298256616,2274,23.4018980726619,77.34181859432726,79.72437983704361,63.3271521787835,65.08574832741016,77.06205774185489,79.44260639177601,63.22502712880706,64.98501216473893,0.2797608524723785,281.7734452676035,0.1021250499764363,100.73616267122532,90.61228,63.49287809435971,94707.1992976295,66362.18417360833,235.64409,144.11136640651404,245573.7384506041,149905.36031615746,274.74206,131.17722191683518,282495.06668338977,133582.4965835068,3723.47563,1675.074482663993,3854516.49316443,1713620.1875108285,1372.33182,589.134977995698,1420337.0124169071,601795.8732330576,2244.055,930.8344835332632,2311938.856139471,946439.3689193772,0.3783,100000,0,411874,4304.872695346795,0,0.0,0,0.0,19700,205.2343325389857,0,0.0,25634,263.2739663029391,2033204,0,72972,0,0,3519,0,0,40,0.4076257368619089,0,0.0,1,0.0104519419708181,0,0.0,0.07133,0.1885540576262225,0.3187999439226132,0.02274,0.3199573390214638,0.6800426609785362,25.14488065124924,4.541641740445206,0.3261219381369569,0.2059717504022885,0.2249240121580547,0.2429822993026998,11.107345152264063,5.599636620970436,24.116878335989476,12907.427322783524,63.06303500189566,13.62249415842784,20.451457074311765,14.170356961739047,14.818726807416986,0.5519399249061326,0.7907986111111112,0.6951754385964912,0.5985691573926868,0.1140544518027961,0.7256186317321689,0.9285714285714286,0.8620689655172413,0.7551020408163265,0.1422924901185771,0.495378051671012,0.7197368421052631,0.6429085673146149,0.5508298755186722,0.1075949367088607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594697775212,0.004571393818989,0.0069701612166837,0.0092319879750563,0.011591491438565,0.0137553962694469,0.0156152850401084,0.017578065187877,0.0195423093040607,0.0216708124763279,0.0239831021153116,0.0259533517516201,0.0279626752811185,0.0302955360455051,0.0321002435902729,0.0340098057469124,0.0359692846557995,0.0381249026631365,0.0401876742540884,0.0423677571360063,0.0570789850303467,0.0711690487409036,0.0840907659690589,0.0966570914485937,0.1085232067510548,0.1242384498223049,0.1379427431506122,0.1511635333943665,0.1634096567050954,0.1746814808459525,0.1887525980809201,0.2023947302953933,0.2147261950078851,0.2257376816189091,0.2359328074981023,0.2468463080484212,0.2579802669762043,0.2676370017097093,0.2761504851614367,0.2842662268494657,0.2923703326701522,0.3003731125068716,0.3074666414308697,0.313841581073145,0.3202123652974694,0.3263726239491137,0.3333291601983074,0.3378462714131058,0.3435048177302849,0.3491497205375193,0.3506148535677687,0.3510541546093427,0.3511815692142635,0.3515829702224989,0.3520279824365557,0.3521661010181673,0.3513959390862944,0.3516172551084202,0.3520120603703767,0.3520453813392505,0.3531872584699658,0.3542995207351369,0.3558688207735456,0.3572695234460931,0.3584450078473983,0.3600640067154587,0.3606091894682499,0.3633974095069195,0.3647158909645174,0.3654246794871795,0.3660656793303284,0.3659948542024013,0.3723619360545937,0.3774018219398301,0.3810240963855422,0.3840813883901855,0.3825027002005863,0.3897477624084621,0.3873848730114429,0.3947266382318728,0.0,2.4486568358163274,60.19049315917455,213.33091247559437,320.69898578984345,fqhc6_80Compliance_baseline_low_initial_treat_cost,73 -100000,95682,41577,391.3797788507765,7226,74.40270897347463,5625,58.23456867540394,2298,23.724420476160613,77.38307130315455,79.76003397066378,63.34642469116329,65.0977364850892,77.10042863669673,79.47376460814316,63.24437227191506,64.99627851465824,0.2826426664578179,286.2693625206276,0.1020524192482312,101.45797043095683,89.76572,62.890275960515446,93816.72623900004,65728.42954841605,236.86505,144.82937976856886,247000.7629439184,150811.64667185978,267.69053,127.2922124673634,276107.8154720846,130285.6251416808,3707.54726,1655.963643699847,3841975.596245898,1697806.770029731,1351.04481,586.5956356558804,1398385.7778892582,599438.2351572827,2263.8995,932.0460319074324,2339209.7573211263,952269.1772987169,0.3804,100000,0,408026,4264.396647227273,0,0.0,0,0.0,19759,205.91124767458876,0,0.0,25075,258.32444973976294,2037294,0,73198,0,0,3576,0,0,43,0.4494053217951129,0,0.0,0,0.0,0,0.0,0.07226,0.1899579390115667,0.3180182673678383,0.02298,0.3264849203213486,0.6735150796786514,25.166810214098128,4.600539388627168,0.3240888888888888,0.2115555555555555,0.2323555555555555,0.232,11.03898638669687,5.3970596173750405,24.383363927428174,13042.577487817258,63.29096783469227,13.688926941571054,20.731638710569158,14.55326144875488,14.31714073379716,0.544,0.7546218487394958,0.6944596818431158,0.5592960979342004,0.1264367816091954,0.7106227106227107,0.9109195402298852,0.8634361233480177,0.7440273037542662,0.1592592592592592,0.4906103286384976,0.6900237529691211,0.6384222059897735,0.5059171597633136,0.1178743961352657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080894485893,0.0043766336392924,0.0067037859656595,0.0090885088752589,0.0113669869350821,0.0134877897329926,0.0156170360251992,0.0178117567802059,0.0197888238120061,0.0219480984798075,0.0241856936342106,0.0266162819354308,0.0286836773523392,0.0305402482360817,0.0323316104938462,0.0344161145963599,0.036381341095791,0.0382559599796577,0.040098582614935,0.0422272476213303,0.0573604379074043,0.0708625147870146,0.0844505990222613,0.097682537012113,0.1103179958668972,0.1261101243339254,0.1398072866425686,0.1533757988876718,0.1646821586326099,0.1759676883684554,0.1902303116360624,0.2037901883202525,0.2162549852751002,0.2281976744186046,0.2392961231784437,0.2507090627077332,0.2611230233181452,0.270929302713235,0.280460109463357,0.2885137690377144,0.296926905492216,0.3043503711161582,0.3124577927847876,0.3197278095146656,0.3259706139924102,0.3317621509568994,0.3373752051208177,0.3424556307253246,0.347277892360976,0.351960551016631,0.3523925057285348,0.3530473107912678,0.3541372891872074,0.3547504631773969,0.3554910714285714,0.3550224979652011,0.3540972156078357,0.3543916249670792,0.3551331320340379,0.3568279569892473,0.3582439426899707,0.3595721121524894,0.3593835185573495,0.3604822834645669,0.3602720303751232,0.3622270856130478,0.3619329669390893,0.3635106249214133,0.3652709359605911,0.3662335598203997,0.3666819012797075,0.3677984084880636,0.3675536264704032,0.3670135987236952,0.3686722185833255,0.3720738736619221,0.3783783783783784,0.377466456195738,0.3815541812315138,0.3885991058122205,0.0,2.1415265546163167,60.374522920828014,213.2572666857028,324.71116182007603,fqhc6_80Compliance_baseline_low_initial_treat_cost,74 -100000,95687,41344,388.32861308223687,7056,72.42363121427154,5528,57.13419795792532,2255,23.179742284740875,77.3960056150407,79.78260434834567,63.35197710932333,65.11407414800775,77.11920317423797,79.50564574635436,63.24994103241781,65.01493605234239,0.2768024408027401,276.9586019913106,0.1020360769055201,99.13809566535292,90.22882,63.18587460422551,94295.79775727112,66033.91746446802,234.08017,143.5700812587366,243989.956838442,149400.2124204297,270.78193,129.64410830333432,279132.6826005622,132442.26244316588,3639.87796,1645.718480429974,3764750.1750499024,1680705.8643598133,1333.44925,582.9481522883744,1376511.9295202063,592182.7126865444,2210.53294,920.5702083092568,2273538.0354698133,929493.3365697348,0.37777,100000,0,410131,4286.172625330505,0,0.0,0,0.0,19540,203.5386207112774,0,0.0,25259,260.1607323878897,2039684,0,73033,0,0,3573,0,0,44,0.4493818387032721,0,0.0,0,0.0,0,0.0,0.07056,0.1867803160653307,0.3195861678004535,0.02255,0.3187288708586883,0.6812711291413117,25.162369456806964,4.591219304661512,0.3386396526772793,0.1982633863965267,0.236794500723589,0.2263024602026049,11.166326916552304,5.677803044499788,24.01091764447365,12936.707788270644,62.40400805209681,12.922064551513786,21.138060591761626,14.694195942811104,13.649686966010302,0.5506512301013025,0.7664233576642335,0.6944444444444444,0.5790679908326967,0.1167066346922462,0.7052932761087267,0.8994413407821229,0.8676171079429735,0.6877076411960132,0.125,0.4983050847457627,0.7018970189701897,0.6328747284576394,0.5466269841269841,0.1146560319042871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0047555312202145,0.0069933618887152,0.0091033782067564,0.0113523080992004,0.0136134077302162,0.0159364580890524,0.0181727225392806,0.0203847962542681,0.0227537922987164,0.0249436128767685,0.0268491519158897,0.0289202225581849,0.0311077233678745,0.0330585334145007,0.0348463391186594,0.0367930391547545,0.0389046897382133,0.0407488299531981,0.0428365955850165,0.0575860448111975,0.0721798373677435,0.0852641626197044,0.0975617449452733,0.1097348864175407,0.1250978235580278,0.1386451647127473,0.1512919057606115,0.1639317992436382,0.1757822136888736,0.1883138564273789,0.2008934849156814,0.213069324146625,0.223719735475761,0.2351227128782547,0.246612496125404,0.2566173271909961,0.2662180077747567,0.2756104470001699,0.2843520614666941,0.2925626515763945,0.3005452995644609,0.3079485846604602,0.3138754263148447,0.3207467067756726,0.327088663648888,0.3339450457535922,0.339310187300137,0.3444930961883726,0.349615647870268,0.3506552798367172,0.351102083390519,0.3509129786455842,0.3515344068163766,0.3524598684308222,0.3521667916787852,0.3523320984136031,0.3543769800233088,0.3548376068376068,0.3572462085350387,0.3577014684645824,0.3588030674361609,0.3599330123508478,0.360885477104347,0.3603943729710232,0.3603441533046539,0.3607528259445915,0.3642924676961865,0.3641065334412272,0.3668301630976592,0.3661292545128841,0.3657727102403512,0.367718986216096,0.372373063353275,0.3717411988582302,0.3719614921780986,0.3749034152372121,0.3803366174055829,0.3828954723309111,0.3783255086071987,0.0,2.4837004710175687,61.36694211181839,209.3570945640112,311.45813372448566,fqhc6_80Compliance_baseline_low_initial_treat_cost,75 -100000,95826,41582,390.3324776156784,7122,72.99689019681506,5572,57.614843570638456,2253,23.15655458852504,77.38566316619061,79.70795449725387,63.36611244363343,65.0849064816191,77.1073862515652,79.43000909508842,63.26350152122984,64.98544999600865,0.2782769146254082,277.94540216544306,0.102610922403592,99.45648561044608,90.71634,63.582151557138815,94667.77283826936,66351.67027439193,239.57695,146.93542411295076,249463.2667543256,152791.21966711676,274.00385,130.75171971056153,283431.9913175965,134467.21514111513,3676.72072,1662.582167425971,3800800.920418258,1699281.0427654264,1361.57039,594.3424361885436,1405038.9247177176,604528.7022004684,2217.65186,921.0806099212624,2279504.769060589,929418.8425450724,0.37989,100000,0,412347,4303.080583557698,0,0.0,0,0.0,20107,209.2438377893265,0,0.0,25524,263.8010560808132,2034395,0,72981,0,0,3572,0,0,46,0.4800367332456745,0,0.0,0,0.0,0,0.0,0.07122,0.18747532180368,0.3163437236731255,0.02253,0.319748797434527,0.680251202565473,24.965938014441207,4.609324261781242,0.3431442928930366,0.1988513998564249,0.226848528356066,0.2311557788944723,11.33901753246155,5.675119578777389,23.85937928949704,12945.432302629652,62.8037433813907,12.902872014266842,21.75053373495434,14.073778453569632,14.076559178599892,0.5527638190954773,0.7734657039711191,0.6893305439330544,0.5941455696202531,0.1195652173913043,0.7053380782918149,0.9300291545189504,0.8346938775510204,0.7128378378378378,0.1884057971014492,0.5013198944084474,0.7032679738562092,0.6392405063291139,0.5578512396694215,0.1007905138339921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268744999139,0.0045517674847683,0.0069318285615694,0.0091236055513787,0.0111477277350583,0.0133285816108339,0.0154216228888277,0.0176242473721808,0.0197148551280085,0.0221248899895618,0.0243702473918301,0.026481093730755,0.0283764478566069,0.0304586815992094,0.0325960299046145,0.0347164120521004,0.0367526850568052,0.0388063723711895,0.0408074263285776,0.0426851476081957,0.0576337311190853,0.0715988207990967,0.0851946962947434,0.0976096664039926,0.1093847110006215,0.1248547709077082,0.1380610850380854,0.149798044217687,0.1623287963476554,0.1738338777914636,0.1879268253336631,0.201097583372044,0.2124159944412476,0.2241992882562277,0.2352211067419432,0.2463841832898403,0.2562054367201426,0.265564267900874,0.2748736772936351,0.2834669075194073,0.2911794611082867,0.2996743051259003,0.3073625283446712,0.3144975189812877,0.3215103668068296,0.3275648037757648,0.3337745367364267,0.3397644191714054,0.3455151648294845,0.3509754073527668,0.3522097216988749,0.3524032180430447,0.3527838012898138,0.3530347280455715,0.3537869101073478,0.3537855204036252,0.3548504798921234,0.3561154631031532,0.3570105320937253,0.3580238061092786,0.3598496946923438,0.3613817186166941,0.3625946949714068,0.3631266045129037,0.3640199835087549,0.3659461309602169,0.3670416295060272,0.3690589504410178,0.3710410453060644,0.3719996788954002,0.3724452218744246,0.3730447825155346,0.3721225995167239,0.3737428023032629,0.3764302059496567,0.3775375375375375,0.3812248685431488,0.3790206924810489,0.3872044506258693,0.3987659082144234,0.0,1.9905520609990357,62.16861952312882,208.7963439498294,316.74750687540256,fqhc6_80Compliance_baseline_low_initial_treat_cost,76 -100000,95776,42076,395.4226528566656,7220,74.1835115268961,5614,58.15653190778483,2218,22.90761777480789,77.37657405990127,79.72352631372256,63.3458979718325,65.08016606756381,77.10868198209249,79.45160654790946,63.24778524361467,64.98230208497817,0.2678920778087814,271.9197658130952,0.0981127282178278,97.86398258563622,90.40108,63.28133424600958,94388.03040427664,66072.22503133309,235.31426,143.59229900719566,245224.85800200468,149457.69191362726,272.47159,129.53505698425158,281731.59246575343,133118.26817536933,3711.87384,1663.9685423452968,3847437.6044102903,1709213.7303137493,1341.40929,577.1536771209456,1392110.079769462,594164.1858252164,2190.50066,911.6462699131662,2263574.173070498,931448.2177250086,0.38444,100000,0,410914,4290.365018376211,0,0.0,0,0.0,19592,204.05947210157035,0,0.0,25340,261.7879218175744,2036490,0,73119,0,0,3652,0,0,50,0.5220514533912463,0,0.0,1,0.0104410290678249,0,0.0,0.0722,0.1878056393715534,0.307202216066482,0.02218,0.3152302243211334,0.6847697756788665,25.36883241882971,4.543716706073934,0.3247239045244032,0.2075169219807623,0.2367296045600285,0.2310295689348058,10.897949551869138,5.375923811561396,23.610368431035447,13139.00804232459,63.13880652922231,13.647335357691746,20.37157335025709,14.84485365722804,14.275044164045434,0.5422158888493053,0.7716738197424893,0.68019747668678,0.5688487584650113,0.1148804934464148,0.6833333333333333,0.9034090909090908,0.8635294117647059,0.7028753993610224,0.1310344827586207,0.4962210675484175,0.7146371463714637,0.6244635193133047,0.5275590551181102,0.1102284011916583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0046629970906952,0.0070516853020556,0.0093766508188061,0.0115531689854364,0.0135436502683272,0.0157233025053277,0.0181626985747539,0.020272135270244,0.0225199864880081,0.024741718596261,0.0268938616300554,0.0290836940095197,0.0309683930833479,0.0329612511863987,0.0350808285442593,0.037141732935719,0.0390053632374451,0.0410021831791246,0.0430838766116098,0.0576533700711795,0.0715914081944241,0.085117088408562,0.098452129504114,0.1114401332012561,0.1273053955503884,0.1402113878022665,0.15275354300549,0.1650026162076735,0.1767544094783681,0.1905577273069923,0.2040505014442893,0.2165499086241406,0.2278118161925601,0.2381822585261674,0.2494568831744624,0.2602670894839098,0.270019921439746,0.2796118708505929,0.2886443278898788,0.2968545746908367,0.3045237649700599,0.3122442220802877,0.3198826206731345,0.3276394119791034,0.3334196220553974,0.3387855142056822,0.3440689383444121,0.3499676542890412,0.3557982772039521,0.3564510922199505,0.3573618577537019,0.3581471941899252,0.3584300351161144,0.3591160220994475,0.3584654261428899,0.3589268462647091,0.3603284072249589,0.3617115884525927,0.3629203650456307,0.363716564992961,0.3647212491836371,0.3657917374792807,0.3661153330353151,0.3674112945934235,0.3686876599300224,0.3706271757119215,0.3713998239215193,0.3738038277511962,0.3780176878336387,0.3799734444393571,0.3841466673793361,0.3857576140528245,0.3883124809276777,0.3896616541353383,0.3926788685524126,0.394817540631708,0.3945399393326592,0.3970264317180617,0.4036029129934841,0.0,1.692590244307279,61.648564600984926,211.11006982331955,322.0248452265595,fqhc6_80Compliance_baseline_low_initial_treat_cost,77 -100000,95751,41552,388.90455452162377,7232,74.2237678979854,5652,58.43281010119998,2280,23.41489906110641,77.3313489084019,79.69656965170181,63.31030609897547,65.0626599602557,77.05328680309935,79.41900767782944,63.207798455354,64.96265907276133,0.2780621053025527,277.56197387236625,0.1025076436214647,100.00088749437452,89.72634,62.83833369096744,93707.99260582136,65626.81715174508,237.56326,145.1747246330719,247482.0419630082,150995.269228309,274.39719,130.84257251409636,283040.1875698426,133913.4512050523,3702.22551,1667.746319910008,3829411.149753005,1704817.5005688004,1377.20264,605.5303019637536,1419152.0819625906,613541.6888168827,2246.06298,934.424161313166,2308593.1844053846,945181.2461973666,0.38012,100000,0,407847,4259.454209355516,0,0.0,0,0.0,19877,206.95345218326705,0,0.0,25552,263.22440496705,2034864,0,73028,0,0,3568,0,0,45,0.4699689820471848,0,0.0,0,0.0,0,0.0,0.07232,0.1902557087235609,0.3152654867256637,0.0228,0.3030541355354568,0.6969458644645432,25.426326466926582,4.508150483990823,0.3356334041047417,0.2022292993630573,0.2317763623496107,0.2303609341825902,11.191237735048622,5.6187192717508845,24.12638857168311,13103.878014485324,63.53119202044602,13.286706071441186,21.50917864154656,14.484096027592273,14.25121127986601,0.5539631988676574,0.7646544181977253,0.7037427517132314,0.5854961832061069,0.119047619047619,0.706268221574344,0.899135446685879,0.8625792811839323,0.7330960854092526,0.1586715867158671,0.5051401869158878,0.7060301507537688,0.6509831460674157,0.5451895043731778,0.1086323957322987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002056758427137,0.0045935284991431,0.0067901547830499,0.0092765698028855,0.0117906773281246,0.0140338727581957,0.0163962843246219,0.0185527430899455,0.0208450531354519,0.0231784009668762,0.0252605021332458,0.0275337751065906,0.0295146750092619,0.0316087807894465,0.0337317561569744,0.035932168338331,0.0381357687210072,0.0400639196438762,0.0422652335710276,0.044128981190243,0.0584643326861652,0.0729614632053656,0.0862240777065654,0.0994773757321471,0.1117390295848006,0.1268760113803424,0.13976908546809,0.1529612270984235,0.1650065194621978,0.1766536463922393,0.1912542979402222,0.2040765490128123,0.2163356850448567,0.2279241895043412,0.2388110655918241,0.250013861320263,0.2603887399463807,0.2704166666666667,0.2804491728452534,0.2886623940933011,0.2965682584172062,0.3043895924368271,0.3116136223497605,0.3178781689294725,0.3246125564577982,0.3309839161616037,0.3370920253085259,0.3426179584867675,0.3472979286715464,0.3526706054958563,0.3534086156419908,0.3545437016224554,0.3549219510131562,0.3554182880784642,0.3572893141566623,0.3564677950524623,0.355964928939955,0.3575497873877423,0.3586248182673394,0.3597127442924006,0.3610855824596282,0.3621659077410414,0.3630736303166376,0.3643699287219258,0.3649254811170597,0.3664355788096795,0.3660660746409297,0.3674668351231838,0.369415260532739,0.3711769415532426,0.3725283295866403,0.3740792142628376,0.3768933392483681,0.3774956016216629,0.3794818847381265,0.3771744240714622,0.3798062367544656,0.3879173290937996,0.3940873338757797,0.3945680875141456,0.0,2.260961964650257,60.30960767924423,212.76564207514815,328.55738651403175,fqhc6_80Compliance_baseline_low_initial_treat_cost,78 -100000,95489,41421,390.68374367728217,7239,74.56356229513347,5655,58.62455361350522,2273,23.489616605053985,77.22623088476638,79.71333247623714,63.24095407219974,65.07614340453442,76.95038778781907,79.43388302681747,63.14263803616541,64.97852829297797,0.2758430969473124,279.44944941967265,0.0983160360343333,97.61511155645051,89.68784,62.868102563084776,93924.78714825792,65838.05732920523,235.5696,143.57522830448283,246109.4890510949,149769.20724322475,272.61726,130.21062932283672,281104.22142864624,132979.4796143818,3716.30671,1657.0772637654609,3857507.650095823,1700998.0560750046,1349.28831,581.8554012441556,1396357.7375404497,592670.4973810138,2229.16596,907.922016797209,2305513.284252636,927317.7844052204,0.37821,100000,0,407672,4269.308506738996,0,0.0,0,0.0,19709,205.772392631612,0,0.0,25494,262.6480537025207,2031685,0,72908,0,0,3679,0,0,35,0.3560619547801317,0,0.0,0,0.0,0,0.0,0.07239,0.1914016022844451,0.3139936455311507,0.02273,0.3254352663961251,0.6745647336038748,25.077625530079175,4.512458448308958,0.3115826702033598,0.2203359858532272,0.2415561450044208,0.226525198938992,11.1657668754637,5.708932610850384,24.1354534362798,12938.803614727918,63.88052093392845,14.580804898623144,19.93888779115588,15.317319328361783,14.043508915787635,0.5492484526967285,0.7728731942215088,0.6855845629965948,0.5893118594436311,0.1014832162373146,0.7401633259094283,0.9247311827956988,0.8599562363238512,0.773972602739726,0.1504424778761062,0.4895543175487465,0.7082379862700229,0.6245210727969349,0.5391061452513967,0.0909952606635071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989157420073,0.0042297666020874,0.0063151054886592,0.0084697508896797,0.0108934679915295,0.0128930336849615,0.0152552577067112,0.017431998855578,0.019611855095297,0.0214954611585828,0.0236184102479881,0.0255192268147234,0.027678810470169,0.0298492068403572,0.0318237707035326,0.0341253817880623,0.0363066773166253,0.0382536382536382,0.0402979632234203,0.0422474913594169,0.0564161607703579,0.0707301720520352,0.0847117214692057,0.0983981452207819,0.1096399928146496,0.1253537098466462,0.1384028235494227,0.1506096715347934,0.161938724151594,0.1731023439263184,0.1875364321336816,0.2004619789181451,0.2134323151721281,0.2247150372643577,0.2355530063203874,0.246728286710956,0.2568137337135827,0.2670160608622147,0.2762894569271354,0.2851831878004842,0.293260980474004,0.3019553596548813,0.3095147704354016,0.3166900993787327,0.3237290821114726,0.3298740815872152,0.3359934648736961,0.3409683521652436,0.3457372807530782,0.3512378631131363,0.3513637777387118,0.3521292014631789,0.3529553065521188,0.3528176459513085,0.3531333442725659,0.3530153846153846,0.3526321654276572,0.3532822359509729,0.3542243707743389,0.3557624894385819,0.3569058481957693,0.3580666985036612,0.3593058074311501,0.3604753223955168,0.3607445008460236,0.3623948203098377,0.3615055799409014,0.364039814873518,0.3658277206664303,0.3661723446893787,0.368050441826215,0.3716548918861057,0.37560913866211,0.3762308220746508,0.3778754441743033,0.3780416127894675,0.3814117286786097,0.375796178343949,0.3771491957848031,0.3754818812644564,0.0,2.327106771400325,59.45064009490026,218.9100255621299,328.40828390864743,fqhc6_80Compliance_baseline_low_initial_treat_cost,79 -100000,95690,41690,391.921830912321,7256,74.37558783571951,5589,57.62357613125719,2320,23.785139513010765,77.36399481233721,79.74778734570151,63.33329461681414,65.09685857566048,77.08681152063956,79.47374474565028,63.23161687906588,64.99931968032514,0.2771832916976535,274.0426000512315,0.1016777377482682,97.53889533533312,90.33948,63.22844593450452,94408.48573518656,66076.33601682988,236.36464,145.05003195596038,246224.31811056536,150796.78331691964,271.34202,130.00115408923114,277992.07858710416,131568.47202621037,3731.03854,1679.0974151901928,3851404.483227088,1707041.305455316,1372.69578,598.0261663312789,1413188.828508726,603726.4473476829,2292.2071,946.7313221294896,2352914.8500365764,953744.3422190866,0.38137,100000,0,410634,4291.294806144842,0,0.0,0,0.0,19854,206.6778137736441,0,0.0,25299,258.9925802069182,2035542,0,73042,0,0,3681,0,0,39,0.3866652732782945,0,0.0,0,0.0,0,0.0,0.07256,0.1902614259118441,0.3197353914002205,0.0232,0.3210864715916546,0.6789135284083454,25.1680961050848,4.583804218726907,0.3190195025943818,0.2020039363034532,0.2361782071926999,0.242798353909465,10.951341883159806,5.290320699620052,24.61805790417242,12995.363921085967,63.00070414788614,13.345127227648142,20.067643430715695,14.740316558395143,14.847616931127142,0.5448201825013419,0.7883082373782108,0.704991587212563,0.5590909090909091,0.1179071481208548,0.6896807720861173,0.9162162162162162,0.8560975609756097,0.6710963455149501,0.1390977443609022,0.4988213107024988,0.7259552042160737,0.6598689002184996,0.5260058881256133,0.1127406049495875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023707966484635,0.0045027229304207,0.0068931210915292,0.0090859198731629,0.0114064185270355,0.0134380667114941,0.0159125219307193,0.0181073573266881,0.0204862283043376,0.0225685555714841,0.0245095525724775,0.0265490361210677,0.0287498199921825,0.03086038124678,0.0329944785592651,0.0349063236692998,0.036867075495152,0.0386750651156516,0.0407367753604357,0.0427376251549785,0.0571568811746767,0.0703908392472105,0.0837197591220965,0.0965536824171548,0.1085764884466183,0.1240100240026223,0.138018430736275,0.1508707354177083,0.1632644345746498,0.1744517567364788,0.1883945674867093,0.2012461598373069,0.2137964030185068,0.2249767619880802,0.236513838166058,0.24836695378756,0.2594786333366797,0.2696161675232515,0.2787246113695676,0.2876574307304786,0.2960118441750717,0.3039639850327408,0.3107317881578635,0.3170424713201711,0.3240957853940638,0.3300481687260542,0.3358904726744841,0.3408062054933876,0.3456970606499689,0.3509997495683349,0.3511921571791665,0.3515025707294273,0.3530943067008133,0.3540685750599381,0.3550244916134778,0.35447333425047,0.3539455395501643,0.3547568779561709,0.3564088143565622,0.3576144758913594,0.35899840570196,0.3593184112094045,0.3617900677674506,0.3618119780910478,0.3627120277563608,0.3632410342388599,0.3618649167550219,0.3654173764906303,0.3687585890975721,0.3693618376527728,0.3727753947248334,0.3732177058948712,0.374341395289786,0.3751249903853549,0.3749521988527725,0.3757099697885196,0.3739607843137255,0.3802083333333333,0.3720600736752621,0.3773285770907649,0.0,3.0639268565903155,58.39452855052261,218.3906811332436,317.74545626771226,fqhc6_80Compliance_baseline_low_initial_treat_cost,80 -100000,95674,41921,393.6806237849363,7175,73.75044421681962,5585,57.85270815477559,2295,23.674143445450174,77.31725194233033,79.72449581118885,63.30264576078415,65.08446516215483,77.03875922130646,79.44408651765255,63.19993670190138,64.98342566223886,0.2784927210238663,280.4092935362945,0.1027090588827732,101.03949991597004,89.10352,62.501449721070976,93132.19892551788,65327.31458562699,235.58698,144.0801669970904,245703.76486819825,150064.06017734844,276.5855,131.42081907528464,285530.1649350921,134763.0836648381,3695.98899,1664.5700894978202,3829256.9141041455,1706511.1459426852,1344.18257,587.6763411094017,1390227.146351151,599916.2179721997,2260.5246,941.7607632376396,2333368.8985513304,958695.3338565768,0.38173,100000,0,405016,4233.281769341723,0,0.0,0,0.0,19679,205.12364905826036,0,0.0,25671,264.78458097288706,2039316,0,73183,0,0,3448,0,0,41,0.4285385789242636,0,0.0,1,0.0104521604615674,0,0.0,0.07175,0.1879600764938569,0.3198606271777003,0.02295,0.3183921724183525,0.6816078275816475,25.51746561345476,4.571150709560819,0.3434198746642793,0.1951656222023276,0.2291853178155774,0.2322291853178155,11.10372650581693,5.50124494502639,24.515460332209788,13048.032537850326,63.17401711376154,12.961367286093068,21.369673715879653,14.395488616518596,14.447487495270224,0.5491495076096687,0.7990825688073394,0.6882168925964547,0.5578125,0.1249036237471087,0.6932299012693935,0.9081364829396326,0.875,0.6543624161073825,0.1519434628975265,0.5001199904007679,0.7404795486600846,0.6299589603283173,0.5285132382892057,0.1173570019723865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024517004873007,0.0050093799117781,0.0071343759197052,0.0092979300673718,0.0116192704888843,0.0136090455332586,0.0157203190990145,0.0178571428571428,0.02007325407706,0.0222934830493714,0.0245716630758182,0.0265418524836104,0.0288840622973432,0.0308263312541883,0.0330183320423444,0.0350842705347997,0.0373284405191358,0.039378991640272,0.0416380548099132,0.0437089544459501,0.0588831426631144,0.0728512188992209,0.0862673468959291,0.0984796675259087,0.1108016583852897,0.1258188437238737,0.1393500042455633,0.1519708604475307,0.1637702535163097,0.1747073906000236,0.1882264232239995,0.2020156096082443,0.2141854314726336,0.2252774919543753,0.236886166861272,0.2483262392480269,0.2584375,0.2690403869951626,0.2789293940115956,0.2880470879234134,0.2961209989122133,0.3041967857393501,0.3112855671201733,0.3179349455081707,0.3238958923426654,0.3300803178167372,0.3360100219229565,0.3417273514284259,0.3479534058074296,0.3531958708451039,0.3543546779450984,0.3548617993613038,0.3552240487962924,0.3554893653937913,0.3561011217542866,0.357098955132145,0.3564877986862564,0.3580009215376514,0.35892435594786,0.3597518459585576,0.3603432734920754,0.361146320209142,0.3622130095330289,0.3627913242624276,0.3625317681229578,0.3649648441599328,0.3655498281786941,0.3678262516573016,0.3687182382834557,0.37159843587902,0.3724141094445209,0.3708970383834064,0.3722081218274111,0.3745298226759807,0.3723706651506537,0.3708814083501843,0.3706736711990111,0.3666666666666666,0.3677629790703995,0.3700757575757575,0.0,1.9932671787043252,63.10774836636031,209.1614105036515,317.3231630600362,fqhc6_80Compliance_baseline_low_initial_treat_cost,81 -100000,95856,41808,393.0374728759807,7076,72.59848105491571,5493,56.7413620430646,2236,22.99282256718411,77.4717338221379,79.7575413962116,63.40399372213196,65.09035060960481,77.19954209087044,79.48396840061118,63.3046252567288,64.99275316361559,0.2721917312674691,273.5729956004178,0.0993684654031596,97.59744598922282,90.61734,63.43932816640167,94534.8647971958,66181.90636621774,233.70296,143.164133220676,243249.2801702554,148796.3228391295,276.2411,132.49005220994476,284245.70188616257,135251.48096349044,3607.55609,1627.7499728084142,3730021.688783175,1664625.5558425274,1350.10696,588.2111901806151,1394226.725504924,599393.0480936139,2192.28222,902.24920482518,2256013.833249875,915047.4603249676,0.38155,100000,0,411897,4297.039308963445,0,0.0,0,0.0,19586,203.72225004172927,0,0.0,25802,265.2311801034885,2037740,0,73106,0,0,3598,0,0,37,0.385995660156902,0,0.0,1,0.0104323151393757,0,0.0,0.07076,0.185454068929367,0.3159977388355003,0.02236,0.3219702053415649,0.6780297946584352,25.352249869810205,4.521850668182974,0.3282359366466412,0.2066266156926998,0.2364827962861824,0.2286546513744766,11.305563362246795,5.8643199638070245,23.527439887129614,12967.936952908376,61.90913522897782,13.369961831868556,20.50333426041623,14.500055619610356,13.53578351708269,0.5659930821044966,0.771806167400881,0.7176927343316695,0.6066204772902233,0.1202229299363057,0.7161016949152542,0.9128205128205128,0.8418891170431212,0.71280276816609,0.168,0.5138582290900172,0.697986577181208,0.6717325227963525,0.5762376237623762,0.1083499005964214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022978034213989,0.004497978948648,0.0068952929485489,0.0090336987413723,0.0112287618892772,0.0135012768728316,0.0156568331839295,0.0176664388661655,0.0198108776014541,0.0219156508222204,0.0240272841794774,0.0262342830184809,0.028434947865838,0.030589252091243,0.0326760331089647,0.0346647115920778,0.0366478066137757,0.0386975086017493,0.0404830135393305,0.0422069137755208,0.056056056056056,0.0708118166042942,0.0835621319137342,0.095812976096664,0.1078708290297422,0.1239758539395925,0.1367844002163102,0.14943299078743,0.161609907120743,0.1736166929235122,0.1877293220138373,0.20133792999103,0.2142531381661816,0.2259233784241154,0.2365727214814489,0.2485103089934221,0.2586135834512258,0.2681105721728195,0.2773971439248949,0.2861014235892745,0.2940497222895809,0.3019228974143564,0.3097200897602457,0.3167230840998529,0.3230722562640296,0.3287532934426633,0.335012625946946,0.3408940733963607,0.3463140196585618,0.3508406683181363,0.3512786364798149,0.352392065344224,0.3538831402541896,0.3546312982051466,0.3554992141861637,0.3553019539545045,0.3544989419827559,0.3548233907020158,0.3567656878108605,0.3577997971999359,0.3591396643868894,0.3596105713328472,0.359582027168234,0.3603203640906657,0.3602912993484093,0.3620107085304361,0.363123102675405,0.365755954057522,0.3688113641111343,0.3687965627340455,0.3710799819249887,0.3730449074810455,0.3737131308027537,0.3780777786300529,0.3800133371439458,0.3834433113377324,0.3898357131890066,0.3882257738215658,0.3963766126818556,0.4001533154465312,0.0,2.221811873924441,62.364257168577,205.98683664101847,305.93486292601585,fqhc6_80Compliance_baseline_low_initial_treat_cost,82 -100000,95728,41642,389.7814641484205,7177,73.58348654521144,5509,56.83812468661207,2255,23.065351830185527,77.34438518034166,79.69752264702109,63.33412346583962,65.07224574291587,77.06951100029478,79.42675452071308,63.23241965912199,64.97578313440249,0.2748741800468792,270.7681263080133,0.1017038067176301,96.46260851337728,90.40438,63.31846228527797,94438.80578305195,66144.13994367163,237.35347,145.2494509387421,247166.04337288984,150951.749685298,271.61045,129.412312742596,279620.61256894533,131939.00722517044,3646.14891,1634.2919555924725,3764924.786896206,1663285.8156364628,1311.66477,567.8293385361007,1351075.3906902892,574091.2749115234,2219.68166,920.2880191995932,2273270.2030753805,920822.7434090856,0.38148,100000,0,410929,4292.672990138727,0,0.0,0,0.0,19844,206.54354003008527,0,0.0,25344,260.62385091091426,2032538,0,73032,0,0,3506,0,0,50,0.5014206919605549,0,0.0,0,0.0,0,0.0,0.07177,0.1881356820803187,0.3141981329246203,0.02255,0.3143839238498149,0.685616076150185,25.461671335637693,4.585816435640605,0.330731530223271,0.204574332909784,0.2294427300780541,0.2352514067888909,11.2321365119773,5.5217592492420735,23.799886548598977,13029.78338924298,61.90365583174941,13.160465330754125,20.52588036819856,14.119806323907405,14.097503808889323,0.5420221455799601,0.7710736468500443,0.6926454445664105,0.5704113924050633,0.103395061728395,0.6940406976744186,0.9192200557103064,0.8552915766738661,0.6996587030716723,0.0919540229885057,0.491410597628841,0.7018229166666666,0.637233259749816,0.5314109165808445,0.1062801932367149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195980713909,0.0046637535104883,0.0070313213405168,0.0092217381148248,0.0111637554141163,0.0133560005293536,0.015868001059905,0.0181131690392366,0.0203328871678025,0.0224496060575053,0.0248995819329453,0.0271268897989346,0.0294779917539764,0.0316574323906819,0.0337535331861602,0.0358696663118625,0.0380192321626349,0.0400613935930807,0.0421014342132612,0.0442699110435199,0.0587786976812169,0.0730701607501674,0.0866313525987308,0.0987442682259896,0.1109599586615626,0.1265941921702163,0.1396582266396529,0.1531135609091683,0.1652673631139311,0.1763627396320281,0.1897440866466414,0.2024664647338814,0.2153963248885506,0.2264051944644848,0.2365214139592178,0.2479987599508409,0.258484648951486,0.2685922526656769,0.277808666840654,0.2868185982592762,0.2945138109399771,0.3021603782417377,0.3101456138273943,0.3160395469379919,0.3221713077194219,0.3286354268224956,0.3337721607863788,0.339768684408513,0.34524488948843,0.3512280887290802,0.3518690769873687,0.3515850937835679,0.3528300023977095,0.3531760960787151,0.3532878873574852,0.3533296473768276,0.3533841754051477,0.3543539094650206,0.3555871617800778,0.3569010906355773,0.3580836073273837,0.3607171156893819,0.3614057937524946,0.3623035473731477,0.3644914045310573,0.3654057447810391,0.3669070925639704,0.3695349572919962,0.3706686446964077,0.3753000480076812,0.3741811351871363,0.3768596810446323,0.3786727456940223,0.3804273439282183,0.384289347273241,0.3882241440587608,0.3963658761934093,0.3985117817279868,0.3968697596422582,0.3935837245696401,0.0,2.7063364062549744,60.27739411060416,200.8059197051953,320.15483739006856,fqhc6_80Compliance_baseline_low_initial_treat_cost,83 -100000,95681,41435,389.74300017767376,7154,73.53602073556924,5662,58.68458732663748,2266,23.40067516016764,77.28108161739658,79.66911496125822,63.29287913429015,65.05598672454933,76.99944082449049,79.38396759348117,63.18903972063037,64.95292972468907,0.2816407929060887,285.14736777704286,0.1038394136597844,103.05699986025728,90.14654,63.15148326376671,94215.71680897984,66002.11459304013,234.47306,143.1275616086366,244587.62972795017,149118.83405131276,269.77979,128.66626770780218,278650.83976965124,132015.37334191604,3740.9806,1675.944566001369,3882359.956522193,1724109.066587273,1369.65726,593.3407611500057,1420519.2253425445,609160.127036722,2228.86172,931.8866027287572,2304611.0095003187,952671.1818834628,0.37927,100000,0,409757,4282.532582226357,0,0.0,0,0.0,19552,203.8544747651049,0,0.0,25214,260.3442689771219,2032236,0,72965,0,0,3582,0,0,53,0.543472580763161,0,0.0,0,0.0,0,0.0,0.07154,0.1886255174414005,0.3167458764327648,0.02266,0.3241875332978157,0.6758124667021843,25.27177645355725,4.5444735401571545,0.3244436594842811,0.2029318262098198,0.240904274108089,0.2317202401978099,10.969676933477649,5.482414372764142,24.169861198368867,12913.107723902933,63.6580022946453,13.291594976340315,20.83399008052232,15.254560991621412,14.277856246161235,0.5400918403391027,0.7467362924281984,0.6946107784431138,0.5645161290322581,0.1173780487804878,0.7042052744119743,0.9178885630498532,0.8526315789473684,0.7220447284345048,0.1605839416058394,0.4860295844094858,0.6745049504950495,0.6395007342143906,0.5176022835394862,0.1059730250481695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019652535075723,0.0043796064436987,0.0068096248109847,0.0090317074905263,0.0112177857331733,0.0135636022972587,0.0156106613373575,0.0178462041083023,0.0201175568617429,0.022016602012303,0.0241054034656003,0.0262025771343498,0.0284248089758224,0.0304463402571711,0.0323965611550886,0.0345747430674745,0.0366177049452029,0.0386615325535293,0.040672394782283,0.0425052897093005,0.057053605942518,0.0708975540291506,0.0840120916953564,0.0972076091073608,0.1089646877604633,0.1244935309488294,0.1375781573444018,0.1503206015806403,0.1612223731060808,0.1726959378926006,0.1870523772542928,0.2002427710582217,0.212619265455496,0.2237128870100428,0.2338064487690917,0.245105108436408,0.255575553642695,0.2657059804407589,0.2753736857061665,0.2845097566851361,0.2917695330157516,0.3002590764685884,0.3073628511769172,0.3141418511308193,0.3206750027394591,0.3273277352432699,0.3330030726782467,0.3385133583403506,0.3441485907260683,0.3489816457875361,0.3502695836655271,0.3507201944455952,0.3514879519778011,0.3514262901938013,0.3531203799112943,0.352705010075528,0.3523764107455094,0.3530246526517276,0.3547572415214926,0.3564162824491846,0.3577715373452195,0.3593416884177808,0.3609777758981624,0.3635419723269305,0.3650046123221828,0.365142287094403,0.3670987955963092,0.3687988312265769,0.3711759504862953,0.3725364781131321,0.3761581506283827,0.3773130816130067,0.3773177546355092,0.3774506064535815,0.3791513783046382,0.3796860356138706,0.3838739290085679,0.380024115755627,0.375917368850231,0.3688871775125144,0.0,1.94351322378432,62.38886967949031,205.69066036741768,332.58362747513894,fqhc6_80Compliance_baseline_low_initial_treat_cost,84 -100000,95731,41534,390.928748263363,7114,73.20512686590551,5502,56.94080287472188,2247,23.179534320126187,77.3612597271838,79.72674769897206,63.34108899169471,65.08939679560847,77.08805814622757,79.4507185552308,63.24422298155983,64.99347561438725,0.2732015809562398,276.02914374126897,0.0968660101348817,95.92118122121462,90.18284,63.13091595329651,94204.42698812296,65946.15741326896,234.81294,144.16375423977058,244783.53929239223,150091.97045865038,272.05653,130.33176837122443,280616.36251579947,133394.61096342257,3656.20244,1629.8302752475429,3788918.103853506,1672182.4960018636,1376.26843,590.1736728066772,1426930.7120995289,605781.0769830853,2215.55004,896.9049006178034,2287847.8653727635,914153.3657447244,0.37934,100000,0,409922,4282.019408551045,0,0.0,0,0.0,19617,204.37475843770568,0,0.0,25301,260.7201429004189,2037707,0,73076,0,0,3523,0,0,53,0.5431887267447326,0,0.0,0,0.0,0,0.0,0.07114,0.1875362471661306,0.315856058476244,0.02247,0.3157684098185699,0.6842315901814301,25.319963341715848,4.542724571286043,0.331879316612141,0.1977462740821519,0.2333696837513631,0.2370047255543438,11.34807791709452,5.763442419321026,23.668717635100563,13004.53665839573,61.84653829177653,12.821863157141571,20.636128824293177,14.113765679808578,14.274780630533202,0.5554343874954561,0.7794117647058824,0.7097480832420592,0.5841121495327103,0.1242331288343558,0.7218100890207715,0.9096045197740112,0.8725701943844493,0.7581227436823105,0.1456692913385826,0.5014443909484834,0.7166212534059946,0.6544387380777696,0.5362462760675273,0.119047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021373365342733,0.0043697785708492,0.0064642487467272,0.0088691570744988,0.0110241025119495,0.0130139915683998,0.0153162156098953,0.0176443559503752,0.0200905865633339,0.0219492219492219,0.0239203543452405,0.0259746929049751,0.0280263293222256,0.0300807647931432,0.0318556126555631,0.0338368017864342,0.0361199995857798,0.0381470258602797,0.0402316778970135,0.0419267116079894,0.0569975776812562,0.0710876664154735,0.0847528740454812,0.0974135211859951,0.1093007324656162,0.1249418678391747,0.138295165394402,0.1515851063829787,0.1633027914824544,0.1743245126094552,0.1884385596641369,0.2019727876441195,0.2135721817015772,0.2261734331457297,0.2375996043303841,0.2485921959530473,0.2592258222712631,0.2693422294109718,0.2789454005732996,0.2862192429563367,0.2942637916291109,0.3024945111412155,0.3105983592992742,0.3178429096305516,0.3247099613281771,0.3304800206619193,0.3359233488650985,0.3415282138635006,0.3468983465617029,0.352242273825397,0.3531328692045622,0.3533933851337413,0.3546351973637887,0.3554964282615611,0.3561855746775945,0.3552300613496932,0.3540699424804703,0.3554927540994381,0.3568290222761698,0.3572438225768934,0.3581197865784925,0.359907028487425,0.3605407795817802,0.3619961353525367,0.3640454875393177,0.3643150036799495,0.3648679744578036,0.3674844286259057,0.3705396690407852,0.3719306692344728,0.3747073674546706,0.3764329512130098,0.3777117196888242,0.3802234807898362,0.3822029095031173,0.3888689836378837,0.3938879456706282,0.392321905152946,0.3958392704474209,0.3944878650761004,0.0,2.113684379437576,59.52474430277909,204.29360652855144,320.6179500744201,fqhc6_80Compliance_baseline_low_initial_treat_cost,85 -100000,95647,41823,393.2899097723922,7084,72.64211109600927,5530,57.18945706608675,2280,23.48217926333288,77.2430810454354,79.64806551403474,63.27207635196621,65.05061628831459,76.96400319112539,79.3677224916868,63.168361471344994,64.94838473501093,0.2790778543100174,280.3430223479353,0.1037148806212187,102.2315533036533,90.36258,63.38468717680144,94475.08024297678,66269.39389296208,237.36386,145.46146045623604,247528.7881480862,151443.8094830324,274.94973,131.43563904997978,283157.966271812,134128.8516152666,3658.75394,1653.142336585558,3786554.173157548,1689877.7493576782,1324.27308,576.8228174425276,1369385.8145054209,588007.6643817036,2242.56588,939.3076075444806,2311826.2569657178,955325.2135836948,0.38049,100000,0,410739,4294.321829226217,0,0.0,0,0.0,19760,205.93432099281733,0,0.0,25585,263.1969638357711,2028231,0,72746,0,0,3545,0,0,46,0.4809351051261409,0,0.0,0,0.0,0,0.0,0.07084,0.1861809771610292,0.3218520609824957,0.0228,0.3147501343363783,0.6852498656636217,25.383209678529024,4.54418742512713,0.3327305605786618,0.2081374321880651,0.2229656419529837,0.2361663652802893,10.996193162622824,5.513163564387829,24.28261764158112,13067.746685900456,62.38884854701988,13.435650046064792,20.972132578804896,13.676400910536495,14.304665011613698,0.5508137432188065,0.7662901824500434,0.7016304347826087,0.583941605839416,0.1171516079632465,0.7072819033886085,0.9166666666666666,0.8385093167701864,0.7491166077738516,0.1648351648351648,0.4984310885831523,0.701120797011208,0.6529108327192336,0.5347368421052632,0.1045498547918683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022600129722717,0.0042095226502748,0.0064566561424525,0.0087991139922169,0.0111378963107625,0.0134630072814298,0.0156410910017843,0.0177973370364319,0.0200936681937172,0.0223544350461834,0.0244998000225615,0.0266079258962588,0.0288875862565431,0.0308955485273362,0.0328234346937511,0.0347123845764096,0.0367949448386595,0.03894297635605,0.0409086653976971,0.0430449422974677,0.0571995820271682,0.071600645201835,0.0847751228320665,0.0979876226160906,0.1102818536894331,0.1254406300612912,0.1384504259522848,0.1512622063025031,0.1629733460307949,0.1749852317276193,0.1897681043692201,0.2033890954822902,0.2162512527778988,0.2281958593493263,0.2388018565270596,0.2502441514626892,0.2605218713999709,0.2702343098121462,0.2797629878991902,0.28900029828144,0.2973026254754615,0.3048517520215633,0.3116916985739518,0.3186047907786516,0.3253729525665225,0.332015175294423,0.3374791350293051,0.3435465338950593,0.3482199721850345,0.3541520405865444,0.3544597769436418,0.3556481315437352,0.3561039732010346,0.3568217414003132,0.3572558500477555,0.3569737044441027,0.3571167215514087,0.3578313253012048,0.3580403735237572,0.3586796451276894,0.359710057384476,0.3603508422206717,0.3613725572954037,0.3611949713873744,0.3622756666424471,0.3633155108383596,0.3646233361245055,0.3658428108520236,0.3666773196974539,0.3683064516129032,0.3698985500532728,0.3725352871457817,0.3756390593047035,0.3792810204870506,0.3819491118578972,0.3835616438356164,0.3801536290954695,0.3819946314268015,0.385065477848983,0.389751552795031,0.0,2.389074515918672,60.85424172542567,204.4993573917077,320.830623370676,fqhc6_80Compliance_baseline_low_initial_treat_cost,86 -100000,95815,41473,390.59646193184784,7288,74.76908625998017,5705,58.9260554192976,2327,23.91066116996295,77.44904619750217,79.77396816856213,63.38601454967061,65.10623639280719,77.1578145721936,79.4815461641763,63.28014670528951,65.00235379662907,0.2912316253085691,292.4220043858412,0.1058678443811018,103.88259617812425,90.47896,63.308247347995,94430.8928664614,66073.41997390283,235.27527,143.58948574178766,244949.38162083185,149262.8388113903,274.39816,131.28148410238146,281885.5294056254,133660.21985128164,3784.99969,1712.2639774726474,3913890.8521630224,1751039.6216686445,1385.16968,608.1052949434877,1429358.3572509524,618806.3682981592,2295.2429,955.9133538385844,2360848.7397589106,970090.7119815588,0.37974,100000,0,411268,4292.313312111883,0,0.0,0,0.0,19660,204.560872514742,0,0.0,25674,263.5704221677191,2040915,0,73237,0,0,3666,0,0,37,0.3757240515576893,0,0.0,0,0.0,0,0.0,0.07288,0.1919207879075156,0.3192919868276619,0.02327,0.3228120516499282,0.6771879483500718,25.11312729201901,4.530119526805813,0.3226993865030675,0.2054338299737072,0.2345311130587204,0.2373356704645048,11.090216197648848,5.616703270113245,24.885083935009103,12923.42757483983,64.33046102085274,13.587911538643224,20.84089080221468,15.095100273181032,14.80655840681381,0.5447852760736196,0.7773037542662116,0.694731124388919,0.577727952167414,0.1070901033973412,0.7138888888888889,0.9304347826086956,0.8704883227176221,0.7249283667621776,0.16,0.4876905041031653,0.713422007255139,0.6343065693430657,0.5257836198179979,0.0936051899907321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.0042674829959555,0.0066461700810731,0.0087971475299925,0.0109317957635478,0.0130736256910999,0.015446101770949,0.0177384949836189,0.0198978027593254,0.0220605539695695,0.0239178553861288,0.0259649626946089,0.0281150094059355,0.030095238095238,0.0323745088130034,0.0345582841734423,0.036204059243006,0.0380025093062079,0.0397626914365272,0.0415486799367035,0.0567273789405603,0.0709603220241518,0.0843359604259243,0.0974143999327596,0.1093033793110715,0.1249445184198846,0.1380962476150095,0.1514249255635899,0.1628919210130471,0.1742980746578716,0.1880054198210598,0.2009701710223528,0.2134434986536958,0.2251009494706973,0.2360626221373207,0.2477064220183486,0.2586512223645375,0.2686026019509019,0.2771865872710394,0.2849912022120152,0.292955762837089,0.299919480004201,0.3075933531605532,0.3147034561908974,0.3211588581126129,0.3277626109840379,0.3340324332422006,0.3399677587235501,0.3450967216715986,0.3500842815002107,0.3503332795785626,0.3511705226136176,0.3519393581413664,0.3529717478237018,0.3531567080045096,0.3524824538601507,0.3513270284351958,0.3520981426278377,0.3528389635610978,0.3539730028136909,0.3549865329941642,0.3566143829535365,0.3573434487383687,0.3578515913723206,0.3592546224961479,0.3597916666666667,0.3612719235705119,0.3638337371385419,0.3637678602928206,0.366374850775965,0.3693450061878351,0.3714683965045837,0.3748169838945827,0.3755183535555214,0.3743795341733486,0.3767352800382958,0.3790697674418604,0.3798721385852753,0.3809256661991584,0.3740279937791602,0.0,2.4022141366499885,63.22213270202788,213.71547737936172,324.9722290191906,fqhc6_80Compliance_baseline_low_initial_treat_cost,87 -100000,95813,41456,389.0077546888209,7001,71.94222078423596,5518,57.069499963470506,2221,22.825712585974763,77.3497797498425,79.6823709378327,63.33168066437421,65.05970414000446,77.0792715244654,79.41044085766174,63.23383822077373,64.96327369051095,0.2705082253770996,271.9300801709608,0.0978424436004772,96.43044949351064,89.95514,62.96364419907121,93886.15323599096,65715.13698461713,233.74952,142.6265953616247,243349.9420746663,148244.97235409048,266.99788,126.90338868154728,274823.6564975525,129525.52201592564,3617.32312,1616.9785010536202,3745579.1385302623,1657904.009397378,1322.74807,566.142089238329,1370391.523070982,580755.9111600192,2183.40092,891.6753299512678,2247532.1511694654,906608.6330091004,0.3788,100000,0,408887,4267.55241981777,0,0.0,0,0.0,19507,203.0413409453832,0,0.0,24877,255.87342009956893,2039695,0,73188,0,0,3471,0,0,43,0.4383538768225606,0,0.0,0,0.0,0,0.0,0.07001,0.1848204857444561,0.3172403942293958,0.02221,0.3080043266630611,0.6919956733369389,25.493986839275887,4.504249828312027,0.3316418992388547,0.2049655672345052,0.2339615802827111,0.2294309532439289,11.07387338205753,5.602242225231842,23.270947223735043,12898.694470907149,61.95712546730677,13.158536795833086,20.57854242191894,14.34845159581604,13.871594653738704,0.5462123957955781,0.757736516357206,0.6956284153005464,0.5662277304415182,0.1208530805687203,0.7095057034220532,0.9,0.8678414096916299,0.740484429065744,0.1157024793388429,0.4951225315251011,0.6991260923845194,0.6388081395348837,0.5159680638722555,0.1220703125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172275462447,0.0042686079876707,0.0066981955467148,0.0091334870820591,0.0113213304851998,0.0131968840690392,0.0157014681892332,0.0178843032573522,0.0200537628913396,0.0224157872649668,0.0245717624627118,0.0264800706409019,0.0285746601682193,0.0305314427522576,0.0327508664796171,0.034883240338913,0.0368188969857568,0.0387188449690394,0.0407272727272727,0.0427789114229792,0.0568549312524776,0.070024467261967,0.0829665031652203,0.0958786070069985,0.1080605383529015,0.1234339483004704,0.1370814640406418,0.1496722427957263,0.1616668624582163,0.1725654225654225,0.1869094435166729,0.2001233659423426,0.2121080281490988,0.2234585578594148,0.2335566482954358,0.2445426944130487,0.2545870535714286,0.265310942895385,0.2747543290288904,0.2839705495059141,0.2915369931162145,0.2989593077642656,0.3063281555006092,0.313314332247557,0.3201520081589044,0.3270566502463054,0.3334125326697262,0.3391594158652623,0.3450873786407767,0.3497445915444622,0.3509386665947898,0.3514679531357684,0.3524215398509822,0.353071669880671,0.353869752341807,0.3533060071539323,0.3525517898245892,0.3536952622311451,0.3548105255944631,0.3556120986238532,0.3562527020168793,0.3575624082232012,0.3588967373023881,0.3597666330079659,0.3614777635674814,0.3620563291801905,0.3632566655223709,0.3663366336633663,0.3695545250140528,0.3719611342454888,0.3749885855173043,0.3762839959550801,0.3761949984172206,0.3769810740113863,0.379502694525858,0.3802182163187855,0.3823620104841196,0.3815228426395939,0.3916506454270804,0.398749022673964,0.0,2.0227587716554893,58.07152382340707,210.9877000434431,319.68418457422024,fqhc6_80Compliance_baseline_low_initial_treat_cost,88 -100000,95790,41551,390.9802693391794,7076,72.63806242822841,5489,56.602985697880776,2246,22.97734627831715,77.41775944651599,79.7466674056896,63.37436231324406,65.09553969260051,77.14583912782344,79.47727012404474,63.27425666876098,64.99961714549207,0.2719203186925512,269.39728164487065,0.1001056444830794,95.92254710844372,89.75648,62.8039352549488,93701.30493788495,65564.18755083912,232.3248,142.0524327593876,241862.1881198455,147622.32253824783,265.8305,126.93360895680668,273204.0818457041,129123.40178601407,3670.15591,1641.5290723965052,3785658.095834638,1667872.4839717154,1326.18907,578.4662339285081,1363402.5994362668,582877.2532336855,2211.49894,914.5431562100238,2264646.936005846,916732.5733259636,0.38004,100000,0,407984,4259.150224449316,0,0.0,0,0.0,19391,201.7225180081428,0,0.0,24764,254.2645370080384,2044100,0,73368,0,0,3548,0,0,44,0.4593381355047499,0,0.0,2,0.0208790061593068,0,0.0,0.07076,0.1861909272708136,0.3174109666478236,0.02246,0.3153080441216034,0.6846919558783966,25.05165786546651,4.640241085953295,0.3352158863180907,0.1974858808526143,0.2291856440153033,0.2381125888139916,11.281926318827496,5.66615696086287,23.67213844923779,12968.463102273536,61.516581877076256,12.66417998501946,20.675904463682617,13.961813057023232,14.214684371350971,0.5461832756421935,0.7859778597785978,0.6820652173913043,0.5922098569157392,0.1117061973986228,0.7255779269202088,0.9291784702549576,0.8623655913978494,0.7410071942446043,0.1551020408163265,0.4881870781099325,0.7168262653898769,0.6210909090909091,0.55,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022175194159519,0.0043283022310522,0.0068289515073413,0.0089679267128435,0.0111547221996258,0.0133250539517081,0.0153297319335439,0.0174430472768841,0.0195322880680308,0.0214416571995865,0.0236782221857766,0.0256839295796335,0.0276110197368421,0.0297015432448292,0.0318928449902558,0.0338779978929537,0.0362420830401125,0.0380177284744181,0.039933513401205,0.0419152325327169,0.0569687610859539,0.0709939784226812,0.0840382821262723,0.0959694108007605,0.1076905253401862,0.1237243011388847,0.1379222677725871,0.1505119127356234,0.1627204729030399,0.1742731032118446,0.1876909176956503,0.2006461302417045,0.213181156744782,0.2249740649740649,0.236082576165416,0.2477624489705605,0.2578598822689975,0.2682384391602736,0.2772326587958032,0.2865640227860264,0.2953158940703425,0.303139306736429,0.3108564678086237,0.3178819839341082,0.3238474327390993,0.3300661240472349,0.3360785833010485,0.3424163086855952,0.3469965852649007,0.3512345516350892,0.3521615227443811,0.3527251722572925,0.3538481034045788,0.3548429016980478,0.3555440029706647,0.3549731162206461,0.3538425009893154,0.3551596749035383,0.3564395296848069,0.3570587185436373,0.3575673496934816,0.3586849271815921,0.3595467967915558,0.3595972225323182,0.3603900794606309,0.3617548804676897,0.3633225889266052,0.3642922403200907,0.3667170527647906,0.3684984304843644,0.371002326748483,0.3721314094031202,0.3724747474747474,0.3771054035515586,0.3807539306686872,0.3845509984455339,0.3880829823740446,0.3868986693961105,0.395054945054945,0.4020938348196975,0.0,2.6919601747104345,58.59500932779312,203.4808434702146,318.42669110115696,fqhc6_80Compliance_baseline_low_initial_treat_cost,89 -100000,95726,41324,388.5464764013957,7138,73.38654075172889,5591,57.86306750517101,2281,23.45235359254539,77.3893283971574,79.74944414812165,63.35181630130408,65.09320462885064,77.10691685036967,79.4672141221618,63.24848309469689,64.9928760436683,0.2824115467877277,282.2300259598478,0.1033332066071892,100.32858518233922,89.46366,62.63468672052094,93458.05737208284,65431.21693220332,232.3892,141.74222976542245,242239.26623905727,147545.06588118424,271.46101,129.54397831578717,280610.2939640223,133038.12349297584,3729.88389,1671.1345106253918,3861436.767440403,1710767.7962365428,1390.36926,601.5191872575055,1440366.577523348,616295.71616646,2255.91802,933.9851118466696,2321397.6767022545,945291.5386890244,0.37755,100000,0,406653,4248.093516912855,0,0.0,0,0.0,19403,202.13943965066963,0,0.0,25230,260.54572425464346,2043199,0,73290,0,0,3573,0,0,49,0.5118776507949774,0,0.0,0,0.0,0,0.0,0.07138,0.1890610515163554,0.319557298963295,0.02281,0.3198617388992289,0.680138261100771,25.15686410026893,4.54671706472273,0.3255231622250045,0.1967447683777499,0.2364514398139867,0.2412806295832588,11.136556232234293,5.613779477863778,24.217263323528307,12922.421531756592,62.858354487381206,13.008803618821831,20.56834507750082,14.499715080600865,14.78149071045769,0.5439098551243069,0.7736363636363637,0.7153846153846154,0.5514372163388804,0.1178650852483321,0.6883686905632772,0.8966480446927374,0.8329718004338394,0.7338129496402878,0.1185185185185185,0.4971590909090909,0.7142857142857143,0.6754966887417219,0.5028735632183908,0.1177015755329008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585251729341,0.0046722815125624,0.0066644350445817,0.0091081709533625,0.0112337847179862,0.0132320908739287,0.0153676830262514,0.0175914777249443,0.0198432566646571,0.0220917025652569,0.0241315708576698,0.0263473791129305,0.0287196876284422,0.0308495198097767,0.0327853636401138,0.0345889526171653,0.0365163013656082,0.0385261716561897,0.0403097552102281,0.0423160263355279,0.0571717973351154,0.0708747109236838,0.0843822110341934,0.0966815973755599,0.1090497022084014,0.1245849284067595,0.1380853884911164,0.1503518465289089,0.1627959148790701,0.1739880984292071,0.187655464266101,0.2000281242225275,0.212683849507017,0.2244344584030351,0.2348980736861791,0.246092495153697,0.2563564524410117,0.2667701444189499,0.2754754663882711,0.2840073318822316,0.292225666173205,0.3003706691923621,0.308247288554566,0.3139927652540545,0.3209089363355923,0.3274774552801459,0.3338674745552648,0.3391484705044027,0.3440362811791383,0.3498455690187693,0.3515884656269763,0.3514859658778206,0.351909707562836,0.352052397958446,0.3527829782175864,0.3533985337557586,0.3526993263544071,0.3537563343555767,0.3553107923497268,0.3569170313476824,0.3577347030593881,0.3591802824702299,0.3599445657651604,0.3610126922904426,0.3611097696431158,0.3627399833055091,0.3626916378793502,0.3636020151133501,0.3640004215407313,0.3672051760409637,0.369851127956891,0.3734187349879904,0.3758640370346883,0.3766620816139385,0.3780741581536133,0.3814788397527341,0.3850865104884397,0.378827823970797,0.3722566122678672,0.3774912075029308,0.0,2.1560546049116365,60.34646852791426,211.98014848201956,320.38079927076853,fqhc6_80Compliance_baseline_low_initial_treat_cost,90 -100000,95685,41593,391.430213722109,7106,73.17761404608872,5509,57.12494121335632,2264,23.326540210064277,77.35982293729873,79.73488143961278,63.33991942654043,65.08956494942201,77.08580014275228,79.4598167896233,63.24006248394986,64.99201423853995,0.2740227945464539,275.0646499894742,0.0998569425905699,97.5507108820608,90.21826,63.13676818037687,94286.73250770758,65983.97677836324,232.89022,142.25668384793755,242948.12144014213,148228.32236065858,268.53383,127.664284961424,277958.2797721691,131347.05266278447,3651.84368,1636.0723655096454,3786933.876783195,1680360.1627016582,1312.62751,574.9414281313279,1360647.154726446,589694.5512312981,2234.88756,919.1787875248862,2303837.4457856505,933166.5226845328,0.3799,100000,0,410083,4285.760568532162,0,0.0,0,0.0,19445,202.7486021842504,0,0.0,25026,258.91205518106284,2037503,0,73129,0,0,3494,0,0,51,0.532998902649318,0,0.0,2,0.0209019177509536,0,0.0,0.07106,0.1870492234798631,0.3186039966225725,0.02264,0.3174412393162393,0.6825587606837606,25.304627200907813,4.571558071976699,0.3256489381012888,0.2054819386458522,0.234162279905609,0.2347068433472499,11.216027343635934,5.627095619610141,23.984094266788897,12964.41770968731,62.0784385050782,13.139285484721857,20.304603664970337,14.409192194927371,14.225357160458644,0.5476493011435832,0.7676678445229682,0.6984392419175028,0.5806201550387597,0.1129156999226604,0.7136563876651982,0.933130699088146,0.8787234042553191,0.6946308724832215,0.1698113207547169,0.4931275620930793,0.6998754669987547,0.6344410876132931,0.5463709677419355,0.098249027237354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023696682464454,0.0047536513921407,0.0068381271242327,0.0090999573439499,0.0111741499918659,0.0132424041935976,0.0154576671863377,0.0173142064237032,0.0193674920323608,0.0217391304347826,0.0238802606236938,0.0263152495075508,0.0286771507863089,0.0307464192674814,0.0325854866161225,0.0344802637698835,0.0366075865496107,0.0386151245164033,0.0405044340711322,0.0423853344866757,0.056990325748553,0.0710119889011046,0.0844362346372233,0.0965047031838555,0.1078660928996329,0.123785842767961,0.1373498068186643,0.1501134318184238,0.1625761624799572,0.1737212646762111,0.1885572675358258,0.2020853860562816,0.2146564387138893,0.2258212777133352,0.2367189650426644,0.2480396065922381,0.2587826979733952,0.2675180717473665,0.2764779931274595,0.2850912836948435,0.2933223851598279,0.3011766357107768,0.3091276978417266,0.3157976690981829,0.3218372671561191,0.328256024430188,0.3342335246239826,0.3405123641217977,0.3456486573924296,0.3511573279843754,0.3523056015285458,0.3531937734836285,0.3540958639459619,0.3550229135645411,0.355612351035692,0.3549049662783568,0.3545823684294008,0.3558981784674115,0.3564706084034766,0.3581257839096936,0.3582650529955649,0.3592907013646461,0.3599351960949335,0.3613286948715071,0.3615338237067406,0.3633845510609386,0.3652677527032039,0.3657713889414287,0.3676527489535333,0.3693848240644698,0.3718800091596061,0.372755052806519,0.3750239540083041,0.3744595429277331,0.3741438356164384,0.3760694059525244,0.3751741216529949,0.373597225056111,0.378208629164391,0.3737412858249419,0.0,1.7029138723050774,60.75679914888986,209.51132839474,313.04611932706496,fqhc6_80Compliance_baseline_low_initial_treat_cost,91 -100000,95856,41769,391.5143548656318,7051,72.41069938240695,5463,56.4388249040227,2264,23.201468869971624,77.34109898624328,79.63300785866743,63.34986309044478,65.04443696393233,77.06594169478156,79.35722001319408,63.24854997831027,64.94548157837708,0.2751572914617242,275.7878454733458,0.1013131121345054,98.95538555524296,89.61326,62.74204383700901,93487.37689868137,65454.47737962048,232.98955,142.7224024251093,242492.94775496575,148323.4147315862,266.91639,127.29779869282724,274987.66900350526,130112.0637620368,3643.68999,1633.525521321866,3768870.49323986,1671803.5713172532,1310.74955,566.3484018443158,1357074.4345685192,580492.9964959858,2233.05642,927.709330636089,2292267.96444667,937816.0902964256,0.3822,100000,0,407333,4249.426222667335,0,0.0,0,0.0,19492,202.7624770489067,0,0.0,24833,255.581288599566,2040292,0,73268,0,0,3642,0,0,40,0.4172926055750292,0,0.0,0,0.0,0,0.0,0.07051,0.1844845630559916,0.3210892072046518,0.02264,0.3240877878012656,0.6759122121987343,25.375182201393176,4.535665095155892,0.3320519860882299,0.1991579718103606,0.2297272560863994,0.23906278601501,11.086627223634002,5.577901211386091,24.102056850937256,13040.515133387778,61.59804013401386,12.814191789757157,20.390779959556635,13.924117038973822,14.468951345726245,0.537799743730551,0.7601102941176471,0.6957001102535832,0.5713147410358566,0.1010719754977029,0.6953298739807264,0.9302949061662198,0.8413793103448276,0.6881720430107527,0.1259541984732824,0.4861448711716091,0.6713286713286714,0.649746192893401,0.5379098360655737,0.0948275862068965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019239532175586,0.0044482272952954,0.0068871780827475,0.0092899059841208,0.0112414367897871,0.0135044370267849,0.0158215919394439,0.0179546034174955,0.0202439074214042,0.0225663897868161,0.0245633802816901,0.0265330611993723,0.0288000328673698,0.0308972868416449,0.0331073283323716,0.0351639505000567,0.037370227902552,0.0392374242345749,0.0411021480258718,0.0433330558907986,0.0585941166042733,0.0722071841392932,0.086102149411321,0.0991377952342445,0.1111017511346046,0.1257789231321687,0.139450377150606,0.1526659933017915,0.1648187473988624,0.1762663179781783,0.1900585424648099,0.2032206432634698,0.2148455760053051,0.2258487637452725,0.2365496754318407,0.2478118283143876,0.2584727321422593,0.268532271131515,0.2776800408603371,0.2870071253465301,0.2949269828045083,0.3027864211683784,0.3097078071929845,0.3163906133895827,0.3234640197305276,0.3293451580674207,0.3351616700478373,0.3408651153317378,0.3465608122984471,0.3522035018169805,0.3536429197277078,0.3540917668774191,0.3546985027447328,0.3554553887181865,0.3560916695245053,0.3559665724468477,0.3554182418909045,0.3567094284866273,0.3575592893872427,0.3589185102514716,0.3601715732587581,0.3604048776599984,0.3601412650411318,0.3613069414316703,0.3642379272594575,0.3667132351002978,0.3683271461049239,0.3704492702934724,0.3731839230796422,0.3746752468124225,0.3768115942028985,0.3775220765319775,0.3791107435913746,0.3816676885346413,0.3836567732115677,0.3818378119001919,0.3810261974887614,0.3843800978792822,0.3862815884476534,0.3857589984350548,0.0,2.1500071430899697,59.52703096073808,204.09352334840483,317.16238821064354,fqhc6_80Compliance_baseline_low_initial_treat_cost,92 -100000,95644,41828,393.3963447785538,7305,75.12232863535611,5678,58.79093304336916,2259,23.30517335117728,77.31769350596971,79.73980045086542,63.289715480586615,65.08108155855925,77.04280186898634,79.46267257047141,63.18904766707331,64.98193644821069,0.2748916369833694,277.12788039400493,0.1006678135133043,99.14511034855876,90.37974,63.3026550125039,94495.98511145498,66185.70429143897,238.08952,145.56011341935377,248398.20584668143,151654.64997214018,275.08272,131.51298035323114,283386.9976161599,134397.86610733316,3779.40532,1700.3612132662863,3915025.992221153,1741294.1253672852,1386.78713,598.2541506411736,1433502.9066120195,609057.0664559965,2229.73778,926.8948944074276,2300733.386307557,942583.347488646,0.38239,100000,0,410817,4295.272050520681,0,0.0,0,0.0,19827,206.72493831291035,0,0.0,25666,264.2193969302831,2030973,0,72844,0,0,3606,0,0,50,0.5123165070469659,0,0.0,0,0.0,0,0.0,0.07305,0.1910353304218206,0.3092402464065708,0.02259,0.3172763963025647,0.6827236036974352,25.293793089029226,4.537444325914045,0.3316308559351884,0.2000704473406128,0.2330045790771398,0.2352941176470588,11.03112443315528,5.491955519555661,24.12998649543412,13099.981584059691,64.12737380463118,13.34264899429392,21.40522930363904,14.713332035473464,14.666163471224744,0.5484325466713632,0.7570422535211268,0.7010090281465746,0.5978835978835979,0.1070359281437125,0.7203626220362622,0.9133858267716536,0.8669438669438669,0.77,0.1360294117647058,0.4903393025447691,0.6781456953642384,0.6440798858773181,0.5474095796676441,0.0996240601503759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021983142880298,0.0047864357279032,0.0068934010152284,0.0091769225297005,0.0113036312024988,0.0136715566422167,0.0158019301001775,0.0182265858866559,0.0200587434629987,0.0224481846696324,0.0246163321870348,0.026877519124784,0.0288329849347653,0.0310601293570315,0.0328150023247404,0.0349348593188944,0.0369836595885866,0.0391386993237979,0.0410457081009075,0.0430606540964458,0.0577815400050163,0.0718596755941154,0.0858664369892653,0.0992132452842111,0.1114126704191439,0.1259968439892822,0.1396297791851741,0.1517922808812714,0.1644185822627745,0.1761022501476827,0.19017571109601,0.2034043383101826,0.2163760523650304,0.2280720965375265,0.2387931414466434,0.2499223602484472,0.2602820868165765,0.2704349392977003,0.2797497388381705,0.2884287007643911,0.2972309402758636,0.3048827599124357,0.3126458844299103,0.319480114250054,0.3249732281931464,0.3311577752553916,0.3369950522953592,0.343333757799567,0.3492814899356713,0.3547973285723732,0.35541014570966,0.3555610677029504,0.3560171010116688,0.3569682151589242,0.3573871409028727,0.3574157906851837,0.3578467935187977,0.3574434508153603,0.3585134765357778,0.3601627612299894,0.3609852880619923,0.3630281620650865,0.3647250271217558,0.3652255345715623,0.3658659499412061,0.3670167027125622,0.3679384965831435,0.3690618136178224,0.3714115252333824,0.3713162284534117,0.3747828472158727,0.3779993601365042,0.3777144666033555,0.3799327011318446,0.3827534039334342,0.3825104104699584,0.3832178598922248,0.3908138597904915,0.3949972512369434,0.4039785768936496,0.0,2.2746154196399004,63.49191792878247,215.38004573819867,319.1282492177191,fqhc6_80Compliance_baseline_low_initial_treat_cost,93 -100000,95720,41646,391.2244045131634,7122,73.22398662766402,5469,56.64437944003343,2242,23.098620977852068,77.34880342590687,79.70673073539926,63.338894218876014,65.07726612741473,77.07706542550409,79.43240924509989,63.23878301216503,64.97835339839862,0.2717380004027774,274.32149029937136,0.1001112067109843,98.91272901610648,90.63934,63.4961517565033,94692.16464688675,66335.3027126027,236.2743,145.12637080098636,246370.4346009193,151146.93982551852,271.79185,129.8721378017543,280741.08859172586,133221.0917593426,3609.51121,1625.9044032730642,3739915.3468449647,1667614.0443721935,1325.5199,577.5479001502681,1372162.317175094,590745.6854892061,2200.7122,914.8922251207616,2269236.54408692,930981.783465083,0.37971,100000,0,411997,4304.189302131216,0,0.0,0,0.0,19752,205.86084412870875,0,0.0,25333,261.46050982030926,2031083,0,72884,0,0,3440,0,0,50,0.5223568742164647,0,0.0,0,0.0,0,0.0,0.07122,0.1875641937267915,0.3147992137040157,0.02242,0.3207043756670224,0.6792956243329776,25.21939987441661,4.558029459836392,0.3313219967087218,0.2035106966538672,0.2329493508868166,0.2322179557505942,11.176443377565253,5.682693728563939,23.859878947646628,12962.870432281592,61.602128986234106,12.954680768948853,20.43975904003585,14.116559928580548,14.091129248668873,0.5576887913695374,0.7762803234501348,0.7064017660044151,0.5934065934065934,0.1181102362204724,0.7038690476190477,0.9120234604105572,0.8726851851851852,0.7474402730375427,0.1402877697841726,0.5100606060606061,0.716321243523316,0.6543478260869565,0.5474006116207951,0.1118951612903225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021265176754123,0.0043790293151684,0.0066764750646846,0.0090004977701927,0.011184317553278,0.0132641115691963,0.0156257963244212,0.0179034398285189,0.0203975269531449,0.0223837060539378,0.0244552405551114,0.0265307798099226,0.0284380654712946,0.0304739941522876,0.0326999649274824,0.0346666115582926,0.036653171948934,0.0387321020958705,0.040767735160482,0.0428970346135411,0.0569874057519998,0.0712693479011647,0.0845057123973184,0.0975350593879204,0.109620394688268,0.1248823212075695,0.1387037901617079,0.1511780174387037,0.1634277411566115,0.1747870674304348,0.1892430493466763,0.2024453581475871,0.2143983641683253,0.2253636661927157,0.2367245439140864,0.2479529312694596,0.2589249810106787,0.2686046249802977,0.2779253809296728,0.286989401317674,0.2950145880609456,0.3027040941694066,0.3101361752516282,0.3169793227449805,0.3228173325720672,0.3288270524733196,0.3345255812208451,0.3402853727395274,0.3451586192620193,0.3505090736442287,0.3508594676150447,0.3512862179134075,0.3509316332143814,0.3517140540853553,0.3521827169316896,0.3518620774280631,0.3513007614213198,0.3517169957095655,0.3531384762817441,0.3540253744430328,0.3550976016801365,0.3576274203437432,0.3578563035084774,0.3588909576257879,0.3597674250283481,0.3611009462073292,0.361553442547829,0.3633862500790589,0.365108484741577,0.368555568867058,0.3694065813024921,0.3720017209852641,0.3715693173821253,0.3721757969668833,0.3762773374080794,0.375919006869953,0.376232973226867,0.379783693843594,0.3774964838255977,0.3739742086752637,0.0,1.9040381740491823,59.54867308978455,204.9923956990974,317.03463340350487,fqhc6_80Compliance_baseline_low_initial_treat_cost,94 -100000,95651,41610,391.8098085749234,7101,73.19317100709873,5544,57.51116036424084,2277,23.51256129052493,77.26744378178137,79.68307453134402,63.28338998351626,65.06953735682872,76.98749323103262,79.40000837324224,63.18111161780917,64.96831238260175,0.2799505507487509,283.06615810177504,0.102278365707086,101.22497422696595,89.68476,62.82751293899639,93762.49072147704,65684.11510490888,235.20242,144.0953789581117,245456.14787090567,150206.70872036013,269.23121,128.2668930236259,278801.35074385005,132015.48345041776,3656.14343,1647.637234716681,3795262.537767509,1695434.8357222416,1319.70839,576.163895615024,1367542.398929441,590190.8873038695,2232.90342,927.3354384877756,2307725.773907225,946301.5736971016,0.38061,100000,0,407658,4261.931396430775,0,0.0,0,0.0,19696,205.45524876896215,0,0.0,25169,260.45728743034573,2034684,0,73017,0,0,3639,0,0,34,0.3554589079047788,0,0.0,1,0.0104546737619052,0,0.0,0.07101,0.1865689288247812,0.320659062103929,0.02277,0.3111170712082607,0.6888829287917393,25.314087231568504,4.506797949405655,0.3354978354978355,0.2050865800865801,0.2299783549783549,0.2294372294372294,11.121151217272638,5.686319959078134,24.34702143965874,13040.313426427088,62.78469982329374,13.42985948678845,20.99982743687096,14.223923277415183,14.131089622219148,0.5447330447330447,0.7590149516270889,0.6795698924731183,0.5905882352941176,0.110062893081761,0.7130620985010707,0.9098360655737704,0.8556485355648535,0.7535211267605634,0.1575091575091575,0.4878107651460294,0.6874189364461738,0.6186685962373372,0.5438950554994955,0.0970970970970971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000385028471,0.0044007300750354,0.0065992527615334,0.0085968620437362,0.0107732530341102,0.0127816026398337,0.0147745579868262,0.0169680139664519,0.0191515250667184,0.0214129911624048,0.0236398133429054,0.0258556929777704,0.0281561188379557,0.030355486862442,0.0324628406275805,0.0344061120473084,0.0362805920064627,0.0384240134515184,0.0402754373920822,0.0423908170605836,0.0572823042514945,0.0714390448261416,0.0850074033624917,0.0978288337615297,0.1105832673528635,0.1258788648877594,0.1394615262067866,0.1522091263667171,0.1641830960302093,0.175568419809041,0.1898963534982042,0.2038521535661669,0.2163162248051891,0.2276935197951546,0.2386472472670828,0.249958452896664,0.2604784069472814,0.2697328441853661,0.2795213007539286,0.2882541065349213,0.2966363688994384,0.3037475575939814,0.3115126826611089,0.3179369022332625,0.3240435496624293,0.3304770841564599,0.3369920685636958,0.3419946503630111,0.3476066934751589,0.3524999007713374,0.3532844348988937,0.353758293904239,0.3540680671912747,0.3551885629775696,0.355356609967174,0.3551521114202702,0.3552321882951654,0.356507706494533,0.3575971610292983,0.3588714014268813,0.3593591143577964,0.3603702229299363,0.3620031628887717,0.3632359550561798,0.3648200585686972,0.3671125594596725,0.3680057388809182,0.3691508896346482,0.3715156023093543,0.3731361279691331,0.3743862899490505,0.3748370981754995,0.3771052461766793,0.379624581353688,0.3794724220623501,0.3788819875776397,0.3755890669180018,0.3786367414796342,0.3737431772479173,0.3711967545638945,0.0,1.77172000868047,62.469404491494565,211.39027534768564,312.52362708891246,fqhc6_80Compliance_baseline_low_initial_treat_cost,95 -100000,95829,41647,390.2472111782446,7078,72.63980632167716,5528,56.99735988062069,2240,22.926254056705176,77.40182060844235,79.7166619967504,63.36325590393732,65.07614760743044,77.12064423981353,79.43859809902308,63.25968232771446,64.97724296407611,0.2811763686288202,278.0638977273213,0.103573576222864,98.9046433543308,89.47488,62.65880969710592,93369.0845151259,65385.84635038026,234.03665,143.71516728547215,243543.39500568723,149291.19189125643,270.40108,129.6804675394837,278838.4935666656,132648.01465241215,3682.84826,1662.0831529796533,3801480.731302633,1692821.3173472064,1366.74111,600.5719516920624,1409510.1900259838,610062.0166085223,2218.48236,925.023978934795,2273572.9059053105,928250.5325814264,0.38039,100000,0,406704,4244.049296142087,0,0.0,0,0.0,19536,203.16396915338785,0,0.0,25139,258.92996900729423,2040957,0,73257,0,0,3548,0,0,54,0.5530684865750451,0,0.0,0,0.0,0,0.0,0.07078,0.1860721890691132,0.316473580107375,0.0224,0.3223428494839834,0.6776571505160166,25.1608258284876,4.652945011792238,0.3276049204052098,0.196273516642547,0.2331765557163531,0.24294500723589,11.125094889260662,5.572325348208082,23.738961312028454,13035.013175543105,62.19792921704464,12.630273583882488,20.430991232553836,14.363542042022276,14.773122358586054,0.5412445730824892,0.7548387096774194,0.6946438431805633,0.5880527540729248,0.1169024571854058,0.7010014306151645,0.8983516483516484,0.881578947368421,0.7263513513513513,0.1276595744680851,0.4871670702179176,0.6823855755894591,0.6317343173431734,0.5468277945619335,0.1140433553251649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023795540614431,0.0045302982699733,0.0066043095402345,0.0086941507460109,0.0110714612498856,0.013345413086852,0.0155633695153646,0.0175239844866299,0.0198705958112293,0.0220159259789973,0.0241919776941764,0.0269229979676882,0.0291723202170963,0.0311776031960132,0.0333659945335464,0.0354105746081278,0.037410071942446,0.0394458500974739,0.0415571735720888,0.0435334644644957,0.0581333500203372,0.0714099039295832,0.0844388557057529,0.0977751633437677,0.1098379129848655,0.1254132384161218,0.1387149743100799,0.1513521557955608,0.1641016884031676,0.1756129958330209,0.1898461869420243,0.2031057511508785,0.2149282920469361,0.226699591355084,0.2370382585751979,0.2479045098712256,0.2579983044040873,0.2673496699317371,0.2777431103143897,0.2865484354785157,0.2948505848190011,0.302567101339103,0.3102885138813283,0.3174331063584923,0.3244553529118723,0.3315049243778273,0.3370008762047816,0.3419934349474541,0.3471938048742586,0.352472973508098,0.3528445210645404,0.3538334480385409,0.3543356997971602,0.3555385437580344,0.3556334367899731,0.3551254348459075,0.3553690212226797,0.3561731536352742,0.358068376068376,0.3594865752642102,0.3606701774770891,0.3618910155014236,0.3620584844355937,0.363284136973416,0.363157388250012,0.3649928263988522,0.3672660947875402,0.3696027633851468,0.37292953396968,0.3728813559322034,0.3742322852690439,0.378245275948825,0.3812060110329085,0.383107435485106,0.3830307591007431,0.3811280342693955,0.377743668457406,0.3770892784345699,0.380242825607064,0.3787528868360277,0.0,2.6983441355293585,61.06043275632005,203.2146543585492,317.51067713749575,fqhc6_80Compliance_baseline_low_initial_treat_cost,96 -100000,95698,41628,391.9517649271667,7173,73.79464565612658,5574,57.68145624777948,2340,24.065288720767416,77.32145341825886,79.70913281957888,63.3143933609397,65.080263879968,77.02815033159878,79.41496018265408,63.206999520621245,64.97560364820745,0.2933030866600745,294.1726369247988,0.1073938403184513,104.66023176054762,89.90344,62.97796060616047,93944.9518276244,65809.06665359826,233.75578,143.05009556508475,243660.20188509685,148876.97626352625,270.64396,129.53243137509054,279528.09881084244,132835.14972804527,3714.94456,1683.985597398096,3841451.179752973,1719339.9656997274,1357.95219,598.2293044235834,1400699.6279964054,606891.4519825053,2305.43232,960.1877609728178,2371056.782795879,969259.0187449724,0.381,100000,0,408652,4270.225083073837,0,0.0,0,0.0,19526,203.42117912600057,0,0.0,25312,261.2175803047086,2037372,0,73085,0,0,3587,0,0,40,0.4179815670128947,0,0.0,0,0.0,0,0.0,0.07173,0.188267716535433,0.3262233375156838,0.0234,0.3188636665339174,0.6811363334660826,25.179762548950396,4.544818551809077,0.3243631144599928,0.1980624327233584,0.2411194833153929,0.2364549695012558,11.033230589885486,5.499284307883493,24.97015240833823,12974.02607079008,63.12322295376134,12.946052934794697,20.56128976288846,15.12033869093677,14.49554156514142,0.5486185862935056,0.7690217391304348,0.7063053097345132,0.5944940476190477,0.1009104704097116,0.7195207892882312,0.9439775910364144,0.854978354978355,0.7447447447447447,0.1535580524344569,0.4902527075812274,0.6854082998661312,0.6552748885586924,0.5450049455984174,0.0875356803044719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024722379833022,0.0047256870499949,0.006862108169563,0.0088007235698824,0.0111712518313527,0.0136398826501507,0.0157663399859265,0.0178578721666326,0.0197712100921088,0.0219256044383483,0.024205950501343,0.0260017663127195,0.0278775035746983,0.0298724316303608,0.0320499587118084,0.0340884417746254,0.0360046818516101,0.0380775457677778,0.0401114843433135,0.0421070185312571,0.0559658230360257,0.0704624918870255,0.0841292164312252,0.0972596396699781,0.1090055394355051,0.1246692211613777,0.1382425374718695,0.1512388419011909,0.1639589568191534,0.1754660716967369,0.1898102759133367,0.2027780484372124,0.2152165872549659,0.2255848049191448,0.236260411279941,0.2471815544087355,0.2577038937855628,0.2672550452526842,0.2766341148048589,0.2860938681082071,0.2944490069748881,0.3025912673355317,0.309723093679338,0.316560563008788,0.3228934991067196,0.3293701641121679,0.3350273504487476,0.3403957498250302,0.3456107882850819,0.3510746374995052,0.3519523726142532,0.3535488308115543,0.3531069465971537,0.3534780784863958,0.3544496068620443,0.3543794443335227,0.3539267847216708,0.35505492152891,0.3555022283167638,0.3568855191697586,0.3578420299676229,0.3592294707576209,0.3609783821331593,0.3610135135135135,0.3620727299192159,0.3639572248854238,0.3654267589388696,0.3681449690033381,0.3696068691456145,0.3711249248044916,0.372136877932113,0.3741862592134287,0.3767373342727214,0.3762522326628873,0.3754426260886209,0.3762280169799878,0.3752154159486135,0.3695154917862341,0.3777464788732394,0.3765723270440251,0.0,2.098376513747389,62.7144437963581,208.7341201871536,318.45141831095714,fqhc6_80Compliance_baseline_low_initial_treat_cost,97 -100000,95717,41762,392.39633502930513,7171,73.85312953811757,5541,57.419267214810326,2218,22.95308043503244,77.3455376358958,79.73282435417795,63.32130932583449,65.08737508655126,77.06874782621676,79.44989026648942,63.221311362415,64.98650054284337,0.2767898096790304,282.9340876885311,0.09999796341949,100.87454370788862,90.79532,63.59847443459248,94858.09208395582,66444.28307886005,234.93812,143.26329297064942,244970.94560005012,149194.14257472678,270.87299,129.00121764776176,279291.964854728,132038.09197646176,3630.38645,1623.983721370171,3766877.8273451943,1670704.346033093,1323.73177,569.3240447229928,1373403.6900446103,585255.1394231232,2186.14342,909.8055399877884,2264388.499430613,934090.1192889712,0.38196,100000,0,412706,4311.731458361629,0,0.0,0,0.0,19558,203.8509355704838,0,0.0,25179,259.3687641693743,2036183,0,72945,0,0,3624,0,0,45,0.4701359215186435,0,0.0,1,0.0104474649226365,0,0.0,0.07171,0.1877421719551785,0.3093013526704783,0.02218,0.3162871221201225,0.6837128778798774,25.4202410611952,4.489256905839567,0.3344161703663598,0.213499368345064,0.2169283522829814,0.2351561090055946,10.803002299194896,5.347395253055168,23.751020949163596,13076.44480470998,62.393290760441765,13.943286082577124,20.78780230746188,13.23936304773346,14.422839322669295,0.5392528424472117,0.7531699070160609,0.6832164058283864,0.5615640599001663,0.1197237145049884,0.702819956616052,0.9047619047619048,0.8787234042553191,0.6984126984126984,0.1448763250883392,0.4848484848484848,0.6819875776397516,0.6167751265365148,0.5252631578947369,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002127681131521,0.0042699934073735,0.0066602365602314,0.0087095266163946,0.0108346219581671,0.0131391322061519,0.0154392119271481,0.0176260939717941,0.0198073462041884,0.0221193626346618,0.0245013076252499,0.0266536565324568,0.0288018433179723,0.0308513488448776,0.0332401110411657,0.0351397733851625,0.0372702977066025,0.0393445004877846,0.0413044382513206,0.0432594630075328,0.0587541120568116,0.072618624024112,0.0858956868506663,0.0981041955981988,0.1103388632840102,0.1258976447072012,0.1391724137931034,0.1527501198019275,0.1645201628849011,0.1761883807540811,0.1903750808363871,0.2041280429697652,0.2162953449645729,0.227085749294357,0.2379631769509282,0.2492549714728854,0.2605430258121394,0.2701164294954722,0.280685633905073,0.2888916870807482,0.2966947789770821,0.3043956043956043,0.3117142688191118,0.3186526325873238,0.3248382907974417,0.331281925041541,0.3369461946194619,0.3430705141231457,0.3482669973775659,0.3527337324824001,0.3541691855075968,0.3545898759196222,0.355325164938737,0.356995454217476,0.3573336102786267,0.3565057752619903,0.3568339853959102,0.3578119084069995,0.3585261031111415,0.3595139088041296,0.3596791806303422,0.3604237473416413,0.3608223510806536,0.3607865168539326,0.3628536880290205,0.362729920495395,0.364563635321758,0.3668195476830618,0.3703690623344517,0.3717461713783038,0.3733571461281311,0.378832311383631,0.3841582906631266,0.3808539944903581,0.3831144108128688,0.3821710127349909,0.3849033063006862,0.3841702831163464,0.3830611680044284,0.3867554858934169,0.0,1.819004511776517,61.618045850007256,206.8418247931662,316.9119270873694,fqhc6_80Compliance_baseline_low_initial_treat_cost,98 -100000,95616,41669,390.7400435073628,7370,75.83458835341365,5726,59.35199129852744,2317,23.939508032128515,77.23812690061078,79.66935206083242,63.25655152000609,65.05428391429717,76.95543131746868,79.38256746753723,63.153309293512,64.95114349306104,0.2826955831421003,286.7845932951951,0.1032422264940962,103.14042123613376,91.4881,64.00195827529126,95682.83550870148,66936.45234614631,237.59669,144.87917770292518,247952.9472054886,150984.3307636015,272.87167,129.77491684824585,281389.17126840696,132701.54266009026,3759.22074,1697.9953826346084,3900891.4512215527,1745158.7732540648,1379.84471,603.980238245613,1431792.1582161982,620354.2484998469,2286.81588,952.5202054023104,2364908.27894913,974199.2137905258,0.38113,100000,0,415855,4349.219795850067,0,0.0,0,0.0,19905,207.63261378848728,0,0.0,25460,262.33057228915663,2023404,0,72742,0,0,3563,0,0,38,0.3974230254350736,0,0.0,0,0.0,0,0.0,0.0737,0.1933723401464067,0.31438263229308,0.02317,0.3184451023297722,0.6815548976702278,25.293756812497083,4.501389923544546,0.3292001397135871,0.2135871463499825,0.2247642333216905,0.2324484806147397,10.90123446123304,5.3992732637054495,24.778600732469723,13141.566035060603,64.94779093577195,14.359559289959874,21.380787250499445,14.310740972314038,14.896703422998588,0.5387705204331121,0.7636958299264105,0.6710875331564987,0.5742035742035742,0.1104432757325319,0.6856140350877193,0.9029649595687332,0.8239130434782609,0.7474402730375427,0.1461794019933555,0.4901185770750988,0.7030516431924883,0.6217543859649123,0.5231388329979879,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025235122425814,0.0048989279157749,0.0071785395175046,0.0092190724007196,0.0115311024263149,0.0140081705838605,0.0163190371768065,0.0184489028725534,0.0206308941758893,0.0226972437597943,0.0249425428876303,0.0271467176309813,0.0292192420905292,0.0311949114975825,0.033427650873642,0.0355106728610303,0.0377542346526237,0.0400540147501817,0.0420006245446028,0.0441563047650838,0.0591875561874098,0.0735691682209694,0.0870058515164567,0.0995755794972249,0.111636747624076,0.1272983392645314,0.1404882297951899,0.1535903475767685,0.1657519444533598,0.1774271505751694,0.191588986708096,0.2039179124703229,0.2167801688913102,0.2282887384129906,0.2393625814130327,0.2505547911766011,0.2613087248322148,0.2717338595996617,0.2809485896269336,0.2900373241458512,0.2981548102587907,0.3062991202346041,0.3137739051983048,0.3207370168137974,0.3265303634346463,0.3324840134077106,0.3382452702193412,0.3435396308360477,0.3488502159096821,0.3540029420729687,0.3547344360739548,0.3554787417905288,0.3558614640219575,0.3562125194209296,0.3571449889572017,0.3568250057741166,0.3564102564102564,0.3575051631557208,0.3595608102294044,0.3599877781372443,0.3605964072307779,0.3613498885705189,0.3626540604423434,0.3633288990101689,0.3649785449344226,0.3664220521318288,0.3674062562951452,0.3699473316834824,0.3704687057490796,0.371515175686994,0.3738790526557829,0.3776530339481422,0.3805719358315896,0.3815144083384427,0.3840709634802302,0.381624184943687,0.3828077622801697,0.3876528362397274,0.3836183121897407,0.3879508825786646,0.0,2.0692701404796123,63.3865890663236,222.1908932292152,322.712154110205,fqhc6_80Compliance_baseline_low_initial_treat_cost,99 -100000,95729,44768,423.5707048020976,5953,61.11000846138579,4679,48.39703747035904,1850,18.949325700675868,77.33641368994157,79.71220713802538,63.332022412709286,65.08959024199622,77.11021120689507,79.48787839117273,63.24811478846526,65.00922306613954,0.2262024830464923,224.3287468526489,0.083907624244027,80.3671758566793,167.53902,117.28840044468588,175013.8620480732,122521.28450593437,360.70373,234.0290833402628,376328.18686082587,244001.883797243,367.50733,178.06233872707273,381277.97219233465,183895.63550547967,3321.12008,1522.260996594675,3434022.960649333,1554906.8271836909,1122.66892,499.3529146549766,1158504.664208338,507379.0853920716,1807.08434,757.9023408806197,1852106.4045378095,760288.329081618,0.38173,100000,0,761541,7955.175547639691,0,0.0,0,0.0,30824,321.5013214386445,0,0.0,33628,348.69266366513807,1568508,0,56363,0,0,6608,0,0,70,0.7312308704781205,0,0.0,0,0.0,0,0.0,0.05953,0.1559479213056348,0.3107676801612632,0.0185,0.3392828429007879,0.6607171570992121,24.270684197397077,4.300728091989864,0.3171617867065612,0.2417183158794614,0.2222697157512289,0.2188501816627484,11.242330802213075,5.917847180922554,19.85088895471109,12275.225585168806,53.35687633551416,13.565494951202275,16.89956938913571,11.678977126873995,11.212834868302169,0.5640094037187433,0.7798408488063661,0.6907008086253369,0.5855769230769231,0.1201171875,0.7515337423312883,0.929440389294404,0.8734793187347932,0.7730769230769231,0.1711711711711711,0.4915555555555556,0.6944444444444444,0.6206896551724138,0.5230769230769231,0.1059850374064838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002128004539743,0.0044219515410906,0.0065079445657139,0.0084051548906415,0.0106812609991556,0.0131688835475526,0.0154702780978798,0.0179089238309168,0.0200280126363571,0.0219785844440349,0.0242939880067654,0.0265086959200016,0.0286392990827197,0.0306320039551746,0.0327933133835517,0.0347921361089864,0.0370481584642306,0.0390285400089219,0.0411266434547627,0.04321875,0.0578296645921223,0.0716497865572947,0.0845681925436526,0.0971227937388964,0.1098006977160864,0.1256314332213133,0.1389080270926301,0.1501998979244641,0.1611526147278548,0.1709780734170978,0.1833188064262732,0.1956164442810493,0.2076252770654961,0.2178642812674072,0.2283149672046495,0.2380541735765616,0.2482592662737714,0.257205460980954,0.2661104750677291,0.2730215004574565,0.2802223197984793,0.286615129504636,0.2938883507760637,0.2985151417255943,0.3036296826301556,0.3100894405964347,0.3151712071982004,0.3196258831901591,0.323548816931655,0.328074294910693,0.3267855940760686,0.3252062757414218,0.3249376312562544,0.3231405675933694,0.3219627628700272,0.32,0.3180852750039626,0.3188901308435795,0.3194328036535929,0.3203954660850288,0.3212231361600869,0.323001856900162,0.3237459733087897,0.3239040713887339,0.3255847461697325,0.327884640412296,0.328851764975113,0.3306922567000221,0.3348693235780365,0.3368911545660918,0.3397603635862828,0.3414333226048707,0.3467613018735213,0.3504741346079716,0.3532758130274011,0.3562567746597615,0.3566131025957972,0.3616026032133415,0.3638600328048114,0.3680424081787202,0.0,1.903680893495089,57.45275602916647,173.23081060117806,253.2580231933536,fqhc6_80Compliance_implementation,0 -100000,95621,44750,424.2268957655745,6157,63.40657386975665,4849,50.25046799343241,1907,19.62957927651876,77.26635035352784,79.7043360267083,63.26822878755484,65.07215976446888,77.03420950826772,79.47122831389784,63.183218462869895,64.98866390342157,0.232140845260119,233.10771281046527,0.0850103246849443,83.49586104731088,165.56144,115.9955106637159,173143.3890045074,121307.56911527374,362.50486,234.6933590833552,378664.10098200187,244999.42385391836,375.80496,181.9013503366709,389529.4757427762,187575.6583035819,3463.96105,1576.8004288621166,3592304.054548687,1619076.050748032,1167.15489,518.1395235056622,1205532.163436902,526919.824026889,1870.33642,773.7999987341577,1927151.483460746,785362.9413338676,0.38184,100000,0,752552,7870.154045659427,0,0.0,0,0.0,30828,321.93764967946373,0,0.0,34331,355.6645506740151,1573109,0,56463,0,0,6635,0,0,79,0.82617834994405,0,0.0,0,0.0,0,0.0,0.06157,0.1612455478734548,0.3097287640084457,0.01907,0.3399503722084367,0.6600496277915633,24.403271464884668,4.3473498200290805,0.3099608166632295,0.2458238812126211,0.2221076510620746,0.2221076510620746,11.211516597065913,5.720131872206182,20.184779495422895,12281.509775837598,55.3166773053236,14.520094109997917,17.099576636292976,11.989963699616888,11.7070428594158,0.574138997731491,0.8263422818791947,0.6952761144377911,0.5793871866295265,0.1207056638811513,0.7470414201183432,0.9284210526315788,0.8647342995169082,0.6972111553784861,0.1698113207547169,0.5072919645410352,0.7587168758716876,0.6308539944903582,0.5435835351089588,0.1086705202312138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046259193507481,0.006743375953365,0.0088864486741499,0.011074693104782,0.0131781444601852,0.0154412965382103,0.0175551536331402,0.0194810509945158,0.0217954892457141,0.0241289064504541,0.0262424834249884,0.0284017211916575,0.0305292352741032,0.0326808862263079,0.0345494805678572,0.0367429856655714,0.0388542110237528,0.0409021366943163,0.0429364036459962,0.0571097033180706,0.0713709381647473,0.0847407780858751,0.0979704466702476,0.1099294525177424,0.1255242977587594,0.1381644668324512,0.1494437985942982,0.1614173649682687,0.1713021152255417,0.1839604836013416,0.1956557083861737,0.2072311462020147,0.2175689590955896,0.2274180038793863,0.2373278023026243,0.2468555215477759,0.256319315430952,0.2650533969552374,0.2729733449557278,0.2811515656846396,0.2879490421994286,0.2941232205035886,0.3003320506826818,0.3055987747362279,0.3105056637299178,0.3150094584267692,0.3199016823524916,0.324108982082475,0.3278340174482294,0.3265998707175178,0.3254850694922251,0.3245013522650439,0.3233925733275538,0.3229200725262313,0.3206264639691361,0.318104103343465,0.3185103656733581,0.3196540584887278,0.3202961532271045,0.3219157491263011,0.3227514276649746,0.3241931417044881,0.3248941366253668,0.3262589234034343,0.3277737111785004,0.3283808108803108,0.3322605073835668,0.3360329589070037,0.3388722853157999,0.3432406519654842,0.347242206235012,0.3521269841269841,0.3541128173939486,0.3601496725912067,0.3654050229925716,0.3681880628911616,0.3743932038834951,0.3701067615658363,0.3744343891402715,0.0,1.83688722933704,59.95070506386551,179.61797102637712,261.4498629950587,fqhc6_80Compliance_implementation,1 -100000,95702,44557,422.0496959311195,5981,61.116800066874255,4647,47.95093101502581,1791,18.25458193141209,77.34534288058313,79.7129704918787,63.32656324425341,65.0742144116201,77.11575113599481,79.48961395025711,63.239193195528266,64.9924579959579,0.2295917445883191,223.35654162159813,0.0873700487251412,81.75641566219838,167.618,117.45327827797368,175145.53509853504,122727.90357356548,360.56511,234.0450051264624,376115.4103362521,243913.2569083848,369.22708,178.88310247078826,382887.4736160164,184598.96680828417,3287.80519,1533.0517678408603,3390327.5793609326,1556990.7977101216,1112.83159,503.1136720340108,1145021.243025224,508052.6180451863,1750.39762,750.5349510506134,1786014.7959290298,746819.2134602594,0.37937,100000,0,761900,7961.160686297047,0,0.0,0,0.0,30737,320.52621679797704,0,0.0,33806,350.2539131888571,1564680,0,56177,0,0,6603,0,0,63,0.6582934525924223,0,0.0,0,0.0,0,0.0,0.05981,0.1576561140838759,0.299448252800535,0.01791,0.3401848311026131,0.6598151688973869,24.28707685262247,4.322729660898219,0.3232192812567248,0.2418764794491069,0.2229395308801377,0.2119647084140305,11.295701007480686,5.986215075865801,19.203037502991,12261.60044631625,53.01266696883148,13.595844887288614,17.020225281521515,11.552751567503783,10.843845232517555,0.5829567462879277,0.8051601423487544,0.7190412782956058,0.5801158301158301,0.1248730964467005,0.7364457831325302,0.9262672811059908,0.8514150943396226,0.7131474103585658,0.1643835616438356,0.5215426333232901,0.7289855072463768,0.6669758812615956,0.5375796178343949,0.1135770234986945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0045608416273082,0.0070309646524085,0.0091306114158033,0.0113079379283695,0.0135615308647003,0.0157793339653221,0.0180374222920898,0.0200664451827242,0.0219676729212091,0.0241021908286601,0.0263101142980375,0.0285952334420226,0.0304225990563122,0.0325290511672067,0.0346502925427443,0.036393011381878,0.0385130296709112,0.0406970698941501,0.0426336796690184,0.0576734276105529,0.0718846161897385,0.0856735087940225,0.0983637607197348,0.1107933559865769,0.1261404288647573,0.1382612758005606,0.1500564562517309,0.1612651516771062,0.1716550806728458,0.1845964848001551,0.1967468757445149,0.2086067848630293,0.2184991732641284,0.2280823502197548,0.2384516443793937,0.2481774641912183,0.2579174826119251,0.2659482660731724,0.2736095515273735,0.2806373967181244,0.2876842105263157,0.2939561089936318,0.2995086878370281,0.3051242801953495,0.3102058424750401,0.3147366971673196,0.3184719043986778,0.3222433829530879,0.3265217161576667,0.3250694275930869,0.3240730538262354,0.3222942164626829,0.320979435898178,0.3206873465744253,0.318456987846557,0.3167267666223824,0.3175784194827756,0.3183877120087187,0.3182060959977211,0.3192494398805078,0.3215235244303523,0.3208398621121905,0.321872975448473,0.3235046537915775,0.3245120999219359,0.324564884630648,0.3284495954515635,0.3322166387493021,0.3319670515902731,0.333363607465601,0.3365257421027567,0.3410187331620826,0.3445684354361193,0.3442853131142937,0.3489988221436985,0.354290053151101,0.359903381642512,0.3566337719298245,0.3571707698319656,0.0,2.234119130127555,58.11311721184624,171.57076183986652,246.14670472334015,fqhc6_80Compliance_implementation,2 -100000,95671,44574,422.25961890227967,6070,62.192304878176245,4802,49.7015814614669,1911,19.661130332075547,77.2498286400838,79.64859631977897,63.26585613190741,65.03895823307138,77.00857164804859,79.4076049550872,63.17714726695163,64.95282182481567,0.2412569920352183,240.9913646917801,0.0887088649557839,86.13640825571167,167.38436,117.19460439785882,174958.30502451106,122497.52213090574,359.35617,232.59621016049468,375113.3258772251,242619.809065285,366.84467,177.34720387191996,380824.8685599607,183305.34002491145,3446.95004,1564.275715556833,3568279.948991857,1600871.8374550445,1135.91787,501.0957049600816,1173638.5947674843,510209.0791985843,1876.39328,780.6103154213123,1931743.391414326,789246.4213079646,0.37951,100000,0,760838,7952.650228386867,0,0.0,0,0.0,30681,320.17016650813724,0,0.0,33557,348.06785755349057,1562716,0,56182,0,0,6487,0,0,62,0.6480542693188113,0,0.0,0,0.0,0,0.0,0.0607,0.1599430845037021,0.314827018121911,0.01911,0.3448655448969964,0.6551344551030036,24.471573305689063,4.306692505084529,0.3173677634319033,0.236984589754269,0.2209496043315285,0.224698042482299,11.06588869857119,5.638073540447246,20.329215231658228,12293.607457268445,54.440293111262754,13.57669867000424,17.34970562182153,11.76065748627138,11.753231333165596,0.5603915035401916,0.7803163444639719,0.7093175853018373,0.5711592836946278,0.1075069508804448,0.7209119496855346,0.931472081218274,0.8625954198473282,0.7181467181467182,0.1106194690265486,0.5025495750708215,0.7002688172043011,0.6560565870910698,0.5236907730673317,0.1066822977725674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.004381027716085,0.0066381786624171,0.0087787035155456,0.0112500127147521,0.0134540565864787,0.0158053595464371,0.0181753203655485,0.0205154428308447,0.0225724849192449,0.0247812663473275,0.0269029275808936,0.0288830580850954,0.0307040598620945,0.0328002560422882,0.0348019443582583,0.0367438293992083,0.0387973546786266,0.040761972138703,0.0428635477379599,0.0581560580097797,0.0722670771679599,0.0853808289339728,0.0980311687765045,0.1108249870716494,0.1265174366301529,0.1392449423883608,0.1510811300446519,0.1619863709789573,0.1718426056224554,0.1849146580929158,0.1975624566273421,0.2088058269364968,0.2194207126484684,0.2296681345120242,0.2391702867554745,0.249090563123314,0.2577413787268605,0.2674368313225586,0.2755859375,0.2825274061687105,0.2894279337483848,0.2957970807778253,0.3005112781954887,0.3054384125978109,0.310536730150878,0.3149673530889,0.3187513570817314,0.3231808731808732,0.3267392283043351,0.3252530166065372,0.3237916471140309,0.3222655697848641,0.3215922938548134,0.3205422657042295,0.3186297080762501,0.3168012181002078,0.3179244040563677,0.3192995082163848,0.318844995698308,0.3195434287970815,0.3205204490459756,0.3207677930150996,0.3217709526054646,0.3219954100736804,0.3237243034540332,0.3250547637336064,0.3281186318462551,0.3310569447362891,0.3344307814359381,0.3391268832819023,0.3419119589917032,0.3431458699472759,0.3428375912408759,0.3422459893048128,0.3446647780925401,0.3469543924089379,0.3522333265347746,0.3528925619834711,0.3527175978715317,0.0,1.8629089979137703,56.15962912035514,179.18393201368832,266.3256343068284,fqhc6_80Compliance_implementation,3 -100000,95742,44781,423.3251864385536,6102,62.490860855215054,4819,49.7169476300892,1889,19.301873785799334,77.32698317968122,79.68587254506292,63.31555014592704,65.0608187771409,77.08881284491649,79.45157113798774,63.22629107490722,64.97579454908006,0.2381703347647317,234.3014070751792,0.0892590710198177,85.02422806083132,167.2242,117.16573992902036,174661.04739821603,122376.3229731574,362.5456,235.20666569792323,378022.5084080132,245022.09348367192,371.67038,180.37819532260716,384588.2058030958,185576.83518922317,3415.17779,1568.3155756497108,3527332.3619728023,1598487.279105869,1129.09065,504.8645224221165,1165567.671450356,513586.4331419301,1843.52282,781.545435332426,1886081.552505692,783556.3375878533,0.38157,100000,0,760110,7939.138518100729,0,0.0,0,0.0,30868,321.7501201144743,0,0.0,34100,352.54120448705896,1565748,0,56187,0,0,6601,0,0,61,0.6266842138246538,0,0.0,1,0.0104447368970775,0,0.0,0.06102,0.1599182325654532,0.3095706325794821,0.01889,0.3404654068405435,0.6595345931594565,24.545132129147063,4.259148745938559,0.3243411496161029,0.2398837933181158,0.2234903506951649,0.2122847063706163,11.238203280723498,5.989011855215401,20.293966600185968,12340.716958489978,54.96139981346752,13.921252613356232,17.729838231317288,11.94340455571159,11.366904413082407,0.5777132185100643,0.8088235294117647,0.7114523352527191,0.5784586815227484,0.1114369501466275,0.7343511450381679,0.893719806763285,0.8744292237442922,0.7068273092369478,0.1578947368421052,0.5192362496437731,0.761455525606469,0.648,0.5398550724637681,0.0995085995085995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022693885821386,0.0045223175356411,0.0068509834967419,0.0091433680104031,0.0114111365369946,0.0136143780866554,0.0157543745156422,0.0181901699586587,0.0205328945351225,0.0226305015353121,0.0248129548016808,0.02710027100271,0.0289872949303071,0.0311998022982824,0.0332989478027645,0.0353290071918657,0.0373541500584952,0.039458125012966,0.0415540680996133,0.0435267275776928,0.057816382352327,0.0724799916304859,0.0862960128327444,0.0995101234152597,0.1120667847204654,0.1269930217805032,0.13960123024711,0.1510428311348174,0.1621953826421547,0.1729082810068158,0.1858279259275227,0.198501061387168,0.2095017356010402,0.2197288810599678,0.2293795138277259,0.2401285888482429,0.2494525873625882,0.2584111465290997,0.2669158411342361,0.2741360536420425,0.2803937463810075,0.2878393890411601,0.2938924511976864,0.2991622257429545,0.3052024668231745,0.3104294932695036,0.3161304876367601,0.3201421891523437,0.3238638573743922,0.32840787545062,0.3278065863021079,0.3266469332966201,0.3258556794002846,0.3243997685854787,0.3233457249070632,0.3209213876023679,0.3192018764461631,0.3197083408601974,0.3204306588054345,0.3221314982528703,0.3224755700325732,0.3210644855381697,0.3224959569865372,0.3238005728607232,0.3262124711316397,0.3278380634390651,0.3304771122751082,0.3325799667263082,0.3370219918756128,0.3410978407023649,0.3435474366529169,0.3453305850642144,0.3466449674511768,0.3463484631070161,0.3484749556944315,0.3507042253521126,0.3518602885345482,0.3534621578099839,0.3591374066906276,0.3725868725868725,0.0,2.353361569489825,57.22217297034423,187.21310133770064,255.3684084581014,fqhc6_80Compliance_implementation,4 -100000,95768,45020,426.4994570211344,6207,63.528527274246095,4929,50.96692005680394,1897,19.46370395121544,77.39144353273707,79.7317260240461,63.36142006586866,65.0880151886042,77.15603771557959,79.49557333565396,63.27443700704482,65.00289813240414,0.2354058171574848,236.15268839213851,0.08698305882384,85.11705620006182,166.02102,116.30463854527764,173357.50981538717,121444.1551930474,363.0053,235.38786356851463,378535.78439562273,245278.9173508005,371.9284,179.67071585055686,385819.4386433882,185585.8315047767,3485.27812,1594.1442165162314,3603162.611728344,1628768.0948226957,1177.46073,519.4121554615003,1216664.9924818312,529738.4724886321,1858.8265,779.010838724594,1909130.71171999,787409.924624529,0.38223,100000,0,754641,7879.886809790327,0,0.0,0,0.0,30928,322.40414334642054,0,0.0,34068,353.1346587586668,1575371,0,56541,0,0,6541,0,0,71,0.7413749895580988,0,0.0,3,0.031325703784145,0,0.0,0.06207,0.162389137430343,0.3056226840663766,0.01897,0.3329738058551618,0.6670261941448382,24.16901938154411,4.362072006307506,0.3264353824305133,0.2438628525055792,0.208967336173666,0.2207344288902414,11.652835816606082,6.20484968861863,20.110005541433733,12335.555228351908,55.8652411195857,14.425434674418026,18.022755491181275,11.452820475373764,11.964230478612624,0.5715155203895314,0.7936772046589018,0.6960845245494096,0.5951456310679611,0.119485294117647,0.7218844984802432,0.9156908665105388,0.8459657701711492,0.7,0.1652173913043478,0.5167450871851647,0.7264516129032258,0.645,0.5615384615384615,0.1072261072261072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020958205086667,0.0043475176586235,0.0065948337087315,0.0086023907943246,0.0108590659983121,0.0129671850826479,0.0152027715508457,0.0173648662435978,0.0193586613409065,0.0212408938364573,0.0234016393442622,0.0258228003939592,0.0280926007747557,0.030155511871803,0.0322547392509973,0.0345842759304595,0.036502696045455,0.0387056627255756,0.0406224338118353,0.0426063857492577,0.0571270510625861,0.0719457581718494,0.0852470022974518,0.0982763516284743,0.1104984026232826,0.1264169697995093,0.139121305634206,0.1503239465089311,0.1622080543363342,0.1732237039578062,0.1848725926085412,0.1970950542379113,0.209351360751239,0.2198370040202761,0.2298949127203975,0.2401053365347378,0.2495123881279047,0.2586477987421384,0.2670028900096333,0.2736902310684054,0.2807418963425204,0.2873068922803655,0.2934944545605032,0.2998850189239687,0.3058389644421259,0.3110823949295428,0.315259237038148,0.3200752998639006,0.324625417281267,0.3291109207144269,0.3286194380965183,0.3281052573751579,0.3269133442051397,0.3261223607407941,0.3259291091221623,0.3242352582195438,0.3222783212369833,0.3227009520070664,0.323651593571234,0.3237901933554107,0.3249087335018253,0.3257008514925815,0.3269843265442964,0.3283191189308979,0.3295490153542073,0.3296927257525083,0.3317565257038641,0.3337952755905511,0.336209021444417,0.3391435848455906,0.343685679001052,0.3450561197220738,0.3487900671481059,0.353053580982955,0.3527644794893457,0.3538334901222953,0.3584423394978199,0.3573141486810551,0.358358088036727,0.3670552839413313,0.0,1.857444216180412,58.05507705204532,186.5861113056617,267.8337625817025,fqhc6_80Compliance_implementation,5 -100000,95728,44900,424.5988634464316,6174,63.32525488885175,4821,49.77644994150092,1862,19.16889520307538,77.37264048070351,79.73247834941566,63.34029949113111,65.08198492584387,77.14203020070568,79.50038681265245,63.255961959623136,64.99897658608828,0.2306102799978333,232.0915367632068,0.0843375315079768,83.00833975559385,167.2352,117.18382596281248,174698.31188367042,122413.3231267889,363.42945,236.0657624301421,379088.5425371887,246041.0668040093,378.46335,183.40934098644965,390835.2206251045,188242.7571002624,3398.04388,1557.908799555773,3512393.2391776703,1590139.47805843,1131.37825,501.21227750630527,1168274.621845228,509986.5843915112,1818.11372,758.6872630434165,1872672.2589002168,770269.5789314607,0.38238,100000,0,760160,7940.832358348655,0,0.0,0,0.0,30893,322.131455791409,0,0.0,34600,357.01153267591513,1565072,0,56184,0,0,6616,0,0,75,0.7730235667725222,0,0.0,0,0.0,0,0.0,0.06174,0.1614624195826141,0.3015873015873015,0.01862,0.3343099460292983,0.6656900539707016,24.52986645259169,4.248015473347772,0.3269031321302634,0.2466293300145198,0.2117817880107861,0.2146857498444306,11.198446682870888,5.761529701796628,19.715608121030627,12380.11073063327,54.7102858152479,14.1844137345818,17.96070455221274,11.32043644403417,11.244731084419184,0.5691765193943166,0.7788057190916736,0.6986040609137056,0.5905974534769833,0.1101449275362318,0.7387387387387387,0.9232505643340858,0.864406779661017,0.7411764705882353,0.1312217194570135,0.5044425336772714,0.693029490616622,0.6397248495270851,0.5404699738903395,0.1044226044226044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607594936708,0.004621324982518,0.0065836858496403,0.0089880565485862,0.01120499445851,0.0131726286214548,0.015463181929381,0.018117236381452,0.0201474000551983,0.0222847783805916,0.0244117496283385,0.0267553721214361,0.0291099411837288,0.0309886714727085,0.0331063654183431,0.0351392132950247,0.0371984677502847,0.0392162963884913,0.0414371531314307,0.0436602995396504,0.0585643435134429,0.0723837026806453,0.0859841892260269,0.0985758579010983,0.1114414015558788,0.1272702285557223,0.140590531138639,0.1523638259611189,0.163119734327115,0.1737727068007806,0.1866553235480987,0.1992383590098667,0.21143577976663,0.2223461609964677,0.2324033532090915,0.241824707550514,0.2513002522377732,0.2604613462123003,0.2689328548064692,0.2767013665963496,0.282875396402861,0.2889440179741621,0.2949454506686883,0.2997828356149591,0.3055332701237449,0.3108907960935188,0.316107063271489,0.3197806811098248,0.3241427517377966,0.3277858367400765,0.3273206623353913,0.3265791463330813,0.3252990009849444,0.3250209374187772,0.3252543253879854,0.3233641998928598,0.3208847850490932,0.3214373615555008,0.3227428454550103,0.3231908041068346,0.3247140911550157,0.3246625477155562,0.3251296420207427,0.324857938718663,0.326001533448342,0.3276765789610255,0.3288172103965307,0.3308258942505774,0.3342849185350229,0.3382439599292869,0.341354401805869,0.3437137126570252,0.3472606182457904,0.3497764643479579,0.351063829787234,0.3521426041789635,0.355074672355989,0.3586540398952246,0.3598682404611584,0.3668322506687046,0.0,2.3192070426131712,58.20507350662713,177.08850413448155,261.82657790828864,fqhc6_80Compliance_implementation,6 -100000,95730,44402,420.1817612033845,6028,61.56899613496292,4712,48.49054632821477,1816,18.46860963125457,77.33281654085012,79.70042712107235,63.319784280511655,65.07178997353434,77.10075759317526,79.47136867679909,63.233130145735934,64.9887872620946,0.232058947674858,229.0584442732637,0.0866541347757205,83.00271143973248,167.04556,116.94118079032413,174496.3334377938,122157.08764469248,358.49687,232.27206755882477,373739.4338242975,241885.70771571583,364.41757,176.8174938748762,376292.6773216338,181222.16100848807,3405.27928,1561.875339160229,3509226.041993106,1583701.666151944,1137.36191,511.5779795008536,1170447.8324454194,516790.174127789,1787.31346,758.4373118215613,1821801.8385041263,755992.3112648965,0.37847,100000,0,759298,7931.651519899718,0,0.0,0,0.0,30497,317.81050872244856,0,0.0,33361,344.050976705317,1571018,0,56442,0,0,6537,0,0,73,0.7625613705212577,0,0.0,1,0.010446046171524,0,0.0,0.06028,0.1592728617856104,0.3012607830126078,0.01816,0.3398734177215189,0.660126582278481,24.37423724352758,4.415364889317742,0.3230050933786078,0.2349320882852292,0.213497453310696,0.2285653650254669,11.294437069210176,5.871958839591694,19.42013792982986,12185.396951664874,53.3976183253767,13.336757429116036,17.07251243367096,11.176056547955689,11.812291914634027,0.5606960950764007,0.7813911472448057,0.7174770039421814,0.5576540755467196,0.1151346332404828,0.7421630094043887,0.9093023255813952,0.8888888888888888,0.7021276595744681,0.2098214285714285,0.4933061699650756,0.7001477104874446,0.6590308370044052,0.5136186770428015,0.0902696365767878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023001550324757,0.0045439331392695,0.0067722611432632,0.008995639401917,0.0114149676474178,0.0136183996088657,0.0157048307651515,0.017753956100051,0.0197646240835983,0.021953716977268,0.0242267037124373,0.0263892882079927,0.0288825368100682,0.0308959835221421,0.0328405022543668,0.0346260387811634,0.0365886495443247,0.038428808634288,0.0407399319961318,0.0426919470778206,0.0571365933102267,0.0712589322145614,0.0845182668512226,0.0969291744199493,0.109103749222645,0.1257018387911983,0.1378787396731464,0.1491229937417514,0.1597667264803896,0.1704452833426279,0.1834401076716016,0.1956418246342941,0.2069730517432629,0.2170708771622892,0.2257301578571035,0.235513666770035,0.2458450995055417,0.2548940146116871,0.2626410553322889,0.2701254080054973,0.277105086472345,0.2843343870741131,0.291173578781525,0.2975228411788686,0.3030155701141322,0.3082037996545768,0.3125665401620762,0.3168418908942799,0.3210231690250349,0.3246952226228685,0.3239470776858613,0.3234427493528666,0.321699523366331,0.3205154162087117,0.3198363095238095,0.317990285460368,0.3157703085667241,0.3165053322395406,0.3164289127022046,0.3173635618293943,0.3186095676413912,0.3189828901094559,0.3208458835341365,0.3210898623167385,0.3216558215477705,0.3243151755025518,0.3255866940077466,0.3276891178688113,0.3305049088359046,0.3330157974120822,0.3365047571357035,0.3385056860452758,0.3410233844606487,0.3449977227873083,0.3480657820968043,0.3514214934528725,0.3502360286279884,0.348219674109837,0.348052660449808,0.3510188389081122,0.0,2.862560100973135,55.02181238096097,177.23565916016102,254.4547364510183,fqhc6_80Compliance_implementation,7 -100000,95778,44826,425.2646745599198,6014,61.50681784961056,4746,48.94652216584184,1895,19.336382050157656,77.34910350822409,79.67762450796953,63.34642956891118,65.06683965992659,77.11005308548305,79.44322917122413,63.257184328342845,64.98243744534392,0.2390504227410446,234.39533674539348,0.0892452405683315,84.40221458266706,168.14578,117.82160862724584,175557.83165236274,123015.31523653225,366.0152,237.3098683028587,381536.72033243545,247157.941223724,373.81768,181.2212334867328,386978.721627096,186633.515205153,3380.14331,1547.2157016129115,3487629.580905845,1573951.2137304882,1142.98045,509.87601446680776,1177316.3252521455,516339.2995916228,1853.3457,780.7381675111252,1893357.5142517071,778986.9718667776,0.38099,100000,0,764299,7979.901438743761,0,0.0,0,0.0,31197,325.0955334210361,0,0.0,34181,353.6198291883313,1561171,0,56064,0,0,6688,0,0,72,0.7412975839963248,0,0.0,0,0.0,0,0.0,0.06014,0.1578519121236777,0.3150981044230129,0.01895,0.3362916006339144,0.6637083993660856,24.439834706852352,4.238017671079369,0.3128950695322376,0.2408343868520859,0.2225031605562579,0.2237673830594184,11.129717223751827,5.908032018839327,20.21412791173835,12230.36408531402,53.965022429965785,13.767181643000749,16.900337424860652,11.640378239495542,11.65712512260884,0.5598398651495997,0.773403324584427,0.6976430976430976,0.5823863636363636,0.1148775894538606,0.734958111195735,0.9002375296912114,0.8747044917257684,0.7429718875502008,0.1409090909090909,0.4928633847946402,0.6994459833795014,0.6271186440677966,0.5328376703841388,0.1080760095011876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0044800778438865,0.0066246664840571,0.0088571979969731,0.0111339325659901,0.0132945152489922,0.0154813591797631,0.0177680257182221,0.0197611092378587,0.0219969102014507,0.0240341764760119,0.0260130732368061,0.0281074970453727,0.0300341718473383,0.0319723682853902,0.034353825813915,0.0364859271523178,0.0384491751262456,0.0400469673826075,0.0419873163315248,0.0567406232389221,0.070807011672175,0.0832485819432358,0.0960663352705642,0.1079298171663417,0.1236169965444727,0.1364566219725475,0.1482820591894679,0.1599594472013233,0.1706574957948981,0.1838190976407783,0.196130595118364,0.2081004675437642,0.2179014708294603,0.2276663402396487,0.2383921846617341,0.2480746478558832,0.2572784418680491,0.2656902341622799,0.2729364625071551,0.2796423945225759,0.2861488423244767,0.2929542791539927,0.2985777447609005,0.304080641243624,0.3091413425383714,0.3144008610978998,0.3185249303071576,0.3224004768816089,0.3254569949281488,0.3241258505692919,0.3234010327022375,0.3221344151910859,0.3210493622062031,0.321326226076111,0.3194614443084455,0.3174851720047449,0.3183301894529648,0.3194913807817033,0.3207193370955068,0.3214633598081822,0.3232617040642684,0.3245672855286869,0.3246692188864262,0.3253340408084511,0.3247089601046435,0.3258928571428571,0.328977758091562,0.3331451157538114,0.3346381211056079,0.3396295449348273,0.344206374586931,0.3471347707180564,0.3495175371419819,0.3544015919643703,0.3588327128617749,0.3551343793692714,0.3569085690856908,0.3553398058252427,0.358019801980198,0.0,2.323350025687001,57.40474647578278,172.34640460170053,261.40649944529645,fqhc6_80Compliance_implementation,8 -100000,95665,44701,422.6728688653112,6169,63.19970731197407,4853,50.13327758323315,1906,19.589191449328386,77.31532774038504,79.70808390666815,63.31028192710126,65.07663193614601,77.07194885624325,79.46382783770916,63.22017489349391,64.98835195410625,0.2433788841417907,244.2560689589897,0.090107033607353,88.27998203976506,166.83788,116.86337465197292,174398.03480896878,122158.96582028216,360.00502,233.52062842526175,375735.1800554016,243519.51490456585,372.31769,180.47340815396493,385262.96973814873,185708.26854059752,3466.71408,1596.0652434442695,3584408.5611247583,1629028.3995566857,1168.53688,523.645815635981,1206529.3576543145,532435.6966881246,1874.12208,792.4312054266339,1927188.9405738772,801751.1149217105,0.38163,100000,0,758354,7927.183400407672,0,0.0,0,0.0,30750,320.81743584383,0,0.0,34137,352.8563215387028,1568140,0,56289,0,0,6661,0,0,65,0.6794543458945277,0,0.0,2,0.0209062875659854,0,0.0,0.06169,0.1616487173440243,0.3089641757172962,0.01906,0.331839258114374,0.668160741885626,24.343943884636406,4.2892041942195895,0.3156810220482176,0.2398516381619616,0.2169791881310529,0.2274881516587677,10.916627755891328,5.658434294495857,20.246727591514297,12303.109360298356,55.20474199528427,13.93036977075482,17.39277133809295,11.723880276146158,12.157720610290353,0.5627446940037091,0.7981099656357389,0.6899477806788512,0.5745489078822412,0.1268115942028985,0.7186796699174793,0.9404761904761904,0.8694581280788177,0.6707317073170732,0.1724137931034483,0.5036931818181818,0.717741935483871,0.6252220248667851,0.5452292441140025,0.1126927639383155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211358064712,0.0046837932642592,0.007174896994053,0.0095198423180866,0.01165771484375,0.013842627960275,0.0161867751904776,0.0183547148226834,0.0206270964574981,0.0227745179359569,0.0248910312291677,0.0271391884951207,0.0291445913276066,0.0314071387354711,0.0334640792733278,0.0358262056697245,0.0376529586687803,0.0396574987026466,0.0415864859523388,0.0437320215116521,0.0580792778485905,0.07202387184588,0.0852722941133255,0.0977313860010943,0.1103829634554299,0.1261299405127336,0.1382598078250252,0.1500298227675528,0.1614885590005023,0.1723349681795254,0.1854294643819377,0.1985145245287513,0.2101298616478169,0.2201138104618078,0.2297516109489453,0.2396636455409737,0.2487543291252374,0.2578488208476389,0.2664849826832453,0.2739361702127659,0.2807417875179539,0.2876025897697072,0.2942527918901955,0.2996411555032824,0.3043837580972521,0.3097780517879162,0.3144778530549885,0.3178110085905186,0.3224319635412621,0.3270401225195727,0.3254670599803343,0.3236124306387432,0.3227196552549677,0.3221794834716719,0.3209159261790841,0.3203436026214246,0.3184285058780715,0.319316580938964,0.3199733938225914,0.3209225230363413,0.3212684057104417,0.3227811877084608,0.3242580996460659,0.3246312025033527,0.3260440723633564,0.3251479367065509,0.326672384219554,0.3301788257635701,0.3313178459036102,0.3333066709326507,0.3363761467889908,0.3383390337751176,0.3394740185491043,0.3421560305579134,0.3444953253195955,0.3485686793360597,0.3477793145842938,0.3468731148200281,0.3445889842236369,0.3557508597630875,0.0,2.3159029063352468,58.25815475842404,181.29954722916452,262.7399192089243,fqhc6_80Compliance_implementation,9 -100000,95620,45027,426.7621836435892,6052,61.97448232587325,4795,49.49801296799833,1908,19.47291361639824,77.3146043072854,79.73351971113438,63.296484254502126,65.08292984880273,77.07001919892473,79.49162646393991,63.2054930849363,64.99535320630584,0.2445851083606811,241.8932471944686,0.0909911695658252,87.57664249689867,167.49546,117.28092441534942,175167.81008157288,122653.13157848715,362.71201,234.5603908779609,378679.8891445304,244665.9776148668,368.26713,178.05394239504062,381453.7962769295,183291.0854638217,3421.4841,1555.0777325076494,3535403.116502824,1584434.8922774782,1130.97783,492.9481131823433,1168255.9401798788,501030.8741725217,1867.88146,789.5663644262253,1910186.550930768,791626.6726651245,0.38325,100000,0,761343,7962.17318552604,0,0.0,0,0.0,30914,322.62079062957537,0,0.0,33677,348.46266471449485,1565399,0,56165,0,0,6608,0,0,72,0.7529805480025099,0,0.0,0,0.0,0,0.0,0.06052,0.1579125896934116,0.3152676801057502,0.01908,0.3277191877852983,0.6722808122147017,24.31310013764808,4.380403124353503,0.3236704900938477,0.2300312825860271,0.2248175182481751,0.2214807090719499,11.28298731857145,5.867674862021744,20.498931026459065,12306.873940563311,54.23446255750432,13.168016693588235,17.528052771929133,12.013082891672427,11.525310200314529,0.5632950990615224,0.7878513145965549,0.7190721649484536,0.5677179962894249,0.0979284369114877,0.7170393215111797,0.9112709832134293,0.8480392156862745,0.7038461538461539,0.0990566037735849,0.5062893081761006,0.7128279883381924,0.6730769230769231,0.5244498777506112,0.0976470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0042287371591404,0.0064664798798067,0.0087689884672052,0.0113118489583333,0.0135872886534935,0.0155649167185157,0.0178363469200122,0.0200161602111055,0.0218942970374087,0.0240102564102564,0.0264406779661016,0.0286507895684378,0.0308381845345422,0.0330308942082391,0.035030760481828,0.0371245324464061,0.0391607229991382,0.0411815504989023,0.0430846570227678,0.0574038652493388,0.070363813494516,0.0838618893602721,0.0968757236994463,0.1091582747482424,0.1248544018297719,0.1376720768184908,0.1494154882298404,0.1608369167575893,0.1711498796837401,0.1841279088584652,0.1967353486305156,0.2084027936673966,0.219577125328659,0.2289606825171125,0.2391601096474191,0.2489690087955564,0.2573102710011831,0.2651303379468648,0.2732768212528246,0.2801806496439117,0.2878373001942474,0.2938021665778725,0.2996498968874394,0.3046726020575482,0.3108785940523286,0.3167896909796071,0.3209889103672805,0.3258613102787772,0.3303380571609532,0.3293930744789703,0.3282176107375166,0.3270864743761361,0.3251645569620253,0.3242692147407275,0.3220050325273106,0.3198064567303879,0.3207292370020256,0.321867279714521,0.3225165562913907,0.3231855820750122,0.3243184640555084,0.3249556413735518,0.3252431516016775,0.3261343229977254,0.3277014770665976,0.3295812186339278,0.3303047333583114,0.3347289093573372,0.3383666693019211,0.3397029523637022,0.3416221363948997,0.3443005999368487,0.3450822168087697,0.3472248353715898,0.3494019138755981,0.3502561714019562,0.3445034736411933,0.3500275178866263,0.3467961165048543,0.0,2.522669793898,56.64372239178267,173.14810912462292,266.5718455623129,fqhc6_80Compliance_implementation,10 -100000,95647,44799,423.5365458404341,6001,61.51787301222202,4739,48.97173983501835,1904,19.530147312513723,77.29129418892526,79.69059948935661,63.29829466637945,65.0697280508618,77.05041879673735,79.45321554772008,63.20856534898073,64.98428003048984,0.2408753921879167,237.3839416365371,0.0897293173987208,85.44802037195609,166.37016,116.61263179572936,173941.84867272366,121919.8007211197,359.49482,233.02849526867607,375281.14838939015,243059.2023468338,367.88048,178.0052547887871,381363.8587723608,183576.54174121312,3433.10299,1572.2462025703103,3550534.6116449027,1604988.1884118775,1146.58532,508.62612833545455,1184671.1240289814,517677.7090085986,1870.43728,790.5831282617646,1920276.7467876675,794474.3250967761,0.38152,100000,0,756228,7906.447666941984,0,0.0,0,0.0,30634,319.68592846613063,0,0.0,33701,349.1170658776543,1570104,0,56343,0,0,6575,0,0,60,0.6273066588601838,0,0.0,1,0.010455110981003,0,0.0,0.06001,0.157291885091214,0.3172804532577903,0.01904,0.3253184713375796,0.6746815286624204,24.536407525108743,4.423095631201303,0.3277062671449673,0.2213547161848491,0.2202996412745305,0.2306393753956531,11.188788333867867,5.772962273347594,20.417960754692857,12321.013419536268,54.03313485660421,12.668257090428051,17.503192625028255,11.707553410750004,12.154131730397914,0.5638320320742772,0.797902764537655,0.6954282034771411,0.5986590038314177,0.1189387008234217,0.7368012422360248,0.91871921182266,0.8663484486873508,0.7542372881355932,0.1541850220264317,0.4992755722978846,0.7216174183514774,0.6322751322751323,0.5532178217821783,0.1096997690531177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027146662885041,0.0048970901348474,0.0071759893628898,0.0092673508789757,0.0114560123716794,0.0135153027448184,0.0156616432489752,0.0178487552841709,0.0203459839685915,0.0226076628509409,0.0246328656985806,0.0268063472500385,0.0288153901548274,0.0312016981637573,0.0334892171740634,0.0359625170659054,0.0380549682875264,0.0398712490914754,0.0420369175701829,0.0440077151644685,0.0584393190439862,0.0724019818366556,0.0853773783023226,0.098437960506926,0.1105892534855984,0.1265281497083946,0.1386122847618845,0.1506252529771415,0.1617151837162314,0.1716711934642347,0.183906930607668,0.1967665785940139,0.2085991074344182,0.2183376947586252,0.2293804490394259,0.2400594492075287,0.249273807927783,0.2577823311529671,0.2659869197928967,0.2735107382704164,0.2809855159717961,0.2868125438801778,0.2932878513307039,0.2980869565217391,0.3041373774718459,0.310125254519652,0.3149716806175129,0.3200132521216137,0.3246498962655602,0.3293421869018231,0.3289057132464873,0.3280027548209366,0.3267261081797917,0.3249916776425294,0.3233590877287005,0.3211405220223373,0.3192813154720335,0.3205271828665568,0.3212613817583209,0.3211462981880746,0.3220061681961787,0.3220524017467249,0.322776025236593,0.3232425159771275,0.3253530954500613,0.3264938992595682,0.3273300570974065,0.3314719538210566,0.3339304531085353,0.3355848696757788,0.3399052909571077,0.3402700555996822,0.3436159475145092,0.3454141445099992,0.34935532802427,0.3506540261610464,0.3534536403235843,0.3542619542619543,0.3577235772357723,0.351673720661793,0.0,2.261992558424549,56.50493558274006,177.45503033734775,259.4887776788197,fqhc6_80Compliance_implementation,11 -100000,95643,44582,422.4877931474337,6012,61.81320117520362,4757,49.27699883943414,1865,19.16501991781939,77.27514686010801,79.68539313367283,63.27600815666828,65.05619684528651,77.0421208610274,79.4540635554129,63.19005741009645,64.9731152595584,0.2330259990806098,231.3295782599312,0.0859507465718323,83.08158572810953,166.50788,116.64183256815664,174093.1171125958,121955.43068301564,358.12671,232.14273955850936,373976.495927564,242253.34792772008,370.42668,179.0491138652459,384698.2737889861,185194.3814926548,3380.67181,1548.9389090365266,3500524.910343674,1585347.7400714394,1131.79419,505.9726777220985,1168121.4202816724,513799.4669768337,1825.43614,769.4405674774882,1876489.9469903703,776888.7002341023,0.37868,100000,0,756854,7913.323505117991,0,0.0,0,0.0,30386,317.2213335006221,0,0.0,33822,351.04503204625536,1569471,0,56306,0,0,6554,0,0,77,0.8050772142237278,0,0.0,0,0.0,0,0.0,0.06012,0.1587620154219921,0.3102129075182967,0.01865,0.3302562470157568,0.6697437529842432,24.467948211536665,4.311791932959062,0.3258356106789993,0.2375446710111415,0.2203069161236073,0.2163128021862518,11.108795630920437,5.685821316443283,20.025321242642992,12238.939911501897,54.18195697323506,13.636839335055614,17.58756510420962,11.661425932500515,11.296126601469313,0.5600168173218415,0.7690265486725664,0.6987096774193549,0.5648854961832062,0.1166180758017492,0.7333333333333333,0.9090909090909092,0.8669833729216152,0.7396694214876033,0.1435185185185185,0.4965537047673751,0.6934604904632152,0.6359610274579274,0.5124069478908189,0.1094710947109471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594458846403,0.0046420644010419,0.006808381106996,0.0089588623666835,0.0110558488186413,0.0130051328010428,0.0153566912754415,0.0176823105430266,0.0196599633995481,0.0218811435124508,0.0238478660006359,0.0258881058535883,0.0281493065558253,0.0303455100189659,0.0326208178438661,0.0346971499508612,0.0367544932523476,0.0389033129089209,0.0407296793864532,0.0426734521487939,0.057254541273856,0.0716815457479358,0.084877515862011,0.0978898686303635,0.1097836650188025,0.1249139455818337,0.1375224492832169,0.1490922271617573,0.1608142384708413,0.1709047137974765,0.1836091410559495,0.1959619179805252,0.2077992850292091,0.2182579711416166,0.2276839898488359,0.2381269714336487,0.2470093217399089,0.2563043699014995,0.2645786862111349,0.2728410656867248,0.27956615045531,0.286146556577219,0.2924977159739443,0.2987016106753786,0.3044890510948905,0.3093780848963475,0.3148763335046571,0.318989340702724,0.3227200186835857,0.3258949817566495,0.3246334587733851,0.3237406105712907,0.3231693557486178,0.3218804679478836,0.321550147909203,0.3197530107559832,0.3167125716275683,0.3160867637641418,0.317150944683173,0.3181672369546621,0.3189109170632987,0.3205118079140668,0.3213635126363617,0.3232849162011173,0.3241840119213575,0.3250878791823981,0.3263709057795737,0.3309341211968821,0.3337665074459118,0.3372259294566254,0.3412958412958413,0.3440208433030254,0.3472004021868912,0.3481391647085575,0.3540022547914317,0.3536003814973772,0.3549677022454629,0.3574485428979009,0.3510373443983402,0.3551114527286702,0.0,1.7382603374047445,56.46933501801959,183.8604478800368,255.25336425345,fqhc6_80Compliance_implementation,12 -100000,95682,44681,423.2980079847829,6084,62.352375577433584,4731,48.82841077736669,1886,19.35578269684998,77.28391542799022,79.68216632456375,63.28504443165552,65.05990744000259,77.04449288074991,79.44228143153327,63.19583672845563,64.9726332707862,0.2394225472403093,239.884893030478,0.0892077031998894,87.27416921638564,165.1826,115.73416096369776,172637.06862314753,120957.0880246,361.93851,234.7629626980309,377650.184987772,244735.37624425796,366.05282,177.5551205811288,378068.8530758137,182193.14155386988,3427.66302,1563.9376572257245,3543092.6820091554,1595259.8996945336,1152.56991,509.636844598798,1188088.428335528,516150.7993451817,1853.8926,781.0037938018943,1904315.0017767183,788422.4593709314,0.38021,100000,0,750830,7847.139482870341,0,0.0,0,0.0,30873,322.0145899960285,0,0.0,33525,346.0211952091302,1574689,0,56479,0,0,6539,0,0,55,0.5643694738822349,0,0.0,1,0.0104512865533747,0,0.0,0.06084,0.1600168328029247,0.3099934253780407,0.01886,0.3298306148055207,0.6701693851944793,24.64145940983042,4.384395108774708,0.3090255759881631,0.2411752272246882,0.2187698161065314,0.2310293806806172,11.646440394724754,6.181613866887106,19.964418447740243,12281.948135606406,53.76802150237972,13.711778274278515,16.62457680074051,11.46170439102882,11.96996203633188,0.5580215599239061,0.7800175284837861,0.6846785225718194,0.58743961352657,0.1290027447392497,0.7321156773211568,0.9019607843137256,0.8785529715762274,0.7272727272727273,0.1687763713080168,0.4910740415569213,0.6979472140762464,0.6148837209302326,0.5472636815920398,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.004635264524505,0.006903763566403,0.0092275485005233,0.0113854888434418,0.0138130551707277,0.0160538528226834,0.0183233239367569,0.0202710304270007,0.0226597553729844,0.0245809138847282,0.026714890468949,0.028791636225188,0.0306184493935053,0.032732227463691,0.0347263156806171,0.036969879081141,0.0387585634212165,0.0408570834200124,0.0427296981824245,0.0580591246213308,0.072050001570401,0.0854042481739568,0.0985215973062555,0.1107874489440521,0.1261961216021678,0.1383352623251961,0.1502177918357349,0.1607123767985804,0.1710516428901126,0.1833901082316416,0.1959154929577465,0.2070024503130955,0.2176075003833432,0.2282712933058498,0.2385641959408447,0.2484009482488706,0.2575419372294372,0.2667788286649691,0.2743680653563273,0.2816638448871674,0.2880393996247655,0.2946655276334211,0.2998763074779935,0.3050300684147737,0.3098315126828365,0.3145789988218484,0.3191641091599068,0.3229748467609211,0.3270035234035814,0.3256089674498814,0.3252036996256331,0.3241013221441545,0.3224944770925683,0.3205555225123416,0.3189238905495516,0.316906987799081,0.317447297186449,0.3181724951287047,0.3198013079369617,0.3207823410165928,0.3216261774913238,0.3223231025257526,0.3233713373361218,0.3253639512632318,0.3270404021889974,0.3289391086001255,0.3303777097598687,0.3344574419503284,0.3367957816278793,0.3405882888625808,0.3423409102951306,0.344784431512421,0.3483618875864142,0.3462433665394283,0.3461946902654867,0.348163949413378,0.3493927125506073,0.3537775299693337,0.3594292325491708,0.0,2.3574182772964725,57.60623102900571,170.1989611617468,260.55424232219247,fqhc6_80Compliance_implementation,13 -100000,95656,44641,422.2003847118842,6101,62.63067659111817,4787,49.45847620640629,1844,18.890608012043156,77.35161970545354,79.75642504851271,63.31721993396855,65.09372037091008,77.12084623795626,79.52692111825971,63.23142831180708,65.01052262572601,0.2307734674972863,229.5039302530029,0.0857916221614729,83.19774518406575,167.26006,117.06825273325,174855.79576816928,122384.6415627352,360.30235,233.40896464300064,376023.260433219,243367.3001620396,365.7864,177.28197983372272,378354.7085389312,182234.2276545764,3427.74635,1561.5688743423325,3543258.896462323,1592333.2089386275,1131.2024,498.548061357808,1165551.0056870454,504184.5423247767,1809.85766,758.5257236134692,1855659.0490925815,763446.0652379177,0.37986,100000,0,760273,7947.990716734967,0,0.0,0,0.0,30712,320.45036380362967,0,0.0,33526,346.5020490089487,1569203,0,56278,0,0,6596,0,0,71,0.7213347829723175,0,0.0,0,0.0,0,0.0,0.06101,0.1606118043489706,0.3022455335190952,0.01844,0.325879593432369,0.674120406567631,24.529794367974585,4.419401627499554,0.3194067265510758,0.2389805723835387,0.2199707541257572,0.2216419469396281,11.226677680733,5.7828591818705215,19.610759759958576,12273.56863526621,53.96472037246424,13.622503988584882,17.12585172579327,11.645140865084729,11.571223793001352,0.5629830791727596,0.7814685314685315,0.6873773708306082,0.5954415954415955,0.1159283694627709,0.735686274509804,0.9369158878504672,0.8632911392405064,0.7154811715481172,0.1173708920187793,0.5002847380410023,0.6885474860335196,0.6261022927689595,0.5601965601965602,0.115566037735849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897437715929,0.0044415149825077,0.0066170052976637,0.0087681866211493,0.0111383494898737,0.0134650641678549,0.0156324886554836,0.018094372568441,0.0201942740286298,0.022380415855782,0.0244783224244413,0.0266148755574737,0.0288451643443719,0.0308147506675326,0.0328774763980416,0.03504179771561,0.0371257112651969,0.0392305456357445,0.0413658211781352,0.0436056514258902,0.0583471782493756,0.0719214298428387,0.0847336657045395,0.0975314617618586,0.1100276493805272,0.1255186282811177,0.1379822903616248,0.1498779616938277,0.1614708147894556,0.1712392753981122,0.1837111000884211,0.1959116907877632,0.207511021607794,0.2171566803126163,0.2269453560337422,0.2380662040219054,0.2471956560600643,0.2557835841898479,0.2643612914944825,0.2729511200696321,0.2802517556951627,0.2868231553352661,0.2929509166173861,0.298551974417017,0.3042306852108061,0.3099250360048745,0.3146875858795313,0.3192578293667928,0.3244503578164156,0.3286693957063694,0.3273338261979971,0.3262562313745417,0.3250685605794248,0.3239761695252658,0.323139245014245,0.3208498929990828,0.3189933013144591,0.3189529413693062,0.3197133839460889,0.3190419289828967,0.3188226703364601,0.3199353108236036,0.3208699289000418,0.3210577908479258,0.3224532771782047,0.3258485233489771,0.3278121277440581,0.3329679964927663,0.335628167045256,0.3368250454581389,0.340149625935162,0.3449490171344476,0.3473244355744044,0.3501246129446416,0.35133370639806,0.3582639714625446,0.3599386032233307,0.3605730427764326,0.3590712742980561,0.3624388407978923,0.0,2.258932433418273,55.70757642320388,174.6296460105622,266.0668998254994,fqhc6_80Compliance_implementation,14 -100000,95793,44870,424.8118338500725,6099,62.572421784472766,4760,49.12676291587068,1841,18.86359128537576,77.3507064425629,79.67790839909068,63.34838135415546,65.06958801732175,77.12303447801139,79.45198277738811,63.2639390027529,64.98815400580779,0.2276719645515044,225.92562170257224,0.0844423514025578,81.4340115139629,167.54958,117.32731536965544,174907.72812209665,122479.82145841076,362.02712,234.2276160441457,377381.4266178113,243969.27337503337,368.10793,177.75874967249308,380533.5254141743,182733.7086379039,3398.17175,1542.0003250144578,3509632.2591421087,1571942.213955567,1115.53379,492.5327201908218,1150235.163320911,499933.5098961944,1800.88766,753.1993533107769,1846750.889939766,758505.6790520626,0.38231,100000,0,761589,7950.351278277118,0,0.0,0,0.0,30847,321.44311170962385,0,0.0,33710,348.188280980865,1569966,0,56366,0,0,6755,0,0,57,0.5845938638522648,0,0.0,1,0.010439176140219,0,0.0,0.06099,0.1595302241636368,0.3018527627479915,0.01841,0.3201947236180904,0.6798052763819096,24.63137053764904,4.275297020226852,0.3279411764705882,0.232563025210084,0.21890756302521,0.2205882352941176,11.101568462268448,5.881866600634889,19.81089436922604,12300.572120581905,54.09712984704242,13.287745710641214,17.678665191994167,11.645043080360034,11.485675864046998,0.569327731092437,0.7886178861788617,0.6931454196028187,0.6065259117082533,0.1171428571428571,0.7455113192818111,0.928395061728395,0.8448687350835322,0.7651821862348178,0.1714285714285714,0.5044553032480598,0.707977207977208,0.637478108581436,0.5572327044025157,0.1035714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0045214922952149,0.0067277542695363,0.0089692020152771,0.0112046526761021,0.0137640363647469,0.0162447515388691,0.018389443928524,0.0202847011455491,0.0225235366352844,0.0244792146977754,0.0266274010835659,0.0287558323569916,0.0305023677166975,0.0325135344160866,0.0346188414930214,0.0365782992901637,0.0385751754595121,0.0406987008401441,0.0427970601095171,0.0576591992821294,0.0717877941929885,0.0841614255765199,0.0970691159007555,0.1096251330529998,0.1250013212552982,0.1377295669508419,0.148956094238832,0.1606656774730729,0.1710124425296595,0.1839913035991045,0.1959190731454262,0.2078964809161134,0.2184827134196297,0.2279567764842968,0.2377502488662758,0.2472646239554317,0.2558883984230212,0.2649731469101951,0.2731900387787552,0.2804457017493216,0.2877108996438788,0.2945739183900299,0.3001113385770211,0.3057183416445237,0.3114082062266868,0.3159223567937805,0.3202227902185938,0.3250786417947158,0.3292560763431222,0.3285103407471156,0.3268524756967839,0.3261007307697723,0.3248720691549336,0.3235551989062755,0.3230396887397944,0.3219450384097568,0.3222406734516039,0.3232115989604705,0.3232445953189208,0.3233432858242728,0.3236237623762376,0.3228774922789251,0.3234547374570292,0.3246875225778484,0.3256111910053602,0.3270474446288559,0.3306043747629283,0.3346612141295917,0.3376473857636269,0.3406723917412753,0.3457503746521088,0.3468831251189042,0.3488175675675675,0.350504764600434,0.3548002385211687,0.3590536570279882,0.3655626414318041,0.3626957494407158,0.3602316602316602,0.0,2.196671333655226,56.327753152433935,176.53011887162626,262.81127917019955,fqhc6_80Compliance_implementation,15 -100000,95744,44138,418.30297459893046,5998,61.58088235294117,4648,48.044786096256686,1814,18.63302139037433,77.31652017658898,79.67745910534269,63.31665033110207,65.06255224823441,77.0961512106691,79.45648877139544,63.235395082012666,64.98297437053698,0.2203689659198744,220.9703339472497,0.081255249089402,79.57787769743163,166.84404,116.88482354042787,174259.65073529413,122079.79625751985,359.25439,232.9424726609915,374737.2681316845,242813.75169061177,365.3111,176.75940819231022,378134.72384692513,181973.7813675724,3281.37311,1502.9217719204505,3393759.577623663,1536616.9282607115,1101.29448,491.24744117961137,1135747.681316845,499069.4403739227,1779.34726,744.4199878949132,1829334.579712567,754226.5059433214,0.3771,100000,0,758382,7920.893215240641,0,0.0,0,0.0,30596,319.03826871657753,0,0.0,33431,345.8389037433155,1571498,0,56395,0,0,6702,0,0,74,0.7624498663101604,0,0.0,1,0.0104445187165775,0,0.0,0.05998,0.1590559533280297,0.302434144714905,0.01814,0.3231406274884535,0.6768593725115464,24.56800121915148,4.327125561555926,0.3300344234079174,0.2392426850258175,0.2117039586919105,0.2190189328743545,11.356636111304802,5.840055145323594,19.263219084771272,12156.339354504447,52.81979285892016,13.390974595278854,17.357917465642444,10.900484227230546,11.17041657076832,0.5682013769363167,0.7778776978417267,0.7033898305084746,0.5782520325203252,0.1257367387033398,0.7286512370311253,0.9103448275862068,0.8717277486910995,0.6962616822429907,0.1576576576576576,0.5089837997054492,0.6927621861152142,0.6475694444444444,0.5454545454545454,0.1168341708542713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024209641312385,0.0044707575957259,0.0065770109109363,0.0087586494203237,0.010833740234375,0.0129855580225286,0.0151652677633524,0.017401427652339,0.0196419259516773,0.0215817762989506,0.0235009433188417,0.0257315946195707,0.0278360480421191,0.0300162695388924,0.0319965342245327,0.034127189130547,0.0361893522975476,0.0380585867806315,0.04,0.0418498531035776,0.0565038995207817,0.0707162664155287,0.0840106127499816,0.0971903850602511,0.1090983857192564,0.1242028449050817,0.1367546753508502,0.1481745609366684,0.159635497345284,0.1704357714506404,0.1832459041115072,0.1953141063795249,0.2067878076099131,0.2165261788404561,0.2264722069345074,0.2360255330466776,0.2456177567380479,0.2551434774294424,0.2639527099855906,0.2720172243981767,0.2788682868148011,0.2853518228374997,0.2910695902211598,0.2967723370581747,0.301897796029451,0.3070471867985496,0.3110654762650104,0.3150650045203927,0.320112397379121,0.3234890291236501,0.3217084533972477,0.3200297573945748,0.3192288149946367,0.3188286214733429,0.3184522924042724,0.3165259237689466,0.3150370464188461,0.3154157214715455,0.3164918644241791,0.3176247472849909,0.3189034001351047,0.3200205724684984,0.3208350818296265,0.3219314544111392,0.3236404743006951,0.3246239525321397,0.3251823985408116,0.3280005019135454,0.3305683886322274,0.3339139384822454,0.3383769538349691,0.3422633285494073,0.345567867036011,0.3506404911695596,0.3494699315132751,0.3522185114503817,0.354601226993865,0.3543895055499495,0.3530057644798243,0.3534351145038168,0.0,1.944676312502724,55.09492360199642,171.83872446395702,257.8676470394912,fqhc6_80Compliance_implementation,16 -100000,95685,44961,425.5525944505408,6121,62.7266551706119,4785,49.485290275382766,1854,19.031196112243297,77.40264542862671,79.78466945895065,63.35728834693722,65.11271482588121,77.17163246111225,79.55378295351814,63.27102098040959,65.02861751848336,0.2310129675144594,230.88650543250824,0.086267366527629,84.09730739785459,168.02104,117.61888997311642,175598.09792548468,122923.01820882731,363.62944,235.68853895719107,379453.8224382087,245743.8159493296,373.47902,180.9261142043124,387125.5996237655,186563.88572323584,3418.66252,1558.8288269523773,3536185.6194805875,1592577.8447547574,1159.74144,516.8333956307833,1195435.512358259,523671.4327939469,1819.0141,768.6695781468594,1868708.0524638137,775679.4722711882,0.38248,100000,0,763732,7981.731723885667,0,0.0,0,0.0,31118,324.66948842556303,0,0.0,34106,353.39917437424884,1565245,0,56183,0,0,6693,0,0,65,0.6479594502795631,0,0.0,1,0.0104509588754768,0,0.0,0.06121,0.1600345116084501,0.3028916843652998,0.01854,0.3319301527907702,0.6680698472092298,24.52662978800299,4.308422116387582,0.3201671891327063,0.2417972831765935,0.2152560083594566,0.2227795193312434,11.072267206775644,5.742508570047136,19.759225273075835,12355.155773845476,54.07859573964499,13.97934995126585,17.040366496488137,11.449827504837051,11.609051787053946,0.5657262277951933,0.7856525496974935,0.693864229765013,0.5951456310679611,0.1144465290806754,0.7414860681114551,0.9311111111111112,0.8703703703703703,0.7404255319148936,0.1572052401746725,0.5007157171485829,0.693069306930693,0.6360485268630849,0.5522012578616352,0.1027479091995221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809875343034,0.0049459292367255,0.0074355853114221,0.0095873576876593,0.0118160279029092,0.0141437386717715,0.0162406842904768,0.0183402904644778,0.0206734454039139,0.0227905358385525,0.025082515016708,0.0269998357424441,0.0291278107360607,0.0311743684280991,0.0331297331875116,0.0354086568274835,0.0376690343556503,0.0396911869999688,0.0415787010555873,0.0435738702684675,0.0579134849418671,0.0724868334258222,0.0857013935527199,0.0986945224645227,0.1106247428987311,0.1268581706607416,0.1392049072462537,0.1507111830338131,0.1622314844501442,0.1721438071131322,0.1852988691437803,0.1977250097406814,0.2093774471417384,0.2196466060181945,0.2296809680968096,0.2396890950762314,0.2489213926576662,0.2579539837325304,0.2672429419495173,0.2744882790165809,0.2815325458135587,0.2881500326766875,0.2947859462651314,0.3004581942600103,0.3059014683949509,0.3117878676018211,0.316638752093593,0.321137024388386,0.3251563065157856,0.3289378446313185,0.3281950747912023,0.326554679465204,0.3253291043309849,0.3256071752494205,0.3250710732054016,0.3228904258080276,0.3208250418522379,0.3210762625766067,0.320715537929978,0.3206681253001761,0.3213878877289958,0.323653000314169,0.324379434468696,0.3243712055507372,0.3261780982726815,0.3280068594590381,0.3287939955649059,0.3330620167172776,0.3341975265389062,0.3373980521023042,0.3419184564979978,0.3441043385680064,0.3490964045085322,0.3491858164662912,0.351687723929851,0.3549676660787771,0.3565523576240049,0.3621730382293762,0.3600217864923747,0.353539156626506,0.0,1.9921072233215795,56.66692939297808,178.46823623588224,259.2795263009298,fqhc6_80Compliance_implementation,17 -100000,95732,44901,425.3123302552961,6204,63.62553796013872,4849,50.11908243847408,1825,18.729369489825764,77.33907921770925,79.70664001142592,63.32552877917672,65.07576068732462,77.10859854041783,79.47680935768136,63.24030038869804,64.99331362666004,0.2304806772914247,229.8306537445569,0.0852283904786759,82.44706066457752,166.9679,116.9686411846028,174411.7954289057,122183.4299759775,363.45307,235.77006456539323,379139.99498600257,245764.52446976263,373.88975,180.7560456267814,387315.97584924585,186304.7180294898,3459.36971,1569.409334126167,3577065.443112021,1602845.353827528,1169.0289,515.3941327768741,1207396.9936907198,524621.3625296396,1790.06308,751.5576233871307,1838485.354949233,757774.9767536658,0.38209,100000,0,758945,7927.808883132077,0,0.0,0,0.0,31089,324.2071616596332,0,0.0,34171,353.66439644006186,1567482,0,56213,0,0,6566,0,0,57,0.5954121923703672,0,0.0,1,0.0104458279363222,0,0.0,0.06204,0.162370122222513,0.2941650548033527,0.01825,0.3378855301519103,0.6621144698480896,24.45737400823,4.29589374624618,0.3361517838729635,0.2289131779748401,0.2171581769436997,0.2177768612084966,10.888986323530355,5.514952477882622,19.58390140920488,12329.400090413432,55.09273480415156,13.441908215650235,18.505356452452887,11.61149463709108,11.53397549895737,0.5652711899360693,0.8027027027027027,0.6895705521472393,0.553656220322887,0.1354166666666666,0.743161094224924,0.9262672811059908,0.8538283062645011,0.7241379310344828,0.182648401826484,0.4990093405038211,0.7233727810650887,0.6305254378648875,0.5054811205846529,0.1230585424133811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0045828770734477,0.0071252397917237,0.0092261420907169,0.011352654547674,0.0136267810039821,0.015795645745169,0.017754137357196,0.019969733532383,0.0221430180872201,0.0241421040756466,0.0259546845791992,0.0282931545170314,0.0304962858408629,0.0325773919506178,0.0346845915201654,0.0369426487651251,0.0389592868188092,0.0406605519851916,0.0427566807313642,0.0575220314914588,0.0719337895243476,0.0852415702063412,0.0979095249111443,0.1106928187282505,0.1262190349262761,0.1391031285473313,0.1505072980655601,0.1615126517353393,0.1716216941151225,0.1850283399064675,0.198141912011521,0.2100029375605192,0.2199013031917803,0.2293040615675955,0.2393309242467909,0.2483977579777137,0.2571663309061033,0.2656391864899219,0.2736553841923139,0.2806956642482729,0.2881750356666744,0.2949230296294545,0.3005195613657042,0.3062860886020671,0.3111805521381822,0.3158078820810692,0.3199827297201199,0.3249861094959362,0.329314093694406,0.3283517901300935,0.3266666666666666,0.3254352848368738,0.3238449083444168,0.3234931435617822,0.3217243543621695,0.3206391899375049,0.3212937120341487,0.3217047632083219,0.3221502914982653,0.322368914560048,0.3239798438889438,0.3244503942937227,0.3252928552266834,0.328576567933805,0.3288810352892261,0.3294301994301994,0.3327569402961612,0.3365846812392548,0.3409885568976478,0.3447410449463837,0.34768,0.3507628030638728,0.3539639984680199,0.3541196388261851,0.3589438629876308,0.3654084158415842,0.3682487725040916,0.3611731843575419,0.3703275529865125,0.0,2.1295131952561897,57.86629543570733,180.98869940912763,264.2176970203185,fqhc6_80Compliance_implementation,18 -100000,95671,44525,421.3816098922348,6001,61.27248591527213,4710,48.48909282854783,1907,19.46253305599398,77.30793472821749,79.68475700628437,63.31631099018998,65.0707024340635,77.06335497299251,79.44384226844929,63.224508586107234,64.98302735443971,0.2445797552249757,240.91473783508377,0.0918024040827489,87.67507962379284,167.97902,117.61694217606367,175579.87268869355,122938.97019584168,359.444,233.2243727312689,374954.7093685652,243023.7927180325,367.592,178.58317013753776,379613.132506193,183039.87222538143,3360.09562,1560.018734310926,3460967.116472076,1579438.8731286663,1117.70706,510.26052655915913,1148067.679861191,513137.1978639778,1862.48488,798.9378769448526,1902577.1027793167,798297.6094029967,0.37906,100000,0,763541,7980.903304031524,0,0.0,0,0.0,30701,320.1388090434928,0,0.0,33563,346.17595718660823,1564148,0,56185,0,0,6590,0,0,72,0.7525791514670067,0,0.0,0,0.0,0,0.0,0.06001,0.15831266817918,0.3177803699383436,0.01907,0.3361613574515767,0.6638386425484233,24.35583442738836,4.339354692707502,0.3214437367303609,0.2309978768577494,0.2239915074309978,0.2235668789808917,11.06328601980138,5.862229708442297,20.711300417141093,12271.910532592998,53.83584558545723,13.07190025114084,17.12686217371836,11.897624288365892,11.739458872232126,0.554140127388535,0.7987132352941176,0.6849405548216645,0.5649289099526066,0.1025641025641025,0.7117516629711752,0.9258373205741628,0.8648648648648649,0.6691449814126395,0.1698841698841698,0.4906166219839142,0.7194029850746269,0.6187895212285456,0.5292620865139949,0.0806045340050377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.00464107656763,0.0068675884316132,0.0090497277971885,0.0112684077780489,0.0138385401816626,0.0161311702745969,0.0180908626850433,0.0199963196957615,0.0222950148428703,0.0243574892103293,0.0265097845951662,0.0286522342777806,0.0307822270755854,0.0326911368631781,0.0344873928730189,0.0367100805072891,0.0388189246150811,0.0411222536617842,0.043169592594137,0.0574016233325324,0.0714495059454027,0.0852340684474473,0.0982004816945551,0.1106038881626112,0.1251665573909181,0.1379314003204006,0.1505322546306153,0.1621560980821625,0.1717967149095044,0.1845951680830667,0.1964080926106242,0.2079790357305961,0.2183673023093072,0.228299852582015,0.239091180999435,0.2482397705843627,0.2573977812282004,0.2653237246779776,0.272721023749241,0.27899356213237,0.2857694377500643,0.2922157106493814,0.298511044188753,0.3044578547790539,0.3085252176060251,0.3141610123788143,0.3194325734478052,0.3236233766233766,0.3285134080355607,0.3278327981218123,0.3257264273296724,0.3240055373488529,0.3228177508444844,0.321524951171147,0.3196001351309849,0.3177660621843935,0.3185840707964602,0.3194875576669125,0.3195315018446219,0.3207564905156693,0.3213697597365236,0.3216956558272414,0.3231592619132927,0.3242037755864696,0.3252270882961179,0.3254789819845582,0.3274230186774356,0.3306827820186598,0.333718152866242,0.3362779201757598,0.3412503994035573,0.3460299412545006,0.3507405710795541,0.3520542781756502,0.357151307228203,0.3589277601090413,0.3622868605817452,0.3699406368051808,0.3666292555181444,0.0,2.8523324944241177,58.673831569949904,173.8221371771009,249.2822485881236,fqhc6_80Compliance_implementation,19 -100000,95705,44790,423.3843581840029,6059,62.00303014471553,4747,48.99430541768977,1873,19.20484823154485,77.38171245272493,79.75557921718143,63.34258245905804,65.09490418352965,77.14167569887717,79.5169967178356,63.25285687888133,65.00816757460197,0.240036753847761,238.58249934583853,0.0897255801767116,86.73660892767998,167.36786,117.25463381912417,174878.90914790242,122516.72725471412,362.11802,234.52395740205787,377712.3138811974,244392.15025553305,369.71912,178.70100440804083,382540.8494853978,183787.4149580031,3382.08675,1549.020766866945,3493510.464448044,1578181.0844438053,1138.79508,508.2171255522523,1172783.8879891334,513907.1788853796,1836.22368,777.4784267436156,1884428.211692179,782940.1318394892,0.38259,100000,0,760763,7949.041324904655,0,0.0,0,0.0,30891,322.1566271354684,0,0.0,33889,350.2951778903924,1568298,0,56232,0,0,6701,0,0,62,0.6373752677498563,0,0.0,0,0.0,0,0.0,0.06059,0.1583679657074152,0.3091269186334379,0.01873,0.3381795195954488,0.6618204804045512,24.338898710974703,4.376915144658786,0.327996629450179,0.2340425531914893,0.2138192542658521,0.2241415630924794,10.834983955707235,5.526587285974912,19.971564899477816,12308.164310510534,53.911981048253374,13.335421319325263,17.692011590790113,11.114316380951758,11.770231757186249,0.5630924794607121,0.8073807380738074,0.6852922286448297,0.5665024630541872,0.1259398496240601,0.7185301016419078,0.91725768321513,0.8272506082725061,0.6880733944954128,0.1806167400881057,0.505767012687428,0.7398255813953488,0.6343804537521816,0.533249686323714,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0047035448914839,0.0068900434306124,0.0091928569977449,0.0115242996928209,0.0139002036659877,0.0160897272495539,0.0185593531789783,0.0206802081310121,0.0229092025795884,0.0248403268302184,0.02710444451289,0.0292877563192859,0.0313349814585908,0.0333632601673838,0.0351522921362254,0.0372322797133269,0.0395658444967884,0.0415167335732262,0.043580204458061,0.0580034045930675,0.0718585441944703,0.0853224774155641,0.098338926351003,0.1100832269701796,0.1255036751097245,0.1378139490466135,0.1497428690069313,0.1606517094017094,0.1714723992190684,0.1848196198439722,0.1975360765591677,0.2088599334362968,0.2190116978244233,0.2287112920081403,0.2392498117886718,0.2482406343753833,0.2574857708487998,0.2662045965015768,0.2737620814438184,0.2809502320037954,0.2872275745954541,0.2933454855357227,0.2998801534036433,0.3053730001579222,0.3108517770000493,0.3152595372107567,0.3208601056046822,0.3242123793005255,0.3277867144853775,0.3266085646653755,0.3254069647640634,0.3245680679835669,0.3237109239820048,0.3232649433375305,0.3213675213675214,0.318734601048708,0.3189629775115388,0.3193912466166181,0.3201167945590827,0.3204173991098478,0.3211819939243303,0.322670114487102,0.323914787414208,0.32430683697189,0.3258491055224267,0.3274258492599104,0.3311672081979505,0.3348558279000035,0.3372832484101591,0.3415673299188687,0.3428162746344564,0.3455153695638452,0.3491978609625668,0.3501974797818318,0.3501659554291133,0.3557560006115273,0.3540020263424518,0.3516574585635359,0.3523296110897189,0.0,2.4014594473469395,55.84200838484642,178.52638122720552,258.5371964909032,fqhc6_80Compliance_implementation,20 -100000,95860,44531,420.7698727310661,6114,62.7268933861882,4847,50.01043187982474,1950,19.966617984560816,77.44506122741345,79.7213259591539,63.40474875222951,65.0838048062886,77.20221696598095,79.48189690590057,63.3158038216113,64.99870654782552,0.242844261432495,239.42905325333183,0.0889449306182044,85.09825846307706,166.40514,116.54969986601446,173591.84226997703,121583.24626122936,360.98618,233.4304083367589,376041.9570206551,242977.3089263081,371.54545,179.8620652841873,384200.6676403088,185024.16763603204,3469.50902,1574.1559575169329,3582878.7606926765,1605669.2233642128,1145.61545,507.9486735024927,1181165.6373878573,515959.31932244217,1915.3425,790.9965651851073,1964002.6914249947,796154.6832448371,0.37918,100000,0,756387,7890.538284998956,0,0.0,0,0.0,30710,319.7997079073649,0,0.0,33953,350.82411850615483,1577390,0,56695,0,0,6689,0,0,70,0.7302315877321093,0,0.0,1,0.0104318798247444,0,0.0,0.06114,0.1612426815760325,0.3189401373895976,0.0195,0.3390544546731159,0.6609455453268841,24.66091647892915,4.356847768755386,0.3162781101712399,0.2376727872911079,0.2213740458015267,0.2246750567361254,11.468133691347983,5.987399795536259,20.58208836880861,12241.311379493962,55.10403557721549,13.857359354819485,17.434234585886173,12.00399438008065,11.80844725642918,0.5613781720651949,0.7847222222222222,0.6894977168949772,0.5824790307548928,0.1239669421487603,0.7296037296037297,0.908235294117647,0.8508997429305912,0.7290836653386454,0.1756756756756756,0.500561797752809,0.7125171939477304,0.6346153846153846,0.537712895377129,0.1107266435986159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022065223992388,0.0045482632522614,0.0068949433702077,0.0088404855669684,0.0108724368484158,0.013053077087424,0.0153894728265297,0.0176511976505858,0.0200042888214931,0.0221781408807861,0.0244009830022527,0.0265729962566022,0.02867560211575,0.0307250789470977,0.0329486915310117,0.0348472336911643,0.0370033300928702,0.0389318356096246,0.0409356118020805,0.042900993704802,0.0578611499238806,0.0726807354784788,0.0865477237508899,0.0998656844844592,0.11159624610723,0.1262585751978892,0.1386791753581601,0.1504797118541421,0.1617295798677756,0.1720587763139588,0.1845773550432586,0.1965444630419524,0.2080031265605662,0.2184470259411302,0.2281813588735364,0.2384471561805086,0.2474700191698988,0.2563846162488905,0.2644745194051505,0.2725764751641613,0.2801886574341664,0.2861367966987363,0.292403955336866,0.298300622307324,0.3038741066986981,0.3095179477079127,0.3135254877911415,0.3171796078830519,0.3204998704998705,0.324732544487976,0.3235678047073705,0.3226697448159294,0.3218692902319044,0.3205824319847911,0.3196404507692991,0.317097354852488,0.3155521926920773,0.3164414230385828,0.3174260088159709,0.3182520924777424,0.3184934705849384,0.3196354238592199,0.3210581346716855,0.3211815626254964,0.3221070811744387,0.3225521293744475,0.3237673507621562,0.3282567139857729,0.3319383413545372,0.3364208526303289,0.3383070955966233,0.3432700511945392,0.3430772144706105,0.3447878228782288,0.3485524442335073,0.3490407673860911,0.3504419289812374,0.3546777546777547,0.3583007266629402,0.3604100946372239,0.0,2.1840936106018174,56.39734381596655,187.0548205954511,262.123028643719,fqhc6_80Compliance_implementation,21 -100000,95692,44146,418.5302846632948,6147,63.03557246164779,4804,49.690674246540986,1917,19.7404171717594,77.29747507811412,79.70223402114001,63.28577397120039,65.06638396008243,77.06253082751874,79.46657074182264,63.198859292551305,64.98151633211562,0.234944250595376,235.66327931737877,0.0869146786490873,84.86762796681546,165.98428,116.3319531008149,173456.79889645948,121569.15217658204,360.45582,233.3432120484252,376166.116289763,243330.9702466509,359.58051,173.70920408145747,372426.4724323872,178959.18091663165,3434.36472,1558.491318503269,3553544.078919868,1593219.9123262863,1165.59393,510.8020314050389,1204214.7201437948,519944.4586851973,1877.55826,782.3617666740672,1934591.292898048,793488.9126437955,0.37724,100000,0,754474,7884.399949839068,0,0.0,0,0.0,30745,320.7582661037496,0,0.0,33046,342.0139614596832,1573436,0,56418,0,0,6441,0,0,61,0.6374618567905364,0,0.0,1,0.0104501943736153,0,0.0,0.06147,0.1629466652528894,0.3118594436310395,0.01917,0.3438324282389449,0.6561675717610551,24.736929272082627,4.44949950314225,0.3084929225645295,0.2431307243963363,0.2216902581182348,0.2266860949208992,11.213996258180376,5.685286566997019,20.340380661453,12209.306207694804,54.45897344921152,14.016220540800752,16.67002001421304,11.82911298331231,11.94361991088542,0.5574521232306411,0.7902397260273972,0.6835357624831309,0.5690140845070423,0.1248852157943067,0.7252747252747253,0.9072398190045248,0.8497267759562842,0.7404255319148936,0.1645021645021645,0.4968838526912181,0.71900826446281,0.6290322580645161,0.5204819277108433,0.1142191142191142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024727390652235,0.0048688454750167,0.0071272653434184,0.009612844223148,0.0117899576822916,0.0137199779991444,0.0159316225368202,0.0182594309756745,0.0202503681885125,0.0225091910823459,0.0247612600137448,0.0268645983151838,0.0285082304526748,0.0305740754098698,0.0323892909873726,0.0344656378004882,0.0361936547092173,0.0381903703780618,0.0401997503121098,0.0420210105052526,0.0566071242034889,0.0708483376601624,0.0839559286463798,0.0972282122758112,0.1096401936688431,0.1243480560698228,0.1370053498641304,0.1486995974183654,0.1595465968026519,0.1697462931747173,0.1827338905365327,0.1951980922443228,0.2064458507150559,0.2171802933862115,0.2269971783793316,0.2371127158973676,0.2459348003442148,0.2555106270344548,0.2630520719738277,0.2706788460877239,0.2769597905540817,0.2837969198336944,0.2898495795333412,0.2965074411905904,0.3020681265206812,0.3077492687622644,0.3124404672381812,0.3171415822018231,0.3222088087542349,0.3268172680139667,0.3249919015225138,0.3238443493859528,0.3234890983340163,0.3215605570933754,0.3210715773189742,0.3185949209949578,0.3174826724056081,0.3186744716087035,0.3191692365358731,0.320168097154457,0.3214185720951936,0.3232521988941579,0.324120655463939,0.3259315352235016,0.326421516923962,0.3266748058290256,0.3272711772896479,0.3313171832398383,0.3329249509941193,0.3352999406058206,0.3397016011644833,0.3423604854523292,0.3448665620094192,0.3500113713895838,0.3517422748191979,0.3551401869158878,0.3554837717274265,0.356751269035533,0.3649876135425268,0.352556708958093,0.0,2.001847435387542,56.27047337853136,183.5258295646716,259.3121486325511,fqhc6_80Compliance_implementation,22 -100000,95820,44737,422.9597161344187,6085,62.35650177415989,4764,49.03986641619704,1836,18.73304111876435,77.32864418348662,79.63869494835774,63.32870225298407,65.0382559472491,77.10355230276383,79.4184525369975,63.24533821396278,64.95929685407204,0.2250918807227862,220.24241136023196,0.0833640390212835,78.95909317706185,166.79564,116.8702360655838,174071.84303903152,121968.5202103776,360.96796,234.5348386105251,376036.4746399499,244089.5263113204,372.49307,180.4141508197183,384243.289501148,184800.1529107452,3350.8648,1537.0282893841954,3451597.307451471,1558987.4507691795,1112.66792,497.3090175986887,1140612.7739511584,498650.17988917616,1794.57486,752.7725351025806,1832128.7413901065,751137.0032781743,0.38108,100000,0,758162,7912.35650177416,0,0.0,0,0.0,30768,320.3819661865999,0,0.0,34043,350.8766437069506,1567526,0,56311,0,0,6653,0,0,65,0.6679190148194531,0,0.0,1,0.0104362346065539,0,0.0,0.06085,0.1596777579510863,0.3017255546425637,0.01836,0.3357904642409033,0.6642095357590966,24.380381737393424,4.249942569897283,0.3259865659109991,0.2487405541561712,0.2151553316540722,0.2101175482787573,11.2305148715658,5.923866690755069,19.66416558720225,12308.593347905782,54.38841791368857,14.196534252259326,17.583063793016258,11.466101389194607,11.142718479218376,0.5745172124265323,0.7772151898734178,0.7108821635544108,0.584390243902439,0.1128871128871128,0.7419106317411402,0.9144736842105264,0.878345498783455,0.6818181818181818,0.1658767772511848,0.5118291979226774,0.691358024691358,0.6506129597197898,0.5577639751552795,0.0987341772151898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788271636197,0.0045006690183675,0.0066453609293359,0.0089692020152771,0.0112466951393125,0.0133984931785787,0.0156966670064213,0.0178084847990039,0.0198663314734195,0.0221640095777991,0.0244574683907457,0.0265793686630269,0.0285491131071054,0.0310273831583281,0.0333384893013663,0.0352785611718887,0.0374398509856677,0.0393571798859512,0.0413083219078482,0.0430270922886374,0.0572099087353324,0.0710559058164214,0.0848889494481537,0.0976755427586641,0.1103779749984189,0.1259724336208354,0.1382220714225125,0.150259618658495,0.1616371946010593,0.171470837308521,0.1841575416949298,0.1961923305749364,0.2078667565393229,0.2185041091099842,0.2277797333568002,0.2378484335027741,0.2478873868342617,0.2568074113263617,0.2660255682463271,0.2732995459340457,0.280701551016623,0.2877526614453876,0.2941190433802148,0.2993754503963488,0.3054375996203779,0.3107769732703432,0.3153779648911777,0.3194159542344592,0.3245981604244775,0.3287540823207415,0.3275478415665331,0.3268838261253309,0.3259609949123799,0.3245481709262858,0.3233208176887776,0.3216359001136468,0.3198742976859346,0.3211620030907835,0.3226583316253331,0.323814789712125,0.3237377712807826,0.3233148122515967,0.3240952002176961,0.3259835131693586,0.3270266371766516,0.3284435279684686,0.3305263157894736,0.3336572521237578,0.3373451944880516,0.3413211414157339,0.3444947893067512,0.345679665590772,0.3461659235068768,0.3477632379793061,0.3486737276220826,0.352619698229773,0.3558756633813495,0.3562197092084006,0.3446959367330243,0.3486943164362519,0.0,2.603516723656872,56.59684335900909,180.86107689003148,257.7226785510759,fqhc6_80Compliance_implementation,23 -100000,95735,44993,425.66459497571424,6119,62.50587559408785,4830,49.75191936073536,1918,19.64798662975923,77.35098256499538,79.70072642729319,63.33757887846742,65.07143030233892,77.10619748914627,79.4567393356751,63.24538038136876,64.98227360262719,0.2447850758491085,243.98709161809504,0.0921984970986571,89.15669971173656,166.4278,116.63277471331789,173841.70888389827,121828.37105281676,361.62397,234.53327895286665,377001.90108110936,244250.93026320144,371.64527,180.14124862598695,384266.75719433854,185036.22163917104,3429.07799,1577.5148344243098,3536227.273202068,1602378.9394730052,1147.85309,512.4395129126914,1181235.2640100275,517636.43216709024,1874.11614,799.3970452263648,1921190.661722463,803281.2172364836,0.38254,100000,0,756490,7901.895858359012,0,0.0,0,0.0,30827,321.2409254713532,0,0.0,34019,351.27173969812503,1569879,0,56334,0,0,6577,0,0,54,0.5640570324332793,0,0.0,0,0.0,0,0.0,0.06119,0.1599571286662832,0.313449910116032,0.01918,0.3413836086008102,0.6586163913991898,24.219080020627977,4.324575676173636,0.3171842650103519,0.2401656314699793,0.2262939958592132,0.2163561076604555,11.234013990203568,5.875764659311739,20.507365229082435,12313.97194295636,54.99712757514682,13.919502168548942,17.34755128986752,12.23936825208694,11.49070586464341,0.567287784679089,0.7922413793103448,0.6932114882506527,0.5718206770356816,0.1282296650717703,0.7140740740740741,0.9383561643835616,0.8709677419354839,0.656140350877193,0.1647058823529411,0.5103448275862069,0.703601108033241,0.6362068965517241,0.5420792079207921,0.1164556962025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0046827013713625,0.0068896938703032,0.0092020801170065,0.011499628880235,0.0138347364884812,0.0159121721491116,0.0182786809956829,0.0206870470875622,0.0230275614324166,0.0252885581319064,0.0271812769451857,0.0291680375061687,0.0312229682415454,0.0333735673093786,0.0352251702859977,0.037401370969412,0.0394321766561514,0.0411611199484316,0.0432771445835851,0.057979789544012,0.0718679387396434,0.0861345859458552,0.0990274930347474,0.1114566422803651,0.1270097992579202,0.1392270818309082,0.1512403818524312,0.1627834930401991,0.1733444898572179,0.1861291851596501,0.1986448896537541,0.2092615960316769,0.2192274020573429,0.2286104352230063,0.2385370936987273,0.2477964094600784,0.2566344790330204,0.2657811080835604,0.2734518348623853,0.2805664593971816,0.2872046460436035,0.2941141660058468,0.2997447603983176,0.3049935637432298,0.3101269720070444,0.3153536313827525,0.3189310879906387,0.3227252120976621,0.3271265005348441,0.3251762865887365,0.32410342641343,0.3232961760970791,0.3226502534395365,0.3216140215143354,0.3201478006224798,0.3184037796873513,0.318367279786779,0.3195299671592775,0.3210784751361485,0.3217249583185028,0.3220171716174874,0.3237431161923906,0.3239464927756314,0.3244948888995537,0.3266508511692171,0.3282273219064973,0.332672581964634,0.3365910046237915,0.3393331483170122,0.3421352151149556,0.3432780259519251,0.3470866141732283,0.3510508681084374,0.3501174260216064,0.3551568441064638,0.3605515959095134,0.3632123301561549,0.3627829928216455,0.3676132003069838,0.0,2.611908115131323,58.79249060474998,177.96658038438693,260.6675451679805,fqhc6_80Compliance_implementation,24 -100000,95845,44760,423.13109708383325,6246,64.02003234388857,4948,51.07204340341176,1897,19.437633679378163,77.51248185563044,79.7973552759867,63.42745123530996,65.1103845206903,77.27280284362159,79.5593731054686,63.33850565689628,65.02443255804731,0.2396790120088496,237.98217051810863,0.0889455784136785,85.95196264299432,167.52538,117.24798805091504,174787.81365746778,122330.834212442,365.02876,236.25537887001724,380288.5596536074,245932.692232268,372.06635,180.03605865542096,384301.67457874696,184890.52636394385,3518.96378,1605.0992479159647,3634110.031822213,1637277.0910490546,1205.87336,533.6125178427847,1244889.6238718764,543485.4377826535,1864.67662,787.660684712885,1912441.504512494,794123.14523191,0.38025,100000,0,761479,7944.90062079399,0,0.0,0,0.0,31086,323.7518910741301,0,0.0,34141,352.433616777088,1572652,0,56418,0,0,6608,0,0,61,0.6260107465178152,0,0.0,0,0.0,0,0.0,0.06246,0.1642603550295858,0.3037143772014089,0.01897,0.3263431807745293,0.6736568192254707,24.754462704908832,4.291284200034986,0.3265966046887631,0.240501212611156,0.2055375909458367,0.2273645917542441,11.105965985865751,5.728500910993027,20.22011308162611,12274.427534394756,55.94570405703193,14.23807495112341,18.205177316740983,11.215960814442292,12.286490974725243,0.5650767987065481,0.7873949579831933,0.7060643564356436,0.5693215339233039,0.1235555555555555,0.7119764878765613,0.8949671772428884,0.8655256723716381,0.7046413502109705,0.1511627906976744,0.5093392807359911,0.7203274215552524,0.652029826014913,0.5282051282051282,0.1153402537485582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00234756035861,0.0045269948653548,0.0069025633748568,0.0093454150642814,0.0117231150571933,0.0138106376487338,0.0158823888741829,0.0182431881220427,0.0205957133958931,0.0229778095919828,0.0254057651937944,0.0274538760524669,0.029386681462758,0.0312454973962085,0.0332164948453608,0.0353240099981408,0.0372508847085118,0.0394795500492457,0.0412507141744143,0.0430482536047056,0.0580781745369597,0.0719364282726892,0.0851679153350448,0.09775975969668,0.1101271953839026,0.1262424082387113,0.1383575145458206,0.149920255183413,0.161603226942408,0.1716497826133516,0.1840978987891691,0.1963793866992147,0.2081121280222345,0.218600537246937,0.2280297038404077,0.2379878136438531,0.2479667550524744,0.2567936461574755,0.2651632706226143,0.2718211330071785,0.2795999123221929,0.286355057436447,0.292861270653725,0.2989121998399943,0.3040352448500399,0.3087400820457393,0.3131592728360888,0.3183050418039017,0.3230360619383453,0.3272767851281984,0.3261621360784944,0.3248069233718573,0.323704523485984,0.3220802394520232,0.3208289572947946,0.3194177423784674,0.3173347231434979,0.3176320398042521,0.3184116015046552,0.318727298625454,0.3197772212462154,0.3210209914260372,0.3228899053825427,0.3238790685248675,0.3247763330549922,0.3247861038591775,0.3262289057862453,0.3294040806170689,0.3346165851628342,0.337373421433319,0.340466490576174,0.346133778566211,0.349571800918456,0.3511157863100158,0.3518844337438652,0.3517225325884544,0.3598797896318557,0.3585240726124704,0.3594086021505376,0.3625883227965786,0.0,2.1518469391435784,59.81423754951662,181.7123275773008,266.5938678777261,fqhc6_80Compliance_implementation,25 -100000,95742,44633,423.72208644064256,5954,61.19571347997744,4665,48.171126569321714,1838,18.852750099225,77.31288813594676,79.67287390082242,63.318020272784125,65.06269196560362,77.0856175357758,79.44543912348632,63.23382000795088,64.98054630387672,0.2272706001709679,227.43477733610007,0.0842002648332496,82.14566172689786,167.376,117.32784473013076,174819.8282885254,122545.8468907384,360.35704,233.497446285278,375822.70059117215,243331.6807652478,368.09274,177.59370454142422,381378.4337072549,183089.08119197347,3300.39858,1497.0869656235957,3407580.946710953,1525150.1688232296,1136.83924,496.34636844184257,1173429.8844812098,505235.2388329856,1801.9496,754.3373634992648,1848968.6031208877,760130.466890429,0.37864,100000,0,760800,7946.35583129661,0,0.0,0,0.0,30752,320.61164379269286,0,0.0,33678,348.6870965720373,1566317,0,56262,0,0,6610,0,0,56,0.574460529339266,0,0.0,0,0.0,0,0.0,0.05954,0.1572469892245933,0.3087000335908633,0.01838,0.3262569832402234,0.6737430167597765,24.68462051537904,4.353223948899708,0.3159699892818864,0.2465166130760986,0.2147909967845659,0.2227224008574491,11.386146438394285,5.825158667291341,19.71819701417318,12174.005581068524,52.97566590097932,13.988760069578449,16.493478385526057,11.131754593322114,11.361672852552712,0.5691318327974276,0.7973913043478261,0.6994572591587517,0.592814371257485,0.1087584215591915,0.7199036918138042,0.8876404494382022,0.8306010928961749,0.7532467532467533,0.1176470588235294,0.5141854343375256,0.7404255319148936,0.6561371841155235,0.5447470817120622,0.1065868263473053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045611652256763,0.0070516137541979,0.0092126112217121,0.0113810884755037,0.0135641547861507,0.015907005200367,0.0179375401986707,0.020324288956591,0.0221582822211527,0.0240743968584347,0.0264106381886327,0.028375140127323,0.0303442308880786,0.032497678737233,0.0342397089676412,0.0360330510054049,0.0378920719243818,0.0396497759106554,0.041635408852213,0.0562730338369021,0.070081088150667,0.083619966442953,0.0962864833038943,0.108641558770191,0.1245200799602314,0.1367272881607707,0.1481863851164374,0.1588272989426465,0.169611648403491,0.1825531823271036,0.1948658614388131,0.2066791320607035,0.2173594479621184,0.2270336875921403,0.2374206696423627,0.2467551309665971,0.255807674567729,0.2638362137487793,0.271378318609421,0.278200363539532,0.2847568250403537,0.2913797591159698,0.296701584485941,0.3022863112882064,0.3072429474618257,0.3116234221598878,0.3162066903334987,0.320736873469705,0.3246092666235087,0.323318814978627,0.3227188210178362,0.3214749195960052,0.3201795020266358,0.3192814157182864,0.3176092900371724,0.3161381545500762,0.3164473575863375,0.3165084153155315,0.3173152727012112,0.3176174465127637,0.3178843407901,0.3190382275187781,0.3195159053286206,0.3216685532622046,0.3234495719356859,0.3256743256743257,0.3285502538711407,0.3329345531315975,0.3350989684973515,0.3371960399653269,0.3410548635038431,0.3449074074074074,0.3444976076555024,0.3487956341738803,0.3540189125295508,0.3552147239263803,0.363508064516129,0.3717984026438997,0.3800599700149925,0.0,2.101502888722825,54.70906115910002,173.3084410677414,258.9962460958865,fqhc6_80Compliance_implementation,26 -100000,95784,44651,422.3565522425457,6088,62.44257913639021,4728,48.79729391130042,1849,18.98020546229015,77.37208356525132,79.71116870167683,63.35007434272507,65.07955591703302,77.13719807708631,79.47630380786565,63.26380862094184,64.9955300836572,0.2348854881650055,234.86489381117792,0.086265721783235,84.02583337581859,166.73998,116.6918197356754,174079.15727052535,121828.09209855027,359.87813,233.8407514539279,375173.129123862,243588.12688332915,372.29695,180.51380855107752,384811.2315209221,185432.77502469387,3359.51399,1538.8831572861664,3471505.4497619644,1570738.2728703823,1115.83977,494.808896035952,1152143.990645619,503778.0068027558,1804.53778,754.4548529314924,1854003.215568362,761799.3860396342,0.37951,100000,0,757909,7912.688966842061,0,0.0,0,0.0,30755,320.52326066984045,0,0.0,34065,351.8437317297252,1571821,0,56539,0,0,6600,0,0,61,0.6264094211976948,0,0.0,0,0.0,0,0.0,0.06088,0.1604173803061843,0.303712220762155,0.01849,0.3465625,0.6534375,24.275693202794265,4.302950392842126,0.3187394247038917,0.2478849407783418,0.2131979695431472,0.2201776649746193,11.346286140859988,6.06349803739475,19.68659619534229,12253.159698943322,54.11537658154801,14.289262694146734,17.092239641085207,11.35510266106376,11.378771585252306,0.5666243654822335,0.7935153583617748,0.696748506967485,0.5724206349206349,0.1171950048030739,0.7362471740768651,0.91220556745182,0.8567708333333334,0.720754716981132,0.1469194312796208,0.5004410467509556,0.7148936170212766,0.6420302760463046,0.5195154777927322,0.1096385542168674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0049470824378573,0.0071137180085648,0.0095793419408579,0.0118173497406691,0.0138459032415702,0.0160331875770826,0.018337857419842,0.0204381948986265,0.0226998260157609,0.0246974308523175,0.0266936237030347,0.0287814154288944,0.0309411037891268,0.0329469754779631,0.0348500816233752,0.0369212615540673,0.0388982795988841,0.0408769742310889,0.042905183812429,0.0581458446383103,0.0712672049533531,0.0844794330999203,0.0976537463356203,0.1097731845811868,0.1246764771130666,0.1373544278311733,0.1487065528277211,0.1599662847022171,0.1697428041948303,0.1836135402884894,0.1963253174817616,0.2074147316723349,0.2171869534802378,0.2272817242137673,0.2377556557077524,0.246904629113218,0.2563174460431655,0.2650926072861644,0.2726741922927209,0.2802793774139087,0.2872204883636661,0.2934036190858912,0.2989357499431362,0.3047419127818089,0.3091905201600492,0.3147434292866082,0.3195230164884758,0.3239558677065953,0.3267818773809994,0.3251512300040328,0.3237923883036437,0.3221779136781884,0.3216897418851345,0.3211277648212243,0.3199436869730218,0.317539668728544,0.3181877829538744,0.3188038866840016,0.3203543616489248,0.3201857886653931,0.3205862600244933,0.3227764636928809,0.3228845724492074,0.3245704673795506,0.3252870563674321,0.3258369098712446,0.3290408105293059,0.3314460542973695,0.3351926371568588,0.337025893508388,0.3401432740780047,0.3414066431806744,0.3466372153248533,0.3493066691821526,0.3503312825366777,0.3546865489957395,0.3514048278591214,0.3508249932377603,0.3470919324577861,0.0,2.243596313409937,58.231591151264674,180.36087513358595,248.94992911348672,fqhc6_80Compliance_implementation,27 -100000,95646,44541,422.0354222863476,6101,62.52221734311942,4761,49.18135625117621,1892,19.425799301591283,77.25911226955019,79.6565435451953,63.27736057920528,65.04624461077006,77.02406883889286,79.42220497542588,63.18968482691587,64.96121898176122,0.2350434306573277,234.33856976942025,0.0876757522894067,85.02562900883959,166.36796,116.56205341998376,173941.3671246053,121868.19461345352,358.61078,232.30409247649385,374288.6268113669,242233.37720140675,364.20837,176.3689961298097,377130.773895406,181473.6676185024,3369.17689,1538.7281224472704,3481709.878092132,1568034.0767905957,1113.33582,490.5330944815204,1149812.3183405474,498712.2888065871,1842.55984,780.1920496066539,1893435.4808355807,786714.8597262834,0.37907,100000,0,756218,7906.425778391151,0,0.0,0,0.0,30630,319.6369947514794,0,0.0,33280,344.33222507998244,1568311,0,56288,0,0,6471,0,0,54,0.5436714551575602,0,0.0,0,0.0,0,0.0,0.06101,0.1609465270266705,0.3101130962137354,0.01892,0.332137845002339,0.667862154997661,24.78320697335568,4.261141916757423,0.328922495274102,0.2390254148288174,0.215921024994749,0.2161310649023314,11.010465003792731,5.742304682814236,20.20912314614665,12264.596806175156,54.09779544245869,13.65211472275047,17.68663449226447,11.464673628219389,11.294372599224369,0.5599663936147868,0.7776801405975395,0.6896551724137931,0.5739299610894941,0.107871720116618,0.7157561361836896,0.914572864321608,0.8438287153652393,0.726530612244898,0.1210762331838565,0.5037164093767867,0.7040540540540541,0.6372968349016254,0.5261813537675607,0.1042183622828784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487161046564,0.0046542755452803,0.0068002354708401,0.0090330840513737,0.0112416704817132,0.0134540565864787,0.0158859636600934,0.0177016445991608,0.0197094693368499,0.0219563125678137,0.0243907440253442,0.0266862441087985,0.0285831833376189,0.030482214415955,0.0328376384144642,0.0348967057509771,0.0368486480886771,0.0386763270983412,0.040700637605184,0.0429810478910827,0.0572240683846427,0.0712939106391001,0.0853197521789352,0.097833984436699,0.110098524768472,0.1248014233970896,0.1376541439632922,0.1497735869159874,0.1609422784918411,0.1714469798657718,0.1844237096165255,0.1963221429964673,0.2077714111418549,0.2184989973591646,0.2275875761051795,0.2378768020969855,0.2473254252461951,0.2564553792006497,0.2649822533673098,0.2735756893123541,0.2806207128680695,0.2871555435636944,0.2935221230535511,0.2998100185171825,0.3050969393976344,0.3096559652874785,0.3148775894538606,0.3190123771851473,0.3224323938359276,0.326387786421125,0.3252146676027434,0.3242019220148017,0.3239283239283239,0.3231837529235731,0.3218891807977072,0.3195732054179542,0.3166362264750258,0.3168522300546808,0.3173220379675201,0.3182477308938577,0.3203852508260739,0.3216477295221505,0.322398522436301,0.3231325947105075,0.3262133589620374,0.3270546608736374,0.3265433854907539,0.3303456300908891,0.3337311756239688,0.3366812227074235,0.340154968094804,0.3463497453310696,0.3494528990064143,0.3503787878787879,0.3528863191271099,0.3575399172087522,0.3628318584070796,0.3652015393963945,0.3657174762702401,0.3755406999606763,0.0,2.3132100409548726,55.2702677583093,180.88988229371915,260.83685897054045,fqhc6_80Compliance_implementation,28 -100000,95621,45043,426.6635990002196,5969,61.11628198826618,4723,48.84910218466655,1844,18.96027023352611,77.28554750318864,79.71840731866871,63.27381344368565,65.07260667908955,77.05317782784397,79.4841449990836,63.18806557710003,64.98786023856967,0.2323696753446711,234.26231958511323,0.0857478665856135,84.74644051987923,165.84392,116.17024513584244,173438.80528335826,121490.30561889382,359.22879,232.60696988967385,375174.3131738844,242753.79873633807,369.12997,179.1020125484476,382284.5922966712,184482.86436799573,3358.86991,1540.9043017927534,3478393.836082032,1577173.8026090008,1147.5952,510.0850428028239,1189659.4158187008,522954.2389253653,1804.85228,761.3987514138645,1857911.2119722653,772285.3867056132,0.38272,100000,0,753836,7883.582058334467,0,0.0,0,0.0,30623,319.6996475669571,0,0.0,33731,349.02375001307246,1572435,0,56428,0,0,6479,0,0,66,0.6902249505861684,0,0.0,0,0.0,0,0.0,0.05969,0.1559625836120401,0.3089294689227676,0.01844,0.336951316839585,0.663048683160415,24.48889566990609,4.34601965929366,0.319923777260216,0.2343849248359094,0.2263391911920389,0.2193521067118357,11.238256595411668,5.863359187035354,19.71809873120498,12362.538151156845,53.84795548916967,13.467853176720132,17.03761683715585,11.922626593219956,11.419858882073749,0.5659538428964641,0.8066847335140018,0.7114493712772998,0.5463049579045838,0.1167953667953668,0.728414442700157,0.9209302325581395,0.8518518518518519,0.6844106463878327,0.1477832512315271,0.5059437518121195,0.7341211225997046,0.6646072374227714,0.5012406947890818,0.1092436974789916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023003648155654,0.00459483309497,0.0068127360597815,0.0090664227270417,0.0110995808407601,0.0136193706770976,0.0158011241342024,0.018020594965675,0.0198525125037076,0.0221214014317462,0.0244455386635481,0.0268492925473433,0.0290575592885375,0.0309546143300382,0.0331034197918387,0.0352916839056681,0.0371498740945689,0.0392659826361483,0.0413418403988467,0.0434945866449715,0.0578679990801329,0.0724959654601471,0.0859130361683794,0.0986314647225529,0.1111005482143423,0.1264376337025819,0.1389181090816359,0.1511213917196094,0.1630786021528387,0.173456670749264,0.1865410759370751,0.1985775619064139,0.2102045486743022,0.220355882804111,0.2304953201997596,0.2409028864400572,0.2510087969328102,0.2600477875707233,0.2688356553558035,0.2766606287116226,0.2833269638328179,0.2897026618730311,0.2962681966902176,0.3015691971521533,0.307368369805993,0.3117718206951027,0.315717614049152,0.3195102685624013,0.3236968730140202,0.3279180039888523,0.3273442340328098,0.3262412322926695,0.3255210902377496,0.3241684374864478,0.3232387773600606,0.3223788127405726,0.3201421161990261,0.3211647610430205,0.3212123285328225,0.3221725125268432,0.322750628211379,0.323047137381959,0.324337359503439,0.3250553233341529,0.3254149352676963,0.3260525153884113,0.3273324275362319,0.3302167047124675,0.3323133627733927,0.3356607495069033,0.3378084179970972,0.3412736223598539,0.3439326336957204,0.3473158173695767,0.3512404402163775,0.3530377668308703,0.3578803522623747,0.3637462235649547,0.3661321011144333,0.3661284265865565,0.0,2.0988644788866844,55.95147358814171,181.733537911956,254.0605251520289,fqhc6_80Compliance_implementation,29 -100000,95797,44830,424.2408426151132,5993,61.23365032307901,4673,48.08083760451789,1829,18.70622253306471,77.35864855579545,79.6621754892607,63.35358995694328,65.05355883307996,77.13093499251335,79.43517974822853,63.269384556164766,64.9717153477533,0.2277135632821085,226.99574103216943,0.084205400778508,81.84348532665808,166.84096,116.90420701379736,174160.9444972181,122033.26514796638,359.24169,232.9630283821534,374308.506529432,242489.4917191075,369.0307,179.50283773574594,379166.0072862407,182963.1821114582,3329.52044,1518.5843513902164,3432032.756766913,1541643.6124202372,1083.67717,476.9122674246462,1114134.5344843783,480748.4132328209,1794.87958,748.9927549793877,1838383.2270321616,754743.3272084334,0.38086,100000,0,758368,7916.406568055368,0,0.0,0,0.0,30603,318.736494879798,0,0.0,33664,345.4909861477917,1571515,0,56352,0,0,6700,0,0,74,0.7620280384563192,0,0.0,2,0.0208774805056525,0,0.0,0.05993,0.1573544084440477,0.3051893876188887,0.01829,0.3385964912280702,0.6614035087719298,24.684108989850035,4.358215554708032,0.3154290605606676,0.2456665953349026,0.2152792638561951,0.2236250802482345,11.48629797049345,5.953724125507432,19.417657965439087,12267.33724152654,52.97739376074973,13.801021756581008,16.59348404968683,11.285654914369616,11.29723304011229,0.5568157500534988,0.7787456445993032,0.6926729986431479,0.5854870775347912,0.0937799043062201,0.7448979591836735,0.923963133640553,0.8900523560209425,0.7233201581027668,0.1219512195121951,0.4863195057369814,0.6904761904761905,0.6236263736263736,0.5391766268260292,0.0869047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024391231301742,0.0046389611968114,0.0067317538043533,0.0089094543720255,0.0110946294678235,0.0133055287116626,0.0155339608034877,0.0178001285281486,0.0200437243323866,0.0223715706131467,0.0246845296624057,0.0266170225860052,0.0287463784494626,0.0307377260051246,0.0328697068739754,0.0350116189000774,0.0370627127588026,0.0391445424670599,0.0410075305115554,0.0430052676507943,0.0573985978968452,0.0707774014134571,0.0841010806108438,0.0965677413930808,0.1088195930067129,0.1248441297685723,0.1379123908065473,0.1495101428617017,0.1601311027362892,0.1708156438955358,0.1836631424818587,0.1962852383115899,0.2071162922203614,0.2174635992692505,0.2283175903296122,0.238526924739286,0.2469951453601919,0.2558550248599519,0.2643367752184273,0.2721263775288107,0.2786289576004443,0.2851274008356839,0.291407665257699,0.2969654825134581,0.3027621085391947,0.307693256072001,0.3137416804283641,0.3189373418284944,0.3231611792275722,0.327061369364139,0.3265498398341813,0.3259021894597865,0.3256366962149993,0.3248722906865999,0.3237546755328623,0.3217650657693484,0.3198119777158774,0.320844899232955,0.3213656801901147,0.3226660465449081,0.3228631436822563,0.3238988112897802,0.3261900763999664,0.3263736755040908,0.3285868911605532,0.3295445637689111,0.330973047053449,0.334815796114055,0.3382715180519389,0.3428753433929211,0.3464165376559512,0.3492359299291837,0.3515970205782098,0.3503560217441237,0.3512272812441446,0.351967116852613,0.3558702603928734,0.3579096617378975,0.3574811925327389,0.3583792289535799,0.0,2.76760940648803,55.20357307749054,168.8095814741638,259.9670154307211,fqhc6_80Compliance_implementation,30 -100000,95865,44944,424.7222656861212,6007,61.39884212173369,4725,48.745631878162,1883,19.28753976946748,77.41454581429173,79.70208956414005,63.37712166936033,65.06748979323118,77.17231717067766,79.46176959811,63.28704040138148,64.98049020387207,0.2422286436140694,240.31996603005723,0.0900812679788529,86.99958935910956,168.6806,118.2094323599365,175956.397016638,123308.22756995408,365.03877,236.9622660826541,380243.69686538365,246642.79568419565,371.57915,179.7510564092881,384009.6281228811,184677.45645641387,3359.78641,1542.705237613288,3466462.368956345,1571003.992711927,1103.90575,492.134377002618,1136448.1823397486,498288.9240104499,1845.09884,778.4667051062569,1891216.544098472,783475.3021739376,0.37985,100000,0,766730,7998.018046210817,0,0.0,0,0.0,31082,323.6739164450008,0,0.0,34027,351.4525635007563,1559987,0,56041,0,0,6751,0,0,54,0.5528607938246493,0,0.0,0,0.0,0,0.0,0.06007,0.1581413715940502,0.3134676211087065,0.01883,0.3410852713178294,0.6589147286821705,24.38159962007514,4.277412934983278,0.324021164021164,0.244021164021164,0.2133333333333333,0.2186243386243386,11.237591815559448,5.971623185084834,20.04296058111676,12183.728935091627,53.58114521924795,13.670717739208124,17.251419104628237,11.308018470365637,11.350989905045967,0.56,0.7762359063313097,0.7086871325930765,0.5625,0.0958373668925459,0.7349304482225657,0.9287469287469288,0.8894230769230769,0.7436974789915967,0.111587982832618,0.4940250655785485,0.693029490616622,0.6412556053811659,0.5064935064935064,0.09125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002277673735891,0.0045691707613596,0.0069156433474958,0.0088725559864373,0.0113324524850086,0.0134311500931022,0.0157599837000814,0.0178709861683463,0.0201642559450845,0.0224308815858111,0.0246143445393645,0.0267417528311176,0.0289040504716302,0.0309103260869565,0.0329508315033043,0.0352919304696295,0.0369661479887435,0.0390594233838373,0.0412012623012083,0.0430734985125548,0.0572423572590399,0.0703969232698618,0.0833787294669795,0.096011087894665,0.1078548035509314,0.123248027545707,0.1352840222895523,0.1470012968514148,0.1576510253291509,0.1682142895393546,0.1809536104656166,0.1930346214562204,0.2050270587468214,0.2156228485252494,0.2248466729682794,0.2353702802000797,0.2450238076652876,0.2543997662448585,0.2627478110964932,0.271414832963158,0.278411916409349,0.2842159419103633,0.2911314550658813,0.2972691215414664,0.302153464744914,0.3071897036343015,0.3120869216903665,0.3168891320668286,0.3224271806904061,0.3264696947684017,0.3255619755680364,0.3240502497351294,0.3234192367272215,0.3227358081756464,0.3219664339818803,0.3195152182894918,0.3177852242910884,0.3185469328874463,0.3187962994572082,0.3196052584701984,0.319973841554559,0.3201972386587771,0.3200075192681246,0.3217046492459177,0.3228599525100136,0.3242394351573045,0.3248212461695607,0.3284831074751764,0.3320976428621389,0.3379255740300871,0.3403899217442439,0.3445271661650562,0.3467988280032417,0.3512579797221179,0.3519932935916542,0.3565278924401462,0.3585742695426036,0.3671350030543677,0.3709411117226197,0.3610687022900763,0.0,2.1385558762121124,56.678266774039926,175.76908094273804,255.21927990447557,fqhc6_80Compliance_implementation,31 -100000,95718,44534,421.9060155874548,5950,61.12747863515744,4699,48.60109906182745,1840,18.867924528301884,77.36002699221102,79.73215827543298,63.33690834044432,65.08843267184785,77.13589810638287,79.50825167463472,63.253923330924685,65.00767900196767,0.2241288858281507,223.90660079825864,0.0829850095196391,80.75366988018118,166.97032,116.93912888837482,174439.83367809607,122170.46834281411,359.33911,232.5388292713258,374931.9041350634,242459.13963029505,367.82998,177.29265149377775,381072.797175035,182690.1104508664,3346.99975,1517.8655009244826,3464648.927056562,1553687.3011601605,1115.27192,488.0794993625006,1153877.1182013832,498626.8824698597,1798.16896,747.5609767868783,1846551.9129108423,755358.2871577761,0.3792,100000,0,758956,7929.083349004367,0,0.0,0,0.0,30637,319.5637184228672,0,0.0,33670,348.55513069642075,1572673,0,56427,0,0,6634,0,0,52,0.5432625002611838,0,0.0,0,0.0,0,0.0,0.0595,0.1569092827004219,0.3092436974789916,0.0184,0.3412367830823454,0.6587632169176546,24.384454467395063,4.367343481006065,0.3253883805064907,0.2366460949138114,0.2204724409448819,0.2174930836348159,11.330554914570984,5.926536941501627,19.47093580280835,12209.477292488687,53.396442898625686,13.36926550705954,17.19052385567183,11.694007585927,11.142645949967326,0.5739519046605661,0.8012589928057554,0.6952256376716809,0.6032818532818532,0.1154598825831702,0.7303643724696356,0.9017632241813602,0.8756613756613757,0.7490196078431373,0.1073170731707317,0.5181870669745958,0.7454545454545455,0.635968722849696,0.5556978233034571,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890480193657,0.0045109428377378,0.0066975837959063,0.0086958288465836,0.0111884128727775,0.0131359211437415,0.0154026503567787,0.0177488824021719,0.0198619984666496,0.0217961055713671,0.024052164284689,0.026107757381627,0.0280428612562214,0.0299728081740276,0.0319538593287316,0.0341184011910423,0.0363110839454245,0.0383625342522627,0.0405641537693459,0.04239822446364,0.0560481218083273,0.0701337575618026,0.082557932170319,0.0956637884795389,0.1080080966538048,0.1238014694222739,0.1360347936777341,0.1480216248430283,0.1593399551425825,0.1694680725540884,0.1830090707344925,0.1948147506925207,0.2066342057212416,0.2168865666094598,0.2266468712196195,0.2372830673474134,0.2470771976796073,0.2563133868537633,0.2648882741732515,0.2720153867289462,0.2793932316657224,0.2854021081169514,0.291837627555545,0.2969889254714157,0.3022996041863966,0.3077320920610292,0.3127603417434922,0.316812809759817,0.3208394250300811,0.3257108192224508,0.3248448793356394,0.3245489699588534,0.3239174560216509,0.3232971800433839,0.3221505440275878,0.3205860289952695,0.319045661522894,0.3194753733298401,0.3201425356339085,0.3206089201459984,0.3217823632761392,0.3232667704863096,0.3240825688073394,0.3256636774294043,0.3275478202580738,0.3282965963081237,0.3283302063789868,0.3320028913542223,0.3335087903989893,0.3344216603623333,0.3384087791495199,0.3412829385147724,0.3445805843543826,0.348423851120395,0.3537757864277046,0.354276973761619,0.3595009888939601,0.3639119013942211,0.3631346578366446,0.3664739884393063,0.0,1.943310151877986,54.46277534995924,181.1321817291814,255.8408271412772,fqhc6_80Compliance_implementation,32 -100000,95751,44717,423.3585027832608,5973,61.29439901410951,4691,48.40680515086004,1908,19.54026589800629,77.33346816806463,79.69770052976457,63.32120940122799,65.07141959636154,77.09884479064392,79.46489276936957,63.23567652099322,64.98904519924908,0.2346233774207036,232.80776039500492,0.0855328802347656,82.37439711245997,168.86804,118.22509259818511,176361.6463535629,123471.3920462294,361.50325,233.8167796309993,376956.37643471087,243604.2968294357,365.65396,176.4973832101468,378862.98837610055,181853.4124370094,3393.76088,1518.8236251699516,3506380.309344028,1548309.6469733834,1143.20855,490.86768864046815,1178721.6843688316,497604.3982120883,1868.05018,767.4937047051817,1915428.998130568,771297.4396187931,0.37839,100000,0,767582,8016.438470616495,0,0.0,0,0.0,30816,321.2290211068292,0,0.0,33334,345.0303391087299,1562087,0,56079,0,0,6649,0,0,70,0.7310628609622876,0,0.0,0,0.0,0,0.0,0.05973,0.1578530088004439,0.3194374686087393,0.01908,0.3289829699188286,0.6710170300811714,24.6749415676787,4.374202747445102,0.3172031549776167,0.2321466638243444,0.2229801748028139,0.2276700063952249,11.136254155263208,5.831869963062928,20.129014467586263,12186.017210385628,52.813615683341965,13.12776300845028,16.446625822897758,11.695986071762675,11.543240780231253,0.5593690044766574,0.7961432506887053,0.665994623655914,0.6089866156787763,0.1207865168539325,0.7367979882648784,0.9108910891089108,0.8448275862068966,0.7755102040816326,0.1377551020408163,0.4988564894225271,0.7284671532846715,0.6114035087719298,0.5580524344569289,0.1169724770642201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986929429049,0.0045633391473654,0.0069829283640866,0.0092259546018004,0.0111368767925794,0.0132472583979065,0.015281572401419,0.0173705374456532,0.0197763787253178,0.021915592724146,0.0238971530504495,0.0259637595605975,0.0281254177678598,0.0303810504634397,0.0324164826775065,0.0344392764857881,0.0367375254977893,0.0386826322452113,0.0408154778612939,0.0428062574207928,0.0576728358333594,0.0710734806225078,0.0842129561622563,0.0971887719150636,0.1095503248122838,0.1251612493920104,0.1372374283895608,0.1478986409544182,0.1586321792434695,0.1689935447897231,0.1819435169427629,0.194173076715026,0.2052612118839445,0.2160465472362578,0.2260863826838684,0.236619499988928,0.2457473881596571,0.2550323488045007,0.2632695667960151,0.2718084314870139,0.2791143996762819,0.2854103343465045,0.2915247421704986,0.2976057873115111,0.3025126481685937,0.3070932020916641,0.3115198620465593,0.3164392957853822,0.3211260684589621,0.3262248598747115,0.3247162418709859,0.322707465599956,0.3218368151359874,0.3214497319325424,0.3206854527079246,0.318444666001994,0.3160924096595684,0.3164669329782512,0.3170389628159956,0.3182500536135535,0.3190939238941037,0.3201913005671825,0.321791919614821,0.3228647428303194,0.3240718447536957,0.3255132731790244,0.3266317348217337,0.3300078678206137,0.3332981307424226,0.3367593952140958,0.3374744027303754,0.3402401445117415,0.3421981346105369,0.3432300412150816,0.3456312511794678,0.3492805755395683,0.3540382244143033,0.3637482058642608,0.3676222596964587,0.3713178294573643,0.0,2.2329202111681217,52.15159348770874,176.4914624193757,262.9775097892679,fqhc6_80Compliance_implementation,33 -100000,95800,44715,423.23590814196245,5926,60.65762004175365,4655,48.03757828810021,1873,19.248434237995824,77.34149214859087,79.68010373149355,63.33904717832892,65.07209766236502,77.1104913541802,79.44852541467658,63.25387728954768,64.98845255059034,0.2310007944106757,231.5783168169645,0.0851698887812375,83.64511177468614,166.97274,117.04593870045623,174292.58872651358,122176.98853293566,360.58368,233.40238960467155,375867.70354906056,243111.96028221,368.09927,178.63508000908286,380162.5469728601,183358.995246234,3337.02759,1527.6018434832586,3448260.323590814,1559674.87462289,1108.7861,493.5080664931434,1142388.6221294363,500332.06057817646,1828.05196,767.2867368829261,1880885.5323590816,778373.0118418628,0.3803,100000,0,758967,7922.390396659708,0,0.0,0,0.0,30712,320.0208768267224,0,0.0,33603,346.71189979123176,1572626,0,56422,0,0,6734,0,0,70,0.7306889352818372,0,0.0,2,0.0208768267223382,0,0.0,0.05926,0.1558243491980016,0.3160647991900101,0.01873,0.3309108527131782,0.6690891472868217,24.725420401514285,4.397285410147924,0.3074113856068743,0.236734693877551,0.2354457572502685,0.2204081632653061,11.244548480359724,5.82583428318489,20.049399134117103,12302.297085026335,52.94703425584344,13.191120305398876,16.27870919622946,12.20189906970825,11.275305684506858,0.5705692803437165,0.7921960072595281,0.7092941998602376,0.5757299270072993,0.1335282651072124,0.7468652037617555,0.9225181598062954,0.8793565683646113,0.7381818181818182,0.1906976744186046,0.5039952648712637,0.714078374455733,0.6493383742911153,0.5213154689403167,0.1183723797780517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0045821801851119,0.0067481861078695,0.0087692557818152,0.0112835122348272,0.0136190932149005,0.0158799771540469,0.0180743191495879,0.0201445911261542,0.0220972977400956,0.0243927447220826,0.0264319894847097,0.0285840653350064,0.0304207186418328,0.0325230096165751,0.0347190639599785,0.0366132723112128,0.0388792647379176,0.0407423186026454,0.042702033083145,0.0579158232998768,0.0722575383714608,0.0862804271059277,0.0990133341739432,0.1108781099507887,0.1266672303367224,0.1395166419334322,0.1508474936730397,0.1623357913496323,0.1724732888236365,0.1844393740448156,0.1969601971763993,0.2083799550259089,0.2184412973161989,0.2286235748133651,0.2391701446932878,0.2485900265275641,0.2572897836363024,0.2658679379890609,0.2742011090150346,0.2816403814625811,0.2885428097784211,0.2943269117125635,0.300221411046616,0.3064521998617125,0.3099926162933792,0.31480301383214,0.3196378918500273,0.324421759917302,0.3282000658111221,0.3269698721482059,0.3255823535875178,0.3238290925467237,0.3225787816643078,0.3219910846953938,0.320822299438228,0.3191283829793973,0.3197792813505879,0.3198167396061269,0.3203982411611196,0.3201321370922332,0.3205592854455073,0.321414323807924,0.3235755592414937,0.325177946676318,0.3271072045204834,0.3278109567015045,0.3298540609137055,0.3321891145870196,0.3349179083609635,0.3373555013125777,0.3384079335298847,0.3430243654176474,0.3465010415862973,0.3484330484330484,0.3506028411125701,0.3560770904569474,0.3595621643948781,0.3611890072910824,0.3668206312548114,0.0,2.147725564146133,55.82690647170059,174.9259657966322,251.09601619555335,fqhc6_80Compliance_implementation,34 -100000,95707,44699,423.1874366556261,6070,62.22115414755452,4766,49.264944047979775,1874,19.2148954621919,77.3419109081298,79.71097231958072,63.33255108723839,65.08083832708597,77.10523425210002,79.47505089077099,63.24498524590399,64.9958617627899,0.2366766560297861,235.921428809732,0.0875658413343956,84.97656429607048,166.03598,116.30473908832305,173483.63233619276,121521.66412939812,359.79782,232.7346616131979,375409.4371362596,242646.777783441,367.86728,177.57350141510412,380848.7049014179,182807.9029191502,3401.8884,1564.6269042392375,3517004.795887448,1597583.207179916,1145.48502,509.990180518324,1182748.5554870595,518777.9106492267,1839.7856,774.7243656729335,1888013.583123492,780747.629061759,0.38171,100000,0,754709,7885.619651645125,0,0.0,0,0.0,30602,319.2034020500068,0,0.0,33654,348.17724931300745,1576860,0,56655,0,0,6679,0,0,75,0.7731931833617186,0,0.0,1,0.0104485565319151,0,0.0,0.0607,0.159021246496031,0.3087314662273476,0.01874,0.3468071720666876,0.6531928279333123,24.569372663974395,4.223175414577767,0.3252203105329416,0.2396139320184641,0.2108686529584557,0.2242971044901384,11.17573826652597,5.857681207895932,19.96978831197143,12309.089088631732,54.363309307510335,13.89967813971789,17.45883221930027,11.186616395965746,11.818182552526412,0.5704993705413345,0.8029772329246935,0.6980645161290323,0.591044776119403,0.117867165575304,0.7433962264150943,0.9123595505617976,0.89,0.7551867219917012,0.1715481171548117,0.5039232781168265,0.733142037302726,0.6313043478260869,0.5392670157068062,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0044289044289044,0.0068573747210387,0.0090395709758673,0.011215276365559,0.0133175857294127,0.0153929274085853,0.0176267657385482,0.0195829926410466,0.0219024420199373,0.0240186982952157,0.0261633876863679,0.0281974023837191,0.0304235393507309,0.032587608866141,0.0345886268956035,0.0368479375304218,0.038989207139892,0.0409149987002859,0.0430700291788245,0.0576814621409921,0.0713769822578112,0.0852727005644975,0.0976438413800357,0.1099378685429171,0.1254047190773463,0.138026883944959,0.1493771957840945,0.1609901497831243,0.1715333948379068,0.1847152965503871,0.1971497208154785,0.2082096126863967,0.2182736676361887,0.2282415044539756,0.2386481879164914,0.249021422756521,0.2575459501995391,0.2666689353206742,0.274367983153847,0.2814043611544913,0.2885375956565491,0.2947992614335764,0.3001545891404125,0.3054121363056551,0.3110990555569255,0.3148723473554982,0.3191529974676457,0.3236432853794657,0.3278727414104406,0.3271865830349691,0.3264111268399279,0.325714767647803,0.3252105202445495,0.324187233032748,0.3218434729440538,0.3194760460118822,0.3199029205818205,0.3216414214723612,0.3224279872136007,0.3235112185795422,0.3242019067209937,0.325748829789467,0.3263573013063255,0.3270904138645841,0.3282950896702952,0.3300962554625689,0.3324721154452076,0.3359050236031847,0.3369916590174402,0.3415246882565203,0.3458706786171575,0.3505500063219117,0.3532159264931087,0.3510668563300142,0.3594497607655502,0.3630769230769231,0.3651119786316005,0.3627698345948977,0.3627262225644975,0.0,2.028660909300697,58.50340378629794,179.43246718839887,253.61989832249472,fqhc6_80Compliance_implementation,35 -100000,95708,44862,424.4890709240607,6188,63.47431771638735,4875,50.351067831320265,1929,19.79980774856856,77.33810060160408,79.72077954497801,63.31256206328344,65.07479966313427,77.09414411264933,79.47589074903036,63.22230267421025,64.98641347983865,0.2439564889547512,244.88879594765933,0.0902593890731893,88.38618329562564,167.86352,117.55967881243268,175391.31525055377,122831.61158151114,364.44993,236.2005896347468,380181.16562878754,246180.51744341827,374.37287,181.5372476186499,387315.84611526725,186720.3983203901,3497.62764,1596.9845683928668,3617931.729844945,1632054.821324097,1180.39937,523.4437728506932,1220397.9395661803,533992.6376524265,1898.62144,798.4586473862514,1951422.263551636,807668.7792977947,0.3819,100000,0,763016,7972.332511388808,0,0.0,0,0.0,31050,323.7869352614202,0,0.0,34255,353.99339658126803,1560807,0,56097,0,0,6608,0,0,70,0.7313913152505538,0,0.0,0,0.0,0,0.0,0.06188,0.1620319455354805,0.311732385261797,0.01929,0.3330770413655236,0.6669229586344764,24.45877354944976,4.359307587178214,0.3093333333333333,0.2383589743589743,0.226051282051282,0.2262564102564102,11.225237060283169,5.768259828123806,20.554296843281247,12303.37336579558,55.31260995174303,13.837871621858705,17.12773457490284,12.18380176601142,12.163201988970048,0.5671794871794872,0.7891566265060241,0.7181697612732095,0.5680580762250453,0.1260199456029011,0.7393658159319412,0.9301204819277108,0.9177718832891246,0.71875,0.1632653061224489,0.5050251256281407,0.7108433734939759,0.6516357206012379,0.5224586288416075,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024730899434432,0.0049807263136538,0.0069851970678416,0.0091977153078439,0.0116400932021448,0.0137911365974393,0.0158701017889562,0.0180477391810595,0.0200848800940839,0.0222904827727435,0.0243644828187327,0.0265846570897553,0.0285837668880709,0.0307804792651405,0.033021446919133,0.035011574074074,0.0369522902344073,0.0391849692392285,0.0411377600349312,0.0433555215267143,0.0582516160698434,0.0727849426346202,0.0863552421724166,0.0996403104688584,0.1117098686014384,0.1277820089701278,0.1406758979256194,0.1521572469014864,0.1625543646680416,0.1731980218200542,0.1855842266874966,0.1981378227683646,0.2093575145326685,0.2189815372155888,0.2288928516390375,0.238894985976698,0.248302055406613,0.2574358858892666,0.2655263277452183,0.2734453820049528,0.2802738107647938,0.2875862149724229,0.294616523541605,0.3000659432887717,0.3045824723471496,0.3089322521321632,0.3136539690896101,0.3184037115872388,0.3233784414372375,0.3277537226739888,0.3262470548636823,0.325469360788416,0.3238894915540778,0.3225680596497312,0.3214344097846602,0.3194231594433887,0.3171932379384576,0.31791252974481,0.3182532900358913,0.3189148643580448,0.3196228042218931,0.3203985213592425,0.3220442058465797,0.3235788388715857,0.3258045894068408,0.3267542720614969,0.3261023879156137,0.3286081665934893,0.3307920965203706,0.3339123568890643,0.338626725615808,0.3390517286744198,0.3428429051949669,0.3484837083301979,0.3531653806823464,0.3565380997177799,0.3580358487724054,0.36016779864163,0.3583987016499865,0.3619909502262443,0.0,2.235234225210704,56.7151441364553,185.2088870903413,266.0445833395244,fqhc6_80Compliance_implementation,36 -100000,95648,44584,423.30210772833726,6052,62.1236199397792,4748,49.03395784543326,1857,18.975828036132487,77.27782633283482,79.68909024697201,63.2892740309558,65.07239619005455,77.05524419878175,79.46898271216156,63.2058183284306,64.99290554349263,0.22258213405307,220.1075348104524,0.0834557025251996,79.49064656192206,166.45222,116.60234283517232,174025.82385413183,121907.76893941568,359.93859,233.049413869122,375716.92037470726,243054.2655038495,362.83313,175.7985859278698,375819.1493810639,181074.61226007243,3367.38531,1525.2159578993762,3481859.944797592,1555871.57901825,1112.94085,492.1047995749318,1149151.3361492138,500067.1415763341,1816.9016,755.253791077297,1859539.4362663096,755619.9472024149,0.37884,100000,0,756601,7910.264720642355,0,0.0,0,0.0,30750,320.874456339913,0,0.0,33221,343.7186349949816,1571754,0,56393,0,0,6438,0,0,51,0.5332050853128136,0,0.0,0,0.0,0,0.0,0.06052,0.1597508182874036,0.3068407138136153,0.01857,0.3340700978844332,0.6659299021155668,24.54155316251888,4.324810277482903,0.3245577085088458,0.2411541701769166,0.2108256107834877,0.2234625105307497,11.167590830949994,5.86306421226396,19.60129682435072,12184.916969378524,53.570016520714056,13.611359123665231,17.426639294793016,10.952269651712912,11.579748450542892,0.5621314237573716,0.7816593886462883,0.7073329007138222,0.5584415584415584,0.117813383600377,0.7417802726543705,0.93,0.8746987951807229,0.7227272727272728,0.1462264150943396,0.4981433876035418,0.702013422818792,0.6456483126110124,0.5121638924455826,0.110718492343934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024116896013618,0.004391124452377,0.0066797961545489,0.008841732979664,0.0109873340454753,0.013131488065525,0.0151555328913819,0.0173940576261145,0.0195883881262658,0.0216961514428248,0.0240307692307692,0.0261619844897539,0.0280807540335857,0.030033496521515,0.0320469140391087,0.033987360756286,0.0360506927245785,0.0381492326542479,0.0398759599575433,0.0419686147750378,0.0570150688653416,0.0708817276373804,0.0840672201870493,0.0968607600265199,0.1087940732610783,0.124642713472084,0.1364181862594122,0.1475163551899759,0.1591011187883714,0.1694778771513544,0.1813332471227208,0.1936853046905453,0.2051418806395785,0.2158521371823772,0.2261448701012769,0.2362927175213864,0.2458547805406371,0.254304233340085,0.2635933403697524,0.2706096472150363,0.2769606142602743,0.2844318726403516,0.2909757539917209,0.2969659932417859,0.3023309485345026,0.3080915804657929,0.3135374677649533,0.319050103719918,0.3232717281422536,0.3273936802090758,0.3269560058784667,0.3250779116908905,0.324185054988494,0.3235617707519036,0.3222429071412614,0.3199772880731692,0.3173623234407237,0.3176228496172524,0.318458904109589,0.3179899101935668,0.31852879944483,0.3202905434825634,0.3215109210581478,0.3224011974710127,0.3237612342000288,0.3245064120906277,0.327003678042939,0.3287183045288255,0.3318721719457013,0.3345729366602687,0.336995833905599,0.3380498962710782,0.3405596168389211,0.3411539931218953,0.3464003015454203,0.3482569245463228,0.3577699060526721,0.3578774167009461,0.354108440469536,0.3571703191080354,0.0,2.408415844611625,54.35353030208184,175.95651728381148,263.88007717273695,fqhc6_80Compliance_implementation,37 -100000,95835,44684,423.7178483852455,5989,61.585015912766735,4659,48.207857254656446,1845,18.970104867741437,77.39792083527668,79.70311818770485,63.37134666233783,65.07225523168411,77.16933226785272,79.47300610612501,63.28748580843018,64.9896368450739,0.2285885674239551,230.1120815798328,0.0838608539076446,82.61838661020704,167.23608,117.08808397162484,174504.1790577555,122176.7454182969,360.30448,233.1459970144857,375567.9970783117,242883.1919596032,361.99317,174.79574171420478,375578.3168988365,180688.4473578961,3331.12243,1505.525662299596,3447373.110032869,1542435.6991700283,1108.74549,485.100687338196,1146036.2185005478,495287.7417834775,1802.8883,751.97695225674,1854517.4518704023,761972.6906356036,0.38038,100000,0,760164,7932.008138988887,0,0.0,0,0.0,30661,319.5074868263161,0,0.0,33074,342.901862576303,1574248,0,56445,0,0,6579,0,0,63,0.657379871654406,0,0.0,1,0.0104346011373715,0,0.0,0.05989,0.1574478153425521,0.3080647854399733,0.01845,0.3279210442534225,0.6720789557465775,24.521350682057587,4.34329333468598,0.3213135866065679,0.2354582528439579,0.2223653144451599,0.2208628461043142,10.9876814689655,5.578720212485646,19.71506702612984,12251.647821698793,52.84927292569686,13.192962974571795,16.981040828774564,11.507692978819826,11.167576143530676,0.549903412749517,0.7839562443026435,0.6599866399465598,0.5694980694980695,0.1205053449951409,0.7194928684627575,0.8954869358669834,0.8230958230958231,0.7090163934426229,0.1210526315789473,0.4869002060641743,0.7144970414201184,0.5990825688073395,0.5265151515151515,0.1203814064362336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0047928340544538,0.0070287539936102,0.0088949361818791,0.0107453643461288,0.0129856913150556,0.0149273501660858,0.0169344554960469,0.0190448944561374,0.0211577418100714,0.0233797102637132,0.0253093132527648,0.0273491277457003,0.0295134601136082,0.0315392385232215,0.0334210933870218,0.0355354630472564,0.0373533435595539,0.0396041660176733,0.0417533927233369,0.0565575224008261,0.0707532369736649,0.084070796460177,0.0969217182867596,0.1094621230487072,0.1244661507886168,0.1369072864534735,0.1491639792671115,0.1606845276246635,0.1719415278686414,0.1846032908339076,0.1978218078778308,0.2090879443417762,0.2191018605566365,0.2288755236451198,0.2393415036478572,0.2474884317332887,0.2564526282656594,0.2656200408070732,0.2727979867307252,0.2805417836794601,0.2873277271665498,0.2932609903424471,0.2989508188876527,0.3041834310921518,0.3103206609944425,0.314836083992909,0.3197522402457289,0.3241685086800843,0.328442081436054,0.3275364652523382,0.326252417065511,0.324639024664307,0.3228227363083749,0.3215582260287166,0.3193109341145595,0.3181875552189827,0.3183730256158442,0.3191373284459978,0.3204879005652941,0.3204032393813006,0.3212911627172819,0.3220278696070636,0.323374065619265,0.3239409483900489,0.3261187024095129,0.3268515870746354,0.3303534763243516,0.3347985090372037,0.3361007388575514,0.3389582475876892,0.3413266396069216,0.346594868546088,0.3487340319742982,0.3497443665972353,0.3589347283319463,0.3602884762927728,0.3605827600161878,0.3569482288828338,0.3560864618885097,0.0,1.5328692182522514,56.16933957190184,170.7624168964367,256.9824248916032,fqhc6_80Compliance_implementation,38 -100000,95555,44374,420.448956098582,6028,61.828266443409554,4752,49.16540212443096,1860,19.15127413531474,77.19945181010942,79.67135719370981,63.224607941291474,65.05414690885073,76.97503340243057,79.44664820158035,63.142325170874,64.97392975974282,0.2244184076788542,224.7089921294645,0.0822827704174713,80.21714910790934,165.59246,115.93735885120012,173295.4424153629,121330.49955648591,359.84017,232.86319682892545,376023.1489717963,243139.4974924656,365.01875,176.28248184310073,378285.9609648893,181621.7974995567,3376.44943,1533.5854250373336,3498449.4374967297,1569859.6149205505,1121.5311,493.2219198493385,1161910.9832033908,504385.2657517317,1816.6776,747.961016505656,1872441.5886138876,758606.2773131283,0.3782,100000,0,752693,7877.065564334675,0,0.0,0,0.0,30641,320.0774423107111,0,0.0,33415,346.07294228454816,1572714,0,56411,0,0,6550,0,0,72,0.7325623986185966,0,0.0,0,0.0,0,0.0,0.06028,0.1593865679534638,0.3085600530856005,0.0186,0.335915270312994,0.664084729687006,24.64902522012441,4.328253004787188,0.3181818181818182,0.2369528619528619,0.2283249158249158,0.216540404040404,11.310791648511378,5.847853326455748,19.59600267354877,12225.17181024279,53.896964539057606,13.40050270519782,17.17642887533686,12.068059233646508,11.251973724876429,0.57260101010101,0.7770870337477798,0.7182539682539683,0.5898617511520737,0.1166180758017492,0.7621359223300971,0.9328358208955224,0.9154228855721394,0.7142857142857143,0.1691542288557214,0.5059726962457338,0.6906077348066298,0.6468468468468469,0.5562060889929742,0.1038647342995169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022402205755643,0.0048903228424747,0.0069766024859858,0.0092423133235724,0.0114427658101559,0.0137005851291565,0.0158085421237944,0.0179542203147353,0.0201698731068358,0.0224331054837618,0.0244105238305429,0.0264773323187973,0.0286917745440314,0.0306578227994347,0.0328007771324638,0.0348739713265358,0.0366621379160141,0.038610640531299,0.0408533155559259,0.0429698918444899,0.0580340798543917,0.071680979793849,0.0844379040311136,0.097145686921156,0.1097148534105561,0.1253286404885082,0.1379365366408884,0.1491927308426972,0.160501762166447,0.1707707858402511,0.1837453159253139,0.1960848145495583,0.2082942472567028,0.2186602031191734,0.2278696122354395,0.2381602914389799,0.2472895711424639,0.2565329241323283,0.2640921193364131,0.2721655641308342,0.2793988031729832,0.2861146287697575,0.2921983965083732,0.2980882388260441,0.3030683063436016,0.3080020752526126,0.3136696245905137,0.3182733996429482,0.3223164098503239,0.3256530652734608,0.3241630669546436,0.3227838504693509,0.3212522916372867,0.3197655910866734,0.3197176596726877,0.3182655410590944,0.315807843634979,0.3165398926536929,0.3181389446245133,0.3200193614313117,0.3201588466677959,0.3203160674224225,0.3214067342764975,0.3212215181340164,0.3223918144215186,0.3226254785755493,0.3254514187446259,0.3278631615489001,0.3312643272791394,0.3351203240409816,0.3372024484243935,0.3374920702051173,0.3391560230403205,0.3398906273735379,0.3433853048268135,0.3481393975191967,0.3472936195947989,0.3420059582919563,0.3460601137286759,0.353811149032992,0.0,2.147169561164094,54.24676060647205,178.76881710924272,266.31814205556265,fqhc6_80Compliance_implementation,39 -100000,95687,44479,421.593319886714,6091,62.495427801059705,4746,49.0766770825713,1890,19.36522202598054,77.33990302576841,79.73063546681121,63.32261558699434,65.0889676184877,77.10343349354274,79.49464425957486,63.23479720521372,65.0038490990317,0.2364695322256693,235.9912072363528,0.0878183817806217,85.11851945600313,166.04698,116.35832367675728,173531.38879889643,121603.06381928296,356.98926,230.89994640272303,372557.7664677542,240785.0976650152,364.50897,176.1871433180048,377638.0699572564,181632.24753487107,3376.27157,1531.7823140873782,3495748.158056998,1568120.3131954994,1115.90526,489.1221436475975,1154851.202357687,499824.7825453874,1848.53264,776.3040031139674,1897710.2009677384,783437.3145141653,0.37927,100000,0,754759,7887.790399949837,0,0.0,0,0.0,30509,318.3086521680061,0,0.0,33325,345.06254768150325,1577775,0,56537,0,0,6558,0,0,49,0.4911848004431114,0,0.0,0,0.0,0,0.0,0.06091,0.1605979908772115,0.3102938762108028,0.0189,0.3245983465917954,0.6754016534082047,24.57192464018621,4.330624447508171,0.3314369995785925,0.2355667930889169,0.2161820480404551,0.2168141592920354,11.06690496081404,5.749048517066597,20.25026721868388,12245.09704151467,53.58040640829834,13.3940484062307,17.508178830690174,11.422568932707316,11.255610238670132,0.5655288664138222,0.7978533094812165,0.7018436109345201,0.557504873294347,0.1127308066083576,0.7339667458432304,0.9317647058823528,0.8556701030927835,0.6818181818181818,0.1634615384615384,0.5044501866207293,0.7157287157287158,0.6514767932489451,0.5191326530612245,0.099878197320341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0046221681617758,0.0068289515073413,0.0087860073944663,0.0111853411020611,0.0134876524359209,0.0157887226322012,0.0178002776190087,0.0199646299949909,0.0220579956395795,0.0241226946064812,0.0264330294818099,0.0282993644982827,0.030262453133369,0.0326346100256989,0.0343986186788531,0.0362607875843063,0.0382287914802628,0.0404972433163424,0.0423750899102461,0.05724552899883,0.0714525010992692,0.0852034874571149,0.0975119667560885,0.1097196872988912,0.1244485352461357,0.1373749376677665,0.1491341046738123,0.1606660329598735,0.1707944676744934,0.1834657879433998,0.1964511766296997,0.2065703193814634,0.2176365763264056,0.2271341631175234,0.238460175423053,0.2474844380982128,0.2565556343019135,0.264418931796524,0.2724128452975399,0.280064773581632,0.2870637750628397,0.2938511403425759,0.2993412384716732,0.3057079731960765,0.3113029769309406,0.3160047532678716,0.3206973727714337,0.3240446993926994,0.3273679903921025,0.3255926724137931,0.3244147157190635,0.3224992600318538,0.3213464292430313,0.3198078267465901,0.3167516420926921,0.3151190024053678,0.3154844958059062,0.3173019527585913,0.3191974626706104,0.3198301025372352,0.3215082420294147,0.3218273050386787,0.3228006619258464,0.3240720694715066,0.3268093091136535,0.328241664291821,0.3303436555891239,0.3343177583236649,0.3359074888123242,0.3385272339072366,0.3397908815880261,0.3408590654675806,0.3447934890088994,0.3472391487766007,0.3481349911190053,0.351093316907915,0.3578753076292043,0.3564633463905988,0.3506594259115593,0.0,2.025212631580426,55.58461662611649,175.36864893169383,261.19711172021,fqhc6_80Compliance_implementation,40 -100000,95782,44678,423.3989684909482,6172,63.22691111064709,4822,49.73794658704141,1901,19.460859034056504,77.331780499572,79.67251110125859,63.32970022966426,65.06261023042752,77.09851615081031,79.44237849204319,63.24199813900837,64.97898041472732,0.2332643487616934,230.1326092154028,0.0877020906558883,83.62981570020622,166.94084,116.98433593687304,174292.49754651188,122136.03384443116,361.34113,233.9216349008442,376675.6697500574,243644.93840266883,372.77031,181.0152275010345,385399.74107869953,186045.15497551693,3432.55892,1567.2834974504765,3543687.342089328,1596269.8497112973,1136.48926,505.5733463435883,1174299.4821573992,515599.6078006184,1853.59384,777.2174427606368,1899872.042763776,780704.283038104,0.38046,100000,0,758822,7922.386252114176,0,0.0,0,0.0,30793,320.87448581153035,0,0.0,34079,352.0076841160135,1569760,0,56334,0,0,6630,0,0,66,0.6890647512058633,0,0.0,0,0.0,0,0.0,0.06172,0.1622246753929453,0.3080038885288399,0.01901,0.3417721518987341,0.6582278481012658,24.62078315494046,4.305993656628859,0.3145997511406055,0.2507258399004562,0.2140190792202405,0.2206553297386976,11.139873524988944,5.863718897299108,20.1809121601546,12284.07855301223,54.50210946276151,14.442728232444871,17.106816834075108,11.499696107859643,11.45286828838188,0.568021567814185,0.7791563275434243,0.6882003955174687,0.6027131782945736,0.1231203007518797,0.753393665158371,0.9279475982532752,0.8666666666666667,0.7420634920634921,0.1706161137440758,0.4977116704805492,0.6884154460719041,0.6232014388489209,0.5576923076923077,0.1113716295427901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025525449480881,0.0046125461254612,0.0068901133469309,0.0090109309602178,0.0114518179506737,0.01374759417102,0.0158642768295915,0.0180693372534607,0.0200977285273251,0.02205046834212,0.0240086931561897,0.0260282974310532,0.028327883686018,0.0303155162290505,0.0323353046206562,0.0343437267388967,0.0364148559355386,0.0382828219968054,0.0402273766471297,0.0421929504868016,0.0568327680667884,0.0713000543955814,0.0847372338529599,0.0976775956284153,0.1094298268722142,0.1246446649547179,0.1374756211311795,0.1496203662349263,0.1607415392168372,0.1712755129372689,0.1840688912809472,0.1961036713324535,0.2075235723374406,0.2178944490019141,0.2276654523041703,0.2378694028610369,0.2473775833593715,0.2560494077148932,0.2644753706035138,0.27267522414721,0.2792792792792792,0.2862737762605656,0.293069986509195,0.2983494947799925,0.3043483543319523,0.3097252367797948,0.3145784535992084,0.3193260174103672,0.3242959390073129,0.3285167084929336,0.3274747474747475,0.3269074759030346,0.3259605502132991,0.3256852879944483,0.323984066113737,0.3226488848011037,0.3205363936089272,0.3205850932697838,0.3221864731653888,0.3224752210018751,0.322768192048012,0.3240925527080163,0.3250776593065234,0.3257662256251819,0.3263470165452704,0.327944633063463,0.3295869465997261,0.3337417145729274,0.337091240109236,0.3384389508352843,0.3435803876852907,0.3483403484469071,0.3512294300781498,0.3538119343457585,0.3599433160132262,0.3641019533111005,0.3729153798641136,0.3737598704191132,0.3747240618101545,0.3769140164899882,0.0,2.415306854059777,57.82369461265204,173.60713105367557,264.9994944295097,fqhc6_80Compliance_implementation,41 -100000,95696,44558,422.5359471660258,5883,60.32645042635011,4626,47.84943989299448,1831,18.799113860558435,77.34192318165195,79.71888544105964,63.32298576779221,65.07575267809588,77.1114620202666,79.48885749263731,63.23738952814064,64.99277165721008,0.2304611613853495,230.02794842233243,0.085596239651565,82.9810208857964,167.14148,117.02323689767988,174658.79451596722,122286.44551253958,358.26806,232.4252433763022,373883.4747533857,242380.78224408775,363.51206,176.2674500750826,377224.6384383882,182061.60523930623,3331.81166,1521.7859475150742,3447692.118792844,1556259.130491424,1095.29213,484.5169766189365,1129245.600652065,491029.1922246562,1798.70102,756.2921731208849,1848089.658919913,761142.4805430454,0.37846,100000,0,759734,7939.036114362147,0,0.0,0,0.0,30600,319.2400936298278,0,0.0,33301,345.36448754388897,1569287,0,56283,0,0,6639,0,0,60,0.6269854539374686,0,0.0,1,0.0104497575656244,0,0.0,0.05883,0.1554457538445278,0.3112357640659527,0.01831,0.3335494327390599,0.66645056726094,24.35558964445329,4.395941725427084,0.3264159100734976,0.2315175097276264,0.2114137483787289,0.230652831820147,11.281964097343131,5.852166341771337,19.302708653793427,12161.9052327191,52.211653859362976,12.958695527593315,16.905871558468476,10.752722634358182,11.594364138943016,0.5559878945092953,0.8104575163398693,0.6920529801324503,0.5603271983640081,0.1040299906279287,0.7380015735641228,0.9515738498789348,0.8581907090464548,0.771689497716895,0.108695652173913,0.4870342771982116,0.7218844984802432,0.6303360581289736,0.4993412384716733,0.1027479091995221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023693083442179,0.0045002584607899,0.0066648406829179,0.0086639445832571,0.0109322404482727,0.0131335138767282,0.0154762147503211,0.0177774601002726,0.0197963106875536,0.0218706803870373,0.0237570363686698,0.0257747838409562,0.027677781663341,0.0297769306063572,0.0318748129109507,0.0339899694948554,0.0358914865186811,0.0380415602748541,0.0401310316139767,0.0422128670570827,0.0565832767535384,0.0702483665605629,0.0837374309885173,0.0965854685116009,0.1092599236077405,0.1241626718308517,0.1363945217114343,0.1481086954206035,0.1593479422768573,0.17020911159775,0.182820974542004,0.1950696445205034,0.206512154497654,0.215857102204321,0.2252251260485699,0.235260877754756,0.2450822783396967,0.2541962647333641,0.2620025411807414,0.2701718213058419,0.2775855484707162,0.2835379052923487,0.2902198491718659,0.2963629168615318,0.3021644811200369,0.3070256543018109,0.311988077048318,0.3166997556505803,0.3217618998237063,0.3261472616311326,0.3243848478307792,0.3233870634143651,0.3223854065264316,0.3213289996388588,0.320561884419129,0.3188100042805601,0.3170804950135133,0.3172260976610587,0.3189010012643953,0.3198380566801619,0.3212486657553229,0.3214716645237859,0.3210939955988682,0.321819524971458,0.3236912284073709,0.3236556622180598,0.3239304584966763,0.3264999059620087,0.3283149364258768,0.3319503714240556,0.3336650232936813,0.3366640232619614,0.3400730662635424,0.344299403908549,0.3481660770806181,0.3502976537877904,0.3521465025517862,0.3549860945570123,0.3597710547833197,0.3623459096002988,0.0,1.8573357928383696,55.91055517934803,165.63343279892388,254.6965146303226,fqhc6_80Compliance_implementation,42 -100000,95749,44578,421.4665427315168,6013,61.7029942871466,4741,49.04489864123907,1903,19.59289392056314,77.32392886815877,79.68768146578597,63.31606620966248,65.0650739079438,77.08713065685862,79.45004740135505,63.22838604706892,64.97918681891915,0.2367982113001545,237.63406443092092,0.0876801625935641,85.88708902465214,165.75328,116.14669237063472,173112.28315700425,121303.2954606677,356.52743,230.91895168672772,371902.578617009,240717.41917589508,365.95019,176.5478469264467,379350.1968688968,182164.09490502696,3394.81183,1536.3230391251066,3515486.2087332504,1574485.4767413824,1104.38882,484.6393119433981,1141640.2468955289,494375.5150898682,1860.06056,779.9780945704545,1916547.1179855664,792548.6395372787,0.37948,100000,0,753424,7868.740143500194,0,0.0,0,0.0,30322,316.2017357883633,0,0.0,33426,346.1968271209099,1577790,0,56654,0,0,6842,0,0,69,0.720634158059092,0,0.0,0,0.0,0,0.0,0.06013,0.158453673447876,0.3164809579244969,0.01903,0.332382762991128,0.667617237008872,24.55517498663304,4.337481516685529,0.3267243197637629,0.2381354144695212,0.2136680025311115,0.2214722632356043,11.092745139584714,5.778277775817225,20.28525502793159,12314.005836206585,53.54566549129226,13.433906635482114,17.33800410076788,11.18167752375825,11.592077231284026,0.5532588061590382,0.770593445527015,0.6817301484828922,0.5695952615992103,0.1142857142857142,0.7135882831570383,0.9135802469135802,0.8403141361256544,0.7090909090909091,0.1351351351351351,0.4971526195899772,0.6906077348066298,0.6298200514138818,0.5308953341740227,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020966908748366,0.0042989384460959,0.0069620638561308,0.0095612591192668,0.0120437807706392,0.0142057026476578,0.0163835817547866,0.0188124572560147,0.0207649602797288,0.0230265178662844,0.0248626148293963,0.0269926178424386,0.0291668380145577,0.0310765015502199,0.0330832653987844,0.0350830042794236,0.0372990553529996,0.0390874745713455,0.0411276569194293,0.0433197199533255,0.0582978367994654,0.0719367258118513,0.0851570282598437,0.0981113821822158,0.1108603726629477,0.1265470624325639,0.1391857047357307,0.1503961155123946,0.1610049993590565,0.17160746641507,0.1852816742203227,0.1972856061425327,0.2075229657009295,0.2190359575375264,0.228987738494529,0.2389884181854419,0.2481812095514394,0.2575980916159377,0.2663699936427209,0.2737539699829162,0.2813408882863466,0.2884556807797745,0.2951538716866613,0.3004404123315453,0.3063531072071633,0.3107629679886511,0.3155678642589506,0.3193015994392404,0.3237827180990428,0.3268239151704259,0.3265886986901919,0.3257993384785005,0.3242636785729406,0.3228595010208366,0.321692161180882,0.3200073522654167,0.3195435770015984,0.3192309585130989,0.3193016024874432,0.3202355460385439,0.3210112359550562,0.3212986396709902,0.3216709963965474,0.3227025697224521,0.3241741055316282,0.3264406779661017,0.3286946128233586,0.3324194869855675,0.3368588048651507,0.3405194701881389,0.3412731006160164,0.343406447501195,0.3453939088849735,0.3473299863076221,0.3494146525679758,0.3525068476836965,0.3509651922784618,0.3528129952456418,0.3526750066542454,0.3615413675859463,0.0,1.8684629040470944,54.10506973149379,178.1890276119182,264.07852793261367,fqhc6_80Compliance_implementation,43 -100000,95796,44924,423.9112280262224,5954,60.994195999832975,4647,47.94563447325567,1814,18.53939621696104,77.4066300966336,79.74435398932631,63.35719594835807,65.08731016099381,77.17757632455717,79.51837235094352,63.27186152041029,65.00570124878107,0.2290537720764405,225.98163838279103,0.0853344279477781,81.60891221274369,166.9745,117.00831555516656,174302.16292955866,122143.21637142108,361.00919,234.05326245095,376312.0172032235,243784.63866022584,367.78809,178.10963126704652,380487.3272370454,183273.34818636943,3335.11306,1526.2635426996392,3446040.356591089,1557809.619086014,1110.54037,495.4059558554148,1148288.3523320388,506158.8123255817,1776.94396,747.3484927858888,1819280.387490083,749062.611762472,0.38164,100000,0,758975,7922.825587707211,0,0.0,0,0.0,30706,319.97160633011816,0,0.0,33597,347.2483193452754,1571007,0,56383,0,0,6567,0,0,67,0.6994028978245438,0,0.0,0,0.0,0,0.0,0.05954,0.1560109003249135,0.3046691299966409,0.01814,0.32928,0.67072,24.73777503261847,4.259713810746112,0.3277383258015924,0.2309016569829997,0.2188508715300193,0.2225091456853884,10.960562407431157,5.669900801740436,19.220868773712912,12293.407753036772,52.74270993246453,12.870021044695063,17.192019409003105,11.307848624919195,11.37282085384716,0.5644501829137077,0.777260018639329,0.7038739330269206,0.5899705014749262,0.1131528046421663,0.7271255060728745,0.8963730569948186,0.8737373737373737,0.7352941176470589,0.1441860465116279,0.5055685814771395,0.710334788937409,0.6441881100266194,0.5455712451861361,0.105006105006105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021581859079579,0.0045527367118898,0.0067992003328563,0.0091442040986354,0.0111878438990653,0.0132991181442333,0.0152831304418751,0.0176899913234318,0.0201561797293429,0.0222481476933153,0.0244224895976387,0.0266174131650505,0.0289628662754247,0.0312339146369083,0.0333474213732746,0.0355627149096992,0.0376979816475797,0.0399829991914249,0.0420021401040963,0.0441413773359013,0.0588161642720756,0.0727230896332472,0.0859667326981731,0.0986285534128527,0.1107294871254583,0.1264990860198011,0.1390552299392693,0.1504135921917196,0.1607823053039275,0.170758354755784,0.1837665691168876,0.196323728172136,0.2082441288022865,0.218916882351014,0.227803045283765,0.2382385483514051,0.2481403414857194,0.2571499235542764,0.265324638502977,0.27370228352315,0.2808496369270616,0.2880080398251805,0.2949784113089252,0.3001401180824182,0.3057454792757125,0.3105577051038766,0.3144341512268402,0.3187236803603007,0.3229988215030369,0.3275957654637134,0.3265963323766792,0.3252294272230707,0.3239172701400434,0.3217784585151576,0.3212170686456401,0.3197761536344454,0.3180362018085123,0.3174660278318316,0.3184704723740958,0.3202092755165381,0.3212440066416671,0.3225020149004344,0.3222796200633228,0.3223646153161572,0.3233522917363667,0.324215919677052,0.326000282765446,0.3301633823896233,0.3343901334355293,0.3375182022118147,0.3410660287945118,0.3435266918873476,0.3447009770365299,0.3485166317051243,0.352686388351304,0.3555091141298038,0.3581749049429658,0.3605807478122514,0.3593322386425834,0.3521288837744534,0.0,2.231494147222565,53.93503169587491,179.1257095871423,250.29684102362165,fqhc6_80Compliance_implementation,44 -100000,95692,44489,420.9233791748527,6111,62.638465075450405,4780,49.41896919282699,1908,19.57321406178155,77.29491858535671,79.69690275275481,63.29396199958445,65.0737332153044,77.06649774966968,79.46898505401003,63.2098344598639,64.9922815728842,0.2284208356870323,227.91769874477552,0.0841275397205549,81.45164242020542,167.04556,116.959094594729,174565.8571249425,122224.52722769824,361.09381,233.4281440699242,376741.6398445011,243328.53746386757,366.38886,177.27707636662268,378989.16314843454,182323.6302860292,3428.56478,1553.198436541502,3545643.658822054,1585849.3777342944,1148.80019,498.6540128285711,1190835.785645613,511420.3933751738,1867.43086,771.103227765848,1917789.825690758,777536.6349463722,0.379,100000,0,759298,7934.811687497388,0,0.0,0,0.0,30779,321.0822221293316,0,0.0,33631,347.65706642143545,1570407,0,56380,0,0,6521,0,0,56,0.5747606905488443,0,0.0,0,0.0,0,0.0,0.06111,0.1612401055408971,0.3122238586156112,0.01908,0.3343236903831118,0.6656763096168882,24.546181651796093,4.3220188398337775,0.3167364016736401,0.2420502092050209,0.2205020920502092,0.2207112970711297,11.287124905715707,5.828651111805667,20.095455108793608,12268.928865945893,54.104704951540896,13.949731817875826,17.05813787323894,11.58733632785992,11.509498932566212,0.5648535564853556,0.7796024200518582,0.702113606340819,0.5825426944971537,0.114691943127962,0.7376788553259142,0.908883826879271,0.8753246753246753,0.721030042918455,0.1194029850746268,0.5031232254400908,0.7005571030640668,0.6430469441984057,0.5432399512789281,0.1135831381733021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0045156118400357,0.0065302391712791,0.008804839611611,0.0112279487362195,0.0134232976262065,0.0156843136454549,0.0176743425757544,0.0200924827106436,0.0224034255626466,0.0246496932892928,0.0266280395722254,0.0286278787379859,0.0308361417720475,0.0330522208573758,0.0348201081729526,0.0369215145800087,0.0387981602799032,0.0408725865512649,0.0431189026932377,0.0574803889823161,0.07183014541914,0.0852450414524084,0.098309079621621,0.1103385699665544,0.1251864941221285,0.1371221127717391,0.1488000170361379,0.1601752417588288,0.1707474088538872,0.1837229343962081,0.1959666338486838,0.2077996912305116,0.218136906648596,0.2276156333164712,0.2374525283169281,0.2464886935374111,0.2556933255322021,0.2642604114628276,0.2715153599266391,0.2795433758234633,0.2865117258811964,0.2927626127512488,0.2987550374208405,0.3037797763733592,0.3094265582388292,0.3144539078156312,0.3197047782655723,0.3246267691272737,0.3284481054365733,0.3273098849091104,0.3266539396519756,0.3253362976304385,0.3244308420794294,0.3225140685088123,0.3204920041664114,0.3185982374944525,0.3186000657246138,0.3194926408998444,0.320528640663841,0.3214124633541306,0.3217918971979296,0.3236066469191824,0.3252701430300856,0.3269890343461668,0.3285617083638648,0.3293360045792787,0.3308486781845172,0.3349628952273766,0.3374731311201338,0.3395457459474311,0.343322510246447,0.3489734223453835,0.3507741591030432,0.3488503580851866,0.3477691850089233,0.3535583941605839,0.3560315215194989,0.3616847826086956,0.3595632530120481,0.0,2.0337066524312646,55.3164762290903,179.33882893424692,264.2539776711677,fqhc6_80Compliance_implementation,45 -100000,95715,44569,421.271483048634,6126,62.68609935746748,4854,50.07574570339027,1955,19.965522645353392,77.3593554540744,79.72929780446704,63.33143217950936,65.08346770477515,77.11554966031345,79.48953875958617,63.24052484105897,64.99736084957537,0.2438057937609556,239.75904488087,0.0909073384503926,86.10685519977324,167.22816,117.19320669437126,174714.6842187745,122439.74998105966,363.66224,235.6399401842401,379320.87969492766,245567.23625789076,373.3839,181.2180941262044,386334.94227655017,186439.14799016152,3500.53864,1599.894485641211,3611740.103432064,1626246.2617927252,1152.69968,511.6262787023732,1183359.1286632188,513688.52279273,1911.61624,807.3333305182032,1953396.5209214855,805612.5810703345,0.37962,100000,0,760128,7941.57655539884,0,0.0,0,0.0,30941,322.6140103432064,0,0.0,34183,353.39288512772293,1567089,0,56215,0,0,6596,0,0,72,0.7417855090633652,0,0.0,0,0.0,0,0.0,0.06126,0.1613718982140034,0.3191315703558602,0.01955,0.3418096723868954,0.6581903276131045,24.290174888286305,4.362923597663053,0.3096415327564895,0.242274412855377,0.2272352698805109,0.2208487845076225,11.138088057309409,5.725089163254177,20.81524495400336,12252.450897532515,55.19439800242312,14.136595745541667,17.1306978978373,12.203652325584866,11.72345203345929,0.557684384013185,0.7729591836734694,0.7032601463739189,0.5602901178603807,0.1147388059701492,0.7358630952380952,0.925,0.8854415274463007,0.69140625,0.148471615720524,0.4894586894586895,0.6820652173913043,0.6328413284132841,0.5206611570247934,0.1055753262158956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025523639752056,0.0049367948341054,0.0074583701178118,0.0095772988564116,0.0116734287137874,0.013855660867175,0.0156786788317447,0.0178531327195149,0.0198319396454785,0.0218470705064548,0.0242629339076039,0.0263560636407522,0.0284065187867813,0.0306411564100186,0.0327217567177116,0.0350017573239058,0.0372912590199915,0.0392482263618636,0.0413764424576359,0.04346875,0.0583124477861319,0.0726703718822285,0.085527558063907,0.0985551138873115,0.110204167721252,0.1258093182683763,0.1380631467232687,0.149789164324048,0.1608383387127802,0.1709848452324733,0.1848367280956999,0.1965051318695595,0.207772990381686,0.2179941777748593,0.2282755961887977,0.2384664862706827,0.2475093817012151,0.2561962085841255,0.2647342556547991,0.2720210815765352,0.2794395010587459,0.2867549049411875,0.2937324160105917,0.2991382405745063,0.3044253801070245,0.3099652803427642,0.3150467278027298,0.3199938980982406,0.3235674724364615,0.3275505226940163,0.3268359569291159,0.3255462415830699,0.3248960557365996,0.3222722888444208,0.3203756925720719,0.318449655003969,0.315966254040842,0.3167157343801112,0.3165559529892693,0.3167832292278397,0.3171494373396746,0.3173367578780994,0.3188411882019523,0.3197208697017973,0.3205118935724098,0.3203571708310488,0.3209400611096833,0.3237854889589905,0.3273962476679925,0.3327773144286906,0.3367253810349548,0.3394016821036942,0.3405309284897752,0.3399224511518284,0.3396456360738727,0.3413915094339622,0.3449588790740177,0.3529293739967897,0.3608303742146954,0.3626331811263318,0.0,2.516699675593075,58.878027032445054,173.20958139857404,270.26844158997056,fqhc6_80Compliance_implementation,46 -100000,95886,44631,421.844690570052,6133,62.58473604071502,4867,50.16373610328933,1861,19.02258932482323,77.4394230829848,79.71653415216187,63.39129033748679,65.07604962044996,77.20391492053595,79.4841551512691,63.30324736954947,64.99160211559212,0.2355081624488519,232.3790008927631,0.0880429679373193,84.4475048578488,166.85812,116.8792851470535,174016.95763719417,121893.82467045698,361.85968,234.2661329443015,376768.1621926037,243702.2560174201,370.84093,179.9974020820729,382490.008968984,184502.27811725432,3477.18652,1593.0124255150622,3586166.8648186387,1621324.9092065815,1165.30827,519.1018614961134,1200738.1160961974,526884.7793969475,1835.62918,777.3190121374648,1879133.3875643995,782650.7708428121,0.37997,100000,0,758446,7909.8617107815535,0,0.0,0,0.0,30838,320.9749077028972,0,0.0,33899,349.35235592265815,1573329,0,56526,0,0,6620,0,0,69,0.7091754792149011,0,0.0,1,0.010429051164925,0,0.0,0.06133,0.1614074795378582,0.3034404043698027,0.01861,0.3329184816428127,0.6670815183571873,24.26774123015409,4.318411366062056,0.317854941442367,0.2354633244298335,0.2202588863776453,0.2264228477501541,10.992518124731202,5.552192133458853,19.92465149949188,12246.12445533907,54.90663298884829,13.607972725055424,17.445523420797578,11.90292162430096,11.95021521869434,0.5566057119375385,0.7705061082024433,0.6910148674854557,0.582089552238806,0.1206896551724138,0.7336757153338225,0.9027149321266968,0.8523809523809524,0.7563636363636363,0.1548672566371681,0.4877283105022831,0.6875,0.6308784383318545,0.5219573400250941,0.1118721461187214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021158129175946,0.0042158174226762,0.0067052820580448,0.0087623998619135,0.0110990273105186,0.0133696912964734,0.0155742296918767,0.0177988576091391,0.0197887295165706,0.0219112502301601,0.0241193467079243,0.0264921046961411,0.028567318165937,0.0306555216997447,0.032588300789707,0.0347565697764469,0.0368925811357452,0.0390645238169252,0.0408322172734917,0.042799330025072,0.057770087145061,0.0717823333960253,0.0847120418848167,0.0975758275677435,0.1090233478599549,0.1247598133406533,0.1366563572427233,0.149217413479827,0.1607769143027705,0.1710258770146187,0.1844872070522468,0.1967735661494575,0.2079064866215467,0.2181609572201278,0.2282993556332607,0.237772686522562,0.2466226759998216,0.2564258110901411,0.2647142128816632,0.2719144800777454,0.2792330792330792,0.2866167661174492,0.2929709665216569,0.2989559886978593,0.3042770945379937,0.3085980318500363,0.3125023448931354,0.3170827774601359,0.3214950612814811,0.324655315450559,0.3238777677695172,0.3230200909103393,0.322148971760307,0.3221285685419854,0.3212744181907177,0.319543814590595,0.3177270212597803,0.3181125833237794,0.3188732010094809,0.3199273297235679,0.3214900142119829,0.3227371327154407,0.3230913838120104,0.3230427046263345,0.3250137333110416,0.3275414937759336,0.3296603944171328,0.3352954000436015,0.3372916666666666,0.3410779573062861,0.3449458483754513,0.3465153115100317,0.3501814087326411,0.3536289098086851,0.3569880312882857,0.3613614800759013,0.361951822112415,0.3629871454805142,0.3635862068965517,0.3657984144960362,0.0,2.270943545873575,59.66413798475548,171.30422329075938,266.5071948833299,fqhc6_80Compliance_implementation,47 -100000,95723,44680,422.8868714937894,6119,62.61817953887781,4774,49.14179455303323,1887,19.20123690231188,77.34647984393533,79.69885092083781,63.33814763576003,65.07548838044485,77.10683142048423,79.46524451297097,63.24871614961042,64.99148582938597,0.2396484234511007,233.60640786684428,0.089431486149607,84.00255105888732,167.78366,117.5049957349593,175280.40282899616,122755.23723134388,362.17879,234.0121700962492,377621.36581594805,243728.4918935669,364.84557,176.30109269322455,376751.010728874,180685.92179252204,3404.77205,1551.244806113517,3511019.295258193,1574701.1977400198,1135.27003,504.11877608296015,1169880.6347481797,510528.9074548017,1850.83828,779.076388858581,1887757.278814914,775233.6420693294,0.37976,100000,0,762653,7967.291037681644,0,0.0,0,0.0,30854,321.5737074684245,0,0.0,33336,343.9194342007668,1568284,0,56286,0,0,6633,0,0,69,0.7103830845251402,0,0.0,0,0.0,0,0.0,0.06119,0.1611280808931957,0.3083837228305278,0.01887,0.3316135084427767,0.6683864915572233,24.63570591705049,4.3531356016736575,0.3192291579388354,0.2339757017176372,0.2245496439044826,0.2222454964390448,11.105058068017556,5.748946145583798,20.126865138357047,12333.53816899968,54.30789498140895,13.477757241263538,17.359536872564586,11.849326622857433,11.621274244723384,0.5584415584415584,0.7887197851387645,0.6856955380577427,0.5811567164179104,0.1102733270499528,0.7339667458432304,0.8975609756097561,0.8716049382716049,0.7565217391304347,0.146788990825688,0.4953004841925377,0.7256011315417256,0.6184092940125112,0.5332541567695962,0.1008303677342823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.00489614694523,0.0070021615368222,0.0091932305316836,0.0112067036833648,0.0134488516044958,0.0159327217125382,0.0181671582686085,0.0205558565280943,0.0225855661236984,0.0247235006508881,0.0269229979676882,0.0290851890691505,0.0310121432470568,0.0330877801163798,0.0352864569875246,0.0373246363306931,0.0391870019920318,0.0410719669012547,0.0430493927462866,0.0575055856006347,0.0709104800979663,0.0844043434926297,0.0974288869025711,0.1102828766328929,0.1259171547586323,0.1387913568329603,0.1498206664609031,0.1619353667780541,0.1727294163040449,0.1845029176804978,0.1966885125343369,0.2082337086466982,0.2189692479181693,0.2286882632926976,0.2383651419209139,0.2491942948267594,0.2588322629264287,0.2680388975252187,0.2756618059771589,0.2827938079922252,0.2887633616354408,0.2946218228741225,0.3002038369304556,0.3053122608389315,0.3108276176285879,0.3158618964223167,0.3202744154670536,0.3244364362288218,0.3290500653715614,0.3275250993868338,0.3265825921744637,0.3259334432745571,0.325335531644105,0.3244609665427509,0.3223724552366936,0.3204146225668618,0.3202526453941432,0.3213968275673458,0.3218641192750647,0.3225848759649254,0.3230434782608695,0.3252334487461966,0.3259219453214214,0.325605469690404,0.3275943272803391,0.3290440650824969,0.3327877109040544,0.336762279254292,0.338618885277095,0.3399169821648497,0.3433391878226622,0.346537761315839,0.3505869797225187,0.3522641509433962,0.3547655970416318,0.3571867321867322,0.3580044980576569,0.3580454928390901,0.3599527930763178,0.0,2.85861474233212,54.58964272927489,185.11950676064575,258.305680809276,fqhc6_80Compliance_implementation,48 -100000,95747,44935,424.71304583955634,6120,62.75914650067365,4832,49.954567767136304,1903,19.561970610045226,77.41222784566315,79.76948089130401,63.350809200748486,65.090345295513,77.17176986456569,79.52894358709752,63.260451196774525,65.00242239490709,0.2404579810974638,240.537304206498,0.0903580039739608,87.92290060591768,165.67034,116.1414905116004,173029.04529645838,121300.199055965,364.68322,236.31742494357832,380322.0988647164,246256.57953151487,376.20903,181.978816030356,390165.90598138847,187941.1405564195,3411.86365,1565.891031529262,3526359.113079261,1598557.999660284,1136.52723,507.9829966816935,1172582.0965669942,516118.4649980605,1854.54242,785.2998451512143,1906156.036220456,792747.3675021697,0.38232,100000,0,753047,7864.956604384472,0,0.0,0,0.0,31059,323.8012679248436,0,0.0,34440,356.97202001107087,1571892,0,56376,0,0,6623,0,0,64,0.6579840621638275,0,0.0,0,0.0,0,0.0,0.0612,0.160075329566855,0.3109477124183006,0.01903,0.3385117290663352,0.6614882709336648,24.52034974713548,4.27149965170357,0.3213990066225166,0.2446192052980132,0.2183360927152318,0.2156456953642384,11.357755222018634,6.029727849901691,20.290810342089408,12309.691023145846,54.82283522826931,14.14142035608289,17.58356298912409,11.669065647492197,11.428786235570144,0.5614652317880795,0.7758037225042301,0.6812620734063104,0.5886255924170616,0.1122840690978886,0.728030303030303,0.9194630872483222,0.8325,0.752,0.1300448430493273,0.4988610478359909,0.6884353741496598,0.6287944492627927,0.537888198757764,0.1074481074481074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0045710231591749,0.0068072069147425,0.0089365504915102,0.011346190994215,0.0138952511833867,0.0160323705077766,0.0181423017662724,0.0203881411533862,0.0228863868986693,0.0251086332704763,0.0272545295898988,0.0293921107010311,0.0314820345406424,0.0335974905068515,0.0355577606880013,0.0377323323841573,0.039964724801577,0.0417104182477881,0.0438134127794329,0.0586828972918798,0.0727970952316176,0.0864192350460524,0.0993393507121967,0.1113069171107476,0.1266007662510848,0.1388252027342589,0.1505212603959236,0.1614975205198358,0.1721691531608887,0.1856576024842041,0.1977778018431682,0.2088944532143051,0.2202708769010105,0.2292056846975873,0.2394764572125783,0.2489830584238523,0.2580245523144498,0.2660254590463645,0.2735547327272936,0.2812608564745119,0.287653757475744,0.2935015444335301,0.29921891846563,0.304567479931506,0.3101974454038208,0.3153827879818452,0.3194186844177951,0.3233496569457186,0.3274761434682461,0.3269922672108259,0.3251580867728351,0.324009324009324,0.32286866359447,0.3227665706051873,0.3203910104147633,0.3177998111425874,0.3184850511344174,0.3190018346130325,0.3199787083037615,0.3216606162152099,0.3224831753879961,0.3238716943355301,0.3236268992058372,0.3246433017332184,0.3252631033231375,0.3252902860379495,0.3277250593082781,0.3295807047506187,0.3328880682041409,0.3341299544573206,0.3348962174691813,0.3369721165242343,0.3391592587012204,0.3376912378303199,0.3402134396622493,0.3424966200991438,0.3489759395506064,0.3514246947082768,0.3392925066565234,0.0,1.893265240819,58.223239567455344,179.54908979396436,261.92535418156973,fqhc6_80Compliance_implementation,49 -100000,95719,44434,419.15398196805234,6041,61.78501655888591,4778,49.23787335847638,1876,19.170697562657363,77.32373385663094,79.69334612285837,63.321321634088775,65.07507812411185,77.08255796740552,79.45535634277488,63.2317399632506,64.98952503277727,0.241175889225417,237.98978008349536,0.0895816708381787,85.55309133458877,167.96714,117.61328897977052,175479.41370051922,122873.50367196744,359.62681,232.93665724824652,375025.8987243912,242669.7649579245,367.46684,178.24974377289158,379768.47856747353,182992.17795428855,3393.71996,1566.12577178319,3499356.0317178406,1590023.309670169,1126.28485,503.8630982928144,1158245.6147682278,507986.2600871444,1839.37176,780.701820244081,1881272.7044787344,781576.3480914591,0.37956,100000,0,763487,7976.3369863872385,0,0.0,0,0.0,30701,320.0409532067824,0,0.0,33784,348.697750707801,1566629,0,56242,0,0,6590,0,0,47,0.4910205915231041,0,0.0,1,0.0104472466281511,0,0.0,0.06041,0.1591579723890821,0.3105446118192352,0.01876,0.3321766561514195,0.6678233438485804,24.416762520764703,4.284653726808864,0.3168689828380075,0.2526161573880284,0.2063624947676852,0.2241523650062787,11.178619154753884,5.837079740725998,20.217884435737947,12285.948600945305,54.60801835726742,14.47880882756309,17.280716080291324,11.056840196780357,11.791653252632647,0.5690665550439514,0.7912178956089478,0.7120211360634082,0.5780933062880325,0.1083099906629318,0.7294292068198666,0.9043478260869564,0.8690476190476191,0.7391304347826086,0.1380753138075313,0.5059784193642461,0.7215528781793842,0.6517367458866545,0.5291005291005291,0.0997596153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227963525835,0.0048880911091504,0.0072269589930978,0.0093693473975164,0.0115680449291876,0.0142305615825769,0.0166034349120874,0.01889432455343,0.0210546767151023,0.0235035076040759,0.0256791541467116,0.0277806305843689,0.0303376334794148,0.0323159044537416,0.0345578596422415,0.0365136305837838,0.0385169074620682,0.0405353530113606,0.0423905923453632,0.0440966541976221,0.0587535109059964,0.0720102154026501,0.0849742454601722,0.0978824568970051,0.1107971022134112,0.1265502912908785,0.1387123807907327,0.1503202604643244,0.1621829444118118,0.1716617162954782,0.1845794392523364,0.1968454531686103,0.2082513239307967,0.2180116549861692,0.2278208061960922,0.2372504069902654,0.2461807801244452,0.2550193809336554,0.2644414462421061,0.2712440361094266,0.2779633203517733,0.2854622359319499,0.2913967563478178,0.2980525080247209,0.3033010793157454,0.3082098103722323,0.3134584329582013,0.3179908326967151,0.3223669712878346,0.3269187619613278,0.325821963013348,0.3251460216001763,0.3240632359785076,0.3235941391092836,0.3225388793809063,0.3207868269348706,0.3179293209046164,0.3194749794913863,0.3201862877224108,0.3205109905795033,0.3210269865067466,0.3216815034619188,0.322695854954936,0.3234278281151879,0.3244769420111489,0.3265712116849462,0.3273930607684153,0.3295148887693427,0.3338986044868398,0.33624,0.3411845730027548,0.3419572553430821,0.3441665608734289,0.3482342078941294,0.3504580224761545,0.3503230437903805,0.3510914364219203,0.3509127789046653,0.3567493112947658,0.3562596599690881,0.0,2.6797413739214733,58.65773383259092,178.74930134383422,254.27660985580252,fqhc6_80Compliance_implementation,50 -100000,95791,44748,423.1712791389588,6117,62.82427367915567,4817,49.816788633587706,1902,19.6156215093276,77.38153749659537,79.72334591541689,63.350937847410606,65.08283441587866,77.15196927433873,79.49080135993376,63.26735178338293,64.99986983372104,0.2295682222566455,232.54455548313047,0.0835860640276777,82.96458215762925,167.31682,117.2100748884454,174668.62231316094,122360.21639657734,362.93097,234.6865814638349,378413.1912183817,244533.81994533396,369.17257,178.8044910705947,381510.8413107703,183828.0695435634,3452.51464,1560.1647103759328,3574995.041287804,1599496.372703001,1148.99376,504.1203531210547,1188008.2784395197,514799.51469454775,1865.96698,770.6570713354145,1925689.0104498332,785722.9560389579,0.38089,100000,0,760531,7939.482832416406,0,0.0,0,0.0,30820,321.27235335261145,0,0.0,33803,349.07245983443124,1569941,0,56341,0,0,6573,0,0,78,0.8142727396101931,0,0.0,2,0.0208787881951331,0,0.0,0.06117,0.1605975478484602,0.3109367336929867,0.01902,0.3299642357331674,0.6700357642668325,24.57578365629974,4.402167194245304,0.3223998339215279,0.229395889557816,0.2237907411251816,0.2244135353954743,11.125944519989227,5.710168407632699,20.0400259169852,12276.146759128173,54.2602222515492,13.156333860265727,17.4441571449184,11.95054339145101,11.70918785491404,0.553248910110027,0.7873303167420814,0.6709594333547971,0.5732838589981447,0.1248843663274745,0.7321016166281755,0.9269521410579346,0.8411633109619687,0.7208333333333333,0.1581395348837209,0.4872086412734508,0.7090395480225988,0.6021699819168174,0.5310262529832935,0.1166281755196304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019141566570114,0.0041863482474101,0.0066758654275394,0.0089678356336898,0.0113772698619273,0.01371173793988,0.0158091083295959,0.0179630328948039,0.0203662449671973,0.0224589191069638,0.0246961654335662,0.0269446326291802,0.0289841661525807,0.0308986450310942,0.0328306790989355,0.035005062715682,0.037087244016267,0.0392445476407662,0.0411676102425596,0.0430826253539896,0.0574884167466711,0.071003503634367,0.0845581297829961,0.0979951244115669,0.1102505742766222,0.1260171193067737,0.139007513060433,0.1508435118155436,0.1625817603687619,0.1734027844763834,0.1861000785731968,0.1983843758110563,0.2091547305961877,0.2192027797810266,0.2289434900244165,0.2389913436206247,0.248570186293856,0.25760266121238,0.2651420667135309,0.2729477441200695,0.2797849586681311,0.286377130034361,0.292651477512007,0.29794495940217,0.3034886261561991,0.3088467031073029,0.3133159268929504,0.3170424790909322,0.3213334023232349,0.3245437174672201,0.3241139138385414,0.3225159375686964,0.3216622806400315,0.3208108342236724,0.3204538029758546,0.3189046206538026,0.3170103906768152,0.3191005723630417,0.3206555927707976,0.3212475772178459,0.3215866435094403,0.3230347601490566,0.3240479327435849,0.3248725288487342,0.3249555907628786,0.3273949054539772,0.3290375807231657,0.3333959781995865,0.3365384615384615,0.3395457423235201,0.3429038706160276,0.3458295773901055,0.3465302771989644,0.3504201680672268,0.3542533081285444,0.3564462416745956,0.3584587043291372,0.3628067329142161,0.3591529674003901,0.3659853451600462,0.0,1.8654939417276348,57.37090418573587,170.5438011231307,270.5118878236367,fqhc6_80Compliance_implementation,51 -100000,95860,44610,422.6893386188192,6151,62.91466722303359,4821,49.74963488420613,1908,19.49718339244732,77.37299817448195,79.67531021640534,63.35320242165369,65.05721535999103,77.13727756820202,79.44226648134942,63.26515577242015,64.97329528330143,0.2357206062799264,233.04373505591516,0.0880466492335401,83.92007668960844,165.48444,115.97642073687004,172630.00208637596,120984.07716099235,360.68703,233.758806530823,375666.7640308784,243264.2146846492,368.57204,178.01613414927235,382016.0546630503,183767.6920115164,3445.47952,1565.5366402012016,3547979.104944711,1587762.4646393762,1145.74896,503.248591698781,1179753.4842478614,509577.1237899161,1869.78204,781.5236829297534,1909881.180888796,778848.3236815626,0.38021,100000,0,752202,7846.818276653453,0,0.0,0,0.0,30815,320.8428958898393,0,0.0,33718,349.2280408929689,1577796,0,56639,0,0,6505,0,0,64,0.6676403087836428,0,0.0,0,0.0,0,0.0,0.06151,0.1617790168591041,0.3101934644773207,0.01908,0.3341607198262488,0.6658392801737512,24.506845733760137,4.278617479719295,0.3196432275461522,0.2393694254304086,0.2184194150591163,0.2225679319643227,11.163632520819696,5.776847038586074,20.152304896686893,12219.970378637569,54.38805342970624,13.856327864662688,17.26374142681323,11.671249328285835,11.596734809944484,0.5733250362995229,0.7842287694974004,0.7125243348475017,0.6077872744539411,0.1127679403541472,0.7329192546583851,0.9004629629629629,0.873015873015873,0.7764227642276422,0.146551724137931,0.5151429380130201,0.7146814404432132,0.6603611349957008,0.5563816604708798,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0043074178803449,0.0067963036223283,0.0089454338687732,0.0110404001382591,0.0132430781758957,0.0153190708672652,0.0175121697333374,0.019853068898221,0.0218450078785274,0.023902464013114,0.0261014097223647,0.0280666776288744,0.0301592366522218,0.0320093192994031,0.0339550158002354,0.0359943716762886,0.0378648925917866,0.03992979832596,0.0416393544963635,0.0561012742705791,0.0698184782267924,0.0837174705611197,0.0961942367470385,0.1086022411323616,0.1239000686631806,0.1364354064450496,0.1481245215616228,0.1591379715218922,0.1692635775215397,0.1826958262479281,0.1956197435841999,0.2070910731171809,0.2170666375116164,0.2270186403750082,0.2364095520801027,0.2459972999207827,0.2555808092173365,0.264211732407628,0.2716165305912125,0.2785449919037705,0.2852128742409884,0.2909702163928216,0.2972438585979629,0.3033504559971826,0.3082239881722417,0.3124780888465969,0.3168522170621541,0.3223718280683583,0.3263606609301589,0.3255669880945968,0.3242882317308221,0.3243167009844019,0.3233936658130416,0.3223591313782904,0.3211403898271348,0.3196258131915095,0.3206272142763416,0.321474883974884,0.3223181785739776,0.3230904466222787,0.3247913830857549,0.3261742440085323,0.3275892817334701,0.3286857361889703,0.3299885619215971,0.3318139084356571,0.3344646617013921,0.33878439079169,0.3402579930357708,0.3424018831198225,0.3434936762449066,0.348329453218398,0.3502592253735895,0.3528246722625672,0.3549109774790708,0.3591354996934396,0.3592471358428805,0.3597102256896071,0.3596323247797778,0.0,1.899067536879609,56.770391932074496,176.00692685198612,267.1580868222102,fqhc6_80Compliance_implementation,52 -100000,95783,44553,421.4526586137415,6046,61.69153190023282,4709,48.49503565350845,1864,19.043045216792123,77.39816222968327,79.72912713229736,63.35848721039546,65.08007462963606,77.16728219331759,79.50120377782675,63.27266420444472,64.99807121518857,0.2308800363656757,227.92335447061876,0.0858230059507434,82.0034144474846,166.83018,116.78930254306948,174174.9162168652,121930.9158651008,359.84232,232.86681215409536,375019.3562531973,242453.83393096423,362.74026,175.67949288949274,374384.8804067528,179960.59364398278,3372.9496,1541.3706287157547,3477868.1603207253,1565781.7536191724,1130.13725,505.5240571489573,1159586.3566603677,507547.0927433571,1830.132,768.285484314377,1872135.869621958,769797.4954507092,0.37938,100000,0,758319,7917.041646221146,0,0.0,0,0.0,30682,319.64962467243663,0,0.0,33153,341.950032886838,1574375,0,56447,0,0,6556,0,0,64,0.6472964931146445,0,0.0,1,0.0104402660179781,0,0.0,0.06046,0.1593652801940007,0.3083030102547138,0.01864,0.3343354430379747,0.6656645569620253,24.688851393557314,4.376776849212555,0.3172648120620089,0.2355064769590146,0.2240390741133998,0.2231896368655765,11.218234090121646,5.725602814489937,19.766017483075945,12266.985232431402,53.18307604846842,13.166376202144304,16.887428472170093,11.63228795800374,11.496983416150288,0.5517094924612445,0.7899008115419297,0.6633199464524766,0.5829383886255924,0.110371075166508,0.7146282973621103,0.9093264248704664,0.8316831683168316,0.7434782608695653,0.1558441558441558,0.4927703875072296,0.7261410788381742,0.6009174311926605,0.5381818181818182,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021064997670697,0.0046619101670179,0.0068477863896441,0.0088857746364448,0.0114064962130839,0.0135465222789911,0.0157028583074336,0.0178651593682406,0.0200655911891212,0.0219973603167619,0.0241988361609704,0.0264340687532067,0.0281386171174874,0.0302496963708598,0.0327236736292966,0.0346921702488045,0.0369017814653121,0.0391239876810767,0.0410600155884645,0.0429145665847461,0.0567734799712011,0.0710976311248235,0.0842707820051791,0.0971182949386245,0.1091526281389023,0.1250779623032442,0.1376344314108139,0.1489363966245623,0.159439947027789,0.1699832740060899,0.1827492622827234,0.1949103965910688,0.2065185507088923,0.217470149335256,0.2271153655936431,0.2369903181189488,0.246969882809451,0.2551810995288376,0.2644032805109066,0.2723504151159461,0.2806234535069259,0.2870904010942121,0.2930795724887263,0.2998442180946675,0.3046787743407954,0.309696484639537,0.3142707109099547,0.3191254051992627,0.3232701145705223,0.3281893004115226,0.3275353733895179,0.3265912247170927,0.3252798310454065,0.324589123125983,0.323623540567771,0.3215540148437739,0.3196545299523163,0.3198566120504804,0.3213719236607371,0.3217676290900023,0.3226903316207379,0.3232767982308923,0.3252901202300052,0.3255041782729805,0.3275721935360489,0.3283415520373735,0.3288008141572907,0.3337286971721081,0.3374973902150462,0.3424377189184934,0.3443960826985854,0.3459493604253303,0.3480642350304992,0.3493181818181818,0.3487958017055571,0.3511812893268431,0.3529680365296803,0.3509625126646403,0.353119823302043,0.3492184521540221,0.0,2.606177848865098,54.334268167278935,171.9207293163475,263.1752983501675,fqhc6_80Compliance_implementation,53 -100000,95882,44853,423.53100686260194,5935,60.73089839594501,4661,48.07993158257024,1809,18.50190859598256,77.3584022892406,79.64139817210557,63.35300198276878,65.04194945171064,77.13431038022941,79.41908033629392,63.270013939562126,64.96199149926565,0.224091909011193,222.3178358116513,0.0829880432066545,79.95795244498538,167.60524,117.4484362687902,174803.65449197972,122492.68503868316,362.90642,235.63419122064803,377992.9600967856,245254.56417330468,372.96462,180.6150998687206,385884.3891449907,185938.54612407583,3345.17179,1532.500145027181,3453004.4221021677,1562481.0235781262,1107.36348,494.8907248743873,1141945.4537869464,503167.8363763664,1781.5546,749.9950121454252,1824242.4438372168,754006.8430616045,0.38181,100000,0,761842,7945.6206587263505,0,0.0,0,0.0,30917,321.90609290586343,0,0.0,34083,352.32890427817523,1564204,0,56149,0,0,6576,0,0,78,0.8134999269935963,0,0.0,0,0.0,0,0.0,0.05935,0.1554438071292004,0.3048020219039595,0.01809,0.3312459858702633,0.6687540141297367,24.45396079899789,4.315957762595099,0.3123793177429736,0.2456554387470499,0.2166916970607166,0.2252735464492598,11.131465097996216,5.741002484957569,19.34936254156471,12273.68414834034,53.24464082789927,13.907395277670268,16.414021781471458,11.312326188115575,11.61089758064196,0.5642565972967174,0.8096069868995633,0.6847527472527473,0.5742574257425742,0.12,0.7482462977396727,0.934065934065934,0.8763157894736842,0.7383966244725738,0.1279620853080568,0.4943753700414446,0.7275362318840579,0.6171003717472119,0.5239327296248383,0.1179976162097735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780427057072,0.0044583599315033,0.0066537513566147,0.0089045477159885,0.0112014637121366,0.0138104397561546,0.0162700191531847,0.0187056963639145,0.0208897011527112,0.0234412537441601,0.0253974428531943,0.0273113120501937,0.0294144833465137,0.0315389916986411,0.0335332550134998,0.0354550616901553,0.037653095001655,0.039591646369902,0.0417064761350891,0.0435293750455164,0.058069224353628,0.0720800727173947,0.0851502775159702,0.0981781907912007,0.1103539077311986,0.1253446290682075,0.1375827902294283,0.1485321169202632,0.1608995431840498,0.1717366604497609,0.1849112266761415,0.1970470524607896,0.2082595036470959,0.2185166967262392,0.2278524154005145,0.2373712224324713,0.24740727524143,0.2564163097366024,0.2649380699605281,0.2727658014707567,0.2799689926068193,0.2861687818001052,0.2930477103982379,0.2984578856485034,0.3037231520986033,0.3083924276993278,0.3134081571299729,0.3171315755954655,0.3223935970112467,0.32614241715245,0.3249882035726323,0.3243634060016801,0.3227488619226812,0.3220932082074121,0.3212755830556877,0.318664806268112,0.3166172530242734,0.3179905312993161,0.3181888160933304,0.3188822426569056,0.3209092271943632,0.322124698533191,0.3244325208023307,0.3257139026679179,0.3259526385382859,0.3273185824601544,0.3287679017958627,0.3315482901164975,0.3344516670161459,0.3392504151182098,0.3427818660852185,0.3450897571277719,0.3472666792192305,0.3517937734261455,0.3553789384047686,0.3568524276488878,0.3572204125950054,0.3640413039076736,0.3554515418502202,0.3561068702290076,0.0,2.066847983554703,56.33798005339201,177.88412748680096,249.2877807311754,fqhc6_80Compliance_implementation,54 -100000,95740,44819,422.7386672237309,6168,63.3799874660539,4839,50.041779820346775,1955,20.085648631710885,77.38965647392791,79.7555943507162,63.34469261111818,65.09344926610946,77.14846185607541,79.51505262596818,63.25566061822744,65.00720574809979,0.2411946178524999,240.54172474801305,0.0890319928907459,86.24351800966679,167.38392,117.24171034131108,174831.75266346356,122458.43988020794,364.14507,235.83115517957023,379850.1566743263,245826.84894461065,372.12961,179.71584766026135,385859.8182577815,185513.0767905177,3462.63035,1574.2532174176824,3582596.605389597,1610195.1717335295,1154.8749,511.6594141278277,1193655.4000417795,521819.71394174674,1911.30246,798.835971389883,1965109.9435972427,807495.1870306919,0.38054,100000,0,760836,7946.897848339253,0,0.0,0,0.0,31037,323.65782327136,0,0.0,34028,352.50678922080635,1567181,0,56260,0,0,6678,0,0,65,0.6789220806350533,0,0.0,1,0.0104449550866931,0,0.0,0.06168,0.1620854575077521,0.3169584954604409,0.01955,0.331690791499846,0.668309208500154,24.71197726492485,4.329419013010389,0.3163876834056623,0.2293862368257904,0.2331060136391816,0.2211200661293655,11.15907081115195,5.909526182068911,20.792595460876864,12334.2888700231,54.74213439553603,13.359947289970687,17.175734128703258,12.427806336035054,11.778646640827027,0.5569332506716264,0.7756756756756756,0.6923579359895493,0.5647163120567376,0.1280373831775701,0.7105459985041137,0.9088729016786572,0.8602409638554217,0.6821705426356589,0.1538461538461538,0.4982866933181039,0.6955266955266955,0.6299283154121864,0.5298850574712644,0.1202916160388821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177700348432,0.0045112172176434,0.0068399313977207,0.0090212731373305,0.0116268424425524,0.0141542096044967,0.016425199579939,0.0187115280570839,0.0208418513369858,0.0231848750678144,0.0252570292239408,0.0273597109007658,0.0294837263811501,0.0317774139404611,0.0338002310421651,0.0358626676863928,0.037670984643741,0.0401191019628999,0.0422079946785291,0.0445333583403665,0.0594303374540594,0.0729440333267042,0.0857394661742487,0.098934278770791,0.1113631089263486,0.1273809901534621,0.1402442258930371,0.1521549430669362,0.16332589357226,0.1727684124737271,0.1854005167958656,0.1965579906107349,0.2079215456037922,0.2180211898227621,0.2272392206049003,0.2376238720035431,0.2476443235166207,0.2570398004359844,0.2656788499909305,0.2730891992998593,0.2799643872996785,0.2855623348995956,0.2923182393059347,0.2976833283448069,0.3040844813983128,0.3102968345855401,0.3150494727493339,0.3202024955799488,0.324736331284374,0.3284800527530498,0.3271178915930096,0.3266776677667767,0.3261034793379124,0.3247563352826511,0.3233096085409253,0.3219919295671313,0.3203524729960205,0.3210506517508136,0.3219861047410352,0.3228848476237835,0.3248938863653288,0.3254113345521023,0.3257736682077554,0.3274344152956869,0.3278508247669137,0.3282490272373541,0.3297242141662651,0.3340655892044563,0.3366350544432736,0.3371028111810146,0.3396925610760362,0.3416425431542833,0.3451002720313785,0.346572855197458,0.3503249767873723,0.347928160582228,0.3492351961229744,0.3573285342931414,0.3604365620736698,0.3537284894837476,0.0,1.977644632155818,59.274837824295815,169.99517748838647,269.14187506799465,fqhc6_80Compliance_implementation,55 -100000,95775,44859,425.1631427825633,6025,61.728008352910464,4755,49.219524928217176,1858,19.13860610806578,77.34687979821054,79.7054456380537,63.33382307926016,65.08097075243985,77.11400374881576,79.47216720751533,63.24675502991777,64.99572292849084,0.2328760493947754,233.2784305383768,0.0870680493423847,85.2478239490182,166.892,116.94574587572198,174254.24171234664,122104.66810307698,360.42343,233.91859393469605,375879.0080918821,243795.9204788353,370.3548,179.00600294932676,384093.6987731663,184936.8437927256,3372.25056,1548.5601308133366,3493938.14669799,1590092.3193625722,1115.45102,497.6515294509021,1153748.4729835554,509137.597706793,1822.4409,768.6022538023368,1878600.6995562515,780949.7279467373,0.38276,100000,0,758600,7920.64735056121,0,0.0,0,0.0,30790,321.01279039415294,0,0.0,33938,351.77238318976765,1570743,0,56409,0,0,6576,0,0,62,0.647350561211172,0,0.0,0,0.0,0,0.0,0.06025,0.1574093426690354,0.3083817427385892,0.01858,0.3371109337589784,0.6628890662410215,24.183300535425715,4.195433666645387,0.3226077812828601,0.2452155625657203,0.213459516298633,0.2187171398527865,10.895902978376691,5.594780570281562,19.865116377863178,12295.664557808652,54.30272532080881,14.123451927837378,17.498400357595308,11.343674565362436,11.337198470013693,0.5648790746582545,0.7855917667238422,0.7086049543676662,0.548768472906404,0.1211538461538461,0.7320503330866025,0.8976545842217484,0.8652482269503546,0.6885245901639344,0.1581395348837209,0.4985311398354876,0.7101865136298422,0.648964896489649,0.5045395590142672,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090713793522,0.00437066482781,0.0066192893401015,0.0090551541205524,0.011383983071539,0.01344168143215,0.0158018146600061,0.0176806859942833,0.0199546114371,0.0221874104107793,0.0243599864666741,0.0264392718162496,0.0284239320458238,0.0303473567102064,0.0323549445786116,0.0342788620575587,0.0361399620996386,0.0381443405915121,0.0402174590964844,0.0422567477507497,0.056666005615456,0.0703481317209925,0.0841301795000838,0.0964632928687792,0.1089107867418453,0.1246499635433728,0.1374332230984482,0.1491877179552607,0.1603016790766145,0.1708458745273621,0.1834552495697074,0.1954306217510186,0.2066882510158406,0.2174895973264309,0.2276622862919175,0.2379851051822014,0.247655474647903,0.2569539700029232,0.2655877613092131,0.2738247961147255,0.2813396907693732,0.2871686852729507,0.2940480136370093,0.2992782120761594,0.3052378524076637,0.3103758029188098,0.3156558392015109,0.3204754942470281,0.3255693581780538,0.3298763935376749,0.3283662380977998,0.3271256842626468,0.3257819865201424,0.3244678548235803,0.3246105919003115,0.3230818639220664,0.3207502411715401,0.3209813735948141,0.3223146140317926,0.3225397844858346,0.3232275944721171,0.3249332938037355,0.3260441539943865,0.3269635265159991,0.3280926469880098,0.3303445391331625,0.3323721700402546,0.3361103221938212,0.3384518078639446,0.3418959758231271,0.3464315087270401,0.3480874607650157,0.3508350202429149,0.3515511853037579,0.3548839820359281,0.3585039649662682,0.3617053789731051,0.3639525368248772,0.3692609182530795,0.3735700197238659,0.0,1.5965654372727192,60.107288102372046,174.18919120803358,255.05485310414275,fqhc6_80Compliance_implementation,56 -100000,95746,44892,423.5790529108266,6135,62.67624757170013,4749,48.93154805422681,1919,19.62484072441669,77.36211040614715,79.72505209009498,63.32787542470121,65.07582543945763,77.12240432589854,79.48565147304687,63.23910830489076,64.98984097234421,0.2397060802486095,239.4006170481049,0.0887671198104556,85.98446711341978,168.3649,117.89045327311317,175845.3616861279,123128.33253933652,363.42736,236.1890382006026,378933.6995801391,246042.1722062568,375.69577,182.60684185366975,387712.7295135045,187202.82143946912,3368.91129,1541.0316556252285,3473828.6508052554,1564736.2246205886,1118.66859,495.30506508097903,1152134.3032607106,501074.7029442258,1866.6982,781.7916428905046,1911302.278946379,784809.4500947162,0.38083,100000,0,765295,7992.970985733086,0,0.0,0,0.0,30939,322.4677793328181,0,0.0,34303,353.6231278591273,1559610,0,56005,0,0,6774,0,0,73,0.7624339397990517,0,0.0,1,0.0104443005451924,0,0.0,0.06135,0.161095501929995,0.3127954360228199,0.01919,0.3311617806731813,0.6688382193268186,24.53620526792282,4.433222787775015,0.3181722467887976,0.2383659717835334,0.2253105917035165,0.2181511897241524,11.382857829427762,5.912443825488801,20.406993538739066,12312.67226134043,53.86994130199544,13.727290985971209,17.146497651165603,11.845365709086291,11.150786955772334,0.5651716150768583,0.8030035335689046,0.7068166776968895,0.5672897196261683,0.0965250965250965,0.7391304347826086,0.9159090909090908,0.8611764705882353,0.7209302325581395,0.1469194312796208,0.4972181551976574,0.7312138728323699,0.6464088397790055,0.5184729064039408,0.0836363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795659706391,0.0045328249538605,0.006902852502284,0.0093886218844305,0.0118000101724225,0.0142278078787631,0.0165194868761854,0.018561627052193,0.0207566462167689,0.0228354922943013,0.0250843494580098,0.0271075364909145,0.0291975308641975,0.0313169826875515,0.033594798224791,0.0358966936167573,0.0381381381381381,0.0402456864799809,0.0423072525233625,0.0443731511187033,0.0591452848702478,0.073432023853115,0.0874102039746211,0.1001125332604145,0.111827185756326,0.1269948707101686,0.1397201565765326,0.1512503060561865,0.1622684245389858,0.1730697060999539,0.1857910550631616,0.1977468995519771,0.2083510123263379,0.2190460562301717,0.2280116669418304,0.2383870395815788,0.248333091347711,0.2576118999932488,0.2663172344939473,0.2738620097337532,0.2807819625454293,0.2880019651651089,0.2935899256734365,0.2992829392296993,0.3044407734914002,0.3100982579857729,0.3148048435367335,0.3187210427167659,0.3228049728049728,0.3264269218079841,0.3248298632167644,0.3232872563057605,0.322107665004648,0.3208479646247886,0.3200956440378418,0.3190678160743542,0.3170233647818654,0.3175720002624155,0.3182477021980458,0.3192663817663818,0.3204924617482765,0.3217110700090512,0.323916311701328,0.3246593975070796,0.3243398805669472,0.3264531558698139,0.3271354358872456,0.3305249310949636,0.3329958454072548,0.3368450126262626,0.3395458246629874,0.3411150927487352,0.346955378934852,0.3494166353029733,0.3525367032150158,0.3518867924528301,0.3514663425011396,0.3576992210904733,0.3587516960651289,0.3691119691119691,0.0,2.6415145924837784,58.091759393090655,169.58889499110117,259.34460534642403,fqhc6_80Compliance_implementation,57 -100000,95779,44427,420.0294427797325,6061,62.12217709518788,4736,49.02953674605081,1869,19.23177314442623,77.32840490063373,79.68826640362533,63.31625382636724,65.06437354352158,77.09784688956947,79.45608761431563,63.2298577125538,64.97910941915758,0.2305580110642608,232.1787893096996,0.0863961138134357,85.26412436400221,167.27766,117.16195871195868,174649.6204804811,122325.3100491326,360.55978,233.6421546371573,376033.3789243989,243522.46801194132,366.50342,177.4544306160187,379927.1447812151,183181.51475558223,3350.92918,1532.4132791015018,3471432.3599118805,1572774.0935920205,1116.44872,500.5547114052116,1154198.9266958311,511219.208646307,1824.20196,767.5249362952558,1878693.5758360391,779914.1680831672,0.37778,100000,0,760353,7938.619112749142,0,0.0,0,0.0,30793,321.0724689128097,0,0.0,33542,347.60229277816643,1566998,0,56302,0,0,6567,0,0,65,0.6682049300994999,0,0.0,0,0.0,0,0.0,0.06061,0.1604372915453438,0.3083649562778419,0.01869,0.3415982312065698,0.6584017687934302,24.591845349135397,4.404720498781737,0.3156672297297297,0.2455658783783783,0.2214949324324324,0.2172719594594594,11.377339532496404,5.914188271212756,19.896628358772983,12223.477737292067,53.64909630696376,13.956866381803795,16.77772511359839,11.704766939464935,11.20973787209663,0.5629222972972973,0.766122098022356,0.7016722408026755,0.572926596758818,0.1214771622934888,0.7212732919254659,0.89749430523918,0.8533333333333334,0.7068273092369478,0.1733333333333333,0.50377030162413,0.68646408839779,0.6508928571428572,0.53125,0.1069651741293532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813625447138,0.0044524229700399,0.0067924298420176,0.0089839224374479,0.0112612154381396,0.0137915580182529,0.0160813346386033,0.0182137460693429,0.020292788648306,0.0226114193297438,0.0250525344677361,0.0271679980286259,0.0293192102015631,0.0314868984838497,0.0335889048262767,0.0357733493198825,0.0376876099782631,0.0394287906914038,0.0410050710782276,0.0429294507279885,0.0580523953658282,0.0719223569030611,0.0852232812221488,0.0978588771981458,0.1096698734497328,0.1249101593878155,0.1376790846138347,0.1491911451681566,0.1607083729425461,0.1703681461860998,0.1834222006786233,0.1960678230195743,0.2075835056033075,0.2170184840861861,0.226989002278807,0.2370333444112108,0.2462970610887254,0.2542802147705399,0.262594951800252,0.270874876802127,0.2774864867993101,0.284485985681531,0.2907297550116633,0.2964096287229702,0.3018005422294627,0.3069381412786109,0.3112498902725004,0.3157083142172605,0.3193893169377643,0.3243742983556759,0.3244391112069895,0.3235407542076412,0.322655721056195,0.3213175885643257,0.3213552666805485,0.3198515883723782,0.3180629724119352,0.3183268111414384,0.3190685428029202,0.3196462074510855,0.3198988669351063,0.3215357283853138,0.3230258487493214,0.3244763988746483,0.325749394004848,0.3279579681119463,0.3289728131043112,0.3333646616541353,0.337629676202452,0.3415733892338725,0.3447682059183396,0.3464575218444046,0.3486633015516919,0.3479507887387727,0.3480291425368952,0.3464742461574563,0.3501668183196845,0.3458172196214126,0.3485225075945871,0.3454474404064087,0.0,1.6085775327716714,57.07516605243287,172.64160337902914,261.36540421747094,fqhc6_80Compliance_implementation,58 -100000,95725,44954,425.2494123792113,6093,62.14677461478193,4795,49.4437189866806,1843,18.803865238965788,77.31464774318667,79.68004940341444,63.30648041847581,65.05572905348059,77.08275269803977,79.45280219133905,63.218847759097926,64.97303551183781,0.2318950451468993,227.24721207539744,0.0876326593778813,82.69354164278298,167.01718,116.98098197669584,174476.03029511624,122205.25670064856,364.70955,236.46846199409683,380357.13763384696,246389.52044658404,377.3133,183.2100862984209,390761.7654740141,188703.55818315965,3373.92558,1542.3969072998566,3478452.19117263,1565205.4558336602,1137.65277,501.91200871475735,1172633.2619482891,508500.83960800007,1803.27368,765.5508632565184,1841765.4949072865,763744.3690101928,0.38105,100000,0,759169,7930.728649778011,0,0.0,0,0.0,31069,323.8861321493863,0,0.0,34426,356.1347610342126,1563547,0,56138,0,0,6626,0,0,67,0.6999216505615043,0,0.0,1,0.0104465917994254,0,0.0,0.06093,0.1599002755543891,0.3024782537337929,0.01843,0.3374511336982017,0.6625488663017983,24.45533991828905,4.374789476123978,0.3338894681960375,0.2356621480709071,0.2171011470281543,0.2133472367049009,11.25062695282417,5.839927529235199,19.72941989614564,12249.546147828109,54.24179878557277,13.586196380805806,17.988593596643135,11.397766882244683,11.26924192587915,0.5645464025026069,0.7902654867256638,0.6901936289818863,0.5609990393852066,0.1221896383186705,0.7320872274143302,0.927765237020316,0.8469387755102041,0.7336244541484717,0.1318181818181818,0.5032754201082312,0.7016011644832606,0.6393713813068652,0.5123152709359606,0.1195516811955168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413716253862,0.0047348196814388,0.006953044113766,0.0093689665684381,0.0115672211200976,0.0139064346550389,0.0161189949092541,0.0184599048416409,0.0204444626173001,0.0225420744441259,0.0243919944223434,0.0265635749417285,0.0287609936738157,0.030964697153927,0.0331664516129032,0.0350991460413952,0.0374562475405422,0.0396505027654695,0.041416242071332,0.0434551591931988,0.058243100729866,0.07256950259588,0.0855898861669202,0.0986180640275966,0.111032606403172,0.1267243568043331,0.1389752788952457,0.1511931255523729,0.1620058580805165,0.1720448570048827,0.184516170777211,0.197317239660646,0.2088394539888662,0.2187787664927892,0.2281713435139754,0.2387572453307868,0.2488366369859949,0.2568744219620582,0.2646138796309988,0.2723795301820688,0.2795458235717102,0.2865079644150638,0.2920105293113261,0.2976156173462037,0.3030888969962301,0.307729319597804,0.3126071880124682,0.3173599358688875,0.3217086363518724,0.3259766114253319,0.3248946851320978,0.3238586358635864,0.3234387968993993,0.3220908920350406,0.3211686421293408,0.3184908433882525,0.3154628075619874,0.3163427895592752,0.3165928787542093,0.3170757832723377,0.3175644028103044,0.3175659661873913,0.3188599607171214,0.3207643937028943,0.3211141232636806,0.3221942156276797,0.3231610111591892,0.3259445054083712,0.3298940225945228,0.3325807984790874,0.3339698995134815,0.3345697329376854,0.3380192901720986,0.3384204502098435,0.3404295403165034,0.3424041646947468,0.345607333842628,0.3498977505112474,0.3554083885209713,0.3526213592233009,0.0,2.4437395713699885,55.96115414457624,180.36291552698648,259.9304510940909,fqhc6_80Compliance_implementation,59 -100000,95813,44501,421.1119576675399,5999,61.34866876102408,4752,49.00170123052195,1893,19.3815035537975,77.3504688262772,79.68037611453036,63.33176974345843,65.0590932387255,77.11394801511439,79.44445290102047,63.24450545816856,64.97412260483588,0.236520811162805,235.9232135098921,0.0872642852898692,84.97063388961124,166.48566,116.63849975469056,173761.0345151493,121735.56798627594,362.24445,234.1788886754764,377482.5649963992,243820.5762010128,366.4063,176.914681495758,378029.2131547911,181451.45642024692,3378.97402,1546.9779196154318,3488376.890401094,1576323.097716835,1125.01471,495.953967106869,1157518.7813762224,500969.13797522977,1844.43704,771.0902165465429,1890223.2682412616,777916.0680749967,0.38112,100000,0,756753,7898.228841597695,0,0.0,0,0.0,30797,320.80197885464395,0,0.0,33619,346.4978656340997,1574467,0,56545,0,0,6452,0,0,71,0.7305897947042677,0,0.0,1,0.0104369970672038,0,0.0,0.05999,0.1574044920235096,0.3155525920986831,0.01893,0.3326449563145353,0.6673550436854646,24.386270826691412,4.314182194188796,0.3103956228956229,0.2428451178451178,0.2316919191919192,0.21506734006734,11.373663512317451,6.01834147603007,20.124812190822443,12282.588667469316,54.10756059628176,14.034363548535609,16.637758659595654,12.24221097945005,11.19322740870046,0.577020202020202,0.8180242634315424,0.6989830508474576,0.5821980018165305,0.1232876712328767,0.7259651778955337,0.9272727272727272,0.8556701030927835,0.6861313868613139,0.1415525114155251,0.5196735645584378,0.7507002801120448,0.6430542778288868,0.5477629987908101,0.1183063511830635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678789229491,0.0047554830009227,0.007053689231706,0.0093677290877132,0.0116158431149175,0.0136888635391415,0.016011422161032,0.018370639653623,0.0205001840415524,0.022562086685912,0.0247021184963392,0.0264725211533722,0.0284142328259975,0.0302783756784312,0.0324047813038231,0.0345935669191266,0.0366452040330427,0.0385852090032154,0.0403333922243122,0.0424435491426965,0.0570832464010014,0.0710320240049348,0.0845235724989259,0.096439340610849,0.1087803952968941,0.1242338419917994,0.1370542767168895,0.1496346094522865,0.1602950753168003,0.1712206934979212,0.1839027277129176,0.1965970878509118,0.2079011111955943,0.2184784865739172,0.228682682154171,0.2388380492344508,0.2483846128092671,0.2566670417463711,0.2652512063582174,0.272200396302702,0.2800060174041844,0.2865296002619699,0.2927674779048994,0.299949684931835,0.3059049424574963,0.3111755273220673,0.3153931922676989,0.3189762796504369,0.3239098874889822,0.3280793774524699,0.3269938898555416,0.3259715731281966,0.3249710754296357,0.3234647218845864,0.3223877933434461,0.3213951848957136,0.3192568638640543,0.320090731274347,0.3210891562970053,0.3225103196869248,0.3243030722857731,0.3249738354297901,0.3258803332914625,0.3274601435502985,0.328112217891343,0.328857835597153,0.3281525761457444,0.3309772877202903,0.3346381015622269,0.3351430609495126,0.3375946325762727,0.3389320234511171,0.3418776635748308,0.3446165470343785,0.3477691516228604,0.3489301669409828,0.3517984519653969,0.3557692307692308,0.358884073672806,0.3657424990505127,0.0,2.271198689129712,57.968954348189456,174.53650271157383,258.0888451688542,fqhc6_80Compliance_implementation,60 -100000,95720,44706,423.0150438779775,5948,60.90681153363978,4647,47.99414960300878,1824,18.66903468449645,77.30949638025908,79.67073279363777,63.31695901961641,65.05995898553968,77.08064730236667,79.44438746821031,63.232733103151006,64.97946245859299,0.2288490778924057,226.34532542745944,0.0842259164654066,80.49652694668907,166.49754,116.73455839225832,173942.2691182616,121954.19806963883,362.00446,235.79164485317716,377616.1199331383,245769.91611780552,376.63698,182.56253115225385,390692.2064354367,188477.4892227196,3298.04424,1511.4540677846855,3406856.299623903,1541158.2258644043,1101.3332,491.4733833679857,1135342.5929795238,498233.5513805816,1778.48208,742.6859030658923,1821919.619724196,743660.3939577721,0.37861,100000,0,756807,7906.4667781028,0,0.0,0,0.0,30872,321.9285415796072,0,0.0,34420,356.7697450898454,1565976,0,56216,0,0,6673,0,0,67,0.6999582114500627,0,0.0,0,0.0,0,0.0,0.05948,0.1571009746176804,0.3066577000672495,0.01824,0.3281500480923373,0.6718499519076627,24.239029134207044,4.243218744561206,0.3225737034646008,0.2438132128254788,0.222724338282763,0.2108887454271573,11.207582918135364,5.954384162672544,19.480881915203227,12187.806792166324,53.19136694207827,13.722733386172097,17.126924645910314,11.647975463474996,10.693733446520866,0.5788680869378093,0.8005295675198588,0.694462975316878,0.5990338164251208,0.1244897959183673,0.7577881619937694,0.923963133640553,0.8753117206982544,0.7419354838709677,0.1840796019900497,0.5105560511448112,0.7238912732474965,0.6284153005464481,0.554002541296061,0.1091142490372272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166486059488,0.004561673830184,0.0068277737196656,0.0092427074022913,0.0114064962130839,0.0135678443107677,0.0154818325434439,0.0174344422101319,0.0198172601283676,0.022044600914943,0.0241597392347195,0.0264081976302441,0.0283190572653703,0.0305246029947889,0.0326722564277095,0.0348087533320934,0.0369898883265542,0.038932619810626,0.0408144175604889,0.0430108646965072,0.0571613549977026,0.0712237293812275,0.0845045309615707,0.0968264316810027,0.1090583148792576,0.1250489133308656,0.1369534540747578,0.148374048645484,0.1594154907762479,0.1694259183804765,0.1817966368268536,0.1927940412263987,0.2040327758251085,0.2147992515019205,0.2244963117912584,0.2355373274954275,0.2451135881341166,0.2541645548234499,0.2627603752583876,0.2708082648605906,0.2779970599469864,0.2857426947102449,0.2917485497809873,0.2986304326969202,0.3041296609036898,0.3091406799097399,0.313817740462218,0.3185659378420342,0.3221296500252666,0.3259568508805538,0.3249474195114059,0.3235358933392099,0.3223803947572624,0.3212229903676492,0.3203012218534669,0.3181783308526799,0.3164094748206007,0.3176770584848236,0.3183764343209453,0.3186848608574191,0.3191201607904277,0.3196371503999682,0.3205845248107653,0.3209724123998294,0.323402918720402,0.324068026855456,0.3246380966031245,0.3278910706968828,0.3298269068392907,0.3334787955726584,0.3368828213879408,0.339600594858721,0.343267594984563,0.3464908938504915,0.3504844323205719,0.3502005189903279,0.3495115995115995,0.3583980384143849,0.3649315068493151,0.3702857142857143,0.0,2.11200706470026,56.55903115545132,179.00725271621027,245.7398907482494,fqhc6_80Compliance_implementation,61 -100000,95727,44837,424.2272295172731,6047,61.884316859402254,4764,49.10840201823937,1840,18.793026001023744,77.40440741590693,79.76056979889545,63.3594678928421,65.09877068862164,77.17630649386713,79.53472565987441,63.27519335161983,65.01781016657984,0.2281009220398004,225.84413902103503,0.084274541222264,80.96052204180637,167.6136,117.40187337857814,175095.42762230092,122642.3823775718,366.25943,237.6474861707333,381853.4373792138,247502.21458455757,373.15769,180.520295421872,384887.7014844297,184883.524786312,3405.67249,1546.786561306892,3513668.661924013,1571867.5620722305,1131.77996,498.4676657243865,1166890.2608459473,505341.0814140852,1808.75914,756.7223043708561,1850474.8503556992,759198.5067876651,0.38135,100000,0,761880,7958.883073740951,0,0.0,0,0.0,31181,325.0284663679004,0,0.0,34103,351.3951131864573,1566184,0,56123,0,0,6617,0,0,78,0.8043707626897322,0,0.0,0,0.0,0,0.0,0.06047,0.1585682443949128,0.3042831155945096,0.0184,0.3350197628458498,0.6649802371541502,24.42696662886117,4.360440346219155,0.3213685978169605,0.2350965575146935,0.2212426532325776,0.2222921914357682,11.247938285899457,5.846742313616182,19.6388955329684,12254.925472645273,53.89623798112535,13.402649076575557,17.263380759242256,11.639187724693771,11.59102042061377,0.5644416456759026,0.7892857142857143,0.7008491182233834,0.5853889943074004,0.1085930122757318,0.7531152647975078,0.9257425742574258,0.888095238095238,0.7890295358649789,0.147982062780269,0.4948275862068965,0.7122905027932961,0.6300630063006301,0.5263157894736842,0.0980861244019138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400862636305,0.0048239168989105,0.0069795280702822,0.0089676534809323,0.0107775055158459,0.0129377035830618,0.0151847133757961,0.0173668153015724,0.0194335458558116,0.0215093374264517,0.0238185526437158,0.0262026212884751,0.0285799467467179,0.0307449865587244,0.0328628324975752,0.0350431061216895,0.0369077823227877,0.0393045715293409,0.0416008480212836,0.0433279173436653,0.057787475726128,0.0715690993951317,0.0854067889061385,0.0983441097618672,0.1107269718465738,0.1255009357850549,0.1373102343493067,0.1484036494096856,0.1594111551486534,0.1706163678476452,0.1832356995175741,0.1952285637002975,0.2066531819565879,0.2171797787204268,0.2277332277332277,0.238072566626438,0.2476546377377433,0.2567085989230268,0.2648766328011611,0.2725431409346821,0.2797393474443109,0.2858310086024768,0.2923184077252712,0.2981087442204991,0.3039286925349997,0.3087102362785211,0.3132751320768856,0.3184570275313202,0.3229672486827151,0.3266414955336587,0.3242778911199399,0.3243729074043581,0.3238756074950136,0.3220790823678598,0.321739001673256,0.3205073414939406,0.3184401641932428,0.3190124830260294,0.3199380182880106,0.3209094628974008,0.3214445939883356,0.3233435994630024,0.3236966428362389,0.3237766135324936,0.3251372013324706,0.3273100722791326,0.3281050571517713,0.3326029112537173,0.3362460678084585,0.3385490753911807,0.3427213040525243,0.3478536688517657,0.3497656982193065,0.3566676746295736,0.3594637370822083,0.3617071168952984,0.3671040585901739,0.3708769106999195,0.3741721854304636,0.375833660258925,0.0,2.518806983322211,55.97056884313046,177.96337530875584,257.97016276367134,fqhc6_80Compliance_implementation,62 -100000,95751,44705,421.979927102589,5998,61.43016783114536,4721,48.74100531587137,1901,19.51937838769308,77.33232137485312,79.6981795358358,63.31916690730778,65.07131133166034,77.09432025416271,79.46046853408959,63.23170065466197,64.98606354738102,0.2380011206904129,237.7110017462201,0.0874662526458109,85.24778427931778,167.87166,117.54724061563772,175320.82171465573,122763.2302698016,362.19893,234.85533766565493,377678.5934350555,244684.34150391983,368.75443,178.73590846572696,381551.451159779,183952.0054635146,3360.58497,1539.9235946883628,3472792.900335245,1571373.4512050576,1110.25301,497.3430264725882,1144613.8108218191,504604.22673449205,1857.30216,780.4411828009523,1908246.4935092065,788558.2231973542,0.38017,100000,0,763053,7969.128259757078,0,0.0,0,0.0,30848,321.5527775166839,0,0.0,33723,348.6229908826017,1565250,0,56203,0,0,6750,0,0,73,0.7623941264320999,0,0.0,0,0.0,0,0.0,0.05998,0.1577715232659073,0.3169389796598866,0.01901,0.3314258464473056,0.6685741535526943,24.519651476113413,4.274751180387563,0.3283202711289981,0.2334251217962296,0.2192332133022664,0.2190213937725058,11.294983796125257,6.027478833819556,20.236058591400436,12258.382038682916,53.60238075565516,13.223911092401552,17.41917973162905,11.461870645570546,11.497419286054006,0.5536962507943233,0.7967332123411979,0.6703225806451613,0.5594202898550724,0.1141199226305609,0.7285714285714285,0.9343434343434344,0.8432835820895522,0.7288135593220338,0.163716814159292,0.4900317827217567,0.7195467422096318,0.6097560975609756,0.509386733416771,0.1002475247524752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0046759780502895,0.0071176183900576,0.0093401902593706,0.0118723040612028,0.0140992858670958,0.0162356204617769,0.0185402607479402,0.0208476049281734,0.0228501228501228,0.0251776066921586,0.0272467815124325,0.0292647814910025,0.0314946032792288,0.0335200718066173,0.0356360329075199,0.0379581693932491,0.0402311371157656,0.0421914619445483,0.0441266832606046,0.0580498345459669,0.071524232024776,0.0856765288892151,0.0981967299300772,0.1099782805811526,0.1248876244063924,0.137262599469496,0.1495960746330612,0.1610419292137471,0.1707322303593064,0.183050956991911,0.1944853259458055,0.205848436718087,0.2169904186901168,0.2268010607744534,0.2373217291168394,0.2472941911584209,0.2561514834441556,0.2643935095881085,0.2725575749247031,0.2792126640283274,0.286446269390047,0.2919915289329531,0.298361009273237,0.3027697837358687,0.3081358814179573,0.3133781230842372,0.3179616279513293,0.3221113397791843,0.3254335641279261,0.3256527590847914,0.3253504271152867,0.3243745512396345,0.3232317398899845,0.3223492723492723,0.3215581235172572,0.319033960350538,0.3194939035397213,0.3206687707924592,0.3212455585908904,0.3222072122781342,0.3225768134304719,0.3234775674654803,0.3238332101006027,0.3249186256781193,0.3259734836621776,0.3258756804514492,0.3286183379641323,0.3313990293310825,0.3332534643185176,0.3356448743099594,0.3380853222275615,0.3396059050877526,0.3405330882352941,0.3400018784634169,0.3398138329209379,0.3370140674633187,0.3393963621826903,0.3476722025592159,0.3481085212074895,0.0,2.09727974162212,55.3293579946988,176.55308299750905,260.6359542020947,fqhc6_80Compliance_implementation,63 -100000,95729,44529,422.849920086912,6031,61.99793166125208,4746,49.03425294320425,1836,18.85531030304297,77.41699606751023,79.76992180095334,63.36600846061516,65.10046540028385,77.18639725793767,79.54100904499023,63.28063495285733,65.01830168378717,0.2305988095725553,228.91275596310837,0.0853735077578292,82.1637164966802,166.81764,116.81048511531674,174260.2972975796,122022.04673120656,361.58543,233.7077845807396,377191.3840111147,243608.40976166,362.10009,174.5788008959031,374595.0756823951,179571.08717396657,3414.4147,1536.5674663886923,3529873.9775825506,1568245.595784658,1129.10748,496.0282465614956,1162311.5774739108,500987.1789755408,1800.8541,753.2410159449904,1850322.765306229,758546.1151117159,0.37973,100000,0,758262,7920.922604435437,0,0.0,0,0.0,30830,321.5013214386445,0,0.0,33163,342.8428167013131,1574582,0,56507,0,0,6568,0,0,73,0.7625693363557543,0,0.0,0,0.0,0,0.0,0.06031,0.1588233745029363,0.304427126513016,0.01836,0.328395839899149,0.6716041601008509,24.552737281816192,4.39616805179184,0.3217446270543616,0.2345132743362832,0.2168141592920354,0.2269279393173198,11.213755363111972,5.769943860932406,19.392228718928827,12229.822706091363,53.4436716411316,13.346149958569576,17.054362991203906,11.343997939881316,11.699160751476787,0.5583649388959123,0.7960467205750225,0.6817288801571709,0.5860058309037901,0.1114206128133704,0.7244224422442245,0.9073170731707316,0.8442622950819673,0.7647058823529411,0.1302325581395348,0.5014148273910582,0.7311522048364154,0.6304909560723514,0.5371287128712872,0.1067285382830626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026012672321302,0.0044980700847947,0.006531970139565,0.0088851430254165,0.0109809663250366,0.0128463527351941,0.0149631018877155,0.0170034700959379,0.018660453328428,0.020819053270177,0.0232815510103701,0.0254110306040764,0.0275087892431999,0.0292057999670456,0.0313608979120244,0.0335947752942513,0.0356044684177287,0.0374722562177186,0.0394200789856578,0.0413780171470836,0.0560190454312892,0.0706251634841747,0.0837302503199815,0.0965777628202431,0.1081568511643604,0.1235180269266972,0.1363443506300649,0.1482869094121529,0.1601072580817469,0.1697354451962981,0.1829223645956713,0.1952763231921062,0.207297191548561,0.2173699330413221,0.2269810574429745,0.2376832439010897,0.247890683340578,0.256790622927975,0.2651180191823685,0.2719034269695062,0.2792065932287633,0.286128214415067,0.2925428176305805,0.2979319258940112,0.3031383824046778,0.3082964057114721,0.313225608917882,0.3178393077245638,0.321654362806573,0.3270426989984185,0.3257861973459537,0.3247441796579905,0.3236250052762652,0.3239581076200794,0.3237625820244069,0.3212079510703364,0.3201458724720963,0.3211517708231139,0.3226256270725278,0.3241007066510422,0.325450072682545,0.324752397421789,0.3252429208891113,0.3251815819284334,0.3263573307821095,0.3284461282956197,0.330563276419536,0.3342711557097752,0.3397529830437513,0.3426181646019096,0.3452122854561879,0.347906338993777,0.3511269276393831,0.3530616890507626,0.3555679598102149,0.361214953271028,0.364185414464744,0.360015929908403,0.3620689655172414,0.3614637789395071,0.0,2.108535378277929,53.17424394941676,179.44531459400454,263.8543274471121,fqhc6_80Compliance_implementation,64 -100000,95697,44740,423.3257050900237,6040,62.00821342361829,4731,48.85210612662884,1830,18.8198167131676,77.3508434030137,79.74227451433273,63.31502979323547,65.0830160003433,77.1250863990459,79.51760855220175,63.23127030738424,65.00225538757887,0.2257570039678,224.66596213098452,0.0837594858512247,80.76061276443625,167.59336,117.42891117971092,175128.9382112292,122708.87320569177,362.01633,234.2508316912689,377708.2144685832,244199.10644142333,370.90438,179.34581917663652,384028.7156337189,184660.9448494782,3396.28261,1546.5786220556167,3511905.273937532,1579063.5941561563,1135.39557,498.7523080707063,1175008.3806179925,509763.0954679428,1799.15134,756.9411491651524,1851894.9601345917,765844.5735311167,0.38013,100000,0,761788,7960.406282328599,0,0.0,0,0.0,30788,321.1281440379531,0,0.0,33879,350.4498573622997,1565893,0,56187,0,0,6635,0,0,70,0.731475385853266,0,0.0,1,0.0104496483693323,0,0.0,0.0604,0.1588930102859548,0.3029801324503311,0.0183,0.3274280291047137,0.6725719708952863,24.568277122152285,4.333354599159337,0.3265694356372859,0.2350454449376453,0.2134855210314944,0.2248995983935743,11.173703994091078,5.696139427050565,19.51569375151625,12209.362332621671,53.603872897986754,13.237349481196745,17.499392302239144,11.180009043260611,11.687122071290242,0.5658423166349609,0.8048561151079137,0.7009708737864078,0.5673267326732673,0.1184210526315789,0.7351778656126482,0.9310344827586208,0.8615384615384616,0.7298387096774194,0.1583710407239819,0.5040392383150606,0.7322946175637394,0.6467532467532467,0.5144356955380578,0.1079478054567022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0048067659794546,0.0070145874996193,0.0094316611106594,0.011658426417628,0.0138953974042908,0.0158626528884309,0.018240496762465,0.0202493326924453,0.0221625939657114,0.0242846887498718,0.0265609432935158,0.028553795515326,0.0304972284613324,0.0327670904887714,0.0348595589831594,0.0371318158742657,0.0391322399833921,0.0413797407784966,0.0432072383851229,0.0575529048026906,0.0715362707321159,0.0845938257738776,0.0977128789950975,0.1098475657998839,0.125641378288882,0.1377791457926467,0.1494180660412518,0.1602321554543705,0.1704456438926505,0.1833144704931285,0.1957347767253044,0.2067746077343256,0.2172599831471125,0.2266331990223924,0.2365281412161263,0.2456485089374434,0.2552178318135765,0.2640993027006155,0.2713424418871212,0.2780948632159024,0.2855687725378167,0.2932437715463624,0.2987598647125141,0.3040471560525036,0.3093418782351491,0.3138007804682809,0.3191281014332405,0.322807653001824,0.3250504757254648,0.3238214569607803,0.3223995597138139,0.3213607127274774,0.320554272517321,0.3193466629118558,0.3174295102009628,0.3155865904135991,0.3149379360036681,0.3160371728195072,0.3170757756457039,0.3174606141023005,0.3184941621217192,0.3192549952029366,0.3197640774538171,0.3207660083782166,0.3228258613532586,0.3228539954241166,0.3269470404984423,0.3289501147985806,0.332628031816935,0.3348609426247922,0.3392453028787958,0.3406285072951739,0.3430452550325412,0.3475369919460573,0.3517576044502308,0.3489892080863353,0.3495222929936306,0.3490693282978149,0.3519296904852885,0.0,2.277620594419666,55.477670640055294,176.59259849034532,259.0762896073297,fqhc6_80Compliance_implementation,65 -100000,95714,44177,418.9564744969388,5967,60.973316338257725,4672,48.15387508619429,1849,18.93139979522327,77.26691653433518,79.62563221501051,63.2951211478972,65.03851706265942,77.03618334190818,79.39673111140006,63.20972038231223,64.95599955425638,0.2307331924269959,228.901103610454,0.0854007655849713,82.5175084030434,165.90266,116.17078192492892,173331.6547213574,121372.82103446616,356.50853,230.5973511756733,371826.72336335335,240277.3378770853,361.27486,175.11958286327342,372245.7320768121,179000.2589140814,3317.10518,1514.378194467536,3423411.9355580164,1540062.2612076951,1111.77969,497.20147184065655,1144505.3283741144,502457.2259735958,1812.42296,758.8608556085633,1857688.4259356,764228.9941521047,0.37767,100000,0,754103,7878.711578243518,0,0.0,0,0.0,30398,316.9128863071233,0,0.0,33053,340.21146331780096,1576508,0,56596,0,0,6543,0,0,62,0.6477631276511273,0,0.0,1,0.0104477923814697,0,0.0,0.05967,0.1579950750655334,0.3098709569297804,0.01849,0.3356822549647661,0.6643177450352338,24.585152738508533,4.30704689460667,0.3174229452054795,0.242722602739726,0.2206763698630137,0.2191780821917808,11.362078698773937,5.979855473802315,19.696342890395638,12158.071113871938,53.1768453272112,13.670804235897709,16.81929090495558,11.528739984392846,11.158010201965071,0.5747003424657534,0.8174603174603174,0.693863789615644,0.5926285160038798,0.115234375,0.7533073929961089,0.9404761904761904,0.854679802955665,0.7795918367346939,0.1635514018691588,0.5069382934750517,0.7450980392156863,0.6332404828226555,0.5343511450381679,0.1024691358024691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0043800504922487,0.0067175386613629,0.0088987312197153,0.0110957427333563,0.0132263549631922,0.0151995514552219,0.0174661344820898,0.019494392934177,0.0216999672453324,0.0238229475259602,0.0260461582686542,0.0281968224587382,0.0302921061305207,0.0322507428194123,0.0341530478287385,0.0359961062899985,0.0378270703214159,0.0397077014230325,0.041572460068558,0.0568758483867599,0.0705987021142976,0.0841387271105514,0.096840377513336,0.1083598843711096,0.1234603174603174,0.1356702300449049,0.1474243602168287,0.1584175354183373,0.1690585318205725,0.1818789414110925,0.1937678772644535,0.2047847723585203,0.2144429477280941,0.2241360310323547,0.2341984326088404,0.2439359881906934,0.2532000721143012,0.2621073558648111,0.2704679368136277,0.2775296241436771,0.2842797621834184,0.2910051030677607,0.2967271506182315,0.3026427755221123,0.3083412474253506,0.3131751083932733,0.3174702248264441,0.3221998832609118,0.3262862661568788,0.3250536893715304,0.3232597951238368,0.3216808907477533,0.3199872572727668,0.3191917086100604,0.3176275455355223,0.3162895640015253,0.3172805933250927,0.318256663579294,0.3192103047349469,0.3209883502442691,0.3230506928887214,0.3231591798930661,0.3230562100302928,0.3237987099267992,0.3251119315057733,0.3259180689734254,0.3298270071605095,0.3353235952660198,0.3379504731226092,0.3424165707710011,0.3428678759257271,0.3430962343096234,0.3470152105786134,0.349664873029359,0.350887573964497,0.3529770992366412,0.3551912568306011,0.3619648737650933,0.3588756257219869,0.0,2.6088969824793296,55.93189017630581,172.6346834763546,254.93602496008847,fqhc6_80Compliance_implementation,66 -100000,95698,44596,422.2554285356016,6110,62.56139104265503,4793,49.44721937762545,1931,19.697381345482665,77.288290147924,79.65969476905344,63.294707477804174,65.04472105085983,77.0501003242428,79.42220074730331,63.20723384248565,64.96020876868182,0.2381898236811963,237.4940217501376,0.0874736353185241,84.51228217801088,167.6367,117.45488077907424,175172.62638717634,122734.93780337543,363.80909,235.7774201736736,379497.5443582938,245710.5877658274,371.87121,180.04882118085854,384869.6524483271,185269.58436244985,3456.20289,1572.2477555034354,3566709.565508161,1598083.2976659506,1148.09637,510.12100559498566,1184411.68049489,517786.4771409698,1892.37972,785.3874458861104,1932871.4079709083,784306.7255126402,0.3791,100000,0,761985,7962.392108508016,0,0.0,0,0.0,31037,323.6431273380844,0,0.0,34001,351.55384647537045,1559402,0,56024,0,0,6620,0,0,61,0.6374218896946645,0,0.0,0,0.0,0,0.0,0.0611,0.1611711949353732,0.3160392798690671,0.01931,0.3311093871217998,0.6688906128782002,24.53431426269582,4.3340174044281525,0.3194241602336741,0.2311704569163363,0.2247026914249947,0.2247026914249947,11.380616632268367,5.98065364597597,20.49037674265777,12248.562952914714,54.51220273883279,13.356977988649824,17.337052149202737,12.046306648289402,11.771865952690828,0.5731274775714583,0.7951263537906137,0.7073807968647943,0.6016713091922006,0.1253481894150417,0.7602523659305994,0.9346246973365616,0.8653366583541147,0.7609561752988048,0.1970443349753694,0.5058156028368794,0.7122302158273381,0.6513274336283186,0.5532687651331719,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698842402698,0.0044606198234,0.0066668019645249,0.0091326520246246,0.0112887478642909,0.0134916351861845,0.0156603658163577,0.0180370540499157,0.0202598411513968,0.0222074400040935,0.0242790087523315,0.0265340477510213,0.0286339988895971,0.0307003089598352,0.0325219185146982,0.0346730604272382,0.0369852659480839,0.0389900163971854,0.0408562334879657,0.0428252803601951,0.0573404077540107,0.0711660681192348,0.0846023866248255,0.0970291403133978,0.1096649566153651,0.1247670675927494,0.136959245651666,0.1486208623206162,0.1601141916238091,0.1707775403481267,0.1836778708766027,0.1960370081469925,0.2082557316342645,0.2185761835939211,0.2274149135367331,0.2380978797528042,0.2481551878354204,0.256959556212017,0.2653084439590941,0.2724548147807914,0.2796919758312362,0.2864494800886252,0.2932866801091211,0.2991677774975682,0.3044589708943505,0.3095314545409637,0.3151162936650391,0.3186520236227503,0.3232723352857903,0.3266291763149189,0.3256782998004207,0.3247779555359408,0.3237272804364418,0.3226016872988722,0.3211777860603801,0.3200994841562269,0.3176950292722397,0.3178357043006332,0.3185034176759803,0.3196418979409131,0.3203752091283343,0.3200618017589731,0.3220485016601521,0.3225027393278025,0.3237489499579983,0.3245912718010033,0.3257455042112451,0.3283230087104179,0.3315767284991568,0.3346052945385165,0.3375228519195612,0.3406001812270134,0.3394172068726792,0.3401598781880472,0.3421837152971865,0.3479995306816849,0.35300348010289,0.3541666666666667,0.3554655870445344,0.3566616766467065,0.0,2.3536788691478963,55.4083648276501,184.5219133745882,260.83272720341887,fqhc6_80Compliance_implementation,67 -100000,95834,44916,423.5866185278711,6085,62.25347997579147,4732,48.84487760085147,1861,19.06421520545944,77.36488025655099,79.67845519414263,63.35773544642036,65.07073880471992,77.13698344018647,79.45355818721507,63.273060376103984,64.98965546526652,0.2278968163645203,224.89700692756287,0.0846750703163721,81.08333945340007,168.23334,117.84757902768116,175546.6118496567,122970.53136431868,361.23204,234.2624018633059,376410.219754993,243921.08423242887,369.45877,179.22626213712115,382442.09779410233,184534.3363744955,3400.72654,1548.7054977668622,3512511.613832252,1579981.361277692,1145.7988,509.489149914638,1178235.3027109378,514288.6636167469,1824.65784,762.2323000142754,1870764.3007700816,766524.4261495274,0.38247,100000,0,764697,7979.391447711668,0,0.0,0,0.0,30816,320.9925496170461,0,0.0,33796,349.54191623014793,1566459,0,56201,0,0,6703,0,0,60,0.6260826011645136,0,0.0,1,0.0104347100194085,0,0.0,0.06085,0.159097445551285,0.3058340180772391,0.01861,0.3278457196613358,0.6721542803386642,24.63242024436537,4.327587692212374,0.3159340659340659,0.2356297548605241,0.2248520710059171,0.2235841081994928,11.25530651943686,5.871357787627908,19.752287698111623,12380.672150685768,53.660688484429066,13.45266462148019,16.831326426793705,11.910251085435789,11.46644635071938,0.5650887573964497,0.7910313901345292,0.6996655518394649,0.5657894736842105,0.1361058601134215,0.7468152866242038,0.9361702127659576,0.8962765957446809,0.692,0.1545893719806763,0.4994246260069045,0.7023121387283237,0.6336014298480787,0.527027027027027,0.1316098707403055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.004511537369723,0.0068694699245068,0.0092837118595863,0.0114397860505791,0.0135930436199242,0.0157189749026483,0.0178961553382199,0.0200462054301602,0.022345053482778,0.0246484647234862,0.0267438399885061,0.0287978293713193,0.031082750102923,0.0332529325664337,0.0354090101994466,0.037360750524933,0.0395897010827332,0.0422182765888961,0.044258559880146,0.0589634203581821,0.0730741089160656,0.0864568710846655,0.0997070220206029,0.1123479542941393,0.1277797723384933,0.1403222560038984,0.1523047157375515,0.1636600275238166,0.1740397180745088,0.187315761161915,0.1991308296036842,0.2105669151039742,0.2212247305134169,0.2304192538051541,0.2399836332068961,0.2490781279591814,0.2580800934348539,0.2675831455457541,0.2748725218942217,0.2815849039172209,0.2879755331691316,0.2946173294581886,0.3011947331284308,0.3071760579618685,0.3116283649881217,0.3161933806619338,0.3205898416166029,0.3255480301933616,0.329652104092351,0.3285190310488909,0.3276461295418641,0.3267650039409976,0.325299290944012,0.3254013079667063,0.3230550066632967,0.321531024645376,0.3222152814308259,0.3213992192315595,0.3222407099278979,0.3238199160912836,0.3235539322720235,0.3246106311873384,0.3250414965681216,0.3268745342212178,0.3295247039181927,0.3293401246336397,0.3326205226579452,0.3350200295171832,0.3371578821560894,0.3397089777615082,0.343272416372769,0.3459507602264775,0.3468870099923136,0.3488791793313069,0.3496611580073713,0.3528778085564789,0.3516326530612245,0.3524386883438964,0.3525541795665635,0.0,1.9930440399940608,55.070927087851246,181.51470753075893,256.12783497952097,fqhc6_80Compliance_implementation,68 -100000,95630,44702,424.61570636829447,5953,61.08961622921677,4657,48.0288612360138,1833,18.75980340897208,77.2563444549925,79.6683869515833,63.27473565930678,65.05632897528531,77.03627971167232,79.44871277147482,63.19333206324254,64.97740195935499,0.2200647433201794,219.67418010848405,0.0814035960642343,78.92701593031859,167.1978,117.19398129402067,174838.23068074873,122549.38962043363,362.25157,234.47348059168652,378138.8790128621,244521.71974452207,365.78805,176.9455327937835,378195.06431036285,181725.2078226766,3322.58442,1505.3067547552855,3433537.132698944,1533215.4080887665,1103.71172,483.53986085163166,1139468.754574924,490956.9286328886,1797.8621,748.8451211282222,1842970.218550664,751844.4126828905,0.37984,100000,0,759990,7947.1923036703965,0,0.0,0,0.0,30906,322.49294154554013,0,0.0,33510,346.04203701767227,1563368,0,56150,0,0,6597,0,0,57,0.5960472655024575,0,0.0,3,0.0313709087106556,0,0.0,0.05953,0.1567238837405223,0.3079119771543759,0.01833,0.3282836422240129,0.6717163577759871,24.664529177481256,4.290930462526116,0.3137212797938587,0.2452222460811681,0.2200987760360747,0.2209576980888984,11.156737092567004,5.766471048122405,19.440350090034336,12216.060402270869,52.89937141750053,13.713817059008768,16.574313592604,11.354226939262436,11.257013826625313,0.5673180158900579,0.7819614711033275,0.7056810403832992,0.5853658536585366,0.1146744412050534,0.7444168734491315,0.924757281553398,0.8783783783783784,0.7090909090909091,0.1835748792270531,0.5052204176334106,0.7013698630136986,0.6471127406049496,0.5515527950310559,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0043278635354692,0.0067384487360334,0.0087267481434071,0.0107437175704547,0.0131617819341299,0.0152705239105598,0.017501736891577,0.0196898717345498,0.0217591738889913,0.0238056148415695,0.0258457680766226,0.0278781514767802,0.0298993731441768,0.0321364378241018,0.0340949069762629,0.0359712230215827,0.0378846113892755,0.0399887619404382,0.0418996161548731,0.056152415191355,0.0703884512236004,0.0840393478420627,0.0963799618943357,0.108848203450641,0.1246931087030138,0.1372426236467841,0.1492998242905063,0.1602304428221763,0.1700846720968417,0.1834725890787558,0.1952524891387959,0.2068052847697988,0.2174699191268328,0.2271569265382197,0.2374741936199969,0.2466026150077734,0.2543983229456648,0.2627947945672558,0.2707743126842304,0.2788101503541495,0.2856087955365933,0.2926890008894159,0.2985610215666742,0.3036816162599647,0.3097440203499499,0.3144844876214352,0.3189238788280423,0.3235530650893714,0.3273087594133967,0.3260775745805686,0.3252651468134111,0.3244266719418971,0.3231933650388586,0.3231205250596659,0.3202836573960128,0.3177774953936082,0.3176106325861756,0.3177539592565873,0.3187560564189068,0.3191373139951026,0.3206584329454747,0.3224361939200269,0.3243188833713595,0.3242215698541797,0.3259991136369561,0.327775715876324,0.3313723022714402,0.3344766037867917,0.3369362948885457,0.3386048625312429,0.3410018552875696,0.3433249370277078,0.3448145344436033,0.3476815074819878,0.3509429541993674,0.3530380125710865,0.3496932515337423,0.3566452304394427,0.3554447852760736,0.0,2.60037317407738,52.58538488507041,178.9826936717382,256.99671410734305,fqhc6_80Compliance_implementation,69 -100000,95690,44467,420.8381231058627,5926,60.65419584073571,4696,48.45856411328248,1885,19.30191242554081,77.32722884548278,79.7042661322715,63.32110870231941,65.07622353874844,77.09268523423907,79.47128197011212,63.23425290945063,64.99248177686749,0.2345436112437084,232.9841621593829,0.0868557928687892,83.74176188094395,166.82644,116.84116330270795,174340.5162503919,122103.83875296055,361.55329,233.99697331252747,377161.26031978265,243859.64396752784,363.82249,175.8315510869883,375921.4233462222,180431.54621926145,3351.11219,1524.2666948850535,3462323.3044205243,1553194.351431762,1093.88394,482.0024628402909,1130359.9749190093,490918.5733517512,1849.36348,771.0091857771868,1896985.9546452083,775982.0150232789,0.38002,100000,0,758302,7924.5689204723585,0,0.0,0,0.0,30838,321.6532553035845,0,0.0,33368,344.55010972933434,1570795,0,56400,0,0,6588,0,0,63,0.6374751802696207,0,0.0,0,0.0,0,0.0,0.05926,0.1559391610967843,0.3180897738778265,0.01885,0.3276083467094703,0.6723916532905297,24.72852185766789,4.272192908361113,0.3179301533219761,0.233603066439523,0.2267887563884156,0.2216780238500851,11.190751028403952,5.8140431843164695,20.061582838133862,12271.783889722668,53.40600209772011,13.144816571059597,17.017827261804456,11.806734925709629,11.436623339146449,0.5640971039182283,0.7894257064721969,0.6972538513060951,0.5849765258215962,0.1143131604226705,0.7367130008176614,0.9209183673469388,0.8776041666666666,0.717741935483871,0.1256281407035175,0.5033112582781457,0.7163120567375887,0.6348061316501352,0.5446756425948592,0.1116389548693586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023994168505882,0.0048241124545205,0.0071319874201075,0.0093746508628132,0.0113177616660395,0.0134503578955942,0.0156119348194073,0.017832157119075,0.0201358067617041,0.022068612391193,0.0242236534438199,0.0265193143185809,0.0288315161489405,0.0307885707220064,0.0326023014603436,0.0345715526691348,0.0365911775065785,0.0386935351584805,0.0408991148233287,0.0428619079386257,0.0580438279471056,0.071699929880378,0.0848166990087585,0.0977601026838788,0.1099813304924741,0.1255369120416411,0.1377370705666344,0.1503540812523295,0.1612565445026178,0.1720431261063133,0.1841439112403727,0.1956201693043798,0.2073879087171231,0.2180028437055671,0.2277019590578912,0.238280427677137,0.2481639395495234,0.257343097881723,0.2655136411094466,0.2730021994134897,0.2806154344856329,0.2871402993458392,0.2935932949783365,0.299013674332762,0.3050077163306721,0.3105565556185732,0.3150473948485494,0.3193179937096507,0.3240812730005701,0.3279995775242924,0.3264354179867074,0.3249569944264777,0.3245837856125858,0.3232369942196532,0.322891100301962,0.3208117775287453,0.3185391833629216,0.3190606602272913,0.3192226317226317,0.3203691496374423,0.3203351474686267,0.3205398898908775,0.3212111066937289,0.3213511762471794,0.3213305733403938,0.3223945279866332,0.3249029458780543,0.3283497529193289,0.3331581160639192,0.3355720701029289,0.3397157610930859,0.3410571276027763,0.343540427685689,0.3461952344350499,0.3456895732344834,0.3443210318882121,0.3458044649730562,0.3520325203252032,0.3568464730290456,0.3618244538137217,0.0,2.452704346174639,53.31475192888351,184.54896045003304,253.8463230451002,fqhc6_80Compliance_implementation,70 -100000,95787,44322,418.564105776358,5966,61.01036675122928,4663,48.179815632601496,1856,19.042249992170127,77.38146625236273,79.7030836462251,63.35451413110488,65.06716885463445,77.14575579747509,79.46933757569502,63.26705930601936,64.98310073153085,0.2357104548876378,233.74607053007423,0.0874548250855227,84.06812310359157,167.49326,117.37727997530324,174859.88704103898,122539.65566862232,357.13676,231.6848742466716,372335.4839383215,241366.2725926507,368.3366,178.40716881922935,381749.4962782006,184113.0757617376,3358.78658,1540.2978304210324,3470392.2870535664,1571945.53565251,1099.99722,490.3750036719246,1134025.8385793478,497613.0312565762,1822.37308,768.2446911884034,1870856.504536106,773891.5788160474,0.37761,100000,0,761333,7948.176683683589,0,0.0,0,0.0,30478,317.6631484439433,0,0.0,33669,348.648564001378,1568849,0,56284,0,0,6699,0,0,64,0.6681491225322851,0,0.0,2,0.0208796600791339,0,0.0,0.05966,0.1579936972008156,0.3110962118672477,0.01856,0.3348249960044749,0.665175003995525,24.411075993329703,4.366541785273498,0.3124597898348702,0.236542998069912,0.2260347415826721,0.2249624705125455,11.110198623304235,5.624148082065422,19.741923579594246,12177.260870350545,53.08421760250573,13.280338304723555,16.565439562785468,11.727058138528845,11.51138159646786,0.5687325755951105,0.800543970988214,0.7110501029512697,0.594876660341556,0.1010486177311725,0.7361867704280156,0.8949880668257757,0.89,0.7131782945736435,0.1490384615384615,0.5050325636471285,0.7426900584795322,0.6433301797540208,0.5565326633165829,0.089179548156956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679869590749,0.0047427946005107,0.0071616234365648,0.009159964253798,0.0114187519700651,0.0138648533094447,0.0162569308545335,0.0183471259910815,0.0203718839395177,0.0225180062203306,0.0244232266524607,0.026675421676858,0.0289701665861654,0.0310576269790615,0.0329707716892623,0.0350201383868635,0.0369435188442991,0.0392311360855952,0.0412424683149802,0.043241498511068,0.0575871425589647,0.0721169441334351,0.0849117949363371,0.0979732570851904,0.109992515364586,0.1257958751983077,0.1373308159022444,0.1490750005322206,0.1598393488501265,0.1705478717701297,0.1830415778481149,0.1953538172025567,0.2066921855629744,0.2171425445793676,0.2271131604142135,0.236420450767901,0.2455599834790083,0.254343325231794,0.2625376099914845,0.2700128375590298,0.2775525803761697,0.2836684270307615,0.2904830134163815,0.2961338414707222,0.3007518796992481,0.3053259249220761,0.3106450039398146,0.3158865194114879,0.3195482391949125,0.323245509929583,0.3234890479522092,0.3222556659657224,0.3213290159087709,0.320702068905692,0.3196133828996282,0.317669230533509,0.3157220367939004,0.3155780706931602,0.3165133700790088,0.3176426586877538,0.3189039662068708,0.3200299424789221,0.3207357859531772,0.3209498704315968,0.3212880314809482,0.3224732832366936,0.3221360161423253,0.3254779066123472,0.3284224524076148,0.3314154200230149,0.3354254786919543,0.3382500660851176,0.337284751684552,0.3397208600528102,0.3434770357847281,0.3477130362841272,0.3481099134659177,0.3498190591073583,0.3460386604955077,0.3562428407789232,0.0,1.8666268195536653,56.583876161365225,174.38902297616636,251.78174788571351,fqhc6_80Compliance_implementation,71 -100000,95756,44535,420.6524917498642,5880,60.12155896236267,4617,47.64192322152137,1851,19.0379715109236,77.31912755708531,79.66965002264114,63.32066847763053,65.05875923726576,77.08739878917167,79.43681432028649,63.23444911810634,64.97392474291412,0.231728767913637,232.8357023546488,0.0862193595241933,84.83449435163948,167.26358,117.15360734793823,174676.86620159572,122345.97032868776,360.88519,234.68199402910287,376305.2759096036,244508.6302989921,367.05489,178.5672549851144,379097.79021680105,183232.7108519902,3294.86008,1514.8866342013082,3404979.3015581267,1546272.7003143325,1124.41858,496.7650694903689,1161009.3466727934,505608.99352870975,1808.32396,761.6002093779956,1861889.907682025,773370.5029474369,0.37897,100000,0,760289,7939.857554617987,0,0.0,0,0.0,30783,320.87806508208365,0,0.0,33497,345.6598019967417,1566548,0,56240,0,0,6577,0,0,73,0.7519111073979698,0,0.0,0,0.0,0,0.0,0.0588,0.1551574003219252,0.3147959183673469,0.01851,0.3431866168588598,0.6568133831411401,24.274107804494,4.357495471166189,0.3255360623781676,0.2252544942603422,0.2298029023175222,0.2194065410439679,11.456367123232532,6.070691996578237,19.74021200197155,12252.60447990874,52.41471212828869,12.524664611957576,16.901169128539138,11.850637834145724,11.138240553646227,0.5698505523066927,0.7932692307692307,0.6899534264803726,0.6022620169651273,0.1283316880552813,0.7289866457187746,0.905,0.8461538461538461,0.7631578947368421,0.152073732718894,0.5092703349282297,0.7234375,0.6352201257861635,0.5484276729559748,0.121859296482412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278706619813,0.0045805085175163,0.0068381965017653,0.00927298949806,0.0115223073089869,0.0137891703074557,0.0156614835585011,0.0175938406241065,0.0197644219954602,0.0221330439589689,0.0242687090523207,0.0264911542134283,0.0286005183265457,0.0305646266212026,0.0326760970274759,0.0348280815617862,0.0369572869003499,0.039052370629298,0.041147132169576,0.0435135810698217,0.0576907018496096,0.0715892093178941,0.0852779846245817,0.0984058214856566,0.1104352043183064,0.1255551325973861,0.1378268017181948,0.1495530964034901,0.1601977512733174,0.1703259005145797,0.183645780615706,0.1959676633875523,0.2080093101160501,0.2191326976906928,0.2291595612423398,0.2395401891514762,0.2491795226719653,0.2578144339176812,0.2660809752443218,0.273746664070464,0.2807868655057429,0.2870002926543751,0.2933142220853372,0.2982803518498518,0.3031629637736675,0.3080806210735488,0.3128719818566828,0.3177260507841863,0.322007521722215,0.3264993394980185,0.3252594689311228,0.3235982595285305,0.3220286379346829,0.3206566585115161,0.3195353403141361,0.3177733476460666,0.3170646624171503,0.3176992604765817,0.3180808149870094,0.318691739278238,0.320169014084507,0.3217952014557826,0.3222222222222222,0.3221030909335606,0.3239277108433735,0.3247550620509471,0.3261123954676485,0.3287628152714007,0.3330055834533132,0.3358265067869722,0.3367847411444141,0.3400584019113353,0.3427706664985182,0.3439242343236844,0.3479777505420948,0.3505239609089838,0.3495811119573496,0.3557711744491611,0.3584180170282889,0.3554628224582701,0.0,2.279262552780132,55.59480551283549,168.57771800401812,252.8391429428305,fqhc6_80Compliance_implementation,72 -100000,95691,44484,421.074082202088,6035,62.05390266587244,4764,49.294081993081896,1806,18.54928885684129,77.34181859432726,79.72318740008375,63.3271521787835,65.08499148417789,77.12300751819896,79.50495283948233,63.24740462306292,65.00754127335523,0.2188110761283042,218.23456060141663,0.07974755572058,77.45021082266135,168.37876,117.87996514420392,175960.4560512483,123187.68927506656,362.05436,233.88252630168463,377885.6005266953,243942.4865456102,363.5534,174.84227105350118,376777.4712355394,180341.52456141933,3398.55416,1528.1265977477915,3519914.5792185264,1565303.8635822088,1135.21024,499.5572194721575,1176165.6686626747,511901.1940764434,1769.47128,730.6553012739016,1819436.498730288,739071.7363089196,0.37985,100000,0,765358,7998.2025477840125,0,0.0,0,0.0,30896,322.3605145729483,0,0.0,33318,345.0063224336667,1565023,0,56216,0,0,6635,0,0,57,0.5956673041351851,0,0.0,1,0.010450303581319,0,0.0,0.06035,0.1588785046728972,0.2992543496271748,0.01806,0.3238993710691824,0.6761006289308176,24.828793549996607,4.320770646863603,0.3207388748950461,0.2401343408900084,0.221872376154492,0.2172544080604534,11.204146865281825,5.788706805319738,19.169424508907788,12274.910939904345,53.6943205939001,13.707738142916536,17.154643375359985,11.600380385716482,11.231558689907091,0.5696893366918556,0.791083916083916,0.7048429319371727,0.5733207190160833,0.1217391304347826,0.7493627867459643,0.9111675126903552,0.8915989159891599,0.7416267942583732,0.1902439024390244,0.5107332032339001,0.728,0.6453839516824849,0.5318396226415094,0.1048192771084337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.004449760280568,0.0066454957742763,0.0090491763319859,0.0114796437141578,0.0137350329885151,0.0160739585562996,0.0181292937129324,0.0201862243072803,0.0221519311283767,0.0244955294889672,0.0267847056044531,0.0287131055625855,0.0311601595103403,0.0331214004087277,0.035085178787534,0.0370151604646584,0.0389343411271232,0.0409666378852975,0.0428364417293037,0.0570157111816814,0.0711249319428738,0.0840671277589446,0.0966720326589017,0.1091269631989199,0.1247435327960742,0.137642028877879,0.1494986908487132,0.1614516008418174,0.1712597580852706,0.1843241555309091,0.1963490072241207,0.207459359538955,0.2181963253216163,0.2277261479241132,0.2387448236153863,0.2480135702169449,0.2571778809928137,0.2660940797385917,0.2734443872001831,0.2805096601880008,0.2875745178258328,0.2936976131083972,0.2996502742712051,0.3045869554659803,0.3102106170710678,0.3155393235941565,0.3204262516054375,0.3238869541576583,0.3281548788690044,0.3269722498856081,0.3264357701667789,0.3243486832840445,0.3233917790808515,0.3217882073369968,0.320798663785838,0.3189987975444592,0.3186449019768682,0.3186430255201394,0.3188814182019225,0.3196523689374825,0.3206534606581959,0.3214674140383167,0.3227824066834945,0.3241185512537227,0.3251173708920187,0.3259079903147699,0.3300961719781256,0.3329348896076501,0.3336642312579415,0.3351705917186717,0.3377855514920231,0.3413278371119855,0.3472464207257026,0.3495669987894589,0.3535891968727789,0.3520976353928299,0.3571284938668811,0.3637116818558409,0.3619230769230769,0.0,1.8630919895091853,51.67769406216379,185.3485245270452,266.97145531264727,fqhc6_80Compliance_implementation,73 -100000,95677,44517,422.7452783845647,6007,61.51948744212297,4685,48.37108186920576,1854,18.959624570168376,77.38307130315455,79.76039087943904,63.34642469116329,65.09799510441698,77.14618428247068,79.52656207770121,63.257657443482856,65.01342067829465,0.2368870206838664,233.8288017378289,0.0887672476804368,84.57442612233024,167.1406,117.04139576264134,174692.55934028034,122329.7090864485,358.18207,232.5892874477309,373777.5431921988,242512.45391388892,366.04171,177.45113150056426,379274.7682306093,182855.18490996968,3356.85755,1543.0954790354108,3467920.4824565984,1572504.6945375572,1130.42348,503.2538049312245,1166765.0114447568,511350.8666820126,1809.80014,772.1855489246323,1852845.8668227475,772197.6190648011,0.37881,100000,0,759730,7940.57087910365,0,0.0,0,0.0,30571,318.9063202232511,0,0.0,33419,346.00792248920845,1569936,0,56416,0,0,6535,0,0,61,0.6375617964610094,0,0.0,0,0.0,0,0.0,0.06007,0.1585755391885114,0.3086399200932245,0.01854,0.3348645651829558,0.6651354348170442,24.374486071600188,4.304158442261727,0.311632870864461,0.2288153681963714,0.2377801494130202,0.2217716115261472,11.08269159191729,5.835233939005773,19.94513005496114,12192.493083054222,53.160034486672274,12.822961909721403,16.72688313710506,12.312547963341911,11.297641476503909,0.5641408751334045,0.7826492537313433,0.7150684931506849,0.5798922800718133,0.109720885466795,0.7297709923664122,0.9148418491484184,0.8740554156171285,0.7427536231884058,0.1238938053097345,0.4998518518518518,0.7004538577912254,0.6556914393226717,0.5262529832935561,0.1057810578105781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019436542724962,0.0042449293862581,0.0062068336020932,0.0084690686055485,0.0106756138477962,0.0129889959994706,0.0152602499541275,0.0174136716716512,0.0196457228133656,0.0214876540682199,0.0234887631233595,0.0258566690284751,0.0276557887916405,0.0296962393003924,0.0318054738840229,0.0337960044234525,0.0357601624331827,0.0378208388255197,0.0395586568359314,0.0416349671193188,0.0566106723496719,0.0711167411719134,0.0841726467749381,0.0962976204246012,0.1087176567343582,0.1240392036623917,0.1372006487930541,0.1490683229813664,0.1596060269762677,0.1698901687650683,0.1831983043370668,0.1956359547160018,0.2069044228741616,0.2167668597660946,0.2263752461198314,0.2368543508608655,0.2463593317251853,0.2553016566621243,0.2638589239888265,0.2718293074208186,0.2791777111571539,0.2854416224634372,0.2929152891827521,0.2978360797398015,0.3035772931288239,0.3087505860869136,0.3135059306855046,0.318075879723379,0.3220980580258757,0.3259445178335535,0.3253966116303499,0.3230032476468322,0.3212157917717151,0.3205243077634545,0.3197986128644201,0.3180550447468432,0.3173404272164426,0.3177826293931285,0.3185074984182356,0.3191268933981137,0.3200209212836702,0.3214925667027665,0.323009495982469,0.3239891343070894,0.3245762914445533,0.3267388264539851,0.3279332767882386,0.3312739867078536,0.3337757133377571,0.3366157239640775,0.3367638391440359,0.3389312977099236,0.3429035076769442,0.3439825603247388,0.3441864767366571,0.3457564147219319,0.3461595824011931,0.349308396649133,0.3523784214722296,0.361733382298935,0.0,2.3162568467228986,57.25566354549112,170.11189855607427,253.74449473213733,fqhc6_80Compliance_implementation,74 -100000,95687,44981,425.3764879241695,6108,62.735794831063785,4773,49.2334381890957,1953,19.92956200946837,77.3960056150407,79.78004612273071,63.35197710932333,65.11305075894907,77.14558994388736,79.53535069195703,63.25804247258302,65.0247141890424,0.2504156711533483,244.69543077367464,0.0939346367403075,88.33656990667293,165.91476,116.25844754204384,173393.20910886535,121498.6858633292,360.8648,233.6295240214912,376473.87837428285,243504.6141288808,369.0239,178.8660925054192,382130.23712730047,184108.7739616663,3418.50661,1558.5783764045384,3526893.4547012653,1583209.553053334,1131.26383,504.5604830777797,1167375.421948645,512554.1680013347,1914.35788,812.636234583056,1955144.690501322,809685.981348588,0.38229,100000,0,754158,7881.509504948426,0,0.0,0,0.0,30706,320.2211376676038,0,0.0,33718,348.7934620167839,1578375,0,56527,0,0,6547,0,0,62,0.6479459069675086,0,0.0,0,0.0,0,0.0,0.06108,0.1597739935650945,0.3197445972495088,0.01953,0.3285803823252898,0.6714196176747101,24.58860929272897,4.270516215160834,0.3084014246804945,0.2384244709826105,0.2289964382987638,0.2241776660381311,11.05322139245061,5.793161931721159,21.01419633476097,12326.43108179385,54.060526745703015,13.428191136393435,16.63529601869405,12.236864799634064,11.760174790981484,0.5562539283469516,0.773286467486819,0.7038043478260869,0.5672461116193962,0.111214953271028,0.7274167987321711,0.9283819628647216,0.8644501278772379,0.7170542635658915,0.1906779661016949,0.4947308459128453,0.6964520367936925,0.6456984273820536,0.5209580838323353,0.0887290167865707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022184628787341,0.0043803613798138,0.0066279612675341,0.0089814579629159,0.0112200679510914,0.0132773999103979,0.0153450860038541,0.0175295306741263,0.0199963196957615,0.0219144711253045,0.0240311667008406,0.026458720494471,0.0288273649135076,0.0308502091015842,0.0329137432934378,0.0353421542278271,0.0374137681009301,0.0392995422319565,0.041404486786134,0.0436921537563578,0.0582772740567417,0.0722785644761217,0.0857922064299575,0.0984449421190423,0.1105009065227474,0.1258103063566088,0.1375860642259259,0.1489477213936703,0.1604102125841256,0.1708996524947445,0.1847192753826105,0.1973778152787693,0.2080081733799969,0.2185505028421513,0.2285167632473087,0.2402528394624394,0.2499498115143539,0.2588389938096148,0.2671251501212299,0.2748110802437379,0.2813679871606876,0.2887747358589691,0.2945846328324355,0.3003242674069376,0.3068173550311643,0.3123278575644304,0.3167307308306709,0.3214852025218505,0.3262578920866096,0.3300701325017434,0.3284062990857465,0.3270813896054003,0.3252292029922943,0.3239704969616489,0.3230230349085727,0.3210564166908941,0.320118333834301,0.3208339484605416,0.3207170294494238,0.3218954539779922,0.3226561329938595,0.3224451150955678,0.3233224034585744,0.3236027610777109,0.3251265807597245,0.3253854754413791,0.3277368122518434,0.3305403878742233,0.3326561350660268,0.3357018100984439,0.337840924665357,0.3428844824836531,0.3469824870858007,0.350376626341018,0.3548539114043355,0.3558231016807724,0.3570227724285496,0.35,0.3503709810387469,0.3550250288794763,0.0,2.486895517605677,54.97977651526878,178.81266235251272,263.6972491436833,fqhc6_80Compliance_implementation,75 -100000,95829,44478,421.2294816809108,6056,62.1836813490697,4781,49.390059376597904,1919,19.691325172964344,77.38566316619061,79.7065048902013,63.36611244363343,65.08418861596775,77.14507801015021,79.46600142018549,63.276526272478335,64.9968295433526,0.240585156040396,240.5034700158097,0.0895861711550907,87.35907261514342,167.27216,117.14042848307474,174552.7554289411,122239.01792054049,362.96638,235.80982225997573,378262.8744951946,245571.7708209162,372.58895,180.3485498705724,385513.1118972336,185725.17091113923,3420.59252,1576.308848470137,3535273.737595092,1610716.796032659,1135.0503,504.3477270000248,1169693.276565549,511589.51801311725,1887.8946,803.3456373639374,1938503.667991944,812310.4593653358,0.3793,100000,0,760328,7934.216155860961,0,0.0,0,0.0,30952,322.4702334366424,0,0.0,34108,352.6594246000689,1570010,0,56431,0,0,6573,0,0,62,0.646985776748166,0,0.0,0,0.0,0,0.0,0.06056,0.1596625362509886,0.3168758256274769,0.01919,0.3476476160404168,0.6523523839595832,24.263313394657413,4.291759836563186,0.3118594436310395,0.2430453879941435,0.2177368751307258,0.2273582932440911,11.00711952462659,5.631155030859903,20.675994525436952,12133.67943440147,54.655877319877234,14.027173368659572,17.0220995867411,11.478288871827342,12.12831549264922,0.5580422505751935,0.7865748709122203,0.6928236083165661,0.5821325648414986,0.1057957681692732,0.718299164768413,0.9223744292237442,0.8518518518518519,0.7253218884120172,0.1161825726141078,0.4971131639722864,0.7044198895027625,0.6335174953959485,0.5408415841584159,0.1028368794326241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225861667325,0.0045213547844246,0.0069419776517035,0.0091845650539491,0.0111985841572073,0.0134609510233173,0.0155235503368702,0.0175936320032656,0.0199805815320149,0.0220020876399435,0.0240010658030928,0.0258447263620314,0.0276672936001397,0.0297690122287643,0.0320182313149645,0.0339413721156031,0.035915318074583,0.0379576267672789,0.040040289502923,0.0419775439910925,0.0567551216255684,0.0707267101521993,0.0839429829158369,0.0964373141698448,0.1082214146521304,0.123855391147302,0.1370517506223846,0.1485827248668813,0.1590690927707502,0.1699065000160652,0.182944402623938,0.1945167597463623,0.2056039255704887,0.2160041041762176,0.2265033774507112,0.2362118531623175,0.246111853832442,0.2544653890224449,0.2629629210046335,0.2702610007888328,0.2769936240990575,0.2829534712740258,0.2896016811087762,0.2951820909080043,0.3006576317988591,0.3057820789939084,0.3108416601175106,0.3161338591663602,0.3202746834299286,0.3237449832225804,0.3219609899046928,0.3199879052763232,0.3198097409268093,0.3193499458288191,0.3182642025196102,0.317427258805513,0.3151214565275951,0.316041998718349,0.3165374013388806,0.3169880854413396,0.318261912795711,0.3195170229612035,0.3195008522547926,0.3211278988842242,0.3235777466286432,0.3243555112638011,0.3257087167139622,0.3300486387467626,0.3316975003530574,0.3312445118543945,0.332221054075056,0.3362389709790581,0.3377884251670659,0.3382498289363643,0.3398698972376732,0.3401425178147268,0.3429359485136377,0.3471743974073324,0.3511429358303498,0.3501722158438576,0.0,1.945005617644728,58.00170920761535,183.29568983349083,254.99735746592123,fqhc6_80Compliance_implementation,76 -100000,95773,44862,424.3053887838953,6153,63.13888047779646,4800,49.606882941956506,1945,19.901224771073267,77.37657405990127,79.72047185303705,63.3458979718325,65.07862619631372,77.13435495391843,79.48058190741749,63.25551494598477,64.99191447324426,0.2422191059828407,239.88994561956645,0.0903830258477285,86.71172306945607,167.86154,117.59119372947818,175269.98214528104,122780.92335990124,361.49741,234.17915570618496,376932.0580957055,244005.29590868016,372.10594,179.84500400699525,385842.0953713468,185683.03925588905,3465.27041,1594.6993816432798,3579425.172021342,1627165.1718397613,1153.47944,519.6381614648681,1190591.7534169338,528934.0724153626,1920.19096,812.8764530757607,1966268.53079678,816436.415711683,0.38018,100000,0,763007,7966.817370240047,0,0.0,0,0.0,30762,320.6436051914423,0,0.0,34089,353.18931222787216,1566105,0,56205,0,0,6662,0,0,58,0.6055986551533313,0,0.0,0,0.0,0,0.0,0.06153,0.1618443894997106,0.3161059645701284,0.01945,0.3328178162697185,0.6671821837302815,24.38910198706097,4.380694643161819,0.3045833333333333,0.2454166666666666,0.2133333333333333,0.2366666666666666,11.342600842419262,5.865037050585081,20.87204192459828,12214.928220039696,54.550824185599,14.117349769813298,16.40452624490322,11.344464855047812,12.68448331583466,0.5602083333333333,0.8064516129032258,0.6997264021887825,0.5869140625,0.1012323943661971,0.7124901806755696,0.928921568627451,0.8770491803278688,0.720164609053498,0.125,0.505245250921463,0.7415584415584415,0.6405109489051095,0.5454545454545454,0.0943181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020257267294641,0.0042676560330059,0.0064733456441892,0.0089601365354138,0.0111870474330811,0.0132483375933035,0.0155499587033883,0.0176420141299465,0.0200574530510432,0.0221105321882261,0.0241062643489668,0.0265037979880927,0.0287033134233224,0.0310092687950566,0.0332085048435517,0.0352975224550124,0.0372349237905897,0.0393780018464921,0.0413236027944111,0.0432500546744009,0.0573316216300842,0.0706860489437356,0.0835814324052331,0.0962704526108933,0.1092727445173936,0.1248203111787586,0.1378092996628713,0.1491482864651494,0.1605672607669553,0.1710450129742017,0.1832055313832766,0.195321713352159,0.2068511628918913,0.2171015919908091,0.2265056527338977,0.236882938399131,0.2468372098216778,0.2556775979652929,0.263393819721059,0.27131356854123,0.2779750818458406,0.2852048034985559,0.2912763743022045,0.2977711774075715,0.3038334467010009,0.3084838924354834,0.3131993848539028,0.3176128204150622,0.3217482408940397,0.3257322975878032,0.3244860365993035,0.3225172480140733,0.321012138346203,0.3214569287848821,0.3204913290510169,0.3182360681825137,0.3162099734210859,0.3153605221298437,0.3163692255144735,0.3181445430883873,0.3194220606424047,0.3214250449276221,0.3218511150664851,0.3233451497112791,0.3247666354714083,0.3273129472999349,0.3281010066541546,0.3326229354060238,0.3366284572510253,0.3404424321855514,0.3433230096556749,0.3450562274559728,0.3466147957582983,0.3502387991812599,0.349284979904664,0.3524899693179136,0.3547060615290892,0.3543747502996404,0.3572978838849701,0.3620949510173323,0.0,1.8681962883419343,56.04163716331106,187.131053580838,257.2045339731032,fqhc6_80Compliance_implementation,77 -100000,95747,44969,426.0707907297357,6066,61.98627633241773,4749,48.97281376962202,1877,19.17553552591726,77.3313489084019,79.69701520354516,63.31030609897547,65.06277090660643,77.09539847113265,79.46666477362426,63.221832377307614,64.97988379119298,0.2359504372692527,230.35042992090385,0.088473721667853,82.88711541345606,166.6104,116.7336574591772,174011.0917313336,121918.86686703206,362.6716,235.6504669340144,378085.8408096337,245422.53745184117,371.50818,180.0920652442467,384846.2719458573,185604.24238592832,3416.86804,1552.7121175060788,3521811.743448881,1574851.606322994,1151.11996,506.1516010884337,1187649.9524789287,514053.867899728,1846.92692,772.9738974456099,1888405.7777267173,770260.4436031234,0.38182,100000,0,757320,7909.5950786969825,0,0.0,0,0.0,30852,321.5766551432421,0,0.0,33942,351.26949147231767,1568324,0,56241,0,0,6452,0,0,76,0.7833143597188423,0,0.0,0,0.0,0,0.0,0.06066,0.1588706720444188,0.3094296076491922,0.01877,0.3284947933101925,0.6715052066898075,24.698440223288323,4.331069025581406,0.3143819751526637,0.2383659717835334,0.2198357548957675,0.2274162981680353,11.322735595264644,5.857766500785893,19.8630003014655,12289.860555075213,53.60996717935402,13.595945634935024,16.8115248254128,11.501244911514677,11.701251807491513,0.5719098757633186,0.7932862190812721,0.7233757535164099,0.578544061302682,0.124074074074074,0.742879746835443,0.9032258064516128,0.8914728682170543,0.7100840336134454,0.1609756097560975,0.5098995695839311,0.7249283667621776,0.6645569620253164,0.5397022332506204,0.1154285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0047050711337801,0.0070540471961431,0.0091546433651696,0.0113430588618283,0.0137487142406126,0.0157029091168643,0.0179707362896555,0.0202620462518794,0.0225433762828522,0.0246143747948802,0.0268557045256074,0.0286502284608735,0.0309285787900649,0.0329476367915277,0.0349092112338172,0.0368529506176674,0.0387061961044756,0.0407584120747185,0.0428610115823681,0.0568726316119131,0.0707647871405249,0.0845590549528945,0.0975738008350247,0.1097508251347104,0.1259004601470355,0.1383222601940099,0.1493128795142217,0.1603262321892403,0.1711489343435427,0.1840533781744492,0.195752009184845,0.2075675087108014,0.2185847393603626,0.2288083335168586,0.2397303560143248,0.2490869900266922,0.25703864641848,0.2654659357870008,0.273055415501673,0.2801361378975029,0.2870593746340321,0.2934483739451977,0.2988748664129012,0.3045869327168755,0.3098242368177613,0.314250303584171,0.3192280272940218,0.3234748784440843,0.3279779271013479,0.3270907155656755,0.3258465601188348,0.3252910291240269,0.3240254114929252,0.3224969225977724,0.3208158771902999,0.3191596904122571,0.3202143173141518,0.3200819322352138,0.3214463929284288,0.3225480661330141,0.3244326031182159,0.3254189067631738,0.3260083076510786,0.3267193542962838,0.3275682433840383,0.3288231949971574,0.3319607719871754,0.3350466467171272,0.3379417506673572,0.3420201375916898,0.3441121989944429,0.3466390510261721,0.3485480324512852,0.3514971173516831,0.3524351970242939,0.3543754674644727,0.3576470588235294,0.3634408602150538,0.375517890772128,0.0,2.342447539977284,55.16435766166926,176.99423207955607,259.6853325415841,fqhc6_80Compliance_implementation,78 -100000,95495,44687,424.5772029949212,5979,61.57390439290015,4667,48.34808105136394,1829,18.79679564375098,77.22623088476638,79.71253397700293,63.24095407219974,65.07601946819156,76.99505197099052,79.48153632862633,63.15516825882192,64.99232490790358,0.2311789137758637,230.99764837660075,0.0857858133778179,83.69456028798083,166.59808,116.76293390555644,174457.15482485993,122271.04363317072,361.2838,234.25228636310703,377784.8578459605,244761.43545248127,363.10735,175.84286295416987,376674.3599141317,181458.01497072904,3353.61389,1532.5672317975495,3478001.4660453424,1571150.6336924229,1103.20624,484.4600367846084,1142403.089166972,494467.3823599224,1793.40994,755.8117014815873,1845230.326195089,764397.9215089276,0.3807,100000,0,757264,7929.87067385727,0,0.0,0,0.0,30823,322.2158228179485,0,0.0,33200,344.1227289386879,1564838,0,56166,0,0,6592,0,0,67,0.701607414000733,0,0.0,1,0.0104717524477721,0,0.0,0.05979,0.1570527974783294,0.3059039973239672,0.01829,0.3285302593659942,0.6714697406340058,24.495792494324668,4.270851063238656,0.315406042425541,0.233126205271052,0.2294836083136918,0.221984143989715,10.92356178146836,5.586789989923965,19.618337045095554,12226.86337655466,53.1959764280107,13.137820437223676,16.692231680755434,11.999751944198527,11.366172365833062,0.5500321405613885,0.7867647058823529,0.6922554347826086,0.5508870214752568,0.0984555984555984,0.7058346839546191,0.9115479115479116,0.8495821727019499,0.7100840336134454,0.1130434782608695,0.4940285464608214,0.7121879588839941,0.6415094339622641,0.5054021608643458,0.0942928039702233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020671834625322,0.0040877600494994,0.0064877048348122,0.0088052872394509,0.0110767225932562,0.013300718544565,0.0156226083939632,0.0177896307195553,0.0199596918575506,0.0221511854265281,0.0243163902118574,0.0261566933991363,0.0282548704641871,0.0303433480821395,0.0324840369474924,0.0345184602323318,0.0367523495363166,0.0386366471248596,0.0406409201246002,0.0424154458216295,0.0574227786093346,0.0718969333906858,0.0851043693148956,0.0978342203720293,0.1093933277678562,0.1241348609948171,0.1368990665731113,0.1485768541435521,0.1596307481419606,0.1702420360259662,0.1826945913850804,0.1951737975164036,0.2068070818070818,0.2174175161679272,0.2269848625270312,0.2374734689795419,0.2465404020628936,0.255495682366469,0.264171974522293,0.2717246603011384,0.2793815748268943,0.2859304084720121,0.2916459000830663,0.2972726070703064,0.3030243926224812,0.3076095159155295,0.3128896038608486,0.316730572597137,0.3213668326032988,0.3263949577606525,0.3251740217611678,0.3232600479986759,0.3228174183075729,0.3224761353774949,0.3226719080377617,0.3209954250974853,0.3192810301846647,0.319807654304723,0.3210048010973937,0.3202279406494158,0.3222395432263396,0.3223895383396077,0.3234553391537945,0.3249294702431597,0.325565192321553,0.3266194173745375,0.3288334472544998,0.3338782182263997,0.3353459472741952,0.3395769673399738,0.3432230425667669,0.3448659531630815,0.3455159897365292,0.345895831763021,0.3496257969139795,0.3523998136067101,0.3529590750038034,0.3477551020408163,0.3475862068965517,0.3462423312883436,0.0,1.989908375959333,54.30061195392003,180.528493735012,254.3258813890432,fqhc6_80Compliance_implementation,79 -100000,95707,44811,424.5979917874346,6140,62.900310322129,4807,49.609746413532974,1927,19.7686689583834,77.36399481233721,79.74802647661566,63.33329461681414,65.0970852974755,77.12190094412745,79.50783906515247,63.243060555031214,65.01011491521454,0.2420938682097642,240.18741146319653,0.0902340617829295,86.97038226095799,168.00124,117.59763416303517,175537.0453571839,122872.55285719452,362.03286,235.24893550637708,377664.1624959512,245193.26225498357,375.10367,181.87954761269327,388036.496807966,187076.6430647338,3463.95719,1593.8504808481175,3579543.993647278,1625552.4265185583,1167.90035,516.2283069429741,1205730.6989039464,524827.4806889504,1893.37258,797.8547559892772,1944539.187311273,804252.594122585,0.37959,100000,0,763642,7978.956607144723,0,0.0,0,0.0,30800,321.1781792345388,0,0.0,34339,354.874774049965,1564378,0,56219,0,0,6795,0,0,63,0.6582590615106524,0,0.0,2,0.0104485565319151,0,0.0,0.0614,0.1617534708501277,0.313843648208469,0.01927,0.3411764705882353,0.6588235294117647,24.318047079139397,4.355690489975322,0.3097566049511129,0.2398585396297066,0.2221759933430414,0.2282088620761389,11.17205283615868,5.69443011219974,20.61928607401496,12208.250832885436,55.01166886140248,13.857645693413978,17.114502314024374,11.954401165267768,12.08511968869637,0.5681298106927397,0.7996530789245446,0.7199462726662189,0.5795880149812734,0.1075660893345487,0.7341124908692477,0.9345372460496614,0.8666666666666667,0.7410358565737052,0.1166666666666666,0.5020360674810936,0.7154929577464789,0.6593927893738141,0.5299877600979193,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694805523753,0.0045939943411725,0.0067712986274669,0.0093196739638595,0.0116200980890942,0.0137946492246877,0.0159839242727161,0.0182094856816046,0.0201691673570413,0.02230209197309,0.0243967471003866,0.0265795743981595,0.0286260916076075,0.030787936239709,0.0328290125495376,0.0349059627573229,0.0369603049639512,0.0388103688022746,0.0407991434778541,0.0428313937133391,0.0574167676176949,0.0709680120582817,0.0842880523731587,0.0962938033738589,0.1082297629212654,0.1235249333840883,0.1359591910322081,0.1477694672894213,0.1589191151349504,0.1689318098994619,0.1817076320433903,0.1936851669569168,0.2049107239946934,0.2151644049819028,0.2248424387078324,0.2348337244830182,0.2455803785538217,0.2549275346023679,0.2643418679311636,0.2718604411579537,0.2787580943570767,0.2855957168240905,0.2924338524163393,0.2983223487118034,0.3038039253789351,0.3087921967560378,0.3134085620637025,0.3178929170692022,0.321246136537044,0.325669942821006,0.3249620198706659,0.323967078415477,0.3236208181575283,0.3230460690530811,0.3225811233489972,0.3210274098040412,0.3193079846709458,0.3201967223828897,0.3204947176808833,0.3205742479026771,0.3211745770324899,0.3219713417281806,0.3233227371591099,0.3237748003668329,0.3237418704552545,0.3243377267388751,0.3246768071687452,0.3285812974941908,0.3338950916368232,0.3352752348115563,0.3379623326525981,0.3402759422741449,0.3427508355931135,0.3443248606976566,0.3513743270048172,0.3541616980682089,0.3498375367476404,0.3467460480394169,0.3534987454697519,0.3553042121684867,0.0,2.4467115443425005,60.06932505224912,177.885277919691,256.0820077945346,fqhc6_80Compliance_implementation,80 -100000,95658,44861,426.1849505530118,6014,61.55261452256999,4736,48.7988458884777,1884,19.24564594701959,77.31725194233033,79.72595306494128,63.30264576078415,65.08498186407638,77.08481506420611,79.49663153388352,63.21678135048949,65.00321114091835,0.2324368781242185,229.32153105776365,0.0858644102946684,81.77072315803002,166.4982,116.61918947296972,174055.69842564134,121912.6361339038,358.80657,232.300057104463,374360.5239499048,242122.32659878244,370.80951,179.69909875355955,383056.8692634176,184340.71950364063,3383.67979,1531.7873457120254,3491018.147985532,1555770.789813701,1134.86967,496.447352235643,1170503.1466265237,503951.27431300783,1845.5403,768.498601737006,1888329.820820005,768499.248805938,0.3811,100000,0,756810,7911.62265571097,0,0.0,0,0.0,30686,320.0255075372682,0,0.0,33756,348.32423843275,1572143,0,56407,0,0,6563,0,0,64,0.6690501578540217,0,0.0,0,0.0,0,0.0,0.06014,0.1578063500393597,0.3132690389092118,0.01884,0.331387091683762,0.668612908316238,24.60875087834658,4.496163127874887,0.3137668918918919,0.2394425675675675,0.2225506756756756,0.2242398648648648,11.41057449563412,5.747384053886961,19.99379795434245,12263.567190335543,53.50820802070686,13.584318427551416,16.601569839988628,11.879084757839196,11.443234995327629,0.5597550675675675,0.7865961199294532,0.6884253028263796,0.571157495256167,0.1261770244821092,0.7323832145684878,0.9065420560747663,0.863013698630137,0.7364341085271318,0.1509433962264151,0.4969766772243018,0.7138810198300283,0.631578947368421,0.5175879396984925,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021882946498222,0.0045429194341631,0.0066472492566244,0.0088406548181568,0.010937579488223,0.0133747580727309,0.0154244792197988,0.0176119646943445,0.0196435513903951,0.0214535991639858,0.0235151689255045,0.0257508965545588,0.0279476252238898,0.0298162772955028,0.0316450466826406,0.0338227229930368,0.0359082804660612,0.0380812927077491,0.0402222314703067,0.0419776508360088,0.0564685479068504,0.0705698787358368,0.0837926075226487,0.0970192439211725,0.1091265864182552,0.1252500238117916,0.1382585807985396,0.1500713509829396,0.1610986427273698,0.171342137163822,0.1841016803102111,0.1972722844617633,0.20922614837144,0.2193981983165314,0.229503502356932,0.239119593044519,0.2480527596134532,0.2560826087445585,0.2646491685760305,0.2729728801529426,0.2805497391284228,0.2872762140860881,0.2940278188813258,0.2994881875606803,0.3048217367001239,0.3107929814177733,0.3154785003442448,0.3199704932210719,0.3246726359919258,0.3277979861879909,0.3263327731092437,0.3253290106327444,0.324586062463104,0.3237279335410176,0.3227191679049034,0.320754716981132,0.3186745367366638,0.319631781037708,0.3190447761194029,0.3189821084895573,0.319957326545509,0.3208768226032397,0.3221283819183939,0.3228337655369758,0.3246318123749608,0.3253524804177545,0.3273867198632089,0.3294065906449282,0.3319988762466638,0.3357409318199857,0.3388127853881278,0.3419372006386376,0.3449734781510482,0.3507536919427653,0.3506640293868324,0.3482375207002602,0.3536641573206329,0.3577367673899817,0.3622641509433962,0.374812030075188,0.0,2.666924696465454,54.8019320504178,176.79194430081495,258.5796187519002,fqhc6_80Compliance_implementation,81 -100000,95858,44711,422.5834046193327,5950,60.94431346366501,4732,48.79091990235557,1866,19.090738383859456,77.4717338221379,79.75718116727407,63.40399372213196,65.09029627437248,77.23794312291284,79.5264896613359,63.316279139228094,65.0063416389043,0.233790699225068,230.691505938168,0.0877145829038639,83.95463546817439,167.6961,117.42938227030533,174942.20617997454,122503.47625686464,359.93601,233.61237002527264,374921.3837134094,243139.6665347349,368.49465,178.56113738502182,380993.8659266832,183592.2092790951,3366.53468,1536.9710845013658,3471663.126708256,1563071.6611910593,1119.80354,487.4356422346019,1154041.2589455235,494403.1288873639,1822.99362,766.8656327336117,1866434.7263660831,769251.897704653,0.38095,100000,0,762255,7951.918462726116,0,0.0,0,0.0,30747,320.15063948757535,0,0.0,33780,348.9849569154374,1570344,0,56323,0,0,6581,0,0,52,0.5424690688309791,0,0.0,1,0.0104320974775188,0,0.0,0.0595,0.1561884761779761,0.3136134453781513,0.01866,0.3466027178257394,0.6533972821742606,24.26349645769416,4.367745358872488,0.3218512256973795,0.2368977176669484,0.2195688926458157,0.2216821639898563,11.301063018935317,5.915901449803684,19.82218762407424,12269.386123940854,53.47260259622209,13.424142405958468,17.11579766817763,11.570914186135743,11.361748335950256,0.5707945900253593,0.7957181088314005,0.6887721602101117,0.602502406159769,0.1277407054337464,0.7336412625096228,0.9232558139534884,0.8684863523573201,0.7520325203252033,0.0954545454545454,0.5091756481211768,0.7163531114327062,0.6241071428571429,0.5561160151324086,0.1363088057901085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023382933495293,0.0045182401150834,0.006925713358616,0.0090742996345919,0.0116555564588244,0.013684414012026,0.0157688859913617,0.0179316394496067,0.0201580785491085,0.0222531293463143,0.0241809113161748,0.0264496543802432,0.0286406969099276,0.0308365058133552,0.0328416365154467,0.0348516610043474,0.0368768942724442,0.0387931927948096,0.0409112620189811,0.0429172043458352,0.0581432936048633,0.0727173890317589,0.0858538221299964,0.098476410633603,0.1108628285937137,0.1265793341157315,0.1390971463717245,0.1512740039363796,0.1620170184597973,0.1720257234726688,0.1849428577577857,0.1969890195400311,0.2081957956914523,0.2191082385309081,0.229105805346278,0.2393190736749019,0.2486745377589663,0.2583705733084817,0.2661494903737259,0.2735723923434034,0.2804503464203233,0.2873925267443624,0.2939023238239184,0.3000645840310003,0.3046410635871807,0.3097031457687195,0.3137205902565191,0.3185587828141074,0.3231154934673886,0.3262944483208046,0.3249700993106043,0.3235342510832008,0.3223306423306423,0.3214141763113952,0.3207876813740006,0.3188912111550138,0.3167386575022858,0.3173669330457093,0.3183100986059163,0.318689514338986,0.3185971062052506,0.3197341774640687,0.3201408861656454,0.3208163809777896,0.3219181353584563,0.3237441740031072,0.3250021181055664,0.3277509727626459,0.3314661134163209,0.3339851388345717,0.337798485730926,0.3383272880197655,0.339444374921787,0.3386753759684034,0.3375495563526524,0.3370973493403066,0.3351556567957479,0.3389864325618515,0.3331534933908821,0.3333333333333333,0.0,2.184940585438204,56.82741531734037,170.85726175528615,259.70353644716937,fqhc6_80Compliance_implementation,82 -100000,95728,44456,419.44885508942,6039,61.77920775530671,4684,48.21995654354004,1870,19.11666388099616,77.34438518034166,79.69756687451002,63.33412346583962,65.07255932079903,77.10439962972836,79.46008982650524,63.24458592335077,64.98673407229903,0.2399855506132979,237.4770480047772,0.0895375424888484,85.82524850000084,165.8261,116.18175160151948,173225.63931138226,121365.88673015348,360.04803,233.9535395516793,375394.4404980779,243673.8944522523,366.21833,177.61245207085008,378028.3720541534,182090.8952541694,3362.28252,1546.982840790842,3465345.85492228,1569080.3859534543,1121.84906,502.5903727113992,1153709.552064182,506912.714124364,1829.84298,777.4466094544302,1872325.3175664383,778544.4367072461,0.37806,100000,0,753755,7873.892695971921,0,0.0,0,0.0,30768,320.6376399799432,0,0.0,33487,345.21770015042625,1574825,0,56514,0,0,6668,0,0,52,0.5432057496239345,0,0.0,0,0.0,0,0.0,0.06039,0.1597365497540073,0.3096539162112932,0.0187,0.3419933868682097,0.6580066131317903,24.39120786517223,4.319058753354717,0.319598633646456,0.2380444064901793,0.2192570452604611,0.2230999146029035,11.410984230718274,5.988665416091282,20.057271451077973,12240.756396790814,53.40215411812488,13.429874785554148,16.95039047210742,11.428870990813843,11.593017869649474,0.5578565328778822,0.7650224215246637,0.6927187708750835,0.5851996105160662,0.1167464114832535,0.7251370399373531,0.91725768321513,0.84,0.7322175732217573,0.1255813953488372,0.4951570296448488,0.6719653179190751,0.6390154968094804,0.5406091370558376,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385640776305,0.0046029219429602,0.0069095668584299,0.0091709576185978,0.0111840901234316,0.0134679791923284,0.0156641731721734,0.017939690800551,0.0203226696365624,0.0224598383300931,0.0246331666530043,0.0270345167349201,0.0292623743033992,0.031369398873338,0.033547215746147,0.035682914983104,0.0377186626643204,0.0398846807981084,0.0422049240810218,0.0439768762043643,0.0580466670146682,0.0718853016587305,0.0858925949234319,0.0982848008749513,0.1105100545168875,0.1258948303391103,0.138128168685433,0.1501755505904883,0.1613798996048275,0.1713893624092717,0.1831375631183988,0.1950127116352031,0.2067049433461647,0.2168546941274214,0.2261463500478447,0.237682956533292,0.2477233159233962,0.2566190529749184,0.2651039834806385,0.2723171346127422,0.2790014344546758,0.2853449082740547,0.2914373631575833,0.296550400614115,0.3014617431560529,0.3067301524645976,0.3117490070291062,0.3170113272938089,0.3217437505669522,0.326167619600956,0.3253797263815577,0.3234642636032194,0.322754676583277,0.3214528320975878,0.3204817485688796,0.318790556399282,0.3173812319507473,0.31776653082687,0.3185401809382108,0.3183653777428347,0.3193348206753032,0.3213092720336805,0.3222580915646487,0.3232099263141392,0.3244897467408853,0.3258385935625228,0.326760322571453,0.3293462180112688,0.3329821974086169,0.3367002028074919,0.3398062667697485,0.3423164832828363,0.346008562075044,0.3503511819348991,0.3521983161833489,0.352074493163602,0.3521858758789361,0.3491282051282051,0.3514412416851441,0.3599845500193124,0.0,2.695284323005315,55.41770851120644,179.46272964336384,250.41388126057245,fqhc6_80Compliance_implementation,83 -100000,95670,44625,422.6507787185116,5997,61.6076094909585,4701,48.55231525033971,1846,18.92965401902373,77.28108161739658,79.67066587391344,63.29287913429015,65.05671659580767,77.04480989773467,79.43470528492921,63.204768934611295,64.97121513566499,0.2362717196619144,235.96058898422712,0.0881101996788586,85.50146014268023,167.8314,117.5375618572235,175427.40671056756,122857.28217541914,362.78374,235.58223209814355,378627.1663008258,245668.5503273164,369.80417,178.95096806094878,382832.8002508624,184096.9373708974,3346.43916,1533.687472490334,3459391.2616285146,1564606.5563816598,1142.74431,512.6305122496317,1176962.1511445593,518345.6212897501,1804.50602,766.8205585277756,1852305.6130448417,772192.6615824467,0.37937,100000,0,762870,7973.973032298526,0,0.0,0,0.0,30907,322.4730845615136,0,0.0,33821,349.95296331138286,1559869,0,56023,0,0,6588,0,0,85,0.8675655900491271,0,0.0,1,0.0104525974704714,0,0.0,0.05997,0.1580778659356301,0.3078205769551442,0.01846,0.3370376250198444,0.6629623749801555,24.52237849731156,4.359719259787837,0.3163156775154223,0.248032333546054,0.2148479047011274,0.2208040842373963,11.202834474816328,5.921970811907785,19.851428976997173,12231.280676166894,53.47523033171335,14.054586050436988,16.760970616716367,11.06186024890002,11.597813415659967,0.5677515422250585,0.7864493996569468,0.7054472091459314,0.5722772277227722,0.1204238921001926,0.7382445141065831,0.910377358490566,0.9036458333333334,0.7248908296943232,0.1799163179916318,0.5042335766423358,0.715633423180593,0.6364460562103355,0.5275288092189501,0.1026282853566958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044708482446091,0.0066371007844768,0.0090113886885229,0.0111364237332953,0.0134515905665756,0.0154067336908864,0.0172234246743169,0.0195144390493227,0.021863069222817,0.0240949031589956,0.0263052518096411,0.0284556607945371,0.0305493735575337,0.0327684432151261,0.0348335866497099,0.0367316497130663,0.0387345871216838,0.0410260677803898,0.0430876344534311,0.058141357154051,0.071883311344265,0.0847486092159126,0.097640015571899,0.1101557224848075,0.1247593254765884,0.1376784671726554,0.1500415362003962,0.1604764043021788,0.1712586166169175,0.1841026747195858,0.196038058908949,0.2071031050218364,0.2172989311371999,0.2262920110192837,0.2367822721071836,0.2463674162829168,0.2556465512385801,0.2642991079038582,0.2718337481219822,0.2779844045094836,0.2848053804513392,0.2912368077789636,0.2972508797425027,0.3023753894080997,0.3077018005010304,0.3134994235300015,0.318436181468215,0.322753931592879,0.3274863084371776,0.3268807624292985,0.3253735049455779,0.3243392304102498,0.3239191579435729,0.3235811636992634,0.3217785286438335,0.3190105199689002,0.3193111283072921,0.3198718388047426,0.3200915773846787,0.3213030980517407,0.3218746897031079,0.3224501832582045,0.3234249224265863,0.3243066805290263,0.3246973935321952,0.3245880064087892,0.3264713311442283,0.3298922012711121,0.3304775503728383,0.3330452974349645,0.3354722384260487,0.3390171773736865,0.3419164841803216,0.3439597315436241,0.3448555851989328,0.3515068908072088,0.3521210914160526,0.3506981740064447,0.3517110266159696,0.0,2.3189753336836407,55.85449042924533,175.59165129113842,256.7678882053424,fqhc6_80Compliance_implementation,84 -100000,95730,44290,420.2444374804136,5990,61.28695288833176,4666,48.19805703541209,1827,18.708868693199623,77.3612597271838,79.72618339853274,63.34108899169471,65.08887214857458,77.13016922888734,79.49762873659817,63.25359352233116,65.00499415010744,0.2310904982964672,228.55466193456664,0.087495469363553,83.87799846714472,166.73096,116.78848422458972,174167.9306382534,121997.78985123755,360.09186,233.95543423590289,375614.9273999791,243853.31883730865,368.39481,178.69342283758857,381672.2135171838,184256.76034817225,3320.87634,1518.5955674535528,3433600.532748355,1551030.474100098,1104.20582,489.45421740668274,1142072.1403948604,499952.6131931252,1793.36532,758.9214943765539,1838722.8455029773,762966.8942380126,0.37791,100000,0,757868,7916.72411992061,0,0.0,0,0.0,30672,319.8161495873812,0,0.0,33693,348.814373759532,1572682,0,56366,0,0,6748,0,0,74,0.7730074166927817,0,0.0,1,0.010446046171524,0,0.0,0.0599,0.1585033473578365,0.305008347245409,0.01827,0.337863767188999,0.662136232811001,24.471279171324948,4.411862902545265,0.3259751393056151,0.236605229318474,0.2151735962280326,0.2222460351478782,11.42268334998097,5.808568888250691,19.4355820974168,12121.05751240204,52.88941405160951,13.24168747231082,17.17602604908282,11.172589729581553,11.299110800634304,0.5662237462494643,0.7943840579710145,0.7041420118343196,0.5707171314741036,0.1166827386692381,0.7259541984732825,0.8891454965357968,0.8810126582278481,0.7196969696969697,0.128440366972477,0.5038736591179976,0.7332339791356185,0.6420959147424512,0.5175675675675676,0.1135531135531135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0045015816367913,0.0067280956343488,0.0089097946785057,0.0112986880911217,0.0135536954440846,0.0154487793934697,0.0174605605758921,0.0195384788409827,0.0214578214578214,0.0237663149908236,0.025953884866225,0.0282111672203309,0.0304207186418328,0.0323096609085092,0.0341269759219245,0.0362764591359098,0.0378776086257173,0.039846934531237,0.0416666666666666,0.0565718581631374,0.0703175699721576,0.0833962739174219,0.0962039957939011,0.1088097647356438,0.1246392439186832,0.1370274139668063,0.1485395051875498,0.1584788762484644,0.1684319989708184,0.181269044824653,0.1936412120425361,0.2047164477689832,0.2153570335388517,0.2245104399168765,0.2343877980209417,0.2444774022324564,0.2540431796981242,0.2625880112019411,0.2698185564649991,0.2766451970998739,0.2829397122924287,0.2888994026849606,0.2947473030088962,0.3006924317572729,0.3063288025093794,0.3106455280286845,0.3145500527406051,0.3190341239954967,0.3230815917247203,0.3217543387595856,0.3207104005274435,0.3194149497222417,0.3183892113546449,0.3183343728652469,0.3165122866110388,0.3147582978857983,0.3159611255879509,0.3174673531317126,0.3178201926507313,0.3192218394248052,0.3202540662471803,0.3226022803487592,0.3235445301150966,0.3230391803160401,0.3236784371082323,0.3249585548505116,0.3289673021083196,0.3329697779966928,0.3359847279669106,0.3376045074518357,0.3390385631273111,0.3437128743825424,0.3489461358313817,0.3541511541325391,0.3545507927187316,0.3577814820427337,0.3589228295819935,0.3657522859517872,0.3592695514092894,0.0,2.015557543560346,57.49872541006584,166.8769783117391,254.7895203173289,fqhc6_80Compliance_implementation,85 -100000,95649,44386,420.2866731487,6003,61.57931604094136,4720,48.74070821440893,1899,19.43564491003565,77.2430810454354,79.64665444801284,63.27207635196621,65.04978057650963,77.00557284372437,79.41248171576945,63.18396887162412,64.96551319757613,0.2375082017110372,234.172732243394,0.0881074803420958,84.26737893350378,165.48356,115.9173178784701,173011.28082886388,121190.3081877177,355.50538,230.27196693416437,371052.4940145741,240122.308580502,362.84479,175.42667222253385,375730.7551568757,180594.7534403775,3368.60412,1542.013252860006,3480408.40991542,1570727.3184873918,1112.01466,492.5869960642984,1145828.6024945374,498227.06580382393,1863.23784,782.9542130573377,1908824.347353344,785637.3884573121,0.37794,100000,0,752198,7864.149128584721,0,0.0,0,0.0,30315,316.3023136676808,0,0.0,33277,344.2586958567261,1575969,0,56556,0,0,6491,0,0,53,0.5541092954448034,0,0.0,0,0.0,0,0.0,0.06003,0.1588347356723289,0.3163418290854572,0.01899,0.3326968973747016,0.6673031026252983,24.75186964443335,4.332564973806514,0.3197033898305085,0.2345338983050847,0.2211864406779661,0.2245762711864407,11.127057791513424,5.737791404264306,20.27823850469472,12194.28134986104,53.79842172937482,13.224981732979805,17.248266357453158,11.642133870499084,11.683039768442766,0.5701271186440678,0.8066847335140018,0.7236580516898609,0.5622605363984674,0.1122641509433962,0.7403619197482297,0.9473684210526316,0.8969849246231156,0.7099236641221374,0.1645021645021645,0.5073934473760511,0.7331499312242091,0.6615661566156615,0.5127877237851662,0.097708082026538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.004381960927515,0.0066799995939209,0.0090023267864944,0.0111989258795886,0.0136055807322165,0.0159979607443283,0.0181547132821434,0.0204924738219895,0.0224875581133389,0.0244792895160546,0.0268441213017447,0.0292166723228334,0.0312046070321111,0.0331843563886337,0.0350425494514584,0.037136020385966,0.0390978536139826,0.0410438834628306,0.0429402443601184,0.0582869204484895,0.0716118693243115,0.085303628422644,0.0981021651947833,0.1097445101351351,0.1251508670887416,0.1370488807674737,0.1489828990575291,0.1607763832268695,0.1709787243182867,0.184027103428929,0.1959351796650588,0.2066719670649226,0.2165409087424572,0.2262572603132267,0.2359571753480889,0.2451918776276948,0.2537113227751789,0.2621180429246998,0.2700480488056603,0.2771789522484932,0.2835712529130022,0.2901219945516996,0.2959257126403685,0.3020208533573418,0.3072649150533386,0.3120024072518462,0.3152833749936234,0.3202606742739936,0.3241273494438051,0.3236416598114708,0.3226019754515022,0.3214290755614528,0.3211596385542168,0.3206574378995366,0.3193740593998587,0.3175314053393047,0.3183165870532037,0.3187065392388586,0.3196847572989432,0.3198418674698795,0.319851333624836,0.3216411162282085,0.321894580816134,0.3226491600695115,0.3227584035267259,0.3237780333525014,0.3278289203125494,0.3308719615602035,0.3353788152248024,0.3384912959381044,0.3409918594687232,0.3435080593984008,0.3454308294329778,0.3467035060975609,0.3493918435487718,0.3501326259946949,0.3510791366906475,0.3621741541874653,0.3583591331269349,0.0,2.3517067244495298,55.684092496309,177.34849588999808,259.51676239735264,fqhc6_80Compliance_implementation,86 -100000,95822,44583,422.8360919204358,5990,61.30116257226941,4660,48.09960134415896,1866,19.19183486047045,77.44904619750217,79.7750530036924,63.38601454967061,65.10667503875847,77.21516422379878,79.54093832272758,63.29847407188924,65.02142617628033,0.2338819737033901,234.11468096482224,0.0875404777813741,85.24886247813868,168.2736,117.82802090876116,175610.61134186303,122965.52034893986,361.68655,234.22218246598752,376921.1350211852,243899.10716326884,370.91368,178.91026649440738,383317.8288910689,183952.40470975763,3322.25847,1522.3954451287725,3431775.5108430213,1553435.4377165702,1089.62604,479.1383707804309,1126428.6593892844,489325.1629795064,1820.07666,770.968020189503,1872662.478345265,780243.3804798562,0.37909,100000,0,764880,7982.300515539228,0,0.0,0,0.0,30867,321.5754210932771,0,0.0,33870,349.7526664022876,1568528,0,56309,0,0,6658,0,0,70,0.7305211746780489,0,0.0,0,0.0,0,0.0,0.0599,0.1580099712469334,0.3115191986644407,0.01866,0.3388073979591837,0.6611926020408163,24.27661605305259,4.223429961967856,0.3186695278969957,0.242489270386266,0.2216738197424892,0.2171673819742489,11.053923727856086,5.803759445154605,19.858937207500077,12164.46084291594,52.75621168002191,13.46562252961141,16.71054654478853,11.483425430150485,11.096617175471492,0.5590128755364807,0.7849557522123893,0.6956228956228956,0.5634075508228461,0.1017786561264822,0.7169059011164274,0.909307875894988,0.851063829787234,0.6935483870967742,0.1232227488151658,0.5008807985907222,0.7116736990154712,0.6429215509467989,0.5222929936305732,0.0961298377028714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023292790375013,0.004581715710622,0.0070114557649183,0.0092237990268282,0.0115317733915006,0.013745634488306,0.0157111833855,0.0177997325957603,0.0198773633111905,0.0217331245971083,0.0235384536557872,0.0256670771756978,0.0280224920075247,0.0301055341055341,0.032116999113018,0.0340833953219274,0.0357800823863048,0.0378888428038158,0.0398961038961038,0.0416731732200672,0.0566960839540172,0.0704271002143342,0.0836678440044857,0.095895016653183,0.1072918861959957,0.1219720989220038,0.1343199720122552,0.1467876248311655,0.1575336619507927,0.1682141900937081,0.1821359056252755,0.1950173399163794,0.2070223438212494,0.217528428312635,0.22775081794427,0.2373488382375699,0.2475357799186946,0.2567095825522791,0.2651956844143053,0.2725340767569667,0.2792547358213951,0.285525931975964,0.2915147438847393,0.2973321858864027,0.3028015413324286,0.3076554318165056,0.3130029067228883,0.3175275512662803,0.3216304824844463,0.3250302488295018,0.3237113678757867,0.3224868305531168,0.3222754137945557,0.3210756776999971,0.3196994127305809,0.3174944358059697,0.3149518292298973,0.3159389537256182,0.3162253903598099,0.3165223870006386,0.3175738608844678,0.3190912839443146,0.3193932195620012,0.3202644937216137,0.3204710838759096,0.3211170639542408,0.322531257973973,0.3252861342172743,0.3277976315605073,0.3303078137332281,0.3349523377212891,0.338692560755598,0.3396048326201862,0.3412896870500871,0.3443671243182246,0.3455188679245283,0.3482442748091603,0.3433747201302666,0.345509475418841,0.3517816527672479,0.0,2.016949713735753,54.93168516203812,175.93584529120824,251.56533995097885,fqhc6_80Compliance_implementation,87 -100000,95807,44834,424.4157525024268,5989,61.24813426993852,4744,48.93170645151189,1893,19.361842036594403,77.3497797498425,79.68218040675377,63.33168066437421,65.05961396571385,77.1088619679984,79.44381754938546,63.241231941879775,64.97281935145736,0.2409177818441037,238.36285736831545,0.0904487224944361,86.79461425649038,167.1758,117.06220886222636,174492.26048201072,122185.44455230449,360.42104,233.5476636767242,375626.3634181219,243200.57141461788,371.26786,179.70888829143885,383731.888066634,184715.60608908415,3379.59155,1569.7837547020606,3489797.540889497,1600794.6103764917,1144.61368,513.7776975555691,1182154.6024820737,523734.7455824278,1851.24232,788.0322301880327,1896713.3716743037,791688.8903067498,0.3814,100000,0,759890,7931.466385545941,0,0.0,0,0.0,30758,320.4463139436576,0,0.0,33954,350.6111244481092,1568634,0,56351,0,0,6631,0,0,62,0.6471343430020771,0,0.0,0,0.0,0,0.0,0.05989,0.1570267435762978,0.3160794790449157,0.01893,0.3381765926872106,0.6618234073127894,24.160193064588373,4.284983443858159,0.3178752107925801,0.2445193929173693,0.2158516020236087,0.2217537942664418,11.188089634566362,5.9146213514378525,20.27308213075568,12279.828364271452,54.35544213715899,13.901591254065524,17.299806984002053,11.61146191385558,11.542581985235836,0.5699831365935919,0.7793103448275862,0.7148541114058355,0.587890625,0.1140684410646387,0.7260479041916168,0.916267942583732,0.8722358722358723,0.7174721189591078,0.1611570247933884,0.5088028169014085,0.7021563342318059,0.6566757493188011,0.5417218543046357,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0047147332880448,0.0069519150749994,0.0089912525780003,0.0109958295188688,0.0130950562598645,0.0153752039151712,0.0176188969304737,0.0197675725952349,0.0219449533772095,0.0239669506207009,0.0258845514097377,0.0281942130914923,0.0303666862315035,0.0324723551741211,0.0343356065302748,0.0365194708403204,0.0383262973373855,0.0401899358914414,0.0427091467541256,0.0573598606169993,0.0711455011240654,0.0847605072843517,0.0976627361960611,0.1100547058637518,0.1260428672637489,0.1385488490505993,0.1503943461092248,0.1609981199794906,0.1717246484085862,0.1847465298732649,0.1974780820435112,0.2081026098497622,0.2183799975948135,0.2284120417235157,0.2383247999645366,0.2484039466047591,0.2575783139306001,0.2654054790167729,0.2736246621776373,0.2805243489025928,0.2871209551987463,0.2940090639088403,0.2996730186487166,0.3058786392443484,0.311243842364532,0.3164520565070634,0.3204507013594801,0.3246502840431176,0.3282790292568985,0.32690208970507,0.3250613167249979,0.3237807801878543,0.3230564167946452,0.3225408067612004,0.3206844211397819,0.3193387853429694,0.3197969543147208,0.3210767546860035,0.3214943577087469,0.322410623851146,0.3235323215734383,0.3241425548408724,0.3234327857861213,0.324203546201528,0.3243313627959061,0.3246424611185352,0.3289881866324068,0.3314828392863377,0.3327159520807062,0.3363739505332426,0.3367535833289258,0.3396321491559587,0.3393526666156554,0.3388748004132619,0.3425674879170104,0.3502290076335878,0.3536609829488465,0.3513071895424836,0.3520092735703246,0.0,2.283284694866923,58.60981269666848,182.03169243437927,248.1494057027472,fqhc6_80Compliance_implementation,88 -100000,95813,44825,423.2724160604511,6287,64.61544884305887,4957,51.28740358823959,1977,20.352144281047455,77.41775944651599,79.74569747115989,63.37436231324406,65.09499004946065,77.16852316480092,79.4954447320253,63.28279204246285,65.00529708442406,0.2492362817150706,250.2527391345808,0.0915702707812116,89.69296503659052,166.2837,116.46502110681782,173550.24892238007,121554.5083723689,362.11941,233.8653191759918,377490.5075511673,243632.05925336937,371.22958,179.52739632807254,384709.580119608,185272.3753725272,3516.60673,1601.1674083919493,3639117.656267938,1639990.987984131,1179.0166,519.6164531404884,1217531.8589335475,529343.6935633554,1931.26626,807.7432804163715,1988886.936010771,819570.034496535,0.38172,100000,0,755835,7888.647678290002,0,0.0,0,0.0,30808,321.06290378132405,0,0.0,33962,351.7894231471721,1577613,0,56649,0,0,6485,0,0,69,0.7097158005698601,0,0.0,0,0.0,0,0.0,0.06287,0.1647018757204233,0.3144584062350882,0.01977,0.3333333333333333,0.6666666666666666,24.77661317553824,4.349539775016508,0.3274157756707686,0.2340125075650595,0.221303207585233,0.2172685091789388,11.163267329995694,5.730748819372424,21.08388471176172,12357.954665731888,56.14023772809092,13.924175297892438,18.307238365029416,12.092928921274876,11.8158951438942,0.5612265483155134,0.7827586206896552,0.696241528034504,0.5615314494074749,0.1188486536675951,0.734984984984985,0.9234338747099768,0.8740740740740741,0.7037037037037037,0.163716814159292,0.4973793103448276,0.6995884773662552,0.6371100164203612,0.5151148730350665,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099069451898,0.0049060849644714,0.0070014510253574,0.0092015193678779,0.0113580899699015,0.0136100818437232,0.0159820609519926,0.018116681636319,0.020380629203377,0.0225774757440537,0.0246617466174661,0.0268738836765279,0.0291009642071503,0.0313072662507463,0.0336660411210327,0.0357578136296969,0.0376391936084778,0.0398001181873788,0.0418861221055256,0.0437457706522304,0.059021148288418,0.0724978569487131,0.0860395396129898,0.0990472388835782,0.1115171941650429,0.1270232007775852,0.1389786341535756,0.1507026981055854,0.1615918062520004,0.1720654712170876,0.1856261022927689,0.1971654495959901,0.2090091850693765,0.2193883678527366,0.229428954364687,0.23962965421119,0.2502257147634175,0.2591914654688377,0.2671605273888813,0.274567432498885,0.2822337488303316,0.2889249521318825,0.2957666646985888,0.301665749228155,0.3060674811642381,0.3111310835600753,0.3159986502193393,0.3204305447891118,0.3245448432812661,0.3278986461570879,0.3274346984843599,0.3254320716063302,0.3242414006643022,0.3238877500938303,0.3232630641330166,0.3213678877033998,0.318958837389503,0.3191231205627244,0.3204715422224493,0.3212300456100342,0.3222866766467065,0.3240970499035015,0.3248631253395745,0.32728812048837,0.3289906977862173,0.3309273783776741,0.3324316628701594,0.3357726130653266,0.3377128442295564,0.3393663366336634,0.3437315265335819,0.3465236097094598,0.3490405787983642,0.3521597206407045,0.3545805479710008,0.3602144133412746,0.3654562383612663,0.3686354378818737,0.3695592663564194,0.3805652342237708,0.0,1.7003952773122382,59.12242232718774,183.84782130918495,271.6142960057746,fqhc6_80Compliance_implementation,89 -100000,95737,44807,423.9322310078653,5977,61.345143465953605,4700,48.66457064666744,1819,18.717946039671183,77.3893283971574,79.74989493003346,63.35181630130408,65.09332383590187,77.16416478152827,79.52389257593784,63.27004181941679,65.01337493545823,0.2251636156291283,226.00235409562688,0.0817744818872867,79.94890044363956,167.11178,117.06389353258832,174552.97324963182,122276.54254111608,359.98565,234.09176301474864,375592.7802208133,244093.06016978668,373.10057,180.53474144926676,386798.87608761503,186326.27013826816,3341.68589,1515.968549587055,3463516.059621672,1556502.7414552914,1124.32075,496.4316991489152,1164626.4767017977,508778.6322413648,1790.89828,736.8614556347192,1845224.396001546,748458.4587224284,0.38017,100000,0,759599,7934.226056801446,0,0.0,0,0.0,30726,320.5134900822044,0,0.0,34043,352.70585040266565,1569356,0,56276,0,0,6665,0,0,75,0.7833961791157025,0,0.0,0,0.0,0,0.0,0.05977,0.1572191388063235,0.3043332775639953,0.01819,0.3339177558176602,0.6660822441823399,24.614926464148088,4.332410566256666,0.3219148936170213,0.2389361702127659,0.2185106382978723,0.2206382978723404,11.044754795893358,5.585858623362249,19.128371754259074,12299.63270276754,52.98065667564325,13.38477541565726,16.962549479868635,11.30739000326039,11.32594177685698,0.5621276595744681,0.7809439002671416,0.6893588896232651,0.5803310613437196,0.1215043394406943,0.747626582278481,0.9196217494089834,0.8926701570680629,0.7489711934156379,0.1527777777777778,0.4938882421420256,0.6971428571428572,0.6206896551724138,0.5280612244897959,0.1132764920828258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0044999847973486,0.0068165910958278,0.0090675548064132,0.011447277459233,0.0138529812918592,0.0161421816403065,0.0183363604824391,0.0203848079536513,0.0224498357703445,0.0246541653857977,0.0268193337232088,0.0289871453672972,0.0312097911455599,0.0334859641523833,0.0353629298941798,0.0370842003913408,0.0391988050536273,0.0410356619443087,0.0431367646905632,0.0577652009564881,0.0720855525442883,0.0849345527773116,0.0976417524418323,0.1096459328126153,0.1252498334443704,0.1384445670159955,0.1503167083621653,0.1611669568747262,0.1715719386278104,0.184417094679717,0.1973500621924179,0.2086023609208895,0.2197441784191538,0.2289627103728962,0.239362998073047,0.2487224689264276,0.2578962163377747,0.2663203148927481,0.2735267846918443,0.2807565143002474,0.2878796732385148,0.2938311880193374,0.2994254937163375,0.3042987660612237,0.3095589683008466,0.3147004400880176,0.3185317883823753,0.3237310498266673,0.3271584605857784,0.3264154745113842,0.3257356272913262,0.3239482109756783,0.3226634738831268,0.3223029045643154,0.3200903554694058,0.3191449110858873,0.3198117985329434,0.3210647163874479,0.3216388834528278,0.3226739844683393,0.3237228721099688,0.3237346930246165,0.3249492719691395,0.3264203931734716,0.3269245738304662,0.3282434081684784,0.3306433955772418,0.3327398408043569,0.3360274404668033,0.3372045547339291,0.3396226415094339,0.3430496096701083,0.3453815261044177,0.3514097744360902,0.3539718243163253,0.3526002745157847,0.3556857200565542,0.3548660084626234,0.3580101840971406,0.0,1.7037184775501502,55.86121990727386,169.41809007678194,261.31365027436453,fqhc6_80Compliance_implementation,90 -100000,95665,44763,423.7599958187425,6152,63.09517587414415,4822,49.74651126326242,1934,19.80870746877123,77.35982293729873,79.73600609646272,63.33991942654043,65.09007183688949,77.12404253507752,79.50046071774521,63.25311245149857,65.00543196857474,0.2357804022212093,235.5453787175037,0.0868069750418598,84.63986831475268,166.52108,116.60861367025431,174066.8792139236,121892.66050306208,359.92185,232.8658022932734,375527.7896827471,242714.44993561693,370.63036,179.00521205115382,382694.4964197983,183506.49080054308,3445.6793,1574.4763671096566,3560704.134218366,1604718.8557712082,1139.95539,503.71851418946414,1174871.6876600638,509821.41548306,1885.83198,781.4498336049547,1934593.34134741,788531.0778974108,0.38178,100000,0,756914,7912.130873360163,0,0.0,0,0.0,30732,320.5142946741232,0,0.0,33929,349.95034756703075,1574415,0,56445,0,0,6688,0,0,57,0.5958291956305859,0,0.0,1,0.0104531437829927,0,0.0,0.06152,0.1611399235161611,0.314369310793238,0.01934,0.3476851851851852,0.6523148148148148,24.645470281584256,4.295911797324106,0.3291165491497304,0.2368311903774367,0.218374118622978,0.2156781418498548,11.428104993063464,6.11870842871192,20.294141525209465,12376.057309692887,54.787536204360045,13.703598437612976,18.072391655879,11.764475734552834,11.247070376315236,0.5729987557030278,0.8012259194395797,0.7000630119722747,0.5897435897435898,0.1115384615384615,0.750386398763524,0.9357798165137616,0.8758949880668258,0.7172995780590717,0.1287128712871287,0.5079365079365079,0.7181303116147308,0.636986301369863,0.5526960784313726,0.107398568019093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023797950338234,0.0046827013713625,0.0067265256429767,0.0091507383559139,0.0115808524483487,0.0137615145808947,0.0159162004911401,0.0182426641635718,0.0199595497354389,0.0222501841394549,0.024340770791075,0.0265709156193895,0.0285423561576253,0.0304568527918781,0.0328316950149047,0.0350159163256025,0.0370611923765748,0.0391217316448344,0.0412096765809691,0.0433636249947892,0.0580227954158439,0.0724658925523783,0.0860393358661657,0.09815989647445,0.1100517828705217,0.125644091289029,0.1378428292434406,0.1495047395888806,0.1610368786745056,0.1722261575117522,0.1853987068965517,0.1983193641305524,0.2101460314696729,0.2207070154317609,0.2306523366955909,0.2409579830071007,0.2506891971829414,0.2600287821550638,0.2678160267679918,0.2757543152786044,0.2833549222797927,0.2903757762885512,0.2963265306122449,0.3017087569302247,0.3076055312954876,0.312157721796276,0.3171703794400229,0.3217126159319019,0.3268823042713827,0.3311583886955604,0.3300091392935864,0.3287247639597048,0.3278806222284789,0.3271927293710329,0.3255448480355819,0.3230828044957565,0.3209093354004841,0.3210591982138753,0.32202897063602,0.3220145119205061,0.3221530616071094,0.3231420321955464,0.3245748317151425,0.3255819158460161,0.3266435653094619,0.3286294521974588,0.3298942701227831,0.3311565992716312,0.3341038033200252,0.3376056505694218,0.3418009651279249,0.3446255459678278,0.345668041891463,0.3488158197286732,0.351708514253351,0.3556910569105691,0.3564082885648503,0.3541540327471195,0.3526557023456457,0.3581804281345566,0.0,2.43625494278929,56.42353337803312,181.82648437473784,263.643401537954,fqhc6_80Compliance_implementation,91 -100000,95849,45012,424.292376550616,6123,62.73409216580246,4835,49.82837588289914,1941,19.791547120992394,77.34109898624328,79.6318449406963,63.34986309044478,65.04420861969429,77.09975149232997,79.39146230244351,63.26002840141588,64.95681162111946,0.2413474939133095,240.3826382527825,0.0898346890288976,87.39699857483174,167.44156,117.33988490576624,174693.06930693067,122421.60576090126,363.78943,235.74019469501397,378929.3159031393,245334.5623793821,375.09953,181.7755863180153,386851.0782585108,186275.5127385318,3445.45387,1582.0675728234803,3555105.530574132,1611020.2535482692,1147.49014,507.8322334437645,1184164.790451648,516805.2620893476,1899.45362,798.8759050139421,1940825.7780467195,804125.1664062468,0.38212,100000,0,761098,7940.59405940594,0,0.0,0,0.0,31017,322.94546630637774,0,0.0,34324,353.75434276831265,1565429,0,56274,0,0,6573,0,0,58,0.5842523135348308,0,0.0,1,0.0104330770274076,0,0.0,0.06123,0.1602376216895216,0.3170014698677119,0.01941,0.3276370980270312,0.6723629019729688,24.53888774433932,4.318834575296905,0.3247156153050672,0.237435367114788,0.2165460186142709,0.2213029989658738,11.26557217699311,5.942089485139485,20.766145945147592,12346.400433109346,55.11259961545112,13.826093588497365,17.853719185894487,11.688556485213978,11.744230355845284,0.5669079627714582,0.7839721254355401,0.7063694267515923,0.5931232091690545,0.1037383177570093,0.717948717948718,0.92018779342723,0.8568232662192393,0.7206477732793523,0.110204081632653,0.507492795389049,0.703601108033241,0.6464826357969724,0.55375,0.1018181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.00482313483499,0.0072523303816855,0.0094218937194143,0.0116378346512715,0.0140539770414393,0.0163309799606752,0.0188217291507268,0.0211120871039568,0.0234663502357887,0.0255871838733137,0.0278042726890454,0.0299703172663126,0.0321419017634833,0.0343129173192646,0.03622739658162,0.0381759900734153,0.0402411985329161,0.0422852515520857,0.0444458316426854,0.0593853950510432,0.0731663984281922,0.0870954226458573,0.0994276713048044,0.1118984942613456,0.1274463208812564,0.1397033898305084,0.1513357216511284,0.161857914168036,0.172439290995992,0.1849847200103301,0.1963818421678669,0.2077785145167777,0.218576487561754,0.2280398714958412,0.2385141198497723,0.2485912899878376,0.2573495494076482,0.2656345765328127,0.2733874755157444,0.2808103480192521,0.2877343594661926,0.2946695852807194,0.3005908508011841,0.3060969090202177,0.3111856630117049,0.315167983571044,0.3203737651492005,0.3248941322731452,0.3284680210287163,0.327868631624323,0.3262907244022958,0.3249347902714135,0.324318846454527,0.3233643468552288,0.3209378641967736,0.3190818154436359,0.3195326641434918,0.3195669331869187,0.3202692998204668,0.3211418880723573,0.3221749841068023,0.3223563617976108,0.3226743531425226,0.3246013667425968,0.324728867414196,0.3260757462900361,0.3310872797443928,0.333767193161431,0.3354682154507121,0.3392058420812414,0.3424118304165115,0.3490858480420067,0.3541841482950644,0.3595303475049711,0.3637231503579952,0.3640135218192993,0.370273003033367,0.3681318681318681,0.3636363636363636,0.0,2.353183208936916,59.7452290075332,175.09766536787495,263.34928847131306,fqhc6_80Compliance_implementation,92 -100000,95640,44798,425.1045587620243,6048,61.99289000418235,4756,49.10079464659138,1864,19.07151819322459,77.31769350596971,79.7410483120107,63.289715480586615,65.08163113507328,77.08998801469517,79.51571183406976,63.20463651043166,65.0000997932527,0.2277054912745484,225.3364779409424,0.085078970154953,81.53134182057897,167.33002,117.2138930592651,174958.1974069427,122557.39550320484,362.35319,234.7973507502257,378251.3278962777,244882.10173895463,371.85141,179.5599207000959,385470.1066499373,185114.56866350383,3422.95083,1559.0337391040257,3532871.47636972,1584180.1801236826,1165.1436,520.4939154834012,1198412.9025512338,524596.6792564159,1839.05836,768.904213276042,1882208.239230448,768647.411334392,0.38012,100000,0,760591,7952.645336679214,0,0.0,0,0.0,30919,322.6160602258469,0,0.0,33988,351.9970723546633,1564928,0,56105,0,0,6687,0,0,65,0.6796319531576747,0,0.0,0,0.0,0,0.0,0.06048,0.1591076502157213,0.3082010582010582,0.01864,0.3419680935081345,0.6580319064918654,24.1346186271256,4.3471355958056686,0.325063078216989,0.2340201850294365,0.2117325483599663,0.229184188393608,11.149356275667593,5.762384810197561,19.686811988440333,12290.23003206356,53.86259303662015,13.303454792606672,17.559158607854727,11.062787543045586,11.937192093113149,0.5668629100084104,0.7897574123989218,0.7011642949547219,0.5938430983118173,0.1238532110091743,0.7317073170731707,0.9201995012468828,0.8737623762376238,0.7488789237668162,0.1687242798353909,0.5067431850789096,0.7162921348314607,0.6401050788091068,0.5497448979591837,0.1109799291617473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024009238998298,0.0046444651766519,0.0070761421319796,0.0092378987591337,0.0111713654908584,0.0134066829665851,0.0159039438516312,0.0178485681300381,0.0199564029351263,0.0222124274790381,0.0245958014679464,0.0267232869951468,0.028771199967048,0.0307709764601514,0.0328146632777467,0.0348831193021306,0.0365378234903782,0.0383600631543958,0.0402955562493495,0.0423088956095526,0.0569663907700025,0.0712631634096505,0.0854060753749842,0.0976555094474754,0.1096784413115792,0.1252078501149133,0.1383817559669295,0.1505771751990535,0.1621578254869869,0.1721245448784731,0.1847972644999838,0.197093817047006,0.2086133469845661,0.2183283686700543,0.2276624349819271,0.238505651503555,0.2480330800178811,0.2572027121393012,0.2662268350290697,0.273606638167169,0.2811019883501441,0.2881671348314606,0.2944924789766671,0.30003238924677,0.3051416477113768,0.3107584948463777,0.3153474516871933,0.3201307954603287,0.3242956150009716,0.3282131206001611,0.3271039370503112,0.3256687582562748,0.3247858431018936,0.3234988302573434,0.3226328287325616,0.3211370284716585,0.3195218492716909,0.3197449514817729,0.3196965822892695,0.3205506741133364,0.3209369987690701,0.3210514932856216,0.3218870746603515,0.3225262410403213,0.3238431615874758,0.3246198088033368,0.3263521353975037,0.328992054837202,0.3322525537774988,0.3339258205948572,0.3376806325547578,0.3427180355630821,0.3449293563579277,0.3440648435724566,0.3452704602981157,0.3473485295854494,0.3518208136522932,0.3606230031948881,0.3636859323882224,0.3651215805471124,0.0,2.3195530362068606,55.62711534462545,176.92284970086075,261.44267841861586,fqhc6_80Compliance_implementation,93 -100000,95720,44723,423.7463435018805,5963,61.31424989552863,4655,48.14040952778939,1819,18.689928959465107,77.34880342590687,79.7077770354975,63.338894218876014,65.07775826476121,77.12495471154386,79.4841353386344,63.2559878530533,64.99709130559086,0.223848714363001,223.64169686309765,0.0829063658227156,80.66695917035815,167.6741,117.39918441206623,175171.43752611784,122648.54201009846,361.25526,234.25086383833636,376890.58712912665,244207.34834761417,364.49222,175.96146513990772,377954.8056832428,181586.213256994,3323.51739,1508.5880211681972,3434697.8792310907,1538616.2151778063,1092.44378,482.2175264106,1128338.5499373171,490834.44780821615,1782.11764,745.1194707710193,1832103.1968240703,751445.5107774987,0.38074,100000,0,762155,7962.338069368993,0,0.0,0,0.0,30753,320.748015043878,0,0.0,33335,345.5077308817384,1567894,0,56262,0,0,6815,0,0,66,0.6790639364814041,0,0.0,1,0.0104471374843292,0,0.0,0.05963,0.1566160634553763,0.3050477947341942,0.01819,0.341086506292815,0.658913493707185,24.46158940362633,4.336944770427573,0.319656283566058,0.2345864661654135,0.2257787325456498,0.2199785177228786,10.98417932450085,5.612147284772608,19.361445717744456,12258.430899619229,52.87338197384121,13.14405158104044,16.748981840900544,11.75640570124181,11.223942850658428,0.5654135338345865,0.7976190476190477,0.6935483870967742,0.5842055185537584,0.1123046875,0.718625099920064,0.9090909090909092,0.8591160220994475,0.6875,0.1488372093023255,0.5091069330199764,0.728486646884273,0.6403197158081705,0.5509433962264151,0.1025957972805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.0045006690183675,0.0065648622596519,0.0088582777151332,0.0111436473076297,0.0133964472947523,0.015727725850347,0.0178626110033683,0.0199172244647693,0.0221278337853743,0.0242605005842199,0.0264589363056017,0.0286742404770472,0.0307722401243655,0.0327512043159382,0.03480021905126,0.0367145356843336,0.0387412718010437,0.0408292698142044,0.0427611357124251,0.0573430663032467,0.0717088945402028,0.0852706672261854,0.097754960338334,0.1097774496361143,0.1256571640133284,0.1379775042444821,0.1497301152998541,0.1604632280671766,0.1705817994593899,0.1837442509236221,0.1951053263656723,0.2066779052694545,0.2170689296923699,0.2274527492354067,0.2380519797044291,0.2477188201525626,0.2571451084570618,0.2651145367448407,0.2737238819648094,0.2810514253967152,0.2871862646487801,0.2942547778237974,0.2995868016048865,0.3046866465168785,0.3099541939614835,0.3147155477252564,0.3192924941867114,0.3234066203937079,0.3271584605857784,0.3257534983853606,0.324432099444475,0.3234490721184985,0.3224310541598648,0.3203559014883693,0.3186241508048228,0.3176189647810479,0.3176536148034025,0.3190247897224165,0.3201691015144218,0.3209024973829819,0.3226925199022621,0.3245067714429025,0.3250720718707399,0.325735718407386,0.3256498411210085,0.3259449436599629,0.329358837223935,0.3300021039343572,0.3345098350253807,0.337723895902648,0.3414647165581296,0.3425814234016888,0.3460446558735517,0.3474111866969009,0.349034104459814,0.348764952617679,0.3519242642519037,0.348914858096828,0.3499613302397525,0.0,1.7770069432369258,55.4647576335228,171.37202249444016,258.4438614239487,fqhc6_80Compliance_implementation,94 -100000,95629,44672,423.33392590113874,5975,61.14254044275272,4706,48.53130326574574,1837,18.74954250279727,77.26744378178137,79.68213338910476,63.28338998351626,65.06923810504829,77.03370968146021,79.45177552793963,63.19555412160943,64.98517057608453,0.2337341003211577,230.3578611651318,0.0878358619068251,84.06752896375735,165.07942,115.63893890741583,172623.93207081532,120923.72338459254,359.10235,233.1006781358045,374777.3165044077,243018.4552524677,365.13891,177.0300738354912,377285.66648192494,181648.0444548567,3366.72498,1539.900333238046,3478308.8811971266,1568152.171039662,1120.48968,497.58146577130793,1155276.9034497903,504019.461872214,1809.5653,764.4630196210735,1851013.771972937,767156.2770311558,0.3809,100000,0,750361,7846.542366855242,0,0.0,0,0.0,30576,319.0454778362212,0,0.0,33448,345.2509176086752,1577812,0,56594,0,0,6614,0,0,54,0.5542251827374541,0,0.0,1,0.0104570789195746,0,0.0,0.05975,0.1568653189813599,0.3074476987447698,0.01837,0.3353522473700988,0.6646477526299012,24.50372062067956,4.323367254436814,0.3270293242668933,0.2345941351466213,0.2099447513812154,0.2284317892052698,11.01517674704276,5.639970095401301,19.558637438129782,12252.472992019368,53.48765629624505,13.259959265206987,17.483797127707483,10.966732090345095,11.777167812985498,0.5590735231619209,0.7844202898550725,0.7024041585445094,0.5678137651821862,0.1144186046511628,0.7292474786656322,0.919431279620853,0.854066985645933,0.711864406779661,0.1267605633802817,0.494878548434299,0.7008797653958945,0.6458519179304193,0.5226063829787234,0.111368909512761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0049685662137497,0.0071982618583495,0.009409804080969,0.0115769234681939,0.0137491343137654,0.0159981238656524,0.0182954220606852,0.0205525675371684,0.0227137736815156,0.025014358385297,0.027027027027027,0.0291645663378151,0.0310355486862442,0.0330198903809828,0.0350880820444959,0.0369227263782585,0.0391928921365108,0.0411820999854369,0.042913890713459,0.0577962186850053,0.0716402903317029,0.0851667104226831,0.0978655743574083,0.1096894068959692,0.12481336764192,0.1365934486128223,0.1476819780454012,0.1579375267436885,0.1688614393125671,0.1821270628842627,0.1954908397525487,0.2071514096005224,0.2176121003841565,0.2273007553568675,0.2372573353426114,0.2467545514416154,0.2560913848404704,0.264233642949606,0.2723781794839464,0.2798781829340312,0.2863326859629829,0.2925873297809355,0.2988229930291432,0.304067611114489,0.3095593588430547,0.3149808419523678,0.3199725148877691,0.3242080715164863,0.3279552842305557,0.3265622681719473,0.3251422195898015,0.3241790792146242,0.3234476769431176,0.3226834206765126,0.3201754385964912,0.3187442495003014,0.3189672163458379,0.3196459390646093,0.3203000803786728,0.3210003940036398,0.3216736069799722,0.3221998151415847,0.3220737358135787,0.3232571593867515,0.3238625958192711,0.3255661212484651,0.3294276985101892,0.3309633592622575,0.3352894211576846,0.3368614818223654,0.3391444713478612,0.3401581834417655,0.3416287849603205,0.3479784111353091,0.3480398033808896,0.3557587970857231,0.357700205338809,0.3554609929078014,0.3583699560527367,0.0,2.6438166421914,56.153142837237446,173.43486664241158,257.0979222504098,fqhc6_80Compliance_implementation,95 -100000,95834,44739,423.0022747667842,6089,62.39956591606319,4834,49.82574034267588,1883,19.30421353590584,77.40182060844235,79.71557726991908,63.36325590393732,65.0757605302514,77.16117309719507,79.47458803324162,63.27385134632946,64.98827939533584,0.2406475112472748,240.9892366774642,0.0894045576078639,87.48113491556353,166.05512,116.2865209270476,173273.7024438091,121341.61250396268,359.12894,232.8670331640042,374144.5729073189,242393.9344741993,372.04176,179.93739830232627,383452.9081536824,184233.48268593053,3412.23194,1573.557593737053,3521690.756933865,1603087.3945959175,1133.57926,506.7269917013058,1167965.6489346162,513863.4844640789,1844.05324,782.5753704780938,1892320.408205856,789868.6957677341,0.3817,100000,0,754796,7876.077383809504,0,0.0,0,0.0,30727,319.99081745518293,0,0.0,34073,350.9506020827681,1576825,0,56668,0,0,6545,0,0,62,0.6260826011645136,0,0.0,0,0.0,0,0.0,0.06089,0.1595231857479696,0.3092461816390212,0.01883,0.350266541235497,0.649733458764503,24.14645413992931,4.264741506405938,0.3270583367811336,0.2412081092263136,0.217832023169218,0.2139015308233347,11.287601983551134,5.896189213353158,20.20747131692289,12275.74479762241,55.20987773751824,14.171421553349331,17.865238209950657,11.779734967715951,11.393483006502288,0.5775755068266446,0.7958833619210978,0.7008222643896268,0.6011396011396012,0.1189555125725338,0.7321167883211679,0.913978494623656,0.8939759036144578,0.688715953307393,0.1287553648068669,0.5164549653579676,0.717546362339515,0.6320754716981132,0.5728643216080402,0.1161048689138576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0042769258835095,0.0063506878220995,0.0088465015184293,0.0110002948323014,0.013009487356977,0.015145492534271,0.0175546029802,0.0196148578203896,0.02184170393949,0.0240377223104915,0.0263066059038469,0.0283285536608179,0.030353263387663,0.0325092566807966,0.03483121687108,0.0369120569725074,0.0389676375740105,0.0410265997777293,0.0430850565621455,0.0576523960994941,0.071557753222451,0.0854211855437846,0.0982373579276875,0.1097513454308011,0.1250910934381039,0.1375197296638806,0.1490119375378695,0.1600337250130737,0.1698070763660514,0.182919221254168,0.1951870502042316,0.2071355626534558,0.2177547118273695,0.2277974449746036,0.2381400498200941,0.2474207256544386,0.2562940640707049,0.2645447430211323,0.2725503885728674,0.2801503324660306,0.2873373777045271,0.2944466781769589,0.3000059898173106,0.3051318793413319,0.3099204100239016,0.3149248689429104,0.3199114819148395,0.3239002666804754,0.3274847629350149,0.3270434326168589,0.3258734525447043,0.3247403821799454,0.3247270262083688,0.3245651754867217,0.3225184709283649,0.3204495874039647,0.3207222559027379,0.3212159465038126,0.3216423227645172,0.322202081737148,0.3229322715445872,0.3241617047947352,0.3251840285523087,0.3259947775674963,0.3275960539979231,0.3285017303001077,0.3315633296892082,0.3354379600237206,0.3374046404996245,0.3420502092050209,0.346296886622038,0.3455253896430367,0.3460050079672205,0.3481012658227848,0.3525120602423814,0.3535245651510528,0.358666937614306,0.3654164368450083,0.3710982658959537,0.0,2.4386514971128586,59.933401720796496,181.52849910277413,254.42581995114085,fqhc6_80Compliance_implementation,96 -100000,95692,44990,426.1275759729131,6077,62.21000710613218,4777,49.2935668603436,1965,20.116624169209548,77.32145341825886,79.70885130531975,63.3143933609397,65.08016051027985,77.07655259168632,79.4669127818238,63.222440971227634,64.99244531909288,0.2449008265725325,241.93852349596057,0.0919523897120626,87.71519118697313,165.17864,115.73978642353345,172614.88943694351,120950.32648866516,357.1271,231.49934720144623,372598.2840780839,241314.84053154523,369.77502,179.5574896673965,382513.6793044351,184608.5401707348,3459.89271,1590.1353942146727,3574285.1231032894,1620352.3849586935,1135.91778,507.6885833838415,1174633.9610416754,518122.2394597671,1928.59184,814.4005016144515,1976958.1365213396,817247.7612476056,0.38194,100000,0,750812,7846.131338042888,0,0.0,0,0.0,30437,317.42465409856624,0,0.0,33808,349.5067508255654,1580209,0,56684,0,0,6521,0,0,62,0.627011662416921,0,0.0,1,0.0104501943736153,0,0.0,0.06077,0.1591087605383044,0.323350337337502,0.01965,0.339735516372796,0.660264483627204,24.275560116059328,4.350244222316631,0.3131672597864768,0.2323634079966506,0.2275486707138371,0.2269206615030354,11.206398463840586,5.762186952891423,20.941600432096426,12303.65548014648,54.42073316244874,13.404982651487428,16.961904417348332,12.121883311049858,11.931962782563112,0.5534854511199497,0.7693693693693694,0.695855614973262,0.5722171113155474,0.1171586715867158,0.7211895910780669,0.9267139479905436,0.8493827160493828,0.6959706959706959,0.180327868852459,0.4877622377622377,0.6724890829694323,0.6388634280476627,0.5307125307125307,0.0988095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0045634317006388,0.0066590872178008,0.008760073576488,0.0110389874654077,0.0129370059489854,0.0151748472827029,0.017418827853788,0.0199552234228524,0.0220177288267447,0.0241646930971201,0.0266176485689933,0.0286590132905402,0.0307483049275601,0.0329586391271586,0.0349982940270267,0.0370830743733167,0.03910579737219,0.0410691071707139,0.0430450461718049,0.0577089796216797,0.0718345982727034,0.084940909758811,0.0974606147985224,0.1098085972946166,0.1254485218624638,0.1376711601740791,0.1495995057730816,0.1607652434136696,0.1719958382048504,0.1856604180133592,0.1980124062225975,0.209376189699244,0.2201594994037916,0.2299229922992299,0.2393945098386614,0.249054414406373,0.2574875207986689,0.2657366451173868,0.2733114183284272,0.2795567072324279,0.286419406528884,0.2922670708171022,0.2979269330839418,0.304054054054054,0.3093733446665928,0.314075130765573,0.3187465822237483,0.3242547688328484,0.3288987922577923,0.3279959094701149,0.3262975635898916,0.3255273935009921,0.3244956605871565,0.3240167015854619,0.3219572746498298,0.3203319239235435,0.3204505155316214,0.3212571526176445,0.3221268010498312,0.3232554216415812,0.3240912866352885,0.3246647108130763,0.325369789332138,0.327116558496393,0.3284524308466052,0.3290816326530612,0.3322067092046244,0.3359760394644115,0.3400047747891135,0.3456925251972454,0.3453314136404842,0.349246710317208,0.3549107142857143,0.3565414814114085,0.3573310972688069,0.3574303405572755,0.3584288052373158,0.3597678916827853,0.3648283841110682,0.0,2.450978823938462,58.86106511239605,174.58945502607628,257.65014817971104,fqhc6_80Compliance_implementation,97 -100000,95700,44330,420.12539184952976,5937,60.73145245559039,4626,47.70114942528736,1792,18.39080459770115,77.3455376358958,79.73141730568015,63.32130932583449,65.08680859974356,77.12718581899146,79.51349342298647,63.24053602990949,65.00835716817465,0.218351816904331,217.9238826936825,0.0807732959249989,78.45143156890799,165.70972,116.04196500982196,173155.40229885056,121255.97179709713,357.3142,232.03155620342105,372708.9446185998,241797.09112165213,363.34966,176.6299749007526,374483.5109717868,180773.62813167225,3281.08872,1499.192713814473,3387298.0668756533,1525606.9744240353,1067.91739,482.0589788161951,1097935.579937304,485886.9238805964,1756.74456,732.5840509270951,1803735.6321839085,738758.2303077397,0.37794,100000,0,753226,7870.700104493208,0,0.0,0,0.0,30493,317.9414838035528,0,0.0,33299,342.8108672936259,1579694,0,56546,0,0,6566,0,0,64,0.6687565308254964,0,0.0,0,0.0,0,0.0,0.05937,0.1570884267344023,0.3018359440795014,0.01792,0.3378378378378378,0.6621621621621622,24.42579974362763,4.250719333632876,0.3354950281020319,0.2356247297881539,0.2103329009943796,0.2185473411154345,11.106220785389782,5.789075728300298,18.99974676122577,12150.506685406694,52.29860221119304,12.977386836370158,17.558829127222484,10.71438303082558,11.04800321677481,0.5570687418936446,0.7688073394495413,0.6868556701030928,0.5806783144912642,0.1068249258160237,0.7409200968523002,0.916243654822335,0.8801955990220048,0.7207207207207207,0.1728971962616822,0.4898139946855624,0.6853448275862069,0.6176727909011374,0.5392809587217043,0.0890840652446675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201856148491,0.0047568335108271,0.0072389461393979,0.009187178601191,0.0114958899650036,0.0135771032796903,0.0158675123901205,0.0179733055564065,0.0199811845549738,0.0220988817433334,0.0243782370134864,0.0263349801255122,0.0284623930217248,0.0306040434433155,0.0323116615067079,0.034292389922152,0.0362869810226236,0.0380895051477914,0.0400574031322143,0.0419883516185832,0.0574707842051946,0.0707064364207221,0.0843898241047814,0.0964470209475312,0.1084296683824149,0.1234518281912699,0.1359372678848072,0.1465908364751741,0.1579476215927311,0.1678705979585046,0.1809284628733414,0.1935242839352428,0.204901886094272,0.2152945681308462,0.2247779624269504,0.2352159173996853,0.2443898900853651,0.2540380635292,0.2623568107065895,0.2701190203707942,0.2770344500595562,0.2839931756567261,0.2900899622891324,0.2952869931542917,0.3009932449640418,0.3059648259746648,0.3107944397956762,0.3152384940424074,0.3201182133777279,0.3252720677146312,0.3246284671924459,0.3238126549678762,0.3231643970237259,0.3224593847217421,0.3212018056686154,0.3195978519558186,0.3176513321015145,0.3176001574958165,0.3187696192165961,0.3195237755247751,0.3201717381929992,0.3204909918827955,0.3216137360676728,0.3228554181850701,0.3240520329894924,0.3259996871904488,0.3270456355980425,0.3292235294117647,0.3315242130326692,0.3331748484488292,0.3349827492282549,0.3373181697963501,0.3383246663742873,0.3379023097311624,0.3403495583536929,0.3426356589147287,0.3446475195822454,0.3466856445709638,0.3480272108843537,0.3481110254433308,0.0,2.40912266993619,53.9170137208246,171.22249577219134,254.31729242402528,fqhc6_80Compliance_implementation,98 -100000,95623,45078,428.5684406471247,6150,63.19609299018018,4843,50.18667057088776,1840,18.99124687575165,77.23812690061078,79.66967964949316,63.25655152000609,65.05435383505471,77.01132063246412,79.44154754783413,63.17198391920072,64.97149079303647,0.2268062681466602,228.1321016590283,0.0845676008053715,82.86304201824635,166.58334,116.69335975827136,174208.44357529047,122034.82400496886,363.9752,235.63070049181425,380171.7682984219,245952.49102393177,370.8919,178.9009729621167,384907.4072137457,184840.96226330573,3438.19892,1563.71685087374,3565967.5810213024,1605683.8949559606,1140.16152,504.4169014631605,1181416.071447246,516571.19256158057,1805.90776,756.4494234176167,1864974.1589366572,769200.3855301451,0.3837,100000,0,757197,7918.565617058657,0,0.0,0,0.0,30999,323.6878156928772,0,0.0,33929,351.97598904029365,1564654,0,56241,0,0,6635,0,0,65,0.6588373090156133,0,0.0,1,0.0104577350637398,0,0.0,0.0615,0.1602814698983581,0.2991869918699187,0.0184,0.3384591488039764,0.6615408511960236,24.24584215666671,4.246422629163396,0.3254181292587239,0.2512905224034689,0.2033863307867024,0.2199050175511047,10.999606238219432,5.614095407673379,19.571384184276265,12380.762067227506,55.08946969869762,14.608076003196109,17.827497587836383,11.026093314908024,11.6278027927571,0.5616353499896758,0.7781429745275267,0.6871827411167513,0.5695431472081218,0.1211267605633802,0.7429443173150267,0.9361233480176212,0.8679706601466992,0.6752136752136753,0.1682242990654205,0.4943374858437146,0.6841415465268676,0.62382176520994,0.5366178428761651,0.1092831962397179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0045642185550698,0.0067013240191698,0.0088226624518463,0.0111443575964826,0.0135497213647523,0.0156356774950277,0.0178870592081068,0.01976147126813,0.0221134247641678,0.0239062628252482,0.0258523252707507,0.0279638949784378,0.0300303086534298,0.0320138795658504,0.0342290698757281,0.0360971159627625,0.0381131448278727,0.0399417061364701,0.0420413528344008,0.0566300075269716,0.0703769294449276,0.0839076354162289,0.0965044392252683,0.1089826176948909,0.1248265562275582,0.1382284828011133,0.1501689387237398,0.1620785945841848,0.1733479419094268,0.1870953819594303,0.1993950498162382,0.2103932614878338,0.2209755883770872,0.2315567898785514,0.2416861774725091,0.2515687393040502,0.2599934598513808,0.2680131004366812,0.2759392798089289,0.2832958158316122,0.290285888505828,0.2959719997627099,0.3019868027259943,0.3074064145057516,0.312409625152942,0.3179718875502008,0.3218492005767586,0.3266393016730749,0.3311276683032701,0.3302727518228463,0.3286968041066401,0.327149512918255,0.3261940644562949,0.3255356850365561,0.324472496084032,0.3223573492522147,0.3227947109288808,0.3229872245562891,0.3234277939886504,0.3240930162722171,0.3254326561324304,0.3276513561172223,0.3294115010532921,0.3309730250481695,0.3328373404338632,0.3342192501143118,0.3379775564241584,0.3404135602757068,0.3421761165663605,0.3449124726477024,0.3497453310696095,0.3506003646193499,0.3540495365445981,0.3555389221556886,0.3554981203007519,0.3575410577067952,0.3595371109337589,0.3624931656642974,0.3558421851289833,0.0,1.784332961971366,58.19571757233869,180.31217924177972,265.30682903883087,fqhc6_80Compliance_implementation,99 -100000,95729,44768,423.5707048020976,5953,61.11000846138579,4679,48.39703747035904,1850,18.949325700675868,77.33641368994157,79.71220713802538,63.332022412709286,65.08959024199622,77.11021120689507,79.48787839117273,63.24811478846526,65.00922306613954,0.2262024830464923,224.3287468526489,0.083907624244027,80.3671758566793,167.53902,117.28840044468588,175013.8620480732,122521.28450593434,360.70373,234.0290833402628,376328.18686082587,244001.883797243,367.50733,178.06233872707273,381277.97219233465,183895.63550547967,2667.87796,1232.788212784811,2759855.801272341,1260738.7654575016,1122.66892,499.3529146549766,1158504.664208338,507379.0853920716,1807.08434,757.9023408806197,1852106.4045378095,760288.329081618,0.38173,100000,0,761541,7955.175547639691,0,0.0,0,0.0,30824,321.5013214386445,0,0.0,33628,348.69266366513807,1568508,0,56363,0,0,6608,0,0,70,0.7312308704781205,0,0.0,0,0.0,0,0.0,0.05953,0.1559479213056348,0.3107676801612632,0.0185,0.3392828429007879,0.6607171570992121,24.270684197397077,4.300728091989864,0.3171617867065612,0.2417183158794614,0.2222697157512289,0.2188501816627484,11.242330802213075,5.917847180922554,19.85088895471109,12275.225585168806,53.35687633551416,13.565494951202275,16.89956938913571,11.678977126873995,11.212834868302169,0.5640094037187433,0.7798408488063661,0.6907008086253369,0.5855769230769231,0.1201171875,0.7515337423312883,0.929440389294404,0.8734793187347932,0.7730769230769231,0.1711711711711711,0.4915555555555556,0.6944444444444444,0.6206896551724138,0.5230769230769231,0.1059850374064838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002128004539743,0.0044219515410906,0.0065079445657139,0.0084051548906415,0.0106812609991556,0.0131688835475526,0.0154702780978798,0.0179089238309168,0.0200280126363571,0.0219785844440349,0.0242939880067654,0.0265086959200016,0.0286392990827197,0.0306320039551746,0.0327933133835517,0.0347921361089864,0.0370481584642306,0.0390285400089219,0.0411266434547627,0.04321875,0.0578296645921223,0.0716497865572947,0.0845681925436526,0.0971227937388964,0.1098006977160864,0.1256314332213133,0.1389080270926301,0.1501998979244641,0.1611526147278548,0.1709780734170978,0.1833188064262732,0.1956164442810493,0.2076252770654961,0.2178642812674072,0.2283149672046495,0.2380541735765616,0.2482592662737714,0.257205460980954,0.2661104750677291,0.2730215004574565,0.2802223197984793,0.286615129504636,0.2938883507760637,0.2985151417255943,0.3036296826301556,0.3100894405964347,0.3151712071982004,0.3196258831901591,0.323548816931655,0.328074294910693,0.3267855940760686,0.3252062757414218,0.3249376312562544,0.3231405675933694,0.3219627628700272,0.32,0.3180852750039626,0.3188901308435795,0.3194328036535929,0.3203954660850288,0.3212231361600869,0.323001856900162,0.3237459733087897,0.3239040713887339,0.3255847461697325,0.327884640412296,0.328851764975113,0.3306922567000221,0.3348693235780365,0.3368911545660918,0.3397603635862828,0.3414333226048707,0.3467613018735213,0.3504741346079716,0.3532758130274011,0.3562567746597615,0.3566131025957972,0.3616026032133415,0.3638600328048114,0.3680424081787202,0.0,1.903680893495089,57.45275602916647,173.23081060117806,253.2580231933536,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95621,44750,424.2268957655745,6157,63.40657386975665,4849,50.25046799343241,1907,19.62957927651876,77.26635035352784,79.7043360267083,63.26822878755484,65.07215976446888,77.03420950826772,79.47122831389784,63.183218462869895,64.98866390342157,0.232140845260119,233.10771281046527,0.0850103246849443,83.49586104731088,165.56144,115.9955106637159,173143.3890045074,121307.56911527374,362.50486,234.6933590833552,378664.10098200187,244999.42385391836,375.80496,181.9013503366709,389529.4757427762,187575.6583035819,2774.9838,1275.7249795721038,2876636.0527499192,1309073.9598997743,1167.15489,518.1395235056622,1205532.163436902,526919.824026889,1870.33642,773.7999987341577,1927151.483460746,785362.9413338676,0.38184,100000,0,752552,7870.154045659427,0,0.0,0,0.0,30828,321.93764967946373,0,0.0,34331,355.6645506740151,1573109,0,56463,0,0,6635,0,0,79,0.82617834994405,0,0.0,0,0.0,0,0.0,0.06157,0.1612455478734548,0.3097287640084457,0.01907,0.3399503722084367,0.6600496277915633,24.403271464884668,4.3473498200290805,0.3099608166632295,0.2458238812126211,0.2221076510620746,0.2221076510620746,11.211516597065913,5.720131872206182,20.184779495422895,12281.509775837598,55.3166773053236,14.520094109997917,17.099576636292976,11.989963699616888,11.7070428594158,0.574138997731491,0.8263422818791947,0.6952761144377911,0.5793871866295265,0.1207056638811513,0.7470414201183432,0.9284210526315788,0.8647342995169082,0.6972111553784861,0.1698113207547169,0.5072919645410352,0.7587168758716876,0.6308539944903582,0.5435835351089588,0.1086705202312138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046259193507481,0.006743375953365,0.0088864486741499,0.011074693104782,0.0131781444601852,0.0154412965382103,0.0175551536331402,0.0194810509945158,0.0217954892457141,0.0241289064504541,0.0262424834249884,0.0284017211916575,0.0305292352741032,0.0326808862263079,0.0345494805678572,0.0367429856655714,0.0388542110237528,0.0409021366943163,0.0429364036459962,0.0571097033180706,0.0713709381647473,0.0847407780858751,0.0979704466702476,0.1099294525177424,0.1255242977587594,0.1381644668324512,0.1494437985942982,0.1614173649682687,0.1713021152255417,0.1839604836013416,0.1956557083861737,0.2072311462020147,0.2175689590955896,0.2274180038793863,0.2373278023026243,0.2468555215477759,0.256319315430952,0.2650533969552374,0.2729733449557278,0.2811515656846396,0.2879490421994286,0.2941232205035886,0.3003320506826818,0.3055987747362279,0.3105056637299178,0.3150094584267692,0.3199016823524916,0.324108982082475,0.3278340174482294,0.3265998707175178,0.3254850694922251,0.3245013522650439,0.3233925733275538,0.3229200725262313,0.3206264639691361,0.318104103343465,0.3185103656733581,0.3196540584887278,0.3202961532271045,0.3219157491263011,0.3227514276649746,0.3241931417044881,0.3248941366253668,0.3262589234034343,0.3277737111785004,0.3283808108803108,0.3322605073835668,0.3360329589070037,0.3388722853157999,0.3432406519654842,0.347242206235012,0.3521269841269841,0.3541128173939486,0.3601496725912067,0.3654050229925716,0.3681880628911616,0.3743932038834951,0.3701067615658363,0.3744343891402715,0.0,1.83688722933704,59.95070506386551,179.61797102637712,261.4498629950587,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95702,44557,422.0496959311195,5981,61.116800066874255,4647,47.95093101502581,1791,18.25458193141209,77.34534288058313,79.7129704918787,63.32656324425341,65.0742144116201,77.11575113599481,79.48961395025711,63.239193195528266,64.9924579959579,0.2295917445883191,223.35654162159813,0.0873700487251412,81.75641566219838,167.618,117.45327827797368,175145.53509853504,122727.90357356548,360.56511,234.0450051264624,376115.4103362521,243913.2569083848,369.22708,178.8831024707882,382887.4736160164,184598.96680828417,2645.72116,1241.9799076521606,2729577.898058557,1263017.3277839937,1112.83159,503.1136720340108,1145021.243025224,508052.6180451863,1750.39762,750.5349510506134,1786014.7959290298,746819.2134602594,0.37937,100000,0,761900,7961.160686297047,0,0.0,0,0.0,30737,320.52621679797704,0,0.0,33806,350.2539131888571,1564680,0,56177,0,0,6603,0,0,63,0.6582934525924223,0,0.0,0,0.0,0,0.0,0.05981,0.1576561140838759,0.299448252800535,0.01791,0.3401848311026131,0.6598151688973869,24.28707685262247,4.322729660898219,0.3232192812567248,0.2418764794491069,0.2229395308801377,0.2119647084140305,11.295701007480686,5.986215075865801,19.203037502991,12261.60044631625,53.01266696883148,13.595844887288614,17.020225281521515,11.552751567503783,10.843845232517555,0.5829567462879277,0.8051601423487544,0.7190412782956058,0.5801158301158301,0.1248730964467005,0.7364457831325302,0.9262672811059908,0.8514150943396226,0.7131474103585658,0.1643835616438356,0.5215426333232901,0.7289855072463768,0.6669758812615956,0.5375796178343949,0.1135770234986945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0045608416273082,0.0070309646524085,0.0091306114158033,0.0113079379283695,0.0135615308647003,0.0157793339653221,0.0180374222920898,0.0200664451827242,0.0219676729212091,0.0241021908286601,0.0263101142980375,0.0285952334420226,0.0304225990563122,0.0325290511672067,0.0346502925427443,0.036393011381878,0.0385130296709112,0.0406970698941501,0.0426336796690184,0.0576734276105529,0.0718846161897385,0.0856735087940225,0.0983637607197348,0.1107933559865769,0.1261404288647573,0.1382612758005606,0.1500564562517309,0.1612651516771062,0.1716550806728458,0.1845964848001551,0.1967468757445149,0.2086067848630293,0.2184991732641284,0.2280823502197548,0.2384516443793937,0.2481774641912183,0.2579174826119251,0.2659482660731724,0.2736095515273735,0.2806373967181244,0.2876842105263157,0.2939561089936318,0.2995086878370281,0.3051242801953495,0.3102058424750401,0.3147366971673196,0.3184719043986778,0.3222433829530879,0.3265217161576667,0.3250694275930869,0.3240730538262354,0.3222942164626829,0.320979435898178,0.3206873465744253,0.318456987846557,0.3167267666223824,0.3175784194827756,0.3183877120087187,0.3182060959977211,0.3192494398805078,0.3215235244303523,0.3208398621121905,0.321872975448473,0.3235046537915775,0.3245120999219359,0.324564884630648,0.3284495954515635,0.3322166387493021,0.3319670515902731,0.333363607465601,0.3365257421027567,0.3410187331620826,0.3445684354361193,0.3442853131142937,0.3489988221436985,0.354290053151101,0.359903381642512,0.3566337719298245,0.3571707698319656,0.0,2.234119130127555,58.11311721184624,171.57076183986652,246.14670472334015,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95671,44574,422.25961890227967,6070,62.192304878176245,4802,49.7015814614669,1911,19.661130332075547,77.2498286400838,79.64859631977897,63.26585613190741,65.03895823307138,77.00857164804859,79.4076049550872,63.17714726695163,64.95282182481567,0.2412569920352183,240.9913646917801,0.0887088649557839,86.13640825571167,167.38436,117.19460439785882,174958.30502451106,122497.52213090574,359.35617,232.59621016049468,375113.3258772251,242619.809065285,366.84467,177.34720387191996,380824.8685599607,183305.34002491145,2762.28392,1263.3583646374825,2859795.5075205653,1293359.014702008,1135.91787,501.0957049600816,1173638.5947674843,510209.0791985843,1876.39328,780.6103154213123,1931743.391414326,789246.4213079646,0.37951,100000,0,760838,7952.650228386867,0,0.0,0,0.0,30681,320.17016650813724,0,0.0,33557,348.06785755349057,1562716,0,56182,0,0,6487,0,0,62,0.6480542693188113,0,0.0,0,0.0,0,0.0,0.0607,0.1599430845037021,0.314827018121911,0.01911,0.3448655448969964,0.6551344551030036,24.471573305689063,4.306692505084529,0.3173677634319033,0.236984589754269,0.2209496043315285,0.224698042482299,11.06588869857119,5.638073540447246,20.329215231658228,12293.607457268445,54.440293111262754,13.57669867000424,17.34970562182153,11.76065748627138,11.753231333165596,0.5603915035401916,0.7803163444639719,0.7093175853018373,0.5711592836946278,0.1075069508804448,0.7209119496855346,0.931472081218274,0.8625954198473282,0.7181467181467182,0.1106194690265486,0.5025495750708215,0.7002688172043011,0.6560565870910698,0.5236907730673317,0.1066822977725674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.004381027716085,0.0066381786624171,0.0087787035155456,0.0112500127147521,0.0134540565864787,0.0158053595464371,0.0181753203655485,0.0205154428308447,0.0225724849192449,0.0247812663473275,0.0269029275808936,0.0288830580850954,0.0307040598620945,0.0328002560422882,0.0348019443582583,0.0367438293992083,0.0387973546786266,0.040761972138703,0.0428635477379599,0.0581560580097797,0.0722670771679599,0.0853808289339728,0.0980311687765045,0.1108249870716494,0.1265174366301529,0.1392449423883608,0.1510811300446519,0.1619863709789573,0.1718426056224554,0.1849146580929158,0.1975624566273421,0.2088058269364968,0.2194207126484684,0.2296681345120242,0.2391702867554745,0.249090563123314,0.2577413787268605,0.2674368313225586,0.2755859375,0.2825274061687105,0.2894279337483848,0.2957970807778253,0.3005112781954887,0.3054384125978109,0.310536730150878,0.3149673530889,0.3187513570817314,0.3231808731808732,0.3267392283043351,0.3252530166065372,0.3237916471140309,0.3222655697848641,0.3215922938548134,0.3205422657042295,0.3186297080762501,0.3168012181002078,0.3179244040563677,0.3192995082163848,0.318844995698308,0.3195434287970815,0.3205204490459756,0.3207677930150996,0.3217709526054646,0.3219954100736804,0.3237243034540332,0.3250547637336064,0.3281186318462551,0.3310569447362891,0.3344307814359381,0.3391268832819023,0.3419119589917032,0.3431458699472759,0.3428375912408759,0.3422459893048128,0.3446647780925401,0.3469543924089379,0.3522333265347746,0.3528925619834711,0.3527175978715317,0.0,1.8629089979137703,56.15962912035514,179.18393201368832,266.3256343068284,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95742,44781,423.3251864385536,6102,62.490860855215054,4819,49.7169476300892,1889,19.301873785799334,77.32698317968122,79.68587254506292,63.31555014592704,65.0608187771409,77.08881284491649,79.45157113798774,63.22629107490722,64.97579454908006,0.2381703347647317,234.3014070751792,0.0892590710198177,85.02422806083132,167.2242,117.16573992902036,174661.04739821603,122376.32297315742,362.5456,235.20666569792323,378022.5084080132,245022.09348367192,371.67038,180.37819532260716,384588.2058030958,185576.8351892232,2745.13116,1271.415999451608,2833959.7250945247,1294808.6221091186,1129.09065,504.8645224221165,1165567.671450356,513586.4331419301,1843.52282,781.545435332426,1886081.552505692,783556.3375878534,0.38157,100000,0,760110,7939.138518100729,0,0.0,0,0.0,30868,321.7501201144743,0,0.0,34100,352.54120448705896,1565748,0,56187,0,0,6601,0,0,61,0.6266842138246538,0,0.0,1,0.0104447368970775,0,0.0,0.06102,0.1599182325654532,0.3095706325794821,0.01889,0.3404654068405435,0.6595345931594565,24.545132129147063,4.259148745938559,0.3243411496161029,0.2398837933181158,0.2234903506951649,0.2122847063706163,11.238203280723498,5.989011855215401,20.293966600185968,12340.716958489978,54.96139981346752,13.921252613356232,17.729838231317288,11.94340455571159,11.366904413082407,0.5777132185100643,0.8088235294117647,0.7114523352527191,0.5784586815227484,0.1114369501466275,0.7343511450381679,0.893719806763285,0.8744292237442922,0.7068273092369478,0.1578947368421052,0.5192362496437731,0.761455525606469,0.648,0.5398550724637681,0.0995085995085995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022693885821386,0.0045223175356411,0.0068509834967419,0.0091433680104031,0.0114111365369946,0.0136143780866554,0.0157543745156422,0.0181901699586587,0.0205328945351225,0.0226305015353121,0.0248129548016808,0.02710027100271,0.0289872949303071,0.0311998022982824,0.0332989478027645,0.0353290071918657,0.0373541500584952,0.039458125012966,0.0415540680996133,0.0435267275776928,0.057816382352327,0.0724799916304859,0.0862960128327444,0.0995101234152597,0.1120667847204654,0.1269930217805032,0.13960123024711,0.1510428311348174,0.1621953826421547,0.1729082810068158,0.1858279259275227,0.198501061387168,0.2095017356010402,0.2197288810599678,0.2293795138277259,0.2401285888482429,0.2494525873625882,0.2584111465290997,0.2669158411342361,0.2741360536420425,0.2803937463810075,0.2878393890411601,0.2938924511976864,0.2991622257429545,0.3052024668231745,0.3104294932695036,0.3161304876367601,0.3201421891523437,0.3238638573743922,0.32840787545062,0.3278065863021079,0.3266469332966201,0.3258556794002846,0.3243997685854787,0.3233457249070632,0.3209213876023679,0.3192018764461631,0.3197083408601974,0.3204306588054345,0.3221314982528703,0.3224755700325732,0.3210644855381697,0.3224959569865372,0.3238005728607232,0.3262124711316397,0.3278380634390651,0.3304771122751082,0.3325799667263082,0.3370219918756128,0.3410978407023649,0.3435474366529169,0.3453305850642144,0.3466449674511768,0.3463484631070161,0.3484749556944315,0.3507042253521126,0.3518602885345482,0.3534621578099839,0.3591374066906276,0.3725868725868725,0.0,2.353361569489825,57.22217297034423,187.21310133770064,255.3684084581014,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95768,45020,426.4994570211344,6207,63.528527274246095,4929,50.96692005680394,1897,19.46370395121544,77.39144353273707,79.7317260240461,63.36142006586866,65.0880151886042,77.15603771557959,79.49557333565396,63.27443700704482,65.00289813240414,0.2354058171574848,236.15268839213851,0.08698305882384,85.11705620006182,166.02102,116.30463854527764,173357.50981538717,121444.1551930474,363.0053,235.38786356851463,378535.78439562273,245278.9173508005,371.9284,179.67071585055686,385819.4386433882,185585.8315047767,2810.20204,1293.162956767205,2905333.890234734,1321565.4908745857,1177.46073,519.4121554615003,1216664.9924818312,529738.4724886321,1858.8265,779.010838724594,1909130.71171999,787409.924624529,0.38223,100000,0,754641,7879.886809790327,0,0.0,0,0.0,30928,322.40414334642054,0,0.0,34068,353.1346587586668,1575371,0,56541,0,0,6541,0,0,71,0.7413749895580988,0,0.0,3,0.031325703784145,0,0.0,0.06207,0.162389137430343,0.3056226840663766,0.01897,0.3329738058551618,0.6670261941448382,24.16901938154411,4.362072006307506,0.3264353824305133,0.2438628525055792,0.208967336173666,0.2207344288902414,11.652835816606082,6.20484968861863,20.110005541433733,12335.555228351908,55.8652411195857,14.425434674418026,18.022755491181275,11.452820475373764,11.964230478612624,0.5715155203895314,0.7936772046589018,0.6960845245494096,0.5951456310679611,0.119485294117647,0.7218844984802432,0.9156908665105388,0.8459657701711492,0.7,0.1652173913043478,0.5167450871851647,0.7264516129032258,0.645,0.5615384615384615,0.1072261072261072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020958205086667,0.0043475176586235,0.0065948337087315,0.0086023907943246,0.0108590659983121,0.0129671850826479,0.0152027715508457,0.0173648662435978,0.0193586613409065,0.0212408938364573,0.0234016393442622,0.0258228003939592,0.0280926007747557,0.030155511871803,0.0322547392509973,0.0345842759304595,0.036502696045455,0.0387056627255756,0.0406224338118353,0.0426063857492577,0.0571270510625861,0.0719457581718494,0.0852470022974518,0.0982763516284743,0.1104984026232826,0.1264169697995093,0.139121305634206,0.1503239465089311,0.1622080543363342,0.1732237039578062,0.1848725926085412,0.1970950542379113,0.209351360751239,0.2198370040202761,0.2298949127203975,0.2401053365347378,0.2495123881279047,0.2586477987421384,0.2670028900096333,0.2736902310684054,0.2807418963425204,0.2873068922803655,0.2934944545605032,0.2998850189239687,0.3058389644421259,0.3110823949295428,0.315259237038148,0.3200752998639006,0.324625417281267,0.3291109207144269,0.3286194380965183,0.3281052573751579,0.3269133442051397,0.3261223607407941,0.3259291091221623,0.3242352582195438,0.3222783212369833,0.3227009520070664,0.323651593571234,0.3237901933554107,0.3249087335018253,0.3257008514925815,0.3269843265442964,0.3283191189308979,0.3295490153542073,0.3296927257525083,0.3317565257038641,0.3337952755905511,0.336209021444417,0.3391435848455906,0.343685679001052,0.3450561197220738,0.3487900671481059,0.353053580982955,0.3527644794893457,0.3538334901222953,0.3584423394978199,0.3573141486810551,0.358358088036727,0.3670552839413313,0.0,1.857444216180412,58.05507705204532,186.5861113056617,267.8337625817025,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95728,44900,424.5988634464316,6174,63.32525488885175,4821,49.77644994150092,1862,19.16889520307538,77.37264048070351,79.73247834941566,63.34029949113111,65.08198492584387,77.14203020070568,79.50038681265245,63.255961959623136,64.99897658608828,0.2306102799978333,232.0915367632068,0.0843375315079768,83.00833975559385,167.2352,117.18382596281248,174698.31188367042,122413.3231267889,363.42945,236.0657624301421,379088.5425371887,246041.0668040093,378.46335,183.40934098644965,390835.2206251045,188242.7571002624,2744.53704,1269.8809876747418,2835413.3377904063,1294948.6332888417,1131.37825,501.21227750630527,1168274.621845228,509986.5843915112,1818.11372,758.6872630434165,1872672.2589002168,770269.5789314607,0.38238,100000,0,760160,7940.832358348655,0,0.0,0,0.0,30893,322.131455791409,0,0.0,34600,357.01153267591513,1565072,0,56184,0,0,6616,0,0,75,0.7730235667725222,0,0.0,0,0.0,0,0.0,0.06174,0.1614624195826141,0.3015873015873015,0.01862,0.3343099460292983,0.6656900539707016,24.52986645259169,4.248015473347772,0.3269031321302634,0.2466293300145198,0.2117817880107861,0.2146857498444306,11.198446682870888,5.761529701796628,19.715608121030627,12380.11073063327,54.7102858152479,14.1844137345818,17.96070455221274,11.32043644403417,11.244731084419184,0.5691765193943166,0.7788057190916736,0.6986040609137056,0.5905974534769833,0.1101449275362318,0.7387387387387387,0.9232505643340858,0.864406779661017,0.7411764705882353,0.1312217194570135,0.5044425336772714,0.693029490616622,0.6397248495270851,0.5404699738903395,0.1044226044226044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607594936708,0.004621324982518,0.0065836858496403,0.0089880565485862,0.01120499445851,0.0131726286214548,0.015463181929381,0.018117236381452,0.0201474000551983,0.0222847783805916,0.0244117496283385,0.0267553721214361,0.0291099411837288,0.0309886714727085,0.0331063654183431,0.0351392132950247,0.0371984677502847,0.0392162963884913,0.0414371531314307,0.0436602995396504,0.0585643435134429,0.0723837026806453,0.0859841892260269,0.0985758579010983,0.1114414015558788,0.1272702285557223,0.140590531138639,0.1523638259611189,0.163119734327115,0.1737727068007806,0.1866553235480987,0.1992383590098667,0.21143577976663,0.2223461609964677,0.2324033532090915,0.241824707550514,0.2513002522377732,0.2604613462123003,0.2689328548064692,0.2767013665963496,0.282875396402861,0.2889440179741621,0.2949454506686883,0.2997828356149591,0.3055332701237449,0.3108907960935188,0.316107063271489,0.3197806811098248,0.3241427517377966,0.3277858367400765,0.3273206623353913,0.3265791463330813,0.3252990009849444,0.3250209374187772,0.3252543253879854,0.3233641998928598,0.3208847850490932,0.3214373615555008,0.3227428454550103,0.3231908041068346,0.3247140911550157,0.3246625477155562,0.3251296420207427,0.324857938718663,0.326001533448342,0.3276765789610255,0.3288172103965307,0.3308258942505774,0.3342849185350229,0.3382439599292869,0.341354401805869,0.3437137126570252,0.3472606182457904,0.3497764643479579,0.351063829787234,0.3521426041789635,0.355074672355989,0.3586540398952246,0.3598682404611584,0.3668322506687046,0.0,2.3192070426131712,58.20507350662713,177.08850413448155,261.82657790828864,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95730,44402,420.1817612033845,6028,61.56899613496292,4712,48.49054632821477,1816,18.46860963125457,77.33281654085012,79.70042712107235,63.319784280511655,65.07178997353434,77.10075759317526,79.47136867679909,63.233130145735934,64.9887872620946,0.232058947674858,229.0584442732637,0.0866541347757205,83.00271143973248,167.04556,116.94118079032413,174496.3334377938,122157.08764469244,358.49687,232.27206755882477,373739.4338242975,241885.70771571575,364.41757,176.8174938748762,376292.6773216338,181222.1610084881,2734.32044,1264.0253078375977,2817318.0403217385,1281513.9344381045,1137.36191,511.5779795008536,1170447.8324454194,516790.17412778887,1787.31346,758.4373118215613,1821801.8385041263,755992.3112648965,0.37847,100000,0,759298,7931.651519899718,0,0.0,0,0.0,30497,317.81050872244856,0,0.0,33361,344.050976705317,1571018,0,56442,0,0,6537,0,0,73,0.7625613705212577,0,0.0,1,0.010446046171524,0,0.0,0.06028,0.1592728617856104,0.3012607830126078,0.01816,0.3398734177215189,0.660126582278481,24.37423724352758,4.415364889317742,0.3230050933786078,0.2349320882852292,0.213497453310696,0.2285653650254669,11.294437069210176,5.871958839591694,19.42013792982986,12185.396951664874,53.3976183253767,13.336757429116036,17.07251243367096,11.176056547955689,11.812291914634027,0.5606960950764007,0.7813911472448057,0.7174770039421814,0.5576540755467196,0.1151346332404828,0.7421630094043887,0.9093023255813952,0.8888888888888888,0.7021276595744681,0.2098214285714285,0.4933061699650756,0.7001477104874446,0.6590308370044052,0.5136186770428015,0.0902696365767878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023001550324757,0.0045439331392695,0.0067722611432632,0.008995639401917,0.0114149676474178,0.0136183996088657,0.0157048307651515,0.017753956100051,0.0197646240835983,0.021953716977268,0.0242267037124373,0.0263892882079927,0.0288825368100682,0.0308959835221421,0.0328405022543668,0.0346260387811634,0.0365886495443247,0.038428808634288,0.0407399319961318,0.0426919470778206,0.0571365933102267,0.0712589322145614,0.0845182668512226,0.0969291744199493,0.109103749222645,0.1257018387911983,0.1378787396731464,0.1491229937417514,0.1597667264803896,0.1704452833426279,0.1834401076716016,0.1956418246342941,0.2069730517432629,0.2170708771622892,0.2257301578571035,0.235513666770035,0.2458450995055417,0.2548940146116871,0.2626410553322889,0.2701254080054973,0.277105086472345,0.2843343870741131,0.291173578781525,0.2975228411788686,0.3030155701141322,0.3082037996545768,0.3125665401620762,0.3168418908942799,0.3210231690250349,0.3246952226228685,0.3239470776858613,0.3234427493528666,0.321699523366331,0.3205154162087117,0.3198363095238095,0.317990285460368,0.3157703085667241,0.3165053322395406,0.3164289127022046,0.3173635618293943,0.3186095676413912,0.3189828901094559,0.3208458835341365,0.3210898623167385,0.3216558215477705,0.3243151755025518,0.3255866940077466,0.3276891178688113,0.3305049088359046,0.3330157974120822,0.3365047571357035,0.3385056860452758,0.3410233844606487,0.3449977227873083,0.3480657820968043,0.3514214934528725,0.3502360286279884,0.348219674109837,0.348052660449808,0.3510188389081122,0.0,2.862560100973135,55.02181238096097,177.23565916016102,254.4547364510183,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95778,44826,425.2646745599198,6014,61.50681784961056,4746,48.94652216584184,1895,19.336382050157656,77.34910350822409,79.67762450796953,63.34642956891118,65.06683965992659,77.11005308548305,79.44322917122413,63.257184328342845,64.98243744534392,0.2390504227410446,234.39533674539348,0.0892452405683315,84.40221458266706,168.14578,117.82160862724584,175557.83165236274,123015.31523653225,366.0152,237.3098683028587,381536.72033243545,247157.941223724,373.81768,181.2212334867328,386978.721627096,186633.515205153,2709.73752,1252.427249049918,2795608.928981603,1274104.7747221177,1142.98045,509.87601446680776,1177316.3252521455,516339.2995916228,1853.3457,780.7381675111252,1893357.5142517071,778986.9718667776,0.38099,100000,0,764299,7979.901438743761,0,0.0,0,0.0,31197,325.0955334210361,0,0.0,34181,353.6198291883313,1561171,0,56064,0,0,6688,0,0,72,0.7412975839963248,0,0.0,0,0.0,0,0.0,0.06014,0.1578519121236777,0.3150981044230129,0.01895,0.3362916006339144,0.6637083993660856,24.439834706852352,4.238017671079369,0.3128950695322376,0.2408343868520859,0.2225031605562579,0.2237673830594184,11.129717223751827,5.908032018839327,20.21412791173835,12230.36408531402,53.965022429965785,13.767181643000749,16.900337424860652,11.640378239495542,11.65712512260884,0.5598398651495997,0.773403324584427,0.6976430976430976,0.5823863636363636,0.1148775894538606,0.734958111195735,0.9002375296912114,0.8747044917257684,0.7429718875502008,0.1409090909090909,0.4928633847946402,0.6994459833795014,0.6271186440677966,0.5328376703841388,0.1080760095011876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0044800778438865,0.0066246664840571,0.0088571979969731,0.0111339325659901,0.0132945152489922,0.0154813591797631,0.0177680257182221,0.0197611092378587,0.0219969102014507,0.0240341764760119,0.0260130732368061,0.0281074970453727,0.0300341718473383,0.0319723682853902,0.034353825813915,0.0364859271523178,0.0384491751262456,0.0400469673826075,0.0419873163315248,0.0567406232389221,0.070807011672175,0.0832485819432358,0.0960663352705642,0.1079298171663417,0.1236169965444727,0.1364566219725475,0.1482820591894679,0.1599594472013233,0.1706574957948981,0.1838190976407783,0.196130595118364,0.2081004675437642,0.2179014708294603,0.2276663402396487,0.2383921846617341,0.2480746478558832,0.2572784418680491,0.2656902341622799,0.2729364625071551,0.2796423945225759,0.2861488423244767,0.2929542791539927,0.2985777447609005,0.304080641243624,0.3091413425383714,0.3144008610978998,0.3185249303071576,0.3224004768816089,0.3254569949281488,0.3241258505692919,0.3234010327022375,0.3221344151910859,0.3210493622062031,0.321326226076111,0.3194614443084455,0.3174851720047449,0.3183301894529648,0.3194913807817033,0.3207193370955068,0.3214633598081822,0.3232617040642684,0.3245672855286869,0.3246692188864262,0.3253340408084511,0.3247089601046435,0.3258928571428571,0.328977758091562,0.3331451157538114,0.3346381211056079,0.3396295449348273,0.344206374586931,0.3471347707180564,0.3495175371419819,0.3544015919643703,0.3588327128617749,0.3551343793692714,0.3569085690856908,0.3553398058252427,0.358019801980198,0.0,2.323350025687001,57.40474647578278,172.34640460170053,261.40649944529645,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95665,44701,422.6728688653112,6169,63.19970731197407,4853,50.13327758323315,1906,19.589191449328386,77.31532774038504,79.70808390666815,63.31028192710126,65.07663193614601,77.07194885624325,79.46382783770916,63.22017489349391,64.98835195410625,0.2433788841417907,244.2560689589897,0.090107033607353,88.27998203976506,166.83788,116.86337465197292,174398.03480896878,122158.96582028216,360.00502,233.52062842526175,375735.1800554016,243519.51490456585,372.31769,180.47340815396493,385262.96973814873,185708.26854059752,2777.42656,1288.328545266259,2870643.516437568,1314093.2134546996,1168.53688,523.645815635981,1206529.3576543145,532435.6966881246,1874.12208,792.4312054266339,1927188.9405738772,801751.1149217105,0.38163,100000,0,758354,7927.183400407672,0,0.0,0,0.0,30750,320.81743584383,0,0.0,34137,352.8563215387028,1568140,0,56289,0,0,6661,0,0,65,0.6794543458945277,0,0.0,2,0.0209062875659854,0,0.0,0.06169,0.1616487173440243,0.3089641757172962,0.01906,0.331839258114374,0.668160741885626,24.343943884636406,4.2892041942195895,0.3156810220482176,0.2398516381619616,0.2169791881310529,0.2274881516587677,10.916627755891328,5.658434294495857,20.246727591514297,12303.109360298356,55.20474199528427,13.93036977075482,17.39277133809295,11.723880276146158,12.157720610290353,0.5627446940037091,0.7981099656357389,0.6899477806788512,0.5745489078822412,0.1268115942028985,0.7186796699174793,0.9404761904761904,0.8694581280788177,0.6707317073170732,0.1724137931034483,0.5036931818181818,0.717741935483871,0.6252220248667851,0.5452292441140025,0.1126927639383155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211358064712,0.0046837932642592,0.007174896994053,0.0095198423180866,0.01165771484375,0.013842627960275,0.0161867751904776,0.0183547148226834,0.0206270964574981,0.0227745179359569,0.0248910312291677,0.0271391884951207,0.0291445913276066,0.0314071387354711,0.0334640792733278,0.0358262056697245,0.0376529586687803,0.0396574987026466,0.0415864859523388,0.0437320215116521,0.0580792778485905,0.07202387184588,0.0852722941133255,0.0977313860010943,0.1103829634554299,0.1261299405127336,0.1382598078250252,0.1500298227675528,0.1614885590005023,0.1723349681795254,0.1854294643819377,0.1985145245287513,0.2101298616478169,0.2201138104618078,0.2297516109489453,0.2396636455409737,0.2487543291252374,0.2578488208476389,0.2664849826832453,0.2739361702127659,0.2807417875179539,0.2876025897697072,0.2942527918901955,0.2996411555032824,0.3043837580972521,0.3097780517879162,0.3144778530549885,0.3178110085905186,0.3224319635412621,0.3270401225195727,0.3254670599803343,0.3236124306387432,0.3227196552549677,0.3221794834716719,0.3209159261790841,0.3203436026214246,0.3184285058780715,0.319316580938964,0.3199733938225914,0.3209225230363413,0.3212684057104417,0.3227811877084608,0.3242580996460659,0.3246312025033527,0.3260440723633564,0.3251479367065509,0.326672384219554,0.3301788257635701,0.3313178459036102,0.3333066709326507,0.3363761467889908,0.3383390337751176,0.3394740185491043,0.3421560305579134,0.3444953253195955,0.3485686793360597,0.3477793145842938,0.3468731148200281,0.3445889842236369,0.3557508597630875,0.0,2.3159029063352468,58.25815475842404,181.29954722916452,262.7399192089243,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95620,45027,426.7621836435892,6052,61.97448232587325,4795,49.49801296799833,1908,19.47291361639824,77.3146043072854,79.73351971113438,63.296484254502126,65.08292984880273,77.07001919892473,79.49162646393991,63.2054930849363,64.99535320630584,0.2445851083606811,241.8932471944686,0.0909911695658252,87.57664249689867,167.49546,117.28092441534942,175167.81008157288,122653.13157848715,362.71201,234.5603908779609,378679.8891445304,244665.9776148668,368.26713,178.05394239504062,381453.7962769295,183291.0854638217,2743.18272,1256.8647577452664,2833957.0382765112,1280194.330191685,1130.97783,492.9481131823433,1168255.9401798788,501030.8741725217,1867.88146,789.5663644262253,1910186.550930768,791626.6726651245,0.38325,100000,0,761343,7962.17318552604,0,0.0,0,0.0,30914,322.62079062957537,0,0.0,33677,348.46266471449485,1565399,0,56165,0,0,6608,0,0,72,0.7529805480025099,0,0.0,0,0.0,0,0.0,0.06052,0.1579125896934116,0.3152676801057502,0.01908,0.3277191877852983,0.6722808122147017,24.31310013764808,4.380403124353503,0.3236704900938477,0.2300312825860271,0.2248175182481751,0.2214807090719499,11.28298731857145,5.867674862021744,20.498931026459065,12306.873940563311,54.23446255750432,13.168016693588235,17.528052771929133,12.013082891672427,11.525310200314529,0.5632950990615224,0.7878513145965549,0.7190721649484536,0.5677179962894249,0.0979284369114877,0.7170393215111797,0.9112709832134293,0.8480392156862745,0.7038461538461539,0.0990566037735849,0.5062893081761006,0.7128279883381924,0.6730769230769231,0.5244498777506112,0.0976470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0042287371591404,0.0064664798798067,0.0087689884672052,0.0113118489583333,0.0135872886534935,0.0155649167185157,0.0178363469200122,0.0200161602111055,0.0218942970374087,0.0240102564102564,0.0264406779661016,0.0286507895684378,0.0308381845345422,0.0330308942082391,0.035030760481828,0.0371245324464061,0.0391607229991382,0.0411815504989023,0.0430846570227678,0.0574038652493388,0.070363813494516,0.0838618893602721,0.0968757236994463,0.1091582747482424,0.1248544018297719,0.1376720768184908,0.1494154882298404,0.1608369167575893,0.1711498796837401,0.1841279088584652,0.1967353486305156,0.2084027936673966,0.219577125328659,0.2289606825171125,0.2391601096474191,0.2489690087955564,0.2573102710011831,0.2651303379468648,0.2732768212528246,0.2801806496439117,0.2878373001942474,0.2938021665778725,0.2996498968874394,0.3046726020575482,0.3108785940523286,0.3167896909796071,0.3209889103672805,0.3258613102787772,0.3303380571609532,0.3293930744789703,0.3282176107375166,0.3270864743761361,0.3251645569620253,0.3242692147407275,0.3220050325273106,0.3198064567303879,0.3207292370020256,0.321867279714521,0.3225165562913907,0.3231855820750122,0.3243184640555084,0.3249556413735518,0.3252431516016775,0.3261343229977254,0.3277014770665976,0.3295812186339278,0.3303047333583114,0.3347289093573372,0.3383666693019211,0.3397029523637022,0.3416221363948997,0.3443005999368487,0.3450822168087697,0.3472248353715898,0.3494019138755981,0.3502561714019562,0.3445034736411933,0.3500275178866263,0.3467961165048543,0.0,2.522669793898,56.64372239178267,173.14810912462292,266.5718455623129,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95647,44799,423.5365458404341,6001,61.51787301222202,4739,48.97173983501835,1904,19.530147312513723,77.29129418892526,79.69059948935661,63.29829466637945,65.0697280508618,77.05041879673735,79.45321554772008,63.20856534898073,64.98428003048984,0.2408753921879167,237.3839416365371,0.0897293173987208,85.44802037195609,166.37016,116.61263179572936,173941.84867272366,121919.8007211197,359.49482,233.02849526867607,375281.14838939015,243059.2023468338,367.88048,178.0052547887871,381363.8587723608,183576.54174121312,2745.94492,1266.403280042562,2839975.660501637,1293098.455824606,1146.58532,508.62612833545455,1184671.1240289814,517677.7090085986,1870.43728,790.5831282617646,1920276.7467876675,794474.3250967761,0.38152,100000,0,756228,7906.447666941984,0,0.0,0,0.0,30634,319.68592846613063,0,0.0,33701,349.1170658776543,1570104,0,56343,0,0,6575,0,0,60,0.6273066588601838,0,0.0,1,0.010455110981003,0,0.0,0.06001,0.157291885091214,0.3172804532577903,0.01904,0.3253184713375796,0.6746815286624204,24.536407525108743,4.423095631201303,0.3277062671449673,0.2213547161848491,0.2202996412745305,0.2306393753956531,11.188788333867867,5.772962273347594,20.417960754692857,12321.013419536268,54.03313485660421,12.668257090428051,17.503192625028255,11.707553410750004,12.154131730397914,0.5638320320742772,0.797902764537655,0.6954282034771411,0.5986590038314177,0.1189387008234217,0.7368012422360248,0.91871921182266,0.8663484486873508,0.7542372881355932,0.1541850220264317,0.4992755722978846,0.7216174183514774,0.6322751322751323,0.5532178217821783,0.1096997690531177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027146662885041,0.0048970901348474,0.0071759893628898,0.0092673508789757,0.0114560123716794,0.0135153027448184,0.0156616432489752,0.0178487552841709,0.0203459839685915,0.0226076628509409,0.0246328656985806,0.0268063472500385,0.0288153901548274,0.0312016981637573,0.0334892171740634,0.0359625170659054,0.0380549682875264,0.0398712490914754,0.0420369175701829,0.0440077151644685,0.0584393190439862,0.0724019818366556,0.0853773783023226,0.098437960506926,0.1105892534855984,0.1265281497083946,0.1386122847618845,0.1506252529771415,0.1617151837162314,0.1716711934642347,0.183906930607668,0.1967665785940139,0.2085991074344182,0.2183376947586252,0.2293804490394259,0.2400594492075287,0.249273807927783,0.2577823311529671,0.2659869197928967,0.2735107382704164,0.2809855159717961,0.2868125438801778,0.2932878513307039,0.2980869565217391,0.3041373774718459,0.310125254519652,0.3149716806175129,0.3200132521216137,0.3246498962655602,0.3293421869018231,0.3289057132464873,0.3280027548209366,0.3267261081797917,0.3249916776425294,0.3233590877287005,0.3211405220223373,0.3192813154720335,0.3205271828665568,0.3212613817583209,0.3211462981880746,0.3220061681961787,0.3220524017467249,0.322776025236593,0.3232425159771275,0.3253530954500613,0.3264938992595682,0.3273300570974065,0.3314719538210566,0.3339304531085353,0.3355848696757788,0.3399052909571077,0.3402700555996822,0.3436159475145092,0.3454141445099992,0.34935532802427,0.3506540261610464,0.3534536403235843,0.3542619542619543,0.3577235772357723,0.351673720661793,0.0,2.261992558424549,56.50493558274006,177.45503033734775,259.4887776788197,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95643,44582,422.4877931474337,6012,61.81320117520362,4757,49.27699883943414,1865,19.16501991781939,77.27514686010801,79.68539313367283,63.27600815666828,65.05619684528652,77.0421208610274,79.4540635554129,63.19005741009645,64.9731152595584,0.2330259990806098,231.3295782599312,0.0859507465718323,83.08158572812374,166.50788,116.64183256815664,174093.1171125958,121955.43068301564,358.12671,232.14273955850936,373976.495927564,242253.34792772008,370.42668,179.04911386524591,384698.2737889861,185194.3814926548,2720.72272,1256.6904978832697,2817346.4236797257,1286620.471841399,1131.79419,505.9726777220987,1168121.4202816724,513799.4669768337,1825.43614,769.4405674774882,1876489.9469903703,776888.7002341023,0.37868,100000,0,756854,7913.323505117991,0,0.0,0,0.0,30386,317.2213335006221,0,0.0,33822,351.04503204625536,1569471,0,56306,0,0,6554,0,0,77,0.8050772142237278,0,0.0,0,0.0,0,0.0,0.06012,0.1587620154219921,0.3102129075182967,0.01865,0.3302562470157568,0.6697437529842432,24.467948211536665,4.311791932959062,0.3258356106789993,0.2375446710111415,0.2203069161236073,0.2163128021862518,11.108795630920437,5.685821316443283,20.025321242642992,12238.939911501897,54.18195697323506,13.636839335055614,17.58756510420962,11.661425932500515,11.296126601469313,0.5600168173218415,0.7690265486725664,0.6987096774193549,0.5648854961832062,0.1166180758017492,0.7333333333333333,0.9090909090909092,0.8669833729216152,0.7396694214876033,0.1435185185185185,0.4965537047673751,0.6934604904632152,0.6359610274579274,0.5124069478908189,0.1094710947109471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594458846403,0.0046420644010419,0.006808381106996,0.0089588623666835,0.0110558488186413,0.0130051328010428,0.0153566912754415,0.0176823105430266,0.0196599633995481,0.0218811435124508,0.0238478660006359,0.0258881058535883,0.0281493065558253,0.0303455100189659,0.0326208178438661,0.0346971499508612,0.0367544932523476,0.0389033129089209,0.0407296793864532,0.0426734521487939,0.057254541273856,0.0716815457479358,0.084877515862011,0.0978898686303635,0.1097836650188025,0.1249139455818337,0.1375224492832169,0.1490922271617573,0.1608142384708413,0.1709047137974765,0.1836091410559495,0.1959619179805252,0.2077992850292091,0.2182579711416166,0.2276839898488359,0.2381269714336487,0.2470093217399089,0.2563043699014995,0.2645786862111349,0.2728410656867248,0.27956615045531,0.286146556577219,0.2924977159739443,0.2987016106753786,0.3044890510948905,0.3093780848963475,0.3148763335046571,0.318989340702724,0.3227200186835857,0.3258949817566495,0.3246334587733851,0.3237406105712907,0.3231693557486178,0.3218804679478836,0.321550147909203,0.3197530107559832,0.3167125716275683,0.3160867637641418,0.317150944683173,0.3181672369546621,0.3189109170632987,0.3205118079140668,0.3213635126363617,0.3232849162011173,0.3241840119213575,0.3250878791823981,0.3263709057795737,0.3309341211968821,0.3337665074459118,0.3372259294566254,0.3412958412958413,0.3440208433030254,0.3472004021868912,0.3481391647085575,0.3540022547914317,0.3536003814973772,0.3549677022454629,0.3574485428979009,0.3510373443983402,0.3551114527286702,0.0,1.7382603374047445,56.46933501801959,183.8604478800368,255.25336425345,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95682,44681,423.2980079847829,6084,62.352375577433584,4731,48.82841077736669,1886,19.35578269684998,77.28391542799022,79.68216632456375,63.28504443165552,65.05990744000259,77.04449288074991,79.44228143153327,63.19583672845563,64.9726332707862,0.2394225472403093,239.884893030478,0.0892077031998894,87.27416921638564,165.1826,115.73416096369778,172637.06862314753,120957.0880246,361.93851,234.76296269803092,377650.184987772,244735.37624425796,366.05282,177.55512058112882,378068.8530758137,182193.1415538699,2740.72412,1261.325911526969,2830998.056060701,1284836.5957306155,1152.56991,509.636844598798,1188088.428335528,516150.7993451817,1853.8926,781.0037938018943,1904315.0017767183,788422.4593709314,0.38021,100000,0,750830,7847.139482870341,0,0.0,0,0.0,30873,322.0145899960285,0,0.0,33525,346.0211952091302,1574689,0,56479,0,0,6539,0,0,55,0.5643694738822349,0,0.0,1,0.0104512865533747,0,0.0,0.06084,0.1600168328029247,0.3099934253780407,0.01886,0.3298306148055207,0.6701693851944793,24.64145940983042,4.384395108774708,0.3090255759881631,0.2411752272246882,0.2187698161065314,0.2310293806806172,11.646440394724754,6.181613866887106,19.964418447740243,12281.948135606406,53.76802150237972,13.711778274278515,16.62457680074051,11.46170439102882,11.96996203633188,0.5580215599239061,0.7800175284837861,0.6846785225718194,0.58743961352657,0.1290027447392497,0.7321156773211568,0.9019607843137256,0.8785529715762274,0.7272727272727273,0.1687763713080168,0.4910740415569213,0.6979472140762464,0.6148837209302326,0.5472636815920398,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.004635264524505,0.006903763566403,0.0092275485005233,0.0113854888434418,0.0138130551707277,0.0160538528226834,0.0183233239367569,0.0202710304270007,0.0226597553729844,0.0245809138847282,0.026714890468949,0.028791636225188,0.0306184493935053,0.032732227463691,0.0347263156806171,0.036969879081141,0.0387585634212165,0.0408570834200124,0.0427296981824245,0.0580591246213308,0.072050001570401,0.0854042481739568,0.0985215973062555,0.1107874489440521,0.1261961216021678,0.1383352623251961,0.1502177918357349,0.1607123767985804,0.1710516428901126,0.1833901082316416,0.1959154929577465,0.2070024503130955,0.2176075003833432,0.2282712933058498,0.2385641959408447,0.2484009482488706,0.2575419372294372,0.2667788286649691,0.2743680653563273,0.2816638448871674,0.2880393996247655,0.2946655276334211,0.2998763074779935,0.3050300684147737,0.3098315126828365,0.3145789988218484,0.3191641091599068,0.3229748467609211,0.3270035234035814,0.3256089674498814,0.3252036996256331,0.3241013221441545,0.3224944770925683,0.3205555225123416,0.3189238905495516,0.316906987799081,0.317447297186449,0.3181724951287047,0.3198013079369617,0.3207823410165928,0.3216261774913238,0.3223231025257526,0.3233713373361218,0.3253639512632318,0.3270404021889974,0.3289391086001255,0.3303777097598687,0.3344574419503284,0.3367957816278793,0.3405882888625808,0.3423409102951306,0.344784431512421,0.3483618875864142,0.3462433665394283,0.3461946902654867,0.348163949413378,0.3493927125506073,0.3537775299693337,0.3594292325491708,0.0,2.3574182772964725,57.60623102900571,170.1989611617468,260.55424232219247,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95656,44641,422.2003847118842,6101,62.63067659111817,4787,49.45847620640629,1844,18.890608012043156,77.35161970545354,79.75642504851271,63.31721993396855,65.09372037091008,77.12084623795626,79.52692111825971,63.23142831180708,65.01052262572601,0.2307734674972863,229.5039302530029,0.0857916221614729,83.19774518406575,167.26006,117.06825273325,174855.79576816928,122384.6415627352,360.30235,233.40896464300064,376023.260433219,243367.3001620396,365.7864,177.28197983372272,378354.7085389312,182234.2276545764,2752.93332,1263.5357029527474,2845469.766663879,1288434.5393417529,1131.2024,498.548061357808,1165551.0056870454,504184.5423247767,1809.85766,758.5257236134692,1855659.0490925815,763446.0652379177,0.37986,100000,0,760273,7947.990716734967,0,0.0,0,0.0,30712,320.45036380362967,0,0.0,33526,346.5020490089487,1569203,0,56278,0,0,6596,0,0,71,0.7213347829723175,0,0.0,0,0.0,0,0.0,0.06101,0.1606118043489706,0.3022455335190952,0.01844,0.325879593432369,0.674120406567631,24.529794367974585,4.419401627499554,0.3194067265510758,0.2389805723835387,0.2199707541257572,0.2216419469396281,11.226677680733,5.7828591818705215,19.610759759958576,12273.56863526621,53.96472037246424,13.622503988584882,17.12585172579327,11.645140865084729,11.571223793001352,0.5629830791727596,0.7814685314685315,0.6873773708306082,0.5954415954415955,0.1159283694627709,0.735686274509804,0.9369158878504672,0.8632911392405064,0.7154811715481172,0.1173708920187793,0.5002847380410023,0.6885474860335196,0.6261022927689595,0.5601965601965602,0.115566037735849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897437715929,0.0044415149825077,0.0066170052976637,0.0087681866211493,0.0111383494898737,0.0134650641678549,0.0156324886554836,0.018094372568441,0.0201942740286298,0.022380415855782,0.0244783224244413,0.0266148755574737,0.0288451643443719,0.0308147506675326,0.0328774763980416,0.03504179771561,0.0371257112651969,0.0392305456357445,0.0413658211781352,0.0436056514258902,0.0583471782493756,0.0719214298428387,0.0847336657045395,0.0975314617618586,0.1100276493805272,0.1255186282811177,0.1379822903616248,0.1498779616938277,0.1614708147894556,0.1712392753981122,0.1837111000884211,0.1959116907877632,0.207511021607794,0.2171566803126163,0.2269453560337422,0.2380662040219054,0.2471956560600643,0.2557835841898479,0.2643612914944825,0.2729511200696321,0.2802517556951627,0.2868231553352661,0.2929509166173861,0.298551974417017,0.3042306852108061,0.3099250360048745,0.3146875858795313,0.3192578293667928,0.3244503578164156,0.3286693957063694,0.3273338261979971,0.3262562313745417,0.3250685605794248,0.3239761695252658,0.323139245014245,0.3208498929990828,0.3189933013144591,0.3189529413693062,0.3197133839460889,0.3190419289828967,0.3188226703364601,0.3199353108236036,0.3208699289000418,0.3210577908479258,0.3224532771782047,0.3258485233489771,0.3278121277440581,0.3329679964927663,0.335628167045256,0.3368250454581389,0.340149625935162,0.3449490171344476,0.3473244355744044,0.3501246129446416,0.35133370639806,0.3582639714625446,0.3599386032233307,0.3605730427764326,0.3590712742980561,0.3624388407978923,0.0,2.258932433418273,55.70757642320388,174.6296460105622,266.0668998254994,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95793,44870,424.8118338500725,6099,62.572421784472766,4760,49.12676291587068,1841,18.86359128537576,77.3507064425629,79.67790839909068,63.34838135415546,65.06958801732175,77.12303447801139,79.45198277738811,63.2639390027529,64.98815400580779,0.2276719645515044,225.92562170257224,0.0844423514025578,81.4340115139629,167.54958,117.32731536965548,174907.72812209665,122479.82145841076,362.02712,234.2276160441457,377381.4266178113,243969.27337503337,368.10793,177.75874967249308,380533.5254141743,182733.7086379039,2731.68764,1249.8792935175263,2820828.244234965,1273942.410737242,1115.53379,492.5327201908218,1150235.163320911,499933.5098961944,1800.88766,753.1993533107769,1846750.889939766,758505.6790520626,0.38231,100000,0,761589,7950.351278277118,0,0.0,0,0.0,30847,321.44311170962385,0,0.0,33710,348.188280980865,1569966,0,56366,0,0,6755,0,0,57,0.5845938638522648,0,0.0,1,0.010439176140219,0,0.0,0.06099,0.1595302241636368,0.3018527627479915,0.01841,0.3201947236180904,0.6798052763819096,24.63137053764904,4.275297020226852,0.3279411764705882,0.232563025210084,0.21890756302521,0.2205882352941176,11.101568462268448,5.881866600634889,19.81089436922604,12300.572120581905,54.09712984704242,13.287745710641214,17.678665191994167,11.645043080360034,11.485675864046998,0.569327731092437,0.7886178861788617,0.6931454196028187,0.6065259117082533,0.1171428571428571,0.7455113192818111,0.928395061728395,0.8448687350835322,0.7651821862348178,0.1714285714285714,0.5044553032480598,0.707977207977208,0.637478108581436,0.5572327044025157,0.1035714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0045214922952149,0.0067277542695363,0.0089692020152771,0.0112046526761021,0.0137640363647469,0.0162447515388691,0.018389443928524,0.0202847011455491,0.0225235366352844,0.0244792146977754,0.0266274010835659,0.0287558323569916,0.0305023677166975,0.0325135344160866,0.0346188414930214,0.0365782992901637,0.0385751754595121,0.0406987008401441,0.0427970601095171,0.0576591992821294,0.0717877941929885,0.0841614255765199,0.0970691159007555,0.1096251330529998,0.1250013212552982,0.1377295669508419,0.148956094238832,0.1606656774730729,0.1710124425296595,0.1839913035991045,0.1959190731454262,0.2078964809161134,0.2184827134196297,0.2279567764842968,0.2377502488662758,0.2472646239554317,0.2558883984230212,0.2649731469101951,0.2731900387787552,0.2804457017493216,0.2877108996438788,0.2945739183900299,0.3001113385770211,0.3057183416445237,0.3114082062266868,0.3159223567937805,0.3202227902185938,0.3250786417947158,0.3292560763431222,0.3285103407471156,0.3268524756967839,0.3261007307697723,0.3248720691549336,0.3235551989062755,0.3230396887397944,0.3219450384097568,0.3222406734516039,0.3232115989604705,0.3232445953189208,0.3233432858242728,0.3236237623762376,0.3228774922789251,0.3234547374570292,0.3246875225778484,0.3256111910053602,0.3270474446288559,0.3306043747629283,0.3346612141295917,0.3376473857636269,0.3406723917412753,0.3457503746521088,0.3468831251189042,0.3488175675675675,0.350504764600434,0.3548002385211687,0.3590536570279882,0.3655626414318041,0.3626957494407158,0.3602316602316602,0.0,2.196671333655226,56.327753152433935,176.53011887162626,262.81127917019955,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95744,44138,418.30297459893046,5998,61.58088235294117,4648,48.044786096256686,1814,18.63302139037433,77.31652017658898,79.67745910534269,63.31665033110207,65.06255224823441,77.0961512106691,79.45648877139544,63.235395082012666,64.98297437053698,0.2203689659198744,220.9703339472497,0.081255249089402,79.57787769743163,166.84404,116.88482354042787,174259.65073529413,122079.79625751985,359.25439,232.9424726609915,374737.2681316845,242813.75169061177,365.3111,176.75940819231022,378134.72384692513,181973.7813675724,2645.80884,1220.9287627062054,2736189.421791444,1248226.5717093598,1101.29448,491.24744117961137,1135747.681316845,499069.4403739227,1779.34726,744.4199878949132,1829334.579712567,754226.5059433214,0.3771,100000,0,758382,7920.893215240641,0,0.0,0,0.0,30596,319.03826871657753,0,0.0,33431,345.8389037433155,1571498,0,56395,0,0,6702,0,0,74,0.7624498663101604,0,0.0,1,0.0104445187165775,0,0.0,0.05998,0.1590559533280297,0.302434144714905,0.01814,0.3231406274884535,0.6768593725115464,24.56800121915148,4.327125561555926,0.3300344234079174,0.2392426850258175,0.2117039586919105,0.2190189328743545,11.356636111304802,5.840055145323594,19.263219084771272,12156.339354504447,52.81979285892016,13.390974595278854,17.357917465642444,10.900484227230546,11.17041657076832,0.5682013769363167,0.7778776978417267,0.7033898305084746,0.5782520325203252,0.1257367387033398,0.7286512370311253,0.9103448275862068,0.8717277486910995,0.6962616822429907,0.1576576576576576,0.5089837997054492,0.6927621861152142,0.6475694444444444,0.5454545454545454,0.1168341708542713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024209641312385,0.0044707575957259,0.0065770109109363,0.0087586494203237,0.010833740234375,0.0129855580225286,0.0151652677633524,0.017401427652339,0.0196419259516773,0.0215817762989506,0.0235009433188417,0.0257315946195707,0.0278360480421191,0.0300162695388924,0.0319965342245327,0.034127189130547,0.0361893522975476,0.0380585867806315,0.04,0.0418498531035776,0.0565038995207817,0.0707162664155287,0.0840106127499816,0.0971903850602511,0.1090983857192564,0.1242028449050817,0.1367546753508502,0.1481745609366684,0.159635497345284,0.1704357714506404,0.1832459041115072,0.1953141063795249,0.2067878076099131,0.2165261788404561,0.2264722069345074,0.2360255330466776,0.2456177567380479,0.2551434774294424,0.2639527099855906,0.2720172243981767,0.2788682868148011,0.2853518228374997,0.2910695902211598,0.2967723370581747,0.301897796029451,0.3070471867985496,0.3110654762650104,0.3150650045203927,0.320112397379121,0.3234890291236501,0.3217084533972477,0.3200297573945748,0.3192288149946367,0.3188286214733429,0.3184522924042724,0.3165259237689466,0.3150370464188461,0.3154157214715455,0.3164918644241791,0.3176247472849909,0.3189034001351047,0.3200205724684984,0.3208350818296265,0.3219314544111392,0.3236404743006951,0.3246239525321397,0.3251823985408116,0.3280005019135454,0.3305683886322274,0.3339139384822454,0.3383769538349691,0.3422633285494073,0.345567867036011,0.3506404911695596,0.3494699315132751,0.3522185114503817,0.354601226993865,0.3543895055499495,0.3530057644798243,0.3534351145038168,0.0,1.944676312502724,55.09492360199642,171.83872446395702,257.8676470394912,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95685,44961,425.5525944505408,6121,62.7266551706119,4785,49.485290275382766,1854,19.031196112243297,77.40264542862671,79.78466945895065,63.35728834693722,65.11271482588121,77.17163246111225,79.55378295351814,63.27102098040959,65.02861751848336,0.2310129675144594,230.88650543250824,0.086267366527629,84.09730739785459,168.02104,117.61888997311644,175598.09792548468,122923.01820882734,363.62944,235.6885389571911,379453.8224382087,245743.8159493296,373.47902,180.9261142043124,387125.5996237655,186563.88572323584,2746.41728,1261.288090772175,2841013.157757224,1288988.8265561915,1159.74144,516.8333956307833,1195435.512358259,523671.4327939469,1819.0141,768.6695781468595,1868708.0524638137,775679.4722711882,0.38248,100000,0,763732,7981.731723885667,0,0.0,0,0.0,31118,324.66948842556303,0,0.0,34106,353.39917437424884,1565245,0,56183,0,0,6693,0,0,65,0.6479594502795631,0,0.0,1,0.0104509588754768,0,0.0,0.06121,0.1600345116084501,0.3028916843652998,0.01854,0.3319301527907702,0.6680698472092298,24.52662978800299,4.308422116387582,0.3201671891327063,0.2417972831765935,0.2152560083594566,0.2227795193312434,11.072267206775644,5.742508570047136,19.759225273075835,12355.155773845476,54.07859573964499,13.97934995126585,17.040366496488137,11.449827504837051,11.609051787053946,0.5657262277951933,0.7856525496974935,0.693864229765013,0.5951456310679611,0.1144465290806754,0.7414860681114551,0.9311111111111112,0.8703703703703703,0.7404255319148936,0.1572052401746725,0.5007157171485829,0.693069306930693,0.6360485268630849,0.5522012578616352,0.1027479091995221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809875343034,0.0049459292367255,0.0074355853114221,0.0095873576876593,0.0118160279029092,0.0141437386717715,0.0162406842904768,0.0183402904644778,0.0206734454039139,0.0227905358385525,0.025082515016708,0.0269998357424441,0.0291278107360607,0.0311743684280991,0.0331297331875116,0.0354086568274835,0.0376690343556503,0.0396911869999688,0.0415787010555873,0.0435738702684675,0.0579134849418671,0.0724868334258222,0.0857013935527199,0.0986945224645227,0.1106247428987311,0.1268581706607416,0.1392049072462537,0.1507111830338131,0.1622314844501442,0.1721438071131322,0.1852988691437803,0.1977250097406814,0.2093774471417384,0.2196466060181945,0.2296809680968096,0.2396890950762314,0.2489213926576662,0.2579539837325304,0.2672429419495173,0.2744882790165809,0.2815325458135587,0.2881500326766875,0.2947859462651314,0.3004581942600103,0.3059014683949509,0.3117878676018211,0.316638752093593,0.321137024388386,0.3251563065157856,0.3289378446313185,0.3281950747912023,0.326554679465204,0.3253291043309849,0.3256071752494205,0.3250710732054016,0.3228904258080276,0.3208250418522379,0.3210762625766067,0.320715537929978,0.3206681253001761,0.3213878877289958,0.323653000314169,0.324379434468696,0.3243712055507372,0.3261780982726815,0.3280068594590381,0.3287939955649059,0.3330620167172776,0.3341975265389062,0.3373980521023042,0.3419184564979978,0.3441043385680064,0.3490964045085322,0.3491858164662912,0.351687723929851,0.3549676660787771,0.3565523576240049,0.3621730382293762,0.3600217864923747,0.353539156626506,0.0,1.9921072233215795,56.66692939297808,178.46823623588224,259.2795263009298,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95732,44901,425.3123302552961,6204,63.62553796013872,4849,50.11908243847408,1825,18.729369489825764,77.33907921770925,79.70664001142592,63.32552877917672,65.07576068732462,77.10859854041783,79.47680935768136,63.24030038869804,64.99331362666004,0.2304806772914247,229.8306537445569,0.0852283904786759,82.44706066457752,166.9679,116.9686411846028,174411.7954289057,122183.4299759775,363.45307,235.77006456539323,379139.99498600257,245764.52446976263,373.88975,180.7560456267814,387315.97584924585,186304.7180294898,2784.0964,1273.9268571869304,2879678.8116826136,1302181.6917926404,1169.0289,515.3941327768741,1207396.9936907198,524621.3625296396,1790.06308,751.5576233871307,1838485.354949233,757774.9767536658,0.38209,100000,0,758945,7927.808883132077,0,0.0,0,0.0,31089,324.2071616596332,0,0.0,34171,353.66439644006186,1567482,0,56213,0,0,6566,0,0,57,0.5954121923703672,0,0.0,1,0.0104458279363222,0,0.0,0.06204,0.162370122222513,0.2941650548033527,0.01825,0.3378855301519103,0.6621144698480896,24.45737400823,4.29589374624618,0.3361517838729635,0.2289131779748401,0.2171581769436997,0.2177768612084966,10.888986323530355,5.514952477882622,19.58390140920488,12329.400090413432,55.09273480415156,13.441908215650235,18.505356452452887,11.61149463709108,11.53397549895737,0.5652711899360693,0.8027027027027027,0.6895705521472393,0.553656220322887,0.1354166666666666,0.743161094224924,0.9262672811059908,0.8538283062645011,0.7241379310344828,0.182648401826484,0.4990093405038211,0.7233727810650887,0.6305254378648875,0.5054811205846529,0.1230585424133811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0045828770734477,0.0071252397917237,0.0092261420907169,0.011352654547674,0.0136267810039821,0.015795645745169,0.017754137357196,0.019969733532383,0.0221430180872201,0.0241421040756466,0.0259546845791992,0.0282931545170314,0.0304962858408629,0.0325773919506178,0.0346845915201654,0.0369426487651251,0.0389592868188092,0.0406605519851916,0.0427566807313642,0.0575220314914588,0.0719337895243476,0.0852415702063412,0.0979095249111443,0.1106928187282505,0.1262190349262761,0.1391031285473313,0.1505072980655601,0.1615126517353393,0.1716216941151225,0.1850283399064675,0.198141912011521,0.2100029375605192,0.2199013031917803,0.2293040615675955,0.2393309242467909,0.2483977579777137,0.2571663309061033,0.2656391864899219,0.2736553841923139,0.2806956642482729,0.2881750356666744,0.2949230296294545,0.3005195613657042,0.3062860886020671,0.3111805521381822,0.3158078820810692,0.3199827297201199,0.3249861094959362,0.329314093694406,0.3283517901300935,0.3266666666666666,0.3254352848368738,0.3238449083444168,0.3234931435617822,0.3217243543621695,0.3206391899375049,0.3212937120341487,0.3217047632083219,0.3221502914982653,0.322368914560048,0.3239798438889438,0.3244503942937227,0.3252928552266834,0.328576567933805,0.3288810352892261,0.3294301994301994,0.3327569402961612,0.3365846812392548,0.3409885568976478,0.3447410449463837,0.34768,0.3507628030638728,0.3539639984680199,0.3541196388261851,0.3589438629876308,0.3654084158415842,0.3682487725040916,0.3611731843575419,0.3703275529865125,0.0,2.1295131952561897,57.86629543570733,180.98869940912763,264.2176970203185,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95671,44525,421.3816098922348,6001,61.27248591527213,4710,48.48909282854783,1907,19.46253305599398,77.30793472821749,79.68475700628437,63.31631099018998,65.0707024340635,77.06335497299251,79.44384226844929,63.22450858610724,64.98302735443971,0.2445797552249757,240.91473783508377,0.0918024040827418,87.67507962379284,167.97902,117.61694217606367,175579.87268869355,122938.97019584168,359.444,233.2243727312689,374954.7093685652,243023.7927180325,367.592,178.58317013753776,379613.132506193,183039.87222538143,2689.83316,1256.5902786549343,2770220.317546592,1272124.8849232618,1117.70706,510.26052655915913,1148067.679861191,513137.1978639777,1862.48488,798.9378769448526,1902577.1027793167,798297.6094029967,0.37906,100000,0,763541,7980.903304031524,0,0.0,0,0.0,30701,320.1388090434928,0,0.0,33563,346.17595718660823,1564148,0,56185,0,0,6590,0,0,72,0.7525791514670067,0,0.0,0,0.0,0,0.0,0.06001,0.15831266817918,0.3177803699383436,0.01907,0.3361613574515767,0.6638386425484233,24.35583442738836,4.339354692707502,0.3214437367303609,0.2309978768577494,0.2239915074309978,0.2235668789808917,11.06328601980138,5.862229708442297,20.711300417141093,12271.910532592998,53.83584558545723,13.07190025114084,17.12686217371836,11.897624288365892,11.739458872232126,0.554140127388535,0.7987132352941176,0.6849405548216645,0.5649289099526066,0.1025641025641025,0.7117516629711752,0.9258373205741628,0.8648648648648649,0.6691449814126395,0.1698841698841698,0.4906166219839142,0.7194029850746269,0.6187895212285456,0.5292620865139949,0.0806045340050377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.00464107656763,0.0068675884316132,0.0090497277971885,0.0112684077780489,0.0138385401816626,0.0161311702745969,0.0180908626850433,0.0199963196957615,0.0222950148428703,0.0243574892103293,0.0265097845951662,0.0286522342777806,0.0307822270755854,0.0326911368631781,0.0344873928730189,0.0367100805072891,0.0388189246150811,0.0411222536617842,0.043169592594137,0.0574016233325324,0.0714495059454027,0.0852340684474473,0.0982004816945551,0.1106038881626112,0.1251665573909181,0.1379314003204006,0.1505322546306153,0.1621560980821625,0.1717967149095044,0.1845951680830667,0.1964080926106242,0.2079790357305961,0.2183673023093072,0.228299852582015,0.239091180999435,0.2482397705843627,0.2573977812282004,0.2653237246779776,0.272721023749241,0.27899356213237,0.2857694377500643,0.2922157106493814,0.298511044188753,0.3044578547790539,0.3085252176060251,0.3141610123788143,0.3194325734478052,0.3236233766233766,0.3285134080355607,0.3278327981218123,0.3257264273296724,0.3240055373488529,0.3228177508444844,0.321524951171147,0.3196001351309849,0.3177660621843935,0.3185840707964602,0.3194875576669125,0.3195315018446219,0.3207564905156693,0.3213697597365236,0.3216956558272414,0.3231592619132927,0.3242037755864696,0.3252270882961179,0.3254789819845582,0.3274230186774356,0.3306827820186598,0.333718152866242,0.3362779201757598,0.3412503994035573,0.3460299412545006,0.3507405710795541,0.3520542781756502,0.357151307228203,0.3589277601090413,0.3622868605817452,0.3699406368051808,0.3666292555181444,0.0,2.8523324944241177,58.673831569949904,173.8221371771009,249.2822485881236,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95705,44790,423.3843581840029,6059,62.00303014471553,4747,48.99430541768977,1873,19.20484823154485,77.38171245272493,79.75557921718143,63.34258245905804,65.09490418352965,77.14167569887717,79.5169967178356,63.25285687888133,65.00816757460197,0.240036753847761,238.58249934583853,0.0897255801767116,86.73660892767998,167.36786,117.25463381912417,174878.90914790242,122516.72725471412,362.11802,234.52395740205787,377712.3138811974,244392.15025553305,369.71912,178.70100440804083,382540.8494853978,183787.4149580031,2720.81072,1256.2720846351988,2810147.348623374,1279883.8980567355,1138.79508,508.2171255522523,1172783.8879891334,513907.1788853796,1836.22368,777.4784267436156,1884428.211692179,782940.1318394892,0.38259,100000,0,760763,7949.041324904655,0,0.0,0,0.0,30891,322.1566271354684,0,0.0,33889,350.2951778903924,1568298,0,56232,0,0,6701,0,0,62,0.6373752677498563,0,0.0,0,0.0,0,0.0,0.06059,0.1583679657074152,0.3091269186334379,0.01873,0.3381795195954488,0.6618204804045512,24.338898710974703,4.376915144658786,0.327996629450179,0.2340425531914893,0.2138192542658521,0.2241415630924794,10.834983955707235,5.526587285974912,19.971564899477816,12308.164310510534,53.911981048253374,13.335421319325263,17.692011590790113,11.114316380951758,11.770231757186249,0.5630924794607121,0.8073807380738074,0.6852922286448297,0.5665024630541872,0.1259398496240601,0.7185301016419078,0.91725768321513,0.8272506082725061,0.6880733944954128,0.1806167400881057,0.505767012687428,0.7398255813953488,0.6343804537521816,0.533249686323714,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0047035448914839,0.0068900434306124,0.0091928569977449,0.0115242996928209,0.0139002036659877,0.0160897272495539,0.0185593531789783,0.0206802081310121,0.0229092025795884,0.0248403268302184,0.02710444451289,0.0292877563192859,0.0313349814585908,0.0333632601673838,0.0351522921362254,0.0372322797133269,0.0395658444967884,0.0415167335732262,0.043580204458061,0.0580034045930675,0.0718585441944703,0.0853224774155641,0.098338926351003,0.1100832269701796,0.1255036751097245,0.1378139490466135,0.1497428690069313,0.1606517094017094,0.1714723992190684,0.1848196198439722,0.1975360765591677,0.2088599334362968,0.2190116978244233,0.2287112920081403,0.2392498117886718,0.2482406343753833,0.2574857708487998,0.2662045965015768,0.2737620814438184,0.2809502320037954,0.2872275745954541,0.2933454855357227,0.2998801534036433,0.3053730001579222,0.3108517770000493,0.3152595372107567,0.3208601056046822,0.3242123793005255,0.3277867144853775,0.3266085646653755,0.3254069647640634,0.3245680679835669,0.3237109239820048,0.3232649433375305,0.3213675213675214,0.318734601048708,0.3189629775115388,0.3193912466166181,0.3201167945590827,0.3204173991098478,0.3211819939243303,0.322670114487102,0.323914787414208,0.32430683697189,0.3258491055224267,0.3274258492599104,0.3311672081979505,0.3348558279000035,0.3372832484101591,0.3415673299188687,0.3428162746344564,0.3455153695638452,0.3491978609625668,0.3501974797818318,0.3501659554291133,0.3557560006115273,0.3540020263424518,0.3516574585635359,0.3523296110897189,0.0,2.4014594473469395,55.84200838484642,178.52638122720552,258.5371964909032,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95860,44531,420.7698727310661,6114,62.7268933861882,4847,50.01043187982474,1950,19.966617984560816,77.44506122741345,79.7213259591539,63.40474875222951,65.0838048062886,77.20221696598095,79.48189690590057,63.3158038216113,64.99870654782552,0.242844261432495,239.42905325333183,0.0889449306182044,85.09825846307706,166.40514,116.54969986601446,173591.84226997703,121583.24626122936,360.98618,233.4304083367589,376041.9570206551,242977.3089263081,371.54545,179.8620652841873,384200.6676403088,185024.16763603204,2780.21816,1271.3817498823194,2871093.344460672,1297093.3339060296,1145.61545,507.9486735024927,1181165.6373878573,515959.31932244217,1915.3425,790.9965651851073,1964002.6914249947,796154.6832448371,0.37918,100000,0,756387,7890.538284998956,0,0.0,0,0.0,30710,319.7997079073649,0,0.0,33953,350.82411850615483,1577390,0,56695,0,0,6689,0,0,70,0.7302315877321093,0,0.0,1,0.0104318798247444,0,0.0,0.06114,0.1612426815760325,0.3189401373895976,0.0195,0.3390544546731159,0.6609455453268841,24.66091647892915,4.356847768755386,0.3162781101712399,0.2376727872911079,0.2213740458015267,0.2246750567361254,11.468133691347983,5.987399795536259,20.58208836880861,12241.311379493962,55.10403557721549,13.857359354819485,17.434234585886173,12.00399438008065,11.80844725642918,0.5613781720651949,0.7847222222222222,0.6894977168949772,0.5824790307548928,0.1239669421487603,0.7296037296037297,0.908235294117647,0.8508997429305912,0.7290836653386454,0.1756756756756756,0.500561797752809,0.7125171939477304,0.6346153846153846,0.537712895377129,0.1107266435986159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022065223992388,0.0045482632522614,0.0068949433702077,0.0088404855669684,0.0108724368484158,0.013053077087424,0.0153894728265297,0.0176511976505858,0.0200042888214931,0.0221781408807861,0.0244009830022527,0.0265729962566022,0.02867560211575,0.0307250789470977,0.0329486915310117,0.0348472336911643,0.0370033300928702,0.0389318356096246,0.0409356118020805,0.042900993704802,0.0578611499238806,0.0726807354784788,0.0865477237508899,0.0998656844844592,0.11159624610723,0.1262585751978892,0.1386791753581601,0.1504797118541421,0.1617295798677756,0.1720587763139588,0.1845773550432586,0.1965444630419524,0.2080031265605662,0.2184470259411302,0.2281813588735364,0.2384471561805086,0.2474700191698988,0.2563846162488905,0.2644745194051505,0.2725764751641613,0.2801886574341664,0.2861367966987363,0.292403955336866,0.298300622307324,0.3038741066986981,0.3095179477079127,0.3135254877911415,0.3171796078830519,0.3204998704998705,0.324732544487976,0.3235678047073705,0.3226697448159294,0.3218692902319044,0.3205824319847911,0.3196404507692991,0.317097354852488,0.3155521926920773,0.3164414230385828,0.3174260088159709,0.3182520924777424,0.3184934705849384,0.3196354238592199,0.3210581346716855,0.3211815626254964,0.3221070811744387,0.3225521293744475,0.3237673507621562,0.3282567139857729,0.3319383413545372,0.3364208526303289,0.3383070955966233,0.3432700511945392,0.3430772144706105,0.3447878228782288,0.3485524442335073,0.3490407673860911,0.3504419289812374,0.3546777546777547,0.3583007266629402,0.3604100946372239,0.0,2.1840936106018174,56.39734381596655,187.0548205954511,262.123028643719,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95692,44146,418.5302846632948,6147,63.03557246164779,4804,49.690674246540986,1917,19.7404171717594,77.29747507811412,79.70223402114001,63.28577397120039,65.06638396008243,77.06253082751874,79.46657074182264,63.198859292551305,64.98151633211562,0.234944250595376,235.66327931737877,0.0869146786490873,84.86762796681546,165.98428,116.3319531008149,173456.79889645948,121569.15217658204,360.45582,233.3432120484252,376166.116289763,243330.9702466509,359.58051,173.70920408145747,372426.4724323872,178959.18091663165,2748.63304,1256.1333975965615,2844379.9690674245,1284688.8325006908,1165.59393,510.8020314050389,1204214.7201437948,519944.4586851973,1877.55826,782.3617666740672,1934591.292898048,793488.9126437955,0.37724,100000,0,754474,7884.399949839068,0,0.0,0,0.0,30745,320.7582661037496,0,0.0,33046,342.0139614596832,1573436,0,56418,0,0,6441,0,0,61,0.6374618567905364,0,0.0,1,0.0104501943736153,0,0.0,0.06147,0.1629466652528894,0.3118594436310395,0.01917,0.3438324282389449,0.6561675717610551,24.736929272082627,4.44949950314225,0.3084929225645295,0.2431307243963363,0.2216902581182348,0.2266860949208992,11.213996258180376,5.685286566997019,20.340380661453,12209.306207694804,54.45897344921152,14.016220540800752,16.67002001421304,11.82911298331231,11.94361991088542,0.5574521232306411,0.7902397260273972,0.6835357624831309,0.5690140845070423,0.1248852157943067,0.7252747252747253,0.9072398190045248,0.8497267759562842,0.7404255319148936,0.1645021645021645,0.4968838526912181,0.71900826446281,0.6290322580645161,0.5204819277108433,0.1142191142191142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024727390652235,0.0048688454750167,0.0071272653434184,0.009612844223148,0.0117899576822916,0.0137199779991444,0.0159316225368202,0.0182594309756745,0.0202503681885125,0.0225091910823459,0.0247612600137448,0.0268645983151838,0.0285082304526748,0.0305740754098698,0.0323892909873726,0.0344656378004882,0.0361936547092173,0.0381903703780618,0.0401997503121098,0.0420210105052526,0.0566071242034889,0.0708483376601624,0.0839559286463798,0.0972282122758112,0.1096401936688431,0.1243480560698228,0.1370053498641304,0.1486995974183654,0.1595465968026519,0.1697462931747173,0.1827338905365327,0.1951980922443228,0.2064458507150559,0.2171802933862115,0.2269971783793316,0.2371127158973676,0.2459348003442148,0.2555106270344548,0.2630520719738277,0.2706788460877239,0.2769597905540817,0.2837969198336944,0.2898495795333412,0.2965074411905904,0.3020681265206812,0.3077492687622644,0.3124404672381812,0.3171415822018231,0.3222088087542349,0.3268172680139667,0.3249919015225138,0.3238443493859528,0.3234890983340163,0.3215605570933754,0.3210715773189742,0.3185949209949578,0.3174826724056081,0.3186744716087035,0.3191692365358731,0.320168097154457,0.3214185720951936,0.3232521988941579,0.324120655463939,0.3259315352235016,0.326421516923962,0.3266748058290256,0.3272711772896479,0.3313171832398383,0.3329249509941193,0.3352999406058206,0.3397016011644833,0.3423604854523292,0.3448665620094192,0.3500113713895838,0.3517422748191979,0.3551401869158878,0.3554837717274265,0.356751269035533,0.3649876135425268,0.352556708958093,0.0,2.001847435387542,56.27047337853136,183.5258295646716,259.3121486325511,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95820,44737,422.9597161344187,6085,62.35650177415989,4764,49.03986641619704,1836,18.73304111876435,77.32864418348662,79.63869494835774,63.32870225298407,65.0382559472491,77.10355230276383,79.4184525369975,63.24533821396278,64.95929685407204,0.2250918807227862,220.24241136023196,0.0833640390212835,78.95909317706185,166.79564,116.8702360655838,174071.84303903152,121968.5202103776,360.96796,234.5348386105251,376036.4746399499,244089.5263113204,372.49307,180.4141508197183,384243.289501148,184800.1529107452,2705.75604,1250.9830305913397,2785673.5128365685,1267730.427558779,1112.66792,497.3090175986887,1140612.7739511584,498650.17988917616,1794.57486,752.7725351025806,1832128.7413901065,751137.0032781743,0.38108,100000,0,758162,7912.35650177416,0,0.0,0,0.0,30768,320.3819661865999,0,0.0,34043,350.8766437069506,1567526,0,56311,0,0,6653,0,0,65,0.6679190148194531,0,0.0,1,0.0104362346065539,0,0.0,0.06085,0.1596777579510863,0.3017255546425637,0.01836,0.3357904642409033,0.6642095357590966,24.380381737393424,4.249942569897283,0.3259865659109991,0.2487405541561712,0.2151553316540722,0.2101175482787573,11.2305148715658,5.923866690755069,19.66416558720225,12308.593347905782,54.38841791368857,14.196534252259326,17.583063793016258,11.466101389194607,11.142718479218376,0.5745172124265323,0.7772151898734178,0.7108821635544108,0.584390243902439,0.1128871128871128,0.7419106317411402,0.9144736842105264,0.878345498783455,0.6818181818181818,0.1658767772511848,0.5118291979226774,0.691358024691358,0.6506129597197898,0.5577639751552795,0.0987341772151898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788271636197,0.0045006690183675,0.0066453609293359,0.0089692020152771,0.0112466951393125,0.0133984931785787,0.0156966670064213,0.0178084847990039,0.0198663314734195,0.0221640095777991,0.0244574683907457,0.0265793686630269,0.0285491131071054,0.0310273831583281,0.0333384893013663,0.0352785611718887,0.0374398509856677,0.0393571798859512,0.0413083219078482,0.0430270922886374,0.0572099087353324,0.0710559058164214,0.0848889494481537,0.0976755427586641,0.1103779749984189,0.1259724336208354,0.1382220714225125,0.150259618658495,0.1616371946010593,0.171470837308521,0.1841575416949298,0.1961923305749364,0.2078667565393229,0.2185041091099842,0.2277797333568002,0.2378484335027741,0.2478873868342617,0.2568074113263617,0.2660255682463271,0.2732995459340457,0.280701551016623,0.2877526614453876,0.2941190433802148,0.2993754503963488,0.3054375996203779,0.3107769732703432,0.3153779648911777,0.3194159542344592,0.3245981604244775,0.3287540823207415,0.3275478415665331,0.3268838261253309,0.3259609949123799,0.3245481709262858,0.3233208176887776,0.3216359001136468,0.3198742976859346,0.3211620030907835,0.3226583316253331,0.323814789712125,0.3237377712807826,0.3233148122515967,0.3240952002176961,0.3259835131693586,0.3270266371766516,0.3284435279684686,0.3305263157894736,0.3336572521237578,0.3373451944880516,0.3413211414157339,0.3444947893067512,0.345679665590772,0.3461659235068768,0.3477632379793061,0.3486737276220826,0.352619698229773,0.3558756633813495,0.3562197092084006,0.3446959367330243,0.3486943164362519,0.0,2.603516723656872,56.59684335900909,180.86107689003148,257.7226785510759,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95735,44993,425.66459497571424,6119,62.50587559408785,4830,49.75191936073536,1918,19.64798662975923,77.35098256499538,79.70072642729319,63.33757887846742,65.07143030233892,77.10619748914627,79.4567393356751,63.24538038136876,64.98227360262719,0.2447850758491085,243.98709161809504,0.0921984970986571,89.15669971173656,166.4278,116.63277471331789,173841.70888389827,121828.37105281676,361.62397,234.53327895286665,377001.90108110936,244250.93026320144,371.64527,180.14124862598695,384266.75719433854,185036.22163917104,2750.24216,1273.9015972770687,2835090.1968976865,1293120.5162979916,1147.85309,512.4395129126914,1181235.2640100275,517636.43216709024,1874.11614,799.3970452263648,1921190.661722463,803281.2172364836,0.38254,100000,0,756490,7901.895858359012,0,0.0,0,0.0,30827,321.2409254713532,0,0.0,34019,351.27173969812503,1569879,0,56334,0,0,6577,0,0,54,0.5640570324332793,0,0.0,0,0.0,0,0.0,0.06119,0.1599571286662832,0.313449910116032,0.01918,0.3413836086008102,0.6586163913991898,24.219080020627977,4.324575676173636,0.3171842650103519,0.2401656314699793,0.2262939958592132,0.2163561076604555,11.234013990203568,5.875764659311739,20.507365229082435,12313.97194295636,54.99712757514682,13.919502168548942,17.34755128986752,12.23936825208694,11.49070586464341,0.567287784679089,0.7922413793103448,0.6932114882506527,0.5718206770356816,0.1282296650717703,0.7140740740740741,0.9383561643835616,0.8709677419354839,0.656140350877193,0.1647058823529411,0.5103448275862069,0.703601108033241,0.6362068965517241,0.5420792079207921,0.1164556962025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0046827013713625,0.0068896938703032,0.0092020801170065,0.011499628880235,0.0138347364884812,0.0159121721491116,0.0182786809956829,0.0206870470875622,0.0230275614324166,0.0252885581319064,0.0271812769451857,0.0291680375061687,0.0312229682415454,0.0333735673093786,0.0352251702859977,0.037401370969412,0.0394321766561514,0.0411611199484316,0.0432771445835851,0.057979789544012,0.0718679387396434,0.0861345859458552,0.0990274930347474,0.1114566422803651,0.1270097992579202,0.1392270818309082,0.1512403818524312,0.1627834930401991,0.1733444898572179,0.1861291851596501,0.1986448896537541,0.2092615960316769,0.2192274020573429,0.2286104352230063,0.2385370936987273,0.2477964094600784,0.2566344790330204,0.2657811080835604,0.2734518348623853,0.2805664593971816,0.2872046460436035,0.2941141660058468,0.2997447603983176,0.3049935637432298,0.3101269720070444,0.3153536313827525,0.3189310879906387,0.3227252120976621,0.3271265005348441,0.3251762865887365,0.32410342641343,0.3232961760970791,0.3226502534395365,0.3216140215143354,0.3201478006224798,0.3184037796873513,0.318367279786779,0.3195299671592775,0.3210784751361485,0.3217249583185028,0.3220171716174874,0.3237431161923906,0.3239464927756314,0.3244948888995537,0.3266508511692171,0.3282273219064973,0.332672581964634,0.3365910046237915,0.3393331483170122,0.3421352151149556,0.3432780259519251,0.3470866141732283,0.3510508681084374,0.3501174260216064,0.3551568441064638,0.3605515959095134,0.3632123301561549,0.3627829928216455,0.3676132003069838,0.0,2.611908115131323,58.79249060474998,177.96658038438693,260.6675451679805,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95845,44760,423.13109708383325,6246,64.02003234388857,4948,51.07204340341176,1897,19.437633679378163,77.51248185563044,79.7973552759867,63.42745123530996,65.1103845206903,77.27280284362159,79.5593731054686,63.33850565689628,65.02443255804731,0.2396790120088496,237.98217051810863,0.0889455784136785,85.95196264299432,167.52538,117.24798805091504,174787.81365746778,122330.834212442,365.02876,236.25537887001724,380288.5596536074,245932.692232268,372.06635,180.03605865542096,384301.67457874696,184890.52636394385,2832.851,1301.8800802689927,2925124.482236945,1327784.0683071546,1205.87336,533.6125178427847,1244889.6238718764,543485.4377826535,1864.67662,787.660684712885,1912441.504512494,794123.14523191,0.38025,100000,0,761479,7944.90062079399,0,0.0,0,0.0,31086,323.7518910741301,0,0.0,34141,352.433616777088,1572652,0,56418,0,0,6608,0,0,61,0.6260107465178152,0,0.0,0,0.0,0,0.0,0.06246,0.1642603550295858,0.3037143772014089,0.01897,0.3263431807745293,0.6736568192254707,24.754462704908832,4.291284200034986,0.3265966046887631,0.240501212611156,0.2055375909458367,0.2273645917542441,11.105965985865751,5.728500910993027,20.22011308162611,12274.427534394756,55.94570405703193,14.23807495112341,18.205177316740983,11.215960814442292,12.286490974725243,0.5650767987065481,0.7873949579831933,0.7060643564356436,0.5693215339233039,0.1235555555555555,0.7119764878765613,0.8949671772428884,0.8655256723716381,0.7046413502109705,0.1511627906976744,0.5093392807359911,0.7203274215552524,0.652029826014913,0.5282051282051282,0.1153402537485582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00234756035861,0.0045269948653548,0.0069025633748568,0.0093454150642814,0.0117231150571933,0.0138106376487338,0.0158823888741829,0.0182431881220427,0.0205957133958931,0.0229778095919828,0.0254057651937944,0.0274538760524669,0.029386681462758,0.0312454973962085,0.0332164948453608,0.0353240099981408,0.0372508847085118,0.0394795500492457,0.0412507141744143,0.0430482536047056,0.0580781745369597,0.0719364282726892,0.0851679153350448,0.09775975969668,0.1101271953839026,0.1262424082387113,0.1383575145458206,0.149920255183413,0.161603226942408,0.1716497826133516,0.1840978987891691,0.1963793866992147,0.2081121280222345,0.218600537246937,0.2280297038404077,0.2379878136438531,0.2479667550524744,0.2567936461574755,0.2651632706226143,0.2718211330071785,0.2795999123221929,0.286355057436447,0.292861270653725,0.2989121998399943,0.3040352448500399,0.3087400820457393,0.3131592728360888,0.3183050418039017,0.3230360619383453,0.3272767851281984,0.3261621360784944,0.3248069233718573,0.323704523485984,0.3220802394520232,0.3208289572947946,0.3194177423784674,0.3173347231434979,0.3176320398042521,0.3184116015046552,0.318727298625454,0.3197772212462154,0.3210209914260372,0.3228899053825427,0.3238790685248675,0.3247763330549922,0.3247861038591775,0.3262289057862453,0.3294040806170689,0.3346165851628342,0.337373421433319,0.340466490576174,0.346133778566211,0.349571800918456,0.3511157863100158,0.3518844337438652,0.3517225325884544,0.3598797896318557,0.3585240726124704,0.3594086021505376,0.3625883227965786,0.0,2.1518469391435784,59.81423754951662,181.7123275773008,266.5938678777261,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95742,44633,423.72208644064256,5954,61.19571347997744,4665,48.171126569321714,1838,18.852750099225,77.31288813594676,79.67287390082242,63.318020272784125,65.06269196560362,77.0856175357758,79.44543912348632,63.23382000795088,64.98054630387672,0.2272706001709679,227.43477733610007,0.0842002648332496,82.14566172689786,167.376,117.32784473013076,174819.8282885254,122545.8468907384,360.35704,233.497446285278,375822.70059117215,243331.6807652478,368.09274,177.59370454142422,381378.4337072549,183089.08119197347,2655.34372,1213.765350834896,2742334.941822815,1237483.8875403518,1136.83924,496.34636844184257,1173429.8844812098,505235.2388329856,1801.9496,754.3373634992648,1848968.6031208877,760130.466890429,0.37864,100000,0,760800,7946.35583129661,0,0.0,0,0.0,30752,320.61164379269286,0,0.0,33678,348.6870965720373,1566317,0,56262,0,0,6610,0,0,56,0.574460529339266,0,0.0,0,0.0,0,0.0,0.05954,0.1572469892245933,0.3087000335908633,0.01838,0.3262569832402234,0.6737430167597765,24.68462051537904,4.353223948899708,0.3159699892818864,0.2465166130760986,0.2147909967845659,0.2227224008574491,11.386146438394285,5.825158667291341,19.71819701417318,12174.005581068524,52.97566590097932,13.988760069578449,16.493478385526057,11.131754593322114,11.361672852552712,0.5691318327974276,0.7973913043478261,0.6994572591587517,0.592814371257485,0.1087584215591915,0.7199036918138042,0.8876404494382022,0.8306010928961749,0.7532467532467533,0.1176470588235294,0.5141854343375256,0.7404255319148936,0.6561371841155235,0.5447470817120622,0.1065868263473053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045611652256763,0.0070516137541979,0.0092126112217121,0.0113810884755037,0.0135641547861507,0.015907005200367,0.0179375401986707,0.020324288956591,0.0221582822211527,0.0240743968584347,0.0264106381886327,0.028375140127323,0.0303442308880786,0.032497678737233,0.0342397089676412,0.0360330510054049,0.0378920719243818,0.0396497759106554,0.041635408852213,0.0562730338369021,0.070081088150667,0.083619966442953,0.0962864833038943,0.108641558770191,0.1245200799602314,0.1367272881607707,0.1481863851164374,0.1588272989426465,0.169611648403491,0.1825531823271036,0.1948658614388131,0.2066791320607035,0.2173594479621184,0.2270336875921403,0.2374206696423627,0.2467551309665971,0.255807674567729,0.2638362137487793,0.271378318609421,0.278200363539532,0.2847568250403537,0.2913797591159698,0.296701584485941,0.3022863112882064,0.3072429474618257,0.3116234221598878,0.3162066903334987,0.320736873469705,0.3246092666235087,0.323318814978627,0.3227188210178362,0.3214749195960052,0.3201795020266358,0.3192814157182864,0.3176092900371724,0.3161381545500762,0.3164473575863375,0.3165084153155315,0.3173152727012112,0.3176174465127637,0.3178843407901,0.3190382275187781,0.3195159053286206,0.3216685532622046,0.3234495719356859,0.3256743256743257,0.3285502538711407,0.3329345531315975,0.3350989684973515,0.3371960399653269,0.3410548635038431,0.3449074074074074,0.3444976076555024,0.3487956341738803,0.3540189125295508,0.3552147239263803,0.363508064516129,0.3717984026438997,0.3800599700149925,0.0,2.101502888722825,54.70906115910002,173.3084410677414,258.9962460958865,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95784,44651,422.3565522425457,6088,62.44257913639021,4728,48.79729391130042,1849,18.98020546229015,77.37208356525132,79.71116870167683,63.35007434272507,65.07955591703302,77.13719807708631,79.47630380786565,63.26380862094184,64.9955300836572,0.2348854881650055,234.86489381117792,0.086265721783235,84.02583337581859,166.73998,116.6918197356754,174079.15727052535,121828.09209855027,359.87813,233.8407514539279,375173.129123862,243588.12688332915,372.29695,180.51380855107752,384811.2315209221,185432.77502469387,2703.83048,1248.9127180871749,2793483.212227512,1274526.2236774145,1115.83977,494.808896035952,1152143.990645619,503778.0068027558,1804.53778,754.4548529314924,1854003.215568362,761799.3860396342,0.37951,100000,0,757909,7912.688966842061,0,0.0,0,0.0,30755,320.52326066984045,0,0.0,34065,351.8437317297252,1571821,0,56539,0,0,6600,0,0,61,0.6264094211976948,0,0.0,0,0.0,0,0.0,0.06088,0.1604173803061843,0.303712220762155,0.01849,0.3465625,0.6534375,24.275693202794265,4.302950392842126,0.3187394247038917,0.2478849407783418,0.2131979695431472,0.2201776649746193,11.346286140859988,6.06349803739475,19.68659619534229,12253.159698943322,54.11537658154801,14.289262694146734,17.092239641085207,11.35510266106376,11.378771585252306,0.5666243654822335,0.7935153583617748,0.696748506967485,0.5724206349206349,0.1171950048030739,0.7362471740768651,0.91220556745182,0.8567708333333334,0.720754716981132,0.1469194312796208,0.5004410467509556,0.7148936170212766,0.6420302760463046,0.5195154777927322,0.1096385542168674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0049470824378573,0.0071137180085648,0.0095793419408579,0.0118173497406691,0.0138459032415702,0.0160331875770826,0.018337857419842,0.0204381948986265,0.0226998260157609,0.0246974308523175,0.0266936237030347,0.0287814154288944,0.0309411037891268,0.0329469754779631,0.0348500816233752,0.0369212615540673,0.0388982795988841,0.0408769742310889,0.042905183812429,0.0581458446383103,0.0712672049533531,0.0844794330999203,0.0976537463356203,0.1097731845811868,0.1246764771130666,0.1373544278311733,0.1487065528277211,0.1599662847022171,0.1697428041948303,0.1836135402884894,0.1963253174817616,0.2074147316723349,0.2171869534802378,0.2272817242137673,0.2377556557077524,0.246904629113218,0.2563174460431655,0.2650926072861644,0.2726741922927209,0.2802793774139087,0.2872204883636661,0.2934036190858912,0.2989357499431362,0.3047419127818089,0.3091905201600492,0.3147434292866082,0.3195230164884758,0.3239558677065953,0.3267818773809994,0.3251512300040328,0.3237923883036437,0.3221779136781884,0.3216897418851345,0.3211277648212243,0.3199436869730218,0.317539668728544,0.3181877829538744,0.3188038866840016,0.3203543616489248,0.3201857886653931,0.3205862600244933,0.3227764636928809,0.3228845724492074,0.3245704673795506,0.3252870563674321,0.3258369098712446,0.3290408105293059,0.3314460542973695,0.3351926371568588,0.337025893508388,0.3401432740780047,0.3414066431806744,0.3466372153248533,0.3493066691821526,0.3503312825366777,0.3546865489957395,0.3514048278591214,0.3508249932377603,0.3470919324577861,0.0,2.243596313409937,58.231591151264674,180.36087513358595,248.94992911348672,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95646,44541,422.0354222863476,6101,62.52221734311942,4761,49.18135625117621,1892,19.425799301591283,77.25911226955019,79.6565435451953,63.27736057920528,65.04624461077006,77.02406883889286,79.42220497542588,63.18968482691587,64.96121898176122,0.2350434306573277,234.33856976942025,0.0876757522894067,85.02562900883959,166.36796,116.56205341998376,173941.3671246053,121868.19461345352,358.61078,232.30409247649385,374288.6268113669,242233.37720140675,364.20837,176.3689961298097,377130.773895406,181473.6676185024,2713.95032,1247.6093278548758,2804022.666917592,1270995.2556707507,1113.33582,490.5330944815204,1149812.3183405474,498712.2888065871,1842.55984,780.1920496066539,1893435.4808355807,786714.8597262834,0.37907,100000,0,756218,7906.425778391151,0,0.0,0,0.0,30630,319.6369947514794,0,0.0,33280,344.33222507998244,1568311,0,56288,0,0,6471,0,0,54,0.5436714551575602,0,0.0,0,0.0,0,0.0,0.06101,0.1609465270266705,0.3101130962137354,0.01892,0.332137845002339,0.667862154997661,24.78320697335568,4.261141916757423,0.328922495274102,0.2390254148288174,0.215921024994749,0.2161310649023314,11.010465003792731,5.742304682814236,20.20912314614665,12264.596806175156,54.09779544245869,13.65211472275047,17.68663449226447,11.464673628219389,11.294372599224369,0.5599663936147868,0.7776801405975395,0.6896551724137931,0.5739299610894941,0.107871720116618,0.7157561361836896,0.914572864321608,0.8438287153652393,0.726530612244898,0.1210762331838565,0.5037164093767867,0.7040540540540541,0.6372968349016254,0.5261813537675607,0.1042183622828784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487161046564,0.0046542755452803,0.0068002354708401,0.0090330840513737,0.0112416704817132,0.0134540565864787,0.0158859636600934,0.0177016445991608,0.0197094693368499,0.0219563125678137,0.0243907440253442,0.0266862441087985,0.0285831833376189,0.030482214415955,0.0328376384144642,0.0348967057509771,0.0368486480886771,0.0386763270983412,0.040700637605184,0.0429810478910827,0.0572240683846427,0.0712939106391001,0.0853197521789352,0.097833984436699,0.110098524768472,0.1248014233970896,0.1376541439632922,0.1497735869159874,0.1609422784918411,0.1714469798657718,0.1844237096165255,0.1963221429964673,0.2077714111418549,0.2184989973591646,0.2275875761051795,0.2378768020969855,0.2473254252461951,0.2564553792006497,0.2649822533673098,0.2735756893123541,0.2806207128680695,0.2871555435636944,0.2935221230535511,0.2998100185171825,0.3050969393976344,0.3096559652874785,0.3148775894538606,0.3190123771851473,0.3224323938359276,0.326387786421125,0.3252146676027434,0.3242019220148017,0.3239283239283239,0.3231837529235731,0.3218891807977072,0.3195732054179542,0.3166362264750258,0.3168522300546808,0.3173220379675201,0.3182477308938577,0.3203852508260739,0.3216477295221505,0.322398522436301,0.3231325947105075,0.3262133589620374,0.3270546608736374,0.3265433854907539,0.3303456300908891,0.3337311756239688,0.3366812227074235,0.340154968094804,0.3463497453310696,0.3494528990064143,0.3503787878787879,0.3528863191271099,0.3575399172087522,0.3628318584070796,0.3652015393963945,0.3657174762702401,0.3755406999606763,0.0,2.3132100409548726,55.2702677583093,180.88988229371915,260.83685897054045,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95621,45043,426.6635990002196,5969,61.11628198826618,4723,48.84910218466655,1844,18.96027023352611,77.28554750318864,79.71840731866871,63.27381344368565,65.07260667908955,77.05317782784397,79.4841449990836,63.18806557710003,64.98786023856967,0.2323696753446711,234.26231958511323,0.0857478665856135,84.74644051987923,165.84392,116.17024513584244,173438.80528335826,121490.30561889382,359.22879,232.60696988967385,375174.3131738844,242753.79873633807,369.12997,179.1020125484476,382284.5922966712,184482.86436799573,2693.23052,1244.4973182259562,2788373.7672686963,1273295.278470165,1147.5952,510.0850428028239,1189659.4158187008,522954.2389253653,1804.85228,761.3987514138645,1857911.2119722653,772285.3867056132,0.38272,100000,0,753836,7883.582058334467,0,0.0,0,0.0,30623,319.6996475669571,0,0.0,33731,349.02375001307246,1572435,0,56428,0,0,6479,0,0,66,0.6902249505861684,0,0.0,0,0.0,0,0.0,0.05969,0.1559625836120401,0.3089294689227676,0.01844,0.336951316839585,0.663048683160415,24.48889566990609,4.34601965929366,0.319923777260216,0.2343849248359094,0.2263391911920389,0.2193521067118357,11.238256595411668,5.863359187035354,19.71809873120498,12362.538151156845,53.84795548916967,13.467853176720132,17.03761683715585,11.922626593219956,11.419858882073749,0.5659538428964641,0.8066847335140018,0.7114493712772998,0.5463049579045838,0.1167953667953668,0.728414442700157,0.9209302325581395,0.8518518518518519,0.6844106463878327,0.1477832512315271,0.5059437518121195,0.7341211225997046,0.6646072374227714,0.5012406947890818,0.1092436974789916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023003648155654,0.00459483309497,0.0068127360597815,0.0090664227270417,0.0110995808407601,0.0136193706770976,0.0158011241342024,0.018020594965675,0.0198525125037076,0.0221214014317462,0.0244455386635481,0.0268492925473433,0.0290575592885375,0.0309546143300382,0.0331034197918387,0.0352916839056681,0.0371498740945689,0.0392659826361483,0.0413418403988467,0.0434945866449715,0.0578679990801329,0.0724959654601471,0.0859130361683794,0.0986314647225529,0.1111005482143423,0.1264376337025819,0.1389181090816359,0.1511213917196094,0.1630786021528387,0.173456670749264,0.1865410759370751,0.1985775619064139,0.2102045486743022,0.220355882804111,0.2304953201997596,0.2409028864400572,0.2510087969328102,0.2600477875707233,0.2688356553558035,0.2766606287116226,0.2833269638328179,0.2897026618730311,0.2962681966902176,0.3015691971521533,0.307368369805993,0.3117718206951027,0.315717614049152,0.3195102685624013,0.3236968730140202,0.3279180039888523,0.3273442340328098,0.3262412322926695,0.3255210902377496,0.3241684374864478,0.3232387773600606,0.3223788127405726,0.3201421161990261,0.3211647610430205,0.3212123285328225,0.3221725125268432,0.322750628211379,0.323047137381959,0.324337359503439,0.3250553233341529,0.3254149352676963,0.3260525153884113,0.3273324275362319,0.3302167047124675,0.3323133627733927,0.3356607495069033,0.3378084179970972,0.3412736223598539,0.3439326336957204,0.3473158173695767,0.3512404402163775,0.3530377668308703,0.3578803522623747,0.3637462235649547,0.3661321011144333,0.3661284265865565,0.0,2.0988644788866844,55.95147358814171,181.733537911956,254.0605251520289,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95797,44830,424.2408426151132,5993,61.23365032307901,4673,48.08083760451789,1829,18.70622253306471,77.35864855579545,79.6621754892607,63.35358995694328,65.05355883307996,77.13093499251335,79.43517974822853,63.269384556164766,64.9717153477533,0.2277135632821085,226.99574103216943,0.084205400778508,81.84348532665808,166.84096,116.90420701379736,174160.9444972181,122033.26514796638,359.24169,232.9630283821534,374308.506529432,242489.4917191075,369.0307,179.50283773574594,379166.0072862407,182963.1821114582,2676.06416,1229.9898360723332,2757742.183993236,1248222.7586170062,1083.67717,476.9122674246462,1114134.5344843783,480748.4132328209,1794.87958,748.9927549793877,1838383.2270321616,754743.3272084334,0.38086,100000,0,758368,7916.406568055368,0,0.0,0,0.0,30603,318.736494879798,0,0.0,33664,345.4909861477917,1571515,0,56352,0,0,6700,0,0,74,0.7620280384563192,0,0.0,2,0.0208774805056525,0,0.0,0.05993,0.1573544084440477,0.3051893876188887,0.01829,0.3385964912280702,0.6614035087719298,24.684108989850035,4.358215554708032,0.3154290605606676,0.2456665953349026,0.2152792638561951,0.2236250802482345,11.48629797049345,5.953724125507432,19.417657965439087,12267.33724152654,52.97739376074973,13.801021756581008,16.59348404968683,11.285654914369616,11.29723304011229,0.5568157500534988,0.7787456445993032,0.6926729986431479,0.5854870775347912,0.0937799043062201,0.7448979591836735,0.923963133640553,0.8900523560209425,0.7233201581027668,0.1219512195121951,0.4863195057369814,0.6904761904761905,0.6236263736263736,0.5391766268260292,0.0869047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024391231301742,0.0046389611968114,0.0067317538043533,0.0089094543720255,0.0110946294678235,0.0133055287116626,0.0155339608034877,0.0178001285281486,0.0200437243323866,0.0223715706131467,0.0246845296624057,0.0266170225860052,0.0287463784494626,0.0307377260051246,0.0328697068739754,0.0350116189000774,0.0370627127588026,0.0391445424670599,0.0410075305115554,0.0430052676507943,0.0573985978968452,0.0707774014134571,0.0841010806108438,0.0965677413930808,0.1088195930067129,0.1248441297685723,0.1379123908065473,0.1495101428617017,0.1601311027362892,0.1708156438955358,0.1836631424818587,0.1962852383115899,0.2071162922203614,0.2174635992692505,0.2283175903296122,0.238526924739286,0.2469951453601919,0.2558550248599519,0.2643367752184273,0.2721263775288107,0.2786289576004443,0.2851274008356839,0.291407665257699,0.2969654825134581,0.3027621085391947,0.307693256072001,0.3137416804283641,0.3189373418284944,0.3231611792275722,0.327061369364139,0.3265498398341813,0.3259021894597865,0.3256366962149993,0.3248722906865999,0.3237546755328623,0.3217650657693484,0.3198119777158774,0.320844899232955,0.3213656801901147,0.3226660465449081,0.3228631436822563,0.3238988112897802,0.3261900763999664,0.3263736755040908,0.3285868911605532,0.3295445637689111,0.330973047053449,0.334815796114055,0.3382715180519389,0.3428753433929211,0.3464165376559512,0.3492359299291837,0.3515970205782098,0.3503560217441237,0.3512272812441446,0.351967116852613,0.3558702603928734,0.3579096617378975,0.3574811925327389,0.3583792289535799,0.0,2.76760940648803,55.20357307749054,168.8095814741638,259.9670154307211,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95865,44944,424.7222656861212,6007,61.39884212173369,4725,48.745631878162,1883,19.28753976946748,77.41454581429173,79.70208956414005,63.37712166936033,65.06748979323118,77.17231717067766,79.46176959811,63.28704040138148,64.98049020387207,0.2422286436140694,240.31996603005723,0.0900812679788529,86.99958935910956,168.6806,118.2094323599365,175956.397016638,123308.22756995408,365.03877,236.9622660826541,380243.69686538365,246642.79568419565,371.57915,179.7510564092881,384009.6281228811,184677.45645641387,2706.45152,1250.562940770292,2793559.3595159864,1274873.1036043316,1103.90575,492.134377002618,1136448.1823397486,498288.9240104499,1845.09884,778.4667051062569,1891216.544098472,783475.3021739376,0.37985,100000,0,766730,7998.018046210817,0,0.0,0,0.0,31082,323.6739164450008,0,0.0,34027,351.4525635007563,1559987,0,56041,0,0,6751,0,0,54,0.5528607938246493,0,0.0,0,0.0,0,0.0,0.06007,0.1581413715940502,0.3134676211087065,0.01883,0.3410852713178294,0.6589147286821705,24.38159962007514,4.277412934983278,0.324021164021164,0.244021164021164,0.2133333333333333,0.2186243386243386,11.237591815559448,5.971623185084834,20.04296058111676,12183.728935091627,53.58114521924795,13.670717739208124,17.251419104628237,11.308018470365637,11.350989905045967,0.56,0.7762359063313097,0.7086871325930765,0.5625,0.0958373668925459,0.7349304482225657,0.9287469287469288,0.8894230769230769,0.7436974789915967,0.111587982832618,0.4940250655785485,0.693029490616622,0.6412556053811659,0.5064935064935064,0.09125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002277673735891,0.0045691707613596,0.0069156433474958,0.0088725559864373,0.0113324524850086,0.0134311500931022,0.0157599837000814,0.0178709861683463,0.0201642559450845,0.0224308815858111,0.0246143445393645,0.0267417528311176,0.0289040504716302,0.0309103260869565,0.0329508315033043,0.0352919304696295,0.0369661479887435,0.0390594233838373,0.0412012623012083,0.0430734985125548,0.0572423572590399,0.0703969232698618,0.0833787294669795,0.096011087894665,0.1078548035509314,0.123248027545707,0.1352840222895523,0.1470012968514148,0.1576510253291509,0.1682142895393546,0.1809536104656166,0.1930346214562204,0.2050270587468214,0.2156228485252494,0.2248466729682794,0.2353702802000797,0.2450238076652876,0.2543997662448585,0.2627478110964932,0.271414832963158,0.278411916409349,0.2842159419103633,0.2911314550658813,0.2972691215414664,0.302153464744914,0.3071897036343015,0.3120869216903665,0.3168891320668286,0.3224271806904061,0.3264696947684017,0.3255619755680364,0.3240502497351294,0.3234192367272215,0.3227358081756464,0.3219664339818803,0.3195152182894918,0.3177852242910884,0.3185469328874463,0.3187962994572082,0.3196052584701984,0.319973841554559,0.3201972386587771,0.3200075192681246,0.3217046492459177,0.3228599525100136,0.3242394351573045,0.3248212461695607,0.3284831074751764,0.3320976428621389,0.3379255740300871,0.3403899217442439,0.3445271661650562,0.3467988280032417,0.3512579797221179,0.3519932935916542,0.3565278924401462,0.3585742695426036,0.3671350030543677,0.3709411117226197,0.3610687022900763,0.0,2.1385558762121124,56.678266774039926,175.76908094273804,255.21927990447557,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95718,44534,421.9060155874548,5950,61.12747863515744,4699,48.60109906182745,1840,18.867924528301884,77.36002699221102,79.73215827543298,63.33690834044432,65.08843267184785,77.13589810638287,79.50825167463472,63.253923330924685,65.00767900196767,0.2241288858281507,223.90660079825864,0.0829850095196391,80.75366988018118,166.97032,116.93912888837482,174439.83367809607,122170.46834281411,359.33911,232.5388292713258,374931.9041350634,242459.13963029505,367.82998,177.29265149377775,381072.797175035,182690.1104508664,2689.10928,1227.0586363398654,2783701.999623895,1256245.676194514,1115.27192,488.0794993625006,1153877.1182013832,498626.8824698597,1798.16896,747.5609767868783,1846551.9129108423,755358.2871577761,0.3792,100000,0,758956,7929.083349004367,0,0.0,0,0.0,30637,319.5637184228672,0,0.0,33670,348.55513069642075,1572673,0,56427,0,0,6634,0,0,52,0.5432625002611838,0,0.0,0,0.0,0,0.0,0.0595,0.1569092827004219,0.3092436974789916,0.0184,0.3412367830823454,0.6587632169176546,24.384454467395063,4.367343481006065,0.3253883805064907,0.2366460949138114,0.2204724409448819,0.2174930836348159,11.330554914570984,5.926536941501627,19.47093580280835,12209.477292488687,53.396442898625686,13.36926550705954,17.19052385567183,11.694007585927,11.142645949967326,0.5739519046605661,0.8012589928057554,0.6952256376716809,0.6032818532818532,0.1154598825831702,0.7303643724696356,0.9017632241813602,0.8756613756613757,0.7490196078431373,0.1073170731707317,0.5181870669745958,0.7454545454545455,0.635968722849696,0.5556978233034571,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890480193657,0.0045109428377378,0.0066975837959063,0.0086958288465836,0.0111884128727775,0.0131359211437415,0.0154026503567787,0.0177488824021719,0.0198619984666496,0.0217961055713671,0.024052164284689,0.026107757381627,0.0280428612562214,0.0299728081740276,0.0319538593287316,0.0341184011910423,0.0363110839454245,0.0383625342522627,0.0405641537693459,0.04239822446364,0.0560481218083273,0.0701337575618026,0.082557932170319,0.0956637884795389,0.1080080966538048,0.1238014694222739,0.1360347936777341,0.1480216248430283,0.1593399551425825,0.1694680725540884,0.1830090707344925,0.1948147506925207,0.2066342057212416,0.2168865666094598,0.2266468712196195,0.2372830673474134,0.2470771976796073,0.2563133868537633,0.2648882741732515,0.2720153867289462,0.2793932316657224,0.2854021081169514,0.291837627555545,0.2969889254714157,0.3022996041863966,0.3077320920610292,0.3127603417434922,0.316812809759817,0.3208394250300811,0.3257108192224508,0.3248448793356394,0.3245489699588534,0.3239174560216509,0.3232971800433839,0.3221505440275878,0.3205860289952695,0.319045661522894,0.3194753733298401,0.3201425356339085,0.3206089201459984,0.3217823632761392,0.3232667704863096,0.3240825688073394,0.3256636774294043,0.3275478202580738,0.3282965963081237,0.3283302063789868,0.3320028913542223,0.3335087903989893,0.3344216603623333,0.3384087791495199,0.3412829385147724,0.3445805843543826,0.348423851120395,0.3537757864277046,0.354276973761619,0.3595009888939601,0.3639119013942211,0.3631346578366446,0.3664739884393063,0.0,1.943310151877986,54.46277534995924,181.1321817291814,255.8408271412772,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95751,44717,423.3585027832608,5973,61.29439901410951,4691,48.40680515086004,1908,19.54026589800629,77.33346816806463,79.69770052976457,63.32120940122799,65.07141959636154,77.09884479064392,79.46489276936957,63.23567652099322,64.98904519924908,0.2346233774207036,232.80776039500492,0.0855328802347656,82.37439711245997,168.86804,118.22509259818511,176361.6463535629,123471.3920462294,361.50325,233.8167796309993,376956.37643471087,243604.2968294357,365.65396,176.4973832101468,378862.98837610055,181853.4124370094,2715.05312,1224.300412663194,2804634.8549884595,1247776.9230859696,1143.20855,490.86768864046815,1178721.6843688316,497604.3982120883,1868.05018,767.4937047051817,1915428.998130568,771297.4396187931,0.37839,100000,0,767582,8016.438470616495,0,0.0,0,0.0,30816,321.2290211068292,0,0.0,33334,345.0303391087299,1562087,0,56079,0,0,6649,0,0,70,0.7310628609622876,0,0.0,0,0.0,0,0.0,0.05973,0.1578530088004439,0.3194374686087393,0.01908,0.3289829699188286,0.6710170300811714,24.6749415676787,4.374202747445102,0.3172031549776167,0.2321466638243444,0.2229801748028139,0.2276700063952249,11.136254155263208,5.831869963062928,20.129014467586263,12186.017210385628,52.813615683341965,13.12776300845028,16.446625822897758,11.695986071762675,11.543240780231253,0.5593690044766574,0.7961432506887053,0.665994623655914,0.6089866156787763,0.1207865168539325,0.7367979882648784,0.9108910891089108,0.8448275862068966,0.7755102040816326,0.1377551020408163,0.4988564894225271,0.7284671532846715,0.6114035087719298,0.5580524344569289,0.1169724770642201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986929429049,0.0045633391473654,0.0069829283640866,0.0092259546018004,0.0111368767925794,0.0132472583979065,0.015281572401419,0.0173705374456532,0.0197763787253178,0.021915592724146,0.0238971530504495,0.0259637595605975,0.0281254177678598,0.0303810504634397,0.0324164826775065,0.0344392764857881,0.0367375254977893,0.0386826322452113,0.0408154778612939,0.0428062574207928,0.0576728358333594,0.0710734806225078,0.0842129561622563,0.0971887719150636,0.1095503248122838,0.1251612493920104,0.1372374283895608,0.1478986409544182,0.1586321792434695,0.1689935447897231,0.1819435169427629,0.194173076715026,0.2052612118839445,0.2160465472362578,0.2260863826838684,0.236619499988928,0.2457473881596571,0.2550323488045007,0.2632695667960151,0.2718084314870139,0.2791143996762819,0.2854103343465045,0.2915247421704986,0.2976057873115111,0.3025126481685937,0.3070932020916641,0.3115198620465593,0.3164392957853822,0.3211260684589621,0.3262248598747115,0.3247162418709859,0.322707465599956,0.3218368151359874,0.3214497319325424,0.3206854527079246,0.318444666001994,0.3160924096595684,0.3164669329782512,0.3170389628159956,0.3182500536135535,0.3190939238941037,0.3201913005671825,0.321791919614821,0.3228647428303194,0.3240718447536957,0.3255132731790244,0.3266317348217337,0.3300078678206137,0.3332981307424226,0.3367593952140958,0.3374744027303754,0.3402401445117415,0.3421981346105369,0.3432300412150816,0.3456312511794678,0.3492805755395683,0.3540382244143033,0.3637482058642608,0.3676222596964587,0.3713178294573643,0.0,2.2329202111681217,52.15159348770874,176.4914624193757,262.9775097892679,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95800,44715,423.23590814196245,5926,60.65762004175365,4655,48.03757828810021,1873,19.248434237995824,77.34149214859087,79.68010373149355,63.33904717832892,65.07209766236502,77.1104913541802,79.44852541467658,63.25387728954768,64.98845255059034,0.2310007944106757,231.5783168169645,0.0851698887812375,83.64511177468614,166.97274,117.04593870045623,174292.58872651358,122176.98853293566,360.58368,233.40238960467155,375867.70354906056,243111.96028221,368.09927,178.63508000908286,380162.5469728601,183358.995246234,2662.37816,1228.4869827201776,2751161.0855949894,1254524.1706676593,1108.7861,493.5080664931434,1142388.6221294363,500332.06057817646,1828.05196,767.2867368829261,1880885.5323590816,778373.0118418628,0.3803,100000,0,758967,7922.390396659708,0,0.0,0,0.0,30712,320.0208768267224,0,0.0,33603,346.71189979123176,1572626,0,56422,0,0,6734,0,0,70,0.7306889352818372,0,0.0,2,0.0208768267223382,0,0.0,0.05926,0.1558243491980016,0.3160647991900101,0.01873,0.3309108527131782,0.6690891472868217,24.725420401514285,4.397285410147924,0.3074113856068743,0.236734693877551,0.2354457572502685,0.2204081632653061,11.244548480359724,5.82583428318489,20.049399134117103,12302.297085026335,52.94703425584344,13.191120305398876,16.27870919622946,12.20189906970825,11.275305684506858,0.5705692803437165,0.7921960072595281,0.7092941998602376,0.5757299270072993,0.1335282651072124,0.7468652037617555,0.9225181598062954,0.8793565683646113,0.7381818181818182,0.1906976744186046,0.5039952648712637,0.714078374455733,0.6493383742911153,0.5213154689403167,0.1183723797780517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0045821801851119,0.0067481861078695,0.0087692557818152,0.0112835122348272,0.0136190932149005,0.0158799771540469,0.0180743191495879,0.0201445911261542,0.0220972977400956,0.0243927447220826,0.0264319894847097,0.0285840653350064,0.0304207186418328,0.0325230096165751,0.0347190639599785,0.0366132723112128,0.0388792647379176,0.0407423186026454,0.042702033083145,0.0579158232998768,0.0722575383714608,0.0862804271059277,0.0990133341739432,0.1108781099507887,0.1266672303367224,0.1395166419334322,0.1508474936730397,0.1623357913496323,0.1724732888236365,0.1844393740448156,0.1969601971763993,0.2083799550259089,0.2184412973161989,0.2286235748133651,0.2391701446932878,0.2485900265275641,0.2572897836363024,0.2658679379890609,0.2742011090150346,0.2816403814625811,0.2885428097784211,0.2943269117125635,0.300221411046616,0.3064521998617125,0.3099926162933792,0.31480301383214,0.3196378918500273,0.324421759917302,0.3282000658111221,0.3269698721482059,0.3255823535875178,0.3238290925467237,0.3225787816643078,0.3219910846953938,0.320822299438228,0.3191283829793973,0.3197792813505879,0.3198167396061269,0.3203982411611196,0.3201321370922332,0.3205592854455073,0.321414323807924,0.3235755592414937,0.325177946676318,0.3271072045204834,0.3278109567015045,0.3298540609137055,0.3321891145870196,0.3349179083609635,0.3373555013125777,0.3384079335298847,0.3430243654176474,0.3465010415862973,0.3484330484330484,0.3506028411125701,0.3560770904569474,0.3595621643948781,0.3611890072910824,0.3668206312548114,0.0,2.147725564146133,55.82690647170059,174.9259657966322,251.09601619555335,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95707,44699,423.1874366556261,6070,62.22115414755452,4766,49.264944047979775,1874,19.2148954621919,77.3419109081298,79.71097231958072,63.33255108723839,65.08083832708597,77.10523425210002,79.47505089077099,63.24498524590399,64.9958617627899,0.2366766560297861,235.921428809732,0.0875658413343956,84.97656429607048,166.03598,116.30473908832305,173483.63233619276,121521.66412939812,359.79782,232.7346616131979,375409.4371362596,242646.777783441,367.86728,177.57350141510412,380848.7049014179,182807.9029191502,2738.19292,1268.5858974402474,2830090.380014001,1294814.6460516918,1145.48502,509.990180518324,1182748.5554870595,518777.9106492267,1839.7856,774.7243656729335,1888013.583123492,780747.629061759,0.38171,100000,0,754709,7885.619651645125,0,0.0,0,0.0,30602,319.2034020500068,0,0.0,33654,348.17724931300745,1576860,0,56655,0,0,6679,0,0,75,0.7731931833617186,0,0.0,1,0.0104485565319151,0,0.0,0.0607,0.159021246496031,0.3087314662273476,0.01874,0.3468071720666876,0.6531928279333123,24.569372663974395,4.223175414577767,0.3252203105329416,0.2396139320184641,0.2108686529584557,0.2242971044901384,11.17573826652597,5.857681207895932,19.96978831197143,12309.089088631732,54.363309307510335,13.89967813971789,17.45883221930027,11.186616395965746,11.818182552526412,0.5704993705413345,0.8029772329246935,0.6980645161290323,0.591044776119403,0.117867165575304,0.7433962264150943,0.9123595505617976,0.89,0.7551867219917012,0.1715481171548117,0.5039232781168265,0.733142037302726,0.6313043478260869,0.5392670157068062,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0044289044289044,0.0068573747210387,0.0090395709758673,0.011215276365559,0.0133175857294127,0.0153929274085853,0.0176267657385482,0.0195829926410466,0.0219024420199373,0.0240186982952157,0.0261633876863679,0.0281974023837191,0.0304235393507309,0.032587608866141,0.0345886268956035,0.0368479375304218,0.038989207139892,0.0409149987002859,0.0430700291788245,0.0576814621409921,0.0713769822578112,0.0852727005644975,0.0976438413800357,0.1099378685429171,0.1254047190773463,0.138026883944959,0.1493771957840945,0.1609901497831243,0.1715333948379068,0.1847152965503871,0.1971497208154785,0.2082096126863967,0.2182736676361887,0.2282415044539756,0.2386481879164914,0.249021422756521,0.2575459501995391,0.2666689353206742,0.274367983153847,0.2814043611544913,0.2885375956565491,0.2947992614335764,0.3001545891404125,0.3054121363056551,0.3110990555569255,0.3148723473554982,0.3191529974676457,0.3236432853794657,0.3278727414104406,0.3271865830349691,0.3264111268399279,0.325714767647803,0.3252105202445495,0.324187233032748,0.3218434729440538,0.3194760460118822,0.3199029205818205,0.3216414214723612,0.3224279872136007,0.3235112185795422,0.3242019067209937,0.325748829789467,0.3263573013063255,0.3270904138645841,0.3282950896702952,0.3300962554625689,0.3324721154452076,0.3359050236031847,0.3369916590174402,0.3415246882565203,0.3458706786171575,0.3505500063219117,0.3532159264931087,0.3510668563300142,0.3594497607655502,0.3630769230769231,0.3651119786316005,0.3627698345948977,0.3627262225644975,0.0,2.028660909300697,58.50340378629794,179.43246718839887,253.61989832249472,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95708,44862,424.4890709240607,6188,63.47431771638735,4875,50.351067831320265,1929,19.79980774856856,77.33810060160408,79.72077954497801,63.31256206328344,65.07479966313427,77.09414411264933,79.47589074903036,63.22230267421025,64.98641347983865,0.2439564889547512,244.88879594765933,0.0902593890731893,88.38618329562564,167.86352,117.55967881243268,175391.31525055377,122831.61158151114,364.44993,236.2005896347468,380181.16562878754,246180.51744341827,374.37287,181.5372476186499,387315.84611526725,186720.3983203901,2795.06784,1285.3977177813515,2890595.227149246,1313224.3467435874,1180.39937,523.4437728506932,1220397.9395661803,533992.6376524265,1898.62144,798.4586473862514,1951422.263551636,807668.7792977947,0.3819,100000,0,763016,7972.332511388808,0,0.0,0,0.0,31050,323.7869352614202,0,0.0,34255,353.99339658126803,1560807,0,56097,0,0,6608,0,0,70,0.7313913152505538,0,0.0,0,0.0,0,0.0,0.06188,0.1620319455354805,0.311732385261797,0.01929,0.3330770413655236,0.6669229586344764,24.45877354944976,4.359307587178214,0.3093333333333333,0.2383589743589743,0.226051282051282,0.2262564102564102,11.225237060283169,5.768259828123806,20.554296843281247,12303.37336579558,55.31260995174303,13.837871621858705,17.12773457490284,12.18380176601142,12.163201988970048,0.5671794871794872,0.7891566265060241,0.7181697612732095,0.5680580762250453,0.1260199456029011,0.7393658159319412,0.9301204819277108,0.9177718832891246,0.71875,0.1632653061224489,0.5050251256281407,0.7108433734939759,0.6516357206012379,0.5224586288416075,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024730899434432,0.0049807263136538,0.0069851970678416,0.0091977153078439,0.0116400932021448,0.0137911365974393,0.0158701017889562,0.0180477391810595,0.0200848800940839,0.0222904827727435,0.0243644828187327,0.0265846570897553,0.0285837668880709,0.0307804792651405,0.033021446919133,0.035011574074074,0.0369522902344073,0.0391849692392285,0.0411377600349312,0.0433555215267143,0.0582516160698434,0.0727849426346202,0.0863552421724166,0.0996403104688584,0.1117098686014384,0.1277820089701278,0.1406758979256194,0.1521572469014864,0.1625543646680416,0.1731980218200542,0.1855842266874966,0.1981378227683646,0.2093575145326685,0.2189815372155888,0.2288928516390375,0.238894985976698,0.248302055406613,0.2574358858892666,0.2655263277452183,0.2734453820049528,0.2802738107647938,0.2875862149724229,0.294616523541605,0.3000659432887717,0.3045824723471496,0.3089322521321632,0.3136539690896101,0.3184037115872388,0.3233784414372375,0.3277537226739888,0.3262470548636823,0.325469360788416,0.3238894915540778,0.3225680596497312,0.3214344097846602,0.3194231594433887,0.3171932379384576,0.31791252974481,0.3182532900358913,0.3189148643580448,0.3196228042218931,0.3203985213592425,0.3220442058465797,0.3235788388715857,0.3258045894068408,0.3267542720614969,0.3261023879156137,0.3286081665934893,0.3307920965203706,0.3339123568890643,0.338626725615808,0.3390517286744198,0.3428429051949669,0.3484837083301979,0.3531653806823464,0.3565380997177799,0.3580358487724054,0.36016779864163,0.3583987016499865,0.3619909502262443,0.0,2.235234225210704,56.7151441364553,185.2088870903413,266.0445833395244,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95648,44584,423.30210772833726,6052,62.1236199397792,4748,49.03395784543326,1857,18.975828036132487,77.27782633283482,79.68909024697201,63.2892740309558,65.07239619005455,77.05524419878175,79.46898271216156,63.2058183284306,64.99290554349263,0.22258213405307,220.1075348104524,0.0834557025251996,79.49064656192206,166.45222,116.60234283517232,174025.82385413183,121907.76893941568,359.93859,233.049413869122,375716.92037470726,243054.2655038495,362.83313,175.7985859278698,375819.1493810639,181074.61226007243,2710.17596,1238.6871291148057,2800872.950819672,1262431.1319785106,1112.94085,492.1047995749318,1149151.3361492138,500067.1415763341,1816.9016,755.2537910772969,1859539.4362663096,755619.9472024149,0.37884,100000,0,756601,7910.264720642355,0,0.0,0,0.0,30750,320.874456339913,0,0.0,33221,343.7186349949816,1571754,0,56393,0,0,6438,0,0,51,0.5332050853128136,0,0.0,0,0.0,0,0.0,0.06052,0.1597508182874036,0.3068407138136153,0.01857,0.3340700978844332,0.6659299021155668,24.54155316251888,4.324810277482903,0.3245577085088458,0.2411541701769166,0.2108256107834877,0.2234625105307497,11.167590830949994,5.86306421226396,19.60129682435072,12184.916969378524,53.570016520714056,13.611359123665231,17.426639294793016,10.952269651712912,11.579748450542892,0.5621314237573716,0.7816593886462883,0.7073329007138222,0.5584415584415584,0.117813383600377,0.7417802726543705,0.93,0.8746987951807229,0.7227272727272728,0.1462264150943396,0.4981433876035418,0.702013422818792,0.6456483126110124,0.5121638924455826,0.110718492343934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024116896013618,0.004391124452377,0.0066797961545489,0.008841732979664,0.0109873340454753,0.013131488065525,0.0151555328913819,0.0173940576261145,0.0195883881262658,0.0216961514428248,0.0240307692307692,0.0261619844897539,0.0280807540335857,0.030033496521515,0.0320469140391087,0.033987360756286,0.0360506927245785,0.0381492326542479,0.0398759599575433,0.0419686147750378,0.0570150688653416,0.0708817276373804,0.0840672201870493,0.0968607600265199,0.1087940732610783,0.124642713472084,0.1364181862594122,0.1475163551899759,0.1591011187883714,0.1694778771513544,0.1813332471227208,0.1936853046905453,0.2051418806395785,0.2158521371823772,0.2261448701012769,0.2362927175213864,0.2458547805406371,0.254304233340085,0.2635933403697524,0.2706096472150363,0.2769606142602743,0.2844318726403516,0.2909757539917209,0.2969659932417859,0.3023309485345026,0.3080915804657929,0.3135374677649533,0.319050103719918,0.3232717281422536,0.3273936802090758,0.3269560058784667,0.3250779116908905,0.324185054988494,0.3235617707519036,0.3222429071412614,0.3199772880731692,0.3173623234407237,0.3176228496172524,0.318458904109589,0.3179899101935668,0.31852879944483,0.3202905434825634,0.3215109210581478,0.3224011974710127,0.3237612342000288,0.3245064120906277,0.327003678042939,0.3287183045288255,0.3318721719457013,0.3345729366602687,0.336995833905599,0.3380498962710782,0.3405596168389211,0.3411539931218953,0.3464003015454203,0.3482569245463228,0.3577699060526721,0.3578774167009461,0.354108440469536,0.3571703191080354,0.0,2.408415844611625,54.35353030208184,175.95651728381148,263.88007717273695,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95835,44684,423.7178483852455,5989,61.585015912766735,4659,48.207857254656446,1845,18.970104867741437,77.39792083527668,79.70311818770485,63.37134666233784,65.07225523168411,77.16933226785272,79.47300610612501,63.28748580843018,64.9896368450739,0.2285885674239551,230.1120815798328,0.0838608539076517,82.61838661020704,167.23608,117.08808397162484,174504.1790577555,122176.7454182969,360.30448,233.1459970144857,375567.9970783117,242883.1919596032,361.99317,174.79574171420478,375578.3168988365,180688.44735789613,2670.98112,1217.9339032365524,2764099.587833255,1247902.7737638152,1108.74549,485.100687338196,1146036.2185005478,495287.7417834775,1802.8883,751.97695225674,1854517.4518704023,761972.6906356036,0.38038,100000,0,760164,7932.008138988887,0,0.0,0,0.0,30661,319.5074868263161,0,0.0,33074,342.901862576303,1574248,0,56445,0,0,6579,0,0,63,0.657379871654406,0,0.0,1,0.0104346011373715,0,0.0,0.05989,0.1574478153425521,0.3080647854399733,0.01845,0.3279210442534225,0.6720789557465775,24.521350682057587,4.34329333468598,0.3213135866065679,0.2354582528439579,0.2223653144451599,0.2208628461043142,10.9876814689655,5.578720212485646,19.71506702612984,12251.647821698793,52.84927292569686,13.192962974571795,16.981040828774564,11.507692978819826,11.167576143530676,0.549903412749517,0.7839562443026435,0.6599866399465598,0.5694980694980695,0.1205053449951409,0.7194928684627575,0.8954869358669834,0.8230958230958231,0.7090163934426229,0.1210526315789473,0.4869002060641743,0.7144970414201184,0.5990825688073395,0.5265151515151515,0.1203814064362336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0047928340544538,0.0070287539936102,0.0088949361818791,0.0107453643461288,0.0129856913150556,0.0149273501660858,0.0169344554960469,0.0190448944561374,0.0211577418100714,0.0233797102637132,0.0253093132527648,0.0273491277457003,0.0295134601136082,0.0315392385232215,0.0334210933870218,0.0355354630472564,0.0373533435595539,0.0396041660176733,0.0417533927233369,0.0565575224008261,0.0707532369736649,0.084070796460177,0.0969217182867596,0.1094621230487072,0.1244661507886168,0.1369072864534735,0.1491639792671115,0.1606845276246635,0.1719415278686414,0.1846032908339076,0.1978218078778308,0.2090879443417762,0.2191018605566365,0.2288755236451198,0.2393415036478572,0.2474884317332887,0.2564526282656594,0.2656200408070732,0.2727979867307252,0.2805417836794601,0.2873277271665498,0.2932609903424471,0.2989508188876527,0.3041834310921518,0.3103206609944425,0.314836083992909,0.3197522402457289,0.3241685086800843,0.328442081436054,0.3275364652523382,0.326252417065511,0.324639024664307,0.3228227363083749,0.3215582260287166,0.3193109341145595,0.3181875552189827,0.3183730256158442,0.3191373284459978,0.3204879005652941,0.3204032393813006,0.3212911627172819,0.3220278696070636,0.323374065619265,0.3239409483900489,0.3261187024095129,0.3268515870746354,0.3303534763243516,0.3347985090372037,0.3361007388575514,0.3389582475876892,0.3413266396069216,0.346594868546088,0.3487340319742982,0.3497443665972353,0.3589347283319463,0.3602884762927728,0.3605827600161878,0.3569482288828338,0.3560864618885097,0.0,1.5328692182522514,56.16933957190184,170.7624168964367,256.9824248916032,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95555,44374,420.448956098582,6028,61.828266443409554,4752,49.16540212443096,1860,19.15127413531474,77.19945181010942,79.67135719370981,63.224607941291474,65.05414690885073,76.97503340243057,79.44664820158035,63.142325170874,64.97392975974282,0.2244184076788542,224.7089921294645,0.0822827704174713,80.21714910790934,165.59246,115.93735885120012,173295.4424153629,121330.49955648591,359.84017,232.86319682892545,376023.1489717963,243139.4974924656,365.01875,176.28248184310073,378285.9609648893,181621.7974995567,2707.29808,1239.3573299692573,2803516.9692847054,1267290.9737525585,1121.5311,493.2219198493385,1161910.9832033908,504385.2657517317,1816.6776,747.961016505656,1872441.5886138876,758606.2773131283,0.3782,100000,0,752693,7877.065564334675,0,0.0,0,0.0,30641,320.0774423107111,0,0.0,33415,346.07294228454816,1572714,0,56411,0,0,6550,0,0,72,0.7325623986185966,0,0.0,0,0.0,0,0.0,0.06028,0.1593865679534638,0.3085600530856005,0.0186,0.335915270312994,0.664084729687006,24.64902522012441,4.328253004787188,0.3181818181818182,0.2369528619528619,0.2283249158249158,0.216540404040404,11.310791648511378,5.847853326455748,19.59600267354877,12225.17181024279,53.896964539057606,13.40050270519782,17.17642887533686,12.068059233646508,11.251973724876429,0.57260101010101,0.7770870337477798,0.7182539682539683,0.5898617511520737,0.1166180758017492,0.7621359223300971,0.9328358208955224,0.9154228855721394,0.7142857142857143,0.1691542288557214,0.5059726962457338,0.6906077348066298,0.6468468468468469,0.5562060889929742,0.1038647342995169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022402205755643,0.0048903228424747,0.0069766024859858,0.0092423133235724,0.0114427658101559,0.0137005851291565,0.0158085421237944,0.0179542203147353,0.0201698731068358,0.0224331054837618,0.0244105238305429,0.0264773323187973,0.0286917745440314,0.0306578227994347,0.0328007771324638,0.0348739713265358,0.0366621379160141,0.038610640531299,0.0408533155559259,0.0429698918444899,0.0580340798543917,0.071680979793849,0.0844379040311136,0.097145686921156,0.1097148534105561,0.1253286404885082,0.1379365366408884,0.1491927308426972,0.160501762166447,0.1707707858402511,0.1837453159253139,0.1960848145495583,0.2082942472567028,0.2186602031191734,0.2278696122354395,0.2381602914389799,0.2472895711424639,0.2565329241323283,0.2640921193364131,0.2721655641308342,0.2793988031729832,0.2861146287697575,0.2921983965083732,0.2980882388260441,0.3030683063436016,0.3080020752526126,0.3136696245905137,0.3182733996429482,0.3223164098503239,0.3256530652734608,0.3241630669546436,0.3227838504693509,0.3212522916372867,0.3197655910866734,0.3197176596726877,0.3182655410590944,0.315807843634979,0.3165398926536929,0.3181389446245133,0.3200193614313117,0.3201588466677959,0.3203160674224225,0.3214067342764975,0.3212215181340164,0.3223918144215186,0.3226254785755493,0.3254514187446259,0.3278631615489001,0.3312643272791394,0.3351203240409816,0.3372024484243935,0.3374920702051173,0.3391560230403205,0.3398906273735379,0.3433853048268135,0.3481393975191967,0.3472936195947989,0.3420059582919563,0.3460601137286759,0.353811149032992,0.0,2.147169561164094,54.24676060647205,178.76881710924272,266.31814205556265,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95687,44479,421.593319886714,6091,62.495427801059705,4746,49.0766770825713,1890,19.36522202598054,77.33990302576841,79.73063546681121,63.32261558699434,65.0889676184877,77.10343349354274,79.49464425957486,63.23479720521372,65.0038490990317,0.2364695322256693,235.9912072363528,0.0878183817806217,85.11851945600313,166.04698,116.35832367675728,173531.38879889643,121603.06381928296,356.98926,230.89994640272303,372557.7664677542,240785.0976650152,364.50897,176.1871433180048,377638.0699572564,181632.24753487107,2722.74112,1243.529392834639,2819061.398100056,1273175.6172046764,1115.90526,489.1221436475975,1154851.202357687,499824.7825453874,1848.53264,776.3040031139674,1897710.2009677384,783437.3145141653,0.37927,100000,0,754759,7887.790399949837,0,0.0,0,0.0,30509,318.3086521680061,0,0.0,33325,345.06254768150325,1577775,0,56537,0,0,6558,0,0,49,0.4911848004431114,0,0.0,0,0.0,0,0.0,0.06091,0.1605979908772115,0.3102938762108028,0.0189,0.3245983465917954,0.6754016534082047,24.57192464018621,4.330624447508171,0.3314369995785925,0.2355667930889169,0.2161820480404551,0.2168141592920354,11.06690496081404,5.749048517066597,20.25026721868388,12245.09704151467,53.58040640829834,13.3940484062307,17.508178830690174,11.422568932707316,11.255610238670132,0.5655288664138222,0.7978533094812165,0.7018436109345201,0.557504873294347,0.1127308066083576,0.7339667458432304,0.9317647058823528,0.8556701030927835,0.6818181818181818,0.1634615384615384,0.5044501866207293,0.7157287157287158,0.6514767932489451,0.5191326530612245,0.099878197320341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0046221681617758,0.0068289515073413,0.0087860073944663,0.0111853411020611,0.0134876524359209,0.0157887226322012,0.0178002776190087,0.0199646299949909,0.0220579956395795,0.0241226946064812,0.0264330294818099,0.0282993644982827,0.030262453133369,0.0326346100256989,0.0343986186788531,0.0362607875843063,0.0382287914802628,0.0404972433163424,0.0423750899102461,0.05724552899883,0.0714525010992692,0.0852034874571149,0.0975119667560885,0.1097196872988912,0.1244485352461357,0.1373749376677665,0.1491341046738123,0.1606660329598735,0.1707944676744934,0.1834657879433998,0.1964511766296997,0.2065703193814634,0.2176365763264056,0.2271341631175234,0.238460175423053,0.2474844380982128,0.2565556343019135,0.264418931796524,0.2724128452975399,0.280064773581632,0.2870637750628397,0.2938511403425759,0.2993412384716732,0.3057079731960765,0.3113029769309406,0.3160047532678716,0.3206973727714337,0.3240446993926994,0.3273679903921025,0.3255926724137931,0.3244147157190635,0.3224992600318538,0.3213464292430313,0.3198078267465901,0.3167516420926921,0.3151190024053678,0.3154844958059062,0.3173019527585913,0.3191974626706104,0.3198301025372352,0.3215082420294147,0.3218273050386787,0.3228006619258464,0.3240720694715066,0.3268093091136535,0.328241664291821,0.3303436555891239,0.3343177583236649,0.3359074888123242,0.3385272339072366,0.3397908815880261,0.3408590654675806,0.3447934890088994,0.3472391487766007,0.3481349911190053,0.351093316907915,0.3578753076292043,0.3564633463905988,0.3506594259115593,0.0,2.025212631580426,55.58461662611649,175.36864893169383,261.19711172021,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95782,44678,423.3989684909482,6172,63.22691111064709,4822,49.73794658704141,1901,19.460859034056504,77.331780499572,79.67251110125859,63.32970022966426,65.06261023042752,77.09851615081031,79.44237849204319,63.24199813900837,64.97898041472732,0.2332643487616934,230.1326092154028,0.0877020906558883,83.62981570020622,166.94084,116.98433593687304,174292.49754651188,122136.03384443116,361.34113,233.9216349008442,376675.6697500574,243644.93840266883,372.77031,181.0152275010345,385399.74107869953,186045.15497551693,2763.22036,1272.1888469559383,2853214.6749911257,1296521.8589671731,1136.48926,505.5733463435883,1174299.4821573992,515599.6078006184,1853.59384,777.2174427606368,1899872.042763776,780704.283038104,0.38046,100000,0,758822,7922.386252114176,0,0.0,0,0.0,30793,320.87448581153035,0,0.0,34079,352.0076841160135,1569760,0,56334,0,0,6630,0,0,66,0.6890647512058633,0,0.0,0,0.0,0,0.0,0.06172,0.1622246753929453,0.3080038885288399,0.01901,0.3417721518987341,0.6582278481012658,24.62078315494046,4.305993656628859,0.3145997511406055,0.2507258399004562,0.2140190792202405,0.2206553297386976,11.139873524988944,5.863718897299108,20.1809121601546,12284.07855301223,54.50210946276151,14.442728232444871,17.106816834075108,11.499696107859643,11.45286828838188,0.568021567814185,0.7791563275434243,0.6882003955174687,0.6027131782945736,0.1231203007518797,0.753393665158371,0.9279475982532752,0.8666666666666667,0.7420634920634921,0.1706161137440758,0.4977116704805492,0.6884154460719041,0.6232014388489209,0.5576923076923077,0.1113716295427901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025525449480881,0.0046125461254612,0.0068901133469309,0.0090109309602178,0.0114518179506737,0.01374759417102,0.0158642768295915,0.0180693372534607,0.0200977285273251,0.02205046834212,0.0240086931561897,0.0260282974310532,0.028327883686018,0.0303155162290505,0.0323353046206562,0.0343437267388967,0.0364148559355386,0.0382828219968054,0.0402273766471297,0.0421929504868016,0.0568327680667884,0.0713000543955814,0.0847372338529599,0.0976775956284153,0.1094298268722142,0.1246446649547179,0.1374756211311795,0.1496203662349263,0.1607415392168372,0.1712755129372689,0.1840688912809472,0.1961036713324535,0.2075235723374406,0.2178944490019141,0.2276654523041703,0.2378694028610369,0.2473775833593715,0.2560494077148932,0.2644753706035138,0.27267522414721,0.2792792792792792,0.2862737762605656,0.293069986509195,0.2983494947799925,0.3043483543319523,0.3097252367797948,0.3145784535992084,0.3193260174103672,0.3242959390073129,0.3285167084929336,0.3274747474747475,0.3269074759030346,0.3259605502132991,0.3256852879944483,0.323984066113737,0.3226488848011037,0.3205363936089272,0.3205850932697838,0.3221864731653888,0.3224752210018751,0.322768192048012,0.3240925527080163,0.3250776593065234,0.3257662256251819,0.3263470165452704,0.327944633063463,0.3295869465997261,0.3337417145729274,0.337091240109236,0.3384389508352843,0.3435803876852907,0.3483403484469071,0.3512294300781498,0.3538119343457585,0.3599433160132262,0.3641019533111005,0.3729153798641136,0.3737598704191132,0.3747240618101545,0.3769140164899882,0.0,2.415306854059777,57.82369461265204,173.60713105367557,264.9994944295097,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95696,44558,422.5359471660258,5883,60.32645042635011,4626,47.84943989299448,1831,18.799113860558435,77.34192318165195,79.71888544105964,63.32298576779221,65.07575267809588,77.1114620202666,79.48885749263731,63.23738952814064,64.99277165721008,0.2304611613853495,230.02794842233243,0.085596239651565,82.9810208857964,167.14148,117.02323689767988,174658.79451596722,122286.44551253958,358.26806,232.4252433763022,373883.4747533857,242380.78224408775,363.51206,176.2674500750826,377224.6384383882,182061.60523930623,2673.97676,1232.3163348099172,2766949.7575656245,1260449.5640464777,1095.29213,484.5169766189365,1129245.600652065,491029.1922246562,1798.70102,756.2921731208849,1848089.658919913,761142.4805430454,0.37846,100000,0,759734,7939.036114362147,0,0.0,0,0.0,30600,319.2400936298278,0,0.0,33301,345.36448754388897,1569287,0,56283,0,0,6639,0,0,60,0.6269854539374686,0,0.0,1,0.0104497575656244,0,0.0,0.05883,0.1554457538445278,0.3112357640659527,0.01831,0.3335494327390599,0.66645056726094,24.35558964445329,4.395941725427084,0.3264159100734976,0.2315175097276264,0.2114137483787289,0.230652831820147,11.281964097343131,5.852166341771337,19.302708653793427,12161.9052327191,52.211653859362976,12.958695527593315,16.905871558468476,10.752722634358182,11.594364138943016,0.5559878945092953,0.8104575163398693,0.6920529801324503,0.5603271983640081,0.1040299906279287,0.7380015735641228,0.9515738498789348,0.8581907090464548,0.771689497716895,0.108695652173913,0.4870342771982116,0.7218844984802432,0.6303360581289736,0.4993412384716733,0.1027479091995221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023693083442179,0.0045002584607899,0.0066648406829179,0.0086639445832571,0.0109322404482727,0.0131335138767282,0.0154762147503211,0.0177774601002726,0.0197963106875536,0.0218706803870373,0.0237570363686698,0.0257747838409562,0.027677781663341,0.0297769306063572,0.0318748129109507,0.0339899694948554,0.0358914865186811,0.0380415602748541,0.0401310316139767,0.0422128670570827,0.0565832767535384,0.0702483665605629,0.0837374309885173,0.0965854685116009,0.1092599236077405,0.1241626718308517,0.1363945217114343,0.1481086954206035,0.1593479422768573,0.17020911159775,0.182820974542004,0.1950696445205034,0.206512154497654,0.215857102204321,0.2252251260485699,0.235260877754756,0.2450822783396967,0.2541962647333641,0.2620025411807414,0.2701718213058419,0.2775855484707162,0.2835379052923487,0.2902198491718659,0.2963629168615318,0.3021644811200369,0.3070256543018109,0.311988077048318,0.3166997556505803,0.3217618998237063,0.3261472616311326,0.3243848478307792,0.3233870634143651,0.3223854065264316,0.3213289996388588,0.320561884419129,0.3188100042805601,0.3170804950135133,0.3172260976610587,0.3189010012643953,0.3198380566801619,0.3212486657553229,0.3214716645237859,0.3210939955988682,0.321819524971458,0.3236912284073709,0.3236556622180598,0.3239304584966763,0.3264999059620087,0.3283149364258768,0.3319503714240556,0.3336650232936813,0.3366640232619614,0.3400730662635424,0.344299403908549,0.3481660770806181,0.3502976537877904,0.3521465025517862,0.3549860945570123,0.3597710547833197,0.3623459096002988,0.0,1.8573357928383696,55.91055517934803,165.63343279892388,254.6965146303226,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95749,44578,421.4665427315168,6013,61.7029942871466,4741,49.04489864123907,1903,19.59289392056314,77.32392886815877,79.68768146578597,63.31606620966248,65.0650739079438,77.08713065685862,79.45004740135505,63.22838604706892,64.97918681891915,0.2367982113001545,237.63406443092092,0.0876801625935641,85.88708902465214,165.75328,116.14669237063472,173112.28315700425,121303.2954606677,356.52743,230.91895168672772,371902.578617009,240717.41917589508,365.95019,176.5478469264467,379350.1968688968,182164.09490502696,2733.22052,1245.8097097201914,2829503.514397017,1276055.6347535655,1104.38882,484.6393119433981,1141640.2468955289,494375.5150898682,1860.06056,779.9780945704545,1916547.1179855664,792548.6395372787,0.37948,100000,0,753424,7868.740143500194,0,0.0,0,0.0,30322,316.2017357883633,0,0.0,33426,346.1968271209099,1577790,0,56654,0,0,6842,0,0,69,0.720634158059092,0,0.0,0,0.0,0,0.0,0.06013,0.158453673447876,0.3164809579244969,0.01903,0.332382762991128,0.667617237008872,24.55517498663304,4.337481516685529,0.3267243197637629,0.2381354144695212,0.2136680025311115,0.2214722632356043,11.092745139584714,5.778277775817225,20.28525502793159,12314.005836206585,53.54566549129226,13.433906635482114,17.33800410076788,11.18167752375825,11.592077231284026,0.5532588061590382,0.770593445527015,0.6817301484828922,0.5695952615992103,0.1142857142857142,0.7135882831570383,0.9135802469135802,0.8403141361256544,0.7090909090909091,0.1351351351351351,0.4971526195899772,0.6906077348066298,0.6298200514138818,0.5308953341740227,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020966908748366,0.0042989384460959,0.0069620638561308,0.0095612591192668,0.0120437807706392,0.0142057026476578,0.0163835817547866,0.0188124572560147,0.0207649602797288,0.0230265178662844,0.0248626148293963,0.0269926178424386,0.0291668380145577,0.0310765015502199,0.0330832653987844,0.0350830042794236,0.0372990553529996,0.0390874745713455,0.0411276569194293,0.0433197199533255,0.0582978367994654,0.0719367258118513,0.0851570282598437,0.0981113821822158,0.1108603726629477,0.1265470624325639,0.1391857047357307,0.1503961155123946,0.1610049993590565,0.17160746641507,0.1852816742203227,0.1972856061425327,0.2075229657009295,0.2190359575375264,0.228987738494529,0.2389884181854419,0.2481812095514394,0.2575980916159377,0.2663699936427209,0.2737539699829162,0.2813408882863466,0.2884556807797745,0.2951538716866613,0.3004404123315453,0.3063531072071633,0.3107629679886511,0.3155678642589506,0.3193015994392404,0.3237827180990428,0.3268239151704259,0.3265886986901919,0.3257993384785005,0.3242636785729406,0.3228595010208366,0.321692161180882,0.3200073522654167,0.3195435770015984,0.3192309585130989,0.3193016024874432,0.3202355460385439,0.3210112359550562,0.3212986396709902,0.3216709963965474,0.3227025697224521,0.3241741055316282,0.3264406779661017,0.3286946128233586,0.3324194869855675,0.3368588048651507,0.3405194701881389,0.3412731006160164,0.343406447501195,0.3453939088849735,0.3473299863076221,0.3494146525679758,0.3525068476836965,0.3509651922784618,0.3528129952456418,0.3526750066542454,0.3615413675859463,0.0,1.8684629040470944,54.10506973149379,178.1890276119182,264.07852793261367,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95796,44924,423.9112280262224,5954,60.994195999832975,4647,47.94563447325567,1814,18.53939621696104,77.4066300966336,79.74435398932631,63.35719594835807,65.08731016099381,77.17757632455717,79.51837235094352,63.27186152041029,65.00570124878107,0.2290537720764405,225.98163838279103,0.0853344279477781,81.60891221274369,166.9745,117.00831555516656,174302.16292955866,122143.21637142108,361.00919,234.05326245095,376312.0172032235,243784.63866022584,367.78809,178.10963126704652,380487.3272370454,183273.34818636943,2677.46704,1233.9692697959254,2765549.292246023,1258703.7348072217,1110.54037,495.4059558554149,1148288.3523320388,506158.8123255818,1776.94396,747.3484927858888,1819280.387490083,749062.6117624722,0.38164,100000,0,758975,7922.825587707211,0,0.0,0,0.0,30706,319.97160633011816,0,0.0,33597,347.2483193452754,1571007,0,56383,0,0,6567,0,0,67,0.6994028978245438,0,0.0,0,0.0,0,0.0,0.05954,0.1560109003249135,0.3046691299966409,0.01814,0.32928,0.67072,24.73777503261847,4.259713810746112,0.3277383258015924,0.2309016569829997,0.2188508715300193,0.2225091456853884,10.960562407431157,5.669900801740436,19.220868773712912,12293.407753036772,52.74270993246453,12.870021044695063,17.192019409003105,11.307848624919195,11.37282085384716,0.5644501829137077,0.777260018639329,0.7038739330269206,0.5899705014749262,0.1131528046421663,0.7271255060728745,0.8963730569948186,0.8737373737373737,0.7352941176470589,0.1441860465116279,0.5055685814771395,0.710334788937409,0.6441881100266194,0.5455712451861361,0.105006105006105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021581859079579,0.0045527367118898,0.0067992003328563,0.0091442040986354,0.0111878438990653,0.0132991181442333,0.0152831304418751,0.0176899913234318,0.0201561797293429,0.0222481476933153,0.0244224895976387,0.0266174131650505,0.0289628662754247,0.0312339146369083,0.0333474213732746,0.0355627149096992,0.0376979816475797,0.0399829991914249,0.0420021401040963,0.0441413773359013,0.0588161642720756,0.0727230896332472,0.0859667326981731,0.0986285534128527,0.1107294871254583,0.1264990860198011,0.1390552299392693,0.1504135921917196,0.1607823053039275,0.170758354755784,0.1837665691168876,0.196323728172136,0.2082441288022865,0.218916882351014,0.227803045283765,0.2382385483514051,0.2481403414857194,0.2571499235542764,0.265324638502977,0.27370228352315,0.2808496369270616,0.2880080398251805,0.2949784113089252,0.3001401180824182,0.3057454792757125,0.3105577051038766,0.3144341512268402,0.3187236803603007,0.3229988215030369,0.3275957654637134,0.3265963323766792,0.3252294272230707,0.3239172701400434,0.3217784585151576,0.3212170686456401,0.3197761536344454,0.3180362018085123,0.3174660278318316,0.3184704723740958,0.3202092755165381,0.3212440066416671,0.3225020149004344,0.3222796200633228,0.3223646153161572,0.3233522917363667,0.324215919677052,0.326000282765446,0.3301633823896233,0.3343901334355293,0.3375182022118147,0.3410660287945118,0.3435266918873476,0.3447009770365299,0.3485166317051243,0.352686388351304,0.3555091141298038,0.3581749049429658,0.3605807478122514,0.3593322386425834,0.3521288837744534,0.0,2.231494147222565,53.93503169587491,179.1257095871423,250.29684102362165,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95692,44489,420.9233791748527,6111,62.638465075450405,4780,49.41896919282699,1908,19.57321406178155,77.29491858535671,79.69690275275481,63.29396199958445,65.0737332153044,77.06649774966968,79.46898505401003,63.2098344598639,64.9922815728842,0.2284208356870323,227.91769874477552,0.0841275397205549,81.45164242020542,167.04556,116.959094594729,174565.8571249425,122224.52722769824,361.09381,233.4281440699242,376741.6398445011,243328.53746386757,366.38886,177.27707636662268,378989.16314843454,182323.6302860292,2751.9848,1257.1819607343652,2846245.8721732222,1284147.850117423,1148.80019,498.6540128285711,1190835.785645613,511420.3933751738,1867.43086,771.103227765848,1917789.825690758,777536.6349463722,0.379,100000,0,759298,7934.811687497388,0,0.0,0,0.0,30779,321.0822221293316,0,0.0,33631,347.65706642143545,1570407,0,56380,0,0,6521,0,0,56,0.5747606905488443,0,0.0,0,0.0,0,0.0,0.06111,0.1612401055408971,0.3122238586156112,0.01908,0.3343236903831118,0.6656763096168882,24.546181651796093,4.3220188398337775,0.3167364016736401,0.2420502092050209,0.2205020920502092,0.2207112970711297,11.287124905715707,5.828651111805667,20.095455108793608,12268.928865945893,54.104704951540896,13.949731817875826,17.05813787323894,11.58733632785992,11.509498932566212,0.5648535564853556,0.7796024200518582,0.702113606340819,0.5825426944971537,0.114691943127962,0.7376788553259142,0.908883826879271,0.8753246753246753,0.721030042918455,0.1194029850746268,0.5031232254400908,0.7005571030640668,0.6430469441984057,0.5432399512789281,0.1135831381733021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0045156118400357,0.0065302391712791,0.008804839611611,0.0112279487362195,0.0134232976262065,0.0156843136454549,0.0176743425757544,0.0200924827106436,0.0224034255626466,0.0246496932892928,0.0266280395722254,0.0286278787379859,0.0308361417720475,0.0330522208573758,0.0348201081729526,0.0369215145800087,0.0387981602799032,0.0408725865512649,0.0431189026932377,0.0574803889823161,0.07183014541914,0.0852450414524084,0.098309079621621,0.1103385699665544,0.1251864941221285,0.1371221127717391,0.1488000170361379,0.1601752417588288,0.1707474088538872,0.1837229343962081,0.1959666338486838,0.2077996912305116,0.218136906648596,0.2276156333164712,0.2374525283169281,0.2464886935374111,0.2556933255322021,0.2642604114628276,0.2715153599266391,0.2795433758234633,0.2865117258811964,0.2927626127512488,0.2987550374208405,0.3037797763733592,0.3094265582388292,0.3144539078156312,0.3197047782655723,0.3246267691272737,0.3284481054365733,0.3273098849091104,0.3266539396519756,0.3253362976304385,0.3244308420794294,0.3225140685088123,0.3204920041664114,0.3185982374944525,0.3186000657246138,0.3194926408998444,0.320528640663841,0.3214124633541306,0.3217918971979296,0.3236066469191824,0.3252701430300856,0.3269890343461668,0.3285617083638648,0.3293360045792787,0.3308486781845172,0.3349628952273766,0.3374731311201338,0.3395457459474311,0.343322510246447,0.3489734223453835,0.3507741591030432,0.3488503580851866,0.3477691850089233,0.3535583941605839,0.3560315215194989,0.3616847826086956,0.3595632530120481,0.0,2.0337066524312646,55.3164762290903,179.33882893424692,264.2539776711677,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95715,44569,421.271483048634,6126,62.68609935746748,4854,50.07574570339027,1955,19.965522645353392,77.3593554540744,79.72929780446704,63.33143217950936,65.08346770477515,77.11554966031345,79.48953875958617,63.24052484105897,64.99736084957537,0.2438057937609556,239.75904488087,0.0909073384503926,86.10685519977324,167.22816,117.19320669437126,174714.6842187745,122439.74998105966,363.66224,235.6399401842401,379320.87969492766,245567.23625789076,373.3839,181.2180941262044,386334.94227655017,186439.14799016152,2802.9408,1290.9649830239514,2892549.1302303714,1313123.6554956352,1152.69968,511.6262787023732,1183359.1286632188,513688.52279273,1911.61624,807.3333305182032,1953396.5209214855,805612.5810703345,0.37962,100000,0,760128,7941.57655539884,0,0.0,0,0.0,30941,322.6140103432064,0,0.0,34183,353.39288512772293,1567089,0,56215,0,0,6596,0,0,72,0.7417855090633652,0,0.0,0,0.0,0,0.0,0.06126,0.1613718982140034,0.3191315703558602,0.01955,0.3418096723868954,0.6581903276131045,24.290174888286305,4.362923597663053,0.3096415327564895,0.242274412855377,0.2272352698805109,0.2208487845076225,11.138088057309409,5.725089163254177,20.81524495400336,12252.450897532515,55.19439800242312,14.136595745541667,17.1306978978373,12.203652325584866,11.72345203345929,0.557684384013185,0.7729591836734694,0.7032601463739189,0.5602901178603807,0.1147388059701492,0.7358630952380952,0.925,0.8854415274463007,0.69140625,0.148471615720524,0.4894586894586895,0.6820652173913043,0.6328413284132841,0.5206611570247934,0.1055753262158956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025523639752056,0.0049367948341054,0.0074583701178118,0.0095772988564116,0.0116734287137874,0.013855660867175,0.0156786788317447,0.0178531327195149,0.0198319396454785,0.0218470705064548,0.0242629339076039,0.0263560636407522,0.0284065187867813,0.0306411564100186,0.0327217567177116,0.0350017573239058,0.0372912590199915,0.0392482263618636,0.0413764424576359,0.04346875,0.0583124477861319,0.0726703718822285,0.085527558063907,0.0985551138873115,0.110204167721252,0.1258093182683763,0.1380631467232687,0.149789164324048,0.1608383387127802,0.1709848452324733,0.1848367280956999,0.1965051318695595,0.207772990381686,0.2179941777748593,0.2282755961887977,0.2384664862706827,0.2475093817012151,0.2561962085841255,0.2647342556547991,0.2720210815765352,0.2794395010587459,0.2867549049411875,0.2937324160105917,0.2991382405745063,0.3044253801070245,0.3099652803427642,0.3150467278027298,0.3199938980982406,0.3235674724364615,0.3275505226940163,0.3268359569291159,0.3255462415830699,0.3248960557365996,0.3222722888444208,0.3203756925720719,0.318449655003969,0.315966254040842,0.3167157343801112,0.3165559529892693,0.3167832292278397,0.3171494373396746,0.3173367578780994,0.3188411882019523,0.3197208697017973,0.3205118935724098,0.3203571708310488,0.3209400611096833,0.3237854889589905,0.3273962476679925,0.3327773144286906,0.3367253810349548,0.3394016821036942,0.3405309284897752,0.3399224511518284,0.3396456360738727,0.3413915094339622,0.3449588790740177,0.3529293739967897,0.3608303742146954,0.3626331811263318,0.0,2.516699675593075,58.878027032445054,173.20958139857404,270.26844158997056,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95886,44631,421.844690570052,6133,62.58473604071502,4867,50.16373610328933,1861,19.02258932482323,77.4394230829848,79.71653415216187,63.39129033748679,65.07604962044996,77.20391492053595,79.4841551512691,63.30324736954947,64.99160211559212,0.2355081624488519,232.3790008927631,0.0880429679373193,84.4475048578488,166.85812,116.8792851470535,174016.95763719417,121893.82467045698,361.85968,234.2661329443015,376768.1621926037,243702.2560174201,370.84093,179.9974020820729,382490.008968984,184502.27811725432,2788.59872,1286.4256661555191,2876418.9558433974,1309907.7597102814,1165.30827,519.1018614961135,1200738.1160961974,526884.7793969475,1835.62918,777.3190121374648,1879133.3875643995,782650.7708428121,0.37997,100000,0,758446,7909.8617107815535,0,0.0,0,0.0,30838,320.9749077028972,0,0.0,33899,349.35235592265815,1573329,0,56526,0,0,6620,0,0,69,0.7091754792149011,0,0.0,1,0.010429051164925,0,0.0,0.06133,0.1614074795378582,0.3034404043698027,0.01861,0.3329184816428127,0.6670815183571873,24.26774123015409,4.318411366062056,0.317854941442367,0.2354633244298335,0.2202588863776453,0.2264228477501541,10.992518124731202,5.552192133458853,19.92465149949188,12246.12445533907,54.90663298884829,13.607972725055424,17.445523420797578,11.90292162430096,11.95021521869434,0.5566057119375385,0.7705061082024433,0.6910148674854557,0.582089552238806,0.1206896551724138,0.7336757153338225,0.9027149321266968,0.8523809523809524,0.7563636363636363,0.1548672566371681,0.4877283105022831,0.6875,0.6308784383318545,0.5219573400250941,0.1118721461187214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021158129175946,0.0042158174226762,0.0067052820580448,0.0087623998619135,0.0110990273105186,0.0133696912964734,0.0155742296918767,0.0177988576091391,0.0197887295165706,0.0219112502301601,0.0241193467079243,0.0264921046961411,0.028567318165937,0.0306555216997447,0.032588300789707,0.0347565697764469,0.0368925811357452,0.0390645238169252,0.0408322172734917,0.042799330025072,0.057770087145061,0.0717823333960253,0.0847120418848167,0.0975758275677435,0.1090233478599549,0.1247598133406533,0.1366563572427233,0.149217413479827,0.1607769143027705,0.1710258770146187,0.1844872070522468,0.1967735661494575,0.2079064866215467,0.2181609572201278,0.2282993556332607,0.237772686522562,0.2466226759998216,0.2564258110901411,0.2647142128816632,0.2719144800777454,0.2792330792330792,0.2866167661174492,0.2929709665216569,0.2989559886978593,0.3042770945379937,0.3085980318500363,0.3125023448931354,0.3170827774601359,0.3214950612814811,0.324655315450559,0.3238777677695172,0.3230200909103393,0.322148971760307,0.3221285685419854,0.3212744181907177,0.319543814590595,0.3177270212597803,0.3181125833237794,0.3188732010094809,0.3199273297235679,0.3214900142119829,0.3227371327154407,0.3230913838120104,0.3230427046263345,0.3250137333110416,0.3275414937759336,0.3296603944171328,0.3352954000436015,0.3372916666666666,0.3410779573062861,0.3449458483754513,0.3465153115100317,0.3501814087326411,0.3536289098086851,0.3569880312882857,0.3613614800759013,0.361951822112415,0.3629871454805142,0.3635862068965517,0.3657984144960362,0.0,2.270943545873575,59.66413798475548,171.30422329075938,266.5071948833299,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95723,44680,422.8868714937894,6119,62.61817953887781,4774,49.14179455303323,1887,19.20123690231188,77.34647984393533,79.69885092083781,63.33814763576003,65.07548838044485,77.10683142048423,79.46524451297097,63.24871614961042,64.99148582938597,0.2396484234511007,233.60640786684428,0.089431486149607,84.00255105888732,167.78366,117.5049957349593,175280.40282899616,122755.23723134388,362.17879,234.0121700962492,377621.36581594805,243728.4918935669,364.84557,176.30109269322455,376751.010728874,180685.92179252204,2727.15012,1253.313321812825,2810759.503985458,1271088.8855344544,1135.27003,504.11877608296015,1169880.6347481797,510528.9074548017,1850.83828,779.076388858581,1887757.278814914,775233.6420693294,0.37976,100000,0,762653,7967.291037681644,0,0.0,0,0.0,30854,321.5737074684245,0,0.0,33336,343.9194342007668,1568284,0,56286,0,0,6633,0,0,69,0.7103830845251402,0,0.0,0,0.0,0,0.0,0.06119,0.1611280808931957,0.3083837228305278,0.01887,0.3316135084427767,0.6683864915572233,24.63570591705049,4.3531356016736575,0.3192291579388354,0.2339757017176372,0.2245496439044826,0.2222454964390448,11.105058068017556,5.748946145583798,20.126865138357047,12333.53816899968,54.30789498140895,13.477757241263538,17.359536872564586,11.849326622857433,11.621274244723384,0.5584415584415584,0.7887197851387645,0.6856955380577427,0.5811567164179104,0.1102733270499528,0.7339667458432304,0.8975609756097561,0.8716049382716049,0.7565217391304347,0.146788990825688,0.4953004841925377,0.7256011315417256,0.6184092940125112,0.5332541567695962,0.1008303677342823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.00489614694523,0.0070021615368222,0.0091932305316836,0.0112067036833648,0.0134488516044958,0.0159327217125382,0.0181671582686085,0.0205558565280943,0.0225855661236984,0.0247235006508881,0.0269229979676882,0.0290851890691505,0.0310121432470568,0.0330877801163798,0.0352864569875246,0.0373246363306931,0.0391870019920318,0.0410719669012547,0.0430493927462866,0.0575055856006347,0.0709104800979663,0.0844043434926297,0.0974288869025711,0.1102828766328929,0.1259171547586323,0.1387913568329603,0.1498206664609031,0.1619353667780541,0.1727294163040449,0.1845029176804978,0.1966885125343369,0.2082337086466982,0.2189692479181693,0.2286882632926976,0.2383651419209139,0.2491942948267594,0.2588322629264287,0.2680388975252187,0.2756618059771589,0.2827938079922252,0.2887633616354408,0.2946218228741225,0.3002038369304556,0.3053122608389315,0.3108276176285879,0.3158618964223167,0.3202744154670536,0.3244364362288218,0.3290500653715614,0.3275250993868338,0.3265825921744637,0.3259334432745571,0.325335531644105,0.3244609665427509,0.3223724552366936,0.3204146225668618,0.3202526453941432,0.3213968275673458,0.3218641192750647,0.3225848759649254,0.3230434782608695,0.3252334487461966,0.3259219453214214,0.325605469690404,0.3275943272803391,0.3290440650824969,0.3327877109040544,0.336762279254292,0.338618885277095,0.3399169821648497,0.3433391878226622,0.346537761315839,0.3505869797225187,0.3522641509433962,0.3547655970416318,0.3571867321867322,0.3580044980576569,0.3580454928390901,0.3599527930763178,0.0,2.85861474233212,54.58964272927489,185.11950676064575,258.305680809276,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95747,44935,424.71304583955634,6120,62.75914650067365,4832,49.954567767136304,1903,19.561970610045226,77.41222784566315,79.76948089130401,63.350809200748486,65.090345295513,77.17176986456569,79.52894358709752,63.260451196774525,65.00242239490709,0.2404579810974638,240.537304206498,0.0903580039739608,87.92290060591768,165.67034,116.1414905116004,173029.04529645838,121300.199055965,364.68322,236.31742494357832,380322.0988647164,246256.57953151487,376.20903,181.978816030356,390165.90598138847,187941.1405564195,2746.03204,1269.8955761111629,2838967.487231976,1297380.3345176394,1136.52723,507.9829966816935,1172582.0965669942,516118.4649980605,1854.54242,785.2998451512143,1906156.036220456,792747.3675021697,0.38232,100000,0,753047,7864.956604384472,0,0.0,0,0.0,31059,323.8012679248436,0,0.0,34440,356.97202001107087,1571892,0,56376,0,0,6623,0,0,64,0.6579840621638275,0,0.0,0,0.0,0,0.0,0.0612,0.160075329566855,0.3109477124183006,0.01903,0.3385117290663352,0.6614882709336648,24.52034974713548,4.27149965170357,0.3213990066225166,0.2446192052980132,0.2183360927152318,0.2156456953642384,11.357755222018634,6.029727849901691,20.290810342089408,12309.691023145846,54.82283522826931,14.14142035608289,17.58356298912409,11.669065647492197,11.428786235570144,0.5614652317880795,0.7758037225042301,0.6812620734063104,0.5886255924170616,0.1122840690978886,0.728030303030303,0.9194630872483222,0.8325,0.752,0.1300448430493273,0.4988610478359909,0.6884353741496598,0.6287944492627927,0.537888198757764,0.1074481074481074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0045710231591749,0.0068072069147425,0.0089365504915102,0.011346190994215,0.0138952511833867,0.0160323705077766,0.0181423017662724,0.0203881411533862,0.0228863868986693,0.0251086332704763,0.0272545295898988,0.0293921107010311,0.0314820345406424,0.0335974905068515,0.0355577606880013,0.0377323323841573,0.039964724801577,0.0417104182477881,0.0438134127794329,0.0586828972918798,0.0727970952316176,0.0864192350460524,0.0993393507121967,0.1113069171107476,0.1266007662510848,0.1388252027342589,0.1505212603959236,0.1614975205198358,0.1721691531608887,0.1856576024842041,0.1977778018431682,0.2088944532143051,0.2202708769010105,0.2292056846975873,0.2394764572125783,0.2489830584238523,0.2580245523144498,0.2660254590463645,0.2735547327272936,0.2812608564745119,0.287653757475744,0.2935015444335301,0.29921891846563,0.304567479931506,0.3101974454038208,0.3153827879818452,0.3194186844177951,0.3233496569457186,0.3274761434682461,0.3269922672108259,0.3251580867728351,0.324009324009324,0.32286866359447,0.3227665706051873,0.3203910104147633,0.3177998111425874,0.3184850511344174,0.3190018346130325,0.3199787083037615,0.3216606162152099,0.3224831753879961,0.3238716943355301,0.3236268992058372,0.3246433017332184,0.3252631033231375,0.3252902860379495,0.3277250593082781,0.3295807047506187,0.3328880682041409,0.3341299544573206,0.3348962174691813,0.3369721165242343,0.3391592587012204,0.3376912378303199,0.3402134396622493,0.3424966200991438,0.3489759395506064,0.3514246947082768,0.3392925066565234,0.0,1.893265240819,58.223239567455344,179.54908979396436,261.92535418156973,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95719,44434,419.15398196805234,6041,61.78501655888591,4778,49.23787335847638,1876,19.170697562657363,77.32373385663094,79.69334612285837,63.321321634088775,65.07507812411185,77.08255796740552,79.45535634277488,63.2317399632506,64.98952503277727,0.241175889225417,237.98978008349536,0.0895816708381787,85.55309133458877,167.96714,117.61328897977052,175479.41370051922,122873.50367196744,359.62681,232.93665724824652,375025.8987243912,242669.7649579245,367.46684,178.24974377289158,379768.47856747353,182992.17795428855,2733.22116,1272.6419307127676,2818169.558812775,1292266.4159809109,1126.28485,503.8630982928144,1158245.6147682278,507986.2600871444,1839.37176,780.701820244081,1881272.7044787344,781576.3480914591,0.37956,100000,0,763487,7976.3369863872385,0,0.0,0,0.0,30701,320.0409532067824,0,0.0,33784,348.697750707801,1566629,0,56242,0,0,6590,0,0,47,0.4910205915231041,0,0.0,1,0.0104472466281511,0,0.0,0.06041,0.1591579723890821,0.3105446118192352,0.01876,0.3321766561514195,0.6678233438485804,24.416762520764703,4.284653726808864,0.3168689828380075,0.2526161573880284,0.2063624947676852,0.2241523650062787,11.178619154753884,5.837079740725998,20.217884435737947,12285.948600945305,54.60801835726742,14.47880882756309,17.280716080291324,11.056840196780357,11.791653252632647,0.5690665550439514,0.7912178956089478,0.7120211360634082,0.5780933062880325,0.1083099906629318,0.7294292068198666,0.9043478260869564,0.8690476190476191,0.7391304347826086,0.1380753138075313,0.5059784193642461,0.7215528781793842,0.6517367458866545,0.5291005291005291,0.0997596153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227963525835,0.0048880911091504,0.0072269589930978,0.0093693473975164,0.0115680449291876,0.0142305615825769,0.0166034349120874,0.01889432455343,0.0210546767151023,0.0235035076040759,0.0256791541467116,0.0277806305843689,0.0303376334794148,0.0323159044537416,0.0345578596422415,0.0365136305837838,0.0385169074620682,0.0405353530113606,0.0423905923453632,0.0440966541976221,0.0587535109059964,0.0720102154026501,0.0849742454601722,0.0978824568970051,0.1107971022134112,0.1265502912908785,0.1387123807907327,0.1503202604643244,0.1621829444118118,0.1716617162954782,0.1845794392523364,0.1968454531686103,0.2082513239307967,0.2180116549861692,0.2278208061960922,0.2372504069902654,0.2461807801244452,0.2550193809336554,0.2644414462421061,0.2712440361094266,0.2779633203517733,0.2854622359319499,0.2913967563478178,0.2980525080247209,0.3033010793157454,0.3082098103722323,0.3134584329582013,0.3179908326967151,0.3223669712878346,0.3269187619613278,0.325821963013348,0.3251460216001763,0.3240632359785076,0.3235941391092836,0.3225388793809063,0.3207868269348706,0.3179293209046164,0.3194749794913863,0.3201862877224108,0.3205109905795033,0.3210269865067466,0.3216815034619188,0.322695854954936,0.3234278281151879,0.3244769420111489,0.3265712116849462,0.3273930607684153,0.3295148887693427,0.3338986044868398,0.33624,0.3411845730027548,0.3419572553430821,0.3441665608734289,0.3482342078941294,0.3504580224761545,0.3503230437903805,0.3510914364219203,0.3509127789046653,0.3567493112947658,0.3562596599690881,0.0,2.6797413739214733,58.65773383259092,178.74930134383422,254.27660985580252,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95791,44748,423.1712791389588,6117,62.82427367915567,4817,49.816788633587706,1902,19.6156215093276,77.38153749659537,79.72334591541689,63.350937847410606,65.08283441587866,77.15196927433873,79.49080135993376,63.26735178338293,64.99986983372104,0.2295682222566455,232.54455548313047,0.0835860640276777,82.96458215762925,167.31682,117.2100748884454,174668.62231316094,122360.21639657734,362.93097,234.6865814638349,378413.1912183817,244533.81994533396,369.17257,178.8044910705947,381510.8413107703,183828.0695435634,2765.54712,1261.4885110485964,2862821.8934973017,1292675.8370291537,1148.99376,504.1203531210547,1188008.2784395197,514799.51469454775,1865.96698,770.6570713354145,1925689.0104498332,785722.9560389579,0.38089,100000,0,760531,7939.482832416406,0,0.0,0,0.0,30820,321.27235335261145,0,0.0,33803,349.07245983443124,1569941,0,56341,0,0,6573,0,0,78,0.8142727396101931,0,0.0,2,0.0208787881951331,0,0.0,0.06117,0.1605975478484602,0.3109367336929867,0.01902,0.3299642357331674,0.6700357642668325,24.57578365629974,4.402167194245304,0.3223998339215279,0.229395889557816,0.2237907411251816,0.2244135353954743,11.125944519989227,5.710168407632699,20.0400259169852,12276.146759128173,54.2602222515492,13.156333860265727,17.4441571449184,11.95054339145101,11.70918785491404,0.553248910110027,0.7873303167420814,0.6709594333547971,0.5732838589981447,0.1248843663274745,0.7321016166281755,0.9269521410579346,0.8411633109619687,0.7208333333333333,0.1581395348837209,0.4872086412734508,0.7090395480225988,0.6021699819168174,0.5310262529832935,0.1166281755196304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019141566570114,0.0041863482474101,0.0066758654275394,0.0089678356336898,0.0113772698619273,0.01371173793988,0.0158091083295959,0.0179630328948039,0.0203662449671973,0.0224589191069638,0.0246961654335662,0.0269446326291802,0.0289841661525807,0.0308986450310942,0.0328306790989355,0.035005062715682,0.037087244016267,0.0392445476407662,0.0411676102425596,0.0430826253539896,0.0574884167466711,0.071003503634367,0.0845581297829961,0.0979951244115669,0.1102505742766222,0.1260171193067737,0.139007513060433,0.1508435118155436,0.1625817603687619,0.1734027844763834,0.1861000785731968,0.1983843758110563,0.2091547305961877,0.2192027797810266,0.2289434900244165,0.2389913436206247,0.248570186293856,0.25760266121238,0.2651420667135309,0.2729477441200695,0.2797849586681311,0.286377130034361,0.292651477512007,0.29794495940217,0.3034886261561991,0.3088467031073029,0.3133159268929504,0.3170424790909322,0.3213334023232349,0.3245437174672201,0.3241139138385414,0.3225159375686964,0.3216622806400315,0.3208108342236724,0.3204538029758546,0.3189046206538026,0.3170103906768152,0.3191005723630417,0.3206555927707976,0.3212475772178459,0.3215866435094403,0.3230347601490566,0.3240479327435849,0.3248725288487342,0.3249555907628786,0.3273949054539772,0.3290375807231657,0.3333959781995865,0.3365384615384615,0.3395457423235201,0.3429038706160276,0.3458295773901055,0.3465302771989644,0.3504201680672268,0.3542533081285444,0.3564462416745956,0.3584587043291372,0.3628067329142161,0.3591529674003901,0.3659853451600462,0.0,1.8654939417276348,57.37090418573587,170.5438011231307,270.5118878236367,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95860,44610,422.6893386188192,6151,62.91466722303359,4821,49.74963488420613,1908,19.49718339244732,77.37299817448195,79.67531021640534,63.35320242165369,65.05721535999103,77.13727756820202,79.44226648134942,63.26515577242015,64.97329528330143,0.2357206062799264,233.04373505591516,0.0880466492335401,83.92007668960844,165.48444,115.97642073687004,172630.00208637596,120984.07716099235,360.68703,233.758806530823,375666.7640308784,243264.2146846492,368.57204,178.01613414927235,382016.0546630503,183767.6920115164,2765.51064,1264.5259419238216,2850109.57646568,1284986.9894813648,1145.74896,503.248591698781,1179753.4842478614,509577.1237899161,1869.78204,781.5236829297534,1909881.180888796,778848.3236815626,0.38021,100000,0,752202,7846.818276653453,0,0.0,0,0.0,30815,320.8428958898393,0,0.0,33718,349.2280408929689,1577796,0,56639,0,0,6505,0,0,64,0.6676403087836428,0,0.0,0,0.0,0,0.0,0.06151,0.1617790168591041,0.3101934644773207,0.01908,0.3341607198262488,0.6658392801737512,24.506845733760137,4.278617479719295,0.3196432275461522,0.2393694254304086,0.2184194150591163,0.2225679319643227,11.163632520819696,5.776847038586074,20.152304896686893,12219.970378637569,54.38805342970624,13.856327864662688,17.26374142681323,11.671249328285835,11.596734809944484,0.5733250362995229,0.7842287694974004,0.7125243348475017,0.6077872744539411,0.1127679403541472,0.7329192546583851,0.9004629629629629,0.873015873015873,0.7764227642276422,0.146551724137931,0.5151429380130201,0.7146814404432132,0.6603611349957008,0.5563816604708798,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0043074178803449,0.0067963036223283,0.0089454338687732,0.0110404001382591,0.0132430781758957,0.0153190708672652,0.0175121697333374,0.019853068898221,0.0218450078785274,0.023902464013114,0.0261014097223647,0.0280666776288744,0.0301592366522218,0.0320093192994031,0.0339550158002354,0.0359943716762886,0.0378648925917866,0.03992979832596,0.0416393544963635,0.0561012742705791,0.0698184782267924,0.0837174705611197,0.0961942367470385,0.1086022411323616,0.1239000686631806,0.1364354064450496,0.1481245215616228,0.1591379715218922,0.1692635775215397,0.1826958262479281,0.1956197435841999,0.2070910731171809,0.2170666375116164,0.2270186403750082,0.2364095520801027,0.2459972999207827,0.2555808092173365,0.264211732407628,0.2716165305912125,0.2785449919037705,0.2852128742409884,0.2909702163928216,0.2972438585979629,0.3033504559971826,0.3082239881722417,0.3124780888465969,0.3168522170621541,0.3223718280683583,0.3263606609301589,0.3255669880945968,0.3242882317308221,0.3243167009844019,0.3233936658130416,0.3223591313782904,0.3211403898271348,0.3196258131915095,0.3206272142763416,0.321474883974884,0.3223181785739776,0.3230904466222787,0.3247913830857549,0.3261742440085323,0.3275892817334701,0.3286857361889703,0.3299885619215971,0.3318139084356571,0.3344646617013921,0.33878439079169,0.3402579930357708,0.3424018831198225,0.3434936762449066,0.348329453218398,0.3502592253735895,0.3528246722625672,0.3549109774790708,0.3591354996934396,0.3592471358428805,0.3597102256896071,0.3596323247797778,0.0,1.899067536879609,56.770391932074496,176.00692685198612,267.1580868222102,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95783,44553,421.4526586137415,6046,61.69153190023282,4709,48.49503565350845,1864,19.043045216792123,77.39816222968327,79.72912713229736,63.35848721039546,65.08007462963606,77.16728219331759,79.50120377782675,63.27266420444472,64.99807121518857,0.2308800363656757,227.92335447061876,0.0858230059507434,82.0034144474846,166.83018,116.78930254306948,174174.9162168652,121930.9158651008,359.84232,232.86681215409536,375019.3562531973,242453.83393096423,362.74026,175.67949288949274,374384.8804067528,179960.59364398278,2699.61352,1242.925925067288,2781914.285415992,1261224.4484100342,1130.13725,505.5240571489573,1159586.3566603677,507547.0927433571,1830.132,768.285484314377,1872135.869621958,769797.4954507092,0.37938,100000,0,758319,7917.041646221146,0,0.0,0,0.0,30682,319.64962467243663,0,0.0,33153,341.950032886838,1574375,0,56447,0,0,6556,0,0,64,0.6472964931146445,0,0.0,1,0.0104402660179781,0,0.0,0.06046,0.1593652801940007,0.3083030102547138,0.01864,0.3343354430379747,0.6656645569620253,24.688851393557314,4.376776849212555,0.3172648120620089,0.2355064769590146,0.2240390741133998,0.2231896368655765,11.218234090121646,5.725602814489937,19.766017483075945,12266.985232431402,53.18307604846842,13.166376202144304,16.887428472170093,11.63228795800374,11.496983416150288,0.5517094924612445,0.7899008115419297,0.6633199464524766,0.5829383886255924,0.110371075166508,0.7146282973621103,0.9093264248704664,0.8316831683168316,0.7434782608695653,0.1558441558441558,0.4927703875072296,0.7261410788381742,0.6009174311926605,0.5381818181818182,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021064997670697,0.0046619101670179,0.0068477863896441,0.0088857746364448,0.0114064962130839,0.0135465222789911,0.0157028583074336,0.0178651593682406,0.0200655911891212,0.0219973603167619,0.0241988361609704,0.0264340687532067,0.0281386171174874,0.0302496963708598,0.0327236736292966,0.0346921702488045,0.0369017814653121,0.0391239876810767,0.0410600155884645,0.0429145665847461,0.0567734799712011,0.0710976311248235,0.0842707820051791,0.0971182949386245,0.1091526281389023,0.1250779623032442,0.1376344314108139,0.1489363966245623,0.159439947027789,0.1699832740060899,0.1827492622827234,0.1949103965910688,0.2065185507088923,0.217470149335256,0.2271153655936431,0.2369903181189488,0.246969882809451,0.2551810995288376,0.2644032805109066,0.2723504151159461,0.2806234535069259,0.2870904010942121,0.2930795724887263,0.2998442180946675,0.3046787743407954,0.309696484639537,0.3142707109099547,0.3191254051992627,0.3232701145705223,0.3281893004115226,0.3275353733895179,0.3265912247170927,0.3252798310454065,0.324589123125983,0.323623540567771,0.3215540148437739,0.3196545299523163,0.3198566120504804,0.3213719236607371,0.3217676290900023,0.3226903316207379,0.3232767982308923,0.3252901202300052,0.3255041782729805,0.3275721935360489,0.3283415520373735,0.3288008141572907,0.3337286971721081,0.3374973902150462,0.3424377189184934,0.3443960826985854,0.3459493604253303,0.3480642350304992,0.3493181818181818,0.3487958017055571,0.3511812893268431,0.3529680365296803,0.3509625126646403,0.353119823302043,0.3492184521540221,0.0,2.606177848865098,54.334268167278935,171.9207293163475,263.1752983501675,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95882,44853,423.53100686260194,5935,60.73089839594501,4661,48.07993158257024,1809,18.50190859598256,77.3584022892406,79.64139817210557,63.35300198276878,65.04194945171064,77.13431038022941,79.41908033629392,63.270013939562126,64.96199149926565,0.224091909011193,222.3178358116513,0.0829880432066545,79.95795244498538,167.60524,117.44843626879022,174803.65449197972,122492.6850386832,362.90642,235.63419122064803,377992.9600967856,245254.5641733047,372.96462,180.6150998687206,385884.3891449907,185938.54612407583,2682.9752,1238.440019730485,2769993.7005903088,1263417.7215019336,1107.36348,494.8907248743873,1141945.4537869464,503167.8363763664,1781.5546,749.9950121454252,1824242.4438372168,754006.8430616045,0.38181,100000,0,761842,7945.6206587263505,0,0.0,0,0.0,30917,321.90609290586343,0,0.0,34083,352.32890427817523,1564204,0,56149,0,0,6576,0,0,78,0.8134999269935963,0,0.0,0,0.0,0,0.0,0.05935,0.1554438071292004,0.3048020219039595,0.01809,0.3312459858702633,0.6687540141297367,24.45396079899789,4.315957762595099,0.3123793177429736,0.2456554387470499,0.2166916970607166,0.2252735464492598,11.131465097996216,5.741002484957569,19.34936254156471,12273.68414834034,53.24464082789927,13.907395277670268,16.414021781471458,11.312326188115575,11.61089758064196,0.5642565972967174,0.8096069868995633,0.6847527472527473,0.5742574257425742,0.12,0.7482462977396727,0.934065934065934,0.8763157894736842,0.7383966244725738,0.1279620853080568,0.4943753700414446,0.7275362318840579,0.6171003717472119,0.5239327296248383,0.1179976162097735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780427057072,0.0044583599315033,0.0066537513566147,0.0089045477159885,0.0112014637121366,0.0138104397561546,0.0162700191531847,0.0187056963639145,0.0208897011527112,0.0234412537441601,0.0253974428531943,0.0273113120501937,0.0294144833465137,0.0315389916986411,0.0335332550134998,0.0354550616901553,0.037653095001655,0.039591646369902,0.0417064761350891,0.0435293750455164,0.058069224353628,0.0720800727173947,0.0851502775159702,0.0981781907912007,0.1103539077311986,0.1253446290682075,0.1375827902294283,0.1485321169202632,0.1608995431840498,0.1717366604497609,0.1849112266761415,0.1970470524607896,0.2082595036470959,0.2185166967262392,0.2278524154005145,0.2373712224324713,0.24740727524143,0.2564163097366024,0.2649380699605281,0.2727658014707567,0.2799689926068193,0.2861687818001052,0.2930477103982379,0.2984578856485034,0.3037231520986033,0.3083924276993278,0.3134081571299729,0.3171315755954655,0.3223935970112467,0.32614241715245,0.3249882035726323,0.3243634060016801,0.3227488619226812,0.3220932082074121,0.3212755830556877,0.318664806268112,0.3166172530242734,0.3179905312993161,0.3181888160933304,0.3188822426569056,0.3209092271943632,0.322124698533191,0.3244325208023307,0.3257139026679179,0.3259526385382859,0.3273185824601544,0.3287679017958627,0.3315482901164975,0.3344516670161459,0.3392504151182098,0.3427818660852185,0.3450897571277719,0.3472666792192305,0.3517937734261455,0.3553789384047686,0.3568524276488878,0.3572204125950054,0.3640413039076736,0.3554515418502202,0.3561068702290076,0.0,2.066847983554703,56.33798005339201,177.88412748680096,249.2877807311754,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95740,44819,422.7386672237309,6168,63.3799874660539,4839,50.041779820346775,1955,20.085648631710885,77.38965647392791,79.7555943507162,63.34469261111818,65.09344926610946,77.14846185607541,79.51505262596818,63.25566061822744,65.00720574809979,0.2411946178524999,240.54172474801305,0.0890319928907459,86.24351800966679,167.38392,117.24171034131108,174831.75266346356,122458.43988020794,364.14507,235.83115517957023,379850.1566743263,245826.84894461065,372.12961,179.71584766026132,385859.8182577815,185513.0767905177,2766.6764,1267.2993812370544,2862630.1650302904,1296537.6031304102,1154.8749,511.6594141278277,1193655.4000417795,521819.71394174674,1911.30246,798.835971389883,1965109.9435972427,807495.1870306919,0.38054,100000,0,760836,7946.897848339253,0,0.0,0,0.0,31037,323.65782327136,0,0.0,34028,352.50678922080635,1567181,0,56260,0,0,6678,0,0,65,0.6789220806350533,0,0.0,1,0.0104449550866931,0,0.0,0.06168,0.1620854575077521,0.3169584954604409,0.01955,0.331690791499846,0.668309208500154,24.71197726492485,4.329419013010389,0.3163876834056623,0.2293862368257904,0.2331060136391816,0.2211200661293655,11.15907081115195,5.909526182068911,20.792595460876864,12334.2888700231,54.74213439553603,13.359947289970687,17.175734128703258,12.427806336035054,11.778646640827027,0.5569332506716264,0.7756756756756756,0.6923579359895493,0.5647163120567376,0.1280373831775701,0.7105459985041137,0.9088729016786572,0.8602409638554217,0.6821705426356589,0.1538461538461538,0.4982866933181039,0.6955266955266955,0.6299283154121864,0.5298850574712644,0.1202916160388821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177700348432,0.0045112172176434,0.0068399313977207,0.0090212731373305,0.0116268424425524,0.0141542096044967,0.016425199579939,0.0187115280570839,0.0208418513369858,0.0231848750678144,0.0252570292239408,0.0273597109007658,0.0294837263811501,0.0317774139404611,0.0338002310421651,0.0358626676863928,0.037670984643741,0.0401191019628999,0.0422079946785291,0.0445333583403665,0.0594303374540594,0.0729440333267042,0.0857394661742487,0.098934278770791,0.1113631089263486,0.1273809901534621,0.1402442258930371,0.1521549430669362,0.16332589357226,0.1727684124737271,0.1854005167958656,0.1965579906107349,0.2079215456037922,0.2180211898227621,0.2272392206049003,0.2376238720035431,0.2476443235166207,0.2570398004359844,0.2656788499909305,0.2730891992998593,0.2799643872996785,0.2855623348995956,0.2923182393059347,0.2976833283448069,0.3040844813983128,0.3102968345855401,0.3150494727493339,0.3202024955799488,0.324736331284374,0.3284800527530498,0.3271178915930096,0.3266776677667767,0.3261034793379124,0.3247563352826511,0.3233096085409253,0.3219919295671313,0.3203524729960205,0.3210506517508136,0.3219861047410352,0.3228848476237835,0.3248938863653288,0.3254113345521023,0.3257736682077554,0.3274344152956869,0.3278508247669137,0.3282490272373541,0.3297242141662651,0.3340655892044563,0.3366350544432736,0.3371028111810146,0.3396925610760362,0.3416425431542833,0.3451002720313785,0.346572855197458,0.3503249767873723,0.347928160582228,0.3492351961229744,0.3573285342931414,0.3604365620736698,0.3537284894837476,0.0,1.977644632155818,59.274837824295815,169.99517748838647,269.14187506799465,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95775,44859,425.1631427825633,6025,61.728008352910464,4755,49.219524928217176,1858,19.13860610806578,77.34687979821054,79.7054456380537,63.33382307926016,65.08097075243985,77.11400374881576,79.47216720751533,63.24675502991777,64.99572292849084,0.2328760493947754,233.2784305383768,0.0870680493423847,85.2478239490182,166.892,116.94574587572198,174254.24171234664,122104.66810307698,360.42343,233.91859393469605,375879.0080918821,243795.9204788353,370.3548,179.00600294932676,384093.6987731663,184936.84379272556,2713.03148,1256.7826217946608,2810137.9691986428,1289855.3184654762,1115.45102,497.6515294509021,1153748.4729835554,509137.597706793,1822.4409,768.6022538023368,1878600.6995562515,780949.7279467373,0.38276,100000,0,758600,7920.64735056121,0,0.0,0,0.0,30790,321.01279039415294,0,0.0,33938,351.77238318976765,1570743,0,56409,0,0,6576,0,0,62,0.647350561211172,0,0.0,0,0.0,0,0.0,0.06025,0.1574093426690354,0.3083817427385892,0.01858,0.3371109337589784,0.6628890662410215,24.183300535425715,4.195433666645387,0.3226077812828601,0.2452155625657203,0.213459516298633,0.2187171398527865,10.895902978376691,5.594780570281562,19.865116377863178,12295.664557808652,54.30272532080881,14.123451927837378,17.498400357595308,11.343674565362436,11.337198470013693,0.5648790746582545,0.7855917667238422,0.7086049543676662,0.548768472906404,0.1211538461538461,0.7320503330866025,0.8976545842217484,0.8652482269503546,0.6885245901639344,0.1581395348837209,0.4985311398354876,0.7101865136298422,0.648964896489649,0.5045395590142672,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090713793522,0.00437066482781,0.0066192893401015,0.0090551541205524,0.011383983071539,0.01344168143215,0.0158018146600061,0.0176806859942833,0.0199546114371,0.0221874104107793,0.0243599864666741,0.0264392718162496,0.0284239320458238,0.0303473567102064,0.0323549445786116,0.0342788620575587,0.0361399620996386,0.0381443405915121,0.0402174590964844,0.0422567477507497,0.056666005615456,0.0703481317209925,0.0841301795000838,0.0964632928687792,0.1089107867418453,0.1246499635433728,0.1374332230984482,0.1491877179552607,0.1603016790766145,0.1708458745273621,0.1834552495697074,0.1954306217510186,0.2066882510158406,0.2174895973264309,0.2276622862919175,0.2379851051822014,0.247655474647903,0.2569539700029232,0.2655877613092131,0.2738247961147255,0.2813396907693732,0.2871686852729507,0.2940480136370093,0.2992782120761594,0.3052378524076637,0.3103758029188098,0.3156558392015109,0.3204754942470281,0.3255693581780538,0.3298763935376749,0.3283662380977998,0.3271256842626468,0.3257819865201424,0.3244678548235803,0.3246105919003115,0.3230818639220664,0.3207502411715401,0.3209813735948141,0.3223146140317926,0.3225397844858346,0.3232275944721171,0.3249332938037355,0.3260441539943865,0.3269635265159991,0.3280926469880098,0.3303445391331625,0.3323721700402546,0.3361103221938212,0.3384518078639446,0.3418959758231271,0.3464315087270401,0.3480874607650157,0.3508350202429149,0.3515511853037579,0.3548839820359281,0.3585039649662682,0.3617053789731051,0.3639525368248772,0.3692609182530795,0.3735700197238659,0.0,1.5965654372727192,60.107288102372046,174.18919120803358,255.05485310414275,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95746,44892,423.5790529108266,6135,62.67624757170013,4749,48.93154805422681,1919,19.62484072441669,77.36211040614715,79.72505209009498,63.32787542470121,65.07582543945763,77.12240432589854,79.48565147304687,63.23910830489076,64.98984097234421,0.2397060802486095,239.4006170481049,0.0887671198104556,85.98446711341978,168.3649,117.89045327311317,175845.3616861279,123128.33253933652,363.42736,236.1890382006026,378933.6995801391,246042.1722062568,375.69577,182.60684185366975,387712.7295135045,187202.82143946912,2701.84384,1247.099408791829,2785949.115367744,1266570.3097694211,1118.66859,495.30506508097903,1152134.3032607106,501074.7029442258,1866.6982,781.7916428905046,1911302.278946379,784809.4500947162,0.38083,100000,0,765295,7992.970985733086,0,0.0,0,0.0,30939,322.4677793328181,0,0.0,34303,353.6231278591273,1559610,0,56005,0,0,6774,0,0,73,0.7624339397990517,0,0.0,1,0.0104443005451924,0,0.0,0.06135,0.161095501929995,0.3127954360228199,0.01919,0.3311617806731813,0.6688382193268186,24.53620526792282,4.433222787775015,0.3181722467887976,0.2383659717835334,0.2253105917035165,0.2181511897241524,11.382857829427762,5.912443825488801,20.406993538739066,12312.67226134043,53.86994130199544,13.727290985971209,17.146497651165603,11.845365709086291,11.150786955772334,0.5651716150768583,0.8030035335689046,0.7068166776968895,0.5672897196261683,0.0965250965250965,0.7391304347826086,0.9159090909090908,0.8611764705882353,0.7209302325581395,0.1469194312796208,0.4972181551976574,0.7312138728323699,0.6464088397790055,0.5184729064039408,0.0836363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795659706391,0.0045328249538605,0.006902852502284,0.0093886218844305,0.0118000101724225,0.0142278078787631,0.0165194868761854,0.018561627052193,0.0207566462167689,0.0228354922943013,0.0250843494580098,0.0271075364909145,0.0291975308641975,0.0313169826875515,0.033594798224791,0.0358966936167573,0.0381381381381381,0.0402456864799809,0.0423072525233625,0.0443731511187033,0.0591452848702478,0.073432023853115,0.0874102039746211,0.1001125332604145,0.111827185756326,0.1269948707101686,0.1397201565765326,0.1512503060561865,0.1622684245389858,0.1730697060999539,0.1857910550631616,0.1977468995519771,0.2083510123263379,0.2190460562301717,0.2280116669418304,0.2383870395815788,0.248333091347711,0.2576118999932488,0.2663172344939473,0.2738620097337532,0.2807819625454293,0.2880019651651089,0.2935899256734365,0.2992829392296993,0.3044407734914002,0.3100982579857729,0.3148048435367335,0.3187210427167659,0.3228049728049728,0.3264269218079841,0.3248298632167644,0.3232872563057605,0.322107665004648,0.3208479646247886,0.3200956440378418,0.3190678160743542,0.3170233647818654,0.3175720002624155,0.3182477021980458,0.3192663817663818,0.3204924617482765,0.3217110700090512,0.323916311701328,0.3246593975070796,0.3243398805669472,0.3264531558698139,0.3271354358872456,0.3305249310949636,0.3329958454072548,0.3368450126262626,0.3395458246629874,0.3411150927487352,0.346955378934852,0.3494166353029733,0.3525367032150158,0.3518867924528301,0.3514663425011396,0.3576992210904733,0.3587516960651289,0.3691119691119691,0.0,2.6415145924837784,58.091759393090655,169.58889499110117,259.34460534642403,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95779,44427,420.0294427797325,6061,62.12217709518788,4736,49.02953674605081,1869,19.23177314442623,77.32840490063373,79.68826640362533,63.31625382636724,65.06437354352158,77.09784688956947,79.45608761431563,63.2298577125538,64.97910941915758,0.2305580110642608,232.1787893096996,0.0863961138134357,85.26412436400221,167.27766,117.16195871195868,174649.6204804811,122325.3100491326,360.55978,233.6421546371573,376033.3789243989,243522.46801194132,366.50342,177.4544306160187,379927.1447812151,183181.51475558223,2690.4962,1239.371015409069,2786393.343008384,1271316.7765471234,1116.44872,500.5547114052116,1154198.9266958311,511219.208646307,1824.20196,767.5249362952558,1878693.5758360391,779914.1680831672,0.37778,100000,0,760353,7938.619112749142,0,0.0,0,0.0,30793,321.0724689128097,0,0.0,33542,347.60229277816643,1566998,0,56302,0,0,6567,0,0,65,0.6682049300994999,0,0.0,0,0.0,0,0.0,0.06061,0.1604372915453438,0.3083649562778419,0.01869,0.3415982312065698,0.6584017687934302,24.591845349135397,4.404720498781737,0.3156672297297297,0.2455658783783783,0.2214949324324324,0.2172719594594594,11.377339532496404,5.914188271212756,19.896628358772983,12223.477737292067,53.64909630696376,13.956866381803795,16.77772511359839,11.704766939464935,11.20973787209663,0.5629222972972973,0.766122098022356,0.7016722408026755,0.572926596758818,0.1214771622934888,0.7212732919254659,0.89749430523918,0.8533333333333334,0.7068273092369478,0.1733333333333333,0.50377030162413,0.68646408839779,0.6508928571428572,0.53125,0.1069651741293532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813625447138,0.0044524229700399,0.0067924298420176,0.0089839224374479,0.0112612154381396,0.0137915580182529,0.0160813346386033,0.0182137460693429,0.020292788648306,0.0226114193297438,0.0250525344677361,0.0271679980286259,0.0293192102015631,0.0314868984838497,0.0335889048262767,0.0357733493198825,0.0376876099782631,0.0394287906914038,0.0410050710782276,0.0429294507279885,0.0580523953658282,0.0719223569030611,0.0852232812221488,0.0978588771981458,0.1096698734497328,0.1249101593878155,0.1376790846138347,0.1491911451681566,0.1607083729425461,0.1703681461860998,0.1834222006786233,0.1960678230195743,0.2075835056033075,0.2170184840861861,0.226989002278807,0.2370333444112108,0.2462970610887254,0.2542802147705399,0.262594951800252,0.270874876802127,0.2774864867993101,0.284485985681531,0.2907297550116633,0.2964096287229702,0.3018005422294627,0.3069381412786109,0.3112498902725004,0.3157083142172605,0.3193893169377643,0.3243742983556759,0.3244391112069895,0.3235407542076412,0.322655721056195,0.3213175885643257,0.3213552666805485,0.3198515883723782,0.3180629724119352,0.3183268111414384,0.3190685428029202,0.3196462074510855,0.3198988669351063,0.3215357283853138,0.3230258487493214,0.3244763988746483,0.325749394004848,0.3279579681119463,0.3289728131043112,0.3333646616541353,0.337629676202452,0.3415733892338725,0.3447682059183396,0.3464575218444046,0.3486633015516919,0.3479507887387727,0.3480291425368952,0.3464742461574563,0.3501668183196845,0.3458172196214126,0.3485225075945871,0.3454474404064087,0.0,1.6085775327716714,57.07516605243287,172.64160337902914,261.36540421747094,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95725,44954,425.2494123792113,6093,62.14677461478193,4795,49.4437189866806,1843,18.803865238965788,77.31464774318667,79.68004940341444,63.30648041847581,65.05572905348059,77.08275269803977,79.45280219133905,63.218847759097926,64.97303551183781,0.2318950451468993,227.24721207539744,0.0876326593778813,82.69354164278298,167.01718,116.98098197669584,174476.03029511624,122205.25670064856,364.70955,236.46846199409683,380357.13763384696,246389.52044658404,377.3133,183.2100862984209,390761.7654740141,188703.55818315965,2720.44068,1253.520967366798,2806305.2703055628,1273927.8669596512,1137.65277,501.91200871475735,1172633.2619482891,508500.83960800007,1803.27368,765.5508632565184,1841765.4949072865,763744.3690101928,0.38105,100000,0,759169,7930.728649778011,0,0.0,0,0.0,31069,323.8861321493863,0,0.0,34426,356.1347610342126,1563547,0,56138,0,0,6626,0,0,67,0.6999216505615043,0,0.0,1,0.0104465917994254,0,0.0,0.06093,0.1599002755543891,0.3024782537337929,0.01843,0.3374511336982017,0.6625488663017983,24.45533991828905,4.374789476123978,0.3338894681960375,0.2356621480709071,0.2171011470281543,0.2133472367049009,11.25062695282417,5.839927529235199,19.72941989614564,12249.546147828109,54.24179878557277,13.586196380805806,17.988593596643135,11.397766882244683,11.26924192587915,0.5645464025026069,0.7902654867256638,0.6901936289818863,0.5609990393852066,0.1221896383186705,0.7320872274143302,0.927765237020316,0.8469387755102041,0.7336244541484717,0.1318181818181818,0.5032754201082312,0.7016011644832606,0.6393713813068652,0.5123152709359606,0.1195516811955168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413716253862,0.0047348196814388,0.006953044113766,0.0093689665684381,0.0115672211200976,0.0139064346550389,0.0161189949092541,0.0184599048416409,0.0204444626173001,0.0225420744441259,0.0243919944223434,0.0265635749417285,0.0287609936738157,0.030964697153927,0.0331664516129032,0.0350991460413952,0.0374562475405422,0.0396505027654695,0.041416242071332,0.0434551591931988,0.058243100729866,0.07256950259588,0.0855898861669202,0.0986180640275966,0.111032606403172,0.1267243568043331,0.1389752788952457,0.1511931255523729,0.1620058580805165,0.1720448570048827,0.184516170777211,0.197317239660646,0.2088394539888662,0.2187787664927892,0.2281713435139754,0.2387572453307868,0.2488366369859949,0.2568744219620582,0.2646138796309988,0.2723795301820688,0.2795458235717102,0.2865079644150638,0.2920105293113261,0.2976156173462037,0.3030888969962301,0.307729319597804,0.3126071880124682,0.3173599358688875,0.3217086363518724,0.3259766114253319,0.3248946851320978,0.3238586358635864,0.3234387968993993,0.3220908920350406,0.3211686421293408,0.3184908433882525,0.3154628075619874,0.3163427895592752,0.3165928787542093,0.3170757832723377,0.3175644028103044,0.3175659661873913,0.3188599607171214,0.3207643937028943,0.3211141232636806,0.3221942156276797,0.3231610111591892,0.3259445054083712,0.3298940225945228,0.3325807984790874,0.3339698995134815,0.3345697329376854,0.3380192901720986,0.3384204502098435,0.3404295403165034,0.3424041646947468,0.345607333842628,0.3498977505112474,0.3554083885209713,0.3526213592233009,0.0,2.4437395713699885,55.96115414457624,180.36291552698648,259.9304510940909,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95813,44501,421.1119576675399,5999,61.34866876102408,4752,49.00170123052195,1893,19.3815035537975,77.3504688262772,79.68037611453036,63.33176974345843,65.0590932387255,77.11394801511439,79.44445290102047,63.24450545816856,64.97412260483588,0.236520811162805,235.9232135098921,0.0872642852898692,84.97063388961124,166.48566,116.63849975469056,173761.0345151493,121735.56798627594,362.24445,234.1788886754764,377482.5649963992,243820.5762010128,366.4063,176.914681495758,378029.2131547911,181451.45642024692,2706.30904,1248.4880603124222,2794024.109463225,1272496.78051248,1125.01471,495.953967106869,1157518.7813762224,500969.13797522977,1844.43704,771.0902165465429,1890223.2682412616,777916.0680749967,0.38112,100000,0,756753,7898.228841597695,0,0.0,0,0.0,30797,320.80197885464395,0,0.0,33619,346.4978656340997,1574467,0,56545,0,0,6452,0,0,71,0.7305897947042677,0,0.0,1,0.0104369970672038,0,0.0,0.05999,0.1574044920235096,0.3155525920986831,0.01893,0.3326449563145353,0.6673550436854646,24.386270826691412,4.314182194188796,0.3103956228956229,0.2428451178451178,0.2316919191919192,0.21506734006734,11.373663512317451,6.01834147603007,20.124812190822443,12282.588667469316,54.10756059628176,14.034363548535609,16.637758659595654,12.24221097945005,11.19322740870046,0.577020202020202,0.8180242634315424,0.6989830508474576,0.5821980018165305,0.1232876712328767,0.7259651778955337,0.9272727272727272,0.8556701030927835,0.6861313868613139,0.1415525114155251,0.5196735645584378,0.7507002801120448,0.6430542778288868,0.5477629987908101,0.1183063511830635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678789229491,0.0047554830009227,0.007053689231706,0.0093677290877132,0.0116158431149175,0.0136888635391415,0.016011422161032,0.018370639653623,0.0205001840415524,0.022562086685912,0.0247021184963392,0.0264725211533722,0.0284142328259975,0.0302783756784312,0.0324047813038231,0.0345935669191266,0.0366452040330427,0.0385852090032154,0.0403333922243122,0.0424435491426965,0.0570832464010014,0.0710320240049348,0.0845235724989259,0.096439340610849,0.1087803952968941,0.1242338419917994,0.1370542767168895,0.1496346094522865,0.1602950753168003,0.1712206934979212,0.1839027277129176,0.1965970878509118,0.2079011111955943,0.2184784865739172,0.228682682154171,0.2388380492344508,0.2483846128092671,0.2566670417463711,0.2652512063582174,0.272200396302702,0.2800060174041844,0.2865296002619699,0.2927674779048994,0.299949684931835,0.3059049424574963,0.3111755273220673,0.3153931922676989,0.3189762796504369,0.3239098874889822,0.3280793774524699,0.3269938898555416,0.3259715731281966,0.3249710754296357,0.3234647218845864,0.3223877933434461,0.3213951848957136,0.3192568638640543,0.320090731274347,0.3210891562970053,0.3225103196869248,0.3243030722857731,0.3249738354297901,0.3258803332914625,0.3274601435502985,0.328112217891343,0.328857835597153,0.3281525761457444,0.3309772877202903,0.3346381015622269,0.3351430609495126,0.3375946325762727,0.3389320234511171,0.3418776635748308,0.3446165470343785,0.3477691516228604,0.3489301669409828,0.3517984519653969,0.3557692307692308,0.358884073672806,0.3657424990505127,0.0,2.271198689129712,57.968954348189456,174.53650271157383,258.0888451688542,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95720,44706,423.0150438779775,5948,60.90681153363978,4647,47.99414960300878,1824,18.66903468449645,77.30949638025908,79.67073279363777,63.31695901961641,65.05995898553968,77.08064730236667,79.44438746821031,63.232733103151006,64.97946245859299,0.2288490778924057,226.34532542745944,0.0842259164654066,80.49652694668907,166.49754,116.73455839225832,173942.2691182616,121954.19806963883,362.00446,235.79164485317716,377616.1199331383,245769.91611780552,376.63698,182.56253115225385,390692.2064354367,188477.4892227196,2656.0816,1227.4113160819077,2744055.5369828665,1252050.013953827,1101.3332,491.4733833679857,1135342.5929795238,498233.5513805816,1778.48208,742.6859030658923,1821919.619724196,743660.3939577721,0.37861,100000,0,756807,7906.4667781028,0,0.0,0,0.0,30872,321.9285415796072,0,0.0,34420,356.7697450898454,1565976,0,56216,0,0,6673,0,0,67,0.6999582114500627,0,0.0,0,0.0,0,0.0,0.05948,0.1571009746176804,0.3066577000672495,0.01824,0.3281500480923373,0.6718499519076627,24.239029134207044,4.243218744561206,0.3225737034646008,0.2438132128254788,0.222724338282763,0.2108887454271573,11.207582918135364,5.954384162672544,19.480881915203227,12187.806792166324,53.19136694207827,13.722733386172097,17.126924645910314,11.647975463474996,10.693733446520866,0.5788680869378093,0.8005295675198588,0.694462975316878,0.5990338164251208,0.1244897959183673,0.7577881619937694,0.923963133640553,0.8753117206982544,0.7419354838709677,0.1840796019900497,0.5105560511448112,0.7238912732474965,0.6284153005464481,0.554002541296061,0.1091142490372272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166486059488,0.004561673830184,0.0068277737196656,0.0092427074022913,0.0114064962130839,0.0135678443107677,0.0154818325434439,0.0174344422101319,0.0198172601283676,0.022044600914943,0.0241597392347195,0.0264081976302441,0.0283190572653703,0.0305246029947889,0.0326722564277095,0.0348087533320934,0.0369898883265542,0.038932619810626,0.0408144175604889,0.0430108646965072,0.0571613549977026,0.0712237293812275,0.0845045309615707,0.0968264316810027,0.1090583148792576,0.1250489133308656,0.1369534540747578,0.148374048645484,0.1594154907762479,0.1694259183804765,0.1817966368268536,0.1927940412263987,0.2040327758251085,0.2147992515019205,0.2244963117912584,0.2355373274954275,0.2451135881341166,0.2541645548234499,0.2627603752583876,0.2708082648605906,0.2779970599469864,0.2857426947102449,0.2917485497809873,0.2986304326969202,0.3041296609036898,0.3091406799097399,0.313817740462218,0.3185659378420342,0.3221296500252666,0.3259568508805538,0.3249474195114059,0.3235358933392099,0.3223803947572624,0.3212229903676492,0.3203012218534669,0.3181783308526799,0.3164094748206007,0.3176770584848236,0.3183764343209453,0.3186848608574191,0.3191201607904277,0.3196371503999682,0.3205845248107653,0.3209724123998294,0.323402918720402,0.324068026855456,0.3246380966031245,0.3278910706968828,0.3298269068392907,0.3334787955726584,0.3368828213879408,0.339600594858721,0.343267594984563,0.3464908938504915,0.3504844323205719,0.3502005189903279,0.3495115995115995,0.3583980384143849,0.3649315068493151,0.3702857142857143,0.0,2.11200706470026,56.55903115545132,179.00725271621027,245.7398907482494,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95727,44837,424.2272295172731,6047,61.884316859402254,4764,49.10840201823937,1840,18.793026001023744,77.40440741590693,79.76056979889545,63.3594678928421,65.09877068862164,77.17630649386713,79.53472565987441,63.27519335161983,65.01781016657984,0.2281009220398004,225.84413902103503,0.084274541222264,80.96052204180637,167.6136,117.40187337857814,175095.42762230092,122642.3823775718,366.25943,237.6474861707333,381853.4373792138,247502.21458455757,373.15769,180.520295421872,384887.7014844297,184883.524786312,2732.28752,1252.1892594928236,2819128.814232139,1273023.4618559214,1131.77996,498.4676657243865,1166890.2608459473,505341.0814140852,1808.75914,756.7223043708561,1850474.8503556992,759198.5067876651,0.38135,100000,0,761880,7958.883073740951,0,0.0,0,0.0,31181,325.0284663679004,0,0.0,34103,351.3951131864573,1566184,0,56123,0,0,6617,0,0,78,0.8043707626897322,0,0.0,0,0.0,0,0.0,0.06047,0.1585682443949128,0.3042831155945096,0.0184,0.3350197628458498,0.6649802371541502,24.42696662886117,4.360440346219155,0.3213685978169605,0.2350965575146935,0.2212426532325776,0.2222921914357682,11.247938285899457,5.846742313616182,19.6388955329684,12254.925472645273,53.89623798112535,13.402649076575557,17.263380759242256,11.639187724693771,11.59102042061377,0.5644416456759026,0.7892857142857143,0.7008491182233834,0.5853889943074004,0.1085930122757318,0.7531152647975078,0.9257425742574258,0.888095238095238,0.7890295358649789,0.147982062780269,0.4948275862068965,0.7122905027932961,0.6300630063006301,0.5263157894736842,0.0980861244019138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400862636305,0.0048239168989105,0.0069795280702822,0.0089676534809323,0.0107775055158459,0.0129377035830618,0.0151847133757961,0.0173668153015724,0.0194335458558116,0.0215093374264517,0.0238185526437158,0.0262026212884751,0.0285799467467179,0.0307449865587244,0.0328628324975752,0.0350431061216895,0.0369077823227877,0.0393045715293409,0.0416008480212836,0.0433279173436653,0.057787475726128,0.0715690993951317,0.0854067889061385,0.0983441097618672,0.1107269718465738,0.1255009357850549,0.1373102343493067,0.1484036494096856,0.1594111551486534,0.1706163678476452,0.1832356995175741,0.1952285637002975,0.2066531819565879,0.2171797787204268,0.2277332277332277,0.238072566626438,0.2476546377377433,0.2567085989230268,0.2648766328011611,0.2725431409346821,0.2797393474443109,0.2858310086024768,0.2923184077252712,0.2981087442204991,0.3039286925349997,0.3087102362785211,0.3132751320768856,0.3184570275313202,0.3229672486827151,0.3266414955336587,0.3242778911199399,0.3243729074043581,0.3238756074950136,0.3220790823678598,0.321739001673256,0.3205073414939406,0.3184401641932428,0.3190124830260294,0.3199380182880106,0.3209094628974008,0.3214445939883356,0.3233435994630024,0.3236966428362389,0.3237766135324936,0.3251372013324706,0.3273100722791326,0.3281050571517713,0.3326029112537173,0.3362460678084585,0.3385490753911807,0.3427213040525243,0.3478536688517657,0.3497656982193065,0.3566676746295736,0.3594637370822083,0.3617071168952984,0.3671040585901739,0.3708769106999195,0.3741721854304636,0.375833660258925,0.0,2.518806983322211,55.97056884313046,177.96337530875584,257.97016276367134,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95751,44705,421.979927102589,5998,61.43016783114536,4721,48.74100531587137,1901,19.51937838769308,77.33232137485312,79.6981795358358,63.31916690730778,65.07131133166034,77.09432025416271,79.46046853408959,63.23170065466197,64.98606354738102,0.2380011206904129,237.7110017462201,0.0874662526458109,85.24778427931778,167.87166,117.54724061563772,175320.82171465573,122763.2302698016,362.19893,234.85533766565493,377678.5934350555,244684.34150391983,368.75443,178.73590846572696,381551.451159779,183952.0054635146,2703.85784,1246.508661550929,2793876.7010266213,1271881.2854177407,1110.25301,497.3430264725882,1144613.8108218191,504604.22673449205,1857.30216,780.4411828009523,1908246.4935092065,788558.2231973542,0.38017,100000,0,763053,7969.128259757078,0,0.0,0,0.0,30848,321.5527775166839,0,0.0,33723,348.6229908826017,1565250,0,56203,0,0,6750,0,0,73,0.7623941264320999,0,0.0,0,0.0,0,0.0,0.05998,0.1577715232659073,0.3169389796598866,0.01901,0.3314258464473056,0.6685741535526943,24.519651476113413,4.274751180387563,0.3283202711289981,0.2334251217962296,0.2192332133022664,0.2190213937725058,11.294983796125257,6.027478833819556,20.236058591400436,12258.382038682916,53.60238075565516,13.223911092401552,17.41917973162905,11.461870645570546,11.497419286054006,0.5536962507943233,0.7967332123411979,0.6703225806451613,0.5594202898550724,0.1141199226305609,0.7285714285714285,0.9343434343434344,0.8432835820895522,0.7288135593220338,0.163716814159292,0.4900317827217567,0.7195467422096318,0.6097560975609756,0.509386733416771,0.1002475247524752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0046759780502895,0.0071176183900576,0.0093401902593706,0.0118723040612028,0.0140992858670958,0.0162356204617769,0.0185402607479402,0.0208476049281734,0.0228501228501228,0.0251776066921586,0.0272467815124325,0.0292647814910025,0.0314946032792288,0.0335200718066173,0.0356360329075199,0.0379581693932491,0.0402311371157656,0.0421914619445483,0.0441266832606046,0.0580498345459669,0.071524232024776,0.0856765288892151,0.0981967299300772,0.1099782805811526,0.1248876244063924,0.137262599469496,0.1495960746330612,0.1610419292137471,0.1707322303593064,0.183050956991911,0.1944853259458055,0.205848436718087,0.2169904186901168,0.2268010607744534,0.2373217291168394,0.2472941911584209,0.2561514834441556,0.2643935095881085,0.2725575749247031,0.2792126640283274,0.286446269390047,0.2919915289329531,0.298361009273237,0.3027697837358687,0.3081358814179573,0.3133781230842372,0.3179616279513293,0.3221113397791843,0.3254335641279261,0.3256527590847914,0.3253504271152867,0.3243745512396345,0.3232317398899845,0.3223492723492723,0.3215581235172572,0.319033960350538,0.3194939035397213,0.3206687707924592,0.3212455585908904,0.3222072122781342,0.3225768134304719,0.3234775674654803,0.3238332101006027,0.3249186256781193,0.3259734836621776,0.3258756804514492,0.3286183379641323,0.3313990293310825,0.3332534643185176,0.3356448743099594,0.3380853222275615,0.3396059050877526,0.3405330882352941,0.3400018784634169,0.3398138329209379,0.3370140674633187,0.3393963621826903,0.3476722025592159,0.3481085212074895,0.0,2.09727974162212,55.3293579946988,176.55308299750905,260.6359542020947,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95729,44529,422.849920086912,6031,61.99793166125208,4746,49.03425294320425,1836,18.85531030304297,77.41699606751023,79.76992180095334,63.36600846061516,65.10046540028385,77.18639725793767,79.54100904499023,63.28063495285733,65.01830168378717,0.2305988095725553,228.91275596310837,0.0853735077578292,82.1637164966802,166.81764,116.81048511531674,174260.2972975796,122022.04673120656,361.58543,233.7077845807396,377191.3840111147,243608.40976166,362.10009,174.5788008959031,374595.0756823951,179571.08717396657,2735.94972,1240.0385374257892,2828726.3420698014,1266074.2903673796,1129.10748,496.0282465614956,1162311.5774739108,500987.1789755408,1800.8541,753.2410159449904,1850322.765306229,758546.1151117159,0.37973,100000,0,758262,7920.922604435437,0,0.0,0,0.0,30830,321.5013214386445,0,0.0,33163,342.8428167013131,1574582,0,56507,0,0,6568,0,0,73,0.7625693363557543,0,0.0,0,0.0,0,0.0,0.06031,0.1588233745029363,0.304427126513016,0.01836,0.328395839899149,0.6716041601008509,24.552737281816192,4.39616805179184,0.3217446270543616,0.2345132743362832,0.2168141592920354,0.2269279393173198,11.213755363111972,5.769943860932406,19.392228718928827,12229.822706091363,53.4436716411316,13.346149958569576,17.054362991203906,11.343997939881316,11.699160751476787,0.5583649388959123,0.7960467205750225,0.6817288801571709,0.5860058309037901,0.1114206128133704,0.7244224422442245,0.9073170731707316,0.8442622950819673,0.7647058823529411,0.1302325581395348,0.5014148273910582,0.7311522048364154,0.6304909560723514,0.5371287128712872,0.1067285382830626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026012672321302,0.0044980700847947,0.006531970139565,0.0088851430254165,0.0109809663250366,0.0128463527351941,0.0149631018877155,0.0170034700959379,0.018660453328428,0.020819053270177,0.0232815510103701,0.0254110306040764,0.0275087892431999,0.0292057999670456,0.0313608979120244,0.0335947752942513,0.0356044684177287,0.0374722562177186,0.0394200789856578,0.0413780171470836,0.0560190454312892,0.0706251634841747,0.0837302503199815,0.0965777628202431,0.1081568511643604,0.1235180269266972,0.1363443506300649,0.1482869094121529,0.1601072580817469,0.1697354451962981,0.1829223645956713,0.1952763231921062,0.207297191548561,0.2173699330413221,0.2269810574429745,0.2376832439010897,0.247890683340578,0.256790622927975,0.2651180191823685,0.2719034269695062,0.2792065932287633,0.286128214415067,0.2925428176305805,0.2979319258940112,0.3031383824046778,0.3082964057114721,0.313225608917882,0.3178393077245638,0.321654362806573,0.3270426989984185,0.3257861973459537,0.3247441796579905,0.3236250052762652,0.3239581076200794,0.3237625820244069,0.3212079510703364,0.3201458724720963,0.3211517708231139,0.3226256270725278,0.3241007066510422,0.325450072682545,0.324752397421789,0.3252429208891113,0.3251815819284334,0.3263573307821095,0.3284461282956197,0.330563276419536,0.3342711557097752,0.3397529830437513,0.3426181646019096,0.3452122854561879,0.347906338993777,0.3511269276393831,0.3530616890507626,0.3555679598102149,0.361214953271028,0.364185414464744,0.360015929908403,0.3620689655172414,0.3614637789395071,0.0,2.108535378277929,53.17424394941676,179.44531459400454,263.8543274471121,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95697,44740,423.3257050900237,6040,62.00821342361829,4731,48.85210612662884,1830,18.8198167131676,77.3508434030137,79.74227451433273,63.31502979323547,65.0830160003433,77.1250863990459,79.51760855220175,63.23127030738424,65.00225538757887,0.2257570039678,224.66596213098452,0.0837594858512247,80.76061276443625,167.59336,117.42891117971092,175128.9382112292,122708.87320569178,362.01633,234.2508316912689,377708.2144685832,244199.10644142333,370.90438,179.34581917663655,384028.7156337189,184660.9448494782,2726.34044,1250.7107407581243,2818088.4667230947,1276141.2650366516,1135.39557,498.7523080707062,1175008.3806179925,509763.0954679428,1799.15134,756.9411491651526,1851894.9601345917,765844.5735311168,0.38013,100000,0,761788,7960.406282328599,0,0.0,0,0.0,30788,321.1281440379531,0,0.0,33879,350.4498573622997,1565893,0,56187,0,0,6635,0,0,70,0.731475385853266,0,0.0,1,0.0104496483693323,0,0.0,0.0604,0.1588930102859548,0.3029801324503311,0.0183,0.3274280291047137,0.6725719708952863,24.568277122152285,4.333354599159337,0.3265694356372859,0.2350454449376453,0.2134855210314944,0.2248995983935743,11.173703994091078,5.696139427050565,19.51569375151625,12209.362332621671,53.603872897986754,13.237349481196745,17.499392302239144,11.180009043260611,11.687122071290242,0.5658423166349609,0.8048561151079137,0.7009708737864078,0.5673267326732673,0.1184210526315789,0.7351778656126482,0.9310344827586208,0.8615384615384616,0.7298387096774194,0.1583710407239819,0.5040392383150606,0.7322946175637394,0.6467532467532467,0.5144356955380578,0.1079478054567022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0048067659794546,0.0070145874996193,0.0094316611106594,0.011658426417628,0.0138953974042908,0.0158626528884309,0.018240496762465,0.0202493326924453,0.0221625939657114,0.0242846887498718,0.0265609432935158,0.028553795515326,0.0304972284613324,0.0327670904887714,0.0348595589831594,0.0371318158742657,0.0391322399833921,0.0413797407784966,0.0432072383851229,0.0575529048026906,0.0715362707321159,0.0845938257738776,0.0977128789950975,0.1098475657998839,0.125641378288882,0.1377791457926467,0.1494180660412518,0.1602321554543705,0.1704456438926505,0.1833144704931285,0.1957347767253044,0.2067746077343256,0.2172599831471125,0.2266331990223924,0.2365281412161263,0.2456485089374434,0.2552178318135765,0.2640993027006155,0.2713424418871212,0.2780948632159024,0.2855687725378167,0.2932437715463624,0.2987598647125141,0.3040471560525036,0.3093418782351491,0.3138007804682809,0.3191281014332405,0.322807653001824,0.3250504757254648,0.3238214569607803,0.3223995597138139,0.3213607127274774,0.320554272517321,0.3193466629118558,0.3174295102009628,0.3155865904135991,0.3149379360036681,0.3160371728195072,0.3170757756457039,0.3174606141023005,0.3184941621217192,0.3192549952029366,0.3197640774538171,0.3207660083782166,0.3228258613532586,0.3228539954241166,0.3269470404984423,0.3289501147985806,0.332628031816935,0.3348609426247922,0.3392453028787958,0.3406285072951739,0.3430452550325412,0.3475369919460573,0.3517576044502308,0.3489892080863353,0.3495222929936306,0.3490693282978149,0.3519296904852885,0.0,2.277620594419666,55.477670640055294,176.59259849034532,259.0762896073297,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95714,44177,418.9564744969388,5967,60.973316338257725,4672,48.15387508619429,1849,18.93139979522327,77.26691653433518,79.62563221501051,63.2951211478972,65.03851706265942,77.03618334190818,79.39673111140006,63.20972038231223,64.95599955425638,0.2307331924269959,228.901103610454,0.0854007655849713,82.5175084030434,165.90266,116.17078192492892,173331.6547213574,121372.82103446616,356.50853,230.5973511756733,371826.72336335335,240277.3378770853,361.27486,175.11958286327342,372245.7320768121,179000.2589140814,2660.01388,1224.6720941817086,2744333.702488664,1244820.4572021898,1111.77969,497.20147184065655,1144505.3283741144,502457.2259735958,1812.42296,758.8608556085633,1857688.4259356,764228.9941521047,0.37767,100000,0,754103,7878.711578243518,0,0.0,0,0.0,30398,316.9128863071233,0,0.0,33053,340.21146331780096,1576508,0,56596,0,0,6543,0,0,62,0.6477631276511273,0,0.0,1,0.0104477923814697,0,0.0,0.05967,0.1579950750655334,0.3098709569297804,0.01849,0.3356822549647661,0.6643177450352338,24.585152738508533,4.30704689460667,0.3174229452054795,0.242722602739726,0.2206763698630137,0.2191780821917808,11.362078698773937,5.979855473802315,19.696342890395638,12158.071113871938,53.1768453272112,13.670804235897709,16.81929090495558,11.528739984392846,11.158010201965071,0.5747003424657534,0.8174603174603174,0.693863789615644,0.5926285160038798,0.115234375,0.7533073929961089,0.9404761904761904,0.854679802955665,0.7795918367346939,0.1635514018691588,0.5069382934750517,0.7450980392156863,0.6332404828226555,0.5343511450381679,0.1024691358024691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0043800504922487,0.0067175386613629,0.0088987312197153,0.0110957427333563,0.0132263549631922,0.0151995514552219,0.0174661344820898,0.019494392934177,0.0216999672453324,0.0238229475259602,0.0260461582686542,0.0281968224587382,0.0302921061305207,0.0322507428194123,0.0341530478287385,0.0359961062899985,0.0378270703214159,0.0397077014230325,0.041572460068558,0.0568758483867599,0.0705987021142976,0.0841387271105514,0.096840377513336,0.1083598843711096,0.1234603174603174,0.1356702300449049,0.1474243602168287,0.1584175354183373,0.1690585318205725,0.1818789414110925,0.1937678772644535,0.2047847723585203,0.2144429477280941,0.2241360310323547,0.2341984326088404,0.2439359881906934,0.2532000721143012,0.2621073558648111,0.2704679368136277,0.2775296241436771,0.2842797621834184,0.2910051030677607,0.2967271506182315,0.3026427755221123,0.3083412474253506,0.3131751083932733,0.3174702248264441,0.3221998832609118,0.3262862661568788,0.3250536893715304,0.3232597951238368,0.3216808907477533,0.3199872572727668,0.3191917086100604,0.3176275455355223,0.3162895640015253,0.3172805933250927,0.318256663579294,0.3192103047349469,0.3209883502442691,0.3230506928887214,0.3231591798930661,0.3230562100302928,0.3237987099267992,0.3251119315057733,0.3259180689734254,0.3298270071605095,0.3353235952660198,0.3379504731226092,0.3424165707710011,0.3428678759257271,0.3430962343096234,0.3470152105786134,0.349664873029359,0.350887573964497,0.3529770992366412,0.3551912568306011,0.3619648737650933,0.3588756257219869,0.0,2.6088969824793296,55.93189017630581,172.6346834763546,254.93602496008847,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95698,44596,422.2554285356016,6110,62.56139104265503,4793,49.44721937762545,1931,19.697381345482665,77.288290147924,79.65969476905344,63.294707477804174,65.04472105085983,77.0501003242428,79.42220074730331,63.20723384248565,64.96020876868182,0.2381898236811963,237.4940217501376,0.0874736353185241,84.51228217801088,167.6367,117.45488077907424,175172.62638717634,122734.93780337543,363.80909,235.7774201736736,379497.5443582938,245710.5877658274,371.87121,180.04882118085854,384869.6524483271,185269.58436244985,2765.43508,1268.478319169672,2854578.9880666262,1290341.224484033,1148.09637,510.12100559498566,1184411.68049489,517786.4771409698,1892.37972,785.3874458861104,1932871.4079709083,784306.7255126402,0.3791,100000,0,761985,7962.392108508016,0,0.0,0,0.0,31037,323.6431273380844,0,0.0,34001,351.55384647537045,1559402,0,56024,0,0,6620,0,0,61,0.6374218896946645,0,0.0,0,0.0,0,0.0,0.0611,0.1611711949353732,0.3160392798690671,0.01931,0.3311093871217998,0.6688906128782002,24.53431426269582,4.3340174044281525,0.3194241602336741,0.2311704569163363,0.2247026914249947,0.2247026914249947,11.380616632268367,5.98065364597597,20.49037674265777,12248.562952914714,54.51220273883279,13.356977988649824,17.337052149202737,12.046306648289402,11.771865952690828,0.5731274775714583,0.7951263537906137,0.7073807968647943,0.6016713091922006,0.1253481894150417,0.7602523659305994,0.9346246973365616,0.8653366583541147,0.7609561752988048,0.1970443349753694,0.5058156028368794,0.7122302158273381,0.6513274336283186,0.5532687651331719,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698842402698,0.0044606198234,0.0066668019645249,0.0091326520246246,0.0112887478642909,0.0134916351861845,0.0156603658163577,0.0180370540499157,0.0202598411513968,0.0222074400040935,0.0242790087523315,0.0265340477510213,0.0286339988895971,0.0307003089598352,0.0325219185146982,0.0346730604272382,0.0369852659480839,0.0389900163971854,0.0408562334879657,0.0428252803601951,0.0573404077540107,0.0711660681192348,0.0846023866248255,0.0970291403133978,0.1096649566153651,0.1247670675927494,0.136959245651666,0.1486208623206162,0.1601141916238091,0.1707775403481267,0.1836778708766027,0.1960370081469925,0.2082557316342645,0.2185761835939211,0.2274149135367331,0.2380978797528042,0.2481551878354204,0.256959556212017,0.2653084439590941,0.2724548147807914,0.2796919758312362,0.2864494800886252,0.2932866801091211,0.2991677774975682,0.3044589708943505,0.3095314545409637,0.3151162936650391,0.3186520236227503,0.3232723352857903,0.3266291763149189,0.3256782998004207,0.3247779555359408,0.3237272804364418,0.3226016872988722,0.3211777860603801,0.3200994841562269,0.3176950292722397,0.3178357043006332,0.3185034176759803,0.3196418979409131,0.3203752091283343,0.3200618017589731,0.3220485016601521,0.3225027393278025,0.3237489499579983,0.3245912718010033,0.3257455042112451,0.3283230087104179,0.3315767284991568,0.3346052945385165,0.3375228519195612,0.3406001812270134,0.3394172068726792,0.3401598781880472,0.3421837152971865,0.3479995306816849,0.35300348010289,0.3541666666666667,0.3554655870445344,0.3566616766467065,0.0,2.3536788691478963,55.4083648276501,184.5219133745882,260.83272720341887,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95834,44916,423.5866185278711,6085,62.25347997579147,4732,48.84487760085147,1861,19.06421520545944,77.36488025655099,79.67845519414263,63.35773544642036,65.07073880471992,77.13698344018647,79.45355818721507,63.273060376103984,64.98965546526652,0.2278968163645203,224.89700692756287,0.0846750703163721,81.08333945340007,168.23334,117.84757902768116,175546.6118496567,122970.53136431868,361.23204,234.2624018633059,376410.219754993,243921.08423242887,369.45877,179.22626213712115,382442.09779410233,184534.3363744955,2719.73932,1247.9269613200634,2808868.710478536,1273075.1938978485,1145.7988,509.489149914638,1178235.3027109378,514288.6636167469,1824.65784,762.2323000142754,1870764.3007700816,766524.4261495274,0.38247,100000,0,764697,7979.391447711668,0,0.0,0,0.0,30816,320.9925496170461,0,0.0,33796,349.54191623014793,1566459,0,56201,0,0,6703,0,0,60,0.6260826011645136,0,0.0,1,0.0104347100194085,0,0.0,0.06085,0.159097445551285,0.3058340180772391,0.01861,0.3278457196613358,0.6721542803386642,24.63242024436537,4.327587692212374,0.3159340659340659,0.2356297548605241,0.2248520710059171,0.2235841081994928,11.25530651943686,5.871357787627908,19.752287698111623,12380.672150685768,53.660688484429066,13.45266462148019,16.831326426793705,11.910251085435789,11.46644635071938,0.5650887573964497,0.7910313901345292,0.6996655518394649,0.5657894736842105,0.1361058601134215,0.7468152866242038,0.9361702127659576,0.8962765957446809,0.692,0.1545893719806763,0.4994246260069045,0.7023121387283237,0.6336014298480787,0.527027027027027,0.1316098707403055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.004511537369723,0.0068694699245068,0.0092837118595863,0.0114397860505791,0.0135930436199242,0.0157189749026483,0.0178961553382199,0.0200462054301602,0.022345053482778,0.0246484647234862,0.0267438399885061,0.0287978293713193,0.031082750102923,0.0332529325664337,0.0354090101994466,0.037360750524933,0.0395897010827332,0.0422182765888961,0.044258559880146,0.0589634203581821,0.0730741089160656,0.0864568710846655,0.0997070220206029,0.1123479542941393,0.1277797723384933,0.1403222560038984,0.1523047157375515,0.1636600275238166,0.1740397180745088,0.187315761161915,0.1991308296036842,0.2105669151039742,0.2212247305134169,0.2304192538051541,0.2399836332068961,0.2490781279591814,0.2580800934348539,0.2675831455457541,0.2748725218942217,0.2815849039172209,0.2879755331691316,0.2946173294581886,0.3011947331284308,0.3071760579618685,0.3116283649881217,0.3161933806619338,0.3205898416166029,0.3255480301933616,0.329652104092351,0.3285190310488909,0.3276461295418641,0.3267650039409976,0.325299290944012,0.3254013079667063,0.3230550066632967,0.321531024645376,0.3222152814308259,0.3213992192315595,0.3222407099278979,0.3238199160912836,0.3235539322720235,0.3246106311873384,0.3250414965681216,0.3268745342212178,0.3295247039181927,0.3293401246336397,0.3326205226579452,0.3350200295171832,0.3371578821560894,0.3397089777615082,0.343272416372769,0.3459507602264775,0.3468870099923136,0.3488791793313069,0.3496611580073713,0.3528778085564789,0.3516326530612245,0.3524386883438964,0.3525541795665635,0.0,1.9930440399940608,55.070927087851246,181.51470753075893,256.12783497952097,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95630,44702,424.61570636829447,5953,61.08961622921677,4657,48.0288612360138,1833,18.75980340897208,77.2563444549925,79.6683869515833,63.27473565930678,65.05632897528531,77.03627971167232,79.44871277147482,63.19333206324254,64.97740195935499,0.2200647433201794,219.67418010848405,0.0814035960642343,78.92701593031859,167.1978,117.19398129402067,174838.23068074873,122549.38962043363,362.25157,234.47348059168652,378138.8790128621,244521.71974452207,365.78805,176.9455327937835,378195.06431036285,181725.2078226766,2666.14896,1217.6160303608483,2753358.15120778,1238631.6745381649,1103.71172,483.53986085163166,1139468.754574924,490956.9286328886,1797.8621,748.8451211282222,1842970.218550664,751844.4126828905,0.37984,100000,0,759990,7947.1923036703965,0,0.0,0,0.0,30906,322.49294154554013,0,0.0,33510,346.04203701767227,1563368,0,56150,0,0,6597,0,0,57,0.5960472655024575,0,0.0,3,0.0313709087106556,0,0.0,0.05953,0.1567238837405223,0.3079119771543759,0.01833,0.3282836422240129,0.6717163577759871,24.664529177481256,4.290930462526116,0.3137212797938587,0.2452222460811681,0.2200987760360747,0.2209576980888984,11.156737092567004,5.766471048122405,19.440350090034336,12216.060402270869,52.89937141750053,13.713817059008768,16.574313592604,11.354226939262436,11.257013826625313,0.5673180158900579,0.7819614711033275,0.7056810403832992,0.5853658536585366,0.1146744412050534,0.7444168734491315,0.924757281553398,0.8783783783783784,0.7090909090909091,0.1835748792270531,0.5052204176334106,0.7013698630136986,0.6471127406049496,0.5515527950310559,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0043278635354692,0.0067384487360334,0.0087267481434071,0.0107437175704547,0.0131617819341299,0.0152705239105598,0.017501736891577,0.0196898717345498,0.0217591738889913,0.0238056148415695,0.0258457680766226,0.0278781514767802,0.0298993731441768,0.0321364378241018,0.0340949069762629,0.0359712230215827,0.0378846113892755,0.0399887619404382,0.0418996161548731,0.056152415191355,0.0703884512236004,0.0840393478420627,0.0963799618943357,0.108848203450641,0.1246931087030138,0.1372426236467841,0.1492998242905063,0.1602304428221763,0.1700846720968417,0.1834725890787558,0.1952524891387959,0.2068052847697988,0.2174699191268328,0.2271569265382197,0.2374741936199969,0.2466026150077734,0.2543983229456648,0.2627947945672558,0.2707743126842304,0.2788101503541495,0.2856087955365933,0.2926890008894159,0.2985610215666742,0.3036816162599647,0.3097440203499499,0.3144844876214352,0.3189238788280423,0.3235530650893714,0.3273087594133967,0.3260775745805686,0.3252651468134111,0.3244266719418971,0.3231933650388586,0.3231205250596659,0.3202836573960128,0.3177774953936082,0.3176106325861756,0.3177539592565873,0.3187560564189068,0.3191373139951026,0.3206584329454747,0.3224361939200269,0.3243188833713595,0.3242215698541797,0.3259991136369561,0.327775715876324,0.3313723022714402,0.3344766037867917,0.3369362948885457,0.3386048625312429,0.3410018552875696,0.3433249370277078,0.3448145344436033,0.3476815074819878,0.3509429541993674,0.3530380125710865,0.3496932515337423,0.3566452304394427,0.3554447852760736,0.0,2.60037317407738,52.58538488507041,178.9826936717382,256.99671410734305,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95690,44467,420.8381231058627,5926,60.65419584073571,4696,48.45856411328248,1885,19.30191242554081,77.32722884548278,79.7042661322715,63.32110870231941,65.07622353874844,77.09268523423907,79.47128197011212,63.23425290945063,64.99248177686749,0.2345436112437084,232.9841621593829,0.0868557928687892,83.74176188094395,166.82644,116.84116330270795,174340.5162503919,122103.83875296055,361.55329,233.99697331252747,377161.26031978265,243859.64396752784,363.82249,175.8315510869883,375921.4233462222,180431.54621926145,2681.09084,1229.406122728808,2769816.030933222,1252745.5771019005,1093.88394,482.0024628402909,1130359.9749190093,490918.5733517512,1849.36348,771.0091857771868,1896985.9546452083,775982.0150232789,0.38002,100000,0,758302,7924.5689204723585,0,0.0,0,0.0,30838,321.6532553035845,0,0.0,33368,344.55010972933434,1570795,0,56400,0,0,6588,0,0,63,0.6374751802696207,0,0.0,0,0.0,0,0.0,0.05926,0.1559391610967843,0.3180897738778265,0.01885,0.3276083467094703,0.6723916532905297,24.72852185766789,4.272192908361113,0.3179301533219761,0.233603066439523,0.2267887563884156,0.2216780238500851,11.190751028403952,5.8140431843164695,20.061582838133862,12271.783889722668,53.40600209772011,13.144816571059597,17.017827261804456,11.806734925709629,11.436623339146449,0.5640971039182283,0.7894257064721969,0.6972538513060951,0.5849765258215962,0.1143131604226705,0.7367130008176614,0.9209183673469388,0.8776041666666666,0.717741935483871,0.1256281407035175,0.5033112582781457,0.7163120567375887,0.6348061316501352,0.5446756425948592,0.1116389548693586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023994168505882,0.0048241124545205,0.0071319874201075,0.0093746508628132,0.0113177616660395,0.0134503578955942,0.0156119348194073,0.017832157119075,0.0201358067617041,0.022068612391193,0.0242236534438199,0.0265193143185809,0.0288315161489405,0.0307885707220064,0.0326023014603436,0.0345715526691348,0.0365911775065785,0.0386935351584805,0.0408991148233287,0.0428619079386257,0.0580438279471056,0.071699929880378,0.0848166990087585,0.0977601026838788,0.1099813304924741,0.1255369120416411,0.1377370705666344,0.1503540812523295,0.1612565445026178,0.1720431261063133,0.1841439112403727,0.1956201693043798,0.2073879087171231,0.2180028437055671,0.2277019590578912,0.238280427677137,0.2481639395495234,0.257343097881723,0.2655136411094466,0.2730021994134897,0.2806154344856329,0.2871402993458392,0.2935932949783365,0.299013674332762,0.3050077163306721,0.3105565556185732,0.3150473948485494,0.3193179937096507,0.3240812730005701,0.3279995775242924,0.3264354179867074,0.3249569944264777,0.3245837856125858,0.3232369942196532,0.322891100301962,0.3208117775287453,0.3185391833629216,0.3190606602272913,0.3192226317226317,0.3203691496374423,0.3203351474686267,0.3205398898908775,0.3212111066937289,0.3213511762471794,0.3213305733403938,0.3223945279866332,0.3249029458780543,0.3283497529193289,0.3331581160639192,0.3355720701029289,0.3397157610930859,0.3410571276027763,0.343540427685689,0.3461952344350499,0.3456895732344834,0.3443210318882121,0.3458044649730562,0.3520325203252032,0.3568464730290456,0.3618244538137217,0.0,2.452704346174639,53.31475192888351,184.54896045003304,253.8463230451002,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95787,44322,418.564105776358,5966,61.01036675122928,4663,48.179815632601496,1856,19.042249992170127,77.38146625236273,79.7030836462251,63.35451413110488,65.06716885463445,77.14575579747509,79.46933757569502,63.26705930601936,64.98310073153085,0.2357104548876378,233.74607053007423,0.0874548250855227,84.06812310359157,167.49326,117.37727997530324,174859.88704103898,122539.65566862232,357.13676,231.6848742466716,372335.4839383215,241366.2725926507,368.3366,178.40716881922935,381749.4962782006,184113.0757617376,2687.19384,1242.477314324736,2777324.229801539,1269089.327507046,1099.99722,490.3750036719246,1134025.8385793478,497613.0312565762,1822.37308,768.2446911884034,1870856.504536106,773891.5788160474,0.37761,100000,0,761333,7948.176683683589,0,0.0,0,0.0,30478,317.6631484439433,0,0.0,33669,348.648564001378,1568849,0,56284,0,0,6699,0,0,64,0.6681491225322851,0,0.0,2,0.0208796600791339,0,0.0,0.05966,0.1579936972008156,0.3110962118672477,0.01856,0.3348249960044749,0.665175003995525,24.411075993329703,4.366541785273498,0.3124597898348702,0.236542998069912,0.2260347415826721,0.2249624705125455,11.110198623304235,5.624148082065422,19.741923579594246,12177.260870350545,53.08421760250573,13.280338304723555,16.565439562785468,11.727058138528845,11.51138159646786,0.5687325755951105,0.800543970988214,0.7110501029512697,0.594876660341556,0.1010486177311725,0.7361867704280156,0.8949880668257757,0.89,0.7131782945736435,0.1490384615384615,0.5050325636471285,0.7426900584795322,0.6433301797540208,0.5565326633165829,0.089179548156956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679869590749,0.0047427946005107,0.0071616234365648,0.009159964253798,0.0114187519700651,0.0138648533094447,0.0162569308545335,0.0183471259910815,0.0203718839395177,0.0225180062203306,0.0244232266524607,0.026675421676858,0.0289701665861654,0.0310576269790615,0.0329707716892623,0.0350201383868635,0.0369435188442991,0.0392311360855952,0.0412424683149802,0.043241498511068,0.0575871425589647,0.0721169441334351,0.0849117949363371,0.0979732570851904,0.109992515364586,0.1257958751983077,0.1373308159022444,0.1490750005322206,0.1598393488501265,0.1705478717701297,0.1830415778481149,0.1953538172025567,0.2066921855629744,0.2171425445793676,0.2271131604142135,0.236420450767901,0.2455599834790083,0.254343325231794,0.2625376099914845,0.2700128375590298,0.2775525803761697,0.2836684270307615,0.2904830134163815,0.2961338414707222,0.3007518796992481,0.3053259249220761,0.3106450039398146,0.3158865194114879,0.3195482391949125,0.323245509929583,0.3234890479522092,0.3222556659657224,0.3213290159087709,0.320702068905692,0.3196133828996282,0.317669230533509,0.3157220367939004,0.3155780706931602,0.3165133700790088,0.3176426586877538,0.3189039662068708,0.3200299424789221,0.3207357859531772,0.3209498704315968,0.3212880314809482,0.3224732832366936,0.3221360161423253,0.3254779066123472,0.3284224524076148,0.3314154200230149,0.3354254786919543,0.3382500660851176,0.337284751684552,0.3397208600528102,0.3434770357847281,0.3477130362841272,0.3481099134659177,0.3498190591073583,0.3460386604955077,0.3562428407789232,0.0,1.8666268195536653,56.583876161365225,174.38902297616636,251.78174788571351,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95756,44535,420.6524917498642,5880,60.12155896236267,4617,47.64192322152137,1851,19.0379715109236,77.31912755708531,79.66965002264114,63.32066847763053,65.05875923726576,77.08739878917167,79.43681432028649,63.23444911810634,64.97392474291412,0.231728767913637,232.8357023546488,0.0862193595241933,84.83449435163948,167.26358,117.15360734793823,174676.86620159572,122345.97032868776,360.88519,234.68199402910287,376305.2759096036,244508.63029899207,367.05489,178.5672549851144,379097.79021680105,183232.71085199012,2637.91044,1220.6129237483783,2725487.614353148,1245531.0961820283,1124.41858,496.7650694903689,1161009.3466727934,505608.99352870975,1808.32396,761.6002093779956,1861889.907682025,773370.5029474369,0.37897,100000,0,760289,7939.857554617987,0,0.0,0,0.0,30783,320.87806508208365,0,0.0,33497,345.6598019967417,1566548,0,56240,0,0,6577,0,0,73,0.7519111073979698,0,0.0,0,0.0,0,0.0,0.0588,0.1551574003219252,0.3147959183673469,0.01851,0.3431866168588598,0.6568133831411401,24.274107804494,4.357495471166189,0.3255360623781676,0.2252544942603422,0.2298029023175222,0.2194065410439679,11.456367123232532,6.070691996578237,19.74021200197155,12252.60447990874,52.41471212828869,12.524664611957576,16.901169128539138,11.850637834145724,11.138240553646227,0.5698505523066927,0.7932692307692307,0.6899534264803726,0.6022620169651273,0.1283316880552813,0.7289866457187746,0.905,0.8461538461538461,0.7631578947368421,0.152073732718894,0.5092703349282297,0.7234375,0.6352201257861635,0.5484276729559748,0.121859296482412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278706619813,0.0045805085175163,0.0068381965017653,0.00927298949806,0.0115223073089869,0.0137891703074557,0.0156614835585011,0.0175938406241065,0.0197644219954602,0.0221330439589689,0.0242687090523207,0.0264911542134283,0.0286005183265457,0.0305646266212026,0.0326760970274759,0.0348280815617862,0.0369572869003499,0.039052370629298,0.041147132169576,0.0435135810698217,0.0576907018496096,0.0715892093178941,0.0852779846245817,0.0984058214856566,0.1104352043183064,0.1255551325973861,0.1378268017181948,0.1495530964034901,0.1601977512733174,0.1703259005145797,0.183645780615706,0.1959676633875523,0.2080093101160501,0.2191326976906928,0.2291595612423398,0.2395401891514762,0.2491795226719653,0.2578144339176812,0.2660809752443218,0.273746664070464,0.2807868655057429,0.2870002926543751,0.2933142220853372,0.2982803518498518,0.3031629637736675,0.3080806210735488,0.3128719818566828,0.3177260507841863,0.322007521722215,0.3264993394980185,0.3252594689311228,0.3235982595285305,0.3220286379346829,0.3206566585115161,0.3195353403141361,0.3177733476460666,0.3170646624171503,0.3176992604765817,0.3180808149870094,0.318691739278238,0.320169014084507,0.3217952014557826,0.3222222222222222,0.3221030909335606,0.3239277108433735,0.3247550620509471,0.3261123954676485,0.3287628152714007,0.3330055834533132,0.3358265067869722,0.3367847411444141,0.3400584019113353,0.3427706664985182,0.3439242343236844,0.3479777505420948,0.3505239609089838,0.3495811119573496,0.3557711744491611,0.3584180170282889,0.3554628224582701,0.0,2.279262552780132,55.59480551283549,168.57771800401812,252.8391429428305,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95691,44484,421.074082202088,6035,62.05390266587244,4764,49.294081993081896,1806,18.54928885684129,77.34181859432726,79.72318740008375,63.3271521787835,65.08499148417788,77.12300751819896,79.50495283948233,63.24740462306292,65.00754127335523,0.2188110761283042,218.23456060141663,0.07974755572058,77.45021082264714,168.37876,117.87996514420392,175960.4560512483,123187.68927506656,362.05436,233.88252630168463,377885.6005266953,243942.48654561013,363.5534,174.84227105350118,376777.4712355394,180341.52456141933,2730.00976,1237.6388655745832,2827363.4511082545,1267820.6740945869,1135.21024,499.5572194721575,1176165.6686626747,511901.1940764434,1769.47128,730.6553012739016,1819436.498730288,739071.7363089196,0.37985,100000,0,765358,7998.2025477840125,0,0.0,0,0.0,30896,322.3605145729483,0,0.0,33318,345.0063224336667,1565023,0,56216,0,0,6635,0,0,57,0.5956673041351851,0,0.0,1,0.010450303581319,0,0.0,0.06035,0.1588785046728972,0.2992543496271748,0.01806,0.3238993710691824,0.6761006289308176,24.828793549996607,4.320770646863603,0.3207388748950461,0.2401343408900084,0.221872376154492,0.2172544080604534,11.204146865281825,5.788706805319738,19.169424508907788,12274.910939904345,53.6943205939001,13.707738142916536,17.154643375359985,11.600380385716482,11.231558689907091,0.5696893366918556,0.791083916083916,0.7048429319371727,0.5733207190160833,0.1217391304347826,0.7493627867459643,0.9111675126903552,0.8915989159891599,0.7416267942583732,0.1902439024390244,0.5107332032339001,0.728,0.6453839516824849,0.5318396226415094,0.1048192771084337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.004449760280568,0.0066454957742763,0.0090491763319859,0.0114796437141578,0.0137350329885151,0.0160739585562996,0.0181292937129324,0.0201862243072803,0.0221519311283767,0.0244955294889672,0.0267847056044531,0.0287131055625855,0.0311601595103403,0.0331214004087277,0.035085178787534,0.0370151604646584,0.0389343411271232,0.0409666378852975,0.0428364417293037,0.0570157111816814,0.0711249319428738,0.0840671277589446,0.0966720326589017,0.1091269631989199,0.1247435327960742,0.137642028877879,0.1494986908487132,0.1614516008418174,0.1712597580852706,0.1843241555309091,0.1963490072241207,0.207459359538955,0.2181963253216163,0.2277261479241132,0.2387448236153863,0.2480135702169449,0.2571778809928137,0.2660940797385917,0.2734443872001831,0.2805096601880008,0.2875745178258328,0.2936976131083972,0.2996502742712051,0.3045869554659803,0.3102106170710678,0.3155393235941565,0.3204262516054375,0.3238869541576583,0.3281548788690044,0.3269722498856081,0.3264357701667789,0.3243486832840445,0.3233917790808515,0.3217882073369968,0.320798663785838,0.3189987975444592,0.3186449019768682,0.3186430255201394,0.3188814182019225,0.3196523689374825,0.3206534606581959,0.3214674140383167,0.3227824066834945,0.3241185512537227,0.3251173708920187,0.3259079903147699,0.3300961719781256,0.3329348896076501,0.3336642312579415,0.3351705917186717,0.3377855514920231,0.3413278371119855,0.3472464207257026,0.3495669987894589,0.3535891968727789,0.3520976353928299,0.3571284938668811,0.3637116818558409,0.3619230769230769,0.0,1.8630919895091853,51.67769406216379,185.3485245270452,266.97145531264727,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95677,44517,422.7452783845647,6007,61.51948744212297,4685,48.37108186920576,1854,18.959624570168376,77.38307130315455,79.76039087943904,63.34642469116329,65.09799510441698,77.14618428247068,79.52656207770121,63.257657443482856,65.01342067829465,0.2368870206838664,233.8288017378289,0.0887672476804368,84.57442612233024,167.1406,117.04139576264132,174692.55934028034,122329.70908644848,358.18207,232.5892874477309,373777.5431921988,242512.4539138889,366.04171,177.45113150056426,379274.7682306093,182855.18490996968,2677.97116,1240.9540037042152,2767191.9061007346,1265454.9308435856,1130.42348,503.2538049312245,1166765.0114447568,511350.86668201257,1809.80014,772.1855489246323,1852845.8668227475,772197.619064801,0.37881,100000,0,759730,7940.57087910365,0,0.0,0,0.0,30571,318.9063202232511,0,0.0,33419,346.00792248920845,1569936,0,56416,0,0,6535,0,0,61,0.6375617964610094,0,0.0,0,0.0,0,0.0,0.06007,0.1585755391885114,0.3086399200932245,0.01854,0.3348645651829558,0.6651354348170442,24.374486071600188,4.304158442261727,0.311632870864461,0.2288153681963714,0.2377801494130202,0.2217716115261472,11.08269159191729,5.835233939005773,19.94513005496114,12192.493083054222,53.160034486672274,12.822961909721403,16.72688313710506,12.312547963341911,11.297641476503909,0.5641408751334045,0.7826492537313433,0.7150684931506849,0.5798922800718133,0.109720885466795,0.7297709923664122,0.9148418491484184,0.8740554156171285,0.7427536231884058,0.1238938053097345,0.4998518518518518,0.7004538577912254,0.6556914393226717,0.5262529832935561,0.1057810578105781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019436542724962,0.0042449293862581,0.0062068336020932,0.0084690686055485,0.0106756138477962,0.0129889959994706,0.0152602499541275,0.0174136716716512,0.0196457228133656,0.0214876540682199,0.0234887631233595,0.0258566690284751,0.0276557887916405,0.0296962393003924,0.0318054738840229,0.0337960044234525,0.0357601624331827,0.0378208388255197,0.0395586568359314,0.0416349671193188,0.0566106723496719,0.0711167411719134,0.0841726467749381,0.0962976204246012,0.1087176567343582,0.1240392036623917,0.1372006487930541,0.1490683229813664,0.1596060269762677,0.1698901687650683,0.1831983043370668,0.1956359547160018,0.2069044228741616,0.2167668597660946,0.2263752461198314,0.2368543508608655,0.2463593317251853,0.2553016566621243,0.2638589239888265,0.2718293074208186,0.2791777111571539,0.2854416224634372,0.2929152891827521,0.2978360797398015,0.3035772931288239,0.3087505860869136,0.3135059306855046,0.318075879723379,0.3220980580258757,0.3259445178335535,0.3253966116303499,0.3230032476468322,0.3212157917717151,0.3205243077634545,0.3197986128644201,0.3180550447468432,0.3173404272164426,0.3177826293931285,0.3185074984182356,0.3191268933981137,0.3200209212836702,0.3214925667027665,0.323009495982469,0.3239891343070894,0.3245762914445533,0.3267388264539851,0.3279332767882386,0.3312739867078536,0.3337757133377571,0.3366157239640775,0.3367638391440359,0.3389312977099236,0.3429035076769442,0.3439825603247388,0.3441864767366571,0.3457564147219319,0.3461595824011931,0.349308396649133,0.3523784214722296,0.361733382298935,0.0,2.3162568467228986,57.25566354549112,170.11189855607427,253.74449473213733,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95687,44981,425.3764879241695,6108,62.735794831063785,4773,49.2334381890957,1953,19.92956200946837,77.3960056150407,79.78004612273071,63.35197710932333,65.11305075894907,77.14558994388736,79.53535069195703,63.25804247258302,65.0247141890424,0.2504156711533483,244.69543077367464,0.0939346367403075,88.33656990667293,165.91476,116.2584475420438,173393.20910886535,121498.6858633292,360.8648,233.6295240214912,376473.87837428285,243504.6141288808,369.0239,178.86609250541918,382130.23712730047,184108.7739616663,2730.85964,1252.9358582729108,2817537.262115021,1273052.844385357,1131.26383,504.5604830777797,1167375.421948645,512554.1680013347,1914.35788,812.636234583056,1955144.690501322,809685.9813485878,0.38229,100000,0,754158,7881.509504948426,0,0.0,0,0.0,30706,320.2211376676038,0,0.0,33718,348.7934620167839,1578375,0,56527,0,0,6547,0,0,62,0.6479459069675086,0,0.0,0,0.0,0,0.0,0.06108,0.1597739935650945,0.3197445972495088,0.01953,0.3285803823252898,0.6714196176747101,24.58860929272897,4.270516215160834,0.3084014246804945,0.2384244709826105,0.2289964382987638,0.2241776660381311,11.05322139245061,5.793161931721159,21.01419633476097,12326.43108179385,54.060526745703015,13.428191136393435,16.63529601869405,12.236864799634064,11.760174790981484,0.5562539283469516,0.773286467486819,0.7038043478260869,0.5672461116193962,0.111214953271028,0.7274167987321711,0.9283819628647216,0.8644501278772379,0.7170542635658915,0.1906779661016949,0.4947308459128453,0.6964520367936925,0.6456984273820536,0.5209580838323353,0.0887290167865707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022184628787341,0.0043803613798138,0.0066279612675341,0.0089814579629159,0.0112200679510914,0.0132773999103979,0.0153450860038541,0.0175295306741263,0.0199963196957615,0.0219144711253045,0.0240311667008406,0.026458720494471,0.0288273649135076,0.0308502091015842,0.0329137432934378,0.0353421542278271,0.0374137681009301,0.0392995422319565,0.041404486786134,0.0436921537563578,0.0582772740567417,0.0722785644761217,0.0857922064299575,0.0984449421190423,0.1105009065227474,0.1258103063566088,0.1375860642259259,0.1489477213936703,0.1604102125841256,0.1708996524947445,0.1847192753826105,0.1973778152787693,0.2080081733799969,0.2185505028421513,0.2285167632473087,0.2402528394624394,0.2499498115143539,0.2588389938096148,0.2671251501212299,0.2748110802437379,0.2813679871606876,0.2887747358589691,0.2945846328324355,0.3003242674069376,0.3068173550311643,0.3123278575644304,0.3167307308306709,0.3214852025218505,0.3262578920866096,0.3300701325017434,0.3284062990857465,0.3270813896054003,0.3252292029922943,0.3239704969616489,0.3230230349085727,0.3210564166908941,0.320118333834301,0.3208339484605416,0.3207170294494238,0.3218954539779922,0.3226561329938595,0.3224451150955678,0.3233224034585744,0.3236027610777109,0.3251265807597245,0.3253854754413791,0.3277368122518434,0.3305403878742233,0.3326561350660268,0.3357018100984439,0.337840924665357,0.3428844824836531,0.3469824870858007,0.350376626341018,0.3548539114043355,0.3558231016807724,0.3570227724285496,0.35,0.3503709810387469,0.3550250288794763,0.0,2.486895517605677,54.97977651526878,178.81266235251272,263.6972491436833,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95829,44478,421.2294816809108,6056,62.1836813490697,4781,49.390059376597904,1919,19.691325172964344,77.38566316619061,79.7065048902013,63.36611244363343,65.08418861596775,77.14507801015021,79.46600142018549,63.276526272478335,64.9968295433526,0.240585156040396,240.5034700158097,0.0895861711550907,87.35907261514342,167.27216,117.14042848307474,174552.7554289411,122239.01792054049,362.96638,235.80982225997573,378262.8744951946,245571.7708209162,372.58895,180.3485498705724,385513.1118972336,185725.17091113923,2740.18864,1272.8162154289869,2831444.552275407,1300204.0879368314,1135.0503,504.3477270000248,1169693.276565549,511589.51801311725,1887.8946,803.3456373639374,1938503.667991944,812310.4593653358,0.3793,100000,0,760328,7934.216155860961,0,0.0,0,0.0,30952,322.4702334366424,0,0.0,34108,352.6594246000689,1570010,0,56431,0,0,6573,0,0,62,0.646985776748166,0,0.0,0,0.0,0,0.0,0.06056,0.1596625362509886,0.3168758256274769,0.01919,0.3476476160404168,0.6523523839595832,24.263313394657413,4.291759836563186,0.3118594436310395,0.2430453879941435,0.2177368751307258,0.2273582932440911,11.00711952462659,5.631155030859903,20.675994525436952,12133.67943440147,54.655877319877234,14.027173368659572,17.0220995867411,11.478288871827342,12.12831549264922,0.5580422505751935,0.7865748709122203,0.6928236083165661,0.5821325648414986,0.1057957681692732,0.718299164768413,0.9223744292237442,0.8518518518518519,0.7253218884120172,0.1161825726141078,0.4971131639722864,0.7044198895027625,0.6335174953959485,0.5408415841584159,0.1028368794326241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225861667325,0.0045213547844246,0.0069419776517035,0.0091845650539491,0.0111985841572073,0.0134609510233173,0.0155235503368702,0.0175936320032656,0.0199805815320149,0.0220020876399435,0.0240010658030928,0.0258447263620314,0.0276672936001397,0.0297690122287643,0.0320182313149645,0.0339413721156031,0.035915318074583,0.0379576267672789,0.040040289502923,0.0419775439910925,0.0567551216255684,0.0707267101521993,0.0839429829158369,0.0964373141698448,0.1082214146521304,0.123855391147302,0.1370517506223846,0.1485827248668813,0.1590690927707502,0.1699065000160652,0.182944402623938,0.1945167597463623,0.2056039255704887,0.2160041041762176,0.2265033774507112,0.2362118531623175,0.246111853832442,0.2544653890224449,0.2629629210046335,0.2702610007888328,0.2769936240990575,0.2829534712740258,0.2896016811087762,0.2951820909080043,0.3006576317988591,0.3057820789939084,0.3108416601175106,0.3161338591663602,0.3202746834299286,0.3237449832225804,0.3219609899046928,0.3199879052763232,0.3198097409268093,0.3193499458288191,0.3182642025196102,0.317427258805513,0.3151214565275951,0.316041998718349,0.3165374013388806,0.3169880854413396,0.318261912795711,0.3195170229612035,0.3195008522547926,0.3211278988842242,0.3235777466286432,0.3243555112638011,0.3257087167139622,0.3300486387467626,0.3316975003530574,0.3312445118543945,0.332221054075056,0.3362389709790581,0.3377884251670659,0.3382498289363643,0.3398698972376732,0.3401425178147268,0.3429359485136377,0.3471743974073324,0.3511429358303498,0.3501722158438576,0.0,1.945005617644728,58.00170920761535,183.29568983349083,254.99735746592123,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95773,44862,424.3053887838953,6153,63.13888047779646,4800,49.606882941956506,1945,19.901224771073267,77.37657405990127,79.72047185303705,63.3458979718325,65.07862619631372,77.13435495391843,79.48058190741749,63.25551494598477,64.99191447324426,0.2422191059828407,239.88994561956645,0.0903830258477285,86.71172306945607,167.86154,117.59119372947816,175269.98214528104,122780.92335990122,361.49741,234.17915570618496,376932.0580957055,244005.29590868007,372.10594,179.84500400699525,385842.0953713468,185683.039255889,2770.0076,1281.984039572386,2861919.5389097137,1308832.1465540095,1153.47944,519.6381614648681,1190591.7534169338,528934.0724153626,1920.19096,812.8764530757607,1966268.53079678,816436.415711683,0.38018,100000,0,763007,7966.817370240047,0,0.0,0,0.0,30762,320.6436051914423,0,0.0,34089,353.18931222787216,1566105,0,56205,0,0,6662,0,0,58,0.6055986551533313,0,0.0,0,0.0,0,0.0,0.06153,0.1618443894997106,0.3161059645701284,0.01945,0.3328178162697185,0.6671821837302815,24.38910198706097,4.380694643161819,0.3045833333333333,0.2454166666666666,0.2133333333333333,0.2366666666666666,11.342600842419262,5.865037050585081,20.87204192459828,12214.928220039696,54.550824185599,14.117349769813298,16.40452624490322,11.344464855047812,12.68448331583466,0.5602083333333333,0.8064516129032258,0.6997264021887825,0.5869140625,0.1012323943661971,0.7124901806755696,0.928921568627451,0.8770491803278688,0.720164609053498,0.125,0.505245250921463,0.7415584415584415,0.6405109489051095,0.5454545454545454,0.0943181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020257267294641,0.0042676560330059,0.0064733456441892,0.0089601365354138,0.0111870474330811,0.0132483375933035,0.0155499587033883,0.0176420141299465,0.0200574530510432,0.0221105321882261,0.0241062643489668,0.0265037979880927,0.0287033134233224,0.0310092687950566,0.0332085048435517,0.0352975224550124,0.0372349237905897,0.0393780018464921,0.0413236027944111,0.0432500546744009,0.0573316216300842,0.0706860489437356,0.0835814324052331,0.0962704526108933,0.1092727445173936,0.1248203111787586,0.1378092996628713,0.1491482864651494,0.1605672607669553,0.1710450129742017,0.1832055313832766,0.195321713352159,0.2068511628918913,0.2171015919908091,0.2265056527338977,0.236882938399131,0.2468372098216778,0.2556775979652929,0.263393819721059,0.27131356854123,0.2779750818458406,0.2852048034985559,0.2912763743022045,0.2977711774075715,0.3038334467010009,0.3084838924354834,0.3131993848539028,0.3176128204150622,0.3217482408940397,0.3257322975878032,0.3244860365993035,0.3225172480140733,0.321012138346203,0.3214569287848821,0.3204913290510169,0.3182360681825137,0.3162099734210859,0.3153605221298437,0.3163692255144735,0.3181445430883873,0.3194220606424047,0.3214250449276221,0.3218511150664851,0.3233451497112791,0.3247666354714083,0.3273129472999349,0.3281010066541546,0.3326229354060238,0.3366284572510253,0.3404424321855514,0.3433230096556749,0.3450562274559728,0.3466147957582983,0.3502387991812599,0.349284979904664,0.3524899693179136,0.3547060615290892,0.3543747502996404,0.3572978838849701,0.3620949510173323,0.0,1.8681962883419343,56.04163716331106,187.131053580838,257.2045339731032,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95747,44969,426.0707907297357,6066,61.98627633241773,4749,48.97281376962202,1877,19.17553552591726,77.3313489084019,79.69701520354516,63.31030609897547,65.06277090660643,77.09539847113265,79.46666477362426,63.221832377307614,64.97988379119298,0.2359504372692527,230.35042992090385,0.088473721667853,82.88711541345606,166.6104,116.7336574591772,174011.0917313336,121918.86686703206,362.6716,235.6504669340144,378085.8408096337,245422.53745184108,371.50818,180.0920652442467,384846.2719458573,185604.24238592832,2736.05444,1254.149281035085,2821149.8637033016,1273419.7426917658,1151.11996,506.1516010884337,1187649.9524789287,514053.867899728,1846.92692,772.9738974456099,1888405.7777267173,770260.4436031234,0.38182,100000,0,757320,7909.5950786969825,0,0.0,0,0.0,30852,321.5766551432421,0,0.0,33942,351.26949147231767,1568324,0,56241,0,0,6452,0,0,76,0.7833143597188423,0,0.0,0,0.0,0,0.0,0.06066,0.1588706720444188,0.3094296076491922,0.01877,0.3284947933101925,0.6715052066898075,24.698440223288323,4.331069025581406,0.3143819751526637,0.2383659717835334,0.2198357548957675,0.2274162981680353,11.322735595264644,5.857766500785893,19.8630003014655,12289.860555075213,53.60996717935402,13.595945634935024,16.8115248254128,11.501244911514677,11.701251807491513,0.5719098757633186,0.7932862190812721,0.7233757535164099,0.578544061302682,0.124074074074074,0.742879746835443,0.9032258064516128,0.8914728682170543,0.7100840336134454,0.1609756097560975,0.5098995695839311,0.7249283667621776,0.6645569620253164,0.5397022332506204,0.1154285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0047050711337801,0.0070540471961431,0.0091546433651696,0.0113430588618283,0.0137487142406126,0.0157029091168643,0.0179707362896555,0.0202620462518794,0.0225433762828522,0.0246143747948802,0.0268557045256074,0.0286502284608735,0.0309285787900649,0.0329476367915277,0.0349092112338172,0.0368529506176674,0.0387061961044756,0.0407584120747185,0.0428610115823681,0.0568726316119131,0.0707647871405249,0.0845590549528945,0.0975738008350247,0.1097508251347104,0.1259004601470355,0.1383222601940099,0.1493128795142217,0.1603262321892403,0.1711489343435427,0.1840533781744492,0.195752009184845,0.2075675087108014,0.2185847393603626,0.2288083335168586,0.2397303560143248,0.2490869900266922,0.25703864641848,0.2654659357870008,0.273055415501673,0.2801361378975029,0.2870593746340321,0.2934483739451977,0.2988748664129012,0.3045869327168755,0.3098242368177613,0.314250303584171,0.3192280272940218,0.3234748784440843,0.3279779271013479,0.3270907155656755,0.3258465601188348,0.3252910291240269,0.3240254114929252,0.3224969225977724,0.3208158771902999,0.3191596904122571,0.3202143173141518,0.3200819322352138,0.3214463929284288,0.3225480661330141,0.3244326031182159,0.3254189067631738,0.3260083076510786,0.3267193542962838,0.3275682433840383,0.3288231949971574,0.3319607719871754,0.3350466467171272,0.3379417506673572,0.3420201375916898,0.3441121989944429,0.3466390510261721,0.3485480324512852,0.3514971173516831,0.3524351970242939,0.3543754674644727,0.3576470588235294,0.3634408602150538,0.375517890772128,0.0,2.342447539977284,55.16435766166926,176.99423207955607,259.6853325415841,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95495,44687,424.5772029949212,5979,61.57390439290015,4667,48.34808105136394,1829,18.79679564375098,77.22623088476638,79.71253397700293,63.24095407219974,65.07601946819156,76.99505197099052,79.48153632862633,63.15516825882192,64.99232490790358,0.2311789137758637,230.99764837660075,0.0857858133778179,83.69456028798083,166.59808,116.76293390555644,174457.15482485993,122271.04363317076,361.2838,234.25228636310712,377784.8578459605,244761.43545248127,363.10735,175.84286295416987,376674.3599141317,181458.01497072904,2682.88948,1235.810478070182,2781136.93910676,1265864.7883870169,1103.20624,484.4600367846084,1142403.089166972,494467.3823599224,1793.40994,755.8117014815873,1845230.326195089,764397.9215089276,0.3807,100000,0,757264,7929.87067385727,0,0.0,0,0.0,30823,322.2158228179485,0,0.0,33200,344.1227289386879,1564838,0,56166,0,0,6592,0,0,67,0.701607414000733,0,0.0,1,0.0104717524477721,0,0.0,0.05979,0.1570527974783294,0.3059039973239672,0.01829,0.3285302593659942,0.6714697406340058,24.495792494324668,4.270851063238656,0.315406042425541,0.233126205271052,0.2294836083136918,0.221984143989715,10.92356178146836,5.586789989923965,19.618337045095554,12226.86337655466,53.1959764280107,13.137820437223676,16.692231680755434,11.999751944198527,11.366172365833062,0.5500321405613885,0.7867647058823529,0.6922554347826086,0.5508870214752568,0.0984555984555984,0.7058346839546191,0.9115479115479116,0.8495821727019499,0.7100840336134454,0.1130434782608695,0.4940285464608214,0.7121879588839941,0.6415094339622641,0.5054021608643458,0.0942928039702233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020671834625322,0.0040877600494994,0.0064877048348122,0.0088052872394509,0.0110767225932562,0.013300718544565,0.0156226083939632,0.0177896307195553,0.0199596918575506,0.0221511854265281,0.0243163902118574,0.0261566933991363,0.0282548704641871,0.0303433480821395,0.0324840369474924,0.0345184602323318,0.0367523495363166,0.0386366471248596,0.0406409201246002,0.0424154458216295,0.0574227786093346,0.0718969333906858,0.0851043693148956,0.0978342203720293,0.1093933277678562,0.1241348609948171,0.1368990665731113,0.1485768541435521,0.1596307481419606,0.1702420360259662,0.1826945913850804,0.1951737975164036,0.2068070818070818,0.2174175161679272,0.2269848625270312,0.2374734689795419,0.2465404020628936,0.255495682366469,0.264171974522293,0.2717246603011384,0.2793815748268943,0.2859304084720121,0.2916459000830663,0.2972726070703064,0.3030243926224812,0.3076095159155295,0.3128896038608486,0.316730572597137,0.3213668326032988,0.3263949577606525,0.3251740217611678,0.3232600479986759,0.3228174183075729,0.3224761353774949,0.3226719080377617,0.3209954250974853,0.3192810301846647,0.319807654304723,0.3210048010973937,0.3202279406494158,0.3222395432263396,0.3223895383396077,0.3234553391537945,0.3249294702431597,0.325565192321553,0.3266194173745375,0.3288334472544998,0.3338782182263997,0.3353459472741952,0.3395769673399738,0.3432230425667669,0.3448659531630815,0.3455159897365292,0.345895831763021,0.3496257969139795,0.3523998136067101,0.3529590750038034,0.3477551020408163,0.3475862068965517,0.3462423312883436,0.0,1.989908375959333,54.30061195392003,180.528493735012,254.3258813890432,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95707,44811,424.5979917874346,6140,62.900310322129,4807,49.609746413532974,1927,19.7686689583834,77.36399481233721,79.74802647661566,63.33329461681414,65.0970852974755,77.12190094412745,79.50783906515247,63.243060555031214,65.01011491521454,0.2420938682097642,240.18741146319653,0.0902340617829295,86.97038226095799,168.00124,117.59763416303517,175537.0453571839,122872.55285719452,362.03286,235.24893550637708,377664.1624959512,245193.26225498357,375.10367,181.87954761269327,388036.496807966,187076.6430647338,2770.11576,1286.0866091024309,2861460.83358584,1310864.5857695162,1167.90035,516.2283069429741,1205730.6989039464,524827.4806889504,1893.37258,797.8547559892772,1944539.187311273,804252.594122585,0.37959,100000,0,763642,7978.956607144723,0,0.0,0,0.0,30800,321.1781792345388,0,0.0,34339,354.874774049965,1564378,0,56219,0,0,6795,0,0,63,0.6582590615106524,0,0.0,2,0.0104485565319151,0,0.0,0.0614,0.1617534708501277,0.313843648208469,0.01927,0.3411764705882353,0.6588235294117647,24.318047079139397,4.355690489975322,0.3097566049511129,0.2398585396297066,0.2221759933430414,0.2282088620761389,11.17205283615868,5.69443011219974,20.61928607401496,12208.250832885436,55.01166886140248,13.857645693413978,17.114502314024374,11.954401165267768,12.08511968869637,0.5681298106927397,0.7996530789245446,0.7199462726662189,0.5795880149812734,0.1075660893345487,0.7341124908692477,0.9345372460496614,0.8666666666666667,0.7410358565737052,0.1166666666666666,0.5020360674810936,0.7154929577464789,0.6593927893738141,0.5299877600979193,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694805523753,0.0045939943411725,0.0067712986274669,0.0093196739638595,0.0116200980890942,0.0137946492246877,0.0159839242727161,0.0182094856816046,0.0201691673570413,0.02230209197309,0.0243967471003866,0.0265795743981595,0.0286260916076075,0.030787936239709,0.0328290125495376,0.0349059627573229,0.0369603049639512,0.0388103688022746,0.0407991434778541,0.0428313937133391,0.0574167676176949,0.0709680120582817,0.0842880523731587,0.0962938033738589,0.1082297629212654,0.1235249333840883,0.1359591910322081,0.1477694672894213,0.1589191151349504,0.1689318098994619,0.1817076320433903,0.1936851669569168,0.2049107239946934,0.2151644049819028,0.2248424387078324,0.2348337244830182,0.2455803785538217,0.2549275346023679,0.2643418679311636,0.2718604411579537,0.2787580943570767,0.2855957168240905,0.2924338524163393,0.2983223487118034,0.3038039253789351,0.3087921967560378,0.3134085620637025,0.3178929170692022,0.321246136537044,0.325669942821006,0.3249620198706659,0.323967078415477,0.3236208181575283,0.3230460690530811,0.3225811233489972,0.3210274098040412,0.3193079846709458,0.3201967223828897,0.3204947176808833,0.3205742479026771,0.3211745770324899,0.3219713417281806,0.3233227371591099,0.3237748003668329,0.3237418704552545,0.3243377267388751,0.3246768071687452,0.3285812974941908,0.3338950916368232,0.3352752348115563,0.3379623326525981,0.3402759422741449,0.3427508355931135,0.3443248606976566,0.3513743270048172,0.3541616980682089,0.3498375367476404,0.3467460480394169,0.3534987454697519,0.3553042121684867,0.0,2.4467115443425005,60.06932505224912,177.885277919691,256.0820077945346,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95658,44861,426.1849505530118,6014,61.55261452256999,4736,48.7988458884777,1884,19.24564594701959,77.31725194233033,79.72595306494128,63.30264576078415,65.08498186407638,77.08481506420611,79.49663153388352,63.21678135048949,65.00321114091835,0.2324368781242185,229.32153105776365,0.0858644102946684,81.77072315803002,166.4982,116.61918947296972,174055.69842564134,121912.6361339038,358.80657,232.300057104463,374360.5239499048,242122.32659878244,370.80951,179.69909875355955,383056.8692634176,184340.71950364063,2709.03704,1236.2555942579943,2794029.689100755,1254891.9954727625,1134.86967,496.447352235643,1170503.1466265237,503951.27431300783,1845.5403,768.498601737006,1888329.820820005,768499.248805938,0.3811,100000,0,756810,7911.62265571097,0,0.0,0,0.0,30686,320.0255075372682,0,0.0,33756,348.32423843275,1572143,0,56407,0,0,6563,0,0,64,0.6690501578540217,0,0.0,0,0.0,0,0.0,0.06014,0.1578063500393597,0.3132690389092118,0.01884,0.331387091683762,0.668612908316238,24.60875087834658,4.496163127874887,0.3137668918918919,0.2394425675675675,0.2225506756756756,0.2242398648648648,11.41057449563412,5.747384053886961,19.99379795434245,12263.567190335543,53.50820802070686,13.584318427551416,16.601569839988628,11.879084757839196,11.443234995327629,0.5597550675675675,0.7865961199294532,0.6884253028263796,0.571157495256167,0.1261770244821092,0.7323832145684878,0.9065420560747663,0.863013698630137,0.7364341085271318,0.1509433962264151,0.4969766772243018,0.7138810198300283,0.631578947368421,0.5175879396984925,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021882946498222,0.0045429194341631,0.0066472492566244,0.0088406548181568,0.010937579488223,0.0133747580727309,0.0154244792197988,0.0176119646943445,0.0196435513903951,0.0214535991639858,0.0235151689255045,0.0257508965545588,0.0279476252238898,0.0298162772955028,0.0316450466826406,0.0338227229930368,0.0359082804660612,0.0380812927077491,0.0402222314703067,0.0419776508360088,0.0564685479068504,0.0705698787358368,0.0837926075226487,0.0970192439211725,0.1091265864182552,0.1252500238117916,0.1382585807985396,0.1500713509829396,0.1610986427273698,0.171342137163822,0.1841016803102111,0.1972722844617633,0.20922614837144,0.2193981983165314,0.229503502356932,0.239119593044519,0.2480527596134532,0.2560826087445585,0.2646491685760305,0.2729728801529426,0.2805497391284228,0.2872762140860881,0.2940278188813258,0.2994881875606803,0.3048217367001239,0.3107929814177733,0.3154785003442448,0.3199704932210719,0.3246726359919258,0.3277979861879909,0.3263327731092437,0.3253290106327444,0.324586062463104,0.3237279335410176,0.3227191679049034,0.320754716981132,0.3186745367366638,0.319631781037708,0.3190447761194029,0.3189821084895573,0.319957326545509,0.3208768226032397,0.3221283819183939,0.3228337655369758,0.3246318123749608,0.3253524804177545,0.3273867198632089,0.3294065906449282,0.3319988762466638,0.3357409318199857,0.3388127853881278,0.3419372006386376,0.3449734781510482,0.3507536919427653,0.3506640293868324,0.3482375207002602,0.3536641573206329,0.3577367673899817,0.3622641509433962,0.374812030075188,0.0,2.666924696465454,54.8019320504178,176.79194430081495,258.5796187519002,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95858,44711,422.5834046193327,5950,60.94431346366501,4732,48.79091990235557,1866,19.090738383859456,77.4717338221379,79.75718116727407,63.40399372213196,65.09029627437248,77.23794312291284,79.5264896613359,63.316279139228094,65.0063416389043,0.233790699225068,230.691505938168,0.0877145829038639,83.95463546817439,167.6961,117.42938227030533,174942.20617997454,122503.47625686464,359.93601,233.61237002527267,374921.3837134094,243139.66653473492,368.49465,178.56113738502182,380993.8659266832,183592.2092790951,2701.38252,1242.9002882146945,2785978.5516075864,1264494.714600389,1119.80354,487.435642234602,1154041.2589455235,494403.1288873639,1822.99362,766.865632733612,1866434.7263660831,769251.8977046532,0.38095,100000,0,762255,7951.918462726116,0,0.0,0,0.0,30747,320.15063948757535,0,0.0,33780,348.9849569154374,1570344,0,56323,0,0,6581,0,0,52,0.5424690688309791,0,0.0,1,0.0104320974775188,0,0.0,0.0595,0.1561884761779761,0.3136134453781513,0.01866,0.3466027178257394,0.6533972821742606,24.26349645769416,4.367745358872488,0.3218512256973795,0.2368977176669484,0.2195688926458157,0.2216821639898563,11.301063018935317,5.915901449803684,19.82218762407424,12269.386123940854,53.47260259622209,13.424142405958468,17.11579766817763,11.570914186135743,11.361748335950256,0.5707945900253593,0.7957181088314005,0.6887721602101117,0.602502406159769,0.1277407054337464,0.7336412625096228,0.9232558139534884,0.8684863523573201,0.7520325203252033,0.0954545454545454,0.5091756481211768,0.7163531114327062,0.6241071428571429,0.5561160151324086,0.1363088057901085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023382933495293,0.0045182401150834,0.006925713358616,0.0090742996345919,0.0116555564588244,0.013684414012026,0.0157688859913617,0.0179316394496067,0.0201580785491085,0.0222531293463143,0.0241809113161748,0.0264496543802432,0.0286406969099276,0.0308365058133552,0.0328416365154467,0.0348516610043474,0.0368768942724442,0.0387931927948096,0.0409112620189811,0.0429172043458352,0.0581432936048633,0.0727173890317589,0.0858538221299964,0.098476410633603,0.1108628285937137,0.1265793341157315,0.1390971463717245,0.1512740039363796,0.1620170184597973,0.1720257234726688,0.1849428577577857,0.1969890195400311,0.2081957956914523,0.2191082385309081,0.229105805346278,0.2393190736749019,0.2486745377589663,0.2583705733084817,0.2661494903737259,0.2735723923434034,0.2804503464203233,0.2873925267443624,0.2939023238239184,0.3000645840310003,0.3046410635871807,0.3097031457687195,0.3137205902565191,0.3185587828141074,0.3231154934673886,0.3262944483208046,0.3249700993106043,0.3235342510832008,0.3223306423306423,0.3214141763113952,0.3207876813740006,0.3188912111550138,0.3167386575022858,0.3173669330457093,0.3183100986059163,0.318689514338986,0.3185971062052506,0.3197341774640687,0.3201408861656454,0.3208163809777896,0.3219181353584563,0.3237441740031072,0.3250021181055664,0.3277509727626459,0.3314661134163209,0.3339851388345717,0.337798485730926,0.3383272880197655,0.339444374921787,0.3386753759684034,0.3375495563526524,0.3370973493403066,0.3351556567957479,0.3389864325618515,0.3331534933908821,0.3333333333333333,0.0,2.184940585438204,56.82741531734037,170.85726175528615,259.70353644716937,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95728,44456,419.44885508942,6039,61.77920775530671,4684,48.21995654354004,1870,19.11666388099616,77.34438518034166,79.69756687451002,63.33412346583962,65.07255932079903,77.10439962972836,79.46008982650524,63.24458592335077,64.98673407229903,0.2399855506132979,237.4770480047772,0.0895375424888484,85.82524850000084,165.8261,116.1817516015195,173225.63931138226,121365.88673015348,360.04803,233.95353955167937,375394.4404980779,243673.8944522524,366.21833,177.61245207085014,378028.3720541534,182090.8952541694,2692.4584,1248.3151226653986,2774481.948855089,1265936.271247784,1121.84906,502.5903727113992,1153709.552064182,506912.714124364,1829.84298,777.4466094544302,1872325.3175664383,778544.4367072461,0.37806,100000,0,753755,7873.892695971921,0,0.0,0,0.0,30768,320.6376399799432,0,0.0,33487,345.21770015042625,1574825,0,56514,0,0,6668,0,0,52,0.5432057496239345,0,0.0,0,0.0,0,0.0,0.06039,0.1597365497540073,0.3096539162112932,0.0187,0.3419933868682097,0.6580066131317903,24.39120786517223,4.319058753354717,0.319598633646456,0.2380444064901793,0.2192570452604611,0.2230999146029035,11.410984230718274,5.988665416091282,20.057271451077973,12240.756396790814,53.40215411812488,13.429874785554148,16.95039047210742,11.428870990813843,11.593017869649474,0.5578565328778822,0.7650224215246637,0.6927187708750835,0.5851996105160662,0.1167464114832535,0.7251370399373531,0.91725768321513,0.84,0.7322175732217573,0.1255813953488372,0.4951570296448488,0.6719653179190751,0.6390154968094804,0.5406091370558376,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385640776305,0.0046029219429602,0.0069095668584299,0.0091709576185978,0.0111840901234316,0.0134679791923284,0.0156641731721734,0.017939690800551,0.0203226696365624,0.0224598383300931,0.0246331666530043,0.0270345167349201,0.0292623743033992,0.031369398873338,0.033547215746147,0.035682914983104,0.0377186626643204,0.0398846807981084,0.0422049240810218,0.0439768762043643,0.0580466670146682,0.0718853016587305,0.0858925949234319,0.0982848008749513,0.1105100545168875,0.1258948303391103,0.138128168685433,0.1501755505904883,0.1613798996048275,0.1713893624092717,0.1831375631183988,0.1950127116352031,0.2067049433461647,0.2168546941274214,0.2261463500478447,0.237682956533292,0.2477233159233962,0.2566190529749184,0.2651039834806385,0.2723171346127422,0.2790014344546758,0.2853449082740547,0.2914373631575833,0.296550400614115,0.3014617431560529,0.3067301524645976,0.3117490070291062,0.3170113272938089,0.3217437505669522,0.326167619600956,0.3253797263815577,0.3234642636032194,0.322754676583277,0.3214528320975878,0.3204817485688796,0.318790556399282,0.3173812319507473,0.31776653082687,0.3185401809382108,0.3183653777428347,0.3193348206753032,0.3213092720336805,0.3222580915646487,0.3232099263141392,0.3244897467408853,0.3258385935625228,0.326760322571453,0.3293462180112688,0.3329821974086169,0.3367002028074919,0.3398062667697485,0.3423164832828363,0.346008562075044,0.3503511819348991,0.3521983161833489,0.352074493163602,0.3521858758789361,0.3491282051282051,0.3514412416851441,0.3599845500193124,0.0,2.695284323005315,55.41770851120644,179.46272964336384,250.41388126057245,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95670,44625,422.6507787185116,5997,61.6076094909585,4701,48.55231525033971,1846,18.92965401902373,77.28108161739658,79.67066587391344,63.29287913429015,65.05671659580767,77.04480989773467,79.43470528492921,63.204768934611295,64.97121513566499,0.2362717196619144,235.96058898422712,0.0881101996788586,85.50146014268023,167.8314,117.5375618572235,175427.40671056756,122857.28217541914,362.78374,235.58223209814355,378627.1663008258,245668.5503273164,369.80417,178.95096806094878,382832.8002508624,184096.9373708974,2690.0762,1241.6608594630618,2780356.6844360824,1266398.0970660204,1142.74431,512.6305122496317,1176962.1511445593,518345.6212897501,1804.50602,766.8205585277756,1852305.6130448417,772192.6615824467,0.37937,100000,0,762870,7973.973032298526,0,0.0,0,0.0,30907,322.4730845615136,0,0.0,33821,349.95296331138286,1559869,0,56023,0,0,6588,0,0,85,0.8675655900491271,0,0.0,1,0.0104525974704714,0,0.0,0.05997,0.1580778659356301,0.3078205769551442,0.01846,0.3370376250198444,0.6629623749801555,24.52237849731156,4.359719259787837,0.3163156775154223,0.248032333546054,0.2148479047011274,0.2208040842373963,11.202834474816328,5.921970811907785,19.851428976997173,12231.280676166894,53.47523033171335,14.054586050436988,16.760970616716367,11.06186024890002,11.597813415659967,0.5677515422250585,0.7864493996569468,0.7054472091459314,0.5722772277227722,0.1204238921001926,0.7382445141065831,0.910377358490566,0.9036458333333334,0.7248908296943232,0.1799163179916318,0.5042335766423358,0.715633423180593,0.6364460562103355,0.5275288092189501,0.1026282853566958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044708482446091,0.0066371007844768,0.0090113886885229,0.0111364237332953,0.0134515905665756,0.0154067336908864,0.0172234246743169,0.0195144390493227,0.021863069222817,0.0240949031589956,0.0263052518096411,0.0284556607945371,0.0305493735575337,0.0327684432151261,0.0348335866497099,0.0367316497130663,0.0387345871216838,0.0410260677803898,0.0430876344534311,0.058141357154051,0.071883311344265,0.0847486092159126,0.097640015571899,0.1101557224848075,0.1247593254765884,0.1376784671726554,0.1500415362003962,0.1604764043021788,0.1712586166169175,0.1841026747195858,0.196038058908949,0.2071031050218364,0.2172989311371999,0.2262920110192837,0.2367822721071836,0.2463674162829168,0.2556465512385801,0.2642991079038582,0.2718337481219822,0.2779844045094836,0.2848053804513392,0.2912368077789636,0.2972508797425027,0.3023753894080997,0.3077018005010304,0.3134994235300015,0.318436181468215,0.322753931592879,0.3274863084371776,0.3268807624292985,0.3253735049455779,0.3243392304102498,0.3239191579435729,0.3235811636992634,0.3217785286438335,0.3190105199689002,0.3193111283072921,0.3198718388047426,0.3200915773846787,0.3213030980517407,0.3218746897031079,0.3224501832582045,0.3234249224265863,0.3243066805290263,0.3246973935321952,0.3245880064087892,0.3264713311442283,0.3298922012711121,0.3304775503728383,0.3330452974349645,0.3354722384260487,0.3390171773736865,0.3419164841803216,0.3439597315436241,0.3448555851989328,0.3515068908072088,0.3521210914160526,0.3506981740064447,0.3517110266159696,0.0,2.3189753336836407,55.85449042924533,175.59165129113842,256.7678882053424,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95730,44290,420.2444374804136,5990,61.28695288833176,4666,48.19805703541209,1827,18.708868693199623,77.3612597271838,79.72618339853274,63.34108899169471,65.08887214857458,77.13016922888734,79.49762873659817,63.25359352233116,65.00499415010744,0.2310904982964672,228.55466193456664,0.087495469363553,83.87799846714472,166.73096,116.78848422458972,174167.9306382534,121997.78985123755,360.09186,233.95543423590289,375614.9273999791,243853.31883730865,368.39481,178.69342283758857,381672.2135171838,184256.76034817225,2669.1634,1230.6748927681058,2758938.431003865,1256366.364043881,1104.20582,489.45421740668274,1142072.1403948604,499952.6131931252,1793.36532,758.9214943765539,1838722.8455029773,762966.8942380126,0.37791,100000,0,757868,7916.72411992061,0,0.0,0,0.0,30672,319.8161495873812,0,0.0,33693,348.814373759532,1572682,0,56366,0,0,6748,0,0,74,0.7730074166927817,0,0.0,1,0.010446046171524,0,0.0,0.0599,0.1585033473578365,0.305008347245409,0.01827,0.337863767188999,0.662136232811001,24.471279171324948,4.411862902545265,0.3259751393056151,0.236605229318474,0.2151735962280326,0.2222460351478782,11.42268334998097,5.808568888250691,19.4355820974168,12121.05751240204,52.88941405160951,13.24168747231082,17.17602604908282,11.172589729581553,11.299110800634304,0.5662237462494643,0.7943840579710145,0.7041420118343196,0.5707171314741036,0.1166827386692381,0.7259541984732825,0.8891454965357968,0.8810126582278481,0.7196969696969697,0.128440366972477,0.5038736591179976,0.7332339791356185,0.6420959147424512,0.5175675675675676,0.1135531135531135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0045015816367913,0.0067280956343488,0.0089097946785057,0.0112986880911217,0.0135536954440846,0.0154487793934697,0.0174605605758921,0.0195384788409827,0.0214578214578214,0.0237663149908236,0.025953884866225,0.0282111672203309,0.0304207186418328,0.0323096609085092,0.0341269759219245,0.0362764591359098,0.0378776086257173,0.039846934531237,0.0416666666666666,0.0565718581631374,0.0703175699721576,0.0833962739174219,0.0962039957939011,0.1088097647356438,0.1246392439186832,0.1370274139668063,0.1485395051875498,0.1584788762484644,0.1684319989708184,0.181269044824653,0.1936412120425361,0.2047164477689832,0.2153570335388517,0.2245104399168765,0.2343877980209417,0.2444774022324564,0.2540431796981242,0.2625880112019411,0.2698185564649991,0.2766451970998739,0.2829397122924287,0.2888994026849606,0.2947473030088962,0.3006924317572729,0.3063288025093794,0.3106455280286845,0.3145500527406051,0.3190341239954967,0.3230815917247203,0.3217543387595856,0.3207104005274435,0.3194149497222417,0.3183892113546449,0.3183343728652469,0.3165122866110388,0.3147582978857983,0.3159611255879509,0.3174673531317126,0.3178201926507313,0.3192218394248052,0.3202540662471803,0.3226022803487592,0.3235445301150966,0.3230391803160401,0.3236784371082323,0.3249585548505116,0.3289673021083196,0.3329697779966928,0.3359847279669106,0.3376045074518357,0.3390385631273111,0.3437128743825424,0.3489461358313817,0.3541511541325391,0.3545507927187316,0.3577814820427337,0.3589228295819935,0.3657522859517872,0.3592695514092894,0.0,2.015557543560346,57.49872541006584,166.8769783117391,254.7895203173289,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95649,44386,420.2866731487,6003,61.57931604094136,4720,48.74070821440893,1899,19.43564491003565,77.2430810454354,79.64665444801284,63.27207635196621,65.04978057650963,77.00557284372437,79.41248171576945,63.18396887162412,64.96551319757613,0.2375082017110372,234.172732243394,0.0881074803420958,84.26737893350378,165.48356,115.9173178784701,173011.28082886388,121190.3081877177,355.50538,230.27196693416437,371052.4940145741,240122.308580502,362.84479,175.42667222253385,375730.7551568757,180594.7534403775,2698.29444,1242.9085121710243,2787833.4326548106,1266243.10988199,1112.01466,492.5869960642984,1145828.6024945374,498227.06580382393,1863.23784,782.9542130573377,1908824.347353344,785637.3884573121,0.37794,100000,0,752198,7864.149128584721,0,0.0,0,0.0,30315,316.3023136676808,0,0.0,33277,344.2586958567261,1575969,0,56556,0,0,6491,0,0,53,0.5541092954448034,0,0.0,0,0.0,0,0.0,0.06003,0.1588347356723289,0.3163418290854572,0.01899,0.3326968973747016,0.6673031026252983,24.75186964443335,4.332564973806514,0.3197033898305085,0.2345338983050847,0.2211864406779661,0.2245762711864407,11.127057791513424,5.737791404264306,20.27823850469472,12194.28134986104,53.79842172937482,13.224981732979805,17.248266357453158,11.642133870499084,11.683039768442766,0.5701271186440678,0.8066847335140018,0.7236580516898609,0.5622605363984674,0.1122641509433962,0.7403619197482297,0.9473684210526316,0.8969849246231156,0.7099236641221374,0.1645021645021645,0.5073934473760511,0.7331499312242091,0.6615661566156615,0.5127877237851662,0.097708082026538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.004381960927515,0.0066799995939209,0.0090023267864944,0.0111989258795886,0.0136055807322165,0.0159979607443283,0.0181547132821434,0.0204924738219895,0.0224875581133389,0.0244792895160546,0.0268441213017447,0.0292166723228334,0.0312046070321111,0.0331843563886337,0.0350425494514584,0.037136020385966,0.0390978536139826,0.0410438834628306,0.0429402443601184,0.0582869204484895,0.0716118693243115,0.085303628422644,0.0981021651947833,0.1097445101351351,0.1251508670887416,0.1370488807674737,0.1489828990575291,0.1607763832268695,0.1709787243182867,0.184027103428929,0.1959351796650588,0.2066719670649226,0.2165409087424572,0.2262572603132267,0.2359571753480889,0.2451918776276948,0.2537113227751789,0.2621180429246998,0.2700480488056603,0.2771789522484932,0.2835712529130022,0.2901219945516996,0.2959257126403685,0.3020208533573418,0.3072649150533386,0.3120024072518462,0.3152833749936234,0.3202606742739936,0.3241273494438051,0.3236416598114708,0.3226019754515022,0.3214290755614528,0.3211596385542168,0.3206574378995366,0.3193740593998587,0.3175314053393047,0.3183165870532037,0.3187065392388586,0.3196847572989432,0.3198418674698795,0.319851333624836,0.3216411162282085,0.321894580816134,0.3226491600695115,0.3227584035267259,0.3237780333525014,0.3278289203125494,0.3308719615602035,0.3353788152248024,0.3384912959381044,0.3409918594687232,0.3435080593984008,0.3454308294329778,0.3467035060975609,0.3493918435487718,0.3501326259946949,0.3510791366906475,0.3621741541874653,0.3583591331269349,0.0,2.3517067244495298,55.684092496309,177.34849588999808,259.51676239735264,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95822,44583,422.8360919204358,5990,61.30116257226941,4660,48.09960134415896,1866,19.19183486047045,77.44904619750217,79.7750530036924,63.38601454967061,65.10667503875847,77.21516422379878,79.54093832272758,63.29847407188924,65.02142617628033,0.2338819737033901,234.11468096482224,0.0875404777813741,85.24886247813868,168.2736,117.82802090876116,175610.61134186303,122965.52034893986,361.68655,234.22218246598752,376921.1350211852,243899.10716326884,370.91368,178.91026649440738,383317.8288910689,183952.40470975763,2668.74996,1230.929676868275,2756645.655486214,1256133.9951871969,1089.62604,479.1383707804309,1126428.6593892844,489325.1629795064,1820.07666,770.968020189503,1872662.478345265,780243.3804798562,0.37909,100000,0,764880,7982.300515539228,0,0.0,0,0.0,30867,321.5754210932771,0,0.0,33870,349.7526664022876,1568528,0,56309,0,0,6658,0,0,70,0.7305211746780489,0,0.0,0,0.0,0,0.0,0.0599,0.1580099712469334,0.3115191986644407,0.01866,0.3388073979591837,0.6611926020408163,24.27661605305259,4.223429961967856,0.3186695278969957,0.242489270386266,0.2216738197424892,0.2171673819742489,11.053923727856086,5.803759445154605,19.858937207500077,12164.46084291594,52.75621168002191,13.46562252961141,16.71054654478853,11.483425430150485,11.096617175471492,0.5590128755364807,0.7849557522123893,0.6956228956228956,0.5634075508228461,0.1017786561264822,0.7169059011164274,0.909307875894988,0.851063829787234,0.6935483870967742,0.1232227488151658,0.5008807985907222,0.7116736990154712,0.6429215509467989,0.5222929936305732,0.0961298377028714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023292790375013,0.004581715710622,0.0070114557649183,0.0092237990268282,0.0115317733915006,0.013745634488306,0.0157111833855,0.0177997325957603,0.0198773633111905,0.0217331245971083,0.0235384536557872,0.0256670771756978,0.0280224920075247,0.0301055341055341,0.032116999113018,0.0340833953219274,0.0357800823863048,0.0378888428038158,0.0398961038961038,0.0416731732200672,0.0566960839540172,0.0704271002143342,0.0836678440044857,0.095895016653183,0.1072918861959957,0.1219720989220038,0.1343199720122552,0.1467876248311655,0.1575336619507927,0.1682141900937081,0.1821359056252755,0.1950173399163794,0.2070223438212494,0.217528428312635,0.22775081794427,0.2373488382375699,0.2475357799186946,0.2567095825522791,0.2651956844143053,0.2725340767569667,0.2792547358213951,0.285525931975964,0.2915147438847393,0.2973321858864027,0.3028015413324286,0.3076554318165056,0.3130029067228883,0.3175275512662803,0.3216304824844463,0.3250302488295018,0.3237113678757867,0.3224868305531168,0.3222754137945557,0.3210756776999971,0.3196994127305809,0.3174944358059697,0.3149518292298973,0.3159389537256182,0.3162253903598099,0.3165223870006386,0.3175738608844678,0.3190912839443146,0.3193932195620012,0.3202644937216137,0.3204710838759096,0.3211170639542408,0.322531257973973,0.3252861342172743,0.3277976315605073,0.3303078137332281,0.3349523377212891,0.338692560755598,0.3396048326201862,0.3412896870500871,0.3443671243182246,0.3455188679245283,0.3482442748091603,0.3433747201302666,0.345509475418841,0.3517816527672479,0.0,2.016949713735753,54.93168516203812,175.93584529120824,251.56533995097885,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95807,44834,424.4157525024268,5989,61.24813426993852,4744,48.93170645151189,1893,19.361842036594403,77.3497797498425,79.68218040675377,63.33168066437421,65.05961396571385,77.1088619679984,79.44381754938546,63.241231941879775,64.97281935145736,0.2409177818441037,238.36285736831545,0.0904487224944361,86.79461425649038,167.1758,117.06220886222636,174492.26048201072,122185.44455230449,360.42104,233.5476636767242,375626.3634181219,243200.57141461788,371.26786,179.70888829143885,383731.888066634,184715.60608908415,2713.13272,1267.4233152686306,2801854.3947728244,1292880.7432311345,1144.61368,513.7776975555691,1182154.6024820737,523734.7455824278,1851.24232,788.0322301880327,1896713.3716743037,791688.8903067498,0.3814,100000,0,759890,7931.466385545941,0,0.0,0,0.0,30758,320.4463139436576,0,0.0,33954,350.6111244481092,1568634,0,56351,0,0,6631,0,0,62,0.6471343430020771,0,0.0,0,0.0,0,0.0,0.05989,0.1570267435762978,0.3160794790449157,0.01893,0.3381765926872106,0.6618234073127894,24.160193064588373,4.284983443858159,0.3178752107925801,0.2445193929173693,0.2158516020236087,0.2217537942664418,11.188089634566362,5.9146213514378525,20.27308213075568,12279.828364271452,54.35544213715899,13.901591254065524,17.299806984002053,11.61146191385558,11.542581985235836,0.5699831365935919,0.7793103448275862,0.7148541114058355,0.587890625,0.1140684410646387,0.7260479041916168,0.916267942583732,0.8722358722358723,0.7174721189591078,0.1611570247933884,0.5088028169014085,0.7021563342318059,0.6566757493188011,0.5417218543046357,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0047147332880448,0.0069519150749994,0.0089912525780003,0.0109958295188688,0.0130950562598645,0.0153752039151712,0.0176188969304737,0.0197675725952349,0.0219449533772095,0.0239669506207009,0.0258845514097377,0.0281942130914923,0.0303666862315035,0.0324723551741211,0.0343356065302748,0.0365194708403204,0.0383262973373855,0.0401899358914414,0.0427091467541256,0.0573598606169993,0.0711455011240654,0.0847605072843517,0.0976627361960611,0.1100547058637518,0.1260428672637489,0.1385488490505993,0.1503943461092248,0.1609981199794906,0.1717246484085862,0.1847465298732649,0.1974780820435112,0.2081026098497622,0.2183799975948135,0.2284120417235157,0.2383247999645366,0.2484039466047591,0.2575783139306001,0.2654054790167729,0.2736246621776373,0.2805243489025928,0.2871209551987463,0.2940090639088403,0.2996730186487166,0.3058786392443484,0.311243842364532,0.3164520565070634,0.3204507013594801,0.3246502840431176,0.3282790292568985,0.32690208970507,0.3250613167249979,0.3237807801878543,0.3230564167946452,0.3225408067612004,0.3206844211397819,0.3193387853429694,0.3197969543147208,0.3210767546860035,0.3214943577087469,0.322410623851146,0.3235323215734383,0.3241425548408724,0.3234327857861213,0.324203546201528,0.3243313627959061,0.3246424611185352,0.3289881866324068,0.3314828392863377,0.3327159520807062,0.3363739505332426,0.3367535833289258,0.3396321491559587,0.3393526666156554,0.3388748004132619,0.3425674879170104,0.3502290076335878,0.3536609829488465,0.3513071895424836,0.3520092735703246,0.0,2.283284694866923,58.60981269666848,182.03169243437927,248.1494057027472,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95813,44825,423.2724160604511,6287,64.61544884305887,4957,51.28740358823959,1977,20.352144281047455,77.41775944651599,79.74569747115989,63.37436231324406,65.09499004946065,77.16852316480092,79.4954447320253,63.28279204246285,65.00529708442406,0.2492362817150706,250.2527391345808,0.0915702707812116,89.69296503659052,166.2837,116.46502110681782,173550.24892238007,121554.5083723689,362.11941,233.8653191759918,377490.5075511673,243632.05925336937,371.22958,179.52739632807254,384709.580119608,185272.3753725272,2827.91948,1296.052938735485,2926374.249840836,1327576.5438885316,1179.0166,519.6164531404884,1217531.8589335475,529343.6935633554,1931.26626,807.7432804163715,1988886.936010771,819570.034496535,0.38172,100000,0,755835,7888.647678290002,0,0.0,0,0.0,30808,321.06290378132405,0,0.0,33962,351.7894231471721,1577613,0,56649,0,0,6485,0,0,69,0.7097158005698601,0,0.0,0,0.0,0,0.0,0.06287,0.1647018757204233,0.3144584062350882,0.01977,0.3333333333333333,0.6666666666666666,24.77661317553824,4.349539775016508,0.3274157756707686,0.2340125075650595,0.221303207585233,0.2172685091789388,11.163267329995694,5.730748819372424,21.08388471176172,12357.954665731888,56.14023772809092,13.924175297892438,18.307238365029416,12.092928921274876,11.8158951438942,0.5612265483155134,0.7827586206896552,0.696241528034504,0.5615314494074749,0.1188486536675951,0.734984984984985,0.9234338747099768,0.8740740740740741,0.7037037037037037,0.163716814159292,0.4973793103448276,0.6995884773662552,0.6371100164203612,0.5151148730350665,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099069451898,0.0049060849644714,0.0070014510253574,0.0092015193678779,0.0113580899699015,0.0136100818437232,0.0159820609519926,0.018116681636319,0.020380629203377,0.0225774757440537,0.0246617466174661,0.0268738836765279,0.0291009642071503,0.0313072662507463,0.0336660411210327,0.0357578136296969,0.0376391936084778,0.0398001181873788,0.0418861221055256,0.0437457706522304,0.059021148288418,0.0724978569487131,0.0860395396129898,0.0990472388835782,0.1115171941650429,0.1270232007775852,0.1389786341535756,0.1507026981055854,0.1615918062520004,0.1720654712170876,0.1856261022927689,0.1971654495959901,0.2090091850693765,0.2193883678527366,0.229428954364687,0.23962965421119,0.2502257147634175,0.2591914654688377,0.2671605273888813,0.274567432498885,0.2822337488303316,0.2889249521318825,0.2957666646985888,0.301665749228155,0.3060674811642381,0.3111310835600753,0.3159986502193393,0.3204305447891118,0.3245448432812661,0.3278986461570879,0.3274346984843599,0.3254320716063302,0.3242414006643022,0.3238877500938303,0.3232630641330166,0.3213678877033998,0.318958837389503,0.3191231205627244,0.3204715422224493,0.3212300456100342,0.3222866766467065,0.3240970499035015,0.3248631253395745,0.32728812048837,0.3289906977862173,0.3309273783776741,0.3324316628701594,0.3357726130653266,0.3377128442295564,0.3393663366336634,0.3437315265335819,0.3465236097094598,0.3490405787983642,0.3521597206407045,0.3545805479710008,0.3602144133412746,0.3654562383612663,0.3686354378818737,0.3695592663564194,0.3805652342237708,0.0,1.7003952773122382,59.12242232718774,183.84782130918495,271.6142960057746,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95737,44807,423.9322310078653,5977,61.345143465953605,4700,48.66457064666744,1819,18.717946039671183,77.3893283971574,79.74989493003346,63.35181630130408,65.09332383590187,77.16416478152827,79.52389257593784,63.27004181941679,65.01337493545823,0.2251636156291283,226.00235409562688,0.0817744818872867,79.94890044363956,167.11178,117.06389353258832,174552.97324963182,122276.54254111608,359.98565,234.09176301474864,375592.7802208133,244093.06016978668,373.10057,180.53474144926676,386798.87608761503,186326.27013826816,2686.02432,1227.9749911934368,2783565.4344715206,1260591.7369391536,1124.32075,496.4316991489152,1164626.4767017977,508778.6322413648,1790.89828,736.8614556347192,1845224.396001546,748458.4587224284,0.38017,100000,0,759599,7934.226056801446,0,0.0,0,0.0,30726,320.5134900822044,0,0.0,34043,352.70585040266565,1569356,0,56276,0,0,6665,0,0,75,0.7833961791157025,0,0.0,0,0.0,0,0.0,0.05977,0.1572191388063235,0.3043332775639953,0.01819,0.3339177558176602,0.6660822441823399,24.614926464148088,4.332410566256666,0.3219148936170213,0.2389361702127659,0.2185106382978723,0.2206382978723404,11.044754795893358,5.585858623362249,19.128371754259074,12299.63270276754,52.98065667564325,13.38477541565726,16.962549479868635,11.30739000326039,11.32594177685698,0.5621276595744681,0.7809439002671416,0.6893588896232651,0.5803310613437196,0.1215043394406943,0.747626582278481,0.9196217494089834,0.8926701570680629,0.7489711934156379,0.1527777777777778,0.4938882421420256,0.6971428571428572,0.6206896551724138,0.5280612244897959,0.1132764920828258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0044999847973486,0.0068165910958278,0.0090675548064132,0.011447277459233,0.0138529812918592,0.0161421816403065,0.0183363604824391,0.0203848079536513,0.0224498357703445,0.0246541653857977,0.0268193337232088,0.0289871453672972,0.0312097911455599,0.0334859641523833,0.0353629298941798,0.0370842003913408,0.0391988050536273,0.0410356619443087,0.0431367646905632,0.0577652009564881,0.0720855525442883,0.0849345527773116,0.0976417524418323,0.1096459328126153,0.1252498334443704,0.1384445670159955,0.1503167083621653,0.1611669568747262,0.1715719386278104,0.184417094679717,0.1973500621924179,0.2086023609208895,0.2197441784191538,0.2289627103728962,0.239362998073047,0.2487224689264276,0.2578962163377747,0.2663203148927481,0.2735267846918443,0.2807565143002474,0.2878796732385148,0.2938311880193374,0.2994254937163375,0.3042987660612237,0.3095589683008466,0.3147004400880176,0.3185317883823753,0.3237310498266673,0.3271584605857784,0.3264154745113842,0.3257356272913262,0.3239482109756783,0.3226634738831268,0.3223029045643154,0.3200903554694058,0.3191449110858873,0.3198117985329434,0.3210647163874479,0.3216388834528278,0.3226739844683393,0.3237228721099688,0.3237346930246165,0.3249492719691395,0.3264203931734716,0.3269245738304662,0.3282434081684784,0.3306433955772418,0.3327398408043569,0.3360274404668033,0.3372045547339291,0.3396226415094339,0.3430496096701083,0.3453815261044177,0.3514097744360902,0.3539718243163253,0.3526002745157847,0.3556857200565542,0.3548660084626234,0.3580101840971406,0.0,1.7037184775501502,55.86121990727386,169.41809007678194,261.31365027436453,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95665,44763,423.7599958187425,6152,63.09517587414415,4822,49.74651126326242,1934,19.80870746877123,77.35982293729873,79.73600609646272,63.33991942654043,65.09007183688949,77.12404253507752,79.50046071774521,63.25311245149857,65.00543196857473,0.2357804022212093,235.5453787175037,0.0868069750418598,84.63986831476689,166.52108,116.60861367025431,174066.8792139236,121892.66050306204,359.92185,232.8658022932734,375527.7896827471,242714.44993561693,370.63036,179.00521205115382,382694.4964197983,183506.49080054308,2769.67932,1276.124697155473,2860601.390268123,1299377.3202522767,1139.95539,503.71851418946414,1174871.6876600638,509821.41548306,1885.83198,781.4498336049547,1934593.34134741,788531.0778974107,0.38178,100000,0,756914,7912.130873360163,0,0.0,0,0.0,30732,320.5142946741232,0,0.0,33929,349.95034756703075,1574415,0,56445,0,0,6688,0,0,57,0.5958291956305859,0,0.0,1,0.0104531437829927,0,0.0,0.06152,0.1611399235161611,0.314369310793238,0.01934,0.3476851851851852,0.6523148148148148,24.645470281584256,4.295911797324106,0.3291165491497304,0.2368311903774367,0.218374118622978,0.2156781418498548,11.428104993063464,6.11870842871192,20.294141525209465,12376.057309692887,54.787536204360045,13.703598437612976,18.072391655879,11.764475734552834,11.247070376315236,0.5729987557030278,0.8012259194395797,0.7000630119722747,0.5897435897435898,0.1115384615384615,0.750386398763524,0.9357798165137616,0.8758949880668258,0.7172995780590717,0.1287128712871287,0.5079365079365079,0.7181303116147308,0.636986301369863,0.5526960784313726,0.107398568019093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023797950338234,0.0046827013713625,0.0067265256429767,0.0091507383559139,0.0115808524483487,0.0137615145808947,0.0159162004911401,0.0182426641635718,0.0199595497354389,0.0222501841394549,0.024340770791075,0.0265709156193895,0.0285423561576253,0.0304568527918781,0.0328316950149047,0.0350159163256025,0.0370611923765748,0.0391217316448344,0.0412096765809691,0.0433636249947892,0.0580227954158439,0.0724658925523783,0.0860393358661657,0.09815989647445,0.1100517828705217,0.125644091289029,0.1378428292434406,0.1495047395888806,0.1610368786745056,0.1722261575117522,0.1853987068965517,0.1983193641305524,0.2101460314696729,0.2207070154317609,0.2306523366955909,0.2409579830071007,0.2506891971829414,0.2600287821550638,0.2678160267679918,0.2757543152786044,0.2833549222797927,0.2903757762885512,0.2963265306122449,0.3017087569302247,0.3076055312954876,0.312157721796276,0.3171703794400229,0.3217126159319019,0.3268823042713827,0.3311583886955604,0.3300091392935864,0.3287247639597048,0.3278806222284789,0.3271927293710329,0.3255448480355819,0.3230828044957565,0.3209093354004841,0.3210591982138753,0.32202897063602,0.3220145119205061,0.3221530616071094,0.3231420321955464,0.3245748317151425,0.3255819158460161,0.3266435653094619,0.3286294521974588,0.3298942701227831,0.3311565992716312,0.3341038033200252,0.3376056505694218,0.3418009651279249,0.3446255459678278,0.345668041891463,0.3488158197286732,0.351708514253351,0.3556910569105691,0.3564082885648503,0.3541540327471195,0.3526557023456457,0.3581804281345566,0.0,2.43625494278929,56.42353337803312,181.82648437473784,263.643401537954,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95849,45012,424.292376550616,6123,62.73409216580246,4835,49.82837588289914,1941,19.791547120992394,77.34109898624328,79.6318449406963,63.34986309044478,65.04420861969429,77.09975149232997,79.39146230244351,63.26002840141588,64.95681162111946,0.2413474939133095,240.3826382527825,0.0898346890288976,87.39699857483174,167.44156,117.33988490576624,174693.06930693067,122421.60576090126,363.78943,235.74019469501397,378929.3159031393,245334.5623793821,375.09953,181.7755863180153,386851.0782585108,186275.5127385318,2766.13916,1280.648257656591,2853217.414892174,1303393.3141259614,1147.49014,507.8322334437645,1184164.790451648,516805.2620893476,1899.45362,798.8759050139421,1940825.7780467195,804125.1664062468,0.38212,100000,0,761098,7940.59405940594,0,0.0,0,0.0,31017,322.94546630637774,0,0.0,34324,353.75434276831265,1565429,0,56274,0,0,6573,0,0,58,0.5842523135348308,0,0.0,1,0.0104330770274076,0,0.0,0.06123,0.1602376216895216,0.3170014698677119,0.01941,0.3276370980270312,0.6723629019729688,24.53888774433932,4.318834575296905,0.3247156153050672,0.237435367114788,0.2165460186142709,0.2213029989658738,11.26557217699311,5.942089485139485,20.766145945147592,12346.400433109346,55.11259961545112,13.826093588497365,17.853719185894487,11.688556485213978,11.744230355845284,0.5669079627714582,0.7839721254355401,0.7063694267515923,0.5931232091690545,0.1037383177570093,0.717948717948718,0.92018779342723,0.8568232662192393,0.7206477732793523,0.110204081632653,0.507492795389049,0.703601108033241,0.6464826357969724,0.55375,0.1018181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.00482313483499,0.0072523303816855,0.0094218937194143,0.0116378346512715,0.0140539770414393,0.0163309799606752,0.0188217291507268,0.0211120871039568,0.0234663502357887,0.0255871838733137,0.0278042726890454,0.0299703172663126,0.0321419017634833,0.0343129173192646,0.03622739658162,0.0381759900734153,0.0402411985329161,0.0422852515520857,0.0444458316426854,0.0593853950510432,0.0731663984281922,0.0870954226458573,0.0994276713048044,0.1118984942613456,0.1274463208812564,0.1397033898305084,0.1513357216511284,0.161857914168036,0.172439290995992,0.1849847200103301,0.1963818421678669,0.2077785145167777,0.218576487561754,0.2280398714958412,0.2385141198497723,0.2485912899878376,0.2573495494076482,0.2656345765328127,0.2733874755157444,0.2808103480192521,0.2877343594661926,0.2946695852807194,0.3005908508011841,0.3060969090202177,0.3111856630117049,0.315167983571044,0.3203737651492005,0.3248941322731452,0.3284680210287163,0.327868631624323,0.3262907244022958,0.3249347902714135,0.324318846454527,0.3233643468552288,0.3209378641967736,0.3190818154436359,0.3195326641434918,0.3195669331869187,0.3202692998204668,0.3211418880723573,0.3221749841068023,0.3223563617976108,0.3226743531425226,0.3246013667425968,0.324728867414196,0.3260757462900361,0.3310872797443928,0.333767193161431,0.3354682154507121,0.3392058420812414,0.3424118304165115,0.3490858480420067,0.3541841482950644,0.3595303475049711,0.3637231503579952,0.3640135218192993,0.370273003033367,0.3681318681318681,0.3636363636363636,0.0,2.353183208936916,59.7452290075332,175.09766536787495,263.34928847131306,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95640,44798,425.1045587620243,6048,61.99289000418235,4756,49.10079464659138,1864,19.07151819322459,77.31769350596971,79.7410483120107,63.289715480586615,65.08163113507328,77.08998801469517,79.51571183406976,63.20463651043166,65.0000997932527,0.2277054912745484,225.3364779409424,0.085078970154953,81.53134182057897,167.33002,117.2138930592651,174958.1974069427,122557.39550320484,362.35319,234.7973507502257,378251.3278962777,244882.10173895463,371.85141,179.5599207000959,385470.1066499373,185114.56866350383,2749.50004,1261.7319567201043,2838794.52112087,1283341.2500385,1165.1436,520.4939154834012,1198412.9025512338,524596.6792564159,1839.05836,768.904213276042,1882208.239230448,768647.411334392,0.38012,100000,0,760591,7952.645336679214,0,0.0,0,0.0,30919,322.6160602258469,0,0.0,33988,351.9970723546633,1564928,0,56105,0,0,6687,0,0,65,0.6796319531576747,0,0.0,0,0.0,0,0.0,0.06048,0.1591076502157213,0.3082010582010582,0.01864,0.3419680935081345,0.6580319064918654,24.1346186271256,4.3471355958056686,0.325063078216989,0.2340201850294365,0.2117325483599663,0.229184188393608,11.149356275667593,5.762384810197561,19.686811988440333,12290.23003206356,53.86259303662015,13.303454792606672,17.559158607854727,11.062787543045586,11.937192093113149,0.5668629100084104,0.7897574123989218,0.7011642949547219,0.5938430983118173,0.1238532110091743,0.7317073170731707,0.9201995012468828,0.8737623762376238,0.7488789237668162,0.1687242798353909,0.5067431850789096,0.7162921348314607,0.6401050788091068,0.5497448979591837,0.1109799291617473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024009238998298,0.0046444651766519,0.0070761421319796,0.0092378987591337,0.0111713654908584,0.0134066829665851,0.0159039438516312,0.0178485681300381,0.0199564029351263,0.0222124274790381,0.0245958014679464,0.0267232869951468,0.028771199967048,0.0307709764601514,0.0328146632777467,0.0348831193021306,0.0365378234903782,0.0383600631543958,0.0402955562493495,0.0423088956095526,0.0569663907700025,0.0712631634096505,0.0854060753749842,0.0976555094474754,0.1096784413115792,0.1252078501149133,0.1383817559669295,0.1505771751990535,0.1621578254869869,0.1721245448784731,0.1847972644999838,0.197093817047006,0.2086133469845661,0.2183283686700543,0.2276624349819271,0.238505651503555,0.2480330800178811,0.2572027121393012,0.2662268350290697,0.273606638167169,0.2811019883501441,0.2881671348314606,0.2944924789766671,0.30003238924677,0.3051416477113768,0.3107584948463777,0.3153474516871933,0.3201307954603287,0.3242956150009716,0.3282131206001611,0.3271039370503112,0.3256687582562748,0.3247858431018936,0.3234988302573434,0.3226328287325616,0.3211370284716585,0.3195218492716909,0.3197449514817729,0.3196965822892695,0.3205506741133364,0.3209369987690701,0.3210514932856216,0.3218870746603515,0.3225262410403213,0.3238431615874758,0.3246198088033368,0.3263521353975037,0.328992054837202,0.3322525537774988,0.3339258205948572,0.3376806325547578,0.3427180355630821,0.3449293563579277,0.3440648435724566,0.3452704602981157,0.3473485295854494,0.3518208136522932,0.3606230031948881,0.3636859323882224,0.3651215805471124,0.0,2.3195530362068606,55.62711534462545,176.92284970086075,261.44267841861586,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95720,44723,423.7463435018805,5963,61.31424989552863,4655,48.14040952778939,1819,18.689928959465107,77.34880342590687,79.7077770354975,63.338894218876014,65.07775826476121,77.12495471154386,79.4841353386344,63.2559878530533,64.99709130559086,0.223848714363001,223.64169686309765,0.0829063658227156,80.66695917035815,167.6741,117.39918441206623,175171.43752611784,122648.54201009846,361.25526,234.25086383833636,376890.58712912665,244207.34834761417,364.49222,175.96146513990763,377954.8056832428,181586.213256994,2661.21968,1216.026264028351,2751563.435018805,1241750.004208473,1092.44378,482.21752641059993,1128338.5499373171,490834.4478082162,1782.11764,745.1194707710193,1832103.1968240703,751445.5107774986,0.38074,100000,0,762155,7962.338069368993,0,0.0,0,0.0,30753,320.748015043878,0,0.0,33335,345.5077308817384,1567894,0,56262,0,0,6815,0,0,66,0.6790639364814041,0,0.0,1,0.0104471374843292,0,0.0,0.05963,0.1566160634553763,0.3050477947341942,0.01819,0.341086506292815,0.658913493707185,24.46158940362633,4.336944770427573,0.319656283566058,0.2345864661654135,0.2257787325456498,0.2199785177228786,10.98417932450085,5.612147284772608,19.361445717744456,12258.430899619229,52.87338197384121,13.14405158104044,16.748981840900544,11.75640570124181,11.223942850658428,0.5654135338345865,0.7976190476190477,0.6935483870967742,0.5842055185537584,0.1123046875,0.718625099920064,0.9090909090909092,0.8591160220994475,0.6875,0.1488372093023255,0.5091069330199764,0.728486646884273,0.6403197158081705,0.5509433962264151,0.1025957972805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.0045006690183675,0.0065648622596519,0.0088582777151332,0.0111436473076297,0.0133964472947523,0.015727725850347,0.0178626110033683,0.0199172244647693,0.0221278337853743,0.0242605005842199,0.0264589363056017,0.0286742404770472,0.0307722401243655,0.0327512043159382,0.03480021905126,0.0367145356843336,0.0387412718010437,0.0408292698142044,0.0427611357124251,0.0573430663032467,0.0717088945402028,0.0852706672261854,0.097754960338334,0.1097774496361143,0.1256571640133284,0.1379775042444821,0.1497301152998541,0.1604632280671766,0.1705817994593899,0.1837442509236221,0.1951053263656723,0.2066779052694545,0.2170689296923699,0.2274527492354067,0.2380519797044291,0.2477188201525626,0.2571451084570618,0.2651145367448407,0.2737238819648094,0.2810514253967152,0.2871862646487801,0.2942547778237974,0.2995868016048865,0.3046866465168785,0.3099541939614835,0.3147155477252564,0.3192924941867114,0.3234066203937079,0.3271584605857784,0.3257534983853606,0.324432099444475,0.3234490721184985,0.3224310541598648,0.3203559014883693,0.3186241508048228,0.3176189647810479,0.3176536148034025,0.3190247897224165,0.3201691015144218,0.3209024973829819,0.3226925199022621,0.3245067714429025,0.3250720718707399,0.325735718407386,0.3256498411210085,0.3259449436599629,0.329358837223935,0.3300021039343572,0.3345098350253807,0.337723895902648,0.3414647165581296,0.3425814234016888,0.3460446558735517,0.3474111866969009,0.349034104459814,0.348764952617679,0.3519242642519037,0.348914858096828,0.3499613302397525,0.0,1.7770069432369258,55.4647576335228,171.37202249444016,258.4438614239487,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95629,44672,423.33392590113874,5975,61.14254044275272,4706,48.53130326574574,1837,18.74954250279727,77.26744378178137,79.68213338910476,63.28338998351626,65.06923810504829,77.03370968146021,79.45177552793963,63.19555412160943,64.98517057608453,0.2337341003211577,230.3578611651318,0.0878358619068251,84.06752896375735,165.07942,115.63893890741583,172623.93207081532,120923.72338459254,359.10235,233.1006781358045,374777.3165044077,243018.4552524677,365.13891,177.0300738354912,377285.66648192494,181648.0444548567,2706.32396,1247.614018600194,2794938.606489663,1269672.2870464327,1120.48968,497.58146577130793,1155276.9034497903,504019.461872214,1809.5653,764.4630196210735,1851013.771972937,767156.2770311558,0.3809,100000,0,750361,7846.542366855242,0,0.0,0,0.0,30576,319.0454778362212,0,0.0,33448,345.2509176086752,1577812,0,56594,0,0,6614,0,0,54,0.5542251827374541,0,0.0,1,0.0104570789195746,0,0.0,0.05975,0.1568653189813599,0.3074476987447698,0.01837,0.3353522473700988,0.6646477526299012,24.50372062067956,4.323367254436814,0.3270293242668933,0.2345941351466213,0.2099447513812154,0.2284317892052698,11.01517674704276,5.639970095401301,19.558637438129782,12252.472992019368,53.48765629624505,13.259959265206987,17.483797127707483,10.966732090345095,11.777167812985498,0.5590735231619209,0.7844202898550725,0.7024041585445094,0.5678137651821862,0.1144186046511628,0.7292474786656322,0.919431279620853,0.854066985645933,0.711864406779661,0.1267605633802817,0.494878548434299,0.7008797653958945,0.6458519179304193,0.5226063829787234,0.111368909512761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0049685662137497,0.0071982618583495,0.009409804080969,0.0115769234681939,0.0137491343137654,0.0159981238656524,0.0182954220606852,0.0205525675371684,0.0227137736815156,0.025014358385297,0.027027027027027,0.0291645663378151,0.0310355486862442,0.0330198903809828,0.0350880820444959,0.0369227263782585,0.0391928921365108,0.0411820999854369,0.042913890713459,0.0577962186850053,0.0716402903317029,0.0851667104226831,0.0978655743574083,0.1096894068959692,0.12481336764192,0.1365934486128223,0.1476819780454012,0.1579375267436885,0.1688614393125671,0.1821270628842627,0.1954908397525487,0.2071514096005224,0.2176121003841565,0.2273007553568675,0.2372573353426114,0.2467545514416154,0.2560913848404704,0.264233642949606,0.2723781794839464,0.2798781829340312,0.2863326859629829,0.2925873297809355,0.2988229930291432,0.304067611114489,0.3095593588430547,0.3149808419523678,0.3199725148877691,0.3242080715164863,0.3279552842305557,0.3265622681719473,0.3251422195898015,0.3241790792146242,0.3234476769431176,0.3226834206765126,0.3201754385964912,0.3187442495003014,0.3189672163458379,0.3196459390646093,0.3203000803786728,0.3210003940036398,0.3216736069799722,0.3221998151415847,0.3220737358135787,0.3232571593867515,0.3238625958192711,0.3255661212484651,0.3294276985101892,0.3309633592622575,0.3352894211576846,0.3368614818223654,0.3391444713478612,0.3401581834417655,0.3416287849603205,0.3479784111353091,0.3480398033808896,0.3557587970857231,0.357700205338809,0.3554609929078014,0.3583699560527367,0.0,2.6438166421914,56.153142837237446,173.43486664241158,257.0979222504098,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95834,44739,423.0022747667842,6089,62.39956591606319,4834,49.82574034267588,1883,19.30421353590584,77.40182060844235,79.71557726991908,63.36325590393732,65.0757605302514,77.16117309719507,79.47458803324162,63.27385134632946,64.98827939533584,0.2406475112472748,240.9892366774642,0.0894045576078639,87.48113491556353,166.05512,116.2865209270476,173273.7024438091,121341.61250396268,359.12894,232.8670331640042,374144.5729073189,242393.9344741993,372.04176,179.93739830232627,383452.9081536824,184233.48268593053,2749.52284,1276.5967716226205,2837525.1789552765,1300569.5386007277,1133.57926,506.7269917013058,1167965.6489346162,513863.4844640789,1844.05324,782.5753704780938,1892320.408205856,789868.6957677341,0.3817,100000,0,754796,7876.077383809504,0,0.0,0,0.0,30727,319.99081745518293,0,0.0,34073,350.9506020827681,1576825,0,56668,0,0,6545,0,0,62,0.6260826011645136,0,0.0,0,0.0,0,0.0,0.06089,0.1595231857479696,0.3092461816390212,0.01883,0.350266541235497,0.649733458764503,24.14645413992931,4.264741506405938,0.3270583367811336,0.2412081092263136,0.217832023169218,0.2139015308233347,11.287601983551134,5.896189213353158,20.20747131692289,12275.74479762241,55.20987773751824,14.171421553349331,17.865238209950657,11.779734967715951,11.393483006502288,0.5775755068266446,0.7958833619210978,0.7008222643896268,0.6011396011396012,0.1189555125725338,0.7321167883211679,0.913978494623656,0.8939759036144578,0.688715953307393,0.1287553648068669,0.5164549653579676,0.717546362339515,0.6320754716981132,0.5728643216080402,0.1161048689138576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0042769258835095,0.0063506878220995,0.0088465015184293,0.0110002948323014,0.013009487356977,0.015145492534271,0.0175546029802,0.0196148578203896,0.02184170393949,0.0240377223104915,0.0263066059038469,0.0283285536608179,0.030353263387663,0.0325092566807966,0.03483121687108,0.0369120569725074,0.0389676375740105,0.0410265997777293,0.0430850565621455,0.0576523960994941,0.071557753222451,0.0854211855437846,0.0982373579276875,0.1097513454308011,0.1250910934381039,0.1375197296638806,0.1490119375378695,0.1600337250130737,0.1698070763660514,0.182919221254168,0.1951870502042316,0.2071355626534558,0.2177547118273695,0.2277974449746036,0.2381400498200941,0.2474207256544386,0.2562940640707049,0.2645447430211323,0.2725503885728674,0.2801503324660306,0.2873373777045271,0.2944466781769589,0.3000059898173106,0.3051318793413319,0.3099204100239016,0.3149248689429104,0.3199114819148395,0.3239002666804754,0.3274847629350149,0.3270434326168589,0.3258734525447043,0.3247403821799454,0.3247270262083688,0.3245651754867217,0.3225184709283649,0.3204495874039647,0.3207222559027379,0.3212159465038126,0.3216423227645172,0.322202081737148,0.3229322715445872,0.3241617047947352,0.3251840285523087,0.3259947775674963,0.3275960539979231,0.3285017303001077,0.3315633296892082,0.3354379600237206,0.3374046404996245,0.3420502092050209,0.346296886622038,0.3455253896430367,0.3460050079672205,0.3481012658227848,0.3525120602423814,0.3535245651510528,0.358666937614306,0.3654164368450083,0.3710982658959537,0.0,2.4386514971128586,59.933401720796496,181.52849910277413,254.42581995114085,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95692,44990,426.1275759729131,6077,62.21000710613218,4777,49.2935668603436,1965,20.116624169209548,77.32145341825886,79.70885130531975,63.3143933609397,65.08016051027985,77.07655259168632,79.4669127818238,63.222440971227634,64.99244531909288,0.2449008265725325,241.93852349596057,0.0919523897120626,87.71519118697313,165.17864,115.73978642353345,172614.88943694351,120950.32648866516,357.1271,231.49934720144623,372598.2840780839,241314.84053154523,369.77502,179.5574896673965,382513.6793044351,184608.5401707348,2761.76376,1278.5135785698376,2852925.0094051748,1302899.739340632,1135.91778,507.6885833838415,1174633.9610416754,518122.2394597671,1928.59184,814.4005016144515,1976958.1365213396,817247.7612476056,0.38194,100000,0,750812,7846.131338042888,0,0.0,0,0.0,30437,317.42465409856624,0,0.0,33808,349.5067508255654,1580209,0,56684,0,0,6521,0,0,62,0.627011662416921,0,0.0,1,0.0104501943736153,0,0.0,0.06077,0.1591087605383044,0.323350337337502,0.01965,0.339735516372796,0.660264483627204,24.275560116059328,4.350244222316631,0.3131672597864768,0.2323634079966506,0.2275486707138371,0.2269206615030354,11.206398463840586,5.762186952891423,20.941600432096426,12303.65548014648,54.42073316244874,13.404982651487428,16.961904417348332,12.121883311049858,11.931962782563112,0.5534854511199497,0.7693693693693694,0.695855614973262,0.5722171113155474,0.1171586715867158,0.7211895910780669,0.9267139479905436,0.8493827160493828,0.6959706959706959,0.180327868852459,0.4877622377622377,0.6724890829694323,0.6388634280476627,0.5307125307125307,0.0988095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0045634317006388,0.0066590872178008,0.008760073576488,0.0110389874654077,0.0129370059489854,0.0151748472827029,0.017418827853788,0.0199552234228524,0.0220177288267447,0.0241646930971201,0.0266176485689933,0.0286590132905402,0.0307483049275601,0.0329586391271586,0.0349982940270267,0.0370830743733167,0.03910579737219,0.0410691071707139,0.0430450461718049,0.0577089796216797,0.0718345982727034,0.084940909758811,0.0974606147985224,0.1098085972946166,0.1254485218624638,0.1376711601740791,0.1495995057730816,0.1607652434136696,0.1719958382048504,0.1856604180133592,0.1980124062225975,0.209376189699244,0.2201594994037916,0.2299229922992299,0.2393945098386614,0.249054414406373,0.2574875207986689,0.2657366451173868,0.2733114183284272,0.2795567072324279,0.286419406528884,0.2922670708171022,0.2979269330839418,0.304054054054054,0.3093733446665928,0.314075130765573,0.3187465822237483,0.3242547688328484,0.3288987922577923,0.3279959094701149,0.3262975635898916,0.3255273935009921,0.3244956605871565,0.3240167015854619,0.3219572746498298,0.3203319239235435,0.3204505155316214,0.3212571526176445,0.3221268010498312,0.3232554216415812,0.3240912866352885,0.3246647108130763,0.325369789332138,0.327116558496393,0.3284524308466052,0.3290816326530612,0.3322067092046244,0.3359760394644115,0.3400047747891135,0.3456925251972454,0.3453314136404842,0.349246710317208,0.3549107142857143,0.3565414814114085,0.3573310972688069,0.3574303405572755,0.3584288052373158,0.3597678916827853,0.3648283841110682,0.0,2.450978823938462,58.86106511239605,174.58945502607628,257.65014817971104,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95700,44330,420.12539184952976,5937,60.73145245559039,4626,47.70114942528736,1792,18.39080459770115,77.3455376358958,79.73141730568015,63.32130932583449,65.08680859974356,77.12718581899146,79.51349342298647,63.24053602990949,65.00835716817465,0.218351816904331,217.9238826936825,0.0807732959249989,78.45143156890799,165.70972,116.04196500982196,173155.40229885056,121255.97179709713,357.3142,232.0315562034211,372708.9446185998,241797.09112165213,363.34966,176.6299749007526,374483.5109717868,180773.62813167225,2649.8828,1220.638781269046,2734004.4305120166,1240810.7126210837,1067.91739,482.0589788161951,1097935.579937304,485886.9238805964,1756.74456,732.5840509270951,1803735.6321839085,738758.2303077397,0.37794,100000,0,753226,7870.700104493208,0,0.0,0,0.0,30493,317.9414838035528,0,0.0,33299,342.8108672936259,1579694,0,56546,0,0,6566,0,0,64,0.6687565308254964,0,0.0,0,0.0,0,0.0,0.05937,0.1570884267344023,0.3018359440795014,0.01792,0.3378378378378378,0.6621621621621622,24.42579974362763,4.250719333632876,0.3354950281020319,0.2356247297881539,0.2103329009943796,0.2185473411154345,11.106220785389782,5.789075728300298,18.99974676122577,12150.506685406694,52.29860221119304,12.977386836370158,17.558829127222484,10.71438303082558,11.04800321677481,0.5570687418936446,0.7688073394495413,0.6868556701030928,0.5806783144912642,0.1068249258160237,0.7409200968523002,0.916243654822335,0.8801955990220048,0.7207207207207207,0.1728971962616822,0.4898139946855624,0.6853448275862069,0.6176727909011374,0.5392809587217043,0.0890840652446675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201856148491,0.0047568335108271,0.0072389461393979,0.009187178601191,0.0114958899650036,0.0135771032796903,0.0158675123901205,0.0179733055564065,0.0199811845549738,0.0220988817433334,0.0243782370134864,0.0263349801255122,0.0284623930217248,0.0306040434433155,0.0323116615067079,0.034292389922152,0.0362869810226236,0.0380895051477914,0.0400574031322143,0.0419883516185832,0.0574707842051946,0.0707064364207221,0.0843898241047814,0.0964470209475312,0.1084296683824149,0.1234518281912699,0.1359372678848072,0.1465908364751741,0.1579476215927311,0.1678705979585046,0.1809284628733414,0.1935242839352428,0.204901886094272,0.2152945681308462,0.2247779624269504,0.2352159173996853,0.2443898900853651,0.2540380635292,0.2623568107065895,0.2701190203707942,0.2770344500595562,0.2839931756567261,0.2900899622891324,0.2952869931542917,0.3009932449640418,0.3059648259746648,0.3107944397956762,0.3152384940424074,0.3201182133777279,0.3252720677146312,0.3246284671924459,0.3238126549678762,0.3231643970237259,0.3224593847217421,0.3212018056686154,0.3195978519558186,0.3176513321015145,0.3176001574958165,0.3187696192165961,0.3195237755247751,0.3201717381929992,0.3204909918827955,0.3216137360676728,0.3228554181850701,0.3240520329894924,0.3259996871904488,0.3270456355980425,0.3292235294117647,0.3315242130326692,0.3331748484488292,0.3349827492282549,0.3373181697963501,0.3383246663742873,0.3379023097311624,0.3403495583536929,0.3426356589147287,0.3446475195822454,0.3466856445709638,0.3480272108843537,0.3481110254433308,0.0,2.40912266993619,53.9170137208246,171.22249577219134,254.31729242402528,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95623,45078,428.5684406471247,6150,63.19609299018018,4843,50.18667057088776,1840,18.99124687575165,77.23812690061078,79.66967964949316,63.25655152000609,65.05435383505471,77.01132063246412,79.44154754783413,63.17198391920072,64.97149079303647,0.2268062681466602,228.1321016590283,0.0845676008053715,82.86304201824635,166.58334,116.69335975827136,174208.44357529047,122034.82400496886,363.9752,235.63070049181425,380171.7682984219,245952.49102393177,370.8919,178.9009729621167,384907.4072137457,184840.96226330573,2775.73928,1271.5263379916166,2878805.893979482,1305739.85128224,1140.16152,504.4169014631605,1181416.071447246,516571.19256158057,1805.90776,756.4494234176167,1864974.1589366572,769200.3855301451,0.3837,100000,0,757197,7918.565617058657,0,0.0,0,0.0,30999,323.6878156928772,0,0.0,33929,351.97598904029365,1564654,0,56241,0,0,6635,0,0,65,0.6588373090156133,0,0.0,1,0.0104577350637398,0,0.0,0.0615,0.1602814698983581,0.2991869918699187,0.0184,0.3384591488039764,0.6615408511960236,24.24584215666671,4.246422629163396,0.3254181292587239,0.2512905224034689,0.2033863307867024,0.2199050175511047,10.999606238219432,5.614095407673379,19.571384184276265,12380.762067227506,55.08946969869762,14.608076003196109,17.827497587836383,11.026093314908024,11.6278027927571,0.5616353499896758,0.7781429745275267,0.6871827411167513,0.5695431472081218,0.1211267605633802,0.7429443173150267,0.9361233480176212,0.8679706601466992,0.6752136752136753,0.1682242990654205,0.4943374858437146,0.6841415465268676,0.62382176520994,0.5366178428761651,0.1092831962397179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0045642185550698,0.0067013240191698,0.0088226624518463,0.0111443575964826,0.0135497213647523,0.0156356774950277,0.0178870592081068,0.01976147126813,0.0221134247641678,0.0239062628252482,0.0258523252707507,0.0279638949784378,0.0300303086534298,0.0320138795658504,0.0342290698757281,0.0360971159627625,0.0381131448278727,0.0399417061364701,0.0420413528344008,0.0566300075269716,0.0703769294449276,0.0839076354162289,0.0965044392252683,0.1089826176948909,0.1248265562275582,0.1382284828011133,0.1501689387237398,0.1620785945841848,0.1733479419094268,0.1870953819594303,0.1993950498162382,0.2103932614878338,0.2209755883770872,0.2315567898785514,0.2416861774725091,0.2515687393040502,0.2599934598513808,0.2680131004366812,0.2759392798089289,0.2832958158316122,0.290285888505828,0.2959719997627099,0.3019868027259943,0.3074064145057516,0.312409625152942,0.3179718875502008,0.3218492005767586,0.3266393016730749,0.3311276683032701,0.3302727518228463,0.3286968041066401,0.327149512918255,0.3261940644562949,0.3255356850365561,0.324472496084032,0.3223573492522147,0.3227947109288808,0.3229872245562891,0.3234277939886504,0.3240930162722171,0.3254326561324304,0.3276513561172223,0.3294115010532921,0.3309730250481695,0.3328373404338632,0.3342192501143118,0.3379775564241584,0.3404135602757068,0.3421761165663605,0.3449124726477024,0.3497453310696095,0.3506003646193499,0.3540495365445981,0.3555389221556886,0.3554981203007519,0.3575410577067952,0.3595371109337589,0.3624931656642974,0.3558421851289833,0.0,1.784332961971366,58.19571757233869,180.31217924177972,265.30682903883087,fqhc6_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95729,44768,423.5707048020976,5953,61.11000846138579,4679,48.39703747035904,1850,18.949325700675868,77.33641368994157,79.71220713802538,63.332022412709286,65.08959024199622,77.11021120689507,79.48787839117273,63.24811478846526,65.00922306613954,0.2262024830464923,224.3287468526489,0.083907624244027,80.3671758566793,167.53902,117.28840044468588,175013.8620480732,122521.28450593434,360.70373,234.0290833402628,376328.18686082587,244001.883797243,367.50733,178.06233872707273,381277.97219233465,183895.63550547967,3048.03307,1401.585996491597,3152187.3622413278,1432283.181158893,1122.66892,499.3529146549766,1158504.664208338,507379.0853920716,1807.08434,757.9023408806197,1852106.4045378095,760288.329081618,0.38173,100000,0,761541,7955.175547639691,0,0.0,0,0.0,30824,321.5013214386445,0,0.0,33628,348.69266366513807,1568508,0,56363,0,0,6608,0,0,70,0.7312308704781205,0,0.0,0,0.0,0,0.0,0.05953,0.1559479213056348,0.3107676801612632,0.0185,0.3392828429007879,0.6607171570992121,24.270684197397077,4.300728091989864,0.3171617867065612,0.2417183158794614,0.2222697157512289,0.2188501816627484,11.242330802213075,5.917847180922554,19.85088895471109,12275.225585168806,53.35687633551416,13.565494951202275,16.89956938913571,11.678977126873995,11.212834868302169,0.5640094037187433,0.7798408488063661,0.6907008086253369,0.5855769230769231,0.1201171875,0.7515337423312883,0.929440389294404,0.8734793187347932,0.7730769230769231,0.1711711711711711,0.4915555555555556,0.6944444444444444,0.6206896551724138,0.5230769230769231,0.1059850374064838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002128004539743,0.0044219515410906,0.0065079445657139,0.0084051548906415,0.0106812609991556,0.0131688835475526,0.0154702780978798,0.0179089238309168,0.0200280126363571,0.0219785844440349,0.0242939880067654,0.0265086959200016,0.0286392990827197,0.0306320039551746,0.0327933133835517,0.0347921361089864,0.0370481584642306,0.0390285400089219,0.0411266434547627,0.04321875,0.0578296645921223,0.0716497865572947,0.0845681925436526,0.0971227937388964,0.1098006977160864,0.1256314332213133,0.1389080270926301,0.1501998979244641,0.1611526147278548,0.1709780734170978,0.1833188064262732,0.1956164442810493,0.2076252770654961,0.2178642812674072,0.2283149672046495,0.2380541735765616,0.2482592662737714,0.257205460980954,0.2661104750677291,0.2730215004574565,0.2802223197984793,0.286615129504636,0.2938883507760637,0.2985151417255943,0.3036296826301556,0.3100894405964347,0.3151712071982004,0.3196258831901591,0.323548816931655,0.328074294910693,0.3267855940760686,0.3252062757414218,0.3249376312562544,0.3231405675933694,0.3219627628700272,0.32,0.3180852750039626,0.3188901308435795,0.3194328036535929,0.3203954660850288,0.3212231361600869,0.323001856900162,0.3237459733087897,0.3239040713887339,0.3255847461697325,0.327884640412296,0.328851764975113,0.3306922567000221,0.3348693235780365,0.3368911545660918,0.3397603635862828,0.3414333226048707,0.3467613018735213,0.3504741346079716,0.3532758130274011,0.3562567746597615,0.3566131025957972,0.3616026032133415,0.3638600328048114,0.3680424081787202,0.0,1.903680893495089,57.45275602916647,173.23081060117806,253.2580231933536,fqhc6_80Compliance_implementation_low_initial_treat_cost,0 -100000,95621,44750,424.2268957655745,6157,63.40657386975665,4849,50.25046799343241,1907,19.62957927651876,77.26635035352784,79.7043360267083,63.26822878755484,65.07215976446888,77.03420950826772,79.47122831389784,63.183218462869895,64.98866390342157,0.232140845260119,233.10771281046527,0.0850103246849443,83.49586104731088,165.56144,115.9955106637159,173143.3890045074,121307.56911527374,362.50486,234.6933590833552,378664.10098200187,244999.42385391836,375.80496,181.9013503366709,389529.4757427762,187575.6583035819,3175.77744,1451.1623209062052,3293010.959935579,1489772.291159749,1167.15489,518.1395235056622,1205532.163436902,526919.824026889,1870.33642,773.7999987341577,1927151.483460746,785362.9413338676,0.38184,100000,0,752552,7870.154045659427,0,0.0,0,0.0,30828,321.93764967946373,0,0.0,34331,355.6645506740151,1573109,0,56463,0,0,6635,0,0,79,0.82617834994405,0,0.0,0,0.0,0,0.0,0.06157,0.1612455478734548,0.3097287640084457,0.01907,0.3399503722084367,0.6600496277915633,24.403271464884668,4.3473498200290805,0.3099608166632295,0.2458238812126211,0.2221076510620746,0.2221076510620746,11.211516597065913,5.720131872206182,20.184779495422895,12281.509775837598,55.3166773053236,14.520094109997917,17.099576636292976,11.989963699616888,11.7070428594158,0.574138997731491,0.8263422818791947,0.6952761144377911,0.5793871866295265,0.1207056638811513,0.7470414201183432,0.9284210526315788,0.8647342995169082,0.6972111553784861,0.1698113207547169,0.5072919645410352,0.7587168758716876,0.6308539944903582,0.5435835351089588,0.1086705202312138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022700555352872,0.0046259193507481,0.006743375953365,0.0088864486741499,0.011074693104782,0.0131781444601852,0.0154412965382103,0.0175551536331402,0.0194810509945158,0.0217954892457141,0.0241289064504541,0.0262424834249884,0.0284017211916575,0.0305292352741032,0.0326808862263079,0.0345494805678572,0.0367429856655714,0.0388542110237528,0.0409021366943163,0.0429364036459962,0.0571097033180706,0.0713709381647473,0.0847407780858751,0.0979704466702476,0.1099294525177424,0.1255242977587594,0.1381644668324512,0.1494437985942982,0.1614173649682687,0.1713021152255417,0.1839604836013416,0.1956557083861737,0.2072311462020147,0.2175689590955896,0.2274180038793863,0.2373278023026243,0.2468555215477759,0.256319315430952,0.2650533969552374,0.2729733449557278,0.2811515656846396,0.2879490421994286,0.2941232205035886,0.3003320506826818,0.3055987747362279,0.3105056637299178,0.3150094584267692,0.3199016823524916,0.324108982082475,0.3278340174482294,0.3265998707175178,0.3254850694922251,0.3245013522650439,0.3233925733275538,0.3229200725262313,0.3206264639691361,0.318104103343465,0.3185103656733581,0.3196540584887278,0.3202961532271045,0.3219157491263011,0.3227514276649746,0.3241931417044881,0.3248941366253668,0.3262589234034343,0.3277737111785004,0.3283808108803108,0.3322605073835668,0.3360329589070037,0.3388722853157999,0.3432406519654842,0.347242206235012,0.3521269841269841,0.3541128173939486,0.3601496725912067,0.3654050229925716,0.3681880628911616,0.3743932038834951,0.3701067615658363,0.3744343891402715,0.0,1.83688722933704,59.95070506386551,179.61797102637712,261.4498629950587,fqhc6_80Compliance_implementation_low_initial_treat_cost,1 -100000,95702,44557,422.0496959311195,5981,61.116800066874255,4647,47.95093101502581,1791,18.25458193141209,77.34534288058313,79.7129704918787,63.32656324425341,65.0742144116201,77.11575113599481,79.48961395025711,63.239193195528266,64.9924579959579,0.2295917445883191,223.35654162159813,0.0873700487251412,81.75641566219838,167.618,117.45327827797368,175145.53509853504,122727.90357356548,360.56511,234.0450051264624,376115.4103362521,243913.2569083848,369.22708,178.8831024707882,382887.4736160164,184598.96680828417,3020.26087,1411.8747500066097,3114887.170592046,1434491.082098898,1112.83159,503.1136720340108,1145021.243025224,508052.6180451863,1750.39762,750.5349510506134,1786014.7959290298,746819.2134602594,0.37937,100000,0,761900,7961.160686297047,0,0.0,0,0.0,30737,320.52621679797704,0,0.0,33806,350.2539131888571,1564680,0,56177,0,0,6603,0,0,63,0.6582934525924223,0,0.0,0,0.0,0,0.0,0.05981,0.1576561140838759,0.299448252800535,0.01791,0.3401848311026131,0.6598151688973869,24.28707685262247,4.322729660898219,0.3232192812567248,0.2418764794491069,0.2229395308801377,0.2119647084140305,11.295701007480686,5.986215075865801,19.203037502991,12261.60044631625,53.01266696883148,13.595844887288614,17.020225281521515,11.552751567503783,10.843845232517555,0.5829567462879277,0.8051601423487544,0.7190412782956058,0.5801158301158301,0.1248730964467005,0.7364457831325302,0.9262672811059908,0.8514150943396226,0.7131474103585658,0.1643835616438356,0.5215426333232901,0.7289855072463768,0.6669758812615956,0.5375796178343949,0.1135770234986945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0045608416273082,0.0070309646524085,0.0091306114158033,0.0113079379283695,0.0135615308647003,0.0157793339653221,0.0180374222920898,0.0200664451827242,0.0219676729212091,0.0241021908286601,0.0263101142980375,0.0285952334420226,0.0304225990563122,0.0325290511672067,0.0346502925427443,0.036393011381878,0.0385130296709112,0.0406970698941501,0.0426336796690184,0.0576734276105529,0.0718846161897385,0.0856735087940225,0.0983637607197348,0.1107933559865769,0.1261404288647573,0.1382612758005606,0.1500564562517309,0.1612651516771062,0.1716550806728458,0.1845964848001551,0.1967468757445149,0.2086067848630293,0.2184991732641284,0.2280823502197548,0.2384516443793937,0.2481774641912183,0.2579174826119251,0.2659482660731724,0.2736095515273735,0.2806373967181244,0.2876842105263157,0.2939561089936318,0.2995086878370281,0.3051242801953495,0.3102058424750401,0.3147366971673196,0.3184719043986778,0.3222433829530879,0.3265217161576667,0.3250694275930869,0.3240730538262354,0.3222942164626829,0.320979435898178,0.3206873465744253,0.318456987846557,0.3167267666223824,0.3175784194827756,0.3183877120087187,0.3182060959977211,0.3192494398805078,0.3215235244303523,0.3208398621121905,0.321872975448473,0.3235046537915775,0.3245120999219359,0.324564884630648,0.3284495954515635,0.3322166387493021,0.3319670515902731,0.333363607465601,0.3365257421027567,0.3410187331620826,0.3445684354361193,0.3442853131142937,0.3489988221436985,0.354290053151101,0.359903381642512,0.3566337719298245,0.3571707698319656,0.0,2.234119130127555,58.11311721184624,171.57076183986652,246.14670472334015,fqhc6_80Compliance_implementation_low_initial_treat_cost,2 -100000,95671,44574,422.25961890227967,6070,62.192304878176245,4802,49.7015814614669,1911,19.661130332075547,77.2498286400838,79.64859631977897,63.26585613190741,65.03895823307138,77.00857164804859,79.4076049550872,63.17714726695163,64.95282182481567,0.2412569920352183,240.9913646917801,0.0887088649557839,86.13640825571167,167.38436,117.19460439785882,174958.30502451106,122497.52213090574,359.35617,232.59621016049468,375113.3258772251,242619.809065285,366.84467,177.34720387191996,380824.8685599607,183305.34002491145,3160.15549,1438.5260923259625,3271445.296902928,1472307.6173787485,1135.91787,501.0957049600816,1173638.5947674843,510209.0791985843,1876.39328,780.6103154213123,1931743.391414326,789246.4213079646,0.37951,100000,0,760838,7952.650228386867,0,0.0,0,0.0,30681,320.17016650813724,0,0.0,33557,348.06785755349057,1562716,0,56182,0,0,6487,0,0,62,0.6480542693188113,0,0.0,0,0.0,0,0.0,0.0607,0.1599430845037021,0.314827018121911,0.01911,0.3448655448969964,0.6551344551030036,24.471573305689063,4.306692505084529,0.3173677634319033,0.236984589754269,0.2209496043315285,0.224698042482299,11.06588869857119,5.638073540447246,20.329215231658228,12293.607457268445,54.440293111262754,13.57669867000424,17.34970562182153,11.76065748627138,11.753231333165596,0.5603915035401916,0.7803163444639719,0.7093175853018373,0.5711592836946278,0.1075069508804448,0.7209119496855346,0.931472081218274,0.8625954198473282,0.7181467181467182,0.1106194690265486,0.5025495750708215,0.7002688172043011,0.6560565870910698,0.5236907730673317,0.1066822977725674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.004381027716085,0.0066381786624171,0.0087787035155456,0.0112500127147521,0.0134540565864787,0.0158053595464371,0.0181753203655485,0.0205154428308447,0.0225724849192449,0.0247812663473275,0.0269029275808936,0.0288830580850954,0.0307040598620945,0.0328002560422882,0.0348019443582583,0.0367438293992083,0.0387973546786266,0.040761972138703,0.0428635477379599,0.0581560580097797,0.0722670771679599,0.0853808289339728,0.0980311687765045,0.1108249870716494,0.1265174366301529,0.1392449423883608,0.1510811300446519,0.1619863709789573,0.1718426056224554,0.1849146580929158,0.1975624566273421,0.2088058269364968,0.2194207126484684,0.2296681345120242,0.2391702867554745,0.249090563123314,0.2577413787268605,0.2674368313225586,0.2755859375,0.2825274061687105,0.2894279337483848,0.2957970807778253,0.3005112781954887,0.3054384125978109,0.310536730150878,0.3149673530889,0.3187513570817314,0.3231808731808732,0.3267392283043351,0.3252530166065372,0.3237916471140309,0.3222655697848641,0.3215922938548134,0.3205422657042295,0.3186297080762501,0.3168012181002078,0.3179244040563677,0.3192995082163848,0.318844995698308,0.3195434287970815,0.3205204490459756,0.3207677930150996,0.3217709526054646,0.3219954100736804,0.3237243034540332,0.3250547637336064,0.3281186318462551,0.3310569447362891,0.3344307814359381,0.3391268832819023,0.3419119589917032,0.3431458699472759,0.3428375912408759,0.3422459893048128,0.3446647780925401,0.3469543924089379,0.3522333265347746,0.3528925619834711,0.3527175978715317,0.0,1.8629089979137703,56.15962912035514,179.18393201368832,266.3256343068284,fqhc6_80Compliance_implementation_low_initial_treat_cost,3 -100000,95742,44781,423.3251864385536,6102,62.490860855215054,4819,49.7169476300892,1889,19.301873785799334,77.32698317968122,79.68587254506292,63.31555014592704,65.0608187771409,77.08881284491649,79.45157113798774,63.22629107490722,64.97579454908006,0.2381703347647317,234.3014070751792,0.0892590710198177,85.02422806083132,167.2242,117.16573992902036,174661.04739821603,122376.3229731574,362.5456,235.20666569792323,378022.5084080132,245022.09348367192,371.67038,180.37819532260716,384588.2058030958,185576.83518922317,3135.58792,1444.583679306424,3238088.571368887,1472012.3894571068,1129.09065,504.8645224221165,1165567.671450356,513586.4331419301,1843.52282,781.545435332426,1886081.552505692,783556.3375878533,0.38157,100000,0,760110,7939.138518100729,0,0.0,0,0.0,30868,321.7501201144743,0,0.0,34100,352.54120448705896,1565748,0,56187,0,0,6601,0,0,61,0.6266842138246538,0,0.0,1,0.0104447368970775,0,0.0,0.06102,0.1599182325654532,0.3095706325794821,0.01889,0.3404654068405435,0.6595345931594565,24.545132129147063,4.259148745938559,0.3243411496161029,0.2398837933181158,0.2234903506951649,0.2122847063706163,11.238203280723498,5.989011855215401,20.293966600185968,12340.716958489978,54.96139981346752,13.921252613356232,17.729838231317288,11.94340455571159,11.366904413082407,0.5777132185100643,0.8088235294117647,0.7114523352527191,0.5784586815227484,0.1114369501466275,0.7343511450381679,0.893719806763285,0.8744292237442922,0.7068273092369478,0.1578947368421052,0.5192362496437731,0.761455525606469,0.648,0.5398550724637681,0.0995085995085995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022693885821386,0.0045223175356411,0.0068509834967419,0.0091433680104031,0.0114111365369946,0.0136143780866554,0.0157543745156422,0.0181901699586587,0.0205328945351225,0.0226305015353121,0.0248129548016808,0.02710027100271,0.0289872949303071,0.0311998022982824,0.0332989478027645,0.0353290071918657,0.0373541500584952,0.039458125012966,0.0415540680996133,0.0435267275776928,0.057816382352327,0.0724799916304859,0.0862960128327444,0.0995101234152597,0.1120667847204654,0.1269930217805032,0.13960123024711,0.1510428311348174,0.1621953826421547,0.1729082810068158,0.1858279259275227,0.198501061387168,0.2095017356010402,0.2197288810599678,0.2293795138277259,0.2401285888482429,0.2494525873625882,0.2584111465290997,0.2669158411342361,0.2741360536420425,0.2803937463810075,0.2878393890411601,0.2938924511976864,0.2991622257429545,0.3052024668231745,0.3104294932695036,0.3161304876367601,0.3201421891523437,0.3238638573743922,0.32840787545062,0.3278065863021079,0.3266469332966201,0.3258556794002846,0.3243997685854787,0.3233457249070632,0.3209213876023679,0.3192018764461631,0.3197083408601974,0.3204306588054345,0.3221314982528703,0.3224755700325732,0.3210644855381697,0.3224959569865372,0.3238005728607232,0.3262124711316397,0.3278380634390651,0.3304771122751082,0.3325799667263082,0.3370219918756128,0.3410978407023649,0.3435474366529169,0.3453305850642144,0.3466449674511768,0.3463484631070161,0.3484749556944315,0.3507042253521126,0.3518602885345482,0.3534621578099839,0.3591374066906276,0.3725868725868725,0.0,2.353361569489825,57.22217297034423,187.21310133770064,255.3684084581014,fqhc6_80Compliance_implementation_low_initial_treat_cost,4 -100000,95768,45020,426.4994570211344,6207,63.528527274246095,4929,50.96692005680394,1897,19.46370395121544,77.39144353273707,79.7317260240461,63.36142006586866,65.0880151886042,77.15603771557959,79.49557333565396,63.27443700704482,65.00289813240414,0.2354058171574848,236.15268839213851,0.08698305882384,85.11705620006182,166.02102,116.30463854527764,173357.50981538717,121444.1551930474,363.0053,235.38786356851463,378535.78439562273,245278.9173508005,371.9284,179.67071585055686,385819.4386433882,185585.8315047767,3201.84561,1468.0970518240304,3310070.106925069,1500015.8135886716,1177.46073,519.4121554615003,1216664.9924818312,529738.4724886321,1858.8265,779.010838724594,1909130.71171999,787409.924624529,0.38223,100000,0,754641,7879.886809790327,0,0.0,0,0.0,30928,322.40414334642054,0,0.0,34068,353.1346587586668,1575371,0,56541,0,0,6541,0,0,71,0.7413749895580988,0,0.0,3,0.031325703784145,0,0.0,0.06207,0.162389137430343,0.3056226840663766,0.01897,0.3329738058551618,0.6670261941448382,24.16901938154411,4.362072006307506,0.3264353824305133,0.2438628525055792,0.208967336173666,0.2207344288902414,11.652835816606082,6.20484968861863,20.110005541433733,12335.555228351908,55.8652411195857,14.425434674418026,18.022755491181275,11.452820475373764,11.964230478612624,0.5715155203895314,0.7936772046589018,0.6960845245494096,0.5951456310679611,0.119485294117647,0.7218844984802432,0.9156908665105388,0.8459657701711492,0.7,0.1652173913043478,0.5167450871851647,0.7264516129032258,0.645,0.5615384615384615,0.1072261072261072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020958205086667,0.0043475176586235,0.0065948337087315,0.0086023907943246,0.0108590659983121,0.0129671850826479,0.0152027715508457,0.0173648662435978,0.0193586613409065,0.0212408938364573,0.0234016393442622,0.0258228003939592,0.0280926007747557,0.030155511871803,0.0322547392509973,0.0345842759304595,0.036502696045455,0.0387056627255756,0.0406224338118353,0.0426063857492577,0.0571270510625861,0.0719457581718494,0.0852470022974518,0.0982763516284743,0.1104984026232826,0.1264169697995093,0.139121305634206,0.1503239465089311,0.1622080543363342,0.1732237039578062,0.1848725926085412,0.1970950542379113,0.209351360751239,0.2198370040202761,0.2298949127203975,0.2401053365347378,0.2495123881279047,0.2586477987421384,0.2670028900096333,0.2736902310684054,0.2807418963425204,0.2873068922803655,0.2934944545605032,0.2998850189239687,0.3058389644421259,0.3110823949295428,0.315259237038148,0.3200752998639006,0.324625417281267,0.3291109207144269,0.3286194380965183,0.3281052573751579,0.3269133442051397,0.3261223607407941,0.3259291091221623,0.3242352582195438,0.3222783212369833,0.3227009520070664,0.323651593571234,0.3237901933554107,0.3249087335018253,0.3257008514925815,0.3269843265442964,0.3283191189308979,0.3295490153542073,0.3296927257525083,0.3317565257038641,0.3337952755905511,0.336209021444417,0.3391435848455906,0.343685679001052,0.3450561197220738,0.3487900671481059,0.353053580982955,0.3527644794893457,0.3538334901222953,0.3584423394978199,0.3573141486810551,0.358358088036727,0.3670552839413313,0.0,1.857444216180412,58.05507705204532,186.5861113056617,267.8337625817025,fqhc6_80Compliance_implementation_low_initial_treat_cost,5 -100000,95728,44900,424.5988634464316,6174,63.32525488885175,4821,49.77644994150092,1862,19.16889520307538,77.37264048070351,79.73247834941566,63.34029949113111,65.08198492584387,77.14203020070568,79.50038681265245,63.255961959623136,64.99897658608828,0.2306102799978333,232.0915367632068,0.0843375315079768,83.00833975559385,167.2352,117.18382596281248,174698.31188367042,122413.3231267889,363.42945,236.0657624301421,379088.5425371887,246041.0668040093,378.46335,183.40934098644965,390835.2206251045,188242.7571002624,3124.41556,1437.6044291760277,3228932.1932976767,1466844.684079922,1131.37825,501.21227750630527,1168274.621845228,509986.5843915112,1818.11372,758.6872630434165,1872672.2589002168,770269.5789314607,0.38238,100000,0,760160,7940.832358348655,0,0.0,0,0.0,30893,322.131455791409,0,0.0,34600,357.01153267591513,1565072,0,56184,0,0,6616,0,0,75,0.7730235667725222,0,0.0,0,0.0,0,0.0,0.06174,0.1614624195826141,0.3015873015873015,0.01862,0.3343099460292983,0.6656900539707016,24.52986645259169,4.248015473347772,0.3269031321302634,0.2466293300145198,0.2117817880107861,0.2146857498444306,11.198446682870888,5.761529701796628,19.715608121030627,12380.11073063327,54.7102858152479,14.1844137345818,17.96070455221274,11.32043644403417,11.244731084419184,0.5691765193943166,0.7788057190916736,0.6986040609137056,0.5905974534769833,0.1101449275362318,0.7387387387387387,0.9232505643340858,0.864406779661017,0.7411764705882353,0.1312217194570135,0.5044425336772714,0.693029490616622,0.6397248495270851,0.5404699738903395,0.1044226044226044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024607594936708,0.004621324982518,0.0065836858496403,0.0089880565485862,0.01120499445851,0.0131726286214548,0.015463181929381,0.018117236381452,0.0201474000551983,0.0222847783805916,0.0244117496283385,0.0267553721214361,0.0291099411837288,0.0309886714727085,0.0331063654183431,0.0351392132950247,0.0371984677502847,0.0392162963884913,0.0414371531314307,0.0436602995396504,0.0585643435134429,0.0723837026806453,0.0859841892260269,0.0985758579010983,0.1114414015558788,0.1272702285557223,0.140590531138639,0.1523638259611189,0.163119734327115,0.1737727068007806,0.1866553235480987,0.1992383590098667,0.21143577976663,0.2223461609964677,0.2324033532090915,0.241824707550514,0.2513002522377732,0.2604613462123003,0.2689328548064692,0.2767013665963496,0.282875396402861,0.2889440179741621,0.2949454506686883,0.2997828356149591,0.3055332701237449,0.3108907960935188,0.316107063271489,0.3197806811098248,0.3241427517377966,0.3277858367400765,0.3273206623353913,0.3265791463330813,0.3252990009849444,0.3250209374187772,0.3252543253879854,0.3233641998928598,0.3208847850490932,0.3214373615555008,0.3227428454550103,0.3231908041068346,0.3247140911550157,0.3246625477155562,0.3251296420207427,0.324857938718663,0.326001533448342,0.3276765789610255,0.3288172103965307,0.3308258942505774,0.3342849185350229,0.3382439599292869,0.341354401805869,0.3437137126570252,0.3472606182457904,0.3497764643479579,0.351063829787234,0.3521426041789635,0.355074672355989,0.3586540398952246,0.3598682404611584,0.3668322506687046,0.0,2.3192070426131712,58.20507350662713,177.08850413448155,261.82657790828864,fqhc6_80Compliance_implementation_low_initial_treat_cost,6 -100000,95730,44402,420.1817612033845,6028,61.56899613496292,4712,48.49054632821477,1816,18.46860963125457,77.33281654085012,79.70042712107235,63.319784280511655,65.07178997353434,77.10075759317526,79.47136867679909,63.233130145735934,64.9887872620946,0.232058947674858,229.0584442732637,0.0866541347757205,83.00271143973248,167.04556,116.94118079032413,174496.3334377938,122157.08764469244,358.49687,232.27206755882477,373739.4338242975,241885.70771571575,364.41757,176.8174938748762,376292.6773216338,181222.1610084881,3123.20863,1436.8489512058354,3218232.5603259164,1456742.788478227,1137.36191,511.5779795008536,1170447.8324454194,516790.17412778887,1787.31346,758.4373118215613,1821801.8385041263,755992.3112648965,0.37847,100000,0,759298,7931.651519899718,0,0.0,0,0.0,30497,317.81050872244856,0,0.0,33361,344.050976705317,1571018,0,56442,0,0,6537,0,0,73,0.7625613705212577,0,0.0,1,0.010446046171524,0,0.0,0.06028,0.1592728617856104,0.3012607830126078,0.01816,0.3398734177215189,0.660126582278481,24.37423724352758,4.415364889317742,0.3230050933786078,0.2349320882852292,0.213497453310696,0.2285653650254669,11.294437069210176,5.871958839591694,19.42013792982986,12185.396951664874,53.3976183253767,13.336757429116036,17.07251243367096,11.176056547955689,11.812291914634027,0.5606960950764007,0.7813911472448057,0.7174770039421814,0.5576540755467196,0.1151346332404828,0.7421630094043887,0.9093023255813952,0.8888888888888888,0.7021276595744681,0.2098214285714285,0.4933061699650756,0.7001477104874446,0.6590308370044052,0.5136186770428015,0.0902696365767878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023001550324757,0.0045439331392695,0.0067722611432632,0.008995639401917,0.0114149676474178,0.0136183996088657,0.0157048307651515,0.017753956100051,0.0197646240835983,0.021953716977268,0.0242267037124373,0.0263892882079927,0.0288825368100682,0.0308959835221421,0.0328405022543668,0.0346260387811634,0.0365886495443247,0.038428808634288,0.0407399319961318,0.0426919470778206,0.0571365933102267,0.0712589322145614,0.0845182668512226,0.0969291744199493,0.109103749222645,0.1257018387911983,0.1378787396731464,0.1491229937417514,0.1597667264803896,0.1704452833426279,0.1834401076716016,0.1956418246342941,0.2069730517432629,0.2170708771622892,0.2257301578571035,0.235513666770035,0.2458450995055417,0.2548940146116871,0.2626410553322889,0.2701254080054973,0.277105086472345,0.2843343870741131,0.291173578781525,0.2975228411788686,0.3030155701141322,0.3082037996545768,0.3125665401620762,0.3168418908942799,0.3210231690250349,0.3246952226228685,0.3239470776858613,0.3234427493528666,0.321699523366331,0.3205154162087117,0.3198363095238095,0.317990285460368,0.3157703085667241,0.3165053322395406,0.3164289127022046,0.3173635618293943,0.3186095676413912,0.3189828901094559,0.3208458835341365,0.3210898623167385,0.3216558215477705,0.3243151755025518,0.3255866940077466,0.3276891178688113,0.3305049088359046,0.3330157974120822,0.3365047571357035,0.3385056860452758,0.3410233844606487,0.3449977227873083,0.3480657820968043,0.3514214934528725,0.3502360286279884,0.348219674109837,0.348052660449808,0.3510188389081122,0.0,2.862560100973135,55.02181238096097,177.23565916016102,254.4547364510183,fqhc6_80Compliance_implementation_low_initial_treat_cost,7 -100000,95778,44826,425.2646745599198,6014,61.50681784961056,4746,48.94652216584184,1895,19.336382050157656,77.34910350822409,79.67762450796953,63.34642956891118,65.06683965992659,77.11005308548305,79.44322917122413,63.257184328342845,64.98243744534392,0.2390504227410446,234.39533674539348,0.0892452405683315,84.40221458266706,168.14578,117.82160862724584,175557.83165236274,123015.31523653225,366.0152,237.3098683028587,381536.72033243545,247157.941223724,373.81768,181.2212334867328,386978.721627096,186633.515205153,3099.32665,1423.9212622939638,3197770.28127545,1448557.624743076,1142.98045,509.87601446680776,1177316.3252521455,516339.2995916228,1853.3457,780.7381675111252,1893357.5142517071,778986.9718667776,0.38099,100000,0,764299,7979.901438743761,0,0.0,0,0.0,31197,325.0955334210361,0,0.0,34181,353.6198291883313,1561171,0,56064,0,0,6688,0,0,72,0.7412975839963248,0,0.0,0,0.0,0,0.0,0.06014,0.1578519121236777,0.3150981044230129,0.01895,0.3362916006339144,0.6637083993660856,24.439834706852352,4.238017671079369,0.3128950695322376,0.2408343868520859,0.2225031605562579,0.2237673830594184,11.129717223751827,5.908032018839327,20.21412791173835,12230.36408531402,53.965022429965785,13.767181643000749,16.900337424860652,11.640378239495542,11.65712512260884,0.5598398651495997,0.773403324584427,0.6976430976430976,0.5823863636363636,0.1148775894538606,0.734958111195735,0.9002375296912114,0.8747044917257684,0.7429718875502008,0.1409090909090909,0.4928633847946402,0.6994459833795014,0.6271186440677966,0.5328376703841388,0.1080760095011876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898250162022,0.0044800778438865,0.0066246664840571,0.0088571979969731,0.0111339325659901,0.0132945152489922,0.0154813591797631,0.0177680257182221,0.0197611092378587,0.0219969102014507,0.0240341764760119,0.0260130732368061,0.0281074970453727,0.0300341718473383,0.0319723682853902,0.034353825813915,0.0364859271523178,0.0384491751262456,0.0400469673826075,0.0419873163315248,0.0567406232389221,0.070807011672175,0.0832485819432358,0.0960663352705642,0.1079298171663417,0.1236169965444727,0.1364566219725475,0.1482820591894679,0.1599594472013233,0.1706574957948981,0.1838190976407783,0.196130595118364,0.2081004675437642,0.2179014708294603,0.2276663402396487,0.2383921846617341,0.2480746478558832,0.2572784418680491,0.2656902341622799,0.2729364625071551,0.2796423945225759,0.2861488423244767,0.2929542791539927,0.2985777447609005,0.304080641243624,0.3091413425383714,0.3144008610978998,0.3185249303071576,0.3224004768816089,0.3254569949281488,0.3241258505692919,0.3234010327022375,0.3221344151910859,0.3210493622062031,0.321326226076111,0.3194614443084455,0.3174851720047449,0.3183301894529648,0.3194913807817033,0.3207193370955068,0.3214633598081822,0.3232617040642684,0.3245672855286869,0.3246692188864262,0.3253340408084511,0.3247089601046435,0.3258928571428571,0.328977758091562,0.3331451157538114,0.3346381211056079,0.3396295449348273,0.344206374586931,0.3471347707180564,0.3495175371419819,0.3544015919643703,0.3588327128617749,0.3551343793692714,0.3569085690856908,0.3553398058252427,0.358019801980198,0.0,2.323350025687001,57.40474647578278,172.34640460170053,261.40649944529645,fqhc6_80Compliance_implementation_low_initial_treat_cost,8 -100000,95665,44701,422.6728688653112,6169,63.19970731197407,4853,50.13327758323315,1906,19.589191449328386,77.31532774038504,79.70808390666815,63.31028192710126,65.07663193614601,77.07194885624325,79.46382783770916,63.22017489349391,64.98835195410625,0.2433788841417907,244.2560689589897,0.090107033607353,88.27998203976506,166.83788,116.86337465197292,174398.03480896878,122158.96582028216,360.00502,233.52062842526175,375735.1800554016,243519.51490456585,372.31769,180.47340815396493,385262.96973814873,185708.26854059752,3177.1985,1466.8933382728123,3284654.095019077,1496878.4429784014,1168.53688,523.645815635981,1206529.3576543145,532435.6966881246,1874.12208,792.4312054266339,1927188.9405738772,801751.1149217105,0.38163,100000,0,758354,7927.183400407672,0,0.0,0,0.0,30750,320.81743584383,0,0.0,34137,352.8563215387028,1568140,0,56289,0,0,6661,0,0,65,0.6794543458945277,0,0.0,2,0.0209062875659854,0,0.0,0.06169,0.1616487173440243,0.3089641757172962,0.01906,0.331839258114374,0.668160741885626,24.343943884636406,4.2892041942195895,0.3156810220482176,0.2398516381619616,0.2169791881310529,0.2274881516587677,10.916627755891328,5.658434294495857,20.246727591514297,12303.109360298356,55.20474199528427,13.93036977075482,17.39277133809295,11.723880276146158,12.157720610290353,0.5627446940037091,0.7981099656357389,0.6899477806788512,0.5745489078822412,0.1268115942028985,0.7186796699174793,0.9404761904761904,0.8694581280788177,0.6707317073170732,0.1724137931034483,0.5036931818181818,0.717741935483871,0.6252220248667851,0.5452292441140025,0.1126927639383155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211358064712,0.0046837932642592,0.007174896994053,0.0095198423180866,0.01165771484375,0.013842627960275,0.0161867751904776,0.0183547148226834,0.0206270964574981,0.0227745179359569,0.0248910312291677,0.0271391884951207,0.0291445913276066,0.0314071387354711,0.0334640792733278,0.0358262056697245,0.0376529586687803,0.0396574987026466,0.0415864859523388,0.0437320215116521,0.0580792778485905,0.07202387184588,0.0852722941133255,0.0977313860010943,0.1103829634554299,0.1261299405127336,0.1382598078250252,0.1500298227675528,0.1614885590005023,0.1723349681795254,0.1854294643819377,0.1985145245287513,0.2101298616478169,0.2201138104618078,0.2297516109489453,0.2396636455409737,0.2487543291252374,0.2578488208476389,0.2664849826832453,0.2739361702127659,0.2807417875179539,0.2876025897697072,0.2942527918901955,0.2996411555032824,0.3043837580972521,0.3097780517879162,0.3144778530549885,0.3178110085905186,0.3224319635412621,0.3270401225195727,0.3254670599803343,0.3236124306387432,0.3227196552549677,0.3221794834716719,0.3209159261790841,0.3203436026214246,0.3184285058780715,0.319316580938964,0.3199733938225914,0.3209225230363413,0.3212684057104417,0.3227811877084608,0.3242580996460659,0.3246312025033527,0.3260440723633564,0.3251479367065509,0.326672384219554,0.3301788257635701,0.3313178459036102,0.3333066709326507,0.3363761467889908,0.3383390337751176,0.3394740185491043,0.3421560305579134,0.3444953253195955,0.3485686793360597,0.3477793145842938,0.3468731148200281,0.3445889842236369,0.3557508597630875,0.0,2.3159029063352468,58.25815475842404,181.29954722916452,262.7399192089243,fqhc6_80Compliance_implementation_low_initial_treat_cost,9 -100000,95620,45027,426.7621836435892,6052,61.97448232587325,4795,49.49801296799833,1908,19.47291361639824,77.3146043072854,79.73351971113438,63.296484254502126,65.08292984880273,77.07001919892473,79.49162646393991,63.2054930849363,64.99535320630584,0.2445851083606811,241.8932471944686,0.0909911695658252,87.57664249689867,167.49546,117.28092441534942,175167.81008157288,122653.13157848715,362.71201,234.5603908779609,378679.8891445304,244665.9776148668,368.26713,178.05394239504062,381453.7962769295,183291.0854638217,3138.1033,1430.926574017018,3242204.0472704456,1457634.6048152968,1130.97783,492.9481131823433,1168255.9401798788,501030.8741725217,1867.88146,789.5663644262253,1910186.550930768,791626.6726651245,0.38325,100000,0,761343,7962.17318552604,0,0.0,0,0.0,30914,322.62079062957537,0,0.0,33677,348.46266471449485,1565399,0,56165,0,0,6608,0,0,72,0.7529805480025099,0,0.0,0,0.0,0,0.0,0.06052,0.1579125896934116,0.3152676801057502,0.01908,0.3277191877852983,0.6722808122147017,24.31310013764808,4.380403124353503,0.3236704900938477,0.2300312825860271,0.2248175182481751,0.2214807090719499,11.28298731857145,5.867674862021744,20.498931026459065,12306.873940563311,54.23446255750432,13.168016693588235,17.528052771929133,12.013082891672427,11.525310200314529,0.5632950990615224,0.7878513145965549,0.7190721649484536,0.5677179962894249,0.0979284369114877,0.7170393215111797,0.9112709832134293,0.8480392156862745,0.7038461538461539,0.0990566037735849,0.5062893081761006,0.7128279883381924,0.6730769230769231,0.5244498777506112,0.0976470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0042287371591404,0.0064664798798067,0.0087689884672052,0.0113118489583333,0.0135872886534935,0.0155649167185157,0.0178363469200122,0.0200161602111055,0.0218942970374087,0.0240102564102564,0.0264406779661016,0.0286507895684378,0.0308381845345422,0.0330308942082391,0.035030760481828,0.0371245324464061,0.0391607229991382,0.0411815504989023,0.0430846570227678,0.0574038652493388,0.070363813494516,0.0838618893602721,0.0968757236994463,0.1091582747482424,0.1248544018297719,0.1376720768184908,0.1494154882298404,0.1608369167575893,0.1711498796837401,0.1841279088584652,0.1967353486305156,0.2084027936673966,0.219577125328659,0.2289606825171125,0.2391601096474191,0.2489690087955564,0.2573102710011831,0.2651303379468648,0.2732768212528246,0.2801806496439117,0.2878373001942474,0.2938021665778725,0.2996498968874394,0.3046726020575482,0.3108785940523286,0.3167896909796071,0.3209889103672805,0.3258613102787772,0.3303380571609532,0.3293930744789703,0.3282176107375166,0.3270864743761361,0.3251645569620253,0.3242692147407275,0.3220050325273106,0.3198064567303879,0.3207292370020256,0.321867279714521,0.3225165562913907,0.3231855820750122,0.3243184640555084,0.3249556413735518,0.3252431516016775,0.3261343229977254,0.3277014770665976,0.3295812186339278,0.3303047333583114,0.3347289093573372,0.3383666693019211,0.3397029523637022,0.3416221363948997,0.3443005999368487,0.3450822168087697,0.3472248353715898,0.3494019138755981,0.3502561714019562,0.3445034736411933,0.3500275178866263,0.3467961165048543,0.0,2.522669793898,56.64372239178267,173.14810912462292,266.5718455623129,fqhc6_80Compliance_implementation_low_initial_treat_cost,10 -100000,95647,44799,423.5365458404341,6001,61.51787301222202,4739,48.97173983501835,1904,19.530147312513723,77.29129418892526,79.69059948935661,63.29829466637945,65.0697280508618,77.05041879673735,79.45321554772008,63.20856534898073,64.98428003048984,0.2408753921879167,237.3839416365371,0.0897293173987208,85.44802037195609,166.37016,116.61263179572936,173941.84867272366,121919.8007211197,359.49482,233.02849526867607,375281.14838939015,243059.2023468338,367.88048,178.0052547887871,381363.8587723608,183576.54174121312,3144.78245,1444.1508798719024,3252363.722855918,1474334.5425072426,1146.58532,508.62612833545455,1184671.1240289814,517677.7090085986,1870.43728,790.5831282617646,1920276.7467876675,794474.3250967761,0.38152,100000,0,756228,7906.447666941984,0,0.0,0,0.0,30634,319.68592846613063,0,0.0,33701,349.1170658776543,1570104,0,56343,0,0,6575,0,0,60,0.6273066588601838,0,0.0,1,0.010455110981003,0,0.0,0.06001,0.157291885091214,0.3172804532577903,0.01904,0.3253184713375796,0.6746815286624204,24.536407525108743,4.423095631201303,0.3277062671449673,0.2213547161848491,0.2202996412745305,0.2306393753956531,11.188788333867867,5.772962273347594,20.417960754692857,12321.013419536268,54.03313485660421,12.668257090428051,17.503192625028255,11.707553410750004,12.154131730397914,0.5638320320742772,0.797902764537655,0.6954282034771411,0.5986590038314177,0.1189387008234217,0.7368012422360248,0.91871921182266,0.8663484486873508,0.7542372881355932,0.1541850220264317,0.4992755722978846,0.7216174183514774,0.6322751322751323,0.5532178217821783,0.1096997690531177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027146662885041,0.0048970901348474,0.0071759893628898,0.0092673508789757,0.0114560123716794,0.0135153027448184,0.0156616432489752,0.0178487552841709,0.0203459839685915,0.0226076628509409,0.0246328656985806,0.0268063472500385,0.0288153901548274,0.0312016981637573,0.0334892171740634,0.0359625170659054,0.0380549682875264,0.0398712490914754,0.0420369175701829,0.0440077151644685,0.0584393190439862,0.0724019818366556,0.0853773783023226,0.098437960506926,0.1105892534855984,0.1265281497083946,0.1386122847618845,0.1506252529771415,0.1617151837162314,0.1716711934642347,0.183906930607668,0.1967665785940139,0.2085991074344182,0.2183376947586252,0.2293804490394259,0.2400594492075287,0.249273807927783,0.2577823311529671,0.2659869197928967,0.2735107382704164,0.2809855159717961,0.2868125438801778,0.2932878513307039,0.2980869565217391,0.3041373774718459,0.310125254519652,0.3149716806175129,0.3200132521216137,0.3246498962655602,0.3293421869018231,0.3289057132464873,0.3280027548209366,0.3267261081797917,0.3249916776425294,0.3233590877287005,0.3211405220223373,0.3192813154720335,0.3205271828665568,0.3212613817583209,0.3211462981880746,0.3220061681961787,0.3220524017467249,0.322776025236593,0.3232425159771275,0.3253530954500613,0.3264938992595682,0.3273300570974065,0.3314719538210566,0.3339304531085353,0.3355848696757788,0.3399052909571077,0.3402700555996822,0.3436159475145092,0.3454141445099992,0.34935532802427,0.3506540261610464,0.3534536403235843,0.3542619542619543,0.3577235772357723,0.351673720661793,0.0,2.261992558424549,56.50493558274006,177.45503033734775,259.4887776788197,fqhc6_80Compliance_implementation_low_initial_treat_cost,11 -100000,95643,44582,422.4877931474337,6012,61.81320117520362,4757,49.27699883943414,1865,19.16501991781939,77.27514686010801,79.68539313367283,63.27600815666828,65.05619684528651,77.0421208610274,79.4540635554129,63.19005741009645,64.9731152595584,0.2330259990806098,231.3295782599312,0.0859507465718323,83.08158572810953,166.50788,116.64183256815664,174093.1171125958,121955.43068301564,358.12671,232.14273955850936,373976.495927564,242253.34792772008,370.42668,179.0491138652459,384698.2737889861,185194.3814926548,3104.90731,1426.8788051925549,3215148.207396255,1460677.409943806,1131.79419,505.9726777220985,1168121.4202816724,513799.4669768337,1825.43614,769.4405674774882,1876489.9469903703,776888.7002341023,0.37868,100000,0,756854,7913.323505117991,0,0.0,0,0.0,30386,317.2213335006221,0,0.0,33822,351.04503204625536,1569471,0,56306,0,0,6554,0,0,77,0.8050772142237278,0,0.0,0,0.0,0,0.0,0.06012,0.1587620154219921,0.3102129075182967,0.01865,0.3302562470157568,0.6697437529842432,24.467948211536665,4.311791932959062,0.3258356106789993,0.2375446710111415,0.2203069161236073,0.2163128021862518,11.108795630920437,5.685821316443283,20.025321242642992,12238.939911501897,54.18195697323506,13.636839335055614,17.58756510420962,11.661425932500515,11.296126601469313,0.5600168173218415,0.7690265486725664,0.6987096774193549,0.5648854961832062,0.1166180758017492,0.7333333333333333,0.9090909090909092,0.8669833729216152,0.7396694214876033,0.1435185185185185,0.4965537047673751,0.6934604904632152,0.6359610274579274,0.5124069478908189,0.1094710947109471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594458846403,0.0046420644010419,0.006808381106996,0.0089588623666835,0.0110558488186413,0.0130051328010428,0.0153566912754415,0.0176823105430266,0.0196599633995481,0.0218811435124508,0.0238478660006359,0.0258881058535883,0.0281493065558253,0.0303455100189659,0.0326208178438661,0.0346971499508612,0.0367544932523476,0.0389033129089209,0.0407296793864532,0.0426734521487939,0.057254541273856,0.0716815457479358,0.084877515862011,0.0978898686303635,0.1097836650188025,0.1249139455818337,0.1375224492832169,0.1490922271617573,0.1608142384708413,0.1709047137974765,0.1836091410559495,0.1959619179805252,0.2077992850292091,0.2182579711416166,0.2276839898488359,0.2381269714336487,0.2470093217399089,0.2563043699014995,0.2645786862111349,0.2728410656867248,0.27956615045531,0.286146556577219,0.2924977159739443,0.2987016106753786,0.3044890510948905,0.3093780848963475,0.3148763335046571,0.318989340702724,0.3227200186835857,0.3258949817566495,0.3246334587733851,0.3237406105712907,0.3231693557486178,0.3218804679478836,0.321550147909203,0.3197530107559832,0.3167125716275683,0.3160867637641418,0.317150944683173,0.3181672369546621,0.3189109170632987,0.3205118079140668,0.3213635126363617,0.3232849162011173,0.3241840119213575,0.3250878791823981,0.3263709057795737,0.3309341211968821,0.3337665074459118,0.3372259294566254,0.3412958412958413,0.3440208433030254,0.3472004021868912,0.3481391647085575,0.3540022547914317,0.3536003814973772,0.3549677022454629,0.3574485428979009,0.3510373443983402,0.3551114527286702,0.0,1.7382603374047445,56.46933501801959,183.8604478800368,255.25336425345,fqhc6_80Compliance_implementation_low_initial_treat_cost,12 -100000,95682,44681,423.2980079847829,6084,62.352375577433584,4731,48.82841077736669,1886,19.35578269684998,77.28391542799022,79.68216632456375,63.28504443165552,65.05990744000259,77.04449288074991,79.44228143153327,63.19583672845563,64.9726332707862,0.2394225472403093,239.884893030478,0.0892077031998894,87.27416921638564,165.1826,115.73416096369778,172637.06862314753,120957.0880246,361.93851,234.76296269803092,377650.184987772,244735.37624425796,366.05282,177.55512058112882,378068.8530758137,182193.1415538699,3139.09313,1436.7845013501817,3244017.8507974334,1464886.3227672738,1152.56991,509.636844598798,1188088.428335528,516150.7993451817,1853.8926,781.0037938018943,1904315.0017767183,788422.4593709314,0.38021,100000,0,750830,7847.139482870341,0,0.0,0,0.0,30873,322.0145899960285,0,0.0,33525,346.0211952091302,1574689,0,56479,0,0,6539,0,0,55,0.5643694738822349,0,0.0,1,0.0104512865533747,0,0.0,0.06084,0.1600168328029247,0.3099934253780407,0.01886,0.3298306148055207,0.6701693851944793,24.64145940983042,4.384395108774708,0.3090255759881631,0.2411752272246882,0.2187698161065314,0.2310293806806172,11.646440394724754,6.181613866887106,19.964418447740243,12281.948135606406,53.76802150237972,13.711778274278515,16.62457680074051,11.46170439102882,11.96996203633188,0.5580215599239061,0.7800175284837861,0.6846785225718194,0.58743961352657,0.1290027447392497,0.7321156773211568,0.9019607843137256,0.8785529715762274,0.7272727272727273,0.1687763713080168,0.4910740415569213,0.6979472140762464,0.6148837209302326,0.5472636815920398,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.004635264524505,0.006903763566403,0.0092275485005233,0.0113854888434418,0.0138130551707277,0.0160538528226834,0.0183233239367569,0.0202710304270007,0.0226597553729844,0.0245809138847282,0.026714890468949,0.028791636225188,0.0306184493935053,0.032732227463691,0.0347263156806171,0.036969879081141,0.0387585634212165,0.0408570834200124,0.0427296981824245,0.0580591246213308,0.072050001570401,0.0854042481739568,0.0985215973062555,0.1107874489440521,0.1261961216021678,0.1383352623251961,0.1502177918357349,0.1607123767985804,0.1710516428901126,0.1833901082316416,0.1959154929577465,0.2070024503130955,0.2176075003833432,0.2282712933058498,0.2385641959408447,0.2484009482488706,0.2575419372294372,0.2667788286649691,0.2743680653563273,0.2816638448871674,0.2880393996247655,0.2946655276334211,0.2998763074779935,0.3050300684147737,0.3098315126828365,0.3145789988218484,0.3191641091599068,0.3229748467609211,0.3270035234035814,0.3256089674498814,0.3252036996256331,0.3241013221441545,0.3224944770925683,0.3205555225123416,0.3189238905495516,0.316906987799081,0.317447297186449,0.3181724951287047,0.3198013079369617,0.3207823410165928,0.3216261774913238,0.3223231025257526,0.3233713373361218,0.3253639512632318,0.3270404021889974,0.3289391086001255,0.3303777097598687,0.3344574419503284,0.3367957816278793,0.3405882888625808,0.3423409102951306,0.344784431512421,0.3483618875864142,0.3462433665394283,0.3461946902654867,0.348163949413378,0.3493927125506073,0.3537775299693337,0.3594292325491708,0.0,2.3574182772964725,57.60623102900571,170.1989611617468,260.55424232219247,fqhc6_80Compliance_implementation_low_initial_treat_cost,13 -100000,95656,44641,422.2003847118842,6101,62.63067659111817,4787,49.45847620640629,1844,18.890608012043156,77.35161970545354,79.75642504851271,63.31721993396855,65.09372037091008,77.12084623795626,79.52692111825971,63.23142831180708,65.01052262572601,0.2307734674972863,229.5039302530029,0.0857916221614729,83.19774518406575,167.26006,117.06825273325,174855.79576816928,122384.6415627352,360.30235,233.40896464300064,376023.260433219,243367.3001620396,365.7864,177.28197983372272,378354.7085389312,182234.2276545764,3145.30307,1437.1213517579597,3251231.788910262,1465476.87730823,1131.2024,498.548061357808,1165551.0056870454,504184.54232477664,1809.85766,758.5257236134692,1855659.0490925815,763446.0652379177,0.37986,100000,0,760273,7947.990716734967,0,0.0,0,0.0,30712,320.45036380362967,0,0.0,33526,346.5020490089487,1569203,0,56278,0,0,6596,0,0,71,0.7213347829723175,0,0.0,0,0.0,0,0.0,0.06101,0.1606118043489706,0.3022455335190952,0.01844,0.325879593432369,0.674120406567631,24.529794367974585,4.419401627499554,0.3194067265510758,0.2389805723835387,0.2199707541257572,0.2216419469396281,11.226677680733,5.7828591818705215,19.610759759958576,12273.56863526621,53.96472037246424,13.622503988584882,17.12585172579327,11.645140865084729,11.571223793001352,0.5629830791727596,0.7814685314685315,0.6873773708306082,0.5954415954415955,0.1159283694627709,0.735686274509804,0.9369158878504672,0.8632911392405064,0.7154811715481172,0.1173708920187793,0.5002847380410023,0.6885474860335196,0.6261022927689595,0.5601965601965602,0.115566037735849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897437715929,0.0044415149825077,0.0066170052976637,0.0087681866211493,0.0111383494898737,0.0134650641678549,0.0156324886554836,0.018094372568441,0.0201942740286298,0.022380415855782,0.0244783224244413,0.0266148755574737,0.0288451643443719,0.0308147506675326,0.0328774763980416,0.03504179771561,0.0371257112651969,0.0392305456357445,0.0413658211781352,0.0436056514258902,0.0583471782493756,0.0719214298428387,0.0847336657045395,0.0975314617618586,0.1100276493805272,0.1255186282811177,0.1379822903616248,0.1498779616938277,0.1614708147894556,0.1712392753981122,0.1837111000884211,0.1959116907877632,0.207511021607794,0.2171566803126163,0.2269453560337422,0.2380662040219054,0.2471956560600643,0.2557835841898479,0.2643612914944825,0.2729511200696321,0.2802517556951627,0.2868231553352661,0.2929509166173861,0.298551974417017,0.3042306852108061,0.3099250360048745,0.3146875858795313,0.3192578293667928,0.3244503578164156,0.3286693957063694,0.3273338261979971,0.3262562313745417,0.3250685605794248,0.3239761695252658,0.323139245014245,0.3208498929990828,0.3189933013144591,0.3189529413693062,0.3197133839460889,0.3190419289828967,0.3188226703364601,0.3199353108236036,0.3208699289000418,0.3210577908479258,0.3224532771782047,0.3258485233489771,0.3278121277440581,0.3329679964927663,0.335628167045256,0.3368250454581389,0.340149625935162,0.3449490171344476,0.3473244355744044,0.3501246129446416,0.35133370639806,0.3582639714625446,0.3599386032233307,0.3605730427764326,0.3590712742980561,0.3624388407978923,0.0,2.258932433418273,55.70757642320388,174.6296460105622,266.0668998254994,fqhc6_80Compliance_implementation_low_initial_treat_cost,14 -100000,95793,44870,424.8118338500725,6099,62.572421784472766,4760,49.12676291587068,1841,18.86359128537576,77.3507064425629,79.67790839909068,63.34838135415546,65.06958801732175,77.12303447801139,79.45198277738811,63.2639390027529,64.98815400580779,0.2276719645515044,225.92562170257224,0.0844423514025578,81.4340115139629,167.54958,117.32731536965544,174907.72812209665,122479.82145841076,362.02712,234.2276160441457,377381.4266178113,243969.27337503337,368.10793,177.75874967249308,380533.5254141743,182733.7086379039,3119.13767,1420.078093525246,3221248.5463447226,1447570.327190135,1115.53379,492.5327201908218,1150235.163320911,499933.5098961944,1800.88766,753.1993533107769,1846750.889939766,758505.6790520626,0.38231,100000,0,761589,7950.351278277118,0,0.0,0,0.0,30847,321.44311170962385,0,0.0,33710,348.188280980865,1569966,0,56366,0,0,6755,0,0,57,0.5845938638522648,0,0.0,1,0.010439176140219,0,0.0,0.06099,0.1595302241636368,0.3018527627479915,0.01841,0.3201947236180904,0.6798052763819096,24.63137053764904,4.275297020226852,0.3279411764705882,0.232563025210084,0.21890756302521,0.2205882352941176,11.101568462268448,5.881866600634889,19.81089436922604,12300.572120581905,54.09712984704242,13.287745710641214,17.678665191994167,11.645043080360034,11.485675864046998,0.569327731092437,0.7886178861788617,0.6931454196028187,0.6065259117082533,0.1171428571428571,0.7455113192818111,0.928395061728395,0.8448687350835322,0.7651821862348178,0.1714285714285714,0.5044553032480598,0.707977207977208,0.637478108581436,0.5572327044025157,0.1035714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0045214922952149,0.0067277542695363,0.0089692020152771,0.0112046526761021,0.0137640363647469,0.0162447515388691,0.018389443928524,0.0202847011455491,0.0225235366352844,0.0244792146977754,0.0266274010835659,0.0287558323569916,0.0305023677166975,0.0325135344160866,0.0346188414930214,0.0365782992901637,0.0385751754595121,0.0406987008401441,0.0427970601095171,0.0576591992821294,0.0717877941929885,0.0841614255765199,0.0970691159007555,0.1096251330529998,0.1250013212552982,0.1377295669508419,0.148956094238832,0.1606656774730729,0.1710124425296595,0.1839913035991045,0.1959190731454262,0.2078964809161134,0.2184827134196297,0.2279567764842968,0.2377502488662758,0.2472646239554317,0.2558883984230212,0.2649731469101951,0.2731900387787552,0.2804457017493216,0.2877108996438788,0.2945739183900299,0.3001113385770211,0.3057183416445237,0.3114082062266868,0.3159223567937805,0.3202227902185938,0.3250786417947158,0.3292560763431222,0.3285103407471156,0.3268524756967839,0.3261007307697723,0.3248720691549336,0.3235551989062755,0.3230396887397944,0.3219450384097568,0.3222406734516039,0.3232115989604705,0.3232445953189208,0.3233432858242728,0.3236237623762376,0.3228774922789251,0.3234547374570292,0.3246875225778484,0.3256111910053602,0.3270474446288559,0.3306043747629283,0.3346612141295917,0.3376473857636269,0.3406723917412753,0.3457503746521088,0.3468831251189042,0.3488175675675675,0.350504764600434,0.3548002385211687,0.3590536570279882,0.3655626414318041,0.3626957494407158,0.3602316602316602,0.0,2.196671333655226,56.327753152433935,176.53011887162626,262.81127917019955,fqhc6_80Compliance_implementation_low_initial_treat_cost,15 -100000,95744,44138,418.30297459893046,5998,61.58088235294117,4648,48.044786096256686,1814,18.63302139037433,77.31652017658898,79.67745910534269,63.31665033110207,65.06255224823441,77.0961512106691,79.45648877139544,63.235395082012666,64.98297437053698,0.2203689659198744,220.9703339472497,0.081255249089402,79.57787769743163,166.84404,116.88482354042787,174259.65073529413,122079.79625751985,359.25439,232.94247266099163,374737.2681316845,242813.75169061177,365.3111,176.75940819231025,378134.72384692513,181973.7813675725,3014.6874,1384.7046513421506,3117792.206300134,1415666.8246361178,1101.29448,491.24744117961137,1135747.681316845,499069.4403739227,1779.34726,744.4199878949132,1829334.579712567,754226.5059433214,0.3771,100000,0,758382,7920.893215240641,0,0.0,0,0.0,30596,319.03826871657753,0,0.0,33431,345.8389037433155,1571498,0,56395,0,0,6702,0,0,74,0.7624498663101604,0,0.0,1,0.0104445187165775,0,0.0,0.05998,0.1590559533280297,0.302434144714905,0.01814,0.3231406274884535,0.6768593725115464,24.56800121915148,4.327125561555926,0.3300344234079174,0.2392426850258175,0.2117039586919105,0.2190189328743545,11.356636111304802,5.840055145323594,19.263219084771272,12156.339354504447,52.81979285892016,13.390974595278854,17.357917465642444,10.900484227230546,11.17041657076832,0.5682013769363167,0.7778776978417267,0.7033898305084746,0.5782520325203252,0.1257367387033398,0.7286512370311253,0.9103448275862068,0.8717277486910995,0.6962616822429907,0.1576576576576576,0.5089837997054492,0.6927621861152142,0.6475694444444444,0.5454545454545454,0.1168341708542713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024209641312385,0.0044707575957259,0.0065770109109363,0.0087586494203237,0.010833740234375,0.0129855580225286,0.0151652677633524,0.017401427652339,0.0196419259516773,0.0215817762989506,0.0235009433188417,0.0257315946195707,0.0278360480421191,0.0300162695388924,0.0319965342245327,0.034127189130547,0.0361893522975476,0.0380585867806315,0.04,0.0418498531035776,0.0565038995207817,0.0707162664155287,0.0840106127499816,0.0971903850602511,0.1090983857192564,0.1242028449050817,0.1367546753508502,0.1481745609366684,0.159635497345284,0.1704357714506404,0.1832459041115072,0.1953141063795249,0.2067878076099131,0.2165261788404561,0.2264722069345074,0.2360255330466776,0.2456177567380479,0.2551434774294424,0.2639527099855906,0.2720172243981767,0.2788682868148011,0.2853518228374997,0.2910695902211598,0.2967723370581747,0.301897796029451,0.3070471867985496,0.3110654762650104,0.3150650045203927,0.320112397379121,0.3234890291236501,0.3217084533972477,0.3200297573945748,0.3192288149946367,0.3188286214733429,0.3184522924042724,0.3165259237689466,0.3150370464188461,0.3154157214715455,0.3164918644241791,0.3176247472849909,0.3189034001351047,0.3200205724684984,0.3208350818296265,0.3219314544111392,0.3236404743006951,0.3246239525321397,0.3251823985408116,0.3280005019135454,0.3305683886322274,0.3339139384822454,0.3383769538349691,0.3422633285494073,0.345567867036011,0.3506404911695596,0.3494699315132751,0.3522185114503817,0.354601226993865,0.3543895055499495,0.3530057644798243,0.3534351145038168,0.0,1.944676312502724,55.09492360199642,171.83872446395702,257.8676470394912,fqhc6_80Compliance_implementation_low_initial_treat_cost,16 -100000,95685,44961,425.5525944505408,6121,62.7266551706119,4785,49.485290275382766,1854,19.031196112243297,77.40264542862671,79.78466945895065,63.35728834693722,65.11271482588121,77.17163246111225,79.55378295351814,63.27102098040959,65.02861751848336,0.2310129675144594,230.88650543250824,0.086267366527629,84.09730739785459,168.02104,117.61888997311642,175598.09792548468,122923.01820882731,363.62944,235.68853895719107,379453.8224382087,245743.8159493296,373.47902,180.9261142043124,387125.5996237655,186563.88572323584,3136.91558,1434.5229556321103,3244877.1594293774,1465801.5960131583,1159.74144,516.8333956307833,1195435.512358259,523671.4327939469,1819.0141,768.6695781468594,1868708.0524638137,775679.4722711882,0.38248,100000,0,763732,7981.731723885667,0,0.0,0,0.0,31118,324.66948842556303,0,0.0,34106,353.39917437424884,1565245,0,56183,0,0,6693,0,0,65,0.6479594502795631,0,0.0,1,0.0104509588754768,0,0.0,0.06121,0.1600345116084501,0.3028916843652998,0.01854,0.3319301527907702,0.6680698472092298,24.52662978800299,4.308422116387582,0.3201671891327063,0.2417972831765935,0.2152560083594566,0.2227795193312434,11.072267206775644,5.742508570047136,19.759225273075835,12355.155773845476,54.07859573964499,13.97934995126585,17.040366496488137,11.449827504837051,11.609051787053946,0.5657262277951933,0.7856525496974935,0.693864229765013,0.5951456310679611,0.1144465290806754,0.7414860681114551,0.9311111111111112,0.8703703703703703,0.7404255319148936,0.1572052401746725,0.5007157171485829,0.693069306930693,0.6360485268630849,0.5522012578616352,0.1027479091995221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809875343034,0.0049459292367255,0.0074355853114221,0.0095873576876593,0.0118160279029092,0.0141437386717715,0.0162406842904768,0.0183402904644778,0.0206734454039139,0.0227905358385525,0.025082515016708,0.0269998357424441,0.0291278107360607,0.0311743684280991,0.0331297331875116,0.0354086568274835,0.0376690343556503,0.0396911869999688,0.0415787010555873,0.0435738702684675,0.0579134849418671,0.0724868334258222,0.0857013935527199,0.0986945224645227,0.1106247428987311,0.1268581706607416,0.1392049072462537,0.1507111830338131,0.1622314844501442,0.1721438071131322,0.1852988691437803,0.1977250097406814,0.2093774471417384,0.2196466060181945,0.2296809680968096,0.2396890950762314,0.2489213926576662,0.2579539837325304,0.2672429419495173,0.2744882790165809,0.2815325458135587,0.2881500326766875,0.2947859462651314,0.3004581942600103,0.3059014683949509,0.3117878676018211,0.316638752093593,0.321137024388386,0.3251563065157856,0.3289378446313185,0.3281950747912023,0.326554679465204,0.3253291043309849,0.3256071752494205,0.3250710732054016,0.3228904258080276,0.3208250418522379,0.3210762625766067,0.320715537929978,0.3206681253001761,0.3213878877289958,0.323653000314169,0.324379434468696,0.3243712055507372,0.3261780982726815,0.3280068594590381,0.3287939955649059,0.3330620167172776,0.3341975265389062,0.3373980521023042,0.3419184564979978,0.3441043385680064,0.3490964045085322,0.3491858164662912,0.351687723929851,0.3549676660787771,0.3565523576240049,0.3621730382293762,0.3600217864923747,0.353539156626506,0.0,1.9921072233215795,56.66692939297808,178.46823623588224,259.2795263009298,fqhc6_80Compliance_implementation_low_initial_treat_cost,17 -100000,95732,44901,425.3123302552961,6204,63.62553796013872,4849,50.11908243847408,1825,18.729369489825764,77.33907921770925,79.70664001142592,63.32552877917672,65.07576068732462,77.10859854041783,79.47680935768136,63.24030038869804,64.99331362666004,0.2304806772914247,229.8306537445569,0.0852283904786759,82.44706066457752,166.9679,116.9686411846028,174411.7954289057,122183.4299759775,363.45307,235.77006456539323,379139.99498600257,245764.52446976263,373.88975,180.7560456267814,387315.97584924585,186304.7180294898,3176.80584,1446.1643624124254,3285131.889023524,1477333.579589296,1169.0289,515.3941327768741,1207396.9936907198,524621.3625296396,1790.06308,751.5576233871307,1838485.354949233,757774.9767536658,0.38209,100000,0,758945,7927.808883132077,0,0.0,0,0.0,31089,324.2071616596332,0,0.0,34171,353.66439644006186,1567482,0,56213,0,0,6566,0,0,57,0.5954121923703672,0,0.0,1,0.0104458279363222,0,0.0,0.06204,0.162370122222513,0.2941650548033527,0.01825,0.3378855301519103,0.6621144698480896,24.45737400823,4.29589374624618,0.3361517838729635,0.2289131779748401,0.2171581769436997,0.2177768612084966,10.888986323530355,5.514952477882622,19.58390140920488,12329.400090413432,55.09273480415156,13.441908215650235,18.505356452452887,11.61149463709108,11.53397549895737,0.5652711899360693,0.8027027027027027,0.6895705521472393,0.553656220322887,0.1354166666666666,0.743161094224924,0.9262672811059908,0.8538283062645011,0.7241379310344828,0.182648401826484,0.4990093405038211,0.7233727810650887,0.6305254378648875,0.5054811205846529,0.1230585424133811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977799384216,0.0045828770734477,0.0071252397917237,0.0092261420907169,0.011352654547674,0.0136267810039821,0.015795645745169,0.017754137357196,0.019969733532383,0.0221430180872201,0.0241421040756466,0.0259546845791992,0.0282931545170314,0.0304962858408629,0.0325773919506178,0.0346845915201654,0.0369426487651251,0.0389592868188092,0.0406605519851916,0.0427566807313642,0.0575220314914588,0.0719337895243476,0.0852415702063412,0.0979095249111443,0.1106928187282505,0.1262190349262761,0.1391031285473313,0.1505072980655601,0.1615126517353393,0.1716216941151225,0.1850283399064675,0.198141912011521,0.2100029375605192,0.2199013031917803,0.2293040615675955,0.2393309242467909,0.2483977579777137,0.2571663309061033,0.2656391864899219,0.2736553841923139,0.2806956642482729,0.2881750356666744,0.2949230296294545,0.3005195613657042,0.3062860886020671,0.3111805521381822,0.3158078820810692,0.3199827297201199,0.3249861094959362,0.329314093694406,0.3283517901300935,0.3266666666666666,0.3254352848368738,0.3238449083444168,0.3234931435617822,0.3217243543621695,0.3206391899375049,0.3212937120341487,0.3217047632083219,0.3221502914982653,0.322368914560048,0.3239798438889438,0.3244503942937227,0.3252928552266834,0.328576567933805,0.3288810352892261,0.3294301994301994,0.3327569402961612,0.3365846812392548,0.3409885568976478,0.3447410449463837,0.34768,0.3507628030638728,0.3539639984680199,0.3541196388261851,0.3589438629876308,0.3654084158415842,0.3682487725040916,0.3611731843575419,0.3703275529865125,0.0,2.1295131952561897,57.86629543570733,180.98869940912763,264.2176970203185,fqhc6_80Compliance_implementation_low_initial_treat_cost,18 -100000,95671,44525,421.3816098922348,6001,61.27248591527213,4710,48.48909282854783,1907,19.46253305599398,77.30793472821749,79.68475700628437,63.31631099018998,65.0707024340635,77.06335497299251,79.44384226844929,63.224508586107234,64.98302735443971,0.2445797552249757,240.91473783508377,0.0918024040827489,87.67507962379284,167.97902,117.61694217606367,175579.87268869355,122938.97019584168,359.444,233.2243727312689,374954.7093685652,243023.7927180325,367.592,178.58317013753776,379613.132506193,183039.87222538143,3079.85926,1433.3546322740224,3172183.4411681704,1451176.4194730096,1117.70706,510.26052655915913,1148067.679861191,513137.1978639778,1862.48488,798.9378769448526,1902577.1027793167,798297.6094029967,0.37906,100000,0,763541,7980.903304031524,0,0.0,0,0.0,30701,320.1388090434928,0,0.0,33563,346.17595718660823,1564148,0,56185,0,0,6590,0,0,72,0.7525791514670067,0,0.0,0,0.0,0,0.0,0.06001,0.15831266817918,0.3177803699383436,0.01907,0.3361613574515767,0.6638386425484233,24.35583442738836,4.339354692707502,0.3214437367303609,0.2309978768577494,0.2239915074309978,0.2235668789808917,11.06328601980138,5.862229708442297,20.711300417141093,12271.910532592998,53.83584558545723,13.07190025114084,17.12686217371836,11.897624288365892,11.739458872232126,0.554140127388535,0.7987132352941176,0.6849405548216645,0.5649289099526066,0.1025641025641025,0.7117516629711752,0.9258373205741628,0.8648648648648649,0.6691449814126395,0.1698841698841698,0.4906166219839142,0.7194029850746269,0.6187895212285456,0.5292620865139949,0.0806045340050377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022274871919486,0.00464107656763,0.0068675884316132,0.0090497277971885,0.0112684077780489,0.0138385401816626,0.0161311702745969,0.0180908626850433,0.0199963196957615,0.0222950148428703,0.0243574892103293,0.0265097845951662,0.0286522342777806,0.0307822270755854,0.0326911368631781,0.0344873928730189,0.0367100805072891,0.0388189246150811,0.0411222536617842,0.043169592594137,0.0574016233325324,0.0714495059454027,0.0852340684474473,0.0982004816945551,0.1106038881626112,0.1251665573909181,0.1379314003204006,0.1505322546306153,0.1621560980821625,0.1717967149095044,0.1845951680830667,0.1964080926106242,0.2079790357305961,0.2183673023093072,0.228299852582015,0.239091180999435,0.2482397705843627,0.2573977812282004,0.2653237246779776,0.272721023749241,0.27899356213237,0.2857694377500643,0.2922157106493814,0.298511044188753,0.3044578547790539,0.3085252176060251,0.3141610123788143,0.3194325734478052,0.3236233766233766,0.3285134080355607,0.3278327981218123,0.3257264273296724,0.3240055373488529,0.3228177508444844,0.321524951171147,0.3196001351309849,0.3177660621843935,0.3185840707964602,0.3194875576669125,0.3195315018446219,0.3207564905156693,0.3213697597365236,0.3216956558272414,0.3231592619132927,0.3242037755864696,0.3252270882961179,0.3254789819845582,0.3274230186774356,0.3306827820186598,0.333718152866242,0.3362779201757598,0.3412503994035573,0.3460299412545006,0.3507405710795541,0.3520542781756502,0.357151307228203,0.3589277601090413,0.3622868605817452,0.3699406368051808,0.3666292555181444,0.0,2.8523324944241177,58.673831569949904,173.8221371771009,249.2822485881236,fqhc6_80Compliance_implementation_low_initial_treat_cost,19 -100000,95705,44790,423.3843581840029,6059,62.00303014471553,4747,48.99430541768977,1873,19.20484823154485,77.38171245272493,79.75557921718143,63.34258245905804,65.09490418352965,77.14167569887717,79.5169967178356,63.25285687888133,65.00816757460197,0.240036753847761,238.58249934583853,0.0897255801767116,86.73660892767998,167.36786,117.25463381912417,174878.90914790242,122516.72725471412,362.11802,234.52395740205787,377712.3138811974,244392.15025553305,369.71912,178.70100440804083,382540.8494853978,183787.4149580031,3104.51154,1426.2207744387838,3206650.248158403,1453042.008713007,1138.79508,508.2171255522523,1172783.8879891334,513907.1788853796,1836.22368,777.4784267436156,1884428.211692179,782940.1318394892,0.38259,100000,0,760763,7949.041324904655,0,0.0,0,0.0,30891,322.1566271354684,0,0.0,33889,350.2951778903924,1568298,0,56232,0,0,6701,0,0,62,0.6373752677498563,0,0.0,0,0.0,0,0.0,0.06059,0.1583679657074152,0.3091269186334379,0.01873,0.3381795195954488,0.6618204804045512,24.338898710974703,4.376915144658786,0.327996629450179,0.2340425531914893,0.2138192542658521,0.2241415630924794,10.834983955707235,5.526587285974912,19.971564899477816,12308.164310510534,53.911981048253374,13.335421319325263,17.692011590790113,11.114316380951758,11.770231757186249,0.5630924794607121,0.8073807380738074,0.6852922286448297,0.5665024630541872,0.1259398496240601,0.7185301016419078,0.91725768321513,0.8272506082725061,0.6880733944954128,0.1806167400881057,0.505767012687428,0.7398255813953488,0.6343804537521816,0.533249686323714,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0047035448914839,0.0068900434306124,0.0091928569977449,0.0115242996928209,0.0139002036659877,0.0160897272495539,0.0185593531789783,0.0206802081310121,0.0229092025795884,0.0248403268302184,0.02710444451289,0.0292877563192859,0.0313349814585908,0.0333632601673838,0.0351522921362254,0.0372322797133269,0.0395658444967884,0.0415167335732262,0.043580204458061,0.0580034045930675,0.0718585441944703,0.0853224774155641,0.098338926351003,0.1100832269701796,0.1255036751097245,0.1378139490466135,0.1497428690069313,0.1606517094017094,0.1714723992190684,0.1848196198439722,0.1975360765591677,0.2088599334362968,0.2190116978244233,0.2287112920081403,0.2392498117886718,0.2482406343753833,0.2574857708487998,0.2662045965015768,0.2737620814438184,0.2809502320037954,0.2872275745954541,0.2933454855357227,0.2998801534036433,0.3053730001579222,0.3108517770000493,0.3152595372107567,0.3208601056046822,0.3242123793005255,0.3277867144853775,0.3266085646653755,0.3254069647640634,0.3245680679835669,0.3237109239820048,0.3232649433375305,0.3213675213675214,0.318734601048708,0.3189629775115388,0.3193912466166181,0.3201167945590827,0.3204173991098478,0.3211819939243303,0.322670114487102,0.323914787414208,0.32430683697189,0.3258491055224267,0.3274258492599104,0.3311672081979505,0.3348558279000035,0.3372832484101591,0.3415673299188687,0.3428162746344564,0.3455153695638452,0.3491978609625668,0.3501974797818318,0.3501659554291133,0.3557560006115273,0.3540020263424518,0.3516574585635359,0.3523296110897189,0.0,2.4014594473469395,55.84200838484642,178.52638122720552,258.5371964909032,fqhc6_80Compliance_implementation_low_initial_treat_cost,20 -100000,95860,44531,420.7698727310661,6114,62.7268933861882,4847,50.01043187982474,1950,19.966617984560816,77.44506122741345,79.7213259591539,63.40474875222951,65.0838048062886,77.20221696598095,79.48189690590057,63.3158038216113,64.99870654782552,0.242844261432495,239.42905325333183,0.0889449306182044,85.09825846307706,166.40514,116.54969986601446,173591.84226997703,121583.24626122936,360.98618,233.4304083367589,376041.9570206551,242977.3089263081,371.54545,179.8620652841873,384200.6676403088,185024.16763603204,3180.88928,1447.7483114650795,3284684.6651366577,1476692.8348269134,1145.61545,507.9486735024927,1181165.6373878573,515959.31932244217,1915.3425,790.9965651851073,1964002.6914249947,796154.6832448371,0.37918,100000,0,756387,7890.538284998956,0,0.0,0,0.0,30710,319.7997079073649,0,0.0,33953,350.82411850615483,1577390,0,56695,0,0,6689,0,0,70,0.7302315877321093,0,0.0,1,0.0104318798247444,0,0.0,0.06114,0.1612426815760325,0.3189401373895976,0.0195,0.3390544546731159,0.6609455453268841,24.66091647892915,4.356847768755386,0.3162781101712399,0.2376727872911079,0.2213740458015267,0.2246750567361254,11.468133691347983,5.987399795536259,20.58208836880861,12241.311379493962,55.10403557721549,13.857359354819485,17.434234585886173,12.00399438008065,11.80844725642918,0.5613781720651949,0.7847222222222222,0.6894977168949772,0.5824790307548928,0.1239669421487603,0.7296037296037297,0.908235294117647,0.8508997429305912,0.7290836653386454,0.1756756756756756,0.500561797752809,0.7125171939477304,0.6346153846153846,0.537712895377129,0.1107266435986159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022065223992388,0.0045482632522614,0.0068949433702077,0.0088404855669684,0.0108724368484158,0.013053077087424,0.0153894728265297,0.0176511976505858,0.0200042888214931,0.0221781408807861,0.0244009830022527,0.0265729962566022,0.02867560211575,0.0307250789470977,0.0329486915310117,0.0348472336911643,0.0370033300928702,0.0389318356096246,0.0409356118020805,0.042900993704802,0.0578611499238806,0.0726807354784788,0.0865477237508899,0.0998656844844592,0.11159624610723,0.1262585751978892,0.1386791753581601,0.1504797118541421,0.1617295798677756,0.1720587763139588,0.1845773550432586,0.1965444630419524,0.2080031265605662,0.2184470259411302,0.2281813588735364,0.2384471561805086,0.2474700191698988,0.2563846162488905,0.2644745194051505,0.2725764751641613,0.2801886574341664,0.2861367966987363,0.292403955336866,0.298300622307324,0.3038741066986981,0.3095179477079127,0.3135254877911415,0.3171796078830519,0.3204998704998705,0.324732544487976,0.3235678047073705,0.3226697448159294,0.3218692902319044,0.3205824319847911,0.3196404507692991,0.317097354852488,0.3155521926920773,0.3164414230385828,0.3174260088159709,0.3182520924777424,0.3184934705849384,0.3196354238592199,0.3210581346716855,0.3211815626254964,0.3221070811744387,0.3225521293744475,0.3237673507621562,0.3282567139857729,0.3319383413545372,0.3364208526303289,0.3383070955966233,0.3432700511945392,0.3430772144706105,0.3447878228782288,0.3485524442335073,0.3490407673860911,0.3504419289812374,0.3546777546777547,0.3583007266629402,0.3604100946372239,0.0,2.1840936106018174,56.39734381596655,187.0548205954511,262.123028643719,fqhc6_80Compliance_implementation_low_initial_treat_cost,21 -100000,95692,44146,418.5302846632948,6147,63.03557246164779,4804,49.690674246540986,1917,19.7404171717594,77.29747507811412,79.70223402114001,63.28577397120039,65.06638396008243,77.06253082751874,79.46657074182264,63.198859292551305,64.98151633211562,0.234944250595376,235.66327931737877,0.0869146786490873,84.86762796681546,165.98428,116.3319531008149,173456.79889645948,121569.15217658204,360.45582,233.3432120484252,376166.116289763,243330.9702466509,359.58051,173.70920408145747,372426.4724323872,178959.18091663165,3147.19661,1432.0840887686709,3256481.7853112067,1464155.863362318,1165.59393,510.8020314050389,1204214.7201437948,519944.4586851973,1877.55826,782.3617666740672,1934591.292898048,793488.9126437955,0.37724,100000,0,754474,7884.399949839068,0,0.0,0,0.0,30745,320.7582661037496,0,0.0,33046,342.0139614596832,1573436,0,56418,0,0,6441,0,0,61,0.6374618567905364,0,0.0,1,0.0104501943736153,0,0.0,0.06147,0.1629466652528894,0.3118594436310395,0.01917,0.3438324282389449,0.6561675717610551,24.736929272082627,4.44949950314225,0.3084929225645295,0.2431307243963363,0.2216902581182348,0.2266860949208992,11.213996258180376,5.685286566997019,20.340380661453,12209.306207694804,54.45897344921152,14.016220540800752,16.67002001421304,11.82911298331231,11.94361991088542,0.5574521232306411,0.7902397260273972,0.6835357624831309,0.5690140845070423,0.1248852157943067,0.7252747252747253,0.9072398190045248,0.8497267759562842,0.7404255319148936,0.1645021645021645,0.4968838526912181,0.71900826446281,0.6290322580645161,0.5204819277108433,0.1142191142191142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024727390652235,0.0048688454750167,0.0071272653434184,0.009612844223148,0.0117899576822916,0.0137199779991444,0.0159316225368202,0.0182594309756745,0.0202503681885125,0.0225091910823459,0.0247612600137448,0.0268645983151838,0.0285082304526748,0.0305740754098698,0.0323892909873726,0.0344656378004882,0.0361936547092173,0.0381903703780618,0.0401997503121098,0.0420210105052526,0.0566071242034889,0.0708483376601624,0.0839559286463798,0.0972282122758112,0.1096401936688431,0.1243480560698228,0.1370053498641304,0.1486995974183654,0.1595465968026519,0.1697462931747173,0.1827338905365327,0.1951980922443228,0.2064458507150559,0.2171802933862115,0.2269971783793316,0.2371127158973676,0.2459348003442148,0.2555106270344548,0.2630520719738277,0.2706788460877239,0.2769597905540817,0.2837969198336944,0.2898495795333412,0.2965074411905904,0.3020681265206812,0.3077492687622644,0.3124404672381812,0.3171415822018231,0.3222088087542349,0.3268172680139667,0.3249919015225138,0.3238443493859528,0.3234890983340163,0.3215605570933754,0.3210715773189742,0.3185949209949578,0.3174826724056081,0.3186744716087035,0.3191692365358731,0.320168097154457,0.3214185720951936,0.3232521988941579,0.324120655463939,0.3259315352235016,0.326421516923962,0.3266748058290256,0.3272711772896479,0.3313171832398383,0.3329249509941193,0.3352999406058206,0.3397016011644833,0.3423604854523292,0.3448665620094192,0.3500113713895838,0.3517422748191979,0.3551401869158878,0.3554837717274265,0.356751269035533,0.3649876135425268,0.352556708958093,0.0,2.001847435387542,56.27047337853136,183.5258295646716,259.3121486325511,fqhc6_80Compliance_implementation_low_initial_treat_cost,22 -100000,95820,44737,422.9597161344187,6085,62.35650177415989,4764,49.03986641619704,1836,18.73304111876435,77.32864418348662,79.63869494835774,63.32870225298407,65.0382559472491,77.10355230276383,79.4184525369975,63.24533821396278,64.95929685407204,0.2250918807227862,220.24241136023196,0.0833640390212835,78.95909317706185,166.79564,116.8702360655838,174071.84303903152,121968.5202103776,360.96796,234.5348386105251,376036.4746399499,244089.52631132043,372.49307,180.4141508197183,384243.289501148,184800.15291074524,3081.60771,1417.6213357936997,3173843.738259236,1437592.5943232449,1112.66792,497.3090175986887,1140612.7739511584,498650.17988917616,1794.57486,752.7725351025806,1832128.7413901065,751137.0032781743,0.38108,100000,0,758162,7912.35650177416,0,0.0,0,0.0,30768,320.3819661865999,0,0.0,34043,350.8766437069506,1567526,0,56311,0,0,6653,0,0,65,0.6679190148194531,0,0.0,1,0.0104362346065539,0,0.0,0.06085,0.1596777579510863,0.3017255546425637,0.01836,0.3357904642409033,0.6642095357590966,24.380381737393424,4.249942569897283,0.3259865659109991,0.2487405541561712,0.2151553316540722,0.2101175482787573,11.2305148715658,5.923866690755069,19.66416558720225,12308.593347905782,54.38841791368857,14.196534252259326,17.583063793016258,11.466101389194607,11.142718479218376,0.5745172124265323,0.7772151898734178,0.7108821635544108,0.584390243902439,0.1128871128871128,0.7419106317411402,0.9144736842105264,0.878345498783455,0.6818181818181818,0.1658767772511848,0.5118291979226774,0.691358024691358,0.6506129597197898,0.5577639751552795,0.0987341772151898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788271636197,0.0045006690183675,0.0066453609293359,0.0089692020152771,0.0112466951393125,0.0133984931785787,0.0156966670064213,0.0178084847990039,0.0198663314734195,0.0221640095777991,0.0244574683907457,0.0265793686630269,0.0285491131071054,0.0310273831583281,0.0333384893013663,0.0352785611718887,0.0374398509856677,0.0393571798859512,0.0413083219078482,0.0430270922886374,0.0572099087353324,0.0710559058164214,0.0848889494481537,0.0976755427586641,0.1103779749984189,0.1259724336208354,0.1382220714225125,0.150259618658495,0.1616371946010593,0.171470837308521,0.1841575416949298,0.1961923305749364,0.2078667565393229,0.2185041091099842,0.2277797333568002,0.2378484335027741,0.2478873868342617,0.2568074113263617,0.2660255682463271,0.2732995459340457,0.280701551016623,0.2877526614453876,0.2941190433802148,0.2993754503963488,0.3054375996203779,0.3107769732703432,0.3153779648911777,0.3194159542344592,0.3245981604244775,0.3287540823207415,0.3275478415665331,0.3268838261253309,0.3259609949123799,0.3245481709262858,0.3233208176887776,0.3216359001136468,0.3198742976859346,0.3211620030907835,0.3226583316253331,0.323814789712125,0.3237377712807826,0.3233148122515967,0.3240952002176961,0.3259835131693586,0.3270266371766516,0.3284435279684686,0.3305263157894736,0.3336572521237578,0.3373451944880516,0.3413211414157339,0.3444947893067512,0.345679665590772,0.3461659235068768,0.3477632379793061,0.3486737276220826,0.352619698229773,0.3558756633813495,0.3562197092084006,0.3446959367330243,0.3486943164362519,0.0,2.603516723656872,56.59684335900909,180.86107689003148,257.7226785510759,fqhc6_80Compliance_implementation_low_initial_treat_cost,23 -100000,95735,44993,425.66459497571424,6119,62.50587559408785,4830,49.75191936073536,1918,19.64798662975923,77.35098256499538,79.70072642729319,63.33757887846742,65.07143030233892,77.10619748914627,79.4567393356751,63.24538038136876,64.98227360262719,0.2447850758491085,243.98709161809504,0.0921984970986571,89.15669971173656,166.4278,116.63277471331789,173841.70888389827,121828.37105281676,361.62397,234.53327895286665,377001.90108110936,244250.93026320144,371.64527,180.14124862598695,384266.75719433854,185036.22163917104,3145.95833,1451.095828786029,3243832.1825873503,1473637.2127307274,1147.85309,512.4395129126914,1181235.2640100275,517636.43216709024,1874.11614,799.3970452263648,1921190.661722463,803281.2172364836,0.38254,100000,0,756490,7901.895858359012,0,0.0,0,0.0,30827,321.2409254713532,0,0.0,34019,351.27173969812503,1569879,0,56334,0,0,6577,0,0,54,0.5640570324332793,0,0.0,0,0.0,0,0.0,0.06119,0.1599571286662832,0.313449910116032,0.01918,0.3413836086008102,0.6586163913991898,24.219080020627977,4.324575676173636,0.3171842650103519,0.2401656314699793,0.2262939958592132,0.2163561076604555,11.234013990203568,5.875764659311739,20.507365229082435,12313.97194295636,54.99712757514682,13.919502168548942,17.34755128986752,12.23936825208694,11.49070586464341,0.567287784679089,0.7922413793103448,0.6932114882506527,0.5718206770356816,0.1282296650717703,0.7140740740740741,0.9383561643835616,0.8709677419354839,0.656140350877193,0.1647058823529411,0.5103448275862069,0.703601108033241,0.6362068965517241,0.5420792079207921,0.1164556962025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0046827013713625,0.0068896938703032,0.0092020801170065,0.011499628880235,0.0138347364884812,0.0159121721491116,0.0182786809956829,0.0206870470875622,0.0230275614324166,0.0252885581319064,0.0271812769451857,0.0291680375061687,0.0312229682415454,0.0333735673093786,0.0352251702859977,0.037401370969412,0.0394321766561514,0.0411611199484316,0.0432771445835851,0.057979789544012,0.0718679387396434,0.0861345859458552,0.0990274930347474,0.1114566422803651,0.1270097992579202,0.1392270818309082,0.1512403818524312,0.1627834930401991,0.1733444898572179,0.1861291851596501,0.1986448896537541,0.2092615960316769,0.2192274020573429,0.2286104352230063,0.2385370936987273,0.2477964094600784,0.2566344790330204,0.2657811080835604,0.2734518348623853,0.2805664593971816,0.2872046460436035,0.2941141660058468,0.2997447603983176,0.3049935637432298,0.3101269720070444,0.3153536313827525,0.3189310879906387,0.3227252120976621,0.3271265005348441,0.3251762865887365,0.32410342641343,0.3232961760970791,0.3226502534395365,0.3216140215143354,0.3201478006224798,0.3184037796873513,0.318367279786779,0.3195299671592775,0.3210784751361485,0.3217249583185028,0.3220171716174874,0.3237431161923906,0.3239464927756314,0.3244948888995537,0.3266508511692171,0.3282273219064973,0.332672581964634,0.3365910046237915,0.3393331483170122,0.3421352151149556,0.3432780259519251,0.3470866141732283,0.3510508681084374,0.3501174260216064,0.3551568441064638,0.3605515959095134,0.3632123301561549,0.3627829928216455,0.3676132003069838,0.0,2.611908115131323,58.79249060474998,177.96658038438693,260.6675451679805,fqhc6_80Compliance_implementation_low_initial_treat_cost,24 -100000,95845,44760,423.13109708383325,6246,64.02003234388857,4948,51.07204340341176,1897,19.437633679378163,77.51248185563044,79.7973552759867,63.42745123530996,65.1103845206903,77.27280284362159,79.5593731054686,63.33850565689628,65.02443255804731,0.2396790120088496,237.98217051810863,0.0889455784136785,85.95196264299432,167.52538,117.24798805091504,174787.81365746778,122330.834212442,365.02876,236.25537887001724,380288.5596536074,245932.692232268,372.06635,180.03605865542096,384301.67457874696,184890.52636394385,3229.94959,1477.5706527946616,3335400.959883145,1507054.2154464603,1205.87336,533.6125178427848,1244889.6238718764,543485.4377826535,1864.67662,787.6606847128852,1912441.504512494,794123.14523191,0.38025,100000,0,761479,7944.90062079399,0,0.0,0,0.0,31086,323.7518910741301,0,0.0,34141,352.433616777088,1572652,0,56418,0,0,6608,0,0,61,0.6260107465178152,0,0.0,0,0.0,0,0.0,0.06246,0.1642603550295858,0.3037143772014089,0.01897,0.3263431807745293,0.6736568192254707,24.754462704908832,4.291284200034986,0.3265966046887631,0.240501212611156,0.2055375909458367,0.2273645917542441,11.105965985865751,5.728500910993027,20.22011308162611,12274.427534394756,55.94570405703193,14.23807495112341,18.205177316740983,11.215960814442292,12.286490974725243,0.5650767987065481,0.7873949579831933,0.7060643564356436,0.5693215339233039,0.1235555555555555,0.7119764878765613,0.8949671772428884,0.8655256723716381,0.7046413502109705,0.1511627906976744,0.5093392807359911,0.7203274215552524,0.652029826014913,0.5282051282051282,0.1153402537485582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00234756035861,0.0045269948653548,0.0069025633748568,0.0093454150642814,0.0117231150571933,0.0138106376487338,0.0158823888741829,0.0182431881220427,0.0205957133958931,0.0229778095919828,0.0254057651937944,0.0274538760524669,0.029386681462758,0.0312454973962085,0.0332164948453608,0.0353240099981408,0.0372508847085118,0.0394795500492457,0.0412507141744143,0.0430482536047056,0.0580781745369597,0.0719364282726892,0.0851679153350448,0.09775975969668,0.1101271953839026,0.1262424082387113,0.1383575145458206,0.149920255183413,0.161603226942408,0.1716497826133516,0.1840978987891691,0.1963793866992147,0.2081121280222345,0.218600537246937,0.2280297038404077,0.2379878136438531,0.2479667550524744,0.2567936461574755,0.2651632706226143,0.2718211330071785,0.2795999123221929,0.286355057436447,0.292861270653725,0.2989121998399943,0.3040352448500399,0.3087400820457393,0.3131592728360888,0.3183050418039017,0.3230360619383453,0.3272767851281984,0.3261621360784944,0.3248069233718573,0.323704523485984,0.3220802394520232,0.3208289572947946,0.3194177423784674,0.3173347231434979,0.3176320398042521,0.3184116015046552,0.318727298625454,0.3197772212462154,0.3210209914260372,0.3228899053825427,0.3238790685248675,0.3247763330549922,0.3247861038591775,0.3262289057862453,0.3294040806170689,0.3346165851628342,0.337373421433319,0.340466490576174,0.346133778566211,0.349571800918456,0.3511157863100158,0.3518844337438652,0.3517225325884544,0.3598797896318557,0.3585240726124704,0.3594086021505376,0.3625883227965786,0.0,2.1518469391435784,59.81423754951662,181.7123275773008,266.5938678777261,fqhc6_80Compliance_implementation_low_initial_treat_cost,25 -100000,95742,44633,423.72208644064256,5954,61.19571347997744,4665,48.171126569321714,1838,18.852750099225,77.31288813594676,79.67287390082242,63.318020272784125,65.06269196560362,77.0856175357758,79.44543912348632,63.23382000795088,64.98054630387672,0.2272706001709679,227.43477733610007,0.0842002648332496,82.14566172689786,167.376,117.32784473013076,174819.8282885254,122545.8468907384,360.35704,233.497446285278,375822.70059117215,243331.6807652478,368.09274,177.59370454142422,381378.4337072549,183089.08119197347,3029.69255,1378.5238993306607,3128368.0307493056,1404733.0280122692,1136.83924,496.34636844184257,1173429.8844812098,505235.2388329856,1801.9496,754.3373634992648,1848968.6031208877,760130.466890429,0.37864,100000,0,760800,7946.35583129661,0,0.0,0,0.0,30752,320.61164379269286,0,0.0,33678,348.6870965720373,1566317,0,56262,0,0,6610,0,0,56,0.574460529339266,0,0.0,0,0.0,0,0.0,0.05954,0.1572469892245933,0.3087000335908633,0.01838,0.3262569832402234,0.6737430167597765,24.68462051537904,4.353223948899708,0.3159699892818864,0.2465166130760986,0.2147909967845659,0.2227224008574491,11.386146438394285,5.825158667291341,19.71819701417318,12174.005581068524,52.97566590097932,13.988760069578449,16.493478385526057,11.131754593322114,11.361672852552712,0.5691318327974276,0.7973913043478261,0.6994572591587517,0.592814371257485,0.1087584215591915,0.7199036918138042,0.8876404494382022,0.8306010928961749,0.7532467532467533,0.1176470588235294,0.5141854343375256,0.7404255319148936,0.6561371841155235,0.5447470817120622,0.1065868263473053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024002916810144,0.0045611652256763,0.0070516137541979,0.0092126112217121,0.0113810884755037,0.0135641547861507,0.015907005200367,0.0179375401986707,0.020324288956591,0.0221582822211527,0.0240743968584347,0.0264106381886327,0.028375140127323,0.0303442308880786,0.032497678737233,0.0342397089676412,0.0360330510054049,0.0378920719243818,0.0396497759106554,0.041635408852213,0.0562730338369021,0.070081088150667,0.083619966442953,0.0962864833038943,0.108641558770191,0.1245200799602314,0.1367272881607707,0.1481863851164374,0.1588272989426465,0.169611648403491,0.1825531823271036,0.1948658614388131,0.2066791320607035,0.2173594479621184,0.2270336875921403,0.2374206696423627,0.2467551309665971,0.255807674567729,0.2638362137487793,0.271378318609421,0.278200363539532,0.2847568250403537,0.2913797591159698,0.296701584485941,0.3022863112882064,0.3072429474618257,0.3116234221598878,0.3162066903334987,0.320736873469705,0.3246092666235087,0.323318814978627,0.3227188210178362,0.3214749195960052,0.3201795020266358,0.3192814157182864,0.3176092900371724,0.3161381545500762,0.3164473575863375,0.3165084153155315,0.3173152727012112,0.3176174465127637,0.3178843407901,0.3190382275187781,0.3195159053286206,0.3216685532622046,0.3234495719356859,0.3256743256743257,0.3285502538711407,0.3329345531315975,0.3350989684973515,0.3371960399653269,0.3410548635038431,0.3449074074074074,0.3444976076555024,0.3487956341738803,0.3540189125295508,0.3552147239263803,0.363508064516129,0.3717984026438997,0.3800599700149925,0.0,2.101502888722825,54.70906115910002,173.3084410677414,258.9962460958865,fqhc6_80Compliance_implementation_low_initial_treat_cost,26 -100000,95784,44651,422.3565522425457,6088,62.44257913639021,4728,48.79729391130042,1849,18.98020546229015,77.37208356525132,79.71116870167683,63.35007434272507,65.07955591703302,77.13719807708631,79.47630380786565,63.26380862094184,64.9955300836572,0.2348854881650055,234.86489381117792,0.086265721783235,84.02583337581859,166.73998,116.6918197356754,174079.15727052535,121828.09209855027,359.87813,233.8407514539279,375173.129123862,243588.12688332915,372.29695,180.51380855107757,384811.2315209221,185432.77502469387,3084.34789,1417.5743728648577,3186897.1644533537,1446759.4408929034,1115.83977,494.808896035952,1152143.990645619,503778.0068027558,1804.53778,754.4548529314924,1854003.215568362,761799.3860396342,0.37951,100000,0,757909,7912.688966842061,0,0.0,0,0.0,30755,320.52326066984045,0,0.0,34065,351.8437317297252,1571821,0,56539,0,0,6600,0,0,61,0.6264094211976948,0,0.0,0,0.0,0,0.0,0.06088,0.1604173803061843,0.303712220762155,0.01849,0.3465625,0.6534375,24.275693202794265,4.302950392842126,0.3187394247038917,0.2478849407783418,0.2131979695431472,0.2201776649746193,11.346286140859988,6.06349803739475,19.68659619534229,12253.159698943322,54.11537658154801,14.289262694146734,17.092239641085207,11.35510266106376,11.378771585252306,0.5666243654822335,0.7935153583617748,0.696748506967485,0.5724206349206349,0.1171950048030739,0.7362471740768651,0.91220556745182,0.8567708333333334,0.720754716981132,0.1469194312796208,0.5004410467509556,0.7148936170212766,0.6420302760463046,0.5195154777927322,0.1096385542168674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106148080623,0.0049470824378573,0.0071137180085648,0.0095793419408579,0.0118173497406691,0.0138459032415702,0.0160331875770826,0.018337857419842,0.0204381948986265,0.0226998260157609,0.0246974308523175,0.0266936237030347,0.0287814154288944,0.0309411037891268,0.0329469754779631,0.0348500816233752,0.0369212615540673,0.0388982795988841,0.0408769742310889,0.042905183812429,0.0581458446383103,0.0712672049533531,0.0844794330999203,0.0976537463356203,0.1097731845811868,0.1246764771130666,0.1373544278311733,0.1487065528277211,0.1599662847022171,0.1697428041948303,0.1836135402884894,0.1963253174817616,0.2074147316723349,0.2171869534802378,0.2272817242137673,0.2377556557077524,0.246904629113218,0.2563174460431655,0.2650926072861644,0.2726741922927209,0.2802793774139087,0.2872204883636661,0.2934036190858912,0.2989357499431362,0.3047419127818089,0.3091905201600492,0.3147434292866082,0.3195230164884758,0.3239558677065953,0.3267818773809994,0.3251512300040328,0.3237923883036437,0.3221779136781884,0.3216897418851345,0.3211277648212243,0.3199436869730218,0.317539668728544,0.3181877829538744,0.3188038866840016,0.3203543616489248,0.3201857886653931,0.3205862600244933,0.3227764636928809,0.3228845724492074,0.3245704673795506,0.3252870563674321,0.3258369098712446,0.3290408105293059,0.3314460542973695,0.3351926371568588,0.337025893508388,0.3401432740780047,0.3414066431806744,0.3466372153248533,0.3493066691821526,0.3503312825366777,0.3546865489957395,0.3514048278591214,0.3508249932377603,0.3470919324577861,0.0,2.243596313409937,58.231591151264674,180.36087513358595,248.94992911348672,fqhc6_80Compliance_implementation_low_initial_treat_cost,27 -100000,95646,44541,422.0354222863476,6101,62.52221734311942,4761,49.18135625117621,1892,19.425799301591283,77.25911226955019,79.6565435451953,63.27736057920528,65.04624461077006,77.02406883889286,79.42220497542588,63.18968482691587,64.96121898176122,0.2350434306573277,234.33856976942025,0.0876757522894067,85.02562900883959,166.36796,116.56205341998376,173941.3671246053,121868.19461345352,358.61078,232.30409247649385,374288.6268113669,242233.37720140675,364.20837,176.3689961298097,377130.773895406,181473.6676185024,3095.02722,1417.2396738030857,3198046.578006399,1443969.4183174511,1113.33582,490.5330944815204,1149812.3183405474,498712.2888065871,1842.55984,780.1920496066539,1893435.4808355807,786714.8597262834,0.37907,100000,0,756218,7906.425778391151,0,0.0,0,0.0,30630,319.6369947514794,0,0.0,33280,344.33222507998244,1568311,0,56288,0,0,6471,0,0,54,0.5436714551575602,0,0.0,0,0.0,0,0.0,0.06101,0.1609465270266705,0.3101130962137354,0.01892,0.332137845002339,0.667862154997661,24.78320697335568,4.261141916757423,0.328922495274102,0.2390254148288174,0.215921024994749,0.2161310649023314,11.010465003792731,5.742304682814236,20.20912314614665,12264.596806175156,54.09779544245869,13.65211472275047,17.68663449226447,11.464673628219389,11.294372599224369,0.5599663936147868,0.7776801405975395,0.6896551724137931,0.5739299610894941,0.107871720116618,0.7157561361836896,0.914572864321608,0.8438287153652393,0.726530612244898,0.1210762331838565,0.5037164093767867,0.7040540540540541,0.6372968349016254,0.5261813537675607,0.1042183622828784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022487161046564,0.0046542755452803,0.0068002354708401,0.0090330840513737,0.0112416704817132,0.0134540565864787,0.0158859636600934,0.0177016445991608,0.0197094693368499,0.0219563125678137,0.0243907440253442,0.0266862441087985,0.0285831833376189,0.030482214415955,0.0328376384144642,0.0348967057509771,0.0368486480886771,0.0386763270983412,0.040700637605184,0.0429810478910827,0.0572240683846427,0.0712939106391001,0.0853197521789352,0.097833984436699,0.110098524768472,0.1248014233970896,0.1376541439632922,0.1497735869159874,0.1609422784918411,0.1714469798657718,0.1844237096165255,0.1963221429964673,0.2077714111418549,0.2184989973591646,0.2275875761051795,0.2378768020969855,0.2473254252461951,0.2564553792006497,0.2649822533673098,0.2735756893123541,0.2806207128680695,0.2871555435636944,0.2935221230535511,0.2998100185171825,0.3050969393976344,0.3096559652874785,0.3148775894538606,0.3190123771851473,0.3224323938359276,0.326387786421125,0.3252146676027434,0.3242019220148017,0.3239283239283239,0.3231837529235731,0.3218891807977072,0.3195732054179542,0.3166362264750258,0.3168522300546808,0.3173220379675201,0.3182477308938577,0.3203852508260739,0.3216477295221505,0.322398522436301,0.3231325947105075,0.3262133589620374,0.3270546608736374,0.3265433854907539,0.3303456300908891,0.3337311756239688,0.3366812227074235,0.340154968094804,0.3463497453310696,0.3494528990064143,0.3503787878787879,0.3528863191271099,0.3575399172087522,0.3628318584070796,0.3652015393963945,0.3657174762702401,0.3755406999606763,0.0,2.3132100409548726,55.2702677583093,180.88988229371915,260.83685897054045,fqhc6_80Compliance_implementation_low_initial_treat_cost,28 -100000,95621,45043,426.6635990002196,5969,61.11628198826618,4723,48.84910218466655,1844,18.96027023352611,77.28554750318864,79.71840731866871,63.27381344368565,65.07260667908955,77.05317782784397,79.4841449990836,63.18806557710003,64.98786023856967,0.2323696753446711,234.26231958511323,0.0857478665856135,84.74644051987923,165.84392,116.17024513584244,173438.80528335826,121490.30561889382,359.22879,232.60696988967385,375174.3131738844,242753.79873633807,369.12997,179.1020125484476,382284.5922966712,184482.86436799573,3080.90666,1417.4749724059905,3190139.0384957283,1450529.865203241,1147.5952,510.0850428028239,1189659.4158187008,522954.2389253653,1804.85228,761.3987514138645,1857911.2119722653,772285.3867056132,0.38272,100000,0,753836,7883.582058334467,0,0.0,0,0.0,30623,319.6996475669571,0,0.0,33731,349.02375001307246,1572435,0,56428,0,0,6479,0,0,66,0.6902249505861684,0,0.0,0,0.0,0,0.0,0.05969,0.1559625836120401,0.3089294689227676,0.01844,0.336951316839585,0.663048683160415,24.48889566990609,4.34601965929366,0.319923777260216,0.2343849248359094,0.2263391911920389,0.2193521067118357,11.238256595411668,5.863359187035354,19.71809873120498,12362.538151156845,53.84795548916967,13.467853176720132,17.03761683715585,11.922626593219956,11.419858882073749,0.5659538428964641,0.8066847335140018,0.7114493712772998,0.5463049579045838,0.1167953667953668,0.728414442700157,0.9209302325581395,0.8518518518518519,0.6844106463878327,0.1477832512315271,0.5059437518121195,0.7341211225997046,0.6646072374227714,0.5012406947890818,0.1092436974789916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023003648155654,0.00459483309497,0.0068127360597815,0.0090664227270417,0.0110995808407601,0.0136193706770976,0.0158011241342024,0.018020594965675,0.0198525125037076,0.0221214014317462,0.0244455386635481,0.0268492925473433,0.0290575592885375,0.0309546143300382,0.0331034197918387,0.0352916839056681,0.0371498740945689,0.0392659826361483,0.0413418403988467,0.0434945866449715,0.0578679990801329,0.0724959654601471,0.0859130361683794,0.0986314647225529,0.1111005482143423,0.1264376337025819,0.1389181090816359,0.1511213917196094,0.1630786021528387,0.173456670749264,0.1865410759370751,0.1985775619064139,0.2102045486743022,0.220355882804111,0.2304953201997596,0.2409028864400572,0.2510087969328102,0.2600477875707233,0.2688356553558035,0.2766606287116226,0.2833269638328179,0.2897026618730311,0.2962681966902176,0.3015691971521533,0.307368369805993,0.3117718206951027,0.315717614049152,0.3195102685624013,0.3236968730140202,0.3279180039888523,0.3273442340328098,0.3262412322926695,0.3255210902377496,0.3241684374864478,0.3232387773600606,0.3223788127405726,0.3201421161990261,0.3211647610430205,0.3212123285328225,0.3221725125268432,0.322750628211379,0.323047137381959,0.324337359503439,0.3250553233341529,0.3254149352676963,0.3260525153884113,0.3273324275362319,0.3302167047124675,0.3323133627733927,0.3356607495069033,0.3378084179970972,0.3412736223598539,0.3439326336957204,0.3473158173695767,0.3512404402163775,0.3530377668308703,0.3578803522623747,0.3637462235649547,0.3661321011144333,0.3661284265865565,0.0,2.0988644788866844,55.95147358814171,181.733537911956,254.0605251520289,fqhc6_80Compliance_implementation_low_initial_treat_cost,29 -100000,95797,44830,424.2408426151132,5993,61.23365032307901,4673,48.08083760451789,1829,18.70622253306471,77.35864855579545,79.6621754892607,63.35358995694328,65.05355883307996,77.13093499251335,79.43517974822853,63.269384556164766,64.9717153477533,0.2277135632821085,226.99574103216943,0.084205400778508,81.84348532665808,166.84096,116.90420701379736,174160.9444972181,122033.26514796638,359.24169,232.9630283821534,374308.506529432,242489.4917191075,369.0307,179.50283773574594,379166.0072862407,182963.1821114582,3055.33902,1398.1700510252,3148909.3186634234,1419033.6764462336,1083.67717,476.9122674246462,1114134.5344843783,480748.4132328209,1794.87958,748.9927549793877,1838383.2270321616,754743.3272084334,0.38086,100000,0,758368,7916.406568055368,0,0.0,0,0.0,30603,318.736494879798,0,0.0,33664,345.4909861477917,1571515,0,56352,0,0,6700,0,0,74,0.7620280384563192,0,0.0,2,0.0208774805056525,0,0.0,0.05993,0.1573544084440477,0.3051893876188887,0.01829,0.3385964912280702,0.6614035087719298,24.684108989850035,4.358215554708032,0.3154290605606676,0.2456665953349026,0.2152792638561951,0.2236250802482345,11.48629797049345,5.953724125507432,19.417657965439087,12267.33724152654,52.97739376074973,13.801021756581008,16.59348404968683,11.285654914369616,11.29723304011229,0.5568157500534988,0.7787456445993032,0.6926729986431479,0.5854870775347912,0.0937799043062201,0.7448979591836735,0.923963133640553,0.8900523560209425,0.7233201581027668,0.1219512195121951,0.4863195057369814,0.6904761904761905,0.6236263736263736,0.5391766268260292,0.0869047619047619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024391231301742,0.0046389611968114,0.0067317538043533,0.0089094543720255,0.0110946294678235,0.0133055287116626,0.0155339608034877,0.0178001285281486,0.0200437243323866,0.0223715706131467,0.0246845296624057,0.0266170225860052,0.0287463784494626,0.0307377260051246,0.0328697068739754,0.0350116189000774,0.0370627127588026,0.0391445424670599,0.0410075305115554,0.0430052676507943,0.0573985978968452,0.0707774014134571,0.0841010806108438,0.0965677413930808,0.1088195930067129,0.1248441297685723,0.1379123908065473,0.1495101428617017,0.1601311027362892,0.1708156438955358,0.1836631424818587,0.1962852383115899,0.2071162922203614,0.2174635992692505,0.2283175903296122,0.238526924739286,0.2469951453601919,0.2558550248599519,0.2643367752184273,0.2721263775288107,0.2786289576004443,0.2851274008356839,0.291407665257699,0.2969654825134581,0.3027621085391947,0.307693256072001,0.3137416804283641,0.3189373418284944,0.3231611792275722,0.327061369364139,0.3265498398341813,0.3259021894597865,0.3256366962149993,0.3248722906865999,0.3237546755328623,0.3217650657693484,0.3198119777158774,0.320844899232955,0.3213656801901147,0.3226660465449081,0.3228631436822563,0.3238988112897802,0.3261900763999664,0.3263736755040908,0.3285868911605532,0.3295445637689111,0.330973047053449,0.334815796114055,0.3382715180519389,0.3428753433929211,0.3464165376559512,0.3492359299291837,0.3515970205782098,0.3503560217441237,0.3512272812441446,0.351967116852613,0.3558702603928734,0.3579096617378975,0.3574811925327389,0.3583792289535799,0.0,2.76760940648803,55.20357307749054,168.8095814741638,259.9670154307211,fqhc6_80Compliance_implementation_low_initial_treat_cost,30 -100000,95865,44944,424.7222656861212,6007,61.39884212173369,4725,48.745631878162,1883,19.28753976946748,77.41454581429173,79.70208956414005,63.37712166936033,65.06748979323118,77.17231717067766,79.46176959811,63.28704040138148,64.98049020387207,0.2422286436140694,240.31996603005723,0.0900812679788529,86.99958935910956,168.6806,118.2094323599365,175956.397016638,123308.22756995408,365.03877,236.9622660826541,380243.69686538365,246642.79568419565,371.57915,179.7510564092881,384009.6281228811,184677.45645641387,3085.566,1420.3348416646966,3183901.058780577,1446842.5302922805,1103.90575,492.134377002618,1136448.1823397486,498288.9240104499,1845.09884,778.4667051062569,1891216.544098472,783475.3021739376,0.37985,100000,0,766730,7998.018046210817,0,0.0,0,0.0,31082,323.6739164450008,0,0.0,34027,351.4525635007563,1559987,0,56041,0,0,6751,0,0,54,0.5528607938246493,0,0.0,0,0.0,0,0.0,0.06007,0.1581413715940502,0.3134676211087065,0.01883,0.3410852713178294,0.6589147286821705,24.38159962007514,4.277412934983278,0.324021164021164,0.244021164021164,0.2133333333333333,0.2186243386243386,11.237591815559448,5.971623185084834,20.04296058111676,12183.728935091627,53.58114521924795,13.670717739208124,17.251419104628237,11.308018470365637,11.350989905045967,0.56,0.7762359063313097,0.7086871325930765,0.5625,0.0958373668925459,0.7349304482225657,0.9287469287469288,0.8894230769230769,0.7436974789915967,0.111587982832618,0.4940250655785485,0.693029490616622,0.6412556053811659,0.5064935064935064,0.09125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002277673735891,0.0045691707613596,0.0069156433474958,0.0088725559864373,0.0113324524850086,0.0134311500931022,0.0157599837000814,0.0178709861683463,0.0201642559450845,0.0224308815858111,0.0246143445393645,0.0267417528311176,0.0289040504716302,0.0309103260869565,0.0329508315033043,0.0352919304696295,0.0369661479887435,0.0390594233838373,0.0412012623012083,0.0430734985125548,0.0572423572590399,0.0703969232698618,0.0833787294669795,0.096011087894665,0.1078548035509314,0.123248027545707,0.1352840222895523,0.1470012968514148,0.1576510253291509,0.1682142895393546,0.1809536104656166,0.1930346214562204,0.2050270587468214,0.2156228485252494,0.2248466729682794,0.2353702802000797,0.2450238076652876,0.2543997662448585,0.2627478110964932,0.271414832963158,0.278411916409349,0.2842159419103633,0.2911314550658813,0.2972691215414664,0.302153464744914,0.3071897036343015,0.3120869216903665,0.3168891320668286,0.3224271806904061,0.3264696947684017,0.3255619755680364,0.3240502497351294,0.3234192367272215,0.3227358081756464,0.3219664339818803,0.3195152182894918,0.3177852242910884,0.3185469328874463,0.3187962994572082,0.3196052584701984,0.319973841554559,0.3201972386587771,0.3200075192681246,0.3217046492459177,0.3228599525100136,0.3242394351573045,0.3248212461695607,0.3284831074751764,0.3320976428621389,0.3379255740300871,0.3403899217442439,0.3445271661650562,0.3467988280032417,0.3512579797221179,0.3519932935916542,0.3565278924401462,0.3585742695426036,0.3671350030543677,0.3709411117226197,0.3610687022900763,0.0,2.1385558762121124,56.678266774039926,175.76908094273804,255.21927990447557,fqhc6_80Compliance_implementation_low_initial_treat_cost,31 -100000,95718,44534,421.9060155874548,5950,61.12747863515744,4699,48.60109906182745,1840,18.867924528301884,77.36002699221102,79.73215827543298,63.33690834044432,65.08843267184785,77.13589810638287,79.50825167463472,63.253923330924685,65.00767900196767,0.2241288858281507,223.90660079825864,0.0829850095196391,80.75366988018118,166.97032,116.93912888837482,174439.83367809607,122170.46834281411,359.33911,232.5388292713258,374931.9041350634,242459.13963029505,367.82998,177.29265149377775,381072.797175035,182690.1104508664,3071.91618,1396.6932932181253,3179792.317014564,1429627.3670763352,1115.27192,488.0794993625006,1153877.1182013832,498626.8824698597,1798.16896,747.5609767868783,1846551.9129108423,755358.2871577761,0.3792,100000,0,758956,7929.083349004367,0,0.0,0,0.0,30637,319.5637184228672,0,0.0,33670,348.55513069642075,1572673,0,56427,0,0,6634,0,0,52,0.5432625002611838,0,0.0,0,0.0,0,0.0,0.0595,0.1569092827004219,0.3092436974789916,0.0184,0.3412367830823454,0.6587632169176546,24.384454467395063,4.367343481006065,0.3253883805064907,0.2366460949138114,0.2204724409448819,0.2174930836348159,11.330554914570984,5.926536941501627,19.47093580280835,12209.477292488687,53.396442898625686,13.36926550705954,17.19052385567183,11.694007585927,11.142645949967326,0.5739519046605661,0.8012589928057554,0.6952256376716809,0.6032818532818532,0.1154598825831702,0.7303643724696356,0.9017632241813602,0.8756613756613757,0.7490196078431373,0.1073170731707317,0.5181870669745958,0.7454545454545455,0.635968722849696,0.5556978233034571,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890480193657,0.0045109428377378,0.0066975837959063,0.0086958288465836,0.0111884128727775,0.0131359211437415,0.0154026503567787,0.0177488824021719,0.0198619984666496,0.0217961055713671,0.024052164284689,0.026107757381627,0.0280428612562214,0.0299728081740276,0.0319538593287316,0.0341184011910423,0.0363110839454245,0.0383625342522627,0.0405641537693459,0.04239822446364,0.0560481218083273,0.0701337575618026,0.082557932170319,0.0956637884795389,0.1080080966538048,0.1238014694222739,0.1360347936777341,0.1480216248430283,0.1593399551425825,0.1694680725540884,0.1830090707344925,0.1948147506925207,0.2066342057212416,0.2168865666094598,0.2266468712196195,0.2372830673474134,0.2470771976796073,0.2563133868537633,0.2648882741732515,0.2720153867289462,0.2793932316657224,0.2854021081169514,0.291837627555545,0.2969889254714157,0.3022996041863966,0.3077320920610292,0.3127603417434922,0.316812809759817,0.3208394250300811,0.3257108192224508,0.3248448793356394,0.3245489699588534,0.3239174560216509,0.3232971800433839,0.3221505440275878,0.3205860289952695,0.319045661522894,0.3194753733298401,0.3201425356339085,0.3206089201459984,0.3217823632761392,0.3232667704863096,0.3240825688073394,0.3256636774294043,0.3275478202580738,0.3282965963081237,0.3283302063789868,0.3320028913542223,0.3335087903989893,0.3344216603623333,0.3384087791495199,0.3412829385147724,0.3445805843543826,0.348423851120395,0.3537757864277046,0.354276973761619,0.3595009888939601,0.3639119013942211,0.3631346578366446,0.3664739884393063,0.0,1.943310151877986,54.46277534995924,181.1321817291814,255.8408271412772,fqhc6_80Compliance_implementation_low_initial_treat_cost,32 -100000,95751,44717,423.3585027832608,5973,61.29439901410951,4691,48.40680515086004,1908,19.54026589800629,77.33346816806463,79.69770052976457,63.32120940122799,65.07141959636154,77.09884479064392,79.46489276936957,63.23567652099322,64.98904519924908,0.2346233774207036,232.80776039500492,0.0855328802347656,82.37439711245997,168.86804,118.22509259818511,176361.6463535629,123471.3920462294,361.50325,233.8167796309993,376956.37643471087,243604.2968294357,365.65396,176.4973832101468,378862.98837610055,181853.4124370094,3108.81055,1395.7565263844758,3211650.5937274806,1422637.3003645292,1143.20855,490.86768864046815,1178721.6843688316,497604.3982120883,1868.05018,767.4937047051817,1915428.998130568,771297.4396187931,0.37839,100000,0,767582,8016.438470616495,0,0.0,0,0.0,30816,321.2290211068292,0,0.0,33334,345.0303391087299,1562087,0,56079,0,0,6649,0,0,70,0.7310628609622876,0,0.0,0,0.0,0,0.0,0.05973,0.1578530088004439,0.3194374686087393,0.01908,0.3289829699188286,0.6710170300811714,24.6749415676787,4.374202747445102,0.3172031549776167,0.2321466638243444,0.2229801748028139,0.2276700063952249,11.136254155263208,5.831869963062928,20.129014467586263,12186.017210385628,52.813615683341965,13.12776300845028,16.446625822897758,11.695986071762675,11.543240780231253,0.5593690044766574,0.7961432506887053,0.665994623655914,0.6089866156787763,0.1207865168539325,0.7367979882648784,0.9108910891089108,0.8448275862068966,0.7755102040816326,0.1377551020408163,0.4988564894225271,0.7284671532846715,0.6114035087719298,0.5580524344569289,0.1169724770642201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986929429049,0.0045633391473654,0.0069829283640866,0.0092259546018004,0.0111368767925794,0.0132472583979065,0.015281572401419,0.0173705374456532,0.0197763787253178,0.021915592724146,0.0238971530504495,0.0259637595605975,0.0281254177678598,0.0303810504634397,0.0324164826775065,0.0344392764857881,0.0367375254977893,0.0386826322452113,0.0408154778612939,0.0428062574207928,0.0576728358333594,0.0710734806225078,0.0842129561622563,0.0971887719150636,0.1095503248122838,0.1251612493920104,0.1372374283895608,0.1478986409544182,0.1586321792434695,0.1689935447897231,0.1819435169427629,0.194173076715026,0.2052612118839445,0.2160465472362578,0.2260863826838684,0.236619499988928,0.2457473881596571,0.2550323488045007,0.2632695667960151,0.2718084314870139,0.2791143996762819,0.2854103343465045,0.2915247421704986,0.2976057873115111,0.3025126481685937,0.3070932020916641,0.3115198620465593,0.3164392957853822,0.3211260684589621,0.3262248598747115,0.3247162418709859,0.322707465599956,0.3218368151359874,0.3214497319325424,0.3206854527079246,0.318444666001994,0.3160924096595684,0.3164669329782512,0.3170389628159956,0.3182500536135535,0.3190939238941037,0.3201913005671825,0.321791919614821,0.3228647428303194,0.3240718447536957,0.3255132731790244,0.3266317348217337,0.3300078678206137,0.3332981307424226,0.3367593952140958,0.3374744027303754,0.3402401445117415,0.3421981346105369,0.3432300412150816,0.3456312511794678,0.3492805755395683,0.3540382244143033,0.3637482058642608,0.3676222596964587,0.3713178294573643,0.0,2.2329202111681217,52.15159348770874,176.4914624193757,262.9775097892679,fqhc6_80Compliance_implementation_low_initial_treat_cost,33 -100000,95800,44715,423.23590814196245,5926,60.65762004175365,4655,48.03757828810021,1873,19.248434237995824,77.34149214859087,79.68010373149355,63.33904717832892,65.07209766236502,77.1104913541802,79.44852541467658,63.25387728954768,64.98845255059034,0.2310007944106757,231.5783168169645,0.0851698887812375,83.64511177468614,166.97274,117.04593870045623,174292.58872651358,122176.98853293566,360.58368,233.40238960467155,375867.70354906056,243111.96028221,368.09927,178.63508000908286,380162.5469728601,183358.995246234,3056.23182,1403.4944127076585,3157908.2672233824,1432857.0520761472,1108.7861,493.5080664931434,1142388.6221294363,500332.06057817646,1828.05196,767.2867368829261,1880885.5323590816,778373.0118418628,0.3803,100000,0,758967,7922.390396659708,0,0.0,0,0.0,30712,320.0208768267224,0,0.0,33603,346.71189979123176,1572626,0,56422,0,0,6734,0,0,70,0.7306889352818372,0,0.0,2,0.0208768267223382,0,0.0,0.05926,0.1558243491980016,0.3160647991900101,0.01873,0.3309108527131782,0.6690891472868217,24.725420401514285,4.397285410147924,0.3074113856068743,0.236734693877551,0.2354457572502685,0.2204081632653061,11.244548480359724,5.82583428318489,20.049399134117103,12302.297085026335,52.94703425584344,13.191120305398876,16.27870919622946,12.20189906970825,11.275305684506858,0.5705692803437165,0.7921960072595281,0.7092941998602376,0.5757299270072993,0.1335282651072124,0.7468652037617555,0.9225181598062954,0.8793565683646113,0.7381818181818182,0.1906976744186046,0.5039952648712637,0.714078374455733,0.6493383742911153,0.5213154689403167,0.1183723797780517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0045821801851119,0.0067481861078695,0.0087692557818152,0.0112835122348272,0.0136190932149005,0.0158799771540469,0.0180743191495879,0.0201445911261542,0.0220972977400956,0.0243927447220826,0.0264319894847097,0.0285840653350064,0.0304207186418328,0.0325230096165751,0.0347190639599785,0.0366132723112128,0.0388792647379176,0.0407423186026454,0.042702033083145,0.0579158232998768,0.0722575383714608,0.0862804271059277,0.0990133341739432,0.1108781099507887,0.1266672303367224,0.1395166419334322,0.1508474936730397,0.1623357913496323,0.1724732888236365,0.1844393740448156,0.1969601971763993,0.2083799550259089,0.2184412973161989,0.2286235748133651,0.2391701446932878,0.2485900265275641,0.2572897836363024,0.2658679379890609,0.2742011090150346,0.2816403814625811,0.2885428097784211,0.2943269117125635,0.300221411046616,0.3064521998617125,0.3099926162933792,0.31480301383214,0.3196378918500273,0.324421759917302,0.3282000658111221,0.3269698721482059,0.3255823535875178,0.3238290925467237,0.3225787816643078,0.3219910846953938,0.320822299438228,0.3191283829793973,0.3197792813505879,0.3198167396061269,0.3203982411611196,0.3201321370922332,0.3205592854455073,0.321414323807924,0.3235755592414937,0.325177946676318,0.3271072045204834,0.3278109567015045,0.3298540609137055,0.3321891145870196,0.3349179083609635,0.3373555013125777,0.3384079335298847,0.3430243654176474,0.3465010415862973,0.3484330484330484,0.3506028411125701,0.3560770904569474,0.3595621643948781,0.3611890072910824,0.3668206312548114,0.0,2.147725564146133,55.82690647170059,174.9259657966322,251.09601619555335,fqhc6_80Compliance_implementation_low_initial_treat_cost,34 -100000,95707,44699,423.1874366556261,6070,62.22115414755452,4766,49.264944047979775,1874,19.2148954621919,77.3419109081298,79.71097231958072,63.33255108723839,65.08083832708597,77.10523425210002,79.47505089077099,63.24498524590399,64.9958617627899,0.2366766560297861,235.921428809732,0.0875658413343956,84.97656429607048,166.03598,116.30473908832305,173483.63233619276,121521.66412939812,359.79782,232.7346616131979,375409.4371362596,242646.777783441,367.86728,177.57350141510412,380848.7049014179,182807.9029191502,3122.85339,1440.1585380159545,3228304.1365835317,1470382.37942094,1145.48502,509.990180518324,1182748.5554870595,518777.9106492267,1839.7856,774.7243656729335,1888013.583123492,780747.629061759,0.38171,100000,0,754709,7885.619651645125,0,0.0,0,0.0,30602,319.2034020500068,0,0.0,33654,348.17724931300745,1576860,0,56655,0,0,6679,0,0,75,0.7731931833617186,0,0.0,1,0.0104485565319151,0,0.0,0.0607,0.159021246496031,0.3087314662273476,0.01874,0.3468071720666876,0.6531928279333123,24.569372663974395,4.223175414577767,0.3252203105329416,0.2396139320184641,0.2108686529584557,0.2242971044901384,11.17573826652597,5.857681207895932,19.96978831197143,12309.089088631732,54.363309307510335,13.89967813971789,17.45883221930027,11.186616395965746,11.818182552526412,0.5704993705413345,0.8029772329246935,0.6980645161290323,0.591044776119403,0.117867165575304,0.7433962264150943,0.9123595505617976,0.89,0.7551867219917012,0.1715481171548117,0.5039232781168265,0.733142037302726,0.6313043478260869,0.5392670157068062,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021164128321451,0.0044289044289044,0.0068573747210387,0.0090395709758673,0.011215276365559,0.0133175857294127,0.0153929274085853,0.0176267657385482,0.0195829926410466,0.0219024420199373,0.0240186982952157,0.0261633876863679,0.0281974023837191,0.0304235393507309,0.032587608866141,0.0345886268956035,0.0368479375304218,0.038989207139892,0.0409149987002859,0.0430700291788245,0.0576814621409921,0.0713769822578112,0.0852727005644975,0.0976438413800357,0.1099378685429171,0.1254047190773463,0.138026883944959,0.1493771957840945,0.1609901497831243,0.1715333948379068,0.1847152965503871,0.1971497208154785,0.2082096126863967,0.2182736676361887,0.2282415044539756,0.2386481879164914,0.249021422756521,0.2575459501995391,0.2666689353206742,0.274367983153847,0.2814043611544913,0.2885375956565491,0.2947992614335764,0.3001545891404125,0.3054121363056551,0.3110990555569255,0.3148723473554982,0.3191529974676457,0.3236432853794657,0.3278727414104406,0.3271865830349691,0.3264111268399279,0.325714767647803,0.3252105202445495,0.324187233032748,0.3218434729440538,0.3194760460118822,0.3199029205818205,0.3216414214723612,0.3224279872136007,0.3235112185795422,0.3242019067209937,0.325748829789467,0.3263573013063255,0.3270904138645841,0.3282950896702952,0.3300962554625689,0.3324721154452076,0.3359050236031847,0.3369916590174402,0.3415246882565203,0.3458706786171575,0.3505500063219117,0.3532159264931087,0.3510668563300142,0.3594497607655502,0.3630769230769231,0.3651119786316005,0.3627698345948977,0.3627262225644975,0.0,2.028660909300697,58.50340378629794,179.43246718839887,253.61989832249472,fqhc6_80Compliance_implementation_low_initial_treat_cost,35 -100000,95708,44862,424.4890709240607,6188,63.47431771638735,4875,50.351067831320265,1929,19.79980774856856,77.33810060160408,79.72077954497801,63.31256206328344,65.07479966313427,77.09414411264933,79.47589074903036,63.22230267421025,64.98641347983865,0.2439564889547512,244.88879594765933,0.0902593890731893,88.38618329562564,167.86352,117.55967881243268,175391.31525055377,122831.61158151114,364.44993,236.2005896347468,380181.16562878754,246180.51744341827,374.37287,181.5372476186499,387315.84611526725,186720.3983203901,3203.7853,1466.813724405285,3313612.0909432857,1498746.4834760772,1180.39937,523.4437728506932,1220397.9395661803,533992.6376524265,1898.62144,798.4586473862514,1951422.263551636,807668.7792977947,0.3819,100000,0,763016,7972.332511388808,0,0.0,0,0.0,31050,323.7869352614202,0,0.0,34255,353.99339658126803,1560807,0,56097,0,0,6608,0,0,70,0.7313913152505538,0,0.0,0,0.0,0,0.0,0.06188,0.1620319455354805,0.311732385261797,0.01929,0.3330770413655236,0.6669229586344764,24.45877354944976,4.359307587178214,0.3093333333333333,0.2383589743589743,0.226051282051282,0.2262564102564102,11.225237060283169,5.768259828123806,20.554296843281247,12303.37336579558,55.31260995174303,13.837871621858705,17.12773457490284,12.18380176601142,12.163201988970048,0.5671794871794872,0.7891566265060241,0.7181697612732095,0.5680580762250453,0.1260199456029011,0.7393658159319412,0.9301204819277108,0.9177718832891246,0.71875,0.1632653061224489,0.5050251256281407,0.7108433734939759,0.6516357206012379,0.5224586288416075,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024730899434432,0.0049807263136538,0.0069851970678416,0.0091977153078439,0.0116400932021448,0.0137911365974393,0.0158701017889562,0.0180477391810595,0.0200848800940839,0.0222904827727435,0.0243644828187327,0.0265846570897553,0.0285837668880709,0.0307804792651405,0.033021446919133,0.035011574074074,0.0369522902344073,0.0391849692392285,0.0411377600349312,0.0433555215267143,0.0582516160698434,0.0727849426346202,0.0863552421724166,0.0996403104688584,0.1117098686014384,0.1277820089701278,0.1406758979256194,0.1521572469014864,0.1625543646680416,0.1731980218200542,0.1855842266874966,0.1981378227683646,0.2093575145326685,0.2189815372155888,0.2288928516390375,0.238894985976698,0.248302055406613,0.2574358858892666,0.2655263277452183,0.2734453820049528,0.2802738107647938,0.2875862149724229,0.294616523541605,0.3000659432887717,0.3045824723471496,0.3089322521321632,0.3136539690896101,0.3184037115872388,0.3233784414372375,0.3277537226739888,0.3262470548636823,0.325469360788416,0.3238894915540778,0.3225680596497312,0.3214344097846602,0.3194231594433887,0.3171932379384576,0.31791252974481,0.3182532900358913,0.3189148643580448,0.3196228042218931,0.3203985213592425,0.3220442058465797,0.3235788388715857,0.3258045894068408,0.3267542720614969,0.3261023879156137,0.3286081665934893,0.3307920965203706,0.3339123568890643,0.338626725615808,0.3390517286744198,0.3428429051949669,0.3484837083301979,0.3531653806823464,0.3565380997177799,0.3580358487724054,0.36016779864163,0.3583987016499865,0.3619909502262443,0.0,2.235234225210704,56.7151441364553,185.2088870903413,266.0445833395244,fqhc6_80Compliance_implementation_low_initial_treat_cost,36 -100000,95648,44584,423.30210772833726,6052,62.1236199397792,4748,49.03395784543326,1857,18.975828036132487,77.27782633283482,79.68909024697201,63.2892740309558,65.07239619005455,77.05524419878175,79.46898271216156,63.2058183284306,64.99290554349263,0.22258213405307,220.1075348104524,0.0834557025251996,79.49064656192206,166.45222,116.60234283517232,174025.82385413183,121907.76893941568,359.93859,233.049413869122,375716.92037470726,243054.2655038495,362.83313,175.7985859278698,375819.1493810639,181074.61226007243,3091.72506,1405.0900623147677,3196273.471478755,1432896.299258499,1112.94085,492.1047995749318,1149151.3361492138,500067.1415763341,1816.9016,755.2537910772969,1859539.4362663096,755619.9472024149,0.37884,100000,0,756601,7910.264720642355,0,0.0,0,0.0,30750,320.874456339913,0,0.0,33221,343.7186349949816,1571754,0,56393,0,0,6438,0,0,51,0.5332050853128136,0,0.0,0,0.0,0,0.0,0.06052,0.1597508182874036,0.3068407138136153,0.01857,0.3340700978844332,0.6659299021155668,24.54155316251888,4.324810277482903,0.3245577085088458,0.2411541701769166,0.2108256107834877,0.2234625105307497,11.167590830949994,5.86306421226396,19.60129682435072,12184.916969378524,53.570016520714056,13.611359123665231,17.426639294793016,10.952269651712912,11.579748450542892,0.5621314237573716,0.7816593886462883,0.7073329007138222,0.5584415584415584,0.117813383600377,0.7417802726543705,0.93,0.8746987951807229,0.7227272727272728,0.1462264150943396,0.4981433876035418,0.702013422818792,0.6456483126110124,0.5121638924455826,0.110718492343934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024116896013618,0.004391124452377,0.0066797961545489,0.008841732979664,0.0109873340454753,0.013131488065525,0.0151555328913819,0.0173940576261145,0.0195883881262658,0.0216961514428248,0.0240307692307692,0.0261619844897539,0.0280807540335857,0.030033496521515,0.0320469140391087,0.033987360756286,0.0360506927245785,0.0381492326542479,0.0398759599575433,0.0419686147750378,0.0570150688653416,0.0708817276373804,0.0840672201870493,0.0968607600265199,0.1087940732610783,0.124642713472084,0.1364181862594122,0.1475163551899759,0.1591011187883714,0.1694778771513544,0.1813332471227208,0.1936853046905453,0.2051418806395785,0.2158521371823772,0.2261448701012769,0.2362927175213864,0.2458547805406371,0.254304233340085,0.2635933403697524,0.2706096472150363,0.2769606142602743,0.2844318726403516,0.2909757539917209,0.2969659932417859,0.3023309485345026,0.3080915804657929,0.3135374677649533,0.319050103719918,0.3232717281422536,0.3273936802090758,0.3269560058784667,0.3250779116908905,0.324185054988494,0.3235617707519036,0.3222429071412614,0.3199772880731692,0.3173623234407237,0.3176228496172524,0.318458904109589,0.3179899101935668,0.31852879944483,0.3202905434825634,0.3215109210581478,0.3224011974710127,0.3237612342000288,0.3245064120906277,0.327003678042939,0.3287183045288255,0.3318721719457013,0.3345729366602687,0.336995833905599,0.3380498962710782,0.3405596168389211,0.3411539931218953,0.3464003015454203,0.3482569245463228,0.3577699060526721,0.3578774167009461,0.354108440469536,0.3571703191080354,0.0,2.408415844611625,54.35353030208184,175.95651728381148,263.88007717273695,fqhc6_80Compliance_implementation_low_initial_treat_cost,37 -100000,95835,44684,423.7178483852455,5989,61.585015912766735,4659,48.207857254656446,1845,18.970104867741437,77.39792083527668,79.70311818770485,63.37134666233783,65.07225523168411,77.16933226785272,79.47300610612501,63.28748580843018,64.9896368450739,0.2285885674239551,230.1120815798328,0.0838608539076446,82.61838661020704,167.23608,117.08808397162484,174504.1790577555,122176.7454182969,360.30448,233.1459970144857,375567.9970783117,242883.1919596032,361.99317,174.79574171420478,375578.3168988365,180688.4473578961,3054.88281,1385.416300820203,3161544.4461835446,1419522.7326344268,1108.74549,485.100687338196,1146036.2185005478,495287.7417834775,1802.8883,751.97695225674,1854517.4518704023,761972.6906356036,0.38038,100000,0,760164,7932.008138988887,0,0.0,0,0.0,30661,319.5074868263161,0,0.0,33074,342.901862576303,1574248,0,56445,0,0,6579,0,0,63,0.657379871654406,0,0.0,1,0.0104346011373715,0,0.0,0.05989,0.1574478153425521,0.3080647854399733,0.01845,0.3279210442534225,0.6720789557465775,24.521350682057587,4.34329333468598,0.3213135866065679,0.2354582528439579,0.2223653144451599,0.2208628461043142,10.9876814689655,5.578720212485646,19.71506702612984,12251.647821698793,52.84927292569686,13.192962974571795,16.981040828774564,11.507692978819826,11.167576143530676,0.549903412749517,0.7839562443026435,0.6599866399465598,0.5694980694980695,0.1205053449951409,0.7194928684627575,0.8954869358669834,0.8230958230958231,0.7090163934426229,0.1210526315789473,0.4869002060641743,0.7144970414201184,0.5990825688073395,0.5265151515151515,0.1203814064362336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0047928340544538,0.0070287539936102,0.0088949361818791,0.0107453643461288,0.0129856913150556,0.0149273501660858,0.0169344554960469,0.0190448944561374,0.0211577418100714,0.0233797102637132,0.0253093132527648,0.0273491277457003,0.0295134601136082,0.0315392385232215,0.0334210933870218,0.0355354630472564,0.0373533435595539,0.0396041660176733,0.0417533927233369,0.0565575224008261,0.0707532369736649,0.084070796460177,0.0969217182867596,0.1094621230487072,0.1244661507886168,0.1369072864534735,0.1491639792671115,0.1606845276246635,0.1719415278686414,0.1846032908339076,0.1978218078778308,0.2090879443417762,0.2191018605566365,0.2288755236451198,0.2393415036478572,0.2474884317332887,0.2564526282656594,0.2656200408070732,0.2727979867307252,0.2805417836794601,0.2873277271665498,0.2932609903424471,0.2989508188876527,0.3041834310921518,0.3103206609944425,0.314836083992909,0.3197522402457289,0.3241685086800843,0.328442081436054,0.3275364652523382,0.326252417065511,0.324639024664307,0.3228227363083749,0.3215582260287166,0.3193109341145595,0.3181875552189827,0.3183730256158442,0.3191373284459978,0.3204879005652941,0.3204032393813006,0.3212911627172819,0.3220278696070636,0.323374065619265,0.3239409483900489,0.3261187024095129,0.3268515870746354,0.3303534763243516,0.3347985090372037,0.3361007388575514,0.3389582475876892,0.3413266396069216,0.346594868546088,0.3487340319742982,0.3497443665972353,0.3589347283319463,0.3602884762927728,0.3605827600161878,0.3569482288828338,0.3560864618885097,0.0,1.5328692182522514,56.16933957190184,170.7624168964367,256.9824248916032,fqhc6_80Compliance_implementation_low_initial_treat_cost,38 -100000,95555,44374,420.448956098582,6028,61.828266443409554,4752,49.16540212443096,1860,19.15127413531474,77.19945181010942,79.67135719370981,63.224607941291474,65.05414690885073,76.97503340243057,79.44664820158035,63.142325170874,64.97392975974282,0.2244184076788542,224.7089921294645,0.0822827704174713,80.21714910790934,165.59246,115.93735885120012,173295.4424153629,121330.49955648591,359.84017,232.86319682892545,376023.1489717963,243139.4974924656,365.01875,176.28248184310073,378285.9609648893,181621.7974995567,3097.37729,1411.1989130684626,3208611.134948459,1443995.5973716325,1121.5311,493.2219198493385,1161910.9832033908,504385.2657517317,1816.6776,747.961016505656,1872441.5886138876,758606.2773131283,0.3782,100000,0,752693,7877.065564334675,0,0.0,0,0.0,30641,320.0774423107111,0,0.0,33415,346.07294228454816,1572714,0,56411,0,0,6550,0,0,72,0.7325623986185966,0,0.0,0,0.0,0,0.0,0.06028,0.1593865679534638,0.3085600530856005,0.0186,0.335915270312994,0.664084729687006,24.64902522012441,4.328253004787188,0.3181818181818182,0.2369528619528619,0.2283249158249158,0.216540404040404,11.310791648511378,5.847853326455748,19.59600267354877,12225.17181024279,53.896964539057606,13.40050270519782,17.17642887533686,12.068059233646508,11.251973724876429,0.57260101010101,0.7770870337477798,0.7182539682539683,0.5898617511520737,0.1166180758017492,0.7621359223300971,0.9328358208955224,0.9154228855721394,0.7142857142857143,0.1691542288557214,0.5059726962457338,0.6906077348066298,0.6468468468468469,0.5562060889929742,0.1038647342995169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022402205755643,0.0048903228424747,0.0069766024859858,0.0092423133235724,0.0114427658101559,0.0137005851291565,0.0158085421237944,0.0179542203147353,0.0201698731068358,0.0224331054837618,0.0244105238305429,0.0264773323187973,0.0286917745440314,0.0306578227994347,0.0328007771324638,0.0348739713265358,0.0366621379160141,0.038610640531299,0.0408533155559259,0.0429698918444899,0.0580340798543917,0.071680979793849,0.0844379040311136,0.097145686921156,0.1097148534105561,0.1253286404885082,0.1379365366408884,0.1491927308426972,0.160501762166447,0.1707707858402511,0.1837453159253139,0.1960848145495583,0.2082942472567028,0.2186602031191734,0.2278696122354395,0.2381602914389799,0.2472895711424639,0.2565329241323283,0.2640921193364131,0.2721655641308342,0.2793988031729832,0.2861146287697575,0.2921983965083732,0.2980882388260441,0.3030683063436016,0.3080020752526126,0.3136696245905137,0.3182733996429482,0.3223164098503239,0.3256530652734608,0.3241630669546436,0.3227838504693509,0.3212522916372867,0.3197655910866734,0.3197176596726877,0.3182655410590944,0.315807843634979,0.3165398926536929,0.3181389446245133,0.3200193614313117,0.3201588466677959,0.3203160674224225,0.3214067342764975,0.3212215181340164,0.3223918144215186,0.3226254785755493,0.3254514187446259,0.3278631615489001,0.3312643272791394,0.3351203240409816,0.3372024484243935,0.3374920702051173,0.3391560230403205,0.3398906273735379,0.3433853048268135,0.3481393975191967,0.3472936195947989,0.3420059582919563,0.3460601137286759,0.353811149032992,0.0,2.147169561164094,54.24676060647205,178.76881710924272,266.31814205556265,fqhc6_80Compliance_implementation_low_initial_treat_cost,39 -100000,95687,44479,421.593319886714,6091,62.495427801059705,4746,49.0766770825713,1890,19.36522202598054,77.33990302576841,79.73063546681121,63.32261558699434,65.0889676184877,77.10343349354274,79.49464425957486,63.23479720521372,65.0038490990317,0.2364695322256693,235.9912072363528,0.0878183817806217,85.11851945600313,166.04698,116.3583236767573,173531.38879889643,121603.06381928296,356.98926,230.89994640272303,372557.7664677542,240785.0976650152,364.50897,176.18714331800484,377638.0699572564,181632.24753487116,3102.47188,1411.471376940061,3212071.8383897496,1444851.105103159,1115.90526,489.1221436475975,1154851.202357687,499824.7825453874,1848.53264,776.3040031139674,1897710.2009677384,783437.3145141653,0.37927,100000,0,754759,7887.790399949837,0,0.0,0,0.0,30509,318.3086521680061,0,0.0,33325,345.06254768150325,1577775,0,56537,0,0,6558,0,0,49,0.4911848004431114,0,0.0,0,0.0,0,0.0,0.06091,0.1605979908772115,0.3102938762108028,0.0189,0.3245983465917954,0.6754016534082047,24.57192464018621,4.330624447508171,0.3314369995785925,0.2355667930889169,0.2161820480404551,0.2168141592920354,11.06690496081404,5.749048517066597,20.25026721868388,12245.09704151467,53.58040640829834,13.3940484062307,17.508178830690174,11.422568932707316,11.255610238670132,0.5655288664138222,0.7978533094812165,0.7018436109345201,0.557504873294347,0.1127308066083576,0.7339667458432304,0.9317647058823528,0.8556701030927835,0.6818181818181818,0.1634615384615384,0.5044501866207293,0.7157287157287158,0.6514767932489451,0.5191326530612245,0.099878197320341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0046221681617758,0.0068289515073413,0.0087860073944663,0.0111853411020611,0.0134876524359209,0.0157887226322012,0.0178002776190087,0.0199646299949909,0.0220579956395795,0.0241226946064812,0.0264330294818099,0.0282993644982827,0.030262453133369,0.0326346100256989,0.0343986186788531,0.0362607875843063,0.0382287914802628,0.0404972433163424,0.0423750899102461,0.05724552899883,0.0714525010992692,0.0852034874571149,0.0975119667560885,0.1097196872988912,0.1244485352461357,0.1373749376677665,0.1491341046738123,0.1606660329598735,0.1707944676744934,0.1834657879433998,0.1964511766296997,0.2065703193814634,0.2176365763264056,0.2271341631175234,0.238460175423053,0.2474844380982128,0.2565556343019135,0.264418931796524,0.2724128452975399,0.280064773581632,0.2870637750628397,0.2938511403425759,0.2993412384716732,0.3057079731960765,0.3113029769309406,0.3160047532678716,0.3206973727714337,0.3240446993926994,0.3273679903921025,0.3255926724137931,0.3244147157190635,0.3224992600318538,0.3213464292430313,0.3198078267465901,0.3167516420926921,0.3151190024053678,0.3154844958059062,0.3173019527585913,0.3191974626706104,0.3198301025372352,0.3215082420294147,0.3218273050386787,0.3228006619258464,0.3240720694715066,0.3268093091136535,0.328241664291821,0.3303436555891239,0.3343177583236649,0.3359074888123242,0.3385272339072366,0.3397908815880261,0.3408590654675806,0.3447934890088994,0.3472391487766007,0.3481349911190053,0.351093316907915,0.3578753076292043,0.3564633463905988,0.3506594259115593,0.0,2.025212631580426,55.58461662611649,175.36864893169383,261.19711172021,fqhc6_80Compliance_implementation_low_initial_treat_cost,40 -100000,95782,44678,423.3989684909482,6172,63.22691111064709,4822,49.73794658704141,1901,19.460859034056504,77.331780499572,79.67251110125859,63.32970022966426,65.06261023042752,77.09851615081031,79.44237849204319,63.24199813900837,64.97898041472732,0.2332643487616934,230.1326092154028,0.0877020906558883,83.62981570020622,166.94084,116.98433593687304,174292.49754651188,122136.03384443116,361.34113,233.9216349008442,376675.6697500574,243644.93840266883,372.77031,181.0152275010345,385399.74107869953,186045.15497551693,3151.6679,1443.8994741133038,3253819.3084295588,1470845.027367673,1136.48926,505.5733463435883,1174299.4821573992,515599.6078006184,1853.59384,777.2174427606368,1899872.042763776,780704.283038104,0.38046,100000,0,758822,7922.386252114176,0,0.0,0,0.0,30793,320.87448581153035,0,0.0,34079,352.0076841160135,1569760,0,56334,0,0,6630,0,0,66,0.6890647512058633,0,0.0,0,0.0,0,0.0,0.06172,0.1622246753929453,0.3080038885288399,0.01901,0.3417721518987341,0.6582278481012658,24.62078315494046,4.305993656628859,0.3145997511406055,0.2507258399004562,0.2140190792202405,0.2206553297386976,11.139873524988944,5.863718897299108,20.1809121601546,12284.07855301223,54.50210946276151,14.442728232444871,17.106816834075108,11.499696107859643,11.45286828838188,0.568021567814185,0.7791563275434243,0.6882003955174687,0.6027131782945736,0.1231203007518797,0.753393665158371,0.9279475982532752,0.8666666666666667,0.7420634920634921,0.1706161137440758,0.4977116704805492,0.6884154460719041,0.6232014388489209,0.5576923076923077,0.1113716295427901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025525449480881,0.0046125461254612,0.0068901133469309,0.0090109309602178,0.0114518179506737,0.01374759417102,0.0158642768295915,0.0180693372534607,0.0200977285273251,0.02205046834212,0.0240086931561897,0.0260282974310532,0.028327883686018,0.0303155162290505,0.0323353046206562,0.0343437267388967,0.0364148559355386,0.0382828219968054,0.0402273766471297,0.0421929504868016,0.0568327680667884,0.0713000543955814,0.0847372338529599,0.0976775956284153,0.1094298268722142,0.1246446649547179,0.1374756211311795,0.1496203662349263,0.1607415392168372,0.1712755129372689,0.1840688912809472,0.1961036713324535,0.2075235723374406,0.2178944490019141,0.2276654523041703,0.2378694028610369,0.2473775833593715,0.2560494077148932,0.2644753706035138,0.27267522414721,0.2792792792792792,0.2862737762605656,0.293069986509195,0.2983494947799925,0.3043483543319523,0.3097252367797948,0.3145784535992084,0.3193260174103672,0.3242959390073129,0.3285167084929336,0.3274747474747475,0.3269074759030346,0.3259605502132991,0.3256852879944483,0.323984066113737,0.3226488848011037,0.3205363936089272,0.3205850932697838,0.3221864731653888,0.3224752210018751,0.322768192048012,0.3240925527080163,0.3250776593065234,0.3257662256251819,0.3263470165452704,0.327944633063463,0.3295869465997261,0.3337417145729274,0.337091240109236,0.3384389508352843,0.3435803876852907,0.3483403484469071,0.3512294300781498,0.3538119343457585,0.3599433160132262,0.3641019533111005,0.3729153798641136,0.3737598704191132,0.3747240618101545,0.3769140164899882,0.0,2.415306854059777,57.82369461265204,173.60713105367557,264.9994944295097,fqhc6_80Compliance_implementation_low_initial_treat_cost,41 -100000,95696,44558,422.5359471660258,5883,60.32645042635011,4626,47.84943989299448,1831,18.799113860558435,77.34192318165195,79.71888544105964,63.32298576779221,65.07575267809588,77.1114620202666,79.48885749263731,63.23738952814064,64.99277165721008,0.2304611613853495,230.02794842233243,0.0855962396515721,82.9810208857964,167.14148,117.02323689767988,174658.79451596722,122286.44551253958,358.26806,232.4252433763022,373883.4747533857,242380.78224408775,363.51206,176.26745007508262,377224.6384383882,182061.60523930623,3054.83123,1400.0353559266266,3161064.51680321,1431842.946336971,1095.29213,484.5169766189365,1129245.600652065,491029.1922246563,1798.70102,756.2921731208849,1848089.658919913,761142.4805430456,0.37846,100000,0,759734,7939.036114362147,0,0.0,0,0.0,30600,319.2400936298278,0,0.0,33301,345.36448754388897,1569287,0,56283,0,0,6639,0,0,60,0.6269854539374686,0,0.0,1,0.0104497575656244,0,0.0,0.05883,0.1554457538445278,0.3112357640659527,0.01831,0.3335494327390599,0.66645056726094,24.35558964445329,4.395941725427084,0.3264159100734976,0.2315175097276264,0.2114137483787289,0.230652831820147,11.281964097343131,5.852166341771337,19.302708653793427,12161.9052327191,52.211653859362976,12.958695527593315,16.905871558468476,10.752722634358182,11.594364138943016,0.5559878945092953,0.8104575163398693,0.6920529801324503,0.5603271983640081,0.1040299906279287,0.7380015735641228,0.9515738498789348,0.8581907090464548,0.771689497716895,0.108695652173913,0.4870342771982116,0.7218844984802432,0.6303360581289736,0.4993412384716733,0.1027479091995221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023693083442179,0.0045002584607899,0.0066648406829179,0.0086639445832571,0.0109322404482727,0.0131335138767282,0.0154762147503211,0.0177774601002726,0.0197963106875536,0.0218706803870373,0.0237570363686698,0.0257747838409562,0.027677781663341,0.0297769306063572,0.0318748129109507,0.0339899694948554,0.0358914865186811,0.0380415602748541,0.0401310316139767,0.0422128670570827,0.0565832767535384,0.0702483665605629,0.0837374309885173,0.0965854685116009,0.1092599236077405,0.1241626718308517,0.1363945217114343,0.1481086954206035,0.1593479422768573,0.17020911159775,0.182820974542004,0.1950696445205034,0.206512154497654,0.215857102204321,0.2252251260485699,0.235260877754756,0.2450822783396967,0.2541962647333641,0.2620025411807414,0.2701718213058419,0.2775855484707162,0.2835379052923487,0.2902198491718659,0.2963629168615318,0.3021644811200369,0.3070256543018109,0.311988077048318,0.3166997556505803,0.3217618998237063,0.3261472616311326,0.3243848478307792,0.3233870634143651,0.3223854065264316,0.3213289996388588,0.320561884419129,0.3188100042805601,0.3170804950135133,0.3172260976610587,0.3189010012643953,0.3198380566801619,0.3212486657553229,0.3214716645237859,0.3210939955988682,0.321819524971458,0.3236912284073709,0.3236556622180598,0.3239304584966763,0.3264999059620087,0.3283149364258768,0.3319503714240556,0.3336650232936813,0.3366640232619614,0.3400730662635424,0.344299403908549,0.3481660770806181,0.3502976537877904,0.3521465025517862,0.3549860945570123,0.3597710547833197,0.3623459096002988,0.0,1.8573357928383696,55.91055517934803,165.63343279892388,254.6965146303226,fqhc6_80Compliance_implementation_low_initial_treat_cost,42 -100000,95749,44578,421.4665427315168,6013,61.7029942871466,4741,49.04489864123907,1903,19.59289392056314,77.32392886815877,79.68768146578597,63.31606620966248,65.0650739079438,77.08713065685862,79.45004740135505,63.22838604706892,64.97918681891915,0.2367982113001545,237.63406443092092,0.0876801625935641,85.88708902465214,165.75328,116.14669237063472,173112.28315700425,121303.2954606677,356.52743,230.91895168672772,371902.578617009,240717.41917589508,365.95019,176.5478469264467,379350.1968688968,182164.09490502696,3117.24841,1414.4914154490602,3227644.1947174384,1449289.3350834586,1104.38882,484.6393119433981,1141640.2468955289,494375.5150898682,1860.06056,779.9780945704545,1916547.1179855664,792548.6395372787,0.37948,100000,0,753424,7868.740143500194,0,0.0,0,0.0,30322,316.2017357883633,0,0.0,33426,346.1968271209099,1577790,0,56654,0,0,6842,0,0,69,0.720634158059092,0,0.0,0,0.0,0,0.0,0.06013,0.158453673447876,0.3164809579244969,0.01903,0.332382762991128,0.667617237008872,24.55517498663304,4.337481516685529,0.3267243197637629,0.2381354144695212,0.2136680025311115,0.2214722632356043,11.092745139584714,5.778277775817225,20.28525502793159,12314.005836206585,53.54566549129226,13.433906635482114,17.33800410076788,11.18167752375825,11.592077231284026,0.5532588061590382,0.770593445527015,0.6817301484828922,0.5695952615992103,0.1142857142857142,0.7135882831570383,0.9135802469135802,0.8403141361256544,0.7090909090909091,0.1351351351351351,0.4971526195899772,0.6906077348066298,0.6298200514138818,0.5308953341740227,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020966908748366,0.0042989384460959,0.0069620638561308,0.0095612591192668,0.0120437807706392,0.0142057026476578,0.0163835817547866,0.0188124572560147,0.0207649602797288,0.0230265178662844,0.0248626148293963,0.0269926178424386,0.0291668380145577,0.0310765015502199,0.0330832653987844,0.0350830042794236,0.0372990553529996,0.0390874745713455,0.0411276569194293,0.0433197199533255,0.0582978367994654,0.0719367258118513,0.0851570282598437,0.0981113821822158,0.1108603726629477,0.1265470624325639,0.1391857047357307,0.1503961155123946,0.1610049993590565,0.17160746641507,0.1852816742203227,0.1972856061425327,0.2075229657009295,0.2190359575375264,0.228987738494529,0.2389884181854419,0.2481812095514394,0.2575980916159377,0.2663699936427209,0.2737539699829162,0.2813408882863466,0.2884556807797745,0.2951538716866613,0.3004404123315453,0.3063531072071633,0.3107629679886511,0.3155678642589506,0.3193015994392404,0.3237827180990428,0.3268239151704259,0.3265886986901919,0.3257993384785005,0.3242636785729406,0.3228595010208366,0.321692161180882,0.3200073522654167,0.3195435770015984,0.3192309585130989,0.3193016024874432,0.3202355460385439,0.3210112359550562,0.3212986396709902,0.3216709963965474,0.3227025697224521,0.3241741055316282,0.3264406779661017,0.3286946128233586,0.3324194869855675,0.3368588048651507,0.3405194701881389,0.3412731006160164,0.343406447501195,0.3453939088849735,0.3473299863076221,0.3494146525679758,0.3525068476836965,0.3509651922784618,0.3528129952456418,0.3526750066542454,0.3615413675859463,0.0,1.8684629040470944,54.10506973149379,178.1890276119182,264.07852793261367,fqhc6_80Compliance_implementation_low_initial_treat_cost,43 -100000,95796,44924,423.9112280262224,5954,60.994195999832975,4647,47.94563447325567,1814,18.53939621696104,77.4066300966336,79.74435398932631,63.35719594835807,65.08731016099381,77.17757632455717,79.51837235094352,63.27186152041029,65.00570124878107,0.2290537720764405,225.98163838279103,0.0853344279477781,81.60891221274369,166.9745,117.00831555516656,174302.16292955866,122143.21637142108,361.00919,234.05326245095,376312.0172032235,243784.63866022584,367.78809,178.10963126704652,380487.3272370454,183273.34818636943,3059.50359,1404.0577320425534,3160700.1231784206,1432605.1526603966,1110.54037,495.4059558554148,1148288.3523320388,506158.8123255817,1776.94396,747.3484927858888,1819280.387490083,749062.611762472,0.38164,100000,0,758975,7922.825587707211,0,0.0,0,0.0,30706,319.97160633011816,0,0.0,33597,347.2483193452754,1571007,0,56383,0,0,6567,0,0,67,0.6994028978245438,0,0.0,0,0.0,0,0.0,0.05954,0.1560109003249135,0.3046691299966409,0.01814,0.32928,0.67072,24.73777503261847,4.259713810746112,0.3277383258015924,0.2309016569829997,0.2188508715300193,0.2225091456853884,10.960562407431157,5.669900801740436,19.220868773712912,12293.407753036772,52.74270993246453,12.870021044695063,17.192019409003105,11.307848624919195,11.37282085384716,0.5644501829137077,0.777260018639329,0.7038739330269206,0.5899705014749262,0.1131528046421663,0.7271255060728745,0.8963730569948186,0.8737373737373737,0.7352941176470589,0.1441860465116279,0.5055685814771395,0.710334788937409,0.6441881100266194,0.5455712451861361,0.105006105006105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021581859079579,0.0045527367118898,0.0067992003328563,0.0091442040986354,0.0111878438990653,0.0132991181442333,0.0152831304418751,0.0176899913234318,0.0201561797293429,0.0222481476933153,0.0244224895976387,0.0266174131650505,0.0289628662754247,0.0312339146369083,0.0333474213732746,0.0355627149096992,0.0376979816475797,0.0399829991914249,0.0420021401040963,0.0441413773359013,0.0588161642720756,0.0727230896332472,0.0859667326981731,0.0986285534128527,0.1107294871254583,0.1264990860198011,0.1390552299392693,0.1504135921917196,0.1607823053039275,0.170758354755784,0.1837665691168876,0.196323728172136,0.2082441288022865,0.218916882351014,0.227803045283765,0.2382385483514051,0.2481403414857194,0.2571499235542764,0.265324638502977,0.27370228352315,0.2808496369270616,0.2880080398251805,0.2949784113089252,0.3001401180824182,0.3057454792757125,0.3105577051038766,0.3144341512268402,0.3187236803603007,0.3229988215030369,0.3275957654637134,0.3265963323766792,0.3252294272230707,0.3239172701400434,0.3217784585151576,0.3212170686456401,0.3197761536344454,0.3180362018085123,0.3174660278318316,0.3184704723740958,0.3202092755165381,0.3212440066416671,0.3225020149004344,0.3222796200633228,0.3223646153161572,0.3233522917363667,0.324215919677052,0.326000282765446,0.3301633823896233,0.3343901334355293,0.3375182022118147,0.3410660287945118,0.3435266918873476,0.3447009770365299,0.3485166317051243,0.352686388351304,0.3555091141298038,0.3581749049429658,0.3605807478122514,0.3593322386425834,0.3521288837744534,0.0,2.231494147222565,53.93503169587491,179.1257095871423,250.29684102362165,fqhc6_80Compliance_implementation_low_initial_treat_cost,44 -100000,95692,44489,420.9233791748527,6111,62.638465075450405,4780,49.41896919282699,1908,19.57321406178155,77.29491858535671,79.69690275275481,63.29396199958445,65.0737332153044,77.06649774966968,79.46898505401003,63.2098344598639,64.9922815728842,0.2284208356870323,227.91769874477552,0.0841275397205549,81.45164242020542,167.04556,116.959094594729,174565.8571249425,122224.52722769824,361.09381,233.4281440699242,376741.6398445011,243328.5374638676,366.38886,177.27707636662274,378989.16314843454,182323.6302860292,3145.25741,1429.5081309757395,3252644.3380846884,1459652.9918652982,1148.80019,498.6540128285711,1190835.785645613,511420.3933751738,1867.43086,771.103227765848,1917789.825690758,777536.6349463724,0.379,100000,0,759298,7934.811687497388,0,0.0,0,0.0,30779,321.0822221293316,0,0.0,33631,347.65706642143545,1570407,0,56380,0,0,6521,0,0,56,0.5747606905488443,0,0.0,0,0.0,0,0.0,0.06111,0.1612401055408971,0.3122238586156112,0.01908,0.3343236903831118,0.6656763096168882,24.546181651796093,4.3220188398337775,0.3167364016736401,0.2420502092050209,0.2205020920502092,0.2207112970711297,11.287124905715707,5.828651111805667,20.095455108793608,12268.928865945893,54.104704951540896,13.949731817875826,17.05813787323894,11.58733632785992,11.509498932566212,0.5648535564853556,0.7796024200518582,0.702113606340819,0.5825426944971537,0.114691943127962,0.7376788553259142,0.908883826879271,0.8753246753246753,0.721030042918455,0.1194029850746268,0.5031232254400908,0.7005571030640668,0.6430469441984057,0.5432399512789281,0.1135831381733021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024633288391942,0.0045156118400357,0.0065302391712791,0.008804839611611,0.0112279487362195,0.0134232976262065,0.0156843136454549,0.0176743425757544,0.0200924827106436,0.0224034255626466,0.0246496932892928,0.0266280395722254,0.0286278787379859,0.0308361417720475,0.0330522208573758,0.0348201081729526,0.0369215145800087,0.0387981602799032,0.0408725865512649,0.0431189026932377,0.0574803889823161,0.07183014541914,0.0852450414524084,0.098309079621621,0.1103385699665544,0.1251864941221285,0.1371221127717391,0.1488000170361379,0.1601752417588288,0.1707474088538872,0.1837229343962081,0.1959666338486838,0.2077996912305116,0.218136906648596,0.2276156333164712,0.2374525283169281,0.2464886935374111,0.2556933255322021,0.2642604114628276,0.2715153599266391,0.2795433758234633,0.2865117258811964,0.2927626127512488,0.2987550374208405,0.3037797763733592,0.3094265582388292,0.3144539078156312,0.3197047782655723,0.3246267691272737,0.3284481054365733,0.3273098849091104,0.3266539396519756,0.3253362976304385,0.3244308420794294,0.3225140685088123,0.3204920041664114,0.3185982374944525,0.3186000657246138,0.3194926408998444,0.320528640663841,0.3214124633541306,0.3217918971979296,0.3236066469191824,0.3252701430300856,0.3269890343461668,0.3285617083638648,0.3293360045792787,0.3308486781845172,0.3349628952273766,0.3374731311201338,0.3395457459474311,0.343322510246447,0.3489734223453835,0.3507741591030432,0.3488503580851866,0.3477691850089233,0.3535583941605839,0.3560315215194989,0.3616847826086956,0.3595632530120481,0.0,2.0337066524312646,55.3164762290903,179.33882893424692,264.2539776711677,fqhc6_80Compliance_implementation_low_initial_treat_cost,45 -100000,95715,44569,421.271483048634,6126,62.68609935746748,4854,50.07574570339027,1955,19.965522645353392,77.3593554540744,79.72929780446704,63.33143217950936,65.08346770477515,77.11554966031345,79.48953875958617,63.24052484105897,64.99736084957537,0.2438057937609556,239.75904488087,0.0909073384503926,86.10685519977324,167.22816,117.19320669437126,174714.6842187745,122439.74998105966,363.66224,235.6399401842401,379320.87969492766,245567.23625789076,373.3839,181.2180941262044,386334.94227655017,186439.14799016152,3209.12899,1470.983893465692,3311387.264274148,1495667.290706145,1152.69968,511.6262787023732,1183359.1286632188,513688.52279273,1911.61624,807.3333305182032,1953396.5209214855,805612.5810703345,0.37962,100000,0,760128,7941.57655539884,0,0.0,0,0.0,30941,322.6140103432064,0,0.0,34183,353.39288512772293,1567089,0,56215,0,0,6596,0,0,72,0.7417855090633652,0,0.0,0,0.0,0,0.0,0.06126,0.1613718982140034,0.3191315703558602,0.01955,0.3418096723868954,0.6581903276131045,24.290174888286305,4.362923597663053,0.3096415327564895,0.242274412855377,0.2272352698805109,0.2208487845076225,11.138088057309409,5.725089163254177,20.81524495400336,12252.450897532515,55.19439800242312,14.136595745541667,17.1306978978373,12.203652325584866,11.72345203345929,0.557684384013185,0.7729591836734694,0.7032601463739189,0.5602901178603807,0.1147388059701492,0.7358630952380952,0.925,0.8854415274463007,0.69140625,0.148471615720524,0.4894586894586895,0.6820652173913043,0.6328413284132841,0.5206611570247934,0.1055753262158956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025523639752056,0.0049367948341054,0.0074583701178118,0.0095772988564116,0.0116734287137874,0.013855660867175,0.0156786788317447,0.0178531327195149,0.0198319396454785,0.0218470705064548,0.0242629339076039,0.0263560636407522,0.0284065187867813,0.0306411564100186,0.0327217567177116,0.0350017573239058,0.0372912590199915,0.0392482263618636,0.0413764424576359,0.04346875,0.0583124477861319,0.0726703718822285,0.085527558063907,0.0985551138873115,0.110204167721252,0.1258093182683763,0.1380631467232687,0.149789164324048,0.1608383387127802,0.1709848452324733,0.1848367280956999,0.1965051318695595,0.207772990381686,0.2179941777748593,0.2282755961887977,0.2384664862706827,0.2475093817012151,0.2561962085841255,0.2647342556547991,0.2720210815765352,0.2794395010587459,0.2867549049411875,0.2937324160105917,0.2991382405745063,0.3044253801070245,0.3099652803427642,0.3150467278027298,0.3199938980982406,0.3235674724364615,0.3275505226940163,0.3268359569291159,0.3255462415830699,0.3248960557365996,0.3222722888444208,0.3203756925720719,0.318449655003969,0.315966254040842,0.3167157343801112,0.3165559529892693,0.3167832292278397,0.3171494373396746,0.3173367578780994,0.3188411882019523,0.3197208697017973,0.3205118935724098,0.3203571708310488,0.3209400611096833,0.3237854889589905,0.3273962476679925,0.3327773144286906,0.3367253810349548,0.3394016821036942,0.3405309284897752,0.3399224511518284,0.3396456360738727,0.3413915094339622,0.3449588790740177,0.3529293739967897,0.3608303742146954,0.3626331811263318,0.0,2.516699675593075,58.878027032445054,173.20958139857404,270.26844158997056,fqhc6_80Compliance_implementation_low_initial_treat_cost,46 -100000,95886,44631,421.844690570052,6133,62.58473604071502,4867,50.16373610328933,1861,19.02258932482323,77.4394230829848,79.71653415216187,63.39129033748679,65.07604962044996,77.20391492053595,79.4841551512691,63.30324736954947,64.99160211559212,0.2355081624488519,232.3790008927631,0.0880429679373193,84.4475048578488,166.85812,116.8792851470535,174016.95763719417,121893.82467045698,361.85968,234.2661329443015,376768.1621926037,243702.2560174201,370.84093,179.9974020820729,382490.008968984,184502.27811725432,3188.60939,1464.877607360677,3288487.652003421,1490950.7415887355,1165.30827,519.1018614961134,1200738.1160961974,526884.7793969475,1835.62918,777.3190121374648,1879133.3875643995,782650.7708428121,0.37997,100000,0,758446,7909.8617107815535,0,0.0,0,0.0,30838,320.9749077028972,0,0.0,33899,349.35235592265815,1573329,0,56526,0,0,6620,0,0,69,0.7091754792149011,0,0.0,1,0.010429051164925,0,0.0,0.06133,0.1614074795378582,0.3034404043698027,0.01861,0.3329184816428127,0.6670815183571873,24.26774123015409,4.318411366062056,0.317854941442367,0.2354633244298335,0.2202588863776453,0.2264228477501541,10.992518124731202,5.552192133458853,19.92465149949188,12246.12445533907,54.90663298884829,13.607972725055424,17.445523420797578,11.90292162430096,11.95021521869434,0.5566057119375385,0.7705061082024433,0.6910148674854557,0.582089552238806,0.1206896551724138,0.7336757153338225,0.9027149321266968,0.8523809523809524,0.7563636363636363,0.1548672566371681,0.4877283105022831,0.6875,0.6308784383318545,0.5219573400250941,0.1118721461187214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021158129175946,0.0042158174226762,0.0067052820580448,0.0087623998619135,0.0110990273105186,0.0133696912964734,0.0155742296918767,0.0177988576091391,0.0197887295165706,0.0219112502301601,0.0241193467079243,0.0264921046961411,0.028567318165937,0.0306555216997447,0.032588300789707,0.0347565697764469,0.0368925811357452,0.0390645238169252,0.0408322172734917,0.042799330025072,0.057770087145061,0.0717823333960253,0.0847120418848167,0.0975758275677435,0.1090233478599549,0.1247598133406533,0.1366563572427233,0.149217413479827,0.1607769143027705,0.1710258770146187,0.1844872070522468,0.1967735661494575,0.2079064866215467,0.2181609572201278,0.2282993556332607,0.237772686522562,0.2466226759998216,0.2564258110901411,0.2647142128816632,0.2719144800777454,0.2792330792330792,0.2866167661174492,0.2929709665216569,0.2989559886978593,0.3042770945379937,0.3085980318500363,0.3125023448931354,0.3170827774601359,0.3214950612814811,0.324655315450559,0.3238777677695172,0.3230200909103393,0.322148971760307,0.3221285685419854,0.3212744181907177,0.319543814590595,0.3177270212597803,0.3181125833237794,0.3188732010094809,0.3199273297235679,0.3214900142119829,0.3227371327154407,0.3230913838120104,0.3230427046263345,0.3250137333110416,0.3275414937759336,0.3296603944171328,0.3352954000436015,0.3372916666666666,0.3410779573062861,0.3449458483754513,0.3465153115100317,0.3501814087326411,0.3536289098086851,0.3569880312882857,0.3613614800759013,0.361951822112415,0.3629871454805142,0.3635862068965517,0.3657984144960362,0.0,2.270943545873575,59.66413798475548,171.30422329075938,266.5071948833299,fqhc6_80Compliance_implementation_low_initial_treat_cost,47 -100000,95723,44680,422.8868714937894,6119,62.61817953887781,4774,49.14179455303323,1887,19.20123690231188,77.34647984393533,79.69885092083781,63.33814763576003,65.07548838044485,77.10683142048423,79.46524451297097,63.24871614961042,64.99148582938597,0.2396484234511007,233.60640786684428,0.089431486149607,84.00255105888732,167.78366,117.5049957349593,175280.40282899616,122755.23723134388,362.17879,234.0121700962492,377621.36581594805,243728.4918935669,364.84557,176.30109269322455,376751.010728874,180685.92179252204,3121.26249,1426.7258851110407,3217903.6386239463,1447676.3134106589,1135.27003,504.11877608296015,1169880.6347481797,510528.9074548017,1850.83828,779.076388858581,1887757.278814914,775233.6420693294,0.37976,100000,0,762653,7967.291037681644,0,0.0,0,0.0,30854,321.5737074684245,0,0.0,33336,343.9194342007668,1568284,0,56286,0,0,6633,0,0,69,0.7103830845251402,0,0.0,0,0.0,0,0.0,0.06119,0.1611280808931957,0.3083837228305278,0.01887,0.3316135084427767,0.6683864915572233,24.63570591705049,4.3531356016736575,0.3192291579388354,0.2339757017176372,0.2245496439044826,0.2222454964390448,11.105058068017556,5.748946145583798,20.126865138357047,12333.53816899968,54.30789498140895,13.477757241263538,17.359536872564586,11.849326622857433,11.621274244723384,0.5584415584415584,0.7887197851387645,0.6856955380577427,0.5811567164179104,0.1102733270499528,0.7339667458432304,0.8975609756097561,0.8716049382716049,0.7565217391304347,0.146788990825688,0.4953004841925377,0.7256011315417256,0.6184092940125112,0.5332541567695962,0.1008303677342823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.00489614694523,0.0070021615368222,0.0091932305316836,0.0112067036833648,0.0134488516044958,0.0159327217125382,0.0181671582686085,0.0205558565280943,0.0225855661236984,0.0247235006508881,0.0269229979676882,0.0290851890691505,0.0310121432470568,0.0330877801163798,0.0352864569875246,0.0373246363306931,0.0391870019920318,0.0410719669012547,0.0430493927462866,0.0575055856006347,0.0709104800979663,0.0844043434926297,0.0974288869025711,0.1102828766328929,0.1259171547586323,0.1387913568329603,0.1498206664609031,0.1619353667780541,0.1727294163040449,0.1845029176804978,0.1966885125343369,0.2082337086466982,0.2189692479181693,0.2286882632926976,0.2383651419209139,0.2491942948267594,0.2588322629264287,0.2680388975252187,0.2756618059771589,0.2827938079922252,0.2887633616354408,0.2946218228741225,0.3002038369304556,0.3053122608389315,0.3108276176285879,0.3158618964223167,0.3202744154670536,0.3244364362288218,0.3290500653715614,0.3275250993868338,0.3265825921744637,0.3259334432745571,0.325335531644105,0.3244609665427509,0.3223724552366936,0.3204146225668618,0.3202526453941432,0.3213968275673458,0.3218641192750647,0.3225848759649254,0.3230434782608695,0.3252334487461966,0.3259219453214214,0.325605469690404,0.3275943272803391,0.3290440650824969,0.3327877109040544,0.336762279254292,0.338618885277095,0.3399169821648497,0.3433391878226622,0.346537761315839,0.3505869797225187,0.3522641509433962,0.3547655970416318,0.3571867321867322,0.3580044980576569,0.3580454928390901,0.3599527930763178,0.0,2.85861474233212,54.58964272927489,185.11950676064575,258.305680809276,fqhc6_80Compliance_implementation_low_initial_treat_cost,48 -100000,95747,44935,424.71304583955634,6120,62.75914650067365,4832,49.954567767136304,1903,19.561970610045226,77.41222784566315,79.76948089130401,63.350809200748486,65.090345295513,77.17176986456569,79.52894358709752,63.260451196774525,65.00242239490709,0.2404579810974638,240.537304206498,0.0903580039739608,87.92290060591768,165.67034,116.1414905116004,173029.04529645838,121300.199055965,364.68322,236.31742494357832,380322.0988647164,246256.57953151487,376.20903,181.978816030356,390165.90598138847,187941.1405564195,3133.42528,1442.29440915701,3238959.027436891,1472854.0553106647,1136.52723,507.9829966816935,1172582.0965669942,516118.4649980605,1854.54242,785.2998451512143,1906156.036220456,792747.3675021697,0.38232,100000,0,753047,7864.956604384472,0,0.0,0,0.0,31059,323.8012679248436,0,0.0,34440,356.97202001107087,1571892,0,56376,0,0,6623,0,0,64,0.6579840621638275,0,0.0,0,0.0,0,0.0,0.0612,0.160075329566855,0.3109477124183006,0.01903,0.3385117290663352,0.6614882709336648,24.52034974713548,4.27149965170357,0.3213990066225166,0.2446192052980132,0.2183360927152318,0.2156456953642384,11.357755222018634,6.029727849901691,20.290810342089408,12309.691023145846,54.82283522826931,14.14142035608289,17.58356298912409,11.669065647492197,11.428786235570144,0.5614652317880795,0.7758037225042301,0.6812620734063104,0.5886255924170616,0.1122840690978886,0.728030303030303,0.9194630872483222,0.8325,0.752,0.1300448430493273,0.4988610478359909,0.6884353741496598,0.6287944492627927,0.537888198757764,0.1074481074481074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.0045710231591749,0.0068072069147425,0.0089365504915102,0.011346190994215,0.0138952511833867,0.0160323705077766,0.0181423017662724,0.0203881411533862,0.0228863868986693,0.0251086332704763,0.0272545295898988,0.0293921107010311,0.0314820345406424,0.0335974905068515,0.0355577606880013,0.0377323323841573,0.039964724801577,0.0417104182477881,0.0438134127794329,0.0586828972918798,0.0727970952316176,0.0864192350460524,0.0993393507121967,0.1113069171107476,0.1266007662510848,0.1388252027342589,0.1505212603959236,0.1614975205198358,0.1721691531608887,0.1856576024842041,0.1977778018431682,0.2088944532143051,0.2202708769010105,0.2292056846975873,0.2394764572125783,0.2489830584238523,0.2580245523144498,0.2660254590463645,0.2735547327272936,0.2812608564745119,0.287653757475744,0.2935015444335301,0.29921891846563,0.304567479931506,0.3101974454038208,0.3153827879818452,0.3194186844177951,0.3233496569457186,0.3274761434682461,0.3269922672108259,0.3251580867728351,0.324009324009324,0.32286866359447,0.3227665706051873,0.3203910104147633,0.3177998111425874,0.3184850511344174,0.3190018346130325,0.3199787083037615,0.3216606162152099,0.3224831753879961,0.3238716943355301,0.3236268992058372,0.3246433017332184,0.3252631033231375,0.3252902860379495,0.3277250593082781,0.3295807047506187,0.3328880682041409,0.3341299544573206,0.3348962174691813,0.3369721165242343,0.3391592587012204,0.3376912378303199,0.3402134396622493,0.3424966200991438,0.3489759395506064,0.3514246947082768,0.3392925066565234,0.0,1.893265240819,58.223239567455344,179.54908979396436,261.92535418156973,fqhc6_80Compliance_implementation_low_initial_treat_cost,49 -100000,95719,44434,419.15398196805234,6041,61.78501655888591,4778,49.23787335847638,1876,19.170697562657363,77.32373385663094,79.69334612285837,63.321321634088775,65.07507812411185,77.08255796740552,79.45535634277488,63.2317399632506,64.98952503277727,0.241175889225417,237.98978008349536,0.0895816708381787,85.55309133458877,167.96714,117.61328897977052,175479.41370051922,122873.50367196744,359.62681,232.93665724824652,375025.8987243912,242669.7649579245,367.46684,178.24974377289158,379768.47856747353,182992.17795428855,3115.80563,1442.9242243942354,3212712.052988435,1465011.5905872765,1126.28485,503.8630982928144,1158245.6147682278,507986.2600871444,1839.37176,780.701820244081,1881272.7044787344,781576.3480914591,0.37956,100000,0,763487,7976.3369863872385,0,0.0,0,0.0,30701,320.0409532067824,0,0.0,33784,348.697750707801,1566629,0,56242,0,0,6590,0,0,47,0.4910205915231041,0,0.0,1,0.0104472466281511,0,0.0,0.06041,0.1591579723890821,0.3105446118192352,0.01876,0.3321766561514195,0.6678233438485804,24.416762520764703,4.284653726808864,0.3168689828380075,0.2526161573880284,0.2063624947676852,0.2241523650062787,11.178619154753884,5.837079740725998,20.217884435737947,12285.948600945305,54.60801835726742,14.47880882756309,17.280716080291324,11.056840196780357,11.791653252632647,0.5690665550439514,0.7912178956089478,0.7120211360634082,0.5780933062880325,0.1083099906629318,0.7294292068198666,0.9043478260869564,0.8690476190476191,0.7391304347826086,0.1380753138075313,0.5059784193642461,0.7215528781793842,0.6517367458866545,0.5291005291005291,0.0997596153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227963525835,0.0048880911091504,0.0072269589930978,0.0093693473975164,0.0115680449291876,0.0142305615825769,0.0166034349120874,0.01889432455343,0.0210546767151023,0.0235035076040759,0.0256791541467116,0.0277806305843689,0.0303376334794148,0.0323159044537416,0.0345578596422415,0.0365136305837838,0.0385169074620682,0.0405353530113606,0.0423905923453632,0.0440966541976221,0.0587535109059964,0.0720102154026501,0.0849742454601722,0.0978824568970051,0.1107971022134112,0.1265502912908785,0.1387123807907327,0.1503202604643244,0.1621829444118118,0.1716617162954782,0.1845794392523364,0.1968454531686103,0.2082513239307967,0.2180116549861692,0.2278208061960922,0.2372504069902654,0.2461807801244452,0.2550193809336554,0.2644414462421061,0.2712440361094266,0.2779633203517733,0.2854622359319499,0.2913967563478178,0.2980525080247209,0.3033010793157454,0.3082098103722323,0.3134584329582013,0.3179908326967151,0.3223669712878346,0.3269187619613278,0.325821963013348,0.3251460216001763,0.3240632359785076,0.3235941391092836,0.3225388793809063,0.3207868269348706,0.3179293209046164,0.3194749794913863,0.3201862877224108,0.3205109905795033,0.3210269865067466,0.3216815034619188,0.322695854954936,0.3234278281151879,0.3244769420111489,0.3265712116849462,0.3273930607684153,0.3295148887693427,0.3338986044868398,0.33624,0.3411845730027548,0.3419572553430821,0.3441665608734289,0.3482342078941294,0.3504580224761545,0.3503230437903805,0.3510914364219203,0.3509127789046653,0.3567493112947658,0.3562596599690881,0.0,2.6797413739214733,58.65773383259092,178.74930134383422,254.27660985580252,fqhc6_80Compliance_implementation_low_initial_treat_cost,50 -100000,95791,44748,423.1712791389588,6117,62.82427367915567,4817,49.816788633587706,1902,19.6156215093276,77.38153749659537,79.72334591541689,63.350937847410606,65.08283441587866,77.15196927433873,79.49080135993376,63.26735178338293,64.99986983372104,0.2295682222566455,232.54455548313047,0.0835860640276777,82.96458215762925,167.31682,117.2100748884454,174668.62231316094,122360.21639657734,362.93097,234.6865814638349,378413.1912183817,244533.81994533396,369.17257,178.8044910705947,381510.8413107703,183828.0695435634,3165.11714,1435.4554521338937,3277013.0492426218,1471351.0477329746,1148.99376,504.1203531210547,1188008.2784395197,514799.51469454775,1865.96698,770.6570713354145,1925689.0104498332,785722.9560389579,0.38089,100000,0,760531,7939.482832416406,0,0.0,0,0.0,30820,321.27235335261145,0,0.0,33803,349.07245983443124,1569941,0,56341,0,0,6573,0,0,78,0.8142727396101931,0,0.0,2,0.0208787881951331,0,0.0,0.06117,0.1605975478484602,0.3109367336929867,0.01902,0.3299642357331674,0.6700357642668325,24.57578365629974,4.402167194245304,0.3223998339215279,0.229395889557816,0.2237907411251816,0.2244135353954743,11.125944519989227,5.710168407632699,20.0400259169852,12276.146759128173,54.2602222515492,13.156333860265727,17.4441571449184,11.95054339145101,11.70918785491404,0.553248910110027,0.7873303167420814,0.6709594333547971,0.5732838589981447,0.1248843663274745,0.7321016166281755,0.9269521410579346,0.8411633109619687,0.7208333333333333,0.1581395348837209,0.4872086412734508,0.7090395480225988,0.6021699819168174,0.5310262529832935,0.1166281755196304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019141566570114,0.0041863482474101,0.0066758654275394,0.0089678356336898,0.0113772698619273,0.01371173793988,0.0158091083295959,0.0179630328948039,0.0203662449671973,0.0224589191069638,0.0246961654335662,0.0269446326291802,0.0289841661525807,0.0308986450310942,0.0328306790989355,0.035005062715682,0.037087244016267,0.0392445476407662,0.0411676102425596,0.0430826253539896,0.0574884167466711,0.071003503634367,0.0845581297829961,0.0979951244115669,0.1102505742766222,0.1260171193067737,0.139007513060433,0.1508435118155436,0.1625817603687619,0.1734027844763834,0.1861000785731968,0.1983843758110563,0.2091547305961877,0.2192027797810266,0.2289434900244165,0.2389913436206247,0.248570186293856,0.25760266121238,0.2651420667135309,0.2729477441200695,0.2797849586681311,0.286377130034361,0.292651477512007,0.29794495940217,0.3034886261561991,0.3088467031073029,0.3133159268929504,0.3170424790909322,0.3213334023232349,0.3245437174672201,0.3241139138385414,0.3225159375686964,0.3216622806400315,0.3208108342236724,0.3204538029758546,0.3189046206538026,0.3170103906768152,0.3191005723630417,0.3206555927707976,0.3212475772178459,0.3215866435094403,0.3230347601490566,0.3240479327435849,0.3248725288487342,0.3249555907628786,0.3273949054539772,0.3290375807231657,0.3333959781995865,0.3365384615384615,0.3395457423235201,0.3429038706160276,0.3458295773901055,0.3465302771989644,0.3504201680672268,0.3542533081285444,0.3564462416745956,0.3584587043291372,0.3628067329142161,0.3591529674003901,0.3659853451600462,0.0,1.8654939417276348,57.37090418573587,170.5438011231307,270.5118878236367,fqhc6_80Compliance_implementation_low_initial_treat_cost,51 -100000,95860,44610,422.6893386188192,6151,62.91466722303359,4821,49.74963488420613,1908,19.49718339244732,77.37299817448195,79.67531021640534,63.35320242165369,65.05721535999103,77.13727756820202,79.44226648134942,63.26515577242015,64.97329528330143,0.2357206062799264,233.04373505591516,0.0880466492335401,83.92007668960844,165.48444,115.97642073687004,172630.00208637596,120984.07716099235,360.68703,233.758806530823,375666.7640308784,243264.2146846492,368.57204,178.01613414927235,382016.0546630503,183767.6920115164,3160.57635,1439.7394414840835,3255769.476319633,1461421.701106638,1145.74896,503.248591698781,1179753.4842478614,509577.1237899161,1869.78204,781.5236829297534,1909881.180888796,778848.3236815626,0.38021,100000,0,752202,7846.818276653453,0,0.0,0,0.0,30815,320.8428958898393,0,0.0,33718,349.2280408929689,1577796,0,56639,0,0,6505,0,0,64,0.6676403087836428,0,0.0,0,0.0,0,0.0,0.06151,0.1617790168591041,0.3101934644773207,0.01908,0.3341607198262488,0.6658392801737512,24.506845733760137,4.278617479719295,0.3196432275461522,0.2393694254304086,0.2184194150591163,0.2225679319643227,11.163632520819696,5.776847038586074,20.152304896686893,12219.970378637569,54.38805342970624,13.856327864662688,17.26374142681323,11.671249328285835,11.596734809944484,0.5733250362995229,0.7842287694974004,0.7125243348475017,0.6077872744539411,0.1127679403541472,0.7329192546583851,0.9004629629629629,0.873015873015873,0.7764227642276422,0.146551724137931,0.5151429380130201,0.7146814404432132,0.6603611349957008,0.5563816604708798,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0043074178803449,0.0067963036223283,0.0089454338687732,0.0110404001382591,0.0132430781758957,0.0153190708672652,0.0175121697333374,0.019853068898221,0.0218450078785274,0.023902464013114,0.0261014097223647,0.0280666776288744,0.0301592366522218,0.0320093192994031,0.0339550158002354,0.0359943716762886,0.0378648925917866,0.03992979832596,0.0416393544963635,0.0561012742705791,0.0698184782267924,0.0837174705611197,0.0961942367470385,0.1086022411323616,0.1239000686631806,0.1364354064450496,0.1481245215616228,0.1591379715218922,0.1692635775215397,0.1826958262479281,0.1956197435841999,0.2070910731171809,0.2170666375116164,0.2270186403750082,0.2364095520801027,0.2459972999207827,0.2555808092173365,0.264211732407628,0.2716165305912125,0.2785449919037705,0.2852128742409884,0.2909702163928216,0.2972438585979629,0.3033504559971826,0.3082239881722417,0.3124780888465969,0.3168522170621541,0.3223718280683583,0.3263606609301589,0.3255669880945968,0.3242882317308221,0.3243167009844019,0.3233936658130416,0.3223591313782904,0.3211403898271348,0.3196258131915095,0.3206272142763416,0.321474883974884,0.3223181785739776,0.3230904466222787,0.3247913830857549,0.3261742440085323,0.3275892817334701,0.3286857361889703,0.3299885619215971,0.3318139084356571,0.3344646617013921,0.33878439079169,0.3402579930357708,0.3424018831198225,0.3434936762449066,0.348329453218398,0.3502592253735895,0.3528246722625672,0.3549109774790708,0.3591354996934396,0.3592471358428805,0.3597102256896071,0.3596323247797778,0.0,1.899067536879609,56.770391932074496,176.00692685198612,267.1580868222102,fqhc6_80Compliance_implementation_low_initial_treat_cost,52 -100000,95783,44553,421.4526586137415,6046,61.69153190023282,4709,48.49503565350845,1864,19.043045216792123,77.39816222968327,79.72912713229736,63.35848721039546,65.08007462963606,77.16728219331759,79.50120377782675,63.27266420444472,64.99807121518857,0.2308800363656757,227.92335447061876,0.0858230059507434,82.0034144474846,166.83018,116.78930254306948,174174.9162168652,121930.9158651008,359.84232,232.86681215409536,375019.3562531973,242453.8339309643,362.74026,175.67949288949276,374384.8804067528,179960.59364398278,3091.10565,1416.4208872343456,3186589.8645897494,1438305.1852496192,1130.13725,505.5240571489573,1159586.3566603677,507547.0927433571,1830.132,768.285484314377,1872135.869621958,769797.4954507092,0.37938,100000,0,758319,7917.041646221146,0,0.0,0,0.0,30682,319.64962467243663,0,0.0,33153,341.950032886838,1574375,0,56447,0,0,6556,0,0,64,0.6472964931146445,0,0.0,1,0.0104402660179781,0,0.0,0.06046,0.1593652801940007,0.3083030102547138,0.01864,0.3343354430379747,0.6656645569620253,24.688851393557314,4.376776849212555,0.3172648120620089,0.2355064769590146,0.2240390741133998,0.2231896368655765,11.218234090121646,5.725602814489937,19.766017483075945,12266.985232431402,53.18307604846842,13.166376202144304,16.887428472170093,11.63228795800374,11.496983416150288,0.5517094924612445,0.7899008115419297,0.6633199464524766,0.5829383886255924,0.110371075166508,0.7146282973621103,0.9093264248704664,0.8316831683168316,0.7434782608695653,0.1558441558441558,0.4927703875072296,0.7261410788381742,0.6009174311926605,0.5381818181818182,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021064997670697,0.0046619101670179,0.0068477863896441,0.0088857746364448,0.0114064962130839,0.0135465222789911,0.0157028583074336,0.0178651593682406,0.0200655911891212,0.0219973603167619,0.0241988361609704,0.0264340687532067,0.0281386171174874,0.0302496963708598,0.0327236736292966,0.0346921702488045,0.0369017814653121,0.0391239876810767,0.0410600155884645,0.0429145665847461,0.0567734799712011,0.0710976311248235,0.0842707820051791,0.0971182949386245,0.1091526281389023,0.1250779623032442,0.1376344314108139,0.1489363966245623,0.159439947027789,0.1699832740060899,0.1827492622827234,0.1949103965910688,0.2065185507088923,0.217470149335256,0.2271153655936431,0.2369903181189488,0.246969882809451,0.2551810995288376,0.2644032805109066,0.2723504151159461,0.2806234535069259,0.2870904010942121,0.2930795724887263,0.2998442180946675,0.3046787743407954,0.309696484639537,0.3142707109099547,0.3191254051992627,0.3232701145705223,0.3281893004115226,0.3275353733895179,0.3265912247170927,0.3252798310454065,0.324589123125983,0.323623540567771,0.3215540148437739,0.3196545299523163,0.3198566120504804,0.3213719236607371,0.3217676290900023,0.3226903316207379,0.3232767982308923,0.3252901202300052,0.3255041782729805,0.3275721935360489,0.3283415520373735,0.3288008141572907,0.3337286971721081,0.3374973902150462,0.3424377189184934,0.3443960826985854,0.3459493604253303,0.3480642350304992,0.3493181818181818,0.3487958017055571,0.3511812893268431,0.3529680365296803,0.3509625126646403,0.353119823302043,0.3492184521540221,0.0,2.606177848865098,54.334268167278935,171.9207293163475,263.1752983501675,fqhc6_80Compliance_implementation_low_initial_treat_cost,53 -100000,95882,44853,423.53100686260194,5935,60.73089839594501,4661,48.07993158257024,1809,18.50190859598256,77.3584022892406,79.64139817210557,63.35300198276878,65.04194945171064,77.13431038022941,79.41908033629392,63.270013939562126,64.96199149926565,0.224091909011193,222.3178358116513,0.0829880432066545,79.95795244498538,167.60524,117.4484362687902,174803.65449197972,122492.68503868316,362.90642,235.63419122064803,377992.9600967856,245254.56417330468,372.96462,180.6150998687206,385884.3891449907,185938.54612407583,3067.3554,1409.3851841670814,3166312.5195552865,1437134.7637378036,1107.36348,494.8907248743873,1141945.4537869464,503167.8363763664,1781.5546,749.9950121454252,1824242.4438372168,754006.8430616045,0.38181,100000,0,761842,7945.6206587263505,0,0.0,0,0.0,30917,321.90609290586343,0,0.0,34083,352.32890427817523,1564204,0,56149,0,0,6576,0,0,78,0.8134999269935963,0,0.0,0,0.0,0,0.0,0.05935,0.1554438071292004,0.3048020219039595,0.01809,0.3312459858702633,0.6687540141297367,24.45396079899789,4.315957762595099,0.3123793177429736,0.2456554387470499,0.2166916970607166,0.2252735464492598,11.131465097996216,5.741002484957569,19.34936254156471,12273.68414834034,53.24464082789927,13.907395277670268,16.414021781471458,11.312326188115575,11.61089758064196,0.5642565972967174,0.8096069868995633,0.6847527472527473,0.5742574257425742,0.12,0.7482462977396727,0.934065934065934,0.8763157894736842,0.7383966244725738,0.1279620853080568,0.4943753700414446,0.7275362318840579,0.6171003717472119,0.5239327296248383,0.1179976162097735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022780427057072,0.0044583599315033,0.0066537513566147,0.0089045477159885,0.0112014637121366,0.0138104397561546,0.0162700191531847,0.0187056963639145,0.0208897011527112,0.0234412537441601,0.0253974428531943,0.0273113120501937,0.0294144833465137,0.0315389916986411,0.0335332550134998,0.0354550616901553,0.037653095001655,0.039591646369902,0.0417064761350891,0.0435293750455164,0.058069224353628,0.0720800727173947,0.0851502775159702,0.0981781907912007,0.1103539077311986,0.1253446290682075,0.1375827902294283,0.1485321169202632,0.1608995431840498,0.1717366604497609,0.1849112266761415,0.1970470524607896,0.2082595036470959,0.2185166967262392,0.2278524154005145,0.2373712224324713,0.24740727524143,0.2564163097366024,0.2649380699605281,0.2727658014707567,0.2799689926068193,0.2861687818001052,0.2930477103982379,0.2984578856485034,0.3037231520986033,0.3083924276993278,0.3134081571299729,0.3171315755954655,0.3223935970112467,0.32614241715245,0.3249882035726323,0.3243634060016801,0.3227488619226812,0.3220932082074121,0.3212755830556877,0.318664806268112,0.3166172530242734,0.3179905312993161,0.3181888160933304,0.3188822426569056,0.3209092271943632,0.322124698533191,0.3244325208023307,0.3257139026679179,0.3259526385382859,0.3273185824601544,0.3287679017958627,0.3315482901164975,0.3344516670161459,0.3392504151182098,0.3427818660852185,0.3450897571277719,0.3472666792192305,0.3517937734261455,0.3553789384047686,0.3568524276488878,0.3572204125950054,0.3640413039076736,0.3554515418502202,0.3561068702290076,0.0,2.066847983554703,56.33798005339201,177.88412748680096,249.2877807311754,fqhc6_80Compliance_implementation_low_initial_treat_cost,54 -100000,95740,44819,422.7386672237309,6168,63.3799874660539,4839,50.041779820346775,1955,20.085648631710885,77.38965647392791,79.7555943507162,63.34469261111818,65.09344926610946,77.14846185607541,79.51505262596818,63.25566061822744,65.00720574809979,0.2411946178524999,240.54172474801305,0.0890319928907459,86.24351800966679,167.38392,117.24171034131108,174831.75266346356,122458.43988020794,364.14507,235.83115517957023,379850.1566743263,245826.84894461065,372.12961,179.71584766026135,385859.8182577815,185513.0767905177,3172.5717,1446.4662242165518,3282538.1345310216,1479628.7175857038,1154.8749,511.6594141278277,1193655.4000417795,521819.71394174674,1911.30246,798.835971389883,1965109.9435972427,807495.1870306919,0.38054,100000,0,760836,7946.897848339253,0,0.0,0,0.0,31037,323.65782327136,0,0.0,34028,352.50678922080635,1567181,0,56260,0,0,6678,0,0,65,0.6789220806350533,0,0.0,1,0.0104449550866931,0,0.0,0.06168,0.1620854575077521,0.3169584954604409,0.01955,0.331690791499846,0.668309208500154,24.71197726492485,4.329419013010389,0.3163876834056623,0.2293862368257904,0.2331060136391816,0.2211200661293655,11.15907081115195,5.909526182068911,20.792595460876864,12334.2888700231,54.74213439553603,13.359947289970687,17.175734128703258,12.427806336035054,11.778646640827027,0.5569332506716264,0.7756756756756756,0.6923579359895493,0.5647163120567376,0.1280373831775701,0.7105459985041137,0.9088729016786572,0.8602409638554217,0.6821705426356589,0.1538461538461538,0.4982866933181039,0.6955266955266955,0.6299283154121864,0.5298850574712644,0.1202916160388821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177700348432,0.0045112172176434,0.0068399313977207,0.0090212731373305,0.0116268424425524,0.0141542096044967,0.016425199579939,0.0187115280570839,0.0208418513369858,0.0231848750678144,0.0252570292239408,0.0273597109007658,0.0294837263811501,0.0317774139404611,0.0338002310421651,0.0358626676863928,0.037670984643741,0.0401191019628999,0.0422079946785291,0.0445333583403665,0.0594303374540594,0.0729440333267042,0.0857394661742487,0.098934278770791,0.1113631089263486,0.1273809901534621,0.1402442258930371,0.1521549430669362,0.16332589357226,0.1727684124737271,0.1854005167958656,0.1965579906107349,0.2079215456037922,0.2180211898227621,0.2272392206049003,0.2376238720035431,0.2476443235166207,0.2570398004359844,0.2656788499909305,0.2730891992998593,0.2799643872996785,0.2855623348995956,0.2923182393059347,0.2976833283448069,0.3040844813983128,0.3102968345855401,0.3150494727493339,0.3202024955799488,0.324736331284374,0.3284800527530498,0.3271178915930096,0.3266776677667767,0.3261034793379124,0.3247563352826511,0.3233096085409253,0.3219919295671313,0.3203524729960205,0.3210506517508136,0.3219861047410352,0.3228848476237835,0.3248938863653288,0.3254113345521023,0.3257736682077554,0.3274344152956869,0.3278508247669137,0.3282490272373541,0.3297242141662651,0.3340655892044563,0.3366350544432736,0.3371028111810146,0.3396925610760362,0.3416425431542833,0.3451002720313785,0.346572855197458,0.3503249767873723,0.347928160582228,0.3492351961229744,0.3573285342931414,0.3604365620736698,0.3537284894837476,0.0,1.977644632155818,59.274837824295815,169.99517748838647,269.14187506799465,fqhc6_80Compliance_implementation_low_initial_treat_cost,55 -100000,95775,44859,425.1631427825633,6025,61.728008352910464,4755,49.219524928217176,1858,19.13860610806578,77.34687979821054,79.7054456380537,63.33382307926016,65.08097075243985,77.11400374881576,79.47216720751533,63.24675502991777,64.99572292849084,0.2328760493947754,233.2784305383768,0.0870680493423847,85.2478239490182,166.892,116.94574587572198,174254.24171234664,122104.66810307698,360.42343,233.91859393469605,375879.0080918821,243795.9204788353,370.3548,179.00600294932676,384093.6987731663,184936.84379272556,3095.8042,1426.5213448504437,3207214.7011224222,1464546.6844604018,1115.45102,497.6515294509021,1153748.4729835554,509137.597706793,1822.4409,768.6022538023368,1878600.6995562515,780949.7279467373,0.38276,100000,0,758600,7920.64735056121,0,0.0,0,0.0,30790,321.01279039415294,0,0.0,33938,351.77238318976765,1570743,0,56409,0,0,6576,0,0,62,0.647350561211172,0,0.0,0,0.0,0,0.0,0.06025,0.1574093426690354,0.3083817427385892,0.01858,0.3371109337589784,0.6628890662410215,24.183300535425715,4.195433666645387,0.3226077812828601,0.2452155625657203,0.213459516298633,0.2187171398527865,10.895902978376691,5.594780570281562,19.865116377863178,12295.664557808652,54.30272532080881,14.123451927837378,17.498400357595308,11.343674565362436,11.337198470013693,0.5648790746582545,0.7855917667238422,0.7086049543676662,0.548768472906404,0.1211538461538461,0.7320503330866025,0.8976545842217484,0.8652482269503546,0.6885245901639344,0.1581395348837209,0.4985311398354876,0.7101865136298422,0.648964896489649,0.5045395590142672,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090713793522,0.00437066482781,0.0066192893401015,0.0090551541205524,0.011383983071539,0.01344168143215,0.0158018146600061,0.0176806859942833,0.0199546114371,0.0221874104107793,0.0243599864666741,0.0264392718162496,0.0284239320458238,0.0303473567102064,0.0323549445786116,0.0342788620575587,0.0361399620996386,0.0381443405915121,0.0402174590964844,0.0422567477507497,0.056666005615456,0.0703481317209925,0.0841301795000838,0.0964632928687792,0.1089107867418453,0.1246499635433728,0.1374332230984482,0.1491877179552607,0.1603016790766145,0.1708458745273621,0.1834552495697074,0.1954306217510186,0.2066882510158406,0.2174895973264309,0.2276622862919175,0.2379851051822014,0.247655474647903,0.2569539700029232,0.2655877613092131,0.2738247961147255,0.2813396907693732,0.2871686852729507,0.2940480136370093,0.2992782120761594,0.3052378524076637,0.3103758029188098,0.3156558392015109,0.3204754942470281,0.3255693581780538,0.3298763935376749,0.3283662380977998,0.3271256842626468,0.3257819865201424,0.3244678548235803,0.3246105919003115,0.3230818639220664,0.3207502411715401,0.3209813735948141,0.3223146140317926,0.3225397844858346,0.3232275944721171,0.3249332938037355,0.3260441539943865,0.3269635265159991,0.3280926469880098,0.3303445391331625,0.3323721700402546,0.3361103221938212,0.3384518078639446,0.3418959758231271,0.3464315087270401,0.3480874607650157,0.3508350202429149,0.3515511853037579,0.3548839820359281,0.3585039649662682,0.3617053789731051,0.3639525368248772,0.3692609182530795,0.3735700197238659,0.0,1.5965654372727192,60.107288102372046,174.18919120803358,255.05485310414275,fqhc6_80Compliance_implementation_low_initial_treat_cost,56 -100000,95746,44892,423.5790529108266,6135,62.67624757170013,4749,48.93154805422681,1919,19.62484072441669,77.36211040614715,79.72505209009498,63.32787542470121,65.07582543945763,77.12240432589854,79.48565147304687,63.23910830489076,64.98984097234421,0.2397060802486095,239.4006170481049,0.0887671198104556,85.98446711341978,168.3649,117.89045327311317,175845.3616861279,123128.33253933652,363.42736,236.1890382006026,378933.6995801391,246042.17220625677,375.69577,182.6068418536697,387712.7295135045,187202.82143946912,3090.24353,1418.6918448391684,3186299.61564974,1440480.797985467,1118.66859,495.3050650809789,1152134.3032607106,501074.70294422586,1866.6982,781.7916428905042,1911302.278946379,784809.4500947162,0.38083,100000,0,765295,7992.970985733086,0,0.0,0,0.0,30939,322.4677793328181,0,0.0,34303,353.6231278591273,1559610,0,56005,0,0,6774,0,0,73,0.7624339397990517,0,0.0,1,0.0104443005451924,0,0.0,0.06135,0.161095501929995,0.3127954360228199,0.01919,0.3311617806731813,0.6688382193268186,24.53620526792282,4.433222787775015,0.3181722467887976,0.2383659717835334,0.2253105917035165,0.2181511897241524,11.382857829427762,5.912443825488801,20.406993538739066,12312.67226134043,53.86994130199544,13.727290985971209,17.146497651165603,11.845365709086291,11.150786955772334,0.5651716150768583,0.8030035335689046,0.7068166776968895,0.5672897196261683,0.0965250965250965,0.7391304347826086,0.9159090909090908,0.8611764705882353,0.7209302325581395,0.1469194312796208,0.4972181551976574,0.7312138728323699,0.6464088397790055,0.5184729064039408,0.0836363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022795659706391,0.0045328249538605,0.006902852502284,0.0093886218844305,0.0118000101724225,0.0142278078787631,0.0165194868761854,0.018561627052193,0.0207566462167689,0.0228354922943013,0.0250843494580098,0.0271075364909145,0.0291975308641975,0.0313169826875515,0.033594798224791,0.0358966936167573,0.0381381381381381,0.0402456864799809,0.0423072525233625,0.0443731511187033,0.0591452848702478,0.073432023853115,0.0874102039746211,0.1001125332604145,0.111827185756326,0.1269948707101686,0.1397201565765326,0.1512503060561865,0.1622684245389858,0.1730697060999539,0.1857910550631616,0.1977468995519771,0.2083510123263379,0.2190460562301717,0.2280116669418304,0.2383870395815788,0.248333091347711,0.2576118999932488,0.2663172344939473,0.2738620097337532,0.2807819625454293,0.2880019651651089,0.2935899256734365,0.2992829392296993,0.3044407734914002,0.3100982579857729,0.3148048435367335,0.3187210427167659,0.3228049728049728,0.3264269218079841,0.3248298632167644,0.3232872563057605,0.322107665004648,0.3208479646247886,0.3200956440378418,0.3190678160743542,0.3170233647818654,0.3175720002624155,0.3182477021980458,0.3192663817663818,0.3204924617482765,0.3217110700090512,0.323916311701328,0.3246593975070796,0.3243398805669472,0.3264531558698139,0.3271354358872456,0.3305249310949636,0.3329958454072548,0.3368450126262626,0.3395458246629874,0.3411150927487352,0.346955378934852,0.3494166353029733,0.3525367032150158,0.3518867924528301,0.3514663425011396,0.3576992210904733,0.3587516960651289,0.3691119691119691,0.0,2.6415145924837784,58.091759393090655,169.58889499110117,259.34460534642403,fqhc6_80Compliance_implementation_low_initial_treat_cost,57 -100000,95779,44427,420.0294427797325,6061,62.12217709518788,4736,49.02953674605081,1869,19.23177314442623,77.32840490063373,79.68826640362533,63.31625382636724,65.06437354352158,77.09784688956947,79.45608761431563,63.2298577125538,64.97910941915758,0.2305580110642608,232.1787893096996,0.0863961138134357,85.26412436400221,167.27766,117.16195871195868,174649.6204804811,122325.3100491326,360.55978,233.6421546371573,376033.3789243989,243522.46801194132,366.50342,177.4544306160187,379927.1447812151,183181.51475558223,3074.87272,1410.046527253688,3185127.9716848163,1446932.550197524,1116.44872,500.5547114052116,1154198.9266958311,511219.208646307,1824.20196,767.5249362952558,1878693.5758360391,779914.1680831672,0.37778,100000,0,760353,7938.619112749142,0,0.0,0,0.0,30793,321.0724689128097,0,0.0,33542,347.60229277816643,1566998,0,56302,0,0,6567,0,0,65,0.6682049300994999,0,0.0,0,0.0,0,0.0,0.06061,0.1604372915453438,0.3083649562778419,0.01869,0.3415982312065698,0.6584017687934302,24.591845349135397,4.404720498781737,0.3156672297297297,0.2455658783783783,0.2214949324324324,0.2172719594594594,11.377339532496404,5.914188271212756,19.896628358772983,12223.477737292067,53.64909630696376,13.956866381803795,16.77772511359839,11.704766939464935,11.20973787209663,0.5629222972972973,0.766122098022356,0.7016722408026755,0.572926596758818,0.1214771622934888,0.7212732919254659,0.89749430523918,0.8533333333333334,0.7068273092369478,0.1733333333333333,0.50377030162413,0.68646408839779,0.6508928571428572,0.53125,0.1069651741293532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023813625447138,0.0044524229700399,0.0067924298420176,0.0089839224374479,0.0112612154381396,0.0137915580182529,0.0160813346386033,0.0182137460693429,0.020292788648306,0.0226114193297438,0.0250525344677361,0.0271679980286259,0.0293192102015631,0.0314868984838497,0.0335889048262767,0.0357733493198825,0.0376876099782631,0.0394287906914038,0.0410050710782276,0.0429294507279885,0.0580523953658282,0.0719223569030611,0.0852232812221488,0.0978588771981458,0.1096698734497328,0.1249101593878155,0.1376790846138347,0.1491911451681566,0.1607083729425461,0.1703681461860998,0.1834222006786233,0.1960678230195743,0.2075835056033075,0.2170184840861861,0.226989002278807,0.2370333444112108,0.2462970610887254,0.2542802147705399,0.262594951800252,0.270874876802127,0.2774864867993101,0.284485985681531,0.2907297550116633,0.2964096287229702,0.3018005422294627,0.3069381412786109,0.3112498902725004,0.3157083142172605,0.3193893169377643,0.3243742983556759,0.3244391112069895,0.3235407542076412,0.322655721056195,0.3213175885643257,0.3213552666805485,0.3198515883723782,0.3180629724119352,0.3183268111414384,0.3190685428029202,0.3196462074510855,0.3198988669351063,0.3215357283853138,0.3230258487493214,0.3244763988746483,0.325749394004848,0.3279579681119463,0.3289728131043112,0.3333646616541353,0.337629676202452,0.3415733892338725,0.3447682059183396,0.3464575218444046,0.3486633015516919,0.3479507887387727,0.3480291425368952,0.3464742461574563,0.3501668183196845,0.3458172196214126,0.3485225075945871,0.3454474404064087,0.0,1.6085775327716714,57.07516605243287,172.64160337902914,261.36540421747094,fqhc6_80Compliance_implementation_low_initial_treat_cost,58 -100000,95725,44954,425.2494123792113,6093,62.14677461478193,4795,49.4437189866806,1843,18.803865238965788,77.31464774318667,79.68004940341444,63.30648041847581,65.05572905348059,77.08275269803977,79.45280219133905,63.218847759097926,64.97303551183781,0.2318950451468993,227.24721207539744,0.0876326593778813,82.69354164278298,167.01718,116.98098197669584,174476.03029511624,122205.25670064858,364.70955,236.46846199409683,380357.13763384696,246389.52044658404,377.3133,183.2100862984209,390761.7654740141,188703.5581831597,3100.91655,1421.8340560190773,3197535.9101593103,1443532.754941394,1137.65277,501.9120087147575,1172633.2619482891,508500.83960800007,1803.27368,765.5508632565184,1841765.4949072865,763744.3690101928,0.38105,100000,0,759169,7930.728649778011,0,0.0,0,0.0,31069,323.8861321493863,0,0.0,34426,356.1347610342126,1563547,0,56138,0,0,6626,0,0,67,0.6999216505615043,0,0.0,1,0.0104465917994254,0,0.0,0.06093,0.1599002755543891,0.3024782537337929,0.01843,0.3374511336982017,0.6625488663017983,24.45533991828905,4.374789476123978,0.3338894681960375,0.2356621480709071,0.2171011470281543,0.2133472367049009,11.25062695282417,5.839927529235199,19.72941989614564,12249.546147828109,54.24179878557277,13.586196380805806,17.988593596643135,11.397766882244683,11.26924192587915,0.5645464025026069,0.7902654867256638,0.6901936289818863,0.5609990393852066,0.1221896383186705,0.7320872274143302,0.927765237020316,0.8469387755102041,0.7336244541484717,0.1318181818181818,0.5032754201082312,0.7016011644832606,0.6393713813068652,0.5123152709359606,0.1195516811955168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413716253862,0.0047348196814388,0.006953044113766,0.0093689665684381,0.0115672211200976,0.0139064346550389,0.0161189949092541,0.0184599048416409,0.0204444626173001,0.0225420744441259,0.0243919944223434,0.0265635749417285,0.0287609936738157,0.030964697153927,0.0331664516129032,0.0350991460413952,0.0374562475405422,0.0396505027654695,0.041416242071332,0.0434551591931988,0.058243100729866,0.07256950259588,0.0855898861669202,0.0986180640275966,0.111032606403172,0.1267243568043331,0.1389752788952457,0.1511931255523729,0.1620058580805165,0.1720448570048827,0.184516170777211,0.197317239660646,0.2088394539888662,0.2187787664927892,0.2281713435139754,0.2387572453307868,0.2488366369859949,0.2568744219620582,0.2646138796309988,0.2723795301820688,0.2795458235717102,0.2865079644150638,0.2920105293113261,0.2976156173462037,0.3030888969962301,0.307729319597804,0.3126071880124682,0.3173599358688875,0.3217086363518724,0.3259766114253319,0.3248946851320978,0.3238586358635864,0.3234387968993993,0.3220908920350406,0.3211686421293408,0.3184908433882525,0.3154628075619874,0.3163427895592752,0.3165928787542093,0.3170757832723377,0.3175644028103044,0.3175659661873913,0.3188599607171214,0.3207643937028943,0.3211141232636806,0.3221942156276797,0.3231610111591892,0.3259445054083712,0.3298940225945228,0.3325807984790874,0.3339698995134815,0.3345697329376854,0.3380192901720986,0.3384204502098435,0.3404295403165034,0.3424041646947468,0.345607333842628,0.3498977505112474,0.3554083885209713,0.3526213592233009,0.0,2.4437395713699885,55.96115414457624,180.36291552698648,259.9304510940909,fqhc6_80Compliance_implementation_low_initial_treat_cost,59 -100000,95813,44501,421.1119576675399,5999,61.34866876102408,4752,49.00170123052195,1893,19.3815035537975,77.3504688262772,79.68037611453036,63.33176974345843,65.0590932387255,77.11394801511439,79.44445290102047,63.24450545816856,64.97412260483588,0.236520811162805,235.9232135098921,0.0872642852898692,84.97063388961124,166.48566,116.63849975469056,173761.0345151493,121735.56798627594,362.24445,234.1788886754764,377482.5649963992,243820.5762010128,366.4063,176.914681495758,378029.2131547911,181451.45642024692,3099.24091,1423.266544794642,3199547.128260257,1450333.1748245454,1125.01471,495.953967106869,1157518.7813762224,500969.13797522977,1844.43704,771.0902165465429,1890223.2682412616,777916.0680749967,0.38112,100000,0,756753,7898.228841597695,0,0.0,0,0.0,30797,320.80197885464395,0,0.0,33619,346.4978656340997,1574467,0,56545,0,0,6452,0,0,71,0.7305897947042677,0,0.0,1,0.0104369970672038,0,0.0,0.05999,0.1574044920235096,0.3155525920986831,0.01893,0.3326449563145353,0.6673550436854646,24.386270826691412,4.314182194188796,0.3103956228956229,0.2428451178451178,0.2316919191919192,0.21506734006734,11.373663512317451,6.01834147603007,20.124812190822443,12282.588667469316,54.10756059628176,14.034363548535609,16.637758659595654,12.24221097945005,11.19322740870046,0.577020202020202,0.8180242634315424,0.6989830508474576,0.5821980018165305,0.1232876712328767,0.7259651778955337,0.9272727272727272,0.8556701030927835,0.6861313868613139,0.1415525114155251,0.5196735645584378,0.7507002801120448,0.6430542778288868,0.5477629987908101,0.1183063511830635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678789229491,0.0047554830009227,0.007053689231706,0.0093677290877132,0.0116158431149175,0.0136888635391415,0.016011422161032,0.018370639653623,0.0205001840415524,0.022562086685912,0.0247021184963392,0.0264725211533722,0.0284142328259975,0.0302783756784312,0.0324047813038231,0.0345935669191266,0.0366452040330427,0.0385852090032154,0.0403333922243122,0.0424435491426965,0.0570832464010014,0.0710320240049348,0.0845235724989259,0.096439340610849,0.1087803952968941,0.1242338419917994,0.1370542767168895,0.1496346094522865,0.1602950753168003,0.1712206934979212,0.1839027277129176,0.1965970878509118,0.2079011111955943,0.2184784865739172,0.228682682154171,0.2388380492344508,0.2483846128092671,0.2566670417463711,0.2652512063582174,0.272200396302702,0.2800060174041844,0.2865296002619699,0.2927674779048994,0.299949684931835,0.3059049424574963,0.3111755273220673,0.3153931922676989,0.3189762796504369,0.3239098874889822,0.3280793774524699,0.3269938898555416,0.3259715731281966,0.3249710754296357,0.3234647218845864,0.3223877933434461,0.3213951848957136,0.3192568638640543,0.320090731274347,0.3210891562970053,0.3225103196869248,0.3243030722857731,0.3249738354297901,0.3258803332914625,0.3274601435502985,0.328112217891343,0.328857835597153,0.3281525761457444,0.3309772877202903,0.3346381015622269,0.3351430609495126,0.3375946325762727,0.3389320234511171,0.3418776635748308,0.3446165470343785,0.3477691516228604,0.3489301669409828,0.3517984519653969,0.3557692307692308,0.358884073672806,0.3657424990505127,0.0,2.271198689129712,57.968954348189456,174.53650271157383,258.0888451688542,fqhc6_80Compliance_implementation_low_initial_treat_cost,60 -100000,95720,44706,423.0150438779775,5948,60.90681153363978,4647,47.99414960300878,1824,18.66903468449645,77.30949638025908,79.67073279363777,63.31695901961641,65.05995898553968,77.08064730236667,79.44438746821031,63.232733103151006,64.97946245859299,0.2288490778924057,226.34532542745944,0.0842259164654066,80.49652694668907,166.49754,116.73455839225832,173942.2691182616,121954.19806963883,362.00446,235.79164485317716,377616.1199331383,245769.91611780552,376.63698,182.56253115225385,390692.2064354367,188477.4892227196,3030.46093,1393.5016946955272,3130577.277475972,1421091.7944179669,1101.3332,491.4733833679857,1135342.5929795238,498233.5513805816,1778.48208,742.6859030658923,1821919.619724196,743660.3939577721,0.37861,100000,0,756807,7906.4667781028,0,0.0,0,0.0,30872,321.9285415796072,0,0.0,34420,356.7697450898454,1565976,0,56216,0,0,6673,0,0,67,0.6999582114500627,0,0.0,0,0.0,0,0.0,0.05948,0.1571009746176804,0.3066577000672495,0.01824,0.3281500480923373,0.6718499519076627,24.239029134207044,4.243218744561206,0.3225737034646008,0.2438132128254788,0.222724338282763,0.2108887454271573,11.207582918135364,5.954384162672544,19.480881915203227,12187.806792166324,53.19136694207827,13.722733386172097,17.126924645910314,11.647975463474996,10.693733446520866,0.5788680869378093,0.8005295675198588,0.694462975316878,0.5990338164251208,0.1244897959183673,0.7577881619937694,0.923963133640553,0.8753117206982544,0.7419354838709677,0.1840796019900497,0.5105560511448112,0.7238912732474965,0.6284153005464481,0.554002541296061,0.1091142490372272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166486059488,0.004561673830184,0.0068277737196656,0.0092427074022913,0.0114064962130839,0.0135678443107677,0.0154818325434439,0.0174344422101319,0.0198172601283676,0.022044600914943,0.0241597392347195,0.0264081976302441,0.0283190572653703,0.0305246029947889,0.0326722564277095,0.0348087533320934,0.0369898883265542,0.038932619810626,0.0408144175604889,0.0430108646965072,0.0571613549977026,0.0712237293812275,0.0845045309615707,0.0968264316810027,0.1090583148792576,0.1250489133308656,0.1369534540747578,0.148374048645484,0.1594154907762479,0.1694259183804765,0.1817966368268536,0.1927940412263987,0.2040327758251085,0.2147992515019205,0.2244963117912584,0.2355373274954275,0.2451135881341166,0.2541645548234499,0.2627603752583876,0.2708082648605906,0.2779970599469864,0.2857426947102449,0.2917485497809873,0.2986304326969202,0.3041296609036898,0.3091406799097399,0.313817740462218,0.3185659378420342,0.3221296500252666,0.3259568508805538,0.3249474195114059,0.3235358933392099,0.3223803947572624,0.3212229903676492,0.3203012218534669,0.3181783308526799,0.3164094748206007,0.3176770584848236,0.3183764343209453,0.3186848608574191,0.3191201607904277,0.3196371503999682,0.3205845248107653,0.3209724123998294,0.323402918720402,0.324068026855456,0.3246380966031245,0.3278910706968828,0.3298269068392907,0.3334787955726584,0.3368828213879408,0.339600594858721,0.343267594984563,0.3464908938504915,0.3504844323205719,0.3502005189903279,0.3495115995115995,0.3583980384143849,0.3649315068493151,0.3702857142857143,0.0,2.11200706470026,56.55903115545132,179.00725271621027,245.7398907482494,fqhc6_80Compliance_implementation_low_initial_treat_cost,61 -100000,95727,44837,424.2272295172731,6047,61.884316859402254,4764,49.10840201823937,1840,18.793026001023744,77.40440741590693,79.76056979889545,63.3594678928421,65.09877068862164,77.17630649386713,79.53472565987441,63.27519335161983,65.01781016657984,0.2281009220398004,225.84413902103503,0.084274541222264,80.96052204180637,167.6136,117.40187337857814,175095.42762230092,122642.3823775718,366.25943,237.6474861707333,381853.4373792138,247502.21458455757,373.15769,180.520295421872,384887.7014844297,184883.524786312,3123.93372,1423.716923239121,3222943.610475623,1446894.2127896135,1131.77996,498.4676657243865,1166890.2608459473,505341.0814140852,1808.75914,756.7223043708561,1850474.8503556992,759198.5067876651,0.38135,100000,0,761880,7958.883073740951,0,0.0,0,0.0,31181,325.0284663679004,0,0.0,34103,351.3951131864573,1566184,0,56123,0,0,6617,0,0,78,0.8043707626897322,0,0.0,0,0.0,0,0.0,0.06047,0.1585682443949128,0.3042831155945096,0.0184,0.3350197628458498,0.6649802371541502,24.42696662886117,4.360440346219155,0.3213685978169605,0.2350965575146935,0.2212426532325776,0.2222921914357682,11.247938285899457,5.846742313616182,19.6388955329684,12254.925472645273,53.89623798112535,13.402649076575557,17.263380759242256,11.639187724693771,11.59102042061377,0.5644416456759026,0.7892857142857143,0.7008491182233834,0.5853889943074004,0.1085930122757318,0.7531152647975078,0.9257425742574258,0.888095238095238,0.7890295358649789,0.147982062780269,0.4948275862068965,0.7122905027932961,0.6300630063006301,0.5263157894736842,0.0980861244019138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400862636305,0.0048239168989105,0.0069795280702822,0.0089676534809323,0.0107775055158459,0.0129377035830618,0.0151847133757961,0.0173668153015724,0.0194335458558116,0.0215093374264517,0.0238185526437158,0.0262026212884751,0.0285799467467179,0.0307449865587244,0.0328628324975752,0.0350431061216895,0.0369077823227877,0.0393045715293409,0.0416008480212836,0.0433279173436653,0.057787475726128,0.0715690993951317,0.0854067889061385,0.0983441097618672,0.1107269718465738,0.1255009357850549,0.1373102343493067,0.1484036494096856,0.1594111551486534,0.1706163678476452,0.1832356995175741,0.1952285637002975,0.2066531819565879,0.2171797787204268,0.2277332277332277,0.238072566626438,0.2476546377377433,0.2567085989230268,0.2648766328011611,0.2725431409346821,0.2797393474443109,0.2858310086024768,0.2923184077252712,0.2981087442204991,0.3039286925349997,0.3087102362785211,0.3132751320768856,0.3184570275313202,0.3229672486827151,0.3266414955336587,0.3242778911199399,0.3243729074043581,0.3238756074950136,0.3220790823678598,0.321739001673256,0.3205073414939406,0.3184401641932428,0.3190124830260294,0.3199380182880106,0.3209094628974008,0.3214445939883356,0.3233435994630024,0.3236966428362389,0.3237766135324936,0.3251372013324706,0.3273100722791326,0.3281050571517713,0.3326029112537173,0.3362460678084585,0.3385490753911807,0.3427213040525243,0.3478536688517657,0.3497656982193065,0.3566676746295736,0.3594637370822083,0.3617071168952984,0.3671040585901739,0.3708769106999195,0.3741721854304636,0.375833660258925,0.0,2.518806983322211,55.97056884313046,177.96337530875584,257.97016276367134,fqhc6_80Compliance_implementation_low_initial_treat_cost,62 -100000,95751,44705,421.979927102589,5998,61.43016783114536,4721,48.74100531587137,1901,19.51937838769308,77.33232137485312,79.6981795358358,63.31916690730778,65.07131133166034,77.09432025416271,79.46046853408959,63.23170065466197,64.98606354738102,0.2380011206904129,237.7110017462201,0.0874662526458109,85.24778427931778,167.87166,117.54724061563772,175320.82171465573,122763.2302698016,362.19893,234.85533766565493,377678.5934350555,244684.34150391983,368.75443,178.73590846572696,381551.451159779,183952.0054635146,3085.6646,1417.060194995814,3188578.9495671066,1445959.2131869642,1110.25301,497.3430264725882,1144613.8108218191,504604.22673449205,1857.30216,780.4411828009523,1908246.4935092065,788558.2231973542,0.38017,100000,0,763053,7969.128259757078,0,0.0,0,0.0,30848,321.5527775166839,0,0.0,33723,348.6229908826017,1565250,0,56203,0,0,6750,0,0,73,0.7623941264320999,0,0.0,0,0.0,0,0.0,0.05998,0.1577715232659073,0.3169389796598866,0.01901,0.3314258464473056,0.6685741535526943,24.519651476113413,4.274751180387563,0.3283202711289981,0.2334251217962296,0.2192332133022664,0.2190213937725058,11.294983796125257,6.027478833819556,20.236058591400436,12258.382038682916,53.60238075565516,13.223911092401552,17.41917973162905,11.461870645570546,11.497419286054006,0.5536962507943233,0.7967332123411979,0.6703225806451613,0.5594202898550724,0.1141199226305609,0.7285714285714285,0.9343434343434344,0.8432835820895522,0.7288135593220338,0.163716814159292,0.4900317827217567,0.7195467422096318,0.6097560975609756,0.509386733416771,0.1002475247524752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023612631237585,0.0046759780502895,0.0071176183900576,0.0093401902593706,0.0118723040612028,0.0140992858670958,0.0162356204617769,0.0185402607479402,0.0208476049281734,0.0228501228501228,0.0251776066921586,0.0272467815124325,0.0292647814910025,0.0314946032792288,0.0335200718066173,0.0356360329075199,0.0379581693932491,0.0402311371157656,0.0421914619445483,0.0441266832606046,0.0580498345459669,0.071524232024776,0.0856765288892151,0.0981967299300772,0.1099782805811526,0.1248876244063924,0.137262599469496,0.1495960746330612,0.1610419292137471,0.1707322303593064,0.183050956991911,0.1944853259458055,0.205848436718087,0.2169904186901168,0.2268010607744534,0.2373217291168394,0.2472941911584209,0.2561514834441556,0.2643935095881085,0.2725575749247031,0.2792126640283274,0.286446269390047,0.2919915289329531,0.298361009273237,0.3027697837358687,0.3081358814179573,0.3133781230842372,0.3179616279513293,0.3221113397791843,0.3254335641279261,0.3256527590847914,0.3253504271152867,0.3243745512396345,0.3232317398899845,0.3223492723492723,0.3215581235172572,0.319033960350538,0.3194939035397213,0.3206687707924592,0.3212455585908904,0.3222072122781342,0.3225768134304719,0.3234775674654803,0.3238332101006027,0.3249186256781193,0.3259734836621776,0.3258756804514492,0.3286183379641323,0.3313990293310825,0.3332534643185176,0.3356448743099594,0.3380853222275615,0.3396059050877526,0.3405330882352941,0.3400018784634169,0.3398138329209379,0.3370140674633187,0.3393963621826903,0.3476722025592159,0.3481085212074895,0.0,2.09727974162212,55.3293579946988,176.55308299750905,260.6359542020947,fqhc6_80Compliance_implementation_low_initial_treat_cost,63 -100000,95729,44529,422.849920086912,6031,61.99793166125208,4746,49.03425294320425,1836,18.85531030304297,77.41699606751023,79.76992180095334,63.36600846061516,65.10046540028385,77.18639725793767,79.54100904499023,63.28063495285733,65.01830168378717,0.2305988095725553,228.91275596310837,0.0853735077578292,82.1637164966802,166.81764,116.81048511531674,174260.2972975796,122022.04673120656,361.58543,233.7077845807396,377191.3840111147,243608.4097616601,362.10009,174.5788008959031,374595.0756823951,179571.08717396657,3129.38639,1412.0945931812064,3235300.0553646227,1441390.3761464208,1129.10748,496.0282465614956,1162311.5774739108,500987.1789755408,1800.8541,753.2410159449904,1850322.765306229,758546.1151117159,0.37973,100000,0,758262,7920.922604435437,0,0.0,0,0.0,30830,321.5013214386445,0,0.0,33163,342.8428167013131,1574582,0,56507,0,0,6568,0,0,73,0.7625693363557543,0,0.0,0,0.0,0,0.0,0.06031,0.1588233745029363,0.304427126513016,0.01836,0.328395839899149,0.6716041601008509,24.552737281816192,4.39616805179184,0.3217446270543616,0.2345132743362832,0.2168141592920354,0.2269279393173198,11.213755363111972,5.769943860932406,19.392228718928827,12229.822706091363,53.4436716411316,13.346149958569576,17.054362991203906,11.343997939881316,11.699160751476787,0.5583649388959123,0.7960467205750225,0.6817288801571709,0.5860058309037901,0.1114206128133704,0.7244224422442245,0.9073170731707316,0.8442622950819673,0.7647058823529411,0.1302325581395348,0.5014148273910582,0.7311522048364154,0.6304909560723514,0.5371287128712872,0.1067285382830626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026012672321302,0.0044980700847947,0.006531970139565,0.0088851430254165,0.0109809663250366,0.0128463527351941,0.0149631018877155,0.0170034700959379,0.018660453328428,0.020819053270177,0.0232815510103701,0.0254110306040764,0.0275087892431999,0.0292057999670456,0.0313608979120244,0.0335947752942513,0.0356044684177287,0.0374722562177186,0.0394200789856578,0.0413780171470836,0.0560190454312892,0.0706251634841747,0.0837302503199815,0.0965777628202431,0.1081568511643604,0.1235180269266972,0.1363443506300649,0.1482869094121529,0.1601072580817469,0.1697354451962981,0.1829223645956713,0.1952763231921062,0.207297191548561,0.2173699330413221,0.2269810574429745,0.2376832439010897,0.247890683340578,0.256790622927975,0.2651180191823685,0.2719034269695062,0.2792065932287633,0.286128214415067,0.2925428176305805,0.2979319258940112,0.3031383824046778,0.3082964057114721,0.313225608917882,0.3178393077245638,0.321654362806573,0.3270426989984185,0.3257861973459537,0.3247441796579905,0.3236250052762652,0.3239581076200794,0.3237625820244069,0.3212079510703364,0.3201458724720963,0.3211517708231139,0.3226256270725278,0.3241007066510422,0.325450072682545,0.324752397421789,0.3252429208891113,0.3251815819284334,0.3263573307821095,0.3284461282956197,0.330563276419536,0.3342711557097752,0.3397529830437513,0.3426181646019096,0.3452122854561879,0.347906338993777,0.3511269276393831,0.3530616890507626,0.3555679598102149,0.361214953271028,0.364185414464744,0.360015929908403,0.3620689655172414,0.3614637789395071,0.0,2.108535378277929,53.17424394941676,179.44531459400454,263.8543274471121,fqhc6_80Compliance_implementation_low_initial_treat_cost,64 -100000,95697,44740,423.3257050900237,6040,62.00821342361829,4731,48.85210612662884,1830,18.8198167131676,77.3508434030137,79.74227451433273,63.31502979323547,65.0830160003433,77.1250863990459,79.51760855220175,63.23127030738424,65.00225538757887,0.2257570039678,224.66596213098452,0.0837594858512247,80.76061276443625,167.59336,117.42891117971092,175128.9382112292,122708.87320569178,362.01633,234.2508316912689,377708.2144685832,244199.10644142333,370.90438,179.34581917663655,384028.7156337189,184660.9448494782,3114.6907,1422.5814868110233,3220225.9109480963,1452065.229270534,1135.39557,498.7523080707062,1175008.3806179925,509763.0954679428,1799.15134,756.9411491651526,1851894.9601345917,765844.5735311168,0.38013,100000,0,761788,7960.406282328599,0,0.0,0,0.0,30788,321.1281440379531,0,0.0,33879,350.4498573622997,1565893,0,56187,0,0,6635,0,0,70,0.731475385853266,0,0.0,1,0.0104496483693323,0,0.0,0.0604,0.1588930102859548,0.3029801324503311,0.0183,0.3274280291047137,0.6725719708952863,24.568277122152285,4.333354599159337,0.3265694356372859,0.2350454449376453,0.2134855210314944,0.2248995983935743,11.173703994091078,5.696139427050565,19.51569375151625,12209.362332621671,53.603872897986754,13.237349481196745,17.499392302239144,11.180009043260611,11.687122071290242,0.5658423166349609,0.8048561151079137,0.7009708737864078,0.5673267326732673,0.1184210526315789,0.7351778656126482,0.9310344827586208,0.8615384615384616,0.7298387096774194,0.1583710407239819,0.5040392383150606,0.7322946175637394,0.6467532467532467,0.5144356955380578,0.1079478054567022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0048067659794546,0.0070145874996193,0.0094316611106594,0.011658426417628,0.0138953974042908,0.0158626528884309,0.018240496762465,0.0202493326924453,0.0221625939657114,0.0242846887498718,0.0265609432935158,0.028553795515326,0.0304972284613324,0.0327670904887714,0.0348595589831594,0.0371318158742657,0.0391322399833921,0.0413797407784966,0.0432072383851229,0.0575529048026906,0.0715362707321159,0.0845938257738776,0.0977128789950975,0.1098475657998839,0.125641378288882,0.1377791457926467,0.1494180660412518,0.1602321554543705,0.1704456438926505,0.1833144704931285,0.1957347767253044,0.2067746077343256,0.2172599831471125,0.2266331990223924,0.2365281412161263,0.2456485089374434,0.2552178318135765,0.2640993027006155,0.2713424418871212,0.2780948632159024,0.2855687725378167,0.2932437715463624,0.2987598647125141,0.3040471560525036,0.3093418782351491,0.3138007804682809,0.3191281014332405,0.322807653001824,0.3250504757254648,0.3238214569607803,0.3223995597138139,0.3213607127274774,0.320554272517321,0.3193466629118558,0.3174295102009628,0.3155865904135991,0.3149379360036681,0.3160371728195072,0.3170757756457039,0.3174606141023005,0.3184941621217192,0.3192549952029366,0.3197640774538171,0.3207660083782166,0.3228258613532586,0.3228539954241166,0.3269470404984423,0.3289501147985806,0.332628031816935,0.3348609426247922,0.3392453028787958,0.3406285072951739,0.3430452550325412,0.3475369919460573,0.3517576044502308,0.3489892080863353,0.3495222929936306,0.3490693282978149,0.3519296904852885,0.0,2.277620594419666,55.477670640055294,176.59259849034532,259.0762896073297,fqhc6_80Compliance_implementation_low_initial_treat_cost,65 -100000,95714,44177,418.9564744969388,5967,60.973316338257725,4672,48.15387508619429,1849,18.93139979522327,77.26691653433518,79.62563221501051,63.2951211478972,65.03851706265942,77.03618334190818,79.39673111140006,63.20972038231223,64.95599955425638,0.2307331924269959,228.901103610454,0.0854007655849713,82.5175084030434,165.90266,116.17078192492892,173331.6547213574,121372.82103446616,356.50853,230.5973511756733,371826.72336335335,240277.3378770853,361.27486,175.11958286327348,372245.7320768121,179000.2589140814,3042.30178,1393.6228562473873,3139336.31443676,1416932.8567108084,1111.77969,497.20147184065655,1144505.3283741144,502457.2259735958,1812.42296,758.8608556085633,1857688.4259356,764228.9941521047,0.37767,100000,0,754103,7878.711578243518,0,0.0,0,0.0,30398,316.9128863071233,0,0.0,33053,340.21146331780096,1576508,0,56596,0,0,6543,0,0,62,0.6477631276511273,0,0.0,1,0.0104477923814697,0,0.0,0.05967,0.1579950750655334,0.3098709569297804,0.01849,0.3356822549647661,0.6643177450352338,24.585152738508533,4.30704689460667,0.3174229452054795,0.242722602739726,0.2206763698630137,0.2191780821917808,11.362078698773937,5.979855473802315,19.696342890395638,12158.071113871938,53.1768453272112,13.670804235897709,16.81929090495558,11.528739984392846,11.158010201965071,0.5747003424657534,0.8174603174603174,0.693863789615644,0.5926285160038798,0.115234375,0.7533073929961089,0.9404761904761904,0.854679802955665,0.7795918367346939,0.1635514018691588,0.5069382934750517,0.7450980392156863,0.6332404828226555,0.5343511450381679,0.1024691358024691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991532633796,0.0043800504922487,0.0067175386613629,0.0088987312197153,0.0110957427333563,0.0132263549631922,0.0151995514552219,0.0174661344820898,0.019494392934177,0.0216999672453324,0.0238229475259602,0.0260461582686542,0.0281968224587382,0.0302921061305207,0.0322507428194123,0.0341530478287385,0.0359961062899985,0.0378270703214159,0.0397077014230325,0.041572460068558,0.0568758483867599,0.0705987021142976,0.0841387271105514,0.096840377513336,0.1083598843711096,0.1234603174603174,0.1356702300449049,0.1474243602168287,0.1584175354183373,0.1690585318205725,0.1818789414110925,0.1937678772644535,0.2047847723585203,0.2144429477280941,0.2241360310323547,0.2341984326088404,0.2439359881906934,0.2532000721143012,0.2621073558648111,0.2704679368136277,0.2775296241436771,0.2842797621834184,0.2910051030677607,0.2967271506182315,0.3026427755221123,0.3083412474253506,0.3131751083932733,0.3174702248264441,0.3221998832609118,0.3262862661568788,0.3250536893715304,0.3232597951238368,0.3216808907477533,0.3199872572727668,0.3191917086100604,0.3176275455355223,0.3162895640015253,0.3172805933250927,0.318256663579294,0.3192103047349469,0.3209883502442691,0.3230506928887214,0.3231591798930661,0.3230562100302928,0.3237987099267992,0.3251119315057733,0.3259180689734254,0.3298270071605095,0.3353235952660198,0.3379504731226092,0.3424165707710011,0.3428678759257271,0.3430962343096234,0.3470152105786134,0.349664873029359,0.350887573964497,0.3529770992366412,0.3551912568306011,0.3619648737650933,0.3588756257219869,0.0,2.6088969824793296,55.93189017630581,172.6346834763546,254.93602496008847,fqhc6_80Compliance_implementation_low_initial_treat_cost,66 -100000,95698,44596,422.2554285356016,6110,62.56139104265503,4793,49.44721937762545,1931,19.697381345482665,77.288290147924,79.65969476905344,63.294707477804174,65.04472105085983,77.0501003242428,79.42220074730331,63.20723384248565,64.96020876868182,0.2381898236811963,237.4940217501376,0.0874736353185241,84.51228217801088,167.6367,117.45488077907424,175172.62638717634,122734.93780337543,363.80909,235.7774201736736,379497.5443582938,245710.5877658274,371.87121,180.04882118085854,384869.6524483271,185269.58436244985,3166.98382,1445.4618767630411,3268482.51792096,1469589.0087773215,1148.09637,510.12100559498566,1184411.68049489,517786.4771409698,1892.37972,785.3874458861104,1932871.4079709083,784306.7255126402,0.3791,100000,0,761985,7962.392108508016,0,0.0,0,0.0,31037,323.6431273380844,0,0.0,34001,351.55384647537045,1559402,0,56024,0,0,6620,0,0,61,0.6374218896946645,0,0.0,0,0.0,0,0.0,0.0611,0.1611711949353732,0.3160392798690671,0.01931,0.3311093871217998,0.6688906128782002,24.53431426269582,4.3340174044281525,0.3194241602336741,0.2311704569163363,0.2247026914249947,0.2247026914249947,11.380616632268367,5.98065364597597,20.49037674265777,12248.562952914714,54.51220273883279,13.356977988649824,17.337052149202737,12.046306648289402,11.771865952690828,0.5731274775714583,0.7951263537906137,0.7073807968647943,0.6016713091922006,0.1253481894150417,0.7602523659305994,0.9346246973365616,0.8653366583541147,0.7609561752988048,0.1970443349753694,0.5058156028368794,0.7122302158273381,0.6513274336283186,0.5532687651331719,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698842402698,0.0044606198234,0.0066668019645249,0.0091326520246246,0.0112887478642909,0.0134916351861845,0.0156603658163577,0.0180370540499157,0.0202598411513968,0.0222074400040935,0.0242790087523315,0.0265340477510213,0.0286339988895971,0.0307003089598352,0.0325219185146982,0.0346730604272382,0.0369852659480839,0.0389900163971854,0.0408562334879657,0.0428252803601951,0.0573404077540107,0.0711660681192348,0.0846023866248255,0.0970291403133978,0.1096649566153651,0.1247670675927494,0.136959245651666,0.1486208623206162,0.1601141916238091,0.1707775403481267,0.1836778708766027,0.1960370081469925,0.2082557316342645,0.2185761835939211,0.2274149135367331,0.2380978797528042,0.2481551878354204,0.256959556212017,0.2653084439590941,0.2724548147807914,0.2796919758312362,0.2864494800886252,0.2932866801091211,0.2991677774975682,0.3044589708943505,0.3095314545409637,0.3151162936650391,0.3186520236227503,0.3232723352857903,0.3266291763149189,0.3256782998004207,0.3247779555359408,0.3237272804364418,0.3226016872988722,0.3211777860603801,0.3200994841562269,0.3176950292722397,0.3178357043006332,0.3185034176759803,0.3196418979409131,0.3203752091283343,0.3200618017589731,0.3220485016601521,0.3225027393278025,0.3237489499579983,0.3245912718010033,0.3257455042112451,0.3283230087104179,0.3315767284991568,0.3346052945385165,0.3375228519195612,0.3406001812270134,0.3394172068726792,0.3401598781880472,0.3421837152971865,0.3479995306816849,0.35300348010289,0.3541666666666667,0.3554655870445344,0.3566616766467065,0.0,2.3536788691478963,55.4083648276501,184.5219133745882,260.83272720341887,fqhc6_80Compliance_implementation_low_initial_treat_cost,67 -100000,95834,44916,423.5866185278711,6085,62.25347997579147,4732,48.84487760085147,1861,19.06421520545944,77.36488025655099,79.67845519414263,63.35773544642036,65.07073880471992,77.13698344018647,79.45355818721507,63.273060376103984,64.98965546526652,0.2278968163645203,224.89700692756287,0.0846750703163721,81.08333945340007,168.23334,117.84757902768116,175546.6118496567,122970.53136431868,361.23204,234.2624018633059,376410.219754993,243921.08423242887,369.45877,179.22626213712115,382442.09779410233,184534.3363744955,3115.79255,1423.324723171919,3218094.893252916,1452053.7942399555,1145.7988,509.489149914638,1178235.3027109378,514288.6636167469,1824.65784,762.2323000142754,1870764.3007700816,766524.4261495274,0.38247,100000,0,764697,7979.391447711668,0,0.0,0,0.0,30816,320.9925496170461,0,0.0,33796,349.54191623014793,1566459,0,56201,0,0,6703,0,0,60,0.6260826011645136,0,0.0,1,0.0104347100194085,0,0.0,0.06085,0.159097445551285,0.3058340180772391,0.01861,0.3278457196613358,0.6721542803386642,24.63242024436537,4.327587692212374,0.3159340659340659,0.2356297548605241,0.2248520710059171,0.2235841081994928,11.25530651943686,5.871357787627908,19.752287698111623,12380.672150685768,53.660688484429066,13.45266462148019,16.831326426793705,11.910251085435789,11.46644635071938,0.5650887573964497,0.7910313901345292,0.6996655518394649,0.5657894736842105,0.1361058601134215,0.7468152866242038,0.9361702127659576,0.8962765957446809,0.692,0.1545893719806763,0.4994246260069045,0.7023121387283237,0.6336014298480787,0.527027027027027,0.1316098707403055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.004511537369723,0.0068694699245068,0.0092837118595863,0.0114397860505791,0.0135930436199242,0.0157189749026483,0.0178961553382199,0.0200462054301602,0.022345053482778,0.0246484647234862,0.0267438399885061,0.0287978293713193,0.031082750102923,0.0332529325664337,0.0354090101994466,0.037360750524933,0.0395897010827332,0.0422182765888961,0.044258559880146,0.0589634203581821,0.0730741089160656,0.0864568710846655,0.0997070220206029,0.1123479542941393,0.1277797723384933,0.1403222560038984,0.1523047157375515,0.1636600275238166,0.1740397180745088,0.187315761161915,0.1991308296036842,0.2105669151039742,0.2212247305134169,0.2304192538051541,0.2399836332068961,0.2490781279591814,0.2580800934348539,0.2675831455457541,0.2748725218942217,0.2815849039172209,0.2879755331691316,0.2946173294581886,0.3011947331284308,0.3071760579618685,0.3116283649881217,0.3161933806619338,0.3205898416166029,0.3255480301933616,0.329652104092351,0.3285190310488909,0.3276461295418641,0.3267650039409976,0.325299290944012,0.3254013079667063,0.3230550066632967,0.321531024645376,0.3222152814308259,0.3213992192315595,0.3222407099278979,0.3238199160912836,0.3235539322720235,0.3246106311873384,0.3250414965681216,0.3268745342212178,0.3295247039181927,0.3293401246336397,0.3326205226579452,0.3350200295171832,0.3371578821560894,0.3397089777615082,0.343272416372769,0.3459507602264775,0.3468870099923136,0.3488791793313069,0.3496611580073713,0.3528778085564789,0.3516326530612245,0.3524386883438964,0.3525541795665635,0.0,1.9930440399940608,55.070927087851246,181.51470753075893,256.12783497952097,fqhc6_80Compliance_implementation_low_initial_treat_cost,68 -100000,95630,44702,424.61570636829447,5953,61.08961622921677,4657,48.0288612360138,1833,18.75980340897208,77.2563444549925,79.6683869515833,63.27473565930678,65.05632897528531,77.03627971167232,79.44871277147482,63.19333206324254,64.97740195935499,0.2200647433201794,219.67418010848405,0.0814035960642343,78.92701593031859,167.1978,117.19398129402067,174838.23068074873,122549.38962043363,362.25157,234.47348059168652,378138.8790128621,244521.7197445222,365.78805,176.94553279378357,378195.06431036285,181725.2078226766,3047.48089,1384.8483424698552,3148438.293422566,1409828.4978248004,1103.71172,483.53986085163166,1139468.754574924,490956.9286328887,1797.8621,748.8451211282222,1842970.218550664,751844.4126828905,0.37984,100000,0,759990,7947.1923036703965,0,0.0,0,0.0,30906,322.49294154554013,0,0.0,33510,346.04203701767227,1563368,0,56150,0,0,6597,0,0,57,0.5960472655024575,0,0.0,3,0.0313709087106556,0,0.0,0.05953,0.1567238837405223,0.3079119771543759,0.01833,0.3282836422240129,0.6717163577759871,24.664529177481256,4.290930462526116,0.3137212797938587,0.2452222460811681,0.2200987760360747,0.2209576980888984,11.156737092567004,5.766471048122405,19.440350090034336,12216.060402270869,52.89937141750053,13.713817059008768,16.574313592604,11.354226939262436,11.257013826625313,0.5673180158900579,0.7819614711033275,0.7056810403832992,0.5853658536585366,0.1146744412050534,0.7444168734491315,0.924757281553398,0.8783783783783784,0.7090909090909091,0.1835748792270531,0.5052204176334106,0.7013698630136986,0.6471127406049496,0.5515527950310559,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0043278635354692,0.0067384487360334,0.0087267481434071,0.0107437175704547,0.0131617819341299,0.0152705239105598,0.017501736891577,0.0196898717345498,0.0217591738889913,0.0238056148415695,0.0258457680766226,0.0278781514767802,0.0298993731441768,0.0321364378241018,0.0340949069762629,0.0359712230215827,0.0378846113892755,0.0399887619404382,0.0418996161548731,0.056152415191355,0.0703884512236004,0.0840393478420627,0.0963799618943357,0.108848203450641,0.1246931087030138,0.1372426236467841,0.1492998242905063,0.1602304428221763,0.1700846720968417,0.1834725890787558,0.1952524891387959,0.2068052847697988,0.2174699191268328,0.2271569265382197,0.2374741936199969,0.2466026150077734,0.2543983229456648,0.2627947945672558,0.2707743126842304,0.2788101503541495,0.2856087955365933,0.2926890008894159,0.2985610215666742,0.3036816162599647,0.3097440203499499,0.3144844876214352,0.3189238788280423,0.3235530650893714,0.3273087594133967,0.3260775745805686,0.3252651468134111,0.3244266719418971,0.3231933650388586,0.3231205250596659,0.3202836573960128,0.3177774953936082,0.3176106325861756,0.3177539592565873,0.3187560564189068,0.3191373139951026,0.3206584329454747,0.3224361939200269,0.3243188833713595,0.3242215698541797,0.3259991136369561,0.327775715876324,0.3313723022714402,0.3344766037867917,0.3369362948885457,0.3386048625312429,0.3410018552875696,0.3433249370277078,0.3448145344436033,0.3476815074819878,0.3509429541993674,0.3530380125710865,0.3496932515337423,0.3566452304394427,0.3554447852760736,0.0,2.60037317407738,52.58538488507041,178.9826936717382,256.99671410734305,fqhc6_80Compliance_implementation_low_initial_treat_cost,69 -100000,95690,44467,420.8381231058627,5926,60.65419584073571,4696,48.45856411328248,1885,19.30191242554081,77.32722884548278,79.7042661322715,63.32110870231941,65.07622353874844,77.09268523423907,79.47128197011212,63.23425290945063,64.99248177686749,0.2345436112437084,232.9841621593829,0.0868557928687892,83.74176188094395,166.82644,116.84116330270795,174340.5162503919,122103.83875296055,361.55329,233.99697331252747,377161.26031978265,243859.64396752784,363.82249,175.8315510869883,375921.4233462222,180431.54621926145,3071.24577,1401.3901895483828,3172803.8771031457,1427735.8653447423,1093.88394,482.0024628402909,1130359.9749190093,490918.5733517512,1849.36348,771.0091857771868,1896985.9546452083,775982.0150232789,0.38002,100000,0,758302,7924.5689204723585,0,0.0,0,0.0,30838,321.6532553035845,0,0.0,33368,344.55010972933434,1570795,0,56400,0,0,6588,0,0,63,0.6374751802696207,0,0.0,0,0.0,0,0.0,0.05926,0.1559391610967843,0.3180897738778265,0.01885,0.3276083467094703,0.6723916532905297,24.72852185766789,4.272192908361113,0.3179301533219761,0.233603066439523,0.2267887563884156,0.2216780238500851,11.190751028403952,5.8140431843164695,20.061582838133862,12271.783889722668,53.40600209772011,13.144816571059597,17.017827261804456,11.806734925709629,11.436623339146449,0.5640971039182283,0.7894257064721969,0.6972538513060951,0.5849765258215962,0.1143131604226705,0.7367130008176614,0.9209183673469388,0.8776041666666666,0.717741935483871,0.1256281407035175,0.5033112582781457,0.7163120567375887,0.6348061316501352,0.5446756425948592,0.1116389548693586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023994168505882,0.0048241124545205,0.0071319874201075,0.0093746508628132,0.0113177616660395,0.0134503578955942,0.0156119348194073,0.017832157119075,0.0201358067617041,0.022068612391193,0.0242236534438199,0.0265193143185809,0.0288315161489405,0.0307885707220064,0.0326023014603436,0.0345715526691348,0.0365911775065785,0.0386935351584805,0.0408991148233287,0.0428619079386257,0.0580438279471056,0.071699929880378,0.0848166990087585,0.0977601026838788,0.1099813304924741,0.1255369120416411,0.1377370705666344,0.1503540812523295,0.1612565445026178,0.1720431261063133,0.1841439112403727,0.1956201693043798,0.2073879087171231,0.2180028437055671,0.2277019590578912,0.238280427677137,0.2481639395495234,0.257343097881723,0.2655136411094466,0.2730021994134897,0.2806154344856329,0.2871402993458392,0.2935932949783365,0.299013674332762,0.3050077163306721,0.3105565556185732,0.3150473948485494,0.3193179937096507,0.3240812730005701,0.3279995775242924,0.3264354179867074,0.3249569944264777,0.3245837856125858,0.3232369942196532,0.322891100301962,0.3208117775287453,0.3185391833629216,0.3190606602272913,0.3192226317226317,0.3203691496374423,0.3203351474686267,0.3205398898908775,0.3212111066937289,0.3213511762471794,0.3213305733403938,0.3223945279866332,0.3249029458780543,0.3283497529193289,0.3331581160639192,0.3355720701029289,0.3397157610930859,0.3410571276027763,0.343540427685689,0.3461952344350499,0.3456895732344834,0.3443210318882121,0.3458044649730562,0.3520325203252032,0.3568464730290456,0.3618244538137217,0.0,2.452704346174639,53.31475192888351,184.54896045003304,253.8463230451002,fqhc6_80Compliance_implementation_low_initial_treat_cost,70 -100000,95787,44322,418.564105776358,5966,61.01036675122928,4663,48.179815632601496,1856,19.042249992170127,77.38146625236273,79.7030836462251,63.35451413110488,65.06716885463445,77.14575579747509,79.46933757569502,63.26705930601936,64.98310073153085,0.2357104548876378,233.74607053007423,0.0874548250855227,84.06812310359157,167.49326,117.37727997530324,174859.88704103898,122539.65566862232,357.13676,231.6848742466716,372335.4839383215,241366.2725926507,368.3366,178.40716881922935,381749.4962782006,184113.0757617376,3077.63535,1415.9561218185631,3180170.231868625,1445429.955665175,1099.99722,490.3750036719246,1134025.8385793478,497613.0312565762,1822.37308,768.2446911884034,1870856.504536106,773891.5788160474,0.37761,100000,0,761333,7948.176683683589,0,0.0,0,0.0,30478,317.6631484439433,0,0.0,33669,348.648564001378,1568849,0,56284,0,0,6699,0,0,64,0.6681491225322851,0,0.0,2,0.0208796600791339,0,0.0,0.05966,0.1579936972008156,0.3110962118672477,0.01856,0.3348249960044749,0.665175003995525,24.411075993329703,4.366541785273498,0.3124597898348702,0.236542998069912,0.2260347415826721,0.2249624705125455,11.110198623304235,5.624148082065422,19.741923579594246,12177.260870350545,53.08421760250573,13.280338304723555,16.565439562785468,11.727058138528845,11.51138159646786,0.5687325755951105,0.800543970988214,0.7110501029512697,0.594876660341556,0.1010486177311725,0.7361867704280156,0.8949880668257757,0.89,0.7131782945736435,0.1490384615384615,0.5050325636471285,0.7426900584795322,0.6433301797540208,0.5565326633165829,0.089179548156956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022679869590749,0.0047427946005107,0.0071616234365648,0.009159964253798,0.0114187519700651,0.0138648533094447,0.0162569308545335,0.0183471259910815,0.0203718839395177,0.0225180062203306,0.0244232266524607,0.026675421676858,0.0289701665861654,0.0310576269790615,0.0329707716892623,0.0350201383868635,0.0369435188442991,0.0392311360855952,0.0412424683149802,0.043241498511068,0.0575871425589647,0.0721169441334351,0.0849117949363371,0.0979732570851904,0.109992515364586,0.1257958751983077,0.1373308159022444,0.1490750005322206,0.1598393488501265,0.1705478717701297,0.1830415778481149,0.1953538172025567,0.2066921855629744,0.2171425445793676,0.2271131604142135,0.236420450767901,0.2455599834790083,0.254343325231794,0.2625376099914845,0.2700128375590298,0.2775525803761697,0.2836684270307615,0.2904830134163815,0.2961338414707222,0.3007518796992481,0.3053259249220761,0.3106450039398146,0.3158865194114879,0.3195482391949125,0.323245509929583,0.3234890479522092,0.3222556659657224,0.3213290159087709,0.320702068905692,0.3196133828996282,0.317669230533509,0.3157220367939004,0.3155780706931602,0.3165133700790088,0.3176426586877538,0.3189039662068708,0.3200299424789221,0.3207357859531772,0.3209498704315968,0.3212880314809482,0.3224732832366936,0.3221360161423253,0.3254779066123472,0.3284224524076148,0.3314154200230149,0.3354254786919543,0.3382500660851176,0.337284751684552,0.3397208600528102,0.3434770357847281,0.3477130362841272,0.3481099134659177,0.3498190591073583,0.3460386604955077,0.3562428407789232,0.0,1.8666268195536653,56.583876161365225,174.38902297616636,251.78174788571351,fqhc6_80Compliance_implementation_low_initial_treat_cost,71 -100000,95756,44535,420.6524917498642,5880,60.12155896236267,4617,47.64192322152137,1851,19.0379715109236,77.31912755708531,79.66965002264114,63.32066847763053,65.05875923726576,77.08739878917167,79.43681432028649,63.23444911810634,64.97392474291412,0.231728767913637,232.8357023546488,0.0862193595241933,84.83449435163948,167.26358,117.15360734793823,174676.86620159572,122345.97032868776,360.88519,234.68199402910287,376305.2759096036,244508.6302989921,367.05489,178.5672549851144,379097.79021680105,183232.7108519902,3021.0849,1392.621786621457,3121630.5192363923,1421149.3372040826,1124.41858,496.7650694903689,1161009.3466727934,505608.99352870975,1808.32396,761.6002093779956,1861889.907682025,773370.5029474369,0.37897,100000,0,760289,7939.857554617987,0,0.0,0,0.0,30783,320.87806508208365,0,0.0,33497,345.6598019967417,1566548,0,56240,0,0,6577,0,0,73,0.7519111073979698,0,0.0,0,0.0,0,0.0,0.0588,0.1551574003219252,0.3147959183673469,0.01851,0.3431866168588598,0.6568133831411401,24.274107804494,4.357495471166189,0.3255360623781676,0.2252544942603422,0.2298029023175222,0.2194065410439679,11.456367123232532,6.070691996578237,19.74021200197155,12252.60447990874,52.41471212828869,12.524664611957576,16.901169128539138,11.850637834145724,11.138240553646227,0.5698505523066927,0.7932692307692307,0.6899534264803726,0.6022620169651273,0.1283316880552813,0.7289866457187746,0.905,0.8461538461538461,0.7631578947368421,0.152073732718894,0.5092703349282297,0.7234375,0.6352201257861635,0.5484276729559748,0.121859296482412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278706619813,0.0045805085175163,0.0068381965017653,0.00927298949806,0.0115223073089869,0.0137891703074557,0.0156614835585011,0.0175938406241065,0.0197644219954602,0.0221330439589689,0.0242687090523207,0.0264911542134283,0.0286005183265457,0.0305646266212026,0.0326760970274759,0.0348280815617862,0.0369572869003499,0.039052370629298,0.041147132169576,0.0435135810698217,0.0576907018496096,0.0715892093178941,0.0852779846245817,0.0984058214856566,0.1104352043183064,0.1255551325973861,0.1378268017181948,0.1495530964034901,0.1601977512733174,0.1703259005145797,0.183645780615706,0.1959676633875523,0.2080093101160501,0.2191326976906928,0.2291595612423398,0.2395401891514762,0.2491795226719653,0.2578144339176812,0.2660809752443218,0.273746664070464,0.2807868655057429,0.2870002926543751,0.2933142220853372,0.2982803518498518,0.3031629637736675,0.3080806210735488,0.3128719818566828,0.3177260507841863,0.322007521722215,0.3264993394980185,0.3252594689311228,0.3235982595285305,0.3220286379346829,0.3206566585115161,0.3195353403141361,0.3177733476460666,0.3170646624171503,0.3176992604765817,0.3180808149870094,0.318691739278238,0.320169014084507,0.3217952014557826,0.3222222222222222,0.3221030909335606,0.3239277108433735,0.3247550620509471,0.3261123954676485,0.3287628152714007,0.3330055834533132,0.3358265067869722,0.3367847411444141,0.3400584019113353,0.3427706664985182,0.3439242343236844,0.3479777505420948,0.3505239609089838,0.3495811119573496,0.3557711744491611,0.3584180170282889,0.3554628224582701,0.0,2.279262552780132,55.59480551283549,168.57771800401812,252.8391429428305,fqhc6_80Compliance_implementation_low_initial_treat_cost,72 -100000,95691,44484,421.074082202088,6035,62.05390266587244,4764,49.294081993081896,1806,18.54928885684129,77.34181859432726,79.72318740008375,63.3271521787835,65.08499148417788,77.12300751819896,79.50495283948233,63.24740462306292,65.00754127335523,0.2188110761283042,218.23456060141663,0.07974755572058,77.45021082264714,168.37876,117.87996514420392,175960.4560512483,123187.68927506656,362.05436,233.88252630168463,377885.6005266953,243942.48654561013,363.5534,174.84227105350118,376777.4712355394,180341.52456141933,3119.28707,1406.9430843962732,3230508.093760124,1441093.5080023282,1135.21024,499.5572194721575,1176165.6686626747,511901.1940764434,1769.47128,730.6553012739016,1819436.498730288,739071.7363089196,0.37985,100000,0,765358,7998.2025477840125,0,0.0,0,0.0,30896,322.3605145729483,0,0.0,33318,345.0063224336667,1565023,0,56216,0,0,6635,0,0,57,0.5956673041351851,0,0.0,1,0.010450303581319,0,0.0,0.06035,0.1588785046728972,0.2992543496271748,0.01806,0.3238993710691824,0.6761006289308176,24.828793549996607,4.320770646863603,0.3207388748950461,0.2401343408900084,0.221872376154492,0.2172544080604534,11.204146865281825,5.788706805319738,19.169424508907788,12274.910939904345,53.6943205939001,13.707738142916536,17.154643375359985,11.600380385716482,11.231558689907091,0.5696893366918556,0.791083916083916,0.7048429319371727,0.5733207190160833,0.1217391304347826,0.7493627867459643,0.9111675126903552,0.8915989159891599,0.7416267942583732,0.1902439024390244,0.5107332032339001,0.728,0.6453839516824849,0.5318396226415094,0.1048192771084337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.004449760280568,0.0066454957742763,0.0090491763319859,0.0114796437141578,0.0137350329885151,0.0160739585562996,0.0181292937129324,0.0201862243072803,0.0221519311283767,0.0244955294889672,0.0267847056044531,0.0287131055625855,0.0311601595103403,0.0331214004087277,0.035085178787534,0.0370151604646584,0.0389343411271232,0.0409666378852975,0.0428364417293037,0.0570157111816814,0.0711249319428738,0.0840671277589446,0.0966720326589017,0.1091269631989199,0.1247435327960742,0.137642028877879,0.1494986908487132,0.1614516008418174,0.1712597580852706,0.1843241555309091,0.1963490072241207,0.207459359538955,0.2181963253216163,0.2277261479241132,0.2387448236153863,0.2480135702169449,0.2571778809928137,0.2660940797385917,0.2734443872001831,0.2805096601880008,0.2875745178258328,0.2936976131083972,0.2996502742712051,0.3045869554659803,0.3102106170710678,0.3155393235941565,0.3204262516054375,0.3238869541576583,0.3281548788690044,0.3269722498856081,0.3264357701667789,0.3243486832840445,0.3233917790808515,0.3217882073369968,0.320798663785838,0.3189987975444592,0.3186449019768682,0.3186430255201394,0.3188814182019225,0.3196523689374825,0.3206534606581959,0.3214674140383167,0.3227824066834945,0.3241185512537227,0.3251173708920187,0.3259079903147699,0.3300961719781256,0.3329348896076501,0.3336642312579415,0.3351705917186717,0.3377855514920231,0.3413278371119855,0.3472464207257026,0.3495669987894589,0.3535891968727789,0.3520976353928299,0.3571284938668811,0.3637116818558409,0.3619230769230769,0.0,1.8630919895091853,51.67769406216379,185.3485245270452,266.97145531264727,fqhc6_80Compliance_implementation_low_initial_treat_cost,73 -100000,95677,44517,422.7452783845647,6007,61.51948744212297,4685,48.37108186920576,1854,18.959624570168376,77.38307130315455,79.76039087943904,63.34642469116329,65.09799510441698,77.14618428247068,79.52656207770121,63.257657443482856,65.01342067829465,0.2368870206838664,233.8288017378289,0.0887672476804368,84.57442612233024,167.1406,117.04139576264132,174692.55934028034,122329.70908644848,358.18207,232.5892874477309,373777.5431921988,242512.4539138889,366.04171,177.45113150056426,379274.7682306093,182855.18490996968,3074.29099,1417.7293889048242,3176109.127585522,1444954.8872856756,1130.42348,503.2538049312245,1166765.0114447568,511350.86668201257,1809.80014,772.1855489246323,1852845.8668227475,772197.619064801,0.37881,100000,0,759730,7940.57087910365,0,0.0,0,0.0,30571,318.9063202232511,0,0.0,33419,346.00792248920845,1569936,0,56416,0,0,6535,0,0,61,0.6375617964610094,0,0.0,0,0.0,0,0.0,0.06007,0.1585755391885114,0.3086399200932245,0.01854,0.3348645651829558,0.6651354348170442,24.374486071600188,4.304158442261727,0.311632870864461,0.2288153681963714,0.2377801494130202,0.2217716115261472,11.08269159191729,5.835233939005773,19.94513005496114,12192.493083054222,53.160034486672274,12.822961909721403,16.72688313710506,12.312547963341911,11.297641476503909,0.5641408751334045,0.7826492537313433,0.7150684931506849,0.5798922800718133,0.109720885466795,0.7297709923664122,0.9148418491484184,0.8740554156171285,0.7427536231884058,0.1238938053097345,0.4998518518518518,0.7004538577912254,0.6556914393226717,0.5262529832935561,0.1057810578105781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019436542724962,0.0042449293862581,0.0062068336020932,0.0084690686055485,0.0106756138477962,0.0129889959994706,0.0152602499541275,0.0174136716716512,0.0196457228133656,0.0214876540682199,0.0234887631233595,0.0258566690284751,0.0276557887916405,0.0296962393003924,0.0318054738840229,0.0337960044234525,0.0357601624331827,0.0378208388255197,0.0395586568359314,0.0416349671193188,0.0566106723496719,0.0711167411719134,0.0841726467749381,0.0962976204246012,0.1087176567343582,0.1240392036623917,0.1372006487930541,0.1490683229813664,0.1596060269762677,0.1698901687650683,0.1831983043370668,0.1956359547160018,0.2069044228741616,0.2167668597660946,0.2263752461198314,0.2368543508608655,0.2463593317251853,0.2553016566621243,0.2638589239888265,0.2718293074208186,0.2791777111571539,0.2854416224634372,0.2929152891827521,0.2978360797398015,0.3035772931288239,0.3087505860869136,0.3135059306855046,0.318075879723379,0.3220980580258757,0.3259445178335535,0.3253966116303499,0.3230032476468322,0.3212157917717151,0.3205243077634545,0.3197986128644201,0.3180550447468432,0.3173404272164426,0.3177826293931285,0.3185074984182356,0.3191268933981137,0.3200209212836702,0.3214925667027665,0.323009495982469,0.3239891343070894,0.3245762914445533,0.3267388264539851,0.3279332767882386,0.3312739867078536,0.3337757133377571,0.3366157239640775,0.3367638391440359,0.3389312977099236,0.3429035076769442,0.3439825603247388,0.3441864767366571,0.3457564147219319,0.3461595824011931,0.349308396649133,0.3523784214722296,0.361733382298935,0.0,2.3162568467228986,57.25566354549112,170.11189855607427,253.74449473213733,fqhc6_80Compliance_implementation_low_initial_treat_cost,74 -100000,95687,44981,425.3764879241695,6108,62.735794831063785,4773,49.2334381890957,1953,19.92956200946837,77.3960056150407,79.78004612273071,63.35197710932333,65.11305075894907,77.14558994388736,79.53535069195703,63.25804247258302,65.0247141890424,0.2504156711533483,244.69543077367464,0.0939346367403075,88.33656990667293,165.91476,116.25844754204384,173393.20910886535,121498.6858633292,360.8648,233.6295240214912,376473.87837428285,243504.6141288808,369.0239,178.8660925054192,382130.23712730047,184108.7739616663,3131.23787,1431.1724218058305,3230613.5107172346,1453987.0127159418,1131.26383,504.5604830777797,1167375.421948645,512554.1680013347,1914.35788,812.636234583056,1955144.690501322,809685.981348588,0.38229,100000,0,754158,7881.509504948426,0,0.0,0,0.0,30706,320.2211376676038,0,0.0,33718,348.7934620167839,1578375,0,56527,0,0,6547,0,0,62,0.6479459069675086,0,0.0,0,0.0,0,0.0,0.06108,0.1597739935650945,0.3197445972495088,0.01953,0.3285803823252898,0.6714196176747101,24.58860929272897,4.270516215160834,0.3084014246804945,0.2384244709826105,0.2289964382987638,0.2241776660381311,11.05322139245061,5.793161931721159,21.01419633476097,12326.43108179385,54.060526745703015,13.428191136393435,16.63529601869405,12.236864799634064,11.760174790981484,0.5562539283469516,0.773286467486819,0.7038043478260869,0.5672461116193962,0.111214953271028,0.7274167987321711,0.9283819628647216,0.8644501278772379,0.7170542635658915,0.1906779661016949,0.4947308459128453,0.6964520367936925,0.6456984273820536,0.5209580838323353,0.0887290167865707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022184628787341,0.0043803613798138,0.0066279612675341,0.0089814579629159,0.0112200679510914,0.0132773999103979,0.0153450860038541,0.0175295306741263,0.0199963196957615,0.0219144711253045,0.0240311667008406,0.026458720494471,0.0288273649135076,0.0308502091015842,0.0329137432934378,0.0353421542278271,0.0374137681009301,0.0392995422319565,0.041404486786134,0.0436921537563578,0.0582772740567417,0.0722785644761217,0.0857922064299575,0.0984449421190423,0.1105009065227474,0.1258103063566088,0.1375860642259259,0.1489477213936703,0.1604102125841256,0.1708996524947445,0.1847192753826105,0.1973778152787693,0.2080081733799969,0.2185505028421513,0.2285167632473087,0.2402528394624394,0.2499498115143539,0.2588389938096148,0.2671251501212299,0.2748110802437379,0.2813679871606876,0.2887747358589691,0.2945846328324355,0.3003242674069376,0.3068173550311643,0.3123278575644304,0.3167307308306709,0.3214852025218505,0.3262578920866096,0.3300701325017434,0.3284062990857465,0.3270813896054003,0.3252292029922943,0.3239704969616489,0.3230230349085727,0.3210564166908941,0.320118333834301,0.3208339484605416,0.3207170294494238,0.3218954539779922,0.3226561329938595,0.3224451150955678,0.3233224034585744,0.3236027610777109,0.3251265807597245,0.3253854754413791,0.3277368122518434,0.3305403878742233,0.3326561350660268,0.3357018100984439,0.337840924665357,0.3428844824836531,0.3469824870858007,0.350376626341018,0.3548539114043355,0.3558231016807724,0.3570227724285496,0.35,0.3503709810387469,0.3550250288794763,0.0,2.486895517605677,54.97977651526878,178.81266235251272,263.6972491436833,fqhc6_80Compliance_implementation_low_initial_treat_cost,75 -100000,95829,44478,421.2294816809108,6056,62.1836813490697,4781,49.390059376597904,1919,19.691325172964344,77.38566316619061,79.7065048902013,63.36611244363343,65.08418861596775,77.14507801015021,79.46600142018549,63.276526272478335,64.9968295433526,0.240585156040396,240.5034700158097,0.0895861711550907,87.35907261514342,167.27216,117.14042848307474,174552.7554289411,122239.01792054049,362.96638,235.80982225997573,378262.8744951946,245571.7708209162,372.58895,180.3485498705724,385513.1118972336,185725.17091113923,3135.29221,1448.9818400909828,3240236.0976322405,1480528.3161579308,1135.0503,504.3477270000248,1169693.276565549,511589.51801311725,1887.8946,803.3456373639374,1938503.667991944,812310.4593653358,0.3793,100000,0,760328,7934.216155860961,0,0.0,0,0.0,30952,322.4702334366424,0,0.0,34108,352.6594246000689,1570010,0,56431,0,0,6573,0,0,62,0.646985776748166,0,0.0,0,0.0,0,0.0,0.06056,0.1596625362509886,0.3168758256274769,0.01919,0.3476476160404168,0.6523523839595832,24.263313394657413,4.291759836563186,0.3118594436310395,0.2430453879941435,0.2177368751307258,0.2273582932440911,11.00711952462659,5.631155030859903,20.675994525436952,12133.67943440147,54.655877319877234,14.027173368659572,17.0220995867411,11.478288871827342,12.12831549264922,0.5580422505751935,0.7865748709122203,0.6928236083165661,0.5821325648414986,0.1057957681692732,0.718299164768413,0.9223744292237442,0.8518518518518519,0.7253218884120172,0.1161825726141078,0.4971131639722864,0.7044198895027625,0.6335174953959485,0.5408415841584159,0.1028368794326241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00225861667325,0.0045213547844246,0.0069419776517035,0.0091845650539491,0.0111985841572073,0.0134609510233173,0.0155235503368702,0.0175936320032656,0.0199805815320149,0.0220020876399435,0.0240010658030928,0.0258447263620314,0.0276672936001397,0.0297690122287643,0.0320182313149645,0.0339413721156031,0.035915318074583,0.0379576267672789,0.040040289502923,0.0419775439910925,0.0567551216255684,0.0707267101521993,0.0839429829158369,0.0964373141698448,0.1082214146521304,0.123855391147302,0.1370517506223846,0.1485827248668813,0.1590690927707502,0.1699065000160652,0.182944402623938,0.1945167597463623,0.2056039255704887,0.2160041041762176,0.2265033774507112,0.2362118531623175,0.246111853832442,0.2544653890224449,0.2629629210046335,0.2702610007888328,0.2769936240990575,0.2829534712740258,0.2896016811087762,0.2951820909080043,0.3006576317988591,0.3057820789939084,0.3108416601175106,0.3161338591663602,0.3202746834299286,0.3237449832225804,0.3219609899046928,0.3199879052763232,0.3198097409268093,0.3193499458288191,0.3182642025196102,0.317427258805513,0.3151214565275951,0.316041998718349,0.3165374013388806,0.3169880854413396,0.318261912795711,0.3195170229612035,0.3195008522547926,0.3211278988842242,0.3235777466286432,0.3243555112638011,0.3257087167139622,0.3300486387467626,0.3316975003530574,0.3312445118543945,0.332221054075056,0.3362389709790581,0.3377884251670659,0.3382498289363643,0.3398698972376732,0.3401425178147268,0.3429359485136377,0.3471743974073324,0.3511429358303498,0.3501722158438576,0.0,1.945005617644728,58.00170920761535,183.29568983349083,254.99735746592123,fqhc6_80Compliance_implementation_low_initial_treat_cost,76 -100000,95773,44862,424.3053887838953,6153,63.13888047779646,4800,49.606882941956506,1945,19.901224771073267,77.37657405990127,79.72047185303705,63.3458979718325,65.07862619631372,77.13435495391843,79.48058190741749,63.25551494598477,64.99191447324426,0.2422191059828407,239.88994561956645,0.0903830258477285,86.71172306945607,167.86154,117.59119372947816,175269.98214528104,122780.92335990122,361.49741,234.17915570618496,376932.0580957055,244005.29590868007,372.10594,179.84500400699525,385842.0953713468,185683.039255889,3171.94756,1462.8434990162,3276797.427249851,1493008.958876757,1153.47944,519.6381614648681,1190591.7534169338,528934.0724153626,1920.19096,812.8764530757607,1966268.53079678,816436.415711683,0.38018,100000,0,763007,7966.817370240047,0,0.0,0,0.0,30762,320.6436051914423,0,0.0,34089,353.18931222787216,1566105,0,56205,0,0,6662,0,0,58,0.6055986551533313,0,0.0,0,0.0,0,0.0,0.06153,0.1618443894997106,0.3161059645701284,0.01945,0.3328178162697185,0.6671821837302815,24.38910198706097,4.380694643161819,0.3045833333333333,0.2454166666666666,0.2133333333333333,0.2366666666666666,11.342600842419262,5.865037050585081,20.87204192459828,12214.928220039696,54.550824185599,14.117349769813298,16.40452624490322,11.344464855047812,12.68448331583466,0.5602083333333333,0.8064516129032258,0.6997264021887825,0.5869140625,0.1012323943661971,0.7124901806755696,0.928921568627451,0.8770491803278688,0.720164609053498,0.125,0.505245250921463,0.7415584415584415,0.6405109489051095,0.5454545454545454,0.0943181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020257267294641,0.0042676560330059,0.0064733456441892,0.0089601365354138,0.0111870474330811,0.0132483375933035,0.0155499587033883,0.0176420141299465,0.0200574530510432,0.0221105321882261,0.0241062643489668,0.0265037979880927,0.0287033134233224,0.0310092687950566,0.0332085048435517,0.0352975224550124,0.0372349237905897,0.0393780018464921,0.0413236027944111,0.0432500546744009,0.0573316216300842,0.0706860489437356,0.0835814324052331,0.0962704526108933,0.1092727445173936,0.1248203111787586,0.1378092996628713,0.1491482864651494,0.1605672607669553,0.1710450129742017,0.1832055313832766,0.195321713352159,0.2068511628918913,0.2171015919908091,0.2265056527338977,0.236882938399131,0.2468372098216778,0.2556775979652929,0.263393819721059,0.27131356854123,0.2779750818458406,0.2852048034985559,0.2912763743022045,0.2977711774075715,0.3038334467010009,0.3084838924354834,0.3131993848539028,0.3176128204150622,0.3217482408940397,0.3257322975878032,0.3244860365993035,0.3225172480140733,0.321012138346203,0.3214569287848821,0.3204913290510169,0.3182360681825137,0.3162099734210859,0.3153605221298437,0.3163692255144735,0.3181445430883873,0.3194220606424047,0.3214250449276221,0.3218511150664851,0.3233451497112791,0.3247666354714083,0.3273129472999349,0.3281010066541546,0.3326229354060238,0.3366284572510253,0.3404424321855514,0.3433230096556749,0.3450562274559728,0.3466147957582983,0.3502387991812599,0.349284979904664,0.3524899693179136,0.3547060615290892,0.3543747502996404,0.3572978838849701,0.3620949510173323,0.0,1.8681962883419343,56.04163716331106,187.131053580838,257.2045339731032,fqhc6_80Compliance_implementation_low_initial_treat_cost,77 -100000,95747,44969,426.0707907297357,6066,61.98627633241773,4749,48.97281376962202,1877,19.17553552591726,77.3313489084019,79.69701520354516,63.31030609897547,65.06277090660643,77.09539847113265,79.46666477362426,63.221832377307614,64.97988379119298,0.2359504372692527,230.35042992090385,0.088473721667853,82.88711541345606,166.6104,116.7336574591772,174011.0917313336,121918.86686703206,362.6716,235.6504669340144,378085.8408096337,245422.53745184108,371.50818,180.0920652442467,384846.2719458573,185604.24238592832,3130.89404,1427.516292434729,3227459.868194304,1448419.5352697526,1151.11996,506.1516010884337,1187649.9524789287,514053.867899728,1846.92692,772.9738974456099,1888405.7777267173,770260.4436031234,0.38182,100000,0,757320,7909.5950786969825,0,0.0,0,0.0,30852,321.5766551432421,0,0.0,33942,351.26949147231767,1568324,0,56241,0,0,6452,0,0,76,0.7833143597188423,0,0.0,0,0.0,0,0.0,0.06066,0.1588706720444188,0.3094296076491922,0.01877,0.3284947933101925,0.6715052066898075,24.698440223288323,4.331069025581406,0.3143819751526637,0.2383659717835334,0.2198357548957675,0.2274162981680353,11.322735595264644,5.857766500785893,19.8630003014655,12289.860555075213,53.60996717935402,13.595945634935024,16.8115248254128,11.501244911514677,11.701251807491513,0.5719098757633186,0.7932862190812721,0.7233757535164099,0.578544061302682,0.124074074074074,0.742879746835443,0.9032258064516128,0.8914728682170543,0.7100840336134454,0.1609756097560975,0.5098995695839311,0.7249283667621776,0.6645569620253164,0.5397022332506204,0.1154285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022289992806411,0.0047050711337801,0.0070540471961431,0.0091546433651696,0.0113430588618283,0.0137487142406126,0.0157029091168643,0.0179707362896555,0.0202620462518794,0.0225433762828522,0.0246143747948802,0.0268557045256074,0.0286502284608735,0.0309285787900649,0.0329476367915277,0.0349092112338172,0.0368529506176674,0.0387061961044756,0.0407584120747185,0.0428610115823681,0.0568726316119131,0.0707647871405249,0.0845590549528945,0.0975738008350247,0.1097508251347104,0.1259004601470355,0.1383222601940099,0.1493128795142217,0.1603262321892403,0.1711489343435427,0.1840533781744492,0.195752009184845,0.2075675087108014,0.2185847393603626,0.2288083335168586,0.2397303560143248,0.2490869900266922,0.25703864641848,0.2654659357870008,0.273055415501673,0.2801361378975029,0.2870593746340321,0.2934483739451977,0.2988748664129012,0.3045869327168755,0.3098242368177613,0.314250303584171,0.3192280272940218,0.3234748784440843,0.3279779271013479,0.3270907155656755,0.3258465601188348,0.3252910291240269,0.3240254114929252,0.3224969225977724,0.3208158771902999,0.3191596904122571,0.3202143173141518,0.3200819322352138,0.3214463929284288,0.3225480661330141,0.3244326031182159,0.3254189067631738,0.3260083076510786,0.3267193542962838,0.3275682433840383,0.3288231949971574,0.3319607719871754,0.3350466467171272,0.3379417506673572,0.3420201375916898,0.3441121989944429,0.3466390510261721,0.3485480324512852,0.3514971173516831,0.3524351970242939,0.3543754674644727,0.3576470588235294,0.3634408602150538,0.375517890772128,0.0,2.342447539977284,55.16435766166926,176.99423207955607,259.6853325415841,fqhc6_80Compliance_implementation_low_initial_treat_cost,78 -100000,95495,44687,424.5772029949212,5979,61.57390439290015,4667,48.34808105136394,1829,18.79679564375098,77.22623088476638,79.71253397700293,63.24095407219974,65.07601946819156,76.99505197099052,79.48153632862633,63.15516825882192,64.99232490790358,0.2311789137758637,230.99764837660075,0.0857858133778179,83.69456028798083,166.59808,116.76293390555644,174457.15482485993,122271.04363317076,361.2838,234.25228636310712,377784.8578459605,244761.43545248127,363.10735,175.84286295416987,376674.3599141317,181458.01497072904,3073.70486,1408.8452709007606,3187243.311168124,1443933.1180743808,1103.20624,484.4600367846084,1142403.089166972,494467.3823599224,1793.40994,755.8117014815873,1845230.326195089,764397.9215089276,0.3807,100000,0,757264,7929.87067385727,0,0.0,0,0.0,30823,322.2158228179485,0,0.0,33200,344.1227289386879,1564838,0,56166,0,0,6592,0,0,67,0.701607414000733,0,0.0,1,0.0104717524477721,0,0.0,0.05979,0.1570527974783294,0.3059039973239672,0.01829,0.3285302593659942,0.6714697406340058,24.495792494324668,4.270851063238656,0.315406042425541,0.233126205271052,0.2294836083136918,0.221984143989715,10.92356178146836,5.586789989923965,19.618337045095554,12226.86337655466,53.1959764280107,13.137820437223676,16.692231680755434,11.999751944198527,11.366172365833062,0.5500321405613885,0.7867647058823529,0.6922554347826086,0.5508870214752568,0.0984555984555984,0.7058346839546191,0.9115479115479116,0.8495821727019499,0.7100840336134454,0.1130434782608695,0.4940285464608214,0.7121879588839941,0.6415094339622641,0.5054021608643458,0.0942928039702233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020671834625322,0.0040877600494994,0.0064877048348122,0.0088052872394509,0.0110767225932562,0.013300718544565,0.0156226083939632,0.0177896307195553,0.0199596918575506,0.0221511854265281,0.0243163902118574,0.0261566933991363,0.0282548704641871,0.0303433480821395,0.0324840369474924,0.0345184602323318,0.0367523495363166,0.0386366471248596,0.0406409201246002,0.0424154458216295,0.0574227786093346,0.0718969333906858,0.0851043693148956,0.0978342203720293,0.1093933277678562,0.1241348609948171,0.1368990665731113,0.1485768541435521,0.1596307481419606,0.1702420360259662,0.1826945913850804,0.1951737975164036,0.2068070818070818,0.2174175161679272,0.2269848625270312,0.2374734689795419,0.2465404020628936,0.255495682366469,0.264171974522293,0.2717246603011384,0.2793815748268943,0.2859304084720121,0.2916459000830663,0.2972726070703064,0.3030243926224812,0.3076095159155295,0.3128896038608486,0.316730572597137,0.3213668326032988,0.3263949577606525,0.3251740217611678,0.3232600479986759,0.3228174183075729,0.3224761353774949,0.3226719080377617,0.3209954250974853,0.3192810301846647,0.319807654304723,0.3210048010973937,0.3202279406494158,0.3222395432263396,0.3223895383396077,0.3234553391537945,0.3249294702431597,0.325565192321553,0.3266194173745375,0.3288334472544998,0.3338782182263997,0.3353459472741952,0.3395769673399738,0.3432230425667669,0.3448659531630815,0.3455159897365292,0.345895831763021,0.3496257969139795,0.3523998136067101,0.3529590750038034,0.3477551020408163,0.3475862068965517,0.3462423312883436,0.0,1.989908375959333,54.30061195392003,180.528493735012,254.3258813890432,fqhc6_80Compliance_implementation_low_initial_treat_cost,79 -100000,95707,44811,424.5979917874346,6140,62.900310322129,4807,49.609746413532974,1927,19.7686689583834,77.36399481233721,79.74802647661566,63.33329461681414,65.0970852974755,77.12190094412745,79.50783906515247,63.243060555031214,65.01011491521454,0.2420938682097642,240.18741146319653,0.0902340617829295,86.97038226095799,168.00124,117.59763416303517,175537.0453571839,122872.55285719452,362.03286,235.24893550637708,377664.1624959512,245193.26225498357,375.10367,181.87954761269327,388036.496807966,187076.6430647338,3173.13053,1465.05365226113,3278510.443332253,1493816.661541089,1167.90035,516.2283069429741,1205730.6989039464,524827.4806889504,1893.37258,797.8547559892772,1944539.187311273,804252.594122585,0.37959,100000,0,763642,7978.956607144723,0,0.0,0,0.0,30800,321.1781792345388,0,0.0,34339,354.874774049965,1564378,0,56219,0,0,6795,0,0,63,0.6582590615106524,0,0.0,2,0.0104485565319151,0,0.0,0.0614,0.1617534708501277,0.313843648208469,0.01927,0.3411764705882353,0.6588235294117647,24.318047079139397,4.355690489975322,0.3097566049511129,0.2398585396297066,0.2221759933430414,0.2282088620761389,11.17205283615868,5.69443011219974,20.61928607401496,12208.250832885436,55.01166886140248,13.857645693413978,17.114502314024374,11.954401165267768,12.08511968869637,0.5681298106927397,0.7996530789245446,0.7199462726662189,0.5795880149812734,0.1075660893345487,0.7341124908692477,0.9345372460496614,0.8666666666666667,0.7410358565737052,0.1166666666666666,0.5020360674810936,0.7154929577464789,0.6593927893738141,0.5299877600979193,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694805523753,0.0045939943411725,0.0067712986274669,0.0093196739638595,0.0116200980890942,0.0137946492246877,0.0159839242727161,0.0182094856816046,0.0201691673570413,0.02230209197309,0.0243967471003866,0.0265795743981595,0.0286260916076075,0.030787936239709,0.0328290125495376,0.0349059627573229,0.0369603049639512,0.0388103688022746,0.0407991434778541,0.0428313937133391,0.0574167676176949,0.0709680120582817,0.0842880523731587,0.0962938033738589,0.1082297629212654,0.1235249333840883,0.1359591910322081,0.1477694672894213,0.1589191151349504,0.1689318098994619,0.1817076320433903,0.1936851669569168,0.2049107239946934,0.2151644049819028,0.2248424387078324,0.2348337244830182,0.2455803785538217,0.2549275346023679,0.2643418679311636,0.2718604411579537,0.2787580943570767,0.2855957168240905,0.2924338524163393,0.2983223487118034,0.3038039253789351,0.3087921967560378,0.3134085620637025,0.3178929170692022,0.321246136537044,0.325669942821006,0.3249620198706659,0.323967078415477,0.3236208181575283,0.3230460690530811,0.3225811233489972,0.3210274098040412,0.3193079846709458,0.3201967223828897,0.3204947176808833,0.3205742479026771,0.3211745770324899,0.3219713417281806,0.3233227371591099,0.3237748003668329,0.3237418704552545,0.3243377267388751,0.3246768071687452,0.3285812974941908,0.3338950916368232,0.3352752348115563,0.3379623326525981,0.3402759422741449,0.3427508355931135,0.3443248606976566,0.3513743270048172,0.3541616980682089,0.3498375367476404,0.3467460480394169,0.3534987454697519,0.3553042121684867,0.0,2.4467115443425005,60.06932505224912,177.885277919691,256.0820077945346,fqhc6_80Compliance_implementation_low_initial_treat_cost,80 -100000,95658,44861,426.1849505530118,6014,61.55261452256999,4736,48.7988458884777,1884,19.24564594701959,77.31725194233033,79.72595306494128,63.30264576078415,65.08498186407638,77.08481506420611,79.49663153388352,63.21678135048949,65.00321114091835,0.2324368781242185,229.32153105776365,0.0858644102946684,81.77072315803002,166.4982,116.61918947296972,174055.69842564134,121912.6361339038,358.80657,232.300057104463,374360.5239499048,242122.32659878244,370.80951,179.69909875355955,383056.8692634176,184340.71950364063,3101.09234,1408.6670802030835,3198931.735976082,1430291.2593195909,1134.86967,496.447352235643,1170503.1466265237,503951.27431300783,1845.5403,768.498601737006,1888329.820820005,768499.248805938,0.3811,100000,0,756810,7911.62265571097,0,0.0,0,0.0,30686,320.0255075372682,0,0.0,33756,348.32423843275,1572143,0,56407,0,0,6563,0,0,64,0.6690501578540217,0,0.0,0,0.0,0,0.0,0.06014,0.1578063500393597,0.3132690389092118,0.01884,0.331387091683762,0.668612908316238,24.60875087834658,4.496163127874887,0.3137668918918919,0.2394425675675675,0.2225506756756756,0.2242398648648648,11.41057449563412,5.747384053886961,19.99379795434245,12263.567190335543,53.50820802070686,13.584318427551416,16.601569839988628,11.879084757839196,11.443234995327629,0.5597550675675675,0.7865961199294532,0.6884253028263796,0.571157495256167,0.1261770244821092,0.7323832145684878,0.9065420560747663,0.863013698630137,0.7364341085271318,0.1509433962264151,0.4969766772243018,0.7138810198300283,0.631578947368421,0.5175879396984925,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021882946498222,0.0045429194341631,0.0066472492566244,0.0088406548181568,0.010937579488223,0.0133747580727309,0.0154244792197988,0.0176119646943445,0.0196435513903951,0.0214535991639858,0.0235151689255045,0.0257508965545588,0.0279476252238898,0.0298162772955028,0.0316450466826406,0.0338227229930368,0.0359082804660612,0.0380812927077491,0.0402222314703067,0.0419776508360088,0.0564685479068504,0.0705698787358368,0.0837926075226487,0.0970192439211725,0.1091265864182552,0.1252500238117916,0.1382585807985396,0.1500713509829396,0.1610986427273698,0.171342137163822,0.1841016803102111,0.1972722844617633,0.20922614837144,0.2193981983165314,0.229503502356932,0.239119593044519,0.2480527596134532,0.2560826087445585,0.2646491685760305,0.2729728801529426,0.2805497391284228,0.2872762140860881,0.2940278188813258,0.2994881875606803,0.3048217367001239,0.3107929814177733,0.3154785003442448,0.3199704932210719,0.3246726359919258,0.3277979861879909,0.3263327731092437,0.3253290106327444,0.324586062463104,0.3237279335410176,0.3227191679049034,0.320754716981132,0.3186745367366638,0.319631781037708,0.3190447761194029,0.3189821084895573,0.319957326545509,0.3208768226032397,0.3221283819183939,0.3228337655369758,0.3246318123749608,0.3253524804177545,0.3273867198632089,0.3294065906449282,0.3319988762466638,0.3357409318199857,0.3388127853881278,0.3419372006386376,0.3449734781510482,0.3507536919427653,0.3506640293868324,0.3482375207002602,0.3536641573206329,0.3577367673899817,0.3622641509433962,0.374812030075188,0.0,2.666924696465454,54.8019320504178,176.79194430081495,258.5796187519002,fqhc6_80Compliance_implementation_low_initial_treat_cost,81 -100000,95858,44711,422.5834046193327,5950,60.94431346366501,4732,48.79091990235557,1866,19.090738383859456,77.4717338221379,79.75718116727407,63.40399372213196,65.09029627437248,77.23794312291284,79.5264896613359,63.316279139228094,65.0063416389043,0.233790699225068,230.691505938168,0.0877145829038639,83.95463546817439,167.6961,117.42938227030533,174942.20617997454,122503.47625686464,359.93601,233.61237002527264,374921.3837134094,243139.6665347349,368.49465,178.56113738502182,380993.8659266832,183592.2092790951,3087.96755,1414.2421399353696,3184489.891297544,1438466.541072392,1119.80354,487.4356422346019,1154041.2589455235,494403.1288873639,1822.99362,766.8656327336117,1866434.7263660831,769251.897704653,0.38095,100000,0,762255,7951.918462726116,0,0.0,0,0.0,30747,320.15063948757535,0,0.0,33780,348.9849569154374,1570344,0,56323,0,0,6581,0,0,52,0.5424690688309791,0,0.0,1,0.0104320974775188,0,0.0,0.0595,0.1561884761779761,0.3136134453781513,0.01866,0.3466027178257394,0.6533972821742606,24.26349645769416,4.367745358872488,0.3218512256973795,0.2368977176669484,0.2195688926458157,0.2216821639898563,11.301063018935317,5.915901449803684,19.82218762407424,12269.386123940854,53.47260259622209,13.424142405958468,17.11579766817763,11.570914186135743,11.361748335950256,0.5707945900253593,0.7957181088314005,0.6887721602101117,0.602502406159769,0.1277407054337464,0.7336412625096228,0.9232558139534884,0.8684863523573201,0.7520325203252033,0.0954545454545454,0.5091756481211768,0.7163531114327062,0.6241071428571429,0.5561160151324086,0.1363088057901085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023382933495293,0.0045182401150834,0.006925713358616,0.0090742996345919,0.0116555564588244,0.013684414012026,0.0157688859913617,0.0179316394496067,0.0201580785491085,0.0222531293463143,0.0241809113161748,0.0264496543802432,0.0286406969099276,0.0308365058133552,0.0328416365154467,0.0348516610043474,0.0368768942724442,0.0387931927948096,0.0409112620189811,0.0429172043458352,0.0581432936048633,0.0727173890317589,0.0858538221299964,0.098476410633603,0.1108628285937137,0.1265793341157315,0.1390971463717245,0.1512740039363796,0.1620170184597973,0.1720257234726688,0.1849428577577857,0.1969890195400311,0.2081957956914523,0.2191082385309081,0.229105805346278,0.2393190736749019,0.2486745377589663,0.2583705733084817,0.2661494903737259,0.2735723923434034,0.2804503464203233,0.2873925267443624,0.2939023238239184,0.3000645840310003,0.3046410635871807,0.3097031457687195,0.3137205902565191,0.3185587828141074,0.3231154934673886,0.3262944483208046,0.3249700993106043,0.3235342510832008,0.3223306423306423,0.3214141763113952,0.3207876813740006,0.3188912111550138,0.3167386575022858,0.3173669330457093,0.3183100986059163,0.318689514338986,0.3185971062052506,0.3197341774640687,0.3201408861656454,0.3208163809777896,0.3219181353584563,0.3237441740031072,0.3250021181055664,0.3277509727626459,0.3314661134163209,0.3339851388345717,0.337798485730926,0.3383272880197655,0.339444374921787,0.3386753759684034,0.3375495563526524,0.3370973493403066,0.3351556567957479,0.3389864325618515,0.3331534933908821,0.3333333333333333,0.0,2.184940585438204,56.82741531734037,170.85726175528615,259.70353644716937,fqhc6_80Compliance_implementation_low_initial_treat_cost,82 -100000,95728,44456,419.44885508942,6039,61.77920775530671,4684,48.21995654354004,1870,19.11666388099616,77.34438518034166,79.69756687451002,63.33412346583962,65.07255932079903,77.10439962972836,79.46008982650524,63.24458592335077,64.98673407229903,0.2399855506132979,237.4770480047772,0.0895375424888484,85.82524850000084,165.8261,116.1817516015195,173225.63931138226,121365.88673015348,360.04803,233.95353955167937,375394.4404980779,243673.8944522524,366.21833,177.61245207085014,378028.3720541534,182090.8952541694,3081.54746,1421.9932853016908,3175782.2162794587,1442212.6194805803,1121.84906,502.5903727113992,1153709.552064182,506912.714124364,1829.84298,777.4466094544302,1872325.3175664383,778544.4367072461,0.37806,100000,0,753755,7873.892695971921,0,0.0,0,0.0,30768,320.6376399799432,0,0.0,33487,345.21770015042625,1574825,0,56514,0,0,6668,0,0,52,0.5432057496239345,0,0.0,0,0.0,0,0.0,0.06039,0.1597365497540073,0.3096539162112932,0.0187,0.3419933868682097,0.6580066131317903,24.39120786517223,4.319058753354717,0.319598633646456,0.2380444064901793,0.2192570452604611,0.2230999146029035,11.410984230718274,5.988665416091282,20.057271451077973,12240.756396790814,53.40215411812488,13.429874785554148,16.95039047210742,11.428870990813843,11.593017869649474,0.5578565328778822,0.7650224215246637,0.6927187708750835,0.5851996105160662,0.1167464114832535,0.7251370399373531,0.91725768321513,0.84,0.7322175732217573,0.1255813953488372,0.4951570296448488,0.6719653179190751,0.6390154968094804,0.5406091370558376,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385640776305,0.0046029219429602,0.0069095668584299,0.0091709576185978,0.0111840901234316,0.0134679791923284,0.0156641731721734,0.017939690800551,0.0203226696365624,0.0224598383300931,0.0246331666530043,0.0270345167349201,0.0292623743033992,0.031369398873338,0.033547215746147,0.035682914983104,0.0377186626643204,0.0398846807981084,0.0422049240810218,0.0439768762043643,0.0580466670146682,0.0718853016587305,0.0858925949234319,0.0982848008749513,0.1105100545168875,0.1258948303391103,0.138128168685433,0.1501755505904883,0.1613798996048275,0.1713893624092717,0.1831375631183988,0.1950127116352031,0.2067049433461647,0.2168546941274214,0.2261463500478447,0.237682956533292,0.2477233159233962,0.2566190529749184,0.2651039834806385,0.2723171346127422,0.2790014344546758,0.2853449082740547,0.2914373631575833,0.296550400614115,0.3014617431560529,0.3067301524645976,0.3117490070291062,0.3170113272938089,0.3217437505669522,0.326167619600956,0.3253797263815577,0.3234642636032194,0.322754676583277,0.3214528320975878,0.3204817485688796,0.318790556399282,0.3173812319507473,0.31776653082687,0.3185401809382108,0.3183653777428347,0.3193348206753032,0.3213092720336805,0.3222580915646487,0.3232099263141392,0.3244897467408853,0.3258385935625228,0.326760322571453,0.3293462180112688,0.3329821974086169,0.3367002028074919,0.3398062667697485,0.3423164832828363,0.346008562075044,0.3503511819348991,0.3521983161833489,0.352074493163602,0.3521858758789361,0.3491282051282051,0.3514412416851441,0.3599845500193124,0.0,2.695284323005315,55.41770851120644,179.46272964336384,250.41388126057245,fqhc6_80Compliance_implementation_low_initial_treat_cost,83 -100000,95670,44625,422.6507787185116,5997,61.6076094909585,4701,48.55231525033971,1846,18.92965401902373,77.28108161739658,79.67066587391344,63.29287913429015,65.05671659580767,77.04480989773467,79.43470528492921,63.204768934611295,64.97121513566499,0.2362717196619144,235.96058898422712,0.0881101996788586,85.50146014268023,167.8314,117.5375618572235,175427.40671056756,122857.28217541914,362.78374,235.58223209814355,378627.1663008258,245668.5503273164,369.80417,178.95096806094878,382832.8002508624,184096.9373708974,3071.40182,1411.1643037431008,3174883.599874569,1439515.8186924849,1142.74431,512.6305122496317,1176962.1511445593,518345.6212897501,1804.50602,766.8205585277756,1852305.6130448417,772192.6615824467,0.37937,100000,0,762870,7973.973032298526,0,0.0,0,0.0,30907,322.4730845615136,0,0.0,33821,349.95296331138286,1559869,0,56023,0,0,6588,0,0,85,0.8675655900491271,0,0.0,1,0.0104525974704714,0,0.0,0.05997,0.1580778659356301,0.3078205769551442,0.01846,0.3370376250198444,0.6629623749801555,24.52237849731156,4.359719259787837,0.3163156775154223,0.248032333546054,0.2148479047011274,0.2208040842373963,11.202834474816328,5.921970811907785,19.851428976997173,12231.280676166894,53.47523033171335,14.054586050436988,16.760970616716367,11.06186024890002,11.597813415659967,0.5677515422250585,0.7864493996569468,0.7054472091459314,0.5722772277227722,0.1204238921001926,0.7382445141065831,0.910377358490566,0.9036458333333334,0.7248908296943232,0.1799163179916318,0.5042335766423358,0.715633423180593,0.6364460562103355,0.5275288092189501,0.1026282853566958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0044708482446091,0.0066371007844768,0.0090113886885229,0.0111364237332953,0.0134515905665756,0.0154067336908864,0.0172234246743169,0.0195144390493227,0.021863069222817,0.0240949031589956,0.0263052518096411,0.0284556607945371,0.0305493735575337,0.0327684432151261,0.0348335866497099,0.0367316497130663,0.0387345871216838,0.0410260677803898,0.0430876344534311,0.058141357154051,0.071883311344265,0.0847486092159126,0.097640015571899,0.1101557224848075,0.1247593254765884,0.1376784671726554,0.1500415362003962,0.1604764043021788,0.1712586166169175,0.1841026747195858,0.196038058908949,0.2071031050218364,0.2172989311371999,0.2262920110192837,0.2367822721071836,0.2463674162829168,0.2556465512385801,0.2642991079038582,0.2718337481219822,0.2779844045094836,0.2848053804513392,0.2912368077789636,0.2972508797425027,0.3023753894080997,0.3077018005010304,0.3134994235300015,0.318436181468215,0.322753931592879,0.3274863084371776,0.3268807624292985,0.3253735049455779,0.3243392304102498,0.3239191579435729,0.3235811636992634,0.3217785286438335,0.3190105199689002,0.3193111283072921,0.3198718388047426,0.3200915773846787,0.3213030980517407,0.3218746897031079,0.3224501832582045,0.3234249224265863,0.3243066805290263,0.3246973935321952,0.3245880064087892,0.3264713311442283,0.3298922012711121,0.3304775503728383,0.3330452974349645,0.3354722384260487,0.3390171773736865,0.3419164841803216,0.3439597315436241,0.3448555851989328,0.3515068908072088,0.3521210914160526,0.3506981740064447,0.3517110266159696,0.0,2.3189753336836407,55.85449042924533,175.59165129113842,256.7678882053424,fqhc6_80Compliance_implementation_low_initial_treat_cost,84 -100000,95730,44290,420.2444374804136,5990,61.28695288833176,4666,48.19805703541209,1827,18.708868693199623,77.3612597271838,79.72618339853274,63.34108899169471,65.08887214857458,77.13016922888734,79.49762873659817,63.25359352233116,65.00499415010744,0.2310904982964672,228.55466193456664,0.087495469363553,83.87799846714472,166.73096,116.78848422458972,174167.9306382534,121997.78985123755,360.09186,233.95543423590289,375614.9273999791,243853.31883730865,368.39481,178.69342283758857,381672.2135171838,184256.76034817225,3047.38764,1398.0536971262682,3150527.097043769,1427716.0725548463,1104.20582,489.45421740668274,1142072.1403948604,499952.6131931252,1793.36532,758.9214943765539,1838722.8455029773,762966.8942380126,0.37791,100000,0,757868,7916.72411992061,0,0.0,0,0.0,30672,319.8161495873812,0,0.0,33693,348.814373759532,1572682,0,56366,0,0,6748,0,0,74,0.7730074166927817,0,0.0,1,0.010446046171524,0,0.0,0.0599,0.1585033473578365,0.305008347245409,0.01827,0.337863767188999,0.662136232811001,24.471279171324948,4.411862902545265,0.3259751393056151,0.236605229318474,0.2151735962280326,0.2222460351478782,11.42268334998097,5.808568888250691,19.4355820974168,12121.05751240204,52.88941405160951,13.24168747231082,17.17602604908282,11.172589729581553,11.299110800634304,0.5662237462494643,0.7943840579710145,0.7041420118343196,0.5707171314741036,0.1166827386692381,0.7259541984732825,0.8891454965357968,0.8810126582278481,0.7196969696969697,0.128440366972477,0.5038736591179976,0.7332339791356185,0.6420959147424512,0.5175675675675676,0.1135531135531135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258891218687,0.0045015816367913,0.0067280956343488,0.0089097946785057,0.0112986880911217,0.0135536954440846,0.0154487793934697,0.0174605605758921,0.0195384788409827,0.0214578214578214,0.0237663149908236,0.025953884866225,0.0282111672203309,0.0304207186418328,0.0323096609085092,0.0341269759219245,0.0362764591359098,0.0378776086257173,0.039846934531237,0.0416666666666666,0.0565718581631374,0.0703175699721576,0.0833962739174219,0.0962039957939011,0.1088097647356438,0.1246392439186832,0.1370274139668063,0.1485395051875498,0.1584788762484644,0.1684319989708184,0.181269044824653,0.1936412120425361,0.2047164477689832,0.2153570335388517,0.2245104399168765,0.2343877980209417,0.2444774022324564,0.2540431796981242,0.2625880112019411,0.2698185564649991,0.2766451970998739,0.2829397122924287,0.2888994026849606,0.2947473030088962,0.3006924317572729,0.3063288025093794,0.3106455280286845,0.3145500527406051,0.3190341239954967,0.3230815917247203,0.3217543387595856,0.3207104005274435,0.3194149497222417,0.3183892113546449,0.3183343728652469,0.3165122866110388,0.3147582978857983,0.3159611255879509,0.3174673531317126,0.3178201926507313,0.3192218394248052,0.3202540662471803,0.3226022803487592,0.3235445301150966,0.3230391803160401,0.3236784371082323,0.3249585548505116,0.3289673021083196,0.3329697779966928,0.3359847279669106,0.3376045074518357,0.3390385631273111,0.3437128743825424,0.3489461358313817,0.3541511541325391,0.3545507927187316,0.3577814820427337,0.3589228295819935,0.3657522859517872,0.3592695514092894,0.0,2.015557543560346,57.49872541006584,166.8769783117391,254.7895203173289,fqhc6_80Compliance_implementation_low_initial_treat_cost,85 -100000,95649,44386,420.2866731487,6003,61.57931604094136,4720,48.74070821440893,1899,19.43564491003565,77.2430810454354,79.64665444801284,63.27207635196621,65.04978057650963,77.00557284372437,79.41248171576945,63.18396887162412,64.96551319757613,0.2375082017110372,234.172732243394,0.0881074803420958,84.26737893350378,165.48356,115.9173178784701,173011.28082886388,121190.3081877177,355.50538,230.27196693416437,371052.4940145741,240122.308580502,362.84479,175.42667222253385,375730.7551568757,180594.7534403775,3088.02502,1417.095419870769,3190504.187184393,1443565.2749853786,1112.01466,492.5869960642984,1145828.6024945374,498227.06580382393,1863.23784,782.9542130573377,1908824.347353344,785637.3884573121,0.37794,100000,0,752198,7864.149128584721,0,0.0,0,0.0,30315,316.3023136676808,0,0.0,33277,344.2586958567261,1575969,0,56556,0,0,6491,0,0,53,0.5541092954448034,0,0.0,0,0.0,0,0.0,0.06003,0.1588347356723289,0.3163418290854572,0.01899,0.3326968973747016,0.6673031026252983,24.75186964443335,4.332564973806514,0.3197033898305085,0.2345338983050847,0.2211864406779661,0.2245762711864407,11.127057791513424,5.737791404264306,20.27823850469472,12194.28134986104,53.79842172937482,13.224981732979805,17.248266357453158,11.642133870499084,11.683039768442766,0.5701271186440678,0.8066847335140018,0.7236580516898609,0.5622605363984674,0.1122641509433962,0.7403619197482297,0.9473684210526316,0.8969849246231156,0.7099236641221374,0.1645021645021645,0.5073934473760511,0.7331499312242091,0.6615661566156615,0.5127877237851662,0.097708082026538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022296092103129,0.004381960927515,0.0066799995939209,0.0090023267864944,0.0111989258795886,0.0136055807322165,0.0159979607443283,0.0181547132821434,0.0204924738219895,0.0224875581133389,0.0244792895160546,0.0268441213017447,0.0292166723228334,0.0312046070321111,0.0331843563886337,0.0350425494514584,0.037136020385966,0.0390978536139826,0.0410438834628306,0.0429402443601184,0.0582869204484895,0.0716118693243115,0.085303628422644,0.0981021651947833,0.1097445101351351,0.1251508670887416,0.1370488807674737,0.1489828990575291,0.1607763832268695,0.1709787243182867,0.184027103428929,0.1959351796650588,0.2066719670649226,0.2165409087424572,0.2262572603132267,0.2359571753480889,0.2451918776276948,0.2537113227751789,0.2621180429246998,0.2700480488056603,0.2771789522484932,0.2835712529130022,0.2901219945516996,0.2959257126403685,0.3020208533573418,0.3072649150533386,0.3120024072518462,0.3152833749936234,0.3202606742739936,0.3241273494438051,0.3236416598114708,0.3226019754515022,0.3214290755614528,0.3211596385542168,0.3206574378995366,0.3193740593998587,0.3175314053393047,0.3183165870532037,0.3187065392388586,0.3196847572989432,0.3198418674698795,0.319851333624836,0.3216411162282085,0.321894580816134,0.3226491600695115,0.3227584035267259,0.3237780333525014,0.3278289203125494,0.3308719615602035,0.3353788152248024,0.3384912959381044,0.3409918594687232,0.3435080593984008,0.3454308294329778,0.3467035060975609,0.3493918435487718,0.3501326259946949,0.3510791366906475,0.3621741541874653,0.3583591331269349,0.0,2.3517067244495298,55.684092496309,177.34849588999808,259.51676239735264,fqhc6_80Compliance_implementation_low_initial_treat_cost,86 -100000,95822,44583,422.8360919204358,5990,61.30116257226941,4660,48.09960134415896,1866,19.19183486047045,77.44904619750217,79.7750530036924,63.38601454967061,65.10667503875847,77.21516422379878,79.54093832272758,63.29847407188924,65.02142617628033,0.2338819737033901,234.11468096482224,0.0875404777813741,85.24886247813868,168.2736,117.82802090876116,175610.61134186303,122965.52034893986,361.68655,234.22218246598752,376921.1350211852,243899.10716326884,370.91368,178.91026649440738,383317.8288910689,183952.40470975763,3049.07807,1400.8354094345475,3149518.910062408,1429410.1035613406,1089.62604,479.1383707804309,1126428.6593892844,489325.1629795064,1820.07666,770.968020189503,1872662.478345265,780243.3804798562,0.37909,100000,0,764880,7982.300515539228,0,0.0,0,0.0,30867,321.5754210932771,0,0.0,33870,349.7526664022876,1568528,0,56309,0,0,6658,0,0,70,0.7305211746780489,0,0.0,0,0.0,0,0.0,0.0599,0.1580099712469334,0.3115191986644407,0.01866,0.3388073979591837,0.6611926020408163,24.27661605305259,4.223429961967856,0.3186695278969957,0.242489270386266,0.2216738197424892,0.2171673819742489,11.053923727856086,5.803759445154605,19.858937207500077,12164.46084291594,52.75621168002191,13.46562252961141,16.71054654478853,11.483425430150485,11.096617175471492,0.5590128755364807,0.7849557522123893,0.6956228956228956,0.5634075508228461,0.1017786561264822,0.7169059011164274,0.909307875894988,0.851063829787234,0.6935483870967742,0.1232227488151658,0.5008807985907222,0.7116736990154712,0.6429215509467989,0.5222929936305732,0.0961298377028714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023292790375013,0.004581715710622,0.0070114557649183,0.0092237990268282,0.0115317733915006,0.013745634488306,0.0157111833855,0.0177997325957603,0.0198773633111905,0.0217331245971083,0.0235384536557872,0.0256670771756978,0.0280224920075247,0.0301055341055341,0.032116999113018,0.0340833953219274,0.0357800823863048,0.0378888428038158,0.0398961038961038,0.0416731732200672,0.0566960839540172,0.0704271002143342,0.0836678440044857,0.095895016653183,0.1072918861959957,0.1219720989220038,0.1343199720122552,0.1467876248311655,0.1575336619507927,0.1682141900937081,0.1821359056252755,0.1950173399163794,0.2070223438212494,0.217528428312635,0.22775081794427,0.2373488382375699,0.2475357799186946,0.2567095825522791,0.2651956844143053,0.2725340767569667,0.2792547358213951,0.285525931975964,0.2915147438847393,0.2973321858864027,0.3028015413324286,0.3076554318165056,0.3130029067228883,0.3175275512662803,0.3216304824844463,0.3250302488295018,0.3237113678757867,0.3224868305531168,0.3222754137945557,0.3210756776999971,0.3196994127305809,0.3174944358059697,0.3149518292298973,0.3159389537256182,0.3162253903598099,0.3165223870006386,0.3175738608844678,0.3190912839443146,0.3193932195620012,0.3202644937216137,0.3204710838759096,0.3211170639542408,0.322531257973973,0.3252861342172743,0.3277976315605073,0.3303078137332281,0.3349523377212891,0.338692560755598,0.3396048326201862,0.3412896870500871,0.3443671243182246,0.3455188679245283,0.3482442748091603,0.3433747201302666,0.345509475418841,0.3517816527672479,0.0,2.016949713735753,54.93168516203812,175.93584529120824,251.56533995097885,fqhc6_80Compliance_implementation_low_initial_treat_cost,87 -100000,95807,44834,424.4157525024268,5989,61.24813426993852,4744,48.93170645151189,1893,19.361842036594403,77.3497797498425,79.68218040675377,63.33168066437421,65.05961396571385,77.1088619679984,79.44381754938546,63.241231941879775,64.97281935145736,0.2409177818441037,238.36285736831545,0.0904487224944361,86.79461425649038,167.1758,117.06220886222636,174492.26048201072,122185.44455230449,360.42104,233.5476636767242,375626.3634181219,243200.57141461788,371.26786,179.70888829143885,383731.888066634,184715.60608908415,3100.28092,1443.5043120618334,3201211.790370223,1471936.09947775,1144.61368,513.7776975555691,1182154.6024820737,523734.7455824278,1851.24232,788.0322301880327,1896713.3716743037,791688.8903067498,0.3814,100000,0,759890,7931.466385545941,0,0.0,0,0.0,30758,320.4463139436576,0,0.0,33954,350.6111244481092,1568634,0,56351,0,0,6631,0,0,62,0.6471343430020771,0,0.0,0,0.0,0,0.0,0.05989,0.1570267435762978,0.3160794790449157,0.01893,0.3381765926872106,0.6618234073127894,24.160193064588373,4.284983443858159,0.3178752107925801,0.2445193929173693,0.2158516020236087,0.2217537942664418,11.188089634566362,5.9146213514378525,20.27308213075568,12279.828364271452,54.35544213715899,13.901591254065524,17.299806984002053,11.61146191385558,11.542581985235836,0.5699831365935919,0.7793103448275862,0.7148541114058355,0.587890625,0.1140684410646387,0.7260479041916168,0.916267942583732,0.8722358722358723,0.7174721189591078,0.1611570247933884,0.5088028169014085,0.7021563342318059,0.6566757493188011,0.5417218543046357,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0047147332880448,0.0069519150749994,0.0089912525780003,0.0109958295188688,0.0130950562598645,0.0153752039151712,0.0176188969304737,0.0197675725952349,0.0219449533772095,0.0239669506207009,0.0258845514097377,0.0281942130914923,0.0303666862315035,0.0324723551741211,0.0343356065302748,0.0365194708403204,0.0383262973373855,0.0401899358914414,0.0427091467541256,0.0573598606169993,0.0711455011240654,0.0847605072843517,0.0976627361960611,0.1100547058637518,0.1260428672637489,0.1385488490505993,0.1503943461092248,0.1609981199794906,0.1717246484085862,0.1847465298732649,0.1974780820435112,0.2081026098497622,0.2183799975948135,0.2284120417235157,0.2383247999645366,0.2484039466047591,0.2575783139306001,0.2654054790167729,0.2736246621776373,0.2805243489025928,0.2871209551987463,0.2940090639088403,0.2996730186487166,0.3058786392443484,0.311243842364532,0.3164520565070634,0.3204507013594801,0.3246502840431176,0.3282790292568985,0.32690208970507,0.3250613167249979,0.3237807801878543,0.3230564167946452,0.3225408067612004,0.3206844211397819,0.3193387853429694,0.3197969543147208,0.3210767546860035,0.3214943577087469,0.322410623851146,0.3235323215734383,0.3241425548408724,0.3234327857861213,0.324203546201528,0.3243313627959061,0.3246424611185352,0.3289881866324068,0.3314828392863377,0.3327159520807062,0.3363739505332426,0.3367535833289258,0.3396321491559587,0.3393526666156554,0.3388748004132619,0.3425674879170104,0.3502290076335878,0.3536609829488465,0.3513071895424836,0.3520092735703246,0.0,2.283284694866923,58.60981269666848,182.03169243437927,248.1494057027472,fqhc6_80Compliance_implementation_low_initial_treat_cost,88 -100000,95813,44825,423.2724160604511,6287,64.61544884305887,4957,51.28740358823959,1977,20.352144281047455,77.41775944651599,79.74569747115989,63.37436231324406,65.09499004946065,77.16852316480092,79.4954447320253,63.28279204246285,65.00529708442406,0.2492362817150706,250.2527391345808,0.0915702707812116,89.69296503659052,166.2837,116.46502110681782,173550.24892238007,121554.5083723689,362.11941,233.8653191759918,377490.5075511673,243632.05925336937,371.22958,179.52739632807254,384709.580119608,185272.3753725272,3228.68788,1473.809515347412,3341159.6129961484,1509608.3224280167,1179.0166,519.6164531404884,1217531.8589335475,529343.6935633554,1931.26626,807.7432804163715,1988886.936010771,819570.034496535,0.38172,100000,0,755835,7888.647678290002,0,0.0,0,0.0,30808,321.06290378132405,0,0.0,33962,351.7894231471721,1577613,0,56649,0,0,6485,0,0,69,0.7097158005698601,0,0.0,0,0.0,0,0.0,0.06287,0.1647018757204233,0.3144584062350882,0.01977,0.3333333333333333,0.6666666666666666,24.77661317553824,4.349539775016508,0.3274157756707686,0.2340125075650595,0.221303207585233,0.2172685091789388,11.163267329995694,5.730748819372424,21.08388471176172,12357.954665731888,56.14023772809092,13.924175297892438,18.307238365029416,12.092928921274876,11.8158951438942,0.5612265483155134,0.7827586206896552,0.696241528034504,0.5615314494074749,0.1188486536675951,0.734984984984985,0.9234338747099768,0.8740740740740741,0.7037037037037037,0.163716814159292,0.4973793103448276,0.6995884773662552,0.6371100164203612,0.5151148730350665,0.1069330199764982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099069451898,0.0049060849644714,0.0070014510253574,0.0092015193678779,0.0113580899699015,0.0136100818437232,0.0159820609519926,0.018116681636319,0.020380629203377,0.0225774757440537,0.0246617466174661,0.0268738836765279,0.0291009642071503,0.0313072662507463,0.0336660411210327,0.0357578136296969,0.0376391936084778,0.0398001181873788,0.0418861221055256,0.0437457706522304,0.059021148288418,0.0724978569487131,0.0860395396129898,0.0990472388835782,0.1115171941650429,0.1270232007775852,0.1389786341535756,0.1507026981055854,0.1615918062520004,0.1720654712170876,0.1856261022927689,0.1971654495959901,0.2090091850693765,0.2193883678527366,0.229428954364687,0.23962965421119,0.2502257147634175,0.2591914654688377,0.2671605273888813,0.274567432498885,0.2822337488303316,0.2889249521318825,0.2957666646985888,0.301665749228155,0.3060674811642381,0.3111310835600753,0.3159986502193393,0.3204305447891118,0.3245448432812661,0.3278986461570879,0.3274346984843599,0.3254320716063302,0.3242414006643022,0.3238877500938303,0.3232630641330166,0.3213678877033998,0.318958837389503,0.3191231205627244,0.3204715422224493,0.3212300456100342,0.3222866766467065,0.3240970499035015,0.3248631253395745,0.32728812048837,0.3289906977862173,0.3309273783776741,0.3324316628701594,0.3357726130653266,0.3377128442295564,0.3393663366336634,0.3437315265335819,0.3465236097094598,0.3490405787983642,0.3521597206407045,0.3545805479710008,0.3602144133412746,0.3654562383612663,0.3686354378818737,0.3695592663564194,0.3805652342237708,0.0,1.7003952773122382,59.12242232718774,183.84782130918495,271.6142960057746,fqhc6_80Compliance_implementation_low_initial_treat_cost,89 -100000,95737,44807,423.9322310078653,5977,61.345143465953605,4700,48.66457064666744,1819,18.717946039671183,77.3893283971574,79.74989493003346,63.35181630130408,65.09332383590187,77.16416478152827,79.52389257593784,63.27004181941679,65.01337493545823,0.2251636156291283,226.00235409562688,0.0817744818872867,79.94890044363956,167.11178,117.06389353258832,174552.97324963182,122276.54254111608,359.98565,234.09176301474864,375592.7802208133,244093.06016978668,373.10057,180.53474144926676,386798.87608761503,186326.27013826816,3067.13908,1395.636237570391,3178719.7635188065,1432787.8433316173,1124.32075,496.4316991489152,1164626.4767017977,508778.6322413648,1790.89828,736.8614556347192,1845224.396001546,748458.4587224284,0.38017,100000,0,759599,7934.226056801446,0,0.0,0,0.0,30726,320.5134900822044,0,0.0,34043,352.70585040266565,1569356,0,56276,0,0,6665,0,0,75,0.7833961791157025,0,0.0,0,0.0,0,0.0,0.05977,0.1572191388063235,0.3043332775639953,0.01819,0.3339177558176602,0.6660822441823399,24.614926464148088,4.332410566256666,0.3219148936170213,0.2389361702127659,0.2185106382978723,0.2206382978723404,11.044754795893358,5.585858623362249,19.128371754259074,12299.63270276754,52.98065667564325,13.38477541565726,16.962549479868635,11.30739000326039,11.32594177685698,0.5621276595744681,0.7809439002671416,0.6893588896232651,0.5803310613437196,0.1215043394406943,0.747626582278481,0.9196217494089834,0.8926701570680629,0.7489711934156379,0.1527777777777778,0.4938882421420256,0.6971428571428572,0.6206896551724138,0.5280612244897959,0.1132764920828258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0044999847973486,0.0068165910958278,0.0090675548064132,0.011447277459233,0.0138529812918592,0.0161421816403065,0.0183363604824391,0.0203848079536513,0.0224498357703445,0.0246541653857977,0.0268193337232088,0.0289871453672972,0.0312097911455599,0.0334859641523833,0.0353629298941798,0.0370842003913408,0.0391988050536273,0.0410356619443087,0.0431367646905632,0.0577652009564881,0.0720855525442883,0.0849345527773116,0.0976417524418323,0.1096459328126153,0.1252498334443704,0.1384445670159955,0.1503167083621653,0.1611669568747262,0.1715719386278104,0.184417094679717,0.1973500621924179,0.2086023609208895,0.2197441784191538,0.2289627103728962,0.239362998073047,0.2487224689264276,0.2578962163377747,0.2663203148927481,0.2735267846918443,0.2807565143002474,0.2878796732385148,0.2938311880193374,0.2994254937163375,0.3042987660612237,0.3095589683008466,0.3147004400880176,0.3185317883823753,0.3237310498266673,0.3271584605857784,0.3264154745113842,0.3257356272913262,0.3239482109756783,0.3226634738831268,0.3223029045643154,0.3200903554694058,0.3191449110858873,0.3198117985329434,0.3210647163874479,0.3216388834528278,0.3226739844683393,0.3237228721099688,0.3237346930246165,0.3249492719691395,0.3264203931734716,0.3269245738304662,0.3282434081684784,0.3306433955772418,0.3327398408043569,0.3360274404668033,0.3372045547339291,0.3396226415094339,0.3430496096701083,0.3453815261044177,0.3514097744360902,0.3539718243163253,0.3526002745157847,0.3556857200565542,0.3548660084626234,0.3580101840971406,0.0,1.7037184775501502,55.86121990727386,169.41809007678194,261.31365027436453,fqhc6_80Compliance_implementation_low_initial_treat_cost,90 -100000,95665,44763,423.7599958187425,6152,63.09517587414415,4822,49.74651126326242,1934,19.80870746877123,77.35982293729873,79.73600609646272,63.33991942654043,65.09007183688949,77.12404253507752,79.50046071774521,63.25311245149857,65.00543196857473,0.2357804022212093,235.5453787175037,0.0868069750418598,84.63986831476689,166.52108,116.60861367025431,174066.8792139236,121892.66050306204,359.92185,232.8658022932734,375527.7896827471,242714.44993561693,370.63036,179.00521205115382,382694.4964197983,183506.49080054308,3162.90145,1450.0789278700038,3267785.146082684,1477357.18824426,1139.95539,503.71851418946414,1174871.6876600638,509821.41548306,1885.83198,781.4498336049547,1934593.34134741,788531.0778974107,0.38178,100000,0,756914,7912.130873360163,0,0.0,0,0.0,30732,320.5142946741232,0,0.0,33929,349.95034756703075,1574415,0,56445,0,0,6688,0,0,57,0.5958291956305859,0,0.0,1,0.0104531437829927,0,0.0,0.06152,0.1611399235161611,0.314369310793238,0.01934,0.3476851851851852,0.6523148148148148,24.645470281584256,4.295911797324106,0.3291165491497304,0.2368311903774367,0.218374118622978,0.2156781418498548,11.428104993063464,6.11870842871192,20.294141525209465,12376.057309692887,54.787536204360045,13.703598437612976,18.072391655879,11.764475734552834,11.247070376315236,0.5729987557030278,0.8012259194395797,0.7000630119722747,0.5897435897435898,0.1115384615384615,0.750386398763524,0.9357798165137616,0.8758949880668258,0.7172995780590717,0.1287128712871287,0.5079365079365079,0.7181303116147308,0.636986301369863,0.5526960784313726,0.107398568019093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023797950338234,0.0046827013713625,0.0067265256429767,0.0091507383559139,0.0115808524483487,0.0137615145808947,0.0159162004911401,0.0182426641635718,0.0199595497354389,0.0222501841394549,0.024340770791075,0.0265709156193895,0.0285423561576253,0.0304568527918781,0.0328316950149047,0.0350159163256025,0.0370611923765748,0.0391217316448344,0.0412096765809691,0.0433636249947892,0.0580227954158439,0.0724658925523783,0.0860393358661657,0.09815989647445,0.1100517828705217,0.125644091289029,0.1378428292434406,0.1495047395888806,0.1610368786745056,0.1722261575117522,0.1853987068965517,0.1983193641305524,0.2101460314696729,0.2207070154317609,0.2306523366955909,0.2409579830071007,0.2506891971829414,0.2600287821550638,0.2678160267679918,0.2757543152786044,0.2833549222797927,0.2903757762885512,0.2963265306122449,0.3017087569302247,0.3076055312954876,0.312157721796276,0.3171703794400229,0.3217126159319019,0.3268823042713827,0.3311583886955604,0.3300091392935864,0.3287247639597048,0.3278806222284789,0.3271927293710329,0.3255448480355819,0.3230828044957565,0.3209093354004841,0.3210591982138753,0.32202897063602,0.3220145119205061,0.3221530616071094,0.3231420321955464,0.3245748317151425,0.3255819158460161,0.3266435653094619,0.3286294521974588,0.3298942701227831,0.3311565992716312,0.3341038033200252,0.3376056505694218,0.3418009651279249,0.3446255459678278,0.345668041891463,0.3488158197286732,0.351708514253351,0.3556910569105691,0.3564082885648503,0.3541540327471195,0.3526557023456457,0.3581804281345566,0.0,2.43625494278929,56.42353337803312,181.82648437473784,263.643401537954,fqhc6_80Compliance_implementation_low_initial_treat_cost,91 -100000,95849,45012,424.292376550616,6123,62.73409216580246,4835,49.82837588289914,1941,19.791547120992394,77.34109898624328,79.6318449406963,63.34986309044478,65.04420861969429,77.09975149232997,79.39146230244351,63.26002840141588,64.95681162111946,0.2413474939133095,240.3826382527825,0.0898346890288976,87.39699857483174,167.44156,117.33988490576624,174693.06930693067,122421.60576090126,363.78943,235.74019469501397,378929.3159031393,245334.5623793821,375.09953,181.7755863180153,386851.0782585108,186275.5127385318,3160.69849,1456.1456339713318,3260673.38209058,1482300.2576670926,1147.49014,507.8322334437645,1184164.790451648,516805.2620893476,1899.45362,798.8759050139421,1940825.7780467195,804125.1664062468,0.38212,100000,0,761098,7940.59405940594,0,0.0,0,0.0,31017,322.94546630637774,0,0.0,34324,353.75434276831265,1565429,0,56274,0,0,6573,0,0,58,0.5842523135348308,0,0.0,1,0.0104330770274076,0,0.0,0.06123,0.1602376216895216,0.3170014698677119,0.01941,0.3276370980270312,0.6723629019729688,24.53888774433932,4.318834575296905,0.3247156153050672,0.237435367114788,0.2165460186142709,0.2213029989658738,11.26557217699311,5.942089485139485,20.766145945147592,12346.400433109346,55.11259961545112,13.826093588497365,17.853719185894487,11.688556485213978,11.744230355845284,0.5669079627714582,0.7839721254355401,0.7063694267515923,0.5931232091690545,0.1037383177570093,0.717948717948718,0.92018779342723,0.8568232662192393,0.7206477732793523,0.110204081632653,0.507492795389049,0.703601108033241,0.6464826357969724,0.55375,0.1018181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025416434610905,0.00482313483499,0.0072523303816855,0.0094218937194143,0.0116378346512715,0.0140539770414393,0.0163309799606752,0.0188217291507268,0.0211120871039568,0.0234663502357887,0.0255871838733137,0.0278042726890454,0.0299703172663126,0.0321419017634833,0.0343129173192646,0.03622739658162,0.0381759900734153,0.0402411985329161,0.0422852515520857,0.0444458316426854,0.0593853950510432,0.0731663984281922,0.0870954226458573,0.0994276713048044,0.1118984942613456,0.1274463208812564,0.1397033898305084,0.1513357216511284,0.161857914168036,0.172439290995992,0.1849847200103301,0.1963818421678669,0.2077785145167777,0.218576487561754,0.2280398714958412,0.2385141198497723,0.2485912899878376,0.2573495494076482,0.2656345765328127,0.2733874755157444,0.2808103480192521,0.2877343594661926,0.2946695852807194,0.3005908508011841,0.3060969090202177,0.3111856630117049,0.315167983571044,0.3203737651492005,0.3248941322731452,0.3284680210287163,0.327868631624323,0.3262907244022958,0.3249347902714135,0.324318846454527,0.3233643468552288,0.3209378641967736,0.3190818154436359,0.3195326641434918,0.3195669331869187,0.3202692998204668,0.3211418880723573,0.3221749841068023,0.3223563617976108,0.3226743531425226,0.3246013667425968,0.324728867414196,0.3260757462900361,0.3310872797443928,0.333767193161431,0.3354682154507121,0.3392058420812414,0.3424118304165115,0.3490858480420067,0.3541841482950644,0.3595303475049711,0.3637231503579952,0.3640135218192993,0.370273003033367,0.3681318681318681,0.3636363636363636,0.0,2.353183208936916,59.7452290075332,175.09766536787495,263.34928847131306,fqhc6_80Compliance_implementation_low_initial_treat_cost,92 -100000,95640,44798,425.1045587620243,6048,61.99289000418235,4756,49.10079464659138,1864,19.07151819322459,77.31769350596971,79.7410483120107,63.289715480586615,65.08163113507328,77.08998801469517,79.51571183406976,63.20463651043166,65.0000997932527,0.2277054912745484,225.3364779409424,0.085078970154953,81.53134182057897,167.33002,117.2138930592651,174958.1974069427,122557.39550320484,362.35319,234.7973507502257,378251.3278962777,244882.10173895463,371.85141,179.5599207000959,385470.1066499373,185114.56866350383,3139.35419,1433.8266784819486,3240688.3521539103,1457579.58833819,1165.1436,520.4939154834012,1198412.9025512338,524596.6792564159,1839.05836,768.904213276042,1882208.239230448,768647.411334392,0.38012,100000,0,760591,7952.645336679214,0,0.0,0,0.0,30919,322.6160602258469,0,0.0,33988,351.9970723546633,1564928,0,56105,0,0,6687,0,0,65,0.6796319531576747,0,0.0,0,0.0,0,0.0,0.06048,0.1591076502157213,0.3082010582010582,0.01864,0.3419680935081345,0.6580319064918654,24.1346186271256,4.3471355958056686,0.325063078216989,0.2340201850294365,0.2117325483599663,0.229184188393608,11.149356275667593,5.762384810197561,19.686811988440333,12290.23003206356,53.86259303662015,13.303454792606672,17.559158607854727,11.062787543045586,11.937192093113149,0.5668629100084104,0.7897574123989218,0.7011642949547219,0.5938430983118173,0.1238532110091743,0.7317073170731707,0.9201995012468828,0.8737623762376238,0.7488789237668162,0.1687242798353909,0.5067431850789096,0.7162921348314607,0.6401050788091068,0.5497448979591837,0.1109799291617473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024009238998298,0.0046444651766519,0.0070761421319796,0.0092378987591337,0.0111713654908584,0.0134066829665851,0.0159039438516312,0.0178485681300381,0.0199564029351263,0.0222124274790381,0.0245958014679464,0.0267232869951468,0.028771199967048,0.0307709764601514,0.0328146632777467,0.0348831193021306,0.0365378234903782,0.0383600631543958,0.0402955562493495,0.0423088956095526,0.0569663907700025,0.0712631634096505,0.0854060753749842,0.0976555094474754,0.1096784413115792,0.1252078501149133,0.1383817559669295,0.1505771751990535,0.1621578254869869,0.1721245448784731,0.1847972644999838,0.197093817047006,0.2086133469845661,0.2183283686700543,0.2276624349819271,0.238505651503555,0.2480330800178811,0.2572027121393012,0.2662268350290697,0.273606638167169,0.2811019883501441,0.2881671348314606,0.2944924789766671,0.30003238924677,0.3051416477113768,0.3107584948463777,0.3153474516871933,0.3201307954603287,0.3242956150009716,0.3282131206001611,0.3271039370503112,0.3256687582562748,0.3247858431018936,0.3234988302573434,0.3226328287325616,0.3211370284716585,0.3195218492716909,0.3197449514817729,0.3196965822892695,0.3205506741133364,0.3209369987690701,0.3210514932856216,0.3218870746603515,0.3225262410403213,0.3238431615874758,0.3246198088033368,0.3263521353975037,0.328992054837202,0.3322525537774988,0.3339258205948572,0.3376806325547578,0.3427180355630821,0.3449293563579277,0.3440648435724566,0.3452704602981157,0.3473485295854494,0.3518208136522932,0.3606230031948881,0.3636859323882224,0.3651215805471124,0.0,2.3195530362068606,55.62711534462545,176.92284970086075,261.44267841861586,fqhc6_80Compliance_implementation_low_initial_treat_cost,93 -100000,95720,44723,423.7463435018805,5963,61.31424989552863,4655,48.14040952778939,1819,18.689928959465107,77.34880342590687,79.7077770354975,63.338894218876014,65.07775826476121,77.12495471154386,79.4841353386344,63.2559878530533,64.99709130559086,0.223848714363001,223.64169686309765,0.0829063658227156,80.66695917035815,167.6741,117.39918441206623,175171.43752611784,122648.54201009846,361.25526,234.25086383833636,376890.58712912665,244207.34834761417,364.49222,175.96146513990763,377954.8056832428,181586.213256994,3046.8072,1386.7149310096288,3149245.727120769,1414924.5100393123,1092.44378,482.21752641059993,1128338.5499373171,490834.4478082162,1782.11764,745.1194707710193,1832103.1968240703,751445.5107774986,0.38074,100000,0,762155,7962.338069368993,0,0.0,0,0.0,30753,320.748015043878,0,0.0,33335,345.5077308817384,1567894,0,56262,0,0,6815,0,0,66,0.6790639364814041,0,0.0,1,0.0104471374843292,0,0.0,0.05963,0.1566160634553763,0.3050477947341942,0.01819,0.341086506292815,0.658913493707185,24.46158940362633,4.336944770427573,0.319656283566058,0.2345864661654135,0.2257787325456498,0.2199785177228786,10.98417932450085,5.612147284772608,19.361445717744456,12258.430899619229,52.87338197384121,13.14405158104044,16.748981840900544,11.75640570124181,11.223942850658428,0.5654135338345865,0.7976190476190477,0.6935483870967742,0.5842055185537584,0.1123046875,0.718625099920064,0.9090909090909092,0.8591160220994475,0.6875,0.1488372093023255,0.5091069330199764,0.728486646884273,0.6403197158081705,0.5509433962264151,0.1025957972805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.0045006690183675,0.0065648622596519,0.0088582777151332,0.0111436473076297,0.0133964472947523,0.015727725850347,0.0178626110033683,0.0199172244647693,0.0221278337853743,0.0242605005842199,0.0264589363056017,0.0286742404770472,0.0307722401243655,0.0327512043159382,0.03480021905126,0.0367145356843336,0.0387412718010437,0.0408292698142044,0.0427611357124251,0.0573430663032467,0.0717088945402028,0.0852706672261854,0.097754960338334,0.1097774496361143,0.1256571640133284,0.1379775042444821,0.1497301152998541,0.1604632280671766,0.1705817994593899,0.1837442509236221,0.1951053263656723,0.2066779052694545,0.2170689296923699,0.2274527492354067,0.2380519797044291,0.2477188201525626,0.2571451084570618,0.2651145367448407,0.2737238819648094,0.2810514253967152,0.2871862646487801,0.2942547778237974,0.2995868016048865,0.3046866465168785,0.3099541939614835,0.3147155477252564,0.3192924941867114,0.3234066203937079,0.3271584605857784,0.3257534983853606,0.324432099444475,0.3234490721184985,0.3224310541598648,0.3203559014883693,0.3186241508048228,0.3176189647810479,0.3176536148034025,0.3190247897224165,0.3201691015144218,0.3209024973829819,0.3226925199022621,0.3245067714429025,0.3250720718707399,0.325735718407386,0.3256498411210085,0.3259449436599629,0.329358837223935,0.3300021039343572,0.3345098350253807,0.337723895902648,0.3414647165581296,0.3425814234016888,0.3460446558735517,0.3474111866969009,0.349034104459814,0.348764952617679,0.3519242642519037,0.348914858096828,0.3499613302397525,0.0,1.7770069432369258,55.4647576335228,171.37202249444016,258.4438614239487,fqhc6_80Compliance_implementation_low_initial_treat_cost,94 -100000,95629,44672,423.33392590113874,5975,61.14254044275272,4706,48.53130326574574,1837,18.74954250279727,77.26744378178137,79.68213338910476,63.28338998351626,65.06923810504829,77.03370968146021,79.45177552793963,63.19555412160943,64.98517057608453,0.2337341003211577,230.3578611651318,0.0878358619068251,84.06752896375735,165.07942,115.63893890741583,172623.93207081532,120923.72338459254,359.10235,233.1006781358045,374777.3165044077,243018.4552524677,365.13891,177.0300738354912,377285.66648192494,181648.0444548567,3088.60029,1417.1222223486618,3190300.0135942027,1442566.8735738674,1120.48968,497.58146577130793,1155276.9034497903,504019.461872214,1809.5653,764.4630196210735,1851013.771972937,767156.2770311558,0.3809,100000,0,750361,7846.542366855242,0,0.0,0,0.0,30576,319.0454778362212,0,0.0,33448,345.2509176086752,1577812,0,56594,0,0,6614,0,0,54,0.5542251827374541,0,0.0,1,0.0104570789195746,0,0.0,0.05975,0.1568653189813599,0.3074476987447698,0.01837,0.3353522473700988,0.6646477526299012,24.50372062067956,4.323367254436814,0.3270293242668933,0.2345941351466213,0.2099447513812154,0.2284317892052698,11.01517674704276,5.639970095401301,19.558637438129782,12252.472992019368,53.48765629624505,13.259959265206987,17.483797127707483,10.966732090345095,11.777167812985498,0.5590735231619209,0.7844202898550725,0.7024041585445094,0.5678137651821862,0.1144186046511628,0.7292474786656322,0.919431279620853,0.854066985645933,0.711864406779661,0.1267605633802817,0.494878548434299,0.7008797653958945,0.6458519179304193,0.5226063829787234,0.111368909512761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0049685662137497,0.0071982618583495,0.009409804080969,0.0115769234681939,0.0137491343137654,0.0159981238656524,0.0182954220606852,0.0205525675371684,0.0227137736815156,0.025014358385297,0.027027027027027,0.0291645663378151,0.0310355486862442,0.0330198903809828,0.0350880820444959,0.0369227263782585,0.0391928921365108,0.0411820999854369,0.042913890713459,0.0577962186850053,0.0716402903317029,0.0851667104226831,0.0978655743574083,0.1096894068959692,0.12481336764192,0.1365934486128223,0.1476819780454012,0.1579375267436885,0.1688614393125671,0.1821270628842627,0.1954908397525487,0.2071514096005224,0.2176121003841565,0.2273007553568675,0.2372573353426114,0.2467545514416154,0.2560913848404704,0.264233642949606,0.2723781794839464,0.2798781829340312,0.2863326859629829,0.2925873297809355,0.2988229930291432,0.304067611114489,0.3095593588430547,0.3149808419523678,0.3199725148877691,0.3242080715164863,0.3279552842305557,0.3265622681719473,0.3251422195898015,0.3241790792146242,0.3234476769431176,0.3226834206765126,0.3201754385964912,0.3187442495003014,0.3189672163458379,0.3196459390646093,0.3203000803786728,0.3210003940036398,0.3216736069799722,0.3221998151415847,0.3220737358135787,0.3232571593867515,0.3238625958192711,0.3255661212484651,0.3294276985101892,0.3309633592622575,0.3352894211576846,0.3368614818223654,0.3391444713478612,0.3401581834417655,0.3416287849603205,0.3479784111353091,0.3480398033808896,0.3557587970857231,0.357700205338809,0.3554609929078014,0.3583699560527367,0.0,2.6438166421914,56.153142837237446,173.43486664241158,257.0979222504098,fqhc6_80Compliance_implementation_low_initial_treat_cost,95 -100000,95834,44739,423.0022747667842,6089,62.39956591606319,4834,49.82574034267588,1883,19.30421353590584,77.40182060844235,79.71557726991908,63.36325590393732,65.0757605302514,77.16117309719507,79.47458803324162,63.27385134632946,64.98827939533584,0.2406475112472748,240.9892366774642,0.0894045576078639,87.48113491556353,166.05512,116.2865209270476,173273.7024438091,121341.61250396268,359.12894,232.8670331640042,374144.5729073189,242393.9344741993,372.04176,179.93739830232627,383452.9081536824,184233.48268593053,3135.29598,1449.759106086649,3235676.5135546885,1476867.6629240671,1133.57926,506.7269917013058,1167965.6489346162,513863.4844640789,1844.05324,782.5753704780938,1892320.408205856,789868.6957677341,0.3817,100000,0,754796,7876.077383809504,0,0.0,0,0.0,30727,319.99081745518293,0,0.0,34073,350.9506020827681,1576825,0,56668,0,0,6545,0,0,62,0.6260826011645136,0,0.0,0,0.0,0,0.0,0.06089,0.1595231857479696,0.3092461816390212,0.01883,0.350266541235497,0.649733458764503,24.14645413992931,4.264741506405938,0.3270583367811336,0.2412081092263136,0.217832023169218,0.2139015308233347,11.287601983551134,5.896189213353158,20.20747131692289,12275.74479762241,55.20987773751824,14.171421553349331,17.865238209950657,11.779734967715951,11.393483006502288,0.5775755068266446,0.7958833619210978,0.7008222643896268,0.6011396011396012,0.1189555125725338,0.7321167883211679,0.913978494623656,0.8939759036144578,0.688715953307393,0.1287553648068669,0.5164549653579676,0.717546362339515,0.6320754716981132,0.5728643216080402,0.1161048689138576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0042769258835095,0.0063506878220995,0.0088465015184293,0.0110002948323014,0.013009487356977,0.015145492534271,0.0175546029802,0.0196148578203896,0.02184170393949,0.0240377223104915,0.0263066059038469,0.0283285536608179,0.030353263387663,0.0325092566807966,0.03483121687108,0.0369120569725074,0.0389676375740105,0.0410265997777293,0.0430850565621455,0.0576523960994941,0.071557753222451,0.0854211855437846,0.0982373579276875,0.1097513454308011,0.1250910934381039,0.1375197296638806,0.1490119375378695,0.1600337250130737,0.1698070763660514,0.182919221254168,0.1951870502042316,0.2071355626534558,0.2177547118273695,0.2277974449746036,0.2381400498200941,0.2474207256544386,0.2562940640707049,0.2645447430211323,0.2725503885728674,0.2801503324660306,0.2873373777045271,0.2944466781769589,0.3000059898173106,0.3051318793413319,0.3099204100239016,0.3149248689429104,0.3199114819148395,0.3239002666804754,0.3274847629350149,0.3270434326168589,0.3258734525447043,0.3247403821799454,0.3247270262083688,0.3245651754867217,0.3225184709283649,0.3204495874039647,0.3207222559027379,0.3212159465038126,0.3216423227645172,0.322202081737148,0.3229322715445872,0.3241617047947352,0.3251840285523087,0.3259947775674963,0.3275960539979231,0.3285017303001077,0.3315633296892082,0.3354379600237206,0.3374046404996245,0.3420502092050209,0.346296886622038,0.3455253896430367,0.3460050079672205,0.3481012658227848,0.3525120602423814,0.3535245651510528,0.358666937614306,0.3654164368450083,0.3710982658959537,0.0,2.4386514971128586,59.933401720796496,181.52849910277413,254.42581995114085,fqhc6_80Compliance_implementation_low_initial_treat_cost,96 -100000,95692,44990,426.1275759729131,6077,62.21000710613218,4777,49.2935668603436,1965,20.116624169209548,77.32145341825886,79.70885130531975,63.3143933609397,65.08016051027985,77.07655259168632,79.4669127818238,63.222440971227634,64.99244531909288,0.2449008265725325,241.93852349596057,0.0919523897120626,87.71519118697313,165.17864,115.73978642353345,172614.88943694351,120950.32648866516,357.1271,231.49934720144623,372598.2840780839,241314.84053154523,369.77502,179.5574896673965,382513.6793044351,184608.5401707348,3167.84836,1460.0467867656955,3272350.677172596,1487664.8379861384,1135.91778,507.6885833838415,1174633.9610416754,518122.2394597671,1928.59184,814.4005016144515,1976958.1365213396,817247.7612476056,0.38194,100000,0,750812,7846.131338042888,0,0.0,0,0.0,30437,317.42465409856624,0,0.0,33808,349.5067508255654,1580209,0,56684,0,0,6521,0,0,62,0.627011662416921,0,0.0,1,0.0104501943736153,0,0.0,0.06077,0.1591087605383044,0.323350337337502,0.01965,0.339735516372796,0.660264483627204,24.275560116059328,4.350244222316631,0.3131672597864768,0.2323634079966506,0.2275486707138371,0.2269206615030354,11.206398463840586,5.762186952891423,20.941600432096426,12303.65548014648,54.42073316244874,13.404982651487428,16.961904417348332,12.121883311049858,11.931962782563112,0.5534854511199497,0.7693693693693694,0.695855614973262,0.5722171113155474,0.1171586715867158,0.7211895910780669,0.9267139479905436,0.8493827160493828,0.6959706959706959,0.180327868852459,0.4877622377622377,0.6724890829694323,0.6388634280476627,0.5307125307125307,0.0988095238095238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0045634317006388,0.0066590872178008,0.008760073576488,0.0110389874654077,0.0129370059489854,0.0151748472827029,0.017418827853788,0.0199552234228524,0.0220177288267447,0.0241646930971201,0.0266176485689933,0.0286590132905402,0.0307483049275601,0.0329586391271586,0.0349982940270267,0.0370830743733167,0.03910579737219,0.0410691071707139,0.0430450461718049,0.0577089796216797,0.0718345982727034,0.084940909758811,0.0974606147985224,0.1098085972946166,0.1254485218624638,0.1376711601740791,0.1495995057730816,0.1607652434136696,0.1719958382048504,0.1856604180133592,0.1980124062225975,0.209376189699244,0.2201594994037916,0.2299229922992299,0.2393945098386614,0.249054414406373,0.2574875207986689,0.2657366451173868,0.2733114183284272,0.2795567072324279,0.286419406528884,0.2922670708171022,0.2979269330839418,0.304054054054054,0.3093733446665928,0.314075130765573,0.3187465822237483,0.3242547688328484,0.3288987922577923,0.3279959094701149,0.3262975635898916,0.3255273935009921,0.3244956605871565,0.3240167015854619,0.3219572746498298,0.3203319239235435,0.3204505155316214,0.3212571526176445,0.3221268010498312,0.3232554216415812,0.3240912866352885,0.3246647108130763,0.325369789332138,0.327116558496393,0.3284524308466052,0.3290816326530612,0.3322067092046244,0.3359760394644115,0.3400047747891135,0.3456925251972454,0.3453314136404842,0.349246710317208,0.3549107142857143,0.3565414814114085,0.3573310972688069,0.3574303405572755,0.3584288052373158,0.3597678916827853,0.3648283841110682,0.0,2.450978823938462,58.86106511239605,174.58945502607628,257.65014817971104,fqhc6_80Compliance_implementation_low_initial_treat_cost,97 -100000,95700,44330,420.12539184952976,5937,60.73145245559039,4626,47.70114942528736,1792,18.39080459770115,77.3455376358958,79.73141730568015,63.32130932583449,65.08680859974356,77.12718581899146,79.51349342298647,63.24053602990949,65.00835716817465,0.218351816904331,217.9238826936825,0.0807732959249989,78.45143156890799,165.70972,116.04196500982196,173155.40229885056,121255.97179709713,357.3142,232.03155620342105,372708.9446185998,241797.09112165213,363.34966,176.6299749007526,374483.5109717868,180773.62813167225,3016.13481,1382.4511863174018,3113192.49738767,1406373.2779798666,1067.91739,482.0589788161951,1097935.579937304,485886.9238805964,1756.74456,732.5840509270951,1803735.6321839085,738758.2303077397,0.37794,100000,0,753226,7870.700104493208,0,0.0,0,0.0,30493,317.9414838035528,0,0.0,33299,342.8108672936259,1579694,0,56546,0,0,6566,0,0,64,0.6687565308254964,0,0.0,0,0.0,0,0.0,0.05937,0.1570884267344023,0.3018359440795014,0.01792,0.3378378378378378,0.6621621621621622,24.42579974362763,4.250719333632876,0.3354950281020319,0.2356247297881539,0.2103329009943796,0.2185473411154345,11.106220785389782,5.789075728300298,18.99974676122577,12150.506685406694,52.29860221119304,12.977386836370158,17.558829127222484,10.71438303082558,11.04800321677481,0.5570687418936446,0.7688073394495413,0.6868556701030928,0.5806783144912642,0.1068249258160237,0.7409200968523002,0.916243654822335,0.8801955990220048,0.7207207207207207,0.1728971962616822,0.4898139946855624,0.6853448275862069,0.6176727909011374,0.5392809587217043,0.0890840652446675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201856148491,0.0047568335108271,0.0072389461393979,0.009187178601191,0.0114958899650036,0.0135771032796903,0.0158675123901205,0.0179733055564065,0.0199811845549738,0.0220988817433334,0.0243782370134864,0.0263349801255122,0.0284623930217248,0.0306040434433155,0.0323116615067079,0.034292389922152,0.0362869810226236,0.0380895051477914,0.0400574031322143,0.0419883516185832,0.0574707842051946,0.0707064364207221,0.0843898241047814,0.0964470209475312,0.1084296683824149,0.1234518281912699,0.1359372678848072,0.1465908364751741,0.1579476215927311,0.1678705979585046,0.1809284628733414,0.1935242839352428,0.204901886094272,0.2152945681308462,0.2247779624269504,0.2352159173996853,0.2443898900853651,0.2540380635292,0.2623568107065895,0.2701190203707942,0.2770344500595562,0.2839931756567261,0.2900899622891324,0.2952869931542917,0.3009932449640418,0.3059648259746648,0.3107944397956762,0.3152384940424074,0.3201182133777279,0.3252720677146312,0.3246284671924459,0.3238126549678762,0.3231643970237259,0.3224593847217421,0.3212018056686154,0.3195978519558186,0.3176513321015145,0.3176001574958165,0.3187696192165961,0.3195237755247751,0.3201717381929992,0.3204909918827955,0.3216137360676728,0.3228554181850701,0.3240520329894924,0.3259996871904488,0.3270456355980425,0.3292235294117647,0.3315242130326692,0.3331748484488292,0.3349827492282549,0.3373181697963501,0.3383246663742873,0.3379023097311624,0.3403495583536929,0.3426356589147287,0.3446475195822454,0.3466856445709638,0.3480272108843537,0.3481110254433308,0.0,2.40912266993619,53.9170137208246,171.22249577219134,254.31729242402528,fqhc6_80Compliance_implementation_low_initial_treat_cost,98 -100000,95623,45078,428.5684406471247,6150,63.19609299018018,4843,50.18667057088776,1840,18.99124687575165,77.23812690061078,79.66967964949316,63.25655152000609,65.05435383505471,77.01132063246412,79.44154754783413,63.17198391920072,64.97149079303647,0.2268062681466602,228.1321016590283,0.0845676008053715,82.86304201824635,166.58334,116.69335975827136,174208.44357529047,122034.82400496886,363.9752,235.63070049181425,380171.7682984219,245952.49102393177,370.8919,178.9009729621167,384907.4072137457,184840.96226330573,3159.3933,1440.9557578721754,3276711.7743639085,1479615.3204481928,1140.16152,504.4169014631605,1181416.071447246,516571.19256158057,1805.90776,756.4494234176167,1864974.1589366572,769200.3855301451,0.3837,100000,0,757197,7918.565617058657,0,0.0,0,0.0,30999,323.6878156928772,0,0.0,33929,351.97598904029365,1564654,0,56241,0,0,6635,0,0,65,0.6588373090156133,0,0.0,1,0.0104577350637398,0,0.0,0.0615,0.1602814698983581,0.2991869918699187,0.0184,0.3384591488039764,0.6615408511960236,24.24584215666671,4.246422629163396,0.3254181292587239,0.2512905224034689,0.2033863307867024,0.2199050175511047,10.999606238219432,5.614095407673379,19.571384184276265,12380.762067227506,55.08946969869762,14.608076003196109,17.827497587836383,11.026093314908024,11.6278027927571,0.5616353499896758,0.7781429745275267,0.6871827411167513,0.5695431472081218,0.1211267605633802,0.7429443173150267,0.9361233480176212,0.8679706601466992,0.6752136752136753,0.1682242990654205,0.4943374858437146,0.6841415465268676,0.62382176520994,0.5366178428761651,0.1092831962397179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0045642185550698,0.0067013240191698,0.0088226624518463,0.0111443575964826,0.0135497213647523,0.0156356774950277,0.0178870592081068,0.01976147126813,0.0221134247641678,0.0239062628252482,0.0258523252707507,0.0279638949784378,0.0300303086534298,0.0320138795658504,0.0342290698757281,0.0360971159627625,0.0381131448278727,0.0399417061364701,0.0420413528344008,0.0566300075269716,0.0703769294449276,0.0839076354162289,0.0965044392252683,0.1089826176948909,0.1248265562275582,0.1382284828011133,0.1501689387237398,0.1620785945841848,0.1733479419094268,0.1870953819594303,0.1993950498162382,0.2103932614878338,0.2209755883770872,0.2315567898785514,0.2416861774725091,0.2515687393040502,0.2599934598513808,0.2680131004366812,0.2759392798089289,0.2832958158316122,0.290285888505828,0.2959719997627099,0.3019868027259943,0.3074064145057516,0.312409625152942,0.3179718875502008,0.3218492005767586,0.3266393016730749,0.3311276683032701,0.3302727518228463,0.3286968041066401,0.327149512918255,0.3261940644562949,0.3255356850365561,0.324472496084032,0.3223573492522147,0.3227947109288808,0.3229872245562891,0.3234277939886504,0.3240930162722171,0.3254326561324304,0.3276513561172223,0.3294115010532921,0.3309730250481695,0.3328373404338632,0.3342192501143118,0.3379775564241584,0.3404135602757068,0.3421761165663605,0.3449124726477024,0.3497453310696095,0.3506003646193499,0.3540495365445981,0.3555389221556886,0.3554981203007519,0.3575410577067952,0.3595371109337589,0.3624931656642974,0.3558421851289833,0.0,1.784332961971366,58.19571757233869,180.31217924177972,265.30682903883087,fqhc6_80Compliance_implementation_low_initial_treat_cost,99 -100000,95720,42752,403.80275804429584,6827,70.19431675720853,5339,55.21312160468032,2172,22.27329711659005,77.33641368994157,79.71041678159766,63.332022412709286,65.08889751721155,77.0707618325563,79.44557290993195,63.234300004197024,64.99417115679825,0.2656518573852651,264.843871665704,0.0977224085122614,94.72636041330418,104.27824,73.29599927231614,108940.91099038864,76573.33814491866,291.70541,184.9610218700884,304138.6021730046,192621.30303737652,303.84351,146.35999652865632,313484.7576264104,149944.1384129898,3873.25005,1747.658385356096,4006033.838278312,1785401.4850910094,1289.33896,566.3557658061428,1331870.7689093188,576662.237363241,2142.41334,892.0939268384756,2198997.659841204,899183.5495450293,0.382,100000,0,473992,4951.859590472211,0,0.0,0,0.0,24868,259.17258671124114,0,0.0,28151,290.35729210196405,1921138,0,68970,0,0,0,0,0,54,0.5432511491851233,0,0.0,0,0.0,0,0.0,0.06827,0.178717277486911,0.3181485279039109,0.02172,0.3218662952646239,0.678133704735376,25.16975394368944,4.552708931612655,0.3259037272897546,0.2022850721108821,0.2352500468252481,0.236561153774115,11.05238265150824,5.489984814994735,23.10994256065459,12745.769836893887,60.22738595167667,12.550614988483314,19.80445926783351,13.980839611646545,13.891472083713328,0.5459823937066867,0.7638888888888888,0.6885057471264368,0.5939490445859873,0.1155977830562153,0.7106254709871892,0.9085545722713864,0.8675496688741722,0.7518248175182481,0.1379310344827586,0.4915254237288136,0.6977058029689609,0.6254856254856255,0.5498981670061099,0.1097804391217564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0046247933549021,0.0070561957459769,0.0092690462639238,0.0115662797676571,0.013657751614283,0.015929185490368,0.0180620788237696,0.0200484598161798,0.0220911901398358,0.0238224591256214,0.02601562580208,0.0283407887294976,0.03030178185189,0.0321625358565325,0.0340365275093282,0.0361051574358815,0.0380824930495041,0.0402315575048327,0.0421345388637736,0.0570981047355505,0.0716266125404116,0.0850811695121439,0.0981435149170573,0.1097537838863358,0.1253765100032763,0.1382022471910112,0.1505300879403664,0.161797824764385,0.172267512239017,0.1853772975765141,0.1977874622862889,0.2098302579817869,0.2204511935325285,0.231194434981373,0.2422117777163395,0.2520810813822615,0.2620316047384629,0.2723624243248758,0.2811073614368243,0.2892531412916575,0.297355078389682,0.3045348713524246,0.3108575670142589,0.3167916697007208,0.3231648016151469,0.3291485876483313,0.3346387610304402,0.3389856835891993,0.3436914222351295,0.3441107922779506,0.3444891657936814,0.3449112609689342,0.3450283083071487,0.344915961377995,0.3442001167040324,0.3441165732789409,0.3456771836271169,0.3459212172095334,0.3469475494411006,0.3482164659916975,0.3496244326852568,0.3508300627531639,0.3515063276962706,0.3523949640634798,0.3538566160123453,0.3550593441963388,0.3575667184971282,0.3619121757899579,0.3662914146067866,0.3694829178208679,0.3730287319075394,0.3730092204526404,0.3727272727272727,0.3750835322195704,0.375,0.3774968789013733,0.3780387309435517,0.3769081321121287,0.3836671802773497,0.0,2.111412552440277,58.378993360005246,201.4937597126928,306.5357090160755,fqhc7_100Compliance_baseline,0 -100000,95609,42797,403.5184972126056,6706,69.01023962179293,5258,54.4091037454633,2092,21.441496093464007,77.26635035352784,79.70524065376694,63.26822878755484,65.07247508299687,77.01042072440016,79.45072789550986,63.1743852593106,64.98195048047555,0.255929629127678,254.51275825707853,0.0938435282442426,90.52460252132732,103.78588,73.0133024521613,108552.41661349872,76366.55801458158,293.02498,186.20516017669664,305898.367308517,194172.6722135956,301.30759,144.9847231580519,311622.14854250127,148857.31882800336,3805.75565,1701.2742272890332,3941906.243136106,1740773.0624617275,1270.66376,552.2408442945866,1314128.868621155,562711.2032283426,2060.90854,853.5434599428474,2116243.8054994824,859553.7483209553,0.38003,100000,0,471754,4934.200755159033,0,0.0,0,0.0,25050,261.3875262789068,0,0.0,27846,287.74487757428693,1916442,0,68742,0,0,0,0,0,51,0.5334225857398363,0,0.0,0,0.0,0,0.0,0.06706,0.1764597531773807,0.3119594393080823,0.02092,0.3191549695165178,0.6808450304834822,25.30074532296717,4.526105388697208,0.3210346139216432,0.2131989349562571,0.2325979459870673,0.2331685051350323,11.187442896389522,5.63475918350561,22.26662695819193,12726.299701048983,59.223723332441686,13.23163702950892,19.057901359007246,13.603635796558894,13.330549147366616,0.5519208824648155,0.7627118644067796,0.6996445497630331,0.5960752248569092,0.1117455138662316,0.7071865443425076,0.9116022099447514,0.864321608040201,0.7303754266211604,0.1450980392156863,0.500506329113924,0.691699604743083,0.6488372093023256,0.553763440860215,0.1029866117404737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0048592442302815,0.007200381853819,0.0094965023588742,0.0117465035320942,0.0139221541628871,0.0159822011757021,0.0181682556226561,0.0202381926823279,0.0225637872732861,0.0248470791083377,0.026910346812491,0.0292043688171046,0.0312094030312403,0.0331866633614278,0.0352323993212201,0.0374792703150912,0.0395500763374635,0.0413808894393389,0.0431454346352401,0.0580013172613509,0.0720872718127135,0.0852407012531381,0.0983884558668632,0.1106780735107731,0.1262207910514162,0.1384481311043329,0.150201591398767,0.1618341200269723,0.1721122129941014,0.185248306510765,0.1979426366336419,0.2106071331336781,0.2222429148910531,0.2325996627393063,0.2433751511319645,0.2532366707253047,0.2628740020044368,0.2717697586692724,0.2801867529309197,0.2882082411408315,0.2961349262122277,0.3034244222545988,0.3091497781508574,0.3154177202878817,0.3212460813112488,0.326736024066182,0.3318551367331855,0.3368986037104741,0.3424134789325657,0.343351744577664,0.3435271115027676,0.3443394896376709,0.3441987592011453,0.3438002262039407,0.3433275085073117,0.3427937212620897,0.3432980701205969,0.3444870434395646,0.3459988898239833,0.3460749825993717,0.3470910389713469,0.3471830689611646,0.3478612145967054,0.3497100048332527,0.3510496108184606,0.3492200045882083,0.3531889290012033,0.3550245661164328,0.3576686134890791,0.358996698459281,0.362008126603935,0.364099624179884,0.364460354939447,0.3633977123570223,0.3642274500531978,0.365458161236041,0.3684853420195439,0.362534435261708,0.3645357686453577,0.0,2.319971644608809,57.62533117485043,201.0781614474783,295.1346046502111,fqhc7_100Compliance_baseline,1 -100000,95713,42829,403.9576651029641,6742,69.37406621879995,5249,54.349983805752615,2080,21.45998976105649,77.34534288058313,79.71404957226997,63.32656324425341,65.07454654636797,77.0889201105753,79.4550959400436,63.23237051435645,64.98124403492754,0.2564227700078305,258.95363222636547,0.0941927298969531,93.30251144042734,104.9367,73.81581343540664,109636.8309425052,77122.03507925427,290.98281,185.2075827314785,303459.65542820725,192957.6414781084,303.08722,145.66077252172937,313695.3182953204,149894.00077940128,3771.98522,1698.4413317339504,3908786.423996741,1743037.3762110125,1246.38872,542.9536546009921,1290880.5073500988,555995.4025281495,2049.74058,856.1041058078256,2116203.3997471607,872745.7298144086,0.38181,100000,0,476985,4983.492315568418,0,0.0,0,0.0,24832,258.8781043327448,0,0.0,28170,291.31883861126494,1914256,0,68651,0,0,0,0,0,40,0.4179160615590359,0,0.0,0,0.0,0,0.0,0.06742,0.1765799743327833,0.308513794126372,0.0208,0.3193937692955375,0.6806062307044626,24.95747773797454,4.518887966014889,0.3250142884358925,0.2154696132596685,0.2322347113735949,0.2272813869308439,11.014442676143656,5.428378775148635,22.16866857904021,12735.451018106034,59.23927391729057,13.386029361768664,19.128861674708485,13.593141972422222,13.13124090839119,0.5545818251095447,0.7860300618921309,0.6975381008206331,0.5750615258408531,0.1098072087175188,0.7175398633257403,0.932642487046632,0.8337468982630273,0.7414965986394558,0.1324786324786324,0.5,0.7100671140939597,0.6554105909439755,0.5221621621621622,0.1042752867570385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809624108878,0.0046723288670869,0.0069599448074347,0.0091001421897217,0.0112774309015843,0.0134597175699202,0.0153614058693414,0.0175474413809295,0.0197084619630773,0.0222231321206661,0.0240706948516597,0.0262990347093859,0.0285120651704346,0.0306070939228796,0.0329824561403508,0.034856315898284,0.0367957746478873,0.0386882523868825,0.0404978269458711,0.0425172726420108,0.0576790525722163,0.0715115488063965,0.0849422875131164,0.0971981103290089,0.1093477962667904,0.1249695751097941,0.138334801855646,0.1509074255527627,0.1618219125379387,0.1724659444384854,0.1863006023252556,0.1988088792636708,0.2110475112629769,0.2226832793203118,0.2332661445769862,0.2440795600691826,0.2551153678711362,0.2644371427285412,0.2735043705301396,0.2820139764005041,0.2898299201666088,0.2963292131021014,0.3029338319703658,0.3092904555366514,0.3156801535340775,0.321025388217895,0.3271250297272602,0.3323923962108208,0.3378001840307927,0.3422450705714436,0.3427549919050189,0.3428728977116074,0.3435402506747305,0.3437789754288363,0.3443235995232419,0.3435806921955337,0.3426085854184163,0.343581658126396,0.3446640046414798,0.345858758876637,0.3472515955157118,0.3485883514313919,0.3509642565487781,0.3512363375739115,0.3525906985719799,0.3534466995794478,0.3541666666666667,0.3572550744674165,0.3595690925678995,0.3606096595407759,0.3639266490283733,0.3623157558665461,0.3632349230381024,0.3674140965791689,0.3668393782383419,0.3650586701434159,0.3700871692919407,0.3743912337662338,0.3693072039746067,0.3703413103177717,0.0,1.858020316409031,58.31130502197267,199.89169119323697,296.17927948918765,fqhc7_100Compliance_baseline,2 -100000,95653,42772,402.6951585418126,6902,70.83938820528368,5411,55.87906286263891,2130,21.78708456608784,77.2498286400838,79.64929119759043,63.26585613190741,65.03930533218177,76.98614838970181,79.38812676597111,63.16839169347741,64.94582584256497,0.263680250381995,261.1644316193207,0.097464438430002,93.4794896167972,104.01226,73.15361259519973,108739.15088915142,76478.11631124975,290.77915,184.5436197482117,303280.6184855676,192217.15967947867,305.68263,147.07336966468318,315793.2108768152,150713.59971429323,3866.43061,1743.9677648084355,3993461.083290644,1774878.2135629589,1278.33343,558.4604680818952,1319106.1022654804,566575.1581893354,2095.97734,876.3208923995634,2146106.6981694247,877425.2868986124,0.38193,100000,0,472783,4942.6886767796095,0,0.0,0,0.0,24773,258.23549705707086,0,0.0,28308,292.1079317951345,1913858,0,68739,0,0,0,0,0,47,0.4913593928052439,0,0.0,0,0.0,0,0.0,0.06902,0.1807137433561123,0.3086062011011301,0.0213,0.3226253115480476,0.6773746884519524,25.135263108947445,4.486045788060925,0.3378303455923119,0.2186287192755498,0.2199223803363518,0.2236185547957863,10.965295590897696,5.489102862757097,22.62591184682316,12842.263997620452,61.1735326199946,13.938664349350232,20.684628416373627,13.361610360409829,13.18862949386092,0.5547957863611163,0.768385460693153,0.6898249452954048,0.5756302521008403,0.1214876033057851,0.7205014749262537,0.9138381201044388,0.8505494505494505,0.7490636704119851,0.1593625498007968,0.499383477188656,0.69875,0.6365622723962127,0.5254604550379198,0.1115745568300312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096559828194,0.0045432880018659,0.0069528323910638,0.0090530380004064,0.0113619025337958,0.0135559041003809,0.015948117632663,0.0181344769489967,0.0206483943546737,0.0227978001044643,0.0253966951473439,0.0272829994863893,0.0294798580027782,0.0315904476258206,0.0336881446225957,0.0356186201404474,0.0373962510491466,0.0396382927918107,0.0417915106117353,0.0435938607832506,0.057822916013625,0.0716088427181619,0.084927740053106,0.0983637607197348,0.1102176069566685,0.1260993343140471,0.1392723642851074,0.1507320815839389,0.1621292027256875,0.173398358612985,0.1872902842962723,0.1999002342326711,0.2115640471984121,0.22281821771752,0.2330915874645384,0.2441485696503589,0.2544733836472354,0.2645037521864244,0.2735873760431728,0.2825734677224719,0.2916187489109601,0.2986851227336287,0.306131671582152,0.3127497712937551,0.3190799102351448,0.3249424519195069,0.3311512897510962,0.336711740497431,0.3423765387965213,0.3467703476049173,0.346876985253369,0.3470061161657301,0.3470752955818295,0.34741531942066,0.3481873787856184,0.3477412715235857,0.3474927377494166,0.348431424240427,0.3494124710524058,0.3498545937600976,0.3501300267591301,0.3514576998747988,0.352834715265794,0.3538932534948112,0.3555334819265432,0.3560927117668602,0.3565269529465509,0.3581897093974084,0.3588284871470712,0.3599665591783112,0.3625557883231624,0.3658872806319919,0.3681789540012602,0.3706299032675756,0.3714097991364745,0.3688186002596483,0.3708174178762414,0.3713646532438479,0.3752401866593467,0.3750471164719186,0.0,2.607514971049019,59.4760735732513,202.68821034360195,311.11023843530745,fqhc7_100Compliance_baseline,3 -100000,95741,42837,403.5784042364296,6947,71.2547393488683,5445,56.24549566016649,2139,21.944621426557067,77.32698317968122,79.68820682087554,63.31555014592704,65.06198238038675,77.05663419284478,79.41829685898294,63.21541522075099,64.96446499415465,0.2703489868364386,269.9099618925942,0.1001349251760501,97.5173862320986,104.01666,73.22092558494171,108643.7994171776,76478.12910345799,294.79527,186.9375283190287,307306.60845405835,194650.85837731868,306.99719,147.87109696331595,316703.6274950126,151345.49070260595,3920.30416,1781.600166228642,4053016.607305125,1819173.223831632,1325.37424,583.7519870644242,1370829.0596505154,596216.0381283077,2108.88652,892.4217576380958,2165580.326088092,900192.0603892477,0.38232,100000,0,472803,4938.3545189626175,0,0.0,0,0.0,25139,261.93584775592484,0,0.0,28617,294.98334047064475,1916134,0,68810,0,0,0,0,0,41,0.4282386856205805,0,0.0,0,0.0,0,0.0,0.06947,0.1817064239380623,0.3079026918094141,0.02139,0.3265027322404371,0.6734972677595629,24.831401812103927,4.464432242444389,0.3281910009182736,0.2106519742883379,0.2303030303030303,0.2308539944903581,11.0250690399094,5.528603260914779,23.04567263770807,12751.30092879519,61.70287076671392,13.60555901467242,20.18007331228594,13.999663279473554,13.917575160281984,0.5529843893480257,0.7611159546643418,0.7000559597090095,0.5797448165869219,0.1272871917263325,0.7045936395759718,0.9005376344086021,0.8711111111111111,0.7047619047619048,0.1726618705035971,0.4997518610421836,0.6941935483870968,0.6424831712789828,0.5378061767838126,0.1144024514811031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00265437414518,0.0050800024335341,0.0073178653350384,0.0097021293888166,0.0120620391558606,0.0142253449417035,0.0161316637435249,0.0181797766572076,0.0203384980172519,0.0225483874269454,0.0245974726096893,0.0267612429042158,0.0287608572750167,0.030694934975339,0.0329368804348947,0.0349765961623906,0.0369591999420247,0.0390112853705086,0.0409807100690113,0.0427965704403629,0.0575953397571746,0.071044482571034,0.0840182839889289,0.0972868991180582,0.1099669034719733,0.1251466934503357,0.1378666723227352,0.1499776438776162,0.161625769493844,0.171930841302038,0.1855376755515795,0.1985248724697014,0.2102657293956343,0.2215085999387281,0.2326398062527521,0.2439727318073491,0.2543764592852435,0.2634644196866094,0.2730154762175306,0.2816000366875709,0.2892493049119555,0.2965280463083395,0.304191616766467,0.3111116447731802,0.3170360633390538,0.3229278528667531,0.327857339921246,0.3331250876544311,0.3382078164737634,0.3433956279241891,0.3438043492915211,0.3444374000771817,0.3443036903284053,0.3441148353080911,0.344181474254904,0.3434926877227479,0.3433312162591299,0.344320837310338,0.34481341302598,0.3463957685572352,0.3475617764602135,0.3489215045457246,0.3494062157837109,0.349997755129529,0.3514596865718494,0.3533214678322776,0.3545207827453221,0.3568255568507608,0.3591987348444913,0.3588359074125541,0.3611098476233795,0.3633616118769883,0.3670169256905556,0.3679574791192103,0.369610048743907,0.3736587666548756,0.378225683310429,0.3866585563665856,0.3845725424672793,0.397196261682243,0.0,2.446287769732303,62.2920539517348,205.3692300317485,303.1035669111308,fqhc7_100Compliance_baseline,4 -100000,95766,43145,406.4908213771066,6893,70.76624271662176,5345,55.30146398513042,2183,22.460998684292964,77.39144353273707,79.72918230508475,63.36142006586866,65.08681007782117,77.12527678414561,79.46171775373989,63.26410806619414,64.99114137142972,0.2661667485914591,267.46455134485814,0.0973119996745168,95.66870639145009,104.43532,73.46877888335764,109052.60739719734,76716.97563159956,297.20292,188.7690206529644,309851.1058204373,196623.1341530025,306.43895,146.89004669718426,316587.6198233194,150825.13341222945,3898.04948,1746.9421178481784,4036630.662239208,1790418.6849698,1312.57462,571.9279000893995,1358585.447862498,585193.3046064364,2160.42048,897.122725662668,2224730.238289163,911082.2974814052,0.38424,100000,0,474706,4956.9366998726055,0,0.0,0,0.0,25211,262.7341645260322,0,0.0,28351,292.6195100557609,1919057,0,68826,0,0,0,0,0,61,0.6369692792849236,0,0.0,0,0.0,0,0.0,0.06893,0.1793930876535498,0.3166980995212534,0.02183,0.3145306235310383,0.6854693764689617,25.10623081147638,4.567955769908031,0.3240411599625818,0.2011225444340505,0.2310570626753975,0.24377923292797,11.17376152822888,5.503983913864031,23.173042868976943,12824.451988275769,60.46991043405458,12.802295069010576,19.56354480465217,13.677420959949858,14.426649600441973,0.5466791393826006,0.7767441860465116,0.6916859122401847,0.5951417004048583,0.1181887950882578,0.7138461538461538,0.922437673130194,0.8602941176470589,0.762962962962963,0.1455938697318007,0.4929542645241038,0.7030812324929971,0.6397280966767371,0.5481865284974093,0.1113243761996161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0045299309869574,0.0069296483431748,0.0092625506545738,0.0114589582210653,0.0136796677794967,0.0159567964132871,0.0178137817046544,0.0200941883153367,0.0221005780938251,0.0241703296140329,0.026192405946384,0.0281956432387998,0.0304857966241251,0.0328433292786013,0.0349768095282366,0.0371439807915217,0.0390889951359143,0.0410893404708695,0.0431154815725327,0.0564271175825896,0.0706984043944546,0.0839111689238096,0.0968756244018887,0.1093690692083843,0.1257890896786541,0.1385168453536092,0.1504191311008042,0.1618452666987025,0.1733780640735699,0.1871696894677358,0.2001384142912755,0.2123326378021213,0.2239384769998798,0.2344754806582462,0.2460663465155907,0.2559054679226353,0.2656931026735565,0.2754429920527849,0.2835955827659209,0.2912302605720099,0.2993827160493827,0.3064920623654387,0.3127778643243178,0.3190688868391669,0.3256501182033097,0.3314950980392157,0.3371554379088294,0.3421737610235558,0.3471293475250267,0.3474494188549289,0.3471113004989759,0.3468905245084931,0.3469296473711548,0.347142263635824,0.3458876377026387,0.3460578290409227,0.3459459459459459,0.3463178360678104,0.3466507262410335,0.3469418386491557,0.3479759169769468,0.3485268776530912,0.3497035839396389,0.3509522428460943,0.3536684391125547,0.3551116065049015,0.3582585051220437,0.3594914356348225,0.3640935579149038,0.3653502132929682,0.3657201138010628,0.368404302717841,0.3719929290600261,0.3719367962910398,0.3801947280930895,0.3810970977055158,0.3838220424671385,0.387688098495212,0.3933358866334737,0.0,2.027086762962461,57.34778926500374,211.23135000039173,301.2830563418567,fqhc7_100Compliance_baseline,5 -100000,95731,42555,401.2388881344601,6963,71.5860066227241,5454,56.428951959135496,2212,22.793034649173205,77.37264048070351,79.73222936702177,63.34029949113111,65.08193881061366,77.10011561772691,79.45733647284511,63.2419134999831,64.98462252680221,0.2725248629765957,274.8928941766593,0.0983859911480138,97.31628381145184,103.24644,72.62952261411012,107850.581316397,75868.34214006968,294.11313,186.45364640936637,306691.479249146,194237.90164580493,308.22127,147.8513349314624,318352.863753643,151698.63646316357,3927.90104,1767.1404587252432,4069139.7770837033,1812529.1425087,1357.78829,593.7572409012397,1407049.9106872382,609417.8949440938,2187.80306,899.561161484832,2256671.548401249,916755.5589085527,0.37951,100000,0,469302,4902.299150745318,0,0.0,0,0.0,24955,260.1142785513575,0,0.0,28593,295.0246001817593,1923216,0,69064,0,0,0,0,0,57,0.5954184120086493,0,0.0,0,0.0,0,0.0,0.06963,0.1834734262601776,0.317679161281057,0.02212,0.3253968253968254,0.6746031746031746,25.211656904316087,4.509196424497114,0.3091309130913091,0.2262559589292262,0.2207554088742207,0.2438577191052438,11.189933958533622,5.576903309006939,23.50137293441975,12732.487762910923,61.66367677959568,14.502609169159191,19.076267828566422,13.400467035734284,14.684332746135777,0.5474880821415475,0.7552674230145867,0.7153024911032029,0.5714285714285714,0.1203007518796992,0.7159172019985724,0.9110576923076924,0.8758465011286681,0.7360594795539034,0.1391941391941392,0.4892672094744633,0.676039119804401,0.6580852775543041,0.5240641711229946,0.1154210028382213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759493670886,0.0044085008056915,0.0065025310163628,0.0086122846928826,0.0107474402383349,0.0131420892969847,0.0152593166435619,0.0175660641197064,0.0199122959449651,0.0220698126727403,0.0244117496283385,0.0263854951643703,0.0283795872620896,0.0305355303810504,0.0327043506071454,0.0347778455305559,0.0370017600165648,0.0388325346941315,0.0406485475237748,0.0424426113402491,0.057228475369098,0.0709913680355741,0.0835211843526217,0.0967860596123933,0.1088120586065141,0.1247317738338107,0.1369912405353242,0.1494903496265401,0.1613120215253531,0.1722566532993073,0.1860988478518359,0.1991713364633592,0.2120922140060896,0.2231566744679455,0.2330956938851849,0.2444496144642382,0.2549280053577408,0.2638121080423792,0.2732404925257849,0.2818731152465802,0.2895425290549613,0.2968003932216084,0.304143806804043,0.3103754561167658,0.3155929606071294,0.3218519843570732,0.3268652603096658,0.3322938675763052,0.3384541651014883,0.3437483499656792,0.3438194378981106,0.3439486939528227,0.3440393477740039,0.3441221153150546,0.3452648499010254,0.3443329651448208,0.3436846109948639,0.3448219133009788,0.3461485862764539,0.3465081405312767,0.3469410685193161,0.3473761134482827,0.3490704603634227,0.348695691082375,0.3488556782903761,0.3504848295276822,0.3511765711355478,0.3526644293197001,0.3561547890036771,0.3603742302226433,0.3629511918274687,0.3645108146888452,0.3656131479140329,0.368758100175345,0.3699454579650179,0.3737662028778689,0.3757287511506597,0.3800446156966132,0.3803867403314917,0.3812451960030745,0.0,2.105849455750546,62.20101643906708,204.1007401697852,306.3673579350067,fqhc7_100Compliance_baseline,6 -100000,95745,42551,400.58488693926574,6789,69.66421223040368,5295,54.74959527912685,2178,22.38236983654499,77.33281654085012,79.69866042631772,63.319784280511655,65.0709001989343,77.0651300838201,79.43043841898748,63.22141253261397,64.97481658995025,0.2676864570300239,268.2220073302375,0.0983717478976871,96.08360898404555,104.73584,73.6719328098998,109390.40158755024,76945.9844481694,291.49104,185.03099662798215,303915.2436158546,192724.0133980701,300.33768,144.82874484662807,310175.204971539,148559.66417474436,3835.92721,1731.0805077810346,3968967.152331714,1770659.4026137374,1289.46858,569.0353030773515,1333523.1709227634,581115.347130184,2148.73972,896.5214625892015,2210242.2058593137,907057.4329075732,0.37878,100000,0,476072,4972.290981252285,0,0.0,0,0.0,24925,259.7629119014048,0,0.0,27823,287.022821035041,1916617,0,68782,0,0,0,0,0,43,0.4491096140790641,0,0.0,1,0.0104444096297456,0,0.0,0.06789,0.1792333280532235,0.3208130799823243,0.02178,0.3143137529791112,0.6856862470208889,25.267142134998338,4.5498391749966975,0.3261567516525023,0.2092540132200188,0.2253068932955618,0.2392823418319169,11.41394856603082,5.851708081169074,23.19691837886145,12620.002522598372,59.63538358574458,13.033435828524524,19.32102173676976,13.3171140817102,13.9638119387401,0.5482530689329557,0.7815884476534296,0.6902142443543717,0.584241408214585,0.1168113654301499,0.7161438408569243,0.9325842696629212,0.8585131894484412,0.7279151943462897,0.1593625498007968,0.4932296890672016,0.7101063829787234,0.6366412213740458,0.5395604395604395,0.1062992125984252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019657712612347,0.0042802227338654,0.006487968321657,0.0088228418088858,0.0111606234485003,0.0132313396349413,0.0154600801558245,0.0174578866768759,0.0197235230363387,0.021953716977268,0.0242164511928806,0.0262763379471803,0.0283787118532532,0.0305767250257466,0.0325519489899094,0.0345750728712298,0.0369104579630895,0.0387716767504851,0.0408122946387722,0.0429714357147321,0.0566975331196692,0.0702119645958444,0.0828326045238619,0.095743226905245,0.1085741993970442,0.1234520901409642,0.1362676989977196,0.1483965045608881,0.1605767690253671,0.1716301864939354,0.1850639562427322,0.1981283133181867,0.2096804010482932,0.2202895064832834,0.2307734612169475,0.241971918323958,0.2527227280842706,0.2623031994508153,0.2712774410315784,0.2788817243709413,0.2867298029499618,0.2939364841444564,0.300697974806546,0.3070749964013243,0.3131095707162836,0.3189566848946439,0.324128854349461,0.3288541878948441,0.3340638535155743,0.3394667618405573,0.3399374207644377,0.3400862722399085,0.3408593805122415,0.3414588248917968,0.3420319644905193,0.3409732449680903,0.3391593973037272,0.3398602548294286,0.3404018811457888,0.3421715592560167,0.3433418405644798,0.343629802926365,0.3453025912393431,0.3459047619047619,0.3458058912933343,0.3485256796002198,0.349957056971085,0.3528835519039343,0.3549855338367088,0.3590470109346316,0.3598590582528714,0.3615294243298088,0.3625686683083917,0.3637195819665878,0.3681241184767277,0.374110109159943,0.3770868433144432,0.3767206477732793,0.3774157923799006,0.3758700696055684,0.0,2.201769599187284,57.50141454490049,200.87166558482824,302.4313867570132,fqhc7_100Compliance_baseline,7 -100000,95776,42733,402.6687270297361,6785,69.63122285332443,5259,54.29335115268961,2165,22.187186769127965,77.34910350822409,79.67872273774603,63.34642956891118,65.06728457423705,77.08745879903395,79.41959070375609,63.25026793521287,64.97506122622278,0.2616447091901364,259.13203398994256,0.0961616336983084,92.22334801427225,104.016,73.2517049385294,108603.40795188773,76482.31805309202,292.58877,186.24498213554244,304867.7956899432,193833.9376624023,306.34181,147.41821213968302,316433.8769629135,151177.35314716707,3815.99526,1710.954287052868,3943890.859923154,1746011.4611728075,1285.71293,560.5444317242257,1326948.0558803875,569809.8284731597,2132.5995,878.8838338175882,2188176.766622118,882884.8527705914,0.3807,100000,0,472800,4936.518543267624,0,0.0,0,0.0,24970,260.0442699632476,0,0.0,28289,291.98337788172404,1918933,0,68903,0,0,0,0,0,68,0.69954894754427,0,0.0,0,0.0,0,0.0,0.06785,0.1782243236143945,0.3190862196020633,0.02165,0.3380697805289814,0.6619302194710186,24.982956539830443,4.497239580833687,0.3179311656208404,0.2184826012549914,0.226468910439247,0.237117322684921,11.28572412935046,5.72219382901211,22.819556179094874,12743.252156404702,59.48622409960836,13.707902833223692,18.946237571144984,13.282667474145352,13.549416221094331,0.5594219433352349,0.8163620539599652,0.6889952153110048,0.5860621326616289,0.1234963913392141,0.7436472346786248,0.9365482233502538,0.8943661971830986,0.7455197132616488,0.1548117154811715,0.4965570007651109,0.7536423841059603,0.6187800963081862,0.5372807017543859,0.1160714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.0046321166847423,0.0067159712288604,0.008877512671278,0.0110220848415829,0.0133250539517081,0.0154304001304551,0.0172679491758942,0.0194852302567718,0.0214135172188005,0.023644633856493,0.0258896687600049,0.0279835983022804,0.0302805739105374,0.0322188199148392,0.0343424327869529,0.036515836635866,0.038696833329877,0.0405860349127182,0.0426116838487972,0.0572090499248622,0.0713815066988798,0.0847907230330481,0.0974030751121901,0.1098102032858753,0.1255059445178335,0.1386777753044805,0.1513740003403096,0.1624973319103521,0.1738916150598924,0.1869160890343135,0.2002487427675336,0.2119851246139794,0.2227484005030896,0.2335090170879042,0.2447137271408159,0.2549610482376839,0.2642994479238112,0.2727293354207791,0.2812707498568975,0.2887459955821296,0.2962053153658993,0.3034340756869335,0.3098044853364002,0.3158469945355191,0.3218261845171312,0.3280127193970805,0.3334097129399783,0.338497037891653,0.3429790832573565,0.3428887330780432,0.3433891017336898,0.3437381043014846,0.3441615706003961,0.3445068497221479,0.3437380343385765,0.342553595744007,0.3434600541916413,0.3449006441471458,0.3470690240806621,0.3480274506862671,0.349074551147398,0.3507608353447371,0.3511930147471437,0.3513931888544891,0.3514392925555643,0.3533314187248708,0.3564739866044503,0.3604152641462637,0.362283972893861,0.3632853794181183,0.3653217596313561,0.3652123848515864,0.3708731872878741,0.3713084201471853,0.3733381677544114,0.3751564455569461,0.3796162574788529,0.379020979020979,0.3777249306381292,0.0,2.318262433040064,58.85510340586912,197.7908711063125,298.0417622794134,fqhc7_100Compliance_baseline,8 -100000,95663,42557,400.9909787483144,6843,70.27795490419494,5303,54.827885389335485,2142,21.91024743108621,77.31532774038504,79.7070867642735,63.31028192710126,65.07613594851367,77.04774639705245,79.44249891862113,63.21136617663401,64.98122166108155,0.2675813433325942,264.5878456523718,0.0989157504672491,94.91428743211829,103.64068,72.92052751811934,108339.35795448604,76226.46950034951,289.67885,183.8788478026263,302198.22710974986,191601.6514249253,302.07847,145.07432715073108,312500.0888535798,148951.61142335573,3805.02073,1721.030330251937,3936618.870409667,1758148.197581027,1238.76779,546.2151294485126,1275244.598225019,551301.4144864826,2098.60784,882.3574330227402,2150134.7229336314,885298.2315710635,0.37965,100000,0,471094,4924.516270658458,0,0.0,0,0.0,24640,256.94364592371136,0,0.0,27927,288.6905073016736,1922805,0,68979,0,0,0,0,0,51,0.5226681161995756,0,0.0,1,0.0104533623239915,0,0.0,0.06843,0.1802449624654286,0.313020604997808,0.02142,0.3189655172413793,0.6810344827586207,25.220558028756365,4.409800202355779,0.3252875730718461,0.2178012445785404,0.233829907599472,0.2230812747501414,11.092378380237417,5.686119281027813,22.950681563054243,12720.826111930988,60.0546662559722,13.664772075393584,19.596166253315964,13.824843710867237,12.96888421639542,0.5493117103526306,0.7471861471861472,0.6921739130434783,0.589516129032258,0.1056635672020287,0.7142857142857143,0.8900255754475703,0.8726851851851852,0.7370242214532872,0.1129707112970711,0.492914979757085,0.6740837696335078,0.6318638824439289,0.544689800210305,0.1038135593220339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0048460025547963,0.0067994073352412,0.0088696076240017,0.010955810546875,0.0133435192258721,0.01557463995757,0.0175374087125274,0.0199314823336912,0.0220881889118725,0.0240805694008573,0.0262349642017031,0.0285267521886283,0.0306646058732612,0.0328444173780204,0.0349153488949333,0.0371655925565203,0.0393042106464904,0.0409719260653844,0.0430640958832725,0.0576491114431083,0.0715407488064327,0.0853703334417867,0.0979123261148641,0.1098118265384737,0.1254498877926917,0.1383685864763846,0.1503137083630708,0.1620919643429744,0.1724341497971362,0.1857875789519067,0.1983583835058691,0.2103962551709122,0.2217272816819709,0.2324172495456297,0.2435136604141939,0.2532366707253047,0.263006853708768,0.2723660308810172,0.2804841704683524,0.2881187086610525,0.2944502985598876,0.3012343631539044,0.3082104605926709,0.3154957321076822,0.3216809956704617,0.3278791219805553,0.3334266945052707,0.3386050126287157,0.3438779553559635,0.3437836963554022,0.3443119961413904,0.3435478187328212,0.3436835019759413,0.3447321428571429,0.3439336063939129,0.3429282442264103,0.3441546718311477,0.3449819716673217,0.3459958565509358,0.3465615401902764,0.3468701807109811,0.3471551543145076,0.3489758415131549,0.3492423511244088,0.3500026154731391,0.3515358361774744,0.3549411129805403,0.3591461901216182,0.3607754987355999,0.3627708017110528,0.3623848296550246,0.3675235428862305,0.3673706196333256,0.3663035168195718,0.3666546373150487,0.3673719717877952,0.3701468517400925,0.3706371191135734,0.3773368943151469,0.0,2.355852209110536,59.45220143784606,201.17861003224937,298.5498229968341,fqhc7_100Compliance_baseline,9 -100000,95620,42735,402.7190964233424,6757,69.44153942689813,5289,54.67475423551558,2161,22.12926166074043,77.3146043072854,79.73246850999921,63.296484254502126,65.08253648960991,77.04817924351474,79.46937379514198,63.19630241403412,64.98659887590361,0.2664250637706686,263.0947148572318,0.1001818404680108,95.9376137062975,104.71912,73.6444072977565,109515.68709475004,77017.55626203355,294.11482,186.9589460357716,306942.05187199335,194877.76201189245,303.58291,146.11721513936646,313494.9487554905,149718.00525772895,3832.32627,1732.2972131969782,3965540.577285087,1769316.9244896236,1272.16807,556.041145071723,1315686.9692532944,566760.8931710025,2122.97574,898.880671236667,2177734.0305375447,904184.3629540328,0.3801,100000,0,475996,4977.985777034093,0,0.0,0,0.0,25038,261.15875339887054,0,0.0,28156,290.6295754026354,1912157,0,68582,0,0,0,0,0,49,0.4915289688349717,0,0.0,0,0.0,0,0.0,0.06757,0.1777690081557484,0.3198164866064821,0.02161,0.3203638908327502,0.6796361091672498,25.15230165189645,4.5578983296826925,0.3191529589714502,0.2102476838721875,0.2374740026470032,0.233125354509359,11.007683152230726,5.5246921766723895,23.154304795527683,12716.039639062532,59.71624946408236,13.046707379462978,19.070386550687346,14.00957393948256,13.589581594449465,0.5536018150879183,0.7868705035971223,0.7109004739336493,0.570859872611465,0.1103000811030008,0.7031828275351591,0.9333333333333332,0.8701923076923077,0.7054794520547946,0.1625441696113074,0.5022854240731336,0.7167553191489362,0.6588050314465409,0.5300829875518672,0.0947368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405915313142,0.004674934844997,0.0070958703861615,0.0090230147843316,0.011474609375,0.0133937665512324,0.0153711202456115,0.0175400960261518,0.0197706886500086,0.0220069430932606,0.0240105026718222,0.0264512218923666,0.0285485015894571,0.0304678886793813,0.032411899502467,0.0347722690378948,0.0368866047745358,0.0390792902602863,0.0412136220333163,0.0432732923789359,0.0580943222677481,0.0710252569165819,0.0855963707390838,0.0981104268645718,0.1099511257956572,0.1257108364837818,0.1383087219802401,0.1500074609366673,0.1619022146143147,0.1721388972452619,0.1855848079413034,0.1982786654237214,0.2102785406041585,0.221445476858345,0.2318318119680733,0.2427047606362314,0.252956959195081,0.2628085202299109,0.2719533540951558,0.2798646167966957,0.2877445359463497,0.2954678465248028,0.3019755074969799,0.3091585197624902,0.315659664427084,0.322028674630472,0.3270918079979973,0.3315945495489764,0.3372309843834978,0.342061479955633,0.3430126797191866,0.3427859532232975,0.3434749492213947,0.343482163539495,0.3435148625493556,0.3428667977390022,0.3425390674628382,0.3440518179121205,0.3454885862003813,0.3462758237623408,0.3472917956511135,0.3472148174476235,0.3486674197732312,0.3504728264514542,0.3518571839907861,0.3512081060015588,0.3523676880222841,0.3552919822244476,0.3592667739452879,0.3601283625846836,0.3623287049641528,0.3682871229390871,0.3709891779001329,0.3729601952112246,0.3706247647722996,0.3764031526152376,0.3791711935433804,0.379542670477746,0.3799944888399008,0.3801396431342125,0.0,2.392565749822804,59.4815309072893,193.94157469308752,303.60581106801743,fqhc7_100Compliance_baseline,10 -100000,95647,42612,403.46273275690817,6687,68.79463025500016,5292,54.76387131849404,2120,21.78845128441038,77.29129418892526,79.69286434198759,63.29829466637945,65.0705690106176,77.0307049605343,79.4314948037435,63.2030273583717,64.97757706231985,0.2605892283909696,261.3695382440824,0.0952673080077488,92.99194829775104,104.46458,73.54999834376126,109218.8777483873,76897.33953366154,292.39814,185.5945236093821,305139.5025458196,193477.4372801643,302.79152,145.31600949404216,313153.0105492069,149292.3838083355,3802.72548,1710.1397178706104,3938029.995713405,1750495.7011239305,1293.29488,563.8880743388044,1337577.4148692586,575064.6559113904,2090.9276,869.8941916317548,2151001.641452424,879541.9876012541,0.37966,100000,0,474839,4964.494443108513,0,0.0,0,0.0,25056,261.3882296360576,0,0.0,28008,289.4183821761268,1914620,0,68704,0,0,0,0,0,41,0.4286595502211255,0,0.0,1,0.010455110981003,0,0.0,0.06687,0.1761312753516304,0.3170330491999402,0.0212,0.3241930876892316,0.6758069123107684,24.80748468271499,4.481618140075025,0.3331443688586545,0.2099395313681027,0.2237339380196523,0.2331821617535903,10.921989252894006,5.54026547362495,22.645702476179263,12637.926143274231,59.8507132058738,12.999704516417578,19.964632695287712,13.252180945192512,13.634195048975984,0.5521541950113379,0.7641764176417641,0.6920022688598979,0.5954391891891891,0.119935170178282,0.7204633204633205,0.9109195402298852,0.8651162790697674,0.7563636363636363,0.1487603305785124,0.4976232174130598,0.6972477064220184,0.63615903975994,0.5467546754675467,0.1129032258064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0043090337625468,0.0065466946804299,0.0089015343969108,0.0110490492323657,0.013107908540001,0.0153455553969451,0.0175832703657565,0.0195689514150171,0.0217168717875207,0.0236176060382311,0.0256763141137563,0.0276423266053535,0.0297381681041145,0.0315174414403253,0.0335212287324817,0.0354115281779177,0.037378131716383,0.0394751901447284,0.0412435622093871,0.0553668655749354,0.0691457602262609,0.0828791935737911,0.0952085219258541,0.1070991302879338,0.1228777678987256,0.1357445408125351,0.1493225682757445,0.1612341112453362,0.1722005732504589,0.1855896844306922,0.198222193350007,0.2102410621973118,0.2209182668097125,0.2313812787904167,0.2419598101406201,0.2527481120693507,0.2630405907381976,0.2717230887995822,0.2796791750214838,0.2879254457050243,0.2959872678548442,0.3028142322452267,0.3094786843557325,0.3153989319644312,0.3208136363075328,0.3267449584518781,0.3317275832186369,0.3370086911402257,0.3422842726756396,0.3428559872731685,0.3424971047261898,0.3416869034844976,0.3411783448715349,0.3415128354117314,0.3407312912100579,0.339900930365478,0.3404767399690086,0.3413232215778456,0.3421156467465385,0.3431389155515404,0.3440039741679086,0.3454070673461651,0.3465540100222467,0.3485601273455212,0.349903247738089,0.3506326949384405,0.3532115869017632,0.3546556706844294,0.3565724325187669,0.3585951094422566,0.3604644968838225,0.3611428571428571,0.3619135659810492,0.360973282442748,0.3620210322736613,0.3599124452782989,0.36625,0.3717012914093206,0.3750481324605313,0.0,2.182192633807533,57.10506406196431,208.70701468319768,296.3279061256129,fqhc7_100Compliance_baseline,11 -100000,95641,42998,405.2550684329942,6821,70.24184188789326,5304,54.96596647881139,2123,21.904831609874424,77.27514686010801,79.68636444849969,63.27600815666828,65.05646534844949,77.01019434016926,79.41932275422411,63.178436018399495,64.95989252298381,0.2649525199387454,267.04169427557645,0.0975721382687879,96.57282546568524,104.2151,73.30934416877685,108964.64905218472,76650.31123553378,293.87558,187.08424770370203,306781.42219341075,195122.89468293104,308.32327,148.21287601595475,319259.5539569849,152546.15636336943,3807.62182,1723.409700329735,3951365.533610063,1772161.928806406,1297.86035,571.4271021297943,1344557.5537687812,585015.8845367517,2089.7512,879.2888326876774,2158227.0574335274,896225.6634220578,0.38269,100000,0,473705,4952.938593281124,0,0.0,0,0.0,25050,261.4046277224203,0,0.0,28503,294.8735374996079,1911304,0,68588,0,0,0,0,0,47,0.491421043276419,0,0.0,0,0.0,0,0.0,0.06821,0.1782382607332305,0.3112446855299809,0.02123,0.3187273234719509,0.6812726765280491,25.420361948958654,4.4625549662081205,0.3310708898944193,0.2117269984917043,0.2264328808446455,0.2307692307692307,11.112401118878084,5.659368528709996,22.83404643491892,12841.998688983616,60.147872803123406,13.255634563368092,19.722708931923613,13.511824270346018,13.65770503748568,0.553921568627451,0.7871772039180766,0.6913439635535308,0.5745212323064113,0.1225490196078431,0.6873614190687362,0.9141274238227148,0.8470588235294118,0.6914893617021277,0.1578947368421052,0.5082257656289547,0.7270341207349081,0.6416228399699474,0.5386289445048966,0.1118210862619808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0049968073137853,0.0073055654203236,0.0097003555104113,0.0120831172001342,0.0144309108685025,0.0164273769221356,0.0185194638135394,0.0208663470090887,0.0229972149410222,0.0252838665340075,0.0272955147829302,0.02946623317832,0.0314790191409752,0.0332916843072665,0.0353381747460327,0.0371898256597359,0.0393706511579603,0.041405648400591,0.0433504009677453,0.0580980947503736,0.072843102328213,0.0862509059969117,0.0994996049512773,0.111729601267494,0.127848851986783,0.1404161264956538,0.1520782031191702,0.1631670198420343,0.1744064827452792,0.1876592253551535,0.2008219386040056,0.2125915591210324,0.2241241296123691,0.2346891483304274,0.2460846384538487,0.2563233055779389,0.2659211951615815,0.2751328773203738,0.2837240286216362,0.2918962816868728,0.2993700805874555,0.3065310530625808,0.3129175678923335,0.3185653237883049,0.32421850877518,0.3296315815891181,0.3347824978326278,0.3402057837711435,0.3456360290710759,0.3457460458959709,0.3455248085018287,0.3455189844820039,0.3456659619450317,0.3453086382991394,0.3447878936705752,0.3436077946376191,0.3442269736842105,0.3450632046463956,0.3464430513136509,0.3474546034965166,0.3486608998594588,0.3493996137375094,0.3512023486699088,0.3522918976237528,0.3532837185011098,0.354337899543379,0.3575100122985715,0.3604921731772669,0.3612473581369382,0.3627236217597663,0.3642578646584415,0.3682517658930373,0.3663343733353626,0.3665406427221172,0.3669823762138832,0.3659403492505022,0.3637108335039934,0.3671940049958368,0.3597232897770945,0.0,1.9006635284052835,60.17054352886044,200.1803598116384,300.2628021916192,fqhc7_100Compliance_baseline,12 -100000,95678,42653,402.2554819289701,6743,69.20086122201552,5337,55.13284140554778,2132,21.83365036894584,77.28391542799022,79.68114171716249,63.28504443165552,65.05934426612212,77.01571089873704,79.41545348418323,63.18559379590924,64.96384648549966,0.2682045292531825,265.68823297925803,0.0994506357462796,95.49778062246617,104.28242,73.43549625822905,108993.10186249712,76752.75011834387,294.29844,186.616632530586,306946.36175505345,194400.3141062585,305.69726,146.8850466840388,315582.9971362278,150473.75004888608,3823.13983,1725.331668182284,3954087.1673739,1761516.083302623,1272.43049,563.4435373676566,1315286.032316729,574272.4736801104,2090.85994,877.2818259300783,2144713.2883212445,883265.3921632048,0.37944,100000,0,474011,4954.231902840778,0,0.0,0,0.0,25065,261.29308723008427,0,0.0,28399,292.87819561445684,1913064,0,68690,0,0,0,0,0,40,0.4180689395681348,0,0.0,0,0.0,0,0.0,0.06743,0.1777092557453088,0.3161797419546196,0.02132,0.320944036178632,0.679055963821368,25.134900431231905,4.4622253260738205,0.332958590968709,0.213790519018175,0.2237211916807195,0.2295296983323964,11.16516340152023,5.706398149833391,22.706929239449348,12742.893687513271,60.36028745456941,13.465669951843443,20.003727466260383,13.300530678480692,13.590359357984898,0.5510586471800637,0.7861524978089395,0.6933033202025887,0.567001675041876,0.110204081632653,0.7143933685003768,0.9425981873111784,0.8741092636579573,0.7605633802816901,0.1786941580756013,0.4970074812967581,0.7222222222222222,0.6371681415929203,0.5065934065934066,0.088865096359743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.004452693930542,0.006822542818563,0.0090649485269458,0.0112633924483379,0.0134055904164289,0.0155846805038502,0.017730931078155,0.0200051137816415,0.0220143825933741,0.0241602888975521,0.0260367432493526,0.0282362626054743,0.030371736867599,0.0325784008092986,0.0345722677256556,0.0366912587557508,0.0385733266899186,0.0405046964228132,0.0427006576547468,0.0582483703827511,0.0723364603400619,0.0856920961766527,0.0984921027432576,0.1106830751044876,0.1265812065333601,0.1394286927896357,0.1514522158673355,0.1632299650450566,0.1745915892063628,0.1879439887028792,0.2010941985807919,0.21328237292565,0.2240367133250093,0.2342599532648472,0.2448682793609911,0.2549504120218701,0.2644844222011813,0.2733277249784002,0.2817982581955456,0.2890741878993819,0.2966550947644961,0.3034387830173007,0.3096833861823772,0.3161452180584818,0.3214898793424969,0.3271336301498714,0.3323945815758286,0.3364804751838354,0.3405809545196359,0.340314771608518,0.3409438511884257,0.3418137227265039,0.3424631794990388,0.3430753655123127,0.3419876863551918,0.341974093593244,0.3433677495725371,0.3451418391119638,0.346616756814844,0.3463993222253601,0.3480846493496161,0.3489408435236225,0.3500597371565113,0.3519724057520404,0.3515842572644632,0.3513985513470182,0.3540242976461655,0.3559226515445035,0.3584950684059815,0.3615279048490393,0.3621497816128688,0.3628135017914388,0.3658960411000302,0.3683620044876589,0.3667337040104105,0.3711104331909701,0.3709024686361797,0.3786949247071946,0.3834355828220859,0.0,2.5770153940673564,58.19353658116184,207.63201225584524,298.3819477363653,fqhc7_100Compliance_baseline,13 -100000,95674,42553,402.073708635575,6854,70.49982231327215,5355,55.58458933461546,2153,22.23174530175387,77.35161970545354,79.75654376671962,63.31721993396855,65.09395202734919,77.08394116959636,79.48512316161238,63.2198472325298,64.99700546864675,0.2676785358571862,271.4206051072381,0.0973727014387506,96.94655870244162,104.65796,73.61078628173887,109390.17915003032,76939.17499188794,292.34801,185.21434646569364,305094.73838242365,193116.9141728093,305.00935,146.39051565057983,316308.1087860861,151200.82731534066,3882.45386,1746.0812892318363,4029962.8112130775,1796991.919677067,1310.92873,572.42573859233,1361756.3496874804,589861.1729334297,2131.31366,886.1652489706463,2201556.9120137133,904169.2860833054,0.37946,100000,0,475718,4972.280870455923,0,0.0,0,0.0,24934,260.20653469072056,0,0.0,28215,292.4200932332713,1917330,0,68747,0,0,0,0,0,60,0.616677467232477,0,0.0,0,0.0,0,0.0,0.06854,0.1806250988246455,0.3141231397723957,0.02153,0.3205448985265499,0.6794551014734501,25.134742480691305,4.489794135307866,0.323062558356676,0.2121381886087768,0.2280112044817927,0.2367880485527544,10.884731885853665,5.3801497959430895,22.979280159268416,12697.533730301591,60.404211027642575,13.45435165844076,19.557896952471364,13.3732664438535,14.018695972876962,0.5380018674136321,0.7640845070422535,0.6901734104046243,0.5503685503685504,0.1159305993690851,0.6992700729927007,0.9234828496042216,0.8549107142857143,0.6853932584269663,0.1521739130434782,0.4825595984943538,0.6842800528401585,0.6326053042121685,0.5125786163522013,0.1058467741935483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897437715929,0.0046443238858185,0.006860576044817,0.0093777940339754,0.0114231657325372,0.013424322672642,0.015765053790853,0.0177880344324064,0.0199182004089979,0.0222165318037488,0.0244167675482692,0.0263579752142548,0.0283820775104451,0.0302995938060578,0.0321131241349391,0.0339965030985857,0.0357261307574312,0.0376829648084708,0.0395959259683107,0.0417796221378821,0.0560478140934548,0.0699934037629961,0.0832213778915991,0.095711098951976,0.1080259616906759,0.1237179962108783,0.1367583980974221,0.1488622435385025,0.1606329032672186,0.1718494974658534,0.1850941321084298,0.1985289338561865,0.211108934169279,0.2218695618864166,0.2321694030590333,0.2428139099202962,0.2525473721844833,0.2622928674351585,0.2717457938832505,0.2802432516004902,0.2885649835155301,0.296705865849952,0.3045745913853868,0.3107887991951517,0.3166417810796703,0.3219650332430436,0.327767640662884,0.3332867434975413,0.3382714134284754,0.3436693187206913,0.3437949821752875,0.3437104843586783,0.3435981920331179,0.3430606318891666,0.343573052744215,0.3426453470563009,0.3421669199594731,0.3424943325557709,0.3437206040807949,0.3446043808672329,0.3461134059331581,0.3465381799473653,0.3480114232917559,0.3493078694903504,0.3498702671535652,0.3513991930235585,0.3517726858185134,0.3534113796576032,0.3554142811984124,0.358664546899841,0.3623095867919365,0.3646075735138566,0.3700584501288417,0.3703590760082336,0.3722682743029389,0.3726596255400864,0.3743995041066171,0.3804081632653061,0.3808226641242168,0.3825757575757575,0.0,1.4784852545656786,61.16372042599534,200.61787963570157,300.8998645091163,fqhc7_100Compliance_baseline,14 -100000,95797,42908,404.1045126674113,6826,70.0857020574757,5344,55.2731296387152,2162,22.19276177750869,77.3507064425629,79.67895048370701,63.34838135415546,65.07003765589481,77.07978666567932,79.40693959612125,63.2489164506655,64.97215687855909,0.2709197768835736,272.01088758576475,0.0994649034899595,97.88077733571754,104.47096,73.49744248497116,109054.52154034052,76722.07113476536,293.66522,186.1419462656136,306030.9821810704,193803.1247034624,302.86175,145.55057777060375,313176.1641805067,149591.29045249842,3865.25743,1740.6784951081522,4001969.706775786,1785131.2035595002,1286.61408,559.8781396374912,1329754.459951773,571133.6885680042,2131.04418,895.1704566792505,2190570.2475025314,907596.8818379164,0.38226,100000,0,474868,4957.023706379115,0,0.0,0,0.0,24984,260.25867198346504,0,0.0,28080,290.0925916260426,1919668,0,68899,0,0,0,0,0,55,0.5741307139054459,0,0.0,1,0.0104387402528262,0,0.0,0.06826,0.1785695599853503,0.3167301494286551,0.02162,0.331665276619405,0.668334723380595,25.344141631901007,4.526715763382531,0.3295284431137724,0.2133233532934131,0.218001497005988,0.2391467065868263,11.076438533407844,5.591312473501798,23.21712471842461,12775.71038512587,60.18655962507542,13.215749101431312,19.83957898770004,13.022635039080404,14.10859649686368,0.5404191616766467,0.7350877192982456,0.6871095968199886,0.5982832618025751,0.1118935837245696,0.6925925925925925,0.8997214484679665,0.8458049886621315,0.7441860465116279,0.160958904109589,0.4889834752128192,0.6594110115236875,0.634090909090909,0.5567805953693495,0.0973630831643002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0045417680454176,0.0067987863658964,0.0088676255485129,0.011052139254921,0.0135298848585419,0.0158269128857364,0.0180322682695349,0.0201007592711814,0.0222267703643061,0.0243457589605918,0.0265652896632395,0.0288265882884919,0.0309643415959812,0.0326771775332804,0.0348760330578512,0.036949278811332,0.0390504327994609,0.0410816648666611,0.0431292941911305,0.0585774058577405,0.0722575383714608,0.0859748427672956,0.0987074401008827,0.1108394372134689,0.1262512552190687,0.1391380882696019,0.1514574265433609,0.1627772914576083,0.1739899260529418,0.1869275558856134,0.1995374423153822,0.2115018959766181,0.2224382995924878,0.2329005090541268,0.2437966701698102,0.2537469773454128,0.263787002190642,0.272657215063634,0.281372302199437,0.28938279020874,0.2966320486910199,0.3040448614052314,0.3110206037374221,0.3170592520641088,0.3235743506333481,0.3286833149834851,0.3339230935682191,0.3384962347543193,0.3425973580373992,0.3433537061468458,0.3432410479507689,0.3439306358381503,0.344307131280389,0.3443561823158396,0.3438669693808676,0.343449085457747,0.3442663459796056,0.3459943094168866,0.3466458826058912,0.3482942992695233,0.3498093573754865,0.3512220817530552,0.3517078119715928,0.3535868855629971,0.3540545507048539,0.3558167605471893,0.3592633751389109,0.3614940288458131,0.3630076750879437,0.3670227461092181,0.368949328152825,0.3697237145049885,0.3724517479265173,0.3762018086625416,0.3766999638945721,0.3783361947869518,0.3852904304220643,0.3888099971598978,0.392319873317498,0.0,1.8999625769230333,59.80049090866437,195.8627507710579,308.55755698234924,fqhc7_100Compliance_baseline,15 -100000,95729,42408,399.5341014739525,6891,70.69957901994171,5384,55.59443846692225,2155,22.03094151197652,77.31652017658898,79.67711409244647,63.31665033110207,65.0622980667523,77.04688019628645,79.41036540761229,63.217376740973926,64.96753834016046,0.2696399803025286,266.7486848341838,0.099273590128142,94.75972659184606,104.25888,73.32944151621138,108910.445110677,76601.07335939097,293.87617,187.1943973750207,306370.9847590594,194929.54838661297,308.23038,149.13959992137293,317806.8088040197,152611.3754584284,3867.83918,1749.9549002464116,4000088.656519968,1787713.8487254777,1292.30952,567.5735766764845,1333006.006539293,575935.5855346699,2114.37044,883.931957741163,2165173.4166240115,886241.6460678141,0.37734,100000,0,473904,4950.474777758046,0,0.0,0,0.0,25021,260.7255899466202,0,0.0,28526,293.8399022239865,1915666,0,68818,0,0,0,0,0,56,0.5849846963824964,0,0.0,0,0.0,0,0.0,0.06891,0.1826204484019717,0.3127267450297489,0.02155,0.3207443142660234,0.6792556857339765,25.017518493028927,4.442151347099607,0.3307949479940564,0.2161961367013373,0.2273402674591381,0.225668647845468,11.159027184009997,5.758793043982767,23.063739534612694,12634.346316287834,61.08020175811914,13.628569543020369,20.184659101907485,13.857228877421862,13.409744235769422,0.5507057949479941,0.770618556701031,0.6956765861875351,0.5661764705882353,0.1119341563786008,0.7164835164835165,0.9224598930481284,0.8606741573033708,0.7006578947368421,0.152892561983471,0.4944015924359293,0.6987341772151898,0.6407185628742516,0.5217391304347826,0.1017471736896197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002603296157859,0.0045822730913109,0.0067698553666582,0.0094191044230163,0.0116678873697916,0.0136984906198439,0.0157567845960857,0.017952881345547,0.0200509197247471,0.0223496288712567,0.0242291878146564,0.0263068724393925,0.0286898310487727,0.0306656231979569,0.0327089307449508,0.0346851268275042,0.0366141487753876,0.0383183095961743,0.0405609089302606,0.042568707936574,0.0574035791100252,0.0710959491842906,0.0840036495967615,0.0961754839795156,0.1078422068267375,0.123020783753768,0.1358823654225636,0.1482482940694295,0.1602632591136373,0.1712317744375422,0.1846014629364301,0.1973832301631964,0.2090878440840919,0.2198943719724886,0.2301874745428725,0.2408281793797521,0.2508877721943048,0.2603528988116673,0.2697459531863691,0.2782456260956243,0.2861110789635099,0.2932313235534966,0.3000461718777747,0.3061366471547836,0.3128502485929275,0.3191757156959526,0.3249232696523645,0.3302340983773594,0.334996112982638,0.3401191592797601,0.3405815662114614,0.3415071440392784,0.3417664268652919,0.3421697579651087,0.342730633907806,0.3419600731531144,0.3417822033763718,0.3421625544267053,0.3432500171667925,0.3438297107957607,0.3450238395869061,0.3461966236345581,0.3464505522299975,0.3470425450536594,0.348415961305925,0.3510663352086877,0.3516958863297811,0.3540417744683536,0.3572233570472635,0.3594534300055772,0.3636529847335222,0.3686685189142979,0.3705811673939164,0.372048743335872,0.3724196436987463,0.379045792375929,0.3834132755686213,0.3824790688176434,0.3855589629216615,0.3848543689320388,0.0,2.581843249397476,59.602702623966174,209.0446167817496,300.3727188357091,fqhc7_100Compliance_baseline,16 -100000,95676,43011,404.9709436013211,6898,70.82235879426398,5370,55.52071574898616,2217,22.83749320623772,77.40264542862671,79.78478304467295,63.35728834693722,65.11262386130244,77.13396008923309,79.51251435977382,63.25942810854335,65.01559664400601,0.2686853393936275,272.2686848991316,0.0978602383938707,97.0272172964286,104.05978,73.21031816146878,108762.44826288724,76518.78335577236,293.73709,186.3948343019634,306400.52886826376,194207.89646406972,306.55997,147.62229555089937,316281.3767297964,151181.9735856117,3859.56452,1741.8859157714508,3994624.858898783,1781309.82082283,1302.03758,573.4912538925697,1347249.8536728125,585812.06737551,2177.98604,899.2214418079783,2245046.8037961456,914171.113381736,0.38384,100000,0,472999,4943.747648313057,0,0.0,0,0.0,25033,260.9954429533007,0,0.0,28403,292.7066348927631,1921616,0,68923,0,0,0,0,0,62,0.6375684602199089,0,0.0,1,0.0104519419708181,0,0.0,0.06898,0.1797102959566486,0.32139750652363,0.02217,0.3289582757667864,0.6710417242332136,24.945275292595564,4.457392574608486,0.3363128491620111,0.2108007448789571,0.2216014897579143,0.2312849162011173,10.864094528367742,5.527392078492823,23.40518934380032,12826.829408753065,60.78721910452197,13.45777308042504,20.44266611180812,13.309958468477294,13.576821443811514,0.5471135940409684,0.7782685512367491,0.6810631229235881,0.5882352941176471,0.1022544283413848,0.7172848145556333,0.9166666666666666,0.8616352201257862,0.7097902097902098,0.1434108527131783,0.485409794468409,0.7002762430939227,0.6162528216704289,0.5497787610619469,0.0914634146341463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0047634974206168,0.0069791032663826,0.0094654844967145,0.0116228226273883,0.0136855181964442,0.0160571737335222,0.0181873851806491,0.0203568581764669,0.0225860922069283,0.0248162612626464,0.0269282495097888,0.0290561381863047,0.0308969381134329,0.0330375567478332,0.0351096595489592,0.0372146000517732,0.0394545680959694,0.0414668899312525,0.0437021210068268,0.0575410298465363,0.071860112036019,0.0846205507051712,0.0969526754815025,0.1094621818603719,0.1257961446496963,0.1394082815119808,0.1518538626129722,0.1640058985702378,0.1745755986659374,0.1886111799101902,0.2013807730597757,0.213196755181488,0.2245071993177867,0.2347713223485932,0.2460892957964773,0.2570804400405711,0.2665318730693625,0.2757999660191425,0.2841283270831428,0.2917200688166083,0.2985844487752506,0.3047935094535706,0.3118441676537803,0.3179491533647082,0.3236423612820639,0.3293276144505996,0.3354930507914729,0.3407319311762348,0.3450119859856168,0.3452998575307115,0.3456786734021524,0.3457718083088638,0.345672072072072,0.3456815755131095,0.3440439231039809,0.3435847921744911,0.3445064871078995,0.3457529385673098,0.3464880198390751,0.3479295484354506,0.3491860144270566,0.3496627618033369,0.3507064574451463,0.3531987585111758,0.3548841945844322,0.3551559507132851,0.3588742680853743,0.360366390699313,0.3644692292372037,0.3646100329549615,0.3672222519963556,0.3680238457635718,0.368505623995715,0.3685510688836104,0.3685395922238027,0.3684373069796171,0.3652439024390244,0.3704620462046205,0.3666793457588436,0.0,2.309234619159532,63.07757048377344,195.72454202459485,300.7558984539681,fqhc7_100Compliance_baseline,17 -100000,95718,42443,399.2770429804216,6952,71.25096638040911,5399,55.71574834409411,2196,22.493156981967864,77.33907921770925,79.70506067541658,63.32552877917672,65.07516895284586,77.0620867536519,79.43236912109629,63.22172669115096,64.97663973744156,0.2769924640573578,272.69155432028924,0.103802088025759,98.52921540429804,103.27306,72.65118318161218,107893.0399715832,75901.27581187674,293.70025,186.2515281867012,306170.4277147454,193914.92528751248,303.57678,145.80024475382493,313042.01926492405,149168.311320603,3934.47681,1779.478316418977,4060875.3317035455,1809471.7361614096,1329.53199,581.5408092846982,1370015.1068764497,588607.425912904,2157.45566,911.4374710682732,2211278.0877159988,913898.9435922436,0.37805,100000,0,469423,4904.229089617417,0,0.0,0,0.0,24989,260.35855325017235,0,0.0,28166,290.20664869721475,1923377,0,68997,0,0,0,0,0,58,0.6059466349067051,0,0.0,0,0.0,0,0.0,0.06952,0.183891019706388,0.3158803222094361,0.02196,0.3348354499522054,0.6651645500477946,25.15070370867836,4.530589531245351,0.338395999259122,0.1954065567697721,0.2322652343026486,0.2339322096684571,11.0468275686043,5.579784179040324,23.49712773316705,12711.439851147865,61.01033543601528,12.380565568842648,20.583317106967414,14.12147884298167,13.92497391722355,0.5456566030746435,0.7772511848341233,0.6765188834154351,0.5877192982456141,0.1211401425178147,0.7080561714708056,0.9055555555555556,0.8513513513513513,0.7446043165467626,0.1734317343173431,0.4913494809688581,0.7107913669064748,0.6203904555314533,0.5430327868852459,0.1068548387096774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022889321017663,0.0045321815305998,0.0067293931366279,0.0087688993659567,0.0108338504420007,0.0131582967542189,0.0154795288839035,0.0176112058316062,0.0196629787930223,0.0220510667062691,0.0243267081000143,0.0264476900638852,0.0286119795951949,0.0305172058520502,0.0326499855485362,0.034560138985119,0.0369948304619432,0.0391892312642055,0.0412662756354257,0.043260364462319,0.0579236456288375,0.0718979553397651,0.0852295367321687,0.0985203024598525,0.1105533467618615,0.1260419752041636,0.1385160585258199,0.1506287734392469,0.1622508416608774,0.172624349412459,0.1857660221173123,0.198316943204956,0.2105515169982153,0.2216713183385322,0.2325061406117481,0.2440809537011366,0.2537923638882062,0.2632888588639306,0.2724867724867725,0.280486966091203,0.2886665972005141,0.2958771693719207,0.3027714008472771,0.3089218529080496,0.3150922778047595,0.3216998436557471,0.3274543136421589,0.3319991359483602,0.3371996793131093,0.3420632722765096,0.3431081099258821,0.3429342067238223,0.3430800045136538,0.3433648568407942,0.3439645032087074,0.342523550891405,0.3414185319732855,0.3430834856794637,0.3432513126737362,0.3432728708039543,0.3440926960480033,0.3457534355232108,0.3462257217847769,0.3466232892079874,0.3478658609980982,0.3494063926940639,0.3495509410216806,0.3524411439405909,0.3560996260495307,0.357605048729829,0.361018115111213,0.3615149401856123,0.3647942937205451,0.368360188111942,0.3697749196141479,0.3731414868105515,0.3738098954268768,0.3725570870191318,0.3766088416340235,0.3705996131528046,0.0,2.653369276027344,59.07113325179527,208.12156688715544,302.70500256246913,fqhc7_100Compliance_baseline,18 -100000,95694,42760,402.49127427006914,6900,70.88218697096997,5347,55.37442263882793,2092,21.52695048801388,77.30793472821749,79.68325990316478,63.31631099018998,65.06984090172872,77.0479059241601,79.42212786983787,63.22032159099464,64.97550487626084,0.2600288040573844,261.13203332691626,0.0959893991953464,94.33602546788222,103.43234,72.76626079055282,108086.5467009426,76040.56763282215,291.56135,184.6521140694602,304183.616527682,192463.72193602548,303.7793,146.022450671732,314219.3345455305,150115.5393202936,3834.57885,1721.73929859713,3972603.381612222,1764691.128594407,1286.83181,561.7633855508531,1330469.172570903,572834.7107491837,2059.305,863.270273271887,2120417.2884402364,876063.12164264,0.38215,100000,0,470147,4913.024850042845,0,0.0,0,0.0,24837,259.0235542458252,0,0.0,28131,290.7183313478379,1922492,0,69031,0,0,0,0,0,52,0.5433987501828745,0,0.0,0,0.0,0,0.0,0.069,0.1805573727593876,0.3031884057971014,0.02092,0.3220667682504502,0.6779332317495498,25.2442069645911,4.429462265106074,0.3357022629511876,0.2124555825696652,0.2236768281279222,0.228165326351225,11.111402785658331,5.665652078000576,22.39534634473165,12823.1361971178,60.30272361891766,13.473007739542275,20.26263472865343,13.1782301932207,13.388850957501267,0.5507761361511128,0.7658450704225352,0.6947075208913649,0.5593645484949833,0.130327868852459,0.7191265060240963,0.9289340101522844,0.8518518518518519,0.6904761904761905,0.188,0.4951480467778054,0.6792452830188679,0.6449009537784299,0.524364406779661,0.1154639175257732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0046512099225811,0.0068777325799612,0.0092223937596489,0.0114107883817427,0.0136043338356889,0.0159068430014989,0.0179581419091373,0.020037211965078,0.0221617139756988,0.0243982449665805,0.026796989702153,0.029155868196964,0.0314309261357783,0.0332483721506186,0.03511837072263,0.0370520033570607,0.0390257576229482,0.0409029439300946,0.0435643770784033,0.0583276753538413,0.0737596818086665,0.086209790796735,0.0993489624417589,0.1109283741328779,0.1262888505832214,0.1396032251220029,0.1517835283097197,0.1633956902169848,0.1741579060287492,0.1880903402298355,0.2008287173273325,0.2129327592205984,0.2238187405001695,0.2349653427219716,0.2462944499833831,0.2563020990258109,0.2661468178954001,0.2752570533626892,0.2835195050695996,0.2909202496612897,0.2984954137027331,0.3064181949492677,0.3133151750038996,0.3194973297161835,0.3245575057394653,0.3303409105156914,0.335853916680481,0.3401199781857844,0.3447039839161949,0.3452634703073146,0.3452671660941186,0.3452143815780179,0.3451255581975294,0.3462972352292046,0.3457863528833451,0.3442516131082928,0.3447900338255919,0.3453002610966057,0.3456039323323108,0.3468607585401679,0.3475512800127206,0.3480804849301229,0.3488800107734434,0.3506923467291752,0.3521722010762567,0.3525313915486497,0.3543426672994779,0.3557239474522857,0.3564356435643564,0.3588848573921829,0.3617749264902432,0.3640228426395939,0.3660632095734888,0.3680227057710501,0.367995240928019,0.3670059243506,0.368336350834842,0.3719231809575331,0.3856552760045062,0.0,1.9020491547370275,58.70628211916869,202.5853405226352,305.615715424425,fqhc7_100Compliance_baseline,19 -100000,95711,42884,404.0705874977798,6907,70.93228573518195,5419,56.07505929308021,2179,22.41121710148259,77.38171245272493,79.75467853322044,63.34258245905804,65.0948398347894,77.11360299712804,79.48627508765749,63.243559188417045,64.99778051653004,0.2681094555968855,268.4034455629529,0.0990232706409983,97.05931825935464,104.62144,73.61027784122398,109309.73451327434,76908.90058741835,295.9007,187.90338088590357,308629.6141509336,195792.7206756836,313.36918,150.7674270015551,324087.27314519754,154910.63901982942,3898.98218,1760.670303271979,4040327.026151644,1806193.147362349,1299.33793,566.7893825820801,1342895.6650750698,577520.16234506,2138.9632,892.2832676613897,2202974.370761981,904929.576180226,0.37896,100000,0,475552,4968.624296057925,0,0.0,0,0.0,25115,261.8507799521476,0,0.0,28865,298.1997889479788,1915321,0,68706,0,0,0,0,0,65,0.6791277909540179,0,0.0,1,0.010448119860831,0,0.0,0.06907,0.182261980156217,0.3154770522658173,0.02179,0.3192423826516607,0.6807576173483393,25.2757632107143,4.445382998722239,0.3242295626499354,0.2146152426646982,0.2362059420557298,0.2249492526296364,11.090219498704904,5.670394870407456,23.127262694002805,12684.248476950444,61.00184621831673,13.611588587450951,19.88348991487366,14.174916041277172,13.331851674714958,0.5528695331241926,0.7687016337059329,0.701195219123506,0.56875,0.1164889253486464,0.7108167770419426,0.9257294429708224,0.856492027334852,0.6993243243243243,0.1376518218623481,0.5,0.693384223918575,0.6494688922610015,0.5294715447154471,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370118295251,0.0044399841863576,0.0068291593944067,0.0090100156430936,0.0112293264438431,0.0133401221995926,0.0157328575070099,0.0179672506023112,0.020169080890997,0.022837547343638,0.0248403268302184,0.0269096509240246,0.0289695598519127,0.0311811120954284,0.0332707271263751,0.0351530190239867,0.0371290974056237,0.0390681747431773,0.0409659605004524,0.0430700291788245,0.0577306668059109,0.0715624182151269,0.0849298109406802,0.0971461031105687,0.1091035661171407,0.1249722413154972,0.1386510487952382,0.1512722239965932,0.1628423706362432,0.1739321648467165,0.1879552605491142,0.200575919631065,0.2120585964263575,0.2229084906588541,0.2329512957015266,0.2434844223998583,0.253546573875803,0.262844738381248,0.2720363017583664,0.279840575394553,0.2877478040481894,0.2951653646442438,0.3022212223827227,0.308136816487034,0.3140638481449525,0.3193614004807988,0.3247409780269282,0.330349981539715,0.3351991500168442,0.3405170707244005,0.3405280945776724,0.3411319716663228,0.3412720768429058,0.3414785520466485,0.3418113867920331,0.3417798902660818,0.33982824336934,0.340806660438894,0.3416974924569149,0.3421118322516225,0.34264254139507,0.343670936116382,0.3444576877234803,0.3443989895602798,0.346353665576294,0.3475862068965517,0.3486658701712465,0.3535090743817196,0.3554225302807533,0.3550509253755003,0.3563824947684469,0.3574578883043732,0.3602787456445993,0.3614365571636419,0.3654918265142209,0.370493753718025,0.3657300783049286,0.3655299162752706,0.3639664804469273,0.3635652853792025,0.0,2.1509477414723874,59.78552897328181,207.1440775632816,303.1781921003147,fqhc7_100Compliance_baseline,20 -100000,95848,42599,401.3124947834071,6808,69.82931307904181,5322,54.82639178699608,2111,21.575828394958684,77.44506122741345,79.72387839225932,63.40474875222951,65.0846152882204,77.18788219704413,79.47095589102577,63.30961888994176,64.99481596084333,0.2571790303693149,252.92250123355583,0.0951298622877487,89.79932737707941,104.24722,73.343884152423,108763.0623487188,76521.03763502941,293.90932,186.2672593989472,305952.7272347884,193647.76458449545,303.33053,145.3660866011299,313023.95459477504,148951.73288005442,3833.04191,1715.1950947007288,3946907.029880644,1737758.1325742796,1309.20497,564.7140080286297,1346104.7387530257,569528.2549107724,2090.4108,864.2613490987168,2137690.8855688176,862957.116500685,0.38032,100000,0,473851,4943.7755613054005,0,0.0,0,0.0,25033,260.45405224939486,0,0.0,28168,290.324263417077,1922406,0,69024,0,0,0,0,0,38,0.3964610633503047,0,0.0,0,0.0,0,0.0,0.06808,0.1790071518721077,0.3100763807285546,0.02111,0.3180551685706325,0.6819448314293675,25.201290814597897,4.528642783461933,0.3369034197670049,0.2113866967305524,0.2153325817361894,0.2363773017662533,10.970218027777909,5.325010712713558,22.1495702267798,12720.502949802736,59.831569908196,13.184736312551337,20.266457276903516,12.701380843465532,13.678995475275633,0.5409620443442315,0.7608888888888888,0.6977133296151701,0.5410122164048866,0.1208267090620031,0.7122026093630084,0.8876404494382022,0.8599562363238512,0.7,0.1608695652173913,0.4854441403334162,0.7022106631989596,0.6422155688622755,0.4943566591422121,0.1118677042801556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021862790744751,0.0043659275316808,0.0066414528051265,0.0088506353781819,0.0111569492145426,0.013185337416447,0.0153589179499714,0.017467649668084,0.0194222344759979,0.0217180134766204,0.0237763669875076,0.0261627608840572,0.0281934615819151,0.0302419354838709,0.0324754270642296,0.0345795743099568,0.0366524634923261,0.0386943005181347,0.0406150396079693,0.0423512762614332,0.0570936962302518,0.0707225844199264,0.0839668279198341,0.0967027662343113,0.1087917175203063,0.1242637900825399,0.1366880572675095,0.1487892214678099,0.1605988866850086,0.1721480783843659,0.1855318874535176,0.1986566164877648,0.2107411548858467,0.2217891185430246,0.2321110793769361,0.2433831990794016,0.2533970950517785,0.2627580549093647,0.2730869964512069,0.2817402647930517,0.2899715521428406,0.2975080978051148,0.3044831217388217,0.3106160365839059,0.3162410796640613,0.323042632317809,0.3284335207282106,0.3335878348285296,0.3384715025906736,0.34284470476492,0.3432616858907926,0.3431756636012482,0.3437385753255153,0.3440080709086978,0.3445216335115759,0.3438134338608996,0.3429098826202196,0.3445415275868839,0.3455988824721895,0.3465075327724515,0.346799835409419,0.3488532880311321,0.3483906096207409,0.3496705015078744,0.3511157014868013,0.3525110590684361,0.3521383075523203,0.3546453232893911,0.357517299224156,0.3610406091370558,0.3633210096307454,0.3634376499440209,0.3641928562413227,0.3672385935215819,0.3682711478211335,0.3704859028194361,0.3741655022512032,0.3796334860474802,0.3759483000842933,0.3724409448818898,0.0,2.6831819602334748,56.89659692249879,203.966178329007,301.2694035785043,fqhc7_100Compliance_baseline,21 -100000,95695,42824,403.83510110246095,6766,69.51251371545013,5294,54.84090077851508,2141,21.996969538638385,77.29747507811412,79.70091147653076,63.28577397120039,65.06586018444182,77.03230720077904,79.4359300726105,63.18843271016954,64.97125040293201,0.2651678773350738,264.9814039202596,0.0973412610308486,94.6097815098028,104.8971,73.72951206437875,109615.84199801453,77046.12786914548,293.59186,186.6462076756393,306298.2182977167,194551.6555451714,306.97845,147.65752883112845,318450.9953498093,152441.4409839122,3818.25176,1714.053911011665,3953559.862061759,1755398.4699530334,1266.39748,552.928500159911,1309537.5202466168,564912.1055327132,2101.1155,874.2367208451672,2159529.609697476,882666.7049337635,0.38066,100000,0,476805,4982.538272637024,0,0.0,0,0.0,25004,260.76597523381577,0,0.0,28381,294.2264486127802,1909984,0,68654,0,0,0,0,0,61,0.6374418726161242,0,0.0,0,0.0,0,0.0,0.06766,0.177743918457416,0.316435116760272,0.02141,0.3336608646827625,0.6663391353172375,24.71111167574073,4.458045758849456,0.3290517567057046,0.2145825462788061,0.2276161692482055,0.2287495277672837,10.946219682401065,5.574432589647207,22.818373531899358,12754.453075904476,59.75532479945383,13.368668311630936,19.7632661569104,13.369957890051356,13.253432440861143,0.55043445409898,0.7772887323943662,0.6928817451205511,0.5759336099585062,0.1073492981007431,0.7238749046529367,0.9164420485175202,0.8643326039387309,0.7182539682539683,0.1428571428571428,0.4933467235751946,0.7098039215686275,0.6319066147859922,0.5383001049317944,0.0989795918367346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021889821233126,0.0045239689205363,0.0067211533580384,0.0089828269484808,0.0108744303385416,0.0130477296339302,0.0152278568805842,0.0172688466330344,0.0193910633380038,0.0215461183193208,0.0237247802406326,0.0259086519693451,0.0279418118968745,0.0302230923798237,0.0322031098354223,0.0346404079479514,0.0365560415414274,0.0386057088269803,0.0404294721072015,0.0426671669167917,0.05743296179841,0.072085086782656,0.0853821051195685,0.0979119549781728,0.1101793248945147,0.1248690794833003,0.1372436632276143,0.1498237430375837,0.1624413245939501,0.1741567002340411,0.1877945410820778,0.2006872405233434,0.2122915373135954,0.2230074726623277,0.2336243578719933,0.2450763922021148,0.2560829766069453,0.265154843579258,0.2744708168111529,0.2828469245053761,0.290782278246362,0.2972551867949063,0.3035534438427906,0.3100417807232387,0.316291635735235,0.3223787360649868,0.3277584845103619,0.3329932536696721,0.3378996026696444,0.3425565700674871,0.3439099836554957,0.3443641838045385,0.3444315578060026,0.344365002247908,0.3445960032164875,0.3436085495527289,0.3431631990112032,0.3440595279160302,0.3446609402482966,0.3455976863753213,0.3471164105347883,0.3473821420812513,0.3482861213543413,0.3488117328802343,0.3496511907625692,0.3520120934111759,0.3516987800706875,0.3531540034607519,0.3565929623510387,0.360553413111756,0.3632833911931299,0.363975089157396,0.3692550505050505,0.3727030118185284,0.3763076053152389,0.3792817352139386,0.3811431212448005,0.3873397109708935,0.3881996140060656,0.3890168970814132,0.0,1.7840773561225178,58.09577199698432,204.78713032609903,297.97371027740746,fqhc7_100Compliance_baseline,22 -100000,95822,42838,403.0076600363173,6739,68.97163490638893,5242,54.0481309093945,2191,22.40612802905387,77.32864418348662,79.6393315011561,63.32870225298407,65.03851164830968,77.05732087327068,79.37091195264392,63.22908036928946,64.94288364424621,0.2713233102159336,268.41954851217054,0.0996218836946027,95.62800406347094,104.12446,73.31306355896764,108664.46118845358,76509.63615763358,295.4689,187.9629402539207,307741.1763478116,195547.776349816,307.32061,148.7964531956108,316636.26307111105,152058.1673113781,3759.69101,1690.006055194664,3880375.2791634486,1720448.587166479,1247.77537,546.1151663190273,1284536.286030348,552282.5200048293,2144.11166,889.0166049242561,2195524.848155956,891761.9768472342,0.38095,100000,0,473293,4939.293690384254,0,0.0,0,0.0,25162,261.93358518920496,0,0.0,28474,293.1268393479577,1912749,0,68747,0,0,0,0,0,44,0.4591847383690592,0,0.0,1,0.0104360167811149,0,0.0,0.06739,0.1768998556240976,0.3251224217242914,0.02191,0.328999434708875,0.671000565291125,25.26661218574588,4.404186668596031,0.338992750858451,0.2121327737504769,0.2201449828309805,0.2287294925600915,11.135689451853592,5.810479147367822,23.22038611155897,12739.776278115378,59.18441354295694,13.213794713072568,20.116579183622527,12.77630935519862,13.077730291063242,0.5532239603204884,0.7886690647482014,0.7000562746201463,0.5641247833622184,0.1067556296914095,0.7239031770045385,0.931297709923664,0.8609865470852018,0.7051792828685259,0.1293103448275862,0.4956632653061224,0.7107093184979137,0.6461307287753568,0.5249169435215947,0.1013443640124095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0046527186473665,0.0070207477299244,0.0093348772956281,0.0117754728492983,0.0143148035023416,0.0164305371521761,0.0185024544072172,0.020673656672185,0.0228498337170631,0.0250622457657509,0.0272367151741548,0.0294126714968398,0.0313880109945542,0.0334316414709097,0.035443848720571,0.0375640295959021,0.039761122227867,0.0412555308585554,0.043161948376353,0.0575743668905669,0.0712433607962862,0.0850793983543839,0.097942369532777,0.1098345103826288,0.1255827228617638,0.1377836691410392,0.1494471816372788,0.1612534577961956,0.1718022944140667,0.1852418234489591,0.1986713407772873,0.2110271328367136,0.2220303036928526,0.2327277928765555,0.2438402907028272,0.253048508129355,0.2628846825137658,0.2722224115021635,0.2805908866740833,0.2884686731901869,0.296187717672995,0.303059443672757,0.3101090926566705,0.3159842251326744,0.3221840981461825,0.3291788396674733,0.3337796309756066,0.3386956465287786,0.3428216020220466,0.3432771351052198,0.3430421158704084,0.3432058952490063,0.3437400168443063,0.3442549572534801,0.3439105423447257,0.343302329278957,0.3441359549451635,0.3448098839796023,0.3452757665147045,0.3464421938708404,0.3479467808776,0.3486658409086138,0.3497333871040014,0.3509529553679131,0.3511302249960665,0.3510629166547452,0.3543592818150263,0.3562034041356027,0.3583585175759504,0.3597201262175881,0.360451433461703,0.3626017293997965,0.3654231540003083,0.3682862023154298,0.368965932346214,0.3705692803437164,0.3707773707773708,0.3673357162496563,0.3715399610136452,0.0,2.603841528129384,57.657394243802166,197.10084934955384,298.6772185661449,fqhc7_100Compliance_baseline,23 -100000,95755,42787,403.1225523471359,6780,69.77181348232469,5274,54.58722782100152,2115,21.73254660331053,77.35098256499538,79.6992651792422,63.33757887846742,65.07106218834831,77.09140393684795,79.43873510222447,63.24259573971968,64.97809121738733,0.2595786281474233,260.5300770177337,0.0949831387477431,92.97097096097671,104.89732,73.78721384895253,109547.6163124641,77058.34039888522,295.38801,187.4584832050098,307990.6532295964,195279.3230158016,303.80945,145.45128374228193,314908.4747532766,149981.05417235306,3840.1027,1721.0107795358822,3975319.179155136,1762519.6389969536,1285.39781,555.0538783870817,1329298.2298574487,566652.5578376208,2081.21834,865.5698248061013,2140159.030860008,874812.3277721077,0.38114,100000,0,476806,4979.437105112005,0,0.0,0,0.0,25168,262.3152837971908,0,0.0,27979,289.770769150436,1913960,0,68720,0,0,0,0,0,63,0.6579290898647591,0,0.0,0,0.0,0,0.0,0.0678,0.1778873904601983,0.3119469026548672,0.02115,0.3297946640592261,0.6702053359407738,25.060245781608568,4.610327869042092,0.3365566932119833,0.1968145620022753,0.2330299582859309,0.2335987864998104,11.077067696525395,5.405789901790617,22.608258404202545,12722.774836755238,59.65681995961933,12.327655718517908,20.176044765201347,13.654439619406554,13.498679856493537,0.550056882821388,0.7697495183044316,0.7109859154929578,0.580146460537022,0.1030844155844155,0.6981845688350984,0.9070422535211268,0.8486238532110092,0.6901408450704225,0.1417004048582996,0.5005060728744939,0.698389458272328,0.666168782673637,0.5470899470899471,0.0934010152284263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002035381203609,0.0042570012466932,0.0065041145373555,0.0084911026245226,0.0107065510264257,0.0128778084311469,0.0150253310363808,0.0170948021595582,0.0193481127157881,0.0215845009159852,0.0237611989257231,0.0258571135290494,0.0280882126150208,0.0301201717622102,0.0324437521276705,0.0344485442311866,0.0366025388804903,0.0387664466857593,0.040650406504065,0.0428572916775181,0.0569346723176816,0.0705700208174238,0.0839336080442053,0.0967480786012427,0.1081710749638937,0.1242058752021648,0.1370346802418071,0.1495934786310233,0.1617672192787557,0.1722658428798215,0.1856399651016253,0.1988442058785334,0.2118268927487682,0.2224945295404814,0.23296311380673,0.2440430012191067,0.2545141874462597,0.2636132487286801,0.2729346604773632,0.2817723260346211,0.2900993078543484,0.2979624796657577,0.3048868489229058,0.3116173775557871,0.3177017577935321,0.3233114180886952,0.3282559215627423,0.3339775949544142,0.3391437229661478,0.3433480362378173,0.3431153068105192,0.3430415356610954,0.3434494640663174,0.3429536427680978,0.3433962826164661,0.3426720498610706,0.3422515084153699,0.3421052631578947,0.3428615495347283,0.3440294769979252,0.3447848614552827,0.3459514009814785,0.3477968805760228,0.3496293642084518,0.3507046318118416,0.3523543391397456,0.3532899988596191,0.3560491493383743,0.3584072347435942,0.3580565707929445,0.3603035289815323,0.3642868585464837,0.3665590785393329,0.3709665115569456,0.374492972361098,0.3754624656880296,0.3785257908680068,0.3792117623034511,0.3745108999441028,0.3804897007384376,0.0,1.8866051956043568,58.68948075388004,203.55373070822492,295.1630721030888,fqhc7_100Compliance_baseline,24 -100000,95830,42909,404.4140665762287,7001,71.75206094125014,5416,55.80715850986121,2167,22.14337890013566,77.51248185563044,79.79865153944161,63.42745123530996,65.11097239973869,77.24459251367257,79.53383742028876,63.328764174243474,65.01665585897736,0.2678893419578685,264.81411915284525,0.0986870610664851,94.31654076132644,105.40134,74.0668544114781,109987.83262026504,77289.84077165618,293.81674,186.2798156159196,305910.1116560576,193693.7656432429,305.17697,147.34992075698037,313595.43984138576,150088.01169980026,3867.70837,1746.1466739044956,3988526.108734217,1774645.5952253966,1282.23347,563.4904484465231,1318637.013461338,568618.207707945,2120.63648,887.8705075782821,2169402.8383595957,888629.8997241504,0.3836,100000,0,479097,4999.446937284775,0,0.0,0,0.0,25166,261.8699780861943,0,0.0,28272,290.3057497652092,1920070,0,68838,0,0,0,0,0,45,0.459146405092351,0,0.0,0,0.0,0,0.0,0.07001,0.1825078206465067,0.3095272103985145,0.02167,0.3185255198487712,0.6814744801512287,25.09086309994104,4.42127256300113,0.3316100443131462,0.2197193500738552,0.2287666174298375,0.219903988183161,11.054268806001089,5.754640868586357,23.079914162672505,12789.680860900697,60.95333674729655,13.826159727275453,20.176941644344577,13.91684421978538,13.033391155891138,0.5614844903988183,0.7655462184873949,0.700445434298441,0.5907990314769975,0.1175482787573467,0.7309682187730968,0.9166666666666666,0.8687782805429864,0.7418300653594772,0.1587982832618025,0.5050455328574944,0.6968215158924206,0.6454948301329394,0.5412647374062165,0.1075156576200417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023779167425576,0.0046181424129794,0.0067809323021721,0.0091221803939077,0.0113269265933887,0.013637750432218,0.0158111217446193,0.0179168706151085,0.0199422053853144,0.0219654361386644,0.0240850349192045,0.0260696558231119,0.0281234265985758,0.0300625746161129,0.0323611583624573,0.03448774492083,0.0363717262859448,0.0384746975210724,0.0404300628473484,0.042414083891185,0.0569634774628204,0.0710812760751592,0.0842807892613511,0.0972387064248127,0.1093924397178056,0.1247689366331822,0.1375184152791173,0.1501637531368295,0.1615178580956344,0.1728421503533947,0.1854791014763917,0.1981077052686151,0.2107771818201559,0.2219188554578714,0.2329275795394621,0.24476862502212,0.2547378976101609,0.2644911255897551,0.2741760108732586,0.2831003782900376,0.2915508391487398,0.2992613993802279,0.3057590017573034,0.3125373276953582,0.3187493188340861,0.3250221195438458,0.3297496850796343,0.3352171213522726,0.3407751338105372,0.345569886259161,0.3458788813627523,0.3463973470003015,0.3460681088507858,0.3458813364055299,0.3461048578199052,0.3457512644591476,0.3456512797797956,0.3456057201895797,0.3478854257297371,0.3481876751200186,0.3494043605304562,0.3511115502420709,0.3513564470514297,0.3510182207931404,0.351618618906235,0.3531121085540824,0.3546336757278248,0.3574440176145413,0.3612408504705472,0.3634186557788945,0.3661123595505618,0.3676786744271407,0.3689646590343454,0.369047619047619,0.3718079673135853,0.3769554050898903,0.38572501878287,0.3911242603550295,0.3897754936434947,0.3891385767790262,0.0,2.7288121219629407,58.95337283803666,205.8995671075077,305.1867046698255,fqhc7_100Compliance_baseline,25 -100000,95733,42807,403.1629636593442,6703,68.74327556850824,5203,53.71188618344771,2108,21.643529399475625,77.31288813594676,79.67077619610596,63.318020272784125,65.06178253220091,77.05767549077778,79.41534950285957,63.22474296355176,64.97071360029409,0.2552126451689815,255.42669324639175,0.0932773092323699,91.0689319068183,104.6826,73.69223141542294,109348.50051706308,76976.83287416349,294.25521,187.51037501588647,306725.7998809188,195235.63631137696,309.60481,148.97830496884336,318744.1947917646,152128.990223581,3766.48253,1693.6320339620313,3893891.113826998,1729502.03510026,1266.389,553.9776703161489,1304769.0242654048,561609.7205519783,2076.84872,861.1604037627037,2134880.9292511465,871753.9091683958,0.38075,100000,0,475830,4970.386387139231,0,0.0,0,0.0,25036,260.8504904264987,0,0.0,28500,293.0546415551586,1913676,0,68695,0,0,0,0,0,68,0.7103088799055707,0,0.0,0,0.0,0,0.0,0.06703,0.1760472751149047,0.3144860510219305,0.02108,0.3295938653791536,0.6704061346208463,25.28403653994005,4.471665785291051,0.3298097251585624,0.2116086872957908,0.2267922352488948,0.2317893522967518,11.306138485391209,5.764759268268468,22.33907904587977,12722.961530629853,58.88213584033037,13.098064255694366,19.378872154670635,13.151259160434288,13.253940269531071,0.5562175667883913,0.7892824704813806,0.6893939393939394,0.5805084745762712,0.1301824212271973,0.7323506594259116,0.91869918699187,0.8789346246973365,0.720754716981132,0.2107438016528925,0.4982115482881962,0.7240437158469946,0.6293169608595549,0.5398907103825137,0.1099585062240663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025522088760153,0.0046017089165712,0.0067878123763431,0.0089180514362328,0.0110861362272556,0.0134419551934826,0.0155909044560008,0.0179375401986707,0.0202833950150285,0.022588341303079,0.0248331299791861,0.0271294347178723,0.0289616587131808,0.0310761814511144,0.0332827798239912,0.0353569804456571,0.037214985399797,0.039284046692607,0.0411176855963312,0.0429477895745855,0.0572845435089001,0.0711064608945854,0.0848346301461798,0.0978876867594023,0.1103203222201134,0.1260590419174344,0.13883701188455,0.1511016498137307,0.1625273727500934,0.1732509758503839,0.1875376862778878,0.1989292667099286,0.2110757119401524,0.2217810736317102,0.2323071167642269,0.2427941600017723,0.2530107034833755,0.262921626426048,0.2724072538977777,0.2801320101757844,0.2879207141285848,0.2957174775112005,0.3028506514253257,0.3087665879475899,0.3156008116942294,0.3210349843445674,0.3266701735928459,0.331844158488933,0.3364688200463844,0.3417022344966106,0.3419246071886169,0.3424485803634159,0.3426281327613457,0.3428199000651749,0.342602527420124,0.3425143629604596,0.3429279844874994,0.3432597231377719,0.3444272976680384,0.3448071748878923,0.3455475715736804,0.3462951561972474,0.3476259537171322,0.3493152220204873,0.3501799821225811,0.3507517418408507,0.3511793872345304,0.3533682041527975,0.3579442891020422,0.3604907581893268,0.3636739950326557,0.3678111817162386,0.3699294532627866,0.3689327821160618,0.3705949223190602,0.3719156037668375,0.3789685612513551,0.3909313725490196,0.3951205832865956,0.4027565084226646,0.0,2.490257611610638,56.4570799907026,201.97287886831052,293.3877033341244,fqhc7_100Compliance_baseline,26 -100000,95787,42623,401.181788760479,6911,71.03260358921356,5411,55.97836867215801,2152,22.101120193763244,77.37208356525132,79.70911195696696,63.35007434272507,65.07883645288089,77.10908811123893,79.44574000707128,63.25429444810897,64.98510269135234,0.2629954540123833,263.371949895685,0.0957798946161005,93.73376152855428,104.42124,73.3977858236422,109013.99981208306,76626.04092793615,292.11525,184.8575187073054,304444.0268512429,192468.77833871543,298.6969,143.41711405346123,308473.2479355236,147157.10156442726,3894.61419,1737.0578908913822,4031880.202950296,1779428.0966011905,1301.20014,561.924275897241,1344538.0166410892,572747.8686203472,2113.19846,877.2575359392924,2172116.13266936,888415.3485315484,0.38028,100000,0,474642,4955.181809640138,0,0.0,0,0.0,24985,260.2754027164437,0,0.0,27661,285.4458329418397,1922163,0,68990,0,0,0,0,0,49,0.5011118418992139,0,0.0,0,0.0,0,0.0,0.06911,0.1817345114126433,0.3113876428881493,0.02152,0.3194444444444444,0.6805555555555556,25.153485111244237,4.517255190056535,0.3306228053964147,0.2112363703566808,0.2273147292552208,0.2308260949916836,11.074239675902964,5.538230064040692,22.896086187191216,12725.48403842869,60.864503647540026,13.52280267003074,20.01924191234816,13.653216211341238,13.669242853819904,0.5364997227869155,0.7751531058617673,0.6825041922861934,0.5463414634146342,0.099279423538831,0.6899166034874905,0.9193548387096774,0.8404761904761905,0.6702127659574468,0.1061224489795918,0.4870478983382209,0.7055771725032426,0.6340394448502557,0.509493670886076,0.097609561752988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027549883520713,0.0049166700458213,0.0070426823080513,0.0093355410855233,0.0112274992372622,0.013235054569148,0.0153298881855894,0.0176337326775108,0.0199783355134074,0.0221471701975232,0.0241542923314989,0.0262317963033282,0.0283805314282777,0.0305086490939044,0.0325963660362571,0.0347784757811208,0.0367567903279231,0.0388173314251343,0.0409600997506234,0.0430301200428947,0.0576559842215659,0.0713710478700595,0.0847528696472561,0.0974266830585589,0.1094816687737041,0.1254952090178222,0.1381005870758536,0.1505927382914252,0.1613994281080619,0.17289769683985,0.1862461409377924,0.1990142778396256,0.2112452592343052,0.2222732340788351,0.2327207944310646,0.2437495847819828,0.2537947648416849,0.2635927295617279,0.2729426433915212,0.2810693228003892,0.2894499444855662,0.2968561841628377,0.3039900691611988,0.3105917287291362,0.3160270880361174,0.3208550881686533,0.3269445035616369,0.3321843758744371,0.3370648375825029,0.3420448548812665,0.3428006350402282,0.342652152399802,0.3438773639453384,0.3434900241619283,0.3441672366112581,0.3428720322486703,0.3417007384868942,0.3426937675610838,0.3435866678090994,0.3456597967654215,0.3474712988669618,0.3475386472951842,0.3491547464239272,0.3492489870839209,0.3508543609765502,0.3519884877027734,0.3510321100917431,0.3512675253979808,0.3542951813599351,0.3565151394104018,0.3605364335408275,0.3623853211009174,0.3658289548648477,0.3671119299861815,0.3708036138849263,0.3781100478468899,0.3768272041852593,0.3769445552453131,0.3816793893129771,0.3836812144212523,0.0,1.9357045452621675,58.458787992346416,204.49422167998287,311.9017668459709,fqhc7_100Compliance_baseline,27 -100000,95657,43101,407.4035355488882,6758,69.61330587411271,5157,53.44094002529872,2134,22.005707893828998,77.25911226955019,79.65608126754196,63.27736057920528,65.04611303927017,77.0124570693386,79.40603187142227,63.18815436676075,64.95737627625289,0.2466552002115918,250.04939611969235,0.0892062124445303,88.7367630172804,103.653,73.00905087064464,108359.03279425448,76323.79320974383,292.26089,186.0113442672928,305065.0135379533,194003.2584490241,303.72495,145.79623707091775,314476.4732324869,150088.5803788092,3743.11297,1671.8405040019843,3883447.442424496,1719378.4929342698,1277.58901,556.0588750781909,1325582.7905955657,571689.627270486,2105.84386,860.7611049840717,2174564.4333399544,878898.1297107226,0.38319,100000,0,471150,4925.410581557022,0,0.0,0,0.0,24963,260.47231253332217,0,0.0,28103,290.7889647385973,1914038,0,68715,0,0,0,0,0,44,0.449522774078217,0,0.0,0,0.0,0,0.0,0.06758,0.1763615960750541,0.3157738976028411,0.02134,0.307475317348378,0.692524682651622,25.341462253485435,4.556843724640952,0.3261586193523366,0.2065154159394997,0.2278456466938142,0.2394803180143494,11.303021391396378,5.714016541600675,22.381655201523216,12812.080124041,57.99356658242929,12.686937904056052,18.75773218029897,13.005604220880205,13.543292277194068,0.5493503975179368,0.780281690140845,0.6944114149821641,0.5829787234042553,0.1206477732793522,0.7249216300940439,0.91644908616188,0.8534704370179949,0.7874015748031497,0.168,0.4916258696212316,0.7038123167155426,0.6465583913379737,0.5266015200868621,0.1086294416243654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0045123150711323,0.0070945740210705,0.0093582344334254,0.011496006917951,0.0135966431059417,0.0159063564247405,0.0179466500607409,0.0201081567352613,0.0220689090425205,0.0242164511928806,0.0266451725518785,0.0283157624067883,0.0304925159416109,0.0326309054508678,0.0345861551982629,0.0365482233502538,0.0383437652456429,0.0404198000852914,0.0422408940224756,0.0568362313994315,0.0712587581035367,0.0849258683691041,0.098436430639642,0.1102745512143611,0.1262986222161034,0.1397346984292193,0.1518505891628135,0.1635035871994183,0.1744620538590388,0.1877750453015791,0.2005135817450944,0.2128347837452212,0.2235807094809264,0.2337574982357092,0.2457248822954606,0.2556692957431336,0.2655425219941349,0.2740082795014102,0.2820937018910411,0.2905059693007391,0.2978830704274907,0.3050829358581903,0.3120574197193936,0.3180842762387826,0.3243052808544304,0.3303498575212463,0.3361357402564266,0.3413285569659683,0.346369084630955,0.3464409616760485,0.346156501567225,0.3467790998740785,0.3462471844801278,0.34656333527453,0.3460787178737868,0.3454522341575033,0.3459428288985913,0.3470882948423184,0.3472916554677561,0.3486986751855679,0.3493271498503676,0.3497299909646782,0.3508105086640581,0.3521685790575161,0.353886280646844,0.355038361712444,0.3570887991927346,0.358985200845666,0.3600909199665031,0.3612610963667978,0.3641066666666667,0.3674412714493763,0.3679554640433158,0.3669078267405806,0.367032704702793,0.3714856352742356,0.3739820846905538,0.3840336134453782,0.380652772316162,0.0,1.8077545335142664,56.54684946985444,189.73384015818087,300.80108648534645,fqhc7_100Compliance_baseline,28 -100000,95620,43150,406.3585024053545,6918,71.04162309140347,5390,55.80422505751935,2131,21.9201003974064,77.28554750318864,79.71690096166681,63.27381344368565,65.071739330926,77.0212761786855,79.45416225116234,63.17511076189786,64.97659090737297,0.2642713245031416,262.73871050446473,0.0987026817877847,95.14842355302731,102.3308,72.00061884293547,107018.19702991004,75298.70199010194,292.5011,185.8998928314223,305301.2445095168,193817.0286879547,305.98813,147.67208841645385,316947.3331938925,152090.91107594583,3858.41413,1742.166721261127,3992146.0573101854,1778961.149614229,1297.58626,567.4310336682377,1340830.1401380466,577229.3772661273,2101.54804,883.0361897598226,2162557.9167538173,891845.1328993556,0.38387,100000,0,465140,4864.463501359548,0,0.0,0,0.0,24962,260.4266889772014,0,0.0,28388,293.8088266053127,1922137,0,68992,0,0,0,0,0,51,0.5333612215017779,0,0.0,0,0.0,0,0.0,0.06918,0.1802172610519186,0.3080370049147152,0.02131,0.3170396814499519,0.682960318550048,25.32394867435987,4.487284112785496,0.3322820037105751,0.2129870129870129,0.2269016697588126,0.2278293135435992,11.155675950805346,5.619705557569304,22.81661409045479,12874.044381208048,60.7059810441145,13.534537674672816,19.9457255249189,13.717953421663518,13.507764422859267,0.5512059369202227,0.7787456445993032,0.6800670016750419,0.588716271463614,0.1131921824104234,0.6991869918699187,0.898936170212766,0.8356807511737089,0.7206896551724138,0.1647509578544061,0.5016101065147387,0.7202072538860104,0.6315018315018315,0.5476956055734191,0.0992761116856256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00216862586137,0.0044224000649159,0.006883807821955,0.0093611831071809,0.0119745248850364,0.0142407480976683,0.0164947822627536,0.0186131088591042,0.0209264505835063,0.0231765019151594,0.0252254285450498,0.0271064529387587,0.0292952063325407,0.0314094568545186,0.0336823410362844,0.0358203088635352,0.037980061762938,0.0402534011839235,0.0423106947697111,0.0440184001084813,0.0588954746448395,0.0731472166331321,0.0863589075356501,0.0990686305497608,0.1113294248138171,0.1270308627592196,0.1395309295331611,0.1520863094603526,0.1644105340881122,0.1753701674080759,0.1890512366728536,0.2010712814173877,0.212571391201988,0.2233960940753567,0.2341985709244883,0.2454375915811908,0.2556714632319234,0.2656475468975469,0.2742577183649343,0.282778707887072,0.2909238343469447,0.2979346539988988,0.3049150773318151,0.3121328961118518,0.3183240590792309,0.3244958694014645,0.3302209577761345,0.3354965384468272,0.3411182801282634,0.3461421487603305,0.3467067644837631,0.3466056991750106,0.3471516485998193,0.3478921987458908,0.3501994760033345,0.3488261323827669,0.3481010646750357,0.34967374110203,0.3499023671679627,0.3509467116115614,0.3522793440898589,0.3526513652552434,0.3536062542030935,0.3536396836421482,0.3549847124250668,0.3572637113777754,0.3569564230594643,0.357391440664681,0.3592006138392857,0.361970716264345,0.3627803302551972,0.3653069895899724,0.3672569159997479,0.3691524908869988,0.3734058514628657,0.3760028315243039,0.3741216009776963,0.3785699817703059,0.3733952472002185,0.3751416698148848,0.0,2.075615357582117,59.74543868625026,201.07003866914928,308.04942880165254,fqhc7_100Compliance_baseline,29 -100000,95829,42738,401.360757182064,6769,69.57184150935521,5248,54.367675755773305,2080,21.4444479228626,77.35864855579545,79.66299777031323,63.35358995694328,65.05402634470376,77.11018425673286,79.4130232090311,63.26375801932304,64.96574489266487,0.24846429906259,249.97456128213005,0.0898319376202323,88.28145203888482,103.653,72.93276599279469,108164.5430923833,76107.19718748466,293.22706,186.01521142262104,305608.3648999781,193730.07275732924,304.39207,146.24242085873806,315336.43260390905,150814.56828754206,3767.88299,1676.766471891175,3906461.989585616,1724328.6916185864,1266.71537,546.4005265143526,1312967.0245958949,561300.1560220314,2037.82464,832.9821776315689,2102679.710734746,847298.0053155691,0.38132,100000,0,471150,4916.570140562878,0,0.0,0,0.0,24921,259.65000156528816,0,0.0,28112,291.10185851882,1921906,0,69009,0,0,0,0,0,64,0.6574210312118461,0,0.0,0,0.0,0,0.0,0.06769,0.1775149480751075,0.3072832028364603,0.0208,0.320812894183602,0.6791871058163981,25.50047731208094,4.588646442921325,0.3277439024390244,0.2185594512195122,0.2242759146341463,0.229420731707317,11.344399939276204,5.765531806893772,21.874410507016144,12788.76406704319,58.90994407039274,13.434837038655182,19.32847952954912,13.00409349622297,13.142534005965452,0.5485899390243902,0.7846556233653008,0.688953488372093,0.5454545454545454,0.1262458471760797,0.7094017094017094,0.9425587467362924,0.8463414634146341,0.6831275720164609,0.1553784860557769,0.496339308255491,0.7054973821989529,0.6396946564885496,0.5096359743040685,0.1185729275970619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022569479586259,0.0047908922403751,0.0070561756744426,0.0092849097385004,0.0115010261516266,0.0136717359239102,0.0157580572872102,0.0180347434027317,0.0204012831252681,0.0226579921847828,0.0248381678138315,0.0268939627053972,0.0291673087789592,0.0312519294490522,0.0333027456721896,0.0356003098373354,0.0374861612639551,0.0396831978769281,0.041806454293341,0.0437339940452643,0.0582227507928559,0.0725852822180172,0.0860487784427372,0.0984678114294121,0.1105326940302439,0.1258863187260258,0.1386061993809099,0.150520135298998,0.1622149628490904,0.1729435349864385,0.1869543218249739,0.2003331494521422,0.2116279575504523,0.2230279564247276,0.234172547033763,0.2447473404255319,0.255088604204794,0.264582817807572,0.2737421294457995,0.2826774178769414,0.2899228214711362,0.2967020106265945,0.3038253436415945,0.3103307717207562,0.3166609930457618,0.3227572600036993,0.3283109537098449,0.3337446884303198,0.339325959122348,0.3441876427185491,0.3447918349760328,0.345827313381493,0.345813861832104,0.3462910282884002,0.3464297915954902,0.3459431334741223,0.3449973874629891,0.3453069541212041,0.3452877968653754,0.3461476481226163,0.3468402464682897,0.3479208352318877,0.3493081549396475,0.3500985751411417,0.3521099590065107,0.3511792452830188,0.3531113912445565,0.3559756792703781,0.3573373890284017,0.3591879229567933,0.3612153381531985,0.3630038002462131,0.3635324741286267,0.3652381318765869,0.3668109939759036,0.3713374291115311,0.3691481197237145,0.3699469171090241,0.3630769230769231,0.3559857763729751,0.0,1.5446883491307983,57.3599907396351,196.2878904838049,302.29612753047064,fqhc7_100Compliance_baseline,30 -100000,95856,42738,401.6858621265232,6860,70.11559005174429,5332,54.98873309964948,2139,21.86613253213153,77.41454581429173,79.70328503604344,63.37712166936033,65.06812671013107,77.1535203204116,79.44387041573033,63.28109094585869,64.97516974553677,0.2610254938801262,259.4146203131089,0.0960307235016344,92.95696459429335,104.18782,73.33230740006299,108692.01719245536,76502.5740695032,291.81487,185.11545958035072,303825.0292104824,192512.8417421452,308.88542,149.08816155787366,318276.4459188783,152465.19512269774,3868.82975,1749.5655301787249,3993371.964196295,1782488.7437184183,1326.88908,585.1145124755737,1363716.470539142,589880.8926498439,2110.50642,884.8522714496736,2160385.390585879,889483.9442545114,0.37968,100000,0,473581,4940.546236020698,0,0.0,0,0.0,24775,257.81380403939244,0,0.0,28458,292.93940911367054,1921803,0,68985,0,0,0,0,0,62,0.6363712235019195,0,0.0,0,0.0,0,0.0,0.0686,0.1806784660766961,0.3118075801749271,0.02139,0.3187560738581146,0.6812439261418853,25.209106360917573,4.56841148109566,0.3223930982745686,0.214178544636159,0.2304951237809452,0.232933233308327,11.356272571205894,5.768240687495162,22.91434247956758,12738.249340469829,60.05638092837424,13.223362281022291,19.312031576614263,13.762201620180322,13.758785450557356,0.5534508627156789,0.7486865148861647,0.6934264107038977,0.6061838893409276,0.1280193236714976,0.7100456621004566,0.9101796407185628,0.8709677419354839,0.7301587301587301,0.183206106870229,0.5022399203583873,0.681930693069307,0.6390577507598785,0.563457330415755,0.1132653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611175785797,0.0049237627273187,0.0070170457426204,0.0092278642925304,0.0114137615611342,0.0136855279357746,0.0160554197229013,0.0180341915214819,0.0205728528234044,0.0229113820472956,0.0252696487651981,0.0273466750094882,0.0296538331124194,0.0317028985507246,0.033620982957533,0.0355910846708392,0.0377309689834261,0.0393276474916318,0.0415321534229511,0.0434045474402446,0.0582316755291419,0.0722100885122213,0.085334171380683,0.0975924739875896,0.1095151847015711,0.1249749162996525,0.137474444668072,0.1497991199540845,0.1612682968463278,0.1720197487496385,0.1858756454388984,0.1993448152833187,0.2116569416826939,0.2233331147970891,0.2339747464202116,0.2447608931377105,0.2547804078538059,0.2648671731019912,0.2731489356876354,0.2814031231396254,0.2898528935559976,0.2968823089157077,0.3038885142728703,0.3098919009611466,0.3161789724396053,0.3221392114801391,0.3279121594551282,0.3336303235496271,0.3385826771653543,0.342911143125256,0.3432857951635079,0.3429201101928374,0.3428273314345337,0.3431955229708038,0.3437964670195682,0.3427673919705792,0.3414838730098439,0.3416215329066141,0.3418835552061794,0.3428912996930983,0.3437780940964938,0.3449591711647586,0.3464154892726321,0.3479629422926666,0.3493585123252126,0.3497253533959857,0.3511222370779165,0.3527275004697188,0.3528855250709555,0.3547157827881867,0.3557998001635026,0.3562463591590319,0.3584551931008624,0.3603976801988401,0.3589982310771809,0.3600329334274288,0.3604014598540146,0.3644291218819712,0.3641856632793189,0.3650853889943074,0.0,2.4717317960705536,57.4621835774718,206.22810670307047,299.7834374090448,fqhc7_100Compliance_baseline,31 -100000,95713,42719,402.0456991213315,6910,70.99349095734122,5465,56.56493893201551,2300,23.674944887319384,77.36002699221102,79.72997587593672,63.33690834044432,65.0877016435009,77.08095624558486,79.45069476360204,63.23470289725511,64.98809174620041,0.2790707466261608,279.28111233467234,0.1022054431892129,99.6098973004962,105.12018,73.88986880702639,109828.52903994232,77199.4074023658,296.25624,187.990908654358,308974.71607827564,195864.5364121117,305.96164,147.3053702023197,316091.35645105684,151259.91532115988,3957.22579,1780.9548764508038,4098075.3920575054,1824814.6560502104,1340.72877,588.0662193440555,1387578.4062770992,601352.658568018,2265.56668,936.6196690522536,2333969.408544294,950240.9550598718,0.38077,100000,0,477819,4992.205865451924,0,0.0,0,0.0,25264,263.3915977975824,0,0.0,28318,292.30094135592867,1913173,0,68691,0,0,0,0,0,59,0.6164261907995779,0,0.0,0,0.0,0,0.0,0.0691,0.1814743808598366,0.3328509406657018,0.023,0.3209468758601707,0.6790531241398293,24.927917621341035,4.464281962365605,0.3196706312900274,0.2104300091491308,0.231107044830741,0.2387923147301006,10.949938690518376,5.54044924389603,24.436653125859607,12762.737189265315,61.71349658277628,13.684374737016348,19.6114445657823,14.103345286671557,14.314331993306078,0.5463860933211345,0.7721739130434783,0.6977676016027475,0.5748218527315915,0.1172413793103448,0.7120677487649965,0.9,0.8741865509761388,0.7346938775510204,0.1433823529411764,0.4883893280632411,0.7065789473684211,0.6345256609642301,0.5263157894736842,0.1103581800580832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024916186405485,0.0046934079412867,0.0069005408806307,0.0090310652390337,0.0113918385613735,0.0136043338356889,0.0157492354740061,0.0180550735879483,0.0202606695629951,0.0225436899167664,0.0245547843382511,0.0266521565044197,0.0285881760126692,0.0308795204301296,0.0327799502677493,0.0350806451612903,0.0371187634675948,0.0390890974009798,0.0414382742373339,0.0434510784620193,0.0576581657163147,0.0717687324032111,0.0849541553891022,0.0976787235609032,0.1097990426586255,0.1255946717411988,0.1387836934729338,0.150527335227696,0.1626312360486601,0.1736388209550778,0.1873505267920625,0.2000541037710328,0.2122710722243356,0.2231489882702756,0.233720098982678,0.2440299499357582,0.2549032733114666,0.2644392964778912,0.2729303443662051,0.2814171046454375,0.2897622131754256,0.2973393186972481,0.3051743718355179,0.3111502389593589,0.3175104460207948,0.3232213706597008,0.3292392828525641,0.3342620510667531,0.3392357512953368,0.3445889732585011,0.3446620920231338,0.344522870771182,0.3442650735138342,0.3444827686154024,0.3448959218035254,0.3441130876552116,0.3427769674678166,0.3431904057828158,0.3443408332620412,0.3438963360142985,0.3445326129776577,0.3457398393288218,0.3468562811544423,0.3465652271201611,0.3475884321799224,0.3500548675340962,0.3511518099871226,0.3528089176008613,0.3556852343059239,0.3573148222454056,0.3610688781386777,0.3640854902803136,0.362772427774962,0.3619857504022064,0.3624976455076285,0.3681083650190114,0.370159803318992,0.3732135565536953,0.3728436282693378,0.3756325418450759,0.0,2.025696152370027,62.79271634231998,198.7090103442721,312.42324349126426,fqhc7_100Compliance_baseline,32 -100000,95745,42534,400.8042195414904,6784,69.64332341114418,5285,54.56159590579142,2145,21.975037860984905,77.33346816806463,79.69602598859423,63.32120940122799,65.07019736428904,77.07309536829807,79.43749377741446,63.22639147783879,64.97887077484285,0.2603727997665572,258.53221117976943,0.0948179233892005,91.3265894461972,103.73088,72.97027235073227,108340.78019739932,76213.1415225153,289.53362,183.76984578816385,301749.6266123557,191285.6084267208,305.19145,147.1471129167068,314394.9344613296,150222.36930180024,3813.65008,1726.6692134413777,3938193.879575957,1758608.0672609736,1302.85889,572.7884685140428,1344496.9241213645,581998.5684851805,2117.78948,872.4315109093417,2172043.030967674,877021.0757515797,0.37887,100000,0,471504,4924.580918063606,0,0.0,0,0.0,24711,257.42336414434175,0,0.0,28265,291.0439187424931,1922705,0,69037,0,0,0,0,0,59,0.5953313488955037,0,0.0,0,0.0,0,0.0,0.06784,0.1790587800564837,0.3161851415094339,0.02145,0.3305703849395898,0.6694296150604102,25.07060518457401,4.531853877368663,0.3453169347209082,0.2051087984862819,0.2130558183538316,0.2365184484389782,11.163251651169764,5.636387756054936,22.66499603838833,12646.44560532743,59.88151777227885,12.877826072465114,20.67218785224016,12.590093072329354,13.74141077524422,0.5557237464522232,0.7850553505535055,0.7084931506849315,0.5710479573712256,0.12,0.7215007215007215,0.9333333333333332,0.8744855967078189,0.7276264591439688,0.1417910447761194,0.4967940497563478,0.7066290550070522,0.6482449589245706,0.5247410817031071,0.1140529531568228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330563858351,0.0046850281912951,0.0068002354708401,0.0089922575138694,0.0113097780761172,0.0138276532700668,0.0159442156343024,0.0179828948174154,0.0202158538081026,0.0224171639728537,0.0246045333852762,0.0267542733945896,0.0289480990919654,0.0310810393301819,0.0327569485999628,0.0347090865866641,0.0365622573129691,0.0385900469015896,0.040514409281823,0.0425454356090194,0.0571920668058455,0.071228231748158,0.0848949698864709,0.0972813798180575,0.108791023369611,0.1243840541397906,0.137843228790901,0.1500702456468985,0.1614815289481272,0.1722285371136895,0.1850144340557542,0.1978318023954039,0.2095269168026101,0.2207505277319012,0.2312591435579852,0.2423574742296577,0.2517189802205652,0.2611117362439518,0.2697785797782393,0.27835854219861,0.2854730511219061,0.2933313061377245,0.3010601292032466,0.3075061402983286,0.3138994405271909,0.3199635705758556,0.3254778901571505,0.3310198426317863,0.3358443676464878,0.3409357882927473,0.3414765607103877,0.3411479830499147,0.3418409747165293,0.3414898694086511,0.34152436484798,0.3403883048116031,0.3400859812491076,0.3409670467071385,0.341200246626019,0.3425282829729342,0.3440585695513422,0.3459329954063044,0.3475653231556431,0.3479244606734021,0.3493246502653159,0.3503892631523762,0.3494361170592434,0.3516066858352554,0.3531573553835824,0.3542007257067666,0.3566040323686737,0.3592807981646481,0.3580794324444163,0.3589960085968683,0.3604287204780423,0.36003861003861,0.3628620102214651,0.3662407254740313,0.3652762119503946,0.3683391676390509,0.0,2.3886818899371365,61.02491989582687,197.36887669389893,294.2676515603396,fqhc7_100Compliance_baseline,33 -100000,95805,42861,403.59062679400864,6792,69.78758937424978,5261,54.412608945253375,2141,22.034340587652,77.34149214859087,79.68161424566996,63.33904717832892,65.07276504145648,77.07590030447489,79.4143030987999,63.24119992514665,64.9767391708144,0.2655918441159883,267.31114687005686,0.097847253182266,96.02587064208024,103.2339,72.63767647472405,107754.18819477064,75818.25215252234,291.22221,185.85311139279847,303466.1447732373,193483.2643315051,308.41099,148.8751041812591,318742.8839830907,152964.95170203995,3783.96901,1711.2158150703574,3915563.634465842,1752051.0882212387,1246.9302,542.2299070737906,1289237.2631908564,553694.6164701381,2102.11008,878.12610734357,2164686.122853713,891282.1843348874,0.38057,100000,0,469245,4897.917645216847,0,0.0,0,0.0,24835,258.70257293460674,0,0.0,28519,294.50446218882104,1923746,0,69052,0,0,0,0,0,52,0.5427691665361932,0,0.0,0,0.0,0,0.0,0.06792,0.1784691383976666,0.3152237926972909,0.02141,0.3266191075674919,0.6733808924325081,24.967131289790988,4.522526037140543,0.3197110815434328,0.2199201672685801,0.2313248431857061,0.2290439080022809,11.145644132098171,5.613995227472869,22.96008097870505,12786.420204177271,59.58772213668275,13.579097284299865,19.203503994947987,13.513081012874157,13.292039844560746,0.5464740543622886,0.7571305099394987,0.7074910820451843,0.543138866064092,0.1228215767634854,0.7218978102189781,0.9437340153452686,0.8702460850111857,0.6898954703832753,0.1346938775510204,0.4847083012079157,0.6618798955613577,0.648582995951417,0.4978494623655914,0.1197916666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0044909420840809,0.006819219645847,0.0093890988903792,0.0118634583100167,0.0142710168990842,0.0166042816200393,0.0186769871742504,0.0207174410994764,0.0225275963054742,0.0248338938561233,0.026884370507291,0.0290166632380168,0.0308540228700937,0.0329883503761105,0.0350715799266111,0.0371432713415896,0.0390883533719929,0.0411289149365089,0.0430889992400345,0.0581158770071888,0.0716571165669831,0.0854519922030559,0.0979308315556069,0.1106532758638859,0.1267744083543849,0.1401024053598498,0.1523049928218216,0.1635804774966114,0.1747904743532034,0.1880805536719515,0.2001513431706394,0.2125359839226549,0.2228353511954194,0.2341875831436833,0.2447917819743629,0.2553779620588956,0.2657362286946172,0.2747782949950732,0.2832408942764023,0.2902115668883961,0.2974134407660419,0.3040404756838546,0.3102845581985562,0.3165034642592795,0.3230663170464478,0.3289575675743255,0.3344261045248351,0.3385878701668175,0.3435556960691326,0.3437634582256675,0.3435299295774648,0.344573932894607,0.3452408488983982,0.3451651294257661,0.3446447182882717,0.3434535706354494,0.3436322035851262,0.3440698013267737,0.3444245249193259,0.3463464217144147,0.3477250149016491,0.3470492804921729,0.3477772031211351,0.3480523882150725,0.3498464204142711,0.3519836353683482,0.3549301155719698,0.3583250461713311,0.3598732501704705,0.3618241524443827,0.3628237574713263,0.3626647894534749,0.3631562597079838,0.3656951743908265,0.3654816238289695,0.3681000781860828,0.3684755592377796,0.3683914510686164,0.3689095127610209,0.0,1.953287584395604,60.60279356650585,192.83942621209735,300.41992689958903,fqhc7_100Compliance_baseline,34 -100000,95703,42615,400.6144008024827,6785,69.55894799536064,5272,54.51239773047867,2130,21.90108982999488,77.3419109081298,79.7119683589564,63.33255108723839,65.08153109118,77.08131271274176,79.45120273844965,63.23645752679446,64.98788187668289,0.2605981953880416,260.7656205067457,0.0960935604439257,93.6492144971055,104.02436,73.19866607553887,108694.98343834572,76485.23669638243,290.56898,184.29321554621345,303030.6051011985,191984.1537073096,304.31011,147.0666237614937,314582.4059851833,151028.53347837963,3843.36232,1727.7349365846908,3975180.255582375,1765163.9911774867,1293.97902,558.5750745601314,1339045.8397333417,570866.219865959,2107.20986,874.6306897419665,2167806.9652988934,884535.9928846091,0.37954,100000,0,472838,4940.681065379351,0,0.0,0,0.0,24826,258.81111354920955,0,0.0,28195,291.1716456119453,1920347,0,68923,0,0,0,0,0,48,0.5015516754960659,0,0.0,0,0.0,0,0.0,0.06785,0.1787690362017178,0.313927781871776,0.0213,0.319520022324543,0.680479977675457,25.214963694265023,4.61701002231146,0.3154400606980273,0.217185128983308,0.2259104704097116,0.2414643399089529,11.270360021571165,5.4871737500586,22.55797688957303,12711.581894006133,59.37472162346854,13.65264413260306,18.688277858776,13.153345972714218,13.880453659375256,0.5466616084977238,0.7912663755458516,0.6957306073361396,0.5625524769101595,0.1170463472113118,0.7117737003058104,0.9166666666666666,0.8799019607843137,0.7096774193548387,0.12890625,0.4921796165489405,0.7249666221628839,0.6358565737051792,0.5238600212089077,0.1140609636184857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708360337005,0.0049356440660788,0.0069486711300466,0.0093544324368245,0.0116728352381339,0.0140506638429583,0.015963790941619,0.0180044092430799,0.0200531479967293,0.0223832478737449,0.024633521271143,0.0269742989454661,0.0290712023363909,0.0314644248006428,0.0336198623422456,0.035539659075638,0.0373550124275062,0.0395907057834601,0.0418403951130751,0.0436549704555165,0.0577877113643247,0.0718293346731985,0.0853224774155641,0.0975050488051161,0.1098945147679325,0.1254166269879059,0.1387194313299029,0.1506850773440078,0.1614691836800102,0.1723116866397021,0.1856635071090047,0.1988549039980951,0.2106236470242692,0.2211335527682701,0.2318107326301433,0.2426879220635447,0.2537499860595313,0.2634418876535854,0.2723024397990086,0.2806555725959667,0.2885336171394197,0.295994195503856,0.3029499502817368,0.3096108441099272,0.3151294203426905,0.3212536849506001,0.3263858426600158,0.3322936293731222,0.3370991773012891,0.3415701890872649,0.3409292929292929,0.341873994306226,0.342301143958688,0.3425689423784579,0.3424295513258307,0.340931706495614,0.3402679998101536,0.3409400600876689,0.3417128394555031,0.3432870536033779,0.3452050165214779,0.3459115759448538,0.3474793805756607,0.3485781032391392,0.349404574989734,0.3507146222710853,0.3507419927806108,0.3538690099886206,0.3559735530177138,0.3583386735020826,0.3592847317744154,0.3606039513840552,0.3623262015110152,0.3670769230769231,0.3679406731317741,0.3745959535496229,0.3717849992299399,0.3757213520197857,0.3810727323785453,0.3787644787644788,0.0,2.1977870529052965,57.34829014972761,199.40458065517973,301.47456841479794,fqhc7_100Compliance_baseline,35 -100000,95723,42735,402.74542168548834,6830,70.33837217805544,5283,54.77262517890162,2118,21.844279849148062,77.33810060160408,79.72050205786475,63.31256206328344,65.07481567338402,77.07455284552633,79.45449633217392,63.21549016806988,64.97874463997923,0.2635477560777559,266.0057256908317,0.0970718952135598,96.0710334047974,105.0533,73.92562492257026,109746.95736656812,77228.4733267556,293.01362,186.31189195839647,305690.889336941,194222.23406271168,302.56622,145.84483627923032,313467.7663675397,150318.17961807144,3797.23389,1711.4319794081327,3939739.0595781575,1760796.0616311668,1291.25809,564.103700027354,1337827.5022721812,578339.8555691193,2086.60126,875.8712385968244,2154268.2114016484,893140.6584046944,0.38028,100000,0,477515,4988.498062116732,0,0.0,0,0.0,24991,260.6270175401941,0,0.0,27980,289.73183038559176,1912729,0,68662,0,0,0,0,0,51,0.522340503327309,0,0.0,0,0.0,0,0.0,0.0683,0.1796045019459345,0.3101024890190337,0.02118,0.325950689511074,0.674049310488926,25.100818761939085,4.517238777686416,0.3297368919174711,0.2157864849517319,0.2243043725156161,0.2301722506151807,11.130471454286983,5.50318409656204,22.703215318340163,12705.226072925854,59.54847629294635,13.35705741185356,19.56492753908253,13.270960902056144,13.355530439954125,0.5523376869203104,0.7780701754385965,0.6888633754305397,0.580590717299578,0.1175986842105263,0.7128787878787879,0.8966480446927374,0.8688524590163934,0.7062937062937062,0.1887550200803212,0.4988644965934898,0.7237851662404092,0.6304182509505704,0.5406006674082313,0.0992761116856256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0042807871779265,0.0066603041809653,0.0087708600117893,0.0109380246436238,0.013322604630318,0.0156049201395263,0.0177821810493631,0.0198803497468936,0.0220140275431321,0.0239442974630324,0.0260612408354383,0.0280905230471842,0.030245298951661,0.0324647189898489,0.0345985718271724,0.0367145356843336,0.0388118852969249,0.0407323082680971,0.0428455352306346,0.0572699645978884,0.0718196187624959,0.0855664910918515,0.0991575603958729,0.1107490482668438,0.1262468663063139,0.1402075419646457,0.1528035094444089,0.1633095754570808,0.1740613602231281,0.1872535711977248,0.2000649491231868,0.2121766197581654,0.2228410122870553,0.2329279700654817,0.2437788886795171,0.2538870520954338,0.2638268172147111,0.2725950833825601,0.2810324859242951,0.2887527078530635,0.2962637620051534,0.3029764443812503,0.3092356955254668,0.3154714136329369,0.321450621095004,0.3271594101123595,0.3322238800260148,0.3369738634152668,0.3412600901008019,0.3419517387262365,0.342694617376453,0.3428752732144116,0.3425327258262819,0.3419337559146505,0.3406903749635473,0.3401049843792124,0.3414361553506566,0.3419075490749773,0.3416867900903318,0.3423870167925166,0.3427055282749881,0.3436823863039596,0.3444010416666667,0.3457043017230992,0.3454791525688407,0.345930728544617,0.3496420047732697,0.3515690669655366,0.3547098152470625,0.3574110090913203,0.3571955719557195,0.3591711914123447,0.3620287455790503,0.3672558139534884,0.3703790911231457,0.3717522658610271,0.3738,0.37438958220293,0.3780395136778115,0.0,1.5677828006155243,58.70443728968901,200.6877005420284,299.1135014799571,fqhc7_100Compliance_baseline,36 -100000,95646,42680,403.1637496602053,6641,68.16803630052485,5173,53.457541350396255,2058,21.16136586997888,77.27782633283482,79.6898884811315,63.2892740309558,65.07279524471855,77.02809170860577,79.44012108943008,63.19778433309528,64.98365844084665,0.249734624229049,249.76739170142537,0.091489697860517,89.13680387189515,103.65256,72.90233590008144,108371.03485770446,76220.99815996637,290.68785,184.6802223282661,303304.2469104824,192472.30976534524,299.37173,144.01810363648622,309131.22346987855,147556.23854114042,3734.93133,1670.2672707278175,3864811.586475127,1706275.1952323574,1251.20999,541.8653917896121,1293133.5131631223,551563.4499067666,2025.89216,837.834839221175,2085213.3701357087,848670.4042723931,0.3799,100000,0,471148,4925.956129895657,0,0.0,0,0.0,24811,258.74579177383265,0,0.0,27762,286.3371181230788,1920163,0,68932,0,0,0,0,0,41,0.4286640319511532,0,0.0,1,0.0104552202914915,0,0.0,0.06641,0.1748091603053435,0.3098930883903026,0.02058,0.3214851057706144,0.6785148942293855,25.12815887962878,4.508880284732085,0.3156775565435917,0.2184419099168761,0.2379663638121013,0.2279141697274309,11.03934021858844,5.491661188895237,21.80738059694761,12724.379139133713,58.19001236716892,13.120421705418035,18.582397357220565,13.6362341399327,12.85095916459761,0.5374057606804562,0.7407079646017699,0.6944274341702388,0.5588952071486596,0.102629346904156,0.703962703962704,0.868421052631579,0.8542600896860987,0.7452471482889734,0.135593220338983,0.4822439526505404,0.6852791878172588,0.6343723673125526,0.5082644628099173,0.0943796394485683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024015564517763,0.0045736654226837,0.0066899478204373,0.0090246653861398,0.0113840988860064,0.0134778578050345,0.0155532891381947,0.017731112177883,0.0198338822855506,0.0217985884184755,0.0238974358974358,0.0260695393148785,0.0281733618702667,0.0302290107806155,0.0322633931797767,0.0341524967936783,0.0362268530512004,0.0381799869168388,0.0401673291847905,0.0420928607922258,0.0566173781284288,0.0703566005131696,0.0841161714231734,0.0970029885928357,0.1089420256210033,0.1242537155438878,0.1377992056580931,0.1501033432059832,0.1616436012063913,0.1730794005238974,0.1869060190073917,0.1991966741008596,0.2115476708750544,0.221599737389211,0.2319936593903768,0.2431300416629731,0.2525342741035145,0.2625900090009,0.2718040078977827,0.2795353096028385,0.2876534930508984,0.2965343930804745,0.3039801289254243,0.3111076491665368,0.316239004714001,0.3218725335438042,0.3275935480639182,0.3334606569900687,0.3388270076116132,0.3444354934562407,0.3443996276760782,0.3441023447095679,0.3441156520264541,0.3448385787978902,0.3450491138636736,0.3436131470981423,0.3433044583962489,0.3445853465477152,0.3459968441273326,0.3472212262459663,0.348285456459618,0.3480832985924999,0.3505770079667038,0.3521764468552472,0.3543565263513187,0.3554702795833659,0.3555917946957342,0.3563080041810522,0.3578076157999432,0.3598265895953757,0.3628721058434399,0.3637285782926699,0.3638779901278319,0.3640489193138989,0.3640417457305502,0.3660295708618824,0.3683556108175319,0.3648424543946932,0.3690140845070422,0.3636715724244772,0.0,2.4050499085795334,56.43425821646983,191.10400264875625,299.32190123887875,fqhc7_100Compliance_baseline,37 -100000,95820,42644,401.55499895637655,6805,69.8079732832394,5245,54.17449384262159,2071,21.27948236276352,77.39792083527668,79.70354286357038,63.37134666233783,65.07260032337743,77.14184523746633,79.44539476272095,63.27840665843844,64.98074607582114,0.2560755978103515,258.1481008494251,0.0929400038993932,91.85424755628446,104.34798,73.38748399506632,108900.0,76588.90001572356,292.26896,185.93540621266712,304459.13170528074,193486.94031795775,305.17411,146.87885269295623,314569.9332080985,150299.0204276377,3722.71481,1670.7274911336333,3850243.080776456,1708740.9738401517,1219.42156,532.1746120842645,1258052.1811730328,540825.143064353,2027.9397,841.2807739873156,2086016.364015863,853595.1253681963,0.38008,100000,0,474309,4950.0,0,0.0,0,0.0,24876,259.0273429346692,0,0.0,28241,290.8265497808391,1920920,0,68865,0,0,0,0,0,57,0.5948653725735755,0,0.0,1,0.0104362346065539,0,0.0,0.06805,0.1790412544727425,0.3043350477590007,0.02071,0.3146599777034559,0.685340022296544,25.11507979757062,4.480697339343694,0.3338417540514776,0.2146806482364156,0.2305052430886558,0.2209723546234509,11.079135383661434,5.566385427265339,21.95802563273704,12637.24863155552,59.13683199490304,13.299327785524156,19.84303593867371,13.311922894891314,12.682545375813849,0.5490943755958055,0.7619893428063943,0.6824671616219303,0.5847808105872622,0.1035375323554788,0.7174887892376681,0.9264305177111716,0.8329896907216495,0.7469879518072289,0.1265822784810126,0.491425646275915,0.6824769433465085,0.6248025276461295,0.5427083333333333,0.0976138828633405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022981291001862,0.0046813727973735,0.0069476139763679,0.0093823299452697,0.0114264801561483,0.0135352425149091,0.0160176071406737,0.0183830655445039,0.0202607434047857,0.0223547707229236,0.0244554638034547,0.0267145421903052,0.0290132018287358,0.0309641170235755,0.0329097224369479,0.0349900883786239,0.0370247762892463,0.0389897084581342,0.0408809602924073,0.0426597006848031,0.0569342304282063,0.0701884661242077,0.0836505090539251,0.09636451565424,0.1091071993253926,0.1246366087002484,0.137543472728815,0.1494162347406847,0.1609016130755261,0.1717791411042944,0.1849363012739745,0.1977135316958153,0.209521014067358,0.2203417626029059,0.2311667747930022,0.2421149354028053,0.252015477079872,0.2620460933108487,0.2715131176163806,0.2793560714408302,0.2872203918848621,0.2945801642657694,0.3018740762636713,0.3081718860315675,0.3136872219461045,0.3196767686706681,0.3253752216367405,0.3311412974482671,0.3363933747947402,0.3416759923638996,0.3417780999946297,0.3415092785769189,0.3415203362904019,0.3417106439426709,0.3411672251712582,0.3413706746480163,0.339449831033067,0.3403070168253084,0.3405231992628112,0.3415522505311646,0.3413501161309658,0.3422072018656864,0.3414148610703659,0.342583045680728,0.3428288631919465,0.3448248803327143,0.3464187327823691,0.3485900973768516,0.3492489839194204,0.3514139638919955,0.3545287356321839,0.3558028275009407,0.3576805307476397,0.3565485362095532,0.3582331616103797,0.3606714628297362,0.3570985740855548,0.3599265456029382,0.360989010989011,0.358974358974359,0.0,2.2301657918444304,58.99013953581143,195.7248185992042,295.7769830307485,fqhc7_100Compliance_baseline,38 -100000,95561,42777,403.7211833279266,6755,69.44255501721413,5233,54.27946547231611,2062,21.21158213078557,77.19945181010942,79.67106364748335,63.224607941291474,65.05400391512119,76.94595789716055,79.41697374066028,63.13104857584232,64.96237013736297,0.2534939129488691,254.08990682306865,0.0935593654491597,91.63377775821856,104.14074,73.26367282149249,108978.28612090708,76666.91727953087,292.43054,185.6413609238922,305534.26607088663,193784.51557004653,300.52402,144.7206950881173,311947.3111415745,149376.23534220926,3770.04621,1690.1331070696278,3914405.510616256,1737876.274913018,1298.2448,562.182921860321,1347984.345078013,577730.9172783054,2033.8164,844.1303720288463,2095695.9429055788,855919.0860363917,0.38116,100000,0,473367,4953.558460041229,0,0.0,0,0.0,24926,260.3363296742395,0,0.0,27830,288.6323918753466,1911497,0,68628,0,0,0,0,0,51,0.5336905222841954,0,0.0,0,0.0,0,0.0,0.06755,0.1772221639206632,0.3052553663952628,0.02062,0.3180665163472378,0.6819334836527621,25.42903755748809,4.533779021230482,0.3290655455761513,0.2113510414676094,0.2289317790942098,0.2306516338620294,11.094608832131778,5.657540980019482,21.884523107834447,12783.819329846716,58.905929017101045,13.133589432842593,19.13306721617336,13.22339850014972,13.41587386793537,0.5493980508312631,0.7649186256781193,0.6939605110336817,0.5609348914858097,0.1342170671085335,0.7253968253968254,0.9126760563380282,0.8787878787878788,0.76953125,0.1778656126482213,0.4935816763151271,0.6950732356857523,0.638763197586727,0.5042462845010616,0.1226415094339622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023719982564799,0.0050932408027434,0.0075351368917052,0.0097710265170001,0.0119416052449403,0.0142102795164019,0.0165943766903097,0.0189147762109135,0.021029471960704,0.0230069994568503,0.0250880236509028,0.0273821887242552,0.0292064015159317,0.0312451646844021,0.0333887918651634,0.0354625345464708,0.0371369014902465,0.0391378450282673,0.0411015978168031,0.0428641521646083,0.0576963306974603,0.0723086118130629,0.0855626215378146,0.0983857031464036,0.1103653831925845,0.1257434244701941,0.1389089825964852,0.1519465551097071,0.1643900191774071,0.1746284386896952,0.1875864005529635,0.2002452735994443,0.2126399162139163,0.2239419933744323,0.2342280694009094,0.2449954453553733,0.255091763652641,0.2636229251063541,0.2726931306049984,0.2815199411872817,0.2893900373541217,0.2969067085830918,0.3035337114649832,0.3103891578858839,0.3161754851914572,0.3225216316440049,0.3277943152844241,0.3330951135159969,0.3380665947799878,0.3431427058512046,0.343189988377436,0.3445367712014134,0.3449581196943373,0.3442314102285408,0.3447848916999821,0.343922014822104,0.3425060409512908,0.3427034874129796,0.3444228687299159,0.3457725738093528,0.3466882859782424,0.3474213886513256,0.3489167616875712,0.3505075742228825,0.3506889787615334,0.352349169644734,0.3529242789842583,0.3545000316235532,0.3565902426961529,0.3601990049751243,0.3628471433116677,0.3653601694915254,0.3677273583129354,0.3727896341463415,0.373710856928558,0.3773450486820233,0.3747531520583321,0.3780805449809657,0.3755135579293344,0.3822512485593546,0.0,1.902626219644419,55.61961624133438,204.02690756939765,297.3833786374112,fqhc7_100Compliance_baseline,39 -100000,95688,42820,403.634729537664,6747,69.31903686982693,5244,54.28057854694424,2149,22.10308502633559,77.33990302576841,79.72938135489234,63.32261558699434,65.08854018704514,77.07460553758148,79.46478822374988,63.22443330444197,64.99309462800804,0.2652974881869312,264.59313114246186,0.098182282552365,95.4455590371026,105.21522,74.0647201875179,109956.54627539504,77402.307695341,293.04636,185.9390415324413,305697.43332497287,193765.1020753672,301.26531,145.06712881612535,311953.9440682217,149343.5762646675,3762.56183,1695.6540456483742,3894838.757210936,1734887.965124322,1299.90391,569.9922624326276,1340547.1009949,577836.8802913601,2107.37334,881.9461596874418,2168628.2292450466,892044.8094612306,0.38066,100000,0,478251,4998.024830699774,0,0.0,0,0.0,24956,260.2207173313268,0,0.0,27916,288.9286012875178,1914192,0,68704,0,0,0,0,0,50,0.5016302984700276,0,0.0,0,0.0,0,0.0,0.06747,0.1772447853727736,0.3185119312286942,0.02149,0.3155223459749048,0.6844776540250952,25.121391875770968,4.496314208374397,0.3056826849733028,0.2315026697177727,0.2313119755911518,0.2315026697177727,10.964004979099563,5.50055670059681,22.818984627384847,12688.808034706788,58.921131417144544,14.250335485525063,17.946429109805198,13.3424455046065,13.381921317207784,0.5440503432494279,0.7479406919275123,0.6918278228321897,0.562242374278648,0.1268533772652388,0.6991492652745553,0.8979057591623036,0.8609625668449198,0.7178571428571429,0.1478599221789883,0.4932928372563908,0.6790865384615384,0.6403580146460537,0.5155412647374062,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021675276005266,0.0044295778217018,0.0066868930807399,0.0090602527119814,0.0111955095939721,0.0135181905169079,0.0154421657764912,0.0176471789009553,0.0199235361465489,0.0219144711253045,0.024183710082526,0.0264119567225769,0.0285767170195481,0.0305196477313694,0.0327374809065764,0.0347808105872622,0.037047013239956,0.039006061612555,0.041047726043357,0.0429878875059937,0.0574938369615175,0.0710726324825694,0.0842967750057701,0.0971081118042478,0.1095650522717922,0.1244987992340488,0.1378055508402648,0.1505939455869204,0.1625706259946383,0.1737969634585692,0.1870476477683956,0.1991040318566451,0.2110409031093323,0.2222513804603356,0.2331968386059925,0.2447964552755469,0.2537828066416711,0.2626823010442924,0.2714956770372387,0.2803271552612889,0.2879553894744149,0.2949314684006175,0.3014674556213018,0.3075936777270494,0.3135466634282591,0.3195529487147892,0.3262161925382661,0.3310725692544568,0.3365388353918532,0.3411876584953508,0.3417462115083859,0.3417641305395986,0.3417414367135037,0.3419928464891321,0.3425045036997335,0.3416765016936683,0.3405266660328928,0.3411784041416714,0.3432963279248505,0.3439524548910425,0.3457581379659302,0.346849965384235,0.3483409838814479,0.3480317431850789,0.3482988932558532,0.3502194586686174,0.3505747126436782,0.3519524832554025,0.3557868736767819,0.3586519715115585,0.3608737376045332,0.3630202774813234,0.3644298273353994,0.3665570259313088,0.3648177794519258,0.3650869254584425,0.3640432098765432,0.3690059683062358,0.3693820224719101,0.3782101167315175,0.0,1.9048539672017772,57.02075513934513,198.03136244540988,299.78826899161294,fqhc7_100Compliance_baseline,40 -100000,95772,42984,405.3794428434198,6930,71.00196299544751,5359,55.235350624399615,2197,22.564006181347366,77.331780499572,79.67293972877464,63.32970022966426,65.06272984152756,77.05946692298558,79.39940536867145,63.22972102939541,64.96474994109403,0.2723135765864271,273.5343601031843,0.0999792002688551,97.97990043352912,103.97926,73.1704940788909,108569.58192373556,76400.71636688268,295.10202,187.58236118420328,307418.34774255526,195152.07073487373,312.41992,151.02610283389015,321007.01666457835,153779.5110841352,3831.20355,1734.0497441176954,3958627.688677275,1769010.7701200838,1239.31624,546.2305254369201,1280426.951509836,556804.2878071258,2156.30594,903.562406003824,2217815.478427933,914872.7726989292,0.38105,100000,0,472633,4934.980996533433,0,0.0,0,0.0,25141,261.746648289688,0,0.0,28786,295.29507580503696,1916257,0,68840,0,0,0,0,0,73,0.7622269556864218,0,0.0,0,0.0,0,0.0,0.0693,0.1818658968639286,0.317027417027417,0.02197,0.3261790840738209,0.6738209159261791,25.098316276309824,4.480715865640425,0.3319649188281395,0.2144056727001306,0.2267214032468744,0.2269080052248553,10.924337411041716,5.398400180881591,23.475862088122643,12760.86632810862,60.716609719645,13.595286569711153,20.24883410281236,13.574947704179662,13.29754134294186,0.547676805374137,0.7702349869451697,0.6942102304665543,0.5695473251028806,0.1011513157894736,0.7156789197299325,0.9232804232804231,0.8524229074889867,0.7290076335877863,0.1129707112970711,0.4920516641828117,0.695201037613489,0.64,0.5257082896117523,0.0982599795291709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715117751329,0.0049166700458213,0.0074177803484631,0.0095595107481002,0.011533180778032,0.0135846597215857,0.0160274056401786,0.0181305892441504,0.0204146306556807,0.0222142601218201,0.0242239717882478,0.0262541840359775,0.0280813959466546,0.0300991975607494,0.032303675188094,0.0344253651879955,0.0363515850741013,0.0385102057749751,0.0404751018372267,0.0426384839650145,0.0576106351674266,0.0721824172375921,0.0855582460664381,0.0984395523564335,0.1109460285346989,0.1259854168868223,0.1401784957177987,0.1518615805089702,0.162931181693989,0.1736866354509316,0.1873358308573397,0.2004153911058706,0.2128073781635072,0.2236806125239267,0.233625006879093,0.2448753462603878,0.2551330119621496,0.2646883471883191,0.2734511467525691,0.2808048188356007,0.288668378322115,0.2959052429727328,0.3035625517812759,0.3099930470641828,0.3168292771830917,0.3228325089733943,0.3288479609096034,0.3342428028661039,0.3393477922482229,0.344091990483743,0.3439487870619946,0.3438024718544413,0.3434394688993192,0.3426896352055588,0.3425526213939087,0.3430738755892695,0.3423058599333016,0.3428905503771285,0.3442116641787203,0.3447584255578239,0.3454983257458896,0.346631240829599,0.3475788276428586,0.3479942435689872,0.3487436698892684,0.3493555246370724,0.3503471624490732,0.3520311313591496,0.3552051363459978,0.358338995243995,0.3615575351271926,0.3656912751677852,0.3691549926437664,0.3761956186362233,0.3828674652975851,0.3831417624521073,0.3846991136681698,0.3918200408997955,0.3914620535714285,0.4021437078205637,0.0,2.699752519688455,58.09201236166764,211.671372739634,297.6486593111982,fqhc7_100Compliance_baseline,41 -100000,95687,42985,405.3006155486116,6917,71.08593643859668,5399,55.84875688442526,2205,22.688557484297764,77.34192318165195,79.71805358359882,63.32298576779221,65.07545140162587,77.07023740401694,79.4458047447513,63.22392286627462,64.97909942444728,0.2716857776350139,272.24883884751705,0.0990629015175841,96.35197717858546,103.78456,73.06695779903136,108462.54977165132,76360.38103298395,292.72484,185.12841815457747,305344.017473638,192897.7898299429,305.56413,146.9405258490267,315740.1527898252,150831.75069493824,3911.66543,1755.802186568667,4047249.114299748,1794212.3972626005,1327.34453,574.2379578072942,1370231.3689424896,583179.2383576599,2180.6479,899.5209652676999,2244679.2772267917,910035.0032333084,0.38285,100000,0,471748,4930.115898711424,0,0.0,0,0.0,24915,259.78450573223114,0,0.0,28347,292.6938873619196,1919805,0,68889,0,0,0,0,0,51,0.5225370217479909,0,0.0,0,0.0,0,0.0,0.06917,0.180671281180619,0.3187798178401041,0.02205,0.3231086657496561,0.6768913342503439,25.22000366117029,4.474721013808794,0.3152435636228931,0.2172624560103722,0.2261529912946842,0.2413409890720503,11.208630209287405,5.7002697150017765,23.329146855075507,12834.038026016187,60.94033341838941,13.840782686766666,19.25036962369069,13.441507496905857,14.407673611026198,0.5460270420448231,0.763000852514919,0.6891891891891891,0.597051597051597,0.1158864159631619,0.7194139194139194,0.922279792746114,0.852017937219731,0.7545126353790613,0.14453125,0.4873574615765989,0.6848792884371029,0.6313694267515924,0.5508474576271186,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022883063495438,0.0044191727227577,0.0065431084330016,0.0085014321408982,0.0109119013962759,0.0130826087841827,0.0151499704341088,0.017440495032318,0.0196736062824655,0.021604464240004,0.023767533426298,0.0259909632368042,0.0281103431251542,0.0302106087458269,0.0320619354838709,0.0343529606419722,0.0366806165575536,0.038945805956051,0.0410474536435204,0.0430383176498785,0.0580382325289877,0.0720433935789231,0.0854719694345603,0.0985994044048784,0.1107370864770748,0.1255886804034246,0.1395822936685743,0.1514412322375849,0.1638161411010155,0.1746849573860587,0.1884070472041921,0.2013624893047838,0.2135540824434793,0.2241530245994922,0.2350001651055024,0.2456985852139905,0.2556763635551785,0.2658967345422618,0.2749126469120116,0.2840076056079905,0.2911777638917818,0.2983186886473458,0.3057771990055641,0.3126191703941767,0.3183022583076063,0.3233223607155626,0.3294710075033508,0.3350859994652883,0.3405273602158208,0.345807611468757,0.3470536618292271,0.347425683791956,0.3475354700130009,0.3480966854827037,0.3479715164939718,0.347211155378486,0.346995055154051,0.3482840918442926,0.3488009325128134,0.3495196006512676,0.3514392003607395,0.3526725438805496,0.3536487907465825,0.3540407558021973,0.3546861046076609,0.355173405117215,0.3558746289107102,0.3589606299212598,0.3593491935200478,0.3631668851547293,0.3642028655901751,0.364274322169059,0.3649042728540636,0.367126209155305,0.3693464974141984,0.3703266894680976,0.3660944857967492,0.3679871305047255,0.3758241758241758,0.3761329305135951,0.0,2.19577566513972,60.27753063544196,201.52232000976096,307.812961968743,fqhc7_100Compliance_baseline,42 -100000,95734,42766,402.0410721373807,6814,69.89157457120773,5355,55.29905780600414,2195,22.60429941295673,77.32392886815877,79.68953007417757,63.31606620966248,65.06549650716275,77.05161419496243,79.41507865871097,63.21697280436668,64.96830202989266,0.2723146731963481,274.4514154666007,0.0990934052958039,97.19447727009369,104.08398,73.26851275410776,108722.06321682996,76533.42882790623,293.27975,185.84742921925675,305713.7902939394,193494.1809798575,306.43237,147.23775161552314,315854.6911233209,150612.72241578178,3851.96003,1733.5962692742223,3981146.1967535047,1768386.0898679914,1258.18363,547.9437868413794,1299919.5583596216,558033.2473103068,2155.5839,894.5771868837903,2221208.828629327,907210.6992692387,0.38101,100000,0,473109,4941.911964401363,0,0.0,0,0.0,24909,259.5107276411724,0,0.0,28380,292.18459481479937,1917762,0,68928,0,0,0,0,0,61,0.637182192324566,0,0.0,0,0.0,0,0.0,0.06814,0.1788404503818797,0.3221309069562665,0.02195,0.3322643614054657,0.6677356385945343,25.256935313408075,4.556076077391039,0.338562091503268,0.2087768440709617,0.2240896358543417,0.2285714285714285,11.037526250960608,5.477092597665657,23.38739007497057,12770.29418131193,60.29101764752073,13.11326070368018,20.30921822843523,13.348144157144551,13.520394558260763,0.5398692810457516,0.7710196779964222,0.6811913954771097,0.5625,0.0972222222222222,0.7080838323353293,0.9187675070028012,0.841743119266055,0.7745454545454545,0.1417910447761194,0.4839512316496641,0.7017082785808147,0.6303558460421206,0.4994594594594594,0.0847280334728033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410748832639,0.004846444757627,0.007124444354233,0.0097136702635696,0.0120234365463644,0.0142260692464358,0.0165059233733662,0.0185368542468382,0.0207240642476663,0.0228217466980649,0.0249853901596317,0.0273311566972627,0.0294132765834952,0.031457294713856,0.0335063514503596,0.0352273549507457,0.0371851176665561,0.0393677087225474,0.0415119846097852,0.0437056562099538,0.059019439978284,0.0733087819882404,0.0860100040897222,0.0987623163717046,0.1105674424490398,0.1262918495795208,0.138870615198523,0.1515225724020442,0.1634250803721149,0.1745031195729079,0.1881075146126438,0.2014381487889273,0.2137157269900632,0.2243300276626685,0.2345171188808112,0.2453461201980044,0.2552279777713304,0.2644974009316141,0.2731008491122917,0.2815706506162224,0.2894486802159857,0.2964407891653779,0.3037344398340248,0.3099184962008907,0.3155633451394213,0.3213029364207512,0.3268241904331903,0.3322918393633708,0.3384603403294264,0.3442371311366944,0.3446171295858707,0.3445592638070667,0.3442759634272148,0.3442221255618384,0.3440736821711203,0.3433582421629252,0.3422650663537918,0.3428176931801371,0.3438361087815982,0.3439969958156003,0.344922695887121,0.3461142155114334,0.3455465502036702,0.3455654748553228,0.3469254725863692,0.3471295060080107,0.3464443045940843,0.348546272249319,0.3522404991491775,0.3545520057650733,0.3574675175611772,0.3599957226113457,0.362638756739613,0.3651414118188089,0.3650990099009901,0.3672709809100732,0.3657826153610302,0.3645103144402163,0.3630008066684592,0.3546533895059364,0.0,2.439834714053536,58.67282700651068,197.8505651355671,309.6977363643745,fqhc7_100Compliance_baseline,43 -100000,95807,42540,400.55528301689856,6870,70.68377049693655,5444,56.38418904672936,2195,22.566200799524044,77.4066300966336,79.74504357913997,63.35719594835807,65.0873315107855,77.13579602935211,79.47460194561135,63.25728777331098,64.99049324660194,0.2708340672814984,270.4416335286197,0.0999081750470907,96.83826418356034,104.40606,73.5322529814179,108975.39845731524,76750.39713321354,294.60136,186.22850056778225,307055.87274416274,193940.0676023487,304.82948,146.2581144065998,316085.5887356874,151023.90702860375,3888.89211,1744.3953622594893,4027263.101861033,1789242.139896259,1327.13883,571.7258968332249,1374444.6439195464,586087.7734038486,2149.32304,900.8226587755298,2211228.803740854,910563.1910809708,0.37856,100000,0,474573,4953.427202605238,0,0.0,0,0.0,25056,261.0560814971766,0,0.0,28156,291.78452513908167,1920346,0,68900,0,0,0,0,0,61,0.6366966923084952,0,0.0,0,0.0,0,0.0,0.0687,0.1814771766694843,0.3195050946142649,0.02195,0.3173329644487481,0.6826670355512519,25.12653048730217,4.567707363939241,0.3304555473916238,0.2112417340191036,0.230712711241734,0.2275900073475385,11.212097479888154,5.677336967329258,23.310317179149035,12671.24706141222,61.030695568101805,13.413925193218862,20.194338153712597,13.958017400069204,13.464414821101148,0.5505143277002205,0.7747826086956522,0.6803779877709839,0.5859872611464968,0.1178369652945924,0.6968325791855203,0.9380530973451328,0.8461538461538461,0.7093425605536332,0.10546875,0.503399708596406,0.7065351418002466,0.6263817243920413,0.5491209927611168,0.121057985757884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002269641518228,0.004735251769382,0.0070021615368222,0.0091035631915304,0.0113098931052369,0.0134518645241441,0.0157929079749597,0.0181799622314091,0.0203401610858988,0.0225039911580498,0.024647959497407,0.0267915777376457,0.0287881435193274,0.0309968189913423,0.0329965982888362,0.0352116311968856,0.0371600302080423,0.0389683090926054,0.0409441783632717,0.0426869898384141,0.0568685761986748,0.0699637109003252,0.0833499292489911,0.0960032789297237,0.1086878648039277,0.1242048312445844,0.1369485488965678,0.1489483869595729,0.16081013306585,0.1721674111686002,0.1857817661426558,0.198276328168085,0.2102895148669796,0.2207854615351011,0.2308807857527383,0.2426197220501018,0.2523141435995806,0.2622425577839734,0.2716714491487938,0.2802665170751812,0.2880789339749225,0.2952667079714295,0.3019939648541506,0.3081751964730688,0.315105938380795,0.3216971131326578,0.3271882475233885,0.3323404742811318,0.3370531663944837,0.342316991003131,0.3422525523621994,0.3414103288195831,0.3416460963396572,0.341937350792158,0.3422034578619531,0.3413072776280323,0.339595192915876,0.3397849814808745,0.3411582459485224,0.3421974777210551,0.3436692990007111,0.3445658174934932,0.346398260796856,0.3462483251451541,0.3461307594420034,0.3471012042552084,0.3497952917093142,0.3527696793002915,0.3549970203666702,0.3572532392915164,0.3593927548747784,0.3626786659608258,0.3654847819265767,0.3664047151277014,0.3707144848090681,0.3712448860315605,0.3715988994191379,0.375875175035007,0.3749309773605743,0.3815028901734104,0.0,1.7320895227070616,58.85936961786823,204.98525207115557,312.7729352821624,fqhc7_100Compliance_baseline,44 -100000,95694,42614,401.69707609672497,6847,70.42238802850753,5380,55.68792191777959,2207,22.72869772399524,77.29491858535671,79.70038842295463,63.29396199958445,65.0756375507567,77.02520727054234,79.42867737189577,63.1952819799628,64.97858098727242,0.2697113148143728,271.7110510588583,0.0986800196216535,97.05656348427284,104.4626,73.49815217256356,109163.16592471836,76805.39236792648,294.00872,186.3832958187829,306645.5890651451,194180.31910023725,307.68045,147.62814075361726,318945.59742512595,152159.5387642919,3879.05265,1742.0420494383136,4016419.796434468,1783381.5204476654,1323.51883,574.2704469914935,1369490.9816707422,586584.4695070109,2173.90364,901.552046057415,2240258.5533053274,914707.504472818,0.37996,100000,0,474830,4961.962087487199,0,0.0,0,0.0,24950,260.1626016260162,0,0.0,28490,295.17002110895146,1917144,0,68832,0,0,0,0,0,55,0.5538487261479298,0,0.0,0,0.0,0,0.0,0.06847,0.1802031792820297,0.3223309478603768,0.02207,0.3282379099499722,0.6717620900500277,24.89297000715087,4.498582453855504,0.3187732342007435,0.2171003717472119,0.2302973977695167,0.2338289962825278,11.173916266813968,5.688888587054668,23.466906082210564,12708.851660858449,60.83271219246704,13.704410429022596,19.406942206593666,13.938938025570144,13.782421531280628,0.5566914498141264,0.7773972602739726,0.7043731778425656,0.58272800645682,0.1248012718600953,0.7119645494830132,0.935483870967742,0.8440366972477065,0.7331081081081081,0.124,0.5044709388971684,0.7035175879396985,0.656763096168882,0.5355249204665959,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023112715034415,0.0047997402254761,0.0070278779261666,0.0092318641655228,0.0115944094383989,0.0137290675037966,0.0160210620841667,0.0180319159804662,0.0202561689241723,0.0224241430883648,0.0242396266092219,0.0261349277282953,0.0285661363683138,0.0306403240268373,0.0327115827286146,0.0345512270287599,0.03668355768334,0.0386432301670525,0.0407065652730242,0.0427862667027996,0.0569070872721575,0.0708355580681972,0.0839411079512661,0.0964731381915363,0.1087385400951607,0.1247050607865751,0.1382655769026642,0.1506404454902629,0.1622285860830911,0.1731456346098134,0.1867001335803852,0.1994374120956399,0.2116655794737986,0.22286345104983,0.2336988199584291,0.2446848562696549,0.2534560669456067,0.2628072386783109,0.2716133501402469,0.2800403595670519,0.2881412854661262,0.2955705389333708,0.3032028891125451,0.309387559234599,0.3159161641703948,0.3219956048297488,0.3263760921615082,0.3306331435558443,0.3362640493085409,0.3414972090629577,0.3414394398438026,0.3417580452100216,0.3422688258424591,0.3424386152644821,0.3427547119289529,0.3419359791202886,0.3412824505099933,0.3420276482509762,0.3436466171857591,0.3449178681586686,0.3463480817064898,0.3478036072941317,0.3494006362314871,0.3500326187208962,0.3505582524271844,0.3520286082406458,0.3543051120508615,0.3556691213814119,0.3589154411764705,0.3588830659679161,0.3625184229918939,0.3634222079451761,0.365178854067743,0.3643535539215686,0.3684559310801855,0.3690561529271207,0.3608342278791596,0.3658437053662517,0.3716401535929786,0.3756171667299658,0.0,2.031507378326737,59.95331732050001,204.23375661759115,304.68513281836096,fqhc7_100Compliance_baseline,45 -100000,95714,42940,404.84150698957313,6933,71.09722715590196,5406,55.833002486574586,2157,22.159767641097435,77.3593554540744,79.72962111013899,63.33143217950936,65.08343122922916,77.09659109171373,79.46733126682123,63.2357478774257,64.99042054634559,0.2627643623606701,262.2898433177596,0.0956843020836615,93.01068288357328,104.46062,73.46424613938346,109138.28697996114,76753.91911254724,293.99118,186.2573717615942,306514.05228075304,193956.00618675863,311.22322,150.05399148016755,320355.8309129281,153169.0902266952,3925.34062,1773.1515713826054,4059487.608918236,1811093.923466409,1314.93682,580.2479754003433,1357652.4332908457,590131.139694949,2132.239,883.6902588515984,2193452.2431410244,895077.58461531,0.38249,100000,0,474821,4960.83122636187,0,0.0,0,0.0,25029,260.8395845957749,0,0.0,28772,295.8396890736987,1917433,0,68802,0,0,0,0,0,59,0.6164197505067179,0,0.0,0,0.0,0,0.0,0.06933,0.1812596407749222,0.3111207269580268,0.02157,0.3167123287671233,0.6832876712328767,24.98595237772533,4.437961543592101,0.3209396966333703,0.2082870884202737,0.2360340362560118,0.234739178690344,11.045587864251027,5.596049993546319,23.01690463040345,12860.412494940318,61.051206866492485,13.155521612627076,19.5493540238739,14.286687482675784,14.059643747315729,0.5449500554938956,0.7646536412078153,0.700864553314121,0.579153605015674,0.1024428684003152,0.7216876387860843,0.9237057220708448,0.8790697674418605,0.7245901639344262,0.1485943775100401,0.4860665844636251,0.6877470355731226,0.6421455938697318,0.533470648815654,0.0911764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194101203257,0.0046225430068831,0.0068292286929079,0.0089476143080579,0.0110226452314857,0.013244830850988,0.0153014934502268,0.0174244125512933,0.0195152370145469,0.0215606380147013,0.023955534589905,0.0263357916144538,0.0287051803076289,0.0308884286877054,0.0330626270548051,0.0353225756432388,0.0373437969126919,0.0389996992044476,0.0408770051252196,0.0429986562919908,0.0577547589461923,0.0722254782936325,0.0853858095917425,0.0986109504631917,0.1109623130944598,0.1263474130726836,0.1392720713073005,0.1525800853818228,0.1645456002564513,0.1757245404895007,0.1892931404130619,0.2018615725959197,0.2145257959601013,0.2255350343559893,0.2360851082575273,0.2465238507085357,0.2563037409268565,0.2654353621362608,0.2751492046202373,0.2837619565839968,0.2918763812234602,0.2995615317158726,0.3061181060471715,0.312379561694335,0.3193102946172887,0.3258516886027012,0.3308183183183183,0.3361816840873833,0.341580248831579,0.3460173839640186,0.3472231562806838,0.3471964352023765,0.3476377952755906,0.3479664485631107,0.3474010561917759,0.3472937651896122,0.3462322113941845,0.3465572051256841,0.3471167465911224,0.3488716439211489,0.3495910557514819,0.3505136274568018,0.3526219473717423,0.3532983963473606,0.3544701306857984,0.3553967755443886,0.3573492803799822,0.3597659338921398,0.3604544492272952,0.3628621458134352,0.3651469376544905,0.3661362665527552,0.3671337579617834,0.3669514800122063,0.3687382297551789,0.3705150976909414,0.3731640146878825,0.3819024586860137,0.3808871851040525,0.388382687927107,0.0,2.514456679287437,59.22333192879218,208.0463968600771,303.3811245515004,fqhc7_100Compliance_baseline,46 -100000,95881,42787,402.6136565117176,6771,69.37766606522669,5314,54.7762330388711,2100,21.453676953723885,77.4394230829848,79.72070243153621,63.39129033748679,65.07754590419873,77.18389668452232,79.46844728129479,63.29726663554105,64.9882238815491,0.2555263984624787,252.25515024142453,0.094023701945737,89.32202264962541,103.82702,73.06615536545017,108287.37706114873,76205.04100442232,292.7839,185.9888277781505,304717.56656689016,193334.6312388799,305.96509,146.75478139742492,315649.6281849376,150281.44676106994,3805.47756,1709.247792833124,3923851.1488198913,1737568.395024169,1272.5439,552.4296097590988,1308840.1455971464,557796.1791995224,2055.4271,851.6508679260586,2101870.193260396,851328.4280374215,0.38144,100000,0,471941,4922.153502779487,0,0.0,0,0.0,24866,258.6643860618892,0,0.0,28406,292.790020963486,1925019,0,69110,0,0,0,0,0,67,0.6883532712424777,0,0.0,0,0.0,0,0.0,0.06771,0.1775115352348993,0.310146211785556,0.021,0.3218926553672316,0.6781073446327683,24.993709540321312,4.584871817363817,0.3340233345878811,0.2090703801279638,0.2346631539330071,0.2222431313511479,11.288628045407384,5.934964181310885,22.092779755984065,12751.991413512487,59.62377284250312,12.899014760968942,19.99903377544942,13.856543912408243,12.869180393676515,0.5639819345126083,0.7686768676867687,0.7059154929577465,0.595028067361668,0.1253175275190516,0.7253184713375797,0.9146341463414634,0.8801955990220048,0.7482993197278912,0.1377777777777777,0.5140463282405126,0.7075351213282248,0.6537335285505125,0.5477439664218258,0.1223849372384937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021056894108119,0.0044894401880903,0.0068371559865691,0.0091482297515458,0.0113531259211074,0.0135731873588246,0.0159103641456582,0.0181660546715626,0.0204732131911241,0.0226477628429386,0.0247648517387651,0.0267183796595561,0.0287528773429792,0.0308002717671038,0.032692406825094,0.034592428904814,0.0366967731255884,0.0387425006994166,0.0408118770764119,0.0427473133381188,0.0571556639668094,0.0712113771015976,0.0850725168857008,0.0976680211253556,0.1103683506858544,0.1264002533917542,0.1396735619035514,0.1512485389437891,0.163234196780727,0.1744718649001519,0.1883042192958882,0.2004300099399282,0.2125119492482836,0.2235407242291134,0.2337947945416359,0.2442833425567238,0.2546038257457529,0.2634121678557384,0.2726242677634635,0.2807519037709529,0.2888745133826978,0.2962582332881767,0.3033774278587556,0.309941450448401,0.3155230186480186,0.3218191222107285,0.327576720106045,0.3325118146247268,0.3370604963805584,0.3424406815368814,0.3434218487394957,0.3437242515792365,0.3434566305019956,0.3437486469713807,0.3436582109479306,0.3425403379980117,0.3418109924871491,0.3427143091296509,0.3442080297575375,0.3455780130467329,0.3471270821635785,0.3493680884676145,0.3499026361523482,0.3515828927113312,0.3520839824557198,0.3532659652047088,0.3545044149796996,0.3564071256378949,0.3582167649213381,0.3602999210734017,0.3620923913043478,0.3634049323786794,0.3637963544940289,0.3655840195181458,0.3685406019307212,0.371271772846576,0.3713178294573643,0.3749743168276145,0.3766666666666666,0.3684609552691433,0.0,2.482701563808057,54.65102732537423,211.8364259408035,298.18569028953067,fqhc7_100Compliance_baseline,47 -100000,95738,42929,405.9203242181788,6721,69.00081472351626,5276,54.523804549917486,2193,22.49890325680503,77.34647984393533,79.6972498401573,63.33814763576003,65.07472995959974,77.07492199979062,79.42771001782314,63.23771326407807,64.97787911334692,0.2715578441447093,269.53982233415275,0.1004343716819633,96.8508462528206,104.38846,73.46646720551897,109035.5553698636,76736.99806296243,294.35411,186.77480532946265,306889.03047901567,194520.58255808835,302.65908,145.250137393075,312873.5507322066,149222.01042398627,3829.56135,1724.3560069822038,3958075.2888090415,1759151.8278867367,1305.52632,572.3445386512125,1346922.2774655833,581101.2018751306,2158.4513,904.717765571088,2216034.3437297624,911837.9382285024,0.38215,100000,0,474493,4956.161607721072,0,0.0,0,0.0,25109,261.67248114646225,0,0.0,27979,288.9134930748501,1916687,0,68806,0,0,0,0,0,59,0.6162652238400635,0,0.0,1,0.0104451732854248,0,0.0,0.06721,0.1758733481617166,0.3262907305460497,0.02193,0.3259123573340848,0.6740876426659151,24.85755251949706,4.538032146345331,0.3233510235026535,0.2173995451099317,0.2215693707354056,0.237680060652009,11.125455081309694,5.572859123465811,23.431279198199128,12703.017000166446,59.36057115214666,13.35864164437166,19.17613495870473,12.868238099551776,13.957556449518506,0.5432145564821834,0.7707061900610288,0.6805392731535757,0.5671514114627887,0.1259968102073365,0.693302891933029,0.8994252873563219,0.8812351543942993,0.6856060606060606,0.1637010676156583,0.4934376577486118,0.7146433041301627,0.6147859922178989,0.532596685082873,0.1151079136690647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0044906689373435,0.0064135740453212,0.008705633774202,0.0110134846543413,0.0130823424010425,0.0153312945973496,0.0176262260280264,0.0196256810213531,0.0215412652421856,0.0236062280261175,0.0256810297045963,0.0276458371887401,0.0295914058235227,0.0314998813466637,0.0335200727663621,0.0354506393332298,0.0375984313237262,0.0396157964220002,0.0416957450132805,0.0563049424735336,0.0702922213849116,0.0835230551329801,0.0962060190540284,0.1084950918887002,0.1241991076526188,0.1365029861354209,0.1486195959896975,0.1604372844804577,0.1714754238923067,0.1852103047723627,0.1986590245485022,0.2106023886890466,0.2215034258176612,0.2314101366279389,0.2421484950128967,0.2519488340452107,0.2618554845676235,0.2712449079169834,0.2796531540303089,0.2870515001099193,0.2951730429595667,0.3030525493167878,0.3097765463639307,0.3164904605662899,0.3222030556924593,0.3284968514878754,0.3337579131055038,0.3389553439373102,0.3437632191201353,0.3443638031513058,0.3448889011413133,0.3453414045633493,0.3456464762015088,0.3460204005658551,0.3460026413587641,0.3453152996020106,0.3459597205096588,0.3462737173779026,0.3467580333500322,0.3491896561437773,0.3500188182160331,0.3510488333438532,0.3520415038404528,0.3527465094932122,0.3536194578693002,0.3545237890142705,0.3557671020588886,0.3587788953590965,0.3604558495377749,0.3621361448544579,0.3647253863842986,0.3676637637258614,0.3695552147239264,0.3703422774248601,0.3790998324156093,0.3801475107559926,0.3802125919869174,0.3769382576825486,0.3793375394321766,0.0,2.308896981771844,57.72698367055402,195.81747501624136,304.1068050794295,fqhc7_100Compliance_baseline,48 -100000,95742,42791,403.1250652796056,6861,70.428860896994,5399,55.81667397798249,2147,22.080173800421967,77.41222784566315,79.76816521955521,63.350809200748486,65.08989454202973,77.14747248114378,79.50367080345977,63.25375978066701,64.99509113429599,0.2647553645193738,264.4944160954452,0.0970494200814826,94.8034077337354,104.00478,73.10798533934882,108630.25631384346,76359.36719449022,295.89081,187.9950965113099,308495.9683315577,195801.73436037468,305.36575,147.63562844978935,315378.92460988904,151399.83971565077,3879.55544,1747.993894632502,4013976.332226191,1787616.380097033,1326.08058,577.7201867689098,1371129.4311796287,589486.6900304038,2108.01896,878.2572604718856,2169758.099893464,891087.7056507982,0.38179,100000,0,472749,4937.73892335652,0,0.0,0,0.0,25309,263.76094086189966,0,0.0,28309,292.07662258987693,1918609,0,68755,0,0,0,0,0,57,0.595350003133421,0,0.0,0,0.0,0,0.0,0.06861,0.179706121166086,0.3129281445853374,0.02147,0.3151750972762646,0.6848249027237354,25.24046271655853,4.433589898264091,0.3315428783107983,0.2161511390998333,0.2222633821077977,0.2300426004815706,11.234223544478471,5.837482386217249,22.75627940611923,12835.797048748687,60.7706121904352,13.684565524176396,20.207849130356657,13.367326451428331,13.510871084473823,0.5478792368957214,0.7506426735218509,0.6921787709497207,0.575,0.1231884057971014,0.7085137085137085,0.8807588075880759,0.8464730290456431,0.7535714285714286,0.1490196078431372,0.4923997009718415,0.6904761904761905,0.6353211009174312,0.5206521739130435,0.116514690982776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0046419703035524,0.0068883658645457,0.0092208952798765,0.0116308624528512,0.0139868682241563,0.0160935238599995,0.0182239319204514,0.0203063841963802,0.0223848515864892,0.0246269574485529,0.0267512523610084,0.0287852619458837,0.0309252870603985,0.0329260994283591,0.0349682154116491,0.0371010831072545,0.0391351261620185,0.0410142848231551,0.0429497062377599,0.057942266534426,0.0726901747410275,0.0865501615407208,0.0998558911083762,0.111978644607869,0.127833393299329,0.1415305591815509,0.1539002108222066,0.1657636862971393,0.1761177051361851,0.1908124541808616,0.2031662840559622,0.2150220432155881,0.2259176948425166,0.2355798889574336,0.2464869181371516,0.2563391929193254,0.2658617077593683,0.274429643761569,0.2821024388565925,0.2896757827431629,0.2973169132796404,0.3054749926013613,0.311867900110243,0.3178505490234185,0.3234855671500203,0.3285399889961486,0.3338161121063129,0.3388551492440884,0.3445049739459971,0.3446933598206735,0.345116598079561,0.3455515764342391,0.3457992393684453,0.3455072378051485,0.3441973200810988,0.3442395587076438,0.3436979183686807,0.3446340177250072,0.3451849744893424,0.3462069222736088,0.3475771705128961,0.3492358831768862,0.3499442834856251,0.3519602668074283,0.3530314059900166,0.3545389970166216,0.356713050018804,0.3599383882937758,0.360802749575317,0.363417951042611,0.3664777242146527,0.3672110552763819,0.3704153694282026,0.3735873727468011,0.3765206094248258,0.3778990450204638,0.3831025486654625,0.38126540673788,0.3882938026013772,0.0,2.243957961929484,61.02919593466046,198.64556698382955,305.8557093540388,fqhc7_100Compliance_baseline,49 -100000,95740,42834,402.7261332776269,6841,70.32588259870482,5379,55.70294547733445,2196,22.634217672864008,77.32373385663094,79.6951364159907,63.321321634088775,65.07583689632193,77.0596248902363,79.42780971724513,63.22496384548327,64.98009128613577,0.2641089663946445,267.3266987455776,0.0963577886055091,95.74561018615668,104.85662,73.68436234821701,109522.26864424485,76962.98553187487,292.69723,185.6558512454068,305237.7480676833,193433.50871673992,300.11114,144.64947809598533,310488.7298934615,148804.86065085413,3938.59059,1761.8938146217135,4080553.290160852,1807003.284543256,1296.66221,560.5790815491262,1343374.0651765198,574538.5435023252,2168.60804,901.382575013986,2236831.6482139127,918492.6481646458,0.38167,100000,0,476621,4978.284938374765,0,0.0,0,0.0,24936,259.9540421976185,0,0.0,27802,287.4138291205348,1917644,0,68830,0,0,0,0,0,50,0.5222477543346564,0,0.0,0,0.0,0,0.0,0.06841,0.179238609269788,0.321005700920918,0.02196,0.3138888888888889,0.6861111111111111,25.34459889884247,4.550665589169346,0.323294292619446,0.202268079568693,0.2348020078081427,0.2396356200037181,11.024859067365105,5.45878313224701,23.426024246566417,12776.848147519362,60.43499749875549,12.73578539462948,19.58923364956945,13.96207532642241,14.147903128134155,0.5350436884179215,0.7683823529411765,0.679700977573318,0.5795724465558195,0.0993017843289371,0.7007633587786259,0.9287749287749288,0.8333333333333334,0.7389705882352942,0.1215686274509803,0.4816908331285328,0.6919945725915875,0.6289211935730681,0.5358224016145308,0.0938104448742746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002208713272543,0.0042897563053332,0.0067295980511571,0.0089628681177976,0.0113543871072765,0.0135888111318236,0.0157875413046138,0.0181283384228856,0.0203388790608734,0.0226637308617952,0.0248894996461937,0.026948752182397,0.029216604084152,0.0313575565219183,0.0334534119177134,0.0354285123539749,0.0374509336840906,0.0396430979924262,0.042171367970139,0.0440318412936567,0.0590421699955105,0.0729363991250562,0.085660337774048,0.0986736228713277,0.1102921793776821,0.1262739459550894,0.1389778730084646,0.1521193293046216,0.1629238079982914,0.1737606141178488,0.1865041770734648,0.1990892472769359,0.2110642369416779,0.2224736790317819,0.2329211678510923,0.2435110953625371,0.2542425796668376,0.2640205814946299,0.2733415720910194,0.2815006349896456,0.289105386633383,0.2966252220248668,0.3041000662063747,0.3110528144128604,0.3171469163236312,0.3231252695791484,0.3287839326855654,0.3336220622890262,0.3387669882767922,0.3432461341397388,0.3445696417500067,0.344944517196223,0.3457755323802938,0.3453067493552033,0.3445399430980292,0.3443460647260116,0.3434282636930972,0.3436001051317432,0.3449936801831039,0.3458905945636828,0.3469058127523711,0.3484532809492628,0.3488092729188619,0.3493699369936994,0.3503013579260765,0.3519355008141184,0.3520211603703065,0.3544022360564096,0.3559087522616809,0.3590434083601286,0.3623188405797101,0.3648706896551724,0.3651219200817056,0.3679208838754539,0.3706749858196256,0.3702550592743384,0.3696349473041087,0.3727199027158492,0.3707772589947816,0.3798688777477825,0.0,1.8937341705299875,57.90743693840684,202.0090668862198,311.9249117635932,fqhc7_100Compliance_baseline,50 -100000,95779,42625,402.1131980914397,6716,68.98171833074056,5246,54.18724355025632,2106,21.59137180384009,77.38153749659537,79.7223284475096,63.350937847410606,65.08255457382238,77.1198285642176,79.46348929572822,63.25432568531218,64.99013809336824,0.2617089323777719,258.8391517813733,0.0966121620984239,92.41648045413342,104.28154,73.38605667323237,108877.24866620032,76620.19510877371,291.4116,185.08627999452236,303636.1519748588,192625.05350287884,301.86889,145.1937456838565,311782.57238016685,148980.83988083398,3793.43313,1704.2613753146,3916571.868572443,1735329.8899702453,1276.92315,557.9493997213458,1316303.1249021185,565644.055295363,2074.3456,867.9647166213882,2127038.536631203,871599.6551424472,0.37913,100000,0,474007,4948.965848463651,0,0.0,0,0.0,24871,259.04425813591706,0,0.0,27853,287.47428977124423,1921879,0,68914,0,0,0,0,0,44,0.4489501874106015,0,0.0,0,0.0,0,0.0,0.06716,0.1771424049798222,0.313579511614056,0.02106,0.3251490207209764,0.6748509792790236,25.328821158337984,4.493472074568488,0.3187190240182996,0.2123522683949676,0.2361799466260007,0.232748760960732,10.919062575862617,5.453509345321089,22.475894923143063,12707.502927319463,58.95843237820869,13.048286176781971,18.769701367583465,13.703550659169377,13.436894174673872,0.5480365993137629,0.7666068222621185,0.6931818181818182,0.5803066989507667,0.1171171171171171,0.7063310450038138,0.9237057220708448,0.8725961538461539,0.6865671641791045,0.1538461538461538,0.4952986022871664,0.6894243641231593,0.6337579617834395,0.5509783728115345,0.1071800208116545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0045613963954832,0.006726593888235,0.0088865868397265,0.0110722492221973,0.0133147388458523,0.0152790801973335,0.0174833382663632,0.0196611416542336,0.0219984856856365,0.023804644108786,0.0260105520313686,0.0280693817538736,0.0302197236465476,0.0321402784940691,0.0342721937510332,0.036228734633056,0.0383542899791642,0.040058591923872,0.0420961662605943,0.0567319633893069,0.070694920927119,0.0843564231870079,0.0972267468132283,0.1096649769730948,0.125315746641724,0.1381470176777311,0.1509983626427371,0.1623000330832524,0.1731622612386648,0.1859251046790738,0.1984815383617053,0.2103598561010335,0.2214693957839291,0.2320976790232097,0.242654385226845,0.2532841180275219,0.262871531993345,0.272593247825446,0.2811520241664187,0.2892411942921899,0.2966041264831375,0.3034831168216559,0.310455128128332,0.316759552690052,0.3222695699295532,0.3280537046991612,0.3331806848827151,0.3377953265583533,0.3423714508024846,0.3428756005975693,0.3423890615972929,0.341829254539303,0.3414369594770485,0.3425898381722989,0.3419903470466559,0.3417084632058604,0.3422708797692408,0.3429457681426185,0.3436486149238832,0.345073587237389,0.3451166468960063,0.3470765875346028,0.3476963797048136,0.3494089037632726,0.3517860873198245,0.3537061860080426,0.3564670752789565,0.359268215750184,0.3624166402032391,0.362554704595186,0.3661199275748216,0.3695583296369051,0.3728800552528585,0.3733649289099526,0.3760714285714285,0.3801348865726548,0.3843977364591754,0.3772222222222222,0.3857692307692307,0.0,2.279010805044308,57.652614517336815,194.30699125554383,300.9605418258447,fqhc7_100Compliance_baseline,51 -100000,95863,42646,399.7684195153501,6830,70.14176481019788,5311,54.88040224069766,2182,22.44870283633936,77.37299817448195,79.6752026400126,63.35320242165369,65.05751076304786,77.11109038616061,79.4125415407565,63.25829648867803,64.96465634103721,0.2619077883213379,262.6610992561069,0.0949059329756636,92.85442201064598,103.9984,73.1990980973305,108485.7974400968,76357.43838351143,291.37704,184.7078263657565,303391.9760491535,192121.8716190888,302.08561,145.4500112153575,312277.9800340069,149498.6678450003,3857.09416,1723.8271253422693,3985801.67530747,1760671.2202367715,1308.10011,568.4765367475185,1349849.8482208983,578320.009986325,2153.75484,884.7954880790243,2216729.728883928,896162.1154980847,0.37988,100000,0,472720,4931.172610913492,0,0.0,0,0.0,24804,258.17051417126527,0,0.0,27937,288.5367660098265,1922166,0,68988,0,0,0,0,0,55,0.5737354349436175,0,0.0,0,0.0,0,0.0,0.0683,0.1797936190375908,0.3194729136163982,0.02182,0.3164029975020816,0.6835970024979184,25.22616457139121,4.554548928683981,0.3236678591602335,0.2074938806251176,0.2270758802485407,0.241762379966108,11.083308165898046,5.514781147942996,23.03555806001061,12727.948959348132,59.678409902523406,12.91614104323525,19.346189778624336,13.400926296218076,14.015152784445744,0.5415176049708152,0.7586206896551724,0.7068062827225131,0.5638474295190713,0.1129283489096573,0.6990668740279938,0.9176470588235294,0.8436018957345972,0.7126865671641791,0.15625,0.4911801242236024,0.6876640419947506,0.6622976098689283,0.5213219616204691,0.1021400778210116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0049155239340407,0.0070194658308227,0.0093414292386735,0.0118028587113433,0.0140268729641693,0.0164504194143487,0.0186041290348916,0.0209463670825286,0.0230728303354001,0.0253777982685313,0.0273938871618086,0.0296593186372745,0.0319087615283267,0.0339367448764999,0.0361019031981577,0.038196132796739,0.0402146994518532,0.0419933334025607,0.0441952163464039,0.0590983025399341,0.0724540761948548,0.0852294154619736,0.0972602883575381,0.1099023768653179,0.1256654554672976,0.1385551105177273,0.1510003614483447,0.1627338605534744,0.1732976158585588,0.1862294587992208,0.199063965930954,0.2109009890229322,0.2213585227459083,0.2314260563380281,0.2422245359089096,0.2530457872188504,0.2634391665354065,0.2725045372050816,0.2806828720931564,0.2885029026065638,0.2958998654734748,0.3026501118515274,0.3092102898359713,0.3151280401180227,0.3211989060536625,0.3259674733639653,0.3312295613889984,0.3368951403999585,0.3419513290111312,0.3419531323693892,0.3421592803317307,0.3424833465055888,0.3424260851938725,0.3425536030473016,0.3419233186675047,0.3415237310167718,0.3423041535226078,0.3432131685554587,0.3435817638747295,0.344642087308579,0.3457796060438256,0.3460344755274084,0.3469465392619777,0.3481385343812339,0.3491343345848978,0.3497998856489422,0.3521451104100946,0.3556557579173565,0.358272409408773,0.3595541401273885,0.3637912673056443,0.3654905935263191,0.3669971562524018,0.3677953205250143,0.3724720437782536,0.3744214748534403,0.3761865456046224,0.3796296296296296,0.3887171561051004,0.0,1.9315867941072813,56.75777630692661,201.25027286489163,307.1254619122145,fqhc7_100Compliance_baseline,52 -100000,95788,42696,402.4199273395415,6849,70.38459932350608,5345,55.18436547375455,2131,21.860775880068484,77.39816222968327,79.72865068384624,63.35848721039546,65.08018501534508,77.14041609834895,79.47119486414832,63.2651438221442,64.98943302557949,0.257746131334315,257.455819697924,0.093343388251263,90.75198976559308,103.25876,72.63642535738161,107799.26504363804,75830.40188476806,291.15935,185.031158890157,303365.0352862571,192570.16420653628,305.93073,147.61025815500776,315439.74193009565,151046.90199561333,3904.9544,1745.4230623046087,4036935.618240281,1782445.1416718264,1350.36227,589.1392538740668,1393628.0744978494,598932.479928662,2115.60408,875.2057384431666,2173524.63774168,884275.0671977728,0.38072,100000,0,469358,4899.966592892638,0,0.0,0,0.0,24757,257.82979078799013,0,0.0,28284,291.341295360588,1925469,0,69067,0,0,0,0,0,55,0.574184657785944,0,0.0,0,0.0,0,0.0,0.06849,0.1798959865517966,0.3111403124543729,0.02131,0.327902802706061,0.672097197293939,25.02112526593116,4.521429916214609,0.3128157156220767,0.2127221702525725,0.2278765201122544,0.2465855940130963,10.965710327336684,5.398008532418274,22.631762624267257,12714.947201799498,60.13537447861557,13.325485915057376,18.80307653959898,13.49368900656967,14.513123017389546,0.539756782039289,0.7484608619173263,0.6895933014354066,0.5944170771756979,0.1191198786039453,0.7079510703363915,0.914364640883978,0.8560606060606061,0.7464788732394366,0.1654135338345864,0.4852613326727768,0.6709677419354839,0.6379310344827587,0.5481798715203426,0.1074144486692015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685382106904,0.0041045078644397,0.0062390942661201,0.0086826712161832,0.0111015096833223,0.0131088810633663,0.0151729760024456,0.0173652205852344,0.019544539686756,0.0216390423572744,0.0238914843045652,0.0259722934838378,0.0280663891886336,0.0303111394724112,0.0322284653848136,0.0343716433941997,0.0362393056288342,0.0383454826366926,0.0401666943797805,0.0424038571681471,0.0574725836576687,0.0713994373385485,0.084835141793783,0.0978939403493284,0.1100078004764615,0.1256804608635907,0.1384861757749944,0.1505788219271365,0.1615817519729184,0.1726899450025193,0.1855799980618277,0.1982873268675597,0.2107898509797106,0.2215984797186606,0.2319144728167714,0.2430943504762326,0.253503383538278,0.2626572671771174,0.2721559908801143,0.2807146129180027,0.28806798473812,0.2953745806496861,0.3029481732214503,0.3098944290661586,0.3163983781290213,0.3220082259931532,0.327147448322433,0.3324772415196053,0.3373000971188086,0.3425118414629319,0.3428213487081391,0.3437822515171114,0.3437165247787112,0.3441197289918091,0.3445482866043614,0.3438909875051615,0.3435206276891926,0.3444542859954729,0.3459105518703412,0.346775489793367,0.3475532074340527,0.349051748030249,0.350230607966457,0.3512040387794308,0.3539269275028768,0.3545151373039445,0.3555063452857508,0.357313170609274,0.3578693509489357,0.3591223561968769,0.3586590143026327,0.3592181722134178,0.3611058985425658,0.3619809523809524,0.3640730972117558,0.3676840215439856,0.3672030651340996,0.3736799350121852,0.3805578569455951,0.3808980213089802,0.0,2.429072138653122,57.28587385921765,205.77357073642665,302.54495133165614,fqhc7_100Compliance_baseline,53 -100000,95885,42868,403.1704646190749,6971,71.6900453668457,5412,55.9420138707827,2202,22.67299369035824,77.3584022892406,79.64180335066175,63.35300198276878,65.04232423061852,77.09341400165533,79.3728382161877,63.25669076252322,64.9460697183008,0.2649882875852682,268.965134474044,0.0963112202455604,96.25451231771363,103.34632,72.75348586672591,107781.5299577619,75875.77396540222,292.41538,185.02309133633915,304472.70167388016,192471.5662891372,303.28005,145.9436511936076,312896.68874172185,149607.51822221794,3952.73968,1766.9680861977529,4089283.798300047,1809707.6458233849,1304.29208,574.2026993847062,1343035.9284559628,581653.3896988924,2173.5358,903.31305218596,2239377.003702352,920059.1935160974,0.38232,100000,0,469756,4899.1604526255405,0,0.0,0,0.0,24889,259.0603326902018,0,0.0,28041,288.9815925327215,1923386,0,69045,0,0,0,0,0,57,0.59446211607655,0,0.0,0,0.0,0,0.0,0.06971,0.1823341703285206,0.3158800745947497,0.02202,0.3239896584569329,0.676010341543067,25.260449423173416,4.552496952842042,0.3176274944567627,0.2115668883961567,0.229490022172949,0.2413155949741315,11.069751239814927,5.468939494725807,23.599712074047268,12824.40802036084,60.92014500327914,13.423713722189165,19.28930305430289,13.773076206960004,14.434052019827073,0.5465631929046563,0.759825327510917,0.699825479930192,0.5958132045088567,0.1110260336906585,0.7130111524163569,0.907651715039578,0.8625592417061612,0.7375886524822695,0.1641221374045801,0.4915170887632161,0.6866840731070496,0.6468774094063223,0.5541666666666667,0.0977011494252873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002480535390659,0.0047218084729103,0.0067957521477619,0.0090263887337672,0.0114962390729823,0.0137290222778575,0.0158930681771873,0.0180937324697842,0.0205221404286166,0.0228585448634723,0.0249060775742934,0.0271780361280269,0.0291676936981349,0.0313020758326989,0.0334710786384855,0.0353617741802263,0.0372703574975173,0.0391754500513011,0.041237862817384,0.0430910717629678,0.0581269285297306,0.072304638529043,0.0855925192933957,0.0984639291076509,0.1111778149915215,0.1261763680724991,0.1386581334237518,0.1508053798309499,0.1625737734660989,0.1737462083453916,0.1876440061155494,0.200657610106429,0.2122872236352964,0.2234743734082438,0.2334220131040851,0.244415184943405,0.2553526027030643,0.2649922424842039,0.2737945349984687,0.2822889219841906,0.289890293014859,0.2975078975078975,0.3042783028924739,0.3113918280189064,0.3173531808286816,0.324205590177084,0.3296560024069802,0.3345914034707435,0.34023737793476,0.3453597331780401,0.3463844035210887,0.3466977552737958,0.347125527798568,0.3470171421947225,0.3469004383218534,0.3456792020777943,0.345619776937498,0.3458401305057096,0.346486264018932,0.3474222930050283,0.3484310743056729,0.3496542294965026,0.3513314697660732,0.352698490997556,0.3542129138114082,0.3556315061702627,0.3568024201603927,0.3582512354033552,0.3620962356331939,0.3653647283430117,0.368226094114419,0.370181315467645,0.3720591955476853,0.3760518798733884,0.3758831392018331,0.3789397415771042,0.3843505477308294,0.3867788955040033,0.3968298109010011,0.3958171959721146,0.0,1.949147724087941,59.5981869241149,200.5829320123448,313.0613081532177,fqhc7_100Compliance_baseline,54 -100000,95727,42827,403.9612648469084,6773,69.62507965359825,5205,53.73614549709068,2073,21.22703103617579,77.38965647392791,79.75506999831622,63.34469261111818,65.09320386411581,77.13113728595263,79.50101776628513,63.248036131727964,65.00147100012536,0.2585191879752813,254.0522320310856,0.0966564793902193,91.732863990444,103.18638,72.6034410540053,107792.34698674356,75844.26656429774,290.90995,185.82024905308143,303211.21522663406,193431.3148103688,305.11241,147.2341803812545,315227.9398706739,151050.48466489537,3777.44037,1705.7207134669125,3902528.690964932,1738423.703057572,1292.56336,562.3291931533521,1332558.8287525987,569816.6477175698,2037.20816,857.0926841573777,2088023.943088157,858967.4131441906,0.38156,100000,0,469029,4899.65213576107,0,0.0,0,0.0,24843,258.8089044888067,0,0.0,28197,290.983734996396,1923164,0,68978,0,0,0,0,0,46,0.4805331829055543,0,0.0,0,0.0,0,0.0,0.06773,0.1775081245413565,0.306068212018308,0.02073,0.3261573096946672,0.6738426903053327,25.19636652672812,4.535067196223357,0.3239193083573487,0.2090297790585975,0.2366954851104707,0.2303554274735831,11.257782189184232,5.711503927451448,22.02104195738085,12731.63194077619,58.51616863971594,12.721421937514346,19.05786306911366,13.664653674062922,13.072229959025028,0.5554274735830932,0.7922794117647058,0.6868327402135231,0.5909090909090909,0.1192660550458715,0.7123287671232876,0.9183673469387756,0.8564814814814815,0.7366548042704626,0.1705426356589147,0.5024415317399126,0.7342281879194631,0.6283891547049442,0.5478443743427971,0.1052072263549415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.004906582322111,0.0070733415196013,0.0093768413353109,0.0117183923830449,0.0138894546047004,0.0161295255961909,0.0182827860066761,0.0202898847003025,0.0226014146356443,0.0248365075134791,0.0268255874834457,0.0287329735286558,0.0308297464835142,0.0329231689581549,0.0347867425925734,0.036728692284593,0.038635915631776,0.0404934884059326,0.0426052889324191,0.0568502161247885,0.0713201662113647,0.0846929461016273,0.0974085413970518,0.1104816162894972,0.1261278414199431,0.1385098571822677,0.1507907788586389,0.1621026999316473,0.1727388753633136,0.1863760687442121,0.198552402384533,0.2106762649383978,0.2222015639525346,0.2328237974182046,0.2435258412529629,0.2533632286995516,0.2622248701634479,0.2715249815686497,0.2801323063188857,0.288092263557283,0.2951026708452219,0.3020777899977531,0.3087057020012695,0.3149670353686817,0.3204952873775642,0.3259792266299587,0.3317557251908397,0.3373411332280692,0.3422902898149247,0.3430266982452363,0.3434843608153833,0.3436716880191468,0.3449670634462036,0.3457407352461205,0.3452721405741026,0.3443262803596542,0.345130135865117,0.3459360171437318,0.3461545300969147,0.3470901837974872,0.3483685598457118,0.3502668223130159,0.3512021371326803,0.3512523346583018,0.354291209648074,0.3560578097049888,0.3578362077089812,0.3596626844694308,0.3620689655172414,0.3636779924901547,0.3656744435505497,0.367807351077313,0.3679216638834067,0.3660606060606061,0.3692090062477897,0.370911303818652,0.371859296482412,0.3747270742358078,0.3752388230798624,0.0,2.3647885722853106,57.56091649564205,194.6112445080875,294.2059006026732,fqhc7_100Compliance_baseline,55 -100000,95762,42703,403.1348551617552,6788,69.53697708903323,5294,54.708548275934085,2228,22.90052421628621,77.34687979821054,79.70638381325948,63.33382307926016,65.08147732624872,77.0665547684752,79.42509369985538,63.229494549206784,64.97901875191552,0.2803250297353372,281.29011340409704,0.1043285300533725,102.45857433319829,103.81008,73.02641715428322,108404.25220860048,76258.24142591342,290.72329,184.7060134942805,303001.5663833253,192292.436973205,302.82554,146.40772657550167,312487.2809673984,150030.23471793375,3815.82188,1731.9127959393531,3946826.371629665,1770692.744449108,1315.69661,582.3103532642193,1357379.534679727,591536.8656296013,2186.58038,918.9634851740086,2249168.480190472,931114.1946252838,0.37962,100000,0,471864,4927.46600948184,0,0.0,0,0.0,24825,258.62032956705167,0,0.0,27930,287.9430254171801,1923808,0,69013,0,0,0,0,0,51,0.5325703306113072,0,0.0,0,0.0,0,0.0,0.06788,0.1788103893367051,0.3282262816735415,0.02228,0.322191011235955,0.6778089887640449,25.027671723507805,4.544535686132758,0.326218360408009,0.2068379297317718,0.2319607102380053,0.2349829996222138,11.12048288613995,5.660456354683638,23.730632337690626,12707.16304285292,59.81444700579983,12.922131444963735,19.489394574414543,13.615920753215672,13.787000233205871,0.5493010955799018,0.7844748858447489,0.690793283149971,0.5708469055374593,0.1245980707395498,0.7045790251107829,0.9134078212290504,0.8430493273542601,0.7289377289377289,0.187725631768953,0.4959390862944162,0.7218453188602443,0.6377829820452772,0.5256544502617801,0.1065149948293691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218718333265,0.0048675617571897,0.0071675126903553,0.0094311818449749,0.0116993570440302,0.0138897374798883,0.0160159037618513,0.0180277664352797,0.0203226268119645,0.0226481549739935,0.0247393296902713,0.0268194512896336,0.0287018850073528,0.0306879287965881,0.0327574462815035,0.0344542419136421,0.0363263573196367,0.0382692227893273,0.0402079002079002,0.0419651782739087,0.0566955432627074,0.070827841586644,0.0840244503391803,0.0966935026170306,0.1087948569320756,0.1247305237350467,0.1373904194536608,0.1497623579198077,0.1622411641080896,0.1727780098767019,0.1851505175047877,0.1975181866332299,0.2098611141298441,0.2210253777161148,0.2321481562894982,0.2428519244180254,0.2535919860782651,0.2629672949750326,0.2722060760183461,0.2807118057544889,0.2884412803148695,0.2959850169729603,0.3030801842663098,0.3094609830402763,0.3162888451539228,0.3224348554258411,0.3278241053765056,0.3330490567959064,0.3378931550857557,0.3426268010766876,0.3425766309325001,0.3425046131813049,0.3430547923975372,0.3431485869502398,0.3431819870699264,0.3421564870871331,0.3415855707357276,0.3422580379902968,0.3432327416511186,0.3449527829446273,0.3460375870679458,0.3472684744687599,0.3478388832828792,0.3480312837108953,0.3485885682494376,0.3497398433804593,0.3516455114582735,0.3550917984880249,0.3569481324128164,0.3597148235671086,0.3620657882613102,0.3645386266094421,0.3662842574888464,0.3684614204632612,0.3711194731890875,0.3737806328812753,0.3784866697488057,0.3779608650875386,0.3729054245952854,0.3744987971130714,0.0,2.1903437748894707,59.4822023859145,201.00612227852025,296.0162602226786,fqhc7_100Compliance_baseline,56 -100000,95757,42740,402.58153450922646,6713,68.9140219513978,5204,53.81329824451476,2157,22.22291842893992,77.36211040614715,79.72259538986422,63.32787542470121,65.07509092719746,77.10496058248636,79.46423423785143,63.23331470476304,64.98216307075238,0.2571498236607965,258.361152012796,0.0945607199381726,92.92785644508685,104.5605,73.50654348475905,109193.58375888968,76763.62405334237,291.39792,185.4527197442436,303774.04262873734,193134.40243976272,305.2245,146.2320894443324,314966.16435351985,149918.076701748,3773.85628,1696.4904890919872,3903205.791743685,1733791.7636224902,1272.35998,555.1002825933966,1312731.2363586996,563689.7068552653,2124.12214,874.4344504390004,2188927.82773061,887813.644398402,0.37978,100000,0,475275,4963.344716313168,0,0.0,0,0.0,24838,258.8218093716386,0,0.0,28226,290.9865597293148,1916107,0,68821,0,0,0,0,0,54,0.5639274413358815,0,0.0,0,0.0,0,0.0,0.06713,0.1767602296066143,0.321316847907046,0.02157,0.3186128803963199,0.6813871196036801,25.10325318947035,4.638828936915548,0.3395465026902383,0.1983089930822444,0.2269408147578785,0.2352036894696387,11.300510665812142,5.6501283556828135,22.57464598642087,12695.375996634602,58.60149645333545,12.173879442996403,20.012615423819835,13.00739374964691,13.407607836872304,0.5532282859338971,0.7916666666666666,0.6977928692699491,0.5825571549534293,0.1151960784313725,0.7093023255813954,0.9026548672566372,0.8524945770065075,0.7183673469387755,0.1632653061224489,0.5017884517118038,0.7373737373737373,0.6431852986217458,0.5470085470085471,0.1031664964249233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021883833318136,0.004461841117894,0.006963760024363,0.009256530883892,0.0115965617211738,0.0135047052592984,0.0157648930312238,0.0176223147921261,0.0199588961258064,0.0223130171213238,0.0244072524407252,0.0268299196745896,0.028579658854756,0.030728962717174,0.0327481396620945,0.0348720599638149,0.0366769179791453,0.0387197177984126,0.0407164092222614,0.0427994083703101,0.0571705932088391,0.0711513312758278,0.0843707067423154,0.0966354294849546,0.1086663009999578,0.1236964017515283,0.1362686329637685,0.1487522357550464,0.1607667567769716,0.1720051901815491,0.185799530384955,0.1985583791506125,0.2105486471490583,0.2215160101081926,0.2322136127498459,0.2436594905432506,0.2538358458961474,0.2625413543987577,0.2713212599854757,0.2795798685084645,0.2870240672354514,0.2944548432381844,0.3024073285044737,0.308990178796273,0.3149270591664946,0.3205976994489034,0.3265088905584773,0.3316827902240326,0.3368914682488276,0.3420955348419635,0.3417178906502749,0.3421987769268911,0.3428249383585769,0.3428038518261473,0.3430779519952441,0.3426013917415162,0.3416666666666667,0.3424387681397334,0.3442273231504394,0.345397843713802,0.3458041827228852,0.3479014778325123,0.3499707504596356,0.3511070440139273,0.3524255523535062,0.3539138586531951,0.3543918534531801,0.3570822997456589,0.3598738391449098,0.361493979721166,0.363673506446341,0.3661822985468956,0.3675444660926403,0.3674179397973075,0.3702838998879342,0.3725281231497928,0.3720219914477703,0.3756773028296207,0.3758187772925764,0.3843152555598907,0.0,2.090894068245748,56.85719978001636,198.2003869108273,294.8185972987381,fqhc7_100Compliance_baseline,57 -100000,95764,42752,402.7713963493589,6822,70.04719936510588,5322,55.02067582807736,2162,22.17952466480097,77.32840490063373,79.68987776689862,63.31625382636724,65.06534432627672,77.06339632436871,79.42448823588771,63.219696946413855,64.9712629132183,0.2650085762650178,265.3895310109107,0.0965568799533826,94.08141305841866,105.1787,74.00359454271356,109831.14740403491,77277.05039755393,293.74637,186.7615518854396,306190.1340796124,194472.97719961533,303.02225,145.96350993766927,313137.59868008853,149908.19719477597,3868.2599,1725.403443993757,4001768.2218787856,1764125.2077959967,1321.235,566.797129927123,1367713.8799548892,579904.4003248842,2132.44188,882.4813176080772,2190175.347729836,891699.6758901061,0.38028,100000,0,478085,4992.324882001588,0,0.0,0,0.0,25036,260.8600309093188,0,0.0,28011,289.2736310095652,1912854,0,68604,0,0,0,0,0,44,0.4594628461634852,0,0.0,1,0.0104423374128064,0,0.0,0.06822,0.1793941306405806,0.3169158604514805,0.02162,0.3184093437152391,0.6815906562847609,25.339040874347173,4.529594546027275,0.3282600526118001,0.2089440060127771,0.2232243517474633,0.2395715896279594,11.093552747697403,5.60849512369344,22.90122487063834,12719.542117129604,59.62367821865474,12.83108396999994,19.71729674229371,13.172448961702871,13.902848544658228,0.5403983464862834,0.75,0.680022896393818,0.5791245791245792,0.1301960784313725,0.7049808429118773,0.9057142857142856,0.8392434988179669,0.7526881720430108,0.150197628458498,0.4869305451829723,0.678477690288714,0.629154078549849,0.5258525852585259,0.1252446183953033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218963752622,0.0047364043895413,0.007056410672948,0.0089839224374479,0.0112408699721267,0.0135776564537157,0.0159181758851362,0.0179993465920692,0.0199758735611032,0.0220074927835895,0.0241914817282558,0.0264390003490974,0.0284556607945371,0.0306429351296788,0.032454800627425,0.0344104027123129,0.0366333354035981,0.0385796067369119,0.0405387149404025,0.0427546269775967,0.0577214132874067,0.0720628379579755,0.085636691552722,0.0984085605566884,0.1108394887411356,0.1267519289715674,0.1397151613484766,0.1517560664112388,0.1632469959946595,0.1741909194243678,0.1874454724642676,0.2000194760930957,0.2120328564434531,0.2231894835845053,0.2334558823529411,0.2438829875610593,0.254218561671354,0.2636459810475611,0.2726364544546362,0.2811783848198735,0.2894456660108783,0.2964349209319734,0.303417083047195,0.3096480808226245,0.3155834366717728,0.3211686934214746,0.3260343378857995,0.3308818843442905,0.3364647264139926,0.3412136268731665,0.3423657944429458,0.3421854112977688,0.3422304402444704,0.343234800717302,0.3428575680461925,0.3422523103374167,0.3407182872831727,0.3414557796230394,0.342048004934126,0.3423163700175483,0.3429714049679878,0.3441360468799493,0.3448080791149849,0.3464323342823197,0.3469136695853535,0.3476056043496445,0.3475325418395079,0.3511077495193974,0.3525258202768214,0.3563922942206655,0.3596182822702159,0.361189275285373,0.3663229376257545,0.3688736681887367,0.3702796873528581,0.3758444944885623,0.3763194125745755,0.3780012312743689,0.3804591265397536,0.3876092136616362,0.0,2.1549802731909184,57.45283550076548,194.9284477746397,311.08294114794376,fqhc7_100Compliance_baseline,58 -100000,95722,43158,406.0926432794969,7037,72.12553018114959,5528,57.08196652807087,2237,22.91009381333445,77.31464774318667,79.68062690171763,63.30648041847581,65.05596149006891,77.03806407487869,79.40735821148967,63.20408239596471,64.95832704007208,0.2765836683079783,273.2686902279653,0.102398022511096,97.63444999683202,104.53982,73.57273046247391,109211.90530912433,76860.8370724326,297.95458,188.26029390078725,310565.752909467,195969.0185127632,313.66092,150.742447217172,323801.59211048664,154453.51007910378,3987.38295,1798.5280187302485,4118507.396418796,1832129.8262364035,1329.66744,577.2940361293463,1371710.756148012,585821.7520839064,2199.24908,920.5340634023204,2254536.323938071,922565.4402176072,0.38365,100000,0,475181,4964.177514051106,0,0.0,0,0.0,25348,264.09811746515953,0,0.0,28966,298.79233614007234,1912396,0,68681,0,0,0,0,0,56,0.5745805561939784,0,0.0,1,0.0104469192035268,0,0.0,0.07037,0.1834223901994005,0.3178911467955094,0.02237,0.3169678985702724,0.6830321014297276,25.046733103269617,4.489362838123489,0.3348408104196816,0.2054992764109985,0.2317293777134587,0.227930535455861,11.07002573590211,5.523275933583569,23.856136952124555,12873.254962837822,62.66064507980118,13.34290613161957,21.011641532789533,14.40345027339018,13.90264714200188,0.5504703328509407,0.7623239436619719,0.690977849810913,0.5909445745511319,0.1119047619047619,0.7083926031294452,0.9066666666666666,0.8412017167381974,0.743421052631579,0.1455938697318007,0.4966035904900533,0.6911957950065704,0.6404332129963899,0.5435005117707267,0.1031031031031031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028263181887251,0.0052012044894607,0.0075722203049188,0.0097246214815567,0.0118927717584821,0.014263009902604,0.0166392915803756,0.0189091503134508,0.0211804632715229,0.0233303304532983,0.0254067853957122,0.0275895350747494,0.029922750136293,0.0319625763773686,0.0337637671734844,0.0359040628553706,0.0377239308273791,0.0398360485628307,0.0418425704481647,0.0437260376729454,0.0583782316334628,0.0727190888916802,0.0856240557327513,0.0984044511290848,0.1109669798884213,0.1272640710960643,0.1404613049431595,0.1525864088421321,0.1640458806802997,0.1750067070880506,0.1890644378538689,0.2019462083613272,0.2133907169317934,0.2242851349722164,0.234941884828301,0.2464601819050051,0.2565838050701452,0.2662063674721902,0.2747514051015997,0.2834953240964132,0.2917990952325716,0.2993001090282418,0.3059489077065395,0.312680149884704,0.3191080400481746,0.326213304705142,0.3314257807608505,0.336210078792276,0.3419045769405062,0.346759192073774,0.3469986936202879,0.3462221426899941,0.3461923071506035,0.3463478801370358,0.3463135801366498,0.3453457140664569,0.3449731754547475,0.3456572576660848,0.346405004713343,0.3474720357941834,0.3485688511342066,0.3498939775271992,0.3515928108550217,0.3513676859023145,0.3519616348563717,0.3529995300997233,0.354826707878996,0.356699145460852,0.360015467904099,0.3622050382653061,0.3634072580645161,0.3659397049390635,0.3685483357729269,0.3665074718841473,0.3691077040281877,0.370760934691432,0.3703473945409429,0.3710652491140296,0.3733108108108108,0.3691275167785235,0.0,2.5659218912367323,61.8975186487823,212.9167418100899,307.3482837119297,fqhc7_100Compliance_baseline,59 -100000,95824,43131,405.9212723326098,6831,70.09726164635164,5358,55.4245283018868,2121,21.800384037401905,77.3504688262772,79.68239080833345,63.33176974345843,65.0598056493603,77.08442521722964,79.4149084065892,63.23362624782596,64.96358033994166,0.2660436090475571,267.4824017442461,0.0981434956324704,96.22530941864228,104.48064,73.5114040565059,109033.89547503756,76715.0234351581,294.19427,186.555736463047,306534.16680581064,194205.04413524517,308.8648,148.0612263656587,319288.72724995826,152235.9618820734,3854.56549,1734.194409341889,3991208.778594089,1778707.1852925727,1261.78837,553.0008680883924,1307212.389380531,567577.2727192348,2079.00062,869.0290018469988,2139331.941893471,881869.2079317372,0.38323,100000,0,474912,4956.086157956253,0,0.0,0,0.0,25047,260.86366672232424,0,0.0,28555,294.9574219402237,1916806,0,68905,0,0,0,0,0,57,0.5948405409918184,0,0.0,0,0.0,0,0.0,0.06831,0.178248049474206,0.3104962670180061,0.02121,0.3262894480745169,0.6737105519254831,25.15695516962561,4.422502021667862,0.3215752146323254,0.217431877566256,0.236468831653602,0.2245240761478163,11.071432075762436,5.638371068275386,22.57444320828111,12834.777657811195,60.54088592299973,13.7427584354751,19.504345792042937,14.11446572958084,13.17931596590084,0.5516983949234789,0.7570815450643776,0.697620429483459,0.5785319652722968,0.1155444721529509,0.7086438152011922,0.916243654822335,0.8341463414634146,0.7569444444444444,0.12,0.4992529880478087,0.6757457846952011,0.654988575780655,0.526046986721144,0.1143756558237145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0046845056426999,0.0070435400385669,0.0094286904483708,0.0114124132880362,0.0137805300360554,0.0159604303707103,0.0181359584180052,0.0202959009437338,0.0222859190254389,0.0246100839819115,0.0268116611728946,0.0290315614105451,0.0311341352887863,0.0333133934280822,0.0354216394391229,0.0372674665369206,0.0390320305368849,0.0412171852590883,0.0433076194342942,0.0578865011475067,0.0720782886895426,0.0849873200176052,0.0975825007091751,0.109420763185065,0.1255257540210935,0.1388264483840868,0.1518749002712621,0.1634958255930647,0.1746021539945346,0.1878585034599283,0.2004757013892643,0.2125063824702061,0.2232387823140405,0.2338471016645213,0.2451830923494543,0.2553462208134291,0.2649319662813861,0.274338795580236,0.2834673631635622,0.2917476851851852,0.2989297619743845,0.3066762927106387,0.3136176230883551,0.3203900019451469,0.3258557291281064,0.3312945717974106,0.3365705691927302,0.3416851469997017,0.346345009914078,0.3458459877168118,0.3457367549668874,0.3464612516945323,0.3464579471733086,0.3465025231850187,0.3462795586723342,0.3452360160678278,0.3454635270871068,0.3461314518614926,0.3473853868194842,0.3491607525064774,0.3502159014380224,0.3507589595011652,0.351096756829498,0.3516390672524501,0.3528119278053884,0.3552364913081951,0.3577793872217149,0.3614656381486676,0.3635027216019706,0.3642603873079371,0.36467221368382,0.3665053121267366,0.37122476855365,0.3702415640567723,0.3707110010611956,0.3714329314817641,0.3691220988900101,0.3671960569550931,0.3723076923076923,0.0,1.86523670040218,59.39468208509676,205.53862851433317,301.9618827607995,fqhc7_100Compliance_baseline,60 -100000,95718,42991,405.1484569255521,6902,70.80173008211621,5380,55.63216949790008,2238,22.984182703357774,77.30949638025908,79.66979162654597,63.31695901961641,65.05977117531094,77.03376760648956,79.39339570414097,63.21610989615488,64.96129107822094,0.2757287737695151,276.3959224050012,0.1008491234615363,98.48009709000394,103.63298,72.99150636818655,108269.06120061011,76256.82355271376,294.73052,186.483352126782,307361.1232996929,194271.45586700723,305.09187,146.49202361874055,315115.9656490942,150254.92813215678,3936.23657,1758.890087799615,4076811.498359765,1802060.1640230797,1320.74261,571.0750087866489,1368243.1413109342,585038.7270802238,2202.3387,911.080654386077,2265470.6324829184,923370.0482319992,0.38338,100000,0,471059,4921.320963664097,0,0.0,0,0.0,25023,260.83913161578806,0,0.0,28188,290.85438475521846,1919563,0,68940,0,0,0,0,0,52,0.5432625002611838,0,0.0,0,0.0,0,0.0,0.06902,0.1800302571860817,0.3242538394668212,0.02238,0.3265614275909403,0.6734385724090597,25.403113900838196,4.646315094160712,0.3293680297397769,0.204089219330855,0.2301115241635687,0.2364312267657992,11.261465206280146,5.631080053995066,23.758687630778898,12796.66932968642,60.90161701617163,12.873179424874374,20.04549206328722,13.978627036300669,14.00431849170937,0.5397769516728624,0.7622950819672131,0.6817155756207675,0.5823909531502424,0.1084905660377358,0.7012791572610986,0.9154078549848944,0.8609271523178808,0.712280701754386,0.1384615384615384,0.4867933843495433,0.6962190352020861,0.620166793025019,0.5435466946484785,0.1007905138339921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812387964472,0.0047441407833914,0.0071016962908854,0.0095981961485333,0.0117114827428455,0.0141378362698097,0.0163379707486113,0.0185470617656966,0.0209414987122358,0.0229656845186314,0.0249490052173556,0.0271577304556748,0.029286250475593,0.0312255406797116,0.0331683168316831,0.0350375069744373,0.0370531370966072,0.0389442024476249,0.0409508070634945,0.0430950967217725,0.0577891021490779,0.0712252203219526,0.0846357171327277,0.0978695213258181,0.110228830538859,0.1257575597321966,0.1390645558337931,0.1511241696474195,0.1623830278169465,0.1735862409126975,0.1869546482818054,0.1997336739996535,0.2125452982337769,0.2235428021100094,0.2341613265508357,0.2452662853088554,0.254948835962286,0.2648235148319645,0.2736672271962914,0.2821159556538986,0.289875044874987,0.2971840546803679,0.3039476956969761,0.3105301676044678,0.3170192073911986,0.323643721699219,0.3295897031388899,0.3344839445159154,0.3401297016861219,0.3444106363275565,0.3448727469114966,0.3443785349703407,0.3449508363471971,0.345449805943347,0.3455439642324888,0.3449017859887492,0.3441918910750926,0.3451562371176519,0.3456334352141214,0.3464903612942634,0.3478523097800479,0.3488390616910271,0.3499810182646475,0.3505876525419912,0.3522804463852498,0.3540310728532437,0.3549622717585392,0.3571473851030111,0.3590278760435828,0.3617174095207693,0.3647732478240952,0.3653815303994439,0.3679431002730678,0.3704701084865738,0.3724781119147316,0.3751947273816656,0.3788019863438858,0.380012466237274,0.3766378589350432,0.3730127956572315,0.0,2.28723075675781,58.753432902004775,203.83302163423696,310.36665273351923,fqhc7_100Compliance_baseline,61 -100000,95729,43021,405.2272561083893,6917,70.92939443637769,5420,55.970500057453854,2160,22.12495690960942,77.40440741590693,79.7611489499457,63.3594678928421,65.09907359459359,77.1323143236204,79.48991190026656,63.25917684209082,65.00194657185627,0.272093092286525,271.23704967914364,0.1002910507512737,97.12702273732532,104.74596,73.655637183641,109419.25644266629,76941.82241916348,296.20874,187.9286543478796,308768.65944489127,195657.60046368357,308.30157,148.4587717956224,317993.32490676804,152044.9878230738,3921.43848,1751.6907342401232,4053403.576763572,1786851.386977952,1318.72088,571.5784959008664,1362362.471142496,581901.288180159,2134.3739,886.0308263236238,2188841.2079933984,892001.6627913062,0.38252,100000,0,476118,4973.60256557574,0,0.0,0,0.0,25177,262.32385170637946,0,0.0,28533,293.95480993220445,1917540,0,68725,0,0,0,0,0,57,0.595430851675041,0,0.0,0,0.0,0,0.0,0.06917,0.1808271462930042,0.3122741072719387,0.0216,0.3166894664842681,0.6833105335157319,25.27999636821109,4.525822103678526,0.3190036900369004,0.2173431734317343,0.2241697416974169,0.2394833948339483,11.203427303193989,5.603635791416672,22.8450997495036,12764.151981093662,60.47418908177346,13.736374452633422,19.272531609961074,13.429012007508666,14.0362710116703,0.546309963099631,0.7894736842105263,0.6853672643146327,0.574485596707819,0.1140215716486903,0.7154907975460123,0.9373297002724796,0.8411910669975186,0.7482014388489209,0.1640625,0.4927113702623906,0.7225647348951911,0.6380090497737556,0.5229455709711847,0.1017274472168906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021869652819261,0.0045097542437294,0.0069795280702822,0.0090895241964149,0.011550232326416,0.0137520358306188,0.0157859872611464,0.0179586339193698,0.0198933300637567,0.0220721412125863,0.0242900042020682,0.0264697430002463,0.0284054693122237,0.0306944358609892,0.0328332335885424,0.0348887694343367,0.0371260213539347,0.0392016514694135,0.041248363160192,0.0432776435297058,0.0577162008373443,0.0719159445770019,0.0859435644602958,0.098749855429034,0.1111907572946534,0.1267924368681527,0.1396893434622077,0.1521426670215597,0.1641291921749628,0.1742879203843514,0.1874791336844259,0.1998961241316626,0.2117141614096149,0.2223801764956751,0.232778444036132,0.2431785967399007,0.2531632858003615,0.2631253443681056,0.2721642468239564,0.2805280150207221,0.2883132794710866,0.2955346925430299,0.3034415154950869,0.3105966438781852,0.3170323878300275,0.3229566243729714,0.3285551820238199,0.33368052027233,0.3387711837019609,0.3435817082965752,0.3439901133738112,0.3442449551492506,0.3454090314596312,0.3445157568327684,0.3444283003202467,0.343591860447339,0.3427472944750332,0.3440230846162674,0.3447446114988822,0.345594006421691,0.346447390627637,0.3473196243908237,0.3496989152556597,0.3505470655359899,0.3516102633225822,0.3526537225285494,0.3536821705426357,0.3561717127210927,0.3600604611923509,0.3613739365508467,0.363250980034643,0.3668015332197615,0.3706831358709352,0.3719140505943309,0.3711069418386492,0.3697756788665879,0.3726545678252845,0.3748223350253807,0.3748603351955307,0.3690095846645367,0.0,2.4732758386222065,56.78926325262199,200.45169401281555,316.89714982248205,fqhc7_100Compliance_baseline,62 -100000,95744,42635,400.7352941176471,6690,68.62048796791444,5221,53.904161096256686,2060,21.08748328877005,77.33232137485312,79.69608964786067,63.31916690730778,65.07019253324346,77.06761272836562,79.43210051393247,63.22104862692024,64.97434408040374,0.2647086464875059,263.9891339282059,0.0981182803875455,95.84845283971788,104.64696,73.64790064377081,109298.71323529413,76921.68767105073,291.45143,186.156660824935,303752.36046123,193778.30620759932,307.5094,148.8916624050416,316438.54445187165,151978.14035933107,3740.71378,1713.2891184549514,3866906.5946691176,1749427.890855307,1256.12367,557.4292141637458,1296649.461062834,566959.4658926077,2023.75806,857.7364427711644,2074665.8171791448,866082.3309574801,0.37911,100000,0,475668,4968.123328877005,0,0.0,0,0.0,24932,259.7134024064171,0,0.0,28475,292.80163770053474,1914727,0,68681,0,0,0,0,0,46,0.4595588235294117,0,0.0,1,0.0104445187165775,0,0.0,0.0669,0.1764659333702619,0.3079222720478325,0.0206,0.3173337131462754,0.6826662868537245,24.961650410226227,4.44758657028956,0.3382493775138862,0.2104960735491285,0.2286918214901359,0.2225627274468492,11.321719840262167,5.987712493324454,22.145913417684124,12681.636367053234,59.13066283280452,13.068018750444102,19.84105643876043,13.344754598131365,12.87683304546862,0.5648343229266424,0.7797998180163785,0.7021517553793885,0.5871021775544388,0.1299483648881239,0.71,0.8894736842105263,0.8644444444444445,0.7491638795986622,0.1586715867158671,0.5116461659251504,0.721835883171071,0.6466565349544073,0.5329608938547487,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0047064074085344,0.0069145479652343,0.0090759411334254,0.011322942947831,0.0135899186031112,0.0157461042669494,0.0181420943552256,0.0207658095189407,0.0229013104013104,0.0251263493495443,0.0272775804365234,0.0295526992287917,0.0312577243140809,0.0333756332084971,0.0355120095911364,0.0376375816688928,0.0396721651623612,0.0419325338266165,0.0436688954154429,0.0575290985959601,0.0719203163908012,0.0853810737396302,0.0973134956101151,0.1094967472559914,0.1253754706604053,0.1373354128868659,0.1499228353999254,0.1612665527552328,0.1716880387699961,0.185994916641537,0.1987448604198225,0.2111257356060523,0.2225418038255011,0.2323419051706114,0.2426668438361625,0.2524524301099269,0.262025344947892,0.2708915071851801,0.2787236480293308,0.2866900519802267,0.29406325350563,0.3005327965901018,0.3065798467460517,0.3130849072656117,0.3188691812418284,0.3250964380542057,0.3301938423551273,0.3352638602764929,0.340291255726753,0.3406754772393539,0.3414449402302649,0.3417769695944517,0.342793939043433,0.3432527289491687,0.342704724530153,0.3412698412698413,0.3424223000180793,0.3433699959010793,0.3437851945869608,0.3447679554895584,0.3458173811271349,0.3471220373914324,0.3473781090060159,0.3490051192890949,0.3502053414946768,0.3519554667427919,0.354251012145749,0.3562165210036651,0.3589487158972718,0.3610526315789473,0.3625348488097791,0.3619592875318066,0.3635178653580739,0.3670017852109368,0.3695063037586897,0.3682856710546225,0.3661464585834333,0.3650490730643402,0.3652373660030628,0.0,2.305372209223385,61.45676751023296,188.8314979057517,294.0368660014282,fqhc7_100Compliance_baseline,63 -100000,95727,43189,408.5054373374283,6898,70.88909085211068,5379,55.62693910808863,2148,22.094080040114072,77.41699606751023,79.77250776439617,63.36600846061516,65.10165770078574,77.1526337145654,79.50819980725927,63.26829696224343,65.00680905255716,0.2643623529448291,264.3079571368929,0.0977114983717299,94.8486482285773,105.02448,73.90328695045888,109712.49490739287,77202.134142362,295.93148,188.00946080801964,308553.87717153993,195814.50458911245,309.13091,148.9643121645597,319791.5008304867,153174.84255294545,3927.22113,1770.5035781791844,4060442.7486498062,1807455.0316829984,1305.73397,572.7513600554377,1346080.3639516542,580379.3496666952,2119.71534,883.4459953181091,2179598.7756850207,891037.482915928,0.3848,100000,0,477384,4986.931586699677,0,0.0,0,0.0,25223,262.86209742287963,0,0.0,28633,295.9457624285729,1914118,0,68663,0,0,0,0,0,54,0.5641041712369551,0,0.0,0,0.0,0,0.0,0.06898,0.1792619542619542,0.3113946071325021,0.02148,0.3213300220750552,0.6786699779249448,24.880177779739792,4.5569926205571605,0.3158579661647146,0.2154675590258412,0.2275515895147797,0.2411228852946644,11.12770649335908,5.571349390466111,22.74421086901373,12832.685755873976,60.51888935701696,13.601311462411374,19.09116328861251,13.665068346720098,14.161346259272982,0.5514036066183305,0.7687661777394306,0.7051206592113007,0.5947712418300654,0.1148804934464148,0.7144992526158446,0.9081081081081082,0.8677884615384616,0.7406143344709898,0.1621621621621621,0.4974016332590943,0.7034220532319392,0.6523772408417771,0.5488721804511278,0.1030828516377649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023279823478208,0.0046601627004629,0.0069883966244725,0.009372556585668,0.0113469985358711,0.0133756794723019,0.0154217800790965,0.0175954276382935,0.0195904102029554,0.021688645175811,0.023763167602574,0.0261396990907038,0.0282081067467129,0.0300820794842483,0.0323422605537902,0.0341948351228182,0.0360089867166388,0.0379190175904414,0.0399713154366601,0.041784732061005,0.0573451253510979,0.0712036077889736,0.0847889717684826,0.0980953082108938,0.1101044193650458,0.1259571857680754,0.138544440083587,0.1506333155934007,0.1627442392128793,0.1736230267673301,0.1871729158141838,0.2006838050722756,0.2125994521977305,0.224330613181267,0.2350207122372512,0.2461523141437723,0.2561278744440605,0.2654618609303528,0.2742239053039751,0.2833339055401059,0.2913438634629171,0.2977780894608273,0.3055522712762184,0.312636191662077,0.3190810233506481,0.3247644269261563,0.3306411282256451,0.3362956747272866,0.3420079157720465,0.3474167260068043,0.3480033916098033,0.3481304234223084,0.3483388283033223,0.3482588504217242,0.3480342592041872,0.3474092113526015,0.3465892919262515,0.3468043264503441,0.3480544282645023,0.3502475688383856,0.3508135403029736,0.3511829652996845,0.3516170871511652,0.3523325305503523,0.3540101303502412,0.3562239583333333,0.3577383831773041,0.3606767977440075,0.3632072172879222,0.3649487798125223,0.3674292185730464,0.3675661375661375,0.3706950532247965,0.3713980789754535,0.3735841991949827,0.3804373383494004,0.3772409601944698,0.3763031275060144,0.3793663688058489,0.382242287434161,0.0,2.154001430962407,58.83536431996366,204.13143238182397,304.74508483092245,fqhc7_100Compliance_baseline,64 -100000,95692,42724,401.7577226936421,6885,70.68511474313422,5386,55.64728503950174,2156,22.15441207206454,77.3508434030137,79.74364032780854,63.31502979323547,65.08392574018396,77.08019928541933,79.4730032936055,63.21484808528511,64.98642315396755,0.2706441175943723,270.637034203034,0.1001817079503624,97.5025862164074,103.93856,73.10822295990894,108617.81549136814,76399.51402406569,293.91511,186.5926335192788,306520.7854366091,194366.7114484793,309.8275,149.09745537874576,320178.5938218451,152945.62344559192,3879.27761,1752.2790185340125,4012642.519750868,1789887.6484283044,1320.79975,578.2804736279403,1365692.7120344436,589745.6356100203,2130.08318,894.0674541613013,2191191.238557037,903152.9133010522,0.38047,100000,0,472448,4937.173431425825,0,0.0,0,0.0,25022,260.8159511766919,0,0.0,28716,296.44066379634666,1916993,0,68820,0,0,0,0,0,44,0.4598085524390754,0,0.0,0,0.0,0,0.0,0.06885,0.1809603910952243,0.3131445170660857,0.02156,0.3280452476203614,0.6719547523796385,25.31594975717352,4.426524254512925,0.330857779428147,0.2135165243223171,0.2194578536947642,0.2361678425547716,10.957969677547435,5.490427016465418,22.887403362947044,12764.916728804315,60.5926222073558,13.632618680336668,19.931653805732186,13.002305096673568,14.02604462461338,0.5419606386929076,0.7556521739130435,0.6936026936026936,0.5642978003384095,0.115566037735849,0.6987509184423218,0.9104859335038364,0.8610478359908884,0.703125,0.1345454545454545,0.488944099378882,0.6758893280632411,0.6388682055100521,0.5259179265658748,0.1103309929789368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019956035941124,0.0046242305625133,0.0070145874996193,0.0094926416781852,0.0116685995645893,0.0141500784417595,0.0164645156025257,0.0187920011438609,0.0211799838414415,0.0232277093873538,0.0255871192698184,0.0274647959655303,0.0296849446107322,0.0316611545554765,0.0339122986263764,0.0359335910848305,0.0379395371003501,0.0398160738195821,0.0416909378380627,0.0436976191468957,0.0579922078193383,0.0723215781537946,0.0861236485777264,0.0988806362699097,0.1109563896449142,0.1269480210328082,0.1393208572611377,0.1511863179417277,0.1631906955861759,0.1740982797291351,0.1880666199536463,0.200744943479579,0.2124612287098003,0.2234955451938442,0.2343335352089412,0.2442997826376258,0.2546483969312205,0.2645134407693953,0.273558648111332,0.2821988808366205,0.2895248905464569,0.2956888472352389,0.3028675747122349,0.3089996879275992,0.3157645055346065,0.3218064770737242,0.3272872933017888,0.3323148607875339,0.3375377164242887,0.3419575524651003,0.3426864786149614,0.3429736131768853,0.3425265650102878,0.3421493814313793,0.3426942943656118,0.3420935821101128,0.3413321514499177,0.3416371274780097,0.3421111092123926,0.3435625535561268,0.3442198807604334,0.3452117572692794,0.3465941194935649,0.3483291636883488,0.3495350904591432,0.3501941469262242,0.3510550680185169,0.3536237338100166,0.3565354330708661,0.3599447513812154,0.361878453038674,0.3638100291854603,0.3678984414278532,0.368850583479521,0.3699585375047116,0.3744488142056966,0.3754783407316699,0.3802479008396641,0.3884364820846905,0.3869230769230769,0.0,2.445952683300219,59.64678739347829,202.86539003273165,302.56492488042693,fqhc7_100Compliance_baseline,65 -100000,95719,42635,402.4801763495231,6713,68.79511904637533,5237,54.08539579393851,2180,22.36755503087161,77.26691653433518,79.62679314935967,63.2951211478972,65.03897938685951,76.99947052178672,79.36134241740734,63.19610179225205,64.94409341312037,0.2674460125484614,265.4507319523276,0.0990193556451544,94.88597373913876,104.85178,73.76081377477986,109541.01066663882,77059.53153158714,292.92291,186.82057660736703,305412.29014093336,194565.85113174716,304.53149,147.43763258150014,314372.4756840335,151117.60225291422,3807.36015,1723.2711714522943,3933277.259478265,1756219.911053395,1296.21729,569.2050725354804,1333039.1040441291,573585.7614202813,2147.71354,897.7893327654191,2205189.983179933,902348.9230745836,0.37948,100000,0,476599,4979.136848483582,0,0.0,0,0.0,24973,260.2513607538733,0,0.0,28185,290.6946374283058,1909662,0,68587,0,0,0,0,0,51,0.5328095780357087,0,0.0,1,0.0104472466281511,0,0.0,0.06713,0.1768999683777801,0.3247430359004916,0.0218,0.3287030474840539,0.6712969525159461,24.866622571596803,4.518677046989423,0.315638724460569,0.219209471071224,0.2243650945197632,0.2407867099484437,11.022255494552876,5.478507451189438,23.34940918562375,12671.736642447237,59.51992242036761,13.587440138612353,18.94157588193916,13.122282124843284,13.868624274972818,0.5514607599770861,0.7857142857142857,0.7035692679975801,0.5770212765957446,0.1149881046788263,0.7067557535263549,0.9380053908355797,0.8398169336384439,0.7292418772563177,0.1335877862595419,0.4976863753213367,0.712998712998713,0.6546052631578947,0.5300668151447662,0.1101101101101101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0045524135903233,0.006768275358201,0.008776830792048,0.011268636983097,0.0132161730117194,0.0155971252357408,0.0177009217954083,0.0197806241885855,0.0219660989190959,0.0240279642860803,0.0260153587121678,0.0279908685190136,0.0298695011793303,0.0318889920561229,0.0339873064439436,0.0359753950665865,0.0381387145302692,0.040051975051975,0.0420113780815637,0.0563352337990518,0.0704685341037558,0.0839997481266922,0.0968600711324368,0.1096292232046763,0.1254140781271497,0.1383916247265932,0.1496681969727634,0.1612161526286521,0.1721809515630367,0.1862668995407206,0.1985371403803435,0.2097410093881374,0.221762225507913,0.2327749614282565,0.2433173482527418,0.2536203522504892,0.2630197183098591,0.2719516490008293,0.2802668990186187,0.2877398893441674,0.2949625970194682,0.3016096746301538,0.3085098726038243,0.3150413424124513,0.3211668023987562,0.3262235263138096,0.3314296640958633,0.3363970349599512,0.3417208544676793,0.3427091644241301,0.3421252712921107,0.3419860725811017,0.341983492652925,0.3419898568019093,0.3416798683421259,0.3412378845511117,0.3411271280196826,0.3416738271180615,0.3426236868097333,0.344035573643849,0.3455796107433251,0.3464468879930774,0.3472663020235442,0.3488084559625687,0.3498424369747899,0.3507984462667242,0.3540593807616504,0.3581881781838949,0.3573249180725816,0.3577939203257299,0.3599783666846944,0.3646172508459426,0.3655400723689275,0.369100750166176,0.3693500298151461,0.369869331283628,0.3743402354851807,0.3742754623240408,0.3811364514882103,0.0,2.4035493066434803,59.15884228037203,199.5883937883931,294.22571867257346,fqhc7_100Compliance_baseline,66 -100000,95702,42930,405.1117009048923,6749,69.31934546822428,5272,54.50251823368373,2200,22.611857641428603,77.288290147924,79.65807191715547,63.294707477804174,65.04413305428403,77.01720904625472,79.38705331885932,63.1955450235732,64.94770410311993,0.2710811016692815,271.01859829615194,0.0991624542309779,96.42895116409989,105.19542,73.95140201505602,109919.7717916031,77272.57739133562,294.79807,187.9313734019267,307385.3628973271,195721.90442667415,309.10096,149.051468316829,319612.2024618085,153094.17948789135,3839.64635,1730.7935527826612,3972680.121627552,1769316.5351395262,1307.82405,572.493983201041,1350576.299345886,582250.0477777286,2164.76134,895.8142907306077,2226515.6841027355,904848.101505521,0.38048,100000,0,478161,4996.353263254687,0,0.0,0,0.0,25135,262.0216923366283,0,0.0,28443,293.8078619046624,1906306,0,68530,0,0,0,0,0,64,0.6582934525924223,0,0.0,1,0.0104491024221019,0,0.0,0.06749,0.1773812026913372,0.3259742184027263,0.022,0.3225761189841448,0.6774238810158552,25.0225710962371,4.513335015554675,0.3294764795144158,0.1995447647951441,0.2319802731411229,0.2389984825493171,11.302821535733086,5.759825130919422,23.38052334753181,12742.038545343876,59.70982994728823,12.41124243787716,19.71799563410017,13.657234711904325,13.923357163406576,0.5438163884673748,0.7699619771863118,0.6862406447898676,0.5764513491414555,0.1269841269841269,0.7275449101796407,0.9111747851002864,0.9013452914798208,0.734982332155477,0.1705426356589147,0.4814532520325203,0.6998577524893315,0.6119287374128582,0.5287234042553192,0.1157684630738523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0048255796271327,0.0070929902179648,0.0094170950242792,0.0116345293304043,0.0136341883126801,0.0159356456842234,0.0181493390496605,0.0201474000551983,0.0222893107506524,0.0245249759157152,0.0264929892632054,0.028448931751352,0.0303598278099318,0.0323359222700126,0.034559378261903,0.036715676123421,0.0385844748858447,0.0406681644200366,0.0426880106720026,0.0572231273760287,0.0718144696890377,0.0850422955017736,0.0979467696614432,0.1099933497302946,0.1255267337215458,0.1380756692470241,0.1501582126761914,0.1622292081007677,0.1720335434271418,0.185461172639139,0.1978894679248962,0.2103096376488014,0.2216017955876717,0.2322646018966219,0.2435950069348127,0.2542742449486196,0.2639590474472307,0.2725990307387773,0.2814897331067114,0.2902249185119883,0.297177168724859,0.3038592077468967,0.3104608544132668,0.3166812844126102,0.3224857556019725,0.3277516770092706,0.333107806216889,0.3387283387283387,0.3435786741531371,0.3442861964225447,0.3442186076054238,0.3445299677401098,0.3442730030627204,0.3450798865163506,0.3445809815290445,0.3429125472867724,0.3434456620252121,0.3450460038450975,0.3454858619204822,0.3463320899740025,0.3477113025527015,0.3487426814371762,0.3504808015600834,0.3514996870636945,0.3521604213929959,0.3527613496757235,0.3548437993057747,0.3575962759204401,0.3602524163271827,0.3621497473587505,0.3649646756583172,0.3639410611522165,0.3653522848846095,0.3665264142122487,0.3670049563370309,0.3707027684818983,0.3685593049100828,0.3734383487235198,0.3767951625094482,0.0,2.198203320457815,59.07205633738147,201.0719237682449,296.2204626426637,fqhc7_100Compliance_baseline,67 -100000,95831,42659,401.7802172574636,6837,70.13388152059355,5327,55.02394840917866,2139,21.94488213626071,77.36488025655099,79.67915842316074,63.35773544642036,65.0710197051607,77.10630518532379,79.42140483435087,63.263182506022,64.97898887737101,0.2585750712271988,257.75358880987653,0.0945529403983584,92.03082778968508,104.73474,73.67156241114371,109290.85577735804,76876.33607400912,294.22404,186.79335374350063,306396.625309138,194293.1412233417,303.15625,145.74373168672446,312954.3571495654,149382.36142560467,3829.56825,1708.6508566921166,3958509.668061483,1745552.6653719023,1274.92459,549.3150355881239,1316092.1309388403,558977.6372880132,2100.80848,866.105468756303,2158117.5819933005,875804.4377892008,0.38019,100000,0,476067,4967.766171698094,0,0.0,0,0.0,25095,261.2828834093352,0,0.0,28038,289.1548663793553,1919066,0,68841,0,0,0,0,0,58,0.5947970907117738,0,0.0,1,0.0104350366791539,0,0.0,0.06837,0.1798311370630474,0.3128565160157964,0.02139,0.3160967472894078,0.6839032527105922,25.21688012275436,4.56542838509589,0.3206307490144546,0.2158813591139478,0.2301483011075652,0.2333395907640323,11.216277417704816,5.73403381637445,22.518807577676853,12690.33575017203,59.81300063919738,13.608074890069805,18.979182646994225,13.629460620667237,13.596282481466124,0.5440210249671484,0.7904347826086957,0.6791569086651054,0.5628058727569332,0.1118262268704746,0.7192307692307692,0.9186351706036744,0.8675,0.7553956834532374,0.1161825726141078,0.4874596473801837,0.7269180754226268,0.6215596330275229,0.5063291139240507,0.1107784431137724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0042378036416724,0.0064940336066239,0.00870474952261,0.0108906763201513,0.0131450331934997,0.0151583110766784,0.0176000980051861,0.0196168629375204,0.0217923128102768,0.0238183085311359,0.0259536344324374,0.0280886751148521,0.0300943794320766,0.0320156676802556,0.0340975957220576,0.036170498857066,0.0383559372960203,0.0402143101890789,0.0422922063734823,0.0574590360566142,0.0715032297175826,0.0849352091430008,0.0977003045258847,0.1089756416062007,0.1246924660788765,0.1370926734183651,0.1491809029734125,0.160797533577273,0.1720972579263067,0.1855884156509203,0.1991048551876236,0.2104393932808901,0.2212246324573475,0.2311462798109682,0.2423330863405624,0.2523672660027182,0.2622742790405175,0.2716309406529198,0.2807426716056158,0.2877368840437448,0.2953194867663712,0.3026990617097209,0.3088901912473537,0.3145475511318808,0.3209893262092654,0.3263565891472868,0.3313802745297407,0.3370019269816225,0.3417641479607967,0.3420698743982141,0.342330326696733,0.3437323864276857,0.3440179281428468,0.3449430178236677,0.3440706824352307,0.3429523809523809,0.3440098806093042,0.3447530493558182,0.345902139027845,0.3476932938670085,0.3486174656852994,0.3495902416415615,0.3508906081324217,0.3504582730342498,0.3509341148150086,0.3522140063379678,0.3544060093422547,0.3583927185493544,0.3612812812812813,0.3619903248099516,0.3627313818338356,0.3647585545251039,0.3669014629615295,0.3718439173680183,0.375,0.3765144454799627,0.3733525535420098,0.3760445682451253,0.3800623052959501,0.0,2.2054607960139494,57.021332449109565,200.1715889766391,308.08329762880936,fqhc7_100Compliance_baseline,68 -100000,95635,42506,400.9933601714853,6898,70.91545982119517,5341,55.2517383803001,2180,22.40811418413761,77.2563444549925,79.6665719833142,63.27473565930678,65.05564206535446,76.99158156889315,79.40213569429106,63.1777539931504,64.96144080717062,0.2647628860993478,264.43628902313776,0.096981666156374,94.20125818384406,104.5484,73.49194551397142,109320.22795001828,76846.28589321002,291.1788,184.79731246985656,303846.43697391124,192609.8786638801,301.14919,145.2115901686321,311094.56788832543,148918.5319010172,3879.64395,1734.5985764485297,4017426.7788989386,1774529.5142469765,1306.87225,571.9929368203533,1350424.1438803785,582028.2084476126,2147.31876,888.880131147556,2209487.3006744394,899296.3016351406,0.37801,100000,0,475220,4969.101270455377,0,0.0,0,0.0,24800,258.6709886547812,0,0.0,27872,287.635279970722,1913821,0,68787,0,0,0,0,0,53,0.5541904114602394,0,0.0,0,0.0,0,0.0,0.06898,0.182481944922092,0.3160336329370832,0.0218,0.3303448275862069,0.6696551724137931,25.141032179421817,4.559412055595719,0.3235349185545778,0.2089496348998314,0.2301067215877176,0.237408724957873,11.17695941521739,5.636517776568631,23.24163986447408,12689.426290613868,60.27594014159247,13.074062025020432,19.714907434607408,13.62375367891882,13.863217003045822,0.5450290207826249,0.7652329749103942,0.7037037037037037,0.5614320585842149,0.1190851735015772,0.7315233785822021,0.92797783933518,0.865909090909091,0.7418181818181818,0.2,0.4834371108343711,0.6874172185430464,0.6482919254658385,0.5094339622641509,0.0992141453831041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0046927419600052,0.0068500796638894,0.0091534343157274,0.0116695492929087,0.0141397471552417,0.0162803982373102,0.0183599656708488,0.0205388376327148,0.0227528838076505,0.0248932851748481,0.0265034735068031,0.0286914358071589,0.0307344935664797,0.0327562341177199,0.0346436812532982,0.0367598275004146,0.0388099393334995,0.0406663961123424,0.0425576301241264,0.0569159220358467,0.070631619750034,0.0837252761096879,0.0966200355785728,0.1089491289345672,0.125321425170104,0.1381099955424423,0.150707105128642,0.1622416041386092,0.1723864099757474,0.1861147046140578,0.1989382448537378,0.2107596453390846,0.2218654451007682,0.2321054373000992,0.2427680216681837,0.2525894275295854,0.2620426932353538,0.2703765585751469,0.2786591871149809,0.2870594783899435,0.2946963567500381,0.3021012541081831,0.3081578252203357,0.3139920101334892,0.3197444515842024,0.3256630950289829,0.3317345715233308,0.3370820076618401,0.3419402629699198,0.3424886908378907,0.3431652788709833,0.3431826222316564,0.3429861887680265,0.3428626935262119,0.3421515123485339,0.3410136781261444,0.3420405197893103,0.3426976936458997,0.3442802900793579,0.3454621023199576,0.3463178449031641,0.3471885219959911,0.3475430444249893,0.3491473018020194,0.3497943464934112,0.351133197368799,0.3542636395300972,0.357303845612058,0.3612803057446554,0.3636529763808305,0.3653148345784418,0.3654017007234421,0.3684571951777812,0.3687005123428039,0.3725050194874217,0.3735103333836174,0.3737980769230769,0.3748304854895579,0.3681572860447186,0.0,2.2823603855815384,58.47004958515125,198.7344841675421,309.89499541766963,fqhc7_100Compliance_baseline,69 -100000,95697,42818,403.6176682654629,6907,70.99491102124414,5371,55.592129324848216,2154,22.132355246245965,77.32722884548278,79.7048129970809,63.32110870231941,65.07621248124222,77.06184781398906,79.43837844031229,63.22332668644731,64.9803293673084,0.2653810314937175,266.4345567686013,0.0977820158721058,95.88311393382298,104.09322,73.30646716263664,108773.7546631556,76602.6805047563,296.07263,187.93614451474764,308829.31544353534,195836.1407429632,305.64283,147.40427734316728,316220.68612391193,151576.7708857799,3869.238,1739.00451201,4006903.434799419,1781341.0508755995,1318.21271,571.8646591465761,1366110.139293813,586470.1629431332,2122.85274,883.8832688189887,2183498.5840726458,895438.8760077925,0.38096,100000,0,473151,4944.261575597981,0,0.0,0,0.0,25182,262.57876422458384,0,0.0,28316,292.73644941847704,1915990,0,68741,0,0,0,0,0,54,0.5642810119439481,0,0.0,0,0.0,0,0.0,0.06907,0.181305123897522,0.3118575358332127,0.02154,0.3291488481169816,0.6708511518830184,25.143633402583813,4.499391014762607,0.3355054924595047,0.2172779743064606,0.2100167566561162,0.2371997765779184,11.23663206319864,5.617271518190984,22.844991407728955,12752.14444860473,60.45962340723027,13.696434617701412,20.375279251409093,12.48549455911794,13.902414979001817,0.5406814373487246,0.7652099400171379,0.6875693673695893,0.5593971631205674,0.1106750392464678,0.7149187592319055,0.907035175879397,0.8657718120805369,0.7410358565737052,0.1317829457364341,0.4819517052526761,0.6918075422626788,0.6287822878228783,0.507411630558723,0.1053149606299212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022171826594042,0.0045403411336664,0.0068986507050826,0.0089886955726865,0.0110025320059791,0.0133179925264476,0.0155099626781963,0.0176074678541153,0.0195324484077475,0.0217509293299607,0.023812942262332,0.0259641554973553,0.0282857789389232,0.0303963895271558,0.0324261845051962,0.0346539261005801,0.0368286921929388,0.0386196586520493,0.0407526445533123,0.0428814142319598,0.058200505546387,0.071460716491015,0.0851191038106926,0.0979012150860028,0.1097705028687141,0.1252009986459038,0.1381996476556364,0.1501059558925319,0.1618479817082291,0.1724559634405372,0.1864120130989314,0.1995843121123223,0.211665016914492,0.2233051125549648,0.2338003984546125,0.2454900048756704,0.255140771171493,0.2646052750022504,0.2733826016869302,0.2817627646897057,0.2897887813238223,0.2976228097896696,0.304345252190386,0.3107908839149773,0.3169931064667907,0.3227346757477051,0.3275110264635124,0.3326154277485376,0.3379596601595434,0.3423915198456231,0.3427433508842986,0.3429047999779438,0.3432717827093568,0.3432792625927909,0.3443833862008369,0.343714931361547,0.3432930604727959,0.3438998751724591,0.345000256353289,0.3470564091582347,0.3483432296251896,0.3491357145682528,0.350463954318344,0.3514276749294007,0.351750784834581,0.3523525096929686,0.3541511487996333,0.3564343925705983,0.3585071581835449,0.3617920204073498,0.3638867214393904,0.3646548027444254,0.3662204174862001,0.3716133004926108,0.3766196646341463,0.3784851023094412,0.3754255648406066,0.3771803816950543,0.3805656678801456,0.382398753894081,0.0,1.9715487749597167,59.92529612415796,199.50852187850936,306.4232019273753,fqhc7_100Compliance_baseline,70 -100000,95769,43116,406.4363207300901,6916,70.87888565193329,5405,55.76961229625453,2254,23.04503544988461,77.38146625236273,79.70461760337673,63.35451413110488,65.06786291281028,77.11035385295486,79.43635864792864,63.25483327865923,64.97245849692331,0.271112399407869,268.25895544808986,0.0996808524456511,95.4044158869749,103.85474,73.08678793430988,108442.9617099479,76315.70543109972,294.29043,187.1284405336686,306545.6985036912,194650.9797290654,312.35612,149.85352984436227,322283.34847393207,153470.91630959444,3924.79729,1766.370071544374,4050596.059267613,1797260.372068192,1340.50053,586.3274415684674,1379361.1398260398,592026.4793186184,2213.74078,912.6835520218204,2265889.0663993564,914972.6653531524,0.38395,100000,0,472067,4929.225532270359,0,0.0,0,0.0,25039,260.731551963579,0,0.0,28841,297.2673829736136,1917576,0,68891,0,0,0,0,0,63,0.6473911182115298,0,0.0,1,0.0104417922292182,0,0.0,0.06916,0.1801276207839562,0.3259109311740891,0.02254,0.3270950873813127,0.6729049126186872,24.990132724105035,4.5834826307747925,0.3215541165587419,0.2098057354301572,0.2358926919518963,0.2327474560592044,11.33976866509176,5.785707823688043,23.733385373837244,12814.680196546457,61.196166613550304,13.405563446764832,19.737216202141013,14.292934439704169,13.760452524940288,0.5506012950971323,0.7671957671957672,0.6979286536248561,0.5905882352941176,0.1112877583465818,0.7091043671354552,0.938337801608579,0.8298368298368298,0.7406143344709898,0.13671875,0.4977799703996053,0.683311432325887,0.6546982429335371,0.5458248472505092,0.1047904191616766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084867262013,0.0047022578945234,0.0071514794940201,0.0093630676740596,0.0116221135367626,0.0137732353360343,0.0159103881278538,0.0182961050622965,0.0203208009807928,0.0223543133082337,0.0246281194935048,0.0264394467927935,0.028630739507543,0.0307999547059489,0.0329391630668989,0.0347409404013177,0.0366012666087172,0.0386393796135025,0.0407113844363878,0.0429078641858334,0.058078251703733,0.0723068068853659,0.0851889533359205,0.0982694814752512,0.1103156696117917,0.126230947419638,0.139326176433148,0.1514780553751823,0.1628587603208681,0.1745129783105145,0.1881964106925619,0.2012869734494133,0.2128214887716818,0.2238012406052053,0.2341184239489324,0.2447244757724875,0.2557139826486975,0.2650617325635052,0.2743677390780971,0.282376678015843,0.2909636252041088,0.2983594271461526,0.305426595291108,0.3116241713717169,0.318010595897735,0.3244065958443223,0.3303053053053053,0.3353987480278894,0.3402498768760206,0.3449996040858342,0.3452209397853227,0.3448451409623137,0.3449933056162356,0.3455948348244014,0.3458279348910631,0.3456339281604345,0.3455397871262037,0.3464733696722926,0.3472635285269886,0.3471991719756589,0.3485464734879013,0.3494901991779955,0.3504226888464685,0.3516712623579259,0.3516729699130393,0.3524787128454265,0.3523486102391416,0.3552884161500456,0.3588589116746983,0.3601978933929141,0.3663601848039888,0.37160040449199,0.3720301697045883,0.3707924929716586,0.3706194354991475,0.371476150826692,0.3715288373512359,0.3734330772341286,0.3742112482853224,0.3712966525586764,0.0,2.5071665053375387,59.28859501482371,209.94343963252916,302.5234080874725,fqhc7_100Compliance_baseline,71 -100000,95758,42884,404.2586520186303,6903,70.75126882349255,5350,55.30608408696924,2107,21.637878819524214,77.31912755708531,79.6699235920753,63.32066847763053,65.05882915223623,77.05164895981292,79.40139382539908,63.22151526579243,64.96174028242564,0.2674785972723867,268.52976667622386,0.0991532118381002,97.08886981059096,104.19926,73.3072673572733,108815.20081873056,76554.718516754,294.88581,187.09760765869535,307393.3666116669,194830.23628176795,305.52845,146.77956605718938,315401.167526473,150465.94633768356,3868.75259,1740.627280159881,4005103.521376804,1782704.0248959672,1255.55065,554.6054576181314,1298028.634683264,566032.1514840866,2075.36184,875.7102418822411,2133961.862194281,885540.6057476487,0.38129,100000,0,473633,4946.14549176048,0,0.0,0,0.0,25057,261.09567869003115,0,0.0,28301,291.96516217966126,1916821,0,68862,0,0,0,0,0,60,0.6161365107876104,0,0.0,0,0.0,0,0.0,0.06903,0.1810433003750426,0.3052296103143561,0.02107,0.3225359911406423,0.6774640088593576,25.080153959795854,4.508259410628831,0.3291588785046729,0.208411214953271,0.2349532710280374,0.2274766355140187,10.815025666383786,5.269495548339316,22.555446619554665,12752.34542717881,60.218168224312834,13.261379929496169,19.6149320957838,13.84427727119125,13.49757892784162,0.5375700934579439,0.757847533632287,0.6746166950596252,0.5521081941129674,0.1224322103533278,0.7031594415870683,0.9041450777202072,0.8470319634703196,0.7335907335907336,0.1690647482014388,0.481072950614189,0.6803840877914952,0.6175359032501889,0.5050100200400801,0.108626198083067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873639226726,0.0043676972810831,0.0067773223489306,0.0087753153628958,0.0110850087968189,0.0130050003564408,0.0150700994137139,0.0174100396193276,0.0195599271998527,0.0220306709526831,0.0244532619728707,0.0265219578811183,0.0285799498128265,0.0309358002307565,0.0329859678085018,0.034828441504754,0.036782442155391,0.0387112835300707,0.0406912102413832,0.0426704160808207,0.0568986033694494,0.0712993085557078,0.0848865626868333,0.0978600347021399,0.1100240374478134,0.1255035898954224,0.138117562206996,0.1509225170777383,0.1625180201826045,0.1736049316537121,0.1876406793533865,0.200448085893953,0.2122926298613,0.2230460505451483,0.2335317482148162,0.2447698049682699,0.2550455438471155,0.2642150629592537,0.2727344964980191,0.2819523034982016,0.2897189768766717,0.2980765853829854,0.3054275321967228,0.3121646118200699,0.3178079524991483,0.323223217042297,0.3290912282461508,0.3342980264164414,0.3390703892631387,0.3440945506464662,0.3442729137428479,0.3445233335631075,0.3445221445221445,0.3439697290401148,0.3437053145853193,0.3426908487798885,0.3416838760921366,0.3423362592842673,0.3441118037953004,0.3453674808996018,0.3455709309987762,0.3460187702136947,0.346595578783217,0.3470140857747176,0.3483874087326531,0.3503355001048437,0.3506735454284895,0.3514904635594291,0.3550993050410978,0.357475056644274,0.3598064722260258,0.3615081058020478,0.3602508075242257,0.3645218191579109,0.3664549160898834,0.3649738965353583,0.368735632183908,0.3730855625893404,0.3763143331488655,0.3770617568085923,0.0,2.236352367100984,60.056683622981474,191.04470864701327,313.04769157086906,fqhc7_100Compliance_baseline,72 -100000,95679,43249,407.9265042485812,6799,69.75407351665464,5380,55.64439427669603,2169,22.261938356379144,77.34181859432726,79.72364586774563,63.3271521787835,65.08511769474153,77.0722286210824,79.45499172235252,63.22883319474097,64.98977376988967,0.2695899732448623,268.65414539311416,0.0983189840425282,95.3439248518606,104.28352,73.40972645202065,108992.88245069452,76724.8341103916,294.64011,186.905951709414,307353.9648198664,194756.43973074123,308.77319,148.54789335338214,319168.18737654027,152488.17667812872,3917.94548,1745.4603586301832,4054494.748063839,1784154.517872839,1296.85951,558.9097782308877,1341570.9403317345,570294.3469631661,2136.68208,882.36684259418,2195069.8272348163,891064.8543136497,0.3841,100000,0,474016,4954.221929577023,0,0.0,0,0.0,25019,260.85138849695335,0,0.0,28570,294.9863606434014,1916932,0,68782,0,0,0,0,0,44,0.4598710270801325,0,0.0,0,0.0,0,0.0,0.06799,0.1770111950013017,0.3190175025739079,0.02169,0.3241466144376049,0.675853385562395,24.948991526835265,4.591898160955131,0.3178438661710037,0.2146840148698884,0.2325278810408922,0.2349442379182156,11.222520311618522,5.576407723746276,22.97960670920383,12847.415246075663,60.40821605158747,13.622504892150342,19.17075623603936,13.910109196322267,13.704845727075496,0.5546468401486989,0.7792207792207793,0.7058479532163743,0.5739408473221422,0.1257911392405063,0.7181208053691275,0.9164556962025316,0.8738095238095238,0.7236363636363636,0.1394422310756972,0.5003713790542214,0.7078947368421052,0.6511627906976745,0.5317622950819673,0.1224086870681145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.004530849306182,0.0066860789545772,0.0090390201295931,0.0114898116891039,0.0139081208764356,0.0159924165978656,0.0179659667425456,0.0201964451803473,0.02228500650022,0.0244340086949388,0.02633281639947,0.0283841896257278,0.0305009995259979,0.0326982226534277,0.0346914078257361,0.0367246274688607,0.0388305162174508,0.0410914727391887,0.0431383178349526,0.058094103881994,0.0724165733013622,0.0858138460892564,0.0990361547203165,0.1112224554593306,0.1272184968163645,0.1398559105329612,0.1512454758356397,0.1631479977776828,0.1743634842667467,0.1889653538388636,0.2015077931489513,0.2135501060301234,0.2245676556111852,0.2345752345752345,0.2459159827668317,0.2567385068696496,0.2667139065101003,0.2754300758022786,0.2843416818405653,0.2914131717134331,0.2993661115269461,0.3064993138693039,0.3129704204420154,0.3190333867910774,0.325019725811224,0.3305869978964239,0.33622402200489,0.3408053726079967,0.3453832234887007,0.3461051212938005,0.3460351998237254,0.3458152265929228,0.3461304700162074,0.3462391191131612,0.345570397666206,0.345488560873908,0.3465454007203592,0.3467420155835259,0.3481579464812398,0.3491052187763515,0.3506457546330175,0.3512220707017728,0.3516628916148999,0.3538020155263031,0.3542174357361842,0.355921033781267,0.3580489039319267,0.3617141845227554,0.3643017117261238,0.364583811578899,0.3667468591285752,0.3669759515243325,0.3703845271768213,0.3731539836327721,0.3766156055528961,0.3789050417568821,0.376172990616075,0.3826987681970885,0.3845556849049282,0.0,2.25324502289618,59.15116661163244,198.25812622021377,309.55740039555434,fqhc7_100Compliance_baseline,73 -100000,95692,42935,405.91690005434106,6851,70.36115871755216,5356,55.51143251264474,2161,22.321615182042382,77.38307130315455,79.76016538472011,63.34642469116329,65.09778287077756,77.11652221158751,79.48925923932882,63.24831880773586,64.99970375326474,0.2665490915670432,270.90614539129376,0.0981058834274293,98.0791175128246,103.82878,73.0230751032136,108503.0932575346,76310.5328587694,293.47742,186.46895595946165,306248.98633114574,194432.68810803097,308.1832,148.8874575629156,319167.0150064791,153389.45221954145,3907.98778,1759.0808746177995,4054096.67474815,1809159.581256092,1306.11295,567.2496875535555,1353195.794841784,581069.3240328929,2126.9522,887.9094515826149,2198564.1223926763,908195.5436394974,0.3817,100000,0,471949,4931.958784433391,0,0.0,0,0.0,24982,260.596497094846,0,0.0,28595,295.8763533001714,1918662,0,68954,0,0,0,0,0,47,0.4911591355599214,0,0.0,0,0.0,0,0.0,0.06851,0.1794865077285826,0.3154284046124653,0.02161,0.3224597445863409,0.677540255413659,24.95787205687537,4.598873002336686,0.3192681105302464,0.2092979835698282,0.2376773711725168,0.2337565347274085,11.17596087205171,5.542004599488868,22.985848090679887,12806.636417372718,60.43657983659105,13.35383415606302,19.29308783843725,14.105338445202936,13.68431939688786,0.556572068707991,0.808206958073149,0.6935672514619883,0.591516103692066,0.108626198083067,0.7093954843408594,0.937046004842615,0.84688995215311,0.7402135231316725,0.0957854406130268,0.5038915390409239,0.7330508474576272,0.6439628482972136,0.5493951612903226,0.1120080726538849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348582245933,0.0045488622778757,0.0068457723552499,0.0091697469434176,0.0113263179299476,0.0133045593819029,0.0155252910354951,0.0178627933325848,0.0199728108102583,0.02196857245227,0.0241549360755405,0.0261336564528053,0.0281180257731428,0.0303754441983828,0.0323519095467018,0.0342717764273016,0.0363299216840011,0.0381425858078444,0.0399438435940099,0.041874231402547,0.0567017309279319,0.0713119216113228,0.0844409941146232,0.0976153425579341,0.1101036406001244,0.125237873726054,0.1382384430287161,0.1503078902868325,0.1623487483727779,0.1746579378770183,0.1875195007800312,0.200121108576001,0.2122569214213507,0.2238376859757097,0.2341577187114944,0.2449024822695035,0.2556934314721946,0.2650415113043674,0.2740550608758859,0.28226287076514,0.2908964639157358,0.2980061116249663,0.3058659052403351,0.3117325811678569,0.3177831571520673,0.3239904225908372,0.3300459893986291,0.3356184456988493,0.3405235031648853,0.3463155389862775,0.347357356547988,0.3479188460056158,0.3487841302938939,0.3478807860830333,0.3480685163707734,0.3466472303206997,0.3443200203026361,0.3452148036104763,0.3463482327948055,0.3475179843241115,0.3485324947589098,0.3503700049333991,0.3512970711297071,0.3521755631460272,0.3527536023400225,0.3539576945065225,0.3555063452857508,0.3566124635774039,0.3589950524579809,0.360683625430233,0.3652926440446367,0.3674386632825719,0.3701938154676033,0.3719733656174334,0.3741388940606963,0.3790152403282532,0.3813253012048193,0.3763801261829653,0.3854838709677419,0.3871209284912018,0.0,1.7803202392748854,60.82231784760162,202.02991611208628,299.45103751131285,fqhc7_100Compliance_baseline,74 -100000,95694,42790,403.2541225155182,6869,70.52688778815809,5335,55.17587309549188,2135,21.997199406441364,77.3960056150407,79.78036190721221,63.35197710932333,65.11307632205653,77.1275084373504,79.51063471573168,63.253697658287166,65.01649097896114,0.2684971776903069,269.72719148052704,0.0982794510361628,96.58534309538425,104.55676,73.54269902258494,109261.56289840532,76851.94371913071,294.67987,186.57678417900732,307366.2194076954,194399.9516112501,305.77205,147.1955839372276,315266.432587205,150603.31704267132,3865.93894,1730.171679232547,4004221.9470395218,1772450.886683044,1281.23723,557.4878583440657,1327568.018893557,571251.6650407193,2108.38922,877.65995856734,2174980.981043744,893031.7556315751,0.38033,100000,0,475258,4966.434677200243,0,0.0,0,0.0,25069,261.3643488619976,0,0.0,28119,289.63153384747216,1920854,0,68806,0,0,0,0,0,72,0.7523982694839801,0,0.0,0,0.0,0,0.0,0.06869,0.1806063155680593,0.3108167127675061,0.02135,0.3249965455299157,0.6750034544700843,25.209074956537968,4.4959189114036295,0.3179006560449859,0.2159325210871602,0.2303655107778819,0.2358013120899718,10.860073724343918,5.365117323816481,22.635581392589792,12725.995425983896,59.70381257156465,13.536835127057971,18.817388763092456,13.572358411446436,13.777230269967788,0.5375820056232428,0.7751736111111112,0.6768867924528302,0.565500406834825,0.1049284578696343,0.6964560862865947,0.9429347826086956,0.8337408312958435,0.6920152091254753,0.1317829457364341,0.4864998761456527,0.6964285714285714,0.627039627039627,0.531055900621118,0.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0044411997323112,0.0068309616126347,0.0090525781051562,0.0114438589709682,0.0135624974544862,0.0155184192012398,0.017754137357196,0.0199656504937741,0.0223750742082744,0.0243592372360057,0.0264792550078544,0.0284057017092786,0.0305408773935704,0.0324697433992633,0.034328774769746,0.0364600596619158,0.0387469769469499,0.0409131090426914,0.0429920373535665,0.0580524540165655,0.0718950144417932,0.08477811690423,0.0976396993113599,0.1102503293807641,0.1254309342018993,0.1379299369814763,0.1490738769427294,0.1615143034161557,0.172370523696657,0.1855190462343704,0.1988447684669385,0.2105148768772684,0.2216222715299107,0.2318035887061307,0.2423725811451091,0.2529582994100131,0.2622685601294265,0.2719866754288563,0.2797978412001463,0.2879975979027843,0.2957016242979086,0.3026676433060819,0.3094676892520848,0.3171163523919239,0.3231105973783232,0.328040941147101,0.3331768407963355,0.3379868788097944,0.3432806350125712,0.3427408521841921,0.3423927963542524,0.3431047093906487,0.3433458429561201,0.343605798477677,0.3433623445554247,0.3426089982914636,0.3437935729400764,0.3447180573107005,0.3469970211020138,0.3486477374887624,0.3497926949654492,0.3513999539970307,0.3524202542939995,0.3539978357580858,0.3552539016700972,0.3566469383109492,0.3598804279421019,0.3612322408214938,0.3611953399297797,0.3615321025075778,0.3629700957577703,0.3633650793650794,0.3661583263085294,0.3693084397028005,0.3698745779064158,0.3729888613861386,0.3744085579098951,0.3747203579418344,0.3786521231008959,0.0,2.230012217224349,56.9751799919062,197.1544993184904,310.86354439745327,fqhc7_100Compliance_baseline,75 -100000,95813,42845,403.9535344890568,6867,70.37667122415539,5350,55.169966497239415,2151,22.00118981766566,77.38566316619061,79.70680330646262,63.36611244363343,65.08409147632439,77.11868986605607,79.44210305529724,63.26730510875035,64.98917538715405,0.2669733001345378,264.70025116537954,0.0988073348830766,94.91608917034,105.20532,73.96329837195007,109802.761629424,77195.47281887644,294.7955,187.56252979517024,306952.76215127384,195047.02201336832,307.7122,148.88529988916713,317298.18500621,152353.4845957703,3882.59941,1754.333965206503,4008404.558880319,1788207.3694832632,1287.55085,564.7337805221114,1328298.3624351602,573944.832892067,2123.86272,892.2203616399715,2175383.6744491872,895356.6998340725,0.38123,100000,0,478206,4991.034619519272,0,0.0,0,0.0,25078,260.99798565956604,0,0.0,28414,292.67427175852964,1916925,0,68829,0,0,0,0,0,61,0.6366568210994332,0,0.0,0,0.0,0,0.0,0.06867,0.1801274820974215,0.3132372214941022,0.02151,0.3251381215469613,0.6748618784530387,24.85883671882002,4.505501568929279,0.3287850467289719,0.2029906542056074,0.2325233644859813,0.2357009345794392,11.013148994382794,5.469466074420749,22.98745155055423,12727.619719007856,60.51819627579975,12.973342357357089,19.91941301779108,13.768487996340292,13.856952904311298,0.5510280373831775,0.7716390423572744,0.7026719727117681,0.5884244372990354,0.1126090404440919,0.7065217391304348,0.9146666666666666,0.8536585365853658,0.7561837455830389,0.1217712177121771,0.4969773299748111,0.6962025316455697,0.650611620795107,0.5390218522372529,0.1101010101010101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295149544731,0.0048356193546424,0.0070333194629101,0.0091337654684737,0.0111782415883477,0.013399857448325,0.0155745140608914,0.0177058883559546,0.0198885993152434,0.02224769233918,0.0244009920268913,0.0263887178223919,0.0284072806503663,0.0302631037180384,0.032255403398779,0.0345718033735138,0.0362774719589421,0.038340347022119,0.040257097169439,0.0424345220132985,0.0577558960665074,0.0715823803650199,0.0850426051503495,0.0979712337546359,0.1100636218083761,0.1260258346623855,0.1396260395148048,0.1520327363554232,0.1633902571705902,0.1736587873659858,0.1866605009302375,0.1994728541491131,0.2112382482575938,0.2228577666193647,0.2328460178157574,0.2432468293545926,0.2542616485059161,0.2635434220874059,0.2722905217834683,0.2805067691181851,0.2890732417474494,0.2965289371986316,0.3035703740448098,0.3103468892369871,0.3163998594263139,0.3223939647122426,0.3285029581367483,0.3338239585844615,0.3385221547603669,0.3424594395280236,0.342598073508045,0.3424823299689227,0.3422167785896299,0.3422113675448358,0.3418088331450989,0.3413980142191714,0.3410863774733638,0.3417919284281156,0.3432493102798293,0.3442191250761348,0.3449577464788732,0.3454657251666138,0.3466855201232509,0.3483763455388911,0.349910242103731,0.3506014899049725,0.3515526164462335,0.354413535263925,0.357444093985895,0.3598589574067395,0.3621132837602129,0.363481228668942,0.3658151005438219,0.3662928206301976,0.3715313950184676,0.3707328718071139,0.3735330450895615,0.3743621147172892,0.3781372002230898,0.3804934464148033,0.0,2.4851639362454274,60.45452185934585,201.91169858418945,299.05215695258767,fqhc7_100Compliance_baseline,76 -100000,95765,42706,400.8458204980943,6940,71.06980629666371,5445,56.25228423745627,2198,22.62830888111523,77.37657405990127,79.72328964732756,63.3458979718325,65.079784544432,77.10853454314322,79.45183495676145,63.24642288691661,64.98110273034636,0.2680395167580514,271.4546905661166,0.0994750849158876,98.68181408563714,104.18012,73.30989860426408,108787.26048138672,76551.87031197628,292.72196,184.93094369874868,305039.3254320472,192482.3878523168,306.00128,147.23941901212842,315091.25463373883,150454.89310456294,3965.31828,1781.75573557255,4104436.318070276,1824383.45481028,1330.09904,587.3496773755355,1375475.403331071,599881.9322461525,2172.63424,906.6701983337442,2239587.6781705213,922550.4837713538,0.38048,100000,0,473546,4944.87547642667,0,0.0,0,0.0,24932,259.7086618284342,0,0.0,28264,290.7742912337493,1921251,0,68921,0,0,0,0,0,59,0.6056492455490001,0,0.0,0,0.0,0,0.0,0.0694,0.1824011774600504,0.31671469740634,0.02198,0.324487831706311,0.675512168293689,25.178562673915152,4.600884446986031,0.336455463728191,0.2033057851239669,0.2196510560146923,0.2405876951331496,11.120260838242933,5.382443397889553,23.28734404643751,12757.548250939784,61.17740930162965,12.915312712248191,20.629258702376514,13.331446923884847,14.301390963120102,0.5382920110192837,0.7741644083107497,0.6752183406113537,0.5827759197324415,0.1068702290076335,0.7065462753950339,0.9169139465875372,0.8434782608695652,0.7715355805243446,0.1358490566037735,0.4839650145772595,0.7116883116883117,0.6188046647230321,0.5285252960172229,0.0995215311004784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030588473614,0.0050684750985818,0.0074676840033279,0.009762688447316,0.0119294605809128,0.0141342756183745,0.0164778578784757,0.0186323355249724,0.0207321685971028,0.0228680226428227,0.0249057067891111,0.0272015273914248,0.0295874412723216,0.031750772399588,0.0339516361985721,0.0362488113449373,0.0381875414181577,0.0402385892116182,0.0422284829142019,0.0443331285212917,0.0590936606341453,0.0725340918597841,0.0854656952670475,0.0977416744606395,0.1102129856990799,0.1261693603796919,0.1386344359626802,0.1511108273748723,0.161754026229228,0.1729274125229215,0.1868638454164557,0.1995174100283494,0.2124067103287713,0.2232167281242135,0.2338537423204809,0.2442106663414958,0.2538555172144237,0.2637396031469122,0.2727510044718861,0.2805084745762712,0.2887572458318388,0.2959883040935672,0.3030270769012385,0.3091935020126509,0.3155074365704287,0.3210864392360897,0.3273848231704267,0.3328756848836174,0.3383532577757077,0.3438250270427143,0.3434935837077291,0.3432967153836635,0.3434258125360697,0.3434520025429116,0.3436738936738936,0.3427779394422067,0.3422315869520445,0.3431668856767411,0.3438376787791692,0.3449107573564882,0.3452533072760072,0.3465497446454729,0.3468368246505184,0.347319712075826,0.3485074626865672,0.3493281148075668,0.3496194521250819,0.3509786057616789,0.3529411764705882,0.3559382706228621,0.360880284905488,0.3631856708779786,0.3646220765302906,0.3684531523976519,0.3694650747391181,0.3702866658736767,0.373639846743295,0.3739919354838709,0.3847411444141689,0.3835668307459295,0.0,2.32205345119976,58.32410509729032,203.66014817815423,316.3037091005693,fqhc7_100Compliance_baseline,77 -100000,95748,42788,402.4104942139783,6954,71.32263859297322,5419,55.98028157246104,2145,21.995237498433383,77.3313489084019,79.69871834223804,63.31030609897547,65.06360552698209,77.0628585462115,79.4324443306362,63.21071956529079,64.96772313800061,0.2684903621904055,266.27401160183695,0.099586533684679,95.8823889814795,104.04988,73.25558779414285,108669.86255587584,76508.09062130058,292.40612,185.32645353550035,304772.46522120567,192938.4112020516,304.06127,146.47845118409842,314140.0655888374,150225.69251719146,3909.61323,1770.728056504125,4042906.462798178,1809141.039344065,1316.37471,573.1099226119936,1359228.3807494673,583166.24722404,2113.7776,888.1140702307407,2169962.6519613983,894939.2683875349,0.38263,100000,0,472954,4939.539207085265,0,0.0,0,0.0,24937,259.8174374399465,0,0.0,28215,291.2332372477754,1919020,0,68819,0,0,0,0,0,43,0.4490955424656389,0,0.0,0,0.0,0,0.0,0.06954,0.1817421529937537,0.3084555651423641,0.02145,0.3379604178119846,0.6620395821880154,25.047093763982947,4.4452715568496135,0.3242295626499354,0.2192286399704742,0.2279018269053331,0.2286399704742572,11.087778651597135,5.602126348105956,22.918117508676527,12801.964073899837,61.25529059453594,13.919843303272472,19.848830579373125,13.853275944753667,13.633340767136682,0.5532386049086547,0.7718855218855218,0.7006260671599317,0.5797570850202429,0.1081517352703793,0.7133479212253829,0.9171122994652406,0.8661971830985915,0.7661016949152543,0.144927536231884,0.4990118577075099,0.7051597051597052,0.6476333583771601,0.5212765957446809,0.0976116303219107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417673937932,0.0049281564030542,0.0072976401928444,0.0093375330217435,0.0112718468330993,0.013555213817967,0.0158456628361085,0.0180013682265129,0.0201495361515408,0.0222975602761333,0.02447079094191,0.0266707761853392,0.0288972131889844,0.031073184305723,0.0335772752139222,0.0357467841336807,0.0377020492270096,0.0396496798763087,0.0417047817047817,0.0437341165687622,0.058533071655253,0.0726985422618487,0.0854891840288705,0.0988252863167415,0.1111087678599673,0.1269290572344273,0.1395566026722701,0.151698499099886,0.1633569184070456,0.1736848882879402,0.1871220858168335,0.1998635448027897,0.2114729289828091,0.2224691547244999,0.2329945269741986,0.2436736232784049,0.2539765872838568,0.2643674278250686,0.2738583088327109,0.2829881605941479,0.291301931360289,0.2987595609853232,0.3056263710203356,0.3125473001381464,0.3186609860012173,0.3248046802680786,0.3306649629184205,0.3360513709102028,0.3402769666056665,0.3455475243468953,0.3454167846691211,0.34549285301165,0.3460437840961953,0.3459758813152491,0.3458482467734989,0.3436308803943481,0.342954293847857,0.3436218043385514,0.3444850929978118,0.3455558134137851,0.3464890088266711,0.3467457962413452,0.3479692185108301,0.3489564672160516,0.3497036001735023,0.3487976999477261,0.3494921250855969,0.3528947534566576,0.3560587298779409,0.3585328741891567,0.3617372182517867,0.3614631029709296,0.361095337245252,0.3665168710488232,0.3704396632366697,0.370846981750117,0.3713855421686747,0.3733464955577492,0.3711814003784807,0.3786848072562358,0.0,2.389949492602577,60.21140613212527,207.67045506544608,303.01543916182976,fqhc7_100Compliance_baseline,78 -100000,95494,42649,403.2818815841833,6698,69.02004314407188,5189,53.79395564119212,2094,21.54062035311119,77.22623088476638,79.71308721397301,63.24095407219974,65.07618268360287,76.96290867575635,79.45067371158864,63.14335284058237,64.98175923670661,0.2633222090100275,262.4135023843764,0.097601231617368,94.4234468962577,104.63706,73.57144153399855,109574.48635516368,77042.9990721915,293.31083,187.74461927074097,306598.90673759603,196052.1445014616,307.1695,148.5270201923642,318527.36297568434,153102.34994245664,3745.71492,1694.024013473702,3886081.020797118,1737636.626648123,1267.66311,553.5376976143843,1314484.7843843594,566724.7585490255,2060.7175,862.804048214283,2122126.311600729,872415.4098332446,0.37925,100000,0,475623,4980.658470689258,0,0.0,0,0.0,25092,262.1944834230423,0,0.0,28376,293.98705677843634,1905799,0,68405,0,0,0,0,0,47,0.4921775190064297,0,0.0,0,0.0,0,0.0,0.06698,0.1766117336849044,0.3126306360107495,0.02094,0.3250532292405961,0.6749467707594038,24.813500114459057,4.536837554738424,0.3181730583927539,0.21757564077857,0.2310657159375602,0.2331855848911158,11.324745769759716,5.577122588271752,22.371641276249846,12663.207000532972,58.88673210684315,13.291860905110733,18.89191959068496,13.488085030031884,13.214866581015569,0.5534785122374253,0.75022143489814,0.705632949727438,0.567139282735613,0.1487603305785124,0.7256838905775076,0.8997289972899729,0.8651162790697674,0.721830985915493,0.1974248927038626,0.4949651432997676,0.6776315789473685,0.6494676494676495,0.5191256830601093,0.1371545547594677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090489942747,0.0043819164798604,0.0068938209434077,0.0088561260803253,0.0109545528587717,0.0129439942924119,0.0152144409636833,0.017472871068604,0.019724390518379,0.0219565172844818,0.024028986697323,0.0258693372267576,0.0278747438550966,0.0298082576093571,0.0319894195201587,0.0341671498384825,0.0363178041265988,0.0382744282744282,0.0404234039006501,0.0423958898959943,0.0575199933006741,0.0717051213447071,0.0853753444250468,0.0985602259791728,0.1102914755553676,0.1252570435225032,0.1378067452047803,0.1501050991773455,0.1609078445653571,0.171763643595008,0.1849336514894674,0.1979845751662345,0.2104167120957718,0.2210151282613462,0.2309415308565691,0.2429819297192771,0.2535105680686561,0.2636748040818628,0.2732030307856834,0.280948280810516,0.2879302943462774,0.2953231122945723,0.3012736056214317,0.3077108028179173,0.3141132719624459,0.3198955665268446,0.3250204261202941,0.3301971211617621,0.3351621920301632,0.340367750311316,0.3413476491190112,0.3416505658294231,0.3423134518125053,0.3425663153017491,0.3425360007155422,0.3411987148940095,0.3405835122028778,0.3408183468074575,0.3413264166824123,0.3426745417661526,0.3432948172682449,0.3443345645180508,0.3449001494076303,0.3460951183365518,0.3473333976275436,0.348675436073119,0.3491650463227725,0.3516348128257779,0.3542901495907423,0.3559992014374126,0.3585770606032823,0.3616114249174038,0.3636134559657301,0.367190465345783,0.3730136604404795,0.3782929399367755,0.3793208932395228,0.3834324379741644,0.3812032159689492,0.3873320537428023,0.0,2.12338148436071,57.88522405372087,201.9701295095556,288.8393563366846,fqhc7_100Compliance_baseline,79 -100000,95712,42525,401.0468906720161,6800,69.89719157472418,5333,55.1654964894684,2126,21.857238381812103,77.36399481233721,79.74863956869147,63.33329461681414,65.09717357379341,77.10746949614874,79.49095374773584,63.23956604451636,65.00539114848505,0.2565253161884726,257.6858209556292,0.0937285722977847,91.78242530836656,104.18056,73.22196145693235,108847.73069207622,76502.15381240843,291.01951,184.8971048250945,303516.9884653962,192640.1860008092,304.70639,146.0678274682766,314825.2256770311,149941.7483849746,3867.26504,1738.253085164032,4002786.5993814776,1778464.0259988608,1281.10503,560.2387698817306,1323729.678619191,570588.0006830181,2095.18268,868.4688664094278,2155835.046807088,879901.4369416543,0.37979,100000,0,473548,4947.624122367101,0,0.0,0,0.0,24834,258.90170511534603,0,0.0,28247,291.520394516884,1922073,0,68984,0,0,0,0,0,48,0.5015045135406219,0,0.0,1,0.0104480106987629,0,0.0,0.068,0.1790463150688538,0.3126470588235294,0.02126,0.3291777559882336,0.6708222440117664,25.112546657685453,4.454631462237895,0.3305831614475905,0.2180761297581099,0.2212638289893118,0.2300768798049878,11.235531656103602,5.698935720168056,22.468701506017958,12668.891467740044,60.048651895492895,13.74476319305052,19.684450452956263,13.196703068459644,13.42273518102646,0.5582223888993062,0.7790197764402408,0.7073170731707317,0.5796610169491525,0.1140994295028524,0.7224334600760456,0.9207650273224044,0.8470588235294118,0.7745454545454545,0.1606425702811245,0.5044798407167745,0.7139272271016311,0.6629297458893871,0.5204419889502763,0.1022494887525562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022998753812018,0.0045939943411725,0.0067712986274669,0.0089334715531434,0.0113250167891084,0.0134176905678831,0.0155963115590191,0.0177601209199722,0.0200977785050934,0.0219439267648323,0.0243454718857998,0.0263741681045107,0.0285026589452679,0.030695201491999,0.0327357916137754,0.0345747430674745,0.0363487574712286,0.0382911162534892,0.0405596440896428,0.0425183888645787,0.0567269233580834,0.0703542833219948,0.0840379329878522,0.0963352437036647,0.107943166726395,0.1233334390628138,0.1363583343053773,0.1480331042699402,0.1601742230952355,0.170878614451375,0.1837424270141721,0.1961882923030329,0.2092317729571032,0.2207059441018239,0.2315374969751633,0.2415144470275655,0.2524316245036362,0.2625044980208708,0.2713502842166173,0.2795072301157505,0.2874112285734114,0.2950599239988307,0.3021199531266645,0.3088215907865249,0.3152934317916828,0.3217548698500259,0.3274757985841859,0.3322617943407494,0.337625067866284,0.3420497958108286,0.3425403225806451,0.3428343795931263,0.342984503754535,0.3437026562973437,0.3435489132046377,0.3433387279000885,0.3427566296991591,0.343653959327797,0.3443139257745999,0.3449689795336233,0.3461603312288064,0.3470723124975289,0.3473988560414004,0.3465470852017937,0.3478721355671095,0.3491664703881081,0.3501344470507466,0.3538267716535433,0.3570447582491108,0.3590762748916888,0.3602914389799636,0.3613837746060381,0.3596730245231607,0.361715207869054,0.3657447010740424,0.3708418397982466,0.3757763975155279,0.376981675931645,0.3800614353532532,0.3761252446183953,0.0,2.1016833532510915,58.05680655563304,200.0468416482549,307.5041219433128,fqhc7_100Compliance_baseline,80 -100000,95667,42641,401.4864059707109,6858,70.58860422089121,5414,55.98586764506047,2147,22.066125205138658,77.31725194233033,79.72731933490866,63.30264576078415,65.08566619964722,77.05268028043383,79.46186370685407,63.2062126873328,64.99153115684362,0.2645716618964968,265.4556280545819,0.0964330734513509,94.1350428036003,103.0843,72.5314747118403,107753.2482465218,75816.60835172035,294.77343,186.8081478160013,307499.3466921718,194654.9291349864,306.71847,147.31912554549018,317165.65795937995,151295.52994781762,3925.02987,1755.549553707304,4062863.1607555375,1795927.1052023252,1320.77901,569.2735245266421,1368390.312228877,582847.245682045,2120.3009,880.5787413986662,2181688.021992955,891023.1165563334,0.37857,100000,0,468565,4897.8749202964445,0,0.0,0,0.0,25097,261.69943658732893,0,0.0,28326,292.56692485392034,1922955,0,69018,0,0,0,0,0,54,0.5644579635611026,0,0.0,0,0.0,0,0.0,0.06858,0.1811554005864173,0.3130650335374745,0.02147,0.3305578684429642,0.6694421315570358,25.32846625210124,4.629248094881201,0.3297007757665312,0.1989287033616549,0.2395640930919837,0.23180642777983,11.189301705588935,5.50892825191338,22.926843599155028,12709.355345438757,60.936394784777086,12.649200065782988,20.003322668029558,14.386306632828616,13.897565418135946,0.5579977835241965,0.7892293407613742,0.6991596638655462,0.5767154973014649,0.1394422310756972,0.718989280245023,0.9237536656891496,0.8588235294117647,0.7437722419928826,0.193050193050193,0.5068159688412853,0.7269021739130435,0.649264705882353,0.530511811023622,0.1255020080321285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024820934685483,0.0048572732342949,0.0074286816119833,0.0095926185613104,0.0120160756982245,0.0141081796882958,0.0161589782302654,0.0181329682902909,0.0204620326983282,0.0226110832214902,0.0246332204780958,0.0271481123738671,0.0290693485130781,0.0310428372596525,0.0330386466444963,0.034877705582916,0.0369552597752622,0.0386935977984319,0.0409609222189853,0.0433336808089231,0.0578494264161982,0.0717008398433409,0.0854416426966764,0.0982607872226255,0.1100749024158666,0.125107148526377,0.1380810868180853,0.1498205518695619,0.1610396827941475,0.1722218050355621,0.1856938206180459,0.1991275923280079,0.2111391633656901,0.222132224168126,0.2329907808214651,0.2438405355381427,0.2535289851029403,0.2640482296306294,0.2728242006283815,0.2803992948233624,0.2885600916210682,0.2959121629522228,0.302678455183515,0.3094153742898919,0.3148537471594016,0.3206146408839779,0.3254154092736129,0.3310345705088239,0.3362554546984863,0.3416085161392447,0.3422210856427581,0.3418515411170864,0.3426496664696445,0.3421170487871827,0.3420167316681056,0.3412895892851657,0.3408135754500039,0.3410354241357761,0.3430046675443245,0.3439849959810663,0.3448295273300433,0.3458067835516681,0.3464149832888403,0.3462452897900592,0.3474529145813689,0.34920759659463,0.3512354152367879,0.3531582100848286,0.3545384018619084,0.3565248594553646,0.3586817015034836,0.3616600790513834,0.3641149235745544,0.3697020884520884,0.3692045131316962,0.3755952380952381,0.3787714683583475,0.3856382978723404,0.3892231947483588,0.3780674846625766,0.0,2.3609168583331384,57.4686675107525,207.9101501352077,310.4980343819257,fqhc7_100Compliance_baseline,81 -100000,95849,42937,404.8242548174733,6849,70.16244300931673,5316,54.80495362497261,2080,21.241744827802066,77.4717338221379,79.75675141475966,63.40399372213196,65.09000007330788,77.22041070688009,79.5085647273906,63.31189916850699,65.00203197603332,0.2513231152578186,248.1866873690564,0.0920945536249675,87.96809727455468,104.40826,73.45666925689353,108929.94188776096,76637.90885339808,293.03284,186.1741769228793,305079.87563772185,193594.34167199337,309.30172,149.166938810578,318635.69781635696,152534.89020706376,3822.63621,1716.801150614844,3945296.2993875775,1748378.7886569635,1269.8053,555.1312220096717,1307167.2004924412,561687.5995620008,2045.60716,842.7304539368669,2092645.3484126076,845499.7213436685,0.38204,100000,0,474583,4951.360994898225,0,0.0,0,0.0,24971,259.8357833675886,0,0.0,28639,294.6822606391303,1921510,0,68877,0,0,0,0,0,50,0.5216538513703847,0,0.0,0,0.0,0,0.0,0.06849,0.1792744215265417,0.3036939699226164,0.0208,0.3239749826268241,0.6760250173731758,24.972184128496764,4.478734172406271,0.3357787810383747,0.2135063957863054,0.223288186606471,0.2274266365688487,11.22467613658614,5.789477279121455,21.860380983869156,12749.427796670972,59.66341800197753,13.3073102188122,20.153736365794607,13.091009677111831,13.111361740258886,0.5562452972159518,0.7524229074889868,0.7103641456582633,0.573715248525695,0.1273779983457403,0.7211895910780669,0.8814016172506739,0.8879120879120879,0.7101449275362319,0.176954732510288,0.5003777386048854,0.6897905759162304,0.649624060150376,0.5323819978046103,0.1149068322981366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023079259034315,0.0046094153640425,0.0068547324017927,0.009064149411287,0.0112795707666043,0.0136640654410044,0.0157586993725042,0.0179418394720468,0.020239772889733,0.0223349423218522,0.0243447802619854,0.026388119705454,0.028486311572243,0.0305175429570943,0.0326873518194,0.0345935005524633,0.0363899663822084,0.0385017981324296,0.040308177929144,0.042250736265909,0.0569736403069736,0.0708640839622838,0.084266895821762,0.0967406380027739,0.1094059614654918,0.1242150001057239,0.1367419864488012,0.1501654202525451,0.1622628617792439,0.1730701218531974,0.1860547694625275,0.1988458296409968,0.2108429156215729,0.2220900019651084,0.2324697716814742,0.2436659886805801,0.2544249512670565,0.2640011676996317,0.2731555404563728,0.2810677946724591,0.2892211766064315,0.297099927673176,0.3036464975674271,0.3098441629890089,0.3161298149833181,0.322398788788912,0.3282520960103957,0.3341927781235314,0.3396414213880379,0.3448797956657977,0.344705218162755,0.344922169649592,0.3454024522127498,0.3463404800645078,0.3459083166703695,0.3441892407478061,0.3433730190018134,0.3446809902220478,0.3452850727990202,0.3459747645281678,0.3473082953781826,0.3483745277078086,0.3492215868775825,0.3504888314811928,0.3520405722214248,0.3550077841203944,0.3554800339847069,0.3579483334895199,0.3594455638157438,0.3620459191696807,0.3653802854955644,0.366814533164343,0.3681097407500629,0.3692260630162129,0.3689707557918724,0.3728914941978705,0.3708913010243082,0.3734381297863764,0.3746586564718733,0.3712871287128713,0.0,2.5145817514432327,58.81958011074471,195.7073221806069,302.73153588326903,fqhc7_100Compliance_baseline,82 -100000,95734,42599,400.5995779973677,6696,68.72166628366098,5188,53.55464098439426,2078,21.298598199176887,77.34438518034166,79.6963592461727,63.33412346583962,65.07199600372242,77.09134738285849,79.44574836090904,63.24168671205909,64.98332438473912,0.2530377974831737,250.6108852636686,0.0924367537805253,88.67161898329812,104.0237,73.19664348874691,108658.86727808302,76458.12719488052,292.01698,185.6518582199956,304293.2187101761,193188.36382058164,302.96531,145.8868530703362,312312.02080765454,149178.89268816353,3741.77061,1676.3011947494851,3864050.326947584,1706541.5889333847,1247.7368,544.2082048686146,1284501.5459502372,549692.8372738716,2042.45202,840.3226881537107,2094972.5071552424,844904.0506575202,0.38007,100000,0,472835,4939.039421731047,0,0.0,0,0.0,24928,259.67785739653624,0,0.0,28114,289.5418555581089,1919313,0,68960,0,0,0,0,0,44,0.438715607830029,0,0.0,0,0.0,0,0.0,0.06696,0.1761780724603362,0.3103345280764635,0.02078,0.318575280261104,0.681424719738896,25.23870720280453,4.507292795040327,0.3276792598303778,0.2180030840400925,0.2201233616037008,0.2341942945258288,11.404200471241229,5.848853133348087,21.833503848867263,12653.536503399466,58.50169789857724,13.326687264139482,19.344653572231785,12.669161561597596,13.16119550060838,0.5522359290670779,0.7648099027409372,0.7070588235294117,0.5779334500875657,0.1135802469135802,0.7283582089552239,0.910025706940874,0.8700440528634361,0.7470817120622568,0.1458333333333333,0.4909043659043659,0.6886792452830188,0.6476725521669342,0.5288135593220339,0.1056410256410256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0046231991321363,0.0067675199626619,0.0091709576185978,0.0115297801817923,0.0140075127502977,0.0162145084690487,0.0184295117097811,0.0209255039797284,0.0230328455950066,0.0252379830107284,0.0274969464943702,0.0294888799777908,0.0315142277469386,0.0335272757283155,0.0355596432668161,0.0372954340782759,0.0392325641690433,0.0412916502109792,0.043373644573607,0.0580460610110036,0.0718329757731149,0.0845832721475172,0.0971595629449685,0.1092657619183195,0.1245083111280294,0.1362937352183181,0.1490260327457259,0.1598726998942725,0.1704098369442866,0.1827429198824555,0.1953791738326248,0.2078450131547476,0.2187185764875617,0.2288158893202388,0.2400278986349596,0.2508564987891841,0.2608138200958229,0.2706314810192644,0.2785220298616836,0.2869850891297558,0.2946558098179606,0.3019584639962132,0.3086942442160308,0.3146244867215783,0.3208131344903724,0.3260776942355889,0.3316978054189075,0.3365828364013482,0.3408751700545495,0.3415534215949036,0.3419785360484315,0.3417259598450158,0.3414517807585568,0.3418133698108719,0.3409007240152166,0.3406732874321794,0.3413158889564602,0.3425472956792446,0.3436298957830571,0.3441700883064289,0.343859996045086,0.345093761798884,0.3456839934548226,0.3464034939555534,0.348158988162124,0.3490253244154804,0.3510782734994159,0.3536813167447926,0.3577164316247853,0.3593850096092248,0.3634177621032382,0.3653906991458399,0.3662313999392651,0.3695652173913043,0.3726420690473366,0.3778872805666769,0.3823103947096508,0.3887339654210819,0.3954491957630443,0.0,2.317497610609451,58.91539126884001,189.90573713046544,294.813238014041,fqhc7_100Compliance_baseline,83 -100000,95667,42924,404.1519019097494,6916,70.96490952993194,5425,56.079943972320656,2275,23.372740861530097,77.28108161739658,79.66794406284994,63.29287913429015,65.05563785774673,77.00024153640852,79.38782593056244,63.18991525507733,64.95565029415852,0.2808400809880567,280.11813228749816,0.1029638792128224,99.9875635882148,104.16054,73.33449838848311,108878.00390939404,76655.78662494186,293.60405,185.80361264050845,306146.8008822269,193468.2110408991,302.85924,145.93360790970507,312718.24139985576,149596.68821733352,3977.24258,1781.8434179230785,4112950.829439618,1818864.704748924,1318.44609,578.8196952945036,1362106.0449266727,589557.0323845884,2244.57022,934.8284799678768,2307739.993937304,944681.145671252,0.38251,100000,0,473457,4949.000177699729,0,0.0,0,0.0,24985,260.4659914076954,0,0.0,28028,289.13836537154924,1915182,0,68749,0,0,0,0,0,56,0.5749108888122341,0,0.0,0,0.0,0,0.0,0.06916,0.1808057305691354,0.3289473684210526,0.02275,0.3229881900576765,0.6770118099423236,25.28646657641783,4.622646925597249,0.3198156682027649,0.2070046082949308,0.2305990783410138,0.2425806451612903,10.94695095539826,5.300905168232533,24.208427372182715,12853.14072437721,61.16417765927826,13.256466487469996,19.45732371676449,13.836381847451005,14.61400560759276,0.5332718894009216,0.7533392698130009,0.6760806916426513,0.5787370103916867,0.1139817629179331,0.6997776130467013,0.9283819628647216,0.86810551558753,0.76171875,0.1237458193979933,0.4781648675171737,0.6648793565683646,0.6153262518968133,0.5316582914572864,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021526617028,0.0048560914040085,0.00699229730964,0.0091434609015452,0.0113906799829139,0.0139912834507759,0.0162632298060648,0.0185302405357945,0.0204651162790697,0.0224874359000603,0.0246895858752601,0.0270339644338576,0.0289284245166598,0.0308890651884974,0.0333563828140319,0.0357327488161459,0.0377774785319922,0.0398131811105345,0.0417126094825972,0.0436617956682162,0.0582655118735438,0.072,0.0855376411806692,0.0984427609427609,0.111384258282338,0.1264573326844544,0.1403989257242338,0.151915047716428,0.1633645899045195,0.1749009417247415,0.1882449384633638,0.2020115534264688,0.2140780029841968,0.225291031945068,0.2358846086036671,0.2461401952085181,0.2569553893788494,0.2668289000799901,0.2751017253529131,0.2841592108281716,0.2917468190140682,0.299124462312029,0.3064531435349941,0.3135902734393772,0.3193232304789726,0.3249132683926565,0.3300817493354732,0.3361825906127604,0.3411065089525689,0.3461660665113323,0.3459719482204145,0.3467434537620152,0.3467099021537503,0.3465297645845738,0.3473000224064531,0.3463260752481342,0.3455553966210524,0.3455676157170664,0.3459325788669266,0.3467807003388736,0.3480939908421112,0.349107356340161,0.3492345428402267,0.3496951907879883,0.3499210686095932,0.3510752829346427,0.3515418248763088,0.3552853014955704,0.3573749646792879,0.3611986752324329,0.3619348343401061,0.3639859019545017,0.366681469263465,0.3666031261913839,0.3651467950533371,0.3686071176054678,0.3692236598890943,0.3664230613073487,0.3602179836512261,0.3593023255813953,0.0,2.3450808427316536,59.45379960137208,202.26452487253096,312.9294745036838,fqhc7_100Compliance_baseline,84 -100000,95722,42789,404.2644324188797,6866,70.55849230062056,5326,55.02392344497608,2133,21.83406113537118,77.3612597271838,79.72636183510456,63.34108899169471,65.08899916842387,77.09549265454542,79.46375835731294,63.24277494947773,64.99467350417757,0.2657670726383827,262.60347779161464,0.0983140422169839,94.3256642462984,104.95496,73.74715388585528,109645.59871293957,77043.05581355935,294.46137,187.15360000761152,307005.5995486931,194902.03924658024,304.69522,146.79627955877132,314678.70499989553,150466.07780164777,3871.98172,1737.1606464093318,4001528.384279476,1771544.4503381692,1319.11517,566.3325789000834,1361315.5805353,574995.0934034544,2112.6221,883.6501408772032,2165204.592465682,886769.776200838,0.38022,100000,0,477068,4983.890850588162,0,0.0,0,0.0,25031,260.8386786736592,0,0.0,28159,290.5915045653037,1916559,0,68789,0,0,0,0,0,58,0.605921313804559,0,0.0,0,0.0,0,0.0,0.06866,0.1805796644048182,0.3106612292455578,0.02133,0.3262430939226519,0.6737569060773481,25.03338387264555,4.518797388784809,0.3379647014645137,0.2001502065339842,0.2215546376267367,0.2403304543747653,11.10660631460444,5.5300103745192,22.73886627074503,12666.403883978408,59.90032528470139,12.432790916969662,20.37938662763483,13.13986594492476,13.948281795172145,0.5418700713481036,0.7392120075046904,0.6988888888888889,0.5796610169491525,0.121875,0.6887218045112782,0.8978978978978979,0.8259911894273128,0.7323943661971831,0.1312741312741312,0.492992992992993,0.6671214188267395,0.6560178306092125,0.53125,0.1194906953966699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0044914429394111,0.0066570599338353,0.0088793164755006,0.0110241025119495,0.0133194843282214,0.015479371035833,0.0173890845969265,0.0195180304068215,0.021590909090909,0.0236125208903653,0.0258306372926616,0.0278511997202538,0.0298850337893522,0.031845293377087,0.0340022123665084,0.0359336005053486,0.0380213143503481,0.0398040989487475,0.0418841621604726,0.0573967339097022,0.0711534435838392,0.0842957694768753,0.0969370051417936,0.109713936378776,0.125507399577167,0.1377065173591228,0.1495376823468074,0.1612658606399795,0.1724174893612459,0.1858945373899188,0.1983277989897569,0.2094643808364225,0.2203614023197087,0.2306271439880376,0.2411621472053126,0.2514077989272851,0.2617021993953629,0.2707645904910932,0.2798342130271006,0.2874971084894749,0.2947818768410716,0.301818482980561,0.308323451555332,0.3147620145351306,0.321079577620794,0.3271831795794895,0.3325914998601114,0.3374990287238726,0.3422807272343178,0.3425694051754315,0.3425405249336615,0.3427489192728501,0.3434997542713423,0.3435943192802438,0.3432014349885783,0.342234047607735,0.3429547171050471,0.3436869981206219,0.3446488264421444,0.3454371446264707,0.3463392378949874,0.3484931276533143,0.3485650224215246,0.3495897683397683,0.3502989301447451,0.3501951107540457,0.3521376731214147,0.3533839901042587,0.3557634640758066,0.3579953358635511,0.3590643274853801,0.3610761088709677,0.3618075135258706,0.3642166525861259,0.3664890467732386,0.3712318286151492,0.3700243704305442,0.3774964838255977,0.3827809215844786,0.0,2.352945147715676,58.45954005005192,197.0062282941218,306.66901489981245,fqhc7_100Compliance_baseline,85 -100000,95662,42468,400.1797997114842,6795,69.92327151847128,5254,54.45213355355313,2135,22.035918128410444,77.2430810454354,79.64937003612671,63.27207635196621,65.05078513258695,76.98248369613084,79.38411783610849,63.176596937845495,64.95546625319314,0.260597349304561,265.25220001822447,0.0954794141207173,95.31887939381534,102.63044,72.2811768864646,107284.43896217934,75558.92296467208,288.81562,183.0160231986233,301447.5653864648,190857.5957242538,299.10243,143.5164078988077,309453.61794652004,147637.72104881966,3823.42004,1713.2636751464968,3965514.331709561,1760578.6946831264,1306.20522,567.9372310514356,1353595.51336999,582138.9304956855,2105.63028,877.8453499888503,2174954.192887458,896747.4388399747,0.37951,100000,0,466502,4876.565407371788,0,0.0,0,0.0,24629,256.9672388200121,0,0.0,27742,286.75963287407745,1924527,0,69026,0,0,0,0,0,48,0.5017666367000481,0,0.0,0,0.0,0,0.0,0.06795,0.1790466654370109,0.3142016188373804,0.02135,0.3230769230769231,0.676923076923077,25.266237043170925,4.461306729040497,0.324514655500571,0.2131709173962695,0.2209744956223829,0.2413399314807765,11.1281022288389,5.720308776141205,22.76939835353206,12684.565985825597,59.388340989760266,13.043092688876095,19.45345561080375,12.848829301168298,14.04296338891211,0.5515797487628473,0.7616071428571428,0.7120234604105572,0.5925925925925926,0.112776025236593,0.6960556844547564,0.9121813031161472,0.8505747126436781,0.7130801687763713,0.1455223880597015,0.5044180762433729,0.6923076923076923,0.6645669291338583,0.5616883116883117,0.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024525701313442,0.004584829488974,0.0065683278681867,0.008951523587925,0.0112802986380234,0.0133509852843831,0.0154983431047667,0.0176237542885149,0.0201345713350785,0.0222622729227681,0.0241408661586897,0.0263819998562288,0.028291117761392,0.0302053178666721,0.032327986622902,0.0341019542963499,0.0362869810226236,0.0384547520939935,0.0405242354899105,0.0427852086612941,0.0573587192777127,0.0710058551811544,0.0839982362575064,0.0962991811043513,0.1089047242016363,0.1238526768227484,0.1364466918794883,0.1482377774461099,0.1599597693155433,0.1706368811083664,0.1842284160435078,0.1974632771423925,0.2100551114209162,0.2203898379325449,0.2307192135599197,0.2422480835154594,0.2516239392685844,0.2612851233614733,0.2710346238661422,0.2796748153923772,0.2879130303767834,0.2954388430235962,0.3026911141117665,0.3098997072796199,0.3162146707060383,0.3224930241746302,0.3286228385850961,0.3335586993404855,0.3389702826267664,0.3428840017477194,0.3436010960679238,0.3438917771005419,0.3434409088340021,0.3430332028418152,0.3434674941074678,0.3429318164347759,0.3424546451910387,0.3434918122000692,0.3445218166849615,0.3458867856822463,0.3466928198261066,0.3473369835739173,0.3475869336143308,0.3470012377630246,0.3474957657875635,0.3487711173096153,0.3493784789317336,0.3535908095585668,0.3571023532747377,0.3599034787854414,0.3616352201257861,0.3641991924629879,0.3657587548638132,0.3679623631035014,0.3677962856595826,0.3694321046944411,0.3793481667188969,0.3805877483443708,0.3861165319208252,0.3794573643410853,0.0,1.8246797283024931,57.3227152121681,199.7828512314065,303.0363736694188,fqhc7_100Compliance_baseline,86 -100000,95828,42822,402.7841549442752,6862,70.56392703593939,5360,55.45352089159744,2193,22.62386776307551,77.44904619750217,79.77570226852549,63.38601454967061,65.10708005489806,77.18028874638003,79.50483345202493,63.28722167769293,65.01001385421007,0.2687574511221413,270.8688165005668,0.0987928719776789,97.06620068799054,103.66202,72.97934932003261,108175.0845264432,76156.60278836312,294.57548,187.1354556886853,306921.1190883666,194803.54978574667,305.93452,147.2807346688774,316134.07354844094,151367.0583480411,3868.98068,1738.7231979441594,4000848.885503194,1778063.7314925175,1295.79084,565.3858236237397,1340430.239595943,578307.1746973128,2162.97344,896.5754789534977,2231436.5321200485,911719.727278943,0.38152,100000,0,471191,4917.04929665651,0,0.0,0,0.0,25093,261.3641106983345,0,0.0,28404,293.43198230162375,1926072,0,69048,0,0,0,0,0,53,0.5322035313269607,0,0.0,0,0.0,0,0.0,0.06862,0.1798595093310966,0.3195861264937336,0.02193,0.3193768257059396,0.6806231742940604,25.23369960208484,4.54135260822788,0.3220149253731343,0.2132462686567164,0.2270522388059701,0.2376865671641791,10.933907375045631,5.458986509946791,23.180947884083267,12737.958447277051,60.25082229618629,13.430888016932702,19.560968253936228,13.468827568574314,13.790138456743035,0.5479477611940299,0.7769028871391076,0.6929316338354577,0.5875102711585867,0.108320251177394,0.6996363636363636,0.916243654822335,0.852803738317757,0.6946308724832215,0.1137254901960784,0.4956085319949811,0.7036048064085447,0.6402157164869029,0.5527747551686616,0.1069676153091266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786425366861,0.0045411695538909,0.0065548486601118,0.0088174642679371,0.0109317957635478,0.0133179925264476,0.0154359063242355,0.01778952632707,0.0200408788962698,0.0222038043200212,0.024460726546088,0.0265188834154351,0.0285775963979892,0.0305788357391429,0.032776402640264,0.034951235639309,0.0369703367902461,0.0390916632102861,0.0412787798188014,0.0432560173232281,0.05687520211978,0.070890099434343,0.084999790382761,0.0979648444477132,0.1097787144362486,0.1252972321739957,0.1388941889800504,0.1507997277522545,0.1627316469471146,0.1740201327907475,0.1878891505629577,0.2007238156970777,0.2121011432355847,0.2227824340841627,0.2330976482729848,0.2437794997070755,0.2543800051234643,0.2638142166051205,0.2732819415673356,0.2815831267209762,0.2886893080599358,0.2962331964152352,0.3031444016902339,0.3094443846622906,0.3157129177323362,0.3218773823869365,0.3276802316149401,0.3320643139046458,0.3368078428333398,0.3412650364560027,0.3416013107004727,0.3417641566430494,0.3424780751068136,0.3432667897530579,0.3436018255097202,0.3430634646799285,0.3423625126135217,0.3443100065402223,0.3452393101336871,0.346603840682788,0.3481217193133207,0.3489256100683434,0.3510976374660255,0.3513598069230597,0.3511487071037201,0.3529029575341754,0.3535054510261592,0.3548772062056403,0.3553655017069651,0.3574147501982553,0.3596403140405331,0.3628177119411733,0.3644416323948117,0.3670537897310513,0.368994598692315,0.3742557751845677,0.3753661168490828,0.3813838550247116,0.3809258226436141,0.3837879369957741,0.0,1.8584890881525264,60.90700217743679,198.14549950868408,301.5183618326587,fqhc7_100Compliance_baseline,87 -100000,95815,42472,400.4800918436571,6845,70.31258153733758,5377,55.617596409747954,2153,22.16771904190367,77.3497797498425,79.68346368192735,63.33168066437421,65.06024415020188,77.08804593360489,79.4204365830484,63.235340840959,64.96547822349994,0.2617338162376086,263.0270988789505,0.0963398234152137,94.76592670193897,103.4484,72.78303299403771,107966.8110421124,75962.04455882452,291.54031,184.9507001466564,303782.7062568491,192537.4838455945,306.63169,147.41280588141845,316793.47701299377,151342.07378630392,3875.81228,1746.3046988968847,4012205.834159578,1789685.789173808,1294.2957,562.0028033501883,1337997.5577936647,573719.6298598218,2121.17206,884.4337032210408,2186527.9340395555,900102.9544062064,0.37772,100000,0,470220,4907.5823200960185,0,0.0,0,0.0,24763,257.9241246151438,0,0.0,28428,293.5239785002348,1923003,0,69014,0,0,0,0,0,51,0.5218389604967907,0,0.0,0,0.0,0,0.0,0.06845,0.1812188923011754,0.314536157779401,0.02153,0.3204681621847569,0.6795318378152432,24.975940192282952,4.528653550207909,0.3310396131671936,0.2042030872233587,0.232843593081644,0.2319137065278036,11.048238913168362,5.523047420503975,22.92405582881633,12611.460917008624,60.68951751691975,13.082749110826091,19.998152621869384,13.946232684523396,13.66238309970088,0.5441696113074205,0.7723132969034608,0.6803370786516854,0.5814696485623003,0.111467522052927,0.7061781609195402,0.9124668435013262,0.8512035010940919,0.6976744186046512,0.1556420233463035,0.4875784190715182,0.6990291262135923,0.6213151927437641,0.544689800210305,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021577486476082,0.0044916706378577,0.0066373028599265,0.0087779008219122,0.0108127352253077,0.0130034112316073,0.0152324632952691,0.0173534906035952,0.0195529298731563,0.0216276522789383,0.0237004233682894,0.0257405410955387,0.0278134800267338,0.0296455711843812,0.0316883974253177,0.0338089874869548,0.0359087427281949,0.0378387909842442,0.0399393221536479,0.0419993961415527,0.0561258554498414,0.0698683563892635,0.082923710605473,0.0961413169122128,0.1082770323682241,0.1233135969549587,0.1358824777259228,0.1480295016017283,0.1598291054739652,0.1704617364723548,0.1838487231979312,0.1965694497051025,0.2083859038503371,0.2194106202041842,0.2295033276497442,0.2411576987855686,0.2513028825229608,0.2610710549700235,0.2699666371621161,0.2786729423620893,0.2868018836270233,0.2943281487545316,0.3013585155732273,0.3077770856294025,0.3137326338288157,0.3195845807000037,0.325249518473122,0.3301605883999695,0.3362335728620444,0.3407137481680992,0.3405325244354567,0.3417250317101417,0.3414486126400767,0.3412303721854112,0.3413802347054268,0.3406502317870629,0.3410269832960548,0.3425648784659408,0.3434471422211568,0.3433381088825215,0.3441868330076657,0.345706184442726,0.3465544030571537,0.3484855273770051,0.3486662971976579,0.3508143577945675,0.3515558093063088,0.3553459119496855,0.356622539749247,0.357764073371284,0.3605751729159082,0.3613614675007952,0.3619372355875481,0.3639849681724058,0.3676609401548046,0.3686265231278836,0.3681630151677647,0.3778764634638676,0.3850999726102437,0.3880712625871417,0.0,1.9442479832189463,61.777791261939406,197.2406113760676,304.7701693328797,fqhc7_100Compliance_baseline,88 -100000,95799,42958,403.65765822190207,6998,71.83791062537186,5470,56.51415985553085,2216,22.76641718598315,77.41775944651599,79.74481303568449,63.37436231324406,65.09463094666036,77.15221230513986,79.47820419026671,63.27860970815281,65.00029818988266,0.2655471413761319,266.6088454177782,0.0957526050912562,94.33275677770324,104.66324,73.62590875241364,109252.95671144791,76854.5692047032,295.41014,187.47053464331907,307789.41325066023,195116.41524788263,311.11244,150.25055979686172,320458.282445537,153552.38573991143,3979.16641,1777.279989954966,4117268.155199951,1819082.7061501157,1337.52087,582.145486082331,1383684.8088184637,595295.9653685448,2183.02856,895.1152971652172,2246596.624181881,910423.3603695156,0.38255,100000,0,475742,4966.043486883997,0,0.0,0,0.0,25126,261.6833161097715,0,0.0,28807,296.34964874372383,1918895,0,68823,0,0,0,0,0,55,0.5741187277528993,0,0.0,0,0.0,0,0.0,0.06998,0.1829303359038034,0.3166619034009717,0.02216,0.3398416166029492,0.6601583833970508,25.134962806657107,4.532109843578676,0.3345521023765996,0.19981718464351,0.2303473491773309,0.2352833638025594,11.276896664687188,5.732649141668472,23.45938208457731,12824.337902722242,61.32528238005329,12.813737350798478,20.521133613489035,13.918624124048234,14.071787291717554,0.5455210237659963,0.7813357731015553,0.6994535519125683,0.5555555555555556,0.1165501165501165,0.7209821428571429,0.9501385041551248,0.8658008658008658,0.7007299270072993,0.1376518218623481,0.4883664566165778,0.6980874316939891,0.6432748538011696,0.5152129817444219,0.1115384615384615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099069451898,0.0047236272591811,0.0070014510253574,0.0093640186061627,0.011958024892215,0.0142208558980414,0.0161859137702578,0.0183106066791867,0.0205339438663913,0.0228026364269046,0.025020500205002,0.0272126301094253,0.0292654345099812,0.0315437278015133,0.0336347607312621,0.0358087172071885,0.0378664790073373,0.0399340652505209,0.0419891339351568,0.0439847588906471,0.0591457307403388,0.0731227982145283,0.0872062553717795,0.0998687043747702,0.1119700065294774,0.1276633954132026,0.1402999618692539,0.1522737419478283,0.1639515655838267,0.1748197817028888,0.1886828974535443,0.2018083026368379,0.2133783549031529,0.2244057952026901,0.2349361192586977,0.2460289367727091,0.256027285798678,0.2660333075048569,0.2748020704731054,0.2826333062699402,0.2903777290054291,0.2976266912597331,0.3043226712951483,0.310431473903367,0.3169157608695652,0.3226449699043586,0.3281853281853282,0.3332782719186785,0.338566588210951,0.3437569977738846,0.344304375873562,0.3446701415152723,0.3453524061611241,0.3455173011380047,0.3448332219003046,0.344983987373776,0.3441195560973293,0.3446476052916653,0.3463028379323879,0.347824535103687,0.3475098873498153,0.3490244046797009,0.3489862600536193,0.34993970791836,0.3504757316632542,0.3514169406607171,0.3532079993153225,0.3550254893322424,0.3574087078651685,0.360338189179534,0.3625370750627424,0.3626724918749001,0.3619686234817814,0.3623940758836552,0.3656015928700104,0.3677527551509343,0.3718389010302841,0.3718788374948833,0.3685510428100988,0.3755795981452859,0.0,2.281327504991894,59.034669670882046,202.94563692763137,316.44902595746544,fqhc7_100Compliance_baseline,89 -100000,95718,42848,404.4066946655801,6821,70.05996782214422,5359,55.370985603543744,2169,22.284209866482797,77.3893283971574,79.75028112706747,63.35181630130408,65.09381713142034,77.12569919829988,79.48829565457721,63.25665356254908,65.00203521766744,0.2636291988575152,261.9854724902524,0.0951627387549933,91.78191375289656,103.9082,73.07226267264527,108556.59332622914,76341.19253708316,293.55046,186.41375999978465,306056.3843791136,194126.86224094173,307.00551,147.05791193577326,317053.29196180444,150763.88813818817,3860.5381,1726.0490745725456,3990099.427484904,1760122.8029968715,1299.11096,566.5476492282392,1338416.8181533257,573084.6941430565,2127.6594,870.8075838432319,2187318.456298711,878492.6991818318,0.38181,100000,0,472310,4934.390605737688,0,0.0,0,0.0,25025,260.7868948369168,0,0.0,28422,293.2363818717482,1921954,0,68953,0,0,0,0,0,57,0.5954992791324516,0,0.0,0,0.0,0,0.0,0.06821,0.1786490662895157,0.3179885647265796,0.02169,0.3264767199444058,0.6735232800555941,25.061581453043768,4.635006174984604,0.335137152453816,0.2022765441313677,0.2317596566523605,0.2308266467624556,11.60517037726382,6.004267708165096,22.85609588813836,12770.850348756325,60.35739089733555,12.836984263135855,20.146437370976138,13.937142651530827,13.436826611692732,0.5594327299869378,0.783210332103321,0.7026726057906458,0.6014492753623188,0.1131770412287793,0.7305071915215746,0.93368700265252,0.8735083532219571,0.7301038062283737,0.1525423728813559,0.5034670629024269,0.7029702970297029,0.6506899055918663,0.5624344176285414,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078855950656,0.0042567423758703,0.006573141413834,0.0088035498512433,0.0108271318775161,0.0132117338110457,0.0155103538235773,0.0175710699781637,0.0197921669204123,0.021999611169663,0.0239883593437785,0.026162701221952,0.0281240045623156,0.0304069007401002,0.0323515459026875,0.0343501984126984,0.0364522941858539,0.0385560914890306,0.040433228005987,0.042303845993583,0.0568567460607516,0.0704726428025824,0.0841173447447636,0.0977635715562471,0.1101600219265881,0.1257402707275803,0.13882789710952,0.1506680151168361,0.1623703355518284,0.1734986007312653,0.1866096712715213,0.1990719709260821,0.210604693631314,0.2226401067063171,0.2333832038899034,0.244705830232146,0.2551697970024663,0.2648583606041181,0.274916896406975,0.2829214100831482,0.2899988437969708,0.2979827493513475,0.3051664834580334,0.3119665792844232,0.3176666181253337,0.3236210101308517,0.3291639565717716,0.3345959756454094,0.3396966324127041,0.3443061671105017,0.3444734224181969,0.3448090962836677,0.3446869550542836,0.3454230185680225,0.3459899321384553,0.3453318851443345,0.3441900156450007,0.3454292267365662,0.3463552772991692,0.3470494816295212,0.3471720029226071,0.3478071736465377,0.3499066440094824,0.3511243504748253,0.3526308181555362,0.3531143355823586,0.354881003277754,0.3565149136577708,0.3576888016268144,0.3606518377542524,0.3626403725006847,0.3640104751215862,0.3662882871456655,0.366714972160781,0.3697931425332955,0.3756525866160418,0.3801285976729945,0.3755052546483428,0.3742279618192027,0.3768059351815697,0.0,2.3969169050210724,58.07814359870584,204.91914859470916,303.5420445666688,fqhc7_100Compliance_baseline,90 -100000,95674,42966,405.27206973681456,6870,70.55208311557999,5351,55.36509396492254,2139,21.95998912975312,77.35982293729873,79.73697958821252,63.33991942654043,65.09047062659633,77.10538430243997,79.48256710264644,63.24718585010974,65.00049711842244,0.2544386348587579,254.41248556607832,0.092733576430696,89.97350817388394,104.2371,73.31192521603293,108950.2895248448,76626.8006104406,292.38531,185.97670540557135,305034.962476744,193816.1393648572,309.21196,149.05449029952484,319625.43637769925,153007.9912557348,3839.08465,1716.8357110402108,3972972.280870456,1754983.601611584,1291.66225,557.3512268962554,1336027.060643435,568601.020569864,2101.20788,861.3273851546637,2160110.583857683,868438.7812468809,0.38185,100000,0,473805,4952.285887492944,0,0.0,0,0.0,24922,259.9034220373351,0,0.0,28617,295.72297593912657,1918528,0,68784,0,0,0,0,0,55,0.5539645044630724,0,0.0,0,0.0,0,0.0,0.0687,0.1799135786303522,0.311353711790393,0.02139,0.3284429065743944,0.6715570934256055,25.01704938969093,4.54843373626049,0.3434871986544571,0.2104279573911418,0.2188376004485143,0.2272472435058867,11.30054161671219,5.728691861011034,22.50699878930355,12784.656073674794,60.15320518090135,13.225961833572926,20.762732871447405,12.961037916264493,13.203472559616538,0.5511119416931415,0.7548845470692718,0.690968443960827,0.5892399658411615,0.1143092105263157,0.7303625377643505,0.9041095890410958,0.8966244725738397,0.7290836653386454,0.1239316239316239,0.4921777998510057,0.683311432325887,0.6195014662756598,0.5510869565217391,0.1120162932790224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304289707133,0.0046827013713625,0.0070004565515142,0.0094655806300907,0.011479176834228,0.013344190544048,0.015294633122408,0.0175896828959719,0.0197654701832519,0.0220353547753498,0.024176859876657,0.0263657348037958,0.028480687401073,0.0304771318547805,0.0325838060856111,0.0349125635619496,0.0369062901155327,0.0388209548108736,0.040815053539869,0.0429168447052202,0.0578771416631842,0.0719543479398984,0.085120228386704,0.098126071905809,0.1103669405448734,0.1257565497100774,0.1386993026292046,0.1512259548814519,0.1630303483810277,0.1731743442235865,0.1874097541001271,0.2008316098363851,0.2126666303933837,0.2239877434887283,0.2342681597463086,0.2450240903804618,0.2548262548262548,0.2644304807724733,0.2735539907700332,0.28220886981402,0.2899216021831132,0.2972694848856925,0.3040572510054412,0.3108968985750209,0.3174429888403687,0.3233936768524558,0.3286512290523737,0.3350404107151934,0.3406921704042834,0.3449758619779988,0.3444673040461495,0.3452012596779295,0.3454960412498943,0.3458516293043679,0.3459482733022537,0.3447056121277084,0.3437811812033767,0.3440535077484347,0.3454570361998698,0.3460416331060159,0.3481354913815764,0.3492751901140684,0.3504769107945712,0.3504382720200865,0.3513389736543977,0.3510552265671875,0.3528959288909148,0.3559562016235605,0.3592147773563702,0.3624313350847862,0.362962962962963,0.3637675736355375,0.3662231841619454,0.3698714494650142,0.3695775715097556,0.3627862366622707,0.3635943279901356,0.3712489862124898,0.3823449769834822,0.3890379455730164,0.0,2.186509698801053,58.282464218717216,202.29295667666293,304.41963288863536,fqhc7_100Compliance_baseline,91 -100000,95851,42870,402.2597573316919,6749,69.11769308614412,5314,54.83510865822996,2126,21.7525117108846,77.34109898624328,79.63082879484128,63.34986309044478,65.04375789002867,77.07942325033464,79.37067584808314,63.25360034820464,64.95066319405967,0.2616757359086392,260.15294675814005,0.0962627422401425,93.09469596900044,104.20586,73.38133459963045,108716.5079133238,76557.71416013442,294.07238,187.23911917753003,306215.1359923214,194757.4977595748,307.00112,148.3288440166515,315957.2670081689,151569.46459666186,3843.10743,1736.57916761785,3972029.921440569,1774318.6170387887,1291.50324,563.4311885099507,1334468.2684583364,574880.9386547355,2090.96374,869.634806392505,2143302.8137421627,876713.9131823431,0.38188,100000,0,473663,4941.659450605627,0,0.0,0,0.0,25052,260.73802046927,0,0.0,28435,292.42261426589187,1916911,0,68806,0,0,0,0,0,59,0.605105841357941,0,0.0,1,0.0104328593337576,0,0.0,0.06749,0.1767309102335812,0.3150096310564528,0.02126,0.3355411499436302,0.6644588500563697,24.745474710094115,4.475237926343074,0.329318780579601,0.2149040270982311,0.2265713210387655,0.2292058712834023,11.35424313460319,5.851504476663479,22.52647706207481,12749.40700602365,59.93651554274713,13.524192748919388,19.711620942496086,13.33841615637992,13.362285694951728,0.5545728264960482,0.7845884413309983,0.6925714285714286,0.5872093023255814,0.1083743842364532,0.7236363636363636,0.9293193717277488,0.8755364806866953,0.7453874538745388,0.1171875,0.4955572480324955,0.7118421052631579,0.6261682242990654,0.5412647374062165,0.106029106029106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021669788871449,0.0042253092987202,0.0065524551420543,0.0088330253619509,0.0110788120261012,0.0134739070259708,0.0159336573041148,0.0180260137719969,0.0203766878434416,0.0227400595353785,0.0249828428610937,0.0272709557654636,0.0293232542136129,0.0313496717904397,0.033416109388041,0.035565738819911,0.0376065017784763,0.039723160446756,0.042016196013289,0.0440097799511002,0.0588443851215366,0.0729910224386777,0.0861754724096032,0.0990779054380474,0.1116154170176916,0.1269395299709532,0.1393473884945439,0.1509680711939013,0.1624690514812601,0.17368516950515,0.1869652715747785,0.1988255396461478,0.2103277708322009,0.2208654014343187,0.2314895302648518,0.2421747753537278,0.2527673629708981,0.2623673818390468,0.2717192695742966,0.2797045012026113,0.2880975519459484,0.2956586826347305,0.3028632276384287,0.3086767402010713,0.3154595592701474,0.3211779649520896,0.327090870397957,0.3324934463363111,0.3383561821171049,0.3441523286368858,0.3445367963035308,0.3447877085742607,0.3444297119643411,0.3439302170574086,0.3439628067770344,0.3431365024789329,0.3420405313189342,0.3438364738437212,0.3446818743987907,0.3460328305075603,0.3472342835567302,0.3475257773000517,0.3489633914622302,0.3506305981093338,0.3522114871097733,0.3523100791501223,0.353847920314608,0.3560687773618425,0.3593237090113303,0.3605784595717481,0.3636613776024947,0.3629994116703214,0.3647118687189924,0.3669759950916481,0.3740093573952067,0.3762936221419976,0.3789032157837502,0.3739272578667756,0.3803596127247579,0.3883495145631068,0.0,2.346944506151234,60.33603785194661,193.8862286499323,303.238100611511,fqhc7_100Compliance_baseline,92 -100000,95658,42892,404.20038052227727,6943,71.64063643396265,5348,55.49980137573439,2169,22.371364653243848,77.31769350596971,79.74012879280806,63.289715480586615,65.08125143607965,77.05384131696547,79.47430190044474,63.19401427503492,64.9871977067103,0.2638521890042398,265.8268923633216,0.0957012055516983,94.05372936934953,104.3416,73.39522392803477,109077.75617303308,76726.69711684833,294.01866,186.66289277482096,306918.95084572124,194690.41593066577,309.81095,148.50954077249713,321809.69704572536,153634.2102143703,3858.54567,1736.642325298665,4004948.263605762,1786740.981349392,1309.71281,565.6876272365604,1359801.0934788515,582031.0761612467,2131.94806,877.6467461589067,2200929.603378704,893648.9187472427,0.38177,100000,0,474280,4958.079826046959,0,0.0,0,0.0,25058,261.4940726337577,0,0.0,28711,298.0409375065337,1914570,0,68697,0,0,0,0,0,41,0.4286102573752326,0,0.0,0,0.0,0,0.0,0.06943,0.1818634256227571,0.312400979403716,0.02169,0.3215017064846416,0.6784982935153584,24.98356911148396,4.469263026258287,0.3296559461480927,0.2054973821989529,0.2363500373971578,0.2284966342557965,11.319786268134187,5.911732762945675,23.059507447928787,12758.73460776113,60.58073955064851,12.870038090636784,20.122805490250144,14.1333314972819,13.454564472479683,0.5648840688107704,0.7716105550500455,0.7311401020986954,0.5822784810126582,0.1211129296235679,0.7342922028766087,0.927927927927928,0.8846153846153846,0.7659574468085106,0.1302521008403361,0.509312143034517,0.7036553524804178,0.6756756756756757,0.5295315682281059,0.1189024390243902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021679228462598,0.0047053096986168,0.0068832487309644,0.0090956208904562,0.0111204940633044,0.0132844335778321,0.0153938750943627,0.0173683834121721,0.0194242321901896,0.0216281596588695,0.0236308576707899,0.0261680513284527,0.0283595922150139,0.0303689873221856,0.0325047010931333,0.0347899872719558,0.0370043961512939,0.0391810617943098,0.0412321781663024,0.0433522093253657,0.0577397374801438,0.0722264135127205,0.0858445282384698,0.0988024898101045,0.1106922223982258,0.126102750389206,0.1388463827254952,0.1516382085225213,0.1635986351627429,0.1747843924862258,0.1872472146424064,0.2004311979285165,0.2128333859708352,0.2242600764286574,0.2342765216624796,0.2450398695782364,0.2550421811274372,0.264557831555951,0.2737841151627991,0.2827481895682464,0.2905339693419164,0.2980996512906925,0.3049054905490549,0.3109106611649553,0.3169450086969214,0.3223718280683583,0.3277877922988333,0.3331636419171736,0.3375665763862791,0.3424516333650491,0.3432366824005394,0.3436828475398094,0.3438839990972692,0.3429604454407404,0.3436366339577758,0.3430403829630539,0.3416357113375877,0.3428064235112346,0.3440257164352643,0.3448632641775336,0.3451483110320951,0.3455550074000986,0.3461939520333681,0.3477902337917047,0.3488338646659795,0.3515637196232502,0.3515802637562528,0.3554164057608015,0.3577156062887356,0.3589051963506545,0.3600877593929975,0.3622076607532896,0.3630557136533232,0.3683608058608059,0.3652502360717658,0.3687901117185643,0.3657257442542033,0.3687714343352834,0.3631331303625795,0.3601547388781431,0.0,1.539274957481362,58.94768019931495,211.19210283283897,298.11767527614785,fqhc7_100Compliance_baseline,93 -100000,95715,42813,401.9537167633077,6794,69.74873321840882,5252,54.348848142924304,2180,22.410280520294624,77.34880342590687,79.70633838873283,63.338894218876014,65.07705634936818,77.07868119863973,79.43652273044766,63.23929504256179,64.98027394927075,0.2701222272671373,269.81565828516807,0.0995991763142214,96.78240009742468,104.49802,73.54364904177588,109176.22107297707,76836.07484905802,295.4468,187.94269227081344,308177.13002141775,195860.24371395644,303.94675,146.6427840697914,314636.21167006216,150921.58767426354,3835.15172,1734.714218666769,3971076.821814763,1776606.256769336,1306.74883,574.0699336215964,1350352.1809538736,584872.4793622697,2152.93694,901.9297219286484,2214901.823120723,911656.3683770868,0.38051,100000,0,474991,4962.55550331714,0,0.0,0,0.0,25217,262.9263960716711,0,0.0,28013,289.72470354698845,1915237,0,68676,0,0,0,0,0,57,0.595517943895941,0,0.0,0,0.0,0,0.0,0.06794,0.1785498410028645,0.3208713570797762,0.0218,0.318105616093881,0.681894383906119,25.22745432957793,4.549705927578692,0.3196877380045697,0.2088728103579588,0.2273419649657273,0.2440974866717441,11.066473966572898,5.530833488664014,23.335375168743816,12771.58143210446,59.3220732067245,12.86006339272459,18.88345955313215,13.295453322213248,14.283096938654516,0.5392231530845393,0.7584320875113947,0.6885050625372245,0.5711892797319933,0.126365054602184,0.6871678056188307,0.927536231884058,0.8436724565756824,0.7406015037593985,0.1584158415841584,0.489707750952986,0.6808510638297872,0.6394984326018809,0.5226293103448276,0.1164453524004085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366439500572,0.0046121720796334,0.0071026330475369,0.0095084265382622,0.0116825280624694,0.0137629154578307,0.0159519708073837,0.0183219352863121,0.0204486229625466,0.0226705150249733,0.0249269717624148,0.0273415850729724,0.0294042050069398,0.0317296902185662,0.0337112264160675,0.0358135545934551,0.0379888383843613,0.0402568971062761,0.0427011852776044,0.0445632241393681,0.05923388612724,0.0736189898059573,0.0869373622914699,0.0989236450869606,0.1110864978902953,0.1276406681406099,0.1406256632284901,0.1532744908062987,0.1640775246805419,0.1752861541102136,0.1889495739477965,0.201891447368421,0.2134450125095181,0.2239759365600218,0.2334202621067573,0.2441521601826099,0.2544766032551021,0.2641124946522258,0.2732361423348547,0.2814372629673339,0.2889326232924288,0.2962057305986826,0.3035042026755061,0.3095674684500054,0.3153803172752229,0.3211231857273108,0.3270555868192334,0.332527883404764,0.3381373145141467,0.3434450013189132,0.3439065783093583,0.3432147381175304,0.3435662412747655,0.3429286789394465,0.3429336905559276,0.3416531156996901,0.3407302836114459,0.3406965468500896,0.3411454769399206,0.3428361919410512,0.3440884391980513,0.3460618638205356,0.3471322218727063,0.3489107046799354,0.3481961994791164,0.3489654091336607,0.3492331463889206,0.3515057768798535,0.3541241107276185,0.3548708545918367,0.35609465284784,0.3578415564871546,0.3628273256930661,0.363840843868766,0.3663091361808083,0.3721184178597427,0.3761467889908257,0.3734509556815795,0.3681209010550328,0.3631662688941925,0.0,2.071475942145773,58.0725235321686,203.9016950890535,291.7543265956384,fqhc7_100Compliance_baseline,94 -100000,95631,42778,403.4988654306658,6656,68.32512469805816,5163,53.34044399828508,2121,21.750269264150745,77.26744378178137,79.68310615956061,63.28338998351626,65.0697850386531,77.00703306035521,79.42549825823033,63.18835113179559,64.97868735826137,0.2604107214261546,257.60790133027456,0.0950388517206661,91.0976803917265,103.90358,73.06927450513874,108649.60107078248,76406.74029254941,292.32385,186.0718103956132,304984.5552174504,193882.6407337419,302.03199,145.25748513619942,312254.9277953802,149097.13149704854,3729.85388,1682.9031972886332,3850794.805031841,1711099.2546883542,1262.80882,556.7343996548169,1299597.93372442,561325.597333852,2094.0206,868.5602273297316,2148066.442889858,871782.8267571804,0.38177,100000,0,472289,4938.618230490113,0,0.0,0,0.0,24860,259.2360217920967,0,0.0,27966,288.8498499440558,1917580,0,68854,0,0,0,0,0,48,0.5019292907111711,0,0.0,1,0.0104568602231493,0,0.0,0.06656,0.1743458103046336,0.3186598557692308,0.02121,0.322700615076527,0.6772993849234731,25.06783622787593,4.554340690923909,0.3164826651171799,0.2138291690877397,0.2359093550261476,0.2337788107689327,11.096131120467469,5.434782424487307,22.540733306033097,12737.79560676213,58.473911802105846,13.058073998960896,18.599058934762507,13.436784333864985,13.379994534517474,0.5489056749951579,0.7771739130434783,0.6921664626682986,0.5681444991789819,0.1267605633802817,0.7168674698795181,0.9268929503916448,0.8481308411214953,0.7222222222222222,0.1578947368421052,0.4907431551499348,0.6976421636615812,0.6368159203980099,0.5242616033755274,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0045325491786655,0.0066703216374269,0.0089322006340947,0.0112208669467644,0.0133111989245121,0.0153761445439158,0.0176928809890861,0.0200820049284757,0.0224984895187965,0.0246141223526998,0.0264412211858487,0.028361863221134,0.0304273011097258,0.0324105613013769,0.0348503018774294,0.0369330833842552,0.0388300135972514,0.040723558292419,0.0428091832266405,0.0572829029190138,0.0714300676595655,0.0852945191812902,0.0981098299373453,0.1102806106289985,0.1261079049081378,0.1385737955646189,0.15132202956316,0.1628710488313633,0.1740358489147594,0.1871056803597812,0.2002534854245881,0.2118197649107531,0.222613719675665,0.2335061703931217,0.2445133772780147,0.2549439757153698,0.2647839783978398,0.273259840374201,0.2807288980574179,0.2882694110973477,0.2961165048543689,0.3040724517580206,0.3104606525911708,0.3165574348560936,0.3225070029739502,0.3280035059162336,0.3337363658347227,0.3391859847355941,0.3442191795305561,0.344100384537543,0.3441251464406312,0.3438337990797979,0.3434960821517026,0.3429827830364463,0.3426126499823324,0.3418761320664781,0.342262443438914,0.3436076577964999,0.3447016488533219,0.3458804948670703,0.3467777203514491,0.3459649714418193,0.346747556454331,0.347730352303523,0.3497465794795031,0.3505405947976713,0.3524924829878145,0.3531389341071555,0.3548244734202608,0.3582255083179297,0.3577768156726919,0.3607473035439137,0.3606265022873536,0.3615010025780578,0.362714320212509,0.3635938959825599,0.3632796365138372,0.3671897289586305,0.3649899396378269,0.0,2.269602903154475,58.63908726863277,195.22233543432884,288.38362781088284,fqhc7_100Compliance_baseline,95 -100000,95823,42821,402.283376642351,6945,71.19376350145582,5444,56.07213299520992,2163,21.988457885893784,77.40182060844235,79.71386311550013,63.36325590393732,65.07496691505158,77.1306991500186,79.44984817873252,63.2617061173066,64.9797918198065,0.2711214584237496,264.0149367676088,0.10154978663072,95.17509524508228,104.11676,73.2500170488894,108654.37316719368,76442.216980188,291.91329,185.0139516111819,303854.5130083592,192296.8251102112,307.91816,148.05365658289378,317212.5168279014,151218.30881023253,3901.76756,1744.3290835770356,4018458.825125492,1767160.3274941435,1285.08644,559.8203347088427,1316917.8172255096,560076.203561378,2124.75858,892.7771730858128,2162908.967575634,885889.1935063694,0.38011,100000,0,473258,4938.83514396335,0,0.0,0,0.0,24900,259.01923337820773,0,0.0,28452,292.7272158041389,1921163,0,69002,0,0,0,0,0,53,0.5531031172056814,0,0.0,0,0.0,0,0.0,0.06945,0.1827102680802925,0.3114470842332613,0.02163,0.3217700081944823,0.6782299918055176,25.34454823747914,4.492175380262377,0.3234753857457751,0.216017634092579,0.2349375459221161,0.2255694342395297,11.044139400778326,5.584368020646606,22.95221382507187,12749.613005196075,61.01227458847869,13.84229053772425,19.79510002478254,13.90559273809924,13.469291287872664,0.5530859662013226,0.7789115646258503,0.6978989210675752,0.5691946833463644,0.1123778501628664,0.7025222551928784,0.9097938144329896,0.819634703196347,0.7528089887640449,0.1333333333333333,0.50390625,0.7144670050761421,0.6575963718820862,0.5207509881422925,0.1068859198355601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.004469488897222,0.0067666274398409,0.0090801060361376,0.0113154603958886,0.0136508001140111,0.0156245222443051,0.0176464584609103,0.0201770345687593,0.0223329887516248,0.0244579980523807,0.0266966375169355,0.0288019735827722,0.0310640225695516,0.0333144242174204,0.0354618722876627,0.0376469857568731,0.0398278722521775,0.0420864579654749,0.0437624236369123,0.0585732165206508,0.0721977125891233,0.0858056064972491,0.098550267885282,0.1108817240543928,0.1264999154977184,0.1385740014832079,0.15083448495801,0.1620790863973531,0.1729745364171014,0.1854306060540866,0.1983183468787826,0.2109272278787747,0.2220206347818483,0.2324668470013855,0.2432585078461555,0.2541756390373436,0.2633414326853852,0.2721164867840159,0.2808291342189647,0.2884136957452471,0.2956174926022527,0.3029284742353428,0.3099818990422076,0.3160587134559771,0.3224041021595503,0.3281805437340409,0.3332951639375549,0.3383449883449883,0.3430603948896631,0.3436069370388323,0.3438742792662621,0.3435612194606773,0.3438533169710532,0.3440863407609744,0.343912750444213,0.3433726359104218,0.3440509194704637,0.344497771097713,0.3455155430243763,0.3465845255037076,0.3478758912171903,0.3487744123249534,0.3503310073358383,0.350416676673311,0.3506652433150207,0.3520737851917219,0.3553374310085299,0.3589429042094564,0.3614596569250318,0.3641761052246985,0.3680870353581142,0.3686635944700461,0.3679914562514303,0.3700271459327904,0.3738151658767772,0.3761299218630305,0.3792472024415056,0.3801925722145804,0.3791250959324635,0.0,2.741920366299858,58.7041192386508,200.01426995257955,315.3757397220007,fqhc7_100Compliance_baseline,96 -100000,95705,42730,402.4241157724257,6727,69.22313358758686,5252,54.38587325636069,2151,22.18274907267123,77.32145341825886,79.70852898119904,63.3143933609397,65.08013697733578,77.05447073224795,79.44002014443072,63.21655868244417,64.98393386164071,0.2669826860109054,268.50883676831927,0.0978346784955235,96.20311569507578,104.67534,73.64782157960987,109372.90632673318,76952.950817209,293.4211,186.79830247433387,306096.2018703307,194688.44101596976,306.25726,147.37647475349252,316830.2074081814,151531.73831980833,3788.31938,1700.8406665688624,3925043.017606185,1744063.7421212846,1261.24008,552.5376016147181,1306587.4928164673,566150.1825950374,2115.18532,875.7371627777986,2182772.039078418,890964.808790991,0.38059,100000,0,475797,4971.495742124236,0,0.0,0,0.0,25089,261.63732302387547,0,0.0,28412,293.7255106838723,1915286,0,68666,0,0,0,0,0,41,0.4283997701269526,0,0.0,1,0.0104487748811451,0,0.0,0.06727,0.1767518852308258,0.3197562063326891,0.02151,0.326643109540636,0.673356890459364,25.213643019617287,4.495585132905572,0.3204493526275704,0.2229626808834729,0.2225818735719726,0.234006092916984,11.282164495906027,5.742159056533444,22.738871551478915,12722.966790331882,59.29023347005737,13.847444728298653,19.07475777420345,13.050350095541573,13.317680872013709,0.5514089870525514,0.7924850555081128,0.6934046345811051,0.5739948674080411,0.1057770545158665,0.7254901960784313,0.9338422391857506,0.8644859813084113,0.6988847583643123,0.1567796610169491,0.4926133469179827,0.7210796915167095,0.6350597609561753,0.5366666666666666,0.093655589123867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0044011763512828,0.0067199935033295,0.0086482860946535,0.0111102067393781,0.0131611115638497,0.0155317825346482,0.0178170308352052,0.0198836626831188,0.0219153683951931,0.024072422313126,0.0262890356236971,0.0285664321277208,0.0309543927621952,0.0332266721717588,0.0352767237725002,0.0371847325081568,0.0391452796313784,0.04110942407288,0.0430754158502522,0.0573201173976165,0.0713179106039987,0.0841178384391759,0.0970786942520994,0.1092225070954536,0.1247446576560366,0.1379152956161766,0.1502172894209876,0.1611841402158811,0.1720901797588914,0.1855279175239962,0.1986187187425577,0.2111903933170901,0.2212036013959238,0.2324701326703483,0.2433611658656508,0.2534672245467224,0.2623619887117447,0.2713446445583632,0.2801401788884181,0.2876839085777736,0.2950351956221791,0.3018821022727272,0.3085839636551071,0.3156928984591455,0.3222437089681845,0.3279068021422494,0.3335537862793478,0.3391020914981956,0.3442255452699317,0.3443759422786991,0.3448821062762081,0.3451742344244984,0.344865942447706,0.3443495850313829,0.3433847664038774,0.3433032176256142,0.3447119730462651,0.3458532163442626,0.3459048640915593,0.3471943229391556,0.3482155242454868,0.34929074288116,0.3493301564466822,0.350722253139442,0.3519398986051643,0.3539581175929122,0.354964494040071,0.3586387434554974,0.3587560458887956,0.3595139844108207,0.3618950531172872,0.3667519181585678,0.367422776186421,0.3679335370511841,0.3722336437295924,0.375487291439264,0.3756428718370705,0.3802895322939866,0.3847641144624903,0.0,1.9297862926971128,58.59559587589271,197.0645438825902,299.2809780083196,fqhc7_100Compliance_baseline,97 -100000,95713,42724,402.1083865305654,6701,68.63226520953268,5193,53.764901319569965,2125,21.940593231849384,77.3455376358958,79.73417500052958,63.32130932583449,65.08810525797335,77.08578957708245,79.46941289721782,63.22661423269272,64.99287944648964,0.2597480588133436,264.7621033117531,0.0946950931417731,95.225811483715,104.64542,73.63325751331487,109332.50446647793,76931.30244931708,293.54531,186.27794830956384,306180.6546655104,194118.67182550053,305.49705,147.0536567858286,315646.0250958595,150916.50754894203,3758.72104,1688.365121532897,3896304.033934784,1734016.8084582365,1271.16889,553.6292031948755,1316421.1862547407,566794.9211631165,2091.0799,862.7675853444346,2160865.734017323,882709.9257212859,0.37917,100000,0,475661,4969.659293930814,0,0.0,0,0.0,24988,260.53932067744194,0,0.0,28165,290.7233082235433,1918139,0,68739,0,0,0,0,0,55,0.5746345846436743,0,0.0,0,0.0,0,0.0,0.06701,0.1767281166758973,0.3171168482316072,0.02125,0.3265998022319537,0.6734001977680464,25.20256262452904,4.589556981944171,0.324475255151165,0.2091276718659734,0.2295397650683612,0.2368573079145003,11.257330884056516,5.630659814368411,22.50023535893936,12665.70724465659,58.33856047466901,12.737298898810046,18.823253790743607,13.439663936310245,13.338343848805112,0.55420758713653,0.7845303867403315,0.6913946587537092,0.6015100671140939,0.1170731707317073,0.7204049844236761,0.9269005847953216,0.8752997601918465,0.7046979865771812,0.145374449339207,0.4996162701458173,0.7190860215053764,0.6309148264984227,0.5671140939597316,0.1106679960119641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025329537280012,0.0046959784978954,0.0071171125437839,0.0094310859976828,0.0116383169203222,0.013750254634345,0.0160816626216067,0.0183511534573082,0.0204720222513089,0.0227440298201777,0.0250653812624993,0.0270642248949784,0.029161866359447,0.0313150464728067,0.0335393855584565,0.0355425983934497,0.0375185158329794,0.0395105548290678,0.0415748097000956,0.0434465513648676,0.0587436687379249,0.0719391332558894,0.0850483276837344,0.0974549968963376,0.1091446049994726,0.1246232112449629,0.1367909513401099,0.1482917270171253,0.1597096770745368,0.1706468889866801,0.1837308815762527,0.19623152309275,0.2087092806843783,0.2198577680525164,0.2294188861985472,0.2399929094514796,0.2508900570306135,0.2609414729641547,0.2697229596351507,0.2782719186785261,0.2861935334605818,0.2936548757393682,0.3007000449353167,0.3075495642179868,0.3145245432266518,0.3199990156148101,0.3268180511641276,0.332000203143648,0.3364070773601963,0.3402438863968218,0.3411831046427325,0.3423524732922832,0.3419968794366118,0.3428315980734289,0.3428618026005604,0.3434610505723586,0.3420273799161193,0.3428331798447572,0.3436313250538848,0.3434708672693099,0.3454278838923146,0.3458003295416195,0.347023408555069,0.3461633413380613,0.3476843579465881,0.3491947099646458,0.3509323875986729,0.3541581254533413,0.3564687654060145,0.3599553642595249,0.3633167435276928,0.3651335074348452,0.3653239045334007,0.3703986558729188,0.3743949890860776,0.3761280231019131,0.3744193248683803,0.3826247689463956,0.3846365638766519,0.3862310385064177,0.0,1.8607390510327055,56.684190941325866,191.9161640836985,301.79144473869803,fqhc7_100Compliance_baseline,98 -100000,95613,42894,404.5474987710876,6802,69.85451769110895,5288,54.75196887452543,2144,22.109964126217147,77.23812690061078,79.66881772006792,63.25655152000609,65.05407749140895,76.98064186270582,79.40875300390061,63.16225808394283,64.9606584677075,0.2574850379049564,260.06471616730664,0.0942934360632605,93.4190237014434,103.71504,73.02060745007083,108473.55485132776,76370.78017640991,292.10554,185.8739633197733,304938.5020865363,193834.3733364549,307.25304,147.63196989355828,317491.43944861053,151526.7589731891,3854.51269,1733.6808987711072,3994267.997029693,1776333.482928608,1296.3807,566.716509732512,1342590.149875017,579646.3488722,2119.9364,876.2481316144015,2187860.332799933,892586.8162026957,0.38179,100000,0,471432,4930.616129605807,0,0.0,0,0.0,24857,259.3789547446477,0,0.0,28378,292.9308776003263,1914171,0,68709,0,0,0,0,0,59,0.6066120715802245,0,0.0,0,0.0,0,0.0,0.06802,0.1781607690091411,0.315201411349603,0.02144,0.3249057130884201,0.6750942869115798,25.3306729518669,4.586998189478987,0.333018154311649,0.2031013615733737,0.2223903177004538,0.2414901664145234,11.144032238446307,5.578067268675275,22.740608879005222,12807.198661211189,59.69960227446364,12.683255131735514,19.86856935810557,13.186999601176078,13.960778183446475,0.5448184568835098,0.7858472998137802,0.6893810335036911,0.5654761904761905,0.1237274862960062,0.6997725549658832,0.9343283582089552,0.8635346756152126,0.6410256410256411,0.1856060606060606,0.4933232552280171,0.7185385656292287,0.6301369863013698,0.5426356589147286,0.1076011846001974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024120317820658,0.004706216465672,0.007016083177646,0.0091784149700659,0.0113784399934864,0.0137432888128202,0.0159110612473864,0.0180607199771176,0.0202115254792054,0.0224719101123595,0.0246757777230567,0.0268590158544229,0.029085444927029,0.0310505860643485,0.0332727498037919,0.0352313056794313,0.0372052039599854,0.0392138531376276,0.0412316404176252,0.0432401418735656,0.0576219448451776,0.0713597116271271,0.0841159785691774,0.0973629336310213,0.1101595581790726,0.1257718419352447,0.1388508237993562,0.151657909041493,0.1627902000641917,0.1738327193048409,0.1879659499174641,0.2006157448561455,0.2120941381564611,0.2234578722471787,0.2342141802393494,0.2454565627427049,0.255183983894419,0.2640960595298495,0.2730156925176256,0.2817512716583803,0.2901316934501363,0.2978364116094987,0.3053580964813386,0.3125518534995852,0.3186860068259385,0.3245255023183925,0.3301398759448532,0.3360059239588387,0.341089604430174,0.3454569536423841,0.3455061494796594,0.345194353123187,0.3450454397693384,0.3456254624055242,0.3456263788682845,0.3447087953493379,0.3439060859606146,0.3441754542304074,0.3455273377091996,0.3465927441059317,0.3482710614441058,0.3492217898832684,0.3502610746168098,0.3511011235955056,0.3517243045989511,0.3528101080004194,0.3556442122786372,0.3573168802404682,0.3592215864943138,0.3605937599490608,0.3625744388456253,0.368404221298369,0.3693113677965032,0.3735334450708517,0.3776210625293841,0.3799338217915386,0.3799484301531928,0.3821873743466023,0.3831133113311331,0.3742824339839265,0.0,1.9446007694516576,58.385469632052846,202.22548639568151,298.72654146191456,fqhc7_100Compliance_baseline,99 -100000,95720,42752,403.80275804429584,6827,70.19431675720853,5339,55.21312160468032,2172,22.27329711659005,77.33641368994157,79.71041678159766,63.332022412709286,65.08889751721155,77.0707618325563,79.44557290993195,63.234300004197024,64.99417115679825,0.2656518573852651,264.843871665704,0.0977224085122614,94.72636041330418,104.27824,73.29599927231614,108940.91099038864,76573.33814491866,291.70541,184.9610218700884,304138.6021730046,192621.30303737652,303.84351,146.35999652865632,313484.7576264104,149944.1384129898,3075.83324,1395.5197672927782,3180296.0300877555,1424851.1872208614,1289.33896,566.3557658061428,1331870.7689093188,576662.237363241,2142.41334,892.0939268384756,2198997.659841204,899183.5495450293,0.382,100000,0,473992,4951.859590472211,0,0.0,0,0.0,24868,259.17258671124114,0,0.0,28151,290.35729210196405,1921138,0,68970,0,0,0,0,0,54,0.5432511491851233,0,0.0,0,0.0,0,0.0,0.06827,0.178717277486911,0.3181485279039109,0.02172,0.3218662952646239,0.678133704735376,25.16975394368944,4.552708931612655,0.3259037272897546,0.2022850721108821,0.2352500468252481,0.236561153774115,11.05238265150824,5.489984814994735,23.10994256065459,12745.769836893887,60.22738595167667,12.550614988483314,19.80445926783351,13.980839611646545,13.891472083713328,0.5459823937066867,0.7638888888888888,0.6885057471264368,0.5939490445859873,0.1155977830562153,0.7106254709871892,0.9085545722713864,0.8675496688741722,0.7518248175182481,0.1379310344827586,0.4915254237288136,0.6977058029689609,0.6254856254856255,0.5498981670061099,0.1097804391217564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0046247933549021,0.0070561957459769,0.0092690462639238,0.0115662797676571,0.013657751614283,0.015929185490368,0.0180620788237696,0.0200484598161798,0.0220911901398358,0.0238224591256214,0.02601562580208,0.0283407887294976,0.03030178185189,0.0321625358565325,0.0340365275093282,0.0361051574358815,0.0380824930495041,0.0402315575048327,0.0421345388637736,0.0570981047355505,0.0716266125404116,0.0850811695121439,0.0981435149170573,0.1097537838863358,0.1253765100032763,0.1382022471910112,0.1505300879403664,0.161797824764385,0.172267512239017,0.1853772975765141,0.1977874622862889,0.2098302579817869,0.2204511935325285,0.231194434981373,0.2422117777163395,0.2520810813822615,0.2620316047384629,0.2723624243248758,0.2811073614368243,0.2892531412916575,0.297355078389682,0.3045348713524246,0.3108575670142589,0.3167916697007208,0.3231648016151469,0.3291485876483313,0.3346387610304402,0.3389856835891993,0.3436914222351295,0.3441107922779506,0.3444891657936814,0.3449112609689342,0.3450283083071487,0.344915961377995,0.3442001167040324,0.3441165732789409,0.3456771836271169,0.3459212172095334,0.3469475494411006,0.3482164659916975,0.3496244326852568,0.3508300627531639,0.3515063276962706,0.3523949640634798,0.3538566160123453,0.3550593441963388,0.3575667184971282,0.3619121757899579,0.3662914146067866,0.3694829178208679,0.3730287319075394,0.3730092204526404,0.3727272727272727,0.3750835322195704,0.375,0.3774968789013733,0.3780387309435517,0.3769081321121287,0.3836671802773497,0.0,2.111412552440277,58.378993360005246,201.4937597126928,306.5357090160755,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95609,42797,403.5184972126056,6706,69.01023962179293,5258,54.4091037454633,2092,21.441496093464007,77.26635035352784,79.70524065376694,63.26822878755484,65.07247508299687,77.01042072440016,79.45072789550986,63.1743852593106,64.98195048047555,0.255929629127678,254.51275825707853,0.0938435282442426,90.52460252132732,103.78588,73.0133024521613,108552.41661349872,76366.55801458158,293.02498,186.20516017669664,305898.367308517,194172.6722135956,301.30759,144.9847231580519,311622.14854250127,148857.31882800336,3026.76196,1360.6255768233846,3134708.238764133,1392051.8118831771,1270.66376,552.2408442945866,1314128.868621155,562711.2032283426,2060.90854,853.5434599428474,2116243.8054994824,859553.7483209553,0.38003,100000,0,471754,4934.200755159033,0,0.0,0,0.0,25050,261.3875262789068,0,0.0,27846,287.74487757428693,1916442,0,68742,0,0,0,0,0,51,0.5334225857398363,0,0.0,0,0.0,0,0.0,0.06706,0.1764597531773807,0.3119594393080823,0.02092,0.3191549695165178,0.6808450304834822,25.30074532296717,4.526105388697208,0.3210346139216432,0.2131989349562571,0.2325979459870673,0.2331685051350323,11.187442896389522,5.63475918350561,22.26662695819193,12726.299701048983,59.223723332441686,13.23163702950892,19.057901359007246,13.603635796558894,13.330549147366616,0.5519208824648155,0.7627118644067796,0.6996445497630331,0.5960752248569092,0.1117455138662316,0.7071865443425076,0.9116022099447514,0.864321608040201,0.7303754266211604,0.1450980392156863,0.500506329113924,0.691699604743083,0.6488372093023256,0.553763440860215,0.1029866117404737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0048592442302815,0.007200381853819,0.0094965023588742,0.0117465035320942,0.0139221541628871,0.0159822011757021,0.0181682556226561,0.0202381926823279,0.0225637872732861,0.0248470791083377,0.026910346812491,0.0292043688171046,0.0312094030312403,0.0331866633614278,0.0352323993212201,0.0374792703150912,0.0395500763374635,0.0413808894393389,0.0431454346352401,0.0580013172613509,0.0720872718127135,0.0852407012531381,0.0983884558668632,0.1106780735107731,0.1262207910514162,0.1384481311043329,0.150201591398767,0.1618341200269723,0.1721122129941014,0.185248306510765,0.1979426366336419,0.2106071331336781,0.2222429148910531,0.2325996627393063,0.2433751511319645,0.2532366707253047,0.2628740020044368,0.2717697586692724,0.2801867529309197,0.2882082411408315,0.2961349262122277,0.3034244222545988,0.3091497781508574,0.3154177202878817,0.3212460813112488,0.326736024066182,0.3318551367331855,0.3368986037104741,0.3424134789325657,0.343351744577664,0.3435271115027676,0.3443394896376709,0.3441987592011453,0.3438002262039407,0.3433275085073117,0.3427937212620897,0.3432980701205969,0.3444870434395646,0.3459988898239833,0.3460749825993717,0.3470910389713469,0.3471830689611646,0.3478612145967054,0.3497100048332527,0.3510496108184606,0.3492200045882083,0.3531889290012033,0.3550245661164328,0.3576686134890791,0.358996698459281,0.362008126603935,0.364099624179884,0.364460354939447,0.3633977123570223,0.3642274500531978,0.365458161236041,0.3684853420195439,0.362534435261708,0.3645357686453577,0.0,2.319971644608809,57.62533117485043,201.0781614474783,295.1346046502111,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95713,42829,403.9576651029641,6742,69.37406621879995,5249,54.349983805752615,2080,21.45998976105649,77.34534288058313,79.71404957226997,63.32656324425341,65.07454654636797,77.0889201105753,79.4550959400436,63.23237051435645,64.98124403492754,0.2564227700078305,258.95363222636547,0.0941927298969531,93.30251144042734,104.9367,73.81581343540664,109636.8309425052,77122.03507925427,290.98281,185.2075827314785,303459.65542820725,192957.6414781084,303.08722,145.66077252172937,313695.3182953204,149894.00077940128,3006.9838,1360.8983558859245,3115971.205583358,1396627.406056228,1246.38872,542.9536546009921,1290880.5073500988,555995.4025281495,2049.74058,856.1041058078256,2116203.3997471607,872745.7298144086,0.38181,100000,0,476985,4983.492315568418,0,0.0,0,0.0,24832,258.8781043327448,0,0.0,28170,291.31883861126494,1914256,0,68651,0,0,0,0,0,40,0.4179160615590359,0,0.0,0,0.0,0,0.0,0.06742,0.1765799743327833,0.308513794126372,0.0208,0.3193937692955375,0.6806062307044626,24.95747773797454,4.518887966014889,0.3250142884358925,0.2154696132596685,0.2322347113735949,0.2272813869308439,11.014442676143656,5.428378775148635,22.16866857904021,12735.451018106034,59.23927391729057,13.386029361768664,19.128861674708485,13.593141972422222,13.13124090839119,0.5545818251095447,0.7860300618921309,0.6975381008206331,0.5750615258408531,0.1098072087175188,0.7175398633257403,0.932642487046632,0.8337468982630273,0.7414965986394558,0.1324786324786324,0.5,0.7100671140939597,0.6554105909439755,0.5221621621621622,0.1042752867570385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809624108878,0.0046723288670869,0.0069599448074347,0.0091001421897217,0.0112774309015843,0.0134597175699202,0.0153614058693414,0.0175474413809295,0.0197084619630773,0.0222231321206661,0.0240706948516597,0.0262990347093859,0.0285120651704346,0.0306070939228796,0.0329824561403508,0.034856315898284,0.0367957746478873,0.0386882523868825,0.0404978269458711,0.0425172726420108,0.0576790525722163,0.0715115488063965,0.0849422875131164,0.0971981103290089,0.1093477962667904,0.1249695751097941,0.138334801855646,0.1509074255527627,0.1618219125379387,0.1724659444384854,0.1863006023252556,0.1988088792636708,0.2110475112629769,0.2226832793203118,0.2332661445769862,0.2440795600691826,0.2551153678711362,0.2644371427285412,0.2735043705301396,0.2820139764005041,0.2898299201666088,0.2963292131021014,0.3029338319703658,0.3092904555366514,0.3156801535340775,0.321025388217895,0.3271250297272602,0.3323923962108208,0.3378001840307927,0.3422450705714436,0.3427549919050189,0.3428728977116074,0.3435402506747305,0.3437789754288363,0.3443235995232419,0.3435806921955337,0.3426085854184163,0.343581658126396,0.3446640046414798,0.345858758876637,0.3472515955157118,0.3485883514313919,0.3509642565487781,0.3512363375739115,0.3525906985719799,0.3534466995794478,0.3541666666666667,0.3572550744674165,0.3595690925678995,0.3606096595407759,0.3639266490283733,0.3623157558665461,0.3632349230381024,0.3674140965791689,0.3668393782383419,0.3650586701434159,0.3700871692919407,0.3743912337662338,0.3693072039746067,0.3703413103177717,0.0,1.858020316409031,58.31130502197267,199.89169119323697,296.17927948918765,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95653,42772,402.6951585418126,6902,70.83938820528368,5411,55.87906286263891,2130,21.78708456608784,77.2498286400838,79.64929119759043,63.26585613190741,65.03930533218177,76.98614838970181,79.38812676597111,63.16839169347741,64.94582584256497,0.263680250381995,261.1644316193207,0.097464438430002,93.4794896167972,104.01226,73.15361259519973,108739.15088915142,76478.11631124975,290.77915,184.5436197482117,303280.6184855676,192217.15967947867,305.68263,147.07336966468318,315793.2108768152,150713.59971429323,3103.19948,1407.962417477689,3206150.3141563777,1434108.6249637457,1278.33343,558.4604680818952,1319106.1022654804,566575.1581893354,2095.97734,876.3208923995634,2146106.6981694247,877425.2868986124,0.38193,100000,0,472783,4942.6886767796095,0,0.0,0,0.0,24773,258.23549705707086,0,0.0,28308,292.1079317951345,1913858,0,68739,0,0,0,0,0,47,0.4913593928052439,0,0.0,0,0.0,0,0.0,0.06902,0.1807137433561123,0.3086062011011301,0.0213,0.3226253115480476,0.6773746884519524,25.135263108947445,4.486045788060925,0.3378303455923119,0.2186287192755498,0.2199223803363518,0.2236185547957863,10.965295590897696,5.489102862757097,22.62591184682316,12842.263997620452,61.1735326199946,13.938664349350232,20.684628416373627,13.361610360409829,13.18862949386092,0.5547957863611163,0.768385460693153,0.6898249452954048,0.5756302521008403,0.1214876033057851,0.7205014749262537,0.9138381201044388,0.8505494505494505,0.7490636704119851,0.1593625498007968,0.499383477188656,0.69875,0.6365622723962127,0.5254604550379198,0.1115745568300312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096559828194,0.0045432880018659,0.0069528323910638,0.0090530380004064,0.0113619025337958,0.0135559041003809,0.015948117632663,0.0181344769489967,0.0206483943546737,0.0227978001044643,0.0253966951473439,0.0272829994863893,0.0294798580027782,0.0315904476258206,0.0336881446225957,0.0356186201404474,0.0373962510491466,0.0396382927918107,0.0417915106117353,0.0435938607832506,0.057822916013625,0.0716088427181619,0.084927740053106,0.0983637607197348,0.1102176069566685,0.1260993343140471,0.1392723642851074,0.1507320815839389,0.1621292027256875,0.173398358612985,0.1872902842962723,0.1999002342326711,0.2115640471984121,0.22281821771752,0.2330915874645384,0.2441485696503589,0.2544733836472354,0.2645037521864244,0.2735873760431728,0.2825734677224719,0.2916187489109601,0.2986851227336287,0.306131671582152,0.3127497712937551,0.3190799102351448,0.3249424519195069,0.3311512897510962,0.336711740497431,0.3423765387965213,0.3467703476049173,0.346876985253369,0.3470061161657301,0.3470752955818295,0.34741531942066,0.3481873787856184,0.3477412715235857,0.3474927377494166,0.348431424240427,0.3494124710524058,0.3498545937600976,0.3501300267591301,0.3514576998747988,0.352834715265794,0.3538932534948112,0.3555334819265432,0.3560927117668602,0.3565269529465509,0.3581897093974084,0.3588284871470712,0.3599665591783112,0.3625557883231624,0.3658872806319919,0.3681789540012602,0.3706299032675756,0.3714097991364745,0.3688186002596483,0.3708174178762414,0.3713646532438479,0.3752401866593467,0.3750471164719186,0.0,2.607514971049019,59.4760735732513,202.68821034360195,311.11023843530745,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95741,42837,403.5784042364296,6947,71.2547393488683,5445,56.24549566016649,2139,21.944621426557067,77.32698317968122,79.68820682087554,63.31555014592704,65.06198238038675,77.05663419284478,79.41829685898294,63.21541522075099,64.96446499415465,0.2703489868364386,269.9099618925942,0.1001349251760501,97.5173862320986,104.01666,73.22092558494171,108643.7994171776,76478.12910345799,294.79527,186.9375283190287,307306.60845405835,194650.85837731868,306.99719,147.87109696331595,316703.6274950126,151345.49070260595,3127.41264,1427.853759298854,3232161.8533334727,1456998.777220682,1325.37424,583.7519870644242,1370829.0596505154,596216.0381283077,2108.88652,892.4217576380958,2165580.326088092,900192.0603892477,0.38232,100000,0,472803,4938.3545189626175,0,0.0,0,0.0,25139,261.93584775592484,0,0.0,28617,294.98334047064475,1916134,0,68810,0,0,0,0,0,41,0.4282386856205805,0,0.0,0,0.0,0,0.0,0.06947,0.1817064239380623,0.3079026918094141,0.02139,0.3265027322404371,0.6734972677595629,24.831401812103927,4.464432242444389,0.3281910009182736,0.2106519742883379,0.2303030303030303,0.2308539944903581,11.0250690399094,5.528603260914779,23.04567263770807,12751.30092879519,61.70287076671392,13.60555901467242,20.18007331228594,13.999663279473554,13.917575160281984,0.5529843893480257,0.7611159546643418,0.7000559597090095,0.5797448165869219,0.1272871917263325,0.7045936395759718,0.9005376344086021,0.8711111111111111,0.7047619047619048,0.1726618705035971,0.4997518610421836,0.6941935483870968,0.6424831712789828,0.5378061767838126,0.1144024514811031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00265437414518,0.0050800024335341,0.0073178653350384,0.0097021293888166,0.0120620391558606,0.0142253449417035,0.0161316637435249,0.0181797766572076,0.0203384980172519,0.0225483874269454,0.0245974726096893,0.0267612429042158,0.0287608572750167,0.030694934975339,0.0329368804348947,0.0349765961623906,0.0369591999420247,0.0390112853705086,0.0409807100690113,0.0427965704403629,0.0575953397571746,0.071044482571034,0.0840182839889289,0.0972868991180582,0.1099669034719733,0.1251466934503357,0.1378666723227352,0.1499776438776162,0.161625769493844,0.171930841302038,0.1855376755515795,0.1985248724697014,0.2102657293956343,0.2215085999387281,0.2326398062527521,0.2439727318073491,0.2543764592852435,0.2634644196866094,0.2730154762175306,0.2816000366875709,0.2892493049119555,0.2965280463083395,0.304191616766467,0.3111116447731802,0.3170360633390538,0.3229278528667531,0.327857339921246,0.3331250876544311,0.3382078164737634,0.3433956279241891,0.3438043492915211,0.3444374000771817,0.3443036903284053,0.3441148353080911,0.344181474254904,0.3434926877227479,0.3433312162591299,0.344320837310338,0.34481341302598,0.3463957685572352,0.3475617764602135,0.3489215045457246,0.3494062157837109,0.349997755129529,0.3514596865718494,0.3533214678322776,0.3545207827453221,0.3568255568507608,0.3591987348444913,0.3588359074125541,0.3611098476233795,0.3633616118769883,0.3670169256905556,0.3679574791192103,0.369610048743907,0.3736587666548756,0.378225683310429,0.3866585563665856,0.3845725424672793,0.397196261682243,0.0,2.446287769732303,62.2920539517348,205.3692300317485,303.1035669111308,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95766,43145,406.4908213771066,6893,70.76624271662176,5345,55.30146398513042,2183,22.460998684292964,77.39144353273707,79.72918230508475,63.36142006586866,65.08681007782117,77.12527678414561,79.46171775373989,63.26410806619414,64.99114137142972,0.2661667485914591,267.46455134485814,0.0973119996745168,95.66870639145009,104.43532,73.46877888335766,109052.60739719734,76716.97563159958,297.20292,188.7690206529644,309851.1058204373,196623.13415300252,306.43895,146.89004669718426,316587.6198233194,150825.13341222948,3092.1132,1394.1250602789078,3201382.787210492,1428323.3091900132,1312.57462,571.9279000893996,1358585.447862498,585193.3046064364,2160.42048,897.1227256626682,2224730.238289163,911082.2974814055,0.38424,100000,0,474706,4956.9366998726055,0,0.0,0,0.0,25211,262.7341645260322,0,0.0,28351,292.6195100557609,1919057,0,68826,0,0,0,0,0,61,0.6369692792849236,0,0.0,0,0.0,0,0.0,0.06893,0.1793930876535498,0.3166980995212534,0.02183,0.3145306235310383,0.6854693764689617,25.10623081147638,4.567955769908031,0.3240411599625818,0.2011225444340505,0.2310570626753975,0.24377923292797,11.17376152822888,5.503983913864031,23.173042868976943,12824.451988275769,60.46991043405458,12.802295069010576,19.56354480465217,13.677420959949858,14.426649600441973,0.5466791393826006,0.7767441860465116,0.6916859122401847,0.5951417004048583,0.1181887950882578,0.7138461538461538,0.922437673130194,0.8602941176470589,0.762962962962963,0.1455938697318007,0.4929542645241038,0.7030812324929971,0.6397280966767371,0.5481865284974093,0.1113243761996161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0045299309869574,0.0069296483431748,0.0092625506545738,0.0114589582210653,0.0136796677794967,0.0159567964132871,0.0178137817046544,0.0200941883153367,0.0221005780938251,0.0241703296140329,0.026192405946384,0.0281956432387998,0.0304857966241251,0.0328433292786013,0.0349768095282366,0.0371439807915217,0.0390889951359143,0.0410893404708695,0.0431154815725327,0.0564271175825896,0.0706984043944546,0.0839111689238096,0.0968756244018887,0.1093690692083843,0.1257890896786541,0.1385168453536092,0.1504191311008042,0.1618452666987025,0.1733780640735699,0.1871696894677358,0.2001384142912755,0.2123326378021213,0.2239384769998798,0.2344754806582462,0.2460663465155907,0.2559054679226353,0.2656931026735565,0.2754429920527849,0.2835955827659209,0.2912302605720099,0.2993827160493827,0.3064920623654387,0.3127778643243178,0.3190688868391669,0.3256501182033097,0.3314950980392157,0.3371554379088294,0.3421737610235558,0.3471293475250267,0.3474494188549289,0.3471113004989759,0.3468905245084931,0.3469296473711548,0.347142263635824,0.3458876377026387,0.3460578290409227,0.3459459459459459,0.3463178360678104,0.3466507262410335,0.3469418386491557,0.3479759169769468,0.3485268776530912,0.3497035839396389,0.3509522428460943,0.3536684391125547,0.3551116065049015,0.3582585051220437,0.3594914356348225,0.3640935579149038,0.3653502132929682,0.3657201138010628,0.368404302717841,0.3719929290600261,0.3719367962910398,0.3801947280930895,0.3810970977055158,0.3838220424671385,0.387688098495212,0.3933358866334737,0.0,2.027086762962461,57.34778926500374,211.23135000039173,301.2830563418567,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95731,42555,401.2388881344601,6963,71.5860066227241,5454,56.428951959135496,2212,22.793034649173205,77.37264048070351,79.73222936702177,63.34029949113111,65.08193881061366,77.10011561772691,79.45733647284511,63.2419134999831,64.98462252680221,0.2725248629765957,274.8928941766593,0.0983859911480138,97.31628381145184,103.24644,72.62952261411013,107850.581316397,75868.3421400697,294.11313,186.45364640936637,306691.479249146,194237.90164580496,308.22127,147.8513349314624,318352.863753643,151698.6364631636,3124.777,1415.3626484293293,3235740.4393561124,1450452.589510853,1357.78829,593.7572409012397,1407049.9106872382,609417.8949440938,2187.80306,899.561161484832,2256671.548401249,916755.5589085527,0.37951,100000,0,469302,4902.299150745318,0,0.0,0,0.0,24955,260.1142785513575,0,0.0,28593,295.0246001817593,1923216,0,69064,0,0,0,0,0,57,0.5954184120086493,0,0.0,0,0.0,0,0.0,0.06963,0.1834734262601776,0.317679161281057,0.02212,0.3253968253968254,0.6746031746031746,25.211656904316087,4.509196424497114,0.3091309130913091,0.2262559589292262,0.2207554088742207,0.2438577191052438,11.189933958533622,5.576903309006939,23.50137293441975,12732.487762910923,61.66367677959568,14.502609169159191,19.076267828566422,13.400467035734284,14.684332746135777,0.5474880821415475,0.7552674230145867,0.7153024911032029,0.5714285714285714,0.1203007518796992,0.7159172019985724,0.9110576923076924,0.8758465011286681,0.7360594795539034,0.1391941391941392,0.4892672094744633,0.676039119804401,0.6580852775543041,0.5240641711229946,0.1154210028382213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759493670886,0.0044085008056915,0.0065025310163628,0.0086122846928826,0.0107474402383349,0.0131420892969847,0.0152593166435619,0.0175660641197064,0.0199122959449651,0.0220698126727403,0.0244117496283385,0.0263854951643703,0.0283795872620896,0.0305355303810504,0.0327043506071454,0.0347778455305559,0.0370017600165648,0.0388325346941315,0.0406485475237748,0.0424426113402491,0.057228475369098,0.0709913680355741,0.0835211843526217,0.0967860596123933,0.1088120586065141,0.1247317738338107,0.1369912405353242,0.1494903496265401,0.1613120215253531,0.1722566532993073,0.1860988478518359,0.1991713364633592,0.2120922140060896,0.2231566744679455,0.2330956938851849,0.2444496144642382,0.2549280053577408,0.2638121080423792,0.2732404925257849,0.2818731152465802,0.2895425290549613,0.2968003932216084,0.304143806804043,0.3103754561167658,0.3155929606071294,0.3218519843570732,0.3268652603096658,0.3322938675763052,0.3384541651014883,0.3437483499656792,0.3438194378981106,0.3439486939528227,0.3440393477740039,0.3441221153150546,0.3452648499010254,0.3443329651448208,0.3436846109948639,0.3448219133009788,0.3461485862764539,0.3465081405312767,0.3469410685193161,0.3473761134482827,0.3490704603634227,0.348695691082375,0.3488556782903761,0.3504848295276822,0.3511765711355478,0.3526644293197001,0.3561547890036771,0.3603742302226433,0.3629511918274687,0.3645108146888452,0.3656131479140329,0.368758100175345,0.3699454579650179,0.3737662028778689,0.3757287511506597,0.3800446156966132,0.3803867403314917,0.3812451960030745,0.0,2.105849455750546,62.20101643906708,204.1007401697852,306.3673579350067,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95745,42551,400.58488693926574,6789,69.66421223040368,5295,54.74959527912685,2178,22.38236983654499,77.33281654085012,79.69866042631772,63.319784280511655,65.0709001989343,77.0651300838201,79.43043841898748,63.22141253261397,64.97481658995025,0.2676864570300239,268.2220073302375,0.0983717478976871,96.08360898404555,104.73584,73.6719328098998,109390.40158755024,76945.98444816942,291.49104,185.03099662798223,303915.2436158546,192724.0133980701,300.33768,144.82874484662807,310175.204971539,148559.66417474436,3054.95408,1384.7682018526227,3160443.302522325,1416113.122464995,1289.46858,569.0353030773513,1333523.1709227634,581115.347130184,2148.73972,896.5214625892015,2210242.2058593137,907057.4329075732,0.37878,100000,0,476072,4972.290981252285,0,0.0,0,0.0,24925,259.7629119014048,0,0.0,27823,287.022821035041,1916617,0,68782,0,0,0,0,0,43,0.4491096140790641,0,0.0,1,0.0104444096297456,0,0.0,0.06789,0.1792333280532235,0.3208130799823243,0.02178,0.3143137529791112,0.6856862470208889,25.267142134998338,4.5498391749966975,0.3261567516525023,0.2092540132200188,0.2253068932955618,0.2392823418319169,11.41394856603082,5.851708081169074,23.19691837886145,12620.002522598372,59.63538358574458,13.033435828524524,19.32102173676976,13.3171140817102,13.9638119387401,0.5482530689329557,0.7815884476534296,0.6902142443543717,0.584241408214585,0.1168113654301499,0.7161438408569243,0.9325842696629212,0.8585131894484412,0.7279151943462897,0.1593625498007968,0.4932296890672016,0.7101063829787234,0.6366412213740458,0.5395604395604395,0.1062992125984252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019657712612347,0.0042802227338654,0.006487968321657,0.0088228418088858,0.0111606234485003,0.0132313396349413,0.0154600801558245,0.0174578866768759,0.0197235230363387,0.021953716977268,0.0242164511928806,0.0262763379471803,0.0283787118532532,0.0305767250257466,0.0325519489899094,0.0345750728712298,0.0369104579630895,0.0387716767504851,0.0408122946387722,0.0429714357147321,0.0566975331196692,0.0702119645958444,0.0828326045238619,0.095743226905245,0.1085741993970442,0.1234520901409642,0.1362676989977196,0.1483965045608881,0.1605767690253671,0.1716301864939354,0.1850639562427322,0.1981283133181867,0.2096804010482932,0.2202895064832834,0.2307734612169475,0.241971918323958,0.2527227280842706,0.2623031994508153,0.2712774410315784,0.2788817243709413,0.2867298029499618,0.2939364841444564,0.300697974806546,0.3070749964013243,0.3131095707162836,0.3189566848946439,0.324128854349461,0.3288541878948441,0.3340638535155743,0.3394667618405573,0.3399374207644377,0.3400862722399085,0.3408593805122415,0.3414588248917968,0.3420319644905193,0.3409732449680903,0.3391593973037272,0.3398602548294286,0.3404018811457888,0.3421715592560167,0.3433418405644798,0.343629802926365,0.3453025912393431,0.3459047619047619,0.3458058912933343,0.3485256796002198,0.349957056971085,0.3528835519039343,0.3549855338367088,0.3590470109346316,0.3598590582528714,0.3615294243298088,0.3625686683083917,0.3637195819665878,0.3681241184767277,0.374110109159943,0.3770868433144432,0.3767206477732793,0.3774157923799006,0.3758700696055684,0.0,2.201769599187284,57.50141454490049,200.87166558482824,302.4313867570132,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95776,42733,402.6687270297361,6785,69.63122285332443,5259,54.29335115268961,2165,22.187186769127965,77.34910350822409,79.67872273774603,63.34642956891118,65.06728457423705,77.08745879903395,79.41959070375609,63.25026793521287,64.97506122622278,0.2616447091901364,259.13203398994256,0.0961616336983084,92.22334801427225,104.016,73.25170493852943,108603.40795188773,76482.31805309204,292.58877,186.24498213554244,304867.7956899432,193833.9376624023,306.34181,147.41821213968302,316433.8769629135,151177.35314716707,3035.09296,1370.7400509566048,3135778.357834948,1398022.6475908426,1285.71293,560.5444317242257,1326948.0558803875,569809.8284731597,2132.5995,878.8838338175882,2188176.766622118,882884.8527705915,0.3807,100000,0,472800,4936.518543267624,0,0.0,0,0.0,24970,260.0442699632476,0,0.0,28289,291.98337788172404,1918933,0,68903,0,0,0,0,0,68,0.69954894754427,0,0.0,0,0.0,0,0.0,0.06785,0.1782243236143945,0.3190862196020633,0.02165,0.3380697805289814,0.6619302194710186,24.982956539830443,4.497239580833687,0.3179311656208404,0.2184826012549914,0.226468910439247,0.237117322684921,11.28572412935046,5.72219382901211,22.819556179094874,12743.252156404702,59.48622409960836,13.707902833223692,18.946237571144984,13.282667474145352,13.549416221094331,0.5594219433352349,0.8163620539599652,0.6889952153110048,0.5860621326616289,0.1234963913392141,0.7436472346786248,0.9365482233502538,0.8943661971830986,0.7455197132616488,0.1548117154811715,0.4965570007651109,0.7536423841059603,0.6187800963081862,0.5372807017543859,0.1160714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.0046321166847423,0.0067159712288604,0.008877512671278,0.0110220848415829,0.0133250539517081,0.0154304001304551,0.0172679491758942,0.0194852302567718,0.0214135172188005,0.023644633856493,0.0258896687600049,0.0279835983022804,0.0302805739105374,0.0322188199148392,0.0343424327869529,0.036515836635866,0.038696833329877,0.0405860349127182,0.0426116838487972,0.0572090499248622,0.0713815066988798,0.0847907230330481,0.0974030751121901,0.1098102032858753,0.1255059445178335,0.1386777753044805,0.1513740003403096,0.1624973319103521,0.1738916150598924,0.1869160890343135,0.2002487427675336,0.2119851246139794,0.2227484005030896,0.2335090170879042,0.2447137271408159,0.2549610482376839,0.2642994479238112,0.2727293354207791,0.2812707498568975,0.2887459955821296,0.2962053153658993,0.3034340756869335,0.3098044853364002,0.3158469945355191,0.3218261845171312,0.3280127193970805,0.3334097129399783,0.338497037891653,0.3429790832573565,0.3428887330780432,0.3433891017336898,0.3437381043014846,0.3441615706003961,0.3445068497221479,0.3437380343385765,0.342553595744007,0.3434600541916413,0.3449006441471458,0.3470690240806621,0.3480274506862671,0.349074551147398,0.3507608353447371,0.3511930147471437,0.3513931888544891,0.3514392925555643,0.3533314187248708,0.3564739866044503,0.3604152641462637,0.362283972893861,0.3632853794181183,0.3653217596313561,0.3652123848515864,0.3708731872878741,0.3713084201471853,0.3733381677544114,0.3751564455569461,0.3796162574788529,0.379020979020979,0.3777249306381292,0.0,2.318262433040064,58.85510340586912,197.7908711063125,298.0417622794134,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95663,42557,400.9909787483144,6843,70.27795490419494,5303,54.827885389335485,2142,21.91024743108621,77.31532774038504,79.7070867642735,63.31028192710126,65.07613594851367,77.04774639705245,79.44249891862113,63.21136617663401,64.98122166108155,0.2675813433325942,264.5878456523718,0.0989157504672491,94.91428743211829,103.64068,72.92052751811934,108339.35795448604,76226.46950034951,289.67885,183.87884780262635,302198.22710974986,191601.65142492537,302.07847,145.07432715073108,312500.0888535798,148951.61142335573,3037.28124,1381.492380473734,3142070.97833018,1411214.8902645062,1238.76779,546.2151294485126,1275244.598225019,551301.4144864827,2098.60784,882.3574330227402,2150134.7229336314,885298.2315710636,0.37965,100000,0,471094,4924.516270658458,0,0.0,0,0.0,24640,256.94364592371136,0,0.0,27927,288.6905073016736,1922805,0,68979,0,0,0,0,0,51,0.5226681161995756,0,0.0,1,0.0104533623239915,0,0.0,0.06843,0.1802449624654286,0.313020604997808,0.02142,0.3189655172413793,0.6810344827586207,25.220558028756365,4.409800202355779,0.3252875730718461,0.2178012445785404,0.233829907599472,0.2230812747501414,11.092378380237417,5.686119281027813,22.950681563054243,12720.826111930988,60.0546662559722,13.664772075393584,19.596166253315964,13.824843710867237,12.96888421639542,0.5493117103526306,0.7471861471861472,0.6921739130434783,0.589516129032258,0.1056635672020287,0.7142857142857143,0.8900255754475703,0.8726851851851852,0.7370242214532872,0.1129707112970711,0.492914979757085,0.6740837696335078,0.6318638824439289,0.544689800210305,0.1038135593220339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0048460025547963,0.0067994073352412,0.0088696076240017,0.010955810546875,0.0133435192258721,0.01557463995757,0.0175374087125274,0.0199314823336912,0.0220881889118725,0.0240805694008573,0.0262349642017031,0.0285267521886283,0.0306646058732612,0.0328444173780204,0.0349153488949333,0.0371655925565203,0.0393042106464904,0.0409719260653844,0.0430640958832725,0.0576491114431083,0.0715407488064327,0.0853703334417867,0.0979123261148641,0.1098118265384737,0.1254498877926917,0.1383685864763846,0.1503137083630708,0.1620919643429744,0.1724341497971362,0.1857875789519067,0.1983583835058691,0.2103962551709122,0.2217272816819709,0.2324172495456297,0.2435136604141939,0.2532366707253047,0.263006853708768,0.2723660308810172,0.2804841704683524,0.2881187086610525,0.2944502985598876,0.3012343631539044,0.3082104605926709,0.3154957321076822,0.3216809956704617,0.3278791219805553,0.3334266945052707,0.3386050126287157,0.3438779553559635,0.3437836963554022,0.3443119961413904,0.3435478187328212,0.3436835019759413,0.3447321428571429,0.3439336063939129,0.3429282442264103,0.3441546718311477,0.3449819716673217,0.3459958565509358,0.3465615401902764,0.3468701807109811,0.3471551543145076,0.3489758415131549,0.3492423511244088,0.3500026154731391,0.3515358361774744,0.3549411129805403,0.3591461901216182,0.3607754987355999,0.3627708017110528,0.3623848296550246,0.3675235428862305,0.3673706196333256,0.3663035168195718,0.3666546373150487,0.3673719717877952,0.3701468517400925,0.3706371191135734,0.3773368943151469,0.0,2.355852209110536,59.45220143784606,201.17861003224937,298.5498229968341,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95620,42735,402.7190964233424,6757,69.44153942689813,5289,54.67475423551558,2161,22.12926166074043,77.3146043072854,79.73246850999921,63.296484254502126,65.08253648960991,77.04817924351474,79.46937379514198,63.19630241403412,64.98659887590361,0.2664250637706686,263.0947148572318,0.1001818404680108,95.9376137062975,104.71912,73.6444072977565,109515.68709475004,77017.55626203355,294.11482,186.9589460357716,306942.05187199335,194877.76201189245,303.58291,146.11721513936646,313494.9487554905,149718.00525772895,3044.3006,1382.1926101437275,3149065.551139929,1410822.5163603094,1272.16807,556.041145071723,1315686.9692532944,566760.8931710025,2122.97574,898.880671236667,2177734.0305375447,904184.3629540328,0.3801,100000,0,475996,4977.985777034093,0,0.0,0,0.0,25038,261.15875339887054,0,0.0,28156,290.6295754026354,1912157,0,68582,0,0,0,0,0,49,0.4915289688349717,0,0.0,0,0.0,0,0.0,0.06757,0.1777690081557484,0.3198164866064821,0.02161,0.3203638908327502,0.6796361091672498,25.15230165189645,4.5578983296826925,0.3191529589714502,0.2102476838721875,0.2374740026470032,0.233125354509359,11.007683152230726,5.5246921766723895,23.154304795527683,12716.039639062532,59.71624946408236,13.046707379462978,19.070386550687346,14.00957393948256,13.589581594449465,0.5536018150879183,0.7868705035971223,0.7109004739336493,0.570859872611465,0.1103000811030008,0.7031828275351591,0.9333333333333332,0.8701923076923077,0.7054794520547946,0.1625441696113074,0.5022854240731336,0.7167553191489362,0.6588050314465409,0.5300829875518672,0.0947368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405915313142,0.004674934844997,0.0070958703861615,0.0090230147843316,0.011474609375,0.0133937665512324,0.0153711202456115,0.0175400960261518,0.0197706886500086,0.0220069430932606,0.0240105026718222,0.0264512218923666,0.0285485015894571,0.0304678886793813,0.032411899502467,0.0347722690378948,0.0368866047745358,0.0390792902602863,0.0412136220333163,0.0432732923789359,0.0580943222677481,0.0710252569165819,0.0855963707390838,0.0981104268645718,0.1099511257956572,0.1257108364837818,0.1383087219802401,0.1500074609366673,0.1619022146143147,0.1721388972452619,0.1855848079413034,0.1982786654237214,0.2102785406041585,0.221445476858345,0.2318318119680733,0.2427047606362314,0.252956959195081,0.2628085202299109,0.2719533540951558,0.2798646167966957,0.2877445359463497,0.2954678465248028,0.3019755074969799,0.3091585197624902,0.315659664427084,0.322028674630472,0.3270918079979973,0.3315945495489764,0.3372309843834978,0.342061479955633,0.3430126797191866,0.3427859532232975,0.3434749492213947,0.343482163539495,0.3435148625493556,0.3428667977390022,0.3425390674628382,0.3440518179121205,0.3454885862003813,0.3462758237623408,0.3472917956511135,0.3472148174476235,0.3486674197732312,0.3504728264514542,0.3518571839907861,0.3512081060015588,0.3523676880222841,0.3552919822244476,0.3592667739452879,0.3601283625846836,0.3623287049641528,0.3682871229390871,0.3709891779001329,0.3729601952112246,0.3706247647722996,0.3764031526152376,0.3791711935433804,0.379542670477746,0.3799944888399008,0.3801396431342125,0.0,2.392565749822804,59.4815309072893,193.94157469308752,303.60581106801743,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95647,42612,403.46273275690817,6687,68.79463025500016,5292,54.76387131849404,2120,21.78845128441038,77.29129418892526,79.69286434198759,63.29829466637945,65.0705690106176,77.0307049605343,79.4314948037435,63.2030273583717,64.97757706231985,0.2605892283909696,261.3695382440824,0.0952673080077488,92.99194829775104,104.46458,73.54999834376126,109218.8777483873,76897.33953366154,292.39814,185.5945236093821,305139.5025458196,193477.4372801643,302.79152,145.31600949404216,313153.0105492069,149292.3838083355,3037.46268,1372.674282798325,3145254.6551381643,1404901.7509263866,1293.29488,563.8880743388044,1337577.4148692586,575064.6559113904,2090.9276,869.8941916317548,2151001.641452424,879541.9876012541,0.37966,100000,0,474839,4964.494443108513,0,0.0,0,0.0,25056,261.3882296360576,0,0.0,28008,289.4183821761268,1914620,0,68704,0,0,0,0,0,41,0.4286595502211255,0,0.0,1,0.010455110981003,0,0.0,0.06687,0.1761312753516304,0.3170330491999402,0.0212,0.3241930876892316,0.6758069123107684,24.80748468271499,4.481618140075025,0.3331443688586545,0.2099395313681027,0.2237339380196523,0.2331821617535903,10.921989252894006,5.54026547362495,22.645702476179263,12637.926143274231,59.8507132058738,12.999704516417578,19.964632695287712,13.252180945192512,13.634195048975984,0.5521541950113379,0.7641764176417641,0.6920022688598979,0.5954391891891891,0.119935170178282,0.7204633204633205,0.9109195402298852,0.8651162790697674,0.7563636363636363,0.1487603305785124,0.4976232174130598,0.6972477064220184,0.63615903975994,0.5467546754675467,0.1129032258064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0043090337625468,0.0065466946804299,0.0089015343969108,0.0110490492323657,0.013107908540001,0.0153455553969451,0.0175832703657565,0.0195689514150171,0.0217168717875207,0.0236176060382311,0.0256763141137563,0.0276423266053535,0.0297381681041145,0.0315174414403253,0.0335212287324817,0.0354115281779177,0.037378131716383,0.0394751901447284,0.0412435622093871,0.0553668655749354,0.0691457602262609,0.0828791935737911,0.0952085219258541,0.1070991302879338,0.1228777678987256,0.1357445408125351,0.1493225682757445,0.1612341112453362,0.1722005732504589,0.1855896844306922,0.198222193350007,0.2102410621973118,0.2209182668097125,0.2313812787904167,0.2419598101406201,0.2527481120693507,0.2630405907381976,0.2717230887995822,0.2796791750214838,0.2879254457050243,0.2959872678548442,0.3028142322452267,0.3094786843557325,0.3153989319644312,0.3208136363075328,0.3267449584518781,0.3317275832186369,0.3370086911402257,0.3422842726756396,0.3428559872731685,0.3424971047261898,0.3416869034844976,0.3411783448715349,0.3415128354117314,0.3407312912100579,0.339900930365478,0.3404767399690086,0.3413232215778456,0.3421156467465385,0.3431389155515404,0.3440039741679086,0.3454070673461651,0.3465540100222467,0.3485601273455212,0.349903247738089,0.3506326949384405,0.3532115869017632,0.3546556706844294,0.3565724325187669,0.3585951094422566,0.3604644968838225,0.3611428571428571,0.3619135659810492,0.360973282442748,0.3620210322736613,0.3599124452782989,0.36625,0.3717012914093206,0.3750481324605313,0.0,2.182192633807533,57.10506406196431,208.70701468319768,296.3279061256129,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95641,42998,405.2550684329942,6821,70.24184188789326,5304,54.96596647881139,2123,21.904831609874424,77.27514686010801,79.68636444849969,63.27600815666828,65.05646534844949,77.01019434016926,79.41932275422411,63.178436018399495,64.95989252298381,0.2649525199387454,267.04169427557645,0.0975721382687879,96.57282546568524,104.2151,73.30934416877685,108964.64905218472,76650.31123553378,293.87558,187.08424770370203,306781.42219341075,195122.89468293104,308.32327,148.21287601595475,319259.5539569849,152546.1563633694,3040.85512,1382.166139230822,3154360.7448688326,1420074.2142290676,1297.86035,571.4271021297943,1344557.5537687812,585015.8845367517,2089.7512,879.2888326876774,2158227.0574335274,896225.6634220578,0.38269,100000,0,473705,4952.938593281124,0,0.0,0,0.0,25050,261.4046277224203,0,0.0,28503,294.8735374996079,1911304,0,68588,0,0,0,0,0,47,0.491421043276419,0,0.0,0,0.0,0,0.0,0.06821,0.1782382607332305,0.3112446855299809,0.02123,0.3187273234719509,0.6812726765280491,25.420361948958654,4.4625549662081205,0.3310708898944193,0.2117269984917043,0.2264328808446455,0.2307692307692307,11.112401118878084,5.659368528709996,22.83404643491892,12841.998688983616,60.147872803123406,13.255634563368092,19.722708931923613,13.511824270346018,13.65770503748568,0.553921568627451,0.7871772039180766,0.6913439635535308,0.5745212323064113,0.1225490196078431,0.6873614190687362,0.9141274238227148,0.8470588235294118,0.6914893617021277,0.1578947368421052,0.5082257656289547,0.7270341207349081,0.6416228399699474,0.5386289445048966,0.1118210862619808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0049968073137853,0.0073055654203236,0.0097003555104113,0.0120831172001342,0.0144309108685025,0.0164273769221356,0.0185194638135394,0.0208663470090887,0.0229972149410222,0.0252838665340075,0.0272955147829302,0.02946623317832,0.0314790191409752,0.0332916843072665,0.0353381747460327,0.0371898256597359,0.0393706511579603,0.041405648400591,0.0433504009677453,0.0580980947503736,0.072843102328213,0.0862509059969117,0.0994996049512773,0.111729601267494,0.127848851986783,0.1404161264956538,0.1520782031191702,0.1631670198420343,0.1744064827452792,0.1876592253551535,0.2008219386040056,0.2125915591210324,0.2241241296123691,0.2346891483304274,0.2460846384538487,0.2563233055779389,0.2659211951615815,0.2751328773203738,0.2837240286216362,0.2918962816868728,0.2993700805874555,0.3065310530625808,0.3129175678923335,0.3185653237883049,0.32421850877518,0.3296315815891181,0.3347824978326278,0.3402057837711435,0.3456360290710759,0.3457460458959709,0.3455248085018287,0.3455189844820039,0.3456659619450317,0.3453086382991394,0.3447878936705752,0.3436077946376191,0.3442269736842105,0.3450632046463956,0.3464430513136509,0.3474546034965166,0.3486608998594588,0.3493996137375094,0.3512023486699088,0.3522918976237528,0.3532837185011098,0.354337899543379,0.3575100122985715,0.3604921731772669,0.3612473581369382,0.3627236217597663,0.3642578646584415,0.3682517658930373,0.3663343733353626,0.3665406427221172,0.3669823762138832,0.3659403492505022,0.3637108335039934,0.3671940049958368,0.3597232897770945,0.0,1.9006635284052835,60.17054352886044,200.1803598116384,300.2628021916192,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95678,42653,402.2554819289701,6743,69.20086122201552,5337,55.13284140554778,2132,21.83365036894584,77.28391542799022,79.68114171716249,63.28504443165552,65.05934426612212,77.01571089873704,79.41545348418323,63.18559379590924,64.96384648549966,0.2682045292531825,265.68823297925803,0.0994506357462796,95.49778062246617,104.28242,73.43549625822905,108993.10186249712,76752.75011834387,294.29844,186.616632530586,306946.36175505345,194400.3141062585,305.69726,146.8850466840388,315582.9971362278,150473.75004888608,3057.73036,1385.166992990133,3161669.1402412257,1413552.1572254172,1272.43049,563.4435373676566,1315286.032316729,574272.4736801104,2090.85994,877.2818259300783,2144713.2883212445,883265.3921632048,0.37944,100000,0,474011,4954.231902840778,0,0.0,0,0.0,25065,261.29308723008427,0,0.0,28399,292.87819561445684,1913064,0,68690,0,0,0,0,0,40,0.4180689395681348,0,0.0,0,0.0,0,0.0,0.06743,0.1777092557453088,0.3161797419546196,0.02132,0.320944036178632,0.679055963821368,25.134900431231905,4.4622253260738205,0.332958590968709,0.213790519018175,0.2237211916807195,0.2295296983323964,11.16516340152023,5.706398149833391,22.706929239449348,12742.893687513271,60.36028745456941,13.465669951843443,20.003727466260383,13.300530678480692,13.590359357984898,0.5510586471800637,0.7861524978089395,0.6933033202025887,0.567001675041876,0.110204081632653,0.7143933685003768,0.9425981873111784,0.8741092636579573,0.7605633802816901,0.1786941580756013,0.4970074812967581,0.7222222222222222,0.6371681415929203,0.5065934065934066,0.088865096359743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.004452693930542,0.006822542818563,0.0090649485269458,0.0112633924483379,0.0134055904164289,0.0155846805038502,0.017730931078155,0.0200051137816415,0.0220143825933741,0.0241602888975521,0.0260367432493526,0.0282362626054743,0.030371736867599,0.0325784008092986,0.0345722677256556,0.0366912587557508,0.0385733266899186,0.0405046964228132,0.0427006576547468,0.0582483703827511,0.0723364603400619,0.0856920961766527,0.0984921027432576,0.1106830751044876,0.1265812065333601,0.1394286927896357,0.1514522158673355,0.1632299650450566,0.1745915892063628,0.1879439887028792,0.2010941985807919,0.21328237292565,0.2240367133250093,0.2342599532648472,0.2448682793609911,0.2549504120218701,0.2644844222011813,0.2733277249784002,0.2817982581955456,0.2890741878993819,0.2966550947644961,0.3034387830173007,0.3096833861823772,0.3161452180584818,0.3214898793424969,0.3271336301498714,0.3323945815758286,0.3364804751838354,0.3405809545196359,0.340314771608518,0.3409438511884257,0.3418137227265039,0.3424631794990388,0.3430753655123127,0.3419876863551918,0.341974093593244,0.3433677495725371,0.3451418391119638,0.346616756814844,0.3463993222253601,0.3480846493496161,0.3489408435236225,0.3500597371565113,0.3519724057520404,0.3515842572644632,0.3513985513470182,0.3540242976461655,0.3559226515445035,0.3584950684059815,0.3615279048490393,0.3621497816128688,0.3628135017914388,0.3658960411000302,0.3683620044876589,0.3667337040104105,0.3711104331909701,0.3709024686361797,0.3786949247071946,0.3834355828220859,0.0,2.5770153940673564,58.19353658116184,207.63201225584524,298.3819477363653,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95674,42553,402.073708635575,6854,70.49982231327215,5355,55.58458933461546,2153,22.23174530175387,77.35161970545354,79.75654376671962,63.31721993396855,65.09395202734919,77.08394116959636,79.48512316161238,63.2198472325298,64.99700546864675,0.2676785358571862,271.4206051072381,0.0973727014387506,96.94655870244162,104.65796,73.61078628173885,109390.17915003032,76939.17499188792,292.34801,185.21434646569364,305094.73838242365,193116.9141728093,305.00935,146.39051565057983,316308.1087860861,151200.82731534063,3090.34124,1400.1075141482625,3207879.3820682736,1441219.9700527445,1310.92873,572.42573859233,1361756.3496874804,589861.1729334297,2131.31366,886.1652489706463,2201556.9120137133,904169.2860833054,0.37946,100000,0,475718,4972.280870455923,0,0.0,0,0.0,24934,260.20653469072056,0,0.0,28215,292.4200932332713,1917330,0,68747,0,0,0,0,0,60,0.616677467232477,0,0.0,0,0.0,0,0.0,0.06854,0.1806250988246455,0.3141231397723957,0.02153,0.3205448985265499,0.6794551014734501,25.134742480691305,4.489794135307866,0.323062558356676,0.2121381886087768,0.2280112044817927,0.2367880485527544,10.884731885853665,5.3801497959430895,22.979280159268416,12697.533730301591,60.404211027642575,13.45435165844076,19.557896952471364,13.3732664438535,14.018695972876962,0.5380018674136321,0.7640845070422535,0.6901734104046243,0.5503685503685504,0.1159305993690851,0.6992700729927007,0.9234828496042216,0.8549107142857143,0.6853932584269663,0.1521739130434782,0.4825595984943538,0.6842800528401585,0.6326053042121685,0.5125786163522013,0.1058467741935483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897437715929,0.0046443238858185,0.006860576044817,0.0093777940339754,0.0114231657325372,0.013424322672642,0.015765053790853,0.0177880344324064,0.0199182004089979,0.0222165318037488,0.0244167675482692,0.0263579752142548,0.0283820775104451,0.0302995938060578,0.0321131241349391,0.0339965030985857,0.0357261307574312,0.0376829648084708,0.0395959259683107,0.0417796221378821,0.0560478140934548,0.0699934037629961,0.0832213778915991,0.095711098951976,0.1080259616906759,0.1237179962108783,0.1367583980974221,0.1488622435385025,0.1606329032672186,0.1718494974658534,0.1850941321084298,0.1985289338561865,0.211108934169279,0.2218695618864166,0.2321694030590333,0.2428139099202962,0.2525473721844833,0.2622928674351585,0.2717457938832505,0.2802432516004902,0.2885649835155301,0.296705865849952,0.3045745913853868,0.3107887991951517,0.3166417810796703,0.3219650332430436,0.327767640662884,0.3332867434975413,0.3382714134284754,0.3436693187206913,0.3437949821752875,0.3437104843586783,0.3435981920331179,0.3430606318891666,0.343573052744215,0.3426453470563009,0.3421669199594731,0.3424943325557709,0.3437206040807949,0.3446043808672329,0.3461134059331581,0.3465381799473653,0.3480114232917559,0.3493078694903504,0.3498702671535652,0.3513991930235585,0.3517726858185134,0.3534113796576032,0.3554142811984124,0.358664546899841,0.3623095867919365,0.3646075735138566,0.3700584501288417,0.3703590760082336,0.3722682743029389,0.3726596255400864,0.3743995041066171,0.3804081632653061,0.3808226641242168,0.3825757575757575,0.0,1.4784852545656786,61.16372042599534,200.61787963570157,300.8998645091163,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95797,42908,404.1045126674113,6826,70.0857020574757,5344,55.2731296387152,2162,22.19276177750869,77.3507064425629,79.67895048370701,63.34838135415546,65.07003765589481,77.07978666567932,79.40693959612125,63.2489164506655,64.97215687855909,0.2709197768835736,272.01088758576475,0.0994649034899595,97.88077733571754,104.47096,73.49744248497116,109054.52154034052,76722.07113476536,293.66522,186.1419462656136,306030.9821810704,193803.1247034624,302.86175,145.55057777060375,313176.1641805067,149591.29045249842,3085.47292,1396.83886393353,3193305.677630824,1431254.7582146532,1286.61408,559.8781396374912,1329754.459951773,571133.6885680042,2131.04418,895.1704566792505,2190570.2475025314,907596.8818379164,0.38226,100000,0,474868,4957.023706379115,0,0.0,0,0.0,24984,260.25867198346504,0,0.0,28080,290.0925916260426,1919668,0,68899,0,0,0,0,0,55,0.5741307139054459,0,0.0,1,0.0104387402528262,0,0.0,0.06826,0.1785695599853503,0.3167301494286551,0.02162,0.331665276619405,0.668334723380595,25.344141631901007,4.526715763382531,0.3295284431137724,0.2133233532934131,0.218001497005988,0.2391467065868263,11.076438533407844,5.591312473501798,23.21712471842461,12775.71038512587,60.18655962507542,13.215749101431312,19.83957898770004,13.022635039080404,14.10859649686368,0.5404191616766467,0.7350877192982456,0.6871095968199886,0.5982832618025751,0.1118935837245696,0.6925925925925925,0.8997214484679665,0.8458049886621315,0.7441860465116279,0.160958904109589,0.4889834752128192,0.6594110115236875,0.634090909090909,0.5567805953693495,0.0973630831643002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0045417680454176,0.0067987863658964,0.0088676255485129,0.011052139254921,0.0135298848585419,0.0158269128857364,0.0180322682695349,0.0201007592711814,0.0222267703643061,0.0243457589605918,0.0265652896632395,0.0288265882884919,0.0309643415959812,0.0326771775332804,0.0348760330578512,0.036949278811332,0.0390504327994609,0.0410816648666611,0.0431292941911305,0.0585774058577405,0.0722575383714608,0.0859748427672956,0.0987074401008827,0.1108394372134689,0.1262512552190687,0.1391380882696019,0.1514574265433609,0.1627772914576083,0.1739899260529418,0.1869275558856134,0.1995374423153822,0.2115018959766181,0.2224382995924878,0.2329005090541268,0.2437966701698102,0.2537469773454128,0.263787002190642,0.272657215063634,0.281372302199437,0.28938279020874,0.2966320486910199,0.3040448614052314,0.3110206037374221,0.3170592520641088,0.3235743506333481,0.3286833149834851,0.3339230935682191,0.3384962347543193,0.3425973580373992,0.3433537061468458,0.3432410479507689,0.3439306358381503,0.344307131280389,0.3443561823158396,0.3438669693808676,0.343449085457747,0.3442663459796056,0.3459943094168866,0.3466458826058912,0.3482942992695233,0.3498093573754865,0.3512220817530552,0.3517078119715928,0.3535868855629971,0.3540545507048539,0.3558167605471893,0.3592633751389109,0.3614940288458131,0.3630076750879437,0.3670227461092181,0.368949328152825,0.3697237145049885,0.3724517479265173,0.3762018086625416,0.3766999638945721,0.3783361947869518,0.3852904304220643,0.3888099971598978,0.392319873317498,0.0,1.8999625769230333,59.80049090866437,195.8627507710579,308.55755698234924,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95729,42408,399.5341014739525,6891,70.69957901994171,5384,55.59443846692225,2155,22.03094151197652,77.31652017658898,79.67711409244647,63.31665033110207,65.0622980667523,77.04688019628645,79.41036540761229,63.217376740973926,64.96753834016046,0.2696399803025286,266.7486848341838,0.099273590128142,94.75972659184606,104.25888,73.32944151621138,108910.445110677,76601.07335939095,293.87617,187.19439737502069,306370.9847590594,194929.5483866129,308.23038,149.13959992137293,317806.8088040197,152611.3754584284,3092.28328,1406.9005051051042,3195570.412309749,1434993.3929165725,1292.30952,567.5735766764845,1333006.006539293,575935.5855346699,2114.37044,883.9319577411629,2165173.4166240115,886241.6460678141,0.37734,100000,0,473904,4950.474777758046,0,0.0,0,0.0,25021,260.7255899466202,0,0.0,28526,293.8399022239865,1915666,0,68818,0,0,0,0,0,56,0.5849846963824964,0,0.0,0,0.0,0,0.0,0.06891,0.1826204484019717,0.3127267450297489,0.02155,0.3207443142660234,0.6792556857339765,25.017518493028927,4.442151347099607,0.3307949479940564,0.2161961367013373,0.2273402674591381,0.225668647845468,11.159027184009997,5.758793043982767,23.063739534612694,12634.346316287834,61.08020175811914,13.628569543020369,20.184659101907485,13.857228877421862,13.409744235769422,0.5507057949479941,0.770618556701031,0.6956765861875351,0.5661764705882353,0.1119341563786008,0.7164835164835165,0.9224598930481284,0.8606741573033708,0.7006578947368421,0.152892561983471,0.4944015924359293,0.6987341772151898,0.6407185628742516,0.5217391304347826,0.1017471736896197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002603296157859,0.0045822730913109,0.0067698553666582,0.0094191044230163,0.0116678873697916,0.0136984906198439,0.0157567845960857,0.017952881345547,0.0200509197247471,0.0223496288712567,0.0242291878146564,0.0263068724393925,0.0286898310487727,0.0306656231979569,0.0327089307449508,0.0346851268275042,0.0366141487753876,0.0383183095961743,0.0405609089302606,0.042568707936574,0.0574035791100252,0.0710959491842906,0.0840036495967615,0.0961754839795156,0.1078422068267375,0.123020783753768,0.1358823654225636,0.1482482940694295,0.1602632591136373,0.1712317744375422,0.1846014629364301,0.1973832301631964,0.2090878440840919,0.2198943719724886,0.2301874745428725,0.2408281793797521,0.2508877721943048,0.2603528988116673,0.2697459531863691,0.2782456260956243,0.2861110789635099,0.2932313235534966,0.3000461718777747,0.3061366471547836,0.3128502485929275,0.3191757156959526,0.3249232696523645,0.3302340983773594,0.334996112982638,0.3401191592797601,0.3405815662114614,0.3415071440392784,0.3417664268652919,0.3421697579651087,0.342730633907806,0.3419600731531144,0.3417822033763718,0.3421625544267053,0.3432500171667925,0.3438297107957607,0.3450238395869061,0.3461966236345581,0.3464505522299975,0.3470425450536594,0.348415961305925,0.3510663352086877,0.3516958863297811,0.3540417744683536,0.3572233570472635,0.3594534300055772,0.3636529847335222,0.3686685189142979,0.3705811673939164,0.372048743335872,0.3724196436987463,0.379045792375929,0.3834132755686213,0.3824790688176434,0.3855589629216615,0.3848543689320388,0.0,2.581843249397476,59.602702623966174,209.0446167817496,300.3727188357091,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95676,43011,404.9709436013211,6898,70.82235879426398,5370,55.52071574898616,2217,22.83749320623772,77.40264542862671,79.78478304467295,63.35728834693722,65.11262386130244,77.13396008923309,79.51251435977382,63.25942810854335,65.01559664400601,0.2686853393936275,272.2686848991316,0.0978602383938707,97.0272172964286,104.05978,73.21031816146878,108762.44826288724,76518.78335577236,293.73709,186.3948343019634,306400.52886826376,194207.89646406972,306.55997,147.62229555089937,316281.3767297964,151181.9735856117,3082.3664,1400.891889334458,3188779.7984865587,1431361.8141795804,1302.03758,573.4912538925697,1347249.8536728125,585812.0673755102,2177.98604,899.2214418079783,2245046.8037961456,914171.113381736,0.38384,100000,0,472999,4943.747648313057,0,0.0,0,0.0,25033,260.9954429533007,0,0.0,28403,292.7066348927631,1921616,0,68923,0,0,0,0,0,62,0.6375684602199089,0,0.0,1,0.0104519419708181,0,0.0,0.06898,0.1797102959566486,0.32139750652363,0.02217,0.3289582757667864,0.6710417242332136,24.945275292595564,4.457392574608486,0.3363128491620111,0.2108007448789571,0.2216014897579143,0.2312849162011173,10.864094528367742,5.527392078492823,23.40518934380032,12826.829408753065,60.78721910452197,13.45777308042504,20.44266611180812,13.309958468477294,13.576821443811514,0.5471135940409684,0.7782685512367491,0.6810631229235881,0.5882352941176471,0.1022544283413848,0.7172848145556333,0.9166666666666666,0.8616352201257862,0.7097902097902098,0.1434108527131783,0.485409794468409,0.7002762430939227,0.6162528216704289,0.5497787610619469,0.0914634146341463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0047634974206168,0.0069791032663826,0.0094654844967145,0.0116228226273883,0.0136855181964442,0.0160571737335222,0.0181873851806491,0.0203568581764669,0.0225860922069283,0.0248162612626464,0.0269282495097888,0.0290561381863047,0.0308969381134329,0.0330375567478332,0.0351096595489592,0.0372146000517732,0.0394545680959694,0.0414668899312525,0.0437021210068268,0.0575410298465363,0.071860112036019,0.0846205507051712,0.0969526754815025,0.1094621818603719,0.1257961446496963,0.1394082815119808,0.1518538626129722,0.1640058985702378,0.1745755986659374,0.1886111799101902,0.2013807730597757,0.213196755181488,0.2245071993177867,0.2347713223485932,0.2460892957964773,0.2570804400405711,0.2665318730693625,0.2757999660191425,0.2841283270831428,0.2917200688166083,0.2985844487752506,0.3047935094535706,0.3118441676537803,0.3179491533647082,0.3236423612820639,0.3293276144505996,0.3354930507914729,0.3407319311762348,0.3450119859856168,0.3452998575307115,0.3456786734021524,0.3457718083088638,0.345672072072072,0.3456815755131095,0.3440439231039809,0.3435847921744911,0.3445064871078995,0.3457529385673098,0.3464880198390751,0.3479295484354506,0.3491860144270566,0.3496627618033369,0.3507064574451463,0.3531987585111758,0.3548841945844322,0.3551559507132851,0.3588742680853743,0.360366390699313,0.3644692292372037,0.3646100329549615,0.3672222519963556,0.3680238457635718,0.368505623995715,0.3685510688836104,0.3685395922238027,0.3684373069796171,0.3652439024390244,0.3704620462046205,0.3666793457588436,0.0,2.309234619159532,63.07757048377344,195.72454202459485,300.7558984539681,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95718,42443,399.2770429804216,6952,71.25096638040911,5399,55.71574834409411,2196,22.493156981967864,77.33907921770925,79.70506067541658,63.32552877917672,65.07516895284586,77.0620867536519,79.43236912109629,63.22172669115096,64.97663973744156,0.2769924640573578,272.69155432028924,0.103802088025759,98.52921540429804,103.27306,72.65118318161217,107893.0399715832,75901.27581187672,293.70025,186.2515281867012,306170.4277147454,193914.92528751245,303.57678,145.80024475382493,313042.01926492405,149168.31132060298,3131.46748,1422.5434384845844,3232060.6364529137,1446686.8911642358,1329.53199,581.5408092846982,1370015.1068764497,588607.425912904,2157.45566,911.437471068273,2211278.0877159988,913898.9435922436,0.37805,100000,0,469423,4904.229089617417,0,0.0,0,0.0,24989,260.35855325017235,0,0.0,28166,290.20664869721475,1923377,0,68997,0,0,0,0,0,58,0.6059466349067051,0,0.0,0,0.0,0,0.0,0.06952,0.183891019706388,0.3158803222094361,0.02196,0.3348354499522054,0.6651645500477946,25.15070370867836,4.530589531245351,0.338395999259122,0.1954065567697721,0.2322652343026486,0.2339322096684571,11.0468275686043,5.579784179040324,23.49712773316705,12711.439851147865,61.01033543601528,12.380565568842648,20.583317106967414,14.12147884298167,13.92497391722355,0.5456566030746435,0.7772511848341233,0.6765188834154351,0.5877192982456141,0.1211401425178147,0.7080561714708056,0.9055555555555556,0.8513513513513513,0.7446043165467626,0.1734317343173431,0.4913494809688581,0.7107913669064748,0.6203904555314533,0.5430327868852459,0.1068548387096774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022889321017663,0.0045321815305998,0.0067293931366279,0.0087688993659567,0.0108338504420007,0.0131582967542189,0.0154795288839035,0.0176112058316062,0.0196629787930223,0.0220510667062691,0.0243267081000143,0.0264476900638852,0.0286119795951949,0.0305172058520502,0.0326499855485362,0.034560138985119,0.0369948304619432,0.0391892312642055,0.0412662756354257,0.043260364462319,0.0579236456288375,0.0718979553397651,0.0852295367321687,0.0985203024598525,0.1105533467618615,0.1260419752041636,0.1385160585258199,0.1506287734392469,0.1622508416608774,0.172624349412459,0.1857660221173123,0.198316943204956,0.2105515169982153,0.2216713183385322,0.2325061406117481,0.2440809537011366,0.2537923638882062,0.2632888588639306,0.2724867724867725,0.280486966091203,0.2886665972005141,0.2958771693719207,0.3027714008472771,0.3089218529080496,0.3150922778047595,0.3216998436557471,0.3274543136421589,0.3319991359483602,0.3371996793131093,0.3420632722765096,0.3431081099258821,0.3429342067238223,0.3430800045136538,0.3433648568407942,0.3439645032087074,0.342523550891405,0.3414185319732855,0.3430834856794637,0.3432513126737362,0.3432728708039543,0.3440926960480033,0.3457534355232108,0.3462257217847769,0.3466232892079874,0.3478658609980982,0.3494063926940639,0.3495509410216806,0.3524411439405909,0.3560996260495307,0.357605048729829,0.361018115111213,0.3615149401856123,0.3647942937205451,0.368360188111942,0.3697749196141479,0.3731414868105515,0.3738098954268768,0.3725570870191318,0.3766088416340235,0.3705996131528046,0.0,2.653369276027344,59.07113325179527,208.12156688715544,302.70500256246913,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95694,42760,402.49127427006914,6900,70.88218697096997,5347,55.37442263882793,2092,21.52695048801388,77.30793472821749,79.68325990316478,63.31631099018998,65.06984090172872,77.0479059241601,79.42212786983787,63.22032159099464,64.97550487626084,0.2600288040573844,261.13203332691626,0.0959893991953464,94.33602546788222,103.43234,72.76626079055282,108086.5467009426,76040.56763282215,291.56135,184.6521140694602,304183.616527682,192463.72193602548,303.7793,146.022450671732,314219.3345455305,150115.5393202936,3067.25576,1385.961645074861,3177431.897506636,1420483.5883909762,1286.83181,561.7633855508531,1330469.172570903,572834.7107491837,2059.305,863.270273271887,2120417.2884402364,876063.12164264,0.38215,100000,0,470147,4913.024850042845,0,0.0,0,0.0,24837,259.0235542458252,0,0.0,28131,290.7183313478379,1922492,0,69031,0,0,0,0,0,52,0.5433987501828745,0,0.0,0,0.0,0,0.0,0.069,0.1805573727593876,0.3031884057971014,0.02092,0.3220667682504502,0.6779332317495498,25.2442069645911,4.429462265106074,0.3357022629511876,0.2124555825696652,0.2236768281279222,0.228165326351225,11.111402785658331,5.665652078000576,22.39534634473165,12823.1361971178,60.30272361891766,13.473007739542275,20.26263472865343,13.1782301932207,13.388850957501267,0.5507761361511128,0.7658450704225352,0.6947075208913649,0.5593645484949833,0.130327868852459,0.7191265060240963,0.9289340101522844,0.8518518518518519,0.6904761904761905,0.188,0.4951480467778054,0.6792452830188679,0.6449009537784299,0.524364406779661,0.1154639175257732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0046512099225811,0.0068777325799612,0.0092223937596489,0.0114107883817427,0.0136043338356889,0.0159068430014989,0.0179581419091373,0.020037211965078,0.0221617139756988,0.0243982449665805,0.026796989702153,0.029155868196964,0.0314309261357783,0.0332483721506186,0.03511837072263,0.0370520033570607,0.0390257576229482,0.0409029439300946,0.0435643770784033,0.0583276753538413,0.0737596818086665,0.086209790796735,0.0993489624417589,0.1109283741328779,0.1262888505832214,0.1396032251220029,0.1517835283097197,0.1633956902169848,0.1741579060287492,0.1880903402298355,0.2008287173273325,0.2129327592205984,0.2238187405001695,0.2349653427219716,0.2462944499833831,0.2563020990258109,0.2661468178954001,0.2752570533626892,0.2835195050695996,0.2909202496612897,0.2984954137027331,0.3064181949492677,0.3133151750038996,0.3194973297161835,0.3245575057394653,0.3303409105156914,0.335853916680481,0.3401199781857844,0.3447039839161949,0.3452634703073146,0.3452671660941186,0.3452143815780179,0.3451255581975294,0.3462972352292046,0.3457863528833451,0.3442516131082928,0.3447900338255919,0.3453002610966057,0.3456039323323108,0.3468607585401679,0.3475512800127206,0.3480804849301229,0.3488800107734434,0.3506923467291752,0.3521722010762567,0.3525313915486497,0.3543426672994779,0.3557239474522857,0.3564356435643564,0.3588848573921829,0.3617749264902432,0.3640228426395939,0.3660632095734888,0.3680227057710501,0.367995240928019,0.3670059243506,0.368336350834842,0.3719231809575331,0.3856552760045062,0.0,1.9020491547370275,58.70628211916869,202.5853405226352,305.615715424425,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95711,42884,404.0705874977798,6907,70.93228573518195,5419,56.07505929308021,2179,22.41121710148259,77.38171245272493,79.75467853322044,63.34258245905804,65.0948398347894,77.11360299712804,79.48627508765749,63.243559188417045,64.99778051653004,0.2681094555968855,268.4034455629529,0.0990232706409983,97.05931825935464,104.62144,73.61027784122398,109309.73451327434,76908.90058741835,295.9007,187.90338088590357,308629.6141509336,195792.7206756836,313.36918,150.7674270015551,324087.27314519754,154910.63901982942,3105.79732,1410.882410917265,3217062.364827449,1446194.9524268503,1299.33793,566.7893825820801,1342895.6650750698,577520.16234506,2138.9632,892.2832676613897,2202974.370761981,904929.576180226,0.37896,100000,0,475552,4968.624296057925,0,0.0,0,0.0,25115,261.8507799521476,0,0.0,28865,298.1997889479788,1915321,0,68706,0,0,0,0,0,65,0.6791277909540179,0,0.0,1,0.010448119860831,0,0.0,0.06907,0.182261980156217,0.3154770522658173,0.02179,0.3192423826516607,0.6807576173483393,25.2757632107143,4.445382998722239,0.3242295626499354,0.2146152426646982,0.2362059420557298,0.2249492526296364,11.090219498704904,5.670394870407456,23.127262694002805,12684.248476950444,61.00184621831673,13.611588587450951,19.88348991487366,14.174916041277172,13.331851674714958,0.5528695331241926,0.7687016337059329,0.701195219123506,0.56875,0.1164889253486464,0.7108167770419426,0.9257294429708224,0.856492027334852,0.6993243243243243,0.1376518218623481,0.5,0.693384223918575,0.6494688922610015,0.5294715447154471,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370118295251,0.0044399841863576,0.0068291593944067,0.0090100156430936,0.0112293264438431,0.0133401221995926,0.0157328575070099,0.0179672506023112,0.020169080890997,0.022837547343638,0.0248403268302184,0.0269096509240246,0.0289695598519127,0.0311811120954284,0.0332707271263751,0.0351530190239867,0.0371290974056237,0.0390681747431773,0.0409659605004524,0.0430700291788245,0.0577306668059109,0.0715624182151269,0.0849298109406802,0.0971461031105687,0.1091035661171407,0.1249722413154972,0.1386510487952382,0.1512722239965932,0.1628423706362432,0.1739321648467165,0.1879552605491142,0.200575919631065,0.2120585964263575,0.2229084906588541,0.2329512957015266,0.2434844223998583,0.253546573875803,0.262844738381248,0.2720363017583664,0.279840575394553,0.2877478040481894,0.2951653646442438,0.3022212223827227,0.308136816487034,0.3140638481449525,0.3193614004807988,0.3247409780269282,0.330349981539715,0.3351991500168442,0.3405170707244005,0.3405280945776724,0.3411319716663228,0.3412720768429058,0.3414785520466485,0.3418113867920331,0.3417798902660818,0.33982824336934,0.340806660438894,0.3416974924569149,0.3421118322516225,0.34264254139507,0.343670936116382,0.3444576877234803,0.3443989895602798,0.346353665576294,0.3475862068965517,0.3486658701712465,0.3535090743817196,0.3554225302807533,0.3550509253755003,0.3563824947684469,0.3574578883043732,0.3602787456445993,0.3614365571636419,0.3654918265142209,0.370493753718025,0.3657300783049286,0.3655299162752706,0.3639664804469273,0.3635652853792025,0.0,2.1509477414723874,59.78552897328181,207.1440775632816,303.1781921003147,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95848,42599,401.3124947834071,6808,69.82931307904181,5322,54.82639178699608,2111,21.575828394958684,77.44506122741345,79.72387839225932,63.40474875222951,65.0846152882204,77.18788219704413,79.47095589102577,63.30961888994176,64.99481596084333,0.2571790303693149,252.92250123355583,0.0951298622877487,89.79932737707941,104.24722,73.343884152423,108763.0623487188,76521.03763502942,293.90932,186.2672593989472,305952.7272347884,193647.76458449545,303.33053,145.3660866011299,313023.95459477504,148951.73288005445,3066.40328,1380.219565905486,3158021.116768216,1399234.3566006068,1309.20497,564.7140080286296,1346104.7387530257,569528.2549107724,2090.4108,864.2613490987168,2137690.8855688176,862957.116500685,0.38032,100000,0,473851,4943.7755613054005,0,0.0,0,0.0,25033,260.45405224939486,0,0.0,28168,290.324263417077,1922406,0,69024,0,0,0,0,0,38,0.3964610633503047,0,0.0,0,0.0,0,0.0,0.06808,0.1790071518721077,0.3100763807285546,0.02111,0.3180551685706325,0.6819448314293675,25.201290814597897,4.528642783461933,0.3369034197670049,0.2113866967305524,0.2153325817361894,0.2363773017662533,10.970218027777909,5.325010712713558,22.1495702267798,12720.502949802736,59.831569908196,13.184736312551337,20.266457276903516,12.701380843465532,13.678995475275633,0.5409620443442315,0.7608888888888888,0.6977133296151701,0.5410122164048866,0.1208267090620031,0.7122026093630084,0.8876404494382022,0.8599562363238512,0.7,0.1608695652173913,0.4854441403334162,0.7022106631989596,0.6422155688622755,0.4943566591422121,0.1118677042801556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021862790744751,0.0043659275316808,0.0066414528051265,0.0088506353781819,0.0111569492145426,0.013185337416447,0.0153589179499714,0.017467649668084,0.0194222344759979,0.0217180134766204,0.0237763669875076,0.0261627608840572,0.0281934615819151,0.0302419354838709,0.0324754270642296,0.0345795743099568,0.0366524634923261,0.0386943005181347,0.0406150396079693,0.0423512762614332,0.0570936962302518,0.0707225844199264,0.0839668279198341,0.0967027662343113,0.1087917175203063,0.1242637900825399,0.1366880572675095,0.1487892214678099,0.1605988866850086,0.1721480783843659,0.1855318874535176,0.1986566164877648,0.2107411548858467,0.2217891185430246,0.2321110793769361,0.2433831990794016,0.2533970950517785,0.2627580549093647,0.2730869964512069,0.2817402647930517,0.2899715521428406,0.2975080978051148,0.3044831217388217,0.3106160365839059,0.3162410796640613,0.323042632317809,0.3284335207282106,0.3335878348285296,0.3384715025906736,0.34284470476492,0.3432616858907926,0.3431756636012482,0.3437385753255153,0.3440080709086978,0.3445216335115759,0.3438134338608996,0.3429098826202196,0.3445415275868839,0.3455988824721895,0.3465075327724515,0.346799835409419,0.3488532880311321,0.3483906096207409,0.3496705015078744,0.3511157014868013,0.3525110590684361,0.3521383075523203,0.3546453232893911,0.357517299224156,0.3610406091370558,0.3633210096307454,0.3634376499440209,0.3641928562413227,0.3672385935215819,0.3682711478211335,0.3704859028194361,0.3741655022512032,0.3796334860474802,0.3759483000842933,0.3724409448818898,0.0,2.6831819602334748,56.89659692249879,203.966178329007,301.2694035785043,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95695,42824,403.83510110246095,6766,69.51251371545013,5294,54.84090077851508,2141,21.996969538638385,77.29747507811412,79.70091147653076,63.28577397120039,65.06586018444182,77.03230720077904,79.4359300726105,63.18843271016954,64.97125040293201,0.2651678773350738,264.9814039202596,0.0973412610308486,94.6097815098028,104.8971,73.72951206437875,109615.84199801453,77046.12786914548,293.59186,186.6462076756393,306298.2182977167,194551.6555451714,306.97845,147.65752883112845,318450.9953498093,152441.4409839122,3045.67504,1377.5354515741822,3154323.256178484,1411629.439423696,1266.39748,552.928500159911,1309537.5202466168,564912.1055327132,2101.1155,874.2367208451672,2159529.609697476,882666.7049337635,0.38066,100000,0,476805,4982.538272637024,0,0.0,0,0.0,25004,260.76597523381577,0,0.0,28381,294.2264486127802,1909984,0,68654,0,0,0,0,0,61,0.6374418726161242,0,0.0,0,0.0,0,0.0,0.06766,0.177743918457416,0.316435116760272,0.02141,0.3336608646827625,0.6663391353172375,24.71111167574073,4.458045758849456,0.3290517567057046,0.2145825462788061,0.2276161692482055,0.2287495277672837,10.946219682401065,5.574432589647207,22.818373531899358,12754.453075904476,59.75532479945383,13.368668311630936,19.7632661569104,13.369957890051356,13.253432440861143,0.55043445409898,0.7772887323943662,0.6928817451205511,0.5759336099585062,0.1073492981007431,0.7238749046529367,0.9164420485175202,0.8643326039387309,0.7182539682539683,0.1428571428571428,0.4933467235751946,0.7098039215686275,0.6319066147859922,0.5383001049317944,0.0989795918367346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021889821233126,0.0045239689205363,0.0067211533580384,0.0089828269484808,0.0108744303385416,0.0130477296339302,0.0152278568805842,0.0172688466330344,0.0193910633380038,0.0215461183193208,0.0237247802406326,0.0259086519693451,0.0279418118968745,0.0302230923798237,0.0322031098354223,0.0346404079479514,0.0365560415414274,0.0386057088269803,0.0404294721072015,0.0426671669167917,0.05743296179841,0.072085086782656,0.0853821051195685,0.0979119549781728,0.1101793248945147,0.1248690794833003,0.1372436632276143,0.1498237430375837,0.1624413245939501,0.1741567002340411,0.1877945410820778,0.2006872405233434,0.2122915373135954,0.2230074726623277,0.2336243578719933,0.2450763922021148,0.2560829766069453,0.265154843579258,0.2744708168111529,0.2828469245053761,0.290782278246362,0.2972551867949063,0.3035534438427906,0.3100417807232387,0.316291635735235,0.3223787360649868,0.3277584845103619,0.3329932536696721,0.3378996026696444,0.3425565700674871,0.3439099836554957,0.3443641838045385,0.3444315578060026,0.344365002247908,0.3445960032164875,0.3436085495527289,0.3431631990112032,0.3440595279160302,0.3446609402482966,0.3455976863753213,0.3471164105347883,0.3473821420812513,0.3482861213543413,0.3488117328802343,0.3496511907625692,0.3520120934111759,0.3516987800706875,0.3531540034607519,0.3565929623510387,0.360553413111756,0.3632833911931299,0.363975089157396,0.3692550505050505,0.3727030118185284,0.3763076053152389,0.3792817352139386,0.3811431212448005,0.3873397109708935,0.3881996140060656,0.3890168970814132,0.0,1.7840773561225178,58.09577199698432,204.78713032609903,297.97371027740746,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95822,42838,403.0076600363173,6739,68.97163490638893,5242,54.0481309093945,2191,22.40612802905387,77.32864418348662,79.6393315011561,63.32870225298407,65.03851164830968,77.05732087327068,79.37091195264392,63.22908036928946,64.94288364424621,0.2713233102159336,268.41954851217054,0.0996218836946027,95.62800406347094,104.12446,73.31306355896764,108664.46118845358,76509.63615763358,295.4689,187.9629402539207,307741.1763478116,195547.776349816,307.32061,148.7964531956108,316636.26307111105,152058.1673113781,3011.49744,1364.8114051935074,3107341.612573313,1388857.303326487,1247.77537,546.1151663190273,1284536.286030348,552282.5200048293,2144.11166,889.0166049242561,2195524.848155956,891761.9768472342,0.38095,100000,0,473293,4939.293690384254,0,0.0,0,0.0,25162,261.93358518920496,0,0.0,28474,293.1268393479577,1912749,0,68747,0,0,0,0,0,44,0.4591847383690592,0,0.0,1,0.0104360167811149,0,0.0,0.06739,0.1768998556240976,0.3251224217242914,0.02191,0.328999434708875,0.671000565291125,25.26661218574588,4.404186668596031,0.338992750858451,0.2121327737504769,0.2201449828309805,0.2287294925600915,11.135689451853592,5.810479147367822,23.22038611155897,12739.776278115378,59.18441354295694,13.213794713072568,20.116579183622527,12.77630935519862,13.077730291063242,0.5532239603204884,0.7886690647482014,0.7000562746201463,0.5641247833622184,0.1067556296914095,0.7239031770045385,0.931297709923664,0.8609865470852018,0.7051792828685259,0.1293103448275862,0.4956632653061224,0.7107093184979137,0.6461307287753568,0.5249169435215947,0.1013443640124095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0046527186473665,0.0070207477299244,0.0093348772956281,0.0117754728492983,0.0143148035023416,0.0164305371521761,0.0185024544072172,0.020673656672185,0.0228498337170631,0.0250622457657509,0.0272367151741548,0.0294126714968398,0.0313880109945542,0.0334316414709097,0.035443848720571,0.0375640295959021,0.039761122227867,0.0412555308585554,0.043161948376353,0.0575743668905669,0.0712433607962862,0.0850793983543839,0.097942369532777,0.1098345103826288,0.1255827228617638,0.1377836691410392,0.1494471816372788,0.1612534577961956,0.1718022944140667,0.1852418234489591,0.1986713407772873,0.2110271328367136,0.2220303036928526,0.2327277928765555,0.2438402907028272,0.253048508129355,0.2628846825137658,0.2722224115021635,0.2805908866740833,0.2884686731901869,0.296187717672995,0.303059443672757,0.3101090926566705,0.3159842251326744,0.3221840981461825,0.3291788396674733,0.3337796309756066,0.3386956465287786,0.3428216020220466,0.3432771351052198,0.3430421158704084,0.3432058952490063,0.3437400168443063,0.3442549572534801,0.3439105423447257,0.343302329278957,0.3441359549451635,0.3448098839796023,0.3452757665147045,0.3464421938708404,0.3479467808776,0.3486658409086138,0.3497333871040014,0.3509529553679131,0.3511302249960665,0.3510629166547452,0.3543592818150263,0.3562034041356027,0.3583585175759504,0.3597201262175881,0.360451433461703,0.3626017293997965,0.3654231540003083,0.3682862023154298,0.368965932346214,0.3705692803437164,0.3707773707773708,0.3673357162496563,0.3715399610136452,0.0,2.603841528129384,57.657394243802166,197.10084934955384,298.6772185661449,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95755,42787,403.1225523471359,6780,69.77181348232469,5274,54.58722782100152,2115,21.73254660331053,77.35098256499538,79.6992651792422,63.33757887846742,65.07106218834831,77.09140393684795,79.43873510222447,63.24259573971968,64.97809121738733,0.2595786281474233,260.5300770177337,0.0949831387477431,92.97097096097671,104.89732,73.78721384895253,109547.6163124641,77058.34039888522,295.38801,187.4584832050098,307990.6532295964,195279.3230158016,303.80945,145.45128374228193,314908.4747532766,149981.05417235306,3055.63788,1378.8354901075788,3163587.196491045,1412614.57369469,1285.39781,555.0538783870817,1329298.2298574487,566652.5578376208,2081.21834,865.5698248061013,2140159.030860008,874812.3277721077,0.38114,100000,0,476806,4979.437105112005,0,0.0,0,0.0,25168,262.3152837971908,0,0.0,27979,289.770769150436,1913960,0,68720,0,0,0,0,0,63,0.6579290898647591,0,0.0,0,0.0,0,0.0,0.0678,0.1778873904601983,0.3119469026548672,0.02115,0.3297946640592261,0.6702053359407738,25.060245781608568,4.610327869042092,0.3365566932119833,0.1968145620022753,0.2330299582859309,0.2335987864998104,11.077067696525395,5.405789901790617,22.608258404202545,12722.774836755238,59.65681995961933,12.327655718517908,20.176044765201347,13.654439619406554,13.498679856493537,0.550056882821388,0.7697495183044316,0.7109859154929578,0.580146460537022,0.1030844155844155,0.6981845688350984,0.9070422535211268,0.8486238532110092,0.6901408450704225,0.1417004048582996,0.5005060728744939,0.698389458272328,0.666168782673637,0.5470899470899471,0.0934010152284263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002035381203609,0.0042570012466932,0.0065041145373555,0.0084911026245226,0.0107065510264257,0.0128778084311469,0.0150253310363808,0.0170948021595582,0.0193481127157881,0.0215845009159852,0.0237611989257231,0.0258571135290494,0.0280882126150208,0.0301201717622102,0.0324437521276705,0.0344485442311866,0.0366025388804903,0.0387664466857593,0.040650406504065,0.0428572916775181,0.0569346723176816,0.0705700208174238,0.0839336080442053,0.0967480786012427,0.1081710749638937,0.1242058752021648,0.1370346802418071,0.1495934786310233,0.1617672192787557,0.1722658428798215,0.1856399651016253,0.1988442058785334,0.2118268927487682,0.2224945295404814,0.23296311380673,0.2440430012191067,0.2545141874462597,0.2636132487286801,0.2729346604773632,0.2817723260346211,0.2900993078543484,0.2979624796657577,0.3048868489229058,0.3116173775557871,0.3177017577935321,0.3233114180886952,0.3282559215627423,0.3339775949544142,0.3391437229661478,0.3433480362378173,0.3431153068105192,0.3430415356610954,0.3434494640663174,0.3429536427680978,0.3433962826164661,0.3426720498610706,0.3422515084153699,0.3421052631578947,0.3428615495347283,0.3440294769979252,0.3447848614552827,0.3459514009814785,0.3477968805760228,0.3496293642084518,0.3507046318118416,0.3523543391397456,0.3532899988596191,0.3560491493383743,0.3584072347435942,0.3580565707929445,0.3603035289815323,0.3642868585464837,0.3665590785393329,0.3709665115569456,0.374492972361098,0.3754624656880296,0.3785257908680068,0.3792117623034511,0.3745108999441028,0.3804897007384376,0.0,1.8866051956043568,58.68948075388004,203.55373070822492,295.1630721030888,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95830,42909,404.4140665762287,7001,71.75206094125014,5416,55.80715850986121,2167,22.14337890013566,77.51248185563044,79.79865153944161,63.42745123530996,65.11097239973869,77.24459251367257,79.53383742028876,63.328764174243474,65.01665585897736,0.2678893419578685,264.81411915284525,0.0986870610664851,94.31654076132644,105.40134,74.0668544114781,109987.83262026504,77289.84077165618,293.81674,186.2798156159196,305910.1116560576,193693.7656432429,305.17697,147.34992075698037,313595.43984138576,150088.01169980026,3096.96776,1405.1092975450654,3193089.721381613,1427610.787378757,1282.23347,563.4904484465231,1318637.013461338,568618.207707945,2120.63648,887.8705075782821,2169402.8383595957,888629.8997241504,0.3836,100000,0,479097,4999.446937284775,0,0.0,0,0.0,25166,261.8699780861943,0,0.0,28272,290.3057497652092,1920070,0,68838,0,0,0,0,0,45,0.459146405092351,0,0.0,0,0.0,0,0.0,0.07001,0.1825078206465067,0.3095272103985145,0.02167,0.3185255198487712,0.6814744801512287,25.09086309994104,4.42127256300113,0.3316100443131462,0.2197193500738552,0.2287666174298375,0.219903988183161,11.054268806001089,5.754640868586357,23.079914162672505,12789.680860900697,60.95333674729655,13.826159727275453,20.176941644344577,13.91684421978538,13.033391155891138,0.5614844903988183,0.7655462184873949,0.700445434298441,0.5907990314769975,0.1175482787573467,0.7309682187730968,0.9166666666666666,0.8687782805429864,0.7418300653594772,0.1587982832618025,0.5050455328574944,0.6968215158924206,0.6454948301329394,0.5412647374062165,0.1075156576200417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023779167425576,0.0046181424129794,0.0067809323021721,0.0091221803939077,0.0113269265933887,0.013637750432218,0.0158111217446193,0.0179168706151085,0.0199422053853144,0.0219654361386644,0.0240850349192045,0.0260696558231119,0.0281234265985758,0.0300625746161129,0.0323611583624573,0.03448774492083,0.0363717262859448,0.0384746975210724,0.0404300628473484,0.042414083891185,0.0569634774628204,0.0710812760751592,0.0842807892613511,0.0972387064248127,0.1093924397178056,0.1247689366331822,0.1375184152791173,0.1501637531368295,0.1615178580956344,0.1728421503533947,0.1854791014763917,0.1981077052686151,0.2107771818201559,0.2219188554578714,0.2329275795394621,0.24476862502212,0.2547378976101609,0.2644911255897551,0.2741760108732586,0.2831003782900376,0.2915508391487398,0.2992613993802279,0.3057590017573034,0.3125373276953582,0.3187493188340861,0.3250221195438458,0.3297496850796343,0.3352171213522726,0.3407751338105372,0.345569886259161,0.3458788813627523,0.3463973470003015,0.3460681088507858,0.3458813364055299,0.3461048578199052,0.3457512644591476,0.3456512797797956,0.3456057201895797,0.3478854257297371,0.3481876751200186,0.3494043605304562,0.3511115502420709,0.3513564470514297,0.3510182207931404,0.351618618906235,0.3531121085540824,0.3546336757278248,0.3574440176145413,0.3612408504705472,0.3634186557788945,0.3661123595505618,0.3676786744271407,0.3689646590343454,0.369047619047619,0.3718079673135853,0.3769554050898903,0.38572501878287,0.3911242603550295,0.3897754936434947,0.3891385767790262,0.0,2.7288121219629407,58.95337283803666,205.8995671075077,305.1867046698255,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95733,42807,403.1629636593442,6703,68.74327556850824,5203,53.71188618344771,2108,21.643529399475625,77.31288813594676,79.67077619610596,63.318020272784125,65.06178253220091,77.05767549077778,79.41534950285957,63.22474296355176,64.97071360029409,0.2552126451689815,255.42669324639175,0.0932773092323699,91.0689319068183,104.6826,73.69223141542294,109348.50051706308,76976.83287416349,294.25521,187.51037501588647,306725.7998809188,195235.63631137696,309.60481,148.97830496884336,318744.1947917646,152128.990223581,3006.1328,1360.2686090322877,3106252.013412303,1387627.221524231,1266.389,553.9776703161489,1304769.0242654048,561609.7205519783,2076.84872,861.1604037627037,2134880.9292511465,871753.9091683958,0.38075,100000,0,475830,4970.386387139231,0,0.0,0,0.0,25036,260.8504904264987,0,0.0,28500,293.0546415551586,1913676,0,68695,0,0,0,0,0,68,0.7103088799055707,0,0.0,0,0.0,0,0.0,0.06703,0.1760472751149047,0.3144860510219305,0.02108,0.3295938653791536,0.6704061346208463,25.28403653994005,4.471665785291051,0.3298097251585624,0.2116086872957908,0.2267922352488948,0.2317893522967518,11.306138485391209,5.764759268268468,22.33907904587977,12722.961530629853,58.88213584033037,13.098064255694366,19.378872154670635,13.151259160434288,13.253940269531071,0.5562175667883913,0.7892824704813806,0.6893939393939394,0.5805084745762712,0.1301824212271973,0.7323506594259116,0.91869918699187,0.8789346246973365,0.720754716981132,0.2107438016528925,0.4982115482881962,0.7240437158469946,0.6293169608595549,0.5398907103825137,0.1099585062240663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025522088760153,0.0046017089165712,0.0067878123763431,0.0089180514362328,0.0110861362272556,0.0134419551934826,0.0155909044560008,0.0179375401986707,0.0202833950150285,0.022588341303079,0.0248331299791861,0.0271294347178723,0.0289616587131808,0.0310761814511144,0.0332827798239912,0.0353569804456571,0.037214985399797,0.039284046692607,0.0411176855963312,0.0429477895745855,0.0572845435089001,0.0711064608945854,0.0848346301461798,0.0978876867594023,0.1103203222201134,0.1260590419174344,0.13883701188455,0.1511016498137307,0.1625273727500934,0.1732509758503839,0.1875376862778878,0.1989292667099286,0.2110757119401524,0.2217810736317102,0.2323071167642269,0.2427941600017723,0.2530107034833755,0.262921626426048,0.2724072538977777,0.2801320101757844,0.2879207141285848,0.2957174775112005,0.3028506514253257,0.3087665879475899,0.3156008116942294,0.3210349843445674,0.3266701735928459,0.331844158488933,0.3364688200463844,0.3417022344966106,0.3419246071886169,0.3424485803634159,0.3426281327613457,0.3428199000651749,0.342602527420124,0.3425143629604596,0.3429279844874994,0.3432597231377719,0.3444272976680384,0.3448071748878923,0.3455475715736804,0.3462951561972474,0.3476259537171322,0.3493152220204873,0.3501799821225811,0.3507517418408507,0.3511793872345304,0.3533682041527975,0.3579442891020422,0.3604907581893268,0.3636739950326557,0.3678111817162386,0.3699294532627866,0.3689327821160618,0.3705949223190602,0.3719156037668375,0.3789685612513551,0.3909313725490196,0.3951205832865956,0.4027565084226646,0.0,2.490257611610638,56.4570799907026,201.97287886831052,293.3877033341244,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95787,42623,401.181788760479,6911,71.03260358921356,5411,55.97836867215801,2152,22.101120193763244,77.37208356525132,79.70911195696696,63.35007434272507,65.07883645288089,77.10908811123893,79.44574000707128,63.25429444810897,64.98510269135234,0.2629954540123833,263.371949895685,0.0957798946161005,93.73376152855428,104.42124,73.39778582364221,109013.99981208306,76626.04092793616,292.11525,184.8575187073054,304444.0268512429,192468.77833871543,298.6969,143.41711405346123,308473.2479355236,147157.1015644273,3105.40324,1392.1562126085992,3213871.569210853,1425270.7910349004,1301.20014,561.924275897241,1344538.0166410892,572747.8686203472,2113.19846,877.2575359392924,2172116.13266936,888415.3485315484,0.38028,100000,0,474642,4955.181809640138,0,0.0,0,0.0,24985,260.2754027164437,0,0.0,27661,285.4458329418397,1922163,0,68990,0,0,0,0,0,49,0.5011118418992139,0,0.0,0,0.0,0,0.0,0.06911,0.1817345114126433,0.3113876428881493,0.02152,0.3194444444444444,0.6805555555555556,25.153485111244237,4.517255190056535,0.3306228053964147,0.2112363703566808,0.2273147292552208,0.2308260949916836,11.074239675902964,5.538230064040692,22.896086187191216,12725.48403842869,60.864503647540026,13.52280267003074,20.01924191234816,13.653216211341238,13.669242853819904,0.5364997227869155,0.7751531058617673,0.6825041922861934,0.5463414634146342,0.099279423538831,0.6899166034874905,0.9193548387096774,0.8404761904761905,0.6702127659574468,0.1061224489795918,0.4870478983382209,0.7055771725032426,0.6340394448502557,0.509493670886076,0.097609561752988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027549883520713,0.0049166700458213,0.0070426823080513,0.0093355410855233,0.0112274992372622,0.013235054569148,0.0153298881855894,0.0176337326775108,0.0199783355134074,0.0221471701975232,0.0241542923314989,0.0262317963033282,0.0283805314282777,0.0305086490939044,0.0325963660362571,0.0347784757811208,0.0367567903279231,0.0388173314251343,0.0409600997506234,0.0430301200428947,0.0576559842215659,0.0713710478700595,0.0847528696472561,0.0974266830585589,0.1094816687737041,0.1254952090178222,0.1381005870758536,0.1505927382914252,0.1613994281080619,0.17289769683985,0.1862461409377924,0.1990142778396256,0.2112452592343052,0.2222732340788351,0.2327207944310646,0.2437495847819828,0.2537947648416849,0.2635927295617279,0.2729426433915212,0.2810693228003892,0.2894499444855662,0.2968561841628377,0.3039900691611988,0.3105917287291362,0.3160270880361174,0.3208550881686533,0.3269445035616369,0.3321843758744371,0.3370648375825029,0.3420448548812665,0.3428006350402282,0.342652152399802,0.3438773639453384,0.3434900241619283,0.3441672366112581,0.3428720322486703,0.3417007384868942,0.3426937675610838,0.3435866678090994,0.3456597967654215,0.3474712988669618,0.3475386472951842,0.3491547464239272,0.3492489870839209,0.3508543609765502,0.3519884877027734,0.3510321100917431,0.3512675253979808,0.3542951813599351,0.3565151394104018,0.3605364335408275,0.3623853211009174,0.3658289548648477,0.3671119299861815,0.3708036138849263,0.3781100478468899,0.3768272041852593,0.3769445552453131,0.3816793893129771,0.3836812144212523,0.0,1.9357045452621675,58.458787992346416,204.49422167998287,311.9017668459709,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95657,43101,407.4035355488882,6758,69.61330587411271,5157,53.44094002529872,2134,22.005707893828998,77.25911226955019,79.65608126754196,63.27736057920528,65.04611303927017,77.0124570693386,79.40603187142227,63.18815436676075,64.95737627625289,0.2466552002115918,250.04939611969235,0.0892062124445303,88.7367630172804,103.653,73.00905087064464,108359.03279425448,76323.79320974383,292.26089,186.0113442672928,305065.0135379533,194003.2584490241,303.72495,145.79623707091775,314476.4732324869,150088.5803788092,2977.53656,1338.390610667267,3088225.681340623,1375515.77986235,1277.58901,556.0588750781909,1325582.7905955657,571689.627270486,2105.84386,860.7611049840717,2174564.4333399544,878898.1297107226,0.38319,100000,0,471150,4925.410581557022,0,0.0,0,0.0,24963,260.47231253332217,0,0.0,28103,290.7889647385973,1914038,0,68715,0,0,0,0,0,44,0.449522774078217,0,0.0,0,0.0,0,0.0,0.06758,0.1763615960750541,0.3157738976028411,0.02134,0.307475317348378,0.692524682651622,25.341462253485435,4.556843724640952,0.3261586193523366,0.2065154159394997,0.2278456466938142,0.2394803180143494,11.303021391396378,5.714016541600675,22.381655201523216,12812.080124041,57.99356658242929,12.686937904056052,18.75773218029897,13.005604220880205,13.543292277194068,0.5493503975179368,0.780281690140845,0.6944114149821641,0.5829787234042553,0.1206477732793522,0.7249216300940439,0.91644908616188,0.8534704370179949,0.7874015748031497,0.168,0.4916258696212316,0.7038123167155426,0.6465583913379737,0.5266015200868621,0.1086294416243654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0045123150711323,0.0070945740210705,0.0093582344334254,0.011496006917951,0.0135966431059417,0.0159063564247405,0.0179466500607409,0.0201081567352613,0.0220689090425205,0.0242164511928806,0.0266451725518785,0.0283157624067883,0.0304925159416109,0.0326309054508678,0.0345861551982629,0.0365482233502538,0.0383437652456429,0.0404198000852914,0.0422408940224756,0.0568362313994315,0.0712587581035367,0.0849258683691041,0.098436430639642,0.1102745512143611,0.1262986222161034,0.1397346984292193,0.1518505891628135,0.1635035871994183,0.1744620538590388,0.1877750453015791,0.2005135817450944,0.2128347837452212,0.2235807094809264,0.2337574982357092,0.2457248822954606,0.2556692957431336,0.2655425219941349,0.2740082795014102,0.2820937018910411,0.2905059693007391,0.2978830704274907,0.3050829358581903,0.3120574197193936,0.3180842762387826,0.3243052808544304,0.3303498575212463,0.3361357402564266,0.3413285569659683,0.346369084630955,0.3464409616760485,0.346156501567225,0.3467790998740785,0.3462471844801278,0.34656333527453,0.3460787178737868,0.3454522341575033,0.3459428288985913,0.3470882948423184,0.3472916554677561,0.3486986751855679,0.3493271498503676,0.3497299909646782,0.3508105086640581,0.3521685790575161,0.353886280646844,0.355038361712444,0.3570887991927346,0.358985200845666,0.3600909199665031,0.3612610963667978,0.3641066666666667,0.3674412714493763,0.3679554640433158,0.3669078267405806,0.367032704702793,0.3714856352742356,0.3739820846905538,0.3840336134453782,0.380652772316162,0.0,1.8077545335142664,56.54684946985444,189.73384015818087,300.80108648534645,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95620,43150,406.3585024053545,6918,71.04162309140347,5390,55.80422505751935,2131,21.9201003974064,77.28554750318864,79.71690096166681,63.27381344368565,65.071739330926,77.0212761786855,79.45416225116234,63.17511076189786,64.97659090737297,0.2642713245031416,262.73871050446473,0.0987026817877847,95.14842355302731,102.3308,72.00061884293547,107018.19702991004,75298.70199010194,292.5011,185.8998928314223,305301.2445095168,193817.0286879547,305.98813,147.67208841645385,316947.3331938925,152090.91107594583,3083.2224,1398.4608819919442,3190737.962769296,1428803.7251536772,1297.58626,567.4310336682377,1340830.1401380466,577229.3772661273,2101.54804,883.0361897598226,2162557.9167538173,891845.1328993556,0.38387,100000,0,465140,4864.463501359548,0,0.0,0,0.0,24962,260.4266889772014,0,0.0,28388,293.8088266053127,1922137,0,68992,0,0,0,0,0,51,0.5333612215017779,0,0.0,0,0.0,0,0.0,0.06918,0.1802172610519186,0.3080370049147152,0.02131,0.3170396814499519,0.682960318550048,25.32394867435987,4.487284112785496,0.3322820037105751,0.2129870129870129,0.2269016697588126,0.2278293135435992,11.155675950805346,5.619705557569304,22.81661409045479,12874.044381208048,60.7059810441145,13.534537674672816,19.9457255249189,13.717953421663518,13.507764422859267,0.5512059369202227,0.7787456445993032,0.6800670016750419,0.588716271463614,0.1131921824104234,0.6991869918699187,0.898936170212766,0.8356807511737089,0.7206896551724138,0.1647509578544061,0.5016101065147387,0.7202072538860104,0.6315018315018315,0.5476956055734191,0.0992761116856256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00216862586137,0.0044224000649159,0.006883807821955,0.0093611831071809,0.0119745248850364,0.0142407480976683,0.0164947822627536,0.0186131088591042,0.0209264505835063,0.0231765019151594,0.0252254285450498,0.0271064529387587,0.0292952063325407,0.0314094568545186,0.0336823410362844,0.0358203088635352,0.037980061762938,0.0402534011839235,0.0423106947697111,0.0440184001084813,0.0588954746448395,0.0731472166331321,0.0863589075356501,0.0990686305497608,0.1113294248138171,0.1270308627592196,0.1395309295331611,0.1520863094603526,0.1644105340881122,0.1753701674080759,0.1890512366728536,0.2010712814173877,0.212571391201988,0.2233960940753567,0.2341985709244883,0.2454375915811908,0.2556714632319234,0.2656475468975469,0.2742577183649343,0.282778707887072,0.2909238343469447,0.2979346539988988,0.3049150773318151,0.3121328961118518,0.3183240590792309,0.3244958694014645,0.3302209577761345,0.3354965384468272,0.3411182801282634,0.3461421487603305,0.3467067644837631,0.3466056991750106,0.3471516485998193,0.3478921987458908,0.3501994760033345,0.3488261323827669,0.3481010646750357,0.34967374110203,0.3499023671679627,0.3509467116115614,0.3522793440898589,0.3526513652552434,0.3536062542030935,0.3536396836421482,0.3549847124250668,0.3572637113777754,0.3569564230594643,0.357391440664681,0.3592006138392857,0.361970716264345,0.3627803302551972,0.3653069895899724,0.3672569159997479,0.3691524908869988,0.3734058514628657,0.3760028315243039,0.3741216009776963,0.3785699817703059,0.3733952472002185,0.3751416698148848,0.0,2.075615357582117,59.74543868625026,201.07003866914928,308.04942880165254,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95829,42738,401.360757182064,6769,69.57184150935521,5248,54.367675755773305,2080,21.4444479228626,77.35864855579545,79.66299777031323,63.35358995694328,65.05402634470376,77.11018425673286,79.4130232090311,63.26375801932304,64.96574489266487,0.24846429906259,249.97456128213005,0.0898319376202323,88.28145203888482,103.653,72.93276599279469,108164.5430923833,76107.19718748466,293.22706,186.01521142262104,305608.3648999781,193730.07275732924,304.39207,146.24242085873806,315336.43260390905,150814.5682875421,3010.94744,1348.8037542875704,3120723.8727316367,1386234.641170805,1266.71537,546.4005265143526,1312967.0245958949,561300.1560220314,2037.82464,832.9821776315689,2102679.710734746,847298.0053155691,0.38132,100000,0,471150,4916.570140562878,0,0.0,0,0.0,24921,259.65000156528816,0,0.0,28112,291.10185851882,1921906,0,69009,0,0,0,0,0,64,0.6574210312118461,0,0.0,0,0.0,0,0.0,0.06769,0.1775149480751075,0.3072832028364603,0.0208,0.320812894183602,0.6791871058163981,25.50047731208094,4.588646442921325,0.3277439024390244,0.2185594512195122,0.2242759146341463,0.229420731707317,11.344399939276204,5.765531806893772,21.874410507016144,12788.76406704319,58.90994407039274,13.434837038655182,19.32847952954912,13.00409349622297,13.142534005965452,0.5485899390243902,0.7846556233653008,0.688953488372093,0.5454545454545454,0.1262458471760797,0.7094017094017094,0.9425587467362924,0.8463414634146341,0.6831275720164609,0.1553784860557769,0.496339308255491,0.7054973821989529,0.6396946564885496,0.5096359743040685,0.1185729275970619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022569479586259,0.0047908922403751,0.0070561756744426,0.0092849097385004,0.0115010261516266,0.0136717359239102,0.0157580572872102,0.0180347434027317,0.0204012831252681,0.0226579921847828,0.0248381678138315,0.0268939627053972,0.0291673087789592,0.0312519294490522,0.0333027456721896,0.0356003098373354,0.0374861612639551,0.0396831978769281,0.041806454293341,0.0437339940452643,0.0582227507928559,0.0725852822180172,0.0860487784427372,0.0984678114294121,0.1105326940302439,0.1258863187260258,0.1386061993809099,0.150520135298998,0.1622149628490904,0.1729435349864385,0.1869543218249739,0.2003331494521422,0.2116279575504523,0.2230279564247276,0.234172547033763,0.2447473404255319,0.255088604204794,0.264582817807572,0.2737421294457995,0.2826774178769414,0.2899228214711362,0.2967020106265945,0.3038253436415945,0.3103307717207562,0.3166609930457618,0.3227572600036993,0.3283109537098449,0.3337446884303198,0.339325959122348,0.3441876427185491,0.3447918349760328,0.345827313381493,0.345813861832104,0.3462910282884002,0.3464297915954902,0.3459431334741223,0.3449973874629891,0.3453069541212041,0.3452877968653754,0.3461476481226163,0.3468402464682897,0.3479208352318877,0.3493081549396475,0.3500985751411417,0.3521099590065107,0.3511792452830188,0.3531113912445565,0.3559756792703781,0.3573373890284017,0.3591879229567933,0.3612153381531985,0.3630038002462131,0.3635324741286267,0.3652381318765869,0.3668109939759036,0.3713374291115311,0.3691481197237145,0.3699469171090241,0.3630769230769231,0.3559857763729751,0.0,1.5446883491307983,57.3599907396351,196.2878904838049,302.29612753047064,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95856,42738,401.6858621265232,6860,70.11559005174429,5332,54.98873309964948,2139,21.86613253213153,77.41454581429173,79.70328503604344,63.37712166936033,65.06812671013107,77.1535203204116,79.44387041573033,63.28109094585869,64.97516974553677,0.2610254938801262,259.4146203131089,0.0960307235016344,92.95696459429335,104.18782,73.33230740006299,108692.01719245536,76502.5740695032,291.81487,185.11545958035072,303825.0292104824,192512.8417421452,308.88542,149.08816155787366,318276.4459188783,152465.19512269774,3080.68436,1398.6176633147668,3179691.57903522,1424906.5925083123,1326.88908,585.1145124755737,1363716.470539142,589880.8926498439,2110.50642,884.8522714496736,2160385.390585879,889483.9442545114,0.37968,100000,0,473581,4940.546236020698,0,0.0,0,0.0,24775,257.81380403939244,0,0.0,28458,292.93940911367054,1921803,0,68985,0,0,0,0,0,62,0.6363712235019195,0,0.0,0,0.0,0,0.0,0.0686,0.1806784660766961,0.3118075801749271,0.02139,0.3187560738581146,0.6812439261418853,25.209106360917573,4.56841148109566,0.3223930982745686,0.214178544636159,0.2304951237809452,0.232933233308327,11.356272571205894,5.768240687495162,22.91434247956758,12738.249340469829,60.05638092837424,13.223362281022291,19.312031576614263,13.762201620180322,13.758785450557356,0.5534508627156789,0.7486865148861647,0.6934264107038977,0.6061838893409276,0.1280193236714976,0.7100456621004566,0.9101796407185628,0.8709677419354839,0.7301587301587301,0.183206106870229,0.5022399203583873,0.681930693069307,0.6390577507598785,0.563457330415755,0.1132653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611175785797,0.0049237627273187,0.0070170457426204,0.0092278642925304,0.0114137615611342,0.0136855279357746,0.0160554197229013,0.0180341915214819,0.0205728528234044,0.0229113820472956,0.0252696487651981,0.0273466750094882,0.0296538331124194,0.0317028985507246,0.033620982957533,0.0355910846708392,0.0377309689834261,0.0393276474916318,0.0415321534229511,0.0434045474402446,0.0582316755291419,0.0722100885122213,0.085334171380683,0.0975924739875896,0.1095151847015711,0.1249749162996525,0.137474444668072,0.1497991199540845,0.1612682968463278,0.1720197487496385,0.1858756454388984,0.1993448152833187,0.2116569416826939,0.2233331147970891,0.2339747464202116,0.2447608931377105,0.2547804078538059,0.2648671731019912,0.2731489356876354,0.2814031231396254,0.2898528935559976,0.2968823089157077,0.3038885142728703,0.3098919009611466,0.3161789724396053,0.3221392114801391,0.3279121594551282,0.3336303235496271,0.3385826771653543,0.342911143125256,0.3432857951635079,0.3429201101928374,0.3428273314345337,0.3431955229708038,0.3437964670195682,0.3427673919705792,0.3414838730098439,0.3416215329066141,0.3418835552061794,0.3428912996930983,0.3437780940964938,0.3449591711647586,0.3464154892726321,0.3479629422926666,0.3493585123252126,0.3497253533959857,0.3511222370779165,0.3527275004697188,0.3528855250709555,0.3547157827881867,0.3557998001635026,0.3562463591590319,0.3584551931008624,0.3603976801988401,0.3589982310771809,0.3600329334274288,0.3604014598540146,0.3644291218819712,0.3641856632793189,0.3650853889943074,0.0,2.4717317960705536,57.4621835774718,206.22810670307047,299.7834374090448,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95713,42719,402.0456991213315,6910,70.99349095734122,5465,56.56493893201551,2300,23.674944887319384,77.36002699221102,79.72997587593672,63.33690834044432,65.0877016435009,77.08095624558486,79.45069476360204,63.23470289725511,64.98809174620041,0.2790707466261608,279.28111233467234,0.1022054431892129,99.6098973004962,105.12018,73.88986880702639,109828.52903994232,77199.4074023658,296.25624,187.990908654358,308974.71607827564,195864.5364121117,305.96164,147.30537020231972,316091.35645105684,151259.9153211599,3143.29948,1423.6406056092476,3254371.1721500736,1458067.491779203,1340.72877,588.0662193440555,1387578.4062770992,601352.658568018,2265.56668,936.6196690522536,2333969.408544294,950240.9550598718,0.38077,100000,0,477819,4992.205865451924,0,0.0,0,0.0,25264,263.3915977975824,0,0.0,28318,292.30094135592867,1913173,0,68691,0,0,0,0,0,59,0.6164261907995779,0,0.0,0,0.0,0,0.0,0.0691,0.1814743808598366,0.3328509406657018,0.023,0.3209468758601707,0.6790531241398293,24.927917621341035,4.464281962365605,0.3196706312900274,0.2104300091491308,0.231107044830741,0.2387923147301006,10.949938690518376,5.54044924389603,24.436653125859607,12762.737189265315,61.71349658277628,13.684374737016348,19.6114445657823,14.103345286671557,14.314331993306078,0.5463860933211345,0.7721739130434783,0.6977676016027475,0.5748218527315915,0.1172413793103448,0.7120677487649965,0.9,0.8741865509761388,0.7346938775510204,0.1433823529411764,0.4883893280632411,0.7065789473684211,0.6345256609642301,0.5263157894736842,0.1103581800580832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024916186405485,0.0046934079412867,0.0069005408806307,0.0090310652390337,0.0113918385613735,0.0136043338356889,0.0157492354740061,0.0180550735879483,0.0202606695629951,0.0225436899167664,0.0245547843382511,0.0266521565044197,0.0285881760126692,0.0308795204301296,0.0327799502677493,0.0350806451612903,0.0371187634675948,0.0390890974009798,0.0414382742373339,0.0434510784620193,0.0576581657163147,0.0717687324032111,0.0849541553891022,0.0976787235609032,0.1097990426586255,0.1255946717411988,0.1387836934729338,0.150527335227696,0.1626312360486601,0.1736388209550778,0.1873505267920625,0.2000541037710328,0.2122710722243356,0.2231489882702756,0.233720098982678,0.2440299499357582,0.2549032733114666,0.2644392964778912,0.2729303443662051,0.2814171046454375,0.2897622131754256,0.2973393186972481,0.3051743718355179,0.3111502389593589,0.3175104460207948,0.3232213706597008,0.3292392828525641,0.3342620510667531,0.3392357512953368,0.3445889732585011,0.3446620920231338,0.344522870771182,0.3442650735138342,0.3444827686154024,0.3448959218035254,0.3441130876552116,0.3427769674678166,0.3431904057828158,0.3443408332620412,0.3438963360142985,0.3445326129776577,0.3457398393288218,0.3468562811544423,0.3465652271201611,0.3475884321799224,0.3500548675340962,0.3511518099871226,0.3528089176008613,0.3556852343059239,0.3573148222454056,0.3610688781386777,0.3640854902803136,0.362772427774962,0.3619857504022064,0.3624976455076285,0.3681083650190114,0.370159803318992,0.3732135565536953,0.3728436282693378,0.3756325418450759,0.0,2.025696152370027,62.79271634231998,198.7090103442721,312.42324349126426,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95745,42534,400.8042195414904,6784,69.64332341114418,5285,54.56159590579142,2145,21.975037860984905,77.33346816806463,79.69602598859423,63.32120940122799,65.07019736428904,77.07309536829807,79.43749377741446,63.22639147783879,64.97887077484285,0.2603727997665572,258.53221117976943,0.0948179233892005,91.3265894461972,103.73088,72.97027235073226,108340.78019739932,76213.14152251529,289.53362,183.76984578816385,301749.6266123557,191285.6084267208,305.19145,147.1471129167068,314394.9344613296,150222.36930180024,3053.9612,1391.820067093074,3154201.7233275888,1418335.931537641,1302.85889,572.7884685140428,1344496.9241213645,581998.5684851805,2117.78948,872.4315109093416,2172043.030967674,877021.0757515797,0.37887,100000,0,471504,4924.580918063606,0,0.0,0,0.0,24711,257.42336414434175,0,0.0,28265,291.0439187424931,1922705,0,69037,0,0,0,0,0,59,0.5953313488955037,0,0.0,0,0.0,0,0.0,0.06784,0.1790587800564837,0.3161851415094339,0.02145,0.3305703849395898,0.6694296150604102,25.07060518457401,4.531853877368663,0.3453169347209082,0.2051087984862819,0.2130558183538316,0.2365184484389782,11.163251651169764,5.636387756054936,22.66499603838833,12646.44560532743,59.88151777227885,12.877826072465114,20.67218785224016,12.590093072329354,13.74141077524422,0.5557237464522232,0.7850553505535055,0.7084931506849315,0.5710479573712256,0.12,0.7215007215007215,0.9333333333333332,0.8744855967078189,0.7276264591439688,0.1417910447761194,0.4967940497563478,0.7066290550070522,0.6482449589245706,0.5247410817031071,0.1140529531568228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330563858351,0.0046850281912951,0.0068002354708401,0.0089922575138694,0.0113097780761172,0.0138276532700668,0.0159442156343024,0.0179828948174154,0.0202158538081026,0.0224171639728537,0.0246045333852762,0.0267542733945896,0.0289480990919654,0.0310810393301819,0.0327569485999628,0.0347090865866641,0.0365622573129691,0.0385900469015896,0.040514409281823,0.0425454356090194,0.0571920668058455,0.071228231748158,0.0848949698864709,0.0972813798180575,0.108791023369611,0.1243840541397906,0.137843228790901,0.1500702456468985,0.1614815289481272,0.1722285371136895,0.1850144340557542,0.1978318023954039,0.2095269168026101,0.2207505277319012,0.2312591435579852,0.2423574742296577,0.2517189802205652,0.2611117362439518,0.2697785797782393,0.27835854219861,0.2854730511219061,0.2933313061377245,0.3010601292032466,0.3075061402983286,0.3138994405271909,0.3199635705758556,0.3254778901571505,0.3310198426317863,0.3358443676464878,0.3409357882927473,0.3414765607103877,0.3411479830499147,0.3418409747165293,0.3414898694086511,0.34152436484798,0.3403883048116031,0.3400859812491076,0.3409670467071385,0.341200246626019,0.3425282829729342,0.3440585695513422,0.3459329954063044,0.3475653231556431,0.3479244606734021,0.3493246502653159,0.3503892631523762,0.3494361170592434,0.3516066858352554,0.3531573553835824,0.3542007257067666,0.3566040323686737,0.3592807981646481,0.3580794324444163,0.3589960085968683,0.3604287204780423,0.36003861003861,0.3628620102214651,0.3662407254740313,0.3652762119503946,0.3683391676390509,0.0,2.3886818899371365,61.02491989582687,197.36887669389893,294.2676515603396,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95805,42861,403.59062679400864,6792,69.78758937424978,5261,54.412608945253375,2141,22.034340587652,77.34149214859087,79.68161424566996,63.33904717832892,65.07276504145648,77.07590030447489,79.4143030987999,63.24119992514665,64.9767391708144,0.2655918441159883,267.31114687005686,0.097847253182266,96.02587064208024,103.2339,72.63767647472405,107754.18819477064,75818.25215252234,291.22221,185.85311139279847,303466.1447732373,193483.2643315051,308.41099,148.8751041812591,318742.8839830907,152964.95170203995,3015.6748,1372.61014306079,3120224.1219143053,1405214.8249682067,1246.9302,542.2299070737906,1289237.2631908564,553694.6164701381,2102.11008,878.12610734357,2164686.122853713,891282.1843348874,0.38057,100000,0,469245,4897.917645216847,0,0.0,0,0.0,24835,258.70257293460674,0,0.0,28519,294.50446218882104,1923746,0,69052,0,0,0,0,0,52,0.5427691665361932,0,0.0,0,0.0,0,0.0,0.06792,0.1784691383976666,0.3152237926972909,0.02141,0.3266191075674919,0.6733808924325081,24.967131289790988,4.522526037140543,0.3197110815434328,0.2199201672685801,0.2313248431857061,0.2290439080022809,11.145644132098171,5.613995227472869,22.96008097870505,12786.420204177271,59.58772213668275,13.579097284299865,19.203503994947987,13.513081012874157,13.292039844560746,0.5464740543622886,0.7571305099394987,0.7074910820451843,0.543138866064092,0.1228215767634854,0.7218978102189781,0.9437340153452686,0.8702460850111857,0.6898954703832753,0.1346938775510204,0.4847083012079157,0.6618798955613577,0.648582995951417,0.4978494623655914,0.1197916666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0044909420840809,0.006819219645847,0.0093890988903792,0.0118634583100167,0.0142710168990842,0.0166042816200393,0.0186769871742504,0.0207174410994764,0.0225275963054742,0.0248338938561233,0.026884370507291,0.0290166632380168,0.0308540228700937,0.0329883503761105,0.0350715799266111,0.0371432713415896,0.0390883533719929,0.0411289149365089,0.0430889992400345,0.0581158770071888,0.0716571165669831,0.0854519922030559,0.0979308315556069,0.1106532758638859,0.1267744083543849,0.1401024053598498,0.1523049928218216,0.1635804774966114,0.1747904743532034,0.1880805536719515,0.2001513431706394,0.2125359839226549,0.2228353511954194,0.2341875831436833,0.2447917819743629,0.2553779620588956,0.2657362286946172,0.2747782949950732,0.2832408942764023,0.2902115668883961,0.2974134407660419,0.3040404756838546,0.3102845581985562,0.3165034642592795,0.3230663170464478,0.3289575675743255,0.3344261045248351,0.3385878701668175,0.3435556960691326,0.3437634582256675,0.3435299295774648,0.344573932894607,0.3452408488983982,0.3451651294257661,0.3446447182882717,0.3434535706354494,0.3436322035851262,0.3440698013267737,0.3444245249193259,0.3463464217144147,0.3477250149016491,0.3470492804921729,0.3477772031211351,0.3480523882150725,0.3498464204142711,0.3519836353683482,0.3549301155719698,0.3583250461713311,0.3598732501704705,0.3618241524443827,0.3628237574713263,0.3626647894534749,0.3631562597079838,0.3656951743908265,0.3654816238289695,0.3681000781860828,0.3684755592377796,0.3683914510686164,0.3689095127610209,0.0,1.953287584395604,60.60279356650585,192.83942621209735,300.41992689958903,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95703,42615,400.6144008024827,6785,69.55894799536064,5272,54.51239773047867,2130,21.90108982999488,77.3419109081298,79.7119683589564,63.33255108723839,65.08153109118,77.08131271274176,79.45120273844965,63.23645752679446,64.98788187668289,0.2605981953880416,260.7656205067457,0.0960935604439257,93.6492144971055,104.02436,73.19866607553887,108694.98343834572,76485.23669638243,290.56898,184.29321554621347,303030.6051011985,191984.1537073096,304.31011,147.0666237614937,314582.4059851833,151028.53347837966,3055.17472,1384.058333948369,3159344.5555520724,1413647.014673215,1293.97902,558.5750745601314,1339045.8397333417,570866.2198659589,2107.20986,874.6306897419665,2167806.9652988934,884535.9928846091,0.37954,100000,0,472838,4940.681065379351,0,0.0,0,0.0,24826,258.81111354920955,0,0.0,28195,291.1716456119453,1920347,0,68923,0,0,0,0,0,48,0.5015516754960659,0,0.0,0,0.0,0,0.0,0.06785,0.1787690362017178,0.313927781871776,0.0213,0.319520022324543,0.680479977675457,25.214963694265023,4.61701002231146,0.3154400606980273,0.217185128983308,0.2259104704097116,0.2414643399089529,11.270360021571165,5.4871737500586,22.55797688957303,12711.581894006133,59.37472162346854,13.65264413260306,18.688277858776,13.153345972714218,13.880453659375256,0.5466616084977238,0.7912663755458516,0.6957306073361396,0.5625524769101595,0.1170463472113118,0.7117737003058104,0.9166666666666666,0.8799019607843137,0.7096774193548387,0.12890625,0.4921796165489405,0.7249666221628839,0.6358565737051792,0.5238600212089077,0.1140609636184857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708360337005,0.0049356440660788,0.0069486711300466,0.0093544324368245,0.0116728352381339,0.0140506638429583,0.015963790941619,0.0180044092430799,0.0200531479967293,0.0223832478737449,0.024633521271143,0.0269742989454661,0.0290712023363909,0.0314644248006428,0.0336198623422456,0.035539659075638,0.0373550124275062,0.0395907057834601,0.0418403951130751,0.0436549704555165,0.0577877113643247,0.0718293346731985,0.0853224774155641,0.0975050488051161,0.1098945147679325,0.1254166269879059,0.1387194313299029,0.1506850773440078,0.1614691836800102,0.1723116866397021,0.1856635071090047,0.1988549039980951,0.2106236470242692,0.2211335527682701,0.2318107326301433,0.2426879220635447,0.2537499860595313,0.2634418876535854,0.2723024397990086,0.2806555725959667,0.2885336171394197,0.295994195503856,0.3029499502817368,0.3096108441099272,0.3151294203426905,0.3212536849506001,0.3263858426600158,0.3322936293731222,0.3370991773012891,0.3415701890872649,0.3409292929292929,0.341873994306226,0.342301143958688,0.3425689423784579,0.3424295513258307,0.340931706495614,0.3402679998101536,0.3409400600876689,0.3417128394555031,0.3432870536033779,0.3452050165214779,0.3459115759448538,0.3474793805756607,0.3485781032391392,0.349404574989734,0.3507146222710853,0.3507419927806108,0.3538690099886206,0.3559735530177138,0.3583386735020826,0.3592847317744154,0.3606039513840552,0.3623262015110152,0.3670769230769231,0.3679406731317741,0.3745959535496229,0.3717849992299399,0.3757213520197857,0.3810727323785453,0.3787644787644788,0.0,2.1977870529052965,57.34829014972761,199.40458065517973,301.47456841479794,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95723,42735,402.74542168548834,6830,70.33837217805544,5283,54.77262517890162,2118,21.844279849148062,77.33810060160408,79.72050205786475,63.31256206328344,65.07481567338402,77.07455284552633,79.45449633217392,63.21549016806988,64.97874463997923,0.2635477560777559,266.0057256908317,0.0970718952135598,96.0710334047974,105.0533,73.92562492257026,109746.95736656812,77228.4733267556,293.01362,186.31189195839647,305690.889336941,194222.23406271168,302.56622,145.84483627923032,313467.7663675397,150318.17961807144,3035.40888,1373.9880025492016,3149060.351221754,1413449.5372233114,1291.25809,564.103700027354,1337827.5022721812,578339.8555691193,2086.60126,875.8712385968244,2154268.2114016484,893140.6584046944,0.38028,100000,0,477515,4988.498062116732,0,0.0,0,0.0,24991,260.6270175401941,0,0.0,27980,289.73183038559176,1912729,0,68662,0,0,0,0,0,51,0.522340503327309,0,0.0,0,0.0,0,0.0,0.0683,0.1796045019459345,0.3101024890190337,0.02118,0.325950689511074,0.674049310488926,25.100818761939085,4.517238777686416,0.3297368919174711,0.2157864849517319,0.2243043725156161,0.2301722506151807,11.130471454286983,5.50318409656204,22.703215318340163,12705.226072925854,59.54847629294635,13.35705741185356,19.56492753908253,13.270960902056144,13.355530439954125,0.5523376869203104,0.7780701754385965,0.6888633754305397,0.580590717299578,0.1175986842105263,0.7128787878787879,0.8966480446927374,0.8688524590163934,0.7062937062937062,0.1887550200803212,0.4988644965934898,0.7237851662404092,0.6304182509505704,0.5406006674082313,0.0992761116856256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0042807871779265,0.0066603041809653,0.0087708600117893,0.0109380246436238,0.013322604630318,0.0156049201395263,0.0177821810493631,0.0198803497468936,0.0220140275431321,0.0239442974630324,0.0260612408354383,0.0280905230471842,0.030245298951661,0.0324647189898489,0.0345985718271724,0.0367145356843336,0.0388118852969249,0.0407323082680971,0.0428455352306346,0.0572699645978884,0.0718196187624959,0.0855664910918515,0.0991575603958729,0.1107490482668438,0.1262468663063139,0.1402075419646457,0.1528035094444089,0.1633095754570808,0.1740613602231281,0.1872535711977248,0.2000649491231868,0.2121766197581654,0.2228410122870553,0.2329279700654817,0.2437788886795171,0.2538870520954338,0.2638268172147111,0.2725950833825601,0.2810324859242951,0.2887527078530635,0.2962637620051534,0.3029764443812503,0.3092356955254668,0.3154714136329369,0.321450621095004,0.3271594101123595,0.3322238800260148,0.3369738634152668,0.3412600901008019,0.3419517387262365,0.342694617376453,0.3428752732144116,0.3425327258262819,0.3419337559146505,0.3406903749635473,0.3401049843792124,0.3414361553506566,0.3419075490749773,0.3416867900903318,0.3423870167925166,0.3427055282749881,0.3436823863039596,0.3444010416666667,0.3457043017230992,0.3454791525688407,0.345930728544617,0.3496420047732697,0.3515690669655366,0.3547098152470625,0.3574110090913203,0.3571955719557195,0.3591711914123447,0.3620287455790503,0.3672558139534884,0.3703790911231457,0.3717522658610271,0.3738,0.37438958220293,0.3780395136778115,0.0,1.5677828006155243,58.70443728968901,200.6877005420284,299.1135014799571,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95646,42680,403.1637496602053,6641,68.16803630052485,5173,53.457541350396255,2058,21.16136586997888,77.27782633283482,79.6898884811315,63.2892740309558,65.07279524471855,77.02809170860577,79.44012108943008,63.19778433309528,64.98365844084665,0.249734624229049,249.76739170142537,0.091489697860517,89.13680387189515,103.65256,72.90233590008144,108371.03485770446,76220.99815996637,290.68785,184.6802223282661,303304.2469104824,192472.30976534524,299.37173,144.01810363648622,309131.22346987855,147556.2385411404,2969.49324,1338.2212286282722,3071338.770047885,1365883.2121671715,1251.20999,541.8653917896121,1293133.5131631223,551563.4499067666,2025.89216,837.834839221175,2085213.3701357087,848670.4042723931,0.3799,100000,0,471148,4925.956129895657,0,0.0,0,0.0,24811,258.74579177383265,0,0.0,27762,286.3371181230788,1920163,0,68932,0,0,0,0,0,41,0.4286640319511532,0,0.0,1,0.0104552202914915,0,0.0,0.06641,0.1748091603053435,0.3098930883903026,0.02058,0.3214851057706144,0.6785148942293855,25.12815887962878,4.508880284732085,0.3156775565435917,0.2184419099168761,0.2379663638121013,0.2279141697274309,11.03934021858844,5.491661188895237,21.80738059694761,12724.379139133713,58.19001236716892,13.120421705418035,18.582397357220565,13.6362341399327,12.85095916459761,0.5374057606804562,0.7407079646017699,0.6944274341702388,0.5588952071486596,0.102629346904156,0.703962703962704,0.868421052631579,0.8542600896860987,0.7452471482889734,0.135593220338983,0.4822439526505404,0.6852791878172588,0.6343723673125526,0.5082644628099173,0.0943796394485683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024015564517763,0.0045736654226837,0.0066899478204373,0.0090246653861398,0.0113840988860064,0.0134778578050345,0.0155532891381947,0.017731112177883,0.0198338822855506,0.0217985884184755,0.0238974358974358,0.0260695393148785,0.0281733618702667,0.0302290107806155,0.0322633931797767,0.0341524967936783,0.0362268530512004,0.0381799869168388,0.0401673291847905,0.0420928607922258,0.0566173781284288,0.0703566005131696,0.0841161714231734,0.0970029885928357,0.1089420256210033,0.1242537155438878,0.1377992056580931,0.1501033432059832,0.1616436012063913,0.1730794005238974,0.1869060190073917,0.1991966741008596,0.2115476708750544,0.221599737389211,0.2319936593903768,0.2431300416629731,0.2525342741035145,0.2625900090009,0.2718040078977827,0.2795353096028385,0.2876534930508984,0.2965343930804745,0.3039801289254243,0.3111076491665368,0.316239004714001,0.3218725335438042,0.3275935480639182,0.3334606569900687,0.3388270076116132,0.3444354934562407,0.3443996276760782,0.3441023447095679,0.3441156520264541,0.3448385787978902,0.3450491138636736,0.3436131470981423,0.3433044583962489,0.3445853465477152,0.3459968441273326,0.3472212262459663,0.348285456459618,0.3480832985924999,0.3505770079667038,0.3521764468552472,0.3543565263513187,0.3554702795833659,0.3555917946957342,0.3563080041810522,0.3578076157999432,0.3598265895953757,0.3628721058434399,0.3637285782926699,0.3638779901278319,0.3640489193138989,0.3640417457305502,0.3660295708618824,0.3683556108175319,0.3648424543946932,0.3690140845070422,0.3636715724244772,0.0,2.4050499085795334,56.43425821646983,191.10400264875625,299.32190123887875,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95820,42644,401.55499895637655,6805,69.8079732832394,5245,54.17449384262159,2071,21.27948236276352,77.39792083527668,79.70354286357038,63.37134666233783,65.07260032337743,77.14184523746633,79.44539476272095,63.27840665843844,64.98074607582114,0.2560755978103515,258.1481008494251,0.0929400038993932,91.85424755628446,104.34798,73.38748399506632,108900.0,76588.90001572356,292.26896,185.93540621266712,304459.13170528074,193486.94031795775,305.17411,146.87885269295623,314569.9332080985,150299.0204276377,2980.10708,1348.3992212991964,3080647.380505114,1377758.7782291763,1219.42156,532.1746120842645,1258052.1811730328,540825.143064353,2027.9397,841.2807739873156,2086016.364015863,853595.1253681963,0.38008,100000,0,474309,4950.0,0,0.0,0,0.0,24876,259.0273429346692,0,0.0,28241,290.8265497808391,1920920,0,68865,0,0,0,0,0,57,0.5948653725735755,0,0.0,1,0.0104362346065539,0,0.0,0.06805,0.1790412544727425,0.3043350477590007,0.02071,0.3146599777034559,0.685340022296544,25.11507979757062,4.480697339343694,0.3338417540514776,0.2146806482364156,0.2305052430886558,0.2209723546234509,11.079135383661434,5.566385427265339,21.95802563273704,12637.24863155552,59.13683199490304,13.299327785524156,19.84303593867371,13.311922894891314,12.682545375813849,0.5490943755958055,0.7619893428063943,0.6824671616219303,0.5847808105872622,0.1035375323554788,0.7174887892376681,0.9264305177111716,0.8329896907216495,0.7469879518072289,0.1265822784810126,0.491425646275915,0.6824769433465085,0.6248025276461295,0.5427083333333333,0.0976138828633405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022981291001862,0.0046813727973735,0.0069476139763679,0.0093823299452697,0.0114264801561483,0.0135352425149091,0.0160176071406737,0.0183830655445039,0.0202607434047857,0.0223547707229236,0.0244554638034547,0.0267145421903052,0.0290132018287358,0.0309641170235755,0.0329097224369479,0.0349900883786239,0.0370247762892463,0.0389897084581342,0.0408809602924073,0.0426597006848031,0.0569342304282063,0.0701884661242077,0.0836505090539251,0.09636451565424,0.1091071993253926,0.1246366087002484,0.137543472728815,0.1494162347406847,0.1609016130755261,0.1717791411042944,0.1849363012739745,0.1977135316958153,0.209521014067358,0.2203417626029059,0.2311667747930022,0.2421149354028053,0.252015477079872,0.2620460933108487,0.2715131176163806,0.2793560714408302,0.2872203918848621,0.2945801642657694,0.3018740762636713,0.3081718860315675,0.3136872219461045,0.3196767686706681,0.3253752216367405,0.3311412974482671,0.3363933747947402,0.3416759923638996,0.3417780999946297,0.3415092785769189,0.3415203362904019,0.3417106439426709,0.3411672251712582,0.3413706746480163,0.339449831033067,0.3403070168253084,0.3405231992628112,0.3415522505311646,0.3413501161309658,0.3422072018656864,0.3414148610703659,0.342583045680728,0.3428288631919465,0.3448248803327143,0.3464187327823691,0.3485900973768516,0.3492489839194204,0.3514139638919955,0.3545287356321839,0.3558028275009407,0.3576805307476397,0.3565485362095532,0.3582331616103797,0.3606714628297362,0.3570985740855548,0.3599265456029382,0.360989010989011,0.358974358974359,0.0,2.2301657918444304,58.99013953581143,195.7248185992042,295.7769830307485,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95561,42777,403.7211833279266,6755,69.44255501721413,5233,54.27946547231611,2062,21.21158213078557,77.19945181010942,79.67106364748335,63.224607941291474,65.05400391512119,76.94595789716055,79.41697374066028,63.13104857584232,64.96237013736297,0.2534939129488691,254.08990682306865,0.0935593654491597,91.63377775821856,104.14074,73.26367282149249,108978.28612090708,76666.91727953087,292.43054,185.6413609238922,305534.26607088663,193784.51557004653,300.52402,144.7206950881173,311947.3111415745,149376.23534220926,3007.25008,1355.5833503034498,3121573.0685112127,1393183.108489289,1298.2448,562.182921860321,1347984.345078013,577730.9172783054,2033.8164,844.1303720288463,2095695.9429055788,855919.0860363917,0.38116,100000,0,473367,4953.558460041229,0,0.0,0,0.0,24926,260.3363296742395,0,0.0,27830,288.6323918753466,1911497,0,68628,0,0,0,0,0,51,0.5336905222841954,0,0.0,0,0.0,0,0.0,0.06755,0.1772221639206632,0.3052553663952628,0.02062,0.3180665163472378,0.6819334836527621,25.42903755748809,4.533779021230482,0.3290655455761513,0.2113510414676094,0.2289317790942098,0.2306516338620294,11.094608832131778,5.657540980019482,21.884523107834447,12783.819329846716,58.905929017101045,13.133589432842593,19.13306721617336,13.22339850014972,13.41587386793537,0.5493980508312631,0.7649186256781193,0.6939605110336817,0.5609348914858097,0.1342170671085335,0.7253968253968254,0.9126760563380282,0.8787878787878788,0.76953125,0.1778656126482213,0.4935816763151271,0.6950732356857523,0.638763197586727,0.5042462845010616,0.1226415094339622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023719982564799,0.0050932408027434,0.0075351368917052,0.0097710265170001,0.0119416052449403,0.0142102795164019,0.0165943766903097,0.0189147762109135,0.021029471960704,0.0230069994568503,0.0250880236509028,0.0273821887242552,0.0292064015159317,0.0312451646844021,0.0333887918651634,0.0354625345464708,0.0371369014902465,0.0391378450282673,0.0411015978168031,0.0428641521646083,0.0576963306974603,0.0723086118130629,0.0855626215378146,0.0983857031464036,0.1103653831925845,0.1257434244701941,0.1389089825964852,0.1519465551097071,0.1643900191774071,0.1746284386896952,0.1875864005529635,0.2002452735994443,0.2126399162139163,0.2239419933744323,0.2342280694009094,0.2449954453553733,0.255091763652641,0.2636229251063541,0.2726931306049984,0.2815199411872817,0.2893900373541217,0.2969067085830918,0.3035337114649832,0.3103891578858839,0.3161754851914572,0.3225216316440049,0.3277943152844241,0.3330951135159969,0.3380665947799878,0.3431427058512046,0.343189988377436,0.3445367712014134,0.3449581196943373,0.3442314102285408,0.3447848916999821,0.343922014822104,0.3425060409512908,0.3427034874129796,0.3444228687299159,0.3457725738093528,0.3466882859782424,0.3474213886513256,0.3489167616875712,0.3505075742228825,0.3506889787615334,0.352349169644734,0.3529242789842583,0.3545000316235532,0.3565902426961529,0.3601990049751243,0.3628471433116677,0.3653601694915254,0.3677273583129354,0.3727896341463415,0.373710856928558,0.3773450486820233,0.3747531520583321,0.3780805449809657,0.3755135579293344,0.3822512485593546,0.0,1.902626219644419,55.61961624133438,204.02690756939765,297.3833786374112,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95688,42820,403.634729537664,6747,69.31903686982693,5244,54.28057854694424,2149,22.10308502633559,77.33990302576841,79.72938135489234,63.32261558699434,65.08854018704514,77.07460553758148,79.46478822374988,63.22443330444197,64.99309462800804,0.2652974881869312,264.59313114246186,0.098182282552365,95.4455590371026,105.21522,74.0647201875179,109956.54627539504,77402.307695341,293.04636,185.9390415324413,305697.43332497287,193765.1020753672,301.26531,145.06712881612535,311953.9440682217,149343.5762646675,2994.12596,1355.9053768738604,3100479.0151325143,1388501.1503787043,1299.90391,569.9922624326276,1340547.1009949,577836.8802913601,2107.37334,881.9461596874418,2168628.2292450466,892044.8094612306,0.38066,100000,0,478251,4998.024830699774,0,0.0,0,0.0,24956,260.2207173313268,0,0.0,27916,288.9286012875178,1914192,0,68704,0,0,0,0,0,50,0.5016302984700276,0,0.0,0,0.0,0,0.0,0.06747,0.1772447853727736,0.3185119312286942,0.02149,0.3155223459749048,0.6844776540250952,25.121391875770968,4.496314208374397,0.3056826849733028,0.2315026697177727,0.2313119755911518,0.2315026697177727,10.964004979099563,5.50055670059681,22.818984627384847,12688.808034706788,58.921131417144544,14.250335485525063,17.946429109805198,13.3424455046065,13.381921317207784,0.5440503432494279,0.7479406919275123,0.6918278228321897,0.562242374278648,0.1268533772652388,0.6991492652745553,0.8979057591623036,0.8609625668449198,0.7178571428571429,0.1478599221789883,0.4932928372563908,0.6790865384615384,0.6403580146460537,0.5155412647374062,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021675276005266,0.0044295778217018,0.0066868930807399,0.0090602527119814,0.0111955095939721,0.0135181905169079,0.0154421657764912,0.0176471789009553,0.0199235361465489,0.0219144711253045,0.024183710082526,0.0264119567225769,0.0285767170195481,0.0305196477313694,0.0327374809065764,0.0347808105872622,0.037047013239956,0.039006061612555,0.041047726043357,0.0429878875059937,0.0574938369615175,0.0710726324825694,0.0842967750057701,0.0971081118042478,0.1095650522717922,0.1244987992340488,0.1378055508402648,0.1505939455869204,0.1625706259946383,0.1737969634585692,0.1870476477683956,0.1991040318566451,0.2110409031093323,0.2222513804603356,0.2331968386059925,0.2447964552755469,0.2537828066416711,0.2626823010442924,0.2714956770372387,0.2803271552612889,0.2879553894744149,0.2949314684006175,0.3014674556213018,0.3075936777270494,0.3135466634282591,0.3195529487147892,0.3262161925382661,0.3310725692544568,0.3365388353918532,0.3411876584953508,0.3417462115083859,0.3417641305395986,0.3417414367135037,0.3419928464891321,0.3425045036997335,0.3416765016936683,0.3405266660328928,0.3411784041416714,0.3432963279248505,0.3439524548910425,0.3457581379659302,0.346849965384235,0.3483409838814479,0.3480317431850789,0.3482988932558532,0.3502194586686174,0.3505747126436782,0.3519524832554025,0.3557868736767819,0.3586519715115585,0.3608737376045332,0.3630202774813234,0.3644298273353994,0.3665570259313088,0.3648177794519258,0.3650869254584425,0.3640432098765432,0.3690059683062358,0.3693820224719101,0.3782101167315175,0.0,1.9048539672017772,57.02075513934513,198.03136244540988,299.78826899161294,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95772,42984,405.3794428434198,6930,71.00196299544751,5359,55.235350624399615,2197,22.564006181347366,77.331780499572,79.67293972877464,63.32970022966426,65.06272984152756,77.05946692298558,79.39940536867145,63.22972102939541,64.96474994109403,0.2723135765864271,273.5343601031843,0.0999792002688551,97.97990043352912,103.97926,73.1704940788909,108569.58192373556,76400.71636688268,295.10202,187.58236118420328,307418.34774255526,195152.07073487373,312.41992,151.02610283389015,321007.01666457835,153779.5110841352,3060.46628,1394.8830927917188,3159401.6622812515,1420407.7010331072,1239.31624,546.2305254369201,1280426.951509836,556804.2878071258,2156.30594,903.562406003824,2217815.478427933,914872.7726989292,0.38105,100000,0,472633,4934.980996533433,0,0.0,0,0.0,25141,261.746648289688,0,0.0,28786,295.29507580503696,1916257,0,68840,0,0,0,0,0,73,0.7622269556864218,0,0.0,0,0.0,0,0.0,0.0693,0.1818658968639286,0.317027417027417,0.02197,0.3261790840738209,0.6738209159261791,25.098316276309824,4.480715865640425,0.3319649188281395,0.2144056727001306,0.2267214032468744,0.2269080052248553,10.924337411041716,5.398400180881591,23.475862088122643,12760.86632810862,60.716609719645,13.595286569711153,20.24883410281236,13.574947704179662,13.29754134294186,0.547676805374137,0.7702349869451697,0.6942102304665543,0.5695473251028806,0.1011513157894736,0.7156789197299325,0.9232804232804231,0.8524229074889867,0.7290076335877863,0.1129707112970711,0.4920516641828117,0.695201037613489,0.64,0.5257082896117523,0.0982599795291709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715117751329,0.0049166700458213,0.0074177803484631,0.0095595107481002,0.011533180778032,0.0135846597215857,0.0160274056401786,0.0181305892441504,0.0204146306556807,0.0222142601218201,0.0242239717882478,0.0262541840359775,0.0280813959466546,0.0300991975607494,0.032303675188094,0.0344253651879955,0.0363515850741013,0.0385102057749751,0.0404751018372267,0.0426384839650145,0.0576106351674266,0.0721824172375921,0.0855582460664381,0.0984395523564335,0.1109460285346989,0.1259854168868223,0.1401784957177987,0.1518615805089702,0.162931181693989,0.1736866354509316,0.1873358308573397,0.2004153911058706,0.2128073781635072,0.2236806125239267,0.233625006879093,0.2448753462603878,0.2551330119621496,0.2646883471883191,0.2734511467525691,0.2808048188356007,0.288668378322115,0.2959052429727328,0.3035625517812759,0.3099930470641828,0.3168292771830917,0.3228325089733943,0.3288479609096034,0.3342428028661039,0.3393477922482229,0.344091990483743,0.3439487870619946,0.3438024718544413,0.3434394688993192,0.3426896352055588,0.3425526213939087,0.3430738755892695,0.3423058599333016,0.3428905503771285,0.3442116641787203,0.3447584255578239,0.3454983257458896,0.346631240829599,0.3475788276428586,0.3479942435689872,0.3487436698892684,0.3493555246370724,0.3503471624490732,0.3520311313591496,0.3552051363459978,0.358338995243995,0.3615575351271926,0.3656912751677852,0.3691549926437664,0.3761956186362233,0.3828674652975851,0.3831417624521073,0.3846991136681698,0.3918200408997955,0.3914620535714285,0.4021437078205637,0.0,2.699752519688455,58.09201236166764,211.671372739634,297.6486593111982,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95687,42985,405.3006155486116,6917,71.08593643859668,5399,55.84875688442526,2205,22.688557484297764,77.34192318165195,79.71805358359882,63.32298576779221,65.07545140162587,77.07023740401694,79.4458047447513,63.22392286627462,64.97909942444728,0.2716857776350139,272.24883884751705,0.0990629015175912,96.35197717858546,103.78456,73.06695779903139,108462.54977165132,76360.38103298399,292.72484,185.12841815457747,305344.017473638,192897.7898299429,305.56413,146.94052584902673,315740.1527898252,150831.75069493824,3109.89528,1405.2538788938043,3216955.364887602,1435478.8831228951,1327.34453,574.2379578072942,1370231.3689424896,583179.2383576599,2180.6479,899.5209652676999,2244679.2772267917,910035.0032333084,0.38285,100000,0,471748,4930.115898711424,0,0.0,0,0.0,24915,259.78450573223114,0,0.0,28347,292.6938873619196,1919805,0,68889,0,0,0,0,0,51,0.5225370217479909,0,0.0,0,0.0,0,0.0,0.06917,0.180671281180619,0.3187798178401041,0.02205,0.3231086657496561,0.6768913342503439,25.22000366117029,4.474721013808794,0.3152435636228931,0.2172624560103722,0.2261529912946842,0.2413409890720503,11.208630209287405,5.7002697150017765,23.329146855075507,12834.038026016187,60.94033341838941,13.840782686766666,19.25036962369069,13.441507496905857,14.407673611026198,0.5460270420448231,0.763000852514919,0.6891891891891891,0.597051597051597,0.1158864159631619,0.7194139194139194,0.922279792746114,0.852017937219731,0.7545126353790613,0.14453125,0.4873574615765989,0.6848792884371029,0.6313694267515924,0.5508474576271186,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022883063495438,0.0044191727227577,0.0065431084330016,0.0085014321408982,0.0109119013962759,0.0130826087841827,0.0151499704341088,0.017440495032318,0.0196736062824655,0.021604464240004,0.023767533426298,0.0259909632368042,0.0281103431251542,0.0302106087458269,0.0320619354838709,0.0343529606419722,0.0366806165575536,0.038945805956051,0.0410474536435204,0.0430383176498785,0.0580382325289877,0.0720433935789231,0.0854719694345603,0.0985994044048784,0.1107370864770748,0.1255886804034246,0.1395822936685743,0.1514412322375849,0.1638161411010155,0.1746849573860587,0.1884070472041921,0.2013624893047838,0.2135540824434793,0.2241530245994922,0.2350001651055024,0.2456985852139905,0.2556763635551785,0.2658967345422618,0.2749126469120116,0.2840076056079905,0.2911777638917818,0.2983186886473458,0.3057771990055641,0.3126191703941767,0.3183022583076063,0.3233223607155626,0.3294710075033508,0.3350859994652883,0.3405273602158208,0.345807611468757,0.3470536618292271,0.347425683791956,0.3475354700130009,0.3480966854827037,0.3479715164939718,0.347211155378486,0.346995055154051,0.3482840918442926,0.3488009325128134,0.3495196006512676,0.3514392003607395,0.3526725438805496,0.3536487907465825,0.3540407558021973,0.3546861046076609,0.355173405117215,0.3558746289107102,0.3589606299212598,0.3593491935200478,0.3631668851547293,0.3642028655901751,0.364274322169059,0.3649042728540636,0.367126209155305,0.3693464974141984,0.3703266894680976,0.3660944857967492,0.3679871305047255,0.3758241758241758,0.3761329305135951,0.0,2.19577566513972,60.27753063544196,201.52232000976096,307.812961968743,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95734,42766,402.0410721373807,6814,69.89157457120773,5355,55.29905780600414,2195,22.60429941295673,77.32392886815877,79.68953007417757,63.31606620966248,65.06549650716275,77.05161419496243,79.41507865871097,63.21697280436668,64.96830202989266,0.2723146731963481,274.4514154666007,0.0990934052958039,97.19447727009369,104.08398,73.26851275410776,108722.06321682996,76533.42882790623,293.27975,185.8474292192568,305713.7902939394,193494.1809798575,306.43237,147.23775161552317,315854.6911233209,150612.72241578184,3083.83944,1394.2756519488453,3186106.1691770945,1421253.7781235997,1258.18363,547.9437868413794,1299919.5583596216,558033.2473103068,2155.5839,894.5771868837903,2221208.828629327,907210.6992692387,0.38101,100000,0,473109,4941.911964401363,0,0.0,0,0.0,24909,259.5107276411724,0,0.0,28380,292.18459481479937,1917762,0,68928,0,0,0,0,0,61,0.637182192324566,0,0.0,0,0.0,0,0.0,0.06814,0.1788404503818797,0.3221309069562665,0.02195,0.3322643614054657,0.6677356385945343,25.256935313408075,4.556076077391039,0.338562091503268,0.2087768440709617,0.2240896358543417,0.2285714285714285,11.037526250960608,5.477092597665657,23.38739007497057,12770.29418131193,60.29101764752073,13.11326070368018,20.30921822843523,13.348144157144551,13.520394558260763,0.5398692810457516,0.7710196779964222,0.6811913954771097,0.5625,0.0972222222222222,0.7080838323353293,0.9187675070028012,0.841743119266055,0.7745454545454545,0.1417910447761194,0.4839512316496641,0.7017082785808147,0.6303558460421206,0.4994594594594594,0.0847280334728033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410748832639,0.004846444757627,0.007124444354233,0.0097136702635696,0.0120234365463644,0.0142260692464358,0.0165059233733662,0.0185368542468382,0.0207240642476663,0.0228217466980649,0.0249853901596317,0.0273311566972627,0.0294132765834952,0.031457294713856,0.0335063514503596,0.0352273549507457,0.0371851176665561,0.0393677087225474,0.0415119846097852,0.0437056562099538,0.059019439978284,0.0733087819882404,0.0860100040897222,0.0987623163717046,0.1105674424490398,0.1262918495795208,0.138870615198523,0.1515225724020442,0.1634250803721149,0.1745031195729079,0.1881075146126438,0.2014381487889273,0.2137157269900632,0.2243300276626685,0.2345171188808112,0.2453461201980044,0.2552279777713304,0.2644974009316141,0.2731008491122917,0.2815706506162224,0.2894486802159857,0.2964407891653779,0.3037344398340248,0.3099184962008907,0.3155633451394213,0.3213029364207512,0.3268241904331903,0.3322918393633708,0.3384603403294264,0.3442371311366944,0.3446171295858707,0.3445592638070667,0.3442759634272148,0.3442221255618384,0.3440736821711203,0.3433582421629252,0.3422650663537918,0.3428176931801371,0.3438361087815982,0.3439969958156003,0.344922695887121,0.3461142155114334,0.3455465502036702,0.3455654748553228,0.3469254725863692,0.3471295060080107,0.3464443045940843,0.348546272249319,0.3522404991491775,0.3545520057650733,0.3574675175611772,0.3599957226113457,0.362638756739613,0.3651414118188089,0.3650990099009901,0.3672709809100732,0.3657826153610302,0.3645103144402163,0.3630008066684592,0.3546533895059364,0.0,2.439834714053536,58.67282700651068,197.8505651355671,309.6977363643745,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95807,42540,400.55528301689856,6870,70.68377049693655,5444,56.38418904672936,2195,22.566200799524044,77.4066300966336,79.74504357913997,63.35719594835807,65.0873315107855,77.13579602935211,79.47460194561135,63.25728777331098,64.99049324660194,0.2708340672814984,270.4416335286197,0.0999081750470907,96.83826418356034,104.40606,73.5322529814179,108975.39845731524,76750.39713321354,294.60136,186.22850056778225,307055.87274416274,193940.0676023487,304.82948,146.2581144065998,316085.5887356874,151023.90702860375,3104.9584,1398.635179622569,3215616.228459298,1434945.488673573,1327.13883,571.7258968332249,1374444.6439195464,586087.7734038486,2149.32304,900.8226587755298,2211228.803740854,910563.1910809708,0.37856,100000,0,474573,4953.427202605238,0,0.0,0,0.0,25056,261.0560814971766,0,0.0,28156,291.78452513908167,1920346,0,68900,0,0,0,0,0,61,0.6366966923084952,0,0.0,0,0.0,0,0.0,0.0687,0.1814771766694843,0.3195050946142649,0.02195,0.3173329644487481,0.6826670355512519,25.12653048730217,4.567707363939241,0.3304555473916238,0.2112417340191036,0.230712711241734,0.2275900073475385,11.212097479888154,5.677336967329258,23.310317179149035,12671.24706141222,61.030695568101805,13.413925193218862,20.194338153712597,13.958017400069204,13.464414821101148,0.5505143277002205,0.7747826086956522,0.6803779877709839,0.5859872611464968,0.1178369652945924,0.6968325791855203,0.9380530973451328,0.8461538461538461,0.7093425605536332,0.10546875,0.503399708596406,0.7065351418002466,0.6263817243920413,0.5491209927611168,0.121057985757884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002269641518228,0.004735251769382,0.0070021615368222,0.0091035631915304,0.0113098931052369,0.0134518645241441,0.0157929079749597,0.0181799622314091,0.0203401610858988,0.0225039911580498,0.024647959497407,0.0267915777376457,0.0287881435193274,0.0309968189913423,0.0329965982888362,0.0352116311968856,0.0371600302080423,0.0389683090926054,0.0409441783632717,0.0426869898384141,0.0568685761986748,0.0699637109003252,0.0833499292489911,0.0960032789297237,0.1086878648039277,0.1242048312445844,0.1369485488965678,0.1489483869595729,0.16081013306585,0.1721674111686002,0.1857817661426558,0.198276328168085,0.2102895148669796,0.2207854615351011,0.2308807857527383,0.2426197220501018,0.2523141435995806,0.2622425577839734,0.2716714491487938,0.2802665170751812,0.2880789339749225,0.2952667079714295,0.3019939648541506,0.3081751964730688,0.315105938380795,0.3216971131326578,0.3271882475233885,0.3323404742811318,0.3370531663944837,0.342316991003131,0.3422525523621994,0.3414103288195831,0.3416460963396572,0.341937350792158,0.3422034578619531,0.3413072776280323,0.339595192915876,0.3397849814808745,0.3411582459485224,0.3421974777210551,0.3436692990007111,0.3445658174934932,0.346398260796856,0.3462483251451541,0.3461307594420034,0.3471012042552084,0.3497952917093142,0.3527696793002915,0.3549970203666702,0.3572532392915164,0.3593927548747784,0.3626786659608258,0.3654847819265767,0.3664047151277014,0.3707144848090681,0.3712448860315605,0.3715988994191379,0.375875175035007,0.3749309773605743,0.3815028901734104,0.0,1.7320895227070616,58.85936961786823,204.98525207115557,312.7729352821624,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95694,42614,401.69707609672497,6847,70.42238802850753,5380,55.68792191777959,2207,22.72869772399524,77.29491858535671,79.70038842295463,63.29396199958445,65.0756375507567,77.02520727054234,79.42867737189577,63.1952819799628,64.97858098727242,0.2697113148143728,271.7110510588583,0.0986800196216535,97.05656348427284,104.4626,73.49815217256356,109163.16592471836,76805.39236792648,294.00872,186.3832958187829,306645.5890651451,194180.31910023725,307.68045,147.62814075361726,318945.59742512595,152159.5387642919,3087.83364,1394.8496246124648,3196428.6580140865,1427350.983098233,1323.51883,574.2704469914935,1369490.9816707422,586584.4695070109,2173.90364,901.552046057415,2240258.5533053274,914707.504472818,0.37996,100000,0,474830,4961.962087487199,0,0.0,0,0.0,24950,260.1626016260162,0,0.0,28490,295.17002110895146,1917144,0,68832,0,0,0,0,0,55,0.5538487261479298,0,0.0,0,0.0,0,0.0,0.06847,0.1802031792820297,0.3223309478603768,0.02207,0.3282379099499722,0.6717620900500277,24.89297000715087,4.498582453855504,0.3187732342007435,0.2171003717472119,0.2302973977695167,0.2338289962825278,11.173916266813968,5.688888587054668,23.466906082210564,12708.851660858449,60.83271219246704,13.704410429022596,19.406942206593666,13.938938025570144,13.782421531280628,0.5566914498141264,0.7773972602739726,0.7043731778425656,0.58272800645682,0.1248012718600953,0.7119645494830132,0.935483870967742,0.8440366972477065,0.7331081081081081,0.124,0.5044709388971684,0.7035175879396985,0.656763096168882,0.5355249204665959,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023112715034415,0.0047997402254761,0.0070278779261666,0.0092318641655228,0.0115944094383989,0.0137290675037966,0.0160210620841667,0.0180319159804662,0.0202561689241723,0.0224241430883648,0.0242396266092219,0.0261349277282953,0.0285661363683138,0.0306403240268373,0.0327115827286146,0.0345512270287599,0.03668355768334,0.0386432301670525,0.0407065652730242,0.0427862667027996,0.0569070872721575,0.0708355580681972,0.0839411079512661,0.0964731381915363,0.1087385400951607,0.1247050607865751,0.1382655769026642,0.1506404454902629,0.1622285860830911,0.1731456346098134,0.1867001335803852,0.1994374120956399,0.2116655794737986,0.22286345104983,0.2336988199584291,0.2446848562696549,0.2534560669456067,0.2628072386783109,0.2716133501402469,0.2800403595670519,0.2881412854661262,0.2955705389333708,0.3032028891125451,0.309387559234599,0.3159161641703948,0.3219956048297488,0.3263760921615082,0.3306331435558443,0.3362640493085409,0.3414972090629577,0.3414394398438026,0.3417580452100216,0.3422688258424591,0.3424386152644821,0.3427547119289529,0.3419359791202886,0.3412824505099933,0.3420276482509762,0.3436466171857591,0.3449178681586686,0.3463480817064898,0.3478036072941317,0.3494006362314871,0.3500326187208962,0.3505582524271844,0.3520286082406458,0.3543051120508615,0.3556691213814119,0.3589154411764705,0.3588830659679161,0.3625184229918939,0.3634222079451761,0.365178854067743,0.3643535539215686,0.3684559310801855,0.3690561529271207,0.3608342278791596,0.3658437053662517,0.3716401535929786,0.3756171667299658,0.0,2.031507378326737,59.95331732050001,204.23375661759115,304.68513281836096,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95714,42940,404.84150698957313,6933,71.09722715590196,5406,55.833002486574586,2157,22.159767641097435,77.3593554540744,79.72962111013899,63.33143217950936,65.08343122922916,77.09659109171373,79.46733126682123,63.2357478774257,64.99042054634559,0.2627643623606701,262.2898433177596,0.0956843020836615,93.01068288357328,104.46062,73.46424613938346,109138.28697996114,76753.91911254724,293.99118,186.2573717615942,306514.05228075304,193956.00618675863,311.22322,150.05399148016755,320355.8309129281,153169.0902266952,3118.89016,1415.918843866346,3223932.214723029,1444871.8895776789,1314.93682,580.2479754003433,1357652.4332908457,590131.139694949,2132.239,883.6902588515984,2193452.2431410244,895077.58461531,0.38249,100000,0,474821,4960.83122636187,0,0.0,0,0.0,25029,260.8395845957749,0,0.0,28772,295.8396890736987,1917433,0,68802,0,0,0,0,0,59,0.6164197505067179,0,0.0,0,0.0,0,0.0,0.06933,0.1812596407749222,0.3111207269580268,0.02157,0.3167123287671233,0.6832876712328767,24.98595237772533,4.437961543592101,0.3209396966333703,0.2082870884202737,0.2360340362560118,0.234739178690344,11.045587864251027,5.596049993546319,23.01690463040345,12860.412494940318,61.051206866492485,13.155521612627076,19.5493540238739,14.286687482675784,14.059643747315729,0.5449500554938956,0.7646536412078153,0.700864553314121,0.579153605015674,0.1024428684003152,0.7216876387860843,0.9237057220708448,0.8790697674418605,0.7245901639344262,0.1485943775100401,0.4860665844636251,0.6877470355731226,0.6421455938697318,0.533470648815654,0.0911764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194101203257,0.0046225430068831,0.0068292286929079,0.0089476143080579,0.0110226452314857,0.013244830850988,0.0153014934502268,0.0174244125512933,0.0195152370145469,0.0215606380147013,0.023955534589905,0.0263357916144538,0.0287051803076289,0.0308884286877054,0.0330626270548051,0.0353225756432388,0.0373437969126919,0.0389996992044476,0.0408770051252196,0.0429986562919908,0.0577547589461923,0.0722254782936325,0.0853858095917425,0.0986109504631917,0.1109623130944598,0.1263474130726836,0.1392720713073005,0.1525800853818228,0.1645456002564513,0.1757245404895007,0.1892931404130619,0.2018615725959197,0.2145257959601013,0.2255350343559893,0.2360851082575273,0.2465238507085357,0.2563037409268565,0.2654353621362608,0.2751492046202373,0.2837619565839968,0.2918763812234602,0.2995615317158726,0.3061181060471715,0.312379561694335,0.3193102946172887,0.3258516886027012,0.3308183183183183,0.3361816840873833,0.341580248831579,0.3460173839640186,0.3472231562806838,0.3471964352023765,0.3476377952755906,0.3479664485631107,0.3474010561917759,0.3472937651896122,0.3462322113941845,0.3465572051256841,0.3471167465911224,0.3488716439211489,0.3495910557514819,0.3505136274568018,0.3526219473717423,0.3532983963473606,0.3544701306857984,0.3553967755443886,0.3573492803799822,0.3597659338921398,0.3604544492272952,0.3628621458134352,0.3651469376544905,0.3661362665527552,0.3671337579617834,0.3669514800122063,0.3687382297551789,0.3705150976909414,0.3731640146878825,0.3819024586860137,0.3808871851040525,0.388382687927107,0.0,2.514456679287437,59.22333192879218,208.0463968600771,303.3811245515004,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95881,42787,402.6136565117176,6771,69.37766606522669,5314,54.7762330388711,2100,21.453676953723885,77.4394230829848,79.72070243153621,63.39129033748679,65.07754590419873,77.18389668452232,79.46844728129479,63.29726663554105,64.9882238815491,0.2555263984624787,252.25515024142453,0.094023701945737,89.32202264962541,103.82702,73.06615536545017,108287.37706114873,76205.04100442232,292.7839,185.9888277781505,304717.56656689016,193334.63123888,305.96509,146.75478139742492,315649.6281849376,150281.44676106994,3037.3014,1370.1076284220758,3130401.143083614,1391585.5575370253,1272.5439,552.4296097590986,1308840.1455971464,557796.1791995224,2055.4271,851.6508679260586,2101870.193260396,851328.4280374215,0.38144,100000,0,471941,4922.153502779487,0,0.0,0,0.0,24866,258.6643860618892,0,0.0,28406,292.790020963486,1925019,0,69110,0,0,0,0,0,67,0.6883532712424777,0,0.0,0,0.0,0,0.0,0.06771,0.1775115352348993,0.310146211785556,0.021,0.3218926553672316,0.6781073446327683,24.993709540321312,4.584871817363817,0.3340233345878811,0.2090703801279638,0.2346631539330071,0.2222431313511479,11.288628045407384,5.934964181310885,22.092779755984065,12751.991413512487,59.62377284250312,12.899014760968942,19.99903377544942,13.856543912408243,12.869180393676515,0.5639819345126083,0.7686768676867687,0.7059154929577465,0.595028067361668,0.1253175275190516,0.7253184713375797,0.9146341463414634,0.8801955990220048,0.7482993197278912,0.1377777777777777,0.5140463282405126,0.7075351213282248,0.6537335285505125,0.5477439664218258,0.1223849372384937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021056894108119,0.0044894401880903,0.0068371559865691,0.0091482297515458,0.0113531259211074,0.0135731873588246,0.0159103641456582,0.0181660546715626,0.0204732131911241,0.0226477628429386,0.0247648517387651,0.0267183796595561,0.0287528773429792,0.0308002717671038,0.032692406825094,0.034592428904814,0.0366967731255884,0.0387425006994166,0.0408118770764119,0.0427473133381188,0.0571556639668094,0.0712113771015976,0.0850725168857008,0.0976680211253556,0.1103683506858544,0.1264002533917542,0.1396735619035514,0.1512485389437891,0.163234196780727,0.1744718649001519,0.1883042192958882,0.2004300099399282,0.2125119492482836,0.2235407242291134,0.2337947945416359,0.2442833425567238,0.2546038257457529,0.2634121678557384,0.2726242677634635,0.2807519037709529,0.2888745133826978,0.2962582332881767,0.3033774278587556,0.309941450448401,0.3155230186480186,0.3218191222107285,0.327576720106045,0.3325118146247268,0.3370604963805584,0.3424406815368814,0.3434218487394957,0.3437242515792365,0.3434566305019956,0.3437486469713807,0.3436582109479306,0.3425403379980117,0.3418109924871491,0.3427143091296509,0.3442080297575375,0.3455780130467329,0.3471270821635785,0.3493680884676145,0.3499026361523482,0.3515828927113312,0.3520839824557198,0.3532659652047088,0.3545044149796996,0.3564071256378949,0.3582167649213381,0.3602999210734017,0.3620923913043478,0.3634049323786794,0.3637963544940289,0.3655840195181458,0.3685406019307212,0.371271772846576,0.3713178294573643,0.3749743168276145,0.3766666666666666,0.3684609552691433,0.0,2.482701563808057,54.65102732537423,211.8364259408035,298.18569028953067,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95738,42929,405.9203242181788,6721,69.00081472351626,5276,54.523804549917486,2193,22.49890325680503,77.34647984393533,79.6972498401573,63.33814763576003,65.07472995959974,77.07492199979062,79.42771001782314,63.23771326407807,64.97787911334692,0.2715578441447093,269.53982233415275,0.1004343716819633,96.8508462528206,104.38846,73.46646720551898,109035.5553698636,76736.99806296245,294.35411,186.77480532946265,306889.03047901567,194520.58255808835,302.65908,145.250137393075,312873.5507322066,149222.01042398633,3052.17268,1380.4469819406488,3154727.986797301,1408581.5266045348,1305.52632,572.3445386512125,1346922.2774655833,581101.2018751306,2158.4513,904.717765571088,2216034.3437297624,911837.9382285024,0.38215,100000,0,474493,4956.161607721072,0,0.0,0,0.0,25109,261.67248114646225,0,0.0,27979,288.9134930748501,1916687,0,68806,0,0,0,0,0,59,0.6162652238400635,0,0.0,1,0.0104451732854248,0,0.0,0.06721,0.1758733481617166,0.3262907305460497,0.02193,0.3259123573340848,0.6740876426659151,24.85755251949706,4.538032146345331,0.3233510235026535,0.2173995451099317,0.2215693707354056,0.237680060652009,11.125455081309694,5.572859123465811,23.431279198199128,12703.017000166446,59.36057115214666,13.35864164437166,19.17613495870473,12.868238099551776,13.957556449518506,0.5432145564821834,0.7707061900610288,0.6805392731535757,0.5671514114627887,0.1259968102073365,0.693302891933029,0.8994252873563219,0.8812351543942993,0.6856060606060606,0.1637010676156583,0.4934376577486118,0.7146433041301627,0.6147859922178989,0.532596685082873,0.1151079136690647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0044906689373435,0.0064135740453212,0.008705633774202,0.0110134846543413,0.0130823424010425,0.0153312945973496,0.0176262260280264,0.0196256810213531,0.0215412652421856,0.0236062280261175,0.0256810297045963,0.0276458371887401,0.0295914058235227,0.0314998813466637,0.0335200727663621,0.0354506393332298,0.0375984313237262,0.0396157964220002,0.0416957450132805,0.0563049424735336,0.0702922213849116,0.0835230551329801,0.0962060190540284,0.1084950918887002,0.1241991076526188,0.1365029861354209,0.1486195959896975,0.1604372844804577,0.1714754238923067,0.1852103047723627,0.1986590245485022,0.2106023886890466,0.2215034258176612,0.2314101366279389,0.2421484950128967,0.2519488340452107,0.2618554845676235,0.2712449079169834,0.2796531540303089,0.2870515001099193,0.2951730429595667,0.3030525493167878,0.3097765463639307,0.3164904605662899,0.3222030556924593,0.3284968514878754,0.3337579131055038,0.3389553439373102,0.3437632191201353,0.3443638031513058,0.3448889011413133,0.3453414045633493,0.3456464762015088,0.3460204005658551,0.3460026413587641,0.3453152996020106,0.3459597205096588,0.3462737173779026,0.3467580333500322,0.3491896561437773,0.3500188182160331,0.3510488333438532,0.3520415038404528,0.3527465094932122,0.3536194578693002,0.3545237890142705,0.3557671020588886,0.3587788953590965,0.3604558495377749,0.3621361448544579,0.3647253863842986,0.3676637637258614,0.3695552147239264,0.3703422774248601,0.3790998324156093,0.3801475107559926,0.3802125919869174,0.3769382576825486,0.3793375394321766,0.0,2.308896981771844,57.72698367055402,195.81747501624136,304.1068050794295,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95742,42791,403.1250652796056,6861,70.428860896994,5399,55.81667397798249,2147,22.080173800421967,77.41222784566315,79.76816521955521,63.350809200748486,65.08989454202973,77.14747248114378,79.50367080345977,63.25375978066701,64.99509113429599,0.2647553645193738,264.4944160954452,0.0970494200814826,94.8034077337354,104.00478,73.10798533934882,108630.25631384346,76359.36719449022,295.89081,187.9950965113099,308495.9683315577,195801.73436037468,305.36575,147.63562844978935,315378.92460988904,151399.83971565077,3101.87176,1406.3763968740025,3209546.155292348,1438645.8574857456,1326.08058,577.7201867689098,1371129.4311796287,589486.6900304038,2108.01896,878.2572604718856,2169758.099893464,891087.7056507982,0.38179,100000,0,472749,4937.73892335652,0,0.0,0,0.0,25309,263.76094086189966,0,0.0,28309,292.07662258987693,1918609,0,68755,0,0,0,0,0,57,0.595350003133421,0,0.0,0,0.0,0,0.0,0.06861,0.179706121166086,0.3129281445853374,0.02147,0.3151750972762646,0.6848249027237354,25.24046271655853,4.433589898264091,0.3315428783107983,0.2161511390998333,0.2222633821077977,0.2300426004815706,11.234223544478471,5.837482386217249,22.75627940611923,12835.797048748687,60.7706121904352,13.684565524176396,20.207849130356657,13.367326451428331,13.510871084473823,0.5478792368957214,0.7506426735218509,0.6921787709497207,0.575,0.1231884057971014,0.7085137085137085,0.8807588075880759,0.8464730290456431,0.7535714285714286,0.1490196078431372,0.4923997009718415,0.6904761904761905,0.6353211009174312,0.5206521739130435,0.116514690982776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0046419703035524,0.0068883658645457,0.0092208952798765,0.0116308624528512,0.0139868682241563,0.0160935238599995,0.0182239319204514,0.0203063841963802,0.0223848515864892,0.0246269574485529,0.0267512523610084,0.0287852619458837,0.0309252870603985,0.0329260994283591,0.0349682154116491,0.0371010831072545,0.0391351261620185,0.0410142848231551,0.0429497062377599,0.057942266534426,0.0726901747410275,0.0865501615407208,0.0998558911083762,0.111978644607869,0.127833393299329,0.1415305591815509,0.1539002108222066,0.1657636862971393,0.1761177051361851,0.1908124541808616,0.2031662840559622,0.2150220432155881,0.2259176948425166,0.2355798889574336,0.2464869181371516,0.2563391929193254,0.2658617077593683,0.274429643761569,0.2821024388565925,0.2896757827431629,0.2973169132796404,0.3054749926013613,0.311867900110243,0.3178505490234185,0.3234855671500203,0.3285399889961486,0.3338161121063129,0.3388551492440884,0.3445049739459971,0.3446933598206735,0.345116598079561,0.3455515764342391,0.3457992393684453,0.3455072378051485,0.3441973200810988,0.3442395587076438,0.3436979183686807,0.3446340177250072,0.3451849744893424,0.3462069222736088,0.3475771705128961,0.3492358831768862,0.3499442834856251,0.3519602668074283,0.3530314059900166,0.3545389970166216,0.356713050018804,0.3599383882937758,0.360802749575317,0.363417951042611,0.3664777242146527,0.3672110552763819,0.3704153694282026,0.3735873727468011,0.3765206094248258,0.3778990450204638,0.3831025486654625,0.38126540673788,0.3882938026013772,0.0,2.243957961929484,61.02919593466046,198.64556698382955,305.8557093540388,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95740,42834,402.7261332776269,6841,70.32588259870482,5379,55.70294547733445,2196,22.634217672864008,77.32373385663094,79.6951364159907,63.321321634088775,65.07583689632193,77.0596248902363,79.42780971724513,63.22496384548327,64.98009128613577,0.2641089663946445,267.3266987455776,0.0963577886055091,95.74561018615668,104.85662,73.68436234821701,109522.26864424485,76962.98553187487,292.69723,185.6558512454068,305237.7480676833,193433.50871673992,300.11114,144.64947809598533,310488.7298934615,148804.86065085413,3124.03372,1406.152495623635,3236833.423856277,1442514.2005678236,1296.66221,560.5790815491262,1343374.0651765198,574538.5435023252,2168.60804,901.382575013986,2236831.6482139127,918492.6481646458,0.38167,100000,0,476621,4978.284938374765,0,0.0,0,0.0,24936,259.9540421976185,0,0.0,27802,287.4138291205348,1917644,0,68830,0,0,0,0,0,50,0.5222477543346564,0,0.0,0,0.0,0,0.0,0.06841,0.179238609269788,0.321005700920918,0.02196,0.3138888888888889,0.6861111111111111,25.34459889884247,4.550665589169346,0.323294292619446,0.202268079568693,0.2348020078081427,0.2396356200037181,11.024859067365105,5.45878313224701,23.426024246566417,12776.848147519362,60.43499749875549,12.73578539462948,19.58923364956945,13.96207532642241,14.147903128134155,0.5350436884179215,0.7683823529411765,0.679700977573318,0.5795724465558195,0.0993017843289371,0.7007633587786259,0.9287749287749288,0.8333333333333334,0.7389705882352942,0.1215686274509803,0.4816908331285328,0.6919945725915875,0.6289211935730681,0.5358224016145308,0.0938104448742746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002208713272543,0.0042897563053332,0.0067295980511571,0.0089628681177976,0.0113543871072765,0.0135888111318236,0.0157875413046138,0.0181283384228856,0.0203388790608734,0.0226637308617952,0.0248894996461937,0.026948752182397,0.029216604084152,0.0313575565219183,0.0334534119177134,0.0354285123539749,0.0374509336840906,0.0396430979924262,0.042171367970139,0.0440318412936567,0.0590421699955105,0.0729363991250562,0.085660337774048,0.0986736228713277,0.1102921793776821,0.1262739459550894,0.1389778730084646,0.1521193293046216,0.1629238079982914,0.1737606141178488,0.1865041770734648,0.1990892472769359,0.2110642369416779,0.2224736790317819,0.2329211678510923,0.2435110953625371,0.2542425796668376,0.2640205814946299,0.2733415720910194,0.2815006349896456,0.289105386633383,0.2966252220248668,0.3041000662063747,0.3110528144128604,0.3171469163236312,0.3231252695791484,0.3287839326855654,0.3336220622890262,0.3387669882767922,0.3432461341397388,0.3445696417500067,0.344944517196223,0.3457755323802938,0.3453067493552033,0.3445399430980292,0.3443460647260116,0.3434282636930972,0.3436001051317432,0.3449936801831039,0.3458905945636828,0.3469058127523711,0.3484532809492628,0.3488092729188619,0.3493699369936994,0.3503013579260765,0.3519355008141184,0.3520211603703065,0.3544022360564096,0.3559087522616809,0.3590434083601286,0.3623188405797101,0.3648706896551724,0.3651219200817056,0.3679208838754539,0.3706749858196256,0.3702550592743384,0.3696349473041087,0.3727199027158492,0.3707772589947816,0.3798688777477825,0.0,1.8937341705299875,57.90743693840684,202.0090668862198,311.9249117635932,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95779,42625,402.1131980914397,6716,68.98171833074056,5246,54.18724355025632,2106,21.59137180384009,77.38153749659537,79.7223284475096,63.350937847410606,65.08255457382238,77.1198285642176,79.46348929572822,63.25432568531218,64.99013809336824,0.2617089323777719,258.8391517813733,0.0966121620984239,92.41648045413342,104.28154,73.38605667323236,108877.24866620032,76620.1951087737,291.4116,185.08627999452236,303636.1519748588,192625.05350287884,301.86889,145.1937456838565,311782.57238016685,148980.83988083398,3015.30944,1361.5955759059295,3114418.776558536,1387825.4063061122,1276.92315,557.9493997213458,1316303.1249021185,565644.055295363,2074.3456,867.964716621388,2127038.536631203,871599.6551424472,0.37913,100000,0,474007,4948.965848463651,0,0.0,0,0.0,24871,259.04425813591706,0,0.0,27853,287.47428977124423,1921879,0,68914,0,0,0,0,0,44,0.4489501874106015,0,0.0,0,0.0,0,0.0,0.06716,0.1771424049798222,0.313579511614056,0.02106,0.3251490207209764,0.6748509792790236,25.328821158337984,4.493472074568488,0.3187190240182996,0.2123522683949676,0.2361799466260007,0.232748760960732,10.919062575862617,5.453509345321089,22.475894923143063,12707.502927319463,58.95843237820869,13.048286176781971,18.769701367583465,13.703550659169377,13.436894174673872,0.5480365993137629,0.7666068222621185,0.6931818181818182,0.5803066989507667,0.1171171171171171,0.7063310450038138,0.9237057220708448,0.8725961538461539,0.6865671641791045,0.1538461538461538,0.4952986022871664,0.6894243641231593,0.6337579617834395,0.5509783728115345,0.1071800208116545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0045613963954832,0.006726593888235,0.0088865868397265,0.0110722492221973,0.0133147388458523,0.0152790801973335,0.0174833382663632,0.0196611416542336,0.0219984856856365,0.023804644108786,0.0260105520313686,0.0280693817538736,0.0302197236465476,0.0321402784940691,0.0342721937510332,0.036228734633056,0.0383542899791642,0.040058591923872,0.0420961662605943,0.0567319633893069,0.070694920927119,0.0843564231870079,0.0972267468132283,0.1096649769730948,0.125315746641724,0.1381470176777311,0.1509983626427371,0.1623000330832524,0.1731622612386648,0.1859251046790738,0.1984815383617053,0.2103598561010335,0.2214693957839291,0.2320976790232097,0.242654385226845,0.2532841180275219,0.262871531993345,0.272593247825446,0.2811520241664187,0.2892411942921899,0.2966041264831375,0.3034831168216559,0.310455128128332,0.316759552690052,0.3222695699295532,0.3280537046991612,0.3331806848827151,0.3377953265583533,0.3423714508024846,0.3428756005975693,0.3423890615972929,0.341829254539303,0.3414369594770485,0.3425898381722989,0.3419903470466559,0.3417084632058604,0.3422708797692408,0.3429457681426185,0.3436486149238832,0.345073587237389,0.3451166468960063,0.3470765875346028,0.3476963797048136,0.3494089037632726,0.3517860873198245,0.3537061860080426,0.3564670752789565,0.359268215750184,0.3624166402032391,0.362554704595186,0.3661199275748216,0.3695583296369051,0.3728800552528585,0.3733649289099526,0.3760714285714285,0.3801348865726548,0.3843977364591754,0.3772222222222222,0.3857692307692307,0.0,2.279010805044308,57.652614517336815,194.30699125554383,300.9605418258447,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95863,42646,399.7684195153501,6830,70.14176481019788,5311,54.88040224069766,2182,22.44870283633936,77.37299817448195,79.6752026400126,63.35320242165369,65.05751076304786,77.11109038616061,79.4125415407565,63.25829648867803,64.96465634103721,0.2619077883213379,262.6610992561069,0.0949059329756636,92.85442201064598,103.9984,73.1990980973305,108485.7974400968,76357.43838351143,291.37704,184.7078263657565,303391.9760491535,192121.8716190888,302.08561,145.4500112153575,312277.9800340069,149498.6678450003,3065.2496,1378.265975721312,3167917.382097368,1408270.8011614138,1308.10011,568.4765367475185,1349849.8482208983,578320.009986325,2153.75484,884.7954880790243,2216729.728883928,896162.1154980847,0.37988,100000,0,472720,4931.172610913492,0,0.0,0,0.0,24804,258.17051417126527,0,0.0,27937,288.5367660098265,1922166,0,68988,0,0,0,0,0,55,0.5737354349436175,0,0.0,0,0.0,0,0.0,0.0683,0.1797936190375908,0.3194729136163982,0.02182,0.3164029975020816,0.6835970024979184,25.22616457139121,4.554548928683981,0.3236678591602335,0.2074938806251176,0.2270758802485407,0.241762379966108,11.083308165898046,5.514781147942996,23.03555806001061,12727.948959348132,59.678409902523406,12.91614104323525,19.346189778624336,13.400926296218076,14.015152784445744,0.5415176049708152,0.7586206896551724,0.7068062827225131,0.5638474295190713,0.1129283489096573,0.6990668740279938,0.9176470588235294,0.8436018957345972,0.7126865671641791,0.15625,0.4911801242236024,0.6876640419947506,0.6622976098689283,0.5213219616204691,0.1021400778210116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0049155239340407,0.0070194658308227,0.0093414292386735,0.0118028587113433,0.0140268729641693,0.0164504194143487,0.0186041290348916,0.0209463670825286,0.0230728303354001,0.0253777982685313,0.0273938871618086,0.0296593186372745,0.0319087615283267,0.0339367448764999,0.0361019031981577,0.038196132796739,0.0402146994518532,0.0419933334025607,0.0441952163464039,0.0590983025399341,0.0724540761948548,0.0852294154619736,0.0972602883575381,0.1099023768653179,0.1256654554672976,0.1385551105177273,0.1510003614483447,0.1627338605534744,0.1732976158585588,0.1862294587992208,0.199063965930954,0.2109009890229322,0.2213585227459083,0.2314260563380281,0.2422245359089096,0.2530457872188504,0.2634391665354065,0.2725045372050816,0.2806828720931564,0.2885029026065638,0.2958998654734748,0.3026501118515274,0.3092102898359713,0.3151280401180227,0.3211989060536625,0.3259674733639653,0.3312295613889984,0.3368951403999585,0.3419513290111312,0.3419531323693892,0.3421592803317307,0.3424833465055888,0.3424260851938725,0.3425536030473016,0.3419233186675047,0.3415237310167718,0.3423041535226078,0.3432131685554587,0.3435817638747295,0.344642087308579,0.3457796060438256,0.3460344755274084,0.3469465392619777,0.3481385343812339,0.3491343345848978,0.3497998856489422,0.3521451104100946,0.3556557579173565,0.358272409408773,0.3595541401273885,0.3637912673056443,0.3654905935263191,0.3669971562524018,0.3677953205250143,0.3724720437782536,0.3744214748534403,0.3761865456046224,0.3796296296296296,0.3887171561051004,0.0,1.9315867941072813,56.75777630692661,201.25027286489163,307.1254619122145,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95788,42696,402.4199273395415,6849,70.38459932350608,5345,55.18436547375455,2131,21.860775880068484,77.39816222968327,79.72865068384624,63.35848721039546,65.08018501534508,77.14041609834895,79.47119486414832,63.2651438221442,64.98943302557949,0.257746131334315,257.455819697924,0.093343388251263,90.75198976559308,103.25876,72.63642535738161,107799.26504363804,75830.40188476806,291.15935,185.031158890157,303365.0352862571,192570.16420653628,305.93073,147.61025815500776,315439.74193009565,151046.90199561333,3095.46228,1392.023300678473,3199406.522737712,1421063.745645043,1350.36227,589.1392538740668,1393628.0744978494,598932.479928662,2115.60408,875.2057384431666,2173524.63774168,884275.0671977728,0.38072,100000,0,469358,4899.966592892638,0,0.0,0,0.0,24757,257.82979078799013,0,0.0,28284,291.341295360588,1925469,0,69067,0,0,0,0,0,55,0.574184657785944,0,0.0,0,0.0,0,0.0,0.06849,0.1798959865517966,0.3111403124543729,0.02131,0.327902802706061,0.672097197293939,25.02112526593116,4.521429916214609,0.3128157156220767,0.2127221702525725,0.2278765201122544,0.2465855940130963,10.965710327336684,5.398008532418274,22.631762624267257,12714.947201799498,60.13537447861557,13.325485915057376,18.80307653959898,13.49368900656967,14.513123017389546,0.539756782039289,0.7484608619173263,0.6895933014354066,0.5944170771756979,0.1191198786039453,0.7079510703363915,0.914364640883978,0.8560606060606061,0.7464788732394366,0.1654135338345864,0.4852613326727768,0.6709677419354839,0.6379310344827587,0.5481798715203426,0.1074144486692015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685382106904,0.0041045078644397,0.0062390942661201,0.0086826712161832,0.0111015096833223,0.0131088810633663,0.0151729760024456,0.0173652205852344,0.019544539686756,0.0216390423572744,0.0238914843045652,0.0259722934838378,0.0280663891886336,0.0303111394724112,0.0322284653848136,0.0343716433941997,0.0362393056288342,0.0383454826366926,0.0401666943797805,0.0424038571681471,0.0574725836576687,0.0713994373385485,0.084835141793783,0.0978939403493284,0.1100078004764615,0.1256804608635907,0.1384861757749944,0.1505788219271365,0.1615817519729184,0.1726899450025193,0.1855799980618277,0.1982873268675597,0.2107898509797106,0.2215984797186606,0.2319144728167714,0.2430943504762326,0.253503383538278,0.2626572671771174,0.2721559908801143,0.2807146129180027,0.28806798473812,0.2953745806496861,0.3029481732214503,0.3098944290661586,0.3163983781290213,0.3220082259931532,0.327147448322433,0.3324772415196053,0.3373000971188086,0.3425118414629319,0.3428213487081391,0.3437822515171114,0.3437165247787112,0.3441197289918091,0.3445482866043614,0.3438909875051615,0.3435206276891926,0.3444542859954729,0.3459105518703412,0.346775489793367,0.3475532074340527,0.349051748030249,0.350230607966457,0.3512040387794308,0.3539269275028768,0.3545151373039445,0.3555063452857508,0.357313170609274,0.3578693509489357,0.3591223561968769,0.3586590143026327,0.3592181722134178,0.3611058985425658,0.3619809523809524,0.3640730972117558,0.3676840215439856,0.3672030651340996,0.3736799350121852,0.3805578569455951,0.3808980213089802,0.0,2.429072138653122,57.28587385921765,205.77357073642665,302.54495133165614,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95885,42868,403.1704646190749,6971,71.6900453668457,5412,55.9420138707827,2202,22.67299369035824,77.3584022892406,79.64180335066175,63.35300198276878,65.04232423061852,77.09341400165533,79.3728382161877,63.25669076252322,64.9460697183008,0.2649882875852682,268.965134474044,0.0963112202455604,96.25451231771363,103.34632,72.75348586672591,107781.5299577619,75875.77396540222,292.41538,185.02309133633912,304472.70167388016,192471.5662891372,303.28005,145.9436511936076,312896.68874172185,149607.51822221794,3138.06476,1411.2275996892845,3246236.679355478,1445290.5873591106,1304.29208,574.2026993847061,1343035.9284559628,581653.3896988922,2173.5358,903.31305218596,2239377.003702352,920059.1935160974,0.38232,100000,0,469756,4899.1604526255405,0,0.0,0,0.0,24889,259.0603326902018,0,0.0,28041,288.9815925327215,1923386,0,69045,0,0,0,0,0,57,0.59446211607655,0,0.0,0,0.0,0,0.0,0.06971,0.1823341703285206,0.3158800745947497,0.02202,0.3239896584569329,0.676010341543067,25.260449423173416,4.552496952842042,0.3176274944567627,0.2115668883961567,0.229490022172949,0.2413155949741315,11.069751239814927,5.468939494725807,23.599712074047268,12824.40802036084,60.92014500327914,13.423713722189165,19.28930305430289,13.773076206960004,14.434052019827073,0.5465631929046563,0.759825327510917,0.699825479930192,0.5958132045088567,0.1110260336906585,0.7130111524163569,0.907651715039578,0.8625592417061612,0.7375886524822695,0.1641221374045801,0.4915170887632161,0.6866840731070496,0.6468774094063223,0.5541666666666667,0.0977011494252873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002480535390659,0.0047218084729103,0.0067957521477619,0.0090263887337672,0.0114962390729823,0.0137290222778575,0.0158930681771873,0.0180937324697842,0.0205221404286166,0.0228585448634723,0.0249060775742934,0.0271780361280269,0.0291676936981349,0.0313020758326989,0.0334710786384855,0.0353617741802263,0.0372703574975173,0.0391754500513011,0.041237862817384,0.0430910717629678,0.0581269285297306,0.072304638529043,0.0855925192933957,0.0984639291076509,0.1111778149915215,0.1261763680724991,0.1386581334237518,0.1508053798309499,0.1625737734660989,0.1737462083453916,0.1876440061155494,0.200657610106429,0.2122872236352964,0.2234743734082438,0.2334220131040851,0.244415184943405,0.2553526027030643,0.2649922424842039,0.2737945349984687,0.2822889219841906,0.289890293014859,0.2975078975078975,0.3042783028924739,0.3113918280189064,0.3173531808286816,0.324205590177084,0.3296560024069802,0.3345914034707435,0.34023737793476,0.3453597331780401,0.3463844035210887,0.3466977552737958,0.347125527798568,0.3470171421947225,0.3469004383218534,0.3456792020777943,0.345619776937498,0.3458401305057096,0.346486264018932,0.3474222930050283,0.3484310743056729,0.3496542294965026,0.3513314697660732,0.352698490997556,0.3542129138114082,0.3556315061702627,0.3568024201603927,0.3582512354033552,0.3620962356331939,0.3653647283430117,0.368226094114419,0.370181315467645,0.3720591955476853,0.3760518798733884,0.3758831392018331,0.3789397415771042,0.3843505477308294,0.3867788955040033,0.3968298109010011,0.3958171959721146,0.0,1.949147724087941,59.5981869241149,200.5829320123448,313.0613081532177,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95727,42827,403.9612648469084,6773,69.62507965359825,5205,53.73614549709068,2073,21.22703103617579,77.38965647392791,79.75506999831622,63.34469261111818,65.09320386411581,77.13113728595263,79.50101776628513,63.248036131727964,65.00147100012536,0.2585191879752813,254.0522320310856,0.0966564793902193,91.732863990444,103.18638,72.6034410540053,107792.34698674356,75844.26656429774,290.90995,185.82024905308143,303211.21522663406,193431.3148103688,305.11241,147.2341803812545,315227.9398706739,151050.48466489537,3002.4628,1364.4145920916196,3101532.0651435857,1390429.4673948258,1292.56336,562.3291931533521,1332558.8287525987,569816.6477175698,2037.20816,857.0926841573777,2088023.943088157,858967.4131441906,0.38156,100000,0,469029,4899.65213576107,0,0.0,0,0.0,24843,258.8089044888067,0,0.0,28197,290.983734996396,1923164,0,68978,0,0,0,0,0,46,0.4805331829055543,0,0.0,0,0.0,0,0.0,0.06773,0.1775081245413565,0.306068212018308,0.02073,0.3261573096946672,0.6738426903053327,25.19636652672812,4.535067196223357,0.3239193083573487,0.2090297790585975,0.2366954851104707,0.2303554274735831,11.257782189184232,5.711503927451448,22.02104195738085,12731.63194077619,58.51616863971594,12.721421937514346,19.05786306911366,13.664653674062922,13.072229959025028,0.5554274735830932,0.7922794117647058,0.6868327402135231,0.5909090909090909,0.1192660550458715,0.7123287671232876,0.9183673469387756,0.8564814814814815,0.7366548042704626,0.1705426356589147,0.5024415317399126,0.7342281879194631,0.6283891547049442,0.5478443743427971,0.1052072263549415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.004906582322111,0.0070733415196013,0.0093768413353109,0.0117183923830449,0.0138894546047004,0.0161295255961909,0.0182827860066761,0.0202898847003025,0.0226014146356443,0.0248365075134791,0.0268255874834457,0.0287329735286558,0.0308297464835142,0.0329231689581549,0.0347867425925734,0.036728692284593,0.038635915631776,0.0404934884059326,0.0426052889324191,0.0568502161247885,0.0713201662113647,0.0846929461016273,0.0974085413970518,0.1104816162894972,0.1261278414199431,0.1385098571822677,0.1507907788586389,0.1621026999316473,0.1727388753633136,0.1863760687442121,0.198552402384533,0.2106762649383978,0.2222015639525346,0.2328237974182046,0.2435258412529629,0.2533632286995516,0.2622248701634479,0.2715249815686497,0.2801323063188857,0.288092263557283,0.2951026708452219,0.3020777899977531,0.3087057020012695,0.3149670353686817,0.3204952873775642,0.3259792266299587,0.3317557251908397,0.3373411332280692,0.3422902898149247,0.3430266982452363,0.3434843608153833,0.3436716880191468,0.3449670634462036,0.3457407352461205,0.3452721405741026,0.3443262803596542,0.345130135865117,0.3459360171437318,0.3461545300969147,0.3470901837974872,0.3483685598457118,0.3502668223130159,0.3512021371326803,0.3512523346583018,0.354291209648074,0.3560578097049888,0.3578362077089812,0.3596626844694308,0.3620689655172414,0.3636779924901547,0.3656744435505497,0.367807351077313,0.3679216638834067,0.3660606060606061,0.3692090062477897,0.370911303818652,0.371859296482412,0.3747270742358078,0.3752388230798624,0.0,2.3647885722853106,57.56091649564205,194.6112445080875,294.2059006026732,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95762,42703,403.1348551617552,6788,69.53697708903323,5294,54.708548275934085,2228,22.90052421628621,77.34687979821054,79.70638381325948,63.33382307926016,65.08147732624872,77.0665547684752,79.42509369985538,63.229494549206784,64.97901875191552,0.2803250297353372,281.29011340409704,0.1043285300533725,102.45857433319829,103.81008,73.02641715428322,108404.25220860048,76258.24142591342,290.72329,184.7060134942805,303001.5663833253,192292.436973205,302.82554,146.40772657550167,312487.2809673984,150030.23471793375,3035.66652,1385.5079281043973,3138819.364674923,1415632.0963476077,1315.69661,582.3103532642193,1357379.534679727,591536.8656296013,2186.58038,918.9634851740086,2249168.480190472,931114.1946252838,0.37962,100000,0,471864,4927.46600948184,0,0.0,0,0.0,24825,258.62032956705167,0,0.0,27930,287.9430254171801,1923808,0,69013,0,0,0,0,0,51,0.5325703306113072,0,0.0,0,0.0,0,0.0,0.06788,0.1788103893367051,0.3282262816735415,0.02228,0.322191011235955,0.6778089887640449,25.027671723507805,4.544535686132758,0.326218360408009,0.2068379297317718,0.2319607102380053,0.2349829996222138,11.12048288613995,5.660456354683638,23.730632337690626,12707.16304285292,59.81444700579983,12.922131444963735,19.489394574414543,13.615920753215672,13.787000233205871,0.5493010955799018,0.7844748858447489,0.690793283149971,0.5708469055374593,0.1245980707395498,0.7045790251107829,0.9134078212290504,0.8430493273542601,0.7289377289377289,0.187725631768953,0.4959390862944162,0.7218453188602443,0.6377829820452772,0.5256544502617801,0.1065149948293691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218718333265,0.0048675617571897,0.0071675126903553,0.0094311818449749,0.0116993570440302,0.0138897374798883,0.0160159037618513,0.0180277664352797,0.0203226268119645,0.0226481549739935,0.0247393296902713,0.0268194512896336,0.0287018850073528,0.0306879287965881,0.0327574462815035,0.0344542419136421,0.0363263573196367,0.0382692227893273,0.0402079002079002,0.0419651782739087,0.0566955432627074,0.070827841586644,0.0840244503391803,0.0966935026170306,0.1087948569320756,0.1247305237350467,0.1373904194536608,0.1497623579198077,0.1622411641080896,0.1727780098767019,0.1851505175047877,0.1975181866332299,0.2098611141298441,0.2210253777161148,0.2321481562894982,0.2428519244180254,0.2535919860782651,0.2629672949750326,0.2722060760183461,0.2807118057544889,0.2884412803148695,0.2959850169729603,0.3030801842663098,0.3094609830402763,0.3162888451539228,0.3224348554258411,0.3278241053765056,0.3330490567959064,0.3378931550857557,0.3426268010766876,0.3425766309325001,0.3425046131813049,0.3430547923975372,0.3431485869502398,0.3431819870699264,0.3421564870871331,0.3415855707357276,0.3422580379902968,0.3432327416511186,0.3449527829446273,0.3460375870679458,0.3472684744687599,0.3478388832828792,0.3480312837108953,0.3485885682494376,0.3497398433804593,0.3516455114582735,0.3550917984880249,0.3569481324128164,0.3597148235671086,0.3620657882613102,0.3645386266094421,0.3662842574888464,0.3684614204632612,0.3711194731890875,0.3737806328812753,0.3784866697488057,0.3779608650875386,0.3729054245952854,0.3744987971130714,0.0,2.1903437748894707,59.4822023859145,201.00612227852025,296.0162602226786,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95757,42740,402.58153450922646,6713,68.9140219513978,5204,53.81329824451476,2157,22.22291842893992,77.36211040614715,79.72259538986422,63.32787542470121,65.07509092719746,77.10496058248636,79.46423423785143,63.23331470476304,64.98216307075238,0.2571498236607965,258.361152012796,0.0945607199381726,92.92785644508685,104.5605,73.50654348475905,109193.58375888968,76763.62405334237,291.39792,185.4527197442436,303774.04262873734,193134.40243976272,305.2245,146.2320894443324,314966.16435351985,149918.076701748,3009.77876,1362.453145528261,3112173.982058753,1391855.243510408,1272.35998,555.1002825933966,1312731.2363586996,563689.7068552653,2124.12214,874.4344504390004,2188927.82773061,887813.644398402,0.37978,100000,0,475275,4963.344716313168,0,0.0,0,0.0,24838,258.8218093716386,0,0.0,28226,290.9865597293148,1916107,0,68821,0,0,0,0,0,54,0.5639274413358815,0,0.0,0,0.0,0,0.0,0.06713,0.1767602296066143,0.321316847907046,0.02157,0.3186128803963199,0.6813871196036801,25.10325318947035,4.638828936915548,0.3395465026902383,0.1983089930822444,0.2269408147578785,0.2352036894696387,11.300510665812142,5.6501283556828135,22.57464598642087,12695.375996634602,58.60149645333545,12.173879442996403,20.012615423819835,13.00739374964691,13.407607836872304,0.5532282859338971,0.7916666666666666,0.6977928692699491,0.5825571549534293,0.1151960784313725,0.7093023255813954,0.9026548672566372,0.8524945770065075,0.7183673469387755,0.1632653061224489,0.5017884517118038,0.7373737373737373,0.6431852986217458,0.5470085470085471,0.1031664964249233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021883833318136,0.004461841117894,0.006963760024363,0.009256530883892,0.0115965617211738,0.0135047052592984,0.0157648930312238,0.0176223147921261,0.0199588961258064,0.0223130171213238,0.0244072524407252,0.0268299196745896,0.028579658854756,0.030728962717174,0.0327481396620945,0.0348720599638149,0.0366769179791453,0.0387197177984126,0.0407164092222614,0.0427994083703101,0.0571705932088391,0.0711513312758278,0.0843707067423154,0.0966354294849546,0.1086663009999578,0.1236964017515283,0.1362686329637685,0.1487522357550464,0.1607667567769716,0.1720051901815491,0.185799530384955,0.1985583791506125,0.2105486471490583,0.2215160101081926,0.2322136127498459,0.2436594905432506,0.2538358458961474,0.2625413543987577,0.2713212599854757,0.2795798685084645,0.2870240672354514,0.2944548432381844,0.3024073285044737,0.308990178796273,0.3149270591664946,0.3205976994489034,0.3265088905584773,0.3316827902240326,0.3368914682488276,0.3420955348419635,0.3417178906502749,0.3421987769268911,0.3428249383585769,0.3428038518261473,0.3430779519952441,0.3426013917415162,0.3416666666666667,0.3424387681397334,0.3442273231504394,0.345397843713802,0.3458041827228852,0.3479014778325123,0.3499707504596356,0.3511070440139273,0.3524255523535062,0.3539138586531951,0.3543918534531801,0.3570822997456589,0.3598738391449098,0.361493979721166,0.363673506446341,0.3661822985468956,0.3675444660926403,0.3674179397973075,0.3702838998879342,0.3725281231497928,0.3720219914477703,0.3756773028296207,0.3758187772925764,0.3843152555598907,0.0,2.090894068245748,56.85719978001636,198.2003869108273,294.8185972987381,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95764,42752,402.7713963493589,6822,70.04719936510588,5322,55.02067582807736,2162,22.17952466480097,77.32840490063373,79.68987776689862,63.31625382636724,65.06534432627672,77.06339632436871,79.42448823588771,63.219696946413855,64.9712629132183,0.2650085762650178,265.3895310109107,0.0965568799533826,94.08141305841866,105.1787,74.00359454271356,109831.14740403491,77277.05039755393,293.74637,186.7615518854396,306190.1340796124,194472.97719961533,303.02225,145.96350993766927,313137.59868008853,149908.19719477597,3081.67064,1382.4508449990333,3187262.060899712,1412879.417107717,1321.235,566.797129927123,1367713.8799548892,579904.4003248842,2132.44188,882.4813176080772,2190175.347729836,891699.6758901061,0.38028,100000,0,478085,4992.324882001588,0,0.0,0,0.0,25036,260.8600309093188,0,0.0,28011,289.2736310095652,1912854,0,68604,0,0,0,0,0,44,0.4594628461634852,0,0.0,1,0.0104423374128064,0,0.0,0.06822,0.1793941306405806,0.3169158604514805,0.02162,0.3184093437152391,0.6815906562847609,25.339040874347173,4.529594546027275,0.3282600526118001,0.2089440060127771,0.2232243517474633,0.2395715896279594,11.093552747697403,5.60849512369344,22.90122487063834,12719.542117129604,59.62367821865474,12.83108396999994,19.71729674229371,13.172448961702871,13.902848544658228,0.5403983464862834,0.75,0.680022896393818,0.5791245791245792,0.1301960784313725,0.7049808429118773,0.9057142857142856,0.8392434988179669,0.7526881720430108,0.150197628458498,0.4869305451829723,0.678477690288714,0.629154078549849,0.5258525852585259,0.1252446183953033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218963752622,0.0047364043895413,0.007056410672948,0.0089839224374479,0.0112408699721267,0.0135776564537157,0.0159181758851362,0.0179993465920692,0.0199758735611032,0.0220074927835895,0.0241914817282558,0.0264390003490974,0.0284556607945371,0.0306429351296788,0.032454800627425,0.0344104027123129,0.0366333354035981,0.0385796067369119,0.0405387149404025,0.0427546269775967,0.0577214132874067,0.0720628379579755,0.085636691552722,0.0984085605566884,0.1108394887411356,0.1267519289715674,0.1397151613484766,0.1517560664112388,0.1632469959946595,0.1741909194243678,0.1874454724642676,0.2000194760930957,0.2120328564434531,0.2231894835845053,0.2334558823529411,0.2438829875610593,0.254218561671354,0.2636459810475611,0.2726364544546362,0.2811783848198735,0.2894456660108783,0.2964349209319734,0.303417083047195,0.3096480808226245,0.3155834366717728,0.3211686934214746,0.3260343378857995,0.3308818843442905,0.3364647264139926,0.3412136268731665,0.3423657944429458,0.3421854112977688,0.3422304402444704,0.343234800717302,0.3428575680461925,0.3422523103374167,0.3407182872831727,0.3414557796230394,0.342048004934126,0.3423163700175483,0.3429714049679878,0.3441360468799493,0.3448080791149849,0.3464323342823197,0.3469136695853535,0.3476056043496445,0.3475325418395079,0.3511077495193974,0.3525258202768214,0.3563922942206655,0.3596182822702159,0.361189275285373,0.3663229376257545,0.3688736681887367,0.3702796873528581,0.3758444944885623,0.3763194125745755,0.3780012312743689,0.3804591265397536,0.3876092136616362,0.0,2.1549802731909184,57.45283550076548,194.9284477746397,311.08294114794376,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95722,43158,406.0926432794969,7037,72.12553018114959,5528,57.08196652807087,2237,22.91009381333445,77.31464774318667,79.68062690171763,63.30648041847581,65.05596149006891,77.03806407487869,79.40735821148967,63.20408239596471,64.95832704007208,0.2765836683079783,273.2686902279653,0.102398022511096,97.63444999683202,104.53982,73.57273046247391,109211.90530912433,76860.8370724326,297.95458,188.26029390078725,310565.752909467,195969.0185127632,313.66092,150.742447217172,323801.59211048664,154453.51007910378,3180.90888,1442.192882380902,3285880.529031988,1469759.4658706072,1329.66744,577.2940361293463,1371710.756148012,585821.7520839064,2199.24908,920.5340634023204,2254536.323938071,922565.4402176072,0.38365,100000,0,475181,4964.177514051106,0,0.0,0,0.0,25348,264.09811746515953,0,0.0,28966,298.79233614007234,1912396,0,68681,0,0,0,0,0,56,0.5745805561939784,0,0.0,1,0.0104469192035268,0,0.0,0.07037,0.1834223901994005,0.3178911467955094,0.02237,0.3169678985702724,0.6830321014297276,25.046733103269617,4.489362838123489,0.3348408104196816,0.2054992764109985,0.2317293777134587,0.227930535455861,11.07002573590211,5.523275933583569,23.856136952124555,12873.254962837822,62.66064507980118,13.34290613161957,21.011641532789533,14.40345027339018,13.90264714200188,0.5504703328509407,0.7623239436619719,0.690977849810913,0.5909445745511319,0.1119047619047619,0.7083926031294452,0.9066666666666666,0.8412017167381974,0.743421052631579,0.1455938697318007,0.4966035904900533,0.6911957950065704,0.6404332129963899,0.5435005117707267,0.1031031031031031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028263181887251,0.0052012044894607,0.0075722203049188,0.0097246214815567,0.0118927717584821,0.014263009902604,0.0166392915803756,0.0189091503134508,0.0211804632715229,0.0233303304532983,0.0254067853957122,0.0275895350747494,0.029922750136293,0.0319625763773686,0.0337637671734844,0.0359040628553706,0.0377239308273791,0.0398360485628307,0.0418425704481647,0.0437260376729454,0.0583782316334628,0.0727190888916802,0.0856240557327513,0.0984044511290848,0.1109669798884213,0.1272640710960643,0.1404613049431595,0.1525864088421321,0.1640458806802997,0.1750067070880506,0.1890644378538689,0.2019462083613272,0.2133907169317934,0.2242851349722164,0.234941884828301,0.2464601819050051,0.2565838050701452,0.2662063674721902,0.2747514051015997,0.2834953240964132,0.2917990952325716,0.2993001090282418,0.3059489077065395,0.312680149884704,0.3191080400481746,0.326213304705142,0.3314257807608505,0.336210078792276,0.3419045769405062,0.346759192073774,0.3469986936202879,0.3462221426899941,0.3461923071506035,0.3463478801370358,0.3463135801366498,0.3453457140664569,0.3449731754547475,0.3456572576660848,0.346405004713343,0.3474720357941834,0.3485688511342066,0.3498939775271992,0.3515928108550217,0.3513676859023145,0.3519616348563717,0.3529995300997233,0.354826707878996,0.356699145460852,0.360015467904099,0.3622050382653061,0.3634072580645161,0.3659397049390635,0.3685483357729269,0.3665074718841473,0.3691077040281877,0.370760934691432,0.3703473945409429,0.3710652491140296,0.3733108108108108,0.3691275167785235,0.0,2.5659218912367323,61.8975186487823,212.9167418100899,307.3482837119297,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95824,43131,405.9212723326098,6831,70.09726164635164,5358,55.4245283018868,2121,21.800384037401905,77.3504688262772,79.68239080833345,63.33176974345843,65.0598056493603,77.08442521722964,79.4149084065892,63.23362624782596,64.96358033994166,0.2660436090475571,267.4824017442461,0.0981434956324704,96.22530941864228,104.48064,73.5114040565059,109033.89547503756,76715.0234351581,294.19427,186.555736463047,306534.16680581064,194205.04413524517,308.8648,148.0612263656587,319288.72724995826,152235.9618820734,3071.06344,1389.7239016463889,3178893.053932209,1424555.952098905,1261.78837,553.0008680883924,1307212.389380531,567577.2727192348,2079.00062,869.0290018469988,2139331.941893471,881869.2079317372,0.38323,100000,0,474912,4956.086157956253,0,0.0,0,0.0,25047,260.86366672232424,0,0.0,28555,294.9574219402237,1916806,0,68905,0,0,0,0,0,57,0.5948405409918184,0,0.0,0,0.0,0,0.0,0.06831,0.178248049474206,0.3104962670180061,0.02121,0.3262894480745169,0.6737105519254831,25.15695516962561,4.422502021667862,0.3215752146323254,0.217431877566256,0.236468831653602,0.2245240761478163,11.071432075762436,5.638371068275386,22.57444320828111,12834.777657811195,60.54088592299973,13.7427584354751,19.504345792042937,14.11446572958084,13.17931596590084,0.5516983949234789,0.7570815450643776,0.697620429483459,0.5785319652722968,0.1155444721529509,0.7086438152011922,0.916243654822335,0.8341463414634146,0.7569444444444444,0.12,0.4992529880478087,0.6757457846952011,0.654988575780655,0.526046986721144,0.1143756558237145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0046845056426999,0.0070435400385669,0.0094286904483708,0.0114124132880362,0.0137805300360554,0.0159604303707103,0.0181359584180052,0.0202959009437338,0.0222859190254389,0.0246100839819115,0.0268116611728946,0.0290315614105451,0.0311341352887863,0.0333133934280822,0.0354216394391229,0.0372674665369206,0.0390320305368849,0.0412171852590883,0.0433076194342942,0.0578865011475067,0.0720782886895426,0.0849873200176052,0.0975825007091751,0.109420763185065,0.1255257540210935,0.1388264483840868,0.1518749002712621,0.1634958255930647,0.1746021539945346,0.1878585034599283,0.2004757013892643,0.2125063824702061,0.2232387823140405,0.2338471016645213,0.2451830923494543,0.2553462208134291,0.2649319662813861,0.274338795580236,0.2834673631635622,0.2917476851851852,0.2989297619743845,0.3066762927106387,0.3136176230883551,0.3203900019451469,0.3258557291281064,0.3312945717974106,0.3365705691927302,0.3416851469997017,0.346345009914078,0.3458459877168118,0.3457367549668874,0.3464612516945323,0.3464579471733086,0.3465025231850187,0.3462795586723342,0.3452360160678278,0.3454635270871068,0.3461314518614926,0.3473853868194842,0.3491607525064774,0.3502159014380224,0.3507589595011652,0.351096756829498,0.3516390672524501,0.3528119278053884,0.3552364913081951,0.3577793872217149,0.3614656381486676,0.3635027216019706,0.3642603873079371,0.36467221368382,0.3665053121267366,0.37122476855365,0.3702415640567723,0.3707110010611956,0.3714329314817641,0.3691220988900101,0.3671960569550931,0.3723076923076923,0.0,1.86523670040218,59.39468208509676,205.53862851433317,301.9618827607995,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95718,42991,405.1484569255521,6902,70.80173008211621,5380,55.63216949790008,2238,22.984182703357774,77.30949638025908,79.66979162654597,63.31695901961641,65.05977117531094,77.03376760648956,79.39339570414097,63.21610989615488,64.96129107822094,0.2757287737695151,276.3959224050012,0.1008491234615363,98.48009709000394,103.63298,72.99150636818655,108269.06120061011,76256.82355271376,294.73052,186.483352126782,307361.1232996929,194271.45586700723,305.09187,146.49202361874055,315115.9656490942,150254.92813215678,3127.805,1406.032054668265,3237678.2632315764,1438880.810995074,1320.74261,571.0750087866489,1368243.1413109342,585038.7270802238,2202.3387,911.080654386077,2265470.6324829184,923370.0482319992,0.38338,100000,0,471059,4921.320963664097,0,0.0,0,0.0,25023,260.83913161578806,0,0.0,28188,290.85438475521846,1919563,0,68940,0,0,0,0,0,52,0.5432625002611838,0,0.0,0,0.0,0,0.0,0.06902,0.1800302571860817,0.3242538394668212,0.02238,0.3265614275909403,0.6734385724090597,25.403113900838196,4.646315094160712,0.3293680297397769,0.204089219330855,0.2301115241635687,0.2364312267657992,11.261465206280146,5.631080053995066,23.758687630778898,12796.66932968642,60.90161701617163,12.873179424874374,20.04549206328722,13.978627036300669,14.00431849170937,0.5397769516728624,0.7622950819672131,0.6817155756207675,0.5823909531502424,0.1084905660377358,0.7012791572610986,0.9154078549848944,0.8609271523178808,0.712280701754386,0.1384615384615384,0.4867933843495433,0.6962190352020861,0.620166793025019,0.5435466946484785,0.1007905138339921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812387964472,0.0047441407833914,0.0071016962908854,0.0095981961485333,0.0117114827428455,0.0141378362698097,0.0163379707486113,0.0185470617656966,0.0209414987122358,0.0229656845186314,0.0249490052173556,0.0271577304556748,0.029286250475593,0.0312255406797116,0.0331683168316831,0.0350375069744373,0.0370531370966072,0.0389442024476249,0.0409508070634945,0.0430950967217725,0.0577891021490779,0.0712252203219526,0.0846357171327277,0.0978695213258181,0.110228830538859,0.1257575597321966,0.1390645558337931,0.1511241696474195,0.1623830278169465,0.1735862409126975,0.1869546482818054,0.1997336739996535,0.2125452982337769,0.2235428021100094,0.2341613265508357,0.2452662853088554,0.254948835962286,0.2648235148319645,0.2736672271962914,0.2821159556538986,0.289875044874987,0.2971840546803679,0.3039476956969761,0.3105301676044678,0.3170192073911986,0.323643721699219,0.3295897031388899,0.3344839445159154,0.3401297016861219,0.3444106363275565,0.3448727469114966,0.3443785349703407,0.3449508363471971,0.345449805943347,0.3455439642324888,0.3449017859887492,0.3441918910750926,0.3451562371176519,0.3456334352141214,0.3464903612942634,0.3478523097800479,0.3488390616910271,0.3499810182646475,0.3505876525419912,0.3522804463852498,0.3540310728532437,0.3549622717585392,0.3571473851030111,0.3590278760435828,0.3617174095207693,0.3647732478240952,0.3653815303994439,0.3679431002730678,0.3704701084865738,0.3724781119147316,0.3751947273816656,0.3788019863438858,0.380012466237274,0.3766378589350432,0.3730127956572315,0.0,2.28723075675781,58.753432902004775,203.83302163423696,310.36665273351923,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95729,43021,405.2272561083893,6917,70.92939443637769,5420,55.970500057453854,2160,22.12495690960942,77.40440741590693,79.7611489499457,63.3594678928421,65.09907359459359,77.1323143236204,79.48991190026656,63.25917684209082,65.00194657185627,0.272093092286525,271.23704967914364,0.1002910507512737,97.12702273732532,104.74596,73.655637183641,109419.25644266629,76941.82241916348,296.20874,187.9286543478796,308768.65944489127,195657.60046368357,308.30157,148.4587717956224,317993.32490676804,152044.9878230738,3121.555,1401.6463201050333,3225925.769620491,1429282.453702675,1318.72088,571.5784959008664,1362362.471142496,581901.288180159,2134.3739,886.0308263236238,2188841.2079933984,892001.6627913062,0.38252,100000,0,476118,4973.60256557574,0,0.0,0,0.0,25177,262.32385170637946,0,0.0,28533,293.95480993220445,1917540,0,68725,0,0,0,0,0,57,0.595430851675041,0,0.0,0,0.0,0,0.0,0.06917,0.1808271462930042,0.3122741072719387,0.0216,0.3166894664842681,0.6833105335157319,25.27999636821109,4.525822103678526,0.3190036900369004,0.2173431734317343,0.2241697416974169,0.2394833948339483,11.203427303193989,5.603635791416672,22.8450997495036,12764.151981093662,60.47418908177346,13.736374452633422,19.272531609961074,13.429012007508666,14.0362710116703,0.546309963099631,0.7894736842105263,0.6853672643146327,0.574485596707819,0.1140215716486903,0.7154907975460123,0.9373297002724796,0.8411910669975186,0.7482014388489209,0.1640625,0.4927113702623906,0.7225647348951911,0.6380090497737556,0.5229455709711847,0.1017274472168906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021869652819261,0.0045097542437294,0.0069795280702822,0.0090895241964149,0.011550232326416,0.0137520358306188,0.0157859872611464,0.0179586339193698,0.0198933300637567,0.0220721412125863,0.0242900042020682,0.0264697430002463,0.0284054693122237,0.0306944358609892,0.0328332335885424,0.0348887694343367,0.0371260213539347,0.0392016514694135,0.041248363160192,0.0432776435297058,0.0577162008373443,0.0719159445770019,0.0859435644602958,0.098749855429034,0.1111907572946534,0.1267924368681527,0.1396893434622077,0.1521426670215597,0.1641291921749628,0.1742879203843514,0.1874791336844259,0.1998961241316626,0.2117141614096149,0.2223801764956751,0.232778444036132,0.2431785967399007,0.2531632858003615,0.2631253443681056,0.2721642468239564,0.2805280150207221,0.2883132794710866,0.2955346925430299,0.3034415154950869,0.3105966438781852,0.3170323878300275,0.3229566243729714,0.3285551820238199,0.33368052027233,0.3387711837019609,0.3435817082965752,0.3439901133738112,0.3442449551492506,0.3454090314596312,0.3445157568327684,0.3444283003202467,0.343591860447339,0.3427472944750332,0.3440230846162674,0.3447446114988822,0.345594006421691,0.346447390627637,0.3473196243908237,0.3496989152556597,0.3505470655359899,0.3516102633225822,0.3526537225285494,0.3536821705426357,0.3561717127210927,0.3600604611923509,0.3613739365508467,0.363250980034643,0.3668015332197615,0.3706831358709352,0.3719140505943309,0.3711069418386492,0.3697756788665879,0.3726545678252845,0.3748223350253807,0.3748603351955307,0.3690095846645367,0.0,2.4732758386222065,56.78926325262199,200.45169401281555,316.89714982248205,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95744,42635,400.7352941176471,6690,68.62048796791444,5221,53.904161096256686,2060,21.08748328877005,77.33232137485312,79.69608964786067,63.31916690730778,65.07019253324347,77.06761272836562,79.43210051393247,63.22104862692024,64.97434408040374,0.2647086464875059,263.9891339282059,0.0981182803875455,95.84845283973208,104.64696,73.64790064377083,109298.71323529413,76921.68767105075,291.45143,186.156660824935,303752.36046123,193778.30620759932,307.5094,148.8916624050416,316438.54445187165,151978.14035933107,2994.45076,1378.200049477833,3094627.339572192,1406576.131688964,1256.12367,557.4292141637458,1296649.461062834,566959.4658926077,2023.75806,857.7364427711644,2074665.8171791448,866082.3309574801,0.37911,100000,0,475668,4968.123328877005,0,0.0,0,0.0,24932,259.7134024064171,0,0.0,28475,292.80163770053474,1914727,0,68681,0,0,0,0,0,46,0.4595588235294117,0,0.0,1,0.0104445187165775,0,0.0,0.0669,0.1764659333702619,0.3079222720478325,0.0206,0.3173337131462754,0.6826662868537245,24.961650410226227,4.44758657028956,0.3382493775138862,0.2104960735491285,0.2286918214901359,0.2225627274468492,11.321719840262167,5.987712493324454,22.145913417684124,12681.636367053234,59.13066283280452,13.068018750444102,19.84105643876043,13.344754598131365,12.87683304546862,0.5648343229266424,0.7797998180163785,0.7021517553793885,0.5871021775544388,0.1299483648881239,0.71,0.8894736842105263,0.8644444444444445,0.7491638795986622,0.1586715867158671,0.5116461659251504,0.721835883171071,0.6466565349544073,0.5329608938547487,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0047064074085344,0.0069145479652343,0.0090759411334254,0.011322942947831,0.0135899186031112,0.0157461042669494,0.0181420943552256,0.0207658095189407,0.0229013104013104,0.0251263493495443,0.0272775804365234,0.0295526992287917,0.0312577243140809,0.0333756332084971,0.0355120095911364,0.0376375816688928,0.0396721651623612,0.0419325338266165,0.0436688954154429,0.0575290985959601,0.0719203163908012,0.0853810737396302,0.0973134956101151,0.1094967472559914,0.1253754706604053,0.1373354128868659,0.1499228353999254,0.1612665527552328,0.1716880387699961,0.185994916641537,0.1987448604198225,0.2111257356060523,0.2225418038255011,0.2323419051706114,0.2426668438361625,0.2524524301099269,0.262025344947892,0.2708915071851801,0.2787236480293308,0.2866900519802267,0.29406325350563,0.3005327965901018,0.3065798467460517,0.3130849072656117,0.3188691812418284,0.3250964380542057,0.3301938423551273,0.3352638602764929,0.340291255726753,0.3406754772393539,0.3414449402302649,0.3417769695944517,0.342793939043433,0.3432527289491687,0.342704724530153,0.3412698412698413,0.3424223000180793,0.3433699959010793,0.3437851945869608,0.3447679554895584,0.3458173811271349,0.3471220373914324,0.3473781090060159,0.3490051192890949,0.3502053414946768,0.3519554667427919,0.354251012145749,0.3562165210036651,0.3589487158972718,0.3610526315789473,0.3625348488097791,0.3619592875318066,0.3635178653580739,0.3670017852109368,0.3695063037586897,0.3682856710546225,0.3661464585834333,0.3650490730643402,0.3652373660030628,0.0,2.305372209223385,61.45676751023296,188.8314979057517,294.0368660014282,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95727,43189,408.5054373374283,6898,70.88909085211068,5379,55.62693910808863,2148,22.094080040114072,77.41699606751023,79.77250776439617,63.36600846061516,65.10165770078574,77.1526337145654,79.50819980725927,63.26829696224343,65.00680905255716,0.2643623529448291,264.3079571368929,0.0977114983717299,94.8486482285773,105.02448,73.90328695045888,109712.49490739287,77202.134142362,295.93148,188.00946080801964,308553.87717153993,195814.50458911245,309.13091,148.9643121645597,319791.5008304867,153174.84255294545,3116.87928,1412.7586634545307,3222679.4112423877,1442491.3592346257,1305.73397,572.7513600554377,1346080.3639516542,580379.3496666952,2119.71534,883.4459953181091,2179598.7756850207,891037.482915928,0.3848,100000,0,477384,4986.931586699677,0,0.0,0,0.0,25223,262.86209742287963,0,0.0,28633,295.9457624285729,1914118,0,68663,0,0,0,0,0,54,0.5641041712369551,0,0.0,0,0.0,0,0.0,0.06898,0.1792619542619542,0.3113946071325021,0.02148,0.3213300220750552,0.6786699779249448,24.880177779739792,4.5569926205571605,0.3158579661647146,0.2154675590258412,0.2275515895147797,0.2411228852946644,11.12770649335908,5.571349390466111,22.74421086901373,12832.685755873976,60.51888935701696,13.601311462411374,19.09116328861251,13.665068346720098,14.161346259272982,0.5514036066183305,0.7687661777394306,0.7051206592113007,0.5947712418300654,0.1148804934464148,0.7144992526158446,0.9081081081081082,0.8677884615384616,0.7406143344709898,0.1621621621621621,0.4974016332590943,0.7034220532319392,0.6523772408417771,0.5488721804511278,0.1030828516377649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023279823478208,0.0046601627004629,0.0069883966244725,0.009372556585668,0.0113469985358711,0.0133756794723019,0.0154217800790965,0.0175954276382935,0.0195904102029554,0.021688645175811,0.023763167602574,0.0261396990907038,0.0282081067467129,0.0300820794842483,0.0323422605537902,0.0341948351228182,0.0360089867166388,0.0379190175904414,0.0399713154366601,0.041784732061005,0.0573451253510979,0.0712036077889736,0.0847889717684826,0.0980953082108938,0.1101044193650458,0.1259571857680754,0.138544440083587,0.1506333155934007,0.1627442392128793,0.1736230267673301,0.1871729158141838,0.2006838050722756,0.2125994521977305,0.224330613181267,0.2350207122372512,0.2461523141437723,0.2561278744440605,0.2654618609303528,0.2742239053039751,0.2833339055401059,0.2913438634629171,0.2977780894608273,0.3055522712762184,0.312636191662077,0.3190810233506481,0.3247644269261563,0.3306411282256451,0.3362956747272866,0.3420079157720465,0.3474167260068043,0.3480033916098033,0.3481304234223084,0.3483388283033223,0.3482588504217242,0.3480342592041872,0.3474092113526015,0.3465892919262515,0.3468043264503441,0.3480544282645023,0.3502475688383856,0.3508135403029736,0.3511829652996845,0.3516170871511652,0.3523325305503523,0.3540101303502412,0.3562239583333333,0.3577383831773041,0.3606767977440075,0.3632072172879222,0.3649487798125223,0.3674292185730464,0.3675661375661375,0.3706950532247965,0.3713980789754535,0.3735841991949827,0.3804373383494004,0.3772409601944698,0.3763031275060144,0.3793663688058489,0.382242287434161,0.0,2.154001430962407,58.83536431996366,204.13143238182397,304.74508483092245,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95692,42724,401.7577226936421,6885,70.68511474313422,5386,55.64728503950174,2156,22.15441207206454,77.3508434030137,79.74364032780854,63.31502979323547,65.08392574018396,77.08019928541933,79.4730032936055,63.21484808528511,64.98642315396755,0.2706441175943723,270.637034203034,0.1001817079503624,97.5025862164074,103.93856,73.10822295990894,108617.81549136814,76399.51402406569,293.91511,186.5926335192788,306520.7854366091,194366.7114484793,309.8275,149.09745537874576,320178.5938218451,152945.62344559192,3100.5806,1408.970690371484,3206200.978138193,1438435.742143007,1320.79975,578.2804736279403,1365692.7120344436,589745.6356100203,2130.08318,894.0674541613013,2191191.238557037,903152.9133010522,0.38047,100000,0,472448,4937.173431425825,0,0.0,0,0.0,25022,260.8159511766919,0,0.0,28716,296.44066379634666,1916993,0,68820,0,0,0,0,0,44,0.4598085524390754,0,0.0,0,0.0,0,0.0,0.06885,0.1809603910952243,0.3131445170660857,0.02156,0.3280452476203614,0.6719547523796385,25.31594975717352,4.426524254512925,0.330857779428147,0.2135165243223171,0.2194578536947642,0.2361678425547716,10.957969677547435,5.490427016465418,22.887403362947044,12764.916728804315,60.5926222073558,13.632618680336668,19.931653805732186,13.002305096673568,14.02604462461338,0.5419606386929076,0.7556521739130435,0.6936026936026936,0.5642978003384095,0.115566037735849,0.6987509184423218,0.9104859335038364,0.8610478359908884,0.703125,0.1345454545454545,0.488944099378882,0.6758893280632411,0.6388682055100521,0.5259179265658748,0.1103309929789368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019956035941124,0.0046242305625133,0.0070145874996193,0.0094926416781852,0.0116685995645893,0.0141500784417595,0.0164645156025257,0.0187920011438609,0.0211799838414415,0.0232277093873538,0.0255871192698184,0.0274647959655303,0.0296849446107322,0.0316611545554765,0.0339122986263764,0.0359335910848305,0.0379395371003501,0.0398160738195821,0.0416909378380627,0.0436976191468957,0.0579922078193383,0.0723215781537946,0.0861236485777264,0.0988806362699097,0.1109563896449142,0.1269480210328082,0.1393208572611377,0.1511863179417277,0.1631906955861759,0.1740982797291351,0.1880666199536463,0.200744943479579,0.2124612287098003,0.2234955451938442,0.2343335352089412,0.2442997826376258,0.2546483969312205,0.2645134407693953,0.273558648111332,0.2821988808366205,0.2895248905464569,0.2956888472352389,0.3028675747122349,0.3089996879275992,0.3157645055346065,0.3218064770737242,0.3272872933017888,0.3323148607875339,0.3375377164242887,0.3419575524651003,0.3426864786149614,0.3429736131768853,0.3425265650102878,0.3421493814313793,0.3426942943656118,0.3420935821101128,0.3413321514499177,0.3416371274780097,0.3421111092123926,0.3435625535561268,0.3442198807604334,0.3452117572692794,0.3465941194935649,0.3483291636883488,0.3495350904591432,0.3501941469262242,0.3510550680185169,0.3536237338100166,0.3565354330708661,0.3599447513812154,0.361878453038674,0.3638100291854603,0.3678984414278532,0.368850583479521,0.3699585375047116,0.3744488142056966,0.3754783407316699,0.3802479008396641,0.3884364820846905,0.3869230769230769,0.0,2.445952683300219,59.64678739347829,202.86539003273165,302.56492488042693,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95719,42635,402.4801763495231,6713,68.79511904637533,5237,54.08539579393851,2180,22.36755503087161,77.26691653433518,79.62679314935967,63.2951211478972,65.03897938685951,76.99947052178672,79.36134241740734,63.19610179225205,64.94409341312037,0.2674460125484614,265.4507319523276,0.0990193556451544,94.88597373913876,104.85178,73.76081377477986,109541.01066663882,77059.53153158714,292.92291,186.82057660736703,305412.29014093336,194565.85113174716,304.53149,147.43763258150014,314372.4756840335,151117.60225291422,3027.03952,1379.9204182226335,3127744.87823734,1407169.8191419763,1296.21729,569.2050725354804,1333039.1040441291,573585.7614202813,2147.71354,897.7893327654191,2205189.983179933,902348.9230745836,0.37948,100000,0,476599,4979.136848483582,0,0.0,0,0.0,24973,260.2513607538733,0,0.0,28185,290.6946374283058,1909662,0,68587,0,0,0,0,0,51,0.5328095780357087,0,0.0,1,0.0104472466281511,0,0.0,0.06713,0.1768999683777801,0.3247430359004916,0.0218,0.3287030474840539,0.6712969525159461,24.866622571596803,4.518677046989423,0.315638724460569,0.219209471071224,0.2243650945197632,0.2407867099484437,11.022255494552876,5.478507451189438,23.34940918562375,12671.736642447237,59.51992242036761,13.587440138612353,18.94157588193916,13.122282124843284,13.868624274972818,0.5514607599770861,0.7857142857142857,0.7035692679975801,0.5770212765957446,0.1149881046788263,0.7067557535263549,0.9380053908355797,0.8398169336384439,0.7292418772563177,0.1335877862595419,0.4976863753213367,0.712998712998713,0.6546052631578947,0.5300668151447662,0.1101101101101101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0045524135903233,0.006768275358201,0.008776830792048,0.011268636983097,0.0132161730117194,0.0155971252357408,0.0177009217954083,0.0197806241885855,0.0219660989190959,0.0240279642860803,0.0260153587121678,0.0279908685190136,0.0298695011793303,0.0318889920561229,0.0339873064439436,0.0359753950665865,0.0381387145302692,0.040051975051975,0.0420113780815637,0.0563352337990518,0.0704685341037558,0.0839997481266922,0.0968600711324368,0.1096292232046763,0.1254140781271497,0.1383916247265932,0.1496681969727634,0.1612161526286521,0.1721809515630367,0.1862668995407206,0.1985371403803435,0.2097410093881374,0.221762225507913,0.2327749614282565,0.2433173482527418,0.2536203522504892,0.2630197183098591,0.2719516490008293,0.2802668990186187,0.2877398893441674,0.2949625970194682,0.3016096746301538,0.3085098726038243,0.3150413424124513,0.3211668023987562,0.3262235263138096,0.3314296640958633,0.3363970349599512,0.3417208544676793,0.3427091644241301,0.3421252712921107,0.3419860725811017,0.341983492652925,0.3419898568019093,0.3416798683421259,0.3412378845511117,0.3411271280196826,0.3416738271180615,0.3426236868097333,0.344035573643849,0.3455796107433251,0.3464468879930774,0.3472663020235442,0.3488084559625687,0.3498424369747899,0.3507984462667242,0.3540593807616504,0.3581881781838949,0.3573249180725816,0.3577939203257299,0.3599783666846944,0.3646172508459426,0.3655400723689275,0.369100750166176,0.3693500298151461,0.369869331283628,0.3743402354851807,0.3742754623240408,0.3811364514882103,0.0,2.4035493066434803,59.15884228037203,199.5883937883931,294.22571867257346,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95702,42930,405.1117009048923,6749,69.31934546822428,5272,54.50251823368373,2200,22.611857641428603,77.288290147924,79.65807191715547,63.294707477804174,65.04413305428403,77.01720904625472,79.38705331885932,63.1955450235732,64.94770410311993,0.2710811016692815,271.01859829615194,0.0991624542309779,96.42895116409989,105.19542,73.95140201505602,109919.7717916031,77272.57739133562,294.79807,187.9313734019267,307385.3628973271,195721.90442667415,309.10096,149.051468316829,319612.2024618085,153094.17948789135,3052.90708,1384.7316379050164,3157641.052433596,1414685.739096744,1307.82405,572.493983201041,1350576.299345886,582250.0477777286,2164.76134,895.8142907306077,2226515.6841027355,904848.101505521,0.38048,100000,0,478161,4996.353263254687,0,0.0,0,0.0,25135,262.0216923366283,0,0.0,28443,293.8078619046624,1906306,0,68530,0,0,0,0,0,64,0.6582934525924223,0,0.0,1,0.0104491024221019,0,0.0,0.06749,0.1773812026913372,0.3259742184027263,0.022,0.3225761189841448,0.6774238810158552,25.0225710962371,4.513335015554675,0.3294764795144158,0.1995447647951441,0.2319802731411229,0.2389984825493171,11.302821535733086,5.759825130919422,23.38052334753181,12742.038545343876,59.70982994728823,12.41124243787716,19.71799563410017,13.657234711904325,13.923357163406576,0.5438163884673748,0.7699619771863118,0.6862406447898676,0.5764513491414555,0.1269841269841269,0.7275449101796407,0.9111747851002864,0.9013452914798208,0.734982332155477,0.1705426356589147,0.4814532520325203,0.6998577524893315,0.6119287374128582,0.5287234042553192,0.1157684630738523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0048255796271327,0.0070929902179648,0.0094170950242792,0.0116345293304043,0.0136341883126801,0.0159356456842234,0.0181493390496605,0.0201474000551983,0.0222893107506524,0.0245249759157152,0.0264929892632054,0.028448931751352,0.0303598278099318,0.0323359222700126,0.034559378261903,0.036715676123421,0.0385844748858447,0.0406681644200366,0.0426880106720026,0.0572231273760287,0.0718144696890377,0.0850422955017736,0.0979467696614432,0.1099933497302946,0.1255267337215458,0.1380756692470241,0.1501582126761914,0.1622292081007677,0.1720335434271418,0.185461172639139,0.1978894679248962,0.2103096376488014,0.2216017955876717,0.2322646018966219,0.2435950069348127,0.2542742449486196,0.2639590474472307,0.2725990307387773,0.2814897331067114,0.2902249185119883,0.297177168724859,0.3038592077468967,0.3104608544132668,0.3166812844126102,0.3224857556019725,0.3277516770092706,0.333107806216889,0.3387283387283387,0.3435786741531371,0.3442861964225447,0.3442186076054238,0.3445299677401098,0.3442730030627204,0.3450798865163506,0.3445809815290445,0.3429125472867724,0.3434456620252121,0.3450460038450975,0.3454858619204822,0.3463320899740025,0.3477113025527015,0.3487426814371762,0.3504808015600834,0.3514996870636945,0.3521604213929959,0.3527613496757235,0.3548437993057747,0.3575962759204401,0.3602524163271827,0.3621497473587505,0.3649646756583172,0.3639410611522165,0.3653522848846095,0.3665264142122487,0.3670049563370309,0.3707027684818983,0.3685593049100828,0.3734383487235198,0.3767951625094482,0.0,2.198203320457815,59.07205633738147,201.0719237682449,296.2204626426637,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95831,42659,401.7802172574636,6837,70.13388152059355,5327,55.02394840917866,2139,21.94488213626071,77.36488025655099,79.67915842316074,63.35773544642036,65.0710197051607,77.10630518532379,79.42140483435087,63.263182506022,64.97898887737101,0.2585750712271988,257.75358880987653,0.0945529403983584,92.03082778968508,104.73474,73.67156241114371,109290.85577735804,76876.33607400912,294.22404,186.79335374350063,306396.625309138,194293.1412233417,303.15625,145.74373168672446,312954.3571495654,149382.36142560467,3049.074,1367.6505111381546,3151059.8031952083,1396716.301821528,1274.92459,549.3150355881239,1316092.1309388403,558977.6372880132,2100.80848,866.105468756303,2158117.5819933005,875804.4377892008,0.38019,100000,0,476067,4967.766171698094,0,0.0,0,0.0,25095,261.2828834093352,0,0.0,28038,289.1548663793553,1919066,0,68841,0,0,0,0,0,58,0.5947970907117738,0,0.0,1,0.0104350366791539,0,0.0,0.06837,0.1798311370630474,0.3128565160157964,0.02139,0.3160967472894078,0.6839032527105922,25.21688012275436,4.56542838509589,0.3206307490144546,0.2158813591139478,0.2301483011075652,0.2333395907640323,11.216277417704816,5.73403381637445,22.518807577676853,12690.33575017203,59.81300063919738,13.608074890069805,18.979182646994225,13.629460620667237,13.596282481466124,0.5440210249671484,0.7904347826086957,0.6791569086651054,0.5628058727569332,0.1118262268704746,0.7192307692307692,0.9186351706036744,0.8675,0.7553956834532374,0.1161825726141078,0.4874596473801837,0.7269180754226268,0.6215596330275229,0.5063291139240507,0.1107784431137724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0042378036416724,0.0064940336066239,0.00870474952261,0.0108906763201513,0.0131450331934997,0.0151583110766784,0.0176000980051861,0.0196168629375204,0.0217923128102768,0.0238183085311359,0.0259536344324374,0.0280886751148521,0.0300943794320766,0.0320156676802556,0.0340975957220576,0.036170498857066,0.0383559372960203,0.0402143101890789,0.0422922063734823,0.0574590360566142,0.0715032297175826,0.0849352091430008,0.0977003045258847,0.1089756416062007,0.1246924660788765,0.1370926734183651,0.1491809029734125,0.160797533577273,0.1720972579263067,0.1855884156509203,0.1991048551876236,0.2104393932808901,0.2212246324573475,0.2311462798109682,0.2423330863405624,0.2523672660027182,0.2622742790405175,0.2716309406529198,0.2807426716056158,0.2877368840437448,0.2953194867663712,0.3026990617097209,0.3088901912473537,0.3145475511318808,0.3209893262092654,0.3263565891472868,0.3313802745297407,0.3370019269816225,0.3417641479607967,0.3420698743982141,0.342330326696733,0.3437323864276857,0.3440179281428468,0.3449430178236677,0.3440706824352307,0.3429523809523809,0.3440098806093042,0.3447530493558182,0.345902139027845,0.3476932938670085,0.3486174656852994,0.3495902416415615,0.3508906081324217,0.3504582730342498,0.3509341148150086,0.3522140063379678,0.3544060093422547,0.3583927185493544,0.3612812812812813,0.3619903248099516,0.3627313818338356,0.3647585545251039,0.3669014629615295,0.3718439173680183,0.375,0.3765144454799627,0.3733525535420098,0.3760445682451253,0.3800623052959501,0.0,2.2054607960139494,57.021332449109565,200.1715889766391,308.08329762880936,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95635,42506,400.9933601714853,6898,70.91545982119517,5341,55.2517383803001,2180,22.40811418413761,77.2563444549925,79.6665719833142,63.27473565930678,65.05564206535446,76.99158156889315,79.40213569429106,63.1777539931504,64.96144080717062,0.2647628860993478,264.43628902313776,0.096981666156374,94.20125818384406,104.5484,73.49194551397142,109320.22795001828,76846.28589321002,291.1788,184.79731246985656,303846.43697391124,192609.8786638801,301.14919,145.21159016863206,311094.56788832543,148918.53190101718,3083.56076,1388.5409401988256,3192173.242013907,1419825.9901371945,1306.87225,571.9929368203533,1350424.1438803785,582028.2084476126,2147.31876,888.880131147556,2209487.3006744394,899296.3016351406,0.37801,100000,0,475220,4969.101270455377,0,0.0,0,0.0,24800,258.6709886547812,0,0.0,27872,287.635279970722,1913821,0,68787,0,0,0,0,0,53,0.5541904114602394,0,0.0,0,0.0,0,0.0,0.06898,0.182481944922092,0.3160336329370832,0.0218,0.3303448275862069,0.6696551724137931,25.141032179421817,4.559412055595719,0.3235349185545778,0.2089496348998314,0.2301067215877176,0.237408724957873,11.17695941521739,5.636517776568631,23.24163986447408,12689.426290613868,60.27594014159247,13.074062025020432,19.714907434607408,13.62375367891882,13.863217003045822,0.5450290207826249,0.7652329749103942,0.7037037037037037,0.5614320585842149,0.1190851735015772,0.7315233785822021,0.92797783933518,0.865909090909091,0.7418181818181818,0.2,0.4834371108343711,0.6874172185430464,0.6482919254658385,0.5094339622641509,0.0992141453831041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0046927419600052,0.0068500796638894,0.0091534343157274,0.0116695492929087,0.0141397471552417,0.0162803982373102,0.0183599656708488,0.0205388376327148,0.0227528838076505,0.0248932851748481,0.0265034735068031,0.0286914358071589,0.0307344935664797,0.0327562341177199,0.0346436812532982,0.0367598275004146,0.0388099393334995,0.0406663961123424,0.0425576301241264,0.0569159220358467,0.070631619750034,0.0837252761096879,0.0966200355785728,0.1089491289345672,0.125321425170104,0.1381099955424423,0.150707105128642,0.1622416041386092,0.1723864099757474,0.1861147046140578,0.1989382448537378,0.2107596453390846,0.2218654451007682,0.2321054373000992,0.2427680216681837,0.2525894275295854,0.2620426932353538,0.2703765585751469,0.2786591871149809,0.2870594783899435,0.2946963567500381,0.3021012541081831,0.3081578252203357,0.3139920101334892,0.3197444515842024,0.3256630950289829,0.3317345715233308,0.3370820076618401,0.3419402629699198,0.3424886908378907,0.3431652788709833,0.3431826222316564,0.3429861887680265,0.3428626935262119,0.3421515123485339,0.3410136781261444,0.3420405197893103,0.3426976936458997,0.3442802900793579,0.3454621023199576,0.3463178449031641,0.3471885219959911,0.3475430444249893,0.3491473018020194,0.3497943464934112,0.351133197368799,0.3542636395300972,0.357303845612058,0.3612803057446554,0.3636529763808305,0.3653148345784418,0.3654017007234421,0.3684571951777812,0.3687005123428039,0.3725050194874217,0.3735103333836174,0.3737980769230769,0.3748304854895579,0.3681572860447186,0.0,2.2823603855815384,58.47004958515125,198.7344841675421,309.89499541766963,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95697,42818,403.6176682654629,6907,70.99491102124414,5371,55.592129324848216,2154,22.132355246245965,77.32722884548278,79.7048129970809,63.32110870231941,65.07621248124222,77.06184781398906,79.43837844031229,63.22332668644731,64.9803293673084,0.2653810314937175,266.4345567686013,0.0977820158721058,95.88311393382298,104.09322,73.30646716263664,108773.7546631556,76602.6805047563,296.07263,187.93614451474764,308829.31544353534,195836.1407429632,305.64283,147.4042773431673,316220.68612391193,151576.7708857799,3095.82324,1401.023500591578,3205112.929349928,1434427.603465702,1318.21271,571.8646591465761,1366110.139293813,586470.1629431332,2122.85274,883.8832688189887,2183498.5840726458,895438.8760077925,0.38096,100000,0,473151,4944.261575597981,0,0.0,0,0.0,25182,262.57876422458384,0,0.0,28316,292.73644941847704,1915990,0,68741,0,0,0,0,0,54,0.5642810119439481,0,0.0,0,0.0,0,0.0,0.06907,0.181305123897522,0.3118575358332127,0.02154,0.3291488481169816,0.6708511518830184,25.143633402583813,4.499391014762607,0.3355054924595047,0.2172779743064606,0.2100167566561162,0.2371997765779184,11.23663206319864,5.617271518190984,22.844991407728955,12752.14444860473,60.45962340723027,13.696434617701412,20.375279251409093,12.48549455911794,13.902414979001817,0.5406814373487246,0.7652099400171379,0.6875693673695893,0.5593971631205674,0.1106750392464678,0.7149187592319055,0.907035175879397,0.8657718120805369,0.7410358565737052,0.1317829457364341,0.4819517052526761,0.6918075422626788,0.6287822878228783,0.507411630558723,0.1053149606299212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022171826594042,0.0045403411336664,0.0068986507050826,0.0089886955726865,0.0110025320059791,0.0133179925264476,0.0155099626781963,0.0176074678541153,0.0195324484077475,0.0217509293299607,0.023812942262332,0.0259641554973553,0.0282857789389232,0.0303963895271558,0.0324261845051962,0.0346539261005801,0.0368286921929388,0.0386196586520493,0.0407526445533123,0.0428814142319598,0.058200505546387,0.071460716491015,0.0851191038106926,0.0979012150860028,0.1097705028687141,0.1252009986459038,0.1381996476556364,0.1501059558925319,0.1618479817082291,0.1724559634405372,0.1864120130989314,0.1995843121123223,0.211665016914492,0.2233051125549648,0.2338003984546125,0.2454900048756704,0.255140771171493,0.2646052750022504,0.2733826016869302,0.2817627646897057,0.2897887813238223,0.2976228097896696,0.304345252190386,0.3107908839149773,0.3169931064667907,0.3227346757477051,0.3275110264635124,0.3326154277485376,0.3379596601595434,0.3423915198456231,0.3427433508842986,0.3429047999779438,0.3432717827093568,0.3432792625927909,0.3443833862008369,0.343714931361547,0.3432930604727959,0.3438998751724591,0.345000256353289,0.3470564091582347,0.3483432296251896,0.3491357145682528,0.350463954318344,0.3514276749294007,0.351750784834581,0.3523525096929686,0.3541511487996333,0.3564343925705983,0.3585071581835449,0.3617920204073498,0.3638867214393904,0.3646548027444254,0.3662204174862001,0.3716133004926108,0.3766196646341463,0.3784851023094412,0.3754255648406066,0.3771803816950543,0.3805656678801456,0.382398753894081,0.0,1.9715487749597167,59.92529612415796,199.50852187850936,306.4232019273753,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95769,43116,406.4363207300901,6916,70.87888565193329,5405,55.76961229625453,2254,23.04503544988461,77.38146625236273,79.70461760337673,63.35451413110488,65.06786291281028,77.11035385295486,79.43635864792864,63.25483327865923,64.97245849692331,0.271112399407869,268.25895544808986,0.0996808524456511,95.4044158869749,103.85474,73.08678793430988,108442.9617099479,76315.70543109972,294.29043,187.1284405336686,306545.6985036912,194650.9797290654,312.35612,149.85352984436227,322283.34847393207,153470.91630959444,3119.46128,1411.324778741675,3219920.0158715243,1436746.1743759816,1340.50053,586.3274415684674,1379361.1398260398,592026.4793186184,2213.74078,912.6835520218204,2265889.0663993564,914972.6653531524,0.38395,100000,0,472067,4929.225532270359,0,0.0,0,0.0,25039,260.731551963579,0,0.0,28841,297.2673829736136,1917576,0,68891,0,0,0,0,0,63,0.6473911182115298,0,0.0,1,0.0104417922292182,0,0.0,0.06916,0.1801276207839562,0.3259109311740891,0.02254,0.3270950873813127,0.6729049126186872,24.990132724105035,4.5834826307747925,0.3215541165587419,0.2098057354301572,0.2358926919518963,0.2327474560592044,11.33976866509176,5.785707823688043,23.733385373837244,12814.680196546457,61.196166613550304,13.405563446764832,19.737216202141013,14.292934439704169,13.760452524940288,0.5506012950971323,0.7671957671957672,0.6979286536248561,0.5905882352941176,0.1112877583465818,0.7091043671354552,0.938337801608579,0.8298368298368298,0.7406143344709898,0.13671875,0.4977799703996053,0.683311432325887,0.6546982429335371,0.5458248472505092,0.1047904191616766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084867262013,0.0047022578945234,0.0071514794940201,0.0093630676740596,0.0116221135367626,0.0137732353360343,0.0159103881278538,0.0182961050622965,0.0203208009807928,0.0223543133082337,0.0246281194935048,0.0264394467927935,0.028630739507543,0.0307999547059489,0.0329391630668989,0.0347409404013177,0.0366012666087172,0.0386393796135025,0.0407113844363878,0.0429078641858334,0.058078251703733,0.0723068068853659,0.0851889533359205,0.0982694814752512,0.1103156696117917,0.126230947419638,0.139326176433148,0.1514780553751823,0.1628587603208681,0.1745129783105145,0.1881964106925619,0.2012869734494133,0.2128214887716818,0.2238012406052053,0.2341184239489324,0.2447244757724875,0.2557139826486975,0.2650617325635052,0.2743677390780971,0.282376678015843,0.2909636252041088,0.2983594271461526,0.305426595291108,0.3116241713717169,0.318010595897735,0.3244065958443223,0.3303053053053053,0.3353987480278894,0.3402498768760206,0.3449996040858342,0.3452209397853227,0.3448451409623137,0.3449933056162356,0.3455948348244014,0.3458279348910631,0.3456339281604345,0.3455397871262037,0.3464733696722926,0.3472635285269886,0.3471991719756589,0.3485464734879013,0.3494901991779955,0.3504226888464685,0.3516712623579259,0.3516729699130393,0.3524787128454265,0.3523486102391416,0.3552884161500456,0.3588589116746983,0.3601978933929141,0.3663601848039888,0.37160040449199,0.3720301697045883,0.3707924929716586,0.3706194354991475,0.371476150826692,0.3715288373512359,0.3734330772341286,0.3742112482853224,0.3712966525586764,0.0,2.5071665053375387,59.28859501482371,209.94343963252916,302.5234080874725,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95758,42884,404.2586520186303,6903,70.75126882349255,5350,55.30608408696924,2107,21.637878819524214,77.31912755708531,79.6699235920753,63.32066847763053,65.05882915223623,77.05164895981292,79.40139382539908,63.22151526579243,64.96174028242564,0.2674785972723867,268.52976667622386,0.0991532118381002,97.08886981059096,104.19926,73.3072673572733,108815.20081873056,76554.718516754,294.88581,187.09760765869535,307393.3666116669,194830.23628176795,305.52845,146.77956605718938,315401.167526473,150465.94633768356,3080.24136,1393.243186784768,3186870.068297166,1425139.2748227478,1255.55065,554.6054576181314,1298028.634683264,566032.1514840866,2075.36184,875.7102418822411,2133961.862194281,885540.6057476487,0.38129,100000,0,473633,4946.14549176048,0,0.0,0,0.0,25057,261.09567869003115,0,0.0,28301,291.96516217966126,1916821,0,68862,0,0,0,0,0,60,0.6161365107876104,0,0.0,0,0.0,0,0.0,0.06903,0.1810433003750426,0.3052296103143561,0.02107,0.3225359911406423,0.6774640088593576,25.080153959795854,4.508259410628831,0.3291588785046729,0.208411214953271,0.2349532710280374,0.2274766355140187,10.815025666383786,5.269495548339316,22.555446619554665,12752.34542717881,60.218168224312834,13.261379929496169,19.6149320957838,13.84427727119125,13.49757892784162,0.5375700934579439,0.757847533632287,0.6746166950596252,0.5521081941129674,0.1224322103533278,0.7031594415870683,0.9041450777202072,0.8470319634703196,0.7335907335907336,0.1690647482014388,0.481072950614189,0.6803840877914952,0.6175359032501889,0.5050100200400801,0.108626198083067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873639226726,0.0043676972810831,0.0067773223489306,0.0087753153628958,0.0110850087968189,0.0130050003564408,0.0150700994137139,0.0174100396193276,0.0195599271998527,0.0220306709526831,0.0244532619728707,0.0265219578811183,0.0285799498128265,0.0309358002307565,0.0329859678085018,0.034828441504754,0.036782442155391,0.0387112835300707,0.0406912102413832,0.0426704160808207,0.0568986033694494,0.0712993085557078,0.0848865626868333,0.0978600347021399,0.1100240374478134,0.1255035898954224,0.138117562206996,0.1509225170777383,0.1625180201826045,0.1736049316537121,0.1876406793533865,0.200448085893953,0.2122926298613,0.2230460505451483,0.2335317482148162,0.2447698049682699,0.2550455438471155,0.2642150629592537,0.2727344964980191,0.2819523034982016,0.2897189768766717,0.2980765853829854,0.3054275321967228,0.3121646118200699,0.3178079524991483,0.323223217042297,0.3290912282461508,0.3342980264164414,0.3390703892631387,0.3440945506464662,0.3442729137428479,0.3445233335631075,0.3445221445221445,0.3439697290401148,0.3437053145853193,0.3426908487798885,0.3416838760921366,0.3423362592842673,0.3441118037953004,0.3453674808996018,0.3455709309987762,0.3460187702136947,0.346595578783217,0.3470140857747176,0.3483874087326531,0.3503355001048437,0.3506735454284895,0.3514904635594291,0.3550993050410978,0.357475056644274,0.3598064722260258,0.3615081058020478,0.3602508075242257,0.3645218191579109,0.3664549160898834,0.3649738965353583,0.368735632183908,0.3730855625893404,0.3763143331488655,0.3770617568085923,0.0,2.236352367100984,60.056683622981474,191.04470864701327,313.04769157086906,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95679,43249,407.9265042485812,6799,69.75407351665464,5380,55.64439427669603,2169,22.261938356379144,77.34181859432726,79.72364586774563,63.3271521787835,65.08511769474153,77.0722286210824,79.45499172235252,63.22883319474097,64.98977376988967,0.2695899732448623,268.65414539311416,0.0983189840425282,95.3439248518606,104.28352,73.40972645202065,108992.88245069452,76724.8341103916,294.64011,186.905951709414,307353.9648198664,194756.43973074123,308.77319,148.54789335338214,319168.18737654027,152488.17667812872,3111.64336,1395.2519311284975,3219724.453641865,1425999.1601510746,1296.85951,558.9097782308877,1341570.9403317345,570294.3469631661,2136.68208,882.36684259418,2195069.8272348163,891064.8543136497,0.3841,100000,0,474016,4954.221929577023,0,0.0,0,0.0,25019,260.85138849695335,0,0.0,28570,294.9863606434014,1916932,0,68782,0,0,0,0,0,44,0.4598710270801325,0,0.0,0,0.0,0,0.0,0.06799,0.1770111950013017,0.3190175025739079,0.02169,0.3241466144376049,0.675853385562395,24.948991526835265,4.591898160955131,0.3178438661710037,0.2146840148698884,0.2325278810408922,0.2349442379182156,11.222520311618522,5.576407723746276,22.97960670920383,12847.415246075663,60.40821605158747,13.622504892150342,19.17075623603936,13.910109196322267,13.704845727075496,0.5546468401486989,0.7792207792207793,0.7058479532163743,0.5739408473221422,0.1257911392405063,0.7181208053691275,0.9164556962025316,0.8738095238095238,0.7236363636363636,0.1394422310756972,0.5003713790542214,0.7078947368421052,0.6511627906976745,0.5317622950819673,0.1224086870681145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.004530849306182,0.0066860789545772,0.0090390201295931,0.0114898116891039,0.0139081208764356,0.0159924165978656,0.0179659667425456,0.0201964451803473,0.02228500650022,0.0244340086949388,0.02633281639947,0.0283841896257278,0.0305009995259979,0.0326982226534277,0.0346914078257361,0.0367246274688607,0.0388305162174508,0.0410914727391887,0.0431383178349526,0.058094103881994,0.0724165733013622,0.0858138460892564,0.0990361547203165,0.1112224554593306,0.1272184968163645,0.1398559105329612,0.1512454758356397,0.1631479977776828,0.1743634842667467,0.1889653538388636,0.2015077931489513,0.2135501060301234,0.2245676556111852,0.2345752345752345,0.2459159827668317,0.2567385068696496,0.2667139065101003,0.2754300758022786,0.2843416818405653,0.2914131717134331,0.2993661115269461,0.3064993138693039,0.3129704204420154,0.3190333867910774,0.325019725811224,0.3305869978964239,0.33622402200489,0.3408053726079967,0.3453832234887007,0.3461051212938005,0.3460351998237254,0.3458152265929228,0.3461304700162074,0.3462391191131612,0.345570397666206,0.345488560873908,0.3465454007203592,0.3467420155835259,0.3481579464812398,0.3491052187763515,0.3506457546330175,0.3512220707017728,0.3516628916148999,0.3538020155263031,0.3542174357361842,0.355921033781267,0.3580489039319267,0.3617141845227554,0.3643017117261238,0.364583811578899,0.3667468591285752,0.3669759515243325,0.3703845271768213,0.3731539836327721,0.3766156055528961,0.3789050417568821,0.376172990616075,0.3826987681970885,0.3845556849049282,0.0,2.25324502289618,59.15116661163244,198.25812622021377,309.55740039555434,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95692,42935,405.91690005434106,6851,70.36115871755216,5356,55.51143251264474,2161,22.321615182042382,77.38307130315455,79.76016538472011,63.34642469116329,65.09778287077756,77.11652221158751,79.48925923932882,63.24831880773586,64.99970375326474,0.2665490915670432,270.90614539129376,0.0981058834274293,98.0791175128246,103.82878,73.0230751032136,108503.0932575346,76310.5328587694,293.47742,186.46895595946165,306248.98633114574,194432.68810803097,308.1832,148.8874575629156,319167.0150064791,153389.45221954145,3098.5362,1406.021611223969,3213542.657693433,1445332.4256560076,1306.11295,567.2496875535555,1353195.794841784,581069.3240328929,2126.9522,887.9094515826149,2198564.1223926763,908195.5436394974,0.3817,100000,0,471949,4931.958784433391,0,0.0,0,0.0,24982,260.596497094846,0,0.0,28595,295.8763533001714,1918662,0,68954,0,0,0,0,0,47,0.4911591355599214,0,0.0,0,0.0,0,0.0,0.06851,0.1794865077285826,0.3154284046124653,0.02161,0.3224597445863409,0.677540255413659,24.95787205687537,4.598873002336686,0.3192681105302464,0.2092979835698282,0.2376773711725168,0.2337565347274085,11.17596087205171,5.542004599488868,22.985848090679887,12806.636417372718,60.43657983659105,13.35383415606302,19.29308783843725,14.105338445202936,13.68431939688786,0.556572068707991,0.808206958073149,0.6935672514619883,0.591516103692066,0.108626198083067,0.7093954843408594,0.937046004842615,0.84688995215311,0.7402135231316725,0.0957854406130268,0.5038915390409239,0.7330508474576272,0.6439628482972136,0.5493951612903226,0.1120080726538849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348582245933,0.0045488622778757,0.0068457723552499,0.0091697469434176,0.0113263179299476,0.0133045593819029,0.0155252910354951,0.0178627933325848,0.0199728108102583,0.02196857245227,0.0241549360755405,0.0261336564528053,0.0281180257731428,0.0303754441983828,0.0323519095467018,0.0342717764273016,0.0363299216840011,0.0381425858078444,0.0399438435940099,0.041874231402547,0.0567017309279319,0.0713119216113228,0.0844409941146232,0.0976153425579341,0.1101036406001244,0.125237873726054,0.1382384430287161,0.1503078902868325,0.1623487483727779,0.1746579378770183,0.1875195007800312,0.200121108576001,0.2122569214213507,0.2238376859757097,0.2341577187114944,0.2449024822695035,0.2556934314721946,0.2650415113043674,0.2740550608758859,0.28226287076514,0.2908964639157358,0.2980061116249663,0.3058659052403351,0.3117325811678569,0.3177831571520673,0.3239904225908372,0.3300459893986291,0.3356184456988493,0.3405235031648853,0.3463155389862775,0.347357356547988,0.3479188460056158,0.3487841302938939,0.3478807860830333,0.3480685163707734,0.3466472303206997,0.3443200203026361,0.3452148036104763,0.3463482327948055,0.3475179843241115,0.3485324947589098,0.3503700049333991,0.3512970711297071,0.3521755631460272,0.3527536023400225,0.3539576945065225,0.3555063452857508,0.3566124635774039,0.3589950524579809,0.360683625430233,0.3652926440446367,0.3674386632825719,0.3701938154676033,0.3719733656174334,0.3741388940606963,0.3790152403282532,0.3813253012048193,0.3763801261829653,0.3854838709677419,0.3871209284912018,0.0,1.7803202392748854,60.82231784760162,202.02991611208628,299.45103751131285,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95694,42790,403.2541225155182,6869,70.52688778815809,5335,55.17587309549188,2135,21.997199406441364,77.3960056150407,79.78036190721221,63.35197710932333,65.11307632205653,77.1275084373504,79.51063471573168,63.253697658287166,65.01649097896114,0.2684971776903069,269.72719148052704,0.0982794510361628,96.58534309538425,104.55676,73.54269902258494,109261.56289840532,76851.94371913071,294.67987,186.57678417900732,307366.2194076954,194399.9516112501,305.77205,147.1955839372276,315266.432587205,150603.31704267132,3074.55132,1383.363559893085,3183043.283800448,1415821.7676111553,1281.23723,557.4878583440657,1327568.018893557,571251.6650407193,2108.38922,877.65995856734,2174980.981043744,893031.7556315751,0.38033,100000,0,475258,4966.434677200243,0,0.0,0,0.0,25069,261.3643488619976,0,0.0,28119,289.63153384747216,1920854,0,68806,0,0,0,0,0,72,0.7523982694839801,0,0.0,0,0.0,0,0.0,0.06869,0.1806063155680593,0.3108167127675061,0.02135,0.3249965455299157,0.6750034544700843,25.209074956537968,4.4959189114036295,0.3179006560449859,0.2159325210871602,0.2303655107778819,0.2358013120899718,10.860073724343918,5.365117323816481,22.635581392589792,12725.995425983896,59.70381257156465,13.536835127057971,18.817388763092456,13.572358411446436,13.777230269967788,0.5375820056232428,0.7751736111111112,0.6768867924528302,0.565500406834825,0.1049284578696343,0.6964560862865947,0.9429347826086956,0.8337408312958435,0.6920152091254753,0.1317829457364341,0.4864998761456527,0.6964285714285714,0.627039627039627,0.531055900621118,0.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0044411997323112,0.0068309616126347,0.0090525781051562,0.0114438589709682,0.0135624974544862,0.0155184192012398,0.017754137357196,0.0199656504937741,0.0223750742082744,0.0243592372360057,0.0264792550078544,0.0284057017092786,0.0305408773935704,0.0324697433992633,0.034328774769746,0.0364600596619158,0.0387469769469499,0.0409131090426914,0.0429920373535665,0.0580524540165655,0.0718950144417932,0.08477811690423,0.0976396993113599,0.1102503293807641,0.1254309342018993,0.1379299369814763,0.1490738769427294,0.1615143034161557,0.172370523696657,0.1855190462343704,0.1988447684669385,0.2105148768772684,0.2216222715299107,0.2318035887061307,0.2423725811451091,0.2529582994100131,0.2622685601294265,0.2719866754288563,0.2797978412001463,0.2879975979027843,0.2957016242979086,0.3026676433060819,0.3094676892520848,0.3171163523919239,0.3231105973783232,0.328040941147101,0.3331768407963355,0.3379868788097944,0.3432806350125712,0.3427408521841921,0.3423927963542524,0.3431047093906487,0.3433458429561201,0.343605798477677,0.3433623445554247,0.3426089982914636,0.3437935729400764,0.3447180573107005,0.3469970211020138,0.3486477374887624,0.3497926949654492,0.3513999539970307,0.3524202542939995,0.3539978357580858,0.3552539016700972,0.3566469383109492,0.3598804279421019,0.3612322408214938,0.3611953399297797,0.3615321025075778,0.3629700957577703,0.3633650793650794,0.3661583263085294,0.3693084397028005,0.3698745779064158,0.3729888613861386,0.3744085579098951,0.3747203579418344,0.3786521231008959,0.0,2.230012217224349,56.9751799919062,197.1544993184904,310.86354439745327,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95813,42845,403.9535344890568,6867,70.37667122415539,5350,55.169966497239415,2151,22.00118981766566,77.38566316619061,79.70680330646262,63.36611244363343,65.08409147632439,77.11868986605607,79.44210305529724,63.26730510875035,64.98917538715405,0.2669733001345378,264.70025116537954,0.0988073348830766,94.91608917034,105.20532,73.96329837195007,109802.761629424,77195.47281887644,294.7955,187.56252979517024,306952.76215127384,195047.02201336832,307.7122,148.88529988916713,317298.18500621,152353.4845957703,3086.68316,1404.613044915836,3185565.8000480104,1430743.311987619,1287.55085,564.7337805221114,1328298.3624351602,573944.832892067,2123.86272,892.2203616399715,2175383.6744491872,895356.6998340725,0.38123,100000,0,478206,4991.034619519272,0,0.0,0,0.0,25078,260.99798565956604,0,0.0,28414,292.67427175852964,1916925,0,68829,0,0,0,0,0,61,0.6366568210994332,0,0.0,0,0.0,0,0.0,0.06867,0.1801274820974215,0.3132372214941022,0.02151,0.3251381215469613,0.6748618784530387,24.85883671882002,4.505501568929279,0.3287850467289719,0.2029906542056074,0.2325233644859813,0.2357009345794392,11.013148994382794,5.469466074420749,22.98745155055423,12727.619719007856,60.51819627579975,12.973342357357089,19.91941301779108,13.768487996340292,13.856952904311298,0.5510280373831775,0.7716390423572744,0.7026719727117681,0.5884244372990354,0.1126090404440919,0.7065217391304348,0.9146666666666666,0.8536585365853658,0.7561837455830389,0.1217712177121771,0.4969773299748111,0.6962025316455697,0.650611620795107,0.5390218522372529,0.1101010101010101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295149544731,0.0048356193546424,0.0070333194629101,0.0091337654684737,0.0111782415883477,0.013399857448325,0.0155745140608914,0.0177058883559546,0.0198885993152434,0.02224769233918,0.0244009920268913,0.0263887178223919,0.0284072806503663,0.0302631037180384,0.032255403398779,0.0345718033735138,0.0362774719589421,0.038340347022119,0.040257097169439,0.0424345220132985,0.0577558960665074,0.0715823803650199,0.0850426051503495,0.0979712337546359,0.1100636218083761,0.1260258346623855,0.1396260395148048,0.1520327363554232,0.1633902571705902,0.1736587873659858,0.1866605009302375,0.1994728541491131,0.2112382482575938,0.2228577666193647,0.2328460178157574,0.2432468293545926,0.2542616485059161,0.2635434220874059,0.2722905217834683,0.2805067691181851,0.2890732417474494,0.2965289371986316,0.3035703740448098,0.3103468892369871,0.3163998594263139,0.3223939647122426,0.3285029581367483,0.3338239585844615,0.3385221547603669,0.3424594395280236,0.342598073508045,0.3424823299689227,0.3422167785896299,0.3422113675448358,0.3418088331450989,0.3413980142191714,0.3410863774733638,0.3417919284281156,0.3432493102798293,0.3442191250761348,0.3449577464788732,0.3454657251666138,0.3466855201232509,0.3483763455388911,0.349910242103731,0.3506014899049725,0.3515526164462335,0.354413535263925,0.357444093985895,0.3598589574067395,0.3621132837602129,0.363481228668942,0.3658151005438219,0.3662928206301976,0.3715313950184676,0.3707328718071139,0.3735330450895615,0.3743621147172892,0.3781372002230898,0.3804934464148033,0.0,2.4851639362454274,60.45452185934585,201.91169858418945,299.05215695258767,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95765,42706,400.8458204980943,6940,71.06980629666371,5445,56.25228423745627,2198,22.62830888111523,77.37657405990127,79.72328964732756,63.3458979718325,65.079784544432,77.10853454314322,79.45183495676145,63.24642288691661,64.98110273034636,0.2680395167580514,271.4546905661166,0.0994750849158876,98.68181408563714,104.18012,73.30989860426408,108787.26048138672,76551.87031197628,292.72196,184.93094369874868,305039.3254320472,192482.3878523168,306.00128,147.23941901212842,315091.25463373883,150454.89310456297,3162.8248,1428.449923414148,3271991.312065995,1460968.7441666522,1330.09904,587.3496773755355,1375475.403331071,599881.9322461525,2172.63424,906.6701983337442,2239587.6781705213,922550.4837713538,0.38048,100000,0,473546,4944.87547642667,0,0.0,0,0.0,24932,259.7086618284342,0,0.0,28264,290.7742912337493,1921251,0,68921,0,0,0,0,0,59,0.6056492455490001,0,0.0,0,0.0,0,0.0,0.0694,0.1824011774600504,0.31671469740634,0.02198,0.324487831706311,0.675512168293689,25.178562673915152,4.600884446986031,0.336455463728191,0.2033057851239669,0.2196510560146923,0.2405876951331496,11.120260838242933,5.382443397889553,23.28734404643751,12757.548250939784,61.17740930162965,12.915312712248191,20.629258702376514,13.331446923884847,14.301390963120102,0.5382920110192837,0.7741644083107497,0.6752183406113537,0.5827759197324415,0.1068702290076335,0.7065462753950339,0.9169139465875372,0.8434782608695652,0.7715355805243446,0.1358490566037735,0.4839650145772595,0.7116883116883117,0.6188046647230321,0.5285252960172229,0.0995215311004784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030588473614,0.0050684750985818,0.0074676840033279,0.009762688447316,0.0119294605809128,0.0141342756183745,0.0164778578784757,0.0186323355249724,0.0207321685971028,0.0228680226428227,0.0249057067891111,0.0272015273914248,0.0295874412723216,0.031750772399588,0.0339516361985721,0.0362488113449373,0.0381875414181577,0.0402385892116182,0.0422284829142019,0.0443331285212917,0.0590936606341453,0.0725340918597841,0.0854656952670475,0.0977416744606395,0.1102129856990799,0.1261693603796919,0.1386344359626802,0.1511108273748723,0.161754026229228,0.1729274125229215,0.1868638454164557,0.1995174100283494,0.2124067103287713,0.2232167281242135,0.2338537423204809,0.2442106663414958,0.2538555172144237,0.2637396031469122,0.2727510044718861,0.2805084745762712,0.2887572458318388,0.2959883040935672,0.3030270769012385,0.3091935020126509,0.3155074365704287,0.3210864392360897,0.3273848231704267,0.3328756848836174,0.3383532577757077,0.3438250270427143,0.3434935837077291,0.3432967153836635,0.3434258125360697,0.3434520025429116,0.3436738936738936,0.3427779394422067,0.3422315869520445,0.3431668856767411,0.3438376787791692,0.3449107573564882,0.3452533072760072,0.3465497446454729,0.3468368246505184,0.347319712075826,0.3485074626865672,0.3493281148075668,0.3496194521250819,0.3509786057616789,0.3529411764705882,0.3559382706228621,0.360880284905488,0.3631856708779786,0.3646220765302906,0.3684531523976519,0.3694650747391181,0.3702866658736767,0.373639846743295,0.3739919354838709,0.3847411444141689,0.3835668307459295,0.0,2.32205345119976,58.32410509729032,203.66014817815423,316.3037091005693,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95748,42788,402.4104942139783,6954,71.32263859297322,5419,55.98028157246104,2145,21.995237498433383,77.3313489084019,79.69871834223804,63.31030609897547,65.06360552698209,77.0628585462115,79.4324443306362,63.21071956529079,64.96772313800061,0.2684903621904055,266.27401160183695,0.099586533684679,95.8823889814795,104.04988,73.25558779414285,108669.86255587584,76508.09062130058,292.40612,185.32645353550035,304772.46522120567,192938.4112020516,304.06127,146.47845118409842,314140.0655888374,150225.69251719146,3119.82228,1420.659252873667,3225906.421021849,1451359.521320203,1316.37471,573.1099226119936,1359228.3807494673,583166.24722404,2113.7776,888.1140702307407,2169962.6519613983,894939.2683875349,0.38263,100000,0,472954,4939.539207085265,0,0.0,0,0.0,24937,259.8174374399465,0,0.0,28215,291.2332372477754,1919020,0,68819,0,0,0,0,0,43,0.4490955424656389,0,0.0,0,0.0,0,0.0,0.06954,0.1817421529937537,0.3084555651423641,0.02145,0.3379604178119846,0.6620395821880154,25.047093763982947,4.4452715568496135,0.3242295626499354,0.2192286399704742,0.2279018269053331,0.2286399704742572,11.087778651597135,5.602126348105956,22.918117508676527,12801.964073899837,61.25529059453594,13.919843303272472,19.848830579373125,13.853275944753667,13.633340767136682,0.5532386049086547,0.7718855218855218,0.7006260671599317,0.5797570850202429,0.1081517352703793,0.7133479212253829,0.9171122994652406,0.8661971830985915,0.7661016949152543,0.144927536231884,0.4990118577075099,0.7051597051597052,0.6476333583771601,0.5212765957446809,0.0976116303219107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417673937932,0.0049281564030542,0.0072976401928444,0.0093375330217435,0.0112718468330993,0.013555213817967,0.0158456628361085,0.0180013682265129,0.0201495361515408,0.0222975602761333,0.02447079094191,0.0266707761853392,0.0288972131889844,0.031073184305723,0.0335772752139222,0.0357467841336807,0.0377020492270096,0.0396496798763087,0.0417047817047817,0.0437341165687622,0.058533071655253,0.0726985422618487,0.0854891840288705,0.0988252863167415,0.1111087678599673,0.1269290572344273,0.1395566026722701,0.151698499099886,0.1633569184070456,0.1736848882879402,0.1871220858168335,0.1998635448027897,0.2114729289828091,0.2224691547244999,0.2329945269741986,0.2436736232784049,0.2539765872838568,0.2643674278250686,0.2738583088327109,0.2829881605941479,0.291301931360289,0.2987595609853232,0.3056263710203356,0.3125473001381464,0.3186609860012173,0.3248046802680786,0.3306649629184205,0.3360513709102028,0.3402769666056665,0.3455475243468953,0.3454167846691211,0.34549285301165,0.3460437840961953,0.3459758813152491,0.3458482467734989,0.3436308803943481,0.342954293847857,0.3436218043385514,0.3444850929978118,0.3455558134137851,0.3464890088266711,0.3467457962413452,0.3479692185108301,0.3489564672160516,0.3497036001735023,0.3487976999477261,0.3494921250855969,0.3528947534566576,0.3560587298779409,0.3585328741891567,0.3617372182517867,0.3614631029709296,0.361095337245252,0.3665168710488232,0.3704396632366697,0.370846981750117,0.3713855421686747,0.3733464955577492,0.3711814003784807,0.3786848072562358,0.0,2.389949492602577,60.21140613212527,207.67045506544608,303.01543916182976,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95494,42649,403.2818815841833,6698,69.02004314407188,5189,53.79395564119212,2094,21.54062035311119,77.22623088476638,79.71308721397301,63.24095407219974,65.07618268360287,76.96290867575635,79.45067371158864,63.14335284058237,64.98175923670661,0.2633222090100275,262.4135023843764,0.097601231617368,94.4234468962577,104.63706,73.57144153399855,109574.48635516368,77042.9990721915,293.31083,187.74461927074097,306598.90673759603,196052.1445014616,307.1695,148.5270201923642,318527.36297568434,153102.34994245664,2981.46712,1357.778215184704,3092540.473747041,1392276.605916557,1267.66311,553.5376976143843,1314484.7843843594,566724.7585490255,2060.7175,862.804048214283,2122126.311600729,872415.4098332444,0.37925,100000,0,475623,4980.658470689258,0,0.0,0,0.0,25092,262.1944834230423,0,0.0,28376,293.98705677843634,1905799,0,68405,0,0,0,0,0,47,0.4921775190064297,0,0.0,0,0.0,0,0.0,0.06698,0.1766117336849044,0.3126306360107495,0.02094,0.3250532292405961,0.6749467707594038,24.813500114459057,4.536837554738424,0.3181730583927539,0.21757564077857,0.2310657159375602,0.2331855848911158,11.324745769759716,5.577122588271752,22.371641276249846,12663.207000532972,58.88673210684315,13.291860905110733,18.89191959068496,13.488085030031884,13.214866581015569,0.5534785122374253,0.75022143489814,0.705632949727438,0.567139282735613,0.1487603305785124,0.7256838905775076,0.8997289972899729,0.8651162790697674,0.721830985915493,0.1974248927038626,0.4949651432997676,0.6776315789473685,0.6494676494676495,0.5191256830601093,0.1371545547594677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090489942747,0.0043819164798604,0.0068938209434077,0.0088561260803253,0.0109545528587717,0.0129439942924119,0.0152144409636833,0.017472871068604,0.019724390518379,0.0219565172844818,0.024028986697323,0.0258693372267576,0.0278747438550966,0.0298082576093571,0.0319894195201587,0.0341671498384825,0.0363178041265988,0.0382744282744282,0.0404234039006501,0.0423958898959943,0.0575199933006741,0.0717051213447071,0.0853753444250468,0.0985602259791728,0.1102914755553676,0.1252570435225032,0.1378067452047803,0.1501050991773455,0.1609078445653571,0.171763643595008,0.1849336514894674,0.1979845751662345,0.2104167120957718,0.2210151282613462,0.2309415308565691,0.2429819297192771,0.2535105680686561,0.2636748040818628,0.2732030307856834,0.280948280810516,0.2879302943462774,0.2953231122945723,0.3012736056214317,0.3077108028179173,0.3141132719624459,0.3198955665268446,0.3250204261202941,0.3301971211617621,0.3351621920301632,0.340367750311316,0.3413476491190112,0.3416505658294231,0.3423134518125053,0.3425663153017491,0.3425360007155422,0.3411987148940095,0.3405835122028778,0.3408183468074575,0.3413264166824123,0.3426745417661526,0.3432948172682449,0.3443345645180508,0.3449001494076303,0.3460951183365518,0.3473333976275436,0.348675436073119,0.3491650463227725,0.3516348128257779,0.3542901495907423,0.3559992014374126,0.3585770606032823,0.3616114249174038,0.3636134559657301,0.367190465345783,0.3730136604404795,0.3782929399367755,0.3793208932395228,0.3834324379741644,0.3812032159689492,0.3873320537428023,0.0,2.12338148436071,57.88522405372087,201.9701295095556,288.8393563366846,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95712,42525,401.0468906720161,6800,69.89719157472418,5333,55.1654964894684,2126,21.857238381812103,77.36399481233721,79.74863956869147,63.33329461681414,65.09717357379341,77.10746949614874,79.49095374773584,63.23956604451636,65.00539114848505,0.2565253161884726,257.6858209556292,0.0937285722977847,91.78242530836656,104.18056,73.22196145693235,108847.73069207622,76502.15381240843,291.01951,184.8971048250945,303516.9884653962,192640.1860008092,304.70639,146.0678274682766,314825.2256770311,149941.74838497463,3091.30276,1395.4587613610922,3199370.8207957204,1427601.34712585,1281.10503,560.2387698817306,1323729.678619191,570588.0006830181,2095.18268,868.4688664094278,2155835.046807088,879901.4369416543,0.37979,100000,0,473548,4947.624122367101,0,0.0,0,0.0,24834,258.90170511534603,0,0.0,28247,291.520394516884,1922073,0,68984,0,0,0,0,0,48,0.5015045135406219,0,0.0,1,0.0104480106987629,0,0.0,0.068,0.1790463150688538,0.3126470588235294,0.02126,0.3291777559882336,0.6708222440117664,25.112546657685453,4.454631462237895,0.3305831614475905,0.2180761297581099,0.2212638289893118,0.2300768798049878,11.235531656103602,5.698935720168056,22.468701506017958,12668.891467740044,60.048651895492895,13.74476319305052,19.684450452956263,13.196703068459644,13.42273518102646,0.5582223888993062,0.7790197764402408,0.7073170731707317,0.5796610169491525,0.1140994295028524,0.7224334600760456,0.9207650273224044,0.8470588235294118,0.7745454545454545,0.1606425702811245,0.5044798407167745,0.7139272271016311,0.6629297458893871,0.5204419889502763,0.1022494887525562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022998753812018,0.0045939943411725,0.0067712986274669,0.0089334715531434,0.0113250167891084,0.0134176905678831,0.0155963115590191,0.0177601209199722,0.0200977785050934,0.0219439267648323,0.0243454718857998,0.0263741681045107,0.0285026589452679,0.030695201491999,0.0327357916137754,0.0345747430674745,0.0363487574712286,0.0382911162534892,0.0405596440896428,0.0425183888645787,0.0567269233580834,0.0703542833219948,0.0840379329878522,0.0963352437036647,0.107943166726395,0.1233334390628138,0.1363583343053773,0.1480331042699402,0.1601742230952355,0.170878614451375,0.1837424270141721,0.1961882923030329,0.2092317729571032,0.2207059441018239,0.2315374969751633,0.2415144470275655,0.2524316245036362,0.2625044980208708,0.2713502842166173,0.2795072301157505,0.2874112285734114,0.2950599239988307,0.3021199531266645,0.3088215907865249,0.3152934317916828,0.3217548698500259,0.3274757985841859,0.3322617943407494,0.337625067866284,0.3420497958108286,0.3425403225806451,0.3428343795931263,0.342984503754535,0.3437026562973437,0.3435489132046377,0.3433387279000885,0.3427566296991591,0.343653959327797,0.3443139257745999,0.3449689795336233,0.3461603312288064,0.3470723124975289,0.3473988560414004,0.3465470852017937,0.3478721355671095,0.3491664703881081,0.3501344470507466,0.3538267716535433,0.3570447582491108,0.3590762748916888,0.3602914389799636,0.3613837746060381,0.3596730245231607,0.361715207869054,0.3657447010740424,0.3708418397982466,0.3757763975155279,0.376981675931645,0.3800614353532532,0.3761252446183953,0.0,2.1016833532510915,58.05680655563304,200.0468416482549,307.5041219433128,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95667,42641,401.4864059707109,6858,70.58860422089121,5414,55.98586764506047,2147,22.066125205138658,77.31725194233033,79.72731933490866,63.30264576078415,65.08566619964722,77.05268028043383,79.46186370685407,63.2062126873328,64.99153115684362,0.2645716618964968,265.4556280545819,0.0964330734513509,94.1350428036003,103.0843,72.5314747118403,107753.2482465218,75816.60835172035,294.77343,186.8081478160013,307499.3466921718,194654.9291349864,306.71847,147.31912554549015,317165.65795937995,151295.52994781756,3117.63524,1402.0630580787472,3226543.029466796,1433834.06721391,1320.77901,569.2735245266421,1368390.312228877,582847.245682045,2120.3009,880.5787413986662,2181688.021992955,891023.1165563334,0.37857,100000,0,468565,4897.8749202964445,0,0.0,0,0.0,25097,261.69943658732893,0,0.0,28326,292.56692485392034,1922955,0,69018,0,0,0,0,0,54,0.5644579635611026,0,0.0,0,0.0,0,0.0,0.06858,0.1811554005864173,0.3130650335374745,0.02147,0.3305578684429642,0.6694421315570358,25.32846625210124,4.629248094881201,0.3297007757665312,0.1989287033616549,0.2395640930919837,0.23180642777983,11.189301705588935,5.50892825191338,22.926843599155028,12709.355345438757,60.936394784777086,12.649200065782988,20.003322668029558,14.386306632828616,13.897565418135946,0.5579977835241965,0.7892293407613742,0.6991596638655462,0.5767154973014649,0.1394422310756972,0.718989280245023,0.9237536656891496,0.8588235294117647,0.7437722419928826,0.193050193050193,0.5068159688412853,0.7269021739130435,0.649264705882353,0.530511811023622,0.1255020080321285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024820934685483,0.0048572732342949,0.0074286816119833,0.0095926185613104,0.0120160756982245,0.0141081796882958,0.0161589782302654,0.0181329682902909,0.0204620326983282,0.0226110832214902,0.0246332204780958,0.0271481123738671,0.0290693485130781,0.0310428372596525,0.0330386466444963,0.034877705582916,0.0369552597752622,0.0386935977984319,0.0409609222189853,0.0433336808089231,0.0578494264161982,0.0717008398433409,0.0854416426966764,0.0982607872226255,0.1100749024158666,0.125107148526377,0.1380810868180853,0.1498205518695619,0.1610396827941475,0.1722218050355621,0.1856938206180459,0.1991275923280079,0.2111391633656901,0.222132224168126,0.2329907808214651,0.2438405355381427,0.2535289851029403,0.2640482296306294,0.2728242006283815,0.2803992948233624,0.2885600916210682,0.2959121629522228,0.302678455183515,0.3094153742898919,0.3148537471594016,0.3206146408839779,0.3254154092736129,0.3310345705088239,0.3362554546984863,0.3416085161392447,0.3422210856427581,0.3418515411170864,0.3426496664696445,0.3421170487871827,0.3420167316681056,0.3412895892851657,0.3408135754500039,0.3410354241357761,0.3430046675443245,0.3439849959810663,0.3448295273300433,0.3458067835516681,0.3464149832888403,0.3462452897900592,0.3474529145813689,0.34920759659463,0.3512354152367879,0.3531582100848286,0.3545384018619084,0.3565248594553646,0.3586817015034836,0.3616600790513834,0.3641149235745544,0.3697020884520884,0.3692045131316962,0.3755952380952381,0.3787714683583475,0.3856382978723404,0.3892231947483588,0.3780674846625766,0.0,2.3609168583331384,57.4686675107525,207.9101501352077,310.4980343819257,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95849,42937,404.8242548174733,6849,70.16244300931673,5316,54.80495362497261,2080,21.241744827802066,77.4717338221379,79.75675141475966,63.40399372213196,65.09000007330788,77.22041070688009,79.5085647273906,63.31189916850699,65.00203197603332,0.2513231152578186,248.1866873690564,0.0920945536249675,87.96809727455468,104.40826,73.45666925689353,108929.94188776096,76637.90885339808,293.03284,186.1741769228793,305079.87563772185,193594.34167199337,309.30172,149.166938810578,318635.69781635696,152534.89020706376,3059.40508,1383.3462150512496,3158029.9429310686,1409466.601971872,1269.8053,555.1312220096717,1307167.2004924412,561687.5995620008,2045.60716,842.7304539368669,2092645.3484126076,845499.7213436685,0.38204,100000,0,474583,4951.360994898225,0,0.0,0,0.0,24971,259.8357833675886,0,0.0,28639,294.6822606391303,1921510,0,68877,0,0,0,0,0,50,0.5216538513703847,0,0.0,0,0.0,0,0.0,0.06849,0.1792744215265417,0.3036939699226164,0.0208,0.3239749826268241,0.6760250173731758,24.972184128496764,4.478734172406271,0.3357787810383747,0.2135063957863054,0.223288186606471,0.2274266365688487,11.22467613658614,5.789477279121455,21.860380983869156,12749.427796670972,59.66341800197753,13.3073102188122,20.153736365794607,13.091009677111831,13.111361740258886,0.5562452972159518,0.7524229074889868,0.7103641456582633,0.573715248525695,0.1273779983457403,0.7211895910780669,0.8814016172506739,0.8879120879120879,0.7101449275362319,0.176954732510288,0.5003777386048854,0.6897905759162304,0.649624060150376,0.5323819978046103,0.1149068322981366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023079259034315,0.0046094153640425,0.0068547324017927,0.009064149411287,0.0112795707666043,0.0136640654410044,0.0157586993725042,0.0179418394720468,0.020239772889733,0.0223349423218522,0.0243447802619854,0.026388119705454,0.028486311572243,0.0305175429570943,0.0326873518194,0.0345935005524633,0.0363899663822084,0.0385017981324296,0.040308177929144,0.042250736265909,0.0569736403069736,0.0708640839622838,0.084266895821762,0.0967406380027739,0.1094059614654918,0.1242150001057239,0.1367419864488012,0.1501654202525451,0.1622628617792439,0.1730701218531974,0.1860547694625275,0.1988458296409968,0.2108429156215729,0.2220900019651084,0.2324697716814742,0.2436659886805801,0.2544249512670565,0.2640011676996317,0.2731555404563728,0.2810677946724591,0.2892211766064315,0.297099927673176,0.3036464975674271,0.3098441629890089,0.3161298149833181,0.322398788788912,0.3282520960103957,0.3341927781235314,0.3396414213880379,0.3448797956657977,0.344705218162755,0.344922169649592,0.3454024522127498,0.3463404800645078,0.3459083166703695,0.3441892407478061,0.3433730190018134,0.3446809902220478,0.3452850727990202,0.3459747645281678,0.3473082953781826,0.3483745277078086,0.3492215868775825,0.3504888314811928,0.3520405722214248,0.3550077841203944,0.3554800339847069,0.3579483334895199,0.3594455638157438,0.3620459191696807,0.3653802854955644,0.366814533164343,0.3681097407500629,0.3692260630162129,0.3689707557918724,0.3728914941978705,0.3708913010243082,0.3734381297863764,0.3746586564718733,0.3712871287128713,0.0,2.5145817514432327,58.81958011074471,195.7073221806069,302.73153588326903,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95734,42599,400.5995779973677,6696,68.72166628366098,5188,53.55464098439426,2078,21.298598199176887,77.34438518034166,79.6963592461727,63.33412346583962,65.07199600372242,77.09134738285849,79.44574836090904,63.24168671205909,64.98332438473912,0.2530377974831737,250.6108852636686,0.0924367537805253,88.67161898329812,104.0237,73.19664348874691,108658.86727808302,76458.12719488052,292.01698,185.6518582199956,304293.2187101761,193188.36382058164,302.96531,145.8868530703362,312312.02080765454,149178.89268816353,2986.96952,1348.50384001689,3085225.1446716944,1373747.8429992383,1247.7368,544.2082048686146,1284501.5459502372,549692.8372738716,2042.45202,840.3226881537107,2094972.5071552424,844904.0506575202,0.38007,100000,0,472835,4939.039421731047,0,0.0,0,0.0,24928,259.67785739653624,0,0.0,28114,289.5418555581089,1919313,0,68960,0,0,0,0,0,44,0.438715607830029,0,0.0,0,0.0,0,0.0,0.06696,0.1761780724603362,0.3103345280764635,0.02078,0.318575280261104,0.681424719738896,25.23870720280453,4.507292795040327,0.3276792598303778,0.2180030840400925,0.2201233616037008,0.2341942945258288,11.404200471241229,5.848853133348087,21.833503848867263,12653.536503399466,58.50169789857724,13.326687264139482,19.344653572231785,12.669161561597596,13.16119550060838,0.5522359290670779,0.7648099027409372,0.7070588235294117,0.5779334500875657,0.1135802469135802,0.7283582089552239,0.910025706940874,0.8700440528634361,0.7470817120622568,0.1458333333333333,0.4909043659043659,0.6886792452830188,0.6476725521669342,0.5288135593220339,0.1056410256410256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0046231991321363,0.0067675199626619,0.0091709576185978,0.0115297801817923,0.0140075127502977,0.0162145084690487,0.0184295117097811,0.0209255039797284,0.0230328455950066,0.0252379830107284,0.0274969464943702,0.0294888799777908,0.0315142277469386,0.0335272757283155,0.0355596432668161,0.0372954340782759,0.0392325641690433,0.0412916502109792,0.043373644573607,0.0580460610110036,0.0718329757731149,0.0845832721475172,0.0971595629449685,0.1092657619183195,0.1245083111280294,0.1362937352183181,0.1490260327457259,0.1598726998942725,0.1704098369442866,0.1827429198824555,0.1953791738326248,0.2078450131547476,0.2187185764875617,0.2288158893202388,0.2400278986349596,0.2508564987891841,0.2608138200958229,0.2706314810192644,0.2785220298616836,0.2869850891297558,0.2946558098179606,0.3019584639962132,0.3086942442160308,0.3146244867215783,0.3208131344903724,0.3260776942355889,0.3316978054189075,0.3365828364013482,0.3408751700545495,0.3415534215949036,0.3419785360484315,0.3417259598450158,0.3414517807585568,0.3418133698108719,0.3409007240152166,0.3406732874321794,0.3413158889564602,0.3425472956792446,0.3436298957830571,0.3441700883064289,0.343859996045086,0.345093761798884,0.3456839934548226,0.3464034939555534,0.348158988162124,0.3490253244154804,0.3510782734994159,0.3536813167447926,0.3577164316247853,0.3593850096092248,0.3634177621032382,0.3653906991458399,0.3662313999392651,0.3695652173913043,0.3726420690473366,0.3778872805666769,0.3823103947096508,0.3887339654210819,0.3954491957630443,0.0,2.317497610609451,58.91539126884001,189.90573713046544,294.813238014041,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95667,42924,404.1519019097494,6916,70.96490952993194,5425,56.079943972320656,2275,23.372740861530097,77.28108161739658,79.66794406284994,63.29287913429015,65.05563785774673,77.00024153640852,79.38782593056244,63.18991525507733,64.95565029415852,0.2808400809880567,280.11813228749816,0.1029638792128224,99.9875635882148,104.16054,73.33449838848311,108878.00390939404,76655.78662494186,293.60405,185.8036126405084,306146.8008822269,193468.21104089907,302.85924,145.93360790970507,312718.24139985576,149596.68821733352,3153.24568,1420.3766116150946,3260288.0826199213,1449458.5691723928,1318.44609,578.8196952945036,1362106.0449266727,589557.0323845883,2244.57022,934.8284799678768,2307739.993937304,944681.145671252,0.38251,100000,0,473457,4949.000177699729,0,0.0,0,0.0,24985,260.4659914076954,0,0.0,28028,289.13836537154924,1915182,0,68749,0,0,0,0,0,56,0.5749108888122341,0,0.0,0,0.0,0,0.0,0.06916,0.1808057305691354,0.3289473684210526,0.02275,0.3229881900576765,0.6770118099423236,25.28646657641783,4.622646925597249,0.3198156682027649,0.2070046082949308,0.2305990783410138,0.2425806451612903,10.94695095539826,5.300905168232533,24.208427372182715,12853.14072437721,61.16417765927826,13.256466487469996,19.45732371676449,13.836381847451005,14.61400560759276,0.5332718894009216,0.7533392698130009,0.6760806916426513,0.5787370103916867,0.1139817629179331,0.6997776130467013,0.9283819628647216,0.86810551558753,0.76171875,0.1237458193979933,0.4781648675171737,0.6648793565683646,0.6153262518968133,0.5316582914572864,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021526617028,0.0048560914040085,0.00699229730964,0.0091434609015452,0.0113906799829139,0.0139912834507759,0.0162632298060648,0.0185302405357945,0.0204651162790697,0.0224874359000603,0.0246895858752601,0.0270339644338576,0.0289284245166598,0.0308890651884974,0.0333563828140319,0.0357327488161459,0.0377774785319922,0.0398131811105345,0.0417126094825972,0.0436617956682162,0.0582655118735438,0.072,0.0855376411806692,0.0984427609427609,0.111384258282338,0.1264573326844544,0.1403989257242338,0.151915047716428,0.1633645899045195,0.1749009417247415,0.1882449384633638,0.2020115534264688,0.2140780029841968,0.225291031945068,0.2358846086036671,0.2461401952085181,0.2569553893788494,0.2668289000799901,0.2751017253529131,0.2841592108281716,0.2917468190140682,0.299124462312029,0.3064531435349941,0.3135902734393772,0.3193232304789726,0.3249132683926565,0.3300817493354732,0.3361825906127604,0.3411065089525689,0.3461660665113323,0.3459719482204145,0.3467434537620152,0.3467099021537503,0.3465297645845738,0.3473000224064531,0.3463260752481342,0.3455553966210524,0.3455676157170664,0.3459325788669266,0.3467807003388736,0.3480939908421112,0.349107356340161,0.3492345428402267,0.3496951907879883,0.3499210686095932,0.3510752829346427,0.3515418248763088,0.3552853014955704,0.3573749646792879,0.3611986752324329,0.3619348343401061,0.3639859019545017,0.366681469263465,0.3666031261913839,0.3651467950533371,0.3686071176054678,0.3692236598890943,0.3664230613073487,0.3602179836512261,0.3593023255813953,0.0,2.3450808427316536,59.45379960137208,202.26452487253096,312.9294745036838,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95722,42789,404.2644324188797,6866,70.55849230062056,5326,55.02392344497608,2133,21.83406113537118,77.3612597271838,79.72636183510456,63.34108899169471,65.08899916842387,77.09549265454542,79.46375835731294,63.24277494947773,64.99467350417757,0.2657670726383827,262.60347779161464,0.0983140422169839,94.3256642462984,104.95496,73.74715388585528,109645.59871293957,77043.05581355935,294.46137,187.15360000761152,307005.5995486931,194902.03924658024,304.69522,146.79627955877132,314678.70499989553,150466.07780164774,3087.74108,1394.024040389152,3191572.0106140696,1422405.8970064623,1319.11517,566.3325789000834,1361315.5805353,574995.0934034544,2112.6221,883.6501408772032,2165204.592465682,886769.776200838,0.38022,100000,0,477068,4983.890850588162,0,0.0,0,0.0,25031,260.8386786736592,0,0.0,28159,290.5915045653037,1916559,0,68789,0,0,0,0,0,58,0.605921313804559,0,0.0,0,0.0,0,0.0,0.06866,0.1805796644048182,0.3106612292455578,0.02133,0.3262430939226519,0.6737569060773481,25.03338387264555,4.518797388784809,0.3379647014645137,0.2001502065339842,0.2215546376267367,0.2403304543747653,11.10660631460444,5.5300103745192,22.73886627074503,12666.403883978408,59.90032528470139,12.432790916969662,20.37938662763483,13.13986594492476,13.948281795172145,0.5418700713481036,0.7392120075046904,0.6988888888888889,0.5796610169491525,0.121875,0.6887218045112782,0.8978978978978979,0.8259911894273128,0.7323943661971831,0.1312741312741312,0.492992992992993,0.6671214188267395,0.6560178306092125,0.53125,0.1194906953966699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0044914429394111,0.0066570599338353,0.0088793164755006,0.0110241025119495,0.0133194843282214,0.015479371035833,0.0173890845969265,0.0195180304068215,0.021590909090909,0.0236125208903653,0.0258306372926616,0.0278511997202538,0.0298850337893522,0.031845293377087,0.0340022123665084,0.0359336005053486,0.0380213143503481,0.0398040989487475,0.0418841621604726,0.0573967339097022,0.0711534435838392,0.0842957694768753,0.0969370051417936,0.109713936378776,0.125507399577167,0.1377065173591228,0.1495376823468074,0.1612658606399795,0.1724174893612459,0.1858945373899188,0.1983277989897569,0.2094643808364225,0.2203614023197087,0.2306271439880376,0.2411621472053126,0.2514077989272851,0.2617021993953629,0.2707645904910932,0.2798342130271006,0.2874971084894749,0.2947818768410716,0.301818482980561,0.308323451555332,0.3147620145351306,0.321079577620794,0.3271831795794895,0.3325914998601114,0.3374990287238726,0.3422807272343178,0.3425694051754315,0.3425405249336615,0.3427489192728501,0.3434997542713423,0.3435943192802438,0.3432014349885783,0.342234047607735,0.3429547171050471,0.3436869981206219,0.3446488264421444,0.3454371446264707,0.3463392378949874,0.3484931276533143,0.3485650224215246,0.3495897683397683,0.3502989301447451,0.3501951107540457,0.3521376731214147,0.3533839901042587,0.3557634640758066,0.3579953358635511,0.3590643274853801,0.3610761088709677,0.3618075135258706,0.3642166525861259,0.3664890467732386,0.3712318286151492,0.3700243704305442,0.3774964838255977,0.3827809215844786,0.0,2.352945147715676,58.45954005005192,197.0062282941218,306.66901489981245,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95662,42468,400.1797997114842,6795,69.92327151847128,5254,54.45213355355313,2135,22.035918128410444,77.2430810454354,79.64937003612671,63.27207635196621,65.05078513258695,76.98248369613084,79.38411783610849,63.176596937845495,64.95546625319314,0.260597349304561,265.25220001822447,0.0954794141207173,95.31887939381534,102.63044,72.2811768864646,107284.43896217934,75558.92296467208,288.81562,183.0160231986233,301447.5653864648,190857.5957242538,299.10243,143.5164078988077,309453.61794652004,147637.72104881966,3042.52108,1373.4138102689249,3154746.7960109552,1410698.9861363464,1306.20522,567.9372310514356,1353595.51336999,582138.9304956855,2105.63028,877.8453499888503,2174954.192887458,896747.4388399747,0.37951,100000,0,466502,4876.565407371788,0,0.0,0,0.0,24629,256.9672388200121,0,0.0,27742,286.75963287407745,1924527,0,69026,0,0,0,0,0,48,0.5017666367000481,0,0.0,0,0.0,0,0.0,0.06795,0.1790466654370109,0.3142016188373804,0.02135,0.3230769230769231,0.676923076923077,25.266237043170925,4.461306729040497,0.324514655500571,0.2131709173962695,0.2209744956223829,0.2413399314807765,11.1281022288389,5.720308776141205,22.76939835353206,12684.565985825597,59.388340989760266,13.043092688876095,19.45345561080375,12.848829301168298,14.04296338891211,0.5515797487628473,0.7616071428571428,0.7120234604105572,0.5925925925925926,0.112776025236593,0.6960556844547564,0.9121813031161472,0.8505747126436781,0.7130801687763713,0.1455223880597015,0.5044180762433729,0.6923076923076923,0.6645669291338583,0.5616883116883117,0.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024525701313442,0.004584829488974,0.0065683278681867,0.008951523587925,0.0112802986380234,0.0133509852843831,0.0154983431047667,0.0176237542885149,0.0201345713350785,0.0222622729227681,0.0241408661586897,0.0263819998562288,0.028291117761392,0.0302053178666721,0.032327986622902,0.0341019542963499,0.0362869810226236,0.0384547520939935,0.0405242354899105,0.0427852086612941,0.0573587192777127,0.0710058551811544,0.0839982362575064,0.0962991811043513,0.1089047242016363,0.1238526768227484,0.1364466918794883,0.1482377774461099,0.1599597693155433,0.1706368811083664,0.1842284160435078,0.1974632771423925,0.2100551114209162,0.2203898379325449,0.2307192135599197,0.2422480835154594,0.2516239392685844,0.2612851233614733,0.2710346238661422,0.2796748153923772,0.2879130303767834,0.2954388430235962,0.3026911141117665,0.3098997072796199,0.3162146707060383,0.3224930241746302,0.3286228385850961,0.3335586993404855,0.3389702826267664,0.3428840017477194,0.3436010960679238,0.3438917771005419,0.3434409088340021,0.3430332028418152,0.3434674941074678,0.3429318164347759,0.3424546451910387,0.3434918122000692,0.3445218166849615,0.3458867856822463,0.3466928198261066,0.3473369835739173,0.3475869336143308,0.3470012377630246,0.3474957657875635,0.3487711173096153,0.3493784789317336,0.3535908095585668,0.3571023532747377,0.3599034787854414,0.3616352201257861,0.3641991924629879,0.3657587548638132,0.3679623631035014,0.3677962856595826,0.3694321046944411,0.3793481667188969,0.3805877483443708,0.3861165319208252,0.3794573643410853,0.0,1.8246797283024931,57.3227152121681,199.7828512314065,303.0363736694188,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95828,42822,402.7841549442752,6862,70.56392703593939,5360,55.45352089159744,2193,22.62386776307551,77.44904619750217,79.77570226852549,63.38601454967061,65.10708005489806,77.18028874638003,79.50483345202493,63.28722167769293,65.01001385421007,0.2687574511221413,270.8688165005668,0.0987928719776789,97.06620068799054,103.66202,72.97934932003261,108175.0845264432,76156.60278836312,294.57548,187.1354556886853,306921.1190883666,194803.54978574667,305.93452,147.2807346688774,316134.07354844094,151367.0583480411,3078.6114,1392.782883638537,3184003.0471261013,1424995.6675596167,1295.79084,565.3858236237397,1340430.239595943,578307.1746973128,2162.97344,896.5754789534977,2231436.5321200485,911719.727278943,0.38152,100000,0,471191,4917.04929665651,0,0.0,0,0.0,25093,261.3641106983345,0,0.0,28404,293.43198230162375,1926072,0,69048,0,0,0,0,0,53,0.5322035313269607,0,0.0,0,0.0,0,0.0,0.06862,0.1798595093310966,0.3195861264937336,0.02193,0.3193768257059396,0.6806231742940604,25.23369960208484,4.54135260822788,0.3220149253731343,0.2132462686567164,0.2270522388059701,0.2376865671641791,10.933907375045631,5.458986509946791,23.180947884083267,12737.958447277051,60.25082229618629,13.430888016932702,19.560968253936228,13.468827568574314,13.790138456743035,0.5479477611940299,0.7769028871391076,0.6929316338354577,0.5875102711585867,0.108320251177394,0.6996363636363636,0.916243654822335,0.852803738317757,0.6946308724832215,0.1137254901960784,0.4956085319949811,0.7036048064085447,0.6402157164869029,0.5527747551686616,0.1069676153091266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786425366861,0.0045411695538909,0.0065548486601118,0.0088174642679371,0.0109317957635478,0.0133179925264476,0.0154359063242355,0.01778952632707,0.0200408788962698,0.0222038043200212,0.024460726546088,0.0265188834154351,0.0285775963979892,0.0305788357391429,0.032776402640264,0.034951235639309,0.0369703367902461,0.0390916632102861,0.0412787798188014,0.0432560173232281,0.05687520211978,0.070890099434343,0.084999790382761,0.0979648444477132,0.1097787144362486,0.1252972321739957,0.1388941889800504,0.1507997277522545,0.1627316469471146,0.1740201327907475,0.1878891505629577,0.2007238156970777,0.2121011432355847,0.2227824340841627,0.2330976482729848,0.2437794997070755,0.2543800051234643,0.2638142166051205,0.2732819415673356,0.2815831267209762,0.2886893080599358,0.2962331964152352,0.3031444016902339,0.3094443846622906,0.3157129177323362,0.3218773823869365,0.3276802316149401,0.3320643139046458,0.3368078428333398,0.3412650364560027,0.3416013107004727,0.3417641566430494,0.3424780751068136,0.3432667897530579,0.3436018255097202,0.3430634646799285,0.3423625126135217,0.3443100065402223,0.3452393101336871,0.346603840682788,0.3481217193133207,0.3489256100683434,0.3510976374660255,0.3513598069230597,0.3511487071037201,0.3529029575341754,0.3535054510261592,0.3548772062056403,0.3553655017069651,0.3574147501982553,0.3596403140405331,0.3628177119411733,0.3644416323948117,0.3670537897310513,0.368994598692315,0.3742557751845677,0.3753661168490828,0.3813838550247116,0.3809258226436141,0.3837879369957741,0.0,1.8584890881525264,60.90700217743679,198.14549950868408,301.5183618326587,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95815,42472,400.4800918436571,6845,70.31258153733758,5377,55.617596409747954,2153,22.16771904190367,77.3497797498425,79.68346368192735,63.33168066437421,65.06024415020188,77.08804593360489,79.4204365830484,63.235340840959,64.96547822349994,0.2617338162376086,263.0270988789505,0.0963398234152137,94.76592670193897,103.4484,72.78303299403771,107966.8110421124,75962.04455882452,291.54031,184.9507001466564,303782.7062568491,192537.4838455945,306.63169,147.41280588141845,316793.47701299377,151342.07378630392,3088.22328,1398.525772101807,3197267.5259614885,1433767.5438102658,1294.2957,562.0028033501883,1337997.5577936647,573719.6298598218,2121.17206,884.4337032210408,2186527.9340395555,900102.9544062064,0.37772,100000,0,470220,4907.5823200960185,0,0.0,0,0.0,24763,257.9241246151438,0,0.0,28428,293.5239785002348,1923003,0,69014,0,0,0,0,0,51,0.5218389604967907,0,0.0,0,0.0,0,0.0,0.06845,0.1812188923011754,0.314536157779401,0.02153,0.3204681621847569,0.6795318378152432,24.975940192282952,4.528653550207909,0.3310396131671936,0.2042030872233587,0.232843593081644,0.2319137065278036,11.048238913168362,5.523047420503975,22.92405582881633,12611.460917008624,60.68951751691975,13.082749110826091,19.998152621869384,13.946232684523396,13.66238309970088,0.5441696113074205,0.7723132969034608,0.6803370786516854,0.5814696485623003,0.111467522052927,0.7061781609195402,0.9124668435013262,0.8512035010940919,0.6976744186046512,0.1556420233463035,0.4875784190715182,0.6990291262135923,0.6213151927437641,0.544689800210305,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021577486476082,0.0044916706378577,0.0066373028599265,0.0087779008219122,0.0108127352253077,0.0130034112316073,0.0152324632952691,0.0173534906035952,0.0195529298731563,0.0216276522789383,0.0237004233682894,0.0257405410955387,0.0278134800267338,0.0296455711843812,0.0316883974253177,0.0338089874869548,0.0359087427281949,0.0378387909842442,0.0399393221536479,0.0419993961415527,0.0561258554498414,0.0698683563892635,0.082923710605473,0.0961413169122128,0.1082770323682241,0.1233135969549587,0.1358824777259228,0.1480295016017283,0.1598291054739652,0.1704617364723548,0.1838487231979312,0.1965694497051025,0.2083859038503371,0.2194106202041842,0.2295033276497442,0.2411576987855686,0.2513028825229608,0.2610710549700235,0.2699666371621161,0.2786729423620893,0.2868018836270233,0.2943281487545316,0.3013585155732273,0.3077770856294025,0.3137326338288157,0.3195845807000037,0.325249518473122,0.3301605883999695,0.3362335728620444,0.3407137481680992,0.3405325244354567,0.3417250317101417,0.3414486126400767,0.3412303721854112,0.3413802347054268,0.3406502317870629,0.3410269832960548,0.3425648784659408,0.3434471422211568,0.3433381088825215,0.3441868330076657,0.345706184442726,0.3465544030571537,0.3484855273770051,0.3486662971976579,0.3508143577945675,0.3515558093063088,0.3553459119496855,0.356622539749247,0.357764073371284,0.3605751729159082,0.3613614675007952,0.3619372355875481,0.3639849681724058,0.3676609401548046,0.3686265231278836,0.3681630151677647,0.3778764634638676,0.3850999726102437,0.3880712625871417,0.0,1.9442479832189463,61.777791261939406,197.2406113760676,304.7701693328797,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95799,42958,403.65765822190207,6998,71.83791062537186,5470,56.51415985553085,2216,22.76641718598315,77.41775944651599,79.74481303568449,63.37436231324406,65.09463094666036,77.15221230513986,79.47820419026671,63.27860970815281,65.00029818988266,0.2655471413761319,266.6088454177782,0.0957526050912562,94.33275677770324,104.66324,73.62590875241364,109252.95671144791,76854.5692047032,295.41014,187.47053464331907,307789.41325066023,195116.41524788263,311.11244,150.25055979686172,320458.282445537,153552.38573991143,3168.89372,1424.3311627206674,3277529.7445693584,1456722.8305415004,1337.52087,582.145486082331,1383684.8088184637,595295.9653685448,2183.02856,895.1152971652172,2246596.624181881,910423.3603695156,0.38255,100000,0,475742,4966.043486883997,0,0.0,0,0.0,25126,261.6833161097715,0,0.0,28807,296.34964874372383,1918895,0,68823,0,0,0,0,0,55,0.5741187277528993,0,0.0,0,0.0,0,0.0,0.06998,0.1829303359038034,0.3166619034009717,0.02216,0.3398416166029492,0.6601583833970508,25.134962806657107,4.532109843578676,0.3345521023765996,0.19981718464351,0.2303473491773309,0.2352833638025594,11.276896664687188,5.732649141668472,23.45938208457731,12824.337902722242,61.32528238005329,12.813737350798478,20.521133613489035,13.918624124048234,14.071787291717554,0.5455210237659963,0.7813357731015553,0.6994535519125683,0.5555555555555556,0.1165501165501165,0.7209821428571429,0.9501385041551248,0.8658008658008658,0.7007299270072993,0.1376518218623481,0.4883664566165778,0.6980874316939891,0.6432748538011696,0.5152129817444219,0.1115384615384615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099069451898,0.0047236272591811,0.0070014510253574,0.0093640186061627,0.011958024892215,0.0142208558980414,0.0161859137702578,0.0183106066791867,0.0205339438663913,0.0228026364269046,0.025020500205002,0.0272126301094253,0.0292654345099812,0.0315437278015133,0.0336347607312621,0.0358087172071885,0.0378664790073373,0.0399340652505209,0.0419891339351568,0.0439847588906471,0.0591457307403388,0.0731227982145283,0.0872062553717795,0.0998687043747702,0.1119700065294774,0.1276633954132026,0.1402999618692539,0.1522737419478283,0.1639515655838267,0.1748197817028888,0.1886828974535443,0.2018083026368379,0.2133783549031529,0.2244057952026901,0.2349361192586977,0.2460289367727091,0.256027285798678,0.2660333075048569,0.2748020704731054,0.2826333062699402,0.2903777290054291,0.2976266912597331,0.3043226712951483,0.310431473903367,0.3169157608695652,0.3226449699043586,0.3281853281853282,0.3332782719186785,0.338566588210951,0.3437569977738846,0.344304375873562,0.3446701415152723,0.3453524061611241,0.3455173011380047,0.3448332219003046,0.344983987373776,0.3441195560973293,0.3446476052916653,0.3463028379323879,0.347824535103687,0.3475098873498153,0.3490244046797009,0.3489862600536193,0.34993970791836,0.3504757316632542,0.3514169406607171,0.3532079993153225,0.3550254893322424,0.3574087078651685,0.360338189179534,0.3625370750627424,0.3626724918749001,0.3619686234817814,0.3623940758836552,0.3656015928700104,0.3677527551509343,0.3718389010302841,0.3718788374948833,0.3685510428100988,0.3755795981452859,0.0,2.281327504991894,59.034669670882046,202.94563692763137,316.44902595746544,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95718,42848,404.4066946655801,6821,70.05996782214422,5359,55.370985603543744,2169,22.284209866482797,77.3893283971574,79.75028112706747,63.35181630130408,65.09381713142034,77.12569919829988,79.48829565457721,63.25665356254908,65.00203521766744,0.2636291988575152,261.9854724902524,0.0951627387549933,91.78191375289656,103.9082,73.07226267264527,108556.59332622914,76341.19253708316,293.55046,186.41375999978465,306056.3843791136,194126.86224094173,307.00551,147.05791193577326,317053.29196180444,150763.88813818817,3079.24468,1384.1151759750858,3182429.0937963603,1411466.9925981353,1299.11096,566.5476492282392,1338416.8181533257,573084.6941430565,2127.6594,870.8075838432319,2187318.456298711,878492.6991818318,0.38181,100000,0,472310,4934.390605737688,0,0.0,0,0.0,25025,260.7868948369168,0,0.0,28422,293.2363818717482,1921954,0,68953,0,0,0,0,0,57,0.5954992791324516,0,0.0,0,0.0,0,0.0,0.06821,0.1786490662895157,0.3179885647265796,0.02169,0.3264767199444058,0.6735232800555941,25.061581453043768,4.635006174984604,0.335137152453816,0.2022765441313677,0.2317596566523605,0.2308266467624556,11.60517037726382,6.004267708165096,22.85609588813836,12770.850348756325,60.35739089733555,12.836984263135855,20.146437370976138,13.937142651530827,13.436826611692732,0.5594327299869378,0.783210332103321,0.7026726057906458,0.6014492753623188,0.1131770412287793,0.7305071915215746,0.93368700265252,0.8735083532219571,0.7301038062283737,0.1525423728813559,0.5034670629024269,0.7029702970297029,0.6506899055918663,0.5624344176285414,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078855950656,0.0042567423758703,0.006573141413834,0.0088035498512433,0.0108271318775161,0.0132117338110457,0.0155103538235773,0.0175710699781637,0.0197921669204123,0.021999611169663,0.0239883593437785,0.026162701221952,0.0281240045623156,0.0304069007401002,0.0323515459026875,0.0343501984126984,0.0364522941858539,0.0385560914890306,0.040433228005987,0.042303845993583,0.0568567460607516,0.0704726428025824,0.0841173447447636,0.0977635715562471,0.1101600219265881,0.1257402707275803,0.13882789710952,0.1506680151168361,0.1623703355518284,0.1734986007312653,0.1866096712715213,0.1990719709260821,0.210604693631314,0.2226401067063171,0.2333832038899034,0.244705830232146,0.2551697970024663,0.2648583606041181,0.274916896406975,0.2829214100831482,0.2899988437969708,0.2979827493513475,0.3051664834580334,0.3119665792844232,0.3176666181253337,0.3236210101308517,0.3291639565717716,0.3345959756454094,0.3396966324127041,0.3443061671105017,0.3444734224181969,0.3448090962836677,0.3446869550542836,0.3454230185680225,0.3459899321384553,0.3453318851443345,0.3441900156450007,0.3454292267365662,0.3463552772991692,0.3470494816295212,0.3471720029226071,0.3478071736465377,0.3499066440094824,0.3511243504748253,0.3526308181555362,0.3531143355823586,0.354881003277754,0.3565149136577708,0.3576888016268144,0.3606518377542524,0.3626403725006847,0.3640104751215862,0.3662882871456655,0.366714972160781,0.3697931425332955,0.3756525866160418,0.3801285976729945,0.3755052546483428,0.3742279618192027,0.3768059351815697,0.0,2.3969169050210724,58.07814359870584,204.91914859470916,303.5420445666688,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95674,42966,405.27206973681456,6870,70.55208311557999,5351,55.36509396492254,2139,21.95998912975312,77.35982293729873,79.73697958821252,63.33991942654043,65.09047062659633,77.10538430243997,79.48256710264644,63.24718585010974,65.00049711842244,0.2544386348587579,254.41248556607832,0.092733576430696,89.97350817388394,104.2371,73.31192521603293,108950.2895248448,76626.8006104406,292.38531,185.97670540557135,305034.962476744,193816.1393648572,309.21196,149.05449029952484,319625.43637769925,153007.9912557348,3079.24576,1387.6374500020224,3185862.491376968,1417964.4167804858,1291.66225,557.3512268962554,1336027.060643435,568601.020569864,2101.20788,861.3273851546637,2160110.583857683,868438.7812468809,0.38185,100000,0,473805,4952.285887492944,0,0.0,0,0.0,24922,259.9034220373351,0,0.0,28617,295.72297593912657,1918528,0,68784,0,0,0,0,0,55,0.5539645044630724,0,0.0,0,0.0,0,0.0,0.0687,0.1799135786303522,0.311353711790393,0.02139,0.3284429065743944,0.6715570934256055,25.01704938969093,4.54843373626049,0.3434871986544571,0.2104279573911418,0.2188376004485143,0.2272472435058867,11.30054161671219,5.728691861011034,22.50699878930355,12784.656073674794,60.15320518090135,13.225961833572926,20.762732871447405,12.961037916264493,13.203472559616538,0.5511119416931415,0.7548845470692718,0.690968443960827,0.5892399658411615,0.1143092105263157,0.7303625377643505,0.9041095890410958,0.8966244725738397,0.7290836653386454,0.1239316239316239,0.4921777998510057,0.683311432325887,0.6195014662756598,0.5510869565217391,0.1120162932790224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304289707133,0.0046827013713625,0.0070004565515142,0.0094655806300907,0.011479176834228,0.013344190544048,0.015294633122408,0.0175896828959719,0.0197654701832519,0.0220353547753498,0.024176859876657,0.0263657348037958,0.028480687401073,0.0304771318547805,0.0325838060856111,0.0349125635619496,0.0369062901155327,0.0388209548108736,0.040815053539869,0.0429168447052202,0.0578771416631842,0.0719543479398984,0.085120228386704,0.098126071905809,0.1103669405448734,0.1257565497100774,0.1386993026292046,0.1512259548814519,0.1630303483810277,0.1731743442235865,0.1874097541001271,0.2008316098363851,0.2126666303933837,0.2239877434887283,0.2342681597463086,0.2450240903804618,0.2548262548262548,0.2644304807724733,0.2735539907700332,0.28220886981402,0.2899216021831132,0.2972694848856925,0.3040572510054412,0.3108968985750209,0.3174429888403687,0.3233936768524558,0.3286512290523737,0.3350404107151934,0.3406921704042834,0.3449758619779988,0.3444673040461495,0.3452012596779295,0.3454960412498943,0.3458516293043679,0.3459482733022537,0.3447056121277084,0.3437811812033767,0.3440535077484347,0.3454570361998698,0.3460416331060159,0.3481354913815764,0.3492751901140684,0.3504769107945712,0.3504382720200865,0.3513389736543977,0.3510552265671875,0.3528959288909148,0.3559562016235605,0.3592147773563702,0.3624313350847862,0.362962962962963,0.3637675736355375,0.3662231841619454,0.3698714494650142,0.3695775715097556,0.3627862366622707,0.3635943279901356,0.3712489862124898,0.3823449769834822,0.3890379455730164,0.0,2.186509698801053,58.282464218717216,202.29295667666293,304.41963288863536,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95851,42870,402.2597573316919,6749,69.11769308614412,5314,54.83510865822996,2126,21.7525117108846,77.34109898624328,79.63082879484128,63.34986309044478,65.04375789002867,77.07942325033464,79.37067584808314,63.25360034820464,64.95066319405967,0.2616757359086392,260.15294675814005,0.0962627422401425,93.09469596900044,104.20586,73.38133459963045,108716.5079133238,76557.71416013442,294.07238,187.23911917753003,306215.1359923214,194757.4977595748,307.00112,148.3288440166515,315957.2670081689,151569.46459666186,3070.5796,1396.3349854054868,3171872.468727504,1425156.613290926,1291.50324,563.4311885099507,1334468.2684583364,574880.9386547355,2090.96374,869.634806392505,2143302.8137421627,876713.9131823431,0.38188,100000,0,473663,4941.659450605627,0,0.0,0,0.0,25052,260.73802046927,0,0.0,28435,292.42261426589187,1916911,0,68806,0,0,0,0,0,59,0.605105841357941,0,0.0,1,0.0104328593337576,0,0.0,0.06749,0.1767309102335812,0.3150096310564528,0.02126,0.3355411499436302,0.6644588500563697,24.745474710094115,4.475237926343074,0.329318780579601,0.2149040270982311,0.2265713210387655,0.2292058712834023,11.35424313460319,5.851504476663479,22.52647706207481,12749.40700602365,59.93651554274713,13.524192748919388,19.711620942496086,13.33841615637992,13.362285694951728,0.5545728264960482,0.7845884413309983,0.6925714285714286,0.5872093023255814,0.1083743842364532,0.7236363636363636,0.9293193717277488,0.8755364806866953,0.7453874538745388,0.1171875,0.4955572480324955,0.7118421052631579,0.6261682242990654,0.5412647374062165,0.106029106029106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021669788871449,0.0042253092987202,0.0065524551420543,0.0088330253619509,0.0110788120261012,0.0134739070259708,0.0159336573041148,0.0180260137719969,0.0203766878434416,0.0227400595353785,0.0249828428610937,0.0272709557654636,0.0293232542136129,0.0313496717904397,0.033416109388041,0.035565738819911,0.0376065017784763,0.039723160446756,0.042016196013289,0.0440097799511002,0.0588443851215366,0.0729910224386777,0.0861754724096032,0.0990779054380474,0.1116154170176916,0.1269395299709532,0.1393473884945439,0.1509680711939013,0.1624690514812601,0.17368516950515,0.1869652715747785,0.1988255396461478,0.2103277708322009,0.2208654014343187,0.2314895302648518,0.2421747753537278,0.2527673629708981,0.2623673818390468,0.2717192695742966,0.2797045012026113,0.2880975519459484,0.2956586826347305,0.3028632276384287,0.3086767402010713,0.3154595592701474,0.3211779649520896,0.327090870397957,0.3324934463363111,0.3383561821171049,0.3441523286368858,0.3445367963035308,0.3447877085742607,0.3444297119643411,0.3439302170574086,0.3439628067770344,0.3431365024789329,0.3420405313189342,0.3438364738437212,0.3446818743987907,0.3460328305075603,0.3472342835567302,0.3475257773000517,0.3489633914622302,0.3506305981093338,0.3522114871097733,0.3523100791501223,0.353847920314608,0.3560687773618425,0.3593237090113303,0.3605784595717481,0.3636613776024947,0.3629994116703214,0.3647118687189924,0.3669759950916481,0.3740093573952067,0.3762936221419976,0.3789032157837502,0.3739272578667756,0.3803596127247579,0.3883495145631068,0.0,2.346944506151234,60.33603785194661,193.8862286499323,303.238100611511,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95658,42892,404.20038052227727,6943,71.64063643396265,5348,55.49980137573439,2169,22.371364653243848,77.31769350596971,79.74012879280806,63.289715480586615,65.08125143607965,77.05384131696547,79.47430190044474,63.19401427503492,64.9871977067103,0.2638521890042398,265.8268923633216,0.0957012055516983,94.05372936934953,104.3416,73.39522392803477,109077.75617303308,76726.69711684833,294.01866,186.66289277482096,306918.95084572124,194690.41593066577,309.81095,148.50954077249713,321809.69704572536,153634.2102143703,3071.85028,1391.619266241505,3188644.2534863786,1432153.3343280118,1309.71281,565.6876272365604,1359801.0934788515,582031.0761612467,2131.94806,877.6467461589067,2200929.603378704,893648.9187472427,0.38177,100000,0,474280,4958.079826046959,0,0.0,0,0.0,25058,261.4940726337577,0,0.0,28711,298.0409375065337,1914570,0,68697,0,0,0,0,0,41,0.4286102573752326,0,0.0,0,0.0,0,0.0,0.06943,0.1818634256227571,0.312400979403716,0.02169,0.3215017064846416,0.6784982935153584,24.98356911148396,4.469263026258287,0.3296559461480927,0.2054973821989529,0.2363500373971578,0.2284966342557965,11.319786268134187,5.911732762945675,23.059507447928787,12758.73460776113,60.58073955064851,12.870038090636784,20.122805490250144,14.1333314972819,13.454564472479683,0.5648840688107704,0.7716105550500455,0.7311401020986954,0.5822784810126582,0.1211129296235679,0.7342922028766087,0.927927927927928,0.8846153846153846,0.7659574468085106,0.1302521008403361,0.509312143034517,0.7036553524804178,0.6756756756756757,0.5295315682281059,0.1189024390243902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021679228462598,0.0047053096986168,0.0068832487309644,0.0090956208904562,0.0111204940633044,0.0132844335778321,0.0153938750943627,0.0173683834121721,0.0194242321901896,0.0216281596588695,0.0236308576707899,0.0261680513284527,0.0283595922150139,0.0303689873221856,0.0325047010931333,0.0347899872719558,0.0370043961512939,0.0391810617943098,0.0412321781663024,0.0433522093253657,0.0577397374801438,0.0722264135127205,0.0858445282384698,0.0988024898101045,0.1106922223982258,0.126102750389206,0.1388463827254952,0.1516382085225213,0.1635986351627429,0.1747843924862258,0.1872472146424064,0.2004311979285165,0.2128333859708352,0.2242600764286574,0.2342765216624796,0.2450398695782364,0.2550421811274372,0.264557831555951,0.2737841151627991,0.2827481895682464,0.2905339693419164,0.2980996512906925,0.3049054905490549,0.3109106611649553,0.3169450086969214,0.3223718280683583,0.3277877922988333,0.3331636419171736,0.3375665763862791,0.3424516333650491,0.3432366824005394,0.3436828475398094,0.3438839990972692,0.3429604454407404,0.3436366339577758,0.3430403829630539,0.3416357113375877,0.3428064235112346,0.3440257164352643,0.3448632641775336,0.3451483110320951,0.3455550074000986,0.3461939520333681,0.3477902337917047,0.3488338646659795,0.3515637196232502,0.3515802637562528,0.3554164057608015,0.3577156062887356,0.3589051963506545,0.3600877593929975,0.3622076607532896,0.3630557136533232,0.3683608058608059,0.3652502360717658,0.3687901117185643,0.3657257442542033,0.3687714343352834,0.3631331303625795,0.3601547388781431,0.0,1.539274957481362,58.94768019931495,211.19210283283897,298.11767527614785,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95715,42813,401.9537167633077,6794,69.74873321840882,5252,54.348848142924304,2180,22.410280520294624,77.34880342590687,79.70633838873283,63.338894218876014,65.07705634936818,77.07868119863973,79.43652273044766,63.23929504256179,64.98027394927075,0.2701222272671373,269.81565828516807,0.0995991763142214,96.78240009742468,104.49802,73.54364904177588,109176.22107297707,76836.07484905802,295.4468,187.94269227081344,308177.13002141775,195860.24371395644,303.94675,146.6427840697914,314636.21167006216,150921.58767426354,3044.253,1383.3196193616927,3151802.7895314214,1416512.2074509654,1306.74883,574.0699336215964,1350352.1809538736,584872.4793622697,2152.93694,901.9297219286484,2214901.823120723,911656.3683770868,0.38051,100000,0,474991,4962.55550331714,0,0.0,0,0.0,25217,262.9263960716711,0,0.0,28013,289.72470354698845,1915237,0,68676,0,0,0,0,0,57,0.595517943895941,0,0.0,0,0.0,0,0.0,0.06794,0.1785498410028645,0.3208713570797762,0.0218,0.318105616093881,0.681894383906119,25.22745432957793,4.549705927578692,0.3196877380045697,0.2088728103579588,0.2273419649657273,0.2440974866717441,11.066473966572898,5.530833488664014,23.335375168743816,12771.58143210446,59.3220732067245,12.86006339272459,18.88345955313215,13.295453322213248,14.283096938654516,0.5392231530845393,0.7584320875113947,0.6885050625372245,0.5711892797319933,0.126365054602184,0.6871678056188307,0.927536231884058,0.8436724565756824,0.7406015037593985,0.1584158415841584,0.489707750952986,0.6808510638297872,0.6394984326018809,0.5226293103448276,0.1164453524004085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366439500572,0.0046121720796334,0.0071026330475369,0.0095084265382622,0.0116825280624694,0.0137629154578307,0.0159519708073837,0.0183219352863121,0.0204486229625466,0.0226705150249733,0.0249269717624148,0.0273415850729724,0.0294042050069398,0.0317296902185662,0.0337112264160675,0.0358135545934551,0.0379888383843613,0.0402568971062761,0.0427011852776044,0.0445632241393681,0.05923388612724,0.0736189898059573,0.0869373622914699,0.0989236450869606,0.1110864978902953,0.1276406681406099,0.1406256632284901,0.1532744908062987,0.1640775246805419,0.1752861541102136,0.1889495739477965,0.201891447368421,0.2134450125095181,0.2239759365600218,0.2334202621067573,0.2441521601826099,0.2544766032551021,0.2641124946522258,0.2732361423348547,0.2814372629673339,0.2889326232924288,0.2962057305986826,0.3035042026755061,0.3095674684500054,0.3153803172752229,0.3211231857273108,0.3270555868192334,0.332527883404764,0.3381373145141467,0.3434450013189132,0.3439065783093583,0.3432147381175304,0.3435662412747655,0.3429286789394465,0.3429336905559276,0.3416531156996901,0.3407302836114459,0.3406965468500896,0.3411454769399206,0.3428361919410512,0.3440884391980513,0.3460618638205356,0.3471322218727063,0.3489107046799354,0.3481961994791164,0.3489654091336607,0.3492331463889206,0.3515057768798535,0.3541241107276185,0.3548708545918367,0.35609465284784,0.3578415564871546,0.3628273256930661,0.363840843868766,0.3663091361808083,0.3721184178597427,0.3761467889908257,0.3734509556815795,0.3681209010550328,0.3631662688941925,0.0,2.071475942145773,58.0725235321686,203.9016950890535,291.7543265956384,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95631,42778,403.4988654306658,6656,68.32512469805816,5163,53.34044399828508,2121,21.750269264150745,77.26744378178137,79.68310615956061,63.28338998351626,65.0697850386531,77.00703306035521,79.42549825823033,63.18835113179559,64.97868735826137,0.2604107214261546,257.60790133027456,0.0950388517206661,91.0976803917265,103.90358,73.06927450513874,108649.60107078248,76406.74029254941,292.32385,186.0718103956132,304984.5552174504,193882.6407337419,302.03199,145.25748513619942,312254.9277953802,149097.13149704854,2963.25412,1346.1193023131304,3059526.513369096,1369120.5658375393,1262.80882,556.7343996548169,1299597.93372442,561325.597333852,2094.0206,868.5602273297314,2148066.442889858,871782.8267571803,0.38177,100000,0,472289,4938.618230490113,0,0.0,0,0.0,24860,259.2360217920967,0,0.0,27966,288.8498499440558,1917580,0,68854,0,0,0,0,0,48,0.5019292907111711,0,0.0,1,0.0104568602231493,0,0.0,0.06656,0.1743458103046336,0.3186598557692308,0.02121,0.322700615076527,0.6772993849234731,25.06783622787593,4.554340690923909,0.3164826651171799,0.2138291690877397,0.2359093550261476,0.2337788107689327,11.096131120467469,5.434782424487307,22.540733306033097,12737.79560676213,58.473911802105846,13.058073998960896,18.599058934762507,13.436784333864985,13.379994534517474,0.5489056749951579,0.7771739130434783,0.6921664626682986,0.5681444991789819,0.1267605633802817,0.7168674698795181,0.9268929503916448,0.8481308411214953,0.7222222222222222,0.1578947368421052,0.4907431551499348,0.6976421636615812,0.6368159203980099,0.5242616033755274,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0045325491786655,0.0066703216374269,0.0089322006340947,0.0112208669467644,0.0133111989245121,0.0153761445439158,0.0176928809890861,0.0200820049284757,0.0224984895187965,0.0246141223526998,0.0264412211858487,0.028361863221134,0.0304273011097258,0.0324105613013769,0.0348503018774294,0.0369330833842552,0.0388300135972514,0.040723558292419,0.0428091832266405,0.0572829029190138,0.0714300676595655,0.0852945191812902,0.0981098299373453,0.1102806106289985,0.1261079049081378,0.1385737955646189,0.15132202956316,0.1628710488313633,0.1740358489147594,0.1871056803597812,0.2002534854245881,0.2118197649107531,0.222613719675665,0.2335061703931217,0.2445133772780147,0.2549439757153698,0.2647839783978398,0.273259840374201,0.2807288980574179,0.2882694110973477,0.2961165048543689,0.3040724517580206,0.3104606525911708,0.3165574348560936,0.3225070029739502,0.3280035059162336,0.3337363658347227,0.3391859847355941,0.3442191795305561,0.344100384537543,0.3441251464406312,0.3438337990797979,0.3434960821517026,0.3429827830364463,0.3426126499823324,0.3418761320664781,0.342262443438914,0.3436076577964999,0.3447016488533219,0.3458804948670703,0.3467777203514491,0.3459649714418193,0.346747556454331,0.347730352303523,0.3497465794795031,0.3505405947976713,0.3524924829878145,0.3531389341071555,0.3548244734202608,0.3582255083179297,0.3577768156726919,0.3607473035439137,0.3606265022873536,0.3615010025780578,0.362714320212509,0.3635938959825599,0.3632796365138372,0.3671897289586305,0.3649899396378269,0.0,2.269602903154475,58.63908726863277,195.22233543432884,288.38362781088284,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95823,42821,402.283376642351,6945,71.19376350145582,5444,56.07213299520992,2163,21.988457885893784,77.40182060844235,79.71386311550013,63.36325590393732,65.07496691505158,77.1306991500186,79.44984817873252,63.2617061173066,64.9797918198065,0.2711214584237496,264.0149367676088,0.10154978663072,95.17509524508228,104.11676,73.2500170488894,108654.37316719368,76442.216980188,291.91329,185.0139516111819,303854.5130083592,192296.8251102112,307.91816,148.05365658289378,317212.5168279014,151218.30881023253,3108.68048,1399.9829608161351,3201690.074408023,1418638.6291793943,1285.08644,559.8203347088427,1316917.8172255096,560076.203561378,2124.75858,892.7771730858128,2162908.967575634,885889.1935063694,0.38011,100000,0,473258,4938.83514396335,0,0.0,0,0.0,24900,259.01923337820773,0,0.0,28452,292.7272158041389,1921163,0,69002,0,0,0,0,0,53,0.5531031172056814,0,0.0,0,0.0,0,0.0,0.06945,0.1827102680802925,0.3114470842332613,0.02163,0.3217700081944823,0.6782299918055176,25.34454823747914,4.492175380262377,0.3234753857457751,0.216017634092579,0.2349375459221161,0.2255694342395297,11.044139400778326,5.584368020646606,22.95221382507187,12749.613005196075,61.01227458847869,13.84229053772425,19.79510002478254,13.90559273809924,13.469291287872664,0.5530859662013226,0.7789115646258503,0.6978989210675752,0.5691946833463644,0.1123778501628664,0.7025222551928784,0.9097938144329896,0.819634703196347,0.7528089887640449,0.1333333333333333,0.50390625,0.7144670050761421,0.6575963718820862,0.5207509881422925,0.1068859198355601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.004469488897222,0.0067666274398409,0.0090801060361376,0.0113154603958886,0.0136508001140111,0.0156245222443051,0.0176464584609103,0.0201770345687593,0.0223329887516248,0.0244579980523807,0.0266966375169355,0.0288019735827722,0.0310640225695516,0.0333144242174204,0.0354618722876627,0.0376469857568731,0.0398278722521775,0.0420864579654749,0.0437624236369123,0.0585732165206508,0.0721977125891233,0.0858056064972491,0.098550267885282,0.1108817240543928,0.1264999154977184,0.1385740014832079,0.15083448495801,0.1620790863973531,0.1729745364171014,0.1854306060540866,0.1983183468787826,0.2109272278787747,0.2220206347818483,0.2324668470013855,0.2432585078461555,0.2541756390373436,0.2633414326853852,0.2721164867840159,0.2808291342189647,0.2884136957452471,0.2956174926022527,0.3029284742353428,0.3099818990422076,0.3160587134559771,0.3224041021595503,0.3281805437340409,0.3332951639375549,0.3383449883449883,0.3430603948896631,0.3436069370388323,0.3438742792662621,0.3435612194606773,0.3438533169710532,0.3440863407609744,0.343912750444213,0.3433726359104218,0.3440509194704637,0.344497771097713,0.3455155430243763,0.3465845255037076,0.3478758912171903,0.3487744123249534,0.3503310073358383,0.350416676673311,0.3506652433150207,0.3520737851917219,0.3553374310085299,0.3589429042094564,0.3614596569250318,0.3641761052246985,0.3680870353581142,0.3686635944700461,0.3679914562514303,0.3700271459327904,0.3738151658767772,0.3761299218630305,0.3792472024415056,0.3801925722145804,0.3791250959324635,0.0,2.741920366299858,58.7041192386508,200.01426995257955,315.3757397220007,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95705,42730,402.4241157724257,6727,69.22313358758686,5252,54.38587325636069,2151,22.18274907267123,77.32145341825886,79.70852898119904,63.3143933609397,65.08013697733578,77.05447073224795,79.44002014443072,63.21655868244417,64.98393386164071,0.2669826860109054,268.50883676831927,0.0978346784955235,96.20311569507578,104.67534,73.64782157960987,109372.90632673318,76952.950817209,293.4211,186.79830247433387,306096.2018703307,194688.44101596976,306.25726,147.37647475349252,316830.2074081814,151531.73831980833,3024.6802,1368.294302715466,3134419.936262473,1403879.8396570485,1261.24008,552.5376016147181,1306587.4928164673,566150.1825950374,2115.18532,875.7371627777986,2182772.039078418,890964.808790991,0.38059,100000,0,475797,4971.495742124236,0,0.0,0,0.0,25089,261.63732302387547,0,0.0,28412,293.7255106838723,1915286,0,68666,0,0,0,0,0,41,0.4283997701269526,0,0.0,1,0.0104487748811451,0,0.0,0.06727,0.1767518852308258,0.3197562063326891,0.02151,0.326643109540636,0.673356890459364,25.213643019617287,4.495585132905572,0.3204493526275704,0.2229626808834729,0.2225818735719726,0.234006092916984,11.282164495906027,5.742159056533444,22.738871551478915,12722.966790331882,59.29023347005737,13.847444728298653,19.07475777420345,13.050350095541573,13.317680872013709,0.5514089870525514,0.7924850555081128,0.6934046345811051,0.5739948674080411,0.1057770545158665,0.7254901960784313,0.9338422391857506,0.8644859813084113,0.6988847583643123,0.1567796610169491,0.4926133469179827,0.7210796915167095,0.6350597609561753,0.5366666666666666,0.093655589123867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0044011763512828,0.0067199935033295,0.0086482860946535,0.0111102067393781,0.0131611115638497,0.0155317825346482,0.0178170308352052,0.0198836626831188,0.0219153683951931,0.024072422313126,0.0262890356236971,0.0285664321277208,0.0309543927621952,0.0332266721717588,0.0352767237725002,0.0371847325081568,0.0391452796313784,0.04110942407288,0.0430754158502522,0.0573201173976165,0.0713179106039987,0.0841178384391759,0.0970786942520994,0.1092225070954536,0.1247446576560366,0.1379152956161766,0.1502172894209876,0.1611841402158811,0.1720901797588914,0.1855279175239962,0.1986187187425577,0.2111903933170901,0.2212036013959238,0.2324701326703483,0.2433611658656508,0.2534672245467224,0.2623619887117447,0.2713446445583632,0.2801401788884181,0.2876839085777736,0.2950351956221791,0.3018821022727272,0.3085839636551071,0.3156928984591455,0.3222437089681845,0.3279068021422494,0.3335537862793478,0.3391020914981956,0.3442255452699317,0.3443759422786991,0.3448821062762081,0.3451742344244984,0.344865942447706,0.3443495850313829,0.3433847664038774,0.3433032176256142,0.3447119730462651,0.3458532163442626,0.3459048640915593,0.3471943229391556,0.3482155242454868,0.34929074288116,0.3493301564466822,0.350722253139442,0.3519398986051643,0.3539581175929122,0.354964494040071,0.3586387434554974,0.3587560458887956,0.3595139844108207,0.3618950531172872,0.3667519181585678,0.367422776186421,0.3679335370511841,0.3722336437295924,0.375487291439264,0.3756428718370705,0.3802895322939866,0.3847641144624903,0.0,1.9297862926971128,58.59559587589271,197.0645438825902,299.2809780083196,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95713,42724,402.1083865305654,6701,68.63226520953268,5193,53.764901319569965,2125,21.940593231849384,77.3455376358958,79.73417500052958,63.32130932583449,65.08810525797335,77.08578957708245,79.46941289721782,63.22661423269272,64.99287944648964,0.2597480588133436,264.7621033117531,0.0946950931417731,95.225811483715,104.64542,73.63325751331487,109332.50446647793,76931.30244931708,293.54531,186.27794830956384,306180.6546655104,194118.67182550053,305.49705,147.0536567858286,315646.0250958595,150916.50754894203,2990.89212,1349.3760835251296,3098991.568543458,1384513.904699214,1271.16889,553.6292031948755,1316421.1862547407,566794.9211631165,2091.0799,862.7675853444346,2160865.734017323,882709.9257212859,0.37917,100000,0,475661,4969.659293930814,0,0.0,0,0.0,24988,260.53932067744194,0,0.0,28165,290.7233082235433,1918139,0,68739,0,0,0,0,0,55,0.5746345846436743,0,0.0,0,0.0,0,0.0,0.06701,0.1767281166758973,0.3171168482316072,0.02125,0.3265998022319537,0.6734001977680464,25.20256262452904,4.589556981944171,0.324475255151165,0.2091276718659734,0.2295397650683612,0.2368573079145003,11.257330884056516,5.630659814368411,22.50023535893936,12665.70724465659,58.33856047466901,12.737298898810046,18.823253790743607,13.439663936310245,13.338343848805112,0.55420758713653,0.7845303867403315,0.6913946587537092,0.6015100671140939,0.1170731707317073,0.7204049844236761,0.9269005847953216,0.8752997601918465,0.7046979865771812,0.145374449339207,0.4996162701458173,0.7190860215053764,0.6309148264984227,0.5671140939597316,0.1106679960119641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025329537280012,0.0046959784978954,0.0071171125437839,0.0094310859976828,0.0116383169203222,0.013750254634345,0.0160816626216067,0.0183511534573082,0.0204720222513089,0.0227440298201777,0.0250653812624993,0.0270642248949784,0.029161866359447,0.0313150464728067,0.0335393855584565,0.0355425983934497,0.0375185158329794,0.0395105548290678,0.0415748097000956,0.0434465513648676,0.0587436687379249,0.0719391332558894,0.0850483276837344,0.0974549968963376,0.1091446049994726,0.1246232112449629,0.1367909513401099,0.1482917270171253,0.1597096770745368,0.1706468889866801,0.1837308815762527,0.19623152309275,0.2087092806843783,0.2198577680525164,0.2294188861985472,0.2399929094514796,0.2508900570306135,0.2609414729641547,0.2697229596351507,0.2782719186785261,0.2861935334605818,0.2936548757393682,0.3007000449353167,0.3075495642179868,0.3145245432266518,0.3199990156148101,0.3268180511641276,0.332000203143648,0.3364070773601963,0.3402438863968218,0.3411831046427325,0.3423524732922832,0.3419968794366118,0.3428315980734289,0.3428618026005604,0.3434610505723586,0.3420273799161193,0.3428331798447572,0.3436313250538848,0.3434708672693099,0.3454278838923146,0.3458003295416195,0.347023408555069,0.3461633413380613,0.3476843579465881,0.3491947099646458,0.3509323875986729,0.3541581254533413,0.3564687654060145,0.3599553642595249,0.3633167435276928,0.3651335074348452,0.3653239045334007,0.3703986558729188,0.3743949890860776,0.3761280231019131,0.3744193248683803,0.3826247689463956,0.3846365638766519,0.3862310385064177,0.0,1.8607390510327055,56.684190941325866,191.9161640836985,301.79144473869803,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95613,42894,404.5474987710876,6802,69.85451769110895,5288,54.75196887452543,2144,22.109964126217147,77.23812690061078,79.66881772006792,63.25655152000609,65.05407749140895,76.98064186270582,79.40875300390061,63.16225808394283,64.9606584677075,0.2574850379049564,260.06471616730664,0.0942934360632605,93.4190237014434,103.71504,73.02060745007083,108473.55485132776,76370.78017640991,292.10554,185.8739633197733,304938.5020865363,193834.3733364549,307.25304,147.63196989355828,317491.43944861053,151526.7589731891,3071.77428,1389.1042988961806,3181743.026575884,1422012.808746726,1296.3807,566.716509732512,1342590.149875017,579646.3488722,2119.9364,876.2481316144015,2187860.332799933,892586.8162026957,0.38179,100000,0,471432,4930.616129605807,0,0.0,0,0.0,24857,259.3789547446477,0,0.0,28378,292.9308776003263,1914171,0,68709,0,0,0,0,0,59,0.6066120715802245,0,0.0,0,0.0,0,0.0,0.06802,0.1781607690091411,0.315201411349603,0.02144,0.3249057130884201,0.6750942869115798,25.3306729518669,4.586998189478987,0.333018154311649,0.2031013615733737,0.2223903177004538,0.2414901664145234,11.144032238446307,5.578067268675275,22.740608879005222,12807.198661211189,59.69960227446364,12.683255131735514,19.86856935810557,13.186999601176078,13.960778183446475,0.5448184568835098,0.7858472998137802,0.6893810335036911,0.5654761904761905,0.1237274862960062,0.6997725549658832,0.9343283582089552,0.8635346756152126,0.6410256410256411,0.1856060606060606,0.4933232552280171,0.7185385656292287,0.6301369863013698,0.5426356589147286,0.1076011846001974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024120317820658,0.004706216465672,0.007016083177646,0.0091784149700659,0.0113784399934864,0.0137432888128202,0.0159110612473864,0.0180607199771176,0.0202115254792054,0.0224719101123595,0.0246757777230567,0.0268590158544229,0.029085444927029,0.0310505860643485,0.0332727498037919,0.0352313056794313,0.0372052039599854,0.0392138531376276,0.0412316404176252,0.0432401418735656,0.0576219448451776,0.0713597116271271,0.0841159785691774,0.0973629336310213,0.1101595581790726,0.1257718419352447,0.1388508237993562,0.151657909041493,0.1627902000641917,0.1738327193048409,0.1879659499174641,0.2006157448561455,0.2120941381564611,0.2234578722471787,0.2342141802393494,0.2454565627427049,0.255183983894419,0.2640960595298495,0.2730156925176256,0.2817512716583803,0.2901316934501363,0.2978364116094987,0.3053580964813386,0.3125518534995852,0.3186860068259385,0.3245255023183925,0.3301398759448532,0.3360059239588387,0.341089604430174,0.3454569536423841,0.3455061494796594,0.345194353123187,0.3450454397693384,0.3456254624055242,0.3456263788682845,0.3447087953493379,0.3439060859606146,0.3441754542304074,0.3455273377091996,0.3465927441059317,0.3482710614441058,0.3492217898832684,0.3502610746168098,0.3511011235955056,0.3517243045989511,0.3528101080004194,0.3556442122786372,0.3573168802404682,0.3592215864943138,0.3605937599490608,0.3625744388456253,0.368404221298369,0.3693113677965032,0.3735334450708517,0.3776210625293841,0.3799338217915386,0.3799484301531928,0.3821873743466023,0.3831133113311331,0.3742824339839265,0.0,1.9446007694516576,58.385469632052846,202.22548639568151,298.72654146191456,fqhc7_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95720,42752,403.80275804429584,6827,70.19431675720853,5339,55.21312160468032,2172,22.27329711659005,77.33641368994157,79.71041678159766,63.332022412709286,65.08889751721155,77.0707618325563,79.44557290993195,63.234300004197024,64.99417115679825,0.2656518573852651,264.843871665704,0.0977224085122614,94.72636041330418,104.27824,73.29599927231614,108940.91099038864,76573.33814491866,291.70541,184.9610218700884,304138.6021730046,192621.30303737652,303.84351,146.35999652865632,313484.7576264104,149944.1384129898,3539.09933,1600.1916587161022,3660194.8286669455,1634593.4621211886,1289.33896,566.3557658061428,1331870.7689093188,576662.237363241,2142.41334,892.0939268384756,2198997.659841204,899183.5495450293,0.382,100000,0,473992,4951.859590472211,0,0.0,0,0.0,24868,259.17258671124114,0,0.0,28151,290.35729210196405,1921138,0,68970,0,0,0,0,0,54,0.5432511491851233,0,0.0,0,0.0,0,0.0,0.06827,0.178717277486911,0.3181485279039109,0.02172,0.3218662952646239,0.678133704735376,25.16975394368944,4.552708931612655,0.3259037272897546,0.2022850721108821,0.2352500468252481,0.236561153774115,11.05238265150824,5.489984814994735,23.10994256065459,12745.769836893887,60.22738595167667,12.550614988483314,19.80445926783351,13.980839611646545,13.891472083713328,0.5459823937066867,0.7638888888888888,0.6885057471264368,0.5939490445859873,0.1155977830562153,0.7106254709871892,0.9085545722713864,0.8675496688741722,0.7518248175182481,0.1379310344827586,0.4915254237288136,0.6977058029689609,0.6254856254856255,0.5498981670061099,0.1097804391217564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800048640103,0.0046247933549021,0.0070561957459769,0.0092690462639238,0.0115662797676571,0.013657751614283,0.015929185490368,0.0180620788237696,0.0200484598161798,0.0220911901398358,0.0238224591256214,0.02601562580208,0.0283407887294976,0.03030178185189,0.0321625358565325,0.0340365275093282,0.0361051574358815,0.0380824930495041,0.0402315575048327,0.0421345388637736,0.0570981047355505,0.0716266125404116,0.0850811695121439,0.0981435149170573,0.1097537838863358,0.1253765100032763,0.1382022471910112,0.1505300879403664,0.161797824764385,0.172267512239017,0.1853772975765141,0.1977874622862889,0.2098302579817869,0.2204511935325285,0.231194434981373,0.2422117777163395,0.2520810813822615,0.2620316047384629,0.2723624243248758,0.2811073614368243,0.2892531412916575,0.297355078389682,0.3045348713524246,0.3108575670142589,0.3167916697007208,0.3231648016151469,0.3291485876483313,0.3346387610304402,0.3389856835891993,0.3436914222351295,0.3441107922779506,0.3444891657936814,0.3449112609689342,0.3450283083071487,0.344915961377995,0.3442001167040324,0.3441165732789409,0.3456771836271169,0.3459212172095334,0.3469475494411006,0.3482164659916975,0.3496244326852568,0.3508300627531639,0.3515063276962706,0.3523949640634798,0.3538566160123453,0.3550593441963388,0.3575667184971282,0.3619121757899579,0.3662914146067866,0.3694829178208679,0.3730287319075394,0.3730092204526404,0.3727272727272727,0.3750835322195704,0.375,0.3774968789013733,0.3780387309435517,0.3769081321121287,0.3836671802773497,0.0,2.111412552440277,58.378993360005246,201.4937597126928,306.5357090160755,fqhc7_100Compliance_baseline_low_initial_treat_cost,0 -100000,95609,42797,403.5184972126056,6706,69.01023962179293,5258,54.4091037454633,2092,21.441496093464007,77.26635035352784,79.70524065376694,63.26822878755484,65.07247508299687,77.01042072440016,79.45072789550986,63.1743852593106,64.98195048047555,0.255929629127678,254.51275825707853,0.0938435282442426,90.52460252132732,103.78588,73.0133024521613,108552.41661349872,76366.55801458158,293.02498,186.20516017669664,305898.367308517,194172.6722135956,301.30759,144.9847231580519,311622.14854250127,148857.31882800336,3479.73534,1559.1923867735827,3603908.7324415054,1595161.696883747,1270.66376,552.2408442945866,1314128.868621155,562711.2032283426,2060.90854,853.5434599428474,2116243.8054994824,859553.7483209553,0.38003,100000,0,471754,4934.200755159033,0,0.0,0,0.0,25050,261.3875262789068,0,0.0,27846,287.74487757428693,1916442,0,68742,0,0,0,0,0,51,0.5334225857398363,0,0.0,0,0.0,0,0.0,0.06706,0.1764597531773807,0.3119594393080823,0.02092,0.3191549695165178,0.6808450304834822,25.30074532296717,4.526105388697208,0.3210346139216432,0.2131989349562571,0.2325979459870673,0.2331685051350323,11.187442896389522,5.63475918350561,22.26662695819193,12726.299701048983,59.223723332441686,13.23163702950892,19.057901359007246,13.603635796558894,13.330549147366616,0.5519208824648155,0.7627118644067796,0.6996445497630331,0.5960752248569092,0.1117455138662316,0.7071865443425076,0.9116022099447514,0.864321608040201,0.7303754266211604,0.1450980392156863,0.500506329113924,0.691699604743083,0.6488372093023256,0.553763440860215,0.1029866117404737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0048592442302815,0.007200381853819,0.0094965023588742,0.0117465035320942,0.0139221541628871,0.0159822011757021,0.0181682556226561,0.0202381926823279,0.0225637872732861,0.0248470791083377,0.026910346812491,0.0292043688171046,0.0312094030312403,0.0331866633614278,0.0352323993212201,0.0374792703150912,0.0395500763374635,0.0413808894393389,0.0431454346352401,0.0580013172613509,0.0720872718127135,0.0852407012531381,0.0983884558668632,0.1106780735107731,0.1262207910514162,0.1384481311043329,0.150201591398767,0.1618341200269723,0.1721122129941014,0.185248306510765,0.1979426366336419,0.2106071331336781,0.2222429148910531,0.2325996627393063,0.2433751511319645,0.2532366707253047,0.2628740020044368,0.2717697586692724,0.2801867529309197,0.2882082411408315,0.2961349262122277,0.3034244222545988,0.3091497781508574,0.3154177202878817,0.3212460813112488,0.326736024066182,0.3318551367331855,0.3368986037104741,0.3424134789325657,0.343351744577664,0.3435271115027676,0.3443394896376709,0.3441987592011453,0.3438002262039407,0.3433275085073117,0.3427937212620897,0.3432980701205969,0.3444870434395646,0.3459988898239833,0.3460749825993717,0.3470910389713469,0.3471830689611646,0.3478612145967054,0.3497100048332527,0.3510496108184606,0.3492200045882083,0.3531889290012033,0.3550245661164328,0.3576686134890791,0.358996698459281,0.362008126603935,0.364099624179884,0.364460354939447,0.3633977123570223,0.3642274500531978,0.365458161236041,0.3684853420195439,0.362534435261708,0.3645357686453577,0.0,2.319971644608809,57.62533117485043,201.0781614474783,295.1346046502111,fqhc7_100Compliance_baseline_low_initial_treat_cost,1 -100000,95713,42829,403.9576651029641,6742,69.37406621879995,5249,54.349983805752615,2080,21.45998976105649,77.34534288058313,79.71404957226997,63.32656324425341,65.07454654636797,77.0889201105753,79.4550959400436,63.23237051435645,64.98124403492754,0.2564227700078305,258.95363222636547,0.0941927298969531,93.30251144042734,104.9367,73.81581343540664,109636.8309425052,77122.03507925427,290.98281,185.2075827314785,303459.65542820725,192957.6414781084,303.08722,145.66077252172937,313695.3182953204,149894.00077940128,3452.29733,1557.6359548837045,3577381.933488659,1598433.807938869,1246.38872,542.9536546009921,1290880.5073500988,555995.4025281495,2049.74058,856.1041058078256,2116203.3997471607,872745.7298144086,0.38181,100000,0,476985,4983.492315568418,0,0.0,0,0.0,24832,258.8781043327448,0,0.0,28170,291.31883861126494,1914256,0,68651,0,0,0,0,0,40,0.4179160615590359,0,0.0,0,0.0,0,0.0,0.06742,0.1765799743327833,0.308513794126372,0.0208,0.3193937692955375,0.6806062307044626,24.95747773797454,4.518887966014889,0.3250142884358925,0.2154696132596685,0.2322347113735949,0.2272813869308439,11.014442676143656,5.428378775148635,22.16866857904021,12735.451018106034,59.23927391729057,13.386029361768664,19.128861674708485,13.593141972422222,13.13124090839119,0.5545818251095447,0.7860300618921309,0.6975381008206331,0.5750615258408531,0.1098072087175188,0.7175398633257403,0.932642487046632,0.8337468982630273,0.7414965986394558,0.1324786324786324,0.5,0.7100671140939597,0.6554105909439755,0.5221621621621622,0.1042752867570385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809624108878,0.0046723288670869,0.0069599448074347,0.0091001421897217,0.0112774309015843,0.0134597175699202,0.0153614058693414,0.0175474413809295,0.0197084619630773,0.0222231321206661,0.0240706948516597,0.0262990347093859,0.0285120651704346,0.0306070939228796,0.0329824561403508,0.034856315898284,0.0367957746478873,0.0386882523868825,0.0404978269458711,0.0425172726420108,0.0576790525722163,0.0715115488063965,0.0849422875131164,0.0971981103290089,0.1093477962667904,0.1249695751097941,0.138334801855646,0.1509074255527627,0.1618219125379387,0.1724659444384854,0.1863006023252556,0.1988088792636708,0.2110475112629769,0.2226832793203118,0.2332661445769862,0.2440795600691826,0.2551153678711362,0.2644371427285412,0.2735043705301396,0.2820139764005041,0.2898299201666088,0.2963292131021014,0.3029338319703658,0.3092904555366514,0.3156801535340775,0.321025388217895,0.3271250297272602,0.3323923962108208,0.3378001840307927,0.3422450705714436,0.3427549919050189,0.3428728977116074,0.3435402506747305,0.3437789754288363,0.3443235995232419,0.3435806921955337,0.3426085854184163,0.343581658126396,0.3446640046414798,0.345858758876637,0.3472515955157118,0.3485883514313919,0.3509642565487781,0.3512363375739115,0.3525906985719799,0.3534466995794478,0.3541666666666667,0.3572550744674165,0.3595690925678995,0.3606096595407759,0.3639266490283733,0.3623157558665461,0.3632349230381024,0.3674140965791689,0.3668393782383419,0.3650586701434159,0.3700871692919407,0.3743912337662338,0.3693072039746067,0.3703413103177717,0.0,1.858020316409031,58.31130502197267,199.89169119323697,296.17927948918765,fqhc7_100Compliance_baseline_low_initial_treat_cost,2 -100000,95653,42772,402.6951585418126,6902,70.83938820528368,5411,55.87906286263891,2130,21.78708456608784,77.2498286400838,79.64929119759043,63.26585613190741,65.03930533218177,76.98614838970181,79.38812676597111,63.16839169347741,64.94582584256497,0.263680250381995,261.1644316193207,0.097464438430002,93.4794896167972,104.01226,73.15361259519973,108739.15088915142,76478.11631124975,290.77915,184.5436197482117,303280.6184855676,192217.15967947867,305.68263,147.07336966468318,315793.2108768152,150713.59971429323,3546.71097,1603.619837589123,3663569.150993696,1632462.4987733862,1278.33343,558.4604680818952,1319106.1022654804,566575.1581893354,2095.97734,876.3208923995634,2146106.6981694247,877425.2868986124,0.38193,100000,0,472783,4942.6886767796095,0,0.0,0,0.0,24773,258.23549705707086,0,0.0,28308,292.1079317951345,1913858,0,68739,0,0,0,0,0,47,0.4913593928052439,0,0.0,0,0.0,0,0.0,0.06902,0.1807137433561123,0.3086062011011301,0.0213,0.3226253115480476,0.6773746884519524,25.135263108947445,4.486045788060925,0.3378303455923119,0.2186287192755498,0.2199223803363518,0.2236185547957863,10.965295590897696,5.489102862757097,22.62591184682316,12842.263997620452,61.1735326199946,13.938664349350232,20.684628416373627,13.361610360409829,13.18862949386092,0.5547957863611163,0.768385460693153,0.6898249452954048,0.5756302521008403,0.1214876033057851,0.7205014749262537,0.9138381201044388,0.8505494505494505,0.7490636704119851,0.1593625498007968,0.499383477188656,0.69875,0.6365622723962127,0.5254604550379198,0.1115745568300312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096559828194,0.0045432880018659,0.0069528323910638,0.0090530380004064,0.0113619025337958,0.0135559041003809,0.015948117632663,0.0181344769489967,0.0206483943546737,0.0227978001044643,0.0253966951473439,0.0272829994863893,0.0294798580027782,0.0315904476258206,0.0336881446225957,0.0356186201404474,0.0373962510491466,0.0396382927918107,0.0417915106117353,0.0435938607832506,0.057822916013625,0.0716088427181619,0.084927740053106,0.0983637607197348,0.1102176069566685,0.1260993343140471,0.1392723642851074,0.1507320815839389,0.1621292027256875,0.173398358612985,0.1872902842962723,0.1999002342326711,0.2115640471984121,0.22281821771752,0.2330915874645384,0.2441485696503589,0.2544733836472354,0.2645037521864244,0.2735873760431728,0.2825734677224719,0.2916187489109601,0.2986851227336287,0.306131671582152,0.3127497712937551,0.3190799102351448,0.3249424519195069,0.3311512897510962,0.336711740497431,0.3423765387965213,0.3467703476049173,0.346876985253369,0.3470061161657301,0.3470752955818295,0.34741531942066,0.3481873787856184,0.3477412715235857,0.3474927377494166,0.348431424240427,0.3494124710524058,0.3498545937600976,0.3501300267591301,0.3514576998747988,0.352834715265794,0.3538932534948112,0.3555334819265432,0.3560927117668602,0.3565269529465509,0.3581897093974084,0.3588284871470712,0.3599665591783112,0.3625557883231624,0.3658872806319919,0.3681789540012602,0.3706299032675756,0.3714097991364745,0.3688186002596483,0.3708174178762414,0.3713646532438479,0.3752401866593467,0.3750471164719186,0.0,2.607514971049019,59.4760735732513,202.68821034360195,311.11023843530745,fqhc7_100Compliance_baseline_low_initial_treat_cost,3 -100000,95741,42837,403.5784042364296,6947,71.2547393488683,5445,56.24549566016649,2139,21.944621426557067,77.32698317968122,79.68820682087554,63.31555014592704,65.06198238038675,77.05663419284478,79.41829685898294,63.21541522075099,64.96446499415465,0.2703489868364386,269.9099618925942,0.1001349251760501,97.5173862320986,104.01666,73.22092558494171,108643.7994171776,76478.12910345799,294.79527,186.9375283190287,307306.60845405835,194650.85837731868,306.99719,147.87109696331595,316703.6274950126,151345.49070260595,3588.63691,1633.753416073133,3709668.407474332,1667822.7050826012,1325.37424,583.7519870644242,1370829.0596505154,596216.0381283077,2108.88652,892.4217576380958,2165580.326088092,900192.0603892477,0.38232,100000,0,472803,4938.3545189626175,0,0.0,0,0.0,25139,261.93584775592484,0,0.0,28617,294.98334047064475,1916134,0,68810,0,0,0,0,0,41,0.4282386856205805,0,0.0,0,0.0,0,0.0,0.06947,0.1817064239380623,0.3079026918094141,0.02139,0.3265027322404371,0.6734972677595629,24.831401812103927,4.464432242444389,0.3281910009182736,0.2106519742883379,0.2303030303030303,0.2308539944903581,11.0250690399094,5.528603260914779,23.04567263770807,12751.30092879519,61.70287076671392,13.60555901467242,20.18007331228594,13.999663279473554,13.917575160281984,0.5529843893480257,0.7611159546643418,0.7000559597090095,0.5797448165869219,0.1272871917263325,0.7045936395759718,0.9005376344086021,0.8711111111111111,0.7047619047619048,0.1726618705035971,0.4997518610421836,0.6941935483870968,0.6424831712789828,0.5378061767838126,0.1144024514811031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00265437414518,0.0050800024335341,0.0073178653350384,0.0097021293888166,0.0120620391558606,0.0142253449417035,0.0161316637435249,0.0181797766572076,0.0203384980172519,0.0225483874269454,0.0245974726096893,0.0267612429042158,0.0287608572750167,0.030694934975339,0.0329368804348947,0.0349765961623906,0.0369591999420247,0.0390112853705086,0.0409807100690113,0.0427965704403629,0.0575953397571746,0.071044482571034,0.0840182839889289,0.0972868991180582,0.1099669034719733,0.1251466934503357,0.1378666723227352,0.1499776438776162,0.161625769493844,0.171930841302038,0.1855376755515795,0.1985248724697014,0.2102657293956343,0.2215085999387281,0.2326398062527521,0.2439727318073491,0.2543764592852435,0.2634644196866094,0.2730154762175306,0.2816000366875709,0.2892493049119555,0.2965280463083395,0.304191616766467,0.3111116447731802,0.3170360633390538,0.3229278528667531,0.327857339921246,0.3331250876544311,0.3382078164737634,0.3433956279241891,0.3438043492915211,0.3444374000771817,0.3443036903284053,0.3441148353080911,0.344181474254904,0.3434926877227479,0.3433312162591299,0.344320837310338,0.34481341302598,0.3463957685572352,0.3475617764602135,0.3489215045457246,0.3494062157837109,0.349997755129529,0.3514596865718494,0.3533214678322776,0.3545207827453221,0.3568255568507608,0.3591987348444913,0.3588359074125541,0.3611098476233795,0.3633616118769883,0.3670169256905556,0.3679574791192103,0.369610048743907,0.3736587666548756,0.378225683310429,0.3866585563665856,0.3845725424672793,0.397196261682243,0.0,2.446287769732303,62.2920539517348,205.3692300317485,303.1035669111308,fqhc7_100Compliance_baseline_low_initial_treat_cost,4 -100000,95766,43145,406.4908213771066,6893,70.76624271662176,5345,55.30146398513042,2183,22.460998684292964,77.39144353273707,79.72918230508475,63.36142006586866,65.08681007782117,77.12527678414561,79.46171775373989,63.26410806619414,64.99114137142972,0.2661667485914591,267.46455134485814,0.0973119996745168,95.66870639145009,104.43532,73.46877888335764,109052.60739719734,76716.97563159956,297.20292,188.7690206529644,309851.1058204373,196623.1341530025,306.43895,146.89004669718426,316587.6198233194,150825.13341222945,3559.56652,1598.8888917540955,3685824.259131633,1638461.282453162,1312.57462,571.9279000893995,1358585.447862498,585193.3046064364,2160.42048,897.122725662668,2224730.238289163,911082.2974814052,0.38424,100000,0,474706,4956.9366998726055,0,0.0,0,0.0,25211,262.7341645260322,0,0.0,28351,292.6195100557609,1919057,0,68826,0,0,0,0,0,61,0.6369692792849236,0,0.0,0,0.0,0,0.0,0.06893,0.1793930876535498,0.3166980995212534,0.02183,0.3145306235310383,0.6854693764689617,25.10623081147638,4.567955769908031,0.3240411599625818,0.2011225444340505,0.2310570626753975,0.24377923292797,11.17376152822888,5.503983913864031,23.173042868976943,12824.451988275769,60.46991043405458,12.802295069010576,19.56354480465217,13.677420959949858,14.426649600441973,0.5466791393826006,0.7767441860465116,0.6916859122401847,0.5951417004048583,0.1181887950882578,0.7138461538461538,0.922437673130194,0.8602941176470589,0.762962962962963,0.1455938697318007,0.4929542645241038,0.7030812324929971,0.6397280966767371,0.5481865284974093,0.1113243761996161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023793131378584,0.0045299309869574,0.0069296483431748,0.0092625506545738,0.0114589582210653,0.0136796677794967,0.0159567964132871,0.0178137817046544,0.0200941883153367,0.0221005780938251,0.0241703296140329,0.026192405946384,0.0281956432387998,0.0304857966241251,0.0328433292786013,0.0349768095282366,0.0371439807915217,0.0390889951359143,0.0410893404708695,0.0431154815725327,0.0564271175825896,0.0706984043944546,0.0839111689238096,0.0968756244018887,0.1093690692083843,0.1257890896786541,0.1385168453536092,0.1504191311008042,0.1618452666987025,0.1733780640735699,0.1871696894677358,0.2001384142912755,0.2123326378021213,0.2239384769998798,0.2344754806582462,0.2460663465155907,0.2559054679226353,0.2656931026735565,0.2754429920527849,0.2835955827659209,0.2912302605720099,0.2993827160493827,0.3064920623654387,0.3127778643243178,0.3190688868391669,0.3256501182033097,0.3314950980392157,0.3371554379088294,0.3421737610235558,0.3471293475250267,0.3474494188549289,0.3471113004989759,0.3468905245084931,0.3469296473711548,0.347142263635824,0.3458876377026387,0.3460578290409227,0.3459459459459459,0.3463178360678104,0.3466507262410335,0.3469418386491557,0.3479759169769468,0.3485268776530912,0.3497035839396389,0.3509522428460943,0.3536684391125547,0.3551116065049015,0.3582585051220437,0.3594914356348225,0.3640935579149038,0.3653502132929682,0.3657201138010628,0.368404302717841,0.3719929290600261,0.3719367962910398,0.3801947280930895,0.3810970977055158,0.3838220424671385,0.387688098495212,0.3933358866334737,0.0,2.027086762962461,57.34778926500374,211.23135000039173,301.2830563418567,fqhc7_100Compliance_baseline_low_initial_treat_cost,5 -100000,95731,42555,401.2388881344601,6963,71.5860066227241,5454,56.428951959135496,2212,22.793034649173205,77.37264048070351,79.73222936702177,63.34029949113111,65.08193881061366,77.10011561772691,79.45733647284511,63.2419134999831,64.98462252680221,0.2725248629765957,274.8928941766593,0.0983859911480138,97.31628381145184,103.24644,72.62952261411012,107850.581316397,75868.34214006968,294.11313,186.45364640936637,306691.479249146,194237.90164580493,308.22127,147.8513349314624,318352.863753643,151698.63646316357,3589.58852,1619.2030331525632,3717980.622786767,1660163.675890025,1357.78829,593.7572409012397,1407049.9106872382,609417.8949440938,2187.80306,899.561161484832,2256671.548401249,916755.5589085527,0.37951,100000,0,469302,4902.299150745318,0,0.0,0,0.0,24955,260.1142785513575,0,0.0,28593,295.0246001817593,1923216,0,69064,0,0,0,0,0,57,0.5954184120086493,0,0.0,0,0.0,0,0.0,0.06963,0.1834734262601776,0.317679161281057,0.02212,0.3253968253968254,0.6746031746031746,25.211656904316087,4.509196424497114,0.3091309130913091,0.2262559589292262,0.2207554088742207,0.2438577191052438,11.189933958533622,5.576903309006939,23.50137293441975,12732.487762910923,61.66367677959568,14.502609169159191,19.076267828566422,13.400467035734284,14.684332746135777,0.5474880821415475,0.7552674230145867,0.7153024911032029,0.5714285714285714,0.1203007518796992,0.7159172019985724,0.9110576923076924,0.8758465011286681,0.7360594795539034,0.1391941391941392,0.4892672094744633,0.676039119804401,0.6580852775543041,0.5240641711229946,0.1154210028382213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759493670886,0.0044085008056915,0.0065025310163628,0.0086122846928826,0.0107474402383349,0.0131420892969847,0.0152593166435619,0.0175660641197064,0.0199122959449651,0.0220698126727403,0.0244117496283385,0.0263854951643703,0.0283795872620896,0.0305355303810504,0.0327043506071454,0.0347778455305559,0.0370017600165648,0.0388325346941315,0.0406485475237748,0.0424426113402491,0.057228475369098,0.0709913680355741,0.0835211843526217,0.0967860596123933,0.1088120586065141,0.1247317738338107,0.1369912405353242,0.1494903496265401,0.1613120215253531,0.1722566532993073,0.1860988478518359,0.1991713364633592,0.2120922140060896,0.2231566744679455,0.2330956938851849,0.2444496144642382,0.2549280053577408,0.2638121080423792,0.2732404925257849,0.2818731152465802,0.2895425290549613,0.2968003932216084,0.304143806804043,0.3103754561167658,0.3155929606071294,0.3218519843570732,0.3268652603096658,0.3322938675763052,0.3384541651014883,0.3437483499656792,0.3438194378981106,0.3439486939528227,0.3440393477740039,0.3441221153150546,0.3452648499010254,0.3443329651448208,0.3436846109948639,0.3448219133009788,0.3461485862764539,0.3465081405312767,0.3469410685193161,0.3473761134482827,0.3490704603634227,0.348695691082375,0.3488556782903761,0.3504848295276822,0.3511765711355478,0.3526644293197001,0.3561547890036771,0.3603742302226433,0.3629511918274687,0.3645108146888452,0.3656131479140329,0.368758100175345,0.3699454579650179,0.3737662028778689,0.3757287511506597,0.3800446156966132,0.3803867403314917,0.3812451960030745,0.0,2.105849455750546,62.20101643906708,204.1007401697852,306.3673579350067,fqhc7_100Compliance_baseline_low_initial_treat_cost,6 -100000,95745,42551,400.58488693926574,6789,69.66421223040368,5295,54.74959527912685,2178,22.38236983654499,77.33281654085012,79.69866042631772,63.319784280511655,65.0709001989343,77.0651300838201,79.43043841898748,63.22141253261397,64.97481658995025,0.2676864570300239,268.2220073302375,0.0983717478976871,96.08360898404555,104.73584,73.6719328098998,109390.40158755024,76945.9844481694,291.49104,185.03099662798215,303915.2436158546,192724.0133980701,300.33768,144.82874484662807,310175.204971539,148559.66417474436,3507.50048,1585.8871899028402,3628879.56551256,1621948.297200197,1289.46858,569.0353030773515,1333523.1709227634,581115.347130184,2148.73972,896.5214625892015,2210242.2058593137,907057.4329075732,0.37878,100000,0,476072,4972.290981252285,0,0.0,0,0.0,24925,259.7629119014048,0,0.0,27823,287.022821035041,1916617,0,68782,0,0,0,0,0,43,0.4491096140790641,0,0.0,1,0.0104444096297456,0,0.0,0.06789,0.1792333280532235,0.3208130799823243,0.02178,0.3143137529791112,0.6856862470208889,25.267142134998338,4.5498391749966975,0.3261567516525023,0.2092540132200188,0.2253068932955618,0.2392823418319169,11.41394856603082,5.851708081169074,23.19691837886145,12620.002522598372,59.63538358574458,13.033435828524524,19.32102173676976,13.3171140817102,13.9638119387401,0.5482530689329557,0.7815884476534296,0.6902142443543717,0.584241408214585,0.1168113654301499,0.7161438408569243,0.9325842696629212,0.8585131894484412,0.7279151943462897,0.1593625498007968,0.4932296890672016,0.7101063829787234,0.6366412213740458,0.5395604395604395,0.1062992125984252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019657712612347,0.0042802227338654,0.006487968321657,0.0088228418088858,0.0111606234485003,0.0132313396349413,0.0154600801558245,0.0174578866768759,0.0197235230363387,0.021953716977268,0.0242164511928806,0.0262763379471803,0.0283787118532532,0.0305767250257466,0.0325519489899094,0.0345750728712298,0.0369104579630895,0.0387716767504851,0.0408122946387722,0.0429714357147321,0.0566975331196692,0.0702119645958444,0.0828326045238619,0.095743226905245,0.1085741993970442,0.1234520901409642,0.1362676989977196,0.1483965045608881,0.1605767690253671,0.1716301864939354,0.1850639562427322,0.1981283133181867,0.2096804010482932,0.2202895064832834,0.2307734612169475,0.241971918323958,0.2527227280842706,0.2623031994508153,0.2712774410315784,0.2788817243709413,0.2867298029499618,0.2939364841444564,0.300697974806546,0.3070749964013243,0.3131095707162836,0.3189566848946439,0.324128854349461,0.3288541878948441,0.3340638535155743,0.3394667618405573,0.3399374207644377,0.3400862722399085,0.3408593805122415,0.3414588248917968,0.3420319644905193,0.3409732449680903,0.3391593973037272,0.3398602548294286,0.3404018811457888,0.3421715592560167,0.3433418405644798,0.343629802926365,0.3453025912393431,0.3459047619047619,0.3458058912933343,0.3485256796002198,0.349957056971085,0.3528835519039343,0.3549855338367088,0.3590470109346316,0.3598590582528714,0.3615294243298088,0.3625686683083917,0.3637195819665878,0.3681241184767277,0.374110109159943,0.3770868433144432,0.3767206477732793,0.3774157923799006,0.3758700696055684,0.0,2.201769599187284,57.50141454490049,200.87166558482824,302.4313867570132,fqhc7_100Compliance_baseline_low_initial_treat_cost,7 -100000,95776,42733,402.6687270297361,6785,69.63122285332443,5259,54.29335115268961,2165,22.187186769127965,77.34910350822409,79.67872273774603,63.34642956891118,65.06728457423705,77.08745879903395,79.41959070375609,63.25026793521287,64.97506122622278,0.2616447091901364,259.13203398994256,0.0961616336983084,92.22334801427225,104.016,73.2517049385294,108603.40795188773,76482.31805309202,292.58877,186.24498213554244,304867.7956899432,193833.9376624023,306.34181,147.41821213968302,316433.8769629135,151177.35314716707,3488.08264,1568.6097638772678,3604519.242816572,1600392.0333666764,1285.71293,560.5444317242257,1326948.0558803875,569809.8284731597,2132.5995,878.8838338175882,2188176.766622118,882884.8527705914,0.3807,100000,0,472800,4936.518543267624,0,0.0,0,0.0,24970,260.0442699632476,0,0.0,28289,291.98337788172404,1918933,0,68903,0,0,0,0,0,68,0.69954894754427,0,0.0,0,0.0,0,0.0,0.06785,0.1782243236143945,0.3190862196020633,0.02165,0.3380697805289814,0.6619302194710186,24.982956539830443,4.497239580833687,0.3179311656208404,0.2184826012549914,0.226468910439247,0.237117322684921,11.28572412935046,5.72219382901211,22.819556179094874,12743.252156404702,59.48622409960836,13.707902833223692,18.946237571144984,13.282667474145352,13.549416221094331,0.5594219433352349,0.8163620539599652,0.6889952153110048,0.5860621326616289,0.1234963913392141,0.7436472346786248,0.9365482233502538,0.8943661971830986,0.7455197132616488,0.1548117154811715,0.4965570007651109,0.7536423841059603,0.6187800963081862,0.5372807017543859,0.1160714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391931302657,0.0046321166847423,0.0067159712288604,0.008877512671278,0.0110220848415829,0.0133250539517081,0.0154304001304551,0.0172679491758942,0.0194852302567718,0.0214135172188005,0.023644633856493,0.0258896687600049,0.0279835983022804,0.0302805739105374,0.0322188199148392,0.0343424327869529,0.036515836635866,0.038696833329877,0.0405860349127182,0.0426116838487972,0.0572090499248622,0.0713815066988798,0.0847907230330481,0.0974030751121901,0.1098102032858753,0.1255059445178335,0.1386777753044805,0.1513740003403096,0.1624973319103521,0.1738916150598924,0.1869160890343135,0.2002487427675336,0.2119851246139794,0.2227484005030896,0.2335090170879042,0.2447137271408159,0.2549610482376839,0.2642994479238112,0.2727293354207791,0.2812707498568975,0.2887459955821296,0.2962053153658993,0.3034340756869335,0.3098044853364002,0.3158469945355191,0.3218261845171312,0.3280127193970805,0.3334097129399783,0.338497037891653,0.3429790832573565,0.3428887330780432,0.3433891017336898,0.3437381043014846,0.3441615706003961,0.3445068497221479,0.3437380343385765,0.342553595744007,0.3434600541916413,0.3449006441471458,0.3470690240806621,0.3480274506862671,0.349074551147398,0.3507608353447371,0.3511930147471437,0.3513931888544891,0.3514392925555643,0.3533314187248708,0.3564739866044503,0.3604152641462637,0.362283972893861,0.3632853794181183,0.3653217596313561,0.3652123848515864,0.3708731872878741,0.3713084201471853,0.3733381677544114,0.3751564455569461,0.3796162574788529,0.379020979020979,0.3777249306381292,0.0,2.318262433040064,58.85510340586912,197.7908711063125,298.0417622794134,fqhc7_100Compliance_baseline_low_initial_treat_cost,8 -100000,95663,42557,400.9909787483144,6843,70.27795490419494,5303,54.827885389335485,2142,21.91024743108621,77.31532774038504,79.7070867642735,63.31028192710126,65.07613594851367,77.04774639705245,79.44249891862113,63.21136617663401,64.98122166108155,0.2675813433325942,264.5878456523718,0.0989157504672491,94.91428743211829,103.64068,72.92052751811934,108339.35795448604,76226.46950034951,289.67885,183.8788478026263,302198.22710974986,191601.6514249253,302.07847,145.07432715073108,312500.0888535798,148951.61142335573,3484.78067,1579.793712653638,3605090.463397552,1613738.5746355837,1238.76779,546.2151294485126,1275244.598225019,551301.4144864826,2098.60784,882.3574330227402,2150134.7229336314,885298.2315710635,0.37965,100000,0,471094,4924.516270658458,0,0.0,0,0.0,24640,256.94364592371136,0,0.0,27927,288.6905073016736,1922805,0,68979,0,0,0,0,0,51,0.5226681161995756,0,0.0,1,0.0104533623239915,0,0.0,0.06843,0.1802449624654286,0.313020604997808,0.02142,0.3189655172413793,0.6810344827586207,25.220558028756365,4.409800202355779,0.3252875730718461,0.2178012445785404,0.233829907599472,0.2230812747501414,11.092378380237417,5.686119281027813,22.950681563054243,12720.826111930988,60.0546662559722,13.664772075393584,19.596166253315964,13.824843710867237,12.96888421639542,0.5493117103526306,0.7471861471861472,0.6921739130434783,0.589516129032258,0.1056635672020287,0.7142857142857143,0.8900255754475703,0.8726851851851852,0.7370242214532872,0.1129707112970711,0.492914979757085,0.6740837696335078,0.6318638824439289,0.544689800210305,0.1038135593220339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0048460025547963,0.0067994073352412,0.0088696076240017,0.010955810546875,0.0133435192258721,0.01557463995757,0.0175374087125274,0.0199314823336912,0.0220881889118725,0.0240805694008573,0.0262349642017031,0.0285267521886283,0.0306646058732612,0.0328444173780204,0.0349153488949333,0.0371655925565203,0.0393042106464904,0.0409719260653844,0.0430640958832725,0.0576491114431083,0.0715407488064327,0.0853703334417867,0.0979123261148641,0.1098118265384737,0.1254498877926917,0.1383685864763846,0.1503137083630708,0.1620919643429744,0.1724341497971362,0.1857875789519067,0.1983583835058691,0.2103962551709122,0.2217272816819709,0.2324172495456297,0.2435136604141939,0.2532366707253047,0.263006853708768,0.2723660308810172,0.2804841704683524,0.2881187086610525,0.2944502985598876,0.3012343631539044,0.3082104605926709,0.3154957321076822,0.3216809956704617,0.3278791219805553,0.3334266945052707,0.3386050126287157,0.3438779553559635,0.3437836963554022,0.3443119961413904,0.3435478187328212,0.3436835019759413,0.3447321428571429,0.3439336063939129,0.3429282442264103,0.3441546718311477,0.3449819716673217,0.3459958565509358,0.3465615401902764,0.3468701807109811,0.3471551543145076,0.3489758415131549,0.3492423511244088,0.3500026154731391,0.3515358361774744,0.3549411129805403,0.3591461901216182,0.3607754987355999,0.3627708017110528,0.3623848296550246,0.3675235428862305,0.3673706196333256,0.3663035168195718,0.3666546373150487,0.3673719717877952,0.3701468517400925,0.3706371191135734,0.3773368943151469,0.0,2.355852209110536,59.45220143784606,201.17861003224937,298.5498229968341,fqhc7_100Compliance_baseline_low_initial_treat_cost,9 -100000,95620,42735,402.7190964233424,6757,69.44153942689813,5289,54.67475423551558,2161,22.12926166074043,77.3146043072854,79.73246850999921,63.296484254502126,65.08253648960991,77.04817924351474,79.46937379514198,63.19630241403412,64.98659887590361,0.2664250637706686,263.0947148572318,0.1001818404680108,95.9376137062975,104.71912,73.6444072977565,109515.68709475004,77017.55626203355,294.11482,186.9589460357716,306942.05187199335,194877.76201189245,303.58291,146.11721513936646,313494.9487554905,149718.00525772895,3502.85415,1586.0692240995377,3624041.2466011294,1619455.4633962957,1272.16807,556.041145071723,1315686.9692532944,566760.8931710025,2122.97574,898.880671236667,2177734.0305375447,904184.3629540328,0.3801,100000,0,475996,4977.985777034093,0,0.0,0,0.0,25038,261.15875339887054,0,0.0,28156,290.6295754026354,1912157,0,68582,0,0,0,0,0,49,0.4915289688349717,0,0.0,0,0.0,0,0.0,0.06757,0.1777690081557484,0.3198164866064821,0.02161,0.3203638908327502,0.6796361091672498,25.15230165189645,4.5578983296826925,0.3191529589714502,0.2102476838721875,0.2374740026470032,0.233125354509359,11.007683152230726,5.5246921766723895,23.154304795527683,12716.039639062532,59.71624946408236,13.046707379462978,19.070386550687346,14.00957393948256,13.589581594449465,0.5536018150879183,0.7868705035971223,0.7109004739336493,0.570859872611465,0.1103000811030008,0.7031828275351591,0.9333333333333332,0.8701923076923077,0.7054794520547946,0.1625441696113074,0.5022854240731336,0.7167553191489362,0.6588050314465409,0.5300829875518672,0.0947368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405915313142,0.004674934844997,0.0070958703861615,0.0090230147843316,0.011474609375,0.0133937665512324,0.0153711202456115,0.0175400960261518,0.0197706886500086,0.0220069430932606,0.0240105026718222,0.0264512218923666,0.0285485015894571,0.0304678886793813,0.032411899502467,0.0347722690378948,0.0368866047745358,0.0390792902602863,0.0412136220333163,0.0432732923789359,0.0580943222677481,0.0710252569165819,0.0855963707390838,0.0981104268645718,0.1099511257956572,0.1257108364837818,0.1383087219802401,0.1500074609366673,0.1619022146143147,0.1721388972452619,0.1855848079413034,0.1982786654237214,0.2102785406041585,0.221445476858345,0.2318318119680733,0.2427047606362314,0.252956959195081,0.2628085202299109,0.2719533540951558,0.2798646167966957,0.2877445359463497,0.2954678465248028,0.3019755074969799,0.3091585197624902,0.315659664427084,0.322028674630472,0.3270918079979973,0.3315945495489764,0.3372309843834978,0.342061479955633,0.3430126797191866,0.3427859532232975,0.3434749492213947,0.343482163539495,0.3435148625493556,0.3428667977390022,0.3425390674628382,0.3440518179121205,0.3454885862003813,0.3462758237623408,0.3472917956511135,0.3472148174476235,0.3486674197732312,0.3504728264514542,0.3518571839907861,0.3512081060015588,0.3523676880222841,0.3552919822244476,0.3592667739452879,0.3601283625846836,0.3623287049641528,0.3682871229390871,0.3709891779001329,0.3729601952112246,0.3706247647722996,0.3764031526152376,0.3791711935433804,0.379542670477746,0.3799944888399008,0.3801396431342125,0.0,2.392565749822804,59.4815309072893,193.94157469308752,303.60581106801743,fqhc7_100Compliance_baseline_low_initial_treat_cost,10 -100000,95647,42612,403.46273275690817,6687,68.79463025500016,5292,54.76387131849404,2120,21.78845128441038,77.29129418892526,79.69286434198759,63.29829466637945,65.0705690106176,77.0307049605343,79.4314948037435,63.2030273583717,64.97757706231985,0.2605892283909696,261.3695382440824,0.0952673080077488,92.99194829775104,104.46458,73.54999834376126,109218.8777483873,76897.33953366154,292.39814,185.59452360938212,305139.5025458196,193477.4372801643,302.79152,145.31600949404216,313153.0105492069,149292.3838083355,3481.60044,1568.8127746609896,3605366.357543885,1605772.7063223782,1293.29488,563.8880743388044,1337577.4148692586,575064.6559113904,2090.9276,869.8941916317548,2151001.641452424,879541.9876012541,0.37966,100000,0,474839,4964.494443108513,0,0.0,0,0.0,25056,261.3882296360576,0,0.0,28008,289.4183821761268,1914620,0,68704,0,0,0,0,0,41,0.4286595502211255,0,0.0,1,0.010455110981003,0,0.0,0.06687,0.1761312753516304,0.3170330491999402,0.0212,0.3241930876892316,0.6758069123107684,24.80748468271499,4.481618140075025,0.3331443688586545,0.2099395313681027,0.2237339380196523,0.2331821617535903,10.921989252894006,5.54026547362495,22.645702476179263,12637.926143274231,59.8507132058738,12.999704516417578,19.964632695287712,13.252180945192512,13.634195048975984,0.5521541950113379,0.7641764176417641,0.6920022688598979,0.5954391891891891,0.119935170178282,0.7204633204633205,0.9109195402298852,0.8651162790697674,0.7563636363636363,0.1487603305785124,0.4976232174130598,0.6972477064220184,0.63615903975994,0.5467546754675467,0.1129032258064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0043090337625468,0.0065466946804299,0.0089015343969108,0.0110490492323657,0.013107908540001,0.0153455553969451,0.0175832703657565,0.0195689514150171,0.0217168717875207,0.0236176060382311,0.0256763141137563,0.0276423266053535,0.0297381681041145,0.0315174414403253,0.0335212287324817,0.0354115281779177,0.037378131716383,0.0394751901447284,0.0412435622093871,0.0553668655749354,0.0691457602262609,0.0828791935737911,0.0952085219258541,0.1070991302879338,0.1228777678987256,0.1357445408125351,0.1493225682757445,0.1612341112453362,0.1722005732504589,0.1855896844306922,0.198222193350007,0.2102410621973118,0.2209182668097125,0.2313812787904167,0.2419598101406201,0.2527481120693507,0.2630405907381976,0.2717230887995822,0.2796791750214838,0.2879254457050243,0.2959872678548442,0.3028142322452267,0.3094786843557325,0.3153989319644312,0.3208136363075328,0.3267449584518781,0.3317275832186369,0.3370086911402257,0.3422842726756396,0.3428559872731685,0.3424971047261898,0.3416869034844976,0.3411783448715349,0.3415128354117314,0.3407312912100579,0.339900930365478,0.3404767399690086,0.3413232215778456,0.3421156467465385,0.3431389155515404,0.3440039741679086,0.3454070673461651,0.3465540100222467,0.3485601273455212,0.349903247738089,0.3506326949384405,0.3532115869017632,0.3546556706844294,0.3565724325187669,0.3585951094422566,0.3604644968838225,0.3611428571428571,0.3619135659810492,0.360973282442748,0.3620210322736613,0.3599124452782989,0.36625,0.3717012914093206,0.3750481324605313,0.0,2.182192633807533,57.10506406196431,208.70701468319768,296.3279061256129,fqhc7_100Compliance_baseline_low_initial_treat_cost,11 -100000,95641,42998,405.2550684329942,6821,70.24184188789326,5304,54.96596647881139,2123,21.904831609874424,77.27514686010801,79.68636444849969,63.27600815666828,65.05646534844949,77.01019434016926,79.41932275422411,63.178436018399495,64.95989252298381,0.2649525199387454,267.04169427557645,0.0975721382687879,96.57282546568524,104.2151,73.30934416877685,108964.64905218472,76650.31123553378,293.87558,187.08424770370203,306781.42219341075,195122.89468293104,308.32327,148.21287601595475,319259.5539569849,152546.1563633694,3486.62192,1580.7092520536332,3617684.66452672,1624906.8098970458,1297.86035,571.4271021297943,1344557.5537687812,585015.8845367517,2089.7512,879.2888326876774,2158227.0574335274,896225.6634220578,0.38269,100000,0,473705,4952.938593281124,0,0.0,0,0.0,25050,261.4046277224203,0,0.0,28503,294.8735374996079,1911304,0,68588,0,0,0,0,0,47,0.491421043276419,0,0.0,0,0.0,0,0.0,0.06821,0.1782382607332305,0.3112446855299809,0.02123,0.3187273234719509,0.6812726765280491,25.420361948958654,4.4625549662081205,0.3310708898944193,0.2117269984917043,0.2264328808446455,0.2307692307692307,11.112401118878084,5.659368528709996,22.83404643491892,12841.998688983616,60.147872803123406,13.255634563368092,19.722708931923613,13.511824270346018,13.65770503748568,0.553921568627451,0.7871772039180766,0.6913439635535308,0.5745212323064113,0.1225490196078431,0.6873614190687362,0.9141274238227148,0.8470588235294118,0.6914893617021277,0.1578947368421052,0.5082257656289547,0.7270341207349081,0.6416228399699474,0.5386289445048966,0.1118210862619808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349319507453,0.0049968073137853,0.0073055654203236,0.0097003555104113,0.0120831172001342,0.0144309108685025,0.0164273769221356,0.0185194638135394,0.0208663470090887,0.0229972149410222,0.0252838665340075,0.0272955147829302,0.02946623317832,0.0314790191409752,0.0332916843072665,0.0353381747460327,0.0371898256597359,0.0393706511579603,0.041405648400591,0.0433504009677453,0.0580980947503736,0.072843102328213,0.0862509059969117,0.0994996049512773,0.111729601267494,0.127848851986783,0.1404161264956538,0.1520782031191702,0.1631670198420343,0.1744064827452792,0.1876592253551535,0.2008219386040056,0.2125915591210324,0.2241241296123691,0.2346891483304274,0.2460846384538487,0.2563233055779389,0.2659211951615815,0.2751328773203738,0.2837240286216362,0.2918962816868728,0.2993700805874555,0.3065310530625808,0.3129175678923335,0.3185653237883049,0.32421850877518,0.3296315815891181,0.3347824978326278,0.3402057837711435,0.3456360290710759,0.3457460458959709,0.3455248085018287,0.3455189844820039,0.3456659619450317,0.3453086382991394,0.3447878936705752,0.3436077946376191,0.3442269736842105,0.3450632046463956,0.3464430513136509,0.3474546034965166,0.3486608998594588,0.3493996137375094,0.3512023486699088,0.3522918976237528,0.3532837185011098,0.354337899543379,0.3575100122985715,0.3604921731772669,0.3612473581369382,0.3627236217597663,0.3642578646584415,0.3682517658930373,0.3663343733353626,0.3665406427221172,0.3669823762138832,0.3659403492505022,0.3637108335039934,0.3671940049958368,0.3597232897770945,0.0,1.9006635284052835,60.17054352886044,200.1803598116384,300.2628021916192,fqhc7_100Compliance_baseline_low_initial_treat_cost,12 -100000,95678,42653,402.2554819289701,6743,69.20086122201552,5337,55.13284140554778,2132,21.83365036894584,77.28391542799022,79.68114171716249,63.28504443165552,65.05934426612212,77.01571089873704,79.41545348418323,63.18559379590924,64.96384648549966,0.2682045292531825,265.68823297925803,0.0994506357462796,95.49778062246617,104.28242,73.43549625822905,108993.10186249712,76752.75011834387,294.29844,186.616632530586,306946.36175505345,194400.3141062585,305.69726,146.8850466840388,315582.9971362278,150473.75004888608,3502.33033,1582.8898871814663,3621779.604506783,1615633.5282734444,1272.43049,563.4435373676566,1315286.032316729,574272.4736801104,2090.85994,877.2818259300783,2144713.2883212445,883265.3921632048,0.37944,100000,0,474011,4954.231902840778,0,0.0,0,0.0,25065,261.29308723008427,0,0.0,28399,292.87819561445684,1913064,0,68690,0,0,0,0,0,40,0.4180689395681348,0,0.0,0,0.0,0,0.0,0.06743,0.1777092557453088,0.3161797419546196,0.02132,0.320944036178632,0.679055963821368,25.134900431231905,4.4622253260738205,0.332958590968709,0.213790519018175,0.2237211916807195,0.2295296983323964,11.16516340152023,5.706398149833391,22.706929239449348,12742.893687513271,60.36028745456941,13.465669951843443,20.003727466260383,13.300530678480692,13.590359357984898,0.5510586471800637,0.7861524978089395,0.6933033202025887,0.567001675041876,0.110204081632653,0.7143933685003768,0.9425981873111784,0.8741092636579573,0.7605633802816901,0.1786941580756013,0.4970074812967581,0.7222222222222222,0.6371681415929203,0.5065934065934066,0.088865096359743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022091161508684,0.004452693930542,0.006822542818563,0.0090649485269458,0.0112633924483379,0.0134055904164289,0.0155846805038502,0.017730931078155,0.0200051137816415,0.0220143825933741,0.0241602888975521,0.0260367432493526,0.0282362626054743,0.030371736867599,0.0325784008092986,0.0345722677256556,0.0366912587557508,0.0385733266899186,0.0405046964228132,0.0427006576547468,0.0582483703827511,0.0723364603400619,0.0856920961766527,0.0984921027432576,0.1106830751044876,0.1265812065333601,0.1394286927896357,0.1514522158673355,0.1632299650450566,0.1745915892063628,0.1879439887028792,0.2010941985807919,0.21328237292565,0.2240367133250093,0.2342599532648472,0.2448682793609911,0.2549504120218701,0.2644844222011813,0.2733277249784002,0.2817982581955456,0.2890741878993819,0.2966550947644961,0.3034387830173007,0.3096833861823772,0.3161452180584818,0.3214898793424969,0.3271336301498714,0.3323945815758286,0.3364804751838354,0.3405809545196359,0.340314771608518,0.3409438511884257,0.3418137227265039,0.3424631794990388,0.3430753655123127,0.3419876863551918,0.341974093593244,0.3433677495725371,0.3451418391119638,0.346616756814844,0.3463993222253601,0.3480846493496161,0.3489408435236225,0.3500597371565113,0.3519724057520404,0.3515842572644632,0.3513985513470182,0.3540242976461655,0.3559226515445035,0.3584950684059815,0.3615279048490393,0.3621497816128688,0.3628135017914388,0.3658960411000302,0.3683620044876589,0.3667337040104105,0.3711104331909701,0.3709024686361797,0.3786949247071946,0.3834355828220859,0.0,2.5770153940673564,58.19353658116184,207.63201225584524,298.3819477363653,fqhc7_100Compliance_baseline_low_initial_treat_cost,13 -100000,95674,42553,402.073708635575,6854,70.49982231327215,5355,55.58458933461546,2153,22.23174530175387,77.35161970545354,79.75654376671962,63.31721993396855,65.09395202734919,77.08394116959636,79.48512316161238,63.2198472325298,64.99700546864675,0.2676785358571862,271.4206051072381,0.0973727014387506,96.94655870244162,104.65796,73.61078628173885,109390.17915003032,76939.17499188792,292.34801,185.21434646569364,305094.73838242365,193116.9141728093,305.00935,146.39051565057983,316308.1087860861,151200.82731534063,3549.99957,1600.7716771671464,3684994.293120389,1647630.021915197,1310.92873,572.42573859233,1361756.3496874804,589861.1729334297,2131.31366,886.1652489706463,2201556.9120137133,904169.2860833054,0.37946,100000,0,475718,4972.280870455923,0,0.0,0,0.0,24934,260.20653469072056,0,0.0,28215,292.4200932332713,1917330,0,68747,0,0,0,0,0,60,0.616677467232477,0,0.0,0,0.0,0,0.0,0.06854,0.1806250988246455,0.3141231397723957,0.02153,0.3205448985265499,0.6794551014734501,25.134742480691305,4.489794135307866,0.323062558356676,0.2121381886087768,0.2280112044817927,0.2367880485527544,10.884731885853665,5.3801497959430895,22.979280159268416,12697.533730301591,60.404211027642575,13.45435165844076,19.557896952471364,13.3732664438535,14.018695972876962,0.5380018674136321,0.7640845070422535,0.6901734104046243,0.5503685503685504,0.1159305993690851,0.6992700729927007,0.9234828496042216,0.8549107142857143,0.6853932584269663,0.1521739130434782,0.4825595984943538,0.6842800528401585,0.6326053042121685,0.5125786163522013,0.1058467741935483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897437715929,0.0046443238858185,0.006860576044817,0.0093777940339754,0.0114231657325372,0.013424322672642,0.015765053790853,0.0177880344324064,0.0199182004089979,0.0222165318037488,0.0244167675482692,0.0263579752142548,0.0283820775104451,0.0302995938060578,0.0321131241349391,0.0339965030985857,0.0357261307574312,0.0376829648084708,0.0395959259683107,0.0417796221378821,0.0560478140934548,0.0699934037629961,0.0832213778915991,0.095711098951976,0.1080259616906759,0.1237179962108783,0.1367583980974221,0.1488622435385025,0.1606329032672186,0.1718494974658534,0.1850941321084298,0.1985289338561865,0.211108934169279,0.2218695618864166,0.2321694030590333,0.2428139099202962,0.2525473721844833,0.2622928674351585,0.2717457938832505,0.2802432516004902,0.2885649835155301,0.296705865849952,0.3045745913853868,0.3107887991951517,0.3166417810796703,0.3219650332430436,0.327767640662884,0.3332867434975413,0.3382714134284754,0.3436693187206913,0.3437949821752875,0.3437104843586783,0.3435981920331179,0.3430606318891666,0.343573052744215,0.3426453470563009,0.3421669199594731,0.3424943325557709,0.3437206040807949,0.3446043808672329,0.3461134059331581,0.3465381799473653,0.3480114232917559,0.3493078694903504,0.3498702671535652,0.3513991930235585,0.3517726858185134,0.3534113796576032,0.3554142811984124,0.358664546899841,0.3623095867919365,0.3646075735138566,0.3700584501288417,0.3703590760082336,0.3722682743029389,0.3726596255400864,0.3743995041066171,0.3804081632653061,0.3808226641242168,0.3825757575757575,0.0,1.4784852545656786,61.16372042599534,200.61787963570157,300.8998645091163,fqhc7_100Compliance_baseline_low_initial_treat_cost,14 -100000,95797,42908,404.1045126674113,6826,70.0857020574757,5344,55.2731296387152,2162,22.19276177750869,77.3507064425629,79.67895048370701,63.34838135415546,65.07003765589481,77.07978666567932,79.40693959612125,63.2489164506655,64.97215687855909,0.2709197768835736,272.01088758576475,0.0994649034899595,97.88077733571754,104.47096,73.49744248497116,109054.52154034052,76722.07113476536,293.66522,186.1419462656136,306030.9821810704,193803.1247034624,302.86175,145.55057777060375,313176.1641805067,149591.29045249842,3536.71735,1595.8859560016876,3661225.288892136,1636062.360753022,1286.61408,559.8781396374912,1329754.459951773,571133.6885680042,2131.04418,895.1704566792505,2190570.2475025314,907596.8818379164,0.38226,100000,0,474868,4957.023706379115,0,0.0,0,0.0,24984,260.25867198346504,0,0.0,28080,290.0925916260426,1919668,0,68899,0,0,0,0,0,55,0.5741307139054459,0,0.0,1,0.0104387402528262,0,0.0,0.06826,0.1785695599853503,0.3167301494286551,0.02162,0.331665276619405,0.668334723380595,25.344141631901007,4.526715763382531,0.3295284431137724,0.2133233532934131,0.218001497005988,0.2391467065868263,11.076438533407844,5.591312473501798,23.21712471842461,12775.71038512587,60.18655962507542,13.215749101431312,19.83957898770004,13.022635039080404,14.10859649686368,0.5404191616766467,0.7350877192982456,0.6871095968199886,0.5982832618025751,0.1118935837245696,0.6925925925925925,0.8997214484679665,0.8458049886621315,0.7441860465116279,0.160958904109589,0.4889834752128192,0.6594110115236875,0.634090909090909,0.5567805953693495,0.0973630831643002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0045417680454176,0.0067987863658964,0.0088676255485129,0.011052139254921,0.0135298848585419,0.0158269128857364,0.0180322682695349,0.0201007592711814,0.0222267703643061,0.0243457589605918,0.0265652896632395,0.0288265882884919,0.0309643415959812,0.0326771775332804,0.0348760330578512,0.036949278811332,0.0390504327994609,0.0410816648666611,0.0431292941911305,0.0585774058577405,0.0722575383714608,0.0859748427672956,0.0987074401008827,0.1108394372134689,0.1262512552190687,0.1391380882696019,0.1514574265433609,0.1627772914576083,0.1739899260529418,0.1869275558856134,0.1995374423153822,0.2115018959766181,0.2224382995924878,0.2329005090541268,0.2437966701698102,0.2537469773454128,0.263787002190642,0.272657215063634,0.281372302199437,0.28938279020874,0.2966320486910199,0.3040448614052314,0.3110206037374221,0.3170592520641088,0.3235743506333481,0.3286833149834851,0.3339230935682191,0.3384962347543193,0.3425973580373992,0.3433537061468458,0.3432410479507689,0.3439306358381503,0.344307131280389,0.3443561823158396,0.3438669693808676,0.343449085457747,0.3442663459796056,0.3459943094168866,0.3466458826058912,0.3482942992695233,0.3498093573754865,0.3512220817530552,0.3517078119715928,0.3535868855629971,0.3540545507048539,0.3558167605471893,0.3592633751389109,0.3614940288458131,0.3630076750879437,0.3670227461092181,0.368949328152825,0.3697237145049885,0.3724517479265173,0.3762018086625416,0.3766999638945721,0.3783361947869518,0.3852904304220643,0.3888099971598978,0.392319873317498,0.0,1.8999625769230333,59.80049090866437,195.8627507710579,308.55755698234924,fqhc7_100Compliance_baseline_low_initial_treat_cost,15 -100000,95729,42408,399.5341014739525,6891,70.69957901994171,5384,55.59443846692225,2155,22.03094151197652,77.31652017658898,79.67711409244647,63.31665033110207,65.0622980667523,77.04688019628645,79.41036540761229,63.217376740973926,64.96753834016046,0.2696399803025286,266.7486848341838,0.099273590128142,94.75972659184606,104.25888,73.32944151621138,108910.445110677,76601.07335939097,293.87617,187.1943973750207,306370.9847590594,194929.54838661297,308.23038,149.13959992137293,317806.8088040197,152611.3754584284,3543.30949,1607.018946832393,3663568.08281712,1640888.912275687,1292.30952,567.5735766764845,1333006.006539293,575935.5855346699,2114.37044,883.931957741163,2165173.4166240115,886241.6460678141,0.37734,100000,0,473904,4950.474777758046,0,0.0,0,0.0,25021,260.7255899466202,0,0.0,28526,293.8399022239865,1915666,0,68818,0,0,0,0,0,56,0.5849846963824964,0,0.0,0,0.0,0,0.0,0.06891,0.1826204484019717,0.3127267450297489,0.02155,0.3207443142660234,0.6792556857339765,25.017518493028927,4.442151347099607,0.3307949479940564,0.2161961367013373,0.2273402674591381,0.225668647845468,11.159027184009997,5.758793043982767,23.063739534612694,12634.346316287834,61.08020175811914,13.628569543020369,20.184659101907485,13.857228877421862,13.409744235769422,0.5507057949479941,0.770618556701031,0.6956765861875351,0.5661764705882353,0.1119341563786008,0.7164835164835165,0.9224598930481284,0.8606741573033708,0.7006578947368421,0.152892561983471,0.4944015924359293,0.6987341772151898,0.6407185628742516,0.5217391304347826,0.1017471736896197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002603296157859,0.0045822730913109,0.0067698553666582,0.0094191044230163,0.0116678873697916,0.0136984906198439,0.0157567845960857,0.017952881345547,0.0200509197247471,0.0223496288712567,0.0242291878146564,0.0263068724393925,0.0286898310487727,0.0306656231979569,0.0327089307449508,0.0346851268275042,0.0366141487753876,0.0383183095961743,0.0405609089302606,0.042568707936574,0.0574035791100252,0.0710959491842906,0.0840036495967615,0.0961754839795156,0.1078422068267375,0.123020783753768,0.1358823654225636,0.1482482940694295,0.1602632591136373,0.1712317744375422,0.1846014629364301,0.1973832301631964,0.2090878440840919,0.2198943719724886,0.2301874745428725,0.2408281793797521,0.2508877721943048,0.2603528988116673,0.2697459531863691,0.2782456260956243,0.2861110789635099,0.2932313235534966,0.3000461718777747,0.3061366471547836,0.3128502485929275,0.3191757156959526,0.3249232696523645,0.3302340983773594,0.334996112982638,0.3401191592797601,0.3405815662114614,0.3415071440392784,0.3417664268652919,0.3421697579651087,0.342730633907806,0.3419600731531144,0.3417822033763718,0.3421625544267053,0.3432500171667925,0.3438297107957607,0.3450238395869061,0.3461966236345581,0.3464505522299975,0.3470425450536594,0.348415961305925,0.3510663352086877,0.3516958863297811,0.3540417744683536,0.3572233570472635,0.3594534300055772,0.3636529847335222,0.3686685189142979,0.3705811673939164,0.372048743335872,0.3724196436987463,0.379045792375929,0.3834132755686213,0.3824790688176434,0.3855589629216615,0.3848543689320388,0.0,2.581843249397476,59.602702623966174,209.0446167817496,300.3727188357091,fqhc7_100Compliance_baseline_low_initial_treat_cost,16 -100000,95676,43011,404.9709436013211,6898,70.82235879426398,5370,55.52071574898616,2217,22.83749320623772,77.40264542862671,79.78478304467295,63.35728834693722,65.11262386130244,77.13396008923309,79.51251435977382,63.25942810854335,65.01559664400601,0.2686853393936275,272.2686848991316,0.0978602383938707,97.0272172964286,104.05978,73.21031816146878,108762.44826288724,76518.78335577236,293.73709,186.3948343019634,306400.52886826376,194207.89646406972,306.55997,147.62229555089937,316281.3767297964,151181.9735856117,3533.23591,1598.9190501698515,3656330.479953176,1634654.2156767126,1302.03758,573.4912538925697,1347249.8536728125,585812.06737551,2177.98604,899.2214418079783,2245046.8037961456,914171.113381736,0.38384,100000,0,472999,4943.747648313057,0,0.0,0,0.0,25033,260.9954429533007,0,0.0,28403,292.7066348927631,1921616,0,68923,0,0,0,0,0,62,0.6375684602199089,0,0.0,1,0.0104519419708181,0,0.0,0.06898,0.1797102959566486,0.32139750652363,0.02217,0.3289582757667864,0.6710417242332136,24.945275292595564,4.457392574608486,0.3363128491620111,0.2108007448789571,0.2216014897579143,0.2312849162011173,10.864094528367742,5.527392078492823,23.40518934380032,12826.829408753065,60.78721910452197,13.45777308042504,20.44266611180812,13.309958468477294,13.576821443811514,0.5471135940409684,0.7782685512367491,0.6810631229235881,0.5882352941176471,0.1022544283413848,0.7172848145556333,0.9166666666666666,0.8616352201257862,0.7097902097902098,0.1434108527131783,0.485409794468409,0.7002762430939227,0.6162528216704289,0.5497787610619469,0.0914634146341463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885844193982,0.0047634974206168,0.0069791032663826,0.0094654844967145,0.0116228226273883,0.0136855181964442,0.0160571737335222,0.0181873851806491,0.0203568581764669,0.0225860922069283,0.0248162612626464,0.0269282495097888,0.0290561381863047,0.0308969381134329,0.0330375567478332,0.0351096595489592,0.0372146000517732,0.0394545680959694,0.0414668899312525,0.0437021210068268,0.0575410298465363,0.071860112036019,0.0846205507051712,0.0969526754815025,0.1094621818603719,0.1257961446496963,0.1394082815119808,0.1518538626129722,0.1640058985702378,0.1745755986659374,0.1886111799101902,0.2013807730597757,0.213196755181488,0.2245071993177867,0.2347713223485932,0.2460892957964773,0.2570804400405711,0.2665318730693625,0.2757999660191425,0.2841283270831428,0.2917200688166083,0.2985844487752506,0.3047935094535706,0.3118441676537803,0.3179491533647082,0.3236423612820639,0.3293276144505996,0.3354930507914729,0.3407319311762348,0.3450119859856168,0.3452998575307115,0.3456786734021524,0.3457718083088638,0.345672072072072,0.3456815755131095,0.3440439231039809,0.3435847921744911,0.3445064871078995,0.3457529385673098,0.3464880198390751,0.3479295484354506,0.3491860144270566,0.3496627618033369,0.3507064574451463,0.3531987585111758,0.3548841945844322,0.3551559507132851,0.3588742680853743,0.360366390699313,0.3644692292372037,0.3646100329549615,0.3672222519963556,0.3680238457635718,0.368505623995715,0.3685510688836104,0.3685395922238027,0.3684373069796171,0.3652439024390244,0.3704620462046205,0.3666793457588436,0.0,2.309234619159532,63.07757048377344,195.72454202459485,300.7558984539681,fqhc7_100Compliance_baseline_low_initial_treat_cost,17 -100000,95718,42443,399.2770429804216,6952,71.25096638040911,5399,55.71574834409411,2196,22.493156981967864,77.33907921770925,79.70506067541658,63.32552877917672,65.07516895284586,77.0620867536519,79.43236912109629,63.22172669115096,64.97663973744156,0.2769924640573578,272.69155432028924,0.103802088025759,98.52921540429804,103.27306,72.65118318161217,107893.0399715832,75901.27581187672,293.70025,186.2515281867012,306170.4277147454,193914.92528751245,303.57678,145.80024475382493,313042.01926492405,149168.31132060298,3597.91698,1630.1621291704464,3713487.891514658,1657704.3912017003,1329.53199,581.5408092846982,1370015.1068764497,588607.425912904,2157.45566,911.437471068273,2211278.0877159988,913898.9435922436,0.37805,100000,0,469423,4904.229089617417,0,0.0,0,0.0,24989,260.35855325017235,0,0.0,28166,290.20664869721475,1923377,0,68997,0,0,0,0,0,58,0.6059466349067051,0,0.0,0,0.0,0,0.0,0.06952,0.183891019706388,0.3158803222094361,0.02196,0.3348354499522054,0.6651645500477946,25.15070370867836,4.530589531245351,0.338395999259122,0.1954065567697721,0.2322652343026486,0.2339322096684571,11.0468275686043,5.579784179040324,23.49712773316705,12711.439851147865,61.01033543601528,12.380565568842648,20.583317106967414,14.12147884298167,13.92497391722355,0.5456566030746435,0.7772511848341233,0.6765188834154351,0.5877192982456141,0.1211401425178147,0.7080561714708056,0.9055555555555556,0.8513513513513513,0.7446043165467626,0.1734317343173431,0.4913494809688581,0.7107913669064748,0.6203904555314533,0.5430327868852459,0.1068548387096774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022889321017663,0.0045321815305998,0.0067293931366279,0.0087688993659567,0.0108338504420007,0.0131582967542189,0.0154795288839035,0.0176112058316062,0.0196629787930223,0.0220510667062691,0.0243267081000143,0.0264476900638852,0.0286119795951949,0.0305172058520502,0.0326499855485362,0.034560138985119,0.0369948304619432,0.0391892312642055,0.0412662756354257,0.043260364462319,0.0579236456288375,0.0718979553397651,0.0852295367321687,0.0985203024598525,0.1105533467618615,0.1260419752041636,0.1385160585258199,0.1506287734392469,0.1622508416608774,0.172624349412459,0.1857660221173123,0.198316943204956,0.2105515169982153,0.2216713183385322,0.2325061406117481,0.2440809537011366,0.2537923638882062,0.2632888588639306,0.2724867724867725,0.280486966091203,0.2886665972005141,0.2958771693719207,0.3027714008472771,0.3089218529080496,0.3150922778047595,0.3216998436557471,0.3274543136421589,0.3319991359483602,0.3371996793131093,0.3420632722765096,0.3431081099258821,0.3429342067238223,0.3430800045136538,0.3433648568407942,0.3439645032087074,0.342523550891405,0.3414185319732855,0.3430834856794637,0.3432513126737362,0.3432728708039543,0.3440926960480033,0.3457534355232108,0.3462257217847769,0.3466232892079874,0.3478658609980982,0.3494063926940639,0.3495509410216806,0.3524411439405909,0.3560996260495307,0.357605048729829,0.361018115111213,0.3615149401856123,0.3647942937205451,0.368360188111942,0.3697749196141479,0.3731414868105515,0.3738098954268768,0.3725570870191318,0.3766088416340235,0.3705996131528046,0.0,2.653369276027344,59.07113325179527,208.12156688715544,302.70500256246913,fqhc7_100Compliance_baseline_low_initial_treat_cost,18 -100000,95694,42760,402.49127427006914,6900,70.88218697096997,5347,55.37442263882793,2092,21.52695048801388,77.30793472821749,79.68325990316478,63.31631099018998,65.06984090172872,77.0479059241601,79.42212786983787,63.22032159099464,64.97550487626084,0.2600288040573844,261.13203332691626,0.0959893991953464,94.33602546788222,103.43234,72.76626079055282,108086.5467009426,76040.56763282215,291.56135,184.6521140694602,304183.616527682,192463.72193602548,303.7793,146.022450671732,314219.3345455305,150115.5393202936,3513.2208,1581.1730899529082,3639595.2828808497,1620610.0695476283,1286.83181,561.7633855508531,1330469.172570903,572834.7107491837,2059.305,863.270273271887,2120417.2884402364,876063.12164264,0.38215,100000,0,470147,4913.024850042845,0,0.0,0,0.0,24837,259.0235542458252,0,0.0,28131,290.7183313478379,1922492,0,69031,0,0,0,0,0,52,0.5433987501828745,0,0.0,0,0.0,0,0.0,0.069,0.1805573727593876,0.3031884057971014,0.02092,0.3220667682504502,0.6779332317495498,25.2442069645911,4.429462265106074,0.3357022629511876,0.2124555825696652,0.2236768281279222,0.228165326351225,11.111402785658331,5.665652078000576,22.39534634473165,12823.1361971178,60.30272361891766,13.473007739542275,20.26263472865343,13.1782301932207,13.388850957501267,0.5507761361511128,0.7658450704225352,0.6947075208913649,0.5593645484949833,0.130327868852459,0.7191265060240963,0.9289340101522844,0.8518518518518519,0.6904761904761905,0.188,0.4951480467778054,0.6792452830188679,0.6449009537784299,0.524364406779661,0.1154639175257732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882368426381,0.0046512099225811,0.0068777325799612,0.0092223937596489,0.0114107883817427,0.0136043338356889,0.0159068430014989,0.0179581419091373,0.020037211965078,0.0221617139756988,0.0243982449665805,0.026796989702153,0.029155868196964,0.0314309261357783,0.0332483721506186,0.03511837072263,0.0370520033570607,0.0390257576229482,0.0409029439300946,0.0435643770784033,0.0583276753538413,0.0737596818086665,0.086209790796735,0.0993489624417589,0.1109283741328779,0.1262888505832214,0.1396032251220029,0.1517835283097197,0.1633956902169848,0.1741579060287492,0.1880903402298355,0.2008287173273325,0.2129327592205984,0.2238187405001695,0.2349653427219716,0.2462944499833831,0.2563020990258109,0.2661468178954001,0.2752570533626892,0.2835195050695996,0.2909202496612897,0.2984954137027331,0.3064181949492677,0.3133151750038996,0.3194973297161835,0.3245575057394653,0.3303409105156914,0.335853916680481,0.3401199781857844,0.3447039839161949,0.3452634703073146,0.3452671660941186,0.3452143815780179,0.3451255581975294,0.3462972352292046,0.3457863528833451,0.3442516131082928,0.3447900338255919,0.3453002610966057,0.3456039323323108,0.3468607585401679,0.3475512800127206,0.3480804849301229,0.3488800107734434,0.3506923467291752,0.3521722010762567,0.3525313915486497,0.3543426672994779,0.3557239474522857,0.3564356435643564,0.3588848573921829,0.3617749264902432,0.3640228426395939,0.3660632095734888,0.3680227057710501,0.367995240928019,0.3670059243506,0.368336350834842,0.3719231809575331,0.3856552760045062,0.0,1.9020491547370275,58.70628211916869,202.5853405226352,305.615715424425,fqhc7_100Compliance_baseline_low_initial_treat_cost,19 -100000,95711,42884,404.0705874977798,6907,70.93228573518195,5419,56.07505929308021,2179,22.41121710148259,77.38171245272493,79.75467853322044,63.34258245905804,65.0948398347894,77.11360299712804,79.48627508765749,63.243559188417045,64.99778051653004,0.2681094555968855,268.4034455629529,0.0990232706409983,97.05931825935464,104.62144,73.61027784122398,109309.73451327434,76908.90058741835,295.9007,187.90338088590357,308629.6141509336,195792.7206756836,313.36918,150.7674270015551,324087.27314519754,154910.63901982942,3567.94601,1614.9424670379,3696627.754385598,1656106.243836028,1299.33793,566.7893825820801,1342895.6650750698,577520.16234506,2138.9632,892.2832676613897,2202974.370761981,904929.576180226,0.37896,100000,0,475552,4968.624296057925,0,0.0,0,0.0,25115,261.8507799521476,0,0.0,28865,298.1997889479788,1915321,0,68706,0,0,0,0,0,65,0.6791277909540179,0,0.0,1,0.010448119860831,0,0.0,0.06907,0.182261980156217,0.3154770522658173,0.02179,0.3192423826516607,0.6807576173483393,25.2757632107143,4.445382998722239,0.3242295626499354,0.2146152426646982,0.2362059420557298,0.2249492526296364,11.090219498704904,5.670394870407456,23.127262694002805,12684.248476950444,61.00184621831673,13.611588587450951,19.88348991487366,14.174916041277172,13.331851674714958,0.5528695331241926,0.7687016337059329,0.701195219123506,0.56875,0.1164889253486464,0.7108167770419426,0.9257294429708224,0.856492027334852,0.6993243243243243,0.1376518218623481,0.5,0.693384223918575,0.6494688922610015,0.5294715447154471,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370118295251,0.0044399841863576,0.0068291593944067,0.0090100156430936,0.0112293264438431,0.0133401221995926,0.0157328575070099,0.0179672506023112,0.020169080890997,0.022837547343638,0.0248403268302184,0.0269096509240246,0.0289695598519127,0.0311811120954284,0.0332707271263751,0.0351530190239867,0.0371290974056237,0.0390681747431773,0.0409659605004524,0.0430700291788245,0.0577306668059109,0.0715624182151269,0.0849298109406802,0.0971461031105687,0.1091035661171407,0.1249722413154972,0.1386510487952382,0.1512722239965932,0.1628423706362432,0.1739321648467165,0.1879552605491142,0.200575919631065,0.2120585964263575,0.2229084906588541,0.2329512957015266,0.2434844223998583,0.253546573875803,0.262844738381248,0.2720363017583664,0.279840575394553,0.2877478040481894,0.2951653646442438,0.3022212223827227,0.308136816487034,0.3140638481449525,0.3193614004807988,0.3247409780269282,0.330349981539715,0.3351991500168442,0.3405170707244005,0.3405280945776724,0.3411319716663228,0.3412720768429058,0.3414785520466485,0.3418113867920331,0.3417798902660818,0.33982824336934,0.340806660438894,0.3416974924569149,0.3421118322516225,0.34264254139507,0.343670936116382,0.3444576877234803,0.3443989895602798,0.346353665576294,0.3475862068965517,0.3486658701712465,0.3535090743817196,0.3554225302807533,0.3550509253755003,0.3563824947684469,0.3574578883043732,0.3602787456445993,0.3614365571636419,0.3654918265142209,0.370493753718025,0.3657300783049286,0.3655299162752706,0.3639664804469273,0.3635652853792025,0.0,2.1509477414723874,59.78552897328181,207.1440775632816,303.1781921003147,fqhc7_100Compliance_baseline_low_initial_treat_cost,20 -100000,95848,42599,401.3124947834071,6808,69.82931307904181,5322,54.82639178699608,2111,21.575828394958684,77.44506122741345,79.72387839225932,63.40474875222951,65.0846152882204,77.18788219704413,79.47095589102577,63.30961888994176,64.99481596084333,0.2571790303693149,252.92250123355583,0.0951298622877487,89.79932737707941,104.24722,73.343884152423,108763.0623487188,76521.03763502941,293.90932,186.2672593989472,305952.7272347884,193647.76458449545,303.33053,145.3660866011299,313023.95459477504,148951.73288005442,3510.21134,1574.5026690479729,3614785.848426676,1595665.062658623,1309.20497,564.7140080286297,1346104.7387530257,569528.2549107724,2090.4108,864.2613490987168,2137690.8855688176,862957.116500685,0.38032,100000,0,473851,4943.7755613054005,0,0.0,0,0.0,25033,260.45405224939486,0,0.0,28168,290.324263417077,1922406,0,69024,0,0,0,0,0,38,0.3964610633503047,0,0.0,0,0.0,0,0.0,0.06808,0.1790071518721077,0.3100763807285546,0.02111,0.3180551685706325,0.6819448314293675,25.201290814597897,4.528642783461933,0.3369034197670049,0.2113866967305524,0.2153325817361894,0.2363773017662533,10.970218027777909,5.325010712713558,22.1495702267798,12720.502949802736,59.831569908196,13.184736312551337,20.266457276903516,12.701380843465532,13.678995475275633,0.5409620443442315,0.7608888888888888,0.6977133296151701,0.5410122164048866,0.1208267090620031,0.7122026093630084,0.8876404494382022,0.8599562363238512,0.7,0.1608695652173913,0.4854441403334162,0.7022106631989596,0.6422155688622755,0.4943566591422121,0.1118677042801556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021862790744751,0.0043659275316808,0.0066414528051265,0.0088506353781819,0.0111569492145426,0.013185337416447,0.0153589179499714,0.017467649668084,0.0194222344759979,0.0217180134766204,0.0237763669875076,0.0261627608840572,0.0281934615819151,0.0302419354838709,0.0324754270642296,0.0345795743099568,0.0366524634923261,0.0386943005181347,0.0406150396079693,0.0423512762614332,0.0570936962302518,0.0707225844199264,0.0839668279198341,0.0967027662343113,0.1087917175203063,0.1242637900825399,0.1366880572675095,0.1487892214678099,0.1605988866850086,0.1721480783843659,0.1855318874535176,0.1986566164877648,0.2107411548858467,0.2217891185430246,0.2321110793769361,0.2433831990794016,0.2533970950517785,0.2627580549093647,0.2730869964512069,0.2817402647930517,0.2899715521428406,0.2975080978051148,0.3044831217388217,0.3106160365839059,0.3162410796640613,0.323042632317809,0.3284335207282106,0.3335878348285296,0.3384715025906736,0.34284470476492,0.3432616858907926,0.3431756636012482,0.3437385753255153,0.3440080709086978,0.3445216335115759,0.3438134338608996,0.3429098826202196,0.3445415275868839,0.3455988824721895,0.3465075327724515,0.346799835409419,0.3488532880311321,0.3483906096207409,0.3496705015078744,0.3511157014868013,0.3525110590684361,0.3521383075523203,0.3546453232893911,0.357517299224156,0.3610406091370558,0.3633210096307454,0.3634376499440209,0.3641928562413227,0.3672385935215819,0.3682711478211335,0.3704859028194361,0.3741655022512032,0.3796334860474802,0.3759483000842933,0.3724409448818898,0.0,2.6831819602334748,56.89659692249879,203.966178329007,301.2694035785043,fqhc7_100Compliance_baseline_low_initial_treat_cost,21 -100000,95695,42824,403.83510110246095,6766,69.51251371545013,5294,54.84090077851508,2141,21.996969538638385,77.29747507811412,79.70091147653076,63.28577397120039,65.06586018444182,77.03230720077904,79.4359300726105,63.18843271016954,64.97125040293201,0.2651678773350738,264.9814039202596,0.0973412610308486,94.6097815098028,104.8971,73.72951206437875,109615.84199801453,77046.12786914548,293.59186,186.6462076756393,306298.2182977167,194551.6555451714,306.97845,147.65752883112845,318450.9953498093,152441.4409839122,3494.64418,1573.299414470971,3618871.5502377343,1611691.4857339975,1266.39748,552.928500159911,1309537.5202466168,564912.1055327132,2101.1155,874.2367208451672,2159529.609697476,882666.7049337635,0.38066,100000,0,476805,4982.538272637024,0,0.0,0,0.0,25004,260.76597523381577,0,0.0,28381,294.2264486127802,1909984,0,68654,0,0,0,0,0,61,0.6374418726161242,0,0.0,0,0.0,0,0.0,0.06766,0.177743918457416,0.316435116760272,0.02141,0.3336608646827625,0.6663391353172375,24.71111167574073,4.458045758849456,0.3290517567057046,0.2145825462788061,0.2276161692482055,0.2287495277672837,10.946219682401065,5.574432589647207,22.818373531899358,12754.453075904476,59.75532479945383,13.368668311630936,19.7632661569104,13.369957890051356,13.253432440861143,0.55043445409898,0.7772887323943662,0.6928817451205511,0.5759336099585062,0.1073492981007431,0.7238749046529367,0.9164420485175202,0.8643326039387309,0.7182539682539683,0.1428571428571428,0.4933467235751946,0.7098039215686275,0.6319066147859922,0.5383001049317944,0.0989795918367346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021889821233126,0.0045239689205363,0.0067211533580384,0.0089828269484808,0.0108744303385416,0.0130477296339302,0.0152278568805842,0.0172688466330344,0.0193910633380038,0.0215461183193208,0.0237247802406326,0.0259086519693451,0.0279418118968745,0.0302230923798237,0.0322031098354223,0.0346404079479514,0.0365560415414274,0.0386057088269803,0.0404294721072015,0.0426671669167917,0.05743296179841,0.072085086782656,0.0853821051195685,0.0979119549781728,0.1101793248945147,0.1248690794833003,0.1372436632276143,0.1498237430375837,0.1624413245939501,0.1741567002340411,0.1877945410820778,0.2006872405233434,0.2122915373135954,0.2230074726623277,0.2336243578719933,0.2450763922021148,0.2560829766069453,0.265154843579258,0.2744708168111529,0.2828469245053761,0.290782278246362,0.2972551867949063,0.3035534438427906,0.3100417807232387,0.316291635735235,0.3223787360649868,0.3277584845103619,0.3329932536696721,0.3378996026696444,0.3425565700674871,0.3439099836554957,0.3443641838045385,0.3444315578060026,0.344365002247908,0.3445960032164875,0.3436085495527289,0.3431631990112032,0.3440595279160302,0.3446609402482966,0.3455976863753213,0.3471164105347883,0.3473821420812513,0.3482861213543413,0.3488117328802343,0.3496511907625692,0.3520120934111759,0.3516987800706875,0.3531540034607519,0.3565929623510387,0.360553413111756,0.3632833911931299,0.363975089157396,0.3692550505050505,0.3727030118185284,0.3763076053152389,0.3792817352139386,0.3811431212448005,0.3873397109708935,0.3881996140060656,0.3890168970814132,0.0,1.7840773561225178,58.09577199698432,204.78713032609903,297.97371027740746,fqhc7_100Compliance_baseline_low_initial_treat_cost,22 -100000,95822,42838,403.0076600363173,6739,68.97163490638893,5242,54.0481309093945,2191,22.40612802905387,77.32864418348662,79.6393315011561,63.32870225298407,65.03851164830968,77.05732087327068,79.37091195264392,63.22908036928946,64.94288364424621,0.2713233102159336,268.41954851217054,0.0996218836946027,95.62800406347094,104.12446,73.31306355896764,108664.46118845358,76509.63615763358,295.4689,187.9629402539207,307741.1763478116,195547.776349816,307.32061,148.7964531956108,316636.26307111105,152058.1673113781,3445.61014,1553.6803911819404,3555796.3411325165,1581375.280396923,1247.77537,546.1151663190273,1284536.286030348,552282.5200048293,2144.11166,889.0166049242561,2195524.848155956,891761.9768472342,0.38095,100000,0,473293,4939.293690384254,0,0.0,0,0.0,25162,261.93358518920496,0,0.0,28474,293.1268393479577,1912749,0,68747,0,0,0,0,0,44,0.4591847383690592,0,0.0,1,0.0104360167811149,0,0.0,0.06739,0.1768998556240976,0.3251224217242914,0.02191,0.328999434708875,0.671000565291125,25.26661218574588,4.404186668596031,0.338992750858451,0.2121327737504769,0.2201449828309805,0.2287294925600915,11.135689451853592,5.810479147367822,23.22038611155897,12739.776278115378,59.18441354295694,13.213794713072568,20.116579183622527,12.77630935519862,13.077730291063242,0.5532239603204884,0.7886690647482014,0.7000562746201463,0.5641247833622184,0.1067556296914095,0.7239031770045385,0.931297709923664,0.8609865470852018,0.7051792828685259,0.1293103448275862,0.4956632653061224,0.7107093184979137,0.6461307287753568,0.5249169435215947,0.1013443640124095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0046527186473665,0.0070207477299244,0.0093348772956281,0.0117754728492983,0.0143148035023416,0.0164305371521761,0.0185024544072172,0.020673656672185,0.0228498337170631,0.0250622457657509,0.0272367151741548,0.0294126714968398,0.0313880109945542,0.0334316414709097,0.035443848720571,0.0375640295959021,0.039761122227867,0.0412555308585554,0.043161948376353,0.0575743668905669,0.0712433607962862,0.0850793983543839,0.097942369532777,0.1098345103826288,0.1255827228617638,0.1377836691410392,0.1494471816372788,0.1612534577961956,0.1718022944140667,0.1852418234489591,0.1986713407772873,0.2110271328367136,0.2220303036928526,0.2327277928765555,0.2438402907028272,0.253048508129355,0.2628846825137658,0.2722224115021635,0.2805908866740833,0.2884686731901869,0.296187717672995,0.303059443672757,0.3101090926566705,0.3159842251326744,0.3221840981461825,0.3291788396674733,0.3337796309756066,0.3386956465287786,0.3428216020220466,0.3432771351052198,0.3430421158704084,0.3432058952490063,0.3437400168443063,0.3442549572534801,0.3439105423447257,0.343302329278957,0.3441359549451635,0.3448098839796023,0.3452757665147045,0.3464421938708404,0.3479467808776,0.3486658409086138,0.3497333871040014,0.3509529553679131,0.3511302249960665,0.3510629166547452,0.3543592818150263,0.3562034041356027,0.3583585175759504,0.3597201262175881,0.360451433461703,0.3626017293997965,0.3654231540003083,0.3682862023154298,0.368965932346214,0.3705692803437164,0.3707773707773708,0.3673357162496563,0.3715399610136452,0.0,2.603841528129384,57.657394243802166,197.10084934955384,298.6772185661449,fqhc7_100Compliance_baseline_low_initial_treat_cost,23 -100000,95755,42787,403.1225523471359,6780,69.77181348232469,5274,54.58722782100152,2115,21.73254660331053,77.35098256499538,79.6992651792422,63.33757887846742,65.07106218834831,77.09140393684795,79.43873510222447,63.24259573971968,64.97809121738733,0.2595786281474233,260.5300770177337,0.0949831387477431,92.97097096097671,104.89732,73.78721384895253,109547.6163124641,77058.34039888522,295.38801,187.4584832050098,307990.6532295964,195279.3230158016,303.80945,145.45128374228193,314908.4747532766,149981.05417235306,3511.63429,1578.06921536554,3635390.235496841,1616309.266780616,1285.39781,555.0538783870817,1329298.2298574487,566652.5578376208,2081.21834,865.5698248061013,2140159.030860008,874812.3277721077,0.38114,100000,0,476806,4979.437105112005,0,0.0,0,0.0,25168,262.3152837971908,0,0.0,27979,289.770769150436,1913960,0,68720,0,0,0,0,0,63,0.6579290898647591,0,0.0,0,0.0,0,0.0,0.0678,0.1778873904601983,0.3119469026548672,0.02115,0.3297946640592261,0.6702053359407738,25.060245781608568,4.610327869042092,0.3365566932119833,0.1968145620022753,0.2330299582859309,0.2335987864998104,11.077067696525395,5.405789901790617,22.608258404202545,12722.774836755238,59.65681995961933,12.327655718517908,20.176044765201347,13.654439619406554,13.498679856493537,0.550056882821388,0.7697495183044316,0.7109859154929578,0.580146460537022,0.1030844155844155,0.6981845688350984,0.9070422535211268,0.8486238532110092,0.6901408450704225,0.1417004048582996,0.5005060728744939,0.698389458272328,0.666168782673637,0.5470899470899471,0.0934010152284263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002035381203609,0.0042570012466932,0.0065041145373555,0.0084911026245226,0.0107065510264257,0.0128778084311469,0.0150253310363808,0.0170948021595582,0.0193481127157881,0.0215845009159852,0.0237611989257231,0.0258571135290494,0.0280882126150208,0.0301201717622102,0.0324437521276705,0.0344485442311866,0.0366025388804903,0.0387664466857593,0.040650406504065,0.0428572916775181,0.0569346723176816,0.0705700208174238,0.0839336080442053,0.0967480786012427,0.1081710749638937,0.1242058752021648,0.1370346802418071,0.1495934786310233,0.1617672192787557,0.1722658428798215,0.1856399651016253,0.1988442058785334,0.2118268927487682,0.2224945295404814,0.23296311380673,0.2440430012191067,0.2545141874462597,0.2636132487286801,0.2729346604773632,0.2817723260346211,0.2900993078543484,0.2979624796657577,0.3048868489229058,0.3116173775557871,0.3177017577935321,0.3233114180886952,0.3282559215627423,0.3339775949544142,0.3391437229661478,0.3433480362378173,0.3431153068105192,0.3430415356610954,0.3434494640663174,0.3429536427680978,0.3433962826164661,0.3426720498610706,0.3422515084153699,0.3421052631578947,0.3428615495347283,0.3440294769979252,0.3447848614552827,0.3459514009814785,0.3477968805760228,0.3496293642084518,0.3507046318118416,0.3523543391397456,0.3532899988596191,0.3560491493383743,0.3584072347435942,0.3580565707929445,0.3603035289815323,0.3642868585464837,0.3665590785393329,0.3709665115569456,0.374492972361098,0.3754624656880296,0.3785257908680068,0.3792117623034511,0.3745108999441028,0.3804897007384376,0.0,1.8866051956043568,58.68948075388004,203.55373070822492,295.1630721030888,fqhc7_100Compliance_baseline_low_initial_treat_cost,24 -100000,95830,42909,404.4140665762287,7001,71.75206094125014,5416,55.80715850986121,2167,22.14337890013566,77.51248185563044,79.79865153944161,63.42745123530996,65.11097239973869,77.24459251367257,79.53383742028876,63.328764174243474,65.01665585897736,0.2678893419578685,264.81411915284525,0.0986870610664851,94.31654076132644,105.40134,74.0668544114781,109987.83262026504,77289.84077165618,293.81674,186.2798156159196,305910.1116560576,193693.7656432429,305.17697,147.34992075698037,313595.43984138576,150088.01169980026,3545.92691,1604.1352743317575,3656438.1613273504,1630150.322792193,1282.23347,563.4904484465231,1318637.013461338,568618.207707945,2120.63648,887.8705075782821,2169402.8383595957,888629.8997241504,0.3836,100000,0,479097,4999.446937284775,0,0.0,0,0.0,25166,261.8699780861943,0,0.0,28272,290.3057497652092,1920070,0,68838,0,0,0,0,0,45,0.459146405092351,0,0.0,0,0.0,0,0.0,0.07001,0.1825078206465067,0.3095272103985145,0.02167,0.3185255198487712,0.6814744801512287,25.09086309994104,4.42127256300113,0.3316100443131462,0.2197193500738552,0.2287666174298375,0.219903988183161,11.054268806001089,5.754640868586357,23.079914162672505,12789.680860900697,60.95333674729655,13.826159727275453,20.176941644344577,13.91684421978538,13.033391155891138,0.5614844903988183,0.7655462184873949,0.700445434298441,0.5907990314769975,0.1175482787573467,0.7309682187730968,0.9166666666666666,0.8687782805429864,0.7418300653594772,0.1587982832618025,0.5050455328574944,0.6968215158924206,0.6454948301329394,0.5412647374062165,0.1075156576200417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023779167425576,0.0046181424129794,0.0067809323021721,0.0091221803939077,0.0113269265933887,0.013637750432218,0.0158111217446193,0.0179168706151085,0.0199422053853144,0.0219654361386644,0.0240850349192045,0.0260696558231119,0.0281234265985758,0.0300625746161129,0.0323611583624573,0.03448774492083,0.0363717262859448,0.0384746975210724,0.0404300628473484,0.042414083891185,0.0569634774628204,0.0710812760751592,0.0842807892613511,0.0972387064248127,0.1093924397178056,0.1247689366331822,0.1375184152791173,0.1501637531368295,0.1615178580956344,0.1728421503533947,0.1854791014763917,0.1981077052686151,0.2107771818201559,0.2219188554578714,0.2329275795394621,0.24476862502212,0.2547378976101609,0.2644911255897551,0.2741760108732586,0.2831003782900376,0.2915508391487398,0.2992613993802279,0.3057590017573034,0.3125373276953582,0.3187493188340861,0.3250221195438458,0.3297496850796343,0.3352171213522726,0.3407751338105372,0.345569886259161,0.3458788813627523,0.3463973470003015,0.3460681088507858,0.3458813364055299,0.3461048578199052,0.3457512644591476,0.3456512797797956,0.3456057201895797,0.3478854257297371,0.3481876751200186,0.3494043605304562,0.3511115502420709,0.3513564470514297,0.3510182207931404,0.351618618906235,0.3531121085540824,0.3546336757278248,0.3574440176145413,0.3612408504705472,0.3634186557788945,0.3661123595505618,0.3676786744271407,0.3689646590343454,0.369047619047619,0.3718079673135853,0.3769554050898903,0.38572501878287,0.3911242603550295,0.3897754936434947,0.3891385767790262,0.0,2.7288121219629407,58.95337283803666,205.8995671075077,305.1867046698255,fqhc7_100Compliance_baseline_low_initial_treat_cost,25 -100000,95733,42807,403.1629636593442,6703,68.74327556850824,5203,53.71188618344771,2108,21.643529399475625,77.31288813594676,79.67077619610596,63.318020272784125,65.06178253220091,77.05767549077778,79.41534950285957,63.22474296355176,64.97071360029409,0.2552126451689815,255.42669324639175,0.0932773092323699,91.0689319068183,104.6826,73.69223141542294,109348.50051706308,76976.83287416349,294.25521,187.51037501588647,306725.7998809188,195235.63631137696,309.60481,148.97830496884336,318744.1947917646,152128.99022358097,3447.89536,1554.226459013228,3563843.92006936,1586503.4788539726,1266.389,553.9776703161489,1304769.0242654048,561609.7205519783,2076.84872,861.1604037627037,2134880.9292511465,871753.9091683958,0.38075,100000,0,475830,4970.386387139231,0,0.0,0,0.0,25036,260.8504904264987,0,0.0,28500,293.0546415551586,1913676,0,68695,0,0,0,0,0,68,0.7103088799055707,0,0.0,0,0.0,0,0.0,0.06703,0.1760472751149047,0.3144860510219305,0.02108,0.3295938653791536,0.6704061346208463,25.28403653994005,4.471665785291051,0.3298097251585624,0.2116086872957908,0.2267922352488948,0.2317893522967518,11.306138485391209,5.764759268268468,22.33907904587977,12722.961530629853,58.88213584033037,13.098064255694366,19.378872154670635,13.151259160434288,13.253940269531071,0.5562175667883913,0.7892824704813806,0.6893939393939394,0.5805084745762712,0.1301824212271973,0.7323506594259116,0.91869918699187,0.8789346246973365,0.720754716981132,0.2107438016528925,0.4982115482881962,0.7240437158469946,0.6293169608595549,0.5398907103825137,0.1099585062240663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025522088760153,0.0046017089165712,0.0067878123763431,0.0089180514362328,0.0110861362272556,0.0134419551934826,0.0155909044560008,0.0179375401986707,0.0202833950150285,0.022588341303079,0.0248331299791861,0.0271294347178723,0.0289616587131808,0.0310761814511144,0.0332827798239912,0.0353569804456571,0.037214985399797,0.039284046692607,0.0411176855963312,0.0429477895745855,0.0572845435089001,0.0711064608945854,0.0848346301461798,0.0978876867594023,0.1103203222201134,0.1260590419174344,0.13883701188455,0.1511016498137307,0.1625273727500934,0.1732509758503839,0.1875376862778878,0.1989292667099286,0.2110757119401524,0.2217810736317102,0.2323071167642269,0.2427941600017723,0.2530107034833755,0.262921626426048,0.2724072538977777,0.2801320101757844,0.2879207141285848,0.2957174775112005,0.3028506514253257,0.3087665879475899,0.3156008116942294,0.3210349843445674,0.3266701735928459,0.331844158488933,0.3364688200463844,0.3417022344966106,0.3419246071886169,0.3424485803634159,0.3426281327613457,0.3428199000651749,0.342602527420124,0.3425143629604596,0.3429279844874994,0.3432597231377719,0.3444272976680384,0.3448071748878923,0.3455475715736804,0.3462951561972474,0.3476259537171322,0.3493152220204873,0.3501799821225811,0.3507517418408507,0.3511793872345304,0.3533682041527975,0.3579442891020422,0.3604907581893268,0.3636739950326557,0.3678111817162386,0.3699294532627866,0.3689327821160618,0.3705949223190602,0.3719156037668375,0.3789685612513551,0.3909313725490196,0.3951205832865956,0.4027565084226646,0.0,2.490257611610638,56.4570799907026,201.97287886831052,293.3877033341244,fqhc7_100Compliance_baseline_low_initial_treat_cost,26 -100000,95787,42623,401.181788760479,6911,71.03260358921356,5411,55.97836867215801,2152,22.101120193763244,77.37208356525132,79.70911195696696,63.35007434272507,65.07883645288089,77.10908811123893,79.44574000707128,63.25429444810897,64.98510269135234,0.2629954540123833,263.371949895685,0.0957798946161005,93.73376152855428,104.42124,73.3977858236422,109013.99981208306,76626.04092793615,292.11525,184.8575187073054,304444.0268512429,192468.77833871543,298.6969,143.41711405346123,308473.2479355236,147157.10156442726,3564.35958,1593.0324731186336,3689684.174261643,1631652.1794383726,1301.20014,561.924275897241,1344538.0166410892,572747.8686203472,2113.19846,877.2575359392924,2172116.13266936,888415.3485315484,0.38028,100000,0,474642,4955.181809640138,0,0.0,0,0.0,24985,260.2754027164437,0,0.0,27661,285.4458329418397,1922163,0,68990,0,0,0,0,0,49,0.5011118418992139,0,0.0,0,0.0,0,0.0,0.06911,0.1817345114126433,0.3113876428881493,0.02152,0.3194444444444444,0.6805555555555556,25.153485111244237,4.517255190056535,0.3306228053964147,0.2112363703566808,0.2273147292552208,0.2308260949916836,11.074239675902964,5.538230064040692,22.896086187191216,12725.48403842869,60.864503647540026,13.52280267003074,20.01924191234816,13.653216211341238,13.669242853819904,0.5364997227869155,0.7751531058617673,0.6825041922861934,0.5463414634146342,0.099279423538831,0.6899166034874905,0.9193548387096774,0.8404761904761905,0.6702127659574468,0.1061224489795918,0.4870478983382209,0.7055771725032426,0.6340394448502557,0.509493670886076,0.097609561752988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027549883520713,0.0049166700458213,0.0070426823080513,0.0093355410855233,0.0112274992372622,0.013235054569148,0.0153298881855894,0.0176337326775108,0.0199783355134074,0.0221471701975232,0.0241542923314989,0.0262317963033282,0.0283805314282777,0.0305086490939044,0.0325963660362571,0.0347784757811208,0.0367567903279231,0.0388173314251343,0.0409600997506234,0.0430301200428947,0.0576559842215659,0.0713710478700595,0.0847528696472561,0.0974266830585589,0.1094816687737041,0.1254952090178222,0.1381005870758536,0.1505927382914252,0.1613994281080619,0.17289769683985,0.1862461409377924,0.1990142778396256,0.2112452592343052,0.2222732340788351,0.2327207944310646,0.2437495847819828,0.2537947648416849,0.2635927295617279,0.2729426433915212,0.2810693228003892,0.2894499444855662,0.2968561841628377,0.3039900691611988,0.3105917287291362,0.3160270880361174,0.3208550881686533,0.3269445035616369,0.3321843758744371,0.3370648375825029,0.3420448548812665,0.3428006350402282,0.342652152399802,0.3438773639453384,0.3434900241619283,0.3441672366112581,0.3428720322486703,0.3417007384868942,0.3426937675610838,0.3435866678090994,0.3456597967654215,0.3474712988669618,0.3475386472951842,0.3491547464239272,0.3492489870839209,0.3508543609765502,0.3519884877027734,0.3510321100917431,0.3512675253979808,0.3542951813599351,0.3565151394104018,0.3605364335408275,0.3623853211009174,0.3658289548648477,0.3671119299861815,0.3708036138849263,0.3781100478468899,0.3768272041852593,0.3769445552453131,0.3816793893129771,0.3836812144212523,0.0,1.9357045452621675,58.458787992346416,204.49422167998287,311.9017668459709,fqhc7_100Compliance_baseline_low_initial_treat_cost,27 -100000,95657,43101,407.4035355488882,6758,69.61330587411271,5157,53.44094002529872,2134,22.005707893828998,77.25911226955019,79.65608126754196,63.27736057920528,65.04611303927017,77.0124570693386,79.40603187142227,63.18815436676075,64.95737627625289,0.2466552002115918,250.04939611969235,0.0892062124445303,88.7367630172804,103.653,73.00905087064464,108359.03279425448,76323.79320974383,292.26089,186.0113442672928,305065.0135379533,194003.2584490241,303.72495,145.79623707091775,314476.4732324869,150088.5803788092,3421.5518,1531.909492183875,3549292.503423691,1574932.0534228184,1277.58901,556.0588750781909,1325582.7905955657,571689.627270486,2105.84386,860.7611049840717,2174564.4333399544,878898.1297107226,0.38319,100000,0,471150,4925.410581557022,0,0.0,0,0.0,24963,260.47231253332217,0,0.0,28103,290.7889647385973,1914038,0,68715,0,0,0,0,0,44,0.449522774078217,0,0.0,0,0.0,0,0.0,0.06758,0.1763615960750541,0.3157738976028411,0.02134,0.307475317348378,0.692524682651622,25.341462253485435,4.556843724640952,0.3261586193523366,0.2065154159394997,0.2278456466938142,0.2394803180143494,11.303021391396378,5.714016541600675,22.381655201523216,12812.080124041,57.99356658242929,12.686937904056052,18.75773218029897,13.005604220880205,13.543292277194068,0.5493503975179368,0.780281690140845,0.6944114149821641,0.5829787234042553,0.1206477732793522,0.7249216300940439,0.91644908616188,0.8534704370179949,0.7874015748031497,0.168,0.4916258696212316,0.7038123167155426,0.6465583913379737,0.5266015200868621,0.1086294416243654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0045123150711323,0.0070945740210705,0.0093582344334254,0.011496006917951,0.0135966431059417,0.0159063564247405,0.0179466500607409,0.0201081567352613,0.0220689090425205,0.0242164511928806,0.0266451725518785,0.0283157624067883,0.0304925159416109,0.0326309054508678,0.0345861551982629,0.0365482233502538,0.0383437652456429,0.0404198000852914,0.0422408940224756,0.0568362313994315,0.0712587581035367,0.0849258683691041,0.098436430639642,0.1102745512143611,0.1262986222161034,0.1397346984292193,0.1518505891628135,0.1635035871994183,0.1744620538590388,0.1877750453015791,0.2005135817450944,0.2128347837452212,0.2235807094809264,0.2337574982357092,0.2457248822954606,0.2556692957431336,0.2655425219941349,0.2740082795014102,0.2820937018910411,0.2905059693007391,0.2978830704274907,0.3050829358581903,0.3120574197193936,0.3180842762387826,0.3243052808544304,0.3303498575212463,0.3361357402564266,0.3413285569659683,0.346369084630955,0.3464409616760485,0.346156501567225,0.3467790998740785,0.3462471844801278,0.34656333527453,0.3460787178737868,0.3454522341575033,0.3459428288985913,0.3470882948423184,0.3472916554677561,0.3486986751855679,0.3493271498503676,0.3497299909646782,0.3508105086640581,0.3521685790575161,0.353886280646844,0.355038361712444,0.3570887991927346,0.358985200845666,0.3600909199665031,0.3612610963667978,0.3641066666666667,0.3674412714493763,0.3679554640433158,0.3669078267405806,0.367032704702793,0.3714856352742356,0.3739820846905538,0.3840336134453782,0.380652772316162,0.0,1.8077545335142664,56.54684946985444,189.73384015818087,300.80108648534645,fqhc7_100Compliance_baseline_low_initial_treat_cost,28 -100000,95620,43150,406.3585024053545,6918,71.04162309140347,5390,55.80422505751935,2131,21.9201003974064,77.28554750318864,79.71690096166681,63.27381344368566,65.071739330926,77.0212761786855,79.45416225116234,63.17511076189786,64.97659090737297,0.2642713245031416,262.73871050446473,0.0987026817877989,95.14842355302731,102.3308,72.00061884293547,107018.19702991004,75298.70199010194,292.5011,185.8998928314223,305301.2445095168,193817.0286879547,305.98813,147.67208841645385,316947.3331938925,152090.91107594583,3533.76747,1598.6268950950914,3656568.448023426,1632786.2111431633,1297.58626,567.4310336682377,1340830.1401380466,577229.3772661273,2101.54804,883.0361897598226,2162557.9167538173,891845.1328993556,0.38387,100000,0,465140,4864.463501359548,0,0.0,0,0.0,24962,260.4266889772014,0,0.0,28388,293.8088266053127,1922137,0,68992,0,0,0,0,0,51,0.5333612215017779,0,0.0,0,0.0,0,0.0,0.06918,0.1802172610519186,0.3080370049147152,0.02131,0.3170396814499519,0.682960318550048,25.32394867435987,4.487284112785496,0.3322820037105751,0.2129870129870129,0.2269016697588126,0.2278293135435992,11.155675950805346,5.619705557569304,22.81661409045479,12874.044381208048,60.7059810441145,13.534537674672816,19.9457255249189,13.717953421663518,13.507764422859267,0.5512059369202227,0.7787456445993032,0.6800670016750419,0.588716271463614,0.1131921824104234,0.6991869918699187,0.898936170212766,0.8356807511737089,0.7206896551724138,0.1647509578544061,0.5016101065147387,0.7202072538860104,0.6315018315018315,0.5476956055734191,0.0992761116856256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00216862586137,0.0044224000649159,0.006883807821955,0.0093611831071809,0.0119745248850364,0.0142407480976683,0.0164947822627536,0.0186131088591042,0.0209264505835063,0.0231765019151594,0.0252254285450498,0.0271064529387587,0.0292952063325407,0.0314094568545186,0.0336823410362844,0.0358203088635352,0.037980061762938,0.0402534011839235,0.0423106947697111,0.0440184001084813,0.0588954746448395,0.0731472166331321,0.0863589075356501,0.0990686305497608,0.1113294248138171,0.1270308627592196,0.1395309295331611,0.1520863094603526,0.1644105340881122,0.1753701674080759,0.1890512366728536,0.2010712814173877,0.212571391201988,0.2233960940753567,0.2341985709244883,0.2454375915811908,0.2556714632319234,0.2656475468975469,0.2742577183649343,0.282778707887072,0.2909238343469447,0.2979346539988988,0.3049150773318151,0.3121328961118518,0.3183240590792309,0.3244958694014645,0.3302209577761345,0.3354965384468272,0.3411182801282634,0.3461421487603305,0.3467067644837631,0.3466056991750106,0.3471516485998193,0.3478921987458908,0.3501994760033345,0.3488261323827669,0.3481010646750357,0.34967374110203,0.3499023671679627,0.3509467116115614,0.3522793440898589,0.3526513652552434,0.3536062542030935,0.3536396836421482,0.3549847124250668,0.3572637113777754,0.3569564230594643,0.357391440664681,0.3592006138392857,0.361970716264345,0.3627803302551972,0.3653069895899724,0.3672569159997479,0.3691524908869988,0.3734058514628657,0.3760028315243039,0.3741216009776963,0.3785699817703059,0.3733952472002185,0.3751416698148848,0.0,2.075615357582117,59.74543868625026,201.07003866914928,308.04942880165254,fqhc7_100Compliance_baseline_low_initial_treat_cost,29 -100000,95829,42738,401.360757182064,6769,69.57184150935521,5248,54.367675755773305,2080,21.4444479228626,77.35864855579545,79.66299777031323,63.35358995694328,65.05402634470376,77.11018425673286,79.4130232090311,63.26375801932304,64.96574489266487,0.24846429906259,249.97456128213005,0.0898319376202323,88.28145203888482,103.653,72.93276599279469,108164.5430923833,76107.19718748466,293.22706,186.01521142262104,305608.3648999781,193730.07275732924,304.39207,146.24242085873806,315336.43260390905,150814.56828754206,3450.61507,1539.478170218443,3577135.251333104,1582815.2649181818,1266.71537,546.4005265143526,1312967.0245958949,561300.1560220314,2037.82464,832.9821776315689,2102679.710734746,847298.0053155691,0.38132,100000,0,471150,4916.570140562878,0,0.0,0,0.0,24921,259.65000156528816,0,0.0,28112,291.10185851882,1921906,0,69009,0,0,0,0,0,64,0.6574210312118461,0,0.0,0,0.0,0,0.0,0.06769,0.1775149480751075,0.3072832028364603,0.0208,0.320812894183602,0.6791871058163981,25.50047731208094,4.588646442921325,0.3277439024390244,0.2185594512195122,0.2242759146341463,0.229420731707317,11.344399939276204,5.765531806893772,21.874410507016144,12788.76406704319,58.90994407039274,13.434837038655182,19.32847952954912,13.00409349622297,13.142534005965452,0.5485899390243902,0.7846556233653008,0.688953488372093,0.5454545454545454,0.1262458471760797,0.7094017094017094,0.9425587467362924,0.8463414634146341,0.6831275720164609,0.1553784860557769,0.496339308255491,0.7054973821989529,0.6396946564885496,0.5096359743040685,0.1185729275970619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022569479586259,0.0047908922403751,0.0070561756744426,0.0092849097385004,0.0115010261516266,0.0136717359239102,0.0157580572872102,0.0180347434027317,0.0204012831252681,0.0226579921847828,0.0248381678138315,0.0268939627053972,0.0291673087789592,0.0312519294490522,0.0333027456721896,0.0356003098373354,0.0374861612639551,0.0396831978769281,0.041806454293341,0.0437339940452643,0.0582227507928559,0.0725852822180172,0.0860487784427372,0.0984678114294121,0.1105326940302439,0.1258863187260258,0.1386061993809099,0.150520135298998,0.1622149628490904,0.1729435349864385,0.1869543218249739,0.2003331494521422,0.2116279575504523,0.2230279564247276,0.234172547033763,0.2447473404255319,0.255088604204794,0.264582817807572,0.2737421294457995,0.2826774178769414,0.2899228214711362,0.2967020106265945,0.3038253436415945,0.3103307717207562,0.3166609930457618,0.3227572600036993,0.3283109537098449,0.3337446884303198,0.339325959122348,0.3441876427185491,0.3447918349760328,0.345827313381493,0.345813861832104,0.3462910282884002,0.3464297915954902,0.3459431334741223,0.3449973874629891,0.3453069541212041,0.3452877968653754,0.3461476481226163,0.3468402464682897,0.3479208352318877,0.3493081549396475,0.3500985751411417,0.3521099590065107,0.3511792452830188,0.3531113912445565,0.3559756792703781,0.3573373890284017,0.3591879229567933,0.3612153381531985,0.3630038002462131,0.3635324741286267,0.3652381318765869,0.3668109939759036,0.3713374291115311,0.3691481197237145,0.3699469171090241,0.3630769230769231,0.3559857763729751,0.0,1.5446883491307983,57.3599907396351,196.2878904838049,302.29612753047064,fqhc7_100Compliance_baseline_low_initial_treat_cost,30 -100000,95856,42738,401.6858621265232,6860,70.11559005174429,5332,54.98873309964948,2139,21.86613253213153,77.41454581429173,79.70328503604344,63.37712166936033,65.06812671013107,77.1535203204116,79.44387041573033,63.28109094585869,64.97516974553677,0.2610254938801262,259.4146203131089,0.0960307235016344,92.95696459429335,104.18782,73.33230740006299,108692.01719245536,76502.5740695032,291.81487,185.11545958035072,303825.0292104824,192512.8417421452,308.88542,149.08816155787366,318276.4459188783,152465.19512269774,3538.9487,1603.1545456932909,3652648.1388749783,1633166.6726060864,1326.88908,585.1145124755737,1363716.470539142,589880.8926498439,2110.50642,884.8522714496736,2160385.390585879,889483.9442545114,0.37968,100000,0,473581,4940.546236020698,0,0.0,0,0.0,24775,257.81380403939244,0,0.0,28458,292.93940911367054,1921803,0,68985,0,0,0,0,0,62,0.6363712235019195,0,0.0,0,0.0,0,0.0,0.0686,0.1806784660766961,0.3118075801749271,0.02139,0.3187560738581146,0.6812439261418853,25.209106360917573,4.56841148109566,0.3223930982745686,0.214178544636159,0.2304951237809452,0.232933233308327,11.356272571205894,5.768240687495162,22.91434247956758,12738.249340469829,60.05638092837424,13.223362281022291,19.312031576614263,13.762201620180322,13.758785450557356,0.5534508627156789,0.7486865148861647,0.6934264107038977,0.6061838893409276,0.1280193236714976,0.7100456621004566,0.9101796407185628,0.8709677419354839,0.7301587301587301,0.183206106870229,0.5022399203583873,0.681930693069307,0.6390577507598785,0.563457330415755,0.1132653061224489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025611175785797,0.0049237627273187,0.0070170457426204,0.0092278642925304,0.0114137615611342,0.0136855279357746,0.0160554197229013,0.0180341915214819,0.0205728528234044,0.0229113820472956,0.0252696487651981,0.0273466750094882,0.0296538331124194,0.0317028985507246,0.033620982957533,0.0355910846708392,0.0377309689834261,0.0393276474916318,0.0415321534229511,0.0434045474402446,0.0582316755291419,0.0722100885122213,0.085334171380683,0.0975924739875896,0.1095151847015711,0.1249749162996525,0.137474444668072,0.1497991199540845,0.1612682968463278,0.1720197487496385,0.1858756454388984,0.1993448152833187,0.2116569416826939,0.2233331147970891,0.2339747464202116,0.2447608931377105,0.2547804078538059,0.2648671731019912,0.2731489356876354,0.2814031231396254,0.2898528935559976,0.2968823089157077,0.3038885142728703,0.3098919009611466,0.3161789724396053,0.3221392114801391,0.3279121594551282,0.3336303235496271,0.3385826771653543,0.342911143125256,0.3432857951635079,0.3429201101928374,0.3428273314345337,0.3431955229708038,0.3437964670195682,0.3427673919705792,0.3414838730098439,0.3416215329066141,0.3418835552061794,0.3428912996930983,0.3437780940964938,0.3449591711647586,0.3464154892726321,0.3479629422926666,0.3493585123252126,0.3497253533959857,0.3511222370779165,0.3527275004697188,0.3528855250709555,0.3547157827881867,0.3557998001635026,0.3562463591590319,0.3584551931008624,0.3603976801988401,0.3589982310771809,0.3600329334274288,0.3604014598540146,0.3644291218819712,0.3641856632793189,0.3650853889943074,0.0,2.4717317960705536,57.4621835774718,206.22810670307047,299.7834374090448,fqhc7_100Compliance_baseline_low_initial_treat_cost,31 -100000,95713,42719,402.0456991213315,6910,70.99349095734122,5465,56.56493893201551,2300,23.674944887319384,77.36002699221102,79.72997587593672,63.33690834044432,65.0877016435009,77.08095624558486,79.45069476360204,63.23470289725511,64.98809174620041,0.2790707466261608,279.28111233467234,0.1022054431892129,99.6098973004962,105.12018,73.88986880702639,109828.52903994232,77199.4074023658,296.25624,187.990908654358,308974.71607827564,195864.5364121117,305.96164,147.3053702023197,316091.35645105684,151259.91532115988,3615.49321,1631.2941027925272,3743846.2904725582,1671210.0392726047,1340.72877,588.0662193440555,1387578.4062770992,601352.658568018,2265.56668,936.6196690522536,2333969.408544294,950240.9550598718,0.38077,100000,0,477819,4992.205865451924,0,0.0,0,0.0,25264,263.3915977975824,0,0.0,28318,292.30094135592867,1913173,0,68691,0,0,0,0,0,59,0.6164261907995779,0,0.0,0,0.0,0,0.0,0.0691,0.1814743808598366,0.3328509406657018,0.023,0.3209468758601707,0.6790531241398293,24.927917621341035,4.464281962365605,0.3196706312900274,0.2104300091491308,0.231107044830741,0.2387923147301006,10.949938690518376,5.54044924389603,24.436653125859607,12762.737189265315,61.71349658277628,13.684374737016348,19.6114445657823,14.103345286671557,14.314331993306078,0.5463860933211345,0.7721739130434783,0.6977676016027475,0.5748218527315915,0.1172413793103448,0.7120677487649965,0.9,0.8741865509761388,0.7346938775510204,0.1433823529411764,0.4883893280632411,0.7065789473684211,0.6345256609642301,0.5263157894736842,0.1103581800580832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024916186405485,0.0046934079412867,0.0069005408806307,0.0090310652390337,0.0113918385613735,0.0136043338356889,0.0157492354740061,0.0180550735879483,0.0202606695629951,0.0225436899167664,0.0245547843382511,0.0266521565044197,0.0285881760126692,0.0308795204301296,0.0327799502677493,0.0350806451612903,0.0371187634675948,0.0390890974009798,0.0414382742373339,0.0434510784620193,0.0576581657163147,0.0717687324032111,0.0849541553891022,0.0976787235609032,0.1097990426586255,0.1255946717411988,0.1387836934729338,0.150527335227696,0.1626312360486601,0.1736388209550778,0.1873505267920625,0.2000541037710328,0.2122710722243356,0.2231489882702756,0.233720098982678,0.2440299499357582,0.2549032733114666,0.2644392964778912,0.2729303443662051,0.2814171046454375,0.2897622131754256,0.2973393186972481,0.3051743718355179,0.3111502389593589,0.3175104460207948,0.3232213706597008,0.3292392828525641,0.3342620510667531,0.3392357512953368,0.3445889732585011,0.3446620920231338,0.344522870771182,0.3442650735138342,0.3444827686154024,0.3448959218035254,0.3441130876552116,0.3427769674678166,0.3431904057828158,0.3443408332620412,0.3438963360142985,0.3445326129776577,0.3457398393288218,0.3468562811544423,0.3465652271201611,0.3475884321799224,0.3500548675340962,0.3511518099871226,0.3528089176008613,0.3556852343059239,0.3573148222454056,0.3610688781386777,0.3640854902803136,0.362772427774962,0.3619857504022064,0.3624976455076285,0.3681083650190114,0.370159803318992,0.3732135565536953,0.3728436282693378,0.3756325418450759,0.0,2.025696152370027,62.79271634231998,198.7090103442721,312.42324349126426,fqhc7_100Compliance_baseline_low_initial_treat_cost,32 -100000,95745,42534,400.8042195414904,6784,69.64332341114418,5285,54.56159590579142,2145,21.975037860984905,77.33346816806463,79.69602598859423,63.32120940122799,65.07019736428904,77.07309536829807,79.43749377741446,63.22639147783879,64.97887077484285,0.2603727997665572,258.53221117976943,0.0948179233892005,91.3265894461972,103.73088,72.97027235073226,108340.78019739932,76213.14152251529,289.53362,183.76984578816385,301749.6266123557,191285.6084267208,305.19145,147.1471129167068,314394.9344613296,150222.36930180024,3493.41902,1585.8313504143557,3607515.640503421,1615295.431585981,1302.85889,572.7884685140428,1344496.9241213645,581998.5684851805,2117.78948,872.4315109093416,2172043.030967674,877021.0757515797,0.37887,100000,0,471504,4924.580918063606,0,0.0,0,0.0,24711,257.42336414434175,0,0.0,28265,291.0439187424931,1922705,0,69037,0,0,0,0,0,59,0.5953313488955037,0,0.0,0,0.0,0,0.0,0.06784,0.1790587800564837,0.3161851415094339,0.02145,0.3305703849395898,0.6694296150604102,25.07060518457401,4.531853877368663,0.3453169347209082,0.2051087984862819,0.2130558183538316,0.2365184484389782,11.163251651169764,5.636387756054936,22.66499603838833,12646.44560532743,59.88151777227885,12.877826072465114,20.67218785224016,12.590093072329354,13.74141077524422,0.5557237464522232,0.7850553505535055,0.7084931506849315,0.5710479573712256,0.12,0.7215007215007215,0.9333333333333332,0.8744855967078189,0.7276264591439688,0.1417910447761194,0.4967940497563478,0.7066290550070522,0.6482449589245706,0.5247410817031071,0.1140529531568228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330563858351,0.0046850281912951,0.0068002354708401,0.0089922575138694,0.0113097780761172,0.0138276532700668,0.0159442156343024,0.0179828948174154,0.0202158538081026,0.0224171639728537,0.0246045333852762,0.0267542733945896,0.0289480990919654,0.0310810393301819,0.0327569485999628,0.0347090865866641,0.0365622573129691,0.0385900469015896,0.040514409281823,0.0425454356090194,0.0571920668058455,0.071228231748158,0.0848949698864709,0.0972813798180575,0.108791023369611,0.1243840541397906,0.137843228790901,0.1500702456468985,0.1614815289481272,0.1722285371136895,0.1850144340557542,0.1978318023954039,0.2095269168026101,0.2207505277319012,0.2312591435579852,0.2423574742296577,0.2517189802205652,0.2611117362439518,0.2697785797782393,0.27835854219861,0.2854730511219061,0.2933313061377245,0.3010601292032466,0.3075061402983286,0.3138994405271909,0.3199635705758556,0.3254778901571505,0.3310198426317863,0.3358443676464878,0.3409357882927473,0.3414765607103877,0.3411479830499147,0.3418409747165293,0.3414898694086511,0.34152436484798,0.3403883048116031,0.3400859812491076,0.3409670467071385,0.341200246626019,0.3425282829729342,0.3440585695513422,0.3459329954063044,0.3475653231556431,0.3479244606734021,0.3493246502653159,0.3503892631523762,0.3494361170592434,0.3516066858352554,0.3531573553835824,0.3542007257067666,0.3566040323686737,0.3592807981646481,0.3580794324444163,0.3589960085968683,0.3604287204780423,0.36003861003861,0.3628620102214651,0.3662407254740313,0.3652762119503946,0.3683391676390509,0.0,2.3886818899371365,61.02491989582687,197.36887669389893,294.2676515603396,fqhc7_100Compliance_baseline_low_initial_treat_cost,33 -100000,95805,42861,403.59062679400864,6792,69.78758937424978,5261,54.412608945253375,2141,22.034340587652,77.34149214859087,79.68161424566996,63.33904717832892,65.07276504145648,77.07590030447489,79.4143030987999,63.24119992514665,64.9767391708144,0.2655918441159883,267.31114687005686,0.097847253182266,96.02587064208024,103.2339,72.63767647472402,107754.18819477064,75818.25215252233,291.22221,185.85311139279847,303466.1447732373,193483.26433150508,308.41099,148.8751041812591,318742.8839830907,152964.95170203995,3462.92288,1570.0694422061035,3583197.849799071,1607462.3059402972,1246.9302,542.2299070737906,1289237.2631908564,553694.6164701382,2102.11008,878.12610734357,2164686.122853713,891282.1843348874,0.38057,100000,0,469245,4897.917645216847,0,0.0,0,0.0,24835,258.70257293460674,0,0.0,28519,294.50446218882104,1923746,0,69052,0,0,0,0,0,52,0.5427691665361932,0,0.0,0,0.0,0,0.0,0.06792,0.1784691383976666,0.3152237926972909,0.02141,0.3266191075674919,0.6733808924325081,24.967131289790988,4.522526037140543,0.3197110815434328,0.2199201672685801,0.2313248431857061,0.2290439080022809,11.145644132098171,5.613995227472869,22.96008097870505,12786.420204177271,59.58772213668275,13.579097284299865,19.203503994947987,13.513081012874157,13.292039844560746,0.5464740543622886,0.7571305099394987,0.7074910820451843,0.543138866064092,0.1228215767634854,0.7218978102189781,0.9437340153452686,0.8702460850111857,0.6898954703832753,0.1346938775510204,0.4847083012079157,0.6618798955613577,0.648582995951417,0.4978494623655914,0.1197916666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022792426836309,0.0044909420840809,0.006819219645847,0.0093890988903792,0.0118634583100167,0.0142710168990842,0.0166042816200393,0.0186769871742504,0.0207174410994764,0.0225275963054742,0.0248338938561233,0.026884370507291,0.0290166632380168,0.0308540228700937,0.0329883503761105,0.0350715799266111,0.0371432713415896,0.0390883533719929,0.0411289149365089,0.0430889992400345,0.0581158770071888,0.0716571165669831,0.0854519922030559,0.0979308315556069,0.1106532758638859,0.1267744083543849,0.1401024053598498,0.1523049928218216,0.1635804774966114,0.1747904743532034,0.1880805536719515,0.2001513431706394,0.2125359839226549,0.2228353511954194,0.2341875831436833,0.2447917819743629,0.2553779620588956,0.2657362286946172,0.2747782949950732,0.2832408942764023,0.2902115668883961,0.2974134407660419,0.3040404756838546,0.3102845581985562,0.3165034642592795,0.3230663170464478,0.3289575675743255,0.3344261045248351,0.3385878701668175,0.3435556960691326,0.3437634582256675,0.3435299295774648,0.344573932894607,0.3452408488983982,0.3451651294257661,0.3446447182882717,0.3434535706354494,0.3436322035851262,0.3440698013267737,0.3444245249193259,0.3463464217144147,0.3477250149016491,0.3470492804921729,0.3477772031211351,0.3480523882150725,0.3498464204142711,0.3519836353683482,0.3549301155719698,0.3583250461713311,0.3598732501704705,0.3618241524443827,0.3628237574713263,0.3626647894534749,0.3631562597079838,0.3656951743908265,0.3654816238289695,0.3681000781860828,0.3684755592377796,0.3683914510686164,0.3689095127610209,0.0,1.953287584395604,60.60279356650585,192.83942621209735,300.41992689958903,fqhc7_100Compliance_baseline_low_initial_treat_cost,34 -100000,95703,42615,400.6144008024827,6785,69.55894799536064,5272,54.51239773047867,2130,21.90108982999488,77.3419109081298,79.7119683589564,63.33255108723839,65.08153109118,77.08131271274176,79.45120273844965,63.23645752679446,64.98788187668289,0.2605981953880416,260.7656205067457,0.0960935604439257,93.6492144971055,104.02436,73.19866607553887,108694.98343834572,76485.23669638243,290.56898,184.29321554621345,303030.6051011985,191984.1537073096,304.31011,147.0666237614937,314582.4059851833,151028.53347837963,3511.79477,1583.3133593523037,3632035.808699832,1617510.9032636478,1293.97902,558.5750745601314,1339045.8397333417,570866.219865959,2107.20986,874.6306897419665,2167806.9652988934,884535.9928846091,0.37954,100000,0,472838,4940.681065379351,0,0.0,0,0.0,24826,258.81111354920955,0,0.0,28195,291.1716456119453,1920347,0,68923,0,0,0,0,0,48,0.5015516754960659,0,0.0,0,0.0,0,0.0,0.06785,0.1787690362017178,0.313927781871776,0.0213,0.319520022324543,0.680479977675457,25.214963694265023,4.61701002231146,0.3154400606980273,0.217185128983308,0.2259104704097116,0.2414643399089529,11.270360021571165,5.4871737500586,22.55797688957303,12711.581894006133,59.37472162346854,13.65264413260306,18.688277858776,13.153345972714218,13.880453659375256,0.5466616084977238,0.7912663755458516,0.6957306073361396,0.5625524769101595,0.1170463472113118,0.7117737003058104,0.9166666666666666,0.8799019607843137,0.7096774193548387,0.12890625,0.4921796165489405,0.7249666221628839,0.6358565737051792,0.5238600212089077,0.1140609636184857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708360337005,0.0049356440660788,0.0069486711300466,0.0093544324368245,0.0116728352381339,0.0140506638429583,0.015963790941619,0.0180044092430799,0.0200531479967293,0.0223832478737449,0.024633521271143,0.0269742989454661,0.0290712023363909,0.0314644248006428,0.0336198623422456,0.035539659075638,0.0373550124275062,0.0395907057834601,0.0418403951130751,0.0436549704555165,0.0577877113643247,0.0718293346731985,0.0853224774155641,0.0975050488051161,0.1098945147679325,0.1254166269879059,0.1387194313299029,0.1506850773440078,0.1614691836800102,0.1723116866397021,0.1856635071090047,0.1988549039980951,0.2106236470242692,0.2211335527682701,0.2318107326301433,0.2426879220635447,0.2537499860595313,0.2634418876535854,0.2723024397990086,0.2806555725959667,0.2885336171394197,0.295994195503856,0.3029499502817368,0.3096108441099272,0.3151294203426905,0.3212536849506001,0.3263858426600158,0.3322936293731222,0.3370991773012891,0.3415701890872649,0.3409292929292929,0.341873994306226,0.342301143958688,0.3425689423784579,0.3424295513258307,0.340931706495614,0.3402679998101536,0.3409400600876689,0.3417128394555031,0.3432870536033779,0.3452050165214779,0.3459115759448538,0.3474793805756607,0.3485781032391392,0.349404574989734,0.3507146222710853,0.3507419927806108,0.3538690099886206,0.3559735530177138,0.3583386735020826,0.3592847317744154,0.3606039513840552,0.3623262015110152,0.3670769230769231,0.3679406731317741,0.3745959535496229,0.3717849992299399,0.3757213520197857,0.3810727323785453,0.3787644787644788,0.0,2.1977870529052965,57.34829014972761,199.40458065517973,301.47456841479794,fqhc7_100Compliance_baseline_low_initial_treat_cost,35 -100000,95723,42735,402.74542168548834,6830,70.33837217805544,5283,54.77262517890162,2118,21.844279849148062,77.33810060160408,79.72050205786475,63.31256206328344,65.07481567338402,77.07455284552633,79.45449633217392,63.21549016806988,64.97874463997923,0.2635477560777559,266.0057256908317,0.0970718952135598,96.0710334047974,105.0533,73.92562492257026,109746.95736656812,77228.4733267556,293.01362,186.3118919583965,305690.889336941,194222.23406271168,302.56622,145.84483627923035,313467.7663675397,150318.17961807147,3477.59947,1570.1886148700537,3607896.503452671,1615310.251597967,1291.25809,564.103700027354,1337827.5022721812,578339.8555691193,2086.60126,875.8712385968244,2154268.2114016484,893140.6584046944,0.38028,100000,0,477515,4988.498062116732,0,0.0,0,0.0,24991,260.6270175401941,0,0.0,27980,289.73183038559176,1912729,0,68662,0,0,0,0,0,51,0.522340503327309,0,0.0,0,0.0,0,0.0,0.0683,0.1796045019459345,0.3101024890190337,0.02118,0.325950689511074,0.674049310488926,25.100818761939085,4.517238777686416,0.3297368919174711,0.2157864849517319,0.2243043725156161,0.2301722506151807,11.130471454286983,5.50318409656204,22.703215318340163,12705.226072925854,59.54847629294635,13.35705741185356,19.56492753908253,13.270960902056144,13.355530439954125,0.5523376869203104,0.7780701754385965,0.6888633754305397,0.580590717299578,0.1175986842105263,0.7128787878787879,0.8966480446927374,0.8688524590163934,0.7062937062937062,0.1887550200803212,0.4988644965934898,0.7237851662404092,0.6304182509505704,0.5406006674082313,0.0992761116856256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0042807871779265,0.0066603041809653,0.0087708600117893,0.0109380246436238,0.013322604630318,0.0156049201395263,0.0177821810493631,0.0198803497468936,0.0220140275431321,0.0239442974630324,0.0260612408354383,0.0280905230471842,0.030245298951661,0.0324647189898489,0.0345985718271724,0.0367145356843336,0.0388118852969249,0.0407323082680971,0.0428455352306346,0.0572699645978884,0.0718196187624959,0.0855664910918515,0.0991575603958729,0.1107490482668438,0.1262468663063139,0.1402075419646457,0.1528035094444089,0.1633095754570808,0.1740613602231281,0.1872535711977248,0.2000649491231868,0.2121766197581654,0.2228410122870553,0.2329279700654817,0.2437788886795171,0.2538870520954338,0.2638268172147111,0.2725950833825601,0.2810324859242951,0.2887527078530635,0.2962637620051534,0.3029764443812503,0.3092356955254668,0.3154714136329369,0.321450621095004,0.3271594101123595,0.3322238800260148,0.3369738634152668,0.3412600901008019,0.3419517387262365,0.342694617376453,0.3428752732144116,0.3425327258262819,0.3419337559146505,0.3406903749635473,0.3401049843792124,0.3414361553506566,0.3419075490749773,0.3416867900903318,0.3423870167925166,0.3427055282749881,0.3436823863039596,0.3444010416666667,0.3457043017230992,0.3454791525688407,0.345930728544617,0.3496420047732697,0.3515690669655366,0.3547098152470625,0.3574110090913203,0.3571955719557195,0.3591711914123447,0.3620287455790503,0.3672558139534884,0.3703790911231457,0.3717522658610271,0.3738,0.37438958220293,0.3780395136778115,0.0,1.5677828006155243,58.70443728968901,200.6877005420284,299.1135014799571,fqhc7_100Compliance_baseline_low_initial_treat_cost,36 -100000,95646,42680,403.1637496602053,6641,68.16803630052485,5173,53.457541350396255,2058,21.16136586997888,77.27782633283482,79.6898884811315,63.2892740309558,65.07279524471855,77.02809170860577,79.44012108943008,63.19778433309528,64.98365844084665,0.249734624229049,249.76739170142537,0.091489697860517,89.13680387189515,103.65256,72.90233590008144,108371.03485770446,76220.99815996637,290.68785,184.6802223282661,303304.2469104824,192472.30976534524,299.37173,144.01810363648622,309131.22346987855,147556.23854114042,3415.29422,1531.780147653957,3533394.883215189,1564240.735785684,1251.20999,541.8653917896121,1293133.5131631223,551563.4499067666,2025.89216,837.834839221175,2085213.3701357087,848670.4042723931,0.3799,100000,0,471148,4925.956129895657,0,0.0,0,0.0,24811,258.74579177383265,0,0.0,27762,286.3371181230788,1920163,0,68932,0,0,0,0,0,41,0.4286640319511532,0,0.0,1,0.0104552202914915,0,0.0,0.06641,0.1748091603053435,0.3098930883903026,0.02058,0.3214851057706144,0.6785148942293855,25.12815887962878,4.508880284732085,0.3156775565435917,0.2184419099168761,0.2379663638121013,0.2279141697274309,11.03934021858844,5.491661188895237,21.80738059694761,12724.379139133713,58.19001236716892,13.120421705418035,18.582397357220565,13.6362341399327,12.85095916459761,0.5374057606804562,0.7407079646017699,0.6944274341702388,0.5588952071486596,0.102629346904156,0.703962703962704,0.868421052631579,0.8542600896860987,0.7452471482889734,0.135593220338983,0.4822439526505404,0.6852791878172588,0.6343723673125526,0.5082644628099173,0.0943796394485683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024015564517763,0.0045736654226837,0.0066899478204373,0.0090246653861398,0.0113840988860064,0.0134778578050345,0.0155532891381947,0.017731112177883,0.0198338822855506,0.0217985884184755,0.0238974358974358,0.0260695393148785,0.0281733618702667,0.0302290107806155,0.0322633931797767,0.0341524967936783,0.0362268530512004,0.0381799869168388,0.0401673291847905,0.0420928607922258,0.0566173781284288,0.0703566005131696,0.0841161714231734,0.0970029885928357,0.1089420256210033,0.1242537155438878,0.1377992056580931,0.1501033432059832,0.1616436012063913,0.1730794005238974,0.1869060190073917,0.1991966741008596,0.2115476708750544,0.221599737389211,0.2319936593903768,0.2431300416629731,0.2525342741035145,0.2625900090009,0.2718040078977827,0.2795353096028385,0.2876534930508984,0.2965343930804745,0.3039801289254243,0.3111076491665368,0.316239004714001,0.3218725335438042,0.3275935480639182,0.3334606569900687,0.3388270076116132,0.3444354934562407,0.3443996276760782,0.3441023447095679,0.3441156520264541,0.3448385787978902,0.3450491138636736,0.3436131470981423,0.3433044583962489,0.3445853465477152,0.3459968441273326,0.3472212262459663,0.348285456459618,0.3480832985924999,0.3505770079667038,0.3521764468552472,0.3543565263513187,0.3554702795833659,0.3555917946957342,0.3563080041810522,0.3578076157999432,0.3598265895953757,0.3628721058434399,0.3637285782926699,0.3638779901278319,0.3640489193138989,0.3640417457305502,0.3660295708618824,0.3683556108175319,0.3648424543946932,0.3690140845070422,0.3636715724244772,0.0,2.4050499085795334,56.43425821646983,191.10400264875625,299.32190123887875,fqhc7_100Compliance_baseline_low_initial_treat_cost,37 -100000,95820,42644,401.55499895637655,6805,69.8079732832394,5245,54.17449384262159,2071,21.27948236276352,77.39792083527668,79.70354286357038,63.37134666233783,65.07260032337743,77.14184523746633,79.44539476272095,63.27840665843844,64.98074607582114,0.2560755978103515,258.1481008494251,0.0929400038993932,91.85424755628446,104.34798,73.38748399506632,108900.0,76588.90001572356,292.26896,185.93540621266712,304459.13170528074,193486.94031795775,305.17411,146.87885269295623,314569.9332080985,150299.0204276377,3412.83473,1536.2683642419663,3529123.544145272,1570694.8593633545,1219.42156,532.1746120842645,1258052.1811730328,540825.143064353,2027.9397,841.2807739873156,2086016.364015863,853595.1253681963,0.38008,100000,0,474309,4950.0,0,0.0,0,0.0,24876,259.0273429346692,0,0.0,28241,290.8265497808391,1920920,0,68865,0,0,0,0,0,57,0.5948653725735755,0,0.0,1,0.0104362346065539,0,0.0,0.06805,0.1790412544727425,0.3043350477590007,0.02071,0.3146599777034559,0.685340022296544,25.11507979757062,4.480697339343694,0.3338417540514776,0.2146806482364156,0.2305052430886558,0.2209723546234509,11.079135383661434,5.566385427265339,21.95802563273704,12637.24863155552,59.13683199490304,13.299327785524156,19.84303593867371,13.311922894891314,12.682545375813849,0.5490943755958055,0.7619893428063943,0.6824671616219303,0.5847808105872622,0.1035375323554788,0.7174887892376681,0.9264305177111716,0.8329896907216495,0.7469879518072289,0.1265822784810126,0.491425646275915,0.6824769433465085,0.6248025276461295,0.5427083333333333,0.0976138828633405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022981291001862,0.0046813727973735,0.0069476139763679,0.0093823299452697,0.0114264801561483,0.0135352425149091,0.0160176071406737,0.0183830655445039,0.0202607434047857,0.0223547707229236,0.0244554638034547,0.0267145421903052,0.0290132018287358,0.0309641170235755,0.0329097224369479,0.0349900883786239,0.0370247762892463,0.0389897084581342,0.0408809602924073,0.0426597006848031,0.0569342304282063,0.0701884661242077,0.0836505090539251,0.09636451565424,0.1091071993253926,0.1246366087002484,0.137543472728815,0.1494162347406847,0.1609016130755261,0.1717791411042944,0.1849363012739745,0.1977135316958153,0.209521014067358,0.2203417626029059,0.2311667747930022,0.2421149354028053,0.252015477079872,0.2620460933108487,0.2715131176163806,0.2793560714408302,0.2872203918848621,0.2945801642657694,0.3018740762636713,0.3081718860315675,0.3136872219461045,0.3196767686706681,0.3253752216367405,0.3311412974482671,0.3363933747947402,0.3416759923638996,0.3417780999946297,0.3415092785769189,0.3415203362904019,0.3417106439426709,0.3411672251712582,0.3413706746480163,0.339449831033067,0.3403070168253084,0.3405231992628112,0.3415522505311646,0.3413501161309658,0.3422072018656864,0.3414148610703659,0.342583045680728,0.3428288631919465,0.3448248803327143,0.3464187327823691,0.3485900973768516,0.3492489839194204,0.3514139638919955,0.3545287356321839,0.3558028275009407,0.3576805307476397,0.3565485362095532,0.3582331616103797,0.3606714628297362,0.3570985740855548,0.3599265456029382,0.360989010989011,0.358974358974359,0.0,2.2301657918444304,58.99013953581143,195.7248185992042,295.7769830307485,fqhc7_100Compliance_baseline_low_initial_treat_cost,38 -100000,95561,42777,403.7211833279266,6755,69.44255501721413,5233,54.27946547231611,2062,21.21158213078557,77.19945181010942,79.67106364748335,63.224607941291474,65.05400391512119,76.94595789716055,79.41697374066028,63.13104857584232,64.96237013736297,0.2534939129488691,254.08990682306865,0.0935593654491597,91.63377775821856,104.14074,73.26367282149249,108978.28612090708,76666.91727953087,292.43054,185.6413609238922,305534.26607088663,193784.51557004653,300.52402,144.7206950881173,311947.3111415745,149376.23534220926,3450.72371,1550.1957737374807,3582355.2704555206,1593544.0019856223,1298.2448,562.182921860321,1347984.345078013,577730.9172783054,2033.8164,844.1303720288463,2095695.9429055788,855919.0860363917,0.38116,100000,0,473367,4953.558460041229,0,0.0,0,0.0,24926,260.3363296742395,0,0.0,27830,288.6323918753466,1911497,0,68628,0,0,0,0,0,51,0.5336905222841954,0,0.0,0,0.0,0,0.0,0.06755,0.1772221639206632,0.3052553663952628,0.02062,0.3180665163472378,0.6819334836527621,25.42903755748809,4.533779021230482,0.3290655455761513,0.2113510414676094,0.2289317790942098,0.2306516338620294,11.094608832131778,5.657540980019482,21.884523107834447,12783.819329846716,58.905929017101045,13.133589432842593,19.13306721617336,13.22339850014972,13.41587386793537,0.5493980508312631,0.7649186256781193,0.6939605110336817,0.5609348914858097,0.1342170671085335,0.7253968253968254,0.9126760563380282,0.8787878787878788,0.76953125,0.1778656126482213,0.4935816763151271,0.6950732356857523,0.638763197586727,0.5042462845010616,0.1226415094339622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023719982564799,0.0050932408027434,0.0075351368917052,0.0097710265170001,0.0119416052449403,0.0142102795164019,0.0165943766903097,0.0189147762109135,0.021029471960704,0.0230069994568503,0.0250880236509028,0.0273821887242552,0.0292064015159317,0.0312451646844021,0.0333887918651634,0.0354625345464708,0.0371369014902465,0.0391378450282673,0.0411015978168031,0.0428641521646083,0.0576963306974603,0.0723086118130629,0.0855626215378146,0.0983857031464036,0.1103653831925845,0.1257434244701941,0.1389089825964852,0.1519465551097071,0.1643900191774071,0.1746284386896952,0.1875864005529635,0.2002452735994443,0.2126399162139163,0.2239419933744323,0.2342280694009094,0.2449954453553733,0.255091763652641,0.2636229251063541,0.2726931306049984,0.2815199411872817,0.2893900373541217,0.2969067085830918,0.3035337114649832,0.3103891578858839,0.3161754851914572,0.3225216316440049,0.3277943152844241,0.3330951135159969,0.3380665947799878,0.3431427058512046,0.343189988377436,0.3445367712014134,0.3449581196943373,0.3442314102285408,0.3447848916999821,0.343922014822104,0.3425060409512908,0.3427034874129796,0.3444228687299159,0.3457725738093528,0.3466882859782424,0.3474213886513256,0.3489167616875712,0.3505075742228825,0.3506889787615334,0.352349169644734,0.3529242789842583,0.3545000316235532,0.3565902426961529,0.3601990049751243,0.3628471433116677,0.3653601694915254,0.3677273583129354,0.3727896341463415,0.373710856928558,0.3773450486820233,0.3747531520583321,0.3780805449809657,0.3755135579293344,0.3822512485593546,0.0,1.902626219644419,55.61961624133438,204.02690756939765,297.3833786374112,fqhc7_100Compliance_baseline_low_initial_treat_cost,39 -100000,95688,42820,403.634729537664,6747,69.31903686982693,5244,54.28057854694424,2149,22.10308502633559,77.33990302576841,79.72938135489234,63.32261558699434,65.08854018704514,77.07460553758148,79.46478822374988,63.22443330444197,64.99309462800804,0.2652974881869312,264.59313114246186,0.098182282552365,95.4455590371026,105.21522,74.0647201875179,109956.54627539504,77402.307695341,293.04636,185.9390415324413,305697.43332497287,193765.1020753672,301.26531,145.06712881612535,311953.9440682217,149343.5762646675,3440.48748,1553.459132122077,3561813.560739069,1589835.455714339,1299.90391,569.9922624326276,1340547.1009949,577836.8802913601,2107.37334,881.9461596874418,2168628.2292450466,892044.8094612306,0.38066,100000,0,478251,4998.024830699774,0,0.0,0,0.0,24956,260.2207173313268,0,0.0,27916,288.9286012875178,1914192,0,68704,0,0,0,0,0,50,0.5016302984700276,0,0.0,0,0.0,0,0.0,0.06747,0.1772447853727736,0.3185119312286942,0.02149,0.3155223459749048,0.6844776540250952,25.121391875770968,4.496314208374397,0.3056826849733028,0.2315026697177727,0.2313119755911518,0.2315026697177727,10.964004979099563,5.50055670059681,22.818984627384847,12688.808034706788,58.921131417144544,14.250335485525063,17.946429109805198,13.3424455046065,13.381921317207784,0.5440503432494279,0.7479406919275123,0.6918278228321897,0.562242374278648,0.1268533772652388,0.6991492652745553,0.8979057591623036,0.8609625668449198,0.7178571428571429,0.1478599221789883,0.4932928372563908,0.6790865384615384,0.6403580146460537,0.5155412647374062,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021675276005266,0.0044295778217018,0.0066868930807399,0.0090602527119814,0.0111955095939721,0.0135181905169079,0.0154421657764912,0.0176471789009553,0.0199235361465489,0.0219144711253045,0.024183710082526,0.0264119567225769,0.0285767170195481,0.0305196477313694,0.0327374809065764,0.0347808105872622,0.037047013239956,0.039006061612555,0.041047726043357,0.0429878875059937,0.0574938369615175,0.0710726324825694,0.0842967750057701,0.0971081118042478,0.1095650522717922,0.1244987992340488,0.1378055508402648,0.1505939455869204,0.1625706259946383,0.1737969634585692,0.1870476477683956,0.1991040318566451,0.2110409031093323,0.2222513804603356,0.2331968386059925,0.2447964552755469,0.2537828066416711,0.2626823010442924,0.2714956770372387,0.2803271552612889,0.2879553894744149,0.2949314684006175,0.3014674556213018,0.3075936777270494,0.3135466634282591,0.3195529487147892,0.3262161925382661,0.3310725692544568,0.3365388353918532,0.3411876584953508,0.3417462115083859,0.3417641305395986,0.3417414367135037,0.3419928464891321,0.3425045036997335,0.3416765016936683,0.3405266660328928,0.3411784041416714,0.3432963279248505,0.3439524548910425,0.3457581379659302,0.346849965384235,0.3483409838814479,0.3480317431850789,0.3482988932558532,0.3502194586686174,0.3505747126436782,0.3519524832554025,0.3557868736767819,0.3586519715115585,0.3608737376045332,0.3630202774813234,0.3644298273353994,0.3665570259313088,0.3648177794519258,0.3650869254584425,0.3640432098765432,0.3690059683062358,0.3693820224719101,0.3782101167315175,0.0,1.9048539672017772,57.02075513934513,198.03136244540988,299.78826899161294,fqhc7_100Compliance_baseline_low_initial_treat_cost,40 -100000,95772,42984,405.3794428434198,6930,71.00196299544751,5359,55.235350624399615,2197,22.564006181347366,77.331780499572,79.67293972877464,63.32970022966426,65.06272984152756,77.05946692298558,79.39940536867145,63.22972102939541,64.96474994109403,0.2723135765864271,273.5343601031843,0.0999792002688551,97.97990043352912,103.97926,73.1704940788909,108569.58192373556,76400.71636688268,295.10202,187.58236118420328,307418.34774255526,195152.07073487373,312.41992,151.02610283389015,321007.01666457835,153779.5110841352,3508.52625,1592.2385617509403,3623944.32610784,1623178.1338936724,1239.31624,546.2305254369201,1280426.951509836,556804.2878071258,2156.30594,903.562406003824,2217815.478427933,914872.7726989292,0.38105,100000,0,472633,4934.980996533433,0,0.0,0,0.0,25141,261.746648289688,0,0.0,28786,295.29507580503696,1916257,0,68840,0,0,0,0,0,73,0.7622269556864218,0,0.0,0,0.0,0,0.0,0.0693,0.1818658968639286,0.317027417027417,0.02197,0.3261790840738209,0.6738209159261791,25.098316276309824,4.480715865640425,0.3319649188281395,0.2144056727001306,0.2267214032468744,0.2269080052248553,10.924337411041716,5.398400180881591,23.475862088122643,12760.86632810862,60.716609719645,13.595286569711153,20.24883410281236,13.574947704179662,13.29754134294186,0.547676805374137,0.7702349869451697,0.6942102304665543,0.5695473251028806,0.1011513157894736,0.7156789197299325,0.9232804232804231,0.8524229074889867,0.7290076335877863,0.1129707112970711,0.4920516641828117,0.695201037613489,0.64,0.5257082896117523,0.0982599795291709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024715117751329,0.0049166700458213,0.0074177803484631,0.0095595107481002,0.011533180778032,0.0135846597215857,0.0160274056401786,0.0181305892441504,0.0204146306556807,0.0222142601218201,0.0242239717882478,0.0262541840359775,0.0280813959466546,0.0300991975607494,0.032303675188094,0.0344253651879955,0.0363515850741013,0.0385102057749751,0.0404751018372267,0.0426384839650145,0.0576106351674266,0.0721824172375921,0.0855582460664381,0.0984395523564335,0.1109460285346989,0.1259854168868223,0.1401784957177987,0.1518615805089702,0.162931181693989,0.1736866354509316,0.1873358308573397,0.2004153911058706,0.2128073781635072,0.2236806125239267,0.233625006879093,0.2448753462603878,0.2551330119621496,0.2646883471883191,0.2734511467525691,0.2808048188356007,0.288668378322115,0.2959052429727328,0.3035625517812759,0.3099930470641828,0.3168292771830917,0.3228325089733943,0.3288479609096034,0.3342428028661039,0.3393477922482229,0.344091990483743,0.3439487870619946,0.3438024718544413,0.3434394688993192,0.3426896352055588,0.3425526213939087,0.3430738755892695,0.3423058599333016,0.3428905503771285,0.3442116641787203,0.3447584255578239,0.3454983257458896,0.346631240829599,0.3475788276428586,0.3479942435689872,0.3487436698892684,0.3493555246370724,0.3503471624490732,0.3520311313591496,0.3552051363459978,0.358338995243995,0.3615575351271926,0.3656912751677852,0.3691549926437664,0.3761956186362233,0.3828674652975851,0.3831417624521073,0.3846991136681698,0.3918200408997955,0.3914620535714285,0.4021437078205637,0.0,2.699752519688455,58.09201236166764,211.671372739634,297.6486593111982,fqhc7_100Compliance_baseline_low_initial_treat_cost,41 -100000,95687,42985,405.3006155486116,6917,71.08593643859668,5399,55.84875688442526,2205,22.688557484297764,77.34192318165195,79.71805358359882,63.32298576779221,65.07545140162587,77.07023740401694,79.4458047447513,63.22392286627462,64.97909942444728,0.2716857776350139,272.24883884751705,0.0990629015175841,96.35197717858546,103.78456,73.06695779903136,108462.54977165132,76360.38103298395,292.72484,185.12841815457747,305344.017473638,192897.7898299429,305.56413,146.9405258490267,315740.1527898252,150831.75069493824,3574.43915,1608.5945649728296,3698174.245195272,1643721.0958362462,1327.34453,574.2379578072942,1370231.3689424896,583179.2383576599,2180.6479,899.5209652676999,2244679.2772267917,910035.0032333084,0.38285,100000,0,471748,4930.115898711424,0,0.0,0,0.0,24915,259.78450573223114,0,0.0,28347,292.6938873619196,1919805,0,68889,0,0,0,0,0,51,0.5225370217479909,0,0.0,0,0.0,0,0.0,0.06917,0.180671281180619,0.3187798178401041,0.02205,0.3231086657496561,0.6768913342503439,25.22000366117029,4.474721013808794,0.3152435636228931,0.2172624560103722,0.2261529912946842,0.2413409890720503,11.208630209287405,5.7002697150017765,23.329146855075507,12834.038026016187,60.94033341838941,13.840782686766666,19.25036962369069,13.441507496905857,14.407673611026198,0.5460270420448231,0.763000852514919,0.6891891891891891,0.597051597051597,0.1158864159631619,0.7194139194139194,0.922279792746114,0.852017937219731,0.7545126353790613,0.14453125,0.4873574615765989,0.6848792884371029,0.6313694267515924,0.5508474576271186,0.1088825214899713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022883063495438,0.0044191727227577,0.0065431084330016,0.0085014321408982,0.0109119013962759,0.0130826087841827,0.0151499704341088,0.017440495032318,0.0196736062824655,0.021604464240004,0.023767533426298,0.0259909632368042,0.0281103431251542,0.0302106087458269,0.0320619354838709,0.0343529606419722,0.0366806165575536,0.038945805956051,0.0410474536435204,0.0430383176498785,0.0580382325289877,0.0720433935789231,0.0854719694345603,0.0985994044048784,0.1107370864770748,0.1255886804034246,0.1395822936685743,0.1514412322375849,0.1638161411010155,0.1746849573860587,0.1884070472041921,0.2013624893047838,0.2135540824434793,0.2241530245994922,0.2350001651055024,0.2456985852139905,0.2556763635551785,0.2658967345422618,0.2749126469120116,0.2840076056079905,0.2911777638917818,0.2983186886473458,0.3057771990055641,0.3126191703941767,0.3183022583076063,0.3233223607155626,0.3294710075033508,0.3350859994652883,0.3405273602158208,0.345807611468757,0.3470536618292271,0.347425683791956,0.3475354700130009,0.3480966854827037,0.3479715164939718,0.347211155378486,0.346995055154051,0.3482840918442926,0.3488009325128134,0.3495196006512676,0.3514392003607395,0.3526725438805496,0.3536487907465825,0.3540407558021973,0.3546861046076609,0.355173405117215,0.3558746289107102,0.3589606299212598,0.3593491935200478,0.3631668851547293,0.3642028655901751,0.364274322169059,0.3649042728540636,0.367126209155305,0.3693464974141984,0.3703266894680976,0.3660944857967492,0.3679871305047255,0.3758241758241758,0.3761329305135951,0.0,2.19577566513972,60.27753063544196,201.52232000976096,307.812961968743,fqhc7_100Compliance_baseline_low_initial_treat_cost,42 -100000,95734,42766,402.0410721373807,6814,69.89157457120773,5355,55.29905780600414,2195,22.60429941295673,77.32392886815877,79.68953007417757,63.31606620966248,65.06549650716275,77.05161419496243,79.41507865871097,63.21697280436668,64.96830202989266,0.2723146731963481,274.4514154666007,0.0990934052958039,97.19447727009369,104.08398,73.26851275410776,108722.06321682996,76533.42882790623,293.27975,185.84742921925675,305713.7902939394,193494.1809798575,306.43237,147.23775161552314,315854.6911233209,150612.72241578178,3529.87389,1591.493476764228,3647780.945118767,1623024.418455542,1258.18363,547.9437868413794,1299919.5583596216,558033.2473103068,2155.5839,894.5771868837903,2221208.828629327,907210.6992692387,0.38101,100000,0,473109,4941.911964401363,0,0.0,0,0.0,24909,259.5107276411724,0,0.0,28380,292.18459481479937,1917762,0,68928,0,0,0,0,0,61,0.637182192324566,0,0.0,0,0.0,0,0.0,0.06814,0.1788404503818797,0.3221309069562665,0.02195,0.3322643614054657,0.6677356385945343,25.256935313408075,4.556076077391039,0.338562091503268,0.2087768440709617,0.2240896358543417,0.2285714285714285,11.037526250960608,5.477092597665657,23.38739007497057,12770.29418131193,60.29101764752073,13.11326070368018,20.30921822843523,13.348144157144551,13.520394558260763,0.5398692810457516,0.7710196779964222,0.6811913954771097,0.5625,0.0972222222222222,0.7080838323353293,0.9187675070028012,0.841743119266055,0.7745454545454545,0.1417910447761194,0.4839512316496641,0.7017082785808147,0.6303558460421206,0.4994594594594594,0.0847280334728033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410748832639,0.004846444757627,0.007124444354233,0.0097136702635696,0.0120234365463644,0.0142260692464358,0.0165059233733662,0.0185368542468382,0.0207240642476663,0.0228217466980649,0.0249853901596317,0.0273311566972627,0.0294132765834952,0.031457294713856,0.0335063514503596,0.0352273549507457,0.0371851176665561,0.0393677087225474,0.0415119846097852,0.0437056562099538,0.059019439978284,0.0733087819882404,0.0860100040897222,0.0987623163717046,0.1105674424490398,0.1262918495795208,0.138870615198523,0.1515225724020442,0.1634250803721149,0.1745031195729079,0.1881075146126438,0.2014381487889273,0.2137157269900632,0.2243300276626685,0.2345171188808112,0.2453461201980044,0.2552279777713304,0.2644974009316141,0.2731008491122917,0.2815706506162224,0.2894486802159857,0.2964407891653779,0.3037344398340248,0.3099184962008907,0.3155633451394213,0.3213029364207512,0.3268241904331903,0.3322918393633708,0.3384603403294264,0.3442371311366944,0.3446171295858707,0.3445592638070667,0.3442759634272148,0.3442221255618384,0.3440736821711203,0.3433582421629252,0.3422650663537918,0.3428176931801371,0.3438361087815982,0.3439969958156003,0.344922695887121,0.3461142155114334,0.3455465502036702,0.3455654748553228,0.3469254725863692,0.3471295060080107,0.3464443045940843,0.348546272249319,0.3522404991491775,0.3545520057650733,0.3574675175611772,0.3599957226113457,0.362638756739613,0.3651414118188089,0.3650990099009901,0.3672709809100732,0.3657826153610302,0.3645103144402163,0.3630008066684592,0.3546533895059364,0.0,2.439834714053536,58.67282700651068,197.8505651355671,309.6977363643745,fqhc7_100Compliance_baseline_low_initial_treat_cost,43 -100000,95807,42540,400.55528301689856,6870,70.68377049693655,5444,56.38418904672936,2195,22.566200799524044,77.4066300966336,79.74504357913997,63.35719594835807,65.0873315107855,77.13579602935211,79.47460194561135,63.25728777331098,64.99049324660194,0.2708340672814984,270.4416335286197,0.0999081750470907,96.83826418356034,104.40606,73.5322529814179,108975.39845731524,76750.39713321354,294.60136,186.22850056778225,307055.87274416274,193940.0676023487,304.82948,146.2581144065998,316085.5887356874,151023.90702860375,3561.0584,1600.0173658820015,3687819.6165207135,1641283.3202092955,1327.13883,571.7258968332249,1374444.6439195464,586087.7734038486,2149.32304,900.8226587755298,2211228.803740854,910563.1910809708,0.37856,100000,0,474573,4953.427202605238,0,0.0,0,0.0,25056,261.0560814971766,0,0.0,28156,291.78452513908167,1920346,0,68900,0,0,0,0,0,61,0.6366966923084952,0,0.0,0,0.0,0,0.0,0.0687,0.1814771766694843,0.3195050946142649,0.02195,0.3173329644487481,0.6826670355512519,25.12653048730217,4.567707363939241,0.3304555473916238,0.2112417340191036,0.230712711241734,0.2275900073475385,11.212097479888154,5.677336967329258,23.310317179149035,12671.24706141222,61.030695568101805,13.413925193218862,20.194338153712597,13.958017400069204,13.464414821101148,0.5505143277002205,0.7747826086956522,0.6803779877709839,0.5859872611464968,0.1178369652945924,0.6968325791855203,0.9380530973451328,0.8461538461538461,0.7093425605536332,0.10546875,0.503399708596406,0.7065351418002466,0.6263817243920413,0.5491209927611168,0.121057985757884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002269641518228,0.004735251769382,0.0070021615368222,0.0091035631915304,0.0113098931052369,0.0134518645241441,0.0157929079749597,0.0181799622314091,0.0203401610858988,0.0225039911580498,0.024647959497407,0.0267915777376457,0.0287881435193274,0.0309968189913423,0.0329965982888362,0.0352116311968856,0.0371600302080423,0.0389683090926054,0.0409441783632717,0.0426869898384141,0.0568685761986748,0.0699637109003252,0.0833499292489911,0.0960032789297237,0.1086878648039277,0.1242048312445844,0.1369485488965678,0.1489483869595729,0.16081013306585,0.1721674111686002,0.1857817661426558,0.198276328168085,0.2102895148669796,0.2207854615351011,0.2308807857527383,0.2426197220501018,0.2523141435995806,0.2622425577839734,0.2716714491487938,0.2802665170751812,0.2880789339749225,0.2952667079714295,0.3019939648541506,0.3081751964730688,0.315105938380795,0.3216971131326578,0.3271882475233885,0.3323404742811318,0.3370531663944837,0.342316991003131,0.3422525523621994,0.3414103288195831,0.3416460963396572,0.341937350792158,0.3422034578619531,0.3413072776280323,0.339595192915876,0.3397849814808745,0.3411582459485224,0.3421974777210551,0.3436692990007111,0.3445658174934932,0.346398260796856,0.3462483251451541,0.3461307594420034,0.3471012042552084,0.3497952917093142,0.3527696793002915,0.3549970203666702,0.3572532392915164,0.3593927548747784,0.3626786659608258,0.3654847819265767,0.3664047151277014,0.3707144848090681,0.3712448860315605,0.3715988994191379,0.375875175035007,0.3749309773605743,0.3815028901734104,0.0,1.7320895227070616,58.85936961786823,204.98525207115557,312.7729352821624,fqhc7_100Compliance_baseline_low_initial_treat_cost,44 -100000,95694,42614,401.69707609672497,6847,70.42238802850753,5380,55.68792191777959,2207,22.72869772399524,77.29491858535671,79.70038842295463,63.29396199958445,65.0756375507567,77.02520727054234,79.42867737189577,63.1952819799628,64.97858098727242,0.2697113148143728,271.7110510588583,0.0986800196216535,97.05656348427284,104.4626,73.49815217256356,109163.16592471836,76805.39236792648,294.00872,186.3832958187829,306645.5890651451,194180.31910023725,307.68045,147.62814075361726,318945.59742512595,152159.5387642919,3547.56401,1597.042446266832,3672963.592283738,1634789.7453586692,1323.51883,574.2704469914935,1369490.9816707422,586584.4695070109,2173.90364,901.552046057415,2240258.5533053274,914707.504472818,0.37996,100000,0,474830,4961.962087487199,0,0.0,0,0.0,24950,260.1626016260162,0,0.0,28490,295.17002110895146,1917144,0,68832,0,0,0,0,0,55,0.5538487261479298,0,0.0,0,0.0,0,0.0,0.06847,0.1802031792820297,0.3223309478603768,0.02207,0.3282379099499722,0.6717620900500277,24.89297000715087,4.498582453855504,0.3187732342007435,0.2171003717472119,0.2302973977695167,0.2338289962825278,11.173916266813968,5.688888587054668,23.466906082210564,12708.851660858449,60.83271219246704,13.704410429022596,19.406942206593666,13.938938025570144,13.782421531280628,0.5566914498141264,0.7773972602739726,0.7043731778425656,0.58272800645682,0.1248012718600953,0.7119645494830132,0.935483870967742,0.8440366972477065,0.7331081081081081,0.124,0.5044709388971684,0.7035175879396985,0.656763096168882,0.5355249204665959,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023112715034415,0.0047997402254761,0.0070278779261666,0.0092318641655228,0.0115944094383989,0.0137290675037966,0.0160210620841667,0.0180319159804662,0.0202561689241723,0.0224241430883648,0.0242396266092219,0.0261349277282953,0.0285661363683138,0.0306403240268373,0.0327115827286146,0.0345512270287599,0.03668355768334,0.0386432301670525,0.0407065652730242,0.0427862667027996,0.0569070872721575,0.0708355580681972,0.0839411079512661,0.0964731381915363,0.1087385400951607,0.1247050607865751,0.1382655769026642,0.1506404454902629,0.1622285860830911,0.1731456346098134,0.1867001335803852,0.1994374120956399,0.2116655794737986,0.22286345104983,0.2336988199584291,0.2446848562696549,0.2534560669456067,0.2628072386783109,0.2716133501402469,0.2800403595670519,0.2881412854661262,0.2955705389333708,0.3032028891125451,0.309387559234599,0.3159161641703948,0.3219956048297488,0.3263760921615082,0.3306331435558443,0.3362640493085409,0.3414972090629577,0.3414394398438026,0.3417580452100216,0.3422688258424591,0.3424386152644821,0.3427547119289529,0.3419359791202886,0.3412824505099933,0.3420276482509762,0.3436466171857591,0.3449178681586686,0.3463480817064898,0.3478036072941317,0.3494006362314871,0.3500326187208962,0.3505582524271844,0.3520286082406458,0.3543051120508615,0.3556691213814119,0.3589154411764705,0.3588830659679161,0.3625184229918939,0.3634222079451761,0.365178854067743,0.3643535539215686,0.3684559310801855,0.3690561529271207,0.3608342278791596,0.3658437053662517,0.3716401535929786,0.3756171667299658,0.0,2.031507378326737,59.95331732050001,204.23375661759115,304.68513281836096,fqhc7_100Compliance_baseline_low_initial_treat_cost,45 -100000,95714,42940,404.84150698957313,6933,71.09722715590196,5406,55.833002486574586,2157,22.159767641097435,77.3593554540744,79.72962111013899,63.33143217950936,65.08343122922916,77.09659109171373,79.46733126682123,63.2357478774257,64.99042054634559,0.2627643623606701,262.2898433177596,0.0956843020836615,93.01068288357328,104.46062,73.46424613938346,109138.28697996114,76753.91911254724,293.99118,186.2573717615942,306514.05228075304,193956.00618675863,311.22322,150.05399148016755,320355.8309129281,153169.0902266952,3588.18601,1624.2157555254566,3710032.85830704,1658286.261204724,1314.93682,580.2479754003433,1357652.4332908457,590131.139694949,2132.239,883.6902588515984,2193452.2431410244,895077.58461531,0.38249,100000,0,474821,4960.83122636187,0,0.0,0,0.0,25029,260.8395845957749,0,0.0,28772,295.8396890736987,1917433,0,68802,0,0,0,0,0,59,0.6164197505067179,0,0.0,0,0.0,0,0.0,0.06933,0.1812596407749222,0.3111207269580268,0.02157,0.3167123287671233,0.6832876712328767,24.98595237772533,4.437961543592101,0.3209396966333703,0.2082870884202737,0.2360340362560118,0.234739178690344,11.045587864251027,5.596049993546319,23.01690463040345,12860.412494940318,61.051206866492485,13.155521612627076,19.5493540238739,14.286687482675784,14.059643747315729,0.5449500554938956,0.7646536412078153,0.700864553314121,0.579153605015674,0.1024428684003152,0.7216876387860843,0.9237057220708448,0.8790697674418605,0.7245901639344262,0.1485943775100401,0.4860665844636251,0.6877470355731226,0.6421455938697318,0.533470648815654,0.0911764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194101203257,0.0046225430068831,0.0068292286929079,0.0089476143080579,0.0110226452314857,0.013244830850988,0.0153014934502268,0.0174244125512933,0.0195152370145469,0.0215606380147013,0.023955534589905,0.0263357916144538,0.0287051803076289,0.0308884286877054,0.0330626270548051,0.0353225756432388,0.0373437969126919,0.0389996992044476,0.0408770051252196,0.0429986562919908,0.0577547589461923,0.0722254782936325,0.0853858095917425,0.0986109504631917,0.1109623130944598,0.1263474130726836,0.1392720713073005,0.1525800853818228,0.1645456002564513,0.1757245404895007,0.1892931404130619,0.2018615725959197,0.2145257959601013,0.2255350343559893,0.2360851082575273,0.2465238507085357,0.2563037409268565,0.2654353621362608,0.2751492046202373,0.2837619565839968,0.2918763812234602,0.2995615317158726,0.3061181060471715,0.312379561694335,0.3193102946172887,0.3258516886027012,0.3308183183183183,0.3361816840873833,0.341580248831579,0.3460173839640186,0.3472231562806838,0.3471964352023765,0.3476377952755906,0.3479664485631107,0.3474010561917759,0.3472937651896122,0.3462322113941845,0.3465572051256841,0.3471167465911224,0.3488716439211489,0.3495910557514819,0.3505136274568018,0.3526219473717423,0.3532983963473606,0.3544701306857984,0.3553967755443886,0.3573492803799822,0.3597659338921398,0.3604544492272952,0.3628621458134352,0.3651469376544905,0.3661362665527552,0.3671337579617834,0.3669514800122063,0.3687382297551789,0.3705150976909414,0.3731640146878825,0.3819024586860137,0.3808871851040525,0.388382687927107,0.0,2.514456679287437,59.22333192879218,208.0463968600771,303.3811245515004,fqhc7_100Compliance_baseline_low_initial_treat_cost,46 -100000,95881,42787,402.6136565117176,6771,69.37766606522669,5314,54.7762330388711,2100,21.453676953723885,77.4394230829848,79.72070243153621,63.39129033748679,65.07754590419873,77.18389668452232,79.46844728129479,63.29726663554105,64.9882238815491,0.2555263984624787,252.25515024142453,0.094023701945737,89.32202264962541,103.82702,73.06615536545017,108287.37706114873,76205.04100442232,292.7839,185.9888277781505,304717.56656689016,193334.63123888,305.96509,146.75478139742492,315649.6281849376,150281.44676106994,3485.28828,1568.3138388991097,3593210.8134041154,1593884.105191965,1272.5439,552.4296097590986,1308840.1455971464,557796.1791995224,2055.4271,851.6508679260586,2101870.193260396,851328.4280374215,0.38144,100000,0,471941,4922.153502779487,0,0.0,0,0.0,24866,258.6643860618892,0,0.0,28406,292.790020963486,1925019,0,69110,0,0,0,0,0,67,0.6883532712424777,0,0.0,0,0.0,0,0.0,0.06771,0.1775115352348993,0.310146211785556,0.021,0.3218926553672316,0.6781073446327683,24.993709540321312,4.584871817363817,0.3340233345878811,0.2090703801279638,0.2346631539330071,0.2222431313511479,11.288628045407384,5.934964181310885,22.092779755984065,12751.991413512487,59.62377284250312,12.899014760968942,19.99903377544942,13.856543912408243,12.869180393676515,0.5639819345126083,0.7686768676867687,0.7059154929577465,0.595028067361668,0.1253175275190516,0.7253184713375797,0.9146341463414634,0.8801955990220048,0.7482993197278912,0.1377777777777777,0.5140463282405126,0.7075351213282248,0.6537335285505125,0.5477439664218258,0.1223849372384937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021056894108119,0.0044894401880903,0.0068371559865691,0.0091482297515458,0.0113531259211074,0.0135731873588246,0.0159103641456582,0.0181660546715626,0.0204732131911241,0.0226477628429386,0.0247648517387651,0.0267183796595561,0.0287528773429792,0.0308002717671038,0.032692406825094,0.034592428904814,0.0366967731255884,0.0387425006994166,0.0408118770764119,0.0427473133381188,0.0571556639668094,0.0712113771015976,0.0850725168857008,0.0976680211253556,0.1103683506858544,0.1264002533917542,0.1396735619035514,0.1512485389437891,0.163234196780727,0.1744718649001519,0.1883042192958882,0.2004300099399282,0.2125119492482836,0.2235407242291134,0.2337947945416359,0.2442833425567238,0.2546038257457529,0.2634121678557384,0.2726242677634635,0.2807519037709529,0.2888745133826978,0.2962582332881767,0.3033774278587556,0.309941450448401,0.3155230186480186,0.3218191222107285,0.327576720106045,0.3325118146247268,0.3370604963805584,0.3424406815368814,0.3434218487394957,0.3437242515792365,0.3434566305019956,0.3437486469713807,0.3436582109479306,0.3425403379980117,0.3418109924871491,0.3427143091296509,0.3442080297575375,0.3455780130467329,0.3471270821635785,0.3493680884676145,0.3499026361523482,0.3515828927113312,0.3520839824557198,0.3532659652047088,0.3545044149796996,0.3564071256378949,0.3582167649213381,0.3602999210734017,0.3620923913043478,0.3634049323786794,0.3637963544940289,0.3655840195181458,0.3685406019307212,0.371271772846576,0.3713178294573643,0.3749743168276145,0.3766666666666666,0.3684609552691433,0.0,2.482701563808057,54.65102732537423,211.8364259408035,298.18569028953067,fqhc7_100Compliance_baseline_low_initial_treat_cost,47 -100000,95738,42929,405.9203242181788,6721,69.00081472351626,5276,54.523804549917486,2193,22.49890325680503,77.34647984393533,79.6972498401573,63.33814763576003,65.07472995959974,77.07492199979062,79.42771001782314,63.23771326407807,64.97787911334692,0.2715578441447093,269.53982233415275,0.1004343716819633,96.8508462528206,104.38846,73.46646720551897,109035.5553698636,76736.99806296243,294.35411,186.77480532946265,306889.03047901567,194520.58255808835,302.65908,145.250137393075,312873.5507322066,149222.01042398627,3502.3097,1579.514427037113,3619926.1003990057,1611533.1185497018,1305.52632,572.3445386512125,1346922.2774655833,581101.2018751306,2158.4513,904.717765571088,2216034.3437297624,911837.9382285024,0.38215,100000,0,474493,4956.161607721072,0,0.0,0,0.0,25109,261.67248114646225,0,0.0,27979,288.9134930748501,1916687,0,68806,0,0,0,0,0,59,0.6162652238400635,0,0.0,1,0.0104451732854248,0,0.0,0.06721,0.1758733481617166,0.3262907305460497,0.02193,0.3259123573340848,0.6740876426659151,24.85755251949706,4.538032146345331,0.3233510235026535,0.2173995451099317,0.2215693707354056,0.237680060652009,11.125455081309694,5.572859123465811,23.431279198199128,12703.017000166446,59.36057115214666,13.35864164437166,19.17613495870473,12.868238099551776,13.957556449518506,0.5432145564821834,0.7707061900610288,0.6805392731535757,0.5671514114627887,0.1259968102073365,0.693302891933029,0.8994252873563219,0.8812351543942993,0.6856060606060606,0.1637010676156583,0.4934376577486118,0.7146433041301627,0.6147859922178989,0.532596685082873,0.1151079136690647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0044906689373435,0.0064135740453212,0.008705633774202,0.0110134846543413,0.0130823424010425,0.0153312945973496,0.0176262260280264,0.0196256810213531,0.0215412652421856,0.0236062280261175,0.0256810297045963,0.0276458371887401,0.0295914058235227,0.0314998813466637,0.0335200727663621,0.0354506393332298,0.0375984313237262,0.0396157964220002,0.0416957450132805,0.0563049424735336,0.0702922213849116,0.0835230551329801,0.0962060190540284,0.1084950918887002,0.1241991076526188,0.1365029861354209,0.1486195959896975,0.1604372844804577,0.1714754238923067,0.1852103047723627,0.1986590245485022,0.2106023886890466,0.2215034258176612,0.2314101366279389,0.2421484950128967,0.2519488340452107,0.2618554845676235,0.2712449079169834,0.2796531540303089,0.2870515001099193,0.2951730429595667,0.3030525493167878,0.3097765463639307,0.3164904605662899,0.3222030556924593,0.3284968514878754,0.3337579131055038,0.3389553439373102,0.3437632191201353,0.3443638031513058,0.3448889011413133,0.3453414045633493,0.3456464762015088,0.3460204005658551,0.3460026413587641,0.3453152996020106,0.3459597205096588,0.3462737173779026,0.3467580333500322,0.3491896561437773,0.3500188182160331,0.3510488333438532,0.3520415038404528,0.3527465094932122,0.3536194578693002,0.3545237890142705,0.3557671020588886,0.3587788953590965,0.3604558495377749,0.3621361448544579,0.3647253863842986,0.3676637637258614,0.3695552147239264,0.3703422774248601,0.3790998324156093,0.3801475107559926,0.3802125919869174,0.3769382576825486,0.3793375394321766,0.0,2.308896981771844,57.72698367055402,195.81747501624136,304.1068050794295,fqhc7_100Compliance_baseline_low_initial_treat_cost,48 -100000,95742,42791,403.1250652796056,6861,70.428860896994,5399,55.81667397798249,2147,22.080173800421967,77.41222784566315,79.76816521955521,63.350809200748486,65.08989454202973,77.14747248114378,79.50367080345977,63.25375978066701,64.99509113429599,0.2647553645193738,264.4944160954452,0.0970494200814826,94.8034077337354,104.00478,73.10798533934882,108630.25631384346,76359.36719449022,295.89081,187.9950965113099,308495.9683315577,195801.73436037468,305.36575,147.63562844978935,315378.92460988904,151399.83971565077,3553.38279,1605.1028138742092,3676386.779052036,1641459.603804191,1326.08058,577.7201867689098,1371129.4311796287,589486.6900304038,2108.01896,878.2572604718856,2169758.099893464,891087.7056507982,0.38179,100000,0,472749,4937.73892335652,0,0.0,0,0.0,25309,263.76094086189966,0,0.0,28309,292.07662258987693,1918609,0,68755,0,0,0,0,0,57,0.595350003133421,0,0.0,0,0.0,0,0.0,0.06861,0.179706121166086,0.3129281445853374,0.02147,0.3151750972762646,0.6848249027237354,25.24046271655853,4.433589898264091,0.3315428783107983,0.2161511390998333,0.2222633821077977,0.2300426004815706,11.234223544478471,5.837482386217249,22.75627940611923,12835.797048748687,60.7706121904352,13.684565524176396,20.207849130356657,13.367326451428331,13.510871084473823,0.5478792368957214,0.7506426735218509,0.6921787709497207,0.575,0.1231884057971014,0.7085137085137085,0.8807588075880759,0.8464730290456431,0.7535714285714286,0.1490196078431372,0.4923997009718415,0.6904761904761905,0.6353211009174312,0.5206521739130435,0.116514690982776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0046419703035524,0.0068883658645457,0.0092208952798765,0.0116308624528512,0.0139868682241563,0.0160935238599995,0.0182239319204514,0.0203063841963802,0.0223848515864892,0.0246269574485529,0.0267512523610084,0.0287852619458837,0.0309252870603985,0.0329260994283591,0.0349682154116491,0.0371010831072545,0.0391351261620185,0.0410142848231551,0.0429497062377599,0.057942266534426,0.0726901747410275,0.0865501615407208,0.0998558911083762,0.111978644607869,0.127833393299329,0.1415305591815509,0.1539002108222066,0.1657636862971393,0.1761177051361851,0.1908124541808616,0.2031662840559622,0.2150220432155881,0.2259176948425166,0.2355798889574336,0.2464869181371516,0.2563391929193254,0.2658617077593683,0.274429643761569,0.2821024388565925,0.2896757827431629,0.2973169132796404,0.3054749926013613,0.311867900110243,0.3178505490234185,0.3234855671500203,0.3285399889961486,0.3338161121063129,0.3388551492440884,0.3445049739459971,0.3446933598206735,0.345116598079561,0.3455515764342391,0.3457992393684453,0.3455072378051485,0.3441973200810988,0.3442395587076438,0.3436979183686807,0.3446340177250072,0.3451849744893424,0.3462069222736088,0.3475771705128961,0.3492358831768862,0.3499442834856251,0.3519602668074283,0.3530314059900166,0.3545389970166216,0.356713050018804,0.3599383882937758,0.360802749575317,0.363417951042611,0.3664777242146527,0.3672110552763819,0.3704153694282026,0.3735873727468011,0.3765206094248258,0.3778990450204638,0.3831025486654625,0.38126540673788,0.3882938026013772,0.0,2.243957961929484,61.02919593466046,198.64556698382955,305.8557093540388,fqhc7_100Compliance_baseline_low_initial_treat_cost,49 -100000,95740,42834,402.7261332776269,6841,70.32588259870482,5379,55.70294547733445,2196,22.634217672864008,77.32373385663094,79.6951364159907,63.321321634088775,65.07583689632193,77.0596248902363,79.42780971724513,63.22496384548327,64.98009128613577,0.2641089663946445,267.3266987455776,0.0963577886055091,95.74561018615668,104.85662,73.68436234821701,109522.26864424485,76962.98553187487,292.69723,185.6558512454068,305237.7480676833,193433.50871673992,300.11114,144.64947809598533,310488.7298934615,148804.86065085413,3596.88159,1612.865112876317,3726505.535826196,1654209.2363445975,1296.66221,560.5790815491262,1343374.0651765198,574538.5435023252,2168.60804,901.382575013986,2236831.6482139127,918492.6481646458,0.38167,100000,0,476621,4978.284938374765,0,0.0,0,0.0,24936,259.9540421976185,0,0.0,27802,287.4138291205348,1917644,0,68830,0,0,0,0,0,50,0.5222477543346564,0,0.0,0,0.0,0,0.0,0.06841,0.179238609269788,0.321005700920918,0.02196,0.3138888888888889,0.6861111111111111,25.34459889884247,4.550665589169346,0.323294292619446,0.202268079568693,0.2348020078081427,0.2396356200037181,11.024859067365105,5.45878313224701,23.426024246566417,12776.848147519362,60.43499749875549,12.73578539462948,19.58923364956945,13.96207532642241,14.147903128134155,0.5350436884179215,0.7683823529411765,0.679700977573318,0.5795724465558195,0.0993017843289371,0.7007633587786259,0.9287749287749288,0.8333333333333334,0.7389705882352942,0.1215686274509803,0.4816908331285328,0.6919945725915875,0.6289211935730681,0.5358224016145308,0.0938104448742746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002208713272543,0.0042897563053332,0.0067295980511571,0.0089628681177976,0.0113543871072765,0.0135888111318236,0.0157875413046138,0.0181283384228856,0.0203388790608734,0.0226637308617952,0.0248894996461937,0.026948752182397,0.029216604084152,0.0313575565219183,0.0334534119177134,0.0354285123539749,0.0374509336840906,0.0396430979924262,0.042171367970139,0.0440318412936567,0.0590421699955105,0.0729363991250562,0.085660337774048,0.0986736228713277,0.1102921793776821,0.1262739459550894,0.1389778730084646,0.1521193293046216,0.1629238079982914,0.1737606141178488,0.1865041770734648,0.1990892472769359,0.2110642369416779,0.2224736790317819,0.2329211678510923,0.2435110953625371,0.2542425796668376,0.2640205814946299,0.2733415720910194,0.2815006349896456,0.289105386633383,0.2966252220248668,0.3041000662063747,0.3110528144128604,0.3171469163236312,0.3231252695791484,0.3287839326855654,0.3336220622890262,0.3387669882767922,0.3432461341397388,0.3445696417500067,0.344944517196223,0.3457755323802938,0.3453067493552033,0.3445399430980292,0.3443460647260116,0.3434282636930972,0.3436001051317432,0.3449936801831039,0.3458905945636828,0.3469058127523711,0.3484532809492628,0.3488092729188619,0.3493699369936994,0.3503013579260765,0.3519355008141184,0.3520211603703065,0.3544022360564096,0.3559087522616809,0.3590434083601286,0.3623188405797101,0.3648706896551724,0.3651219200817056,0.3679208838754539,0.3706749858196256,0.3702550592743384,0.3696349473041087,0.3727199027158492,0.3707772589947816,0.3798688777477825,0.0,1.8937341705299875,57.90743693840684,202.0090668862198,311.9249117635932,fqhc7_100Compliance_baseline_low_initial_treat_cost,50 -100000,95779,42625,402.1131980914397,6716,68.98171833074056,5246,54.18724355025632,2106,21.59137180384009,77.38153749659537,79.7223284475096,63.350937847410606,65.08255457382238,77.1198285642176,79.46348929572822,63.25432568531218,64.99013809336824,0.2617089323777719,258.8391517813733,0.0966121620984239,92.41648045413342,104.28154,73.38605667323236,108877.24866620032,76620.1951087737,291.4116,185.08627999452236,303636.1519748588,192625.05350287884,301.86889,145.1937456838565,311782.57238016685,148980.83988083398,3468.2071,1561.12791854623,3581377.170360935,1590252.6217085463,1276.92315,557.9493997213458,1316303.1249021185,565644.055295363,2074.3456,867.964716621388,2127038.536631203,871599.6551424472,0.37913,100000,0,474007,4948.965848463651,0,0.0,0,0.0,24871,259.04425813591706,0,0.0,27853,287.47428977124423,1921879,0,68914,0,0,0,0,0,44,0.4489501874106015,0,0.0,0,0.0,0,0.0,0.06716,0.1771424049798222,0.313579511614056,0.02106,0.3251490207209764,0.6748509792790236,25.328821158337984,4.493472074568488,0.3187190240182996,0.2123522683949676,0.2361799466260007,0.232748760960732,10.919062575862617,5.453509345321089,22.475894923143063,12707.502927319463,58.95843237820869,13.048286176781971,18.769701367583465,13.703550659169377,13.436894174673872,0.5480365993137629,0.7666068222621185,0.6931818181818182,0.5803066989507667,0.1171171171171171,0.7063310450038138,0.9237057220708448,0.8725961538461539,0.6865671641791045,0.1538461538461538,0.4952986022871664,0.6894243641231593,0.6337579617834395,0.5509783728115345,0.1071800208116545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0045613963954832,0.006726593888235,0.0088865868397265,0.0110722492221973,0.0133147388458523,0.0152790801973335,0.0174833382663632,0.0196611416542336,0.0219984856856365,0.023804644108786,0.0260105520313686,0.0280693817538736,0.0302197236465476,0.0321402784940691,0.0342721937510332,0.036228734633056,0.0383542899791642,0.040058591923872,0.0420961662605943,0.0567319633893069,0.070694920927119,0.0843564231870079,0.0972267468132283,0.1096649769730948,0.125315746641724,0.1381470176777311,0.1509983626427371,0.1623000330832524,0.1731622612386648,0.1859251046790738,0.1984815383617053,0.2103598561010335,0.2214693957839291,0.2320976790232097,0.242654385226845,0.2532841180275219,0.262871531993345,0.272593247825446,0.2811520241664187,0.2892411942921899,0.2966041264831375,0.3034831168216559,0.310455128128332,0.316759552690052,0.3222695699295532,0.3280537046991612,0.3331806848827151,0.3377953265583533,0.3423714508024846,0.3428756005975693,0.3423890615972929,0.341829254539303,0.3414369594770485,0.3425898381722989,0.3419903470466559,0.3417084632058604,0.3422708797692408,0.3429457681426185,0.3436486149238832,0.345073587237389,0.3451166468960063,0.3470765875346028,0.3476963797048136,0.3494089037632726,0.3517860873198245,0.3537061860080426,0.3564670752789565,0.359268215750184,0.3624166402032391,0.362554704595186,0.3661199275748216,0.3695583296369051,0.3728800552528585,0.3733649289099526,0.3760714285714285,0.3801348865726548,0.3843977364591754,0.3772222222222222,0.3857692307692307,0.0,2.279010805044308,57.652614517336815,194.30699125554383,300.9605418258447,fqhc7_100Compliance_baseline_low_initial_treat_cost,51 -100000,95863,42646,399.7684195153501,6830,70.14176481019788,5311,54.88040224069766,2182,22.44870283633936,77.37299817448195,79.6752026400126,63.35320242165369,65.05751076304786,77.11109038616061,79.4125415407565,63.25829648867803,64.96465634103721,0.2619077883213379,262.6610992561069,0.0949059329756636,92.85442201064598,103.9984,73.1990980973305,108485.7974400968,76357.43838351143,291.37704,184.7078263657565,303391.9760491535,192121.8716190888,302.08561,145.4500112153575,312277.9800340069,149498.6678450003,3524.28534,1578.8884610004825,3641991.863388377,1612811.359112833,1308.10011,568.4765367475185,1349849.8482208983,578320.009986325,2153.75484,884.7954880790243,2216729.728883928,896162.1154980847,0.37988,100000,0,472720,4931.172610913492,0,0.0,0,0.0,24804,258.17051417126527,0,0.0,27937,288.5367660098265,1922166,0,68988,0,0,0,0,0,55,0.5737354349436175,0,0.0,0,0.0,0,0.0,0.0683,0.1797936190375908,0.3194729136163982,0.02182,0.3164029975020816,0.6835970024979184,25.22616457139121,4.554548928683981,0.3236678591602335,0.2074938806251176,0.2270758802485407,0.241762379966108,11.083308165898046,5.514781147942996,23.03555806001061,12727.948959348132,59.678409902523406,12.91614104323525,19.346189778624336,13.400926296218076,14.015152784445744,0.5415176049708152,0.7586206896551724,0.7068062827225131,0.5638474295190713,0.1129283489096573,0.6990668740279938,0.9176470588235294,0.8436018957345972,0.7126865671641791,0.15625,0.4911801242236024,0.6876640419947506,0.6622976098689283,0.5213219616204691,0.1021400778210116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.0049155239340407,0.0070194658308227,0.0093414292386735,0.0118028587113433,0.0140268729641693,0.0164504194143487,0.0186041290348916,0.0209463670825286,0.0230728303354001,0.0253777982685313,0.0273938871618086,0.0296593186372745,0.0319087615283267,0.0339367448764999,0.0361019031981577,0.038196132796739,0.0402146994518532,0.0419933334025607,0.0441952163464039,0.0590983025399341,0.0724540761948548,0.0852294154619736,0.0972602883575381,0.1099023768653179,0.1256654554672976,0.1385551105177273,0.1510003614483447,0.1627338605534744,0.1732976158585588,0.1862294587992208,0.199063965930954,0.2109009890229322,0.2213585227459083,0.2314260563380281,0.2422245359089096,0.2530457872188504,0.2634391665354065,0.2725045372050816,0.2806828720931564,0.2885029026065638,0.2958998654734748,0.3026501118515274,0.3092102898359713,0.3151280401180227,0.3211989060536625,0.3259674733639653,0.3312295613889984,0.3368951403999585,0.3419513290111312,0.3419531323693892,0.3421592803317307,0.3424833465055888,0.3424260851938725,0.3425536030473016,0.3419233186675047,0.3415237310167718,0.3423041535226078,0.3432131685554587,0.3435817638747295,0.344642087308579,0.3457796060438256,0.3460344755274084,0.3469465392619777,0.3481385343812339,0.3491343345848978,0.3497998856489422,0.3521451104100946,0.3556557579173565,0.358272409408773,0.3595541401273885,0.3637912673056443,0.3654905935263191,0.3669971562524018,0.3677953205250143,0.3724720437782536,0.3744214748534403,0.3761865456046224,0.3796296296296296,0.3887171561051004,0.0,1.9315867941072813,56.75777630692661,201.25027286489163,307.1254619122145,fqhc7_100Compliance_baseline_low_initial_treat_cost,52 -100000,95788,42696,402.4199273395415,6849,70.38459932350608,5345,55.18436547375455,2131,21.860775880068484,77.39816222968327,79.72865068384624,63.35848721039546,65.08018501534508,77.14041609834895,79.47119486414832,63.2651438221442,64.98943302557949,0.257746131334315,257.455819697924,0.093343388251263,90.75198976559308,103.25876,72.63642535738161,107799.26504363804,75830.40188476806,291.15935,185.031158890157,303365.0352862571,192570.16420653628,305.93073,147.61025815500776,315439.74193009565,151046.90199561333,3564.12397,1596.9208302515078,3684108.374744226,1630403.1718498236,1350.36227,589.1392538740668,1393628.0744978494,598932.479928662,2115.60408,875.2057384431666,2173524.63774168,884275.0671977728,0.38072,100000,0,469358,4899.966592892638,0,0.0,0,0.0,24757,257.82979078799013,0,0.0,28284,291.341295360588,1925469,0,69067,0,0,0,0,0,55,0.574184657785944,0,0.0,0,0.0,0,0.0,0.06849,0.1798959865517966,0.3111403124543729,0.02131,0.327902802706061,0.672097197293939,25.02112526593116,4.521429916214609,0.3128157156220767,0.2127221702525725,0.2278765201122544,0.2465855940130963,10.965710327336684,5.398008532418274,22.631762624267257,12714.947201799498,60.13537447861557,13.325485915057376,18.80307653959898,13.49368900656967,14.513123017389546,0.539756782039289,0.7484608619173263,0.6895933014354066,0.5944170771756979,0.1191198786039453,0.7079510703363915,0.914364640883978,0.8560606060606061,0.7464788732394366,0.1654135338345864,0.4852613326727768,0.6709677419354839,0.6379310344827587,0.5481798715203426,0.1074144486692015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685382106904,0.0041045078644397,0.0062390942661201,0.0086826712161832,0.0111015096833223,0.0131088810633663,0.0151729760024456,0.0173652205852344,0.019544539686756,0.0216390423572744,0.0238914843045652,0.0259722934838378,0.0280663891886336,0.0303111394724112,0.0322284653848136,0.0343716433941997,0.0362393056288342,0.0383454826366926,0.0401666943797805,0.0424038571681471,0.0574725836576687,0.0713994373385485,0.084835141793783,0.0978939403493284,0.1100078004764615,0.1256804608635907,0.1384861757749944,0.1505788219271365,0.1615817519729184,0.1726899450025193,0.1855799980618277,0.1982873268675597,0.2107898509797106,0.2215984797186606,0.2319144728167714,0.2430943504762326,0.253503383538278,0.2626572671771174,0.2721559908801143,0.2807146129180027,0.28806798473812,0.2953745806496861,0.3029481732214503,0.3098944290661586,0.3163983781290213,0.3220082259931532,0.327147448322433,0.3324772415196053,0.3373000971188086,0.3425118414629319,0.3428213487081391,0.3437822515171114,0.3437165247787112,0.3441197289918091,0.3445482866043614,0.3438909875051615,0.3435206276891926,0.3444542859954729,0.3459105518703412,0.346775489793367,0.3475532074340527,0.349051748030249,0.350230607966457,0.3512040387794308,0.3539269275028768,0.3545151373039445,0.3555063452857508,0.357313170609274,0.3578693509489357,0.3591223561968769,0.3586590143026327,0.3592181722134178,0.3611058985425658,0.3619809523809524,0.3640730972117558,0.3676840215439856,0.3672030651340996,0.3736799350121852,0.3805578569455951,0.3808980213089802,0.0,2.429072138653122,57.28587385921765,205.77357073642665,302.54495133165614,fqhc7_100Compliance_baseline_low_initial_treat_cost,53 -100000,95885,42868,403.1704646190749,6971,71.6900453668457,5412,55.9420138707827,2202,22.67299369035824,77.3584022892406,79.64180335066175,63.35300198276878,65.04232423061852,77.09341400165533,79.3728382161877,63.25669076252322,64.9460697183008,0.2649882875852682,268.965134474044,0.0963112202455604,96.25451231771363,103.34632,72.75348586672591,107781.5299577619,75875.77396540222,292.41538,185.02309133633912,304472.70167388016,192471.5662891372,303.28005,145.9436511936076,312896.68874172185,149607.51822221794,3610.17383,1617.5092712030662,3734752.0571517968,1656570.319865532,1304.29208,574.2026993847061,1343035.9284559628,581653.3896988922,2173.5358,903.31305218596,2239377.003702352,920059.1935160974,0.38232,100000,0,469756,4899.1604526255405,0,0.0,0,0.0,24889,259.0603326902018,0,0.0,28041,288.9815925327215,1923386,0,69045,0,0,0,0,0,57,0.59446211607655,0,0.0,0,0.0,0,0.0,0.06971,0.1823341703285206,0.3158800745947497,0.02202,0.3239896584569329,0.676010341543067,25.260449423173416,4.552496952842042,0.3176274944567627,0.2115668883961567,0.229490022172949,0.2413155949741315,11.069751239814927,5.468939494725807,23.599712074047268,12824.40802036084,60.92014500327914,13.423713722189165,19.28930305430289,13.773076206960004,14.434052019827073,0.5465631929046563,0.759825327510917,0.699825479930192,0.5958132045088567,0.1110260336906585,0.7130111524163569,0.907651715039578,0.8625592417061612,0.7375886524822695,0.1641221374045801,0.4915170887632161,0.6866840731070496,0.6468774094063223,0.5541666666666667,0.0977011494252873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002480535390659,0.0047218084729103,0.0067957521477619,0.0090263887337672,0.0114962390729823,0.0137290222778575,0.0158930681771873,0.0180937324697842,0.0205221404286166,0.0228585448634723,0.0249060775742934,0.0271780361280269,0.0291676936981349,0.0313020758326989,0.0334710786384855,0.0353617741802263,0.0372703574975173,0.0391754500513011,0.041237862817384,0.0430910717629678,0.0581269285297306,0.072304638529043,0.0855925192933957,0.0984639291076509,0.1111778149915215,0.1261763680724991,0.1386581334237518,0.1508053798309499,0.1625737734660989,0.1737462083453916,0.1876440061155494,0.200657610106429,0.2122872236352964,0.2234743734082438,0.2334220131040851,0.244415184943405,0.2553526027030643,0.2649922424842039,0.2737945349984687,0.2822889219841906,0.289890293014859,0.2975078975078975,0.3042783028924739,0.3113918280189064,0.3173531808286816,0.324205590177084,0.3296560024069802,0.3345914034707435,0.34023737793476,0.3453597331780401,0.3463844035210887,0.3466977552737958,0.347125527798568,0.3470171421947225,0.3469004383218534,0.3456792020777943,0.345619776937498,0.3458401305057096,0.346486264018932,0.3474222930050283,0.3484310743056729,0.3496542294965026,0.3513314697660732,0.352698490997556,0.3542129138114082,0.3556315061702627,0.3568024201603927,0.3582512354033552,0.3620962356331939,0.3653647283430117,0.368226094114419,0.370181315467645,0.3720591955476853,0.3760518798733884,0.3758831392018331,0.3789397415771042,0.3843505477308294,0.3867788955040033,0.3968298109010011,0.3958171959721146,0.0,1.949147724087941,59.5981869241149,200.5829320123448,313.0613081532177,fqhc7_100Compliance_baseline_low_initial_treat_cost,54 -100000,95727,42827,403.9612648469084,6773,69.62507965359825,5205,53.73614549709068,2073,21.22703103617579,77.38965647392791,79.75506999831622,63.34469261111818,65.09320386411581,77.13113728595263,79.50101776628513,63.248036131727964,65.00147100012536,0.2585191879752813,254.0522320310856,0.0966564793902193,91.732863990444,103.18638,72.6034410540053,107792.34698674356,75844.26656429774,290.90995,185.82024905308143,303211.21522663406,193431.3148103688,305.11241,147.2341803812545,315227.9398706739,151050.48466489537,3453.88812,1563.5258930894336,3568136.0326762563,1593471.0740479084,1292.56336,562.3291931533521,1332558.8287525987,569816.6477175698,2037.20816,857.0926841573777,2088023.943088157,858967.4131441906,0.38156,100000,0,469029,4899.65213576107,0,0.0,0,0.0,24843,258.8089044888067,0,0.0,28197,290.983734996396,1923164,0,68978,0,0,0,0,0,46,0.4805331829055543,0,0.0,0,0.0,0,0.0,0.06773,0.1775081245413565,0.306068212018308,0.02073,0.3261573096946672,0.6738426903053327,25.19636652672812,4.535067196223357,0.3239193083573487,0.2090297790585975,0.2366954851104707,0.2303554274735831,11.257782189184232,5.711503927451448,22.02104195738085,12731.63194077619,58.51616863971594,12.721421937514346,19.05786306911366,13.664653674062922,13.072229959025028,0.5554274735830932,0.7922794117647058,0.6868327402135231,0.5909090909090909,0.1192660550458715,0.7123287671232876,0.9183673469387756,0.8564814814814815,0.7366548042704626,0.1705426356589147,0.5024415317399126,0.7342281879194631,0.6283891547049442,0.5478443743427971,0.1052072263549415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023904059638603,0.004906582322111,0.0070733415196013,0.0093768413353109,0.0117183923830449,0.0138894546047004,0.0161295255961909,0.0182827860066761,0.0202898847003025,0.0226014146356443,0.0248365075134791,0.0268255874834457,0.0287329735286558,0.0308297464835142,0.0329231689581549,0.0347867425925734,0.036728692284593,0.038635915631776,0.0404934884059326,0.0426052889324191,0.0568502161247885,0.0713201662113647,0.0846929461016273,0.0974085413970518,0.1104816162894972,0.1261278414199431,0.1385098571822677,0.1507907788586389,0.1621026999316473,0.1727388753633136,0.1863760687442121,0.198552402384533,0.2106762649383978,0.2222015639525346,0.2328237974182046,0.2435258412529629,0.2533632286995516,0.2622248701634479,0.2715249815686497,0.2801323063188857,0.288092263557283,0.2951026708452219,0.3020777899977531,0.3087057020012695,0.3149670353686817,0.3204952873775642,0.3259792266299587,0.3317557251908397,0.3373411332280692,0.3422902898149247,0.3430266982452363,0.3434843608153833,0.3436716880191468,0.3449670634462036,0.3457407352461205,0.3452721405741026,0.3443262803596542,0.345130135865117,0.3459360171437318,0.3461545300969147,0.3470901837974872,0.3483685598457118,0.3502668223130159,0.3512021371326803,0.3512523346583018,0.354291209648074,0.3560578097049888,0.3578362077089812,0.3596626844694308,0.3620689655172414,0.3636779924901547,0.3656744435505497,0.367807351077313,0.3679216638834067,0.3660606060606061,0.3692090062477897,0.370911303818652,0.371859296482412,0.3747270742358078,0.3752388230798624,0.0,2.3647885722853106,57.56091649564205,194.6112445080875,294.2059006026732,fqhc7_100Compliance_baseline_low_initial_treat_cost,55 -100000,95762,42703,403.1348551617552,6788,69.53697708903323,5294,54.708548275934085,2228,22.90052421628621,77.34687979821054,79.70638381325948,63.33382307926016,65.08147732624872,77.0665547684752,79.42509369985538,63.229494549206784,64.97901875191552,0.2803250297353372,281.29011340409704,0.1043285300533725,102.45857433319829,103.81008,73.02641715428322,108404.25220860048,76258.24142591342,290.72329,184.7060134942805,303001.5663833253,192292.436973205,302.82554,146.40772657550167,312487.2809673984,150030.23471793375,3489.19045,1587.022990911462,3608547.9835425327,1622199.056944784,1315.69661,582.3103532642193,1357379.534679727,591536.8656296013,2186.58038,918.9634851740086,2249168.480190472,931114.1946252838,0.37962,100000,0,471864,4927.46600948184,0,0.0,0,0.0,24825,258.62032956705167,0,0.0,27930,287.9430254171801,1923808,0,69013,0,0,0,0,0,51,0.5325703306113072,0,0.0,0,0.0,0,0.0,0.06788,0.1788103893367051,0.3282262816735415,0.02228,0.322191011235955,0.6778089887640449,25.027671723507805,4.544535686132758,0.326218360408009,0.2068379297317718,0.2319607102380053,0.2349829996222138,11.12048288613995,5.660456354683638,23.730632337690626,12707.16304285292,59.81444700579983,12.922131444963735,19.489394574414543,13.615920753215672,13.787000233205871,0.5493010955799018,0.7844748858447489,0.690793283149971,0.5708469055374593,0.1245980707395498,0.7045790251107829,0.9134078212290504,0.8430493273542601,0.7289377289377289,0.187725631768953,0.4959390862944162,0.7218453188602443,0.6377829820452772,0.5256544502617801,0.1065149948293691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218718333265,0.0048675617571897,0.0071675126903553,0.0094311818449749,0.0116993570440302,0.0138897374798883,0.0160159037618513,0.0180277664352797,0.0203226268119645,0.0226481549739935,0.0247393296902713,0.0268194512896336,0.0287018850073528,0.0306879287965881,0.0327574462815035,0.0344542419136421,0.0363263573196367,0.0382692227893273,0.0402079002079002,0.0419651782739087,0.0566955432627074,0.070827841586644,0.0840244503391803,0.0966935026170306,0.1087948569320756,0.1247305237350467,0.1373904194536608,0.1497623579198077,0.1622411641080896,0.1727780098767019,0.1851505175047877,0.1975181866332299,0.2098611141298441,0.2210253777161148,0.2321481562894982,0.2428519244180254,0.2535919860782651,0.2629672949750326,0.2722060760183461,0.2807118057544889,0.2884412803148695,0.2959850169729603,0.3030801842663098,0.3094609830402763,0.3162888451539228,0.3224348554258411,0.3278241053765056,0.3330490567959064,0.3378931550857557,0.3426268010766876,0.3425766309325001,0.3425046131813049,0.3430547923975372,0.3431485869502398,0.3431819870699264,0.3421564870871331,0.3415855707357276,0.3422580379902968,0.3432327416511186,0.3449527829446273,0.3460375870679458,0.3472684744687599,0.3478388832828792,0.3480312837108953,0.3485885682494376,0.3497398433804593,0.3516455114582735,0.3550917984880249,0.3569481324128164,0.3597148235671086,0.3620657882613102,0.3645386266094421,0.3662842574888464,0.3684614204632612,0.3711194731890875,0.3737806328812753,0.3784866697488057,0.3779608650875386,0.3729054245952854,0.3744987971130714,0.0,2.1903437748894707,59.4822023859145,201.00612227852025,296.0162602226786,fqhc7_100Compliance_baseline_low_initial_treat_cost,56 -100000,95757,42740,402.58153450922646,6713,68.9140219513978,5204,53.81329824451476,2157,22.22291842893992,77.36211040614715,79.72259538986422,63.32787542470121,65.07509092719746,77.10496058248636,79.46423423785143,63.23331470476304,64.98216307075238,0.2571498236607965,258.361152012796,0.0945607199381726,92.92785644508685,104.5605,73.50654348475905,109193.58375888968,76763.62405334237,291.39792,185.4527197442436,303774.04262873734,193134.40243976272,305.2245,146.2320894443324,314966.16435351985,149918.076701748,3453.51373,1556.338158443621,3571684.6496861847,1590445.083329283,1272.35998,555.1002825933966,1312731.2363586996,563689.7068552653,2124.12214,874.4344504390004,2188927.82773061,887813.644398402,0.37978,100000,0,475275,4963.344716313168,0,0.0,0,0.0,24838,258.8218093716386,0,0.0,28226,290.9865597293148,1916107,0,68821,0,0,0,0,0,54,0.5639274413358815,0,0.0,0,0.0,0,0.0,0.06713,0.1767602296066143,0.321316847907046,0.02157,0.3186128803963199,0.6813871196036801,25.10325318947035,4.638828936915548,0.3395465026902383,0.1983089930822444,0.2269408147578785,0.2352036894696387,11.300510665812142,5.6501283556828135,22.57464598642087,12695.375996634602,58.60149645333545,12.173879442996403,20.012615423819835,13.00739374964691,13.407607836872304,0.5532282859338971,0.7916666666666666,0.6977928692699491,0.5825571549534293,0.1151960784313725,0.7093023255813954,0.9026548672566372,0.8524945770065075,0.7183673469387755,0.1632653061224489,0.5017884517118038,0.7373737373737373,0.6431852986217458,0.5470085470085471,0.1031664964249233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021883833318136,0.004461841117894,0.006963760024363,0.009256530883892,0.0115965617211738,0.0135047052592984,0.0157648930312238,0.0176223147921261,0.0199588961258064,0.0223130171213238,0.0244072524407252,0.0268299196745896,0.028579658854756,0.030728962717174,0.0327481396620945,0.0348720599638149,0.0366769179791453,0.0387197177984126,0.0407164092222614,0.0427994083703101,0.0571705932088391,0.0711513312758278,0.0843707067423154,0.0966354294849546,0.1086663009999578,0.1236964017515283,0.1362686329637685,0.1487522357550464,0.1607667567769716,0.1720051901815491,0.185799530384955,0.1985583791506125,0.2105486471490583,0.2215160101081926,0.2322136127498459,0.2436594905432506,0.2538358458961474,0.2625413543987577,0.2713212599854757,0.2795798685084645,0.2870240672354514,0.2944548432381844,0.3024073285044737,0.308990178796273,0.3149270591664946,0.3205976994489034,0.3265088905584773,0.3316827902240326,0.3368914682488276,0.3420955348419635,0.3417178906502749,0.3421987769268911,0.3428249383585769,0.3428038518261473,0.3430779519952441,0.3426013917415162,0.3416666666666667,0.3424387681397334,0.3442273231504394,0.345397843713802,0.3458041827228852,0.3479014778325123,0.3499707504596356,0.3511070440139273,0.3524255523535062,0.3539138586531951,0.3543918534531801,0.3570822997456589,0.3598738391449098,0.361493979721166,0.363673506446341,0.3661822985468956,0.3675444660926403,0.3674179397973075,0.3702838998879342,0.3725281231497928,0.3720219914477703,0.3756773028296207,0.3758187772925764,0.3843152555598907,0.0,2.090894068245748,56.85719978001636,198.2003869108273,294.8185972987381,fqhc7_100Compliance_baseline_low_initial_treat_cost,57 -100000,95764,42752,402.7713963493589,6822,70.04719936510588,5322,55.02067582807736,2162,22.17952466480097,77.32840490063373,79.68987776689862,63.31625382636724,65.06534432627672,77.06339632436871,79.42448823588771,63.219696946413855,64.9712629132183,0.2650085762650178,265.3895310109107,0.0965568799533826,94.08141305841866,105.1787,74.00359454271356,109831.14740403491,77277.05039755393,293.74637,186.7615518854396,306190.1340796124,194472.97719961533,303.02225,145.96350993766927,313137.59868008853,149908.19719477597,3537.25269,1581.421950100411,3658955.96466313,1616611.513826084,1321.235,566.797129927123,1367713.8799548892,579904.4003248842,2132.44188,882.4813176080772,2190175.347729836,891699.6758901061,0.38028,100000,0,478085,4992.324882001588,0,0.0,0,0.0,25036,260.8600309093188,0,0.0,28011,289.2736310095652,1912854,0,68604,0,0,0,0,0,44,0.4594628461634852,0,0.0,1,0.0104423374128064,0,0.0,0.06822,0.1793941306405806,0.3169158604514805,0.02162,0.3184093437152391,0.6815906562847609,25.339040874347173,4.529594546027275,0.3282600526118001,0.2089440060127771,0.2232243517474633,0.2395715896279594,11.093552747697403,5.60849512369344,22.90122487063834,12719.542117129604,59.62367821865474,12.83108396999994,19.71729674229371,13.172448961702871,13.902848544658228,0.5403983464862834,0.75,0.680022896393818,0.5791245791245792,0.1301960784313725,0.7049808429118773,0.9057142857142856,0.8392434988179669,0.7526881720430108,0.150197628458498,0.4869305451829723,0.678477690288714,0.629154078549849,0.5258525852585259,0.1252446183953033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024218963752622,0.0047364043895413,0.007056410672948,0.0089839224374479,0.0112408699721267,0.0135776564537157,0.0159181758851362,0.0179993465920692,0.0199758735611032,0.0220074927835895,0.0241914817282558,0.0264390003490974,0.0284556607945371,0.0306429351296788,0.032454800627425,0.0344104027123129,0.0366333354035981,0.0385796067369119,0.0405387149404025,0.0427546269775967,0.0577214132874067,0.0720628379579755,0.085636691552722,0.0984085605566884,0.1108394887411356,0.1267519289715674,0.1397151613484766,0.1517560664112388,0.1632469959946595,0.1741909194243678,0.1874454724642676,0.2000194760930957,0.2120328564434531,0.2231894835845053,0.2334558823529411,0.2438829875610593,0.254218561671354,0.2636459810475611,0.2726364544546362,0.2811783848198735,0.2894456660108783,0.2964349209319734,0.303417083047195,0.3096480808226245,0.3155834366717728,0.3211686934214746,0.3260343378857995,0.3308818843442905,0.3364647264139926,0.3412136268731665,0.3423657944429458,0.3421854112977688,0.3422304402444704,0.343234800717302,0.3428575680461925,0.3422523103374167,0.3407182872831727,0.3414557796230394,0.342048004934126,0.3423163700175483,0.3429714049679878,0.3441360468799493,0.3448080791149849,0.3464323342823197,0.3469136695853535,0.3476056043496445,0.3475325418395079,0.3511077495193974,0.3525258202768214,0.3563922942206655,0.3596182822702159,0.361189275285373,0.3663229376257545,0.3688736681887367,0.3702796873528581,0.3758444944885623,0.3763194125745755,0.3780012312743689,0.3804591265397536,0.3876092136616362,0.0,2.1549802731909184,57.45283550076548,194.9284477746397,311.08294114794376,fqhc7_100Compliance_baseline_low_initial_treat_cost,58 -100000,95722,43158,406.0926432794969,7037,72.12553018114959,5528,57.08196652807087,2237,22.91009381333445,77.31464774318667,79.68062690171763,63.30648041847581,65.05596149006891,77.03806407487869,79.40735821148967,63.20408239596471,64.95832704007208,0.2765836683079783,273.2686902279653,0.102398022511096,97.63444999683202,104.53982,73.57273046247391,109211.90530912433,76860.8370724326,297.95458,188.26029390078725,310565.752909467,195969.0185127632,313.66092,150.742447217172,323801.59211048664,154453.51007910378,3650.05697,1649.9107624340002,3770126.637554585,1680891.5463255704,1329.66744,577.2940361293463,1371710.756148012,585821.7520839064,2199.24908,920.5340634023204,2254536.323938071,922565.4402176072,0.38365,100000,0,475181,4964.177514051106,0,0.0,0,0.0,25348,264.09811746515953,0,0.0,28966,298.79233614007234,1912396,0,68681,0,0,0,0,0,56,0.5745805561939784,0,0.0,1,0.0104469192035268,0,0.0,0.07037,0.1834223901994005,0.3178911467955094,0.02237,0.3169678985702724,0.6830321014297276,25.046733103269617,4.489362838123489,0.3348408104196816,0.2054992764109985,0.2317293777134587,0.227930535455861,11.07002573590211,5.523275933583569,23.856136952124555,12873.254962837822,62.66064507980118,13.34290613161957,21.011641532789533,14.40345027339018,13.90264714200188,0.5504703328509407,0.7623239436619719,0.690977849810913,0.5909445745511319,0.1119047619047619,0.7083926031294452,0.9066666666666666,0.8412017167381974,0.743421052631579,0.1455938697318007,0.4966035904900533,0.6911957950065704,0.6404332129963899,0.5435005117707267,0.1031031031031031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028263181887251,0.0052012044894607,0.0075722203049188,0.0097246214815567,0.0118927717584821,0.014263009902604,0.0166392915803756,0.0189091503134508,0.0211804632715229,0.0233303304532983,0.0254067853957122,0.0275895350747494,0.029922750136293,0.0319625763773686,0.0337637671734844,0.0359040628553706,0.0377239308273791,0.0398360485628307,0.0418425704481647,0.0437260376729454,0.0583782316334628,0.0727190888916802,0.0856240557327513,0.0984044511290848,0.1109669798884213,0.1272640710960643,0.1404613049431595,0.1525864088421321,0.1640458806802997,0.1750067070880506,0.1890644378538689,0.2019462083613272,0.2133907169317934,0.2242851349722164,0.234941884828301,0.2464601819050051,0.2565838050701452,0.2662063674721902,0.2747514051015997,0.2834953240964132,0.2917990952325716,0.2993001090282418,0.3059489077065395,0.312680149884704,0.3191080400481746,0.326213304705142,0.3314257807608505,0.336210078792276,0.3419045769405062,0.346759192073774,0.3469986936202879,0.3462221426899941,0.3461923071506035,0.3463478801370358,0.3463135801366498,0.3453457140664569,0.3449731754547475,0.3456572576660848,0.346405004713343,0.3474720357941834,0.3485688511342066,0.3498939775271992,0.3515928108550217,0.3513676859023145,0.3519616348563717,0.3529995300997233,0.354826707878996,0.356699145460852,0.360015467904099,0.3622050382653061,0.3634072580645161,0.3659397049390635,0.3685483357729269,0.3665074718841473,0.3691077040281877,0.370760934691432,0.3703473945409429,0.3710652491140296,0.3733108108108108,0.3691275167785235,0.0,2.5659218912367323,61.8975186487823,212.9167418100899,307.3482837119297,fqhc7_100Compliance_baseline_low_initial_treat_cost,59 -100000,95824,43131,405.9212723326098,6831,70.09726164635164,5358,55.4245283018868,2121,21.800384037401905,77.3504688262772,79.68239080833345,63.33176974345843,65.0598056493603,77.08442521722964,79.4149084065892,63.23362624782596,64.96358033994166,0.2660436090475571,267.4824017442461,0.0981434956324704,96.22530941864228,104.48064,73.5114040565059,109033.89547503756,76715.0234351581,294.19427,186.555736463047,306534.16680581064,194205.04413524517,308.8648,148.0612263656587,319288.72724995826,152235.9618820734,3528.02476,1590.961288345358,3652646.852563032,1631441.394888778,1261.78837,553.0008680883924,1307212.389380531,567577.2727192348,2079.00062,869.0290018469988,2139331.941893471,881869.2079317372,0.38323,100000,0,474912,4956.086157956253,0,0.0,0,0.0,25047,260.86366672232424,0,0.0,28555,294.9574219402237,1916806,0,68905,0,0,0,0,0,57,0.5948405409918184,0,0.0,0,0.0,0,0.0,0.06831,0.178248049474206,0.3104962670180061,0.02121,0.3262894480745169,0.6737105519254831,25.15695516962561,4.422502021667862,0.3215752146323254,0.217431877566256,0.236468831653602,0.2245240761478163,11.071432075762436,5.638371068275386,22.57444320828111,12834.777657811195,60.54088592299973,13.7427584354751,19.504345792042937,14.11446572958084,13.17931596590084,0.5516983949234789,0.7570815450643776,0.697620429483459,0.5785319652722968,0.1155444721529509,0.7086438152011922,0.916243654822335,0.8341463414634146,0.7569444444444444,0.12,0.4992529880478087,0.6757457846952011,0.654988575780655,0.526046986721144,0.1143756558237145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0046845056426999,0.0070435400385669,0.0094286904483708,0.0114124132880362,0.0137805300360554,0.0159604303707103,0.0181359584180052,0.0202959009437338,0.0222859190254389,0.0246100839819115,0.0268116611728946,0.0290315614105451,0.0311341352887863,0.0333133934280822,0.0354216394391229,0.0372674665369206,0.0390320305368849,0.0412171852590883,0.0433076194342942,0.0578865011475067,0.0720782886895426,0.0849873200176052,0.0975825007091751,0.109420763185065,0.1255257540210935,0.1388264483840868,0.1518749002712621,0.1634958255930647,0.1746021539945346,0.1878585034599283,0.2004757013892643,0.2125063824702061,0.2232387823140405,0.2338471016645213,0.2451830923494543,0.2553462208134291,0.2649319662813861,0.274338795580236,0.2834673631635622,0.2917476851851852,0.2989297619743845,0.3066762927106387,0.3136176230883551,0.3203900019451469,0.3258557291281064,0.3312945717974106,0.3365705691927302,0.3416851469997017,0.346345009914078,0.3458459877168118,0.3457367549668874,0.3464612516945323,0.3464579471733086,0.3465025231850187,0.3462795586723342,0.3452360160678278,0.3454635270871068,0.3461314518614926,0.3473853868194842,0.3491607525064774,0.3502159014380224,0.3507589595011652,0.351096756829498,0.3516390672524501,0.3528119278053884,0.3552364913081951,0.3577793872217149,0.3614656381486676,0.3635027216019706,0.3642603873079371,0.36467221368382,0.3665053121267366,0.37122476855365,0.3702415640567723,0.3707110010611956,0.3714329314817641,0.3691220988900101,0.3671960569550931,0.3723076923076923,0.0,1.86523670040218,59.39468208509676,205.53862851433317,301.9618827607995,fqhc7_100Compliance_baseline_low_initial_treat_cost,60 -100000,95718,42991,405.1484569255521,6902,70.80173008211621,5380,55.63216949790008,2238,22.984182703357774,77.30949638025908,79.66979162654597,63.31695901961641,65.05977117531094,77.03376760648956,79.39339570414097,63.21610989615488,64.96129107822094,0.2757287737695151,276.3959224050012,0.1008491234615363,98.48009709000394,103.63298,72.99150636818655,108269.06120061011,76256.82355271376,294.73052,186.483352126782,307361.1232996929,194271.45586700723,305.09187,146.49202361874055,315115.9656490942,150254.92813215678,3597.12346,1611.1722957542986,3724699.09525899,1649905.2589422024,1320.74261,571.0750087866489,1368243.1413109342,585038.7270802238,2202.3387,911.080654386077,2265470.6324829184,923370.0482319992,0.38338,100000,0,471059,4921.320963664097,0,0.0,0,0.0,25023,260.83913161578806,0,0.0,28188,290.85438475521846,1919563,0,68940,0,0,0,0,0,52,0.5432625002611838,0,0.0,0,0.0,0,0.0,0.06902,0.1800302571860817,0.3242538394668212,0.02238,0.3265614275909403,0.6734385724090597,25.403113900838196,4.646315094160712,0.3293680297397769,0.204089219330855,0.2301115241635687,0.2364312267657992,11.261465206280146,5.631080053995066,23.758687630778898,12796.66932968642,60.90161701617163,12.873179424874374,20.04549206328722,13.978627036300669,14.00431849170937,0.5397769516728624,0.7622950819672131,0.6817155756207675,0.5823909531502424,0.1084905660377358,0.7012791572610986,0.9154078549848944,0.8609271523178808,0.712280701754386,0.1384615384615384,0.4867933843495433,0.6962190352020861,0.620166793025019,0.5435466946484785,0.1007905138339921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024812387964472,0.0047441407833914,0.0071016962908854,0.0095981961485333,0.0117114827428455,0.0141378362698097,0.0163379707486113,0.0185470617656966,0.0209414987122358,0.0229656845186314,0.0249490052173556,0.0271577304556748,0.029286250475593,0.0312255406797116,0.0331683168316831,0.0350375069744373,0.0370531370966072,0.0389442024476249,0.0409508070634945,0.0430950967217725,0.0577891021490779,0.0712252203219526,0.0846357171327277,0.0978695213258181,0.110228830538859,0.1257575597321966,0.1390645558337931,0.1511241696474195,0.1623830278169465,0.1735862409126975,0.1869546482818054,0.1997336739996535,0.2125452982337769,0.2235428021100094,0.2341613265508357,0.2452662853088554,0.254948835962286,0.2648235148319645,0.2736672271962914,0.2821159556538986,0.289875044874987,0.2971840546803679,0.3039476956969761,0.3105301676044678,0.3170192073911986,0.323643721699219,0.3295897031388899,0.3344839445159154,0.3401297016861219,0.3444106363275565,0.3448727469114966,0.3443785349703407,0.3449508363471971,0.345449805943347,0.3455439642324888,0.3449017859887492,0.3441918910750926,0.3451562371176519,0.3456334352141214,0.3464903612942634,0.3478523097800479,0.3488390616910271,0.3499810182646475,0.3505876525419912,0.3522804463852498,0.3540310728532437,0.3549622717585392,0.3571473851030111,0.3590278760435828,0.3617174095207693,0.3647732478240952,0.3653815303994439,0.3679431002730678,0.3704701084865738,0.3724781119147316,0.3751947273816656,0.3788019863438858,0.380012466237274,0.3766378589350432,0.3730127956572315,0.0,2.28723075675781,58.753432902004775,203.83302163423696,310.36665273351923,fqhc7_100Compliance_baseline_low_initial_treat_cost,61 -100000,95729,43021,405.2272561083893,6917,70.92939443637769,5420,55.970500057453854,2160,22.12495690960942,77.40440741590693,79.7611489499457,63.3594678928421,65.09907359459359,77.1323143236204,79.48991190026656,63.25917684209084,65.00194657185627,0.272093092286525,271.23704967914364,0.1002910507512595,97.12702273732532,104.74596,73.655637183641,109419.25644266629,76941.82241916348,296.20874,187.9286543478796,308768.65944489127,195657.60046368357,308.30157,148.4587717956224,317993.32490676804,152044.9878230738,3585.48522,1605.0341465043327,3705937.646899059,1637127.7005968224,1318.72088,571.5784959008664,1362362.471142496,581901.288180159,2134.3739,886.0308263236238,2188841.2079933984,892001.6627913062,0.38252,100000,0,476118,4973.60256557574,0,0.0,0,0.0,25177,262.32385170637946,0,0.0,28533,293.95480993220445,1917540,0,68725,0,0,0,0,0,57,0.595430851675041,0,0.0,0,0.0,0,0.0,0.06917,0.1808271462930042,0.3122741072719387,0.0216,0.3166894664842681,0.6833105335157319,25.27999636821109,4.525822103678526,0.3190036900369004,0.2173431734317343,0.2241697416974169,0.2394833948339483,11.203427303193989,5.603635791416672,22.8450997495036,12764.151981093662,60.47418908177346,13.736374452633422,19.272531609961074,13.429012007508666,14.0362710116703,0.546309963099631,0.7894736842105263,0.6853672643146327,0.574485596707819,0.1140215716486903,0.7154907975460123,0.9373297002724796,0.8411910669975186,0.7482014388489209,0.1640625,0.4927113702623906,0.7225647348951911,0.6380090497737556,0.5229455709711847,0.1017274472168906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021869652819261,0.0045097542437294,0.0069795280702822,0.0090895241964149,0.011550232326416,0.0137520358306188,0.0157859872611464,0.0179586339193698,0.0198933300637567,0.0220721412125863,0.0242900042020682,0.0264697430002463,0.0284054693122237,0.0306944358609892,0.0328332335885424,0.0348887694343367,0.0371260213539347,0.0392016514694135,0.041248363160192,0.0432776435297058,0.0577162008373443,0.0719159445770019,0.0859435644602958,0.098749855429034,0.1111907572946534,0.1267924368681527,0.1396893434622077,0.1521426670215597,0.1641291921749628,0.1742879203843514,0.1874791336844259,0.1998961241316626,0.2117141614096149,0.2223801764956751,0.232778444036132,0.2431785967399007,0.2531632858003615,0.2631253443681056,0.2721642468239564,0.2805280150207221,0.2883132794710866,0.2955346925430299,0.3034415154950869,0.3105966438781852,0.3170323878300275,0.3229566243729714,0.3285551820238199,0.33368052027233,0.3387711837019609,0.3435817082965752,0.3439901133738112,0.3442449551492506,0.3454090314596312,0.3445157568327684,0.3444283003202467,0.343591860447339,0.3427472944750332,0.3440230846162674,0.3447446114988822,0.345594006421691,0.346447390627637,0.3473196243908237,0.3496989152556597,0.3505470655359899,0.3516102633225822,0.3526537225285494,0.3536821705426357,0.3561717127210927,0.3600604611923509,0.3613739365508467,0.363250980034643,0.3668015332197615,0.3706831358709352,0.3719140505943309,0.3711069418386492,0.3697756788665879,0.3726545678252845,0.3748223350253807,0.3748603351955307,0.3690095846645367,0.0,2.4732758386222065,56.78926325262199,200.45169401281555,316.89714982248205,fqhc7_100Compliance_baseline_low_initial_treat_cost,62 -100000,95744,42635,400.7352941176471,6690,68.62048796791444,5221,53.904161096256686,2060,21.08748328877005,77.33232137485312,79.69608964786067,63.31916690730778,65.07019253324346,77.06761272836562,79.43210051393247,63.22104862692024,64.97434408040374,0.2647086464875059,263.9891339282059,0.0981182803875455,95.84845283971788,104.64696,73.64790064377081,109298.71323529413,76921.68767105073,291.45143,186.156660824935,303752.36046123,193778.30620759932,307.5094,148.8916624050416,316438.54445187165,151978.14035933107,3429.14451,1573.5870855188869,3544422.261447192,1606442.2339085538,1256.12367,557.4292141637458,1296649.461062834,566959.4658926077,2023.75806,857.7364427711644,2074665.8171791448,866082.3309574801,0.37911,100000,0,475668,4968.123328877005,0,0.0,0,0.0,24932,259.7134024064171,0,0.0,28475,292.80163770053474,1914727,0,68681,0,0,0,0,0,46,0.4595588235294117,0,0.0,1,0.0104445187165775,0,0.0,0.0669,0.1764659333702619,0.3079222720478325,0.0206,0.3173337131462754,0.6826662868537245,24.961650410226227,4.44758657028956,0.3382493775138862,0.2104960735491285,0.2286918214901359,0.2225627274468492,11.321719840262167,5.987712493324454,22.145913417684124,12681.636367053234,59.13066283280452,13.068018750444102,19.84105643876043,13.344754598131365,12.87683304546862,0.5648343229266424,0.7797998180163785,0.7021517553793885,0.5871021775544388,0.1299483648881239,0.71,0.8894736842105263,0.8644444444444445,0.7491638795986622,0.1586715867158671,0.5116461659251504,0.721835883171071,0.6466565349544073,0.5329608938547487,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0047064074085344,0.0069145479652343,0.0090759411334254,0.011322942947831,0.0135899186031112,0.0157461042669494,0.0181420943552256,0.0207658095189407,0.0229013104013104,0.0251263493495443,0.0272775804365234,0.0295526992287917,0.0312577243140809,0.0333756332084971,0.0355120095911364,0.0376375816688928,0.0396721651623612,0.0419325338266165,0.0436688954154429,0.0575290985959601,0.0719203163908012,0.0853810737396302,0.0973134956101151,0.1094967472559914,0.1253754706604053,0.1373354128868659,0.1499228353999254,0.1612665527552328,0.1716880387699961,0.185994916641537,0.1987448604198225,0.2111257356060523,0.2225418038255011,0.2323419051706114,0.2426668438361625,0.2524524301099269,0.262025344947892,0.2708915071851801,0.2787236480293308,0.2866900519802267,0.29406325350563,0.3005327965901018,0.3065798467460517,0.3130849072656117,0.3188691812418284,0.3250964380542057,0.3301938423551273,0.3352638602764929,0.340291255726753,0.3406754772393539,0.3414449402302649,0.3417769695944517,0.342793939043433,0.3432527289491687,0.342704724530153,0.3412698412698413,0.3424223000180793,0.3433699959010793,0.3437851945869608,0.3447679554895584,0.3458173811271349,0.3471220373914324,0.3473781090060159,0.3490051192890949,0.3502053414946768,0.3519554667427919,0.354251012145749,0.3562165210036651,0.3589487158972718,0.3610526315789473,0.3625348488097791,0.3619592875318066,0.3635178653580739,0.3670017852109368,0.3695063037586897,0.3682856710546225,0.3661464585834333,0.3650490730643402,0.3652373660030628,0.0,2.305372209223385,61.45676751023296,188.8314979057517,294.0368660014282,fqhc7_100Compliance_baseline_low_initial_treat_cost,63 -100000,95727,43189,408.5054373374283,6898,70.88909085211068,5379,55.62693910808863,2148,22.094080040114072,77.41699606751023,79.77250776439617,63.36600846061516,65.10165770078574,77.1526337145654,79.50819980725927,63.26829696224343,65.00680905255716,0.2643623529448291,264.3079571368929,0.0977114983717299,94.8486482285773,105.02448,73.90328695045888,109712.49490739287,77202.134142362,295.93148,188.00946080801964,308553.87717153993,195814.50458911245,309.13091,148.96431216455971,319791.5008304867,153174.84255294545,3586.66363,1620.5624871168125,3708603.07959092,1654740.3837128642,1305.73397,572.7513600554377,1346080.3639516542,580379.3496666952,2119.71534,883.4459953181091,2179598.7756850207,891037.482915928,0.3848,100000,0,477384,4986.931586699677,0,0.0,0,0.0,25223,262.86209742287963,0,0.0,28633,295.9457624285729,1914118,0,68663,0,0,0,0,0,54,0.5641041712369551,0,0.0,0,0.0,0,0.0,0.06898,0.1792619542619542,0.3113946071325021,0.02148,0.3213300220750552,0.6786699779249448,24.880177779739792,4.5569926205571605,0.3158579661647146,0.2154675590258412,0.2275515895147797,0.2411228852946644,11.12770649335908,5.571349390466111,22.74421086901373,12832.685755873976,60.51888935701696,13.601311462411374,19.09116328861251,13.665068346720098,14.161346259272982,0.5514036066183305,0.7687661777394306,0.7051206592113007,0.5947712418300654,0.1148804934464148,0.7144992526158446,0.9081081081081082,0.8677884615384616,0.7406143344709898,0.1621621621621621,0.4974016332590943,0.7034220532319392,0.6523772408417771,0.5488721804511278,0.1030828516377649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023279823478208,0.0046601627004629,0.0069883966244725,0.009372556585668,0.0113469985358711,0.0133756794723019,0.0154217800790965,0.0175954276382935,0.0195904102029554,0.021688645175811,0.023763167602574,0.0261396990907038,0.0282081067467129,0.0300820794842483,0.0323422605537902,0.0341948351228182,0.0360089867166388,0.0379190175904414,0.0399713154366601,0.041784732061005,0.0573451253510979,0.0712036077889736,0.0847889717684826,0.0980953082108938,0.1101044193650458,0.1259571857680754,0.138544440083587,0.1506333155934007,0.1627442392128793,0.1736230267673301,0.1871729158141838,0.2006838050722756,0.2125994521977305,0.224330613181267,0.2350207122372512,0.2461523141437723,0.2561278744440605,0.2654618609303528,0.2742239053039751,0.2833339055401059,0.2913438634629171,0.2977780894608273,0.3055522712762184,0.312636191662077,0.3190810233506481,0.3247644269261563,0.3306411282256451,0.3362956747272866,0.3420079157720465,0.3474167260068043,0.3480033916098033,0.3481304234223084,0.3483388283033223,0.3482588504217242,0.3480342592041872,0.3474092113526015,0.3465892919262515,0.3468043264503441,0.3480544282645023,0.3502475688383856,0.3508135403029736,0.3511829652996845,0.3516170871511652,0.3523325305503523,0.3540101303502412,0.3562239583333333,0.3577383831773041,0.3606767977440075,0.3632072172879222,0.3649487798125223,0.3674292185730464,0.3675661375661375,0.3706950532247965,0.3713980789754535,0.3735841991949827,0.3804373383494004,0.3772409601944698,0.3763031275060144,0.3793663688058489,0.382242287434161,0.0,2.154001430962407,58.83536431996366,204.13143238182397,304.74508483092245,fqhc7_100Compliance_baseline_low_initial_treat_cost,64 -100000,95692,42724,401.7577226936421,6885,70.68511474313422,5386,55.64728503950174,2156,22.15441207206454,77.3508434030137,79.74364032780854,63.31502979323547,65.08392574018396,77.08019928541933,79.4730032936055,63.21484808528511,64.98642315396755,0.2706441175943723,270.637034203034,0.1001817079503624,97.5025862164074,103.93856,73.10822295990894,108617.81549136814,76399.51402406569,293.91511,186.5926335192788,306520.7854366091,194366.7114484793,309.8275,149.09745537874576,320178.5938218451,152945.62344559195,3551.73038,1607.9152250166114,3673424.006186515,1642099.3865909493,1320.79975,578.2804736279403,1365692.7120344436,589745.6356100203,2130.08318,894.0674541613013,2191191.238557037,903152.9133010522,0.38047,100000,0,472448,4937.173431425825,0,0.0,0,0.0,25022,260.8159511766919,0,0.0,28716,296.44066379634666,1916993,0,68820,0,0,0,0,0,44,0.4598085524390754,0,0.0,0,0.0,0,0.0,0.06885,0.1809603910952243,0.3131445170660857,0.02156,0.3280452476203614,0.6719547523796385,25.31594975717352,4.426524254512925,0.330857779428147,0.2135165243223171,0.2194578536947642,0.2361678425547716,10.957969677547435,5.490427016465418,22.887403362947044,12764.916728804315,60.5926222073558,13.632618680336668,19.931653805732186,13.002305096673568,14.02604462461338,0.5419606386929076,0.7556521739130435,0.6936026936026936,0.5642978003384095,0.115566037735849,0.6987509184423218,0.9104859335038364,0.8610478359908884,0.703125,0.1345454545454545,0.488944099378882,0.6758893280632411,0.6388682055100521,0.5259179265658748,0.1103309929789368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019956035941124,0.0046242305625133,0.0070145874996193,0.0094926416781852,0.0116685995645893,0.0141500784417595,0.0164645156025257,0.0187920011438609,0.0211799838414415,0.0232277093873538,0.0255871192698184,0.0274647959655303,0.0296849446107322,0.0316611545554765,0.0339122986263764,0.0359335910848305,0.0379395371003501,0.0398160738195821,0.0416909378380627,0.0436976191468957,0.0579922078193383,0.0723215781537946,0.0861236485777264,0.0988806362699097,0.1109563896449142,0.1269480210328082,0.1393208572611377,0.1511863179417277,0.1631906955861759,0.1740982797291351,0.1880666199536463,0.200744943479579,0.2124612287098003,0.2234955451938442,0.2343335352089412,0.2442997826376258,0.2546483969312205,0.2645134407693953,0.273558648111332,0.2821988808366205,0.2895248905464569,0.2956888472352389,0.3028675747122349,0.3089996879275992,0.3157645055346065,0.3218064770737242,0.3272872933017888,0.3323148607875339,0.3375377164242887,0.3419575524651003,0.3426864786149614,0.3429736131768853,0.3425265650102878,0.3421493814313793,0.3426942943656118,0.3420935821101128,0.3413321514499177,0.3416371274780097,0.3421111092123926,0.3435625535561268,0.3442198807604334,0.3452117572692794,0.3465941194935649,0.3483291636883488,0.3495350904591432,0.3501941469262242,0.3510550680185169,0.3536237338100166,0.3565354330708661,0.3599447513812154,0.361878453038674,0.3638100291854603,0.3678984414278532,0.368850583479521,0.3699585375047116,0.3744488142056966,0.3754783407316699,0.3802479008396641,0.3884364820846905,0.3869230769230769,0.0,2.445952683300219,59.64678739347829,202.86539003273165,302.56492488042693,fqhc7_100Compliance_baseline_low_initial_treat_cost,65 -100000,95719,42635,402.4801763495231,6713,68.79511904637533,5237,54.08539579393851,2180,22.36755503087161,77.26691653433518,79.62679314935967,63.2951211478972,65.03897938685951,76.99947052178672,79.36134241740734,63.19610179225205,64.94409341312037,0.2674460125484614,265.4507319523276,0.0990193556451544,94.88597373913876,104.85178,73.76081377477986,109541.01066663882,77059.53153158714,292.92291,186.82057660736703,305412.29014093336,194565.85113174716,304.53149,147.43763258150014,314372.4756840335,151117.60225291422,3479.52913,1579.3616639533952,3594776.784128543,1609852.216926253,1296.21729,569.2050725354804,1333039.1040441291,573585.7614202813,2147.71354,897.7893327654191,2205189.983179933,902348.9230745836,0.37948,100000,0,476599,4979.136848483582,0,0.0,0,0.0,24973,260.2513607538733,0,0.0,28185,290.6946374283058,1909662,0,68587,0,0,0,0,0,51,0.5328095780357087,0,0.0,1,0.0104472466281511,0,0.0,0.06713,0.1768999683777801,0.3247430359004916,0.0218,0.3287030474840539,0.6712969525159461,24.866622571596803,4.518677046989423,0.315638724460569,0.219209471071224,0.2243650945197632,0.2407867099484437,11.022255494552876,5.478507451189438,23.34940918562375,12671.736642447237,59.51992242036761,13.587440138612353,18.94157588193916,13.122282124843284,13.868624274972818,0.5514607599770861,0.7857142857142857,0.7035692679975801,0.5770212765957446,0.1149881046788263,0.7067557535263549,0.9380053908355797,0.8398169336384439,0.7292418772563177,0.1335877862595419,0.4976863753213367,0.712998712998713,0.6546052631578947,0.5300668151447662,0.1101101101101101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0045524135903233,0.006768275358201,0.008776830792048,0.011268636983097,0.0132161730117194,0.0155971252357408,0.0177009217954083,0.0197806241885855,0.0219660989190959,0.0240279642860803,0.0260153587121678,0.0279908685190136,0.0298695011793303,0.0318889920561229,0.0339873064439436,0.0359753950665865,0.0381387145302692,0.040051975051975,0.0420113780815637,0.0563352337990518,0.0704685341037558,0.0839997481266922,0.0968600711324368,0.1096292232046763,0.1254140781271497,0.1383916247265932,0.1496681969727634,0.1612161526286521,0.1721809515630367,0.1862668995407206,0.1985371403803435,0.2097410093881374,0.221762225507913,0.2327749614282565,0.2433173482527418,0.2536203522504892,0.2630197183098591,0.2719516490008293,0.2802668990186187,0.2877398893441674,0.2949625970194682,0.3016096746301538,0.3085098726038243,0.3150413424124513,0.3211668023987562,0.3262235263138096,0.3314296640958633,0.3363970349599512,0.3417208544676793,0.3427091644241301,0.3421252712921107,0.3419860725811017,0.341983492652925,0.3419898568019093,0.3416798683421259,0.3412378845511117,0.3411271280196826,0.3416738271180615,0.3426236868097333,0.344035573643849,0.3455796107433251,0.3464468879930774,0.3472663020235442,0.3488084559625687,0.3498424369747899,0.3507984462667242,0.3540593807616504,0.3581881781838949,0.3573249180725816,0.3577939203257299,0.3599783666846944,0.3646172508459426,0.3655400723689275,0.369100750166176,0.3693500298151461,0.369869331283628,0.3743402354851807,0.3742754623240408,0.3811364514882103,0.0,2.4035493066434803,59.15884228037203,199.5883937883931,294.22571867257346,fqhc7_100Compliance_baseline_low_initial_treat_cost,66 -100000,95702,42930,405.1117009048923,6749,69.31934546822428,5272,54.50251823368373,2200,22.611857641428603,77.288290147924,79.65807191715547,63.294707477804174,65.04413305428403,77.01720904625472,79.38705331885932,63.1955450235732,64.94770410311993,0.2710811016692815,271.01859829615194,0.0991624542309779,96.42895116409989,105.19542,73.95140201505602,109919.7717916031,77272.57739133562,294.79807,187.9313734019267,307385.3628973271,195721.90442667415,309.10096,149.051468316829,319612.2024618085,153094.17948789135,3509.85052,1585.9175055227945,3631049.884014963,1620883.452611921,1307.82405,572.493983201041,1350576.299345886,582250.0477777286,2164.76134,895.8142907306077,2226515.6841027355,904848.101505521,0.38048,100000,0,478161,4996.353263254687,0,0.0,0,0.0,25135,262.0216923366283,0,0.0,28443,293.8078619046624,1906306,0,68530,0,0,0,0,0,64,0.6582934525924223,0,0.0,1,0.0104491024221019,0,0.0,0.06749,0.1773812026913372,0.3259742184027263,0.022,0.3225761189841448,0.6774238810158552,25.0225710962371,4.513335015554675,0.3294764795144158,0.1995447647951441,0.2319802731411229,0.2389984825493171,11.302821535733086,5.759825130919422,23.38052334753181,12742.038545343876,59.70982994728823,12.41124243787716,19.71799563410017,13.657234711904325,13.923357163406576,0.5438163884673748,0.7699619771863118,0.6862406447898676,0.5764513491414555,0.1269841269841269,0.7275449101796407,0.9111747851002864,0.9013452914798208,0.734982332155477,0.1705426356589147,0.4814532520325203,0.6998577524893315,0.6119287374128582,0.5287234042553192,0.1157684630738523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091179776987,0.0048255796271327,0.0070929902179648,0.0094170950242792,0.0116345293304043,0.0136341883126801,0.0159356456842234,0.0181493390496605,0.0201474000551983,0.0222893107506524,0.0245249759157152,0.0264929892632054,0.028448931751352,0.0303598278099318,0.0323359222700126,0.034559378261903,0.036715676123421,0.0385844748858447,0.0406681644200366,0.0426880106720026,0.0572231273760287,0.0718144696890377,0.0850422955017736,0.0979467696614432,0.1099933497302946,0.1255267337215458,0.1380756692470241,0.1501582126761914,0.1622292081007677,0.1720335434271418,0.185461172639139,0.1978894679248962,0.2103096376488014,0.2216017955876717,0.2322646018966219,0.2435950069348127,0.2542742449486196,0.2639590474472307,0.2725990307387773,0.2814897331067114,0.2902249185119883,0.297177168724859,0.3038592077468967,0.3104608544132668,0.3166812844126102,0.3224857556019725,0.3277516770092706,0.333107806216889,0.3387283387283387,0.3435786741531371,0.3442861964225447,0.3442186076054238,0.3445299677401098,0.3442730030627204,0.3450798865163506,0.3445809815290445,0.3429125472867724,0.3434456620252121,0.3450460038450975,0.3454858619204822,0.3463320899740025,0.3477113025527015,0.3487426814371762,0.3504808015600834,0.3514996870636945,0.3521604213929959,0.3527613496757235,0.3548437993057747,0.3575962759204401,0.3602524163271827,0.3621497473587505,0.3649646756583172,0.3639410611522165,0.3653522848846095,0.3665264142122487,0.3670049563370309,0.3707027684818983,0.3685593049100828,0.3734383487235198,0.3767951625094482,0.0,2.198203320457815,59.07205633738147,201.0719237682449,296.2204626426637,fqhc7_100Compliance_baseline_low_initial_treat_cost,67 -100000,95831,42659,401.7802172574636,6837,70.13388152059355,5327,55.02394840917866,2139,21.94488213626071,77.36488025655099,79.67915842316074,63.35773544642036,65.0710197051607,77.10630518532379,79.42140483435087,63.263182506022,64.97898887737101,0.2585750712271988,257.75358880987653,0.0945529403983584,92.03082778968508,104.73474,73.67156241114371,109290.85577735804,76876.33607400912,294.22404,186.79335374350063,306396.625309138,194293.14122334175,303.15625,145.74373168672446,312954.3571495654,149382.36142560467,3502.77724,1566.170727862767,3620296.021120514,1599668.0989692267,1274.92459,549.3150355881239,1316092.1309388403,558977.6372880132,2100.80848,866.105468756303,2158117.5819933005,875804.437789201,0.38019,100000,0,476067,4967.766171698094,0,0.0,0,0.0,25095,261.2828834093352,0,0.0,28038,289.1548663793553,1919066,0,68841,0,0,0,0,0,58,0.5947970907117738,0,0.0,1,0.0104350366791539,0,0.0,0.06837,0.1798311370630474,0.3128565160157964,0.02139,0.3160967472894078,0.6839032527105922,25.21688012275436,4.56542838509589,0.3206307490144546,0.2158813591139478,0.2301483011075652,0.2333395907640323,11.216277417704816,5.73403381637445,22.518807577676853,12690.33575017203,59.81300063919738,13.608074890069805,18.979182646994225,13.629460620667237,13.596282481466124,0.5440210249671484,0.7904347826086957,0.6791569086651054,0.5628058727569332,0.1118262268704746,0.7192307692307692,0.9186351706036744,0.8675,0.7553956834532374,0.1161825726141078,0.4874596473801837,0.7269180754226268,0.6215596330275229,0.5063291139240507,0.1107784431137724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0042378036416724,0.0064940336066239,0.00870474952261,0.0108906763201513,0.0131450331934997,0.0151583110766784,0.0176000980051861,0.0196168629375204,0.0217923128102768,0.0238183085311359,0.0259536344324374,0.0280886751148521,0.0300943794320766,0.0320156676802556,0.0340975957220576,0.036170498857066,0.0383559372960203,0.0402143101890789,0.0422922063734823,0.0574590360566142,0.0715032297175826,0.0849352091430008,0.0977003045258847,0.1089756416062007,0.1246924660788765,0.1370926734183651,0.1491809029734125,0.160797533577273,0.1720972579263067,0.1855884156509203,0.1991048551876236,0.2104393932808901,0.2212246324573475,0.2311462798109682,0.2423330863405624,0.2523672660027182,0.2622742790405175,0.2716309406529198,0.2807426716056158,0.2877368840437448,0.2953194867663712,0.3026990617097209,0.3088901912473537,0.3145475511318808,0.3209893262092654,0.3263565891472868,0.3313802745297407,0.3370019269816225,0.3417641479607967,0.3420698743982141,0.342330326696733,0.3437323864276857,0.3440179281428468,0.3449430178236677,0.3440706824352307,0.3429523809523809,0.3440098806093042,0.3447530493558182,0.345902139027845,0.3476932938670085,0.3486174656852994,0.3495902416415615,0.3508906081324217,0.3504582730342498,0.3509341148150086,0.3522140063379678,0.3544060093422547,0.3583927185493544,0.3612812812812813,0.3619903248099516,0.3627313818338356,0.3647585545251039,0.3669014629615295,0.3718439173680183,0.375,0.3765144454799627,0.3733525535420098,0.3760445682451253,0.3800623052959501,0.0,2.2054607960139494,57.021332449109565,200.1715889766391,308.08329762880936,fqhc7_100Compliance_baseline_low_initial_treat_cost,68 -100000,95635,42506,400.9933601714853,6898,70.91545982119517,5341,55.2517383803001,2180,22.40811418413761,77.2563444549925,79.6665719833142,63.27473565930678,65.05564206535446,76.99158156889315,79.40213569429106,63.1777539931504,64.96144080717062,0.2647628860993478,264.43628902313776,0.096981666156374,94.20125818384406,104.5484,73.49194551397142,109320.22795001828,76846.28589321002,291.1788,184.79731246985656,303846.43697391124,192609.8786638801,301.14919,145.2115901686321,311094.56788832543,148918.5319010172,3545.51226,1589.6611355218663,3670982.673707325,1625907.506227352,1306.87225,571.9929368203533,1350424.1438803785,582028.2084476126,2147.31876,888.880131147556,2209487.3006744394,899296.3016351406,0.37801,100000,0,475220,4969.101270455377,0,0.0,0,0.0,24800,258.6709886547812,0,0.0,27872,287.635279970722,1913821,0,68787,0,0,0,0,0,53,0.5541904114602394,0,0.0,0,0.0,0,0.0,0.06898,0.182481944922092,0.3160336329370832,0.0218,0.3303448275862069,0.6696551724137931,25.141032179421817,4.559412055595719,0.3235349185545778,0.2089496348998314,0.2301067215877176,0.237408724957873,11.17695941521739,5.636517776568631,23.24163986447408,12689.426290613868,60.27594014159247,13.074062025020432,19.714907434607408,13.62375367891882,13.863217003045822,0.5450290207826249,0.7652329749103942,0.7037037037037037,0.5614320585842149,0.1190851735015772,0.7315233785822021,0.92797783933518,0.865909090909091,0.7418181818181818,0.2,0.4834371108343711,0.6874172185430464,0.6482919254658385,0.5094339622641509,0.0992141453831041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002086392869803,0.0046927419600052,0.0068500796638894,0.0091534343157274,0.0116695492929087,0.0141397471552417,0.0162803982373102,0.0183599656708488,0.0205388376327148,0.0227528838076505,0.0248932851748481,0.0265034735068031,0.0286914358071589,0.0307344935664797,0.0327562341177199,0.0346436812532982,0.0367598275004146,0.0388099393334995,0.0406663961123424,0.0425576301241264,0.0569159220358467,0.070631619750034,0.0837252761096879,0.0966200355785728,0.1089491289345672,0.125321425170104,0.1381099955424423,0.150707105128642,0.1622416041386092,0.1723864099757474,0.1861147046140578,0.1989382448537378,0.2107596453390846,0.2218654451007682,0.2321054373000992,0.2427680216681837,0.2525894275295854,0.2620426932353538,0.2703765585751469,0.2786591871149809,0.2870594783899435,0.2946963567500381,0.3021012541081831,0.3081578252203357,0.3139920101334892,0.3197444515842024,0.3256630950289829,0.3317345715233308,0.3370820076618401,0.3419402629699198,0.3424886908378907,0.3431652788709833,0.3431826222316564,0.3429861887680265,0.3428626935262119,0.3421515123485339,0.3410136781261444,0.3420405197893103,0.3426976936458997,0.3442802900793579,0.3454621023199576,0.3463178449031641,0.3471885219959911,0.3475430444249893,0.3491473018020194,0.3497943464934112,0.351133197368799,0.3542636395300972,0.357303845612058,0.3612803057446554,0.3636529763808305,0.3653148345784418,0.3654017007234421,0.3684571951777812,0.3687005123428039,0.3725050194874217,0.3735103333836174,0.3737980769230769,0.3748304854895579,0.3681572860447186,0.0,2.2823603855815384,58.47004958515125,198.7344841675421,309.89499541766963,fqhc7_100Compliance_baseline_low_initial_treat_cost,69 -100000,95697,42818,403.6176682654629,6907,70.99491102124414,5371,55.592129324848216,2154,22.132355246245965,77.32722884548278,79.7048129970809,63.32110870231941,65.07621248124222,77.06184781398906,79.43837844031229,63.22332668644731,64.9803293673084,0.2653810314937175,266.4345567686013,0.0977820158721058,95.88311393382298,104.09322,73.30646716263664,108773.7546631556,76602.6805047563,296.07263,187.93614451474764,308829.31544353534,195836.1407429632,305.64283,147.40427734316728,316220.68612391193,151576.7708857799,3542.76791,1596.4700343564573,3668466.284209536,1635046.154383215,1318.21271,571.8646591465761,1366110.139293813,586470.1629431332,2122.85274,883.8832688189887,2183498.5840726458,895438.8760077925,0.38096,100000,0,473151,4944.261575597981,0,0.0,0,0.0,25182,262.57876422458384,0,0.0,28316,292.73644941847704,1915990,0,68741,0,0,0,0,0,54,0.5642810119439481,0,0.0,0,0.0,0,0.0,0.06907,0.181305123897522,0.3118575358332127,0.02154,0.3291488481169816,0.6708511518830184,25.143633402583813,4.499391014762607,0.3355054924595047,0.2172779743064606,0.2100167566561162,0.2371997765779184,11.23663206319864,5.617271518190984,22.844991407728955,12752.14444860473,60.45962340723027,13.696434617701412,20.375279251409093,12.48549455911794,13.902414979001817,0.5406814373487246,0.7652099400171379,0.6875693673695893,0.5593971631205674,0.1106750392464678,0.7149187592319055,0.907035175879397,0.8657718120805369,0.7410358565737052,0.1317829457364341,0.4819517052526761,0.6918075422626788,0.6287822878228783,0.507411630558723,0.1053149606299212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022171826594042,0.0045403411336664,0.0068986507050826,0.0089886955726865,0.0110025320059791,0.0133179925264476,0.0155099626781963,0.0176074678541153,0.0195324484077475,0.0217509293299607,0.023812942262332,0.0259641554973553,0.0282857789389232,0.0303963895271558,0.0324261845051962,0.0346539261005801,0.0368286921929388,0.0386196586520493,0.0407526445533123,0.0428814142319598,0.058200505546387,0.071460716491015,0.0851191038106926,0.0979012150860028,0.1097705028687141,0.1252009986459038,0.1381996476556364,0.1501059558925319,0.1618479817082291,0.1724559634405372,0.1864120130989314,0.1995843121123223,0.211665016914492,0.2233051125549648,0.2338003984546125,0.2454900048756704,0.255140771171493,0.2646052750022504,0.2733826016869302,0.2817627646897057,0.2897887813238223,0.2976228097896696,0.304345252190386,0.3107908839149773,0.3169931064667907,0.3227346757477051,0.3275110264635124,0.3326154277485376,0.3379596601595434,0.3423915198456231,0.3427433508842986,0.3429047999779438,0.3432717827093568,0.3432792625927909,0.3443833862008369,0.343714931361547,0.3432930604727959,0.3438998751724591,0.345000256353289,0.3470564091582347,0.3483432296251896,0.3491357145682528,0.350463954318344,0.3514276749294007,0.351750784834581,0.3523525096929686,0.3541511487996333,0.3564343925705983,0.3585071581835449,0.3617920204073498,0.3638867214393904,0.3646548027444254,0.3662204174862001,0.3716133004926108,0.3766196646341463,0.3784851023094412,0.3754255648406066,0.3771803816950543,0.3805656678801456,0.382398753894081,0.0,1.9715487749597167,59.92529612415796,199.50852187850936,306.4232019273753,fqhc7_100Compliance_baseline_low_initial_treat_cost,70 -100000,95769,43116,406.4363207300901,6916,70.87888565193329,5405,55.76961229625453,2254,23.04503544988461,77.38146625236273,79.70461760337673,63.35451413110488,65.06786291281028,77.11035385295486,79.43635864792864,63.25483327865923,64.97245849692331,0.271112399407869,268.25895544808986,0.0996808524456511,95.4044158869749,103.85474,73.08678793430988,108442.9617099479,76315.70543109972,294.29043,187.1284405336686,306545.6985036912,194650.9797290654,312.35612,149.85352984436227,322283.34847393207,153470.91630959444,3587.91106,1618.2309282877764,3703012.081153609,1646754.3395173391,1340.50053,586.3274415684674,1379361.1398260398,592026.4793186184,2213.74078,912.6835520218204,2265889.0663993564,914972.6653531524,0.38395,100000,0,472067,4929.225532270359,0,0.0,0,0.0,25039,260.731551963579,0,0.0,28841,297.2673829736136,1917576,0,68891,0,0,0,0,0,63,0.6473911182115298,0,0.0,1,0.0104417922292182,0,0.0,0.06916,0.1801276207839562,0.3259109311740891,0.02254,0.3270950873813127,0.6729049126186872,24.990132724105035,4.5834826307747925,0.3215541165587419,0.2098057354301572,0.2358926919518963,0.2327474560592044,11.33976866509176,5.785707823688043,23.733385373837244,12814.680196546457,61.196166613550304,13.405563446764832,19.737216202141013,14.292934439704169,13.760452524940288,0.5506012950971323,0.7671957671957672,0.6979286536248561,0.5905882352941176,0.1112877583465818,0.7091043671354552,0.938337801608579,0.8298368298368298,0.7406143344709898,0.13671875,0.4977799703996053,0.683311432325887,0.6546982429335371,0.5458248472505092,0.1047904191616766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023084867262013,0.0047022578945234,0.0071514794940201,0.0093630676740596,0.0116221135367626,0.0137732353360343,0.0159103881278538,0.0182961050622965,0.0203208009807928,0.0223543133082337,0.0246281194935048,0.0264394467927935,0.028630739507543,0.0307999547059489,0.0329391630668989,0.0347409404013177,0.0366012666087172,0.0386393796135025,0.0407113844363878,0.0429078641858334,0.058078251703733,0.0723068068853659,0.0851889533359205,0.0982694814752512,0.1103156696117917,0.126230947419638,0.139326176433148,0.1514780553751823,0.1628587603208681,0.1745129783105145,0.1881964106925619,0.2012869734494133,0.2128214887716818,0.2238012406052053,0.2341184239489324,0.2447244757724875,0.2557139826486975,0.2650617325635052,0.2743677390780971,0.282376678015843,0.2909636252041088,0.2983594271461526,0.305426595291108,0.3116241713717169,0.318010595897735,0.3244065958443223,0.3303053053053053,0.3353987480278894,0.3402498768760206,0.3449996040858342,0.3452209397853227,0.3448451409623137,0.3449933056162356,0.3455948348244014,0.3458279348910631,0.3456339281604345,0.3455397871262037,0.3464733696722926,0.3472635285269886,0.3471991719756589,0.3485464734879013,0.3494901991779955,0.3504226888464685,0.3516712623579259,0.3516729699130393,0.3524787128454265,0.3523486102391416,0.3552884161500456,0.3588589116746983,0.3601978933929141,0.3663601848039888,0.37160040449199,0.3720301697045883,0.3707924929716586,0.3706194354991475,0.371476150826692,0.3715288373512359,0.3734330772341286,0.3742112482853224,0.3712966525586764,0.0,2.5071665053375387,59.28859501482371,209.94343963252916,302.5234080874725,fqhc7_100Compliance_baseline_low_initial_treat_cost,71 -100000,95758,42884,404.2586520186303,6903,70.75126882349255,5350,55.30608408696924,2107,21.637878819524214,77.31912755708531,79.6699235920753,63.32066847763053,65.05882915223623,77.05164895981292,79.40139382539908,63.22151526579243,64.96174028242564,0.2674785972723867,268.52976667622386,0.0991532118381002,97.08886981059096,104.19926,73.3072673572733,108815.20081873056,76554.718516754,294.88581,187.09760765869535,307393.3666116669,194830.23628176795,305.52845,146.77956605718938,315401.167526473,150465.94633768356,3539.43643,1595.4077559257096,3663450.583763236,1633303.0513645937,1255.55065,554.6054576181314,1298028.634683264,566032.1514840866,2075.36184,875.7102418822411,2133961.862194281,885540.6057476487,0.38129,100000,0,473633,4946.14549176048,0,0.0,0,0.0,25057,261.09567869003115,0,0.0,28301,291.96516217966126,1916821,0,68862,0,0,0,0,0,60,0.6161365107876104,0,0.0,0,0.0,0,0.0,0.06903,0.1810433003750426,0.3052296103143561,0.02107,0.3225359911406423,0.6774640088593576,25.080153959795854,4.508259410628831,0.3291588785046729,0.208411214953271,0.2349532710280374,0.2274766355140187,10.815025666383786,5.269495548339316,22.555446619554665,12752.34542717881,60.218168224312834,13.261379929496169,19.6149320957838,13.84427727119125,13.49757892784162,0.5375700934579439,0.757847533632287,0.6746166950596252,0.5521081941129674,0.1224322103533278,0.7031594415870683,0.9041450777202072,0.8470319634703196,0.7335907335907336,0.1690647482014388,0.481072950614189,0.6803840877914952,0.6175359032501889,0.5050100200400801,0.108626198083067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873639226726,0.0043676972810831,0.0067773223489306,0.0087753153628958,0.0110850087968189,0.0130050003564408,0.0150700994137139,0.0174100396193276,0.0195599271998527,0.0220306709526831,0.0244532619728707,0.0265219578811183,0.0285799498128265,0.0309358002307565,0.0329859678085018,0.034828441504754,0.036782442155391,0.0387112835300707,0.0406912102413832,0.0426704160808207,0.0568986033694494,0.0712993085557078,0.0848865626868333,0.0978600347021399,0.1100240374478134,0.1255035898954224,0.138117562206996,0.1509225170777383,0.1625180201826045,0.1736049316537121,0.1876406793533865,0.200448085893953,0.2122926298613,0.2230460505451483,0.2335317482148162,0.2447698049682699,0.2550455438471155,0.2642150629592537,0.2727344964980191,0.2819523034982016,0.2897189768766717,0.2980765853829854,0.3054275321967228,0.3121646118200699,0.3178079524991483,0.323223217042297,0.3290912282461508,0.3342980264164414,0.3390703892631387,0.3440945506464662,0.3442729137428479,0.3445233335631075,0.3445221445221445,0.3439697290401148,0.3437053145853193,0.3426908487798885,0.3416838760921366,0.3423362592842673,0.3441118037953004,0.3453674808996018,0.3455709309987762,0.3460187702136947,0.346595578783217,0.3470140857747176,0.3483874087326531,0.3503355001048437,0.3506735454284895,0.3514904635594291,0.3550993050410978,0.357475056644274,0.3598064722260258,0.3615081058020478,0.3602508075242257,0.3645218191579109,0.3664549160898834,0.3649738965353583,0.368735632183908,0.3730855625893404,0.3763143331488655,0.3770617568085923,0.0,2.236352367100984,60.056683622981474,191.04470864701327,313.04769157086906,fqhc7_100Compliance_baseline_low_initial_treat_cost,72 -100000,95679,43249,407.9265042485812,6799,69.75407351665464,5380,55.64439427669603,2169,22.261938356379144,77.34181859432726,79.72364586774563,63.3271521787835,65.08511769474153,77.0722286210824,79.45499172235252,63.22883319474097,64.98977376988967,0.2695899732448623,268.65414539311416,0.0983189840425282,95.3439248518606,104.28352,73.40972645202065,108992.88245069452,76724.8341103916,294.64011,186.905951709414,307353.9648198664,194756.43973074123,308.77319,148.54789335338214,319168.18737654027,152488.17667812872,3580.02741,1599.0031656929866,3704655.337116818,1634386.5612973138,1296.85951,558.9097782308877,1341570.9403317345,570294.3469631661,2136.68208,882.36684259418,2195069.8272348163,891064.8543136497,0.3841,100000,0,474016,4954.221929577023,0,0.0,0,0.0,25019,260.85138849695335,0,0.0,28570,294.9863606434014,1916932,0,68782,0,0,0,0,0,44,0.4598710270801325,0,0.0,0,0.0,0,0.0,0.06799,0.1770111950013017,0.3190175025739079,0.02169,0.3241466144376049,0.675853385562395,24.948991526835265,4.591898160955131,0.3178438661710037,0.2146840148698884,0.2325278810408922,0.2349442379182156,11.222520311618522,5.576407723746276,22.97960670920383,12847.415246075663,60.40821605158747,13.622504892150342,19.17075623603936,13.910109196322267,13.704845727075496,0.5546468401486989,0.7792207792207793,0.7058479532163743,0.5739408473221422,0.1257911392405063,0.7181208053691275,0.9164556962025316,0.8738095238095238,0.7236363636363636,0.1394422310756972,0.5003713790542214,0.7078947368421052,0.6511627906976745,0.5317622950819673,0.1224086870681145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987108991301,0.004530849306182,0.0066860789545772,0.0090390201295931,0.0114898116891039,0.0139081208764356,0.0159924165978656,0.0179659667425456,0.0201964451803473,0.02228500650022,0.0244340086949388,0.02633281639947,0.0283841896257278,0.0305009995259979,0.0326982226534277,0.0346914078257361,0.0367246274688607,0.0388305162174508,0.0410914727391887,0.0431383178349526,0.058094103881994,0.0724165733013622,0.0858138460892564,0.0990361547203165,0.1112224554593306,0.1272184968163645,0.1398559105329612,0.1512454758356397,0.1631479977776828,0.1743634842667467,0.1889653538388636,0.2015077931489513,0.2135501060301234,0.2245676556111852,0.2345752345752345,0.2459159827668317,0.2567385068696496,0.2667139065101003,0.2754300758022786,0.2843416818405653,0.2914131717134331,0.2993661115269461,0.3064993138693039,0.3129704204420154,0.3190333867910774,0.325019725811224,0.3305869978964239,0.33622402200489,0.3408053726079967,0.3453832234887007,0.3461051212938005,0.3460351998237254,0.3458152265929228,0.3461304700162074,0.3462391191131612,0.345570397666206,0.345488560873908,0.3465454007203592,0.3467420155835259,0.3481579464812398,0.3491052187763515,0.3506457546330175,0.3512220707017728,0.3516628916148999,0.3538020155263031,0.3542174357361842,0.355921033781267,0.3580489039319267,0.3617141845227554,0.3643017117261238,0.364583811578899,0.3667468591285752,0.3669759515243325,0.3703845271768213,0.3731539836327721,0.3766156055528961,0.3789050417568821,0.376172990616075,0.3826987681970885,0.3845556849049282,0.0,2.25324502289618,59.15116661163244,198.25812622021377,309.55740039555434,fqhc7_100Compliance_baseline_low_initial_treat_cost,73 -100000,95692,42935,405.91690005434106,6851,70.36115871755216,5356,55.51143251264474,2161,22.321615182042382,77.38307130315455,79.76016538472011,63.34642469116329,65.09778287077756,77.11652221158751,79.48925923932882,63.24831880773586,64.99970375326474,0.2665490915670432,270.90614539129376,0.0981058834274293,98.0791175128246,103.82878,73.0230751032136,108503.0932575346,76310.5328587694,293.47742,186.46895595946165,306248.98633114574,194432.68810803097,308.1832,148.8874575629156,319167.0150064791,153389.45221954145,3569.29177,1611.6734952357867,3702365.223843164,1657228.6479587802,1306.11295,567.2496875535555,1353195.794841784,581069.3240328929,2126.9522,887.9094515826149,2198564.1223926763,908195.5436394974,0.3817,100000,0,471949,4931.958784433391,0,0.0,0,0.0,24982,260.596497094846,0,0.0,28595,295.8763533001714,1918662,0,68954,0,0,0,0,0,47,0.4911591355599214,0,0.0,0,0.0,0,0.0,0.06851,0.1794865077285826,0.3154284046124653,0.02161,0.3224597445863409,0.677540255413659,24.95787205687537,4.598873002336686,0.3192681105302464,0.2092979835698282,0.2376773711725168,0.2337565347274085,11.17596087205171,5.542004599488868,22.985848090679887,12806.636417372718,60.43657983659105,13.35383415606302,19.29308783843725,14.105338445202936,13.68431939688786,0.556572068707991,0.808206958073149,0.6935672514619883,0.591516103692066,0.108626198083067,0.7093954843408594,0.937046004842615,0.84688995215311,0.7402135231316725,0.0957854406130268,0.5038915390409239,0.7330508474576272,0.6439628482972136,0.5493951612903226,0.1120080726538849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002348582245933,0.0045488622778757,0.0068457723552499,0.0091697469434176,0.0113263179299476,0.0133045593819029,0.0155252910354951,0.0178627933325848,0.0199728108102583,0.02196857245227,0.0241549360755405,0.0261336564528053,0.0281180257731428,0.0303754441983828,0.0323519095467018,0.0342717764273016,0.0363299216840011,0.0381425858078444,0.0399438435940099,0.041874231402547,0.0567017309279319,0.0713119216113228,0.0844409941146232,0.0976153425579341,0.1101036406001244,0.125237873726054,0.1382384430287161,0.1503078902868325,0.1623487483727779,0.1746579378770183,0.1875195007800312,0.200121108576001,0.2122569214213507,0.2238376859757097,0.2341577187114944,0.2449024822695035,0.2556934314721946,0.2650415113043674,0.2740550608758859,0.28226287076514,0.2908964639157358,0.2980061116249663,0.3058659052403351,0.3117325811678569,0.3177831571520673,0.3239904225908372,0.3300459893986291,0.3356184456988493,0.3405235031648853,0.3463155389862775,0.347357356547988,0.3479188460056158,0.3487841302938939,0.3478807860830333,0.3480685163707734,0.3466472303206997,0.3443200203026361,0.3452148036104763,0.3463482327948055,0.3475179843241115,0.3485324947589098,0.3503700049333991,0.3512970711297071,0.3521755631460272,0.3527536023400225,0.3539576945065225,0.3555063452857508,0.3566124635774039,0.3589950524579809,0.360683625430233,0.3652926440446367,0.3674386632825719,0.3701938154676033,0.3719733656174334,0.3741388940606963,0.3790152403282532,0.3813253012048193,0.3763801261829653,0.3854838709677419,0.3871209284912018,0.0,1.7803202392748854,60.82231784760162,202.02991611208628,299.45103751131285,fqhc7_100Compliance_baseline_low_initial_treat_cost,74 -100000,95694,42790,403.2541225155182,6869,70.52688778815809,5335,55.17587309549188,2135,21.997199406441364,77.3960056150407,79.78036190721221,63.35197710932333,65.11307632205653,77.1275084373504,79.51063471573168,63.253697658287166,65.01649097896114,0.2684971776903069,269.72719148052704,0.0982794510361628,96.58534309538425,104.55676,73.54269902258494,109261.56289840532,76851.94371913071,294.67987,186.57678417900732,307366.2194076954,194399.9516112501,305.77205,147.1955839372276,315266.432587205,150603.31704267132,3534.14655,1584.9018032835836,3659838.129872301,1622970.3903278706,1281.23723,557.4878583440657,1327568.018893557,571251.6650407193,2108.38922,877.65995856734,2174980.981043744,893031.7556315751,0.38033,100000,0,475258,4966.434677200243,0,0.0,0,0.0,25069,261.3643488619976,0,0.0,28119,289.63153384747216,1920854,0,68806,0,0,0,0,0,72,0.7523982694839801,0,0.0,0,0.0,0,0.0,0.06869,0.1806063155680593,0.3108167127675061,0.02135,0.3249965455299157,0.6750034544700843,25.209074956537968,4.4959189114036295,0.3179006560449859,0.2159325210871602,0.2303655107778819,0.2358013120899718,10.860073724343918,5.365117323816481,22.635581392589792,12725.995425983896,59.70381257156465,13.536835127057971,18.817388763092456,13.572358411446436,13.777230269967788,0.5375820056232428,0.7751736111111112,0.6768867924528302,0.565500406834825,0.1049284578696343,0.6964560862865947,0.9429347826086956,0.8337408312958435,0.6920152091254753,0.1317829457364341,0.4864998761456527,0.6964285714285714,0.627039627039627,0.531055900621118,0.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0044411997323112,0.0068309616126347,0.0090525781051562,0.0114438589709682,0.0135624974544862,0.0155184192012398,0.017754137357196,0.0199656504937741,0.0223750742082744,0.0243592372360057,0.0264792550078544,0.0284057017092786,0.0305408773935704,0.0324697433992633,0.034328774769746,0.0364600596619158,0.0387469769469499,0.0409131090426914,0.0429920373535665,0.0580524540165655,0.0718950144417932,0.08477811690423,0.0976396993113599,0.1102503293807641,0.1254309342018993,0.1379299369814763,0.1490738769427294,0.1615143034161557,0.172370523696657,0.1855190462343704,0.1988447684669385,0.2105148768772684,0.2216222715299107,0.2318035887061307,0.2423725811451091,0.2529582994100131,0.2622685601294265,0.2719866754288563,0.2797978412001463,0.2879975979027843,0.2957016242979086,0.3026676433060819,0.3094676892520848,0.3171163523919239,0.3231105973783232,0.328040941147101,0.3331768407963355,0.3379868788097944,0.3432806350125712,0.3427408521841921,0.3423927963542524,0.3431047093906487,0.3433458429561201,0.343605798477677,0.3433623445554247,0.3426089982914636,0.3437935729400764,0.3447180573107005,0.3469970211020138,0.3486477374887624,0.3497926949654492,0.3513999539970307,0.3524202542939995,0.3539978357580858,0.3552539016700972,0.3566469383109492,0.3598804279421019,0.3612322408214938,0.3611953399297797,0.3615321025075778,0.3629700957577703,0.3633650793650794,0.3661583263085294,0.3693084397028005,0.3698745779064158,0.3729888613861386,0.3744085579098951,0.3747203579418344,0.3786521231008959,0.0,2.230012217224349,56.9751799919062,197.1544993184904,310.86354439745327,fqhc7_100Compliance_baseline_low_initial_treat_cost,75 -100000,95813,42845,403.9535344890568,6867,70.37667122415539,5350,55.169966497239415,2151,22.00118981766566,77.38566316619061,79.70680330646262,63.36611244363343,65.08409147632439,77.11868986605607,79.44210305529724,63.26730510875035,64.98917538715405,0.2669733001345378,264.70025116537954,0.0988073348830766,94.91608917034,105.20532,73.96329837195007,109802.761629424,77195.47281887644,294.7955,187.56252979517024,306952.76215127384,195047.02201336832,307.7122,148.88529988916713,317298.18500621,152353.4845957703,3549.21939,1608.0817674459877,3663721.6974732033,1638679.4373583205,1287.55085,564.7337805221114,1328298.3624351602,573944.832892067,2123.86272,892.2203616399715,2175383.6744491872,895356.6998340725,0.38123,100000,0,478206,4991.034619519272,0,0.0,0,0.0,25078,260.99798565956604,0,0.0,28414,292.67427175852964,1916925,0,68829,0,0,0,0,0,61,0.6366568210994332,0,0.0,0,0.0,0,0.0,0.06867,0.1801274820974215,0.3132372214941022,0.02151,0.3251381215469613,0.6748618784530387,24.85883671882002,4.505501568929279,0.3287850467289719,0.2029906542056074,0.2325233644859813,0.2357009345794392,11.013148994382794,5.469466074420749,22.98745155055423,12727.619719007856,60.51819627579975,12.973342357357089,19.91941301779108,13.768487996340292,13.856952904311298,0.5510280373831775,0.7716390423572744,0.7026719727117681,0.5884244372990354,0.1126090404440919,0.7065217391304348,0.9146666666666666,0.8536585365853658,0.7561837455830389,0.1217712177121771,0.4969773299748111,0.6962025316455697,0.650611620795107,0.5390218522372529,0.1101010101010101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295149544731,0.0048356193546424,0.0070333194629101,0.0091337654684737,0.0111782415883477,0.013399857448325,0.0155745140608914,0.0177058883559546,0.0198885993152434,0.02224769233918,0.0244009920268913,0.0263887178223919,0.0284072806503663,0.0302631037180384,0.032255403398779,0.0345718033735138,0.0362774719589421,0.038340347022119,0.040257097169439,0.0424345220132985,0.0577558960665074,0.0715823803650199,0.0850426051503495,0.0979712337546359,0.1100636218083761,0.1260258346623855,0.1396260395148048,0.1520327363554232,0.1633902571705902,0.1736587873659858,0.1866605009302375,0.1994728541491131,0.2112382482575938,0.2228577666193647,0.2328460178157574,0.2432468293545926,0.2542616485059161,0.2635434220874059,0.2722905217834683,0.2805067691181851,0.2890732417474494,0.2965289371986316,0.3035703740448098,0.3103468892369871,0.3163998594263139,0.3223939647122426,0.3285029581367483,0.3338239585844615,0.3385221547603669,0.3424594395280236,0.342598073508045,0.3424823299689227,0.3422167785896299,0.3422113675448358,0.3418088331450989,0.3413980142191714,0.3410863774733638,0.3417919284281156,0.3432493102798293,0.3442191250761348,0.3449577464788732,0.3454657251666138,0.3466855201232509,0.3483763455388911,0.349910242103731,0.3506014899049725,0.3515526164462335,0.354413535263925,0.357444093985895,0.3598589574067395,0.3621132837602129,0.363481228668942,0.3658151005438219,0.3662928206301976,0.3715313950184676,0.3707328718071139,0.3735330450895615,0.3743621147172892,0.3781372002230898,0.3804934464148033,0.0,2.4851639362454274,60.45452185934585,201.91169858418945,299.05215695258767,fqhc7_100Compliance_baseline_low_initial_treat_cost,76 -100000,95765,42706,400.8458204980943,6940,71.06980629666371,5445,56.25228423745627,2198,22.62830888111523,77.37657405990127,79.72328964732756,63.3458979718325,65.079784544432,77.10853454314322,79.45183495676145,63.24642288691661,64.98110273034636,0.2680395167580514,271.4546905661166,0.0994750849158876,98.68181408563714,104.18012,73.30989860426408,108787.26048138672,76551.87031197628,292.72196,184.93094369874868,305039.3254320472,192482.3878523168,306.00128,147.23941901212842,315091.25463373883,150454.89310456294,3626.98218,1633.1154396600614,3753377.215057693,1671398.8121800695,1330.09904,587.3496773755355,1375475.403331071,599881.9322461525,2172.63424,906.6701983337442,2239587.6781705213,922550.4837713538,0.38048,100000,0,473546,4944.87547642667,0,0.0,0,0.0,24932,259.7086618284342,0,0.0,28264,290.7742912337493,1921251,0,68921,0,0,0,0,0,59,0.6056492455490001,0,0.0,0,0.0,0,0.0,0.0694,0.1824011774600504,0.31671469740634,0.02198,0.324487831706311,0.675512168293689,25.178562673915152,4.600884446986031,0.336455463728191,0.2033057851239669,0.2196510560146923,0.2405876951331496,11.120260838242933,5.382443397889553,23.28734404643751,12757.548250939784,61.17740930162965,12.915312712248191,20.629258702376514,13.331446923884847,14.301390963120102,0.5382920110192837,0.7741644083107497,0.6752183406113537,0.5827759197324415,0.1068702290076335,0.7065462753950339,0.9169139465875372,0.8434782608695652,0.7715355805243446,0.1358490566037735,0.4839650145772595,0.7116883116883117,0.6188046647230321,0.5285252960172229,0.0995215311004784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030588473614,0.0050684750985818,0.0074676840033279,0.009762688447316,0.0119294605809128,0.0141342756183745,0.0164778578784757,0.0186323355249724,0.0207321685971028,0.0228680226428227,0.0249057067891111,0.0272015273914248,0.0295874412723216,0.031750772399588,0.0339516361985721,0.0362488113449373,0.0381875414181577,0.0402385892116182,0.0422284829142019,0.0443331285212917,0.0590936606341453,0.0725340918597841,0.0854656952670475,0.0977416744606395,0.1102129856990799,0.1261693603796919,0.1386344359626802,0.1511108273748723,0.161754026229228,0.1729274125229215,0.1868638454164557,0.1995174100283494,0.2124067103287713,0.2232167281242135,0.2338537423204809,0.2442106663414958,0.2538555172144237,0.2637396031469122,0.2727510044718861,0.2805084745762712,0.2887572458318388,0.2959883040935672,0.3030270769012385,0.3091935020126509,0.3155074365704287,0.3210864392360897,0.3273848231704267,0.3328756848836174,0.3383532577757077,0.3438250270427143,0.3434935837077291,0.3432967153836635,0.3434258125360697,0.3434520025429116,0.3436738936738936,0.3427779394422067,0.3422315869520445,0.3431668856767411,0.3438376787791692,0.3449107573564882,0.3452533072760072,0.3465497446454729,0.3468368246505184,0.347319712075826,0.3485074626865672,0.3493281148075668,0.3496194521250819,0.3509786057616789,0.3529411764705882,0.3559382706228621,0.360880284905488,0.3631856708779786,0.3646220765302906,0.3684531523976519,0.3694650747391181,0.3702866658736767,0.373639846743295,0.3739919354838709,0.3847411444141689,0.3835668307459295,0.0,2.32205345119976,58.32410509729032,203.66014817815423,316.3037091005693,fqhc7_100Compliance_baseline_low_initial_treat_cost,77 -100000,95748,42788,402.4104942139783,6954,71.32263859297322,5419,55.98028157246104,2145,21.995237498433383,77.3313489084019,79.69871834223804,63.31030609897547,65.06360552698209,77.0628585462115,79.4324443306362,63.21071956529079,64.96772313800061,0.2684903621904055,266.27401160183695,0.099586533684679,95.8823889814795,104.04988,73.25558779414285,108669.86255587584,76508.09062130058,292.40612,185.32645353550035,304772.46522120567,192938.4112020516,304.06127,146.47845118409842,314140.0655888374,150225.69251719146,3578.8291,1624.4075897122443,3700700.7770397295,1659576.16860573,1316.37471,573.1099226119936,1359228.3807494673,583166.24722404,2113.7776,888.1140702307407,2169962.6519613983,894939.2683875349,0.38263,100000,0,472954,4939.539207085265,0,0.0,0,0.0,24937,259.8174374399465,0,0.0,28215,291.2332372477754,1919020,0,68819,0,0,0,0,0,43,0.4490955424656389,0,0.0,0,0.0,0,0.0,0.06954,0.1817421529937537,0.3084555651423641,0.02145,0.3379604178119846,0.6620395821880154,25.047093763982947,4.4452715568496135,0.3242295626499354,0.2192286399704742,0.2279018269053331,0.2286399704742572,11.087778651597135,5.602126348105956,22.918117508676527,12801.964073899837,61.25529059453594,13.919843303272472,19.848830579373125,13.853275944753667,13.633340767136682,0.5532386049086547,0.7718855218855218,0.7006260671599317,0.5797570850202429,0.1081517352703793,0.7133479212253829,0.9171122994652406,0.8661971830985915,0.7661016949152543,0.144927536231884,0.4990118577075099,0.7051597051597052,0.6476333583771601,0.5212765957446809,0.0976116303219107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417673937932,0.0049281564030542,0.0072976401928444,0.0093375330217435,0.0112718468330993,0.013555213817967,0.0158456628361085,0.0180013682265129,0.0201495361515408,0.0222975602761333,0.02447079094191,0.0266707761853392,0.0288972131889844,0.031073184305723,0.0335772752139222,0.0357467841336807,0.0377020492270096,0.0396496798763087,0.0417047817047817,0.0437341165687622,0.058533071655253,0.0726985422618487,0.0854891840288705,0.0988252863167415,0.1111087678599673,0.1269290572344273,0.1395566026722701,0.151698499099886,0.1633569184070456,0.1736848882879402,0.1871220858168335,0.1998635448027897,0.2114729289828091,0.2224691547244999,0.2329945269741986,0.2436736232784049,0.2539765872838568,0.2643674278250686,0.2738583088327109,0.2829881605941479,0.291301931360289,0.2987595609853232,0.3056263710203356,0.3125473001381464,0.3186609860012173,0.3248046802680786,0.3306649629184205,0.3360513709102028,0.3402769666056665,0.3455475243468953,0.3454167846691211,0.34549285301165,0.3460437840961953,0.3459758813152491,0.3458482467734989,0.3436308803943481,0.342954293847857,0.3436218043385514,0.3444850929978118,0.3455558134137851,0.3464890088266711,0.3467457962413452,0.3479692185108301,0.3489564672160516,0.3497036001735023,0.3487976999477261,0.3494921250855969,0.3528947534566576,0.3560587298779409,0.3585328741891567,0.3617372182517867,0.3614631029709296,0.361095337245252,0.3665168710488232,0.3704396632366697,0.370846981750117,0.3713855421686747,0.3733464955577492,0.3711814003784807,0.3786848072562358,0.0,2.389949492602577,60.21140613212527,207.67045506544608,303.01543916182976,fqhc7_100Compliance_baseline_low_initial_treat_cost,78 -100000,95494,42649,403.2818815841833,6698,69.02004314407188,5189,53.79395564119212,2094,21.54062035311119,77.22623088476638,79.71308721397301,63.24095407219974,65.07618268360287,76.96290867575635,79.45067371158864,63.14335284058237,64.98175923670661,0.2633222090100275,262.4135023843764,0.097601231617368,94.4234468962577,104.63706,73.57144153399855,109574.48635516368,77042.9990721915,293.31083,187.74461927074097,306598.90673759603,196052.1445014616,307.1695,148.5270201923642,318527.36297568434,153102.34994245664,3425.51654,1553.6469540707917,3553659.182775881,1593513.0646021748,1267.66311,553.5376976143843,1314484.7843843594,566724.7585490255,2060.7175,862.804048214283,2122126.311600729,872415.4098332444,0.37925,100000,0,475623,4980.658470689258,0,0.0,0,0.0,25092,262.1944834230423,0,0.0,28376,293.98705677843634,1905799,0,68405,0,0,0,0,0,47,0.4921775190064297,0,0.0,0,0.0,0,0.0,0.06698,0.1766117336849044,0.3126306360107495,0.02094,0.3250532292405961,0.6749467707594038,24.813500114459057,4.536837554738424,0.3181730583927539,0.21757564077857,0.2310657159375602,0.2331855848911158,11.324745769759716,5.577122588271752,22.371641276249846,12663.207000532972,58.88673210684315,13.291860905110733,18.89191959068496,13.488085030031884,13.214866581015569,0.5534785122374253,0.75022143489814,0.705632949727438,0.567139282735613,0.1487603305785124,0.7256838905775076,0.8997289972899729,0.8651162790697674,0.721830985915493,0.1974248927038626,0.4949651432997676,0.6776315789473685,0.6494676494676495,0.5191256830601093,0.1371545547594677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022090489942747,0.0043819164798604,0.0068938209434077,0.0088561260803253,0.0109545528587717,0.0129439942924119,0.0152144409636833,0.017472871068604,0.019724390518379,0.0219565172844818,0.024028986697323,0.0258693372267576,0.0278747438550966,0.0298082576093571,0.0319894195201587,0.0341671498384825,0.0363178041265988,0.0382744282744282,0.0404234039006501,0.0423958898959943,0.0575199933006741,0.0717051213447071,0.0853753444250468,0.0985602259791728,0.1102914755553676,0.1252570435225032,0.1378067452047803,0.1501050991773455,0.1609078445653571,0.171763643595008,0.1849336514894674,0.1979845751662345,0.2104167120957718,0.2210151282613462,0.2309415308565691,0.2429819297192771,0.2535105680686561,0.2636748040818628,0.2732030307856834,0.280948280810516,0.2879302943462774,0.2953231122945723,0.3012736056214317,0.3077108028179173,0.3141132719624459,0.3198955665268446,0.3250204261202941,0.3301971211617621,0.3351621920301632,0.340367750311316,0.3413476491190112,0.3416505658294231,0.3423134518125053,0.3425663153017491,0.3425360007155422,0.3411987148940095,0.3405835122028778,0.3408183468074575,0.3413264166824123,0.3426745417661526,0.3432948172682449,0.3443345645180508,0.3449001494076303,0.3460951183365518,0.3473333976275436,0.348675436073119,0.3491650463227725,0.3516348128257779,0.3542901495907423,0.3559992014374126,0.3585770606032823,0.3616114249174038,0.3636134559657301,0.367190465345783,0.3730136604404795,0.3782929399367755,0.3793208932395228,0.3834324379741644,0.3812032159689492,0.3873320537428023,0.0,2.12338148436071,57.88522405372087,201.9701295095556,288.8393563366846,fqhc7_100Compliance_baseline_low_initial_treat_cost,79 -100000,95712,42525,401.0468906720161,6800,69.89719157472418,5333,55.1654964894684,2126,21.857238381812103,77.36399481233721,79.74863956869147,63.33329461681414,65.09717357379341,77.10746949614874,79.49095374773584,63.23956604451636,65.00539114848505,0.2565253161884726,257.6858209556292,0.0937285722977847,91.78242530836656,104.18056,73.22196145693235,108847.73069207622,76502.15381240843,291.01951,184.8971048250945,303516.9884653962,192640.1860008092,304.70639,146.0678274682766,314825.2256770311,149941.7483849746,3541.16582,1594.5868656731238,3665151.851387496,1631425.46835624,1281.10503,560.2387698817306,1323729.678619191,570588.0006830181,2095.18268,868.4688664094278,2155835.046807088,879901.4369416543,0.37979,100000,0,473548,4947.624122367101,0,0.0,0,0.0,24834,258.90170511534603,0,0.0,28247,291.520394516884,1922073,0,68984,0,0,0,0,0,48,0.5015045135406219,0,0.0,1,0.0104480106987629,0,0.0,0.068,0.1790463150688538,0.3126470588235294,0.02126,0.3291777559882336,0.6708222440117664,25.112546657685453,4.454631462237895,0.3305831614475905,0.2180761297581099,0.2212638289893118,0.2300768798049878,11.235531656103602,5.698935720168056,22.468701506017958,12668.891467740044,60.048651895492895,13.74476319305052,19.684450452956263,13.196703068459644,13.42273518102646,0.5582223888993062,0.7790197764402408,0.7073170731707317,0.5796610169491525,0.1140994295028524,0.7224334600760456,0.9207650273224044,0.8470588235294118,0.7745454545454545,0.1606425702811245,0.5044798407167745,0.7139272271016311,0.6629297458893871,0.5204419889502763,0.1022494887525562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022998753812018,0.0045939943411725,0.0067712986274669,0.0089334715531434,0.0113250167891084,0.0134176905678831,0.0155963115590191,0.0177601209199722,0.0200977785050934,0.0219439267648323,0.0243454718857998,0.0263741681045107,0.0285026589452679,0.030695201491999,0.0327357916137754,0.0345747430674745,0.0363487574712286,0.0382911162534892,0.0405596440896428,0.0425183888645787,0.0567269233580834,0.0703542833219948,0.0840379329878522,0.0963352437036647,0.107943166726395,0.1233334390628138,0.1363583343053773,0.1480331042699402,0.1601742230952355,0.170878614451375,0.1837424270141721,0.1961882923030329,0.2092317729571032,0.2207059441018239,0.2315374969751633,0.2415144470275655,0.2524316245036362,0.2625044980208708,0.2713502842166173,0.2795072301157505,0.2874112285734114,0.2950599239988307,0.3021199531266645,0.3088215907865249,0.3152934317916828,0.3217548698500259,0.3274757985841859,0.3322617943407494,0.337625067866284,0.3420497958108286,0.3425403225806451,0.3428343795931263,0.342984503754535,0.3437026562973437,0.3435489132046377,0.3433387279000885,0.3427566296991591,0.343653959327797,0.3443139257745999,0.3449689795336233,0.3461603312288064,0.3470723124975289,0.3473988560414004,0.3465470852017937,0.3478721355671095,0.3491664703881081,0.3501344470507466,0.3538267716535433,0.3570447582491108,0.3590762748916888,0.3602914389799636,0.3613837746060381,0.3596730245231607,0.361715207869054,0.3657447010740424,0.3708418397982466,0.3757763975155279,0.376981675931645,0.3800614353532532,0.3761252446183953,0.0,2.1016833532510915,58.05680655563304,200.0468416482549,307.5041219433128,fqhc7_100Compliance_baseline_low_initial_treat_cost,80 -100000,95667,42641,401.4864059707109,6858,70.58860422089121,5414,55.98586764506047,2147,22.066125205138658,77.31725194233033,79.72731933490866,63.30264576078415,65.08566619964722,77.05268028043383,79.46186370685407,63.2062126873328,64.99153115684362,0.2645716618964968,265.4556280545819,0.0964330734513509,94.1350428036003,103.0843,72.5314747118403,107753.2482465218,75816.60835172035,294.77343,186.8081478160013,307499.3466921718,194654.9291349864,306.71847,147.31912554549015,317165.65795937995,151295.52994781756,3587.46271,1607.9159102806416,3713069.9196170047,1644557.0830993624,1320.77901,569.2735245266421,1368390.312228877,582847.245682045,2120.3009,880.5787413986662,2181688.021992955,891023.1165563334,0.37857,100000,0,468565,4897.8749202964445,0,0.0,0,0.0,25097,261.69943658732893,0,0.0,28326,292.56692485392034,1922955,0,69018,0,0,0,0,0,54,0.5644579635611026,0,0.0,0,0.0,0,0.0,0.06858,0.1811554005864173,0.3130650335374745,0.02147,0.3305578684429642,0.6694421315570358,25.32846625210124,4.629248094881201,0.3297007757665312,0.1989287033616549,0.2395640930919837,0.23180642777983,11.189301705588935,5.50892825191338,22.926843599155028,12709.355345438757,60.936394784777086,12.649200065782988,20.003322668029558,14.386306632828616,13.897565418135946,0.5579977835241965,0.7892293407613742,0.6991596638655462,0.5767154973014649,0.1394422310756972,0.718989280245023,0.9237536656891496,0.8588235294117647,0.7437722419928826,0.193050193050193,0.5068159688412853,0.7269021739130435,0.649264705882353,0.530511811023622,0.1255020080321285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024820934685483,0.0048572732342949,0.0074286816119833,0.0095926185613104,0.0120160756982245,0.0141081796882958,0.0161589782302654,0.0181329682902909,0.0204620326983282,0.0226110832214902,0.0246332204780958,0.0271481123738671,0.0290693485130781,0.0310428372596525,0.0330386466444963,0.034877705582916,0.0369552597752622,0.0386935977984319,0.0409609222189853,0.0433336808089231,0.0578494264161982,0.0717008398433409,0.0854416426966764,0.0982607872226255,0.1100749024158666,0.125107148526377,0.1380810868180853,0.1498205518695619,0.1610396827941475,0.1722218050355621,0.1856938206180459,0.1991275923280079,0.2111391633656901,0.222132224168126,0.2329907808214651,0.2438405355381427,0.2535289851029403,0.2640482296306294,0.2728242006283815,0.2803992948233624,0.2885600916210682,0.2959121629522228,0.302678455183515,0.3094153742898919,0.3148537471594016,0.3206146408839779,0.3254154092736129,0.3310345705088239,0.3362554546984863,0.3416085161392447,0.3422210856427581,0.3418515411170864,0.3426496664696445,0.3421170487871827,0.3420167316681056,0.3412895892851657,0.3408135754500039,0.3410354241357761,0.3430046675443245,0.3439849959810663,0.3448295273300433,0.3458067835516681,0.3464149832888403,0.3462452897900592,0.3474529145813689,0.34920759659463,0.3512354152367879,0.3531582100848286,0.3545384018619084,0.3565248594553646,0.3586817015034836,0.3616600790513834,0.3641149235745544,0.3697020884520884,0.3692045131316962,0.3755952380952381,0.3787714683583475,0.3856382978723404,0.3892231947483588,0.3780674846625766,0.0,2.3609168583331384,57.4686675107525,207.9101501352077,310.4980343819257,fqhc7_100Compliance_baseline_low_initial_treat_cost,81 -100000,95849,42937,404.8242548174733,6849,70.16244300931673,5316,54.80495362497261,2080,21.241744827802066,77.4717338221379,79.75675141475966,63.40399372213196,65.09000007330788,77.22041070688009,79.5085647273906,63.31189916850699,65.00203197603332,0.2513231152578186,248.1866873690564,0.0920945536249675,87.96809727455468,104.40826,73.45666925689353,108929.94188776096,76637.90885339808,293.03284,186.1741769228793,305079.87563772185,193594.34167199337,309.30172,149.166938810578,318635.69781635696,152534.89020706376,3502.91657,1577.5590861350706,3615274.880280441,1606634.700580425,1269.8053,555.1312220096717,1307167.2004924412,561687.5995620008,2045.60716,842.7304539368669,2092645.3484126076,845499.7213436685,0.38204,100000,0,474583,4951.360994898225,0,0.0,0,0.0,24971,259.8357833675886,0,0.0,28639,294.6822606391303,1921510,0,68877,0,0,0,0,0,50,0.5216538513703847,0,0.0,0,0.0,0,0.0,0.06849,0.1792744215265417,0.3036939699226164,0.0208,0.3239749826268241,0.6760250173731758,24.972184128496764,4.478734172406271,0.3357787810383747,0.2135063957863054,0.223288186606471,0.2274266365688487,11.22467613658614,5.789477279121455,21.860380983869156,12749.427796670972,59.66341800197753,13.3073102188122,20.153736365794607,13.091009677111831,13.111361740258886,0.5562452972159518,0.7524229074889868,0.7103641456582633,0.573715248525695,0.1273779983457403,0.7211895910780669,0.8814016172506739,0.8879120879120879,0.7101449275362319,0.176954732510288,0.5003777386048854,0.6897905759162304,0.649624060150376,0.5323819978046103,0.1149068322981366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023079259034315,0.0046094153640425,0.0068547324017927,0.009064149411287,0.0112795707666043,0.0136640654410044,0.0157586993725042,0.0179418394720468,0.020239772889733,0.0223349423218522,0.0243447802619854,0.026388119705454,0.028486311572243,0.0305175429570943,0.0326873518194,0.0345935005524633,0.0363899663822084,0.0385017981324296,0.040308177929144,0.042250736265909,0.0569736403069736,0.0708640839622838,0.084266895821762,0.0967406380027739,0.1094059614654918,0.1242150001057239,0.1367419864488012,0.1501654202525451,0.1622628617792439,0.1730701218531974,0.1860547694625275,0.1988458296409968,0.2108429156215729,0.2220900019651084,0.2324697716814742,0.2436659886805801,0.2544249512670565,0.2640011676996317,0.2731555404563728,0.2810677946724591,0.2892211766064315,0.297099927673176,0.3036464975674271,0.3098441629890089,0.3161298149833181,0.322398788788912,0.3282520960103957,0.3341927781235314,0.3396414213880379,0.3448797956657977,0.344705218162755,0.344922169649592,0.3454024522127498,0.3463404800645078,0.3459083166703695,0.3441892407478061,0.3433730190018134,0.3446809902220478,0.3452850727990202,0.3459747645281678,0.3473082953781826,0.3483745277078086,0.3492215868775825,0.3504888314811928,0.3520405722214248,0.3550077841203944,0.3554800339847069,0.3579483334895199,0.3594455638157438,0.3620459191696807,0.3653802854955644,0.366814533164343,0.3681097407500629,0.3692260630162129,0.3689707557918724,0.3728914941978705,0.3708913010243082,0.3734381297863764,0.3746586564718733,0.3712871287128713,0.0,2.5145817514432327,58.81958011074471,195.7073221806069,302.73153588326903,fqhc7_100Compliance_baseline_low_initial_treat_cost,82 -100000,95734,42599,400.5995779973677,6696,68.72166628366098,5188,53.55464098439426,2078,21.298598199176887,77.34438518034166,79.6963592461727,63.33412346583962,65.07199600372242,77.09134738285849,79.44574836090904,63.24168671205909,64.98332438473912,0.2530377974831737,250.6108852636686,0.0924367537805253,88.67161898329812,104.0237,73.19664348874691,108658.86727808302,76458.12719488052,292.01698,185.6518582199956,304293.2187101761,193188.36382058164,302.96531,145.8868530703362,312312.02080765454,149178.89268816353,3424.35397,1538.7880212509692,3536412.2046503853,1566823.6062955374,1247.7368,544.2082048686146,1284501.5459502372,549692.8372738716,2042.45202,840.3226881537107,2094972.5071552424,844904.0506575204,0.38007,100000,0,472835,4939.039421731047,0,0.0,0,0.0,24928,259.67785739653624,0,0.0,28114,289.5418555581089,1919313,0,68960,0,0,0,0,0,44,0.438715607830029,0,0.0,0,0.0,0,0.0,0.06696,0.1761780724603362,0.3103345280764635,0.02078,0.318575280261104,0.681424719738896,25.23870720280453,4.507292795040327,0.3276792598303778,0.2180030840400925,0.2201233616037008,0.2341942945258288,11.404200471241229,5.848853133348087,21.833503848867263,12653.536503399466,58.50169789857724,13.326687264139482,19.344653572231785,12.669161561597596,13.16119550060838,0.5522359290670779,0.7648099027409372,0.7070588235294117,0.5779334500875657,0.1135802469135802,0.7283582089552239,0.910025706940874,0.8700440528634361,0.7470817120622568,0.1458333333333333,0.4909043659043659,0.6886792452830188,0.6476725521669342,0.5288135593220339,0.1056410256410256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0046231991321363,0.0067675199626619,0.0091709576185978,0.0115297801817923,0.0140075127502977,0.0162145084690487,0.0184295117097811,0.0209255039797284,0.0230328455950066,0.0252379830107284,0.0274969464943702,0.0294888799777908,0.0315142277469386,0.0335272757283155,0.0355596432668161,0.0372954340782759,0.0392325641690433,0.0412916502109792,0.043373644573607,0.0580460610110036,0.0718329757731149,0.0845832721475172,0.0971595629449685,0.1092657619183195,0.1245083111280294,0.1362937352183181,0.1490260327457259,0.1598726998942725,0.1704098369442866,0.1827429198824555,0.1953791738326248,0.2078450131547476,0.2187185764875617,0.2288158893202388,0.2400278986349596,0.2508564987891841,0.2608138200958229,0.2706314810192644,0.2785220298616836,0.2869850891297558,0.2946558098179606,0.3019584639962132,0.3086942442160308,0.3146244867215783,0.3208131344903724,0.3260776942355889,0.3316978054189075,0.3365828364013482,0.3408751700545495,0.3415534215949036,0.3419785360484315,0.3417259598450158,0.3414517807585568,0.3418133698108719,0.3409007240152166,0.3406732874321794,0.3413158889564602,0.3425472956792446,0.3436298957830571,0.3441700883064289,0.343859996045086,0.345093761798884,0.3456839934548226,0.3464034939555534,0.348158988162124,0.3490253244154804,0.3510782734994159,0.3536813167447926,0.3577164316247853,0.3593850096092248,0.3634177621032382,0.3653906991458399,0.3662313999392651,0.3695652173913043,0.3726420690473366,0.3778872805666769,0.3823103947096508,0.3887339654210819,0.3954491957630443,0.0,2.317497610609451,58.91539126884001,189.90573713046544,294.813238014041,fqhc7_100Compliance_baseline_low_initial_treat_cost,83 -100000,95667,42924,404.1519019097494,6916,70.96490952993194,5425,56.079943972320656,2275,23.372740861530097,77.28108161739658,79.66794406284994,63.29287913429015,65.05563785774673,77.00024153640852,79.38782593056244,63.18991525507733,64.95565029415852,0.2808400809880567,280.11813228749816,0.1029638792128224,99.9875635882148,104.16054,73.33449838848311,108878.00390939404,76655.78662494186,293.60405,185.8036126405084,306146.8008822269,193468.21104089907,302.85924,145.93360790970507,312718.24139985576,149596.68821733352,3630.96016,1629.941250671994,3754657.959379933,1663651.221694918,1318.44609,578.8196952945036,1362106.0449266727,589557.0323845883,2244.57022,934.8284799678768,2307739.993937304,944681.145671252,0.38251,100000,0,473457,4949.000177699729,0,0.0,0,0.0,24985,260.4659914076954,0,0.0,28028,289.13836537154924,1915182,0,68749,0,0,0,0,0,56,0.5749108888122341,0,0.0,0,0.0,0,0.0,0.06916,0.1808057305691354,0.3289473684210526,0.02275,0.3229881900576765,0.6770118099423236,25.28646657641783,4.622646925597249,0.3198156682027649,0.2070046082949308,0.2305990783410138,0.2425806451612903,10.94695095539826,5.300905168232533,24.208427372182715,12853.14072437721,61.16417765927826,13.256466487469996,19.45732371676449,13.836381847451005,14.61400560759276,0.5332718894009216,0.7533392698130009,0.6760806916426513,0.5787370103916867,0.1139817629179331,0.6997776130467013,0.9283819628647216,0.86810551558753,0.76171875,0.1237458193979933,0.4781648675171737,0.6648793565683646,0.6153262518968133,0.5316582914572864,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021526617028,0.0048560914040085,0.00699229730964,0.0091434609015452,0.0113906799829139,0.0139912834507759,0.0162632298060648,0.0185302405357945,0.0204651162790697,0.0224874359000603,0.0246895858752601,0.0270339644338576,0.0289284245166598,0.0308890651884974,0.0333563828140319,0.0357327488161459,0.0377774785319922,0.0398131811105345,0.0417126094825972,0.0436617956682162,0.0582655118735438,0.072,0.0855376411806692,0.0984427609427609,0.111384258282338,0.1264573326844544,0.1403989257242338,0.151915047716428,0.1633645899045195,0.1749009417247415,0.1882449384633638,0.2020115534264688,0.2140780029841968,0.225291031945068,0.2358846086036671,0.2461401952085181,0.2569553893788494,0.2668289000799901,0.2751017253529131,0.2841592108281716,0.2917468190140682,0.299124462312029,0.3064531435349941,0.3135902734393772,0.3193232304789726,0.3249132683926565,0.3300817493354732,0.3361825906127604,0.3411065089525689,0.3461660665113323,0.3459719482204145,0.3467434537620152,0.3467099021537503,0.3465297645845738,0.3473000224064531,0.3463260752481342,0.3455553966210524,0.3455676157170664,0.3459325788669266,0.3467807003388736,0.3480939908421112,0.349107356340161,0.3492345428402267,0.3496951907879883,0.3499210686095932,0.3510752829346427,0.3515418248763088,0.3552853014955704,0.3573749646792879,0.3611986752324329,0.3619348343401061,0.3639859019545017,0.366681469263465,0.3666031261913839,0.3651467950533371,0.3686071176054678,0.3692236598890943,0.3664230613073487,0.3602179836512261,0.3593023255813953,0.0,2.3450808427316536,59.45379960137208,202.26452487253096,312.9294745036838,fqhc7_100Compliance_baseline_low_initial_treat_cost,84 -100000,95722,42789,404.2644324188797,6866,70.55849230062056,5326,55.02392344497608,2133,21.83406113537118,77.3612597271838,79.72636183510456,63.34108899169471,65.08899916842387,77.09549265454542,79.46375835731294,63.24277494947773,64.99467350417757,0.2657670726383827,262.60347779161464,0.0983140422169839,94.3256642462984,104.95496,73.74715388585528,109645.59871293957,77043.05581355935,294.46137,187.15360000761152,307005.5995486931,194902.03924658024,304.69522,146.79627955877132,314678.70499989553,150466.07780164777,3541.9202,1593.1014297826032,3660541.6205261066,1624872.7900858463,1319.11517,566.3325789000834,1361315.5805353,574995.0934034544,2112.6221,883.6501408772032,2165204.592465682,886769.776200838,0.38022,100000,0,477068,4983.890850588162,0,0.0,0,0.0,25031,260.8386786736592,0,0.0,28159,290.5915045653037,1916559,0,68789,0,0,0,0,0,58,0.605921313804559,0,0.0,0,0.0,0,0.0,0.06866,0.1805796644048182,0.3106612292455578,0.02133,0.3262430939226519,0.6737569060773481,25.03338387264555,4.518797388784809,0.3379647014645137,0.2001502065339842,0.2215546376267367,0.2403304543747653,11.10660631460444,5.5300103745192,22.73886627074503,12666.403883978408,59.90032528470139,12.432790916969662,20.37938662763483,13.13986594492476,13.948281795172145,0.5418700713481036,0.7392120075046904,0.6988888888888889,0.5796610169491525,0.121875,0.6887218045112782,0.8978978978978979,0.8259911894273128,0.7323943661971831,0.1312741312741312,0.492992992992993,0.6671214188267395,0.6560178306092125,0.53125,0.1194906953966699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022994094468248,0.0044914429394111,0.0066570599338353,0.0088793164755006,0.0110241025119495,0.0133194843282214,0.015479371035833,0.0173890845969265,0.0195180304068215,0.021590909090909,0.0236125208903653,0.0258306372926616,0.0278511997202538,0.0298850337893522,0.031845293377087,0.0340022123665084,0.0359336005053486,0.0380213143503481,0.0398040989487475,0.0418841621604726,0.0573967339097022,0.0711534435838392,0.0842957694768753,0.0969370051417936,0.109713936378776,0.125507399577167,0.1377065173591228,0.1495376823468074,0.1612658606399795,0.1724174893612459,0.1858945373899188,0.1983277989897569,0.2094643808364225,0.2203614023197087,0.2306271439880376,0.2411621472053126,0.2514077989272851,0.2617021993953629,0.2707645904910932,0.2798342130271006,0.2874971084894749,0.2947818768410716,0.301818482980561,0.308323451555332,0.3147620145351306,0.321079577620794,0.3271831795794895,0.3325914998601114,0.3374990287238726,0.3422807272343178,0.3425694051754315,0.3425405249336615,0.3427489192728501,0.3434997542713423,0.3435943192802438,0.3432014349885783,0.342234047607735,0.3429547171050471,0.3436869981206219,0.3446488264421444,0.3454371446264707,0.3463392378949874,0.3484931276533143,0.3485650224215246,0.3495897683397683,0.3502989301447451,0.3501951107540457,0.3521376731214147,0.3533839901042587,0.3557634640758066,0.3579953358635511,0.3590643274853801,0.3610761088709677,0.3618075135258706,0.3642166525861259,0.3664890467732386,0.3712318286151492,0.3700243704305442,0.3774964838255977,0.3827809215844786,0.0,2.352945147715676,58.45954005005192,197.0062282941218,306.66901489981245,fqhc7_100Compliance_baseline_low_initial_treat_cost,85 -100000,95662,42468,400.1797997114842,6795,69.92327151847128,5254,54.45213355355313,2135,22.035918128410444,77.2430810454354,79.64937003612671,63.27207635196621,65.05078513258695,76.98248369613084,79.38411783610849,63.176596937845495,64.95546625319314,0.260597349304561,265.25220001822447,0.0954794141207173,95.31887939381534,102.63044,72.28117688646462,107284.43896217934,75558.92296467209,288.81562,183.0160231986233,301447.5653864648,190857.5957242538,299.10243,143.5164078988077,309453.61794652004,147637.72104881972,3494.61158,1570.117756194696,3624036.932115156,1613107.013065923,1306.20522,567.9372310514356,1353595.51336999,582138.9304956855,2105.63028,877.8453499888503,2174954.192887458,896747.4388399747,0.37951,100000,0,466502,4876.565407371788,0,0.0,0,0.0,24629,256.9672388200121,0,0.0,27742,286.75963287407745,1924527,0,69026,0,0,0,0,0,48,0.5017666367000481,0,0.0,0,0.0,0,0.0,0.06795,0.1790466654370109,0.3142016188373804,0.02135,0.3230769230769231,0.676923076923077,25.266237043170925,4.461306729040497,0.324514655500571,0.2131709173962695,0.2209744956223829,0.2413399314807765,11.1281022288389,5.720308776141205,22.76939835353206,12684.565985825597,59.388340989760266,13.043092688876095,19.45345561080375,12.848829301168298,14.04296338891211,0.5515797487628473,0.7616071428571428,0.7120234604105572,0.5925925925925926,0.112776025236593,0.6960556844547564,0.9121813031161472,0.8505747126436781,0.7130801687763713,0.1455223880597015,0.5044180762433729,0.6923076923076923,0.6645669291338583,0.5616883116883117,0.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024525701313442,0.004584829488974,0.0065683278681867,0.008951523587925,0.0112802986380234,0.0133509852843831,0.0154983431047667,0.0176237542885149,0.0201345713350785,0.0222622729227681,0.0241408661586897,0.0263819998562288,0.028291117761392,0.0302053178666721,0.032327986622902,0.0341019542963499,0.0362869810226236,0.0384547520939935,0.0405242354899105,0.0427852086612941,0.0573587192777127,0.0710058551811544,0.0839982362575064,0.0962991811043513,0.1089047242016363,0.1238526768227484,0.1364466918794883,0.1482377774461099,0.1599597693155433,0.1706368811083664,0.1842284160435078,0.1974632771423925,0.2100551114209162,0.2203898379325449,0.2307192135599197,0.2422480835154594,0.2516239392685844,0.2612851233614733,0.2710346238661422,0.2796748153923772,0.2879130303767834,0.2954388430235962,0.3026911141117665,0.3098997072796199,0.3162146707060383,0.3224930241746302,0.3286228385850961,0.3335586993404855,0.3389702826267664,0.3428840017477194,0.3436010960679238,0.3438917771005419,0.3434409088340021,0.3430332028418152,0.3434674941074678,0.3429318164347759,0.3424546451910387,0.3434918122000692,0.3445218166849615,0.3458867856822463,0.3466928198261066,0.3473369835739173,0.3475869336143308,0.3470012377630246,0.3474957657875635,0.3487711173096153,0.3493784789317336,0.3535908095585668,0.3571023532747377,0.3599034787854414,0.3616352201257861,0.3641991924629879,0.3657587548638132,0.3679623631035014,0.3677962856595826,0.3694321046944411,0.3793481667188969,0.3805877483443708,0.3861165319208252,0.3794573643410853,0.0,1.8246797283024931,57.3227152121681,199.7828512314065,303.0363736694188,fqhc7_100Compliance_baseline_low_initial_treat_cost,86 -100000,95828,42822,402.7841549442752,6862,70.56392703593939,5360,55.45352089159744,2193,22.62386776307551,77.44904619750217,79.77570226852549,63.38601454967061,65.10708005489806,77.18028874638003,79.50483345202493,63.28722167769293,65.01001385421007,0.2687574511221413,270.8688165005668,0.0987928719776789,97.06620068799054,103.66202,72.97934932003261,108175.0845264432,76156.60278836312,294.57548,187.1354556886853,306921.1190883666,194803.54978574667,305.93452,147.2807346688774,316134.07354844094,151367.0583480411,3537.21911,1593.878401463534,3657977.960512585,1630247.251465149,1295.79084,565.3858236237397,1340430.239595943,578307.1746973128,2162.97344,896.5754789534977,2231436.5321200485,911719.727278943,0.38152,100000,0,471191,4917.04929665651,0,0.0,0,0.0,25093,261.3641106983345,0,0.0,28404,293.43198230162375,1926072,0,69048,0,0,0,0,0,53,0.5322035313269607,0,0.0,0,0.0,0,0.0,0.06862,0.1798595093310966,0.3195861264937336,0.02193,0.3193768257059396,0.6806231742940604,25.23369960208484,4.54135260822788,0.3220149253731343,0.2132462686567164,0.2270522388059701,0.2376865671641791,10.933907375045631,5.458986509946791,23.180947884083267,12737.958447277051,60.25082229618629,13.430888016932702,19.560968253936228,13.468827568574314,13.790138456743035,0.5479477611940299,0.7769028871391076,0.6929316338354577,0.5875102711585867,0.108320251177394,0.6996363636363636,0.916243654822335,0.852803738317757,0.6946308724832215,0.1137254901960784,0.4956085319949811,0.7036048064085447,0.6402157164869029,0.5527747551686616,0.1069676153091266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022786425366861,0.0045411695538909,0.0065548486601118,0.0088174642679371,0.0109317957635478,0.0133179925264476,0.0154359063242355,0.01778952632707,0.0200408788962698,0.0222038043200212,0.024460726546088,0.0265188834154351,0.0285775963979892,0.0305788357391429,0.032776402640264,0.034951235639309,0.0369703367902461,0.0390916632102861,0.0412787798188014,0.0432560173232281,0.05687520211978,0.070890099434343,0.084999790382761,0.0979648444477132,0.1097787144362486,0.1252972321739957,0.1388941889800504,0.1507997277522545,0.1627316469471146,0.1740201327907475,0.1878891505629577,0.2007238156970777,0.2121011432355847,0.2227824340841627,0.2330976482729848,0.2437794997070755,0.2543800051234643,0.2638142166051205,0.2732819415673356,0.2815831267209762,0.2886893080599358,0.2962331964152352,0.3031444016902339,0.3094443846622906,0.3157129177323362,0.3218773823869365,0.3276802316149401,0.3320643139046458,0.3368078428333398,0.3412650364560027,0.3416013107004727,0.3417641566430494,0.3424780751068136,0.3432667897530579,0.3436018255097202,0.3430634646799285,0.3423625126135217,0.3443100065402223,0.3452393101336871,0.346603840682788,0.3481217193133207,0.3489256100683434,0.3510976374660255,0.3513598069230597,0.3511487071037201,0.3529029575341754,0.3535054510261592,0.3548772062056403,0.3553655017069651,0.3574147501982553,0.3596403140405331,0.3628177119411733,0.3644416323948117,0.3670537897310513,0.368994598692315,0.3742557751845677,0.3753661168490828,0.3813838550247116,0.3809258226436141,0.3837879369957741,0.0,1.8584890881525264,60.90700217743679,198.14549950868408,301.5183618326587,fqhc7_100Compliance_baseline_low_initial_treat_cost,87 -100000,95815,42472,400.4800918436571,6845,70.31258153733758,5377,55.617596409747954,2153,22.16771904190367,77.3497797498425,79.68346368192735,63.33168066437421,65.06024415020188,77.08804593360489,79.4204365830484,63.235340840959,64.96547822349994,0.2617338162376086,263.0270988789505,0.0963398234152137,94.76592670193897,103.4484,72.78303299403771,107966.8110421124,75962.04455882452,291.54031,184.9507001466564,303782.7062568491,192537.4838455945,306.63169,147.41280588141845,316793.47701299377,151342.07378630392,3546.28938,1601.1981642942403,3670974.7221207535,1640925.965970088,1294.2957,562.0028033501883,1337997.5577936647,573719.6298598218,2121.17206,884.4337032210408,2186527.9340395555,900102.9544062064,0.37772,100000,0,470220,4907.5823200960185,0,0.0,0,0.0,24763,257.9241246151438,0,0.0,28428,293.5239785002348,1923003,0,69014,0,0,0,0,0,51,0.5218389604967907,0,0.0,0,0.0,0,0.0,0.06845,0.1812188923011754,0.314536157779401,0.02153,0.3204681621847569,0.6795318378152432,24.975940192282952,4.528653550207909,0.3310396131671936,0.2042030872233587,0.232843593081644,0.2319137065278036,11.048238913168362,5.523047420503975,22.92405582881633,12611.460917008624,60.68951751691975,13.082749110826091,19.998152621869384,13.946232684523396,13.66238309970088,0.5441696113074205,0.7723132969034608,0.6803370786516854,0.5814696485623003,0.111467522052927,0.7061781609195402,0.9124668435013262,0.8512035010940919,0.6976744186046512,0.1556420233463035,0.4875784190715182,0.6990291262135923,0.6213151927437641,0.544689800210305,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021577486476082,0.0044916706378577,0.0066373028599265,0.0087779008219122,0.0108127352253077,0.0130034112316073,0.0152324632952691,0.0173534906035952,0.0195529298731563,0.0216276522789383,0.0237004233682894,0.0257405410955387,0.0278134800267338,0.0296455711843812,0.0316883974253177,0.0338089874869548,0.0359087427281949,0.0378387909842442,0.0399393221536479,0.0419993961415527,0.0561258554498414,0.0698683563892635,0.082923710605473,0.0961413169122128,0.1082770323682241,0.1233135969549587,0.1358824777259228,0.1480295016017283,0.1598291054739652,0.1704617364723548,0.1838487231979312,0.1965694497051025,0.2083859038503371,0.2194106202041842,0.2295033276497442,0.2411576987855686,0.2513028825229608,0.2610710549700235,0.2699666371621161,0.2786729423620893,0.2868018836270233,0.2943281487545316,0.3013585155732273,0.3077770856294025,0.3137326338288157,0.3195845807000037,0.325249518473122,0.3301605883999695,0.3362335728620444,0.3407137481680992,0.3405325244354567,0.3417250317101417,0.3414486126400767,0.3412303721854112,0.3413802347054268,0.3406502317870629,0.3410269832960548,0.3425648784659408,0.3434471422211568,0.3433381088825215,0.3441868330076657,0.345706184442726,0.3465544030571537,0.3484855273770051,0.3486662971976579,0.3508143577945675,0.3515558093063088,0.3553459119496855,0.356622539749247,0.357764073371284,0.3605751729159082,0.3613614675007952,0.3619372355875481,0.3639849681724058,0.3676609401548046,0.3686265231278836,0.3681630151677647,0.3778764634638676,0.3850999726102437,0.3880712625871417,0.0,1.9442479832189463,61.777791261939406,197.2406113760676,304.7701693328797,fqhc7_100Compliance_baseline_low_initial_treat_cost,88 -100000,95799,42958,403.65765822190207,6998,71.83791062537186,5470,56.51415985553085,2216,22.76641718598315,77.41775944651599,79.74481303568449,63.37436231324406,65.09463094666036,77.15221230513986,79.47820419026671,63.27860970815281,65.00029818988266,0.2655471413761319,266.6088454177782,0.0957526050912562,94.33275677770324,104.66324,73.62590875241364,109252.95671144791,76854.5692047032,295.41014,187.47053464331907,307789.41325066023,195116.41524788263,311.11244,150.25055979686172,320458.282445537,153552.38573991143,3639.57094,1629.7850365694835,3765035.136066138,1667374.240106124,1337.52087,582.145486082331,1383684.8088184637,595295.9653685448,2183.02856,895.1152971652172,2246596.624181881,910423.3603695156,0.38255,100000,0,475742,4966.043486883997,0,0.0,0,0.0,25126,261.6833161097715,0,0.0,28807,296.34964874372383,1918895,0,68823,0,0,0,0,0,55,0.5741187277528993,0,0.0,0,0.0,0,0.0,0.06998,0.1829303359038034,0.3166619034009717,0.02216,0.3398416166029492,0.6601583833970508,25.134962806657107,4.532109843578676,0.3345521023765996,0.19981718464351,0.2303473491773309,0.2352833638025594,11.276896664687188,5.732649141668472,23.45938208457731,12824.337902722242,61.32528238005329,12.813737350798478,20.521133613489035,13.918624124048234,14.071787291717554,0.5455210237659963,0.7813357731015553,0.6994535519125683,0.5555555555555556,0.1165501165501165,0.7209821428571429,0.9501385041551248,0.8658008658008658,0.7007299270072993,0.1376518218623481,0.4883664566165778,0.6980874316939891,0.6432748538011696,0.5152129817444219,0.1115384615384615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099069451898,0.0047236272591811,0.0070014510253574,0.0093640186061627,0.011958024892215,0.0142208558980414,0.0161859137702578,0.0183106066791867,0.0205339438663913,0.0228026364269046,0.025020500205002,0.0272126301094253,0.0292654345099812,0.0315437278015133,0.0336347607312621,0.0358087172071885,0.0378664790073373,0.0399340652505209,0.0419891339351568,0.0439847588906471,0.0591457307403388,0.0731227982145283,0.0872062553717795,0.0998687043747702,0.1119700065294774,0.1276633954132026,0.1402999618692539,0.1522737419478283,0.1639515655838267,0.1748197817028888,0.1886828974535443,0.2018083026368379,0.2133783549031529,0.2244057952026901,0.2349361192586977,0.2460289367727091,0.256027285798678,0.2660333075048569,0.2748020704731054,0.2826333062699402,0.2903777290054291,0.2976266912597331,0.3043226712951483,0.310431473903367,0.3169157608695652,0.3226449699043586,0.3281853281853282,0.3332782719186785,0.338566588210951,0.3437569977738846,0.344304375873562,0.3446701415152723,0.3453524061611241,0.3455173011380047,0.3448332219003046,0.344983987373776,0.3441195560973293,0.3446476052916653,0.3463028379323879,0.347824535103687,0.3475098873498153,0.3490244046797009,0.3489862600536193,0.34993970791836,0.3504757316632542,0.3514169406607171,0.3532079993153225,0.3550254893322424,0.3574087078651685,0.360338189179534,0.3625370750627424,0.3626724918749001,0.3619686234817814,0.3623940758836552,0.3656015928700104,0.3677527551509343,0.3718389010302841,0.3718788374948833,0.3685510428100988,0.3755795981452859,0.0,2.281327504991894,59.034669670882046,202.94563692763137,316.44902595746544,fqhc7_100Compliance_baseline_low_initial_treat_cost,89 -100000,95718,42848,404.4066946655801,6821,70.05996782214422,5359,55.370985603543744,2169,22.284209866482797,77.3893283971574,79.75028112706747,63.35181630130408,65.09381713142034,77.12569919829988,79.48829565457721,63.25665356254908,65.00203521766744,0.2636291988575152,261.9854724902524,0.0951627387549933,91.78191375289656,103.9082,73.07226267264527,108556.59332622914,76341.19253708316,293.55046,186.41375999978465,306056.3843791136,194126.86224094173,307.00551,147.05791193577326,317053.29196180444,150763.88813818817,3533.46692,1583.3380767979666,3651998.976159134,1614629.9931026204,1299.11096,566.5476492282392,1338416.8181533257,573084.6941430565,2127.6594,870.8075838432319,2187318.456298711,878492.6991818318,0.38181,100000,0,472310,4934.390605737688,0,0.0,0,0.0,25025,260.7868948369168,0,0.0,28422,293.2363818717482,1921954,0,68953,0,0,0,0,0,57,0.5954992791324516,0,0.0,0,0.0,0,0.0,0.06821,0.1786490662895157,0.3179885647265796,0.02169,0.3264767199444058,0.6735232800555941,25.061581453043768,4.635006174984604,0.335137152453816,0.2022765441313677,0.2317596566523605,0.2308266467624556,11.60517037726382,6.004267708165096,22.85609588813836,12770.850348756325,60.35739089733555,12.836984263135855,20.146437370976138,13.937142651530827,13.436826611692732,0.5594327299869378,0.783210332103321,0.7026726057906458,0.6014492753623188,0.1131770412287793,0.7305071915215746,0.93368700265252,0.8735083532219571,0.7301038062283737,0.1525423728813559,0.5034670629024269,0.7029702970297029,0.6506899055918663,0.5624344176285414,0.1038961038961039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078855950656,0.0042567423758703,0.006573141413834,0.0088035498512433,0.0108271318775161,0.0132117338110457,0.0155103538235773,0.0175710699781637,0.0197921669204123,0.021999611169663,0.0239883593437785,0.026162701221952,0.0281240045623156,0.0304069007401002,0.0323515459026875,0.0343501984126984,0.0364522941858539,0.0385560914890306,0.040433228005987,0.042303845993583,0.0568567460607516,0.0704726428025824,0.0841173447447636,0.0977635715562471,0.1101600219265881,0.1257402707275803,0.13882789710952,0.1506680151168361,0.1623703355518284,0.1734986007312653,0.1866096712715213,0.1990719709260821,0.210604693631314,0.2226401067063171,0.2333832038899034,0.244705830232146,0.2551697970024663,0.2648583606041181,0.274916896406975,0.2829214100831482,0.2899988437969708,0.2979827493513475,0.3051664834580334,0.3119665792844232,0.3176666181253337,0.3236210101308517,0.3291639565717716,0.3345959756454094,0.3396966324127041,0.3443061671105017,0.3444734224181969,0.3448090962836677,0.3446869550542836,0.3454230185680225,0.3459899321384553,0.3453318851443345,0.3441900156450007,0.3454292267365662,0.3463552772991692,0.3470494816295212,0.3471720029226071,0.3478071736465377,0.3499066440094824,0.3511243504748253,0.3526308181555362,0.3531143355823586,0.354881003277754,0.3565149136577708,0.3576888016268144,0.3606518377542524,0.3626403725006847,0.3640104751215862,0.3662882871456655,0.366714972160781,0.3697931425332955,0.3756525866160418,0.3801285976729945,0.3755052546483428,0.3742279618192027,0.3768059351815697,0.0,2.3969169050210724,58.07814359870584,204.91914859470916,303.5420445666688,fqhc7_100Compliance_baseline_low_initial_treat_cost,90 -100000,95674,42966,405.27206973681456,6870,70.55208311557999,5351,55.36509396492254,2139,21.95998912975312,77.35982293729873,79.73697958821252,63.33991942654043,65.09047062659633,77.10538430243997,79.48256710264644,63.24718585010974,65.00049711842244,0.2544386348587579,254.41248556607832,0.092733576430696,89.97350817388394,104.2371,73.31192521603293,108950.2895248448,76626.8006104406,292.38531,185.97670540557135,305034.962476744,193816.1393648572,309.21196,149.05449029952484,319625.43637769925,153007.9912557348,3520.06497,1578.9822842405204,3642395.5306561855,1613757.0518509285,1291.66225,557.3512268962554,1336027.060643435,568601.020569864,2101.20788,861.3273851546637,2160110.583857683,868438.7812468809,0.38185,100000,0,473805,4952.285887492944,0,0.0,0,0.0,24922,259.9034220373351,0,0.0,28617,295.72297593912657,1918528,0,68784,0,0,0,0,0,55,0.5539645044630724,0,0.0,0,0.0,0,0.0,0.0687,0.1799135786303522,0.311353711790393,0.02139,0.3284429065743944,0.6715570934256055,25.01704938969093,4.54843373626049,0.3434871986544571,0.2104279573911418,0.2188376004485143,0.2272472435058867,11.30054161671219,5.728691861011034,22.50699878930355,12784.656073674794,60.15320518090135,13.225961833572926,20.762732871447405,12.961037916264493,13.203472559616538,0.5511119416931415,0.7548845470692718,0.690968443960827,0.5892399658411615,0.1143092105263157,0.7303625377643505,0.9041095890410958,0.8966244725738397,0.7290836653386454,0.1239316239316239,0.4921777998510057,0.683311432325887,0.6195014662756598,0.5510869565217391,0.1120162932790224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304289707133,0.0046827013713625,0.0070004565515142,0.0094655806300907,0.011479176834228,0.013344190544048,0.015294633122408,0.0175896828959719,0.0197654701832519,0.0220353547753498,0.024176859876657,0.0263657348037958,0.028480687401073,0.0304771318547805,0.0325838060856111,0.0349125635619496,0.0369062901155327,0.0388209548108736,0.040815053539869,0.0429168447052202,0.0578771416631842,0.0719543479398984,0.085120228386704,0.098126071905809,0.1103669405448734,0.1257565497100774,0.1386993026292046,0.1512259548814519,0.1630303483810277,0.1731743442235865,0.1874097541001271,0.2008316098363851,0.2126666303933837,0.2239877434887283,0.2342681597463086,0.2450240903804618,0.2548262548262548,0.2644304807724733,0.2735539907700332,0.28220886981402,0.2899216021831132,0.2972694848856925,0.3040572510054412,0.3108968985750209,0.3174429888403687,0.3233936768524558,0.3286512290523737,0.3350404107151934,0.3406921704042834,0.3449758619779988,0.3444673040461495,0.3452012596779295,0.3454960412498943,0.3458516293043679,0.3459482733022537,0.3447056121277084,0.3437811812033767,0.3440535077484347,0.3454570361998698,0.3460416331060159,0.3481354913815764,0.3492751901140684,0.3504769107945712,0.3504382720200865,0.3513389736543977,0.3510552265671875,0.3528959288909148,0.3559562016235605,0.3592147773563702,0.3624313350847862,0.362962962962963,0.3637675736355375,0.3662231841619454,0.3698714494650142,0.3695775715097556,0.3627862366622707,0.3635943279901356,0.3712489862124898,0.3823449769834822,0.3890379455730164,0.0,2.186509698801053,58.282464218717216,202.29295667666293,304.41963288863536,fqhc7_100Compliance_baseline_low_initial_treat_cost,91 -100000,95851,42870,402.2597573316919,6749,69.11769308614412,5314,54.83510865822996,2126,21.7525117108846,77.34109898624328,79.63082879484128,63.34986309044478,65.04375789002867,77.07942325033464,79.37067584808314,63.25360034820464,64.95066319405967,0.2616757359086392,260.15294675814005,0.0962627422401425,93.09469596900044,104.20586,73.38133459963045,108716.5079133238,76557.71416013442,294.07238,187.23911917753003,306215.1359923214,194757.4977595748,307.00112,148.3288440166515,315957.2670081689,151569.46459666186,3519.39467,1594.2660477692164,3636639.555142878,1628179.9436304427,1291.50324,563.4311885099507,1334468.2684583364,574880.9386547355,2090.96374,869.634806392505,2143302.8137421627,876713.9131823431,0.38188,100000,0,473663,4941.659450605627,0,0.0,0,0.0,25052,260.73802046927,0,0.0,28435,292.42261426589187,1916911,0,68806,0,0,0,0,0,59,0.605105841357941,0,0.0,1,0.0104328593337576,0,0.0,0.06749,0.1767309102335812,0.3150096310564528,0.02126,0.3355411499436302,0.6644588500563697,24.745474710094115,4.475237926343074,0.329318780579601,0.2149040270982311,0.2265713210387655,0.2292058712834023,11.35424313460319,5.851504476663479,22.52647706207481,12749.40700602365,59.93651554274713,13.524192748919388,19.711620942496086,13.33841615637992,13.362285694951728,0.5545728264960482,0.7845884413309983,0.6925714285714286,0.5872093023255814,0.1083743842364532,0.7236363636363636,0.9293193717277488,0.8755364806866953,0.7453874538745388,0.1171875,0.4955572480324955,0.7118421052631579,0.6261682242990654,0.5412647374062165,0.106029106029106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021669788871449,0.0042253092987202,0.0065524551420543,0.0088330253619509,0.0110788120261012,0.0134739070259708,0.0159336573041148,0.0180260137719969,0.0203766878434416,0.0227400595353785,0.0249828428610937,0.0272709557654636,0.0293232542136129,0.0313496717904397,0.033416109388041,0.035565738819911,0.0376065017784763,0.039723160446756,0.042016196013289,0.0440097799511002,0.0588443851215366,0.0729910224386777,0.0861754724096032,0.0990779054380474,0.1116154170176916,0.1269395299709532,0.1393473884945439,0.1509680711939013,0.1624690514812601,0.17368516950515,0.1869652715747785,0.1988255396461478,0.2103277708322009,0.2208654014343187,0.2314895302648518,0.2421747753537278,0.2527673629708981,0.2623673818390468,0.2717192695742966,0.2797045012026113,0.2880975519459484,0.2956586826347305,0.3028632276384287,0.3086767402010713,0.3154595592701474,0.3211779649520896,0.327090870397957,0.3324934463363111,0.3383561821171049,0.3441523286368858,0.3445367963035308,0.3447877085742607,0.3444297119643411,0.3439302170574086,0.3439628067770344,0.3431365024789329,0.3420405313189342,0.3438364738437212,0.3446818743987907,0.3460328305075603,0.3472342835567302,0.3475257773000517,0.3489633914622302,0.3506305981093338,0.3522114871097733,0.3523100791501223,0.353847920314608,0.3560687773618425,0.3593237090113303,0.3605784595717481,0.3636613776024947,0.3629994116703214,0.3647118687189924,0.3669759950916481,0.3740093573952067,0.3762936221419976,0.3789032157837502,0.3739272578667756,0.3803596127247579,0.3883495145631068,0.0,2.346944506151234,60.33603785194661,193.8862286499323,303.238100611511,fqhc7_100Compliance_baseline_low_initial_treat_cost,92 -100000,95658,42892,404.20038052227727,6943,71.64063643396265,5348,55.49980137573439,2169,22.371364653243848,77.31769350596971,79.74012879280806,63.289715480586615,65.08125143607965,77.05384131696547,79.47430190044474,63.19401427503492,64.9871977067103,0.2638521890042398,265.8268923633216,0.0957012055516983,94.05372936934953,104.3416,73.39522392803477,109077.75617303308,76726.69711684833,294.01866,186.66289277482096,306918.95084572124,194690.41593066577,309.81095,148.50954077249713,321809.69704572536,153634.21021437034,3529.98842,1592.9011862891728,3663914.455664973,1638910.8955721548,1309.71281,565.6876272365604,1359801.0934788515,582031.0761612466,2131.94806,877.6467461589067,2200929.603378704,893648.9187472427,0.38177,100000,0,474280,4958.079826046959,0,0.0,0,0.0,25058,261.4940726337577,0,0.0,28711,298.0409375065337,1914570,0,68697,0,0,0,0,0,41,0.4286102573752326,0,0.0,0,0.0,0,0.0,0.06943,0.1818634256227571,0.312400979403716,0.02169,0.3215017064846416,0.6784982935153584,24.98356911148396,4.469263026258287,0.3296559461480927,0.2054973821989529,0.2363500373971578,0.2284966342557965,11.319786268134187,5.911732762945675,23.059507447928787,12758.73460776113,60.58073955064851,12.870038090636784,20.122805490250144,14.1333314972819,13.454564472479683,0.5648840688107704,0.7716105550500455,0.7311401020986954,0.5822784810126582,0.1211129296235679,0.7342922028766087,0.927927927927928,0.8846153846153846,0.7659574468085106,0.1302521008403361,0.509312143034517,0.7036553524804178,0.6756756756756757,0.5295315682281059,0.1189024390243902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021679228462598,0.0047053096986168,0.0068832487309644,0.0090956208904562,0.0111204940633044,0.0132844335778321,0.0153938750943627,0.0173683834121721,0.0194242321901896,0.0216281596588695,0.0236308576707899,0.0261680513284527,0.0283595922150139,0.0303689873221856,0.0325047010931333,0.0347899872719558,0.0370043961512939,0.0391810617943098,0.0412321781663024,0.0433522093253657,0.0577397374801438,0.0722264135127205,0.0858445282384698,0.0988024898101045,0.1106922223982258,0.126102750389206,0.1388463827254952,0.1516382085225213,0.1635986351627429,0.1747843924862258,0.1872472146424064,0.2004311979285165,0.2128333859708352,0.2242600764286574,0.2342765216624796,0.2450398695782364,0.2550421811274372,0.264557831555951,0.2737841151627991,0.2827481895682464,0.2905339693419164,0.2980996512906925,0.3049054905490549,0.3109106611649553,0.3169450086969214,0.3223718280683583,0.3277877922988333,0.3331636419171736,0.3375665763862791,0.3424516333650491,0.3432366824005394,0.3436828475398094,0.3438839990972692,0.3429604454407404,0.3436366339577758,0.3430403829630539,0.3416357113375877,0.3428064235112346,0.3440257164352643,0.3448632641775336,0.3451483110320951,0.3455550074000986,0.3461939520333681,0.3477902337917047,0.3488338646659795,0.3515637196232502,0.3515802637562528,0.3554164057608015,0.3577156062887356,0.3589051963506545,0.3600877593929975,0.3622076607532896,0.3630557136533232,0.3683608058608059,0.3652502360717658,0.3687901117185643,0.3657257442542033,0.3687714343352834,0.3631331303625795,0.3601547388781431,0.0,1.539274957481362,58.94768019931495,211.19210283283897,298.11767527614785,fqhc7_100Compliance_baseline_low_initial_treat_cost,93 -100000,95715,42813,401.9537167633077,6794,69.74873321840882,5252,54.348848142924304,2180,22.410280520294624,77.34880342590687,79.70633838873283,63.338894218876014,65.07705634936818,77.07868119863973,79.43652273044766,63.23929504256179,64.98027394927075,0.2701222272671373,269.81565828516807,0.0995991763142214,96.78240009742468,104.49802,73.5436490417759,109176.22107297707,76836.07484905803,295.4468,187.94269227081344,308177.13002141775,195860.24371395644,303.94675,146.6427840697914,314636.21167006216,150921.58767426354,3502.30753,1586.8641025976406,3626308.154416758,1625113.5376875512,1306.74883,574.0699336215965,1350352.1809538736,584872.4793622697,2152.93694,901.9297219286486,2214901.823120723,911656.3683770868,0.38051,100000,0,474991,4962.55550331714,0,0.0,0,0.0,25217,262.9263960716711,0,0.0,28013,289.72470354698845,1915237,0,68676,0,0,0,0,0,57,0.595517943895941,0,0.0,0,0.0,0,0.0,0.06794,0.1785498410028645,0.3208713570797762,0.0218,0.318105616093881,0.681894383906119,25.22745432957793,4.549705927578692,0.3196877380045697,0.2088728103579588,0.2273419649657273,0.2440974866717441,11.066473966572898,5.530833488664014,23.335375168743816,12771.58143210446,59.3220732067245,12.86006339272459,18.88345955313215,13.295453322213248,14.283096938654516,0.5392231530845393,0.7584320875113947,0.6885050625372245,0.5711892797319933,0.126365054602184,0.6871678056188307,0.927536231884058,0.8436724565756824,0.7406015037593985,0.1584158415841584,0.489707750952986,0.6808510638297872,0.6394984326018809,0.5226293103448276,0.1164453524004085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366439500572,0.0046121720796334,0.0071026330475369,0.0095084265382622,0.0116825280624694,0.0137629154578307,0.0159519708073837,0.0183219352863121,0.0204486229625466,0.0226705150249733,0.0249269717624148,0.0273415850729724,0.0294042050069398,0.0317296902185662,0.0337112264160675,0.0358135545934551,0.0379888383843613,0.0402568971062761,0.0427011852776044,0.0445632241393681,0.05923388612724,0.0736189898059573,0.0869373622914699,0.0989236450869606,0.1110864978902953,0.1276406681406099,0.1406256632284901,0.1532744908062987,0.1640775246805419,0.1752861541102136,0.1889495739477965,0.201891447368421,0.2134450125095181,0.2239759365600218,0.2334202621067573,0.2441521601826099,0.2544766032551021,0.2641124946522258,0.2732361423348547,0.2814372629673339,0.2889326232924288,0.2962057305986826,0.3035042026755061,0.3095674684500054,0.3153803172752229,0.3211231857273108,0.3270555868192334,0.332527883404764,0.3381373145141467,0.3434450013189132,0.3439065783093583,0.3432147381175304,0.3435662412747655,0.3429286789394465,0.3429336905559276,0.3416531156996901,0.3407302836114459,0.3406965468500896,0.3411454769399206,0.3428361919410512,0.3440884391980513,0.3460618638205356,0.3471322218727063,0.3489107046799354,0.3481961994791164,0.3489654091336607,0.3492331463889206,0.3515057768798535,0.3541241107276185,0.3548708545918367,0.35609465284784,0.3578415564871546,0.3628273256930661,0.363840843868766,0.3663091361808083,0.3721184178597427,0.3761467889908257,0.3734509556815795,0.3681209010550328,0.3631662688941925,0.0,2.071475942145773,58.0725235321686,203.9016950890535,291.7543265956384,fqhc7_100Compliance_baseline_low_initial_treat_cost,94 -100000,95631,42778,403.4988654306658,6656,68.32512469805816,5163,53.34044399828508,2121,21.750269264150745,77.26744378178137,79.68310615956061,63.28338998351626,65.0697850386531,77.00703306035521,79.42549825823033,63.18835113179559,64.97868735826137,0.2604107214261546,257.60790133027456,0.0950388517206661,91.0976803917265,103.90358,73.06927450513874,108649.60107078248,76406.74029254941,292.32385,186.0718103956132,304984.5552174504,193882.6407337419,302.03199,145.25748513619942,312254.9277953802,149097.13149704854,3409.60565,1542.2382962192848,3520355.784212232,1568373.342161548,1262.80882,556.7343996548169,1299597.93372442,561325.597333852,2094.0206,868.5602273297316,2148066.442889858,871782.8267571804,0.38177,100000,0,472289,4938.618230490113,0,0.0,0,0.0,24860,259.2360217920967,0,0.0,27966,288.8498499440558,1917580,0,68854,0,0,0,0,0,48,0.5019292907111711,0,0.0,1,0.0104568602231493,0,0.0,0.06656,0.1743458103046336,0.3186598557692308,0.02121,0.322700615076527,0.6772993849234731,25.06783622787593,4.554340690923909,0.3164826651171799,0.2138291690877397,0.2359093550261476,0.2337788107689327,11.096131120467469,5.434782424487307,22.540733306033097,12737.79560676213,58.473911802105846,13.058073998960896,18.599058934762507,13.436784333864985,13.379994534517474,0.5489056749951579,0.7771739130434783,0.6921664626682986,0.5681444991789819,0.1267605633802817,0.7168674698795181,0.9268929503916448,0.8481308411214953,0.7222222222222222,0.1578947368421052,0.4907431551499348,0.6976421636615812,0.6368159203980099,0.5242616033755274,0.11875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203031592599,0.0045325491786655,0.0066703216374269,0.0089322006340947,0.0112208669467644,0.0133111989245121,0.0153761445439158,0.0176928809890861,0.0200820049284757,0.0224984895187965,0.0246141223526998,0.0264412211858487,0.028361863221134,0.0304273011097258,0.0324105613013769,0.0348503018774294,0.0369330833842552,0.0388300135972514,0.040723558292419,0.0428091832266405,0.0572829029190138,0.0714300676595655,0.0852945191812902,0.0981098299373453,0.1102806106289985,0.1261079049081378,0.1385737955646189,0.15132202956316,0.1628710488313633,0.1740358489147594,0.1871056803597812,0.2002534854245881,0.2118197649107531,0.222613719675665,0.2335061703931217,0.2445133772780147,0.2549439757153698,0.2647839783978398,0.273259840374201,0.2807288980574179,0.2882694110973477,0.2961165048543689,0.3040724517580206,0.3104606525911708,0.3165574348560936,0.3225070029739502,0.3280035059162336,0.3337363658347227,0.3391859847355941,0.3442191795305561,0.344100384537543,0.3441251464406312,0.3438337990797979,0.3434960821517026,0.3429827830364463,0.3426126499823324,0.3418761320664781,0.342262443438914,0.3436076577964999,0.3447016488533219,0.3458804948670703,0.3467777203514491,0.3459649714418193,0.346747556454331,0.347730352303523,0.3497465794795031,0.3505405947976713,0.3524924829878145,0.3531389341071555,0.3548244734202608,0.3582255083179297,0.3577768156726919,0.3607473035439137,0.3606265022873536,0.3615010025780578,0.362714320212509,0.3635938959825599,0.3632796365138372,0.3671897289586305,0.3649899396378269,0.0,2.269602903154475,58.63908726863277,195.22233543432884,288.38362781088284,fqhc7_100Compliance_baseline_low_initial_treat_cost,95 -100000,95823,42821,402.283376642351,6945,71.19376350145582,5444,56.07213299520992,2163,21.988457885893784,77.40182060844235,79.71386311550013,63.36325590393732,65.07496691505158,77.1306991500186,79.44984817873252,63.2617061173066,64.9797918198065,0.2711214584237496,264.0149367676088,0.10154978663072,95.17509524508228,104.11676,73.2500170488894,108654.37316719368,76442.216980188,291.91329,185.0139516111819,303854.5130083592,192296.8251102112,307.91816,148.05365658289378,317212.5168279014,151218.30881023253,3570.52103,1600.5060691465228,3677399.100424741,1621668.2161792517,1285.08644,559.8203347088427,1316917.8172255096,560076.203561378,2124.75858,892.7771730858128,2162908.967575634,885889.1935063694,0.38011,100000,0,473258,4938.83514396335,0,0.0,0,0.0,24900,259.01923337820773,0,0.0,28452,292.7272158041389,1921163,0,69002,0,0,0,0,0,53,0.5531031172056814,0,0.0,0,0.0,0,0.0,0.06945,0.1827102680802925,0.3114470842332613,0.02163,0.3217700081944823,0.6782299918055176,25.34454823747914,4.492175380262377,0.3234753857457751,0.216017634092579,0.2349375459221161,0.2255694342395297,11.044139400778326,5.584368020646606,22.95221382507187,12749.613005196075,61.01227458847869,13.84229053772425,19.79510002478254,13.90559273809924,13.469291287872664,0.5530859662013226,0.7789115646258503,0.6978989210675752,0.5691946833463644,0.1123778501628664,0.7025222551928784,0.9097938144329896,0.819634703196347,0.7528089887640449,0.1333333333333333,0.50390625,0.7144670050761421,0.6575963718820862,0.5207509881422925,0.1068859198355601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.004469488897222,0.0067666274398409,0.0090801060361376,0.0113154603958886,0.0136508001140111,0.0156245222443051,0.0176464584609103,0.0201770345687593,0.0223329887516248,0.0244579980523807,0.0266966375169355,0.0288019735827722,0.0310640225695516,0.0333144242174204,0.0354618722876627,0.0376469857568731,0.0398278722521775,0.0420864579654749,0.0437624236369123,0.0585732165206508,0.0721977125891233,0.0858056064972491,0.098550267885282,0.1108817240543928,0.1264999154977184,0.1385740014832079,0.15083448495801,0.1620790863973531,0.1729745364171014,0.1854306060540866,0.1983183468787826,0.2109272278787747,0.2220206347818483,0.2324668470013855,0.2432585078461555,0.2541756390373436,0.2633414326853852,0.2721164867840159,0.2808291342189647,0.2884136957452471,0.2956174926022527,0.3029284742353428,0.3099818990422076,0.3160587134559771,0.3224041021595503,0.3281805437340409,0.3332951639375549,0.3383449883449883,0.3430603948896631,0.3436069370388323,0.3438742792662621,0.3435612194606773,0.3438533169710532,0.3440863407609744,0.343912750444213,0.3433726359104218,0.3440509194704637,0.344497771097713,0.3455155430243763,0.3465845255037076,0.3478758912171903,0.3487744123249534,0.3503310073358383,0.350416676673311,0.3506652433150207,0.3520737851917219,0.3553374310085299,0.3589429042094564,0.3614596569250318,0.3641761052246985,0.3680870353581142,0.3686635944700461,0.3679914562514303,0.3700271459327904,0.3738151658767772,0.3761299218630305,0.3792472024415056,0.3801925722145804,0.3791250959324635,0.0,2.741920366299858,58.7041192386508,200.01426995257955,315.3757397220007,fqhc7_100Compliance_baseline_low_initial_treat_cost,96 -100000,95705,42730,402.4241157724257,6727,69.22313358758686,5252,54.38587325636069,2151,22.18274907267123,77.32145341825886,79.70852898119904,63.3143933609397,65.08013697733578,77.05447073224795,79.44002014443072,63.21655868244417,64.98393386164071,0.2669826860109054,268.50883676831927,0.0978346784955235,96.20311569507578,104.67534,73.64782157960987,109372.90632673318,76952.950817209,293.4211,186.79830247433387,306096.2018703307,194688.44101596976,306.25726,147.37647475349252,316830.2074081814,151531.73831980833,3467.47813,1561.4840322289288,3592698.4483569297,1601348.362214348,1261.24008,552.5376016147181,1306587.4928164673,566150.1825950374,2115.18532,875.7371627777986,2182772.039078418,890964.808790991,0.38059,100000,0,475797,4971.495742124236,0,0.0,0,0.0,25089,261.63732302387547,0,0.0,28412,293.7255106838723,1915286,0,68666,0,0,0,0,0,41,0.4283997701269526,0,0.0,1,0.0104487748811451,0,0.0,0.06727,0.1767518852308258,0.3197562063326891,0.02151,0.326643109540636,0.673356890459364,25.213643019617287,4.495585132905572,0.3204493526275704,0.2229626808834729,0.2225818735719726,0.234006092916984,11.282164495906027,5.742159056533444,22.738871551478915,12722.966790331882,59.29023347005737,13.847444728298653,19.07475777420345,13.050350095541573,13.317680872013709,0.5514089870525514,0.7924850555081128,0.6934046345811051,0.5739948674080411,0.1057770545158665,0.7254901960784313,0.9338422391857506,0.8644859813084113,0.6988847583643123,0.1567796610169491,0.4926133469179827,0.7210796915167095,0.6350597609561753,0.5366666666666666,0.093655589123867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020669530680068,0.0044011763512828,0.0067199935033295,0.0086482860946535,0.0111102067393781,0.0131611115638497,0.0155317825346482,0.0178170308352052,0.0198836626831188,0.0219153683951931,0.024072422313126,0.0262890356236971,0.0285664321277208,0.0309543927621952,0.0332266721717588,0.0352767237725002,0.0371847325081568,0.0391452796313784,0.04110942407288,0.0430754158502522,0.0573201173976165,0.0713179106039987,0.0841178384391759,0.0970786942520994,0.1092225070954536,0.1247446576560366,0.1379152956161766,0.1502172894209876,0.1611841402158811,0.1720901797588914,0.1855279175239962,0.1986187187425577,0.2111903933170901,0.2212036013959238,0.2324701326703483,0.2433611658656508,0.2534672245467224,0.2623619887117447,0.2713446445583632,0.2801401788884181,0.2876839085777736,0.2950351956221791,0.3018821022727272,0.3085839636551071,0.3156928984591455,0.3222437089681845,0.3279068021422494,0.3335537862793478,0.3391020914981956,0.3442255452699317,0.3443759422786991,0.3448821062762081,0.3451742344244984,0.344865942447706,0.3443495850313829,0.3433847664038774,0.3433032176256142,0.3447119730462651,0.3458532163442626,0.3459048640915593,0.3471943229391556,0.3482155242454868,0.34929074288116,0.3493301564466822,0.350722253139442,0.3519398986051643,0.3539581175929122,0.354964494040071,0.3586387434554974,0.3587560458887956,0.3595139844108207,0.3618950531172872,0.3667519181585678,0.367422776186421,0.3679335370511841,0.3722336437295924,0.375487291439264,0.3756428718370705,0.3802895322939866,0.3847641144624903,0.0,1.9297862926971128,58.59559587589271,197.0645438825902,299.2809780083196,fqhc7_100Compliance_baseline_low_initial_treat_cost,97 -100000,95713,42724,402.1083865305654,6701,68.63226520953268,5193,53.764901319569965,2125,21.940593231849384,77.3455376358958,79.73417500052958,63.32130932583449,65.08810525797335,77.08578957708245,79.46941289721782,63.22661423269272,64.99287944648964,0.2597480588133436,264.7621033117531,0.0946950931417731,95.225811483715,104.64542,73.63325751331487,109332.50446647793,76931.30244931708,293.54531,186.27794830956384,306180.6546655104,194118.67182550053,305.49705,147.0536567858286,315646.0250958595,150916.50754894203,3436.45174,1546.8532418957209,3561576.3375925943,1588030.5545665934,1271.16889,553.6292031948755,1316421.1862547407,566794.9211631165,2091.0799,862.7675853444346,2160865.734017323,882709.9257212859,0.37917,100000,0,475661,4969.659293930814,0,0.0,0,0.0,24988,260.53932067744194,0,0.0,28165,290.7233082235433,1918139,0,68739,0,0,0,0,0,55,0.5746345846436743,0,0.0,0,0.0,0,0.0,0.06701,0.1767281166758973,0.3171168482316072,0.02125,0.3265998022319537,0.6734001977680464,25.20256262452904,4.589556981944171,0.324475255151165,0.2091276718659734,0.2295397650683612,0.2368573079145003,11.257330884056516,5.630659814368411,22.50023535893936,12665.70724465659,58.33856047466901,12.737298898810046,18.823253790743607,13.439663936310245,13.338343848805112,0.55420758713653,0.7845303867403315,0.6913946587537092,0.6015100671140939,0.1170731707317073,0.7204049844236761,0.9269005847953216,0.8752997601918465,0.7046979865771812,0.145374449339207,0.4996162701458173,0.7190860215053764,0.6309148264984227,0.5671140939597316,0.1106679960119641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025329537280012,0.0046959784978954,0.0071171125437839,0.0094310859976828,0.0116383169203222,0.013750254634345,0.0160816626216067,0.0183511534573082,0.0204720222513089,0.0227440298201777,0.0250653812624993,0.0270642248949784,0.029161866359447,0.0313150464728067,0.0335393855584565,0.0355425983934497,0.0375185158329794,0.0395105548290678,0.0415748097000956,0.0434465513648676,0.0587436687379249,0.0719391332558894,0.0850483276837344,0.0974549968963376,0.1091446049994726,0.1246232112449629,0.1367909513401099,0.1482917270171253,0.1597096770745368,0.1706468889866801,0.1837308815762527,0.19623152309275,0.2087092806843783,0.2198577680525164,0.2294188861985472,0.2399929094514796,0.2508900570306135,0.2609414729641547,0.2697229596351507,0.2782719186785261,0.2861935334605818,0.2936548757393682,0.3007000449353167,0.3075495642179868,0.3145245432266518,0.3199990156148101,0.3268180511641276,0.332000203143648,0.3364070773601963,0.3402438863968218,0.3411831046427325,0.3423524732922832,0.3419968794366118,0.3428315980734289,0.3428618026005604,0.3434610505723586,0.3420273799161193,0.3428331798447572,0.3436313250538848,0.3434708672693099,0.3454278838923146,0.3458003295416195,0.347023408555069,0.3461633413380613,0.3476843579465881,0.3491947099646458,0.3509323875986729,0.3541581254533413,0.3564687654060145,0.3599553642595249,0.3633167435276928,0.3651335074348452,0.3653239045334007,0.3703986558729188,0.3743949890860776,0.3761280231019131,0.3744193248683803,0.3826247689463956,0.3846365638766519,0.3862310385064177,0.0,1.8607390510327055,56.684190941325866,191.9161640836985,301.79144473869803,fqhc7_100Compliance_baseline_low_initial_treat_cost,98 -100000,95613,42894,404.5474987710876,6802,69.85451769110895,5288,54.75196887452543,2144,22.109964126217147,77.23812690061078,79.66881772006792,63.25655152000609,65.05407749140895,76.98064186270582,79.40875300390061,63.16225808394283,64.9606584677075,0.2574850379049564,260.06471616730664,0.0942934360632605,93.4190237014434,103.71504,73.02060745007083,108473.55485132776,76370.78017640991,292.10554,185.8739633197733,304938.5020865363,193834.3733364549,307.25304,147.63196989355828,317491.43944861053,151526.7589731891,3524.77395,1588.884792177966,3652017.215232239,1627482.009659133,1296.3807,566.7165097325121,1342590.149875017,579646.3488722,2119.9364,876.2481316144015,2187860.332799933,892586.8162026957,0.38179,100000,0,471432,4930.616129605807,0,0.0,0,0.0,24857,259.3789547446477,0,0.0,28378,292.9308776003263,1914171,0,68709,0,0,0,0,0,59,0.6066120715802245,0,0.0,0,0.0,0,0.0,0.06802,0.1781607690091411,0.315201411349603,0.02144,0.3249057130884201,0.6750942869115798,25.3306729518669,4.586998189478987,0.333018154311649,0.2031013615733737,0.2223903177004538,0.2414901664145234,11.144032238446307,5.578067268675275,22.740608879005222,12807.198661211189,59.69960227446364,12.683255131735514,19.86856935810557,13.186999601176078,13.960778183446475,0.5448184568835098,0.7858472998137802,0.6893810335036911,0.5654761904761905,0.1237274862960062,0.6997725549658832,0.9343283582089552,0.8635346756152126,0.6410256410256411,0.1856060606060606,0.4933232552280171,0.7185385656292287,0.6301369863013698,0.5426356589147286,0.1076011846001974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024120317820658,0.004706216465672,0.007016083177646,0.0091784149700659,0.0113784399934864,0.0137432888128202,0.0159110612473864,0.0180607199771176,0.0202115254792054,0.0224719101123595,0.0246757777230567,0.0268590158544229,0.029085444927029,0.0310505860643485,0.0332727498037919,0.0352313056794313,0.0372052039599854,0.0392138531376276,0.0412316404176252,0.0432401418735656,0.0576219448451776,0.0713597116271271,0.0841159785691774,0.0973629336310213,0.1101595581790726,0.1257718419352447,0.1388508237993562,0.151657909041493,0.1627902000641917,0.1738327193048409,0.1879659499174641,0.2006157448561455,0.2120941381564611,0.2234578722471787,0.2342141802393494,0.2454565627427049,0.255183983894419,0.2640960595298495,0.2730156925176256,0.2817512716583803,0.2901316934501363,0.2978364116094987,0.3053580964813386,0.3125518534995852,0.3186860068259385,0.3245255023183925,0.3301398759448532,0.3360059239588387,0.341089604430174,0.3454569536423841,0.3455061494796594,0.345194353123187,0.3450454397693384,0.3456254624055242,0.3456263788682845,0.3447087953493379,0.3439060859606146,0.3441754542304074,0.3455273377091996,0.3465927441059317,0.3482710614441058,0.3492217898832684,0.3502610746168098,0.3511011235955056,0.3517243045989511,0.3528101080004194,0.3556442122786372,0.3573168802404682,0.3592215864943138,0.3605937599490608,0.3625744388456253,0.368404221298369,0.3693113677965032,0.3735334450708517,0.3776210625293841,0.3799338217915386,0.3799484301531928,0.3821873743466023,0.3831133113311331,0.3742824339839265,0.0,1.9446007694516576,58.385469632052846,202.22548639568151,298.72654146191456,fqhc7_100Compliance_baseline_low_initial_treat_cost,99 -100000,95729,44468,422.254489235237,6143,63.06343950109162,4818,49.84905305602273,1900,19.502971931180728,77.33641368994157,79.71029977412728,63.332022412709286,65.08899907568787,77.1065102606804,79.48194562391457,63.24733677547806,65.00746228216646,0.2299034292611708,228.35415021270933,0.0846856372312245,81.53679352140841,143.56738,101.01878759714585,149972.71464237588,105525.79427043616,371.9996,242.5783189342234,388147.93845125305,252952.4584339368,360.12611,174.5054676912874,373136.2492034807,180025.729341571,3478.73731,1567.7211513598368,3599421.3456737245,1603582.1361946822,1135.20788,493.8806015995335,1173404.3706713745,503631.0865241438,1867.10066,770.9329516437847,1917981.280489716,777857.8454899361,0.38077,100000,0,652579,6816.941574653449,0,0.0,0,0.0,32025,334.0576001002831,0,0.0,33025,341.9235550355692,1669041,0,59913,0,0,0,0,0,63,0.6581077834303085,0,0.0,1,0.0104461552925445,0,0.0,0.06143,0.1613309872101268,0.3092951326713332,0.019,0.3323506594259116,0.6676493405740884,24.780918104754416,4.441852207792953,0.317351598173516,0.2293482772934827,0.2260273972602739,0.2272727272727272,11.280324140542447,5.740152174250658,20.052742555876755,12277.508036822894,54.43748962603031,13.139616874156411,17.351939846722477,12.14982690994758,11.796105995203847,0.5570776255707762,0.7819004524886878,0.6919555264879006,0.5950413223140496,0.1041095890410958,0.7317854283426741,0.927536231884058,0.8641025641025641,0.7276595744680852,0.1047619047619047,0.4959372373213785,0.6946454413892909,0.6330114135206322,0.5585480093676815,0.103954802259887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002715739126,0.0044320936317812,0.0067008477587694,0.0088625091470851,0.0110271304029378,0.0134438718350885,0.0154702780978798,0.0175413518480702,0.0197008577591935,0.0218659787482341,0.023904464148429,0.0259026929355358,0.0277546403414057,0.0295405152080093,0.0316891961613868,0.033831205747067,0.0356721270735394,0.0375769019286433,0.0395888332259338,0.041490015520995,0.0566607144721865,0.0710115510169917,0.0845786796707042,0.0969356110381077,0.1093555663300799,0.1249379062516514,0.1379233582445539,0.1493396005700066,0.1605648535564853,0.1705553413035094,0.1830449380165289,0.1957137605155597,0.2076166675721193,0.2177574380706889,0.2281426468326338,0.2383611015909166,0.247716233679426,0.2572468653094243,0.2658015526718422,0.2728031559087531,0.2795082724835936,0.2865783174732909,0.2937410675265464,0.2994077176189051,0.3049573147070237,0.3101089871331217,0.3153791371490685,0.3197163949632152,0.3235286508860432,0.3283078100061994,0.3272095934105866,0.3260264918899567,0.3253759107115176,0.324682272313231,0.324784290389765,0.3229184233522927,0.3218281512471871,0.3232796149360143,0.3242550135918346,0.3244455564093857,0.3241490478332584,0.3248522230789,0.3261515912897822,0.3279728401679621,0.3290786279175981,0.3301282051282051,0.3306604043759665,0.3330804968237413,0.3350021153574954,0.3374066530889341,0.3423290883177785,0.3437197287697772,0.3462081355062235,0.3482529375386518,0.3489652553635846,0.3519681236416324,0.3526315789473684,0.3531090723751274,0.354218191810937,0.3508171797795515,0.0,1.906346207747166,54.95951364066821,180.02024774150942,270.25515066751643,fqhc7_100Compliance_implementation,0 -100000,95596,44261,418.9296623289677,6263,64.0612577932131,4937,50.90171136867651,1968,20.05314029875727,77.26635035352784,79.70452939122077,63.26822878755484,65.07202486013036,77.01534492095166,79.45929652945524,63.173233397023616,64.98284490438006,0.2510054325761786,245.2328617655297,0.0949953905312241,89.17995575029636,143.7678,101.21424780274272,150391.02054479267,105877.07414823082,371.17035,241.77812115578112,387531.0473241559,252177.86429953243,360.31542,175.2534052094179,372547.1881668689,179868.3075613386,3563.0006,1631.4557410551176,3677115.402318088,1656586.4482354054,1168.48227,527.6732221544623,1199946.8701619315,529636.9370266809,1933.32588,824.0040609932278,1972873.8650152727,819404.4114133775,0.37938,100000,0,653490,6835.955479308757,0,0.0,0,0.0,31977,333.7378132976275,0,0.0,33010,340.98707058872753,1663609,0,59625,0,0,0,0,0,57,0.5962592577095276,0,0.0,0,0.0,0,0.0,0.06263,0.1650851389108545,0.3142264090691362,0.01968,0.3325205729960377,0.6674794270039622,24.70415411535881,4.451579425843516,0.322665586388495,0.2191614340692728,0.2319222199716427,0.2262507595705894,11.356117261456546,5.848885637810212,21.039972391662065,12246.232380273776,55.98596053289058,12.832498831135943,18.053005942781475,12.697893874375993,12.402561884597178,0.5594490581324691,0.7920517560073937,0.6936597614563716,0.5973799126637555,0.1038495971351835,0.7361963190184049,0.9297297297297298,0.8814814814814815,0.7805755395683454,0.1673306772908366,0.4960088081475364,0.7205056179775281,0.6296296296296297,0.538638985005767,0.0854503464203233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025943491831853,0.0049606898300786,0.0070175794936374,0.0091711403936879,0.0115531035605952,0.0138304269392663,0.0162373448726322,0.0185054617168899,0.0206269951706638,0.0228099478424822,0.0247857546056345,0.0270750886570385,0.0290605505342694,0.0312615993731183,0.0335278624180137,0.0353879742971555,0.0373971268061112,0.0394370585791441,0.0410608158039905,0.0429603980016479,0.0569053842132775,0.0707810649647352,0.0845606000126053,0.0974625812363728,0.1091640788389631,0.1241962308922764,0.135890131383137,0.1475206964239993,0.1591393245196167,0.1688606153085677,0.1817397214460639,0.194518231001919,0.2057298474945533,0.215984307193267,0.2251168636443817,0.2343704920215717,0.2446190295254911,0.253962353418269,0.2618381868194321,0.2692718195902909,0.2770387708280225,0.2848891700642016,0.2915575567272943,0.2982089946137882,0.3035112684107466,0.308492907144709,0.3133798844162519,0.3182843380863183,0.3235587705311191,0.3277476264046798,0.3279214217383688,0.3263126015252884,0.326116678647441,0.324840948525159,0.32386152312659,0.3219183329502796,0.320468948035488,0.3211303261441346,0.3222777188601142,0.3229824781200222,0.323812031064894,0.3249692545721426,0.3258552175101448,0.3266958179168068,0.3281581997295731,0.3298248370120179,0.3317391677883101,0.3353988176156302,0.3397883597883598,0.3416660011181215,0.3444302176696543,0.3482966359225889,0.3521314387211368,0.3530663424272361,0.3565956651718983,0.3542009884678748,0.357958872810358,0.3584943639291465,0.3583150984682713,0.3558490566037736,0.0,2.918861860370916,56.54271831496475,185.25040129745557,273.1119025814993,fqhc7_100Compliance_implementation,1 -100000,95701,44512,421.53164543735176,6138,62.9773983552941,4833,49.84273936531489,1940,19.82215441844913,77.34534288058313,79.71280735423242,63.32656324425341,65.07388562782597,77.09914531240095,79.46950039710146,63.235120827318376,64.9865611696603,0.2461975681821826,243.30695713096875,0.0914424169350311,87.3244581656678,143.3718,100.94877055495088,149812.2276674225,105483.50649935828,369.04869,240.5823641617576,384996.969728634,250759.78742307564,358.29405,174.19770528547863,370600.5161910534,179133.56360557178,3504.57889,1591.5343638626728,3616516.107459692,1617535.4007405082,1153.90011,512.9679992100665,1188560.3703200594,518838.347990309,1912.57078,805.3710086135713,1957171.0222463715,806053.7717587689,0.38023,100000,0,651690,6809.646712155568,0,0.0,0,0.0,31818,331.793816156571,0,0.0,32835,339.2545532439578,1667313,0,59802,0,0,0,0,0,61,0.6374019080260395,0,0.0,0,0.0,0,0.0,0.06138,0.1614286089998159,0.3160638644509612,0.0194,0.3371623719341819,0.662837628065818,24.65291086315795,4.35139534108061,0.3217463273329195,0.2257397061866335,0.2213945789364783,0.2311193875439685,10.888366101757804,5.536215597215877,20.79241516946572,12249.86413768144,54.58327156134776,12.981586627260986,17.53282066616817,11.8718614576872,12.197002810231393,0.5574177529484792,0.763519706691109,0.7080385852090032,0.5953271028037384,0.1101163831692032,0.7216981132075472,0.9157894736842104,0.8614609571788413,0.7480916030534351,0.1373390557939914,0.4987363100252738,0.6821378340365682,0.655440414507772,0.5457920792079208,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.0043885431658322,0.0065946998904265,0.0088665447897623,0.0110333746873029,0.0131950030034921,0.0154837262876772,0.0175678572522278,0.0198517761308458,0.0220186303613471,0.024183710082526,0.0261558052126763,0.0283072238965634,0.0307313505104721,0.0327354537761357,0.0348367222469169,0.0369004836521432,0.0388343469146308,0.0408413653992118,0.0427365568987078,0.0563864229765013,0.0705336864029808,0.0836219018237528,0.0958829161537409,0.1077250999799512,0.1230897853786563,0.1351316920921048,0.1469808165482568,0.1582733044054464,0.1686832282146994,0.1826047604167789,0.1946986021028012,0.2064309031556039,0.2166573614897041,0.2259275983215674,0.2364424441291238,0.2461047368186079,0.2557380738073807,0.2646060592301667,0.2719013850542451,0.2800129598130084,0.286522898442251,0.2930022252734245,0.2988376273217495,0.3041085572671169,0.3094718678745301,0.3137846431164409,0.3182072472981564,0.3226776204112837,0.3269919279193584,0.3255923723213443,0.325127837580803,0.3244182596532869,0.3236670191346669,0.3228246787091778,0.3211069691809716,0.3198656931532017,0.3212790754936883,0.3224172337921506,0.323147999500544,0.3242899375070164,0.3255979161733365,0.3270442885561721,0.3280211294402041,0.3297582608276493,0.330513563614527,0.3330014508007851,0.3373040752351097,0.3412559507140857,0.3466629786225155,0.3486351228389445,0.3526854355548486,0.3543762575452716,0.3583555386372288,0.3628775089101482,0.3681539187913125,0.3715763846622033,0.3727822580645161,0.372704850644012,0.3758284600389863,0.0,2.5594993319462507,55.37942487857561,178.84189059362228,268.99997572103234,fqhc7_100Compliance_implementation,2 -100000,95662,44565,421.66168384520495,6183,63.3689448265769,4852,50.134849783613134,1943,19.924316865631077,77.2498286400838,79.64829202827504,63.26585613190741,65.03865601282158,77.00754463343515,79.4087947456378,63.17585101100864,64.95266949106757,0.24228400664866,239.49728263723105,0.0900051208987733,85.986521754009,142.58134,100.3445484856792,149046.53885555392,104894.43570663295,367.63003,239.70027815858248,383712.72814701765,249982.0114137092,358.30174,173.7079634574743,371408.3962283875,179080.5594452135,3485.66438,1568.7477843671695,3601467.500156802,1597731.3295427333,1181.10491,513.876826763555,1219133.678994794,521758.0017470616,1906.46786,795.855928770043,1956026.468190086,799284.016319067,0.38162,100000,0,648097,6774.842675252451,0,0.0,0,0.0,31599,329.69204072672534,0,0.0,32820,339.95734983588045,1666794,0,59876,0,0,0,0,0,57,0.5853944094833894,0,0.0,0,0.0,0,0.0,0.06183,0.1620198102824799,0.314248746563157,0.01943,0.326606069942998,0.673393930057002,24.739521816278856,4.389981176825475,0.3182192910140148,0.2293899422918384,0.224237427864798,0.2281533388293487,11.249940923764868,5.787315184657742,20.604048335555,12376.054054370734,54.67971766722688,13.222403408592635,17.32328357349804,12.04124261770411,12.0927880674321,0.549876339653751,0.7574123989218329,0.680699481865285,0.5827205882352942,0.1264679313459801,0.727051177904143,0.9113924050632912,0.8653846153846154,0.7695473251028807,0.1441048034934497,0.4896437448218724,0.6727019498607242,0.6237288135593221,0.5289940828402366,0.1218678815489749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0045737118054499,0.0068817815491113,0.0092562487299329,0.0114839641545707,0.0136475668628928,0.0157543745156422,0.0181344769489967,0.0202802209040703,0.0226134513165575,0.0247915234939944,0.0268515665125834,0.0289450938426078,0.030745604089794,0.0327799459001837,0.0349057286764781,0.0370965234961919,0.03933844141282,0.0411685757982458,0.0433549517235626,0.0581671142131714,0.0722573618732459,0.0854438018870895,0.0986699497022118,0.1108285228843698,0.126578259443098,0.1385850519295711,0.1497959314159056,0.1607244097857364,0.1709777214428427,0.1841103043511096,0.1961743241631334,0.2077817277703867,0.2184648122148122,0.2283008245852237,0.239051439620398,0.2487124944021495,0.2576721725787526,0.2663115239266038,0.2741594466021648,0.2817135356773646,0.2888225757184144,0.2960276790279049,0.3021481436909561,0.3070197900281669,0.312788410387104,0.3182468918749215,0.322649872897053,0.3268146261597235,0.3312983366882085,0.3300943319728626,0.3288058856819468,0.327636656630338,0.3272416093754532,0.326380916884085,0.3247349118418832,0.3230430163788866,0.3244355210321901,0.3255909558067831,0.3259069400630915,0.3274775706735381,0.3277862625701648,0.3286008316881589,0.3293885158653522,0.3299101101875121,0.3324890327971589,0.3320892333114904,0.3363028953229399,0.3387509194717853,0.3423076923076923,0.3456655785273848,0.3476906835576669,0.3499686520376175,0.3495293045854843,0.3474108062552673,0.3489276455338204,0.3558058134226145,0.35248730964467,0.3530377668308703,0.3619191537589724,0.0,2.1841637869336616,54.060622709912174,182.27231601190124,273.2263504018887,fqhc7_100Compliance_implementation,3 -100000,95750,44599,422.26631853785904,6173,63.28981723237598,4855,50.16187989556136,1868,19.12271540469974,77.32698317968122,79.68540940957163,63.31555014592704,65.06068064183957,77.0942892813995,79.45707820978708,63.22853261926519,64.97842536444443,0.2326938982817239,228.33119978454877,0.0870175266618531,82.25527739513439,142.7459,100.4462453192407,149081.87989556135,104904.69485038194,368.16108,240.13909395279728,383967.33159268927,250262.9075225037,363.21319,176.15855598320906,376457.681462141,181713.1688479832,3470.64184,1573.53760430674,3584498.245430809,1603251.539667779,1174.15682,519.9282331582856,1207460.281984334,524226.1459584231,1838.07816,773.2572750558907,1883282.7989556133,775020.8471767812,0.38036,100000,0,648845,6776.44908616188,0,0.0,0,0.0,31696,330.4647519582245,0,0.0,33252,344.4281984334204,1670626,0,59949,0,0,0,0,0,71,0.7310704960835509,0,0.0,0,0.0,0,0.0,0.06173,0.1622936165737722,0.3026081321885631,0.01868,0.3207343412526998,0.6792656587473002,24.882333447553208,4.362741586983143,0.3229660144181256,0.2360453141091658,0.2201853759011328,0.2208032955715757,10.86991063499849,5.490661446335566,19.91596406828625,12339.931252055903,54.857979291469626,13.57170205031079,17.596497464111856,11.90069860143702,11.789081175609953,0.5645726055612771,0.787085514834206,0.6785714285714286,0.6024321796071095,0.1222014925373134,0.7289204097714737,0.9135802469135802,0.8415584415584415,0.7658730158730159,0.1674008810572687,0.5064138315672058,0.717948717948718,0.6255283178360102,0.5520195838433293,0.1100591715976331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020566334025631,0.0044513394577274,0.0067088890242169,0.0090722529258777,0.0112178998220188,0.0133190774400488,0.0155504343924623,0.0178531327195149,0.0197356990280347,0.0219447287615148,0.0242800040996207,0.0265356820234869,0.0284219398873401,0.0304069360352568,0.0325768516608211,0.0344613794885042,0.0366401623390069,0.0386913406082735,0.0405986903648269,0.0425895443085449,0.0572201110786319,0.0716639640110896,0.0849986370022437,0.0977966066059752,0.1104060378631361,0.1260837386339606,0.1377452540036059,0.148647353796033,0.1599384358867477,0.1696790812493291,0.1840845890189484,0.1967855827755756,0.2080672012883148,0.2179031322823102,0.2283660461685802,0.2390600753713145,0.2491286863270777,0.2581742411443374,0.2665144441036476,0.2743318204740292,0.281997244062576,0.289237904500896,0.2952826834182766,0.300948265514344,0.3069933217365918,0.3124498784745783,0.3171905549706723,0.3219263600458657,0.3257179902755267,0.3299050737361868,0.3291452887865443,0.3282770581838704,0.3274548194892454,0.3262060690173627,0.3257480045779515,0.3239324361607553,0.3229857932498139,0.323737937372809,0.3240006832934745,0.3247491579191245,0.3253934098010965,0.3263552878443764,0.3268839317566575,0.3278186411500369,0.3286456079619212,0.330318039624609,0.3324039036048596,0.3350808350337466,0.3366253414582895,0.3403514326420769,0.34312525499796,0.3466272251862025,0.3479212253829322,0.3511778918755663,0.3513059701492537,0.3483317669172932,0.3487101669195751,0.3478961143547412,0.3481871021311929,0.3431107680432265,0.0,2.118581806401104,55.774476802467056,181.67478169835655,269.28231060675984,fqhc7_100Compliance_implementation,4 -100000,95769,44530,421.7544299303533,6120,62.92223997326901,4753,49.14951602293017,1916,19.651452975388693,77.39144353273707,79.73096832369507,63.36142006586866,65.0876024896669,77.15080004950495,79.491007421098,63.27306570508388,65.00199344558986,0.2406434832321196,239.96090259706196,0.0883543607847769,85.60904407704584,144.4663,101.67106849040452,150848.70887239085,106162.81728994196,371.49104,242.38555186556823,387430.5568607796,252621.2885856261,360.18498,174.2866639285499,373665.3301172613,179996.90351683515,3422.4805,1541.774615807931,3541508.9956040056,1577714.9869038328,1123.83537,490.3308949772977,1163337.4787248482,501845.26827814535,1881.38476,784.4554122207135,1932219.7161920872,790928.1941943116,0.38046,100000,0,656665,6856.759494199584,0,0.0,0,0.0,31959,333.20803182658267,0,0.0,32874,340.7678894005367,1666223,0,59732,0,0,0,0,0,77,0.8040180016498031,0,0.0,0,0.0,0,0.0,0.0612,0.1608579088471849,0.3130718954248366,0.01916,0.33453125,0.66546875,24.689537345345396,4.403131036130096,0.3225331369661267,0.2228066484325689,0.2228066484325689,0.2318535661687355,11.152221258947634,5.739991058126705,20.362986528531337,12255.884708567866,53.47282562514044,12.678882718753236,17.03741183601725,11.777066381592938,11.979464688777,0.5505996212918157,0.7818696883852692,0.695368558382257,0.5854579792256847,0.0934664246823956,0.7212317666126418,0.91,0.8770949720670391,0.7630522088353414,0.0969162995594713,0.4907644217107133,0.7040971168437026,0.64,0.5308641975308642,0.0925714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026425562935363,0.0049251598650141,0.0071832957935106,0.0094656767654198,0.0113776169027259,0.0136287761582932,0.0157937640105971,0.0180178341869528,0.0202065604919858,0.0224379962347548,0.024375,0.0264999179251477,0.0286063645050913,0.0304539793954488,0.0326467920171532,0.0344603179522142,0.0364202769555587,0.0383127456776294,0.0404153802975021,0.0421054824629936,0.0566480866787749,0.0710451696608874,0.0839452813562166,0.0964980544747081,0.1083321031653978,0.1239108366466458,0.1354733348179726,0.1475409836065573,0.1582392704206401,0.16878550755708,0.1821489311317302,0.1942512949725865,0.2063531738700457,0.216614779616582,0.2257185250315986,0.2376895929904526,0.2475537724283963,0.2565026954177897,0.2652855378129356,0.2730288747540383,0.2799426801645634,0.2865039206291704,0.2924796026959915,0.298766319319679,0.3041674249317561,0.310374536905978,0.3149282464123206,0.3199847347665691,0.3239279843646859,0.3278064082455747,0.3268038880897003,0.3260714285714285,0.3245869366519018,0.3235166926137346,0.3228001007870281,0.3214105870324874,0.3203983082944073,0.3205105129673566,0.3220301456186664,0.3232789338654504,0.3239315278870285,0.3252100009882399,0.3269952411899121,0.3277986914044994,0.328627280625543,0.3288183458410689,0.3305778056497819,0.3335329341317365,0.3363277672091876,0.3390646766169154,0.3398435713305585,0.3448294300074858,0.3454418663623684,0.348028728606357,0.3474624060150376,0.3499350879263543,0.3510782687377469,0.352964824120603,0.3476022758060146,0.3488990129081245,0.0,1.9029302079123127,54.32412794610991,172.3147421780064,270.17514058329647,fqhc7_100Compliance_implementation,5 -100000,95738,44262,418.0680607491278,6179,63.54843426852452,4853,50.22039315632247,1847,18.97887985961687,77.37264048070351,79.73331186153007,63.34029949113111,65.08223597623889,77.14441999519191,79.50481033942634,63.25579487524875,64.9999436969567,0.2282204855115992,228.50152210372696,0.0845046158823592,82.29227928218563,143.08338,100.65541261737069,149453.0698364286,105136.32269043713,370.15005,241.79946854734763,386138.3881008586,252080.822413803,357.02763,172.7296960924803,370535.1897887986,178521.78841318088,3480.57795,1570.2003327846323,3602032.1397981998,1607115.8447788658,1178.09066,515.846235478548,1219163.6340846894,527907.8313587478,1819.64284,762.9536167115496,1870399.987465792,770863.4979827548,0.37829,100000,0,650379,6793.3213562013,0,0.0,0,0.0,31906,332.76233052706345,0,0.0,32755,339.6979255885855,1670425,0,59928,0,0,0,0,0,64,0.6684910902671876,0,0.0,0,0.0,0,0.0,0.06179,0.1633402944830685,0.2989156821492151,0.01847,0.3243744207599629,0.6756255792400371,24.95140977284868,4.425017488137153,0.3208324747578817,0.233051720585205,0.2233669894910364,0.2227488151658767,11.149441487919132,5.582659639700985,19.700925536293106,12283.848280514498,54.86066369807799,13.473057386594489,17.402125286389428,12.06586945997177,11.919611565122288,0.5674840304966,0.8134394341290893,0.6859344894026975,0.5876383763837638,0.1193339500462534,0.729903536977492,0.9577114427860696,0.8363636363636363,0.6824034334763949,0.1875,0.511499030202272,0.7338820301783264,0.636518771331058,0.5616921269095182,0.101516919486581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025924050632911,0.0047530732824582,0.006959026953549,0.0092216444588885,0.0115507020915311,0.0137528757863876,0.0160441979939655,0.0180764088065079,0.0202905069049054,0.022612345173508,0.0248221133143314,0.0268272399667354,0.0290893760539629,0.031246459798762,0.0334058950365731,0.0356563349421747,0.0376543912867924,0.0397245213350758,0.0417502468430078,0.0435366780889689,0.0583776220855564,0.0720705638621786,0.0850956749672346,0.0980954783376426,0.1098953227285664,0.1250977904641082,0.1367873999045447,0.1483527008044949,0.1593374909230703,0.1699230059836575,0.1825073765372273,0.1952681285632376,0.2075036702735033,0.2173908288585833,0.227360244688693,0.2375033235841531,0.2485071045082653,0.2562537995631909,0.2636068329471628,0.27060307268975,0.2786606326462111,0.285328153703942,0.2911025030503334,0.2976938951814167,0.3036174454222784,0.3088799279839197,0.3136837625026601,0.3189686971342805,0.3235739525492175,0.3275432279507775,0.3276866565304557,0.3263389480921279,0.3250211208110391,0.3236479750328705,0.3237038027729481,0.3215773353751914,0.3205099813344301,0.3220030199579832,0.3227071258097511,0.3239406553527591,0.3242078958655801,0.3256632643027121,0.3276034922093654,0.3283605352808889,0.3300612909404328,0.3311992949897618,0.3324936314746674,0.3343732451488114,0.3376962439516831,0.3407797102587256,0.3433112104383945,0.3465148159865022,0.3480278422273782,0.3489882210812443,0.3520223152022315,0.3574198096580895,0.3563410194174757,0.3580197222781244,0.3560109289617486,0.3565184340554922,0.0,1.732075947609817,55.13269255458765,188.7540655342994,264.05583944784075,fqhc7_100Compliance_implementation,6 -100000,95742,44603,422.6671680140377,6228,63.79645296734975,4855,50.11384763217814,1918,19.66743957719705,77.33281654085012,79.69881182559214,63.319784280511655,65.071152377385,77.09495160531645,79.46234243253042,63.23230518585328,64.9866264133067,0.2378649355336648,236.469393061725,0.0874790946583772,84.52596407830981,143.12562,100.70975042595784,149490.94441311024,105188.68461694747,369.15529,240.8536825975665,384985.8787157152,250979.338078198,357.57583,173.693481891874,370140.57571389776,178821.92782705522,3533.22215,1604.2920204932532,3652374.067807232,1637750.797962147,1225.23761,541.7885066617689,1266023.4484343338,552215.3096128985,1897.02984,791.1365566041296,1947825.259551712,798431.6349116624,0.38307,100000,0,650571,6795.042927868647,0,0.0,0,0.0,31836,331.89195964153663,0,0.0,32860,339.77773599883017,1670495,0,59947,0,0,0,0,0,63,0.6580184245158864,0,0.0,0,0.0,0,0.0,0.06228,0.1625812514684,0.3079640333975594,0.01918,0.3338433292533659,0.666156670746634,24.79330642332073,4.538560387502605,0.3171987641606591,0.2253347064881565,0.2199794026776519,0.2374871266735324,11.45354035543372,5.736414388505323,20.513181629366272,12347.3855562631,54.82952721268165,12.979066266829683,17.17826876403442,11.862383705218802,12.809808476598738,0.5583934088568486,0.7989031078610603,0.6831168831168831,0.5945692883895131,0.1300954032957502,0.7249417249417249,0.9458128078817734,0.8567639257294429,0.6920152091254753,0.1825726141078838,0.4983183856502242,0.7122093023255814,0.6268271711092004,0.5627329192546584,0.1162280701754386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021481624091844,0.0044830768918685,0.006599654787288,0.0090566267876927,0.0111504496805436,0.0131804106910039,0.0154192883876033,0.01739663093415,0.0197541972556798,0.0219637316840908,0.0243494843035534,0.0264608939407941,0.0285532146786349,0.0304528274683061,0.0323349462975764,0.0343886632143632,0.0364436619718309,0.0382416122705243,0.0403032099073525,0.0422326860571714,0.0573969871279583,0.0720533154778096,0.0851606002453833,0.0984366622160076,0.1102221941141748,0.1256820200482172,0.1373543043196979,0.1487993869209809,0.1596206019952575,0.1703218334101901,0.1838266168538237,0.1964797645964278,0.2088593143490883,0.2189658941845212,0.2291652919828439,0.239202878494326,0.2485244731058028,0.2578822999887476,0.2664896273094557,0.2740471038138746,0.2817150792732322,0.2881657497366264,0.2950518736084134,0.3012430922669352,0.3060604587869362,0.3112673450508788,0.3154447311073817,0.3209867114709027,0.3254924831518921,0.3297967920090902,0.3295413190279144,0.3290680697501446,0.3286127371464842,0.3283078926426969,0.3272581077459126,0.3261676224355239,0.3241688587456026,0.3248694281115527,0.3261244640325253,0.3260283751226911,0.3269594531323158,0.3281256180041925,0.3286908077994429,0.3298178974416266,0.3318587262279711,0.3323946599916562,0.3323446367966232,0.3362815145887759,0.338964596796853,0.3392026710123614,0.3403005464480874,0.3442431326709526,0.3449707491979619,0.3460310218978102,0.3499812944257389,0.3561337414645632,0.3590171393902624,0.3598553345388788,0.3658002735978112,0.3651278138115223,0.0,2.284489701148033,56.30934037916922,174.86536023805624,275.2931512085576,fqhc7_100Compliance_implementation,7 -100000,95776,44814,423.93710324089545,6402,65.41304710992316,5025,51.83970932175075,1999,20.47485800200468,77.34910350822409,79.67954598445408,63.34642956891118,65.06769405040912,77.10198216335999,79.43401735761317,63.2551514455578,64.97960669150693,0.2471213448640981,245.52862684090823,0.0912781233533763,88.087358902186,142.22274,100.06426383624056,148495.17624457067,104477.38873646902,371.09091,242.03334306768755,386826.9190611427,252077.5382848392,368.71534,179.3009361935854,381134.6370698296,184223.96325594225,3587.85374,1629.327628786221,3707648.742900101,1662745.9371723828,1188.92449,524.5814697876206,1228585.8774640828,534947.0740029181,1957.21006,816.013181219075,2007802.3722018043,821218.1267494329,0.3828,100000,0,646467,6749.780738389576,0,0.0,0,0.0,31941,332.8286835950552,0,0.0,33766,348.8347811560308,1673724,0,60126,0,0,0,0,0,57,0.5846976277981958,0,0.0,0,0.0,0,0.0,0.06402,0.1672413793103448,0.3122461730709153,0.01999,0.3217365447517097,0.6782634552482902,24.658651549866835,4.41037310219709,0.3387064676616915,0.2244776119402985,0.2153233830845771,0.2214925373134328,11.260800003466771,5.833027265450412,21.258714728228234,12391.80492061364,56.90670538954682,13.347251848000155,19.41947069217435,12.022390833652569,12.11759201571975,0.5649751243781095,0.7570921985815603,0.7132784958871915,0.6016635859519408,0.1078167115902965,0.7297501892505678,0.9064039408866996,0.8666666666666667,0.7172995780590717,0.1578947368421052,0.5062095032397408,0.6731301939058172,0.65814696485623,0.5692307692307692,0.0949152542372881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594458846403,0.0046625244529135,0.0070304653498493,0.0092127047973103,0.0114796437141578,0.0134879270328596,0.015685195376995,0.017819053936827,0.0203435204201534,0.0227540131572216,0.02475130876643,0.0268545217596535,0.0291040634698785,0.0310126191407456,0.0331377785109651,0.0352524376136175,0.0371899543662496,0.0391849854832019,0.0411679135494596,0.0431939353548817,0.0579800889111514,0.0720284474193379,0.0852047556142668,0.0979108430189789,0.1104730192516411,0.1266141133207938,0.1385676887367383,0.1498580527172006,0.1613082217361148,0.1712498259220773,0.1843784638894568,0.1974698599772936,0.2086948013828191,0.2187889523059765,0.2286104051838894,0.2399056457507364,0.2505551897688848,0.259088098049137,0.2678034557480458,0.2755217694940868,0.2822191631866924,0.2893363598071793,0.2967224175277866,0.3016491286943599,0.3066877239871226,0.3120367058475277,0.3165527086933654,0.3214394865525672,0.3268684773449147,0.3311051811144284,0.329649297786883,0.3280849656996446,0.328490911652811,0.327582968517475,0.3269636228656273,0.3252440554518468,0.3233665559246955,0.3235487152561284,0.3250759722743879,0.3263851677205016,0.3277890162583352,0.3281723325479636,0.3286346569336941,0.3289697839146418,0.3299135808429488,0.3297986542036499,0.3320541825367278,0.335423197492163,0.3394586189836737,0.3435712857428514,0.3467442606424414,0.3494876174210077,0.3512204448409916,0.3539632505573922,0.3612884780329743,0.3677606177606177,0.3710858389157189,0.3722747840394899,0.3766666666666666,0.3812722244172264,0.0,2.36046271269326,57.75957835917534,187.0259977795831,281.01745786702975,fqhc7_100Compliance_implementation,8 -100000,95667,44308,418.37833317653946,6228,63.65831477939101,4848,50.10087072867342,1946,19.99644600541461,77.31532774038504,79.70719917029628,63.31028192710126,65.07623778511594,77.07349857395373,79.46617326515113,63.21960253132782,64.98833236999864,0.2418291664313159,241.02590514515043,0.090679395773435,87.90541511729089,144.34398,101.41003463172883,150881.68333908243,106003.15117201212,369.86479,242.15027745046197,386047.53990404215,252548.5145875401,361.30282,175.62232281064283,374270.3544586952,180930.90291044256,3484.94351,1591.7142764965854,3605358.451712712,1626883.0530602627,1170.01119,517.7547767334675,1211161.236371999,529507.2156576017,1912.8851,806.4662396252126,1968257.6646074404,815467.6882169772,0.3784,100000,0,656109,6858.2583335946565,0,0.0,0,0.0,31927,333.13472775356183,0,0.0,33087,342.3751136755621,1660607,0,59678,0,0,0,0,0,57,0.5958167393144972,0,0.0,0,0.0,0,0.0,0.06228,0.1645877378435518,0.3124598587026332,0.01946,0.3346540688814385,0.6653459311185614,24.920180055665146,4.498264405162205,0.3296204620462046,0.2229785478547855,0.2192656765676567,0.2281353135313531,11.246450321359314,5.728992214549555,20.74976371200425,12304.13790245716,54.89885576126303,12.848071412609942,17.979693897734304,11.867770127451202,12.20332032346758,0.5556930693069307,0.7696577243293247,0.700250312891114,0.5794920037629351,0.1148282097649186,0.7275518035303147,0.9209183673469388,0.8774038461538461,0.7309236947791165,0.1626016260162601,0.492524682651622,0.683599419448476,0.637901861252115,0.5331695331695332,0.1011627906976744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0046939313449177,0.0070328198258539,0.0094182431471359,0.0119527180989583,0.0143519225872167,0.0164823956590918,0.0184975231091364,0.0208825484481259,0.0229893296741556,0.0251984493261953,0.02720054236731,0.0296069213122511,0.031746849529619,0.0336911643270024,0.0359396007860171,0.0380156041155077,0.0399493497462297,0.0417849898580121,0.0438688832143415,0.0588339776407898,0.0734314793097671,0.086476898209375,0.0992686135227571,0.1108296657484511,0.1261658003662809,0.1378058103975535,0.1499328944845657,0.1605528121593022,0.1718008715625872,0.1842315154128045,0.1959089973903345,0.2073195954845803,0.2174493559366552,0.2271150224141159,0.2365755992590374,0.2464451270594806,0.2554668947587588,0.264091383930599,0.2711390315480557,0.2782745679469953,0.2859852476290832,0.2923989767397792,0.2977040602009097,0.3034579155271953,0.3086710476026088,0.3132990245795926,0.3180418405782347,0.3234296514939672,0.3274676241897796,0.3265704778455859,0.32584501804358,0.3252793079643274,0.3240905474795689,0.3240286572133535,0.3226275807143294,0.3210306406685236,0.3217599422969738,0.3228240274482358,0.3235225914628708,0.3242823749415615,0.3247217178495303,0.3259903584154265,0.3269007155635062,0.3282512504809542,0.3292667031620656,0.3291045202583004,0.3316897401858524,0.3361344537815126,0.340118135376756,0.3433395872420263,0.3476154992548435,0.3489078822412155,0.3526149580220288,0.3579307721567136,0.361656294877932,0.3625954198473282,0.3696,0.3692307692307692,0.3779378316906747,0.0,2.281335969507203,57.13427126665139,176.82741680980774,269.8518149848851,fqhc7_100Compliance_implementation,9 -100000,95629,44334,419.8726327787596,6141,63.03527172719572,4892,50.59134781290194,1891,19.408338474730467,77.3146043072854,79.73444332803857,63.296484254502126,65.08335378123007,77.08095869161812,79.50109038792007,63.21031986163558,64.99988870993101,0.2336456156672852,233.35294011849328,0.0861643928665429,83.46507129905945,142.51886,100.25160347269248,149033.09665478044,104833.8929327845,366.12139,238.6284806450127,382295.97716173966,248975.63568061223,357.38477,173.78561754150718,369904.8614959897,178842.0077161692,3483.17682,1577.78255821512,3602396.9402587083,1610235.0365405537,1125.79297,495.5449931064058,1159943.270346861,500918.42621780885,1862.09246,773.1011520614156,1912078.4699202124,778948.4665714918,0.38095,100000,0,647813,6774.231666126384,0,0.0,0,0.0,31555,329.3875288876805,0,0.0,32762,338.87209946773464,1673814,0,60027,0,0,0,0,0,63,0.6587959719332002,0,0.0,1,0.0104570789195746,0,0.0,0.06141,0.1612022575141094,0.307930304510666,0.01891,0.3382010253223551,0.6617989746776448,24.546919946808323,4.3342157442689775,0.3201144726083401,0.2371218315617334,0.2166802943581357,0.2260834014717906,11.146572240701657,5.712110983391295,20.08249305695867,12296.965715036817,55.27677374818818,13.869907102124213,17.74216171386274,11.593833215516552,12.07087171668467,0.553761242845462,0.7689655172413793,0.6922094508301405,0.5839622641509434,0.1030741410488245,0.7287480680061824,0.8845265588914549,0.8848167539267016,0.7692307692307693,0.1379310344827586,0.4908282379099499,0.7001375515818432,0.6300675675675675,0.5276752767527675,0.0938215102974828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024013861165432,0.0044214134325785,0.0065984488569456,0.0089417263628511,0.0111287434895833,0.0133326543084131,0.015493518017972,0.0177341914393707,0.0198218285585705,0.0217202076783647,0.023876923076923,0.0259476117103235,0.0282084254925158,0.0305709251646007,0.0327941616689203,0.0350211450373786,0.0369084748572672,0.0389762757618231,0.0411416442090586,0.0429399862325038,0.0575316978331538,0.0710357326181921,0.0845759650522955,0.097769450204739,0.1100708261645151,0.1258973761673831,0.1379698569319497,0.149414999040982,0.1604663600385067,0.1710167343343859,0.183639128887163,0.1962008170518947,0.2080637078676166,0.2185127986067755,0.2278538208909167,0.2376767205983532,0.247482818349444,0.2558833800849415,0.2645354781541817,0.2732402119314663,0.2800981663270976,0.2868139066959899,0.2926673373971711,0.2985747335866607,0.3034530487360676,0.3091184586577313,0.3138929884683693,0.3187191742512839,0.3233840500957408,0.3277542568485472,0.3276224058571774,0.326696459264352,0.3256872331731785,0.3252201830882034,0.3244843903455254,0.3236155627463309,0.3226491998794665,0.3236179912117571,0.3250810087952406,0.3243997566822915,0.3254420137848366,0.3267418477189385,0.3276891598463337,0.3286558839933073,0.3282042691681822,0.3292247138640012,0.3317281817409285,0.3360880683590095,0.3397469413364007,0.3420637425055222,0.3433928168059634,0.3466005067567567,0.3510665152088855,0.3555133079847908,0.3573373392169749,0.3545421988778799,0.3572093023255814,0.3572011423908608,0.3587912087912088,0.359472049689441,0.0,2.190086370057426,56.92887353381119,178.85819601721272,273.7468549025321,fqhc7_100Compliance_implementation,10 -100000,95647,44731,422.6792267399918,6294,64.70668186142795,4931,50.98957625435194,1948,19.90653130782983,77.29129418892526,79.69130282880383,63.29829466637945,65.0698231772659,77.04602209542335,79.45007348412038,63.206995901040656,64.98334380306491,0.2452720935019101,241.2293446834468,0.0912987653387915,86.47937420099083,143.78012,101.1708863755397,150323.71114619382,105775.28451027184,369.85187,241.6535999313964,386145.0751199724,252112.361005987,363.05335,176.3006455432909,376801.6247242465,182068.49536407145,3543.5863,1610.639280519349,3662762.86762784,1641845.3067209104,1195.71067,530.791320727995,1230253.9337355066,535073.3747299913,1916.43796,806.3793093257049,1959951.090990831,804094.1490341538,0.38212,100000,0,653546,6832.895961190628,0,0.0,0,0.0,31882,332.7443620814035,0,0.0,33293,345.31140548056914,1662716,0,59672,0,0,0,0,0,48,0.4913902161071439,0,0.0,0,0.0,0,0.0,0.06294,0.1647126557102481,0.3095011121703209,0.01948,0.3220802919708029,0.6779197080291971,24.635350204807494,4.37895057238808,0.3157574528493206,0.2338268099776921,0.2186169134049888,0.2317988237679983,10.881280369024624,5.481587067042054,20.829601668889463,12330.617364835083,55.99081922769071,13.7028643431797,17.684622352386185,12.084151109738489,12.51918142238632,0.5477590752382884,0.7857762359063313,0.691072575465639,0.5528756957328386,0.1076115485564304,0.704422032583398,0.9102244389027432,0.8358585858585859,0.7,0.152892561983471,0.4923119165293794,0.7194148936170213,0.6416881998277347,0.5084541062801933,0.0954495005549389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026235021220992,0.004876812328906,0.0074500370471869,0.0096738136368255,0.0121173274730641,0.0142791668788511,0.0165589248934478,0.0190230155002348,0.0211536888598069,0.0232117625376282,0.0253302157683156,0.0274325739991372,0.0295458052569312,0.0317993528841992,0.0338811578643101,0.0357756034999896,0.0378787878787878,0.0400473466166896,0.0422536676724586,0.0439741451209341,0.0583864562650224,0.0730820798592198,0.0866392254866959,0.0997115910909014,0.1124643799472295,0.1267768122691334,0.1383940892974671,0.1496804431188751,0.1596869554061133,0.1698374524918941,0.1838110025662591,0.1965240931239848,0.2080090561765954,0.2174046336442867,0.2277136055021603,0.2379679440962786,0.2471618843300259,0.2560433250391254,0.26460769842171,0.2727929125646109,0.2803635521593146,0.2863929419748897,0.2930509659003423,0.2985737077600374,0.3040590675213779,0.3096025672673414,0.3149048705286641,0.3200479090746922,0.3241732589806769,0.3285091773405519,0.3276373241334699,0.3257724002976601,0.3251351084395151,0.3248498009410061,0.3239077995175556,0.3224111710217061,0.3209610105209705,0.3216179716064429,0.322409803753535,0.3235120273683079,0.3237959168327255,0.3245410340379081,0.3260074030453436,0.3287250039275535,0.3290867931798478,0.3298177831149167,0.3324988620846609,0.3351770954461171,0.3369913122999542,0.3408855618380186,0.3431073008345113,0.3464208128013564,0.3500852326535766,0.353639846743295,0.3543247344461305,0.3558650498259095,0.3576982892690513,0.3587991718426501,0.3645251396648045,0.364854517611026,0.0,2.187716447426837,56.70880560384512,190.31649176567063,268.7985875769148,fqhc7_100Compliance_implementation,11 -100000,95631,44502,420.85725340109377,6280,64.39334525415399,4933,50.99810730829961,1915,19.63798349907457,77.27514686010801,79.68748435297047,63.27600815666828,65.0569793134046,77.03887115075752,79.45041327949077,63.18904317957845,64.97173522023863,0.2362757093504939,237.07107347969725,0.0869649770898348,85.2440931659686,143.48752,101.00818556208948,150042.89404063535,105622.84778167069,370.60899,241.3217953116377,386970.20840522426,251776.3960552934,364.69236,176.7419468568591,377396.6914494254,181731.4648272714,3508.50602,1593.5007672207337,3631517.33224582,1629023.106754851,1177.38719,515.035508217958,1215330.2485595676,522718.353063292,1878.91962,789.3726579378284,1930058.432934927,797959.4400081943,0.38114,100000,0,652216,6820.131547301608,0,0.0,0,0.0,31852,332.4863276552582,0,0.0,33487,346.1429871066913,1662687,0,59681,0,0,0,0,0,65,0.6796959145047108,0,0.0,0,0.0,0,0.0,0.0628,0.1647688513407147,0.3049363057324841,0.01915,0.3249695863746958,0.6750304136253041,24.90137836754401,4.369078049019114,0.3387391039935131,0.2296776809243867,0.2122440705453071,0.219339144536793,11.406527183989002,5.980305556806365,20.425156968054637,12361.93119272675,55.94517626319617,13.41448092075159,18.97277945533112,11.619986406148698,11.937929480964758,0.5647678897222785,0.766107678729038,0.701376421304608,0.5826170009551098,0.1256931608133087,0.7310989867498051,0.934010152284264,0.8626506024096385,0.7447698744769874,0.1446808510638297,0.5063013698630137,0.6765899864682002,0.6480891719745223,0.5346534653465347,0.1204250295159386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708360337005,0.0049157232194439,0.0070417533357008,0.0094057897409852,0.0115033716779055,0.0134124979631741,0.0156524044540522,0.0181519331094118,0.0203142731538752,0.022618365006553,0.024853066373996,0.0269462308150644,0.029250475847523,0.0315930526207287,0.0335501858736059,0.0355458081602251,0.0374700705867719,0.0394229870494033,0.0414789223388867,0.0434864222250031,0.0582351773079294,0.0721096418617322,0.0855795289817012,0.0977719252041085,0.1099808811568484,0.1258300589911142,0.1380721124725035,0.1495970664733723,0.1602615554199976,0.1708758731864589,0.1834815838334988,0.1961528452463567,0.20825068119891,0.2187119625409845,0.2285663837911208,0.2391055619119558,0.2489815560927567,0.2583637040630959,0.2675202002958917,0.2752641249425815,0.2815631959910913,0.2884784520668426,0.2945230667030451,0.3006112131801097,0.3056339398657196,0.3113625427221242,0.3160969250247577,0.320857317508023,0.3251975553738954,0.3293529575118022,0.3295643139530176,0.3287563588237727,0.3285941973793707,0.3282276027654835,0.3273911298116237,0.3258048204955334,0.3239358586738005,0.3239644727553315,0.3250588195178504,0.3255743490117098,0.3258380647216444,0.3260113780025284,0.3263018978591478,0.3266976827413438,0.3275273059712265,0.3283002138423825,0.3295982664727853,0.3335328963952609,0.3383061820484853,0.3406685236768802,0.3438125568698817,0.3465836526181354,0.348796278835879,0.351631710456576,0.3515037593984962,0.349346016646849,0.3535818377051695,0.3620829943043124,0.3606828193832599,0.3543096872616323,0.0,2.326241666598379,56.25111442322038,188.7980530586237,271.6661009033941,fqhc7_100Compliance_implementation,12 -100000,95687,44428,420.59004880495786,6254,64.15709553021831,4927,50.93690887999415,1952,20.04452015425293,77.28391542799022,79.67989049154491,63.28504443165552,65.05894081841004,77.03952677768625,79.43680121325531,63.1941693431969,64.97105074167116,0.2443886503039749,243.0892782896024,0.090875088458624,87.89007673887284,143.46046,100.96343390036758,149926.80301399354,105514.26411149642,370.43274,240.8506988684443,386589.8502408896,251167.9061247468,360.41481,174.98226934622227,373100.9332511209,180186.911217936,3546.20208,1615.2186207276886,3668546.9081484415,1650636.5556119897,1206.31023,533.9556130407094,1245922.1837867212,543261.8255778833,1915.62326,806.4667596535475,1968227.1572940943,813697.2940771205,0.3804,100000,0,652093,6814.854682454252,0,0.0,0,0.0,31912,332.9292380365149,0,0.0,33028,341.5615496357917,1665671,0,59824,0,0,0,0,0,61,0.6374951665325489,0,0.0,0,0.0,0,0.0,0.06254,0.1644058885383806,0.3121202430444516,0.01952,0.3284104750304507,0.6715895249695494,24.665667915365777,4.365514385326476,0.3070834179013598,0.2327988634057235,0.2338136797239699,0.2263040389689466,11.274978924198177,5.891737308378534,20.875643045799933,12368.218089514146,55.91327848285775,13.782380995130328,17.019724061822373,12.939129902030396,12.17204352387465,0.5644408362086463,0.7977332170880558,0.6853932584269663,0.59375,0.1300448430493273,0.7179681576952237,0.9135514018691588,0.8210526315789474,0.7389705882352942,0.1799163179916318,0.5083148558758315,0.7287899860917941,0.6398940864960282,0.5488636363636363,0.1164383561643835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293832715186,0.004706264199935,0.006984984314243,0.0090242985335514,0.0114974105389538,0.0136908157444381,0.0158498648579733,0.0179556318176247,0.0200664791613398,0.0222807269151181,0.0243757309641545,0.0267354403846944,0.0287404815805721,0.0306403240268373,0.0326513337187216,0.0348322508583957,0.0367449716589121,0.038938255200764,0.0406624156117046,0.0428465715447069,0.0576529333110479,0.0716431974035491,0.0856989935668034,0.0984027441654917,0.1111392538652313,0.1269091948304878,0.1394091913013931,0.1513983258429359,0.1630857704805883,0.1731673285392293,0.1863856850274873,0.1985721095510487,0.2092253413768321,0.2195354338469625,0.2297391131832159,0.23973134991119,0.2493403103895523,0.258107057112907,0.2671773946055308,0.2753307250134814,0.2822784516547997,0.2893564124214279,0.2954305445139243,0.3010135459698338,0.3067885753244539,0.3118125594084462,0.3161080891384453,0.3207181968674392,0.3251033606801716,0.3297382212776069,0.3289753888454592,0.3281516770391584,0.3275488069414317,0.3258941468769862,0.3249137212900154,0.322921458582513,0.3219651347068146,0.323265815304816,0.3243086079802972,0.3247577502055994,0.3253288237504697,0.3256450972608178,0.3251375914640575,0.3262440078320167,0.3275895497067519,0.3294459877352062,0.3308594753518111,0.3341429562803608,0.3381469379150416,0.3419050637926935,0.3441286325954268,0.3436754176610978,0.347287403792003,0.3472806490384615,0.3517055488428293,0.3493465206640763,0.3479255643685174,0.3544201135442011,0.3503344481605351,0.3438826707834813,0.0,2.158400781272624,58.0871372286879,183.77653153490584,270.8975104072934,fqhc7_100Compliance_implementation,13 -100000,95651,44583,422.02381574682965,6211,63.606235167431606,4884,50.42289155366907,1948,19.95797221147714,77.35161970545354,79.75690089454645,63.31721993396855,65.09408992174845,77.11142846527483,79.51891135593505,63.22877873983455,65.00915237054727,0.2401912401787171,237.98953861140149,0.0884411941340062,84.93755120117896,144.26434,101.41721203299764,150823.66101765793,106028.3865646963,370.16067,241.80585279096607,386328.224482755,252137.57848777997,365.27988,177.72374393032706,377496.7851878182,182486.8593494182,3520.05715,1596.71101941171,3637496.691095754,1626717.0396136574,1174.66167,518.8432191731631,1210704.132732538,525114.7539715709,1912.17138,798.6876096276437,1960990.873069806,802532.7492319982,0.37974,100000,0,655747,6855.6209553480885,0,0.0,0,0.0,31810,331.88361857168246,0,0.0,33436,345.2133276181117,1663638,0,59671,0,0,0,0,0,65,0.6795537945238419,0,0.0,0,0.0,0,0.0,0.06211,0.1635592774003265,0.3136370954757688,0.01948,0.3320604857186497,0.6679395142813502,24.81581525981494,4.445478650120335,0.3218673218673218,0.2254299754299754,0.225020475020475,0.2276822276822276,11.243111598643562,5.763618834692393,20.623158898959733,12237.00549400812,55.24930180158953,13.125410407022851,17.906702483044995,12.05707980748248,12.16010910403921,0.5657248157248157,0.8029064486830154,0.7099236641221374,0.5632393084622384,0.1294964028776978,0.7338461538461538,0.9240506329113924,0.8674418604651163,0.7563025210084033,0.1518987341772152,0.5047433035714286,0.7351274787535411,0.6506129597197898,0.5098722415795587,0.1234285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026139552790751,0.0047964305633017,0.006860576044817,0.0090323498333739,0.0113417896632047,0.013424322672642,0.0156834752460102,0.0178288795172111,0.0201942740286298,0.0222370173102529,0.0245193590085561,0.0268514997996156,0.0288866248855134,0.0311037340976102,0.0329604495264065,0.0350211057771892,0.0369902057314608,0.0391055653022454,0.0410948927891467,0.0432402560840823,0.0585678310571467,0.0728218874009234,0.0855112622541302,0.0989193682460515,0.1106537913566566,0.1264513807301093,0.1379837553750597,0.1493205435651478,0.1603453625343704,0.1703592332062503,0.1833347711685286,0.1950035750655428,0.2061810779329639,0.2158612008100268,0.2255908199898685,0.2362951055928163,0.2457684873808752,0.2546154538904899,0.2630091268219588,0.2712906661170084,0.2778716020821284,0.2849479331019249,0.2910172417870911,0.2973477818355984,0.3027096554987926,0.3078163267817804,0.3131205895210142,0.3175988011785025,0.321614078610745,0.3258994984136178,0.3250732782961787,0.3245292348263216,0.3243266052465011,0.3237441209568052,0.3234648146499272,0.3215770806579832,0.3200107423263456,0.3201389913294324,0.3204955377711038,0.3208533257228475,0.3210297534287641,0.3213199573442869,0.3228915662650602,0.3246935905163753,0.3263372511393619,0.3261886204208885,0.3276773533424283,0.3314291095137952,0.3341971633689371,0.3375168263520469,0.3386950199927299,0.3417588204318062,0.342991239048811,0.3457688808007279,0.3448792360981089,0.3481781376518219,0.3473053892215569,0.3530715005035246,0.3436314363143631,0.3473684210526316,0.0,2.3962239746364205,56.9080746094136,180.18928271041412,270.583585941909,fqhc7_100Compliance_implementation,14 -100000,95789,44501,421.551535144954,6252,63.93218428003215,4937,50.94530687239662,1917,19.57427262002944,77.3507064425629,79.67851773313265,63.34838135415546,65.06977611550542,77.11093550809542,79.44207646188876,63.25902506824034,64.98419206346044,0.2397709344674723,236.44127124389055,0.089356285915116,85.58405204497888,145.22442,102.08644195891796,151608.6607021683,106574.28510467587,370.58119,241.21985022929712,386289.2190126215,251240.99868387505,358.95008,173.77097998790123,371508.5552620865,178858.23777347716,3536.22057,1603.33620571435,3651763.887293948,1633907.5945195684,1167.76341,517.8909480383853,1203397.8118573113,524956.1724607054,1885.62158,793.0174578577142,1928950.3387654116,795948.9927496464,0.38085,100000,0,660111,6891.302759189469,0,0.0,0,0.0,31850,331.8857071271232,0,0.0,32912,340.2791552265918,1663671,0,59714,0,0,0,0,0,69,0.7203332324170834,0,0.0,0,0.0,0,0.0,0.06252,0.1641591177628987,0.3066218809980806,0.01917,0.3310355392156863,0.6689644607843137,24.765882299016027,4.343683193688359,0.3285395989467288,0.2303018027141989,0.2136925258254,0.2274660725136722,11.331800918032226,5.931234950349004,20.540179452533515,12274.183169998349,55.73635981786061,13.405375929891362,18.08915417319081,11.972798300393576,12.269031414384846,0.5535750455742353,0.7766051011433597,0.6843403205918619,0.5848341232227489,0.1095280498664292,0.7259083728278041,0.9281767955801103,0.8543689320388349,0.7396226415094339,0.1541850220264317,0.49414328520839,0.7058064516129032,0.6264462809917355,0.5329113924050632,0.0982142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702443174911,0.0046735604217356,0.0070017352126396,0.009162197302129,0.0111436473076297,0.0134891628574628,0.0157148098324568,0.0177261177046871,0.019732875522446,0.0220016373311502,0.0240383630141197,0.0264113772086437,0.0286929891270836,0.0306452277032034,0.0328524732158508,0.0345978222690551,0.0364744471922436,0.0384818735032811,0.0402209921801169,0.0422774215041225,0.0567839143545812,0.0706907007381694,0.0841736724040336,0.0969114849882827,0.1095268205290336,0.1250251043813751,0.1371203766542246,0.1485489895603869,0.1594162672274828,0.1705108143448157,0.1828690747836569,0.1951108805602386,0.2063016079965232,0.2170816172695194,0.226888446696936,0.2374351428792689,0.2481053851640513,0.2568735182750755,0.2653012649045654,0.272904126519122,0.2808113946423002,0.2873713598187064,0.2936014192785334,0.2997880467973511,0.3055319562104037,0.311006846953352,0.3162210472369095,0.3205457504704745,0.3251139070104587,0.328680637933307,0.3278417343590295,0.3277268163877161,0.3263624841571609,0.3256990833116451,0.324736521338427,0.3227121553481386,0.3206213346013631,0.3211394154818325,0.3213815057591264,0.3226083379536065,0.3230720048141113,0.3242616451932607,0.3246682230214314,0.3248240030588605,0.3256828756720268,0.3266091051805337,0.3246377641601283,0.3272520314920795,0.3286868758160708,0.3320084264080448,0.3348581884720951,0.3372055674518201,0.3415021268490889,0.3426218151027634,0.3481467473524962,0.3514674302075877,0.3492333901192504,0.3510550268928423,0.3558178752107925,0.3513829372808726,0.0,2.3392740584073675,55.15353131162908,188.62783178966757,273.7564591808447,fqhc7_100Compliance_implementation,15 -100000,95723,44456,421.1735946428758,6188,63.27632857307022,4824,49.68502867649363,1916,19.650449735173364,77.31652017658898,79.67793314036697,63.31665033110207,65.0626211130042,77.08137091020384,79.44394347422079,63.22948244117888,64.97826813328918,0.235149266385136,233.98966614618644,0.0871678899231938,84.35297971502109,142.6183,100.33015429775378,148990.6292113703,104813.00658959056,368.42498,240.82022317234023,384208.4138608276,250902.75439533443,363.26453,176.72595535081322,374115.31188951456,180615.5515137388,3450.10729,1566.4108420869482,3560277.1852114955,1592450.3590600989,1182.77773,523.3644269180339,1219641.6848615275,530789.6500752089,1881.69182,787.2867605859045,1932232.963864484,794349.0027501808,0.38127,100000,0,648265,6772.30132778956,0,0.0,0,0.0,31683,330.26545344379093,0,0.0,33147,340.9629869519342,1672206,0,59999,0,0,0,0,0,70,0.7312767046582326,0,0.0,0,0.0,0,0.0,0.06188,0.1622996826395992,0.3096315449256626,0.01916,0.3251995089011663,0.6748004910988337,24.822282518790185,4.431337473852451,0.3291873963515754,0.2249170812603648,0.2184908789386401,0.2274046434494195,11.263349439679308,5.731519709057621,20.324181600391107,12299.888847304364,54.49862180208337,12.862198750677184,17.988694199901577,11.607580947137508,12.040147904367096,0.5576285240464345,0.7815668202764977,0.6926952141057935,0.5683111954459203,0.1303555150410209,0.7408312958435208,0.931758530183727,0.8843373493975903,0.6990291262135923,0.1911111111111111,0.4951348345843758,0.7002840909090909,0.6248934356351236,0.5365566037735849,0.1146788990825688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0044606198234,0.0067495559502664,0.0090533139599865,0.0116170247395833,0.0136984906198439,0.0156853946335145,0.0178303360803896,0.0199693251533742,0.021991522820812,0.0240753842525659,0.0262863362392056,0.0284738860838894,0.0306546944827728,0.0322028303832982,0.0341471478607664,0.0361667770785028,0.0381715020693518,0.0402582013221903,0.0423078125162782,0.0571401724749953,0.0713538287675533,0.0852262002139306,0.0982439537329127,0.1110888499905097,0.1260325552370778,0.1386941070386675,0.1498536377667784,0.1615939319480797,0.1713065774087305,0.1843086137803249,0.1966320710814818,0.2083940573815065,0.2191726897969448,0.2285512974359539,0.2382974006539932,0.247758160519057,0.2570608754360302,0.2663057664589788,0.2734489552785923,0.2798032976569279,0.2856808664935551,0.2924173196657276,0.2990561172477482,0.3049242884573317,0.3103762996583579,0.315566073172564,0.3199276884492482,0.3241962424415066,0.3277011418388225,0.3272910915089893,0.326085758377425,0.3254563164358616,0.324419025555636,0.3236808428320585,0.3216350947158524,0.3199410422213769,0.3200230433709159,0.3211458725970599,0.3219886373819381,0.3231500977590615,0.3250064383208859,0.3249064851006598,0.325956817111724,0.3282823416044326,0.3295955355047331,0.3310978567963243,0.333982350909148,0.338180671385521,0.3420708252369433,0.3442376814231767,0.3496674647512636,0.3522884882108183,0.3552860932171277,0.3575848490530658,0.3589285714285714,0.3592575548396993,0.3567970956030658,0.3630344827586207,0.3601694915254237,0.0,2.720538494638233,53.00622345554858,184.1314685669534,270.1542184178068,fqhc7_100Compliance_implementation,16 -100000,95682,44416,420.0581091532367,6156,63.18847850170356,4823,49.85263685959742,1975,20.27549591354696,77.40264542862671,79.78294893896985,63.35728834693722,65.11189657300885,77.15969003234468,79.5410990472865,63.26749332520436,65.02517399445264,0.2429553962820279,241.8498916833585,0.0897950217328542,86.72257855620558,144.24344,101.4063763653557,150752.95248845135,105982.7097733698,369.29985,241.0149547763976,385429.516523484,251355.29647833187,359.00349,174.6181720288746,372130.2961894609,180115.45236939556,3482.47327,1574.9263452352038,3597679.7725800048,1604047.8201074435,1162.34556,511.4978761129396,1191374.5323049268,511154.9676145352,1932.25456,806.1396871872053,1983424.9702138333,810100.9648373069,0.37937,100000,0,655652,6852.406931293242,0,0.0,0,0.0,31752,331.29533245542524,0,0.0,32879,340.48201333584166,1668446,0,59825,0,0,0,0,0,74,0.7733952049497292,0,0.0,2,0.0209025731067494,0,0.0,0.06156,0.1622690249624377,0.3208252111760883,0.01975,0.3321439652497673,0.6678560347502327,24.851899406565387,4.49343502372637,0.3112170848019904,0.2301472112792867,0.2293178519593613,0.2293178519593613,11.363520335908392,5.899485809558614,20.92398086103997,12286.03493229966,54.26874273779282,13.179046900197632,16.85638887731237,12.216287979017276,12.017018981265538,0.5567074434998963,0.7882882882882883,0.6775483011325782,0.5922242314647378,0.1247739602169981,0.7288961038961039,0.9454545454545454,0.8610354223433242,0.7076923076923077,0.1545454545454545,0.4976329713171818,0.7048275862068966,0.6181657848324515,0.5567375886524822,0.1173814898419864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023797227369849,0.0047432272188269,0.0069993913572732,0.0094147040004874,0.011714340915793,0.0140011811905586,0.0162304892595349,0.018105551076229,0.0203873077512646,0.0228417045314994,0.024795506262941,0.0269074408672798,0.0291689371896237,0.0313597462383752,0.0336559295103278,0.0355016743147711,0.0373791132556068,0.0394429628399763,0.0412887927448207,0.0432834109787491,0.057987213772355,0.072186214045632,0.0863040580957278,0.0993372606774668,0.1114474669591907,0.1269666606710188,0.1387650704703684,0.1494836580432236,0.1599606724161884,0.1710332993726205,0.1842147772429166,0.1966562060383075,0.2079880820338835,0.2179170402116633,0.2274347185251996,0.2376861334071408,0.2473468295728172,0.2560156372868408,0.2647931675048706,0.2721888755502201,0.2788144008498256,0.2854758709225652,0.2920982084863658,0.2978227060653188,0.3032195476868974,0.3088879590430245,0.312415620781039,0.317183749666637,0.3216090142009846,0.3255186394271272,0.3248713919222039,0.3248536046846501,0.3244350877192982,0.3243585682610073,0.3232767558280754,0.3217198716969604,0.320434390856926,0.3214303288772246,0.3223651699752918,0.323459209120057,0.323818787175938,0.3243503747270688,0.3251802158423267,0.3264601750205972,0.3274973018347523,0.3280399864629162,0.3293075455037457,0.3315145813734713,0.3353819139596137,0.3382808159377728,0.340677888782446,0.3451917435596565,0.3482075233526887,0.3499429440852035,0.3549391452023775,0.3532180256500765,0.3584905660377358,0.3606689502317147,0.3650273224043716,0.3604695191215448,0.0,2.182552717644619,53.73684314878896,183.56846590429743,266.97507095754696,fqhc7_100Compliance_implementation,17 -100000,95724,44339,421.0751744599056,6253,64.06961681500982,4958,51.18883456604405,2010,20.548660732940537,77.33907921770925,79.70816546626487,63.32552877917672,65.07650320972674,77.090870124616,79.46110650547524,63.23287508781164,64.98701902557814,0.2482090930932514,247.05896078963008,0.0926536913650721,89.48418414860271,145.27348,102.10942460196856,151762.8598888471,106670.66211396156,371.33148,241.9687671182325,387340.52066357445,252199.16334276937,362.52476,175.53901212165908,375444.7160586687,180698.2791185266,3574.11918,1628.420850679294,3693155.739417492,1660575.9519862246,1185.60772,523.6164411269739,1222185.0737537085,530641.2978796208,1972.3412,831.7514515406116,2019709.41456688,834893.4505556904,0.38014,100000,0,660334,6898.311813129413,0,0.0,0,0.0,31958,333.2393130249467,0,0.0,33199,343.4770799381555,1660436,0,59573,0,0,0,0,0,65,0.6790355605699719,0,0.0,1,0.0104467009318457,0,0.0,0.06253,0.1644920292523807,0.3214457060610907,0.0201,0.3343520782396088,0.6656479217603912,24.46932402978069,4.403161253492403,0.3200887454618797,0.2315449778136345,0.2188382412263009,0.2295280354981847,11.097267125221784,5.71668786963319,21.415994015662548,12230.153268205371,56.15437160364938,13.595683158029583,17.984324213092865,12.037515763555875,12.536848468971076,0.5586930213795885,0.7874564459930313,0.6855702583490864,0.5824884792626728,0.1282952548330404,0.7145061728395061,0.9203084832904884,0.8684863523573201,0.703125,0.1532258064516129,0.5035499726925178,0.7193675889328063,0.6233108108108109,0.5452352231604343,0.1213483146067415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0045119033134606,0.0069222415070592,0.008972118354739,0.0110678209210298,0.013249956716129,0.0154387396114821,0.0174886930953863,0.0195607272132354,0.0215080194186689,0.0235162603710502,0.0254922301079465,0.0275935124906153,0.0297435686100779,0.0316270812043889,0.0335353242885506,0.0354190407127317,0.0377235131124233,0.0396726357604875,0.0413202475464149,0.0561983125887561,0.0702095824047043,0.0831480937801451,0.0950352819930382,0.1076754339710193,0.1233815689261233,0.1352395098403267,0.1471859628202125,0.1579807866981545,0.1685282346755936,0.1816927818608961,0.1938383236775136,0.2056295425860643,0.2158021448894725,0.2256395009525068,0.2365124065902388,0.2459287389701775,0.2547706163805235,0.2637949044007448,0.2719384714135069,0.2794916019400618,0.2872752371927607,0.2940397194327147,0.3000059883825379,0.3056078055410604,0.3111956093719236,0.315712536545141,0.3203348279497504,0.3249098406214857,0.3286138026497923,0.3275611723581608,0.3267599048365581,0.3264702151946899,0.3257442069025371,0.324165204721834,0.322858412367659,0.3201488401551737,0.3201623904932529,0.3210872469427602,0.3213307310784437,0.3228695341982239,0.3237750336420486,0.3256871124518183,0.3269502116508768,0.328478731074261,0.3285528370640291,0.3283978089695309,0.3314668596055239,0.3360736368746487,0.3374208703268702,0.3391558827564132,0.3420447864892309,0.3439603708878445,0.3462484624846248,0.3517559551831277,0.3529341745030354,0.3568773234200743,0.3578581647251175,0.3559463986599665,0.3602005399151562,0.0,2.3655985428376347,56.7494164140338,186.9752491533633,274.8147042296131,fqhc7_100Compliance_implementation,18 -100000,95702,44390,420.7122108210905,6247,64.35602181772586,4898,50.75129046414913,1917,19.75925268019477,77.30793472821749,79.68266243354077,63.31631099018998,65.06951354480526,77.07697560536556,79.45010261943247,63.23255284337974,64.98698284727342,0.2309591228519281,232.5598141082992,0.0837581468102399,82.53069753183695,143.73304,101.09396929025542,150188.12564000752,105634.12393707072,367.39935,239.43917447552155,383460.1262251572,249753.3429663973,358.38122,173.6954692157529,371728.1770495914,179451.9131706436,3500.99696,1572.4689167338877,3629918.267120854,1614793.8910799448,1184.28551,517.8581904153081,1225340.107834737,528983.3759120054,1878.37006,769.787634814743,1937110.802282084,782435.5210229969,0.38076,100000,0,653332,6826.732983636705,0,0.0,0,0.0,31628,330.0140017972456,0,0.0,32812,340.0764874297298,1668727,0,59922,0,0,0,0,0,75,0.7836826816576457,0,0.0,1,0.0104491024221019,0,0.0,0.06247,0.1640666036348355,0.3068672963022251,0.01917,0.3250991155840195,0.6749008844159805,24.862495159546448,4.395476507541554,0.324009799918334,0.2354022049816251,0.2166190281747652,0.2239689669252756,11.300706986426578,5.740168917048381,20.23097752138584,12278.5560524434,55.32494400789507,13.802545884144692,17.764302653424192,11.716174024403102,12.041921445923084,0.5634953042057983,0.7502168256721596,0.7095148078134845,0.6022620169651273,0.1185050136736554,0.7545098039215686,0.9132530120481928,0.8933002481389578,0.7842323651452282,0.1574074074074074,0.4962738062379244,0.6585365853658537,0.6469594594594594,0.5487804878048781,0.1089670828603859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0044890762433626,0.0066038405745645,0.0086840822296254,0.0108107558376047,0.0130951896053113,0.0152338611822047,0.017590607452782,0.0195873970025966,0.0216191870284877,0.0235371304383483,0.0258626885286296,0.0277366407503393,0.0297723292469352,0.0316588929706525,0.0339081172724641,0.0362227241643699,0.0383708979163854,0.0404855772731528,0.0423329511101845,0.057019605385475,0.0708357318541001,0.0840764598501856,0.0970510285642169,0.1091831033428562,0.1244607055240673,0.1362908273133267,0.1481118821576056,0.1591018341469667,0.1692104726867096,0.1817653202967685,0.1948599798812343,0.2066356481280166,0.2175956797883621,0.227158239751867,0.2371116894623179,0.2461986412164348,0.2563635341094427,0.2650845688745703,0.2725919479686712,0.2796032453328086,0.2865796613340817,0.2928465771256138,0.2991905018888289,0.3047512495287665,0.3103133481371823,0.31598471082148,0.3212510514644031,0.3252977657835327,0.3298129667569889,0.3291714420548776,0.327992277992278,0.3268544004516903,0.3263491695747238,0.3263203347180655,0.324566380910025,0.3228360197994669,0.323279909074437,0.3243085680972548,0.3250805585392051,0.3260171004416048,0.32588480222068,0.3268742258518254,0.3279400246167617,0.3303212125593388,0.3308889005290451,0.3317503003948046,0.3330281312158621,0.3360545660163981,0.3396354083744626,0.3426451731086279,0.3455650968051629,0.3459055815719529,0.3508865790278202,0.351953198716739,0.3564215278602827,0.3554746739460115,0.3547480425617346,0.3474254742547426,0.3462697814619442,0.0,1.569377732863765,56.74772278987057,182.40610046221724,273.21422570462573,fqhc7_100Compliance_implementation,19 -100000,95710,44575,422.8502768780692,6271,64.35064256608506,4936,51.029150558980255,2011,20.666597011806505,77.38171245272493,79.75569994054142,63.34258245905804,65.09500689936712,77.13723592828936,79.51164283746824,63.25278826786507,65.00795969059224,0.2444765244355693,244.05710307317463,0.089794191192972,87.0472087748766,143.01408,100.65231146275087,149424.38616654478,105163.84020765948,370.925,242.49574782283756,386982.6872845053,252796.8632565432,366.31686,178.25314020916,379470.87033747777,183709.09566692624,3560.4527,1614.777239931121,3683037.812140842,1650222.926894911,1190.43793,520.7450624402616,1230105.2345627416,530394.7888833579,1970.8413,813.0375560485267,2027780.963326716,822110.1939096843,0.37999,100000,0,650064,6792.0175530247625,0,0.0,0,0.0,31845,332.11785602340404,0,0.0,33599,347.7901995611744,1670625,0,59883,0,0,0,0,0,71,0.7418242607877965,0,0.0,0,0.0,0,0.0,0.06271,0.1650306587015448,0.3206825067772285,0.02011,0.3341470857491608,0.6658529142508391,24.29169184508253,4.461901810914833,0.3247568881685575,0.2222447325769854,0.2214343598055105,0.2315640194489465,11.694072724946365,6.111071929649718,21.20115511105164,12265.41204376584,55.68672524947322,12.998040400316768,17.99692531142088,12.27822803363786,12.41353150409773,0.5544975688816856,0.7711941659070192,0.6887086712414223,0.5919487648673376,0.1224846894138232,0.746996996996997,0.9257425742574258,0.8881278538812786,0.7509433962264151,0.1466666666666666,0.4833518312985571,0.6810966810966811,0.6137339055793991,0.5410628019323671,0.116557734204793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0044197102859633,0.0065754759102163,0.0086646486398634,0.0109648676688976,0.0129429735234215,0.0155595207749171,0.017599738658173,0.019831736912587,0.0218548469648889,0.0241944578288549,0.026242030369298,0.0280948561321239,0.0301301002276496,0.0322900219807436,0.0343355182895308,0.0362169495738268,0.0382587942305696,0.0402591729761211,0.0420609445996081,0.0564084889501608,0.070783211365516,0.0841500010492518,0.0967640127924591,0.108428270042194,0.123984771573604,0.1364668435013262,0.1475645461804631,0.1589765503979488,0.1695807946451557,0.1827144796672629,0.1944597798200889,0.2063032886723508,0.2169407031659961,0.2274177226328757,0.2379334012310144,0.2476582363174093,0.2566063195771955,0.2644256940664126,0.2722693500933017,0.2790361390032854,0.2865475202506048,0.2927819192994912,0.2988726083362287,0.3041524466521734,0.3097984129331164,0.3149910581408436,0.3199038265825361,0.3236607431759056,0.3273158831674029,0.3264647334158282,0.3255024797702949,0.3240752465774626,0.3245951752678404,0.3239010948310345,0.3229933135895948,0.3217150979153506,0.3230081979284276,0.3238782351239599,0.3248905343348403,0.3254679056896584,0.3256970342745516,0.3275815302439126,0.3281016609073682,0.3287753388509056,0.3303930470878194,0.3314888907806248,0.3338856928464232,0.3372316285564671,0.3409828282028962,0.3437144805637644,0.3513527879657683,0.35283676703645,0.35715381076522,0.361927255550307,0.368213816966949,0.3698461538461538,0.3677130044843049,0.3690211345939933,0.3673548889754577,0.0,2.071430569921128,58.58146958944418,180.3667820275628,270.6744855862473,fqhc7_100Compliance_implementation,20 -100000,95857,44348,420.01105813868577,6184,63.28176346015419,4877,50.29366660755083,1989,20.40539553710214,77.44506122741345,79.72348847485341,63.40474875222951,65.08424642520059,77.19304818925552,79.4709273118392,63.31145391806293,64.99274739339482,0.2520130381579264,252.5611630142066,0.0932948341665778,91.49903180576756,143.03872,100.68133628367376,149220.94369738255,105032.84714071352,367.08532,239.1523484060452,382374.0884859739,248911.88825100972,358.46901,173.99061870828447,369865.2889199537,178319.1217674738,3486.08352,1597.6280526495354,3599389.5072868965,1629320.4606542222,1152.95798,513.9493130969629,1184828.5779859582,518217.8730227072,1940.9329,819.0639525286256,1993356.6667014407,828945.1666490277,0.37941,100000,0,650176,6782.770168062843,0,0.0,0,0.0,31589,328.92746486954525,0,0.0,32923,339.38053558947183,1676076,0,60200,0,0,0,0,0,60,0.625932378438716,0,0.0,1,0.0104322063073119,0,0.0,0.06184,0.1629899053794048,0.3216364812419146,0.01989,0.339561457689932,0.6604385423100679,24.59714523177979,4.411760551187432,0.3229444330531064,0.2337502563051056,0.2212425671519376,0.2220627434898503,11.096577333206923,5.716329565954278,21.17040348193865,12231.477144123866,55.35582330213074,13.639575091194278,17.766248971426723,12.026236853285909,11.923762386223824,0.5532089399220832,0.7763157894736842,0.6825396825396826,0.5736793327154773,0.1098799630655586,0.7127659574468085,0.9164619164619164,0.8823529411764706,0.7148148148148148,0.1088709677419354,0.4942431901151362,0.6984993178717599,0.6165540540540541,0.5265760197775031,0.1101796407185628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0044773549164801,0.0068036867667785,0.0087389874548333,0.0107403418212855,0.0130937725732773,0.0151450338140633,0.0172535103551653,0.0191975819215962,0.0213701431492842,0.0234484594669315,0.0256804709453777,0.0277920423967298,0.0297781297894444,0.0318562553445771,0.0338353237476904,0.0359059743321923,0.0379458272024537,0.0400095508009177,0.0418786611314001,0.0575447303666013,0.0717568894553204,0.0855267290658961,0.0982980420138087,0.1103174018705353,0.1261662515303753,0.1383932825785411,0.1499134093347924,0.1610952944563513,0.1711919005982512,0.1832036455870341,0.1958768453223037,0.2068875667694445,0.2175755061038195,0.227026551977941,0.2372026114861126,0.2463546776063497,0.2554112067609179,0.2639915642432763,0.2711137050260917,0.2782012283278779,0.2852931887567112,0.2923096951334974,0.2978252017915738,0.302746278804361,0.3080220226878025,0.313259952164494,0.3181563605814516,0.3222207825861622,0.3260921208921737,0.3261396375777484,0.3250752711824793,0.3244676362204281,0.3237443251423218,0.3236492392479889,0.3215337432673675,0.3209493022155641,0.3219557647981952,0.3217975997957273,0.322190826535871,0.3236403705363813,0.3251070209701919,0.3258586788269255,0.3270586136140601,0.3272744712483814,0.3276018804706371,0.3277094084954347,0.3295013156246084,0.331297550080268,0.3350889003286738,0.3364353815975549,0.3360183505814574,0.3366811951234918,0.3366214549938348,0.3405045216563541,0.3379451395572666,0.3381529850746269,0.3308946488294314,0.3304225352112676,0.3380782918149466,0.0,2.2323865209970406,57.63588375957681,182.6629952049856,266.1555435456879,fqhc7_100Compliance_implementation,21 -100000,95691,44572,422.0564107387319,6376,65.38754950831321,4986,51.593148780972086,1988,20.461694412222677,77.29747507811412,79.70012427769495,63.28577397120039,65.06558336071852,77.05357917488615,79.45623066282295,63.19499180641871,64.97722371494797,0.2438959032279655,243.89361487200745,0.0907821647816859,88.35964577055222,143.64768,101.14518064728423,150116.18647521708,105699.78435514754,369.5728,240.5365554363688,385694.088263264,250847.8592432293,363.44042,176.4855447208203,376476.2934863258,181936.85562507357,3591.49542,1632.3357323232276,3717995.882580389,1670684.9449402476,1195.74423,525.1429447961932,1236073.5492366052,535325.3230561076,1952.5404,819.0540691780768,2010821.6446687777,829207.0459506086,0.38066,100000,0,652944,6823.463021600777,0,0.0,0,0.0,31786,331.619483545997,0,0.0,33304,344.7764157548777,1664322,0,59732,0,0,0,0,0,57,0.585217000553866,0,0.0,0,0.0,0,0.0,0.06376,0.1674985551410707,0.3117942283563362,0.01988,0.3357249626307922,0.6642750373692078,24.641191551357903,4.386235160299695,0.3142799839550742,0.2296430004011231,0.2286401925391095,0.2274368231046931,11.019454616217402,5.647552039433091,21.17098279098505,12335.942996926437,56.50651426620551,13.579854297861251,17.700032838402418,12.752773202792158,12.473853927149676,0.5621740874448455,0.7834061135371179,0.6847479259731972,0.5973684210526315,0.1340388007054673,0.7294469357249627,0.9084158415841584,0.8616504854368932,0.7667844522968198,0.1548117154811715,0.5008223684210527,0.7152496626180836,0.6216450216450217,0.5414235705950992,0.1284916201117318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002726093477644,0.0048384151907978,0.0071983349408599,0.0094502591200081,0.0114949544270833,0.0137912770681822,0.0158500265187058,0.0178204879443633,0.0199026345933562,0.0222324628776241,0.0244327739711976,0.0265253079380733,0.0286313926811452,0.0305737603561271,0.0328019493257893,0.0348066241194906,0.0368566157417964,0.0389375752793122,0.0408972211529458,0.0427813617083363,0.0578606497440718,0.0721576098903974,0.0851137508394895,0.0980823243533235,0.1095253164556962,0.1251983665178477,0.1378578327831615,0.1497491932649605,0.1612454823463997,0.1716696727647513,0.1839298616428163,0.1960544143948837,0.2076789020803834,0.2184158632778264,0.2282186948853615,0.2396277067802626,0.2489550036882222,0.256578354510228,0.2654146358089914,0.2737464749982805,0.2814371951290161,0.2882831170048264,0.2957060593852935,0.3014203556291947,0.3073103649706101,0.3118943275106475,0.3159102306920762,0.319941330272304,0.3249178582096336,0.329297019744852,0.3282281917264292,0.3270460225625164,0.3263020980602839,0.3257277049750667,0.3243295532339197,0.3230880076035136,0.3220878320615521,0.3231584299703118,0.3243528790279978,0.3249465431218817,0.325132171346373,0.3264192569830201,0.3266005938192615,0.3262193082223857,0.327870425914817,0.3294328730790233,0.3318927525518182,0.3352568525371636,0.3365462128912411,0.3389615537059057,0.3427050634639006,0.3446450314998147,0.3475150602409638,0.3504124725648982,0.3538447129343448,0.3578587430727508,0.3601714373182305,0.3588235294117647,0.3543328748280605,0.3561802079322295,0.0,1.9456961779112747,59.294633932211205,184.46971858399013,274.03242608028927,fqhc7_100Compliance_implementation,22 -100000,95819,44423,419.09224684039697,6181,63.11900562518916,4840,49.8335403208132,1925,19.59945313559941,77.32864418348662,79.64007047927804,63.32870225298407,65.03857086789901,77.09512809714535,79.4121237256282,63.24179925050592,64.9572114677388,0.2335160863412682,227.94675364983163,0.0869030024781452,81.35940016020982,142.76064,100.50036153544268,148989.44885669858,104885.21690162129,367.61828,239.83922744965196,382980.9014913535,249627.38452626797,358.87283,174.235223200758,370642.65959778335,178753.62051121675,3470.05415,1573.7335261354303,3577091.923313748,1598371.3023638984,1147.95682,504.94867143791305,1181777.50759244,510788.8061460835,1884.35352,784.1734396271733,1921975.9337918367,780058.114969134,0.38012,100000,0,648912,6772.24767530448,0,0.0,0,0.0,31696,330.07023659190764,0,0.0,32874,339.2020371742556,1670691,0,59986,0,0,0,0,0,59,0.6157442678383201,0,0.0,0,0.0,0,0.0,0.06181,0.1626065453014837,0.3114382785956965,0.01925,0.3285582255083179,0.6714417744916821,24.91732482932258,4.384981045322835,0.3258264462809917,0.2332644628099173,0.2142561983471074,0.2266528925619834,11.40588232398834,5.906434649456505,20.38445471257792,12354.569164737635,54.83261581296426,13.513046977105924,17.697657356802473,11.578250722655238,12.04366075640062,0.5607438016528926,0.7989371124889283,0.6949904882688649,0.5718418514946962,0.1121239744758432,0.7427677873338546,0.9334975369458128,0.8822115384615384,0.7241379310344828,0.16,0.4953664700926706,0.7233748271092669,0.627906976744186,0.5279503105590062,0.0997706422018348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0047743583505656,0.0068584183026429,0.0091926702421582,0.0112263575350823,0.0133475870494807,0.0157272449291611,0.01769622500944,0.0200196210681218,0.022409823484267,0.0245909198028627,0.0265283293823055,0.0288471420056317,0.0311303273625694,0.0332250580046403,0.0354025268334004,0.037699726798576,0.0397938764295416,0.0420254479356011,0.0437362088346725,0.0582044247879919,0.0721022145082704,0.0860236468072617,0.0987935854053258,0.1118525077477705,0.1264126010888524,0.1386547047158506,0.1497861110519931,0.1613819618732311,0.1716093063149994,0.1832857681331107,0.1956027785592175,0.2070664230719039,0.2183865325754263,0.2284595156623059,0.2393934023085273,0.2490592583494311,0.2584193755418689,0.2664471069218102,0.2742910220978636,0.2817959448650027,0.2880223233128546,0.2942286467048812,0.3000384310522903,0.3047525186158563,0.3093710676305855,0.3140601503759399,0.3188780711591396,0.3234176147788747,0.3272424370636767,0.3278323828014399,0.326848570916461,0.3266309646606661,0.3263041870313701,0.3267732371914247,0.3250303300213462,0.3235938293550025,0.3242092457420925,0.3256989632969548,0.3261768901569187,0.3275571375046834,0.3290969106398118,0.3301322286383797,0.3305427187283727,0.3317715466493668,0.3331070673315406,0.3338930950076849,0.3365248783550463,0.3415409332215702,0.3462601690229839,0.3480946541308988,0.3503106909554411,0.3523401034439258,0.3580445260500344,0.3566638330027392,0.3536526946107784,0.355599816148307,0.3542938542938543,0.3514552443712246,0.3577235772357723,0.0,2.566592916427835,55.83819798418796,183.3044311581863,264.1931692254104,fqhc7_100Compliance_implementation,23 -100000,95733,44810,423.3127552672537,6212,63.4264046880386,4867,50.11855890863129,1905,19.387254133893222,77.35098256499538,79.69980016583939,63.33757887846742,65.07110165846099,77.11636008283274,79.4694046659726,63.25061097161132,64.98892249987513,0.234622482162635,230.39549986678765,0.0869679068561026,82.17915858585911,143.34056,100.84458308286916,149729.5185568195,105339.41596196624,369.64222,241.22026107758936,385385.2381101606,251240.63735583745,361.99965,175.7547631789867,374163.391933816,180439.40220189455,3465.77525,1581.2648068055662,3566450.962572989,1598018.674353676,1156.69647,517.3306974960813,1184140.6933868155,516361.7476350337,1864.95716,780.3170487031362,1899169.732485141,773351.4948949636,0.38207,100000,0,651548,6805.887207128159,0,0.0,0,0.0,31817,331.59934400885794,0,0.0,33079,341.52277688989165,1669139,0,59878,0,0,0,0,0,69,0.7207545987277114,0,0.0,0,0.0,0,0.0,0.06212,0.1625880074331928,0.3066645202833226,0.01905,0.33501221001221,0.66498778998779,24.62315518629068,4.411504674073654,0.3355249640435586,0.2249845900965687,0.2227244709266488,0.2167659749332237,11.303474838793884,5.798716384368347,20.173955134861604,12403.085027057992,55.11577883931905,13.046163923709852,18.42399966295683,12.060928247250464,11.5846870054019,0.5637970002054654,0.771689497716895,0.6864666258420086,0.6014760147601476,0.119431279620853,0.7225656877897991,0.9018567639257294,0.8466981132075472,0.7348484848484849,0.1834061135371179,0.5062972292191436,0.7033426183844012,0.630272952853598,0.5585365853658537,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290431683088,0.0043684941364875,0.0067882256247907,0.0092223937596489,0.0114691258858577,0.0137125754598853,0.0163606894934812,0.0185542390006429,0.020779034945165,0.0228024030539663,0.0251760581427531,0.0273047352159229,0.0294045073202829,0.0315524982493718,0.0336517630552747,0.0360206718346253,0.038136163603417,0.0401274281919309,0.0420968362392522,0.043859649122807,0.058616585936195,0.0730523386582138,0.086482405737533,0.0995331917488487,0.1118221303871131,0.1273653720109097,0.1386405336896921,0.1501000383125452,0.1611917657490198,0.1719014824826757,0.185050735721826,0.1969846200469732,0.2086170513629343,0.2189992669022791,0.2290554448688454,0.239457380664753,0.249274099883856,0.2581813681925054,0.2672317922879644,0.2752541751200669,0.2817328503142324,0.2885247820235239,0.2948366028538299,0.3003725309344417,0.3066614876675083,0.3123807413425908,0.3165330899361082,0.3210104117669493,0.3262783171521035,0.3311072984030619,0.3310245388025711,0.3301964782716525,0.3299201715043299,0.3286768963520556,0.3272521819290185,0.3251597676663959,0.3237628939487569,0.3240781838207492,0.3245270766759514,0.3250133809099019,0.3269994009285607,0.3283602707556292,0.3289228514602743,0.3301235505708349,0.3318935521800686,0.3325079497471719,0.3313035312864582,0.3345907204828366,0.3395374873176363,0.341428628025831,0.3442608022583436,0.3466836870379235,0.3469850671035221,0.3486461819288105,0.3549356626279703,0.356735566642908,0.3590541381456129,0.3617803184973459,0.3537604456824512,0.3560899922420481,0.0,2.720891692429087,56.30509496153756,182.1610604082715,267.031636679566,fqhc7_100Compliance_implementation,24 -100000,95850,44192,416.5049556598853,6310,64.68440271257172,4966,51.29890453834116,1950,19.96870109546166,77.51248185563044,79.79711624969012,63.42745123530996,65.11020637431876,77.27608265190479,79.5632453412232,63.34015707842759,65.02664185091025,0.2363992037256537,233.87090846692612,0.0872941568823719,83.56452340851206,145.343,102.2006115473237,151635.8894105373,106625.57281932572,372.5726,242.86720373894815,388217.6943140323,252896.4671246199,359.14542,173.96498133224364,372031.0276473656,179408.67353429514,3542.40543,1606.9405108166964,3660839.2175273863,1641574.8260998405,1183.4413,519.1515503973857,1219707.44913928,526656.0671855875,1913.02518,791.091673991826,1960879.5826812729,795161.6305919791,0.37937,100000,0,660650,6892.540427751696,0,0.0,0,0.0,32102,334.39749608763697,0,0.0,32980,341.3458528951487,1666298,0,59714,0,0,0,0,0,71,0.7407407407407408,0,0.0,1,0.010432968179447,0,0.0,0.0631,0.1663283865355721,0.3090332805071315,0.0195,0.3254866455409688,0.6745133544590313,24.74447039450503,4.345381861861092,0.3318566250503423,0.2323801852597664,0.2176802255336286,0.2180829641562625,11.456215802317503,5.98896342826523,20.52281617630132,12239.919851885295,55.8806073111736,13.57881550639492,18.48971542725479,12.144087959599618,11.66798841792428,0.5662505034232783,0.7824956672443674,0.7069174757281553,0.5864939870490287,0.1015697137580794,0.7219662058371735,0.900497512437811,0.8478802992518704,0.7279151943462897,0.1481481481481481,0.5109170305676856,0.7194148936170213,0.6615878107457899,0.5363408521303258,0.0899653979238754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021957784388723,0.0045269948653548,0.0067403886112772,0.0091424744548507,0.0111339117007659,0.0134648632157022,0.0157703976705829,0.0182941752325012,0.0204425474559137,0.0224974179099898,0.0248632928502672,0.0270541904254009,0.02917120486632,0.0312564324235313,0.0332274892265819,0.0354383572963146,0.0376042550549473,0.0395529428840989,0.0419060282767002,0.0435796531117912,0.0583806107124979,0.0723434510304158,0.0858585858585858,0.0992427345579817,0.1110455933452669,0.1258502682834086,0.137903259994065,0.1488511063617127,0.159730669910579,0.1698880976602238,0.1822082195316028,0.1942218382114699,0.205844994734728,0.2161208957994387,0.2256700351493848,0.235888590351721,0.2457838572415175,0.2539251139911502,0.2630500260434359,0.2703505644682115,0.277468313554533,0.2840751569652987,0.2898082411491379,0.2954032460320304,0.301720068270127,0.307567587486028,0.3125038961686636,0.3169295078852365,0.3210643701574123,0.3254745464569823,0.3250810926735115,0.3238576455928467,0.3235269395645961,0.322852540130027,0.3225319825482511,0.3218197906813536,0.3203063319122059,0.3206815280369243,0.3217483064982809,0.3222918372432451,0.3237063328974406,0.3252122190928249,0.3262821583695289,0.3272124287749288,0.3281783250996396,0.3282926198785059,0.3301393482009101,0.3324830461021589,0.3365264473136193,0.3400570736093194,0.3426244910742249,0.346765365167075,0.3497985745274248,0.3548459804658151,0.3571957769957399,0.3579413134606428,0.3636636636636636,0.3629731861198738,0.3621154883971937,0.3657806065144141,0.0,1.9797417898492995,57.35245597526851,184.1492695628966,274.0392621146089,fqhc7_100Compliance_implementation,25 -100000,95721,44434,419.4168468779056,6285,64.22833025145997,4940,50.84568694434868,2029,20.72690423209118,77.31288813594676,79.67041022635809,63.318020272784125,65.06167609976751,77.05629966317764,79.41816866237394,63.22139179875183,64.96949086100663,0.2565884727691241,252.24156398414263,0.0966284740322933,92.1852387608766,143.98296,101.32129123910885,150419.40639984954,105850.64013028367,369.61813,240.779870624047,385391.0427178989,250793.5657738388,360.45262,175.50534865005218,371419.4272939063,179386.8247070907,3564.82778,1622.3087442629765,3672950.6795791937,1643613.141160405,1198.94004,533.306927330319,1231881.1023704307,536566.7357677798,1995.84426,844.440140054756,2040690.6530437416,844327.6593951547,0.37986,100000,0,654468,6837.245745447707,0,0.0,0,0.0,31819,331.6200206851161,0,0.0,33062,340.30150123797284,1664954,0,59788,0,0,0,0,0,70,0.7312919839951526,0,0.0,2,0.0208940566855757,0,0.0,0.06285,0.1654556942031274,0.3228321400159109,0.02029,0.3289852874260579,0.6710147125739421,24.74799720703444,4.461459799747298,0.3139676113360324,0.2248987854251012,0.2253036437246963,0.23582995951417,11.202182236316638,5.679055885260676,21.666671282585984,12263.898723142687,55.67636643643154,13.239863488957848,17.43951740031503,12.196134853089394,12.80085069406926,0.5518218623481781,0.774977497749775,0.7079303675048356,0.5723270440251572,0.111587982832618,0.7181467181467182,0.9270833333333334,0.8883495145631068,0.6944444444444444,0.1336032388663967,0.4927297668038409,0.6946354883081155,0.6426690079016681,0.5365853658536586,0.1056644880174292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129757540156,0.0049970099027965,0.0073661461662557,0.0095376427091374,0.0116150161206659,0.0135539714867617,0.0158968084021617,0.0181927698543149,0.0204980882082319,0.022424509271869,0.0245152823204929,0.026862453149869,0.0290233667928254,0.0311991430278309,0.0334265286962622,0.0356352963062485,0.037866550695825,0.0400095458460006,0.0419907657751341,0.0438338751354505,0.0580282101878243,0.0723231942744137,0.0859297167486393,0.0975963661598637,0.1100086463232037,0.1252935327593137,0.1376693939490412,0.149484755578266,0.1597974488814819,0.1699645013566702,0.1829273545691456,0.1948966457181797,0.2062376980545255,0.2162431217249565,0.226206198274344,0.2359393697646589,0.245615210280113,0.2539955879704664,0.2623286037238574,0.2704899241156376,0.2782822199573798,0.2852078067958438,0.2919083355034208,0.2973400810687645,0.3023767552124491,0.3078469336161502,0.3134562131141378,0.3181835547009309,0.3237276710481968,0.3271631055637825,0.3263956376201274,0.3264169412543256,0.3262168001016647,0.3249427586007014,0.3248956469886702,0.3228419062840984,0.3217851691681506,0.322797013793899,0.3229054111997256,0.3232091279309664,0.3248438793168309,0.3247730838745556,0.3265280376779294,0.3273546622424501,0.3274584128057172,0.3285003925673907,0.3289526427303441,0.3329956951126867,0.3349223163841808,0.3379335173406936,0.3395578745022655,0.3413078149920255,0.3406738189346885,0.3404255319148936,0.3413851670126439,0.3440503025269901,0.3484030242246567,0.348582995951417,0.3527615875659173,0.3600455753892898,0.0,2.9291565167727667,55.89539105324948,178.34110208619484,281.26465622928924,fqhc7_100Compliance_implementation,26 -100000,95783,44861,423.81215873380455,6225,63.72738377373855,4934,50.93805790171533,1980,20.34807846903939,77.37208356525132,79.70925677567148,63.35007434272507,65.07865540259417,77.13479666559175,79.47119358158916,63.26356001462415,64.99383598712862,0.2372868996595656,238.06319408231505,0.0865143281009253,84.81941546554594,143.0044,100.65544493835922,149300.3977741353,105086.96213144214,372.51263,243.4372561157897,388353.9458985415,253595.82192642716,365.47244,177.41719449199064,377487.93627261627,182174.17006817783,3543.2474,1606.038016911639,3664025.8814194575,1641527.7522228789,1217.73252,531.7547020132978,1258373.6049194534,542199.358062498,1937.17398,796.9635111939974,1992960.6506373785,807990.7155201125,0.3851,100000,0,650020,6786.381717006149,0,0.0,0,0.0,32055,334.07807230928245,0,0.0,33502,345.6041259931303,1670539,0,59985,0,0,0,0,0,67,0.6994978232045352,0,0.0,0,0.0,0,0.0,0.06225,0.1616463256297065,0.3180722891566265,0.0198,0.3324137931034482,0.6675862068965517,24.521520046589263,4.370860895330069,0.3177948925820835,0.2312525334414268,0.2276043777867855,0.223348196189704,11.36587119030584,5.966505798053884,20.87287809902864,12432.666651793375,55.87607161482808,13.6968137901281,17.718150627122945,12.41157287524345,12.0495343223336,0.5638427239562221,0.7922874671340929,0.7193877551020408,0.5592163846838825,0.1107078039927404,0.747135217723453,0.9241071428571428,0.902439024390244,0.7161572052401747,0.1351351351351351,0.4976551724137931,0.7070707070707071,0.6545768566493955,0.5190156599552572,0.1045454545454545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0042678723490531,0.0066266160621866,0.0089698398025213,0.0108817248042306,0.0131230656458706,0.0154623938680447,0.017654142090332,0.0200907455853499,0.0223723262716201,0.0243387544706449,0.0265704697297796,0.02882253173665,0.0309514003294892,0.0332773039918327,0.0351810714470217,0.0373559946589932,0.0393964533858757,0.0415506421179502,0.043580560529713,0.0579672336429093,0.0727291742927365,0.0857373474778816,0.0987590757688791,0.1113054288393261,0.1279502186912333,0.1402456471286415,0.1516746411483253,0.1628150139769114,0.1737365297684084,0.1860337539126786,0.1987376248324759,0.209635883560974,0.2201138934735323,0.229831082567193,0.2409283681582123,0.2507221968167571,0.2601330845491536,0.2683758940007027,0.2767138654548368,0.2848917203343777,0.2913028741073202,0.2967664161111899,0.3024274633725941,0.3078061682560481,0.313039303782666,0.3176477948076321,0.3213160168759213,0.3272988245638989,0.3313474541644149,0.3308558679640879,0.3299833875640128,0.329745872541838,0.3293065329537736,0.3279365456597944,0.3256939022336533,0.324138695026033,0.3256649656236155,0.3260590500641848,0.3278776399957117,0.3292687495317299,0.3301130077445867,0.3310100883251706,0.3307200929152148,0.3310971651157758,0.3321841782235106,0.3320638011511698,0.3355126018571158,0.3369469571644785,0.3387141775280003,0.3410014149436304,0.3460065936403275,0.3460255522688653,0.3475409836065574,0.351818611242324,0.3537713472485768,0.3574377006573918,0.3608635373341256,0.3621621621621622,0.3629183903723204,0.0,2.233133114852997,57.33714711517074,184.89633791488268,271.7765521626273,fqhc7_100Compliance_implementation,27 -100000,95656,44812,425.46207242619386,6093,62.54704357280254,4776,49.40620556995901,1887,19.37149786735803,77.25911226955019,79.65614362876835,63.27736057920528,65.04603442695267,77.02486550820436,79.42318899961836,63.19030777878336,64.96218565751934,0.2342467613458296,232.95462914998663,0.0870528004219153,83.84876943333097,144.08284,101.39699575426776,150626.03495860164,106001.71003833294,370.59884,241.9512745543968,386926.9151961194,252437.11273145105,358.95138,173.44450416087017,372738.6363636364,179276.15697662468,3421.5519,1552.2532483651455,3540545.830894037,1586357.2262745083,1147.98853,501.3865384283963,1188384.9105126704,512419.5772772406,1851.23076,780.3682818414405,1901842.163586184,786010.5530361632,0.38201,100000,0,654922,6846.637952663711,0,0.0,0,0.0,31863,332.5666973321067,0,0.0,32854,340.888182654512,1658987,0,59593,0,0,0,0,0,71,0.7422430375512252,0,0.0,1,0.0104541272894538,0,0.0,0.06093,0.1594984424491505,0.3096996553421959,0.01887,0.3254761161411177,0.6745238838588823,24.67962223343708,4.391798599011489,0.3285175879396985,0.2328308207705192,0.2152428810720268,0.2234087102177554,11.12626320320992,5.657454971251566,20.12018940582585,12332.28011676541,54.116129898235606,13.289173877371498,17.57330926497742,11.408303694001244,11.845343061885446,0.5613484087102177,0.7841726618705036,0.6953473550031868,0.585603112840467,0.1087160262417994,0.6955074875207987,0.8924731182795699,0.8377659574468085,0.7123287671232876,0.1404255319148936,0.5162283156127588,0.7297297297297297,0.6504610226320201,0.5512978986402967,0.0997596153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360138974707,0.0046441355114126,0.0068408338915616,0.0092464639895951,0.0113840988860064,0.013657751614283,0.0156718396312988,0.0180793613524301,0.0202103842733155,0.0223657542940201,0.0243087238688907,0.0264295468780482,0.028203202945805,0.0301634885805235,0.0324974200206398,0.0345144913300176,0.0362278302668655,0.0381900471277015,0.0399950071252483,0.0420463312412685,0.0572596068431448,0.0714442826767777,0.0849435040114252,0.0970989311851734,0.1091715507682559,0.1250966395899304,0.1370139456829986,0.148393214848911,0.1596642249906432,0.169655513079335,0.1827085917695917,0.1950717350786702,0.206978061480142,0.2178029057918611,0.2280933946552846,0.2387520963138195,0.2484306638767358,0.2574983362097165,0.2651705585950385,0.2728662039803282,0.2797117593817447,0.2861197776161768,0.293046986236355,0.2997114344114464,0.3056815410875396,0.3110353010975971,0.3166133182702567,0.3212108069495114,0.3256622924860143,0.330595020768844,0.3307277955530355,0.3295358824585387,0.3286892318137456,0.3274792638108104,0.3281588178222255,0.3261444338549513,0.3242131673389017,0.3249123038158133,0.326305858135346,0.3278121978297461,0.3292586750788643,0.3299013978537203,0.3308428475486904,0.3307135839957131,0.3308026812099079,0.3324225865209472,0.3324420423837292,0.3364247987927565,0.3397273749297358,0.3412395709177592,0.3430563784695319,0.3473499548136728,0.3510530962290327,0.3537409798708697,0.3554599850411368,0.3600664372997983,0.3594990836896762,0.3618181818181818,0.3619922092376182,0.3672514619883041,0.0,2.0414903045268056,53.03889815677607,182.97999689305803,269.412715609589,fqhc7_100Compliance_implementation,28 -100000,95621,44566,421.9052300226938,6141,63.030087533073285,4795,49.61253281183004,1963,20.152476966356765,77.28554750318864,79.71759442164259,63.27381344368565,65.07192597057339,77.04087855699362,79.47388696343445,63.183422976715065,64.98468523266075,0.24466894619502,243.7074582081351,0.0903904669705824,87.2407379126372,143.70532,101.0872944348382,150286.35969086288,105716.62546390251,368.32745,240.5105880911744,384629.8511833175,250960.8356979488,359.345,174.1035727064529,372582.47665261815,179530.5206590984,3474.2633,1575.543037702155,3597479.099779337,1612403.5608482433,1166.80892,512.5498457608512,1205577.5300404725,521670.5526424468,1929.0241,804.1879196603322,1983025.7161083864,810745.6562875751,0.3811,100000,0,653206,6831.198167766495,0,0.0,0,0.0,31686,330.7850785915228,0,0.0,32865,340.6260131142741,1664613,0,59712,0,0,0,0,0,67,0.6797669967894082,0,0.0,0,0.0,0,0.0,0.06141,0.1611388087116242,0.319654779351897,0.01963,0.328982128982129,0.671017871017871,24.770424538884683,4.458121175271351,0.319082377476538,0.2289885297184567,0.2193952033368091,0.232533889468196,11.294140611708364,5.770807226642694,20.75195217974285,12349.640112695848,54.27923421545174,13.011282618161085,17.299955381723837,11.709801310641735,12.258194904925086,0.5547445255474452,0.7768670309653917,0.6993464052287581,0.5750950570342205,0.1183856502242152,0.7142857142857143,0.9173333333333332,0.8817204301075269,0.7024793388429752,0.1222707423580786,0.50041934582052,0.7040110650069157,0.6407599309153713,0.5370370370370371,0.1173814898419864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021787596270774,0.0043513982290113,0.0068228891686634,0.008863139706256,0.0111606234485003,0.013222096588536,0.0154440942150952,0.0178367113435763,0.0200161602111055,0.0223262292227809,0.0247122545700744,0.0268392930538429,0.0289240460726086,0.0309346362783601,0.0331756980009912,0.035240331405993,0.0372646348666825,0.0392057079356507,0.0413227441632925,0.0431626160425576,0.057931928416123,0.0721928215876342,0.0854560739806641,0.0982447637911416,0.1104597118350445,0.125677851211659,0.1375253722143699,0.1495815341969188,0.160718298855987,0.1700191262115058,0.183018949367635,0.1955305445319107,0.2074959675661537,0.2173117384062418,0.2281628332635014,0.2382897482573369,0.2485215699864733,0.258461919951308,0.2674599656767477,0.2748867870449986,0.2819651626053924,0.2888108203056385,0.2955736266862657,0.3009917395062914,0.3065256290092875,0.3116490353161916,0.3162674750714035,0.3217816736316379,0.3261185319673194,0.3305158614860403,0.3292830778349543,0.3286003219548438,0.3272042752999901,0.3262224664825072,0.3257777315358433,0.324436672648904,0.3234412422478468,0.3231640091491007,0.323733625200944,0.3236978700554859,0.3230798086842352,0.32539902022756,0.3266701625589931,0.327414232678803,0.3291909042834479,0.3299116424116424,0.3318225596283496,0.3335525079842194,0.3381312515247621,0.3431686218746297,0.3454578521414931,0.3476713929159364,0.3463066927395445,0.3494214372716199,0.3527806530535428,0.3611965003546938,0.36765605875153,0.3739359546007296,0.3829728989871339,0.3782245827010622,0.0,2.034262821254379,53.55246569393817,187.388387406844,263.27300483085577,fqhc7_100Compliance_implementation,29 -100000,95824,44630,422.023710135248,6213,63.77316747370179,4878,50.47795959258641,1947,20.026298213391215,77.35864855579545,79.66352516415513,63.35358995694328,65.05447521057657,77.12128520533662,79.42604746126828,63.26631657724138,64.9694397464963,0.2373633504588355,237.47770288684933,0.0872733797018909,85.03546408026352,143.79442,101.16419262865,150060.96593755216,105572.91767057314,369.48336,241.06699603620615,385169.435631992,251156.69982071943,364.92783,176.62043436708925,378748.06937719154,182667.55850941245,3524.30948,1593.3849671029202,3648390.5180330607,1633316.5147592674,1186.04707,519.6694736686524,1223892.521706462,528475.484284326,1920.79176,794.8618918967919,1976883.077308399,805040.4177308064,0.38206,100000,0,653611,6820.952997161463,0,0.0,0,0.0,31864,332.08799465687093,0,0.0,33482,347.2616463516447,1665545,0,59857,0,0,0,0,0,58,0.6052763399565871,0,0.0,2,0.0208715979295374,0,0.0,0.06213,0.1626184368947285,0.3133751810719459,0.01947,0.3271783915763772,0.6728216084236228,24.803589941298632,4.405973850814524,0.3202132021320213,0.2320623206232062,0.2136121361213612,0.2341123411234112,11.290799519414078,5.713225900574716,20.66164112545848,12339.635711426292,55.337168491764935,13.419223526964666,17.86536470886762,11.573161126027095,12.47941912990556,0.552070520705207,0.7800353356890459,0.6971830985915493,0.5604606525911708,0.1199649737302977,0.7390965732087228,0.9185750636132316,0.8758949880668258,0.7357723577235772,0.1769911504424778,0.4852531997774068,0.706359945872801,0.63167104111986,0.5062814070351759,0.1058951965065502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024796065016294,0.0046794761417617,0.0069547938400397,0.009132698103443,0.011297827809725,0.0136717359239102,0.0157886158986269,0.0178103291748696,0.0202276117115828,0.0224536350338083,0.0244696868822402,0.0269150289254502,0.0290446200158219,0.0312011196180126,0.033128151195521,0.035125951478471,0.0370941373672992,0.0392175157056664,0.041110972620383,0.043005715356507,0.0580454014354865,0.0713852587558808,0.0849186135479881,0.0978172914236472,0.1098862881893581,0.1255878343390364,0.1372050124037911,0.1491410031381309,0.1605901758356731,0.1713480134651257,0.1842445253116858,0.1970945829006576,0.2082594843802668,0.2191837761564629,0.2283660461685802,0.2383226764480989,0.2482981050376091,0.2573093494425882,0.265712048835283,0.2734707903780068,0.2813053289359486,0.2879816470808558,0.2948649640654045,0.3010837769145926,0.3066216068367756,0.3121100781693093,0.3164374820134883,0.3209202945553054,0.3246691014582847,0.329188775375518,0.3285620026123372,0.3280779231499443,0.3269891322709612,0.3260649819494585,0.3250739040658377,0.3235942330649851,0.3228043509238588,0.3232007886953664,0.3243557516373399,0.325913466700068,0.3255333921300032,0.3255210910746451,0.3263385636566051,0.326876621633712,0.3280167436489607,0.329481582180858,0.3312748377505217,0.3336071270613508,0.3350956963096119,0.3389451847123593,0.3427867955498814,0.3448607108549472,0.3469220073315636,0.3500114933721553,0.3496667605369379,0.3539385376192158,0.3593510866238139,0.3614678899082569,0.3598209289311695,0.371496249506514,0.0,1.6468530048248862,56.93302686836781,185.0105782872562,268.51955323361966,fqhc7_100Compliance_implementation,30 -100000,95852,44530,421.14927179401576,6242,63.89016400283771,4892,50.33802111588699,1940,19.728331177231563,77.41454581429173,79.70276354696774,63.37712166936033,65.06797972666125,77.17260991018279,79.46485320162944,63.288064907230606,64.98354751228989,0.2419359041089421,237.91034533830668,0.0890567621297222,84.43221437136117,142.94566,100.5889143846008,149131.6404456871,104941.90458686392,371.49883,242.50991923085127,386897.3521679255,252326.439960409,361.74064,176.1616171096122,373171.0866752911,180529.7572067853,3512.1916,1589.1952194792748,3617021.042857738,1610806.8996779153,1157.22188,506.602128454163,1190871.7814964736,512096.4283000481,1896.33272,791.1193497810455,1931227.5174226933,786795.4003326313,0.37968,100000,0,649753,6778.710929349413,0,0.0,0,0.0,31967,332.79430789133244,0,0.0,33088,341.02574802821016,1671864,0,59989,0,0,0,0,0,74,0.7615907857947669,0,0.0,1,0.0104327504903392,0,0.0,0.06242,0.164401601348504,0.3107978212111503,0.0194,0.3341452275841072,0.6658547724158929,24.60193934675732,4.454166352639974,0.3225674570727718,0.2246524938675388,0.2371218315617334,0.2156582174979558,11.37127789235325,5.938263843174519,20.534019313537502,12242.500797466304,55.147738218472654,13.100657768913614,17.744591953714128,12.684557958747313,11.6179305370976,0.5600981193785772,0.7907188353048226,0.6831432192648923,0.5706896551724138,0.124170616113744,0.7329635499207607,0.9213759213759214,0.8507462686567164,0.7385892116182573,0.1415094339622641,0.5,0.7138728323699421,0.6258503401360545,0.5266594124047879,0.1198102016607354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022169357696006,0.0044779899701129,0.0068142409523712,0.0087202809981117,0.0107734525866449,0.0129325695214644,0.0151792991035044,0.0172589660940878,0.0193368472664868,0.0216637515726165,0.0237641611865691,0.0260752715746714,0.0283905837383504,0.0303448275862068,0.0322401047519873,0.0341152046602423,0.0362426800753202,0.0384168963873401,0.0405584968338004,0.0424507203411868,0.0571938020062146,0.0710889081655048,0.0855945521215296,0.0980721575874669,0.1109531482008024,0.1260720774008196,0.1376223568795287,0.1496614547348504,0.1602300125888151,0.1697848506591558,0.1820959101568382,0.1933659844528775,0.2046350924084879,0.2151980333242283,0.2252697742906749,0.2361194095908296,0.2464962258470938,0.2559388695359029,0.2640674967680479,0.2725274473663121,0.2795054760775787,0.2858228499275125,0.2927936984778417,0.2982603278060002,0.3032210247500091,0.308664037466108,0.3143640254815334,0.3192880678854496,0.3237200259235256,0.3277961177868744,0.3270369971457806,0.3260442023902848,0.3245111427083186,0.3247180790389419,0.3244511081751109,0.3230326765389793,0.3204994468152363,0.3212588100311424,0.3220159694260561,0.3223910371729334,0.3230496122582453,0.3230235127031718,0.3239048235810232,0.3250273029175117,0.3270716376373495,0.328161950053273,0.3280424782781532,0.3312384704374199,0.3344657303961055,0.3368638184775279,0.3385926731955023,0.3431351808758197,0.3455749172443945,0.3471814555580643,0.3469787392763894,0.3502005189903279,0.3530668294171498,0.3530127814972611,0.3479097909790979,0.3536818008393743,0.0,2.7661585996833917,54.735751402537225,181.59548316768263,275.0737286661886,fqhc7_100Compliance_implementation,31 -100000,95711,44468,420.6413055970578,6216,63.78577175037352,4874,50.3494896093448,1912,19.590224739058208,77.36002699221102,79.73277444621371,63.33690834044432,65.08895747316926,77.12048330634427,79.49452496676993,63.24842450519049,65.00329892913268,0.2395436858667494,238.2494794437804,0.0884838352538324,85.65854403657625,143.44616,100.90817627404104,149874.26732559476,105430.0720649048,367.92467,239.57643037486423,383843.0065509711,249743.2273979628,353.19905,171.1198284018832,365911.1909811829,176239.5606687575,3481.17454,1564.809942074506,3600627.482734482,1598386.7811165948,1141.51086,501.6525769016192,1178100.3437431434,509568.7401673991,1876.34624,784.5549941271778,1925459.8739956743,790278.4269691383,0.382,100000,0,652028,6812.466696617944,0,0.0,0,0.0,31689,330.4949274378076,0,0.0,32499,336.3981151591771,1672351,0,59904,0,0,0,0,0,58,0.6059909519282005,0,0.0,0,0.0,0,0.0,0.06216,0.1627225130890052,0.3075933075933076,0.01912,0.3146446078431372,0.6853553921568627,25.179079992540515,4.454998686086773,0.3208863356585966,0.2308165777595404,0.2258924907673369,0.222404595814526,11.23736130616988,5.702577203420934,20.3427638233575,12359.667750575469,54.63389612607798,13.10760618533732,17.63854966386962,12.13294523774966,11.754795039121372,0.5510874025441116,0.7555555555555555,0.6847826086956522,0.5885558583106267,0.1079335793357933,0.7246963562753036,0.9344262295081968,0.8333333333333334,0.7601626016260162,0.1402714932126696,0.4921681780708986,0.6693017127799736,0.6333907056798623,0.5391812865497077,0.0996523754345307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024207189231345,0.005017790347596,0.0071643850907725,0.0093866189886019,0.0115952642499694,0.0136348824895116,0.0159633027522935,0.0184633285023168,0.0205366726296958,0.022686787198755,0.0251389202157108,0.0270830766703626,0.0290300686931841,0.0311470006591957,0.033377699363399,0.0350898958882582,0.0370869159846679,0.0390567428150331,0.0411253835352852,0.043075063560205,0.0581048058647841,0.0725289906643781,0.0860101126660092,0.0985485906604964,0.1105195462404588,0.1259342262439612,0.1378853130237393,0.1503384130767921,0.1616079629194523,0.1719814224882281,0.1849059042776658,0.1962971779778393,0.2081861557021595,0.2184060078048993,0.2284149519965688,0.2393035542215379,0.2486556440636365,0.2575316277762159,0.2668541236762738,0.2735589804657979,0.2808409269623942,0.2882605951518268,0.2952690715552927,0.3001472895137051,0.3056250455395526,0.3107908351810791,0.3158592899423094,0.3210634726884345,0.3252605009384506,0.3296830883711111,0.3293737373737374,0.328592278460098,0.3277483957407799,0.3278491636279446,0.3268104089219331,0.3250371414130584,0.3232521354001898,0.3245701735695671,0.3254428781103867,0.3262276089475091,0.3270716784852283,0.3269530556268129,0.3277244258872651,0.3288168832037082,0.3286108114587079,0.3297797654645206,0.3300766228957188,0.3336062218583708,0.3355964400042213,0.3396775995531083,0.3388766721641927,0.3397726666310902,0.3402996348986529,0.344796104686549,0.3498550453567755,0.3485653560042508,0.3534351145038168,0.3578520770010132,0.3587828492392808,0.3622350674373796,0.0,2.2635805128276814,54.01537568162426,174.39304514928602,283.500240658279,fqhc7_100Compliance_implementation,32 -100000,95750,44243,419.11227154047,6196,63.65535248041776,4833,49.8798955613577,1911,19.613577023498696,77.33346816806463,79.69472491095547,63.32120940122799,65.06990520770765,77.0953720190697,79.45835752044663,63.23269660307953,64.98449318786244,0.2380961489949271,236.3673905088461,0.0885127981484572,85.41201984520796,144.1616,101.3702447041768,150560.41775456918,105869.70726284783,368.89705,240.6573417295137,384697.8694516971,250766.05924753388,357.58436,173.4814503322358,368882.2349869452,177751.63824632642,3450.9206,1571.6418757454455,3566073.566579635,1603380.381979579,1198.47219,527.8254391769923,1236234.7676240208,535831.2770652398,1869.91272,785.0138318095677,1921250.7154047,792029.536224449,0.37955,100000,0,655280,6843.655352480418,0,0.0,0,0.0,31840,331.9268929503916,0,0.0,32786,337.95300261096605,1667108,0,59791,0,0,0,0,0,66,0.6892950391644909,0,0.0,0,0.0,0,0.0,0.06196,0.1632459491503095,0.3084247901872176,0.01911,0.3319024988502222,0.6680975011497777,24.693930078817512,4.366135994680001,0.3269190978688185,0.2309124767225326,0.2195323815435547,0.2226360438650941,11.067734386424492,5.674672216924324,20.32569795349578,12240.02086370376,54.80248394549849,13.26545656146881,17.96474198958645,11.75492250645832,11.817362887984908,0.5603145044485827,0.782258064516129,0.6930379746835443,0.5739868049010367,0.1217472118959107,0.7192307692307692,0.9280205655526992,0.851063829787234,0.714859437751004,0.1506276150627615,0.5018397962071893,0.7042640990371389,0.6352636127917026,0.5307881773399015,0.1135005973715651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021176351385581,0.0041475682472721,0.0063942512636258,0.0087382389400312,0.0110758528101543,0.01322689366555,0.0154039065367206,0.0176971280439264,0.0198785822329422,0.0219874708266797,0.0241229419122019,0.026159089975771,0.028177414876441,0.0303092719801439,0.032117616713954,0.0341195683631702,0.0361166335321404,0.0382268708753579,0.0401825629509492,0.0421197350331208,0.0567658694948693,0.0710002197825199,0.0834496290777834,0.0963999873794474,0.1091273398365409,0.1243391278602546,0.1351864622566442,0.1471721407437365,0.1581904009227417,0.1685147453083109,0.1812286579125957,0.1941033270219096,0.2056053421499108,0.2161857677247172,0.2263266742937604,0.236664045802372,0.2460059617510131,0.2551881696227604,0.263917104561292,0.2713896395364815,0.278785986097135,0.2857076023391813,0.2921502514049098,0.2979212843706943,0.3030950358053161,0.3090472673559822,0.3143543002888114,0.3199400033049027,0.324159258827944,0.3278528449276892,0.3274326745611553,0.3271679639153992,0.3269035818878125,0.325830839729968,0.3252460381173252,0.3240274880353417,0.3218254156957852,0.3220500517606849,0.32264460549706,0.3237132549916062,0.3235878034162421,0.3253838098437098,0.3272886992533099,0.328299526405147,0.3289046140515561,0.3301097752221641,0.3308488848429677,0.3339518208692371,0.3365817618913594,0.3389151224157771,0.3415144077811108,0.3427434332714247,0.3461199294532628,0.3476899579992363,0.3493111907907152,0.3485193621867881,0.3525878003696858,0.3552820512820512,0.3529743445164928,0.355859375,0.0,2.276908605568529,57.00110285959615,178.2431140630704,267.09356274471145,fqhc7_100Compliance_implementation,33 -100000,95793,44396,419.780150950487,6108,62.54110425605211,4783,49.3042289102544,1865,19.103692336600798,77.34149214859087,79.68068925552342,63.33904717832892,65.07236354135935,77.1117437531231,79.45185430484801,63.253970869112685,64.99007782182518,0.2297483954677801,228.83495067540596,0.0850763092162338,82.28571953416974,144.36796,101.60478222937932,150708.2563444093,106067.02183810851,373.84269,244.20689644517515,389655.1313770317,254326.0430774432,362.95291,176.36876668880987,374685.6242105373,180907.0207174164,3413.01472,1545.597506314282,3524155.3558193184,1574725.6337250976,1150.95651,508.06146132110393,1188288.6745378054,517159.20925443753,1828.21858,760.1517247239404,1875951.729249528,766460.7861847507,0.37947,100000,0,656218,6850.375288382241,0,0.0,0,0.0,32080,334.2415416575324,0,0.0,33319,343.65767853600994,1663755,0,59697,0,0,0,0,0,74,0.7516206820957689,0,0.0,0,0.0,0,0.0,0.06108,0.1609613408174559,0.3053372626064178,0.01865,0.3323956868260665,0.6676043131739334,24.51258602587247,4.376668673587473,0.32573698515576,0.2331172904035124,0.2216182312356261,0.2195274932051014,11.1215596581839,5.697775646256821,19.871586621446763,12245.381871656466,54.19879187918899,13.232718361601378,17.790204678397853,11.687061054557368,11.488807784632392,0.5628266778172695,0.7829596412556054,0.7021822849807445,0.5688679245283019,0.1161904761904761,0.7348659003831418,0.9110576923076924,0.8618266978922716,0.7242798353909465,0.1643835616438356,0.4982748706152961,0.7067238912732475,0.6419098143236074,0.5226438188494492,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096325860793,0.0045923177518931,0.0068496625906946,0.0093484534406373,0.0117718878770921,0.0140265455175153,0.0161043570496083,0.0181866454267887,0.0202877506569999,0.0224968768559667,0.0244032482979246,0.0268019428841355,0.0289032204976291,0.0306370529091808,0.0327610046020182,0.0348644905215719,0.0368115311733093,0.0390257059275088,0.0407020241905316,0.0427866497324533,0.0574579525061558,0.071297128876435,0.0842747259656697,0.0965196191757214,0.1084168484503598,0.124360546230922,0.136355926813238,0.1476408724040026,0.1592298908229368,0.1694869843855494,0.1819815747556933,0.1939682196519295,0.2057487996176157,0.2164796381079338,0.2271667912580801,0.2379898162497232,0.2475649169731416,0.2561825754088975,0.2646166387391875,0.271970736168267,0.2791830702979784,0.2863646444955467,0.2923604135893648,0.2980375732918511,0.3038083687083081,0.3083084191488576,0.3133823051745246,0.3182556810968643,0.3222630001033805,0.3266066398125477,0.3260480692929483,0.325127147766323,0.3244986480396575,0.3240814321422895,0.3233405665705537,0.3211698951075721,0.3193194778861994,0.3195083475746023,0.3207731121183614,0.3215664545649532,0.3222053331832085,0.3226132245479929,0.3235053406920865,0.3262568581345874,0.3276423352383708,0.3289071281072744,0.331162683955363,0.3352146616779757,0.3373651635720601,0.3395088840087842,0.3418327426704101,0.3447925033467202,0.3446500095365249,0.3456171459409451,0.3473474423460188,0.3472189066603008,0.3484801488833747,0.3486936844270726,0.3492595697122101,0.3461096205442698,0.0,2.448176454588778,57.00196899894851,174.39659896043182,263.05941023902653,fqhc7_100Compliance_implementation,34 -100000,95712,44657,423.0921932464059,6191,63.48211300568372,4846,50.15045135406218,1898,19.537780006686727,77.3419109081298,79.7115254572145,63.33255108723839,65.08135717576752,77.10200482300593,79.47075860956201,63.24384808350764,64.99430615097774,0.2399060851238772,240.76684765249468,0.0887030037307496,87.05102478978688,143.97394,101.2327928097808,150424.12654630558,105768.13023422434,370.75886,242.04321673425707,386879.1896522902,252396.94785842643,362.134,175.44152917998454,375234.9339685724,180835.82683397547,3463.9305,1567.1390998942356,3588701.5943664326,1606931.910203775,1134.6991,501.9433664861487,1175270.4572049482,514166.58985931566,1857.64632,780.451010090752,1914757.3971915748,793015.1675033127,0.3816,100000,0,654427,6837.460297559344,0,0.0,0,0.0,31912,332.92586091608155,0,0.0,33219,343.969408224674,1666084,0,59808,0,0,0,0,0,58,0.6059846205282514,0,0.0,0,0.0,0,0.0,0.06191,0.1622379454926624,0.3065740591180746,0.01898,0.3327702702702703,0.6672297297297297,24.549474673381788,4.372738265955749,0.328518365662402,0.2309120924473792,0.2185307470078415,0.2220387948823772,10.89698492671388,5.56560586699964,20.27256334138669,12290.053940779866,54.88082433109943,13.333168828183425,17.990543094776378,11.77390989707726,11.78320251106236,0.5567478332645481,0.7533512064343163,0.7022613065326633,0.5712936732766761,0.1226765799256505,0.7317460317460317,0.9055690072639224,0.8877551020408163,0.7012987012987013,0.1696428571428571,0.4952593418851088,0.6643059490084986,0.6416666666666667,0.535024154589372,0.1103286384976525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0043985000506739,0.0065631974031243,0.0088364345494434,0.0109610769919062,0.013164861122424,0.0152502115253269,0.0174634604392912,0.0196443172526574,0.0218612791304614,0.0244490005125576,0.0263992853402334,0.0285364649747028,0.0306192885033431,0.0325470043134584,0.0345472776703846,0.0366404308202154,0.0386160088834462,0.0406762742529165,0.0426427678199249,0.0576710182767624,0.0713657678780773,0.0848686419338593,0.09757251940512,0.1096050799544323,0.1249206483558339,0.1368584098962422,0.1484860744399966,0.1610025533915235,0.1709525495370817,0.1836776458930225,0.195621354285034,0.2078030846875068,0.2180150234536448,0.2279690747726248,0.2377267846666445,0.2474770565473867,0.2565756935389596,0.2648102988714342,0.2723142245671057,0.2794627984453081,0.2858630656353487,0.292090810094219,0.2982214338790479,0.303724406100006,0.3091844032850765,0.3143236572745837,0.3194762559169339,0.3248167620626246,0.3293702053620858,0.3283166184290234,0.3268366435296543,0.3262514060742407,0.3251006246663877,0.3248905705171007,0.3239544307668782,0.3224593014066698,0.3231594312236563,0.3244231130544691,0.3245579567779961,0.3251031121109861,0.327354348771902,0.3281450206902346,0.3299325066708523,0.3307037224674917,0.3319052221844876,0.3322288554371733,0.3342150842387025,0.3358088131775306,0.3381326526542496,0.3397242764539395,0.3418693982074264,0.3443276778931375,0.3451001458061545,0.3494353231470058,0.3540721280152854,0.354813903414334,0.3624588815789473,0.3662366797532249,0.3615710435117443,0.0,1.905356816708813,55.58506475371769,184.0872218210633,268.0743499430719,fqhc7_100Compliance_implementation,35 -100000,95716,44706,423.4506247649296,6274,64.45108445818882,4926,50.97371390363158,1963,20.19516068368925,77.33810060160408,79.72088091891051,63.31256206328344,65.07490087734053,77.0983323603591,79.47931733821126,63.22550359479236,64.9892298701156,0.2397682412449882,241.56358069924977,0.0870584684910795,85.67100722493137,144.46542,101.6252759528921,150931.0878014125,106173.53687251042,371.31781,241.6571146702684,387387.8766350453,251924.19059537415,362.08079,174.9304156582592,374842.7326674746,180181.2684502793,3548.35431,1585.2280587181183,3673421.434242968,1622466.4376051216,1181.26538,511.8338297788475,1221695.4427681891,522307.1028803415,1927.07744,794.8377156404084,1983690.918968616,805572.4449361442,0.38208,100000,0,656661,6860.503990973297,0,0.0,0,0.0,31948,333.1940323456894,0,0.0,33098,342.4087926783401,1663329,0,59696,0,0,0,0,0,63,0.6581971666179114,0,0.0,0,0.0,0,0.0,0.06274,0.1642064489112227,0.3128785463818935,0.01963,0.3283763277693475,0.6716236722306526,24.866194576235745,4.433119766253827,0.3244011368250101,0.2259439707673569,0.2206658546488022,0.2289890377588307,11.084715877622264,5.622604211276223,20.65282074759636,12372.15952656946,55.42536366378534,13.205014380402146,18.071255858848687,11.92142706055236,12.22766636398214,0.5558262281770199,0.7906558849955077,0.6877346683354193,0.5804967801287948,0.1134751773049645,0.7218597063621534,0.9322033898305084,0.847457627118644,0.7178423236514523,0.146788990825688,0.5008108108108108,0.7246376811594203,0.6320675105485232,0.541371158392435,0.1054945054945055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002169021507774,0.0043619395414891,0.0067110686945397,0.0090249405451551,0.0114162452559497,0.0135263141812403,0.0159822940252534,0.0181498769240197,0.0201973717850386,0.0221573746992269,0.0244365142845423,0.0265027827408457,0.0284503943160903,0.0303791732745659,0.0326603876744689,0.0350119358872342,0.0369327300400699,0.0390620947242828,0.0409514799297202,0.0426996958206591,0.0571550904894681,0.071149679161738,0.0847262005938703,0.0974601672188042,0.1096195216602691,0.1258237515470133,0.1380642149268934,0.1495927168183996,0.1607501602906604,0.17088790911724,0.1838592559873304,0.1966269025092554,0.2082430917579965,0.2181229348563426,0.228893388502509,0.2395358888260912,0.2498045871764522,0.2594172397105331,0.2680079934598964,0.2758324259269872,0.2825067450989474,0.289390498044817,0.2952825384041406,0.301476757845276,0.3066332916145181,0.312331877298191,0.3175774739664916,0.3225272064632872,0.327437641723356,0.3315076809375495,0.3301617635184238,0.3295773485223708,0.3291650824496923,0.3284144563004462,0.3280078397600558,0.3257879743927466,0.3238059063716646,0.3241403071269195,0.3248077908764736,0.3254136841541565,0.3258184816626375,0.326718975433326,0.3278661017660136,0.3292609114752628,0.3303964757709251,0.3315491347502988,0.3313806341532774,0.3346002827077116,0.3385870897691849,0.3400292617343509,0.3419209039548022,0.34643760539629,0.3461778276593091,0.3478588093625348,0.3489128414792789,0.3495179873030802,0.3525331724969843,0.3552185192576332,0.3635135135135135,0.3636706948640483,0.0,1.8253743263495048,54.3008188734162,187.22966259181908,277.5462802156602,fqhc7_100Compliance_implementation,36 -100000,95646,44251,419.3275202308512,6185,63.39000062731321,4837,49.94458733245509,1903,19.39443364071681,77.27782633283482,79.68631116909393,63.2892740309558,65.07124381506331,77.0377725758241,79.45238342688488,63.2003125809002,64.98786491300183,0.2400537570107133,233.92774220904755,0.0889614500555993,83.37890206148302,144.02696,101.24274148221448,150583.35947138406,105851.51651110812,369.30894,241.1833695649113,385503.6488718818,251545.5424846949,355.97224,172.9087002226062,368762.122827928,178107.71369466884,3465.77781,1569.9114917414058,3581802.574075236,1599632.574013975,1130.08337,495.39738094178347,1167222.1734311944,503681.6956936608,1862.19766,780.9163113573695,1901558.4551366493,779102.7423062858,0.3791,100000,0,654668,6844.698157790184,0,0.0,0,0.0,31855,332.3923635070991,0,0.0,32723,338.70731656316,1665113,0,59775,0,0,0,0,0,54,0.5541266754490517,0,0.0,1,0.0104552202914915,0,0.0,0.06185,0.1631495647586388,0.30767987065481,0.01903,0.322969837587007,0.6770301624129931,24.74076820081146,4.429896415465537,0.3324374612363034,0.2282406450279098,0.2195575770105437,0.2197643167252429,11.30737150495612,5.877595969138895,20.29844281289924,12252.785452195343,54.73001367933605,13.109796158716549,18.19442811385164,11.790300684125963,11.635488722641917,0.5550961339673351,0.7663043478260869,0.6977611940298507,0.5668549905838042,0.1081843838193791,0.727344365642238,0.916010498687664,0.8700696055684455,0.6887966804979253,0.1527777777777778,0.4938340807174888,0.6874135546334716,0.6346644010195412,0.5310596833130329,0.0968122786304604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874288146241,0.004370842122343,0.0065782794956652,0.0087401038649552,0.0112111501093646,0.013528794531433,0.0157980622131565,0.0179558152123954,0.0201000398932089,0.0224236836713788,0.0243797372280741,0.026316330094295,0.0283282912473503,0.0304460751978891,0.0324502354010076,0.0347841376885045,0.0366106401939856,0.03870954343921,0.0406264633955981,0.0423027193860527,0.0574453187865107,0.0713118703001612,0.0849384374770387,0.0980047565929324,0.1095680803689203,0.1252659771550766,0.1371007997281136,0.1485408031709162,0.1597552757960489,0.1697033466109793,0.182294304650035,0.1945686658798306,0.2062738780708151,0.2164868354818235,0.2258401858150875,0.2363207233561598,0.2462065808425354,0.2546645360221467,0.2639278215967769,0.2719093406593406,0.2793491835885101,0.2858311805206495,0.2924962439814979,0.2977864068361318,0.3028539492388253,0.3080101128445458,0.3129656294997809,0.3176639808556408,0.3219730360383718,0.3265874587458746,0.3258530006743088,0.3247261993434301,0.3249106651036002,0.3248276661067022,0.3238536483627804,0.3218925642679443,0.3197605170798329,0.321276210241966,0.3220931427983962,0.3242502909318772,0.3251018760211075,0.3260787694991179,0.3272616624346841,0.3287321864023804,0.3292080995834637,0.3304041720990873,0.3314202501284907,0.3357032262141751,0.338365582252463,0.3416362981058027,0.3444938769894051,0.3477912932138284,0.3491420249477616,0.3530408006158583,0.3589207676230287,0.3628915662650602,0.3647260273972603,0.3639941992956287,0.3604749787955895,0.3636717230649552,0.0,2.362870158561672,55.40570304773004,179.82326613821365,270.5389678992102,fqhc7_100Compliance_implementation,37 -100000,95811,44640,422.23753013745807,6173,63.13471313314755,4803,49.46196157017461,1912,19.52802914070409,77.39792083527668,79.70140083387271,63.37134666233783,65.07161868538803,77.1577406877231,79.46552688831412,63.281630656466746,64.98642415312342,0.2401801475535734,235.8739455585948,0.0897160058710824,85.19453226460882,144.93534,101.85474005145332,151272.12950496288,106307.98139196266,369.85725,242.1661157873641,385375.499681665,252101.51839284017,361.77444,176.20186084069445,373507.9583763869,180730.5498632104,3428.12573,1565.9490175639498,3532010.593773158,1588416.73457531,1111.37616,498.7972769073454,1139118.0344636836,499756.2878034312,1867.63994,789.5882971168074,1909166.9432528624,789202.063016357,0.38054,100000,0,658797,6876.005886589222,0,0.0,0,0.0,31893,332.16436526077376,0,0.0,33117,341.57873313085133,1662717,0,59636,0,0,0,0,0,66,0.6888561856154304,0,0.0,0,0.0,0,0.0,0.06173,0.1622168497398433,0.3097359468653815,0.01912,0.3330231115247402,0.6669768884752598,24.688464654989524,4.3135295653883965,0.3231313762231938,0.2413075161357485,0.2161149281698938,0.2194461794711638,11.200347136806634,5.804734184157975,20.457206673344704,12319.364962681831,54.475936832049335,13.837439605539206,17.67209330094459,11.46467613690808,11.501727788657476,0.5477826358525921,0.7748058671268335,0.6688144329896907,0.571290944123314,0.0967741935483871,0.7302325581395349,0.9154589371980676,0.8443877551020408,0.7481481481481481,0.1401869158878504,0.4807856532877882,0.6966442953020134,0.6094827586206897,0.5091145833333334,0.0857142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002429740017818,0.0046003100649515,0.0068766164612809,0.0092198653574728,0.0112129960962914,0.013504711892695,0.0155488985347761,0.0178627901045651,0.020005312953389,0.0220989953141945,0.0241685961928569,0.0262426263144396,0.0284481430112498,0.030789178509318,0.0329200292714098,0.0352382427339837,0.0370676901749412,0.0392193443404537,0.0410059915059759,0.042878254896655,0.0583222064591504,0.0723452322431519,0.0856603575735332,0.0976909974134124,0.109909340080118,0.1256660746003552,0.1376289807735134,0.1493442902154475,0.1598217910639116,0.1701207869387054,0.1831674637025548,0.1953657428441617,0.2069302947604188,0.2176518183209779,0.2273187146721798,0.2369190230508624,0.2462617499804864,0.2557417962294695,0.2648662743897599,0.2730486716551109,0.2805238942963494,0.2871078918161107,0.293543809861653,0.3000227389686082,0.3054696688613243,0.3102366660106278,0.3148948393865214,0.3201147892778688,0.3245476766292047,0.3287503456994982,0.3286652255058608,0.3277703055090445,0.3272438554826379,0.3267376673536151,0.3258230437424959,0.3250160241736105,0.3225806451612903,0.3236497545008183,0.3251478331998432,0.3254889376192259,0.3263169701274909,0.3276773735301081,0.3284456251176605,0.3286846346704871,0.3291712866991274,0.3305916758055251,0.3317287028281612,0.3363213075290615,0.3411943034404963,0.3448646496815287,0.3461203936827649,0.3481374592485703,0.3520349942944085,0.354915150588595,0.357750472589792,0.3592001904308498,0.3599448360404536,0.3629764065335753,0.3640816326530612,0.3649468892261001,0.0,2.5628106424401578,56.19738227928762,178.79731836441138,263.86126286150045,fqhc7_100Compliance_implementation,38 -100000,95553,44113,417.6739610477955,6094,62.541207497409815,4743,49.05131183740961,1908,19.60168702186221,77.19945181010942,79.66965102105527,63.224607941291474,65.05331226850123,76.96915056625947,79.43933754009733,63.14000577265257,64.97070775006198,0.2303012438499507,230.31348095794613,0.0846021686389022,82.6045184392541,143.87384,101.2214125145328,150569.6733749856,105932.2182605808,368.78748,240.88322008440204,385388.8522600023,251531.9771063201,361.01388,175.46081160733476,373693.7720427407,180493.2560285819,3394.6204,1549.2362437450524,3515458.206440405,1584190.5787835568,1138.91015,508.4172643197493,1176973.7318556197,517137.94890767336,1869.75848,775.3812543849369,1923098.741012841,784384.8980238654,0.37676,100000,0,653972,6844.076062499346,0,0.0,0,0.0,31790,332.10888198172745,0,0.0,33066,341.85216581373686,1659600,0,59539,0,0,0,0,0,66,0.6907161470597469,0,0.0,1,0.0104653961675719,0,0.0,0.06094,0.1617475315850939,0.3130948473908763,0.01908,0.337171308542088,0.6628286914579119,24.712050318944083,4.415765935613492,0.3253215264600463,0.2266497997048281,0.2300231920725279,0.2180054817625975,11.472419895568835,6.012090945976172,20.270013627010304,12172.304552887828,54.039574732773545,12.942226057930515,17.615243243722507,12.033032027057638,11.449073404062874,0.5654648956356736,0.7851162790697674,0.7018794556059624,0.5637030247479377,0.1353965183752417,0.7535433070866142,0.9303482587064676,0.895,0.7593360995850622,0.185022026431718,0.4966887417218543,0.6983655274888558,0.6342957130358705,0.508235294117647,0.1214374225526641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022909042989934,0.0044439033298837,0.0068445852628158,0.0091304701480396,0.0112595186708474,0.0136700034659218,0.0161249170791447,0.0181585939096668,0.0201698731068358,0.022125662283893,0.0243181374914029,0.0266212867469383,0.0288768511462173,0.0310698039053877,0.0332751190980582,0.0351523683338853,0.0371480425200933,0.0391282658851406,0.0412782401283239,0.0432286283966469,0.0583866783816576,0.0723850469249724,0.0851851073223032,0.0975607186133502,0.1090290328376507,0.1245282618835602,0.1369172348504994,0.1480521143442491,0.1590539035050132,0.1684337297576291,0.1811407960951167,0.1930982094411286,0.2050484886169017,0.2161088990533855,0.2262785000110358,0.2365185325054703,0.2462154693041834,0.2548486455383435,0.2627776260695431,0.270191114990582,0.2779639788001438,0.284466178816024,0.290589672720371,0.2961415138523616,0.3014746173422792,0.3065070185844207,0.3108228587214485,0.3148004031486419,0.3191552917646142,0.3235815602836879,0.3219764489817965,0.3209561511193258,0.3205052215636466,0.3210046323103648,0.3208826246312464,0.3183800718739442,0.3172718179941893,0.3174336414413524,0.3175501801338137,0.3187012288097587,0.3200850999736416,0.3206408449306148,0.3211861906167011,0.3202237096267014,0.3209763170613823,0.3228705426153483,0.3255727376861397,0.3276682957591045,0.3302658486707566,0.3336378440640267,0.3341205322675871,0.3384452670544685,0.3423722444889779,0.3470239902824172,0.3523204781025306,0.3577100865236458,0.3563741094436865,0.36158755484643,0.3654684095860566,0.3612385321100917,0.0,2.316468469355414,55.72131398077153,181.4486802800293,257.1878043987376,fqhc7_100Compliance_implementation,39 -100000,95663,44527,420.89418061319424,6263,64.11047113303995,4894,50.36429967699111,1965,19.98682876347177,77.33990302576841,79.73088068608396,63.32261558699434,65.08924901767277,77.09283919278737,79.48698136251852,63.231176116098304,65.00189079302883,0.2470638329810413,243.89932356544364,0.0914394708960344,87.3582246439355,143.64746,101.04279591392518,150159.89463010777,105623.69559173888,371.92036,242.72536071435815,387925.342086282,252893.11879613996,363.93608,176.69372609360602,375264.0623856664,180797.27538372375,3516.97941,1608.1895500788266,3621588.890166522,1627815.912567352,1196.96806,526.8029813789278,1230915.275498364,530919.6433576145,1927.81018,812.1661635553096,1963330.733930569,807820.0086546183,0.38121,100000,0,652943,6825.44975591399,0,0.0,0,0.0,32006,333.6713253818091,0,0.0,33343,343.49748596636107,1666902,0,59889,0,0,0,0,0,63,0.6481084640874738,0,0.0,0,0.0,0,0.0,0.06263,0.1642926470974003,0.3137474053967747,0.01965,0.3400976502898993,0.6599023497101008,24.623708698422757,4.412684355537182,0.3169186759297098,0.2317123007764609,0.2239476910502656,0.2274213322435635,11.262095589982144,5.816657064314975,21.017994596897548,12377.691548133693,55.77736677195314,13.490265601294192,17.581547171821196,12.296671657877331,12.408882340960425,0.5659991826726604,0.7839506172839507,0.7124435847840103,0.5885036496350365,0.1176999101527403,0.7051578137028484,0.918854415274463,0.8571428571428571,0.7124463519313304,0.1335877862595419,0.5157162726008345,0.7048951048951049,0.6646655231560892,0.5550405561993047,0.1128084606345476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024815152435936,0.0051593938472454,0.0074885084879909,0.0099845610043472,0.0122428642608014,0.0145157678291496,0.0165939576792922,0.0187596962521433,0.0209151128557409,0.0227844991709144,0.0250345994156543,0.0270486670704291,0.0289983238557487,0.0310864818095669,0.0333880339763239,0.0356496655259049,0.0377211885127015,0.0397131024174546,0.0417459871630829,0.0436473188224501,0.0585844868111778,0.0725129300416692,0.085318896687755,0.0987754329118185,0.110770009811058,0.1256480247148691,0.1380342061706913,0.1504145954633995,0.1620117698576295,0.172168673407027,0.1848892430622112,0.1972257687563567,0.2080428896114488,0.2175648047929854,0.2279975788257305,0.23854247424964,0.2482260799714387,0.2559738097380973,0.2649644392518064,0.2729625430851856,0.2803344860688634,0.2875298134031707,0.2948887837198296,0.3002575621443546,0.3060216098093966,0.3112972773192066,0.3166560322286029,0.3219918595777156,0.3268782383419689,0.3308514851485148,0.3304094749181454,0.3290712398150187,0.3276989877914681,0.3270783298127839,0.3267334096960861,0.3247001883873734,0.3223824828612593,0.3239795080621326,0.3249620391380752,0.325620777553967,0.325952683985925,0.3274469135802469,0.3291412069975726,0.3303027588677893,0.3298775195293664,0.3313037342880288,0.3322472777158535,0.3357196921912451,0.3388511252773571,0.3440301467671559,0.3470130579189226,0.3505072502257396,0.3536040289581366,0.3595702529716549,0.3614344723995494,0.3606926817696596,0.3552712700369914,0.3624229979466119,0.3682148852825965,0.3707865168539326,0.0,2.9302757288540704,56.271570258405255,193.33611754989215,259.8861917500763,fqhc7_100Compliance_implementation,40 -100000,95782,44474,420.8723977365267,6258,64.02037961203567,4862,50.14512121275396,1971,20.19168528533545,77.331780499572,79.670533708777,63.32970022966426,65.06187328154391,77.08834073362972,79.42923383374834,63.24001547388169,64.97557347444041,0.2434397659422842,241.29987502865905,0.0896847557825708,86.29980710350083,142.29204,100.0895510996593,148557.9962832265,104497.0415477241,367.99569,240.3007926951051,383594.0364577896,250277.5401214066,359.09132,174.16361159034437,370903.6144578313,178811.3501496566,3491.8458,1586.094019522646,3607980.737508091,1618440.8013971988,1160.89241,511.5067516771262,1197188.083355954,519256.25021738495,1933.57384,807.7289187762633,1983724.9796412687,813555.9148982835,0.38074,100000,0,646782,6752.636194692113,0,0.0,0,0.0,31811,331.4714664550751,0,0.0,32902,339.4687937190704,1674366,0,60180,0,0,0,0,0,49,0.5115783758952622,0,0.0,0,0.0,0,0.0,0.06258,0.1643641330041498,0.3149568552253116,0.01971,0.3273031316509577,0.6726968683490423,24.890785271222494,4.410260967062857,0.3118058412176059,0.2396133278486219,0.2248046071575483,0.2237762237762237,11.083964466483678,5.570120826862084,20.9577761262368,12305.172658588896,55.08720638162861,13.705272108782529,17.26740011847325,12.206491825090684,11.90804232928215,0.5553270259152612,0.7536480686695279,0.724934036939314,0.5452881976212259,0.1167279411764705,0.7176105508145849,0.9176755447941888,0.8727735368956743,0.64453125,0.1674008810572687,0.4967814161768821,0.663563829787234,0.6731967943009796,0.5149342891278376,0.1033681765389082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081539630286,0.0045111714853412,0.0067987863658964,0.0091226786947864,0.0112178998220188,0.01346245888451,0.0155889969617259,0.0177018253093225,0.0199750567357036,0.0222244971080513,0.0242854799688358,0.0264084687811239,0.0284721293944659,0.030510918829831,0.0326232790472062,0.0345693817001436,0.0364854648453277,0.0385405214793918,0.0403400116385401,0.0425655976676384,0.0575927703802646,0.0715249521458531,0.0851808757088797,0.0976724636158251,0.109497818894485,0.1251875647230382,0.1378769410143621,0.1495975074171354,0.1604640490090397,0.1710257042140339,0.1837020291727218,0.1964368773459387,0.2076101613815303,0.2185753502564719,0.2287069544258939,0.2396073391242687,0.2487280760476636,0.2578871005837298,0.2663642549330914,0.2737139782237844,0.2809916399754865,0.2875645851354826,0.2936805613071926,0.2987609049947272,0.3039052535681749,0.3096708960653029,0.3157565208680299,0.3207181722033207,0.3256239061385882,0.3289962088688691,0.3281837160751565,0.3267776096822995,0.3255397963351596,0.3245373048004627,0.3233125185845971,0.3216081943081452,0.3188233428480811,0.3195099893118474,0.3214414167537294,0.3225789153826904,0.3230694128912337,0.3242387669904834,0.3262436686912843,0.3272107470452354,0.3277270310763133,0.3292146596858639,0.3303699045223258,0.3343942019851899,0.3365428541307938,0.3406965174129353,0.3425540670293996,0.3457839050977877,0.3476848608368894,0.3546752648549056,0.3567373202119606,0.3581290169007379,0.3608836706318554,0.3652050345107592,0.3724176437744277,0.3790513833992094,0.0,2.31107880606748,56.42559515360095,182.44271703925952,267.6500318125163,fqhc7_100Compliance_implementation,41 -100000,95691,44394,419.5274372720528,6320,64.83368341850331,4915,50.81982631595448,1996,20.53484653729191,77.34192318165195,79.71677185444342,63.32298576779221,65.07493036256542,77.0963164342532,79.47057894057444,63.23277862520853,64.98637454269303,0.2456067473987531,246.19291386898112,0.0902071425836794,88.55581987239702,143.81774,101.16434945754558,150293.90433792103,105719.81634379992,369.17627,240.94316996407775,385259.784096728,251252.30164182396,362.624,176.4685623113562,375147.5582865682,181534.4149182596,3559.91782,1620.0068854968988,3686339.760270036,1659073.9416422653,1203.23208,529.9757024438582,1245030.9851501186,541473.6961029434,1965.28924,816.2603608018485,2024235.42443908,828290.1227693874,0.38099,100000,0,653717,6831.541106269137,0,0.0,0,0.0,31799,331.7448871889728,0,0.0,33260,343.7522860039084,1664822,0,59752,0,0,0,0,0,65,0.6792697327857374,0,0.0,1,0.010450303581319,0,0.0,0.0632,0.1658836189926244,0.3158227848101266,0.01996,0.3275835981237706,0.6724164018762294,24.46242439666787,4.416907389023288,0.330824008138352,0.2115971515768057,0.2270600203458799,0.2305188199389623,11.28582110545814,5.713303682286493,21.025060980752404,12325.586021582669,55.79752793950936,12.413303695241954,18.648708500734912,12.346252433611763,12.389263309920729,0.5611393692777212,0.7807692307692308,0.7164821648216482,0.5716845878136201,0.1262135922330097,0.718944099378882,0.918918918918919,0.8482758620689655,0.7346153846153847,0.116591928251121,0.5051006341328922,0.7044776119402985,0.6683459277917716,0.522196261682243,0.1285714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025110618348976,0.0046827013713625,0.0066851293912373,0.0089077132467954,0.0111763090722341,0.0135916597096373,0.0158636298758232,0.0179102039149214,0.0198781136242791,0.0220447447908667,0.0245567984907053,0.02677086114477,0.0290354431942073,0.0309412188965019,0.0331754043704001,0.0353752611006555,0.0374034099148557,0.0395138355510348,0.0417307932282351,0.0436381823675902,0.0589617714643827,0.0726558818910004,0.085760466849292,0.0985426421844583,0.1109575309944605,0.1262804774805282,0.1382642118451509,0.1496260945522722,0.1605965043561922,0.1706743671769328,0.1833365681136917,0.1960034658290913,0.2083950187233301,0.2181788333150924,0.227957770512016,0.2382603878116343,0.2475548211334911,0.2564454752201031,0.2649761742682097,0.2730146730352908,0.2808243748336554,0.2878355292410662,0.2941587346687503,0.2995443098692888,0.3044709370860525,0.3093808931014507,0.3148284973639061,0.3192558755042054,0.3247741383556494,0.328784496083068,0.328160841991634,0.3277885822264521,0.3268601106469459,0.3259939280034697,0.3259433051690599,0.3246122992605747,0.3235219648056716,0.3238159386243038,0.3242337164750958,0.3255403066050363,0.3261745469537677,0.3262549027376094,0.3268238452825439,0.3275742296918768,0.3279272342268636,0.3280362632209659,0.3282681691423368,0.330579810289591,0.3357375442036343,0.3385018043383432,0.3418640529993647,0.3440546841882153,0.3465615141955836,0.3483631403455592,0.3489373654152233,0.3495419309372797,0.3524082741959837,0.3554890219560878,0.3617196056955093,0.3651748777735991,0.0,2.1117774863410763,56.498951294436274,191.1276755311889,266.1911805880579,fqhc7_100Compliance_implementation,42 -100000,95723,44520,421.2049350730754,6151,63.02560513147311,4857,49.98798616842348,1935,19.74447102577228,77.32392886815877,79.68588060505631,63.31606620966248,65.06435143476548,77.08133947322783,79.44743581815342,63.22638956533415,64.97891202748704,0.2425893949309454,238.44478690288892,0.0896766443283354,85.43940727844301,143.9394,101.283558820839,150370.75728926173,105809.0101865163,370.19334,241.856677187746,386022.0114288103,251951.1373314105,361.03264,175.19691128168785,372102.7861642448,179214.82777299487,3485.15495,1590.7930978642169,3592543.1923362203,1613539.345678903,1173.65332,518.998515547131,1204996.8032761195,521091.3631490136,1898.93438,799.6104896618664,1940009.1931928585,799682.3363461711,0.38004,100000,0,654270,6835.0344222391695,0,0.0,0,0.0,31896,332.4592835577656,0,0.0,33048,340.10634852647746,1663316,0,59788,0,0,0,0,0,66,0.689489464392048,0,0.0,0,0.0,0,0.0,0.06151,0.1618513840648353,0.3145829946350187,0.01935,0.3323497437490293,0.6676502562509706,24.64902375535458,4.321143160524093,0.3304508956145769,0.2256536956969322,0.2186534898085237,0.225241918879967,11.35347566393164,6.0522806965496105,20.57656712562713,12319.56681951228,55.01711907791706,12.971529702064108,18.072938722492857,11.736447709065382,12.236202944294709,0.5540457072266831,0.7782846715328468,0.6722741433021807,0.5932203389830508,0.1179159049360146,0.7037331215250199,0.9331619537275064,0.8556701030927835,0.6940639269406392,0.1482889733840304,0.5016675931072818,0.693069306930693,0.6138044371405095,0.5670225385527876,0.1083032490974729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106880589909,0.0044915795557087,0.0069113199504739,0.0092462760877075,0.0114741424909468,0.0138696537678207,0.0158738250107048,0.0181897986056529,0.0203253279350571,0.0222791031022831,0.0243292289080041,0.0265303188977186,0.0286524997686827,0.0307977545449863,0.0329687338767929,0.0349475425086567,0.0370190066808224,0.0388603456328818,0.040982498466146,0.0430701270016565,0.0580276043515483,0.0718754577221652,0.0851396273109552,0.0978023133543638,0.1101187337874601,0.1261397533267046,0.1380598202633449,0.1497657580919932,0.1611604234092778,0.1710245607264229,0.1840229934550465,0.1962800756961341,0.2081077555280151,0.2181319221980473,0.2278191436710183,0.238112112688534,0.2472800312447693,0.2564333374590708,0.2655426884650317,0.2737833126920783,0.2809164551680979,0.2876561438046356,0.2947536902009603,0.3004032258064516,0.3056235016367907,0.3106975825857324,0.315582299109941,0.3203528317038661,0.3248842247272633,0.3284055748023167,0.3280389722552089,0.3258885488184851,0.3259178747370947,0.3256194517254862,0.3241767235606613,0.3226908522666339,0.3215054444163079,0.3225679465940591,0.3230572160546541,0.3232748621495744,0.3241607972426195,0.3251839544267743,0.3258518797937885,0.3252791015056939,0.3262192921248286,0.3271337646076794,0.3288236969524352,0.3339849908557735,0.3386846376402512,0.3421744324970131,0.3439170359541322,0.3464319897904924,0.3488240116022448,0.3515059092642013,0.3510930254566102,0.3558391983776691,0.3644376899696048,0.3672014260249554,0.3641449120937666,0.3733383972654766,0.0,2.972151759947895,54.49961043204458,183.84331639947575,270.1049520167198,fqhc7_100Compliance_implementation,43 -100000,95796,44633,421.5416092529959,6136,62.84187231199632,4810,49.64716689632135,1942,19.87556891728256,77.4066300966336,79.74500066123836,63.35719594835807,65.08732737544597,77.16619225702217,79.50645390451736,63.26773932845538,65.00175040403514,0.240437839611431,238.5467567210071,0.0894566199026911,85.57697141083054,144.5708,101.75926646610873,150915.27829972023,106224.96395059158,370.80315,242.1424890236127,386511.5558060879,252204.63174204848,361.84865,175.44775137257338,374053.1963756316,180416.39802338823,3462.60989,1567.8914983463185,3574733.819783707,1596865.8590612542,1143.50302,501.8973149165276,1180685.508789511,510922.98730273487,1900.39538,794.2487036537951,1945860.4117082127,796521.5949711316,0.38171,100000,0,657140,6859.78537726001,0,0.0,0,0.0,31881,332.2163764666583,0,0.0,33123,342.1228443776358,1662753,0,59729,0,0,0,0,0,75,0.7829136915946385,0,0.0,1,0.0104388492212618,0,0.0,0.06136,0.1607503078253124,0.3164928292046936,0.01942,0.3336953149239838,0.6663046850760161,24.74887334737574,4.435236788353671,0.3249480249480249,0.2226611226611226,0.2272349272349272,0.2251559251559251,11.16647036723785,5.724603883246421,20.440414737663158,12357.271919724642,53.9787480247634,12.75899076174566,17.376259950377246,12.119792359974287,11.7237049526662,0.5505197505197506,0.7777777777777778,0.6852207293666027,0.5590118938700823,0.1228070175438596,0.7268370607028753,0.9194805194805196,0.8556962025316456,0.7137254901960784,0.1658986175115207,0.4884766722878021,0.6982507288629738,0.627568493150685,0.5119331742243437,0.1120092378752886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022392445336089,0.0046845531423009,0.0070326057174171,0.0090934029647541,0.0114522838457704,0.0136962587320013,0.0160274056401786,0.018139131322411,0.0201459585428676,0.022483523680871,0.0247199532657599,0.0268434338251893,0.0291276105903634,0.0312953602569513,0.033399651571536,0.035326311441553,0.0373788265965921,0.0393319579933859,0.0414532534050886,0.0435511410961186,0.0574535133668635,0.0714614403145851,0.0848305066979727,0.0975942994671515,0.1091022115455532,0.1248203567503592,0.1376601901612236,0.1499510867253626,0.1613402336872432,0.1718852099021992,0.1845004949855808,0.1967278704124224,0.2077536735936005,0.2177930190904722,0.2286395447204491,0.2395489853276385,0.2491133367535856,0.25755719183857,0.2661797892970141,0.2741287553648068,0.2806697037670836,0.2875239564343477,0.2935672376265733,0.2992083547911901,0.3049766831827455,0.311275415896488,0.31667960241356,0.3208442533268874,0.3248886125790073,0.3296983299227671,0.3287909421754953,0.3281256452256741,0.3287105548743534,0.3271715565833213,0.3271823040380047,0.3254327481803168,0.3241246487544596,0.3236520629936712,0.3250968004890972,0.3251117893392008,0.3269578847194491,0.327590953785644,0.3290123585436508,0.3308926624084748,0.3316198445905559,0.3325215679162672,0.3339470851509829,0.3386537560518507,0.3405458225727647,0.3437438384794353,0.3461642844219287,0.3484856465630761,0.3511335956529886,0.3554098854731766,0.3562355122855818,0.3594314342304555,0.3590214067278287,0.3558,0.3529087400055142,0.3543913713405239,0.0,2.203127605741371,54.78102328553626,173.1083167221875,272.8147597001935,fqhc7_100Compliance_implementation,44 -100000,95689,44421,420.65441168786384,6079,62.43141844935155,4736,48.91889349873026,1843,18.842291172444064,77.29491858535671,79.69699844815221,63.29396199958445,65.07409994821188,77.06246245935208,79.46566636597966,63.20805019959796,64.99073322557771,0.2324561260046351,231.33208217255685,0.0859117999864977,83.36672263416744,142.93774,100.47069948942804,149377.3997011151,104997.12557287468,366.37803,239.4564233983316,382270.0414885724,249630.33723660145,357.50192,173.69316254891035,369482.6991608231,178340.270117781,3405.96417,1544.9983774926236,3522909.216315355,1578102.820065655,1139.20701,500.25020634751183,1177023.294213546,509280.08062317694,1808.16156,760.0744026751074,1852106.6162254803,764932.4622522972,0.38072,100000,0,649717,6789.88180459614,0,0.0,0,0.0,31587,329.52585981669785,0,0.0,32718,337.938530029575,1671715,0,60051,0,0,0,0,0,64,0.6374818422180188,0,0.0,1,0.010450522003574,0,0.0,0.06079,0.1596711494011347,0.3031748642868893,0.01843,0.3315021189766128,0.6684978810233873,24.65383605084925,4.3381573171964805,0.3091216216216216,0.2362753378378378,0.2282516891891892,0.2263513513513513,11.31714969684319,5.9700139736739,19.58077466397541,12244.08155418666,53.598359918034646,13.330234923865651,16.505453554869273,12.131655963570685,11.631015475729043,0.5646114864864865,0.7828418230563002,0.6933060109289617,0.5966697502312673,0.1287313432835821,0.7409783480352847,0.935897435897436,0.8753315649867374,0.7423076923076923,0.1636363636363636,0.5015763829177414,0.700960219478738,0.6301747930082797,0.5505481120584653,0.1197183098591549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021794884791225,0.0043634002049783,0.0066825775656324,0.0090081846372833,0.0112992049838655,0.0136067595527605,0.0158884036083105,0.0180932142784168,0.0203687031959733,0.0222600108585418,0.0244137619760786,0.0267507679031876,0.0288228030458942,0.0310522518808615,0.0330515385171192,0.03494420716258,0.0368904271414064,0.038788180817708,0.0407486007947901,0.0428284049572132,0.0570951062829686,0.0706785179601536,0.0838239152106616,0.0968193344065317,0.1090878399763678,0.1243916373947268,0.1365175396699039,0.147423339011925,0.1588237808266017,0.1692345657818501,0.1819102406653308,0.1935061562763724,0.2053188944701763,0.2158369309798349,0.2250813759127298,0.2362587474532731,0.2454813228009104,0.2541331382589612,0.2623235638122708,0.2704072273686141,0.278332966638489,0.2849801584978988,0.291285815770779,0.2971377846020969,0.3029794682907261,0.3089179049217554,0.3141160553217078,0.3187232742822236,0.3233703387418161,0.328099042797247,0.3275984988095398,0.3264725683901018,0.3263344544674144,0.3254944420384004,0.3257906458797327,0.3233830083778775,0.3217354088070253,0.3224428083092295,0.3235399682100189,0.3236598362121374,0.3239621896904892,0.3250237981913375,0.3262304039003068,0.3272837401292175,0.3275057429573207,0.3277614755816391,0.328378300968093,0.3325540250221155,0.3366984417320341,0.3404932378679395,0.342607422321878,0.3462377027386333,0.3476864966949953,0.3502704349813362,0.3524651863003387,0.3605757792053295,0.3635394456289978,0.3642451298701298,0.3689214887258897,0.3733082706766917,0.0,2.297465102510696,54.57326512010789,175.36349176527085,264.6717717454407,fqhc7_100Compliance_implementation,45 -100000,95723,44273,419.60657313289386,6293,64.61352026158812,4909,50.7192628730817,1954,20.00564127743593,77.3593554540744,79.73012905778579,63.33143217950936,65.08372356424375,77.11403143650537,79.48759130784718,63.2403384713093,64.99648337508019,0.2453240175690325,242.53774993860588,0.0910937082000629,87.24018916356613,142.96678,100.62757424055964,149354.67964856932,105123.71555484018,369.59591,240.557447317436,385532.1291643597,250728.09807197427,359.78022,174.35333603839229,372731.9244068823,179710.4574479876,3526.6873,1600.4801151157023,3644970.466867942,1632698.4059376568,1166.41428,514.3410806090874,1203327.0478359433,522118.5614837475,1918.46916,810.5304621403274,1966012.0138315768,813512.480165756,0.37842,100000,0,649849,6788.8490749349685,0,0.0,0,0.0,31830,331.90560262423867,0,0.0,32907,340.6600294600044,1673337,0,60005,0,0,0,0,0,72,0.752170324791325,0,0.0,0,0.0,0,0.0,0.06293,0.1662967073621901,0.3105037343079612,0.01954,0.334500076091919,0.665499923908081,24.746371068375204,4.39761034594186,0.3194133224689346,0.2287634956202892,0.2267264208596455,0.2250967610511305,11.02279782505376,5.616999658531042,20.97996860141331,12204.733756951786,55.59599227955676,13.360695357190274,17.569456706129586,12.44485987980022,12.220980336436686,0.5593807292727643,0.7934105075690115,0.6779336734693877,0.6019766397124887,0.1104072398190045,0.7154213036565977,0.9191919191919192,0.8673740053050398,0.7276422764227642,0.1255230125523012,0.5056149000273897,0.7248968363136176,0.617968094038623,0.566320645905421,0.1062355658198614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661994084997,0.0041866453110586,0.0064639207687702,0.0085515224147386,0.01064641103078,0.0130717623464017,0.0150976094602171,0.0173325439438172,0.0194741469199157,0.02160136774537,0.0236578987848023,0.0257603303238529,0.0278406518786781,0.0298272184959663,0.0317208073636851,0.0338436411374936,0.0361934735795925,0.0381268474822382,0.0403039690625194,0.042206574726053,0.0565231919470375,0.0707497802151798,0.0843281233609566,0.0972039663929168,0.1089622591768514,0.1241788581765098,0.1362792227775832,0.148046804297137,0.1595062520038473,0.1699433379120879,0.1828604678728058,0.1949791066750384,0.2062036251278368,0.2162336667469193,0.2257336094465985,0.2353984852349216,0.2445888896334517,0.2536477258665107,0.2632373300651369,0.2718451051154265,0.280210562850697,0.2863255857456858,0.2925779679852457,0.2979889873114675,0.3030920829085967,0.3081375301709275,0.3133424276935784,0.3181754600134793,0.3223722537964605,0.3269502143092647,0.3262234893823043,0.3246513930526142,0.3238931834153197,0.3230518778903087,0.3225223088553556,0.3211569591643505,0.3197431325833478,0.3190566593564858,0.3196652862279939,0.3211825641208194,0.3209058581321355,0.3220774091627172,0.3232431298510593,0.3241012760422507,0.3269633444848251,0.3267269929851096,0.3273556664290805,0.3293609508496484,0.3320084417868448,0.3361921778836609,0.3411093357680895,0.3427642796248934,0.3458383671393145,0.348253774592039,0.3479241029494646,0.3512938674228997,0.3533891850723534,0.3546639919759278,0.3470332063146434,0.3512898330804249,0.0,2.2290761316238763,55.18194566148488,191.11417549513277,268.64493297297554,fqhc7_100Compliance_implementation,46 -100000,95874,44536,420.8961762313036,6199,63.3644157957319,4834,49.679788055155726,1934,19.817677368212447,77.4394230829848,79.71856703602847,63.39129033748679,65.07678767924781,77.19781846101733,79.47937627521641,63.30236643069079,64.99129079450387,0.2416046219674683,239.1907608120647,0.0889239067959977,85.49688474394657,144.1429,101.29302305701924,150345.95406470992,105652.0310956057,369.98727,242.0957206382125,385151.5322193712,251758.03285604576,359.34725,175.20055950307932,369693.9420489392,178883.0214372913,3488.12105,1579.2887026671324,3594048.615891691,1603174.2778876654,1163.5674,514.9041661493419,1197174.5102947615,520657.9816312716,1893.46944,792.6396232143651,1942932.3487076787,798925.4580216985,0.38022,100000,0,655195,6833.907002941361,0,0.0,0,0.0,31825,331.1429584663204,0,0.0,32955,338.6215240836932,1669017,0,59988,0,0,0,0,0,83,0.8552892337860108,0,0.0,0,0.0,0,0.0,0.06199,0.1630371889958445,0.3119858041619616,0.01934,0.3305110837438423,0.6694889162561576,24.66723364956357,4.422501557940788,0.3369880016549441,0.2184526272238312,0.2192800992966487,0.2252792718245759,11.143237397278494,5.768553203186895,20.67919170214662,12243.785609692695,54.55096343244973,12.476070236769951,18.43545638283382,11.751583152572376,11.887853660273578,0.5577161770790235,0.7897727272727273,0.6961325966850829,0.5613207547169812,0.1221303948576675,0.7285601888276947,0.935656836461126,0.8393665158371041,0.7068965517241379,0.1875,0.4967723828234633,0.7101024890190337,0.6427969671440606,0.5205314009661836,0.1052023121387283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025308766956873,0.0047529287770075,0.0069385974700494,0.0091279229152494,0.0113836177543781,0.0134307401151787,0.0158390628978864,0.0179518563851489,0.0200849985697356,0.0222795065365494,0.0243245181716651,0.0264308140608647,0.0285878701933945,0.0305937577204974,0.0328254190808057,0.0349217822293355,0.0369538904004717,0.0389796087533156,0.0408417511913042,0.0426831171263016,0.057528534945536,0.0716882954046768,0.0847652855003717,0.0974413892301069,0.1097940965935407,0.1254803834621394,0.1365355081290049,0.1480226108761714,0.158737941693759,0.1695896420737253,0.1823937227924974,0.1943847292290075,0.2052936257100344,0.2156747072190176,0.2250574434635385,0.2355772955146578,0.2455557660800463,0.2546138725077225,0.2635615879633826,0.2715995746967428,0.2790584865564076,0.2851921482536754,0.292334062296826,0.2974904815497713,0.3031575880446263,0.3082977177273343,0.3129682204184749,0.3177358682391216,0.3222927794518953,0.3273711523517247,0.3264529489282737,0.3255315641997692,0.3248281388385137,0.3239475241380306,0.3235067208688169,0.3230009328215558,0.3207538220739593,0.3209506494357361,0.3221566889404064,0.3237959583370426,0.3242056074766355,0.3247106606991463,0.3251718302797334,0.3256046816937762,0.327244034240352,0.3284478054104623,0.3296426346491476,0.3329171608714651,0.3359676913971381,0.3393483314290217,0.3425239558850118,0.3475619419937661,0.3512463985970186,0.3520097442143727,0.3547287702357284,0.3586165772212283,0.3622425274895462,0.3666734986677598,0.3703498056635202,0.3644646924829157,0.0,2.7543178649397064,54.848024036059215,178.54397121885688,270.39711848869075,fqhc7_100Compliance_implementation,47 -100000,95741,44212,417.40738032817706,6263,64.21491315110559,4899,50.61572367115447,2021,20.785243521584277,77.34647984393533,79.69834720765388,63.33814763576003,65.07513732507908,77.09012765758533,79.44269355269974,63.24204346303828,64.98178915202213,0.25635218635,255.65365495414483,0.0961041727217519,93.34817305695252,143.49016,100.9014910219111,149873.26223874828,105390.0533960488,366.95278,239.48049787236565,382722.323769336,249585.57180182025,356.61965,173.70916609374154,369248.8380108835,178960.5463610164,3548.24933,1626.1459322136086,3666904.241651957,1660021.8252290753,1173.13347,527.2990058862736,1208583.0417480494,534230.738251925,1978.46236,840.7996381911503,2035361.7154615056,850042.5851360234,0.37821,100000,0,652228,6812.421010852195,0,0.0,0,0.0,31585,329.31554924222644,0,0.0,32712,338.4443446381383,1670583,0,59996,0,0,0,0,0,55,0.5640216835002768,0,0.0,0,0.0,0,0.0,0.06263,0.1655958330028291,0.3226888072808558,0.02021,0.3239951278928136,0.6760048721071864,24.658266323258395,4.420862242622281,0.3043478260869565,0.2284139620330679,0.2412737293325168,0.2259644825474586,11.136289695022532,5.665699007289524,21.69925628819588,12281.212702801444,55.68329325844831,13.365254238447625,16.902023135785484,13.132577595330686,12.283438288884517,0.5499081445192896,0.7685433422698839,0.6780684104627767,0.5939086294416244,0.1093044263775971,0.7011152416356877,0.8978622327790974,0.8530183727034121,0.6993006993006993,0.1556420233463035,0.4926842993809792,0.6905444126074498,0.618018018018018,0.5602678571428571,0.0952941176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002602795219769,0.0050583381483846,0.0071645304999949,0.0094776619735478,0.0114609392478695,0.0138153608079491,0.0160040774719673,0.0183508711050327,0.020330978933058,0.0224627071964616,0.0247132504433214,0.0269537905692525,0.0291160323237308,0.031393229032557,0.0333357407426513,0.035173126614987,0.0373031567395198,0.0392783408895205,0.0413301317034126,0.0434547121073243,0.0582984454443899,0.0721664590812513,0.0851474553332563,0.097572003911713,0.1094698886639676,0.1255154039709893,0.1371679538317915,0.1481134585705923,0.1583425862658011,0.1682869055402523,0.1819366091038284,0.1933812794030173,0.2052583527161272,0.2159586443567689,0.2254064571447416,0.2356184402816527,0.2451815829392344,0.2544325443254432,0.263687125476666,0.2714847106538501,0.2783601777284087,0.2853784068312083,0.2923352002936614,0.2984442658542144,0.3036239457501883,0.3087813112209066,0.3137370272537212,0.3189269746646795,0.3233264141152049,0.3275002973790988,0.3272862152684111,0.3268624020060346,0.3262715450365313,0.3255669237782376,0.3248887367339952,0.3237672841116619,0.3218190461099667,0.3222415662056959,0.3235777085970374,0.3250781738586616,0.3263453965872867,0.327815355405245,0.3292175885095124,0.3304429656516771,0.3305934532131321,0.3326694793113388,0.3342114305348757,0.3374215720276192,0.3414574101427868,0.3432154621581934,0.3460800438596491,0.3493384549722578,0.3534113796576032,0.355969750210068,0.3598334279765285,0.3606165611184131,0.3662166308683645,0.3689260922825643,0.3673986486486486,0.3722943722943723,0.0,2.1137141531428085,59.15336216868121,181.4611596106258,266.3277085213273,fqhc7_100Compliance_implementation,48 -100000,95744,44624,422.2927807486631,6249,64.06667780748663,4873,50.3634692513369,1939,19.90725267379679,77.41222784566315,79.76848056752682,63.350809200748486,65.08979855541797,77.1689833809658,79.52420725495065,63.261264771477215,65.0018379970837,0.243244464697355,244.27331257616916,0.089544429271271,87.96055833427374,144.71556,101.7675414863467,151148.4375,106291.29917942296,371.9902,242.77638503666213,387980.3434157754,253028.2298754865,364.62128,177.14053276913103,377174.0056818182,182272.0459167586,3492.046,1591.4593412407723,3610704.75434492,1626319.9600476606,1170.47752,519.9532921905899,1209179.8546122997,529738.6073180452,1897.66226,795.3553617079533,1949639.517881016,805227.5909016662,0.38139,100000,0,657798,6870.383522727273,0,0.0,0,0.0,32057,334.255932486631,0,0.0,33395,345.2435661764706,1661871,0,59588,0,0,0,0,0,66,0.6684491978609626,0,0.0,0,0.0,0,0.0,0.06249,0.1638480295760245,0.3102896463434149,0.01939,0.3396864432831232,0.6603135567168767,24.669019981488777,4.3592667439866135,0.3209521855120049,0.2316847937615432,0.2220398112045967,0.2253232095218551,11.415595510177775,6.004956172631835,20.65570723331613,12329.193398602092,55.25054290114665,13.541811388734905,17.64655720165246,12.082742099160653,11.979432211598644,0.5548943156166632,0.7971656333038086,0.6758312020460358,0.5683918669131238,0.1202185792349726,0.7389312977099237,0.926829268292683,0.8605200945626478,0.749034749034749,0.1376146788990825,0.487229862475442,0.7232267037552156,0.6073619631901841,0.511543134872418,0.1159090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065424346769,0.0043987229514012,0.0067767723085663,0.0091396539117718,0.0114376925344909,0.0136814780882577,0.0157673726481439,0.0179178188422803,0.0202246272393741,0.0222517911975435,0.0245859637615807,0.0264022337193068,0.0284151657208652,0.0303691879923793,0.0327503482433059,0.0347101629041594,0.0367693502459228,0.0389060651961903,0.0409514799297202,0.0428967270151461,0.0575640209209825,0.0715795421253086,0.0850063985566534,0.0983947994025203,0.1101204920973221,0.1255357199547085,0.138407496630549,0.1495086295929557,0.1609463156095059,0.1708055203794724,0.1841143559393292,0.1964270246860112,0.2081940982464542,0.2186412103430911,0.2284499377595646,0.2386038464097957,0.2481224854716137,0.2564758086314082,0.2655054163922513,0.2729794795368566,0.2803441766742713,0.2870467897853615,0.2940898009420341,0.3003953042644945,0.3055916459231376,0.3107873443600133,0.3154190419041904,0.3203124007873515,0.3251437060001291,0.3295746108603834,0.3288467215974663,0.3278115272273494,0.3272068631442973,0.3260982284315137,0.3256223023709572,0.3244955455722226,0.3230301694274737,0.3228855477741319,0.3230821510491887,0.3243919758565595,0.3249543812609392,0.3260617722712011,0.3268921767074977,0.3279530447542186,0.3290584998205527,0.3310954429986002,0.3326538123955944,0.3346439493228484,0.3376550954970026,0.3417945690672963,0.3449943502824859,0.3473139295335692,0.3487266128527626,0.3503588968643747,0.3545209553015519,0.3586482985988461,0.3571753295953932,0.3661377786704157,0.3733260453675868,0.3674952198852772,0.0,2.018306562235382,57.758299696231205,185.0836319841028,261.71613715324725,fqhc7_100Compliance_implementation,49 -100000,95739,44400,420.1109265816438,6000,61.56320830591504,4712,48.736669486834,1867,19.20847303606681,77.32373385663094,79.69503419306605,63.321321634088775,65.07578992639009,77.09326782379387,79.46427735095905,63.23468393112543,64.99123096130947,0.2304660328370715,230.7568421069988,0.086637702963344,84.55896508061755,144.93842,101.93542667604768,151389.1099760808,106472.20743484648,369.29141,241.44595943450776,385248.56119240855,251713.1675017577,354.52804,172.0813745404247,367404.9133581926,177457.70890601742,3391.72957,1545.0543479642677,3507363.6971349185,1578499.5748485662,1105.21259,491.1924152575661,1140054.6381307512,498706.62452873547,1831.29752,775.5452850246528,1883986.5467573295,784440.9006615783,0.37934,100000,0,658811,6881.323180730945,0,0.0,0,0.0,31798,331.63078787119144,0,0.0,32477,336.37284701114487,1662250,0,59661,0,0,0,0,0,74,0.7729347496840367,0,0.0,0,0.0,0,0.0,0.06,0.1581694522064638,0.3111666666666666,0.01867,0.3261631612492033,0.6738368387507967,24.772534769192,4.525877635517654,0.314516129032258,0.2249575551782682,0.2345076400679117,0.2260186757215619,11.075650868464226,5.5254619103284766,20.060567352181767,12258.387713811228,53.43024916307055,12.525050973715318,16.880916519831377,12.325631095445926,11.698650574077933,0.5543293718166383,0.7783018867924528,0.7078272604588394,0.5746606334841629,0.0967136150234741,0.7105678233438486,0.9216216216216216,0.8522167487684729,0.7131782945736435,0.1282051282051282,0.4968060394889663,0.7014492753623188,0.6533457249070632,0.5324675324675324,0.0878459687123947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721377912867,0.0046751244840629,0.0069935038570848,0.0093896713615023,0.0116087416571707,0.0136906762827369,0.0159507200261085,0.0179138623063331,0.0202877506569999,0.0223257719289262,0.0245000512767921,0.0263841674454908,0.0284453314678408,0.0306368507831821,0.0328963666391412,0.0350253282332265,0.0370262964382256,0.0390517196659231,0.0408093242807681,0.0427207935647897,0.0575927163381222,0.0717440448779671,0.084079012242072,0.0970989186687423,0.109508293526515,0.1245783769495109,0.136728198599618,0.1481639124466625,0.1589734278879015,0.1687808958040683,0.1820903236922016,0.1946533089547878,0.2067229266807316,0.2175239469885841,0.2275162543042277,0.2380709816732185,0.2473741721115893,0.255900690894793,0.2645208104216505,0.2727501573316551,0.2802648608671536,0.2869211624075437,0.2926448684303851,0.2987387862164784,0.3039656135408825,0.3093483511608419,0.3138349818454989,0.3184897491404558,0.3233616756532559,0.3280023224205956,0.3271432034258935,0.3269606897881601,0.3264664410603496,0.3252992863450152,0.3236554659364862,0.322477317312408,0.3204473197197134,0.320510297783025,0.3210869972893261,0.3216169970055611,0.3220945035195447,0.3222292515123957,0.323101133025598,0.3233739473212685,0.3242195027943727,0.3251907200334413,0.3261547261547262,0.3296380519234413,0.3306761666255158,0.3349852130125489,0.3369111508646392,0.3385101483425266,0.3401243970550901,0.3429973922380733,0.3491914253478751,0.3535353535353535,0.3560812860175917,0.3603312462128862,0.3625715064015254,0.3612705702257941,0.0,1.8956572881171327,55.86247574202525,171.36997167005717,264.0668130543747,fqhc7_100Compliance_implementation,50 -100000,95784,44624,421.9493861187672,6079,62.35905788023052,4769,49.23578050613881,1900,19.51265347030819,77.38153749659537,79.72272681839608,63.350937847410606,65.08288641811978,77.14465988821038,79.48496759316511,63.26378892004141,64.99698605860141,0.2368776083849866,237.75922523097395,0.0871489273691992,85.90035951837649,143.94424,101.30147065565568,150279.81708844902,105760.09631635314,370.88239,242.27439293435935,386672.1268687881,252403.35852998347,358.1198,173.7968559144858,369892.6125448927,178377.73044221566,3436.17788,1558.0846875937902,3551637.601269523,1590878.8185853488,1127.03059,496.57060408423257,1161581.3705838136,503470.491125816,1866.0314,781.0434084671203,1919117.4100058463,792813.3058195641,0.3823,100000,0,654292,6830.900776747681,0,0.0,0,0.0,31950,332.9992483086945,0,0.0,32816,338.6056126284139,1667412,0,59765,0,0,0,0,0,60,0.6264094211976948,0,0.0,0,0.0,0,0.0,0.06079,0.1590112477112215,0.3125514064813292,0.019,0.3288380116042026,0.6711619883957974,24.76013148354763,4.428776206862284,0.3155797861186831,0.2302369469490459,0.2254141329419165,0.2287691339903543,11.151431505151102,5.736109836319618,20.126259045303883,12354.036492542988,53.80944140443124,13.05053359398184,16.848383374694404,11.89276816779643,12.017756267958577,0.5481232962885301,0.7650273224043715,0.693687707641196,0.5665116279069767,0.1109074243813015,0.7003257328990228,0.9124668435013262,0.8622589531680441,0.6963562753036437,0.1286307053941908,0.495340299350466,0.6879334257975035,0.6401050788091068,0.5277777777777778,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0044904413404423,0.0067063025039568,0.0089068990382174,0.011082416576855,0.0133045593819029,0.0156562155991356,0.0178711764765919,0.0200903349751681,0.0223463687150838,0.0245424548603283,0.0267598694340087,0.0289738844334772,0.0309089411473992,0.0330885386583051,0.0350150330106315,0.0370761286851064,0.0391301193079929,0.0410529158789188,0.0429767209428226,0.0577990650304699,0.0721800422496914,0.0855372810465738,0.0984932859814655,0.1102997734576682,0.1262390362464334,0.1386775458302426,0.1504385265507893,0.1617261028234842,0.1724185976720756,0.1848260125499144,0.1968528632455523,0.2082921262837581,0.2187657072925544,0.2290399568865963,0.2386034051409214,0.2477086724795397,0.2571210179627257,0.2657972329326378,0.2729259640691154,0.2798283460377315,0.2868968420068047,0.2931773002650511,0.2986258371371407,0.3046080990832372,0.3104811398593648,0.3154645102425977,0.3199938961583947,0.3250168228169159,0.3303057067904082,0.3307150158713079,0.3302363936228697,0.3298323172877919,0.3284519734846843,0.3268810814825819,0.3248374512353706,0.322385984866436,0.3232901821514491,0.3238221632382216,0.325083183573246,0.3264051139231042,0.3272275077967707,0.3281361182035076,0.3299993287239041,0.3312750774849234,0.3327425324506073,0.3330582275599066,0.3363624968663825,0.3374130153512606,0.3409315762396612,0.342597638510445,0.3476301558689428,0.3506935687263556,0.3573335367248875,0.3617001225143719,0.3679848448969927,0.3715505412410428,0.3739903069466882,0.3781838316722037,0.3857087975412985,0.0,2.1233852013546266,53.91444618868996,180.03992581430765,264.8717704759816,fqhc7_100Compliance_implementation,51 -100000,95849,44490,420.4425711275026,6229,63.704368329351375,4825,49.68231280451543,1897,19.426389425033125,77.37299817448195,79.67546203147198,63.35320242165369,65.05766382974335,77.14287494322875,79.44739971402325,63.2675170457156,64.97537980510614,0.2301232312532022,228.06231744873173,0.0856853759380911,82.28402463720386,142.99428,100.5888081390326,149187.03377187034,104945.07834096612,366.42564,239.33683111608372,381650.2936911184,249057.56045037895,357.86826,173.77402500511064,369142.8183914282,178073.2887913386,3469.24443,1570.4985233729908,3575341.370280337,1594509.6640555523,1144.99024,498.31361798286247,1178162.881198552,503538.93672897824,1868.213,778.4285306106528,1915088.2951308829,782617.4523415619,0.38082,100000,0,649974,6781.228807812287,0,0.0,0,0.0,31495,327.9116109714238,0,0.0,32795,337.89606568665295,1674399,0,60068,0,0,0,0,0,59,0.6155515446170539,0,0.0,1,0.0104330770274076,0,0.0,0.06229,0.1635680899112441,0.3045432653716487,0.01897,0.3348166334202854,0.6651833665797146,24.73592934946482,4.392572885494696,0.3394818652849741,0.2194818652849741,0.2136787564766839,0.2273575129533678,11.06480470017587,5.607462259502303,20.15546433910204,12271.56750334174,54.39250854466348,12.687855697876904,18.33690550845481,11.456448277479756,11.911299060852,0.5589637305699482,0.789423984891407,0.6941391941391941,0.5732298739088264,0.121239744758432,0.7203525641025641,0.8992248062015504,0.850356294536817,0.6982758620689655,0.1490384615384615,0.5026558568632933,0.7261904761904762,0.6400986031224322,0.5369211514392991,0.1147356580427446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0043783635866095,0.0065224227300853,0.0086205145909063,0.0108675761950267,0.0130598534201954,0.0152273399039882,0.0173284756452254,0.0196180608772951,0.0218347760247201,0.0240766354182675,0.0263576389957626,0.0284158059709161,0.0304368412384716,0.0324728877159704,0.0344094016564429,0.0365323732075237,0.0386938995450824,0.0408631629230401,0.0427513161454106,0.0570367975975725,0.0705686876920183,0.0834119052108869,0.0964022430848717,0.1085344791271746,0.123831454858507,0.1361603831563778,0.147764240607259,0.1590300235876746,0.1693687515403491,0.1829129180835952,0.1961176381578236,0.2074358249831547,0.2175419800594717,0.2276538156852389,0.2376838561049087,0.2473922017069225,0.2567024807335321,0.264919743633373,0.2721953788728846,0.2792663605981058,0.285802859081444,0.2932083422105437,0.2998550325278253,0.305041527028996,0.3104017543643509,0.3153223080486247,0.3190677319220396,0.3239174056573241,0.3287228285974475,0.3280446084637556,0.3268346413327826,0.3259572667653903,0.3250683524527319,0.3241186611973128,0.3235712864163133,0.3225668618452287,0.3233581073321192,0.3239996587321901,0.3244024775538618,0.3247253878253709,0.3260680723367291,0.3268349823247641,0.3263244737780949,0.327513949756927,0.3287845705967976,0.3313295917495228,0.3330925763095088,0.3368373103472441,0.3386128446164784,0.3422085834198294,0.3451444262554787,0.3466390510261721,0.3512072511234671,0.3486031417552441,0.346104125044071,0.344927536231884,0.3527975584944048,0.3525658807212205,0.3553183377811666,0.0,2.5659110176378936,54.244528645042166,178.19839043218653,272.21391253815705,fqhc7_100Compliance_implementation,52 -100000,95790,44040,416.4735358596931,6159,63.08591711034554,4840,49.93214322998225,1890,19.375717715836725,77.39816222968327,79.72631261907952,63.35848721039546,65.07898404214352,77.17037995789195,79.4995056952051,63.27314065255985,64.99636820254696,0.2277822717913125,226.8069238744204,0.0853465578356065,82.61583959655638,143.84304,101.21057608430996,150164.98590667083,105658.81207256492,368.63301,239.63523766488845,384261.5826286669,249594.6122679813,356.77401,172.57116543804634,367864.9128301493,176795.70264431342,3464.09926,1565.169835136865,3580645.2552458504,1598281.9861553586,1180.13667,519.7644189234486,1219262.8666875458,529896.2542915682,1859.90846,779.0081414369139,1909821.463618332,787601.6953255085,0.3771,100000,0,653832,6825.681177575947,0,0.0,0,0.0,31788,331.24543271740265,0,0.0,32693,336.74705084038,1671728,0,59939,0,0,0,0,0,66,0.689007203257125,0,0.0,0,0.0,0,0.0,0.06159,0.1633253778838504,0.3068679980516318,0.0189,0.3335392217418159,0.6664607782581841,24.6783416070383,4.381242364621585,0.3221074380165289,0.227892561983471,0.2241735537190082,0.2258264462809917,11.32767971088551,5.932274972033636,20.060792674008862,12248.162230458838,54.58752844780773,13.201903227729574,17.526881799104295,11.841897690114706,12.016845730859156,0.5574380165289257,0.7833182230281052,0.7036561898652983,0.56036866359447,0.1180237877401646,0.722397476340694,0.9121140142517816,0.8666666666666667,0.7161572052401747,0.131578947368421,0.4988801791713326,0.7038123167155426,0.649272882805817,0.5186915887850467,0.1144508670520231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022482834052378,0.0044085454840278,0.0065941646715091,0.0088248436103663,0.0110506785950287,0.0133327905225232,0.0154379171549396,0.0175080602375219,0.0195956231673801,0.0216799672600777,0.0237170752696984,0.0259412422653436,0.0278711268691228,0.0299403046521202,0.0325271145201864,0.0344749235726679,0.0365389390052139,0.0385217598689326,0.0403225806451612,0.0423318441688275,0.056585661070359,0.0706045996004894,0.0839134446028684,0.0970982963920505,0.1093962490907365,0.1242692376814352,0.1366418124158119,0.148343637930851,0.1588132262474367,0.1699424196609515,0.1828549889612837,0.1947650208209399,0.2063016079965232,0.2169980336464933,0.2270234628276279,0.2373175778094953,0.2469892952720785,0.2554091134002069,0.2638247671767414,0.2718621163536417,0.2790264770493699,0.2863321293731224,0.2927412387118154,0.2989359662576687,0.3038374224563874,0.3091036707754067,0.3146089891854722,0.3186348036100165,0.3229305546566565,0.3268807278960902,0.3267915791740698,0.3255692443075569,0.3249922550483003,0.3238830747022735,0.3227838719241032,0.3213903743315508,0.3196739439512179,0.3202423845397969,0.3213840877680902,0.3216111734630253,0.3226819150128938,0.324273109492509,0.3265169573035587,0.3292655769830312,0.3300755113744982,0.3312658950537188,0.3328339222614841,0.3353426197763758,0.3377382111559326,0.3416915579311429,0.3453829796860154,0.3496246522127146,0.3518162061471592,0.3540723981900452,0.3530399104811637,0.3563164108618654,0.3560628968853946,0.354175070592981,0.3537995594713656,0.3501326259946949,0.0,2.307203281999856,55.42148630743935,178.6559743490291,270.342996532066,fqhc7_100Compliance_implementation,53 -100000,95888,44685,421.5647421992324,6194,63.5950275321208,4892,50.54855664942433,1924,19.710495578174537,77.3584022892406,79.64254156662837,63.35300198276878,65.04247994188177,77.12556911831963,79.41032986085233,63.2666375056255,64.95871269926116,0.2328331709209692,232.211705776038,0.0863644771432774,83.76724262060975,143.121,100.77320672901752,149258.50992824964,105094.7008270248,367.34713,239.7682449493685,382622.94551977306,249573.63412023208,363.89112,176.14105231764108,377195.4572000668,181761.0603609235,3473.82478,1570.7234272826283,3590369.7855831804,1605730.1496976777,1149.21816,499.1488114709216,1183519.2307692308,505749.5941060927,1878.26158,779.5301478710909,1926351.4725513095,784371.483777178,0.38199,100000,0,650550,6784.477724011346,0,0.0,0,0.0,31593,328.97755715000835,0,0.0,33349,345.4864008009344,1671652,0,60004,0,0,0,0,0,65,0.6674453529117303,0,0.0,0,0.0,0,0.0,0.06194,0.1621508416450692,0.3106231837261866,0.01924,0.3256422088909398,0.6743577911090601,24.596610131706885,4.307349279690304,0.3152085036794766,0.2434587080948487,0.2266966475878986,0.2146361406377759,11.13084474369426,5.873532489318437,20.32235454499288,12343.955767346284,55.46342005066118,14.184304778881351,17.392639285357838,12.509068111537529,11.377407874884476,0.5764513491414555,0.7867338371116709,0.7127107652399481,0.6005410279531109,0.1123809523809523,0.72890625,0.9142857142857144,0.8621553884711779,0.7019607843137254,0.1262135922330097,0.5224252491694352,0.7172503242542153,0.6605424321959755,0.5702576112412178,0.1090047393364928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0047218084729103,0.0069681816798693,0.0092700707693244,0.0116080504167513,0.0139630975279618,0.0158115652634581,0.0180937324697842,0.0202873099660006,0.022582524867357,0.0245785007216927,0.0269422402657316,0.0291269115819528,0.0312509643771923,0.0333374554298316,0.0355892829487378,0.037632795771224,0.039590415388442,0.0414568037136655,0.0435185185185185,0.0583673001344772,0.0719494358545758,0.0854494999738206,0.0977835176027131,0.1102158182450153,0.1259242827565808,0.1374903298962517,0.1490563028337498,0.1606553877354966,0.1706937952917971,0.1843711975190325,0.1965883154672406,0.2080357434041026,0.2188845893181172,0.2290642831227942,0.239680853418321,0.2497323221057327,0.2591722230342826,0.2676355138066389,0.2741521539871677,0.2809415250020252,0.2878736472652822,0.2943956226164815,0.3001079395538498,0.3051317277181379,0.3109348399990131,0.3148438185212565,0.3195051409787608,0.3242415591830379,0.3282956498743885,0.3271658215557234,0.3257823157372576,0.326376942384162,0.3252813376920184,0.3244059575354491,0.32365438007148,0.3220752862080994,0.3222518167768242,0.3239099185433637,0.3252383843434163,0.32609999250431,0.3264987345776653,0.3272959771922101,0.3283348604375712,0.328780300115429,0.3298939598710885,0.3317041288965929,0.3352231793265466,0.3398489404853486,0.341477902740377,0.3456514813634915,0.3483942648537114,0.3505978602894902,0.3504332489839736,0.3495016611295681,0.3529482406629038,0.3599875544492844,0.3559183673469387,0.359504132231405,0.367816091954023,0.0,1.8287915878485088,56.60238477082296,185.0514837377381,270.87207048851207,fqhc7_100Compliance_implementation,54 -100000,95725,44290,418.7829720553669,6262,64.2674327500653,4895,50.46748498302429,1965,20.17236876469052,77.38965647392791,79.75645012054251,63.34469261111818,65.09387275709516,77.14943745156448,79.51676312827833,63.256358073188046,65.00790654682359,0.2402190223634335,239.68699226418263,0.0883345379301374,85.96621027156459,143.95568,101.196171935624,150384.39279185166,105715.3405090792,370.42018,242.26502846605487,386244.8681117785,252372.28632446844,365.11547,177.46836188461418,376673.3246278401,181827.1121325363,3507.0523,1604.453846887952,3619752.8858709848,1632762.7402977808,1181.26517,524.9309241685766,1216573.1000261165,531266.8691129395,1919.21612,803.2681294232051,1971298.971010708,811935.2487036157,0.37816,100000,0,654344,6835.65421781144,0,0.0,0,0.0,31838,331.8568816923479,0,0.0,33431,344.52859754505096,1667328,0,59852,0,0,0,0,0,78,0.8043875685557588,0,0.0,0,0.0,0,0.0,0.06262,0.1655912841125449,0.3137975087831364,0.01965,0.3263846622032866,0.6736153377967133,24.83952532444442,4.372471080537292,0.3246169560776302,0.2294177732379979,0.2253319713993871,0.2206332992849846,11.286621405686844,5.866445176094675,20.98637742898022,12222.26394759572,55.67145103494772,13.44221697130584,18.02315113873477,12.274999649482844,11.93108327542428,0.5675178753830439,0.7845057880676759,0.6998112020138452,0.5847688123300091,0.1296296296296296,0.7338345864661654,0.9002433090024331,0.8785046728971962,0.7394636015325671,0.1608695652173913,0.5054698457223001,0.7176966292134831,0.6339362618432386,0.5368171021377672,0.1211764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002663884612268,0.0047849315207363,0.0070936380519388,0.0094276367921653,0.0118404589703683,0.0141847582583194,0.0161906995238629,0.0183848674472494,0.0204636519748139,0.0228163737422333,0.0250722647040734,0.027102774954572,0.029000257003341,0.0310044792256603,0.0330263117180489,0.0349838257939829,0.037132531867085,0.0389882557994771,0.0411690727864218,0.0429382651732221,0.0579667776861316,0.0716633174244327,0.0851903143228838,0.0977223712587449,0.1093787909155159,0.1254111450720759,0.1376270395281237,0.1493604614042182,0.1599196984420216,0.1694242791425844,0.1822791624051246,0.1943819495522,0.2065531711347379,0.2173337852464931,0.2268036700477458,0.2375358451710049,0.2472347352928058,0.2561601815750738,0.2633601632467974,0.2711143141494217,0.2778921081231068,0.2851099138686643,0.2914657780298733,0.2964151056316955,0.3026394029488501,0.3078107106355207,0.3127790771847756,0.3174482048151398,0.3218860795528066,0.3262684480552881,0.3255382131324004,0.325102824050511,0.3239773655020973,0.3224818741153701,0.3211658261643429,0.3192667003042674,0.3170673912356639,0.3173673272349408,0.3186895390945102,0.3193269845782105,0.320611682312621,0.3206600841823689,0.3200341858962333,0.3208764319875431,0.3211645654410182,0.3222548230467634,0.3243212573406338,0.3273794575590156,0.3291774952588326,0.333412935323383,0.3351917013206599,0.3372012191861397,0.3410437413336695,0.3419209039548022,0.3480959881404614,0.3509716693982674,0.3528879505353642,0.3553077076279625,0.3556338028169014,0.3563044301400984,0.0,2.48403309297672,58.203263864022894,185.1311727785293,263.4525603698795,fqhc7_100Compliance_implementation,55 -100000,95763,44432,420.4024518864279,6224,63.86600252707204,4896,50.56232574167476,1951,19.95551517809592,77.34687979821054,79.70618341353571,63.33382307926016,65.08143309371961,77.10227626351512,79.46415559857248,63.24187992478799,64.9934679373983,0.2446035346954147,242.02781496323664,0.0919431544721689,87.9651563213173,143.49522,100.92271918618692,149844.11515929952,105388.00913315886,370.05335,241.22971074180975,385861.7733362572,251338.8551854108,360.64371,174.52133677401346,373600.2840345436,179939.89934681228,3551.93664,1611.5106556584824,3666297.6828211313,1640077.8522947114,1168.84269,516.2734701929522,1202329.18768209,520914.0815657218,1924.20356,813.992529060954,1968938.3791234607,814132.0887567274,0.3795,100000,0,652251,6811.096143604524,0,0.0,0,0.0,31914,332.6754592065829,0,0.0,33048,342.11543080312856,1669877,0,60038,0,0,0,0,0,52,0.5325647692741455,0,0.0,0,0.0,0,0.0,0.06224,0.1640052700922266,0.3134640102827764,0.01951,0.3380821078431372,0.6619178921568627,24.518745604069515,4.411811500843104,0.326797385620915,0.2220179738562091,0.2195669934640522,0.2316176470588235,11.0468325419816,5.576915602926419,20.88233814972088,12238.840135532786,55.64058862680836,13.01007338885146,18.22125248991207,11.916713414091966,12.49254933395286,0.5533088235294118,0.8160073597056118,0.693125,0.5469767441860465,0.1102292768959435,0.7129629629629629,0.9405684754521964,0.8073394495412844,0.7154811715481172,0.1581196581196581,0.4958333333333333,0.7471428571428571,0.6503436426116839,0.4988038277511962,0.0977777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0042692572912018,0.0064060913705583,0.0086181489273046,0.0107939285423618,0.0130038084764057,0.0150779896013864,0.0172927725602286,0.0194332563227085,0.0215526067903509,0.0235397849021397,0.0256181205848529,0.0279514603044014,0.0300186457614372,0.0322524047392973,0.0341968697665763,0.0364206863699438,0.0383953025147315,0.0405222778967503,0.0426342865473934,0.0568771332839263,0.0705924197884738,0.0840000419423502,0.0963472959478635,0.1089128739169846,0.1250871890258079,0.1372145779888481,0.1488707893841442,0.1606959972689255,0.1705801696803496,0.1839336431706687,0.1958605782221021,0.2064735538267634,0.2158327599200498,0.2255636619346899,0.2353487960339943,0.2445718236665142,0.2539636134661659,0.2627008989376191,0.2711984787041492,0.2784946360995706,0.2856557808642336,0.2915769039558722,0.2973747302805082,0.3027900539070468,0.3080662629842958,0.3131404121157527,0.3179534789078099,0.3231012125839556,0.3279025624802277,0.3274676783576166,0.3271601541001651,0.3262427322512072,0.3252389339647157,0.324896080760095,0.3234155225982215,0.3214822550276103,0.321608040201005,0.3227901095333299,0.323085163363685,0.3233000974585801,0.3240356083086053,0.3265066554868462,0.3276367953053956,0.3280237125575342,0.3298896270335303,0.3302382720987372,0.3332175560467319,0.3370253164556962,0.3387507966857871,0.3441519798580911,0.3459427779849752,0.3481640649687164,0.3531830642704843,0.3565477862023776,0.3591081593927894,0.3617479612248038,0.3716577540106952,0.3766233766233766,0.383054892601432,0.0,2.151522056626507,57.07616655288341,187.53876146917037,266.2396593421238,fqhc7_100Compliance_implementation,56 -100000,95750,44181,419.2584856396867,6146,62.87206266318538,4838,49.911227154047,1921,19.62402088772846,77.36211040614715,79.72288813242557,63.32787542470121,65.07511884764608,77.13535984381414,79.49903825962855,63.24406119243218,64.99510732159052,0.2267505623330095,223.84987279701815,0.0838142322690274,80.01152605555717,143.91366,101.14842386418306,150301.24281984335,105637.81771716244,363.70487,236.6966494791725,379230.40208877285,246585.18243255615,353.42088,171.45770761207856,364856.87728459534,175817.2692446368,3468.8095,1566.9045590674275,3581413.691906005,1595125.6770417,1169.66027,512.5846709181953,1204314.91383812,518211.302997224,1888.39074,782.25600571585,1931678.182767624,783472.9261524997,0.37972,100000,0,654153,6831.874673629243,0,0.0,0,0.0,31338,326.6527415143603,0,0.0,32450,334.8093994778068,1671769,0,60052,0,0,0,0,0,70,0.7101827676240209,0,0.0,2,0.02088772845953,0,0.0,0.06146,0.1618561044980511,0.3125610152945005,0.01921,0.3284184386155517,0.6715815613844482,24.445381713525908,4.466081919107326,0.3261678379495659,0.2277800744109136,0.2205456800330715,0.2255064076064489,11.431692336237738,5.7759087862006,20.314259431430145,12244.600990519992,54.56673261829367,13.18636491391056,17.774420580607696,11.827184819705858,11.77876230406956,0.5661430343116991,0.7976406533575318,0.6939163498098859,0.5801312089971884,0.1338221814848762,0.7557861133280128,0.9209183673469388,0.8859223300970874,0.7364016736401674,0.2142857142857142,0.499860529986053,0.7295774647887324,0.6260720411663808,0.535024154589372,0.1146424517593643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694345663252,0.0046747926257934,0.0069333062633235,0.0090939573447676,0.0111489751284268,0.0132297225730231,0.0150918768992311,0.0171016090827411,0.0190693346693796,0.0213709347095928,0.0234945442612191,0.0254843149742178,0.0276640398345713,0.0294923847406277,0.0312100070181232,0.033300594468855,0.0353215284249767,0.0374547378687112,0.0393027171992266,0.041352874389342,0.0559307702746432,0.0695521170082546,0.0819280140951422,0.0950913470134732,0.1072423104510358,0.1223559522802267,0.1349160885154774,0.1468142864746899,0.1580960521395373,0.1689077612644491,0.1816243228398186,0.1932146528867485,0.2050169152280564,0.2158209640899992,0.2261366262752996,0.2367429698406719,0.2465299103304262,0.255369659874661,0.2642464121617789,0.2722661170273674,0.279374153753573,0.2862054850593533,0.2926595518114484,0.2979394171871066,0.3035317542219578,0.3089416867944989,0.3143647376852223,0.3196158249586566,0.3239618929274102,0.3289591686009707,0.3286876195093049,0.3275095954107111,0.3271166162291505,0.326409452686013,0.3265533367975651,0.3248236068383917,0.3236978672235934,0.3245516246434309,0.3261643858961468,0.3271219321195294,0.3282586767288079,0.3292404565131838,0.3303983141026979,0.3303925500155951,0.3304510287671561,0.3315492738184936,0.3322553191489362,0.3361907145538731,0.3391119327496599,0.3404674628512869,0.3420136534201365,0.3457575438965408,0.3482984701842023,0.3524774774774775,0.356017059150751,0.3610490415147595,0.369558645707376,0.3729922665080309,0.3734194242668819,0.3716915995397008,0.0,2.3502372229754585,54.733306334575104,180.6920482979044,270.0409267668122,fqhc7_100Compliance_implementation,57 -100000,95767,44798,423.83075589712536,6182,63.48742259859869,4777,49.369824678647134,1884,19.35948708845427,77.32840490063373,79.6890463981356,63.31625382636724,65.0650228175939,77.09150089706951,79.45207257894782,63.22868466109284,64.97949547226006,0.23690400356422,236.9738191877815,0.0875691652743952,85.5273453338441,144.16952,101.54409402798488,150541.96121837376,106032.44753201508,368.70998,240.7476587615354,384481.0007622668,250862.61317733183,360.96144,175.277585030021,373607.4639489594,180532.6997792321,3395.92272,1546.5078282444465,3512331.847087201,1581170.9129913717,1119.23189,494.9181753307562,1155901.1246045087,504005.63516127167,1835.52024,765.7479685661241,1887747.7836833147,774593.4984149404,0.38203,100000,0,655316,6842.816419016989,0,0.0,0,0.0,31794,331.4502908099868,0,0.0,33151,342.8947340942078,1662668,0,59714,0,0,0,0,0,45,0.4698904633119968,0,0.0,2,0.0208840205916443,0,0.0,0.06182,0.1618197523754679,0.3047557424781624,0.01884,0.3274295395040813,0.6725704604959187,24.771286351766683,4.369166306630768,0.3376596190077454,0.2227339334310236,0.2265019886958342,0.2131044588653967,11.315279552307096,5.966855743845716,20.014398089518373,12316.726450050708,54.10623927726159,12.719294141427069,18.329446309461492,11.926664571709807,11.13083425466322,0.5645802805107808,0.8016917293233082,0.6931184128952262,0.55637707948244,0.1218074656188605,0.727760736196319,0.9057591623036648,0.8486842105263158,0.7215686274509804,0.1516587677725118,0.5033112582781457,0.7434017595307918,0.6318063958513397,0.5054413542926239,0.1140024783147459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0041785837440921,0.006558908337733,0.0087298522327689,0.0112612154381396,0.0135470990873533,0.0161323217490618,0.0182647935639318,0.0204768038602302,0.0226625995455196,0.0248065193993132,0.027075589872066,0.0292575071986836,0.0313941990771259,0.0332896488385771,0.0351232621840922,0.0372229755607771,0.0389732953072336,0.0407868484495801,0.0430548756990949,0.0582224309795939,0.0722914248062502,0.0854242904027429,0.0982267677139283,0.1103524577208787,0.1256064177227231,0.1378352297430568,0.1496440088119791,0.1603934804434665,0.1712113576169592,0.1838704118559365,0.195555507470599,0.2075980765464871,0.2184102889389531,0.2281723318069743,0.2386823070703042,0.2481836545651373,0.2570206539478867,0.2654268424219717,0.27315753887762,0.2802004490428905,0.2857827999251356,0.2923756408890152,0.2988264375539983,0.3043319675619156,0.310086697004452,0.3156442794803631,0.3201865609827584,0.3240866824884255,0.3287385460402968,0.3280489613243283,0.3265351088588071,0.3257821536378255,0.3252836187585808,0.3245646645947031,0.3225944951314881,0.3218259629101284,0.3229392803105059,0.3235550690180114,0.3241639408726116,0.3248439871816495,0.3254040384083455,0.3263404237536044,0.3266277744249983,0.3275659048854925,0.3305378304466727,0.3311488488716663,0.3336160321648448,0.3377205264631756,0.3416858298310998,0.3443025317031044,0.3452041785375119,0.3486164032731588,0.3533146874291329,0.3550378894190289,0.3602491772449459,0.3675642781074091,0.3685388685388685,0.3657931034482758,0.3631393986723936,0.0,1.979826550099836,57.43284611238266,174.79651801773394,261.49109206777604,fqhc7_100Compliance_implementation,58 -100000,95747,44393,420.9949136787576,6115,62.73825811774781,4831,50.048565490302565,1976,20.366173352689906,77.31464774318667,79.68014987768412,63.30648041847581,65.0557724770844,77.06737938599004,79.43061099594145,63.21494037778432,64.964974150934,0.2472683571966314,249.5388817426658,0.0915400406914841,90.79832615040571,143.59026,100.9662348946653,149968.41676501615,105451.06885298266,369.80693,241.5094698526384,385816.2762279759,251820.85083843308,360.29521,174.5065667149792,373732.41981472005,180313.2459161934,3511.36929,1598.322939941792,3637733.558231589,1639823.514262533,1178.33283,520.7883856438176,1220316.6574409644,533715.637382946,1941.226,816.8550029360722,2001527.107898942,831938.3404281855,0.37914,100000,0,652683,6816.746216591642,0,0.0,0,0.0,31822,331.92684888299374,0,0.0,32939,341.46239568863774,1665548,0,59762,0,0,0,0,0,75,0.7833143597188423,0,0.0,0,0.0,0,0.0,0.06115,0.1612860684707495,0.3231398201144726,0.01976,0.3244722439405785,0.6755277560594214,24.48545802378045,4.4730961407177965,0.3231215069343821,0.2204512523287104,0.2270751397226247,0.2293521010142827,11.398115285072668,5.967118106119252,21.05424645973688,12237.52018649046,54.626983816091,12.63383469303518,17.58909822131898,12.181077306846818,12.222973594890014,0.5634444214448354,0.7727699530516432,0.7046764894298526,0.5979945305378305,0.1290613718411552,0.7054515866558178,0.898876404494382,0.875,0.6907630522088354,0.1625,0.5149916712937257,0.7094499294781382,0.64910790144435,0.5707547169811321,0.1198156682027649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023502000709112,0.004633431679695,0.0069225928256765,0.009114927344782,0.0111094155348695,0.01342760503688,0.0154966792830107,0.0178268771313634,0.0199640177457935,0.0220097457106588,0.0242276972921985,0.0265011499917857,0.0285029521282067,0.0303033425380208,0.0322560667210288,0.0342799251548075,0.0361181294785237,0.0381334827543269,0.0400528214779615,0.0418698170604658,0.0560137815827939,0.070259351516547,0.0835982166273275,0.0967769073032231,0.1089143363279767,0.1245002009773847,0.1360601976162932,0.147857933736479,0.1585968062592188,0.1694333265374008,0.1819789510006901,0.1943658919768134,0.2056433162653884,0.2160947757186537,0.2260728619944427,0.236533827823982,0.2463529780283707,0.2553805892704056,0.2639895341561913,0.2724787188824685,0.2795234946816531,0.2862686252212753,0.2925241071746273,0.2978950781090524,0.3035471000389256,0.3089899426173875,0.3134352655371477,0.3175962933733866,0.3223371612786286,0.3267927314924704,0.325880959431448,0.3256597494396083,0.3262432299359921,0.3251634694496167,0.3244359896560949,0.3227886883789331,0.3214257425742574,0.3217935657717459,0.3224477234257185,0.3228634691618156,0.3236811012546651,0.3243291344499595,0.3254806787036843,0.3264112182922472,0.3275182622068435,0.3276189979939035,0.3304494317857346,0.3332075708985726,0.3371669004207573,0.3400031761156106,0.3428779865037388,0.3452621503775391,0.3459027821788453,0.3480930089785895,0.355646155304826,0.3530183727034121,0.3553604436229205,0.3594555578469787,0.3556729699666296,0.3624658603199375,0.0,1.56457848312986,54.44138361709251,189.4853592608366,263.57069221783803,fqhc7_100Compliance_implementation,59 -100000,95822,44399,419.25653816451336,6188,63.461418045960215,4807,49.67543987810732,1971,20.235436538581958,77.3504688262772,79.68182965039287,63.33176974345843,65.05955540786792,77.10574185386736,79.43667172464717,63.24107921986975,64.97075587924304,0.2447269724098362,245.15792574570128,0.0906905235886839,88.79952862487528,143.41888,100.87669665471796,149672.1838408716,105275.08991120824,368.62046,241.5023510910117,384173.5196510196,251522.12526223797,358.90139,175.17938563337498,371192.7845379975,180228.3150375967,3497.81071,1607.3408040517018,3614135.062929181,1641924.0413847305,1197.58841,535.6647288424559,1236014.6626035776,545638.6461672499,1941.64876,817.4084565208349,1995053.3697898183,827400.011948266,0.37894,100000,0,651904,6803.281083675983,0,0.0,0,0.0,31680,330.0912107866669,0,0.0,32887,339.93237461125835,1667798,0,59974,0,0,0,0,0,70,0.7200851578969338,0,0.0,0,0.0,0,0.0,0.06188,0.1632976196759381,0.3185197155785391,0.01971,0.3295296838858905,0.6704703161141095,24.628857527835343,4.375841287150648,0.3130850842521323,0.2261285625130018,0.2228000832119825,0.2379862700228833,11.1084756255681,5.743233129927561,21.08890432089705,12218.585274581585,54.837914038384746,12.98471358638361,17.159298698078775,12.030995005281616,12.662906748640726,0.5533596837944664,0.7690892364305428,0.6903654485049834,0.5863678804855276,0.1372377622377622,0.7217651458489155,0.9041769041769042,0.8816425120772947,0.7423076923076923,0.15234375,0.4884726224783862,0.6882352941176471,0.617781851512374,0.5363748458692972,0.1328828828828828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004360037719396,0.0065360803816096,0.0086869938937037,0.0109445246862094,0.0133527530504573,0.015634082912651,0.0178804836206192,0.020132100936567,0.0222345064799459,0.0243839914686791,0.0265954715818657,0.0287533036476383,0.0308135942327497,0.0328785206728339,0.0351814349479252,0.03737901764919,0.0394440699061349,0.0414220245456151,0.0434189706862091,0.0576870918612171,0.07181615732851,0.0847864358469212,0.0971642904422194,0.1090836300807012,0.1248071354595988,0.1365424375762074,0.1478187794525939,0.1590224841457946,0.1684687677486417,0.1817262269856129,0.1936913564232282,0.2041864911251602,0.2147900408769974,0.2246287537124628,0.234905723085104,0.2447018648096688,0.2535699415981185,0.2622351418254491,0.2696898194813525,0.2768944128130352,0.2840685815868263,0.2913447317044311,0.2972198921509886,0.3023264294049008,0.3074094638780924,0.3135770594944165,0.3183649017258521,0.3229286890666943,0.327138627471714,0.3260326842368055,0.3255182115323615,0.3249354278697548,0.3243908442037903,0.323293053157926,0.3212253225138439,0.3202487862152127,0.3207152962853288,0.3223980159069529,0.3238575413001502,0.3243577491708359,0.3250459495246942,0.3258410490594495,0.326643846343155,0.3289188538405971,0.3302029529921219,0.3313211845102505,0.3330609679446888,0.3369724963258451,0.3385561285204284,0.3395618848927389,0.3425163605657589,0.3448232718173287,0.3478228058259754,0.3492345033607169,0.3470987365465606,0.345402211786093,0.3515625,0.3510954828239113,0.3460511255246089,0.0,1.815872029665419,59.203599927264335,177.6141558360856,260.8634844472268,fqhc7_100Compliance_implementation,60 -100000,95714,44476,420.86842050274777,6239,63.91959378983221,4895,50.52552395678793,1907,19.547819545729983,77.30949638025908,79.66892286454986,63.31695901961641,65.05927985699924,77.07030445693766,79.43163611673099,63.22801096914372,64.9735460293775,0.2391919233214139,237.2867478188709,0.0889480504726947,85.73382762173765,143.52822,100.9906405443874,149955.3043441921,105512.92448794052,369.77877,241.0073754689365,385693.1378899639,251157.5440213724,358.09795,173.59195630777228,369912.8863071233,178156.57043571523,3525.2897,1598.4522335316449,3641880.989196983,1629086.873070664,1187.33873,521.619972771826,1226257.590321165,530799.8632643165,1884.74532,791.4398625374155,1934460.6222705145,797979.7575106567,0.38102,100000,0,652401,6816.1501974632765,0,0.0,0,0.0,31899,332.62636604885387,0,0.0,32932,339.8457905844495,1667272,0,59870,0,0,0,0,0,54,0.5641807885993689,0,0.0,2,0.0208955847629395,0,0.0,0.06239,0.1637446853183559,0.3056579580060907,0.01907,0.3322644678576882,0.6677355321423118,24.68838005621064,4.496160924512678,0.3156281920326864,0.2275791624106231,0.2218590398365679,0.2349336057201225,11.24991070183338,5.685275930670083,20.373420120424825,12342.161876292652,55.44382750531671,13.294143987062478,17.40434604240575,12.04949587757605,12.695841598272448,0.555873340143003,0.7809694793536804,0.7061488673139159,0.5681399631675875,0.1243478260869565,0.7244408945686901,0.9263157894736842,0.9016393442622952,0.7182539682539683,0.1732283464566929,0.4979412572055998,0.7057220708446866,0.6454622561492791,0.5227817745803357,0.1104910714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023191987117813,0.0046123590949639,0.00681762843925,0.0091106687251157,0.0114674935190362,0.0136899854448481,0.0159404780104978,0.0181897986056529,0.0204611422264012,0.0224130343564184,0.0245082462919874,0.0266548930621297,0.0290185916419874,0.0309880332021997,0.0328475810360653,0.0347781164436637,0.0368449922894608,0.03900481207998,0.0408759275811178,0.0429166666666666,0.0569426605265081,0.0705142294930972,0.0843079053083143,0.0972239747634069,0.1098551152540228,0.1259901644545502,0.1379903026959354,0.1497471925062536,0.1610194838489147,0.1713614771764655,0.1837631698015642,0.1953466718634966,0.2068147438757631,0.2177653252197134,0.2278072628774031,0.2373118112680428,0.247600960732838,0.2571109934550697,0.266266004703423,0.2732316863464404,0.2801644279759148,0.2872555788291187,0.2935861301248194,0.2993833825187744,0.3050221206670231,0.3112095122974073,0.3167025484403945,0.3217969287187714,0.3269507499643491,0.3311563834428418,0.3298976026334606,0.328216505215582,0.3271231175283341,0.3266206617189647,0.3265315234863368,0.32528622732435,0.3234023631050692,0.3247465104029497,0.324499905723444,0.3247952105253723,0.3255743992780054,0.3272933182332956,0.3295382802306494,0.3308556029642937,0.3328015855751335,0.3328717010713352,0.3323781413875118,0.3362324320917628,0.3391915641476274,0.3425845276744002,0.3459562667636496,0.3499389240002124,0.3529707955689828,0.356636965958419,0.3605909475863367,0.3600047415836889,0.3627435936780727,0.3679769499897098,0.3738601823708207,0.3729792147806005,0.0,2.3661408010956686,54.75441400294353,188.6361312634085,271.2143147545885,fqhc7_100Compliance_implementation,61 -100000,95742,44513,421.71669695640367,6197,63.47266612354034,4855,50.20785026425184,1923,19.71966326168244,77.40440741590693,79.76162412535564,63.3594678928421,65.09920480611127,77.16224590881232,79.52057408630668,63.26925100920131,65.01196990936927,0.2421615070946075,241.0500390489574,0.0902168836407852,87.2348967420038,143.3333,100.79846827135944,149707.63092477698,105281.11828806528,370.75641,241.7674256822645,386747.5924881452,252021.99210614403,360.41687,174.22322553152472,373511.4474316392,179607.89548963984,3499.49206,1581.6105830889546,3619874.558709866,1617006.73228314,1154.16469,504.3588119855877,1193530.2270685802,514935.3081265192,1892.56428,793.4545997760588,1942942.57483654,799953.5443739918,0.38112,100000,0,651515,6804.892314762591,0,0.0,0,0.0,31859,332.2366359591402,0,0.0,33044,342.2531386434376,1672255,0,59957,0,0,0,0,0,68,0.6997973721041967,0,0.0,0,0.0,0,0.0,0.06197,0.1625997061293031,0.3103114410198483,0.01923,0.3263771674083167,0.6736228325916833,24.87833413910308,4.419449284963329,0.3338825952626159,0.2170957775489186,0.2189495365602471,0.2300720906282183,11.166771415184796,5.717240872432043,20.4022269922074,12282.985904783478,54.77401663749448,12.668790417057282,18.21794041592672,11.812284028895869,12.07500177561462,0.5590113285272914,0.7979127134724858,0.6983343615052436,0.5738476011288806,0.11727842435094,0.7264890282131662,0.9322916666666666,0.8779904306220095,0.703125,0.1009174311926605,0.4993014808605756,0.7208955223880597,0.6359102244389028,0.5328376703841388,0.1212458286985539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002237589478267,0.0047124398277172,0.0068882261042465,0.0093027979485096,0.0113163807916382,0.0135382736156351,0.0159286624203821,0.0177953736110119,0.0199341997711296,0.0220721412125863,0.0241467664241057,0.0263568437474341,0.0282306980569548,0.0302406064601186,0.03212093071248,0.034113463446907,0.0362043432784814,0.0382572614107883,0.0403026334933798,0.0424126904769344,0.056901231989977,0.0700008372054083,0.0833918999716782,0.0960195971235123,0.1085849802371541,0.1240708432461009,0.1361331522892179,0.1473709984776383,0.1584030426375223,0.1693243112822107,0.1828481578408883,0.1955830159279778,0.2071020718908043,0.2173965338144442,0.2272772282674471,0.2378352638922726,0.2472661131940725,0.2564353429371478,0.2651452423352199,0.273037386387051,0.2805861821880128,0.2871154182964563,0.2933257758254216,0.2996641849014663,0.3053728269428796,0.3096663184415903,0.3135719193054775,0.3189493195206175,0.3236601374748049,0.3285080735369593,0.3283836580159231,0.3277012188426485,0.3268965904938584,0.3258951738453555,0.325437037037037,0.3245930179285911,0.3225628061305103,0.323059547582414,0.3237198051173724,0.3241101792995388,0.3259494855004677,0.3259739489652719,0.3272031132312327,0.3264167782240071,0.3286944837680255,0.3304010618639877,0.332274351846599,0.3360676268002505,0.3413517009894758,0.3432198362795112,0.3452089565769196,0.3487079008684601,0.3506265664160401,0.3501818732949379,0.3534796823914058,0.3582686426723124,0.3605754514845424,0.3599111828825191,0.3615788020977091,0.362238864800946,0.0,1.946154123186411,56.2281979559517,177.84739262010578,272.2774418872257,fqhc7_100Compliance_implementation,62 -100000,95749,44495,420.7459085734577,6310,64.73174654565584,4890,50.50705490396767,1891,19.37357048115385,77.33232137485312,79.69944205385724,63.31916690730778,65.07186569051554,77.09537439157519,79.46494068932101,63.230654871169456,64.98721854200113,0.2369469832779316,234.5013645362286,0.0885120361383258,84.64714851440647,143.23584,100.77570396356396,149595.12893085045,105249.87620086264,368.56409,240.4265055533805,384334.2384776864,250517.3330493277,362.97175,176.1024846995478,376314.1233851006,181692.8803437205,3514.05103,1608.7147941011674,3629820.45765491,1640540.176293032,1165.18173,514.6926826244254,1204848.9383701135,525479.9137582901,1855.49886,780.2799856288884,1902862.6513070632,783664.6068347173,0.38117,100000,0,651072,6799.77858776593,0,0.0,0,0.0,31752,331.00084596183774,0,0.0,33228,344.2124721929211,1671714,0,59973,0,0,0,0,0,71,0.7415221046695005,0,0.0,1,0.0104439733052042,0,0.0,0.0631,0.1655429335991814,0.2996830427892235,0.01891,0.3367069486404834,0.6632930513595167,24.63308213105913,4.430705244339935,0.3132924335378323,0.2376278118609407,0.2267893660531697,0.2222903885480572,11.154650536491587,5.624815214260516,20.108539325647843,12365.164246472972,55.43457086226162,13.885981509085608,17.170853172956683,12.512100104908596,11.865636075310736,0.5629856850715746,0.7814113597246127,0.7043080939947781,0.5807033363390441,0.1122355105795768,0.7409365558912386,0.9391891891891893,0.8307692307692308,0.7517482517482518,0.1225490196078431,0.4969153112731351,0.6838440111420613,0.6611208406304728,0.5212636695018226,0.1098527746319365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0048788404385884,0.0072496141661928,0.00954345881779,0.0117197037519329,0.0137325414370269,0.0157665007750673,0.0178766500934159,0.0199887531312305,0.0220004095004095,0.0241832142454406,0.0265897377984929,0.0288229184875937,0.0306400947525619,0.0327266724443894,0.034976021167521,0.0367175770126844,0.0387500389056615,0.0409777288174345,0.042952516846677,0.0568621924357729,0.0710892539499843,0.0842904643527696,0.0972490956507108,0.1090032900286823,0.1251057798087501,0.1371922750424448,0.1493868687728859,0.1609437247006803,0.1716957258358532,0.1848536745618853,0.1971951391068163,0.2090536232987739,0.2195474083715232,0.2278454546454942,0.2382898146302571,0.2478519940190586,0.2575839409487803,0.266749886518384,0.2743317222896672,0.2813414958743678,0.2881127881127881,0.2947434440973208,0.3012523218886692,0.3067448894071348,0.3124745787780558,0.3176329258068149,0.3224571799142962,0.326921583348435,0.3307177992588587,0.3296058563104705,0.3291705062786251,0.3287347260543949,0.3273611873069038,0.3267397309097389,0.3249613542097127,0.3235205577121128,0.3248666830749036,0.3252664790654046,0.3271526724368698,0.3272870514527958,0.3275462733841433,0.3288910342511753,0.3304055568003585,0.3317661241711874,0.3339337457905866,0.3337323301413589,0.3366876971608832,0.3388287401574803,0.3438185225052824,0.3453873865657348,0.3461230588611986,0.3486633726086405,0.3504737163814181,0.3522589093630156,0.3582912803661542,0.362006628502561,0.3615369301214414,0.3671366594360086,0.3755673222390318,0.0,2.1114466691487297,58.08050902123098,181.80747623990015,267.08211607886057,fqhc7_100Compliance_implementation,63 -100000,95737,44672,423.0026008753146,6164,63.20440373105488,4865,50.34626111116914,1927,19.835591255209582,77.41699606751023,79.77104074048638,63.36600846061516,65.10096968401506,77.18705822982005,79.53902561192041,63.28194720299874,65.01783308018692,0.2299378376901728,232.01512856597617,0.084061257616419,83.13660382813737,144.9635,101.93842019063044,151418.46934831885,106477.5585099078,371.46663,242.2723512166355,387534.6417790405,252599.9889485051,366.44901,177.68651234603763,379717.38199442223,183240.7528941016,3484.37236,1577.6316243745714,3610253.527894127,1619490.8194861228,1117.76653,495.8384841303941,1155306.3183513165,506458.9454050235,1886.78114,783.1646084117672,1944373.2935019897,796381.0316416395,0.38108,100000,0,658925,6882.657697650857,0,0.0,0,0.0,31975,333.5074213731368,0,0.0,33521,347.12806960736185,1662563,0,59685,0,0,0,0,0,64,0.65805279045719,0,0.0,0,0.0,0,0.0,0.06164,0.161750813477485,0.3126216742375081,0.01927,0.3312170950758749,0.6687829049241251,24.580286354094945,4.43426231271649,0.329907502569373,0.2273381294964029,0.218705035971223,0.224049331963001,11.281440324082157,5.819762991414538,20.36109452178241,12273.070213946326,54.851597618300296,12.963321284916152,18.078595218432067,11.904226442569229,11.90545467238285,0.5547790339157246,0.7739602169981917,0.6866043613707166,0.5977443609022557,0.0963302752293578,0.7440381558028617,0.9293785310734464,0.8694638694638694,0.7871485943775101,0.168141592920354,0.4887718325478237,0.7007978723404256,0.6198979591836735,0.5398773006134969,0.0775462962962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0044879392963154,0.0069579681921454,0.0091390042547142,0.011336830974459,0.0133655001119729,0.015381008684307,0.0176566646254337,0.0197947963292251,0.0220364819380645,0.024285772840923,0.026724686467292,0.0287626311948108,0.0310282683692909,0.0328876784682677,0.0349580978165397,0.0368771417626901,0.0388716034017838,0.0408118725447402,0.0427834783061617,0.0573433290872261,0.0711154357219833,0.0848360870705481,0.0975822650359137,0.1097014374452916,0.1248096446700507,0.1366827881719061,0.148612116309762,0.1593385463402128,0.1688916052798061,0.1814687611029166,0.1942902887309469,0.2058750013584446,0.2158404595742822,0.2262331099637482,0.2367562305726706,0.24705790576383,0.2558907803809203,0.2638034028179232,0.2717829031667582,0.279261682134973,0.2861782539107679,0.2925860703691009,0.2986978792665996,0.3044770326164744,0.3097442083753908,0.314531345670836,0.3193378728593932,0.3236510768117066,0.3284268508025195,0.327381512605042,0.3264425916514429,0.3260771677032618,0.3253240091892907,0.3246851609837234,0.3225539986538579,0.3210693363230116,0.3228813975170518,0.3230421174389331,0.3243171242851561,0.3259455328350141,0.3272137592137592,0.3285559310718905,0.3287333333333333,0.3300806007988328,0.3312658950537188,0.3314530302171325,0.3350204642734402,0.3385560247060055,0.3410525485245384,0.3433085082374182,0.3451752533783784,0.3495188101487314,0.3461801596351197,0.3482317812820752,0.3548273844353423,0.3557837511325883,0.3628952077947902,0.3643473570658037,0.3614413075780089,0.0,1.8159270229976945,55.54288499445184,183.3440332344764,269.32045857412226,fqhc7_100Compliance_implementation,64 -100000,95685,44946,424.9046350002613,6247,64.00167215342007,4916,50.6871505460626,1940,19.804567069028582,77.3508434030137,79.74028929427341,63.31502979323547,65.0822799089593,77.11425426622625,79.50936721442592,63.22664510056937,64.99980990043227,0.2365891367874439,230.92207984748825,0.0883846926660965,82.47000852702513,142.20074,100.18215111015878,148613.40858023724,104699.95413090744,371.12376,242.69262512929816,387180.6239222449,252957.77303579252,367.68047,178.64603534096162,380173.97711240005,183612.4296009315,3536.4675,1595.6445342264428,3647879.563149919,1619533.463161878,1187.3959,526.1068476131983,1220204.8387939597,529094.3696642094,1913.22946,797.6259056910073,1955010.2523906569,794653.7492783141,0.38308,100000,0,646367,6755.154935465329,0,0.0,0,0.0,31807,331.7029837487589,0,0.0,33751,348.60218425040495,1671113,0,59877,0,0,0,0,0,74,0.773370956785285,0,0.0,0,0.0,0,0.0,0.06247,0.1630729873655633,0.3105490635505042,0.0194,0.3341957084157662,0.6658042915842337,25.022267897950865,4.344266883206915,0.3254678600488201,0.2274206672091131,0.2160292921074044,0.2310821806346623,11.011721565367024,5.711513707046496,20.51604120103024,12429.678845773651,55.41202640929348,13.236684567950697,17.94543661122865,11.889479937971396,12.340425292142744,0.5551261187957689,0.7844364937388193,0.681875,0.5866290018832392,0.1214788732394366,0.7292817679558011,0.9313984168865436,0.8482587064676617,0.7333333333333333,0.1861471861471861,0.4946560701562071,0.7090663058186739,0.6260434056761269,0.540272614622057,0.1049723756906077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0047966251229578,0.0072582200611111,0.009868688511261,0.0120348328551954,0.0141602656832582,0.0162808964694121,0.0188022141879608,0.0211083952915188,0.0231765019151594,0.0253720169420258,0.0273415433284374,0.0295718003312041,0.0315999876361313,0.0335521291308027,0.0357183471347786,0.0379514701920885,0.0397670652715495,0.041684438295172,0.0438358734858119,0.0585795911545653,0.072139147189411,0.0861851774091958,0.0994455374709354,0.1118296812854083,0.1273662268403398,0.1396072186836518,0.1509100397243788,0.1622641509433962,0.1716358640822547,0.1840732196373515,0.1969163806450914,0.2083124741527545,0.2189521380804885,0.2284723369116432,0.2391919012718019,0.2488779725354471,0.2585253819393625,0.2667098254341431,0.2739361702127659,0.2817344989289643,0.2884676182335515,0.2950759460676287,0.3011636276391555,0.3074417134660734,0.3128420689315122,0.317469253962892,0.3226704993513266,0.3274731245391392,0.3320580474934037,0.3315465528155261,0.3307016216662311,0.3301521613670594,0.3287040378813033,0.327887323943662,0.32744945211132,0.3257327960812198,0.3270374314030633,0.3284661572052402,0.3289853522933818,0.3305152903768821,0.3317110655737705,0.3328048398873474,0.3334520840755254,0.332846365704706,0.3336361041185477,0.3344266930581083,0.3364754354204382,0.340050904780168,0.3432835820895522,0.3462733618554379,0.346103177530695,0.3478613799562909,0.3515050420805216,0.3532669921141569,0.3547466095645967,0.3555385790679908,0.3606622780769998,0.3624762421938637,0.3655252020007695,0.0,2.6524205649500865,55.15546098082772,181.3302855668894,277.89809158079845,fqhc7_100Compliance_implementation,65 -100000,95724,44341,420.3439053946764,6116,62.6488654882788,4785,49.42334210856212,1885,19.36818352764197,77.26691653433518,79.62641151334877,63.2951211478972,65.03879939145877,77.0320230973737,79.39227370741311,63.20822606360727,64.95477663110464,0.2348934369614852,234.13780593566003,0.086895084289928,84.02276035413081,143.7238,101.15409083324256,150143.95553884082,105672.65349676418,371.57067,242.3805413572872,387618.9774769128,252657.9137492032,359.57646,174.47142869657625,372025.38548326434,179571.3135977536,3439.40923,1561.4736346566692,3556571.048013037,1594747.8946310924,1142.6754,505.28177279411256,1179699.281266976,513833.22133854846,1849.92184,771.1828317314801,1902518.365300238,779200.1998075612,0.37977,100000,0,653290,6824.725251765492,0,0.0,0,0.0,32059,334.32576992185864,0,0.0,32906,340.1759224436923,1662249,0,59733,0,0,0,0,0,65,0.6581421587062806,0,0.0,0,0.0,0,0.0,0.06116,0.1610448429312478,0.3082079790712884,0.01885,0.3389408099688473,0.6610591900311527,24.624112224754047,4.352428669508203,0.3339602925809822,0.2221525600835945,0.21901776384535,0.2248693834900731,11.294438793578818,5.855769157276491,20.046025372869405,12257.034789033363,54.25107916087453,12.707366147216495,18.187501040170247,11.610801601524162,11.745410371963631,0.561337513061651,0.7845719661335842,0.6983729662077597,0.5820610687022901,0.1171003717472119,0.7430555555555556,0.9128205128205128,0.8981481481481481,0.7154150197628458,0.171945701357466,0.4938377758670106,0.7102526002971769,0.6243567753001715,0.539622641509434,0.1029239766081871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022383826925414,0.0047247766883979,0.0070828428785972,0.0094777582511351,0.011705957732441,0.0139594554692352,0.0160456700137621,0.0181704964220455,0.020475757235006,0.0224062397641663,0.0240587168000984,0.0265494902621069,0.0288343873721013,0.030704419747237,0.0327669276878475,0.0345975336206985,0.0366274193047314,0.038521392704486,0.0401750446966862,0.0419258379437168,0.0563653830089382,0.0702345688058029,0.0831050803345611,0.0957436733834903,0.1076338696913743,0.1224837542069724,0.134278282104369,0.1460905130635764,0.1579228778578608,0.1681623977499624,0.1819377513287406,0.1947273751733703,0.2061139365954064,0.2163751656463218,0.2263290134884951,0.2368298368298368,0.2465306122448979,0.2551348062688013,0.2635118249767135,0.2719624025676295,0.2795630489371304,0.2857343492152663,0.29274991712838,0.2988788296660471,0.3048867931407459,0.3107853170737722,0.3152612454579626,0.3202318028402216,0.324287159795553,0.3284729481191368,0.3279822712285822,0.327556684802121,0.3263315616872102,0.325555796944022,0.3252602886634791,0.3240777712934238,0.322276236774378,0.3232173454593383,0.3235516070387267,0.3236901030004478,0.3237068074632194,0.3258132942132704,0.326796010268928,0.3265503006371713,0.3275687164871262,0.3304288667346992,0.3319971367215462,0.3341139981643827,0.3380977777777778,0.3394225340753286,0.341709701217263,0.3431050277523306,0.3439348641943897,0.3451476793248945,0.3495881071868194,0.3520523497917906,0.3533558075390745,0.3577235772357723,0.3645170218654857,0.3675213675213675,0.0,2.2325840855904717,57.0137858167443,171.22758144922952,269.2538135014176,fqhc7_100Compliance_implementation,66 -100000,95709,44339,420.012746972594,6166,63.316929442372185,4829,49.94305655685463,1882,19.40256402219227,77.288290147924,79.65721986746652,63.294707477804174,65.04380266406704,77.05260240209113,79.41986950124628,63.20751474364282,64.95809047355326,0.2356877458328767,237.35036622024097,0.0871927341613556,85.71219051378876,142.296,100.1680876563132,148675.673134188,104659.00558600885,369.59595,241.6633182495292,385655.2675296994,251987.165633323,361.3981,175.67917796051032,373388.7304224263,180358.93154005683,3481.30147,1583.2096392694614,3606255.639490539,1623085.1309347989,1134.46913,501.5149196927327,1175414.4542310543,514110.15392066975,1854.84768,777.1630047055799,1913869.604739366,790904.6081705283,0.37915,100000,0,646800,6757.985142463091,0,0.0,0,0.0,31842,332.1526711176587,0,0.0,33142,342.2353174727559,1667453,0,59898,0,0,0,0,0,69,0.7104869970431202,0,0.0,1,0.0104483381918105,0,0.0,0.06166,0.1626269286562046,0.3052221861822899,0.01882,0.3377206565500155,0.6622793434499845,24.36204271689876,4.440460218347767,0.3213915924622075,0.2261337751087181,0.2253054462621661,0.2271691861669082,11.137597479552772,5.5583038492398575,20.06385670445104,12207.80091478676,54.8622295790634,12.981571246212656,17.688912744494562,12.140717994273706,12.051027594082472,0.5607786291157589,0.7847985347985348,0.7132731958762887,0.5827205882352942,0.1002734731084776,0.7308602999210734,0.9212598425196852,0.8731707317073171,0.7673469387755102,0.1255411255411255,0.5002807411566536,0.7116736990154712,0.6558669001751314,0.5290628706998813,0.0935334872979214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774577421282,0.0046025486359627,0.0065653285708487,0.0089802718462382,0.0114412985111056,0.0136240059465018,0.0159152545829,0.0180778849589139,0.0202804922925951,0.0222486030660908,0.0245867196867986,0.026513790661151,0.0285731911699688,0.03049464979042,0.0324294216546844,0.034352683415839,0.0362704493683992,0.0380875286694272,0.0399929271286222,0.042324127149557,0.0572956375523504,0.0713306042109451,0.0848839772047479,0.0976995769578852,0.1104531492447512,0.1254128906580842,0.1376469214189397,0.1492979353546545,0.1602690218553526,0.170451738985708,0.1834514142753928,0.1947390659025167,0.2060380317584787,0.2167819917666637,0.2260430893950742,0.236538738918661,0.2466121025090567,0.2546680497925311,0.2627902478981558,0.2701517048129816,0.2777977522877257,0.2842955632679861,0.2903952925544535,0.2966704302495976,0.3027446969143469,0.3078272687959473,0.3117277749874435,0.3165482311215442,0.3207929538309647,0.3244491497386356,0.3241824951435355,0.3235923120438208,0.3226472168037769,0.3223786259984633,0.3213604103298145,0.3205748238220257,0.3188842699838162,0.3188126952803815,0.3197027295455323,0.3200050093029912,0.3210676584394605,0.3218554579276498,0.3228440675119657,0.3244450399749877,0.3261729519790942,0.3272156170499974,0.3273166571915861,0.330276093853064,0.333719298245614,0.3374274584625168,0.3398098198774801,0.3423337061298397,0.3433333333333333,0.345814307458143,0.349198956780924,0.3525543159130945,0.3562801932367149,0.3547871277233659,0.3621432417878298,0.3688739244294799,0.0,2.006489413467976,55.86100120101951,186.92467413637115,262.0927648633067,fqhc7_100Compliance_implementation,67 -100000,95821,44512,421.2646497114411,6194,63.21161332067084,4864,50.10383945064235,1925,19.661660805042736,77.36488025655099,79.68028945853183,63.35773544642036,65.07148965805362,77.11754737199193,79.43466735776605,63.264121466126255,64.98123687005186,0.2473328845590572,245.62210076578597,0.0936139802941014,90.25278800176297,144.41438,101.59951658411804,150712.66215130294,106030.53253891948,370.89413,242.55625328062123,386376.7441375064,252441.7228797668,364.15124,177.40387163190144,375641.7382410954,181738.11452863965,3519.9598,1609.0775904322309,3628854.9274167456,1634634.2351178026,1145.53235,511.8055167110504,1177496.9161248575,516139.1987134679,1893.76308,809.1977109849192,1936329.8650608948,810624.7003833789,0.3805,100000,0,656429,6850.575552331952,0,0.0,0,0.0,31782,330.9608540925267,0,0.0,33259,342.75367612527526,1666048,0,59778,0,0,0,0,0,80,0.8244539297231296,0,0.0,2,0.0208722513853956,0,0.0,0.06194,0.1627858081471747,0.3107846302873748,0.01925,0.3284132841328413,0.6715867158671587,24.733589745222663,4.3837294248028105,0.3159950657894737,0.2263569078947368,0.2251233552631578,0.2325246710526315,10.9932596090702,5.58242964152417,20.633831001303648,12289.086766264025,55.26537494367068,13.213913593127495,17.457052796148123,12.145494556248604,12.44891399814645,0.5413240131578947,0.7647593097184378,0.690305790500976,0.5607305936073059,0.1025641025641025,0.7034220532319392,0.900990099009901,0.8225419664268585,0.7429718875502008,0.1346938775510204,0.4812623274161736,0.6857962697274032,0.6410714285714286,0.5070921985815603,0.0936794582392776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0045419522283953,0.0068187352869551,0.0091618250518018,0.0111855685827884,0.013430130737588,0.0157291687903932,0.0178246932233497,0.0200257605495583,0.0220379753313885,0.0245152297790349,0.0263336138420804,0.0283153642969464,0.0304758179890694,0.0324495938646765,0.0344496520967109,0.0366274980346725,0.0387516578249336,0.0405374535335285,0.0424387452530822,0.0572406024448245,0.0710657245589096,0.083919966478106,0.0968727685134624,0.1096366508688783,0.12489967473493,0.1378199694863536,0.1492270726572965,0.1600998623691707,0.1710925197904727,0.1836082507505084,0.1964471066516737,0.207976093452866,0.217818753823298,0.227441108900443,0.2383191009247378,0.2480303992689911,0.2576557550158395,0.2653049664672829,0.272873873461732,0.2807684310237275,0.2873693430656934,0.2940293391018594,0.2995596822054178,0.3054010734147704,0.3102925964238215,0.3148641382501156,0.3190559107258607,0.3236888055357951,0.3270094726163656,0.3261027434104357,0.3250498521625524,0.3244770818063934,0.3235621628656958,0.3224716927792408,0.3215611102591627,0.3203002269156921,0.3213221616816737,0.321931900010287,0.3231601382694822,0.3237919475725961,0.3244564569339004,0.3262991794656006,0.3283424620633923,0.3299172440338722,0.3316978965499243,0.334585289514867,0.3385133222183774,0.3397870620893214,0.3413438546150167,0.3430901012321927,0.3457378453630327,0.3459676391897057,0.3480335565304395,0.3514851485148514,0.3539727988546886,0.3519604816301327,0.3574502971920476,0.3586836283185841,0.3639179248935346,0.0,2.4851133153299343,57.257712131336135,183.62945945962892,263.97775397018177,fqhc7_100Compliance_implementation,68 -100000,95628,44310,418.76856150918144,6172,63.2137030995106,4787,49.37884301668967,1911,19.54448487890576,77.2563444549925,79.6661661947302,63.27473565930678,65.05554385516216,77.01459050363002,79.42663359596463,63.18625955680281,64.97044978686264,0.2417539513624831,239.53259876556388,0.0884761025039679,85.0940682995116,143.21318,100.7476159310445,149760.718617978,105353.67876672574,367.96172,240.1355817673301,384107.4266951102,250437.22734693825,354.81315,172.91993314208923,366417.6078136111,177247.3319525635,3438.31077,1546.8257226206458,3549444.901074999,1571483.375811109,1146.34746,499.1269783928193,1184780.1689881624,507990.5236101386,1877.25548,779.4919796683829,1922811.1222654453,782114.4767820414,0.37959,100000,0,650969,6807.305391726272,0,0.0,0,0.0,31733,331.15823817292005,0,0.0,32461,334.8182540678462,1667115,0,59825,0,0,0,0,0,59,0.6169741080018405,0,0.0,1,0.0104571882712176,0,0.0,0.06172,0.1625964856819199,0.3096241088788075,0.01911,0.321340713407134,0.6786592865928659,25.068265855283347,4.384383852702864,0.3300605807395028,0.2245665343639022,0.2143304783789429,0.2310424065176519,11.195039385359683,5.759835685522484,20.216163234131344,12323.28959219918,53.74280774309882,12.783310519680484,17.883638756339227,11.090821108554984,11.985037358524115,0.5598495926467516,0.8018604651162791,0.6955696202531646,0.5750487329434698,0.1166365280289331,0.7354581673306773,0.9430051813471504,0.8497652582159625,0.7235023041474654,0.1769911504424778,0.4974518686296715,0.7227866473149492,0.6386481802426344,0.5352286773794809,0.1011363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023294677672557,0.0045812513302859,0.0070936380519388,0.0092143894832017,0.0116797232678807,0.013986940089443,0.016392606495838,0.0182986636151865,0.0205592946423091,0.0225889728932325,0.0248009358069282,0.0266884531590413,0.0291444042949648,0.031363088057901,0.0335306331153738,0.0357915213724739,0.0379089438984948,0.0400868427066669,0.0421015390058376,0.0438809675299615,0.0585143072131764,0.0718655715722427,0.084796119766514,0.0970326003431615,0.1088704571356211,0.1247949713753584,0.1366969848126253,0.1491507374474202,0.1597584437793929,0.1693369246783349,0.1821710022747119,0.1953954496208017,0.2064221682442515,0.2162339868278303,0.2254339722522443,0.2362754456456589,0.2461553947500867,0.2560996224714036,0.2646671061305207,0.272610471252237,0.2792787569573284,0.2865818629462454,0.2936989941165306,0.3002749198650611,0.3059231752602422,0.3119456454601605,0.3167935580167321,0.3213976026523846,0.3256462832225913,0.3300419029490687,0.3289793274680196,0.3282597596147212,0.3274336283185841,0.3268837479150047,0.3268579442877818,0.3255105338483556,0.3233386327503975,0.3227566427111492,0.3235096889561374,0.3247777278850471,0.3256414607016948,0.3257104221767057,0.3268744734625105,0.3284772961585011,0.3312507538294536,0.3323746274120169,0.3326745151957835,0.3361331270327449,0.3390705679862306,0.3405091949001072,0.3428662652800583,0.344440304465854,0.3479691256484879,0.3517110266159696,0.3529520808230605,0.3548159473127131,0.3591867469879518,0.3598636728147554,0.3764929424538545,0.3671965878247383,0.0,2.608037526063479,54.58069959663304,165.5456956315821,279.057520192136,fqhc7_100Compliance_implementation,69 -100000,95687,44385,420.69455620930745,6196,63.45689592107601,4888,50.44572407955104,1974,20.190830520342367,77.32722884548278,79.70418788391889,63.32110870231941,65.07601518378534,77.08074692144311,79.46001586462928,63.230088381293335,64.98876043762294,0.2464819240396707,244.17201928960708,0.0910203210260789,87.25474616240092,143.3311,100.82031835874264,149791.61223572688,105364.69777372332,370.40745,240.9783749555213,386486.4924179878,251223.5256153096,353.61204,171.2030859249947,365651.3005946471,175897.50624287562,3517.39498,1586.240206376417,3634408.45673916,1616208.7288517957,1169.30132,510.9689111417329,1203674.7207039618,515668.60821400245,1938.08678,807.1407702955586,1985124.3951633973,809225.857584667,0.38067,100000,0,651505,6808.709647078495,0,0.0,0,0.0,31876,332.46940545737664,0,0.0,32428,334.9566816808971,1670172,0,59960,0,0,0,0,0,65,0.6792981282723881,0,0.0,0,0.0,0,0.0,0.06196,0.1627656500380907,0.3185926404131698,0.01974,0.3226841944359523,0.6773158055640477,24.66402927884411,4.534940107728841,0.3263093289689034,0.226063829787234,0.2178805237315875,0.2297463175122749,11.281656238739831,5.700551572210502,20.90578430636225,12301.6538300369,55.10685464395344,13.032599438606828,17.94680150486195,11.835037650385072,12.292416050099591,0.5509410801963993,0.7656108597285067,0.6946708463949843,0.5746478873239437,0.1130899376669634,0.7229299363057324,0.8994974874371859,0.8778625954198473,0.7447698744769874,0.1194690265486725,0.4914647577092511,0.6902404526166902,0.6347753743760399,0.5254237288135594,0.1114827201783723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022678032680664,0.0046214186539104,0.0067261844374556,0.0087957179276232,0.0110533754995373,0.0129921700793174,0.0154895682499541,0.0176687467445589,0.0197165238377681,0.0218226131836847,0.0238849747202822,0.0260465880612957,0.0279569228870305,0.0299742400824317,0.0320033850726552,0.0345505124148129,0.0362074859883763,0.0381636593924544,0.0401918056147869,0.0422351702644388,0.0575934823480259,0.0711990706339155,0.0843036062684876,0.0970867657734431,0.109432847785501,0.1248558582385612,0.1370954902938897,0.1487050604873062,0.1605316864161386,0.1702481466779672,0.1833566734891737,0.1958668023469807,0.2076992527003948,0.2187681167346671,0.2285830645782655,0.2389996343368754,0.2488419078660966,0.2581650447207065,0.2670071501532176,0.2750933626595184,0.2820492040520984,0.2889242580282745,0.2947875602277705,0.3006316596948376,0.3059579950410812,0.3120868278243709,0.316197562411534,0.320074889194559,0.3243978949005781,0.3288684579007159,0.3272629164980439,0.3264982923873527,0.3260136802764262,0.3248243762828481,0.3237364043506078,0.3229229044789411,0.3220287924911212,0.3225409634404369,0.3225690829336565,0.3228565319649348,0.3241109676936603,0.3233587304093798,0.3244205280680081,0.3249636668529905,0.3264499650610828,0.3280947649181528,0.3288623233998741,0.3326715199647033,0.3365293435886629,0.3375164336082227,0.3405241657869371,0.3433402900412051,0.3435162885029788,0.3456657180216906,0.3459083547680289,0.3520334928229665,0.3570102135561745,0.3565875613747954,0.3543110618242306,0.3506944444444444,0.0,2.529976579238918,54.74143709423005,180.39726971847057,277.2834861979652,fqhc7_100Compliance_implementation,70 -100000,95785,44330,419.1888082685181,6140,62.85952915383411,4802,49.621548259122,1874,19.199248316542256,77.38146625236273,79.70389356870065,63.35451413110488,65.06742516231716,77.15219493837392,79.47711167935074,63.269121976431386,64.98577762785473,0.2292713139888036,226.78188934990828,0.0853921546734923,81.64753446243367,143.33154,100.8468928943353,149638.81609855406,105284.6404910323,367.91444,240.1462994030252,383598.9559951976,250209.68006211348,359.13695,173.76001320380266,371953.7714673488,179108.85669633717,3446.85598,1553.9456834911944,3560106.039567782,1584057.99993868,1167.84984,515.7560241912859,1201128.1933496892,520610.48237788223,1841.22718,765.8640123208007,1886934.8854204728,768738.1444847127,0.37875,100000,0,651507,6801.7643681160935,0,0.0,0,0.0,31701,330.41707991856765,0,0.0,32906,340.5334864540377,1669655,0,59901,0,0,0,0,0,60,0.6264028814532547,0,0.0,0,0.0,0,0.0,0.0614,0.1621122112211221,0.3052117263843648,0.01874,0.3307967075632862,0.6692032924367137,24.58250883448116,4.394075050403804,0.3150770512286547,0.2328196584756351,0.2244897959183673,0.2276134943773427,11.388750127589804,6.00166153619485,19.782603280227928,12234.34714704653,53.98614797515681,13.258601576276355,16.98701038877556,11.892011291148837,11.84852471895605,0.5616409829237817,0.761180679785331,0.6893588896232651,0.6150278293135436,0.1280878316559927,0.737919737919738,0.918158567774936,0.8590078328981723,0.7478632478632479,0.1784037558685446,0.5015358838313321,0.6767537826685007,0.631858407079646,0.5781990521327014,0.1159090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025211105036146,0.0045299768940775,0.0065732747689717,0.0087232919002356,0.0111137096200189,0.0132133477207484,0.0151663405088062,0.0174085185411947,0.019493456206132,0.0217202254892933,0.0238805052709223,0.0261832209876163,0.0282096868673373,0.0303785219423312,0.0324243517707098,0.0344521326035319,0.0366947793242614,0.0386808492991623,0.0405555613267818,0.0427304152263545,0.0578265724632387,0.071406148630266,0.0848925994294344,0.0979584113033788,0.1095319929572267,0.1248439846840557,0.1366365410726408,0.14854004108962,0.1588267965478937,0.1692273053789495,0.1827557622538729,0.1953949645267347,0.2072685356358337,0.2177166172593719,0.2274722977210955,0.2371412742382271,0.2462379995534717,0.2560175547178304,0.2639097061361675,0.2713715870796176,0.2785427257883339,0.2859886185335238,0.2915739118078909,0.296989958540034,0.3026689656847269,0.3085288502986637,0.3131017580713732,0.3183407279337918,0.3223391994613004,0.3264235039691959,0.3265251204219477,0.3250766333557849,0.3241576435138902,0.323082483915275,0.3224914112345514,0.3207067224444138,0.3194655281467425,0.3201238998967501,0.3209661736860959,0.3212423244638249,0.3220538500345671,0.3227762140031101,0.3237657864523536,0.3252085098791312,0.3258515785943564,0.3257130981451654,0.3287480855408701,0.3329996872067563,0.3351050809525475,0.337773020969596,0.3418515823935977,0.3444373942470389,0.3474111041796631,0.3526526299901894,0.3532787656411704,0.3602975909305621,0.3601938806422296,0.3661717495987159,0.3662202787646898,0.3651278138115223,0.0,1.936995893236476,53.6719519078824,179.17456834225365,270.59318294452186,fqhc7_100Compliance_implementation,71 -100000,95760,44395,419.4444444444444,6234,64.08730158730158,4801,49.592731829573935,1889,19.329573934837093,77.31912755708531,79.66766363177011,63.32066847763053,65.05785691753906,77.08232170675024,79.4340388494683,63.23308813659581,64.9745512991036,0.2368058503350738,233.6247823018169,0.0875803410347231,83.30561843546036,143.93984,101.29800735655564,150312.656641604,105782.76311252677,368.99384,240.6013852633885,384790.14202172094,250713.2497529119,355.72287,172.34548165950733,368299.7702589808,177521.74065157375,3449.06538,1553.932620272192,3561283.688387636,1582459.13323523,1180.77516,514.8971820011562,1216510.5889724311,521198.9505335789,1854.47498,774.0835313326721,1898818.1913116125,775066.2482871742,0.37944,100000,0,654272,6832.393483709273,0,0.0,0,0.0,31808,331.61027568922304,0,0.0,32537,336.64369256474515,1666868,0,59798,0,0,0,0,0,71,0.7309941520467836,0,0.0,0,0.0,0,0.0,0.06234,0.1642947501581277,0.3030157202438241,0.01889,0.3237277743715512,0.6762722256284488,25.15094627293122,4.373812733075206,0.3265986252863986,0.2280774838575296,0.2176629868777338,0.2276609039783378,11.349467215108284,5.795575906289443,20.04927449980028,12296.055216573388,54.17707694359186,12.92636933758884,17.623754107718856,11.524776404691677,12.102177093592491,0.5644657363049365,0.7680365296803653,0.7072704081632653,0.5923444976076555,0.1290027447392497,0.7234387672343877,0.9107142857142856,0.8756345177664975,0.7298578199052133,0.1525423728813559,0.5095291479820628,0.6884779516358464,0.6507666098807495,0.5575539568345323,0.1225204200700116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759703895735,0.0043980988862878,0.0070411103445477,0.0091612667330232,0.01118670612523,0.0133919933192793,0.0157124649502931,0.0179001756320712,0.0200711641888713,0.0221944677627403,0.0244022474674978,0.0266662559426629,0.0288376493819034,0.0308437210260636,0.0328734896870518,0.035098235786558,0.0369181712771244,0.0390655795522914,0.0411185235987281,0.0432871575877512,0.0583832647863212,0.0730597428682016,0.0862578926391307,0.0986540483701367,0.1107257316353209,0.1265054508157719,0.1386101860297393,0.1498510321344967,0.1608862786972771,0.1703596505333119,0.1829781735562997,0.1957578053135653,0.2065301327996693,0.2170247662784976,0.2266361566133841,0.2363056549036108,0.245968236961641,0.2546407758252143,0.2638113395978029,0.2716425430560645,0.2795596865486787,0.2860938158325921,0.2929805027125631,0.2994466915515441,0.3048359240069084,0.310564449436538,0.3150739854409682,0.319044039899614,0.323859289706054,0.3287982458457718,0.3277707384142561,0.3268931517413277,0.3261700836731526,0.3248472210154371,0.3240260030049239,0.3226993865030675,0.3207505273676029,0.32131055910832,0.3221830985915493,0.3234994185526433,0.3246572769953051,0.3253724846158412,0.3268543811725152,0.3274844615971459,0.3289460997010895,0.3302135891872108,0.331789594053745,0.3364182957156797,0.338037090474012,0.3401689738606164,0.3433773327264451,0.3462581777565023,0.3490881554868429,0.3527569879334046,0.356058462989156,0.3564262952909241,0.3589626239511823,0.359577922077922,0.3557825006900358,0.3641928079571538,0.0,2.092428272362388,54.20648245045726,180.4830349358354,268.3490611245779,fqhc7_100Compliance_implementation,72 -100000,95683,45001,427.5054084842657,5954,60.94081498280781,4668,48.232183355454985,1809,18.58219328407345,77.34181859432726,79.72464420740091,63.3271521787835,65.08546842475121,77.12057619452479,79.50387538997921,63.24526111103654,65.006221103812,0.2212423998024775,220.7688174216997,0.0818910677469588,79.24732093921705,142.7426,100.4621175285131,149182.82244494843,104994.74047481068,366.44924,240.0084596239722,382410.4386359123,250265.0024560232,359.14619,174.66482172041736,371686.8200202753,179708.32553001094,3362.0784,1518.856459231699,3479150.6746234964,1552791.1858666935,1112.88113,482.6605080482324,1150129.1556493838,491532.9953794789,1770.64822,740.2488062030546,1821087.5704148072,748048.9203618851,0.38314,100000,0,648830,6781.037383861291,0,0.0,0,0.0,31498,328.60591745660145,0,0.0,32853,339.7050677758849,1672079,0,59984,0,0,0,0,0,57,0.5957171075321634,0,0.0,0,0.0,0,0.0,0.05954,0.1554001148405282,0.3038293584145112,0.01809,0.3303485769107771,0.6696514230892229,24.40991201456816,4.371967164451229,0.3179091688089117,0.2335047129391602,0.2238646101113967,0.2247215081405312,11.30602483971395,5.869752698478585,19.184140082455567,12342.229796447844,52.741230284953936,12.963720562036176,16.920908009973008,11.566350820236549,11.290250892708205,0.5597686375321337,0.7743119266055046,0.7001347708894878,0.5808612440191387,0.1172545281220209,0.7363636363636363,0.8975,0.8768844221105527,0.6830357142857143,0.1595744680851064,0.4979757085020243,0.7028985507246377,0.6353591160220995,0.5529841656516443,0.1080139372822299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860548247612,0.004165948690919,0.0063614135121698,0.0086124596290954,0.0108593972424451,0.013052863077299,0.015268731716764,0.0174657778957361,0.0195934136693956,0.021896016951755,0.0237265195636125,0.0259322782405077,0.0280444019217513,0.0301509608944304,0.0320379831759302,0.0337922403003754,0.0360717912582122,0.0383940529709189,0.0402588215712383,0.0420840847727959,0.056639645662711,0.0705093974137479,0.0836106008921542,0.0972989467260119,0.1101277439635439,0.1263009815535623,0.1377111450640862,0.1500133056575656,0.1606978781597897,0.1710814172958133,0.1832925896809072,0.1952108502146897,0.2077950324068032,0.2184811482667774,0.2279657660829006,0.2391600491743363,0.2488308499358223,0.2575641688974872,0.2665675638872498,0.2747228838402345,0.2819012374233838,0.2892105847823291,0.2956577266922094,0.3009906445778081,0.3070132834697297,0.3125877744105255,0.3175762730945798,0.322185898006691,0.3264529161918574,0.3313459610615734,0.3310816266114056,0.3288599832249371,0.328371031801921,0.3277241737924659,0.3272003682748994,0.3256886355976346,0.3244064096682854,0.3250980199156782,0.3256131720981075,0.3271647857945124,0.3274792616396383,0.3282528540725989,0.329389879397195,0.3297382993926402,0.3299248697822904,0.3311789846763265,0.3321095173041894,0.3347464280106767,0.3363907924793534,0.3394062078272604,0.3411989795918367,0.3417533432392273,0.3424623272681798,0.3464799394398183,0.3478747203579418,0.3513064133016627,0.351761102603369,0.3515530455828963,0.34201052340072,0.3477927063339731,0.0,2.1127122596448547,53.03991575597495,174.81159145962926,260.9210983833472,fqhc7_100Compliance_implementation,73 -100000,95669,44677,423.7527307696328,6316,64.74406547575495,4914,50.674722219318696,1944,19.943764437801168,77.38307130315455,79.75890692044264,63.34642469116329,65.09722336044074,77.13391714717012,79.51223737918153,63.25342090931602,65.00810339162611,0.2491541559844279,246.66954126111307,0.0930037818472726,89.11996881462869,143.07942,100.69551629552744,149556.4916535137,105253.85370133218,369.53032,241.44848310025532,385490.5350740575,251611.21765593387,363.18416,176.30927922803036,375181.7307591801,180915.4021664076,3507.25834,1594.716853403029,3619950.820014843,1620897.6489793244,1167.26252,513.9175851197148,1200237.966321379,517490.813173874,1902.27858,803.2998843336125,1952937.8795639127,808743.9281739173,0.38131,100000,0,650361,6798.022347886986,0,0.0,0,0.0,31817,331.86298592020404,0,0.0,33341,344.01948384534177,1668592,0,59995,0,0,0,0,0,58,0.5958042835192173,0,0.0,1,0.0,0,0.0,0.06316,0.1656395059138234,0.3077897403419886,0.01944,0.3273495248152059,0.672650475184794,24.614326127176778,4.353144102210671,0.3213268213268213,0.2252747252747252,0.2321937321937321,0.2212047212047212,11.012869253174395,5.673608005752497,20.764547868114235,12298.637864803648,55.70975578957424,13.217479616123534,18.07941471303627,12.637050572807174,11.775810887607246,0.5653235653235653,0.7687443541102078,0.707409753008233,0.6117440841367222,0.1030358785648574,0.7171945701357466,0.906801007556675,0.8669724770642202,0.7211155378486056,0.1322314049586777,0.5091973244147158,0.6915492957746479,0.6465441819772528,0.5808988764044943,0.0946745562130177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021967342558942,0.0041740117115474,0.0063285362217421,0.0085096876396279,0.0107264501042143,0.0130907906389649,0.0153214132805969,0.0173013912564178,0.0194821788149193,0.0216716998515637,0.0239088756061802,0.0262366121396958,0.02813888431792,0.0301491491903918,0.0324038253226455,0.0342617952560591,0.036362506215813,0.0384763090975141,0.0402674792266813,0.0423137050547159,0.0574476087001943,0.0719049363974244,0.0853923389254351,0.0982575685878629,0.1103449003047269,0.1262185193800089,0.1384804571137802,0.1495442410576585,0.1597554208639235,0.1703062383472987,0.1841040649006907,0.1962264150943396,0.2075434782608695,0.2173033830682625,0.2276992464660909,0.2378815578084316,0.2472164833324027,0.2554624498806145,0.2643000715429428,0.272090677791276,0.2788266753099425,0.2865121834127607,0.2934129607905869,0.2998595758470457,0.3058724791398058,0.3112753565964167,0.3157373886682784,0.3201569446744544,0.3255910464407527,0.33002087903375,0.3292466048717396,0.3282959659771254,0.3273275388451406,0.3259848211058908,0.3242190982851368,0.3221443577200865,0.3217664115605837,0.3226092525989062,0.3226689478186484,0.3246300664808063,0.3252845422094305,0.3259190669451121,0.3272548773864728,0.3290086716155063,0.3303573565666962,0.331604874254602,0.3322953232929453,0.3360514887368388,0.3388461538461538,0.3402947434786035,0.3433390768114627,0.3451546609053064,0.3452455329251531,0.3460087520748453,0.3449461166852471,0.3487311425564261,0.3529146634615384,0.3532651455546813,0.3514745308310992,0.354275092936803,0.0,2.632217316025766,57.95040510752798,180.53781561462637,270.8947532280391,fqhc7_100Compliance_implementation,74 -100000,95697,44375,419.91911972162137,6078,62.32170287469827,4783,49.42683678694212,1908,19.64533893434486,77.3960056150407,79.77969808170407,63.35197710932333,65.1128748227363,77.16251882761468,79.54629632310476,63.26575019353693,65.02898734741873,0.2334867874260311,233.40175859931375,0.0862269157863977,83.88747531756735,144.5994,101.70634599705409,151101.28844164393,106279.55525988704,372.05227,243.1482013049333,388221.2086063304,253531.61240488227,362.10564,175.58430971264053,374432.0616111268,180537.90392205096,3429.11532,1556.849234904971,3546863.475344055,1591374.5990919317,1125.83969,496.2375938364731,1165686.3538041946,508078.6809486143,1869.67034,780.6967433372077,1925709.7087683,790969.9181325138,0.37762,100000,0,657270,6868.240383711088,0,0.0,0,0.0,32022,334.0334597740786,0,0.0,33125,342.2364337440045,1665569,0,59629,0,0,0,0,0,69,0.7210257374839336,0,0.0,1,0.0104496483693323,0,0.0,0.06078,0.1609554578676977,0.3139190523198421,0.01908,0.3278327832783278,0.6721672167216721,24.75503114407942,4.412118678172472,0.3211373614886055,0.2283085929333054,0.227263223918043,0.223290821660046,10.952499026612545,5.50988625140577,20.15710861883653,12186.524417200984,53.94209356781634,12.870800130406014,17.32229868513887,12.12110455703604,11.627890195235416,0.5515366924524358,0.7783882783882784,0.6881510416666666,0.5740570377184913,0.1001872659176029,0.721324717285945,0.936842105263158,0.8257575757575758,0.7330677290836654,0.1232227488151658,0.4922425952045134,0.6938202247191011,0.6403508771929824,0.5263157894736842,0.0945157526254375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022184628787341,0.0044209202814787,0.0065467611294939,0.0086156972313944,0.0107012796777409,0.0133283101861279,0.0155082231308053,0.0177030903837711,0.0198227302002719,0.0220887028260847,0.0240109084571299,0.0262023081030021,0.0282414406631493,0.0303145794277002,0.0326145274453157,0.0347525868039404,0.0366775770633079,0.0387473791285213,0.0408091102906765,0.0429399257931379,0.0574269628886869,0.0711856247318242,0.0846750086531502,0.096907823490448,0.1090368621333024,0.125,0.1368039126237282,0.1478315484681385,0.1583377844247409,0.1689708800343218,0.1812600969305331,0.1934147475905634,0.2045034667130344,0.2143598823928036,0.2241877851684899,0.2338166924950188,0.2436179111135894,0.2530864890975881,0.2621388920357992,0.2705603950888264,0.2774776022905699,0.2840568207019714,0.2906204974372298,0.2968987334202437,0.3032543482213199,0.3092019563988497,0.3142882087355633,0.3188341489388676,0.3231791497322753,0.3268110510605284,0.3258615370169155,0.3246580599183181,0.3240506684642175,0.3227084744297304,0.3220831172679457,0.3217721982956107,0.3203967840275474,0.3207939601382224,0.3202529703561018,0.3207194372718369,0.3215947961644143,0.3219026984439629,0.3226863055995994,0.3235483799230547,0.3244363514387713,0.3233590482869685,0.3245494729683781,0.3282229746676699,0.3298088369161823,0.3330820803744991,0.3349317258071882,0.3372303114039749,0.3393093870336469,0.3423917180482606,0.3462920923193341,0.3502818083703082,0.3486690260040006,0.3476132190942472,0.3569256289742881,0.361380379992245,0.0,2.143692741431956,54.120756346124686,179.10168849558502,267.0732822267975,fqhc7_100Compliance_implementation,75 -100000,95824,44768,422.8377024545,6297,64.62890298881283,4955,51.14585072633161,1937,19.880197027884456,77.38566316619061,79.70802204734541,63.36611244363343,65.08481137426895,77.1473389868922,79.46899662845847,63.27877896855309,64.999359248473,0.2383241792984165,239.0254188869392,0.0873334750803422,85.4521257959533,143.81862,101.25868414831328,150086.2205710469,105671.52712088128,373.59019,243.9105370481148,389306.4368008015,253975.3579981161,369.08281,179.98107868710082,381329.9486558691,184820.0779507265,3550.07625,1607.2553093149795,3667311.2685757214,1639822.3924225434,1174.37506,517.9227866035039,1208536.7861913508,523503.6075793774,1896.25844,787.6824447184125,1947667.995491735,795135.8511993341,0.382,100000,0,653721,6822.100935047587,0,0.0,0,0.0,32141,334.8326097846051,0,0.0,33735,348.2947904491568,1668357,0,59859,0,0,0,0,0,70,0.7200701285690433,0,0.0,0,0.0,0,0.0,0.06297,0.1648429319371727,0.3076067968874067,0.01937,0.3343409915356711,0.6656590084643289,24.74446060741376,4.378585598281849,0.3313824419778002,0.224217961654894,0.2250252270433905,0.2193743693239152,10.934074466899895,5.642961791319372,20.562140520629395,12337.655757430572,56.07057657462294,13.301435604998574,18.48945907617656,12.435036792454136,11.84464510099367,0.5600403632694249,0.7902790279027903,0.6881851400730816,0.5721973094170404,0.1186752529898804,0.743140243902439,0.9219858156028368,0.8394495412844036,0.7294117647058823,0.1666666666666666,0.4940982706560527,0.7093023255813954,0.6334991708126037,0.5255813953488372,0.107986501687289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396432803621,0.0046125928854556,0.0071855558149211,0.0094995224838965,0.0117986899385654,0.0138784237857651,0.0161249222803208,0.0182977854883151,0.0205222545863355,0.0227084335376648,0.0248314169177478,0.026984029231843,0.0291369901026732,0.0313538996798731,0.0333996720871959,0.0355523420957496,0.0376524879199561,0.0396144278606965,0.0416787805789757,0.0435366221658012,0.0590057576769025,0.0726888823849145,0.0857124889950949,0.0978220900791107,0.1103960396039604,0.1256785586042287,0.1380888319227143,0.1500095649031819,0.1613109648795367,0.1715662650602409,0.1838299336552006,0.1959151491586201,0.2076956474546836,0.2178349649128551,0.228534091782612,0.2394092155302025,0.2486438922242395,0.256929781212094,0.2652235965746907,0.2734256221493158,0.2808912194783894,0.2875198394174213,0.2941627810895355,0.2995350949529717,0.3048643150361463,0.310394793393504,0.3144817263315455,0.3193442456669751,0.3236736801342455,0.3282456809778818,0.3282163644428911,0.3275819435667775,0.3264456416243512,0.3257784642924167,0.3247580309957841,0.3232457751653196,0.3224462642358196,0.3229601393316026,0.3240772444018352,0.3248358646845203,0.3251659105395373,0.3268214476575025,0.3274598964254137,0.3284309322795042,0.3284885126964934,0.3295988245480544,0.3298451834862385,0.3341864139020537,0.3361237681466568,0.3397077610986905,0.3422689844464776,0.3459881958845111,0.3482869581677077,0.3494058500914077,0.3527462121212121,0.357202530134861,0.3620981387478849,0.3670245088110188,0.3671059857221307,0.3657794676806083,0.0,2.140205331850108,57.488813042102734,184.6220265570824,274.71260304563395,fqhc7_100Compliance_implementation,76 -100000,95772,44509,421.05208202815015,6204,63.4841080900472,4818,49.795347283130766,1952,20.12070333709226,77.37657405990127,79.72113853825145,63.3458979718325,65.07891082207229,77.1322109642824,79.47419730546407,63.25489044306573,64.98849067798736,0.2443630956188798,246.94123278737837,0.0910075287667666,90.4201440849306,144.80092,101.85281451749502,151193.37593451113,106349.26128460826,370.06452,241.6666464798649,385826.0765150565,251759.88439195688,362.87076,176.63237586176626,375010.09689679655,181541.08690740517,3481.48101,1599.630260471768,3602998.4128972976,1638141.8617881706,1163.79585,517.2026615014094,1205166.5831349457,530028.5589748666,1925.1455,816.0859233466899,1986346.8863550932,832763.6988211635,0.38036,100000,0,658186,6872.426178841414,0,0.0,0,0.0,31842,331.94461846886355,0,0.0,33233,343.1274276406465,1663524,0,59635,0,0,0,0,0,66,0.6786952345153071,0,0.0,1,0.0104414651463893,0,0.0,0.06204,0.1631086339257545,0.314635718891038,0.01952,0.3391812865497076,0.6608187134502924,24.564781902256644,4.408060955501166,0.3273142382731424,0.2189705271897052,0.2202158572021585,0.2334993773349937,11.02663058151978,5.5399648164071404,20.88060594783007,12266.637898510526,54.52707543989965,12.600453443259887,17.744601172040113,11.783682966795372,12.398337857804268,0.5579078455790785,0.7876777251184834,0.7006975269499048,0.5786993402450519,0.1226666666666666,0.7234701781564679,0.927860696517413,0.8842105263157894,0.6752767527675276,0.1764705882352941,0.4973064927700595,0.7013782542113323,0.6424394319131161,0.5455696202531646,0.1082299887260428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0049975164472016,0.0072546114977982,0.0096001462879434,0.0118786103653079,0.0140833596399222,0.0163045140765363,0.018356679054192,0.0204563577255719,0.0223461971542634,0.0246292291451002,0.0268425374666392,0.0290114318611727,0.0312767118773236,0.0332497704600084,0.0351424820928381,0.0371102850575188,0.0390867314654412,0.0412183585425437,0.043051288726894,0.0579437886805055,0.0721008051866569,0.0845728901328134,0.0974599871790829,0.110087682320209,0.1259090140368679,0.1376773181230254,0.1498068758578861,0.159973941089775,0.1701053037939391,0.1833299227778436,0.1950860641992405,0.2071842737943713,0.2169617261527014,0.2261022733527825,0.2359539353365624,0.2455585952766456,0.2540827696428772,0.2624052299450674,0.2707138030943301,0.2788351401696151,0.2863825606960752,0.2928118643266001,0.2979148951459334,0.3032095825841878,0.3077273847670693,0.3135837969619303,0.3192554475573343,0.3236941142997556,0.3281033687125058,0.3269442726955026,0.3258354402550291,0.3249184293429343,0.3245783758807901,0.3236249795991038,0.3219794344473007,0.3211358962189527,0.3217448343719252,0.3226329719115512,0.323260954825828,0.3238671487177565,0.324448130158354,0.325290100959323,0.3266644362663098,0.3279550529424476,0.3288109994271131,0.3297403373055373,0.3310364268487487,0.3346882994007779,0.3384151183103065,0.3393541324575807,0.3428510660924124,0.3456673588823862,0.3459344337111128,0.3456165025785279,0.3453424982223275,0.3487022900763358,0.3493109646494907,0.3572589382448537,0.3741547708489857,0.0,1.98712230018216,56.64107991151784,179.0937986286909,264.9501784165359,fqhc7_100Compliance_implementation,77 -100000,95749,44718,422.55271595525807,6233,64.00066841429154,4897,50.53838682388328,1943,19.895769146414064,77.3313489084019,79.69767613661146,63.31030609897547,65.06317967104633,77.09088105146668,79.45963171137669,63.22248309836995,64.97903113689848,0.2404678569352256,238.04442523477576,0.0878230006055176,84.14853414784318,143.77748,101.162261318944,150160.8163009535,105653.59567091455,373.08553,243.4689125987374,389032.17788175336,253660.92867678768,367.13064,178.33378633668218,379775.61123353767,183432.9574078073,3527.87841,1598.6070414616818,3645185.61029358,1630259.7431426756,1178.32649,518.4098104475855,1219099.6877251982,529884.4692347544,1909.98218,794.4591005723919,1958478.6472965772,798294.4656043974,0.38069,100000,0,653534,6825.491650043343,0,0.0,0,0.0,32052,334.1131500067886,0,0.0,33614,347.3561081577876,1662892,0,59706,0,0,0,0,0,70,0.7310781313642962,0,0.0,1,0.0104439733052042,0,0.0,0.06233,0.1637290183613964,0.3117278998876945,0.01943,0.3246474555487431,0.6753525444512569,24.708799873189072,4.398131002764979,0.324280171533592,0.2197263630794363,0.2293240759648764,0.2266693894220951,11.143768392610593,5.717921602489114,20.74377134127617,12319.338821990556,55.60450866698462,12.94910315008482,17.91577526653335,12.470447241533105,12.269183008833364,0.5619767204410864,0.7862453531598513,0.6977329974811083,0.6019590382902938,0.1099099099099099,0.7452326468344775,0.9119804400977995,0.9057071960297768,0.7984189723320159,0.1504065040650406,0.4949804796430563,0.7091454272863568,0.6270042194092827,0.5448275862068965,0.0983796296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022695265402891,0.004390723708894,0.0067191068256787,0.0089615931721194,0.0114244440375185,0.0137690827061543,0.0159476297784258,0.0181443172651806,0.0204563818797369,0.0226867689534383,0.0250864075977149,0.0270717323853946,0.0291139240506329,0.0314239188687801,0.0334640792733278,0.0352918062621499,0.037567047031292,0.0396397144280259,0.041580473809499,0.043557509035423,0.0574751038643813,0.0714883643060438,0.0841174434339302,0.0973216820719896,0.1095553892057735,0.1256305853735921,0.137710762831464,0.1486617460672482,0.1599700790767258,0.1704218703059954,0.1833229164421647,0.1956126293906189,0.207804081632653,0.2189360770577933,0.2282320302092851,0.2384658020175147,0.2480123280328747,0.2570881872924757,0.2658533817521561,0.2732949857915482,0.2797712751180665,0.2859852476290832,0.2930072167513953,0.2988534725973948,0.3048402204191857,0.3105719536713826,0.3154396023986279,0.3204028110200132,0.3246071261864011,0.3295002970493101,0.3286538046992886,0.3269278384549781,0.3265783210578941,0.3249302957195071,0.3243860820535648,0.32272817657586,0.3210978731472995,0.3218688524590164,0.322880907243258,0.3237854034386816,0.3249138705811863,0.3266491494952289,0.3278489491752491,0.3291608923063168,0.3315293212103719,0.3321857966251988,0.3311045353667558,0.3338156653035545,0.3374453686733399,0.3416989187248134,0.3447630353392384,0.345847916003818,0.3478042028438404,0.3517393285735987,0.3521731020332027,0.352309846010266,0.3605156648178684,0.3685759121224009,0.3691113490364026,0.373218304576144,0.0,2.3631506435139027,57.71878814164092,180.62748405394757,271.58517364862524,fqhc7_100Compliance_implementation,78 -100000,95494,44697,423.3040819318491,6188,63.56420298657508,4872,50.474375353425344,1871,19.25775441388988,77.22623088476638,79.71521888868871,63.24095407219974,65.077237955037,76.99270683457317,79.48083522346718,63.154213718110526,64.99268049832526,0.2335240501932105,234.3836652215288,0.0867403540892155,84.55745671174952,143.88066,101.25561457928224,150669.84313150565,106033.48333851575,372.90309,243.5477957046158,389935.91220390814,254476.8317429532,362.39051,175.84791676136024,376343.2781117138,181716.34482272025,3485.85255,1588.4039355069915,3611903.753115379,1624921.7285975988,1159.50912,510.7413254778929,1202539.0809893815,523158.39265073487,1833.7336,771.541032060485,1889165.183152868,780081.8390501206,0.38157,100000,0,654003,6848.629233250256,0,0.0,0,0.0,32118,335.75931472134374,0,0.0,33164,344.1472762686661,1657304,0,59481,0,0,0,0,0,65,0.6806710369237858,0,0.0,0,0.0,0,0.0,0.06188,0.1621720785177031,0.3023594053005817,0.01871,0.3361590628853267,0.6638409371146733,24.55331591038515,4.357878295939585,0.3261494252873563,0.2352216748768472,0.2208538587848932,0.2177750410509031,11.080250331142803,5.717783587180213,19.972264341256484,12370.32941737678,55.18578548070397,13.652151422934532,17.957080766007206,11.948271787575946,11.6282815041863,0.5638341543513957,0.7530541012216405,0.7010698552548773,0.5817843866171004,0.1357210179076343,0.7361963190184049,0.8872901678657075,0.8567961165048543,0.749034749034749,0.199074074074074,0.5008408071748879,0.6762688614540466,0.6465590484282073,0.5287637698898409,0.1195266272189349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.004554353008003,0.0069039738461226,0.009150991357397,0.0117181136992995,0.0137797482545991,0.016204246982112,0.0185866388735618,0.0207985922841621,0.0229298579947132,0.0251272786992938,0.0275755706354102,0.0295319981465273,0.0316019637773835,0.0335902628533641,0.0355641604373304,0.0376041245241133,0.0395634095634095,0.041705301980559,0.043816047784136,0.0593604438164023,0.0734834337033384,0.0860333785531753,0.0986203480222177,0.1113424286937132,0.126176545408293,0.1389444137285757,0.1500954900935696,0.1614755151878668,0.1716346515602661,0.1842446229593158,0.1960582263103089,0.2085082258539297,0.2185122662398877,0.2272616946160635,0.2372073383485382,0.2467894218722033,0.2560735020573812,0.2651297157740295,0.2731070256374945,0.280280187410122,0.2885014480179155,0.2952328975156016,0.3009278177054539,0.3064883774790038,0.3120176132990302,0.3167366225148918,0.3212651757188498,0.3262290608065082,0.3308442890998398,0.3298737803724424,0.3284288038831738,0.3272873556728679,0.3261592756515953,0.3254504839910648,0.3247335606130409,0.3240062886090422,0.3245361299988475,0.3257982141939022,0.3253273153869575,0.3266620355593939,0.3271485148514851,0.3278781393592245,0.3290189667913205,0.3301211189080073,0.3305356444676137,0.3315564424173318,0.3356841508721113,0.3387964688917806,0.3404424637911825,0.34432,0.3470894412577013,0.34964859437751,0.3507141237814554,0.3527397260273973,0.3570929419986023,0.3618151464562149,0.3687094155844156,0.3685510428100988,0.3788748564867968,0.0,2.0674478379685794,57.48859250159202,176.88223388831872,273.3201181135403,fqhc7_100Compliance_implementation,79 -100000,95714,44567,421.15051089704747,6335,65.04795536703095,4984,51.52851202540903,2041,20.97916710199135,77.36399481233721,79.74718890090318,63.33329461681414,65.09660913046166,77.1043523949014,79.48876522789624,63.23750878834702,65.00408592197131,0.2596424174358134,258.4236730069449,0.0957858284671218,92.52320849034844,144.47356,101.66622299787332,150942.97594918194,106218.75900899904,374.81721,244.79663994545623,391032.15830495016,255189.5710109381,367.00762,178.46260075786594,379991.0462419291,183814.19289053956,3590.15662,1637.954325122346,3711280.1471049166,1671676.2771760777,1195.44207,534.0588111943592,1235031.1239735044,544148.5495998148,2000.3195,841.8407398971194,2055967.2357230915,849091.2380525888,0.38141,100000,0,656698,6861.044361326452,0,0.0,0,0.0,32337,337.254738073845,0,0.0,33653,348.2249200743883,1660662,0,59621,0,0,0,0,0,72,0.7522410514658253,0,0.0,0,0.0,0,0.0,0.06335,0.1660942293070449,0.3221783741120758,0.02041,0.3319752527538856,0.6680247472461144,24.551818463498048,4.448718236509975,0.3276484751203852,0.2215088282504012,0.2207062600321027,0.2301364365971107,11.242184724718246,5.740538460807776,21.827860214412397,12283.510792690648,56.44137786291645,13.109745347947385,18.43412162069884,12.302277773105944,12.59523312116428,0.5551765650080257,0.782608695652174,0.6938150642988365,0.5754545454545454,0.1194420226678291,0.7080561714708056,0.9185185185185184,0.831353919239905,0.7245283018867924,0.1679389312977099,0.4982098595428256,0.703862660944206,0.6460396039603961,0.5281437125748503,0.1050847457627118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505334292459,0.0046244181447564,0.007136766019654,0.0093704900705327,0.0117829015649484,0.0139474703017706,0.0160961279529968,0.018342252542996,0.0206294171192456,0.022814077555576,0.025073579932932,0.027442562675239,0.0296138575160978,0.0319835136527563,0.0341194076061716,0.0361566616348559,0.038161533919637,0.0399306816648852,0.0416411130630021,0.0436658018941643,0.0581072331181987,0.0717926710557992,0.0849349559378934,0.0982932497660185,0.1099106126407218,0.1257995961048435,0.1374461858206264,0.1483246463142219,0.1596605465414176,0.1696566358024691,0.1825675239427526,0.1950267159884915,0.2065568422769532,0.2173390051067831,0.2266321984489302,0.236932717751132,0.2469798208529008,0.2555837963067096,0.2647058823529412,0.2723473441954727,0.2794503753224071,0.2857877813504823,0.292305325079598,0.2981781133884694,0.3036300021867483,0.3087811368172075,0.3145098726194349,0.318912803040897,0.3234343068525752,0.3283214295126901,0.3274032837145508,0.3262521470285125,0.3254099974682832,0.3241233958396489,0.3238636363636363,0.3226639369308806,0.320360605008052,0.3212884238064094,0.3228370580926282,0.3229381994440088,0.3234886508352685,0.3247692642147078,0.3256369426751592,0.3252185608607935,0.3264937938997402,0.3265338145300486,0.327411603158256,0.3315078840524974,0.3347532211504612,0.3400389615552817,0.3403558265459344,0.3398516163222045,0.3395475227502528,0.3457556935817805,0.3502137767220902,0.349550629119233,0.3473193473193473,0.3531114327062228,0.3538806388344074,0.3621769772905246,0.0,1.9873138158403776,59.74101163451579,183.67169093759415,272.0343911453519,fqhc7_100Compliance_implementation,80 -100000,95664,43879,415.8304064224787,6094,62.4581869877906,4819,49.73657802308078,1905,19.5266767017896,77.31725194233033,79.72555915747971,63.30264576078415,65.08497665768436,77.07599911731022,79.48750387474256,63.21317687484781,65.0002978987272,0.241252825020112,238.05528273715024,0.0894688859363412,84.67875895716759,142.52678,100.22838929340412,148986.84980766015,104771.271631339,365.87371,238.28534490135107,381859.92640909855,248488.5797179201,352.7439,170.54434146718629,365001.8815855495,175427.180357376,3494.37229,1575.9011770174088,3610629.7039638734,1605203.302200838,1193.07874,519.5346302171939,1231680.015470815,527607.3133228741,1883.09978,784.5629446923043,1932262.585716675,786161.7648723964,0.3778,100000,0,647849,6772.129536711825,0,0.0,0,0.0,31544,329.0997658471316,0,0.0,32371,334.60863020572003,1677704,0,60171,0,0,0,0,0,63,0.6585549422980431,0,0.0,1,0.0104532530523498,0,0.0,0.06094,0.1613022763366861,0.3126025598949786,0.01905,0.3297888975762314,0.6702111024237686,24.58596987440252,4.425418465152692,0.3237186138202946,0.2232828387632288,0.2162274330774019,0.2367711143390745,11.105660645208609,5.594678650788343,20.15052980356785,12192.398818117916,54.47432773465714,12.865715283826953,17.53890757699718,11.683141055496074,12.386563818336937,0.5534343224735422,0.775092936802974,0.691025641025641,0.5902111324376199,0.1226993865030674,0.7352226720647773,0.9250645994832042,0.8567639257294429,0.735632183908046,0.1666666666666666,0.4907924107142857,0.690856313497823,0.6382079459002535,0.5416133162612036,0.112781954887218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0049485372407848,0.0071039305032627,0.0088813015069759,0.0111308948466195,0.0130997249668941,0.015210250341746,0.017438296829029,0.0199095578154733,0.0218017150409294,0.0238845171285229,0.0260386160691348,0.0279579190085026,0.030053715216562,0.0320478393786664,0.0341127780651836,0.0362622325427102,0.0379794161326839,0.0399954219600253,0.0419390148553557,0.0563472991327969,0.0698105501272424,0.0830332489947612,0.0955868426036997,0.1073105369219569,0.1226556877354896,0.1344853573361921,0.1459047821919267,0.1575622842362899,0.1673086207821469,0.1806370991198681,0.1937708396483783,0.2055398345668262,0.2151958316001488,0.224456976692955,0.2343585480742588,0.2439936169975338,0.252713753810504,0.2615482348670478,0.2695341568685816,0.2775001156925355,0.2850644870850434,0.2915828342840911,0.2972532476870715,0.3035670894688244,0.308844560607555,0.3136584938484837,0.3185967856779574,0.3232314082739166,0.3271349499209278,0.3267666240839104,0.3251995658326807,0.3252776606213974,0.3245988687521643,0.3239281679253136,0.3232420826623725,0.3215744640425599,0.3217088628378156,0.3226059654631083,0.3239624928693668,0.3246400688970849,0.3262719393496673,0.3268315191174311,0.3274704618689581,0.3272196346260588,0.3284616189081782,0.3288249728927695,0.3309329895286311,0.3345287065358788,0.3400492767445557,0.3424037318210921,0.3452317527970165,0.3480156723963599,0.3484581834876425,0.3512264150943396,0.3529759791740622,0.3490522422561257,0.3532287634956202,0.3485218334689449,0.3446840711312902,0.0,2.5420796507138417,53.76822444874752,180.1016224607403,272.9409348329015,fqhc7_100Compliance_implementation,81 -100000,95859,44388,419.991863048853,6124,62.790139684328025,4789,49.40589824638271,1904,19.46609082089319,77.4717338221379,79.75864617638805,63.40399372213196,65.09089059030752,77.23447131857064,79.52396457253299,63.31590916984624,65.00673825204919,0.2372625035672655,234.68160385506565,0.0880845522857214,84.15233825833468,144.96482,101.87301814091391,151227.13568887635,106273.8168986886,369.55411,241.22404703108072,384993.4487111278,251119.6726766196,358.38449,174.04145873513772,370766.9285095818,179047.74251947657,3441.05359,1561.7429620421517,3552616.561825181,1592121.847757802,1137.37495,498.4434671251801,1173841.7780281454,507309.1802806,1867.87462,783.971490304709,1912266.1408944384,786485.154697373,0.38035,100000,0,658931,6873.960713130745,0,0.0,0,0.0,31853,331.7372390698839,0,0.0,32887,340.03067004663103,1666657,0,59778,0,0,0,0,0,51,0.5215994324998174,0,0.0,0,0.0,0,0.0,0.06124,0.161009596424346,0.3109079033311561,0.01904,0.320772345063843,0.679227654936157,24.87197705144913,4.418940140647142,0.3092503654207559,0.2361662142409689,0.2305282940070996,0.2240551263311756,11.181875684957978,5.7274185622519695,20.25795206035501,12261.706314411733,53.94281479568114,13.348504465221485,16.697864812990016,12.271143533434527,11.625301984035108,0.5560659845479223,0.7771883289124668,0.7022282241728561,0.5652173913043478,0.1118359739049394,0.7143968871595331,0.927007299270073,0.8346456692913385,0.7093023255813954,0.1531914893617021,0.4980022831050228,0.6916666666666667,0.6563636363636364,0.5212765957446809,0.1002386634844868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024091507237574,0.0046499376969132,0.0069764140420612,0.0092671538773853,0.0116860417852207,0.0140303397193932,0.0160846711759432,0.0182682401901284,0.0206993035557461,0.0228565000409064,0.0247242336409353,0.0269937643583852,0.0290727537958948,0.0311561098077952,0.0331312881411842,0.0351208732199469,0.0367742135697365,0.0387728662486396,0.0404764129881727,0.042262902101177,0.0564355506428772,0.0706079138570905,0.0838293858729826,0.0964149119488925,0.1078776508284497,0.1235053442862127,0.1354887967508987,0.1474605842677503,0.1585706965025408,0.1691549220299019,0.1820099215530136,0.1943910083216254,0.2054812369701181,0.2158562414026507,0.2257462276790617,0.2362941020426209,0.2465693918467364,0.2562113370232736,0.2648027991982878,0.2729579879965704,0.2796153268913287,0.2865408394186128,0.2928076328125922,0.2983735948337718,0.3037254497591984,0.308640151655034,0.3132347980359575,0.3185899145364267,0.3231329878655519,0.3283756926438264,0.3275067514006637,0.3269945295254809,0.3259777085263483,0.3251428653682832,0.3247172381121573,0.3224296214963247,0.3206310182339684,0.3214595009722381,0.322180284946785,0.3230657245321876,0.3241132504519953,0.3255306603773585,0.3270272522710226,0.328382764907288,0.3288414211645521,0.3301099242974178,0.3320599886813808,0.3353725147476513,0.3376348562111909,0.3419615852940021,0.3444444444444444,0.3466863188924567,0.3474013775829681,0.3508771929824561,0.3539898132427844,0.3536962205847397,0.3528250303766707,0.3551102204408817,0.356290672451193,0.3559001512859304,0.0,2.208495301822959,56.38755145350897,173.33291494148546,264.7881525652653,fqhc7_100Compliance_implementation,82 -100000,95730,44834,423.4513736550716,6369,65.18332811031024,4950,51.01848950172359,1981,20.28622166509976,77.34438518034166,79.70055449345371,63.33412346583962,65.07348148939077,77.0877883854912,79.44565691574373,63.238430620036816,64.98163632580506,0.2565967948504664,254.89757770998267,0.0956928458028016,91.8451635857167,144.6368,101.81073574995207,151088.26909014938,106351.96464008364,373.45776,244.2852784404896,389447.1116682336,254513.07358511703,368.6146,179.43001227377823,380675.2951008044,183915.410224811,3528.91529,1616.4042821853766,3640452.47048992,1642651.1956104282,1178.92961,527.8464824156166,1216562.0704063512,536438.8558178965,1933.1775,823.3337657971182,1981038.8175075732,825611.5238714688,0.38258,100000,0,657440,6867.64859500679,0,0.0,0,0.0,32127,334.8897942128904,0,0.0,33732,348.08315052752533,1659065,0,59564,0,0,0,0,0,72,0.7416692781782095,0,0.0,0,0.0,0,0.0,0.06369,0.1664749856239218,0.3110378395352489,0.01981,0.3291498580606604,0.6708501419393396,24.79116834132404,4.393464544716873,0.3309090909090909,0.2234343434343434,0.2274747474747474,0.2181818181818181,11.1966400646112,5.855950775961206,21.356872944973325,12409.36867673451,56.21555202072637,13.167613943086602,18.511013615101888,12.648878856392807,11.888045606145074,0.5666666666666667,0.8019891500904159,0.6965811965811965,0.5817051509769094,0.1129629629629629,0.7315589353612167,0.9338624338624338,0.8530120481927711,0.7272727272727273,0.1991525423728813,0.5070151306740027,0.7335164835164835,0.6434995911692559,0.5321428571428571,0.0888625592417061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.0051605446453012,0.0076806785783134,0.0099225089627575,0.0122923317811171,0.0144350676452923,0.0165813986669656,0.018786672789428,0.0210481143546096,0.0232684259534017,0.0253711920156571,0.0276198296212665,0.0297456250385572,0.0317308286473459,0.0337855263836591,0.0359014106340102,0.0379368168267638,0.0400199114355937,0.0421637913115776,0.0439039633352429,0.0582259714768954,0.0720550066979236,0.0860622207304537,0.0987706254140857,0.1105674424490398,0.1266536244910907,0.1387642535136568,0.1499207303448496,0.1615539082694238,0.1720847450358107,0.1850157185306403,0.1980744266551276,0.2103231558803062,0.2203856749311294,0.23045788009107,0.2409158344589358,0.2499190893365325,0.2588293516893867,0.2671878723235257,0.2747752390769054,0.2818397454440266,0.2887586013200393,0.2946294345340262,0.2998344450309516,0.3059721445759704,0.3113793146002246,0.3170138627760648,0.3213215892722846,0.3264956821659189,0.3307568310343005,0.329848152090435,0.328570445316264,0.3282822587465817,0.3280793591115481,0.3266438559952395,0.3259271761980021,0.3249051632461946,0.3243389897395422,0.3253966895465671,0.3251538131349263,0.3257655358751126,0.3266936999307684,0.3277326788748348,0.3283879787543982,0.3287003522995994,0.330781890853993,0.3328954882924043,0.3354679958358307,0.3386040287364417,0.3420853118391125,0.3427892741309213,0.3465087747372913,0.3502144298688194,0.3530035603363382,0.3550295857988165,0.3561546647747428,0.3604045357033404,0.3651708522025524,0.3678929765886287,0.3689320388349514,0.0,2.657244217696141,57.12002931234438,188.97501316504503,269.8201920089969,fqhc7_100Compliance_implementation,83 -100000,95677,44616,422.32720507541,6209,63.7352759806432,4857,50.25241176040218,1971,20.266103661277004,77.28108161739658,79.66903123397752,63.29287913429015,65.05620542069865,77.0382707228139,79.424826792379,63.20416260446122,64.96885260802735,0.242810894582675,244.2044415985265,0.088716529828936,87.35281267129835,144.4927,101.63493020159892,151021.35309426507,106227.12898773888,370.42496,242.08338010190332,386659.3956750316,252518.9231496633,363.52448,176.56855636413843,376311.46461532026,181741.5768557119,3501.3595,1581.774688917904,3627514.721406399,1621196.7859756292,1165.17529,511.7207080314824,1206069.891405458,523090.092740661,1931.8641,799.4494764188927,1989235.845605527,811577.6218696547,0.38046,100000,0,656785,6864.606958830231,0,0.0,0,0.0,31962,333.53888604366773,0,0.0,33282,344.3042737544028,1658085,0,59549,0,0,0,0,0,57,0.5853026328166644,0,0.0,1,0.010451832728869,0,0.0,0.06209,0.1631971823581979,0.3174424222902238,0.01971,0.3300137888769726,0.6699862111230275,24.683669728291644,4.518070634236647,0.3209800288243772,0.2281243565987235,0.2188593782170063,0.2320362363598929,11.528036685175737,5.95365081609103,20.8682682253228,12325.104092784686,55.10456928493211,13.212658397093811,17.845573914891336,11.805316657632371,12.241020315314586,0.555692814494544,0.7788808664259927,0.7010904425914047,0.5870178739416745,0.1055900621118012,0.7286821705426356,0.929471032745592,0.8829268292682927,0.7349397590361446,0.1111111111111111,0.4931314830389683,0.6947960618846695,0.6362053959965187,0.5417690417690417,0.1041433370660694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805905890695,0.0045215381340037,0.0067284370338045,0.0091536203025469,0.0111974452332038,0.0134312247973605,0.0154883047494748,0.0175092906440151,0.0197291081012011,0.0217709495491253,0.023766802350022,0.0257916136186291,0.0282496914849856,0.0306211813676499,0.0324581501434557,0.034553707130967,0.0366691181802173,0.0387445640328389,0.041036469927393,0.0431093785828938,0.0582851889384552,0.0722056436835767,0.0855226559465955,0.0985312375060497,0.1110794615352154,0.127101162581587,0.1391784311644199,0.1505308782654071,0.1615262083195244,0.1719328759622508,0.185033001164747,0.1968728328710124,0.2088900504176058,0.2187671082886236,0.2283743885779756,0.2386201084485645,0.2484383206499268,0.2569658745354206,0.2649221084686445,0.27278253090809,0.2801149332066596,0.2864676103871754,0.2924153472098678,0.2979244739117901,0.3042859228971962,0.3103018486067576,0.3149252983054246,0.319839863322836,0.3250632582884578,0.3294970500304257,0.3282931241646528,0.3274332620542181,0.3270737294606748,0.3254273163518274,0.325445110494766,0.3234332048466606,0.3220909018799079,0.3227203134517558,0.3233989346213795,0.3239864804449293,0.3240571976173922,0.3263011521652761,0.3281832936365744,0.3291406970726548,0.3307052336267776,0.3327232796486091,0.3331807387485336,0.3370520194677959,0.3389264105811172,0.3427730490812187,0.3444170771756978,0.3468334220329963,0.3481280383862618,0.3496662621359223,0.3534426229508197,0.3558569090483984,0.3576118491372728,0.3601208459214501,0.3563249727371865,0.3555469953775038,0.0,1.99416729993251,57.01577712511061,179.33206057575535,271.16635221058493,fqhc7_100Compliance_implementation,84 -100000,95711,44121,418.36361546739664,6217,63.53501687371357,4878,50.22411217101482,1999,20.43652244778552,77.3612597271838,79.72753210336758,63.34108899169471,65.08937130988345,77.11196746150307,79.480415216011,63.24766819611099,64.99974633681055,0.2492922656807366,247.116887356583,0.093420795583718,89.62497307290107,144.71996,101.80432744028536,151205.1488334674,106366.38154473924,369.09655,240.78465322403875,384903.1981694895,250841.39046090705,354.47402,172.29711558583423,365317.68553248845,176198.7487976339,3531.44163,1612.2276375223582,3641599.4713251353,1636381.688126085,1198.04203,529.1941557392006,1233462.8621579548,534642.5862640663,1959.85546,830.0306666828676,2006542.0275621405,831766.3726284029,0.37939,100000,0,657818,6872.961310612155,0,0.0,0,0.0,31831,331.81139054027227,0,0.0,32589,335.5204730908673,1666618,0,59730,0,0,0,0,0,56,0.5746465923457074,0,0.0,0,0.0,0,0.0,0.06217,0.1638683149265926,0.3215377191571497,0.01999,0.3349143206854345,0.6650856793145655,24.61120858196989,4.379623038093898,0.3288232882328823,0.2166871668716687,0.2252972529725297,0.2291922919229192,10.986696897865102,5.644348737040265,21.388604730255505,12237.12259272223,55.41127851479381,12.696896707008166,18.17214463051215,12.188264268932452,12.35397290834102,0.5506355063550635,0.7729422894985809,0.6938902743142145,0.5768880800727935,0.10912343470483,0.7083653108211819,0.9143576826196472,0.8386308068459658,0.7380952380952381,0.1265306122448979,0.4931468531468531,0.6878787878787879,0.6443514644351465,0.5289256198347108,0.1042382588774341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0047043555843945,0.0070426823080513,0.0090012292875212,0.011319027763653,0.0133602166961976,0.0152550323251687,0.017480982284168,0.0196100483605467,0.0216113841113841,0.0237868208708847,0.0256663071945771,0.027624934434491,0.029751112576232,0.0316908312264589,0.0337237792963701,0.035769023652707,0.0377945892095513,0.039764160262876,0.0416662325348781,0.0557794716508301,0.0691893023499241,0.0825570661295736,0.0949211356466877,0.1071665735577784,0.1231605209742895,0.13633664206329,0.1482064760526512,0.1589595684452278,0.1697702591151277,0.1833423064498761,0.195625128465874,0.2074214205725344,0.2180329481727647,0.2274776260527299,0.2378728349288916,0.2472485197203358,0.2570205306273809,0.2652663318861444,0.2729936364052557,0.278842818490854,0.2855807322403094,0.2920087057320621,0.2973681689736098,0.3025881725124921,0.3074472272794371,0.3126921058550116,0.3180234923217736,0.3219838690884611,0.326839312584145,0.3267558618461787,0.3253185961149833,0.3250278024128271,0.3245938602069723,0.3241406993339676,0.3228090610918677,0.3205243908231606,0.3214854459785589,0.3230136097402708,0.3237637558953837,0.3254335802006187,0.327574935118965,0.3290097804642572,0.329549271176194,0.3293729213862245,0.3312216957671265,0.3304980382048859,0.333280662389786,0.3362105411499436,0.3378092999163246,0.3407485070884806,0.3429826418289585,0.3469426152398871,0.3535169587980878,0.3552311435523114,0.3575135645199339,0.3559244593359732,0.3581217251108424,0.3649513212795549,0.367184388689765,0.0,2.885866742104884,56.41049561982789,185.60613814791944,265.14056791157947,fqhc7_100Compliance_implementation,85 -100000,95652,44258,418.6425793501443,6211,63.710115836574246,4899,50.652364822481495,1984,20.375946138083886,77.2430810454354,79.64804011396576,63.27207635196621,65.05052283085072,76.99469734212657,79.40063020736191,63.17968219571348,64.96129218069999,0.248383703308832,247.4099066038491,0.0923941562527304,89.23065015073917,143.46992,100.90174094385137,149991.552711914,105488.3755110728,369.55088,241.10027216924988,385785.9532471877,251496.43726137443,358.48213,173.7778582288296,371500.428637143,179116.4442578108,3509.20419,1586.8300672097394,3630257.7259231377,1620807.980964783,1162.37395,514.4112902491903,1200204.940827165,522852.29609739897,1948.61896,817.4344121804054,2002838.184251244,824454.1970985191,0.37781,100000,0,652136,6817.797850541547,0,0.0,0,0.0,31832,332.1833312424204,0,0.0,32847,340.0451637184795,1664589,0,59765,0,0,0,0,0,55,0.5750010454564463,0,0.0,1,0.0104545644628444,0,0.0,0.06211,0.1643948016198618,0.3194332635646433,0.01984,0.3287713363063201,0.6712286636936798,25.01349064837375,4.436736398265772,0.3229230455194938,0.2282098387426005,0.2222902633190447,0.226576852418861,11.169533902078918,5.75681338763996,21.25952460751422,12273.16248970593,55.47468730075117,13.305614073746211,17.775077579903574,12.120131340332073,12.273864306769296,0.5550112267809757,0.7817531305903399,0.6965865992414665,0.5610651974288338,0.1189189189189189,0.7213375796178344,0.9083769633507852,0.8979591836734694,0.6929133858267716,0.1359649122807017,0.4976667581663464,0.7160326086956522,0.6302521008403361,0.5209580838323353,0.1145124716553288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023714934327874,0.004594972917047,0.0065784798432535,0.0088499171907863,0.0109954939835016,0.0133917205560364,0.0155289319398419,0.0178790230354517,0.0201959260471204,0.0225901918015831,0.024643626294739,0.0269265527440026,0.0287541907484728,0.0311118894806786,0.0334534119177134,0.0354672264215326,0.0374068971232635,0.0393074743364852,0.0412423678215916,0.0432139952876415,0.0573175192016301,0.071522096640724,0.0855705931144546,0.0982,0.10982304995988,0.1250410274327944,0.1373463512063488,0.1493848482910083,0.1602272605685794,0.1707369461090706,0.1836582760592557,0.1964899348502422,0.2075981353200017,0.217391304347826,0.226680040120361,0.2363527427658441,0.2460893386258176,0.255396859394199,0.2636766712141882,0.271086340752973,0.2782220676866017,0.2849245760329804,0.2916849300463199,0.2975547716747054,0.3022585120105137,0.3082878522213716,0.3133377637897957,0.3190010331500874,0.3234331575803226,0.327373784159333,0.3274017511433698,0.3267322639325285,0.3262115906009941,0.3250181080689555,0.3247860699484182,0.3233545810613624,0.321254887002956,0.3219249221029724,0.3223705633344187,0.3231323616414779,0.324201601507301,0.3251303067679942,0.3266409916450954,0.3271469015413652,0.3281000917830056,0.3289753485075214,0.3306674338319908,0.3330061427395351,0.3366221090600467,0.3372419885952935,0.340531561461794,0.3441743143884506,0.3474667853283326,0.3503037760516804,0.3532665712923223,0.3591582974653275,0.3601688291386587,0.3549649773382777,0.3578976640711902,0.3623978201634877,0.0,2.2487204955834845,55.15131429519084,184.4270431515432,276.379765604899,fqhc7_100Compliance_implementation,86 -100000,95833,44760,423.1945154591842,6048,62.13934657164025,4665,48.261037429695406,1838,18.92876149134432,77.44904619750217,79.77403437334317,63.38601454967061,65.10634448624873,77.21868758915178,79.54318771417694,63.30098035194224,65.02309246537777,0.2303586083503859,230.8466591662324,0.085034197728369,83.25202087095818,144.39722,101.62848267042165,150675.8840900316,106047.48121254852,368.50446,240.159792680352,384049.11669257976,250123.78061873463,360.23334,173.91057989258908,373139.53439838055,179402.56632663115,3324.06047,1509.740488313833,3440303.44453372,1547093.4003045212,1117.13928,487.8837609743013,1157914.6118769108,501306.7199010794,1802.31248,754.2892402315467,1857639.3935283253,766264.3219447177,0.38244,100000,0,656351,6848.903822274165,0,0.0,0,0.0,31660,329.9385389166571,0,0.0,32855,340.15422662339694,1671853,0,59938,0,0,0,0,0,71,0.7200025043565369,0,0.0,0,0.0,0,0.0,0.06048,0.1581424537182303,0.3039021164021164,0.01838,0.3198233717079325,0.6801766282920675,24.9258717079045,4.403976700411519,0.3266881028938906,0.2252947481243301,0.2282958199356913,0.2197213290460878,11.057900165640424,5.586326063014194,19.409337626543117,12315.554696371488,52.5353227626291,12.33103337221597,17.177399135374635,11.764712928291903,11.262177326746588,0.5579849946409432,0.7716460513796385,0.6863517060367454,0.584037558685446,0.1209756097560975,0.7250608272506083,0.9083333333333332,0.8530120481927711,0.7758620689655172,0.1460176991150442,0.497960372960373,0.7004341534008683,0.6239855725879171,0.5306122448979592,0.113892365456821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394063376644,0.0045513060930737,0.0067476383265856,0.0090815818612163,0.0113588984817515,0.0137049066824147,0.0157213788322135,0.0179120015513528,0.0202657128257537,0.0225619301961506,0.0248706256084439,0.0270422824302134,0.0291741195337075,0.0310942712408879,0.0333030796839868,0.035374458896821,0.0371252031173992,0.0392049107235436,0.0409965507210239,0.0429826570339988,0.0580798598072349,0.0722843700993204,0.0861349821840285,0.0984304084720121,0.1100187561905966,0.125538975312817,0.1371374660786974,0.1485424399374647,0.159290713554114,0.1692617420916236,0.1824673090158293,0.1948057560174582,0.2057999652566663,0.2163341918023484,0.2264718474526033,0.2377952407794246,0.2474721603563474,0.2568626130675824,0.2650051497968377,0.2723742075504026,0.2794114252740912,0.2866608340624089,0.2933542549049681,0.2999629572096024,0.3053338017419956,0.3109101187111362,0.315942426661345,0.3208267292208204,0.3246557131609855,0.3289068868495096,0.3282669063493554,0.3277465368262241,0.3276999522753432,0.3265591242978539,0.326001094658363,0.3245549865886369,0.3236497545008183,0.3233393177737881,0.3240555310410373,0.324659429544487,0.325813182309326,0.3267546443580378,0.3278398199849987,0.3285781051788218,0.3281638904843959,0.3289923363711682,0.330102590262427,0.3327290344762917,0.3353513437849944,0.340136591528167,0.3421937477280988,0.3448989336304313,0.3508528985963366,0.3561301084236864,0.3614299153339605,0.3633459536204448,0.3661001378043179,0.36996336996337,0.3689159292035398,0.3732367518109035,0.0,1.576944244006807,54.596988551040575,169.58580382847285,260.95850893895755,fqhc7_100Compliance_implementation,87 -100000,95808,44713,423.0126920507682,6383,65.38076152304609,4941,50.99782899131596,2007,20.53064462257849,77.3497797498425,79.682549986327,63.33168066437421,65.05961553207989,77.09856948176622,79.43316109816719,63.23850531225261,64.969972997874,0.251210268076278,249.38888815981383,0.0931753521215981,89.6425342058933,143.9482,101.19795592603955,150246.53473613894,105625.7890009598,370.92532,241.3781178567974,386609.876002004,251394.4429033039,363.14827,175.53395623602637,375592.09043086175,180609.05090968907,3573.9185,1630.2511525261602,3690419.735303941,1661708.8265344852,1193.56435,529.7474497518916,1230313.9403807616,537452.2793001542,1967.88222,824.6745720352885,2015303.1897127589,827589.3072623024,0.38228,100000,0,654310,6829.38794255177,0,0.0,0,0.0,31906,332.44614228456913,0,0.0,33221,343.28031062124245,1667622,0,59870,0,0,0,0,0,57,0.594939879759519,0,0.0,0,0.0,0,0.0,0.06383,0.1669718530919744,0.3144289519034937,0.02007,0.3219526804432465,0.6780473195567536,24.82026390309026,4.411434219705899,0.3246306415705323,0.2216150576806314,0.2254604331107063,0.2282938676381299,11.231936366108329,5.853493790490864,21.41143591017323,12386.792650472236,56.23770914141066,13.037833368320124,18.3004468310587,12.500439682103664,12.398989259928175,0.5648654118599474,0.7808219178082192,0.7256857855361596,0.5727109515260324,0.1187943262411347,0.7291981845688351,0.9209183673469388,0.8470588235294118,0.7426470588235294,0.1759656652360515,0.504835589941973,0.7027027027027027,0.6819338422391857,0.517814726840855,0.1039106145251396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.0047755685562776,0.0071142955731016,0.0095093925570715,0.0115349404943545,0.0136856575530777,0.0157932300163132,0.0179251349999489,0.0204115007614706,0.0223134320719761,0.0243564904511486,0.0263465921925375,0.0286466366421946,0.0308506585112188,0.0326992903119326,0.0346773026927607,0.0368925003881786,0.038865262939529,0.0408952060345365,0.0428748425250137,0.0573181291796642,0.0712313869834365,0.0847002840462439,0.0970447284345047,0.1094855119056402,0.1246418186624372,0.1369291964996022,0.1491426929340017,0.1609361147605772,0.1714184579739992,0.1837755124032845,0.1960385323086914,0.2081896411048618,0.2183875375785733,0.2283818869917268,0.2388192012765391,0.2482924869425472,0.2577826262989788,0.2665342939808248,0.2744509835352309,0.2813927931054427,0.2879643596309678,0.294938835387928,0.3006215047840301,0.3068910256410256,0.312929526812326,0.318240928301698,0.3236281767534152,0.3280991093620546,0.3319825230671753,0.3312400614505565,0.3307371003983954,0.3298857062226612,0.3291875045299703,0.3286828861558619,0.3270576321119499,0.3260662755668305,0.3269565789041186,0.3281891595948535,0.3294921805103246,0.3296860043918094,0.3310959310959311,0.3313482910463409,0.3319913216578317,0.3331248646958362,0.3338814501605199,0.3339224125644899,0.3378985393434898,0.3406147167961912,0.3442597053828837,0.3469369205598982,0.3500662602703419,0.3511209346384591,0.3535864978902953,0.3561205273069679,0.3584216725559482,0.3589430273407668,0.3593404383671827,0.3549265106151333,0.3512989530825901,0.0,2.277515474976354,58.07029499652316,187.65508942685,269.5742327447324,fqhc7_100Compliance_implementation,88 -100000,95806,44520,421.6854894265495,6244,64.19222178151682,4882,50.44569233659688,1946,19.946558670646933,77.41775944651599,79.74493872881479,63.37436231324406,65.094738724667,77.17083010400503,79.49906830710603,63.28366741370823,65.00679641403947,0.2469293425109526,245.8704217087586,0.0906948995358334,87.94231062752544,145.70402,102.47520323350506,152082.35392355386,106961.15403367748,373.37701,243.0094186121908,389211.3855082145,253136.8271425493,357.90344,172.88680167628934,370387.9819635513,177948.7805671415,3513.94409,1588.8185885475864,3631838.945368766,1622439.2194096271,1161.50791,511.7504377309899,1195553.211698641,517360.7972034573,1903.05012,795.1985849792907,1952088.7000814143,801779.2427127915,0.38175,100000,0,662291,6912.834269252448,0,0.0,0,0.0,32213,335.6887877585955,0,0.0,32842,339.57163434440434,1661621,0,59629,0,0,0,0,0,65,0.6784543765526168,0,0.0,0,0.0,0,0.0,0.06244,0.1635625409299279,0.3116591928251121,0.01946,0.3368692226094862,0.6631307773905137,24.644618575358937,4.447443442557093,0.3236378533387956,0.2191724702990577,0.2398607128226136,0.217328963539533,11.466239445792604,6.018223682023926,20.703254807219437,12280.943970833689,55.23827695197653,12.789178191794331,17.87965943593747,12.977662729621738,11.591776594623004,0.568824252355592,0.7934579439252336,0.6962025316455697,0.6029035012809565,0.1149858623939679,0.7408874801901744,0.9310344827586208,0.8700980392156863,0.7764705882352941,0.1396396396396396,0.5088397790055249,0.7186147186147186,0.6356655290102389,0.5545851528384279,0.1084624553039332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377707348191,0.0045411695538909,0.0067579222940406,0.0089679267128435,0.0109310176523224,0.0131316421678407,0.01541127306085,0.017677798644566,0.0197060446861137,0.0217996479305686,0.02380073800738,0.0260834753331006,0.0282988805855082,0.0302050732992917,0.0323771421500897,0.0344044040942377,0.0362420830401125,0.038068776760629,0.0400685643050072,0.0420601126461432,0.0566644060723042,0.0702390783930419,0.0834914412100755,0.0959094060550034,0.1084323390630266,0.1239052116678816,0.1366616879058484,0.1483824326766672,0.1595715169750122,0.1693357471104303,0.1818621757646147,0.195110885463364,0.2066273628437727,0.2172000043671459,0.2273755904646819,0.2383659834297534,0.2479323182557906,0.2564128481581312,0.2656713712874651,0.2730443732845379,0.2803705928561527,0.2873304223970859,0.2939335608592449,0.2993778415888968,0.3050582241630276,0.3112060264395263,0.3158506265538911,0.3206595612241009,0.3251981023539601,0.3288910544266958,0.327484515860327,0.3275324068346461,0.3274280246531393,0.3260932313465146,0.3262373444968973,0.3243524585144816,0.3229735073151443,0.3234237927359186,0.3244173367861523,0.3244476122594441,0.3252545291211259,0.326230799527373,0.326646606486125,0.3280087332353072,0.3285985531280794,0.3299304669392432,0.3306864754098361,0.334390205619212,0.3372080809495466,0.3394037768716101,0.3413658270437392,0.3434429277102034,0.3441754916792738,0.3450607902735562,0.3448535643657595,0.346941204475125,0.3419665012406948,0.3404558404558404,0.3342406096897115,0.3386973180076628,0.0,1.992040280180576,55.58711599724041,187.87135498882765,267.4273245749061,fqhc7_100Compliance_implementation,89 -100000,95718,44610,421.52991077958166,6258,64.14676445391672,4901,50.58609665893562,1939,19.84997597108172,77.3893283971574,79.74939181670756,63.35181630130408,65.09316066466748,77.14023740087896,79.50330123026605,63.25784615038785,65.00350753119362,0.24909099627844,246.09058644151105,0.0939701509162276,89.65313347385973,144.20208,101.41141444412771,150653.04331473703,105948.11262680762,371.97869,242.84320863249133,388016.0366911135,253103.60499852835,360.35235,175.1381544612183,372714.47376668965,180103.94343571336,3521.39552,1613.436377774429,3634211.97684866,1640899.1806916464,1177.00836,523.114173114092,1211545.2892872812,528432.3565820567,1906.45486,819.6090004041064,1952881.6941432124,821498.7043425075,0.38157,100000,0,655464,6847.86560521532,0,0.0,0,0.0,32015,333.8348064104975,0,0.0,33130,342.3911907896112,1664132,0,59737,0,0,0,0,0,54,0.5641572118096909,0,0.0,1,0.0104473557742535,0,0.0,0.06258,0.1640066042927903,0.3098434004474273,0.01939,0.3234257698789643,0.6765742301210357,24.49740046681737,4.435432908013016,0.3152417873903285,0.2295449908182003,0.2273005509079779,0.2279126708834931,11.03438951322628,5.514629314133413,20.930685229302544,12322.560027497457,55.41699084828855,13.352892817260642,17.455295035800614,12.254528155486206,12.354274839741077,0.5484594980616201,0.7777777777777778,0.6906148867313916,0.5583482944344704,0.1110116383169203,0.7028051554207733,0.9245283018867924,0.8487179487179487,0.7125506072874493,0.1085271317829457,0.4916247906197655,0.6890156918687589,0.6372294372294373,0.5144175317185697,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0047939027233016,0.0070194658308227,0.0093417137983205,0.011609938595421,0.0138326242289762,0.0160097016142181,0.0181016713944613,0.0201804489766724,0.0225419271659384,0.0247156470949892,0.0267062010095621,0.0290071002147532,0.0309518172741402,0.0331659224272175,0.0352588612173194,0.0374557425927076,0.0396436017384269,0.041534144059869,0.0435022657430074,0.0576828695243565,0.0717746408128669,0.0854442661296243,0.0977276789939117,0.1103227982879672,0.1256213380713666,0.1381881828789646,0.150175662727563,0.1609953097789506,0.1705520288238826,0.1833552305671024,0.1959237983967806,0.2076302513699225,0.2178087884686891,0.2283752256019721,0.2390164987977706,0.2486938465660444,0.2574196161375244,0.2658819790472515,0.2736616555137959,0.280775014459225,0.2876321451959959,0.2935053875359267,0.2991782659735033,0.3040811368881331,0.3096698694259669,0.3153810531058738,0.3204278646197677,0.3252272550695361,0.3286066665787286,0.3277487192588509,0.3264961025034713,0.3254640044994376,0.3251184560268115,0.3247792207792208,0.323655766026082,0.3215831201238194,0.3214010966527539,0.3227048859046678,0.3234953394286121,0.3242267848461049,0.3250483291908312,0.3260296333500753,0.3278241836780274,0.3293849111004325,0.330702118820108,0.3323676437173369,0.3337194377484895,0.3372770739538617,0.3396538810265305,0.343679202537381,0.3450614667231877,0.3456821183722247,0.3484607820891007,0.3483852797596695,0.3531563421828909,0.3563724745556737,0.3644765923246936,0.3619153674832962,0.36282151208106,0.0,2.354590760263095,57.57934452932884,183.0752819897532,266.1163761823434,fqhc7_100Compliance_implementation,90 -100000,95659,44354,419.9395770392749,6217,63.757722744331424,4881,50.30368287354038,1940,19.75768092913369,77.35982293729873,79.73544773593079,63.33991942654043,65.08984694668858,77.12294509652234,79.50336375589129,63.25214896207358,65.0071845452285,0.2368778407763869,232.0839800395049,0.0877704644668497,82.66240146008386,143.0462,100.65770975304298,149537.62845106053,105225.55091841122,370.52671,241.82895344574916,386622.7223784484,252084.6689237282,363.7195,176.8592250418096,375570.0352293041,181291.4996865246,3521.52018,1594.5240888898172,3631516.469961007,1617089.950438345,1168.5213,511.6093978351688,1202332.1485693976,515634.3059592257,1908.86796,792.6182082889311,1947240.552378762,788465.2293788373,0.37975,100000,0,650210,6797.16492959366,0,0.0,0,0.0,31855,332.263561191315,0,0.0,33388,344.3899685340637,1670501,0,59894,0,0,0,0,0,72,0.752673559205093,0,0.0,0,0.0,0,0.0,0.06217,0.1637129690585911,0.3120476113881293,0.0194,0.3239522789843989,0.6760477210156011,24.71161628453556,4.4351076658204605,0.3300553165334972,0.2194222495390289,0.225158778938742,0.2253636549887318,11.451713988472196,5.931301981500676,20.53062766480421,12286.595920224938,55.08236490117355,12.775859074262154,18.235071865396677,12.158186186788884,11.91324777472584,0.553779963122311,0.7647058823529411,0.6933581626319056,0.5741583257506825,0.1236363636363636,0.7357310398749023,0.927807486631016,0.8634259259259259,0.7142857142857143,0.1682242990654205,0.4891726818434203,0.6771879483500718,0.6310432569974554,0.530952380952381,0.1128668171557562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022684003726657,0.0046522942196004,0.0071729315680008,0.0093132375941987,0.0115910200097608,0.0136902641355794,0.0157022182822323,0.0176406970575031,0.0200412674416229,0.0220151200499227,0.0243410201510044,0.0265506699222356,0.0287687706207024,0.0306524850444291,0.0327804596278417,0.0348099303387973,0.0368756146798488,0.0389258821333001,0.0409211415501377,0.0428556539864512,0.0574837536828468,0.0709738219895288,0.0844283974977958,0.0969160678023168,0.1099438889592034,0.1256374986773886,0.1373000626213953,0.1483836608616925,0.1595398956640725,0.1706754247566302,0.1831014751996207,0.1948781808337845,0.2065963721041578,0.2172928134472909,0.2277261516779705,0.2379296213019062,0.2475253049426942,0.2561522636058054,0.2647325681622284,0.2722371659131231,0.2794944145060943,0.2857760989814176,0.2928825749062563,0.2985212237322636,0.3046262827199728,0.3100184615384615,0.3147463134216446,0.3187779585197234,0.323000724187875,0.3270174050632911,0.3266699826582602,0.3257521588471481,0.3256243045676699,0.324737206884602,0.3247080817222808,0.3232099143206854,0.3213211787421264,0.3220725899162424,0.3230326985267697,0.3249088439265031,0.325420932238347,0.3263740608936338,0.3275052410901467,0.328108228980322,0.3305789094403075,0.3319373634377276,0.3327464788732394,0.3362182502351834,0.339861509407568,0.3425933264642942,0.3433386472329765,0.3457256990679094,0.3459977166053533,0.3499425067075508,0.3559754369390647,0.3579463858305409,0.3578898800369117,0.3584025947699168,0.3680931744312026,0.3647871116225546,0.0,2.8144673326263683,55.62325756195471,180.3689170559081,271.6754851797725,fqhc7_100Compliance_implementation,91 -100000,95858,44976,425.4000709382629,6288,64.35560933881366,4933,50.939931982724445,1985,20.35302217863924,77.34109898624328,79.63207417324712,63.34986309044478,65.04425282532395,77.09635946048061,79.3883988204902,63.25833249726638,64.95547132962686,0.2447395257626681,243.67535275692376,0.0915305931783976,88.78149569709137,143.26202,100.8455068828048,149452.3357466252,105203.0157971216,374.14972,244.48801374932088,389785.7873103967,254521.43143954684,366.91972,178.46236919958636,379618.68597300176,183694.6066275493,3522.22066,1613.219789760281,3639465.887041248,1647977.5707403468,1164.15009,519.8867817429622,1202549.9488827223,530448.1855901044,1937.2989,816.5819903985348,1988122.118133072,823256.316841646,0.38408,100000,0,651191,6793.2879884829645,0,0.0,0,0.0,32159,334.93292161321955,0,0.0,33579,347.2010682467817,1665634,0,59888,0,0,0,0,0,69,0.7093826284712804,0,0.0,2,0.0208641949550376,0,0.0,0.06288,0.1637158925223911,0.3156806615776081,0.01985,0.324616086361563,0.675383913638437,24.478101302820143,4.380527933641379,0.3269815528076221,0.2284613825258463,0.2266369349280357,0.2179201297384958,11.347555336466362,5.999097470713455,21.297324826403816,12381.723781561086,56.11138810837232,13.394025116851882,18.334539333347152,12.530988777832006,11.851834880341276,0.5619298601256841,0.7737355811889973,0.6962182269063856,0.5805008944543828,0.1190697674418604,0.7180811808118082,0.8844339622641509,0.8587699316628702,0.7038461538461539,0.1637931034482758,0.5027948574622694,0.7069701280227596,0.6354344122657581,0.5431235431235432,0.1067615658362989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0046407473832466,0.0065220257838095,0.0088533311673807,0.011210944646596,0.013514613693723,0.0159438450645394,0.0181382300433562,0.0202847629358772,0.022402487801385,0.0244092310528849,0.026399187717301,0.0285221285293181,0.0305985966211906,0.0327775945923666,0.0348956021839424,0.037059249302037,0.0391015147433639,0.0412881658586215,0.042977975218219,0.0573397843632041,0.0711799931025113,0.0846129674243217,0.0977515464025792,0.109683669601112,0.1249643517296012,0.1375266185678416,0.1488762253077888,0.1601216519048127,0.1712806662165203,0.1849567903227542,0.1968636781484886,0.2077100365280918,0.2182615159266303,0.2282624242224202,0.2383094222566886,0.2484684825423747,0.2571917153239506,0.2657338689544041,0.2745077827028141,0.2813038799338108,0.2885000058488425,0.2948693676637637,0.3010809385710519,0.3064326064508291,0.311820928655115,0.3170505758637957,0.3214199345781308,0.3259442451865184,0.3302731691852478,0.3296909105607804,0.3291618481193898,0.3284062059238364,0.3281910887073411,0.3281047504133709,0.3265788222300624,0.3256097947790782,0.3267385400378569,0.3286812922717753,0.3291719058738998,0.329097456588548,0.3303317629753314,0.3317169843143869,0.3329279005338199,0.333801963398376,0.3355480855086927,0.3372006416867193,0.3410075582682395,0.3466094843041445,0.3500039786743057,0.3547798311658681,0.356892150606254,0.3578375647341164,0.3581430745814307,0.3640068233510235,0.365208060093001,0.3656808379544054,0.3637836742961312,0.3662902781602864,0.3690292758089368,0.0,1.9825024285307025,59.74974716700812,179.62320893383236,273.0067031018064,fqhc7_100Compliance_implementation,92 -100000,95652,44576,421.7894032534605,6052,62.13147660268473,4744,49.10508928198051,1851,19.058671015765484,77.31769350596971,79.73865624994767,63.289715480586615,65.08081135228213,77.09172596326663,79.5118193498031,63.20692183901933,64.99970340931719,0.2259675427030885,226.83690014456204,0.0827936415672851,81.10794296493395,143.297,100.83431964311586,149810.54238280433,105417.67307020856,369.27623,241.26848902694465,385568.36239702255,251743.36614938875,359.53083,174.34799407750052,372581.4410571656,179848.14679887894,3387.63112,1533.5244010026556,3506239.7754359557,1568041.9846202796,1132.31962,499.83818672527775,1167873.8134069336,506763.1810171778,1812.89712,754.355557047171,1866124.95295446,763373.3747620666,0.38087,100000,0,651350,6809.570108309288,0,0.0,0,0.0,31873,332.70605946556265,0,0.0,33011,341.8119851127002,1666122,0,59729,0,0,0,0,0,51,0.5331827876050683,0,0.0,0,0.0,0,0.0,0.06052,0.1588993619870297,0.3058493060145406,0.01851,0.3324447232240866,0.6675552767759134,24.596359842942658,4.394549182070981,0.3277824620573356,0.2223861720067453,0.2280775716694772,0.2217537942664418,11.22087624203298,5.771252592468676,19.74732510797214,12262.431220220857,53.62174679747142,12.64371327758285,17.49228887248243,12.02919805780912,11.45654658959702,0.5623946037099494,0.7781990521327015,0.7054662379421222,0.577634011090573,0.1188212927756654,0.7334384858044164,0.9255583126550868,0.845771144278607,0.71875,0.1594202898550724,0.5,0.6871165644171779,0.6565481352992194,0.5338983050847458,0.1088757396449704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026237944728097,0.0048777025108506,0.0070659898477157,0.0092785495787558,0.0115681626257796,0.0140281173594132,0.0161283741048293,0.0183083194556544,0.020406701257765,0.0224379343569978,0.0247497818611096,0.0267952619889775,0.0288123899455262,0.0308947618163437,0.0329689630945985,0.0348613410596026,0.0369302865674117,0.0389721004632611,0.0412625400657703,0.0433308999895713,0.0579585950318218,0.0720258178084201,0.0856440635240736,0.0982959093398491,0.1104141586939534,0.1262589356632247,0.137873507034471,0.1490967226219025,0.1597069205262594,0.1699817420255611,0.182976153240506,0.1950788766577099,0.2058660160972369,0.2165272424667133,0.2260492072411551,0.2361656353272562,0.2457126258281475,0.2547286647151542,0.2632678076905616,0.2704374420123019,0.277693545213597,0.2847533369988652,0.291193047267216,0.2964828338789557,0.3019953065914424,0.3073281972265023,0.3129278089922791,0.3176081424936386,0.3215659856719047,0.3270061422627303,0.3272325399606458,0.3265707797123391,0.3250954588364589,0.3236322144549078,0.3239716775275728,0.3227091023265074,0.3214987014632292,0.3223754324408519,0.3236256990860728,0.3234106154694756,0.3248577558063613,0.3266405773731097,0.327214900428221,0.3267799622348106,0.329526994744386,0.3302417161066349,0.3301710466696874,0.3338423660672546,0.3370751263726686,0.3413440669271141,0.3443783759248331,0.3479227308811854,0.3505335844318895,0.3506060606060606,0.3528860569715142,0.3549834671705243,0.3584443423671719,0.3622898318654924,0.3686799672041541,0.3743823641201064,0.0,1.8546064233936783,56.06662925059198,172.10578626639975,265.0532743211133,fqhc7_100Compliance_implementation,93 -100000,95713,44400,420.5071411407019,6109,62.68740923385538,4802,49.60663650705756,1905,19.589815385579808,77.34880342590687,79.70753273395435,63.338894218876014,65.07761766214252,77.11771930372788,79.47526002577976,63.2534271119632,64.99387721114871,0.2310841221789843,232.272708174591,0.0854671069128159,83.74045099380112,143.77308,101.15932995957432,150212.4685256966,105690.0621352526,370.20528,241.7181561915154,386222.25820943865,251981.4619006252,356.80185,172.9434658024265,369032.1899846416,177844.84257150488,3430.71104,1548.733081820956,3548512.3337477664,1582344.2036797355,1162.63117,510.7325489019612,1200471.2003594078,519461.2636314488,1872.53374,782.7262206345661,1927010.479245244,791595.9058067874,0.37895,100000,0,653514,6827.839478440756,0,0.0,0,0.0,31918,332.88059093331105,0,0.0,32672,337.5403550196943,1667059,0,59730,0,0,0,0,0,69,0.720905206189337,0,0.0,0,0.0,0,0.0,0.06109,0.1612086027180367,0.3118349975446063,0.01905,0.3316739265712508,0.6683260734287492,24.67609600450348,4.431341605900422,0.3311120366513952,0.2280299875052061,0.2136609745939192,0.2271970012494794,11.066082147273724,5.549159399520586,20.23038820548458,12253.876520496347,54.04161908191706,13.07479153447453,17.76676387880297,11.23461867031989,11.965444998319674,0.5541441066222408,0.7844748858447489,0.6830188679245283,0.5662768031189084,0.1237396883593033,0.7231920199501247,0.9246753246753248,0.8571428571428571,0.75,0.1478260869565217,0.4976382328424562,0.7084507042253522,0.6313213703099511,0.5149625935162094,0.1173054587688734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189168936639,0.0045614888699671,0.0066054487342093,0.0087973262629648,0.0113164958516349,0.0135186033491118,0.0158602342340505,0.018097376747984,0.0201216085023759,0.0222404175835422,0.0243424963614373,0.026407348488736,0.0283449509592252,0.0303292359009203,0.0322866809704571,0.0342522369862164,0.03619684623588,0.0382644062169284,0.0400499064254522,0.0424598585018703,0.0570193301795169,0.0716692830978545,0.0847706576020815,0.0971889071245213,0.1091597578212349,0.1239937802130382,0.1359932088285229,0.1472921036101736,0.1581500197647461,0.1684241013483796,0.1809632558089431,0.1940317886240438,0.2050704776820673,0.2165582107508065,0.2264850531967565,0.2367038957585427,0.2471713076209943,0.2555380459252589,0.2646557987467078,0.2726585410557184,0.2797620425453114,0.2858429331618034,0.2927951912723486,0.2983914433891078,0.3042248391404638,0.3100263527325567,0.3151778685759268,0.3196163130478973,0.3235453770000258,0.3276861463877325,0.3276121812116647,0.3262522515090266,0.3249584542151367,0.3245524037975232,0.3239262891960172,0.3222991180793728,0.3205653777362731,0.3216106766350237,0.3228548023755888,0.3247453030492265,0.3243794309657868,0.3246976184368895,0.3253019614410416,0.3263777062086241,0.328313325474535,0.3297190220507741,0.3313834037210364,0.3343928998552275,0.3383152650598182,0.3403469768549764,0.3438554876379892,0.3446876668446342,0.3470864542338454,0.348533701827115,0.3500710563713879,0.3523421588594704,0.3558320373250389,0.3574819401444788,0.3576826196473551,0.3624658603199375,0.0,2.1907798971425567,52.52874270083189,182.717274179863,270.27987466489486,fqhc7_100Compliance_implementation,94 -100000,95640,44140,416.9803429527394,6174,63.32078628189042,4822,49.87452948557089,1944,19.981179422835638,77.26744378178137,79.68153837909449,63.28338998351626,65.06915125080505,77.02236988040725,79.43724364733335,63.19174611464988,64.98000231619876,0.2450739013741127,244.2947317611441,0.0916438688663774,89.14893460628548,143.54252,100.96165874557592,150086.28189042243,105564.26050352982,365.778,238.85938989087376,381913.7494772062,249213.09642139403,357.6649,173.46660265926712,370452.1120869929,178710.63161089717,3473.79469,1591.25546704479,3596959.420744458,1628867.1386016586,1137.1073,504.3536780337773,1175310.644081974,514095.045694474,1903.21042,807.9002569172316,1958101.798410707,818430.4573495927,0.37789,100000,0,652466,6822.103722291928,0,0.0,0,0.0,31499,328.76411543287327,0,0.0,32839,339.79506482643245,1668330,0,59865,0,0,0,0,0,53,0.5541614387285655,0,0.0,1,0.0104558762024257,0,0.0,0.06174,0.1633808780332901,0.314868804664723,0.01944,0.325205777294611,0.674794222705389,24.71910377797655,4.393417311868932,0.3268353380340107,0.2304023226876814,0.2144338448776441,0.2283284944006636,11.210649800709549,5.878627944970711,20.852516868997824,12262.855794344665,54.8684204617236,13.382089696665536,17.86395351851531,11.46754647962063,12.154830766922116,0.5618000829531314,0.7758775877587759,0.7151015228426396,0.586073500967118,0.103542234332425,0.7049180327868853,0.8905852417302799,0.865,0.7272727272727273,0.1517509727626459,0.5100254165489975,0.713091922005571,0.6641156462585034,0.5454545454545454,0.0888625592417061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784505643706,0.0047353477996349,0.0070662768031189,0.0091049508170067,0.0113225973814586,0.0133519371002566,0.0156004649550339,0.017794974935936,0.0200308796613462,0.0224167946748591,0.0248092385953396,0.0269653918456655,0.0290411184379725,0.0314167954662545,0.0335875971552729,0.0355533041104954,0.0373995360013257,0.0394519694846644,0.0415245069484896,0.043717157394278,0.0582671404682274,0.072656241817401,0.0850223687803238,0.0976159386714965,0.1091204695896369,0.124792189501996,0.1366074368315401,0.1478781678282925,0.1593106841812502,0.170278804020964,0.1828702705034729,0.1953438992947599,0.2074253869429871,0.2181245143851432,0.2283031123735288,0.2377549550747277,0.2470421466202339,0.256546446857593,0.2647907156321682,0.2727470738613566,0.2790665354102727,0.2852495846107041,0.2919114163903363,0.2982167714683434,0.3035375407522748,0.3090531981876319,0.3138421830756508,0.318664527465811,0.3230172827341208,0.3265548973979268,0.3248667251501451,0.3236944027124998,0.3232147897262207,0.3227871012583079,0.3230097723751639,0.3213293848679668,0.3204100741116912,0.3212150085425154,0.3217270909184144,0.3218906361686919,0.3223312630176571,0.3234570839282881,0.3236660151734863,0.324709360930045,0.3261215629522431,0.3268213481380611,0.329037604297634,0.331693472090823,0.3358824358612912,0.3365553602811951,0.3391392498387245,0.3411492022423458,0.3438899552143314,0.3512719399984536,0.3496097468113459,0.3563065781532891,0.3582554517133956,0.3584555027875284,0.358952462282949,0.360176282051282,0.0,2.130859811154599,56.29551692926109,185.0240800008213,262.32578252969296,fqhc7_100Compliance_implementation,95 -100000,95842,44545,421.3601552555247,6284,64.40808831201352,4927,50.85453141628931,1960,20.064272448404665,77.40182060844235,79.71498174553416,63.36325590393732,65.07547853113877,77.15645275879587,79.4706830679422,63.27247621482922,64.98727824738442,0.2453678496464846,244.29867759195645,0.0907796891081034,88.20028375434674,144.21088,101.53130315008086,150467.08123787068,105935.9241101632,371.9803,242.4599218758464,387505.6134053964,252367.2273172713,359.11913,174.2636226602323,371564.7002358048,179356.58880119817,3532.2028,1593.488722095738,3647637.570167568,1625022.1138617275,1187.23727,520.0305917203743,1226741.272093654,530588.5642206703,1914.8401,803.240550863303,1962729.3044802905,809310.4238422674,0.38114,100000,0,655504,6839.412783539576,0,0.0,0,0.0,32035,333.6846059139,0,0.0,32964,340.7274472569437,1666344,0,59789,0,0,0,0,0,68,0.6990672147910102,0,0.0,0,0.0,0,0.0,0.06284,0.1648737996536705,0.3119032463399109,0.0196,0.330351728320194,0.6696482716798059,24.63377510391383,4.4109677887313685,0.3147960219200325,0.2307692307692307,0.2325959001420743,0.2218388471686624,11.248243058343885,5.9016843032412725,20.904773307914997,12300.588351015718,55.52130968622362,13.42456110874935,17.53968085565245,12.77979644566138,11.777271276160436,0.5605845341993099,0.7827616534740546,0.6834300451321728,0.5924956369982548,0.121683440073193,0.7329803328290468,0.9090909090909092,0.8423645320197044,0.7456445993031359,0.1563981042654028,0.4973647711511789,0.7093184979137691,0.6270742358078603,0.5413271245634459,0.1133786848072562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021567872982441,0.004469488897222,0.0068072069147425,0.0090801060361376,0.0111324610363863,0.0132537969787043,0.0154716404219538,0.0175239844866299,0.019676186192939,0.0218928794407541,0.0241607298447029,0.0263271338834831,0.0282260551364019,0.0303841520546111,0.0324473735779778,0.03467622777198,0.0368288668757569,0.0388627361522987,0.0407864398329905,0.0426470741276498,0.0576824804196606,0.0719400395137095,0.0850727188901462,0.0969863128814378,0.1093124657707376,0.125215187199662,0.1373140968603025,0.1485044324921873,0.1601178152946449,0.1703834618680377,0.1823158664601617,0.1954875031066639,0.2074442657859284,0.2177266916512789,0.2273526824978012,0.2378411292554663,0.2475042107728859,0.2565140627284279,0.2641997436275566,0.2712425033191411,0.2789522377703249,0.2860900365897852,0.2930893780085392,0.2989311476981331,0.3047053393577223,0.3094704157322753,0.3142842845347411,0.3190545214118604,0.3232895860837151,0.3281542641589068,0.3271963824289405,0.326666483259512,0.3263157894736842,0.3256236743763256,0.3260705121549666,0.3240266197506311,0.3227397780096765,0.323402163225172,0.3242182835502635,0.3255946547884187,0.3275362318840579,0.3299007713400801,0.3306510607168983,0.33287967693715,0.3331176921602453,0.3352993140719185,0.3356251953291473,0.3387253214855605,0.3412468095521135,0.3444668964697492,0.3466684871654833,0.3511990216408784,0.3528449144008056,0.354522670312144,0.3570297214199199,0.3608562691131498,0.3594821020563595,0.3580998781973203,0.3558114035087719,0.3518659558263519,0.0,2.1135899976211605,58.258703541969005,174.38343792383748,277.982515410678,fqhc7_100Compliance_implementation,96 -100000,95696,44541,422.1179568634008,6246,64.10926266510617,4843,50.022989466644376,1941,19.91723792008025,77.32145341825886,79.7091317769642,63.3143933609397,65.08044178610622,77.09012189912286,79.47776233253245,63.22926127120815,64.99765768360922,0.2313315191359919,231.36944443174912,0.0851320897315446,82.7841024970013,144.36664,101.5702692601942,150859.63885637853,106138.46896442297,372.03039,242.266925318063,388082.4485871928,252484.92448420945,356.28755,172.59559457894656,368616.2013041297,177587.86634154324,3498.96712,1575.4707695849504,3616707.8874770105,1606874.6638936996,1181.8396,518.3645128190379,1218325.4994984115,525074.8922132093,1912.02704,790.2918225807352,1963832.0096973751,797320.4335166266,0.38161,100000,0,656212,6857.256311653569,0,0.0,0,0.0,32121,335.0192275539208,0,0.0,32652,337.4644708242769,1664730,0,59674,0,0,0,0,0,60,0.6165356963718441,0,0.0,0,0.0,0,0.0,0.06246,0.1636749561070202,0.3107588856868395,0.01941,0.3248124904331854,0.6751875095668146,24.954270262370592,4.399105545202851,0.3091059260788767,0.2258930415032005,0.2355977699772868,0.2294032624406359,11.305614150319045,5.891643700065188,20.552598416210092,12320.22576169223,54.71600358100511,12.842784463773103,16.900052924973277,12.747232099905826,12.225934092352905,0.5572991947140202,0.7705667276051188,0.7054108216432866,0.5950920245398773,0.1089108910891089,0.7305084745762712,0.9011627906976744,0.8586387434554974,0.7598425196850394,0.155,0.5015015015015015,0.7106666666666667,0.6529147982062781,0.5479143179255919,0.0987925356750823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0044620221072913,0.0064560662660386,0.0087803985731852,0.0111102067393781,0.0131305517072773,0.0153380176835921,0.0175413518480702,0.019668980463918,0.0217515917047106,0.0238468715078071,0.0259296152147793,0.0281963975270288,0.030243389732704,0.0324421965317919,0.0346157425118125,0.0364915115544368,0.0385649200369459,0.0407670868172552,0.0424392124983063,0.0572052264917539,0.0713380996744512,0.0845367532849166,0.0972029296628362,0.1093174648392576,0.1247790514294181,0.1371360640251345,0.1492124013504734,0.1596597345416461,0.1708904880900033,0.1841028071611694,0.1960013855512978,0.2078176320883997,0.2181589454684679,0.2280827191728082,0.2377820589472752,0.2481316229782487,0.2571592339507282,0.2655578608437354,0.273654566061064,0.2807788363703635,0.2873423491870536,0.2940438723112236,0.3002827430871711,0.3063219507456162,0.3115767185345676,0.3173513412117801,0.3214712386568719,0.3262940226171243,0.3300392652910638,0.3289933824716199,0.3275639440643973,0.3262438283327003,0.3258607001082642,0.3245335155692893,0.322475869465298,0.3210801393728223,0.3226018288979002,0.3236504602353263,0.3245130073026586,0.3252506324369905,0.3268565555138266,0.3285932689689836,0.3281477336317851,0.3293023703989208,0.3306926033414385,0.3329613733905579,0.3370871581338128,0.3408330692581247,0.3444435605759287,0.3471164805105995,0.3524266666666666,0.3514681581288928,0.3556633556633556,0.3602537398220034,0.3644859813084112,0.3668520234785295,0.3664964249233912,0.3609418282548476,0.3639167309175019,0.0,2.1730187965739423,51.56289909068054,194.24620085434825,268.0672034044214,fqhc7_100Compliance_implementation,97 -100000,95700,44642,422.9989550679206,6191,63.46917450365726,4887,50.41797283176594,1991,20.38662486938349,77.3455376358958,79.73153819574705,63.32130932583449,65.08699258539045,77.09435608184113,79.48221619811412,63.22749137218703,64.99637739806467,0.2511815540546678,249.32199763293283,0.0938179536474592,90.61518732578122,143.50798,100.95910166413282,149956.09195402297,105495.40403775634,371.61395,242.75920406431703,387671.12852664577,253027.4316695516,361.20559,174.9184263441245,373379.644723093,179713.76598455274,3523.81624,1605.1583226191474,3642564.326018809,1637761.0480830958,1197.11167,533.5219426822237,1234674.629049112,541280.9607309748,1956.08706,824.7702177149462,2006172.079414838,829522.8046753135,0.38126,100000,0,652309,6816.185997910136,0,0.0,0,0.0,31981,333.5005224660397,0,0.0,33131,342.1003134796238,1668632,0,59769,0,0,0,0,0,49,0.5120167189132706,0,0.0,0,0.0,0,0.0,0.06191,0.1623826260294812,0.3215958649652721,0.01991,0.3307219662058371,0.6692780337941628,24.68739716539496,4.495106013053759,0.3179864947820749,0.2220175977082054,0.2275424595866584,0.2324534479230612,11.35606741798798,5.883366892438396,21.232261169156747,12292.149850900834,55.44767011185144,12.92120903879312,17.626979130906896,12.496780782025713,12.402701160125725,0.5578064252097401,0.7852534562211981,0.6962676962676962,0.5935251798561151,0.1161971830985915,0.7102446483180428,0.931472081218274,0.8403990024937655,0.6863468634686347,0.1611570247933884,0.5020955574182733,0.7018813314037626,0.6461405030355594,0.5636147443519619,0.1040268456375839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023708446894092,0.0044829859526345,0.0068734453525559,0.0093192951076241,0.0115060633189549,0.0137095131391322,0.0157859313495543,0.0180550023998447,0.0200732166230366,0.0220169581780199,0.0242859340546638,0.0264995891536565,0.028832702435813,0.0306761741854378,0.0329305167129338,0.0348706179118981,0.0370009737098344,0.0390024181914418,0.0408265133159323,0.0426451895225989,0.0572723570018693,0.0710091992757794,0.0850177360787523,0.0980998674326115,0.1098125665826363,0.1254693730762315,0.1377151467560856,0.1492538903149531,0.160304445893508,0.1710676026706167,0.1838389064959144,0.1959752187852005,0.2068822869833113,0.2171153425257168,0.2268253478950149,0.2373521882238205,0.2476278716706481,0.2567885396621766,0.2650696745494984,0.2722932124209948,0.2790678838788804,0.2856524890686744,0.2928632256233145,0.299186952929484,0.3050769305440955,0.310717845847127,0.3162039525494068,0.3208896453612437,0.3251482232584574,0.3280094724378371,0.3275107411385607,0.3267094544556899,0.3263396056718053,0.325625982038604,0.3245521757811921,0.322728452950071,0.3211630335052362,0.3213434381627184,0.3219744896214478,0.3222391129392828,0.3224236730859559,0.3226747069208339,0.324506236459626,0.3250336172120125,0.3266693997636675,0.3286184898556787,0.3295843799954328,0.3324519987409506,0.335241640910368,0.3388524915624379,0.3409576644991133,0.344800169617301,0.3474821047343965,0.354828897338403,0.3550334937258232,0.3590483056957462,0.3601917723476647,0.3674599917931883,0.3698478561549101,0.3678250683326825,0.0,2.4733472439362143,57.11427951563436,182.7043163200225,268.5852599707036,fqhc7_100Compliance_implementation,98 -100000,95619,44671,423.0435373722796,6151,63.14644579006264,4807,49.780901285309405,1907,19.56724082033905,77.23812690061078,79.66983350569613,63.25655152000609,65.05435904616036,77.0018970711789,79.43345167911129,63.169928995583376,64.97009318547246,0.2362298294318776,236.3818265848465,0.0866225244227152,84.26586068789277,143.39996,100.96990949090532,149970.15237557387,105596.07346960888,370.70479,242.9117410586852,387190.9243978707,253543.5628264089,367.49587,178.95155071150666,380936.1110239597,184532.7110530052,3474.5273,1585.1287053428432,3600502.086405421,1624602.227046695,1160.70439,514.6414890434593,1201450.8309018083,525853.5715074659,1871.7316,781.1226564043496,1923049.7704431128,788630.4683089281,0.38058,100000,0,651818,6816.825107980631,0,0.0,0,0.0,31996,334.1072381012142,0,0.0,33571,347.8701931624468,1659340,0,59583,0,0,0,0,0,63,0.6484066974136939,0,0.0,1,0.0104581725389305,0,0.0,0.06151,0.1616217352462031,0.3100308892862949,0.01907,0.34050789718179,0.65949210281821,24.38984971769584,4.328150681790439,0.3239026419804451,0.2255044726440607,0.2282088620761389,0.2223840232993551,11.283177925719992,5.972093527854654,20.37454327453026,12319.887979939997,54.88694192608533,13.071037337365087,17.78768752067761,12.12294400299358,11.90527306504905,0.5610567921780737,0.783210332103321,0.7000642260757868,0.5788514129443938,0.1150608044901777,0.7345340642129993,0.940721649484536,0.861244019138756,0.7420634920634921,0.1187214611872146,0.498300283286119,0.6954022988505747,0.6409130816505707,0.5301775147928994,0.1141176470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.004706216465672,0.0067216310616521,0.0087820050211926,0.0109815176681322,0.0131829619894658,0.0151257075832525,0.0174171535978425,0.0197410142585356,0.0219495457478516,0.0240806862020848,0.0262836123013059,0.0284679195570284,0.0305454470480294,0.0326954653888653,0.0349219817060552,0.0370408766237132,0.0391523398950812,0.0413478654632897,0.0433870934090008,0.0582405519836913,0.0718978905341255,0.0846027777194125,0.097059566939085,0.1097723240685984,0.1251178308531483,0.1369445359225776,0.1485290982732892,0.1596071340687087,0.1703597091393403,0.1833718145135187,0.1959674796747967,0.2078312596692306,0.2181358049037007,0.2283214702836113,0.2387096058484852,0.2481717544448171,0.2570088717041112,0.265754141039779,0.2731227973505068,0.2803331747891556,0.287816259056909,0.2942948999323787,0.3000697081871064,0.305261746929226,0.3109952044297226,0.3171616498882836,0.3209937983309088,0.3249753156992153,0.3288855353904399,0.3276779683911928,0.3265227235076481,0.3258987216611342,0.3255736421748395,0.3249679783146167,0.3228408148216425,0.3215346731273333,0.3226396440929313,0.323332132503045,0.324322871883061,0.324637027854473,0.3257358041819443,0.3279019405840674,0.3287911101133685,0.3309130382342299,0.3335861690162948,0.3362619122571044,0.3384231946240969,0.3409362900387188,0.3433770764778178,0.3461187214611872,0.3494309116051484,0.3485746720484359,0.3511968287848757,0.3536264562194663,0.3561079043468017,0.3582653369598066,0.3623101518784972,0.3789041095890411,0.3822188449848024,0.0,1.9027264224798444,56.379814518761215,186.7491733179089,260.8746602081587,fqhc7_100Compliance_implementation,99 -100000,95729,44468,422.254489235237,6143,63.06343950109162,4818,49.84905305602273,1900,19.502971931180728,77.33641368994157,79.71029977412728,63.332022412709286,65.08899907568787,77.1065102606804,79.48194562391457,63.24733677547806,65.00746228216646,0.2299034292611708,228.35415021270933,0.0846856372312245,81.53679352140841,143.56738,101.01878759714585,149972.71464237588,105525.79427043616,371.9996,242.5783189342234,388147.93845125305,252952.4584339368,360.12611,174.5054676912874,373136.2492034807,180025.729341571,2779.44836,1262.8995010047056,2876242.392587408,1292317.6239934156,1135.20788,493.8806015995335,1173404.3706713745,503631.0865241438,1867.10066,770.9329516437847,1917981.280489716,777857.8454899361,0.38077,100000,0,652579,6816.941574653449,0,0.0,0,0.0,32025,334.0576001002831,0,0.0,33025,341.9235550355692,1669041,0,59913,0,0,0,0,0,63,0.6581077834303085,0,0.0,1,0.0104461552925445,0,0.0,0.06143,0.1613309872101268,0.3092951326713332,0.019,0.3323506594259116,0.6676493405740884,24.780918104754416,4.441852207792953,0.317351598173516,0.2293482772934827,0.2260273972602739,0.2272727272727272,11.280324140542447,5.740152174250658,20.052742555876755,12277.508036822894,54.43748962603031,13.139616874156411,17.351939846722477,12.14982690994758,11.796105995203847,0.5570776255707762,0.7819004524886878,0.6919555264879006,0.5950413223140496,0.1041095890410958,0.7317854283426741,0.927536231884058,0.8641025641025641,0.7276595744680852,0.1047619047619047,0.4959372373213785,0.6946454413892909,0.6330114135206322,0.5585480093676815,0.103954802259887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002715739126,0.0044320936317812,0.0067008477587694,0.0088625091470851,0.0110271304029378,0.0134438718350885,0.0154702780978798,0.0175413518480702,0.0197008577591935,0.0218659787482341,0.023904464148429,0.0259026929355358,0.0277546403414057,0.0295405152080093,0.0316891961613868,0.033831205747067,0.0356721270735394,0.0375769019286433,0.0395888332259338,0.041490015520995,0.0566607144721865,0.0710115510169917,0.0845786796707042,0.0969356110381077,0.1093555663300799,0.1249379062516514,0.1379233582445539,0.1493396005700066,0.1605648535564853,0.1705553413035094,0.1830449380165289,0.1957137605155597,0.2076166675721193,0.2177574380706889,0.2281426468326338,0.2383611015909166,0.247716233679426,0.2572468653094243,0.2658015526718422,0.2728031559087531,0.2795082724835936,0.2865783174732909,0.2937410675265464,0.2994077176189051,0.3049573147070237,0.3101089871331217,0.3153791371490685,0.3197163949632152,0.3235286508860432,0.3283078100061994,0.3272095934105866,0.3260264918899567,0.3253759107115176,0.324682272313231,0.324784290389765,0.3229184233522927,0.3218281512471871,0.3232796149360143,0.3242550135918346,0.3244455564093857,0.3241490478332584,0.3248522230789,0.3261515912897822,0.3279728401679621,0.3290786279175981,0.3301282051282051,0.3306604043759665,0.3330804968237413,0.3350021153574954,0.3374066530889341,0.3423290883177785,0.3437197287697772,0.3462081355062235,0.3482529375386518,0.3489652553635846,0.3519681236416324,0.3526315789473684,0.3531090723751274,0.354218191810937,0.3508171797795515,0.0,1.906346207747166,54.95951364066821,180.02024774150942,270.25515066751643,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95596,44261,418.9296623289677,6263,64.0612577932131,4937,50.90171136867651,1968,20.05314029875727,77.26635035352784,79.70452939122077,63.26822878755484,65.07202486013036,77.01534492095166,79.45929652945524,63.173233397023616,64.98284490438006,0.2510054325761786,245.2328617655297,0.0949953905312241,89.17995575029636,143.7678,101.21424780274272,150391.02054479267,105877.07414823082,371.17035,241.77812115578112,387531.0473241559,252177.86429953243,360.31542,175.2534052094179,372547.1881668689,179868.3075613386,2843.61268,1309.2337482981582,2934565.044562534,1329499.0044543264,1168.48227,527.6732221544623,1199946.8701619315,529636.9370266809,1933.32588,824.0040609932278,1972873.8650152727,819404.4114133775,0.37938,100000,0,653490,6835.955479308757,0,0.0,0,0.0,31977,333.7378132976275,0,0.0,33010,340.98707058872753,1663609,0,59625,0,0,0,0,0,57,0.5962592577095276,0,0.0,0,0.0,0,0.0,0.06263,0.1650851389108545,0.3142264090691362,0.01968,0.3325205729960377,0.6674794270039622,24.70415411535881,4.451579425843516,0.322665586388495,0.2191614340692728,0.2319222199716427,0.2262507595705894,11.356117261456546,5.848885637810212,21.039972391662065,12246.232380273776,55.98596053289058,12.832498831135943,18.053005942781475,12.697893874375993,12.402561884597178,0.5594490581324691,0.7920517560073937,0.6936597614563716,0.5973799126637555,0.1038495971351835,0.7361963190184049,0.9297297297297298,0.8814814814814815,0.7805755395683454,0.1673306772908366,0.4960088081475364,0.7205056179775281,0.6296296296296297,0.538638985005767,0.0854503464203233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025943491831853,0.0049606898300786,0.0070175794936374,0.0091711403936879,0.0115531035605952,0.0138304269392663,0.0162373448726322,0.0185054617168899,0.0206269951706638,0.0228099478424822,0.0247857546056345,0.0270750886570385,0.0290605505342694,0.0312615993731183,0.0335278624180137,0.0353879742971555,0.0373971268061112,0.0394370585791441,0.0410608158039905,0.0429603980016479,0.0569053842132775,0.0707810649647352,0.0845606000126053,0.0974625812363728,0.1091640788389631,0.1241962308922764,0.135890131383137,0.1475206964239993,0.1591393245196167,0.1688606153085677,0.1817397214460639,0.194518231001919,0.2057298474945533,0.215984307193267,0.2251168636443817,0.2343704920215717,0.2446190295254911,0.253962353418269,0.2618381868194321,0.2692718195902909,0.2770387708280225,0.2848891700642016,0.2915575567272943,0.2982089946137882,0.3035112684107466,0.308492907144709,0.3133798844162519,0.3182843380863183,0.3235587705311191,0.3277476264046798,0.3279214217383688,0.3263126015252884,0.326116678647441,0.324840948525159,0.32386152312659,0.3219183329502796,0.320468948035488,0.3211303261441346,0.3222777188601142,0.3229824781200222,0.323812031064894,0.3249692545721426,0.3258552175101448,0.3266958179168068,0.3281581997295731,0.3298248370120179,0.3317391677883101,0.3353988176156302,0.3397883597883598,0.3416660011181215,0.3444302176696543,0.3482966359225889,0.3521314387211368,0.3530663424272361,0.3565956651718983,0.3542009884678748,0.357958872810358,0.3584943639291465,0.3583150984682713,0.3558490566037736,0.0,2.918861860370916,56.54271831496475,185.25040129745557,273.1119025814993,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95701,44512,421.53164543735176,6138,62.9773983552941,4833,49.84273936531489,1940,19.82215441844913,77.34534288058313,79.71280735423242,63.32656324425341,65.07388562782597,77.09914531240095,79.46950039710146,63.235120827318376,64.9865611696603,0.2461975681821826,243.30695713096875,0.0914424169350311,87.3244581656678,143.3718,100.94877055495088,149812.2276674225,105483.50649935828,369.04869,240.5823641617576,384996.969728634,250759.78742307564,358.29405,174.19770528547863,370600.5161910534,179133.56360557178,2801.15076,1280.6384400257673,2891356.746533474,1302541.248289744,1153.90011,512.9679992100665,1188560.3703200594,518838.347990309,1912.57078,805.3710086135713,1957171.0222463715,806053.7717587689,0.38023,100000,0,651690,6809.646712155568,0,0.0,0,0.0,31818,331.793816156571,0,0.0,32835,339.2545532439578,1667313,0,59802,0,0,0,0,0,61,0.6374019080260395,0,0.0,0,0.0,0,0.0,0.06138,0.1614286089998159,0.3160638644509612,0.0194,0.3371623719341819,0.662837628065818,24.65291086315795,4.35139534108061,0.3217463273329195,0.2257397061866335,0.2213945789364783,0.2311193875439685,10.888366101757804,5.536215597215877,20.79241516946572,12249.86413768144,54.58327156134776,12.981586627260986,17.53282066616817,11.8718614576872,12.197002810231393,0.5574177529484792,0.763519706691109,0.7080385852090032,0.5953271028037384,0.1101163831692032,0.7216981132075472,0.9157894736842104,0.8614609571788413,0.7480916030534351,0.1373390557939914,0.4987363100252738,0.6821378340365682,0.655440414507772,0.5457920792079208,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.0043885431658322,0.0065946998904265,0.0088665447897623,0.0110333746873029,0.0131950030034921,0.0154837262876772,0.0175678572522278,0.0198517761308458,0.0220186303613471,0.024183710082526,0.0261558052126763,0.0283072238965634,0.0307313505104721,0.0327354537761357,0.0348367222469169,0.0369004836521432,0.0388343469146308,0.0408413653992118,0.0427365568987078,0.0563864229765013,0.0705336864029808,0.0836219018237528,0.0958829161537409,0.1077250999799512,0.1230897853786563,0.1351316920921048,0.1469808165482568,0.1582733044054464,0.1686832282146994,0.1826047604167789,0.1946986021028012,0.2064309031556039,0.2166573614897041,0.2259275983215674,0.2364424441291238,0.2461047368186079,0.2557380738073807,0.2646060592301667,0.2719013850542451,0.2800129598130084,0.286522898442251,0.2930022252734245,0.2988376273217495,0.3041085572671169,0.3094718678745301,0.3137846431164409,0.3182072472981564,0.3226776204112837,0.3269919279193584,0.3255923723213443,0.325127837580803,0.3244182596532869,0.3236670191346669,0.3228246787091778,0.3211069691809716,0.3198656931532017,0.3212790754936883,0.3224172337921506,0.323147999500544,0.3242899375070164,0.3255979161733365,0.3270442885561721,0.3280211294402041,0.3297582608276493,0.330513563614527,0.3330014508007851,0.3373040752351097,0.3412559507140857,0.3466629786225155,0.3486351228389445,0.3526854355548486,0.3543762575452716,0.3583555386372288,0.3628775089101482,0.3681539187913125,0.3715763846622033,0.3727822580645161,0.372704850644012,0.3758284600389863,0.0,2.5594993319462507,55.37942487857561,178.84189059362228,268.99997572103234,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95662,44565,421.66168384520495,6183,63.3689448265769,4852,50.134849783613134,1943,19.924316865631077,77.2498286400838,79.64829202827504,63.26585613190741,65.03865601282158,77.00754463343515,79.4087947456378,63.17585101100864,64.95266949106757,0.24228400664866,239.49728263723105,0.0900051208987733,85.986521754009,142.58134,100.3445484856792,149046.53885555392,104894.43570663295,367.63003,239.70027815858248,383712.72814701765,249982.0114137092,358.30174,173.7079634574743,371408.3962283875,179080.5594452135,2787.14932,1263.4384652148476,2880691.894378123,1287960.344980084,1181.10491,513.876826763555,1219133.678994794,521758.0017470616,1906.46786,795.855928770043,1956026.468190086,799284.016319067,0.38162,100000,0,648097,6774.842675252451,0,0.0,0,0.0,31599,329.69204072672534,0,0.0,32820,339.95734983588045,1666794,0,59876,0,0,0,0,0,57,0.5853944094833894,0,0.0,0,0.0,0,0.0,0.06183,0.1620198102824799,0.314248746563157,0.01943,0.326606069942998,0.673393930057002,24.739521816278856,4.389981176825475,0.3182192910140148,0.2293899422918384,0.224237427864798,0.2281533388293487,11.249940923764868,5.787315184657742,20.604048335555,12376.054054370734,54.67971766722688,13.222403408592635,17.32328357349804,12.04124261770411,12.0927880674321,0.549876339653751,0.7574123989218329,0.680699481865285,0.5827205882352942,0.1264679313459801,0.727051177904143,0.9113924050632912,0.8653846153846154,0.7695473251028807,0.1441048034934497,0.4896437448218724,0.6727019498607242,0.6237288135593221,0.5289940828402366,0.1218678815489749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0045737118054499,0.0068817815491113,0.0092562487299329,0.0114839641545707,0.0136475668628928,0.0157543745156422,0.0181344769489967,0.0202802209040703,0.0226134513165575,0.0247915234939944,0.0268515665125834,0.0289450938426078,0.030745604089794,0.0327799459001837,0.0349057286764781,0.0370965234961919,0.03933844141282,0.0411685757982458,0.0433549517235626,0.0581671142131714,0.0722573618732459,0.0854438018870895,0.0986699497022118,0.1108285228843698,0.126578259443098,0.1385850519295711,0.1497959314159056,0.1607244097857364,0.1709777214428427,0.1841103043511096,0.1961743241631334,0.2077817277703867,0.2184648122148122,0.2283008245852237,0.239051439620398,0.2487124944021495,0.2576721725787526,0.2663115239266038,0.2741594466021648,0.2817135356773646,0.2888225757184144,0.2960276790279049,0.3021481436909561,0.3070197900281669,0.312788410387104,0.3182468918749215,0.322649872897053,0.3268146261597235,0.3312983366882085,0.3300943319728626,0.3288058856819468,0.327636656630338,0.3272416093754532,0.326380916884085,0.3247349118418832,0.3230430163788866,0.3244355210321901,0.3255909558067831,0.3259069400630915,0.3274775706735381,0.3277862625701648,0.3286008316881589,0.3293885158653522,0.3299101101875121,0.3324890327971589,0.3320892333114904,0.3363028953229399,0.3387509194717853,0.3423076923076923,0.3456655785273848,0.3476906835576669,0.3499686520376175,0.3495293045854843,0.3474108062552673,0.3489276455338204,0.3558058134226145,0.35248730964467,0.3530377668308703,0.3619191537589724,0.0,2.1841637869336616,54.060622709912174,182.27231601190124,273.2263504018887,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95750,44599,422.26631853785904,6173,63.28981723237598,4855,50.16187989556136,1868,19.12271540469974,77.32698317968122,79.68540940957163,63.31555014592704,65.06068064183957,77.0942892813995,79.45707820978708,63.22853261926519,64.97842536444443,0.2326938982817239,228.33119978454877,0.0870175266618531,82.25527739513439,142.7459,100.4462453192407,149081.87989556135,104904.69485038194,368.16108,240.13909395279728,383967.33159268927,250262.9075225037,363.21319,176.15855598320906,376457.681462141,181713.1688479832,2785.22544,1271.2264159582576,2877711.2062663184,1296574.38212367,1174.15682,519.9282331582856,1207460.281984334,524226.1459584231,1838.07816,773.2572750558907,1883282.7989556133,775020.8471767812,0.38036,100000,0,648845,6776.44908616188,0,0.0,0,0.0,31696,330.4647519582245,0,0.0,33252,344.4281984334204,1670626,0,59949,0,0,0,0,0,71,0.7310704960835509,0,0.0,0,0.0,0,0.0,0.06173,0.1622936165737722,0.3026081321885631,0.01868,0.3207343412526998,0.6792656587473002,24.882333447553208,4.362741586983143,0.3229660144181256,0.2360453141091658,0.2201853759011328,0.2208032955715757,10.86991063499849,5.490661446335566,19.91596406828625,12339.931252055903,54.857979291469626,13.57170205031079,17.596497464111856,11.90069860143702,11.789081175609953,0.5645726055612771,0.787085514834206,0.6785714285714286,0.6024321796071095,0.1222014925373134,0.7289204097714737,0.9135802469135802,0.8415584415584415,0.7658730158730159,0.1674008810572687,0.5064138315672058,0.717948717948718,0.6255283178360102,0.5520195838433293,0.1100591715976331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020566334025631,0.0044513394577274,0.0067088890242169,0.0090722529258777,0.0112178998220188,0.0133190774400488,0.0155504343924623,0.0178531327195149,0.0197356990280347,0.0219447287615148,0.0242800040996207,0.0265356820234869,0.0284219398873401,0.0304069360352568,0.0325768516608211,0.0344613794885042,0.0366401623390069,0.0386913406082735,0.0405986903648269,0.0425895443085449,0.0572201110786319,0.0716639640110896,0.0849986370022437,0.0977966066059752,0.1104060378631361,0.1260837386339606,0.1377452540036059,0.148647353796033,0.1599384358867477,0.1696790812493291,0.1840845890189484,0.1967855827755756,0.2080672012883148,0.2179031322823102,0.2283660461685802,0.2390600753713145,0.2491286863270777,0.2581742411443374,0.2665144441036476,0.2743318204740292,0.281997244062576,0.289237904500896,0.2952826834182766,0.300948265514344,0.3069933217365918,0.3124498784745783,0.3171905549706723,0.3219263600458657,0.3257179902755267,0.3299050737361868,0.3291452887865443,0.3282770581838704,0.3274548194892454,0.3262060690173627,0.3257480045779515,0.3239324361607553,0.3229857932498139,0.323737937372809,0.3240006832934745,0.3247491579191245,0.3253934098010965,0.3263552878443764,0.3268839317566575,0.3278186411500369,0.3286456079619212,0.330318039624609,0.3324039036048596,0.3350808350337466,0.3366253414582895,0.3403514326420769,0.34312525499796,0.3466272251862025,0.3479212253829322,0.3511778918755663,0.3513059701492537,0.3483317669172932,0.3487101669195751,0.3478961143547412,0.3481871021311929,0.3431107680432265,0.0,2.118581806401104,55.774476802467056,181.67478169835655,269.28231060675984,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95769,44530,421.7544299303533,6120,62.92223997326901,4753,49.14951602293017,1916,19.651452975388693,77.39144353273707,79.73096832369507,63.36142006586866,65.0876024896669,77.15080004950495,79.491007421098,63.27306570508388,65.00199344558986,0.2406434832321196,239.96090259706196,0.0883543607847769,85.60904407704584,144.4663,101.67106849040452,150848.70887239085,106162.81728994196,371.49104,242.38555186556823,387430.5568607796,252621.2885856261,360.18498,174.2866639285499,373665.3301172613,179996.90351683515,2734.91104,1240.4095018677008,2830490.8268855265,1269963.372143074,1123.83537,490.3308949772977,1163337.4787248482,501845.26827814535,1881.38476,784.4554122207135,1932219.7161920872,790928.1941943116,0.38046,100000,0,656665,6856.759494199584,0,0.0,0,0.0,31959,333.20803182658267,0,0.0,32874,340.7678894005367,1666223,0,59732,0,0,0,0,0,77,0.8040180016498031,0,0.0,0,0.0,0,0.0,0.0612,0.1608579088471849,0.3130718954248366,0.01916,0.33453125,0.66546875,24.689537345345396,4.403131036130096,0.3225331369661267,0.2228066484325689,0.2228066484325689,0.2318535661687355,11.152221258947634,5.739991058126705,20.362986528531337,12255.884708567866,53.47282562514044,12.678882718753236,17.03741183601725,11.777066381592938,11.979464688777,0.5505996212918157,0.7818696883852692,0.695368558382257,0.5854579792256847,0.0934664246823956,0.7212317666126418,0.91,0.8770949720670391,0.7630522088353414,0.0969162995594713,0.4907644217107133,0.7040971168437026,0.64,0.5308641975308642,0.0925714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026425562935363,0.0049251598650141,0.0071832957935106,0.0094656767654198,0.0113776169027259,0.0136287761582932,0.0157937640105971,0.0180178341869528,0.0202065604919858,0.0224379962347548,0.024375,0.0264999179251477,0.0286063645050913,0.0304539793954488,0.0326467920171532,0.0344603179522142,0.0364202769555587,0.0383127456776294,0.0404153802975021,0.0421054824629936,0.0566480866787749,0.0710451696608874,0.0839452813562166,0.0964980544747081,0.1083321031653978,0.1239108366466458,0.1354733348179726,0.1475409836065573,0.1582392704206401,0.16878550755708,0.1821489311317302,0.1942512949725865,0.2063531738700457,0.216614779616582,0.2257185250315986,0.2376895929904526,0.2475537724283963,0.2565026954177897,0.2652855378129356,0.2730288747540383,0.2799426801645634,0.2865039206291704,0.2924796026959915,0.298766319319679,0.3041674249317561,0.310374536905978,0.3149282464123206,0.3199847347665691,0.3239279843646859,0.3278064082455747,0.3268038880897003,0.3260714285714285,0.3245869366519018,0.3235166926137346,0.3228001007870281,0.3214105870324874,0.3203983082944073,0.3205105129673566,0.3220301456186664,0.3232789338654504,0.3239315278870285,0.3252100009882399,0.3269952411899121,0.3277986914044994,0.328627280625543,0.3288183458410689,0.3305778056497819,0.3335329341317365,0.3363277672091876,0.3390646766169154,0.3398435713305585,0.3448294300074858,0.3454418663623684,0.348028728606357,0.3474624060150376,0.3499350879263543,0.3510782687377469,0.352964824120603,0.3476022758060146,0.3488990129081245,0.0,1.9029302079123127,54.32412794610991,172.3147421780064,270.17514058329647,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95738,44262,418.0680607491278,6179,63.54843426852452,4853,50.22039315632247,1847,18.97887985961687,77.37264048070351,79.73331186153007,63.34029949113111,65.08223597623889,77.14441999519191,79.50481033942634,63.25579487524875,64.9999436969567,0.2282204855115992,228.50152210372696,0.0845046158823592,82.29227928218563,143.08338,100.65541261737071,149453.0698364286,105136.32269043715,370.15005,241.79946854734763,386138.3881008586,252080.822413803,357.02763,172.7296960924803,370535.1897887986,178521.78841318088,2787.31652,1266.1952321554345,2884938.7703942005,1296456.8219419036,1178.09066,515.846235478548,1219163.6340846894,527907.8313587479,1819.64284,762.9536167115496,1870399.987465792,770863.4979827548,0.37829,100000,0,650379,6793.3213562013,0,0.0,0,0.0,31906,332.76233052706345,0,0.0,32755,339.6979255885855,1670425,0,59928,0,0,0,0,0,64,0.6684910902671876,0,0.0,0,0.0,0,0.0,0.06179,0.1633402944830685,0.2989156821492151,0.01847,0.3243744207599629,0.6756255792400371,24.95140977284868,4.425017488137153,0.3208324747578817,0.233051720585205,0.2233669894910364,0.2227488151658767,11.149441487919132,5.582659639700985,19.700925536293106,12283.848280514498,54.86066369807799,13.473057386594489,17.402125286389428,12.06586945997177,11.919611565122288,0.5674840304966,0.8134394341290893,0.6859344894026975,0.5876383763837638,0.1193339500462534,0.729903536977492,0.9577114427860696,0.8363636363636363,0.6824034334763949,0.1875,0.511499030202272,0.7338820301783264,0.636518771331058,0.5616921269095182,0.101516919486581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025924050632911,0.0047530732824582,0.006959026953549,0.0092216444588885,0.0115507020915311,0.0137528757863876,0.0160441979939655,0.0180764088065079,0.0202905069049054,0.022612345173508,0.0248221133143314,0.0268272399667354,0.0290893760539629,0.031246459798762,0.0334058950365731,0.0356563349421747,0.0376543912867924,0.0397245213350758,0.0417502468430078,0.0435366780889689,0.0583776220855564,0.0720705638621786,0.0850956749672346,0.0980954783376426,0.1098953227285664,0.1250977904641082,0.1367873999045447,0.1483527008044949,0.1593374909230703,0.1699230059836575,0.1825073765372273,0.1952681285632376,0.2075036702735033,0.2173908288585833,0.227360244688693,0.2375033235841531,0.2485071045082653,0.2562537995631909,0.2636068329471628,0.27060307268975,0.2786606326462111,0.285328153703942,0.2911025030503334,0.2976938951814167,0.3036174454222784,0.3088799279839197,0.3136837625026601,0.3189686971342805,0.3235739525492175,0.3275432279507775,0.3276866565304557,0.3263389480921279,0.3250211208110391,0.3236479750328705,0.3237038027729481,0.3215773353751914,0.3205099813344301,0.3220030199579832,0.3227071258097511,0.3239406553527591,0.3242078958655801,0.3256632643027121,0.3276034922093654,0.3283605352808889,0.3300612909404328,0.3311992949897618,0.3324936314746674,0.3343732451488114,0.3376962439516831,0.3407797102587256,0.3433112104383945,0.3465148159865022,0.3480278422273782,0.3489882210812443,0.3520223152022315,0.3574198096580895,0.3563410194174757,0.3580197222781244,0.3560109289617486,0.3565184340554922,0.0,1.732075947609817,55.13269255458765,188.7540655342994,264.05583944784075,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95742,44603,422.6671680140377,6228,63.79645296734975,4855,50.11384763217814,1918,19.66743957719705,77.33281654085012,79.69881182559214,63.319784280511655,65.071152377385,77.09495160531645,79.46234243253042,63.23230518585328,64.9866264133067,0.2378649355336648,236.469393061725,0.0874790946583772,84.52596407830981,143.12562,100.70975042595784,149490.94441311024,105188.68461694747,369.15529,240.8536825975665,384985.8787157152,250979.338078198,357.57583,173.693481891874,370140.57571389776,178821.92782705522,2820.11288,1289.3829659142746,2914555.4511081865,1315809.3298813803,1225.23761,541.7885066617689,1266023.4484343338,552215.3096128985,1897.02984,791.1365566041296,1947825.259551712,798431.6349116624,0.38307,100000,0,650571,6795.042927868647,0,0.0,0,0.0,31836,331.89195964153663,0,0.0,32860,339.77773599883017,1670495,0,59947,0,0,0,0,0,63,0.6580184245158864,0,0.0,0,0.0,0,0.0,0.06228,0.1625812514684,0.3079640333975594,0.01918,0.3338433292533659,0.666156670746634,24.79330642332073,4.538560387502605,0.3171987641606591,0.2253347064881565,0.2199794026776519,0.2374871266735324,11.45354035543372,5.736414388505323,20.513181629366272,12347.3855562631,54.82952721268165,12.979066266829683,17.17826876403442,11.862383705218802,12.809808476598738,0.5583934088568486,0.7989031078610603,0.6831168831168831,0.5945692883895131,0.1300954032957502,0.7249417249417249,0.9458128078817734,0.8567639257294429,0.6920152091254753,0.1825726141078838,0.4983183856502242,0.7122093023255814,0.6268271711092004,0.5627329192546584,0.1162280701754386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021481624091844,0.0044830768918685,0.006599654787288,0.0090566267876927,0.0111504496805436,0.0131804106910039,0.0154192883876033,0.01739663093415,0.0197541972556798,0.0219637316840908,0.0243494843035534,0.0264608939407941,0.0285532146786349,0.0304528274683061,0.0323349462975764,0.0343886632143632,0.0364436619718309,0.0382416122705243,0.0403032099073525,0.0422326860571714,0.0573969871279583,0.0720533154778096,0.0851606002453833,0.0984366622160076,0.1102221941141748,0.1256820200482172,0.1373543043196979,0.1487993869209809,0.1596206019952575,0.1703218334101901,0.1838266168538237,0.1964797645964278,0.2088593143490883,0.2189658941845212,0.2291652919828439,0.239202878494326,0.2485244731058028,0.2578822999887476,0.2664896273094557,0.2740471038138746,0.2817150792732322,0.2881657497366264,0.2950518736084134,0.3012430922669352,0.3060604587869362,0.3112673450508788,0.3154447311073817,0.3209867114709027,0.3254924831518921,0.3297967920090902,0.3295413190279144,0.3290680697501446,0.3286127371464842,0.3283078926426969,0.3272581077459126,0.3261676224355239,0.3241688587456026,0.3248694281115527,0.3261244640325253,0.3260283751226911,0.3269594531323158,0.3281256180041925,0.3286908077994429,0.3298178974416266,0.3318587262279711,0.3323946599916562,0.3323446367966232,0.3362815145887759,0.338964596796853,0.3392026710123614,0.3403005464480874,0.3442431326709526,0.3449707491979619,0.3460310218978102,0.3499812944257389,0.3561337414645632,0.3590171393902624,0.3598553345388788,0.3658002735978112,0.3651278138115223,0.0,2.284489701148033,56.30934037916922,174.86536023805624,275.2931512085576,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95776,44814,423.93710324089545,6402,65.41304710992316,5025,51.83970932175075,1999,20.47485800200468,77.34910350822409,79.67954598445408,63.34642956891118,65.06769405040912,77.10198216335999,79.43401735761317,63.2551514455578,64.97960669150693,0.2471213448640981,245.52862684090823,0.0912781233533763,88.087358902186,142.22274,100.06426383624056,148495.17624457067,104477.38873646902,371.09091,242.03334306768755,386826.9190611427,252077.5382848392,368.71534,179.3009361935854,381134.6370698296,184223.96325594225,2888.61368,1323.1817190301283,2983257.935182092,1348785.8743632312,1188.92449,524.5814697876206,1228585.8774640828,534947.0740029181,1957.21006,816.013181219075,2007802.3722018043,821218.1267494329,0.3828,100000,0,646467,6749.780738389576,0,0.0,0,0.0,31941,332.8286835950552,0,0.0,33766,348.8347811560308,1673724,0,60126,0,0,0,0,0,57,0.5846976277981958,0,0.0,0,0.0,0,0.0,0.06402,0.1672413793103448,0.3122461730709153,0.01999,0.3217365447517097,0.6782634552482902,24.658651549866835,4.41037310219709,0.3387064676616915,0.2244776119402985,0.2153233830845771,0.2214925373134328,11.260800003466771,5.833027265450412,21.258714728228234,12391.80492061364,56.90670538954682,13.347251848000155,19.41947069217435,12.022390833652569,12.11759201571975,0.5649751243781095,0.7570921985815603,0.7132784958871915,0.6016635859519408,0.1078167115902965,0.7297501892505678,0.9064039408866996,0.8666666666666667,0.7172995780590717,0.1578947368421052,0.5062095032397408,0.6731301939058172,0.65814696485623,0.5692307692307692,0.0949152542372881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594458846403,0.0046625244529135,0.0070304653498493,0.0092127047973103,0.0114796437141578,0.0134879270328596,0.015685195376995,0.017819053936827,0.0203435204201534,0.0227540131572216,0.02475130876643,0.0268545217596535,0.0291040634698785,0.0310126191407456,0.0331377785109651,0.0352524376136175,0.0371899543662496,0.0391849854832019,0.0411679135494596,0.0431939353548817,0.0579800889111514,0.0720284474193379,0.0852047556142668,0.0979108430189789,0.1104730192516411,0.1266141133207938,0.1385676887367383,0.1498580527172006,0.1613082217361148,0.1712498259220773,0.1843784638894568,0.1974698599772936,0.2086948013828191,0.2187889523059765,0.2286104051838894,0.2399056457507364,0.2505551897688848,0.259088098049137,0.2678034557480458,0.2755217694940868,0.2822191631866924,0.2893363598071793,0.2967224175277866,0.3016491286943599,0.3066877239871226,0.3120367058475277,0.3165527086933654,0.3214394865525672,0.3268684773449147,0.3311051811144284,0.329649297786883,0.3280849656996446,0.328490911652811,0.327582968517475,0.3269636228656273,0.3252440554518468,0.3233665559246955,0.3235487152561284,0.3250759722743879,0.3263851677205016,0.3277890162583352,0.3281723325479636,0.3286346569336941,0.3289697839146418,0.3299135808429488,0.3297986542036499,0.3320541825367278,0.335423197492163,0.3394586189836737,0.3435712857428514,0.3467442606424414,0.3494876174210077,0.3512204448409916,0.3539632505573922,0.3612884780329743,0.3677606177606177,0.3710858389157189,0.3722747840394899,0.3766666666666666,0.3812722244172264,0.0,2.36046271269326,57.75957835917534,187.0259977795831,281.01745786702975,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95667,44308,418.37833317653946,6228,63.65831477939101,4848,50.10087072867342,1946,19.99644600541461,77.31532774038504,79.70719917029628,63.31028192710126,65.07623778511594,77.07349857395373,79.46617326515113,63.21960253132782,64.98833236999864,0.2418291664313159,241.02590514515043,0.090679395773435,87.90541511729089,144.34398,101.41003463172883,150881.68333908243,106003.15117201212,369.86479,242.15027745046197,386047.53990404215,252548.5145875401,361.30282,175.62232281064283,374270.3544586952,180930.90291044256,2794.61404,1284.4633745954463,2889937.5960362507,1311891.3611485923,1170.01119,517.7547767334675,1211161.236371999,529507.2156576017,1912.8851,806.4662396252126,1968257.6646074404,815467.6882169772,0.3784,100000,0,656109,6858.2583335946565,0,0.0,0,0.0,31927,333.13472775356183,0,0.0,33087,342.3751136755621,1660607,0,59678,0,0,0,0,0,57,0.5958167393144972,0,0.0,0,0.0,0,0.0,0.06228,0.1645877378435518,0.3124598587026332,0.01946,0.3346540688814385,0.6653459311185614,24.920180055665146,4.498264405162205,0.3296204620462046,0.2229785478547855,0.2192656765676567,0.2281353135313531,11.246450321359314,5.728992214549555,20.74976371200425,12304.13790245716,54.89885576126303,12.848071412609942,17.979693897734304,11.867770127451202,12.20332032346758,0.5556930693069307,0.7696577243293247,0.700250312891114,0.5794920037629351,0.1148282097649186,0.7275518035303147,0.9209183673469388,0.8774038461538461,0.7309236947791165,0.1626016260162601,0.492524682651622,0.683599419448476,0.637901861252115,0.5331695331695332,0.1011627906976744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0046939313449177,0.0070328198258539,0.0094182431471359,0.0119527180989583,0.0143519225872167,0.0164823956590918,0.0184975231091364,0.0208825484481259,0.0229893296741556,0.0251984493261953,0.02720054236731,0.0296069213122511,0.031746849529619,0.0336911643270024,0.0359396007860171,0.0380156041155077,0.0399493497462297,0.0417849898580121,0.0438688832143415,0.0588339776407898,0.0734314793097671,0.086476898209375,0.0992686135227571,0.1108296657484511,0.1261658003662809,0.1378058103975535,0.1499328944845657,0.1605528121593022,0.1718008715625872,0.1842315154128045,0.1959089973903345,0.2073195954845803,0.2174493559366552,0.2271150224141159,0.2365755992590374,0.2464451270594806,0.2554668947587588,0.264091383930599,0.2711390315480557,0.2782745679469953,0.2859852476290832,0.2923989767397792,0.2977040602009097,0.3034579155271953,0.3086710476026088,0.3132990245795926,0.3180418405782347,0.3234296514939672,0.3274676241897796,0.3265704778455859,0.32584501804358,0.3252793079643274,0.3240905474795689,0.3240286572133535,0.3226275807143294,0.3210306406685236,0.3217599422969738,0.3228240274482358,0.3235225914628708,0.3242823749415615,0.3247217178495303,0.3259903584154265,0.3269007155635062,0.3282512504809542,0.3292667031620656,0.3291045202583004,0.3316897401858524,0.3361344537815126,0.340118135376756,0.3433395872420263,0.3476154992548435,0.3489078822412155,0.3526149580220288,0.3579307721567136,0.361656294877932,0.3625954198473282,0.3696,0.3692307692307692,0.3779378316906747,0.0,2.281335969507203,57.13427126665139,176.82741680980774,269.8518149848851,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95629,44334,419.8726327787596,6141,63.03527172719572,4892,50.59134781290194,1891,19.408338474730467,77.3146043072854,79.73444332803857,63.296484254502126,65.08335378123007,77.08095869161812,79.50109038792007,63.21031986163558,64.99988870993101,0.2336456156672852,233.35294011849328,0.0861643928665429,83.46507129905945,142.51886,100.25160347269248,149033.09665478044,104833.8929327845,366.12139,238.6284806450127,382295.97716173966,248975.63568061223,357.38477,173.78561754150718,369904.8614959897,178842.0077161692,2793.93652,1275.7446434200149,2889754.2795595475,1302380.3766619812,1125.79297,495.5449931064058,1159943.270346861,500918.42621780885,1862.09246,773.1011520614156,1912078.4699202124,778948.4665714918,0.38095,100000,0,647813,6774.231666126384,0,0.0,0,0.0,31555,329.3875288876805,0,0.0,32762,338.87209946773464,1673814,0,60027,0,0,0,0,0,63,0.6587959719332002,0,0.0,1,0.0104570789195746,0,0.0,0.06141,0.1612022575141094,0.307930304510666,0.01891,0.3382010253223551,0.6617989746776448,24.546919946808323,4.3342157442689775,0.3201144726083401,0.2371218315617334,0.2166802943581357,0.2260834014717906,11.146572240701657,5.712110983391295,20.08249305695867,12296.965715036817,55.27677374818818,13.869907102124213,17.74216171386274,11.593833215516552,12.07087171668467,0.553761242845462,0.7689655172413793,0.6922094508301405,0.5839622641509434,0.1030741410488245,0.7287480680061824,0.8845265588914549,0.8848167539267016,0.7692307692307693,0.1379310344827586,0.4908282379099499,0.7001375515818432,0.6300675675675675,0.5276752767527675,0.0938215102974828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024013861165432,0.0044214134325785,0.0065984488569456,0.0089417263628511,0.0111287434895833,0.0133326543084131,0.015493518017972,0.0177341914393707,0.0198218285585705,0.0217202076783647,0.023876923076923,0.0259476117103235,0.0282084254925158,0.0305709251646007,0.0327941616689203,0.0350211450373786,0.0369084748572672,0.0389762757618231,0.0411416442090586,0.0429399862325038,0.0575316978331538,0.0710357326181921,0.0845759650522955,0.097769450204739,0.1100708261645151,0.1258973761673831,0.1379698569319497,0.149414999040982,0.1604663600385067,0.1710167343343859,0.183639128887163,0.1962008170518947,0.2080637078676166,0.2185127986067755,0.2278538208909167,0.2376767205983532,0.247482818349444,0.2558833800849415,0.2645354781541817,0.2732402119314663,0.2800981663270976,0.2868139066959899,0.2926673373971711,0.2985747335866607,0.3034530487360676,0.3091184586577313,0.3138929884683693,0.3187191742512839,0.3233840500957408,0.3277542568485472,0.3276224058571774,0.326696459264352,0.3256872331731785,0.3252201830882034,0.3244843903455254,0.3236155627463309,0.3226491998794665,0.3236179912117571,0.3250810087952406,0.3243997566822915,0.3254420137848366,0.3267418477189385,0.3276891598463337,0.3286558839933073,0.3282042691681822,0.3292247138640012,0.3317281817409285,0.3360880683590095,0.3397469413364007,0.3420637425055222,0.3433928168059634,0.3466005067567567,0.3510665152088855,0.3555133079847908,0.3573373392169749,0.3545421988778799,0.3572093023255814,0.3572011423908608,0.3587912087912088,0.359472049689441,0.0,2.190086370057426,56.92887353381119,178.85819601721272,273.7468549025321,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95647,44731,422.6792267399918,6294,64.70668186142795,4931,50.98957625435194,1948,19.90653130782983,77.29129418892526,79.69130282880383,63.29829466637945,65.0698231772659,77.04602209542335,79.45007348412038,63.206995901040656,64.98334380306491,0.2452720935019101,241.2293446834468,0.0912987653387915,86.47937420099083,143.78012,101.1708863755397,150323.71114619382,105775.28451027184,369.85187,241.6535999313964,386145.0751199724,252112.361005987,363.05335,176.3006455432909,376801.6247242465,182068.49536407145,2832.89648,1296.5855354264593,2928815.7495791814,1322585.6068945797,1195.71067,530.791320727995,1230253.9337355066,535073.3747299913,1916.43796,806.3793093257049,1959951.090990831,804094.1490341538,0.38212,100000,0,653546,6832.895961190628,0,0.0,0,0.0,31882,332.7443620814035,0,0.0,33293,345.31140548056914,1662716,0,59672,0,0,0,0,0,48,0.4913902161071439,0,0.0,0,0.0,0,0.0,0.06294,0.1647126557102481,0.3095011121703209,0.01948,0.3220802919708029,0.6779197080291971,24.635350204807494,4.37895057238808,0.3157574528493206,0.2338268099776921,0.2186169134049888,0.2317988237679983,10.881280369024624,5.481587067042054,20.829601668889463,12330.617364835083,55.99081922769071,13.7028643431797,17.684622352386185,12.084151109738489,12.51918142238632,0.5477590752382884,0.7857762359063313,0.691072575465639,0.5528756957328386,0.1076115485564304,0.704422032583398,0.9102244389027432,0.8358585858585859,0.7,0.152892561983471,0.4923119165293794,0.7194148936170213,0.6416881998277347,0.5084541062801933,0.0954495005549389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026235021220992,0.004876812328906,0.0074500370471869,0.0096738136368255,0.0121173274730641,0.0142791668788511,0.0165589248934478,0.0190230155002348,0.0211536888598069,0.0232117625376282,0.0253302157683156,0.0274325739991372,0.0295458052569312,0.0317993528841992,0.0338811578643101,0.0357756034999896,0.0378787878787878,0.0400473466166896,0.0422536676724586,0.0439741451209341,0.0583864562650224,0.0730820798592198,0.0866392254866959,0.0997115910909014,0.1124643799472295,0.1267768122691334,0.1383940892974671,0.1496804431188751,0.1596869554061133,0.1698374524918941,0.1838110025662591,0.1965240931239848,0.2080090561765954,0.2174046336442867,0.2277136055021603,0.2379679440962786,0.2471618843300259,0.2560433250391254,0.26460769842171,0.2727929125646109,0.2803635521593146,0.2863929419748897,0.2930509659003423,0.2985737077600374,0.3040590675213779,0.3096025672673414,0.3149048705286641,0.3200479090746922,0.3241732589806769,0.3285091773405519,0.3276373241334699,0.3257724002976601,0.3251351084395151,0.3248498009410061,0.3239077995175556,0.3224111710217061,0.3209610105209705,0.3216179716064429,0.322409803753535,0.3235120273683079,0.3237959168327255,0.3245410340379081,0.3260074030453436,0.3287250039275535,0.3290867931798478,0.3298177831149167,0.3324988620846609,0.3351770954461171,0.3369913122999542,0.3408855618380186,0.3431073008345113,0.3464208128013564,0.3500852326535766,0.353639846743295,0.3543247344461305,0.3558650498259095,0.3576982892690513,0.3587991718426501,0.3645251396648045,0.364854517611026,0.0,2.187716447426837,56.70880560384512,190.31649176567063,268.7985875769148,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95631,44502,420.85725340109377,6280,64.39334525415399,4933,50.99810730829961,1915,19.63798349907457,77.27514686010801,79.68748435297047,63.27600815666828,65.0569793134046,77.03887115075752,79.45041327949077,63.18904317957845,64.97173522023863,0.2362757093504939,237.07107347969725,0.0869649770898348,85.2440931659686,143.48752,101.00818556208948,150042.89404063535,105622.84778167069,370.60899,241.3217953116377,386970.20840522426,251776.3960552934,364.69236,176.7419468568591,377396.6914494254,181731.4648272714,2827.13436,1293.2888629814995,2925194.2152649243,1321273.4186419672,1177.38719,515.035508217958,1215330.2485595676,522718.353063292,1878.91962,789.3726579378284,1930058.432934927,797959.4400081943,0.38114,100000,0,652216,6820.131547301608,0,0.0,0,0.0,31852,332.4863276552582,0,0.0,33487,346.1429871066913,1662687,0,59681,0,0,0,0,0,65,0.6796959145047108,0,0.0,0,0.0,0,0.0,0.0628,0.1647688513407147,0.3049363057324841,0.01915,0.3249695863746958,0.6750304136253041,24.90137836754401,4.369078049019114,0.3387391039935131,0.2296776809243867,0.2122440705453071,0.219339144536793,11.406527183989002,5.980305556806365,20.425156968054637,12361.93119272675,55.94517626319617,13.41448092075159,18.97277945533112,11.619986406148698,11.937929480964758,0.5647678897222785,0.766107678729038,0.701376421304608,0.5826170009551098,0.1256931608133087,0.7310989867498051,0.934010152284264,0.8626506024096385,0.7447698744769874,0.1446808510638297,0.5063013698630137,0.6765899864682002,0.6480891719745223,0.5346534653465347,0.1204250295159386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708360337005,0.0049157232194439,0.0070417533357008,0.0094057897409852,0.0115033716779055,0.0134124979631741,0.0156524044540522,0.0181519331094118,0.0203142731538752,0.022618365006553,0.024853066373996,0.0269462308150644,0.029250475847523,0.0315930526207287,0.0335501858736059,0.0355458081602251,0.0374700705867719,0.0394229870494033,0.0414789223388867,0.0434864222250031,0.0582351773079294,0.0721096418617322,0.0855795289817012,0.0977719252041085,0.1099808811568484,0.1258300589911142,0.1380721124725035,0.1495970664733723,0.1602615554199976,0.1708758731864589,0.1834815838334988,0.1961528452463567,0.20825068119891,0.2187119625409845,0.2285663837911208,0.2391055619119558,0.2489815560927567,0.2583637040630959,0.2675202002958917,0.2752641249425815,0.2815631959910913,0.2884784520668426,0.2945230667030451,0.3006112131801097,0.3056339398657196,0.3113625427221242,0.3160969250247577,0.320857317508023,0.3251975553738954,0.3293529575118022,0.3295643139530176,0.3287563588237727,0.3285941973793707,0.3282276027654835,0.3273911298116237,0.3258048204955334,0.3239358586738005,0.3239644727553315,0.3250588195178504,0.3255743490117098,0.3258380647216444,0.3260113780025284,0.3263018978591478,0.3266976827413438,0.3275273059712265,0.3283002138423825,0.3295982664727853,0.3335328963952609,0.3383061820484853,0.3406685236768802,0.3438125568698817,0.3465836526181354,0.348796278835879,0.351631710456576,0.3515037593984962,0.349346016646849,0.3535818377051695,0.3620829943043124,0.3606828193832599,0.3543096872616323,0.0,2.326241666598379,56.25111442322038,188.7980530586237,271.6661009033941,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95687,44428,420.59004880495786,6254,64.15709553021831,4927,50.93690887999415,1952,20.04452015425293,77.28391542799022,79.67989049154491,63.28504443165552,65.05894081841004,77.03952677768625,79.43680121325531,63.1941693431969,64.97105074167116,0.2443886503039749,243.0892782896024,0.090875088458624,87.89007673887284,143.46046,100.96343390036758,149926.80301399354,105514.26411149642,370.43274,240.8506988684443,386589.8502408896,251167.9061247468,360.41481,174.98226934622227,373100.9332511209,180186.911217936,2827.41944,1297.526441396408,2924475.5504927523,1325701.5947885977,1206.31023,533.9556130407094,1245922.1837867212,543261.8255778833,1915.62326,806.4667596535475,1968227.1572940943,813697.2940771205,0.3804,100000,0,652093,6814.854682454252,0,0.0,0,0.0,31912,332.9292380365149,0,0.0,33028,341.5615496357917,1665671,0,59824,0,0,0,0,0,61,0.6374951665325489,0,0.0,0,0.0,0,0.0,0.06254,0.1644058885383806,0.3121202430444516,0.01952,0.3284104750304507,0.6715895249695494,24.665667915365777,4.365514385326476,0.3070834179013598,0.2327988634057235,0.2338136797239699,0.2263040389689466,11.274978924198177,5.891737308378534,20.875643045799933,12368.218089514146,55.91327848285775,13.782380995130328,17.019724061822373,12.939129902030396,12.17204352387465,0.5644408362086463,0.7977332170880558,0.6853932584269663,0.59375,0.1300448430493273,0.7179681576952237,0.9135514018691588,0.8210526315789474,0.7389705882352942,0.1799163179916318,0.5083148558758315,0.7287899860917941,0.6398940864960282,0.5488636363636363,0.1164383561643835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293832715186,0.004706264199935,0.006984984314243,0.0090242985335514,0.0114974105389538,0.0136908157444381,0.0158498648579733,0.0179556318176247,0.0200664791613398,0.0222807269151181,0.0243757309641545,0.0267354403846944,0.0287404815805721,0.0306403240268373,0.0326513337187216,0.0348322508583957,0.0367449716589121,0.038938255200764,0.0406624156117046,0.0428465715447069,0.0576529333110479,0.0716431974035491,0.0856989935668034,0.0984027441654917,0.1111392538652313,0.1269091948304878,0.1394091913013931,0.1513983258429359,0.1630857704805883,0.1731673285392293,0.1863856850274873,0.1985721095510487,0.2092253413768321,0.2195354338469625,0.2297391131832159,0.23973134991119,0.2493403103895523,0.258107057112907,0.2671773946055308,0.2753307250134814,0.2822784516547997,0.2893564124214279,0.2954305445139243,0.3010135459698338,0.3067885753244539,0.3118125594084462,0.3161080891384453,0.3207181968674392,0.3251033606801716,0.3297382212776069,0.3289753888454592,0.3281516770391584,0.3275488069414317,0.3258941468769862,0.3249137212900154,0.322921458582513,0.3219651347068146,0.323265815304816,0.3243086079802972,0.3247577502055994,0.3253288237504697,0.3256450972608178,0.3251375914640575,0.3262440078320167,0.3275895497067519,0.3294459877352062,0.3308594753518111,0.3341429562803608,0.3381469379150416,0.3419050637926935,0.3441286325954268,0.3436754176610978,0.347287403792003,0.3472806490384615,0.3517055488428293,0.3493465206640763,0.3479255643685174,0.3544201135442011,0.3503344481605351,0.3438826707834813,0.0,2.158400781272624,58.0871372286879,183.77653153490584,270.8975104072934,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95651,44583,422.02381574682965,6211,63.606235167431606,4884,50.42289155366907,1948,19.95797221147714,77.35161970545354,79.75690089454645,63.31721993396855,65.09408992174845,77.11142846527483,79.51891135593505,63.22877873983455,65.00915237054727,0.2401912401787171,237.98953861140149,0.0884411941340062,84.93755120117896,144.26434,101.41721203299764,150823.66101765793,106028.3865646963,370.16067,241.80585279096607,386328.224482755,252137.57848777997,365.27988,177.72374393032706,377496.7851878182,182486.8593494182,2812.87428,1287.0638246602605,2906032.17948584,1310858.3519644134,1174.66167,518.8432191731631,1210704.132732538,525114.7539715709,1912.17138,798.6876096276437,1960990.873069806,802532.7492319982,0.37974,100000,0,655747,6855.6209553480885,0,0.0,0,0.0,31810,331.88361857168246,0,0.0,33436,345.2133276181117,1663638,0,59671,0,0,0,0,0,65,0.6795537945238419,0,0.0,0,0.0,0,0.0,0.06211,0.1635592774003265,0.3136370954757688,0.01948,0.3320604857186497,0.6679395142813502,24.81581525981494,4.445478650120335,0.3218673218673218,0.2254299754299754,0.225020475020475,0.2276822276822276,11.243111598643562,5.763618834692393,20.623158898959733,12237.00549400812,55.24930180158953,13.125410407022851,17.906702483044995,12.05707980748248,12.16010910403921,0.5657248157248157,0.8029064486830154,0.7099236641221374,0.5632393084622384,0.1294964028776978,0.7338461538461538,0.9240506329113924,0.8674418604651163,0.7563025210084033,0.1518987341772152,0.5047433035714286,0.7351274787535411,0.6506129597197898,0.5098722415795587,0.1234285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026139552790751,0.0047964305633017,0.006860576044817,0.0090323498333739,0.0113417896632047,0.013424322672642,0.0156834752460102,0.0178288795172111,0.0201942740286298,0.0222370173102529,0.0245193590085561,0.0268514997996156,0.0288866248855134,0.0311037340976102,0.0329604495264065,0.0350211057771892,0.0369902057314608,0.0391055653022454,0.0410948927891467,0.0432402560840823,0.0585678310571467,0.0728218874009234,0.0855112622541302,0.0989193682460515,0.1106537913566566,0.1264513807301093,0.1379837553750597,0.1493205435651478,0.1603453625343704,0.1703592332062503,0.1833347711685286,0.1950035750655428,0.2061810779329639,0.2158612008100268,0.2255908199898685,0.2362951055928163,0.2457684873808752,0.2546154538904899,0.2630091268219588,0.2712906661170084,0.2778716020821284,0.2849479331019249,0.2910172417870911,0.2973477818355984,0.3027096554987926,0.3078163267817804,0.3131205895210142,0.3175988011785025,0.321614078610745,0.3258994984136178,0.3250732782961787,0.3245292348263216,0.3243266052465011,0.3237441209568052,0.3234648146499272,0.3215770806579832,0.3200107423263456,0.3201389913294324,0.3204955377711038,0.3208533257228475,0.3210297534287641,0.3213199573442869,0.3228915662650602,0.3246935905163753,0.3263372511393619,0.3261886204208885,0.3276773533424283,0.3314291095137952,0.3341971633689371,0.3375168263520469,0.3386950199927299,0.3417588204318062,0.342991239048811,0.3457688808007279,0.3448792360981089,0.3481781376518219,0.3473053892215569,0.3530715005035246,0.3436314363143631,0.3473684210526316,0.0,2.3962239746364205,56.9080746094136,180.18928271041412,270.583585941909,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95789,44501,421.551535144954,6252,63.93218428003215,4937,50.94530687239662,1917,19.57427262002944,77.3507064425629,79.67851773313265,63.34838135415546,65.06977611550542,77.11093550809542,79.44207646188876,63.25902506824034,64.98419206346044,0.2397709344674723,236.44127124389055,0.089356285915116,85.58405204497888,145.22442,102.08644195891796,151608.6607021683,106574.28510467587,370.58119,241.21985022929712,386289.2190126215,251240.99868387505,358.95008,173.77097998790123,371508.5552620865,178858.23777347716,2837.68524,1293.9200442687638,2930356.2204428487,1318725.2443065103,1167.76341,517.8909480383853,1203397.8118573113,524956.1724607054,1885.62158,793.0174578577142,1928950.3387654116,795948.9927496464,0.38085,100000,0,660111,6891.302759189469,0,0.0,0,0.0,31850,331.8857071271232,0,0.0,32912,340.2791552265918,1663671,0,59714,0,0,0,0,0,69,0.7203332324170834,0,0.0,0,0.0,0,0.0,0.06252,0.1641591177628987,0.3066218809980806,0.01917,0.3310355392156863,0.6689644607843137,24.765882299016027,4.343683193688359,0.3285395989467288,0.2303018027141989,0.2136925258254,0.2274660725136722,11.331800918032226,5.931234950349004,20.540179452533515,12274.183169998349,55.73635981786061,13.405375929891362,18.08915417319081,11.972798300393576,12.269031414384846,0.5535750455742353,0.7766051011433597,0.6843403205918619,0.5848341232227489,0.1095280498664292,0.7259083728278041,0.9281767955801103,0.8543689320388349,0.7396226415094339,0.1541850220264317,0.49414328520839,0.7058064516129032,0.6264462809917355,0.5329113924050632,0.0982142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702443174911,0.0046735604217356,0.0070017352126396,0.009162197302129,0.0111436473076297,0.0134891628574628,0.0157148098324568,0.0177261177046871,0.019732875522446,0.0220016373311502,0.0240383630141197,0.0264113772086437,0.0286929891270836,0.0306452277032034,0.0328524732158508,0.0345978222690551,0.0364744471922436,0.0384818735032811,0.0402209921801169,0.0422774215041225,0.0567839143545812,0.0706907007381694,0.0841736724040336,0.0969114849882827,0.1095268205290336,0.1250251043813751,0.1371203766542246,0.1485489895603869,0.1594162672274828,0.1705108143448157,0.1828690747836569,0.1951108805602386,0.2063016079965232,0.2170816172695194,0.226888446696936,0.2374351428792689,0.2481053851640513,0.2568735182750755,0.2653012649045654,0.272904126519122,0.2808113946423002,0.2873713598187064,0.2936014192785334,0.2997880467973511,0.3055319562104037,0.311006846953352,0.3162210472369095,0.3205457504704745,0.3251139070104587,0.328680637933307,0.3278417343590295,0.3277268163877161,0.3263624841571609,0.3256990833116451,0.324736521338427,0.3227121553481386,0.3206213346013631,0.3211394154818325,0.3213815057591264,0.3226083379536065,0.3230720048141113,0.3242616451932607,0.3246682230214314,0.3248240030588605,0.3256828756720268,0.3266091051805337,0.3246377641601283,0.3272520314920795,0.3286868758160708,0.3320084264080448,0.3348581884720951,0.3372055674518201,0.3415021268490889,0.3426218151027634,0.3481467473524962,0.3514674302075877,0.3492333901192504,0.3510550268928423,0.3558178752107925,0.3513829372808726,0.0,2.3392740584073675,55.15353131162908,188.62783178966757,273.7564591808447,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95723,44456,421.1735946428758,6188,63.27632857307022,4824,49.68502867649363,1916,19.650449735173364,77.31652017658898,79.67793314036697,63.31665033110207,65.0626211130042,77.08137091020384,79.44394347422079,63.22948244117888,64.97826813328918,0.235149266385136,233.98966614618644,0.0871678899231938,84.35297971502109,142.6183,100.33015429775378,148990.6292113703,104813.00658959056,368.42498,240.82022317234023,384208.4138608276,250902.75439533443,363.26453,176.72595535081322,374115.31188951456,180615.5515137388,2764.66728,1266.2203457349533,2850534.270760423,1285170.294340031,1182.77773,523.3644269180339,1219641.6848615275,530789.6500752089,1881.69182,787.2867605859045,1932232.963864484,794349.0027501808,0.38127,100000,0,648265,6772.30132778956,0,0.0,0,0.0,31683,330.26545344379093,0,0.0,33147,340.9629869519342,1672206,0,59999,0,0,0,0,0,70,0.7312767046582326,0,0.0,0,0.0,0,0.0,0.06188,0.1622996826395992,0.3096315449256626,0.01916,0.3251995089011663,0.6748004910988337,24.822282518790185,4.431337473852451,0.3291873963515754,0.2249170812603648,0.2184908789386401,0.2274046434494195,11.263349439679308,5.731519709057621,20.324181600391107,12299.888847304364,54.49862180208337,12.862198750677184,17.988694199901577,11.607580947137508,12.040147904367096,0.5576285240464345,0.7815668202764977,0.6926952141057935,0.5683111954459203,0.1303555150410209,0.7408312958435208,0.931758530183727,0.8843373493975903,0.6990291262135923,0.1911111111111111,0.4951348345843758,0.7002840909090909,0.6248934356351236,0.5365566037735849,0.1146788990825688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0044606198234,0.0067495559502664,0.0090533139599865,0.0116170247395833,0.0136984906198439,0.0156853946335145,0.0178303360803896,0.0199693251533742,0.021991522820812,0.0240753842525659,0.0262863362392056,0.0284738860838894,0.0306546944827728,0.0322028303832982,0.0341471478607664,0.0361667770785028,0.0381715020693518,0.0402582013221903,0.0423078125162782,0.0571401724749953,0.0713538287675533,0.0852262002139306,0.0982439537329127,0.1110888499905097,0.1260325552370778,0.1386941070386675,0.1498536377667784,0.1615939319480797,0.1713065774087305,0.1843086137803249,0.1966320710814818,0.2083940573815065,0.2191726897969448,0.2285512974359539,0.2382974006539932,0.247758160519057,0.2570608754360302,0.2663057664589788,0.2734489552785923,0.2798032976569279,0.2856808664935551,0.2924173196657276,0.2990561172477482,0.3049242884573317,0.3103762996583579,0.315566073172564,0.3199276884492482,0.3241962424415066,0.3277011418388225,0.3272910915089893,0.326085758377425,0.3254563164358616,0.324419025555636,0.3236808428320585,0.3216350947158524,0.3199410422213769,0.3200230433709159,0.3211458725970599,0.3219886373819381,0.3231500977590615,0.3250064383208859,0.3249064851006598,0.325956817111724,0.3282823416044326,0.3295955355047331,0.3310978567963243,0.333982350909148,0.338180671385521,0.3420708252369433,0.3442376814231767,0.3496674647512636,0.3522884882108183,0.3552860932171277,0.3575848490530658,0.3589285714285714,0.3592575548396993,0.3567970956030658,0.3630344827586207,0.3601694915254237,0.0,2.720538494638233,53.00622345554858,184.1314685669534,270.1542184178068,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95682,44416,420.0581091532367,6156,63.18847850170356,4823,49.85263685959742,1975,20.27549591354696,77.40264542862671,79.78294893896985,63.35728834693722,65.11189657300885,77.15969003234468,79.5410990472865,63.26749332520436,65.02517399445264,0.2429553962820279,241.8498916833585,0.0897950217328542,86.72257855620558,144.24344,101.4063763653557,150752.95248845135,105982.7097733698,369.29985,241.0149547763976,385429.516523484,251355.29647833187,359.00349,174.6181720288746,372130.2961894609,180115.45236939553,2776.81624,1264.7649829248164,2870096.2772517297,1289808.1801434085,1162.34556,511.4978761129397,1191374.5323049268,511154.9676145352,1932.25456,806.1396871872053,1983424.9702138333,810100.9648373071,0.37937,100000,0,655652,6852.406931293242,0,0.0,0,0.0,31752,331.29533245542524,0,0.0,32879,340.48201333584166,1668446,0,59825,0,0,0,0,0,74,0.7733952049497292,0,0.0,2,0.0209025731067494,0,0.0,0.06156,0.1622690249624377,0.3208252111760883,0.01975,0.3321439652497673,0.6678560347502327,24.851899406565387,4.49343502372637,0.3112170848019904,0.2301472112792867,0.2293178519593613,0.2293178519593613,11.363520335908392,5.899485809558614,20.92398086103997,12286.03493229966,54.26874273779282,13.179046900197632,16.85638887731237,12.216287979017276,12.017018981265538,0.5567074434998963,0.7882882882882883,0.6775483011325782,0.5922242314647378,0.1247739602169981,0.7288961038961039,0.9454545454545454,0.8610354223433242,0.7076923076923077,0.1545454545454545,0.4976329713171818,0.7048275862068966,0.6181657848324515,0.5567375886524822,0.1173814898419864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023797227369849,0.0047432272188269,0.0069993913572732,0.0094147040004874,0.011714340915793,0.0140011811905586,0.0162304892595349,0.018105551076229,0.0203873077512646,0.0228417045314994,0.024795506262941,0.0269074408672798,0.0291689371896237,0.0313597462383752,0.0336559295103278,0.0355016743147711,0.0373791132556068,0.0394429628399763,0.0412887927448207,0.0432834109787491,0.057987213772355,0.072186214045632,0.0863040580957278,0.0993372606774668,0.1114474669591907,0.1269666606710188,0.1387650704703684,0.1494836580432236,0.1599606724161884,0.1710332993726205,0.1842147772429166,0.1966562060383075,0.2079880820338835,0.2179170402116633,0.2274347185251996,0.2376861334071408,0.2473468295728172,0.2560156372868408,0.2647931675048706,0.2721888755502201,0.2788144008498256,0.2854758709225652,0.2920982084863658,0.2978227060653188,0.3032195476868974,0.3088879590430245,0.312415620781039,0.317183749666637,0.3216090142009846,0.3255186394271272,0.3248713919222039,0.3248536046846501,0.3244350877192982,0.3243585682610073,0.3232767558280754,0.3217198716969604,0.320434390856926,0.3214303288772246,0.3223651699752918,0.323459209120057,0.323818787175938,0.3243503747270688,0.3251802158423267,0.3264601750205972,0.3274973018347523,0.3280399864629162,0.3293075455037457,0.3315145813734713,0.3353819139596137,0.3382808159377728,0.340677888782446,0.3451917435596565,0.3482075233526887,0.3499429440852035,0.3549391452023775,0.3532180256500765,0.3584905660377358,0.3606689502317147,0.3650273224043716,0.3604695191215448,0.0,2.182552717644619,53.73684314878896,183.56846590429743,266.97507095754696,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95724,44339,421.0751744599056,6253,64.06961681500982,4958,51.18883456604405,2010,20.548660732940537,77.33907921770925,79.70816546626487,63.32552877917672,65.07650320972674,77.090870124616,79.46110650547524,63.23287508781164,64.98701902557814,0.2482090930932514,247.05896078963008,0.0926536913650721,89.48418414860271,145.27348,102.10942460196854,151762.8598888471,106670.66211396156,371.33148,241.9687671182325,387340.52066357445,252199.1633427693,362.52476,175.53901212165903,375444.7160586687,180698.2791185266,2863.13936,1311.7893606297866,2958409.30174251,1337793.4209078047,1185.60772,523.6164411269739,1222185.0737537085,530641.2978796208,1972.3412,831.7514515406116,2019709.41456688,834893.4505556904,0.38014,100000,0,660334,6898.311813129413,0,0.0,0,0.0,31958,333.2393130249467,0,0.0,33199,343.4770799381555,1660436,0,59573,0,0,0,0,0,65,0.6790355605699719,0,0.0,1,0.0104467009318457,0,0.0,0.06253,0.1644920292523807,0.3214457060610907,0.0201,0.3343520782396088,0.6656479217603912,24.46932402978069,4.403161253492403,0.3200887454618797,0.2315449778136345,0.2188382412263009,0.2295280354981847,11.097267125221784,5.71668786963319,21.415994015662548,12230.153268205371,56.15437160364938,13.595683158029583,17.984324213092865,12.037515763555875,12.536848468971076,0.5586930213795885,0.7874564459930313,0.6855702583490864,0.5824884792626728,0.1282952548330404,0.7145061728395061,0.9203084832904884,0.8684863523573201,0.703125,0.1532258064516129,0.5035499726925178,0.7193675889328063,0.6233108108108109,0.5452352231604343,0.1213483146067415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0045119033134606,0.0069222415070592,0.008972118354739,0.0110678209210298,0.013249956716129,0.0154387396114821,0.0174886930953863,0.0195607272132354,0.0215080194186689,0.0235162603710502,0.0254922301079465,0.0275935124906153,0.0297435686100779,0.0316270812043889,0.0335353242885506,0.0354190407127317,0.0377235131124233,0.0396726357604875,0.0413202475464149,0.0561983125887561,0.0702095824047043,0.0831480937801451,0.0950352819930382,0.1076754339710193,0.1233815689261233,0.1352395098403267,0.1471859628202125,0.1579807866981545,0.1685282346755936,0.1816927818608961,0.1938383236775136,0.2056295425860643,0.2158021448894725,0.2256395009525068,0.2365124065902388,0.2459287389701775,0.2547706163805235,0.2637949044007448,0.2719384714135069,0.2794916019400618,0.2872752371927607,0.2940397194327147,0.3000059883825379,0.3056078055410604,0.3111956093719236,0.315712536545141,0.3203348279497504,0.3249098406214857,0.3286138026497923,0.3275611723581608,0.3267599048365581,0.3264702151946899,0.3257442069025371,0.324165204721834,0.322858412367659,0.3201488401551737,0.3201623904932529,0.3210872469427602,0.3213307310784437,0.3228695341982239,0.3237750336420486,0.3256871124518183,0.3269502116508768,0.328478731074261,0.3285528370640291,0.3283978089695309,0.3314668596055239,0.3360736368746487,0.3374208703268702,0.3391558827564132,0.3420447864892309,0.3439603708878445,0.3462484624846248,0.3517559551831277,0.3529341745030354,0.3568773234200743,0.3578581647251175,0.3559463986599665,0.3602005399151562,0.0,2.3655985428376347,56.7494164140338,186.9752491533633,274.8147042296131,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95702,44390,420.7122108210905,6247,64.35602181772586,4898,50.75129046414913,1917,19.75925268019477,77.30793472821749,79.68266243354077,63.31631099018998,65.06951354480526,77.07697560536556,79.45010261943247,63.23255284337974,64.98698284727342,0.2309591228519281,232.5598141082992,0.0837581468102399,82.53069753183695,143.73304,101.09396929025542,150188.12564000752,105634.12393707072,367.39935,239.43917447552155,383460.1262251572,249753.3429663973,358.38122,173.6954692157529,371728.1770495914,179451.9131706436,2810.30332,1272.7083338350556,2913340.870619214,1306702.1862729967,1184.28551,517.8581904153081,1225340.107834737,528983.3759120054,1878.37006,769.787634814743,1937110.802282084,782435.5210229969,0.38076,100000,0,653332,6826.732983636705,0,0.0,0,0.0,31628,330.0140017972456,0,0.0,32812,340.0764874297298,1668727,0,59922,0,0,0,0,0,75,0.7836826816576457,0,0.0,1,0.0104491024221019,0,0.0,0.06247,0.1640666036348355,0.3068672963022251,0.01917,0.3250991155840195,0.6749008844159805,24.862495159546448,4.395476507541554,0.324009799918334,0.2354022049816251,0.2166190281747652,0.2239689669252756,11.300706986426578,5.740168917048381,20.23097752138584,12278.5560524434,55.32494400789507,13.802545884144692,17.764302653424192,11.716174024403102,12.041921445923084,0.5634953042057983,0.7502168256721596,0.7095148078134845,0.6022620169651273,0.1185050136736554,0.7545098039215686,0.9132530120481928,0.8933002481389578,0.7842323651452282,0.1574074074074074,0.4962738062379244,0.6585365853658537,0.6469594594594594,0.5487804878048781,0.1089670828603859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0044890762433626,0.0066038405745645,0.0086840822296254,0.0108107558376047,0.0130951896053113,0.0152338611822047,0.017590607452782,0.0195873970025966,0.0216191870284877,0.0235371304383483,0.0258626885286296,0.0277366407503393,0.0297723292469352,0.0316588929706525,0.0339081172724641,0.0362227241643699,0.0383708979163854,0.0404855772731528,0.0423329511101845,0.057019605385475,0.0708357318541001,0.0840764598501856,0.0970510285642169,0.1091831033428562,0.1244607055240673,0.1362908273133267,0.1481118821576056,0.1591018341469667,0.1692104726867096,0.1817653202967685,0.1948599798812343,0.2066356481280166,0.2175956797883621,0.227158239751867,0.2371116894623179,0.2461986412164348,0.2563635341094427,0.2650845688745703,0.2725919479686712,0.2796032453328086,0.2865796613340817,0.2928465771256138,0.2991905018888289,0.3047512495287665,0.3103133481371823,0.31598471082148,0.3212510514644031,0.3252977657835327,0.3298129667569889,0.3291714420548776,0.327992277992278,0.3268544004516903,0.3263491695747238,0.3263203347180655,0.324566380910025,0.3228360197994669,0.323279909074437,0.3243085680972548,0.3250805585392051,0.3260171004416048,0.32588480222068,0.3268742258518254,0.3279400246167617,0.3303212125593388,0.3308889005290451,0.3317503003948046,0.3330281312158621,0.3360545660163981,0.3396354083744626,0.3426451731086279,0.3455650968051629,0.3459055815719529,0.3508865790278202,0.351953198716739,0.3564215278602827,0.3554746739460115,0.3547480425617346,0.3474254742547426,0.3462697814619442,0.0,1.569377732863765,56.74772278987057,182.40610046221724,273.21422570462573,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95710,44575,422.8502768780692,6271,64.35064256608506,4936,51.029150558980255,2011,20.666597011806505,77.38171245272493,79.75569994054142,63.34258245905804,65.09500689936712,77.13723592828936,79.51164283746824,63.25278826786507,65.00795969059224,0.2444765244355693,244.05710307317463,0.089794191192972,87.0472087748766,143.01408,100.6523114627509,149424.38616654478,105163.8402076595,370.925,242.49574782283756,386982.6872845053,252796.8632565432,366.31686,178.25314020916005,379470.87033747777,183709.09566692627,2845.67092,1300.9091765131532,2943857.4443631805,1329905.1473337722,1190.43793,520.7450624402616,1230105.2345627416,530394.7888833579,1970.8413,813.0375560485267,2027780.963326716,822110.1939096844,0.37999,100000,0,650064,6792.0175530247625,0,0.0,0,0.0,31845,332.11785602340404,0,0.0,33599,347.7901995611744,1670625,0,59883,0,0,0,0,0,71,0.7418242607877965,0,0.0,0,0.0,0,0.0,0.06271,0.1650306587015448,0.3206825067772285,0.02011,0.3341470857491608,0.6658529142508391,24.29169184508253,4.461901810914833,0.3247568881685575,0.2222447325769854,0.2214343598055105,0.2315640194489465,11.694072724946365,6.111071929649718,21.20115511105164,12265.41204376584,55.68672524947322,12.998040400316768,17.99692531142088,12.27822803363786,12.41353150409773,0.5544975688816856,0.7711941659070192,0.6887086712414223,0.5919487648673376,0.1224846894138232,0.746996996996997,0.9257425742574258,0.8881278538812786,0.7509433962264151,0.1466666666666666,0.4833518312985571,0.6810966810966811,0.6137339055793991,0.5410628019323671,0.116557734204793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0044197102859633,0.0065754759102163,0.0086646486398634,0.0109648676688976,0.0129429735234215,0.0155595207749171,0.017599738658173,0.019831736912587,0.0218548469648889,0.0241944578288549,0.026242030369298,0.0280948561321239,0.0301301002276496,0.0322900219807436,0.0343355182895308,0.0362169495738268,0.0382587942305696,0.0402591729761211,0.0420609445996081,0.0564084889501608,0.070783211365516,0.0841500010492518,0.0967640127924591,0.108428270042194,0.123984771573604,0.1364668435013262,0.1475645461804631,0.1589765503979488,0.1695807946451557,0.1827144796672629,0.1944597798200889,0.2063032886723508,0.2169407031659961,0.2274177226328757,0.2379334012310144,0.2476582363174093,0.2566063195771955,0.2644256940664126,0.2722693500933017,0.2790361390032854,0.2865475202506048,0.2927819192994912,0.2988726083362287,0.3041524466521734,0.3097984129331164,0.3149910581408436,0.3199038265825361,0.3236607431759056,0.3273158831674029,0.3264647334158282,0.3255024797702949,0.3240752465774626,0.3245951752678404,0.3239010948310345,0.3229933135895948,0.3217150979153506,0.3230081979284276,0.3238782351239599,0.3248905343348403,0.3254679056896584,0.3256970342745516,0.3275815302439126,0.3281016609073682,0.3287753388509056,0.3303930470878194,0.3314888907806248,0.3338856928464232,0.3372316285564671,0.3409828282028962,0.3437144805637644,0.3513527879657683,0.35283676703645,0.35715381076522,0.361927255550307,0.368213816966949,0.3698461538461538,0.3677130044843049,0.3690211345939933,0.3673548889754577,0.0,2.071430569921128,58.58146958944418,180.3667820275628,270.6744855862473,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95857,44348,420.01105813868577,6184,63.28176346015419,4877,50.29366660755083,1989,20.40539553710214,77.44506122741345,79.72348847485341,63.40474875222951,65.08424642520059,77.19304818925552,79.4709273118392,63.31145391806293,64.99274739339482,0.2520130381579264,252.5611630142066,0.0932948341665778,91.49903180576756,143.03872,100.68133628367376,149220.94369738255,105032.84714071352,367.08532,239.1523484060452,382374.0884859739,248911.88825100972,358.46901,173.99061870828447,369865.2889199537,178319.1217674738,2794.58904,1288.8985415608909,2884802.7791397604,1314042.0447965956,1152.95798,513.9493130969629,1184828.5779859582,518217.8730227071,1940.9329,819.0639525286256,1993356.6667014407,828945.1666490277,0.37941,100000,0,650176,6782.770168062843,0,0.0,0,0.0,31589,328.92746486954525,0,0.0,32923,339.38053558947183,1676076,0,60200,0,0,0,0,0,60,0.625932378438716,0,0.0,1,0.0104322063073119,0,0.0,0.06184,0.1629899053794048,0.3216364812419146,0.01989,0.339561457689932,0.6604385423100679,24.59714523177979,4.411760551187432,0.3229444330531064,0.2337502563051056,0.2212425671519376,0.2220627434898503,11.096577333206923,5.716329565954278,21.17040348193865,12231.477144123866,55.35582330213074,13.639575091194278,17.766248971426723,12.026236853285909,11.923762386223824,0.5532089399220832,0.7763157894736842,0.6825396825396826,0.5736793327154773,0.1098799630655586,0.7127659574468085,0.9164619164619164,0.8823529411764706,0.7148148148148148,0.1088709677419354,0.4942431901151362,0.6984993178717599,0.6165540540540541,0.5265760197775031,0.1101796407185628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0044773549164801,0.0068036867667785,0.0087389874548333,0.0107403418212855,0.0130937725732773,0.0151450338140633,0.0172535103551653,0.0191975819215962,0.0213701431492842,0.0234484594669315,0.0256804709453777,0.0277920423967298,0.0297781297894444,0.0318562553445771,0.0338353237476904,0.0359059743321923,0.0379458272024537,0.0400095508009177,0.0418786611314001,0.0575447303666013,0.0717568894553204,0.0855267290658961,0.0982980420138087,0.1103174018705353,0.1261662515303753,0.1383932825785411,0.1499134093347924,0.1610952944563513,0.1711919005982512,0.1832036455870341,0.1958768453223037,0.2068875667694445,0.2175755061038195,0.227026551977941,0.2372026114861126,0.2463546776063497,0.2554112067609179,0.2639915642432763,0.2711137050260917,0.2782012283278779,0.2852931887567112,0.2923096951334974,0.2978252017915738,0.302746278804361,0.3080220226878025,0.313259952164494,0.3181563605814516,0.3222207825861622,0.3260921208921737,0.3261396375777484,0.3250752711824793,0.3244676362204281,0.3237443251423218,0.3236492392479889,0.3215337432673675,0.3209493022155641,0.3219557647981952,0.3217975997957273,0.322190826535871,0.3236403705363813,0.3251070209701919,0.3258586788269255,0.3270586136140601,0.3272744712483814,0.3276018804706371,0.3277094084954347,0.3295013156246084,0.331297550080268,0.3350889003286738,0.3364353815975549,0.3360183505814574,0.3366811951234918,0.3366214549938348,0.3405045216563541,0.3379451395572666,0.3381529850746269,0.3308946488294314,0.3304225352112676,0.3380782918149466,0.0,2.2323865209970406,57.63588375957681,182.6629952049856,266.1555435456879,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95691,44572,422.0564107387319,6376,65.38754950831321,4986,51.593148780972086,1988,20.461694412222677,77.29747507811412,79.70012427769495,63.28577397120039,65.06558336071852,77.05357917488615,79.45623066282295,63.19499180641871,64.97722371494797,0.2438959032279655,243.89361487200745,0.0907821647816859,88.35964577055222,143.64768,101.14518064728423,150116.18647521708,105699.78435514754,369.5728,240.5365554363688,385694.088263264,250847.8592432293,363.44042,176.4855447208203,376476.2934863258,181936.85562507357,2866.90276,1311.0194632077282,2967808.216028676,1341912.397546947,1195.74423,525.1429447961932,1236073.5492366052,535325.3230561077,1952.5404,819.0540691780768,2010821.6446687777,829207.0459506086,0.38066,100000,0,652944,6823.463021600777,0,0.0,0,0.0,31786,331.619483545997,0,0.0,33304,344.7764157548777,1664322,0,59732,0,0,0,0,0,57,0.585217000553866,0,0.0,0,0.0,0,0.0,0.06376,0.1674985551410707,0.3117942283563362,0.01988,0.3357249626307922,0.6642750373692078,24.641191551357903,4.386235160299695,0.3142799839550742,0.2296430004011231,0.2286401925391095,0.2274368231046931,11.019454616217402,5.647552039433091,21.17098279098505,12335.942996926437,56.50651426620551,13.579854297861251,17.700032838402418,12.752773202792158,12.473853927149676,0.5621740874448455,0.7834061135371179,0.6847479259731972,0.5973684210526315,0.1340388007054673,0.7294469357249627,0.9084158415841584,0.8616504854368932,0.7667844522968198,0.1548117154811715,0.5008223684210527,0.7152496626180836,0.6216450216450217,0.5414235705950992,0.1284916201117318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002726093477644,0.0048384151907978,0.0071983349408599,0.0094502591200081,0.0114949544270833,0.0137912770681822,0.0158500265187058,0.0178204879443633,0.0199026345933562,0.0222324628776241,0.0244327739711976,0.0265253079380733,0.0286313926811452,0.0305737603561271,0.0328019493257893,0.0348066241194906,0.0368566157417964,0.0389375752793122,0.0408972211529458,0.0427813617083363,0.0578606497440718,0.0721576098903974,0.0851137508394895,0.0980823243533235,0.1095253164556962,0.1251983665178477,0.1378578327831615,0.1497491932649605,0.1612454823463997,0.1716696727647513,0.1839298616428163,0.1960544143948837,0.2076789020803834,0.2184158632778264,0.2282186948853615,0.2396277067802626,0.2489550036882222,0.256578354510228,0.2654146358089914,0.2737464749982805,0.2814371951290161,0.2882831170048264,0.2957060593852935,0.3014203556291947,0.3073103649706101,0.3118943275106475,0.3159102306920762,0.319941330272304,0.3249178582096336,0.329297019744852,0.3282281917264292,0.3270460225625164,0.3263020980602839,0.3257277049750667,0.3243295532339197,0.3230880076035136,0.3220878320615521,0.3231584299703118,0.3243528790279978,0.3249465431218817,0.325132171346373,0.3264192569830201,0.3266005938192615,0.3262193082223857,0.327870425914817,0.3294328730790233,0.3318927525518182,0.3352568525371636,0.3365462128912411,0.3389615537059057,0.3427050634639006,0.3446450314998147,0.3475150602409638,0.3504124725648982,0.3538447129343448,0.3578587430727508,0.3601714373182305,0.3588235294117647,0.3543328748280605,0.3561802079322295,0.0,1.9456961779112747,59.294633932211205,184.46971858399013,274.03242608028927,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95819,44423,419.09224684039697,6181,63.11900562518916,4840,49.8335403208132,1925,19.59945313559941,77.32864418348662,79.64007047927804,63.32870225298407,65.03857086789901,77.09512809714535,79.4121237256282,63.24179925050592,64.9572114677388,0.2335160863412682,227.94675364983163,0.0869030024781452,81.35940016020982,142.76064,100.50036153544268,148989.44885669858,104885.21690162129,367.61828,239.83922744965196,382980.9014913535,249627.38452626797,358.87283,174.235223200758,370642.65959778335,178753.62051121675,2785.99832,1273.2526483408851,2870136.3612644672,1291687.1677829027,1147.95682,504.94867143791305,1181777.50759244,510788.8061460835,1884.35352,784.1734396271733,1921975.9337918367,780058.114969134,0.38012,100000,0,648912,6772.24767530448,0,0.0,0,0.0,31696,330.07023659190764,0,0.0,32874,339.2020371742556,1670691,0,59986,0,0,0,0,0,59,0.6157442678383201,0,0.0,0,0.0,0,0.0,0.06181,0.1626065453014837,0.3114382785956965,0.01925,0.3285582255083179,0.6714417744916821,24.91732482932258,4.384981045322835,0.3258264462809917,0.2332644628099173,0.2142561983471074,0.2266528925619834,11.40588232398834,5.906434649456505,20.38445471257792,12354.569164737635,54.83261581296426,13.513046977105924,17.697657356802473,11.578250722655238,12.04366075640062,0.5607438016528926,0.7989371124889283,0.6949904882688649,0.5718418514946962,0.1121239744758432,0.7427677873338546,0.9334975369458128,0.8822115384615384,0.7241379310344828,0.16,0.4953664700926706,0.7233748271092669,0.627906976744186,0.5279503105590062,0.0997706422018348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0047743583505656,0.0068584183026429,0.0091926702421582,0.0112263575350823,0.0133475870494807,0.0157272449291611,0.01769622500944,0.0200196210681218,0.022409823484267,0.0245909198028627,0.0265283293823055,0.0288471420056317,0.0311303273625694,0.0332250580046403,0.0354025268334004,0.037699726798576,0.0397938764295416,0.0420254479356011,0.0437362088346725,0.0582044247879919,0.0721022145082704,0.0860236468072617,0.0987935854053258,0.1118525077477705,0.1264126010888524,0.1386547047158506,0.1497861110519931,0.1613819618732311,0.1716093063149994,0.1832857681331107,0.1956027785592175,0.2070664230719039,0.2183865325754263,0.2284595156623059,0.2393934023085273,0.2490592583494311,0.2584193755418689,0.2664471069218102,0.2742910220978636,0.2817959448650027,0.2880223233128546,0.2942286467048812,0.3000384310522903,0.3047525186158563,0.3093710676305855,0.3140601503759399,0.3188780711591396,0.3234176147788747,0.3272424370636767,0.3278323828014399,0.326848570916461,0.3266309646606661,0.3263041870313701,0.3267732371914247,0.3250303300213462,0.3235938293550025,0.3242092457420925,0.3256989632969548,0.3261768901569187,0.3275571375046834,0.3290969106398118,0.3301322286383797,0.3305427187283727,0.3317715466493668,0.3331070673315406,0.3338930950076849,0.3365248783550463,0.3415409332215702,0.3462601690229839,0.3480946541308988,0.3503106909554411,0.3523401034439258,0.3580445260500344,0.3566638330027392,0.3536526946107784,0.355599816148307,0.3542938542938543,0.3514552443712246,0.3577235772357723,0.0,2.566592916427835,55.83819798418796,183.3044311581863,264.1931692254104,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95733,44810,423.3127552672537,6212,63.4264046880386,4867,50.11855890863129,1905,19.387254133893222,77.35098256499538,79.69980016583939,63.33757887846742,65.07110165846099,77.11636008283274,79.4694046659726,63.25061097161132,64.98892249987513,0.234622482162635,230.39549986678765,0.0869679068561026,82.17915858585911,143.34056,100.84458308286912,149729.5185568195,105339.41596196622,369.64222,241.22026107758936,385385.2381101606,251240.63735583745,361.99965,175.75476317898668,374163.391933816,180439.40220189453,2787.95776,1279.5032095501906,2870232.250112292,1294591.5363195848,1156.69647,517.3306974960813,1184140.6933868155,516361.7476350337,1864.95716,780.3170487031362,1899169.732485141,773351.4948949636,0.38207,100000,0,651548,6805.887207128159,0,0.0,0,0.0,31817,331.59934400885794,0,0.0,33079,341.52277688989165,1669139,0,59878,0,0,0,0,0,69,0.7207545987277114,0,0.0,0,0.0,0,0.0,0.06212,0.1625880074331928,0.3066645202833226,0.01905,0.33501221001221,0.66498778998779,24.62315518629068,4.411504674073654,0.3355249640435586,0.2249845900965687,0.2227244709266488,0.2167659749332237,11.303474838793884,5.798716384368347,20.173955134861604,12403.085027057992,55.11577883931905,13.046163923709852,18.42399966295683,12.060928247250464,11.5846870054019,0.5637970002054654,0.771689497716895,0.6864666258420086,0.6014760147601476,0.119431279620853,0.7225656877897991,0.9018567639257294,0.8466981132075472,0.7348484848484849,0.1834061135371179,0.5062972292191436,0.7033426183844012,0.630272952853598,0.5585365853658537,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290431683088,0.0043684941364875,0.0067882256247907,0.0092223937596489,0.0114691258858577,0.0137125754598853,0.0163606894934812,0.0185542390006429,0.020779034945165,0.0228024030539663,0.0251760581427531,0.0273047352159229,0.0294045073202829,0.0315524982493718,0.0336517630552747,0.0360206718346253,0.038136163603417,0.0401274281919309,0.0420968362392522,0.043859649122807,0.058616585936195,0.0730523386582138,0.086482405737533,0.0995331917488487,0.1118221303871131,0.1273653720109097,0.1386405336896921,0.1501000383125452,0.1611917657490198,0.1719014824826757,0.185050735721826,0.1969846200469732,0.2086170513629343,0.2189992669022791,0.2290554448688454,0.239457380664753,0.249274099883856,0.2581813681925054,0.2672317922879644,0.2752541751200669,0.2817328503142324,0.2885247820235239,0.2948366028538299,0.3003725309344417,0.3066614876675083,0.3123807413425908,0.3165330899361082,0.3210104117669493,0.3262783171521035,0.3311072984030619,0.3310245388025711,0.3301964782716525,0.3299201715043299,0.3286768963520556,0.3272521819290185,0.3251597676663959,0.3237628939487569,0.3240781838207492,0.3245270766759514,0.3250133809099019,0.3269994009285607,0.3283602707556292,0.3289228514602743,0.3301235505708349,0.3318935521800686,0.3325079497471719,0.3313035312864582,0.3345907204828366,0.3395374873176363,0.341428628025831,0.3442608022583436,0.3466836870379235,0.3469850671035221,0.3486461819288105,0.3549356626279703,0.356735566642908,0.3590541381456129,0.3617803184973459,0.3537604456824512,0.3560899922420481,0.0,2.720891692429087,56.30509496153756,182.1610604082715,267.031636679566,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95850,44192,416.5049556598853,6310,64.68440271257172,4966,51.29890453834116,1950,19.96870109546166,77.51248185563044,79.79711624969012,63.42745123530996,65.11020637431876,77.27608265190479,79.5632453412232,63.34015707842759,65.02664185091025,0.2363992037256537,233.87090846692612,0.0872941568823719,83.56452340851206,145.343,102.2006115473237,151635.8894105373,106625.57281932572,372.5726,242.86720373894815,388217.6943140323,252896.4671246199,359.14542,173.96498133224364,372031.0276473656,179408.67353429517,2850.66984,1299.612417295546,2946100.0312989047,1327886.7577418317,1183.4413,519.1515503973857,1219707.44913928,526656.0671855875,1913.02518,791.091673991826,1960879.5826812729,795161.6305919793,0.37937,100000,0,660650,6892.540427751696,0,0.0,0,0.0,32102,334.39749608763697,0,0.0,32980,341.3458528951487,1666298,0,59714,0,0,0,0,0,71,0.7407407407407408,0,0.0,1,0.010432968179447,0,0.0,0.0631,0.1663283865355721,0.3090332805071315,0.0195,0.3254866455409688,0.6745133544590313,24.74447039450503,4.345381861861092,0.3318566250503423,0.2323801852597664,0.2176802255336286,0.2180829641562625,11.456215802317503,5.98896342826523,20.52281617630132,12239.919851885295,55.8806073111736,13.57881550639492,18.48971542725479,12.144087959599618,11.66798841792428,0.5662505034232783,0.7824956672443674,0.7069174757281553,0.5864939870490287,0.1015697137580794,0.7219662058371735,0.900497512437811,0.8478802992518704,0.7279151943462897,0.1481481481481481,0.5109170305676856,0.7194148936170213,0.6615878107457899,0.5363408521303258,0.0899653979238754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021957784388723,0.0045269948653548,0.0067403886112772,0.0091424744548507,0.0111339117007659,0.0134648632157022,0.0157703976705829,0.0182941752325012,0.0204425474559137,0.0224974179099898,0.0248632928502672,0.0270541904254009,0.02917120486632,0.0312564324235313,0.0332274892265819,0.0354383572963146,0.0376042550549473,0.0395529428840989,0.0419060282767002,0.0435796531117912,0.0583806107124979,0.0723434510304158,0.0858585858585858,0.0992427345579817,0.1110455933452669,0.1258502682834086,0.137903259994065,0.1488511063617127,0.159730669910579,0.1698880976602238,0.1822082195316028,0.1942218382114699,0.205844994734728,0.2161208957994387,0.2256700351493848,0.235888590351721,0.2457838572415175,0.2539251139911502,0.2630500260434359,0.2703505644682115,0.277468313554533,0.2840751569652987,0.2898082411491379,0.2954032460320304,0.301720068270127,0.307567587486028,0.3125038961686636,0.3169295078852365,0.3210643701574123,0.3254745464569823,0.3250810926735115,0.3238576455928467,0.3235269395645961,0.322852540130027,0.3225319825482511,0.3218197906813536,0.3203063319122059,0.3206815280369243,0.3217483064982809,0.3222918372432451,0.3237063328974406,0.3252122190928249,0.3262821583695289,0.3272124287749288,0.3281783250996396,0.3282926198785059,0.3301393482009101,0.3324830461021589,0.3365264473136193,0.3400570736093194,0.3426244910742249,0.346765365167075,0.3497985745274248,0.3548459804658151,0.3571957769957399,0.3579413134606428,0.3636636636636636,0.3629731861198738,0.3621154883971937,0.3657806065144141,0.0,1.9797417898492995,57.35245597526851,184.1492695628966,274.0392621146089,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95721,44434,419.4168468779056,6285,64.22833025145997,4940,50.84568694434868,2029,20.72690423209118,77.31288813594676,79.67041022635809,63.318020272784125,65.06167609976751,77.05629966317764,79.41816866237394,63.22139179875183,64.96949086100663,0.2565884727691241,252.24156398414263,0.0966284740322933,92.1852387608766,143.98296,101.32129123910885,150419.40639984954,105850.64013028367,369.61813,240.779870624047,385391.0427178989,250793.5657738388,360.45262,175.50534865005218,371419.4272939063,179386.8247070907,2840.65152,1302.3645930914186,2925481.639347688,1318441.2924957816,1198.94004,533.306927330319,1231881.1023704307,536566.7357677798,1995.84426,844.440140054756,2040690.6530437416,844327.6593951547,0.37986,100000,0,654468,6837.245745447707,0,0.0,0,0.0,31819,331.6200206851161,0,0.0,33062,340.30150123797284,1664954,0,59788,0,0,0,0,0,70,0.7312919839951526,0,0.0,2,0.0208940566855757,0,0.0,0.06285,0.1654556942031274,0.3228321400159109,0.02029,0.3289852874260579,0.6710147125739421,24.74799720703444,4.461459799747298,0.3139676113360324,0.2248987854251012,0.2253036437246963,0.23582995951417,11.202182236316638,5.679055885260676,21.666671282585984,12263.898723142687,55.67636643643154,13.239863488957848,17.43951740031503,12.196134853089394,12.80085069406926,0.5518218623481781,0.774977497749775,0.7079303675048356,0.5723270440251572,0.111587982832618,0.7181467181467182,0.9270833333333334,0.8883495145631068,0.6944444444444444,0.1336032388663967,0.4927297668038409,0.6946354883081155,0.6426690079016681,0.5365853658536586,0.1056644880174292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129757540156,0.0049970099027965,0.0073661461662557,0.0095376427091374,0.0116150161206659,0.0135539714867617,0.0158968084021617,0.0181927698543149,0.0204980882082319,0.022424509271869,0.0245152823204929,0.026862453149869,0.0290233667928254,0.0311991430278309,0.0334265286962622,0.0356352963062485,0.037866550695825,0.0400095458460006,0.0419907657751341,0.0438338751354505,0.0580282101878243,0.0723231942744137,0.0859297167486393,0.0975963661598637,0.1100086463232037,0.1252935327593137,0.1376693939490412,0.149484755578266,0.1597974488814819,0.1699645013566702,0.1829273545691456,0.1948966457181797,0.2062376980545255,0.2162431217249565,0.226206198274344,0.2359393697646589,0.245615210280113,0.2539955879704664,0.2623286037238574,0.2704899241156376,0.2782822199573798,0.2852078067958438,0.2919083355034208,0.2973400810687645,0.3023767552124491,0.3078469336161502,0.3134562131141378,0.3181835547009309,0.3237276710481968,0.3271631055637825,0.3263956376201274,0.3264169412543256,0.3262168001016647,0.3249427586007014,0.3248956469886702,0.3228419062840984,0.3217851691681506,0.322797013793899,0.3229054111997256,0.3232091279309664,0.3248438793168309,0.3247730838745556,0.3265280376779294,0.3273546622424501,0.3274584128057172,0.3285003925673907,0.3289526427303441,0.3329956951126867,0.3349223163841808,0.3379335173406936,0.3395578745022655,0.3413078149920255,0.3406738189346885,0.3404255319148936,0.3413851670126439,0.3440503025269901,0.3484030242246567,0.348582995951417,0.3527615875659173,0.3600455753892898,0.0,2.9291565167727667,55.89539105324948,178.34110208619484,281.26465622928924,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95783,44861,423.81215873380455,6225,63.72738377373855,4934,50.93805790171533,1980,20.34807846903939,77.37208356525132,79.70925677567148,63.35007434272507,65.07865540259417,77.13479666559175,79.47119358158916,63.26356001462414,64.99383598712862,0.2372868996595656,238.06319408231505,0.0865143281009324,84.81941546554594,143.0044,100.65544493835922,149300.3977741353,105086.96213144214,372.51263,243.4372561157897,388353.9458985415,253595.8219264271,365.47244,177.4171944919906,377487.93627261627,182174.17006817783,2833.85924,1296.949651000968,2929295.553490703,1324721.058017569,1217.73252,531.7547020132978,1258373.6049194534,542199.358062498,1937.17398,796.9635111939974,1992960.6506373785,807990.7155201123,0.3851,100000,0,650020,6786.381717006149,0,0.0,0,0.0,32055,334.07807230928245,0,0.0,33502,345.6041259931303,1670539,0,59985,0,0,0,0,0,67,0.6994978232045352,0,0.0,0,0.0,0,0.0,0.06225,0.1616463256297065,0.3180722891566265,0.0198,0.3324137931034482,0.6675862068965517,24.521520046589263,4.370860895330069,0.3177948925820835,0.2312525334414268,0.2276043777867855,0.223348196189704,11.36587119030584,5.966505798053884,20.87287809902864,12432.666651793375,55.87607161482808,13.6968137901281,17.718150627122945,12.41157287524345,12.0495343223336,0.5638427239562221,0.7922874671340929,0.7193877551020408,0.5592163846838825,0.1107078039927404,0.747135217723453,0.9241071428571428,0.902439024390244,0.7161572052401747,0.1351351351351351,0.4976551724137931,0.7070707070707071,0.6545768566493955,0.5190156599552572,0.1045454545454545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0042678723490531,0.0066266160621866,0.0089698398025213,0.0108817248042306,0.0131230656458706,0.0154623938680447,0.017654142090332,0.0200907455853499,0.0223723262716201,0.0243387544706449,0.0265704697297796,0.02882253173665,0.0309514003294892,0.0332773039918327,0.0351810714470217,0.0373559946589932,0.0393964533858757,0.0415506421179502,0.043580560529713,0.0579672336429093,0.0727291742927365,0.0857373474778816,0.0987590757688791,0.1113054288393261,0.1279502186912333,0.1402456471286415,0.1516746411483253,0.1628150139769114,0.1737365297684084,0.1860337539126786,0.1987376248324759,0.209635883560974,0.2201138934735323,0.229831082567193,0.2409283681582123,0.2507221968167571,0.2601330845491536,0.2683758940007027,0.2767138654548368,0.2848917203343777,0.2913028741073202,0.2967664161111899,0.3024274633725941,0.3078061682560481,0.313039303782666,0.3176477948076321,0.3213160168759213,0.3272988245638989,0.3313474541644149,0.3308558679640879,0.3299833875640128,0.329745872541838,0.3293065329537736,0.3279365456597944,0.3256939022336533,0.324138695026033,0.3256649656236155,0.3260590500641848,0.3278776399957117,0.3292687495317299,0.3301130077445867,0.3310100883251706,0.3307200929152148,0.3310971651157758,0.3321841782235106,0.3320638011511698,0.3355126018571158,0.3369469571644785,0.3387141775280003,0.3410014149436304,0.3460065936403275,0.3460255522688653,0.3475409836065574,0.351818611242324,0.3537713472485768,0.3574377006573918,0.3608635373341256,0.3621621621621622,0.3629183903723204,0.0,2.233133114852997,57.33714711517074,184.89633791488268,271.7765521626273,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95656,44812,425.46207242619386,6093,62.54704357280254,4776,49.40620556995901,1887,19.37149786735803,77.25911226955019,79.65614362876835,63.27736057920528,65.04603442695267,77.02486550820436,79.42318899961836,63.19030777878336,64.96218565751934,0.2342467613458296,232.95462914998663,0.0870528004219153,83.84876943333097,144.08284,101.39699575426776,150626.03495860164,106001.71003833294,370.59884,241.9512745543968,386926.9151961194,252437.11273145105,358.95138,173.44450416087017,372738.6363636364,179276.15697662468,2748.19388,1252.8321781047018,2844126.2022246383,1280856.0446858555,1147.98853,501.3865384283963,1188384.9105126704,512419.5772772406,1851.23076,780.3682818414405,1901842.163586184,786010.5530361632,0.38201,100000,0,654922,6846.637952663711,0,0.0,0,0.0,31863,332.5666973321067,0,0.0,32854,340.888182654512,1658987,0,59593,0,0,0,0,0,71,0.7422430375512252,0,0.0,1,0.0104541272894538,0,0.0,0.06093,0.1594984424491505,0.3096996553421959,0.01887,0.3254761161411177,0.6745238838588823,24.67962223343708,4.391798599011489,0.3285175879396985,0.2328308207705192,0.2152428810720268,0.2234087102177554,11.12626320320992,5.657454971251566,20.12018940582585,12332.28011676541,54.116129898235606,13.289173877371498,17.57330926497742,11.408303694001244,11.845343061885446,0.5613484087102177,0.7841726618705036,0.6953473550031868,0.585603112840467,0.1087160262417994,0.6955074875207987,0.8924731182795699,0.8377659574468085,0.7123287671232876,0.1404255319148936,0.5162283156127588,0.7297297297297297,0.6504610226320201,0.5512978986402967,0.0997596153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360138974707,0.0046441355114126,0.0068408338915616,0.0092464639895951,0.0113840988860064,0.013657751614283,0.0156718396312988,0.0180793613524301,0.0202103842733155,0.0223657542940201,0.0243087238688907,0.0264295468780482,0.028203202945805,0.0301634885805235,0.0324974200206398,0.0345144913300176,0.0362278302668655,0.0381900471277015,0.0399950071252483,0.0420463312412685,0.0572596068431448,0.0714442826767777,0.0849435040114252,0.0970989311851734,0.1091715507682559,0.1250966395899304,0.1370139456829986,0.148393214848911,0.1596642249906432,0.169655513079335,0.1827085917695917,0.1950717350786702,0.206978061480142,0.2178029057918611,0.2280933946552846,0.2387520963138195,0.2484306638767358,0.2574983362097165,0.2651705585950385,0.2728662039803282,0.2797117593817447,0.2861197776161768,0.293046986236355,0.2997114344114464,0.3056815410875396,0.3110353010975971,0.3166133182702567,0.3212108069495114,0.3256622924860143,0.330595020768844,0.3307277955530355,0.3295358824585387,0.3286892318137456,0.3274792638108104,0.3281588178222255,0.3261444338549513,0.3242131673389017,0.3249123038158133,0.326305858135346,0.3278121978297461,0.3292586750788643,0.3299013978537203,0.3308428475486904,0.3307135839957131,0.3308026812099079,0.3324225865209472,0.3324420423837292,0.3364247987927565,0.3397273749297358,0.3412395709177592,0.3430563784695319,0.3473499548136728,0.3510530962290327,0.3537409798708697,0.3554599850411368,0.3600664372997983,0.3594990836896762,0.3618181818181818,0.3619922092376182,0.3672514619883041,0.0,2.0414903045268056,53.03889815677607,182.97999689305803,269.412715609589,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95621,44566,421.9052300226938,6141,63.030087533073285,4795,49.61253281183004,1963,20.152476966356765,77.28554750318864,79.71759442164259,63.27381344368565,65.07192597057339,77.04087855699362,79.47388696343445,63.183422976715065,64.98468523266075,0.24466894619502,243.7074582081351,0.0903904669705824,87.2407379126372,143.70532,101.0872944348382,150286.35969086288,105716.62546390251,368.32745,240.5105880911744,384629.8511833175,250960.8356979488,359.345,174.1035727064529,372582.47665261815,179530.5206590984,2777.8102,1268.1722542984976,2876297.42420598,1297944.629196058,1166.80892,512.5498457608512,1205577.5300404725,521670.5526424468,1929.0241,804.1879196603322,1983025.7161083864,810745.6562875751,0.3811,100000,0,653206,6831.198167766495,0,0.0,0,0.0,31686,330.7850785915228,0,0.0,32865,340.6260131142741,1664613,0,59712,0,0,0,0,0,67,0.6797669967894082,0,0.0,0,0.0,0,0.0,0.06141,0.1611388087116242,0.319654779351897,0.01963,0.328982128982129,0.671017871017871,24.770424538884683,4.458121175271351,0.319082377476538,0.2289885297184567,0.2193952033368091,0.232533889468196,11.294140611708364,5.770807226642694,20.75195217974285,12349.640112695848,54.27923421545174,13.011282618161085,17.299955381723837,11.709801310641735,12.258194904925086,0.5547445255474452,0.7768670309653917,0.6993464052287581,0.5750950570342205,0.1183856502242152,0.7142857142857143,0.9173333333333332,0.8817204301075269,0.7024793388429752,0.1222707423580786,0.50041934582052,0.7040110650069157,0.6407599309153713,0.5370370370370371,0.1173814898419864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021787596270774,0.0043513982290113,0.0068228891686634,0.008863139706256,0.0111606234485003,0.013222096588536,0.0154440942150952,0.0178367113435763,0.0200161602111055,0.0223262292227809,0.0247122545700744,0.0268392930538429,0.0289240460726086,0.0309346362783601,0.0331756980009912,0.035240331405993,0.0372646348666825,0.0392057079356507,0.0413227441632925,0.0431626160425576,0.057931928416123,0.0721928215876342,0.0854560739806641,0.0982447637911416,0.1104597118350445,0.125677851211659,0.1375253722143699,0.1495815341969188,0.160718298855987,0.1700191262115058,0.183018949367635,0.1955305445319107,0.2074959675661537,0.2173117384062418,0.2281628332635014,0.2382897482573369,0.2485215699864733,0.258461919951308,0.2674599656767477,0.2748867870449986,0.2819651626053924,0.2888108203056385,0.2955736266862657,0.3009917395062914,0.3065256290092875,0.3116490353161916,0.3162674750714035,0.3217816736316379,0.3261185319673194,0.3305158614860403,0.3292830778349543,0.3286003219548438,0.3272042752999901,0.3262224664825072,0.3257777315358433,0.324436672648904,0.3234412422478468,0.3231640091491007,0.323733625200944,0.3236978700554859,0.3230798086842352,0.32539902022756,0.3266701625589931,0.327414232678803,0.3291909042834479,0.3299116424116424,0.3318225596283496,0.3335525079842194,0.3381312515247621,0.3431686218746297,0.3454578521414931,0.3476713929159364,0.3463066927395445,0.3494214372716199,0.3527806530535428,0.3611965003546938,0.36765605875153,0.3739359546007296,0.3829728989871339,0.3782245827010622,0.0,2.034262821254379,53.55246569393817,187.388387406844,263.27300483085577,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95824,44630,422.023710135248,6213,63.77316747370179,4878,50.47795959258641,1947,20.026298213391215,77.35864855579545,79.66352516415513,63.35358995694328,65.05447521057657,77.12128520533662,79.42604746126828,63.26631657724138,64.9694397464963,0.2373633504588355,237.47770288684933,0.0872733797018909,85.03546408026352,143.79442,101.16419262865,150060.96593755216,105572.91767057314,369.48336,241.06699603620615,385169.435631992,251156.69982071943,364.92783,176.62043436708925,378748.06937719154,182667.55850941245,2820.5458,1286.563579233244,2919919.8113207547,1319086.8041756183,1186.04707,519.6694736686524,1223892.521706462,528475.484284326,1920.79176,794.8618918967919,1976883.077308399,805040.4177308064,0.38206,100000,0,653611,6820.952997161463,0,0.0,0,0.0,31864,332.08799465687093,0,0.0,33482,347.2616463516447,1665545,0,59857,0,0,0,0,0,58,0.6052763399565871,0,0.0,2,0.0208715979295374,0,0.0,0.06213,0.1626184368947285,0.3133751810719459,0.01947,0.3271783915763772,0.6728216084236228,24.803589941298632,4.405973850814524,0.3202132021320213,0.2320623206232062,0.2136121361213612,0.2341123411234112,11.290799519414078,5.713225900574716,20.66164112545848,12339.635711426292,55.337168491764935,13.419223526964666,17.86536470886762,11.573161126027095,12.47941912990556,0.552070520705207,0.7800353356890459,0.6971830985915493,0.5604606525911708,0.1199649737302977,0.7390965732087228,0.9185750636132316,0.8758949880668258,0.7357723577235772,0.1769911504424778,0.4852531997774068,0.706359945872801,0.63167104111986,0.5062814070351759,0.1058951965065502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024796065016294,0.0046794761417617,0.0069547938400397,0.009132698103443,0.011297827809725,0.0136717359239102,0.0157886158986269,0.0178103291748696,0.0202276117115828,0.0224536350338083,0.0244696868822402,0.0269150289254502,0.0290446200158219,0.0312011196180126,0.033128151195521,0.035125951478471,0.0370941373672992,0.0392175157056664,0.041110972620383,0.043005715356507,0.0580454014354865,0.0713852587558808,0.0849186135479881,0.0978172914236472,0.1098862881893581,0.1255878343390364,0.1372050124037911,0.1491410031381309,0.1605901758356731,0.1713480134651257,0.1842445253116858,0.1970945829006576,0.2082594843802668,0.2191837761564629,0.2283660461685802,0.2383226764480989,0.2482981050376091,0.2573093494425882,0.265712048835283,0.2734707903780068,0.2813053289359486,0.2879816470808558,0.2948649640654045,0.3010837769145926,0.3066216068367756,0.3121100781693093,0.3164374820134883,0.3209202945553054,0.3246691014582847,0.329188775375518,0.3285620026123372,0.3280779231499443,0.3269891322709612,0.3260649819494585,0.3250739040658377,0.3235942330649851,0.3228043509238588,0.3232007886953664,0.3243557516373399,0.325913466700068,0.3255333921300032,0.3255210910746451,0.3263385636566051,0.326876621633712,0.3280167436489607,0.329481582180858,0.3312748377505217,0.3336071270613508,0.3350956963096119,0.3389451847123593,0.3427867955498814,0.3448607108549472,0.3469220073315636,0.3500114933721553,0.3496667605369379,0.3539385376192158,0.3593510866238139,0.3614678899082569,0.3598209289311695,0.371496249506514,0.0,1.6468530048248862,56.93302686836781,185.0105782872562,268.51955323361966,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95852,44530,421.14927179401576,6242,63.89016400283771,4892,50.33802111588699,1940,19.728331177231563,77.41454581429173,79.70276354696774,63.37712166936033,65.06797972666125,77.17260991018279,79.46485320162944,63.288064907230606,64.98354751228989,0.2419359041089421,237.91034533830668,0.0890567621297222,84.43221437136117,142.94566,100.5889143846008,149131.6404456871,104941.90458686392,371.49883,242.50991923085127,386897.3521679255,252326.439960409,361.74064,176.1616171096122,373171.0866752911,180529.7572067853,2808.87484,1281.47971820285,2891906.5642866087,1298413.3436995056,1157.22188,506.602128454163,1190871.7814964736,512096.4283000481,1896.33272,791.1193497810455,1931227.5174226933,786795.4003326313,0.37968,100000,0,649753,6778.710929349413,0,0.0,0,0.0,31967,332.79430789133244,0,0.0,33088,341.02574802821016,1671864,0,59989,0,0,0,0,0,74,0.7615907857947669,0,0.0,1,0.0104327504903392,0,0.0,0.06242,0.164401601348504,0.3107978212111503,0.0194,0.3341452275841072,0.6658547724158929,24.60193934675732,4.454166352639974,0.3225674570727718,0.2246524938675388,0.2371218315617334,0.2156582174979558,11.37127789235325,5.938263843174519,20.534019313537502,12242.500797466304,55.147738218472654,13.100657768913614,17.744591953714128,12.684557958747313,11.6179305370976,0.5600981193785772,0.7907188353048226,0.6831432192648923,0.5706896551724138,0.124170616113744,0.7329635499207607,0.9213759213759214,0.8507462686567164,0.7385892116182573,0.1415094339622641,0.5,0.7138728323699421,0.6258503401360545,0.5266594124047879,0.1198102016607354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022169357696006,0.0044779899701129,0.0068142409523712,0.0087202809981117,0.0107734525866449,0.0129325695214644,0.0151792991035044,0.0172589660940878,0.0193368472664868,0.0216637515726165,0.0237641611865691,0.0260752715746714,0.0283905837383504,0.0303448275862068,0.0322401047519873,0.0341152046602423,0.0362426800753202,0.0384168963873401,0.0405584968338004,0.0424507203411868,0.0571938020062146,0.0710889081655048,0.0855945521215296,0.0980721575874669,0.1109531482008024,0.1260720774008196,0.1376223568795287,0.1496614547348504,0.1602300125888151,0.1697848506591558,0.1820959101568382,0.1933659844528775,0.2046350924084879,0.2151980333242283,0.2252697742906749,0.2361194095908296,0.2464962258470938,0.2559388695359029,0.2640674967680479,0.2725274473663121,0.2795054760775787,0.2858228499275125,0.2927936984778417,0.2982603278060002,0.3032210247500091,0.308664037466108,0.3143640254815334,0.3192880678854496,0.3237200259235256,0.3277961177868744,0.3270369971457806,0.3260442023902848,0.3245111427083186,0.3247180790389419,0.3244511081751109,0.3230326765389793,0.3204994468152363,0.3212588100311424,0.3220159694260561,0.3223910371729334,0.3230496122582453,0.3230235127031718,0.3239048235810232,0.3250273029175117,0.3270716376373495,0.328161950053273,0.3280424782781532,0.3312384704374199,0.3344657303961055,0.3368638184775279,0.3385926731955023,0.3431351808758197,0.3455749172443945,0.3471814555580643,0.3469787392763894,0.3502005189903279,0.3530668294171498,0.3530127814972611,0.3479097909790979,0.3536818008393743,0.0,2.7661585996833917,54.735751402537225,181.59548316768263,275.0737286661886,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95711,44468,420.6413055970578,6216,63.78577175037352,4874,50.3494896093448,1912,19.590224739058208,77.36002699221102,79.73277444621371,63.33690834044432,65.08895747316926,77.12048330634427,79.49452496676993,63.24842450519049,65.00329892913268,0.2395436858667494,238.2494794437804,0.0884838352538324,85.65854403657625,143.44616,100.90817627404104,149874.26732559476,105430.0720649048,367.92467,239.57643037486432,383843.0065509711,249743.2273979628,353.19905,171.1198284018832,365911.1909811829,176239.5606687575,2786.0956,1261.776548534464,2880294.8877349524,1287668.072148932,1141.51086,501.6525769016192,1178100.3437431434,509568.7401673991,1876.34624,784.5549941271778,1925459.8739956743,790278.4269691383,0.382,100000,0,652028,6812.466696617944,0,0.0,0,0.0,31689,330.4949274378076,0,0.0,32499,336.3981151591771,1672351,0,59904,0,0,0,0,0,58,0.6059909519282005,0,0.0,0,0.0,0,0.0,0.06216,0.1627225130890052,0.3075933075933076,0.01912,0.3146446078431372,0.6853553921568627,25.179079992540515,4.454998686086773,0.3208863356585966,0.2308165777595404,0.2258924907673369,0.222404595814526,11.23736130616988,5.702577203420934,20.3427638233575,12359.667750575469,54.63389612607798,13.10760618533732,17.63854966386962,12.13294523774966,11.754795039121372,0.5510874025441116,0.7555555555555555,0.6847826086956522,0.5885558583106267,0.1079335793357933,0.7246963562753036,0.9344262295081968,0.8333333333333334,0.7601626016260162,0.1402714932126696,0.4921681780708986,0.6693017127799736,0.6333907056798623,0.5391812865497077,0.0996523754345307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024207189231345,0.005017790347596,0.0071643850907725,0.0093866189886019,0.0115952642499694,0.0136348824895116,0.0159633027522935,0.0184633285023168,0.0205366726296958,0.022686787198755,0.0251389202157108,0.0270830766703626,0.0290300686931841,0.0311470006591957,0.033377699363399,0.0350898958882582,0.0370869159846679,0.0390567428150331,0.0411253835352852,0.043075063560205,0.0581048058647841,0.0725289906643781,0.0860101126660092,0.0985485906604964,0.1105195462404588,0.1259342262439612,0.1378853130237393,0.1503384130767921,0.1616079629194523,0.1719814224882281,0.1849059042776658,0.1962971779778393,0.2081861557021595,0.2184060078048993,0.2284149519965688,0.2393035542215379,0.2486556440636365,0.2575316277762159,0.2668541236762738,0.2735589804657979,0.2808409269623942,0.2882605951518268,0.2952690715552927,0.3001472895137051,0.3056250455395526,0.3107908351810791,0.3158592899423094,0.3210634726884345,0.3252605009384506,0.3296830883711111,0.3293737373737374,0.328592278460098,0.3277483957407799,0.3278491636279446,0.3268104089219331,0.3250371414130584,0.3232521354001898,0.3245701735695671,0.3254428781103867,0.3262276089475091,0.3270716784852283,0.3269530556268129,0.3277244258872651,0.3288168832037082,0.3286108114587079,0.3297797654645206,0.3300766228957188,0.3336062218583708,0.3355964400042213,0.3396775995531083,0.3388766721641927,0.3397726666310902,0.3402996348986529,0.344796104686549,0.3498550453567755,0.3485653560042508,0.3534351145038168,0.3578520770010132,0.3587828492392808,0.3622350674373796,0.0,2.2635805128276814,54.01537568162426,174.39304514928602,283.500240658279,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95750,44243,419.11227154047,6196,63.65535248041776,4833,49.8798955613577,1911,19.613577023498696,77.33346816806463,79.69472491095547,63.32120940122799,65.06990520770765,77.0953720190697,79.45835752044663,63.23269660307953,64.98449318786244,0.2380961489949271,236.3673905088461,0.0885127981484572,85.41201984520796,144.1616,101.3702447041768,150560.41775456918,105869.70726284783,368.89705,240.6573417295137,384697.8694516971,250766.05924753388,357.58436,173.4814503322358,368882.2349869452,177751.63824632642,2768.8206,1270.4034850178375,2860499.7597911227,1295573.2689481324,1198.47219,527.8254391769923,1236234.7676240208,535831.2770652398,1869.91272,785.0138318095677,1921250.7154047,792029.536224449,0.37955,100000,0,655280,6843.655352480418,0,0.0,0,0.0,31840,331.9268929503916,0,0.0,32786,337.95300261096605,1667108,0,59791,0,0,0,0,0,66,0.6892950391644909,0,0.0,0,0.0,0,0.0,0.06196,0.1632459491503095,0.3084247901872176,0.01911,0.3319024988502222,0.6680975011497777,24.693930078817512,4.366135994680001,0.3269190978688185,0.2309124767225326,0.2195323815435547,0.2226360438650941,11.067734386424492,5.674672216924324,20.32569795349578,12240.02086370376,54.80248394549849,13.26545656146881,17.96474198958645,11.75492250645832,11.817362887984908,0.5603145044485827,0.782258064516129,0.6930379746835443,0.5739868049010367,0.1217472118959107,0.7192307692307692,0.9280205655526992,0.851063829787234,0.714859437751004,0.1506276150627615,0.5018397962071893,0.7042640990371389,0.6352636127917026,0.5307881773399015,0.1135005973715651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021176351385581,0.0041475682472721,0.0063942512636258,0.0087382389400312,0.0110758528101543,0.01322689366555,0.0154039065367206,0.0176971280439264,0.0198785822329422,0.0219874708266797,0.0241229419122019,0.026159089975771,0.028177414876441,0.0303092719801439,0.032117616713954,0.0341195683631702,0.0361166335321404,0.0382268708753579,0.0401825629509492,0.0421197350331208,0.0567658694948693,0.0710002197825199,0.0834496290777834,0.0963999873794474,0.1091273398365409,0.1243391278602546,0.1351864622566442,0.1471721407437365,0.1581904009227417,0.1685147453083109,0.1812286579125957,0.1941033270219096,0.2056053421499108,0.2161857677247172,0.2263266742937604,0.236664045802372,0.2460059617510131,0.2551881696227604,0.263917104561292,0.2713896395364815,0.278785986097135,0.2857076023391813,0.2921502514049098,0.2979212843706943,0.3030950358053161,0.3090472673559822,0.3143543002888114,0.3199400033049027,0.324159258827944,0.3278528449276892,0.3274326745611553,0.3271679639153992,0.3269035818878125,0.325830839729968,0.3252460381173252,0.3240274880353417,0.3218254156957852,0.3220500517606849,0.32264460549706,0.3237132549916062,0.3235878034162421,0.3253838098437098,0.3272886992533099,0.328299526405147,0.3289046140515561,0.3301097752221641,0.3308488848429677,0.3339518208692371,0.3365817618913594,0.3389151224157771,0.3415144077811108,0.3427434332714247,0.3461199294532628,0.3476899579992363,0.3493111907907152,0.3485193621867881,0.3525878003696858,0.3552820512820512,0.3529743445164928,0.355859375,0.0,2.276908605568529,57.00110285959615,178.2431140630704,267.09356274471145,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95793,44396,419.780150950487,6108,62.54110425605211,4783,49.3042289102544,1865,19.103692336600798,77.34149214859087,79.68068925552342,63.33904717832892,65.07236354135935,77.1117437531231,79.45185430484801,63.253970869112685,64.99007782182518,0.2297483954677801,228.83495067540596,0.0850763092162338,82.28571953416974,144.36796,101.60478222937932,150708.2563444093,106067.02183810851,373.84269,244.20689644517515,389655.1313770317,254326.0430774432,362.95291,176.36876668880987,374685.6242105373,180907.0207174164,2738.2978,1251.844713745165,2826378.545405197,1274643.986246558,1150.95651,508.06146132110393,1188288.6745378054,517159.20925443753,1828.21858,760.1517247239404,1875951.729249528,766460.7861847507,0.37947,100000,0,656218,6850.375288382241,0,0.0,0,0.0,32080,334.2415416575324,0,0.0,33319,343.65767853600994,1663755,0,59697,0,0,0,0,0,74,0.7516206820957689,0,0.0,0,0.0,0,0.0,0.06108,0.1609613408174559,0.3053372626064178,0.01865,0.3323956868260665,0.6676043131739334,24.51258602587247,4.376668673587473,0.32573698515576,0.2331172904035124,0.2216182312356261,0.2195274932051014,11.1215596581839,5.697775646256821,19.871586621446763,12245.381871656466,54.19879187918899,13.232718361601378,17.790204678397853,11.687061054557368,11.488807784632392,0.5628266778172695,0.7829596412556054,0.7021822849807445,0.5688679245283019,0.1161904761904761,0.7348659003831418,0.9110576923076924,0.8618266978922716,0.7242798353909465,0.1643835616438356,0.4982748706152961,0.7067238912732475,0.6419098143236074,0.5226438188494492,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096325860793,0.0045923177518931,0.0068496625906946,0.0093484534406373,0.0117718878770921,0.0140265455175153,0.0161043570496083,0.0181866454267887,0.0202877506569999,0.0224968768559667,0.0244032482979246,0.0268019428841355,0.0289032204976291,0.0306370529091808,0.0327610046020182,0.0348644905215719,0.0368115311733093,0.0390257059275088,0.0407020241905316,0.0427866497324533,0.0574579525061558,0.071297128876435,0.0842747259656697,0.0965196191757214,0.1084168484503598,0.124360546230922,0.136355926813238,0.1476408724040026,0.1592298908229368,0.1694869843855494,0.1819815747556933,0.1939682196519295,0.2057487996176157,0.2164796381079338,0.2271667912580801,0.2379898162497232,0.2475649169731416,0.2561825754088975,0.2646166387391875,0.271970736168267,0.2791830702979784,0.2863646444955467,0.2923604135893648,0.2980375732918511,0.3038083687083081,0.3083084191488576,0.3133823051745246,0.3182556810968643,0.3222630001033805,0.3266066398125477,0.3260480692929483,0.325127147766323,0.3244986480396575,0.3240814321422895,0.3233405665705537,0.3211698951075721,0.3193194778861994,0.3195083475746023,0.3207731121183614,0.3215664545649532,0.3222053331832085,0.3226132245479929,0.3235053406920865,0.3262568581345874,0.3276423352383708,0.3289071281072744,0.331162683955363,0.3352146616779757,0.3373651635720601,0.3395088840087842,0.3418327426704101,0.3447925033467202,0.3446500095365249,0.3456171459409451,0.3473474423460188,0.3472189066603008,0.3484801488833747,0.3486936844270726,0.3492595697122101,0.3461096205442698,0.0,2.448176454588778,57.00196899894851,174.39659896043182,263.05941023902653,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95712,44657,423.0921932464059,6191,63.48211300568372,4846,50.15045135406218,1898,19.537780006686727,77.3419109081298,79.7115254572145,63.33255108723839,65.08135717576752,77.10200482300593,79.47075860956201,63.24384808350764,64.99430615097774,0.2399060851238772,240.76684765249468,0.0887030037307496,87.05102478978688,143.97394,101.23279280978078,150424.12654630558,105768.13023422431,370.75886,242.04321673425707,386879.1896522902,252396.94785842643,362.134,175.44152917998454,375234.9339685724,180835.8268339754,2780.42772,1266.8078642582702,2880244.0655299234,1298812.4208649597,1134.6991,501.9433664861487,1175270.4572049482,514166.58985931554,1857.64632,780.4510100907521,1914757.3971915748,793015.1675033127,0.3816,100000,0,654427,6837.460297559344,0,0.0,0,0.0,31912,332.92586091608155,0,0.0,33219,343.969408224674,1666084,0,59808,0,0,0,0,0,58,0.6059846205282514,0,0.0,0,0.0,0,0.0,0.06191,0.1622379454926624,0.3065740591180746,0.01898,0.3327702702702703,0.6672297297297297,24.549474673381788,4.372738265955749,0.328518365662402,0.2309120924473792,0.2185307470078415,0.2220387948823772,10.89698492671388,5.56560586699964,20.27256334138669,12290.053940779866,54.88082433109943,13.333168828183425,17.990543094776378,11.77390989707726,11.78320251106236,0.5567478332645481,0.7533512064343163,0.7022613065326633,0.5712936732766761,0.1226765799256505,0.7317460317460317,0.9055690072639224,0.8877551020408163,0.7012987012987013,0.1696428571428571,0.4952593418851088,0.6643059490084986,0.6416666666666667,0.535024154589372,0.1103286384976525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0043985000506739,0.0065631974031243,0.0088364345494434,0.0109610769919062,0.013164861122424,0.0152502115253269,0.0174634604392912,0.0196443172526574,0.0218612791304614,0.0244490005125576,0.0263992853402334,0.0285364649747028,0.0306192885033431,0.0325470043134584,0.0345472776703846,0.0366404308202154,0.0386160088834462,0.0406762742529165,0.0426427678199249,0.0576710182767624,0.0713657678780773,0.0848686419338593,0.09757251940512,0.1096050799544323,0.1249206483558339,0.1368584098962422,0.1484860744399966,0.1610025533915235,0.1709525495370817,0.1836776458930225,0.195621354285034,0.2078030846875068,0.2180150234536448,0.2279690747726248,0.2377267846666445,0.2474770565473867,0.2565756935389596,0.2648102988714342,0.2723142245671057,0.2794627984453081,0.2858630656353487,0.292090810094219,0.2982214338790479,0.303724406100006,0.3091844032850765,0.3143236572745837,0.3194762559169339,0.3248167620626246,0.3293702053620858,0.3283166184290234,0.3268366435296543,0.3262514060742407,0.3251006246663877,0.3248905705171007,0.3239544307668782,0.3224593014066698,0.3231594312236563,0.3244231130544691,0.3245579567779961,0.3251031121109861,0.327354348771902,0.3281450206902346,0.3299325066708523,0.3307037224674917,0.3319052221844876,0.3322288554371733,0.3342150842387025,0.3358088131775306,0.3381326526542496,0.3397242764539395,0.3418693982074264,0.3443276778931375,0.3451001458061545,0.3494353231470058,0.3540721280152854,0.354813903414334,0.3624588815789473,0.3662366797532249,0.3615710435117443,0.0,1.905356816708813,55.58506475371769,184.0872218210633,268.0743499430719,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95716,44706,423.4506247649296,6274,64.45108445818882,4926,50.97371390363158,1963,20.19516068368925,77.33810060160408,79.72088091891051,63.31256206328344,65.07490087734053,77.0983323603591,79.47931733821126,63.22550359479236,64.9892298701156,0.2397682412449882,241.56358069924977,0.0870584684910795,85.67100722493137,144.46542,101.62527595289208,150931.0878014125,106173.53687251038,371.31781,241.6571146702684,387387.8766350453,251924.19059537415,362.08079,174.9304156582592,374842.7326674746,180181.2684502793,2840.44644,1278.830785146008,2940988.0897655566,1309503.6411321068,1181.26538,511.8338297788475,1221695.4427681891,522307.1028803415,1927.07744,794.8377156404084,1983690.918968616,805572.4449361442,0.38208,100000,0,656661,6860.503990973297,0,0.0,0,0.0,31948,333.1940323456894,0,0.0,33098,342.4087926783401,1663329,0,59696,0,0,0,0,0,63,0.6581971666179114,0,0.0,0,0.0,0,0.0,0.06274,0.1642064489112227,0.3128785463818935,0.01963,0.3283763277693475,0.6716236722306526,24.866194576235745,4.433119766253827,0.3244011368250101,0.2259439707673569,0.2206658546488022,0.2289890377588307,11.084715877622264,5.622604211276223,20.65282074759636,12372.15952656946,55.42536366378534,13.205014380402146,18.071255858848687,11.92142706055236,12.22766636398214,0.5558262281770199,0.7906558849955077,0.6877346683354193,0.5804967801287948,0.1134751773049645,0.7218597063621534,0.9322033898305084,0.847457627118644,0.7178423236514523,0.146788990825688,0.5008108108108108,0.7246376811594203,0.6320675105485232,0.541371158392435,0.1054945054945055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002169021507774,0.0043619395414891,0.0067110686945397,0.0090249405451551,0.0114162452559497,0.0135263141812403,0.0159822940252534,0.0181498769240197,0.0201973717850386,0.0221573746992269,0.0244365142845423,0.0265027827408457,0.0284503943160903,0.0303791732745659,0.0326603876744689,0.0350119358872342,0.0369327300400699,0.0390620947242828,0.0409514799297202,0.0426996958206591,0.0571550904894681,0.071149679161738,0.0847262005938703,0.0974601672188042,0.1096195216602691,0.1258237515470133,0.1380642149268934,0.1495927168183996,0.1607501602906604,0.17088790911724,0.1838592559873304,0.1966269025092554,0.2082430917579965,0.2181229348563426,0.228893388502509,0.2395358888260912,0.2498045871764522,0.2594172397105331,0.2680079934598964,0.2758324259269872,0.2825067450989474,0.289390498044817,0.2952825384041406,0.301476757845276,0.3066332916145181,0.312331877298191,0.3175774739664916,0.3225272064632872,0.327437641723356,0.3315076809375495,0.3301617635184238,0.3295773485223708,0.3291650824496923,0.3284144563004462,0.3280078397600558,0.3257879743927466,0.3238059063716646,0.3241403071269195,0.3248077908764736,0.3254136841541565,0.3258184816626375,0.326718975433326,0.3278661017660136,0.3292609114752628,0.3303964757709251,0.3315491347502988,0.3313806341532774,0.3346002827077116,0.3385870897691849,0.3400292617343509,0.3419209039548022,0.34643760539629,0.3461778276593091,0.3478588093625348,0.3489128414792789,0.3495179873030802,0.3525331724969843,0.3552185192576332,0.3635135135135135,0.3636706948640483,0.0,1.8253743263495048,54.3008188734162,187.22966259181908,277.5462802156602,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95646,44251,419.3275202308512,6185,63.39000062731321,4837,49.94458733245509,1903,19.39443364071681,77.27782633283482,79.68631116909393,63.2892740309558,65.07124381506331,77.0377725758241,79.45238342688488,63.2003125809002,64.98786491300183,0.2400537570107133,233.92774220904755,0.0889614500555993,83.37890206148302,144.02696,101.24274148221448,150583.35947138406,105851.51651110812,369.30894,241.1833695649113,385503.6488718818,251545.5424846949,355.97224,172.90870022260617,368762.122827928,178107.7136946688,2785.64032,1271.2312444085087,2878146.247621437,1294798.1979471266,1130.08337,495.3973809417834,1167222.1734311944,503681.6956936608,1862.19766,780.9163113573695,1901558.4551366493,779102.7423062857,0.3791,100000,0,654668,6844.698157790184,0,0.0,0,0.0,31855,332.3923635070991,0,0.0,32723,338.70731656316,1665113,0,59775,0,0,0,0,0,54,0.5541266754490517,0,0.0,1,0.0104552202914915,0,0.0,0.06185,0.1631495647586388,0.30767987065481,0.01903,0.322969837587007,0.6770301624129931,24.74076820081146,4.429896415465537,0.3324374612363034,0.2282406450279098,0.2195575770105437,0.2197643167252429,11.30737150495612,5.877595969138895,20.29844281289924,12252.785452195343,54.73001367933605,13.109796158716549,18.19442811385164,11.790300684125963,11.635488722641917,0.5550961339673351,0.7663043478260869,0.6977611940298507,0.5668549905838042,0.1081843838193791,0.727344365642238,0.916010498687664,0.8700696055684455,0.6887966804979253,0.1527777777777778,0.4938340807174888,0.6874135546334716,0.6346644010195412,0.5310596833130329,0.0968122786304604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874288146241,0.004370842122343,0.0065782794956652,0.0087401038649552,0.0112111501093646,0.013528794531433,0.0157980622131565,0.0179558152123954,0.0201000398932089,0.0224236836713788,0.0243797372280741,0.026316330094295,0.0283282912473503,0.0304460751978891,0.0324502354010076,0.0347841376885045,0.0366106401939856,0.03870954343921,0.0406264633955981,0.0423027193860527,0.0574453187865107,0.0713118703001612,0.0849384374770387,0.0980047565929324,0.1095680803689203,0.1252659771550766,0.1371007997281136,0.1485408031709162,0.1597552757960489,0.1697033466109793,0.182294304650035,0.1945686658798306,0.2062738780708151,0.2164868354818235,0.2258401858150875,0.2363207233561598,0.2462065808425354,0.2546645360221467,0.2639278215967769,0.2719093406593406,0.2793491835885101,0.2858311805206495,0.2924962439814979,0.2977864068361318,0.3028539492388253,0.3080101128445458,0.3129656294997809,0.3176639808556408,0.3219730360383718,0.3265874587458746,0.3258530006743088,0.3247261993434301,0.3249106651036002,0.3248276661067022,0.3238536483627804,0.3218925642679443,0.3197605170798329,0.321276210241966,0.3220931427983962,0.3242502909318772,0.3251018760211075,0.3260787694991179,0.3272616624346841,0.3287321864023804,0.3292080995834637,0.3304041720990873,0.3314202501284907,0.3357032262141751,0.338365582252463,0.3416362981058027,0.3444938769894051,0.3477912932138284,0.3491420249477616,0.3530408006158583,0.3589207676230287,0.3628915662650602,0.3647260273972603,0.3639941992956287,0.3604749787955895,0.3636717230649552,0.0,2.362870158561672,55.40570304773004,179.82326613821365,270.5389678992102,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95811,44640,422.23753013745807,6173,63.13471313314755,4803,49.46196157017461,1912,19.52802914070409,77.39792083527668,79.70140083387271,63.37134666233783,65.07161868538803,77.1577406877231,79.46552688831412,63.281630656466746,64.98642415312342,0.2401801475535734,235.8739455585948,0.0897160058710824,85.19453226460882,144.93534,101.85474005145332,151272.12950496288,106307.98139196266,369.85725,242.1661157873641,385375.499681665,252101.51839284017,361.77444,176.20186084069445,373507.9583763869,180730.5498632104,2756.60716,1267.241290996998,2841013.1195791718,1286529.9506288406,1111.37616,498.7972769073454,1139118.0344636836,499756.2878034312,1867.63994,789.5882971168074,1909166.9432528624,789202.063016357,0.38054,100000,0,658797,6876.005886589222,0,0.0,0,0.0,31893,332.16436526077376,0,0.0,33117,341.57873313085133,1662717,0,59636,0,0,0,0,0,66,0.6888561856154304,0,0.0,0,0.0,0,0.0,0.06173,0.1622168497398433,0.3097359468653815,0.01912,0.3330231115247402,0.6669768884752598,24.688464654989524,4.3135295653883965,0.3231313762231938,0.2413075161357485,0.2161149281698938,0.2194461794711638,11.200347136806634,5.804734184157975,20.457206673344704,12319.364962681831,54.475936832049335,13.837439605539206,17.67209330094459,11.46467613690808,11.501727788657476,0.5477826358525921,0.7748058671268335,0.6688144329896907,0.571290944123314,0.0967741935483871,0.7302325581395349,0.9154589371980676,0.8443877551020408,0.7481481481481481,0.1401869158878504,0.4807856532877882,0.6966442953020134,0.6094827586206897,0.5091145833333334,0.0857142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002429740017818,0.0046003100649515,0.0068766164612809,0.0092198653574728,0.0112129960962914,0.013504711892695,0.0155488985347761,0.0178627901045651,0.020005312953389,0.0220989953141945,0.0241685961928569,0.0262426263144396,0.0284481430112498,0.030789178509318,0.0329200292714098,0.0352382427339837,0.0370676901749412,0.0392193443404537,0.0410059915059759,0.042878254896655,0.0583222064591504,0.0723452322431519,0.0856603575735332,0.0976909974134124,0.109909340080118,0.1256660746003552,0.1376289807735134,0.1493442902154475,0.1598217910639116,0.1701207869387054,0.1831674637025548,0.1953657428441617,0.2069302947604188,0.2176518183209779,0.2273187146721798,0.2369190230508624,0.2462617499804864,0.2557417962294695,0.2648662743897599,0.2730486716551109,0.2805238942963494,0.2871078918161107,0.293543809861653,0.3000227389686082,0.3054696688613243,0.3102366660106278,0.3148948393865214,0.3201147892778688,0.3245476766292047,0.3287503456994982,0.3286652255058608,0.3277703055090445,0.3272438554826379,0.3267376673536151,0.3258230437424959,0.3250160241736105,0.3225806451612903,0.3236497545008183,0.3251478331998432,0.3254889376192259,0.3263169701274909,0.3276773735301081,0.3284456251176605,0.3286846346704871,0.3291712866991274,0.3305916758055251,0.3317287028281612,0.3363213075290615,0.3411943034404963,0.3448646496815287,0.3461203936827649,0.3481374592485703,0.3520349942944085,0.354915150588595,0.357750472589792,0.3592001904308498,0.3599448360404536,0.3629764065335753,0.3640816326530612,0.3649468892261001,0.0,2.5628106424401578,56.19738227928762,178.79731836441138,263.86126286150045,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95553,44113,417.6739610477955,6094,62.541207497409815,4743,49.05131183740961,1908,19.60168702186221,77.19945181010942,79.66965102105527,63.224607941291474,65.05331226850123,76.96915056625947,79.43933754009733,63.14000577265257,64.97070775006198,0.2303012438499507,230.31348095794613,0.0846021686389022,82.6045184392541,143.87384,101.2214125145328,150569.6733749856,105932.2182605808,368.78748,240.88322008440204,385388.8522600023,251531.9771063201,361.01388,175.46081160733476,373693.7720427407,180493.2560285819,2718.90708,1250.0794358118594,2814556.068359968,1277369.7485289415,1138.91015,508.4172643197493,1176973.7318556197,517137.94890767336,1869.75848,775.3812543849369,1923098.741012841,784384.8980238654,0.37676,100000,0,653972,6844.076062499346,0,0.0,0,0.0,31790,332.10888198172745,0,0.0,33066,341.85216581373686,1659600,0,59539,0,0,0,0,0,66,0.6907161470597469,0,0.0,1,0.0104653961675719,0,0.0,0.06094,0.1617475315850939,0.3130948473908763,0.01908,0.337171308542088,0.6628286914579119,24.712050318944083,4.415765935613492,0.3253215264600463,0.2266497997048281,0.2300231920725279,0.2180054817625975,11.472419895568835,6.012090945976172,20.270013627010304,12172.304552887828,54.039574732773545,12.942226057930515,17.615243243722507,12.033032027057638,11.449073404062874,0.5654648956356736,0.7851162790697674,0.7018794556059624,0.5637030247479377,0.1353965183752417,0.7535433070866142,0.9303482587064676,0.895,0.7593360995850622,0.185022026431718,0.4966887417218543,0.6983655274888558,0.6342957130358705,0.508235294117647,0.1214374225526641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022909042989934,0.0044439033298837,0.0068445852628158,0.0091304701480396,0.0112595186708474,0.0136700034659218,0.0161249170791447,0.0181585939096668,0.0201698731068358,0.022125662283893,0.0243181374914029,0.0266212867469383,0.0288768511462173,0.0310698039053877,0.0332751190980582,0.0351523683338853,0.0371480425200933,0.0391282658851406,0.0412782401283239,0.0432286283966469,0.0583866783816576,0.0723850469249724,0.0851851073223032,0.0975607186133502,0.1090290328376507,0.1245282618835602,0.1369172348504994,0.1480521143442491,0.1590539035050132,0.1684337297576291,0.1811407960951167,0.1930982094411286,0.2050484886169017,0.2161088990533855,0.2262785000110358,0.2365185325054703,0.2462154693041834,0.2548486455383435,0.2627776260695431,0.270191114990582,0.2779639788001438,0.284466178816024,0.290589672720371,0.2961415138523616,0.3014746173422792,0.3065070185844207,0.3108228587214485,0.3148004031486419,0.3191552917646142,0.3235815602836879,0.3219764489817965,0.3209561511193258,0.3205052215636466,0.3210046323103648,0.3208826246312464,0.3183800718739442,0.3172718179941893,0.3174336414413524,0.3175501801338137,0.3187012288097587,0.3200850999736416,0.3206408449306148,0.3211861906167011,0.3202237096267014,0.3209763170613823,0.3228705426153483,0.3255727376861397,0.3276682957591045,0.3302658486707566,0.3336378440640267,0.3341205322675871,0.3384452670544685,0.3423722444889779,0.3470239902824172,0.3523204781025306,0.3577100865236458,0.3563741094436865,0.36158755484643,0.3654684095860566,0.3612385321100917,0.0,2.316468469355414,55.72131398077153,181.4486802800293,257.1878043987376,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95663,44527,420.89418061319424,6263,64.11047113303995,4894,50.36429967699111,1965,19.98682876347177,77.33990302576841,79.73088068608396,63.32261558699434,65.08924901767277,77.09283919278737,79.48698136251852,63.231176116098304,65.00189079302883,0.2470638329810413,243.89932356544364,0.0914394708960344,87.3582246439355,143.64746,101.04279591392518,150159.89463010777,105623.69559173888,371.92036,242.72536071435815,387925.342086282,252893.11879613996,363.93608,176.69372609360602,375264.0623856664,180797.27538372384,2813.236,1295.1784273894586,2896012.8367289337,1310247.1805892808,1196.96806,526.8029813789278,1230915.275498364,530919.6433576145,1927.81018,812.1661635553096,1963330.733930569,807820.0086546183,0.38121,100000,0,652943,6825.44975591399,0,0.0,0,0.0,32006,333.6713253818091,0,0.0,33343,343.49748596636107,1666902,0,59889,0,0,0,0,0,63,0.6481084640874738,0,0.0,0,0.0,0,0.0,0.06263,0.1642926470974003,0.3137474053967747,0.01965,0.3400976502898993,0.6599023497101008,24.623708698422757,4.412684355537182,0.3169186759297098,0.2317123007764609,0.2239476910502656,0.2274213322435635,11.262095589982144,5.816657064314975,21.017994596897548,12377.691548133693,55.77736677195314,13.490265601294192,17.581547171821196,12.296671657877331,12.408882340960425,0.5659991826726604,0.7839506172839507,0.7124435847840103,0.5885036496350365,0.1176999101527403,0.7051578137028484,0.918854415274463,0.8571428571428571,0.7124463519313304,0.1335877862595419,0.5157162726008345,0.7048951048951049,0.6646655231560892,0.5550405561993047,0.1128084606345476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024815152435936,0.0051593938472454,0.0074885084879909,0.0099845610043472,0.0122428642608014,0.0145157678291496,0.0165939576792922,0.0187596962521433,0.0209151128557409,0.0227844991709144,0.0250345994156543,0.0270486670704291,0.0289983238557487,0.0310864818095669,0.0333880339763239,0.0356496655259049,0.0377211885127015,0.0397131024174546,0.0417459871630829,0.0436473188224501,0.0585844868111778,0.0725129300416692,0.085318896687755,0.0987754329118185,0.110770009811058,0.1256480247148691,0.1380342061706913,0.1504145954633995,0.1620117698576295,0.172168673407027,0.1848892430622112,0.1972257687563567,0.2080428896114488,0.2175648047929854,0.2279975788257305,0.23854247424964,0.2482260799714387,0.2559738097380973,0.2649644392518064,0.2729625430851856,0.2803344860688634,0.2875298134031707,0.2948887837198296,0.3002575621443546,0.3060216098093966,0.3112972773192066,0.3166560322286029,0.3219918595777156,0.3268782383419689,0.3308514851485148,0.3304094749181454,0.3290712398150187,0.3276989877914681,0.3270783298127839,0.3267334096960861,0.3247001883873734,0.3223824828612593,0.3239795080621326,0.3249620391380752,0.325620777553967,0.325952683985925,0.3274469135802469,0.3291412069975726,0.3303027588677893,0.3298775195293664,0.3313037342880288,0.3322472777158535,0.3357196921912451,0.3388511252773571,0.3440301467671559,0.3470130579189226,0.3505072502257396,0.3536040289581366,0.3595702529716549,0.3614344723995494,0.3606926817696596,0.3552712700369914,0.3624229979466119,0.3682148852825965,0.3707865168539326,0.0,2.9302757288540704,56.271570258405255,193.33611754989215,259.8861917500763,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95782,44474,420.8723977365267,6258,64.02037961203567,4862,50.14512121275396,1971,20.19168528533545,77.331780499572,79.670533708777,63.32970022966426,65.06187328154391,77.08834073362972,79.42923383374834,63.24001547388169,64.97557347444041,0.2434397659422842,241.29987502865905,0.0896847557825708,86.29980710350083,142.29204,100.0895510996593,148557.9962832265,104497.0415477241,367.99569,240.3007926951051,383594.0364577896,250277.5401214066,359.09132,174.16361159034437,370903.6144578313,178811.3501496566,2790.03628,1277.5882342745372,2880674.573510681,1301717.9010947123,1160.89241,511.5067516771262,1197188.083355954,519256.25021738495,1933.57384,807.7289187762633,1983724.9796412687,813555.9148982835,0.38074,100000,0,646782,6752.636194692113,0,0.0,0,0.0,31811,331.4714664550751,0,0.0,32902,339.4687937190704,1674366,0,60180,0,0,0,0,0,49,0.5115783758952622,0,0.0,0,0.0,0,0.0,0.06258,0.1643641330041498,0.3149568552253116,0.01971,0.3273031316509577,0.6726968683490423,24.890785271222494,4.410260967062857,0.3118058412176059,0.2396133278486219,0.2248046071575483,0.2237762237762237,11.083964466483678,5.570120826862084,20.9577761262368,12305.172658588896,55.08720638162861,13.705272108782529,17.26740011847325,12.206491825090684,11.90804232928215,0.5553270259152612,0.7536480686695279,0.724934036939314,0.5452881976212259,0.1167279411764705,0.7176105508145849,0.9176755447941888,0.8727735368956743,0.64453125,0.1674008810572687,0.4967814161768821,0.663563829787234,0.6731967943009796,0.5149342891278376,0.1033681765389082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081539630286,0.0045111714853412,0.0067987863658964,0.0091226786947864,0.0112178998220188,0.01346245888451,0.0155889969617259,0.0177018253093225,0.0199750567357036,0.0222244971080513,0.0242854799688358,0.0264084687811239,0.0284721293944659,0.030510918829831,0.0326232790472062,0.0345693817001436,0.0364854648453277,0.0385405214793918,0.0403400116385401,0.0425655976676384,0.0575927703802646,0.0715249521458531,0.0851808757088797,0.0976724636158251,0.109497818894485,0.1251875647230382,0.1378769410143621,0.1495975074171354,0.1604640490090397,0.1710257042140339,0.1837020291727218,0.1964368773459387,0.2076101613815303,0.2185753502564719,0.2287069544258939,0.2396073391242687,0.2487280760476636,0.2578871005837298,0.2663642549330914,0.2737139782237844,0.2809916399754865,0.2875645851354826,0.2936805613071926,0.2987609049947272,0.3039052535681749,0.3096708960653029,0.3157565208680299,0.3207181722033207,0.3256239061385882,0.3289962088688691,0.3281837160751565,0.3267776096822995,0.3255397963351596,0.3245373048004627,0.3233125185845971,0.3216081943081452,0.3188233428480811,0.3195099893118474,0.3214414167537294,0.3225789153826904,0.3230694128912337,0.3242387669904834,0.3262436686912843,0.3272107470452354,0.3277270310763133,0.3292146596858639,0.3303699045223258,0.3343942019851899,0.3365428541307938,0.3406965174129353,0.3425540670293996,0.3457839050977877,0.3476848608368894,0.3546752648549056,0.3567373202119606,0.3581290169007379,0.3608836706318554,0.3652050345107592,0.3724176437744277,0.3790513833992094,0.0,2.31107880606748,56.42559515360095,182.44271703925952,267.6500318125163,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95691,44394,419.5274372720528,6320,64.83368341850331,4915,50.81982631595448,1996,20.53484653729191,77.34192318165195,79.71677185444342,63.32298576779221,65.07493036256542,77.0963164342532,79.47057894057444,63.23277862520853,64.98637454269303,0.2456067473987531,246.19291386898112,0.0902071425836794,88.55581987239702,143.81774,101.16434945754558,150293.90433792103,105719.81634379992,369.17627,240.94316996407775,385259.784096728,251252.30164182396,362.624,176.4685623113562,375147.5582865682,181534.4149182596,2841.8888,1304.7407510441278,2941999.937298178,1335633.5611960662,1203.23208,529.9757024438582,1245030.9851501186,541473.6961029434,1965.28924,816.2603608018485,2024235.42443908,828290.1227693874,0.38099,100000,0,653717,6831.541106269137,0,0.0,0,0.0,31799,331.7448871889728,0,0.0,33260,343.7522860039084,1664822,0,59752,0,0,0,0,0,65,0.6792697327857374,0,0.0,1,0.010450303581319,0,0.0,0.0632,0.1658836189926244,0.3158227848101266,0.01996,0.3275835981237706,0.6724164018762294,24.46242439666787,4.416907389023288,0.330824008138352,0.2115971515768057,0.2270600203458799,0.2305188199389623,11.28582110545814,5.713303682286493,21.025060980752404,12325.586021582669,55.79752793950936,12.413303695241954,18.648708500734912,12.346252433611763,12.389263309920729,0.5611393692777212,0.7807692307692308,0.7164821648216482,0.5716845878136201,0.1262135922330097,0.718944099378882,0.918918918918919,0.8482758620689655,0.7346153846153847,0.116591928251121,0.5051006341328922,0.7044776119402985,0.6683459277917716,0.522196261682243,0.1285714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025110618348976,0.0046827013713625,0.0066851293912373,0.0089077132467954,0.0111763090722341,0.0135916597096373,0.0158636298758232,0.0179102039149214,0.0198781136242791,0.0220447447908667,0.0245567984907053,0.02677086114477,0.0290354431942073,0.0309412188965019,0.0331754043704001,0.0353752611006555,0.0374034099148557,0.0395138355510348,0.0417307932282351,0.0436381823675902,0.0589617714643827,0.0726558818910004,0.085760466849292,0.0985426421844583,0.1109575309944605,0.1262804774805282,0.1382642118451509,0.1496260945522722,0.1605965043561922,0.1706743671769328,0.1833365681136917,0.1960034658290913,0.2083950187233301,0.2181788333150924,0.227957770512016,0.2382603878116343,0.2475548211334911,0.2564454752201031,0.2649761742682097,0.2730146730352908,0.2808243748336554,0.2878355292410662,0.2941587346687503,0.2995443098692888,0.3044709370860525,0.3093808931014507,0.3148284973639061,0.3192558755042054,0.3247741383556494,0.328784496083068,0.328160841991634,0.3277885822264521,0.3268601106469459,0.3259939280034697,0.3259433051690599,0.3246122992605747,0.3235219648056716,0.3238159386243038,0.3242337164750958,0.3255403066050363,0.3261745469537677,0.3262549027376094,0.3268238452825439,0.3275742296918768,0.3279272342268636,0.3280362632209659,0.3282681691423368,0.330579810289591,0.3357375442036343,0.3385018043383432,0.3418640529993647,0.3440546841882153,0.3465615141955836,0.3483631403455592,0.3489373654152233,0.3495419309372797,0.3524082741959837,0.3554890219560878,0.3617196056955093,0.3651748777735991,0.0,2.1117774863410763,56.498951294436274,191.1276755311889,266.1911805880579,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95723,44520,421.2049350730754,6151,63.02560513147311,4857,49.98798616842348,1935,19.74447102577228,77.32392886815877,79.68588060505631,63.31606620966248,65.06435143476548,77.08133947322783,79.44743581815342,63.22638956533415,64.97891202748704,0.2425893949309454,238.44478690288892,0.0896766443283354,85.43940727844301,143.9394,101.283558820839,150370.75728926173,105809.0101865163,370.19334,241.85667718774604,386022.0114288103,251951.1373314105,361.03264,175.19691128168787,372102.7861642448,179214.8277729949,2795.55048,1283.4778973545883,2879663.320205176,1300029.8124323185,1173.65332,518.9985155471311,1204996.8032761195,521091.36314901366,1898.93438,799.6104896618664,1940009.1931928585,799682.3363461711,0.38004,100000,0,654270,6835.0344222391695,0,0.0,0,0.0,31896,332.4592835577656,0,0.0,33048,340.10634852647746,1663316,0,59788,0,0,0,0,0,66,0.689489464392048,0,0.0,0,0.0,0,0.0,0.06151,0.1618513840648353,0.3145829946350187,0.01935,0.3323497437490293,0.6676502562509706,24.64902375535458,4.321143160524093,0.3304508956145769,0.2256536956969322,0.2186534898085237,0.225241918879967,11.35347566393164,6.0522806965496105,20.57656712562713,12319.56681951228,55.01711907791706,12.971529702064108,18.072938722492857,11.736447709065382,12.236202944294709,0.5540457072266831,0.7782846715328468,0.6722741433021807,0.5932203389830508,0.1179159049360146,0.7037331215250199,0.9331619537275064,0.8556701030927835,0.6940639269406392,0.1482889733840304,0.5016675931072818,0.693069306930693,0.6138044371405095,0.5670225385527876,0.1083032490974729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106880589909,0.0044915795557087,0.0069113199504739,0.0092462760877075,0.0114741424909468,0.0138696537678207,0.0158738250107048,0.0181897986056529,0.0203253279350571,0.0222791031022831,0.0243292289080041,0.0265303188977186,0.0286524997686827,0.0307977545449863,0.0329687338767929,0.0349475425086567,0.0370190066808224,0.0388603456328818,0.040982498466146,0.0430701270016565,0.0580276043515483,0.0718754577221652,0.0851396273109552,0.0978023133543638,0.1101187337874601,0.1261397533267046,0.1380598202633449,0.1497657580919932,0.1611604234092778,0.1710245607264229,0.1840229934550465,0.1962800756961341,0.2081077555280151,0.2181319221980473,0.2278191436710183,0.238112112688534,0.2472800312447693,0.2564333374590708,0.2655426884650317,0.2737833126920783,0.2809164551680979,0.2876561438046356,0.2947536902009603,0.3004032258064516,0.3056235016367907,0.3106975825857324,0.315582299109941,0.3203528317038661,0.3248842247272633,0.3284055748023167,0.3280389722552089,0.3258885488184851,0.3259178747370947,0.3256194517254862,0.3241767235606613,0.3226908522666339,0.3215054444163079,0.3225679465940591,0.3230572160546541,0.3232748621495744,0.3241607972426195,0.3251839544267743,0.3258518797937885,0.3252791015056939,0.3262192921248286,0.3271337646076794,0.3288236969524352,0.3339849908557735,0.3386846376402512,0.3421744324970131,0.3439170359541322,0.3464319897904924,0.3488240116022448,0.3515059092642013,0.3510930254566102,0.3558391983776691,0.3644376899696048,0.3672014260249554,0.3641449120937666,0.3733383972654766,0.0,2.972151759947895,54.49961043204458,183.84331639947575,270.1049520167198,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95796,44633,421.5416092529959,6136,62.84187231199632,4810,49.64716689632135,1942,19.87556891728256,77.4066300966336,79.74500066123836,63.35719594835807,65.08732737544597,77.16619225702217,79.50645390451736,63.26773932845538,65.00175040403514,0.240437839611431,238.5467567210071,0.0894566199026911,85.57697141083054,144.5708,101.75926646610873,150915.27829972023,106224.96395059158,370.80315,242.14248902361277,386511.5558060879,252204.63174204848,361.84865,175.44775137257338,374053.1963756316,180416.39802338823,2769.97568,1262.7548823388092,2859588.2500313167,1286223.185037799,1143.50302,501.8973149165276,1180685.508789511,510922.98730273487,1900.39538,794.2487036537951,1945860.4117082127,796521.5949711316,0.38171,100000,0,657140,6859.78537726001,0,0.0,0,0.0,31881,332.2163764666583,0,0.0,33123,342.1228443776358,1662753,0,59729,0,0,0,0,0,75,0.7829136915946385,0,0.0,1,0.0104388492212618,0,0.0,0.06136,0.1607503078253124,0.3164928292046936,0.01942,0.3336953149239838,0.6663046850760161,24.74887334737574,4.435236788353671,0.3249480249480249,0.2226611226611226,0.2272349272349272,0.2251559251559251,11.16647036723785,5.724603883246421,20.440414737663158,12357.271919724642,53.9787480247634,12.75899076174566,17.376259950377246,12.119792359974287,11.7237049526662,0.5505197505197506,0.7777777777777778,0.6852207293666027,0.5590118938700823,0.1228070175438596,0.7268370607028753,0.9194805194805196,0.8556962025316456,0.7137254901960784,0.1658986175115207,0.4884766722878021,0.6982507288629738,0.627568493150685,0.5119331742243437,0.1120092378752886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022392445336089,0.0046845531423009,0.0070326057174171,0.0090934029647541,0.0114522838457704,0.0136962587320013,0.0160274056401786,0.018139131322411,0.0201459585428676,0.022483523680871,0.0247199532657599,0.0268434338251893,0.0291276105903634,0.0312953602569513,0.033399651571536,0.035326311441553,0.0373788265965921,0.0393319579933859,0.0414532534050886,0.0435511410961186,0.0574535133668635,0.0714614403145851,0.0848305066979727,0.0975942994671515,0.1091022115455532,0.1248203567503592,0.1376601901612236,0.1499510867253626,0.1613402336872432,0.1718852099021992,0.1845004949855808,0.1967278704124224,0.2077536735936005,0.2177930190904722,0.2286395447204491,0.2395489853276385,0.2491133367535856,0.25755719183857,0.2661797892970141,0.2741287553648068,0.2806697037670836,0.2875239564343477,0.2935672376265733,0.2992083547911901,0.3049766831827455,0.311275415896488,0.31667960241356,0.3208442533268874,0.3248886125790073,0.3296983299227671,0.3287909421754953,0.3281256452256741,0.3287105548743534,0.3271715565833213,0.3271823040380047,0.3254327481803168,0.3241246487544596,0.3236520629936712,0.3250968004890972,0.3251117893392008,0.3269578847194491,0.327590953785644,0.3290123585436508,0.3308926624084748,0.3316198445905559,0.3325215679162672,0.3339470851509829,0.3386537560518507,0.3405458225727647,0.3437438384794353,0.3461642844219287,0.3484856465630761,0.3511335956529886,0.3554098854731766,0.3562355122855818,0.3594314342304555,0.3590214067278287,0.3558,0.3529087400055142,0.3543913713405239,0.0,2.203127605741371,54.78102328553626,173.1083167221875,272.8147597001935,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95689,44421,420.65441168786384,6079,62.43141844935155,4736,48.91889349873026,1843,18.842291172444064,77.29491858535671,79.69699844815221,63.29396199958445,65.07409994821188,77.06246245935208,79.46566636597966,63.20805019959796,64.99073322557771,0.2324561260046351,231.33208217255685,0.0859117999864977,83.36672263416744,142.93774,100.47069948942804,149377.3997011151,104997.12557287468,366.37803,239.4564233983316,382270.0414885724,249630.33723660145,357.50192,173.69316254891035,369482.6991608231,178340.270117781,2718.63248,1241.3977390056727,2810988.305865878,1267200.889345351,1139.20701,500.25020634751183,1177023.294213546,509280.080623177,1808.16156,760.0744026751074,1852106.6162254803,764932.4622522972,0.38072,100000,0,649717,6789.88180459614,0,0.0,0,0.0,31587,329.52585981669785,0,0.0,32718,337.938530029575,1671715,0,60051,0,0,0,0,0,64,0.6374818422180188,0,0.0,1,0.010450522003574,0,0.0,0.06079,0.1596711494011347,0.3031748642868893,0.01843,0.3315021189766128,0.6684978810233873,24.65383605084925,4.3381573171964805,0.3091216216216216,0.2362753378378378,0.2282516891891892,0.2263513513513513,11.31714969684319,5.9700139736739,19.58077466397541,12244.08155418666,53.598359918034646,13.330234923865651,16.505453554869273,12.131655963570685,11.631015475729043,0.5646114864864865,0.7828418230563002,0.6933060109289617,0.5966697502312673,0.1287313432835821,0.7409783480352847,0.935897435897436,0.8753315649867374,0.7423076923076923,0.1636363636363636,0.5015763829177414,0.700960219478738,0.6301747930082797,0.5505481120584653,0.1197183098591549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021794884791225,0.0043634002049783,0.0066825775656324,0.0090081846372833,0.0112992049838655,0.0136067595527605,0.0158884036083105,0.0180932142784168,0.0203687031959733,0.0222600108585418,0.0244137619760786,0.0267507679031876,0.0288228030458942,0.0310522518808615,0.0330515385171192,0.03494420716258,0.0368904271414064,0.038788180817708,0.0407486007947901,0.0428284049572132,0.0570951062829686,0.0706785179601536,0.0838239152106616,0.0968193344065317,0.1090878399763678,0.1243916373947268,0.1365175396699039,0.147423339011925,0.1588237808266017,0.1692345657818501,0.1819102406653308,0.1935061562763724,0.2053188944701763,0.2158369309798349,0.2250813759127298,0.2362587474532731,0.2454813228009104,0.2541331382589612,0.2623235638122708,0.2704072273686141,0.278332966638489,0.2849801584978988,0.291285815770779,0.2971377846020969,0.3029794682907261,0.3089179049217554,0.3141160553217078,0.3187232742822236,0.3233703387418161,0.328099042797247,0.3275984988095398,0.3264725683901018,0.3263344544674144,0.3254944420384004,0.3257906458797327,0.3233830083778775,0.3217354088070253,0.3224428083092295,0.3235399682100189,0.3236598362121374,0.3239621896904892,0.3250237981913375,0.3262304039003068,0.3272837401292175,0.3275057429573207,0.3277614755816391,0.328378300968093,0.3325540250221155,0.3366984417320341,0.3404932378679395,0.342607422321878,0.3462377027386333,0.3476864966949953,0.3502704349813362,0.3524651863003387,0.3605757792053295,0.3635394456289978,0.3642451298701298,0.3689214887258897,0.3733082706766917,0.0,2.297465102510696,54.57326512010789,175.36349176527085,264.6717717454407,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95723,44273,419.60657313289386,6293,64.61352026158812,4909,50.7192628730817,1954,20.00564127743593,77.3593554540744,79.73012905778579,63.33143217950936,65.08372356424375,77.11403143650537,79.48759130784718,63.2403384713093,64.99648337508019,0.2453240175690325,242.53774993860588,0.0910937082000629,87.24018916356613,142.96678,100.62757424055964,149354.67964856932,105123.71555484018,369.59591,240.557447317436,385532.1291643597,250728.09807197427,359.78022,174.35333603839229,372731.9244068823,179710.4574479876,2820.25304,1287.562828384845,2915116.492379052,1313944.1392192524,1166.41428,514.3410806090874,1203327.0478359433,522118.5614837475,1918.46916,810.5304621403274,1966012.0138315768,813512.480165756,0.37842,100000,0,649849,6788.8490749349685,0,0.0,0,0.0,31830,331.90560262423867,0,0.0,32907,340.6600294600044,1673337,0,60005,0,0,0,0,0,72,0.752170324791325,0,0.0,0,0.0,0,0.0,0.06293,0.1662967073621901,0.3105037343079612,0.01954,0.334500076091919,0.665499923908081,24.746371068375204,4.39761034594186,0.3194133224689346,0.2287634956202892,0.2267264208596455,0.2250967610511305,11.02279782505376,5.616999658531042,20.97996860141331,12204.733756951786,55.59599227955676,13.360695357190274,17.569456706129586,12.44485987980022,12.220980336436686,0.5593807292727643,0.7934105075690115,0.6779336734693877,0.6019766397124887,0.1104072398190045,0.7154213036565977,0.9191919191919192,0.8673740053050398,0.7276422764227642,0.1255230125523012,0.5056149000273897,0.7248968363136176,0.617968094038623,0.566320645905421,0.1062355658198614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661994084997,0.0041866453110586,0.0064639207687702,0.0085515224147386,0.01064641103078,0.0130717623464017,0.0150976094602171,0.0173325439438172,0.0194741469199157,0.02160136774537,0.0236578987848023,0.0257603303238529,0.0278406518786781,0.0298272184959663,0.0317208073636851,0.0338436411374936,0.0361934735795925,0.0381268474822382,0.0403039690625194,0.042206574726053,0.0565231919470375,0.0707497802151798,0.0843281233609566,0.0972039663929168,0.1089622591768514,0.1241788581765098,0.1362792227775832,0.148046804297137,0.1595062520038473,0.1699433379120879,0.1828604678728058,0.1949791066750384,0.2062036251278368,0.2162336667469193,0.2257336094465985,0.2353984852349216,0.2445888896334517,0.2536477258665107,0.2632373300651369,0.2718451051154265,0.280210562850697,0.2863255857456858,0.2925779679852457,0.2979889873114675,0.3030920829085967,0.3081375301709275,0.3133424276935784,0.3181754600134793,0.3223722537964605,0.3269502143092647,0.3262234893823043,0.3246513930526142,0.3238931834153197,0.3230518778903087,0.3225223088553556,0.3211569591643505,0.3197431325833478,0.3190566593564858,0.3196652862279939,0.3211825641208194,0.3209058581321355,0.3220774091627172,0.3232431298510593,0.3241012760422507,0.3269633444848251,0.3267269929851096,0.3273556664290805,0.3293609508496484,0.3320084417868448,0.3361921778836609,0.3411093357680895,0.3427642796248934,0.3458383671393145,0.348253774592039,0.3479241029494646,0.3512938674228997,0.3533891850723534,0.3546639919759278,0.3470332063146434,0.3512898330804249,0.0,2.2290761316238763,55.18194566148488,191.11417549513277,268.64493297297554,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95874,44536,420.8961762313036,6199,63.3644157957319,4834,49.679788055155726,1934,19.817677368212447,77.4394230829848,79.71856703602847,63.39129033748679,65.07678767924781,77.19781846101733,79.47937627521641,63.30236643069079,64.99129079450387,0.2416046219674683,239.1907608120647,0.0889239067959977,85.49688474394657,144.1429,101.29302305701924,150345.95406470992,105652.0310956057,369.98727,242.0957206382125,385151.5322193712,251758.03285604576,359.34725,175.20055950307932,369693.9420489392,178883.0214372913,2795.41768,1277.256399865371,2878176.439910716,1294749.1596382065,1163.5674,514.9041661493419,1197174.5102947615,520657.9816312716,1893.46944,792.6396232143651,1942932.3487076787,798925.4580216985,0.38022,100000,0,655195,6833.907002941361,0,0.0,0,0.0,31825,331.1429584663204,0,0.0,32955,338.6215240836932,1669017,0,59988,0,0,0,0,0,83,0.8552892337860108,0,0.0,0,0.0,0,0.0,0.06199,0.1630371889958445,0.3119858041619616,0.01934,0.3305110837438423,0.6694889162561576,24.66723364956357,4.422501557940788,0.3369880016549441,0.2184526272238312,0.2192800992966487,0.2252792718245759,11.143237397278494,5.768553203186895,20.67919170214662,12243.785609692695,54.55096343244973,12.476070236769951,18.43545638283382,11.751583152572376,11.887853660273578,0.5577161770790235,0.7897727272727273,0.6961325966850829,0.5613207547169812,0.1221303948576675,0.7285601888276947,0.935656836461126,0.8393665158371041,0.7068965517241379,0.1875,0.4967723828234633,0.7101024890190337,0.6427969671440606,0.5205314009661836,0.1052023121387283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025308766956873,0.0047529287770075,0.0069385974700494,0.0091279229152494,0.0113836177543781,0.0134307401151787,0.0158390628978864,0.0179518563851489,0.0200849985697356,0.0222795065365494,0.0243245181716651,0.0264308140608647,0.0285878701933945,0.0305937577204974,0.0328254190808057,0.0349217822293355,0.0369538904004717,0.0389796087533156,0.0408417511913042,0.0426831171263016,0.057528534945536,0.0716882954046768,0.0847652855003717,0.0974413892301069,0.1097940965935407,0.1254803834621394,0.1365355081290049,0.1480226108761714,0.158737941693759,0.1695896420737253,0.1823937227924974,0.1943847292290075,0.2052936257100344,0.2156747072190176,0.2250574434635385,0.2355772955146578,0.2455557660800463,0.2546138725077225,0.2635615879633826,0.2715995746967428,0.2790584865564076,0.2851921482536754,0.292334062296826,0.2974904815497713,0.3031575880446263,0.3082977177273343,0.3129682204184749,0.3177358682391216,0.3222927794518953,0.3273711523517247,0.3264529489282737,0.3255315641997692,0.3248281388385137,0.3239475241380306,0.3235067208688169,0.3230009328215558,0.3207538220739593,0.3209506494357361,0.3221566889404064,0.3237959583370426,0.3242056074766355,0.3247106606991463,0.3251718302797334,0.3256046816937762,0.327244034240352,0.3284478054104623,0.3296426346491476,0.3329171608714651,0.3359676913971381,0.3393483314290217,0.3425239558850118,0.3475619419937661,0.3512463985970186,0.3520097442143727,0.3547287702357284,0.3586165772212283,0.3622425274895462,0.3666734986677598,0.3703498056635202,0.3644646924829157,0.0,2.7543178649397064,54.848024036059215,178.54397121885688,270.39711848869075,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95741,44212,417.40738032817706,6263,64.21491315110559,4899,50.61572367115447,2021,20.785243521584277,77.34647984393533,79.69834720765388,63.33814763576003,65.07513732507908,77.09012765758533,79.44269355269974,63.24204346303828,64.98178915202213,0.25635218635,255.65365495414483,0.0961041727217519,93.34817305695252,143.49016,100.9014910219111,149873.26223874828,105390.0533960488,366.95278,239.48049787236565,382722.323769336,249585.57180182025,356.61965,173.70916609374154,369248.8380108835,178960.5463610164,2820.40776,1300.7783654861985,2914979.329649784,1328259.0848028653,1173.13347,527.2990058862736,1208583.0417480494,534230.738251925,1978.46236,840.7996381911503,2035361.7154615056,850042.5851360234,0.37821,100000,0,652228,6812.421010852195,0,0.0,0,0.0,31585,329.31554924222644,0,0.0,32712,338.4443446381383,1670583,0,59996,0,0,0,0,0,55,0.5640216835002768,0,0.0,0,0.0,0,0.0,0.06263,0.1655958330028291,0.3226888072808558,0.02021,0.3239951278928136,0.6760048721071864,24.658266323258395,4.420862242622281,0.3043478260869565,0.2284139620330679,0.2412737293325168,0.2259644825474586,11.136289695022532,5.665699007289524,21.69925628819588,12281.212702801444,55.68329325844831,13.365254238447625,16.902023135785484,13.132577595330686,12.283438288884517,0.5499081445192896,0.7685433422698839,0.6780684104627767,0.5939086294416244,0.1093044263775971,0.7011152416356877,0.8978622327790974,0.8530183727034121,0.6993006993006993,0.1556420233463035,0.4926842993809792,0.6905444126074498,0.618018018018018,0.5602678571428571,0.0952941176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002602795219769,0.0050583381483846,0.0071645304999949,0.0094776619735478,0.0114609392478695,0.0138153608079491,0.0160040774719673,0.0183508711050327,0.020330978933058,0.0224627071964616,0.0247132504433214,0.0269537905692525,0.0291160323237308,0.031393229032557,0.0333357407426513,0.035173126614987,0.0373031567395198,0.0392783408895205,0.0413301317034126,0.0434547121073243,0.0582984454443899,0.0721664590812513,0.0851474553332563,0.097572003911713,0.1094698886639676,0.1255154039709893,0.1371679538317915,0.1481134585705923,0.1583425862658011,0.1682869055402523,0.1819366091038284,0.1933812794030173,0.2052583527161272,0.2159586443567689,0.2254064571447416,0.2356184402816527,0.2451815829392344,0.2544325443254432,0.263687125476666,0.2714847106538501,0.2783601777284087,0.2853784068312083,0.2923352002936614,0.2984442658542144,0.3036239457501883,0.3087813112209066,0.3137370272537212,0.3189269746646795,0.3233264141152049,0.3275002973790988,0.3272862152684111,0.3268624020060346,0.3262715450365313,0.3255669237782376,0.3248887367339952,0.3237672841116619,0.3218190461099667,0.3222415662056959,0.3235777085970374,0.3250781738586616,0.3263453965872867,0.327815355405245,0.3292175885095124,0.3304429656516771,0.3305934532131321,0.3326694793113388,0.3342114305348757,0.3374215720276192,0.3414574101427868,0.3432154621581934,0.3460800438596491,0.3493384549722578,0.3534113796576032,0.355969750210068,0.3598334279765285,0.3606165611184131,0.3662166308683645,0.3689260922825643,0.3673986486486486,0.3722943722943723,0.0,2.1137141531428085,59.15336216868121,181.4611596106258,266.3277085213273,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95744,44624,422.2927807486631,6249,64.06667780748663,4873,50.3634692513369,1939,19.90725267379679,77.41222784566315,79.76848056752682,63.350809200748486,65.08979855541797,77.1689833809658,79.52420725495065,63.261264771477215,65.0018379970837,0.243244464697355,244.27331257616916,0.089544429271271,87.96055833427374,144.71556,101.7675414863467,151148.4375,106291.29917942296,371.9902,242.77638503666213,387980.3434157754,253028.2298754865,364.62128,177.14053276913103,377174.0056818182,182272.0459167586,2793.91872,1282.9467497471946,2888498.45421123,1310843.174858977,1170.47752,519.9532921905899,1209179.8546122997,529738.6073180452,1897.66226,795.3553617079533,1949639.517881016,805227.5909016662,0.38139,100000,0,657798,6870.383522727273,0,0.0,0,0.0,32057,334.255932486631,0,0.0,33395,345.2435661764706,1661871,0,59588,0,0,0,0,0,66,0.6684491978609626,0,0.0,0,0.0,0,0.0,0.06249,0.1638480295760245,0.3102896463434149,0.01939,0.3396864432831232,0.6603135567168767,24.669019981488777,4.3592667439866135,0.3209521855120049,0.2316847937615432,0.2220398112045967,0.2253232095218551,11.415595510177775,6.004956172631835,20.65570723331613,12329.193398602092,55.25054290114665,13.541811388734905,17.64655720165246,12.082742099160653,11.979432211598644,0.5548943156166632,0.7971656333038086,0.6758312020460358,0.5683918669131238,0.1202185792349726,0.7389312977099237,0.926829268292683,0.8605200945626478,0.749034749034749,0.1376146788990825,0.487229862475442,0.7232267037552156,0.6073619631901841,0.511543134872418,0.1159090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065424346769,0.0043987229514012,0.0067767723085663,0.0091396539117718,0.0114376925344909,0.0136814780882577,0.0157673726481439,0.0179178188422803,0.0202246272393741,0.0222517911975435,0.0245859637615807,0.0264022337193068,0.0284151657208652,0.0303691879923793,0.0327503482433059,0.0347101629041594,0.0367693502459228,0.0389060651961903,0.0409514799297202,0.0428967270151461,0.0575640209209825,0.0715795421253086,0.0850063985566534,0.0983947994025203,0.1101204920973221,0.1255357199547085,0.138407496630549,0.1495086295929557,0.1609463156095059,0.1708055203794724,0.1841143559393292,0.1964270246860112,0.2081940982464542,0.2186412103430911,0.2284499377595646,0.2386038464097957,0.2481224854716137,0.2564758086314082,0.2655054163922513,0.2729794795368566,0.2803441766742713,0.2870467897853615,0.2940898009420341,0.3003953042644945,0.3055916459231376,0.3107873443600133,0.3154190419041904,0.3203124007873515,0.3251437060001291,0.3295746108603834,0.3288467215974663,0.3278115272273494,0.3272068631442973,0.3260982284315137,0.3256223023709572,0.3244955455722226,0.3230301694274737,0.3228855477741319,0.3230821510491887,0.3243919758565595,0.3249543812609392,0.3260617722712011,0.3268921767074977,0.3279530447542186,0.3290584998205527,0.3310954429986002,0.3326538123955944,0.3346439493228484,0.3376550954970026,0.3417945690672963,0.3449943502824859,0.3473139295335692,0.3487266128527626,0.3503588968643747,0.3545209553015519,0.3586482985988461,0.3571753295953932,0.3661377786704157,0.3733260453675868,0.3674952198852772,0.0,2.018306562235382,57.758299696231205,185.0836319841028,261.71613715324725,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95739,44400,420.1109265816438,6000,61.56320830591504,4712,48.736669486834,1867,19.20847303606681,77.32373385663094,79.69503419306605,63.321321634088775,65.07578992639009,77.09326782379387,79.46427735095905,63.23468393112543,64.99123096130947,0.2304660328370715,230.7568421069988,0.086637702963344,84.55896508061755,144.93842,101.93542667604768,151389.1099760808,106472.20743484648,369.29141,241.44595943450776,385248.56119240855,251713.1675017577,354.52804,172.0813745404247,367404.9133581926,177457.70890601742,2701.4912,1239.3574101094262,2794143.368951002,1266935.2407163496,1105.21259,491.1924152575661,1140054.6381307512,498706.62452873547,1831.29752,775.5452850246528,1883986.5467573295,784440.9006615783,0.37934,100000,0,658811,6881.323180730945,0,0.0,0,0.0,31798,331.63078787119144,0,0.0,32477,336.37284701114487,1662250,0,59661,0,0,0,0,0,74,0.7729347496840367,0,0.0,0,0.0,0,0.0,0.06,0.1581694522064638,0.3111666666666666,0.01867,0.3261631612492033,0.6738368387507967,24.772534769192,4.525877635517654,0.314516129032258,0.2249575551782682,0.2345076400679117,0.2260186757215619,11.075650868464226,5.5254619103284766,20.060567352181767,12258.387713811228,53.43024916307055,12.525050973715318,16.880916519831377,12.325631095445926,11.698650574077933,0.5543293718166383,0.7783018867924528,0.7078272604588394,0.5746606334841629,0.0967136150234741,0.7105678233438486,0.9216216216216216,0.8522167487684729,0.7131782945736435,0.1282051282051282,0.4968060394889663,0.7014492753623188,0.6533457249070632,0.5324675324675324,0.0878459687123947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721377912867,0.0046751244840629,0.0069935038570848,0.0093896713615023,0.0116087416571707,0.0136906762827369,0.0159507200261085,0.0179138623063331,0.0202877506569999,0.0223257719289262,0.0245000512767921,0.0263841674454908,0.0284453314678408,0.0306368507831821,0.0328963666391412,0.0350253282332265,0.0370262964382256,0.0390517196659231,0.0408093242807681,0.0427207935647897,0.0575927163381222,0.0717440448779671,0.084079012242072,0.0970989186687423,0.109508293526515,0.1245783769495109,0.136728198599618,0.1481639124466625,0.1589734278879015,0.1687808958040683,0.1820903236922016,0.1946533089547878,0.2067229266807316,0.2175239469885841,0.2275162543042277,0.2380709816732185,0.2473741721115893,0.255900690894793,0.2645208104216505,0.2727501573316551,0.2802648608671536,0.2869211624075437,0.2926448684303851,0.2987387862164784,0.3039656135408825,0.3093483511608419,0.3138349818454989,0.3184897491404558,0.3233616756532559,0.3280023224205956,0.3271432034258935,0.3269606897881601,0.3264664410603496,0.3252992863450152,0.3236554659364862,0.322477317312408,0.3204473197197134,0.320510297783025,0.3210869972893261,0.3216169970055611,0.3220945035195447,0.3222292515123957,0.323101133025598,0.3233739473212685,0.3242195027943727,0.3251907200334413,0.3261547261547262,0.3296380519234413,0.3306761666255158,0.3349852130125489,0.3369111508646392,0.3385101483425266,0.3401243970550901,0.3429973922380733,0.3491914253478751,0.3535353535353535,0.3560812860175917,0.3603312462128862,0.3625715064015254,0.3612705702257941,0.0,1.8956572881171327,55.86247574202525,171.36997167005717,264.0668130543747,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95784,44624,421.9493861187672,6079,62.35905788023052,4769,49.23578050613881,1900,19.51265347030819,77.38153749659537,79.72272681839608,63.350937847410606,65.08288641811978,77.14465988821038,79.48496759316511,63.26378892004141,64.99698605860141,0.2368776083849866,237.75922523097395,0.0871489273691992,85.90035951837649,143.94424,101.30147065565568,150279.81708844902,105760.09631635314,370.88239,242.27439293435935,386672.1268687881,252403.35852998347,358.1198,173.7968559144858,369892.6125448927,178377.73044221566,2743.35312,1250.3848640385836,2835446.5881566857,1276764.286351147,1127.03059,496.57060408423257,1161581.3705838136,503470.491125816,1866.0314,781.0434084671203,1919117.4100058463,792813.3058195641,0.3823,100000,0,654292,6830.900776747681,0,0.0,0,0.0,31950,332.9992483086945,0,0.0,32816,338.6056126284139,1667412,0,59765,0,0,0,0,0,60,0.6264094211976948,0,0.0,0,0.0,0,0.0,0.06079,0.1590112477112215,0.3125514064813292,0.019,0.3288380116042026,0.6711619883957974,24.76013148354763,4.428776206862284,0.3155797861186831,0.2302369469490459,0.2254141329419165,0.2287691339903543,11.151431505151102,5.736109836319618,20.126259045303883,12354.036492542988,53.80944140443124,13.05053359398184,16.848383374694404,11.89276816779643,12.017756267958577,0.5481232962885301,0.7650273224043715,0.693687707641196,0.5665116279069767,0.1109074243813015,0.7003257328990228,0.9124668435013262,0.8622589531680441,0.6963562753036437,0.1286307053941908,0.495340299350466,0.6879334257975035,0.6401050788091068,0.5277777777777778,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0044904413404423,0.0067063025039568,0.0089068990382174,0.011082416576855,0.0133045593819029,0.0156562155991356,0.0178711764765919,0.0200903349751681,0.0223463687150838,0.0245424548603283,0.0267598694340087,0.0289738844334772,0.0309089411473992,0.0330885386583051,0.0350150330106315,0.0370761286851064,0.0391301193079929,0.0410529158789188,0.0429767209428226,0.0577990650304699,0.0721800422496914,0.0855372810465738,0.0984932859814655,0.1102997734576682,0.1262390362464334,0.1386775458302426,0.1504385265507893,0.1617261028234842,0.1724185976720756,0.1848260125499144,0.1968528632455523,0.2082921262837581,0.2187657072925544,0.2290399568865963,0.2386034051409214,0.2477086724795397,0.2571210179627257,0.2657972329326378,0.2729259640691154,0.2798283460377315,0.2868968420068047,0.2931773002650511,0.2986258371371407,0.3046080990832372,0.3104811398593648,0.3154645102425977,0.3199938961583947,0.3250168228169159,0.3303057067904082,0.3307150158713079,0.3302363936228697,0.3298323172877919,0.3284519734846843,0.3268810814825819,0.3248374512353706,0.322385984866436,0.3232901821514491,0.3238221632382216,0.325083183573246,0.3264051139231042,0.3272275077967707,0.3281361182035076,0.3299993287239041,0.3312750774849234,0.3327425324506073,0.3330582275599066,0.3363624968663825,0.3374130153512606,0.3409315762396612,0.342597638510445,0.3476301558689428,0.3506935687263556,0.3573335367248875,0.3617001225143719,0.3679848448969927,0.3715505412410428,0.3739903069466882,0.3781838316722037,0.3857087975412985,0.0,2.1233852013546266,53.91444618868996,180.03992581430765,264.8717704759816,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95849,44490,420.4425711275026,6229,63.704368329351375,4825,49.68231280451543,1897,19.426389425033125,77.37299817448195,79.67546203147198,63.35320242165369,65.05766382974335,77.14287494322875,79.44739971402325,63.2675170457156,64.97537980510614,0.2301232312532022,228.06231744873173,0.0856853759380911,82.28402463720386,142.99428,100.5888081390326,149187.03377187034,104945.07834096612,366.42564,239.33683111608372,381650.2936911184,249057.56045037895,357.86826,173.7740250051107,369142.8183914282,178073.2887913386,2787.58444,1270.6382101283814,2871738.1714989203,1289241.0089369705,1144.99024,498.31361798286247,1178162.881198552,503538.93672897824,1868.213,778.4285306106528,1915088.2951308829,782617.4523415619,0.38082,100000,0,649974,6781.228807812287,0,0.0,0,0.0,31495,327.9116109714238,0,0.0,32795,337.89606568665295,1674399,0,60068,0,0,0,0,0,59,0.6155515446170539,0,0.0,1,0.0104330770274076,0,0.0,0.06229,0.1635680899112441,0.3045432653716487,0.01897,0.3348166334202854,0.6651833665797146,24.73592934946482,4.392572885494696,0.3394818652849741,0.2194818652849741,0.2136787564766839,0.2273575129533678,11.06480470017587,5.607462259502303,20.15546433910204,12271.56750334174,54.39250854466348,12.687855697876904,18.33690550845481,11.456448277479756,11.911299060852,0.5589637305699482,0.789423984891407,0.6941391941391941,0.5732298739088264,0.121239744758432,0.7203525641025641,0.8992248062015504,0.850356294536817,0.6982758620689655,0.1490384615384615,0.5026558568632933,0.7261904761904762,0.6400986031224322,0.5369211514392991,0.1147356580427446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0043783635866095,0.0065224227300853,0.0086205145909063,0.0108675761950267,0.0130598534201954,0.0152273399039882,0.0173284756452254,0.0196180608772951,0.0218347760247201,0.0240766354182675,0.0263576389957626,0.0284158059709161,0.0304368412384716,0.0324728877159704,0.0344094016564429,0.0365323732075237,0.0386938995450824,0.0408631629230401,0.0427513161454106,0.0570367975975725,0.0705686876920183,0.0834119052108869,0.0964022430848717,0.1085344791271746,0.123831454858507,0.1361603831563778,0.147764240607259,0.1590300235876746,0.1693687515403491,0.1829129180835952,0.1961176381578236,0.2074358249831547,0.2175419800594717,0.2276538156852389,0.2376838561049087,0.2473922017069225,0.2567024807335321,0.264919743633373,0.2721953788728846,0.2792663605981058,0.285802859081444,0.2932083422105437,0.2998550325278253,0.305041527028996,0.3104017543643509,0.3153223080486247,0.3190677319220396,0.3239174056573241,0.3287228285974475,0.3280446084637556,0.3268346413327826,0.3259572667653903,0.3250683524527319,0.3241186611973128,0.3235712864163133,0.3225668618452287,0.3233581073321192,0.3239996587321901,0.3244024775538618,0.3247253878253709,0.3260680723367291,0.3268349823247641,0.3263244737780949,0.327513949756927,0.3287845705967976,0.3313295917495228,0.3330925763095088,0.3368373103472441,0.3386128446164784,0.3422085834198294,0.3451444262554787,0.3466390510261721,0.3512072511234671,0.3486031417552441,0.346104125044071,0.344927536231884,0.3527975584944048,0.3525658807212205,0.3553183377811666,0.0,2.5659110176378936,54.244528645042166,178.19839043218653,272.21391253815705,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95790,44040,416.4735358596931,6159,63.08591711034554,4840,49.93214322998225,1890,19.375717715836725,77.39816222968327,79.72631261907952,63.35848721039546,65.07898404214352,77.17037995789195,79.4995056952051,63.27314065255985,64.99636820254696,0.2277822717913125,226.8069238744204,0.0853465578356065,82.61583959655638,143.84304,101.21057608430996,150164.98590667083,105658.81207256492,368.63301,239.63523766488845,384261.5826286669,249594.6122679813,356.77401,172.57116543804634,367864.9128301493,176795.70264431342,2772.072,1263.1423734691884,2863941.162960643,1288709.7218495656,1180.13667,519.7644189234486,1219262.8666875458,529896.2542915682,1859.90846,779.0081414369139,1909821.463618332,787601.6953255085,0.3771,100000,0,653832,6825.681177575947,0,0.0,0,0.0,31788,331.24543271740265,0,0.0,32693,336.74705084038,1671728,0,59939,0,0,0,0,0,66,0.689007203257125,0,0.0,0,0.0,0,0.0,0.06159,0.1633253778838504,0.3068679980516318,0.0189,0.3335392217418159,0.6664607782581841,24.6783416070383,4.381242364621585,0.3221074380165289,0.227892561983471,0.2241735537190082,0.2258264462809917,11.32767971088551,5.932274972033636,20.060792674008862,12248.162230458838,54.58752844780773,13.201903227729574,17.526881799104295,11.841897690114706,12.016845730859156,0.5574380165289257,0.7833182230281052,0.7036561898652983,0.56036866359447,0.1180237877401646,0.722397476340694,0.9121140142517816,0.8666666666666667,0.7161572052401747,0.131578947368421,0.4988801791713326,0.7038123167155426,0.649272882805817,0.5186915887850467,0.1144508670520231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022482834052378,0.0044085454840278,0.0065941646715091,0.0088248436103663,0.0110506785950287,0.0133327905225232,0.0154379171549396,0.0175080602375219,0.0195956231673801,0.0216799672600777,0.0237170752696984,0.0259412422653436,0.0278711268691228,0.0299403046521202,0.0325271145201864,0.0344749235726679,0.0365389390052139,0.0385217598689326,0.0403225806451612,0.0423318441688275,0.056585661070359,0.0706045996004894,0.0839134446028684,0.0970982963920505,0.1093962490907365,0.1242692376814352,0.1366418124158119,0.148343637930851,0.1588132262474367,0.1699424196609515,0.1828549889612837,0.1947650208209399,0.2063016079965232,0.2169980336464933,0.2270234628276279,0.2373175778094953,0.2469892952720785,0.2554091134002069,0.2638247671767414,0.2718621163536417,0.2790264770493699,0.2863321293731224,0.2927412387118154,0.2989359662576687,0.3038374224563874,0.3091036707754067,0.3146089891854722,0.3186348036100165,0.3229305546566565,0.3268807278960902,0.3267915791740698,0.3255692443075569,0.3249922550483003,0.3238830747022735,0.3227838719241032,0.3213903743315508,0.3196739439512179,0.3202423845397969,0.3213840877680902,0.3216111734630253,0.3226819150128938,0.324273109492509,0.3265169573035587,0.3292655769830312,0.3300755113744982,0.3312658950537188,0.3328339222614841,0.3353426197763758,0.3377382111559326,0.3416915579311429,0.3453829796860154,0.3496246522127146,0.3518162061471592,0.3540723981900452,0.3530399104811637,0.3563164108618654,0.3560628968853946,0.354175070592981,0.3537995594713656,0.3501326259946949,0.0,2.307203281999856,55.42148630743935,178.6559743490291,270.342996532066,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95888,44685,421.5647421992324,6194,63.5950275321208,4892,50.54855664942433,1924,19.710495578174537,77.3584022892406,79.64254156662837,63.35300198276878,65.04247994188177,77.12556911831963,79.41032986085233,63.2666375056255,64.95871269926116,0.2328331709209692,232.211705776038,0.0863644771432774,83.76724262060975,143.121,100.77320672901752,149258.50992824964,105094.7008270248,367.34713,239.7682449493685,382622.94551977306,249573.63412023208,363.89112,176.14105231764108,377195.4572000668,181761.0603609235,2787.3142,1269.301725721152,2880580.4688803605,1297521.864787137,1149.21816,499.1488114709216,1183519.2307692308,505749.5941060927,1878.26158,779.5301478710909,1926351.4725513095,784371.483777178,0.38199,100000,0,650550,6784.477724011346,0,0.0,0,0.0,31593,328.97755715000835,0,0.0,33349,345.4864008009344,1671652,0,60004,0,0,0,0,0,65,0.6674453529117303,0,0.0,0,0.0,0,0.0,0.06194,0.1621508416450692,0.3106231837261866,0.01924,0.3256422088909398,0.6743577911090601,24.596610131706885,4.307349279690304,0.3152085036794766,0.2434587080948487,0.2266966475878986,0.2146361406377759,11.13084474369426,5.873532489318437,20.32235454499288,12343.955767346284,55.46342005066118,14.184304778881351,17.392639285357838,12.509068111537529,11.377407874884476,0.5764513491414555,0.7867338371116709,0.7127107652399481,0.6005410279531109,0.1123809523809523,0.72890625,0.9142857142857144,0.8621553884711779,0.7019607843137254,0.1262135922330097,0.5224252491694352,0.7172503242542153,0.6605424321959755,0.5702576112412178,0.1090047393364928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0047218084729103,0.0069681816798693,0.0092700707693244,0.0116080504167513,0.0139630975279618,0.0158115652634581,0.0180937324697842,0.0202873099660006,0.022582524867357,0.0245785007216927,0.0269422402657316,0.0291269115819528,0.0312509643771923,0.0333374554298316,0.0355892829487378,0.037632795771224,0.039590415388442,0.0414568037136655,0.0435185185185185,0.0583673001344772,0.0719494358545758,0.0854494999738206,0.0977835176027131,0.1102158182450153,0.1259242827565808,0.1374903298962517,0.1490563028337498,0.1606553877354966,0.1706937952917971,0.1843711975190325,0.1965883154672406,0.2080357434041026,0.2188845893181172,0.2290642831227942,0.239680853418321,0.2497323221057327,0.2591722230342826,0.2676355138066389,0.2741521539871677,0.2809415250020252,0.2878736472652822,0.2943956226164815,0.3001079395538498,0.3051317277181379,0.3109348399990131,0.3148438185212565,0.3195051409787608,0.3242415591830379,0.3282956498743885,0.3271658215557234,0.3257823157372576,0.326376942384162,0.3252813376920184,0.3244059575354491,0.32365438007148,0.3220752862080994,0.3222518167768242,0.3239099185433637,0.3252383843434163,0.32609999250431,0.3264987345776653,0.3272959771922101,0.3283348604375712,0.328780300115429,0.3298939598710885,0.3317041288965929,0.3352231793265466,0.3398489404853486,0.341477902740377,0.3456514813634915,0.3483942648537114,0.3505978602894902,0.3504332489839736,0.3495016611295681,0.3529482406629038,0.3599875544492844,0.3559183673469387,0.359504132231405,0.367816091954023,0.0,1.8287915878485088,56.60238477082296,185.0514837377381,270.87207048851207,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95725,44290,418.7829720553669,6262,64.2674327500653,4895,50.46748498302429,1965,20.17236876469052,77.38965647392791,79.75645012054251,63.34469261111818,65.09387275709516,77.14943745156448,79.51676312827833,63.256358073188046,65.00790654682359,0.2402190223634335,239.68699226418263,0.0883345379301374,85.96621027156459,143.95568,101.196171935624,150384.39279185166,105715.3405090792,370.42018,242.26502846605487,386244.8681117785,252372.28632446844,365.11547,177.46836188461418,376673.3246278401,181827.1121325363,2809.38196,1295.9315214322332,2898386.085139723,1317739.0783231603,1181.26517,524.9309241685766,1216573.1000261165,531266.8691129395,1919.21612,803.2681294232051,1971298.971010708,811935.2487036157,0.37816,100000,0,654344,6835.65421781144,0,0.0,0,0.0,31838,331.8568816923479,0,0.0,33431,344.52859754505096,1667328,0,59852,0,0,0,0,0,78,0.8043875685557588,0,0.0,0,0.0,0,0.0,0.06262,0.1655912841125449,0.3137975087831364,0.01965,0.3263846622032866,0.6736153377967133,24.83952532444442,4.372471080537292,0.3246169560776302,0.2294177732379979,0.2253319713993871,0.2206332992849846,11.286621405686844,5.866445176094675,20.98637742898022,12222.26394759572,55.67145103494772,13.44221697130584,18.02315113873477,12.274999649482844,11.93108327542428,0.5675178753830439,0.7845057880676759,0.6998112020138452,0.5847688123300091,0.1296296296296296,0.7338345864661654,0.9002433090024331,0.8785046728971962,0.7394636015325671,0.1608695652173913,0.5054698457223001,0.7176966292134831,0.6339362618432386,0.5368171021377672,0.1211764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002663884612268,0.0047849315207363,0.0070936380519388,0.0094276367921653,0.0118404589703683,0.0141847582583194,0.0161906995238629,0.0183848674472494,0.0204636519748139,0.0228163737422333,0.0250722647040734,0.027102774954572,0.029000257003341,0.0310044792256603,0.0330263117180489,0.0349838257939829,0.037132531867085,0.0389882557994771,0.0411690727864218,0.0429382651732221,0.0579667776861316,0.0716633174244327,0.0851903143228838,0.0977223712587449,0.1093787909155159,0.1254111450720759,0.1376270395281237,0.1493604614042182,0.1599196984420216,0.1694242791425844,0.1822791624051246,0.1943819495522,0.2065531711347379,0.2173337852464931,0.2268036700477458,0.2375358451710049,0.2472347352928058,0.2561601815750738,0.2633601632467974,0.2711143141494217,0.2778921081231068,0.2851099138686643,0.2914657780298733,0.2964151056316955,0.3026394029488501,0.3078107106355207,0.3127790771847756,0.3174482048151398,0.3218860795528066,0.3262684480552881,0.3255382131324004,0.325102824050511,0.3239773655020973,0.3224818741153701,0.3211658261643429,0.3192667003042674,0.3170673912356639,0.3173673272349408,0.3186895390945102,0.3193269845782105,0.320611682312621,0.3206600841823689,0.3200341858962333,0.3208764319875431,0.3211645654410182,0.3222548230467634,0.3243212573406338,0.3273794575590156,0.3291774952588326,0.333412935323383,0.3351917013206599,0.3372012191861397,0.3410437413336695,0.3419209039548022,0.3480959881404614,0.3509716693982674,0.3528879505353642,0.3553077076279625,0.3556338028169014,0.3563044301400984,0.0,2.48403309297672,58.203263864022894,185.1311727785293,263.4525603698795,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95763,44432,420.4024518864279,6224,63.86600252707204,4896,50.56232574167476,1951,19.95551517809592,77.34687979821054,79.70618341353571,63.33382307926016,65.08143309371961,77.10227626351512,79.46415559857248,63.24187992478799,64.9934679373983,0.2446035346954147,242.02781496323664,0.0919431544721689,87.9651563213173,143.49522,100.92271918618692,149844.11515929952,105388.00913315886,370.05335,241.22971074180975,385861.7733362572,251338.8551854108,360.64371,174.52133677401346,373600.2840345436,179939.89934681228,2840.71404,1298.7436609404012,2933517.7887075385,1323365.3517167792,1168.84269,516.2734701929522,1202329.18768209,520914.0815657218,1924.20356,813.992529060954,1968938.3791234607,814132.0887567274,0.3795,100000,0,652251,6811.096143604524,0,0.0,0,0.0,31914,332.6754592065829,0,0.0,33048,342.11543080312856,1669877,0,60038,0,0,0,0,0,52,0.5325647692741455,0,0.0,0,0.0,0,0.0,0.06224,0.1640052700922266,0.3134640102827764,0.01951,0.3380821078431372,0.6619178921568627,24.518745604069515,4.411811500843104,0.326797385620915,0.2220179738562091,0.2195669934640522,0.2316176470588235,11.0468325419816,5.576915602926419,20.88233814972088,12238.840135532786,55.64058862680836,13.01007338885146,18.22125248991207,11.916713414091966,12.49254933395286,0.5533088235294118,0.8160073597056118,0.693125,0.5469767441860465,0.1102292768959435,0.7129629629629629,0.9405684754521964,0.8073394495412844,0.7154811715481172,0.1581196581196581,0.4958333333333333,0.7471428571428571,0.6503436426116839,0.4988038277511962,0.0977777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0042692572912018,0.0064060913705583,0.0086181489273046,0.0107939285423618,0.0130038084764057,0.0150779896013864,0.0172927725602286,0.0194332563227085,0.0215526067903509,0.0235397849021397,0.0256181205848529,0.0279514603044014,0.0300186457614372,0.0322524047392973,0.0341968697665763,0.0364206863699438,0.0383953025147315,0.0405222778967503,0.0426342865473934,0.0568771332839263,0.0705924197884738,0.0840000419423502,0.0963472959478635,0.1089128739169846,0.1250871890258079,0.1372145779888481,0.1488707893841442,0.1606959972689255,0.1705801696803496,0.1839336431706687,0.1958605782221021,0.2064735538267634,0.2158327599200498,0.2255636619346899,0.2353487960339943,0.2445718236665142,0.2539636134661659,0.2627008989376191,0.2711984787041492,0.2784946360995706,0.2856557808642336,0.2915769039558722,0.2973747302805082,0.3027900539070468,0.3080662629842958,0.3131404121157527,0.3179534789078099,0.3231012125839556,0.3279025624802277,0.3274676783576166,0.3271601541001651,0.3262427322512072,0.3252389339647157,0.324896080760095,0.3234155225982215,0.3214822550276103,0.321608040201005,0.3227901095333299,0.323085163363685,0.3233000974585801,0.3240356083086053,0.3265066554868462,0.3276367953053956,0.3280237125575342,0.3298896270335303,0.3302382720987372,0.3332175560467319,0.3370253164556962,0.3387507966857871,0.3441519798580911,0.3459427779849752,0.3481640649687164,0.3531830642704843,0.3565477862023776,0.3591081593927894,0.3617479612248038,0.3716577540106952,0.3766233766233766,0.383054892601432,0.0,2.151522056626507,57.07616655288341,187.53876146917037,266.2396593421238,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95750,44181,419.2584856396867,6146,62.87206266318538,4838,49.911227154047,1921,19.62402088772846,77.36211040614715,79.72288813242557,63.32787542470121,65.07511884764608,77.13535984381414,79.49903825962855,63.24406119243218,64.99510732159052,0.2267505623330095,223.84987279701815,0.0838142322690274,80.01152605555717,143.91366,101.14842386418306,150301.24281984335,105637.81771716244,363.70487,236.6966494791725,379230.40208877285,246585.18243255615,353.42088,171.45770761207856,364856.87728459534,175817.2692446368,2779.83392,1266.386810200204,2869796.637075718,1289198.088981937,1169.66027,512.5846709181953,1204314.91383812,518211.302997224,1888.39074,782.25600571585,1931678.182767624,783472.9261524997,0.37972,100000,0,654153,6831.874673629243,0,0.0,0,0.0,31338,326.6527415143603,0,0.0,32450,334.8093994778068,1671769,0,60052,0,0,0,0,0,70,0.7101827676240209,0,0.0,2,0.02088772845953,0,0.0,0.06146,0.1618561044980511,0.3125610152945005,0.01921,0.3284184386155517,0.6715815613844482,24.445381713525908,4.466081919107326,0.3261678379495659,0.2277800744109136,0.2205456800330715,0.2255064076064489,11.431692336237738,5.7759087862006,20.314259431430145,12244.600990519992,54.56673261829367,13.18636491391056,17.774420580607696,11.827184819705858,11.77876230406956,0.5661430343116991,0.7976406533575318,0.6939163498098859,0.5801312089971884,0.1338221814848762,0.7557861133280128,0.9209183673469388,0.8859223300970874,0.7364016736401674,0.2142857142857142,0.499860529986053,0.7295774647887324,0.6260720411663808,0.535024154589372,0.1146424517593643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694345663252,0.0046747926257934,0.0069333062633235,0.0090939573447676,0.0111489751284268,0.0132297225730231,0.0150918768992311,0.0171016090827411,0.0190693346693796,0.0213709347095928,0.0234945442612191,0.0254843149742178,0.0276640398345713,0.0294923847406277,0.0312100070181232,0.033300594468855,0.0353215284249767,0.0374547378687112,0.0393027171992266,0.041352874389342,0.0559307702746432,0.0695521170082546,0.0819280140951422,0.0950913470134732,0.1072423104510358,0.1223559522802267,0.1349160885154774,0.1468142864746899,0.1580960521395373,0.1689077612644491,0.1816243228398186,0.1932146528867485,0.2050169152280564,0.2158209640899992,0.2261366262752996,0.2367429698406719,0.2465299103304262,0.255369659874661,0.2642464121617789,0.2722661170273674,0.279374153753573,0.2862054850593533,0.2926595518114484,0.2979394171871066,0.3035317542219578,0.3089416867944989,0.3143647376852223,0.3196158249586566,0.3239618929274102,0.3289591686009707,0.3286876195093049,0.3275095954107111,0.3271166162291505,0.326409452686013,0.3265533367975651,0.3248236068383917,0.3236978672235934,0.3245516246434309,0.3261643858961468,0.3271219321195294,0.3282586767288079,0.3292404565131838,0.3303983141026979,0.3303925500155951,0.3304510287671561,0.3315492738184936,0.3322553191489362,0.3361907145538731,0.3391119327496599,0.3404674628512869,0.3420136534201365,0.3457575438965408,0.3482984701842023,0.3524774774774775,0.356017059150751,0.3610490415147595,0.369558645707376,0.3729922665080309,0.3734194242668819,0.3716915995397008,0.0,2.3502372229754585,54.733306334575104,180.6920482979044,270.0409267668122,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95767,44798,423.83075589712536,6182,63.48742259859869,4777,49.369824678647134,1884,19.35948708845427,77.32840490063373,79.6890463981356,63.31625382636724,65.0650228175939,77.09150089706951,79.45207257894782,63.22868466109284,64.97949547226006,0.23690400356422,236.9738191877815,0.0875691652743952,85.5273453338441,144.16952,101.54409402798488,150541.96121837376,106032.44753201508,368.70998,240.7476587615354,384481.0007622668,250862.61317733183,360.96144,175.277585030021,373607.4639489594,180532.6997792321,2730.18388,1254.7426043693104,2823335.5957688973,1282678.2966672345,1119.23189,494.9181753307562,1155901.1246045087,504005.63516127167,1835.52024,765.7479685661241,1887747.7836833147,774593.4984149404,0.38203,100000,0,655316,6842.816419016989,0,0.0,0,0.0,31794,331.4502908099868,0,0.0,33151,342.8947340942078,1662668,0,59714,0,0,0,0,0,45,0.4698904633119968,0,0.0,2,0.0208840205916443,0,0.0,0.06182,0.1618197523754679,0.3047557424781624,0.01884,0.3274295395040813,0.6725704604959187,24.771286351766683,4.369166306630768,0.3376596190077454,0.2227339334310236,0.2265019886958342,0.2131044588653967,11.315279552307096,5.966855743845716,20.014398089518373,12316.726450050708,54.10623927726159,12.719294141427069,18.329446309461492,11.926664571709807,11.13083425466322,0.5645802805107808,0.8016917293233082,0.6931184128952262,0.55637707948244,0.1218074656188605,0.727760736196319,0.9057591623036648,0.8486842105263158,0.7215686274509804,0.1516587677725118,0.5033112582781457,0.7434017595307918,0.6318063958513397,0.5054413542926239,0.1140024783147459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0041785837440921,0.006558908337733,0.0087298522327689,0.0112612154381396,0.0135470990873533,0.0161323217490618,0.0182647935639318,0.0204768038602302,0.0226625995455196,0.0248065193993132,0.027075589872066,0.0292575071986836,0.0313941990771259,0.0332896488385771,0.0351232621840922,0.0372229755607771,0.0389732953072336,0.0407868484495801,0.0430548756990949,0.0582224309795939,0.0722914248062502,0.0854242904027429,0.0982267677139283,0.1103524577208787,0.1256064177227231,0.1378352297430568,0.1496440088119791,0.1603934804434665,0.1712113576169592,0.1838704118559365,0.195555507470599,0.2075980765464871,0.2184102889389531,0.2281723318069743,0.2386823070703042,0.2481836545651373,0.2570206539478867,0.2654268424219717,0.27315753887762,0.2802004490428905,0.2857827999251356,0.2923756408890152,0.2988264375539983,0.3043319675619156,0.310086697004452,0.3156442794803631,0.3201865609827584,0.3240866824884255,0.3287385460402968,0.3280489613243283,0.3265351088588071,0.3257821536378255,0.3252836187585808,0.3245646645947031,0.3225944951314881,0.3218259629101284,0.3229392803105059,0.3235550690180114,0.3241639408726116,0.3248439871816495,0.3254040384083455,0.3263404237536044,0.3266277744249983,0.3275659048854925,0.3305378304466727,0.3311488488716663,0.3336160321648448,0.3377205264631756,0.3416858298310998,0.3443025317031044,0.3452041785375119,0.3486164032731588,0.3533146874291329,0.3550378894190289,0.3602491772449459,0.3675642781074091,0.3685388685388685,0.3657931034482758,0.3631393986723936,0.0,1.979826550099836,57.43284611238266,174.79651801773394,261.49109206777604,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95747,44393,420.9949136787576,6115,62.73825811774781,4831,50.048565490302565,1976,20.366173352689906,77.31464774318667,79.68014987768412,63.30648041847581,65.0557724770844,77.06737938599004,79.43061099594145,63.21494037778432,64.964974150934,0.2472683571966314,249.5388817426658,0.0915400406914841,90.79832615040571,143.59026,100.9662348946653,149968.41676501615,105451.06885298266,369.80693,241.5094698526384,385816.2762279759,251820.85083843308,360.29521,174.5065667149792,373732.41981472005,180313.2459161934,2802.78364,1282.2090759535236,2903438.35315989,1315399.9729098028,1178.33283,520.7883856438176,1220316.6574409644,533715.637382946,1941.226,816.8550029360722,2001527.107898942,831938.3404281855,0.37914,100000,0,652683,6816.746216591642,0,0.0,0,0.0,31822,331.92684888299374,0,0.0,32939,341.46239568863774,1665548,0,59762,0,0,0,0,0,75,0.7833143597188423,0,0.0,0,0.0,0,0.0,0.06115,0.1612860684707495,0.3231398201144726,0.01976,0.3244722439405785,0.6755277560594214,24.48545802378045,4.4730961407177965,0.3231215069343821,0.2204512523287104,0.2270751397226247,0.2293521010142827,11.398115285072668,5.967118106119252,21.05424645973688,12237.52018649046,54.626983816091,12.63383469303518,17.58909822131898,12.181077306846818,12.222973594890014,0.5634444214448354,0.7727699530516432,0.7046764894298526,0.5979945305378305,0.1290613718411552,0.7054515866558178,0.898876404494382,0.875,0.6907630522088354,0.1625,0.5149916712937257,0.7094499294781382,0.64910790144435,0.5707547169811321,0.1198156682027649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023502000709112,0.004633431679695,0.0069225928256765,0.009114927344782,0.0111094155348695,0.01342760503688,0.0154966792830107,0.0178268771313634,0.0199640177457935,0.0220097457106588,0.0242276972921985,0.0265011499917857,0.0285029521282067,0.0303033425380208,0.0322560667210288,0.0342799251548075,0.0361181294785237,0.0381334827543269,0.0400528214779615,0.0418698170604658,0.0560137815827939,0.070259351516547,0.0835982166273275,0.0967769073032231,0.1089143363279767,0.1245002009773847,0.1360601976162932,0.147857933736479,0.1585968062592188,0.1694333265374008,0.1819789510006901,0.1943658919768134,0.2056433162653884,0.2160947757186537,0.2260728619944427,0.236533827823982,0.2463529780283707,0.2553805892704056,0.2639895341561913,0.2724787188824685,0.2795234946816531,0.2862686252212753,0.2925241071746273,0.2978950781090524,0.3035471000389256,0.3089899426173875,0.3134352655371477,0.3175962933733866,0.3223371612786286,0.3267927314924704,0.325880959431448,0.3256597494396083,0.3262432299359921,0.3251634694496167,0.3244359896560949,0.3227886883789331,0.3214257425742574,0.3217935657717459,0.3224477234257185,0.3228634691618156,0.3236811012546651,0.3243291344499595,0.3254806787036843,0.3264112182922472,0.3275182622068435,0.3276189979939035,0.3304494317857346,0.3332075708985726,0.3371669004207573,0.3400031761156106,0.3428779865037388,0.3452621503775391,0.3459027821788453,0.3480930089785895,0.355646155304826,0.3530183727034121,0.3553604436229205,0.3594555578469787,0.3556729699666296,0.3624658603199375,0.0,1.56457848312986,54.44138361709251,189.4853592608366,263.57069221783803,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95822,44399,419.25653816451336,6188,63.461418045960215,4807,49.67543987810732,1971,20.235436538581958,77.3504688262772,79.68182965039287,63.33176974345843,65.05955540786792,77.10574185386736,79.43667172464717,63.24107921986975,64.97075587924304,0.2447269724098362,245.15792574570128,0.0906905235886839,88.79952862487528,143.41888,100.87669665471796,149672.1838408716,105275.08991120824,368.62046,241.5023510910117,384173.5196510196,251522.12526223797,358.90139,175.17938563337498,371192.7845379975,180228.3150375967,2786.17672,1288.6610243401624,2879255.035378097,1316927.3977237486,1197.58841,535.6647288424559,1236014.6626035776,545638.6461672499,1941.64876,817.4084565208349,1995053.3697898183,827400.011948266,0.37894,100000,0,651904,6803.281083675983,0,0.0,0,0.0,31680,330.0912107866669,0,0.0,32887,339.93237461125835,1667798,0,59974,0,0,0,0,0,70,0.7200851578969338,0,0.0,0,0.0,0,0.0,0.06188,0.1632976196759381,0.3185197155785391,0.01971,0.3295296838858905,0.6704703161141095,24.628857527835343,4.375841287150648,0.3130850842521323,0.2261285625130018,0.2228000832119825,0.2379862700228833,11.1084756255681,5.743233129927561,21.08890432089705,12218.585274581585,54.837914038384746,12.98471358638361,17.159298698078775,12.030995005281616,12.662906748640726,0.5533596837944664,0.7690892364305428,0.6903654485049834,0.5863678804855276,0.1372377622377622,0.7217651458489155,0.9041769041769042,0.8816425120772947,0.7423076923076923,0.15234375,0.4884726224783862,0.6882352941176471,0.617781851512374,0.5363748458692972,0.1328828828828828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004360037719396,0.0065360803816096,0.0086869938937037,0.0109445246862094,0.0133527530504573,0.015634082912651,0.0178804836206192,0.020132100936567,0.0222345064799459,0.0243839914686791,0.0265954715818657,0.0287533036476383,0.0308135942327497,0.0328785206728339,0.0351814349479252,0.03737901764919,0.0394440699061349,0.0414220245456151,0.0434189706862091,0.0576870918612171,0.07181615732851,0.0847864358469212,0.0971642904422194,0.1090836300807012,0.1248071354595988,0.1365424375762074,0.1478187794525939,0.1590224841457946,0.1684687677486417,0.1817262269856129,0.1936913564232282,0.2041864911251602,0.2147900408769974,0.2246287537124628,0.234905723085104,0.2447018648096688,0.2535699415981185,0.2622351418254491,0.2696898194813525,0.2768944128130352,0.2840685815868263,0.2913447317044311,0.2972198921509886,0.3023264294049008,0.3074094638780924,0.3135770594944165,0.3183649017258521,0.3229286890666943,0.327138627471714,0.3260326842368055,0.3255182115323615,0.3249354278697548,0.3243908442037903,0.323293053157926,0.3212253225138439,0.3202487862152127,0.3207152962853288,0.3223980159069529,0.3238575413001502,0.3243577491708359,0.3250459495246942,0.3258410490594495,0.326643846343155,0.3289188538405971,0.3302029529921219,0.3313211845102505,0.3330609679446888,0.3369724963258451,0.3385561285204284,0.3395618848927389,0.3425163605657589,0.3448232718173287,0.3478228058259754,0.3492345033607169,0.3470987365465606,0.345402211786093,0.3515625,0.3510954828239113,0.3460511255246089,0.0,1.815872029665419,59.203599927264335,177.6141558360856,260.8634844472268,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95714,44476,420.86842050274777,6239,63.91959378983221,4895,50.52552395678793,1907,19.547819545729983,77.30949638025908,79.66892286454986,63.31695901961641,65.05927985699924,77.07030445693766,79.43163611673099,63.22801096914372,64.9735460293775,0.2391919233214139,237.2867478188709,0.0889480504726947,85.73382762173765,143.52822,100.9906405443874,149955.3043441921,105512.92448794052,369.77877,241.0073754689365,385693.1378899639,251157.5440213724,358.09795,173.59195630777228,369912.8863071233,178156.57043571523,2814.74488,1284.2792953541102,2906828.8024740373,1308105.6364935962,1187.33873,521.619972771826,1226257.590321165,530799.8632643165,1884.74532,791.4398625374155,1934460.6222705145,797979.7575106567,0.38102,100000,0,652401,6816.1501974632765,0,0.0,0,0.0,31899,332.62636604885387,0,0.0,32932,339.8457905844495,1667272,0,59870,0,0,0,0,0,54,0.5641807885993689,0,0.0,2,0.0208955847629395,0,0.0,0.06239,0.1637446853183559,0.3056579580060907,0.01907,0.3322644678576882,0.6677355321423118,24.68838005621064,4.496160924512678,0.3156281920326864,0.2275791624106231,0.2218590398365679,0.2349336057201225,11.24991070183338,5.685275930670083,20.373420120424825,12342.161876292652,55.44382750531671,13.294143987062478,17.40434604240575,12.04949587757605,12.695841598272448,0.555873340143003,0.7809694793536804,0.7061488673139159,0.5681399631675875,0.1243478260869565,0.7244408945686901,0.9263157894736842,0.9016393442622952,0.7182539682539683,0.1732283464566929,0.4979412572055998,0.7057220708446866,0.6454622561492791,0.5227817745803357,0.1104910714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023191987117813,0.0046123590949639,0.00681762843925,0.0091106687251157,0.0114674935190362,0.0136899854448481,0.0159404780104978,0.0181897986056529,0.0204611422264012,0.0224130343564184,0.0245082462919874,0.0266548930621297,0.0290185916419874,0.0309880332021997,0.0328475810360653,0.0347781164436637,0.0368449922894608,0.03900481207998,0.0408759275811178,0.0429166666666666,0.0569426605265081,0.0705142294930972,0.0843079053083143,0.0972239747634069,0.1098551152540228,0.1259901644545502,0.1379903026959354,0.1497471925062536,0.1610194838489147,0.1713614771764655,0.1837631698015642,0.1953466718634966,0.2068147438757631,0.2177653252197134,0.2278072628774031,0.2373118112680428,0.247600960732838,0.2571109934550697,0.266266004703423,0.2732316863464404,0.2801644279759148,0.2872555788291187,0.2935861301248194,0.2993833825187744,0.3050221206670231,0.3112095122974073,0.3167025484403945,0.3217969287187714,0.3269507499643491,0.3311563834428418,0.3298976026334606,0.328216505215582,0.3271231175283341,0.3266206617189647,0.3265315234863368,0.32528622732435,0.3234023631050692,0.3247465104029497,0.324499905723444,0.3247952105253723,0.3255743992780054,0.3272933182332956,0.3295382802306494,0.3308556029642937,0.3328015855751335,0.3328717010713352,0.3323781413875118,0.3362324320917628,0.3391915641476274,0.3425845276744002,0.3459562667636496,0.3499389240002124,0.3529707955689828,0.356636965958419,0.3605909475863367,0.3600047415836889,0.3627435936780727,0.3679769499897098,0.3738601823708207,0.3729792147806005,0.0,2.3661408010956686,54.75441400294353,188.6361312634085,271.2143147545885,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95742,44513,421.71669695640367,6197,63.47266612354034,4855,50.20785026425184,1923,19.71966326168244,77.40440741590693,79.76162412535564,63.3594678928421,65.09920480611127,77.16224590881232,79.52057408630668,63.26925100920131,65.01196990936927,0.2421615070946075,241.0500390489574,0.0902168836407852,87.2348967420038,143.3333,100.79846827135944,149707.63092477698,105281.11828806528,370.75641,241.7674256822645,386747.5924881452,252021.99210614403,360.41687,174.22322553152472,373511.4474316392,179607.89548963984,2803.01368,1275.2350968452663,2899856.1550834533,1304440.5374640543,1154.16469,504.3588119855877,1193530.2270685802,514935.3081265192,1892.56428,793.4545997760588,1942942.57483654,799953.5443739918,0.38112,100000,0,651515,6804.892314762591,0,0.0,0,0.0,31859,332.2366359591402,0,0.0,33044,342.2531386434376,1672255,0,59957,0,0,0,0,0,68,0.6997973721041967,0,0.0,0,0.0,0,0.0,0.06197,0.1625997061293031,0.3103114410198483,0.01923,0.3263771674083167,0.6736228325916833,24.87833413910308,4.419449284963329,0.3338825952626159,0.2170957775489186,0.2189495365602471,0.2300720906282183,11.166771415184796,5.717240872432043,20.4022269922074,12282.985904783478,54.77401663749448,12.668790417057282,18.21794041592672,11.812284028895869,12.07500177561462,0.5590113285272914,0.7979127134724858,0.6983343615052436,0.5738476011288806,0.11727842435094,0.7264890282131662,0.9322916666666666,0.8779904306220095,0.703125,0.1009174311926605,0.4993014808605756,0.7208955223880597,0.6359102244389028,0.5328376703841388,0.1212458286985539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002237589478267,0.0047124398277172,0.0068882261042465,0.0093027979485096,0.0113163807916382,0.0135382736156351,0.0159286624203821,0.0177953736110119,0.0199341997711296,0.0220721412125863,0.0241467664241057,0.0263568437474341,0.0282306980569548,0.0302406064601186,0.03212093071248,0.034113463446907,0.0362043432784814,0.0382572614107883,0.0403026334933798,0.0424126904769344,0.056901231989977,0.0700008372054083,0.0833918999716782,0.0960195971235123,0.1085849802371541,0.1240708432461009,0.1361331522892179,0.1473709984776383,0.1584030426375223,0.1693243112822107,0.1828481578408883,0.1955830159279778,0.2071020718908043,0.2173965338144442,0.2272772282674471,0.2378352638922726,0.2472661131940725,0.2564353429371478,0.2651452423352199,0.273037386387051,0.2805861821880128,0.2871154182964563,0.2933257758254216,0.2996641849014663,0.3053728269428796,0.3096663184415903,0.3135719193054775,0.3189493195206175,0.3236601374748049,0.3285080735369593,0.3283836580159231,0.3277012188426485,0.3268965904938584,0.3258951738453555,0.325437037037037,0.3245930179285911,0.3225628061305103,0.323059547582414,0.3237198051173724,0.3241101792995388,0.3259494855004677,0.3259739489652719,0.3272031132312327,0.3264167782240071,0.3286944837680255,0.3304010618639877,0.332274351846599,0.3360676268002505,0.3413517009894758,0.3432198362795112,0.3452089565769196,0.3487079008684601,0.3506265664160401,0.3501818732949379,0.3534796823914058,0.3582686426723124,0.3605754514845424,0.3599111828825191,0.3615788020977091,0.362238864800946,0.0,1.946154123186411,56.2281979559517,177.84739262010578,272.2774418872257,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95749,44495,420.7459085734577,6310,64.73174654565584,4890,50.50705490396767,1891,19.37357048115385,77.33232137485312,79.69944205385724,63.31916690730778,65.07186569051554,77.09537439157519,79.46494068932101,63.230654871169456,64.98721854200113,0.2369469832779316,234.5013645362286,0.0885120361383258,84.64714851440647,143.23584,100.77570396356396,149595.12893085045,105249.87620086264,368.56409,240.4265055533805,384334.2384776864,250517.3330493277,362.97175,176.1024846995478,376314.1233851006,181692.8803437205,2809.67372,1295.0774965492265,2903501.530042089,1322116.315011195,1165.18173,514.6926826244254,1204848.9383701135,525479.9137582901,1855.49886,780.2799856288884,1902862.6513070632,783664.6068347173,0.38117,100000,0,651072,6799.77858776593,0,0.0,0,0.0,31752,331.00084596183774,0,0.0,33228,344.2124721929211,1671714,0,59973,0,0,0,0,0,71,0.7415221046695005,0,0.0,1,0.0104439733052042,0,0.0,0.0631,0.1655429335991814,0.2996830427892235,0.01891,0.3367069486404834,0.6632930513595167,24.63308213105913,4.430705244339935,0.3132924335378323,0.2376278118609407,0.2267893660531697,0.2222903885480572,11.154650536491587,5.624815214260516,20.108539325647843,12365.164246472972,55.43457086226162,13.885981509085608,17.170853172956683,12.512100104908596,11.865636075310736,0.5629856850715746,0.7814113597246127,0.7043080939947781,0.5807033363390441,0.1122355105795768,0.7409365558912386,0.9391891891891893,0.8307692307692308,0.7517482517482518,0.1225490196078431,0.4969153112731351,0.6838440111420613,0.6611208406304728,0.5212636695018226,0.1098527746319365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0048788404385884,0.0072496141661928,0.00954345881779,0.0117197037519329,0.0137325414370269,0.0157665007750673,0.0178766500934159,0.0199887531312305,0.0220004095004095,0.0241832142454406,0.0265897377984929,0.0288229184875937,0.0306400947525619,0.0327266724443894,0.034976021167521,0.0367175770126844,0.0387500389056615,0.0409777288174345,0.042952516846677,0.0568621924357729,0.0710892539499843,0.0842904643527696,0.0972490956507108,0.1090032900286823,0.1251057798087501,0.1371922750424448,0.1493868687728859,0.1609437247006803,0.1716957258358532,0.1848536745618853,0.1971951391068163,0.2090536232987739,0.2195474083715232,0.2278454546454942,0.2382898146302571,0.2478519940190586,0.2575839409487803,0.266749886518384,0.2743317222896672,0.2813414958743678,0.2881127881127881,0.2947434440973208,0.3012523218886692,0.3067448894071348,0.3124745787780558,0.3176329258068149,0.3224571799142962,0.326921583348435,0.3307177992588587,0.3296058563104705,0.3291705062786251,0.3287347260543949,0.3273611873069038,0.3267397309097389,0.3249613542097127,0.3235205577121128,0.3248666830749036,0.3252664790654046,0.3271526724368698,0.3272870514527958,0.3275462733841433,0.3288910342511753,0.3304055568003585,0.3317661241711874,0.3339337457905866,0.3337323301413589,0.3366876971608832,0.3388287401574803,0.3438185225052824,0.3453873865657348,0.3461230588611986,0.3486633726086405,0.3504737163814181,0.3522589093630156,0.3582912803661542,0.362006628502561,0.3615369301214414,0.3671366594360086,0.3755673222390318,0.0,2.1114466691487297,58.08050902123098,181.80747623990015,267.08211607886057,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95737,44672,423.0026008753146,6164,63.20440373105488,4865,50.34626111116914,1927,19.835591255209582,77.41699606751023,79.77104074048638,63.36600846061516,65.10096968401506,77.18705822982005,79.53902561192041,63.28194720299874,65.01783308018692,0.2299378376901728,232.01512856597617,0.084061257616419,83.13660382813737,144.9635,101.93842019063044,151418.46934831885,106477.5585099078,371.46663,242.2723512166355,387534.6417790405,252599.9889485051,366.44901,177.68651234603763,379717.38199442223,183240.7528941016,2795.34956,1272.9487564087365,2895380.427629861,1305809.2315296356,1117.76653,495.8384841303941,1155306.3183513165,506458.9454050235,1886.78114,783.1646084117672,1944373.2935019897,796381.0316416395,0.38108,100000,0,658925,6882.657697650857,0,0.0,0,0.0,31975,333.5074213731368,0,0.0,33521,347.12806960736185,1662563,0,59685,0,0,0,0,0,64,0.65805279045719,0,0.0,0,0.0,0,0.0,0.06164,0.161750813477485,0.3126216742375081,0.01927,0.3312170950758749,0.6687829049241251,24.580286354094945,4.43426231271649,0.329907502569373,0.2273381294964029,0.218705035971223,0.224049331963001,11.281440324082157,5.819762991414538,20.36109452178241,12273.070213946326,54.851597618300296,12.963321284916152,18.078595218432067,11.904226442569229,11.90545467238285,0.5547790339157246,0.7739602169981917,0.6866043613707166,0.5977443609022557,0.0963302752293578,0.7440381558028617,0.9293785310734464,0.8694638694638694,0.7871485943775101,0.168141592920354,0.4887718325478237,0.7007978723404256,0.6198979591836735,0.5398773006134969,0.0775462962962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0044879392963154,0.0069579681921454,0.0091390042547142,0.011336830974459,0.0133655001119729,0.015381008684307,0.0176566646254337,0.0197947963292251,0.0220364819380645,0.024285772840923,0.026724686467292,0.0287626311948108,0.0310282683692909,0.0328876784682677,0.0349580978165397,0.0368771417626901,0.0388716034017838,0.0408118725447402,0.0427834783061617,0.0573433290872261,0.0711154357219833,0.0848360870705481,0.0975822650359137,0.1097014374452916,0.1248096446700507,0.1366827881719061,0.148612116309762,0.1593385463402128,0.1688916052798061,0.1814687611029166,0.1942902887309469,0.2058750013584446,0.2158404595742822,0.2262331099637482,0.2367562305726706,0.24705790576383,0.2558907803809203,0.2638034028179232,0.2717829031667582,0.279261682134973,0.2861782539107679,0.2925860703691009,0.2986978792665996,0.3044770326164744,0.3097442083753908,0.314531345670836,0.3193378728593932,0.3236510768117066,0.3284268508025195,0.327381512605042,0.3264425916514429,0.3260771677032618,0.3253240091892907,0.3246851609837234,0.3225539986538579,0.3210693363230116,0.3228813975170518,0.3230421174389331,0.3243171242851561,0.3259455328350141,0.3272137592137592,0.3285559310718905,0.3287333333333333,0.3300806007988328,0.3312658950537188,0.3314530302171325,0.3350204642734402,0.3385560247060055,0.3410525485245384,0.3433085082374182,0.3451752533783784,0.3495188101487314,0.3461801596351197,0.3482317812820752,0.3548273844353423,0.3557837511325883,0.3628952077947902,0.3643473570658037,0.3614413075780089,0.0,1.8159270229976945,55.54288499445184,183.3440332344764,269.32045857412226,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95685,44946,424.9046350002613,6247,64.00167215342007,4916,50.6871505460626,1940,19.804567069028582,77.3508434030137,79.74028929427341,63.31502979323547,65.0822799089593,77.11425426622625,79.50936721442592,63.22664510056937,64.99980990043227,0.2365891367874439,230.92207984748825,0.0883846926660965,82.47000852702513,142.20074,100.18215111015878,148613.40858023724,104699.95413090744,371.12376,242.69262512929816,387180.6239222449,252957.77303579252,367.68047,178.64603534096162,380173.97711240005,183612.4296009315,2833.18604,1285.973774641838,2923079.981188274,1306094.805499125,1187.3959,526.1068476131983,1220204.8387939597,529094.3696642094,1913.22946,797.6259056910073,1955010.2523906569,794653.7492783141,0.38308,100000,0,646367,6755.154935465329,0,0.0,0,0.0,31807,331.7029837487589,0,0.0,33751,348.60218425040495,1671113,0,59877,0,0,0,0,0,74,0.773370956785285,0,0.0,0,0.0,0,0.0,0.06247,0.1630729873655633,0.3105490635505042,0.0194,0.3341957084157662,0.6658042915842337,25.022267897950865,4.344266883206915,0.3254678600488201,0.2274206672091131,0.2160292921074044,0.2310821806346623,11.011721565367024,5.711513707046496,20.51604120103024,12429.678845773651,55.41202640929348,13.236684567950697,17.94543661122865,11.889479937971396,12.340425292142744,0.5551261187957689,0.7844364937388193,0.681875,0.5866290018832392,0.1214788732394366,0.7292817679558011,0.9313984168865436,0.8482587064676617,0.7333333333333333,0.1861471861471861,0.4946560701562071,0.7090663058186739,0.6260434056761269,0.540272614622057,0.1049723756906077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0047966251229578,0.0072582200611111,0.009868688511261,0.0120348328551954,0.0141602656832582,0.0162808964694121,0.0188022141879608,0.0211083952915188,0.0231765019151594,0.0253720169420258,0.0273415433284374,0.0295718003312041,0.0315999876361313,0.0335521291308027,0.0357183471347786,0.0379514701920885,0.0397670652715495,0.041684438295172,0.0438358734858119,0.0585795911545653,0.072139147189411,0.0861851774091958,0.0994455374709354,0.1118296812854083,0.1273662268403398,0.1396072186836518,0.1509100397243788,0.1622641509433962,0.1716358640822547,0.1840732196373515,0.1969163806450914,0.2083124741527545,0.2189521380804885,0.2284723369116432,0.2391919012718019,0.2488779725354471,0.2585253819393625,0.2667098254341431,0.2739361702127659,0.2817344989289643,0.2884676182335515,0.2950759460676287,0.3011636276391555,0.3074417134660734,0.3128420689315122,0.317469253962892,0.3226704993513266,0.3274731245391392,0.3320580474934037,0.3315465528155261,0.3307016216662311,0.3301521613670594,0.3287040378813033,0.327887323943662,0.32744945211132,0.3257327960812198,0.3270374314030633,0.3284661572052402,0.3289853522933818,0.3305152903768821,0.3317110655737705,0.3328048398873474,0.3334520840755254,0.332846365704706,0.3336361041185477,0.3344266930581083,0.3364754354204382,0.340050904780168,0.3432835820895522,0.3462733618554379,0.346103177530695,0.3478613799562909,0.3515050420805216,0.3532669921141569,0.3547466095645967,0.3555385790679908,0.3606622780769998,0.3624762421938637,0.3655252020007695,0.0,2.6524205649500865,55.15546098082772,181.3302855668894,277.89809158079845,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95724,44341,420.3439053946764,6116,62.6488654882788,4785,49.42334210856212,1885,19.36818352764197,77.26691653433518,79.62641151334877,63.2951211478972,65.03879939145877,77.0320230973737,79.39227370741311,63.20822606360727,64.95477663110464,0.2348934369614852,234.13780593566003,0.086895084289928,84.02276035413081,143.7238,101.15409083324256,150143.95553884082,105672.65349676418,371.57067,242.3805413572872,387618.9774769128,252657.9137492032,359.57646,174.47142869657625,372025.38548326434,179571.3135977536,2757.21312,1261.1719864124616,2850705.194099704,1287835.7636668566,1142.6754,505.28177279411256,1179699.281266976,513833.22133854846,1849.92184,771.1828317314801,1902518.365300238,779200.1998075612,0.37977,100000,0,653290,6824.725251765492,0,0.0,0,0.0,32059,334.32576992185864,0,0.0,32906,340.1759224436923,1662249,0,59733,0,0,0,0,0,65,0.6581421587062806,0,0.0,0,0.0,0,0.0,0.06116,0.1610448429312478,0.3082079790712884,0.01885,0.3389408099688473,0.6610591900311527,24.624112224754047,4.352428669508203,0.3339602925809822,0.2221525600835945,0.21901776384535,0.2248693834900731,11.294438793578818,5.855769157276491,20.046025372869405,12257.034789033363,54.25107916087453,12.707366147216495,18.187501040170247,11.610801601524162,11.745410371963631,0.561337513061651,0.7845719661335842,0.6983729662077597,0.5820610687022901,0.1171003717472119,0.7430555555555556,0.9128205128205128,0.8981481481481481,0.7154150197628458,0.171945701357466,0.4938377758670106,0.7102526002971769,0.6243567753001715,0.539622641509434,0.1029239766081871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022383826925414,0.0047247766883979,0.0070828428785972,0.0094777582511351,0.011705957732441,0.0139594554692352,0.0160456700137621,0.0181704964220455,0.020475757235006,0.0224062397641663,0.0240587168000984,0.0265494902621069,0.0288343873721013,0.030704419747237,0.0327669276878475,0.0345975336206985,0.0366274193047314,0.038521392704486,0.0401750446966862,0.0419258379437168,0.0563653830089382,0.0702345688058029,0.0831050803345611,0.0957436733834903,0.1076338696913743,0.1224837542069724,0.134278282104369,0.1460905130635764,0.1579228778578608,0.1681623977499624,0.1819377513287406,0.1947273751733703,0.2061139365954064,0.2163751656463218,0.2263290134884951,0.2368298368298368,0.2465306122448979,0.2551348062688013,0.2635118249767135,0.2719624025676295,0.2795630489371304,0.2857343492152663,0.29274991712838,0.2988788296660471,0.3048867931407459,0.3107853170737722,0.3152612454579626,0.3202318028402216,0.324287159795553,0.3284729481191368,0.3279822712285822,0.327556684802121,0.3263315616872102,0.325555796944022,0.3252602886634791,0.3240777712934238,0.322276236774378,0.3232173454593383,0.3235516070387267,0.3236901030004478,0.3237068074632194,0.3258132942132704,0.326796010268928,0.3265503006371713,0.3275687164871262,0.3304288667346992,0.3319971367215462,0.3341139981643827,0.3380977777777778,0.3394225340753286,0.341709701217263,0.3431050277523306,0.3439348641943897,0.3451476793248945,0.3495881071868194,0.3520523497917906,0.3533558075390745,0.3577235772357723,0.3645170218654857,0.3675213675213675,0.0,2.2325840855904717,57.0137858167443,171.22758144922952,269.2538135014176,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95709,44339,420.012746972594,6166,63.316929442372185,4829,49.94305655685463,1882,19.40256402219227,77.288290147924,79.65721986746652,63.294707477804174,65.04380266406704,77.05260240209113,79.41986950124628,63.20751474364282,64.95809047355326,0.2356877458328767,237.35036622024097,0.0871927341613556,85.71219051378876,142.296,100.1680876563132,148675.673134188,104659.00558600885,369.59595,241.6633182495292,385655.2675296994,251987.165633323,361.3981,175.67917796051032,373388.7304224263,180358.93154005683,2783.7778,1276.4221464512314,2882442.905055951,1307519.807215924,1134.46913,501.5149196927327,1175414.4542310543,514110.15392066975,1854.84768,777.1630047055799,1913869.604739366,790904.6081705283,0.37915,100000,0,646800,6757.985142463091,0,0.0,0,0.0,31842,332.1526711176587,0,0.0,33142,342.2353174727559,1667453,0,59898,0,0,0,0,0,69,0.7104869970431202,0,0.0,1,0.0104483381918105,0,0.0,0.06166,0.1626269286562046,0.3052221861822899,0.01882,0.3377206565500155,0.6622793434499845,24.36204271689876,4.440460218347767,0.3213915924622075,0.2261337751087181,0.2253054462621661,0.2271691861669082,11.137597479552772,5.5583038492398575,20.06385670445104,12207.80091478676,54.8622295790634,12.981571246212656,17.688912744494562,12.140717994273706,12.051027594082472,0.5607786291157589,0.7847985347985348,0.7132731958762887,0.5827205882352942,0.1002734731084776,0.7308602999210734,0.9212598425196852,0.8731707317073171,0.7673469387755102,0.1255411255411255,0.5002807411566536,0.7116736990154712,0.6558669001751314,0.5290628706998813,0.0935334872979214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774577421282,0.0046025486359627,0.0065653285708487,0.0089802718462382,0.0114412985111056,0.0136240059465018,0.0159152545829,0.0180778849589139,0.0202804922925951,0.0222486030660908,0.0245867196867986,0.026513790661151,0.0285731911699688,0.03049464979042,0.0324294216546844,0.034352683415839,0.0362704493683992,0.0380875286694272,0.0399929271286222,0.042324127149557,0.0572956375523504,0.0713306042109451,0.0848839772047479,0.0976995769578852,0.1104531492447512,0.1254128906580842,0.1376469214189397,0.1492979353546545,0.1602690218553526,0.170451738985708,0.1834514142753928,0.1947390659025167,0.2060380317584787,0.2167819917666637,0.2260430893950742,0.236538738918661,0.2466121025090567,0.2546680497925311,0.2627902478981558,0.2701517048129816,0.2777977522877257,0.2842955632679861,0.2903952925544535,0.2966704302495976,0.3027446969143469,0.3078272687959473,0.3117277749874435,0.3165482311215442,0.3207929538309647,0.3244491497386356,0.3241824951435355,0.3235923120438208,0.3226472168037769,0.3223786259984633,0.3213604103298145,0.3205748238220257,0.3188842699838162,0.3188126952803815,0.3197027295455323,0.3200050093029912,0.3210676584394605,0.3218554579276498,0.3228440675119657,0.3244450399749877,0.3261729519790942,0.3272156170499974,0.3273166571915861,0.330276093853064,0.333719298245614,0.3374274584625168,0.3398098198774801,0.3423337061298397,0.3433333333333333,0.345814307458143,0.349198956780924,0.3525543159130945,0.3562801932367149,0.3547871277233659,0.3621432417878298,0.3688739244294799,0.0,2.006489413467976,55.86100120101951,186.92467413637115,262.0927648633067,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95821,44512,421.2646497114411,6194,63.21161332067084,4864,50.10383945064235,1925,19.661660805042736,77.36488025655099,79.68028945853183,63.35773544642036,65.07148965805362,77.11754737199193,79.43466735776605,63.264121466126255,64.98123687005186,0.2473328845590572,245.62210076578597,0.0936139802941014,90.25278800176297,144.41438,101.59951658411804,150712.66215130294,106030.53253891948,370.89413,242.55625328062123,386376.7441375064,252441.7228797667,364.15124,177.4038716319014,375641.7382410954,181738.1145286396,2808.68664,1294.7566891309598,2895885.1608728776,1315928.83515196,1145.53235,511.8055167110503,1177496.9161248575,516139.1987134679,1893.76308,809.1977109849192,1936329.8650608948,810624.7003833789,0.3805,100000,0,656429,6850.575552331952,0,0.0,0,0.0,31782,330.9608540925267,0,0.0,33259,342.75367612527526,1666048,0,59778,0,0,0,0,0,80,0.8244539297231296,0,0.0,2,0.0208722513853956,0,0.0,0.06194,0.1627858081471747,0.3107846302873748,0.01925,0.3284132841328413,0.6715867158671587,24.733589745222663,4.3837294248028105,0.3159950657894737,0.2263569078947368,0.2251233552631578,0.2325246710526315,10.9932596090702,5.58242964152417,20.633831001303648,12289.086766264025,55.26537494367068,13.213913593127495,17.457052796148123,12.145494556248604,12.44891399814645,0.5413240131578947,0.7647593097184378,0.690305790500976,0.5607305936073059,0.1025641025641025,0.7034220532319392,0.900990099009901,0.8225419664268585,0.7429718875502008,0.1346938775510204,0.4812623274161736,0.6857962697274032,0.6410714285714286,0.5070921985815603,0.0936794582392776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0045419522283953,0.0068187352869551,0.0091618250518018,0.0111855685827884,0.013430130737588,0.0157291687903932,0.0178246932233497,0.0200257605495583,0.0220379753313885,0.0245152297790349,0.0263336138420804,0.0283153642969464,0.0304758179890694,0.0324495938646765,0.0344496520967109,0.0366274980346725,0.0387516578249336,0.0405374535335285,0.0424387452530822,0.0572406024448245,0.0710657245589096,0.083919966478106,0.0968727685134624,0.1096366508688783,0.12489967473493,0.1378199694863536,0.1492270726572965,0.1600998623691707,0.1710925197904727,0.1836082507505084,0.1964471066516737,0.207976093452866,0.217818753823298,0.227441108900443,0.2383191009247378,0.2480303992689911,0.2576557550158395,0.2653049664672829,0.272873873461732,0.2807684310237275,0.2873693430656934,0.2940293391018594,0.2995596822054178,0.3054010734147704,0.3102925964238215,0.3148641382501156,0.3190559107258607,0.3236888055357951,0.3270094726163656,0.3261027434104357,0.3250498521625524,0.3244770818063934,0.3235621628656958,0.3224716927792408,0.3215611102591627,0.3203002269156921,0.3213221616816737,0.321931900010287,0.3231601382694822,0.3237919475725961,0.3244564569339004,0.3262991794656006,0.3283424620633923,0.3299172440338722,0.3316978965499243,0.334585289514867,0.3385133222183774,0.3397870620893214,0.3413438546150167,0.3430901012321927,0.3457378453630327,0.3459676391897057,0.3480335565304395,0.3514851485148514,0.3539727988546886,0.3519604816301327,0.3574502971920476,0.3586836283185841,0.3639179248935346,0.0,2.4851133153299343,57.257712131336135,183.62945945962892,263.97775397018177,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95628,44310,418.76856150918144,6172,63.2137030995106,4787,49.37884301668967,1911,19.54448487890576,77.2563444549925,79.6661661947302,63.27473565930678,65.05554385516216,77.01459050363002,79.42663359596463,63.18625955680281,64.97044978686264,0.2417539513624831,239.53259876556388,0.0884761025039679,85.0940682995116,143.21318,100.7476159310445,149760.718617978,105353.67876672574,367.96172,240.1355817673301,384107.4266951102,250437.22734693825,354.81315,172.91993314208923,366417.6078136111,177247.3319525635,2758.8544,1253.222729904305,2847482.661981846,1273015.2778519946,1146.34746,499.1269783928193,1184780.1689881624,507990.5236101386,1877.25548,779.4919796683829,1922811.1222654453,782114.4767820414,0.37959,100000,0,650969,6807.305391726272,0,0.0,0,0.0,31733,331.15823817292005,0,0.0,32461,334.8182540678462,1667115,0,59825,0,0,0,0,0,59,0.6169741080018405,0,0.0,1,0.0104571882712176,0,0.0,0.06172,0.1625964856819199,0.3096241088788075,0.01911,0.321340713407134,0.6786592865928659,25.068265855283347,4.384383852702864,0.3300605807395028,0.2245665343639022,0.2143304783789429,0.2310424065176519,11.195039385359683,5.759835685522484,20.216163234131344,12323.28959219918,53.74280774309882,12.783310519680484,17.883638756339227,11.090821108554984,11.985037358524115,0.5598495926467516,0.8018604651162791,0.6955696202531646,0.5750487329434698,0.1166365280289331,0.7354581673306773,0.9430051813471504,0.8497652582159625,0.7235023041474654,0.1769911504424778,0.4974518686296715,0.7227866473149492,0.6386481802426344,0.5352286773794809,0.1011363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023294677672557,0.0045812513302859,0.0070936380519388,0.0092143894832017,0.0116797232678807,0.013986940089443,0.016392606495838,0.0182986636151865,0.0205592946423091,0.0225889728932325,0.0248009358069282,0.0266884531590413,0.0291444042949648,0.031363088057901,0.0335306331153738,0.0357915213724739,0.0379089438984948,0.0400868427066669,0.0421015390058376,0.0438809675299615,0.0585143072131764,0.0718655715722427,0.084796119766514,0.0970326003431615,0.1088704571356211,0.1247949713753584,0.1366969848126253,0.1491507374474202,0.1597584437793929,0.1693369246783349,0.1821710022747119,0.1953954496208017,0.2064221682442515,0.2162339868278303,0.2254339722522443,0.2362754456456589,0.2461553947500867,0.2560996224714036,0.2646671061305207,0.272610471252237,0.2792787569573284,0.2865818629462454,0.2936989941165306,0.3002749198650611,0.3059231752602422,0.3119456454601605,0.3167935580167321,0.3213976026523846,0.3256462832225913,0.3300419029490687,0.3289793274680196,0.3282597596147212,0.3274336283185841,0.3268837479150047,0.3268579442877818,0.3255105338483556,0.3233386327503975,0.3227566427111492,0.3235096889561374,0.3247777278850471,0.3256414607016948,0.3257104221767057,0.3268744734625105,0.3284772961585011,0.3312507538294536,0.3323746274120169,0.3326745151957835,0.3361331270327449,0.3390705679862306,0.3405091949001072,0.3428662652800583,0.344440304465854,0.3479691256484879,0.3517110266159696,0.3529520808230605,0.3548159473127131,0.3591867469879518,0.3598636728147554,0.3764929424538545,0.3671965878247383,0.0,2.608037526063479,54.58069959663304,165.5456956315821,279.057520192136,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95687,44385,420.69455620930745,6196,63.45689592107601,4888,50.44572407955104,1974,20.190830520342367,77.32722884548278,79.70418788391889,63.32110870231941,65.07601518378534,77.08074692144311,79.46001586462928,63.230088381293335,64.98876043762294,0.2464819240396707,244.17201928960708,0.0910203210260789,87.25474616240092,143.3311,100.82031835874264,149791.61223572688,105364.69777372332,370.40745,240.9783749555213,386486.4924179878,251223.5256153096,353.61204,171.2030859249947,365651.3005946471,175897.50624287562,2818.35048,1280.2888366710886,2911445.9435451003,1304057.6428052804,1169.30132,510.9689111417329,1203674.7207039618,515668.60821400245,1938.08678,807.1407702955586,1985124.3951633973,809225.857584667,0.38067,100000,0,651505,6808.709647078495,0,0.0,0,0.0,31876,332.46940545737664,0,0.0,32428,334.9566816808971,1670172,0,59960,0,0,0,0,0,65,0.6792981282723881,0,0.0,0,0.0,0,0.0,0.06196,0.1627656500380907,0.3185926404131698,0.01974,0.3226841944359523,0.6773158055640477,24.66402927884411,4.534940107728841,0.3263093289689034,0.226063829787234,0.2178805237315875,0.2297463175122749,11.281656238739831,5.700551572210502,20.90578430636225,12301.6538300369,55.10685464395344,13.032599438606828,17.94680150486195,11.835037650385072,12.292416050099591,0.5509410801963993,0.7656108597285067,0.6946708463949843,0.5746478873239437,0.1130899376669634,0.7229299363057324,0.8994974874371859,0.8778625954198473,0.7447698744769874,0.1194690265486725,0.4914647577092511,0.6902404526166902,0.6347753743760399,0.5254237288135594,0.1114827201783723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022678032680664,0.0046214186539104,0.0067261844374556,0.0087957179276232,0.0110533754995373,0.0129921700793174,0.0154895682499541,0.0176687467445589,0.0197165238377681,0.0218226131836847,0.0238849747202822,0.0260465880612957,0.0279569228870305,0.0299742400824317,0.0320033850726552,0.0345505124148129,0.0362074859883763,0.0381636593924544,0.0401918056147869,0.0422351702644388,0.0575934823480259,0.0711990706339155,0.0843036062684876,0.0970867657734431,0.109432847785501,0.1248558582385612,0.1370954902938897,0.1487050604873062,0.1605316864161386,0.1702481466779672,0.1833566734891737,0.1958668023469807,0.2076992527003948,0.2187681167346671,0.2285830645782655,0.2389996343368754,0.2488419078660966,0.2581650447207065,0.2670071501532176,0.2750933626595184,0.2820492040520984,0.2889242580282745,0.2947875602277705,0.3006316596948376,0.3059579950410812,0.3120868278243709,0.316197562411534,0.320074889194559,0.3243978949005781,0.3288684579007159,0.3272629164980439,0.3264982923873527,0.3260136802764262,0.3248243762828481,0.3237364043506078,0.3229229044789411,0.3220287924911212,0.3225409634404369,0.3225690829336565,0.3228565319649348,0.3241109676936603,0.3233587304093798,0.3244205280680081,0.3249636668529905,0.3264499650610828,0.3280947649181528,0.3288623233998741,0.3326715199647033,0.3365293435886629,0.3375164336082227,0.3405241657869371,0.3433402900412051,0.3435162885029788,0.3456657180216906,0.3459083547680289,0.3520334928229665,0.3570102135561745,0.3565875613747954,0.3543110618242306,0.3506944444444444,0.0,2.529976579238918,54.74143709423005,180.39726971847057,277.2834861979652,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95785,44330,419.1888082685181,6140,62.85952915383411,4802,49.621548259122,1874,19.199248316542256,77.38146625236273,79.70389356870065,63.35451413110488,65.06742516231716,77.15219493837392,79.47711167935074,63.269121976431386,64.98577762785473,0.2292713139888036,226.78188934990828,0.0853921546734923,81.64753446243367,143.33154,100.84689289433528,149638.81609855406,105284.64049103227,367.91444,240.1462994030252,383598.9559951976,250209.6800621134,359.13695,173.76001320380266,371953.7714673488,179108.85669633717,2757.7354,1251.5990512589956,2849861.4605627186,1277559.84838328,1167.84984,515.7560241912859,1201128.1933496892,520610.4823778821,1841.22718,765.8640123208007,1886934.8854204728,768738.1444847127,0.37875,100000,0,651507,6801.7643681160935,0,0.0,0,0.0,31701,330.41707991856765,0,0.0,32906,340.5334864540377,1669655,0,59901,0,0,0,0,0,60,0.6264028814532547,0,0.0,0,0.0,0,0.0,0.0614,0.1621122112211221,0.3052117263843648,0.01874,0.3307967075632862,0.6692032924367137,24.58250883448116,4.394075050403804,0.3150770512286547,0.2328196584756351,0.2244897959183673,0.2276134943773427,11.388750127589804,6.00166153619485,19.782603280227928,12234.34714704653,53.98614797515681,13.258601576276355,16.98701038877556,11.892011291148837,11.84852471895605,0.5616409829237817,0.761180679785331,0.6893588896232651,0.6150278293135436,0.1280878316559927,0.737919737919738,0.918158567774936,0.8590078328981723,0.7478632478632479,0.1784037558685446,0.5015358838313321,0.6767537826685007,0.631858407079646,0.5781990521327014,0.1159090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025211105036146,0.0045299768940775,0.0065732747689717,0.0087232919002356,0.0111137096200189,0.0132133477207484,0.0151663405088062,0.0174085185411947,0.019493456206132,0.0217202254892933,0.0238805052709223,0.0261832209876163,0.0282096868673373,0.0303785219423312,0.0324243517707098,0.0344521326035319,0.0366947793242614,0.0386808492991623,0.0405555613267818,0.0427304152263545,0.0578265724632387,0.071406148630266,0.0848925994294344,0.0979584113033788,0.1095319929572267,0.1248439846840557,0.1366365410726408,0.14854004108962,0.1588267965478937,0.1692273053789495,0.1827557622538729,0.1953949645267347,0.2072685356358337,0.2177166172593719,0.2274722977210955,0.2371412742382271,0.2462379995534717,0.2560175547178304,0.2639097061361675,0.2713715870796176,0.2785427257883339,0.2859886185335238,0.2915739118078909,0.296989958540034,0.3026689656847269,0.3085288502986637,0.3131017580713732,0.3183407279337918,0.3223391994613004,0.3264235039691959,0.3265251204219477,0.3250766333557849,0.3241576435138902,0.323082483915275,0.3224914112345514,0.3207067224444138,0.3194655281467425,0.3201238998967501,0.3209661736860959,0.3212423244638249,0.3220538500345671,0.3227762140031101,0.3237657864523536,0.3252085098791312,0.3258515785943564,0.3257130981451654,0.3287480855408701,0.3329996872067563,0.3351050809525475,0.337773020969596,0.3418515823935977,0.3444373942470389,0.3474111041796631,0.3526526299901894,0.3532787656411704,0.3602975909305621,0.3601938806422296,0.3661717495987159,0.3662202787646898,0.3651278138115223,0.0,1.936995893236476,53.6719519078824,179.17456834225365,270.59318294452186,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95760,44395,419.4444444444444,6234,64.08730158730158,4801,49.592731829573935,1889,19.329573934837093,77.31912755708531,79.66766363177011,63.32066847763053,65.05785691753906,77.08232170675024,79.4340388494683,63.23308813659581,64.9745512991036,0.2368058503350738,233.6247823018169,0.0875803410347231,83.30561843546036,143.93984,101.29800735655564,150312.656641604,105782.76311252677,368.99384,240.6013852633885,384790.14202172094,250713.2497529119,355.72287,172.34548165950733,368299.7702589808,177521.74065157375,2765.29788,1255.0370754820715,2855128.571428572,1278208.7400751216,1180.77516,514.8971820011562,1216510.5889724311,521198.9505335789,1854.47498,774.0835313326721,1898818.1913116125,775066.2482871742,0.37944,100000,0,654272,6832.393483709273,0,0.0,0,0.0,31808,331.61027568922304,0,0.0,32537,336.64369256474515,1666868,0,59798,0,0,0,0,0,71,0.7309941520467836,0,0.0,0,0.0,0,0.0,0.06234,0.1642947501581277,0.3030157202438241,0.01889,0.3237277743715512,0.6762722256284488,25.15094627293122,4.373812733075206,0.3265986252863986,0.2280774838575296,0.2176629868777338,0.2276609039783378,11.349467215108284,5.795575906289443,20.04927449980028,12296.055216573388,54.17707694359186,12.92636933758884,17.623754107718856,11.524776404691677,12.102177093592491,0.5644657363049365,0.7680365296803653,0.7072704081632653,0.5923444976076555,0.1290027447392497,0.7234387672343877,0.9107142857142856,0.8756345177664975,0.7298578199052133,0.1525423728813559,0.5095291479820628,0.6884779516358464,0.6507666098807495,0.5575539568345323,0.1225204200700116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759703895735,0.0043980988862878,0.0070411103445477,0.0091612667330232,0.01118670612523,0.0133919933192793,0.0157124649502931,0.0179001756320712,0.0200711641888713,0.0221944677627403,0.0244022474674978,0.0266662559426629,0.0288376493819034,0.0308437210260636,0.0328734896870518,0.035098235786558,0.0369181712771244,0.0390655795522914,0.0411185235987281,0.0432871575877512,0.0583832647863212,0.0730597428682016,0.0862578926391307,0.0986540483701367,0.1107257316353209,0.1265054508157719,0.1386101860297393,0.1498510321344967,0.1608862786972771,0.1703596505333119,0.1829781735562997,0.1957578053135653,0.2065301327996693,0.2170247662784976,0.2266361566133841,0.2363056549036108,0.245968236961641,0.2546407758252143,0.2638113395978029,0.2716425430560645,0.2795596865486787,0.2860938158325921,0.2929805027125631,0.2994466915515441,0.3048359240069084,0.310564449436538,0.3150739854409682,0.319044039899614,0.323859289706054,0.3287982458457718,0.3277707384142561,0.3268931517413277,0.3261700836731526,0.3248472210154371,0.3240260030049239,0.3226993865030675,0.3207505273676029,0.32131055910832,0.3221830985915493,0.3234994185526433,0.3246572769953051,0.3253724846158412,0.3268543811725152,0.3274844615971459,0.3289460997010895,0.3302135891872108,0.331789594053745,0.3364182957156797,0.338037090474012,0.3401689738606164,0.3433773327264451,0.3462581777565023,0.3490881554868429,0.3527569879334046,0.356058462989156,0.3564262952909241,0.3589626239511823,0.359577922077922,0.3557825006900358,0.3641928079571538,0.0,2.092428272362388,54.20648245045726,180.4830349358354,268.3490611245779,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95683,45001,427.5054084842657,5954,60.94081498280781,4668,48.232183355454985,1809,18.58219328407345,77.34181859432726,79.72464420740091,63.3271521787835,65.08546842475121,77.12057619452479,79.50387538997921,63.24526111103654,65.006221103812,0.2212423998024775,220.7688174216997,0.0818910677469588,79.24732093921705,142.7426,100.4621175285131,149182.82244494843,104994.74047481068,366.44924,240.0084596239722,382410.4386359123,250265.0024560232,359.14619,174.66482172041736,371686.8200202753,179708.32553001094,2688.13704,1224.9382800334306,2780420.13732847,1251221.525457191,1112.88113,482.6605080482324,1150129.1556493838,491532.9953794789,1770.64822,740.2488062030546,1821087.5704148072,748048.9203618851,0.38314,100000,0,648830,6781.037383861291,0,0.0,0,0.0,31498,328.60591745660145,0,0.0,32853,339.7050677758849,1672079,0,59984,0,0,0,0,0,57,0.5957171075321634,0,0.0,0,0.0,0,0.0,0.05954,0.1554001148405282,0.3038293584145112,0.01809,0.3303485769107771,0.6696514230892229,24.40991201456816,4.371967164451229,0.3179091688089117,0.2335047129391602,0.2238646101113967,0.2247215081405312,11.30602483971395,5.869752698478585,19.184140082455567,12342.229796447844,52.741230284953936,12.963720562036176,16.920908009973008,11.566350820236549,11.290250892708205,0.5597686375321337,0.7743119266055046,0.7001347708894878,0.5808612440191387,0.1172545281220209,0.7363636363636363,0.8975,0.8768844221105527,0.6830357142857143,0.1595744680851064,0.4979757085020243,0.7028985507246377,0.6353591160220995,0.5529841656516443,0.1080139372822299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860548247612,0.004165948690919,0.0063614135121698,0.0086124596290954,0.0108593972424451,0.013052863077299,0.015268731716764,0.0174657778957361,0.0195934136693956,0.021896016951755,0.0237265195636125,0.0259322782405077,0.0280444019217513,0.0301509608944304,0.0320379831759302,0.0337922403003754,0.0360717912582122,0.0383940529709189,0.0402588215712383,0.0420840847727959,0.056639645662711,0.0705093974137479,0.0836106008921542,0.0972989467260119,0.1101277439635439,0.1263009815535623,0.1377111450640862,0.1500133056575656,0.1606978781597897,0.1710814172958133,0.1832925896809072,0.1952108502146897,0.2077950324068032,0.2184811482667774,0.2279657660829006,0.2391600491743363,0.2488308499358223,0.2575641688974872,0.2665675638872498,0.2747228838402345,0.2819012374233838,0.2892105847823291,0.2956577266922094,0.3009906445778081,0.3070132834697297,0.3125877744105255,0.3175762730945798,0.322185898006691,0.3264529161918574,0.3313459610615734,0.3310816266114056,0.3288599832249371,0.328371031801921,0.3277241737924659,0.3272003682748994,0.3256886355976346,0.3244064096682854,0.3250980199156782,0.3256131720981075,0.3271647857945124,0.3274792616396383,0.3282528540725989,0.329389879397195,0.3297382993926402,0.3299248697822904,0.3311789846763265,0.3321095173041894,0.3347464280106767,0.3363907924793534,0.3394062078272604,0.3411989795918367,0.3417533432392273,0.3424623272681798,0.3464799394398183,0.3478747203579418,0.3513064133016627,0.351761102603369,0.3515530455828963,0.34201052340072,0.3477927063339731,0.0,2.1127122596448547,53.03991575597495,174.81159145962926,260.9210983833472,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95669,44677,423.7527307696328,6316,64.74406547575495,4914,50.674722219318696,1944,19.943764437801168,77.38307130315455,79.75890692044264,63.34642469116329,65.09722336044074,77.13391714717012,79.51223737918153,63.25342090931602,65.00810339162611,0.2491541559844279,246.66954126111307,0.0930037818472726,89.11996881462869,143.07942,100.69551629552744,149556.4916535137,105253.85370133218,369.53032,241.44848310025532,385490.5350740575,251611.21765593387,363.18416,176.30927922803036,375181.7307591801,180915.4021664076,2804.08992,1286.225782046118,2893452.800802768,1306923.3524403067,1167.26252,513.9175851197148,1200237.966321379,517490.813173874,1902.27858,803.2998843336125,1952937.8795639127,808743.9281739173,0.38131,100000,0,650361,6798.022347886986,0,0.0,0,0.0,31817,331.86298592020404,0,0.0,33341,344.01948384534177,1668592,0,59995,0,0,0,0,0,58,0.5958042835192173,0,0.0,1,0.0,0,0.0,0.06316,0.1656395059138234,0.3077897403419886,0.01944,0.3273495248152059,0.672650475184794,24.614326127176778,4.353144102210671,0.3213268213268213,0.2252747252747252,0.2321937321937321,0.2212047212047212,11.012869253174395,5.673608005752497,20.764547868114235,12298.637864803648,55.70975578957424,13.217479616123534,18.07941471303627,12.637050572807174,11.775810887607246,0.5653235653235653,0.7687443541102078,0.707409753008233,0.6117440841367222,0.1030358785648574,0.7171945701357466,0.906801007556675,0.8669724770642202,0.7211155378486056,0.1322314049586777,0.5091973244147158,0.6915492957746479,0.6465441819772528,0.5808988764044943,0.0946745562130177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021967342558942,0.0041740117115474,0.0063285362217421,0.0085096876396279,0.0107264501042143,0.0130907906389649,0.0153214132805969,0.0173013912564178,0.0194821788149193,0.0216716998515637,0.0239088756061802,0.0262366121396958,0.02813888431792,0.0301491491903918,0.0324038253226455,0.0342617952560591,0.036362506215813,0.0384763090975141,0.0402674792266813,0.0423137050547159,0.0574476087001943,0.0719049363974244,0.0853923389254351,0.0982575685878629,0.1103449003047269,0.1262185193800089,0.1384804571137802,0.1495442410576585,0.1597554208639235,0.1703062383472987,0.1841040649006907,0.1962264150943396,0.2075434782608695,0.2173033830682625,0.2276992464660909,0.2378815578084316,0.2472164833324027,0.2554624498806145,0.2643000715429428,0.272090677791276,0.2788266753099425,0.2865121834127607,0.2934129607905869,0.2998595758470457,0.3058724791398058,0.3112753565964167,0.3157373886682784,0.3201569446744544,0.3255910464407527,0.33002087903375,0.3292466048717396,0.3282959659771254,0.3273275388451406,0.3259848211058908,0.3242190982851368,0.3221443577200865,0.3217664115605837,0.3226092525989062,0.3226689478186484,0.3246300664808063,0.3252845422094305,0.3259190669451121,0.3272548773864728,0.3290086716155063,0.3303573565666962,0.331604874254602,0.3322953232929453,0.3360514887368388,0.3388461538461538,0.3402947434786035,0.3433390768114627,0.3451546609053064,0.3452455329251531,0.3460087520748453,0.3449461166852471,0.3487311425564261,0.3529146634615384,0.3532651455546813,0.3514745308310992,0.354275092936803,0.0,2.632217316025766,57.95040510752798,180.53781561462637,270.8947532280391,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95697,44375,419.91911972162137,6078,62.32170287469827,4783,49.42683678694212,1908,19.64533893434486,77.3960056150407,79.77969808170407,63.35197710932333,65.1128748227363,77.16251882761468,79.54629632310476,63.26575019353693,65.02898734741873,0.2334867874260311,233.40175859931375,0.0862269157863977,83.88747531756735,144.5994,101.70634599705409,151101.28844164393,106279.555259887,372.05227,243.1482013049333,388221.2086063304,253531.61240488227,362.10564,175.5843097126405,374432.0616111268,180537.90392205096,2743.62308,1254.2020697118717,2836948.9116691225,1281275.443054533,1125.83969,496.2375938364731,1165686.3538041946,508078.6809486143,1869.67034,780.6967433372077,1925709.7087683,790969.9181325136,0.37762,100000,0,657270,6868.240383711088,0,0.0,0,0.0,32022,334.0334597740786,0,0.0,33125,342.2364337440045,1665569,0,59629,0,0,0,0,0,69,0.7210257374839336,0,0.0,1,0.0104496483693323,0,0.0,0.06078,0.1609554578676977,0.3139190523198421,0.01908,0.3278327832783278,0.6721672167216721,24.75503114407942,4.412118678172472,0.3211373614886055,0.2283085929333054,0.227263223918043,0.223290821660046,10.952499026612545,5.50988625140577,20.15710861883653,12186.524417200984,53.94209356781634,12.870800130406014,17.32229868513887,12.12110455703604,11.627890195235416,0.5515366924524358,0.7783882783882784,0.6881510416666666,0.5740570377184913,0.1001872659176029,0.721324717285945,0.936842105263158,0.8257575757575758,0.7330677290836654,0.1232227488151658,0.4922425952045134,0.6938202247191011,0.6403508771929824,0.5263157894736842,0.0945157526254375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022184628787341,0.0044209202814787,0.0065467611294939,0.0086156972313944,0.0107012796777409,0.0133283101861279,0.0155082231308053,0.0177030903837711,0.0198227302002719,0.0220887028260847,0.0240109084571299,0.0262023081030021,0.0282414406631493,0.0303145794277002,0.0326145274453157,0.0347525868039404,0.0366775770633079,0.0387473791285213,0.0408091102906765,0.0429399257931379,0.0574269628886869,0.0711856247318242,0.0846750086531502,0.096907823490448,0.1090368621333024,0.125,0.1368039126237282,0.1478315484681385,0.1583377844247409,0.1689708800343218,0.1812600969305331,0.1934147475905634,0.2045034667130344,0.2143598823928036,0.2241877851684899,0.2338166924950188,0.2436179111135894,0.2530864890975881,0.2621388920357992,0.2705603950888264,0.2774776022905699,0.2840568207019714,0.2906204974372298,0.2968987334202437,0.3032543482213199,0.3092019563988497,0.3142882087355633,0.3188341489388676,0.3231791497322753,0.3268110510605284,0.3258615370169155,0.3246580599183181,0.3240506684642175,0.3227084744297304,0.3220831172679457,0.3217721982956107,0.3203967840275474,0.3207939601382224,0.3202529703561018,0.3207194372718369,0.3215947961644143,0.3219026984439629,0.3226863055995994,0.3235483799230547,0.3244363514387713,0.3233590482869685,0.3245494729683781,0.3282229746676699,0.3298088369161823,0.3330820803744991,0.3349317258071882,0.3372303114039749,0.3393093870336469,0.3423917180482606,0.3462920923193341,0.3502818083703082,0.3486690260040006,0.3476132190942472,0.3569256289742881,0.361380379992245,0.0,2.143692741431956,54.120756346124686,179.10168849558502,267.0732822267975,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95824,44768,422.8377024545,6297,64.62890298881283,4955,51.14585072633161,1937,19.880197027884456,77.38566316619061,79.70802204734541,63.36611244363343,65.08481137426895,77.1473389868922,79.46899662845847,63.27877896855309,64.999359248473,0.2383241792984165,239.0254188869392,0.0873334750803422,85.4521257959533,143.81862,101.25868414831328,150086.2205710469,105671.52712088128,373.59019,243.9105370481148,389306.4368008015,253975.3579981161,369.08281,179.98107868710082,381329.9486558691,184820.0779507265,2845.33644,1299.6536375786816,2938731.5495074303,1325688.050570506,1174.37506,517.9227866035039,1208536.7861913508,523503.6075793774,1896.25844,787.6824447184125,1947667.995491735,795135.8511993341,0.382,100000,0,653721,6822.100935047587,0,0.0,0,0.0,32141,334.8326097846051,0,0.0,33735,348.2947904491568,1668357,0,59859,0,0,0,0,0,70,0.7200701285690433,0,0.0,0,0.0,0,0.0,0.06297,0.1648429319371727,0.3076067968874067,0.01937,0.3343409915356711,0.6656590084643289,24.74446060741376,4.378585598281849,0.3313824419778002,0.224217961654894,0.2250252270433905,0.2193743693239152,10.934074466899895,5.642961791319372,20.562140520629395,12337.655757430572,56.07057657462294,13.301435604998574,18.48945907617656,12.435036792454136,11.84464510099367,0.5600403632694249,0.7902790279027903,0.6881851400730816,0.5721973094170404,0.1186752529898804,0.743140243902439,0.9219858156028368,0.8394495412844036,0.7294117647058823,0.1666666666666666,0.4940982706560527,0.7093023255813954,0.6334991708126037,0.5255813953488372,0.107986501687289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396432803621,0.0046125928854556,0.0071855558149211,0.0094995224838965,0.0117986899385654,0.0138784237857651,0.0161249222803208,0.0182977854883151,0.0205222545863355,0.0227084335376648,0.0248314169177478,0.026984029231843,0.0291369901026732,0.0313538996798731,0.0333996720871959,0.0355523420957496,0.0376524879199561,0.0396144278606965,0.0416787805789757,0.0435366221658012,0.0590057576769025,0.0726888823849145,0.0857124889950949,0.0978220900791107,0.1103960396039604,0.1256785586042287,0.1380888319227143,0.1500095649031819,0.1613109648795367,0.1715662650602409,0.1838299336552006,0.1959151491586201,0.2076956474546836,0.2178349649128551,0.228534091782612,0.2394092155302025,0.2486438922242395,0.256929781212094,0.2652235965746907,0.2734256221493158,0.2808912194783894,0.2875198394174213,0.2941627810895355,0.2995350949529717,0.3048643150361463,0.310394793393504,0.3144817263315455,0.3193442456669751,0.3236736801342455,0.3282456809778818,0.3282163644428911,0.3275819435667775,0.3264456416243512,0.3257784642924167,0.3247580309957841,0.3232457751653196,0.3224462642358196,0.3229601393316026,0.3240772444018352,0.3248358646845203,0.3251659105395373,0.3268214476575025,0.3274598964254137,0.3284309322795042,0.3284885126964934,0.3295988245480544,0.3298451834862385,0.3341864139020537,0.3361237681466568,0.3397077610986905,0.3422689844464776,0.3459881958845111,0.3482869581677077,0.3494058500914077,0.3527462121212121,0.357202530134861,0.3620981387478849,0.3670245088110188,0.3671059857221307,0.3657794676806083,0.0,2.140205331850108,57.488813042102734,184.6220265570824,274.71260304563395,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95772,44509,421.05208202815015,6204,63.4841080900472,4818,49.795347283130766,1952,20.12070333709226,77.37657405990127,79.72113853825145,63.3458979718325,65.07891082207229,77.1322109642824,79.47419730546407,63.25489044306573,64.98849067798736,0.2443630956188798,246.94123278737837,0.0910075287667666,90.4201440849306,144.80092,101.85281451749502,151193.37593451113,106349.26128460826,370.06452,241.6666464798649,385826.0765150565,251759.88439195688,362.87076,176.6323758617663,375010.09689679655,181541.0869074052,2784.01124,1286.5206334968009,2880476.840830305,1316927.3623781493,1163.79585,517.2026615014094,1205166.5831349457,530028.5589748666,1925.1455,816.08592334669,1986346.8863550932,832763.6988211636,0.38036,100000,0,658186,6872.426178841414,0,0.0,0,0.0,31842,331.94461846886355,0,0.0,33233,343.1274276406465,1663524,0,59635,0,0,0,0,0,66,0.6786952345153071,0,0.0,1,0.0104414651463893,0,0.0,0.06204,0.1631086339257545,0.314635718891038,0.01952,0.3391812865497076,0.6608187134502924,24.564781902256644,4.408060955501166,0.3273142382731424,0.2189705271897052,0.2202158572021585,0.2334993773349937,11.02663058151978,5.5399648164071404,20.88060594783007,12266.637898510526,54.52707543989965,12.600453443259887,17.744601172040113,11.783682966795372,12.398337857804268,0.5579078455790785,0.7876777251184834,0.7006975269499048,0.5786993402450519,0.1226666666666666,0.7234701781564679,0.927860696517413,0.8842105263157894,0.6752767527675276,0.1764705882352941,0.4973064927700595,0.7013782542113323,0.6424394319131161,0.5455696202531646,0.1082299887260428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0049975164472016,0.0072546114977982,0.0096001462879434,0.0118786103653079,0.0140833596399222,0.0163045140765363,0.018356679054192,0.0204563577255719,0.0223461971542634,0.0246292291451002,0.0268425374666392,0.0290114318611727,0.0312767118773236,0.0332497704600084,0.0351424820928381,0.0371102850575188,0.0390867314654412,0.0412183585425437,0.043051288726894,0.0579437886805055,0.0721008051866569,0.0845728901328134,0.0974599871790829,0.110087682320209,0.1259090140368679,0.1376773181230254,0.1498068758578861,0.159973941089775,0.1701053037939391,0.1833299227778436,0.1950860641992405,0.2071842737943713,0.2169617261527014,0.2261022733527825,0.2359539353365624,0.2455585952766456,0.2540827696428772,0.2624052299450674,0.2707138030943301,0.2788351401696151,0.2863825606960752,0.2928118643266001,0.2979148951459334,0.3032095825841878,0.3077273847670693,0.3135837969619303,0.3192554475573343,0.3236941142997556,0.3281033687125058,0.3269442726955026,0.3258354402550291,0.3249184293429343,0.3245783758807901,0.3236249795991038,0.3219794344473007,0.3211358962189527,0.3217448343719252,0.3226329719115512,0.323260954825828,0.3238671487177565,0.324448130158354,0.325290100959323,0.3266644362663098,0.3279550529424476,0.3288109994271131,0.3297403373055373,0.3310364268487487,0.3346882994007779,0.3384151183103065,0.3393541324575807,0.3428510660924124,0.3456673588823862,0.3459344337111128,0.3456165025785279,0.3453424982223275,0.3487022900763358,0.3493109646494907,0.3572589382448537,0.3741547708489857,0.0,1.98712230018216,56.64107991151784,179.0937986286909,264.9501784165359,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95749,44718,422.55271595525807,6233,64.00066841429154,4897,50.53838682388328,1943,19.895769146414064,77.3313489084019,79.69767613661146,63.31030609897547,65.06317967104633,77.09088105146668,79.45963171137669,63.22248309836995,64.97903113689848,0.2404678569352256,238.04442523477576,0.0878230006055176,84.14853414784318,143.77748,101.162261318944,150160.8163009535,105653.59567091455,373.08553,243.4689125987374,389032.17788175336,253660.92867678768,367.13064,178.33378633668218,379775.61123353767,183432.9574078073,2815.26996,1285.167352764806,2907741.4907727498,1309706.4123539743,1178.32649,518.4098104475855,1219099.6877251982,529884.4692347544,1909.98218,794.4591005723919,1958478.6472965772,798294.4656043974,0.38069,100000,0,653534,6825.491650043343,0,0.0,0,0.0,32052,334.1131500067886,0,0.0,33614,347.3561081577876,1662892,0,59706,0,0,0,0,0,70,0.7310781313642962,0,0.0,1,0.0104439733052042,0,0.0,0.06233,0.1637290183613964,0.3117278998876945,0.01943,0.3246474555487431,0.6753525444512569,24.708799873189072,4.398131002764979,0.324280171533592,0.2197263630794363,0.2293240759648764,0.2266693894220951,11.143768392610593,5.717921602489114,20.74377134127617,12319.338821990556,55.60450866698462,12.94910315008482,17.91577526653335,12.470447241533105,12.269183008833364,0.5619767204410864,0.7862453531598513,0.6977329974811083,0.6019590382902938,0.1099099099099099,0.7452326468344775,0.9119804400977995,0.9057071960297768,0.7984189723320159,0.1504065040650406,0.4949804796430563,0.7091454272863568,0.6270042194092827,0.5448275862068965,0.0983796296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022695265402891,0.004390723708894,0.0067191068256787,0.0089615931721194,0.0114244440375185,0.0137690827061543,0.0159476297784258,0.0181443172651806,0.0204563818797369,0.0226867689534383,0.0250864075977149,0.0270717323853946,0.0291139240506329,0.0314239188687801,0.0334640792733278,0.0352918062621499,0.037567047031292,0.0396397144280259,0.041580473809499,0.043557509035423,0.0574751038643813,0.0714883643060438,0.0841174434339302,0.0973216820719896,0.1095553892057735,0.1256305853735921,0.137710762831464,0.1486617460672482,0.1599700790767258,0.1704218703059954,0.1833229164421647,0.1956126293906189,0.207804081632653,0.2189360770577933,0.2282320302092851,0.2384658020175147,0.2480123280328747,0.2570881872924757,0.2658533817521561,0.2732949857915482,0.2797712751180665,0.2859852476290832,0.2930072167513953,0.2988534725973948,0.3048402204191857,0.3105719536713826,0.3154396023986279,0.3204028110200132,0.3246071261864011,0.3295002970493101,0.3286538046992886,0.3269278384549781,0.3265783210578941,0.3249302957195071,0.3243860820535648,0.32272817657586,0.3210978731472995,0.3218688524590164,0.322880907243258,0.3237854034386816,0.3249138705811863,0.3266491494952289,0.3278489491752491,0.3291608923063168,0.3315293212103719,0.3321857966251988,0.3311045353667558,0.3338156653035545,0.3374453686733399,0.3416989187248134,0.3447630353392384,0.345847916003818,0.3478042028438404,0.3517393285735987,0.3521731020332027,0.352309846010266,0.3605156648178684,0.3685759121224009,0.3691113490364026,0.373218304576144,0.0,2.3631506435139027,57.71878814164092,180.62748405394757,271.58517364862524,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95494,44697,423.3040819318491,6188,63.56420298657508,4872,50.474375353425344,1871,19.25775441388988,77.22623088476638,79.71521888868871,63.24095407219974,65.077237955037,76.99270683457317,79.48083522346718,63.154213718110526,64.99268049832526,0.2335240501932105,234.3836652215288,0.0867403540892155,84.55745671174952,143.88066,101.25561457928224,150669.84313150565,106033.48333851575,372.90309,243.5477957046158,389935.91220390814,254476.8317429532,362.39051,175.8479167613602,376343.2781117138,181716.34482272025,2798.90864,1284.756621190817,2900075.7325067543,1314476.617578924,1159.50912,510.7413254778929,1202539.0809893815,523158.39265073487,1833.7336,771.541032060485,1889165.183152868,780081.8390501206,0.38157,100000,0,654003,6848.629233250256,0,0.0,0,0.0,32118,335.75931472134374,0,0.0,33164,344.1472762686661,1657304,0,59481,0,0,0,0,0,65,0.6806710369237858,0,0.0,0,0.0,0,0.0,0.06188,0.1621720785177031,0.3023594053005817,0.01871,0.3361590628853267,0.6638409371146733,24.55331591038515,4.357878295939585,0.3261494252873563,0.2352216748768472,0.2208538587848932,0.2177750410509031,11.080250331142803,5.717783587180213,19.972264341256484,12370.32941737678,55.18578548070397,13.652151422934532,17.957080766007206,11.948271787575946,11.6282815041863,0.5638341543513957,0.7530541012216405,0.7010698552548773,0.5817843866171004,0.1357210179076343,0.7361963190184049,0.8872901678657075,0.8567961165048543,0.749034749034749,0.199074074074074,0.5008408071748879,0.6762688614540466,0.6465590484282073,0.5287637698898409,0.1195266272189349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.004554353008003,0.0069039738461226,0.009150991357397,0.0117181136992995,0.0137797482545991,0.016204246982112,0.0185866388735618,0.0207985922841621,0.0229298579947132,0.0251272786992938,0.0275755706354102,0.0295319981465273,0.0316019637773835,0.0335902628533641,0.0355641604373304,0.0376041245241133,0.0395634095634095,0.041705301980559,0.043816047784136,0.0593604438164023,0.0734834337033384,0.0860333785531753,0.0986203480222177,0.1113424286937132,0.126176545408293,0.1389444137285757,0.1500954900935696,0.1614755151878668,0.1716346515602661,0.1842446229593158,0.1960582263103089,0.2085082258539297,0.2185122662398877,0.2272616946160635,0.2372073383485382,0.2467894218722033,0.2560735020573812,0.2651297157740295,0.2731070256374945,0.280280187410122,0.2885014480179155,0.2952328975156016,0.3009278177054539,0.3064883774790038,0.3120176132990302,0.3167366225148918,0.3212651757188498,0.3262290608065082,0.3308442890998398,0.3298737803724424,0.3284288038831738,0.3272873556728679,0.3261592756515953,0.3254504839910648,0.3247335606130409,0.3240062886090422,0.3245361299988475,0.3257982141939022,0.3253273153869575,0.3266620355593939,0.3271485148514851,0.3278781393592245,0.3290189667913205,0.3301211189080073,0.3305356444676137,0.3315564424173318,0.3356841508721113,0.3387964688917806,0.3404424637911825,0.34432,0.3470894412577013,0.34964859437751,0.3507141237814554,0.3527397260273973,0.3570929419986023,0.3618151464562149,0.3687094155844156,0.3685510428100988,0.3788748564867968,0.0,2.0674478379685794,57.48859250159202,176.88223388831872,273.3201181135403,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95714,44567,421.15051089704747,6335,65.04795536703095,4984,51.52851202540903,2041,20.97916710199135,77.36399481233721,79.74718890090318,63.33329461681414,65.09660913046166,77.1043523949014,79.48876522789624,63.23750878834702,65.00408592197131,0.2596424174358134,258.4236730069449,0.0957858284671218,92.52320849034844,144.47356,101.66622299787332,150942.97594918194,106218.75900899904,374.81721,244.79663994545623,391032.15830495016,255189.5710109381,367.00762,178.46260075786594,379991.0462419291,183814.19289053956,2872.17816,1319.1262367546708,2969118.498861191,1346533.723555962,1195.44207,534.0588111943592,1235031.1239735044,544148.5495998148,2000.3195,841.8407398971194,2055967.2357230915,849091.2380525888,0.38141,100000,0,656698,6861.044361326452,0,0.0,0,0.0,32337,337.254738073845,0,0.0,33653,348.2249200743883,1660662,0,59621,0,0,0,0,0,72,0.7522410514658253,0,0.0,0,0.0,0,0.0,0.06335,0.1660942293070449,0.3221783741120758,0.02041,0.3319752527538856,0.6680247472461144,24.551818463498048,4.448718236509975,0.3276484751203852,0.2215088282504012,0.2207062600321027,0.2301364365971107,11.242184724718246,5.740538460807776,21.827860214412397,12283.510792690648,56.44137786291645,13.109745347947385,18.43412162069884,12.302277773105944,12.59523312116428,0.5551765650080257,0.782608695652174,0.6938150642988365,0.5754545454545454,0.1194420226678291,0.7080561714708056,0.9185185185185184,0.831353919239905,0.7245283018867924,0.1679389312977099,0.4982098595428256,0.703862660944206,0.6460396039603961,0.5281437125748503,0.1050847457627118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505334292459,0.0046244181447564,0.007136766019654,0.0093704900705327,0.0117829015649484,0.0139474703017706,0.0160961279529968,0.018342252542996,0.0206294171192456,0.022814077555576,0.025073579932932,0.027442562675239,0.0296138575160978,0.0319835136527563,0.0341194076061716,0.0361566616348559,0.038161533919637,0.0399306816648852,0.0416411130630021,0.0436658018941643,0.0581072331181987,0.0717926710557992,0.0849349559378934,0.0982932497660185,0.1099106126407218,0.1257995961048435,0.1374461858206264,0.1483246463142219,0.1596605465414176,0.1696566358024691,0.1825675239427526,0.1950267159884915,0.2065568422769532,0.2173390051067831,0.2266321984489302,0.236932717751132,0.2469798208529008,0.2555837963067096,0.2647058823529412,0.2723473441954727,0.2794503753224071,0.2857877813504823,0.292305325079598,0.2981781133884694,0.3036300021867483,0.3087811368172075,0.3145098726194349,0.318912803040897,0.3234343068525752,0.3283214295126901,0.3274032837145508,0.3262521470285125,0.3254099974682832,0.3241233958396489,0.3238636363636363,0.3226639369308806,0.320360605008052,0.3212884238064094,0.3228370580926282,0.3229381994440088,0.3234886508352685,0.3247692642147078,0.3256369426751592,0.3252185608607935,0.3264937938997402,0.3265338145300486,0.327411603158256,0.3315078840524974,0.3347532211504612,0.3400389615552817,0.3403558265459344,0.3398516163222045,0.3395475227502528,0.3457556935817805,0.3502137767220902,0.349550629119233,0.3473193473193473,0.3531114327062228,0.3538806388344074,0.3621769772905246,0.0,1.9873138158403776,59.74101163451579,183.67169093759415,272.0343911453519,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95664,43879,415.8304064224787,6094,62.4581869877906,4819,49.73657802308078,1905,19.5266767017896,77.31725194233033,79.72555915747971,63.30264576078415,65.08497665768436,77.07599911731022,79.48750387474256,63.21317687484781,65.0002978987272,0.241252825020112,238.05528273715024,0.0894688859363412,84.67875895716759,142.52678,100.22838929340412,148986.84980766015,104771.271631339,365.87371,238.28534490135107,381859.92640909855,248488.5797179201,352.7439,170.54434146718629,365001.8815855495,175427.180357376,2793.3214,1268.7786005810913,2886231.4350225786,1292588.2678762036,1193.07874,519.5346302171939,1231680.015470815,527607.3133228741,1883.09978,784.5629446923043,1932262.585716675,786161.7648723964,0.3778,100000,0,647849,6772.129536711825,0,0.0,0,0.0,31544,329.0997658471316,0,0.0,32371,334.60863020572003,1677704,0,60171,0,0,0,0,0,63,0.6585549422980431,0,0.0,1,0.0104532530523498,0,0.0,0.06094,0.1613022763366861,0.3126025598949786,0.01905,0.3297888975762314,0.6702111024237686,24.58596987440252,4.425418465152692,0.3237186138202946,0.2232828387632288,0.2162274330774019,0.2367711143390745,11.105660645208609,5.594678650788343,20.15052980356785,12192.398818117916,54.47432773465714,12.865715283826953,17.53890757699718,11.683141055496074,12.386563818336937,0.5534343224735422,0.775092936802974,0.691025641025641,0.5902111324376199,0.1226993865030674,0.7352226720647773,0.9250645994832042,0.8567639257294429,0.735632183908046,0.1666666666666666,0.4907924107142857,0.690856313497823,0.6382079459002535,0.5416133162612036,0.112781954887218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0049485372407848,0.0071039305032627,0.0088813015069759,0.0111308948466195,0.0130997249668941,0.015210250341746,0.017438296829029,0.0199095578154733,0.0218017150409294,0.0238845171285229,0.0260386160691348,0.0279579190085026,0.030053715216562,0.0320478393786664,0.0341127780651836,0.0362622325427102,0.0379794161326839,0.0399954219600253,0.0419390148553557,0.0563472991327969,0.0698105501272424,0.0830332489947612,0.0955868426036997,0.1073105369219569,0.1226556877354896,0.1344853573361921,0.1459047821919267,0.1575622842362899,0.1673086207821469,0.1806370991198681,0.1937708396483783,0.2055398345668262,0.2151958316001488,0.224456976692955,0.2343585480742588,0.2439936169975338,0.252713753810504,0.2615482348670478,0.2695341568685816,0.2775001156925355,0.2850644870850434,0.2915828342840911,0.2972532476870715,0.3035670894688244,0.308844560607555,0.3136584938484837,0.3185967856779574,0.3232314082739166,0.3271349499209278,0.3267666240839104,0.3251995658326807,0.3252776606213974,0.3245988687521643,0.3239281679253136,0.3232420826623725,0.3215744640425599,0.3217088628378156,0.3226059654631083,0.3239624928693668,0.3246400688970849,0.3262719393496673,0.3268315191174311,0.3274704618689581,0.3272196346260588,0.3284616189081782,0.3288249728927695,0.3309329895286311,0.3345287065358788,0.3400492767445557,0.3424037318210921,0.3452317527970165,0.3480156723963599,0.3484581834876425,0.3512264150943396,0.3529759791740622,0.3490522422561257,0.3532287634956202,0.3485218334689449,0.3446840711312902,0.0,2.5420796507138417,53.76822444874752,180.1016224607403,272.9409348329015,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95859,44388,419.991863048853,6124,62.790139684328025,4789,49.40589824638271,1904,19.46609082089319,77.4717338221379,79.75864617638805,63.40399372213196,65.09089059030752,77.23447131857064,79.52396457253299,63.31590916984624,65.00673825204919,0.2372625035672655,234.68160385506565,0.0880845522857214,84.15233825833468,144.96482,101.87301814091391,151227.13568887635,106273.8168986886,369.55411,241.22404703108072,384993.4487111278,251119.6726766196,358.38449,174.04145873513772,370766.9285095818,179047.74251947657,2746.82104,1256.3825055445004,2835819.8186920374,1280996.0311963407,1137.37495,498.4434671251801,1173841.7780281454,507309.1802806,1867.87462,783.971490304709,1912266.1408944384,786485.154697373,0.38035,100000,0,658931,6873.960713130745,0,0.0,0,0.0,31853,331.7372390698839,0,0.0,32887,340.03067004663103,1666657,0,59778,0,0,0,0,0,51,0.5215994324998174,0,0.0,0,0.0,0,0.0,0.06124,0.161009596424346,0.3109079033311561,0.01904,0.320772345063843,0.679227654936157,24.87197705144913,4.418940140647142,0.3092503654207559,0.2361662142409689,0.2305282940070996,0.2240551263311756,11.181875684957978,5.7274185622519695,20.25795206035501,12261.706314411733,53.94281479568114,13.348504465221485,16.697864812990016,12.271143533434527,11.625301984035108,0.5560659845479223,0.7771883289124668,0.7022282241728561,0.5652173913043478,0.1118359739049394,0.7143968871595331,0.927007299270073,0.8346456692913385,0.7093023255813954,0.1531914893617021,0.4980022831050228,0.6916666666666667,0.6563636363636364,0.5212765957446809,0.1002386634844868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024091507237574,0.0046499376969132,0.0069764140420612,0.0092671538773853,0.0116860417852207,0.0140303397193932,0.0160846711759432,0.0182682401901284,0.0206993035557461,0.0228565000409064,0.0247242336409353,0.0269937643583852,0.0290727537958948,0.0311561098077952,0.0331312881411842,0.0351208732199469,0.0367742135697365,0.0387728662486396,0.0404764129881727,0.042262902101177,0.0564355506428772,0.0706079138570905,0.0838293858729826,0.0964149119488925,0.1078776508284497,0.1235053442862127,0.1354887967508987,0.1474605842677503,0.1585706965025408,0.1691549220299019,0.1820099215530136,0.1943910083216254,0.2054812369701181,0.2158562414026507,0.2257462276790617,0.2362941020426209,0.2465693918467364,0.2562113370232736,0.2648027991982878,0.2729579879965704,0.2796153268913287,0.2865408394186128,0.2928076328125922,0.2983735948337718,0.3037254497591984,0.308640151655034,0.3132347980359575,0.3185899145364267,0.3231329878655519,0.3283756926438264,0.3275067514006637,0.3269945295254809,0.3259777085263483,0.3251428653682832,0.3247172381121573,0.3224296214963247,0.3206310182339684,0.3214595009722381,0.322180284946785,0.3230657245321876,0.3241132504519953,0.3255306603773585,0.3270272522710226,0.328382764907288,0.3288414211645521,0.3301099242974178,0.3320599886813808,0.3353725147476513,0.3376348562111909,0.3419615852940021,0.3444444444444444,0.3466863188924567,0.3474013775829681,0.3508771929824561,0.3539898132427844,0.3536962205847397,0.3528250303766707,0.3551102204408817,0.356290672451193,0.3559001512859304,0.0,2.208495301822959,56.38755145350897,173.33291494148546,264.7881525652653,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95730,44834,423.4513736550716,6369,65.18332811031024,4950,51.01848950172359,1981,20.28622166509976,77.34438518034166,79.70055449345371,63.33412346583962,65.07348148939077,77.0877883854912,79.44565691574373,63.238430620036816,64.98163632580506,0.2565967948504664,254.89757770998267,0.0956928458028016,91.8451635857167,144.6368,101.81073574995207,151088.26909014938,106351.96464008364,373.45776,244.2852784404896,389447.1116682336,254513.07358511703,368.6146,179.43001227377823,380675.2951008044,183915.410224811,2830.15244,1303.8104994430394,2918816.922594798,1324404.7124674057,1178.92961,527.8464824156166,1216562.0704063512,536438.8558178965,1933.1775,823.3337657971182,1981038.8175075732,825611.5238714688,0.38258,100000,0,657440,6867.64859500679,0,0.0,0,0.0,32127,334.8897942128904,0,0.0,33732,348.08315052752533,1659065,0,59564,0,0,0,0,0,72,0.7416692781782095,0,0.0,0,0.0,0,0.0,0.06369,0.1664749856239218,0.3110378395352489,0.01981,0.3291498580606604,0.6708501419393396,24.79116834132404,4.393464544716873,0.3309090909090909,0.2234343434343434,0.2274747474747474,0.2181818181818181,11.1966400646112,5.855950775961206,21.356872944973325,12409.36867673451,56.21555202072637,13.167613943086602,18.511013615101888,12.648878856392807,11.888045606145074,0.5666666666666667,0.8019891500904159,0.6965811965811965,0.5817051509769094,0.1129629629629629,0.7315589353612167,0.9338624338624338,0.8530120481927711,0.7272727272727273,0.1991525423728813,0.5070151306740027,0.7335164835164835,0.6434995911692559,0.5321428571428571,0.0888625592417061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.0051605446453012,0.0076806785783134,0.0099225089627575,0.0122923317811171,0.0144350676452923,0.0165813986669656,0.018786672789428,0.0210481143546096,0.0232684259534017,0.0253711920156571,0.0276198296212665,0.0297456250385572,0.0317308286473459,0.0337855263836591,0.0359014106340102,0.0379368168267638,0.0400199114355937,0.0421637913115776,0.0439039633352429,0.0582259714768954,0.0720550066979236,0.0860622207304537,0.0987706254140857,0.1105674424490398,0.1266536244910907,0.1387642535136568,0.1499207303448496,0.1615539082694238,0.1720847450358107,0.1850157185306403,0.1980744266551276,0.2103231558803062,0.2203856749311294,0.23045788009107,0.2409158344589358,0.2499190893365325,0.2588293516893867,0.2671878723235257,0.2747752390769054,0.2818397454440266,0.2887586013200393,0.2946294345340262,0.2998344450309516,0.3059721445759704,0.3113793146002246,0.3170138627760648,0.3213215892722846,0.3264956821659189,0.3307568310343005,0.329848152090435,0.328570445316264,0.3282822587465817,0.3280793591115481,0.3266438559952395,0.3259271761980021,0.3249051632461946,0.3243389897395422,0.3253966895465671,0.3251538131349263,0.3257655358751126,0.3266936999307684,0.3277326788748348,0.3283879787543982,0.3287003522995994,0.330781890853993,0.3328954882924043,0.3354679958358307,0.3386040287364417,0.3420853118391125,0.3427892741309213,0.3465087747372913,0.3502144298688194,0.3530035603363382,0.3550295857988165,0.3561546647747428,0.3604045357033404,0.3651708522025524,0.3678929765886287,0.3689320388349514,0.0,2.657244217696141,57.12002931234438,188.97501316504503,269.8201920089969,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95677,44616,422.32720507541,6209,63.7352759806432,4857,50.25241176040218,1971,20.266103661277004,77.28108161739658,79.66903123397752,63.29287913429015,65.05620542069865,77.0382707228139,79.424826792379,63.20416260446122,64.96885260802735,0.242810894582675,244.2044415985265,0.088716529828936,87.35281267129835,144.4927,101.63493020159892,151021.35309426507,106227.12898773888,370.42496,242.08338010190332,386659.3956750316,252518.9231496633,363.52448,176.56855636413843,376311.46461532026,181741.5768557119,2801.27472,1275.7082287088983,2900707.296424428,1306210.71805021,1165.17529,511.7207080314824,1206069.891405458,523090.092740661,1931.8641,799.4494764188927,1989235.845605527,811577.6218696547,0.38046,100000,0,656785,6864.606958830231,0,0.0,0,0.0,31962,333.53888604366773,0,0.0,33282,344.3042737544028,1658085,0,59549,0,0,0,0,0,57,0.5853026328166644,0,0.0,1,0.010451832728869,0,0.0,0.06209,0.1631971823581979,0.3174424222902238,0.01971,0.3300137888769726,0.6699862111230275,24.683669728291644,4.518070634236647,0.3209800288243772,0.2281243565987235,0.2188593782170063,0.2320362363598929,11.528036685175737,5.95365081609103,20.8682682253228,12325.104092784686,55.10456928493211,13.212658397093811,17.845573914891336,11.805316657632371,12.241020315314586,0.555692814494544,0.7788808664259927,0.7010904425914047,0.5870178739416745,0.1055900621118012,0.7286821705426356,0.929471032745592,0.8829268292682927,0.7349397590361446,0.1111111111111111,0.4931314830389683,0.6947960618846695,0.6362053959965187,0.5417690417690417,0.1041433370660694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805905890695,0.0045215381340037,0.0067284370338045,0.0091536203025469,0.0111974452332038,0.0134312247973605,0.0154883047494748,0.0175092906440151,0.0197291081012011,0.0217709495491253,0.023766802350022,0.0257916136186291,0.0282496914849856,0.0306211813676499,0.0324581501434557,0.034553707130967,0.0366691181802173,0.0387445640328389,0.041036469927393,0.0431093785828938,0.0582851889384552,0.0722056436835767,0.0855226559465955,0.0985312375060497,0.1110794615352154,0.127101162581587,0.1391784311644199,0.1505308782654071,0.1615262083195244,0.1719328759622508,0.185033001164747,0.1968728328710124,0.2088900504176058,0.2187671082886236,0.2283743885779756,0.2386201084485645,0.2484383206499268,0.2569658745354206,0.2649221084686445,0.27278253090809,0.2801149332066596,0.2864676103871754,0.2924153472098678,0.2979244739117901,0.3042859228971962,0.3103018486067576,0.3149252983054246,0.319839863322836,0.3250632582884578,0.3294970500304257,0.3282931241646528,0.3274332620542181,0.3270737294606748,0.3254273163518274,0.325445110494766,0.3234332048466606,0.3220909018799079,0.3227203134517558,0.3233989346213795,0.3239864804449293,0.3240571976173922,0.3263011521652761,0.3281832936365744,0.3291406970726548,0.3307052336267776,0.3327232796486091,0.3331807387485336,0.3370520194677959,0.3389264105811172,0.3427730490812187,0.3444170771756978,0.3468334220329963,0.3481280383862618,0.3496662621359223,0.3534426229508197,0.3558569090483984,0.3576118491372728,0.3601208459214501,0.3563249727371865,0.3555469953775038,0.0,1.99416729993251,57.01577712511061,179.33206057575535,271.16635221058493,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95711,44121,418.36361546739664,6217,63.53501687371357,4878,50.22411217101482,1999,20.43652244778552,77.3612597271838,79.72753210336758,63.34108899169471,65.08937130988345,77.11196746150307,79.480415216011,63.24766819611099,64.99974633681055,0.2492922656807366,247.116887356583,0.093420795583718,89.62497307290107,144.71996,101.8043274402854,151205.1488334674,106366.38154473926,369.09655,240.78465322403875,384903.1981694895,250841.39046090705,354.47402,172.29711558583423,365317.68553248845,176198.7487976339,2820.50736,1296.9775697880727,2907508.98015902,1315706.794190921,1198.04203,529.1941557392006,1233462.8621579548,534642.5862640663,1959.85546,830.0306666828676,2006542.0275621405,831766.3726284029,0.37939,100000,0,657818,6872.961310612155,0,0.0,0,0.0,31831,331.81139054027227,0,0.0,32589,335.5204730908673,1666618,0,59730,0,0,0,0,0,56,0.5746465923457074,0,0.0,0,0.0,0,0.0,0.06217,0.1638683149265926,0.3215377191571497,0.01999,0.3349143206854345,0.6650856793145655,24.61120858196989,4.379623038093898,0.3288232882328823,0.2166871668716687,0.2252972529725297,0.2291922919229192,10.986696897865102,5.644348737040265,21.388604730255505,12237.12259272223,55.41127851479381,12.696896707008166,18.17214463051215,12.188264268932452,12.35397290834102,0.5506355063550635,0.7729422894985809,0.6938902743142145,0.5768880800727935,0.10912343470483,0.7083653108211819,0.9143576826196472,0.8386308068459658,0.7380952380952381,0.1265306122448979,0.4931468531468531,0.6878787878787879,0.6443514644351465,0.5289256198347108,0.1042382588774341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0047043555843945,0.0070426823080513,0.0090012292875212,0.011319027763653,0.0133602166961976,0.0152550323251687,0.017480982284168,0.0196100483605467,0.0216113841113841,0.0237868208708847,0.0256663071945771,0.027624934434491,0.029751112576232,0.0316908312264589,0.0337237792963701,0.035769023652707,0.0377945892095513,0.039764160262876,0.0416662325348781,0.0557794716508301,0.0691893023499241,0.0825570661295736,0.0949211356466877,0.1071665735577784,0.1231605209742895,0.13633664206329,0.1482064760526512,0.1589595684452278,0.1697702591151277,0.1833423064498761,0.195625128465874,0.2074214205725344,0.2180329481727647,0.2274776260527299,0.2378728349288916,0.2472485197203358,0.2570205306273809,0.2652663318861444,0.2729936364052557,0.278842818490854,0.2855807322403094,0.2920087057320621,0.2973681689736098,0.3025881725124921,0.3074472272794371,0.3126921058550116,0.3180234923217736,0.3219838690884611,0.326839312584145,0.3267558618461787,0.3253185961149833,0.3250278024128271,0.3245938602069723,0.3241406993339676,0.3228090610918677,0.3205243908231606,0.3214854459785589,0.3230136097402708,0.3237637558953837,0.3254335802006187,0.327574935118965,0.3290097804642572,0.329549271176194,0.3293729213862245,0.3312216957671265,0.3304980382048859,0.333280662389786,0.3362105411499436,0.3378092999163246,0.3407485070884806,0.3429826418289585,0.3469426152398871,0.3535169587980878,0.3552311435523114,0.3575135645199339,0.3559244593359732,0.3581217251108424,0.3649513212795549,0.367184388689765,0.0,2.885866742104884,56.41049561982789,185.60613814791944,265.14056791157947,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95652,44258,418.6425793501443,6211,63.710115836574246,4899,50.652364822481495,1984,20.375946138083886,77.2430810454354,79.64804011396576,63.27207635196621,65.05052283085072,76.99469734212657,79.40063020736191,63.17968219571348,64.96129218069999,0.248383703308832,247.4099066038491,0.0923941562527304,89.23065015073917,143.46992,100.90174094385137,149991.552711914,105488.3755110728,369.55088,241.10027216924988,385785.9532471877,251496.43726137443,358.48213,173.7778582288296,371500.428637143,179116.4442578108,2808.55968,1277.256729027559,2904522.435495337,1303920.5680699353,1162.37395,514.4112902491903,1200204.940827165,522852.29609739897,1948.61896,817.4344121804054,2002838.184251244,824454.1970985191,0.37781,100000,0,652136,6817.797850541547,0,0.0,0,0.0,31832,332.1833312424204,0,0.0,32847,340.0451637184795,1664589,0,59765,0,0,0,0,0,55,0.5750010454564463,0,0.0,1,0.0104545644628444,0,0.0,0.06211,0.1643948016198618,0.3194332635646433,0.01984,0.3287713363063201,0.6712286636936798,25.01349064837375,4.436736398265772,0.3229230455194938,0.2282098387426005,0.2222902633190447,0.226576852418861,11.169533902078918,5.75681338763996,21.25952460751422,12273.16248970593,55.47468730075117,13.305614073746211,17.775077579903574,12.120131340332073,12.273864306769296,0.5550112267809757,0.7817531305903399,0.6965865992414665,0.5610651974288338,0.1189189189189189,0.7213375796178344,0.9083769633507852,0.8979591836734694,0.6929133858267716,0.1359649122807017,0.4976667581663464,0.7160326086956522,0.6302521008403361,0.5209580838323353,0.1145124716553288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023714934327874,0.004594972917047,0.0065784798432535,0.0088499171907863,0.0109954939835016,0.0133917205560364,0.0155289319398419,0.0178790230354517,0.0201959260471204,0.0225901918015831,0.024643626294739,0.0269265527440026,0.0287541907484728,0.0311118894806786,0.0334534119177134,0.0354672264215326,0.0374068971232635,0.0393074743364852,0.0412423678215916,0.0432139952876415,0.0573175192016301,0.071522096640724,0.0855705931144546,0.0982,0.10982304995988,0.1250410274327944,0.1373463512063488,0.1493848482910083,0.1602272605685794,0.1707369461090706,0.1836582760592557,0.1964899348502422,0.2075981353200017,0.217391304347826,0.226680040120361,0.2363527427658441,0.2460893386258176,0.255396859394199,0.2636766712141882,0.271086340752973,0.2782220676866017,0.2849245760329804,0.2916849300463199,0.2975547716747054,0.3022585120105137,0.3082878522213716,0.3133377637897957,0.3190010331500874,0.3234331575803226,0.327373784159333,0.3274017511433698,0.3267322639325285,0.3262115906009941,0.3250181080689555,0.3247860699484182,0.3233545810613624,0.321254887002956,0.3219249221029724,0.3223705633344187,0.3231323616414779,0.324201601507301,0.3251303067679942,0.3266409916450954,0.3271469015413652,0.3281000917830056,0.3289753485075214,0.3306674338319908,0.3330061427395351,0.3366221090600467,0.3372419885952935,0.340531561461794,0.3441743143884506,0.3474667853283326,0.3503037760516804,0.3532665712923223,0.3591582974653275,0.3601688291386587,0.3549649773382777,0.3578976640711902,0.3623978201634877,0.0,2.2487204955834845,55.15131429519084,184.4270431515432,276.379765604899,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95833,44760,423.1945154591842,6048,62.13934657164025,4665,48.261037429695406,1838,18.92876149134432,77.44904619750217,79.77403437334317,63.38601454967061,65.10634448624873,77.21868758915178,79.54318771417694,63.30098035194224,65.02309246537777,0.2303586083503859,230.8466591662324,0.085034197728369,83.25202087095818,144.39722,101.62848267042165,150675.8840900316,106047.48121254852,368.50446,240.159792680352,384049.11669257976,250123.78061873463,360.23334,173.91057989258908,373139.53439838055,179402.56632663115,2664.1586,1218.5054266168147,2757038.5566558493,1248525.6504719828,1117.13928,487.8837609743013,1157914.6118769108,501306.71990107954,1802.31248,754.2892402315467,1857639.3935283253,766264.3219447178,0.38244,100000,0,656351,6848.903822274165,0,0.0,0,0.0,31660,329.9385389166571,0,0.0,32855,340.15422662339694,1671853,0,59938,0,0,0,0,0,71,0.7200025043565369,0,0.0,0,0.0,0,0.0,0.06048,0.1581424537182303,0.3039021164021164,0.01838,0.3198233717079325,0.6801766282920675,24.9258717079045,4.403976700411519,0.3266881028938906,0.2252947481243301,0.2282958199356913,0.2197213290460878,11.057900165640424,5.586326063014194,19.409337626543117,12315.554696371488,52.5353227626291,12.33103337221597,17.177399135374635,11.764712928291903,11.262177326746588,0.5579849946409432,0.7716460513796385,0.6863517060367454,0.584037558685446,0.1209756097560975,0.7250608272506083,0.9083333333333332,0.8530120481927711,0.7758620689655172,0.1460176991150442,0.497960372960373,0.7004341534008683,0.6239855725879171,0.5306122448979592,0.113892365456821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394063376644,0.0045513060930737,0.0067476383265856,0.0090815818612163,0.0113588984817515,0.0137049066824147,0.0157213788322135,0.0179120015513528,0.0202657128257537,0.0225619301961506,0.0248706256084439,0.0270422824302134,0.0291741195337075,0.0310942712408879,0.0333030796839868,0.035374458896821,0.0371252031173992,0.0392049107235436,0.0409965507210239,0.0429826570339988,0.0580798598072349,0.0722843700993204,0.0861349821840285,0.0984304084720121,0.1100187561905966,0.125538975312817,0.1371374660786974,0.1485424399374647,0.159290713554114,0.1692617420916236,0.1824673090158293,0.1948057560174582,0.2057999652566663,0.2163341918023484,0.2264718474526033,0.2377952407794246,0.2474721603563474,0.2568626130675824,0.2650051497968377,0.2723742075504026,0.2794114252740912,0.2866608340624089,0.2933542549049681,0.2999629572096024,0.3053338017419956,0.3109101187111362,0.315942426661345,0.3208267292208204,0.3246557131609855,0.3289068868495096,0.3282669063493554,0.3277465368262241,0.3276999522753432,0.3265591242978539,0.326001094658363,0.3245549865886369,0.3236497545008183,0.3233393177737881,0.3240555310410373,0.324659429544487,0.325813182309326,0.3267546443580378,0.3278398199849987,0.3285781051788218,0.3281638904843959,0.3289923363711682,0.330102590262427,0.3327290344762917,0.3353513437849944,0.340136591528167,0.3421937477280988,0.3448989336304313,0.3508528985963366,0.3561301084236864,0.3614299153339605,0.3633459536204448,0.3661001378043179,0.36996336996337,0.3689159292035398,0.3732367518109035,0.0,1.576944244006807,54.596988551040575,169.58580382847285,260.95850893895755,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95808,44713,423.0126920507682,6383,65.38076152304609,4941,50.99782899131596,2007,20.53064462257849,77.3497797498425,79.682549986327,63.33168066437421,65.05961553207989,77.09856948176622,79.43316109816719,63.23850531225261,64.969972997874,0.251210268076278,249.38888815981383,0.0931753521215981,89.6425342058933,143.9482,101.19795592603955,150246.53473613894,105625.7890009598,370.92532,241.3781178567974,386609.876002004,251394.4429033039,363.14827,175.53395623602637,375592.09043086175,180609.0509096891,2854.09892,1311.2497742330015,2947317.9692718773,1336962.7319566233,1193.56435,529.7474497518916,1230313.9403807616,537452.2793001542,1967.88222,824.6745720352885,2015303.1897127589,827589.3072623024,0.38228,100000,0,654310,6829.38794255177,0,0.0,0,0.0,31906,332.44614228456913,0,0.0,33221,343.28031062124245,1667622,0,59870,0,0,0,0,0,57,0.594939879759519,0,0.0,0,0.0,0,0.0,0.06383,0.1669718530919744,0.3144289519034937,0.02007,0.3219526804432465,0.6780473195567536,24.82026390309026,4.411434219705899,0.3246306415705323,0.2216150576806314,0.2254604331107063,0.2282938676381299,11.231936366108329,5.853493790490864,21.41143591017323,12386.792650472236,56.23770914141066,13.037833368320124,18.3004468310587,12.500439682103664,12.398989259928175,0.5648654118599474,0.7808219178082192,0.7256857855361596,0.5727109515260324,0.1187943262411347,0.7291981845688351,0.9209183673469388,0.8470588235294118,0.7426470588235294,0.1759656652360515,0.504835589941973,0.7027027027027027,0.6819338422391857,0.517814726840855,0.1039106145251396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.0047755685562776,0.0071142955731016,0.0095093925570715,0.0115349404943545,0.0136856575530777,0.0157932300163132,0.0179251349999489,0.0204115007614706,0.0223134320719761,0.0243564904511486,0.0263465921925375,0.0286466366421946,0.0308506585112188,0.0326992903119326,0.0346773026927607,0.0368925003881786,0.038865262939529,0.0408952060345365,0.0428748425250137,0.0573181291796642,0.0712313869834365,0.0847002840462439,0.0970447284345047,0.1094855119056402,0.1246418186624372,0.1369291964996022,0.1491426929340017,0.1609361147605772,0.1714184579739992,0.1837755124032845,0.1960385323086914,0.2081896411048618,0.2183875375785733,0.2283818869917268,0.2388192012765391,0.2482924869425472,0.2577826262989788,0.2665342939808248,0.2744509835352309,0.2813927931054427,0.2879643596309678,0.294938835387928,0.3006215047840301,0.3068910256410256,0.312929526812326,0.318240928301698,0.3236281767534152,0.3280991093620546,0.3319825230671753,0.3312400614505565,0.3307371003983954,0.3298857062226612,0.3291875045299703,0.3286828861558619,0.3270576321119499,0.3260662755668305,0.3269565789041186,0.3281891595948535,0.3294921805103246,0.3296860043918094,0.3310959310959311,0.3313482910463409,0.3319913216578317,0.3331248646958362,0.3338814501605199,0.3339224125644899,0.3378985393434898,0.3406147167961912,0.3442597053828837,0.3469369205598982,0.3500662602703419,0.3511209346384591,0.3535864978902953,0.3561205273069679,0.3584216725559482,0.3589430273407668,0.3593404383671827,0.3549265106151333,0.3512989530825901,0.0,2.277515474976354,58.07029499652316,187.65508942685,269.5742327447324,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95806,44520,421.6854894265495,6244,64.19222178151682,4882,50.44569233659688,1946,19.946558670646933,77.41775944651599,79.74493872881479,63.37436231324406,65.094738724667,77.17083010400503,79.49906830710603,63.28366741370823,65.00679641403947,0.2469293425109526,245.8704217087586,0.0906948995358334,87.94231062752544,145.70402,102.47520323350506,152082.35392355386,106961.15403367748,373.37701,243.0094186121908,389211.3855082145,253136.8271425493,357.90344,172.88680167628934,370387.9819635513,177948.7805671415,2807.09176,1279.3243706747935,2901902.8453332777,1307255.965883967,1161.50791,511.7504377309899,1195553.211698641,517360.7972034573,1903.05012,795.1985849792907,1952088.7000814143,801779.2427127915,0.38175,100000,0,662291,6912.834269252448,0,0.0,0,0.0,32213,335.6887877585955,0,0.0,32842,339.57163434440434,1661621,0,59629,0,0,0,0,0,65,0.6784543765526168,0,0.0,0,0.0,0,0.0,0.06244,0.1635625409299279,0.3116591928251121,0.01946,0.3368692226094862,0.6631307773905137,24.644618575358937,4.447443442557093,0.3236378533387956,0.2191724702990577,0.2398607128226136,0.217328963539533,11.466239445792604,6.018223682023926,20.703254807219437,12280.943970833689,55.23827695197653,12.789178191794331,17.87965943593747,12.977662729621738,11.591776594623004,0.568824252355592,0.7934579439252336,0.6962025316455697,0.6029035012809565,0.1149858623939679,0.7408874801901744,0.9310344827586208,0.8700980392156863,0.7764705882352941,0.1396396396396396,0.5088397790055249,0.7186147186147186,0.6356655290102389,0.5545851528384279,0.1084624553039332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377707348191,0.0045411695538909,0.0067579222940406,0.0089679267128435,0.0109310176523224,0.0131316421678407,0.01541127306085,0.017677798644566,0.0197060446861137,0.0217996479305686,0.02380073800738,0.0260834753331006,0.0282988805855082,0.0302050732992917,0.0323771421500897,0.0344044040942377,0.0362420830401125,0.038068776760629,0.0400685643050072,0.0420601126461432,0.0566644060723042,0.0702390783930419,0.0834914412100755,0.0959094060550034,0.1084323390630266,0.1239052116678816,0.1366616879058484,0.1483824326766672,0.1595715169750122,0.1693357471104303,0.1818621757646147,0.195110885463364,0.2066273628437727,0.2172000043671459,0.2273755904646819,0.2383659834297534,0.2479323182557906,0.2564128481581312,0.2656713712874651,0.2730443732845379,0.2803705928561527,0.2873304223970859,0.2939335608592449,0.2993778415888968,0.3050582241630276,0.3112060264395263,0.3158506265538911,0.3206595612241009,0.3251981023539601,0.3288910544266958,0.327484515860327,0.3275324068346461,0.3274280246531393,0.3260932313465146,0.3262373444968973,0.3243524585144816,0.3229735073151443,0.3234237927359186,0.3244173367861523,0.3244476122594441,0.3252545291211259,0.326230799527373,0.326646606486125,0.3280087332353072,0.3285985531280794,0.3299304669392432,0.3306864754098361,0.334390205619212,0.3372080809495466,0.3394037768716101,0.3413658270437392,0.3434429277102034,0.3441754916792738,0.3450607902735562,0.3448535643657595,0.346941204475125,0.3419665012406948,0.3404558404558404,0.3342406096897115,0.3386973180076628,0.0,1.992040280180576,55.58711599724041,187.87135498882765,267.4273245749061,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95718,44610,421.52991077958166,6258,64.14676445391672,4901,50.58609665893562,1939,19.84997597108172,77.3893283971574,79.74939181670756,63.35181630130408,65.09316066466748,77.14023740087896,79.50330123026605,63.25784615038785,65.00350753119362,0.24909099627844,246.09058644151105,0.0939701509162276,89.65313347385973,144.20208,101.41141444412771,150653.04331473703,105948.11262680762,371.97869,242.84320863249133,388016.0366911135,253103.60499852835,360.35235,175.1381544612183,372714.47376668965,180103.94343571336,2811.74264,1296.795751297247,2902854.342965795,1320135.430428182,1177.00836,523.114173114092,1211545.2892872812,528432.3565820567,1906.45486,819.6090004041064,1952881.6941432124,821498.7043425075,0.38157,100000,0,655464,6847.86560521532,0,0.0,0,0.0,32015,333.8348064104975,0,0.0,33130,342.3911907896112,1664132,0,59737,0,0,0,0,0,54,0.5641572118096909,0,0.0,1,0.0104473557742535,0,0.0,0.06258,0.1640066042927903,0.3098434004474273,0.01939,0.3234257698789643,0.6765742301210357,24.49740046681737,4.435432908013016,0.3152417873903285,0.2295449908182003,0.2273005509079779,0.2279126708834931,11.03438951322628,5.514629314133413,20.930685229302544,12322.560027497457,55.41699084828855,13.352892817260642,17.455295035800614,12.254528155486206,12.354274839741077,0.5484594980616201,0.7777777777777778,0.6906148867313916,0.5583482944344704,0.1110116383169203,0.7028051554207733,0.9245283018867924,0.8487179487179487,0.7125506072874493,0.1085271317829457,0.4916247906197655,0.6890156918687589,0.6372294372294373,0.5144175317185697,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0047939027233016,0.0070194658308227,0.0093417137983205,0.011609938595421,0.0138326242289762,0.0160097016142181,0.0181016713944613,0.0201804489766724,0.0225419271659384,0.0247156470949892,0.0267062010095621,0.0290071002147532,0.0309518172741402,0.0331659224272175,0.0352588612173194,0.0374557425927076,0.0396436017384269,0.041534144059869,0.0435022657430074,0.0576828695243565,0.0717746408128669,0.0854442661296243,0.0977276789939117,0.1103227982879672,0.1256213380713666,0.1381881828789646,0.150175662727563,0.1609953097789506,0.1705520288238826,0.1833552305671024,0.1959237983967806,0.2076302513699225,0.2178087884686891,0.2283752256019721,0.2390164987977706,0.2486938465660444,0.2574196161375244,0.2658819790472515,0.2736616555137959,0.280775014459225,0.2876321451959959,0.2935053875359267,0.2991782659735033,0.3040811368881331,0.3096698694259669,0.3153810531058738,0.3204278646197677,0.3252272550695361,0.3286066665787286,0.3277487192588509,0.3264961025034713,0.3254640044994376,0.3251184560268115,0.3247792207792208,0.323655766026082,0.3215831201238194,0.3214010966527539,0.3227048859046678,0.3234953394286121,0.3242267848461049,0.3250483291908312,0.3260296333500753,0.3278241836780274,0.3293849111004325,0.330702118820108,0.3323676437173369,0.3337194377484895,0.3372770739538617,0.3396538810265305,0.343679202537381,0.3450614667231877,0.3456821183722247,0.3484607820891007,0.3483852797596695,0.3531563421828909,0.3563724745556737,0.3644765923246936,0.3619153674832962,0.36282151208106,0.0,2.354590760263095,57.57934452932884,183.0752819897532,266.1163761823434,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95659,44354,419.9395770392749,6217,63.757722744331424,4881,50.30368287354038,1940,19.75768092913369,77.35982293729873,79.73544773593079,63.33991942654043,65.08984694668858,77.12294509652234,79.50336375589129,63.25214896207358,65.0071845452285,0.2368778407763869,232.0839800395049,0.0877704644668497,82.66240146008386,143.0462,100.65770975304298,149537.62845106053,105225.55091841122,370.52671,241.82895344574916,386622.7223784484,252084.6689237282,363.7195,176.8592250418096,375570.0352293041,181291.4996865246,2816.75676,1284.9231364204709,2903629.391902487,1302297.790297275,1168.5213,511.6093978351688,1202332.1485693976,515634.3059592257,1908.86796,792.6182082889311,1947240.552378762,788465.2293788373,0.37975,100000,0,650210,6797.16492959366,0,0.0,0,0.0,31855,332.263561191315,0,0.0,33388,344.3899685340637,1670501,0,59894,0,0,0,0,0,72,0.752673559205093,0,0.0,0,0.0,0,0.0,0.06217,0.1637129690585911,0.3120476113881293,0.0194,0.3239522789843989,0.6760477210156011,24.71161628453556,4.4351076658204605,0.3300553165334972,0.2194222495390289,0.225158778938742,0.2253636549887318,11.451713988472196,5.931301981500676,20.53062766480421,12286.595920224938,55.08236490117355,12.775859074262154,18.235071865396677,12.158186186788884,11.91324777472584,0.553779963122311,0.7647058823529411,0.6933581626319056,0.5741583257506825,0.1236363636363636,0.7357310398749023,0.927807486631016,0.8634259259259259,0.7142857142857143,0.1682242990654205,0.4891726818434203,0.6771879483500718,0.6310432569974554,0.530952380952381,0.1128668171557562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022684003726657,0.0046522942196004,0.0071729315680008,0.0093132375941987,0.0115910200097608,0.0136902641355794,0.0157022182822323,0.0176406970575031,0.0200412674416229,0.0220151200499227,0.0243410201510044,0.0265506699222356,0.0287687706207024,0.0306524850444291,0.0327804596278417,0.0348099303387973,0.0368756146798488,0.0389258821333001,0.0409211415501377,0.0428556539864512,0.0574837536828468,0.0709738219895288,0.0844283974977958,0.0969160678023168,0.1099438889592034,0.1256374986773886,0.1373000626213953,0.1483836608616925,0.1595398956640725,0.1706754247566302,0.1831014751996207,0.1948781808337845,0.2065963721041578,0.2172928134472909,0.2277261516779705,0.2379296213019062,0.2475253049426942,0.2561522636058054,0.2647325681622284,0.2722371659131231,0.2794944145060943,0.2857760989814176,0.2928825749062563,0.2985212237322636,0.3046262827199728,0.3100184615384615,0.3147463134216446,0.3187779585197234,0.323000724187875,0.3270174050632911,0.3266699826582602,0.3257521588471481,0.3256243045676699,0.324737206884602,0.3247080817222808,0.3232099143206854,0.3213211787421264,0.3220725899162424,0.3230326985267697,0.3249088439265031,0.325420932238347,0.3263740608936338,0.3275052410901467,0.328108228980322,0.3305789094403075,0.3319373634377276,0.3327464788732394,0.3362182502351834,0.339861509407568,0.3425933264642942,0.3433386472329765,0.3457256990679094,0.3459977166053533,0.3499425067075508,0.3559754369390647,0.3579463858305409,0.3578898800369117,0.3584025947699168,0.3680931744312026,0.3647871116225546,0.0,2.8144673326263683,55.62325756195471,180.3689170559081,271.6754851797725,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95858,44976,425.4000709382629,6288,64.35560933881366,4933,50.939931982724445,1985,20.35302217863924,77.34109898624328,79.63207417324712,63.34986309044478,65.04425282532395,77.09635946048061,79.3883988204902,63.25833249726638,64.95547132962686,0.2447395257626681,243.67535275692376,0.0915305931783976,88.78149569709137,143.26202,100.8455068828048,149452.3357466252,105203.0157971216,374.14972,244.48801374932088,389785.7873103967,254521.43143954684,366.91972,178.46236919958636,379618.68597300176,183694.6066275493,2824.06476,1302.7245329778243,2917659.454609944,1330582.5001333482,1164.15009,519.8867817429622,1202549.9488827223,530448.1855901044,1937.2989,816.5819903985348,1988122.118133072,823256.316841646,0.38408,100000,0,651191,6793.2879884829645,0,0.0,0,0.0,32159,334.93292161321955,0,0.0,33579,347.2010682467817,1665634,0,59888,0,0,0,0,0,69,0.7093826284712804,0,0.0,2,0.0208641949550376,0,0.0,0.06288,0.1637158925223911,0.3156806615776081,0.01985,0.324616086361563,0.675383913638437,24.478101302820143,4.380527933641379,0.3269815528076221,0.2284613825258463,0.2266369349280357,0.2179201297384958,11.347555336466362,5.999097470713455,21.297324826403816,12381.723781561086,56.11138810837232,13.394025116851882,18.334539333347152,12.530988777832006,11.851834880341276,0.5619298601256841,0.7737355811889973,0.6962182269063856,0.5805008944543828,0.1190697674418604,0.7180811808118082,0.8844339622641509,0.8587699316628702,0.7038461538461539,0.1637931034482758,0.5027948574622694,0.7069701280227596,0.6354344122657581,0.5431235431235432,0.1067615658362989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0046407473832466,0.0065220257838095,0.0088533311673807,0.011210944646596,0.013514613693723,0.0159438450645394,0.0181382300433562,0.0202847629358772,0.022402487801385,0.0244092310528849,0.026399187717301,0.0285221285293181,0.0305985966211906,0.0327775945923666,0.0348956021839424,0.037059249302037,0.0391015147433639,0.0412881658586215,0.042977975218219,0.0573397843632041,0.0711799931025113,0.0846129674243217,0.0977515464025792,0.109683669601112,0.1249643517296012,0.1375266185678416,0.1488762253077888,0.1601216519048127,0.1712806662165203,0.1849567903227542,0.1968636781484886,0.2077100365280918,0.2182615159266303,0.2282624242224202,0.2383094222566886,0.2484684825423747,0.2571917153239506,0.2657338689544041,0.2745077827028141,0.2813038799338108,0.2885000058488425,0.2948693676637637,0.3010809385710519,0.3064326064508291,0.311820928655115,0.3170505758637957,0.3214199345781308,0.3259442451865184,0.3302731691852478,0.3296909105607804,0.3291618481193898,0.3284062059238364,0.3281910887073411,0.3281047504133709,0.3265788222300624,0.3256097947790782,0.3267385400378569,0.3286812922717753,0.3291719058738998,0.329097456588548,0.3303317629753314,0.3317169843143869,0.3329279005338199,0.333801963398376,0.3355480855086927,0.3372006416867193,0.3410075582682395,0.3466094843041445,0.3500039786743057,0.3547798311658681,0.356892150606254,0.3578375647341164,0.3581430745814307,0.3640068233510235,0.365208060093001,0.3656808379544054,0.3637836742961312,0.3662902781602864,0.3690292758089368,0.0,1.9825024285307025,59.74974716700812,179.62320893383236,273.0067031018064,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95652,44576,421.7894032534605,6052,62.13147660268473,4744,49.10508928198051,1851,19.058671015765484,77.31769350596971,79.73865624994767,63.289715480586615,65.08081135228213,77.09172596326663,79.5118193498031,63.20692183901933,64.99970340931719,0.2259675427030885,226.83690014456204,0.0827936415672851,81.10794296493395,143.297,100.83431964311586,149810.54238280433,105417.67307020856,369.27623,241.26848902694465,385568.36239702255,251743.36614938875,359.53083,174.34799407750052,372581.4410571656,179848.14679887894,2712.11336,1237.2617987318763,2807000.7945468994,1265241.2073272248,1132.31962,499.83818672527775,1167873.8134069336,506763.1810171778,1812.89712,754.355557047171,1866124.95295446,763373.3747620666,0.38087,100000,0,651350,6809.570108309288,0,0.0,0,0.0,31873,332.70605946556265,0,0.0,33011,341.8119851127002,1666122,0,59729,0,0,0,0,0,51,0.5331827876050683,0,0.0,0,0.0,0,0.0,0.06052,0.1588993619870297,0.3058493060145406,0.01851,0.3324447232240866,0.6675552767759134,24.596359842942658,4.394549182070981,0.3277824620573356,0.2223861720067453,0.2280775716694772,0.2217537942664418,11.22087624203298,5.771252592468676,19.74732510797214,12262.431220220857,53.62174679747142,12.64371327758285,17.49228887248243,12.02919805780912,11.45654658959702,0.5623946037099494,0.7781990521327015,0.7054662379421222,0.577634011090573,0.1188212927756654,0.7334384858044164,0.9255583126550868,0.845771144278607,0.71875,0.1594202898550724,0.5,0.6871165644171779,0.6565481352992194,0.5338983050847458,0.1088757396449704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026237944728097,0.0048777025108506,0.0070659898477157,0.0092785495787558,0.0115681626257796,0.0140281173594132,0.0161283741048293,0.0183083194556544,0.020406701257765,0.0224379343569978,0.0247497818611096,0.0267952619889775,0.0288123899455262,0.0308947618163437,0.0329689630945985,0.0348613410596026,0.0369302865674117,0.0389721004632611,0.0412625400657703,0.0433308999895713,0.0579585950318218,0.0720258178084201,0.0856440635240736,0.0982959093398491,0.1104141586939534,0.1262589356632247,0.137873507034471,0.1490967226219025,0.1597069205262594,0.1699817420255611,0.182976153240506,0.1950788766577099,0.2058660160972369,0.2165272424667133,0.2260492072411551,0.2361656353272562,0.2457126258281475,0.2547286647151542,0.2632678076905616,0.2704374420123019,0.277693545213597,0.2847533369988652,0.291193047267216,0.2964828338789557,0.3019953065914424,0.3073281972265023,0.3129278089922791,0.3176081424936386,0.3215659856719047,0.3270061422627303,0.3272325399606458,0.3265707797123391,0.3250954588364589,0.3236322144549078,0.3239716775275728,0.3227091023265074,0.3214987014632292,0.3223754324408519,0.3236256990860728,0.3234106154694756,0.3248577558063613,0.3266405773731097,0.327214900428221,0.3267799622348106,0.329526994744386,0.3302417161066349,0.3301710466696874,0.3338423660672546,0.3370751263726686,0.3413440669271141,0.3443783759248331,0.3479227308811854,0.3505335844318895,0.3506060606060606,0.3528860569715142,0.3549834671705243,0.3584443423671719,0.3622898318654924,0.3686799672041541,0.3743823641201064,0.0,1.8546064233936783,56.06662925059198,172.10578626639975,265.0532743211133,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95713,44400,420.5071411407019,6109,62.68740923385538,4802,49.60663650705756,1905,19.589815385579808,77.34880342590687,79.70753273395435,63.338894218876014,65.07761766214252,77.11771930372788,79.47526002577976,63.2534271119632,64.99387721114871,0.2310841221789843,232.272708174591,0.0854671069128159,83.74045099380112,143.77308,101.15932995957432,150212.4685256966,105690.0621352526,370.20528,241.7181561915154,386222.25820943865,251981.4619006252,356.80185,172.9434658024265,369032.1899846416,177844.84257150485,2753.5544,1250.8670155542577,2847147.075109964,1277227.082166745,1162.63117,510.7325489019613,1200471.2003594078,519461.2636314488,1872.53374,782.7262206345661,1927010.479245244,791595.9058067874,0.37895,100000,0,653514,6827.839478440756,0,0.0,0,0.0,31918,332.88059093331105,0,0.0,32672,337.5403550196943,1667059,0,59730,0,0,0,0,0,69,0.720905206189337,0,0.0,0,0.0,0,0.0,0.06109,0.1612086027180367,0.3118349975446063,0.01905,0.3316739265712508,0.6683260734287492,24.67609600450348,4.431341605900422,0.3311120366513952,0.2280299875052061,0.2136609745939192,0.2271970012494794,11.066082147273724,5.549159399520586,20.23038820548458,12253.876520496347,54.04161908191706,13.07479153447453,17.76676387880297,11.23461867031989,11.965444998319674,0.5541441066222408,0.7844748858447489,0.6830188679245283,0.5662768031189084,0.1237396883593033,0.7231920199501247,0.9246753246753248,0.8571428571428571,0.75,0.1478260869565217,0.4976382328424562,0.7084507042253522,0.6313213703099511,0.5149625935162094,0.1173054587688734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189168936639,0.0045614888699671,0.0066054487342093,0.0087973262629648,0.0113164958516349,0.0135186033491118,0.0158602342340505,0.018097376747984,0.0201216085023759,0.0222404175835422,0.0243424963614373,0.026407348488736,0.0283449509592252,0.0303292359009203,0.0322866809704571,0.0342522369862164,0.03619684623588,0.0382644062169284,0.0400499064254522,0.0424598585018703,0.0570193301795169,0.0716692830978545,0.0847706576020815,0.0971889071245213,0.1091597578212349,0.1239937802130382,0.1359932088285229,0.1472921036101736,0.1581500197647461,0.1684241013483796,0.1809632558089431,0.1940317886240438,0.2050704776820673,0.2165582107508065,0.2264850531967565,0.2367038957585427,0.2471713076209943,0.2555380459252589,0.2646557987467078,0.2726585410557184,0.2797620425453114,0.2858429331618034,0.2927951912723486,0.2983914433891078,0.3042248391404638,0.3100263527325567,0.3151778685759268,0.3196163130478973,0.3235453770000258,0.3276861463877325,0.3276121812116647,0.3262522515090266,0.3249584542151367,0.3245524037975232,0.3239262891960172,0.3222991180793728,0.3205653777362731,0.3216106766350237,0.3228548023755888,0.3247453030492265,0.3243794309657868,0.3246976184368895,0.3253019614410416,0.3263777062086241,0.328313325474535,0.3297190220507741,0.3313834037210364,0.3343928998552275,0.3383152650598182,0.3403469768549764,0.3438554876379892,0.3446876668446342,0.3470864542338454,0.348533701827115,0.3500710563713879,0.3523421588594704,0.3558320373250389,0.3574819401444788,0.3576826196473551,0.3624658603199375,0.0,2.1907798971425567,52.52874270083189,182.717274179863,270.27987466489486,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95640,44140,416.9803429527394,6174,63.32078628189042,4822,49.87452948557089,1944,19.981179422835638,77.26744378178137,79.68153837909449,63.28338998351626,65.06915125080505,77.02236988040725,79.43724364733335,63.19174611464988,64.98000231619876,0.2450739013741127,244.2947317611441,0.0916438688663774,89.14893460628548,143.54252,100.96165874557592,150086.28189042243,105564.26050352982,365.778,238.85938989087376,381913.7494772062,249213.096421394,357.6649,173.46660265926707,370452.1120869929,178710.63161089717,2785.40412,1285.4088815011512,2883591.300711,1315402.6977843582,1137.1073,504.35367803377727,1175310.644081974,514095.045694474,1903.21042,807.9002569172316,1958101.798410707,818430.4573495927,0.37789,100000,0,652466,6822.103722291928,0,0.0,0,0.0,31499,328.76411543287327,0,0.0,32839,339.79506482643245,1668330,0,59865,0,0,0,0,0,53,0.5541614387285655,0,0.0,1,0.0104558762024257,0,0.0,0.06174,0.1633808780332901,0.314868804664723,0.01944,0.325205777294611,0.674794222705389,24.71910377797655,4.393417311868932,0.3268353380340107,0.2304023226876814,0.2144338448776441,0.2283284944006636,11.210649800709549,5.878627944970711,20.852516868997824,12262.855794344665,54.8684204617236,13.382089696665536,17.86395351851531,11.46754647962063,12.154830766922116,0.5618000829531314,0.7758775877587759,0.7151015228426396,0.586073500967118,0.103542234332425,0.7049180327868853,0.8905852417302799,0.865,0.7272727272727273,0.1517509727626459,0.5100254165489975,0.713091922005571,0.6641156462585034,0.5454545454545454,0.0888625592417061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784505643706,0.0047353477996349,0.0070662768031189,0.0091049508170067,0.0113225973814586,0.0133519371002566,0.0156004649550339,0.017794974935936,0.0200308796613462,0.0224167946748591,0.0248092385953396,0.0269653918456655,0.0290411184379725,0.0314167954662545,0.0335875971552729,0.0355533041104954,0.0373995360013257,0.0394519694846644,0.0415245069484896,0.043717157394278,0.0582671404682274,0.072656241817401,0.0850223687803238,0.0976159386714965,0.1091204695896369,0.124792189501996,0.1366074368315401,0.1478781678282925,0.1593106841812502,0.170278804020964,0.1828702705034729,0.1953438992947599,0.2074253869429871,0.2181245143851432,0.2283031123735288,0.2377549550747277,0.2470421466202339,0.256546446857593,0.2647907156321682,0.2727470738613566,0.2790665354102727,0.2852495846107041,0.2919114163903363,0.2982167714683434,0.3035375407522748,0.3090531981876319,0.3138421830756508,0.318664527465811,0.3230172827341208,0.3265548973979268,0.3248667251501451,0.3236944027124998,0.3232147897262207,0.3227871012583079,0.3230097723751639,0.3213293848679668,0.3204100741116912,0.3212150085425154,0.3217270909184144,0.3218906361686919,0.3223312630176571,0.3234570839282881,0.3236660151734863,0.324709360930045,0.3261215629522431,0.3268213481380611,0.329037604297634,0.331693472090823,0.3358824358612912,0.3365553602811951,0.3391392498387245,0.3411492022423458,0.3438899552143314,0.3512719399984536,0.3496097468113459,0.3563065781532891,0.3582554517133956,0.3584555027875284,0.358952462282949,0.360176282051282,0.0,2.130859811154599,56.29551692926109,185.0240800008213,262.32578252969296,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95842,44545,421.3601552555247,6284,64.40808831201352,4927,50.85453141628931,1960,20.064272448404665,77.40182060844235,79.71498174553416,63.36325590393732,65.07547853113877,77.15645275879587,79.4706830679422,63.27247621482922,64.98727824738442,0.2453678496464846,244.29867759195645,0.0907796891081034,88.20028375434674,144.21088,101.53130315008086,150467.08123787068,105935.9241101632,371.9803,242.4599218758464,387505.6134053964,252367.2273172713,359.11913,174.2636226602323,371564.7002358048,179356.58880119817,2822.0138,1282.7646307387706,2914064.9819494584,1308183.005875056,1187.23727,520.0305917203743,1226741.272093654,530588.5642206703,1914.8401,803.240550863303,1962729.3044802905,809310.4238422674,0.38114,100000,0,655504,6839.412783539576,0,0.0,0,0.0,32035,333.6846059139,0,0.0,32964,340.7274472569437,1666344,0,59789,0,0,0,0,0,68,0.6990672147910102,0,0.0,0,0.0,0,0.0,0.06284,0.1648737996536705,0.3119032463399109,0.0196,0.330351728320194,0.6696482716798059,24.63377510391383,4.4109677887313685,0.3147960219200325,0.2307692307692307,0.2325959001420743,0.2218388471686624,11.248243058343885,5.9016843032412725,20.904773307914997,12300.588351015718,55.52130968622362,13.42456110874935,17.53968085565245,12.77979644566138,11.777271276160436,0.5605845341993099,0.7827616534740546,0.6834300451321728,0.5924956369982548,0.121683440073193,0.7329803328290468,0.9090909090909092,0.8423645320197044,0.7456445993031359,0.1563981042654028,0.4973647711511789,0.7093184979137691,0.6270742358078603,0.5413271245634459,0.1133786848072562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021567872982441,0.004469488897222,0.0068072069147425,0.0090801060361376,0.0111324610363863,0.0132537969787043,0.0154716404219538,0.0175239844866299,0.019676186192939,0.0218928794407541,0.0241607298447029,0.0263271338834831,0.0282260551364019,0.0303841520546111,0.0324473735779778,0.03467622777198,0.0368288668757569,0.0388627361522987,0.0407864398329905,0.0426470741276498,0.0576824804196606,0.0719400395137095,0.0850727188901462,0.0969863128814378,0.1093124657707376,0.125215187199662,0.1373140968603025,0.1485044324921873,0.1601178152946449,0.1703834618680377,0.1823158664601617,0.1954875031066639,0.2074442657859284,0.2177266916512789,0.2273526824978012,0.2378411292554663,0.2475042107728859,0.2565140627284279,0.2641997436275566,0.2712425033191411,0.2789522377703249,0.2860900365897852,0.2930893780085392,0.2989311476981331,0.3047053393577223,0.3094704157322753,0.3142842845347411,0.3190545214118604,0.3232895860837151,0.3281542641589068,0.3271963824289405,0.326666483259512,0.3263157894736842,0.3256236743763256,0.3260705121549666,0.3240266197506311,0.3227397780096765,0.323402163225172,0.3242182835502635,0.3255946547884187,0.3275362318840579,0.3299007713400801,0.3306510607168983,0.33287967693715,0.3331176921602453,0.3352993140719185,0.3356251953291473,0.3387253214855605,0.3412468095521135,0.3444668964697492,0.3466684871654833,0.3511990216408784,0.3528449144008056,0.354522670312144,0.3570297214199199,0.3608562691131498,0.3594821020563595,0.3580998781973203,0.3558114035087719,0.3518659558263519,0.0,2.1135899976211605,58.258703541969005,174.38343792383748,277.982515410678,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95696,44541,422.1179568634008,6246,64.10926266510617,4843,50.022989466644376,1941,19.91723792008025,77.32145341825886,79.7091317769642,63.3143933609397,65.08044178610622,77.09012189912286,79.47776233253245,63.22926127120815,64.99765768360922,0.2313315191359919,231.36944443174912,0.0851320897315446,82.7841024970013,144.36664,101.5702692601942,150859.63885637853,106138.46896442297,372.03039,242.266925318063,388082.4485871928,252484.92448420945,356.28755,172.59559457894656,368616.2013041297,177587.86634154324,2781.68504,1260.7768455351631,2875160.75907039,1285970.673060752,1181.8396,518.3645128190379,1218325.4994984115,525074.8922132093,1912.02704,790.2918225807352,1963832.0096973751,797320.4335166266,0.38161,100000,0,656212,6857.256311653569,0,0.0,0,0.0,32121,335.0192275539208,0,0.0,32652,337.4644708242769,1664730,0,59674,0,0,0,0,0,60,0.6165356963718441,0,0.0,0,0.0,0,0.0,0.06246,0.1636749561070202,0.3107588856868395,0.01941,0.3248124904331854,0.6751875095668146,24.954270262370592,4.399105545202851,0.3091059260788767,0.2258930415032005,0.2355977699772868,0.2294032624406359,11.305614150319045,5.891643700065188,20.552598416210092,12320.22576169223,54.71600358100511,12.842784463773103,16.900052924973277,12.747232099905826,12.225934092352905,0.5572991947140202,0.7705667276051188,0.7054108216432866,0.5950920245398773,0.1089108910891089,0.7305084745762712,0.9011627906976744,0.8586387434554974,0.7598425196850394,0.155,0.5015015015015015,0.7106666666666667,0.6529147982062781,0.5479143179255919,0.0987925356750823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0044620221072913,0.0064560662660386,0.0087803985731852,0.0111102067393781,0.0131305517072773,0.0153380176835921,0.0175413518480702,0.019668980463918,0.0217515917047106,0.0238468715078071,0.0259296152147793,0.0281963975270288,0.030243389732704,0.0324421965317919,0.0346157425118125,0.0364915115544368,0.0385649200369459,0.0407670868172552,0.0424392124983063,0.0572052264917539,0.0713380996744512,0.0845367532849166,0.0972029296628362,0.1093174648392576,0.1247790514294181,0.1371360640251345,0.1492124013504734,0.1596597345416461,0.1708904880900033,0.1841028071611694,0.1960013855512978,0.2078176320883997,0.2181589454684679,0.2280827191728082,0.2377820589472752,0.2481316229782487,0.2571592339507282,0.2655578608437354,0.273654566061064,0.2807788363703635,0.2873423491870536,0.2940438723112236,0.3002827430871711,0.3063219507456162,0.3115767185345676,0.3173513412117801,0.3214712386568719,0.3262940226171243,0.3300392652910638,0.3289933824716199,0.3275639440643973,0.3262438283327003,0.3258607001082642,0.3245335155692893,0.322475869465298,0.3210801393728223,0.3226018288979002,0.3236504602353263,0.3245130073026586,0.3252506324369905,0.3268565555138266,0.3285932689689836,0.3281477336317851,0.3293023703989208,0.3306926033414385,0.3329613733905579,0.3370871581338128,0.3408330692581247,0.3444435605759287,0.3471164805105995,0.3524266666666666,0.3514681581288928,0.3556633556633556,0.3602537398220034,0.3644859813084112,0.3668520234785295,0.3664964249233912,0.3609418282548476,0.3639167309175019,0.0,2.1730187965739423,51.56289909068054,194.24620085434825,268.0672034044214,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95700,44642,422.9989550679206,6191,63.46917450365726,4887,50.41797283176594,1991,20.38662486938349,77.3455376358958,79.73153819574705,63.32130932583449,65.08699258539045,77.09435608184113,79.48221619811412,63.22749137218703,64.99637739806467,0.2511815540546678,249.32199763293283,0.0938179536474592,90.61518732578122,143.50798,100.95910166413282,149956.09195402297,105495.40403775634,371.61395,242.75920406431703,387671.12852664577,253027.4316695516,361.20559,174.9184263441245,373379.644723093,179713.76598455274,2809.80668,1287.984513819508,2902721.8390804594,1312562.7465851626,1197.11167,533.5219426822237,1234674.629049112,541280.9607309748,1956.08706,824.7702177149462,2006172.079414838,829522.8046753135,0.38126,100000,0,652309,6816.185997910136,0,0.0,0,0.0,31981,333.5005224660397,0,0.0,33131,342.1003134796238,1668632,0,59769,0,0,0,0,0,49,0.5120167189132706,0,0.0,0,0.0,0,0.0,0.06191,0.1623826260294812,0.3215958649652721,0.01991,0.3307219662058371,0.6692780337941628,24.68739716539496,4.495106013053759,0.3179864947820749,0.2220175977082054,0.2275424595866584,0.2324534479230612,11.35606741798798,5.883366892438396,21.232261169156747,12292.149850900834,55.44767011185144,12.92120903879312,17.626979130906896,12.496780782025713,12.402701160125725,0.5578064252097401,0.7852534562211981,0.6962676962676962,0.5935251798561151,0.1161971830985915,0.7102446483180428,0.931472081218274,0.8403990024937655,0.6863468634686347,0.1611570247933884,0.5020955574182733,0.7018813314037626,0.6461405030355594,0.5636147443519619,0.1040268456375839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023708446894092,0.0044829859526345,0.0068734453525559,0.0093192951076241,0.0115060633189549,0.0137095131391322,0.0157859313495543,0.0180550023998447,0.0200732166230366,0.0220169581780199,0.0242859340546638,0.0264995891536565,0.028832702435813,0.0306761741854378,0.0329305167129338,0.0348706179118981,0.0370009737098344,0.0390024181914418,0.0408265133159323,0.0426451895225989,0.0572723570018693,0.0710091992757794,0.0850177360787523,0.0980998674326115,0.1098125665826363,0.1254693730762315,0.1377151467560856,0.1492538903149531,0.160304445893508,0.1710676026706167,0.1838389064959144,0.1959752187852005,0.2068822869833113,0.2171153425257168,0.2268253478950149,0.2373521882238205,0.2476278716706481,0.2567885396621766,0.2650696745494984,0.2722932124209948,0.2790678838788804,0.2856524890686744,0.2928632256233145,0.299186952929484,0.3050769305440955,0.310717845847127,0.3162039525494068,0.3208896453612437,0.3251482232584574,0.3280094724378371,0.3275107411385607,0.3267094544556899,0.3263396056718053,0.325625982038604,0.3245521757811921,0.322728452950071,0.3211630335052362,0.3213434381627184,0.3219744896214478,0.3222391129392828,0.3224236730859559,0.3226747069208339,0.324506236459626,0.3250336172120125,0.3266693997636675,0.3286184898556787,0.3295843799954328,0.3324519987409506,0.335241640910368,0.3388524915624379,0.3409576644991133,0.344800169617301,0.3474821047343965,0.354828897338403,0.3550334937258232,0.3590483056957462,0.3601917723476647,0.3674599917931883,0.3698478561549101,0.3678250683326825,0.0,2.4733472439362143,57.11427951563436,182.7043163200225,268.5852599707036,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95619,44671,423.0435373722796,6151,63.14644579006264,4807,49.780901285309405,1907,19.56724082033905,77.23812690061078,79.66983350569613,63.25655152000609,65.05435904616036,77.0018970711789,79.43345167911129,63.169928995583376,64.97009318547246,0.2362298294318776,236.3818265848465,0.0866225244227152,84.26586068789277,143.39996,100.96990949090532,149970.15237557387,105596.07346960888,370.70479,242.9117410586852,387190.9243978707,253543.5628264089,367.49587,178.95155071150666,380936.1110239597,184532.7110530052,2781.86948,1279.419795718083,2882641.483387193,1311399.8941688458,1160.70439,514.6414890434593,1201450.8309018083,525853.5715074659,1871.7316,781.1226564043496,1923049.7704431128,788630.4683089281,0.38058,100000,0,651818,6816.825107980631,0,0.0,0,0.0,31996,334.1072381012142,0,0.0,33571,347.8701931624468,1659340,0,59583,0,0,0,0,0,63,0.6484066974136939,0,0.0,1,0.0104581725389305,0,0.0,0.06151,0.1616217352462031,0.3100308892862949,0.01907,0.34050789718179,0.65949210281821,24.38984971769584,4.328150681790439,0.3239026419804451,0.2255044726440607,0.2282088620761389,0.2223840232993551,11.283177925719992,5.972093527854654,20.37454327453026,12319.887979939997,54.88694192608533,13.071037337365087,17.78768752067761,12.12294400299358,11.90527306504905,0.5610567921780737,0.783210332103321,0.7000642260757868,0.5788514129443938,0.1150608044901777,0.7345340642129993,0.940721649484536,0.861244019138756,0.7420634920634921,0.1187214611872146,0.498300283286119,0.6954022988505747,0.6409130816505707,0.5301775147928994,0.1141176470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.004706216465672,0.0067216310616521,0.0087820050211926,0.0109815176681322,0.0131829619894658,0.0151257075832525,0.0174171535978425,0.0197410142585356,0.0219495457478516,0.0240806862020848,0.0262836123013059,0.0284679195570284,0.0305454470480294,0.0326954653888653,0.0349219817060552,0.0370408766237132,0.0391523398950812,0.0413478654632897,0.0433870934090008,0.0582405519836913,0.0718978905341255,0.0846027777194125,0.097059566939085,0.1097723240685984,0.1251178308531483,0.1369445359225776,0.1485290982732892,0.1596071340687087,0.1703597091393403,0.1833718145135187,0.1959674796747967,0.2078312596692306,0.2181358049037007,0.2283214702836113,0.2387096058484852,0.2481717544448171,0.2570088717041112,0.265754141039779,0.2731227973505068,0.2803331747891556,0.287816259056909,0.2942948999323787,0.3000697081871064,0.305261746929226,0.3109952044297226,0.3171616498882836,0.3209937983309088,0.3249753156992153,0.3288855353904399,0.3276779683911928,0.3265227235076481,0.3258987216611342,0.3255736421748395,0.3249679783146167,0.3228408148216425,0.3215346731273333,0.3226396440929313,0.323332132503045,0.324322871883061,0.324637027854473,0.3257358041819443,0.3279019405840674,0.3287911101133685,0.3309130382342299,0.3335861690162948,0.3362619122571044,0.3384231946240969,0.3409362900387188,0.3433770764778178,0.3461187214611872,0.3494309116051484,0.3485746720484359,0.3511968287848757,0.3536264562194663,0.3561079043468017,0.3582653369598066,0.3623101518784972,0.3789041095890411,0.3822188449848024,0.0,1.9027264224798444,56.379814518761215,186.7491733179089,260.8746602081587,fqhc7_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95729,44468,422.254489235237,6143,63.06343950109162,4818,49.84905305602273,1900,19.502971931180728,77.33641368994157,79.71029977412728,63.332022412709286,65.08899907568787,77.1065102606804,79.48194562391457,63.24733677547806,65.00746228216646,0.2299034292611708,228.35415021270933,0.0846856372312245,81.53679352140841,143.56738,101.01878759714585,149972.71464237588,105525.79427043616,371.9996,242.5783189342234,388147.93845125305,252952.4584339368,360.12611,174.5054676912874,373136.2492034807,180025.729341571,3185.63392,1440.4483857468315,3296314.512843548,1473651.1819714992,1135.20788,493.8806015995335,1173404.3706713745,503631.0865241438,1867.10066,770.9329516437847,1917981.280489716,777857.8454899361,0.38077,100000,0,652579,6816.941574653449,0,0.0,0,0.0,32025,334.0576001002831,0,0.0,33025,341.9235550355692,1669041,0,59913,0,0,0,0,0,63,0.6581077834303085,0,0.0,1,0.0104461552925445,0,0.0,0.06143,0.1613309872101268,0.3092951326713332,0.019,0.3323506594259116,0.6676493405740884,24.780918104754416,4.441852207792953,0.317351598173516,0.2293482772934827,0.2260273972602739,0.2272727272727272,11.280324140542447,5.740152174250658,20.052742555876755,12277.508036822894,54.43748962603031,13.139616874156411,17.351939846722477,12.14982690994758,11.796105995203847,0.5570776255707762,0.7819004524886878,0.6919555264879006,0.5950413223140496,0.1041095890410958,0.7317854283426741,0.927536231884058,0.8641025641025641,0.7276595744680852,0.1047619047619047,0.4959372373213785,0.6946454413892909,0.6330114135206322,0.5585480093676815,0.103954802259887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023002715739126,0.0044320936317812,0.0067008477587694,0.0088625091470851,0.0110271304029378,0.0134438718350885,0.0154702780978798,0.0175413518480702,0.0197008577591935,0.0218659787482341,0.023904464148429,0.0259026929355358,0.0277546403414057,0.0295405152080093,0.0316891961613868,0.033831205747067,0.0356721270735394,0.0375769019286433,0.0395888332259338,0.041490015520995,0.0566607144721865,0.0710115510169917,0.0845786796707042,0.0969356110381077,0.1093555663300799,0.1249379062516514,0.1379233582445539,0.1493396005700066,0.1605648535564853,0.1705553413035094,0.1830449380165289,0.1957137605155597,0.2076166675721193,0.2177574380706889,0.2281426468326338,0.2383611015909166,0.247716233679426,0.2572468653094243,0.2658015526718422,0.2728031559087531,0.2795082724835936,0.2865783174732909,0.2937410675265464,0.2994077176189051,0.3049573147070237,0.3101089871331217,0.3153791371490685,0.3197163949632152,0.3235286508860432,0.3283078100061994,0.3272095934105866,0.3260264918899567,0.3253759107115176,0.324682272313231,0.324784290389765,0.3229184233522927,0.3218281512471871,0.3232796149360143,0.3242550135918346,0.3244455564093857,0.3241490478332584,0.3248522230789,0.3261515912897822,0.3279728401679621,0.3290786279175981,0.3301282051282051,0.3306604043759665,0.3330804968237413,0.3350021153574954,0.3374066530889341,0.3423290883177785,0.3437197287697772,0.3462081355062235,0.3482529375386518,0.3489652553635846,0.3519681236416324,0.3526315789473684,0.3531090723751274,0.354218191810937,0.3508171797795515,0.0,1.906346207747166,54.95951364066821,180.02024774150942,270.25515066751643,fqhc7_100Compliance_implementation_low_initial_treat_cost,0 -100000,95596,44261,418.9296623289677,6263,64.0612577932131,4937,50.90171136867651,1968,20.05314029875727,77.26635035352784,79.70452939122077,63.26822878755484,65.07202486013036,77.01534492095166,79.45929652945524,63.173233397023616,64.98284490438006,0.2510054325761786,245.2328617655297,0.0949953905312241,89.17995575029636,143.7678,101.21424780274272,150391.02054479267,105877.07414823082,371.17035,241.77812115578112,387531.0473241559,252177.86429953243,360.31542,175.2534052094179,372547.1881668689,179868.3075613386,3262.48403,1496.8888100901254,3366849.8786560106,1519915.6764824125,1168.48227,527.6732221544623,1199946.8701619315,529636.9370266809,1933.32588,824.0040609932278,1972873.8650152727,819404.4114133775,0.37938,100000,0,653490,6835.955479308757,0,0.0,0,0.0,31977,333.7378132976275,0,0.0,33010,340.98707058872753,1663609,0,59625,0,0,0,0,0,57,0.5962592577095276,0,0.0,0,0.0,0,0.0,0.06263,0.1650851389108545,0.3142264090691362,0.01968,0.3325205729960377,0.6674794270039622,24.70415411535881,4.451579425843516,0.322665586388495,0.2191614340692728,0.2319222199716427,0.2262507595705894,11.356117261456546,5.848885637810212,21.039972391662065,12246.232380273776,55.98596053289058,12.832498831135943,18.053005942781475,12.697893874375993,12.402561884597178,0.5594490581324691,0.7920517560073937,0.6936597614563716,0.5973799126637555,0.1038495971351835,0.7361963190184049,0.9297297297297298,0.8814814814814815,0.7805755395683454,0.1673306772908366,0.4960088081475364,0.7205056179775281,0.6296296296296297,0.538638985005767,0.0854503464203233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025943491831853,0.0049606898300786,0.0070175794936374,0.0091711403936879,0.0115531035605952,0.0138304269392663,0.0162373448726322,0.0185054617168899,0.0206269951706638,0.0228099478424822,0.0247857546056345,0.0270750886570385,0.0290605505342694,0.0312615993731183,0.0335278624180137,0.0353879742971555,0.0373971268061112,0.0394370585791441,0.0410608158039905,0.0429603980016479,0.0569053842132775,0.0707810649647352,0.0845606000126053,0.0974625812363728,0.1091640788389631,0.1241962308922764,0.135890131383137,0.1475206964239993,0.1591393245196167,0.1688606153085677,0.1817397214460639,0.194518231001919,0.2057298474945533,0.215984307193267,0.2251168636443817,0.2343704920215717,0.2446190295254911,0.253962353418269,0.2618381868194321,0.2692718195902909,0.2770387708280225,0.2848891700642016,0.2915575567272943,0.2982089946137882,0.3035112684107466,0.308492907144709,0.3133798844162519,0.3182843380863183,0.3235587705311191,0.3277476264046798,0.3279214217383688,0.3263126015252884,0.326116678647441,0.324840948525159,0.32386152312659,0.3219183329502796,0.320468948035488,0.3211303261441346,0.3222777188601142,0.3229824781200222,0.323812031064894,0.3249692545721426,0.3258552175101448,0.3266958179168068,0.3281581997295731,0.3298248370120179,0.3317391677883101,0.3353988176156302,0.3397883597883598,0.3416660011181215,0.3444302176696543,0.3482966359225889,0.3521314387211368,0.3530663424272361,0.3565956651718983,0.3542009884678748,0.357958872810358,0.3584943639291465,0.3583150984682713,0.3558490566037736,0.0,2.918861860370916,56.54271831496475,185.25040129745557,273.1119025814993,fqhc7_100Compliance_implementation_low_initial_treat_cost,1 -100000,95701,44512,421.53164543735176,6138,62.9773983552941,4833,49.84273936531489,1940,19.82215441844913,77.34534288058313,79.71280735423242,63.32656324425341,65.07388562782597,77.09914531240095,79.46950039710146,63.235120827318376,64.9865611696603,0.2461975681821826,243.30695713096875,0.0914424169350311,87.3244581656678,143.3718,100.94877055495088,149812.2276674225,105483.50649935828,369.04869,240.5823641617576,384996.969728634,250759.78742307564,358.29405,174.19770528547863,370600.5161910534,179133.56360557178,3209.49435,1461.5061239389572,3312018.8085808926,1485508.9225180054,1153.90011,512.9679992100665,1188560.3703200594,518838.347990309,1912.57078,805.3710086135713,1957171.0222463715,806053.7717587689,0.38023,100000,0,651690,6809.646712155568,0,0.0,0,0.0,31818,331.793816156571,0,0.0,32835,339.2545532439578,1667313,0,59802,0,0,0,0,0,61,0.6374019080260395,0,0.0,0,0.0,0,0.0,0.06138,0.1614286089998159,0.3160638644509612,0.0194,0.3371623719341819,0.662837628065818,24.65291086315795,4.35139534108061,0.3217463273329195,0.2257397061866335,0.2213945789364783,0.2311193875439685,10.888366101757804,5.536215597215877,20.79241516946572,12249.86413768144,54.58327156134776,12.981586627260986,17.53282066616817,11.8718614576872,12.197002810231393,0.5574177529484792,0.763519706691109,0.7080385852090032,0.5953271028037384,0.1101163831692032,0.7216981132075472,0.9157894736842104,0.8614609571788413,0.7480916030534351,0.1373390557939914,0.4987363100252738,0.6821378340365682,0.655440414507772,0.5457920792079208,0.1029411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986876215165,0.0043885431658322,0.0065946998904265,0.0088665447897623,0.0110333746873029,0.0131950030034921,0.0154837262876772,0.0175678572522278,0.0198517761308458,0.0220186303613471,0.024183710082526,0.0261558052126763,0.0283072238965634,0.0307313505104721,0.0327354537761357,0.0348367222469169,0.0369004836521432,0.0388343469146308,0.0408413653992118,0.0427365568987078,0.0563864229765013,0.0705336864029808,0.0836219018237528,0.0958829161537409,0.1077250999799512,0.1230897853786563,0.1351316920921048,0.1469808165482568,0.1582733044054464,0.1686832282146994,0.1826047604167789,0.1946986021028012,0.2064309031556039,0.2166573614897041,0.2259275983215674,0.2364424441291238,0.2461047368186079,0.2557380738073807,0.2646060592301667,0.2719013850542451,0.2800129598130084,0.286522898442251,0.2930022252734245,0.2988376273217495,0.3041085572671169,0.3094718678745301,0.3137846431164409,0.3182072472981564,0.3226776204112837,0.3269919279193584,0.3255923723213443,0.325127837580803,0.3244182596532869,0.3236670191346669,0.3228246787091778,0.3211069691809716,0.3198656931532017,0.3212790754936883,0.3224172337921506,0.323147999500544,0.3242899375070164,0.3255979161733365,0.3270442885561721,0.3280211294402041,0.3297582608276493,0.330513563614527,0.3330014508007851,0.3373040752351097,0.3412559507140857,0.3466629786225155,0.3486351228389445,0.3526854355548486,0.3543762575452716,0.3583555386372288,0.3628775089101482,0.3681539187913125,0.3715763846622033,0.3727822580645161,0.372704850644012,0.3758284600389863,0.0,2.5594993319462507,55.37942487857561,178.84189059362228,268.99997572103234,fqhc7_100Compliance_implementation_low_initial_treat_cost,2 -100000,95662,44565,421.66168384520495,6183,63.3689448265769,4852,50.134849783613134,1943,19.924316865631077,77.2498286400838,79.64829202827504,63.26585613190741,65.03865601282158,77.00754463343515,79.4087947456378,63.17585101100864,64.95266949106757,0.24228400664866,239.49728263723105,0.0900051208987733,85.986521754009,142.58134,100.3445484856792,149046.53885555392,104894.43570663295,367.63003,239.70027815858248,383712.72814701765,249982.0114137092,358.30174,173.7079634574743,371408.3962283875,179080.5594452135,3193.11771,1441.1920432013162,3299552.100102444,1468273.7148515764,1181.10491,513.876826763555,1219133.678994794,521758.0017470616,1906.46786,795.855928770043,1956026.468190086,799284.016319067,0.38162,100000,0,648097,6774.842675252451,0,0.0,0,0.0,31599,329.69204072672534,0,0.0,32820,339.95734983588045,1666794,0,59876,0,0,0,0,0,57,0.5853944094833894,0,0.0,0,0.0,0,0.0,0.06183,0.1620198102824799,0.314248746563157,0.01943,0.326606069942998,0.673393930057002,24.739521816278856,4.389981176825475,0.3182192910140148,0.2293899422918384,0.224237427864798,0.2281533388293487,11.249940923764868,5.787315184657742,20.604048335555,12376.054054370734,54.67971766722688,13.222403408592635,17.32328357349804,12.04124261770411,12.0927880674321,0.549876339653751,0.7574123989218329,0.680699481865285,0.5827205882352942,0.1264679313459801,0.727051177904143,0.9113924050632912,0.8653846153846154,0.7695473251028807,0.1441048034934497,0.4896437448218724,0.6727019498607242,0.6237288135593221,0.5289940828402366,0.1218678815489749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0045737118054499,0.0068817815491113,0.0092562487299329,0.0114839641545707,0.0136475668628928,0.0157543745156422,0.0181344769489967,0.0202802209040703,0.0226134513165575,0.0247915234939944,0.0268515665125834,0.0289450938426078,0.030745604089794,0.0327799459001837,0.0349057286764781,0.0370965234961919,0.03933844141282,0.0411685757982458,0.0433549517235626,0.0581671142131714,0.0722573618732459,0.0854438018870895,0.0986699497022118,0.1108285228843698,0.126578259443098,0.1385850519295711,0.1497959314159056,0.1607244097857364,0.1709777214428427,0.1841103043511096,0.1961743241631334,0.2077817277703867,0.2184648122148122,0.2283008245852237,0.239051439620398,0.2487124944021495,0.2576721725787526,0.2663115239266038,0.2741594466021648,0.2817135356773646,0.2888225757184144,0.2960276790279049,0.3021481436909561,0.3070197900281669,0.312788410387104,0.3182468918749215,0.322649872897053,0.3268146261597235,0.3312983366882085,0.3300943319728626,0.3288058856819468,0.327636656630338,0.3272416093754532,0.326380916884085,0.3247349118418832,0.3230430163788866,0.3244355210321901,0.3255909558067831,0.3259069400630915,0.3274775706735381,0.3277862625701648,0.3286008316881589,0.3293885158653522,0.3299101101875121,0.3324890327971589,0.3320892333114904,0.3363028953229399,0.3387509194717853,0.3423076923076923,0.3456655785273848,0.3476906835576669,0.3499686520376175,0.3495293045854843,0.3474108062552673,0.3489276455338204,0.3558058134226145,0.35248730964467,0.3530377668308703,0.3619191537589724,0.0,2.1841637869336616,54.060622709912174,182.27231601190124,273.2263504018887,fqhc7_100Compliance_implementation_low_initial_treat_cost,3 -100000,95750,44599,422.26631853785904,6173,63.28981723237598,4855,50.16187989556136,1868,19.12271540469974,77.32698317968122,79.68540940957163,63.31555014592704,65.06068064183957,77.0942892813995,79.45707820978708,63.22853261926519,64.97842536444445,0.2326938982817239,228.33119978454877,0.0870175266618531,82.25527739512017,142.7459,100.4462453192407,149081.87989556135,104904.69485038194,368.16108,240.13909395279728,383967.33159268927,250262.9075225037,363.21319,176.15855598320906,376457.681462141,181713.1688479832,3183.46194,1447.1419692308702,3288298.64229765,1474972.8398496374,1174.15682,519.9282331582856,1207460.281984334,524226.1459584231,1838.07816,773.2572750558907,1883282.7989556133,775020.8471767813,0.38036,100000,0,648845,6776.44908616188,0,0.0,0,0.0,31696,330.4647519582245,0,0.0,33252,344.4281984334204,1670626,0,59949,0,0,0,0,0,71,0.7310704960835509,0,0.0,0,0.0,0,0.0,0.06173,0.1622936165737722,0.3026081321885631,0.01868,0.3207343412526998,0.6792656587473002,24.882333447553208,4.362741586983143,0.3229660144181256,0.2360453141091658,0.2201853759011328,0.2208032955715757,10.86991063499849,5.490661446335566,19.91596406828625,12339.931252055903,54.857979291469626,13.57170205031079,17.596497464111856,11.90069860143702,11.789081175609953,0.5645726055612771,0.787085514834206,0.6785714285714286,0.6024321796071095,0.1222014925373134,0.7289204097714737,0.9135802469135802,0.8415584415584415,0.7658730158730159,0.1674008810572687,0.5064138315672058,0.717948717948718,0.6255283178360102,0.5520195838433293,0.1100591715976331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020566334025631,0.0044513394577274,0.0067088890242169,0.0090722529258777,0.0112178998220188,0.0133190774400488,0.0155504343924623,0.0178531327195149,0.0197356990280347,0.0219447287615148,0.0242800040996207,0.0265356820234869,0.0284219398873401,0.0304069360352568,0.0325768516608211,0.0344613794885042,0.0366401623390069,0.0386913406082735,0.0405986903648269,0.0425895443085449,0.0572201110786319,0.0716639640110896,0.0849986370022437,0.0977966066059752,0.1104060378631361,0.1260837386339606,0.1377452540036059,0.148647353796033,0.1599384358867477,0.1696790812493291,0.1840845890189484,0.1967855827755756,0.2080672012883148,0.2179031322823102,0.2283660461685802,0.2390600753713145,0.2491286863270777,0.2581742411443374,0.2665144441036476,0.2743318204740292,0.281997244062576,0.289237904500896,0.2952826834182766,0.300948265514344,0.3069933217365918,0.3124498784745783,0.3171905549706723,0.3219263600458657,0.3257179902755267,0.3299050737361868,0.3291452887865443,0.3282770581838704,0.3274548194892454,0.3262060690173627,0.3257480045779515,0.3239324361607553,0.3229857932498139,0.323737937372809,0.3240006832934745,0.3247491579191245,0.3253934098010965,0.3263552878443764,0.3268839317566575,0.3278186411500369,0.3286456079619212,0.330318039624609,0.3324039036048596,0.3350808350337466,0.3366253414582895,0.3403514326420769,0.34312525499796,0.3466272251862025,0.3479212253829322,0.3511778918755663,0.3513059701492537,0.3483317669172932,0.3487101669195751,0.3478961143547412,0.3481871021311929,0.3431107680432265,0.0,2.118581806401104,55.774476802467056,181.67478169835655,269.28231060675984,fqhc7_100Compliance_implementation_low_initial_treat_cost,4 -100000,95769,44530,421.7544299303533,6120,62.92223997326901,4753,49.14951602293017,1916,19.651452975388693,77.39144353273707,79.73096832369507,63.36142006586866,65.0876024896669,77.15080004950495,79.491007421098,63.27306570508388,65.00199344558986,0.2406434832321196,239.96090259706196,0.0883543607847769,85.60904407704584,144.4663,101.67106849040454,150848.70887239085,106162.817289942,371.49104,242.38555186556823,387430.5568607796,252621.2885856261,360.18498,174.2866639285499,373665.3301172613,179996.90351683515,3133.93419,1415.7275313530183,3242941.599056062,1448825.905410957,1123.83537,490.3308949772977,1163337.4787248482,501845.26827814535,1881.38476,784.4554122207135,1932219.7161920872,790928.1941943116,0.38046,100000,0,656665,6856.759494199584,0,0.0,0,0.0,31959,333.20803182658267,0,0.0,32874,340.7678894005367,1666223,0,59732,0,0,0,0,0,77,0.8040180016498031,0,0.0,0,0.0,0,0.0,0.0612,0.1608579088471849,0.3130718954248366,0.01916,0.33453125,0.66546875,24.689537345345396,4.403131036130096,0.3225331369661267,0.2228066484325689,0.2228066484325689,0.2318535661687355,11.152221258947634,5.739991058126705,20.362986528531337,12255.884708567866,53.47282562514044,12.678882718753236,17.03741183601725,11.777066381592938,11.979464688777,0.5505996212918157,0.7818696883852692,0.695368558382257,0.5854579792256847,0.0934664246823956,0.7212317666126418,0.91,0.8770949720670391,0.7630522088353414,0.0969162995594713,0.4907644217107133,0.7040971168437026,0.64,0.5308641975308642,0.0925714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026425562935363,0.0049251598650141,0.0071832957935106,0.0094656767654198,0.0113776169027259,0.0136287761582932,0.0157937640105971,0.0180178341869528,0.0202065604919858,0.0224379962347548,0.024375,0.0264999179251477,0.0286063645050913,0.0304539793954488,0.0326467920171532,0.0344603179522142,0.0364202769555587,0.0383127456776294,0.0404153802975021,0.0421054824629936,0.0566480866787749,0.0710451696608874,0.0839452813562166,0.0964980544747081,0.1083321031653978,0.1239108366466458,0.1354733348179726,0.1475409836065573,0.1582392704206401,0.16878550755708,0.1821489311317302,0.1942512949725865,0.2063531738700457,0.216614779616582,0.2257185250315986,0.2376895929904526,0.2475537724283963,0.2565026954177897,0.2652855378129356,0.2730288747540383,0.2799426801645634,0.2865039206291704,0.2924796026959915,0.298766319319679,0.3041674249317561,0.310374536905978,0.3149282464123206,0.3199847347665691,0.3239279843646859,0.3278064082455747,0.3268038880897003,0.3260714285714285,0.3245869366519018,0.3235166926137346,0.3228001007870281,0.3214105870324874,0.3203983082944073,0.3205105129673566,0.3220301456186664,0.3232789338654504,0.3239315278870285,0.3252100009882399,0.3269952411899121,0.3277986914044994,0.328627280625543,0.3288183458410689,0.3305778056497819,0.3335329341317365,0.3363277672091876,0.3390646766169154,0.3398435713305585,0.3448294300074858,0.3454418663623684,0.348028728606357,0.3474624060150376,0.3499350879263543,0.3510782687377469,0.352964824120603,0.3476022758060146,0.3488990129081245,0.0,1.9029302079123127,54.32412794610991,172.3147421780064,270.17514058329647,fqhc7_100Compliance_implementation_low_initial_treat_cost,5 -100000,95738,44262,418.0680607491278,6179,63.54843426852452,4853,50.22039315632247,1847,18.97887985961687,77.37264048070351,79.73331186153007,63.34029949113111,65.08223597623889,77.14441999519191,79.50481033942634,63.25579487524875,64.9999436969567,0.2282204855115992,228.50152210372696,0.0845046158823592,82.29227928218563,143.08338,100.65541261737071,149453.0698364286,105136.32269043715,370.15005,241.79946854734763,386138.3881008586,252080.822413803,357.02763,172.7296960924803,370535.1897887986,178521.78841318088,3190.28081,1443.018338150012,3301787.4302784684,1477176.7987254057,1178.09066,515.846235478548,1219163.6340846894,527907.8313587479,1819.64284,762.9536167115496,1870399.987465792,770863.4979827548,0.37829,100000,0,650379,6793.3213562013,0,0.0,0,0.0,31906,332.76233052706345,0,0.0,32755,339.6979255885855,1670425,0,59928,0,0,0,0,0,64,0.6684910902671876,0,0.0,0,0.0,0,0.0,0.06179,0.1633402944830685,0.2989156821492151,0.01847,0.3243744207599629,0.6756255792400371,24.95140977284868,4.425017488137153,0.3208324747578817,0.233051720585205,0.2233669894910364,0.2227488151658767,11.149441487919132,5.582659639700985,19.700925536293106,12283.848280514498,54.86066369807799,13.473057386594489,17.402125286389428,12.06586945997177,11.919611565122288,0.5674840304966,0.8134394341290893,0.6859344894026975,0.5876383763837638,0.1193339500462534,0.729903536977492,0.9577114427860696,0.8363636363636363,0.6824034334763949,0.1875,0.511499030202272,0.7338820301783264,0.636518771331058,0.5616921269095182,0.101516919486581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025924050632911,0.0047530732824582,0.006959026953549,0.0092216444588885,0.0115507020915311,0.0137528757863876,0.0160441979939655,0.0180764088065079,0.0202905069049054,0.022612345173508,0.0248221133143314,0.0268272399667354,0.0290893760539629,0.031246459798762,0.0334058950365731,0.0356563349421747,0.0376543912867924,0.0397245213350758,0.0417502468430078,0.0435366780889689,0.0583776220855564,0.0720705638621786,0.0850956749672346,0.0980954783376426,0.1098953227285664,0.1250977904641082,0.1367873999045447,0.1483527008044949,0.1593374909230703,0.1699230059836575,0.1825073765372273,0.1952681285632376,0.2075036702735033,0.2173908288585833,0.227360244688693,0.2375033235841531,0.2485071045082653,0.2562537995631909,0.2636068329471628,0.27060307268975,0.2786606326462111,0.285328153703942,0.2911025030503334,0.2976938951814167,0.3036174454222784,0.3088799279839197,0.3136837625026601,0.3189686971342805,0.3235739525492175,0.3275432279507775,0.3276866565304557,0.3263389480921279,0.3250211208110391,0.3236479750328705,0.3237038027729481,0.3215773353751914,0.3205099813344301,0.3220030199579832,0.3227071258097511,0.3239406553527591,0.3242078958655801,0.3256632643027121,0.3276034922093654,0.3283605352808889,0.3300612909404328,0.3311992949897618,0.3324936314746674,0.3343732451488114,0.3376962439516831,0.3407797102587256,0.3433112104383945,0.3465148159865022,0.3480278422273782,0.3489882210812443,0.3520223152022315,0.3574198096580895,0.3563410194174757,0.3580197222781244,0.3560109289617486,0.3565184340554922,0.0,1.732075947609817,55.13269255458765,188.7540655342994,264.05583944784075,fqhc7_100Compliance_implementation_low_initial_treat_cost,6 -100000,95742,44603,422.6671680140377,6228,63.79645296734975,4855,50.11384763217814,1918,19.66743957719705,77.33281654085012,79.69881182559214,63.319784280511655,65.071152377385,77.09495160531645,79.46234243253042,63.23230518585328,64.98662641330671,0.2378649355336648,236.469393061725,0.0874790946583772,84.5259640782956,143.12562,100.70975042595784,149490.94441311024,105188.68461694747,369.15529,240.8536825975665,384985.8787157152,250979.338078198,357.57583,173.69348189187403,370140.57571389776,178821.92782705525,3233.19425,1472.067518360667,3341799.387938418,1502430.9586136558,1225.23761,541.7885066617689,1266023.4484343338,552215.3096128985,1897.02984,791.1365566041296,1947825.259551712,798431.6349116624,0.38307,100000,0,650571,6795.042927868647,0,0.0,0,0.0,31836,331.89195964153663,0,0.0,32860,339.77773599883017,1670495,0,59947,0,0,0,0,0,63,0.6580184245158864,0,0.0,0,0.0,0,0.0,0.06228,0.1625812514684,0.3079640333975594,0.01918,0.3338433292533659,0.666156670746634,24.79330642332073,4.538560387502605,0.3171987641606591,0.2253347064881565,0.2199794026776519,0.2374871266735324,11.45354035543372,5.736414388505323,20.513181629366272,12347.3855562631,54.82952721268165,12.979066266829683,17.17826876403442,11.862383705218802,12.809808476598738,0.5583934088568486,0.7989031078610603,0.6831168831168831,0.5945692883895131,0.1300954032957502,0.7249417249417249,0.9458128078817734,0.8567639257294429,0.6920152091254753,0.1825726141078838,0.4983183856502242,0.7122093023255814,0.6268271711092004,0.5627329192546584,0.1162280701754386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021481624091844,0.0044830768918685,0.006599654787288,0.0090566267876927,0.0111504496805436,0.0131804106910039,0.0154192883876033,0.01739663093415,0.0197541972556798,0.0219637316840908,0.0243494843035534,0.0264608939407941,0.0285532146786349,0.0304528274683061,0.0323349462975764,0.0343886632143632,0.0364436619718309,0.0382416122705243,0.0403032099073525,0.0422326860571714,0.0573969871279583,0.0720533154778096,0.0851606002453833,0.0984366622160076,0.1102221941141748,0.1256820200482172,0.1373543043196979,0.1487993869209809,0.1596206019952575,0.1703218334101901,0.1838266168538237,0.1964797645964278,0.2088593143490883,0.2189658941845212,0.2291652919828439,0.239202878494326,0.2485244731058028,0.2578822999887476,0.2664896273094557,0.2740471038138746,0.2817150792732322,0.2881657497366264,0.2950518736084134,0.3012430922669352,0.3060604587869362,0.3112673450508788,0.3154447311073817,0.3209867114709027,0.3254924831518921,0.3297967920090902,0.3295413190279144,0.3290680697501446,0.3286127371464842,0.3283078926426969,0.3272581077459126,0.3261676224355239,0.3241688587456026,0.3248694281115527,0.3261244640325253,0.3260283751226911,0.3269594531323158,0.3281256180041925,0.3286908077994429,0.3298178974416266,0.3318587262279711,0.3323946599916562,0.3323446367966232,0.3362815145887759,0.338964596796853,0.3392026710123614,0.3403005464480874,0.3442431326709526,0.3449707491979619,0.3460310218978102,0.3499812944257389,0.3561337414645632,0.3590171393902624,0.3598553345388788,0.3658002735978112,0.3651278138115223,0.0,2.284489701148033,56.30934037916922,174.86536023805624,275.2931512085576,fqhc7_100Compliance_implementation_low_initial_treat_cost,7 -100000,95776,44814,423.93710324089545,6402,65.41304710992316,5025,51.83970932175075,1999,20.47485800200468,77.34910350822409,79.67954598445408,63.34642956891118,65.06769405040912,77.10198216335999,79.43401735761317,63.2551514455578,64.97960669150693,0.2471213448640981,245.52862684090823,0.0912781233533763,88.087358902186,142.22274,100.06426383624056,148495.17624457067,104477.38873646902,371.09091,242.03334306768755,386826.9190611427,252077.5382848392,368.71534,179.3009361935854,381134.6370698296,184223.96325594225,3294.64517,1501.286144988502,3403885.963080521,1531434.5921613977,1188.92449,524.5814697876206,1228585.8774640828,534947.0740029181,1957.21006,816.013181219075,2007802.3722018043,821218.1267494329,0.3828,100000,0,646467,6749.780738389576,0,0.0,0,0.0,31941,332.8286835950552,0,0.0,33766,348.8347811560308,1673724,0,60126,0,0,0,0,0,57,0.5846976277981958,0,0.0,0,0.0,0,0.0,0.06402,0.1672413793103448,0.3122461730709153,0.01999,0.3217365447517097,0.6782634552482902,24.658651549866835,4.41037310219709,0.3387064676616915,0.2244776119402985,0.2153233830845771,0.2214925373134328,11.260800003466771,5.833027265450412,21.258714728228234,12391.80492061364,56.90670538954682,13.347251848000155,19.41947069217435,12.022390833652569,12.11759201571975,0.5649751243781095,0.7570921985815603,0.7132784958871915,0.6016635859519408,0.1078167115902965,0.7297501892505678,0.9064039408866996,0.8666666666666667,0.7172995780590717,0.1578947368421052,0.5062095032397408,0.6731301939058172,0.65814696485623,0.5692307692307692,0.0949152542372881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023594458846403,0.0046625244529135,0.0070304653498493,0.0092127047973103,0.0114796437141578,0.0134879270328596,0.015685195376995,0.017819053936827,0.0203435204201534,0.0227540131572216,0.02475130876643,0.0268545217596535,0.0291040634698785,0.0310126191407456,0.0331377785109651,0.0352524376136175,0.0371899543662496,0.0391849854832019,0.0411679135494596,0.0431939353548817,0.0579800889111514,0.0720284474193379,0.0852047556142668,0.0979108430189789,0.1104730192516411,0.1266141133207938,0.1385676887367383,0.1498580527172006,0.1613082217361148,0.1712498259220773,0.1843784638894568,0.1974698599772936,0.2086948013828191,0.2187889523059765,0.2286104051838894,0.2399056457507364,0.2505551897688848,0.259088098049137,0.2678034557480458,0.2755217694940868,0.2822191631866924,0.2893363598071793,0.2967224175277866,0.3016491286943599,0.3066877239871226,0.3120367058475277,0.3165527086933654,0.3214394865525672,0.3268684773449147,0.3311051811144284,0.329649297786883,0.3280849656996446,0.328490911652811,0.327582968517475,0.3269636228656273,0.3252440554518468,0.3233665559246955,0.3235487152561284,0.3250759722743879,0.3263851677205016,0.3277890162583352,0.3281723325479636,0.3286346569336941,0.3289697839146418,0.3299135808429488,0.3297986542036499,0.3320541825367278,0.335423197492163,0.3394586189836737,0.3435712857428514,0.3467442606424414,0.3494876174210077,0.3512204448409916,0.3539632505573922,0.3612884780329743,0.3677606177606177,0.3710858389157189,0.3722747840394899,0.3766666666666666,0.3812722244172264,0.0,2.36046271269326,57.75957835917534,187.0259977795831,281.01745786702975,fqhc7_100Compliance_implementation_low_initial_treat_cost,8 -100000,95667,44308,418.37833317653946,6228,63.65831477939101,4848,50.10087072867342,1946,19.99644600541461,77.31532774038504,79.70719917029628,63.31028192710126,65.07623778511594,77.07349857395373,79.46617326515113,63.21960253132782,64.98833236999864,0.2418291664313159,241.02590514515043,0.090679395773435,87.90541511729089,144.34398,101.41003463172883,150881.68333908243,106003.15117201212,369.86479,242.15027745046197,386047.53990404215,252548.5145875401,361.30282,175.62232281064283,374270.3544586952,180930.90291044256,3195.22574,1462.95354499486,3305024.5330155645,1494796.323569714,1170.01119,517.7547767334675,1211161.236371999,529507.2156576017,1912.8851,806.4662396252126,1968257.6646074404,815467.6882169772,0.3784,100000,0,656109,6858.2583335946565,0,0.0,0,0.0,31927,333.13472775356183,0,0.0,33087,342.3751136755621,1660607,0,59678,0,0,0,0,0,57,0.5958167393144972,0,0.0,0,0.0,0,0.0,0.06228,0.1645877378435518,0.3124598587026332,0.01946,0.3346540688814385,0.6653459311185614,24.920180055665146,4.498264405162205,0.3296204620462046,0.2229785478547855,0.2192656765676567,0.2281353135313531,11.246450321359314,5.728992214549555,20.74976371200425,12304.13790245716,54.89885576126303,12.848071412609942,17.979693897734304,11.867770127451202,12.20332032346758,0.5556930693069307,0.7696577243293247,0.700250312891114,0.5794920037629351,0.1148282097649186,0.7275518035303147,0.9209183673469388,0.8774038461538461,0.7309236947791165,0.1626016260162601,0.492524682651622,0.683599419448476,0.637901861252115,0.5331695331695332,0.1011627906976744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0046939313449177,0.0070328198258539,0.0094182431471359,0.0119527180989583,0.0143519225872167,0.0164823956590918,0.0184975231091364,0.0208825484481259,0.0229893296741556,0.0251984493261953,0.02720054236731,0.0296069213122511,0.031746849529619,0.0336911643270024,0.0359396007860171,0.0380156041155077,0.0399493497462297,0.0417849898580121,0.0438688832143415,0.0588339776407898,0.0734314793097671,0.086476898209375,0.0992686135227571,0.1108296657484511,0.1261658003662809,0.1378058103975535,0.1499328944845657,0.1605528121593022,0.1718008715625872,0.1842315154128045,0.1959089973903345,0.2073195954845803,0.2174493559366552,0.2271150224141159,0.2365755992590374,0.2464451270594806,0.2554668947587588,0.264091383930599,0.2711390315480557,0.2782745679469953,0.2859852476290832,0.2923989767397792,0.2977040602009097,0.3034579155271953,0.3086710476026088,0.3132990245795926,0.3180418405782347,0.3234296514939672,0.3274676241897796,0.3265704778455859,0.32584501804358,0.3252793079643274,0.3240905474795689,0.3240286572133535,0.3226275807143294,0.3210306406685236,0.3217599422969738,0.3228240274482358,0.3235225914628708,0.3242823749415615,0.3247217178495303,0.3259903584154265,0.3269007155635062,0.3282512504809542,0.3292667031620656,0.3291045202583004,0.3316897401858524,0.3361344537815126,0.340118135376756,0.3433395872420263,0.3476154992548435,0.3489078822412155,0.3526149580220288,0.3579307721567136,0.361656294877932,0.3625954198473282,0.3696,0.3692307692307692,0.3779378316906747,0.0,2.281335969507203,57.13427126665139,176.82741680980774,269.8518149848851,fqhc7_100Compliance_implementation_low_initial_treat_cost,9 -100000,95629,44334,419.8726327787596,6141,63.03527172719572,4892,50.59134781290194,1891,19.408338474730467,77.3146043072854,79.73444332803857,63.296484254502126,65.08335378123007,77.08095869161812,79.50109038792007,63.21031986163558,64.99988870993101,0.2336456156672852,233.35294011849328,0.0861643928665429,83.46507129905945,142.51886,100.25160347269248,149033.09665478044,104833.8929327845,366.12139,238.6284806450127,382295.97716173966,248975.63568061223,357.38477,173.78561754150718,369904.8614959897,178842.0077161692,3194.00398,1451.2973999488115,3303486.316912234,1481408.7348202886,1125.79297,495.5449931064058,1159943.270346861,500918.42621780885,1862.09246,773.1011520614156,1912078.4699202124,778948.4665714918,0.38095,100000,0,647813,6774.231666126384,0,0.0,0,0.0,31555,329.3875288876805,0,0.0,32762,338.87209946773464,1673814,0,60027,0,0,0,0,0,63,0.6587959719332002,0,0.0,1,0.0104570789195746,0,0.0,0.06141,0.1612022575141094,0.307930304510666,0.01891,0.3382010253223551,0.6617989746776448,24.546919946808323,4.3342157442689775,0.3201144726083401,0.2371218315617334,0.2166802943581357,0.2260834014717906,11.146572240701657,5.712110983391295,20.08249305695867,12296.965715036817,55.27677374818818,13.869907102124213,17.74216171386274,11.593833215516552,12.07087171668467,0.553761242845462,0.7689655172413793,0.6922094508301405,0.5839622641509434,0.1030741410488245,0.7287480680061824,0.8845265588914549,0.8848167539267016,0.7692307692307693,0.1379310344827586,0.4908282379099499,0.7001375515818432,0.6300675675675675,0.5276752767527675,0.0938215102974828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024013861165432,0.0044214134325785,0.0065984488569456,0.0089417263628511,0.0111287434895833,0.0133326543084131,0.015493518017972,0.0177341914393707,0.0198218285585705,0.0217202076783647,0.023876923076923,0.0259476117103235,0.0282084254925158,0.0305709251646007,0.0327941616689203,0.0350211450373786,0.0369084748572672,0.0389762757618231,0.0411416442090586,0.0429399862325038,0.0575316978331538,0.0710357326181921,0.0845759650522955,0.097769450204739,0.1100708261645151,0.1258973761673831,0.1379698569319497,0.149414999040982,0.1604663600385067,0.1710167343343859,0.183639128887163,0.1962008170518947,0.2080637078676166,0.2185127986067755,0.2278538208909167,0.2376767205983532,0.247482818349444,0.2558833800849415,0.2645354781541817,0.2732402119314663,0.2800981663270976,0.2868139066959899,0.2926673373971711,0.2985747335866607,0.3034530487360676,0.3091184586577313,0.3138929884683693,0.3187191742512839,0.3233840500957408,0.3277542568485472,0.3276224058571774,0.326696459264352,0.3256872331731785,0.3252201830882034,0.3244843903455254,0.3236155627463309,0.3226491998794665,0.3236179912117571,0.3250810087952406,0.3243997566822915,0.3254420137848366,0.3267418477189385,0.3276891598463337,0.3286558839933073,0.3282042691681822,0.3292247138640012,0.3317281817409285,0.3360880683590095,0.3397469413364007,0.3420637425055222,0.3433928168059634,0.3466005067567567,0.3510665152088855,0.3555133079847908,0.3573373392169749,0.3545421988778799,0.3572093023255814,0.3572011423908608,0.3587912087912088,0.359472049689441,0.0,2.190086370057426,56.92887353381119,178.85819601721272,273.7468549025321,fqhc7_100Compliance_implementation_low_initial_treat_cost,10 -100000,95647,44731,422.6792267399918,6294,64.70668186142795,4931,50.98957625435194,1948,19.90653130782983,77.29129418892526,79.69130282880383,63.29829466637945,65.0698231772659,77.04602209542335,79.45007348412038,63.206995901040656,64.98334380306491,0.2452720935019101,241.2293446834468,0.0912987653387915,86.47937420099083,143.78012,101.1708863755397,150323.71114619382,105775.28451027184,369.85187,241.6535999313964,386145.0751199724,252112.361005987,363.05335,176.3006455432909,376801.6247242465,182068.49536407145,3245.0182,1478.8792317512912,3354516.973872678,1507999.081781229,1195.71067,530.791320727995,1230253.9337355066,535073.3747299913,1916.43796,806.3793093257049,1959951.090990831,804094.1490341538,0.38212,100000,0,653546,6832.895961190628,0,0.0,0,0.0,31882,332.7443620814035,0,0.0,33293,345.31140548056914,1662716,0,59672,0,0,0,0,0,48,0.4913902161071439,0,0.0,0,0.0,0,0.0,0.06294,0.1647126557102481,0.3095011121703209,0.01948,0.3220802919708029,0.6779197080291971,24.635350204807494,4.37895057238808,0.3157574528493206,0.2338268099776921,0.2186169134049888,0.2317988237679983,10.881280369024624,5.481587067042054,20.829601668889463,12330.617364835083,55.99081922769071,13.7028643431797,17.684622352386185,12.084151109738489,12.51918142238632,0.5477590752382884,0.7857762359063313,0.691072575465639,0.5528756957328386,0.1076115485564304,0.704422032583398,0.9102244389027432,0.8358585858585859,0.7,0.152892561983471,0.4923119165293794,0.7194148936170213,0.6416881998277347,0.5084541062801933,0.0954495005549389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026235021220992,0.004876812328906,0.0074500370471869,0.0096738136368255,0.0121173274730641,0.0142791668788511,0.0165589248934478,0.0190230155002348,0.0211536888598069,0.0232117625376282,0.0253302157683156,0.0274325739991372,0.0295458052569312,0.0317993528841992,0.0338811578643101,0.0357756034999896,0.0378787878787878,0.0400473466166896,0.0422536676724586,0.0439741451209341,0.0583864562650224,0.0730820798592198,0.0866392254866959,0.0997115910909014,0.1124643799472295,0.1267768122691334,0.1383940892974671,0.1496804431188751,0.1596869554061133,0.1698374524918941,0.1838110025662591,0.1965240931239848,0.2080090561765954,0.2174046336442867,0.2277136055021603,0.2379679440962786,0.2471618843300259,0.2560433250391254,0.26460769842171,0.2727929125646109,0.2803635521593146,0.2863929419748897,0.2930509659003423,0.2985737077600374,0.3040590675213779,0.3096025672673414,0.3149048705286641,0.3200479090746922,0.3241732589806769,0.3285091773405519,0.3276373241334699,0.3257724002976601,0.3251351084395151,0.3248498009410061,0.3239077995175556,0.3224111710217061,0.3209610105209705,0.3216179716064429,0.322409803753535,0.3235120273683079,0.3237959168327255,0.3245410340379081,0.3260074030453436,0.3287250039275535,0.3290867931798478,0.3298177831149167,0.3324988620846609,0.3351770954461171,0.3369913122999542,0.3408855618380186,0.3431073008345113,0.3464208128013564,0.3500852326535766,0.353639846743295,0.3543247344461305,0.3558650498259095,0.3576982892690513,0.3587991718426501,0.3645251396648045,0.364854517611026,0.0,2.187716447426837,56.70880560384512,190.31649176567063,268.7985875769148,fqhc7_100Compliance_implementation_low_initial_treat_cost,11 -100000,95631,44502,420.85725340109377,6280,64.39334525415399,4933,50.99810730829961,1915,19.63798349907457,77.27514686010801,79.68748435297047,63.27600815666828,65.0569793134046,77.03887115075752,79.45041327949077,63.18904317957845,64.97173522023863,0.2362757093504939,237.07107347969725,0.0869649770898348,85.2440931659686,143.48752,101.00818556208948,150042.89404063535,105622.84778167069,370.60899,241.3217953116377,386970.20840522426,251776.3960552934,364.69236,176.7419468568591,377396.6914494254,181731.4648272714,3222.62179,1467.6571421298004,3335079.032949567,1499937.031014839,1177.38719,515.035508217958,1215330.2485595676,522718.353063292,1878.91962,789.3726579378284,1930058.432934927,797959.4400081943,0.38114,100000,0,652216,6820.131547301608,0,0.0,0,0.0,31852,332.4863276552582,0,0.0,33487,346.1429871066913,1662687,0,59681,0,0,0,0,0,65,0.6796959145047108,0,0.0,0,0.0,0,0.0,0.0628,0.1647688513407147,0.3049363057324841,0.01915,0.3249695863746958,0.6750304136253041,24.90137836754401,4.369078049019114,0.3387391039935131,0.2296776809243867,0.2122440705453071,0.219339144536793,11.406527183989002,5.980305556806365,20.425156968054637,12361.93119272675,55.94517626319617,13.41448092075159,18.97277945533112,11.619986406148698,11.937929480964758,0.5647678897222785,0.766107678729038,0.701376421304608,0.5826170009551098,0.1256931608133087,0.7310989867498051,0.934010152284264,0.8626506024096385,0.7447698744769874,0.1446808510638297,0.5063013698630137,0.6765899864682002,0.6480891719745223,0.5346534653465347,0.1204250295159386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708360337005,0.0049157232194439,0.0070417533357008,0.0094057897409852,0.0115033716779055,0.0134124979631741,0.0156524044540522,0.0181519331094118,0.0203142731538752,0.022618365006553,0.024853066373996,0.0269462308150644,0.029250475847523,0.0315930526207287,0.0335501858736059,0.0355458081602251,0.0374700705867719,0.0394229870494033,0.0414789223388867,0.0434864222250031,0.0582351773079294,0.0721096418617322,0.0855795289817012,0.0977719252041085,0.1099808811568484,0.1258300589911142,0.1380721124725035,0.1495970664733723,0.1602615554199976,0.1708758731864589,0.1834815838334988,0.1961528452463567,0.20825068119891,0.2187119625409845,0.2285663837911208,0.2391055619119558,0.2489815560927567,0.2583637040630959,0.2675202002958917,0.2752641249425815,0.2815631959910913,0.2884784520668426,0.2945230667030451,0.3006112131801097,0.3056339398657196,0.3113625427221242,0.3160969250247577,0.320857317508023,0.3251975553738954,0.3293529575118022,0.3295643139530176,0.3287563588237727,0.3285941973793707,0.3282276027654835,0.3273911298116237,0.3258048204955334,0.3239358586738005,0.3239644727553315,0.3250588195178504,0.3255743490117098,0.3258380647216444,0.3260113780025284,0.3263018978591478,0.3266976827413438,0.3275273059712265,0.3283002138423825,0.3295982664727853,0.3335328963952609,0.3383061820484853,0.3406685236768802,0.3438125568698817,0.3465836526181354,0.348796278835879,0.351631710456576,0.3515037593984962,0.349346016646849,0.3535818377051695,0.3620829943043124,0.3606828193832599,0.3543096872616323,0.0,2.326241666598379,56.25111442322038,188.7980530586237,271.6661009033941,fqhc7_100Compliance_implementation_low_initial_treat_cost,12 -100000,95687,44428,420.59004880495786,6254,64.15709553021831,4927,50.93690887999415,1952,20.04452015425293,77.28391542799022,79.67989049154491,63.28504443165552,65.05894081841004,77.03952677768625,79.43680121325531,63.1941693431969,64.97105074167116,0.2443886503039749,243.0892782896024,0.090875088458624,87.89007673887284,143.46046,100.96343390036758,149926.80301399354,105514.26411149642,370.43274,240.8506988684443,386589.8502408896,251167.9061247468,360.41481,174.98226934622227,373100.9332511209,180186.911217936,3245.93848,1482.7238909079558,3357795.656672275,1515200.7350662218,1206.31023,533.9556130407094,1245922.1837867212,543261.8255778833,1915.62326,806.4667596535475,1968227.1572940943,813697.2940771205,0.3804,100000,0,652093,6814.854682454252,0,0.0,0,0.0,31912,332.9292380365149,0,0.0,33028,341.5615496357917,1665671,0,59824,0,0,0,0,0,61,0.6374951665325489,0,0.0,0,0.0,0,0.0,0.06254,0.1644058885383806,0.3121202430444516,0.01952,0.3284104750304507,0.6715895249695494,24.665667915365777,4.365514385326476,0.3070834179013598,0.2327988634057235,0.2338136797239699,0.2263040389689466,11.274978924198177,5.891737308378534,20.875643045799933,12368.218089514146,55.91327848285775,13.782380995130328,17.019724061822373,12.939129902030396,12.17204352387465,0.5644408362086463,0.7977332170880558,0.6853932584269663,0.59375,0.1300448430493273,0.7179681576952237,0.9135514018691588,0.8210526315789474,0.7389705882352942,0.1799163179916318,0.5083148558758315,0.7287899860917941,0.6398940864960282,0.5488636363636363,0.1164383561643835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293832715186,0.004706264199935,0.006984984314243,0.0090242985335514,0.0114974105389538,0.0136908157444381,0.0158498648579733,0.0179556318176247,0.0200664791613398,0.0222807269151181,0.0243757309641545,0.0267354403846944,0.0287404815805721,0.0306403240268373,0.0326513337187216,0.0348322508583957,0.0367449716589121,0.038938255200764,0.0406624156117046,0.0428465715447069,0.0576529333110479,0.0716431974035491,0.0856989935668034,0.0984027441654917,0.1111392538652313,0.1269091948304878,0.1394091913013931,0.1513983258429359,0.1630857704805883,0.1731673285392293,0.1863856850274873,0.1985721095510487,0.2092253413768321,0.2195354338469625,0.2297391131832159,0.23973134991119,0.2493403103895523,0.258107057112907,0.2671773946055308,0.2753307250134814,0.2822784516547997,0.2893564124214279,0.2954305445139243,0.3010135459698338,0.3067885753244539,0.3118125594084462,0.3161080891384453,0.3207181968674392,0.3251033606801716,0.3297382212776069,0.3289753888454592,0.3281516770391584,0.3275488069414317,0.3258941468769862,0.3249137212900154,0.322921458582513,0.3219651347068146,0.323265815304816,0.3243086079802972,0.3247577502055994,0.3253288237504697,0.3256450972608178,0.3251375914640575,0.3262440078320167,0.3275895497067519,0.3294459877352062,0.3308594753518111,0.3341429562803608,0.3381469379150416,0.3419050637926935,0.3441286325954268,0.3436754176610978,0.347287403792003,0.3472806490384615,0.3517055488428293,0.3493465206640763,0.3479255643685174,0.3544201135442011,0.3503344481605351,0.3438826707834813,0.0,2.158400781272624,58.0871372286879,183.77653153490584,270.8975104072934,fqhc7_100Compliance_implementation_low_initial_treat_cost,13 -100000,95651,44583,422.02381574682965,6211,63.606235167431606,4884,50.42289155366907,1948,19.95797221147714,77.35161970545354,79.75690089454645,63.31721993396855,65.09408992174845,77.11142846527483,79.51891135593505,63.22877873983455,65.00915237054727,0.2401912401787171,237.98953861140149,0.0884411941340062,84.93755120117896,144.26434,101.41721203299764,150823.66101765793,106028.3865646963,370.16067,241.80585279096607,386328.224482755,252137.57848777997,365.27988,177.72374393032706,377496.7851878182,182486.8593494182,3223.9417,1467.0992890714178,3331188.947318899,1494481.2634916026,1174.66167,518.8432191731631,1210704.132732538,525114.7539715709,1912.17138,798.6876096276437,1960990.873069806,802532.7492319982,0.37974,100000,0,655747,6855.6209553480885,0,0.0,0,0.0,31810,331.88361857168246,0,0.0,33436,345.2133276181117,1663638,0,59671,0,0,0,0,0,65,0.6795537945238419,0,0.0,0,0.0,0,0.0,0.06211,0.1635592774003265,0.3136370954757688,0.01948,0.3320604857186497,0.6679395142813502,24.81581525981494,4.445478650120335,0.3218673218673218,0.2254299754299754,0.225020475020475,0.2276822276822276,11.243111598643562,5.763618834692393,20.623158898959733,12237.00549400812,55.24930180158953,13.125410407022851,17.906702483044995,12.05707980748248,12.16010910403921,0.5657248157248157,0.8029064486830154,0.7099236641221374,0.5632393084622384,0.1294964028776978,0.7338461538461538,0.9240506329113924,0.8674418604651163,0.7563025210084033,0.1518987341772152,0.5047433035714286,0.7351274787535411,0.6506129597197898,0.5098722415795587,0.1234285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026139552790751,0.0047964305633017,0.006860576044817,0.0090323498333739,0.0113417896632047,0.013424322672642,0.0156834752460102,0.0178288795172111,0.0201942740286298,0.0222370173102529,0.0245193590085561,0.0268514997996156,0.0288866248855134,0.0311037340976102,0.0329604495264065,0.0350211057771892,0.0369902057314608,0.0391055653022454,0.0410948927891467,0.0432402560840823,0.0585678310571467,0.0728218874009234,0.0855112622541302,0.0989193682460515,0.1106537913566566,0.1264513807301093,0.1379837553750597,0.1493205435651478,0.1603453625343704,0.1703592332062503,0.1833347711685286,0.1950035750655428,0.2061810779329639,0.2158612008100268,0.2255908199898685,0.2362951055928163,0.2457684873808752,0.2546154538904899,0.2630091268219588,0.2712906661170084,0.2778716020821284,0.2849479331019249,0.2910172417870911,0.2973477818355984,0.3027096554987926,0.3078163267817804,0.3131205895210142,0.3175988011785025,0.321614078610745,0.3258994984136178,0.3250732782961787,0.3245292348263216,0.3243266052465011,0.3237441209568052,0.3234648146499272,0.3215770806579832,0.3200107423263456,0.3201389913294324,0.3204955377711038,0.3208533257228475,0.3210297534287641,0.3213199573442869,0.3228915662650602,0.3246935905163753,0.3263372511393619,0.3261886204208885,0.3276773533424283,0.3314291095137952,0.3341971633689371,0.3375168263520469,0.3386950199927299,0.3417588204318062,0.342991239048811,0.3457688808007279,0.3448792360981089,0.3481781376518219,0.3473053892215569,0.3530715005035246,0.3436314363143631,0.3473684210526316,0.0,2.3962239746364205,56.9080746094136,180.18928271041412,270.583585941909,fqhc7_100Compliance_implementation_low_initial_treat_cost,14 -100000,95789,44501,421.551535144954,6252,63.93218428003215,4937,50.94530687239662,1917,19.57427262002944,77.3507064425629,79.67851773313265,63.34838135415546,65.06977611550542,77.11093550809542,79.44207646188876,63.25902506824034,64.98419206346044,0.2397709344674723,236.44127124389055,0.089356285915116,85.58405204497888,145.22442,102.08644195891796,151608.6607021683,106574.28510467587,370.58119,241.21985022929712,386289.2190126215,251240.99868387505,358.95008,173.77097998790123,371508.5552620865,178858.23777347716,3242.60669,1473.871402455958,3348330.069214628,1501839.0446251205,1167.76341,517.8909480383853,1203397.8118573113,524956.1724607054,1885.62158,793.0174578577142,1928950.3387654116,795948.9927496464,0.38085,100000,0,660111,6891.302759189469,0,0.0,0,0.0,31850,331.8857071271232,0,0.0,32912,340.2791552265918,1663671,0,59714,0,0,0,0,0,69,0.7203332324170834,0,0.0,0,0.0,0,0.0,0.06252,0.1641591177628987,0.3066218809980806,0.01917,0.3310355392156863,0.6689644607843137,24.765882299016027,4.343683193688359,0.3285395989467288,0.2303018027141989,0.2136925258254,0.2274660725136722,11.331800918032226,5.931234950349004,20.540179452533515,12274.183169998349,55.73635981786061,13.405375929891362,18.08915417319081,11.972798300393576,12.269031414384846,0.5535750455742353,0.7766051011433597,0.6843403205918619,0.5848341232227489,0.1095280498664292,0.7259083728278041,0.9281767955801103,0.8543689320388349,0.7396226415094339,0.1541850220264317,0.49414328520839,0.7058064516129032,0.6264462809917355,0.5329113924050632,0.0982142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702443174911,0.0046735604217356,0.0070017352126396,0.009162197302129,0.0111436473076297,0.0134891628574628,0.0157148098324568,0.0177261177046871,0.019732875522446,0.0220016373311502,0.0240383630141197,0.0264113772086437,0.0286929891270836,0.0306452277032034,0.0328524732158508,0.0345978222690551,0.0364744471922436,0.0384818735032811,0.0402209921801169,0.0422774215041225,0.0567839143545812,0.0706907007381694,0.0841736724040336,0.0969114849882827,0.1095268205290336,0.1250251043813751,0.1371203766542246,0.1485489895603869,0.1594162672274828,0.1705108143448157,0.1828690747836569,0.1951108805602386,0.2063016079965232,0.2170816172695194,0.226888446696936,0.2374351428792689,0.2481053851640513,0.2568735182750755,0.2653012649045654,0.272904126519122,0.2808113946423002,0.2873713598187064,0.2936014192785334,0.2997880467973511,0.3055319562104037,0.311006846953352,0.3162210472369095,0.3205457504704745,0.3251139070104587,0.328680637933307,0.3278417343590295,0.3277268163877161,0.3263624841571609,0.3256990833116451,0.324736521338427,0.3227121553481386,0.3206213346013631,0.3211394154818325,0.3213815057591264,0.3226083379536065,0.3230720048141113,0.3242616451932607,0.3246682230214314,0.3248240030588605,0.3256828756720268,0.3266091051805337,0.3246377641601283,0.3272520314920795,0.3286868758160708,0.3320084264080448,0.3348581884720951,0.3372055674518201,0.3415021268490889,0.3426218151027634,0.3481467473524962,0.3514674302075877,0.3492333901192504,0.3510550268928423,0.3558178752107925,0.3513829372808726,0.0,2.3392740584073675,55.15353131162908,188.62783178966757,273.7564591808447,fqhc7_100Compliance_implementation_low_initial_treat_cost,15 -100000,95723,44456,421.1735946428758,6188,63.27632857307022,4824,49.68502867649363,1916,19.650449735173364,77.31652017658898,79.67793314036697,63.31665033110207,65.0626211130042,77.08137091020384,79.44394347422079,63.22948244117888,64.97826813328918,0.235149266385136,233.98966614618644,0.0871678899231938,84.35297971502109,142.6183,100.33015429775378,148990.6292113703,104813.00658959056,368.42498,240.82022317234023,384208.4138608276,250902.75439533443,363.26453,176.72595535081322,374115.31188951456,180615.5515137388,3162.75602,1440.6503307851335,3262729.500746947,1463713.471058458,1182.77773,523.3644269180339,1219641.6848615275,530789.6500752089,1881.69182,787.2867605859045,1932232.963864484,794349.0027501808,0.38127,100000,0,648265,6772.30132778956,0,0.0,0,0.0,31683,330.26545344379093,0,0.0,33147,340.9629869519342,1672206,0,59999,0,0,0,0,0,70,0.7312767046582326,0,0.0,0,0.0,0,0.0,0.06188,0.1622996826395992,0.3096315449256626,0.01916,0.3251995089011663,0.6748004910988337,24.822282518790185,4.431337473852451,0.3291873963515754,0.2249170812603648,0.2184908789386401,0.2274046434494195,11.263349439679308,5.731519709057621,20.324181600391107,12299.888847304364,54.49862180208337,12.862198750677184,17.988694199901577,11.607580947137508,12.040147904367096,0.5576285240464345,0.7815668202764977,0.6926952141057935,0.5683111954459203,0.1303555150410209,0.7408312958435208,0.931758530183727,0.8843373493975903,0.6990291262135923,0.1911111111111111,0.4951348345843758,0.7002840909090909,0.6248934356351236,0.5365566037735849,0.1146788990825688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0044606198234,0.0067495559502664,0.0090533139599865,0.0116170247395833,0.0136984906198439,0.0156853946335145,0.0178303360803896,0.0199693251533742,0.021991522820812,0.0240753842525659,0.0262863362392056,0.0284738860838894,0.0306546944827728,0.0322028303832982,0.0341471478607664,0.0361667770785028,0.0381715020693518,0.0402582013221903,0.0423078125162782,0.0571401724749953,0.0713538287675533,0.0852262002139306,0.0982439537329127,0.1110888499905097,0.1260325552370778,0.1386941070386675,0.1498536377667784,0.1615939319480797,0.1713065774087305,0.1843086137803249,0.1966320710814818,0.2083940573815065,0.2191726897969448,0.2285512974359539,0.2382974006539932,0.247758160519057,0.2570608754360302,0.2663057664589788,0.2734489552785923,0.2798032976569279,0.2856808664935551,0.2924173196657276,0.2990561172477482,0.3049242884573317,0.3103762996583579,0.315566073172564,0.3199276884492482,0.3241962424415066,0.3277011418388225,0.3272910915089893,0.326085758377425,0.3254563164358616,0.324419025555636,0.3236808428320585,0.3216350947158524,0.3199410422213769,0.3200230433709159,0.3211458725970599,0.3219886373819381,0.3231500977590615,0.3250064383208859,0.3249064851006598,0.325956817111724,0.3282823416044326,0.3295955355047331,0.3310978567963243,0.333982350909148,0.338180671385521,0.3420708252369433,0.3442376814231767,0.3496674647512636,0.3522884882108183,0.3552860932171277,0.3575848490530658,0.3589285714285714,0.3592575548396993,0.3567970956030658,0.3630344827586207,0.3601694915254237,0.0,2.720538494638233,53.00622345554858,184.1314685669534,270.1542184178068,fqhc7_100Compliance_implementation_low_initial_treat_cost,16 -100000,95682,44416,420.0581091532367,6156,63.18847850170356,4823,49.85263685959742,1975,20.27549591354696,77.40264542862671,79.78294893896985,63.35728834693722,65.11189657300885,77.15969003234468,79.5410990472865,63.26749332520436,65.02517399445264,0.2429553962820279,241.8498916833585,0.0897950217328542,86.72257855620558,144.24344,101.4063763653557,150752.95248845135,105982.7097733698,369.29985,241.0149547763976,385429.516523484,251355.29647833187,359.00349,174.6181720288746,372130.2961894609,180115.45236939553,3186.85197,1445.3744582233874,3292919.232457516,1472851.1822739784,1162.34556,511.4978761129397,1191374.5323049268,511154.9676145352,1932.25456,806.1396871872053,1983424.9702138333,810100.9648373071,0.37937,100000,0,655652,6852.406931293242,0,0.0,0,0.0,31752,331.29533245542524,0,0.0,32879,340.48201333584166,1668446,0,59825,0,0,0,0,0,74,0.7733952049497292,0,0.0,2,0.0209025731067494,0,0.0,0.06156,0.1622690249624377,0.3208252111760883,0.01975,0.3321439652497673,0.6678560347502327,24.851899406565387,4.49343502372637,0.3112170848019904,0.2301472112792867,0.2293178519593613,0.2293178519593613,11.363520335908392,5.899485809558614,20.92398086103997,12286.03493229966,54.26874273779282,13.179046900197632,16.85638887731237,12.216287979017276,12.017018981265538,0.5567074434998963,0.7882882882882883,0.6775483011325782,0.5922242314647378,0.1247739602169981,0.7288961038961039,0.9454545454545454,0.8610354223433242,0.7076923076923077,0.1545454545454545,0.4976329713171818,0.7048275862068966,0.6181657848324515,0.5567375886524822,0.1173814898419864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023797227369849,0.0047432272188269,0.0069993913572732,0.0094147040004874,0.011714340915793,0.0140011811905586,0.0162304892595349,0.018105551076229,0.0203873077512646,0.0228417045314994,0.024795506262941,0.0269074408672798,0.0291689371896237,0.0313597462383752,0.0336559295103278,0.0355016743147711,0.0373791132556068,0.0394429628399763,0.0412887927448207,0.0432834109787491,0.057987213772355,0.072186214045632,0.0863040580957278,0.0993372606774668,0.1114474669591907,0.1269666606710188,0.1387650704703684,0.1494836580432236,0.1599606724161884,0.1710332993726205,0.1842147772429166,0.1966562060383075,0.2079880820338835,0.2179170402116633,0.2274347185251996,0.2376861334071408,0.2473468295728172,0.2560156372868408,0.2647931675048706,0.2721888755502201,0.2788144008498256,0.2854758709225652,0.2920982084863658,0.2978227060653188,0.3032195476868974,0.3088879590430245,0.312415620781039,0.317183749666637,0.3216090142009846,0.3255186394271272,0.3248713919222039,0.3248536046846501,0.3244350877192982,0.3243585682610073,0.3232767558280754,0.3217198716969604,0.320434390856926,0.3214303288772246,0.3223651699752918,0.323459209120057,0.323818787175938,0.3243503747270688,0.3251802158423267,0.3264601750205972,0.3274973018347523,0.3280399864629162,0.3293075455037457,0.3315145813734713,0.3353819139596137,0.3382808159377728,0.340677888782446,0.3451917435596565,0.3482075233526887,0.3499429440852035,0.3549391452023775,0.3532180256500765,0.3584905660377358,0.3606689502317147,0.3650273224043716,0.3604695191215448,0.0,2.182552717644619,53.73684314878896,183.56846590429743,266.97507095754696,fqhc7_100Compliance_implementation_low_initial_treat_cost,17 -100000,95724,44339,421.0751744599056,6253,64.06961681500982,4958,51.18883456604405,2010,20.548660732940537,77.33907921770925,79.70816546626487,63.32552877917672,65.07650320972674,77.090870124616,79.46110650547524,63.23287508781164,64.98701902557814,0.2482090930932514,247.05896078963008,0.0926536913650721,89.48418414860271,145.27348,102.10942460196854,151762.8598888471,106670.66211396156,371.33148,241.9687671182325,387340.52066357445,252199.1633427693,362.52476,175.53901212165903,375444.7160586687,180698.2791185266,3275.28632,1495.5139519952754,3384202.060089424,1524960.16212786,1185.60772,523.6164411269739,1222185.0737537085,530641.2978796208,1972.3412,831.7514515406116,2019709.41456688,834893.4505556904,0.38014,100000,0,660334,6898.311813129413,0,0.0,0,0.0,31958,333.2393130249467,0,0.0,33199,343.4770799381555,1660436,0,59573,0,0,0,0,0,65,0.6790355605699719,0,0.0,1,0.0104467009318457,0,0.0,0.06253,0.1644920292523807,0.3214457060610907,0.0201,0.3343520782396088,0.6656479217603912,24.46932402978069,4.403161253492403,0.3200887454618797,0.2315449778136345,0.2188382412263009,0.2295280354981847,11.097267125221784,5.71668786963319,21.415994015662548,12230.153268205371,56.15437160364938,13.595683158029583,17.984324213092865,12.037515763555875,12.536848468971076,0.5586930213795885,0.7874564459930313,0.6855702583490864,0.5824884792626728,0.1282952548330404,0.7145061728395061,0.9203084832904884,0.8684863523573201,0.703125,0.1532258064516129,0.5035499726925178,0.7193675889328063,0.6233108108108109,0.5452352231604343,0.1213483146067415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0045119033134606,0.0069222415070592,0.008972118354739,0.0110678209210298,0.013249956716129,0.0154387396114821,0.0174886930953863,0.0195607272132354,0.0215080194186689,0.0235162603710502,0.0254922301079465,0.0275935124906153,0.0297435686100779,0.0316270812043889,0.0335353242885506,0.0354190407127317,0.0377235131124233,0.0396726357604875,0.0413202475464149,0.0561983125887561,0.0702095824047043,0.0831480937801451,0.0950352819930382,0.1076754339710193,0.1233815689261233,0.1352395098403267,0.1471859628202125,0.1579807866981545,0.1685282346755936,0.1816927818608961,0.1938383236775136,0.2056295425860643,0.2158021448894725,0.2256395009525068,0.2365124065902388,0.2459287389701775,0.2547706163805235,0.2637949044007448,0.2719384714135069,0.2794916019400618,0.2872752371927607,0.2940397194327147,0.3000059883825379,0.3056078055410604,0.3111956093719236,0.315712536545141,0.3203348279497504,0.3249098406214857,0.3286138026497923,0.3275611723581608,0.3267599048365581,0.3264702151946899,0.3257442069025371,0.324165204721834,0.322858412367659,0.3201488401551737,0.3201623904932529,0.3210872469427602,0.3213307310784437,0.3228695341982239,0.3237750336420486,0.3256871124518183,0.3269502116508768,0.328478731074261,0.3285528370640291,0.3283978089695309,0.3314668596055239,0.3360736368746487,0.3374208703268702,0.3391558827564132,0.3420447864892309,0.3439603708878445,0.3462484624846248,0.3517559551831277,0.3529341745030354,0.3568773234200743,0.3578581647251175,0.3559463986599665,0.3602005399151562,0.0,2.3655985428376347,56.7494164140338,186.9752491533633,274.8147042296131,fqhc7_100Compliance_implementation_low_initial_treat_cost,18 -100000,95702,44390,420.7122108210905,6247,64.35602181772586,4898,50.75129046414913,1917,19.75925268019477,77.30793472821749,79.68266243354077,63.31631099018998,65.06951354480526,77.07697560536556,79.45010261943247,63.23255284337974,64.98698284727342,0.2309591228519281,232.5598141082992,0.0837581468102399,82.53069753183695,143.73304,101.09396929025542,150188.12564000752,105634.12393707072,367.39935,239.43917447552155,383460.1262251572,249753.3429663973,358.38122,173.6954692157529,371728.1770495914,179451.9131706436,3211.39616,1446.9668034552185,3329495.2352092955,1485837.2499271922,1184.28551,517.8581904153081,1225340.107834737,528983.3759120054,1878.37006,769.787634814743,1937110.802282084,782435.5210229969,0.38076,100000,0,653332,6826.732983636705,0,0.0,0,0.0,31628,330.0140017972456,0,0.0,32812,340.0764874297298,1668727,0,59922,0,0,0,0,0,75,0.7836826816576457,0,0.0,1,0.0104491024221019,0,0.0,0.06247,0.1640666036348355,0.3068672963022251,0.01917,0.3250991155840195,0.6749008844159805,24.862495159546448,4.395476507541554,0.324009799918334,0.2354022049816251,0.2166190281747652,0.2239689669252756,11.300706986426578,5.740168917048381,20.23097752138584,12278.5560524434,55.32494400789507,13.802545884144692,17.764302653424192,11.716174024403102,12.041921445923084,0.5634953042057983,0.7502168256721596,0.7095148078134845,0.6022620169651273,0.1185050136736554,0.7545098039215686,0.9132530120481928,0.8933002481389578,0.7842323651452282,0.1574074074074074,0.4962738062379244,0.6585365853658537,0.6469594594594594,0.5487804878048781,0.1089670828603859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0044890762433626,0.0066038405745645,0.0086840822296254,0.0108107558376047,0.0130951896053113,0.0152338611822047,0.017590607452782,0.0195873970025966,0.0216191870284877,0.0235371304383483,0.0258626885286296,0.0277366407503393,0.0297723292469352,0.0316588929706525,0.0339081172724641,0.0362227241643699,0.0383708979163854,0.0404855772731528,0.0423329511101845,0.057019605385475,0.0708357318541001,0.0840764598501856,0.0970510285642169,0.1091831033428562,0.1244607055240673,0.1362908273133267,0.1481118821576056,0.1591018341469667,0.1692104726867096,0.1817653202967685,0.1948599798812343,0.2066356481280166,0.2175956797883621,0.227158239751867,0.2371116894623179,0.2461986412164348,0.2563635341094427,0.2650845688745703,0.2725919479686712,0.2796032453328086,0.2865796613340817,0.2928465771256138,0.2991905018888289,0.3047512495287665,0.3103133481371823,0.31598471082148,0.3212510514644031,0.3252977657835327,0.3298129667569889,0.3291714420548776,0.327992277992278,0.3268544004516903,0.3263491695747238,0.3263203347180655,0.324566380910025,0.3228360197994669,0.323279909074437,0.3243085680972548,0.3250805585392051,0.3260171004416048,0.32588480222068,0.3268742258518254,0.3279400246167617,0.3303212125593388,0.3308889005290451,0.3317503003948046,0.3330281312158621,0.3360545660163981,0.3396354083744626,0.3426451731086279,0.3455650968051629,0.3459055815719529,0.3508865790278202,0.351953198716739,0.3564215278602827,0.3554746739460115,0.3547480425617346,0.3474254742547426,0.3462697814619442,0.0,1.569377732863765,56.74772278987057,182.40610046221724,273.21422570462573,fqhc7_100Compliance_implementation_low_initial_treat_cost,19 -100000,95710,44575,422.8502768780692,6271,64.35064256608506,4936,51.029150558980255,2011,20.666597011806505,77.38171245272493,79.75569994054142,63.34258245905804,65.09500689936712,77.13723592828936,79.51164283746824,63.25278826786507,65.00795969059224,0.2444765244355693,244.05710307317463,0.089794191192972,87.0472087748766,143.01408,100.65231146275087,149424.38616654478,105163.84020765948,370.925,242.49574782283756,386982.6872845053,252796.8632565432,366.31686,178.25314020916,379470.87033747777,183709.09566692624,3260.24619,1483.5568246763632,3372436.9867307493,1516172.639511403,1190.43793,520.7450624402616,1230105.2345627416,530394.7888833579,1970.8413,813.0375560485267,2027780.963326716,822110.1939096843,0.37999,100000,0,650064,6792.0175530247625,0,0.0,0,0.0,31845,332.11785602340404,0,0.0,33599,347.7901995611744,1670625,0,59883,0,0,0,0,0,71,0.7418242607877965,0,0.0,0,0.0,0,0.0,0.06271,0.1650306587015448,0.3206825067772285,0.02011,0.3341470857491608,0.6658529142508391,24.29169184508253,4.461901810914833,0.3247568881685575,0.2222447325769854,0.2214343598055105,0.2315640194489465,11.694072724946365,6.111071929649718,21.20115511105164,12265.41204376584,55.68672524947322,12.998040400316768,17.99692531142088,12.27822803363786,12.41353150409773,0.5544975688816856,0.7711941659070192,0.6887086712414223,0.5919487648673376,0.1224846894138232,0.746996996996997,0.9257425742574258,0.8881278538812786,0.7509433962264151,0.1466666666666666,0.4833518312985571,0.6810966810966811,0.6137339055793991,0.5410628019323671,0.116557734204793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0044197102859633,0.0065754759102163,0.0086646486398634,0.0109648676688976,0.0129429735234215,0.0155595207749171,0.017599738658173,0.019831736912587,0.0218548469648889,0.0241944578288549,0.026242030369298,0.0280948561321239,0.0301301002276496,0.0322900219807436,0.0343355182895308,0.0362169495738268,0.0382587942305696,0.0402591729761211,0.0420609445996081,0.0564084889501608,0.070783211365516,0.0841500010492518,0.0967640127924591,0.108428270042194,0.123984771573604,0.1364668435013262,0.1475645461804631,0.1589765503979488,0.1695807946451557,0.1827144796672629,0.1944597798200889,0.2063032886723508,0.2169407031659961,0.2274177226328757,0.2379334012310144,0.2476582363174093,0.2566063195771955,0.2644256940664126,0.2722693500933017,0.2790361390032854,0.2865475202506048,0.2927819192994912,0.2988726083362287,0.3041524466521734,0.3097984129331164,0.3149910581408436,0.3199038265825361,0.3236607431759056,0.3273158831674029,0.3264647334158282,0.3255024797702949,0.3240752465774626,0.3245951752678404,0.3239010948310345,0.3229933135895948,0.3217150979153506,0.3230081979284276,0.3238782351239599,0.3248905343348403,0.3254679056896584,0.3256970342745516,0.3275815302439126,0.3281016609073682,0.3287753388509056,0.3303930470878194,0.3314888907806248,0.3338856928464232,0.3372316285564671,0.3409828282028962,0.3437144805637644,0.3513527879657683,0.35283676703645,0.35715381076522,0.361927255550307,0.368213816966949,0.3698461538461538,0.3677130044843049,0.3690211345939933,0.3673548889754577,0.0,2.071430569921128,58.58146958944418,180.3667820275628,270.6744855862473,fqhc7_100Compliance_implementation_low_initial_treat_cost,20 -100000,95857,44348,420.01105813868577,6184,63.28176346015419,4877,50.29366660755083,1989,20.40539553710214,77.44506122741345,79.72348847485341,63.40474875222951,65.08424642520059,77.19304818925552,79.4709273118392,63.31145391806293,64.99274739339482,0.2520130381579264,252.5611630142066,0.0932948341665778,91.49903180576756,143.03872,100.68133628367376,149220.94369738255,105032.84714071352,367.08532,239.1523484060452,382374.0884859739,248911.88825100972,358.46901,173.99061870828447,369865.2889199537,178319.1217674738,3196.65047,1468.5572326801976,3300211.8155168635,1497435.9556422387,1152.95798,513.9493130969629,1184828.5779859582,518217.8730227071,1940.9329,819.0639525286256,1993356.6667014407,828945.1666490277,0.37941,100000,0,650176,6782.770168062843,0,0.0,0,0.0,31589,328.92746486954525,0,0.0,32923,339.38053558947183,1676076,0,60200,0,0,0,0,0,60,0.625932378438716,0,0.0,1,0.0104322063073119,0,0.0,0.06184,0.1629899053794048,0.3216364812419146,0.01989,0.339561457689932,0.6604385423100679,24.59714523177979,4.411760551187432,0.3229444330531064,0.2337502563051056,0.2212425671519376,0.2220627434898503,11.096577333206923,5.716329565954278,21.17040348193865,12231.477144123866,55.35582330213074,13.639575091194278,17.766248971426723,12.026236853285909,11.923762386223824,0.5532089399220832,0.7763157894736842,0.6825396825396826,0.5736793327154773,0.1098799630655586,0.7127659574468085,0.9164619164619164,0.8823529411764706,0.7148148148148148,0.1088709677419354,0.4942431901151362,0.6984993178717599,0.6165540540540541,0.5265760197775031,0.1101796407185628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023178606854389,0.0044773549164801,0.0068036867667785,0.0087389874548333,0.0107403418212855,0.0130937725732773,0.0151450338140633,0.0172535103551653,0.0191975819215962,0.0213701431492842,0.0234484594669315,0.0256804709453777,0.0277920423967298,0.0297781297894444,0.0318562553445771,0.0338353237476904,0.0359059743321923,0.0379458272024537,0.0400095508009177,0.0418786611314001,0.0575447303666013,0.0717568894553204,0.0855267290658961,0.0982980420138087,0.1103174018705353,0.1261662515303753,0.1383932825785411,0.1499134093347924,0.1610952944563513,0.1711919005982512,0.1832036455870341,0.1958768453223037,0.2068875667694445,0.2175755061038195,0.227026551977941,0.2372026114861126,0.2463546776063497,0.2554112067609179,0.2639915642432763,0.2711137050260917,0.2782012283278779,0.2852931887567112,0.2923096951334974,0.2978252017915738,0.302746278804361,0.3080220226878025,0.313259952164494,0.3181563605814516,0.3222207825861622,0.3260921208921737,0.3261396375777484,0.3250752711824793,0.3244676362204281,0.3237443251423218,0.3236492392479889,0.3215337432673675,0.3209493022155641,0.3219557647981952,0.3217975997957273,0.322190826535871,0.3236403705363813,0.3251070209701919,0.3258586788269255,0.3270586136140601,0.3272744712483814,0.3276018804706371,0.3277094084954347,0.3295013156246084,0.331297550080268,0.3350889003286738,0.3364353815975549,0.3360183505814574,0.3366811951234918,0.3366214549938348,0.3405045216563541,0.3379451395572666,0.3381529850746269,0.3308946488294314,0.3304225352112676,0.3380782918149466,0.0,2.2323865209970406,57.63588375957681,182.6629952049856,266.1555435456879,fqhc7_100Compliance_implementation_low_initial_treat_cost,21 -100000,95691,44572,422.0564107387319,6376,65.38754950831321,4986,51.593148780972086,1988,20.461694412222677,77.29747507811412,79.70012427769495,63.28577397120039,65.06558336071852,77.05357917488615,79.45623066282295,63.19499180641871,64.97722371494797,0.2438959032279655,243.89361487200745,0.0907821647816859,88.35964577055222,143.64768,101.14518064728423,150116.18647521708,105699.78435514754,369.5728,240.5365554363688,385694.088263264,250847.8592432293,363.44042,176.4855447208203,376476.2934863258,181936.85562507357,3288.62414,1498.356676099685,3404463.3455601884,1533640.04291024,1195.74423,525.1429447961932,1236073.5492366052,535325.3230561076,1952.5404,819.0540691780768,2010821.6446687777,829207.0459506086,0.38066,100000,0,652944,6823.463021600777,0,0.0,0,0.0,31786,331.619483545997,0,0.0,33304,344.7764157548777,1664322,0,59732,0,0,0,0,0,57,0.585217000553866,0,0.0,0,0.0,0,0.0,0.06376,0.1674985551410707,0.3117942283563362,0.01988,0.3357249626307922,0.6642750373692078,24.641191551357903,4.386235160299695,0.3142799839550742,0.2296430004011231,0.2286401925391095,0.2274368231046931,11.019454616217402,5.647552039433091,21.17098279098505,12335.942996926437,56.50651426620551,13.579854297861251,17.700032838402418,12.752773202792158,12.473853927149676,0.5621740874448455,0.7834061135371179,0.6847479259731972,0.5973684210526315,0.1340388007054673,0.7294469357249627,0.9084158415841584,0.8616504854368932,0.7667844522968198,0.1548117154811715,0.5008223684210527,0.7152496626180836,0.6216450216450217,0.5414235705950992,0.1284916201117318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002726093477644,0.0048384151907978,0.0071983349408599,0.0094502591200081,0.0114949544270833,0.0137912770681822,0.0158500265187058,0.0178204879443633,0.0199026345933562,0.0222324628776241,0.0244327739711976,0.0265253079380733,0.0286313926811452,0.0305737603561271,0.0328019493257893,0.0348066241194906,0.0368566157417964,0.0389375752793122,0.0408972211529458,0.0427813617083363,0.0578606497440718,0.0721576098903974,0.0851137508394895,0.0980823243533235,0.1095253164556962,0.1251983665178477,0.1378578327831615,0.1497491932649605,0.1612454823463997,0.1716696727647513,0.1839298616428163,0.1960544143948837,0.2076789020803834,0.2184158632778264,0.2282186948853615,0.2396277067802626,0.2489550036882222,0.256578354510228,0.2654146358089914,0.2737464749982805,0.2814371951290161,0.2882831170048264,0.2957060593852935,0.3014203556291947,0.3073103649706101,0.3118943275106475,0.3159102306920762,0.319941330272304,0.3249178582096336,0.329297019744852,0.3282281917264292,0.3270460225625164,0.3263020980602839,0.3257277049750667,0.3243295532339197,0.3230880076035136,0.3220878320615521,0.3231584299703118,0.3243528790279978,0.3249465431218817,0.325132171346373,0.3264192569830201,0.3266005938192615,0.3262193082223857,0.327870425914817,0.3294328730790233,0.3318927525518182,0.3352568525371636,0.3365462128912411,0.3389615537059057,0.3427050634639006,0.3446450314998147,0.3475150602409638,0.3504124725648982,0.3538447129343448,0.3578587430727508,0.3601714373182305,0.3588235294117647,0.3543328748280605,0.3561802079322295,0.0,1.9456961779112747,59.294633932211205,184.46971858399013,274.03242608028927,fqhc7_100Compliance_implementation_low_initial_treat_cost,22 -100000,95819,44423,419.09224684039697,6181,63.11900562518916,4840,49.8335403208132,1925,19.59945313559941,77.32864418348662,79.64007047927804,63.32870225298407,65.03857086789901,77.09512809714535,79.4121237256282,63.24179925050592,64.9572114677388,0.2335160863412682,227.94675364983163,0.0869030024781452,81.35940016020982,142.76064,100.50036153544268,148989.44885669858,104885.21690162129,367.61828,239.83922744965196,382980.9014913535,249627.38452626797,358.87283,174.235223200758,370642.65959778335,178753.62051121675,3182.16881,1447.4929402608366,3279548.9829783235,1469507.2765986791,1147.95682,504.94867143791305,1181777.50759244,510788.8061460835,1884.35352,784.1734396271733,1921975.9337918367,780058.1149691337,0.38012,100000,0,648912,6772.24767530448,0,0.0,0,0.0,31696,330.07023659190764,0,0.0,32874,339.2020371742556,1670691,0,59986,0,0,0,0,0,59,0.6157442678383201,0,0.0,0,0.0,0,0.0,0.06181,0.1626065453014837,0.3114382785956965,0.01925,0.3285582255083179,0.6714417744916821,24.91732482932258,4.384981045322835,0.3258264462809917,0.2332644628099173,0.2142561983471074,0.2266528925619834,11.40588232398834,5.906434649456505,20.38445471257792,12354.569164737635,54.83261581296426,13.513046977105924,17.697657356802473,11.578250722655238,12.04366075640062,0.5607438016528926,0.7989371124889283,0.6949904882688649,0.5718418514946962,0.1121239744758432,0.7427677873338546,0.9334975369458128,0.8822115384615384,0.7241379310344828,0.16,0.4953664700926706,0.7233748271092669,0.627906976744186,0.5279503105590062,0.0997706422018348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0047743583505656,0.0068584183026429,0.0091926702421582,0.0112263575350823,0.0133475870494807,0.0157272449291611,0.01769622500944,0.0200196210681218,0.022409823484267,0.0245909198028627,0.0265283293823055,0.0288471420056317,0.0311303273625694,0.0332250580046403,0.0354025268334004,0.037699726798576,0.0397938764295416,0.0420254479356011,0.0437362088346725,0.0582044247879919,0.0721022145082704,0.0860236468072617,0.0987935854053258,0.1118525077477705,0.1264126010888524,0.1386547047158506,0.1497861110519931,0.1613819618732311,0.1716093063149994,0.1832857681331107,0.1956027785592175,0.2070664230719039,0.2183865325754263,0.2284595156623059,0.2393934023085273,0.2490592583494311,0.2584193755418689,0.2664471069218102,0.2742910220978636,0.2817959448650027,0.2880223233128546,0.2942286467048812,0.3000384310522903,0.3047525186158563,0.3093710676305855,0.3140601503759399,0.3188780711591396,0.3234176147788747,0.3272424370636767,0.3278323828014399,0.326848570916461,0.3266309646606661,0.3263041870313701,0.3267732371914247,0.3250303300213462,0.3235938293550025,0.3242092457420925,0.3256989632969548,0.3261768901569187,0.3275571375046834,0.3290969106398118,0.3301322286383797,0.3305427187283727,0.3317715466493668,0.3331070673315406,0.3338930950076849,0.3365248783550463,0.3415409332215702,0.3462601690229839,0.3480946541308988,0.3503106909554411,0.3523401034439258,0.3580445260500344,0.3566638330027392,0.3536526946107784,0.355599816148307,0.3542938542938543,0.3514552443712246,0.3577235772357723,0.0,2.566592916427835,55.83819798418796,183.3044311581863,264.1931692254104,fqhc7_100Compliance_implementation_low_initial_treat_cost,23 -100000,95733,44810,423.3127552672537,6212,63.4264046880386,4867,50.11855890863129,1905,19.387254133893222,77.35098256499538,79.69980016583939,63.33757887846742,65.07110165846099,77.11636008283274,79.4694046659726,63.25061097161132,64.98892249987513,0.234622482162635,230.39549986678765,0.0869679068561026,82.17915858585911,143.34056,100.84458308286912,149729.5185568195,105339.41596196622,369.64222,241.22026107758936,385385.2381101606,251240.63735583745,361.99965,175.75476317898668,374163.391933816,180439.40220189453,3182.68641,1455.5506098822584,3275736.5694170245,1471684.350394704,1156.69647,517.3306974960813,1184140.6933868155,516361.7476350337,1864.95716,780.3170487031362,1899169.732485141,773351.4948949636,0.38207,100000,0,651548,6805.887207128159,0,0.0,0,0.0,31817,331.59934400885794,0,0.0,33079,341.52277688989165,1669139,0,59878,0,0,0,0,0,69,0.7207545987277114,0,0.0,0,0.0,0,0.0,0.06212,0.1625880074331928,0.3066645202833226,0.01905,0.33501221001221,0.66498778998779,24.62315518629068,4.411504674073654,0.3355249640435586,0.2249845900965687,0.2227244709266488,0.2167659749332237,11.303474838793884,5.798716384368347,20.173955134861604,12403.085027057992,55.11577883931905,13.046163923709852,18.42399966295683,12.060928247250464,11.5846870054019,0.5637970002054654,0.771689497716895,0.6864666258420086,0.6014760147601476,0.119431279620853,0.7225656877897991,0.9018567639257294,0.8466981132075472,0.7348484848484849,0.1834061135371179,0.5062972292191436,0.7033426183844012,0.630272952853598,0.5585365853658537,0.1016949152542373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290431683088,0.0043684941364875,0.0067882256247907,0.0092223937596489,0.0114691258858577,0.0137125754598853,0.0163606894934812,0.0185542390006429,0.020779034945165,0.0228024030539663,0.0251760581427531,0.0273047352159229,0.0294045073202829,0.0315524982493718,0.0336517630552747,0.0360206718346253,0.038136163603417,0.0401274281919309,0.0420968362392522,0.043859649122807,0.058616585936195,0.0730523386582138,0.086482405737533,0.0995331917488487,0.1118221303871131,0.1273653720109097,0.1386405336896921,0.1501000383125452,0.1611917657490198,0.1719014824826757,0.185050735721826,0.1969846200469732,0.2086170513629343,0.2189992669022791,0.2290554448688454,0.239457380664753,0.249274099883856,0.2581813681925054,0.2672317922879644,0.2752541751200669,0.2817328503142324,0.2885247820235239,0.2948366028538299,0.3003725309344417,0.3066614876675083,0.3123807413425908,0.3165330899361082,0.3210104117669493,0.3262783171521035,0.3311072984030619,0.3310245388025711,0.3301964782716525,0.3299201715043299,0.3286768963520556,0.3272521819290185,0.3251597676663959,0.3237628939487569,0.3240781838207492,0.3245270766759514,0.3250133809099019,0.3269994009285607,0.3283602707556292,0.3289228514602743,0.3301235505708349,0.3318935521800686,0.3325079497471719,0.3313035312864582,0.3345907204828366,0.3395374873176363,0.341428628025831,0.3442608022583436,0.3466836870379235,0.3469850671035221,0.3486461819288105,0.3549356626279703,0.356735566642908,0.3590541381456129,0.3617803184973459,0.3537604456824512,0.3560899922420481,0.0,2.720891692429087,56.30509496153756,182.1610604082715,267.031636679566,fqhc7_100Compliance_implementation_low_initial_treat_cost,24 -100000,95850,44192,416.5049556598853,6310,64.68440271257172,4966,51.29890453834116,1950,19.96870109546166,77.51248185563044,79.79711624969012,63.42745123530996,65.11020637431876,77.27608265190479,79.5632453412232,63.34015707842759,65.02664185091025,0.2363992037256537,233.87090846692612,0.0872941568823719,83.56452340851206,145.343,102.2006115473237,151635.8894105373,106625.57281932572,372.5726,242.86720373894815,388217.6943140323,252896.4671246199,359.14542,173.96498133224364,372031.0276473656,179408.67353429517,3252.60244,1478.8218228007286,3361391.8309859154,1510812.1573299216,1183.4413,519.1515503973857,1219707.44913928,526656.0671855875,1913.02518,791.091673991826,1960879.5826812729,795161.6305919793,0.37937,100000,0,660650,6892.540427751696,0,0.0,0,0.0,32102,334.39749608763697,0,0.0,32980,341.3458528951487,1666298,0,59714,0,0,0,0,0,71,0.7407407407407408,0,0.0,1,0.010432968179447,0,0.0,0.0631,0.1663283865355721,0.3090332805071315,0.0195,0.3254866455409688,0.6745133544590313,24.74447039450503,4.345381861861092,0.3318566250503423,0.2323801852597664,0.2176802255336286,0.2180829641562625,11.456215802317503,5.98896342826523,20.52281617630132,12239.919851885295,55.8806073111736,13.57881550639492,18.48971542725479,12.144087959599618,11.66798841792428,0.5662505034232783,0.7824956672443674,0.7069174757281553,0.5864939870490287,0.1015697137580794,0.7219662058371735,0.900497512437811,0.8478802992518704,0.7279151943462897,0.1481481481481481,0.5109170305676856,0.7194148936170213,0.6615878107457899,0.5363408521303258,0.0899653979238754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021957784388723,0.0045269948653548,0.0067403886112772,0.0091424744548507,0.0111339117007659,0.0134648632157022,0.0157703976705829,0.0182941752325012,0.0204425474559137,0.0224974179099898,0.0248632928502672,0.0270541904254009,0.02917120486632,0.0312564324235313,0.0332274892265819,0.0354383572963146,0.0376042550549473,0.0395529428840989,0.0419060282767002,0.0435796531117912,0.0583806107124979,0.0723434510304158,0.0858585858585858,0.0992427345579817,0.1110455933452669,0.1258502682834086,0.137903259994065,0.1488511063617127,0.159730669910579,0.1698880976602238,0.1822082195316028,0.1942218382114699,0.205844994734728,0.2161208957994387,0.2256700351493848,0.235888590351721,0.2457838572415175,0.2539251139911502,0.2630500260434359,0.2703505644682115,0.277468313554533,0.2840751569652987,0.2898082411491379,0.2954032460320304,0.301720068270127,0.307567587486028,0.3125038961686636,0.3169295078852365,0.3210643701574123,0.3254745464569823,0.3250810926735115,0.3238576455928467,0.3235269395645961,0.322852540130027,0.3225319825482511,0.3218197906813536,0.3203063319122059,0.3206815280369243,0.3217483064982809,0.3222918372432451,0.3237063328974406,0.3252122190928249,0.3262821583695289,0.3272124287749288,0.3281783250996396,0.3282926198785059,0.3301393482009101,0.3324830461021589,0.3365264473136193,0.3400570736093194,0.3426244910742249,0.346765365167075,0.3497985745274248,0.3548459804658151,0.3571957769957399,0.3579413134606428,0.3636636636636636,0.3629731861198738,0.3621154883971937,0.3657806065144141,0.0,1.9797417898492995,57.35245597526851,184.1492695628966,274.0392621146089,fqhc7_100Compliance_implementation_low_initial_treat_cost,25 -100000,95721,44434,419.4168468779056,6285,64.22833025145997,4940,50.84568694434868,2029,20.72690423209118,77.31288813594676,79.67041022635809,63.318020272784125,65.06167609976751,77.05629966317764,79.41816866237394,63.22139179875183,64.96949086100663,0.2565884727691241,252.24156398414263,0.0966284740322933,92.1852387608766,143.98296,101.32129123910885,150419.40639984954,105850.64013028367,369.61813,240.779870624047,385391.0427178989,250793.5657738388,360.45262,175.50534865005218,371419.4272939063,179386.8247070907,3260.83851,1487.9950514726115,3359279.572925481,1507200.1242927415,1198.94004,533.306927330319,1231881.1023704307,536566.7357677798,1995.84426,844.440140054756,2040690.6530437416,844327.6593951547,0.37986,100000,0,654468,6837.245745447707,0,0.0,0,0.0,31819,331.6200206851161,0,0.0,33062,340.30150123797284,1664954,0,59788,0,0,0,0,0,70,0.7312919839951526,0,0.0,2,0.0208940566855757,0,0.0,0.06285,0.1654556942031274,0.3228321400159109,0.02029,0.3289852874260579,0.6710147125739421,24.74799720703444,4.461459799747298,0.3139676113360324,0.2248987854251012,0.2253036437246963,0.23582995951417,11.202182236316638,5.679055885260676,21.666671282585984,12263.898723142687,55.67636643643154,13.239863488957848,17.43951740031503,12.196134853089394,12.80085069406926,0.5518218623481781,0.774977497749775,0.7079303675048356,0.5723270440251572,0.111587982832618,0.7181467181467182,0.9270833333333334,0.8883495145631068,0.6944444444444444,0.1336032388663967,0.4927297668038409,0.6946354883081155,0.6426690079016681,0.5365853658536586,0.1056644880174292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026129757540156,0.0049970099027965,0.0073661461662557,0.0095376427091374,0.0116150161206659,0.0135539714867617,0.0158968084021617,0.0181927698543149,0.0204980882082319,0.022424509271869,0.0245152823204929,0.026862453149869,0.0290233667928254,0.0311991430278309,0.0334265286962622,0.0356352963062485,0.037866550695825,0.0400095458460006,0.0419907657751341,0.0438338751354505,0.0580282101878243,0.0723231942744137,0.0859297167486393,0.0975963661598637,0.1100086463232037,0.1252935327593137,0.1376693939490412,0.149484755578266,0.1597974488814819,0.1699645013566702,0.1829273545691456,0.1948966457181797,0.2062376980545255,0.2162431217249565,0.226206198274344,0.2359393697646589,0.245615210280113,0.2539955879704664,0.2623286037238574,0.2704899241156376,0.2782822199573798,0.2852078067958438,0.2919083355034208,0.2973400810687645,0.3023767552124491,0.3078469336161502,0.3134562131141378,0.3181835547009309,0.3237276710481968,0.3271631055637825,0.3263956376201274,0.3264169412543256,0.3262168001016647,0.3249427586007014,0.3248956469886702,0.3228419062840984,0.3217851691681506,0.322797013793899,0.3229054111997256,0.3232091279309664,0.3248438793168309,0.3247730838745556,0.3265280376779294,0.3273546622424501,0.3274584128057172,0.3285003925673907,0.3289526427303441,0.3329956951126867,0.3349223163841808,0.3379335173406936,0.3395578745022655,0.3413078149920255,0.3406738189346885,0.3404255319148936,0.3413851670126439,0.3440503025269901,0.3484030242246567,0.348582995951417,0.3527615875659173,0.3600455753892898,0.0,2.9291565167727667,55.89539105324948,178.34110208619484,281.26465622928924,fqhc7_100Compliance_implementation_low_initial_treat_cost,26 -100000,95783,44861,423.81215873380455,6225,63.72738377373855,4934,50.93805790171533,1980,20.34807846903939,77.37208356525132,79.70925677567148,63.35007434272507,65.07865540259417,77.13479666559175,79.47119358158916,63.26356001462414,64.99383598712862,0.2372868996595656,238.06319408231505,0.0865143281009324,84.81941546554594,143.0044,100.65544493835922,149300.3977741353,105086.96213144214,372.51263,243.4372561157897,388353.9458985415,253595.8219264271,365.47244,177.4171944919906,377487.93627261627,182174.17006817783,3246.76656,1477.070668329906,3356897.3617447773,1509287.773748896,1217.73252,531.7547020132978,1258373.6049194534,542199.358062498,1937.17398,796.9635111939974,1992960.6506373785,807990.7155201123,0.3851,100000,0,650020,6786.381717006149,0,0.0,0,0.0,32055,334.07807230928245,0,0.0,33502,345.6041259931303,1670539,0,59985,0,0,0,0,0,67,0.6994978232045352,0,0.0,0,0.0,0,0.0,0.06225,0.1616463256297065,0.3180722891566265,0.0198,0.3324137931034482,0.6675862068965517,24.521520046589263,4.370860895330069,0.3177948925820835,0.2312525334414268,0.2276043777867855,0.223348196189704,11.36587119030584,5.966505798053884,20.87287809902864,12432.666651793375,55.87607161482808,13.6968137901281,17.718150627122945,12.41157287524345,12.0495343223336,0.5638427239562221,0.7922874671340929,0.7193877551020408,0.5592163846838825,0.1107078039927404,0.747135217723453,0.9241071428571428,0.902439024390244,0.7161572052401747,0.1351351351351351,0.4976551724137931,0.7070707070707071,0.6545768566493955,0.5190156599552572,0.1045454545454545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0042678723490531,0.0066266160621866,0.0089698398025213,0.0108817248042306,0.0131230656458706,0.0154623938680447,0.017654142090332,0.0200907455853499,0.0223723262716201,0.0243387544706449,0.0265704697297796,0.02882253173665,0.0309514003294892,0.0332773039918327,0.0351810714470217,0.0373559946589932,0.0393964533858757,0.0415506421179502,0.043580560529713,0.0579672336429093,0.0727291742927365,0.0857373474778816,0.0987590757688791,0.1113054288393261,0.1279502186912333,0.1402456471286415,0.1516746411483253,0.1628150139769114,0.1737365297684084,0.1860337539126786,0.1987376248324759,0.209635883560974,0.2201138934735323,0.229831082567193,0.2409283681582123,0.2507221968167571,0.2601330845491536,0.2683758940007027,0.2767138654548368,0.2848917203343777,0.2913028741073202,0.2967664161111899,0.3024274633725941,0.3078061682560481,0.313039303782666,0.3176477948076321,0.3213160168759213,0.3272988245638989,0.3313474541644149,0.3308558679640879,0.3299833875640128,0.329745872541838,0.3293065329537736,0.3279365456597944,0.3256939022336533,0.324138695026033,0.3256649656236155,0.3260590500641848,0.3278776399957117,0.3292687495317299,0.3301130077445867,0.3310100883251706,0.3307200929152148,0.3310971651157758,0.3321841782235106,0.3320638011511698,0.3355126018571158,0.3369469571644785,0.3387141775280003,0.3410014149436304,0.3460065936403275,0.3460255522688653,0.3475409836065574,0.351818611242324,0.3537713472485768,0.3574377006573918,0.3608635373341256,0.3621621621621622,0.3629183903723204,0.0,2.233133114852997,57.33714711517074,184.89633791488268,271.7765521626273,fqhc7_100Compliance_implementation_low_initial_treat_cost,27 -100000,95656,44812,425.46207242619386,6093,62.54704357280254,4776,49.40620556995901,1887,19.37149786735803,77.25911226955019,79.65614362876835,63.27736057920528,65.04603442695267,77.02486550820436,79.42318899961836,63.19030777878336,64.96218565751934,0.2342467613458296,232.95462914998663,0.0870528004219153,83.84876943333097,144.08284,101.39699575426776,150626.03495860164,106001.71003833294,370.59884,241.9512745543968,386926.9151961194,252437.11273145105,358.95138,173.44450416087017,372738.6363636364,179276.15697662468,3139.08866,1426.591387415522,3248359.465166848,1458093.0181227732,1147.98853,501.3865384283963,1188384.9105126704,512419.5772772406,1851.23076,780.3682818414405,1901842.163586184,786010.5530361632,0.38201,100000,0,654922,6846.637952663711,0,0.0,0,0.0,31863,332.5666973321067,0,0.0,32854,340.888182654512,1658987,0,59593,0,0,0,0,0,71,0.7422430375512252,0,0.0,1,0.0104541272894538,0,0.0,0.06093,0.1594984424491505,0.3096996553421959,0.01887,0.3254761161411177,0.6745238838588823,24.67962223343708,4.391798599011489,0.3285175879396985,0.2328308207705192,0.2152428810720268,0.2234087102177554,11.12626320320992,5.657454971251566,20.12018940582585,12332.28011676541,54.116129898235606,13.289173877371498,17.57330926497742,11.408303694001244,11.845343061885446,0.5613484087102177,0.7841726618705036,0.6953473550031868,0.585603112840467,0.1087160262417994,0.6955074875207987,0.8924731182795699,0.8377659574468085,0.7123287671232876,0.1404255319148936,0.5162283156127588,0.7297297297297297,0.6504610226320201,0.5512978986402967,0.0997596153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360138974707,0.0046441355114126,0.0068408338915616,0.0092464639895951,0.0113840988860064,0.013657751614283,0.0156718396312988,0.0180793613524301,0.0202103842733155,0.0223657542940201,0.0243087238688907,0.0264295468780482,0.028203202945805,0.0301634885805235,0.0324974200206398,0.0345144913300176,0.0362278302668655,0.0381900471277015,0.0399950071252483,0.0420463312412685,0.0572596068431448,0.0714442826767777,0.0849435040114252,0.0970989311851734,0.1091715507682559,0.1250966395899304,0.1370139456829986,0.148393214848911,0.1596642249906432,0.169655513079335,0.1827085917695917,0.1950717350786702,0.206978061480142,0.2178029057918611,0.2280933946552846,0.2387520963138195,0.2484306638767358,0.2574983362097165,0.2651705585950385,0.2728662039803282,0.2797117593817447,0.2861197776161768,0.293046986236355,0.2997114344114464,0.3056815410875396,0.3110353010975971,0.3166133182702567,0.3212108069495114,0.3256622924860143,0.330595020768844,0.3307277955530355,0.3295358824585387,0.3286892318137456,0.3274792638108104,0.3281588178222255,0.3261444338549513,0.3242131673389017,0.3249123038158133,0.326305858135346,0.3278121978297461,0.3292586750788643,0.3299013978537203,0.3308428475486904,0.3307135839957131,0.3308026812099079,0.3324225865209472,0.3324420423837292,0.3364247987927565,0.3397273749297358,0.3412395709177592,0.3430563784695319,0.3473499548136728,0.3510530962290327,0.3537409798708697,0.3554599850411368,0.3600664372997983,0.3594990836896762,0.3618181818181818,0.3619922092376182,0.3672514619883041,0.0,2.0414903045268056,53.03889815677607,182.97999689305803,269.412715609589,fqhc7_100Compliance_implementation_low_initial_treat_cost,28 -100000,95621,44566,421.9052300226938,6141,63.030087533073285,4795,49.61253281183004,1963,20.152476966356765,77.28554750318864,79.71759442164259,63.27381344368565,65.07192597057339,77.04087855699362,79.47388696343445,63.183422976715065,64.98468523266075,0.24466894619502,243.7074582081351,0.0903904669705824,87.2407379126372,143.70532,101.0872944348382,150286.35969086288,105716.62546390251,368.32745,240.5105880911744,384629.8511833175,250960.8356979488,359.345,174.1035727064529,372582.47665261815,179530.5206590984,3181.50172,1446.5667809893798,3294248.941132178,1480375.6381225802,1166.80892,512.5498457608512,1205577.5300404725,521670.5526424468,1929.0241,804.1879196603322,1983025.7161083864,810745.6562875751,0.3811,100000,0,653206,6831.198167766495,0,0.0,0,0.0,31686,330.7850785915228,0,0.0,32865,340.6260131142741,1664613,0,59712,0,0,0,0,0,67,0.6797669967894082,0,0.0,0,0.0,0,0.0,0.06141,0.1611388087116242,0.319654779351897,0.01963,0.328982128982129,0.671017871017871,24.770424538884683,4.458121175271351,0.319082377476538,0.2289885297184567,0.2193952033368091,0.232533889468196,11.294140611708364,5.770807226642694,20.75195217974285,12349.640112695848,54.27923421545174,13.011282618161085,17.299955381723837,11.709801310641735,12.258194904925086,0.5547445255474452,0.7768670309653917,0.6993464052287581,0.5750950570342205,0.1183856502242152,0.7142857142857143,0.9173333333333332,0.8817204301075269,0.7024793388429752,0.1222707423580786,0.50041934582052,0.7040110650069157,0.6407599309153713,0.5370370370370371,0.1173814898419864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021787596270774,0.0043513982290113,0.0068228891686634,0.008863139706256,0.0111606234485003,0.013222096588536,0.0154440942150952,0.0178367113435763,0.0200161602111055,0.0223262292227809,0.0247122545700744,0.0268392930538429,0.0289240460726086,0.0309346362783601,0.0331756980009912,0.035240331405993,0.0372646348666825,0.0392057079356507,0.0413227441632925,0.0431626160425576,0.057931928416123,0.0721928215876342,0.0854560739806641,0.0982447637911416,0.1104597118350445,0.125677851211659,0.1375253722143699,0.1495815341969188,0.160718298855987,0.1700191262115058,0.183018949367635,0.1955305445319107,0.2074959675661537,0.2173117384062418,0.2281628332635014,0.2382897482573369,0.2485215699864733,0.258461919951308,0.2674599656767477,0.2748867870449986,0.2819651626053924,0.2888108203056385,0.2955736266862657,0.3009917395062914,0.3065256290092875,0.3116490353161916,0.3162674750714035,0.3217816736316379,0.3261185319673194,0.3305158614860403,0.3292830778349543,0.3286003219548438,0.3272042752999901,0.3262224664825072,0.3257777315358433,0.324436672648904,0.3234412422478468,0.3231640091491007,0.323733625200944,0.3236978700554859,0.3230798086842352,0.32539902022756,0.3266701625589931,0.327414232678803,0.3291909042834479,0.3299116424116424,0.3318225596283496,0.3335525079842194,0.3381312515247621,0.3431686218746297,0.3454578521414931,0.3476713929159364,0.3463066927395445,0.3494214372716199,0.3527806530535428,0.3611965003546938,0.36765605875153,0.3739359546007296,0.3829728989871339,0.3782245827010622,0.0,2.034262821254379,53.55246569393817,187.388387406844,263.27300483085577,fqhc7_100Compliance_implementation_low_initial_treat_cost,29 -100000,95824,44630,422.023710135248,6213,63.77316747370179,4878,50.47795959258641,1947,20.026298213391215,77.35864855579545,79.66352516415513,63.35358995694328,65.05447521057657,77.12128520533662,79.42604746126828,63.26631657724138,64.9694397464963,0.2373633504588355,237.47770288684933,0.0872733797018909,85.03546408026352,143.79442,101.16419262865,150060.96593755216,105572.91767057314,369.48336,241.06699603620615,385169.435631992,251156.69982071943,364.92783,176.62043436708925,378748.06937719154,182667.55850941245,3228.16952,1464.6213880516698,3341818.2188178324,1501414.8418472095,1186.04707,519.6694736686524,1223892.521706462,528475.484284326,1920.79176,794.8618918967919,1976883.077308399,805040.4177308064,0.38206,100000,0,653611,6820.952997161463,0,0.0,0,0.0,31864,332.08799465687093,0,0.0,33482,347.2616463516447,1665545,0,59857,0,0,0,0,0,58,0.6052763399565871,0,0.0,2,0.0208715979295374,0,0.0,0.06213,0.1626184368947285,0.3133751810719459,0.01947,0.3271783915763772,0.6728216084236228,24.803589941298632,4.405973850814524,0.3202132021320213,0.2320623206232062,0.2136121361213612,0.2341123411234112,11.290799519414078,5.713225900574716,20.66164112545848,12339.635711426292,55.337168491764935,13.419223526964666,17.86536470886762,11.573161126027095,12.47941912990556,0.552070520705207,0.7800353356890459,0.6971830985915493,0.5604606525911708,0.1199649737302977,0.7390965732087228,0.9185750636132316,0.8758949880668258,0.7357723577235772,0.1769911504424778,0.4852531997774068,0.706359945872801,0.63167104111986,0.5062814070351759,0.1058951965065502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024796065016294,0.0046794761417617,0.0069547938400397,0.009132698103443,0.011297827809725,0.0136717359239102,0.0157886158986269,0.0178103291748696,0.0202276117115828,0.0224536350338083,0.0244696868822402,0.0269150289254502,0.0290446200158219,0.0312011196180126,0.033128151195521,0.035125951478471,0.0370941373672992,0.0392175157056664,0.041110972620383,0.043005715356507,0.0580454014354865,0.0713852587558808,0.0849186135479881,0.0978172914236472,0.1098862881893581,0.1255878343390364,0.1372050124037911,0.1491410031381309,0.1605901758356731,0.1713480134651257,0.1842445253116858,0.1970945829006576,0.2082594843802668,0.2191837761564629,0.2283660461685802,0.2383226764480989,0.2482981050376091,0.2573093494425882,0.265712048835283,0.2734707903780068,0.2813053289359486,0.2879816470808558,0.2948649640654045,0.3010837769145926,0.3066216068367756,0.3121100781693093,0.3164374820134883,0.3209202945553054,0.3246691014582847,0.329188775375518,0.3285620026123372,0.3280779231499443,0.3269891322709612,0.3260649819494585,0.3250739040658377,0.3235942330649851,0.3228043509238588,0.3232007886953664,0.3243557516373399,0.325913466700068,0.3255333921300032,0.3255210910746451,0.3263385636566051,0.326876621633712,0.3280167436489607,0.329481582180858,0.3312748377505217,0.3336071270613508,0.3350956963096119,0.3389451847123593,0.3427867955498814,0.3448607108549472,0.3469220073315636,0.3500114933721553,0.3496667605369379,0.3539385376192158,0.3593510866238139,0.3614678899082569,0.3598209289311695,0.371496249506514,0.0,1.6468530048248862,56.93302686836781,185.0105782872562,268.51955323361966,fqhc7_100Compliance_implementation_low_initial_treat_cost,30 -100000,95852,44530,421.14927179401576,6242,63.89016400283771,4892,50.33802111588699,1940,19.728331177231563,77.41454581429173,79.70276354696774,63.37712166936033,65.06797972666125,77.17260991018279,79.46485320162944,63.288064907230606,64.98354751228989,0.2419359041089421,237.91034533830668,0.0890567621297222,84.43221437136117,142.94566,100.5889143846008,149131.6404456871,104941.90458686392,371.49883,242.50991923085127,386897.3521679255,252326.439960409,361.74064,176.1616171096122,373171.0866752911,180529.7572067853,3219.75559,1461.2005931265255,3315596.3151525264,1480939.7645604953,1157.22188,506.602128454163,1190871.7814964736,512096.4283000481,1896.33272,791.1193497810455,1931227.5174226933,786795.4003326313,0.37968,100000,0,649753,6778.710929349413,0,0.0,0,0.0,31967,332.79430789133244,0,0.0,33088,341.02574802821016,1671864,0,59989,0,0,0,0,0,74,0.7615907857947669,0,0.0,1,0.0104327504903392,0,0.0,0.06242,0.164401601348504,0.3107978212111503,0.0194,0.3341452275841072,0.6658547724158929,24.60193934675732,4.454166352639974,0.3225674570727718,0.2246524938675388,0.2371218315617334,0.2156582174979558,11.37127789235325,5.938263843174519,20.534019313537502,12242.500797466304,55.147738218472654,13.100657768913614,17.744591953714128,12.684557958747313,11.6179305370976,0.5600981193785772,0.7907188353048226,0.6831432192648923,0.5706896551724138,0.124170616113744,0.7329635499207607,0.9213759213759214,0.8507462686567164,0.7385892116182573,0.1415094339622641,0.5,0.7138728323699421,0.6258503401360545,0.5266594124047879,0.1198102016607354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022169357696006,0.0044779899701129,0.0068142409523712,0.0087202809981117,0.0107734525866449,0.0129325695214644,0.0151792991035044,0.0172589660940878,0.0193368472664868,0.0216637515726165,0.0237641611865691,0.0260752715746714,0.0283905837383504,0.0303448275862068,0.0322401047519873,0.0341152046602423,0.0362426800753202,0.0384168963873401,0.0405584968338004,0.0424507203411868,0.0571938020062146,0.0710889081655048,0.0855945521215296,0.0980721575874669,0.1109531482008024,0.1260720774008196,0.1376223568795287,0.1496614547348504,0.1602300125888151,0.1697848506591558,0.1820959101568382,0.1933659844528775,0.2046350924084879,0.2151980333242283,0.2252697742906749,0.2361194095908296,0.2464962258470938,0.2559388695359029,0.2640674967680479,0.2725274473663121,0.2795054760775787,0.2858228499275125,0.2927936984778417,0.2982603278060002,0.3032210247500091,0.308664037466108,0.3143640254815334,0.3192880678854496,0.3237200259235256,0.3277961177868744,0.3270369971457806,0.3260442023902848,0.3245111427083186,0.3247180790389419,0.3244511081751109,0.3230326765389793,0.3204994468152363,0.3212588100311424,0.3220159694260561,0.3223910371729334,0.3230496122582453,0.3230235127031718,0.3239048235810232,0.3250273029175117,0.3270716376373495,0.328161950053273,0.3280424782781532,0.3312384704374199,0.3344657303961055,0.3368638184775279,0.3385926731955023,0.3431351808758197,0.3455749172443945,0.3471814555580643,0.3469787392763894,0.3502005189903279,0.3530668294171498,0.3530127814972611,0.3479097909790979,0.3536818008393743,0.0,2.7661585996833917,54.735751402537225,181.59548316768263,275.0737286661886,fqhc7_100Compliance_implementation_low_initial_treat_cost,31 -100000,95711,44468,420.6413055970578,6216,63.78577175037352,4874,50.3494896093448,1912,19.590224739058208,77.36002699221102,79.73277444621371,63.33690834044432,65.08895747316926,77.12048330634427,79.49452496676993,63.24842450519049,65.00329892913268,0.2395436858667494,238.2494794437804,0.0884838352538324,85.65854403657625,143.44616,100.90817627404104,149874.26732559476,105430.0720649048,367.92467,239.57643037486423,383843.0065509711,249743.2273979628,353.19905,171.1198284018832,365911.1909811829,176239.5606687575,3190.56641,1438.5320153555408,3299403.798936381,1468857.2633819974,1141.51086,501.6525769016192,1178100.3437431434,509568.7401673991,1876.34624,784.5549941271778,1925459.8739956743,790278.4269691383,0.382,100000,0,652028,6812.466696617944,0,0.0,0,0.0,31689,330.4949274378076,0,0.0,32499,336.3981151591771,1672351,0,59904,0,0,0,0,0,58,0.6059909519282005,0,0.0,0,0.0,0,0.0,0.06216,0.1627225130890052,0.3075933075933076,0.01912,0.3146446078431372,0.6853553921568627,25.179079992540515,4.454998686086773,0.3208863356585966,0.2308165777595404,0.2258924907673369,0.222404595814526,11.23736130616988,5.702577203420934,20.3427638233575,12359.667750575469,54.63389612607798,13.10760618533732,17.63854966386962,12.13294523774966,11.754795039121372,0.5510874025441116,0.7555555555555555,0.6847826086956522,0.5885558583106267,0.1079335793357933,0.7246963562753036,0.9344262295081968,0.8333333333333334,0.7601626016260162,0.1402714932126696,0.4921681780708986,0.6693017127799736,0.6333907056798623,0.5391812865497077,0.0996523754345307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024207189231345,0.005017790347596,0.0071643850907725,0.0093866189886019,0.0115952642499694,0.0136348824895116,0.0159633027522935,0.0184633285023168,0.0205366726296958,0.022686787198755,0.0251389202157108,0.0270830766703626,0.0290300686931841,0.0311470006591957,0.033377699363399,0.0350898958882582,0.0370869159846679,0.0390567428150331,0.0411253835352852,0.043075063560205,0.0581048058647841,0.0725289906643781,0.0860101126660092,0.0985485906604964,0.1105195462404588,0.1259342262439612,0.1378853130237393,0.1503384130767921,0.1616079629194523,0.1719814224882281,0.1849059042776658,0.1962971779778393,0.2081861557021595,0.2184060078048993,0.2284149519965688,0.2393035542215379,0.2486556440636365,0.2575316277762159,0.2668541236762738,0.2735589804657979,0.2808409269623942,0.2882605951518268,0.2952690715552927,0.3001472895137051,0.3056250455395526,0.3107908351810791,0.3158592899423094,0.3210634726884345,0.3252605009384506,0.3296830883711111,0.3293737373737374,0.328592278460098,0.3277483957407799,0.3278491636279446,0.3268104089219331,0.3250371414130584,0.3232521354001898,0.3245701735695671,0.3254428781103867,0.3262276089475091,0.3270716784852283,0.3269530556268129,0.3277244258872651,0.3288168832037082,0.3286108114587079,0.3297797654645206,0.3300766228957188,0.3336062218583708,0.3355964400042213,0.3396775995531083,0.3388766721641927,0.3397726666310902,0.3402996348986529,0.344796104686549,0.3498550453567755,0.3485653560042508,0.3534351145038168,0.3578520770010132,0.3587828492392808,0.3622350674373796,0.0,2.2635805128276814,54.01537568162426,174.39304514928602,283.500240658279,fqhc7_100Compliance_implementation_low_initial_treat_cost,32 -100000,95750,44243,419.11227154047,6196,63.65535248041776,4833,49.8798955613577,1911,19.613577023498696,77.33346816806463,79.69472491095547,63.32120940122799,65.06990520770765,77.0953720190697,79.45835752044663,63.23269660307953,64.98449318786244,0.2380961489949271,236.3673905088461,0.0885127981484572,85.41201984520796,144.1616,101.3702447041768,150560.41775456918,105869.70726284783,368.89705,240.6573417295137,384697.8694516971,250766.05924753388,357.58436,173.4814503322358,368882.2349869452,177751.63824632642,3165.27031,1445.7846063389436,3270512.2088772845,1474704.685471481,1198.47219,527.8254391769923,1236234.7676240208,535831.2770652398,1869.91272,785.0138318095677,1921250.7154047,792029.536224449,0.37955,100000,0,655280,6843.655352480418,0,0.0,0,0.0,31840,331.9268929503916,0,0.0,32786,337.95300261096605,1667108,0,59791,0,0,0,0,0,66,0.6892950391644909,0,0.0,0,0.0,0,0.0,0.06196,0.1632459491503095,0.3084247901872176,0.01911,0.3319024988502222,0.6680975011497777,24.693930078817512,4.366135994680001,0.3269190978688185,0.2309124767225326,0.2195323815435547,0.2226360438650941,11.067734386424492,5.674672216924324,20.32569795349578,12240.02086370376,54.80248394549849,13.26545656146881,17.96474198958645,11.75492250645832,11.817362887984908,0.5603145044485827,0.782258064516129,0.6930379746835443,0.5739868049010367,0.1217472118959107,0.7192307692307692,0.9280205655526992,0.851063829787234,0.714859437751004,0.1506276150627615,0.5018397962071893,0.7042640990371389,0.6352636127917026,0.5307881773399015,0.1135005973715651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021176351385581,0.0041475682472721,0.0063942512636258,0.0087382389400312,0.0110758528101543,0.01322689366555,0.0154039065367206,0.0176971280439264,0.0198785822329422,0.0219874708266797,0.0241229419122019,0.026159089975771,0.028177414876441,0.0303092719801439,0.032117616713954,0.0341195683631702,0.0361166335321404,0.0382268708753579,0.0401825629509492,0.0421197350331208,0.0567658694948693,0.0710002197825199,0.0834496290777834,0.0963999873794474,0.1091273398365409,0.1243391278602546,0.1351864622566442,0.1471721407437365,0.1581904009227417,0.1685147453083109,0.1812286579125957,0.1941033270219096,0.2056053421499108,0.2161857677247172,0.2263266742937604,0.236664045802372,0.2460059617510131,0.2551881696227604,0.263917104561292,0.2713896395364815,0.278785986097135,0.2857076023391813,0.2921502514049098,0.2979212843706943,0.3030950358053161,0.3090472673559822,0.3143543002888114,0.3199400033049027,0.324159258827944,0.3278528449276892,0.3274326745611553,0.3271679639153992,0.3269035818878125,0.325830839729968,0.3252460381173252,0.3240274880353417,0.3218254156957852,0.3220500517606849,0.32264460549706,0.3237132549916062,0.3235878034162421,0.3253838098437098,0.3272886992533099,0.328299526405147,0.3289046140515561,0.3301097752221641,0.3308488848429677,0.3339518208692371,0.3365817618913594,0.3389151224157771,0.3415144077811108,0.3427434332714247,0.3461199294532628,0.3476899579992363,0.3493111907907152,0.3485193621867881,0.3525878003696858,0.3552820512820512,0.3529743445164928,0.355859375,0.0,2.276908605568529,57.00110285959615,178.2431140630704,267.09356274471145,fqhc7_100Compliance_implementation_low_initial_treat_cost,33 -100000,95793,44396,419.780150950487,6108,62.54110425605211,4783,49.3042289102544,1865,19.103692336600798,77.34149214859087,79.68068925552342,63.33904717832892,65.07236354135935,77.1117437531231,79.45185430484801,63.253970869112685,64.99007782182518,0.2297483954677801,228.83495067540596,0.0850763092162338,82.28571953416974,144.36796,101.60478222937932,150708.2563444093,106067.02183810851,373.84269,244.20689644517515,389655.1313770317,254326.0430774432,362.95291,176.36876668880987,374685.6242105373,180907.0207174164,3130.809,1423.0768529307377,3232115.227626236,1449383.5592691898,1150.95651,508.06146132110393,1188288.6745378054,517159.20925443753,1828.21858,760.1517247239404,1875951.729249528,766460.7861847507,0.37947,100000,0,656218,6850.375288382241,0,0.0,0,0.0,32080,334.2415416575324,0,0.0,33319,343.65767853600994,1663755,0,59697,0,0,0,0,0,74,0.7516206820957689,0,0.0,0,0.0,0,0.0,0.06108,0.1609613408174559,0.3053372626064178,0.01865,0.3323956868260665,0.6676043131739334,24.51258602587247,4.376668673587473,0.32573698515576,0.2331172904035124,0.2216182312356261,0.2195274932051014,11.1215596581839,5.697775646256821,19.871586621446763,12245.381871656466,54.19879187918899,13.232718361601378,17.790204678397853,11.687061054557368,11.488807784632392,0.5628266778172695,0.7829596412556054,0.7021822849807445,0.5688679245283019,0.1161904761904761,0.7348659003831418,0.9110576923076924,0.8618266978922716,0.7242798353909465,0.1643835616438356,0.4982748706152961,0.7067238912732475,0.6419098143236074,0.5226438188494492,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096325860793,0.0045923177518931,0.0068496625906946,0.0093484534406373,0.0117718878770921,0.0140265455175153,0.0161043570496083,0.0181866454267887,0.0202877506569999,0.0224968768559667,0.0244032482979246,0.0268019428841355,0.0289032204976291,0.0306370529091808,0.0327610046020182,0.0348644905215719,0.0368115311733093,0.0390257059275088,0.0407020241905316,0.0427866497324533,0.0574579525061558,0.071297128876435,0.0842747259656697,0.0965196191757214,0.1084168484503598,0.124360546230922,0.136355926813238,0.1476408724040026,0.1592298908229368,0.1694869843855494,0.1819815747556933,0.1939682196519295,0.2057487996176157,0.2164796381079338,0.2271667912580801,0.2379898162497232,0.2475649169731416,0.2561825754088975,0.2646166387391875,0.271970736168267,0.2791830702979784,0.2863646444955467,0.2923604135893648,0.2980375732918511,0.3038083687083081,0.3083084191488576,0.3133823051745246,0.3182556810968643,0.3222630001033805,0.3266066398125477,0.3260480692929483,0.325127147766323,0.3244986480396575,0.3240814321422895,0.3233405665705537,0.3211698951075721,0.3193194778861994,0.3195083475746023,0.3207731121183614,0.3215664545649532,0.3222053331832085,0.3226132245479929,0.3235053406920865,0.3262568581345874,0.3276423352383708,0.3289071281072744,0.331162683955363,0.3352146616779757,0.3373651635720601,0.3395088840087842,0.3418327426704101,0.3447925033467202,0.3446500095365249,0.3456171459409451,0.3473474423460188,0.3472189066603008,0.3484801488833747,0.3486936844270726,0.3492595697122101,0.3461096205442698,0.0,2.448176454588778,57.00196899894851,174.39659896043182,263.05941023902653,fqhc7_100Compliance_implementation_low_initial_treat_cost,34 -100000,95712,44657,423.0921932464059,6191,63.48211300568372,4846,50.15045135406218,1898,19.537780006686727,77.3419109081298,79.7115254572145,63.33255108723839,65.08135717576752,77.10200482300593,79.47075860956201,63.24384808350764,64.99430615097774,0.2399060851238772,240.76684765249468,0.0887030037307496,87.05102478978688,143.97394,101.23279280978078,150424.12654630558,105768.13023422431,370.75886,242.04321673425707,386879.1896522902,252396.94785842643,362.134,175.44152917998454,375234.9339685724,180835.8268339754,3177.29915,1441.4380920884646,3291428.53560682,1477799.0451442483,1134.6991,501.9433664861487,1175270.4572049482,514166.58985931554,1857.64632,780.4510100907521,1914757.3971915748,793015.1675033127,0.3816,100000,0,654427,6837.460297559344,0,0.0,0,0.0,31912,332.92586091608155,0,0.0,33219,343.969408224674,1666084,0,59808,0,0,0,0,0,58,0.6059846205282514,0,0.0,0,0.0,0,0.0,0.06191,0.1622379454926624,0.3065740591180746,0.01898,0.3327702702702703,0.6672297297297297,24.549474673381788,4.372738265955749,0.328518365662402,0.2309120924473792,0.2185307470078415,0.2220387948823772,10.89698492671388,5.56560586699964,20.27256334138669,12290.053940779866,54.88082433109943,13.333168828183425,17.990543094776378,11.77390989707726,11.78320251106236,0.5567478332645481,0.7533512064343163,0.7022613065326633,0.5712936732766761,0.1226765799256505,0.7317460317460317,0.9055690072639224,0.8877551020408163,0.7012987012987013,0.1696428571428571,0.4952593418851088,0.6643059490084986,0.6416666666666667,0.535024154589372,0.1103286384976525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0043985000506739,0.0065631974031243,0.0088364345494434,0.0109610769919062,0.013164861122424,0.0152502115253269,0.0174634604392912,0.0196443172526574,0.0218612791304614,0.0244490005125576,0.0263992853402334,0.0285364649747028,0.0306192885033431,0.0325470043134584,0.0345472776703846,0.0366404308202154,0.0386160088834462,0.0406762742529165,0.0426427678199249,0.0576710182767624,0.0713657678780773,0.0848686419338593,0.09757251940512,0.1096050799544323,0.1249206483558339,0.1368584098962422,0.1484860744399966,0.1610025533915235,0.1709525495370817,0.1836776458930225,0.195621354285034,0.2078030846875068,0.2180150234536448,0.2279690747726248,0.2377267846666445,0.2474770565473867,0.2565756935389596,0.2648102988714342,0.2723142245671057,0.2794627984453081,0.2858630656353487,0.292090810094219,0.2982214338790479,0.303724406100006,0.3091844032850765,0.3143236572745837,0.3194762559169339,0.3248167620626246,0.3293702053620858,0.3283166184290234,0.3268366435296543,0.3262514060742407,0.3251006246663877,0.3248905705171007,0.3239544307668782,0.3224593014066698,0.3231594312236563,0.3244231130544691,0.3245579567779961,0.3251031121109861,0.327354348771902,0.3281450206902346,0.3299325066708523,0.3307037224674917,0.3319052221844876,0.3322288554371733,0.3342150842387025,0.3358088131775306,0.3381326526542496,0.3397242764539395,0.3418693982074264,0.3443276778931375,0.3451001458061545,0.3494353231470058,0.3540721280152854,0.354813903414334,0.3624588815789473,0.3662366797532249,0.3615710435117443,0.0,1.905356816708813,55.58506475371769,184.0872218210633,268.0743499430719,fqhc7_100Compliance_implementation_low_initial_treat_cost,35 -100000,95716,44706,423.4506247649296,6274,64.45108445818882,4926,50.97371390363158,1963,20.19516068368925,77.33810060160408,79.72088091891051,63.31256206328344,65.07490087734053,77.0983323603591,79.47931733821126,63.22550359479236,64.9892298701156,0.2397682412449882,241.56358069924977,0.0870584684910795,85.67100722493137,144.46542,101.62527595289208,150931.0878014125,106173.53687251038,371.31781,241.6571146702684,387387.8766350453,251924.19059537415,362.08079,174.9304156582592,374842.7326674746,180181.2684502793,3251.57696,1456.959984751987,3366296.7319988296,1491388.0480295732,1181.26538,511.8338297788475,1221695.4427681891,522307.1028803415,1927.07744,794.8377156404084,1983690.918968616,805572.4449361442,0.38208,100000,0,656661,6860.503990973297,0,0.0,0,0.0,31948,333.1940323456894,0,0.0,33098,342.4087926783401,1663329,0,59696,0,0,0,0,0,63,0.6581971666179114,0,0.0,0,0.0,0,0.0,0.06274,0.1642064489112227,0.3128785463818935,0.01963,0.3283763277693475,0.6716236722306526,24.866194576235745,4.433119766253827,0.3244011368250101,0.2259439707673569,0.2206658546488022,0.2289890377588307,11.084715877622264,5.622604211276223,20.65282074759636,12372.15952656946,55.42536366378534,13.205014380402146,18.071255858848687,11.92142706055236,12.22766636398214,0.5558262281770199,0.7906558849955077,0.6877346683354193,0.5804967801287948,0.1134751773049645,0.7218597063621534,0.9322033898305084,0.847457627118644,0.7178423236514523,0.146788990825688,0.5008108108108108,0.7246376811594203,0.6320675105485232,0.541371158392435,0.1054945054945055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002169021507774,0.0043619395414891,0.0067110686945397,0.0090249405451551,0.0114162452559497,0.0135263141812403,0.0159822940252534,0.0181498769240197,0.0201973717850386,0.0221573746992269,0.0244365142845423,0.0265027827408457,0.0284503943160903,0.0303791732745659,0.0326603876744689,0.0350119358872342,0.0369327300400699,0.0390620947242828,0.0409514799297202,0.0426996958206591,0.0571550904894681,0.071149679161738,0.0847262005938703,0.0974601672188042,0.1096195216602691,0.1258237515470133,0.1380642149268934,0.1495927168183996,0.1607501602906604,0.17088790911724,0.1838592559873304,0.1966269025092554,0.2082430917579965,0.2181229348563426,0.228893388502509,0.2395358888260912,0.2498045871764522,0.2594172397105331,0.2680079934598964,0.2758324259269872,0.2825067450989474,0.289390498044817,0.2952825384041406,0.301476757845276,0.3066332916145181,0.312331877298191,0.3175774739664916,0.3225272064632872,0.327437641723356,0.3315076809375495,0.3301617635184238,0.3295773485223708,0.3291650824496923,0.3284144563004462,0.3280078397600558,0.3257879743927466,0.3238059063716646,0.3241403071269195,0.3248077908764736,0.3254136841541565,0.3258184816626375,0.326718975433326,0.3278661017660136,0.3292609114752628,0.3303964757709251,0.3315491347502988,0.3313806341532774,0.3346002827077116,0.3385870897691849,0.3400292617343509,0.3419209039548022,0.34643760539629,0.3461778276593091,0.3478588093625348,0.3489128414792789,0.3495179873030802,0.3525331724969843,0.3552185192576332,0.3635135135135135,0.3636706948640483,0.0,1.8253743263495048,54.3008188734162,187.22966259181908,277.5462802156602,fqhc7_100Compliance_implementation_low_initial_treat_cost,36 -100000,95646,44251,419.3275202308512,6185,63.39000062731321,4837,49.94458733245509,1903,19.39443364071681,77.27782633283482,79.68631116909393,63.2892740309558,65.07124381506331,77.0377725758241,79.45238342688488,63.2003125809002,64.98786491300183,0.2400537570107133,233.92774220904755,0.0889614500555993,83.37890206148302,144.02696,101.24274148221448,150583.35947138406,105851.51651110812,369.30894,241.1833695649113,385503.6488718818,251545.5424846949,355.97224,172.9087002226062,368762.122827928,178107.71369466884,3180.57089,1444.917364647926,3286647.878635803,1471983.882909819,1130.08337,495.39738094178347,1167222.1734311944,503681.6956936608,1862.19766,780.9163113573695,1901558.4551366493,779102.7423062858,0.3791,100000,0,654668,6844.698157790184,0,0.0,0,0.0,31855,332.3923635070991,0,0.0,32723,338.70731656316,1665113,0,59775,0,0,0,0,0,54,0.5541266754490517,0,0.0,1,0.0104552202914915,0,0.0,0.06185,0.1631495647586388,0.30767987065481,0.01903,0.322969837587007,0.6770301624129931,24.74076820081146,4.429896415465537,0.3324374612363034,0.2282406450279098,0.2195575770105437,0.2197643167252429,11.30737150495612,5.877595969138895,20.29844281289924,12252.785452195343,54.73001367933605,13.109796158716549,18.19442811385164,11.790300684125963,11.635488722641917,0.5550961339673351,0.7663043478260869,0.6977611940298507,0.5668549905838042,0.1081843838193791,0.727344365642238,0.916010498687664,0.8700696055684455,0.6887966804979253,0.1527777777777778,0.4938340807174888,0.6874135546334716,0.6346644010195412,0.5310596833130329,0.0968122786304604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874288146241,0.004370842122343,0.0065782794956652,0.0087401038649552,0.0112111501093646,0.013528794531433,0.0157980622131565,0.0179558152123954,0.0201000398932089,0.0224236836713788,0.0243797372280741,0.026316330094295,0.0283282912473503,0.0304460751978891,0.0324502354010076,0.0347841376885045,0.0366106401939856,0.03870954343921,0.0406264633955981,0.0423027193860527,0.0574453187865107,0.0713118703001612,0.0849384374770387,0.0980047565929324,0.1095680803689203,0.1252659771550766,0.1371007997281136,0.1485408031709162,0.1597552757960489,0.1697033466109793,0.182294304650035,0.1945686658798306,0.2062738780708151,0.2164868354818235,0.2258401858150875,0.2363207233561598,0.2462065808425354,0.2546645360221467,0.2639278215967769,0.2719093406593406,0.2793491835885101,0.2858311805206495,0.2924962439814979,0.2977864068361318,0.3028539492388253,0.3080101128445458,0.3129656294997809,0.3176639808556408,0.3219730360383718,0.3265874587458746,0.3258530006743088,0.3247261993434301,0.3249106651036002,0.3248276661067022,0.3238536483627804,0.3218925642679443,0.3197605170798329,0.321276210241966,0.3220931427983962,0.3242502909318772,0.3251018760211075,0.3260787694991179,0.3272616624346841,0.3287321864023804,0.3292080995834637,0.3304041720990873,0.3314202501284907,0.3357032262141751,0.338365582252463,0.3416362981058027,0.3444938769894051,0.3477912932138284,0.3491420249477616,0.3530408006158583,0.3589207676230287,0.3628915662650602,0.3647260273972603,0.3639941992956287,0.3604749787955895,0.3636717230649552,0.0,2.362870158561672,55.40570304773004,179.82326613821365,270.5389678992102,fqhc7_100Compliance_implementation_low_initial_treat_cost,37 -100000,95811,44640,422.23753013745807,6173,63.13471313314755,4803,49.46196157017461,1912,19.52802914070409,77.39792083527668,79.70140083387271,63.37134666233784,65.07161868538803,77.1577406877231,79.46552688831412,63.281630656466746,64.98642415312342,0.2401801475535734,235.8739455585948,0.0897160058710895,85.19453226460882,144.93534,101.85474005145332,151272.12950496288,106307.98139196266,369.85725,242.1661157873641,385375.499681665,252101.51839284017,361.77444,176.20186084069445,373507.9583763869,180730.5498632104,3146.59277,1441.1571252026683,3242185.824174677,1462185.9861630364,1111.37616,498.7972769073454,1139118.0344636836,499756.2878034312,1867.63994,789.5882971168074,1909166.9432528624,789202.063016357,0.38054,100000,0,658797,6876.005886589222,0,0.0,0,0.0,31893,332.16436526077376,0,0.0,33117,341.57873313085133,1662717,0,59636,0,0,0,0,0,66,0.6888561856154304,0,0.0,0,0.0,0,0.0,0.06173,0.1622168497398433,0.3097359468653815,0.01912,0.3330231115247402,0.6669768884752598,24.688464654989524,4.3135295653883965,0.3231313762231938,0.2413075161357485,0.2161149281698938,0.2194461794711638,11.200347136806634,5.804734184157975,20.457206673344704,12319.364962681831,54.475936832049335,13.837439605539206,17.67209330094459,11.46467613690808,11.501727788657476,0.5477826358525921,0.7748058671268335,0.6688144329896907,0.571290944123314,0.0967741935483871,0.7302325581395349,0.9154589371980676,0.8443877551020408,0.7481481481481481,0.1401869158878504,0.4807856532877882,0.6966442953020134,0.6094827586206897,0.5091145833333334,0.0857142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002429740017818,0.0046003100649515,0.0068766164612809,0.0092198653574728,0.0112129960962914,0.013504711892695,0.0155488985347761,0.0178627901045651,0.020005312953389,0.0220989953141945,0.0241685961928569,0.0262426263144396,0.0284481430112498,0.030789178509318,0.0329200292714098,0.0352382427339837,0.0370676901749412,0.0392193443404537,0.0410059915059759,0.042878254896655,0.0583222064591504,0.0723452322431519,0.0856603575735332,0.0976909974134124,0.109909340080118,0.1256660746003552,0.1376289807735134,0.1493442902154475,0.1598217910639116,0.1701207869387054,0.1831674637025548,0.1953657428441617,0.2069302947604188,0.2176518183209779,0.2273187146721798,0.2369190230508624,0.2462617499804864,0.2557417962294695,0.2648662743897599,0.2730486716551109,0.2805238942963494,0.2871078918161107,0.293543809861653,0.3000227389686082,0.3054696688613243,0.3102366660106278,0.3148948393865214,0.3201147892778688,0.3245476766292047,0.3287503456994982,0.3286652255058608,0.3277703055090445,0.3272438554826379,0.3267376673536151,0.3258230437424959,0.3250160241736105,0.3225806451612903,0.3236497545008183,0.3251478331998432,0.3254889376192259,0.3263169701274909,0.3276773735301081,0.3284456251176605,0.3286846346704871,0.3291712866991274,0.3305916758055251,0.3317287028281612,0.3363213075290615,0.3411943034404963,0.3448646496815287,0.3461203936827649,0.3481374592485703,0.3520349942944085,0.354915150588595,0.357750472589792,0.3592001904308498,0.3599448360404536,0.3629764065335753,0.3640816326530612,0.3649468892261001,0.0,2.5628106424401578,56.19738227928762,178.79731836441138,263.86126286150045,fqhc7_100Compliance_implementation_low_initial_treat_cost,38 -100000,95553,44113,417.6739610477955,6094,62.541207497409815,4743,49.05131183740961,1908,19.60168702186221,77.19945181010942,79.66965102105527,63.224607941291474,65.05331226850123,76.96915056625947,79.43933754009733,63.14000577265257,64.97070775006198,0.2303012438499507,230.31348095794613,0.0846021686389022,82.6045184392541,143.87384,101.2214125145328,150569.6733749856,105932.2182605808,368.78748,240.88322008440204,385388.8522600023,251531.9771063201,361.01388,175.46081160733476,373693.7720427407,180493.2560285819,3113.00315,1424.7054067812649,3223312.758364468,1456442.2852042988,1138.91015,508.4172643197493,1176973.7318556197,517137.94890767336,1869.75848,775.3812543849369,1923098.741012841,784384.8980238654,0.37676,100000,0,653972,6844.076062499346,0,0.0,0,0.0,31790,332.10888198172745,0,0.0,33066,341.85216581373686,1659600,0,59539,0,0,0,0,0,66,0.6907161470597469,0,0.0,1,0.0104653961675719,0,0.0,0.06094,0.1617475315850939,0.3130948473908763,0.01908,0.337171308542088,0.6628286914579119,24.712050318944083,4.415765935613492,0.3253215264600463,0.2266497997048281,0.2300231920725279,0.2180054817625975,11.472419895568835,6.012090945976172,20.270013627010304,12172.304552887828,54.039574732773545,12.942226057930515,17.615243243722507,12.033032027057638,11.449073404062874,0.5654648956356736,0.7851162790697674,0.7018794556059624,0.5637030247479377,0.1353965183752417,0.7535433070866142,0.9303482587064676,0.895,0.7593360995850622,0.185022026431718,0.4966887417218543,0.6983655274888558,0.6342957130358705,0.508235294117647,0.1214374225526641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022909042989934,0.0044439033298837,0.0068445852628158,0.0091304701480396,0.0112595186708474,0.0136700034659218,0.0161249170791447,0.0181585939096668,0.0201698731068358,0.022125662283893,0.0243181374914029,0.0266212867469383,0.0288768511462173,0.0310698039053877,0.0332751190980582,0.0351523683338853,0.0371480425200933,0.0391282658851406,0.0412782401283239,0.0432286283966469,0.0583866783816576,0.0723850469249724,0.0851851073223032,0.0975607186133502,0.1090290328376507,0.1245282618835602,0.1369172348504994,0.1480521143442491,0.1590539035050132,0.1684337297576291,0.1811407960951167,0.1930982094411286,0.2050484886169017,0.2161088990533855,0.2262785000110358,0.2365185325054703,0.2462154693041834,0.2548486455383435,0.2627776260695431,0.270191114990582,0.2779639788001438,0.284466178816024,0.290589672720371,0.2961415138523616,0.3014746173422792,0.3065070185844207,0.3108228587214485,0.3148004031486419,0.3191552917646142,0.3235815602836879,0.3219764489817965,0.3209561511193258,0.3205052215636466,0.3210046323103648,0.3208826246312464,0.3183800718739442,0.3172718179941893,0.3174336414413524,0.3175501801338137,0.3187012288097587,0.3200850999736416,0.3206408449306148,0.3211861906167011,0.3202237096267014,0.3209763170613823,0.3228705426153483,0.3255727376861397,0.3276682957591045,0.3302658486707566,0.3336378440640267,0.3341205322675871,0.3384452670544685,0.3423722444889779,0.3470239902824172,0.3523204781025306,0.3577100865236458,0.3563741094436865,0.36158755484643,0.3654684095860566,0.3612385321100917,0.0,2.316468469355414,55.72131398077153,181.4486802800293,257.1878043987376,fqhc7_100Compliance_implementation_low_initial_treat_cost,39 -100000,95663,44527,420.89418061319424,6263,64.11047113303995,4894,50.36429967699111,1965,19.98682876347177,77.33990302576841,79.73088068608396,63.32261558699434,65.08924901767277,77.09283919278737,79.48698136251852,63.231176116098304,65.00189079302883,0.2470638329810413,243.89932356544364,0.0914394708960344,87.3582246439355,143.64746,101.04279591392518,150159.89463010777,105623.69559173888,371.92036,242.72536071435815,387925.342086282,252893.11879613996,363.93608,176.69372609360602,375264.0623856664,180797.27538372375,3221.90666,1477.0342261963513,3317479.6211701497,1494848.6081779764,1196.96806,526.8029813789278,1230915.275498364,530919.6433576145,1927.81018,812.1661635553096,1963330.733930569,807820.0086546183,0.38121,100000,0,652943,6825.44975591399,0,0.0,0,0.0,32006,333.6713253818091,0,0.0,33343,343.49748596636107,1666902,0,59889,0,0,0,0,0,63,0.6481084640874738,0,0.0,0,0.0,0,0.0,0.06263,0.1642926470974003,0.3137474053967747,0.01965,0.3400976502898993,0.6599023497101008,24.623708698422757,4.412684355537182,0.3169186759297098,0.2317123007764609,0.2239476910502656,0.2274213322435635,11.262095589982144,5.816657064314975,21.017994596897548,12377.691548133693,55.77736677195314,13.490265601294192,17.581547171821196,12.296671657877331,12.408882340960425,0.5659991826726604,0.7839506172839507,0.7124435847840103,0.5885036496350365,0.1176999101527403,0.7051578137028484,0.918854415274463,0.8571428571428571,0.7124463519313304,0.1335877862595419,0.5157162726008345,0.7048951048951049,0.6646655231560892,0.5550405561993047,0.1128084606345476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024815152435936,0.0051593938472454,0.0074885084879909,0.0099845610043472,0.0122428642608014,0.0145157678291496,0.0165939576792922,0.0187596962521433,0.0209151128557409,0.0227844991709144,0.0250345994156543,0.0270486670704291,0.0289983238557487,0.0310864818095669,0.0333880339763239,0.0356496655259049,0.0377211885127015,0.0397131024174546,0.0417459871630829,0.0436473188224501,0.0585844868111778,0.0725129300416692,0.085318896687755,0.0987754329118185,0.110770009811058,0.1256480247148691,0.1380342061706913,0.1504145954633995,0.1620117698576295,0.172168673407027,0.1848892430622112,0.1972257687563567,0.2080428896114488,0.2175648047929854,0.2279975788257305,0.23854247424964,0.2482260799714387,0.2559738097380973,0.2649644392518064,0.2729625430851856,0.2803344860688634,0.2875298134031707,0.2948887837198296,0.3002575621443546,0.3060216098093966,0.3112972773192066,0.3166560322286029,0.3219918595777156,0.3268782383419689,0.3308514851485148,0.3304094749181454,0.3290712398150187,0.3276989877914681,0.3270783298127839,0.3267334096960861,0.3247001883873734,0.3223824828612593,0.3239795080621326,0.3249620391380752,0.325620777553967,0.325952683985925,0.3274469135802469,0.3291412069975726,0.3303027588677893,0.3298775195293664,0.3313037342880288,0.3322472777158535,0.3357196921912451,0.3388511252773571,0.3440301467671559,0.3470130579189226,0.3505072502257396,0.3536040289581366,0.3595702529716549,0.3614344723995494,0.3606926817696596,0.3552712700369914,0.3624229979466119,0.3682148852825965,0.3707865168539326,0.0,2.9302757288540704,56.271570258405255,193.33611754989215,259.8861917500763,fqhc7_100Compliance_implementation_low_initial_treat_cost,40 -100000,95782,44474,420.8723977365267,6258,64.02037961203567,4862,50.14512121275396,1971,20.19168528533545,77.331780499572,79.670533708777,63.32970022966426,65.06187328154391,77.08834073362972,79.42923383374834,63.24001547388169,64.97557347444041,0.2434397659422842,241.29987502865905,0.0896847557825708,86.29980710350083,142.29204,100.08955109965927,148557.9962832265,104497.04154772407,367.99569,240.3007926951051,383594.0364577896,250277.5401214066,359.09132,174.16361159034437,370903.6144578313,178811.3501496566,3198.38881,1457.2197920326892,3303880.12361404,1486151.6526392512,1160.89241,511.5067516771262,1197188.083355954,519256.25021738495,1933.57384,807.7289187762632,1983724.9796412687,813555.9148982835,0.38074,100000,0,646782,6752.636194692113,0,0.0,0,0.0,31811,331.4714664550751,0,0.0,32902,339.4687937190704,1674366,0,60180,0,0,0,0,0,49,0.5115783758952622,0,0.0,0,0.0,0,0.0,0.06258,0.1643641330041498,0.3149568552253116,0.01971,0.3273031316509577,0.6726968683490423,24.890785271222494,4.410260967062857,0.3118058412176059,0.2396133278486219,0.2248046071575483,0.2237762237762237,11.083964466483678,5.570120826862084,20.9577761262368,12305.172658588896,55.08720638162861,13.705272108782529,17.26740011847325,12.206491825090684,11.90804232928215,0.5553270259152612,0.7536480686695279,0.724934036939314,0.5452881976212259,0.1167279411764705,0.7176105508145849,0.9176755447941888,0.8727735368956743,0.64453125,0.1674008810572687,0.4967814161768821,0.663563829787234,0.6731967943009796,0.5149342891278376,0.1033681765389082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081539630286,0.0045111714853412,0.0067987863658964,0.0091226786947864,0.0112178998220188,0.01346245888451,0.0155889969617259,0.0177018253093225,0.0199750567357036,0.0222244971080513,0.0242854799688358,0.0264084687811239,0.0284721293944659,0.030510918829831,0.0326232790472062,0.0345693817001436,0.0364854648453277,0.0385405214793918,0.0403400116385401,0.0425655976676384,0.0575927703802646,0.0715249521458531,0.0851808757088797,0.0976724636158251,0.109497818894485,0.1251875647230382,0.1378769410143621,0.1495975074171354,0.1604640490090397,0.1710257042140339,0.1837020291727218,0.1964368773459387,0.2076101613815303,0.2185753502564719,0.2287069544258939,0.2396073391242687,0.2487280760476636,0.2578871005837298,0.2663642549330914,0.2737139782237844,0.2809916399754865,0.2875645851354826,0.2936805613071926,0.2987609049947272,0.3039052535681749,0.3096708960653029,0.3157565208680299,0.3207181722033207,0.3256239061385882,0.3289962088688691,0.3281837160751565,0.3267776096822995,0.3255397963351596,0.3245373048004627,0.3233125185845971,0.3216081943081452,0.3188233428480811,0.3195099893118474,0.3214414167537294,0.3225789153826904,0.3230694128912337,0.3242387669904834,0.3262436686912843,0.3272107470452354,0.3277270310763133,0.3292146596858639,0.3303699045223258,0.3343942019851899,0.3365428541307938,0.3406965174129353,0.3425540670293996,0.3457839050977877,0.3476848608368894,0.3546752648549056,0.3567373202119606,0.3581290169007379,0.3608836706318554,0.3652050345107592,0.3724176437744277,0.3790513833992094,0.0,2.31107880606748,56.42559515360095,182.44271703925952,267.6500318125163,fqhc7_100Compliance_implementation_low_initial_treat_cost,41 -100000,95691,44394,419.5274372720528,6320,64.83368341850331,4915,50.81982631595448,1996,20.53484653729191,77.34192318165195,79.71677185444342,63.32298576779221,65.07493036256541,77.0963164342532,79.47057894057444,63.23277862520853,64.98637454269303,0.2456067473987531,246.19291386898112,0.0902071425836723,88.55581987238281,143.81774,101.16434945754555,150293.90433792103,105719.81634379987,369.17627,240.94316996407775,385259.784096728,251252.30164182396,362.624,176.4685623113562,375147.5582865682,181534.4149182596,3259.14373,1488.158051742687,3374388.6363398856,1523654.8387441724,1203.23208,529.9757024438582,1245030.9851501186,541473.6961029434,1965.28924,816.2603608018485,2024235.42443908,828290.1227693874,0.38099,100000,0,653717,6831.541106269137,0,0.0,0,0.0,31799,331.7448871889728,0,0.0,33260,343.7522860039084,1664822,0,59752,0,0,0,0,0,65,0.6792697327857374,0,0.0,1,0.010450303581319,0,0.0,0.0632,0.1658836189926244,0.3158227848101266,0.01996,0.3275835981237706,0.6724164018762294,24.46242439666787,4.416907389023288,0.330824008138352,0.2115971515768057,0.2270600203458799,0.2305188199389623,11.28582110545814,5.713303682286493,21.025060980752404,12325.586021582669,55.79752793950936,12.413303695241954,18.648708500734912,12.346252433611763,12.389263309920729,0.5611393692777212,0.7807692307692308,0.7164821648216482,0.5716845878136201,0.1262135922330097,0.718944099378882,0.918918918918919,0.8482758620689655,0.7346153846153847,0.116591928251121,0.5051006341328922,0.7044776119402985,0.6683459277917716,0.522196261682243,0.1285714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025110618348976,0.0046827013713625,0.0066851293912373,0.0089077132467954,0.0111763090722341,0.0135916597096373,0.0158636298758232,0.0179102039149214,0.0198781136242791,0.0220447447908667,0.0245567984907053,0.02677086114477,0.0290354431942073,0.0309412188965019,0.0331754043704001,0.0353752611006555,0.0374034099148557,0.0395138355510348,0.0417307932282351,0.0436381823675902,0.0589617714643827,0.0726558818910004,0.085760466849292,0.0985426421844583,0.1109575309944605,0.1262804774805282,0.1382642118451509,0.1496260945522722,0.1605965043561922,0.1706743671769328,0.1833365681136917,0.1960034658290913,0.2083950187233301,0.2181788333150924,0.227957770512016,0.2382603878116343,0.2475548211334911,0.2564454752201031,0.2649761742682097,0.2730146730352908,0.2808243748336554,0.2878355292410662,0.2941587346687503,0.2995443098692888,0.3044709370860525,0.3093808931014507,0.3148284973639061,0.3192558755042054,0.3247741383556494,0.328784496083068,0.328160841991634,0.3277885822264521,0.3268601106469459,0.3259939280034697,0.3259433051690599,0.3246122992605747,0.3235219648056716,0.3238159386243038,0.3242337164750958,0.3255403066050363,0.3261745469537677,0.3262549027376094,0.3268238452825439,0.3275742296918768,0.3279272342268636,0.3280362632209659,0.3282681691423368,0.330579810289591,0.3357375442036343,0.3385018043383432,0.3418640529993647,0.3440546841882153,0.3465615141955836,0.3483631403455592,0.3489373654152233,0.3495419309372797,0.3524082741959837,0.3554890219560878,0.3617196056955093,0.3651748777735991,0.0,2.1117774863410763,56.498951294436274,191.1276755311889,266.1911805880579,fqhc7_100Compliance_implementation_low_initial_treat_cost,42 -100000,95723,44520,421.2049350730754,6151,63.02560513147311,4857,49.98798616842348,1935,19.74447102577228,77.32392886815877,79.68588060505631,63.31606620966248,65.06435143476548,77.08133947322783,79.44743581815342,63.22638956533415,64.97891202748704,0.2425893949309454,238.44478690288892,0.0896766443283354,85.43940727844301,143.9394,101.283558820839,150370.75728926173,105809.0101865163,370.19334,241.856677187746,386022.0114288103,251951.1373314105,361.03264,175.19691128168785,372102.7861642448,179214.82777299487,3196.09908,1461.7141911809667,3293853.1700845147,1481974.2185064887,1173.65332,518.998515547131,1204996.8032761195,521091.3631490136,1898.93438,799.6104896618664,1940009.1931928585,799682.3363461711,0.38004,100000,0,654270,6835.0344222391695,0,0.0,0,0.0,31896,332.4592835577656,0,0.0,33048,340.10634852647746,1663316,0,59788,0,0,0,0,0,66,0.689489464392048,0,0.0,0,0.0,0,0.0,0.06151,0.1618513840648353,0.3145829946350187,0.01935,0.3323497437490293,0.6676502562509706,24.64902375535458,4.321143160524093,0.3304508956145769,0.2256536956969322,0.2186534898085237,0.225241918879967,11.35347566393164,6.0522806965496105,20.57656712562713,12319.56681951228,55.01711907791706,12.971529702064108,18.072938722492857,11.736447709065382,12.236202944294709,0.5540457072266831,0.7782846715328468,0.6722741433021807,0.5932203389830508,0.1179159049360146,0.7037331215250199,0.9331619537275064,0.8556701030927835,0.6940639269406392,0.1482889733840304,0.5016675931072818,0.693069306930693,0.6138044371405095,0.5670225385527876,0.1083032490974729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024106880589909,0.0044915795557087,0.0069113199504739,0.0092462760877075,0.0114741424909468,0.0138696537678207,0.0158738250107048,0.0181897986056529,0.0203253279350571,0.0222791031022831,0.0243292289080041,0.0265303188977186,0.0286524997686827,0.0307977545449863,0.0329687338767929,0.0349475425086567,0.0370190066808224,0.0388603456328818,0.040982498466146,0.0430701270016565,0.0580276043515483,0.0718754577221652,0.0851396273109552,0.0978023133543638,0.1101187337874601,0.1261397533267046,0.1380598202633449,0.1497657580919932,0.1611604234092778,0.1710245607264229,0.1840229934550465,0.1962800756961341,0.2081077555280151,0.2181319221980473,0.2278191436710183,0.238112112688534,0.2472800312447693,0.2564333374590708,0.2655426884650317,0.2737833126920783,0.2809164551680979,0.2876561438046356,0.2947536902009603,0.3004032258064516,0.3056235016367907,0.3106975825857324,0.315582299109941,0.3203528317038661,0.3248842247272633,0.3284055748023167,0.3280389722552089,0.3258885488184851,0.3259178747370947,0.3256194517254862,0.3241767235606613,0.3226908522666339,0.3215054444163079,0.3225679465940591,0.3230572160546541,0.3232748621495744,0.3241607972426195,0.3251839544267743,0.3258518797937885,0.3252791015056939,0.3262192921248286,0.3271337646076794,0.3288236969524352,0.3339849908557735,0.3386846376402512,0.3421744324970131,0.3439170359541322,0.3464319897904924,0.3488240116022448,0.3515059092642013,0.3510930254566102,0.3558391983776691,0.3644376899696048,0.3672014260249554,0.3641449120937666,0.3733383972654766,0.0,2.972151759947895,54.49961043204458,183.84331639947575,270.1049520167198,fqhc7_100Compliance_implementation_low_initial_treat_cost,43 -100000,95796,44633,421.5416092529959,6136,62.84187231199632,4810,49.64716689632135,1942,19.87556891728256,77.4066300966336,79.74500066123836,63.35719594835807,65.08732737544597,77.16619225702217,79.50645390451736,63.26773932845538,65.00175040403514,0.240437839611431,238.5467567210071,0.0894566199026911,85.57697141083054,144.5708,101.75926646610873,150915.27829972023,106224.96395059158,370.80315,242.1424890236127,386511.5558060879,252204.63174204848,361.84865,175.44775137257338,374053.1963756316,180416.39802338823,3173.18501,1440.6982058254357,3276052.789260512,1467535.9366001056,1143.50302,501.8973149165276,1180685.508789511,510922.98730273487,1900.39538,794.2487036537951,1945860.4117082127,796521.5949711316,0.38171,100000,0,657140,6859.78537726001,0,0.0,0,0.0,31881,332.2163764666583,0,0.0,33123,342.1228443776358,1662753,0,59729,0,0,0,0,0,75,0.7829136915946385,0,0.0,1,0.0104388492212618,0,0.0,0.06136,0.1607503078253124,0.3164928292046936,0.01942,0.3336953149239838,0.6663046850760161,24.74887334737574,4.435236788353671,0.3249480249480249,0.2226611226611226,0.2272349272349272,0.2251559251559251,11.16647036723785,5.724603883246421,20.440414737663158,12357.271919724642,53.9787480247634,12.75899076174566,17.376259950377246,12.119792359974287,11.7237049526662,0.5505197505197506,0.7777777777777778,0.6852207293666027,0.5590118938700823,0.1228070175438596,0.7268370607028753,0.9194805194805196,0.8556962025316456,0.7137254901960784,0.1658986175115207,0.4884766722878021,0.6982507288629738,0.627568493150685,0.5119331742243437,0.1120092378752886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022392445336089,0.0046845531423009,0.0070326057174171,0.0090934029647541,0.0114522838457704,0.0136962587320013,0.0160274056401786,0.018139131322411,0.0201459585428676,0.022483523680871,0.0247199532657599,0.0268434338251893,0.0291276105903634,0.0312953602569513,0.033399651571536,0.035326311441553,0.0373788265965921,0.0393319579933859,0.0414532534050886,0.0435511410961186,0.0574535133668635,0.0714614403145851,0.0848305066979727,0.0975942994671515,0.1091022115455532,0.1248203567503592,0.1376601901612236,0.1499510867253626,0.1613402336872432,0.1718852099021992,0.1845004949855808,0.1967278704124224,0.2077536735936005,0.2177930190904722,0.2286395447204491,0.2395489853276385,0.2491133367535856,0.25755719183857,0.2661797892970141,0.2741287553648068,0.2806697037670836,0.2875239564343477,0.2935672376265733,0.2992083547911901,0.3049766831827455,0.311275415896488,0.31667960241356,0.3208442533268874,0.3248886125790073,0.3296983299227671,0.3287909421754953,0.3281256452256741,0.3287105548743534,0.3271715565833213,0.3271823040380047,0.3254327481803168,0.3241246487544596,0.3236520629936712,0.3250968004890972,0.3251117893392008,0.3269578847194491,0.327590953785644,0.3290123585436508,0.3308926624084748,0.3316198445905559,0.3325215679162672,0.3339470851509829,0.3386537560518507,0.3405458225727647,0.3437438384794353,0.3461642844219287,0.3484856465630761,0.3511335956529886,0.3554098854731766,0.3562355122855818,0.3594314342304555,0.3590214067278287,0.3558,0.3529087400055142,0.3543913713405239,0.0,2.203127605741371,54.78102328553626,173.1083167221875,272.8147597001935,fqhc7_100Compliance_implementation_low_initial_treat_cost,44 -100000,95689,44421,420.65441168786384,6079,62.43141844935155,4736,48.91889349873026,1843,18.842291172444064,77.29491858535671,79.69699844815221,63.29396199958445,65.07409994821188,77.06246245935208,79.46566636597966,63.20805019959796,64.99073322557771,0.2324561260046351,231.33208217255685,0.0859117999864977,83.36672263416744,142.93774,100.47069948942804,149377.3997011151,104997.12557287468,366.37803,239.4564233983316,382270.0414885724,249630.33723660145,357.50192,173.69316254891035,369482.6991608231,178340.270117781,3118.68364,1418.5473211022186,3225219.816279823,1448488.615308154,1139.20701,500.25020634751183,1177023.294213546,509280.08062317694,1808.16156,760.0744026751074,1852106.6162254803,764932.4622522972,0.38072,100000,0,649717,6789.88180459614,0,0.0,0,0.0,31587,329.52585981669785,0,0.0,32718,337.938530029575,1671715,0,60051,0,0,0,0,0,64,0.6374818422180188,0,0.0,1,0.010450522003574,0,0.0,0.06079,0.1596711494011347,0.3031748642868893,0.01843,0.3315021189766128,0.6684978810233873,24.65383605084925,4.3381573171964805,0.3091216216216216,0.2362753378378378,0.2282516891891892,0.2263513513513513,11.31714969684319,5.9700139736739,19.58077466397541,12244.08155418666,53.598359918034646,13.330234923865651,16.505453554869273,12.131655963570685,11.631015475729043,0.5646114864864865,0.7828418230563002,0.6933060109289617,0.5966697502312673,0.1287313432835821,0.7409783480352847,0.935897435897436,0.8753315649867374,0.7423076923076923,0.1636363636363636,0.5015763829177414,0.700960219478738,0.6301747930082797,0.5505481120584653,0.1197183098591549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021794884791225,0.0043634002049783,0.0066825775656324,0.0090081846372833,0.0112992049838655,0.0136067595527605,0.0158884036083105,0.0180932142784168,0.0203687031959733,0.0222600108585418,0.0244137619760786,0.0267507679031876,0.0288228030458942,0.0310522518808615,0.0330515385171192,0.03494420716258,0.0368904271414064,0.038788180817708,0.0407486007947901,0.0428284049572132,0.0570951062829686,0.0706785179601536,0.0838239152106616,0.0968193344065317,0.1090878399763678,0.1243916373947268,0.1365175396699039,0.147423339011925,0.1588237808266017,0.1692345657818501,0.1819102406653308,0.1935061562763724,0.2053188944701763,0.2158369309798349,0.2250813759127298,0.2362587474532731,0.2454813228009104,0.2541331382589612,0.2623235638122708,0.2704072273686141,0.278332966638489,0.2849801584978988,0.291285815770779,0.2971377846020969,0.3029794682907261,0.3089179049217554,0.3141160553217078,0.3187232742822236,0.3233703387418161,0.328099042797247,0.3275984988095398,0.3264725683901018,0.3263344544674144,0.3254944420384004,0.3257906458797327,0.3233830083778775,0.3217354088070253,0.3224428083092295,0.3235399682100189,0.3236598362121374,0.3239621896904892,0.3250237981913375,0.3262304039003068,0.3272837401292175,0.3275057429573207,0.3277614755816391,0.328378300968093,0.3325540250221155,0.3366984417320341,0.3404932378679395,0.342607422321878,0.3462377027386333,0.3476864966949953,0.3502704349813362,0.3524651863003387,0.3605757792053295,0.3635394456289978,0.3642451298701298,0.3689214887258897,0.3733082706766917,0.0,2.297465102510696,54.57326512010789,175.36349176527085,264.6717717454407,fqhc7_100Compliance_implementation_low_initial_treat_cost,45 -100000,95723,44273,419.60657313289386,6293,64.61352026158812,4909,50.7192628730817,1954,20.00564127743593,77.3593554540744,79.73012905778579,63.33143217950936,65.08372356424375,77.11403143650537,79.48759130784718,63.2403384713093,64.99648337508019,0.2453240175690325,242.53774993860588,0.0910937082000629,87.24018916356613,142.96678,100.62757424055964,149354.67964856932,105123.71555484018,369.59591,240.557447317436,385532.1291643597,250728.09807197427,359.78022,174.35333603839229,372731.9244068823,179710.4574479876,3231.40512,1469.9408469734317,3339861.182787836,1499692.9128562957,1166.41428,514.3410806090874,1203327.0478359433,522118.5614837475,1918.46916,810.5304621403274,1966012.0138315768,813512.480165756,0.37842,100000,0,649849,6788.8490749349685,0,0.0,0,0.0,31830,331.90560262423867,0,0.0,32907,340.6600294600044,1673337,0,60005,0,0,0,0,0,72,0.752170324791325,0,0.0,0,0.0,0,0.0,0.06293,0.1662967073621901,0.3105037343079612,0.01954,0.334500076091919,0.665499923908081,24.746371068375204,4.39761034594186,0.3194133224689346,0.2287634956202892,0.2267264208596455,0.2250967610511305,11.02279782505376,5.616999658531042,20.97996860141331,12204.733756951786,55.59599227955676,13.360695357190274,17.569456706129586,12.44485987980022,12.220980336436686,0.5593807292727643,0.7934105075690115,0.6779336734693877,0.6019766397124887,0.1104072398190045,0.7154213036565977,0.9191919191919192,0.8673740053050398,0.7276422764227642,0.1255230125523012,0.5056149000273897,0.7248968363136176,0.617968094038623,0.566320645905421,0.1062355658198614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661994084997,0.0041866453110586,0.0064639207687702,0.0085515224147386,0.01064641103078,0.0130717623464017,0.0150976094602171,0.0173325439438172,0.0194741469199157,0.02160136774537,0.0236578987848023,0.0257603303238529,0.0278406518786781,0.0298272184959663,0.0317208073636851,0.0338436411374936,0.0361934735795925,0.0381268474822382,0.0403039690625194,0.042206574726053,0.0565231919470375,0.0707497802151798,0.0843281233609566,0.0972039663929168,0.1089622591768514,0.1241788581765098,0.1362792227775832,0.148046804297137,0.1595062520038473,0.1699433379120879,0.1828604678728058,0.1949791066750384,0.2062036251278368,0.2162336667469193,0.2257336094465985,0.2353984852349216,0.2445888896334517,0.2536477258665107,0.2632373300651369,0.2718451051154265,0.280210562850697,0.2863255857456858,0.2925779679852457,0.2979889873114675,0.3030920829085967,0.3081375301709275,0.3133424276935784,0.3181754600134793,0.3223722537964605,0.3269502143092647,0.3262234893823043,0.3246513930526142,0.3238931834153197,0.3230518778903087,0.3225223088553556,0.3211569591643505,0.3197431325833478,0.3190566593564858,0.3196652862279939,0.3211825641208194,0.3209058581321355,0.3220774091627172,0.3232431298510593,0.3241012760422507,0.3269633444848251,0.3267269929851096,0.3273556664290805,0.3293609508496484,0.3320084417868448,0.3361921778836609,0.3411093357680895,0.3427642796248934,0.3458383671393145,0.348253774592039,0.3479241029494646,0.3512938674228997,0.3533891850723534,0.3546639919759278,0.3470332063146434,0.3512898330804249,0.0,2.2290761316238763,55.18194566148488,191.11417549513277,268.64493297297554,fqhc7_100Compliance_implementation_low_initial_treat_cost,46 -100000,95874,44536,420.8961762313036,6199,63.3644157957319,4834,49.679788055155726,1934,19.817677368212447,77.4394230829848,79.71856703602847,63.39129033748679,65.07678767924781,77.19781846101733,79.47937627521641,63.30236643069079,64.99129079450387,0.2416046219674683,239.1907608120647,0.0889239067959977,85.49688474394657,144.1429,101.29302305701924,150345.95406470992,105652.0310956057,369.98727,242.0957206382125,385151.5322193712,251758.03285604576,359.34725,175.20055950307932,369693.9420489392,178883.0214372913,3197.73414,1453.0583790176236,3293790.9860859043,1474124.9211800466,1163.5674,514.904166149342,1197174.5102947615,520657.9816312717,1893.46944,792.6396232143651,1942932.3487076787,798925.4580216985,0.38022,100000,0,655195,6833.907002941361,0,0.0,0,0.0,31825,331.1429584663204,0,0.0,32955,338.6215240836932,1669017,0,59988,0,0,0,0,0,83,0.8552892337860108,0,0.0,0,0.0,0,0.0,0.06199,0.1630371889958445,0.3119858041619616,0.01934,0.3305110837438423,0.6694889162561576,24.66723364956357,4.422501557940788,0.3369880016549441,0.2184526272238312,0.2192800992966487,0.2252792718245759,11.143237397278494,5.768553203186895,20.67919170214662,12243.785609692695,54.55096343244973,12.476070236769951,18.43545638283382,11.751583152572376,11.887853660273578,0.5577161770790235,0.7897727272727273,0.6961325966850829,0.5613207547169812,0.1221303948576675,0.7285601888276947,0.935656836461126,0.8393665158371041,0.7068965517241379,0.1875,0.4967723828234633,0.7101024890190337,0.6427969671440606,0.5205314009661836,0.1052023121387283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025308766956873,0.0047529287770075,0.0069385974700494,0.0091279229152494,0.0113836177543781,0.0134307401151787,0.0158390628978864,0.0179518563851489,0.0200849985697356,0.0222795065365494,0.0243245181716651,0.0264308140608647,0.0285878701933945,0.0305937577204974,0.0328254190808057,0.0349217822293355,0.0369538904004717,0.0389796087533156,0.0408417511913042,0.0426831171263016,0.057528534945536,0.0716882954046768,0.0847652855003717,0.0974413892301069,0.1097940965935407,0.1254803834621394,0.1365355081290049,0.1480226108761714,0.158737941693759,0.1695896420737253,0.1823937227924974,0.1943847292290075,0.2052936257100344,0.2156747072190176,0.2250574434635385,0.2355772955146578,0.2455557660800463,0.2546138725077225,0.2635615879633826,0.2715995746967428,0.2790584865564076,0.2851921482536754,0.292334062296826,0.2974904815497713,0.3031575880446263,0.3082977177273343,0.3129682204184749,0.3177358682391216,0.3222927794518953,0.3273711523517247,0.3264529489282737,0.3255315641997692,0.3248281388385137,0.3239475241380306,0.3235067208688169,0.3230009328215558,0.3207538220739593,0.3209506494357361,0.3221566889404064,0.3237959583370426,0.3242056074766355,0.3247106606991463,0.3251718302797334,0.3256046816937762,0.327244034240352,0.3284478054104623,0.3296426346491476,0.3329171608714651,0.3359676913971381,0.3393483314290217,0.3425239558850118,0.3475619419937661,0.3512463985970186,0.3520097442143727,0.3547287702357284,0.3586165772212283,0.3622425274895462,0.3666734986677598,0.3703498056635202,0.3644646924829157,0.0,2.7543178649397064,54.848024036059215,178.54397121885688,270.39711848869075,fqhc7_100Compliance_implementation_low_initial_treat_cost,47 -100000,95741,44212,417.40738032817706,6263,64.21491315110559,4899,50.61572367115447,2021,20.785243521584277,77.34647984393533,79.69834720765388,63.33814763576003,65.07513732507908,77.09012765758533,79.44269355269974,63.24204346303828,64.98178915202213,0.25635218635,255.65365495414483,0.0961041727217519,93.34817305695252,143.49016,100.9014910219111,149873.26223874828,105390.0533960488,366.95278,239.48049787236565,382722.323769336,249585.57180182025,356.61965,173.70916609374154,369248.8380108835,178960.5463610164,3245.25839,1490.702306886598,3353938.9080958003,1521955.4980187663,1173.13347,527.2990058862736,1208583.0417480494,534230.738251925,1978.46236,840.7996381911503,2035361.7154615056,850042.5851360234,0.37821,100000,0,652228,6812.421010852195,0,0.0,0,0.0,31585,329.31554924222644,0,0.0,32712,338.4443446381383,1670583,0,59996,0,0,0,0,0,55,0.5640216835002768,0,0.0,0,0.0,0,0.0,0.06263,0.1655958330028291,0.3226888072808558,0.02021,0.3239951278928136,0.6760048721071864,24.658266323258395,4.420862242622281,0.3043478260869565,0.2284139620330679,0.2412737293325168,0.2259644825474586,11.136289695022532,5.665699007289524,21.69925628819588,12281.212702801444,55.68329325844831,13.365254238447625,16.902023135785484,13.132577595330686,12.283438288884517,0.5499081445192896,0.7685433422698839,0.6780684104627767,0.5939086294416244,0.1093044263775971,0.7011152416356877,0.8978622327790974,0.8530183727034121,0.6993006993006993,0.1556420233463035,0.4926842993809792,0.6905444126074498,0.618018018018018,0.5602678571428571,0.0952941176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002602795219769,0.0050583381483846,0.0071645304999949,0.0094776619735478,0.0114609392478695,0.0138153608079491,0.0160040774719673,0.0183508711050327,0.020330978933058,0.0224627071964616,0.0247132504433214,0.0269537905692525,0.0291160323237308,0.031393229032557,0.0333357407426513,0.035173126614987,0.0373031567395198,0.0392783408895205,0.0413301317034126,0.0434547121073243,0.0582984454443899,0.0721664590812513,0.0851474553332563,0.097572003911713,0.1094698886639676,0.1255154039709893,0.1371679538317915,0.1481134585705923,0.1583425862658011,0.1682869055402523,0.1819366091038284,0.1933812794030173,0.2052583527161272,0.2159586443567689,0.2254064571447416,0.2356184402816527,0.2451815829392344,0.2544325443254432,0.263687125476666,0.2714847106538501,0.2783601777284087,0.2853784068312083,0.2923352002936614,0.2984442658542144,0.3036239457501883,0.3087813112209066,0.3137370272537212,0.3189269746646795,0.3233264141152049,0.3275002973790988,0.3272862152684111,0.3268624020060346,0.3262715450365313,0.3255669237782376,0.3248887367339952,0.3237672841116619,0.3218190461099667,0.3222415662056959,0.3235777085970374,0.3250781738586616,0.3263453965872867,0.327815355405245,0.3292175885095124,0.3304429656516771,0.3305934532131321,0.3326694793113388,0.3342114305348757,0.3374215720276192,0.3414574101427868,0.3432154621581934,0.3460800438596491,0.3493384549722578,0.3534113796576032,0.355969750210068,0.3598334279765285,0.3606165611184131,0.3662166308683645,0.3689260922825643,0.3673986486486486,0.3722943722943723,0.0,2.1137141531428085,59.15336216868121,181.4611596106258,266.3277085213273,fqhc7_100Compliance_implementation_low_initial_treat_cost,48 -100000,95744,44624,422.2927807486631,6249,64.06667780748663,4873,50.3634692513369,1939,19.90725267379679,77.41222784566315,79.76848056752682,63.350809200748486,65.08979855541797,77.1689833809658,79.52420725495065,63.261264771477215,65.0018379970837,0.243244464697355,244.27331257616916,0.089544429271271,87.96055833427374,144.71556,101.7675414863467,151148.4375,106291.29917942296,371.9902,242.77638503666213,387980.3434157754,253028.2298754865,364.62128,177.14053276913103,377174.0056818182,182272.0459167586,3199.55373,1462.5825481766185,3308117.0203877003,1494524.5257752012,1170.47752,519.9532921905899,1209179.8546122997,529738.6073180452,1897.66226,795.3553617079533,1949639.517881016,805227.5909016662,0.38139,100000,0,657798,6870.383522727273,0,0.0,0,0.0,32057,334.255932486631,0,0.0,33395,345.2435661764706,1661871,0,59588,0,0,0,0,0,66,0.6684491978609626,0,0.0,0,0.0,0,0.0,0.06249,0.1638480295760245,0.3102896463434149,0.01939,0.3396864432831232,0.6603135567168767,24.669019981488777,4.3592667439866135,0.3209521855120049,0.2316847937615432,0.2220398112045967,0.2253232095218551,11.415595510177775,6.004956172631835,20.65570723331613,12329.193398602092,55.25054290114665,13.541811388734905,17.64655720165246,12.082742099160653,11.979432211598644,0.5548943156166632,0.7971656333038086,0.6758312020460358,0.5683918669131238,0.1202185792349726,0.7389312977099237,0.926829268292683,0.8605200945626478,0.749034749034749,0.1376146788990825,0.487229862475442,0.7232267037552156,0.6073619631901841,0.511543134872418,0.1159090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065424346769,0.0043987229514012,0.0067767723085663,0.0091396539117718,0.0114376925344909,0.0136814780882577,0.0157673726481439,0.0179178188422803,0.0202246272393741,0.0222517911975435,0.0245859637615807,0.0264022337193068,0.0284151657208652,0.0303691879923793,0.0327503482433059,0.0347101629041594,0.0367693502459228,0.0389060651961903,0.0409514799297202,0.0428967270151461,0.0575640209209825,0.0715795421253086,0.0850063985566534,0.0983947994025203,0.1101204920973221,0.1255357199547085,0.138407496630549,0.1495086295929557,0.1609463156095059,0.1708055203794724,0.1841143559393292,0.1964270246860112,0.2081940982464542,0.2186412103430911,0.2284499377595646,0.2386038464097957,0.2481224854716137,0.2564758086314082,0.2655054163922513,0.2729794795368566,0.2803441766742713,0.2870467897853615,0.2940898009420341,0.3003953042644945,0.3055916459231376,0.3107873443600133,0.3154190419041904,0.3203124007873515,0.3251437060001291,0.3295746108603834,0.3288467215974663,0.3278115272273494,0.3272068631442973,0.3260982284315137,0.3256223023709572,0.3244955455722226,0.3230301694274737,0.3228855477741319,0.3230821510491887,0.3243919758565595,0.3249543812609392,0.3260617722712011,0.3268921767074977,0.3279530447542186,0.3290584998205527,0.3310954429986002,0.3326538123955944,0.3346439493228484,0.3376550954970026,0.3417945690672963,0.3449943502824859,0.3473139295335692,0.3487266128527626,0.3503588968643747,0.3545209553015519,0.3586482985988461,0.3571753295953932,0.3661377786704157,0.3733260453675868,0.3674952198852772,0.0,2.018306562235382,57.758299696231205,185.0836319841028,261.71613715324725,fqhc7_100Compliance_implementation_low_initial_treat_cost,49 -100000,95739,44400,420.1109265816438,6000,61.56320830591504,4712,48.736669486834,1867,19.20847303606681,77.32373385663094,79.69503419306605,63.321321634088775,65.07578992639009,77.09326782379387,79.46427735095905,63.23468393112543,64.99123096130947,0.2304660328370715,230.7568421069988,0.086637702963344,84.55896508061755,144.93842,101.93542667604768,151389.1099760808,106472.20743484648,369.29141,241.44595943450776,385248.56119240855,251713.1675017577,354.52804,172.0813745404247,367404.9133581926,177457.70890601742,3103.59312,1417.5765734202116,3209712.342932347,1448657.23834614,1105.21259,491.1924152575661,1140054.6381307512,498706.62452873547,1831.29752,775.5452850246528,1883986.5467573295,784440.9006615783,0.37934,100000,0,658811,6881.323180730945,0,0.0,0,0.0,31798,331.63078787119144,0,0.0,32477,336.37284701114487,1662250,0,59661,0,0,0,0,0,74,0.7729347496840367,0,0.0,0,0.0,0,0.0,0.06,0.1581694522064638,0.3111666666666666,0.01867,0.3261631612492033,0.6738368387507967,24.772534769192,4.525877635517654,0.314516129032258,0.2249575551782682,0.2345076400679117,0.2260186757215619,11.075650868464226,5.5254619103284766,20.060567352181767,12258.387713811228,53.43024916307055,12.525050973715318,16.880916519831377,12.325631095445926,11.698650574077933,0.5543293718166383,0.7783018867924528,0.7078272604588394,0.5746606334841629,0.0967136150234741,0.7105678233438486,0.9216216216216216,0.8522167487684729,0.7131782945736435,0.1282051282051282,0.4968060394889663,0.7014492753623188,0.6533457249070632,0.5324675324675324,0.0878459687123947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721377912867,0.0046751244840629,0.0069935038570848,0.0093896713615023,0.0116087416571707,0.0136906762827369,0.0159507200261085,0.0179138623063331,0.0202877506569999,0.0223257719289262,0.0245000512767921,0.0263841674454908,0.0284453314678408,0.0306368507831821,0.0328963666391412,0.0350253282332265,0.0370262964382256,0.0390517196659231,0.0408093242807681,0.0427207935647897,0.0575927163381222,0.0717440448779671,0.084079012242072,0.0970989186687423,0.109508293526515,0.1245783769495109,0.136728198599618,0.1481639124466625,0.1589734278879015,0.1687808958040683,0.1820903236922016,0.1946533089547878,0.2067229266807316,0.2175239469885841,0.2275162543042277,0.2380709816732185,0.2473741721115893,0.255900690894793,0.2645208104216505,0.2727501573316551,0.2802648608671536,0.2869211624075437,0.2926448684303851,0.2987387862164784,0.3039656135408825,0.3093483511608419,0.3138349818454989,0.3184897491404558,0.3233616756532559,0.3280023224205956,0.3271432034258935,0.3269606897881601,0.3264664410603496,0.3252992863450152,0.3236554659364862,0.322477317312408,0.3204473197197134,0.320510297783025,0.3210869972893261,0.3216169970055611,0.3220945035195447,0.3222292515123957,0.323101133025598,0.3233739473212685,0.3242195027943727,0.3251907200334413,0.3261547261547262,0.3296380519234413,0.3306761666255158,0.3349852130125489,0.3369111508646392,0.3385101483425266,0.3401243970550901,0.3429973922380733,0.3491914253478751,0.3535353535353535,0.3560812860175917,0.3603312462128862,0.3625715064015254,0.3612705702257941,0.0,1.8956572881171327,55.86247574202525,171.36997167005717,264.0668130543747,fqhc7_100Compliance_implementation_low_initial_treat_cost,50 -100000,95784,44624,421.9493861187672,6079,62.35905788023052,4769,49.23578050613881,1900,19.51265347030819,77.38153749659537,79.72272681839608,63.350937847410606,65.08288641811978,77.14465988821038,79.48496759316511,63.26378892004141,64.99698605860141,0.2368776083849866,237.75922523097395,0.0871489273691992,85.90035951837649,143.94424,101.30147065565568,150279.81708844902,105760.09631635314,370.88239,242.27439293435935,386672.1268687881,252403.35852998347,358.1198,173.7968559144858,369892.6125448927,178377.7304422157,3145.82996,1429.2481904457231,3251264.449177316,1459126.1280023009,1127.03059,496.57060408423257,1161581.3705838136,503470.491125816,1866.0314,781.0434084671203,1919117.4100058463,792813.3058195643,0.3823,100000,0,654292,6830.900776747681,0,0.0,0,0.0,31950,332.9992483086945,0,0.0,32816,338.6056126284139,1667412,0,59765,0,0,0,0,0,60,0.6264094211976948,0,0.0,0,0.0,0,0.0,0.06079,0.1590112477112215,0.3125514064813292,0.019,0.3288380116042026,0.6711619883957974,24.76013148354763,4.428776206862284,0.3155797861186831,0.2302369469490459,0.2254141329419165,0.2287691339903543,11.151431505151102,5.736109836319618,20.126259045303883,12354.036492542988,53.80944140443124,13.05053359398184,16.848383374694404,11.89276816779643,12.017756267958577,0.5481232962885301,0.7650273224043715,0.693687707641196,0.5665116279069767,0.1109074243813015,0.7003257328990228,0.9124668435013262,0.8622589531680441,0.6963562753036437,0.1286307053941908,0.495340299350466,0.6879334257975035,0.6401050788091068,0.5277777777777778,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597804290141,0.0044904413404423,0.0067063025039568,0.0089068990382174,0.011082416576855,0.0133045593819029,0.0156562155991356,0.0178711764765919,0.0200903349751681,0.0223463687150838,0.0245424548603283,0.0267598694340087,0.0289738844334772,0.0309089411473992,0.0330885386583051,0.0350150330106315,0.0370761286851064,0.0391301193079929,0.0410529158789188,0.0429767209428226,0.0577990650304699,0.0721800422496914,0.0855372810465738,0.0984932859814655,0.1102997734576682,0.1262390362464334,0.1386775458302426,0.1504385265507893,0.1617261028234842,0.1724185976720756,0.1848260125499144,0.1968528632455523,0.2082921262837581,0.2187657072925544,0.2290399568865963,0.2386034051409214,0.2477086724795397,0.2571210179627257,0.2657972329326378,0.2729259640691154,0.2798283460377315,0.2868968420068047,0.2931773002650511,0.2986258371371407,0.3046080990832372,0.3104811398593648,0.3154645102425977,0.3199938961583947,0.3250168228169159,0.3303057067904082,0.3307150158713079,0.3302363936228697,0.3298323172877919,0.3284519734846843,0.3268810814825819,0.3248374512353706,0.322385984866436,0.3232901821514491,0.3238221632382216,0.325083183573246,0.3264051139231042,0.3272275077967707,0.3281361182035076,0.3299993287239041,0.3312750774849234,0.3327425324506073,0.3330582275599066,0.3363624968663825,0.3374130153512606,0.3409315762396612,0.342597638510445,0.3476301558689428,0.3506935687263556,0.3573335367248875,0.3617001225143719,0.3679848448969927,0.3715505412410428,0.3739903069466882,0.3781838316722037,0.3857087975412985,0.0,2.1233852013546266,53.91444618868996,180.03992581430765,264.8717704759816,fqhc7_100Compliance_implementation_low_initial_treat_cost,51 -100000,95849,44490,420.4425711275026,6229,63.704368329351375,4825,49.68231280451543,1897,19.426389425033125,77.37299817448195,79.67546203147198,63.35320242165369,65.05766382974335,77.14287494322875,79.44739971402325,63.2675170457156,64.97537980510614,0.2301232312532022,228.06231744873173,0.0856853759380911,82.28402463720386,142.99428,100.5888081390326,149187.03377187034,104945.07834096612,366.42564,239.33683111608372,381650.2936911184,249057.56045037895,357.86826,173.77402500511064,369142.8183914282,178073.2887913386,3182.64752,1444.8303189582757,3279499.7130903816,1466566.1649948256,1144.99024,498.31361798286247,1178162.881198552,503538.93672897824,1868.213,778.4285306106528,1915088.2951308829,782617.4523415619,0.38082,100000,0,649974,6781.228807812287,0,0.0,0,0.0,31495,327.9116109714238,0,0.0,32795,337.89606568665295,1674399,0,60068,0,0,0,0,0,59,0.6155515446170539,0,0.0,1,0.0104330770274076,0,0.0,0.06229,0.1635680899112441,0.3045432653716487,0.01897,0.3348166334202854,0.6651833665797146,24.73592934946482,4.392572885494696,0.3394818652849741,0.2194818652849741,0.2136787564766839,0.2273575129533678,11.06480470017587,5.607462259502303,20.15546433910204,12271.56750334174,54.39250854466348,12.687855697876904,18.33690550845481,11.456448277479756,11.911299060852,0.5589637305699482,0.789423984891407,0.6941391941391941,0.5732298739088264,0.121239744758432,0.7203525641025641,0.8992248062015504,0.850356294536817,0.6982758620689655,0.1490384615384615,0.5026558568632933,0.7261904761904762,0.6400986031224322,0.5369211514392991,0.1147356580427446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0043783635866095,0.0065224227300853,0.0086205145909063,0.0108675761950267,0.0130598534201954,0.0152273399039882,0.0173284756452254,0.0196180608772951,0.0218347760247201,0.0240766354182675,0.0263576389957626,0.0284158059709161,0.0304368412384716,0.0324728877159704,0.0344094016564429,0.0365323732075237,0.0386938995450824,0.0408631629230401,0.0427513161454106,0.0570367975975725,0.0705686876920183,0.0834119052108869,0.0964022430848717,0.1085344791271746,0.123831454858507,0.1361603831563778,0.147764240607259,0.1590300235876746,0.1693687515403491,0.1829129180835952,0.1961176381578236,0.2074358249831547,0.2175419800594717,0.2276538156852389,0.2376838561049087,0.2473922017069225,0.2567024807335321,0.264919743633373,0.2721953788728846,0.2792663605981058,0.285802859081444,0.2932083422105437,0.2998550325278253,0.305041527028996,0.3104017543643509,0.3153223080486247,0.3190677319220396,0.3239174056573241,0.3287228285974475,0.3280446084637556,0.3268346413327826,0.3259572667653903,0.3250683524527319,0.3241186611973128,0.3235712864163133,0.3225668618452287,0.3233581073321192,0.3239996587321901,0.3244024775538618,0.3247253878253709,0.3260680723367291,0.3268349823247641,0.3263244737780949,0.327513949756927,0.3287845705967976,0.3313295917495228,0.3330925763095088,0.3368373103472441,0.3386128446164784,0.3422085834198294,0.3451444262554787,0.3466390510261721,0.3512072511234671,0.3486031417552441,0.346104125044071,0.344927536231884,0.3527975584944048,0.3525658807212205,0.3553183377811666,0.0,2.5659110176378936,54.244528645042166,178.19839043218653,272.21391253815705,fqhc7_100Compliance_implementation_low_initial_treat_cost,52 -100000,95790,44040,416.4735358596931,6159,63.08591711034554,4840,49.93214322998225,1890,19.375717715836725,77.39816222968327,79.72631261907952,63.35848721039546,65.07898404214352,77.17037995789195,79.4995056952051,63.27314065255985,64.99636820254696,0.2277822717913125,226.8069238744204,0.0853465578356065,82.61583959655638,143.84304,101.21057608430996,150164.98590667083,105658.81207256492,368.63301,239.63523766488845,384261.5826286669,249594.6122679813,356.77401,172.57116543804634,367864.9128301493,176795.70264431342,3174.47943,1438.8307898494668,3280563.534815743,1468654.2827072705,1180.13667,519.7644189234486,1219262.8666875458,529896.2542915682,1859.90846,779.0081414369139,1909821.463618332,787601.6953255085,0.3771,100000,0,653832,6825.681177575947,0,0.0,0,0.0,31788,331.24543271740265,0,0.0,32693,336.74705084038,1671728,0,59939,0,0,0,0,0,66,0.689007203257125,0,0.0,0,0.0,0,0.0,0.06159,0.1633253778838504,0.3068679980516318,0.0189,0.3335392217418159,0.6664607782581841,24.6783416070383,4.381242364621585,0.3221074380165289,0.227892561983471,0.2241735537190082,0.2258264462809917,11.32767971088551,5.932274972033636,20.060792674008862,12248.162230458838,54.58752844780773,13.201903227729574,17.526881799104295,11.841897690114706,12.016845730859156,0.5574380165289257,0.7833182230281052,0.7036561898652983,0.56036866359447,0.1180237877401646,0.722397476340694,0.9121140142517816,0.8666666666666667,0.7161572052401747,0.131578947368421,0.4988801791713326,0.7038123167155426,0.649272882805817,0.5186915887850467,0.1144508670520231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022482834052378,0.0044085454840278,0.0065941646715091,0.0088248436103663,0.0110506785950287,0.0133327905225232,0.0154379171549396,0.0175080602375219,0.0195956231673801,0.0216799672600777,0.0237170752696984,0.0259412422653436,0.0278711268691228,0.0299403046521202,0.0325271145201864,0.0344749235726679,0.0365389390052139,0.0385217598689326,0.0403225806451612,0.0423318441688275,0.056585661070359,0.0706045996004894,0.0839134446028684,0.0970982963920505,0.1093962490907365,0.1242692376814352,0.1366418124158119,0.148343637930851,0.1588132262474367,0.1699424196609515,0.1828549889612837,0.1947650208209399,0.2063016079965232,0.2169980336464933,0.2270234628276279,0.2373175778094953,0.2469892952720785,0.2554091134002069,0.2638247671767414,0.2718621163536417,0.2790264770493699,0.2863321293731224,0.2927412387118154,0.2989359662576687,0.3038374224563874,0.3091036707754067,0.3146089891854722,0.3186348036100165,0.3229305546566565,0.3268807278960902,0.3267915791740698,0.3255692443075569,0.3249922550483003,0.3238830747022735,0.3227838719241032,0.3213903743315508,0.3196739439512179,0.3202423845397969,0.3213840877680902,0.3216111734630253,0.3226819150128938,0.324273109492509,0.3265169573035587,0.3292655769830312,0.3300755113744982,0.3312658950537188,0.3328339222614841,0.3353426197763758,0.3377382111559326,0.3416915579311429,0.3453829796860154,0.3496246522127146,0.3518162061471592,0.3540723981900452,0.3530399104811637,0.3563164108618654,0.3560628968853946,0.354175070592981,0.3537995594713656,0.3501326259946949,0.0,2.307203281999856,55.42148630743935,178.6559743490291,270.342996532066,fqhc7_100Compliance_implementation_low_initial_treat_cost,53 -100000,95888,44685,421.5647421992324,6194,63.5950275321208,4892,50.54855664942433,1924,19.710495578174537,77.3584022892406,79.64254156662837,63.35300198276878,65.04247994188177,77.12556911831963,79.41032986085233,63.2666375056255,64.95871269926116,0.2328331709209692,232.211705776038,0.0863644771432774,83.76724262060975,143.121,100.77320672901752,149258.50992824964,105094.7008270248,367.34713,239.7682449493685,382622.94551977306,249573.6341202321,363.89112,176.14105231764108,377195.4572000668,181761.0603609235,3187.44371,1445.417584038122,3294207.857083264,1477540.652168581,1149.21816,499.1488114709217,1183519.2307692308,505749.5941060927,1878.26158,779.5301478710911,1926351.4725513095,784371.4837771782,0.38199,100000,0,650550,6784.477724011346,0,0.0,0,0.0,31593,328.97755715000835,0,0.0,33349,345.4864008009344,1671652,0,60004,0,0,0,0,0,65,0.6674453529117303,0,0.0,0,0.0,0,0.0,0.06194,0.1621508416450692,0.3106231837261866,0.01924,0.3256422088909398,0.6743577911090601,24.596610131706885,4.307349279690304,0.3152085036794766,0.2434587080948487,0.2266966475878986,0.2146361406377759,11.13084474369426,5.873532489318437,20.32235454499288,12343.955767346284,55.46342005066118,14.184304778881351,17.392639285357838,12.509068111537529,11.377407874884476,0.5764513491414555,0.7867338371116709,0.7127107652399481,0.6005410279531109,0.1123809523809523,0.72890625,0.9142857142857144,0.8621553884711779,0.7019607843137254,0.1262135922330097,0.5224252491694352,0.7172503242542153,0.6605424321959755,0.5702576112412178,0.1090047393364928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0047218084729103,0.0069681816798693,0.0092700707693244,0.0116080504167513,0.0139630975279618,0.0158115652634581,0.0180937324697842,0.0202873099660006,0.022582524867357,0.0245785007216927,0.0269422402657316,0.0291269115819528,0.0312509643771923,0.0333374554298316,0.0355892829487378,0.037632795771224,0.039590415388442,0.0414568037136655,0.0435185185185185,0.0583673001344772,0.0719494358545758,0.0854494999738206,0.0977835176027131,0.1102158182450153,0.1259242827565808,0.1374903298962517,0.1490563028337498,0.1606553877354966,0.1706937952917971,0.1843711975190325,0.1965883154672406,0.2080357434041026,0.2188845893181172,0.2290642831227942,0.239680853418321,0.2497323221057327,0.2591722230342826,0.2676355138066389,0.2741521539871677,0.2809415250020252,0.2878736472652822,0.2943956226164815,0.3001079395538498,0.3051317277181379,0.3109348399990131,0.3148438185212565,0.3195051409787608,0.3242415591830379,0.3282956498743885,0.3271658215557234,0.3257823157372576,0.326376942384162,0.3252813376920184,0.3244059575354491,0.32365438007148,0.3220752862080994,0.3222518167768242,0.3239099185433637,0.3252383843434163,0.32609999250431,0.3264987345776653,0.3272959771922101,0.3283348604375712,0.328780300115429,0.3298939598710885,0.3317041288965929,0.3352231793265466,0.3398489404853486,0.341477902740377,0.3456514813634915,0.3483942648537114,0.3505978602894902,0.3504332489839736,0.3495016611295681,0.3529482406629038,0.3599875544492844,0.3559183673469387,0.359504132231405,0.367816091954023,0.0,1.8287915878485088,56.60238477082296,185.0514837377381,270.87207048851207,fqhc7_100Compliance_implementation_low_initial_treat_cost,54 -100000,95725,44290,418.7829720553669,6262,64.2674327500653,4895,50.46748498302429,1965,20.17236876469052,77.38965647392791,79.75645012054251,63.34469261111818,65.09387275709516,77.14943745156448,79.51676312827833,63.256358073188046,65.00790654682359,0.2402190223634335,239.68699226418263,0.0883345379301374,85.96621027156459,143.95568,101.196171935624,150384.39279185166,105715.3405090792,370.42018,242.26502846605487,386244.8681117785,252372.28632446844,365.11547,177.46836188461418,376673.3246278401,181827.1121325363,3215.57646,1475.7246987797448,3318471.914337947,1501420.2554363268,1181.26517,524.9309241685766,1216573.1000261165,531266.8691129395,1919.21612,803.2681294232051,1971298.971010708,811935.2487036157,0.37816,100000,0,654344,6835.65421781144,0,0.0,0,0.0,31838,331.8568816923479,0,0.0,33431,344.52859754505096,1667328,0,59852,0,0,0,0,0,78,0.8043875685557588,0,0.0,0,0.0,0,0.0,0.06262,0.1655912841125449,0.3137975087831364,0.01965,0.3263846622032866,0.6736153377967133,24.83952532444442,4.372471080537292,0.3246169560776302,0.2294177732379979,0.2253319713993871,0.2206332992849846,11.286621405686844,5.866445176094675,20.98637742898022,12222.26394759572,55.67145103494772,13.44221697130584,18.02315113873477,12.274999649482844,11.93108327542428,0.5675178753830439,0.7845057880676759,0.6998112020138452,0.5847688123300091,0.1296296296296296,0.7338345864661654,0.9002433090024331,0.8785046728971962,0.7394636015325671,0.1608695652173913,0.5054698457223001,0.7176966292134831,0.6339362618432386,0.5368171021377672,0.1211764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002663884612268,0.0047849315207363,0.0070936380519388,0.0094276367921653,0.0118404589703683,0.0141847582583194,0.0161906995238629,0.0183848674472494,0.0204636519748139,0.0228163737422333,0.0250722647040734,0.027102774954572,0.029000257003341,0.0310044792256603,0.0330263117180489,0.0349838257939829,0.037132531867085,0.0389882557994771,0.0411690727864218,0.0429382651732221,0.0579667776861316,0.0716633174244327,0.0851903143228838,0.0977223712587449,0.1093787909155159,0.1254111450720759,0.1376270395281237,0.1493604614042182,0.1599196984420216,0.1694242791425844,0.1822791624051246,0.1943819495522,0.2065531711347379,0.2173337852464931,0.2268036700477458,0.2375358451710049,0.2472347352928058,0.2561601815750738,0.2633601632467974,0.2711143141494217,0.2778921081231068,0.2851099138686643,0.2914657780298733,0.2964151056316955,0.3026394029488501,0.3078107106355207,0.3127790771847756,0.3174482048151398,0.3218860795528066,0.3262684480552881,0.3255382131324004,0.325102824050511,0.3239773655020973,0.3224818741153701,0.3211658261643429,0.3192667003042674,0.3170673912356639,0.3173673272349408,0.3186895390945102,0.3193269845782105,0.320611682312621,0.3206600841823689,0.3200341858962333,0.3208764319875431,0.3211645654410182,0.3222548230467634,0.3243212573406338,0.3273794575590156,0.3291774952588326,0.333412935323383,0.3351917013206599,0.3372012191861397,0.3410437413336695,0.3419209039548022,0.3480959881404614,0.3509716693982674,0.3528879505353642,0.3553077076279625,0.3556338028169014,0.3563044301400984,0.0,2.48403309297672,58.203263864022894,185.1311727785293,263.4525603698795,fqhc7_100Compliance_implementation_low_initial_treat_cost,55 -100000,95763,44432,420.4024518864279,6224,63.86600252707204,4896,50.56232574167476,1951,19.95551517809592,77.34687979821054,79.70618341353571,63.33382307926016,65.08143309371961,77.10227626351512,79.46415559857248,63.24187992478799,64.9934679373983,0.2446035346954147,242.02781496323664,0.0919431544721689,87.9651563213173,143.49522,100.92271918618694,149844.11515929952,105388.00913315888,370.05335,241.22971074180975,385861.7733362572,251338.85518541088,360.64371,174.52133677401346,373600.2840345436,179939.89934681228,3253.18176,1480.206318634147,3358522.6966573726,1507153.846012296,1168.84269,516.2734701929522,1202329.18768209,520914.0815657218,1924.20356,813.992529060954,1968938.3791234607,814132.0887567274,0.3795,100000,0,652251,6811.096143604524,0,0.0,0,0.0,31914,332.6754592065829,0,0.0,33048,342.11543080312856,1669877,0,60038,0,0,0,0,0,52,0.5325647692741455,0,0.0,0,0.0,0,0.0,0.06224,0.1640052700922266,0.3134640102827764,0.01951,0.3380821078431372,0.6619178921568627,24.518745604069515,4.411811500843104,0.326797385620915,0.2220179738562091,0.2195669934640522,0.2316176470588235,11.0468325419816,5.576915602926419,20.88233814972088,12238.840135532786,55.64058862680836,13.01007338885146,18.22125248991207,11.916713414091966,12.49254933395286,0.5533088235294118,0.8160073597056118,0.693125,0.5469767441860465,0.1102292768959435,0.7129629629629629,0.9405684754521964,0.8073394495412844,0.7154811715481172,0.1581196581196581,0.4958333333333333,0.7471428571428571,0.6503436426116839,0.4988038277511962,0.0977777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0042692572912018,0.0064060913705583,0.0086181489273046,0.0107939285423618,0.0130038084764057,0.0150779896013864,0.0172927725602286,0.0194332563227085,0.0215526067903509,0.0235397849021397,0.0256181205848529,0.0279514603044014,0.0300186457614372,0.0322524047392973,0.0341968697665763,0.0364206863699438,0.0383953025147315,0.0405222778967503,0.0426342865473934,0.0568771332839263,0.0705924197884738,0.0840000419423502,0.0963472959478635,0.1089128739169846,0.1250871890258079,0.1372145779888481,0.1488707893841442,0.1606959972689255,0.1705801696803496,0.1839336431706687,0.1958605782221021,0.2064735538267634,0.2158327599200498,0.2255636619346899,0.2353487960339943,0.2445718236665142,0.2539636134661659,0.2627008989376191,0.2711984787041492,0.2784946360995706,0.2856557808642336,0.2915769039558722,0.2973747302805082,0.3027900539070468,0.3080662629842958,0.3131404121157527,0.3179534789078099,0.3231012125839556,0.3279025624802277,0.3274676783576166,0.3271601541001651,0.3262427322512072,0.3252389339647157,0.324896080760095,0.3234155225982215,0.3214822550276103,0.321608040201005,0.3227901095333299,0.323085163363685,0.3233000974585801,0.3240356083086053,0.3265066554868462,0.3276367953053956,0.3280237125575342,0.3298896270335303,0.3302382720987372,0.3332175560467319,0.3370253164556962,0.3387507966857871,0.3441519798580911,0.3459427779849752,0.3481640649687164,0.3531830642704843,0.3565477862023776,0.3591081593927894,0.3617479612248038,0.3716577540106952,0.3766233766233766,0.383054892601432,0.0,2.151522056626507,57.07616655288341,187.53876146917037,266.2396593421238,fqhc7_100Compliance_implementation_low_initial_treat_cost,56 -100000,95750,44181,419.2584856396867,6146,62.87206266318538,4838,49.911227154047,1921,19.62402088772846,77.36211040614715,79.72288813242557,63.32787542470121,65.07511884764608,77.13535984381414,79.49903825962855,63.24406119243218,64.99510732159052,0.2267505623330095,223.84987279701815,0.0838142322690274,80.01152605555717,143.91366,101.14842386418306,150301.24281984335,105637.81771716244,363.70487,236.6966494791725,379230.40208877285,246585.18243255615,353.42088,171.45770761207856,364856.87728459534,175817.2692446368,3180.17797,1441.345331247171,3283307.8851174936,1467325.3687176704,1169.66027,512.5846709181953,1204314.91383812,518211.302997224,1888.39074,782.25600571585,1931678.182767624,783472.9261524997,0.37972,100000,0,654153,6831.874673629243,0,0.0,0,0.0,31338,326.6527415143603,0,0.0,32450,334.8093994778068,1671769,0,60052,0,0,0,0,0,70,0.7101827676240209,0,0.0,2,0.02088772845953,0,0.0,0.06146,0.1618561044980511,0.3125610152945005,0.01921,0.3284184386155517,0.6715815613844482,24.445381713525908,4.466081919107326,0.3261678379495659,0.2277800744109136,0.2205456800330715,0.2255064076064489,11.431692336237738,5.7759087862006,20.314259431430145,12244.600990519992,54.56673261829367,13.18636491391056,17.774420580607696,11.827184819705858,11.77876230406956,0.5661430343116991,0.7976406533575318,0.6939163498098859,0.5801312089971884,0.1338221814848762,0.7557861133280128,0.9209183673469388,0.8859223300970874,0.7364016736401674,0.2142857142857142,0.499860529986053,0.7295774647887324,0.6260720411663808,0.535024154589372,0.1146424517593643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022694345663252,0.0046747926257934,0.0069333062633235,0.0090939573447676,0.0111489751284268,0.0132297225730231,0.0150918768992311,0.0171016090827411,0.0190693346693796,0.0213709347095928,0.0234945442612191,0.0254843149742178,0.0276640398345713,0.0294923847406277,0.0312100070181232,0.033300594468855,0.0353215284249767,0.0374547378687112,0.0393027171992266,0.041352874389342,0.0559307702746432,0.0695521170082546,0.0819280140951422,0.0950913470134732,0.1072423104510358,0.1223559522802267,0.1349160885154774,0.1468142864746899,0.1580960521395373,0.1689077612644491,0.1816243228398186,0.1932146528867485,0.2050169152280564,0.2158209640899992,0.2261366262752996,0.2367429698406719,0.2465299103304262,0.255369659874661,0.2642464121617789,0.2722661170273674,0.279374153753573,0.2862054850593533,0.2926595518114484,0.2979394171871066,0.3035317542219578,0.3089416867944989,0.3143647376852223,0.3196158249586566,0.3239618929274102,0.3289591686009707,0.3286876195093049,0.3275095954107111,0.3271166162291505,0.326409452686013,0.3265533367975651,0.3248236068383917,0.3236978672235934,0.3245516246434309,0.3261643858961468,0.3271219321195294,0.3282586767288079,0.3292404565131838,0.3303983141026979,0.3303925500155951,0.3304510287671561,0.3315492738184936,0.3322553191489362,0.3361907145538731,0.3391119327496599,0.3404674628512869,0.3420136534201365,0.3457575438965408,0.3482984701842023,0.3524774774774775,0.356017059150751,0.3610490415147595,0.369558645707376,0.3729922665080309,0.3734194242668819,0.3716915995397008,0.0,2.3502372229754585,54.733306334575104,180.6920482979044,270.0409267668122,fqhc7_100Compliance_implementation_low_initial_treat_cost,57 -100000,95767,44798,423.83075589712536,6182,63.48742259859869,4777,49.369824678647134,1884,19.35948708845427,77.32840490063373,79.6890463981356,63.31625382636724,65.0650228175939,77.09150089706951,79.45207257894782,63.22868466109284,64.97949547226006,0.23690400356422,236.9738191877815,0.0875691652743952,85.5273453338441,144.16952,101.54409402798488,150541.96121837376,106032.44753201508,368.70998,240.74765876153543,384481.0007622668,250862.61317733183,360.96144,175.277585030021,373607.4639489594,180532.6997792321,3118.61775,1425.143174081305,3225272.995917174,1456945.1001715667,1119.23189,494.9181753307562,1155901.1246045087,504005.63516127167,1835.52024,765.7479685661241,1887747.7836833147,774593.4984149404,0.38203,100000,0,655316,6842.816419016989,0,0.0,0,0.0,31794,331.4502908099868,0,0.0,33151,342.8947340942078,1662668,0,59714,0,0,0,0,0,45,0.4698904633119968,0,0.0,2,0.0208840205916443,0,0.0,0.06182,0.1618197523754679,0.3047557424781624,0.01884,0.3274295395040813,0.6725704604959187,24.771286351766683,4.369166306630768,0.3376596190077454,0.2227339334310236,0.2265019886958342,0.2131044588653967,11.315279552307096,5.966855743845716,20.014398089518373,12316.726450050708,54.10623927726159,12.719294141427069,18.329446309461492,11.926664571709807,11.13083425466322,0.5645802805107808,0.8016917293233082,0.6931184128952262,0.55637707948244,0.1218074656188605,0.727760736196319,0.9057591623036648,0.8486842105263158,0.7215686274509804,0.1516587677725118,0.5033112582781457,0.7434017595307918,0.6318063958513397,0.5054413542926239,0.1140024783147459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874922732385,0.0041785837440921,0.006558908337733,0.0087298522327689,0.0112612154381396,0.0135470990873533,0.0161323217490618,0.0182647935639318,0.0204768038602302,0.0226625995455196,0.0248065193993132,0.027075589872066,0.0292575071986836,0.0313941990771259,0.0332896488385771,0.0351232621840922,0.0372229755607771,0.0389732953072336,0.0407868484495801,0.0430548756990949,0.0582224309795939,0.0722914248062502,0.0854242904027429,0.0982267677139283,0.1103524577208787,0.1256064177227231,0.1378352297430568,0.1496440088119791,0.1603934804434665,0.1712113576169592,0.1838704118559365,0.195555507470599,0.2075980765464871,0.2184102889389531,0.2281723318069743,0.2386823070703042,0.2481836545651373,0.2570206539478867,0.2654268424219717,0.27315753887762,0.2802004490428905,0.2857827999251356,0.2923756408890152,0.2988264375539983,0.3043319675619156,0.310086697004452,0.3156442794803631,0.3201865609827584,0.3240866824884255,0.3287385460402968,0.3280489613243283,0.3265351088588071,0.3257821536378255,0.3252836187585808,0.3245646645947031,0.3225944951314881,0.3218259629101284,0.3229392803105059,0.3235550690180114,0.3241639408726116,0.3248439871816495,0.3254040384083455,0.3263404237536044,0.3266277744249983,0.3275659048854925,0.3305378304466727,0.3311488488716663,0.3336160321648448,0.3377205264631756,0.3416858298310998,0.3443025317031044,0.3452041785375119,0.3486164032731588,0.3533146874291329,0.3550378894190289,0.3602491772449459,0.3675642781074091,0.3685388685388685,0.3657931034482758,0.3631393986723936,0.0,1.979826550099836,57.43284611238266,174.79651801773394,261.49109206777604,fqhc7_100Compliance_implementation_low_initial_treat_cost,58 -100000,95747,44393,420.9949136787576,6115,62.73825811774781,4831,50.048565490302565,1976,20.366173352689906,77.31464774318667,79.68014987768412,63.30648041847581,65.0557724770844,77.06737938599004,79.43061099594145,63.21494037778432,64.964974150934,0.2472683571966314,249.5388817426658,0.0915400406914841,90.79832615040571,143.59026,100.9662348946653,149968.41676501615,105451.06885298266,369.80693,241.5094698526384,385816.2762279759,251820.85083843305,360.29521,174.5065667149792,373732.41981472005,180313.24591619335,3214.27278,1465.9219222456104,3329887.2653973494,1503972.6267115816,1178.33283,520.7883856438176,1220316.6574409644,533715.637382946,1941.226,816.8550029360722,2001527.107898942,831938.3404281855,0.37914,100000,0,652683,6816.746216591642,0,0.0,0,0.0,31822,331.92684888299374,0,0.0,32939,341.46239568863774,1665548,0,59762,0,0,0,0,0,75,0.7833143597188423,0,0.0,0,0.0,0,0.0,0.06115,0.1612860684707495,0.3231398201144726,0.01976,0.3244722439405785,0.6755277560594214,24.48545802378045,4.4730961407177965,0.3231215069343821,0.2204512523287104,0.2270751397226247,0.2293521010142827,11.398115285072668,5.967118106119252,21.05424645973688,12237.52018649046,54.626983816091,12.63383469303518,17.58909822131898,12.181077306846818,12.222973594890014,0.5634444214448354,0.7727699530516432,0.7046764894298526,0.5979945305378305,0.1290613718411552,0.7054515866558178,0.898876404494382,0.875,0.6907630522088354,0.1625,0.5149916712937257,0.7094499294781382,0.64910790144435,0.5707547169811321,0.1198156682027649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023502000709112,0.004633431679695,0.0069225928256765,0.009114927344782,0.0111094155348695,0.01342760503688,0.0154966792830107,0.0178268771313634,0.0199640177457935,0.0220097457106588,0.0242276972921985,0.0265011499917857,0.0285029521282067,0.0303033425380208,0.0322560667210288,0.0342799251548075,0.0361181294785237,0.0381334827543269,0.0400528214779615,0.0418698170604658,0.0560137815827939,0.070259351516547,0.0835982166273275,0.0967769073032231,0.1089143363279767,0.1245002009773847,0.1360601976162932,0.147857933736479,0.1585968062592188,0.1694333265374008,0.1819789510006901,0.1943658919768134,0.2056433162653884,0.2160947757186537,0.2260728619944427,0.236533827823982,0.2463529780283707,0.2553805892704056,0.2639895341561913,0.2724787188824685,0.2795234946816531,0.2862686252212753,0.2925241071746273,0.2978950781090524,0.3035471000389256,0.3089899426173875,0.3134352655371477,0.3175962933733866,0.3223371612786286,0.3267927314924704,0.325880959431448,0.3256597494396083,0.3262432299359921,0.3251634694496167,0.3244359896560949,0.3227886883789331,0.3214257425742574,0.3217935657717459,0.3224477234257185,0.3228634691618156,0.3236811012546651,0.3243291344499595,0.3254806787036843,0.3264112182922472,0.3275182622068435,0.3276189979939035,0.3304494317857346,0.3332075708985726,0.3371669004207573,0.3400031761156106,0.3428779865037388,0.3452621503775391,0.3459027821788453,0.3480930089785895,0.355646155304826,0.3530183727034121,0.3553604436229205,0.3594555578469787,0.3556729699666296,0.3624658603199375,0.0,1.56457848312986,54.44138361709251,189.4853592608366,263.57069221783803,fqhc7_100Compliance_implementation_low_initial_treat_cost,59 -100000,95822,44399,419.25653816451336,6188,63.461418045960215,4807,49.67543987810732,1971,20.235436538581958,77.3504688262772,79.68182965039287,63.33176974345843,65.05955540786792,77.10574185386736,79.43667172464717,63.24107921986975,64.97075587924304,0.2447269724098362,245.15792574570128,0.0906905235886839,88.79952862487528,143.41888,100.87669665471796,149672.1838408716,105275.08991120824,368.62046,241.5023510910117,384173.5196510196,251522.12526223797,358.90139,175.17938563337498,371192.7845379975,180228.3150375967,3198.83006,1473.7006103022975,3305314.739830102,1505557.0980056317,1197.58841,535.6647288424559,1236014.6626035776,545638.6461672499,1941.64876,817.4084565208349,1995053.3697898183,827400.011948266,0.37894,100000,0,651904,6803.281083675983,0,0.0,0,0.0,31680,330.0912107866669,0,0.0,32887,339.93237461125835,1667798,0,59974,0,0,0,0,0,70,0.7200851578969338,0,0.0,0,0.0,0,0.0,0.06188,0.1632976196759381,0.3185197155785391,0.01971,0.3295296838858905,0.6704703161141095,24.628857527835343,4.375841287150648,0.3130850842521323,0.2261285625130018,0.2228000832119825,0.2379862700228833,11.1084756255681,5.743233129927561,21.08890432089705,12218.585274581585,54.837914038384746,12.98471358638361,17.159298698078775,12.030995005281616,12.662906748640726,0.5533596837944664,0.7690892364305428,0.6903654485049834,0.5863678804855276,0.1372377622377622,0.7217651458489155,0.9041769041769042,0.8816425120772947,0.7423076923076923,0.15234375,0.4884726224783862,0.6882352941176471,0.617781851512374,0.5363748458692972,0.1328828828828828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022084000243126,0.004360037719396,0.0065360803816096,0.0086869938937037,0.0109445246862094,0.0133527530504573,0.015634082912651,0.0178804836206192,0.020132100936567,0.0222345064799459,0.0243839914686791,0.0265954715818657,0.0287533036476383,0.0308135942327497,0.0328785206728339,0.0351814349479252,0.03737901764919,0.0394440699061349,0.0414220245456151,0.0434189706862091,0.0576870918612171,0.07181615732851,0.0847864358469212,0.0971642904422194,0.1090836300807012,0.1248071354595988,0.1365424375762074,0.1478187794525939,0.1590224841457946,0.1684687677486417,0.1817262269856129,0.1936913564232282,0.2041864911251602,0.2147900408769974,0.2246287537124628,0.234905723085104,0.2447018648096688,0.2535699415981185,0.2622351418254491,0.2696898194813525,0.2768944128130352,0.2840685815868263,0.2913447317044311,0.2972198921509886,0.3023264294049008,0.3074094638780924,0.3135770594944165,0.3183649017258521,0.3229286890666943,0.327138627471714,0.3260326842368055,0.3255182115323615,0.3249354278697548,0.3243908442037903,0.323293053157926,0.3212253225138439,0.3202487862152127,0.3207152962853288,0.3223980159069529,0.3238575413001502,0.3243577491708359,0.3250459495246942,0.3258410490594495,0.326643846343155,0.3289188538405971,0.3302029529921219,0.3313211845102505,0.3330609679446888,0.3369724963258451,0.3385561285204284,0.3395618848927389,0.3425163605657589,0.3448232718173287,0.3478228058259754,0.3492345033607169,0.3470987365465606,0.345402211786093,0.3515625,0.3510954828239113,0.3460511255246089,0.0,1.815872029665419,59.203599927264335,177.6141558360856,260.8634844472268,fqhc7_100Compliance_implementation_low_initial_treat_cost,60 -100000,95714,44476,420.86842050274777,6239,63.91959378983221,4895,50.52552395678793,1907,19.547819545729983,77.30949638025908,79.66892286454986,63.31695901961641,65.05927985699924,77.07030445693766,79.43163611673099,63.22801096914372,64.9735460293775,0.2391919233214139,237.2867478188709,0.0889480504726947,85.73382762173765,143.52822,100.9906405443874,149955.3043441921,105512.92448794052,369.77877,241.0073754689365,385693.1378899639,251157.5440213724,358.09795,173.59195630777225,369912.8863071233,178156.57043571517,3226.85398,1466.5941947740191,3333155.546732975,1494374.7124429406,1187.33873,521.619972771826,1226257.590321165,530799.8632643165,1884.74532,791.4398625374155,1934460.6222705145,797979.7575106567,0.38102,100000,0,652401,6816.1501974632765,0,0.0,0,0.0,31899,332.62636604885387,0,0.0,32932,339.8457905844495,1667272,0,59870,0,0,0,0,0,54,0.5641807885993689,0,0.0,2,0.0208955847629395,0,0.0,0.06239,0.1637446853183559,0.3056579580060907,0.01907,0.3322644678576882,0.6677355321423118,24.68838005621064,4.496160924512678,0.3156281920326864,0.2275791624106231,0.2218590398365679,0.2349336057201225,11.24991070183338,5.685275930670083,20.373420120424825,12342.161876292652,55.44382750531671,13.294143987062478,17.40434604240575,12.04949587757605,12.695841598272448,0.555873340143003,0.7809694793536804,0.7061488673139159,0.5681399631675875,0.1243478260869565,0.7244408945686901,0.9263157894736842,0.9016393442622952,0.7182539682539683,0.1732283464566929,0.4979412572055998,0.7057220708446866,0.6454622561492791,0.5227817745803357,0.1104910714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023191987117813,0.0046123590949639,0.00681762843925,0.0091106687251157,0.0114674935190362,0.0136899854448481,0.0159404780104978,0.0181897986056529,0.0204611422264012,0.0224130343564184,0.0245082462919874,0.0266548930621297,0.0290185916419874,0.0309880332021997,0.0328475810360653,0.0347781164436637,0.0368449922894608,0.03900481207998,0.0408759275811178,0.0429166666666666,0.0569426605265081,0.0705142294930972,0.0843079053083143,0.0972239747634069,0.1098551152540228,0.1259901644545502,0.1379903026959354,0.1497471925062536,0.1610194838489147,0.1713614771764655,0.1837631698015642,0.1953466718634966,0.2068147438757631,0.2177653252197134,0.2278072628774031,0.2373118112680428,0.247600960732838,0.2571109934550697,0.266266004703423,0.2732316863464404,0.2801644279759148,0.2872555788291187,0.2935861301248194,0.2993833825187744,0.3050221206670231,0.3112095122974073,0.3167025484403945,0.3217969287187714,0.3269507499643491,0.3311563834428418,0.3298976026334606,0.328216505215582,0.3271231175283341,0.3266206617189647,0.3265315234863368,0.32528622732435,0.3234023631050692,0.3247465104029497,0.324499905723444,0.3247952105253723,0.3255743992780054,0.3272933182332956,0.3295382802306494,0.3308556029642937,0.3328015855751335,0.3328717010713352,0.3323781413875118,0.3362324320917628,0.3391915641476274,0.3425845276744002,0.3459562667636496,0.3499389240002124,0.3529707955689828,0.356636965958419,0.3605909475863367,0.3600047415836889,0.3627435936780727,0.3679769499897098,0.3738601823708207,0.3729792147806005,0.0,2.3661408010956686,54.75441400294353,188.6361312634085,271.2143147545885,fqhc7_100Compliance_implementation_low_initial_treat_cost,61 -100000,95742,44513,421.71669695640367,6197,63.47266612354034,4855,50.20785026425184,1923,19.71966326168244,77.40440741590693,79.76162412535564,63.3594678928421,65.09920480611127,77.16224590881232,79.52057408630668,63.26925100920131,65.01196990936927,0.2421615070946075,241.0500390489574,0.0902168836407852,87.2348967420038,143.3333,100.79846827135948,149707.63092477698,105281.11828806528,370.75641,241.7674256822645,386747.5924881452,252021.99210614408,360.41687,174.22322553152472,373511.4474316392,179607.89548963984,3207.00703,1453.4043581285548,3317414.018925864,1486131.082139628,1154.16469,504.3588119855877,1193530.2270685802,514935.3081265191,1892.56428,793.4545997760588,1942942.57483654,799953.544373992,0.38112,100000,0,651515,6804.892314762591,0,0.0,0,0.0,31859,332.2366359591402,0,0.0,33044,342.2531386434376,1672255,0,59957,0,0,0,0,0,68,0.6997973721041967,0,0.0,0,0.0,0,0.0,0.06197,0.1625997061293031,0.3103114410198483,0.01923,0.3263771674083167,0.6736228325916833,24.87833413910308,4.419449284963329,0.3338825952626159,0.2170957775489186,0.2189495365602471,0.2300720906282183,11.166771415184796,5.717240872432043,20.4022269922074,12282.985904783478,54.77401663749448,12.668790417057282,18.21794041592672,11.812284028895869,12.07500177561462,0.5590113285272914,0.7979127134724858,0.6983343615052436,0.5738476011288806,0.11727842435094,0.7264890282131662,0.9322916666666666,0.8779904306220095,0.703125,0.1009174311926605,0.4993014808605756,0.7208955223880597,0.6359102244389028,0.5328376703841388,0.1212458286985539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002237589478267,0.0047124398277172,0.0068882261042465,0.0093027979485096,0.0113163807916382,0.0135382736156351,0.0159286624203821,0.0177953736110119,0.0199341997711296,0.0220721412125863,0.0241467664241057,0.0263568437474341,0.0282306980569548,0.0302406064601186,0.03212093071248,0.034113463446907,0.0362043432784814,0.0382572614107883,0.0403026334933798,0.0424126904769344,0.056901231989977,0.0700008372054083,0.0833918999716782,0.0960195971235123,0.1085849802371541,0.1240708432461009,0.1361331522892179,0.1473709984776383,0.1584030426375223,0.1693243112822107,0.1828481578408883,0.1955830159279778,0.2071020718908043,0.2173965338144442,0.2272772282674471,0.2378352638922726,0.2472661131940725,0.2564353429371478,0.2651452423352199,0.273037386387051,0.2805861821880128,0.2871154182964563,0.2933257758254216,0.2996641849014663,0.3053728269428796,0.3096663184415903,0.3135719193054775,0.3189493195206175,0.3236601374748049,0.3285080735369593,0.3283836580159231,0.3277012188426485,0.3268965904938584,0.3258951738453555,0.325437037037037,0.3245930179285911,0.3225628061305103,0.323059547582414,0.3237198051173724,0.3241101792995388,0.3259494855004677,0.3259739489652719,0.3272031132312327,0.3264167782240071,0.3286944837680255,0.3304010618639877,0.332274351846599,0.3360676268002505,0.3413517009894758,0.3432198362795112,0.3452089565769196,0.3487079008684601,0.3506265664160401,0.3501818732949379,0.3534796823914058,0.3582686426723124,0.3605754514845424,0.3599111828825191,0.3615788020977091,0.362238864800946,0.0,1.946154123186411,56.2281979559517,177.84739262010578,272.2774418872257,fqhc7_100Compliance_implementation_low_initial_treat_cost,62 -100000,95749,44495,420.7459085734577,6310,64.73174654565584,4890,50.50705490396767,1891,19.37357048115385,77.33232137485312,79.69944205385724,63.31916690730778,65.07186569051554,77.09537439157519,79.46494068932101,63.230654871169456,64.98721854200113,0.2369469832779316,234.5013645362286,0.0885120361383258,84.64714851440647,143.23584,100.77570396356396,149595.12893085045,105249.87620086264,368.56409,240.4265055533805,384334.2384776864,250517.3330493277,362.97175,176.1024846995478,376314.1233851006,181692.8803437205,3219.8977,1478.3093251471605,3326432.265611129,1508079.0445873514,1165.18173,514.6926826244254,1204848.9383701135,525479.9137582901,1855.49886,780.2799856288884,1902862.6513070632,783664.6068347173,0.38117,100000,0,651072,6799.77858776593,0,0.0,0,0.0,31752,331.00084596183774,0,0.0,33228,344.2124721929211,1671714,0,59973,0,0,0,0,0,71,0.7415221046695005,0,0.0,1,0.0104439733052042,0,0.0,0.0631,0.1655429335991814,0.2996830427892235,0.01891,0.3367069486404834,0.6632930513595167,24.63308213105913,4.430705244339935,0.3132924335378323,0.2376278118609407,0.2267893660531697,0.2222903885480572,11.154650536491587,5.624815214260516,20.108539325647843,12365.164246472972,55.43457086226162,13.885981509085608,17.170853172956683,12.512100104908596,11.865636075310736,0.5629856850715746,0.7814113597246127,0.7043080939947781,0.5807033363390441,0.1122355105795768,0.7409365558912386,0.9391891891891893,0.8307692307692308,0.7517482517482518,0.1225490196078431,0.4969153112731351,0.6838440111420613,0.6611208406304728,0.5212636695018226,0.1098527746319365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0048788404385884,0.0072496141661928,0.00954345881779,0.0117197037519329,0.0137325414370269,0.0157665007750673,0.0178766500934159,0.0199887531312305,0.0220004095004095,0.0241832142454406,0.0265897377984929,0.0288229184875937,0.0306400947525619,0.0327266724443894,0.034976021167521,0.0367175770126844,0.0387500389056615,0.0409777288174345,0.042952516846677,0.0568621924357729,0.0710892539499843,0.0842904643527696,0.0972490956507108,0.1090032900286823,0.1251057798087501,0.1371922750424448,0.1493868687728859,0.1609437247006803,0.1716957258358532,0.1848536745618853,0.1971951391068163,0.2090536232987739,0.2195474083715232,0.2278454546454942,0.2382898146302571,0.2478519940190586,0.2575839409487803,0.266749886518384,0.2743317222896672,0.2813414958743678,0.2881127881127881,0.2947434440973208,0.3012523218886692,0.3067448894071348,0.3124745787780558,0.3176329258068149,0.3224571799142962,0.326921583348435,0.3307177992588587,0.3296058563104705,0.3291705062786251,0.3287347260543949,0.3273611873069038,0.3267397309097389,0.3249613542097127,0.3235205577121128,0.3248666830749036,0.3252664790654046,0.3271526724368698,0.3272870514527958,0.3275462733841433,0.3288910342511753,0.3304055568003585,0.3317661241711874,0.3339337457905866,0.3337323301413589,0.3366876971608832,0.3388287401574803,0.3438185225052824,0.3453873865657348,0.3461230588611986,0.3486633726086405,0.3504737163814181,0.3522589093630156,0.3582912803661542,0.362006628502561,0.3615369301214414,0.3671366594360086,0.3755673222390318,0.0,2.1114466691487297,58.08050902123098,181.80747623990015,267.08211607886057,fqhc7_100Compliance_implementation_low_initial_treat_cost,63 -100000,95737,44672,423.0026008753146,6164,63.20440373105488,4865,50.34626111116914,1927,19.835591255209582,77.41699606751023,79.77104074048638,63.36600846061516,65.10096968401506,77.18705822982005,79.53902561192041,63.28194720299874,65.01783308018692,0.2299378376901728,232.01512856597617,0.084061257616419,83.13660382813737,144.9635,101.93842019063044,151418.46934831885,106477.5585099078,371.46663,242.2723512166355,387534.6417790405,252599.9889485051,366.44901,177.68651234603763,379717.38199442223,183240.7528941016,3195.39809,1450.2867089681167,3310318.2050826745,1488258.360162004,1117.76653,495.8384841303941,1155306.3183513165,506458.9454050235,1886.78114,783.1646084117672,1944373.2935019897,796381.0316416395,0.38108,100000,0,658925,6882.657697650857,0,0.0,0,0.0,31975,333.5074213731368,0,0.0,33521,347.12806960736185,1662563,0,59685,0,0,0,0,0,64,0.65805279045719,0,0.0,0,0.0,0,0.0,0.06164,0.161750813477485,0.3126216742375081,0.01927,0.3312170950758749,0.6687829049241251,24.580286354094945,4.43426231271649,0.329907502569373,0.2273381294964029,0.218705035971223,0.224049331963001,11.281440324082157,5.819762991414538,20.36109452178241,12273.070213946326,54.851597618300296,12.963321284916152,18.078595218432067,11.904226442569229,11.90545467238285,0.5547790339157246,0.7739602169981917,0.6866043613707166,0.5977443609022557,0.0963302752293578,0.7440381558028617,0.9293785310734464,0.8694638694638694,0.7871485943775101,0.168141592920354,0.4887718325478237,0.7007978723404256,0.6198979591836735,0.5398773006134969,0.0775462962962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022368873863843,0.0044879392963154,0.0069579681921454,0.0091390042547142,0.011336830974459,0.0133655001119729,0.015381008684307,0.0176566646254337,0.0197947963292251,0.0220364819380645,0.024285772840923,0.026724686467292,0.0287626311948108,0.0310282683692909,0.0328876784682677,0.0349580978165397,0.0368771417626901,0.0388716034017838,0.0408118725447402,0.0427834783061617,0.0573433290872261,0.0711154357219833,0.0848360870705481,0.0975822650359137,0.1097014374452916,0.1248096446700507,0.1366827881719061,0.148612116309762,0.1593385463402128,0.1688916052798061,0.1814687611029166,0.1942902887309469,0.2058750013584446,0.2158404595742822,0.2262331099637482,0.2367562305726706,0.24705790576383,0.2558907803809203,0.2638034028179232,0.2717829031667582,0.279261682134973,0.2861782539107679,0.2925860703691009,0.2986978792665996,0.3044770326164744,0.3097442083753908,0.314531345670836,0.3193378728593932,0.3236510768117066,0.3284268508025195,0.327381512605042,0.3264425916514429,0.3260771677032618,0.3253240091892907,0.3246851609837234,0.3225539986538579,0.3210693363230116,0.3228813975170518,0.3230421174389331,0.3243171242851561,0.3259455328350141,0.3272137592137592,0.3285559310718905,0.3287333333333333,0.3300806007988328,0.3312658950537188,0.3314530302171325,0.3350204642734402,0.3385560247060055,0.3410525485245384,0.3433085082374182,0.3451752533783784,0.3495188101487314,0.3461801596351197,0.3482317812820752,0.3548273844353423,0.3557837511325883,0.3628952077947902,0.3643473570658037,0.3614413075780089,0.0,1.8159270229976945,55.54288499445184,183.3440332344764,269.32045857412226,fqhc7_100Compliance_implementation_low_initial_treat_cost,64 -100000,95685,44946,424.9046350002613,6247,64.00167215342007,4916,50.6871505460626,1940,19.804567069028582,77.3508434030137,79.74028929427341,63.31502979323547,65.0822799089593,77.11425426622625,79.50936721442592,63.22664510056937,64.99980990043227,0.2365891367874439,230.92207984748825,0.0883846926660965,82.47000852702513,142.20074,100.18215111015878,148613.40858023724,104699.95413090744,371.12376,242.69262512929816,387180.6239222449,252957.77303579252,367.68047,178.64603534096162,380173.97711240005,183612.4296009315,3241.06742,1465.9219588048693,3343457.3757642265,1488260.1544702605,1187.3959,526.1068476131983,1220204.8387939597,529094.3696642094,1913.22946,797.6259056910073,1955010.2523906569,794653.7492783141,0.38308,100000,0,646367,6755.154935465329,0,0.0,0,0.0,31807,331.7029837487589,0,0.0,33751,348.60218425040495,1671113,0,59877,0,0,0,0,0,74,0.773370956785285,0,0.0,0,0.0,0,0.0,0.06247,0.1630729873655633,0.3105490635505042,0.0194,0.3341957084157662,0.6658042915842337,25.022267897950865,4.344266883206915,0.3254678600488201,0.2274206672091131,0.2160292921074044,0.2310821806346623,11.011721565367024,5.711513707046496,20.51604120103024,12429.678845773651,55.41202640929348,13.236684567950697,17.94543661122865,11.889479937971396,12.340425292142744,0.5551261187957689,0.7844364937388193,0.681875,0.5866290018832392,0.1214788732394366,0.7292817679558011,0.9313984168865436,0.8482587064676617,0.7333333333333333,0.1861471861471861,0.4946560701562071,0.7090663058186739,0.6260434056761269,0.540272614622057,0.1049723756906077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024109322609074,0.0047966251229578,0.0072582200611111,0.009868688511261,0.0120348328551954,0.0141602656832582,0.0162808964694121,0.0188022141879608,0.0211083952915188,0.0231765019151594,0.0253720169420258,0.0273415433284374,0.0295718003312041,0.0315999876361313,0.0335521291308027,0.0357183471347786,0.0379514701920885,0.0397670652715495,0.041684438295172,0.0438358734858119,0.0585795911545653,0.072139147189411,0.0861851774091958,0.0994455374709354,0.1118296812854083,0.1273662268403398,0.1396072186836518,0.1509100397243788,0.1622641509433962,0.1716358640822547,0.1840732196373515,0.1969163806450914,0.2083124741527545,0.2189521380804885,0.2284723369116432,0.2391919012718019,0.2488779725354471,0.2585253819393625,0.2667098254341431,0.2739361702127659,0.2817344989289643,0.2884676182335515,0.2950759460676287,0.3011636276391555,0.3074417134660734,0.3128420689315122,0.317469253962892,0.3226704993513266,0.3274731245391392,0.3320580474934037,0.3315465528155261,0.3307016216662311,0.3301521613670594,0.3287040378813033,0.327887323943662,0.32744945211132,0.3257327960812198,0.3270374314030633,0.3284661572052402,0.3289853522933818,0.3305152903768821,0.3317110655737705,0.3328048398873474,0.3334520840755254,0.332846365704706,0.3336361041185477,0.3344266930581083,0.3364754354204382,0.340050904780168,0.3432835820895522,0.3462733618554379,0.346103177530695,0.3478613799562909,0.3515050420805216,0.3532669921141569,0.3547466095645967,0.3555385790679908,0.3606622780769998,0.3624762421938637,0.3655252020007695,0.0,2.6524205649500865,55.15546098082772,181.3302855668894,277.89809158079845,fqhc7_100Compliance_implementation_low_initial_treat_cost,65 -100000,95724,44341,420.3439053946764,6116,62.6488654882788,4785,49.42334210856212,1885,19.36818352764197,77.26691653433518,79.62641151334877,63.2951211478972,65.03879939145877,77.0320230973737,79.39227370741311,63.20822606360727,64.95477663110464,0.2348934369614852,234.13780593566003,0.086895084289928,84.02276035413081,143.7238,101.15409083324256,150143.95553884082,105672.65349676418,371.57067,242.3805413572872,387618.9774769128,252657.9137492032,359.57646,174.47142869657625,372025.38548326434,179571.3135977536,3153.52138,1435.9385070414526,3260681.239814467,1466373.7798686342,1142.6754,505.28177279411256,1179699.281266976,513833.22133854846,1849.92184,771.1828317314801,1902518.365300238,779200.1998075612,0.37977,100000,0,653290,6824.725251765492,0,0.0,0,0.0,32059,334.32576992185864,0,0.0,32906,340.1759224436923,1662249,0,59733,0,0,0,0,0,65,0.6581421587062806,0,0.0,0,0.0,0,0.0,0.06116,0.1610448429312478,0.3082079790712884,0.01885,0.3389408099688473,0.6610591900311527,24.624112224754047,4.352428669508203,0.3339602925809822,0.2221525600835945,0.21901776384535,0.2248693834900731,11.294438793578818,5.855769157276491,20.046025372869405,12257.034789033363,54.25107916087453,12.707366147216495,18.187501040170247,11.610801601524162,11.745410371963631,0.561337513061651,0.7845719661335842,0.6983729662077597,0.5820610687022901,0.1171003717472119,0.7430555555555556,0.9128205128205128,0.8981481481481481,0.7154150197628458,0.171945701357466,0.4938377758670106,0.7102526002971769,0.6243567753001715,0.539622641509434,0.1029239766081871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022383826925414,0.0047247766883979,0.0070828428785972,0.0094777582511351,0.011705957732441,0.0139594554692352,0.0160456700137621,0.0181704964220455,0.020475757235006,0.0224062397641663,0.0240587168000984,0.0265494902621069,0.0288343873721013,0.030704419747237,0.0327669276878475,0.0345975336206985,0.0366274193047314,0.038521392704486,0.0401750446966862,0.0419258379437168,0.0563653830089382,0.0702345688058029,0.0831050803345611,0.0957436733834903,0.1076338696913743,0.1224837542069724,0.134278282104369,0.1460905130635764,0.1579228778578608,0.1681623977499624,0.1819377513287406,0.1947273751733703,0.2061139365954064,0.2163751656463218,0.2263290134884951,0.2368298368298368,0.2465306122448979,0.2551348062688013,0.2635118249767135,0.2719624025676295,0.2795630489371304,0.2857343492152663,0.29274991712838,0.2988788296660471,0.3048867931407459,0.3107853170737722,0.3152612454579626,0.3202318028402216,0.324287159795553,0.3284729481191368,0.3279822712285822,0.327556684802121,0.3263315616872102,0.325555796944022,0.3252602886634791,0.3240777712934238,0.322276236774378,0.3232173454593383,0.3235516070387267,0.3236901030004478,0.3237068074632194,0.3258132942132704,0.326796010268928,0.3265503006371713,0.3275687164871262,0.3304288667346992,0.3319971367215462,0.3341139981643827,0.3380977777777778,0.3394225340753286,0.341709701217263,0.3431050277523306,0.3439348641943897,0.3451476793248945,0.3495881071868194,0.3520523497917906,0.3533558075390745,0.3577235772357723,0.3645170218654857,0.3675213675213675,0.0,2.2325840855904717,57.0137858167443,171.22758144922952,269.2538135014176,fqhc7_100Compliance_implementation_low_initial_treat_cost,66 -100000,95709,44339,420.012746972594,6166,63.316929442372185,4829,49.94305655685463,1882,19.40256402219227,77.288290147924,79.65721986746652,63.294707477804174,65.04380266406704,77.05260240209113,79.41986950124628,63.20751474364282,64.95809047355326,0.2356877458328767,237.35036622024097,0.0871927341613556,85.71219051378876,142.296,100.1680876563132,148675.673134188,104659.00558600885,369.59595,241.6633182495292,385655.2675296994,251987.165633323,361.3981,175.67917796051032,373388.7304224263,180358.93154005683,3189.51009,1454.999747710402,3303427.472860441,1491169.9950548871,1134.46913,501.5149196927327,1175414.4542310543,514110.15392066975,1854.84768,777.1630047055799,1913869.604739366,790904.6081705283,0.37915,100000,0,646800,6757.985142463091,0,0.0,0,0.0,31842,332.1526711176587,0,0.0,33142,342.2353174727559,1667453,0,59898,0,0,0,0,0,69,0.7104869970431202,0,0.0,1,0.0104483381918105,0,0.0,0.06166,0.1626269286562046,0.3052221861822899,0.01882,0.3377206565500155,0.6622793434499845,24.36204271689876,4.440460218347767,0.3213915924622075,0.2261337751087181,0.2253054462621661,0.2271691861669082,11.137597479552772,5.5583038492398575,20.06385670445104,12207.80091478676,54.8622295790634,12.981571246212656,17.688912744494562,12.140717994273706,12.051027594082472,0.5607786291157589,0.7847985347985348,0.7132731958762887,0.5827205882352942,0.1002734731084776,0.7308602999210734,0.9212598425196852,0.8731707317073171,0.7673469387755102,0.1255411255411255,0.5002807411566536,0.7116736990154712,0.6558669001751314,0.5290628706998813,0.0935334872979214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774577421282,0.0046025486359627,0.0065653285708487,0.0089802718462382,0.0114412985111056,0.0136240059465018,0.0159152545829,0.0180778849589139,0.0202804922925951,0.0222486030660908,0.0245867196867986,0.026513790661151,0.0285731911699688,0.03049464979042,0.0324294216546844,0.034352683415839,0.0362704493683992,0.0380875286694272,0.0399929271286222,0.042324127149557,0.0572956375523504,0.0713306042109451,0.0848839772047479,0.0976995769578852,0.1104531492447512,0.1254128906580842,0.1376469214189397,0.1492979353546545,0.1602690218553526,0.170451738985708,0.1834514142753928,0.1947390659025167,0.2060380317584787,0.2167819917666637,0.2260430893950742,0.236538738918661,0.2466121025090567,0.2546680497925311,0.2627902478981558,0.2701517048129816,0.2777977522877257,0.2842955632679861,0.2903952925544535,0.2966704302495976,0.3027446969143469,0.3078272687959473,0.3117277749874435,0.3165482311215442,0.3207929538309647,0.3244491497386356,0.3241824951435355,0.3235923120438208,0.3226472168037769,0.3223786259984633,0.3213604103298145,0.3205748238220257,0.3188842699838162,0.3188126952803815,0.3197027295455323,0.3200050093029912,0.3210676584394605,0.3218554579276498,0.3228440675119657,0.3244450399749877,0.3261729519790942,0.3272156170499974,0.3273166571915861,0.330276093853064,0.333719298245614,0.3374274584625168,0.3398098198774801,0.3423337061298397,0.3433333333333333,0.345814307458143,0.349198956780924,0.3525543159130945,0.3562801932367149,0.3547871277233659,0.3621432417878298,0.3688739244294799,0.0,2.006489413467976,55.86100120101951,186.92467413637115,262.0927648633067,fqhc7_100Compliance_implementation_low_initial_treat_cost,67 -100000,95821,44512,421.2646497114411,6194,63.21161332067084,4864,50.10383945064235,1925,19.661660805042736,77.36488025655099,79.68028945853183,63.35773544642036,65.07148965805362,77.11754737199193,79.43466735776605,63.264121466126255,64.98123687005186,0.2473328845590572,245.62210076578597,0.0936139802941014,90.25278800176297,144.41438,101.59951658411804,150712.66215130294,106030.53253891948,370.89413,242.55625328062123,386376.7441375064,252441.7228797667,364.15124,177.4038716319014,375641.7382410954,181738.1145286396,3221.75802,1477.3975672993986,3321469.6882729256,1501033.194497446,1145.53235,511.8055167110503,1177496.9161248575,516139.1987134679,1893.76308,809.1977109849192,1936329.8650608948,810624.7003833789,0.3805,100000,0,656429,6850.575552331952,0,0.0,0,0.0,31782,330.9608540925267,0,0.0,33259,342.75367612527526,1666048,0,59778,0,0,0,0,0,80,0.8244539297231296,0,0.0,2,0.0208722513853956,0,0.0,0.06194,0.1627858081471747,0.3107846302873748,0.01925,0.3284132841328413,0.6715867158671587,24.733589745222663,4.3837294248028105,0.3159950657894737,0.2263569078947368,0.2251233552631578,0.2325246710526315,10.9932596090702,5.58242964152417,20.633831001303648,12289.086766264025,55.26537494367068,13.213913593127495,17.457052796148123,12.145494556248604,12.44891399814645,0.5413240131578947,0.7647593097184378,0.690305790500976,0.5607305936073059,0.1025641025641025,0.7034220532319392,0.900990099009901,0.8225419664268585,0.7429718875502008,0.1346938775510204,0.4812623274161736,0.6857962697274032,0.6410714285714286,0.5070921985815603,0.0936794582392776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0045419522283953,0.0068187352869551,0.0091618250518018,0.0111855685827884,0.013430130737588,0.0157291687903932,0.0178246932233497,0.0200257605495583,0.0220379753313885,0.0245152297790349,0.0263336138420804,0.0283153642969464,0.0304758179890694,0.0324495938646765,0.0344496520967109,0.0366274980346725,0.0387516578249336,0.0405374535335285,0.0424387452530822,0.0572406024448245,0.0710657245589096,0.083919966478106,0.0968727685134624,0.1096366508688783,0.12489967473493,0.1378199694863536,0.1492270726572965,0.1600998623691707,0.1710925197904727,0.1836082507505084,0.1964471066516737,0.207976093452866,0.217818753823298,0.227441108900443,0.2383191009247378,0.2480303992689911,0.2576557550158395,0.2653049664672829,0.272873873461732,0.2807684310237275,0.2873693430656934,0.2940293391018594,0.2995596822054178,0.3054010734147704,0.3102925964238215,0.3148641382501156,0.3190559107258607,0.3236888055357951,0.3270094726163656,0.3261027434104357,0.3250498521625524,0.3244770818063934,0.3235621628656958,0.3224716927792408,0.3215611102591627,0.3203002269156921,0.3213221616816737,0.321931900010287,0.3231601382694822,0.3237919475725961,0.3244564569339004,0.3262991794656006,0.3283424620633923,0.3299172440338722,0.3316978965499243,0.334585289514867,0.3385133222183774,0.3397870620893214,0.3413438546150167,0.3430901012321927,0.3457378453630327,0.3459676391897057,0.3480335565304395,0.3514851485148514,0.3539727988546886,0.3519604816301327,0.3574502971920476,0.3586836283185841,0.3639179248935346,0.0,2.4851133153299343,57.257712131336135,183.62945945962892,263.97775397018177,fqhc7_100Compliance_implementation_low_initial_treat_cost,68 -100000,95628,44310,418.76856150918144,6172,63.2137030995106,4787,49.37884301668967,1911,19.54448487890576,77.2563444549925,79.6661661947302,63.27473565930678,65.05554385516216,77.01459050363002,79.42663359596463,63.18625955680281,64.97044978686264,0.2417539513624831,239.53259876556388,0.0884761025039679,85.0940682995116,143.21318,100.7476159310445,149760.718617978,105353.67876672574,367.96172,240.1355817673301,384107.4266951102,250437.22734693825,354.81315,172.91993314208923,366417.6078136111,177247.3319525635,3152.52717,1423.4210064829488,3254022.242439453,1445863.37315739,1146.34746,499.1269783928193,1184780.1689881624,507990.5236101386,1877.25548,779.4919796683829,1922811.1222654453,782114.4767820414,0.37959,100000,0,650969,6807.305391726272,0,0.0,0,0.0,31733,331.15823817292005,0,0.0,32461,334.8182540678462,1667115,0,59825,0,0,0,0,0,59,0.6169741080018405,0,0.0,1,0.0104571882712176,0,0.0,0.06172,0.1625964856819199,0.3096241088788075,0.01911,0.321340713407134,0.6786592865928659,25.068265855283347,4.384383852702864,0.3300605807395028,0.2245665343639022,0.2143304783789429,0.2310424065176519,11.195039385359683,5.759835685522484,20.216163234131344,12323.28959219918,53.74280774309882,12.783310519680484,17.883638756339227,11.090821108554984,11.985037358524115,0.5598495926467516,0.8018604651162791,0.6955696202531646,0.5750487329434698,0.1166365280289331,0.7354581673306773,0.9430051813471504,0.8497652582159625,0.7235023041474654,0.1769911504424778,0.4974518686296715,0.7227866473149492,0.6386481802426344,0.5352286773794809,0.1011363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023294677672557,0.0045812513302859,0.0070936380519388,0.0092143894832017,0.0116797232678807,0.013986940089443,0.016392606495838,0.0182986636151865,0.0205592946423091,0.0225889728932325,0.0248009358069282,0.0266884531590413,0.0291444042949648,0.031363088057901,0.0335306331153738,0.0357915213724739,0.0379089438984948,0.0400868427066669,0.0421015390058376,0.0438809675299615,0.0585143072131764,0.0718655715722427,0.084796119766514,0.0970326003431615,0.1088704571356211,0.1247949713753584,0.1366969848126253,0.1491507374474202,0.1597584437793929,0.1693369246783349,0.1821710022747119,0.1953954496208017,0.2064221682442515,0.2162339868278303,0.2254339722522443,0.2362754456456589,0.2461553947500867,0.2560996224714036,0.2646671061305207,0.272610471252237,0.2792787569573284,0.2865818629462454,0.2936989941165306,0.3002749198650611,0.3059231752602422,0.3119456454601605,0.3167935580167321,0.3213976026523846,0.3256462832225913,0.3300419029490687,0.3289793274680196,0.3282597596147212,0.3274336283185841,0.3268837479150047,0.3268579442877818,0.3255105338483556,0.3233386327503975,0.3227566427111492,0.3235096889561374,0.3247777278850471,0.3256414607016948,0.3257104221767057,0.3268744734625105,0.3284772961585011,0.3312507538294536,0.3323746274120169,0.3326745151957835,0.3361331270327449,0.3390705679862306,0.3405091949001072,0.3428662652800583,0.344440304465854,0.3479691256484879,0.3517110266159696,0.3529520808230605,0.3548159473127131,0.3591867469879518,0.3598636728147554,0.3764929424538545,0.3671965878247383,0.0,2.608037526063479,54.58069959663304,165.5456956315821,279.057520192136,fqhc7_100Compliance_implementation_low_initial_treat_cost,69 -100000,95687,44385,420.69455620930745,6196,63.45689592107601,4888,50.44572407955104,1974,20.190830520342367,77.32722884548278,79.70418788391889,63.32110870231941,65.07601518378534,77.08074692144311,79.46001586462928,63.230088381293335,64.98876043762294,0.2464819240396707,244.17201928960708,0.0910203210260789,87.25474616240092,143.3311,100.82031835874264,149791.61223572688,105364.69777372332,370.40745,240.9783749555213,386486.4924179878,251223.5256153096,353.61204,171.2030859249947,365651.3005946471,175897.50624287562,3223.76569,1457.9042853515164,3330716.575919404,1485260.6575099188,1169.30132,510.9689111417329,1203674.7207039618,515668.60821400245,1938.08678,807.1407702955586,1985124.3951633973,809225.857584667,0.38067,100000,0,651505,6808.709647078495,0,0.0,0,0.0,31876,332.46940545737664,0,0.0,32428,334.9566816808971,1670172,0,59960,0,0,0,0,0,65,0.6792981282723881,0,0.0,0,0.0,0,0.0,0.06196,0.1627656500380907,0.3185926404131698,0.01974,0.3226841944359523,0.6773158055640477,24.66402927884411,4.534940107728841,0.3263093289689034,0.226063829787234,0.2178805237315875,0.2297463175122749,11.281656238739831,5.700551572210502,20.90578430636225,12301.6538300369,55.10685464395344,13.032599438606828,17.94680150486195,11.835037650385072,12.292416050099591,0.5509410801963993,0.7656108597285067,0.6946708463949843,0.5746478873239437,0.1130899376669634,0.7229299363057324,0.8994974874371859,0.8778625954198473,0.7447698744769874,0.1194690265486725,0.4914647577092511,0.6902404526166902,0.6347753743760399,0.5254237288135594,0.1114827201783723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022678032680664,0.0046214186539104,0.0067261844374556,0.0087957179276232,0.0110533754995373,0.0129921700793174,0.0154895682499541,0.0176687467445589,0.0197165238377681,0.0218226131836847,0.0238849747202822,0.0260465880612957,0.0279569228870305,0.0299742400824317,0.0320033850726552,0.0345505124148129,0.0362074859883763,0.0381636593924544,0.0401918056147869,0.0422351702644388,0.0575934823480259,0.0711990706339155,0.0843036062684876,0.0970867657734431,0.109432847785501,0.1248558582385612,0.1370954902938897,0.1487050604873062,0.1605316864161386,0.1702481466779672,0.1833566734891737,0.1958668023469807,0.2076992527003948,0.2187681167346671,0.2285830645782655,0.2389996343368754,0.2488419078660966,0.2581650447207065,0.2670071501532176,0.2750933626595184,0.2820492040520984,0.2889242580282745,0.2947875602277705,0.3006316596948376,0.3059579950410812,0.3120868278243709,0.316197562411534,0.320074889194559,0.3243978949005781,0.3288684579007159,0.3272629164980439,0.3264982923873527,0.3260136802764262,0.3248243762828481,0.3237364043506078,0.3229229044789411,0.3220287924911212,0.3225409634404369,0.3225690829336565,0.3228565319649348,0.3241109676936603,0.3233587304093798,0.3244205280680081,0.3249636668529905,0.3264499650610828,0.3280947649181528,0.3288623233998741,0.3326715199647033,0.3365293435886629,0.3375164336082227,0.3405241657869371,0.3433402900412051,0.3435162885029788,0.3456657180216906,0.3459083547680289,0.3520334928229665,0.3570102135561745,0.3565875613747954,0.3543110618242306,0.3506944444444444,0.0,2.529976579238918,54.74143709423005,180.39726971847057,277.2834861979652,fqhc7_100Compliance_implementation_low_initial_treat_cost,70 -100000,95785,44330,419.1888082685181,6140,62.85952915383411,4802,49.621548259122,1874,19.199248316542256,77.38146625236273,79.70389356870065,63.35451413110488,65.06742516231716,77.15219493837392,79.47711167935074,63.269121976431386,64.98577762785473,0.2292713139888036,226.78188934990828,0.0853921546734923,81.64753446243367,143.33154,100.84689289433528,149638.81609855406,105284.64049103227,367.91444,240.1462994030252,383598.9559951976,250209.6800621134,359.13695,173.76001320380266,371953.7714673488,179108.85669633717,3158.09207,1427.4974664973151,3262499.159576134,1455887.1479358962,1167.84984,515.7560241912859,1201128.1933496892,520610.4823778821,1841.22718,765.8640123208007,1886934.8854204728,768738.1444847127,0.37875,100000,0,651507,6801.7643681160935,0,0.0,0,0.0,31701,330.41707991856765,0,0.0,32906,340.5334864540377,1669655,0,59901,0,0,0,0,0,60,0.6264028814532547,0,0.0,0,0.0,0,0.0,0.0614,0.1621122112211221,0.3052117263843648,0.01874,0.3307967075632862,0.6692032924367137,24.58250883448116,4.394075050403804,0.3150770512286547,0.2328196584756351,0.2244897959183673,0.2276134943773427,11.388750127589804,6.00166153619485,19.782603280227928,12234.34714704653,53.98614797515681,13.258601576276355,16.98701038877556,11.892011291148837,11.84852471895605,0.5616409829237817,0.761180679785331,0.6893588896232651,0.6150278293135436,0.1280878316559927,0.737919737919738,0.918158567774936,0.8590078328981723,0.7478632478632479,0.1784037558685446,0.5015358838313321,0.6767537826685007,0.631858407079646,0.5781990521327014,0.1159090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025211105036146,0.0045299768940775,0.0065732747689717,0.0087232919002356,0.0111137096200189,0.0132133477207484,0.0151663405088062,0.0174085185411947,0.019493456206132,0.0217202254892933,0.0238805052709223,0.0261832209876163,0.0282096868673373,0.0303785219423312,0.0324243517707098,0.0344521326035319,0.0366947793242614,0.0386808492991623,0.0405555613267818,0.0427304152263545,0.0578265724632387,0.071406148630266,0.0848925994294344,0.0979584113033788,0.1095319929572267,0.1248439846840557,0.1366365410726408,0.14854004108962,0.1588267965478937,0.1692273053789495,0.1827557622538729,0.1953949645267347,0.2072685356358337,0.2177166172593719,0.2274722977210955,0.2371412742382271,0.2462379995534717,0.2560175547178304,0.2639097061361675,0.2713715870796176,0.2785427257883339,0.2859886185335238,0.2915739118078909,0.296989958540034,0.3026689656847269,0.3085288502986637,0.3131017580713732,0.3183407279337918,0.3223391994613004,0.3264235039691959,0.3265251204219477,0.3250766333557849,0.3241576435138902,0.323082483915275,0.3224914112345514,0.3207067224444138,0.3194655281467425,0.3201238998967501,0.3209661736860959,0.3212423244638249,0.3220538500345671,0.3227762140031101,0.3237657864523536,0.3252085098791312,0.3258515785943564,0.3257130981451654,0.3287480855408701,0.3329996872067563,0.3351050809525475,0.337773020969596,0.3418515823935977,0.3444373942470389,0.3474111041796631,0.3526526299901894,0.3532787656411704,0.3602975909305621,0.3601938806422296,0.3661717495987159,0.3662202787646898,0.3651278138115223,0.0,1.936995893236476,53.6719519078824,179.17456834225365,270.59318294452186,fqhc7_100Compliance_implementation_low_initial_treat_cost,71 -100000,95760,44395,419.4444444444444,6234,64.08730158730158,4801,49.592731829573935,1889,19.329573934837093,77.31912755708531,79.66766363177011,63.32066847763053,65.05785691753906,77.08232170675024,79.4340388494683,63.23308813659581,64.9745512991036,0.2368058503350738,233.6247823018169,0.0875803410347231,83.30561843546036,143.93984,101.29800735655564,150312.656641604,105782.76311252672,368.99384,240.6013852633885,384790.14202172094,250713.24975291183,355.72287,172.34548165950733,368299.7702589808,177521.74065157375,3161.89272,1428.322582636269,3264842.31411863,1454731.0219821772,1180.77516,514.8971820011562,1216510.5889724311,521198.9505335789,1854.47498,774.0835313326721,1898818.1913116125,775066.2482871742,0.37944,100000,0,654272,6832.393483709273,0,0.0,0,0.0,31808,331.61027568922304,0,0.0,32537,336.64369256474515,1666868,0,59798,0,0,0,0,0,71,0.7309941520467836,0,0.0,0,0.0,0,0.0,0.06234,0.1642947501581277,0.3030157202438241,0.01889,0.3237277743715512,0.6762722256284488,25.15094627293122,4.373812733075206,0.3265986252863986,0.2280774838575296,0.2176629868777338,0.2276609039783378,11.349467215108284,5.795575906289443,20.04927449980028,12296.055216573388,54.17707694359186,12.92636933758884,17.623754107718856,11.524776404691677,12.102177093592491,0.5644657363049365,0.7680365296803653,0.7072704081632653,0.5923444976076555,0.1290027447392497,0.7234387672343877,0.9107142857142856,0.8756345177664975,0.7298578199052133,0.1525423728813559,0.5095291479820628,0.6884779516358464,0.6507666098807495,0.5575539568345323,0.1225204200700116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020759703895735,0.0043980988862878,0.0070411103445477,0.0091612667330232,0.01118670612523,0.0133919933192793,0.0157124649502931,0.0179001756320712,0.0200711641888713,0.0221944677627403,0.0244022474674978,0.0266662559426629,0.0288376493819034,0.0308437210260636,0.0328734896870518,0.035098235786558,0.0369181712771244,0.0390655795522914,0.0411185235987281,0.0432871575877512,0.0583832647863212,0.0730597428682016,0.0862578926391307,0.0986540483701367,0.1107257316353209,0.1265054508157719,0.1386101860297393,0.1498510321344967,0.1608862786972771,0.1703596505333119,0.1829781735562997,0.1957578053135653,0.2065301327996693,0.2170247662784976,0.2266361566133841,0.2363056549036108,0.245968236961641,0.2546407758252143,0.2638113395978029,0.2716425430560645,0.2795596865486787,0.2860938158325921,0.2929805027125631,0.2994466915515441,0.3048359240069084,0.310564449436538,0.3150739854409682,0.319044039899614,0.323859289706054,0.3287982458457718,0.3277707384142561,0.3268931517413277,0.3261700836731526,0.3248472210154371,0.3240260030049239,0.3226993865030675,0.3207505273676029,0.32131055910832,0.3221830985915493,0.3234994185526433,0.3246572769953051,0.3253724846158412,0.3268543811725152,0.3274844615971459,0.3289460997010895,0.3302135891872108,0.331789594053745,0.3364182957156797,0.338037090474012,0.3401689738606164,0.3433773327264451,0.3462581777565023,0.3490881554868429,0.3527569879334046,0.356058462989156,0.3564262952909241,0.3589626239511823,0.359577922077922,0.3557825006900358,0.3641928079571538,0.0,2.092428272362388,54.20648245045726,180.4830349358354,268.3490611245779,fqhc7_100Compliance_implementation_low_initial_treat_cost,72 -100000,95683,45001,427.5054084842657,5954,60.94081498280781,4668,48.232183355454985,1809,18.58219328407345,77.34181859432726,79.72464420740091,63.3271521787835,65.08546842475121,77.12057619452479,79.50387538997921,63.24526111103654,65.006221103812,0.2212423998024775,220.7688174216997,0.0818910677469588,79.24732093921705,142.7426,100.4621175285131,149182.82244494843,104994.74047481068,366.44924,240.0084596239722,382410.4386359123,250265.0024560232,359.14619,174.66482172041736,371686.8200202753,179708.32553001094,3079.98148,1396.2369573147396,3186636.4557967456,1426946.516254505,1112.88113,482.6605080482324,1150129.1556493838,491532.9953794789,1770.64822,740.2488062030546,1821087.5704148072,748048.9203618851,0.38314,100000,0,648830,6781.037383861291,0,0.0,0,0.0,31498,328.60591745660145,0,0.0,32853,339.7050677758849,1672079,0,59984,0,0,0,0,0,57,0.5957171075321634,0,0.0,0,0.0,0,0.0,0.05954,0.1554001148405282,0.3038293584145112,0.01809,0.3303485769107771,0.6696514230892229,24.40991201456816,4.371967164451229,0.3179091688089117,0.2335047129391602,0.2238646101113967,0.2247215081405312,11.30602483971395,5.869752698478585,19.184140082455567,12342.229796447844,52.741230284953936,12.963720562036176,16.920908009973008,11.566350820236549,11.290250892708205,0.5597686375321337,0.7743119266055046,0.7001347708894878,0.5808612440191387,0.1172545281220209,0.7363636363636363,0.8975,0.8768844221105527,0.6830357142857143,0.1595744680851064,0.4979757085020243,0.7028985507246377,0.6353591160220995,0.5529841656516443,0.1080139372822299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860548247612,0.004165948690919,0.0063614135121698,0.0086124596290954,0.0108593972424451,0.013052863077299,0.015268731716764,0.0174657778957361,0.0195934136693956,0.021896016951755,0.0237265195636125,0.0259322782405077,0.0280444019217513,0.0301509608944304,0.0320379831759302,0.0337922403003754,0.0360717912582122,0.0383940529709189,0.0402588215712383,0.0420840847727959,0.056639645662711,0.0705093974137479,0.0836106008921542,0.0972989467260119,0.1101277439635439,0.1263009815535623,0.1377111450640862,0.1500133056575656,0.1606978781597897,0.1710814172958133,0.1832925896809072,0.1952108502146897,0.2077950324068032,0.2184811482667774,0.2279657660829006,0.2391600491743363,0.2488308499358223,0.2575641688974872,0.2665675638872498,0.2747228838402345,0.2819012374233838,0.2892105847823291,0.2956577266922094,0.3009906445778081,0.3070132834697297,0.3125877744105255,0.3175762730945798,0.322185898006691,0.3264529161918574,0.3313459610615734,0.3310816266114056,0.3288599832249371,0.328371031801921,0.3277241737924659,0.3272003682748994,0.3256886355976346,0.3244064096682854,0.3250980199156782,0.3256131720981075,0.3271647857945124,0.3274792616396383,0.3282528540725989,0.329389879397195,0.3297382993926402,0.3299248697822904,0.3311789846763265,0.3321095173041894,0.3347464280106767,0.3363907924793534,0.3394062078272604,0.3411989795918367,0.3417533432392273,0.3424623272681798,0.3464799394398183,0.3478747203579418,0.3513064133016627,0.351761102603369,0.3515530455828963,0.34201052340072,0.3477927063339731,0.0,2.1127122596448547,53.03991575597495,174.81159145962926,260.9210983833472,fqhc7_100Compliance_implementation_low_initial_treat_cost,73 -100000,95669,44677,423.7527307696328,6316,64.74406547575495,4914,50.674722219318696,1944,19.943764437801168,77.38307130315455,79.75890692044264,63.34642469116329,65.09722336044074,77.13391714717012,79.51223737918153,63.25342090931602,65.00810339162611,0.2491541559844279,246.66954126111307,0.0930037818472726,89.11996881462869,143.07942,100.69551629552744,149556.4916535137,105253.85370133218,369.53032,241.44848310025532,385490.5350740575,251611.21765593384,363.18416,176.30927922803036,375181.7307591801,180915.4021664076,3214.05887,1466.2139478147535,3317013.1181469443,1490102.5776748513,1167.26252,513.9175851197148,1200237.966321379,517490.813173874,1902.27858,803.2998843336123,1952937.8795639127,808743.9281739173,0.38131,100000,0,650361,6798.022347886986,0,0.0,0,0.0,31817,331.86298592020404,0,0.0,33341,344.01948384534177,1668592,0,59995,0,0,0,0,0,58,0.5958042835192173,0,0.0,1,0.0,0,0.0,0.06316,0.1656395059138234,0.3077897403419886,0.01944,0.3273495248152059,0.672650475184794,24.614326127176778,4.353144102210671,0.3213268213268213,0.2252747252747252,0.2321937321937321,0.2212047212047212,11.012869253174395,5.673608005752497,20.764547868114235,12298.637864803648,55.70975578957424,13.217479616123534,18.07941471303627,12.637050572807174,11.775810887607246,0.5653235653235653,0.7687443541102078,0.707409753008233,0.6117440841367222,0.1030358785648574,0.7171945701357466,0.906801007556675,0.8669724770642202,0.7211155378486056,0.1322314049586777,0.5091973244147158,0.6915492957746479,0.6465441819772528,0.5808988764044943,0.0946745562130177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021967342558942,0.0041740117115474,0.0063285362217421,0.0085096876396279,0.0107264501042143,0.0130907906389649,0.0153214132805969,0.0173013912564178,0.0194821788149193,0.0216716998515637,0.0239088756061802,0.0262366121396958,0.02813888431792,0.0301491491903918,0.0324038253226455,0.0342617952560591,0.036362506215813,0.0384763090975141,0.0402674792266813,0.0423137050547159,0.0574476087001943,0.0719049363974244,0.0853923389254351,0.0982575685878629,0.1103449003047269,0.1262185193800089,0.1384804571137802,0.1495442410576585,0.1597554208639235,0.1703062383472987,0.1841040649006907,0.1962264150943396,0.2075434782608695,0.2173033830682625,0.2276992464660909,0.2378815578084316,0.2472164833324027,0.2554624498806145,0.2643000715429428,0.272090677791276,0.2788266753099425,0.2865121834127607,0.2934129607905869,0.2998595758470457,0.3058724791398058,0.3112753565964167,0.3157373886682784,0.3201569446744544,0.3255910464407527,0.33002087903375,0.3292466048717396,0.3282959659771254,0.3273275388451406,0.3259848211058908,0.3242190982851368,0.3221443577200865,0.3217664115605837,0.3226092525989062,0.3226689478186484,0.3246300664808063,0.3252845422094305,0.3259190669451121,0.3272548773864728,0.3290086716155063,0.3303573565666962,0.331604874254602,0.3322953232929453,0.3360514887368388,0.3388461538461538,0.3402947434786035,0.3433390768114627,0.3451546609053064,0.3452455329251531,0.3460087520748453,0.3449461166852471,0.3487311425564261,0.3529146634615384,0.3532651455546813,0.3514745308310992,0.354275092936803,0.0,2.632217316025766,57.95040510752798,180.53781561462637,270.8947532280391,fqhc7_100Compliance_implementation_low_initial_treat_cost,74 -100000,95697,44375,419.91911972162137,6078,62.32170287469827,4783,49.42683678694212,1908,19.64533893434486,77.3960056150407,79.77969808170407,63.35197710932333,65.1128748227363,77.16251882761468,79.54629632310476,63.26575019353693,65.02898734741873,0.2334867874260311,233.40175859931375,0.0862269157863977,83.88747531756735,144.5994,101.70634599705409,151101.28844164393,106279.555259887,372.05227,243.1482013049333,388221.2086063304,253531.61240488227,362.10564,175.5843097126405,374432.0616111268,180537.90392205096,3142.76507,1430.6953282034087,3250350.1468175594,1462145.8091278863,1125.83969,496.2375938364731,1165686.3538041946,508078.6809486143,1869.67034,780.6967433372077,1925709.7087683,790969.9181325136,0.37762,100000,0,657270,6868.240383711088,0,0.0,0,0.0,32022,334.0334597740786,0,0.0,33125,342.2364337440045,1665569,0,59629,0,0,0,0,0,69,0.7210257374839336,0,0.0,1,0.0104496483693323,0,0.0,0.06078,0.1609554578676977,0.3139190523198421,0.01908,0.3278327832783278,0.6721672167216721,24.75503114407942,4.412118678172472,0.3211373614886055,0.2283085929333054,0.227263223918043,0.223290821660046,10.952499026612545,5.50988625140577,20.15710861883653,12186.524417200984,53.94209356781634,12.870800130406014,17.32229868513887,12.12110455703604,11.627890195235416,0.5515366924524358,0.7783882783882784,0.6881510416666666,0.5740570377184913,0.1001872659176029,0.721324717285945,0.936842105263158,0.8257575757575758,0.7330677290836654,0.1232227488151658,0.4922425952045134,0.6938202247191011,0.6403508771929824,0.5263157894736842,0.0945157526254375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022184628787341,0.0044209202814787,0.0065467611294939,0.0086156972313944,0.0107012796777409,0.0133283101861279,0.0155082231308053,0.0177030903837711,0.0198227302002719,0.0220887028260847,0.0240109084571299,0.0262023081030021,0.0282414406631493,0.0303145794277002,0.0326145274453157,0.0347525868039404,0.0366775770633079,0.0387473791285213,0.0408091102906765,0.0429399257931379,0.0574269628886869,0.0711856247318242,0.0846750086531502,0.096907823490448,0.1090368621333024,0.125,0.1368039126237282,0.1478315484681385,0.1583377844247409,0.1689708800343218,0.1812600969305331,0.1934147475905634,0.2045034667130344,0.2143598823928036,0.2241877851684899,0.2338166924950188,0.2436179111135894,0.2530864890975881,0.2621388920357992,0.2705603950888264,0.2774776022905699,0.2840568207019714,0.2906204974372298,0.2968987334202437,0.3032543482213199,0.3092019563988497,0.3142882087355633,0.3188341489388676,0.3231791497322753,0.3268110510605284,0.3258615370169155,0.3246580599183181,0.3240506684642175,0.3227084744297304,0.3220831172679457,0.3217721982956107,0.3203967840275474,0.3207939601382224,0.3202529703561018,0.3207194372718369,0.3215947961644143,0.3219026984439629,0.3226863055995994,0.3235483799230547,0.3244363514387713,0.3233590482869685,0.3245494729683781,0.3282229746676699,0.3298088369161823,0.3330820803744991,0.3349317258071882,0.3372303114039749,0.3393093870336469,0.3423917180482606,0.3462920923193341,0.3502818083703082,0.3486690260040006,0.3476132190942472,0.3569256289742881,0.361380379992245,0.0,2.143692741431956,54.120756346124686,179.10168849558502,267.0732822267975,fqhc7_100Compliance_implementation_low_initial_treat_cost,75 -100000,95824,44768,422.8377024545,6297,64.62890298881283,4955,51.14585072633161,1937,19.880197027884456,77.38566316619061,79.70802204734541,63.36611244363343,65.08481137426895,77.1473389868922,79.46899662845847,63.27877896855309,64.999359248473,0.2383241792984165,239.0254188869392,0.0873334750803422,85.4521257959533,143.81862,101.25868414831328,150086.2205710469,105671.52712088128,373.59019,243.9105370481148,389306.4368008015,253975.3579981161,369.08281,179.98107868710082,381329.9486558691,184820.0779507265,3255.59197,1479.0884515186665,3362828.2580564367,1508904.900148884,1174.37506,517.9227866035039,1208536.7861913508,523503.6075793774,1896.25844,787.6824447184125,1947667.995491735,795135.8511993341,0.382,100000,0,653721,6822.100935047587,0,0.0,0,0.0,32141,334.8326097846051,0,0.0,33735,348.2947904491568,1668357,0,59859,0,0,0,0,0,70,0.7200701285690433,0,0.0,0,0.0,0,0.0,0.06297,0.1648429319371727,0.3076067968874067,0.01937,0.3343409915356711,0.6656590084643289,24.74446060741376,4.378585598281849,0.3313824419778002,0.224217961654894,0.2250252270433905,0.2193743693239152,10.934074466899895,5.642961791319372,20.562140520629395,12337.655757430572,56.07057657462294,13.301435604998574,18.48945907617656,12.435036792454136,11.84464510099367,0.5600403632694249,0.7902790279027903,0.6881851400730816,0.5721973094170404,0.1186752529898804,0.743140243902439,0.9219858156028368,0.8394495412844036,0.7294117647058823,0.1666666666666666,0.4940982706560527,0.7093023255813954,0.6334991708126037,0.5255813953488372,0.107986501687289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396432803621,0.0046125928854556,0.0071855558149211,0.0094995224838965,0.0117986899385654,0.0138784237857651,0.0161249222803208,0.0182977854883151,0.0205222545863355,0.0227084335376648,0.0248314169177478,0.026984029231843,0.0291369901026732,0.0313538996798731,0.0333996720871959,0.0355523420957496,0.0376524879199561,0.0396144278606965,0.0416787805789757,0.0435366221658012,0.0590057576769025,0.0726888823849145,0.0857124889950949,0.0978220900791107,0.1103960396039604,0.1256785586042287,0.1380888319227143,0.1500095649031819,0.1613109648795367,0.1715662650602409,0.1838299336552006,0.1959151491586201,0.2076956474546836,0.2178349649128551,0.228534091782612,0.2394092155302025,0.2486438922242395,0.256929781212094,0.2652235965746907,0.2734256221493158,0.2808912194783894,0.2875198394174213,0.2941627810895355,0.2995350949529717,0.3048643150361463,0.310394793393504,0.3144817263315455,0.3193442456669751,0.3236736801342455,0.3282456809778818,0.3282163644428911,0.3275819435667775,0.3264456416243512,0.3257784642924167,0.3247580309957841,0.3232457751653196,0.3224462642358196,0.3229601393316026,0.3240772444018352,0.3248358646845203,0.3251659105395373,0.3268214476575025,0.3274598964254137,0.3284309322795042,0.3284885126964934,0.3295988245480544,0.3298451834862385,0.3341864139020537,0.3361237681466568,0.3397077610986905,0.3422689844464776,0.3459881958845111,0.3482869581677077,0.3494058500914077,0.3527462121212121,0.357202530134861,0.3620981387478849,0.3670245088110188,0.3671059857221307,0.3657794676806083,0.0,2.140205331850108,57.488813042102734,184.6220265570824,274.71260304563395,fqhc7_100Compliance_implementation_low_initial_treat_cost,76 -100000,95772,44509,421.05208202815015,6204,63.4841080900472,4818,49.795347283130766,1952,20.12070333709226,77.37657405990127,79.72113853825145,63.3458979718325,65.07891082207229,77.1322109642824,79.47419730546407,63.25489044306573,64.98849067798736,0.2443630956188798,246.94123278737837,0.0910075287667666,90.4201440849306,144.80092,101.85281451749502,151193.37593451113,106349.26128460826,370.06452,241.6666464798649,385826.0765150565,251759.88439195688,362.87076,176.63237586176626,375010.09689679655,181541.08690740517,3188.24069,1468.2722463562611,3299079.971181556,1503242.2680493908,1163.79585,517.2026615014094,1205166.5831349457,530028.5589748666,1925.1455,816.0859233466899,1986346.8863550932,832763.6988211635,0.38036,100000,0,658186,6872.426178841414,0,0.0,0,0.0,31842,331.94461846886355,0,0.0,33233,343.1274276406465,1663524,0,59635,0,0,0,0,0,66,0.6786952345153071,0,0.0,1,0.0104414651463893,0,0.0,0.06204,0.1631086339257545,0.314635718891038,0.01952,0.3391812865497076,0.6608187134502924,24.564781902256644,4.408060955501166,0.3273142382731424,0.2189705271897052,0.2202158572021585,0.2334993773349937,11.02663058151978,5.5399648164071404,20.88060594783007,12266.637898510526,54.52707543989965,12.600453443259887,17.744601172040113,11.783682966795372,12.398337857804268,0.5579078455790785,0.7876777251184834,0.7006975269499048,0.5786993402450519,0.1226666666666666,0.7234701781564679,0.927860696517413,0.8842105263157894,0.6752767527675276,0.1764705882352941,0.4973064927700595,0.7013782542113323,0.6424394319131161,0.5455696202531646,0.1082299887260428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802289071204,0.0049975164472016,0.0072546114977982,0.0096001462879434,0.0118786103653079,0.0140833596399222,0.0163045140765363,0.018356679054192,0.0204563577255719,0.0223461971542634,0.0246292291451002,0.0268425374666392,0.0290114318611727,0.0312767118773236,0.0332497704600084,0.0351424820928381,0.0371102850575188,0.0390867314654412,0.0412183585425437,0.043051288726894,0.0579437886805055,0.0721008051866569,0.0845728901328134,0.0974599871790829,0.110087682320209,0.1259090140368679,0.1376773181230254,0.1498068758578861,0.159973941089775,0.1701053037939391,0.1833299227778436,0.1950860641992405,0.2071842737943713,0.2169617261527014,0.2261022733527825,0.2359539353365624,0.2455585952766456,0.2540827696428772,0.2624052299450674,0.2707138030943301,0.2788351401696151,0.2863825606960752,0.2928118643266001,0.2979148951459334,0.3032095825841878,0.3077273847670693,0.3135837969619303,0.3192554475573343,0.3236941142997556,0.3281033687125058,0.3269442726955026,0.3258354402550291,0.3249184293429343,0.3245783758807901,0.3236249795991038,0.3219794344473007,0.3211358962189527,0.3217448343719252,0.3226329719115512,0.323260954825828,0.3238671487177565,0.324448130158354,0.325290100959323,0.3266644362663098,0.3279550529424476,0.3288109994271131,0.3297403373055373,0.3310364268487487,0.3346882994007779,0.3384151183103065,0.3393541324575807,0.3428510660924124,0.3456673588823862,0.3459344337111128,0.3456165025785279,0.3453424982223275,0.3487022900763358,0.3493109646494907,0.3572589382448537,0.3741547708489857,0.0,1.98712230018216,56.64107991151784,179.0937986286909,264.9501784165359,fqhc7_100Compliance_implementation_low_initial_treat_cost,77 -100000,95749,44718,422.55271595525807,6233,64.00066841429154,4897,50.53838682388328,1943,19.895769146414064,77.3313489084019,79.69767613661146,63.31030609897547,65.06317967104633,77.09088105146668,79.45963171137669,63.22248309836995,64.97903113689848,0.2404678569352256,238.04442523477576,0.0878230006055176,84.14853414784318,143.77748,101.162261318944,150160.8163009535,105653.59567091455,373.08553,243.4689125987374,389032.17788175336,253660.92867678768,367.13064,178.33378633668218,379775.61123353767,183432.9574078073,3230.10552,1467.8689535166866,3336960.354677333,1496485.188896684,1178.32649,518.4098104475855,1219099.6877251982,529884.4692347544,1909.98218,794.4591005723919,1958478.6472965772,798294.4656043974,0.38069,100000,0,653534,6825.491650043343,0,0.0,0,0.0,32052,334.1131500067886,0,0.0,33614,347.3561081577876,1662892,0,59706,0,0,0,0,0,70,0.7310781313642962,0,0.0,1,0.0104439733052042,0,0.0,0.06233,0.1637290183613964,0.3117278998876945,0.01943,0.3246474555487431,0.6753525444512569,24.708799873189072,4.398131002764979,0.324280171533592,0.2197263630794363,0.2293240759648764,0.2266693894220951,11.143768392610593,5.717921602489114,20.74377134127617,12319.338821990556,55.60450866698462,12.94910315008482,17.91577526653335,12.470447241533105,12.269183008833364,0.5619767204410864,0.7862453531598513,0.6977329974811083,0.6019590382902938,0.1099099099099099,0.7452326468344775,0.9119804400977995,0.9057071960297768,0.7984189723320159,0.1504065040650406,0.4949804796430563,0.7091454272863568,0.6270042194092827,0.5448275862068965,0.0983796296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022695265402891,0.004390723708894,0.0067191068256787,0.0089615931721194,0.0114244440375185,0.0137690827061543,0.0159476297784258,0.0181443172651806,0.0204563818797369,0.0226867689534383,0.0250864075977149,0.0270717323853946,0.0291139240506329,0.0314239188687801,0.0334640792733278,0.0352918062621499,0.037567047031292,0.0396397144280259,0.041580473809499,0.043557509035423,0.0574751038643813,0.0714883643060438,0.0841174434339302,0.0973216820719896,0.1095553892057735,0.1256305853735921,0.137710762831464,0.1486617460672482,0.1599700790767258,0.1704218703059954,0.1833229164421647,0.1956126293906189,0.207804081632653,0.2189360770577933,0.2282320302092851,0.2384658020175147,0.2480123280328747,0.2570881872924757,0.2658533817521561,0.2732949857915482,0.2797712751180665,0.2859852476290832,0.2930072167513953,0.2988534725973948,0.3048402204191857,0.3105719536713826,0.3154396023986279,0.3204028110200132,0.3246071261864011,0.3295002970493101,0.3286538046992886,0.3269278384549781,0.3265783210578941,0.3249302957195071,0.3243860820535648,0.32272817657586,0.3210978731472995,0.3218688524590164,0.322880907243258,0.3237854034386816,0.3249138705811863,0.3266491494952289,0.3278489491752491,0.3291608923063168,0.3315293212103719,0.3321857966251988,0.3311045353667558,0.3338156653035545,0.3374453686733399,0.3416989187248134,0.3447630353392384,0.345847916003818,0.3478042028438404,0.3517393285735987,0.3521731020332027,0.352309846010266,0.3605156648178684,0.3685759121224009,0.3691113490364026,0.373218304576144,0.0,2.3631506435139027,57.71878814164092,180.62748405394757,271.58517364862524,fqhc7_100Compliance_implementation_low_initial_treat_cost,78 -100000,95494,44697,423.3040819318491,6188,63.56420298657508,4872,50.474375353425344,1871,19.25775441388988,77.22623088476638,79.71521888868871,63.24095407219974,65.077237955037,76.99270683457317,79.48083522346718,63.154213718110526,64.99268049832526,0.2335240501932105,234.3836652215288,0.0867403540892155,84.55745671174952,143.88066,101.25561457928224,150669.84313150565,106033.48333851575,372.90309,243.5477957046158,389935.91220390814,254476.8317429532,362.39051,175.8479167613602,376343.2781117138,181716.34482272025,3198.62642,1461.7152331889183,3314234.077533667,1495364.6335779396,1159.50912,510.7413254778929,1202539.0809893815,523158.39265073487,1833.7336,771.541032060485,1889165.183152868,780081.8390501206,0.38157,100000,0,654003,6848.629233250256,0,0.0,0,0.0,32118,335.75931472134374,0,0.0,33164,344.1472762686661,1657304,0,59481,0,0,0,0,0,65,0.6806710369237858,0,0.0,0,0.0,0,0.0,0.06188,0.1621720785177031,0.3023594053005817,0.01871,0.3361590628853267,0.6638409371146733,24.55331591038515,4.357878295939585,0.3261494252873563,0.2352216748768472,0.2208538587848932,0.2177750410509031,11.080250331142803,5.717783587180213,19.972264341256484,12370.32941737678,55.18578548070397,13.652151422934532,17.957080766007206,11.948271787575946,11.6282815041863,0.5638341543513957,0.7530541012216405,0.7010698552548773,0.5817843866171004,0.1357210179076343,0.7361963190184049,0.8872901678657075,0.8567961165048543,0.749034749034749,0.199074074074074,0.5008408071748879,0.6762688614540466,0.6465590484282073,0.5287637698898409,0.1195266272189349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.004554353008003,0.0069039738461226,0.009150991357397,0.0117181136992995,0.0137797482545991,0.016204246982112,0.0185866388735618,0.0207985922841621,0.0229298579947132,0.0251272786992938,0.0275755706354102,0.0295319981465273,0.0316019637773835,0.0335902628533641,0.0355641604373304,0.0376041245241133,0.0395634095634095,0.041705301980559,0.043816047784136,0.0593604438164023,0.0734834337033384,0.0860333785531753,0.0986203480222177,0.1113424286937132,0.126176545408293,0.1389444137285757,0.1500954900935696,0.1614755151878668,0.1716346515602661,0.1842446229593158,0.1960582263103089,0.2085082258539297,0.2185122662398877,0.2272616946160635,0.2372073383485382,0.2467894218722033,0.2560735020573812,0.2651297157740295,0.2731070256374945,0.280280187410122,0.2885014480179155,0.2952328975156016,0.3009278177054539,0.3064883774790038,0.3120176132990302,0.3167366225148918,0.3212651757188498,0.3262290608065082,0.3308442890998398,0.3298737803724424,0.3284288038831738,0.3272873556728679,0.3261592756515953,0.3254504839910648,0.3247335606130409,0.3240062886090422,0.3245361299988475,0.3257982141939022,0.3253273153869575,0.3266620355593939,0.3271485148514851,0.3278781393592245,0.3290189667913205,0.3301211189080073,0.3305356444676137,0.3315564424173318,0.3356841508721113,0.3387964688917806,0.3404424637911825,0.34432,0.3470894412577013,0.34964859437751,0.3507141237814554,0.3527397260273973,0.3570929419986023,0.3618151464562149,0.3687094155844156,0.3685510428100988,0.3788748564867968,0.0,2.0674478379685794,57.48859250159202,176.88223388831872,273.3201181135403,fqhc7_100Compliance_implementation_low_initial_treat_cost,79 -100000,95714,44567,421.15051089704747,6335,65.04795536703095,4984,51.52851202540903,2041,20.97916710199135,77.36399481233721,79.74718890090318,63.33329461681414,65.09660913046166,77.1043523949014,79.48876522789624,63.23750878834702,65.00408592197131,0.2596424174358134,258.4236730069449,0.0957858284671218,92.52320849034844,144.47356,101.66622299787338,150942.97594918194,106218.75900899908,374.81721,244.79663994545632,391032.15830495016,255189.5710109381,367.00762,178.46260075786597,379991.0462419291,183814.1928905396,3288.82943,1504.2218155316052,3399977.0984391,1535470.3511582692,1195.44207,534.0588111943592,1235031.1239735044,544148.5495998148,2000.3195,841.8407398971193,2055967.2357230915,849091.2380525888,0.38141,100000,0,656698,6861.044361326452,0,0.0,0,0.0,32337,337.254738073845,0,0.0,33653,348.2249200743883,1660662,0,59621,0,0,0,0,0,72,0.7522410514658253,0,0.0,0,0.0,0,0.0,0.06335,0.1660942293070449,0.3221783741120758,0.02041,0.3319752527538856,0.6680247472461144,24.551818463498048,4.448718236509975,0.3276484751203852,0.2215088282504012,0.2207062600321027,0.2301364365971107,11.242184724718246,5.740538460807776,21.827860214412397,12283.510792690648,56.44137786291645,13.109745347947385,18.43412162069884,12.302277773105944,12.59523312116428,0.5551765650080257,0.782608695652174,0.6938150642988365,0.5754545454545454,0.1194420226678291,0.7080561714708056,0.9185185185185184,0.831353919239905,0.7245283018867924,0.1679389312977099,0.4982098595428256,0.703862660944206,0.6460396039603961,0.5281437125748503,0.1050847457627118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505334292459,0.0046244181447564,0.007136766019654,0.0093704900705327,0.0117829015649484,0.0139474703017706,0.0160961279529968,0.018342252542996,0.0206294171192456,0.022814077555576,0.025073579932932,0.027442562675239,0.0296138575160978,0.0319835136527563,0.0341194076061716,0.0361566616348559,0.038161533919637,0.0399306816648852,0.0416411130630021,0.0436658018941643,0.0581072331181987,0.0717926710557992,0.0849349559378934,0.0982932497660185,0.1099106126407218,0.1257995961048435,0.1374461858206264,0.1483246463142219,0.1596605465414176,0.1696566358024691,0.1825675239427526,0.1950267159884915,0.2065568422769532,0.2173390051067831,0.2266321984489302,0.236932717751132,0.2469798208529008,0.2555837963067096,0.2647058823529412,0.2723473441954727,0.2794503753224071,0.2857877813504823,0.292305325079598,0.2981781133884694,0.3036300021867483,0.3087811368172075,0.3145098726194349,0.318912803040897,0.3234343068525752,0.3283214295126901,0.3274032837145508,0.3262521470285125,0.3254099974682832,0.3241233958396489,0.3238636363636363,0.3226639369308806,0.320360605008052,0.3212884238064094,0.3228370580926282,0.3229381994440088,0.3234886508352685,0.3247692642147078,0.3256369426751592,0.3252185608607935,0.3264937938997402,0.3265338145300486,0.327411603158256,0.3315078840524974,0.3347532211504612,0.3400389615552817,0.3403558265459344,0.3398516163222045,0.3395475227502528,0.3457556935817805,0.3502137767220902,0.349550629119233,0.3473193473193473,0.3531114327062228,0.3538806388344074,0.3621769772905246,0.0,1.9873138158403776,59.74101163451579,183.67169093759415,272.0343911453519,fqhc7_100Compliance_implementation_low_initial_treat_cost,80 -100000,95664,43879,415.8304064224787,6094,62.4581869877906,4819,49.73657802308078,1905,19.5266767017896,77.31725194233033,79.72555915747971,63.30264576078415,65.08497665768436,77.07599911731022,79.48750387474256,63.21317687484781,65.0002978987272,0.241252825020112,238.05528273715024,0.0894688859363412,84.67875895716759,142.52678,100.22838929340412,148986.84980766015,104771.271631339,365.87371,238.2853449013511,381859.92640909855,248488.5797179201,352.7439,170.54434146718629,365001.8815855495,175427.180357376,3199.06105,1446.986562064313,3305399.4919719016,1473911.6930760902,1193.07874,519.5346302171939,1231680.015470815,527607.3133228741,1883.09978,784.5629446923043,1932262.585716675,786161.7648723964,0.3778,100000,0,647849,6772.129536711825,0,0.0,0,0.0,31544,329.0997658471316,0,0.0,32371,334.60863020572003,1677704,0,60171,0,0,0,0,0,63,0.6585549422980431,0,0.0,1,0.0104532530523498,0,0.0,0.06094,0.1613022763366861,0.3126025598949786,0.01905,0.3297888975762314,0.6702111024237686,24.58596987440252,4.425418465152692,0.3237186138202946,0.2232828387632288,0.2162274330774019,0.2367711143390745,11.105660645208609,5.594678650788343,20.15052980356785,12192.398818117916,54.47432773465714,12.865715283826953,17.53890757699718,11.683141055496074,12.386563818336937,0.5534343224735422,0.775092936802974,0.691025641025641,0.5902111324376199,0.1226993865030674,0.7352226720647773,0.9250645994832042,0.8567639257294429,0.735632183908046,0.1666666666666666,0.4907924107142857,0.690856313497823,0.6382079459002535,0.5416133162612036,0.112781954887218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024213075060532,0.0049485372407848,0.0071039305032627,0.0088813015069759,0.0111308948466195,0.0130997249668941,0.015210250341746,0.017438296829029,0.0199095578154733,0.0218017150409294,0.0238845171285229,0.0260386160691348,0.0279579190085026,0.030053715216562,0.0320478393786664,0.0341127780651836,0.0362622325427102,0.0379794161326839,0.0399954219600253,0.0419390148553557,0.0563472991327969,0.0698105501272424,0.0830332489947612,0.0955868426036997,0.1073105369219569,0.1226556877354896,0.1344853573361921,0.1459047821919267,0.1575622842362899,0.1673086207821469,0.1806370991198681,0.1937708396483783,0.2055398345668262,0.2151958316001488,0.224456976692955,0.2343585480742588,0.2439936169975338,0.252713753810504,0.2615482348670478,0.2695341568685816,0.2775001156925355,0.2850644870850434,0.2915828342840911,0.2972532476870715,0.3035670894688244,0.308844560607555,0.3136584938484837,0.3185967856779574,0.3232314082739166,0.3271349499209278,0.3267666240839104,0.3251995658326807,0.3252776606213974,0.3245988687521643,0.3239281679253136,0.3232420826623725,0.3215744640425599,0.3217088628378156,0.3226059654631083,0.3239624928693668,0.3246400688970849,0.3262719393496673,0.3268315191174311,0.3274704618689581,0.3272196346260588,0.3284616189081782,0.3288249728927695,0.3309329895286311,0.3345287065358788,0.3400492767445557,0.3424037318210921,0.3452317527970165,0.3480156723963599,0.3484581834876425,0.3512264150943396,0.3529759791740622,0.3490522422561257,0.3532287634956202,0.3485218334689449,0.3446840711312902,0.0,2.5420796507138417,53.76822444874752,180.1016224607403,272.9409348329015,fqhc7_100Compliance_implementation_low_initial_treat_cost,81 -100000,95859,44388,419.991863048853,6124,62.790139684328025,4789,49.40589824638271,1904,19.46609082089319,77.4717338221379,79.75864617638805,63.40399372213196,65.09089059030752,77.23447131857064,79.52396457253299,63.31590916984624,65.00673825204919,0.2372625035672655,234.68160385506565,0.0880845522857214,84.15233825833468,144.96482,101.87301814091391,151227.13568887635,106273.8168986886,369.55411,241.22404703108072,384993.4487111278,251119.6726766196,358.38449,174.04145873513772,370766.9285095818,179047.74251947657,3151.06837,1434.443270722247,3253132.98699131,1462351.6317948736,1137.37495,498.4434671251801,1173841.7780281454,507309.1802806,1867.87462,783.971490304709,1912266.1408944384,786485.154697373,0.38035,100000,0,658931,6873.960713130745,0,0.0,0,0.0,31853,331.7372390698839,0,0.0,32887,340.03067004663103,1666657,0,59778,0,0,0,0,0,51,0.5215994324998174,0,0.0,0,0.0,0,0.0,0.06124,0.161009596424346,0.3109079033311561,0.01904,0.320772345063843,0.679227654936157,24.87197705144913,4.418940140647142,0.3092503654207559,0.2361662142409689,0.2305282940070996,0.2240551263311756,11.181875684957978,5.7274185622519695,20.25795206035501,12261.706314411733,53.94281479568114,13.348504465221485,16.697864812990016,12.271143533434527,11.625301984035108,0.5560659845479223,0.7771883289124668,0.7022282241728561,0.5652173913043478,0.1118359739049394,0.7143968871595331,0.927007299270073,0.8346456692913385,0.7093023255813954,0.1531914893617021,0.4980022831050228,0.6916666666666667,0.6563636363636364,0.5212765957446809,0.1002386634844868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024091507237574,0.0046499376969132,0.0069764140420612,0.0092671538773853,0.0116860417852207,0.0140303397193932,0.0160846711759432,0.0182682401901284,0.0206993035557461,0.0228565000409064,0.0247242336409353,0.0269937643583852,0.0290727537958948,0.0311561098077952,0.0331312881411842,0.0351208732199469,0.0367742135697365,0.0387728662486396,0.0404764129881727,0.042262902101177,0.0564355506428772,0.0706079138570905,0.0838293858729826,0.0964149119488925,0.1078776508284497,0.1235053442862127,0.1354887967508987,0.1474605842677503,0.1585706965025408,0.1691549220299019,0.1820099215530136,0.1943910083216254,0.2054812369701181,0.2158562414026507,0.2257462276790617,0.2362941020426209,0.2465693918467364,0.2562113370232736,0.2648027991982878,0.2729579879965704,0.2796153268913287,0.2865408394186128,0.2928076328125922,0.2983735948337718,0.3037254497591984,0.308640151655034,0.3132347980359575,0.3185899145364267,0.3231329878655519,0.3283756926438264,0.3275067514006637,0.3269945295254809,0.3259777085263483,0.3251428653682832,0.3247172381121573,0.3224296214963247,0.3206310182339684,0.3214595009722381,0.322180284946785,0.3230657245321876,0.3241132504519953,0.3255306603773585,0.3270272522710226,0.328382764907288,0.3288414211645521,0.3301099242974178,0.3320599886813808,0.3353725147476513,0.3376348562111909,0.3419615852940021,0.3444444444444444,0.3466863188924567,0.3474013775829681,0.3508771929824561,0.3539898132427844,0.3536962205847397,0.3528250303766707,0.3551102204408817,0.356290672451193,0.3559001512859304,0.0,2.208495301822959,56.38755145350897,173.33291494148546,264.7881525652653,fqhc7_100Compliance_implementation_low_initial_treat_cost,82 -100000,95730,44834,423.4513736550716,6369,65.18332811031024,4950,51.01848950172359,1981,20.28622166509976,77.34438518034166,79.70055449345371,63.33412346583962,65.07348148939077,77.0877883854912,79.44565691574373,63.238430620036816,64.98163632580506,0.2565967948504664,254.89757770998267,0.0956928458028016,91.8451635857167,144.6368,101.81073574995207,151088.26909014938,106351.96464008364,373.45776,244.2852784404896,389447.1116682336,254513.07358511703,368.6146,179.43001227377823,380675.2951008044,183915.410224811,3237.79036,1486.4720104584098,3339846.464013371,1510425.4646554794,1178.92961,527.8464824156166,1216562.0704063512,536438.8558178965,1933.1775,823.3337657971182,1981038.8175075732,825611.5238714688,0.38258,100000,0,657440,6867.64859500679,0,0.0,0,0.0,32127,334.8897942128904,0,0.0,33732,348.08315052752533,1659065,0,59564,0,0,0,0,0,72,0.7416692781782095,0,0.0,0,0.0,0,0.0,0.06369,0.1664749856239218,0.3110378395352489,0.01981,0.3291498580606604,0.6708501419393396,24.79116834132404,4.393464544716873,0.3309090909090909,0.2234343434343434,0.2274747474747474,0.2181818181818181,11.1966400646112,5.855950775961206,21.356872944973325,12409.36867673451,56.21555202072637,13.167613943086602,18.511013615101888,12.648878856392807,11.888045606145074,0.5666666666666667,0.8019891500904159,0.6965811965811965,0.5817051509769094,0.1129629629629629,0.7315589353612167,0.9338624338624338,0.8530120481927711,0.7272727272727273,0.1991525423728813,0.5070151306740027,0.7335164835164835,0.6434995911692559,0.5321428571428571,0.0888625592417061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.0051605446453012,0.0076806785783134,0.0099225089627575,0.0122923317811171,0.0144350676452923,0.0165813986669656,0.018786672789428,0.0210481143546096,0.0232684259534017,0.0253711920156571,0.0276198296212665,0.0297456250385572,0.0317308286473459,0.0337855263836591,0.0359014106340102,0.0379368168267638,0.0400199114355937,0.0421637913115776,0.0439039633352429,0.0582259714768954,0.0720550066979236,0.0860622207304537,0.0987706254140857,0.1105674424490398,0.1266536244910907,0.1387642535136568,0.1499207303448496,0.1615539082694238,0.1720847450358107,0.1850157185306403,0.1980744266551276,0.2103231558803062,0.2203856749311294,0.23045788009107,0.2409158344589358,0.2499190893365325,0.2588293516893867,0.2671878723235257,0.2747752390769054,0.2818397454440266,0.2887586013200393,0.2946294345340262,0.2998344450309516,0.3059721445759704,0.3113793146002246,0.3170138627760648,0.3213215892722846,0.3264956821659189,0.3307568310343005,0.329848152090435,0.328570445316264,0.3282822587465817,0.3280793591115481,0.3266438559952395,0.3259271761980021,0.3249051632461946,0.3243389897395422,0.3253966895465671,0.3251538131349263,0.3257655358751126,0.3266936999307684,0.3277326788748348,0.3283879787543982,0.3287003522995994,0.330781890853993,0.3328954882924043,0.3354679958358307,0.3386040287364417,0.3420853118391125,0.3427892741309213,0.3465087747372913,0.3502144298688194,0.3530035603363382,0.3550295857988165,0.3561546647747428,0.3604045357033404,0.3651708522025524,0.3678929765886287,0.3689320388349514,0.0,2.657244217696141,57.12002931234438,188.97501316504503,269.8201920089969,fqhc7_100Compliance_implementation_low_initial_treat_cost,83 -100000,95677,44616,422.32720507541,6209,63.7352759806432,4857,50.25241176040218,1971,20.266103661277004,77.28108161739658,79.66903123397752,63.29287913429015,65.05620542069865,77.0382707228139,79.424826792379,63.20416260446122,64.96885260802735,0.242810894582675,244.2044415985265,0.088716529828936,87.35281267129835,144.4927,101.63493020159892,151021.35309426507,106227.12898773888,370.42496,242.08338010190337,386659.3956750316,252518.9231496633,363.52448,176.56855636413843,376311.46461532026,181741.576855712,3207.0801,1453.5649569329105,3321915.6537098777,1489170.957422274,1165.17529,511.72070803148233,1206069.891405458,523090.092740661,1931.8641,799.4494764188927,1989235.845605527,811577.6218696547,0.38046,100000,0,656785,6864.606958830231,0,0.0,0,0.0,31962,333.53888604366773,0,0.0,33282,344.3042737544028,1658085,0,59549,0,0,0,0,0,57,0.5853026328166644,0,0.0,1,0.010451832728869,0,0.0,0.06209,0.1631971823581979,0.3174424222902238,0.01971,0.3300137888769726,0.6699862111230275,24.683669728291644,4.518070634236647,0.3209800288243772,0.2281243565987235,0.2188593782170063,0.2320362363598929,11.528036685175737,5.95365081609103,20.8682682253228,12325.104092784686,55.10456928493211,13.212658397093811,17.845573914891336,11.805316657632371,12.241020315314586,0.555692814494544,0.7788808664259927,0.7010904425914047,0.5870178739416745,0.1055900621118012,0.7286821705426356,0.929471032745592,0.8829268292682927,0.7349397590361446,0.1111111111111111,0.4931314830389683,0.6947960618846695,0.6362053959965187,0.5417690417690417,0.1041433370660694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023805905890695,0.0045215381340037,0.0067284370338045,0.0091536203025469,0.0111974452332038,0.0134312247973605,0.0154883047494748,0.0175092906440151,0.0197291081012011,0.0217709495491253,0.023766802350022,0.0257916136186291,0.0282496914849856,0.0306211813676499,0.0324581501434557,0.034553707130967,0.0366691181802173,0.0387445640328389,0.041036469927393,0.0431093785828938,0.0582851889384552,0.0722056436835767,0.0855226559465955,0.0985312375060497,0.1110794615352154,0.127101162581587,0.1391784311644199,0.1505308782654071,0.1615262083195244,0.1719328759622508,0.185033001164747,0.1968728328710124,0.2088900504176058,0.2187671082886236,0.2283743885779756,0.2386201084485645,0.2484383206499268,0.2569658745354206,0.2649221084686445,0.27278253090809,0.2801149332066596,0.2864676103871754,0.2924153472098678,0.2979244739117901,0.3042859228971962,0.3103018486067576,0.3149252983054246,0.319839863322836,0.3250632582884578,0.3294970500304257,0.3282931241646528,0.3274332620542181,0.3270737294606748,0.3254273163518274,0.325445110494766,0.3234332048466606,0.3220909018799079,0.3227203134517558,0.3233989346213795,0.3239864804449293,0.3240571976173922,0.3263011521652761,0.3281832936365744,0.3291406970726548,0.3307052336267776,0.3327232796486091,0.3331807387485336,0.3370520194677959,0.3389264105811172,0.3427730490812187,0.3444170771756978,0.3468334220329963,0.3481280383862618,0.3496662621359223,0.3534426229508197,0.3558569090483984,0.3576118491372728,0.3601208459214501,0.3563249727371865,0.3555469953775038,0.0,1.99416729993251,57.01577712511061,179.33206057575535,271.16635221058493,fqhc7_100Compliance_implementation_low_initial_treat_cost,84 -100000,95711,44121,418.36361546739664,6217,63.53501687371357,4878,50.22411217101482,1999,20.43652244778552,77.3612597271838,79.72753210336758,63.34108899169471,65.08937130988345,77.11196746150307,79.480415216011,63.24766819611099,64.99974633681055,0.2492922656807366,247.116887356583,0.093420795583718,89.62497307290107,144.71996,101.8043274402854,151205.1488334674,106366.38154473926,369.09655,240.78465322403875,384903.1981694895,250841.39046090705,354.47402,172.29711558583423,365317.68553248845,176198.7487976339,3233.39943,1480.2128908418183,3333763.381429512,1502013.071477487,1198.04203,529.1941557392006,1233462.8621579548,534642.5862640663,1959.85546,830.0306666828676,2006542.0275621405,831766.3726284029,0.37939,100000,0,657818,6872.961310612155,0,0.0,0,0.0,31831,331.81139054027227,0,0.0,32589,335.5204730908673,1666618,0,59730,0,0,0,0,0,56,0.5746465923457074,0,0.0,0,0.0,0,0.0,0.06217,0.1638683149265926,0.3215377191571497,0.01999,0.3349143206854345,0.6650856793145655,24.61120858196989,4.379623038093898,0.3288232882328823,0.2166871668716687,0.2252972529725297,0.2291922919229192,10.986696897865102,5.644348737040265,21.388604730255505,12237.12259272223,55.41127851479381,12.696896707008166,18.17214463051215,12.188264268932452,12.35397290834102,0.5506355063550635,0.7729422894985809,0.6938902743142145,0.5768880800727935,0.10912343470483,0.7083653108211819,0.9143576826196472,0.8386308068459658,0.7380952380952381,0.1265306122448979,0.4931468531468531,0.6878787878787879,0.6443514644351465,0.5289256198347108,0.1042382588774341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0047043555843945,0.0070426823080513,0.0090012292875212,0.011319027763653,0.0133602166961976,0.0152550323251687,0.017480982284168,0.0196100483605467,0.0216113841113841,0.0237868208708847,0.0256663071945771,0.027624934434491,0.029751112576232,0.0316908312264589,0.0337237792963701,0.035769023652707,0.0377945892095513,0.039764160262876,0.0416662325348781,0.0557794716508301,0.0691893023499241,0.0825570661295736,0.0949211356466877,0.1071665735577784,0.1231605209742895,0.13633664206329,0.1482064760526512,0.1589595684452278,0.1697702591151277,0.1833423064498761,0.195625128465874,0.2074214205725344,0.2180329481727647,0.2274776260527299,0.2378728349288916,0.2472485197203358,0.2570205306273809,0.2652663318861444,0.2729936364052557,0.278842818490854,0.2855807322403094,0.2920087057320621,0.2973681689736098,0.3025881725124921,0.3074472272794371,0.3126921058550116,0.3180234923217736,0.3219838690884611,0.326839312584145,0.3267558618461787,0.3253185961149833,0.3250278024128271,0.3245938602069723,0.3241406993339676,0.3228090610918677,0.3205243908231606,0.3214854459785589,0.3230136097402708,0.3237637558953837,0.3254335802006187,0.327574935118965,0.3290097804642572,0.329549271176194,0.3293729213862245,0.3312216957671265,0.3304980382048859,0.333280662389786,0.3362105411499436,0.3378092999163246,0.3407485070884806,0.3429826418289585,0.3469426152398871,0.3535169587980878,0.3552311435523114,0.3575135645199339,0.3559244593359732,0.3581217251108424,0.3649513212795549,0.367184388689765,0.0,2.885866742104884,56.41049561982789,185.60613814791944,265.14056791157947,fqhc7_100Compliance_implementation_low_initial_treat_cost,85 -100000,95652,44258,418.6425793501443,6211,63.710115836574246,4899,50.652364822481495,1984,20.375946138083886,77.2430810454354,79.64804011396576,63.27207635196621,65.05052283085072,76.99469734212657,79.40063020736191,63.17968219571348,64.96129218069999,0.248383703308832,247.4099066038491,0.0923941562527304,89.23065015073917,143.46992,100.90174094385137,149991.552711914,105488.3755110728,369.55088,241.10027216924988,385785.9532471877,251496.43726137443,358.48213,173.7778582288296,371500.428637143,179116.4442578108,3215.46248,1457.2830649657765,3326044.285535065,1488252.956246049,1162.37395,514.4112902491903,1200204.940827165,522852.29609739897,1948.61896,817.4344121804054,2002838.184251244,824454.1970985191,0.37781,100000,0,652136,6817.797850541547,0,0.0,0,0.0,31832,332.1833312424204,0,0.0,32847,340.0451637184795,1664589,0,59765,0,0,0,0,0,55,0.5750010454564463,0,0.0,1,0.0104545644628444,0,0.0,0.06211,0.1643948016198618,0.3194332635646433,0.01984,0.3287713363063201,0.6712286636936798,25.01349064837375,4.436736398265772,0.3229230455194938,0.2282098387426005,0.2222902633190447,0.226576852418861,11.169533902078918,5.75681338763996,21.25952460751422,12273.16248970593,55.47468730075117,13.305614073746211,17.775077579903574,12.120131340332073,12.273864306769296,0.5550112267809757,0.7817531305903399,0.6965865992414665,0.5610651974288338,0.1189189189189189,0.7213375796178344,0.9083769633507852,0.8979591836734694,0.6929133858267716,0.1359649122807017,0.4976667581663464,0.7160326086956522,0.6302521008403361,0.5209580838323353,0.1145124716553288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023714934327874,0.004594972917047,0.0065784798432535,0.0088499171907863,0.0109954939835016,0.0133917205560364,0.0155289319398419,0.0178790230354517,0.0201959260471204,0.0225901918015831,0.024643626294739,0.0269265527440026,0.0287541907484728,0.0311118894806786,0.0334534119177134,0.0354672264215326,0.0374068971232635,0.0393074743364852,0.0412423678215916,0.0432139952876415,0.0573175192016301,0.071522096640724,0.0855705931144546,0.0982,0.10982304995988,0.1250410274327944,0.1373463512063488,0.1493848482910083,0.1602272605685794,0.1707369461090706,0.1836582760592557,0.1964899348502422,0.2075981353200017,0.217391304347826,0.226680040120361,0.2363527427658441,0.2460893386258176,0.255396859394199,0.2636766712141882,0.271086340752973,0.2782220676866017,0.2849245760329804,0.2916849300463199,0.2975547716747054,0.3022585120105137,0.3082878522213716,0.3133377637897957,0.3190010331500874,0.3234331575803226,0.327373784159333,0.3274017511433698,0.3267322639325285,0.3262115906009941,0.3250181080689555,0.3247860699484182,0.3233545810613624,0.321254887002956,0.3219249221029724,0.3223705633344187,0.3231323616414779,0.324201601507301,0.3251303067679942,0.3266409916450954,0.3271469015413652,0.3281000917830056,0.3289753485075214,0.3306674338319908,0.3330061427395351,0.3366221090600467,0.3372419885952935,0.340531561461794,0.3441743143884506,0.3474667853283326,0.3503037760516804,0.3532665712923223,0.3591582974653275,0.3601688291386587,0.3549649773382777,0.3578976640711902,0.3623978201634877,0.0,2.2487204955834845,55.15131429519084,184.4270431515432,276.379765604899,fqhc7_100Compliance_implementation_low_initial_treat_cost,86 -100000,95833,44760,423.1945154591842,6048,62.13934657164025,4665,48.261037429695406,1838,18.92876149134432,77.44904619750217,79.77403437334317,63.38601454967061,65.10634448624873,77.21868758915178,79.54318771417694,63.30098035194224,65.02309246537777,0.2303586083503859,230.8466591662324,0.085034197728369,83.25202087095818,144.39722,101.62848267042165,150675.8840900316,106047.48121254852,368.50446,240.159792680352,384049.11669257976,250123.78061873463,360.23334,173.91057989258908,373139.53439838055,179402.56632663115,3048.63871,1388.2669089797964,3155115.033443595,1422547.1277950148,1117.13928,487.8837609743013,1157914.6118769108,501306.7199010794,1802.31248,754.2892402315467,1857639.3935283253,766264.3219447177,0.38244,100000,0,656351,6848.903822274165,0,0.0,0,0.0,31660,329.9385389166571,0,0.0,32855,340.15422662339694,1671853,0,59938,0,0,0,0,0,71,0.7200025043565369,0,0.0,0,0.0,0,0.0,0.06048,0.1581424537182303,0.3039021164021164,0.01838,0.3198233717079325,0.6801766282920675,24.9258717079045,4.403976700411519,0.3266881028938906,0.2252947481243301,0.2282958199356913,0.2197213290460878,11.057900165640424,5.586326063014194,19.409337626543117,12315.554696371488,52.5353227626291,12.33103337221597,17.177399135374635,11.764712928291903,11.262177326746588,0.5579849946409432,0.7716460513796385,0.6863517060367454,0.584037558685446,0.1209756097560975,0.7250608272506083,0.9083333333333332,0.8530120481927711,0.7758620689655172,0.1460176991150442,0.497960372960373,0.7004341534008683,0.6239855725879171,0.5306122448979592,0.113892365456821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394063376644,0.0045513060930737,0.0067476383265856,0.0090815818612163,0.0113588984817515,0.0137049066824147,0.0157213788322135,0.0179120015513528,0.0202657128257537,0.0225619301961506,0.0248706256084439,0.0270422824302134,0.0291741195337075,0.0310942712408879,0.0333030796839868,0.035374458896821,0.0371252031173992,0.0392049107235436,0.0409965507210239,0.0429826570339988,0.0580798598072349,0.0722843700993204,0.0861349821840285,0.0984304084720121,0.1100187561905966,0.125538975312817,0.1371374660786974,0.1485424399374647,0.159290713554114,0.1692617420916236,0.1824673090158293,0.1948057560174582,0.2057999652566663,0.2163341918023484,0.2264718474526033,0.2377952407794246,0.2474721603563474,0.2568626130675824,0.2650051497968377,0.2723742075504026,0.2794114252740912,0.2866608340624089,0.2933542549049681,0.2999629572096024,0.3053338017419956,0.3109101187111362,0.315942426661345,0.3208267292208204,0.3246557131609855,0.3289068868495096,0.3282669063493554,0.3277465368262241,0.3276999522753432,0.3265591242978539,0.326001094658363,0.3245549865886369,0.3236497545008183,0.3233393177737881,0.3240555310410373,0.324659429544487,0.325813182309326,0.3267546443580378,0.3278398199849987,0.3285781051788218,0.3281638904843959,0.3289923363711682,0.330102590262427,0.3327290344762917,0.3353513437849944,0.340136591528167,0.3421937477280988,0.3448989336304313,0.3508528985963366,0.3561301084236864,0.3614299153339605,0.3633459536204448,0.3661001378043179,0.36996336996337,0.3689159292035398,0.3732367518109035,0.0,1.576944244006807,54.596988551040575,169.58580382847285,260.95850893895755,fqhc7_100Compliance_implementation_low_initial_treat_cost,87 -100000,95808,44713,423.0126920507682,6383,65.38076152304609,4941,50.99782899131596,2007,20.53064462257849,77.3497797498425,79.682549986327,63.33168066437421,65.05961553207989,77.09856948176622,79.43316109816719,63.23850531225261,64.969972997874,0.251210268076278,249.38888815981383,0.0931753521215981,89.6425342058933,143.9482,101.19795592603955,150246.53473613894,105625.7890009598,370.92532,241.3781178567974,386609.876002004,251394.4429033039,363.14827,175.53395623602637,375592.09043086175,180609.0509096891,3272.10895,1496.796230835468,3378837.257849031,1525847.195260801,1193.56435,529.7474497518916,1230313.9403807616,537452.2793001542,1967.88222,824.6745720352885,2015303.1897127589,827589.3072623024,0.38228,100000,0,654310,6829.38794255177,0,0.0,0,0.0,31906,332.44614228456913,0,0.0,33221,343.28031062124245,1667622,0,59870,0,0,0,0,0,57,0.594939879759519,0,0.0,0,0.0,0,0.0,0.06383,0.1669718530919744,0.3144289519034937,0.02007,0.3219526804432465,0.6780473195567536,24.82026390309026,4.411434219705899,0.3246306415705323,0.2216150576806314,0.2254604331107063,0.2282938676381299,11.231936366108329,5.853493790490864,21.41143591017323,12386.792650472236,56.23770914141066,13.037833368320124,18.3004468310587,12.500439682103664,12.398989259928175,0.5648654118599474,0.7808219178082192,0.7256857855361596,0.5727109515260324,0.1187943262411347,0.7291981845688351,0.9209183673469388,0.8470588235294118,0.7426470588235294,0.1759656652360515,0.504835589941973,0.7027027027027027,0.6819338422391857,0.517814726840855,0.1039106145251396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691816763579,0.0047755685562776,0.0071142955731016,0.0095093925570715,0.0115349404943545,0.0136856575530777,0.0157932300163132,0.0179251349999489,0.0204115007614706,0.0223134320719761,0.0243564904511486,0.0263465921925375,0.0286466366421946,0.0308506585112188,0.0326992903119326,0.0346773026927607,0.0368925003881786,0.038865262939529,0.0408952060345365,0.0428748425250137,0.0573181291796642,0.0712313869834365,0.0847002840462439,0.0970447284345047,0.1094855119056402,0.1246418186624372,0.1369291964996022,0.1491426929340017,0.1609361147605772,0.1714184579739992,0.1837755124032845,0.1960385323086914,0.2081896411048618,0.2183875375785733,0.2283818869917268,0.2388192012765391,0.2482924869425472,0.2577826262989788,0.2665342939808248,0.2744509835352309,0.2813927931054427,0.2879643596309678,0.294938835387928,0.3006215047840301,0.3068910256410256,0.312929526812326,0.318240928301698,0.3236281767534152,0.3280991093620546,0.3319825230671753,0.3312400614505565,0.3307371003983954,0.3298857062226612,0.3291875045299703,0.3286828861558619,0.3270576321119499,0.3260662755668305,0.3269565789041186,0.3281891595948535,0.3294921805103246,0.3296860043918094,0.3310959310959311,0.3313482910463409,0.3319913216578317,0.3331248646958362,0.3338814501605199,0.3339224125644899,0.3378985393434898,0.3406147167961912,0.3442597053828837,0.3469369205598982,0.3500662602703419,0.3511209346384591,0.3535864978902953,0.3561205273069679,0.3584216725559482,0.3589430273407668,0.3593404383671827,0.3549265106151333,0.3512989530825901,0.0,2.277515474976354,58.07029499652316,187.65508942685,269.5742327447324,fqhc7_100Compliance_implementation_low_initial_treat_cost,88 -100000,95806,44520,421.6854894265495,6244,64.19222178151682,4882,50.44569233659688,1946,19.946558670646933,77.41775944651599,79.74493872881479,63.37436231324406,65.094738724667,77.17083010400503,79.49906830710603,63.28366741370823,65.00679641403947,0.2469293425109526,245.8704217087586,0.0906948995358334,87.94231062752544,145.70402,102.47520323350506,152082.35392355386,106961.15403367748,373.37701,243.0094186121908,389211.3855082145,253136.82714254927,357.90344,172.88680167628928,370387.9819635513,177948.7805671415,3220.22782,1460.265599883148,3328530.96883285,1491524.706055099,1161.50791,511.7504377309899,1195553.211698641,517360.7972034573,1903.05012,795.1985849792907,1952088.7000814143,801779.2427127915,0.38175,100000,0,662291,6912.834269252448,0,0.0,0,0.0,32213,335.6887877585955,0,0.0,32842,339.57163434440434,1661621,0,59629,0,0,0,0,0,65,0.6784543765526168,0,0.0,0,0.0,0,0.0,0.06244,0.1635625409299279,0.3116591928251121,0.01946,0.3368692226094862,0.6631307773905137,24.644618575358937,4.447443442557093,0.3236378533387956,0.2191724702990577,0.2398607128226136,0.217328963539533,11.466239445792604,6.018223682023926,20.703254807219437,12280.943970833689,55.23827695197653,12.789178191794331,17.87965943593747,12.977662729621738,11.591776594623004,0.568824252355592,0.7934579439252336,0.6962025316455697,0.6029035012809565,0.1149858623939679,0.7408874801901744,0.9310344827586208,0.8700980392156863,0.7764705882352941,0.1396396396396396,0.5088397790055249,0.7186147186147186,0.6356655290102389,0.5545851528384279,0.1084624553039332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022377707348191,0.0045411695538909,0.0067579222940406,0.0089679267128435,0.0109310176523224,0.0131316421678407,0.01541127306085,0.017677798644566,0.0197060446861137,0.0217996479305686,0.02380073800738,0.0260834753331006,0.0282988805855082,0.0302050732992917,0.0323771421500897,0.0344044040942377,0.0362420830401125,0.038068776760629,0.0400685643050072,0.0420601126461432,0.0566644060723042,0.0702390783930419,0.0834914412100755,0.0959094060550034,0.1084323390630266,0.1239052116678816,0.1366616879058484,0.1483824326766672,0.1595715169750122,0.1693357471104303,0.1818621757646147,0.195110885463364,0.2066273628437727,0.2172000043671459,0.2273755904646819,0.2383659834297534,0.2479323182557906,0.2564128481581312,0.2656713712874651,0.2730443732845379,0.2803705928561527,0.2873304223970859,0.2939335608592449,0.2993778415888968,0.3050582241630276,0.3112060264395263,0.3158506265538911,0.3206595612241009,0.3251981023539601,0.3288910544266958,0.327484515860327,0.3275324068346461,0.3274280246531393,0.3260932313465146,0.3262373444968973,0.3243524585144816,0.3229735073151443,0.3234237927359186,0.3244173367861523,0.3244476122594441,0.3252545291211259,0.326230799527373,0.326646606486125,0.3280087332353072,0.3285985531280794,0.3299304669392432,0.3306864754098361,0.334390205619212,0.3372080809495466,0.3394037768716101,0.3413658270437392,0.3434429277102034,0.3441754916792738,0.3450607902735562,0.3448535643657595,0.346941204475125,0.3419665012406948,0.3404558404558404,0.3342406096897115,0.3386973180076628,0.0,1.992040280180576,55.58711599724041,187.87135498882765,267.4273245749061,fqhc7_100Compliance_implementation_low_initial_treat_cost,89 -100000,95718,44610,421.52991077958166,6258,64.14676445391672,4901,50.58609665893562,1939,19.84997597108172,77.3893283971574,79.74939181670756,63.35181630130408,65.09316066466748,77.14023740087896,79.50330123026605,63.25784615038785,65.00350753119362,0.24909099627844,246.09058644151105,0.0939701509162276,89.65313347385973,144.20208,101.41141444412771,150653.04331473703,105948.11262680762,371.97869,242.84320863249133,388016.0366911135,253103.60499852835,360.35235,175.1381544612183,372714.47376668965,180103.94343571336,3224.37337,1480.85540143138,3328061.8065567603,1506546.5549127432,1177.00836,523.114173114092,1211545.2892872812,528432.3565820567,1906.45486,819.6090004041064,1952881.6941432124,821498.7043425075,0.38157,100000,0,655464,6847.86560521532,0,0.0,0,0.0,32015,333.8348064104975,0,0.0,33130,342.3911907896112,1664132,0,59737,0,0,0,0,0,54,0.5641572118096909,0,0.0,1,0.0104473557742535,0,0.0,0.06258,0.1640066042927903,0.3098434004474273,0.01939,0.3234257698789643,0.6765742301210357,24.49740046681737,4.435432908013016,0.3152417873903285,0.2295449908182003,0.2273005509079779,0.2279126708834931,11.03438951322628,5.514629314133413,20.930685229302544,12322.560027497457,55.41699084828855,13.352892817260642,17.455295035800614,12.254528155486206,12.354274839741077,0.5484594980616201,0.7777777777777778,0.6906148867313916,0.5583482944344704,0.1110116383169203,0.7028051554207733,0.9245283018867924,0.8487179487179487,0.7125506072874493,0.1085271317829457,0.4916247906197655,0.6890156918687589,0.6372294372294373,0.5144175317185697,0.1117578579743888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0047939027233016,0.0070194658308227,0.0093417137983205,0.011609938595421,0.0138326242289762,0.0160097016142181,0.0181016713944613,0.0201804489766724,0.0225419271659384,0.0247156470949892,0.0267062010095621,0.0290071002147532,0.0309518172741402,0.0331659224272175,0.0352588612173194,0.0374557425927076,0.0396436017384269,0.041534144059869,0.0435022657430074,0.0576828695243565,0.0717746408128669,0.0854442661296243,0.0977276789939117,0.1103227982879672,0.1256213380713666,0.1381881828789646,0.150175662727563,0.1609953097789506,0.1705520288238826,0.1833552305671024,0.1959237983967806,0.2076302513699225,0.2178087884686891,0.2283752256019721,0.2390164987977706,0.2486938465660444,0.2574196161375244,0.2658819790472515,0.2736616555137959,0.280775014459225,0.2876321451959959,0.2935053875359267,0.2991782659735033,0.3040811368881331,0.3096698694259669,0.3153810531058738,0.3204278646197677,0.3252272550695361,0.3286066665787286,0.3277487192588509,0.3264961025034713,0.3254640044994376,0.3251184560268115,0.3247792207792208,0.323655766026082,0.3215831201238194,0.3214010966527539,0.3227048859046678,0.3234953394286121,0.3242267848461049,0.3250483291908312,0.3260296333500753,0.3278241836780274,0.3293849111004325,0.330702118820108,0.3323676437173369,0.3337194377484895,0.3372770739538617,0.3396538810265305,0.343679202537381,0.3450614667231877,0.3456821183722247,0.3484607820891007,0.3483852797596695,0.3531563421828909,0.3563724745556737,0.3644765923246936,0.3619153674832962,0.36282151208106,0.0,2.354590760263095,57.57934452932884,183.0752819897532,266.1163761823434,fqhc7_100Compliance_implementation_low_initial_treat_cost,90 -100000,95659,44354,419.9395770392749,6217,63.757722744331424,4881,50.30368287354038,1940,19.75768092913369,77.35982293729873,79.73544773593079,63.33991942654043,65.08984694668858,77.12294509652234,79.50336375589129,63.25214896207358,65.0071845452285,0.2368778407763869,232.0839800395049,0.0877704644668497,82.66240146008386,143.0462,100.65770975304298,149537.62845106053,105225.55091841122,370.52671,241.82895344574916,386622.7223784484,252084.6689237282,363.7195,176.8592250418096,375570.0352293041,181291.4996865246,3226.86453,1465.4006640117136,3327191.659958812,1485809.2085550912,1168.5213,511.6093978351688,1202332.1485693976,515634.3059592257,1908.86796,792.6182082889311,1947240.552378762,788465.2293788373,0.37975,100000,0,650210,6797.16492959366,0,0.0,0,0.0,31855,332.263561191315,0,0.0,33388,344.3899685340637,1670501,0,59894,0,0,0,0,0,72,0.752673559205093,0,0.0,0,0.0,0,0.0,0.06217,0.1637129690585911,0.3120476113881293,0.0194,0.3239522789843989,0.6760477210156011,24.71161628453556,4.4351076658204605,0.3300553165334972,0.2194222495390289,0.225158778938742,0.2253636549887318,11.451713988472196,5.931301981500676,20.53062766480421,12286.595920224938,55.08236490117355,12.775859074262154,18.235071865396677,12.158186186788884,11.91324777472584,0.553779963122311,0.7647058823529411,0.6933581626319056,0.5741583257506825,0.1236363636363636,0.7357310398749023,0.927807486631016,0.8634259259259259,0.7142857142857143,0.1682242990654205,0.4891726818434203,0.6771879483500718,0.6310432569974554,0.530952380952381,0.1128668171557562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022684003726657,0.0046522942196004,0.0071729315680008,0.0093132375941987,0.0115910200097608,0.0136902641355794,0.0157022182822323,0.0176406970575031,0.0200412674416229,0.0220151200499227,0.0243410201510044,0.0265506699222356,0.0287687706207024,0.0306524850444291,0.0327804596278417,0.0348099303387973,0.0368756146798488,0.0389258821333001,0.0409211415501377,0.0428556539864512,0.0574837536828468,0.0709738219895288,0.0844283974977958,0.0969160678023168,0.1099438889592034,0.1256374986773886,0.1373000626213953,0.1483836608616925,0.1595398956640725,0.1706754247566302,0.1831014751996207,0.1948781808337845,0.2065963721041578,0.2172928134472909,0.2277261516779705,0.2379296213019062,0.2475253049426942,0.2561522636058054,0.2647325681622284,0.2722371659131231,0.2794944145060943,0.2857760989814176,0.2928825749062563,0.2985212237322636,0.3046262827199728,0.3100184615384615,0.3147463134216446,0.3187779585197234,0.323000724187875,0.3270174050632911,0.3266699826582602,0.3257521588471481,0.3256243045676699,0.324737206884602,0.3247080817222808,0.3232099143206854,0.3213211787421264,0.3220725899162424,0.3230326985267697,0.3249088439265031,0.325420932238347,0.3263740608936338,0.3275052410901467,0.328108228980322,0.3305789094403075,0.3319373634377276,0.3327464788732394,0.3362182502351834,0.339861509407568,0.3425933264642942,0.3433386472329765,0.3457256990679094,0.3459977166053533,0.3499425067075508,0.3559754369390647,0.3579463858305409,0.3578898800369117,0.3584025947699168,0.3680931744312026,0.3647871116225546,0.0,2.8144673326263683,55.62325756195471,180.3689170559081,271.6754851797725,fqhc7_100Compliance_implementation_low_initial_treat_cost,91 -100000,95858,44976,425.4000709382629,6288,64.35560933881366,4933,50.939931982724445,1985,20.35302217863924,77.34109898624328,79.63207417324712,63.34986309044478,65.04425282532395,77.09635946048061,79.3883988204902,63.25833249726638,64.95547132962686,0.2447395257626681,243.67535275692376,0.0915305931783976,88.78149569709137,143.26202,100.8455068828048,149452.3357466252,105203.0157971216,374.14972,244.48801374932088,389785.7873103967,254521.43143954684,366.91972,178.46236919958636,379618.68597300176,183694.6066275493,3230.90078,1483.9889410359294,3338225.5315153664,1515830.0726448812,1164.15009,519.8867817429622,1202549.9488827223,530448.1855901044,1937.2989,816.5819903985348,1988122.118133072,823256.316841646,0.38408,100000,0,651191,6793.2879884829645,0,0.0,0,0.0,32159,334.93292161321955,0,0.0,33579,347.2010682467817,1665634,0,59888,0,0,0,0,0,69,0.7093826284712804,0,0.0,2,0.0208641949550376,0,0.0,0.06288,0.1637158925223911,0.3156806615776081,0.01985,0.324616086361563,0.675383913638437,24.478101302820143,4.380527933641379,0.3269815528076221,0.2284613825258463,0.2266369349280357,0.2179201297384958,11.347555336466362,5.999097470713455,21.297324826403816,12381.723781561086,56.11138810837232,13.394025116851882,18.334539333347152,12.530988777832006,11.851834880341276,0.5619298601256841,0.7737355811889973,0.6962182269063856,0.5805008944543828,0.1190697674418604,0.7180811808118082,0.8844339622641509,0.8587699316628702,0.7038461538461539,0.1637931034482758,0.5027948574622694,0.7069701280227596,0.6354344122657581,0.5431235431235432,0.1067615658362989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024403827654295,0.0046407473832466,0.0065220257838095,0.0088533311673807,0.011210944646596,0.013514613693723,0.0159438450645394,0.0181382300433562,0.0202847629358772,0.022402487801385,0.0244092310528849,0.026399187717301,0.0285221285293181,0.0305985966211906,0.0327775945923666,0.0348956021839424,0.037059249302037,0.0391015147433639,0.0412881658586215,0.042977975218219,0.0573397843632041,0.0711799931025113,0.0846129674243217,0.0977515464025792,0.109683669601112,0.1249643517296012,0.1375266185678416,0.1488762253077888,0.1601216519048127,0.1712806662165203,0.1849567903227542,0.1968636781484886,0.2077100365280918,0.2182615159266303,0.2282624242224202,0.2383094222566886,0.2484684825423747,0.2571917153239506,0.2657338689544041,0.2745077827028141,0.2813038799338108,0.2885000058488425,0.2948693676637637,0.3010809385710519,0.3064326064508291,0.311820928655115,0.3170505758637957,0.3214199345781308,0.3259442451865184,0.3302731691852478,0.3296909105607804,0.3291618481193898,0.3284062059238364,0.3281910887073411,0.3281047504133709,0.3265788222300624,0.3256097947790782,0.3267385400378569,0.3286812922717753,0.3291719058738998,0.329097456588548,0.3303317629753314,0.3317169843143869,0.3329279005338199,0.333801963398376,0.3355480855086927,0.3372006416867193,0.3410075582682395,0.3466094843041445,0.3500039786743057,0.3547798311658681,0.356892150606254,0.3578375647341164,0.3581430745814307,0.3640068233510235,0.365208060093001,0.3656808379544054,0.3637836742961312,0.3662902781602864,0.3690292758089368,0.0,1.9825024285307025,59.74974716700812,179.62320893383236,273.0067031018064,fqhc7_100Compliance_implementation_low_initial_treat_cost,92 -100000,95652,44576,421.7894032534605,6052,62.13147660268473,4744,49.10508928198051,1851,19.058671015765484,77.31769350596971,79.73865624994767,63.289715480586615,65.08081135228213,77.09172596326663,79.5118193498031,63.20692183901933,64.99970340931719,0.2259675427030885,226.83690014456204,0.0827936415672851,81.10794296493395,143.297,100.83431964311586,149810.54238280433,105417.67307020856,369.27623,241.26848902694465,385568.36239702255,251743.36614938875,359.53083,174.3479940775006,372581.4410571656,179848.146798879,3105.59315,1410.2450765372496,3214469.681763058,1442220.5134402888,1132.31962,499.83818672527775,1167873.8134069336,506763.1810171778,1812.89712,754.3555570471711,1866124.95295446,763373.3747620666,0.38087,100000,0,651350,6809.570108309288,0,0.0,0,0.0,31873,332.70605946556265,0,0.0,33011,341.8119851127002,1666122,0,59729,0,0,0,0,0,51,0.5331827876050683,0,0.0,0,0.0,0,0.0,0.06052,0.1588993619870297,0.3058493060145406,0.01851,0.3324447232240866,0.6675552767759134,24.596359842942658,4.394549182070981,0.3277824620573356,0.2223861720067453,0.2280775716694772,0.2217537942664418,11.22087624203298,5.771252592468676,19.74732510797214,12262.431220220857,53.62174679747142,12.64371327758285,17.49228887248243,12.02919805780912,11.45654658959702,0.5623946037099494,0.7781990521327015,0.7054662379421222,0.577634011090573,0.1188212927756654,0.7334384858044164,0.9255583126550868,0.845771144278607,0.71875,0.1594202898550724,0.5,0.6871165644171779,0.6565481352992194,0.5338983050847458,0.1088757396449704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026237944728097,0.0048777025108506,0.0070659898477157,0.0092785495787558,0.0115681626257796,0.0140281173594132,0.0161283741048293,0.0183083194556544,0.020406701257765,0.0224379343569978,0.0247497818611096,0.0267952619889775,0.0288123899455262,0.0308947618163437,0.0329689630945985,0.0348613410596026,0.0369302865674117,0.0389721004632611,0.0412625400657703,0.0433308999895713,0.0579585950318218,0.0720258178084201,0.0856440635240736,0.0982959093398491,0.1104141586939534,0.1262589356632247,0.137873507034471,0.1490967226219025,0.1597069205262594,0.1699817420255611,0.182976153240506,0.1950788766577099,0.2058660160972369,0.2165272424667133,0.2260492072411551,0.2361656353272562,0.2457126258281475,0.2547286647151542,0.2632678076905616,0.2704374420123019,0.277693545213597,0.2847533369988652,0.291193047267216,0.2964828338789557,0.3019953065914424,0.3073281972265023,0.3129278089922791,0.3176081424936386,0.3215659856719047,0.3270061422627303,0.3272325399606458,0.3265707797123391,0.3250954588364589,0.3236322144549078,0.3239716775275728,0.3227091023265074,0.3214987014632292,0.3223754324408519,0.3236256990860728,0.3234106154694756,0.3248577558063613,0.3266405773731097,0.327214900428221,0.3267799622348106,0.329526994744386,0.3302417161066349,0.3301710466696874,0.3338423660672546,0.3370751263726686,0.3413440669271141,0.3443783759248331,0.3479227308811854,0.3505335844318895,0.3506060606060606,0.3528860569715142,0.3549834671705243,0.3584443423671719,0.3622898318654924,0.3686799672041541,0.3743823641201064,0.0,1.8546064233936783,56.06662925059198,172.10578626639975,265.0532743211133,fqhc7_100Compliance_implementation_low_initial_treat_cost,93 -100000,95713,44400,420.5071411407019,6109,62.68740923385538,4802,49.60663650705756,1905,19.589815385579808,77.34880342590687,79.70753273395435,63.338894218876014,65.07761766214252,77.11771930372788,79.47526002577976,63.2534271119632,64.99387721114871,0.2310841221789843,232.272708174591,0.0854671069128159,83.74045099380112,143.77308,101.15932995957432,150212.4685256966,105690.0621352526,370.20528,241.7181561915154,386222.25820943865,251981.4619006252,356.80185,172.9434658024265,369032.1899846416,177844.84257150485,3145.97831,1423.5414002008056,3253640.9683115147,1454145.1949110103,1162.63117,510.7325489019613,1200471.2003594078,519461.2636314488,1872.53374,782.7262206345661,1927010.479245244,791595.9058067874,0.37895,100000,0,653514,6827.839478440756,0,0.0,0,0.0,31918,332.88059093331105,0,0.0,32672,337.5403550196943,1667059,0,59730,0,0,0,0,0,69,0.720905206189337,0,0.0,0,0.0,0,0.0,0.06109,0.1612086027180367,0.3118349975446063,0.01905,0.3316739265712508,0.6683260734287492,24.67609600450348,4.431341605900422,0.3311120366513952,0.2280299875052061,0.2136609745939192,0.2271970012494794,11.066082147273724,5.549159399520586,20.23038820548458,12253.876520496347,54.04161908191706,13.07479153447453,17.76676387880297,11.23461867031989,11.965444998319674,0.5541441066222408,0.7844748858447489,0.6830188679245283,0.5662768031189084,0.1237396883593033,0.7231920199501247,0.9246753246753248,0.8571428571428571,0.75,0.1478260869565217,0.4976382328424562,0.7084507042253522,0.6313213703099511,0.5149625935162094,0.1173054587688734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189168936639,0.0045614888699671,0.0066054487342093,0.0087973262629648,0.0113164958516349,0.0135186033491118,0.0158602342340505,0.018097376747984,0.0201216085023759,0.0222404175835422,0.0243424963614373,0.026407348488736,0.0283449509592252,0.0303292359009203,0.0322866809704571,0.0342522369862164,0.03619684623588,0.0382644062169284,0.0400499064254522,0.0424598585018703,0.0570193301795169,0.0716692830978545,0.0847706576020815,0.0971889071245213,0.1091597578212349,0.1239937802130382,0.1359932088285229,0.1472921036101736,0.1581500197647461,0.1684241013483796,0.1809632558089431,0.1940317886240438,0.2050704776820673,0.2165582107508065,0.2264850531967565,0.2367038957585427,0.2471713076209943,0.2555380459252589,0.2646557987467078,0.2726585410557184,0.2797620425453114,0.2858429331618034,0.2927951912723486,0.2983914433891078,0.3042248391404638,0.3100263527325567,0.3151778685759268,0.3196163130478973,0.3235453770000258,0.3276861463877325,0.3276121812116647,0.3262522515090266,0.3249584542151367,0.3245524037975232,0.3239262891960172,0.3222991180793728,0.3205653777362731,0.3216106766350237,0.3228548023755888,0.3247453030492265,0.3243794309657868,0.3246976184368895,0.3253019614410416,0.3263777062086241,0.328313325474535,0.3297190220507741,0.3313834037210364,0.3343928998552275,0.3383152650598182,0.3403469768549764,0.3438554876379892,0.3446876668446342,0.3470864542338454,0.348533701827115,0.3500710563713879,0.3523421588594704,0.3558320373250389,0.3574819401444788,0.3576826196473551,0.3624658603199375,0.0,2.1907798971425567,52.52874270083189,182.717274179863,270.27987466489486,fqhc7_100Compliance_implementation_low_initial_treat_cost,94 -100000,95640,44140,416.9803429527394,6174,63.32078628189042,4822,49.87452948557089,1944,19.981179422835638,77.26744378178137,79.68153837909449,63.28338998351626,65.06915125080505,77.02236988040725,79.43724364733335,63.19174611464988,64.98000231619876,0.2450739013741127,244.2947317611441,0.0916438688663774,89.14893460628548,143.54252,100.96165874557592,150086.28189042243,105564.26050352982,365.778,238.85938989087376,381913.7494772062,249213.096421394,357.6649,173.46660265926707,370452.1120869929,178710.63161089717,3184.34892,1462.6119975147217,3297032.73734839,1497035.8787300184,1137.1073,504.35367803377727,1175310.644081974,514095.045694474,1903.21042,807.9002569172316,1958101.798410707,818430.4573495927,0.37789,100000,0,652466,6822.103722291928,0,0.0,0,0.0,31499,328.76411543287327,0,0.0,32839,339.79506482643245,1668330,0,59865,0,0,0,0,0,53,0.5541614387285655,0,0.0,1,0.0104558762024257,0,0.0,0.06174,0.1633808780332901,0.314868804664723,0.01944,0.325205777294611,0.674794222705389,24.71910377797655,4.393417311868932,0.3268353380340107,0.2304023226876814,0.2144338448776441,0.2283284944006636,11.210649800709549,5.878627944970711,20.852516868997824,12262.855794344665,54.8684204617236,13.382089696665536,17.86395351851531,11.46754647962063,12.154830766922116,0.5618000829531314,0.7758775877587759,0.7151015228426396,0.586073500967118,0.103542234332425,0.7049180327868853,0.8905852417302799,0.865,0.7272727272727273,0.1517509727626459,0.5100254165489975,0.713091922005571,0.6641156462585034,0.5454545454545454,0.0888625592417061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021784505643706,0.0047353477996349,0.0070662768031189,0.0091049508170067,0.0113225973814586,0.0133519371002566,0.0156004649550339,0.017794974935936,0.0200308796613462,0.0224167946748591,0.0248092385953396,0.0269653918456655,0.0290411184379725,0.0314167954662545,0.0335875971552729,0.0355533041104954,0.0373995360013257,0.0394519694846644,0.0415245069484896,0.043717157394278,0.0582671404682274,0.072656241817401,0.0850223687803238,0.0976159386714965,0.1091204695896369,0.124792189501996,0.1366074368315401,0.1478781678282925,0.1593106841812502,0.170278804020964,0.1828702705034729,0.1953438992947599,0.2074253869429871,0.2181245143851432,0.2283031123735288,0.2377549550747277,0.2470421466202339,0.256546446857593,0.2647907156321682,0.2727470738613566,0.2790665354102727,0.2852495846107041,0.2919114163903363,0.2982167714683434,0.3035375407522748,0.3090531981876319,0.3138421830756508,0.318664527465811,0.3230172827341208,0.3265548973979268,0.3248667251501451,0.3236944027124998,0.3232147897262207,0.3227871012583079,0.3230097723751639,0.3213293848679668,0.3204100741116912,0.3212150085425154,0.3217270909184144,0.3218906361686919,0.3223312630176571,0.3234570839282881,0.3236660151734863,0.324709360930045,0.3261215629522431,0.3268213481380611,0.329037604297634,0.331693472090823,0.3358824358612912,0.3365553602811951,0.3391392498387245,0.3411492022423458,0.3438899552143314,0.3512719399984536,0.3496097468113459,0.3563065781532891,0.3582554517133956,0.3584555027875284,0.358952462282949,0.360176282051282,0.0,2.130859811154599,56.29551692926109,185.0240800008213,262.32578252969296,fqhc7_100Compliance_implementation_low_initial_treat_cost,95 -100000,95842,44545,421.3601552555247,6284,64.40808831201352,4927,50.85453141628931,1960,20.064272448404665,77.40182060844235,79.71498174553416,63.36325590393732,65.07547853113877,77.15645275879587,79.4706830679422,63.27247621482922,64.98727824738442,0.2453678496464846,244.29867759195645,0.0907796891081034,88.20028375434674,144.21088,101.53130315008086,150467.08123787068,105935.9241101632,371.9803,242.4599218758464,387505.6134053964,252367.2273172713,359.11913,174.2636226602323,371564.7002358048,179356.58880119817,3235.88971,1464.3758521642608,3341498.476659502,1493307.94918981,1187.23727,520.0305917203744,1226741.272093654,530588.5642206704,1914.8401,803.240550863303,1962729.3044802905,809310.4238422674,0.38114,100000,0,655504,6839.412783539576,0,0.0,0,0.0,32035,333.6846059139,0,0.0,32964,340.7274472569437,1666344,0,59789,0,0,0,0,0,68,0.6990672147910102,0,0.0,0,0.0,0,0.0,0.06284,0.1648737996536705,0.3119032463399109,0.0196,0.330351728320194,0.6696482716798059,24.63377510391383,4.4109677887313685,0.3147960219200325,0.2307692307692307,0.2325959001420743,0.2218388471686624,11.248243058343885,5.9016843032412725,20.904773307914997,12300.588351015718,55.52130968622362,13.42456110874935,17.53968085565245,12.77979644566138,11.777271276160436,0.5605845341993099,0.7827616534740546,0.6834300451321728,0.5924956369982548,0.121683440073193,0.7329803328290468,0.9090909090909092,0.8423645320197044,0.7456445993031359,0.1563981042654028,0.4973647711511789,0.7093184979137691,0.6270742358078603,0.5413271245634459,0.1133786848072562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021567872982441,0.004469488897222,0.0068072069147425,0.0090801060361376,0.0111324610363863,0.0132537969787043,0.0154716404219538,0.0175239844866299,0.019676186192939,0.0218928794407541,0.0241607298447029,0.0263271338834831,0.0282260551364019,0.0303841520546111,0.0324473735779778,0.03467622777198,0.0368288668757569,0.0388627361522987,0.0407864398329905,0.0426470741276498,0.0576824804196606,0.0719400395137095,0.0850727188901462,0.0969863128814378,0.1093124657707376,0.125215187199662,0.1373140968603025,0.1485044324921873,0.1601178152946449,0.1703834618680377,0.1823158664601617,0.1954875031066639,0.2074442657859284,0.2177266916512789,0.2273526824978012,0.2378411292554663,0.2475042107728859,0.2565140627284279,0.2641997436275566,0.2712425033191411,0.2789522377703249,0.2860900365897852,0.2930893780085392,0.2989311476981331,0.3047053393577223,0.3094704157322753,0.3142842845347411,0.3190545214118604,0.3232895860837151,0.3281542641589068,0.3271963824289405,0.326666483259512,0.3263157894736842,0.3256236743763256,0.3260705121549666,0.3240266197506311,0.3227397780096765,0.323402163225172,0.3242182835502635,0.3255946547884187,0.3275362318840579,0.3299007713400801,0.3306510607168983,0.33287967693715,0.3331176921602453,0.3352993140719185,0.3356251953291473,0.3387253214855605,0.3412468095521135,0.3444668964697492,0.3466684871654833,0.3511990216408784,0.3528449144008056,0.354522670312144,0.3570297214199199,0.3608562691131498,0.3594821020563595,0.3580998781973203,0.3558114035087719,0.3518659558263519,0.0,2.1135899976211605,58.258703541969005,174.38343792383748,277.982515410678,fqhc7_100Compliance_implementation_low_initial_treat_cost,96 -100000,95696,44541,422.1179568634008,6246,64.10926266510617,4843,50.022989466644376,1941,19.91723792008025,77.32145341825886,79.7091317769642,63.3143933609397,65.08044178610622,77.09012189912286,79.47776233253245,63.22926127120815,64.99765768360922,0.2313315191359919,231.36944443174912,0.0851320897315446,82.7841024970013,144.36664,101.5702692601942,150859.63885637853,106138.46896442297,372.03039,242.266925318063,388082.4485871928,252484.92448420945,356.28755,172.59559457894656,368616.2013041297,177587.8663415433,3199.47422,1444.428950155676,3306974.084601237,1473143.7994536357,1181.8396,518.3645128190379,1218325.4994984115,525074.8922132093,1912.02704,790.2918225807352,1963832.0096973751,797320.4335166266,0.38161,100000,0,656212,6857.256311653569,0,0.0,0,0.0,32121,335.0192275539208,0,0.0,32652,337.4644708242769,1664730,0,59674,0,0,0,0,0,60,0.6165356963718441,0,0.0,0,0.0,0,0.0,0.06246,0.1636749561070202,0.3107588856868395,0.01941,0.3248124904331854,0.6751875095668146,24.954270262370592,4.399105545202851,0.3091059260788767,0.2258930415032005,0.2355977699772868,0.2294032624406359,11.305614150319045,5.891643700065188,20.552598416210092,12320.22576169223,54.71600358100511,12.842784463773103,16.900052924973277,12.747232099905826,12.225934092352905,0.5572991947140202,0.7705667276051188,0.7054108216432866,0.5950920245398773,0.1089108910891089,0.7305084745762712,0.9011627906976744,0.8586387434554974,0.7598425196850394,0.155,0.5015015015015015,0.7106666666666667,0.6529147982062781,0.5479143179255919,0.0987925356750823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178406419713,0.0044620221072913,0.0064560662660386,0.0087803985731852,0.0111102067393781,0.0131305517072773,0.0153380176835921,0.0175413518480702,0.019668980463918,0.0217515917047106,0.0238468715078071,0.0259296152147793,0.0281963975270288,0.030243389732704,0.0324421965317919,0.0346157425118125,0.0364915115544368,0.0385649200369459,0.0407670868172552,0.0424392124983063,0.0572052264917539,0.0713380996744512,0.0845367532849166,0.0972029296628362,0.1093174648392576,0.1247790514294181,0.1371360640251345,0.1492124013504734,0.1596597345416461,0.1708904880900033,0.1841028071611694,0.1960013855512978,0.2078176320883997,0.2181589454684679,0.2280827191728082,0.2377820589472752,0.2481316229782487,0.2571592339507282,0.2655578608437354,0.273654566061064,0.2807788363703635,0.2873423491870536,0.2940438723112236,0.3002827430871711,0.3063219507456162,0.3115767185345676,0.3173513412117801,0.3214712386568719,0.3262940226171243,0.3300392652910638,0.3289933824716199,0.3275639440643973,0.3262438283327003,0.3258607001082642,0.3245335155692893,0.322475869465298,0.3210801393728223,0.3226018288979002,0.3236504602353263,0.3245130073026586,0.3252506324369905,0.3268565555138266,0.3285932689689836,0.3281477336317851,0.3293023703989208,0.3306926033414385,0.3329613733905579,0.3370871581338128,0.3408330692581247,0.3444435605759287,0.3471164805105995,0.3524266666666666,0.3514681581288928,0.3556633556633556,0.3602537398220034,0.3644859813084112,0.3668520234785295,0.3664964249233912,0.3609418282548476,0.3639167309175019,0.0,2.1730187965739423,51.56289909068054,194.24620085434825,268.0672034044214,fqhc7_100Compliance_implementation_low_initial_treat_cost,97 -100000,95700,44642,422.9989550679206,6191,63.46917450365726,4887,50.41797283176594,1991,20.38662486938349,77.3455376358958,79.73153819574705,63.32130932583449,65.08699258539045,77.09435608184113,79.48221619811412,63.22749137218703,64.99637739806467,0.2511815540546678,249.32199763293283,0.0938179536474592,90.61518732578122,143.50798,100.95910166413285,149956.09195402297,105495.40403775637,371.61395,242.75920406431703,387671.12852664577,253027.4316695516,361.20559,174.9184263441245,373379.644723093,179713.76598455277,3224.61437,1472.79052793455,3332492.89446186,1502012.1035216986,1197.11167,533.5219426822237,1234674.629049112,541280.9607309748,1956.08706,824.7702177149462,2006172.079414838,829522.8046753135,0.38126,100000,0,652309,6816.185997910136,0,0.0,0,0.0,31981,333.5005224660397,0,0.0,33131,342.1003134796238,1668632,0,59769,0,0,0,0,0,49,0.5120167189132706,0,0.0,0,0.0,0,0.0,0.06191,0.1623826260294812,0.3215958649652721,0.01991,0.3307219662058371,0.6692780337941628,24.68739716539496,4.495106013053759,0.3179864947820749,0.2220175977082054,0.2275424595866584,0.2324534479230612,11.35606741798798,5.883366892438396,21.232261169156747,12292.149850900834,55.44767011185144,12.92120903879312,17.626979130906896,12.496780782025713,12.402701160125725,0.5578064252097401,0.7852534562211981,0.6962676962676962,0.5935251798561151,0.1161971830985915,0.7102446483180428,0.931472081218274,0.8403990024937655,0.6863468634686347,0.1611570247933884,0.5020955574182733,0.7018813314037626,0.6461405030355594,0.5636147443519619,0.1040268456375839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023708446894092,0.0044829859526345,0.0068734453525559,0.0093192951076241,0.0115060633189549,0.0137095131391322,0.0157859313495543,0.0180550023998447,0.0200732166230366,0.0220169581780199,0.0242859340546638,0.0264995891536565,0.028832702435813,0.0306761741854378,0.0329305167129338,0.0348706179118981,0.0370009737098344,0.0390024181914418,0.0408265133159323,0.0426451895225989,0.0572723570018693,0.0710091992757794,0.0850177360787523,0.0980998674326115,0.1098125665826363,0.1254693730762315,0.1377151467560856,0.1492538903149531,0.160304445893508,0.1710676026706167,0.1838389064959144,0.1959752187852005,0.2068822869833113,0.2171153425257168,0.2268253478950149,0.2373521882238205,0.2476278716706481,0.2567885396621766,0.2650696745494984,0.2722932124209948,0.2790678838788804,0.2856524890686744,0.2928632256233145,0.299186952929484,0.3050769305440955,0.310717845847127,0.3162039525494068,0.3208896453612437,0.3251482232584574,0.3280094724378371,0.3275107411385607,0.3267094544556899,0.3263396056718053,0.325625982038604,0.3245521757811921,0.322728452950071,0.3211630335052362,0.3213434381627184,0.3219744896214478,0.3222391129392828,0.3224236730859559,0.3226747069208339,0.324506236459626,0.3250336172120125,0.3266693997636675,0.3286184898556787,0.3295843799954328,0.3324519987409506,0.335241640910368,0.3388524915624379,0.3409576644991133,0.344800169617301,0.3474821047343965,0.354828897338403,0.3550334937258232,0.3590483056957462,0.3601917723476647,0.3674599917931883,0.3698478561549101,0.3678250683326825,0.0,2.4733472439362143,57.11427951563436,182.7043163200225,268.5852599707036,fqhc7_100Compliance_implementation_low_initial_treat_cost,98 -100000,95619,44671,423.0435373722796,6151,63.14644579006264,4807,49.780901285309405,1907,19.56724082033905,77.23812690061078,79.66983350569613,63.25655152000609,65.05435904616036,77.0018970711789,79.43345167911129,63.169928995583376,64.97009318547246,0.2362298294318776,236.3818265848465,0.0866225244227152,84.26586068789277,143.39996,100.96990949090532,149970.15237557387,105596.07346960888,370.70479,242.9117410586852,387190.9243978707,253543.5628264089,367.49587,178.95155071150666,380936.1110239597,184532.7110530052,3184.93105,1457.5010698799738,3300311.381629174,1493791.875462761,1160.70439,514.6414890434593,1201450.8309018083,525853.5715074659,1871.7316,781.1226564043496,1923049.7704431128,788630.4683089281,0.38058,100000,0,651818,6816.825107980631,0,0.0,0,0.0,31996,334.1072381012142,0,0.0,33571,347.8701931624468,1659340,0,59583,0,0,0,0,0,63,0.6484066974136939,0,0.0,1,0.0104581725389305,0,0.0,0.06151,0.1616217352462031,0.3100308892862949,0.01907,0.34050789718179,0.65949210281821,24.38984971769584,4.328150681790439,0.3239026419804451,0.2255044726440607,0.2282088620761389,0.2223840232993551,11.283177925719992,5.972093527854654,20.37454327453026,12319.887979939997,54.88694192608533,13.071037337365087,17.78768752067761,12.12294400299358,11.90527306504905,0.5610567921780737,0.783210332103321,0.7000642260757868,0.5788514129443938,0.1150608044901777,0.7345340642129993,0.940721649484536,0.861244019138756,0.7420634920634921,0.1187214611872146,0.498300283286119,0.6954022988505747,0.6409130816505707,0.5301775147928994,0.1141176470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.004706216465672,0.0067216310616521,0.0087820050211926,0.0109815176681322,0.0131829619894658,0.0151257075832525,0.0174171535978425,0.0197410142585356,0.0219495457478516,0.0240806862020848,0.0262836123013059,0.0284679195570284,0.0305454470480294,0.0326954653888653,0.0349219817060552,0.0370408766237132,0.0391523398950812,0.0413478654632897,0.0433870934090008,0.0582405519836913,0.0718978905341255,0.0846027777194125,0.097059566939085,0.1097723240685984,0.1251178308531483,0.1369445359225776,0.1485290982732892,0.1596071340687087,0.1703597091393403,0.1833718145135187,0.1959674796747967,0.2078312596692306,0.2181358049037007,0.2283214702836113,0.2387096058484852,0.2481717544448171,0.2570088717041112,0.265754141039779,0.2731227973505068,0.2803331747891556,0.287816259056909,0.2942948999323787,0.3000697081871064,0.305261746929226,0.3109952044297226,0.3171616498882836,0.3209937983309088,0.3249753156992153,0.3288855353904399,0.3276779683911928,0.3265227235076481,0.3258987216611342,0.3255736421748395,0.3249679783146167,0.3228408148216425,0.3215346731273333,0.3226396440929313,0.323332132503045,0.324322871883061,0.324637027854473,0.3257358041819443,0.3279019405840674,0.3287911101133685,0.3309130382342299,0.3335861690162948,0.3362619122571044,0.3384231946240969,0.3409362900387188,0.3433770764778178,0.3461187214611872,0.3494309116051484,0.3485746720484359,0.3511968287848757,0.3536264562194663,0.3561079043468017,0.3582653369598066,0.3623101518784972,0.3789041095890411,0.3822188449848024,0.0,1.9027264224798444,56.379814518761215,186.7491733179089,260.8746602081587,fqhc7_100Compliance_implementation_low_initial_treat_cost,99 -100000,95714,42618,401.0071671855737,6880,70.7002110454061,5360,55.37329962178992,2221,22.817978561130037,77.33641368994157,79.71151435550586,63.332022412709286,65.08956133124356,77.0643573539707,79.43946123501829,63.23208919728456,64.99214805662533,0.2720563359708592,272.0531204875698,0.099933215424727,97.41327461823346,109.7525,76.85768391629954,114667.13333472636,80299.31244781279,269.75882,168.43542024981727,281198.2990994003,175337.7147019425,296.74208,142.3514280725183,305773.4500700002,145477.5036777843,3864.12711,1745.8073472108626,3996518.0642330274,1783341.5563144991,1290.97791,561.9353805309178,1331286.5724972314,569636.7167370984,2176.8888,907.8853393127883,2238602.2316484526,918317.9857578533,0.38227,100000,0,498875,5212.1424243057445,0,0.0,0,0.0,22682,236.2977202917024,0,0.0,27450,282.59188833399503,1917685,0,68851,0,0,4290,0,0,56,0.5746285809808388,0,0.0,0,0.0,0,0.0,0.0688,0.1799775028121484,0.3228197674418605,0.02221,0.3278077082469954,0.6721922917530045,24.96945403461888,4.513630432086765,0.3289179104477612,0.2097014925373134,0.2277985074626865,0.2335820895522388,11.173870355370902,5.667519035165292,23.73500744079843,12897.808203166158,60.57259736878519,13.140454711613533,19.96423950291078,13.629017658224804,13.838885496036063,0.5458955223880597,0.7651245551601423,0.6698808848553602,0.6117936117936118,0.1102236421725239,0.7068837897853442,0.9117647058823528,0.8355855855855856,0.7571428571428571,0.1225296442687747,0.4916438014467448,0.692,0.6141015921152388,0.5685441020191286,0.1071071071071071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023306716387661,0.0045537987200681,0.0067516117569419,0.009218229124319,0.0115459345086111,0.0137697838795755,0.0160107690268103,0.018174392485195,0.0202836023841411,0.0222959277685645,0.0246835118651017,0.0266418898801884,0.0288858038973726,0.0311363800224536,0.0331847449232293,0.0353909124736428,0.0373066329805959,0.0394941593875137,0.0416134027582909,0.0434782608695652,0.0581840964861901,0.0729471833933205,0.0858380351112695,0.0988573170603509,0.1114472117117591,0.127100551692067,0.1400905245974623,0.1528759956187458,0.1644109045108127,0.175839127500241,0.189608041498956,0.20195302361796,0.2142205124861446,0.2254470381334178,0.2364497379495237,0.2473879153076455,0.258233432862427,0.2684579596790506,0.2783842918523053,0.2868222374742621,0.2941496063902343,0.3013037687796444,0.3079386840954485,0.3143048704563957,0.3206713673709632,0.3259054982394799,0.3311406525518052,0.336317851147174,0.3415167877351772,0.3457871104067617,0.3467712587440864,0.3474164804546332,0.3474314270790688,0.3475451634867516,0.3476303352863127,0.3471616391226884,0.3462197948750516,0.3467801689361632,0.3474304710660246,0.3480987707414973,0.3482149567831642,0.3496927651139742,0.3509950457637081,0.3517025089605735,0.3522825982048065,0.3539209790026933,0.3558781258982466,0.3574603174603175,0.3603284723205436,0.3627718481662788,0.3658536585365853,0.3663328822733424,0.3647294589178356,0.3666562937606971,0.3666602760736196,0.3672749391727494,0.3716703227828267,0.3802758904673667,0.3720994475138121,0.37734404898584,0.0,2.432110306212804,59.10200040335417,203.09583906932892,304.4515318207488,fqhc7_80Compliance_baseline,0 -100000,95600,42440,399.75941422594144,6990,71.92468619246863,5478,56.65271966527197,2187,22.426778242677827,77.26635035352784,79.70422928253247,63.26822878755484,65.07191718040247,76.99368612562749,79.43344662133657,63.16790905645172,64.97548642708176,0.2726642279003499,270.782661195895,0.10031973110312,96.4307533207034,108.85512,76.24324884243231,113865.18828451882,79752.3523456405,269.05647,167.61839349996484,280769.46652719664,174662.94682580186,297.18919,142.6341845523703,306946.88284518826,146197.67456521562,3946.08315,1778.7372444597484,4084734.686192468,1817657.060524032,1330.3521,585.2123276862158,1375311.9665271966,595998.4012386212,2150.00972,897.6414585772466,2208019.414225941,904681.9809007735,0.38032,100000,0,494796,5175.690376569038,0,0.0,0,0.0,22667,236.4016736401674,0,0.0,27583,284.57112970711296,1917263,0,68797,0,0,4357,0,0,42,0.4393305439330544,0,0.0,0,0.0,0,0.0,0.0699,0.1837925957088767,0.3128755364806867,0.02187,0.3108751871512182,0.6891248128487818,25.13666341142028,4.6069154314722125,0.3342460752099306,0.2066447608616283,0.2329317269076305,0.2261774370208105,11.287270729746895,5.620920256628957,23.419332828065848,12895.662608311168,61.92041715155336,13.23512993683674,20.662457968902388,14.375987738953446,13.64684150686079,0.5576852866009493,0.7632508833922261,0.6886947023484434,0.5995297805642633,0.1331719128329297,0.733723482077542,0.9217391304347826,0.8552631578947368,0.7819314641744548,0.1795918367346938,0.4991486256385308,0.6937738246505718,0.6334545454545455,0.5382198952879581,0.1217303822937625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020775061818476,0.0043621607912756,0.0065707292798602,0.0088762811127379,0.0111764825634657,0.0133310231662199,0.0154923252775963,0.0179332331933417,0.0200642547270197,0.0223076134849882,0.0244162775183455,0.026746158194994,0.0289884910749212,0.0309729038643955,0.0329397911437513,0.0347685716946574,0.0368807852974407,0.0391063193319207,0.0413834736721587,0.0433245377082007,0.0581808677469942,0.0722878940308517,0.0857896174289375,0.0989192719305637,0.1107660783506025,0.1263029661016949,0.1393680451487421,0.1518506666666666,0.1638480969302564,0.1754840234651997,0.1889285598714228,0.2016803078757656,0.2134291782388498,0.224761445677538,0.2359780895594767,0.24645606406815,0.2568370721244079,0.2672447772960189,0.2761218622515653,0.2849178033475203,0.2930185684995772,0.3002928086202858,0.3075473933649289,0.31451429119739,0.3206177418374171,0.3262356194144077,0.3319669048514479,0.3372841394252214,0.3427811993517017,0.3476905189726245,0.3490030602477857,0.3488727813912468,0.3490101454796879,0.3495404212202359,0.3494027939117743,0.3486363775807589,0.3474115089879261,0.347447996442512,0.349080690210593,0.3497059034502546,0.351102906549626,0.3522582697201017,0.3539712979158325,0.3550301177739818,0.3566034082106893,0.3568241469816273,0.3579367586662454,0.3604658542777355,0.36289637599094,0.3648930202740604,0.3657281954714554,0.3677840848238192,0.3671855065067619,0.367925971245029,0.3689320388349514,0.3692891895099086,0.3708934602394841,0.3758879642784656,0.3699007717750827,0.3645675265553869,0.0,2.5307338441892884,59.991198786569925,209.20086369800063,310.67823929530954,fqhc7_80Compliance_baseline,1 -100000,95710,42348,398.3596280430467,6934,71.40319715808171,5415,56.05474872009195,2153,22.139797304356915,77.34534288058313,79.71529475990839,63.32656324425341,65.07497628583073,77.08484945608191,79.45523444914453,63.23050158992847,64.98195109395051,0.2604934245012202,260.06031076386193,0.0960616543249415,93.02519188021564,108.71124,76.19670533209604,113583.99331313344,79612.06282739113,267.05918,166.47504470071752,278497.02225472784,173404.41406406596,294.84105,140.6750172107088,305630.0073137603,145069.06936357706,3888.99663,1747.281584124218,4025963.0132692503,1788250.0826707953,1299.841,563.8581038669865,1342985.3411346776,574013.5553933611,2123.5421,883.9426312894547,2184274.725733988,892437.165250503,0.38034,100000,0,494142,5162.90878696061,0,0.0,0,0.0,22453,234.0507783930624,0,0.0,27337,283.1156618953088,1921335,0,68965,0,0,4374,0,0,52,0.5433079093093721,0,0.0,0,0.0,0,0.0,0.06934,0.1823105642320029,0.3104989904816844,0.02153,0.3190934065934065,0.6809065934065934,24.900726992481147,4.515920149580061,0.322253000923361,0.2210526315789473,0.2230840258541089,0.2336103416435826,10.941252828158987,5.38349625278736,22.79586701197682,12843.057228604375,61.12190599495687,14.08456180225138,19.679145327015263,13.448071349119193,13.910127516571018,0.5471837488457987,0.7677527151211362,0.6922636103151862,0.5753311258278145,0.1114624505928853,0.7042042042042042,0.9212598425196852,0.8692660550458715,0.6963562753036437,0.1343283582089552,0.4959588537839823,0.696078431372549,0.6333078686019863,0.5442247658688866,0.1053159478435305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025518470511989,0.0049257089574929,0.0073048983401647,0.0094353036766199,0.0115723321605076,0.0136837068184363,0.0159730079610205,0.0182211651337749,0.0204444626173001,0.0225814046329754,0.024542267238021,0.0263914561511604,0.0285429223838225,0.030648933211081,0.0329105563524907,0.0347746984090885,0.0370562160818592,0.0389908256880734,0.0412693791396753,0.0432698320063362,0.0576844743850853,0.072041615205878,0.0848820004827014,0.0978945928599236,0.1104603923306636,0.1260120011429659,0.1388897735596675,0.1515742160872528,0.1632984578555321,0.1746055581178338,0.1879195353998987,0.2009745005684586,0.2123836987866587,0.2236126164592023,0.2343741395451291,0.2445787139689578,0.2549785676013574,0.2657236420107356,0.2752321700233873,0.283715814438423,0.2911434886762102,0.2985531994526251,0.3063746670612607,0.3129682237165426,0.3190894617226334,0.3252074624841243,0.330912369455784,0.3364156703128975,0.3414827009579612,0.3456852121051936,0.3457273144275654,0.346932587212107,0.3470042241781219,0.3470049820414784,0.3475476250763342,0.3462760324744087,0.3464712871287129,0.3476126362800473,0.3488717187739856,0.3496014693033291,0.3505079418532862,0.3515247212079345,0.3521834747093936,0.3517348036578805,0.3520334234930448,0.3530626650283652,0.3545125736906558,0.3563124489411173,0.35858054562031,0.3595625817187686,0.3608737376045332,0.3654871029631208,0.3698958662038498,0.3731434696064921,0.3784777893049137,0.3828598597408772,0.3869038491028983,0.3953677366924014,0.3926600441501103,0.3988985051140834,0.0,2.0197728852868977,58.8529017200221,212.4673257777868,302.1814666970089,fqhc7_80Compliance_baseline,2 -100000,95667,41979,395.3296329977944,6785,69.66874679879164,5231,54.14615280086132,2105,21.700272821349053,77.2498286400838,79.64747051181949,63.26585613190741,65.03850600107974,76.9883407100976,79.3842273770469,63.17027268135988,64.94409070947012,0.2614879299862025,263.2431347725941,0.0955834505475294,94.41529160962148,110.49324,77.31164931229284,115497.75784753363,80813.28913030913,264.98475,165.42814987417125,276446.67440183135,172380.90446462337,285.22159,136.65425609000326,294438.374779182,140029.82750486574,3779.21439,1693.1264329243782,3914402.5526043465,1733962.6260121835,1266.68198,551.315249315515,1309413.569987561,561719.1440197754,2068.8298,862.2173900173984,2134340.9326099907,877325.5797939971,0.37864,100000,0,502242,5249.898083978801,0,0.0,0,0.0,22405,233.6228793627897,0,0.0,26472,272.9990487838021,1909022,0,68562,0,0,4366,0,0,37,0.3867582342918665,0,0.0,0,0.0,0,0.0,0.06785,0.1791939573209381,0.3102431834929993,0.02105,0.3211535769284614,0.6788464230715385,25.28066898292133,4.53727872090267,0.3385585930032498,0.1991970942458421,0.2305486522653412,0.2316956604855668,11.10693851943123,5.519102079952094,22.520968341972765,12792.136897174614,58.8313933870008,12.220936957056152,19.972483419041875,13.435839524420835,13.202133486481932,0.5476964251577137,0.7802303262955854,0.6922642574816488,0.5655058043117744,0.1188118811881188,0.7058823529411765,0.9409937888198758,0.8537735849056604,0.7194244604316546,0.1394422310756972,0.4967138523761375,0.7083333333333334,0.6414253897550112,0.5193965517241379,0.1134235171696149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021577049313181,0.0043708864482237,0.0067396798652064,0.0088193456614509,0.0111889819043647,0.0134438718350885,0.0153362972631235,0.0175014039924439,0.0195643280834526,0.0216917073770239,0.0239606946139722,0.0258757062146892,0.0279878582085712,0.030023808787607,0.0320772248606235,0.0343465265640028,0.0362149895862476,0.0383924585500565,0.0403969996150685,0.0424972891817499,0.0567112095535611,0.0704210603474454,0.0832861070881346,0.0959921716348025,0.1081739901228314,0.1233318870180859,0.1360021237058667,0.1486797519340195,0.1604252906759083,0.1720482083011085,0.1862991531366309,0.1993559718969555,0.2120303539109008,0.2233165167799956,0.233412060745188,0.2446281359020509,0.2550426470259016,0.2650745123698431,0.2748039472336357,0.283224175571642,0.291476955956142,0.2990035955161798,0.3067327815829528,0.3133651091692545,0.3202112220880742,0.3252564753053572,0.331264292714799,0.3370100075408034,0.3423173934524274,0.3467643629425482,0.3476268368188393,0.3473817940786566,0.3473267326732673,0.3478626896001161,0.3480272190055512,0.3477546129146246,0.3472200171466675,0.3471446229913473,0.3477693891557996,0.3484889295911221,0.3487241340318872,0.3493369913122999,0.3504557798783183,0.3513111986494091,0.3532732470804865,0.3533059473036971,0.3537135354227322,0.3558309221285696,0.3578120065962598,0.3593849332485696,0.361017719218537,0.3639250555731978,0.3629159066607962,0.3640106747998475,0.3675366128426586,0.3673638189767222,0.3702967268277761,0.3732709519934906,0.3743828853538124,0.3725934314835787,0.0,1.971744925833046,56.49446290611078,196.1772171243913,303.1475834663501,fqhc7_80Compliance_baseline,3 -100000,95735,42382,399.40460646576486,6835,70.08930903013527,5335,55.01645166344597,2164,22.18624327570899,77.32698317968122,79.68693062767288,63.31555014592704,65.0616834457895,77.0617918156201,79.42458442590576,63.2184094847274,64.9684415868406,0.2651913640611241,262.3462017671159,0.0971406611996386,93.24185894890036,109.28786,76.54482483242039,114156.64072700684,79954.90137611155,267.76739,167.32486720041285,279011.63628766907,174094.3930646188,297.2975,143.3186510503889,305790.3379119444,145981.97740331542,3872.76371,1743.949475633197,4003012.189899201,1779359.1535313074,1322.313,577.077520152723,1365379.0985532985,586943.3333187682,2123.42592,874.7704923998624,2180606.215072857,882039.679830909,0.38081,100000,0,496763,5188.938214863947,0,0.0,0,0.0,22480,234.10455946101217,0,0.0,27561,283.2610852875124,1916169,0,68839,0,0,4455,0,0,55,0.5640570324332793,0,0.0,2,0.0208910012012325,0,0.0,0.06835,0.1794858328300202,0.316605705925384,0.02164,0.324770896973063,0.675229103026937,25.317296927013835,4.514297243633319,0.32970946579194,0.2026241799437675,0.237863167760075,0.2298031865042174,11.424901998373535,5.947619829943482,22.883690594644374,12754.270048855524,60.36189560182777,12.87851277532639,19.85726251695301,14.18298470590732,13.44313560364105,0.5610121836925961,0.7853839037927844,0.6992609437180216,0.6004728132387707,0.1239804241435562,0.7276688453159041,0.9213197969543148,0.8616780045351474,0.7306397306397306,0.1714285714285714,0.5030318342597271,0.7074235807860262,0.644916540212443,0.5606995884773662,0.1121304791029561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021072893977002,0.0044614791831437,0.0069017315226437,0.0091027308192457,0.0110450038138825,0.0131765185072043,0.0151731451645796,0.0174958659126635,0.0196026327623564,0.0222003868947093,0.0245774785023931,0.0266796694554226,0.028648376386419,0.0303660608556865,0.0321951722715081,0.0341923617425808,0.0364530489698726,0.0384623363691056,0.0406281830087097,0.0424210855297426,0.0577513310366426,0.0712230742674213,0.0839169637240511,0.0968084435380442,0.1093448584831075,0.1246154008818025,0.1379043376816205,0.1513073843795247,0.1633604104318084,0.1740474401631426,0.1877519346424953,0.199662103621556,0.2108830954038997,0.2217992057501066,0.2323136702367717,0.242823258185365,0.25328418230563,0.2631069163973015,0.2726508542348237,0.2805698502022899,0.2880555008628577,0.2954662605435801,0.3035468727772772,0.310771225509028,0.3179329309841331,0.3237933034667457,0.3306169527224402,0.3360862583161275,0.3410933143116529,0.3456265025229176,0.3451166426328486,0.3453728958316114,0.3451892577711989,0.3453984977640129,0.3452602437971631,0.3440277543251002,0.3439874371460749,0.3453792150995511,0.3457168280913104,0.3467245165782848,0.3480624660205095,0.3494111825828798,0.3487706900540517,0.3501344688480502,0.3511505620145689,0.3536863042738621,0.3541993888682639,0.3576246611611927,0.3608980223801816,0.3613341814423153,0.3635327375524348,0.3639072143009151,0.3618201298292052,0.3609228660625904,0.3611816727820114,0.3604941204418577,0.3639445300462249,0.3683888094751888,0.3688063063063063,0.371552403467297,0.0,2.830112818956872,60.15745657321559,200.64616347095048,298.2756269530562,fqhc7_80Compliance_baseline,4 -100000,95761,42661,402.0634705151367,6849,70.46710038533432,5342,55.22081014191581,2151,22.07579285930598,77.39144353273707,79.72968660272564,63.36142006586866,65.08705342105955,77.12254756315299,79.4622027681859,63.262556705351656,64.99157622978029,0.2688959695840793,267.4838345397319,0.0988633605170008,95.47719127925802,108.91276,76.26325413567965,113733.9417925878,79639.15804521638,267.07062,166.29658210647105,278318.89809003664,173083.9507800368,289.77327,138.63738551393962,299584.2984095822,142371.37254793473,3863.20328,1730.586666442095,3997270.3501425423,1770250.3591671914,1277.19474,558.8831229014736,1319307.8497509426,569268.5836732495,2122.1313,880.575057027671,2181047.608107685,889468.655136061,0.38307,100000,0,495058,5169.724626935809,0,0.0,0,0.0,22512,234.4900324766868,0,0.0,26867,277.43026910746545,1925405,0,69070,0,0,4402,0,0,50,0.5221332275143326,0,0.0,0,0.0,0,0.0,0.06849,0.1787923878142376,0.3140604467805519,0.02151,0.3086144410370783,0.6913855589629216,25.1661497858961,4.467595158312228,0.324784724822164,0.2089105204043429,0.2324971920628978,0.2338075627105952,11.130997963069063,5.62991066542574,22.88561506640156,12858.700000942696,60.069029575892415,13.037489332034085,19.48713711709229,13.82393426569019,13.72046886107586,0.5481093223511794,0.7759856630824373,0.6864553314121038,0.5756843800322061,0.1248999199359487,0.7259148618371919,0.9247311827956988,0.875,0.6944444444444444,0.2024291497975708,0.4886335248563577,0.7016129032258065,0.6239447429009977,0.539832285115304,0.1057884231536926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020451968248825,0.0043475176586235,0.0063817698504494,0.0088055169051705,0.0106760480320484,0.0129875417311293,0.0152231506011819,0.0174464872365172,0.019542543084514,0.0217627077023819,0.0237602459016393,0.0259253939592908,0.0280103985779019,0.0301558222350301,0.0321829127494639,0.034397628319681,0.0365644146381851,0.0384571505616113,0.0406116169805829,0.0425429961352958,0.0573480443836703,0.0710586068704287,0.0842294094814472,0.0973193534478225,0.1094357925369829,0.1252035615337436,0.1385863513441858,0.1506111897188208,0.1621636052968816,0.1735038428968045,0.1870976770221102,0.1998421075399057,0.2122835809540371,0.2231544907301192,0.2336316067188462,0.244990096380476,0.2557268501488145,0.2658136844115433,0.2753468758501859,0.2839914413538222,0.292521095827072,0.3001811911859255,0.3072082515199545,0.314223755780797,0.320977764831537,0.3276573215626885,0.3332624681106498,0.3382167631897155,0.3435816411106506,0.3487562320293334,0.348971437028267,0.3489625586095948,0.3492228854600743,0.3493353347863112,0.3491768967001648,0.3482706445154289,0.3478116553653563,0.3484331978497443,0.3500546000546,0.3507321428571429,0.3523755868544601,0.3529901484667684,0.3538177003425737,0.3549038979701814,0.3562826465467208,0.3567947172580053,0.3567977126518942,0.3600088462024516,0.3632157112076578,0.3661623218491756,0.3667905824039653,0.3702134506060281,0.3702265784114052,0.3716895678206801,0.3773460341412807,0.3789349112426035,0.3817245037126837,0.3810483870967742,0.3843222645617855,0.3861726508785332,0.0,2.2046275153643147,59.045030870089576,196.65518169400767,307.67315281004244,fqhc7_80Compliance_baseline,5 -100000,95715,42275,397.9627017708823,6879,70.44872799456721,5341,55.10108133521391,2082,21.292378415086453,77.37264048070351,79.73146366668847,63.34029949113111,65.08161480434627,77.10872882908596,79.47091722623821,63.24273529364408,64.98840634053319,0.2639116516175477,260.54644045025555,0.0975641974870384,93.20846381308456,109.41876,76.63383178694636,114317.25434884812,80064.59989233282,266.49958,166.43637593585848,277707.9350154103,173165.06914888832,293.90568,140.82117214775886,302353.8630308729,143509.6013635089,3850.35577,1726.0027980029288,3980077.615838688,1760620.9246230249,1247.10675,543.8268131291272,1287522.467742778,552757.8677627618,2048.38966,857.7196205173267,2098905.37533302,861025.4503428526,0.3787,100000,0,497358,5196.238834038551,0,0.0,0,0.0,22443,233.7251214543175,0,0.0,27222,279.8307475317348,1918459,0,68882,0,0,4281,0,0,51,0.5119364780859844,0,0.0,0,0.0,0,0.0,0.06879,0.181647742276208,0.3026602703881378,0.02082,0.3243392832433928,0.6756607167566072,25.128206570882725,4.583568550255698,0.3323347687698932,0.2140048680022467,0.2274854896086875,0.2261748736191724,11.292916826809686,5.590445734954204,22.124707573056057,12756.577249948004,60.123205188365056,13.390853610169325,20.22633729520432,13.364407744024888,13.14160653896652,0.5483991761842352,0.7646544181977253,0.6980281690140845,0.5637860082304527,0.1084437086092715,0.7218100890207715,0.9243243243243244,0.8886509635974305,0.6928838951310862,0.1270491803278688,0.4898572501878287,0.6882276843467011,0.6299694189602446,0.5274261603375527,0.1037344398340249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278481012658,0.0047834767362905,0.0071619140367428,0.0095669483262918,0.0118760739814334,0.0141602109270815,0.0165234498435318,0.0186890131874413,0.0207200392525657,0.0229708564935663,0.0249348944983287,0.0269401751522058,0.0290790934890799,0.0311331733591489,0.0332717762485943,0.0352742982347348,0.0371884997256416,0.0393307956395921,0.0409304452667027,0.0427251611828057,0.0566658313494549,0.0704816314572412,0.0838173925807872,0.0962771436379306,0.1080479885299822,0.1233440120108689,0.1369441615750169,0.1498190719455087,0.1618212500534028,0.1725713550213984,0.1857301349648316,0.1991711122893965,0.2114583446640488,0.223289394519499,0.2331910117305279,0.2446318168723824,0.2545292180610593,0.2641203495180614,0.2731403644294997,0.2806665443368962,0.2887494355613704,0.2963314135880507,0.3028916804930078,0.3098055688910225,0.3164704737814962,0.3222996730615014,0.3278090943254416,0.333214544806608,0.3393772988654613,0.3445781860416007,0.3444404055091078,0.3450520116682261,0.3454337996027553,0.3450310154860538,0.3454364252989825,0.3447937583347384,0.3435876314789,0.3449420659051688,0.3455312318568355,0.3466804535406118,0.348496746690599,0.3491856934421704,0.3508400720660325,0.3510978088494784,0.3527687687687688,0.3538954275596292,0.354583712465878,0.3557839972419845,0.35874925675912,0.3607714759012385,0.3619298086514917,0.3651417047022609,0.3667024568938293,0.3656437980659408,0.3663068981698733,0.3684335349223289,0.3711403240599205,0.3714112414071977,0.3797851831451391,0.3855606758832565,0.0,2.7347270020453385,59.02014878008071,198.1386042382288,303.9300470019582,fqhc7_80Compliance_baseline,6 -100000,95748,42078,396.7602456448176,6896,70.85265488574173,5360,55.46852153569787,2135,21.92212892175293,77.33281654085012,79.69822738165946,63.319784280511655,65.07065053511951,77.06858471279934,79.43496828075183,63.2222569111136,64.97658086428571,0.2642318280507822,263.25910090763216,0.0975273693980582,94.0696708338038,109.43768,76.64928898497584,114297.61457158372,80053.14887514709,262.30399,163.51366060942505,273411.2879642395,170235.88183940446,292.06915,139.94555341255122,302198.0302460625,143983.30448932818,3821.14843,1726.2663083532527,3954712.359527092,1767122.3555737254,1261.82482,550.5995803683005,1309539.0086477003,566867.135824836,2087.18272,872.8591425631946,2145198.0824664747,881236.771206897,0.37798,100000,0,497444,5195.3461168901695,0,0.0,0,0.0,22112,230.3860132848728,0,0.0,27155,280.8727075239169,1921486,0,68965,0,0,4357,0,0,43,0.4282073776997953,0,0.0,1,0.0104440823829218,0,0.0,0.06896,0.1824435155299222,0.3095997679814385,0.02135,0.3322793511135551,0.6677206488864449,25.11331571196041,4.4284201466511846,0.3389925373134328,0.2171641791044776,0.2259328358208955,0.217910447761194,11.178542054212812,5.805589555993061,22.842537934157995,12741.63237658532,60.59913341996436,13.687015236205816,20.507346044018515,13.42618324549242,12.978588894247611,0.5537313432835821,0.7749140893470791,0.6846450192625206,0.5772089182493807,0.1053082191780822,0.7182795698924731,0.9186351706036744,0.8682008368200836,0.7304964539007093,0.1220472440944882,0.4958385876418663,0.7049808429118773,0.6191187453323376,0.5306781485468245,0.1006564551422319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020569668352095,0.0043005081496657,0.0065082749517717,0.0084670820585275,0.0110181906971065,0.0130683670143415,0.0151949336623869,0.0173455844818785,0.0194270055827079,0.0216670079868933,0.0238576130083968,0.0258553415205158,0.0276898083408735,0.0298458274544537,0.0317687966239849,0.0339762672620524,0.0359062522655012,0.0382428028809232,0.0400137261222664,0.0418802350293786,0.055969681784014,0.0694944337490583,0.08252147194228,0.0957913219013173,0.1083927140869418,0.1235975255115529,0.1364841645276935,0.1502229980733818,0.1616817638010596,0.1730103064036978,0.1869677099820192,0.2000995304757989,0.2112823077843139,0.2221177602378818,0.2328614951441361,0.2433949728712213,0.2543188108204625,0.2642431063590321,0.2736920963915595,0.2826236342396408,0.2904775687409551,0.2981135168682741,0.3051530267663542,0.3118493643559606,0.3178889267130282,0.3230579379280557,0.3286799167898945,0.3343565705842642,0.3394973675337812,0.3437508262605431,0.3444424962572326,0.344517196223034,0.3446494360769589,0.3453249913103928,0.3444128124487636,0.3435672290192346,0.3432591934511533,0.3445781547971329,0.3459769132107738,0.3474665571252522,0.3482811005457716,0.3493861386138613,0.3508323200134177,0.3517756507737722,0.35213403625334,0.3543315312491838,0.354222031718817,0.3565414814114085,0.3596688974991194,0.3627986756551917,0.3645018078630601,0.3680781758957654,0.3676954211990893,0.3701640595192674,0.3734928409947249,0.3728894173602853,0.3722000613685179,0.3758130081300813,0.3802386899805717,0.390007745933385,0.0,1.9470042190395975,61.91381839789292,199.78477400305516,299.27085368203865,fqhc7_80Compliance_baseline,7 -100000,95783,42688,401.7414363717987,6980,71.79770940563566,5495,56.81592766983702,2160,22.18556528820354,77.34910350822409,79.67808007601967,63.34642956891118,65.06702808474982,77.0891480782376,79.4172486428245,63.25290786416351,64.97523713842097,0.2599554299864905,260.83143319516466,0.0935217047476655,91.79094632885663,109.48036,76.7359044437142,114299.94884269653,80113.8730711235,269.70929,167.94324518143162,281049.6121441174,174803.43983946167,302.14579,144.71217887048704,311734.68151968514,148287.93120677606,3936.94562,1759.7822953491795,4074024.628587537,1801043.872137205,1321.45907,573.6782920522351,1364771.201570216,584205.3535114601,2126.6334,866.1826574888643,2186944.739671967,878488.6217208635,0.38237,100000,0,497638,5195.452220122569,0,0.0,0,0.0,22699,236.40938371109692,0,0.0,28003,288.6629151310775,1918287,0,68872,0,0,4370,0,0,42,0.4384911727550818,0,0.0,0,0.0,0,0.0,0.0698,0.1825457018071501,0.3094555873925501,0.0216,0.3176486633933442,0.6823513366066557,25.01236783831391,4.462660421303058,0.3226569608735213,0.2174704276615104,0.2307552320291173,0.2291173794358507,11.529098791043566,6.028558886654238,22.70137130590624,12921.920043872986,62.05642947653139,14.21144730302342,20.10280639843047,14.0967194174983,13.645456357579192,0.554322111010009,0.7631799163179916,0.688663282571912,0.6096214511041009,0.1111993645750595,0.7467438494934877,0.9139240506329114,0.8747252747252747,0.7898305084745763,0.1687763713080168,0.4896669097982008,0.68875,0.6244309559939302,0.5549845837615622,0.0978473581213307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872974724562,0.0045003496893339,0.0065637966541883,0.0090400300657179,0.0113372920649123,0.0137322366545869,0.016011333292566,0.0180333724549675,0.0202004720595898,0.0223036156411777,0.0241366239460716,0.0261362120450277,0.028415513945697,0.0304658391486033,0.0324765704741579,0.0347452462843037,0.036981467876618,0.0392144664261125,0.041228972496701,0.0431826228210842,0.0575712988761231,0.0717243975903614,0.0854135432938783,0.0987179487179487,0.1111193070454593,0.1267831857471944,0.1406662356519803,0.1523361902128836,0.1644683484867887,0.1757723786262159,0.1890664514393328,0.2025430051141216,0.2146949158069811,0.2249748545939563,0.2357910483879838,0.2468028566683275,0.2573331696921686,0.2662177808253054,0.2759794024907561,0.2851633134198539,0.2934108885702391,0.3011953775615233,0.3089383756152972,0.3153392754456584,0.321264221275149,0.3270465835829543,0.3330537962800711,0.3383732325353493,0.3433588181935985,0.3479909122130346,0.3483757918856989,0.3484861007796788,0.3489125991909682,0.3486257102786171,0.3493431611484277,0.3491047222264769,0.3482371947163356,0.349040483701367,0.3506093912924565,0.3520389009063768,0.3531914893617021,0.3532127360266291,0.3545861062708626,0.3560463237274441,0.3571497701427534,0.3587427461071869,0.3599045620490413,0.362405441484966,0.366251640594516,0.3687570258551469,0.3716113591383992,0.3725479686997535,0.3770554737987075,0.3776013565592724,0.3793564403704764,0.374713198889023,0.3778751369112815,0.379303193695562,0.3827508455467869,0.3857257417802726,0.0,2.13695980466108,61.05897403853246,209.16621872075777,309.7913145191755,fqhc7_80Compliance_baseline,8 -100000,95672,42428,399.5839953173343,6892,70.89848649552638,5421,56.13972740195669,2196,22.671209967388577,77.31532774038504,79.70875941413665,63.31028192710126,65.07667156619073,77.04681281440811,79.43669150293108,63.212006376345485,64.97927034267593,0.2685149259769304,272.0679112055677,0.0982755507557726,97.40122351479386,109.97756,77.00433881672993,114952.7134375784,80487.85309884806,266.58435,166.3043068189962,278123.8397859353,173307.3384260768,297.43106,142.64728277425056,307338.16581653984,146387.52432766996,3928.74761,1768.7504673169844,4072771.1556150177,1815060.28651746,1325.30972,580.7944226234368,1372377.3622376453,594181.7591598757,2165.94472,901.8418543933695,2237551.1121331216,918652.81293894,0.38112,100000,0,499898,5225.123338071745,0,0.0,0,0.0,22448,234.11238397859356,0,0.0,27608,285.0154695208629,1914892,0,68763,0,0,4434,0,0,50,0.5226189480725814,0,0.0,2,0.0209047579229032,0,0.0,0.06892,0.1808354324097397,0.3186302959953569,0.02196,0.3296158612143742,0.6703841387856257,25.01400621022136,4.546746125305188,0.3239254750046117,0.2173030806124331,0.2263420033204206,0.2324294410625345,10.938608905356784,5.356367835660064,23.578355635619207,12854.849776251887,61.39858717215925,13.755287117494198,20.01973259820488,13.558899702462964,14.0646677539972,0.5506364139457665,0.7724957555178268,0.7004555808656037,0.5664221678891606,0.119047619047619,0.7097722263041881,0.9311224489795918,0.8693693693693694,0.7063492063492064,0.1355311355311355,0.4972906403940886,0.693384223918575,0.6432926829268293,0.5302564102564102,0.1144883485309017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299633284032,0.004663517102942,0.0070531165641681,0.0092760043078048,0.011444091796875,0.0134861217214158,0.0159928195504059,0.0179868239620039,0.0201053331288029,0.0223953959899236,0.0245215679035136,0.026697209068217,0.0287633606633267,0.0308912931478619,0.0330715000877365,0.0350704822579143,0.0370094077665879,0.0389613085353703,0.0408159019752649,0.0429290560610324,0.0573067399412827,0.0721704533556695,0.0852015113350126,0.0968610903580861,0.1095949682348719,0.1250092619055179,0.1389620317676038,0.1513792736180637,0.1632288816689466,0.1747174792603483,0.1880462544858876,0.2007925165648954,0.2132198482754116,0.2238902322935017,0.2343911731671328,0.2451593585734247,0.255212230175658,0.2649517829614376,0.2741215871033661,0.2822593585952364,0.2904361522247701,0.29784693196586,0.3057098527826797,0.3134308654273129,0.3199105417330108,0.3259714155352496,0.3318928262748487,0.3377259994907053,0.3422856180444893,0.3474750944692545,0.3477938500114588,0.3477559684622595,0.348505999971798,0.3488183503243744,0.3485249903253654,0.3481375797741777,0.3474510425751209,0.3480138594676256,0.3489704473936243,0.3501510736059213,0.3519379263812879,0.353065790255202,0.3531736854277484,0.3549900132408716,0.3565131277022294,0.3570119396732299,0.3584591537975773,0.3612962610296451,0.3616802552286423,0.362874107357779,0.363164184592756,0.3657100021417862,0.3696399032955846,0.3681488343368843,0.3706207159177456,0.3687671888078441,0.3705397987191217,0.38174190970835,0.3872211511980171,0.3845568657284138,0.0,2.077306081906705,60.12554624374842,210.60977382423127,302.80094977731807,fqhc7_80Compliance_baseline,9 -100000,95624,42301,399.24077637413205,6906,70.81904124487576,5366,55.50907721910818,2108,21.626369948966783,77.3146043072854,79.73571824023357,63.296484254502126,65.08378146506519,77.06191119344358,79.48251862432996,63.20394852060084,64.9933726731525,0.2526931138418291,253.1996159036112,0.0925357339012862,90.40879191267948,110.12232,77.10177109889715,115161.80038484064,80630.14630103024,267.08954,166.17769688652615,278733.9475445495,173204.11914009677,292.85353,140.27014759088985,302540.73245210404,143722.7871724764,3827.89937,1718.2393885873648,3967204.781226471,1761001.3370988092,1286.51153,560.2606830032904,1331607.075629549,572121.1233615931,2072.59326,857.562610771254,2130588.9943947126,867987.6278438071,0.38042,100000,0,500556,5234.627290220029,0,0.0,0,0.0,22529,234.9828494938509,0,0.0,27205,280.7454195599431,1914261,0,68648,0,0,4249,0,0,47,0.4915084079310634,0,0.0,0,0.0,0,0.0,0.06906,0.181536196835077,0.3052418187083695,0.02108,0.3273003592152528,0.6726996407847472,24.925836153299542,4.520969096898475,0.3315318673127096,0.2118896757361162,0.2364890048453224,0.2200894521058516,11.373245525931758,5.866353797385509,22.4231299885828,12773.839537264716,60.48015287529461,13.443441078458376,19.95597026534864,14.052438449085365,13.028303082402244,0.5493850167722698,0.7704485488126649,0.6790331646992692,0.5776201733648542,0.1109229466553768,0.7307692307692307,0.9236641221374046,0.8443935926773455,0.7667844522968198,0.1631799163179916,0.4882909815645241,0.6895161290322581,0.6251862891207154,0.5233265720081136,0.0976645435244161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021683402064989,0.0045329628540426,0.0068319324318837,0.0090636589950718,0.0111897786458333,0.0132919128132002,0.0153609204312481,0.0175298804780876,0.0195968129608984,0.0216485238246408,0.0236307692307692,0.0256599897277863,0.0276737582815521,0.0299420940919488,0.0317922356754301,0.033976466695618,0.0359748010610079,0.0379879568106312,0.0402343099716996,0.0423750026073715,0.0567337339952965,0.0697742628188341,0.0835328461021505,0.095913770236416,0.1076396951721517,0.1237254216829198,0.1369091874668082,0.1498518850030901,0.1614486955963675,0.1731331099080519,0.1865816557706,0.1999891622412485,0.2125907040596195,0.2242013934533981,0.2349829163452,0.245930019642441,0.2553728891223443,0.2649961692730632,0.2736683028815562,0.2822342011698589,0.2906034362988005,0.2984089845577913,0.3053303187774476,0.3126108846799328,0.3189854051822531,0.3246929246387167,0.3299562226391495,0.3354736172917991,0.3407693999818842,0.3450923482849604,0.3459032284121812,0.3455168239469557,0.3453258708922504,0.3445875542691751,0.3455157418163405,0.3451854581183984,0.344681999269876,0.3454515491100857,0.3460290203485876,0.3476811698086158,0.3485536337372903,0.349916065962279,0.3514463198845454,0.3523651971742824,0.3533968010359464,0.3542731163273246,0.3553486787954474,0.3582206116647402,0.3600894198190645,0.362258626147515,0.3617445708845264,0.3654080389768575,0.365793470007593,0.3684170413840408,0.3697289156626506,0.3737858256385657,0.3763659069622229,0.3761316872427983,0.3719259463940315,0.37065938353492,0.0,2.388036962395003,59.50092645361474,200.47933624604315,305.2485000651576,fqhc7_80Compliance_baseline,10 -100000,95646,42532,401.77320536143696,6860,70.46818476465299,5374,55.600861510152015,2099,21.51684335988959,77.29129418892526,79.6908487462958,63.29829466637945,65.06978184785108,77.02809330117832,79.43087170725963,63.20065009362334,64.97663038778066,0.2632008877469474,259.97703903617264,0.0976445727561099,93.1514600704162,109.0232,76.41436199861842,113986.15728833409,79892.89881293353,265.57546,166.0653210941109,277111.0971708174,173071.054821018,299.68784,143.6598464207302,310296.3636743826,147784.6708073544,3865.49657,1742.7909317192396,3997652.938962424,1778317.4327407724,1325.45127,585.3073533196342,1367171.2146874934,593334.4450574348,2077.0932,870.5317164563212,2130746.983668946,873819.3522760434,0.38131,100000,0,495560,5181.188967651548,0,0.0,0,0.0,22359,233.1723229408444,0,0.0,27845,288.0935951320494,1917612,0,68773,0,0,4376,0,0,40,0.4077535913681701,0,0.0,0,0.0,0,0.0,0.0686,0.1799061131362933,0.3059766763848396,0.02099,0.3273586216479088,0.6726413783520911,24.69452500092967,4.516679156480227,0.3265723855601042,0.2192035727577223,0.2210643840714551,0.2331596576107182,11.150206826793989,5.610798780886118,22.429353357941874,12868.710833279332,60.87314229537178,13.891186192015986,19.95707752331301,13.210554915394182,13.81432366464857,0.5597320431708225,0.7784380305602716,0.7111111111111111,0.5942760942760943,0.1093375897845171,0.7154411764705882,0.922879177377892,0.8663697104677061,0.75,0.1423357664233576,0.5069755854509218,0.7072243346007605,0.6577335375191424,0.5531914893617021,0.1001021450459652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021170345309603,0.0043800060833417,0.0065466946804299,0.0088608881211259,0.0108252195057432,0.0130264296990375,0.0149478964863266,0.017225886821737,0.0196407210117885,0.0216249424051604,0.023781932294818,0.025881990448313,0.0280129622961781,0.0300476062898007,0.031723910103544,0.0335943237177166,0.0355573519048211,0.0377642563442289,0.0398726406259754,0.0420055048167146,0.0566430131574822,0.0713986424201793,0.0850536573072642,0.0979642962401583,0.1103499957780967,0.1259182420560154,0.1398982982472902,0.1520877716233489,0.1641613924050632,0.1750692461297318,0.1887864574909698,0.2017866811044937,0.2139343013257287,0.2254666885640773,0.2366445867454343,0.2476209489585412,0.2582097723946054,0.2673384372888989,0.2768404559698442,0.2852591650336347,0.2928597066076949,0.2999660632160368,0.3074891015921152,0.3138214894280846,0.3197600126565333,0.3260885672651831,0.3309593369528419,0.3368183498871619,0.3422223952453251,0.3471361564378675,0.3474960222216229,0.3478362798907797,0.3480471066677963,0.348860114133426,0.3488275081195435,0.3479971717544345,0.3467987804878049,0.3472593032070932,0.3493969702688329,0.3507601835915089,0.3514012007603561,0.3527646977012179,0.354357580736902,0.3538468454294127,0.3553615358641648,0.3551702494900361,0.3566766424397891,0.3584566929133858,0.3614636209813874,0.3628890662410216,0.3641147668512332,0.3655782240451712,0.3669119512814006,0.3701538461538461,0.3745482214190603,0.3783523752254961,0.3833930518772394,0.3911508101371001,0.3942442022911427,0.4003846153846154,0.0,2.313886612270052,59.95345674248925,203.48156488855412,304.9712124839512,fqhc7_80Compliance_baseline,11 -100000,95637,42089,395.98690883235565,6954,71.67727971391825,5409,56.03479824754018,2237,23.024561623639386,77.27514686010801,79.68735172936556,63.27600815666828,65.05692013657772,77.00671510989946,79.41799006168135,63.17881979657491,64.96169020619705,0.2684317502085491,269.3616676842083,0.0971883600933694,95.22993038066828,109.57584,76.74958603770004,114574.73571943914,80250.9343012642,266.8339,165.70125457756026,278457.7726193837,172712.5865361953,293.2754,139.7288538864558,303739.6196032916,143820.67532042964,3927.61118,1750.3295630221503,4068111.923209637,1791660.060860769,1313.7426,567.3691319569876,1357275.991509562,576854.6804707061,2203.3046,905.129558899774,2269135.230088773,915910.0002043516,0.37819,100000,0,498072,5207.942532701779,0,0.0,0,0.0,22406,233.73798843543813,0,0.0,27059,280.0485167874358,1915466,0,68714,0,0,4467,0,0,61,0.6273722513253239,0,0.0,2,0.0209124083775107,0,0.0,0.06954,0.1838758296094555,0.3216853609433419,0.02237,0.3181942171303873,0.6818057828696127,25.39156396634217,4.58724952939109,0.3148456276576077,0.2231466075060085,0.2255500092438528,0.2364577555925309,11.182142762456609,5.5567211876003935,23.68116904839131,12782.36616497899,61.04784877553535,14.320160624847354,19.17327957567008,13.62734095035425,13.927067624663676,0.5481604732852653,0.7638773819386909,0.6905460951262478,0.5770491803278689,0.127443315089914,0.7055682684973302,0.8790931989924433,0.8618925831202046,0.717948717948718,0.172,0.4978038067349927,0.7074074074074074,0.6394817073170732,0.5364308342133052,0.1166180758017492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0046521999128345,0.0069707270052255,0.0091518537328593,0.011422003885312,0.0136976535766661,0.0158665415833911,0.018274443344121,0.0206618752108615,0.022853866317169,0.0248017806406613,0.0268948655256723,0.0288797892917404,0.0309224156591112,0.0327647095268581,0.0346657563155608,0.0366301125645224,0.0388617717312285,0.0408645341214177,0.0431731200400446,0.0575140309988398,0.0712916103479709,0.08395134351562,0.0973094264885592,0.109351894883603,0.1245499216334138,0.1379555838911911,0.1503869193544948,0.1626948882301955,0.173442083884071,0.1870034542314335,0.1996725257804621,0.2123626613184513,0.224044914250625,0.2340458402763217,0.2448181636416146,0.254871456232442,0.2644158071723577,0.2736740268609151,0.2822865937701002,0.2902619550337595,0.297512227734966,0.3046439334614745,0.3118341560672119,0.317743819349815,0.3236401337957763,0.3289109035049219,0.3342083131578277,0.3389988963188989,0.344186600338696,0.3444523941304318,0.3449255769681754,0.3451211248517702,0.3455606563074739,0.3465163720833271,0.3449043510301839,0.3441762354881685,0.3445252352437981,0.3447698458804634,0.3456384233284494,0.3476652015477666,0.3494247866463378,0.3502731092436975,0.3511986186172717,0.3523736009262833,0.3526674856888935,0.354575070012002,0.3576165214096248,0.3584685956245589,0.3600495187891857,0.3608072857077479,0.3643664007709192,0.3668290830854901,0.3677222434185425,0.3711007869536361,0.3727710843373494,0.3740102468560782,0.3761052848036191,0.3772739994402463,0.3818606461658232,0.0,1.9313603068430292,58.23438036771612,208.38016691988125,310.0680055810104,fqhc7_80Compliance_baseline,12 -100000,95685,42299,398.41145425092753,7059,72.50875267805822,5489,56.78005957046559,2203,22.65767884203376,77.28391542799022,79.68206547994262,63.28504443165552,65.05978593819074,77.01219030370326,79.40944343959366,63.1852543706834,64.96205833621798,0.2717251242869594,272.6220403489634,0.0997900609721185,97.72760197276398,108.33548,75.90123455917482,113220.9646235042,79324.06809758564,268.68835,167.9121544981167,280198.56821863406,174877.7807369146,302.09723,145.07757562305255,312060.2497779171,148738.55718682843,3905.15134,1768.418478157287,4041961.676333804,1808870.9496339944,1305.3047,573.2928651924743,1347719.0468725506,582710.8713037858,2151.26806,894.6963782174034,2214207.158906829,906294.539780586,0.37962,100000,0,492434,5146.407482886555,0,0.0,0,0.0,22638,235.9408475727648,0,0.0,28014,289.1048753723154,1919191,0,68940,0,0,4267,0,0,46,0.4807441082719339,0,0.0,0,0.0,0,0.0,0.07059,0.1859491070017385,0.3120838645700524,0.02203,0.3217567567567567,0.6782432432432433,24.910713574314236,4.4020599068585815,0.3271998542539625,0.218436873747495,0.2321005647658954,0.2222627072326471,11.327319542485538,5.945582768399524,23.480839170268226,12809.6429164167,62.427286440672496,14.305020023162967,20.567062871457512,14.265560468810824,13.289643077241177,0.5636728001457461,0.7848206839032527,0.6976614699331849,0.6028257456828885,0.1081967213114754,0.7275910364145658,0.9207459207459208,0.8257080610021786,0.7766666666666666,0.1333333333333333,0.5060329967988181,0.7090909090909091,0.6537023186237846,0.5492813141683778,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023408524350945,0.0046048360921778,0.006974831720763,0.009136086015386,0.0114770611397698,0.0138741748838725,0.016166046203274,0.0183539649466846,0.0204346714395295,0.0228134155586059,0.0247245419291298,0.0265607661008589,0.0284211934431627,0.0305778565613051,0.0330219354838709,0.0348518537669993,0.0371372024827214,0.039144651476618,0.0408384043272481,0.0428252803601951,0.0579645047058946,0.0710225190799736,0.0842157181685573,0.0969160678023168,0.1094224924012158,0.1253043165315324,0.1385523619413682,0.1511208135882008,0.1626905235255135,0.1738304517209182,0.1880193569942769,0.2007322991593725,0.2131688407848603,0.2235571131310919,0.2336882246616408,0.2448601243339254,0.2552297044979372,0.2654312638081068,0.2749593625316858,0.2832524466779105,0.290725857890037,0.2985114893317537,0.3058489804638355,0.3125518036686007,0.3184907314934353,0.324235201126357,0.3288269081241065,0.3341489836232715,0.3399870298313878,0.3449232476419456,0.3451257013379369,0.3454475319272046,0.3458051964529908,0.3460265140015324,0.3461567103048717,0.3451775870276246,0.3451231902463805,0.3453606551985001,0.3467390931834538,0.3490584630820776,0.3501525021651542,0.3512159233262413,0.3527809451412644,0.3545682017988774,0.3551224727838258,0.3561607823549515,0.3541487470611847,0.3559424150177575,0.3579441230421899,0.3600891861761427,0.3592264081931236,0.3610652463382157,0.3630477148425222,0.3659805473874689,0.3688241337442794,0.3692435184089025,0.3689379987722529,0.3708757637474542,0.3805532271584241,0.3806576402321083,0.0,2.1678738225618552,63.12240067596687,211.83732711881052,301.97139875215663,fqhc7_80Compliance_baseline,13 -100000,95657,42218,398.3294479233093,6814,69.86420230615637,5309,54.925410581557024,2097,21.5143690477435,77.35161970545354,79.75696465267359,63.31721993396855,65.0941351563543,77.09135043075511,79.49850203459381,63.2215685888084,65.00185457176472,0.2602692746984303,258.46261807977555,0.0956513451601495,92.28058458957378,109.05048,76.39153983698507,114000.64814911612,79859.07475774309,265.23958,165.58672027098325,276713.3717344261,172538.05145030594,293.34313,140.42697604941506,303414.2718253761,144240.23489021178,3799.04725,1709.7957578552496,3930044.544570706,1746181.868992658,1275.24842,556.5322202302209,1317650.6789884693,566498.3004223478,2068.70158,863.067748383349,2123920.131302466,868380.3257058485,0.37853,100000,0,495684,5181.847643141642,0,0.0,0,0.0,22374,233.2918657285928,0,0.0,27193,280.9935498708929,1921889,0,68857,0,0,4375,0,0,50,0.5227009000909499,0,0.0,1,0.0104540180018189,0,0.0,0.06814,0.1800121522732676,0.3077487525682418,0.02097,0.3152143457551135,0.6847856542448866,25.21297403718492,4.489375049009658,0.3322659634582784,0.2168016575626295,0.2201921265775099,0.2307402524015822,11.026882177326527,5.439488619103345,22.27832728359474,12732.106056296532,59.741402340068674,13.610847719790032,19.78797443739076,12.890227563779431,13.452352619108456,0.5547184027123752,0.7715030408340573,0.70578231292517,0.5680068434559452,0.1208163265306122,0.7360703812316716,0.9250585480093676,0.8853211009174312,0.7322834645669292,0.1497975708502024,0.4920152091254753,0.680939226519337,0.6468373493975904,0.5224043715846994,0.1134969325153374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0045834812148253,0.0064647735806929,0.0087072258798667,0.0109857693598754,0.0130780199633326,0.01522459593127,0.0174816962963719,0.0194580777096114,0.0215817021581702,0.0239656109897099,0.0262965893559956,0.0282794603439226,0.0302892843151405,0.0323510272380775,0.034390001655355,0.0362232471368606,0.0382950452087074,0.0402929640765285,0.0423218083997163,0.0571240491515506,0.0707592113667061,0.0828470064656982,0.0963234210913988,0.1086825746942049,0.1239706162542075,0.1381261812235883,0.1502099720747799,0.1622607597915975,0.1735180412371134,0.1867640081093905,0.2001126601887058,0.2118668974300362,0.2231720665499124,0.2338314484247156,0.2442547530624688,0.2540948805613282,0.2635892816933123,0.2731195004257735,0.2811504891067787,0.2895507191039837,0.2962906676330648,0.3029227730267438,0.309258593843574,0.3156144162954151,0.3212298069345942,0.3265109769964139,0.3329607093405826,0.3387134291326372,0.3434034819711855,0.3442686896403303,0.3440699160402897,0.3447140283719883,0.3446677640128216,0.3447451283269962,0.345049292756108,0.3447402977518313,0.3461273270512526,0.3468250576873771,0.3474820015363453,0.347804054054054,0.3490515655596653,0.3501563385306276,0.3508587530190535,0.3512728146013448,0.3529427063015266,0.3540236433556473,0.3558303442199987,0.3575919356538232,0.3593054672600127,0.3613947128532361,0.3621190513917499,0.3628385155466399,0.3667680608365019,0.366407202475851,0.3686471009305655,0.3725007689941556,0.3714920250353321,0.3724959393611261,0.3675084809649453,0.0,2.150608901245576,60.28399467292338,192.7728940185636,303.1896280356906,fqhc7_80Compliance_baseline,14 -100000,95806,42551,400.7369058305325,6899,70.98720330668226,5287,54.74604930797653,2141,22.0132350792226,77.3507064425629,79.67799307951192,63.34838135415546,65.06955792752086,77.07738803629879,79.4037898687546,63.2475967112188,64.97057552801242,0.2733184062641101,274.2032107573209,0.1007846429366594,98.98239950844356,109.5028,76.646627375172,114296.39062271676,80001.90737028161,265.77431,166.11696241260088,276964.2297977162,172944.2857572604,289.78182,138.7268193755739,300137.29829029494,142965.30997363263,3803.4639,1719.1534561285448,3939552.407991149,1763999.2653158917,1238.3882,542.440653944668,1282640.4191804272,556237.9075187091,2104.54058,887.7881133260616,2165851.679435526,901143.4055661042,0.38196,100000,0,497740,5195.290482850761,0,0.0,0,0.0,22362,232.9394818696115,0,0.0,26914,278.5629292528652,1921380,0,68978,0,0,4320,0,0,38,0.396634866292299,0,0.0,2,0.020875519278542,0,0.0,0.06899,0.1806210074353335,0.3103348311349471,0.02141,0.3155293148427845,0.6844706851572154,25.39450694796376,4.470453105690571,0.3300548515226026,0.2084357858899186,0.2339701153773406,0.227539247210138,10.7484511750978,5.30143006209362,23.014987657141823,12820.976625490255,59.80170111219618,13.001387636786758,19.71686104150074,13.730722905255972,13.35272952865271,0.5498392282958199,0.7767695099818511,0.6859598853868195,0.5917542441390461,0.1014131338320864,0.7044776119402985,0.9397260273972604,0.8601895734597157,0.7183098591549296,0.1263940520446096,0.4973397517101596,0.6960651289009498,0.6303854875283447,0.5540398740818469,0.0942184154175588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0044403892944038,0.0065653951921418,0.0085121079148382,0.0106861070440865,0.012959776843434,0.0152867799926623,0.0175220173281219,0.019518276669017,0.0215104379860826,0.0235772690944115,0.0258062530141498,0.028097220081188,0.0301620308414486,0.0325032224800206,0.0344225544180088,0.0365886467581382,0.0385337079234094,0.0404390765683902,0.0425788854534286,0.0569288076878932,0.0706362068064195,0.0842243186582809,0.0976775956284153,0.110116977552956,0.1258561643835616,0.1393837214234211,0.1513594040968342,0.1621638931289561,0.1732537454186938,0.1871219785186939,0.2003458337836377,0.2122476476084925,0.2234264550033322,0.2333098777377078,0.243809608107809,0.2546169878403531,0.2645730337078651,0.2737949485330794,0.2827087291957602,0.2910740077416373,0.2986503067484662,0.3060272902637901,0.312846752064036,0.3197959679378188,0.3261035664111601,0.3317986763583591,0.3372610897615351,0.3424962756655224,0.3467931298314117,0.3471812884385051,0.3464851921171419,0.3463413946671176,0.3460297246060115,0.3462213626896757,0.3454723956495727,0.3453238551616895,0.3464155668693259,0.3486685299816526,0.3492868405963302,0.3503523116922265,0.3516166855462151,0.353552823065404,0.3554783550271831,0.3565154264972777,0.3585743177579912,0.3599666244677178,0.3613619023397762,0.3636170137287594,0.3648508119350452,0.3693129489777123,0.3723880999946007,0.3737147966025927,0.3757838507393357,0.3750950570342205,0.3769507803121248,0.3807596513075965,0.3857202331390508,0.3918194640338505,0.390282131661442,0.0,1.6193005693929166,59.58244315335869,197.7460075464696,302.7160629146751,fqhc7_80Compliance_baseline,15 -100000,95730,42354,398.6733521362164,6873,70.56304188864515,5340,55.1446777394756,2100,21.55019325185417,77.31652017658898,79.67793761463557,63.31665033110207,65.062827556623,77.05676756139906,79.41873324487334,63.22185034456524,64.97071405276628,0.2597526151899245,259.20436976223016,0.0947999865368274,92.1135038567229,109.32526,76.54888647719632,114201.67136738743,79963.32025195478,267.34142,167.34104859491973,278658.9888227305,174198.1391360282,296.59856,142.20065010958115,305916.97482502874,145437.83799233806,3839.22203,1728.6333481986965,3971750.381280685,1767019.6993614298,1296.96733,566.0989444478724,1337088.9689752427,573620.4788967647,2068.6364,861.3742175650135,2126061.52721195,869866.2381827049,0.37939,100000,0,496933,5190.985062153975,0,0.0,0,0.0,22503,234.43016818134336,0,0.0,27479,283.06695915595947,1917652,0,68848,0,0,4309,0,0,50,0.5118562624046799,0,0.0,1,0.010446046171524,0,0.0,0.06873,0.181159229289122,0.3055434308162374,0.021,0.3138342112558913,0.6861657887441087,25.16462195461077,4.485729793411953,0.3277153558052434,0.2155430711610486,0.2269662921348314,0.2297752808988764,11.017793949555193,5.532714034506025,22.444856029438206,12809.684984546526,60.55505825502164,13.729114721940388,19.769219792992025,13.487562024017995,13.569161716071225,0.5589887640449438,0.8036490008688097,0.6954285714285714,0.5750825082508251,0.1189894050529747,0.7180059523809523,0.9224806201550388,0.8669623059866962,0.7211155378486056,0.1411764705882353,0.5055055055055055,0.743455497382199,0.6358737490377213,0.5369406867845994,0.1131687242798353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0042578643768818,0.0065161126617609,0.0087078451893473,0.0109659830729166,0.0133725785753569,0.0155120190101271,0.0177588513423812,0.0199179967484995,0.0223905810084463,0.0245365433516528,0.0265838381764041,0.0288540638367884,0.0307782606009432,0.0324823353447831,0.0345718300545544,0.0365094974380208,0.0385979834861624,0.0409139103137148,0.0428074342626161,0.0576192265931679,0.0713620525484205,0.0848984385650318,0.0980590078438794,0.110784251702832,0.1252749809628564,0.1390807158238657,0.1507732918924097,0.1623417552481171,0.1733253229197957,0.1870267242586469,0.2003873788088642,0.2120790335033329,0.2233993702440304,0.2347126360864348,0.2456002305168897,0.2556804859257935,0.265718529186732,0.2750961854932982,0.2838110293949183,0.2910172296085442,0.2980838967784198,0.3053980131901441,0.3111804222648752,0.3180353777885842,0.3242356192779409,0.3300890609146593,0.33585482330468,0.3401349968258904,0.3447893276977942,0.3454665516683737,0.3463654792933681,0.3460696067487177,0.3464320398904173,0.3467149477699793,0.3464981650108256,0.3452445177874393,0.3464326907233481,0.3475679849017757,0.3482662071936248,0.3486471729020353,0.349514755790184,0.3508635214827296,0.3511781635039122,0.3520895269861987,0.3532580274029913,0.3537681823387928,0.355419029615627,0.3580325100274435,0.3616529978501473,0.3634411549707602,0.36574024585783,0.369528032942667,0.3726878282712948,0.3735984170357109,0.380849790544584,0.3795609152752009,0.383130081300813,0.3903387007218212,0.3921113689095127,0.0,2.53063015491084,59.01433194205522,205.38937885513997,300.887186397371,fqhc7_80Compliance_baseline,16 -100000,95681,42740,402.7549879286379,6980,71.75928345230506,5427,56.14489815114809,2169,22.39734116491257,77.40264542862671,79.78347148405733,63.35728834693722,65.11216979814839,77.13367527656403,79.51147131287175,63.25944148696116,65.01487324185582,0.2689701520626784,272.0001711855815,0.0978468599760589,97.29655629256229,110.10934,77.11771753545102,115079.62918447758,80598.77879145391,269.65511,168.1957489798126,281287.4029326617,175248.20913223378,300.62084,144.122916582998,309984.14523259585,147414.39091324562,3927.16286,1771.6630361235764,4067696.543723414,1815111.0491852448,1345.77671,587.9372714373916,1390910.954107921,598955.5392302122,2148.1448,892.0748585098277,2219488.216051254,910603.5790935116,0.3835,100000,0,500497,5230.892235658072,0,0.0,0,0.0,22704,236.7136631097083,0,0.0,27863,287.15209916284323,1917477,0,68715,0,0,4511,0,0,49,0.4807642060597193,0,0.0,1,0.0104513957839069,0,0.0,0.0698,0.1820078226857888,0.3107449856733524,0.02169,0.3280843488977132,0.6719156511022867,25.17620895279769,4.453985007634639,0.3254099871015294,0.2115349180025797,0.226460291136908,0.2365948037589828,10.95093402297992,5.5023435773354565,22.93551381857833,12926.117227136076,61.14462542496614,13.515479189019116,19.81010349032408,13.742290837928648,14.076751907694296,0.5577667219458264,0.7770034843205574,0.6987542468856173,0.595606183889341,0.131619937694704,0.7299058653149891,0.9342105263157896,0.9028697571743928,0.7545126353790613,0.1291512915129151,0.4990113692535838,0.69921875,0.6283320639756284,0.5493697478991597,0.1322803553800592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809875343034,0.0049053888331458,0.0071515520389531,0.0093943918019966,0.0115313043389837,0.0135735087469197,0.0157411277743227,0.0177687510843939,0.0199070052628889,0.022401653772156,0.0244367453207322,0.02647626478318,0.0285726036129589,0.0306388325317459,0.0329749695631538,0.0350059428453309,0.036902432205759,0.0390793624439648,0.041027934355305,0.0429702970297029,0.0569634798596022,0.071071836162037,0.0848058761804826,0.0972377085393305,0.1101711898910418,0.1257234148354264,0.1395082297757638,0.1517809619110477,0.1642480070101947,0.1763810095767156,0.1901510827778555,0.2037053068998355,0.2154244328932773,0.2274203247143716,0.2380564752989318,0.2493771936623227,0.2594512636988973,0.2681923893626344,0.2776884034984366,0.2861357269452861,0.2939587086046833,0.3012534721411731,0.3092102932319284,0.3160923665948791,0.3215693408525862,0.3264776112054747,0.3313828457114278,0.3367795361597276,0.3420348664400822,0.3468933547554455,0.3481369005227159,0.3478982832205739,0.3481375358166189,0.3484632343405524,0.3499095840867993,0.3495528548498051,0.3492168960607499,0.3499326831510853,0.3507404121741504,0.3514781708861889,0.3521958351296133,0.3531267872285877,0.3543465083711306,0.3551328758856529,0.3555791045495051,0.3571391240723319,0.3579681958585974,0.3608669627949469,0.3614245416078984,0.3644368301525957,0.3644444444444444,0.3660144733315465,0.3710556329996198,0.3738797395633856,0.3744188253154948,0.3776115859449193,0.3817677001388246,0.3784715183458342,0.3794899917740609,0.3831316187594554,0.0,2.269882021217533,60.63005253110781,203.7233679160704,305.7033521456823,fqhc7_80Compliance_baseline,17 -100000,95725,42462,400.3865238965788,6905,70.89057195090102,5395,55.75346043353356,2147,22.104988247584227,77.33907921770925,79.70608217006779,63.32552877917672,65.07561577297794,77.07701260002743,79.44270905099738,63.230496672527416,64.98235917612341,0.2620666176818247,263.3731190704083,0.0950321066492989,93.25659685453049,108.79396,76.16586106361864,113652.60903630192,79567.36595833757,267.59884,167.25717318313087,278951.9874640898,174129.14409311142,292.90666,140.82009577370445,301799.112039697,143945.35165471252,3889.86593,1740.8401402438017,4023116.009401933,1778378.270057112,1283.57685,556.4904994564912,1324589.8250195873,565160.6396019891,2121.54182,879.383903161296,2186065.938887438,893292.9354376779,0.37986,100000,0,494518,5166.027683468269,0,0.0,0,0.0,22550,234.9438495690781,0,0.0,27159,279.50901018542703,1921960,0,68917,0,0,4259,0,0,44,0.4596500391747192,0,0.0,0,0.0,0,0.0,0.06905,0.1817774969725688,0.3109341057204924,0.02147,0.3177673390439348,0.6822326609560652,25.02664077161408,4.49777891022126,0.3262279888785913,0.2103799814643188,0.2291010194624652,0.2342910101946246,10.911218012311094,5.383747505996493,22.922715330218665,12796.982841790154,60.73546532254352,13.33117002806472,19.941019385033908,13.603428611045327,13.859847298399568,0.5303058387395737,0.7480176211453744,0.6755681818181818,0.5647249190938511,0.0988924050632911,0.7222222222222222,0.9408450704225352,0.8513513513513513,0.7764705882352941,0.1074380165289256,0.4696267382288363,0.6602564102564102,0.6162613981762918,0.509683995922528,0.0968688845401174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0047248245934217,0.0068816418501263,0.0092566249390343,0.0116985239514562,0.0141156341341698,0.0163055116504359,0.0183667010382954,0.0204809914313176,0.0225117269915401,0.0246238731578245,0.0267144603186015,0.0283957092756574,0.0305162626335472,0.0321944673823286,0.0340933767643865,0.0363199386725507,0.0387920298879203,0.0406796580912172,0.0423811805888358,0.0568752545133704,0.0706147004969919,0.0841721187720181,0.09728911228417,0.1100823587721055,0.1251070941264821,0.1374649919375371,0.1490865732657667,0.1611531392913621,0.1725014752427444,0.1861302070986789,0.1987722223425218,0.2114292552381367,0.2229698680496291,0.2336621454993834,0.2446523175137986,0.255029361198562,0.2649104249189773,0.2742830554830509,0.2822801489544543,0.2902486721670003,0.297453771389139,0.3047642697506119,0.311246542702858,0.3180803571428571,0.3242754514589381,0.3295485772814709,0.3353353480458135,0.3404799751870662,0.3452721496460538,0.3458548525930708,0.3458537994799191,0.3461950696677385,0.3462674465743904,0.3464880952380952,0.3460423600141097,0.346397146254459,0.3473802037893628,0.3478447314705226,0.3491212338593974,0.3497225618357942,0.3516150139789423,0.3518359120777612,0.3531590169453484,0.3542986534338641,0.3557504110232521,0.3561318731592943,0.357602523659306,0.3612607853495334,0.3649063984353171,0.3664542161492962,0.3699833895943846,0.3710407239819004,0.3727755951005315,0.3739368739368739,0.3756430194999401,0.3837644125895917,0.3828430364122608,0.3906729963697291,0.3900270583687669,0.0,2.352476624515184,56.8947680938455,208.2813317502801,309.70338941171025,fqhc7_80Compliance_baseline,18 -100000,95696,42453,399.93312155158,6853,70.60901187092459,5348,55.40461461294098,2161,22.278883129911385,77.30793472821749,79.68502746175396,63.31631099018998,65.07078587910493,77.04774061175097,79.42134587762669,63.22204617910951,64.9768786646361,0.260194116466522,263.6815841272693,0.0942648110804711,93.90721446882822,109.14134,76.47936261292732,114050.05433873934,79919.07980785752,264.44963,165.4378945203413,275894.6768934961,172429.81370207877,294.46135,141.08352818260127,304490.2817254639,144919.67871226455,3869.08608,1736.9111501774523,4014740.010031767,1786668.8996169672,1277.88463,557.4337624874421,1324899.201638522,572045.511293515,2127.79698,877.7503628936586,2196577.1610098644,895127.8814686572,0.38119,100000,0,496097,5184.093379033607,0,0.0,0,0.0,22251,232.03686674469157,0,0.0,27289,281.9344591205484,1919380,0,68963,0,0,4384,0,0,55,0.5747366661093463,0,0.0,0,0.0,0,0.0,0.06853,0.1797791127784044,0.3153363490442142,0.02161,0.3205074585250244,0.6794925414749756,24.961420329422044,4.487233596775049,0.3270381451009723,0.2137247569184742,0.2238219895287958,0.2354151084517576,10.837359018613403,5.405019200344822,22.967601900001675,12854.228381959509,60.65295791461263,13.573861541691594,19.848655587583053,13.481136977271248,13.74930380806675,0.543754674644727,0.7777777777777778,0.6952544311034877,0.5555555555555556,0.1096108022239873,0.7133382461311717,0.917098445595855,0.8390022675736961,0.7304964539007093,0.1532258064516129,0.4860937108494111,0.7067371202113606,0.6467889908256881,0.5016393442622951,0.0989119683481701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376121337302,0.0045397430181184,0.0068371559865691,0.0091919232956853,0.0111972174762021,0.0133192130666775,0.0156315322572422,0.0178458397141398,0.0200576580997362,0.0223254956956116,0.0242649772419731,0.0264681724845995,0.0283019838127461,0.0304313337660063,0.0325356778008234,0.0346727590377637,0.0366571345683617,0.0386611851667289,0.0407560359085849,0.0426665276764307,0.0570521324043995,0.0714554855456239,0.0851237935375577,0.0971531334462124,0.1091187012439384,0.1246801311198054,0.137786547009091,0.1504794950666823,0.1628513133859613,0.1748308002531292,0.188669696121293,0.2009237625475943,0.2132551995564205,0.2241584764570191,0.2345396546034539,0.2449987815414608,0.2551747994242164,0.2648485053048458,0.2738589682485645,0.2830352949262827,0.2908242432664026,0.2981947093166103,0.3062224747833499,0.3123012873579767,0.3181403495967594,0.3241762310255461,0.3301322635241021,0.335756370035963,0.3406573428389627,0.3466606689246401,0.3471607470581885,0.3474318990975078,0.3486312399355877,0.3493975903614458,0.3495161554863047,0.348818280940461,0.3485002541942044,0.3503949342875517,0.3519414975795653,0.3521217662561179,0.3529699616050591,0.3546593594249518,0.3554499379613468,0.3565453362937047,0.3584039803878946,0.3599695585996956,0.3616112385321101,0.3644108053329955,0.3681371331227597,0.371486826850038,0.3717099208540401,0.3717776944102042,0.3726027397260274,0.3747112274757431,0.3772813688212927,0.3794258373205741,0.381782057160324,0.3826210249139153,0.3858117326057299,0.3875379939209726,0.0,1.9057088665065345,60.35201135209355,203.96813467637463,301.31181549778046,fqhc7_80Compliance_baseline,19 -100000,95709,42557,400.23404277549656,6972,71.52932326113532,5415,56.0239893844884,2202,22.714687228996223,77.38171245272493,79.75664717085671,63.34258245905804,65.0955424500296,77.110518669376,79.48308753284951,63.2437134165393,64.99800548535879,0.2711937833489202,273.5596380071996,0.0988690425187428,97.53696467080886,109.29314,76.57538461882957,114192.93901304998,80008.34177639468,265.31828,165.32246341716285,276640.6503045691,172163.1028871296,301.64148,144.94213248739,311237.20862196863,148476.92773762328,3915.77633,1767.330020463242,4054712.722941416,1810047.274875163,1308.69497,572.0205069242692,1350547.3988862073,581054.8252560878,2165.59752,893.0543220995452,2234945.720883094,908778.619089124,0.38168,100000,0,496787,5190.588136956817,0,0.0,0,0.0,22311,232.53821479693653,0,0.0,27956,288.30099572662965,1920531,0,68893,0,0,4248,0,0,46,0.4701752186314766,0,0.0,0,0.0,0,0.0,0.06972,0.1826661077342276,0.3158347676419966,0.02202,0.322928026172301,0.677071973827699,25.160188741137738,4.539659639011891,0.3346260387811634,0.2029547553093259,0.2291782086795937,0.2332409972299169,11.058091865385723,5.458850406033696,23.26544874144008,12894.796522200657,61.06620210402021,13.010273762611517,20.569643331295133,13.673915828483002,13.812369181630569,0.5602954755309326,0.7816196542311192,0.7168874172185431,0.5817888799355359,0.121931908155186,0.7281205164992827,0.9376693766937668,0.891213389121339,0.7142857142857143,0.1461538461538461,0.5021139020144243,0.7027397260273973,0.6544227886056971,0.5419287211740041,0.1156530408773679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045413536883293,0.0070016641636562,0.0091826991447087,0.0116361860976056,0.0139307535641547,0.0162222788682131,0.0187124831557025,0.0209357717510197,0.0229092025795884,0.0249633494971448,0.0271865791932321,0.0293905925423171,0.0317058096415327,0.0335490129304562,0.035731271065528,0.0376776171340983,0.0396592335868674,0.0415899659917007,0.0436762682896327,0.0587141782939259,0.0723947318829958,0.0859109413690351,0.0987502366975951,0.1111017351405516,0.1258803375420341,0.1396044646267453,0.1516154787885239,0.1635064255269145,0.1751083365512507,0.1893694509094043,0.2024702583920588,0.2144185490097987,0.2255441020539784,0.2359908933933108,0.2470082915435112,0.2568471763761263,0.2666861596248355,0.275318429797997,0.2835762787555392,0.291839733428978,0.2992646113196076,0.3066043318735945,0.3137936407109555,0.3199416874202758,0.3267474393896442,0.3321197562837018,0.3371746549177405,0.3427568246893746,0.3475747376757078,0.3478348683147519,0.3477866248607615,0.3479852963959269,0.3481618336917769,0.3479337862291969,0.3472258320974819,0.3462079873467774,0.3472709391902966,0.3491606305922454,0.3494635154885395,0.3503426837946144,0.3511163801620233,0.3526596300553872,0.3534945035302529,0.3534685832411903,0.35425554052648,0.3559293093144369,0.3575843137254902,0.3599859845830413,0.3643956568428588,0.3678685531720675,0.3711708826982602,0.3694546841235541,0.3702733923758182,0.3704653371320038,0.3696904247660187,0.3745550224423464,0.3730175077239959,0.3776595744680851,0.3763736263736263,0.0,2.1139661519025608,61.496147091752974,201.9618683763053,303.9458206854523,fqhc7_80Compliance_baseline,20 -100000,95851,42561,399.4950496082461,6963,71.2877278275657,5522,56.95297910298275,2216,22.701901910256545,77.44506122741345,79.72298789715717,63.40474875222951,65.08419120772076,77.18220609635816,79.46222902989791,63.30850034657959,64.99184916260504,0.2628551310552893,260.7588672592556,0.0962484056499164,92.3420451157284,108.67582,76.12047245275838,113379.95430407612,79415.41815187987,269.18952,167.59467781916328,280181.0205423,174188.55079150273,299.56304,143.02930687073916,308521.10045800253,146102.37199870366,3984.34388,1782.9595820523814,4111287.8217233,1814614.5497202757,1356.32401,595.1461540890688,1395765.4797550363,601639.3298860408,2179.8005,900.8827748657416,2234491.38767462,905707.9554498538,0.38208,100000,0,493981,5153.634286548914,0,0.0,0,0.0,22695,236.09560672293452,0,0.0,27752,285.5264942462781,1925255,0,69203,0,0,4185,0,0,37,0.3755829360152737,0,0.0,0,0.0,0,0.0,0.06963,0.1822393216080402,0.3182536263104983,0.02216,0.3194217130387343,0.6805782869612657,25.00153041170729,4.548467492282614,0.3301340094168779,0.2057225642883013,0.2341542919232162,0.2299891343716044,11.118346971580506,5.596766472109312,23.40697239193781,12864.229575977271,62.14870921327747,13.345679151178762,20.537527945255334,14.436159241925656,13.82934287491773,0.5561390800434625,0.7720070422535211,0.6856829402084477,0.6063418406805878,0.1259842519685039,0.7228654124457308,0.9209039548022598,0.8544303797468354,0.7474402730375427,0.1877394636015325,0.5004830917874397,0.7046035805626598,0.6263899184581171,0.565,0.110009910802775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021761574120933,0.0044267061052077,0.0067529886537623,0.0091855791482278,0.0114516227366025,0.0136940309896124,0.0158274260571987,0.0177429716418367,0.0199328084632744,0.0225153374233128,0.0246672127790292,0.0269934875134608,0.0291688919929337,0.0308385450954575,0.0331241821984566,0.035146573080099,0.0372821759139562,0.039357105107719,0.0414655163463834,0.043588196120869,0.0579568087258469,0.0717203481022576,0.0845610177477619,0.0969095965160816,0.1092757038845166,0.1239999155601528,0.1380632180865145,0.1516909444426736,0.1632740107271195,0.1745877165758804,0.1889501456190691,0.2014123592229864,0.2136987788331072,0.2251926729690195,0.2358361062607759,0.2471072368857718,0.2571355333400202,0.2673790182132785,0.2770812551011154,0.2851307750394727,0.2927116938980816,0.3002888517266784,0.307274534396668,0.3140958879511581,0.320236447940184,0.3259686199167467,0.3315008452820737,0.336893018519697,0.3422170972506543,0.3463914260070746,0.3468566119541654,0.3472724522490065,0.3474468982979322,0.3470646737485406,0.3480496769221649,0.348187161285398,0.3465902813945047,0.3483980757273292,0.349002096364597,0.35030169268284,0.3512127564006588,0.3509812059050216,0.3516085088546579,0.3519036015291408,0.3520388536256972,0.3538902645640557,0.3537686152794783,0.3551895391965801,0.3565135305223411,0.3597715736040609,0.3597112441175126,0.3624265098877605,0.3624462433594738,0.3647357880141734,0.3643278189769918,0.3626545061802472,0.3669254658385093,0.3658283101226356,0.3633314700950251,0.3682564503518373,0.0,2.5978091956020264,60.71288801216977,206.811318256248,313.76911581304773,fqhc7_80Compliance_baseline,21 -100000,95671,42288,397.8217014560316,6938,71.17099225470623,5397,55.70130969677332,2227,22.901401678669608,77.29747507811412,79.70111681687182,63.28577397120039,65.06603414258798,77.01516976440281,79.42009140067185,63.18107113826073,64.96493667489361,0.2823053137113049,281.02541619996657,0.1047028329396653,101.09746769437322,110.28028,77.19339810526223,115270.33270269987,80686.30839571264,268.79359,168.32336352561862,280194.6566880246,175178.27087165244,299.59507,143.9982901357143,308166.6858295617,146808.4248795584,3873.25209,1763.5053779060831,4000177.075602847,1794966.8111612548,1293.16922,572.3566807023875,1333954.259911572,580532.3138257093,2183.21378,918.5484717070358,2245998.264886956,927621.5183712892,0.37878,100000,0,501274,5239.5605773954485,0,0.0,0,0.0,22642,235.87084905561767,0,0.0,27692,284.49582423095814,1907847,0,68570,0,0,4405,0,0,61,0.6376017811039918,0,0.0,0,0.0,0,0.0,0.06938,0.1831670098738053,0.3209858748918996,0.02227,0.3232752708819092,0.6767247291180908,25.16597888443781,4.407012799751838,0.3168426903835464,0.2225310357606077,0.2317954419121734,0.2288308319436724,11.03444541815682,5.620733482837359,23.807075875345596,12779.116746372058,61.13249117101053,14.08156717709595,19.345431508811497,13.983157316354164,13.722335168748916,0.5501204372799704,0.7443796835970025,0.7005847953216374,0.5979216626698641,0.1044534412955465,0.6949891067538126,0.913978494623656,0.8480392156862745,0.7301587301587301,0.1453900709219858,0.5004975124378109,0.6682750301568154,0.6543778801843319,0.5534188034188035,0.0923399790136411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0047166940539224,0.0069851261485354,0.0093791281373844,0.011749267578125,0.0139949886940047,0.0164007996409775,0.0184534629603153,0.0205569817032635,0.0227442627315644,0.0249043521073307,0.0270592344517269,0.0290426122919281,0.0310783657066309,0.0329977801868772,0.0351062289248846,0.0370854063018242,0.03911531073153,0.0410541319433606,0.0431896111475888,0.0576959237824624,0.0720873506904096,0.085503809263962,0.0983956656672452,0.1106223164646432,0.1256904031319437,0.1388337455811633,0.1516675010385266,0.1632336584531143,0.1742080962095994,0.1880170414711751,0.2004271326821547,0.2118105861719626,0.2223731784814287,0.2331139553086174,0.2444797052883868,0.2552563629656953,0.2647333851578959,0.273433860209311,0.2823943500492994,0.2898582637013687,0.2975075873867751,0.3043421567349068,0.3104450717760826,0.3162105878484527,0.3224543242208249,0.3283655112716871,0.3331376502718293,0.3380250571844458,0.3430387288977159,0.3425427806763807,0.3429842866816844,0.3433249833708374,0.3440198539976489,0.3444154682959541,0.3437778255396235,0.3426419283222328,0.3442404720035499,0.3458504098360656,0.3464271685176588,0.3482763140647529,0.3485841791398444,0.3505135191783693,0.3510635918312568,0.3513864818024263,0.3522703549060543,0.3542421734539539,0.3569560422246731,0.3581164371500017,0.3609184405644582,0.3637736885471024,0.3672837859467534,0.3692229879243852,0.3705513975866809,0.370682312860793,0.373584455835022,0.3751937984496124,0.3748205864260816,0.3738551207327227,0.3734423676012461,0.0,2.699538888817949,60.33457911540616,205.67275372077185,302.04372432299004,fqhc7_80Compliance_baseline,22 -100000,95833,42488,399.601389917878,6893,70.83155071843728,5429,56.10802124529129,2180,22.372251729571232,77.32864418348662,79.6382889071019,63.32870225298407,65.03806802128999,77.04802239016267,79.35965150600187,63.22532607719309,64.9381363771338,0.2806217933239452,278.63740110002766,0.1033761757909772,99.93164415618594,108.83774,76.2532241420262,113570.21067899368,79568.85847466551,266.97994,166.43969406854907,278083.49942086753,173171.5735378722,301.16166,144.33611363686038,311122.59868729976,148098.42387237394,3948.04165,1786.752100790524,4084323.468951197,1829176.01363186,1342.07402,591.1937848555827,1387726.5138313523,604247.3721644373,2152.96556,903.8189159830096,2212317.761105256,913363.153550448,0.38132,100000,0,494717,5162.282303590621,0,0.0,0,0.0,22385,233.04081057673244,0,0.0,27868,287.6670875376958,1918325,0,69035,0,0,4376,0,0,72,0.7513069610676907,0,0.0,2,0.0208696378074358,0,0.0,0.06893,0.1807668100283226,0.3162628753808211,0.0218,0.3251245157719978,0.6748754842280023,24.972733482094764,4.46986165977155,0.316080309449254,0.2110885982685577,0.2355866642107202,0.237244428071468,10.901109866534629,5.393523821709826,23.419522125813607,12854.81656604602,61.639799722683485,13.704882753160964,19.39388621519386,14.290196023999336,14.250834730329323,0.552956345551667,0.7966841186736475,0.6934731934731935,0.5887412040656763,0.1133540372670807,0.7314487632508834,0.935483870967742,0.871331828442438,0.740983606557377,0.1742424242424242,0.4900348779272546,0.721399730820996,0.631578947368421,0.5410677618069816,0.09765625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0045614888699671,0.0067873991782072,0.0090707784820412,0.0112161887329672,0.0134493993076766,0.0158291713382937,0.0181554696031106,0.0202342265007051,0.022409823484267,0.024447723267347,0.0265388641448246,0.0286007913262422,0.0308629901481382,0.0329057273083506,0.0349476250490692,0.0372018419827184,0.0391290824261275,0.0411728657934917,0.0429329725228975,0.0581050918876071,0.0719319156054618,0.0852977244856247,0.0982535045501355,0.1102467613235092,0.1257029301086634,0.1387913940640673,0.1516534729315628,0.1637672337380792,0.1751771605004449,0.1884583907649896,0.2011706282660204,0.2136689865158764,0.224549588945251,0.2349225910806439,0.2453637028338466,0.2557035812795229,0.2656846515084969,0.2747245257298648,0.2837754118672846,0.2916130229537098,0.2998369176258022,0.3067659528984216,0.3130948947216613,0.319437003847465,0.3251654157614063,0.3305536397266286,0.3362873610119351,0.3417126533792118,0.3465254798146923,0.3470253044910745,0.3472513812154696,0.3473140349635501,0.3477565965360921,0.3477715565509518,0.3473308293824272,0.3463796477495107,0.3478698146804722,0.3491851318698267,0.3496653663075766,0.3504964645704829,0.3513711949835298,0.3526729427586786,0.3536207824838478,0.3553200222120283,0.3561438954632521,0.3575006440163723,0.3587436868686868,0.360457343887423,0.3634194831013916,0.3638938376501758,0.3658354247877396,0.3689652984837911,0.366415732063297,0.3676777251184834,0.3657920077034184,0.3638183217859892,0.3669050051072523,0.3654164368450083,0.3685647425897035,0.0,2.1524465791969805,62.54920766584238,205.3380980204207,302.50445848491205,fqhc7_80Compliance_baseline,23 -100000,95737,42491,399.6365041728904,6944,71.27860701714071,5496,56.71788336797685,2186,22.332013745991624,77.35098256499538,79.69905582217503,63.33757887846742,65.07095975515664,77.07413914784868,79.42685889177544,63.23478929719905,64.97387850058642,0.2768434171466936,272.1969303995877,0.1027895812683681,97.0812545702131,107.92232,75.63839876335355,112727.91083906952,79006.4434475214,267.76092,167.01491569173936,279006.6327543165,173775.95284374256,295.72934,141.94775695458128,305879.91058838274,145813.4035147585,3976.21318,1777.812202855558,4105085.358847677,1808867.7873434443,1349.2498,588.9161409469164,1389643.0951460772,595498.9001264132,2151.96246,899.5603885792126,2200621.306287016,895974.5980387061,0.38032,100000,0,490556,5123.995947230434,0,0.0,0,0.0,22527,234.56970659201767,0,0.0,27445,283.56852627510784,1924805,0,69056,0,0,4209,0,0,49,0.5118188370222589,0,0.0,2,0.0208905647764187,0,0.0,0.06944,0.1825830879259571,0.3148041474654378,0.02186,0.3285070345581204,0.6714929654418795,25.07208946313216,4.532272505401684,0.3198689956331877,0.2168850072780203,0.2270742358078602,0.2361717612809316,11.028567890729626,5.554518953465275,23.168997707835786,12830.592441985378,61.80395458759764,14.100856648638652,19.71704482719089,13.809477714367636,14.176575397400468,0.5456695778748181,0.7911073825503355,0.6803185437997725,0.5729166666666666,0.1117103235747303,0.7139737991266376,0.9349397590361446,0.8597701149425288,0.7054263565891473,0.1390977443609022,0.4895681707908782,0.7142857142857143,0.6213151927437641,0.5383838383838384,0.1046511627906976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025113161119155,0.0046320227850923,0.0065954359583168,0.0088262777281222,0.0111437606125001,0.0133053720312325,0.0158000428130192,0.0179827112866517,0.0199204816075389,0.0219836453141471,0.0241917297086741,0.026288236501745,0.0285919909525523,0.0307692307692307,0.0327748777518724,0.0348220653443446,0.0369354070453745,0.0391009277130938,0.0409847996506622,0.0432572095349224,0.0578673737837725,0.0720181614654712,0.0848826113854897,0.0971957900049418,0.1095906297112373,0.124159512834609,0.1366702730223382,0.1490942376056368,0.1609291193879949,0.1720704675664656,0.1859553103923807,0.1990842471017395,0.2112746537863211,0.2224070385852793,0.2329990201798905,0.2441276562725166,0.2546270957364817,0.264257742167807,0.2737149214421941,0.2826376146788991,0.2902168752822389,0.2982123415165244,0.3052225470123906,0.3126392982960673,0.3195623398545181,0.3256106122750619,0.3307892497872979,0.3365351585857686,0.3424425008098477,0.3475543693681791,0.3481081810211101,0.3484209074610399,0.3488766186999562,0.3489548604064593,0.3489179165611641,0.3491054288566382,0.3478184908117723,0.3488621195392449,0.3490659811482433,0.3504813370074795,0.3516873556310916,0.3534863457235083,0.354419738556597,0.3551527659383552,0.3567709588776936,0.357750608686546,0.3594272485638343,0.3616194178439366,0.3641002181715814,0.366155072752641,0.3693512201822261,0.3727156139788393,0.3745413134252815,0.3759547815459823,0.3764161631419939,0.3813397129186603,0.3776147361848267,0.3788934426229508,0.381950265437273,0.3763106796116505,0.0,2.6034529458307327,60.145295192630726,202.088917841482,318.0025967193577,fqhc7_80Compliance_baseline,24 -100000,95831,42279,397.70011791591446,7009,71.87653264601225,5467,56.33876303075205,2164,22.122277759806327,77.51248185563044,79.79817596924393,63.42745123530996,65.11078273366603,77.24422782432366,79.53075571694765,63.32944996638586,65.01569380280152,0.2682540313067818,267.42025229627586,0.0980012689241007,95.08893086450598,109.53448,76.71152292051994,114299.63164320524,80048.75553893828,268.2337,166.55705484311008,279204.0258371508,173104.55188664937,292.90033,140.5129299548702,300798.96901837614,142904.73907542558,3921.20481,1759.176485791552,4047595.600588536,1791529.0194307885,1346.22201,585.0735765875208,1386296.469827091,592054.4169900247,2132.7922,883.4584033639989,2183672.632029301,889563.9631479057,0.38166,100000,0,497884,5195.437801963873,0,0.0,0,0.0,22575,234.85093550103824,0,0.0,27225,279.1372311673676,1927850,0,69041,0,0,4304,0,0,56,0.5843620540326199,0,0.0,1,0.0104350366791539,0,0.0,0.07009,0.1836451291725619,0.3087458981309744,0.02164,0.3127807268272764,0.6872192731727236,25.090822894758745,4.4462383604562605,0.3380281690140845,0.2101701115785622,0.2207792207792207,0.2310224986281324,11.348314441596866,5.8619804891785074,22.801444716340605,12809.056267480326,61.31981590277036,13.455338947169263,20.80968007537322,13.33126543719294,13.723531443034922,0.5520395097859887,0.7519582245430809,0.704004329004329,0.5700082850041425,0.1306413301662707,0.7081824764663287,0.8790931989924433,0.8593073593073594,0.7255639097744361,0.15234375,0.4992657856093979,0.6848404255319149,0.6522366522366523,0.5260361317747078,0.125124131082423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022767287960658,0.0046789074447291,0.006932971143028,0.0091424744548507,0.0114488307360978,0.0137089392860774,0.0159332939667284,0.0180698319464839,0.020034104949302,0.0221392780447898,0.0244943935282371,0.0265001179378313,0.0285858139558779,0.0308035898069243,0.0327322962092392,0.0346120475954387,0.0365790562913907,0.0385373035292166,0.0404620674610182,0.0426118913516496,0.056598460672048,0.0704643600280226,0.0836511861849274,0.0966180023106816,0.1087290723386332,0.1245207288090837,0.1373049855858911,0.1496049595389245,0.1610978902323198,0.1722513145072338,0.1859387265708171,0.1993951177360121,0.2117211504011638,0.2230508844725922,0.2343798057911156,0.245153656459764,0.2552698426846116,0.2641736219543703,0.2739310188593759,0.2825873262618873,0.2899973467763332,0.2985564992485408,0.3062415964899865,0.3127567593388745,0.3199820853608347,0.3260201950716163,0.3307936903796994,0.3360061817536925,0.340880957293171,0.3456467498358503,0.3459846574754573,0.3462033814704189,0.3466752653198559,0.3466881649223327,0.3476104465237475,0.347648136835675,0.3481725053749842,0.34844884380275,0.3489934029967782,0.3494149960761932,0.3506461884247986,0.352242405075801,0.3527340557080879,0.3539771584381914,0.3547212305628099,0.3554401454167749,0.3572828216851731,0.3592421210605303,0.3623132765601005,0.3662619356359778,0.3688495097598273,0.3684955937893411,0.3675810473815461,0.3709104646769928,0.3673583325579231,0.3697764251433922,0.367420814479638,0.3622327790973871,0.3649891774891775,0.3562570462232243,0.0,2.7895115098289684,60.14572188441763,202.12284400143287,310.1389740940828,fqhc7_80Compliance_baseline,25 -100000,95720,42418,398.5687421646469,7016,72.01211867948182,5490,56.581696615127456,2198,22.503134141245297,77.31288813594676,79.67197360150212,63.318020272784125,65.06205623027344,77.04725254905827,79.407244446092,63.22065318604629,64.96793656554175,0.265635586888493,264.729155410123,0.0973670867378331,94.11966473169286,109.0936,76.39324404804044,113971.58378604264,79809.07234437989,267.81944,166.91104928512723,278971.6151274551,173551.2320153858,298.24218,142.85498609791046,305677.62223150855,144768.78545482544,3947.18867,1773.6540065658664,4075508.890514,1805094.736310499,1330.4675,580.9081735053521,1373561.575428333,590596.3917047022,2155.41152,892.9129448739207,2211002.2774759717,900125.4594619554,0.38122,100000,0,495880,5180.52653572921,0,0.0,0,0.0,22574,235.03969912244045,0,0.0,27723,283.75470121186794,1919052,0,68972,0,0,4398,0,0,42,0.428332636857501,0,0.0,0,0.0,0,0.0,0.07016,0.1840407114002413,0.3132839224629418,0.02198,0.3276797829036635,0.6723202170963365,25.097888785746093,4.474904054427087,0.317304189435337,0.2156648451730419,0.2435336976320583,0.2234972677595628,11.09969427590618,5.665323418249695,23.41723523684596,12844.97918858982,62.24784323135034,14.162242144793272,19.80147831244778,14.79403693856124,13.490085835548038,0.5550091074681238,0.7719594594594594,0.7238805970149254,0.56245325355273,0.097799511002445,0.7292857142857143,0.903846153846154,0.8791946308724832,0.6910299003322259,0.1864406779661017,0.4953545232273839,0.7005208333333334,0.6702702702702703,0.525096525096525,0.0766902119071644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990135510137,0.0044699419211627,0.0069602978926328,0.0091618250518018,0.0113709177083227,0.0136150712830957,0.0158662180075456,0.0180600504333799,0.0202936185004191,0.022506425287474,0.0244947760199321,0.0268829901935616,0.0291570676320552,0.0314263936384986,0.0335922911056774,0.0357497209475381,0.037826307560084,0.0396372465602755,0.041731661155134,0.0437188076309949,0.058402238369665,0.0719233264276895,0.0853948844867183,0.0975091736849299,0.1100496631132761,0.1254495451660672,0.1390931567610012,0.1518777143830367,0.1634673930459862,0.1744804512406974,0.1875013459095118,0.2000475866022084,0.2124730902211494,0.224371944483939,0.2344262295081967,0.2448988634601324,0.2555943704728847,0.2653892458116273,0.2750843242138258,0.2836121934448773,0.2917038152029178,0.2994619253713885,0.3063224035309849,0.3134127916736612,0.3200563976031019,0.3260631018284488,0.3309365135040337,0.3365072495130924,0.3417842931394279,0.3460333408246632,0.3461175136973361,0.3458876726681187,0.3459278510692392,0.3460724637681159,0.3460729783331593,0.3460243261113588,0.3460449280896016,0.3475880267172425,0.347756685318046,0.3478104745318419,0.3487413153584003,0.3506470272526686,0.3508384354814955,0.3504666606838373,0.35180216114294,0.353881637574042,0.3537407163134803,0.3563863521055302,0.3603951281688146,0.3611790655704832,0.3637699797905567,0.3658783964127475,0.3674550614947966,0.3690339385581858,0.3733143399810066,0.3809751434034417,0.380581920024895,0.3848670756646217,0.3834733893557423,0.3911877394636015,0.0,3.0521087066665715,61.07154743093096,209.10460821589805,308.178251645276,fqhc7_80Compliance_baseline,26 -100000,95798,42644,401.80379548633584,6870,70.70084970458673,5287,54.78193699242155,2117,21.82717802041796,77.37208356525132,79.70984616183969,63.35007434272507,65.07913377875316,77.11399596671282,79.44929161375016,63.25546894352919,64.9855598989152,0.2580875985384949,260.55454808953016,0.0946053991958848,93.57387983796173,109.8119,76.9280637524409,114628.59349882044,80302.36931088426,268.23061,167.62458809133972,279549.86534165643,174533.27639766296,291.43412,139.18477946139888,301698.50101254723,143390.7236362158,3814.28178,1706.869894541514,3952373.494227437,1752639.852087648,1263.35829,548.6820118368856,1310903.5261696486,564935.6255384111,2091.2612,869.5951819762562,2157291.154303848,885611.4226976874,0.38333,100000,0,499145,5210.3906135827465,0,0.0,0,0.0,22560,235.03622205056476,0,0.0,27064,279.9849683709472,1918556,0,68860,0,0,4374,0,0,48,0.5010543017599532,0,0.0,0,0.0,0,0.0,0.0687,0.1792189497299976,0.3081513828238719,0.02117,0.3182069728832318,0.6817930271167681,25.30534455140936,4.513262810133951,0.3226782674484584,0.2125969358804615,0.2311329676565159,0.233591829014564,11.14784278515912,5.534308089284793,22.36831026235086,12935.611252607829,59.321506825024464,13.231650642292244,18.95361475206797,13.39606197798857,13.740179452675688,0.5452997919425004,0.7642348754448398,0.6899179366940211,0.5736497545008183,0.1182186234817813,0.6939890710382514,0.9175531914893617,0.8695652173913043,0.7192307692307692,0.1335740072202166,0.4977533699450824,0.6871657754010695,0.64050822122571,0.5343035343035343,0.1137787056367432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044807590933052,0.006596172190538,0.0089088895886876,0.0109529136580901,0.0132045121355269,0.0153706591648064,0.0174602526685307,0.0197228580771746,0.0217787329853648,0.024113300745022,0.0263754759387924,0.0284524849668499,0.0304262767710049,0.03254514143112,0.0345094797747584,0.0365397952529319,0.0388268967519807,0.0406479566920543,0.0424054388905662,0.0569985494693562,0.071666143708817,0.0853617627943057,0.0984848484848484,0.1112129448201757,0.1268526637157858,0.1403804376622688,0.1525816604287172,0.1647691503323765,0.1766400994129494,0.1909812611604741,0.2048854301772589,0.2167269802975472,0.2269239177962396,0.2380842406246563,0.2482501993443784,0.258656849620705,0.2678314445044072,0.2762686499478481,0.2845740721655387,0.2924363527003111,0.3003543072299723,0.308281610214577,0.3153186597370249,0.321303276399966,0.3271589733484408,0.3329452269170579,0.3385513365039803,0.3427451183374526,0.3478438612686272,0.3489813756471458,0.349361836591699,0.3493699078120154,0.3498054868613244,0.350657845833643,0.3491917566842871,0.3490479358742832,0.3497601682107891,0.3512962772697695,0.3517359745414238,0.3541951814005812,0.3551869352893493,0.3554889675837646,0.3566061365059486,0.3573613352279569,0.3592095977417078,0.361458900381056,0.3635932160486014,0.3649611856033874,0.3689766865277722,0.3702855047889647,0.372803503712012,0.3757518201962646,0.3752204247489074,0.3773799374822392,0.3746877601998334,0.3727593074919565,0.3736307508464449,0.3743213897937025,0.3743879472693032,0.0,1.450493571938026,57.02538680288178,199.4106179090008,305.7237616124984,fqhc7_80Compliance_baseline,27 -100000,95648,42432,399.08832385413183,7114,73.08046169287387,5597,57.94161927065909,2230,23.01145868183339,77.25911226955019,79.6543395296735,63.27736057920528,65.04515980373166,76.98393979895931,79.37664834005692,63.17633063817825,64.94513271659687,0.2751724705908742,277.6911896165899,0.1010299410270292,100.0270871347908,108.53194,76.0123692923395,113470.16142522584,79470.94481049213,267.45936,166.45090736724583,279083.59819337574,173479.24406913453,298.58626,143.67482888736382,307698.43593174976,146810.73936066285,4038.68706,1808.5471049064545,4185832.678153229,1854220.982045055,1339.37221,583.686677755539,1387412.2720809637,597342.921708283,2193.0817,916.8560511782596,2264991.8450986957,935377.9959312336,0.38092,100000,0,493327,5157.734610237538,0,0.0,0,0.0,22539,235.07025761124123,0,0.0,27677,285.0347106055537,1916636,0,68900,0,0,4293,0,0,45,0.4495650719304115,0,0.0,1,0.0104550016728002,0,0.0,0.07114,0.1867583744618292,0.313466404273264,0.0223,0.3207698476343223,0.6792301523656776,25.045267123975638,4.519926900878287,0.3258888690369841,0.2131499017330713,0.227085938895837,0.2338752903341075,11.005624496567975,5.544175518427281,23.87748510337235,12896.336192569335,63.28068108030183,14.12963072511178,20.69515344153564,14.035940971947792,14.41995594170661,0.5433267822047525,0.7854149203688181,0.6776315789473685,0.5601888276947286,0.1191749427043544,0.7084818246614397,0.9376623376623376,0.8663697104677061,0.71875,0.1316725978647686,0.4880782069623271,0.7128712871287128,0.616,0.513733468972533,0.1157587548638132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.0047860959855605,0.0068712827071026,0.0092261420907169,0.0115061803754005,0.0137901533823559,0.0158043926015049,0.0178241473299509,0.0201388249966776,0.0223759903371752,0.0246880670924879,0.0269224055610888,0.0291077397788634,0.0311830393934399,0.0334674922600619,0.0357028382360543,0.0375941407423522,0.0398588332987336,0.0417199737884981,0.0436699887410866,0.0590952316261377,0.0733347297863426,0.0868597349686036,0.0993240112875373,0.1122069693769799,0.1274860737508737,0.1397633613730988,0.1523668481445572,0.1637920894772297,0.1748094062063782,0.1886615396231299,0.2010055151639921,0.2135660054682308,0.2250734101766227,0.2353473187302847,0.2463209569399247,0.2569884290861887,0.2665132387946887,0.2755713814404842,0.2840066662835469,0.2919399589045867,0.2993334585054449,0.3063671657030239,0.3132940327237729,0.3196110250247074,0.3260923350982235,0.3322444877190778,0.3364876254693127,0.3420577265461539,0.3470917833441511,0.3474129541522491,0.3478032460530317,0.3484166100158622,0.3481158155099665,0.3484209581912794,0.3477129216078854,0.3468351609874107,0.3467315945856718,0.3484921426360854,0.3490059445771448,0.3508824803631637,0.3523803849133051,0.3539977679041462,0.3548589482175267,0.3566315586512738,0.3579615173746182,0.3590988264184346,0.3612795250726285,0.3639058474785616,0.3654153354632588,0.3658547773037934,0.3662069702800941,0.3695569379205281,0.371979198531661,0.3757051523128996,0.3783008722666985,0.3792147806004619,0.3858573472307378,0.3871150042384854,0.3919936583432422,0.0,2.290617258024111,62.052248866055365,213.74618315659453,315.6728798681939,fqhc7_80Compliance_baseline,28 -100000,95606,42441,400.71752818860745,6880,70.53950588875176,5362,55.39401292805891,2167,22.216178900905803,77.28554750318864,79.71697134522624,63.27381344368565,65.07174216582553,77.01721019075228,79.45031411872469,63.17492760918442,64.97624848672336,0.2683373124363584,266.6572265015503,0.0988858345012246,95.49367910216232,107.8891,75.54456572867734,112847.62462606948,79016.55307059948,265.34228,165.7167807740633,276872.15237537393,172667.91914112426,295.31122,142.01351544376791,304182.0597033659,144992.38624412968,3852.46929,1739.7894665798715,3980757.693031818,1770980.2487081075,1272.8971,559.4778489108533,1314300.0857686757,568092.4721365325,2127.45474,886.5011081201787,2183484.613936364,892258.878638939,0.38089,100000,0,490405,5129.437483003159,0,0.0,0,0.0,22341,232.97700981109972,0,0.0,27425,282.1998619333515,1922151,0,68971,0,0,4204,0,0,38,0.397464594272326,0,0.0,0,0.0,0,0.0,0.0688,0.1806295780934128,0.3149709302325581,0.02167,0.3240855762594893,0.6759144237405107,25.141473565272968,4.4709071314966815,0.3243192838493099,0.2206266318537859,0.227154046997389,0.2279000372995151,11.176364194330848,5.736728763948768,23.10039335728555,12822.813291852164,60.550379561928,13.779484052394295,19.68783471513329,13.724150131092522,13.358910663307864,0.5550167847817978,0.7666948436179205,0.6940770557791834,0.59688013136289,0.1104746317512275,0.72,0.9244791666666666,0.8413793103448276,0.7467532467532467,0.157258064516129,0.4981188863807373,0.690863579474343,0.6449386503067485,0.5461538461538461,0.0985626283367556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800972841507,0.0044731156619906,0.0067416642976079,0.0085988717792346,0.0107028038904488,0.0130183662867096,0.0151380685701461,0.0173259235044132,0.0192899735095273,0.0213430558258144,0.0236864241603578,0.0261197480502666,0.0282341073781291,0.0302333731909454,0.0323083594911614,0.0343197592031361,0.0363216199131597,0.0382174865771463,0.040353050157686,0.0424198174706649,0.0574701830307211,0.071309559987006,0.0854218551327721,0.0971691056396641,0.1098188348386415,0.1252091762163994,0.1389585547290117,0.1513539445628998,0.1636169074371321,0.174524551412915,0.187893175074184,0.2003100876051695,0.212243074173369,0.223399592364505,0.2339541089168954,0.2450270846283633,0.2558552918422788,0.2644625304355668,0.2735497363156937,0.2822447481882396,0.2902415011293218,0.2979079791969264,0.3056362579895409,0.3125360299769408,0.3184629620610724,0.3249607923041776,0.330283393705426,0.3356490038367898,0.342142152536213,0.3470995716778594,0.3475388618499993,0.3480859267419444,0.3486379675370501,0.3486930707407139,0.3489119757092251,0.3487839727142835,0.3475870397737204,0.3483857145211529,0.3484936765260308,0.3497730493909112,0.350566825214792,0.3511816326934886,0.3513820522529345,0.3526470390385003,0.3531948727833461,0.3548555199458037,0.356485426964377,0.3589115902457396,0.3614255765199161,0.3638344226579521,0.3683946793002915,0.3696125843652016,0.3691182036079223,0.3714481602803382,0.373033072646754,0.3722334004024145,0.3727593074919565,0.3787078423405119,0.3853738701725555,0.3867924528301887,0.0,2.641297233932161,60.26627554987754,199.73552529157348,302.6728797233436,fqhc7_80Compliance_baseline,29 -100000,95804,42347,398.7411799089808,6834,70.00751534382698,5336,55.06033151016659,2124,21.752745188092355,77.35864855579545,79.66271541708284,63.35358995694328,65.05389526749808,77.09284681604949,79.3992355138663,63.255934717749696,64.96003798490831,0.2658017397459673,263.4799032165347,0.0976552391935783,93.85728258976656,110.31702,77.23334078484837,115148.65767608868,80615.98762561935,266.43695,166.05899452783962,277499.164961797,172724.8805142161,294.30844,141.16732459368396,302895.34883720934,144076.18600731445,3823.1115,1721.9740604583346,3949789.810446328,1756627.270738523,1317.42278,579.0020433968783,1356936.9337397185,586175.0275530028,2091.21072,868.3982295138093,2144797.98338274,873586.6017112057,0.37957,100000,0,501441,5234.029894367667,0,0.0,0,0.0,22415,233.3201118951192,0,0.0,27343,281.1260490167425,1916033,0,68792,0,0,4284,0,0,51,0.5323368544110892,0,0.0,0,0.0,0,0.0,0.06834,0.1800458413467871,0.3107989464442493,0.02124,0.3257342657342657,0.6742657342657342,25.07351759679213,4.514563054878875,0.3354572713643178,0.2140179910044977,0.217391304347826,0.2331334332833583,11.262383638477882,5.714939741224939,22.516747673300728,12755.135267104986,60.28653035308625,13.501384479831408,20.18166725875948,13.057436400404926,13.546042214090422,0.5502248875562219,0.7749562171628721,0.6944134078212291,0.5629310344827586,0.1245980707395498,0.722473604826546,0.9047619047619048,0.8640552995391705,0.703971119133574,0.1940928270042194,0.4932668329177057,0.7107329842931938,0.640117994100295,0.5186862967157417,0.1082423038728897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023581563872639,0.0046693474055242,0.0070257611241217,0.0091732878727916,0.0115010261516266,0.0135903565434108,0.0157274986757935,0.0176165168871706,0.0198189730911468,0.022044231674134,0.0238036709275647,0.0260016000984676,0.0282943267511866,0.0305010444858351,0.0323132758691796,0.0344752796339712,0.0364315498670419,0.0383877756238143,0.0403942831027462,0.04245263377056,0.0570015752631524,0.07106041755967,0.084377129081285,0.0972559405576399,0.1087199376093417,0.124227212681638,0.1370459894408752,0.1491197276740599,0.1607161922658068,0.1721505687605202,0.1857968798785542,0.1985330708150327,0.2104639276159819,0.2219754734112962,0.2327942131744965,0.2436096393021039,0.2542306661903911,0.2641178257591953,0.2737880387282778,0.2817309786034358,0.2893725399398009,0.296976722401761,0.3051676556633384,0.3117526416157933,0.3179966188686589,0.3234281908004293,0.3294569761910723,0.3350426915393131,0.3394573864372522,0.3449268473036497,0.3454077646361505,0.3462671364862633,0.3457805699153438,0.3450557706756054,0.3446471314095417,0.344387090845038,0.3429875873876444,0.3441824494430092,0.3452884829583426,0.346137292877125,0.3468865777744344,0.3477648366039009,0.3496357741378584,0.351939896837856,0.35183665588647,0.3522149410222804,0.3527203965275191,0.3561817318347317,0.3595457922105486,0.3603942939573649,0.3635905194150277,0.3676060865837977,0.3741518168558564,0.3765313198243316,0.3772907613829586,0.3800878129820814,0.3809229819416577,0.3864754098360656,0.3856338028169014,0.3871987356775977,0.0,2.545438057856903,58.00191604981467,206.98389609587875,299.24729786726147,fqhc7_80Compliance_baseline,30 -100000,95882,42639,400.34625894328445,6880,70.72234621722534,5328,55.20327068688596,2170,22.433824909784946,77.41454581429173,79.70274460688118,63.37712166936033,65.0678646303191,77.15121533837251,79.43456994573057,63.28071488248475,64.97095858338875,0.2633304759192185,268.17466115060995,0.0964067868755762,96.90604693034288,108.87646,76.26191012777875,113552.55418118104,79537.25425812847,265.67162,166.24966724010372,276743.75795248325,173051.76909128274,292.29168,140.03418418109064,302349.05404559773,144147.43052102553,3866.4648,1745.837343687718,4011394.797772262,1799689.3094509062,1280.82896,560.4375424659254,1327948.8329404895,576617.5950292288,2142.43246,893.8971753952968,2216931.269685656,917059.3080991388,0.38376,100000,0,494893,5161.479735508228,0,0.0,0,0.0,22363,232.86956884503869,0,0.0,27117,280.28201330802443,1923749,0,69079,0,0,4483,0,0,47,0.4901858534448592,0,0.0,1,0.0104294862435076,0,0.0,0.0688,0.1792787158640817,0.315406976744186,0.0217,0.3260688506385341,0.6739311493614658,24.93474593604584,4.567005348990128,0.3140015015015015,0.2162162162162162,0.2304804804804804,0.2393018018018018,11.007536689407404,5.41450989309373,23.02552572472029,12878.630607831376,60.28199564827323,13.615632739989426,18.893042912706893,13.680262091872642,14.09305790370428,0.5489864864864865,0.7769097222222222,0.7065152420800956,0.5814332247557004,0.1050980392156862,0.7131386861313869,0.9093264248704664,0.8778280542986425,0.7427536231884058,0.1240601503759398,0.4921677614957049,0.7101827676240209,0.6450040617384241,0.5346638655462185,0.1000991080277502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023687806853267,0.0047110075477432,0.0068446616709086,0.0091771059630885,0.0113324524850086,0.0134006247519816,0.0158109209453952,0.0180239911869109,0.0201438261011685,0.0225329351116929,0.0246550646849744,0.0268132814984254,0.0289654038613688,0.0308791287968462,0.0327546033775285,0.0349193889881536,0.036892962817356,0.039057804306825,0.0412722139179538,0.0434660509236145,0.0577606789486305,0.0717480354455776,0.0856631087181958,0.0984871549904987,0.1108736167121181,0.1264125039602914,0.1394994121323179,0.1517785973153649,0.163677871536927,0.1747697579781537,0.1881299955893585,0.2014076588751703,0.2129134611205285,0.2244915800631632,0.2349831283454787,0.2463205187791868,0.256994391106056,0.2668517228203457,0.2766606557562973,0.2848948374760994,0.2925819250211102,0.2997976631852259,0.3067747470563872,0.3133578681115813,0.3202047092860703,0.3264191197326394,0.3319265641436658,0.3370295870041249,0.3417031983606132,0.3467108914554536,0.3470996429293269,0.3474250788100712,0.3475846908291528,0.3473207961723594,0.3479695582377073,0.3477528262001776,0.3470178769182091,0.3477347685542228,0.3487553604073055,0.349084876378037,0.3494271379361989,0.3507422855674382,0.3519902841468266,0.353347028089135,0.3547060944825099,0.3569326144148368,0.3582446354374182,0.3607019743027264,0.3627619615965177,0.366955691671307,0.3694704332818603,0.3705626788174208,0.3701550387596899,0.3698093300173336,0.3739837398373983,0.3746745562130177,0.3765498239706107,0.380738624770455,0.3890719384953322,0.3917995444191344,0.0,1.4465741452616172,61.19571778979496,203.20106088189792,295.5206349689076,fqhc7_80Compliance_baseline,31 -100000,95711,42714,401.92872292630943,6899,70.78601205713032,5401,55.85564877600276,2156,22.06642914607517,77.36002699221102,79.73009972354188,63.33690834044432,65.08769855622324,77.09517019322128,79.46700542408351,63.2391367972542,64.99322690863583,0.2648567989897401,263.09429945837337,0.0977715431901273,94.47164758741168,108.90858,76.35144358394047,113788.98977129064,79772.90341124893,268.18071,167.2142035947258,279613.74345686496,174122.73162582578,296.40072,141.58770905558367,306179.83303904464,145171.77452006468,3864.95854,1740.0405351455167,3997505.375557668,1777365.9185016404,1305.14121,570.8099074304947,1348275.5378169697,581058.0732993226,2109.7026,879.0209216282921,2161940.111376957,885231.620293158,0.38255,100000,0,495039,5172.226807785939,0,0.0,0,0.0,22466,234.1319179613629,0,0.0,27529,284.19930833446523,1921919,0,68914,0,0,4327,0,0,49,0.5015097533198901,0,0.0,2,0.020896239721662,0,0.0,0.06899,0.1803424388968762,0.3125090592839541,0.02156,0.3228531855955678,0.6771468144044321,25.159158280743608,4.397551033011431,0.3303092019996297,0.2212553230883169,0.2232919829661173,0.2251434919459359,11.397210616647252,6.042464996884166,22.86853500410286,12869.002890852717,60.90870500766535,14.019081455817336,20.07854369781536,13.463734058687365,13.347345795345287,0.5624884280688761,0.7648535564853557,0.7001121076233184,0.5970149253731343,0.1274671052631578,0.7206870799103808,0.9142857142857144,0.8498845265588915,0.7413127413127413,0.2022900763358778,0.5103397341211225,0.6938271604938272,0.6521095484826055,0.5575501583949314,0.1069182389937107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025321327647851,0.0047542296424697,0.0068802451721583,0.0091326520246246,0.0113308108547947,0.0134617734511832,0.0158307849133537,0.0181775500622588,0.0204753386148735,0.0227789266774504,0.0248723574401771,0.0270214775573898,0.0292771716216077,0.0313327221976165,0.0332748658687577,0.0356382208804615,0.0376259984046245,0.0396076599719757,0.0416978698618738,0.0433994310662818,0.0585040833803287,0.0732243411274622,0.0854367302406579,0.0978459790908517,0.1101657388663967,0.1256581033935934,0.1397307647426989,0.1522849662629573,0.1645733205169283,0.1755537677661571,0.1892931404130619,0.2020019478411427,0.2144759296094607,0.22490188147063,0.235618909346884,0.2466270852256363,0.2570574189373145,0.2663734829994714,0.2744891247646912,0.2820709557728865,0.2901412360759274,0.2980556757199144,0.3050741183290546,0.3121241884866924,0.3181845791270333,0.324064263361506,0.329983228616486,0.3355845543345543,0.3411583431523611,0.3462457270315572,0.3472285845167201,0.3475021005220314,0.3474083688383511,0.3479356071573339,0.348225979283248,0.3476660737287615,0.3468056127458744,0.3465874591791522,0.3475920292579553,0.3497419965361473,0.3500599835045362,0.3506200676437429,0.3523084006529655,0.3534827593912713,0.3554973066564063,0.3564457202505219,0.3573776113857849,0.3600429713419065,0.3622472385926527,0.3645353725427393,0.3668045977011494,0.3712080608854111,0.3722636973301278,0.3764633866401408,0.3768702361908346,0.3782051282051282,0.3844155844155844,0.3845373376623376,0.3956714761376249,0.3967517401392111,0.0,2.1983840305077798,58.939236882735344,205.5009353220737,307.7127865849116,fqhc7_80Compliance_baseline,32 -100000,95757,42299,398.7489165282956,6969,71.56656954582954,5435,56.23609762210595,2168,22.348235638125672,77.33346816806463,79.69540125915313,63.32120940122799,65.07031853310288,77.06437616381035,79.42363447416155,63.22297197088124,64.97311748648814,0.2690920042542757,271.76678499158413,0.0982374303467494,97.20104661474238,109.66252,76.8350708630733,114521.67465563877,80239.6387345816,267.4751,166.29231455609218,278796.21333166247,173130.0109194024,296.38487,141.82155998842487,305830.3204987625,145339.92624092154,3904.59466,1749.7086200851106,4043469.281619098,1793100.0763235171,1309.55578,571.3413828466419,1353250.697076976,582338.3278632803,2134.31334,885.1798060555731,2202490.1573775285,902047.2369228496,0.37969,100000,0,498466,5205.530666165398,0,0.0,0,0.0,22540,234.8340069133327,0,0.0,27437,282.86182733377194,1919156,0,68830,0,0,4273,0,0,49,0.5012688367430057,0,0.0,0,0.0,0,0.0,0.06969,0.1835444704890832,0.3110919787630937,0.02168,0.3282463550892492,0.6717536449107507,25.072874559841484,4.569271902222786,0.3357865685372585,0.2088316467341306,0.2206071757129714,0.2347746090156393,11.07092839174937,5.538627561774982,23.10921922498535,12775.797828981067,61.35963551645148,13.377394151985603,20.7376516413202,13.281716523904192,13.96287319924147,0.5486660533578657,0.7691629955947137,0.6986301369863014,0.572977481234362,0.1152037617554859,0.7083636363636364,0.8903743315508021,0.8786610878661087,0.7114624505928854,0.1518518518518518,0.4945812807881773,0.709592641261498,0.6347438752783965,0.5359408033826638,0.1053677932405566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986929429049,0.0044923538717397,0.0065870937620526,0.0087992033977524,0.0107605622342914,0.0126159516948548,0.0146902907474615,0.0169622991978118,0.0191222762765218,0.0213730768837071,0.0237433747167915,0.0258405625994558,0.0278786133706282,0.03,0.0319938096466339,0.0341812318473575,0.0360337972166998,0.0382268708753579,0.0401821451963363,0.0421926425863433,0.0568389406766391,0.0709284435932054,0.0835755432672633,0.0966713992743334,0.1094214666863518,0.1245810114937667,0.137017547582168,0.1497823611421517,0.1614729062987248,0.1726948111133748,0.1865197345742847,0.2003678658371652,0.2124135380867446,0.2232357702235639,0.2338265221934987,0.2448618001417434,0.254141734393141,0.2633041873445641,0.2729439268245628,0.2819588041997275,0.2902378942255427,0.2975217243839397,0.3048082156125032,0.3124423411010603,0.318937159365403,0.3255195508716635,0.3312072437124026,0.3366768370200864,0.341540134363714,0.3461188058676737,0.346810834131018,0.3463095008672191,0.3465696846675406,0.3465128732072304,0.3461893420660911,0.3457840577484257,0.3443458381622188,0.3450001646307332,0.34647612193492,0.3484063994840282,0.348295817519071,0.3501209022079518,0.3511312597070058,0.3520880500325032,0.353370203105755,0.3551965592300228,0.3552939832009599,0.358974358974359,0.3588320548623139,0.3617012795471758,0.3652142139398922,0.3681315747316708,0.3694372349180224,0.3668993020937188,0.3702192274841036,0.374939700916546,0.375232486050837,0.3728287841191067,0.3696145124716553,0.3664571877454831,0.0,1.9610824517182288,61.02454671459952,203.71783977560727,308.5033287351577,fqhc7_80Compliance_baseline,33 -100000,95787,42738,402.44500819526655,6923,71.00128409909486,5397,55.64429411089187,2214,22.67531084593943,77.34149214859087,79.67906604448454,63.33904717832892,65.07176746138886,77.07062186666147,79.41045885342226,63.23964285580543,64.97586967724627,0.2708702819294046,268.60719106228714,0.0994043225234904,95.89778414259342,108.85424,76.33972463745121,113641.97646862308,79697.37504823328,267.14369,166.8554105100009,278195.18306241976,173505.22463518564,301.57465,144.94250026654416,310131.4270203681,147722.0062065148,3899.12796,1760.389050215,4026308.69533444,1794220.256747401,1357.40446,596.4281101650622,1401404.7104513138,607840.0846783445,2183.09836,904.9435013968612,2239379.393863468,911946.7855154328,0.38297,100000,0,494792,5165.544384937413,0,0.0,0,0.0,22491,234.0714293171307,0,0.0,27972,287.3041226888826,1922121,0,68948,0,0,4390,0,0,49,0.5115516719387808,0,0.0,0,0.0,0,0.0,0.06923,0.1807713397916286,0.3198035533728152,0.02214,0.320280296784831,0.6797197032151691,24.926522188206015,4.5517272321382105,0.332592180841208,0.2080785621641653,0.2210487307763572,0.2382805262182694,11.497769887300336,5.943660420818827,23.431882452282995,12855.780222399457,61.100262713694725,13.369849089515611,20.415815405744656,13.207884247145303,14.106713971289146,0.5530850472484714,0.773820124666073,0.6997214484679666,0.586756077116513,0.1244167962674961,0.7262931034482759,0.921832884097035,0.8703703703703703,0.7718631178707225,0.1580882352941176,0.4928838951310861,0.7007978723404256,0.6363636363636364,0.5344086021505376,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0047038309864866,0.0070627632046273,0.0093078079908954,0.0114666531006766,0.0136292795224659,0.0157983844647519,0.0178598780749318,0.0199196261491108,0.0220051403352481,0.0241569174296875,0.0263395699410568,0.0282960646767192,0.0303070884798038,0.0327190556770811,0.0346263966841349,0.036665424121935,0.0390037447744318,0.0410124793482891,0.0430659365826237,0.0576862884210087,0.0715062420275611,0.0849627999580844,0.0974358974358974,0.1095806679383279,0.1257623643070808,0.1390087463556851,0.1517175369562905,0.1640231406370079,0.1754699993568994,0.1896791138763603,0.2022230151264502,0.2139271589378069,0.2250844271522093,0.2362940646097684,0.247068593256934,0.2572183451873983,0.2663200332408728,0.2751223269300471,0.2844335685126528,0.2926502517669885,0.3002557604493909,0.3079914883555976,0.3141694103561808,0.3198839918454519,0.3255573473834525,0.3303497762332175,0.3360219492677226,0.3421705747007574,0.3468396102185936,0.3467509753800619,0.3465315216195401,0.3461261997716734,0.3455452704657217,0.3458877100043154,0.3448064392487543,0.3440906278261697,0.3459639188833289,0.3470475341855444,0.348435176725605,0.3489715651404806,0.3508580281242552,0.3526426616129711,0.3536870503597122,0.3532829750145264,0.354609184236091,0.3552366130612715,0.3574706782253952,0.3611773498950066,0.3628432436778837,0.3665057556628295,0.3656297256426874,0.3681209558587994,0.3706124990271616,0.3734189344576466,0.3748189280540802,0.3749017141059915,0.3765148349352277,0.3812358276643991,0.3798600311041991,0.0,2.650991433126449,60.84801998190007,202.35385093913,304.2022549592005,fqhc7_80Compliance_baseline,34 -100000,95708,42517,400.217327705103,6914,71.07033894763238,5329,55.15735361725248,2185,22.516404062356333,77.3419109081298,79.7109989706345,63.33255108723839,65.08100549951918,77.08073189710719,79.44848927332934,63.236249388588696,64.98642817069556,0.2611790110226195,262.5096973051626,0.0963016986496896,94.57732882361825,110.04334,77.00488090462774,114978.20453880553,80458.14446506849,266.79276,166.8839008518539,278161.3867179337,173783.17858696572,297.48975,142.58269783970778,307593.5136038785,146524.65299153884,3887.64536,1757.884809921317,4026238.36042964,1801786.0524356684,1301.64338,572.2371693053622,1346736.7409202994,584865.6357713793,2157.12598,896.3999196984629,2224224.6416182555,912002.6906760816,0.38099,100000,0,500197,5226.282024491161,0,0.0,0,0.0,22432,233.82580348560205,0,0.0,27532,284.38584026413673,1915557,0,68797,0,0,4261,0,0,58,0.5955614995611652,0,0.0,0,0.0,0,0.0,0.06914,0.1814745793852857,0.3160254555973387,0.02185,0.3272752306209555,0.6727247693790445,25.170923824174128,4.487654329852753,0.3235128541940326,0.2066053668605742,0.2317507975229874,0.2381309814224057,11.013886282365071,5.440830062602954,23.246173426687584,12843.93356885723,60.3337890735524,13.082705842031428,19.40335712590854,13.869892426856328,13.977833678756104,0.5501970350910115,0.7656675749318801,0.6937354988399071,0.6,0.119779353821907,0.7151248164464024,0.9201101928374656,0.8692660550458715,0.7551020408163265,0.1449814126394052,0.4935719687421225,0.6897018970189702,0.6343167701863354,0.5515409139213603,0.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569183408943,0.0047025438329786,0.0068878068573747,0.0092630210449337,0.0115203156139423,0.0136128533029241,0.0157191351417474,0.0178002776190087,0.0200429272281275,0.0221785542489279,0.0244490005125576,0.0265022384688051,0.0284959174019456,0.0307020255094681,0.032691474212123,0.0348060701290109,0.0369307884298718,0.0390730401212146,0.0412282161127979,0.0430822460294301,0.0577766637423236,0.0716304484361261,0.0851441102099486,0.0978490665264265,0.109944937870509,0.1255541331189098,0.1395837311437846,0.1528758023823971,0.1643913173524761,0.175519704803381,0.1890407418177118,0.2017660617472324,0.2134886452623336,0.2243666145451762,0.2352785904401575,0.2462551895931359,0.2567225438038835,0.2658841254314658,0.2752076053909334,0.2834495152410059,0.2913672810580027,0.2989665383129879,0.3056913841891523,0.3126093941065049,0.318630966126621,0.3246197308199997,0.3303128289968416,0.3361555306579751,0.3412833102304672,0.3457840383017449,0.3465295837656475,0.3468972253174308,0.3467357192113374,0.3473533743394265,0.3475826216115856,0.3460890603944628,0.3461903706751923,0.3470356380358023,0.3477963434865146,0.3484886424610982,0.3495307807807807,0.350191085325043,0.3518090029448885,0.3516281158769369,0.3529411764705882,0.3530765408854371,0.3547639484978541,0.3567389999684134,0.3585165806405996,0.359697248808618,0.3643364657345863,0.3670750628644802,0.3683676059913683,0.3702478066800062,0.373026440935895,0.3734723220704529,0.3711021920345785,0.3671278133388395,0.3658949745906267,0.3673548889754577,0.0,1.9513713792839644,60.22067522471513,203.21909729206777,298.1712099916969,fqhc7_80Compliance_baseline,35 -100000,95710,42100,396.48939504753946,6944,71.26737018075437,5404,55.88757705568906,2258,23.205516664925295,77.33810060160408,79.72013119908658,63.31256206328344,65.07476863563147,77.06379247031953,79.44703361872851,63.21214605999103,64.97778520521196,0.2743081312845561,273.0975803580691,0.100416003292409,96.98343041951318,108.67934,76.06433561942592,113550.6634625431,79473.75991999364,261.82218,163.01491844385396,272993.2190993627,169757.12929041267,289.9713,139.08191838569147,299728.7117333612,142838.4770420047,3940.75623,1768.070823968881,4074953.7770347926,1804882.3048468076,1310.77043,565.3152010362952,1355757.3816738063,576915.8657425018,2233.10582,920.7163924102192,2295822.9861038555,928336.1596707372,0.37872,100000,0,493997,5161.39379375196,0,0.0,0,0.0,22058,229.8714867829903,0,0.0,26858,277.39003238951,1924976,0,69093,0,0,4335,0,0,56,0.585100825410093,0,0.0,0,0.0,0,0.0,0.06944,0.1833544571187156,0.3251728110599078,0.02258,0.3277253453699904,0.6722746546300096,24.95803685056168,4.491625750962618,0.3203182827535159,0.2120651369356032,0.2200222057735011,0.2475943745373797,11.156564669311436,5.641518492686352,23.819125719101176,12803.183771904578,60.910021283269245,13.599232899972709,19.416871458572714,13.348552620727697,14.545364303996138,0.5490377498149519,0.7783595113438045,0.7094165222414789,0.5870479394449117,0.1113602391629297,0.7116920842411039,0.9197994987468672,0.8690476190476191,0.7322033898305085,0.1216730038022813,0.4934194189222746,0.7028112449799196,0.658276125095347,0.5391498881431768,0.1088372093023255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023109201110863,0.0043619395414891,0.0066399983755355,0.0085980852491005,0.0110906482433023,0.0132105643773108,0.0154825286090202,0.0178843187923233,0.020125786163522,0.0221880919469615,0.0243439739948112,0.0266668035774795,0.0287379958461,0.0306984120445698,0.0327222835449828,0.0344738500966218,0.0363521530704161,0.0383972942409246,0.0404615864434972,0.0424496854035584,0.0558317319742668,0.0697947091276446,0.0827509496526684,0.0951239008792965,0.1071748737040826,0.1235586586268909,0.1375270597223991,0.1501134076606076,0.1616864379608849,0.17291619728132,0.1863915526344144,0.1994760033345242,0.211824000696682,0.2229590720070037,0.2335369544879203,0.2452782088228774,0.2548281524009517,0.2651356523696949,0.2742367799382155,0.2836228145600458,0.2922038060159607,0.2998454042912021,0.3068966742888286,0.3139324306496684,0.3203608466766361,0.3251176172777003,0.3303279202457834,0.335637138011502,0.340409528873212,0.3449273447820343,0.3447044716597281,0.3449501349936635,0.3456488937148336,0.3462250506219265,0.347500111568957,0.347177456487706,0.3472946622489259,0.3475295045859495,0.3484801807352639,0.3493542732443744,0.3503173947338767,0.3515049504950495,0.3530153658587854,0.3541615158121867,0.3553501616873401,0.3550026055237102,0.3564404412393467,0.3595551635057652,0.3631220129322463,0.3657762076767356,0.3691665153441075,0.3697091698892832,0.3722723852520692,0.3734019214766624,0.3755380872169193,0.372746679316888,0.3707302262031274,0.3729086877645636,0.3764673764673765,0.3718631178707224,0.0,2.182236707267553,60.78504928226199,201.5842111172824,305.0918459438863,fqhc7_80Compliance_baseline,36 -100000,95642,42268,397.4927333179984,6885,70.66978942305681,5362,55.40452939085339,2197,22.56330900650342,77.27782633283482,79.68870173807629,63.2892740309558,65.07222953024818,77.00465847138177,79.41776456399984,63.1879704184238,64.97515947828572,0.2731678614530466,270.937174076451,0.1013036125319928,97.07005196246143,109.45396,76.65029027442779,114441.31239413646,80142.91867006943,266.1678,165.9254525229415,277604.76568871416,172804.88346467438,293.28142,139.67774948511246,303062.9953367767,143255.02989584787,3881.62735,1751.4831051798153,4012515.463917526,1786004.7955771498,1282.45439,555.5067158415673,1326256.194977102,566218.665333349,2171.19052,905.612355913777,2231212.333493653,912221.278151574,0.3796,100000,0,497518,5201.877836097113,0,0.0,0,0.0,22399,233.474833232262,0,0.0,27229,281.0689864285565,1918110,0,68858,0,0,4233,0,0,53,0.5541498504840969,0,0.0,1,0.0104556575563037,0,0.0,0.06885,0.1813751317175974,0.3190994916485112,0.02197,0.3219822812846069,0.6780177187153932,25.1104382085612,4.4926759605317805,0.3254382693024991,0.2118612458038045,0.2256620663931368,0.2370384185005594,10.961824703401993,5.406143031510139,23.29463579449387,12810.008319905284,60.64035603581429,13.44927390393637,19.88020127958784,13.390879388959508,13.920001463330586,0.5477433793360686,0.7764084507042254,0.6991404011461319,0.5834710743801653,0.1014948859166011,0.7159940209267563,0.936842105263158,0.8706140350877193,0.7053941908713693,0.1340996168582375,0.4917992047713718,0.6957671957671958,0.6384794414274632,0.5531475748194015,0.093069306930693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024927547980463,0.0048880415382119,0.0073396544372931,0.009593788428509,0.01151635383285,0.0137834781634253,0.0158286588475267,0.0182113455763691,0.0203864526754022,0.0227004988782921,0.0248723050729245,0.0268507390629975,0.0289871476934791,0.031126960895467,0.0330800363426117,0.0351461492315012,0.0372327747898985,0.0392818574514038,0.0412612518861543,0.0434501527585164,0.0578122877237718,0.0707597561741971,0.0843007998656393,0.0967164807408966,0.1090239449550966,0.1239493574407723,0.1368005182722841,0.1488146609131106,0.1605985410828502,0.1712408194820255,0.1857021221559984,0.1980529325132114,0.2109623339865012,0.2229761526928086,0.233941822826063,0.2455500631746946,0.2550228386995901,0.2641116551297203,0.2735590949856392,0.2820991400533602,0.2901972124226476,0.2983666358778893,0.3048551041900862,0.312428064454249,0.3188321238862755,0.3248482305907902,0.3308151043624245,0.3360081518277926,0.3411090064609876,0.3463042731428873,0.3468453875435328,0.3473674035819329,0.347452355369564,0.3478569771488226,0.3484791980548055,0.3472670788348559,0.3471912971563076,0.3487171025492946,0.3499785426143678,0.3503067044516985,0.3511112783935864,0.3519361055371228,0.3523009557492316,0.3530151600224593,0.3535880888502163,0.35439689938721,0.355923939541687,0.3568842880731614,0.3600854548691472,0.3612799356007244,0.3617531718569781,0.3634510140573023,0.3657404463661219,0.3679289026275116,0.3694019206998193,0.370540019286403,0.3670668953687822,0.3705699481865285,0.3733784545967287,0.3776740567872423,0.0,2.5305547693861445,58.57941385172084,204.8888910439431,304.7540209517499,fqhc7_80Compliance_baseline,37 -100000,95818,42169,396.6791208332464,6871,70.58172785906615,5338,55.12534179381745,2130,21.90611367383999,77.39792083527668,79.70185054216591,63.37134666233783,65.07185337903505,77.13716562496265,79.44013599153733,63.27554518169734,64.97780477958428,0.2607552103140307,261.7145506285823,0.0958014806404889,94.04859945077249,110.37114,77.20996744742473,115188.31534784696,80579.81532428639,266.8085,166.99240577768498,277817.2577177566,173644.66569713937,292.59298,140.97209883844718,301517.178400718,144239.8113085167,3810.0266,1725.480292832371,3938970.944916404,1763656.4838336508,1288.26475,568.7010247449531,1330516.1973741886,579639.3817429094,2093.01416,873.5973006085749,2154514.9763092534,887083.5587954132,0.37906,100000,0,501687,5235.832515811226,0,0.0,0,0.0,22506,234.2879208499447,0,0.0,27112,279.0185560124403,1917538,0,68718,0,0,4299,0,0,51,0.5218226220543113,0,0.0,1,0.0104364524410862,0,0.0,0.06871,0.1812641798132221,0.3099985446077718,0.0213,0.3189441847676657,0.6810558152323344,25.259490586427987,4.401731837555228,0.3276508055451479,0.218433870363432,0.2266766579243162,0.2272386661671037,11.079663216759316,5.704284470472237,22.715220563651386,12780.000342909509,60.21946246798092,13.774672152324152,19.39408244173753,13.709644586538776,13.34106328738045,0.5458973398276508,0.7675814751286449,0.6718124642652945,0.5743801652892562,0.122835943940643,0.7242888402625821,0.906801007556675,0.8869778869778869,0.7206349206349206,0.1785714285714285,0.4842450214267708,0.6957087126137841,0.6065573770491803,0.5229050279329609,0.1082206035379812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020855268486271,0.0045901772233987,0.0067041939246412,0.0089964765492521,0.0112434938191281,0.0134131200260527,0.0159870391881151,0.0181076256057128,0.0202607434047857,0.0226210085839105,0.0247530838900045,0.0269818308659834,0.0289418799379449,0.0311396964239773,0.0332714904143475,0.0350737715920002,0.0367983281951542,0.0388569888683899,0.040571131879543,0.0426397735314932,0.0570090338194487,0.0713620817688341,0.0849026927271202,0.0975650784305479,0.1097911901424038,0.1250832514033808,0.1379431007242304,0.1499121920068117,0.1607358424049483,0.1718079629311824,0.185911518911002,0.1986219876260113,0.2114326716096627,0.222704511163106,0.2333036411423795,0.2446830888458344,0.2550152212942003,0.2647306823164356,0.2736332509466905,0.2820838482310403,0.2906045156591406,0.2982007243836896,0.305691210727335,0.3121514564036284,0.3179250315197362,0.3245952861290164,0.3304188161231092,0.3350901701803404,0.3396670590213553,0.3445387006691606,0.3454667562122229,0.3448531531902624,0.34499831214133,0.3447713832395788,0.3449994807352788,0.3449566798588084,0.3443998483028885,0.3448524590163934,0.3464565584825773,0.3467145460392325,0.3472206604445444,0.3481630877526001,0.3489054768095278,0.3498014403984654,0.3513049782503625,0.3520234542694099,0.3545765243114391,0.3572040214392185,0.3594699646643109,0.360266273368677,0.3618348623853211,0.363334048487449,0.3655961844197138,0.3704073789392775,0.3714612525021447,0.3772160996645903,0.3839987667642978,0.390827922077922,0.3898165891048453,0.3855283307810107,0.0,2.321013925506925,60.18186710037669,199.51261297570343,300.16500628663704,fqhc7_80Compliance_baseline,38 -100000,95546,42298,399.3783099240157,6915,71.07571222238502,5382,55.70091892910221,2166,22.23012998974316,77.19945181010942,79.67219006931116,63.224607941291474,65.05454735111073,76.92670613882049,79.40070952834182,63.124726057033314,64.95830974678117,0.2727456712889307,271.4805409693355,0.0998818842581599,96.2376043295592,109.59256,76.84258031866734,114701.35850794382,80424.69629149033,269.45882,168.286004348991,281393.4963263768,175504.37940781505,301.08914,144.85878708349546,311524.9931969941,148713.7090643646,3881.03334,1756.3874479695671,4018244.5418960494,1794555.541801399,1279.37211,564.5587316752484,1321474.4520963724,573339.1263634772,2128.7603,890.6188887945568,2186713.666715509,895928.5148443824,0.37812,100000,0,498148,5213.698113997446,0,0.0,0,0.0,22677,236.6713415527599,0,0.0,27979,289.2638101019404,1907559,0,68542,0,0,4263,0,0,39,0.4081803529190128,0,0.0,1,0.0104661628953593,0,0.0,0.06915,0.1828784512853062,0.313232104121475,0.02166,0.3236954426545504,0.6763045573454496,24.944573267030417,4.432875191099484,0.3272017837235229,0.2136752136752136,0.2276105536975102,0.2315124489037532,11.110091694216862,5.6459999888241645,23.261002168209693,12747.513923821189,61.08912271926534,13.570197990979093,20.21252794117968,13.635064832486412,13.671331954620165,0.5546265328874025,0.7713043478260869,0.7137989778534923,0.5697959183673469,0.1147672552166934,0.7340350877192983,0.9481481481481482,0.8609406952965235,0.7071428571428572,0.1713147410358565,0.4900176901693202,0.6751677852348993,0.6572327044025157,0.5291005291005291,0.100502512562814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002098306149963,0.0043221525537225,0.0067227232106588,0.0089982918496827,0.0114834873966689,0.0135884523639625,0.0154411389498392,0.0177498467198038,0.019596807204257,0.0217157380174012,0.023702228563803,0.0258295373921627,0.0278369944696759,0.0299460496590709,0.0320570454193148,0.0342118338785143,0.0363609964530916,0.0384751293936685,0.04059375,0.0424492352664822,0.057093841856962,0.0704054025712548,0.0837275307473982,0.0962707720840051,0.1086988690413275,0.1242671303315274,0.1374743359254492,0.1507160694085757,0.1626190450684007,0.1742478009333935,0.1878206028142852,0.2008399531188957,0.2125364081641558,0.2237396340660787,0.2347721478472965,0.2452622692230788,0.2555477221606741,0.2652883888368524,0.2744674071376548,0.2829967606313323,0.2906290234651387,0.2974250689189981,0.3035909241942374,0.3100991288675278,0.3160684260545361,0.3225774546893158,0.3287309823234544,0.3339290957602992,0.3385331357408419,0.3425960264900662,0.3436414035562166,0.3437607900006905,0.3447432762836185,0.3441256216561064,0.3439221364701667,0.3436504394132947,0.3423548130469371,0.3434543563326564,0.3444368013757524,0.3463205019867311,0.3478925612034957,0.3493184757735548,0.3496872887085869,0.3496722456243101,0.3507431924541112,0.3510277127141616,0.3508610263203363,0.3526519477223702,0.3551730257320319,0.35832,0.3614171428571429,0.364474034620506,0.3651685393258427,0.3668403309837573,0.3685103175350984,0.364798661727805,0.3680183626625861,0.3667270166968416,0.3646575342465753,0.3723076923076923,0.0,2.4993721305659835,62.70237531052532,197.8080321938144,302.90042493248063,fqhc7_80Compliance_baseline,39 -100000,95675,42708,402.1635746015156,7034,72.24457799843219,5455,56.367912202769794,2223,22.81682780245623,77.33990302576841,79.73146409554474,63.32261558699434,65.08919778225035,77.06288332537653,79.45439664786453,63.22107162585821,64.99045021961741,0.2770197003918753,277.06744768021,0.1015439611361301,98.74756263293705,109.84842,76.92154938100121,114814.13117324274,80398.79736712956,267.38246,167.26303902666226,278838.67258949566,174193.34102603846,303.22409,145.54412971849936,312967.58818918216,149021.8417251374,3946.94765,1785.748887750436,4083196.5090148943,1824300.4941211743,1344.10625,589.6178594635104,1389106.694538803,600511.5646339279,2190.61082,911.6224467780972,2250798.996603084,919725.0109823348,0.38229,100000,0,499311,5218.824144238307,0,0.0,0,0.0,22523,234.74261823882935,0,0.0,28136,290.054873268879,1915229,0,68733,0,0,4420,0,0,44,0.459890253462242,0,0.0,1,0.0104520512150509,0,0.0,0.07034,0.1839964424913024,0.3160363946545351,0.02223,0.3254933765882671,0.674506623411733,25.00877526900372,4.443390522734114,0.321173235563703,0.2181484876260311,0.2274977085242896,0.2331805682859761,11.266654133475631,5.716188793890121,23.71614709088349,12950.73574105738,61.85885143828053,14.272324635674345,19.723366240103047,13.902532550944631,13.960628011558482,0.5622364802933089,0.7924369747899159,0.7071917808219178,0.5922643029814666,0.1179245283018868,0.724113475177305,0.9326923076923076,0.8733031674208145,0.7338129496402878,0.156934306569343,0.5058096415327565,0.7170542635658915,0.6511450381679389,0.5514018691588785,0.1072144288577154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0046525771628402,0.0071638035129019,0.0096392150489578,0.0121310108497808,0.0144037948655306,0.0163493293105557,0.0186474238589042,0.020884445534838,0.0228970910356404,0.0249833410220923,0.0271715699357408,0.0292653833497861,0.0311585843187342,0.0334396383565037,0.0350810078681541,0.0369860033359924,0.0388719353968155,0.0410177989992614,0.0433132837827976,0.0573499916429884,0.0723311592458045,0.0858443847574282,0.0983515154065455,0.1103574141277745,0.1260380631988744,0.1391196409815716,0.1519957424161788,0.1644185276558478,0.1758386671384001,0.1901403142263334,0.2032717358376249,0.2153824405732802,0.2263136028688255,0.2367384222574396,0.247782220105656,0.2584258381212695,0.2685574781180388,0.2773056806707434,0.2859564525181257,0.29419795221843,0.3012290528925426,0.3085243612350442,0.3154798279353439,0.3216857958340924,0.328272309379737,0.3338298991011742,0.3388823132628256,0.3440663685268001,0.3491333756076939,0.3491673970201577,0.3490705141455482,0.3495596454581381,0.3502288793602967,0.350481069971106,0.3488668077406692,0.3479349980182322,0.3482859586787735,0.3498306939836508,0.351203559749102,0.3524290244497401,0.3544739916440607,0.3539956758118348,0.3551387172863079,0.3570237145550801,0.3589320337473143,0.3603404791929382,0.3636133362885096,0.3648925643200452,0.3682448589191774,0.3700351935646053,0.3711064807394347,0.3731721212888523,0.3729891221081661,0.3732766761095373,0.3721844833750447,0.3701358863495985,0.3704312114989733,0.3675645342312009,0.3662631784459195,0.0,2.4839436372611,61.96305104551528,205.51947280779456,306.41047483363343,fqhc7_80Compliance_baseline,40 -100000,95783,42337,397.3669649102659,6914,70.87896599605358,5356,55.33340989528413,2167,22.269087416347368,77.331780499572,79.67240558807174,63.32970022966426,65.06270186798146,77.0603584354003,79.40012788601608,63.22911694652191,64.96427996342833,0.271422064171702,272.2777020556606,0.1005832831423489,98.42190455313472,109.8075,76.94333855206622,114641.95107691344,80330.89227949241,269.16508,167.9902836458306,280438.1675245085,174812.7249387647,295.64006,141.99249949265612,304950.61754173494,145518.12409790416,3845.5792,1734.8599383426256,3978612.457325413,1775168.6225481075,1242.98467,548.1557365068999,1284730.2652871597,559399.1690862711,2118.9001,891.1154518260444,2179840.368332585,903197.5906258916,0.37879,100000,0,499125,5210.997776223338,0,0.0,0,0.0,22667,236.03353413444972,0,0.0,27367,281.9602643475356,1915687,0,68773,0,0,4298,0,0,47,0.4906925028449725,0,0.0,1,0.0104402660179781,0,0.0,0.06914,0.1825285778399641,0.3134220422331501,0.02167,0.3195720751611576,0.6804279248388424,25.443988543358163,4.501340147020807,0.3265496639283047,0.2156460044809559,0.2326362957430918,0.2251680358476475,11.04781289181879,5.660942709425292,23.273733326702924,12748.634570086351,60.45488526651222,13.55780412374843,19.6813627011235,13.99558400463015,13.220134437010136,0.5440627333831217,0.7532467532467533,0.6826758147512865,0.5850722311396469,0.1003316749585406,0.7152221412964311,0.910761154855643,0.8554502369668247,0.7423312883435583,0.1311475409836065,0.4850615114235501,0.6757105943152455,0.627731725697061,0.5293478260869565,0.0925155925155925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107368954165,0.0046125461254612,0.0069712928856281,0.0090718842699825,0.0111467073480803,0.0133097078381653,0.0157317346709895,0.0178753726162766,0.0200875058780233,0.0220709423145825,0.0243674908762865,0.0266648869540218,0.0288422979239714,0.0309026669001534,0.0331602902170435,0.035438484043378,0.0374398011496038,0.0398174557900741,0.0419411825833939,0.0438377275188471,0.0590113639921109,0.0729804081547264,0.0857933579335793,0.0984741808705155,0.1105971360230972,0.1255177952489644,0.1386144910331962,0.150191407911527,0.1622769572270127,0.1730289167211288,0.1864007233428774,0.199052440290758,0.2109836332988962,0.2221383730341011,0.2331649553743383,0.2436489735323118,0.2533892726035193,0.2633106473929917,0.2724468036840434,0.2802436901653611,0.2877450696894338,0.2956275653994129,0.3028233205090263,0.3089845201980839,0.3151862115908207,0.3218948199698921,0.3277554243597939,0.3335799288274384,0.3388145514010201,0.3439512343475214,0.3440958787764401,0.3442383686507773,0.3439800321516202,0.3437373269219628,0.3444634745699605,0.3432338163211997,0.3426832369207298,0.344072377311229,0.3455987093895344,0.3467454561733369,0.3469030545988368,0.3486540635972308,0.3488597563545926,0.3500899280575539,0.3515836884928322,0.3519748064558456,0.3523746739660064,0.3565022421524663,0.3588678448215165,0.3598020829176808,0.3618170994184183,0.3650369102385792,0.3646338351620311,0.365641813989239,0.3690690406288474,0.3762553802008608,0.3758326878388845,0.3736777868185517,0.3708021093533167,0.3625246548323471,0.0,2.279397316890301,60.478385884001824,200.1506224203123,301.5079260178436,fqhc7_80Compliance_baseline,41 -100000,95691,42407,399.9435683606609,6900,70.91576010283099,5381,55.68966778484915,2188,22.54130482490516,77.34192318165195,79.71603764524419,63.32298576779221,65.0744743721876,77.07501288175256,79.44823703593198,63.22613893345717,64.9793750401963,0.2669102998993935,267.8006093122036,0.0968468343350323,95.0993319912925,109.64954,76.77327823674229,114586.86814851972,80230.190131509,266.33344,166.1164302946548,277791.9553563031,173064.28487576125,293.83548,141.1771818349281,303352.67684526235,144667.49296641262,3892.09619,1745.0233539069695,4031071.971240765,1787583.7979259808,1330.8278,581.8208290782003,1375491.8644386618,592874.8390864056,2152.46874,884.5529170695334,2219345.1630769875,899262.1320644995,0.38035,100000,0,498407,5208.494006750896,0,0.0,0,0.0,22471,234.25400507884757,0,0.0,27293,281.4893772664096,1916319,0,68731,0,0,4314,0,0,39,0.4075618396714424,0,0.0,0,0.0,0,0.0,0.069,0.1814118574996713,0.3171014492753623,0.02188,0.3212221304706854,0.6787778695293146,24.78154536112414,4.525221571394061,0.3263333952796878,0.2062813603419439,0.229697082326705,0.2376881620516632,11.302676383296728,5.736895506361579,23.138200940941147,12812.508017576376,60.71554335949267,13.270865931852237,19.70410259697886,13.844889378312429,13.895685452349154,0.5508269838320015,0.7972972972972973,0.6845102505694761,0.5736245954692557,0.1313526192337764,0.7150220913107511,0.926509186351706,0.8486997635933806,0.7081967213114754,0.1726907630522088,0.4954014417101665,0.7297668038408779,0.6324081020255063,0.5295381310418904,0.1213592233009708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020149246175187,0.0042874083984553,0.0063605100581271,0.008542060251488,0.0105864765643273,0.0127669972104009,0.0150786044899374,0.0173077512176692,0.0194690989406519,0.0216761378180515,0.0237775430897476,0.0258774722227927,0.0279760557875465,0.0302405852351759,0.032195132021718,0.0343101772382272,0.0363994199295628,0.0384144316200282,0.0404937449954764,0.0423891297099033,0.056979015427682,0.0705916843791554,0.0838073847058082,0.09645513946906,0.1084463202321287,0.124002624394167,0.137293624250146,0.150090011397893,0.161785141635489,0.1731607307700564,0.1863153127897699,0.1997487301123133,0.2118434659554781,0.2231888815933464,0.2337615163623154,0.2446266341679592,0.2552467068542085,0.2646976058351437,0.2747804977652744,0.2831586783485083,0.2917529709901758,0.2995635436046852,0.3076895759842799,0.3134457207261217,0.3191424717134766,0.3252604969480239,0.3309695040970256,0.3364318184712159,0.3429779397460671,0.3476749411795807,0.3480919534023569,0.3486722243692375,0.3484022264289548,0.3483539541277766,0.3487158908507223,0.3480126260304618,0.3472510414521724,0.3478403948992184,0.3491201315947294,0.3509747808978716,0.3519193209134615,0.3519606286712176,0.3535667745596704,0.3529808167482816,0.3528787476784293,0.3539642745220934,0.3553202420367622,0.3585036369934187,0.3581764540601292,0.3581905632627102,0.3604730498066864,0.362504654998138,0.3648888888888889,0.3680280402316367,0.3729800826756858,0.370654095462581,0.3732362312243969,0.3743980738362761,0.3704720087815587,0.3704119850187266,0.0,2.0386716883373057,60.10760758571956,204.44643412161892,301.9868623341056,fqhc7_80Compliance_baseline,42 -100000,95730,42299,397.8898986733521,6954,71.41961767471012,5402,55.76099446359553,2133,21.884466729342943,77.32392886815877,79.68983520839976,63.31606620966248,65.06573310334059,77.06139476738943,79.42572655949951,63.220278910356086,64.97172727678229,0.2625341007693436,264.10864890024754,0.0957872993063944,94.00582655830192,109.23088,76.49956909172647,114103.0815836206,79911.8030833871,264.97381,165.41701642728407,276142.65120651835,172145.16497157014,297.47258,143.03617359305264,306175.18019429647,145973.86038442346,3866.08886,1736.5819420132789,3998951.948187611,1774459.18940069,1275.31906,546.8756438820617,1318791.6640551551,557856.3082440841,2085.01426,863.1343990879516,2142823.6289564404,872821.1230835279,0.3793,100000,0,496504,5186.50370834639,0,0.0,0,0.0,22315,232.4140812702392,0,0.0,27589,283.6623837877363,1918940,0,68937,0,0,4305,0,0,44,0.4491799853755353,0,0.0,0,0.0,0,0.0,0.06954,0.1833377273925652,0.3067299396031061,0.02133,0.3158827539195637,0.6841172460804362,25.280504355659456,4.452821318287571,0.3295075897815623,0.2110329507589781,0.239911144020733,0.2195483154387264,11.090388682806744,5.747703296678652,22.756937715169965,12867.543667680578,60.94988590665183,13.555339203694404,20.025955976073785,14.413062569053077,12.955528157830566,0.5618289522399111,0.7991228070175439,0.701123595505618,0.5725308641975309,0.1129848229342327,0.7258771929824561,0.9263959390862944,0.8629213483146068,0.7260726072607261,0.1061946902654867,0.5061973227565691,0.7319034852546917,0.647191011235955,0.525679758308157,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025423642975072,0.0048565837633961,0.0070229565429191,0.0093275620313357,0.0115046588273589,0.0137983706720977,0.0158024590665334,0.0178937805587595,0.0201412957907759,0.0224019658032149,0.024749582209828,0.0270744779153576,0.0290945727826954,0.0310758613586032,0.0332163863378392,0.0351439350870846,0.0370182398210198,0.0391082326566197,0.0410544376852285,0.0430696782797132,0.0580159525599265,0.0721033634984568,0.0851771071451041,0.0973375954238607,0.1092634575842252,0.1254852597395728,0.138261413914206,0.1508730834752981,0.1628749038708023,0.1739741005960293,0.1868803754615227,0.200583910034602,0.2130402643708148,0.2236337199768232,0.234605234220365,0.2454048188502081,0.2559330543933054,0.2656473262002002,0.2753856807165317,0.2838060950721181,0.2909472269219181,0.2989841708748784,0.3062448868284701,0.3125427635132702,0.3190466336380567,0.3249558701904679,0.3311387007775269,0.3363512324504916,0.3412851895596194,0.3462775036054035,0.3473905882988201,0.3478326828393717,0.3484728618653406,0.3484909981735424,0.3486099109031854,0.3480335010430728,0.3471500126806999,0.3488303325009856,0.3505764822607684,0.3515595674322996,0.3528551336146273,0.3547096569753624,0.3554776842856244,0.3572612806380786,0.358685695000241,0.3597062129172221,0.3605335313606763,0.3644129464991932,0.3666241677291401,0.3678955146383352,0.3698391605187188,0.3717777659177029,0.3711900847350449,0.3728308233315496,0.3767799506360357,0.3769765213224724,0.3754380618619534,0.3756233792140435,0.3736263736263736,0.371824480369515,0.0,2.5925714909564115,59.7749448981772,201.8193612480441,307.8744789814543,fqhc7_80Compliance_baseline,43 -100000,95806,42676,401.7076174769848,6801,69.99561614095151,5289,54.73561154833727,2107,21.67922677076592,77.4066300966336,79.74495829128509,63.35719594835807,65.08745773390052,77.14684620290828,79.48440293636834,63.26291404837607,64.99518766667317,0.2597838937253272,260.55535491674675,0.0942818999820005,92.27006722734644,110.18898,77.2551893302553,115012.60881364424,80637.10971155805,267.9582,167.2324167846974,279214.98653529,174079.8350674252,294.42514,140.91814338319455,304445.0034444607,144937.8601048608,3813.42221,1694.9234835583716,3945463.279961589,1734225.229691638,1299.21162,557.2482785138228,1343735.2984155482,569291.7964572387,2070.01084,854.7486436224185,2130403.440285577,865847.8078573172,0.38236,100000,0,500859,5227.845855165648,0,0.0,0,0.0,22437,233.7014383232783,0,0.0,27169,280.8174853349477,1916983,0,68780,0,0,4394,0,0,70,0.7202054151097008,0,0.0,0,0.0,0,0.0,0.06801,0.1778690239564808,0.3098073812674606,0.02107,0.3133408071748879,0.6866591928251121,25.26200498256006,4.442649357144453,0.3337114766496502,0.2040083191529589,0.2355832860654187,0.226696918131972,11.060700320166625,5.596945627508487,22.273368308394534,12859.701298599995,59.16057801413577,12.689410964135382,19.62494036793925,13.736016219721831,13.110210462339316,0.5590848931745132,0.7868396663577386,0.6991501416430594,0.5826645264847512,0.1234361968306922,0.7247634069400631,0.9228571428571428,0.8778054862842892,0.7444444444444445,0.1740890688259109,0.5068390947525491,0.7215363511659808,0.6466275659824047,0.5379098360655737,0.1102941176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021176565951324,0.0042891038510677,0.0065962391288905,0.0086057120794936,0.0108623793492743,0.0129732592004236,0.0152117615872433,0.0174552135966926,0.0197064475244286,0.021756928241025,0.0240025416867371,0.0263403622184598,0.0285517539081369,0.0304817788758492,0.0326976600350479,0.0347775804386435,0.0368803277331788,0.0389156688954543,0.0409424769107701,0.0429328419584205,0.0572191732225955,0.0710289365529213,0.0839456224386051,0.0967914831902304,0.1092485670937289,0.1260222734092686,0.1399334407325758,0.1523389325962151,0.1642501253614142,0.1751638747268754,0.188094418384473,0.2007762497837744,0.2136539464534075,0.2246377602830219,0.235948021134264,0.2470377377277705,0.2570867810067578,0.2662860225688981,0.2749486909095032,0.2833289463143318,0.2913202835042606,0.299695011510102,0.3066986834478761,0.3135517096832145,0.3204430625728721,0.3254994269376286,0.3309420072115384,0.3369681392508143,0.3422464049747377,0.3473076821506853,0.3473905599072439,0.3482924814100798,0.3484570687126255,0.3477675858676466,0.3482229126098137,0.3476902818820719,0.3472039967747545,0.3479443079443079,0.3500969750586954,0.3506184247938584,0.3521584750513922,0.3537197896354074,0.354900035515073,0.3545702044095332,0.3541346891788181,0.3546543347795589,0.3547635288767621,0.3577358017730163,0.3616410543634263,0.3660223724257875,0.3672311254369637,0.3690300084530853,0.3704005516203849,0.3689936536718041,0.3704530654014327,0.3701443492547823,0.3725943033102386,0.3670298627925746,0.368362831858407,0.3776923076923077,0.0,1.7716422509491248,56.27889716224264,200.407759750894,303.8112255006897,fqhc7_80Compliance_baseline,44 -100000,95690,42308,399.1953182150695,6971,71.72118298672798,5407,55.95151008464835,2163,22.22802800710628,77.29491858535671,79.69849659556503,63.29396199958445,65.07452121054017,77.030929393949,79.43404248373346,63.19706069207061,64.98007775851428,0.2639891914077168,264.45411183156864,0.0969013075138462,94.44345202588522,110.4532,77.35393413092787,115428.15341205976,80838.05426996328,270.02237,168.19181387044725,281584.9932072317,175170.66520083937,297.08885,142.20219023708742,306897.75316124986,145862.29408390613,3891.79631,1749.1431948015943,4026968.5651583234,1787960.2722479186,1279.29204,555.9013551065709,1324002.2363883376,568080.61713642,2121.36724,881.9185937158585,2181341.3940850664,891496.0124113392,0.37903,100000,0,502060,5246.734246002718,0,0.0,0,0.0,22729,236.92130839168144,0,0.0,27535,284.2721287490856,1912099,0,68673,0,0,4413,0,0,43,0.449367750026126,0,0.0,0,0.0,0,0.0,0.06971,0.1839168403556446,0.3102854683689571,0.02163,0.3181569592562209,0.6818430407437791,24.995185196547556,4.4275615310340175,0.3230996855927501,0.2193452931385241,0.2272979471056038,0.2302570741631218,11.016081721576064,5.702390567504997,23.004331190584665,12770.949190999198,60.85553499589716,13.859144139085767,19.771587350630504,13.59851421822466,13.626289287956222,0.5381912335860921,0.7596964586846543,0.681740125930166,0.563873067534581,0.1004016064257028,0.7124183006535948,0.918158567774936,0.8454545454545455,0.75,0.1220472440944882,0.4786600496277916,0.6817610062893081,0.6266258607498087,0.5058697972251868,0.094853683148335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023011343477247,0.0045460541670471,0.0067739806022444,0.0090183518885669,0.0111872308804218,0.0132806050166644,0.0152557247234581,0.0171430906601826,0.0193456643614191,0.0215634251528903,0.0234905524895882,0.0254360913069384,0.0275988392434501,0.0297436848777169,0.0317312853544737,0.0338593914824084,0.0361665526746668,0.03815605045943,0.0401352405721716,0.0420683976276592,0.0561573575957631,0.0700002093933873,0.0831348186082631,0.0958017676767676,0.1085509310544917,0.1239816323507628,0.13752003311434,0.1502885250090496,0.1615274483407056,0.1731629598635295,0.1866705446397794,0.1998550285615371,0.2121758982442789,0.2235337836360854,0.2338864878536944,0.2448260970667375,0.255085530647087,0.2647909515502785,0.2746175772510987,0.2832834554481556,0.2912752921555229,0.2987834151025139,0.3053752487444328,0.3116021171133328,0.3176616522151552,0.3231673437133437,0.3286203136163652,0.3344118209031272,0.3399551923749336,0.3452566301622905,0.3462594926482469,0.346554806766607,0.3467748753064502,0.3468104482574191,0.3473936186029914,0.346664825724104,0.3463578051568652,0.3469737123668746,0.3477329953238211,0.347744293546422,0.34897294447687,0.3498757825698102,0.3505106875855533,0.3505293681300155,0.3514431239388794,0.351756944991984,0.3526689470809738,0.3554237879316358,0.358182075005297,0.3620386643233743,0.3633646063281824,0.365192276835856,0.365991133628879,0.3679411539345644,0.3712307984069789,0.3724997005629417,0.3751724137931034,0.3752035830618892,0.3716789920569707,0.3865194211728865,0.0,2.078143076940476,60.9905489015944,193.6900964493011,315.0220964806527,fqhc7_80Compliance_baseline,45 -100000,95713,42512,401.51285614284376,6840,70.26213784961291,5297,54.69476455653882,2126,21.762978905686797,77.3593554540744,79.73077241417867,63.33143217950936,65.08395039991314,77.09736983476185,79.47039000939176,63.23510301201456,64.99111413586833,0.2619856193125542,260.38240478690966,0.096329167494801,92.83626404480572,109.53888,76.69314897775891,114445.1432929696,80128.2469233635,263.59374,164.24817659036074,274739.2517212918,170945.4980371728,293.26213,140.4166795858439,302209.84610241035,143467.42014256917,3813.35803,1713.290504223804,3938820.191614514,1744831.6909279707,1262.60096,548.0711090078204,1300107.8641354884,553773.3725260065,2096.05308,877.1858170118301,2147285.217264113,880715.468312391,0.38263,100000,0,497904,5202.051967862255,0,0.0,0,0.0,22182,231.07623833752996,0,0.0,27169,279.6798762968458,1921743,0,68902,0,0,4308,0,0,51,0.5328429784877707,0,0.0,0,0.0,0,0.0,0.0684,0.1787627734364791,0.3108187134502924,0.02126,0.3307306190741773,0.6692693809258227,25.18196798862073,4.41925787256742,0.322257881819898,0.217481593354729,0.2237115348310364,0.2365489899943364,10.934936612937374,5.540697646140109,22.5474806135526,12806.550213217824,59.41760388599752,13.401073630839123,19.22777254293751,13.009712224867345,13.779045487353551,0.5384179724372287,0.7465277777777778,0.6983011130638547,0.5611814345991561,0.1077414205905826,0.7023014105419451,0.91869918699187,0.8705357142857143,0.6920152091254753,0.1310861423220973,0.4825316455696202,0.665389527458493,0.6370135027799841,0.5238611713665944,0.101419878296146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0046529544740336,0.0071032096360112,0.0091710507606995,0.011226015069705,0.0132346503507182,0.015138386258219,0.0174856582896106,0.0196888225552534,0.021754931971048,0.0237194277803414,0.0254521924013188,0.0276760360508662,0.0296829763339824,0.0319072090479433,0.0340924361929768,0.0360393005414695,0.03807656802647,0.0398478028089946,0.0416775174741403,0.0562546339323941,0.0708902890875217,0.083974110168158,0.0968610337031389,0.1091965537968343,0.125510441571631,0.1384971294557108,0.1510018525221983,0.1624489708679761,0.1743306326125449,0.1878064286714869,0.1999025710419485,0.2118976903075601,0.2223656996531007,0.2338051440215894,0.2451206529453513,0.2548868485132811,0.264393163739466,0.273308138413174,0.2827748181245346,0.2908918384114237,0.2987603789030523,0.3059503819501927,0.3118661925457658,0.3181172700901797,0.3242324601913769,0.3298163931964105,0.3350502352791555,0.3413772121745659,0.346163482205256,0.3470065475470227,0.3471620822851801,0.3477900358372567,0.3483333813488519,0.3483525767389467,0.3470338465298143,0.3462576338588268,0.3466996186516964,0.3479765435886945,0.3491777868837856,0.3500534218073441,0.351030581160739,0.3520496110994324,0.3536182361801137,0.3541782359900524,0.3552597164827117,0.3567361885961148,0.3596024813267502,0.3625039697942764,0.3630715309861398,0.3670346786385084,0.3711781056232627,0.3738675513589383,0.3767584097859327,0.381629769194536,0.3861315601994776,0.3888039155705108,0.3918046023415422,0.3887362637362637,0.394696387394312,0.0,2.490421325065369,59.1036361545938,193.34084909921503,301.400224770956,fqhc7_80Compliance_baseline,46 -100000,95884,42776,400.8906595469526,6982,71.61778816069418,5438,56.07817779817279,2110,21.588586208335077,77.4394230829848,79.71955579925472,63.39129033748679,65.07720856593616,77.18623614932645,79.46968464744576,63.29821870771397,64.98870522699005,0.2531869336583554,249.8711518089607,0.0930716297728153,88.5033389461114,109.41788,76.68703140629043,114114.84710692086,79978.96563169082,267.96576,166.7525310576892,278838.3671936924,173280.3711335459,299.70014,143.18446407894078,308918.87071878515,146521.63644111578,3872.72193,1725.550748037622,3994310.656626757,1754968.1365375048,1293.67065,556.4226029916304,1332726.5341454258,563834.5858306715,2074.59972,855.2341700973747,2123543.761211464,855231.0640512427,0.38333,100000,0,497354,5187.038504860039,0,0.0,0,0.0,22435,233.3235993492136,0,0.0,27680,285.06320136832005,1923774,0,69021,0,0,4477,0,0,66,0.6883317341787993,0,0.0,0,0.0,0,0.0,0.06982,0.1821407142670806,0.3022056717272988,0.0211,0.3210412147505423,0.6789587852494577,25.342503130147797,4.423158434181241,0.3271423317396101,0.2223243839646929,0.2239794041927179,0.226553880102979,10.861429922879411,5.465724092585756,22.10473022389783,12963.34572053104,60.92288293433178,14.181545119722866,19.928924155091103,13.439492781638815,13.372920877878984,0.5454211107024641,0.7584780810587263,0.6790331646992692,0.5812807881773399,0.1079545454545454,0.7169663799843627,0.8773333333333333,0.8799019607843137,0.7376425855513308,0.1502145922746781,0.492666506371724,0.7050359712230215,0.6192560175054704,0.5382198952879581,0.0980980980980981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182830532496,0.0049860148364343,0.0073443634039704,0.0098386621856247,0.0123796843078862,0.0143668220019942,0.0163891010949834,0.0186454508363933,0.0206775366760655,0.0231694592769901,0.0252874034303981,0.0273747717058956,0.0295949195388125,0.0320143292431853,0.0340422899677309,0.036347114947751,0.0382995892777703,0.0403071216156006,0.0424838297739802,0.0442453939223703,0.0591779508188176,0.0727795193312434,0.0862052715905877,0.0992240573714549,0.1111391845371569,0.1268874200156273,0.1403086897106961,0.1528799149840595,0.1650816665955904,0.1763421525815566,0.1898720567680894,0.2028354386609468,0.2148358990515714,0.2255198714936675,0.2369809992962702,0.247614936804126,0.2574594010187362,0.2666456968893582,0.2760370647273386,0.2847327807945127,0.2923629476504487,0.3004249754821837,0.3079341441217837,0.3144587832499341,0.321386090544969,0.3273255527650563,0.333116631452611,0.3387145941826495,0.3440775444264943,0.3489048596851472,0.3490625629997984,0.3497631633143406,0.3495776112899372,0.3499372122226873,0.3499458448938412,0.3492833213504459,0.3485188936008608,0.3491506525873942,0.3490749590387766,0.3505000267393978,0.3525834159851788,0.3545700357234492,0.3553319666987407,0.3560013373453694,0.3572335481398079,0.360056222181733,0.3603938482492481,0.3626662494132374,0.3655482700892857,0.3676790016192093,0.3710232937550983,0.3739932174650275,0.3758326002262159,0.3785414280259641,0.3825789923142613,0.3833094213295074,0.3880248833592535,0.3916443712698086,0.3847650820127884,0.3959044368600682,0.0,2.47140502064094,55.781827984746286,212.2933450320994,311.1258197012503,fqhc7_80Compliance_baseline,47 -100000,95741,42111,396.3610156568241,6720,68.95687323090421,5249,54.271419767915525,2193,22.550422494020324,77.34647984393533,79.69827708758238,63.33814763576003,65.07512877360632,77.07683663308123,79.42811566964362,63.23865741283712,64.97774361206261,0.2696432108540989,270.16141793876614,0.0994902229229097,97.38516154371268,109.77912,76.84208425537409,114662.60013996092,80260.37356553,265.80933,165.98763937046115,277063.9746816933,172801.75616555204,287.27418,137.5471225848509,296550.9551811659,140988.0871561021,3836.89959,1726.153491293975,3970118.3087705374,1765476.5161153283,1248.4273,547.3552576330013,1288063.7448950815,555804.7938009849,2159.1695,902.7588400195716,2221480.536029496,914286.4048270376,0.37861,100000,0,498996,5211.936369998224,0,0.0,0,0.0,22434,233.734763580911,0,0.0,26670,275.09635370426463,1918456,0,68890,0,0,4246,0,0,41,0.4177938396298347,0,0.0,0,0.0,0,0.0,0.0672,0.1774913499379308,0.3263392857142857,0.02193,0.3234211271594449,0.6765788728405551,25.01964351906108,4.5443572985349805,0.3238712135644884,0.2076586016384073,0.2286149742808154,0.2398552105162888,11.035436152885689,5.565712780063693,23.407492297154583,12705.266613193806,59.337205201128654,12.87246491433804,19.25965675403576,13.463751082489836,13.741332450265014,0.5406744141741284,0.763302752293578,0.69,0.5883333333333334,0.1008737092930897,0.698948948948949,0.9344262295081968,0.8539603960396039,0.6845637583892618,0.1515151515151515,0.4868521827929538,0.6767955801104972,0.6388888888888888,0.5565410199556541,0.0874371859296482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0045819014891179,0.0070630498980119,0.0095792446313565,0.011928732686558,0.0139782537872617,0.016065239551478,0.0182386021494401,0.0203923091862497,0.0222886570495428,0.0243544931784868,0.0263789953400529,0.0286328213353073,0.0307031547723269,0.032644807164524,0.0346463529338804,0.0365063259685668,0.0385002438037535,0.0405513570827139,0.0424860428297641,0.0572636634128517,0.0717014306795466,0.084578262694083,0.0974068309918398,0.1098927746792202,0.1251823814256412,0.1376428033477241,0.1495466348814439,0.1611580835254932,0.1725257765106857,0.1855264999407882,0.1986567309460205,0.2106384366236984,0.2213139834768545,0.2319581395860128,0.243906218866922,0.2543765750094779,0.2642795290201414,0.2730624794363576,0.2810069750661428,0.2883536366686334,0.29588220847416,0.3029373808649941,0.3090640890338674,0.3145082883671187,0.3206131325702034,0.3261634385446532,0.3314861525134398,0.3369363524297671,0.3411467629133119,0.3412626664687707,0.3419869850548723,0.3419106230415267,0.3420092117841314,0.3428703345149087,0.3422478775503937,0.3415879256769611,0.3418972007166691,0.3431154333458891,0.3439585010285305,0.3455228083348977,0.3471372269423484,0.3481754127668524,0.3497980251346499,0.351650738488271,0.3519966416539854,0.3528500974882441,0.3548845582893781,0.3577373395401326,0.3596463278636291,0.3622523844460748,0.3642983348503507,0.363895036357888,0.3651512824450929,0.3695961995249406,0.3713909188930154,0.3719390112428769,0.3771768080311412,0.3812341504649197,0.3813659692064745,0.0,2.185920300752672,58.68941865595791,198.1544632390601,296.77129021938435,fqhc7_80Compliance_baseline,48 -100000,95731,42531,400.0689431845484,6973,71.5233310004074,5400,55.72907417659901,2191,22.490102474642487,77.41222784566315,79.76755942962616,63.350809200748486,65.08960453849177,77.13203819395623,79.48926303304266,63.24768880146819,64.99002737847309,0.2801896517069195,278.2963965834995,0.1031203992802929,99.57716001868278,109.37652,76.6256861003351,114254.0242972496,80042.70936304342,267.71479,166.91207446404627,278984.6026887842,173686.7205649646,299.54871,143.5097002970381,308736.187859732,146735.37481220317,3916.04033,1776.9887861866785,4044223.271458566,1809783.493525273,1322.48314,580.6363226330571,1366709.477598688,591780.9618964151,2156.77236,903.7625213212168,2215495.691050966,910453.602152229,0.38204,100000,0,497166,5193.364740784073,0,0.0,0,0.0,22517,234.5008408979328,0,0.0,27732,285.5187974637265,1919070,0,68786,0,0,4277,0,0,62,0.6372021602197826,0,0.0,0,0.0,0,0.0,0.06973,0.182520154957596,0.314211960418758,0.02191,0.3150143188326742,0.6849856811673258,25.242116352306702,4.5024374109019725,0.322037037037037,0.2074074074074074,0.234074074074074,0.2364814814814815,11.24955353913194,5.777943255120894,23.24587472198538,12875.62379620936,60.9445698699049,13.184295377721456,19.569015127016986,14.14114992949133,14.050109435675132,0.5511111111111111,0.7732142857142857,0.7009775733179988,0.5806962025316456,0.1229444009397024,0.7211126961483595,0.9185750636132316,0.8891509433962265,0.7373417721518988,0.1486988847583643,0.4914957478739369,0.6946354883081155,0.6403041825095057,0.5284810126582279,0.1160714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153939639457,0.0045203466274768,0.0067564825711155,0.0090177918596149,0.0112648562917475,0.013620400061078,0.0158183337749964,0.018213728151179,0.0203370430552574,0.0223746161719549,0.0244732311224071,0.0266999260901699,0.0288469446500534,0.030997693194925,0.0333697917741502,0.0354846712008765,0.0375451712105366,0.0394451533920549,0.0413677666188426,0.0433143047626984,0.0575762637546196,0.0719069144483509,0.0854838032896945,0.0978539869556069,0.1092000717519072,0.1242115734665368,0.1371668736268984,0.1511153702816376,0.1638240574506283,0.1748486669814966,0.1887648929861448,0.2009162091036096,0.2127117536907198,0.2241360430992948,0.2347807882587569,0.2466610462794515,0.2565667404377081,0.265534177443338,0.2745559038662487,0.2831391615448124,0.2914986792715139,0.2989837969467079,0.3074036367080215,0.313614573346117,0.3202497661479402,0.3259610645638245,0.3314614470639734,0.3372168367022831,0.3428013904862825,0.3479044911283104,0.3482412667714251,0.3482837654227797,0.3481383614207204,0.3484579782862581,0.3485718514133491,0.3471052952659834,0.3470884119900976,0.3476356266039,0.3486186998927641,0.3497900654711073,0.3516071228581028,0.3524394807855187,0.3536712993971869,0.355626966593024,0.3562881445528377,0.3562556958729332,0.3584669267348159,0.3617683099255349,0.3650080707418064,0.367049504950495,0.3717477182945103,0.3747213079944792,0.3767295597484277,0.3776006074411541,0.3808588268313219,0.3829181494661922,0.3792053585020551,0.3823233340044292,0.3788086741696404,0.3810073048827374,0.0,2.62795025872649,61.37231513265415,199.40807251181755,303.89870119222127,fqhc7_80Compliance_baseline,49 -100000,95730,42619,401.06549670949545,6836,70.06163167241199,5332,55.13423169330408,2082,21.383056513109786,77.32373385663094,79.69351331697536,63.321321634088775,65.07524360246852,77.07131124074508,79.44196821850173,63.22735103998747,64.98408333388188,0.2524226158858624,251.5450984736276,0.0939705941013073,91.16026858663416,109.71136,76.80490282010798,114604.99321007,80230.75610582679,266.12738,165.8806842749104,277448.81437375955,172730.65316505835,295.79308,141.55354910052552,305428.8728716181,145181.20564717415,3828.44164,1723.494486035091,3959604.836519377,1760832.226521735,1284.09192,560.605271070268,1325868.4111563773,570147.2354421875,2048.34808,852.3865199927711,2105217.7373863994,861058.3973549437,0.38254,100000,0,498688,5209.317873184999,0,0.0,0,0.0,22385,233.24976496396116,0,0.0,27444,283.1714196176747,1918635,0,68924,0,0,4262,0,0,50,0.5118562624046799,0,0.0,0,0.0,0,0.0,0.06836,0.1787002666387828,0.3045640725570509,0.02082,0.3191727221911682,0.6808272778088318,24.98069694279024,4.447731377827603,0.3235183795948987,0.2162415603900975,0.2353713428357089,0.2248687171792948,11.309042099357296,5.761847040084503,22.05386424528073,12907.665637953256,60.1087683337055,13.728879270714694,19.54258742594306,13.73762386624944,13.099677770798294,0.5573893473368342,0.7623590633130962,0.7118840579710145,0.5800796812749004,0.1142618849040867,0.7133333333333334,0.9081364829396326,0.8826185101580135,0.6970802919708029,0.1388888888888889,0.5045203415369162,0.6904145077720207,0.6528861154446178,0.5474006116207951,0.1077085533262935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227963525835,0.00480696096626,0.0071965083231831,0.0093998333434953,0.0114968256552173,0.0134665729507278,0.0157977399747073,0.0181998304617364,0.0202468479339011,0.022694454401147,0.0249410316890575,0.0271236225081904,0.0291963293691617,0.0311826959738667,0.0331953633839452,0.0355211876234092,0.0376266130869772,0.0394766874857344,0.0413088232236062,0.0432517478874266,0.0575712331770675,0.0720812182741116,0.085467305896793,0.0980171461631515,0.1100823587721055,0.1256132634072069,0.1386151218425435,0.1518366391419085,0.1642653451387924,0.1748715914086878,0.1888210528582657,0.2008524817170799,0.213010287305074,0.2240713809279083,0.2349187488310173,0.2457360563505072,0.2560413948457172,0.2655977888385785,0.2747496966879457,0.2840370751802266,0.2921121063276509,0.2996365421248846,0.3070001182452406,0.3131050512795936,0.3198445470002429,0.3259500301988192,0.3318560250391236,0.337242617565038,0.3432452751924921,0.3478926596179992,0.3482870576189898,0.349114708921805,0.3495288076293663,0.350089090408657,0.3513722803830174,0.3502301319423136,0.3492357646313455,0.3501305354416039,0.3513379752884156,0.351694839619442,0.3532301001087323,0.3552959809938626,0.3563346512997392,0.3579112857944975,0.3598849991544055,0.3619095029737731,0.3629062329690503,0.3659355983772819,0.3684173272933182,0.3709858702633269,0.3716626772233474,0.3733612722974425,0.3728575979611341,0.3745569425181075,0.3748701973001038,0.3736276849642004,0.3708941605839416,0.3707751467314308,0.3763706140350877,0.3870719507502885,0.0,2.2202992956372367,59.42523701642139,199.1620668560972,302.9354670422638,fqhc7_80Compliance_baseline,50 -100000,95779,42354,399.0123095876967,6762,69.40978711408556,5300,54.74060075799497,2139,21.96723707702106,77.38153749659537,79.72325481305234,63.350937847410606,65.08291271121807,77.11701383551623,79.45912357760258,63.25487516482281,64.98989196418957,0.2645236610791386,264.1312354497529,0.0960626825877923,93.02074702850403,109.10988,76.43921451551324,113918.37459150753,79807.90623781127,263.86296,164.48639058521056,274905.42812098685,171149.313090772,292.08183,139.6462980651143,301179.5278714541,142955.0764296412,3824.49011,1704.6142668554198,3952967.247517723,1739668.045036408,1300.22087,564.3986312111409,1338845.96832291,570665.3564372167,2105.34316,867.5622924510551,2164082.3562576347,875456.3753953043,0.38002,100000,0,495954,5178.107935977615,0,0.0,0,0.0,22197,231.11538019816453,0,0.0,27092,279.0590839328037,1924453,0,69019,0,0,4223,0,0,46,0.4802722935090155,0,0.0,0,0.0,0,0.0,0.06762,0.1779380032629861,0.3163265306122449,0.02139,0.3216242798932134,0.6783757201067866,25.24085802725028,4.528674576981378,0.3239622641509433,0.2156603773584905,0.230377358490566,0.23,11.125193831671304,5.576093645893944,22.69343114451056,12789.942943829596,59.54227595114539,13.503655716545513,19.18961104567557,13.57025523499494,13.278753953929373,0.5488679245283019,0.7821522309711286,0.6808386721025044,0.5724815724815725,0.1205906480721903,0.7263406940063092,0.9293193717277488,0.8507853403141361,0.7480916030534351,0.1859504132231405,0.4930555555555556,0.7082785808147175,0.6322097378277154,0.5245046923879041,0.1044012282497441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0043890769760982,0.0066251369668438,0.0087444014502909,0.010990910384936,0.0135590459806386,0.015696986993925,0.0178507639392114,0.0199370516462629,0.0219984856856365,0.0240198389113192,0.0260926690070004,0.0282544546006025,0.0304668355264512,0.0325116039195461,0.0345094797747584,0.0363011714061012,0.0384272504872081,0.0404828438756323,0.0425321463897131,0.0578659013827289,0.0721472649304466,0.0847120001677465,0.0971721608642195,0.1091439832232093,0.124190190338297,0.1370784849833619,0.1493605213637958,0.1611460889979724,0.1722116229715535,0.1857556481212395,0.1992148635203529,0.2113305150135301,0.2231449207268436,0.2333120724921371,0.2436970139672842,0.2538573021181717,0.263338316118373,0.2727994285260735,0.281543512830193,0.2899678545824564,0.2975664492601164,0.305278849111516,0.3122514493795218,0.3191045066045066,0.3259006624147356,0.3317169495338316,0.3366481427317929,0.3421083284799068,0.346837045535467,0.3466550006730381,0.3468660576711424,0.3474160534551298,0.3479154008621937,0.3488160969148572,0.347011665159342,0.3460174749905027,0.3468765371372356,0.3476400702268737,0.3480113383131585,0.3492387497893219,0.3508015893411351,0.3522467551529639,0.3535401107896566,0.35443312378062,0.3544111880799895,0.3546755806976943,0.3568865667883671,0.359038259038259,0.3604591127526907,0.362632851343338,0.3635782407160743,0.3638382940915148,0.3621762852532083,0.3638178534081186,0.3651040420951925,0.3648565257636532,0.3698714023270055,0.3801675977653631,0.3823870220162225,0.0,2.279799107445811,55.58683393893804,205.16581272832477,303.2183494375256,fqhc7_80Compliance_baseline,51 -100000,95846,42559,400.0166934457358,6811,69.79946998309788,5298,54.58756755628821,2108,21.586712017194248,77.37299817448195,79.67437506122762,63.35320242165369,65.05692705897964,77.11963985264659,79.4224902899168,63.260334571552455,64.96722878347015,0.2533583218353641,251.8847713108272,0.0928678501012356,89.69827550949105,109.60334,76.7375837206101,114353.58804749284,80063.41810885181,267.72062,167.76827212584269,278633.3493312188,174356.77362036868,297.70401,143.12306649410394,305899.5054566701,145729.36511459775,3832.41408,1716.880218326824,3951198.704171275,1744649.723661221,1275.97153,555.4411858616332,1312071.6983494356,561043.9718107678,2081.16584,860.3703854852938,2133402.875446028,866568.9040191813,0.38096,100000,0,498197,5197.89036579513,0,0.0,0,0.0,22591,234.98111553951128,0,0.0,27628,283.50687561296246,1916557,0,68852,0,0,4306,0,0,32,0.3338689147173591,0,0.0,0,0.0,0,0.0,0.06811,0.178785174296514,0.309499339304067,0.02108,0.3174846625766871,0.6825153374233128,24.881355420246845,4.454537144002509,0.3261608154020385,0.2129105322763307,0.2281993204983012,0.2327293318233295,11.043637738604415,5.50125393925321,22.353384993880947,12778.202093767475,59.66386851652192,13.369963358264425,19.449177142668937,13.318507746387173,13.526220269201405,0.5539826349565874,0.7907801418439716,0.6961805555555556,0.5839536807278742,0.1086780210867802,0.7139605462822458,0.9042821158690176,0.8726415094339622,0.7125984251968503,0.1275720164609053,0.5010050251256282,0.7291381668946648,0.6388036809815951,0.5497382198952879,0.104040404040404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0045709305036131,0.0066441475710822,0.0089251264139065,0.0112030579671837,0.0132430781758957,0.0154413788183013,0.0177264795028013,0.0199348108185431,0.0219575582704074,0.0241483530556836,0.0262858198159377,0.0287141330263915,0.030745952177538,0.0328237271012236,0.0351426151971415,0.0370496823721729,0.0390250979254315,0.0409155105092631,0.0431154670495453,0.0577145657591524,0.0714658919913058,0.0851892979111232,0.0975018114229909,0.1089241332827836,0.1241298446132232,0.1375513923621413,0.1503051179009589,0.1618053554466963,0.1728098748499914,0.1862309405700881,0.1993126033526798,0.2112023995826812,0.2220946758500054,0.2319499152784807,0.2433575882424604,0.2537626490834644,0.2634983854817115,0.2727375860778018,0.2814972576231207,0.2890168730990297,0.2970307454724133,0.3041095566129299,0.3104700061101992,0.3162502124766275,0.3228163114451152,0.3287542576637948,0.3342536867151018,0.3397650898071768,0.3449131841288704,0.34613933432152,0.345561494379546,0.3455715313739047,0.3466888615473691,0.3467906284864261,0.3466360153256705,0.3463068316878754,0.3467496837574543,0.3478833039941207,0.3483849055254643,0.3487583169337456,0.3507831658887746,0.3510114243789959,0.3538482166800751,0.3553901560624249,0.3556875618779636,0.3572346440503726,0.3594040381768356,0.3611657994656166,0.3627248949829595,0.3662131519274376,0.3708651399491094,0.3742509304232637,0.3763111553479825,0.3800416587767468,0.3827321111768184,0.3878052526493626,0.3901888341543514,0.3918881118881119,0.3862229102167183,0.0,2.6165735268213197,57.53745051139198,200.94498731704695,300.5887643874987,fqhc7_80Compliance_baseline,52 -100000,95791,42597,401.561733356996,6913,70.98787986345273,5460,56.40404630915222,2190,22.549091250743807,77.39816222968327,79.72785469381296,63.35848721039546,65.07982812521298,77.13705726528646,79.46624495509849,63.26405287504869,64.98744567692162,0.2611049643968073,261.6097387144692,0.0944343353467758,92.38244829136022,109.15432,76.49974295148628,113950.49639318934,79861.09650331063,267.56546,166.10542447357315,278748.4941174014,172830.36451605387,296.03052,141.59064477509733,304887.546846781,144653.80208074546,3956.35443,1763.679154181786,4094451.221931079,1805431.0887053956,1316.01922,564.9515084922434,1360875.531104175,576806.3476654838,2164.26776,886.8574536535862,2230350.7636416783,900451.1024194822,0.38152,100000,0,496156,5179.568017872243,0,0.0,0,0.0,22456,233.82154899729625,0,0.0,27377,281.7801254815171,1923476,0,68951,0,0,4398,0,0,60,0.6054848576588615,0,0.0,0,0.0,0,0.0,0.06913,0.1811962675613336,0.3167944452480833,0.0219,0.3203243094681874,0.6796756905318125,25.0940992694554,4.446202139294924,0.317032967032967,0.2135531135531135,0.2313186813186813,0.238095238095238,10.969866292568714,5.494218996892061,23.113049729172463,12855.144644622296,61.306885889663015,13.580034298868972,19.510582460763697,14.135734358519851,14.080534771510484,0.5472527472527473,0.7607204116638079,0.7111496244945118,0.5771971496437055,0.1084615384615384,0.7165653495440729,0.9221902017291066,0.8747099767981439,0.7342657342657343,0.1428571428571428,0.493484555984556,0.6923076923076923,0.6569230769230769,0.5312180143295804,0.1001908396946564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023596848352271,0.0048544673260904,0.0070101042892504,0.0092716711349419,0.0113963299954252,0.0136482993058806,0.0159779895042543,0.0181202301758968,0.020075807885246,0.0219869040311029,0.0241883432880164,0.0263414433920637,0.0284777604209487,0.0307845902078037,0.0328157862179883,0.0346401718582169,0.0365914216548385,0.038594744810137,0.0404672333880656,0.0423404942154096,0.0572117240731658,0.0705941412091992,0.0843319180164596,0.0972298120980285,0.1097618821743667,0.1252166744176214,0.1384594176157451,0.1516028471416868,0.1638652770065354,0.1745400351674743,0.1885250314980132,0.2015420884159529,0.2137425312330255,0.2245816402324463,0.2356237843540181,0.2463216585171582,0.2574804905239687,0.2674971611031784,0.2768691588785046,0.2853462489694971,0.2932533351830015,0.300549322113137,0.307493845862526,0.3138046734571599,0.3200777123429057,0.3261442577720845,0.3312575030012005,0.3367409215746109,0.3416731416731416,0.3466334164588528,0.3465418546703481,0.3467846234280839,0.3472611716294866,0.3475654673349414,0.347335153421568,0.3472780947427994,0.3456590876726634,0.3467086800256019,0.3477903954029279,0.348625328259821,0.3492045646185845,0.3504981085738052,0.3507991777488778,0.35121482375556,0.3514220568822753,0.3535256075936163,0.3535428149326666,0.3574028745371242,0.3602334684747658,0.3609079046225631,0.3616885485047411,0.3647426062113115,0.3676102204408817,0.3694029850746269,0.3691047726630895,0.372776119402985,0.3720397249809014,0.378757108042242,0.3806074115352466,0.3848508033664881,0.0,2.3537631738335127,57.846932962943015,208.5456014361268,313.24619599587584,fqhc7_80Compliance_baseline,53 -100000,95878,42163,397.494732889714,6786,69.58843530319781,5290,54.60063831118713,2176,22.32003170696093,77.3584022892406,79.6405970758789,63.35300198276878,65.04159596746021,77.10054300308134,79.38356569957189,63.25795464954386,64.94952532942405,0.2578592861592597,257.0313763070118,0.0950473332249188,92.07063803616222,108.3687,75.96378803266283,113027.7018711279,79229.63352663054,266.00105,166.12485392954017,276839.00373391184,172682.87193265883,295.30224,140.9507891928376,304377.7091720729,144280.4405447065,3833.5181,1719.8348264906535,3957935.480506477,1754728.0646304286,1291.4265,561.71584724154,1329467.5316548117,568722.9907890843,2140.10646,883.3302009636008,2196650.472475438,890137.7906711465,0.37832,100000,0,492585,5137.622812323995,0,0.0,0,0.0,22346,232.44122739314545,0,0.0,27392,282.0980829804543,1923656,0,69062,0,0,4398,0,0,50,0.5214960679196479,0,0.0,0,0.0,0,0.0,0.06786,0.1793719602452949,0.3206601827291482,0.02176,0.3209563994374121,0.679043600562588,25.097932938685545,4.457153079374162,0.3198487712665406,0.2137996219281663,0.2304347826086956,0.2359168241965973,11.331357015265745,5.933432413799989,22.847783959193546,12684.02853898432,59.6103944790636,13.206695890938274,18.989887276625986,13.811050411970845,13.602760899528509,0.5468809073724008,0.7763041556145004,0.6725768321513003,0.5988515176374077,0.1177884615384615,0.7088122605363985,0.9283667621776504,0.8452088452088452,0.7055016181229773,0.1625,0.4938519447929737,0.7084398976982097,0.6178988326848249,0.5626373626373626,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022476688029644,0.0041442482090565,0.0064508930835471,0.0086811725167277,0.0106830656637527,0.0129962649731831,0.0151493540894086,0.0171655872303534,0.0192969380149678,0.0211717559983234,0.0234115081843029,0.0255889770560374,0.0275963355517213,0.0298211144600002,0.0318531724358247,0.0338337325514165,0.0357083747103608,0.0377141435811336,0.0397221010654869,0.041542687113756,0.0563478659744375,0.0705860227973211,0.0835392928954423,0.0965001627587076,0.1088335053826869,0.1243608704838368,0.1374417125900805,0.1500834742293255,0.1623684379069618,0.1733061749571183,0.1872072363107737,0.1995218830452372,0.2118721461187214,0.2225684081641577,0.2334081013326296,0.243907297961352,0.2535245828500044,0.2635224793648651,0.2721610183914045,0.2799019214684281,0.2875429682526823,0.2948341426314865,0.3017958255348385,0.3075483692979405,0.3143975779093661,0.3203711014607185,0.3257807408892676,0.3313198506454614,0.3363485347937809,0.3410762474204984,0.3419369636785579,0.3421241280432325,0.3424093224045257,0.3436889268497474,0.3437458124264848,0.3428632846087704,0.3427469282788837,0.3440067168233376,0.3451909731146866,0.3458187997495752,0.3472227438314493,0.3481465337903433,0.3495429231900809,0.3499786981187075,0.3507768770507624,0.352658894713507,0.35421006077553,0.3573517848718352,0.3589356548601116,0.3603195421485632,0.3634993835897904,0.3632065448363791,0.3658690573899867,0.3691430332922318,0.3686117467581998,0.3669160231660232,0.366166353971232,0.3705749948843871,0.3725868725868725,0.3703561853695902,0.0,2.1468995769675203,57.36542379132658,199.0565913513505,305.502388939185,fqhc7_80Compliance_baseline,54 -100000,95730,42512,400.5118562624047,6946,71.34649535150945,5453,56.366865141543926,2115,21.72777603677008,77.38965647392791,79.7577332897407,63.34469261111818,65.09449712730917,77.14107684345493,79.508300274846,63.25403247857395,65.00555166056992,0.2485796304729888,249.4330148947057,0.0906601325442366,88.94546673924708,110.0275,77.0549492467607,114935.23451373656,80491.95575761069,269.97705,168.125341564639,281398.31818656635,175003.55329012746,300.99235,143.6032828625094,310326.2195758906,146787.43085511087,3888.24478,1737.6086624823404,4023713.0471116686,1777148.628937994,1325.37416,575.2576551331421,1369785.009923744,586209.8455375979,2077.09066,855.1929989418012,2136181.489606184,866116.7681616568,0.38165,100000,0,500125,5224.328841533479,0,0.0,0,0.0,22733,236.81186670845085,0,0.0,27841,286.9424422855949,1917539,0,68797,0,0,4321,0,0,46,0.4387339392040112,0,0.0,1,0.010446046171524,0,0.0,0.06946,0.1819992139394733,0.3044917938381802,0.02115,0.3242763517203714,0.6757236482796286,25.245545008423186,4.459320944599963,0.3196405648267009,0.2257472950669356,0.2312488538419218,0.2233632862644416,11.241220827622753,5.773294689318897,22.237471535431137,12871.767717592616,61.3133334166777,14.428785226566214,19.712263941502663,13.87573515201655,13.296549096592267,0.5552906656886117,0.7562956945572705,0.6953528399311532,0.5939730372720063,0.1116584564860427,0.7207272727272728,0.8836633663366337,0.8555045871559633,0.7687074829931972,0.1452282157676348,0.4995095635115252,0.694074969770254,0.6419280795715379,0.5408479834539814,0.1033776867963152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802771250303,0.0045619050515495,0.006677559139021,0.008604750391125,0.010782548546899,0.0132377499898171,0.0157318950663227,0.0179255009646696,0.0200445661951099,0.0220588987952053,0.024221488755407,0.0263636083649019,0.0286198920585967,0.0307061803653438,0.0327478262663352,0.0348181066556428,0.036593700167747,0.0388633557771114,0.0410218568444245,0.042780191500224,0.0575676268231314,0.0723331658712216,0.0855575139535859,0.097794984009426,0.1105168776371308,0.1267318146244474,0.1396002630964757,0.1525364208106756,0.1645397947524107,0.1757608905475838,0.1898916812024894,0.2020856546337664,0.2145971275427552,0.2253856835153781,0.2362442099704034,0.2475167487957477,0.2577364424074136,0.2669618176506281,0.2763581534554689,0.2844542573759052,0.2928016463950423,0.3006731488406881,0.3075568477284546,0.3138749910229095,0.3200732983022463,0.3263966704017929,0.3318868490820869,0.3372755480950201,0.3423688024014077,0.347470032044942,0.3474329996771069,0.3467568905760026,0.3473866467714917,0.3476050887351807,0.3476242733420334,0.346791206775308,0.3459928276908008,0.3466075489602591,0.3474913318376504,0.348469768599154,0.3488350419384902,0.3494568639798489,0.3508007340061723,0.351246660730187,0.3515247259323089,0.3536274815507743,0.3547021899054165,0.3589187490177589,0.3606938043134081,0.3619040025514272,0.3636113657195233,0.3645587287953618,0.3675370769425782,0.3682176417096089,0.3666914913423943,0.3646740409508119,0.3631953918447779,0.3623420894325245,0.3578056768558952,0.3614595210946408,0.0,2.312461243281854,60.50099703103789,201.50641069164723,311.613293392737,fqhc7_80Compliance_baseline,55 -100000,95754,42945,404.56795538567576,7061,72.33118198717547,5485,56.624266349186456,2176,22.265388391085487,77.34687979821054,79.70573337568943,63.33382307926016,65.08101082284209,77.078174144268,79.44063474327719,63.23366276278206,64.98514872497725,0.2687056539425327,265.09863241224707,0.1001603164780959,95.86209786483836,110.02772,77.16140180969694,114906.197130146,80582.54094577642,270.35242,168.95297489507075,281685.18286442343,175791.09083628657,304.21813,145.91506173498246,313932.942749128,149403.87390713295,3955.60266,1792.7859886085018,4088285.815736157,1829627.006217659,1316.42911,579.2510508058273,1358448.1588236522,588644.5501950111,2145.34766,903.1445634228018,2198167.1366209243,906465.2832248925,0.38438,100000,0,500126,5223.008960461181,0,0.0,0,0.0,22828,237.7237504438457,0,0.0,28154,290.24374960837144,1913750,0,68692,0,0,4307,0,0,45,0.4699542577855755,0,0.0,1,0.0104434279507905,0,0.0,0.07061,0.1836984234351423,0.308171647075485,0.02176,0.3234660925726588,0.6765339074273412,25.22000920070049,4.483990235474976,0.327073837739289,0.2164083865086599,0.2224247948951686,0.2340929808568824,11.232918922458648,5.698111626172289,23.1312157443139,12937.518701615954,61.97767329998277,14.104919558711138,20.27285637708519,13.621023085462976,13.978874278723476,0.5434822242479489,0.7598989048020219,0.6833890746934225,0.578688524590164,0.1144859813084112,0.7321178120617111,0.9192399049881236,0.8635394456289979,0.7437722419928826,0.1686274509803921,0.4772111357477211,0.6723237597911227,0.6196226415094339,0.5292864749733759,0.1010689990281827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712050585707,0.0046444651766519,0.0070355329949238,0.0092990639958535,0.0118417839993489,0.014022117675811,0.0161076562340707,0.0180992241731318,0.0204861892007932,0.0225150509890649,0.0248521074053948,0.0270347971620136,0.0291849200962547,0.0311820757146536,0.0329948190806448,0.0349408176978342,0.0372591050773038,0.0391410342860106,0.0412681912681912,0.0430490471727585,0.0575752831271854,0.0714360433490941,0.0852634338138925,0.097756056545273,0.1102960550584416,0.126936489485364,0.1405403686548021,0.1532163742690058,0.1656763071145865,0.1764094653512014,0.1898675617811918,0.2023001426780232,0.2138650440073889,0.2252479573557041,0.2364473554073211,0.2480021251632612,0.2586139585726874,0.2682095745757565,0.2776068570131123,0.2864574977654527,0.2950662159659196,0.3030118578000444,0.3092553997726411,0.3153911656412286,0.3214493950731257,0.3273213010612365,0.3331831549965584,0.3386036099062544,0.3428926550746404,0.3477647369115126,0.3474755360531947,0.3471497597841498,0.3482663436892657,0.3489732258903041,0.3501351471767606,0.349215830423329,0.3477985429204941,0.3485722740050303,0.3493720269669073,0.3488505130680396,0.350116348896562,0.3513170673696311,0.353315683308119,0.3549894415240149,0.3554078549848942,0.3564715148332896,0.3587168598645702,0.3613208145657552,0.3634564410673264,0.3656662665066026,0.3713786443483859,0.37419113321568,0.3749841108427609,0.377372933251684,0.3776690809895588,0.3792325056433409,0.3837887626650291,0.3859397417503586,0.3922450126440011,0.3912698412698412,0.0,2.5071585201852016,62.419895872786086,205.49809798416356,305.9895816257333,fqhc7_80Compliance_baseline,56 -100000,95736,42367,398.8886103451157,6849,70.11991309434278,5323,54.838305339684126,2180,22.248683880671848,77.36211040614715,79.72413206451562,63.32787542470121,65.07563557406121,77.09217589510374,79.45570191858165,63.228101283997226,64.97931785872932,0.2699345110434166,268.4301459339622,0.0997741407039853,96.31771533189236,109.73974,76.80785810861465,114627.45466700091,80228.8147704256,265.48905,165.73462540000637,276597.5286203727,172400.1268070594,293.86466,141.01934063467175,301643.87482242833,143278.24512712524,3836.31506,1731.017336204157,3953170.541906911,1754314.8467948793,1287.14934,561.8912417218733,1325538.6375031336,568069.2929305581,2136.78472,892.8020689923083,2183814.573410211,893690.9229550897,0.38013,100000,0,498817,5210.338848500041,0,0.0,0,0.0,22352,232.71287707863289,0,0.0,27223,279.1113060917523,1917439,0,68835,0,0,4320,0,0,55,0.564051140636751,0,0.0,1,0.0104453914932731,0,0.0,0.06849,0.180175203219951,0.3182946415535114,0.0218,0.3290645879732739,0.670935412026726,25.02441243592114,4.471275733370456,0.3310163441668232,0.2134134886342288,0.2246853278226564,0.2308848393762915,11.066035935081551,5.705215732837199,23.128795334084227,12818.84536920701,60.00441012215729,13.43476659126614,19.825412271552025,13.398001785416383,13.346229473922724,0.5459327446928424,0.7755281690140845,0.6963677639046538,0.5468227424749164,0.1171684296175752,0.7159763313609467,0.9375,0.8662131519274376,0.676056338028169,0.139917695473251,0.4880382775119617,0.6928191489361702,0.639666919000757,0.506578947368421,0.1115618661257606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0046646520777982,0.0069130037559638,0.0090736356523771,0.0115456996083617,0.0135250743471707,0.0157648930312238,0.0178163031936616,0.019856647682539,0.0220570164659621,0.0241303634424481,0.0261827968034184,0.0283121746466122,0.0304919519383359,0.0324075507529079,0.0346652881881623,0.036997918672921,0.0388649686154484,0.0409442434825994,0.0427269413051403,0.0577667825342644,0.071562339795566,0.0848557944415312,0.0973262369572534,0.1083145214034051,0.1231582844148289,0.136308178702908,0.1488555307143617,0.1614471476958254,0.1726589390836273,0.1868537825262795,0.200227285026246,0.2120592299239498,0.2224774907829816,0.2339317754026,0.2455314103345486,0.2556092875730129,0.2649044628991965,0.274841989401659,0.2835328483876511,0.2916690789092804,0.2997683018161393,0.3069955241906837,0.3135024893527682,0.3197788175244577,0.3263714980076732,0.3319217179943368,0.3376462947161978,0.3425465194630177,0.3477526012781915,0.3483273330366894,0.3490320358250086,0.3480528266783182,0.3476576055523424,0.3472172672136996,0.3461791982831302,0.3454954669371711,0.3458177278401997,0.3465598524186936,0.3470898904471327,0.3477788598396883,0.3484974134186313,0.3501340145740849,0.3514649966450458,0.3525506890829064,0.352658894713507,0.3540811673506612,0.3560829927695693,0.3584078555146414,0.3612090480529256,0.3626742971340328,0.3630303671569146,0.3667693855732344,0.364516372986463,0.3709511808083636,0.3747036510194405,0.3800518529815464,0.3865461847389558,0.3900109170305676,0.3934807916181606,0.0,2.964001758181607,58.82538008202027,196.657679999328,304.0906553415829,fqhc7_80Compliance_baseline,57 -100000,95761,42443,398.7427031881455,6802,69.67345787951254,5302,54.79266089535406,2148,22.00269420745397,77.32840490063373,79.68797005110507,63.31625382636724,65.06435959812065,77.06248667370075,79.42377424208173,63.21856318532179,64.97006952913802,0.2659182269329818,264.1958090233345,0.0976906410454461,94.29006898263026,109.04344,76.40115038875089,113870.40653293094,79783.1584765728,266.62564,166.89448306364824,277874.12412151083,173728.22241167934,293.53297,141.32053703316126,302849.69872912776,144707.47226639814,3850.00028,1737.347166731051,3979257.766731759,1773084.989433121,1280.45901,565.4619275893757,1321224.1100239137,574576.6414191324,2113.26074,880.3466925262611,2166861.9375319807,886316.3703004273,0.37999,100000,0,495652,5175.927569678679,0,0.0,0,0.0,22431,233.65461931266384,0,0.0,27278,281.21051367466924,1918400,0,68885,0,0,4318,0,0,40,0.417706582011466,0,0.0,0,0.0,0,0.0,0.06802,0.1790047106502802,0.3157894736842105,0.02148,0.3284498395423468,0.6715501604576531,24.89326960060506,4.596993699578344,0.3211995473406261,0.2086005281026028,0.2365145228215767,0.2336854017351942,11.3179116923292,5.693081271114887,22.88555641374577,12795.213713465391,59.70685278968261,13.04265493829502,19.23641033985505,13.78813271413018,13.63965479740238,0.5522444360618635,0.7658227848101266,0.7058132706987669,0.5797448165869219,0.1226795803066989,0.7108433734939759,0.9058171745152356,0.8691588785046729,0.7330960854092526,0.1511627906976744,0.4992450931051836,0.697986577181208,0.6509803921568628,0.5354573484069887,0.1151885830784913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205617988913,0.0048378263250775,0.0070970231084758,0.0095530396959287,0.0117291611564362,0.0139036016949152,0.0161119269048784,0.0183464695552742,0.0205688114661923,0.0226421274592093,0.024611757470145,0.0266648869540218,0.0287436111025411,0.0309928208720014,0.0332494014694955,0.0354027123129082,0.0375339005858849,0.0395544677673608,0.0415562552607787,0.0435869395406967,0.0577846436474468,0.072450580483213,0.0854593307957679,0.0977158294177625,0.1102446837657274,0.1254148785489292,0.1384334768499862,0.1499286915430298,0.1622695520283694,0.1732901537735646,0.1866033346258239,0.1998961353702341,0.2115627311893468,0.2226207922308012,0.2334617501375894,0.2446140383912451,0.2554098543608057,0.2651779483600837,0.2740340399441373,0.2831473035227246,0.2911256162766474,0.2982989775146821,0.3054765965510707,0.3116831683168317,0.3182796483420275,0.3234949492457787,0.3294861501405058,0.3350416236406981,0.3396365996106424,0.3436628652227346,0.344476822621553,0.3445833275911966,0.3450997557290711,0.3456597222222222,0.3449970220369267,0.3439126629508499,0.3431923540991935,0.3448656485279823,0.3468426013195099,0.3481299618286411,0.349073969720876,0.35014654626109,0.3512879089556305,0.3501233460417134,0.350213515404473,0.3517836142689141,0.3518830964568618,0.3536247401902123,0.3560292155347987,0.3597502783521552,0.3627039839547816,0.3631255301102629,0.3671100514493663,0.3708428246013667,0.3728222996515679,0.3671754821914566,0.3654287024300779,0.3646194654152214,0.3646470261256253,0.3660258925068654,0.0,2.196667433675884,58.43476246671239,198.227016352236,303.04014156724213,fqhc7_80Compliance_baseline,58 -100000,95732,42147,396.5758576024736,6846,70.25863869970334,5354,55.36288806250784,2181,22.4585300630928,77.31464774318667,79.68219567249734,63.30648041847581,65.05663816864076,77.04316223865173,79.40888054055968,63.20726233377061,64.9591446231501,0.2714855045349367,273.31513193766455,0.0992180847051997,97.49354549066425,109.0892,76.4292616876571,113952.70129110431,79836.69168894112,266.99177,166.64387256353314,278317.36514436133,173499.8432368266,295.93796,141.5850621524142,305768.56223624287,145293.34812480726,3840.65385,1733.2568448078807,3974228.345798688,1773214.361034499,1280.36304,563.8277374467489,1323045.449797351,574779.8361076685,2137.39952,888.2499798074031,2201894.455354532,900963.3121971608,0.37771,100000,0,495860,5179.668240504742,0,0.0,0,0.0,22468,234.0805582250449,0,0.0,27393,282.81034554798816,1917396,0,68798,0,0,4381,0,0,55,0.5745205364977228,0,0.0,0,0.0,0,0.0,0.06846,0.1812501654708639,0.3185801928133216,0.02181,0.3193615544760583,0.6806384455239417,25.401978994103278,4.503143661941807,0.3389988793425476,0.2104968248038849,0.2248785954426597,0.2256257004109077,11.273097593865607,5.781433087417338,23.092703736400374,12757.064399801837,60.28523057665151,13.184637239596317,20.49079865448674,13.369018322305102,13.240776360263338,0.5509899140829286,0.7373558118899733,0.715702479338843,0.5656146179401993,0.1150662251655629,0.7185238784370478,0.8779840848806366,0.8760683760683761,0.7700729927007299,0.155893536121673,0.49269889224572,0.6666666666666666,0.6599851521900519,0.5053763440860215,0.1037037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894190345945,0.0047145420810901,0.0070139466899449,0.0095010669647393,0.0117808637265374,0.0136313623212029,0.015619102029157,0.0178064568826448,0.0198720176640157,0.0218971377093485,0.0238175796909763,0.0261315097749301,0.0282766565862288,0.0301693937270741,0.0322563996696944,0.034187238969524,0.0363884890596361,0.0384463722397476,0.0406671449813353,0.0428912248533655,0.0578316523627555,0.0720094617083407,0.0856771188485465,0.0978841542926849,0.1097332067910998,0.125,0.1380657213212193,0.1504519948465134,0.1623695912433726,0.1738117977829525,0.1872533160789388,0.2009253640776699,0.2130459889086214,0.2240925828511309,0.2345197142101085,0.2452145141232901,0.2548098434004474,0.2640543223244901,0.2725514510972821,0.281340823195598,0.2896626111968082,0.2973673105776444,0.3045937485177631,0.3104094128947052,0.3171983508264111,0.3228863333497853,0.3280539870541247,0.3338170154269131,0.3392105842298082,0.3442158026645561,0.3442861375205365,0.3437826828865525,0.3440536202089611,0.3439446266780342,0.3445198143520171,0.3438070264219227,0.3429029136993037,0.3442056413125761,0.3460932415305039,0.3472100470508256,0.3476088508208422,0.3475617002733431,0.3487996645350665,0.3495467263570229,0.3491952582883577,0.3498811793278145,0.350346565847511,0.3515731010760832,0.3542150855694063,0.3543652534598971,0.3569857993586807,0.3593290956679664,0.3607288481141692,0.3629766867376872,0.366081648225868,0.3727447678614385,0.3762437810945274,0.3809126901437799,0.3832772166105499,0.391287284144427,0.0,2.1463213951630147,61.04861586973876,192.72392499715951,307.6431867826386,fqhc7_80Compliance_baseline,59 -100000,95809,42542,400.3799225542486,6964,71.51728960744815,5438,56.12207621413437,2200,22.54485486749679,77.3504688262772,79.68254329871677,63.33176974345843,65.05992440221337,77.07723232956552,79.40991962091606,63.23070652143424,64.96200888921751,0.2732364967116751,272.6236778007092,0.1010632220241944,97.9155129958542,110.08228,77.09478982181358,114897.64009644189,80467.16886911832,266.94497,165.98086508931772,278026.6572033943,172646.0510905215,294.96675,140.98403789079822,303404.6175202747,143805.908840866,3899.45966,1748.810315567064,4026598.0544625246,1781872.251633002,1332.68766,580.405114144606,1373655.961339749,588466.1087628582,2159.65206,900.5028659622992,2214693.0664133853,906770.7017813732,0.38173,100000,0,500374,5222.620004383722,0,0.0,0,0.0,22489,234.08030560803263,0,0.0,27328,280.8295671596614,1917073,0,68856,0,0,4289,0,0,51,0.5323090732603409,0,0.0,0,0.0,0,0.0,0.06964,0.1824326094359888,0.3159103963239517,0.022,0.3210231158528245,0.6789768841471755,25.090207475854186,4.493894501164494,0.3265906583302684,0.2184626700993012,0.2245310776020596,0.2304155939683707,10.86506776785079,5.471101369304136,23.32864542343337,12879.970215004963,61.33688688399027,14.073570500646634,19.850726908961107,13.687118097532707,13.725471376849828,0.5492828245678558,0.781986531986532,0.6835585585585585,0.5634725634725635,0.1245011971268954,0.7215951843491347,0.9185750636132316,0.8610421836228288,0.7570422535211268,0.144578313253012,0.4935507422730591,0.7144654088050314,0.6314639475600874,0.5048025613660619,0.1195219123505976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0045831094166675,0.0066477215061402,0.0091340438718592,0.0113818988140041,0.0136175673748752,0.015634082912651,0.0178600604525774,0.0199685084454623,0.0219069262739798,0.0237379900126124,0.025907480618165,0.0279923077714132,0.0301962965251601,0.0321782178217821,0.034552593511056,0.036645583379054,0.0388441152980469,0.04087337878284,0.0428504502628702,0.0575765479109071,0.0715794316304552,0.0846974492255454,0.097288039423774,0.1100317145897649,0.1260991798427327,0.1390956713537358,0.1513681433252479,0.1630827051613316,0.1741311127543967,0.1873412544663997,0.2001059562552032,0.212409282517057,0.2231647991254441,0.2342197625675274,0.2453929944704852,0.2557711198428291,0.2658195079125678,0.2757884455952665,0.2842821626204415,0.2923125007234884,0.3002702607841072,0.3073035037878788,0.3144110561075885,0.321021725651344,0.3272004837177161,0.3326522938079719,0.3371188946670745,0.3435024439575257,0.3484966629220908,0.3492584045237998,0.3491936485162857,0.3497232263895165,0.3488607888295021,0.3489912901064542,0.3489025326170376,0.3487884658134587,0.3494729907773386,0.3505036316294367,0.3504282693617174,0.3517788046132462,0.3538245141351506,0.3555760988318346,0.3564247565190072,0.3568529880670564,0.3584327889447236,0.3584549895723223,0.3632322340626773,0.3632375136007862,0.3691101560012735,0.3715184391667046,0.3711931969173532,0.3731409125283589,0.3743816119948245,0.3810375670840787,0.3804514832762085,0.3816653934300993,0.3797417271993543,0.3745573413238899,0.3735124760076775,0.0,2.534715029525689,58.27279061907813,209.68734953414327,309.2986988195831,fqhc7_80Compliance_baseline,60 -100000,95725,42723,401.5878819535127,6802,69.95037868895274,5354,55.4400626795508,2122,21.89605641159572,77.30949638025908,79.66936004126633,63.31695901961641,65.05942942448793,77.05385229170054,79.41124495729953,63.224098528829565,64.96744563650643,0.2556440885585402,258.11508396679983,0.0928604907868475,91.98378798150486,108.59112,76.19533364748325,113440.71036824236,79598.15476362836,269.32294,168.08619579075688,280869.1250979368,175111.2309122558,301.1117,144.14476666352124,311174.5729955602,147984.3812523107,3861.35358,1720.7060308098776,4002351.736745887,1766104.6234629184,1304.75597,564.9666359983731,1350628.289370593,577800.570382213,2096.04192,862.5970253999603,2164479.101593105,880133.5424934765,0.38232,100000,0,493596,5156.395925829199,0,0.0,0,0.0,22569,235.24680073126143,0,0.0,27845,287.4693131365892,1918880,0,68863,0,0,4293,0,0,60,0.6267955079655263,0,0.0,0,0.0,0,0.0,0.06802,0.1779137894957104,0.311967068509262,0.02122,0.3208072372999304,0.6791927627000696,25.4372588640883,4.524835337404955,0.3311542771759432,0.213111692192753,0.2213298468434815,0.2344041837878221,10.92385497171009,5.388133259074501,22.46248258633528,12923.255433808476,60.404491405344544,13.406916770510623,20.108960809584545,13.217606423753496,13.671007401495888,0.5502428091146806,0.7852760736196319,0.6813310772701635,0.6033755274261603,0.1011952191235059,0.7383320581484315,0.9496021220159152,0.8444444444444444,0.7665369649805448,0.1345291479820627,0.4894983938720039,0.7041884816753927,0.6258503401360545,0.5581896551724138,0.0939922480620155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090712064897,0.0048049631011272,0.0072132943754565,0.0092427074022913,0.0116708178722106,0.0138935540016489,0.01618508892626,0.0185470617656966,0.0207881934507992,0.022842873371473,0.0250617575005893,0.0273220116228925,0.029275666337611,0.0313484789190747,0.0335385662572321,0.0355626272123322,0.0377653353756352,0.03979299759396,0.0418113034983059,0.0438845024061998,0.0586325000522105,0.0727398321227471,0.0864316653906258,0.0992818312776673,0.1116652783196431,0.1279808800668351,0.1415718893226956,0.1539468642227615,0.165472159618897,0.1767897157683689,0.1899991382281971,0.2028925888236949,0.2151119139073568,0.2268330050339242,0.2364054741431512,0.2467411545623836,0.2571096664656077,0.2665615319628274,0.2759474688721258,0.2845778215915083,0.2924606941903813,0.2997133329433101,0.3075119594562592,0.3143384999280196,0.3210704779961352,0.3268576080521018,0.3320942690146309,0.3378101409239621,0.3429527069072806,0.3475955626661025,0.3478595231991797,0.3487573915560518,0.3488125829497642,0.3489260695883749,0.349008979494587,0.3486961329360813,0.3476056517109299,0.3482142857142857,0.3490410676913576,0.350162369700558,0.3499887039686723,0.3511347136861785,0.3526436684719617,0.3537918315940986,0.3542963734586594,0.3555701179554391,0.3559044250841024,0.3562913069601239,0.3577224299724829,0.3612448760297688,0.3633953467111578,0.3634810464495462,0.3655430236978836,0.3667459160978603,0.370892907868573,0.3721678988790842,0.371996303142329,0.3657683604196667,0.36341059602649,0.3686033089649865,0.0,1.9009949742770704,57.9355093607094,205.93789744701905,305.7901645333056,fqhc7_80Compliance_baseline,61 -100000,95734,42606,400.5055675099756,6975,71.67777383165856,5433,56.16604341195396,2222,22.865439655712706,77.40440741590693,79.76030457478508,63.3594678928421,65.09884283982643,77.13293987999107,79.48816827907338,63.2600895748388,65.00161052923134,0.2714675359158605,272.1362957117037,0.0993783180033034,97.2323105950892,110.39336,77.33610871048519,115312.5953161886,80782.28080983265,270.27183,168.02982758673278,281726.711513151,174928.70619292284,298.82932,142.56697432202327,308137.28664842166,145885.32463357886,3945.0192,1765.194324122882,4081851.379865043,1804891.3908568355,1293.05789,565.4112895902009,1336729.740739967,576664.9203179659,2189.38106,907.717097213672,2254896.400442894,920630.9713628112,0.38161,100000,0,501788,5241.4816052813,0,0.0,0,0.0,22714,236.64528798545973,0,0.0,27689,285.2382643574905,1916422,0,68681,0,0,4452,0,0,56,0.5849541437733721,0,0.0,0,0.0,0,0.0,0.06975,0.1827782290820471,0.3185663082437276,0.02222,0.327993483573174,0.672006516426826,25.03672478106891,4.495533946452055,0.3219215902816124,0.2125897294312534,0.2300754647524388,0.2354132155346953,11.108103079307808,5.6075116984996445,23.519327171148927,12853.39814302077,61.09305188453936,13.621382052551146,19.582277014833195,13.772511910983086,14.116880906171945,0.5481317872262101,0.7844155844155845,0.6792452830188679,0.5976,0.1071149335418295,0.7138576779026217,0.9187817258883249,0.8498789346246973,0.7435897435897436,0.1450980392156863,0.4941434846266471,0.7148488830486203,0.6264970059880239,0.5568065506653019,0.09765625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021667156033897,0.0043577400557385,0.0065433075658895,0.0088457827654496,0.011052026882759,0.0131718241042345,0.0152254777070063,0.0177545585339224,0.0199241859181984,0.0220723670746183,0.0241570154760684,0.0262028902208719,0.0287550118227613,0.0310028015820698,0.0333687588348793,0.0354362860125908,0.0376852417592659,0.0399489615967136,0.0418203926377817,0.043725067441594,0.058674907602681,0.0718389301074706,0.0851409750776202,0.0982989549822326,0.1105325842933482,0.1262146187762352,0.1399868457344111,0.1524761539771759,0.1638304009229881,0.1750034848436109,0.1888393530184575,0.2017528673447305,0.2141334377515282,0.2252329090670515,0.2360635898564277,0.2464673311184939,0.2565779196143631,0.2665167275794208,0.2746928635440654,0.2838023492775857,0.2919821079762826,0.2991078726733459,0.3062651313847062,0.3122997848434138,0.3180771654306626,0.3239608050456741,0.3301763022753114,0.3362160926546784,0.3421304314110683,0.3466222532355535,0.3461383478844862,0.3460835885673474,0.3461165253343458,0.3465100845428052,0.3465610819467924,0.3454567701084379,0.3450284068429631,0.3459033871893709,0.3468280111279889,0.3484643099204509,0.3496616238306806,0.351192362541594,0.3519540181661807,0.3530675739194664,0.3554383683690915,0.3562821819702553,0.3557289738258665,0.3588444472417157,0.3606591939281071,0.3642468311677991,0.3669490753393459,0.3698010849909584,0.372511967750063,0.3734307235790915,0.3711921775103422,0.3695368944687907,0.3695182211241507,0.3747445852063751,0.3741248949873985,0.3724631914046956,0.0,2.2329218234063988,58.802619180007056,204.57730599991157,312.09541429690427,fqhc7_80Compliance_baseline,62 -100000,95750,42487,399.4360313315927,6882,70.68407310704961,5406,55.89556135770235,2185,22.44386422976501,77.33232137485312,79.69978529756439,63.31916690730778,65.07202957229637,77.06417573581034,79.43276874142599,63.22042244272453,64.9767007667899,0.2681456390427854,267.01655613840103,0.0987444645832482,95.32880550646894,109.44758,76.67681413556097,114305.56657963444,80080.22364027257,268.00965,167.04986459055414,279326.3916449086,173885.3624966623,294.56745,141.43285887881552,304837.00261096604,145419.93591352575,3904.70857,1757.0992799110943,4037825.253263708,1794891.268836652,1299.73273,565.7009742720918,1342823.6762402088,576234.9213259635,2151.75122,892.2572693310286,2211114.1096605742,899386.5841443351,0.38223,100000,0,497489,5195.707571801567,0,0.0,0,0.0,22526,234.66318537859007,0,0.0,27343,282.7049608355092,1918169,0,68853,0,0,4355,0,0,51,0.5326370757180157,0,0.0,0,0.0,0,0.0,0.06882,0.1800486618004866,0.3174949142691078,0.02185,0.3186692328842452,0.6813307671157547,25.212143776408958,4.511574052655005,0.3222345541990381,0.2101368849426563,0.235479097299297,0.2321494635590085,11.147319398939732,5.614621106473376,23.167692670147076,12828.287750401236,61.06434017130437,13.486543747008795,19.57122821366642,14.294150791106944,13.712417419522202,0.5477247502774695,0.7878521126760564,0.6808266360505166,0.5781618224666143,0.1147410358565737,0.7229977957384276,0.9093333333333332,0.8901601830663616,0.7106109324758842,0.1386554621848739,0.4887515451174289,0.7279894875164258,0.610727969348659,0.5353430353430353,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.004767266125024,0.0072902282511575,0.009533295389869,0.0117603971677382,0.0138344148898238,0.01611324141307,0.0182748164861305,0.0200909973927713,0.0223894348894348,0.0242857289306693,0.0265897377984929,0.0287509383129903,0.031052382227532,0.0330774627543229,0.0351620638333057,0.037380661461677,0.0393206552750889,0.0412799700689038,0.0432146986220041,0.0574811041048983,0.0713291688901445,0.0849258459021207,0.0973670928667563,0.1091921300689568,0.1248175491295242,0.137259271048862,0.1506333155934007,0.1630159662519357,0.1738365858889127,0.1870381939208547,0.2006493155132298,0.2128261484560311,0.2236394464803369,0.2344104245999427,0.245354065607903,0.2552844802571371,0.2651924375422012,0.2739220737949585,0.2824924116602714,0.2899022047335223,0.2983946456987738,0.3053369157385159,0.3122714903921075,0.3183093800493239,0.3253666954270923,0.3319357180405016,0.3364113913585428,0.3412855681185323,0.3455869740192909,0.3456261528725882,0.3462147390448394,0.3465766552977986,0.3462950649050276,0.3471697551979535,0.346378477810991,0.3465902778879878,0.3479940173890176,0.3491268837781499,0.3500724287783679,0.3507191877409044,0.3507612298775283,0.3522961653407416,0.3537963732782059,0.355398675112422,0.3551553542915477,0.3575859801595243,0.3600746859077819,0.3634119679819457,0.3625480461242793,0.3639111518204717,0.3660944206008584,0.3666666666666666,0.370125374971156,0.3717223165440483,0.3694569599241166,0.3685492464606485,0.3662767244856797,0.3779851770518803,0.3676470588235294,0.0,2.1228642158935767,60.079305736946615,206.03999286049225,304.45150171523755,fqhc7_80Compliance_baseline,63 -100000,95723,42685,401.7216342989668,6964,71.35171275451042,5383,55.61881679429187,2193,22.50242888334047,77.41699606751023,79.77080883218858,63.36600846061516,65.10083647110241,77.14831920250718,79.50265709305643,63.26707176261254,65.00491325940497,0.2686768650030444,268.1517391321506,0.0989366980026247,95.92321169743911,110.01276,77.08451296899293,114928.2408616529,80528.72660592849,269.76861,168.53488080850653,281209.99132914766,175453.0372099773,297.50851,142.45389774749378,307120.1487625753,146062.13110185534,3852.6339,1740.4476817259283,3981069.993627446,1774509.168878877,1318.55377,579.7075826590786,1361583.0991506744,589724.5203964341,2160.3195,897.1027319822157,2218111.801761332,903827.5825052306,0.38181,100000,0,500058,5224.01094825695,0,0.0,0,0.0,22744,236.95454592940047,0,0.0,27576,284.38306363152014,1915128,0,68717,0,0,4249,0,0,54,0.5641277435934937,0,0.0,0,0.0,0,0.0,0.06964,0.1823943846415756,0.3149052268811028,0.02193,0.3308763308763309,0.6691236691236692,24.920768213401804,4.55859289651456,0.330856399777076,0.2140070592606353,0.2219951699795653,0.2331413709827234,11.28175011106017,5.601672404154642,23.1014722887146,12832.548985992757,60.53446211311209,13.397127895921454,20.05994239394568,13.336166913973749,13.741224909271212,0.5517369496563255,0.7673611111111112,0.6895002807411567,0.5899581589958159,0.1219123505976095,0.7020958083832335,0.9252873563218392,0.8511627906976744,0.7266187050359713,0.1714285714285714,0.5021003212255992,0.6990049751243781,0.6380458919319023,0.5485278080697928,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022976173606753,0.004548724027191,0.0067449691658552,0.0089663786187918,0.0112249877989263,0.0134876524359209,0.0157989154808986,0.0179832618901816,0.0201524720501972,0.0223536272212957,0.024326761487068,0.0264270613107822,0.0284956516375747,0.0305651672433679,0.0326194602624412,0.0346488100773992,0.0370849682676081,0.0392146694600593,0.0413327928995312,0.0433065944369205,0.0579728304566195,0.071800774301559,0.0854151147296744,0.0981099529854749,0.1104243357557986,0.1257602200010577,0.1384442393575831,0.1511703407240252,0.1627546714244506,0.173691096669026,0.1877476740179186,0.2004046611774125,0.2127981043066153,0.2236374957669241,0.2338164675889806,0.2450537777187624,0.2560783920270225,0.2647842361431157,0.2742807896855546,0.2832274678111588,0.290814910739062,0.2985871711871735,0.3056360175453116,0.3126070141408336,0.3188829690401349,0.3245446596800611,0.3305831614475905,0.3357357128330283,0.341356787169372,0.3466311472166906,0.3462304524533685,0.3468214452727423,0.3474212135300001,0.3472021295063943,0.3474672060442011,0.3470700880888548,0.3467360528938169,0.3473651438683883,0.349051296476244,0.3505154639175257,0.3516877873724346,0.351474905909476,0.3527036920824181,0.3544230426252898,0.3549161246970169,0.3553749153248918,0.3557536236011048,0.3586918996955717,0.3594122597839809,0.3602014114661803,0.3615929525020434,0.3633565097393981,0.363739234299365,0.3691838291380625,0.3725950258094791,0.3720546654099905,0.3753232922561996,0.3771806697413274,0.3730936819172113,0.3703843255463451,0.0,2.351719785342388,58.57144848594205,205.57199027040036,303.16844813791965,fqhc7_80Compliance_baseline,64 -100000,95685,42503,400.3239797251398,6905,70.72163871035167,5454,56.2784135444427,2229,22.9085018550452,77.3508434030137,79.74139230073176,63.31502979323547,65.0826511323426,77.0823695203579,79.47195547483639,63.21649737486196,64.98614090940333,0.2684738826557975,269.4368258953688,0.0985324183735087,96.5102229392727,109.33164,76.59724209705367,114262.0473428437,80051.462713125,266.4444,165.87003252502245,277777.1751058159,172667.31726500753,298.16418,143.11947828793393,306461.942833255,145681.7769546889,3944.82713,1781.0286640939166,4076856.7487066938,1815479.870506264,1341.0596,586.4661971182021,1381829.471704029,593208.7021610959,2195.07216,906.9993461693676,2258045.6915922035,918800.7133880698,0.3818,100000,0,496962,5193.729424674714,0,0.0,0,0.0,22440,233.78795004441656,0,0.0,27699,284.3078852484716,1918517,0,68832,0,0,4230,0,0,40,0.418038355019073,0,0.0,0,0.0,0,0.0,0.06905,0.180853850183342,0.3228095582910934,0.02229,0.3140461792193513,0.6859538207806487,24.944396038036544,4.515990684624656,0.3263659699303263,0.2125045837917125,0.2293729372937293,0.2317565089842317,11.108846219731294,5.531307703473441,23.526185749550493,12841.205843649012,61.54325567946204,13.7080100005502,20.10682970432207,13.835263430923332,13.89315254366644,0.552988632196553,0.7808455565142364,0.6825842696629213,0.5899280575539568,0.125,0.708029197080292,0.926208651399491,0.8485523385300668,0.7137546468401487,0.1274131274131274,0.5009794319294809,0.706266318537859,0.6265965439519159,0.5560081466395111,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0045532445670361,0.0067608035813986,0.0091165948451093,0.011332885714867,0.0133452863633585,0.0154750124963021,0.0176379271605694,0.0197788936500956,0.0219475225824952,0.0241513690903497,0.0261395616359565,0.0281520643475756,0.0304450855141149,0.0327767342979215,0.0347551016188723,0.0366329966329966,0.0391002885553548,0.0411292335857535,0.0430295828382012,0.0574472529768122,0.0710957541489974,0.0846139312255951,0.0979633058407675,0.1099108602774407,0.1252975592208974,0.1392589133134493,0.151378003066962,0.1632122967729522,0.1738654533357657,0.1879702490029104,0.200803343293924,0.212742804287502,0.2237154582763338,0.2343271750379847,0.245650414167064,0.256395368312918,0.2658250655975855,0.2752360285847374,0.2827986332469557,0.290624819039898,0.2980313162425193,0.3054545023640522,0.3119367342285584,0.3185367158806217,0.3246969454070119,0.330296013517742,0.3357221960564671,0.3413866770246649,0.3460558116192765,0.3464395992610871,0.3468243913187176,0.3470848479724969,0.346925500852823,0.34770021082638,0.3470621546749927,0.3468289517418211,0.3472817079374456,0.3489858341450078,0.3503141510781093,0.3517053973013493,0.3535451260686714,0.355204282189604,0.3559102578412769,0.3569763809798409,0.3589810377161909,0.3594344443813526,0.3621825023518344,0.3629772329246935,0.3664655070405869,0.3683972298918209,0.3706041478809738,0.3731305768505718,0.3792840241202961,0.3816930618401206,0.3780749940291378,0.3747313478661345,0.3771118262268704,0.3778385772913816,0.3824329576369996,0.0,2.802738264982385,59.63064684331038,211.60004396086543,302.2098264564239,fqhc7_80Compliance_baseline,65 -100000,95713,42167,396.8426441549215,6796,69.68750326496924,5287,54.53804603345419,2162,22.086863853395048,77.26691653433518,79.62886698551512,63.2951211478972,65.03997524536065,77.00437577685514,79.37003863861754,63.197303209521614,64.94685722722576,0.2625407574800391,258.8283468975732,0.0978179383755843,93.11801813488783,110.43098,77.40213671351246,115377.20058926164,80868.99032891296,268.73428,168.2968109919514,280070.5651269943,175134.48642499073,297.1308,142.39910480864663,306871.36543625215,145845.3588507773,3798.72184,1731.7593672013545,3919132.239089779,1760166.13037017,1291.32503,573.4206768867821,1327911.6003050788,578055.5978394062,2119.4345,890.6166738312965,2167994.23275835,890598.1019350272,0.37834,100000,0,501959,5244.418208602802,0,0.0,0,0.0,22707,236.5195950393364,0,0.0,27478,283.482912457033,1908184,0,68505,0,0,4357,0,0,50,0.5223950769487948,0,0.0,0,0.0,0,0.0,0.06796,0.1796267907173442,0.3181283107710418,0.02162,0.3304469273743017,0.6695530726256983,25.00036636783392,4.548020300316548,0.326082844713448,0.2099489313410251,0.2369964062795536,0.2269718176659731,11.504375075729037,6.052510007842621,23.10636511005457,12761.116100473471,60.24938994566454,13.207932727271013,19.663238069427347,13.917867157621178,13.460351991345,0.5627009646302251,0.8018018018018018,0.703016241299304,0.5857940941739824,0.1158333333333333,0.6981684981684981,0.90625,0.8223234624145785,0.7437722419928826,0.1340996168582375,0.5155532891381948,0.7465564738292011,0.6622568093385214,0.5401234567901234,0.1107561235356762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0047856107230125,0.0069509274668182,0.00914253207505,0.0115839147326241,0.0137761803427244,0.0159641164177582,0.0180888312695868,0.0200464103533933,0.022324353095316,0.0243252385882545,0.0264054864276621,0.0284333384749858,0.0304157053394858,0.0323742120521206,0.0344314317314947,0.036565286277921,0.0385940158525957,0.040715562762463,0.0428336250729349,0.057985694147131,0.0722353064321976,0.0846783502990869,0.0970464135021097,0.1098461668319652,0.1247473197371066,0.1385343893996984,0.1513159997017564,0.1629309607323124,0.1736035813588981,0.1879784366576819,0.200788894788743,0.2125446545264442,0.2240829782806322,0.2344195990698597,0.2457507632528448,0.2558045899879211,0.2654082380120584,0.2742281863942641,0.281679966978536,0.2888199476767069,0.2970498712245376,0.3040661384121569,0.3100813320217845,0.3164512324136337,0.3221897251736946,0.3277738764044944,0.3329763771497048,0.3380373115920391,0.3438431081743183,0.3444587193184123,0.3445634893205225,0.344305445488509,0.344416571204849,0.3438292413710808,0.343638013503745,0.3429807952393833,0.3436767570065692,0.3448429877001305,0.3453566621803499,0.3463196942022709,0.347425959053866,0.3482574462246427,0.3496174617461746,0.3498352234176601,0.3510618748851495,0.3530256881788403,0.3544512931308382,0.3549882336162019,0.3562186640789261,0.3591685912240184,0.3641652750094273,0.3647822765469824,0.3665412090022275,0.3668812724862715,0.3687031082529475,0.3668866042657664,0.3686449260684626,0.3717205191935929,0.3786821705426356,0.0,2.694217829957032,59.74963491487001,202.7365343007086,296.190805687641,fqhc7_80Compliance_baseline,66 -100000,95703,42360,398.7544800058514,6899,70.83372517057981,5417,56.02750175020637,2173,22.319049559574932,77.288290147924,79.65647544161168,63.294707477804174,65.04328211973004,77.02070086033225,79.39092826716178,63.19538725600299,64.9481511494941,0.2675892875917469,265.5471744498925,0.0993202218011859,95.1309702359424,108.63336,76.13987522758812,113510.69454458063,79558.29434764652,268.25305,167.31432879601647,279733.6551623251,174263.9241452456,298.1452,142.69162646933734,308363.42643386306,146682.5133447016,3940.81084,1763.6253533147622,4077380.8553545866,1802565.162908913,1319.64915,574.3500533713509,1365364.0220264776,586669.4560677898,2144.27832,890.6992209922857,2203482.5867527667,897469.2190026338,0.37894,100000,0,493788,5159.577024753665,0,0.0,0,0.0,22549,235.0083069496254,0,0.0,27607,285.3202093978245,1916661,0,68803,0,0,4329,0,0,40,0.4075107363405535,0,0.0,0,0.0,0,0.0,0.06899,0.182060484509421,0.3149731845194956,0.02173,0.3195577055977885,0.6804422944022115,25.207488668991815,4.510218344756019,0.3285951633745615,0.2065719032674912,0.2257707218017352,0.2390622115562119,11.15172569793316,5.665909693407514,23.020606295385758,12820.61694664847,61.03454577088169,13.201958304519172,20.117574728919905,13.541844145577569,14.17316859186504,0.5432896437142329,0.7587131367292225,0.6943820224719102,0.5936222403924775,0.1019305019305019,0.7116382505559674,0.8943089430894309,0.8434782608695652,0.75,0.1532258064516129,0.4874631268436578,0.692,0.6424242424242425,0.5488958990536278,0.0897803247373447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774577421282,0.0044099309617704,0.0067378333400982,0.0091936040959791,0.0112989179074119,0.0134407233552933,0.0157215391203278,0.0180166385954167,0.0202804922925951,0.0224532820271404,0.0245969684236417,0.0268525266626292,0.0290047295907875,0.0309687120229046,0.0328220574128131,0.0348804762347688,0.0370067407353717,0.0389289606143946,0.0408592084048473,0.0429018136335209,0.0572297022049991,0.0715796527821406,0.084912096562582,0.0981487912943727,0.1109152327668109,0.126144821963641,0.1389962619998301,0.1511816225200843,0.1635762864108815,0.1740941990077532,0.1886155538539521,0.2005850804485617,0.2123436887281599,0.2236213919670623,0.2337596527754827,0.2446370506830616,0.2555439997316067,0.2649486861396188,0.274156843111374,0.2823010476015438,0.2901579051177037,0.2976304985337243,0.3050135308360632,0.3123340023314785,0.3180671808180123,0.3240573618494251,0.3306656280624168,0.3358010824058001,0.3404769640652414,0.3456914358349663,0.3465250313820238,0.3468643857178361,0.3472737047621742,0.3477958034651885,0.3482433360198203,0.3469660641829583,0.3459907570632236,0.3467966344491462,0.3473920724491021,0.3487859510796524,0.3497120704580526,0.3498641708472963,0.350716585643033,0.3514403476546749,0.3513429031715117,0.3532522337127823,0.3529579553882138,0.3551357658708884,0.3579842008745944,0.3588228247414447,0.3621338720044073,0.3662152759192849,0.3701619023526435,0.3717369670060476,0.3722128536631066,0.3734498641785756,0.374791192103265,0.3772141706924315,0.3800597663678348,0.3916666666666666,0.0,2.157681377880806,59.633016520253896,203.6138650100815,309.2707971830837,fqhc7_80Compliance_baseline,67 -100000,95840,42185,396.1393989983305,6770,69.49081803005008,5276,54.58055091819699,2128,21.953255425709514,77.36488025655099,79.67793190703443,63.35773544642036,65.0704972883184,77.10336527966042,79.41296343361437,63.261922466159454,64.97475693645019,0.2615149768905667,264.968473420069,0.0958129802609022,95.7403518682156,109.51006,76.74729281280301,114263.418196995,80078.56094825022,262.76623,164.26854385851183,273584.5993322204,170813.92799131104,297.71134,142.76576638376142,306933.68113522534,146244.64951102168,3805.15096,1714.0158590749552,3941562.708681135,1759697.0083453648,1266.56944,551.4464986203807,1309648.382721202,563623.0811659581,2090.48154,862.5431594475547,2158615.442404007,881494.2075499861,0.37871,100000,0,497773,5193.791736227045,0,0.0,0,0.0,22143,230.53005008347245,0,0.0,27616,284.5262938230384,1922371,0,68989,0,0,4203,0,0,56,0.5634390651085142,0,0.0,1,0.0104340567612687,0,0.0,0.0677,0.1787647540334292,0.314327917282127,0.02128,0.3228932584269663,0.6771067415730337,25.07142408646552,4.481738316566373,0.327710386656558,0.2170204700530705,0.2249810462471569,0.2302880970432145,11.233437343081556,5.733979228393985,22.514611289380152,12772.944534187913,59.70741342339341,13.68857149033318,19.55107611128045,13.293008264451233,13.174757557328554,0.5583775587566339,0.788646288209607,0.7009832272990167,0.5796124684077506,0.1176954732510288,0.7212996389891697,0.9057971014492754,0.88558352402746,0.7402135231316725,0.1146245059288537,0.5003855050115652,0.7222982216142271,0.6385448916408669,0.5298013245033113,0.1185031185031185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0044811225110507,0.0069100576345482,0.0093852841994068,0.011795690505486,0.0141428745978088,0.016198087626659,0.0186618208546868,0.0206391069676153,0.0228977941552791,0.0250789160824826,0.0272159108401834,0.0293528196589893,0.0314632414240281,0.0334175127557594,0.0353566635697326,0.0373392910706343,0.0393194981195022,0.0412928814685605,0.0432679303385281,0.0581235268350681,0.0719265057848475,0.0849499308668873,0.0977025977025977,0.1095596133190118,0.1247439444174603,0.1378693022319679,0.1505410634181601,0.1626165432783597,0.1734822843922711,0.1871443171427034,0.2003934794828555,0.2128260562538703,0.2233082870997335,0.2334835164835164,0.2437797191197611,0.2542359664464669,0.2636756696052558,0.2731720022195296,0.2815569505906029,0.2885146296103776,0.2958438919575397,0.3027458953415525,0.3092551600358959,0.3156929653061968,0.3216819391073012,0.326704687578168,0.3319178151858821,0.3373310045927938,0.3426971473746623,0.3437180521926284,0.3442764994704919,0.3453530498033522,0.3455029363265542,0.3459317038316115,0.345103693704749,0.3443218792159352,0.3454216073781291,0.3460726967082354,0.3477629597762959,0.3488205456979616,0.350083585416335,0.351488697705803,0.3530656342846853,0.3532350314935927,0.3540946695989109,0.3542702085118537,0.356638061585058,0.359044898247099,0.3628290263221058,0.365409383624655,0.3673666684569526,0.3685186369157982,0.3687094782340228,0.3715867863280504,0.3718809980806142,0.3721652687169928,0.3769072164948454,0.3865406006674082,0.397270955165692,0.0,1.7248253944922587,61.57661473038016,192.25263924291409,299.70592678201785,fqhc7_80Compliance_baseline,68 -100000,95635,42312,398.9020755999372,6886,70.83180843833324,5366,55.49223610602812,2121,21.791185235530925,77.2563444549925,79.66443003724748,63.27473565930678,65.05505981633199,76.9905999167318,79.39827502380936,63.17738792664975,64.95948907348627,0.2657445382607051,266.155013438123,0.0973477326570275,95.57074284572307,109.22648,76.538778183445,114211.8262142521,80032.1829700894,265.9489,165.90283092830225,277455.4504104146,172843.77892760656,295.5263,141.18451640845447,304635.0917551106,144373.88348024918,3854.28526,1731.8955516567346,3991475.3489831127,1772276.1724012035,1337.33527,580.3986474633066,1383392.3040727766,591963.183128003,2093.89014,868.2257320984021,2154643.2373085166,879791.3212775339,0.38031,100000,0,496484,5191.4466461023685,0,0.0,0,0.0,22367,233.22005541904116,0,0.0,27409,282.197940084697,1915722,0,68773,0,0,4340,0,0,43,0.4496261828828357,0,0.0,1,0.0104564228577403,0,0.0,0.06886,0.1810628171754621,0.3080162648852744,0.02121,0.3313002495148323,0.6686997504851677,24.7769488687598,4.490121648054763,0.32836377189713,0.2182258665672754,0.218412225121133,0.2349981364144614,11.3377067847777,5.774849696684602,22.51572976744885,12810.79020625238,60.82226661591022,13.873938782709809,19.890072751868846,13.125114001590187,13.933141079741397,0.5532985464032799,0.7779675491033304,0.6838819523269013,0.6032423208191127,0.1157811260904044,0.7023988005997002,0.9074550128534704,0.8352941176470589,0.7509881422924901,0.146067415730337,0.503968253968254,0.7135549872122762,0.6357516828721017,0.5625680087051143,0.107645875251509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002035752266167,0.0042771859765058,0.0062411836937659,0.0084727682789308,0.0109166751449791,0.0130191620060511,0.0152909254121103,0.0176754260492868,0.0199864983736677,0.0221177290142807,0.0241134460679691,0.0261848974390594,0.028372298918023,0.0305795263575721,0.0326319377730949,0.034622269590141,0.0366028112949371,0.0388702489898098,0.0408524276289775,0.0426606030895038,0.0570714935153155,0.0705553285772651,0.0834278155706727,0.0961884611740929,0.1083428306107804,0.1244113818901387,0.1380902346610628,0.1503663315726699,0.1629365995468342,0.1736811606644632,0.1872378960532131,0.2005330213208528,0.2124799860583154,0.2230051836184506,0.2331270749920033,0.2443605683836589,0.2547541277014631,0.2639480624873199,0.2732005638157596,0.2817450757706118,0.2901456468296303,0.2980287768096907,0.3059333096000949,0.3124654737600576,0.3193412429653811,0.3258736592358262,0.3324131354071248,0.3379895394820768,0.3433831931027319,0.3470564889535653,0.3478137536977752,0.3487636413869319,0.3486722907937946,0.3485024547540888,0.3484830369152593,0.3473736143445213,0.346426979173301,0.3469583161370202,0.3483384154219856,0.3496480838118553,0.3506189171312482,0.3505748271533603,0.3517740675855373,0.3521167883211679,0.3521708666553915,0.353202963428362,0.3533256880733945,0.3556349156184817,0.3573664404037562,0.3607743371626187,0.3626855446448961,0.363903115663679,0.3645073282152147,0.3670277693011901,0.369810616662002,0.3740973126553806,0.3801878218721599,0.38125,0.3787960954446854,0.383307573415765,0.0,2.361437216411847,58.747469869637925,210.58020684311904,299.3918374469609,fqhc7_80Compliance_baseline,69 -100000,95702,42214,397.43161062464736,6874,70.78221980731855,5285,54.73239848696997,2133,21.93266598399197,77.32722884548278,79.70363600251689,63.32110870231941,65.07586356724089,77.06186581116923,79.43775903471808,63.223598381243946,64.98003946602911,0.2653630343135518,265.8769677988033,0.0975103210754682,95.82410121177531,109.19876,76.57051689187476,114102.90276065284,80009.31735164861,266.86144,166.69891257834243,278354.193224802,173694.61091803087,295.90947,141.94590174337543,306072.4645252973,145786.75258709036,3805.18904,1723.1537974465907,3944958.799189149,1769521.380561517,1303.29454,572.1812393043771,1350024.9002110718,586115.8733987488,2093.7761,882.4510385715135,2156244.926960774,896964.4988103885,0.3782,100000,0,496358,5186.495580029676,0,0.0,0,0.0,22479,234.36291822532445,0,0.0,27493,284.2155858811728,1917436,0,68811,0,0,4351,0,0,42,0.4388623017282815,0,0.0,0,0.0,0,0.0,0.06874,0.181755684822845,0.3102996799534477,0.02133,0.3255070853014726,0.6744929146985273,25.26323259128858,4.424444353158047,0.3165562913907285,0.2234626300851466,0.2293282876064333,0.2306527909176915,11.230989425500567,5.860086731665886,22.89801512020024,12781.150901519011,59.82569313068473,13.790266912912992,18.99175007443821,13.522982729502417,13.5206934138311,0.5540208136234627,0.7849280270956817,0.6867901972504483,0.5701320132013201,0.1320754716981132,0.7186588921282799,0.9508196721311476,0.8628318584070797,0.725,0.1642335766423357,0.4962944032711474,0.7104294478527607,0.6216216216216216,0.5236051502145923,0.1227513227513227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023589203636584,0.0045707452037579,0.00687836055595,0.0090191657271702,0.0109211824162861,0.0133078105749748,0.0157037097464972,0.0176993861897807,0.0197881087272206,0.0220786269469846,0.0242436673161727,0.0264366045293483,0.0286457797617823,0.030818847822279,0.0328493142202545,0.0348090466292309,0.0369641340157056,0.0389418934210936,0.0408046515014405,0.0428080050031269,0.0572162687221908,0.0707333919377119,0.0839853993161174,0.0966798518767884,0.1090767186280507,0.1245636305934624,0.1376708549112827,0.1502544881487318,0.1621278005106892,0.1736089507728945,0.1864996445574201,0.1992379880286187,0.2121554893302299,0.2233535291673046,0.2340039178570642,0.2440364736253144,0.2549779007991428,0.2639163891638916,0.2733567155877913,0.2821379468377635,0.2896467863346844,0.297140047529296,0.3043606992278175,0.3114612562054824,0.317704280155642,0.3236920039486673,0.3301711822351437,0.3352321239693644,0.3400653747373336,0.3446807948070491,0.3446576378292982,0.3445366566489288,0.3450826498778955,0.3449563053417443,0.3453478500469162,0.3446563124711672,0.3442646381552827,0.3444241796881418,0.3457022236655443,0.3466695231464124,0.3473055014240743,0.3487994936909141,0.3506324599861551,0.352169141526126,0.3532221873718242,0.3550844130349431,0.358298262189012,0.3603472770323599,0.3624401913875598,0.366765152120099,0.3694074414331649,0.3720008568980291,0.3741198858230257,0.3756450743279673,0.3769708552317248,0.3813001316892134,0.3868070610096005,0.3874795417348609,0.3899860917941585,0.3989155693261038,0.0,1.9082960257390047,60.90015856103648,196.5913951831738,297.42193111568844,fqhc7_80Compliance_baseline,70 -100000,95761,42176,396.19469303787554,6931,70.9579056191978,5448,56.11887929324047,2229,22.74412339052433,77.38146625236273,79.70406202412656,63.35451413110488,65.06764308011562,77.10139540349748,79.42939632663492,63.25128694453366,64.97013585555524,0.2800708488652503,274.66569749164194,0.1032271865712175,97.50722456037408,108.35286,75.86533657204099,113149.25700441725,79223.62608164178,266.13908,166.08790398486806,277164.6703772935,172685.41069230397,296.08896,142.13491810613684,304542.0369461472,144783.726969424,3963.09811,1786.7800217637337,4088612.493603869,1816017.734018944,1372.21479,599.7161327254298,1412386.1697350696,605691.7353885504,2204.15328,920.9584125650526,2253071.229414897,919825.4570561012,0.38019,100000,0,492513,5143.14804565533,0,0.0,0,0.0,22330,232.38061423752885,0,0.0,27408,281.56556426937897,1924782,0,69129,0,0,4392,0,0,65,0.6787731957686324,0,0.0,0,0.0,0,0.0,0.06931,0.1823035850495804,0.3215986149184822,0.02229,0.3243725140584282,0.6756274859415718,25.12307188678208,4.457100127221763,0.3256240822320117,0.2103524229074889,0.2204478707782672,0.243575624082232,11.16781222084953,5.677995458193295,23.76195535276629,12905.949171766595,61.70187771402772,13.558936306425895,20.1336788054881,13.409447485819928,14.599815116293795,0.5479074889867841,0.7643979057591623,0.6894024802705749,0.5978351373855121,0.1266013564431047,0.7242359630419332,0.9214659685863874,0.8660907127429806,0.7716262975778547,0.1575091575091575,0.4865132392972036,0.6858638743455497,0.6270022883295194,0.5427631578947368,0.1185958254269449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023287366097644,0.0042462199521666,0.0068065854475,0.0091498090827849,0.0113577435000559,0.0132337072703951,0.0156148075668623,0.0177654874029326,0.0200756027789129,0.0224770829923064,0.0246693507903822,0.0270453286274187,0.0289704643084701,0.0310582664196005,0.0330126916375408,0.0351967942825864,0.0371719513204735,0.039169742462572,0.04125371397702,0.0433768559588513,0.0578370085889314,0.0719824203421754,0.0857002013760698,0.0989540078843626,0.1114226978019081,0.1270440650716084,0.1405416299816486,0.153042867331623,0.165121445814018,0.176358957864265,0.1908186555273244,0.2035582954791261,0.2151487140449133,0.226341815635735,0.2363610349875083,0.247215541985748,0.2572883286251828,0.2674935563384245,0.2770597187833632,0.2858109270194347,0.293972498001645,0.3005774930009722,0.3075583461675157,0.3141705939489873,0.3203451628585318,0.3266148915187377,0.3322069535180596,0.3375198829293122,0.3424167390487055,0.3473307635441968,0.3476005712284105,0.3479822726271746,0.3479094690827046,0.3479173908006024,0.3485017805790234,0.347742628992629,0.3470714115875406,0.3471503441930767,0.3478736870915871,0.3491403167348105,0.3509258565109828,0.3516483516483517,0.3526450476150522,0.3530651126302813,0.3536511913653118,0.3554400898195775,0.3577887440454118,0.3590776103438513,0.361225422953818,0.3622546673049306,0.3646978021978022,0.3632685653446899,0.3629955947136564,0.3622868453105968,0.3641799544419134,0.3648084039632326,0.3685420818641729,0.3745676500508647,0.3744810406864102,0.3841982958946553,0.0,2.9785690842600068,61.34101427300814,206.52321031997036,303.1592548756759,fqhc7_80Compliance_baseline,71 -100000,95762,42710,402.2159102775631,6873,70.58123263925148,5358,55.42908460558468,2093,21.50122177899376,77.31912755708531,79.66875551540964,63.32066847763053,65.05833659356576,77.05657638918436,79.40801097262279,63.22317315853866,64.96455917828318,0.262551167900952,260.74454278685266,0.0974953190918768,93.77741528257388,109.11538,76.46031365474272,113944.34117917337,79844.10690539329,266.17902,165.99231627903936,277458.5012844343,172839.8971708444,294.31534,141.07925058974877,304850.8489797623,145340.75287192495,3827.76993,1724.8613807338577,3957165.796453708,1761349.2683677024,1270.4943,555.9886384785747,1311403.4168041602,565442.8695597746,2066.37392,865.8678495267047,2122831.102107308,871875.5036054915,0.38298,100000,0,495979,5179.288235416972,0,0.0,0,0.0,22424,233.6208516948268,0,0.0,27258,282.10563689146005,1918692,0,68934,0,0,4255,0,0,50,0.5221277751091247,0,0.0,0,0.0,0,0.0,0.06873,0.1794610684631051,0.3045249527135166,0.02093,0.3217897215680842,0.6782102784319157,25.31869907734409,4.502073243306424,0.3240014930944382,0.2215378872713699,0.2239641657334826,0.2304964539007092,10.903502953109834,5.335189909370128,22.24152775837938,12889.03047546494,60.31325986598899,13.978794249064476,19.48302588187055,13.38543580305642,13.466003931997548,0.5520716685330347,0.7598989048020219,0.6941244239631337,0.5908333333333333,0.1149797570850202,0.7015475313190862,0.8781725888324873,0.8838268792710706,0.7083333333333334,0.1192307692307692,0.501374656335916,0.7011349306431274,0.6299151888974557,0.5576923076923077,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021266038137095,0.0044791698335005,0.0068179051174871,0.0090495439679863,0.011268063987959,0.0133207051419143,0.0157736426204435,0.017951231466732,0.020142737367334,0.0222047050633688,0.024514779613054,0.0267275901016531,0.028971049519206,0.0312136227375274,0.0331200990507635,0.0352938744716253,0.0373211586640992,0.0392618563545081,0.041076531407492,0.0430059368815748,0.0571521028842239,0.0709772579869029,0.0848760737998091,0.0971605847092228,0.1091689245464033,0.1249233372105318,0.1383797887234313,0.1510198869984358,0.1635058944131214,0.174415986792028,0.1880707270847691,0.201038961038961,0.2133611781852988,0.2246826099793327,0.2355361897845558,0.2460957402033537,0.2563464243452633,0.2667619454885103,0.276520870463498,0.2843167577350882,0.2927879938857751,0.2994847775175644,0.3065007407407407,0.312927048934254,0.3193920514006181,0.3254328977595534,0.3313857264657204,0.3368607601392271,0.3424522425249169,0.3476795368326438,0.3476583576130355,0.3481083316105023,0.348562309343577,0.3491718471503717,0.3509014843598791,0.3496308122131311,0.3492436387879172,0.3501003718695494,0.3517824442504835,0.3525828241744459,0.3525860447620839,0.353209372398208,0.3552903035661656,0.3554646221642646,0.3560743372241958,0.3578517374112964,0.3601888952489983,0.3628528130327713,0.3660301436588895,0.3686828491842419,0.3736414284409535,0.3763613068545804,0.3780077455399657,0.3787645974185618,0.3811149032992036,0.3842960502905942,0.3812519177661859,0.3829397394136807,0.3859745996686913,0.3847626339969372,0.0,1.9963677807975104,60.08254930409493,197.1590814149961,306.82151135888705,fqhc7_80Compliance_baseline,72 -100000,95689,42329,398.6560628703404,6884,70.80228657421439,5377,55.680381235042695,2112,21.77888785544838,77.34181859432726,79.72524995450976,63.3271521787835,65.08581919608622,77.08160497329825,79.46292390966296,63.23127900918726,64.99171458522157,0.2602136210290098,262.32604484680166,0.0958731695962384,94.1046108646475,109.60928,76.851529846862,114547.41924359124,80313.86036729613,267.70765,166.79263986445474,279265.2760505387,173803.8226592971,293.75188,140.08976723299767,304010.11610529944,144094.31386611093,3856.76015,1719.0846201312822,3998971.146108748,1764988.6299692562,1261.43185,544.0955673782912,1307483.1798848351,557829.3193348154,2084.87268,863.7203593625304,2152145.99379239,878612.1955065251,0.38061,100000,0,498224,5206.700874708692,0,0.0,0,0.0,22555,235.18899769043463,0,0.0,27239,281.5997659083071,1918008,0,68810,0,0,4397,0,0,44,0.4598229681572595,0,0.0,0,0.0,0,0.0,0.06884,0.1808675547147999,0.3067983730389308,0.02112,0.3282632743362831,0.6717367256637168,24.964754085073327,4.525396845347581,0.3249023619118467,0.2172214989771247,0.2254045006509205,0.2324716384601078,10.91278956443506,5.216991515259554,22.34914864337029,12789.728233858128,60.391861990245125,13.62727245501432,19.57034726471285,13.449502467825209,13.74473980269274,0.5460293844151014,0.7559931506849316,0.7097882083571837,0.5561056105610561,0.1112,0.7037037037037037,0.9193548387096774,0.8656716417910447,0.6690391459074733,0.1410788381742738,0.4959568733153638,0.6796482412060302,0.6631970260223048,0.5220193340494093,0.1040634291377601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898492167167,0.0046220744599977,0.0064527256678469,0.008429647986025,0.0104425102696546,0.0126354158181966,0.0150750695654832,0.017282035054051,0.0192152413659174,0.0216298662080684,0.0239008284800262,0.0260868672137377,0.028014403292181,0.0303273873929576,0.0323386422518347,0.0341660201706749,0.0361565644527809,0.0384267959673149,0.0406974324830427,0.0427956339070693,0.0574138687503917,0.0715893741557856,0.0853397426478305,0.0977860555169728,0.1101101312291657,0.1253120372329172,0.1387008467202852,0.1513896724609603,0.1633562339063818,0.173827245232835,0.1872920144311022,0.2005105241525515,0.2122504024013572,0.2239253072112651,0.2343318555351426,0.2450681760281786,0.255025840802795,0.2650251403246307,0.2749585820302748,0.2840963745047294,0.2920386732664107,0.2999438701529538,0.3070527149936723,0.3131245357168531,0.3194694135367572,0.3243193275239421,0.3286386739778161,0.333918999783558,0.3384407974903425,0.3431986265187533,0.3427982319012452,0.3430825794191762,0.3443406872425661,0.3447268308911808,0.3452025047223833,0.3446809816892545,0.3449330480944457,0.3447652539726882,0.3458668492212904,0.3475953032009007,0.3480973525940082,0.3499693512348486,0.3509040567185468,0.3522607545562554,0.3533905248445708,0.3552248971786341,0.3565580809526535,0.3591582672438307,0.3628005657708628,0.3645874930117402,0.3639692420358842,0.3645766687993175,0.3672081601813373,0.3715288373512359,0.3691413573303337,0.3721290015470665,0.3682354744749348,0.3609371844071904,0.361188228761799,0.3642691415313225,0.0,2.0261154349086032,57.217723907277374,205.76291485655136,308.4609637294797,fqhc7_80Compliance_baseline,73 -100000,95669,42291,400.4118366450992,7015,72.08186559909689,5483,56.61185964105405,2255,23.194556230335845,77.38307130315455,79.75955935936508,63.34642469116329,65.09743809048862,77.11085803640455,79.4858733378735,63.24824191580769,65.00120643900821,0.2722132667500005,273.68602149158505,0.0981827753556032,96.23165148040869,108.55438,76.06927371449937,113468.70982240852,79512.98091806058,268.15783,166.56094315480834,279633.6953454097,173437.4490742125,299.35624,143.54717932385634,307571.0000104527,146148.07672257297,3965.73188,1783.3890533119484,4100307.10052368,1819168.1457023136,1328.93187,574.780541906428,1374228.496169083,586035.521495598,2223.8383,905.54402539401,2289390.209994878,917854.1426202812,0.38102,100000,0,493429,5157.668628291296,0,0.0,0,0.0,22628,235.8130637928692,0,0.0,27867,285.9965087959527,1922774,0,69155,0,0,4338,0,0,44,0.4599190960499221,0,0.0,1,0.0104527067284073,0,0.0,0.07015,0.1841110702850244,0.3214540270848182,0.02255,0.3289473684210526,0.6710526315789473,24.79618134808611,4.561276275812598,0.3222688309319715,0.2086449024256793,0.233448841874886,0.235637424767463,11.46142219323928,5.893650347143499,23.74256011307877,12837.224389380795,61.95659721474555,13.713751258384244,20.09685691234463,14.054037007844704,14.09195203617196,0.5641072405617362,0.7884615384615384,0.7181663837011885,0.6,0.1191950464396284,0.7415730337078652,0.9213759213759214,0.8710359408033826,0.76,0.1680327868852459,0.5018477457501848,0.7150610583446404,0.6622874806800618,0.5510204081632653,0.107824427480916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022675966512456,0.0044272891212286,0.0065415158061277,0.0087330923270644,0.0107772863606324,0.013141687958712,0.0152602499541275,0.0173013912564178,0.0196457228133656,0.0218047806725699,0.0236628151368198,0.0257947917522385,0.0276346507872841,0.0295720245146006,0.0312790145872449,0.0329385257761792,0.0348599902619938,0.0368875003892181,0.0390083091546293,0.0408433383358345,0.0562548968399059,0.0699546687046556,0.0838972293037065,0.0971652682270309,0.1090247759620453,0.1243035806789229,0.1377402291783711,0.1497495666599317,0.1622887504267668,0.1736517323391399,0.187622367090514,0.2005232545568553,0.2130545351794292,0.2239549751379706,0.234797910365686,0.2468261881023596,0.2580004019741396,0.2673445716923978,0.2761282997445359,0.2842133003345707,0.2917009038619556,0.2994112207512495,0.3068803752931978,0.3138746565233564,0.3202237626170497,0.3255687706657454,0.3320933378424078,0.3377996280918053,0.3429586504674351,0.3472233235535115,0.3477100933748333,0.347963763526723,0.348686435900327,0.3491379310344827,0.349495069678897,0.3494527088226715,0.3486360823269911,0.3502179814098873,0.350910587509003,0.351830284352547,0.3520746654672214,0.3521343873517786,0.3539541217136273,0.3551163674573543,0.3554104029585515,0.3557632236568097,0.3581924115390081,0.3605209477483131,0.3615422431350516,0.3616128010139417,0.3634206443369535,0.3657542224810716,0.3671069182389937,0.3682493932038835,0.3706502472245545,0.3661144401362942,0.3695816341942304,0.3673792557403009,0.3724324324324324,0.3756554307116105,0.0,2.7209858672952745,62.32446480942842,203.9955301470007,307.20865805435386,fqhc7_80Compliance_baseline,74 -100000,95702,42084,395.9478380807089,6912,70.98075275333849,5401,55.93404526551169,2171,22.32973187603185,77.3960056150407,79.78146204323332,63.35197710932333,65.1136661478147,77.12746718435898,79.5120098488933,63.25358010595172,65.01729157177418,0.2685384306817298,269.452194340019,0.098397003371609,96.37457604051748,109.05994,76.33354921636851,113957.84832082925,79761.70740043941,265.37467,165.01820540399484,276780.7360347746,171917.56663777112,293.09098,140.14127795942574,303633.54997805686,144318.30343512935,3887.23818,1749.1749863091711,4027186.213454264,1793143.085333572,1282.5895,559.5534340472717,1328391.8831372384,572884.0923358666,2136.84346,889.8001762006411,2200506.760569267,901499.324974602,0.37811,100000,0,495727,5179.902196401329,0,0.0,0,0.0,22340,232.90004388623015,0,0.0,27144,280.95546592547703,1927673,0,69048,0,0,4325,0,0,46,0.4806587114166893,0,0.0,0,0.0,0,0.0,0.06912,0.1828039459416572,0.3140914351851852,0.02171,0.3115971935617003,0.6884028064382997,25.06695035867378,4.563246271112721,0.3223477133864099,0.2151453434549157,0.2310683206813553,0.231438622477319,10.995401249058324,5.4426082396374245,22.999264785024792,12762.056129215733,60.71352869105684,13.703590397747046,19.489436696209115,13.820320836413805,13.700180760686878,0.546009998148491,0.7667814113597247,0.6886846639862149,0.5825320512820513,0.1056,0.7061933534743202,0.9164420485175202,0.8571428571428571,0.7360594795539034,0.1401515151515151,0.493990679421143,0.6965865992414665,0.6351249053747161,0.5403472931562819,0.0963488843813387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691127161481,0.004603435338971,0.0069020117334199,0.0092151384302768,0.0116269607145036,0.0137152282816763,0.0159058698777491,0.0179379064615258,0.0200678811670653,0.0222317754713504,0.0243387328275579,0.0266127293448463,0.0285908221404035,0.0307571871491404,0.0329856274697949,0.0351553616836534,0.0370922801238826,0.0390168460604299,0.0410166812263405,0.04302195912497,0.057769839777736,0.071672997833799,0.084712520714031,0.0976302121664528,0.1095792225314107,0.1245281023634537,0.138242345802126,0.1508303172237598,0.1621445510286923,0.1732289376307181,0.1865817931153332,0.1986867441206378,0.2105331797335188,0.2221189895832194,0.232701843890532,0.2437674356817074,0.2545393709569484,0.2645019942699848,0.2743680674363535,0.2827384355063682,0.2910065130029101,0.2986724888790295,0.3060665130840569,0.3127198755534283,0.3185787048265825,0.3242010255401301,0.3288944911763972,0.3338492179274125,0.3391690551811397,0.3435616726755967,0.3438674685855439,0.3438580602667545,0.3447756996203066,0.3438920557038747,0.3440287321351716,0.3437088727695651,0.3426630994031693,0.3436069125104623,0.344396993508712,0.3462623161502213,0.3472222222222222,0.3481858940174991,0.3486848988303237,0.349868403443815,0.3501286088607899,0.3499583072753804,0.3507494524872721,0.3535614239400711,0.3549192725737803,0.3561709428993256,0.3567130586560103,0.3592321266242447,0.3612469049584153,0.365197393637409,0.3655126498002663,0.3639431188238129,0.3647040642868181,0.3675056271741355,0.3702056698165648,0.3706429124709527,0.0,1.8650993611621052,58.54491506421069,204.1918253596754,310.1226990436488,fqhc7_80Compliance_baseline,75 -100000,95824,42243,397.8961429287026,6869,70.42077141425948,5375,55.51845049256971,2182,22.384788779428952,77.38566316619061,79.70751341390302,63.36611244363343,65.08455579091189,77.12260064451263,79.44464160892379,63.27036921391959,64.99115833421264,0.2630625216779805,262.8718049792269,0.0957432297138396,93.39745669925036,110.17534,77.16877102743503,114976.76991150442,80531.77808005826,269.9001,168.21827583155266,281034.8555685424,174921.74802925432,293.23576,140.46355066725465,302519.95324762067,143728.80049887148,3893.80379,1745.5029303682682,4027585.333528135,1785661.744832473,1309.95744,569.5218556824192,1355193.0414092503,582489.3509793149,2147.3988,885.6813677207448,2206627.1497745863,896936.9125994557,0.37913,100000,0,500797,5226.216814159292,0,0.0,0,0.0,22741,236.7465353147437,0,0.0,27183,280.2533811988646,1919555,0,68867,0,0,4251,0,0,47,0.4696109534145934,0,0.0,0,0.0,0,0.0,0.06869,0.1811779600664679,0.3176590478963459,0.02182,0.3280774550484094,0.6719225449515907,25.26195132370539,4.509694535510242,0.3281860465116279,0.209860465116279,0.2228837209302325,0.2390697674418604,11.144466854274338,5.583298286951959,23.15457522436572,12755.1738056391,60.56495879206882,13.28484717233844,19.972361729793715,13.179717713105648,14.128032176831011,0.5376744186046511,0.7632978723404256,0.6921768707482994,0.5492487479131887,0.1167315175097276,0.7096530920060332,0.9147727272727272,0.8642533936651584,0.7444444444444445,0.1374045801526717,0.4813534205976784,0.6945876288659794,0.6346444780635401,0.4924568965517241,0.1114369501466275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661784813588,0.0043186034488002,0.0066070576772792,0.0088188080385264,0.0108425892021644,0.0130231137358721,0.014983334862245,0.0172976834370854,0.0193571465072308,0.02153134529974,0.0237141188165486,0.0259060444015642,0.0278828365878725,0.0301595470921255,0.0322241356197861,0.0342925609932447,0.0363905386668874,0.0383714421940753,0.0401216941655331,0.0421431618817702,0.0566815133150444,0.0708618617049077,0.0840364318579618,0.0966454093693201,0.1088909720978733,0.1244547710830649,0.1382265394108238,0.1514066169984377,0.1634279010238908,0.1749938416390879,0.1884033035099793,0.2019550658889609,0.2136445047489823,0.225118147190116,0.2349556355969428,0.2452546513813193,0.2549513222091029,0.2645694583272499,0.2731690188704891,0.2814064607576416,0.2891232284965176,0.296417318240168,0.3030553456743483,0.3094495248341402,0.3171352091181066,0.3233021753282645,0.3289742949837784,0.334754256425871,0.3392829467376143,0.3442169705746823,0.3441745352809835,0.3442127115498302,0.3445368689214486,0.3447767663632423,0.3448270737036101,0.3448904829784951,0.3442550154626913,0.3446806410214222,0.3445886851988407,0.3456982599501819,0.345541969534757,0.3468416669971053,0.3481589269897507,0.3493506785802705,0.3502314197785155,0.3509681153320004,0.3523461969483635,0.3550942798288702,0.3569630128727969,0.3595109240328723,0.3633647437370719,0.3634566053869175,0.3661677026512749,0.3687150837988827,0.3739559605163249,0.3770963104935314,0.3775683608836706,0.3763792398855741,0.3803442531926707,0.3819364714887103,0.0,2.273828611659317,58.2595010187113,203.79192672782213,307.8791018583548,fqhc7_80Compliance_baseline,76 -100000,95768,42535,400.1858658424526,6957,71.29730181271405,5456,56.4071506139838,2241,23.04527608386935,77.37657405990127,79.72230891374838,63.3458979718325,65.07943214342778,77.09620038320347,79.44105018843798,63.24175532281571,64.9776068420401,0.2803736766978062,281.2587253103942,0.1041426490167864,101.82530138767731,110.7964,77.56388760420845,115692.50689165483,80991.44558120504,267.19611,166.96092947390434,278434.9573970429,173770.94764090911,302.47967,145.15066045666006,312171.2367387854,148753.45429475306,3955.7674,1809.855323835469,4092489.213515997,1851793.519976273,1285.5427,572.492005483492,1329922.1451841951,585425.9855491074,2201.17118,932.7461934800996,2265457.1255534207,945004.5510099296,0.38221,100000,0,503620,5258.750313257038,0,0.0,0,0.0,22510,234.4415671205413,0,0.0,28038,289.1362459276585,1912294,0,68646,0,0,4422,0,0,41,0.4281179517166485,0,0.0,0,0.0,0,0.0,0.06957,0.182020355302059,0.3221216041397154,0.02241,0.3394130554031815,0.6605869445968184,24.797397888101745,4.533789274771181,0.3310117302052786,0.2118768328445748,0.2256231671554252,0.2314882697947214,11.42836220348548,5.8393545129594,23.965880199368243,12884.10419062033,61.86116043418974,13.665037619058332,20.58206606933903,13.758159492786891,13.8558972530055,0.5542521994134897,0.7811418685121108,0.689922480620155,0.6011372867587328,0.1068883610451306,0.7200282087447109,0.91644908616188,0.8893805309734514,0.7540453074433657,0.1277372262773722,0.4960376423972263,0.7141009055627425,0.6233382570162481,0.5498915401301518,0.1011122345803842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0045920384393151,0.0069705148237585,0.0093766508188061,0.0119091204946708,0.0142870235537316,0.0164778578784757,0.0186221260260546,0.0207321685971028,0.0228066044978554,0.0249159560511643,0.027027027027027,0.0290316943036608,0.0311637487126673,0.0328687416822275,0.0351432085749428,0.0373388558115454,0.0392032781783287,0.0410342246434066,0.042907727556759,0.0576336993278503,0.0719290539833929,0.0852910651948297,0.0982848495039515,0.1104752268631232,0.1262698337191725,0.1395565828676852,0.152831132346525,0.164083777462111,0.1750839223088555,0.1885818926051597,0.2017227759200943,0.2135963528349309,0.2251879575823237,0.2352753339132541,0.2462582318898423,0.2565534495660818,0.2672603032725062,0.2761626917008162,0.2843692011637763,0.2925736902405999,0.3002035516249035,0.3066857541734202,0.3136681683120866,0.3202799411929091,0.3263560157790927,0.3313363017810686,0.3364518056208768,0.3418209577042011,0.3469043127218037,0.346860540191542,0.3474254593464627,0.3478450642749532,0.3483043742230188,0.3474946504992867,0.3463283069756038,0.3457948368488613,0.3470581469858534,0.348697943400746,0.3502152669846544,0.3510142749812171,0.3511699726808409,0.3525989709125275,0.3533397437330888,0.3544706052289469,0.3552583459589363,0.3557719769235163,0.3584780966767371,0.3600493218249075,0.3617539099904245,0.3644405738644176,0.3677091686714782,0.3706912908734425,0.3762807768771983,0.3776375282592313,0.3752235602718493,0.3769835156370359,0.3816189896530736,0.3832550428295109,0.3915221579961464,0.0,2.1127073873648388,62.36833022580728,208.43070691555772,302.30783732742697,fqhc7_80Compliance_baseline,77 -100000,95740,42278,397.58721537497394,6990,71.65239189471485,5475,56.49676206392313,2179,22.35220388552329,77.3313489084019,79.69883078602408,63.31030609897547,65.06376572597374,77.05959552810816,79.42776549427953,63.21158074231806,64.96820531847489,0.2717533802937453,271.06529174454863,0.098725356657404,95.56040749885142,108.79264,76.2166444074069,113633.1940672655,79607.73304715575,266.01905,165.43954644335253,277176.8017547524,172123.24721201428,297.80325,143.00988768634508,306591.9887194485,146009.5362062323,3925.05808,1768.5022906216166,4053146.459160226,1801043.0239489097,1348.79095,593.9336999953574,1388722.049300188,600399.9298876313,2143.59778,888.3494769338994,2200988.677668686,894252.7232575873,0.379,100000,0,494512,5165.145184875705,0,0.0,0,0.0,22340,232.6300396908293,0,0.0,27605,283.85209943597243,1922132,0,68944,0,0,4384,0,0,50,0.5222477543346564,0,0.0,0,0.0,0,0.0,0.0699,0.1844327176781002,0.3117310443490701,0.02179,0.3148374813001496,0.6851625186998505,25.304314907838982,4.462642719111518,0.3318721461187214,0.2142465753424657,0.2261187214611872,0.2277625570776255,11.320801217076738,5.82821163167269,23.13521442067987,12831.158912582305,61.73950175775882,13.72823046378244,20.41092061135335,14.005048353854525,13.595302328768495,0.5512328767123288,0.7604433077578857,0.6752889378095762,0.598546042003231,0.1267040898155573,0.7281976744186046,0.8944591029023746,0.8619909502262444,0.7637540453074434,0.1869918699186991,0.4918272749451086,0.6964735516372796,0.6152727272727273,0.5435952637244349,0.1118881118881118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002117549316609,0.0046543699362178,0.0070032986551636,0.0092968908758382,0.0114244440375185,0.0135653980507378,0.0155703520918518,0.0177256807947966,0.0198938313780441,0.022041501935801,0.0241015753199868,0.0261057173678532,0.0281665500349895,0.0303205194269813,0.0325963543279453,0.0347637266053148,0.0368828694499668,0.0390669585879862,0.0411724962320045,0.0432337287658962,0.0586865977013894,0.0727679879452513,0.0862304093321864,0.0994699981071361,0.1113969696650182,0.1267254053711009,0.1397614398505815,0.1520270990008308,0.1635601915184678,0.1753672486130932,0.1874245559579238,0.200454840805718,0.211848723029023,0.2225931804498932,0.2329025013211203,0.2437699538843561,0.2535510094693586,0.2637580341966929,0.2735258068909165,0.2819031903190319,0.2894304237091919,0.2974596816696532,0.3045086485909732,0.3107283559142884,0.3176330266296674,0.3247609057814524,0.3318468784447339,0.3374772319097173,0.3427044278097066,0.3471247968929576,0.3475839939599849,0.3473747969494232,0.3475742930011695,0.3476249674752089,0.3477221430268472,0.3474918846083175,0.3474230392001772,0.3488929374497349,0.3497682691156602,0.3505010986655233,0.3503901560624249,0.3507712413123973,0.3513933187846231,0.3529741485616914,0.3541099028283461,0.3551010801056568,0.3568348610754162,0.3600315955766193,0.3630922869891635,0.3636181388075859,0.362818039864058,0.3641022903208584,0.3668886774500475,0.3660495716034271,0.3650347026824235,0.3667921863967992,0.3754354081478116,0.3778527485612225,0.3851992409867172,0.3909090909090909,0.0,2.667515293405078,60.18424103579737,205.89615526460776,311.2333671515441,fqhc7_80Compliance_baseline,78 -100000,95503,42608,402.7831586442311,6868,70.78311676073002,5331,55.359517502068,2182,22.596148812079203,77.22623088476638,79.71410928418614,63.24095407219974,65.07645476028965,76.95896051584435,79.44163566586674,63.14378411996119,64.97901824045091,0.267270368922027,272.4736183193954,0.097169952238552,97.43651983873748,108.41028,75.96142529587776,113515.05188318693,79538.26088801163,265.97338,166.08897383808815,278061.6211009078,173473.90536222755,294.84009,141.11090246128165,305623.7290975152,145359.38132724556,3866.80284,1742.8523498423845,4018192.4756290377,1794230.4114450673,1297.43134,566.6981022628689,1348495.9844193377,583354.3263173604,2148.49434,892.8711654048512,2225763.148801608,915217.686965507,0.3814,100000,0,492774,5159.775085599405,0,0.0,0,0.0,22386,233.94029506926483,0,0.0,27279,282.56703977885513,1916924,0,68828,0,0,4240,0,0,48,0.492131137241762,0,0.0,3,0.031412625781389,0,0.0,0.06868,0.1800734137388568,0.3177052999417589,0.02182,0.3116504854368932,0.6883495145631068,25.0543928092914,4.533540469173962,0.3215156631026074,0.2164697054961545,0.2286625398611892,0.2333520915400487,11.114190057070704,5.576429986395396,23.343145446448947,12889.464266371522,60.39176950013421,13.591281239787175,19.38038994798409,13.660984684139972,13.75911362822296,0.547364471956481,0.7686308492201039,0.6808634772462077,0.5963904840032814,0.110128617363344,0.7085843373493976,0.8982558139534884,0.8640552995391705,0.7614035087719299,0.1509433962264151,0.4938795903072695,0.7135802469135802,0.61875,0.5460385438972163,0.0990806945863125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874499670669,0.0044427764309696,0.0065587751538164,0.00888662938485,0.0108425639354943,0.0130459155073128,0.0153062786354962,0.0176976682402468,0.0197346210113865,0.0218438146759287,0.0239776646411561,0.0263212009047912,0.028399320393348,0.0304261726968934,0.032546365655835,0.034435632493322,0.0365137652745793,0.0386054633902956,0.040577988915281,0.0425907363321221,0.0577239091070849,0.0715806922019744,0.0847555653700957,0.0974306550881038,0.1093182010313636,0.1247456333729014,0.1377206038698702,0.1507350587833656,0.162912985274431,0.1742882629208894,0.1884627424734723,0.2014813690192166,0.2133894406349137,0.2248298238498723,0.2362623421038115,0.2470139884226081,0.2566532055082612,0.2674897119341564,0.2770788306222272,0.2855880361303354,0.2937866870838264,0.3014543748533896,0.3089894974188572,0.3156091873895746,0.3213497665459776,0.3271150586983683,0.3334590435963192,0.3391975861099036,0.3442087879221336,0.3492469300976275,0.3488809250118331,0.3492760224715999,0.3489147637350215,0.3494967050474328,0.349416098674104,0.3479859113770244,0.3468173138128581,0.3480306381854798,0.348586162440911,0.3501401063371174,0.3512683854686529,0.3522246288973233,0.3536893530997305,0.3542172466504811,0.3540917103325043,0.3548311076197957,0.357948365676341,0.3590950740939682,0.3596172181221088,0.3636617582505287,0.3664664618770345,0.3697299605080585,0.3687432935681373,0.36999238385377,0.3765046188298964,0.3826219512195122,0.3833104080696928,0.3795008183306055,0.3841682812067534,0.3792177914110429,0.0,1.8214418611309169,59.123776335891634,206.56029610735763,299.8080701853509,fqhc7_80Compliance_baseline,79 -100000,95720,42507,400.55369828666943,6861,70.57041370664437,5360,55.51608859172587,2158,22.294191391558712,77.36399481233721,79.7502159381527,63.33329461681414,65.09798371919472,77.10169457545608,79.48417261241146,63.2371747601324,65.00236073630107,0.2623002368811313,266.04332574125067,0.0961198566817458,95.62298289364436,110.29018,77.19827677879707,115221.66736314252,80650.10110613985,269.31002,168.19221502183655,280867.9063936481,175228.74532160105,298.89901,143.49817164922223,308961.2306727956,147334.16544983545,3882.92726,1742.162374746202,4025000.1358127873,1788513.6280257013,1277.14172,555.491562085203,1322146.3435018803,568228.501969497,2127.67354,881.7105593438557,2198785.5411617216,899323.1345083849,0.38083,100000,0,501319,5237.348516506478,0,0.0,0,0.0,22595,235.5516088591726,0,0.0,27640,285.63518595904725,1914243,0,68788,0,0,4334,0,0,57,0.5745925616381111,0,0.0,0,0.0,0,0.0,0.06861,0.1801591261192658,0.3145314094155371,0.02158,0.3176274944567627,0.6823725055432373,25.0206610617886,4.548808445052464,0.3207089552238806,0.2149253731343283,0.2313432835820895,0.2330223880597015,10.95596027262274,5.387566490208865,22.94407644420705,12790.818720911451,60.31240424958517,13.583836276382709,19.27544167054992,13.754129488212545,13.698996814439983,0.5410447761194029,0.7586805555555556,0.6951716114019779,0.5645161290322581,0.1048839071257005,0.7139753801593048,0.905,0.860730593607306,0.7212543554006968,0.15625,0.4810253832621262,0.6808510638297872,0.6385636221701796,0.5173137460650578,0.0916414904330312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0046751244840629,0.0070758547876228,0.0094924487265483,0.0116913246097804,0.0136214520039937,0.0159941246072871,0.018168634339638,0.0204760005318441,0.0224454479361861,0.0245708308550567,0.0266922737216157,0.0286158055524125,0.0309631018742722,0.0328699546941597,0.0347708309639264,0.0368766703267107,0.0387999916983168,0.040715562762463,0.0427467077846307,0.0573018923096202,0.0712551285271707,0.0846673520340725,0.0968369471492565,0.1093942683685192,0.1245374775346231,0.1379975823383454,0.1509387798521355,0.1620833956060379,0.1729293492240418,0.1862086776859504,0.1997836785463198,0.212388418340165,0.2235599002755544,0.2339852171234986,0.2444924166943429,0.2546957258856072,0.2645772184924035,0.2734472507772256,0.2816757883166548,0.2896121771516476,0.2977725811166326,0.3047116329163362,0.311074352427871,0.3180062199329413,0.3240213829970684,0.3299510803608292,0.335282601510259,0.3403212456675806,0.3453064881673958,0.3455533291195417,0.3460687437296428,0.3465299174158331,0.3467348294486324,0.3467234522466908,0.3456395837471921,0.3446092133731305,0.3463350785340314,0.3470677408915157,0.3475694568279895,0.3482415544022034,0.3491668149202396,0.3495233106338397,0.3505425035868005,0.3520937056545686,0.353607196088173,0.3546440115563946,0.3572350810895922,0.3603885818872971,0.3641204991654082,0.3658258969222364,0.3656621392190153,0.3654674436280719,0.3642500958956655,0.3678248453117563,0.3720595295247239,0.3673405909797823,0.3686169113086624,0.3722955886484967,0.3768686073957514,0.0,1.854335664723484,61.294784009872224,195.28858761351145,304.7154489776118,fqhc7_80Compliance_baseline,80 -100000,95664,42510,400.12962033784913,6867,70.54900485030942,5306,54.82731225957518,2128,21.815939120254225,77.31725194233033,79.72493491175379,63.30264576078415,65.08466559950193,77.04842156884087,79.45899757374687,63.20448149810734,64.99067035122236,0.2688303734894646,265.9373380069212,0.0981642626768106,93.99524827956895,109.54218,76.74812062311221,114507.21274460612,80226.75261656655,266.5075,166.57935235418375,277974.50451580534,173517.0830763754,297.34711,142.76626610215973,307464.43803311593,146508.24913202308,3826.92915,1721.5326060570346,3958411.534119418,1757706.301951357,1271.0651,554.1073640975541,1312678.0293527346,563280.9028467215,2094.28896,867.3340290237795,2150503.345040977,873012.4787939994,0.38117,100000,0,497919,5204.873306573006,0,0.0,0,0.0,22447,233.9960695768523,0,0.0,27455,283.5235825388861,1917197,0,68782,0,0,4340,0,0,63,0.6585549422980431,0,0.0,2,0.0209065061046997,0,0.0,0.06867,0.1801558359786971,0.309887869520897,0.02128,0.3280511537392271,0.6719488462607729,25.32315502560464,4.531816932681102,0.3318884281944968,0.2103279306445533,0.2310591782887297,0.2267244628722201,11.17588313616353,5.577398472489547,22.60242571850002,12821.116762276491,59.85515129760832,13.11164635102103,19.909587512920243,13.613998629836049,13.219918803830986,0.5544666415378816,0.782258064516129,0.676320272572402,0.5807504078303426,0.1379883624272651,0.7179681576952237,0.9429347826086956,0.8364485981308412,0.6964285714285714,0.1934156378600823,0.5003762227238525,0.7032085561497327,0.6249062265566392,0.5465116279069767,0.1239583333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023807835310565,0.0045530598793287,0.0066776946730669,0.0089727565568189,0.0111003713689779,0.0132525211368035,0.015485687470671,0.0178571428571428,0.0202983364367416,0.0224266702183245,0.0244485482712629,0.0269017746128631,0.0292240545158833,0.0312393677894281,0.033411137734446,0.035561303673047,0.0373499471316318,0.039297137872305,0.0412942828902876,0.0433336808089231,0.0581727002037298,0.0719005581560952,0.084992021499958,0.0969897202260077,0.1091816388323293,0.1249140111547375,0.1385466085055348,0.1512427850312027,0.1631737006914683,0.1739256366796112,0.187180232871253,0.2003442079968826,0.2129681021254366,0.2244028984872698,0.2339872448698602,0.2448129100904415,0.2541512297460161,0.2643750562404391,0.2743369858662855,0.2833966843744275,0.2911537393557941,0.2988960097300837,0.3065331391976514,0.3135578997842244,0.3192260009237426,0.3251002405773857,0.330527476106372,0.3355521050755994,0.3405217075950679,0.3456531201772783,0.3460197833254828,0.3463104045765835,0.3462610115110748,0.3464910380287996,0.3472528126674207,0.345923537540304,0.3448182913680472,0.3458344979530096,0.3461591056716009,0.3467452451111706,0.3481082703382041,0.3495230178521949,0.3504131536342801,0.3505217098619993,0.3521726507306687,0.3537784068569631,0.3550067252382451,0.3575552961221721,0.3596695615335734,0.3597716749161743,0.3635321100917431,0.3657714530280334,0.3704597409194818,0.3751057773674898,0.3783450370089201,0.3779424065001792,0.3781643112284516,0.3720213640098603,0.3707742639040349,0.3731513083048919,0.0,2.5145571302668763,57.70525653243687,203.51332664684895,299.4429371851608,fqhc7_80Compliance_baseline,81 -100000,95853,42605,401.1455040530813,6868,70.4933596235903,5395,55.67900848173766,2170,22.19022878783137,77.4717338221379,79.75699741462019,63.40399372213196,65.09043473416436,77.20353773087625,79.49332725421745,63.3062764584173,64.99779529389966,0.2681960912616574,263.6701604027394,0.0977172637146566,92.63944026470485,109.99912,77.06287278806438,114758.14006864678,80396.93362551447,270.14969,168.51474335159145,281245.8764983882,175213.77875662883,300.7193,143.7901148975979,310524.6679811795,147547.71363045095,3847.83952,1723.1238693102234,3970668.367187256,1754028.668179633,1288.61851,558.8214586202389,1325618.812139422,564247.7007712218,2121.78062,873.2134277361707,2171047.812796678,873686.3378205613,0.38196,100000,0,499996,5216.2790940294,0,0.0,0,0.0,22680,235.9863541047229,0,0.0,27832,287.1167308274128,1918683,0,68836,0,0,4332,0,0,62,0.6468237822499036,0,0.0,0,0.0,0,0.0,0.06868,0.1798094041260865,0.3159580663948748,0.0217,0.3219681219681219,0.678031878031878,25.156761079362184,4.504712787922579,0.3338276181649676,0.2063021316033364,0.2407784986098239,0.2190917516218721,11.315048235626296,5.856866370551565,22.94366826928279,12827.85774319691,60.65710163618832,13.098220451043876,20.4221195546953,14.309958367768534,12.826803262680606,0.552548656163114,0.7484276729559748,0.7040533037201555,0.567359507313318,0.1209813874788494,0.7305433186490455,0.9164420485175202,0.8559837728194726,0.7194244604316546,0.15,0.4924373915199603,0.6644204851752021,0.6467889908256881,0.5259549461312438,0.1143451143451143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025002530620508,0.0045891541976071,0.0066620698047009,0.0088814453917986,0.0111373059100886,0.0133690111611912,0.0154836606633526,0.0178602392925264,0.0200561654327291,0.0222329034699283,0.0244679325672381,0.0265114609507204,0.0286509697567389,0.030671879823027,0.0327385554215501,0.0345931433292028,0.0365972236588948,0.0384200816698795,0.0404872172955909,0.042429855965365,0.0570195105164916,0.0711112040396014,0.0848093571174041,0.0970629958493143,0.1093590243593932,0.1250317178381121,0.1378520529351883,0.1501031892938448,0.1624408835178443,0.1729718143821669,0.1875228647055025,0.2008299024216293,0.2134474035632471,0.2248954774198478,0.2351978741160451,0.245695086098278,0.2556298028733712,0.265824632311665,0.2753669142960681,0.2836269678850309,0.2910503769903125,0.2985476815398075,0.3061472699792178,0.3129582012796747,0.3192658547236644,0.3252923076923077,0.3312343041343378,0.336695289873482,0.3420773646377411,0.3464703791001146,0.3471223263380073,0.3473834417277243,0.3472046546926385,0.3467881443893438,0.3472761780492868,0.3465804913824716,0.3460080848913592,0.3462187075331139,0.3474713407259782,0.3480063341814494,0.3487363541199342,0.3494538858877804,0.3507777870703353,0.3519105437014552,0.3533064786841222,0.3546768574845318,0.3549550061032731,0.3575588677354709,0.3597953572547245,0.3625694143594187,0.3663911845730027,0.3666613680919832,0.3709636730575176,0.3723852578346487,0.3747380453419699,0.3779640718562874,0.3806609547123623,0.3848637739656912,0.3810434307566239,0.3727134146341463,0.0,2.3987315691613498,59.78500004720184,203.91410505562504,301.61778317837855,fqhc7_80Compliance_baseline,82 -100000,95734,42608,399.48189775837216,6794,69.69310798671319,5327,55.006580734117456,2149,22.07157331773456,77.34438518034166,79.69712119721608,63.33412346583962,65.0723126924055,77.07372375791066,79.42755597581748,63.23311893090921,64.97433699495636,0.2706614224310044,269.56522139859374,0.1010045349304107,97.9756974491437,108.76712,76.28290343048197,113613.88848267074,79682.14367986501,267.5042,167.77872419684914,278798.32661332446,174628.98677256683,299.4144,144.47903927638973,308480.5084922808,147544.75775038847,3847.47239,1745.1670695754835,3978033.2901581465,1782197.095301978,1260.62738,554.2180763234527,1301282.26126559,563463.3413876508,2110.16268,891.4685249218481,2169920.2164330333,900669.7904911088,0.38198,100000,0,494396,5164.267658303215,0,0.0,0,0.0,22565,235.0471096997932,0,0.0,27611,284.17281216704623,1918466,0,68837,0,0,4337,0,0,62,0.6476278020348049,0,0.0,0,0.0,0,0.0,0.06794,0.1778627153254097,0.3163085075066235,0.02149,0.3188324445691832,0.6811675554308168,25.08692724246154,4.486888533061628,0.3302046179838558,0.213065515299418,0.2258306739252862,0.2308991927914398,11.20631149387754,5.721436261678951,23.015079840100963,12857.2039244475,60.28212511316303,13.492861566172696,19.897205896797903,13.36161547563182,13.530442174560608,0.5526562793317064,0.7779735682819383,0.7077885162023877,0.5785536159600998,0.0975609756097561,0.709585121602289,0.9097938144329896,0.8706140350877193,0.7359154929577465,0.1222222222222222,0.4968185288877577,0.7095046854082999,0.6508058326937836,0.529923830250272,0.090625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024512783112515,0.0049172183751888,0.0075284854757049,0.0100037577567208,0.0124956788742704,0.014506326794458,0.0165100589062595,0.0188376958008061,0.0211196370732903,0.0232988846822879,0.0255553733912615,0.0276916760751308,0.0298895720660511,0.0321417905067919,0.0343621696341991,0.0363033234126984,0.0384539742674078,0.0405898701621935,0.0426617613435596,0.0447888673624565,0.0595586085939783,0.073076037589736,0.086394243879927,0.099124015437519,0.1113302050930563,0.1263256954944857,0.1389298403775786,0.150886787032801,0.1625885142423821,0.1735983788478239,0.1871790178619494,0.2002704895861509,0.2124323031080758,0.2239070306435919,0.2346393294762082,0.2454436742919148,0.2552878015023495,0.2650198539916084,0.2741633472917305,0.2833925094490894,0.291505612776299,0.2996160868954539,0.3065520589140678,0.3125937481250375,0.3180492074297384,0.3238569030219237,0.3292786918138041,0.3352168367346939,0.3403485098156245,0.3449475048263825,0.3454547906048594,0.3454289965283518,0.3457105370822341,0.345939530777358,0.346258077965395,0.3461254839304369,0.3453672953776238,0.3457854721390251,0.3473561603946489,0.3490674113056242,0.3503106989317964,0.3504583160103739,0.3518456305379414,0.352682478066731,0.3538134569869101,0.3547291116744636,0.3569367876831671,0.3584649399873658,0.3617006275118099,0.3637597827823031,0.3646290204678362,0.3670635980135633,0.3680121281030888,0.3688238860260685,0.3705373919579106,0.3682092555331992,0.3706830391404451,0.3740190004130524,0.3717555121406642,0.3713163064833006,0.0,2.535145084026824,61.22721279149116,198.1387005413611,297.30707618383764,fqhc7_80Compliance_baseline,83 -100000,95660,42400,399.74911143633705,7007,71.83775872883128,5508,56.89943550073176,2242,22.998118335772528,77.28108161739658,79.66885133511153,63.29287913429015,65.05580485855856,77.00805742194501,79.39658718730946,63.19314465729262,64.9596601809848,0.2730241954515691,272.264147802062,0.0997344769975328,96.14467757376131,108.51434,76.1007776474662,113437.29876646456,79553.17860073822,267.32492,166.23903090621647,278740.8634748066,173075.5425743344,297.16645,142.75049515607876,306385.85615722346,146021.69471526914,3997.34557,1792.95424698906,4133657.8298139246,1829948.49123188,1356.97675,586.949283640712,1404400.480869747,599600.9281165154,2208.01784,910.7315565363684,2266988.7309220154,916404.6398417592,0.38185,100000,0,493247,5156.240853021117,0,0.0,0,0.0,22426,233.7026970520594,0,0.0,27603,284.29855739075896,1920348,0,68912,0,0,4303,0,0,51,0.5226845076311938,0,0.0,0,0.0,0,0.0,0.07007,0.1835013748854262,0.3199657485371771,0.02242,0.3246329526916802,0.6753670473083198,25.118469947650336,4.586707450448541,0.3286129266521423,0.2080610021786492,0.2231299927378358,0.2401960784313725,11.40980564257558,5.730570690452224,23.80076709592203,12898.755117113711,62.26203286558978,13.358958314490824,20.78925399175392,13.718809655796807,14.395010903548238,0.5490196078431373,0.7556719022687609,0.7121546961325966,0.5842148087876322,0.1141345427059712,0.7205363443895554,0.9217877094972068,0.8538011695906432,0.7589928057553957,0.1567164179104477,0.4896113419701784,0.6802030456852792,0.6561295296838859,0.5331230283911672,0.1033175355450237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070759256445,0.004328916554304,0.0065559130072967,0.0089402728815109,0.0112177857331733,0.0132682986436397,0.015529090278769,0.0178053661126311,0.0202300025555839,0.0223441386298733,0.0245870543724559,0.0266438046737032,0.0286918963389551,0.0307657434882954,0.032592653752077,0.0345544216632029,0.0365033820528491,0.038662736387603,0.040414443092095,0.0425696029686148,0.0574861560965416,0.0716671727907683,0.0852482075937142,0.0984353462335721,0.1109469796887364,0.1260064114093462,0.1400271773748354,0.1515880962017766,0.1634359396550802,0.1745246045977258,0.1884747298259237,0.2011551548514336,0.213442522977741,0.2247237765683687,0.2354230938739532,0.2464290467107306,0.2568794009165083,0.2664323611909026,0.2755991409188532,0.2837876581153453,0.2911317606710849,0.2991211624091868,0.3071841942981832,0.3137513962789915,0.3204084364769311,0.3263215070488606,0.3315739324490359,0.3370618845977246,0.3424506380382433,0.3482565989780519,0.3492698215419532,0.3502319416832339,0.3504274714075416,0.3501829162069566,0.350337494773311,0.3491877922717204,0.3487828905554849,0.3504741485940463,0.3509178644411244,0.3516363310320093,0.3528337068916806,0.3542504479394784,0.3547773929205035,0.3561764307942092,0.3571151515151515,0.3593078133193497,0.3621719405042209,0.3659286982999238,0.3683634179942774,0.3703171179806694,0.3711614263452195,0.3733497247314127,0.3766588354816179,0.377279316395819,0.3782969103240391,0.3772743279727668,0.3788972508063277,0.3798905331441313,0.3797814207650273,0.3767096522078937,0.0,2.555014255416997,62.3073747426226,202.83872204569224,314.0779596649811,fqhc7_80Compliance_baseline,84 -100000,95728,42489,400.0083570115327,6976,71.60914257061675,5460,56.48295169647334,2187,22.469914758482368,77.3612597271838,79.72819530158941,63.34108899169471,65.08959696101634,77.08187473852969,79.44755730702022,63.23755710149101,64.98823664836812,0.2793849886541153,280.63799456919014,0.1035318902037047,101.3603126482252,110.33836,77.24131255301066,115262.36837706836,80688.31747556687,268.5538,168.21258580141566,280004.0322580645,175184.94672553035,301.58184,145.30391111812682,311800.7061674745,149240.91905086895,3917.53865,1779.756488933113,4053125.8670399454,1819942.095241845,1299.91026,576.6856350277477,1339262.6399799432,583773.4159729291,2147.78642,905.0986387906798,2208070.762995153,914933.6342661156,0.3806,100000,0,501538,5239.198562594017,0,0.0,0,0.0,22655,236.08557579809465,0,0.0,27922,288.4318067858934,1913299,0,68713,0,0,4380,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.06976,0.183289542827115,0.3135034403669725,0.02187,0.3217059544897125,0.6782940455102875,24.848751215349985,4.511746851254724,0.3362637362637363,0.2076923076923077,0.2285714285714285,0.2274725274725274,11.256047493330174,5.837460044562793,23.29456803926574,12780.02957657881,61.85904300588695,13.352465745544752,20.871504966204856,13.98674918688315,13.648323107254184,0.5481684981684982,0.7530864197530864,0.7037037037037037,0.5793269230769231,0.0998389694041868,0.7165963431786216,0.926027397260274,0.8941908713692946,0.6976744186046512,0.145985401459854,0.4888558692421991,0.6710013003901171,0.6358936484490398,0.5417106652587117,0.0867768595041322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0047347716765349,0.0068498711209433,0.0091739391045503,0.0112478389097935,0.0133093012362273,0.0154181877511063,0.0176341450962373,0.0199167748729641,0.0218058968058968,0.0241354208319235,0.0263855223696643,0.0284480098734958,0.0306576561727377,0.0325679789484546,0.0345918451740964,0.0366389130524833,0.0387489103814702,0.0408347891190416,0.0430202754797974,0.0570086139389193,0.0712267113250994,0.0845379209063253,0.0969821240799158,0.1087254405936419,0.124616783305495,0.1376988335100742,0.1500031922364808,0.1617138096051956,0.1722285947064309,0.1855153923183771,0.1987753689038902,0.2114378907311769,0.2227688136779045,0.2332347411129559,0.2446560026567775,0.2545142258060918,0.2645772676686489,0.2732159259721261,0.2812049185958645,0.2896349925980755,0.2969959088252484,0.3039656437072616,0.3102775082941085,0.3170391400354274,0.3232829171640597,0.3297372302922719,0.3353387092671262,0.3400132129486897,0.3447109796047765,0.3451351278527739,0.3458390083508743,0.3456569214512152,0.3461927906034832,0.3468965722447036,0.3466004079817175,0.34654500522764,0.3473940110711411,0.3488217099304476,0.3494751524472023,0.3499830998610433,0.3515165952040654,0.3525883838383838,0.352970230344394,0.354893328818151,0.3559250794651535,0.357941641512146,0.3598145678541944,0.3620836286321757,0.3641618497109826,0.3681265764732859,0.3696230834752981,0.371347428210792,0.3704127565423056,0.3704782486141125,0.3694826767916468,0.3723029839326702,0.3711843711843712,0.3677546426561621,0.3609443777511004,0.0,2.144913864343932,62.67235041050777,205.67261122464583,304.6545140407157,fqhc7_80Compliance_baseline,85 -100000,95664,42066,397.7776384010704,6754,69.57685231644088,5305,55.00501756146512,2116,21.857752132463624,77.2430810454354,79.64781563202408,63.27207635196621,65.05016540380657,76.97936374508402,79.38109032437822,63.17543462434411,64.95422483971429,0.2637173003513879,266.72530764585645,0.0966417276220994,95.94056409228811,108.93938,76.348406703868,113877.09065061048,79808.9215419259,264.99327,165.55153031952844,276514.71818029776,172565.75129571048,292.13032,139.50933503094365,302351.636979428,143465.3458812687,3798.16793,1699.1076940236574,3941071.5629703966,1746870.7810917983,1275.30338,550.6397459816286,1319664.3460444892,562156.8947947435,2081.0402,865.6442126374764,2150499.393711323,883417.0871459771,0.37716,100000,0,495179,5176.231393209567,0,0.0,0,0.0,22340,233.02391704298375,0,0.0,27051,279.7708646930925,1916825,0,68815,0,0,4328,0,0,53,0.5540224117745443,0,0.0,1,0.0104532530523498,0,0.0,0.06754,0.1790751935518082,0.3132958246964761,0.02116,0.3291995490417136,0.6708004509582863,25.10753132415012,4.515400722219382,0.3362865221489161,0.2163996229971724,0.2145146088595664,0.2327992459943449,10.940425392452337,5.422497173420665,22.576348959664948,12729.955097287557,59.93982885477541,13.545396407872255,20.15574745715508,12.648120053458651,13.59056493628942,0.5485391140433553,0.7587108013937283,0.6911434977578476,0.5720562390158173,0.1255060728744939,0.7068702290076336,0.926829268292683,0.8538283062645011,0.7182539682539683,0.1356589147286821,0.4966207759699624,0.6790757381258024,0.639320029563932,0.5304740406320542,0.1228249744114636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019154370034052,0.0042805266467855,0.0065277199679197,0.0088499171907863,0.0110768667419364,0.0133000661948164,0.0154167728778995,0.0176339650383924,0.0196846367801047,0.0217605013619513,0.0238537190675923,0.0259404171416248,0.0281162907886753,0.0299474605954465,0.0318638329497011,0.0334715486666184,0.0355000776920288,0.0373753204562674,0.0391812196415755,0.0411150261660029,0.0563009404388714,0.0701133292833651,0.083493433277692,0.0961182216234422,0.1084601904440174,0.1241637025745257,0.1374244468286257,0.1501487095845725,0.1626297207660212,0.1741446336905861,0.1882727370805912,0.201170668256463,0.2127555299012187,0.2237200897990472,0.2342392981528016,0.2450933620316643,0.2554426218509946,0.2650563026252014,0.2732295728691777,0.2812403243007694,0.2891879049175388,0.2965778131734283,0.3046002203556492,0.3114492457969832,0.3161264408388816,0.3220885419240081,0.3272829904666332,0.3327166951596029,0.3381136094982009,0.3424940428911834,0.3425713437187829,0.3422649419422456,0.3429419245442984,0.3431093971991069,0.3433038444898629,0.343302171105234,0.3426971653994209,0.3428279094329658,0.3443039277931259,0.3453041152928086,0.345936869115677,0.3464135609425731,0.348697521497218,0.3509182571119913,0.3528301886792452,0.3542340352814365,0.3549726145863361,0.3585666222306862,0.3606452756603439,0.3631750634287785,0.3640987699990752,0.3666290140390511,0.366233103800051,0.3714549938347719,0.3763862332695984,0.3814271984622777,0.3768639146130905,0.3783839636288489,0.3756628523583589,0.381789761625635,0.0,1.6459728279680907,58.453576370713016,202.39789873096203,303.0443503136185,fqhc7_80Compliance_baseline,86 -100000,95818,42535,399.3821620154877,7041,72.2828696069632,5489,56.701246112421465,2238,22.970631822830786,77.44904619750217,79.77555745744543,63.38601454967061,65.10691278979242,77.1764550588405,79.50318963522737,63.28605658077622,65.00954297091853,0.2725911386616673,272.3678222180581,0.0999579688943939,97.36981887388652,110.07854,77.0868437015785,114882.48554551338,80450.90499603446,271.1578,169.01213911389164,282408.7019140454,175805.96051207956,299.40277,143.0813486235985,309271.32689056336,146830.14315874304,3893.7525,1755.329638559144,4023242.929303471,1791624.420704631,1347.9424,584.4639865160676,1390456.1982091048,593708.8384253944,2188.81956,907.2793589140722,2247995.867164833,914962.7642178,0.38189,100000,0,500357,5221.931161159699,0,0.0,0,0.0,22797,237.3144920578597,0,0.0,27853,287.4407731323968,1919513,0,68863,0,0,4426,0,0,44,0.4592039074077939,0,0.0,0,0.0,0,0.0,0.07041,0.1843724632747649,0.317852577758841,0.02238,0.3130399568034557,0.6869600431965442,25.275011284638857,4.429311815960679,0.3246492985971944,0.2229914374202951,0.2306431043905993,0.2217161595919111,11.13446805562604,5.7300828992078845,23.611826044935388,12882.037954625765,61.81653854822248,14.45180707737008,19.928703320315662,14.234996669723536,13.201031480813176,0.5647658954272181,0.7843137254901961,0.6952861952861953,0.5860979462875198,0.1306491372226787,0.7160493827160493,0.91644908616188,0.8426150121065376,0.7379518072289156,0.1686746987951807,0.5141050583657587,0.7241379310344828,0.6508400292184076,0.5321199143468951,0.1208677685950413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024913158401101,0.0050581330522133,0.0072245390804947,0.0096098170477748,0.0117860011999552,0.0140612749839634,0.0162515420613154,0.018452933791935,0.0208277976494634,0.0233805036273035,0.0254444842957421,0.0275759441707717,0.0297800164473684,0.0316904671203681,0.0336320788770742,0.0356729616926319,0.0377247182289564,0.0396607322459898,0.0418480462946609,0.0436914428482198,0.0583952265709755,0.0733216933097744,0.0868694914010836,0.1000052529285076,0.1124340157413943,0.1280685624914138,0.1407931140485705,0.1532269213182045,0.1650930815597162,0.1758457106753906,0.1888590170986127,0.2018756009810171,0.213491563701114,0.2243697478991596,0.2347793625174303,0.2455502244234638,0.2558732775617961,0.2661839003031324,0.2748281757758982,0.2830906722132065,0.2909166483852717,0.2981524492011064,0.3056755672025875,0.3118423569925387,0.318412663781923,0.3242877694303385,0.3290565755151454,0.3349321152138053,0.3399850175656127,0.3455677212191398,0.3456848156007414,0.34611477210324,0.3466391277468667,0.346816058141547,0.3474473317727932,0.3470873786407767,0.3464328518261528,0.347321063394683,0.3484299208577993,0.3502357441508762,0.3512912508876182,0.3534002009971033,0.3552859981177454,0.355929171883384,0.3576905511621758,0.3579062329354864,0.3586770738377393,0.3610316986585404,0.3629864412748723,0.3657199602780536,0.3654970760233918,0.3676290090186243,0.3693351080687076,0.3696367112810707,0.3715396283655669,0.3762340906387534,0.37442218798151,0.3741287412874128,0.3710883411797286,0.372985418265541,0.0,2.2177210594208936,60.601866996257634,209.02556107074776,308.21274891940334,fqhc7_80Compliance_baseline,87 -100000,95815,42498,399.8538850910609,6800,69.88467358973021,5348,55.32536659186975,2212,22.793925794499817,77.3497797498425,79.68438843734259,63.33168066437421,65.06055687577795,77.08288672213146,79.41470576966651,63.23526516982424,64.96498682397117,0.2668930277110348,269.6826676760793,0.0964154945499728,95.57005180677436,110.1529,77.11858622678187,114964.14966341387,80486.96574313194,267.90555,167.25070627776878,279124.46902885765,174073.966372701,293.78528,140.79833470804482,303362.9494338047,144385.34078068944,3878.33282,1729.5016067533586,4017774.4090173775,1775086.7158100065,1278.57401,552.5580292141664,1323714.4810311538,565987.6315964786,2183.10276,892.2146526710642,2251581.5895214737,908806.1404626888,0.38122,100000,0,500695,5225.643166518812,0,0.0,0,0.0,22578,235.13019882064395,0,0.0,27139,280.01878620257787,1915394,0,68715,0,0,4359,0,0,51,0.5218389604967907,0,0.0,1,0.0104367792099358,0,0.0,0.068,0.1783746917790252,0.3252941176470588,0.02212,0.3200670297444491,0.6799329702555509,24.989489901786754,4.532282554073,0.3290949887808526,0.206619296933433,0.2213911742707554,0.2428945400149588,11.198938520667316,5.605592773315811,23.227426512182287,12836.140159611266,60.05499650079731,12.923111558847662,19.89588706696395,13.101818815586684,14.134179059399012,0.5416978309648467,0.7592760180995475,0.6994318181818182,0.5793918918918919,0.1085450346420323,0.7219696969696969,0.9262295081967212,0.8741721854304636,0.71875,0.1387755102040816,0.4826216484607746,0.6765899864682002,0.6388676358071921,0.540948275862069,0.1015180265654649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387908503353,0.0043598608900199,0.0065053687052185,0.0085848682806896,0.0106194690265486,0.0126571966804134,0.0149877650897226,0.0171187080836642,0.0195222666271451,0.021586710201742,0.0236081639347623,0.025617594513009,0.0277623542476402,0.0299033085168823,0.0321735452791846,0.0342636315729652,0.0362089311222905,0.0387403926937797,0.0406553902418751,0.0428318584070796,0.0573783318554066,0.0715316408047178,0.084748249696055,0.0970765641747756,0.1097363040408085,0.1252299494639798,0.137696607167478,0.1507108802996765,0.1618391541172701,0.1732340891053004,0.1869578803323025,0.1996233725473219,0.2118631162163338,0.2229254801648466,0.2343835947985654,0.2454511203209148,0.2560491071428571,0.2666119308979665,0.2762807057355194,0.2844449533405851,0.2930663520266519,0.3010745144808072,0.3081627824441026,0.3140304870017123,0.3201082931685464,0.3262074230968155,0.3311995198919757,0.3366698038816676,0.3418634151392772,0.3468919097268048,0.3470470955921974,0.3475601355633317,0.3479248050318013,0.3477454503303582,0.3482098995161891,0.3473577610016571,0.3472197985246292,0.3480728421260425,0.3488866050017129,0.3495691739963814,0.3514361982103917,0.3519944433419329,0.3529003637281079,0.3540507805490759,0.3552869653325613,0.3561091775050375,0.3583459635677314,0.3605384275896854,0.3625228134213112,0.3647674142166574,0.3685050864467862,0.3670056978539858,0.3668039277795375,0.3696993060909792,0.3682063928673053,0.3678941723274937,0.3645076518781883,0.3606424069932913,0.3638613861386138,0.365482233502538,0.0,1.9552859152315616,58.37107583079357,200.57992373261,306.14151816226587,fqhc7_80Compliance_baseline,88 -100000,95806,42716,401.74936851554185,7053,72.42761413690165,5526,57.15717178464814,2173,22.35768114731854,77.41775944651599,79.74663822612587,63.37436231324406,65.0953896553553,77.14743348900963,79.473279888172,63.27602082983055,64.9980317290129,0.2703259575063583,273.35833795386577,0.0983414834135132,97.35792634241136,109.32196,76.54574803906182,114107.63417740016,79896.61194399287,268.41204,167.6543099067298,279654.4475293823,174485.95067817232,301.19044,143.95013008853968,310915.8612195478,147597.6885589378,3974.17656,1788.1632043968862,4110380.832098199,1828672.634696039,1321.03318,578.3219458178144,1365081.6754691773,589865.0221857565,2141.5672,885.8902588929785,2204447.007494312,899572.0181580872,0.38359,100000,0,496918,5186.71064442728,0,0.0,0,0.0,22578,235.13141139385843,0,0.0,27971,288.4996764294512,1922034,0,69008,0,0,4360,0,0,57,0.5845145397991776,0,0.0,0,0.0,0,0.0,0.07053,0.1838681926014755,0.3080958457394017,0.02173,0.3201943844492441,0.6798056155507559,24.852290438650343,4.520613177126188,0.3177705392689106,0.2245747376040535,0.2274701411509229,0.2301845819761129,11.295988464630742,5.811403575120933,22.995796365907253,12916.568922464878,62.349322451847456,14.710979571182545,19.94597541236776,13.903048828907028,13.789318639390132,0.5595367354325009,0.7945205479452054,0.7038724373576309,0.5727923627684964,0.1179245283018868,0.725531914893617,0.9249394673123488,0.8552631578947368,0.717687074829932,0.1619433198380566,0.5026724975704567,0.7294685990338164,0.6507692307692308,0.5285565939771547,0.1073170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024706609017912,0.004632398406536,0.0069202747815851,0.0091608945583067,0.0112462376962498,0.0133352335192801,0.0155335847518091,0.0177390381317873,0.020135325742554,0.0225672411675604,0.0249589995899959,0.0269970641975815,0.0291520615112609,0.0314198649316422,0.0334388501077508,0.0355718977876014,0.0376085359164622,0.0395828149622625,0.0414398504051527,0.0432374467730684,0.0575837567688824,0.0712650407184001,0.0847903563941299,0.0977216147228437,0.1106067467798502,0.1260868187244472,0.1400908869421522,0.152558950479471,0.1643318218191517,0.1758505441768789,0.1892031401225938,0.201935957823776,0.21357220412595,0.2244860078395405,0.2357290384953418,0.2465541273037014,0.2574791564492398,0.2673209513328991,0.2762663102573396,0.2846817173311375,0.2930438901533094,0.3003549660213446,0.3076114431504099,0.3139946855624446,0.3201956097028237,0.3265240786573578,0.3321834770653668,0.3378615361154882,0.3431195033626487,0.3486589028824366,0.3500557863182374,0.3498136509289948,0.3491777427348502,0.3496504506586549,0.3503454423891241,0.3499072981628181,0.349587705553709,0.3498276710979813,0.3513135448652337,0.3523388161415777,0.3530018181477385,0.3536188428382616,0.3543288955873733,0.3552420075013395,0.3579789027503492,0.3584403382398998,0.3591521168549583,0.3611041088984119,0.3626616985376827,0.3646665871406417,0.3678439256179467,0.370230026151465,0.3700373583233078,0.3683648566198901,0.366685616827743,0.369943584203577,0.3723321389624552,0.3756127450980392,0.3714285714285714,0.3703131039814457,0.0,2.0266877558455927,62.37206520297643,205.75238821194364,313.45929888083265,fqhc7_80Compliance_baseline,89 -100000,95713,42540,401.9203243028638,6965,71.46364652659514,5389,55.63507569504665,2224,22.81821696112336,77.3893283971574,79.75038796026773,63.35181630130408,65.0936103650474,77.11426132781904,79.47639023010548,63.25060146538616,64.995793702119,0.2750670693383625,273.99773016225026,0.101214835917915,97.81666292839476,108.14056,75.73362310259152,112984.19232497152,79125.74373657866,264.9581,165.49732171261624,276142.185492044,172226.7369514714,293.8695,141.01284295461275,302736.2949651563,144042.19733152806,3918.29179,1757.084655811929,4046505.114247803,1788678.243396753,1324.77229,577.2210196847088,1365406.1726202292,584498.216228351,2193.70014,914.8298206408244,2252293.627824852,922011.5721297855,0.38251,100000,0,491548,5135.6451056805245,0,0.0,0,0.0,22240,231.6404250206346,0,0.0,27281,280.7560101553603,1927241,0,69099,0,0,4298,0,0,39,0.40746816002006,0,0.0,0,0.0,0,0.0,0.06965,0.1820867428302528,0.319310839913855,0.02224,0.3184556407447974,0.6815443592552026,25.23171280967614,4.516883662855146,0.3267767674893301,0.2119131564297643,0.2189645574318055,0.2423455186491,10.862097033544462,5.393210878270219,23.666873499324065,12873.890693303452,60.48667310971905,13.472436715312162,19.778566540667583,12.906984577424897,14.328685276314408,0.5312673965485247,0.7600700525394045,0.6871095968199886,0.5440677966101695,0.1094946401225114,0.7012987012987013,0.8940217391304348,0.8734793187347932,0.7364341085271318,0.1470588235294117,0.4767156862745098,0.6963824289405685,0.6303703703703704,0.4902386117136659,0.0996131528046421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091647508026,0.0047736325215117,0.0066847225180812,0.0088949361818791,0.0111321215078687,0.0132931620625776,0.0155816892222403,0.0178057590661415,0.0196184617899802,0.021713104605593,0.0236909519417973,0.0258341199162802,0.0279692974794751,0.0298298524976582,0.0317630558534774,0.033905486261096,0.0359864170945834,0.0378184383038752,0.0396332907168917,0.0416488702301209,0.0567233691509246,0.0716909264045708,0.085074470316761,0.0979654066558014,0.1100440640087706,0.1254454890597404,0.1386051445239989,0.1509709151300941,0.1632890702618394,0.1742799545347316,0.1881393896319269,0.2014734040826923,0.2132582388309612,0.2241202073445462,0.2349581866197183,0.2466651894526922,0.2571721997722757,0.267022126233141,0.2762569515378504,0.2846372427700628,0.2926344036272786,0.2998842416659846,0.3066015421732343,0.3133091414268434,0.3201840654670843,0.3262071598339963,0.3318274537286163,0.3371323903531087,0.3421100347096306,0.347056727762163,0.347633653509834,0.348202250281973,0.3487694710625185,0.3487302597327471,0.3496009867590019,0.34951084709953,0.3492256829650252,0.3498942397560136,0.3510173426191451,0.352380442349917,0.3531108364235681,0.3545039435450394,0.3566663869776808,0.3569701312077381,0.3592752331156784,0.3595812827122881,0.3602222538823194,0.363067735344963,0.364963503649635,0.3679245283018867,0.3701508866298947,0.3713280375326545,0.3710994366732071,0.3709775812109196,0.3732614249219415,0.3750297548202809,0.3748657357679914,0.3773584905660377,0.3816901408450704,0.3855516293678838,0.0,2.551266902870296,57.236854473219104,205.94234957271223,306.9644165534968,fqhc7_80Compliance_baseline,90 -100000,95684,42634,401.2060532586431,6873,70.76418209941056,5377,55.735546172818864,2180,22.45934534509427,77.35982293729873,79.73737256333476,63.33991942654043,65.09076062885813,77.09173740069424,79.46517568500573,63.24116730437105,64.99234694369956,0.2680855366044881,272.1968783290265,0.0987521221693867,98.41368515857596,109.71686,76.84440256711495,114665.83754859748,80310.60842681635,269.14689,168.2328257325741,280828.0276744283,175362.0518922433,298.92839,143.0193934939005,309475.77442414616,147223.26892894742,3867.69135,1752.656785746912,4011241.20020066,1800827.5006760922,1274.13037,561.3891771289271,1319873.228543957,574998.610809749,2137.37264,899.8594636647712,2203516.847121776,915259.8094444622,0.38182,100000,0,498713,5212.083524936249,0,0.0,0,0.0,22561,235.3057982525814,0,0.0,27639,285.9516742611095,1916583,0,68772,0,0,4328,0,0,64,0.668868358346223,0,0.0,1,0.0104510680991597,0,0.0,0.06873,0.1800062856843539,0.3171831805616179,0.0218,0.3261019759568882,0.6738980240431118,25.1226119773601,4.497056282237341,0.3358750232471638,0.215547703180212,0.217779430909429,0.230797842663195,11.03470708263291,5.585571330451998,23.31792928610341,12889.83116036131,60.70694584357887,13.75449289793646,20.18863339805168,13.14621441068127,13.617605136909466,0.5397061558489864,0.7627264883520276,0.6733111849390919,0.5636208368915457,0.1144238517324738,0.7018544935805991,0.911917098445596,0.8470066518847007,0.7003367003367004,0.1567164179104477,0.4825157232704402,0.6882276843467011,0.6154981549815498,0.517162471395881,0.1027749229188078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582735852878,0.0046117513505843,0.0069903109623091,0.0092624565822347,0.011611355132585,0.0139345513766603,0.0160690449260742,0.018375300983553,0.0205826472450918,0.0227003028071036,0.0249451922879914,0.0270838676583739,0.029487943758094,0.0314861720310537,0.0334914904589994,0.0355529832466901,0.0373924656045218,0.0395050716671161,0.0414804033683335,0.0436658468464713,0.0589630279666948,0.0726655916905744,0.0858033502665939,0.0983911867759551,0.1105415269075796,0.1258332804266395,0.1386506453804347,0.1518911837073804,0.1641384176261184,0.1754193901535885,0.1891056034482758,0.2018624796968056,0.21435955471887,0.2257877398242292,0.2366038982490915,0.2472333307485238,0.2575979106443296,0.2675353292336058,0.2761772978858542,0.2845955692941783,0.2916782343142698,0.2990535022755724,0.3061693037787429,0.3133146444316657,0.3197213693676201,0.3243972120286678,0.3307283526101907,0.3365844354018311,0.342176782709978,0.3464523281596452,0.3464902836841255,0.3466011533644383,0.3468204831680934,0.3473226160874342,0.3476284555623227,0.34772549680543,0.3472004310686382,0.3481857955853811,0.3494696437445379,0.3514370131614289,0.3528903579611614,0.3532768048181314,0.3538568187547265,0.3549956286847945,0.356499325496242,0.3561497326203208,0.3567318101532676,0.3583461913908745,0.3605215068878268,0.3619191838686538,0.3639690745230797,0.3683618843683083,0.3711261318709348,0.3707215541165587,0.3698421753185016,0.3697408077154913,0.3735107535200371,0.3726328649969456,0.3745592622728506,0.3686440677966102,0.0,1.730986801950587,62.258738918350616,197.3450057513236,303.746534158856,fqhc7_80Compliance_baseline,91 -100000,95861,42481,400.5174158416874,6968,71.47849490407987,5426,56.10206444748125,2224,22.80385140985385,77.34109898624328,79.63130975302927,63.34986309044478,65.04390794960773,77.05911988810276,79.35114821462524,63.24501114240061,64.94272323738656,0.2819790981405248,280.16153840403035,0.1048519480441712,101.1847122211691,109.79452,76.96996119803774,114535.12898884845,80293.3009232511,267.74744,166.7579744433951,278807.24173542944,173457.34390773633,290.85928,139.45479368619857,300900.4913364142,143492.4086550617,3946.71836,1777.8189430103066,4081720.1364475647,1819173.9320581944,1320.33175,581.4043279840488,1362147.4426513389,591315.2773119922,2189.92172,923.3446936170512,2247976.132107948,930649.6946205958,0.38191,100000,0,499066,5206.142226765838,0,0.0,0,0.0,22557,234.77743816567735,0,0.0,27010,279.331532114207,1917618,0,68822,0,0,4441,0,0,38,0.3859755270652298,0,0.0,0,0.0,0,0.0,0.06968,0.1824513628865439,0.3191733639494833,0.02224,0.3223388305847076,0.6776611694152923,25.007413618685323,4.507256822304364,0.3380022115739034,0.1988573534832289,0.2231846664209362,0.2399557685219314,10.780934436725056,5.377294507542066,23.96878317625933,12827.880316225956,61.42588770096394,12.732805960069644,20.74167606399613,13.688961670027425,14.26244400687076,0.5407298193881312,0.7534754402224282,0.6842966194111232,0.5928984310487201,0.1136712749615975,0.6909620991253644,0.913793103448276,0.8387799564270153,0.7073170731707317,0.1510791366906475,0.4898865318204243,0.6771545827633378,0.6327272727272727,0.5573593073593074,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682395828059,0.0043165030245919,0.0067654606497682,0.0089954718053891,0.0108755310714939,0.0131787836847675,0.0150778854284462,0.0170976791634787,0.0192838028312871,0.0212465603486195,0.023344191096634,0.0254046070849828,0.0274239934264585,0.0294880237056547,0.0317371995012725,0.0337193460490463,0.0359118592892078,0.0379323206995876,0.0399294019933554,0.0418040888518961,0.0566759823141736,0.0706193432411529,0.0841556156118408,0.0976642090448883,0.109519797809604,0.1249366232888288,0.1382832199690632,0.1507331440662647,0.1630096051227321,0.1742984543486183,0.1884814499897751,0.2012286128355432,0.2139354866765962,0.2247840822127473,0.2349335944806945,0.2461939058171745,0.257318230009486,0.2669292224597727,0.2761376147830331,0.2847635084825366,0.2925827354778986,0.3004152775340703,0.3074483444178836,0.3136206731230223,0.3196466328043357,0.3250925240562546,0.3306277869632747,0.3356853554780039,0.3400761973875181,0.3455035757247287,0.3456994902500202,0.3457366905086754,0.3456183456183456,0.345806320613787,0.3459300590797876,0.345519647165491,0.3461489557837185,0.3472197005958374,0.348120223094402,0.3492120666366501,0.3501616654376311,0.3523655785403962,0.3531475922715935,0.3546688958676939,0.3552468309773485,0.3571616918046619,0.3580960598216853,0.3610872947826363,0.3644909354348517,0.3659404357385569,0.3688340292754554,0.3702355460385439,0.3712669970771381,0.3723461332106997,0.3732951835956127,0.3759163562071866,0.3751356378855991,0.3815441026685679,0.3765945646145313,0.3879142300194931,0.0,1.978810641390716,60.72496741835885,204.23462466713733,309.9744763655228,fqhc7_80Compliance_baseline,92 -100000,95652,42739,403.4730063145569,6923,71.30012963659934,5457,56.58010287291432,2208,22.77004140007527,77.31769350596971,79.74107192967467,63.289715480586615,65.08200906555263,77.04413546949837,79.4634870229723,63.18997056566505,64.98245590007505,0.2735580364713428,277.5849067023728,0.0997449149215654,99.5531654775732,109.22296,76.53355006983509,114187.8476142684,80012.49327754264,270.50273,168.862268817466,282345.50244636805,176084.82709976373,304.46379,145.65741875459003,315141.57571195584,149793.60191326344,3905.53809,1754.4992750467716,4053307.155103918,1804489.7598030076,1332.46186,574.3340476428941,1383710.0949274455,591120.4863911833,2169.74762,896.4330268508878,2240022.268222305,914222.8933382996,0.38206,100000,0,496468,5190.3567097394725,0,0.0,0,0.0,22741,237.25588591979255,0,0.0,28178,291.5568937398068,1914068,0,68683,0,0,4341,0,0,55,0.5540919165307573,0,0.0,0,0.0,0,0.0,0.06923,0.1812019054598754,0.3189368770764119,0.02208,0.3181693238042881,0.6818306761957119,25.032594853091734,4.474872341478256,0.3197727689206524,0.2213670514934946,0.2296133406633681,0.2292468389224848,11.106040781590904,5.5845211021554535,23.35261841310604,12860.846670487086,61.5412342538281,14.29510040327939,19.680813396447835,13.960882142254016,13.604438311846868,0.5552501374381529,0.7872516556291391,0.6808022922636103,0.5905826017557861,0.1207034372501998,0.7313540912382331,0.9414758269720102,0.849015317286652,0.7448979591836735,0.1392405063291139,0.4955839057899902,0.7128834355828221,0.6211180124223602,0.543274244004171,0.1163708086785009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021679228462598,0.0044923538717397,0.0067208121827411,0.0088618786776288,0.0111611912053476,0.0134983700081499,0.0156999163487238,0.0177361844726652,0.0198745305128283,0.0220996740400582,0.0240209413334702,0.0260035370568396,0.0283081042117186,0.0305856139301224,0.0327110045770609,0.0347068440985947,0.0368066355624676,0.0387535705011685,0.0406893250359023,0.0425782634992804,0.0570058103080717,0.0708522810620507,0.0841210822619947,0.0969773565034228,0.1091786521362647,0.1247749560502404,0.1383744036044077,0.1509773827034171,0.1631135879854953,0.1742581275709115,0.1880770558288031,0.2019330790568654,0.2144708752668496,0.2260406741794526,0.2361155503631614,0.2469689070316919,0.2567504135187089,0.2662432003243572,0.2754794971667367,0.2838886405574849,0.2922433662655347,0.2992648608152085,0.3067025272212414,0.3132417351652967,0.3190728235079394,0.3247856922602528,0.3313382001227132,0.3369869640492922,0.3427745514881261,0.3478444799915392,0.3482032050936168,0.3485347404968242,0.3490196078431372,0.3494496912196462,0.3494364647455913,0.3489603314662779,0.3478033140752968,0.3482477480439213,0.3491553245332056,0.3492927094668117,0.350690416495154,0.3522063467003473,0.353398827774649,0.3539106581324293,0.3539292141571685,0.3551942468537481,0.3561686740126989,0.3592887606623181,0.3605205921560373,0.3634520591508984,0.3643691321273185,0.3644859813084112,0.3668631552259618,0.3674873833919559,0.3723896815647737,0.3734094422642407,0.3845325953259532,0.3805668016194332,0.3841901603095633,0.3785659213569776,0.0,1.874605537709256,61.327280155150085,205.5165675898085,307.6273222213701,fqhc7_80Compliance_baseline,93 -100000,95721,42689,401.1032061929984,6996,71.78153174329562,5454,56.49752927779693,2249,23.1297207509324,77.34880342590687,79.70732740542903,63.338894218876014,65.07751691651883,77.06501321935163,79.42191258163884,63.23326515747968,64.97360697629678,0.2837902065552384,285.414823790191,0.1056290613963355,103.90994022205292,109.96414,77.00710064331253,114879.8487270296,80449.53630166058,269.29957,168.17547919169814,280839.33515111625,175195.0169749028,298.69406,143.137933071741,309224.6006623416,147280.3746338865,3926.85133,1782.7674947633682,4072240.375675139,1832542.788633584,1317.49019,583.4550529047165,1363358.3748602709,596539.3495399263,2207.09386,934.0730534675362,2273637.5299046184,948584.5547775317,0.38279,100000,0,499837,5221.811305774072,0,0.0,0,0.0,22513,234.68204469238725,0,0.0,27728,286.96942154804066,1915007,0,68776,0,0,4395,0,0,61,0.6268217005672736,0,0.0,0,0.0,0,0.0,0.06996,0.1827633950730165,0.3214694110920526,0.02249,0.3280228758169934,0.6719771241830066,25.0779145161762,4.517630239728951,0.3371837183718372,0.2011367803447011,0.2317565089842317,0.2299229922992299,11.299882069026497,5.781548675613099,24.20002527857886,12883.836387946732,61.96154471752929,12.967413141884672,21.06470242352641,14.143494959083185,13.785934193035018,0.5586725339200587,0.7675478577939836,0.711799891245242,0.5862341772151899,0.1236044657097288,0.7064285714285714,0.9054441260744984,0.8485477178423236,0.7254901960784313,0.1596958174904943,0.5076467686235816,0.7032085561497327,0.6632277081798084,0.5417536534446764,0.1140262361251261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0044905323764343,0.0068895540561108,0.0089700220441085,0.0111741499918659,0.0133557286099658,0.0157990765184951,0.0181790343982851,0.0205916917888712,0.0227112225576991,0.024936965746264,0.0270641966439164,0.0291677376240168,0.0316061482709274,0.0337621076302569,0.0357925191155197,0.0377714043134778,0.0399153342533124,0.0418286926324107,0.0440123784814479,0.0594937237619833,0.07349924648359,0.0866162384464471,0.0995560324874805,0.1116162308690286,0.126700374452601,0.139006791171477,0.1522310829083398,0.1637515626168623,0.1744214738603813,0.1879417341837614,0.2013830270761638,0.2138054830287206,0.2243190022973416,0.2343638224579862,0.2452729811805909,0.2559054238272957,0.2654984853433034,0.2744743926125328,0.2832515703085599,0.2920112107103977,0.2998607258640263,0.3072632314451853,0.3135879729535318,0.3199426460581316,0.3256906179505195,0.3312983974880218,0.337103237707525,0.3423375614807145,0.3474749607421385,0.3482245131729667,0.3483771422273654,0.3478469439584626,0.3481742101757739,0.34854036341972,0.3472350088995274,0.3469837844699013,0.3472861842105263,0.3483540574795327,0.3488509555965537,0.3499662212880949,0.352274977230428,0.3532945451490264,0.3542948228638139,0.3552819026922612,0.3544452877594284,0.3553688195480096,0.3574637727013858,0.3598871053095784,0.3630919108839734,0.3651886532635637,0.3685683530678149,0.3665983868902829,0.3714219402754139,0.3749761222540592,0.3730225818137906,0.3786787726988103,0.3791449426485923,0.3795537983620446,0.3817607579944729,0.0,1.8558237238056456,62.177446686091805,211.01026267150172,302.18867804506283,fqhc7_80Compliance_baseline,94 -100000,95638,42488,400.0920136347477,6994,71.80200338777473,5512,57.06936573328593,2305,23.693510947531315,77.26744378178137,79.6801964186722,63.28338998351626,65.06838859702748,76.9858925077802,79.40103215142578,63.1788459615443,64.96759945998093,0.2815512740011598,279.16426724641497,0.1045440219719608,100.78913704654724,109.46826,76.65851594883713,114460.1309103076,80154.09277992674,269.10704,168.78020116734578,280786.39243815216,175886.75343647233,300.41212,144.18101117088352,310616.7109308016,148061.1112405671,3989.2818,1810.316860753409,4128307.806520421,1850443.6568673423,1336.22522,587.0757259795588,1383706.936573329,600400.9498362168,2265.11404,947.5839876340382,2329693.092703737,956889.0327575848,0.38095,100000,0,497583,5202.733223195801,0,0.0,0,0.0,22623,235.93132436897463,0,0.0,27987,289.14239109977206,1912821,0,68684,0,0,4310,0,0,42,0.439155984023087,0,0.0,1,0.0104560948576925,0,0.0,0.06994,0.1835936474602966,0.3295682013154132,0.02305,0.3228797382056176,0.6771202617943823,24.68292859696416,4.5318221027517405,0.3260159651669085,0.2151669085631349,0.2240566037735849,0.2347605224963715,11.148858514106772,5.677700297606814,24.575276064230167,12821.674854282364,62.68769427075231,13.969704416897418,20.3736248028467,13.945888537583942,14.398476513424251,0.5538824383164006,0.7765598650927488,0.6978297161936561,0.5902834008097166,0.1151468315301391,0.7100633356790992,0.9352331606217616,0.8747346072186837,0.7096774193548387,0.1333333333333333,0.4996333414813004,0.7,0.6349924585218703,0.555439330543933,0.110009910802775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0048367471101196,0.0072084145549057,0.0095317453865539,0.0119126339026846,0.0140648551757852,0.0162734261883883,0.0185606795373102,0.0204094153254667,0.0227547363031234,0.0247989826058418,0.0269243017247578,0.0289491281312689,0.031139230071717,0.0333508809958814,0.0355743484239147,0.0375652498135719,0.0394938968695507,0.041336842214756,0.0434542364752859,0.058034781154634,0.0719762034437973,0.0851466016970511,0.0980214596341964,0.1106712273811786,0.1262032085561497,0.1388499447701588,0.1512277261488618,0.1629762745223884,0.1737444687889333,0.1872903566767691,0.2002253374645201,0.2121578231292517,0.2233263655565648,0.2337921162739484,0.2445874975070357,0.2546889653016567,0.2647072067001373,0.2741523257795195,0.2823494335122242,0.2909571140613053,0.2983589671559332,0.3064802748489516,0.3125285120891258,0.3184423486461819,0.3252152005038841,0.3300162927685173,0.3357407619702701,0.3408645802259374,0.3452363626741463,0.3452109194548377,0.3462106265263042,0.3464820570782707,0.3462915971869789,0.3464924059320264,0.346065170611743,0.345764221306913,0.3461012762453684,0.3468072340790263,0.3471052159885284,0.3475902593366857,0.348915921715412,0.3506140017723762,0.3513288663039079,0.3522289754703731,0.3532890068592152,0.3542825999655786,0.3564284357789454,0.3585339943342776,0.3590237636480411,0.3607765011119347,0.3620848458579401,0.3678286596346797,0.3688378231503765,0.3688336520076481,0.3720508166969147,0.3730877302528879,0.3679519071310116,0.3705612829324169,0.3739376770538243,0.0,2.080086311539888,62.91838400738481,212.00599497389248,306.78831367548736,fqhc7_80Compliance_baseline,95 -100000,95829,42409,398.1049577893957,6860,70.37535610305858,5400,55.67208256373332,2177,22.28970353442069,77.40182060844235,79.715889732109,63.36325590393732,65.07597651810397,77.13465176754093,79.45160982604664,63.26462371796026,64.98138837675145,0.2671688409014194,264.2799060623702,0.0986321859770598,94.58814135251714,109.49026,76.72413436021921,114255.87243944943,80063.5865554469,267.97441,167.08370670245807,278963.67487921193,173683.36232197957,299.03667,143.9429428490986,307771.1861753749,146852.01087033356,3894.01096,1756.3115056695092,4021210.374729988,1790527.5723513567,1336.0669,586.3609859737963,1381332.7280885745,599028.1392188871,2141.04392,887.5676575176055,2195730.9582694173,894122.1862761057,0.38097,100000,0,497683,5193.448747247702,0,0.0,0,0.0,22584,234.96018950422103,0,0.0,27712,285.101587202204,1919832,0,68918,0,0,4287,0,0,47,0.4591511964019243,0,0.0,0,0.0,0,0.0,0.0686,0.1800666719164238,0.3173469387755102,0.02177,0.3259814121237342,0.6740185878762658,24.944522093087112,4.489760839491998,0.325,0.2092592592592592,0.2342592592592592,0.2314814814814814,11.374432426475504,5.840637854957433,22.913366148645476,12829.433948826128,60.70312699067204,13.274573380917651,19.689802653587243,14.070469521926292,13.668281434240855,0.5614814814814815,0.7707964601769911,0.7133903133903133,0.5881422924901186,0.132,0.7298091042584435,0.9151193633952256,0.8834080717488789,0.7231833910034602,0.184,0.5047052996532937,0.6985391766268261,0.6554621848739496,0.548155737704918,0.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491767755523,0.0047329961791444,0.007050683764152,0.0093746508628132,0.0117932920568111,0.014363369844049,0.0164500840850022,0.0186058379261073,0.0207698755034037,0.0229063888149679,0.025278307398979,0.0273538136245599,0.0296959480295212,0.0317947345119075,0.0339122901109781,0.0359888406695598,0.0379475607357644,0.0397154589572358,0.0416311776803706,0.0434624231133499,0.0587511342421176,0.0723231647395822,0.0856648852562087,0.0975156258206838,0.1096962419952814,0.125209915400133,0.1387906010975274,0.1506824559911557,0.161889007470651,0.1730901066883756,0.1872714365615454,0.1999697424869514,0.211675104843441,0.2231886274981151,0.2328074322467154,0.2434560191336699,0.2537759632331615,0.2642600089968511,0.2739062358173731,0.2821111683553723,0.290263992040906,0.297336171008934,0.3047171708806095,0.3106700703507952,0.3167280103980661,0.3226454387499846,0.3289042364186872,0.3350458435596475,0.3401327966244288,0.3452984011397815,0.3462050957642973,0.3478003686686659,0.347614959111574,0.3474771966285648,0.3480538366795768,0.347808112205056,0.3472598078779534,0.3480900498818587,0.3497207085632292,0.350787022165114,0.3521656897810902,0.353123702986343,0.3542312526183493,0.3543592613318411,0.3557445173068146,0.3575372434628607,0.357640964335525,0.359121568627451,0.3618349524778171,0.3637050288213079,0.3648710444485092,0.3673523911301095,0.3682114180944553,0.3691791784162792,0.3696283119558093,0.3699100378787879,0.369661717434563,0.3729916615822656,0.3738651994497937,0.3692307692307692,0.0,2.6016341270192527,59.4032717149666,197.4217251263201,312.16066213844954,fqhc7_80Compliance_baseline,96 -100000,95697,42522,400.6708674253112,6924,71.24570258210811,5374,55.581679676478885,2187,22.47719364243393,77.32145341825886,79.70923031303799,63.3143933609397,65.08032283931003,77.04846036632902,79.43536526651715,63.21539877286889,64.98369134550305,0.2729930519298307,273.8650465208394,0.0989945880708091,96.63149380698144,108.70156,76.20798542115682,113589.3079197885,79634.66505862965,267.45049,166.64377232148672,278886.5795165993,173547.10421589678,294.34946,141.3094686514144,303900.32080420497,144831.72702094456,3878.25582,1743.0793333347667,4009929.245430891,1778744.896219073,1313.90766,576.3090991951025,1356325.1303593633,585588.3908110405,2149.4888,889.7140897511013,2209753.0121111427,899239.6263497989,0.38212,100000,0,494098,5163.150359990386,0,0.0,0,0.0,22499,234.5005590561877,0,0.0,27381,282.5062436649007,1922498,0,68952,0,0,4418,0,0,44,0.449334879881292,0,0.0,0,0.0,0,0.0,0.06924,0.1811996231550298,0.3158578856152513,0.02187,0.3213254502956139,0.6786745497043861,25.07689092210067,4.513228971973985,0.3301079270561965,0.2139933010792705,0.2223669519910681,0.2335318198734648,11.24990401800472,5.819974206192078,23.325374644354955,12868.941167768216,60.78330038252896,13.57441156598466,20.009790342607022,13.30930370734368,13.88979476659359,0.5519166356531447,0.7704347826086957,0.6989853438556933,0.5774058577405857,0.1195219123505976,0.7134502923976608,0.8821989528795812,0.868663594470046,0.7630662020905923,0.1622641509433962,0.4967548676984523,0.71484375,0.6440298507462686,0.5187224669603524,0.108080808080808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594634027721,0.0044620221072913,0.0065778788370959,0.0090344610319,0.011069510011395,0.0133037242278542,0.0156439621852595,0.0179803961609148,0.020149459716415,0.0222122136466927,0.0242159546437835,0.0262171515419135,0.0280829527218861,0.0302121652395231,0.0325347591374985,0.0344185854157835,0.036335387643068,0.0385018524476177,0.0404746305598019,0.0425447647635128,0.0573022206438404,0.0705574456948442,0.0836359438298944,0.0966903446461457,0.1090864968663613,0.1250714421794627,0.1380657213212193,0.1510181477379228,0.1635285317375507,0.1755552457451714,0.1903469372367811,0.2035048600437295,0.2156024666383895,0.2267715329584983,0.238063288493901,0.2481123092934168,0.258251625785006,0.2678858453134308,0.2771496932654473,0.2854770738857587,0.2929419113054341,0.3001274600371856,0.3073462913421246,0.3141093263006473,0.3206808986306696,0.3262762485374715,0.3313021608838728,0.3368645953885872,0.3407712108864656,0.3452109351303591,0.3448726058925663,0.345626237079393,0.3460406841697754,0.3464211910576742,0.3469308816090928,0.3464282973989104,0.3459872085826284,0.348055752110451,0.3489825979720471,0.3501324835290748,0.3509098428453267,0.3512349965281222,0.3524686685171166,0.354529714658332,0.3554705469336368,0.3570470504694527,0.358200357163431,0.36060423344229,0.3630956595624159,0.3661318074506822,0.366115210118693,0.3673852423852424,0.3699322163959586,0.3704134667597549,0.3718487394957983,0.3742435245703219,0.3751172241325414,0.3721314864585487,0.3609253065774805,0.3644859813084112,0.0,2.1519141284291785,60.52901882791329,202.19225849712663,303.7104803451977,fqhc7_80Compliance_baseline,97 -100000,95720,42433,399.8955286251567,7010,72.09569577935646,5423,56.22649394066026,2171,22.461345591307985,77.3455376358958,79.73224983640334,63.32130932583449,65.08709785665933,77.07805143221455,79.46051485386471,63.224529142562375,64.99071194557752,0.2674862036812442,271.7349825386321,0.0967801832721164,96.3859110818106,109.7525,76.85709430892366,114659.94567488508,80293.6630891388,268.52943,166.95276732936247,280114.5946510656,173996.05863911664,296.70743,141.48252507925812,307036.58587547013,145649.1571494465,3885.88861,1737.1892706057156,4034129.962390305,1789354.221276343,1311.08307,567.5718654529571,1360331.5294609277,583575.151956704,2133.9599,875.8108269861226,2209321.2285833685,896606.0058153719,0.38067,100000,0,498875,5211.815712494777,0,0.0,0,0.0,22647,236.167989970748,0,0.0,27556,284.9143334726285,1919260,0,68753,0,0,4344,0,0,37,0.3865440869201839,0,0.0,0,0.0,0,0.0,0.0701,0.184149000446581,0.309700427960057,0.02171,0.3058903182125931,0.694109681787407,25.19916745309322,4.521930805484743,0.3317352019177577,0.2142725428729485,0.2220173335791997,0.231974921630094,11.182935128933671,5.623571175639381,22.952504806935508,12807.56124156227,60.94349898233872,13.615335682037696,20.247839337622047,13.328955407928555,13.751368554750426,0.5515397381523142,0.7650602409638554,0.6964980544747081,0.5789036544850499,0.1208267090620031,0.7337461300309598,0.9365079365079364,0.8912529550827423,0.704,0.1701244813278008,0.494553376906318,0.6823979591836735,0.6366279069767442,0.5461215932914046,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012401341452,0.0046249809828084,0.0067414589573074,0.0089737596292607,0.0109872222674371,0.0129863515991036,0.015174073545308,0.0174218518631986,0.0194698952879581,0.0217302256994224,0.0240810633409911,0.0260990139687756,0.0282875246872942,0.0301094326401912,0.0322703818369453,0.0342820515471378,0.0364837987900886,0.03875413851439,0.0409218065911667,0.0427190130866049,0.0575230018902802,0.0714689383791024,0.0849853600176309,0.0977180191269766,0.1095114542462979,0.1243508519572276,0.138274958354112,0.150450488828303,0.1621381846167001,0.1730511221543646,0.1871537284152887,0.2000693143296546,0.2117207824014106,0.2230659809607178,0.2337156316727937,0.2453438514464252,0.2556805499754475,0.2657074394483131,0.274381459087248,0.2830292346786932,0.2902852647895796,0.2979240695717224,0.3053703178206583,0.3122089612985863,0.3190975802049851,0.3257476043447775,0.3314009420407551,0.3362488099016185,0.3415144277322316,0.3465519735890252,0.3467957410813786,0.3466191194623508,0.3468638836944448,0.3471701378872671,0.3480091940387039,0.3469812099622364,0.3473414193875289,0.3481179257699394,0.3490612859612192,0.3489900436931452,0.3494270607936478,0.3503336510962822,0.3518967078796048,0.352225266088831,0.3528558652195983,0.3532249606712113,0.3537629175850915,0.3535193906254938,0.3558903432946406,0.3578926362003592,0.3611085703832434,0.364732881464482,0.3670397773983431,0.3675547389373756,0.3726181402439024,0.374167776298269,0.3728760717069369,0.3733195449844881,0.3702268954067515,0.3701960784313725,0.0,1.6893119801008611,57.2711190566875,210.0866106847413,311.6283175959568,fqhc7_80Compliance_baseline,98 -100000,95619,42368,398.8433261171943,6790,69.85013438751713,5279,54.72761689622355,2141,22.02491136698773,77.23812690061078,79.66939559292108,63.25655152000609,65.05417024874215,76.97327082501297,79.40288360069428,63.15979973099163,64.95887367006684,0.2648560755978053,266.5119922267962,0.096751789014462,95.29657867531682,108.51038,76.06853305947081,113481.33739110429,79553.14140015143,266.7902,166.9481579043685,278481.44197282963,174067.97201260013,292.63696,140.06363586937476,303211.7361612232,144249.08717376328,3840.86434,1722.0655786206223,3984134.638513266,1768640.5047737595,1257.48595,552.9811541762012,1304492.9355044498,567857.655270823,2106.56856,878.4781975348506,2169534.255744152,891614.3038983633,0.37984,100000,0,493229,5158.242608686558,0,0.0,0,0.0,22472,234.47222832282287,0,0.0,27108,280.68689277235694,1916248,0,68795,0,0,4297,0,0,38,0.3974105564793608,0,0.0,0,0.0,0,0.0,0.0679,0.1787594776748104,0.3153166421207658,0.02141,0.3222160200948925,0.6777839799051074,25.144363088255812,4.542786539427528,0.329418450464103,0.2051524910020837,0.2303466565637431,0.23508240197007,11.138671226664904,5.63922259173939,22.83503142275736,12903.793939209598,59.609316330563445,12.73453879644871,19.64996766326246,13.578966899733762,13.645842971118498,0.5440424322788406,0.7580794090489381,0.7107533064979874,0.5748355263157895,0.0934730056406124,0.7233231707317073,0.9450867052023122,0.8935185185185185,0.7352941176470589,0.1374045801526717,0.4847491807411141,0.6702849389416553,0.6503442999234889,0.5286016949152542,0.0817160367722165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0044120779365675,0.006589635285517,0.009107264466422,0.0114395049666178,0.0136108479273001,0.0156662756897343,0.0177951211539247,0.020068326412045,0.022236334026405,0.024429532955758,0.0267562652199377,0.029054568658529,0.0310505860643485,0.0330868685199719,0.0353972228545413,0.0371533716892137,0.039099587605306,0.0413040762793021,0.0434691897643462,0.0579552582061467,0.0726680218789949,0.085356501276408,0.0981096308777842,0.1104164906648644,0.1268654345178202,0.1406611851190855,0.1534821257274413,0.1657447923910601,0.177454350161117,0.1905681548453919,0.2036207924548756,0.2160610187959684,0.2276273117714085,0.237619289004474,0.2483356264701966,0.2573573002539121,0.2671042096597765,0.2763561924257932,0.2841326718118339,0.2921420033191361,0.299800609899132,0.3073563272960334,0.3139617377920469,0.3204637440873848,0.3254232257904955,0.3307924149190003,0.3361890656520518,0.3410636057561064,0.3461319417771479,0.3463466709909326,0.3468029277724071,0.3463886063072228,0.346434424446346,0.3469123105129008,0.346425331016347,0.3459446564885496,0.3465232170555427,0.3470734851740438,0.3481468186305304,0.3487780999359867,0.3510204892784038,0.3522035112862773,0.3553715288716864,0.3571031045079488,0.360143805600021,0.3609467455621302,0.3642961272738797,0.3660891089108911,0.3687604490088368,0.3719364148609648,0.3740665671004907,0.3754740834386852,0.3775908221797323,0.3778658363996603,0.3800781712661376,0.382509505703422,0.3820020222446916,0.3828492392807746,0.3842307692307692,0.0,1.7254523007682052,58.34313322777656,201.95985870008576,299.047977264796,fqhc7_80Compliance_baseline,99 -100000,95714,42618,401.0071671855737,6880,70.7002110454061,5360,55.37329962178992,2221,22.817978561130037,77.33641368994157,79.71151435550586,63.332022412709286,65.08956133124356,77.0643573539707,79.43946123501829,63.23208919728456,64.99214805662533,0.2720563359708592,272.0531204875698,0.099933215424727,97.41327461823346,109.7525,76.85768391629954,114667.13333472636,80299.31244781279,269.75882,168.43542024981727,281198.2990994003,175337.7147019425,296.74208,142.3514280725183,305773.4500700002,145477.5036777843,3079.63868,1400.512446228879,3183578.7450111792,1429262.5177391795,1290.97791,561.9353805309178,1331286.5724972314,569636.7167370984,2176.8888,907.8853393127883,2238602.2316484526,918317.9857578533,0.38227,100000,0,498875,5212.1424243057445,0,0.0,0,0.0,22682,236.2977202917024,0,0.0,27450,282.59188833399503,1917685,0,68851,0,0,4290,0,0,56,0.5746285809808388,0,0.0,0,0.0,0,0.0,0.0688,0.1799775028121484,0.3228197674418605,0.02221,0.3278077082469954,0.6721922917530045,24.96945403461888,4.513630432086765,0.3289179104477612,0.2097014925373134,0.2277985074626865,0.2335820895522388,11.173870355370902,5.667519035165292,23.73500744079843,12897.808203166158,60.57259736878519,13.140454711613533,19.96423950291078,13.629017658224804,13.838885496036063,0.5458955223880597,0.7651245551601423,0.6698808848553602,0.6117936117936118,0.1102236421725239,0.7068837897853442,0.9117647058823528,0.8355855855855856,0.7571428571428571,0.1225296442687747,0.4916438014467448,0.692,0.6141015921152388,0.5685441020191286,0.1071071071071071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023306716387661,0.0045537987200681,0.0067516117569419,0.009218229124319,0.0115459345086111,0.0137697838795755,0.0160107690268103,0.018174392485195,0.0202836023841411,0.0222959277685645,0.0246835118651017,0.0266418898801884,0.0288858038973726,0.0311363800224536,0.0331847449232293,0.0353909124736428,0.0373066329805959,0.0394941593875137,0.0416134027582909,0.0434782608695652,0.0581840964861901,0.0729471833933205,0.0858380351112695,0.0988573170603509,0.1114472117117591,0.127100551692067,0.1400905245974623,0.1528759956187458,0.1644109045108127,0.175839127500241,0.189608041498956,0.20195302361796,0.2142205124861446,0.2254470381334178,0.2364497379495237,0.2473879153076455,0.258233432862427,0.2684579596790506,0.2783842918523053,0.2868222374742621,0.2941496063902343,0.3013037687796444,0.3079386840954485,0.3143048704563957,0.3206713673709632,0.3259054982394799,0.3311406525518052,0.336317851147174,0.3415167877351772,0.3457871104067617,0.3467712587440864,0.3474164804546332,0.3474314270790688,0.3475451634867516,0.3476303352863127,0.3471616391226884,0.3462197948750516,0.3467801689361632,0.3474304710660246,0.3480987707414973,0.3482149567831642,0.3496927651139742,0.3509950457637081,0.3517025089605735,0.3522825982048065,0.3539209790026933,0.3558781258982466,0.3574603174603175,0.3603284723205436,0.3627718481662788,0.3658536585365853,0.3663328822733424,0.3647294589178356,0.3666562937606971,0.3666602760736196,0.3672749391727494,0.3716703227828267,0.3802758904673667,0.3720994475138121,0.37734404898584,0.0,2.432110306212804,59.10200040335417,203.09583906932892,304.4515318207488,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95600,42440,399.75941422594144,6990,71.92468619246863,5478,56.65271966527197,2187,22.426778242677827,77.26635035352784,79.70422928253247,63.26822878755484,65.07191718040247,76.99368612562749,79.43344662133657,63.16790905645172,64.97548642708176,0.2726642279003499,270.782661195895,0.10031973110312,96.4307533207034,108.85512,76.24324884243231,113865.18828451882,79752.3523456405,269.05647,167.61839349996484,280769.46652719664,174662.94682580186,297.18919,142.6341845523703,306946.88284518826,146197.67456521562,3149.41328,1425.5708774799505,3259755.7740585776,1456587.8161975704,1330.3521,585.2123276862158,1375311.9665271966,595998.4012386212,2150.00972,897.6414585772466,2208019.414225941,904681.9809007735,0.38032,100000,0,494796,5175.690376569038,0,0.0,0,0.0,22667,236.4016736401674,0,0.0,27583,284.57112970711296,1917263,0,68797,0,0,4357,0,0,42,0.4393305439330544,0,0.0,0,0.0,0,0.0,0.0699,0.1837925957088767,0.3128755364806867,0.02187,0.3108751871512182,0.6891248128487818,25.13666341142028,4.6069154314722125,0.3342460752099306,0.2066447608616283,0.2329317269076305,0.2261774370208105,11.287270729746895,5.620920256628957,23.419332828065848,12895.662608311168,61.92041715155336,13.23512993683674,20.662457968902388,14.375987738953446,13.64684150686079,0.5576852866009493,0.7632508833922261,0.6886947023484434,0.5995297805642633,0.1331719128329297,0.733723482077542,0.9217391304347826,0.8552631578947368,0.7819314641744548,0.1795918367346938,0.4991486256385308,0.6937738246505718,0.6334545454545455,0.5382198952879581,0.1217303822937625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020775061818476,0.0043621607912756,0.0065707292798602,0.0088762811127379,0.0111764825634657,0.0133310231662199,0.0154923252775963,0.0179332331933417,0.0200642547270197,0.0223076134849882,0.0244162775183455,0.026746158194994,0.0289884910749212,0.0309729038643955,0.0329397911437513,0.0347685716946574,0.0368807852974407,0.0391063193319207,0.0413834736721587,0.0433245377082007,0.0581808677469942,0.0722878940308517,0.0857896174289375,0.0989192719305637,0.1107660783506025,0.1263029661016949,0.1393680451487421,0.1518506666666666,0.1638480969302564,0.1754840234651997,0.1889285598714228,0.2016803078757656,0.2134291782388498,0.224761445677538,0.2359780895594767,0.24645606406815,0.2568370721244079,0.2672447772960189,0.2761218622515653,0.2849178033475203,0.2930185684995772,0.3002928086202858,0.3075473933649289,0.31451429119739,0.3206177418374171,0.3262356194144077,0.3319669048514479,0.3372841394252214,0.3427811993517017,0.3476905189726245,0.3490030602477857,0.3488727813912468,0.3490101454796879,0.3495404212202359,0.3494027939117743,0.3486363775807589,0.3474115089879261,0.347447996442512,0.349080690210593,0.3497059034502546,0.351102906549626,0.3522582697201017,0.3539712979158325,0.3550301177739818,0.3566034082106893,0.3568241469816273,0.3579367586662454,0.3604658542777355,0.36289637599094,0.3648930202740604,0.3657281954714554,0.3677840848238192,0.3671855065067619,0.367925971245029,0.3689320388349514,0.3692891895099086,0.3708934602394841,0.3758879642784656,0.3699007717750827,0.3645675265553869,0.0,2.5307338441892884,59.991198786569925,209.20086369800063,310.67823929530954,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95710,42348,398.3596280430467,6934,71.40319715808171,5415,56.05474872009195,2153,22.139797304356915,77.34534288058313,79.71529475990839,63.32656324425341,65.07497628583073,77.08484945608191,79.45523444914453,63.23050158992847,64.98195109395051,0.2604934245012202,260.06031076386193,0.0960616543249415,93.02519188021564,108.71124,76.19670533209606,113583.99331313344,79612.06282739114,267.05918,166.47504470071755,278497.02225472784,173404.41406406596,294.84105,140.6750172107088,305630.0073137603,145069.06936357706,3104.41376,1403.628350030268,3213750.705255459,1436731.156650578,1299.841,563.8581038669867,1342985.3411346776,574013.5553933611,2123.5421,883.9426312894549,2184274.725733988,892437.1652505032,0.38034,100000,0,494142,5162.90878696061,0,0.0,0,0.0,22453,234.0507783930624,0,0.0,27337,283.1156618953088,1921335,0,68965,0,0,4374,0,0,52,0.5433079093093721,0,0.0,0,0.0,0,0.0,0.06934,0.1823105642320029,0.3104989904816844,0.02153,0.3190934065934065,0.6809065934065934,24.900726992481147,4.515920149580061,0.322253000923361,0.2210526315789473,0.2230840258541089,0.2336103416435826,10.941252828158987,5.38349625278736,22.79586701197682,12843.057228604375,61.12190599495687,14.08456180225138,19.679145327015263,13.448071349119193,13.910127516571018,0.5471837488457987,0.7677527151211362,0.6922636103151862,0.5753311258278145,0.1114624505928853,0.7042042042042042,0.9212598425196852,0.8692660550458715,0.6963562753036437,0.1343283582089552,0.4959588537839823,0.696078431372549,0.6333078686019863,0.5442247658688866,0.1053159478435305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025518470511989,0.0049257089574929,0.0073048983401647,0.0094353036766199,0.0115723321605076,0.0136837068184363,0.0159730079610205,0.0182211651337749,0.0204444626173001,0.0225814046329754,0.024542267238021,0.0263914561511604,0.0285429223838225,0.030648933211081,0.0329105563524907,0.0347746984090885,0.0370562160818592,0.0389908256880734,0.0412693791396753,0.0432698320063362,0.0576844743850853,0.072041615205878,0.0848820004827014,0.0978945928599236,0.1104603923306636,0.1260120011429659,0.1388897735596675,0.1515742160872528,0.1632984578555321,0.1746055581178338,0.1879195353998987,0.2009745005684586,0.2123836987866587,0.2236126164592023,0.2343741395451291,0.2445787139689578,0.2549785676013574,0.2657236420107356,0.2752321700233873,0.283715814438423,0.2911434886762102,0.2985531994526251,0.3063746670612607,0.3129682237165426,0.3190894617226334,0.3252074624841243,0.330912369455784,0.3364156703128975,0.3414827009579612,0.3456852121051936,0.3457273144275654,0.346932587212107,0.3470042241781219,0.3470049820414784,0.3475476250763342,0.3462760324744087,0.3464712871287129,0.3476126362800473,0.3488717187739856,0.3496014693033291,0.3505079418532862,0.3515247212079345,0.3521834747093936,0.3517348036578805,0.3520334234930448,0.3530626650283652,0.3545125736906558,0.3563124489411173,0.35858054562031,0.3595625817187686,0.3608737376045332,0.3654871029631208,0.3698958662038498,0.3731434696064921,0.3784777893049137,0.3828598597408772,0.3869038491028983,0.3953677366924014,0.3926600441501103,0.3988985051140834,0.0,2.0197728852868977,58.8529017200221,212.4673257777868,302.1814666970089,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95667,41979,395.3296329977944,6785,69.66874679879164,5231,54.14615280086132,2105,21.700272821349053,77.2498286400838,79.64747051181949,63.26585613190741,65.03850600107974,76.9883407100976,79.3842273770469,63.17027268135988,64.94409070947012,0.2614879299862025,263.2431347725941,0.0955834505475294,94.41529160962148,110.49324,77.31164931229284,115497.75784753363,80813.28913030913,264.98475,165.42814987417128,276446.67440183135,172380.90446462337,285.22159,136.6542560900033,294438.374779182,140029.82750486574,3012.42408,1356.9876260899423,3119614.663363542,1389331.533959084,1266.68198,551.315249315515,1309413.569987561,561719.1440197754,2068.8298,862.2173900173984,2134340.9326099907,877325.5797939971,0.37864,100000,0,502242,5249.898083978801,0,0.0,0,0.0,22405,233.6228793627897,0,0.0,26472,272.9990487838021,1909022,0,68562,0,0,4366,0,0,37,0.3867582342918665,0,0.0,0,0.0,0,0.0,0.06785,0.1791939573209381,0.3102431834929993,0.02105,0.3211535769284614,0.6788464230715385,25.28066898292133,4.53727872090267,0.3385585930032498,0.1991970942458421,0.2305486522653412,0.2316956604855668,11.10693851943123,5.519102079952094,22.520968341972765,12792.136897174614,58.8313933870008,12.220936957056152,19.972483419041875,13.435839524420835,13.202133486481932,0.5476964251577137,0.7802303262955854,0.6922642574816488,0.5655058043117744,0.1188118811881188,0.7058823529411765,0.9409937888198758,0.8537735849056604,0.7194244604316546,0.1394422310756972,0.4967138523761375,0.7083333333333334,0.6414253897550112,0.5193965517241379,0.1134235171696149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021577049313181,0.0043708864482237,0.0067396798652064,0.0088193456614509,0.0111889819043647,0.0134438718350885,0.0153362972631235,0.0175014039924439,0.0195643280834526,0.0216917073770239,0.0239606946139722,0.0258757062146892,0.0279878582085712,0.030023808787607,0.0320772248606235,0.0343465265640028,0.0362149895862476,0.0383924585500565,0.0403969996150685,0.0424972891817499,0.0567112095535611,0.0704210603474454,0.0832861070881346,0.0959921716348025,0.1081739901228314,0.1233318870180859,0.1360021237058667,0.1486797519340195,0.1604252906759083,0.1720482083011085,0.1862991531366309,0.1993559718969555,0.2120303539109008,0.2233165167799956,0.233412060745188,0.2446281359020509,0.2550426470259016,0.2650745123698431,0.2748039472336357,0.283224175571642,0.291476955956142,0.2990035955161798,0.3067327815829528,0.3133651091692545,0.3202112220880742,0.3252564753053572,0.331264292714799,0.3370100075408034,0.3423173934524274,0.3467643629425482,0.3476268368188393,0.3473817940786566,0.3473267326732673,0.3478626896001161,0.3480272190055512,0.3477546129146246,0.3472200171466675,0.3471446229913473,0.3477693891557996,0.3484889295911221,0.3487241340318872,0.3493369913122999,0.3504557798783183,0.3513111986494091,0.3532732470804865,0.3533059473036971,0.3537135354227322,0.3558309221285696,0.3578120065962598,0.3593849332485696,0.361017719218537,0.3639250555731978,0.3629159066607962,0.3640106747998475,0.3675366128426586,0.3673638189767222,0.3702967268277761,0.3732709519934906,0.3743828853538124,0.3725934314835787,0.0,1.971744925833046,56.49446290611078,196.1772171243913,303.1475834663501,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95735,42382,399.40460646576486,6835,70.08930903013527,5335,55.01645166344597,2164,22.18624327570899,77.32698317968122,79.68693062767288,63.31555014592704,65.0616834457895,77.0617918156201,79.42458442590576,63.2184094847274,64.96844158684063,0.2651913640611241,262.3462017671159,0.0971406611996386,93.24185894887194,109.28786,76.54482483242042,114156.64072700684,79954.90137611158,267.76739,167.32486720041285,279011.63628766907,174094.39306461884,297.2975,143.3186510503889,305790.3379119444,145981.97740331542,3077.27912,1396.3967035883502,3178386.504413224,1422620.6753939008,1322.313,577.077520152723,1365379.0985532985,586943.3333187682,2123.42592,874.7704923998624,2180606.215072857,882039.6798309089,0.38081,100000,0,496763,5188.938214863947,0,0.0,0,0.0,22480,234.10455946101217,0,0.0,27561,283.2610852875124,1916169,0,68839,0,0,4455,0,0,55,0.5640570324332793,0,0.0,2,0.0208910012012325,0,0.0,0.06835,0.1794858328300202,0.316605705925384,0.02164,0.324770896973063,0.675229103026937,25.317296927013835,4.514297243633319,0.32970946579194,0.2026241799437675,0.237863167760075,0.2298031865042174,11.424901998373535,5.947619829943482,22.883690594644374,12754.270048855524,60.36189560182777,12.87851277532639,19.85726251695301,14.18298470590732,13.44313560364105,0.5610121836925961,0.7853839037927844,0.6992609437180216,0.6004728132387707,0.1239804241435562,0.7276688453159041,0.9213197969543148,0.8616780045351474,0.7306397306397306,0.1714285714285714,0.5030318342597271,0.7074235807860262,0.644916540212443,0.5606995884773662,0.1121304791029561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021072893977002,0.0044614791831437,0.0069017315226437,0.0091027308192457,0.0110450038138825,0.0131765185072043,0.0151731451645796,0.0174958659126635,0.0196026327623564,0.0222003868947093,0.0245774785023931,0.0266796694554226,0.028648376386419,0.0303660608556865,0.0321951722715081,0.0341923617425808,0.0364530489698726,0.0384623363691056,0.0406281830087097,0.0424210855297426,0.0577513310366426,0.0712230742674213,0.0839169637240511,0.0968084435380442,0.1093448584831075,0.1246154008818025,0.1379043376816205,0.1513073843795247,0.1633604104318084,0.1740474401631426,0.1877519346424953,0.199662103621556,0.2108830954038997,0.2217992057501066,0.2323136702367717,0.242823258185365,0.25328418230563,0.2631069163973015,0.2726508542348237,0.2805698502022899,0.2880555008628577,0.2954662605435801,0.3035468727772772,0.310771225509028,0.3179329309841331,0.3237933034667457,0.3306169527224402,0.3360862583161275,0.3410933143116529,0.3456265025229176,0.3451166426328486,0.3453728958316114,0.3451892577711989,0.3453984977640129,0.3452602437971631,0.3440277543251002,0.3439874371460749,0.3453792150995511,0.3457168280913104,0.3467245165782848,0.3480624660205095,0.3494111825828798,0.3487706900540517,0.3501344688480502,0.3511505620145689,0.3536863042738621,0.3541993888682639,0.3576246611611927,0.3608980223801816,0.3613341814423153,0.3635327375524348,0.3639072143009151,0.3618201298292052,0.3609228660625904,0.3611816727820114,0.3604941204418577,0.3639445300462249,0.3683888094751888,0.3688063063063063,0.371552403467297,0.0,2.830112818956872,60.15745657321559,200.64616347095048,298.2756269530562,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95761,42661,402.0634705151367,6849,70.46710038533432,5342,55.22081014191581,2151,22.07579285930598,77.39144353273707,79.72968660272564,63.36142006586866,65.08705342105955,77.12254756315299,79.4622027681859,63.262556705351656,64.99157622978029,0.2688959695840793,267.4838345397319,0.0988633605170008,95.47719127925802,108.91276,76.26325413567965,113733.9417925878,79639.15804521638,267.07062,166.29658210647105,278318.89809003664,173083.9507800368,289.77327,138.63738551393962,299584.2984095822,142371.37254793473,3074.88928,1384.2923909275717,3181747.475485845,1416313.8552516908,1277.19474,558.8831229014736,1319307.8497509426,569268.5836732495,2122.1313,880.575057027671,2181047.608107685,889468.655136061,0.38307,100000,0,495058,5169.724626935809,0,0.0,0,0.0,22512,234.4900324766868,0,0.0,26867,277.43026910746545,1925405,0,69070,0,0,4402,0,0,50,0.5221332275143326,0,0.0,0,0.0,0,0.0,0.06849,0.1787923878142376,0.3140604467805519,0.02151,0.3086144410370783,0.6913855589629216,25.1661497858961,4.467595158312228,0.324784724822164,0.2089105204043429,0.2324971920628978,0.2338075627105952,11.130997963069063,5.62991066542574,22.88561506640156,12858.700000942696,60.069029575892415,13.037489332034085,19.48713711709229,13.82393426569019,13.72046886107586,0.5481093223511794,0.7759856630824373,0.6864553314121038,0.5756843800322061,0.1248999199359487,0.7259148618371919,0.9247311827956988,0.875,0.6944444444444444,0.2024291497975708,0.4886335248563577,0.7016129032258065,0.6239447429009977,0.539832285115304,0.1057884231536926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020451968248825,0.0043475176586235,0.0063817698504494,0.0088055169051705,0.0106760480320484,0.0129875417311293,0.0152231506011819,0.0174464872365172,0.019542543084514,0.0217627077023819,0.0237602459016393,0.0259253939592908,0.0280103985779019,0.0301558222350301,0.0321829127494639,0.034397628319681,0.0365644146381851,0.0384571505616113,0.0406116169805829,0.0425429961352958,0.0573480443836703,0.0710586068704287,0.0842294094814472,0.0973193534478225,0.1094357925369829,0.1252035615337436,0.1385863513441858,0.1506111897188208,0.1621636052968816,0.1735038428968045,0.1870976770221102,0.1998421075399057,0.2122835809540371,0.2231544907301192,0.2336316067188462,0.244990096380476,0.2557268501488145,0.2658136844115433,0.2753468758501859,0.2839914413538222,0.292521095827072,0.3001811911859255,0.3072082515199545,0.314223755780797,0.320977764831537,0.3276573215626885,0.3332624681106498,0.3382167631897155,0.3435816411106506,0.3487562320293334,0.348971437028267,0.3489625586095948,0.3492228854600743,0.3493353347863112,0.3491768967001648,0.3482706445154289,0.3478116553653563,0.3484331978497443,0.3500546000546,0.3507321428571429,0.3523755868544601,0.3529901484667684,0.3538177003425737,0.3549038979701814,0.3562826465467208,0.3567947172580053,0.3567977126518942,0.3600088462024516,0.3632157112076578,0.3661623218491756,0.3667905824039653,0.3702134506060281,0.3702265784114052,0.3716895678206801,0.3773460341412807,0.3789349112426035,0.3817245037126837,0.3810483870967742,0.3843222645617855,0.3861726508785332,0.0,2.2046275153643147,59.045030870089576,196.65518169400767,307.67315281004244,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95715,42275,397.9627017708823,6879,70.44872799456721,5341,55.10108133521391,2082,21.292378415086453,77.37264048070351,79.73146366668847,63.34029949113111,65.08161480434627,77.10872882908596,79.47091722623821,63.24273529364408,64.98840634053319,0.2639116516175477,260.54644045025555,0.0975641974870384,93.20846381308456,109.41876,76.63383178694636,114317.25434884812,80064.59989233282,266.49958,166.43637593585848,277707.9350154103,173165.06914888832,293.90568,140.82117214775886,302353.8630308729,143509.6013635089,3076.49432,1388.4836323651773,3178705.741001933,1415125.6463095408,1247.10675,543.8268131291272,1287522.467742778,552757.8677627618,2048.38966,857.7196205173267,2098905.37533302,861025.4503428526,0.3787,100000,0,497358,5196.238834038551,0,0.0,0,0.0,22443,233.7251214543175,0,0.0,27222,279.8307475317348,1918459,0,68882,0,0,4281,0,0,51,0.5119364780859844,0,0.0,0,0.0,0,0.0,0.06879,0.181647742276208,0.3026602703881378,0.02082,0.3243392832433928,0.6756607167566072,25.128206570882725,4.583568550255698,0.3323347687698932,0.2140048680022467,0.2274854896086875,0.2261748736191724,11.292916826809686,5.590445734954204,22.124707573056057,12756.577249948004,60.123205188365056,13.390853610169325,20.22633729520432,13.364407744024888,13.14160653896652,0.5483991761842352,0.7646544181977253,0.6980281690140845,0.5637860082304527,0.1084437086092715,0.7218100890207715,0.9243243243243244,0.8886509635974305,0.6928838951310862,0.1270491803278688,0.4898572501878287,0.6882276843467011,0.6299694189602446,0.5274261603375527,0.1037344398340249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278481012658,0.0047834767362905,0.0071619140367428,0.0095669483262918,0.0118760739814334,0.0141602109270815,0.0165234498435318,0.0186890131874413,0.0207200392525657,0.0229708564935663,0.0249348944983287,0.0269401751522058,0.0290790934890799,0.0311331733591489,0.0332717762485943,0.0352742982347348,0.0371884997256416,0.0393307956395921,0.0409304452667027,0.0427251611828057,0.0566658313494549,0.0704816314572412,0.0838173925807872,0.0962771436379306,0.1080479885299822,0.1233440120108689,0.1369441615750169,0.1498190719455087,0.1618212500534028,0.1725713550213984,0.1857301349648316,0.1991711122893965,0.2114583446640488,0.223289394519499,0.2331910117305279,0.2446318168723824,0.2545292180610593,0.2641203495180614,0.2731403644294997,0.2806665443368962,0.2887494355613704,0.2963314135880507,0.3028916804930078,0.3098055688910225,0.3164704737814962,0.3222996730615014,0.3278090943254416,0.333214544806608,0.3393772988654613,0.3445781860416007,0.3444404055091078,0.3450520116682261,0.3454337996027553,0.3450310154860538,0.3454364252989825,0.3447937583347384,0.3435876314789,0.3449420659051688,0.3455312318568355,0.3466804535406118,0.348496746690599,0.3491856934421704,0.3508400720660325,0.3510978088494784,0.3527687687687688,0.3538954275596292,0.354583712465878,0.3557839972419845,0.35874925675912,0.3607714759012385,0.3619298086514917,0.3651417047022609,0.3667024568938293,0.3656437980659408,0.3663068981698733,0.3684335349223289,0.3711403240599205,0.3714112414071977,0.3797851831451391,0.3855606758832565,0.0,2.7347270020453385,59.02014878008071,198.1386042382288,303.9300470019582,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95748,42078,396.7602456448176,6896,70.85265488574173,5360,55.46852153569787,2135,21.92212892175293,77.33281654085012,79.69822738165946,63.319784280511655,65.07065053511951,77.06858471279934,79.43496828075183,63.2222569111136,64.97658086428571,0.2642318280507822,263.25910090763216,0.0975273693980582,94.0696708338038,109.43768,76.64928898497584,114297.61457158372,80053.14887514709,262.30399,163.51366060942505,273411.2879642395,170235.88183940446,292.06915,139.94555341255122,302198.0302460625,143983.30448932818,3065.03232,1392.503921320915,3172452.9389647823,1425934.3053879396,1261.82482,550.5995803683005,1309539.0086477003,566867.135824836,2087.18272,872.8591425631946,2145198.0824664747,881236.771206897,0.37798,100000,0,497444,5195.3461168901695,0,0.0,0,0.0,22112,230.3860132848728,0,0.0,27155,280.8727075239169,1921486,0,68965,0,0,4357,0,0,43,0.4282073776997953,0,0.0,1,0.0104440823829218,0,0.0,0.06896,0.1824435155299222,0.3095997679814385,0.02135,0.3322793511135551,0.6677206488864449,25.11331571196041,4.4284201466511846,0.3389925373134328,0.2171641791044776,0.2259328358208955,0.217910447761194,11.178542054212812,5.805589555993061,22.842537934157995,12741.63237658532,60.59913341996436,13.687015236205816,20.507346044018515,13.42618324549242,12.978588894247611,0.5537313432835821,0.7749140893470791,0.6846450192625206,0.5772089182493807,0.1053082191780822,0.7182795698924731,0.9186351706036744,0.8682008368200836,0.7304964539007093,0.1220472440944882,0.4958385876418663,0.7049808429118773,0.6191187453323376,0.5306781485468245,0.1006564551422319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020569668352095,0.0043005081496657,0.0065082749517717,0.0084670820585275,0.0110181906971065,0.0130683670143415,0.0151949336623869,0.0173455844818785,0.0194270055827079,0.0216670079868933,0.0238576130083968,0.0258553415205158,0.0276898083408735,0.0298458274544537,0.0317687966239849,0.0339762672620524,0.0359062522655012,0.0382428028809232,0.0400137261222664,0.0418802350293786,0.055969681784014,0.0694944337490583,0.08252147194228,0.0957913219013173,0.1083927140869418,0.1235975255115529,0.1364841645276935,0.1502229980733818,0.1616817638010596,0.1730103064036978,0.1869677099820192,0.2000995304757989,0.2112823077843139,0.2221177602378818,0.2328614951441361,0.2433949728712213,0.2543188108204625,0.2642431063590321,0.2736920963915595,0.2826236342396408,0.2904775687409551,0.2981135168682741,0.3051530267663542,0.3118493643559606,0.3178889267130282,0.3230579379280557,0.3286799167898945,0.3343565705842642,0.3394973675337812,0.3437508262605431,0.3444424962572326,0.344517196223034,0.3446494360769589,0.3453249913103928,0.3444128124487636,0.3435672290192346,0.3432591934511533,0.3445781547971329,0.3459769132107738,0.3474665571252522,0.3482811005457716,0.3493861386138613,0.3508323200134177,0.3517756507737722,0.35213403625334,0.3543315312491838,0.354222031718817,0.3565414814114085,0.3596688974991194,0.3627986756551917,0.3645018078630601,0.3680781758957654,0.3676954211990893,0.3701640595192674,0.3734928409947249,0.3728894173602853,0.3722000613685179,0.3758130081300813,0.3802386899805717,0.390007745933385,0.0,1.9470042190395975,61.91381839789292,199.78477400305516,299.27085368203865,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95783,42688,401.7414363717987,6980,71.79770940563566,5495,56.81592766983702,2160,22.18556528820354,77.34910350822409,79.67808007601967,63.34642956891118,65.06702808474982,77.0891480782376,79.4172486428245,63.25290786416351,64.97523713842097,0.2599554299864905,260.83143319516466,0.0935217047476655,91.79094632885663,109.48036,76.7359044437142,114299.94884269653,80113.8730711235,269.70929,167.94324518143162,281049.6121441174,174803.43983946167,302.14579,144.71217887048704,311734.68151968514,148287.93120677606,3136.71824,1411.977377468809,3245568.2114780284,1444917.9264262028,1321.45907,573.6782920522351,1364771.201570216,584205.3535114601,2126.6334,866.1826574888643,2186944.739671967,878488.6217208635,0.38237,100000,0,497638,5195.452220122569,0,0.0,0,0.0,22699,236.40938371109692,0,0.0,28003,288.6629151310775,1918287,0,68872,0,0,4370,0,0,42,0.4384911727550818,0,0.0,0,0.0,0,0.0,0.0698,0.1825457018071501,0.3094555873925501,0.0216,0.3176486633933442,0.6823513366066557,25.01236783831391,4.462660421303058,0.3226569608735213,0.2174704276615104,0.2307552320291173,0.2291173794358507,11.529098791043566,6.028558886654238,22.70137130590624,12921.920043872986,62.05642947653139,14.21144730302342,20.10280639843047,14.0967194174983,13.645456357579192,0.554322111010009,0.7631799163179916,0.688663282571912,0.6096214511041009,0.1111993645750595,0.7467438494934877,0.9139240506329114,0.8747252747252747,0.7898305084745763,0.1687763713080168,0.4896669097982008,0.68875,0.6244309559939302,0.5549845837615622,0.0978473581213307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872974724562,0.0045003496893339,0.0065637966541883,0.0090400300657179,0.0113372920649123,0.0137322366545869,0.016011333292566,0.0180333724549675,0.0202004720595898,0.0223036156411777,0.0241366239460716,0.0261362120450277,0.028415513945697,0.0304658391486033,0.0324765704741579,0.0347452462843037,0.036981467876618,0.0392144664261125,0.041228972496701,0.0431826228210842,0.0575712988761231,0.0717243975903614,0.0854135432938783,0.0987179487179487,0.1111193070454593,0.1267831857471944,0.1406662356519803,0.1523361902128836,0.1644683484867887,0.1757723786262159,0.1890664514393328,0.2025430051141216,0.2146949158069811,0.2249748545939563,0.2357910483879838,0.2468028566683275,0.2573331696921686,0.2662177808253054,0.2759794024907561,0.2851633134198539,0.2934108885702391,0.3011953775615233,0.3089383756152972,0.3153392754456584,0.321264221275149,0.3270465835829543,0.3330537962800711,0.3383732325353493,0.3433588181935985,0.3479909122130346,0.3483757918856989,0.3484861007796788,0.3489125991909682,0.3486257102786171,0.3493431611484277,0.3491047222264769,0.3482371947163356,0.349040483701367,0.3506093912924565,0.3520389009063768,0.3531914893617021,0.3532127360266291,0.3545861062708626,0.3560463237274441,0.3571497701427534,0.3587427461071869,0.3599045620490413,0.362405441484966,0.366251640594516,0.3687570258551469,0.3716113591383992,0.3725479686997535,0.3770554737987075,0.3776013565592724,0.3793564403704764,0.374713198889023,0.3778751369112815,0.379303193695562,0.3827508455467869,0.3857257417802726,0.0,2.13695980466108,61.05897403853246,209.16621872075777,309.7913145191755,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95672,42428,399.5839953173343,6892,70.89848649552638,5421,56.13972740195669,2196,22.671209967388577,77.31532774038504,79.70875941413665,63.31028192710126,65.07667156619073,77.04681281440811,79.43669150293108,63.212006376345485,64.97927034267593,0.2685149259769304,272.0679112055677,0.0982755507557726,97.40122351479386,109.97756,77.00433881672993,114952.7134375784,80487.85309884808,266.58435,166.3043068189962,278123.8397859353,173307.3384260768,297.43106,142.64728277425056,307338.16581653984,146387.52432767,3131.93608,1419.357480162953,3245885.9436407723,1455833.8909638687,1325.30972,580.7944226234368,1372377.3622376453,594181.7591598757,2165.94472,901.8418543933695,2237551.1121331216,918652.8129389402,0.38112,100000,0,499898,5225.123338071745,0,0.0,0,0.0,22448,234.11238397859356,0,0.0,27608,285.0154695208629,1914892,0,68763,0,0,4434,0,0,50,0.5226189480725814,0,0.0,2,0.0209047579229032,0,0.0,0.06892,0.1808354324097397,0.3186302959953569,0.02196,0.3296158612143742,0.6703841387856257,25.01400621022136,4.546746125305188,0.3239254750046117,0.2173030806124331,0.2263420033204206,0.2324294410625345,10.938608905356784,5.356367835660064,23.578355635619207,12854.849776251887,61.39858717215925,13.755287117494198,20.01973259820488,13.558899702462964,14.0646677539972,0.5506364139457665,0.7724957555178268,0.7004555808656037,0.5664221678891606,0.119047619047619,0.7097722263041881,0.9311224489795918,0.8693693693693694,0.7063492063492064,0.1355311355311355,0.4972906403940886,0.693384223918575,0.6432926829268293,0.5302564102564102,0.1144883485309017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299633284032,0.004663517102942,0.0070531165641681,0.0092760043078048,0.011444091796875,0.0134861217214158,0.0159928195504059,0.0179868239620039,0.0201053331288029,0.0223953959899236,0.0245215679035136,0.026697209068217,0.0287633606633267,0.0308912931478619,0.0330715000877365,0.0350704822579143,0.0370094077665879,0.0389613085353703,0.0408159019752649,0.0429290560610324,0.0573067399412827,0.0721704533556695,0.0852015113350126,0.0968610903580861,0.1095949682348719,0.1250092619055179,0.1389620317676038,0.1513792736180637,0.1632288816689466,0.1747174792603483,0.1880462544858876,0.2007925165648954,0.2132198482754116,0.2238902322935017,0.2343911731671328,0.2451593585734247,0.255212230175658,0.2649517829614376,0.2741215871033661,0.2822593585952364,0.2904361522247701,0.29784693196586,0.3057098527826797,0.3134308654273129,0.3199105417330108,0.3259714155352496,0.3318928262748487,0.3377259994907053,0.3422856180444893,0.3474750944692545,0.3477938500114588,0.3477559684622595,0.348505999971798,0.3488183503243744,0.3485249903253654,0.3481375797741777,0.3474510425751209,0.3480138594676256,0.3489704473936243,0.3501510736059213,0.3519379263812879,0.353065790255202,0.3531736854277484,0.3549900132408716,0.3565131277022294,0.3570119396732299,0.3584591537975773,0.3612962610296451,0.3616802552286423,0.362874107357779,0.363164184592756,0.3657100021417862,0.3696399032955846,0.3681488343368843,0.3706207159177456,0.3687671888078441,0.3705397987191217,0.38174190970835,0.3872211511980171,0.3845568657284138,0.0,2.077306081906705,60.12554624374842,210.60977382423127,302.80094977731807,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95624,42301,399.24077637413205,6906,70.81904124487576,5366,55.50907721910818,2108,21.626369948966783,77.3146043072854,79.73571824023357,63.296484254502126,65.08378146506519,77.06191119344358,79.48251862432996,63.20394852060084,64.9933726731525,0.2526931138418291,253.1996159036112,0.0925357339012862,90.40879191267948,110.12232,77.10177109889716,115161.80038484064,80630.14630103024,267.08954,166.17769688652615,278733.9475445495,173204.1191400968,292.85353,140.27014759088985,302540.73245210404,143722.78717247644,3055.41208,1378.893206255196,3164075.922362587,1410835.2361909105,1286.51153,560.2606830032904,1331607.075629549,572121.1233615932,2072.59326,857.562610771254,2130588.9943947126,867987.6278438071,0.38042,100000,0,500556,5234.627290220029,0,0.0,0,0.0,22529,234.9828494938509,0,0.0,27205,280.7454195599431,1914261,0,68648,0,0,4249,0,0,47,0.4915084079310634,0,0.0,0,0.0,0,0.0,0.06906,0.181536196835077,0.3052418187083695,0.02108,0.3273003592152528,0.6726996407847472,24.925836153299542,4.520969096898475,0.3315318673127096,0.2118896757361162,0.2364890048453224,0.2200894521058516,11.373245525931758,5.866353797385509,22.4231299885828,12773.839537264716,60.48015287529461,13.443441078458376,19.95597026534864,14.052438449085365,13.028303082402244,0.5493850167722698,0.7704485488126649,0.6790331646992692,0.5776201733648542,0.1109229466553768,0.7307692307692307,0.9236641221374046,0.8443935926773455,0.7667844522968198,0.1631799163179916,0.4882909815645241,0.6895161290322581,0.6251862891207154,0.5233265720081136,0.0976645435244161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021683402064989,0.0045329628540426,0.0068319324318837,0.0090636589950718,0.0111897786458333,0.0132919128132002,0.0153609204312481,0.0175298804780876,0.0195968129608984,0.0216485238246408,0.0236307692307692,0.0256599897277863,0.0276737582815521,0.0299420940919488,0.0317922356754301,0.033976466695618,0.0359748010610079,0.0379879568106312,0.0402343099716996,0.0423750026073715,0.0567337339952965,0.0697742628188341,0.0835328461021505,0.095913770236416,0.1076396951721517,0.1237254216829198,0.1369091874668082,0.1498518850030901,0.1614486955963675,0.1731331099080519,0.1865816557706,0.1999891622412485,0.2125907040596195,0.2242013934533981,0.2349829163452,0.245930019642441,0.2553728891223443,0.2649961692730632,0.2736683028815562,0.2822342011698589,0.2906034362988005,0.2984089845577913,0.3053303187774476,0.3126108846799328,0.3189854051822531,0.3246929246387167,0.3299562226391495,0.3354736172917991,0.3407693999818842,0.3450923482849604,0.3459032284121812,0.3455168239469557,0.3453258708922504,0.3445875542691751,0.3455157418163405,0.3451854581183984,0.344681999269876,0.3454515491100857,0.3460290203485876,0.3476811698086158,0.3485536337372903,0.349916065962279,0.3514463198845454,0.3523651971742824,0.3533968010359464,0.3542731163273246,0.3553486787954474,0.3582206116647402,0.3600894198190645,0.362258626147515,0.3617445708845264,0.3654080389768575,0.365793470007593,0.3684170413840408,0.3697289156626506,0.3737858256385657,0.3763659069622229,0.3761316872427983,0.3719259463940315,0.37065938353492,0.0,2.388036962395003,59.50092645361474,200.47933624604315,305.2485000651576,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95646,42532,401.77320536143696,6860,70.46818476465299,5374,55.600861510152015,2099,21.51684335988959,77.29129418892526,79.6908487462958,63.29829466637945,65.06978184785108,77.02809330117832,79.43087170725963,63.20065009362334,64.97663038778066,0.2632008877469474,259.97703903617264,0.0976445727561099,93.1514600704162,109.0232,76.41436199861842,113986.15728833409,79892.89881293353,265.57546,166.0653210941109,277111.0971708174,173071.054821018,299.68784,143.6598464207302,310296.3636743826,147784.6708073544,3088.15512,1401.3917043171623,3195050.6659975327,1431502.3569382527,1325.45127,585.3073533196342,1367171.2146874934,593334.4450574348,2077.0932,870.5317164563212,2130746.983668946,873819.3522760434,0.38131,100000,0,495560,5181.188967651548,0,0.0,0,0.0,22359,233.1723229408444,0,0.0,27845,288.0935951320494,1917612,0,68773,0,0,4376,0,0,40,0.4077535913681701,0,0.0,0,0.0,0,0.0,0.0686,0.1799061131362933,0.3059766763848396,0.02099,0.3273586216479088,0.6726413783520911,24.69452500092967,4.516679156480227,0.3265723855601042,0.2192035727577223,0.2210643840714551,0.2331596576107182,11.150206826793989,5.610798780886118,22.429353357941874,12868.710833279332,60.87314229537178,13.891186192015986,19.95707752331301,13.210554915394182,13.81432366464857,0.5597320431708225,0.7784380305602716,0.7111111111111111,0.5942760942760943,0.1093375897845171,0.7154411764705882,0.922879177377892,0.8663697104677061,0.75,0.1423357664233576,0.5069755854509218,0.7072243346007605,0.6577335375191424,0.5531914893617021,0.1001021450459652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021170345309603,0.0043800060833417,0.0065466946804299,0.0088608881211259,0.0108252195057432,0.0130264296990375,0.0149478964863266,0.017225886821737,0.0196407210117885,0.0216249424051604,0.023781932294818,0.025881990448313,0.0280129622961781,0.0300476062898007,0.031723910103544,0.0335943237177166,0.0355573519048211,0.0377642563442289,0.0398726406259754,0.0420055048167146,0.0566430131574822,0.0713986424201793,0.0850536573072642,0.0979642962401583,0.1103499957780967,0.1259182420560154,0.1398982982472902,0.1520877716233489,0.1641613924050632,0.1750692461297318,0.1887864574909698,0.2017866811044937,0.2139343013257287,0.2254666885640773,0.2366445867454343,0.2476209489585412,0.2582097723946054,0.2673384372888989,0.2768404559698442,0.2852591650336347,0.2928597066076949,0.2999660632160368,0.3074891015921152,0.3138214894280846,0.3197600126565333,0.3260885672651831,0.3309593369528419,0.3368183498871619,0.3422223952453251,0.3471361564378675,0.3474960222216229,0.3478362798907797,0.3480471066677963,0.348860114133426,0.3488275081195435,0.3479971717544345,0.3467987804878049,0.3472593032070932,0.3493969702688329,0.3507601835915089,0.3514012007603561,0.3527646977012179,0.354357580736902,0.3538468454294127,0.3553615358641648,0.3551702494900361,0.3566766424397891,0.3584566929133858,0.3614636209813874,0.3628890662410216,0.3641147668512332,0.3655782240451712,0.3669119512814006,0.3701538461538461,0.3745482214190603,0.3783523752254961,0.3833930518772394,0.3911508101371001,0.3942442022911427,0.4003846153846154,0.0,2.313886612270052,59.95345674248925,203.48156488855412,304.9712124839512,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95637,42089,395.98690883235565,6954,71.67727971391825,5409,56.03479824754018,2237,23.024561623639386,77.27514686010801,79.68735172936556,63.27600815666828,65.05692013657772,77.00671510989946,79.41799006168135,63.17881979657491,64.96169020619705,0.2684317502085491,269.3616676842083,0.0971883600933694,95.22993038066828,109.57584,76.74958603770004,114574.73571943914,80250.9343012642,266.8339,165.70125457756026,278457.7726193837,172712.5865361953,293.2754,139.7288538864558,303739.6196032916,143820.67532042964,3127.19492,1402.05691102713,3239483.756286793,1435755.392407261,1313.7426,567.3691319569876,1357275.991509562,576854.6804707061,2203.3046,905.129558899774,2269135.230088773,915910.0002043516,0.37819,100000,0,498072,5207.942532701779,0,0.0,0,0.0,22406,233.73798843543813,0,0.0,27059,280.0485167874358,1915466,0,68714,0,0,4467,0,0,61,0.6273722513253239,0,0.0,2,0.0209124083775107,0,0.0,0.06954,0.1838758296094555,0.3216853609433419,0.02237,0.3181942171303873,0.6818057828696127,25.39156396634217,4.58724952939109,0.3148456276576077,0.2231466075060085,0.2255500092438528,0.2364577555925309,11.182142762456609,5.5567211876003935,23.68116904839131,12782.36616497899,61.04784877553535,14.320160624847354,19.17327957567008,13.62734095035425,13.927067624663676,0.5481604732852653,0.7638773819386909,0.6905460951262478,0.5770491803278689,0.127443315089914,0.7055682684973302,0.8790931989924433,0.8618925831202046,0.717948717948718,0.172,0.4978038067349927,0.7074074074074074,0.6394817073170732,0.5364308342133052,0.1166180758017492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0046521999128345,0.0069707270052255,0.0091518537328593,0.011422003885312,0.0136976535766661,0.0158665415833911,0.018274443344121,0.0206618752108615,0.022853866317169,0.0248017806406613,0.0268948655256723,0.0288797892917404,0.0309224156591112,0.0327647095268581,0.0346657563155608,0.0366301125645224,0.0388617717312285,0.0408645341214177,0.0431731200400446,0.0575140309988398,0.0712916103479709,0.08395134351562,0.0973094264885592,0.109351894883603,0.1245499216334138,0.1379555838911911,0.1503869193544948,0.1626948882301955,0.173442083884071,0.1870034542314335,0.1996725257804621,0.2123626613184513,0.224044914250625,0.2340458402763217,0.2448181636416146,0.254871456232442,0.2644158071723577,0.2736740268609151,0.2822865937701002,0.2902619550337595,0.297512227734966,0.3046439334614745,0.3118341560672119,0.317743819349815,0.3236401337957763,0.3289109035049219,0.3342083131578277,0.3389988963188989,0.344186600338696,0.3444523941304318,0.3449255769681754,0.3451211248517702,0.3455606563074739,0.3465163720833271,0.3449043510301839,0.3441762354881685,0.3445252352437981,0.3447698458804634,0.3456384233284494,0.3476652015477666,0.3494247866463378,0.3502731092436975,0.3511986186172717,0.3523736009262833,0.3526674856888935,0.354575070012002,0.3576165214096248,0.3584685956245589,0.3600495187891857,0.3608072857077479,0.3643664007709192,0.3668290830854901,0.3677222434185425,0.3711007869536361,0.3727710843373494,0.3740102468560782,0.3761052848036191,0.3772739994402463,0.3818606461658232,0.0,1.9313603068430292,58.23438036771612,208.38016691988125,310.0680055810104,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95685,42299,398.41145425092753,7059,72.50875267805822,5489,56.78005957046559,2203,22.65767884203376,77.28391542799022,79.68206547994262,63.28504443165552,65.05978593819074,77.01219030370326,79.40944343959366,63.1852543706834,64.96205833621798,0.2717251242869594,272.6220403489634,0.0997900609721185,97.72760197276398,108.33548,75.90123455917482,113220.9646235042,79324.06809758564,268.68835,167.9121544981167,280198.56821863406,174877.7807369146,302.09723,145.07757562305255,312060.2497779171,148738.55718682843,3121.48068,1423.7688813802192,3231301.0398704084,1457029.4208916957,1305.3047,573.2928651924743,1347719.0468725506,582710.8713037858,2151.26806,894.6963782174034,2214207.158906829,906294.539780586,0.37962,100000,0,492434,5146.407482886555,0,0.0,0,0.0,22638,235.9408475727648,0,0.0,28014,289.1048753723154,1919191,0,68940,0,0,4267,0,0,46,0.4807441082719339,0,0.0,0,0.0,0,0.0,0.07059,0.1859491070017385,0.3120838645700524,0.02203,0.3217567567567567,0.6782432432432433,24.910713574314236,4.4020599068585815,0.3271998542539625,0.218436873747495,0.2321005647658954,0.2222627072326471,11.327319542485538,5.945582768399524,23.480839170268226,12809.6429164167,62.427286440672496,14.305020023162967,20.567062871457512,14.265560468810824,13.289643077241177,0.5636728001457461,0.7848206839032527,0.6976614699331849,0.6028257456828885,0.1081967213114754,0.7275910364145658,0.9207459207459208,0.8257080610021786,0.7766666666666666,0.1333333333333333,0.5060329967988181,0.7090909090909091,0.6537023186237846,0.5492813141683778,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023408524350945,0.0046048360921778,0.006974831720763,0.009136086015386,0.0114770611397698,0.0138741748838725,0.016166046203274,0.0183539649466846,0.0204346714395295,0.0228134155586059,0.0247245419291298,0.0265607661008589,0.0284211934431627,0.0305778565613051,0.0330219354838709,0.0348518537669993,0.0371372024827214,0.039144651476618,0.0408384043272481,0.0428252803601951,0.0579645047058946,0.0710225190799736,0.0842157181685573,0.0969160678023168,0.1094224924012158,0.1253043165315324,0.1385523619413682,0.1511208135882008,0.1626905235255135,0.1738304517209182,0.1880193569942769,0.2007322991593725,0.2131688407848603,0.2235571131310919,0.2336882246616408,0.2448601243339254,0.2552297044979372,0.2654312638081068,0.2749593625316858,0.2832524466779105,0.290725857890037,0.2985114893317537,0.3058489804638355,0.3125518036686007,0.3184907314934353,0.324235201126357,0.3288269081241065,0.3341489836232715,0.3399870298313878,0.3449232476419456,0.3451257013379369,0.3454475319272046,0.3458051964529908,0.3460265140015324,0.3461567103048717,0.3451775870276246,0.3451231902463805,0.3453606551985001,0.3467390931834538,0.3490584630820776,0.3501525021651542,0.3512159233262413,0.3527809451412644,0.3545682017988774,0.3551224727838258,0.3561607823549515,0.3541487470611847,0.3559424150177575,0.3579441230421899,0.3600891861761427,0.3592264081931236,0.3610652463382157,0.3630477148425222,0.3659805473874689,0.3688241337442794,0.3692435184089025,0.3689379987722529,0.3708757637474542,0.3805532271584241,0.3806576402321083,0.0,2.1678738225618552,63.12240067596687,211.83732711881052,301.97139875215663,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95657,42218,398.3294479233093,6814,69.86420230615637,5309,54.925410581557024,2097,21.5143690477435,77.35161970545354,79.75696465267359,63.31721993396855,65.0941351563543,77.09135043075511,79.49850203459381,63.2215685888084,65.00185457176472,0.2602692746984303,258.46261807977555,0.0956513451601495,92.28058458957378,109.05048,76.39153983698507,114000.64814911612,79859.07475774309,265.23958,165.58672027098325,276713.3717344261,172538.05145030594,293.34313,140.42697604941506,303414.2718253761,144240.23489021178,3038.77336,1375.6885860341686,3144668.471727108,1406248.468314462,1275.24842,556.5322202302209,1317650.6789884693,566498.3004223478,2068.70158,863.067748383349,2123920.131302466,868380.3257058485,0.37853,100000,0,495684,5181.847643141642,0,0.0,0,0.0,22374,233.2918657285928,0,0.0,27193,280.9935498708929,1921889,0,68857,0,0,4375,0,0,50,0.5227009000909499,0,0.0,1,0.0104540180018189,0,0.0,0.06814,0.1800121522732676,0.3077487525682418,0.02097,0.3152143457551135,0.6847856542448866,25.21297403718492,4.489375049009658,0.3322659634582784,0.2168016575626295,0.2201921265775099,0.2307402524015822,11.026882177326527,5.439488619103345,22.27832728359474,12732.106056296532,59.741402340068674,13.610847719790032,19.78797443739076,12.890227563779431,13.452352619108456,0.5547184027123752,0.7715030408340573,0.70578231292517,0.5680068434559452,0.1208163265306122,0.7360703812316716,0.9250585480093676,0.8853211009174312,0.7322834645669292,0.1497975708502024,0.4920152091254753,0.680939226519337,0.6468373493975904,0.5224043715846994,0.1134969325153374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0045834812148253,0.0064647735806929,0.0087072258798667,0.0109857693598754,0.0130780199633326,0.01522459593127,0.0174816962963719,0.0194580777096114,0.0215817021581702,0.0239656109897099,0.0262965893559956,0.0282794603439226,0.0302892843151405,0.0323510272380775,0.034390001655355,0.0362232471368606,0.0382950452087074,0.0402929640765285,0.0423218083997163,0.0571240491515506,0.0707592113667061,0.0828470064656982,0.0963234210913988,0.1086825746942049,0.1239706162542075,0.1381261812235883,0.1502099720747799,0.1622607597915975,0.1735180412371134,0.1867640081093905,0.2001126601887058,0.2118668974300362,0.2231720665499124,0.2338314484247156,0.2442547530624688,0.2540948805613282,0.2635892816933123,0.2731195004257735,0.2811504891067787,0.2895507191039837,0.2962906676330648,0.3029227730267438,0.309258593843574,0.3156144162954151,0.3212298069345942,0.3265109769964139,0.3329607093405826,0.3387134291326372,0.3434034819711855,0.3442686896403303,0.3440699160402897,0.3447140283719883,0.3446677640128216,0.3447451283269962,0.345049292756108,0.3447402977518313,0.3461273270512526,0.3468250576873771,0.3474820015363453,0.347804054054054,0.3490515655596653,0.3501563385306276,0.3508587530190535,0.3512728146013448,0.3529427063015266,0.3540236433556473,0.3558303442199987,0.3575919356538232,0.3593054672600127,0.3613947128532361,0.3621190513917499,0.3628385155466399,0.3667680608365019,0.366407202475851,0.3686471009305655,0.3725007689941556,0.3714920250353321,0.3724959393611261,0.3675084809649453,0.0,2.150608901245576,60.28399467292338,192.7728940185636,303.1896280356906,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95806,42551,400.7369058305325,6899,70.98720330668226,5287,54.74604930797653,2141,22.0132350792226,77.3507064425629,79.67799307951192,63.34838135415546,65.06955792752086,77.07738803629879,79.4037898687546,63.2475967112188,64.97057552801242,0.2733184062641101,274.2032107573209,0.1007846429366594,98.98239950844356,109.5028,76.646627375172,114296.39062271676,80001.90737028161,265.77431,166.11696241260088,276964.2297977162,172944.2857572604,289.78182,138.7268193755739,300137.29829029494,142965.30997363263,3029.67328,1375.758027645296,3138054.777362587,1411737.7905823153,1238.3882,542.440653944668,1282640.4191804272,556237.9075187091,2104.54058,887.7881133260616,2165851.679435526,901143.4055661042,0.38196,100000,0,497740,5195.290482850761,0,0.0,0,0.0,22362,232.9394818696115,0,0.0,26914,278.5629292528652,1921380,0,68978,0,0,4320,0,0,38,0.396634866292299,0,0.0,2,0.020875519278542,0,0.0,0.06899,0.1806210074353335,0.3103348311349471,0.02141,0.3155293148427845,0.6844706851572154,25.39450694796376,4.470453105690571,0.3300548515226026,0.2084357858899186,0.2339701153773406,0.227539247210138,10.7484511750978,5.30143006209362,23.014987657141823,12820.976625490255,59.80170111219618,13.001387636786758,19.71686104150074,13.730722905255972,13.35272952865271,0.5498392282958199,0.7767695099818511,0.6859598853868195,0.5917542441390461,0.1014131338320864,0.7044776119402985,0.9397260273972604,0.8601895734597157,0.7183098591549296,0.1263940520446096,0.4973397517101596,0.6960651289009498,0.6303854875283447,0.5540398740818469,0.0942184154175588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0044403892944038,0.0065653951921418,0.0085121079148382,0.0106861070440865,0.012959776843434,0.0152867799926623,0.0175220173281219,0.019518276669017,0.0215104379860826,0.0235772690944115,0.0258062530141498,0.028097220081188,0.0301620308414486,0.0325032224800206,0.0344225544180088,0.0365886467581382,0.0385337079234094,0.0404390765683902,0.0425788854534286,0.0569288076878932,0.0706362068064195,0.0842243186582809,0.0976775956284153,0.110116977552956,0.1258561643835616,0.1393837214234211,0.1513594040968342,0.1621638931289561,0.1732537454186938,0.1871219785186939,0.2003458337836377,0.2122476476084925,0.2234264550033322,0.2333098777377078,0.243809608107809,0.2546169878403531,0.2645730337078651,0.2737949485330794,0.2827087291957602,0.2910740077416373,0.2986503067484662,0.3060272902637901,0.312846752064036,0.3197959679378188,0.3261035664111601,0.3317986763583591,0.3372610897615351,0.3424962756655224,0.3467931298314117,0.3471812884385051,0.3464851921171419,0.3463413946671176,0.3460297246060115,0.3462213626896757,0.3454723956495727,0.3453238551616895,0.3464155668693259,0.3486685299816526,0.3492868405963302,0.3503523116922265,0.3516166855462151,0.353552823065404,0.3554783550271831,0.3565154264972777,0.3585743177579912,0.3599666244677178,0.3613619023397762,0.3636170137287594,0.3648508119350452,0.3693129489777123,0.3723880999946007,0.3737147966025927,0.3757838507393357,0.3750950570342205,0.3769507803121248,0.3807596513075965,0.3857202331390508,0.3918194640338505,0.390282131661442,0.0,1.6193005693929166,59.58244315335869,197.7460075464696,302.7160629146751,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95730,42354,398.6733521362164,6873,70.56304188864515,5340,55.1446777394756,2100,21.55019325185417,77.31652017658898,79.67793761463557,63.31665033110207,65.062827556623,77.05676756139906,79.41873324487334,63.22185034456524,64.97071405276628,0.2597526151899245,259.20436976223016,0.0947999865368274,92.1135038567229,109.32526,76.54888647719633,114201.67136738743,79963.32025195479,267.34142,167.34104859491976,278658.9888227305,174198.1391360282,296.59856,142.20065010958115,305916.97482502874,145437.83799233806,3065.33864,1390.0524038729045,3169797.806330304,1419786.0690200585,1296.96733,566.0989444478724,1337088.9689752427,573620.4788967647,2068.6364,861.3742175650135,2126061.52721195,869866.2381827049,0.37939,100000,0,496933,5190.985062153975,0,0.0,0,0.0,22503,234.43016818134336,0,0.0,27479,283.06695915595947,1917652,0,68848,0,0,4309,0,0,50,0.5118562624046799,0,0.0,1,0.010446046171524,0,0.0,0.06873,0.181159229289122,0.3055434308162374,0.021,0.3138342112558913,0.6861657887441087,25.16462195461077,4.485729793411953,0.3277153558052434,0.2155430711610486,0.2269662921348314,0.2297752808988764,11.017793949555193,5.532714034506025,22.444856029438206,12809.684984546526,60.55505825502164,13.729114721940388,19.769219792992025,13.487562024017995,13.569161716071225,0.5589887640449438,0.8036490008688097,0.6954285714285714,0.5750825082508251,0.1189894050529747,0.7180059523809523,0.9224806201550388,0.8669623059866962,0.7211155378486056,0.1411764705882353,0.5055055055055055,0.743455497382199,0.6358737490377213,0.5369406867845994,0.1131687242798353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0042578643768818,0.0065161126617609,0.0087078451893473,0.0109659830729166,0.0133725785753569,0.0155120190101271,0.0177588513423812,0.0199179967484995,0.0223905810084463,0.0245365433516528,0.0265838381764041,0.0288540638367884,0.0307782606009432,0.0324823353447831,0.0345718300545544,0.0365094974380208,0.0385979834861624,0.0409139103137148,0.0428074342626161,0.0576192265931679,0.0713620525484205,0.0848984385650318,0.0980590078438794,0.110784251702832,0.1252749809628564,0.1390807158238657,0.1507732918924097,0.1623417552481171,0.1733253229197957,0.1870267242586469,0.2003873788088642,0.2120790335033329,0.2233993702440304,0.2347126360864348,0.2456002305168897,0.2556804859257935,0.265718529186732,0.2750961854932982,0.2838110293949183,0.2910172296085442,0.2980838967784198,0.3053980131901441,0.3111804222648752,0.3180353777885842,0.3242356192779409,0.3300890609146593,0.33585482330468,0.3401349968258904,0.3447893276977942,0.3454665516683737,0.3463654792933681,0.3460696067487177,0.3464320398904173,0.3467149477699793,0.3464981650108256,0.3452445177874393,0.3464326907233481,0.3475679849017757,0.3482662071936248,0.3486471729020353,0.349514755790184,0.3508635214827296,0.3511781635039122,0.3520895269861987,0.3532580274029913,0.3537681823387928,0.355419029615627,0.3580325100274435,0.3616529978501473,0.3634411549707602,0.36574024585783,0.369528032942667,0.3726878282712948,0.3735984170357109,0.380849790544584,0.3795609152752009,0.383130081300813,0.3903387007218212,0.3921113689095127,0.0,2.53063015491084,59.01433194205522,205.38937885513997,300.887186397371,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95681,42740,402.7549879286379,6980,71.75928345230506,5427,56.14489815114809,2169,22.39734116491257,77.40264542862671,79.78347148405733,63.35728834693722,65.11216979814839,77.13367527656403,79.51147131287175,63.25944148696116,65.01487324185582,0.2689701520626784,272.0001711855815,0.0978468599760589,97.29655629256229,110.10934,77.11771753545102,115079.62918447758,80598.77879145391,269.65511,168.1957489798126,281287.4029326617,175248.20913223378,300.62084,144.122916582998,309984.14523259585,147414.39091324562,3125.34048,1419.429965155066,3235095.2435697787,1452393.3299217431,1345.77671,587.9372714373916,1390910.954107921,598955.5392302122,2148.1448,892.0748585098277,2219488.216051254,910603.5790935116,0.3835,100000,0,500497,5230.892235658072,0,0.0,0,0.0,22704,236.7136631097083,0,0.0,27863,287.15209916284323,1917477,0,68715,0,0,4511,0,0,49,0.4807642060597193,0,0.0,1,0.0104513957839069,0,0.0,0.0698,0.1820078226857888,0.3107449856733524,0.02169,0.3280843488977132,0.6719156511022867,25.17620895279769,4.453985007634639,0.3254099871015294,0.2115349180025797,0.226460291136908,0.2365948037589828,10.95093402297992,5.5023435773354565,22.93551381857833,12926.117227136076,61.14462542496614,13.515479189019116,19.81010349032408,13.742290837928648,14.076751907694296,0.5577667219458264,0.7770034843205574,0.6987542468856173,0.595606183889341,0.131619937694704,0.7299058653149891,0.9342105263157896,0.9028697571743928,0.7545126353790613,0.1291512915129151,0.4990113692535838,0.69921875,0.6283320639756284,0.5493697478991597,0.1322803553800592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809875343034,0.0049053888331458,0.0071515520389531,0.0093943918019966,0.0115313043389837,0.0135735087469197,0.0157411277743227,0.0177687510843939,0.0199070052628889,0.022401653772156,0.0244367453207322,0.02647626478318,0.0285726036129589,0.0306388325317459,0.0329749695631538,0.0350059428453309,0.036902432205759,0.0390793624439648,0.041027934355305,0.0429702970297029,0.0569634798596022,0.071071836162037,0.0848058761804826,0.0972377085393305,0.1101711898910418,0.1257234148354264,0.1395082297757638,0.1517809619110477,0.1642480070101947,0.1763810095767156,0.1901510827778555,0.2037053068998355,0.2154244328932773,0.2274203247143716,0.2380564752989318,0.2493771936623227,0.2594512636988973,0.2681923893626344,0.2776884034984366,0.2861357269452861,0.2939587086046833,0.3012534721411731,0.3092102932319284,0.3160923665948791,0.3215693408525862,0.3264776112054747,0.3313828457114278,0.3367795361597276,0.3420348664400822,0.3468933547554455,0.3481369005227159,0.3478982832205739,0.3481375358166189,0.3484632343405524,0.3499095840867993,0.3495528548498051,0.3492168960607499,0.3499326831510853,0.3507404121741504,0.3514781708861889,0.3521958351296133,0.3531267872285877,0.3543465083711306,0.3551328758856529,0.3555791045495051,0.3571391240723319,0.3579681958585974,0.3608669627949469,0.3614245416078984,0.3644368301525957,0.3644444444444444,0.3660144733315465,0.3710556329996198,0.3738797395633856,0.3744188253154948,0.3776115859449193,0.3817677001388246,0.3784715183458342,0.3794899917740609,0.3831316187594554,0.0,2.269882021217533,60.63005253110781,203.7233679160704,305.7033521456823,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95725,42462,400.3865238965788,6905,70.89057195090102,5395,55.75346043353356,2147,22.104988247584227,77.33907921770925,79.70608217006779,63.32552877917672,65.07561577297794,77.07701260002743,79.44270905099738,63.230496672527416,64.98235917612341,0.2620666176818247,263.3731190704083,0.0950321066492989,93.25659685453049,108.79396,76.16586106361864,113652.60903630192,79567.36595833757,267.59884,167.25717318313087,278951.9874640898,174129.14409311142,292.90666,140.82009577370445,301799.112039697,143945.35165471252,3099.71248,1395.8722111653206,3205313.763384696,1425552.173016701,1283.57685,556.4904994564912,1324589.8250195873,565160.6396019891,2121.54182,879.383903161296,2186065.938887438,893292.9354376779,0.37986,100000,0,494518,5166.027683468269,0,0.0,0,0.0,22550,234.9438495690781,0,0.0,27159,279.50901018542703,1921960,0,68917,0,0,4259,0,0,44,0.4596500391747192,0,0.0,0,0.0,0,0.0,0.06905,0.1817774969725688,0.3109341057204924,0.02147,0.3177673390439348,0.6822326609560652,25.02664077161408,4.49777891022126,0.3262279888785913,0.2103799814643188,0.2291010194624652,0.2342910101946246,10.911218012311094,5.383747505996493,22.922715330218665,12796.982841790154,60.73546532254352,13.33117002806472,19.941019385033908,13.603428611045327,13.859847298399568,0.5303058387395737,0.7480176211453744,0.6755681818181818,0.5647249190938511,0.0988924050632911,0.7222222222222222,0.9408450704225352,0.8513513513513513,0.7764705882352941,0.1074380165289256,0.4696267382288363,0.6602564102564102,0.6162613981762918,0.509683995922528,0.0968688845401174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0047248245934217,0.0068816418501263,0.0092566249390343,0.0116985239514562,0.0141156341341698,0.0163055116504359,0.0183667010382954,0.0204809914313176,0.0225117269915401,0.0246238731578245,0.0267144603186015,0.0283957092756574,0.0305162626335472,0.0321944673823286,0.0340933767643865,0.0363199386725507,0.0387920298879203,0.0406796580912172,0.0423811805888358,0.0568752545133704,0.0706147004969919,0.0841721187720181,0.09728911228417,0.1100823587721055,0.1251070941264821,0.1374649919375371,0.1490865732657667,0.1611531392913621,0.1725014752427444,0.1861302070986789,0.1987722223425218,0.2114292552381367,0.2229698680496291,0.2336621454993834,0.2446523175137986,0.255029361198562,0.2649104249189773,0.2742830554830509,0.2822801489544543,0.2902486721670003,0.297453771389139,0.3047642697506119,0.311246542702858,0.3180803571428571,0.3242754514589381,0.3295485772814709,0.3353353480458135,0.3404799751870662,0.3452721496460538,0.3458548525930708,0.3458537994799191,0.3461950696677385,0.3462674465743904,0.3464880952380952,0.3460423600141097,0.346397146254459,0.3473802037893628,0.3478447314705226,0.3491212338593974,0.3497225618357942,0.3516150139789423,0.3518359120777612,0.3531590169453484,0.3542986534338641,0.3557504110232521,0.3561318731592943,0.357602523659306,0.3612607853495334,0.3649063984353171,0.3664542161492962,0.3699833895943846,0.3710407239819004,0.3727755951005315,0.3739368739368739,0.3756430194999401,0.3837644125895917,0.3828430364122608,0.3906729963697291,0.3900270583687669,0.0,2.352476624515184,56.8947680938455,208.2813317502801,309.70338941171025,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95696,42453,399.93312155158,6853,70.60901187092459,5348,55.40461461294098,2161,22.278883129911385,77.30793472821749,79.68502746175396,63.31631099018998,65.07078587910493,77.04774061175097,79.42134587762669,63.22204617910951,64.9768786646361,0.260194116466522,263.6815841272693,0.0942648110804711,93.90721446882822,109.14134,76.47936261292732,114050.05433873934,79919.07980785752,264.44963,165.4378945203413,275894.6768934961,172429.81370207877,294.46135,141.08352818260127,304490.2817254639,144919.67871226455,3084.30932,1393.3609017439917,3198943.320514964,1431943.2178398175,1277.88463,557.4337624874421,1324899.201638522,572045.511293515,2127.79698,877.7503628936586,2196577.1610098644,895127.8814686572,0.38119,100000,0,496097,5184.093379033607,0,0.0,0,0.0,22251,232.03686674469157,0,0.0,27289,281.9344591205484,1919380,0,68963,0,0,4384,0,0,55,0.5747366661093463,0,0.0,0,0.0,0,0.0,0.06853,0.1797791127784044,0.3153363490442142,0.02161,0.3205074585250244,0.6794925414749756,24.961420329422044,4.487233596775049,0.3270381451009723,0.2137247569184742,0.2238219895287958,0.2354151084517576,10.837359018613403,5.405019200344822,22.967601900001675,12854.228381959509,60.65295791461263,13.573861541691594,19.848655587583053,13.481136977271248,13.74930380806675,0.543754674644727,0.7777777777777778,0.6952544311034877,0.5555555555555556,0.1096108022239873,0.7133382461311717,0.917098445595855,0.8390022675736961,0.7304964539007093,0.1532258064516129,0.4860937108494111,0.7067371202113606,0.6467889908256881,0.5016393442622951,0.0989119683481701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376121337302,0.0045397430181184,0.0068371559865691,0.0091919232956853,0.0111972174762021,0.0133192130666775,0.0156315322572422,0.0178458397141398,0.0200576580997362,0.0223254956956116,0.0242649772419731,0.0264681724845995,0.0283019838127461,0.0304313337660063,0.0325356778008234,0.0346727590377637,0.0366571345683617,0.0386611851667289,0.0407560359085849,0.0426665276764307,0.0570521324043995,0.0714554855456239,0.0851237935375577,0.0971531334462124,0.1091187012439384,0.1246801311198054,0.137786547009091,0.1504794950666823,0.1628513133859613,0.1748308002531292,0.188669696121293,0.2009237625475943,0.2132551995564205,0.2241584764570191,0.2345396546034539,0.2449987815414608,0.2551747994242164,0.2648485053048458,0.2738589682485645,0.2830352949262827,0.2908242432664026,0.2981947093166103,0.3062224747833499,0.3123012873579767,0.3181403495967594,0.3241762310255461,0.3301322635241021,0.335756370035963,0.3406573428389627,0.3466606689246401,0.3471607470581885,0.3474318990975078,0.3486312399355877,0.3493975903614458,0.3495161554863047,0.348818280940461,0.3485002541942044,0.3503949342875517,0.3519414975795653,0.3521217662561179,0.3529699616050591,0.3546593594249518,0.3554499379613468,0.3565453362937047,0.3584039803878946,0.3599695585996956,0.3616112385321101,0.3644108053329955,0.3681371331227597,0.371486826850038,0.3717099208540401,0.3717776944102042,0.3726027397260274,0.3747112274757431,0.3772813688212927,0.3794258373205741,0.381782057160324,0.3826210249139153,0.3858117326057299,0.3875379939209726,0.0,1.9057088665065345,60.35201135209355,203.96813467637463,301.31181549778046,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95709,42557,400.23404277549656,6972,71.52932326113532,5415,56.0239893844884,2202,22.714687228996223,77.38171245272493,79.75664717085671,63.34258245905804,65.0955424500296,77.110518669376,79.48308753284951,63.2437134165393,64.99800548535879,0.2711937833489202,273.5596380071996,0.0988690425187428,97.53696467080886,109.29314,76.57538461882957,114192.93901304998,80008.34177639468,265.31828,165.32246341716285,276640.6503045691,172163.1028871296,301.64148,144.94213248739,311237.20862196863,148476.92773762328,3122.2812,1420.3915972089956,3232320.429635667,1454201.609889348,1308.69497,572.0205069242692,1350547.3988862073,581054.8252560878,2165.59752,893.0543220995452,2234945.720883094,908778.619089124,0.38168,100000,0,496787,5190.588136956817,0,0.0,0,0.0,22311,232.53821479693653,0,0.0,27956,288.30099572662965,1920531,0,68893,0,0,4248,0,0,46,0.4701752186314766,0,0.0,0,0.0,0,0.0,0.06972,0.1826661077342276,0.3158347676419966,0.02202,0.322928026172301,0.677071973827699,25.160188741137738,4.539659639011891,0.3346260387811634,0.2029547553093259,0.2291782086795937,0.2332409972299169,11.058091865385723,5.458850406033696,23.26544874144008,12894.796522200657,61.06620210402021,13.010273762611517,20.569643331295133,13.673915828483002,13.812369181630569,0.5602954755309326,0.7816196542311192,0.7168874172185431,0.5817888799355359,0.121931908155186,0.7281205164992827,0.9376693766937668,0.891213389121339,0.7142857142857143,0.1461538461538461,0.5021139020144243,0.7027397260273973,0.6544227886056971,0.5419287211740041,0.1156530408773679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045413536883293,0.0070016641636562,0.0091826991447087,0.0116361860976056,0.0139307535641547,0.0162222788682131,0.0187124831557025,0.0209357717510197,0.0229092025795884,0.0249633494971448,0.0271865791932321,0.0293905925423171,0.0317058096415327,0.0335490129304562,0.035731271065528,0.0376776171340983,0.0396592335868674,0.0415899659917007,0.0436762682896327,0.0587141782939259,0.0723947318829958,0.0859109413690351,0.0987502366975951,0.1111017351405516,0.1258803375420341,0.1396044646267453,0.1516154787885239,0.1635064255269145,0.1751083365512507,0.1893694509094043,0.2024702583920588,0.2144185490097987,0.2255441020539784,0.2359908933933108,0.2470082915435112,0.2568471763761263,0.2666861596248355,0.275318429797997,0.2835762787555392,0.291839733428978,0.2992646113196076,0.3066043318735945,0.3137936407109555,0.3199416874202758,0.3267474393896442,0.3321197562837018,0.3371746549177405,0.3427568246893746,0.3475747376757078,0.3478348683147519,0.3477866248607615,0.3479852963959269,0.3481618336917769,0.3479337862291969,0.3472258320974819,0.3462079873467774,0.3472709391902966,0.3491606305922454,0.3494635154885395,0.3503426837946144,0.3511163801620233,0.3526596300553872,0.3534945035302529,0.3534685832411903,0.35425554052648,0.3559293093144369,0.3575843137254902,0.3599859845830413,0.3643956568428588,0.3678685531720675,0.3711708826982602,0.3694546841235541,0.3702733923758182,0.3704653371320038,0.3696904247660187,0.3745550224423464,0.3730175077239959,0.3776595744680851,0.3763736263736263,0.0,2.1139661519025608,61.496147091752974,201.9618683763053,303.9458206854523,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95851,42561,399.4950496082461,6963,71.2877278275657,5522,56.95297910298275,2216,22.701901910256545,77.44506122741345,79.72298789715717,63.40474875222951,65.08419120772076,77.18220609635816,79.46222902989791,63.30850034657959,64.99184916260504,0.2628551310552893,260.7588672592556,0.0962484056499164,92.3420451157284,108.67582,76.12047245275838,113379.95430407612,79415.41815187987,269.18952,167.59467781916328,280181.0205423,174188.55079150273,299.56304,143.02930687073916,308521.10045800253,146102.37199870366,3174.76924,1428.9320335147872,3275939.9067302374,1454532.5072401827,1356.32401,595.1461540890688,1395765.4797550363,601639.3298860408,2179.8005,900.8827748657416,2234491.38767462,905707.9554498538,0.38208,100000,0,493981,5153.634286548914,0,0.0,0,0.0,22695,236.09560672293452,0,0.0,27752,285.5264942462781,1925255,0,69203,0,0,4185,0,0,37,0.3755829360152737,0,0.0,0,0.0,0,0.0,0.06963,0.1822393216080402,0.3182536263104983,0.02216,0.3194217130387343,0.6805782869612657,25.00153041170729,4.548467492282614,0.3301340094168779,0.2057225642883013,0.2341542919232162,0.2299891343716044,11.118346971580506,5.596766472109312,23.40697239193781,12864.229575977271,62.14870921327747,13.345679151178762,20.537527945255334,14.436159241925656,13.82934287491773,0.5561390800434625,0.7720070422535211,0.6856829402084477,0.6063418406805878,0.1259842519685039,0.7228654124457308,0.9209039548022598,0.8544303797468354,0.7474402730375427,0.1877394636015325,0.5004830917874397,0.7046035805626598,0.6263899184581171,0.565,0.110009910802775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021761574120933,0.0044267061052077,0.0067529886537623,0.0091855791482278,0.0114516227366025,0.0136940309896124,0.0158274260571987,0.0177429716418367,0.0199328084632744,0.0225153374233128,0.0246672127790292,0.0269934875134608,0.0291688919929337,0.0308385450954575,0.0331241821984566,0.035146573080099,0.0372821759139562,0.039357105107719,0.0414655163463834,0.043588196120869,0.0579568087258469,0.0717203481022576,0.0845610177477619,0.0969095965160816,0.1092757038845166,0.1239999155601528,0.1380632180865145,0.1516909444426736,0.1632740107271195,0.1745877165758804,0.1889501456190691,0.2014123592229864,0.2136987788331072,0.2251926729690195,0.2358361062607759,0.2471072368857718,0.2571355333400202,0.2673790182132785,0.2770812551011154,0.2851307750394727,0.2927116938980816,0.3002888517266784,0.307274534396668,0.3140958879511581,0.320236447940184,0.3259686199167467,0.3315008452820737,0.336893018519697,0.3422170972506543,0.3463914260070746,0.3468566119541654,0.3472724522490065,0.3474468982979322,0.3470646737485406,0.3480496769221649,0.348187161285398,0.3465902813945047,0.3483980757273292,0.349002096364597,0.35030169268284,0.3512127564006588,0.3509812059050216,0.3516085088546579,0.3519036015291408,0.3520388536256972,0.3538902645640557,0.3537686152794783,0.3551895391965801,0.3565135305223411,0.3597715736040609,0.3597112441175126,0.3624265098877605,0.3624462433594738,0.3647357880141734,0.3643278189769918,0.3626545061802472,0.3669254658385093,0.3658283101226356,0.3633314700950251,0.3682564503518373,0.0,2.5978091956020264,60.71288801216977,206.811318256248,313.76911581304773,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95671,42288,397.8217014560316,6938,71.17099225470623,5397,55.70130969677332,2227,22.901401678669608,77.29747507811412,79.70111681687182,63.28577397120039,65.06603414258798,77.01516976440281,79.42009140067185,63.18107113826073,64.96493667489361,0.2823053137113049,281.02541619996657,0.1047028329396653,101.09746769437322,110.28028,77.19339810526223,115270.33270269987,80686.30839571264,268.79359,168.32336352561862,280194.6566880246,175178.27087165244,299.59507,143.9982901357143,308166.6858295617,146808.4248795584,3084.52336,1409.4504109561683,3185730.43032894,1434862.4044445734,1293.16922,572.3566807023875,1333954.259911572,580532.3138257093,2183.21378,918.5484717070358,2245998.264886956,927621.5183712892,0.37878,100000,0,501274,5239.5605773954485,0,0.0,0,0.0,22642,235.87084905561767,0,0.0,27692,284.49582423095814,1907847,0,68570,0,0,4405,0,0,61,0.6376017811039918,0,0.0,0,0.0,0,0.0,0.06938,0.1831670098738053,0.3209858748918996,0.02227,0.3232752708819092,0.6767247291180908,25.16597888443781,4.407012799751838,0.3168426903835464,0.2225310357606077,0.2317954419121734,0.2288308319436724,11.03444541815682,5.620733482837359,23.807075875345596,12779.116746372058,61.13249117101053,14.08156717709595,19.345431508811497,13.983157316354164,13.722335168748916,0.5501204372799704,0.7443796835970025,0.7005847953216374,0.5979216626698641,0.1044534412955465,0.6949891067538126,0.913978494623656,0.8480392156862745,0.7301587301587301,0.1453900709219858,0.5004975124378109,0.6682750301568154,0.6543778801843319,0.5534188034188035,0.0923399790136411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0047166940539224,0.0069851261485354,0.0093791281373844,0.011749267578125,0.0139949886940047,0.0164007996409775,0.0184534629603153,0.0205569817032635,0.0227442627315644,0.0249043521073307,0.0270592344517269,0.0290426122919281,0.0310783657066309,0.0329977801868772,0.0351062289248846,0.0370854063018242,0.03911531073153,0.0410541319433606,0.0431896111475888,0.0576959237824624,0.0720873506904096,0.085503809263962,0.0983956656672452,0.1106223164646432,0.1256904031319437,0.1388337455811633,0.1516675010385266,0.1632336584531143,0.1742080962095994,0.1880170414711751,0.2004271326821547,0.2118105861719626,0.2223731784814287,0.2331139553086174,0.2444797052883868,0.2552563629656953,0.2647333851578959,0.273433860209311,0.2823943500492994,0.2898582637013687,0.2975075873867751,0.3043421567349068,0.3104450717760826,0.3162105878484527,0.3224543242208249,0.3283655112716871,0.3331376502718293,0.3380250571844458,0.3430387288977159,0.3425427806763807,0.3429842866816844,0.3433249833708374,0.3440198539976489,0.3444154682959541,0.3437778255396235,0.3426419283222328,0.3442404720035499,0.3458504098360656,0.3464271685176588,0.3482763140647529,0.3485841791398444,0.3505135191783693,0.3510635918312568,0.3513864818024263,0.3522703549060543,0.3542421734539539,0.3569560422246731,0.3581164371500017,0.3609184405644582,0.3637736885471024,0.3672837859467534,0.3692229879243852,0.3705513975866809,0.370682312860793,0.373584455835022,0.3751937984496124,0.3748205864260816,0.3738551207327227,0.3734423676012461,0.0,2.699538888817949,60.33457911540616,205.67275372077185,302.04372432299004,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95833,42488,399.601389917878,6893,70.83155071843728,5429,56.10802124529129,2180,22.372251729571232,77.32864418348662,79.6382889071019,63.32870225298407,65.03806802128999,77.04802239016267,79.35965150600187,63.22532607719309,64.9381363771338,0.2806217933239452,278.63740110002766,0.1033761757909772,99.93164415618594,108.83774,76.2532241420262,113570.21067899368,79568.85847466551,266.97994,166.43969406854907,278083.49942086753,173171.57353787217,301.16166,144.33611363686035,311122.59868729976,148098.42387237394,3131.6656,1425.8460027925998,3238690.1797919297,1458817.370995266,1342.07402,591.1937848555827,1387726.5138313523,604247.3721644373,2152.96556,903.8189159830096,2212317.761105256,913363.1535504478,0.38132,100000,0,494717,5162.282303590621,0,0.0,0,0.0,22385,233.04081057673244,0,0.0,27868,287.6670875376958,1918325,0,69035,0,0,4376,0,0,72,0.7513069610676907,0,0.0,2,0.0208696378074358,0,0.0,0.06893,0.1807668100283226,0.3162628753808211,0.0218,0.3251245157719978,0.6748754842280023,24.972733482094764,4.46986165977155,0.316080309449254,0.2110885982685577,0.2355866642107202,0.237244428071468,10.901109866534629,5.393523821709826,23.419522125813607,12854.81656604602,61.639799722683485,13.704882753160964,19.39388621519386,14.290196023999336,14.250834730329323,0.552956345551667,0.7966841186736475,0.6934731934731935,0.5887412040656763,0.1133540372670807,0.7314487632508834,0.935483870967742,0.871331828442438,0.740983606557377,0.1742424242424242,0.4900348779272546,0.721399730820996,0.631578947368421,0.5410677618069816,0.09765625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0045614888699671,0.0067873991782072,0.0090707784820412,0.0112161887329672,0.0134493993076766,0.0158291713382937,0.0181554696031106,0.0202342265007051,0.022409823484267,0.024447723267347,0.0265388641448246,0.0286007913262422,0.0308629901481382,0.0329057273083506,0.0349476250490692,0.0372018419827184,0.0391290824261275,0.0411728657934917,0.0429329725228975,0.0581050918876071,0.0719319156054618,0.0852977244856247,0.0982535045501355,0.1102467613235092,0.1257029301086634,0.1387913940640673,0.1516534729315628,0.1637672337380792,0.1751771605004449,0.1884583907649896,0.2011706282660204,0.2136689865158764,0.224549588945251,0.2349225910806439,0.2453637028338466,0.2557035812795229,0.2656846515084969,0.2747245257298648,0.2837754118672846,0.2916130229537098,0.2998369176258022,0.3067659528984216,0.3130948947216613,0.319437003847465,0.3251654157614063,0.3305536397266286,0.3362873610119351,0.3417126533792118,0.3465254798146923,0.3470253044910745,0.3472513812154696,0.3473140349635501,0.3477565965360921,0.3477715565509518,0.3473308293824272,0.3463796477495107,0.3478698146804722,0.3491851318698267,0.3496653663075766,0.3504964645704829,0.3513711949835298,0.3526729427586786,0.3536207824838478,0.3553200222120283,0.3561438954632521,0.3575006440163723,0.3587436868686868,0.360457343887423,0.3634194831013916,0.3638938376501758,0.3658354247877396,0.3689652984837911,0.366415732063297,0.3676777251184834,0.3657920077034184,0.3638183217859892,0.3669050051072523,0.3654164368450083,0.3685647425897035,0.0,2.1524465791969805,62.54920766584238,205.3380980204207,302.50445848491205,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95737,42491,399.6365041728904,6944,71.27860701714071,5496,56.71788336797685,2186,22.332013745991624,77.35098256499538,79.69905582217503,63.33757887846742,65.07095975515664,77.07413914784868,79.42685889177544,63.23478929719905,64.97387850058642,0.2768434171466936,272.1969303995877,0.1027895812683681,97.0812545702131,107.92232,75.63839876335358,112727.91083906952,79006.44344752141,267.76092,167.01491569173936,279006.6327543165,173775.95284374256,295.72934,141.94775695458128,305879.91058838274,145813.4035147585,3165.50716,1425.948062912587,3268268.945130932,1451298.8383041266,1349.2498,588.9161409469165,1389643.0951460772,595498.9001264133,2151.96246,899.5603885792126,2200621.306287016,895974.5980387061,0.38032,100000,0,490556,5123.995947230434,0,0.0,0,0.0,22527,234.56970659201767,0,0.0,27445,283.56852627510784,1924805,0,69056,0,0,4209,0,0,49,0.5118188370222589,0,0.0,2,0.0208905647764187,0,0.0,0.06944,0.1825830879259571,0.3148041474654378,0.02186,0.3285070345581204,0.6714929654418795,25.07208946313216,4.532272505401684,0.3198689956331877,0.2168850072780203,0.2270742358078602,0.2361717612809316,11.028567890729626,5.554518953465275,23.168997707835786,12830.592441985378,61.80395458759764,14.100856648638652,19.71704482719089,13.809477714367636,14.176575397400468,0.5456695778748181,0.7911073825503355,0.6803185437997725,0.5729166666666666,0.1117103235747303,0.7139737991266376,0.9349397590361446,0.8597701149425288,0.7054263565891473,0.1390977443609022,0.4895681707908782,0.7142857142857143,0.6213151927437641,0.5383838383838384,0.1046511627906976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025113161119155,0.0046320227850923,0.0065954359583168,0.0088262777281222,0.0111437606125001,0.0133053720312325,0.0158000428130192,0.0179827112866517,0.0199204816075389,0.0219836453141471,0.0241917297086741,0.026288236501745,0.0285919909525523,0.0307692307692307,0.0327748777518724,0.0348220653443446,0.0369354070453745,0.0391009277130938,0.0409847996506622,0.0432572095349224,0.0578673737837725,0.0720181614654712,0.0848826113854897,0.0971957900049418,0.1095906297112373,0.124159512834609,0.1366702730223382,0.1490942376056368,0.1609291193879949,0.1720704675664656,0.1859553103923807,0.1990842471017395,0.2112746537863211,0.2224070385852793,0.2329990201798905,0.2441276562725166,0.2546270957364817,0.264257742167807,0.2737149214421941,0.2826376146788991,0.2902168752822389,0.2982123415165244,0.3052225470123906,0.3126392982960673,0.3195623398545181,0.3256106122750619,0.3307892497872979,0.3365351585857686,0.3424425008098477,0.3475543693681791,0.3481081810211101,0.3484209074610399,0.3488766186999562,0.3489548604064593,0.3489179165611641,0.3491054288566382,0.3478184908117723,0.3488621195392449,0.3490659811482433,0.3504813370074795,0.3516873556310916,0.3534863457235083,0.354419738556597,0.3551527659383552,0.3567709588776936,0.357750608686546,0.3594272485638343,0.3616194178439366,0.3641002181715814,0.366155072752641,0.3693512201822261,0.3727156139788393,0.3745413134252815,0.3759547815459823,0.3764161631419939,0.3813397129186603,0.3776147361848267,0.3788934426229508,0.381950265437273,0.3763106796116505,0.0,2.6034529458307327,60.145295192630726,202.088917841482,318.0025967193577,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95831,42279,397.70011791591446,7009,71.87653264601225,5467,56.33876303075205,2164,22.122277759806327,77.51248185563044,79.79817596924393,63.42745123530996,65.11078273366603,77.24422782432366,79.53075571694765,63.32944996638586,65.01569380280152,0.2682540313067818,267.42025229627586,0.0980012689241007,95.08893086450598,109.53448,76.71152292051994,114299.63164320524,80048.75553893828,268.2337,166.55705484311008,279204.0258371508,173104.55188664937,292.90033,140.5129299548702,300798.96901837614,142904.73907542558,3134.8786,1415.7108160334903,3234287.026118897,1440347.0430786018,1346.22201,585.0735765875208,1386296.469827091,592054.4169900247,2132.7922,883.4584033639989,2183672.632029301,889563.9631479057,0.38166,100000,0,497884,5195.437801963873,0,0.0,0,0.0,22575,234.85093550103824,0,0.0,27225,279.1372311673676,1927850,0,69041,0,0,4304,0,0,56,0.5843620540326199,0,0.0,1,0.0104350366791539,0,0.0,0.07009,0.1836451291725619,0.3087458981309744,0.02164,0.3127807268272764,0.6872192731727236,25.090822894758745,4.4462383604562605,0.3380281690140845,0.2101701115785622,0.2207792207792207,0.2310224986281324,11.348314441596866,5.8619804891785074,22.801444716340605,12809.056267480326,61.31981590277036,13.455338947169263,20.80968007537322,13.33126543719294,13.723531443034922,0.5520395097859887,0.7519582245430809,0.704004329004329,0.5700082850041425,0.1306413301662707,0.7081824764663287,0.8790931989924433,0.8593073593073594,0.7255639097744361,0.15234375,0.4992657856093979,0.6848404255319149,0.6522366522366523,0.5260361317747078,0.125124131082423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022767287960658,0.0046789074447291,0.006932971143028,0.0091424744548507,0.0114488307360978,0.0137089392860774,0.0159332939667284,0.0180698319464839,0.020034104949302,0.0221392780447898,0.0244943935282371,0.0265001179378313,0.0285858139558779,0.0308035898069243,0.0327322962092392,0.0346120475954387,0.0365790562913907,0.0385373035292166,0.0404620674610182,0.0426118913516496,0.056598460672048,0.0704643600280226,0.0836511861849274,0.0966180023106816,0.1087290723386332,0.1245207288090837,0.1373049855858911,0.1496049595389245,0.1610978902323198,0.1722513145072338,0.1859387265708171,0.1993951177360121,0.2117211504011638,0.2230508844725922,0.2343798057911156,0.245153656459764,0.2552698426846116,0.2641736219543703,0.2739310188593759,0.2825873262618873,0.2899973467763332,0.2985564992485408,0.3062415964899865,0.3127567593388745,0.3199820853608347,0.3260201950716163,0.3307936903796994,0.3360061817536925,0.340880957293171,0.3456467498358503,0.3459846574754573,0.3462033814704189,0.3466752653198559,0.3466881649223327,0.3476104465237475,0.347648136835675,0.3481725053749842,0.34844884380275,0.3489934029967782,0.3494149960761932,0.3506461884247986,0.352242405075801,0.3527340557080879,0.3539771584381914,0.3547212305628099,0.3554401454167749,0.3572828216851731,0.3592421210605303,0.3623132765601005,0.3662619356359778,0.3688495097598273,0.3684955937893411,0.3675810473815461,0.3709104646769928,0.3673583325579231,0.3697764251433922,0.367420814479638,0.3622327790973871,0.3649891774891775,0.3562570462232243,0.0,2.7895115098289684,60.14572188441763,202.12284400143287,310.1389740940828,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95720,42418,398.5687421646469,7016,72.01211867948182,5490,56.581696615127456,2198,22.503134141245297,77.31288813594676,79.67197360150212,63.318020272784125,65.06205623027344,77.04725254905827,79.407244446092,63.22065318604629,64.96793656554175,0.265635586888493,264.729155410123,0.0973670867378331,94.11966473169286,109.0936,76.39324404804046,113971.58378604264,79809.0723443799,267.81944,166.91104928512723,278971.6151274551,173551.2320153858,298.24218,142.85498609791048,305677.62223150855,144768.78545482544,3137.39152,1419.6347058170638,3237268.700376097,1443011.9315165123,1330.4675,580.9081735053521,1373561.575428333,590596.3917047022,2155.41152,892.9129448739207,2211002.2774759717,900125.4594619554,0.38122,100000,0,495880,5180.52653572921,0,0.0,0,0.0,22574,235.03969912244045,0,0.0,27723,283.75470121186794,1919052,0,68972,0,0,4398,0,0,42,0.428332636857501,0,0.0,0,0.0,0,0.0,0.07016,0.1840407114002413,0.3132839224629418,0.02198,0.3276797829036635,0.6723202170963365,25.097888785746093,4.474904054427087,0.317304189435337,0.2156648451730419,0.2435336976320583,0.2234972677595628,11.09969427590618,5.665323418249695,23.41723523684596,12844.97918858982,62.24784323135034,14.162242144793272,19.80147831244778,14.79403693856124,13.490085835548038,0.5550091074681238,0.7719594594594594,0.7238805970149254,0.56245325355273,0.097799511002445,0.7292857142857143,0.903846153846154,0.8791946308724832,0.6910299003322259,0.1864406779661017,0.4953545232273839,0.7005208333333334,0.6702702702702703,0.525096525096525,0.0766902119071644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990135510137,0.0044699419211627,0.0069602978926328,0.0091618250518018,0.0113709177083227,0.0136150712830957,0.0158662180075456,0.0180600504333799,0.0202936185004191,0.022506425287474,0.0244947760199321,0.0268829901935616,0.0291570676320552,0.0314263936384986,0.0335922911056774,0.0357497209475381,0.037826307560084,0.0396372465602755,0.041731661155134,0.0437188076309949,0.058402238369665,0.0719233264276895,0.0853948844867183,0.0975091736849299,0.1100496631132761,0.1254495451660672,0.1390931567610012,0.1518777143830367,0.1634673930459862,0.1744804512406974,0.1875013459095118,0.2000475866022084,0.2124730902211494,0.224371944483939,0.2344262295081967,0.2448988634601324,0.2555943704728847,0.2653892458116273,0.2750843242138258,0.2836121934448773,0.2917038152029178,0.2994619253713885,0.3063224035309849,0.3134127916736612,0.3200563976031019,0.3260631018284488,0.3309365135040337,0.3365072495130924,0.3417842931394279,0.3460333408246632,0.3461175136973361,0.3458876726681187,0.3459278510692392,0.3460724637681159,0.3460729783331593,0.3460243261113588,0.3460449280896016,0.3475880267172425,0.347756685318046,0.3478104745318419,0.3487413153584003,0.3506470272526686,0.3508384354814955,0.3504666606838373,0.35180216114294,0.353881637574042,0.3537407163134803,0.3563863521055302,0.3603951281688146,0.3611790655704832,0.3637699797905567,0.3658783964127475,0.3674550614947966,0.3690339385581858,0.3733143399810066,0.3809751434034417,0.380581920024895,0.3848670756646217,0.3834733893557423,0.3911877394636015,0.0,3.0521087066665715,61.07154743093096,209.10460821589805,308.178251645276,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95798,42644,401.80379548633584,6870,70.70084970458673,5287,54.78193699242155,2117,21.82717802041796,77.37208356525132,79.70984616183969,63.35007434272507,65.07913377875316,77.11399596671282,79.44929161375016,63.25546894352919,64.9855598989152,0.2580875985384949,260.55454808953016,0.0946053991958848,93.57387983796173,109.8119,76.9280637524409,114628.59349882044,80302.36931088426,268.23061,167.62458809133972,279549.86534165643,174533.27639766296,291.43412,139.18477946139888,301698.50101254723,143390.7236362158,3035.57976,1363.6698095233082,3145757.781999624,1400588.258845286,1263.35829,548.6820118368856,1310903.5261696486,564935.6255384111,2091.2612,869.5951819762562,2157291.154303848,885611.4226976874,0.38333,100000,0,499145,5210.3906135827465,0,0.0,0,0.0,22560,235.03622205056476,0,0.0,27064,279.9849683709472,1918556,0,68860,0,0,4374,0,0,48,0.5010543017599532,0,0.0,0,0.0,0,0.0,0.0687,0.1792189497299976,0.3081513828238719,0.02117,0.3182069728832318,0.6817930271167681,25.30534455140936,4.513262810133951,0.3226782674484584,0.2125969358804615,0.2311329676565159,0.233591829014564,11.14784278515912,5.534308089284793,22.36831026235086,12935.611252607829,59.321506825024464,13.231650642292244,18.95361475206797,13.39606197798857,13.740179452675688,0.5452997919425004,0.7642348754448398,0.6899179366940211,0.5736497545008183,0.1182186234817813,0.6939890710382514,0.9175531914893617,0.8695652173913043,0.7192307692307692,0.1335740072202166,0.4977533699450824,0.6871657754010695,0.64050822122571,0.5343035343035343,0.1137787056367432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044807590933052,0.006596172190538,0.0089088895886876,0.0109529136580901,0.0132045121355269,0.0153706591648064,0.0174602526685307,0.0197228580771746,0.0217787329853648,0.024113300745022,0.0263754759387924,0.0284524849668499,0.0304262767710049,0.03254514143112,0.0345094797747584,0.0365397952529319,0.0388268967519807,0.0406479566920543,0.0424054388905662,0.0569985494693562,0.071666143708817,0.0853617627943057,0.0984848484848484,0.1112129448201757,0.1268526637157858,0.1403804376622688,0.1525816604287172,0.1647691503323765,0.1766400994129494,0.1909812611604741,0.2048854301772589,0.2167269802975472,0.2269239177962396,0.2380842406246563,0.2482501993443784,0.258656849620705,0.2678314445044072,0.2762686499478481,0.2845740721655387,0.2924363527003111,0.3003543072299723,0.308281610214577,0.3153186597370249,0.321303276399966,0.3271589733484408,0.3329452269170579,0.3385513365039803,0.3427451183374526,0.3478438612686272,0.3489813756471458,0.349361836591699,0.3493699078120154,0.3498054868613244,0.350657845833643,0.3491917566842871,0.3490479358742832,0.3497601682107891,0.3512962772697695,0.3517359745414238,0.3541951814005812,0.3551869352893493,0.3554889675837646,0.3566061365059486,0.3573613352279569,0.3592095977417078,0.361458900381056,0.3635932160486014,0.3649611856033874,0.3689766865277722,0.3702855047889647,0.372803503712012,0.3757518201962646,0.3752204247489074,0.3773799374822392,0.3746877601998334,0.3727593074919565,0.3736307508464449,0.3743213897937025,0.3743879472693032,0.0,1.450493571938026,57.02538680288178,199.4106179090008,305.7237616124984,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95648,42432,399.08832385413183,7114,73.08046169287387,5597,57.94161927065909,2230,23.01145868183339,77.25911226955019,79.6543395296735,63.27736057920528,65.04515980373166,76.98393979895931,79.37664834005692,63.17633063817825,64.94513271659687,0.2751724705908742,277.6911896165899,0.1010299410270292,100.0270871347908,108.53194,76.0123692923395,113470.16142522584,79470.94481049213,267.45936,166.45090736724583,279083.59819337574,173479.24406913453,298.58626,143.67482888736382,307698.43593174976,146810.73936066285,3217.811,1449.7704418689352,3334821.4703914355,1486334.7711075346,1339.37221,583.686677755539,1387412.2720809637,597342.921708283,2193.0817,916.8560511782596,2264991.8450986957,935377.9959312336,0.38092,100000,0,493327,5157.734610237538,0,0.0,0,0.0,22539,235.07025761124123,0,0.0,27677,285.0347106055537,1916636,0,68900,0,0,4293,0,0,45,0.4495650719304115,0,0.0,1,0.0104550016728002,0,0.0,0.07114,0.1867583744618292,0.313466404273264,0.0223,0.3207698476343223,0.6792301523656776,25.045267123975638,4.519926900878287,0.3258888690369841,0.2131499017330713,0.227085938895837,0.2338752903341075,11.005624496567975,5.544175518427281,23.87748510337235,12896.336192569335,63.28068108030183,14.12963072511178,20.69515344153564,14.035940971947792,14.41995594170661,0.5433267822047525,0.7854149203688181,0.6776315789473685,0.5601888276947286,0.1191749427043544,0.7084818246614397,0.9376623376623376,0.8663697104677061,0.71875,0.1316725978647686,0.4880782069623271,0.7128712871287128,0.616,0.513733468972533,0.1157587548638132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.0047860959855605,0.0068712827071026,0.0092261420907169,0.0115061803754005,0.0137901533823559,0.0158043926015049,0.0178241473299509,0.0201388249966776,0.0223759903371752,0.0246880670924879,0.0269224055610888,0.0291077397788634,0.0311830393934399,0.0334674922600619,0.0357028382360543,0.0375941407423522,0.0398588332987336,0.0417199737884981,0.0436699887410866,0.0590952316261377,0.0733347297863426,0.0868597349686036,0.0993240112875373,0.1122069693769799,0.1274860737508737,0.1397633613730988,0.1523668481445572,0.1637920894772297,0.1748094062063782,0.1886615396231299,0.2010055151639921,0.2135660054682308,0.2250734101766227,0.2353473187302847,0.2463209569399247,0.2569884290861887,0.2665132387946887,0.2755713814404842,0.2840066662835469,0.2919399589045867,0.2993334585054449,0.3063671657030239,0.3132940327237729,0.3196110250247074,0.3260923350982235,0.3322444877190778,0.3364876254693127,0.3420577265461539,0.3470917833441511,0.3474129541522491,0.3478032460530317,0.3484166100158622,0.3481158155099665,0.3484209581912794,0.3477129216078854,0.3468351609874107,0.3467315945856718,0.3484921426360854,0.3490059445771448,0.3508824803631637,0.3523803849133051,0.3539977679041462,0.3548589482175267,0.3566315586512738,0.3579615173746182,0.3590988264184346,0.3612795250726285,0.3639058474785616,0.3654153354632588,0.3658547773037934,0.3662069702800941,0.3695569379205281,0.371979198531661,0.3757051523128996,0.3783008722666985,0.3792147806004619,0.3858573472307378,0.3871150042384854,0.3919936583432422,0.0,2.290617258024111,62.052248866055365,213.74618315659453,315.6728798681939,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95606,42441,400.71752818860745,6880,70.53950588875176,5362,55.39401292805891,2167,22.216178900905803,77.28554750318864,79.71697134522624,63.27381344368565,65.07174216582553,77.01721019075228,79.45031411872469,63.17492760918442,64.97624848672336,0.2683373124363584,266.6572265015503,0.0988858345012246,95.49367910216232,107.8891,75.54456572867734,112847.62462606948,79016.55307059948,265.34228,165.7167807740633,276872.15237537393,172667.91914112426,295.31122,142.01351544376791,304182.0597033659,144992.38624412968,3074.68616,1396.188018747566,3176927.3476560046,1421286.3405513968,1272.8971,559.4778489108533,1314300.0857686757,568092.4721365325,2127.45474,886.5011081201787,2183484.613936364,892258.878638939,0.38089,100000,0,490405,5129.437483003159,0,0.0,0,0.0,22341,232.97700981109972,0,0.0,27425,282.1998619333515,1922151,0,68971,0,0,4204,0,0,38,0.397464594272326,0,0.0,0,0.0,0,0.0,0.0688,0.1806295780934128,0.3149709302325581,0.02167,0.3240855762594893,0.6759144237405107,25.141473565272968,4.4709071314966815,0.3243192838493099,0.2206266318537859,0.227154046997389,0.2279000372995151,11.176364194330848,5.736728763948768,23.10039335728555,12822.813291852164,60.550379561928,13.779484052394295,19.68783471513329,13.724150131092522,13.358910663307864,0.5550167847817978,0.7666948436179205,0.6940770557791834,0.59688013136289,0.1104746317512275,0.72,0.9244791666666666,0.8413793103448276,0.7467532467532467,0.157258064516129,0.4981188863807373,0.690863579474343,0.6449386503067485,0.5461538461538461,0.0985626283367556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800972841507,0.0044731156619906,0.0067416642976079,0.0085988717792346,0.0107028038904488,0.0130183662867096,0.0151380685701461,0.0173259235044132,0.0192899735095273,0.0213430558258144,0.0236864241603578,0.0261197480502666,0.0282341073781291,0.0302333731909454,0.0323083594911614,0.0343197592031361,0.0363216199131597,0.0382174865771463,0.040353050157686,0.0424198174706649,0.0574701830307211,0.071309559987006,0.0854218551327721,0.0971691056396641,0.1098188348386415,0.1252091762163994,0.1389585547290117,0.1513539445628998,0.1636169074371321,0.174524551412915,0.187893175074184,0.2003100876051695,0.212243074173369,0.223399592364505,0.2339541089168954,0.2450270846283633,0.2558552918422788,0.2644625304355668,0.2735497363156937,0.2822447481882396,0.2902415011293218,0.2979079791969264,0.3056362579895409,0.3125360299769408,0.3184629620610724,0.3249607923041776,0.330283393705426,0.3356490038367898,0.342142152536213,0.3470995716778594,0.3475388618499993,0.3480859267419444,0.3486379675370501,0.3486930707407139,0.3489119757092251,0.3487839727142835,0.3475870397737204,0.3483857145211529,0.3484936765260308,0.3497730493909112,0.350566825214792,0.3511816326934886,0.3513820522529345,0.3526470390385003,0.3531948727833461,0.3548555199458037,0.356485426964377,0.3589115902457396,0.3614255765199161,0.3638344226579521,0.3683946793002915,0.3696125843652016,0.3691182036079223,0.3714481602803382,0.373033072646754,0.3722334004024145,0.3727593074919565,0.3787078423405119,0.3853738701725555,0.3867924528301887,0.0,2.641297233932161,60.26627554987754,199.73552529157348,302.6728797233436,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95804,42347,398.7411799089808,6834,70.00751534382698,5336,55.06033151016659,2124,21.752745188092355,77.35864855579545,79.66271541708284,63.35358995694328,65.05389526749808,77.09284681604949,79.3992355138663,63.255934717749696,64.96003798490831,0.2658017397459673,263.4799032165347,0.0976552391935783,93.85728258976656,110.31702,77.23334078484837,115148.65767608868,80615.98762561935,266.43695,166.05899452783962,277499.164961797,172724.8805142161,294.30844,141.16732459368396,302895.34883720934,144076.18600731445,3059.3526,1385.7089591430033,3159175.942549372,1412230.4696494956,1317.42278,579.0020433968783,1356936.9337397185,586175.0275530028,2091.21072,868.3982295138093,2144797.98338274,873586.6017112057,0.37957,100000,0,501441,5234.029894367667,0,0.0,0,0.0,22415,233.3201118951192,0,0.0,27343,281.1260490167425,1916033,0,68792,0,0,4284,0,0,51,0.5323368544110892,0,0.0,0,0.0,0,0.0,0.06834,0.1800458413467871,0.3107989464442493,0.02124,0.3257342657342657,0.6742657342657342,25.07351759679213,4.514563054878875,0.3354572713643178,0.2140179910044977,0.217391304347826,0.2331334332833583,11.262383638477882,5.714939741224939,22.516747673300728,12755.135267104986,60.28653035308625,13.501384479831408,20.18166725875948,13.057436400404926,13.546042214090422,0.5502248875562219,0.7749562171628721,0.6944134078212291,0.5629310344827586,0.1245980707395498,0.722473604826546,0.9047619047619048,0.8640552995391705,0.703971119133574,0.1940928270042194,0.4932668329177057,0.7107329842931938,0.640117994100295,0.5186862967157417,0.1082423038728897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023581563872639,0.0046693474055242,0.0070257611241217,0.0091732878727916,0.0115010261516266,0.0135903565434108,0.0157274986757935,0.0176165168871706,0.0198189730911468,0.022044231674134,0.0238036709275647,0.0260016000984676,0.0282943267511866,0.0305010444858351,0.0323132758691796,0.0344752796339712,0.0364315498670419,0.0383877756238143,0.0403942831027462,0.04245263377056,0.0570015752631524,0.07106041755967,0.084377129081285,0.0972559405576399,0.1087199376093417,0.124227212681638,0.1370459894408752,0.1491197276740599,0.1607161922658068,0.1721505687605202,0.1857968798785542,0.1985330708150327,0.2104639276159819,0.2219754734112962,0.2327942131744965,0.2436096393021039,0.2542306661903911,0.2641178257591953,0.2737880387282778,0.2817309786034358,0.2893725399398009,0.296976722401761,0.3051676556633384,0.3117526416157933,0.3179966188686589,0.3234281908004293,0.3294569761910723,0.3350426915393131,0.3394573864372522,0.3449268473036497,0.3454077646361505,0.3462671364862633,0.3457805699153438,0.3450557706756054,0.3446471314095417,0.344387090845038,0.3429875873876444,0.3441824494430092,0.3452884829583426,0.346137292877125,0.3468865777744344,0.3477648366039009,0.3496357741378584,0.351939896837856,0.35183665588647,0.3522149410222804,0.3527203965275191,0.3561817318347317,0.3595457922105486,0.3603942939573649,0.3635905194150277,0.3676060865837977,0.3741518168558564,0.3765313198243316,0.3772907613829586,0.3800878129820814,0.3809229819416577,0.3864754098360656,0.3856338028169014,0.3871987356775977,0.0,2.545438057856903,58.00191604981467,206.98389609587875,299.24729786726147,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95882,42639,400.34625894328445,6880,70.72234621722534,5328,55.20327068688596,2170,22.433824909784946,77.41454581429173,79.70274460688118,63.37712166936033,65.0678646303191,77.15121533837251,79.43456994573057,63.28071488248475,64.97095858338875,0.2633304759192185,268.17466115060995,0.0964067868755762,96.90604693034288,108.87646,76.26191012777872,113552.55418118104,79537.25425812845,265.67162,166.24966724010372,276743.75795248325,173051.7690912827,292.29168,140.03418418109064,302349.05404559773,144147.43052102553,3070.81828,1394.3488088617733,3184581.506434993,1436109.9777453262,1280.82896,560.4375424659254,1327948.8329404895,576617.5950292288,2142.43246,893.8971753952967,2216931.269685656,917059.3080991386,0.38376,100000,0,494893,5161.479735508228,0,0.0,0,0.0,22363,232.86956884503869,0,0.0,27117,280.28201330802443,1923749,0,69079,0,0,4483,0,0,47,0.4901858534448592,0,0.0,1,0.0104294862435076,0,0.0,0.0688,0.1792787158640817,0.315406976744186,0.0217,0.3260688506385341,0.6739311493614658,24.93474593604584,4.567005348990128,0.3140015015015015,0.2162162162162162,0.2304804804804804,0.2393018018018018,11.007536689407404,5.41450989309373,23.02552572472029,12878.630607831376,60.28199564827323,13.615632739989426,18.893042912706893,13.680262091872642,14.09305790370428,0.5489864864864865,0.7769097222222222,0.7065152420800956,0.5814332247557004,0.1050980392156862,0.7131386861313869,0.9093264248704664,0.8778280542986425,0.7427536231884058,0.1240601503759398,0.4921677614957049,0.7101827676240209,0.6450040617384241,0.5346638655462185,0.1000991080277502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023687806853267,0.0047110075477432,0.0068446616709086,0.0091771059630885,0.0113324524850086,0.0134006247519816,0.0158109209453952,0.0180239911869109,0.0201438261011685,0.0225329351116929,0.0246550646849744,0.0268132814984254,0.0289654038613688,0.0308791287968462,0.0327546033775285,0.0349193889881536,0.036892962817356,0.039057804306825,0.0412722139179538,0.0434660509236145,0.0577606789486305,0.0717480354455776,0.0856631087181958,0.0984871549904987,0.1108736167121181,0.1264125039602914,0.1394994121323179,0.1517785973153649,0.163677871536927,0.1747697579781537,0.1881299955893585,0.2014076588751703,0.2129134611205285,0.2244915800631632,0.2349831283454787,0.2463205187791868,0.256994391106056,0.2668517228203457,0.2766606557562973,0.2848948374760994,0.2925819250211102,0.2997976631852259,0.3067747470563872,0.3133578681115813,0.3202047092860703,0.3264191197326394,0.3319265641436658,0.3370295870041249,0.3417031983606132,0.3467108914554536,0.3470996429293269,0.3474250788100712,0.3475846908291528,0.3473207961723594,0.3479695582377073,0.3477528262001776,0.3470178769182091,0.3477347685542228,0.3487553604073055,0.349084876378037,0.3494271379361989,0.3507422855674382,0.3519902841468266,0.353347028089135,0.3547060944825099,0.3569326144148368,0.3582446354374182,0.3607019743027264,0.3627619615965177,0.366955691671307,0.3694704332818603,0.3705626788174208,0.3701550387596899,0.3698093300173336,0.3739837398373983,0.3746745562130177,0.3765498239706107,0.380738624770455,0.3890719384953322,0.3917995444191344,0.0,1.4465741452616172,61.19571778979496,203.20106088189792,295.5206349689076,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95711,42714,401.92872292630943,6899,70.78601205713032,5401,55.85564877600276,2156,22.06642914607517,77.36002699221102,79.73009972354188,63.33690834044432,65.08769855622324,77.09517019322128,79.46700542408351,63.2391367972542,64.99322690863583,0.2648567989897401,263.09429945837337,0.0977715431901273,94.47164758741168,108.90858,76.35144358394045,113788.98977129064,79772.90341124892,268.18071,167.2142035947258,279613.74345686496,174122.73162582578,296.40072,141.58770905558367,306179.83303904464,145171.77452006468,3095.33572,1401.247702781304,3201818.056440744,1431814.83211115,1305.14121,570.8099074304947,1348275.5378169697,581058.0732993226,2109.7026,879.0209216282921,2161940.111376957,885231.620293158,0.38255,100000,0,495039,5172.226807785939,0,0.0,0,0.0,22466,234.1319179613629,0,0.0,27529,284.19930833446523,1921919,0,68914,0,0,4327,0,0,49,0.5015097533198901,0,0.0,2,0.020896239721662,0,0.0,0.06899,0.1803424388968762,0.3125090592839541,0.02156,0.3228531855955678,0.6771468144044321,25.159158280743608,4.397551033011431,0.3303092019996297,0.2212553230883169,0.2232919829661173,0.2251434919459359,11.397210616647252,6.042464996884166,22.86853500410286,12869.002890852717,60.90870500766535,14.019081455817336,20.07854369781536,13.463734058687365,13.347345795345287,0.5624884280688761,0.7648535564853557,0.7001121076233184,0.5970149253731343,0.1274671052631578,0.7206870799103808,0.9142857142857144,0.8498845265588915,0.7413127413127413,0.2022900763358778,0.5103397341211225,0.6938271604938272,0.6521095484826055,0.5575501583949314,0.1069182389937107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025321327647851,0.0047542296424697,0.0068802451721583,0.0091326520246246,0.0113308108547947,0.0134617734511832,0.0158307849133537,0.0181775500622588,0.0204753386148735,0.0227789266774504,0.0248723574401771,0.0270214775573898,0.0292771716216077,0.0313327221976165,0.0332748658687577,0.0356382208804615,0.0376259984046245,0.0396076599719757,0.0416978698618738,0.0433994310662818,0.0585040833803287,0.0732243411274622,0.0854367302406579,0.0978459790908517,0.1101657388663967,0.1256581033935934,0.1397307647426989,0.1522849662629573,0.1645733205169283,0.1755537677661571,0.1892931404130619,0.2020019478411427,0.2144759296094607,0.22490188147063,0.235618909346884,0.2466270852256363,0.2570574189373145,0.2663734829994714,0.2744891247646912,0.2820709557728865,0.2901412360759274,0.2980556757199144,0.3050741183290546,0.3121241884866924,0.3181845791270333,0.324064263361506,0.329983228616486,0.3355845543345543,0.3411583431523611,0.3462457270315572,0.3472285845167201,0.3475021005220314,0.3474083688383511,0.3479356071573339,0.348225979283248,0.3476660737287615,0.3468056127458744,0.3465874591791522,0.3475920292579553,0.3497419965361473,0.3500599835045362,0.3506200676437429,0.3523084006529655,0.3534827593912713,0.3554973066564063,0.3564457202505219,0.3573776113857849,0.3600429713419065,0.3622472385926527,0.3645353725427393,0.3668045977011494,0.3712080608854111,0.3722636973301278,0.3764633866401408,0.3768702361908346,0.3782051282051282,0.3844155844155844,0.3845373376623376,0.3956714761376249,0.3967517401392111,0.0,2.1983840305077798,58.939236882735344,205.5009353220737,307.7127865849116,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95757,42299,398.7489165282956,6969,71.56656954582954,5435,56.23609762210595,2168,22.348235638125672,77.33346816806463,79.69540125915313,63.32120940122799,65.07031853310288,77.06437616381035,79.42363447416155,63.22297197088124,64.97311748648814,0.2690920042542757,271.76678499158413,0.0982374303467494,97.20104661474238,109.66252,76.8350708630733,114521.67465563877,80239.6387345816,267.4751,166.29231455609218,278796.21333166247,173130.0109194024,296.38487,141.82155998842487,305830.3204987625,145339.92624092154,3118.8754,1407.9096820254356,3228547.928610963,1441769.1887020634,1309.55578,571.3413828466419,1353250.697076976,582338.3278632803,2134.31334,885.1798060555731,2202490.1573775285,902047.2369228496,0.37969,100000,0,498466,5205.530666165398,0,0.0,0,0.0,22540,234.8340069133327,0,0.0,27437,282.86182733377194,1919156,0,68830,0,0,4273,0,0,49,0.5012688367430057,0,0.0,0,0.0,0,0.0,0.06969,0.1835444704890832,0.3110919787630937,0.02168,0.3282463550892492,0.6717536449107507,25.072874559841484,4.569271902222786,0.3357865685372585,0.2088316467341306,0.2206071757129714,0.2347746090156393,11.07092839174937,5.538627561774982,23.10921922498535,12775.797828981067,61.35963551645148,13.377394151985603,20.7376516413202,13.281716523904192,13.96287319924147,0.5486660533578657,0.7691629955947137,0.6986301369863014,0.572977481234362,0.1152037617554859,0.7083636363636364,0.8903743315508021,0.8786610878661087,0.7114624505928854,0.1518518518518518,0.4945812807881773,0.709592641261498,0.6347438752783965,0.5359408033826638,0.1053677932405566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986929429049,0.0044923538717397,0.0065870937620526,0.0087992033977524,0.0107605622342914,0.0126159516948548,0.0146902907474615,0.0169622991978118,0.0191222762765218,0.0213730768837071,0.0237433747167915,0.0258405625994558,0.0278786133706282,0.03,0.0319938096466339,0.0341812318473575,0.0360337972166998,0.0382268708753579,0.0401821451963363,0.0421926425863433,0.0568389406766391,0.0709284435932054,0.0835755432672633,0.0966713992743334,0.1094214666863518,0.1245810114937667,0.137017547582168,0.1497823611421517,0.1614729062987248,0.1726948111133748,0.1865197345742847,0.2003678658371652,0.2124135380867446,0.2232357702235639,0.2338265221934987,0.2448618001417434,0.254141734393141,0.2633041873445641,0.2729439268245628,0.2819588041997275,0.2902378942255427,0.2975217243839397,0.3048082156125032,0.3124423411010603,0.318937159365403,0.3255195508716635,0.3312072437124026,0.3366768370200864,0.341540134363714,0.3461188058676737,0.346810834131018,0.3463095008672191,0.3465696846675406,0.3465128732072304,0.3461893420660911,0.3457840577484257,0.3443458381622188,0.3450001646307332,0.34647612193492,0.3484063994840282,0.348295817519071,0.3501209022079518,0.3511312597070058,0.3520880500325032,0.353370203105755,0.3551965592300228,0.3552939832009599,0.358974358974359,0.3588320548623139,0.3617012795471758,0.3652142139398922,0.3681315747316708,0.3694372349180224,0.3668993020937188,0.3702192274841036,0.374939700916546,0.375232486050837,0.3728287841191067,0.3696145124716553,0.3664571877454831,0.0,1.9610824517182288,61.02454671459952,203.71783977560727,308.5033287351577,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95787,42738,402.44500819526655,6923,71.00128409909486,5397,55.64429411089187,2214,22.67531084593943,77.34149214859087,79.67906604448454,63.33904717832892,65.07176746138886,77.07062186666147,79.41045885342226,63.23964285580543,64.97586967724627,0.2708702819294046,268.60719106228714,0.0994043225234904,95.89778414259342,108.85424,76.33972463745121,113641.97646862308,79697.37504823328,267.14369,166.8554105100009,278195.18306241976,173505.22463518564,301.57465,144.94250026654416,310131.4270203681,147722.0062065148,3110.04508,1415.1120714480007,3209672.9201248605,1440696.4618131917,1357.40446,596.4281101650622,1401404.7104513138,607840.0846783445,2183.09836,904.9435013968612,2239379.393863468,911946.7855154328,0.38297,100000,0,494792,5165.544384937413,0,0.0,0,0.0,22491,234.0714293171307,0,0.0,27972,287.3041226888826,1922121,0,68948,0,0,4390,0,0,49,0.5115516719387808,0,0.0,0,0.0,0,0.0,0.06923,0.1807713397916286,0.3198035533728152,0.02214,0.320280296784831,0.6797197032151691,24.926522188206015,4.5517272321382105,0.332592180841208,0.2080785621641653,0.2210487307763572,0.2382805262182694,11.497769887300336,5.943660420818827,23.431882452282995,12855.780222399457,61.100262713694725,13.369849089515611,20.415815405744656,13.207884247145303,14.106713971289146,0.5530850472484714,0.773820124666073,0.6997214484679666,0.586756077116513,0.1244167962674961,0.7262931034482759,0.921832884097035,0.8703703703703703,0.7718631178707225,0.1580882352941176,0.4928838951310861,0.7007978723404256,0.6363636363636364,0.5344086021505376,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0047038309864866,0.0070627632046273,0.0093078079908954,0.0114666531006766,0.0136292795224659,0.0157983844647519,0.0178598780749318,0.0199196261491108,0.0220051403352481,0.0241569174296875,0.0263395699410568,0.0282960646767192,0.0303070884798038,0.0327190556770811,0.0346263966841349,0.036665424121935,0.0390037447744318,0.0410124793482891,0.0430659365826237,0.0576862884210087,0.0715062420275611,0.0849627999580844,0.0974358974358974,0.1095806679383279,0.1257623643070808,0.1390087463556851,0.1517175369562905,0.1640231406370079,0.1754699993568994,0.1896791138763603,0.2022230151264502,0.2139271589378069,0.2250844271522093,0.2362940646097684,0.247068593256934,0.2572183451873983,0.2663200332408728,0.2751223269300471,0.2844335685126528,0.2926502517669885,0.3002557604493909,0.3079914883555976,0.3141694103561808,0.3198839918454519,0.3255573473834525,0.3303497762332175,0.3360219492677226,0.3421705747007574,0.3468396102185936,0.3467509753800619,0.3465315216195401,0.3461261997716734,0.3455452704657217,0.3458877100043154,0.3448064392487543,0.3440906278261697,0.3459639188833289,0.3470475341855444,0.348435176725605,0.3489715651404806,0.3508580281242552,0.3526426616129711,0.3536870503597122,0.3532829750145264,0.354609184236091,0.3552366130612715,0.3574706782253952,0.3611773498950066,0.3628432436778837,0.3665057556628295,0.3656297256426874,0.3681209558587994,0.3706124990271616,0.3734189344576466,0.3748189280540802,0.3749017141059915,0.3765148349352277,0.3812358276643991,0.3798600311041991,0.0,2.650991433126449,60.84801998190007,202.35385093913,304.2022549592005,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95708,42517,400.217327705103,6914,71.07033894763238,5329,55.15735361725248,2185,22.516404062356333,77.3419109081298,79.7109989706345,63.33255108723839,65.08100549951918,77.08073189710719,79.44848927332934,63.236249388588696,64.98642817069556,0.2611790110226195,262.5096973051626,0.0963016986496896,94.57732882361825,110.04334,77.00488090462774,114978.20453880553,80458.14446506849,266.79276,166.8839008518539,278161.3867179337,173783.17858696572,297.48975,142.58269783970778,307593.5136038785,146524.65299153884,3088.05188,1403.737545286,3197541.396748443,1438268.1761420374,1301.64338,572.2371693053622,1346736.7409202994,584865.6357713793,2157.12598,896.3999196984629,2224224.6416182555,912002.6906760816,0.38099,100000,0,500197,5226.282024491161,0,0.0,0,0.0,22432,233.82580348560205,0,0.0,27532,284.38584026413673,1915557,0,68797,0,0,4261,0,0,58,0.5955614995611652,0,0.0,0,0.0,0,0.0,0.06914,0.1814745793852857,0.3160254555973387,0.02185,0.3272752306209555,0.6727247693790445,25.170923824174128,4.487654329852753,0.3235128541940326,0.2066053668605742,0.2317507975229874,0.2381309814224057,11.013886282365071,5.440830062602954,23.246173426687584,12843.93356885723,60.3337890735524,13.082705842031428,19.40335712590854,13.869892426856328,13.977833678756104,0.5501970350910115,0.7656675749318801,0.6937354988399071,0.6,0.119779353821907,0.7151248164464024,0.9201101928374656,0.8692660550458715,0.7551020408163265,0.1449814126394052,0.4935719687421225,0.6897018970189702,0.6343167701863354,0.5515409139213603,0.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569183408943,0.0047025438329786,0.0068878068573747,0.0092630210449337,0.0115203156139423,0.0136128533029241,0.0157191351417474,0.0178002776190087,0.0200429272281275,0.0221785542489279,0.0244490005125576,0.0265022384688051,0.0284959174019456,0.0307020255094681,0.032691474212123,0.0348060701290109,0.0369307884298718,0.0390730401212146,0.0412282161127979,0.0430822460294301,0.0577766637423236,0.0716304484361261,0.0851441102099486,0.0978490665264265,0.109944937870509,0.1255541331189098,0.1395837311437846,0.1528758023823971,0.1643913173524761,0.175519704803381,0.1890407418177118,0.2017660617472324,0.2134886452623336,0.2243666145451762,0.2352785904401575,0.2462551895931359,0.2567225438038835,0.2658841254314658,0.2752076053909334,0.2834495152410059,0.2913672810580027,0.2989665383129879,0.3056913841891523,0.3126093941065049,0.318630966126621,0.3246197308199997,0.3303128289968416,0.3361555306579751,0.3412833102304672,0.3457840383017449,0.3465295837656475,0.3468972253174308,0.3467357192113374,0.3473533743394265,0.3475826216115856,0.3460890603944628,0.3461903706751923,0.3470356380358023,0.3477963434865146,0.3484886424610982,0.3495307807807807,0.350191085325043,0.3518090029448885,0.3516281158769369,0.3529411764705882,0.3530765408854371,0.3547639484978541,0.3567389999684134,0.3585165806405996,0.359697248808618,0.3643364657345863,0.3670750628644802,0.3683676059913683,0.3702478066800062,0.373026440935895,0.3734723220704529,0.3711021920345785,0.3671278133388395,0.3658949745906267,0.3673548889754577,0.0,1.9513713792839644,60.22067522471513,203.21909729206777,298.1712099916969,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95710,42100,396.48939504753946,6944,71.26737018075437,5404,55.88757705568906,2258,23.205516664925295,77.33810060160408,79.72013119908658,63.31256206328344,65.07476863563147,77.06379247031953,79.44703361872851,63.21214605999103,64.97778520521196,0.2743081312845561,273.0975803580691,0.100416003292409,96.98343041951318,108.67934,76.06433561942592,113550.6634625431,79473.75991999364,261.82218,163.01491844385396,272993.2190993627,169757.12929041265,289.9713,139.08191838569144,299728.7117333612,142838.4770420047,3132.57412,1413.6921755924732,3240867.746316999,1444940.5240753016,1310.77043,565.3152010362952,1355757.3816738063,576915.8657425017,2233.10582,920.7163924102194,2295822.9861038555,928336.1596707372,0.37872,100000,0,493997,5161.39379375196,0,0.0,0,0.0,22058,229.8714867829903,0,0.0,26858,277.39003238951,1924976,0,69093,0,0,4335,0,0,56,0.585100825410093,0,0.0,0,0.0,0,0.0,0.06944,0.1833544571187156,0.3251728110599078,0.02258,0.3277253453699904,0.6722746546300096,24.95803685056168,4.491625750962618,0.3203182827535159,0.2120651369356032,0.2200222057735011,0.2475943745373797,11.156564669311436,5.641518492686352,23.819125719101176,12803.183771904578,60.910021283269245,13.599232899972709,19.416871458572714,13.348552620727697,14.545364303996138,0.5490377498149519,0.7783595113438045,0.7094165222414789,0.5870479394449117,0.1113602391629297,0.7116920842411039,0.9197994987468672,0.8690476190476191,0.7322033898305085,0.1216730038022813,0.4934194189222746,0.7028112449799196,0.658276125095347,0.5391498881431768,0.1088372093023255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023109201110863,0.0043619395414891,0.0066399983755355,0.0085980852491005,0.0110906482433023,0.0132105643773108,0.0154825286090202,0.0178843187923233,0.020125786163522,0.0221880919469615,0.0243439739948112,0.0266668035774795,0.0287379958461,0.0306984120445698,0.0327222835449828,0.0344738500966218,0.0363521530704161,0.0383972942409246,0.0404615864434972,0.0424496854035584,0.0558317319742668,0.0697947091276446,0.0827509496526684,0.0951239008792965,0.1071748737040826,0.1235586586268909,0.1375270597223991,0.1501134076606076,0.1616864379608849,0.17291619728132,0.1863915526344144,0.1994760033345242,0.211824000696682,0.2229590720070037,0.2335369544879203,0.2452782088228774,0.2548281524009517,0.2651356523696949,0.2742367799382155,0.2836228145600458,0.2922038060159607,0.2998454042912021,0.3068966742888286,0.3139324306496684,0.3203608466766361,0.3251176172777003,0.3303279202457834,0.335637138011502,0.340409528873212,0.3449273447820343,0.3447044716597281,0.3449501349936635,0.3456488937148336,0.3462250506219265,0.347500111568957,0.347177456487706,0.3472946622489259,0.3475295045859495,0.3484801807352639,0.3493542732443744,0.3503173947338767,0.3515049504950495,0.3530153658587854,0.3541615158121867,0.3553501616873401,0.3550026055237102,0.3564404412393467,0.3595551635057652,0.3631220129322463,0.3657762076767356,0.3691665153441075,0.3697091698892832,0.3722723852520692,0.3734019214766624,0.3755380872169193,0.372746679316888,0.3707302262031274,0.3729086877645636,0.3764673764673765,0.3718631178707224,0.0,2.182236707267553,60.78504928226199,201.5842111172824,305.0918459438863,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95642,42268,397.4927333179984,6885,70.66978942305681,5362,55.40452939085339,2197,22.56330900650342,77.27782633283482,79.68870173807629,63.2892740309558,65.07222953024818,77.00465847138177,79.41776456399984,63.1879704184238,64.97515947828572,0.2731678614530466,270.937174076451,0.1013036125319928,97.07005196246143,109.45396,76.65029027442779,114441.31239413646,80142.91867006943,266.1678,165.9254525229415,277604.76568871416,172804.88346467438,293.28142,139.67774948511246,303062.9953367767,143255.02989584787,3092.22752,1404.98465531706,3196284.6029986828,1432649.5834265158,1282.45439,555.5067158415673,1326256.194977102,566218.665333349,2171.19052,905.612355913777,2231212.333493653,912221.278151574,0.3796,100000,0,497518,5201.877836097113,0,0.0,0,0.0,22399,233.474833232262,0,0.0,27229,281.0689864285565,1918110,0,68858,0,0,4233,0,0,53,0.5541498504840969,0,0.0,1,0.0104556575563037,0,0.0,0.06885,0.1813751317175974,0.3190994916485112,0.02197,0.3219822812846069,0.6780177187153932,25.1104382085612,4.4926759605317805,0.3254382693024991,0.2118612458038045,0.2256620663931368,0.2370384185005594,10.961824703401993,5.406143031510139,23.29463579449387,12810.008319905284,60.64035603581429,13.44927390393637,19.88020127958784,13.390879388959508,13.920001463330586,0.5477433793360686,0.7764084507042254,0.6991404011461319,0.5834710743801653,0.1014948859166011,0.7159940209267563,0.936842105263158,0.8706140350877193,0.7053941908713693,0.1340996168582375,0.4917992047713718,0.6957671957671958,0.6384794414274632,0.5531475748194015,0.093069306930693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024927547980463,0.0048880415382119,0.0073396544372931,0.009593788428509,0.01151635383285,0.0137834781634253,0.0158286588475267,0.0182113455763691,0.0203864526754022,0.0227004988782921,0.0248723050729245,0.0268507390629975,0.0289871476934791,0.031126960895467,0.0330800363426117,0.0351461492315012,0.0372327747898985,0.0392818574514038,0.0412612518861543,0.0434501527585164,0.0578122877237718,0.0707597561741971,0.0843007998656393,0.0967164807408966,0.1090239449550966,0.1239493574407723,0.1368005182722841,0.1488146609131106,0.1605985410828502,0.1712408194820255,0.1857021221559984,0.1980529325132114,0.2109623339865012,0.2229761526928086,0.233941822826063,0.2455500631746946,0.2550228386995901,0.2641116551297203,0.2735590949856392,0.2820991400533602,0.2901972124226476,0.2983666358778893,0.3048551041900862,0.312428064454249,0.3188321238862755,0.3248482305907902,0.3308151043624245,0.3360081518277926,0.3411090064609876,0.3463042731428873,0.3468453875435328,0.3473674035819329,0.347452355369564,0.3478569771488226,0.3484791980548055,0.3472670788348559,0.3471912971563076,0.3487171025492946,0.3499785426143678,0.3503067044516985,0.3511112783935864,0.3519361055371228,0.3523009557492316,0.3530151600224593,0.3535880888502163,0.35439689938721,0.355923939541687,0.3568842880731614,0.3600854548691472,0.3612799356007244,0.3617531718569781,0.3634510140573023,0.3657404463661219,0.3679289026275116,0.3694019206998193,0.370540019286403,0.3670668953687822,0.3705699481865285,0.3733784545967287,0.3776740567872423,0.0,2.5305547693861445,58.57941385172084,204.8888910439431,304.7540209517499,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95818,42169,396.6791208332464,6871,70.58172785906615,5338,55.12534179381745,2130,21.90611367383999,77.39792083527668,79.70185054216591,63.37134666233784,65.07185337903505,77.13716562496265,79.44013599153733,63.27554518169734,64.97780477958428,0.2607552103140307,261.7145506285823,0.0958014806404961,94.04859945077249,110.37114,77.20996744742473,115188.31534784696,80579.81532428639,266.8085,166.99240577768498,277817.2577177566,173644.66569713937,292.59298,140.97209883844718,301517.178400718,144239.8113085167,3045.43824,1384.3860600445182,3147884.948548289,1414548.119238427,1288.26475,568.7010247449531,1330516.1973741886,579639.3817429094,2093.01416,873.5973006085749,2154514.9763092534,887083.5587954132,0.37906,100000,0,501687,5235.832515811226,0,0.0,0,0.0,22506,234.2879208499447,0,0.0,27112,279.0185560124403,1917538,0,68718,0,0,4299,0,0,51,0.5218226220543113,0,0.0,1,0.0104364524410862,0,0.0,0.06871,0.1812641798132221,0.3099985446077718,0.0213,0.3189441847676657,0.6810558152323344,25.259490586427987,4.401731837555228,0.3276508055451479,0.218433870363432,0.2266766579243162,0.2272386661671037,11.079663216759316,5.704284470472237,22.715220563651386,12780.000342909509,60.21946246798092,13.774672152324152,19.39408244173753,13.709644586538776,13.34106328738045,0.5458973398276508,0.7675814751286449,0.6718124642652945,0.5743801652892562,0.122835943940643,0.7242888402625821,0.906801007556675,0.8869778869778869,0.7206349206349206,0.1785714285714285,0.4842450214267708,0.6957087126137841,0.6065573770491803,0.5229050279329609,0.1082206035379812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020855268486271,0.0045901772233987,0.0067041939246412,0.0089964765492521,0.0112434938191281,0.0134131200260527,0.0159870391881151,0.0181076256057128,0.0202607434047857,0.0226210085839105,0.0247530838900045,0.0269818308659834,0.0289418799379449,0.0311396964239773,0.0332714904143475,0.0350737715920002,0.0367983281951542,0.0388569888683899,0.040571131879543,0.0426397735314932,0.0570090338194487,0.0713620817688341,0.0849026927271202,0.0975650784305479,0.1097911901424038,0.1250832514033808,0.1379431007242304,0.1499121920068117,0.1607358424049483,0.1718079629311824,0.185911518911002,0.1986219876260113,0.2114326716096627,0.222704511163106,0.2333036411423795,0.2446830888458344,0.2550152212942003,0.2647306823164356,0.2736332509466905,0.2820838482310403,0.2906045156591406,0.2982007243836896,0.305691210727335,0.3121514564036284,0.3179250315197362,0.3245952861290164,0.3304188161231092,0.3350901701803404,0.3396670590213553,0.3445387006691606,0.3454667562122229,0.3448531531902624,0.34499831214133,0.3447713832395788,0.3449994807352788,0.3449566798588084,0.3443998483028885,0.3448524590163934,0.3464565584825773,0.3467145460392325,0.3472206604445444,0.3481630877526001,0.3489054768095278,0.3498014403984654,0.3513049782503625,0.3520234542694099,0.3545765243114391,0.3572040214392185,0.3594699646643109,0.360266273368677,0.3618348623853211,0.363334048487449,0.3655961844197138,0.3704073789392775,0.3714612525021447,0.3772160996645903,0.3839987667642978,0.390827922077922,0.3898165891048453,0.3855283307810107,0.0,2.321013925506925,60.18186710037669,199.51261297570343,300.16500628663704,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95546,42298,399.3783099240157,6915,71.07571222238502,5382,55.70091892910221,2166,22.23012998974316,77.19945181010942,79.67219006931116,63.224607941291474,65.05454735111073,76.92670613882049,79.40070952834182,63.124726057033314,64.95830974678117,0.2727456712889307,271.4805409693355,0.0998818842581599,96.2376043295592,109.59256,76.84258031866734,114701.35850794382,80424.69629149033,269.45882,168.286004348991,281393.4963263768,175504.37940781505,301.08914,144.85878708349546,311524.9931969941,148713.7090643646,3093.30268,1411.050390387404,3202382.935968016,1441710.2865503577,1279.37211,564.5587316752484,1321474.4520963724,573339.1263634772,2128.7603,890.6188887945568,2186713.666715509,895928.5148443824,0.37812,100000,0,498148,5213.698113997446,0,0.0,0,0.0,22677,236.6713415527599,0,0.0,27979,289.2638101019404,1907559,0,68542,0,0,4263,0,0,39,0.4081803529190128,0,0.0,1,0.0104661628953593,0,0.0,0.06915,0.1828784512853062,0.313232104121475,0.02166,0.3236954426545504,0.6763045573454496,24.944573267030417,4.432875191099484,0.3272017837235229,0.2136752136752136,0.2276105536975102,0.2315124489037532,11.110091694216862,5.6459999888241645,23.261002168209693,12747.513923821189,61.08912271926534,13.570197990979093,20.21252794117968,13.635064832486412,13.671331954620165,0.5546265328874025,0.7713043478260869,0.7137989778534923,0.5697959183673469,0.1147672552166934,0.7340350877192983,0.9481481481481482,0.8609406952965235,0.7071428571428572,0.1713147410358565,0.4900176901693202,0.6751677852348993,0.6572327044025157,0.5291005291005291,0.100502512562814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002098306149963,0.0043221525537225,0.0067227232106588,0.0089982918496827,0.0114834873966689,0.0135884523639625,0.0154411389498392,0.0177498467198038,0.019596807204257,0.0217157380174012,0.023702228563803,0.0258295373921627,0.0278369944696759,0.0299460496590709,0.0320570454193148,0.0342118338785143,0.0363609964530916,0.0384751293936685,0.04059375,0.0424492352664822,0.057093841856962,0.0704054025712548,0.0837275307473982,0.0962707720840051,0.1086988690413275,0.1242671303315274,0.1374743359254492,0.1507160694085757,0.1626190450684007,0.1742478009333935,0.1878206028142852,0.2008399531188957,0.2125364081641558,0.2237396340660787,0.2347721478472965,0.2452622692230788,0.2555477221606741,0.2652883888368524,0.2744674071376548,0.2829967606313323,0.2906290234651387,0.2974250689189981,0.3035909241942374,0.3100991288675278,0.3160684260545361,0.3225774546893158,0.3287309823234544,0.3339290957602992,0.3385331357408419,0.3425960264900662,0.3436414035562166,0.3437607900006905,0.3447432762836185,0.3441256216561064,0.3439221364701667,0.3436504394132947,0.3423548130469371,0.3434543563326564,0.3444368013757524,0.3463205019867311,0.3478925612034957,0.3493184757735548,0.3496872887085869,0.3496722456243101,0.3507431924541112,0.3510277127141616,0.3508610263203363,0.3526519477223702,0.3551730257320319,0.35832,0.3614171428571429,0.364474034620506,0.3651685393258427,0.3668403309837573,0.3685103175350984,0.364798661727805,0.3680183626625861,0.3667270166968416,0.3646575342465753,0.3723076923076923,0.0,2.4993721305659835,62.70237531052532,197.8080321938144,302.90042493248063,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95675,42708,402.1635746015156,7034,72.24457799843219,5455,56.367912202769794,2223,22.81682780245623,77.33990302576841,79.73146409554474,63.32261558699434,65.08919778225035,77.06288332537653,79.45439664786453,63.22107162585821,64.99045021961741,0.2770197003918753,277.06744768021,0.1015439611361301,98.74756263293705,109.84842,76.92154938100121,114814.13117324274,80398.79736712958,267.38246,167.26303902666226,278838.67258949566,174193.34102603846,303.22409,145.54412971849936,312967.58818918216,149021.8417251374,3145.89916,1432.5143269947723,3253806.657956624,1462968.0553904085,1344.10625,589.6178594635104,1389106.694538803,600511.5646339279,2190.61082,911.6224467780974,2250798.996603084,919725.0109823348,0.38229,100000,0,499311,5218.824144238307,0,0.0,0,0.0,22523,234.74261823882935,0,0.0,28136,290.054873268879,1915229,0,68733,0,0,4420,0,0,44,0.459890253462242,0,0.0,1,0.0104520512150509,0,0.0,0.07034,0.1839964424913024,0.3160363946545351,0.02223,0.3254933765882671,0.674506623411733,25.00877526900372,4.443390522734114,0.321173235563703,0.2181484876260311,0.2274977085242896,0.2331805682859761,11.266654133475631,5.716188793890121,23.71614709088349,12950.73574105738,61.85885143828053,14.272324635674345,19.723366240103047,13.902532550944631,13.960628011558482,0.5622364802933089,0.7924369747899159,0.7071917808219178,0.5922643029814666,0.1179245283018868,0.724113475177305,0.9326923076923076,0.8733031674208145,0.7338129496402878,0.156934306569343,0.5058096415327565,0.7170542635658915,0.6511450381679389,0.5514018691588785,0.1072144288577154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0046525771628402,0.0071638035129019,0.0096392150489578,0.0121310108497808,0.0144037948655306,0.0163493293105557,0.0186474238589042,0.020884445534838,0.0228970910356404,0.0249833410220923,0.0271715699357408,0.0292653833497861,0.0311585843187342,0.0334396383565037,0.0350810078681541,0.0369860033359924,0.0388719353968155,0.0410177989992614,0.0433132837827976,0.0573499916429884,0.0723311592458045,0.0858443847574282,0.0983515154065455,0.1103574141277745,0.1260380631988744,0.1391196409815716,0.1519957424161788,0.1644185276558478,0.1758386671384001,0.1901403142263334,0.2032717358376249,0.2153824405732802,0.2263136028688255,0.2367384222574396,0.247782220105656,0.2584258381212695,0.2685574781180388,0.2773056806707434,0.2859564525181257,0.29419795221843,0.3012290528925426,0.3085243612350442,0.3154798279353439,0.3216857958340924,0.328272309379737,0.3338298991011742,0.3388823132628256,0.3440663685268001,0.3491333756076939,0.3491673970201577,0.3490705141455482,0.3495596454581381,0.3502288793602967,0.350481069971106,0.3488668077406692,0.3479349980182322,0.3482859586787735,0.3498306939836508,0.351203559749102,0.3524290244497401,0.3544739916440607,0.3539956758118348,0.3551387172863079,0.3570237145550801,0.3589320337473143,0.3603404791929382,0.3636133362885096,0.3648925643200452,0.3682448589191774,0.3700351935646053,0.3711064807394347,0.3731721212888523,0.3729891221081661,0.3732766761095373,0.3721844833750447,0.3701358863495985,0.3704312114989733,0.3675645342312009,0.3662631784459195,0.0,2.4839436372611,61.96305104551528,205.51947280779456,306.41047483363343,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95783,42337,397.3669649102659,6914,70.87896599605358,5356,55.33340989528413,2167,22.269087416347368,77.331780499572,79.67240558807174,63.32970022966426,65.06270186798146,77.0603584354003,79.40012788601608,63.22911694652191,64.96427996342833,0.271422064171702,272.2777020556606,0.1005832831423489,98.42190455313472,109.8075,76.94333855206625,114641.95107691344,80330.89227949244,269.16508,167.9902836458306,280438.1675245085,174812.7249387647,295.64006,141.99249949265612,304950.61754173494,145518.12409790416,3065.95328,1389.4641746829686,3170147.1868703216,1419980.5480887897,1242.98467,548.1557365069,1284730.2652871597,559399.1690862712,2118.9001,891.1154518260445,2179840.368332585,903197.5906258916,0.37879,100000,0,499125,5210.997776223338,0,0.0,0,0.0,22667,236.03353413444972,0,0.0,27367,281.9602643475356,1915687,0,68773,0,0,4298,0,0,47,0.4906925028449725,0,0.0,1,0.0104402660179781,0,0.0,0.06914,0.1825285778399641,0.3134220422331501,0.02167,0.3195720751611576,0.6804279248388424,25.443988543358163,4.501340147020807,0.3265496639283047,0.2156460044809559,0.2326362957430918,0.2251680358476475,11.04781289181879,5.660942709425292,23.273733326702924,12748.634570086351,60.45488526651222,13.55780412374843,19.6813627011235,13.99558400463015,13.220134437010136,0.5440627333831217,0.7532467532467533,0.6826758147512865,0.5850722311396469,0.1003316749585406,0.7152221412964311,0.910761154855643,0.8554502369668247,0.7423312883435583,0.1311475409836065,0.4850615114235501,0.6757105943152455,0.627731725697061,0.5293478260869565,0.0925155925155925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107368954165,0.0046125461254612,0.0069712928856281,0.0090718842699825,0.0111467073480803,0.0133097078381653,0.0157317346709895,0.0178753726162766,0.0200875058780233,0.0220709423145825,0.0243674908762865,0.0266648869540218,0.0288422979239714,0.0309026669001534,0.0331602902170435,0.035438484043378,0.0374398011496038,0.0398174557900741,0.0419411825833939,0.0438377275188471,0.0590113639921109,0.0729804081547264,0.0857933579335793,0.0984741808705155,0.1105971360230972,0.1255177952489644,0.1386144910331962,0.150191407911527,0.1622769572270127,0.1730289167211288,0.1864007233428774,0.199052440290758,0.2109836332988962,0.2221383730341011,0.2331649553743383,0.2436489735323118,0.2533892726035193,0.2633106473929917,0.2724468036840434,0.2802436901653611,0.2877450696894338,0.2956275653994129,0.3028233205090263,0.3089845201980839,0.3151862115908207,0.3218948199698921,0.3277554243597939,0.3335799288274384,0.3388145514010201,0.3439512343475214,0.3440958787764401,0.3442383686507773,0.3439800321516202,0.3437373269219628,0.3444634745699605,0.3432338163211997,0.3426832369207298,0.344072377311229,0.3455987093895344,0.3467454561733369,0.3469030545988368,0.3486540635972308,0.3488597563545926,0.3500899280575539,0.3515836884928322,0.3519748064558456,0.3523746739660064,0.3565022421524663,0.3588678448215165,0.3598020829176808,0.3618170994184183,0.3650369102385792,0.3646338351620311,0.365641813989239,0.3690690406288474,0.3762553802008608,0.3758326878388845,0.3736777868185517,0.3708021093533167,0.3625246548323471,0.0,2.279397316890301,60.478385884001824,200.1506224203123,301.5079260178436,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95691,42407,399.9435683606609,6900,70.91576010283099,5381,55.68966778484915,2188,22.54130482490516,77.34192318165195,79.71603764524419,63.32298576779221,65.0744743721876,77.07501288175256,79.44823703593198,63.22613893345717,64.9793750401963,0.2669102998993935,267.8006093122036,0.0968468343350323,95.0993319912925,109.64954,76.77327823674229,114586.86814851972,80230.190131509,266.33344,166.1164302946548,277791.9553563031,173064.28487576125,293.83548,141.1771818349281,303352.67684526235,144667.49296641262,3098.57912,1397.1977279089954,3208907.2953569302,1431100.4286982594,1330.8278,581.8208290782003,1375491.8644386618,592874.8390864056,2152.46874,884.5529170695334,2219345.1630769875,899262.1320644995,0.38035,100000,0,498407,5208.494006750896,0,0.0,0,0.0,22471,234.25400507884757,0,0.0,27293,281.4893772664096,1916319,0,68731,0,0,4314,0,0,39,0.4075618396714424,0,0.0,0,0.0,0,0.0,0.069,0.1814118574996713,0.3171014492753623,0.02188,0.3212221304706854,0.6787778695293146,24.78154536112414,4.525221571394061,0.3263333952796878,0.2062813603419439,0.229697082326705,0.2376881620516632,11.302676383296728,5.736895506361579,23.138200940941147,12812.508017576376,60.71554335949267,13.270865931852237,19.70410259697886,13.844889378312429,13.895685452349154,0.5508269838320015,0.7972972972972973,0.6845102505694761,0.5736245954692557,0.1313526192337764,0.7150220913107511,0.926509186351706,0.8486997635933806,0.7081967213114754,0.1726907630522088,0.4954014417101665,0.7297668038408779,0.6324081020255063,0.5295381310418904,0.1213592233009708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020149246175187,0.0042874083984553,0.0063605100581271,0.008542060251488,0.0105864765643273,0.0127669972104009,0.0150786044899374,0.0173077512176692,0.0194690989406519,0.0216761378180515,0.0237775430897476,0.0258774722227927,0.0279760557875465,0.0302405852351759,0.032195132021718,0.0343101772382272,0.0363994199295628,0.0384144316200282,0.0404937449954764,0.0423891297099033,0.056979015427682,0.0705916843791554,0.0838073847058082,0.09645513946906,0.1084463202321287,0.124002624394167,0.137293624250146,0.150090011397893,0.161785141635489,0.1731607307700564,0.1863153127897699,0.1997487301123133,0.2118434659554781,0.2231888815933464,0.2337615163623154,0.2446266341679592,0.2552467068542085,0.2646976058351437,0.2747804977652744,0.2831586783485083,0.2917529709901758,0.2995635436046852,0.3076895759842799,0.3134457207261217,0.3191424717134766,0.3252604969480239,0.3309695040970256,0.3364318184712159,0.3429779397460671,0.3476749411795807,0.3480919534023569,0.3486722243692375,0.3484022264289548,0.3483539541277766,0.3487158908507223,0.3480126260304618,0.3472510414521724,0.3478403948992184,0.3491201315947294,0.3509747808978716,0.3519193209134615,0.3519606286712176,0.3535667745596704,0.3529808167482816,0.3528787476784293,0.3539642745220934,0.3553202420367622,0.3585036369934187,0.3581764540601292,0.3581905632627102,0.3604730498066864,0.362504654998138,0.3648888888888889,0.3680280402316367,0.3729800826756858,0.370654095462581,0.3732362312243969,0.3743980738362761,0.3704720087815587,0.3704119850187266,0.0,2.0386716883373057,60.10760758571956,204.44643412161892,301.9868623341056,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95730,42299,397.8898986733521,6954,71.41961767471012,5402,55.76099446359553,2133,21.884466729342943,77.32392886815877,79.68983520839976,63.31606620966248,65.06573310334059,77.06139476738943,79.42572655949951,63.220278910356086,64.97172727678229,0.2625341007693436,264.10864890024754,0.0957872993063944,94.00582655830192,109.23088,76.49956909172647,114103.0815836206,79911.8030833871,264.97381,165.41701642728407,276142.65120651835,172145.16497157014,297.47258,143.03617359305264,306175.18019429647,145973.86038442346,3082.94764,1395.2323666672105,3187531.1396636376,1424535.972701567,1275.31906,546.8756438820617,1318791.6640551551,557856.3082440841,2085.01426,863.1343990879516,2142823.6289564404,872821.1230835279,0.3793,100000,0,496504,5186.50370834639,0,0.0,0,0.0,22315,232.4140812702392,0,0.0,27589,283.6623837877363,1918940,0,68937,0,0,4305,0,0,44,0.4491799853755353,0,0.0,0,0.0,0,0.0,0.06954,0.1833377273925652,0.3067299396031061,0.02133,0.3158827539195637,0.6841172460804362,25.280504355659456,4.452821318287571,0.3295075897815623,0.2110329507589781,0.239911144020733,0.2195483154387264,11.090388682806744,5.747703296678652,22.756937715169965,12867.543667680578,60.94988590665183,13.555339203694404,20.025955976073785,14.413062569053077,12.955528157830566,0.5618289522399111,0.7991228070175439,0.701123595505618,0.5725308641975309,0.1129848229342327,0.7258771929824561,0.9263959390862944,0.8629213483146068,0.7260726072607261,0.1061946902654867,0.5061973227565691,0.7319034852546917,0.647191011235955,0.525679758308157,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025423642975072,0.0048565837633961,0.0070229565429191,0.0093275620313357,0.0115046588273589,0.0137983706720977,0.0158024590665334,0.0178937805587595,0.0201412957907759,0.0224019658032149,0.024749582209828,0.0270744779153576,0.0290945727826954,0.0310758613586032,0.0332163863378392,0.0351439350870846,0.0370182398210198,0.0391082326566197,0.0410544376852285,0.0430696782797132,0.0580159525599265,0.0721033634984568,0.0851771071451041,0.0973375954238607,0.1092634575842252,0.1254852597395728,0.138261413914206,0.1508730834752981,0.1628749038708023,0.1739741005960293,0.1868803754615227,0.200583910034602,0.2130402643708148,0.2236337199768232,0.234605234220365,0.2454048188502081,0.2559330543933054,0.2656473262002002,0.2753856807165317,0.2838060950721181,0.2909472269219181,0.2989841708748784,0.3062448868284701,0.3125427635132702,0.3190466336380567,0.3249558701904679,0.3311387007775269,0.3363512324504916,0.3412851895596194,0.3462775036054035,0.3473905882988201,0.3478326828393717,0.3484728618653406,0.3484909981735424,0.3486099109031854,0.3480335010430728,0.3471500126806999,0.3488303325009856,0.3505764822607684,0.3515595674322996,0.3528551336146273,0.3547096569753624,0.3554776842856244,0.3572612806380786,0.358685695000241,0.3597062129172221,0.3605335313606763,0.3644129464991932,0.3666241677291401,0.3678955146383352,0.3698391605187188,0.3717777659177029,0.3711900847350449,0.3728308233315496,0.3767799506360357,0.3769765213224724,0.3754380618619534,0.3756233792140435,0.3736263736263736,0.371824480369515,0.0,2.5925714909564115,59.7749448981772,201.8193612480441,307.8744789814543,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95806,42676,401.7076174769848,6801,69.99561614095151,5289,54.73561154833727,2107,21.67922677076592,77.4066300966336,79.74495829128509,63.35719594835807,65.08745773390052,77.14684620290828,79.48440293636834,63.26291404837607,64.99518766667317,0.2597838937253272,260.55535491674675,0.0942818999820005,92.27006722734644,110.18898,77.2551893302553,115012.60881364424,80637.10971155805,267.9582,167.2324167846974,279214.98653529,174079.8350674252,294.42514,140.91814338319455,304445.0034444607,144937.8601048608,3036.7738,1356.6906203018966,3141992.9023234453,1388362.461956346,1299.21162,557.2482785138228,1343735.2984155482,569291.7964572387,2070.01084,854.7486436224185,2130403.440285577,865847.8078573172,0.38236,100000,0,500859,5227.845855165648,0,0.0,0,0.0,22437,233.7014383232783,0,0.0,27169,280.8174853349477,1916983,0,68780,0,0,4394,0,0,70,0.7202054151097008,0,0.0,0,0.0,0,0.0,0.06801,0.1778690239564808,0.3098073812674606,0.02107,0.3133408071748879,0.6866591928251121,25.26200498256006,4.442649357144453,0.3337114766496502,0.2040083191529589,0.2355832860654187,0.226696918131972,11.060700320166625,5.596945627508487,22.273368308394534,12859.701298599995,59.16057801413577,12.689410964135382,19.62494036793925,13.736016219721831,13.110210462339316,0.5590848931745132,0.7868396663577386,0.6991501416430594,0.5826645264847512,0.1234361968306922,0.7247634069400631,0.9228571428571428,0.8778054862842892,0.7444444444444445,0.1740890688259109,0.5068390947525491,0.7215363511659808,0.6466275659824047,0.5379098360655737,0.1102941176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021176565951324,0.0042891038510677,0.0065962391288905,0.0086057120794936,0.0108623793492743,0.0129732592004236,0.0152117615872433,0.0174552135966926,0.0197064475244286,0.021756928241025,0.0240025416867371,0.0263403622184598,0.0285517539081369,0.0304817788758492,0.0326976600350479,0.0347775804386435,0.0368803277331788,0.0389156688954543,0.0409424769107701,0.0429328419584205,0.0572191732225955,0.0710289365529213,0.0839456224386051,0.0967914831902304,0.1092485670937289,0.1260222734092686,0.1399334407325758,0.1523389325962151,0.1642501253614142,0.1751638747268754,0.188094418384473,0.2007762497837744,0.2136539464534075,0.2246377602830219,0.235948021134264,0.2470377377277705,0.2570867810067578,0.2662860225688981,0.2749486909095032,0.2833289463143318,0.2913202835042606,0.299695011510102,0.3066986834478761,0.3135517096832145,0.3204430625728721,0.3254994269376286,0.3309420072115384,0.3369681392508143,0.3422464049747377,0.3473076821506853,0.3473905599072439,0.3482924814100798,0.3484570687126255,0.3477675858676466,0.3482229126098137,0.3476902818820719,0.3472039967747545,0.3479443079443079,0.3500969750586954,0.3506184247938584,0.3521584750513922,0.3537197896354074,0.354900035515073,0.3545702044095332,0.3541346891788181,0.3546543347795589,0.3547635288767621,0.3577358017730163,0.3616410543634263,0.3660223724257875,0.3672311254369637,0.3690300084530853,0.3704005516203849,0.3689936536718041,0.3704530654014327,0.3701443492547823,0.3725943033102386,0.3670298627925746,0.368362831858407,0.3776923076923077,0.0,1.7716422509491248,56.27889716224264,200.407759750894,303.8112255006897,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95690,42308,399.1953182150695,6971,71.72118298672798,5407,55.95151008464835,2163,22.22802800710628,77.29491858535671,79.69849659556503,63.29396199958445,65.07452121054017,77.030929393949,79.43404248373346,63.19706069207061,64.98007775851428,0.2639891914077168,264.45411183156864,0.0969013075138462,94.44345202588522,110.4532,77.35393413092787,115428.15341205976,80838.05426996328,270.02237,168.19181387044725,281584.9932072317,175170.66520083937,297.08885,142.2021902370874,306897.75316124986,145862.29408390613,3103.9662,1402.799189336925,3212711.798516041,1435021.6460516597,1279.29204,555.9013551065709,1324002.2363883376,568080.61713642,2121.36724,881.9185937158585,2181341.3940850664,891496.0124113392,0.37903,100000,0,502060,5246.734246002718,0,0.0,0,0.0,22729,236.92130839168144,0,0.0,27535,284.2721287490856,1912099,0,68673,0,0,4413,0,0,43,0.449367750026126,0,0.0,0,0.0,0,0.0,0.06971,0.1839168403556446,0.3102854683689571,0.02163,0.3181569592562209,0.6818430407437791,24.995185196547556,4.4275615310340175,0.3230996855927501,0.2193452931385241,0.2272979471056038,0.2302570741631218,11.016081721576064,5.702390567504997,23.004331190584665,12770.949190999198,60.85553499589716,13.859144139085767,19.771587350630504,13.59851421822466,13.626289287956222,0.5381912335860921,0.7596964586846543,0.681740125930166,0.563873067534581,0.1004016064257028,0.7124183006535948,0.918158567774936,0.8454545454545455,0.75,0.1220472440944882,0.4786600496277916,0.6817610062893081,0.6266258607498087,0.5058697972251868,0.094853683148335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023011343477247,0.0045460541670471,0.0067739806022444,0.0090183518885669,0.0111872308804218,0.0132806050166644,0.0152557247234581,0.0171430906601826,0.0193456643614191,0.0215634251528903,0.0234905524895882,0.0254360913069384,0.0275988392434501,0.0297436848777169,0.0317312853544737,0.0338593914824084,0.0361665526746668,0.03815605045943,0.0401352405721716,0.0420683976276592,0.0561573575957631,0.0700002093933873,0.0831348186082631,0.0958017676767676,0.1085509310544917,0.1239816323507628,0.13752003311434,0.1502885250090496,0.1615274483407056,0.1731629598635295,0.1866705446397794,0.1998550285615371,0.2121758982442789,0.2235337836360854,0.2338864878536944,0.2448260970667375,0.255085530647087,0.2647909515502785,0.2746175772510987,0.2832834554481556,0.2912752921555229,0.2987834151025139,0.3053752487444328,0.3116021171133328,0.3176616522151552,0.3231673437133437,0.3286203136163652,0.3344118209031272,0.3399551923749336,0.3452566301622905,0.3462594926482469,0.346554806766607,0.3467748753064502,0.3468104482574191,0.3473936186029914,0.346664825724104,0.3463578051568652,0.3469737123668746,0.3477329953238211,0.347744293546422,0.34897294447687,0.3498757825698102,0.3505106875855533,0.3505293681300155,0.3514431239388794,0.351756944991984,0.3526689470809738,0.3554237879316358,0.358182075005297,0.3620386643233743,0.3633646063281824,0.365192276835856,0.365991133628879,0.3679411539345644,0.3712307984069789,0.3724997005629417,0.3751724137931034,0.3752035830618892,0.3716789920569707,0.3865194211728865,0.0,2.078143076940476,60.9905489015944,193.6900964493011,315.0220964806527,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95713,42512,401.51285614284376,6840,70.26213784961291,5297,54.69476455653882,2126,21.762978905686797,77.3593554540744,79.73077241417867,63.33143217950936,65.08395039991314,77.09736983476185,79.47039000939176,63.23510301201456,64.99111413586833,0.2619856193125542,260.38240478690966,0.096329167494801,92.83626404480572,109.53888,76.69314897775891,114445.1432929696,80128.2469233635,263.59374,164.24817659036074,274739.2517212918,170945.4980371728,293.26213,140.4166795858439,302209.84610241035,143467.42014256917,3040.15576,1373.854546892548,3140066.782986637,1399226.0941083697,1262.60096,548.0711090078204,1300107.8641354884,553773.3725260065,2096.05308,877.1858170118301,2147285.217264113,880715.468312391,0.38263,100000,0,497904,5202.051967862255,0,0.0,0,0.0,22182,231.07623833752996,0,0.0,27169,279.6798762968458,1921743,0,68902,0,0,4308,0,0,51,0.5328429784877707,0,0.0,0,0.0,0,0.0,0.0684,0.1787627734364791,0.3108187134502924,0.02126,0.3307306190741773,0.6692693809258227,25.18196798862073,4.41925787256742,0.322257881819898,0.217481593354729,0.2237115348310364,0.2365489899943364,10.934936612937374,5.540697646140109,22.5474806135526,12806.550213217824,59.41760388599752,13.401073630839123,19.22777254293751,13.009712224867345,13.779045487353551,0.5384179724372287,0.7465277777777778,0.6983011130638547,0.5611814345991561,0.1077414205905826,0.7023014105419451,0.91869918699187,0.8705357142857143,0.6920152091254753,0.1310861423220973,0.4825316455696202,0.665389527458493,0.6370135027799841,0.5238611713665944,0.101419878296146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0046529544740336,0.0071032096360112,0.0091710507606995,0.011226015069705,0.0132346503507182,0.015138386258219,0.0174856582896106,0.0196888225552534,0.021754931971048,0.0237194277803414,0.0254521924013188,0.0276760360508662,0.0296829763339824,0.0319072090479433,0.0340924361929768,0.0360393005414695,0.03807656802647,0.0398478028089946,0.0416775174741403,0.0562546339323941,0.0708902890875217,0.083974110168158,0.0968610337031389,0.1091965537968343,0.125510441571631,0.1384971294557108,0.1510018525221983,0.1624489708679761,0.1743306326125449,0.1878064286714869,0.1999025710419485,0.2118976903075601,0.2223656996531007,0.2338051440215894,0.2451206529453513,0.2548868485132811,0.264393163739466,0.273308138413174,0.2827748181245346,0.2908918384114237,0.2987603789030523,0.3059503819501927,0.3118661925457658,0.3181172700901797,0.3242324601913769,0.3298163931964105,0.3350502352791555,0.3413772121745659,0.346163482205256,0.3470065475470227,0.3471620822851801,0.3477900358372567,0.3483333813488519,0.3483525767389467,0.3470338465298143,0.3462576338588268,0.3466996186516964,0.3479765435886945,0.3491777868837856,0.3500534218073441,0.351030581160739,0.3520496110994324,0.3536182361801137,0.3541782359900524,0.3552597164827117,0.3567361885961148,0.3596024813267502,0.3625039697942764,0.3630715309861398,0.3670346786385084,0.3711781056232627,0.3738675513589383,0.3767584097859327,0.381629769194536,0.3861315601994776,0.3888039155705108,0.3918046023415422,0.3887362637362637,0.394696387394312,0.0,2.490421325065369,59.1036361545938,193.34084909921503,301.400224770956,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95884,42776,400.8906595469526,6982,71.61778816069418,5438,56.07817779817279,2110,21.588586208335077,77.4394230829848,79.71955579925472,63.39129033748679,65.07720856593616,77.18623614932645,79.46968464744576,63.29821870771397,64.98870522699005,0.2531869336583554,249.8711518089607,0.0930716297728153,88.5033389461114,109.41788,76.68703140629043,114114.84710692086,79978.96563169082,267.96576,166.7525310576892,278838.3671936924,173280.3711335459,299.70014,143.18446407894078,308918.87071878515,146521.63644111578,3096.31964,1388.9637963000964,3194124.4003170496,1413477.1143257443,1293.67065,556.4226029916304,1332726.5341454258,563834.5858306715,2074.59972,855.2341700973747,2123543.761211464,855231.0640512427,0.38333,100000,0,497354,5187.038504860039,0,0.0,0,0.0,22435,233.3235993492136,0,0.0,27680,285.06320136832005,1923774,0,69021,0,0,4477,0,0,66,0.6883317341787993,0,0.0,0,0.0,0,0.0,0.06982,0.1821407142670806,0.3022056717272988,0.0211,0.3210412147505423,0.6789587852494577,25.342503130147797,4.423158434181241,0.3271423317396101,0.2223243839646929,0.2239794041927179,0.226553880102979,10.861429922879411,5.465724092585756,22.10473022389783,12963.34572053104,60.92288293433178,14.181545119722866,19.928924155091103,13.439492781638815,13.372920877878984,0.5454211107024641,0.7584780810587263,0.6790331646992692,0.5812807881773399,0.1079545454545454,0.7169663799843627,0.8773333333333333,0.8799019607843137,0.7376425855513308,0.1502145922746781,0.492666506371724,0.7050359712230215,0.6192560175054704,0.5382198952879581,0.0980980980980981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182830532496,0.0049860148364343,0.0073443634039704,0.0098386621856247,0.0123796843078862,0.0143668220019942,0.0163891010949834,0.0186454508363933,0.0206775366760655,0.0231694592769901,0.0252874034303981,0.0273747717058956,0.0295949195388125,0.0320143292431853,0.0340422899677309,0.036347114947751,0.0382995892777703,0.0403071216156006,0.0424838297739802,0.0442453939223703,0.0591779508188176,0.0727795193312434,0.0862052715905877,0.0992240573714549,0.1111391845371569,0.1268874200156273,0.1403086897106961,0.1528799149840595,0.1650816665955904,0.1763421525815566,0.1898720567680894,0.2028354386609468,0.2148358990515714,0.2255198714936675,0.2369809992962702,0.247614936804126,0.2574594010187362,0.2666456968893582,0.2760370647273386,0.2847327807945127,0.2923629476504487,0.3004249754821837,0.3079341441217837,0.3144587832499341,0.321386090544969,0.3273255527650563,0.333116631452611,0.3387145941826495,0.3440775444264943,0.3489048596851472,0.3490625629997984,0.3497631633143406,0.3495776112899372,0.3499372122226873,0.3499458448938412,0.3492833213504459,0.3485188936008608,0.3491506525873942,0.3490749590387766,0.3505000267393978,0.3525834159851788,0.3545700357234492,0.3553319666987407,0.3560013373453694,0.3572335481398079,0.360056222181733,0.3603938482492481,0.3626662494132374,0.3655482700892857,0.3676790016192093,0.3710232937550983,0.3739932174650275,0.3758326002262159,0.3785414280259641,0.3825789923142613,0.3833094213295074,0.3880248833592535,0.3916443712698086,0.3847650820127884,0.3959044368600682,0.0,2.47140502064094,55.781827984746286,212.2933450320994,311.1258197012503,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95741,42111,396.3610156568241,6720,68.95687323090421,5249,54.271419767915525,2193,22.550422494020324,77.34647984393533,79.69827708758238,63.33814763576003,65.07512877360632,77.07683663308123,79.42811566964362,63.23865741283712,64.97774361206261,0.2696432108540989,270.16141793876614,0.0994902229229097,97.38516154371268,109.77912,76.84208425537409,114662.60013996092,80260.37356553,265.80933,165.98763937046115,277063.9746816933,172801.75616555204,287.27418,137.5471225848509,296550.9551811659,140988.0871561021,3047.49976,1378.8561842547297,3152151.5756050176,1409279.0593943356,1248.4273,547.3552576330013,1288063.7448950815,555804.7938009849,2159.1695,902.7588400195716,2221480.536029496,914286.4048270376,0.37861,100000,0,498996,5211.936369998224,0,0.0,0,0.0,22434,233.734763580911,0,0.0,26670,275.09635370426463,1918456,0,68890,0,0,4246,0,0,41,0.4177938396298347,0,0.0,0,0.0,0,0.0,0.0672,0.1774913499379308,0.3263392857142857,0.02193,0.3234211271594449,0.6765788728405551,25.01964351906108,4.5443572985349805,0.3238712135644884,0.2076586016384073,0.2286149742808154,0.2398552105162888,11.035436152885689,5.565712780063693,23.407492297154583,12705.266613193806,59.337205201128654,12.87246491433804,19.25965675403576,13.463751082489836,13.741332450265014,0.5406744141741284,0.763302752293578,0.69,0.5883333333333334,0.1008737092930897,0.698948948948949,0.9344262295081968,0.8539603960396039,0.6845637583892618,0.1515151515151515,0.4868521827929538,0.6767955801104972,0.6388888888888888,0.5565410199556541,0.0874371859296482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0045819014891179,0.0070630498980119,0.0095792446313565,0.011928732686558,0.0139782537872617,0.016065239551478,0.0182386021494401,0.0203923091862497,0.0222886570495428,0.0243544931784868,0.0263789953400529,0.0286328213353073,0.0307031547723269,0.032644807164524,0.0346463529338804,0.0365063259685668,0.0385002438037535,0.0405513570827139,0.0424860428297641,0.0572636634128517,0.0717014306795466,0.084578262694083,0.0974068309918398,0.1098927746792202,0.1251823814256412,0.1376428033477241,0.1495466348814439,0.1611580835254932,0.1725257765106857,0.1855264999407882,0.1986567309460205,0.2106384366236984,0.2213139834768545,0.2319581395860128,0.243906218866922,0.2543765750094779,0.2642795290201414,0.2730624794363576,0.2810069750661428,0.2883536366686334,0.29588220847416,0.3029373808649941,0.3090640890338674,0.3145082883671187,0.3206131325702034,0.3261634385446532,0.3314861525134398,0.3369363524297671,0.3411467629133119,0.3412626664687707,0.3419869850548723,0.3419106230415267,0.3420092117841314,0.3428703345149087,0.3422478775503937,0.3415879256769611,0.3418972007166691,0.3431154333458891,0.3439585010285305,0.3455228083348977,0.3471372269423484,0.3481754127668524,0.3497980251346499,0.351650738488271,0.3519966416539854,0.3528500974882441,0.3548845582893781,0.3577373395401326,0.3596463278636291,0.3622523844460748,0.3642983348503507,0.363895036357888,0.3651512824450929,0.3695961995249406,0.3713909188930154,0.3719390112428769,0.3771768080311412,0.3812341504649197,0.3813659692064745,0.0,2.185920300752672,58.68941865595791,198.1544632390601,296.77129021938435,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95731,42531,400.0689431845484,6973,71.5233310004074,5400,55.72907417659901,2191,22.490102474642487,77.41222784566315,79.76755942962616,63.350809200748486,65.08960453849177,77.13203819395623,79.48926303304266,63.24768880146819,64.99002737847309,0.2801896517069195,278.2963965834995,0.1031203992802929,99.57716001868278,109.37652,76.62568610033512,114254.0242972496,80042.70936304344,267.71479,166.91207446404627,278984.6026887842,173686.7205649646,299.54871,143.5097002970381,308736.187859732,146735.37481220317,3109.51904,1417.0536421351458,3211827.8927411186,1443889.1917301023,1322.48314,580.6363226330571,1366709.477598688,591780.9618964151,2156.77236,903.7625213212168,2215495.691050966,910453.6021522292,0.38204,100000,0,497166,5193.364740784073,0,0.0,0,0.0,22517,234.5008408979328,0,0.0,27732,285.5187974637265,1919070,0,68786,0,0,4277,0,0,62,0.6372021602197826,0,0.0,0,0.0,0,0.0,0.06973,0.182520154957596,0.314211960418758,0.02191,0.3150143188326742,0.6849856811673258,25.242116352306702,4.5024374109019725,0.322037037037037,0.2074074074074074,0.234074074074074,0.2364814814814815,11.24955353913194,5.777943255120894,23.24587472198538,12875.62379620936,60.9445698699049,13.184295377721456,19.569015127016986,14.14114992949133,14.050109435675132,0.5511111111111111,0.7732142857142857,0.7009775733179988,0.5806962025316456,0.1229444009397024,0.7211126961483595,0.9185750636132316,0.8891509433962265,0.7373417721518988,0.1486988847583643,0.4914957478739369,0.6946354883081155,0.6403041825095057,0.5284810126582279,0.1160714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153939639457,0.0045203466274768,0.0067564825711155,0.0090177918596149,0.0112648562917475,0.013620400061078,0.0158183337749964,0.018213728151179,0.0203370430552574,0.0223746161719549,0.0244732311224071,0.0266999260901699,0.0288469446500534,0.030997693194925,0.0333697917741502,0.0354846712008765,0.0375451712105366,0.0394451533920549,0.0413677666188426,0.0433143047626984,0.0575762637546196,0.0719069144483509,0.0854838032896945,0.0978539869556069,0.1092000717519072,0.1242115734665368,0.1371668736268984,0.1511153702816376,0.1638240574506283,0.1748486669814966,0.1887648929861448,0.2009162091036096,0.2127117536907198,0.2241360430992948,0.2347807882587569,0.2466610462794515,0.2565667404377081,0.265534177443338,0.2745559038662487,0.2831391615448124,0.2914986792715139,0.2989837969467079,0.3074036367080215,0.313614573346117,0.3202497661479402,0.3259610645638245,0.3314614470639734,0.3372168367022831,0.3428013904862825,0.3479044911283104,0.3482412667714251,0.3482837654227797,0.3481383614207204,0.3484579782862581,0.3485718514133491,0.3471052952659834,0.3470884119900976,0.3476356266039,0.3486186998927641,0.3497900654711073,0.3516071228581028,0.3524394807855187,0.3536712993971869,0.355626966593024,0.3562881445528377,0.3562556958729332,0.3584669267348159,0.3617683099255349,0.3650080707418064,0.367049504950495,0.3717477182945103,0.3747213079944792,0.3767295597484277,0.3776006074411541,0.3808588268313219,0.3829181494661922,0.3792053585020551,0.3823233340044292,0.3788086741696404,0.3810073048827374,0.0,2.62795025872649,61.37231513265415,199.40807251181755,303.89870119222127,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95730,42619,401.06549670949545,6836,70.06163167241199,5332,55.13423169330408,2082,21.383056513109786,77.32373385663094,79.69351331697536,63.321321634088775,65.07524360246852,77.07131124074508,79.44196821850173,63.22735103998747,64.98408333388188,0.2524226158858624,251.5450984736276,0.0939705941013073,91.16026858663416,109.71136,76.80490282010798,114604.99321007,80230.75610582679,266.12738,165.8806842749104,277448.81437375955,172730.65316505835,295.79308,141.55354910052552,305428.8728716181,145181.20564717415,3048.76516,1381.769041191538,3153573.34169017,1412286.405103627,1284.09192,560.605271070268,1325868.4111563773,570147.2354421875,2048.34808,852.3865199927711,2105217.7373863994,861058.3973549437,0.38254,100000,0,498688,5209.317873184999,0,0.0,0,0.0,22385,233.24976496396116,0,0.0,27444,283.1714196176747,1918635,0,68924,0,0,4262,0,0,50,0.5118562624046799,0,0.0,0,0.0,0,0.0,0.06836,0.1787002666387828,0.3045640725570509,0.02082,0.3191727221911682,0.6808272778088318,24.98069694279024,4.447731377827603,0.3235183795948987,0.2162415603900975,0.2353713428357089,0.2248687171792948,11.309042099357296,5.761847040084503,22.05386424528073,12907.665637953256,60.1087683337055,13.728879270714694,19.54258742594306,13.73762386624944,13.099677770798294,0.5573893473368342,0.7623590633130962,0.7118840579710145,0.5800796812749004,0.1142618849040867,0.7133333333333334,0.9081364829396326,0.8826185101580135,0.6970802919708029,0.1388888888888889,0.5045203415369162,0.6904145077720207,0.6528861154446178,0.5474006116207951,0.1077085533262935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227963525835,0.00480696096626,0.0071965083231831,0.0093998333434953,0.0114968256552173,0.0134665729507278,0.0157977399747073,0.0181998304617364,0.0202468479339011,0.022694454401147,0.0249410316890575,0.0271236225081904,0.0291963293691617,0.0311826959738667,0.0331953633839452,0.0355211876234092,0.0376266130869772,0.0394766874857344,0.0413088232236062,0.0432517478874266,0.0575712331770675,0.0720812182741116,0.085467305896793,0.0980171461631515,0.1100823587721055,0.1256132634072069,0.1386151218425435,0.1518366391419085,0.1642653451387924,0.1748715914086878,0.1888210528582657,0.2008524817170799,0.213010287305074,0.2240713809279083,0.2349187488310173,0.2457360563505072,0.2560413948457172,0.2655977888385785,0.2747496966879457,0.2840370751802266,0.2921121063276509,0.2996365421248846,0.3070001182452406,0.3131050512795936,0.3198445470002429,0.3259500301988192,0.3318560250391236,0.337242617565038,0.3432452751924921,0.3478926596179992,0.3482870576189898,0.349114708921805,0.3495288076293663,0.350089090408657,0.3513722803830174,0.3502301319423136,0.3492357646313455,0.3501305354416039,0.3513379752884156,0.351694839619442,0.3532301001087323,0.3552959809938626,0.3563346512997392,0.3579112857944975,0.3598849991544055,0.3619095029737731,0.3629062329690503,0.3659355983772819,0.3684173272933182,0.3709858702633269,0.3716626772233474,0.3733612722974425,0.3728575979611341,0.3745569425181075,0.3748701973001038,0.3736276849642004,0.3708941605839416,0.3707751467314308,0.3763706140350877,0.3870719507502885,0.0,2.2202992956372367,59.42523701642139,199.1620668560972,302.9354670422638,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95779,42354,399.0123095876967,6762,69.40978711408556,5300,54.74060075799497,2139,21.96723707702106,77.38153749659537,79.72325481305234,63.350937847410606,65.08291271121807,77.11701383551623,79.45912357760258,63.25487516482281,64.98989196418957,0.2645236610791386,264.1312354497529,0.0960626825877923,93.02074702850403,109.10988,76.43921451551323,113918.37459150753,79807.90623781124,263.86296,164.48639058521056,274905.42812098685,171149.313090772,292.08183,139.6462980651143,301179.5278714541,142955.0764296412,3048.16032,1366.8793884820368,3150690.9030163186,1395315.5790747823,1300.22087,564.3986312111409,1338845.96832291,570665.3564372167,2105.34316,867.5622924510551,2164082.3562576347,875456.3753953043,0.38002,100000,0,495954,5178.107935977615,0,0.0,0,0.0,22197,231.11538019816453,0,0.0,27092,279.0590839328037,1924453,0,69019,0,0,4223,0,0,46,0.4802722935090155,0,0.0,0,0.0,0,0.0,0.06762,0.1779380032629861,0.3163265306122449,0.02139,0.3216242798932134,0.6783757201067866,25.24085802725028,4.528674576981378,0.3239622641509433,0.2156603773584905,0.230377358490566,0.23,11.125193831671304,5.576093645893944,22.69343114451056,12789.942943829596,59.54227595114539,13.503655716545513,19.18961104567557,13.57025523499494,13.278753953929373,0.5488679245283019,0.7821522309711286,0.6808386721025044,0.5724815724815725,0.1205906480721903,0.7263406940063092,0.9293193717277488,0.8507853403141361,0.7480916030534351,0.1859504132231405,0.4930555555555556,0.7082785808147175,0.6322097378277154,0.5245046923879041,0.1044012282497441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0043890769760982,0.0066251369668438,0.0087444014502909,0.010990910384936,0.0135590459806386,0.015696986993925,0.0178507639392114,0.0199370516462629,0.0219984856856365,0.0240198389113192,0.0260926690070004,0.0282544546006025,0.0304668355264512,0.0325116039195461,0.0345094797747584,0.0363011714061012,0.0384272504872081,0.0404828438756323,0.0425321463897131,0.0578659013827289,0.0721472649304466,0.0847120001677465,0.0971721608642195,0.1091439832232093,0.124190190338297,0.1370784849833619,0.1493605213637958,0.1611460889979724,0.1722116229715535,0.1857556481212395,0.1992148635203529,0.2113305150135301,0.2231449207268436,0.2333120724921371,0.2436970139672842,0.2538573021181717,0.263338316118373,0.2727994285260735,0.281543512830193,0.2899678545824564,0.2975664492601164,0.305278849111516,0.3122514493795218,0.3191045066045066,0.3259006624147356,0.3317169495338316,0.3366481427317929,0.3421083284799068,0.346837045535467,0.3466550006730381,0.3468660576711424,0.3474160534551298,0.3479154008621937,0.3488160969148572,0.347011665159342,0.3460174749905027,0.3468765371372356,0.3476400702268737,0.3480113383131585,0.3492387497893219,0.3508015893411351,0.3522467551529639,0.3535401107896566,0.35443312378062,0.3544111880799895,0.3546755806976943,0.3568865667883671,0.359038259038259,0.3604591127526907,0.362632851343338,0.3635782407160743,0.3638382940915148,0.3621762852532083,0.3638178534081186,0.3651040420951925,0.3648565257636532,0.3698714023270055,0.3801675977653631,0.3823870220162225,0.0,2.279799107445811,55.58683393893804,205.16581272832477,303.2183494375256,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95846,42559,400.0166934457358,6811,69.79946998309788,5298,54.58756755628821,2108,21.586712017194248,77.37299817448195,79.67437506122762,63.35320242165369,65.05692705897964,77.11963985264659,79.4224902899168,63.260334571552455,64.96722878347015,0.2533583218353641,251.8847713108272,0.0928678501012356,89.69827550949105,109.60334,76.7375837206101,114353.58804749284,80063.41810885181,267.72062,167.76827212584269,278633.3493312188,174356.77362036868,297.70401,143.12306649410394,305899.5054566701,145729.36511459775,3053.69012,1378.1131927788808,3146656.302819106,1398974.931645212,1275.97153,555.4411858616332,1312071.6983494356,561043.9718107678,2081.16584,860.3703854852938,2133402.875446028,866568.9040191813,0.38096,100000,0,498197,5197.89036579513,0,0.0,0,0.0,22591,234.98111553951128,0,0.0,27628,283.50687561296246,1916557,0,68852,0,0,4306,0,0,32,0.3338689147173591,0,0.0,0,0.0,0,0.0,0.06811,0.178785174296514,0.309499339304067,0.02108,0.3174846625766871,0.6825153374233128,24.881355420246845,4.454537144002509,0.3261608154020385,0.2129105322763307,0.2281993204983012,0.2327293318233295,11.043637738604415,5.50125393925321,22.353384993880947,12778.202093767475,59.66386851652192,13.369963358264425,19.449177142668937,13.318507746387173,13.526220269201405,0.5539826349565874,0.7907801418439716,0.6961805555555556,0.5839536807278742,0.1086780210867802,0.7139605462822458,0.9042821158690176,0.8726415094339622,0.7125984251968503,0.1275720164609053,0.5010050251256282,0.7291381668946648,0.6388036809815951,0.5497382198952879,0.104040404040404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0045709305036131,0.0066441475710822,0.0089251264139065,0.0112030579671837,0.0132430781758957,0.0154413788183013,0.0177264795028013,0.0199348108185431,0.0219575582704074,0.0241483530556836,0.0262858198159377,0.0287141330263915,0.030745952177538,0.0328237271012236,0.0351426151971415,0.0370496823721729,0.0390250979254315,0.0409155105092631,0.0431154670495453,0.0577145657591524,0.0714658919913058,0.0851892979111232,0.0975018114229909,0.1089241332827836,0.1241298446132232,0.1375513923621413,0.1503051179009589,0.1618053554466963,0.1728098748499914,0.1862309405700881,0.1993126033526798,0.2112023995826812,0.2220946758500054,0.2319499152784807,0.2433575882424604,0.2537626490834644,0.2634983854817115,0.2727375860778018,0.2814972576231207,0.2890168730990297,0.2970307454724133,0.3041095566129299,0.3104700061101992,0.3162502124766275,0.3228163114451152,0.3287542576637948,0.3342536867151018,0.3397650898071768,0.3449131841288704,0.34613933432152,0.345561494379546,0.3455715313739047,0.3466888615473691,0.3467906284864261,0.3466360153256705,0.3463068316878754,0.3467496837574543,0.3478833039941207,0.3483849055254643,0.3487583169337456,0.3507831658887746,0.3510114243789959,0.3538482166800751,0.3553901560624249,0.3556875618779636,0.3572346440503726,0.3594040381768356,0.3611657994656166,0.3627248949829595,0.3662131519274376,0.3708651399491094,0.3742509304232637,0.3763111553479825,0.3800416587767468,0.3827321111768184,0.3878052526493626,0.3901888341543514,0.3918881118881119,0.3862229102167183,0.0,2.6165735268213197,57.53745051139198,200.94498731704695,300.5887643874987,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95791,42597,401.561733356996,6913,70.98787986345273,5460,56.40404630915222,2190,22.549091250743807,77.39816222968327,79.72785469381296,63.35848721039546,65.07982812521298,77.13705726528646,79.46624495509849,63.26405287504869,64.98744567692162,0.2611049643968073,261.6097387144692,0.0944343353467758,92.38244829136022,109.15432,76.49974295148627,113950.49639318934,79861.09650331062,267.56546,166.10542447357315,278748.4941174014,172830.36451605384,296.03052,141.5906447750973,304887.546846781,144653.80208074546,3144.07368,1410.5177863900042,3252090.5304256137,1442363.214070219,1316.01922,564.9515084922434,1360875.531104175,576806.3476654838,2164.26776,886.8574536535862,2230350.7636416783,900451.1024194822,0.38152,100000,0,496156,5179.568017872243,0,0.0,0,0.0,22456,233.82154899729625,0,0.0,27377,281.7801254815171,1923476,0,68951,0,0,4398,0,0,60,0.6054848576588615,0,0.0,0,0.0,0,0.0,0.06913,0.1811962675613336,0.3167944452480833,0.0219,0.3203243094681874,0.6796756905318125,25.0940992694554,4.446202139294924,0.317032967032967,0.2135531135531135,0.2313186813186813,0.238095238095238,10.969866292568714,5.494218996892061,23.113049729172463,12855.144644622296,61.306885889663015,13.580034298868972,19.510582460763697,14.135734358519851,14.080534771510484,0.5472527472527473,0.7607204116638079,0.7111496244945118,0.5771971496437055,0.1084615384615384,0.7165653495440729,0.9221902017291066,0.8747099767981439,0.7342657342657343,0.1428571428571428,0.493484555984556,0.6923076923076923,0.6569230769230769,0.5312180143295804,0.1001908396946564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023596848352271,0.0048544673260904,0.0070101042892504,0.0092716711349419,0.0113963299954252,0.0136482993058806,0.0159779895042543,0.0181202301758968,0.020075807885246,0.0219869040311029,0.0241883432880164,0.0263414433920637,0.0284777604209487,0.0307845902078037,0.0328157862179883,0.0346401718582169,0.0365914216548385,0.038594744810137,0.0404672333880656,0.0423404942154096,0.0572117240731658,0.0705941412091992,0.0843319180164596,0.0972298120980285,0.1097618821743667,0.1252166744176214,0.1384594176157451,0.1516028471416868,0.1638652770065354,0.1745400351674743,0.1885250314980132,0.2015420884159529,0.2137425312330255,0.2245816402324463,0.2356237843540181,0.2463216585171582,0.2574804905239687,0.2674971611031784,0.2768691588785046,0.2853462489694971,0.2932533351830015,0.300549322113137,0.307493845862526,0.3138046734571599,0.3200777123429057,0.3261442577720845,0.3312575030012005,0.3367409215746109,0.3416731416731416,0.3466334164588528,0.3465418546703481,0.3467846234280839,0.3472611716294866,0.3475654673349414,0.347335153421568,0.3472780947427994,0.3456590876726634,0.3467086800256019,0.3477903954029279,0.348625328259821,0.3492045646185845,0.3504981085738052,0.3507991777488778,0.35121482375556,0.3514220568822753,0.3535256075936163,0.3535428149326666,0.3574028745371242,0.3602334684747658,0.3609079046225631,0.3616885485047411,0.3647426062113115,0.3676102204408817,0.3694029850746269,0.3691047726630895,0.372776119402985,0.3720397249809014,0.378757108042242,0.3806074115352466,0.3848508033664881,0.0,2.3537631738335127,57.846932962943015,208.5456014361268,313.24619599587584,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95878,42163,397.494732889714,6786,69.58843530319781,5290,54.60063831118713,2176,22.32003170696093,77.3584022892406,79.6405970758789,63.35300198276878,65.04159596746021,77.10054300308134,79.38356569957189,63.25795464954386,64.94952532942405,0.2578592861592597,257.0313763070118,0.0950473332249188,92.07063803616222,108.3687,75.96378803266283,113027.7018711279,79229.63352663054,266.00105,166.12485392954017,276839.00373391184,172682.87193265883,295.30224,140.9507891928376,304377.7091720729,144280.4405447065,3046.82772,1372.1211533486808,3145630.5304658003,1399938.21027516,1291.4265,561.71584724154,1329467.5316548117,568722.9907890843,2140.10646,883.3302009636008,2196650.472475438,890137.7906711465,0.37832,100000,0,492585,5137.622812323995,0,0.0,0,0.0,22346,232.44122739314545,0,0.0,27392,282.0980829804543,1923656,0,69062,0,0,4398,0,0,50,0.5214960679196479,0,0.0,0,0.0,0,0.0,0.06786,0.1793719602452949,0.3206601827291482,0.02176,0.3209563994374121,0.679043600562588,25.097932938685545,4.457153079374162,0.3198487712665406,0.2137996219281663,0.2304347826086956,0.2359168241965973,11.331357015265745,5.933432413799989,22.847783959193546,12684.02853898432,59.6103944790636,13.206695890938274,18.989887276625986,13.811050411970845,13.602760899528509,0.5468809073724008,0.7763041556145004,0.6725768321513003,0.5988515176374077,0.1177884615384615,0.7088122605363985,0.9283667621776504,0.8452088452088452,0.7055016181229773,0.1625,0.4938519447929737,0.7084398976982097,0.6178988326848249,0.5626373626373626,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022476688029644,0.0041442482090565,0.0064508930835471,0.0086811725167277,0.0106830656637527,0.0129962649731831,0.0151493540894086,0.0171655872303534,0.0192969380149678,0.0211717559983234,0.0234115081843029,0.0255889770560374,0.0275963355517213,0.0298211144600002,0.0318531724358247,0.0338337325514165,0.0357083747103608,0.0377141435811336,0.0397221010654869,0.041542687113756,0.0563478659744375,0.0705860227973211,0.0835392928954423,0.0965001627587076,0.1088335053826869,0.1243608704838368,0.1374417125900805,0.1500834742293255,0.1623684379069618,0.1733061749571183,0.1872072363107737,0.1995218830452372,0.2118721461187214,0.2225684081641577,0.2334081013326296,0.243907297961352,0.2535245828500044,0.2635224793648651,0.2721610183914045,0.2799019214684281,0.2875429682526823,0.2948341426314865,0.3017958255348385,0.3075483692979405,0.3143975779093661,0.3203711014607185,0.3257807408892676,0.3313198506454614,0.3363485347937809,0.3410762474204984,0.3419369636785579,0.3421241280432325,0.3424093224045257,0.3436889268497474,0.3437458124264848,0.3428632846087704,0.3427469282788837,0.3440067168233376,0.3451909731146866,0.3458187997495752,0.3472227438314493,0.3481465337903433,0.3495429231900809,0.3499786981187075,0.3507768770507624,0.352658894713507,0.35421006077553,0.3573517848718352,0.3589356548601116,0.3603195421485632,0.3634993835897904,0.3632065448363791,0.3658690573899867,0.3691430332922318,0.3686117467581998,0.3669160231660232,0.366166353971232,0.3705749948843871,0.3725868725868725,0.3703561853695902,0.0,2.1468995769675203,57.36542379132658,199.0565913513505,305.502388939185,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95730,42512,400.5118562624047,6946,71.34649535150945,5453,56.366865141543926,2115,21.72777603677008,77.38965647392791,79.7577332897407,63.34469261111818,65.09449712730917,77.14107684345493,79.508300274846,63.25403247857395,65.00555166056992,0.2485796304729888,249.4330148947057,0.0906601325442366,88.94546673924708,110.0275,77.0549492467607,114935.23451373656,80491.95575761069,269.97705,168.125341564639,281398.31818656635,175003.55329012746,300.99235,143.6032828625094,310326.2195758906,146787.43085511087,3104.1644,1396.9830123583963,3211462.655384937,1428133.0955378634,1325.37416,575.2576551331421,1369785.009923744,586209.8455375979,2077.09066,855.1929989418012,2136181.489606184,866116.7681616568,0.38165,100000,0,500125,5224.328841533479,0,0.0,0,0.0,22733,236.81186670845085,0,0.0,27841,286.9424422855949,1917539,0,68797,0,0,4321,0,0,46,0.4387339392040112,0,0.0,1,0.010446046171524,0,0.0,0.06946,0.1819992139394733,0.3044917938381802,0.02115,0.3242763517203714,0.6757236482796286,25.245545008423186,4.459320944599963,0.3196405648267009,0.2257472950669356,0.2312488538419218,0.2233632862644416,11.241220827622753,5.773294689318897,22.237471535431137,12871.767717592616,61.3133334166777,14.428785226566214,19.712263941502663,13.87573515201655,13.296549096592267,0.5552906656886117,0.7562956945572705,0.6953528399311532,0.5939730372720063,0.1116584564860427,0.7207272727272728,0.8836633663366337,0.8555045871559633,0.7687074829931972,0.1452282157676348,0.4995095635115252,0.694074969770254,0.6419280795715379,0.5408479834539814,0.1033776867963152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802771250303,0.0045619050515495,0.006677559139021,0.008604750391125,0.010782548546899,0.0132377499898171,0.0157318950663227,0.0179255009646696,0.0200445661951099,0.0220588987952053,0.024221488755407,0.0263636083649019,0.0286198920585967,0.0307061803653438,0.0327478262663352,0.0348181066556428,0.036593700167747,0.0388633557771114,0.0410218568444245,0.042780191500224,0.0575676268231314,0.0723331658712216,0.0855575139535859,0.097794984009426,0.1105168776371308,0.1267318146244474,0.1396002630964757,0.1525364208106756,0.1645397947524107,0.1757608905475838,0.1898916812024894,0.2020856546337664,0.2145971275427552,0.2253856835153781,0.2362442099704034,0.2475167487957477,0.2577364424074136,0.2669618176506281,0.2763581534554689,0.2844542573759052,0.2928016463950423,0.3006731488406881,0.3075568477284546,0.3138749910229095,0.3200732983022463,0.3263966704017929,0.3318868490820869,0.3372755480950201,0.3423688024014077,0.347470032044942,0.3474329996771069,0.3467568905760026,0.3473866467714917,0.3476050887351807,0.3476242733420334,0.346791206775308,0.3459928276908008,0.3466075489602591,0.3474913318376504,0.348469768599154,0.3488350419384902,0.3494568639798489,0.3508007340061723,0.351246660730187,0.3515247259323089,0.3536274815507743,0.3547021899054165,0.3589187490177589,0.3606938043134081,0.3619040025514272,0.3636113657195233,0.3645587287953618,0.3675370769425782,0.3682176417096089,0.3666914913423943,0.3646740409508119,0.3631953918447779,0.3623420894325245,0.3578056768558952,0.3614595210946408,0.0,2.312461243281854,60.50099703103789,201.50641069164723,311.613293392737,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95754,42945,404.56795538567576,7061,72.33118198717547,5485,56.624266349186456,2176,22.265388391085487,77.34687979821054,79.70573337568943,63.33382307926016,65.08101082284209,77.078174144268,79.44063474327719,63.23366276278206,64.98514872497725,0.2687056539425327,265.09863241224707,0.1001603164780959,95.86209786483836,110.02772,77.16140180969694,114906.197130146,80582.54094577642,270.35242,168.95297489507075,281685.18286442343,175791.09083628657,304.21813,145.91506173498246,313932.942749128,149403.87390713295,3158.09308,1439.8411005863004,3262592.894291622,1468212.01778668,1316.42911,579.2510508058273,1358448.1588236522,588644.5501950111,2145.34766,903.1445634228018,2198167.1366209243,906465.2832248925,0.38438,100000,0,500126,5223.008960461181,0,0.0,0,0.0,22828,237.7237504438457,0,0.0,28154,290.24374960837144,1913750,0,68692,0,0,4307,0,0,45,0.4699542577855755,0,0.0,1,0.0104434279507905,0,0.0,0.07061,0.1836984234351423,0.308171647075485,0.02176,0.3234660925726588,0.6765339074273412,25.22000920070049,4.483990235474976,0.327073837739289,0.2164083865086599,0.2224247948951686,0.2340929808568824,11.232918922458648,5.698111626172289,23.1312157443139,12937.518701615954,61.97767329998277,14.104919558711138,20.27285637708519,13.621023085462976,13.978874278723476,0.5434822242479489,0.7598989048020219,0.6833890746934225,0.578688524590164,0.1144859813084112,0.7321178120617111,0.9192399049881236,0.8635394456289979,0.7437722419928826,0.1686274509803921,0.4772111357477211,0.6723237597911227,0.6196226415094339,0.5292864749733759,0.1010689990281827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712050585707,0.0046444651766519,0.0070355329949238,0.0092990639958535,0.0118417839993489,0.014022117675811,0.0161076562340707,0.0180992241731318,0.0204861892007932,0.0225150509890649,0.0248521074053948,0.0270347971620136,0.0291849200962547,0.0311820757146536,0.0329948190806448,0.0349408176978342,0.0372591050773038,0.0391410342860106,0.0412681912681912,0.0430490471727585,0.0575752831271854,0.0714360433490941,0.0852634338138925,0.097756056545273,0.1102960550584416,0.126936489485364,0.1405403686548021,0.1532163742690058,0.1656763071145865,0.1764094653512014,0.1898675617811918,0.2023001426780232,0.2138650440073889,0.2252479573557041,0.2364473554073211,0.2480021251632612,0.2586139585726874,0.2682095745757565,0.2776068570131123,0.2864574977654527,0.2950662159659196,0.3030118578000444,0.3092553997726411,0.3153911656412286,0.3214493950731257,0.3273213010612365,0.3331831549965584,0.3386036099062544,0.3428926550746404,0.3477647369115126,0.3474755360531947,0.3471497597841498,0.3482663436892657,0.3489732258903041,0.3501351471767606,0.349215830423329,0.3477985429204941,0.3485722740050303,0.3493720269669073,0.3488505130680396,0.350116348896562,0.3513170673696311,0.353315683308119,0.3549894415240149,0.3554078549848942,0.3564715148332896,0.3587168598645702,0.3613208145657552,0.3634564410673264,0.3656662665066026,0.3713786443483859,0.37419113321568,0.3749841108427609,0.377372933251684,0.3776690809895588,0.3792325056433409,0.3837887626650291,0.3859397417503586,0.3922450126440011,0.3912698412698412,0.0,2.5071585201852016,62.419895872786086,205.49809798416356,305.9895816257333,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95736,42367,398.8886103451157,6849,70.11991309434278,5323,54.838305339684126,2180,22.248683880671848,77.36211040614715,79.72413206451562,63.32787542470121,65.07563557406121,77.09217589510374,79.45570191858165,63.228101283997226,64.97931785872932,0.2699345110434166,268.4301459339622,0.0997741407039853,96.31771533189236,109.73974,76.80785810861465,114627.45466700091,80228.8147704256,265.48905,165.73462540000637,276597.5286203727,172400.1268070594,293.86466,141.01934063467175,301643.87482242833,143278.24512712524,3063.08584,1390.1176072557269,3156377.203977605,1409033.524684843,1287.14934,561.8912417218733,1325538.6375031336,568069.2929305581,2136.78472,892.8020689923083,2183814.573410211,893690.9229550897,0.38013,100000,0,498817,5210.338848500041,0,0.0,0,0.0,22352,232.71287707863289,0,0.0,27223,279.1113060917523,1917439,0,68835,0,0,4320,0,0,55,0.564051140636751,0,0.0,1,0.0104453914932731,0,0.0,0.06849,0.180175203219951,0.3182946415535114,0.0218,0.3290645879732739,0.670935412026726,25.02441243592114,4.471275733370456,0.3310163441668232,0.2134134886342288,0.2246853278226564,0.2308848393762915,11.066035935081551,5.705215732837199,23.128795334084227,12818.84536920701,60.00441012215729,13.43476659126614,19.825412271552025,13.398001785416383,13.346229473922724,0.5459327446928424,0.7755281690140845,0.6963677639046538,0.5468227424749164,0.1171684296175752,0.7159763313609467,0.9375,0.8662131519274376,0.676056338028169,0.139917695473251,0.4880382775119617,0.6928191489361702,0.639666919000757,0.506578947368421,0.1115618661257606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0046646520777982,0.0069130037559638,0.0090736356523771,0.0115456996083617,0.0135250743471707,0.0157648930312238,0.0178163031936616,0.019856647682539,0.0220570164659621,0.0241303634424481,0.0261827968034184,0.0283121746466122,0.0304919519383359,0.0324075507529079,0.0346652881881623,0.036997918672921,0.0388649686154484,0.0409442434825994,0.0427269413051403,0.0577667825342644,0.071562339795566,0.0848557944415312,0.0973262369572534,0.1083145214034051,0.1231582844148289,0.136308178702908,0.1488555307143617,0.1614471476958254,0.1726589390836273,0.1868537825262795,0.200227285026246,0.2120592299239498,0.2224774907829816,0.2339317754026,0.2455314103345486,0.2556092875730129,0.2649044628991965,0.274841989401659,0.2835328483876511,0.2916690789092804,0.2997683018161393,0.3069955241906837,0.3135024893527682,0.3197788175244577,0.3263714980076732,0.3319217179943368,0.3376462947161978,0.3425465194630177,0.3477526012781915,0.3483273330366894,0.3490320358250086,0.3480528266783182,0.3476576055523424,0.3472172672136996,0.3461791982831302,0.3454954669371711,0.3458177278401997,0.3465598524186936,0.3470898904471327,0.3477788598396883,0.3484974134186313,0.3501340145740849,0.3514649966450458,0.3525506890829064,0.352658894713507,0.3540811673506612,0.3560829927695693,0.3584078555146414,0.3612090480529256,0.3626742971340328,0.3630303671569146,0.3667693855732344,0.364516372986463,0.3709511808083636,0.3747036510194405,0.3800518529815464,0.3865461847389558,0.3900109170305676,0.3934807916181606,0.0,2.964001758181607,58.82538008202027,196.657679999328,304.0906553415829,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95761,42443,398.7427031881455,6802,69.67345787951254,5302,54.79266089535406,2148,22.00269420745397,77.32840490063373,79.68797005110507,63.31625382636724,65.06435959812065,77.06248667370075,79.42377424208173,63.21856318532179,64.97006952913802,0.2659182269329818,264.1958090233345,0.0976906410454461,94.29006898263026,109.04344,76.40115038875089,113870.40653293094,79783.1584765728,266.62564,166.89448306364824,277874.12412151083,173728.22241167934,293.53297,141.32053703316126,302849.69872912776,144707.47226639814,3057.54376,1388.655980957912,3159660.7804847485,1416897.255623801,1280.45901,565.4619275893757,1321224.1100239137,574576.6414191324,2113.26074,880.3466925262611,2166861.9375319807,886316.3703004273,0.37999,100000,0,495652,5175.927569678679,0,0.0,0,0.0,22431,233.65461931266384,0,0.0,27278,281.21051367466924,1918400,0,68885,0,0,4318,0,0,40,0.417706582011466,0,0.0,0,0.0,0,0.0,0.06802,0.1790047106502802,0.3157894736842105,0.02148,0.3284498395423468,0.6715501604576531,24.89326960060506,4.596993699578344,0.3211995473406261,0.2086005281026028,0.2365145228215767,0.2336854017351942,11.3179116923292,5.693081271114887,22.88555641374577,12795.213713465391,59.70685278968261,13.04265493829502,19.23641033985505,13.78813271413018,13.63965479740238,0.5522444360618635,0.7658227848101266,0.7058132706987669,0.5797448165869219,0.1226795803066989,0.7108433734939759,0.9058171745152356,0.8691588785046729,0.7330960854092526,0.1511627906976744,0.4992450931051836,0.697986577181208,0.6509803921568628,0.5354573484069887,0.1151885830784913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205617988913,0.0048378263250775,0.0070970231084758,0.0095530396959287,0.0117291611564362,0.0139036016949152,0.0161119269048784,0.0183464695552742,0.0205688114661923,0.0226421274592093,0.024611757470145,0.0266648869540218,0.0287436111025411,0.0309928208720014,0.0332494014694955,0.0354027123129082,0.0375339005858849,0.0395544677673608,0.0415562552607787,0.0435869395406967,0.0577846436474468,0.072450580483213,0.0854593307957679,0.0977158294177625,0.1102446837657274,0.1254148785489292,0.1384334768499862,0.1499286915430298,0.1622695520283694,0.1732901537735646,0.1866033346258239,0.1998961353702341,0.2115627311893468,0.2226207922308012,0.2334617501375894,0.2446140383912451,0.2554098543608057,0.2651779483600837,0.2740340399441373,0.2831473035227246,0.2911256162766474,0.2982989775146821,0.3054765965510707,0.3116831683168317,0.3182796483420275,0.3234949492457787,0.3294861501405058,0.3350416236406981,0.3396365996106424,0.3436628652227346,0.344476822621553,0.3445833275911966,0.3450997557290711,0.3456597222222222,0.3449970220369267,0.3439126629508499,0.3431923540991935,0.3448656485279823,0.3468426013195099,0.3481299618286411,0.349073969720876,0.35014654626109,0.3512879089556305,0.3501233460417134,0.350213515404473,0.3517836142689141,0.3518830964568618,0.3536247401902123,0.3560292155347987,0.3597502783521552,0.3627039839547816,0.3631255301102629,0.3671100514493663,0.3708428246013667,0.3728222996515679,0.3671754821914566,0.3654287024300779,0.3646194654152214,0.3646470261256253,0.3660258925068654,0.0,2.196667433675884,58.43476246671239,198.227016352236,303.04014156724213,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95732,42147,396.5758576024736,6846,70.25863869970334,5354,55.36288806250784,2181,22.4585300630928,77.31464774318667,79.68219567249734,63.30648041847581,65.05663816864076,77.04316223865173,79.40888054055968,63.20726233377061,64.9591446231501,0.2714855045349367,273.31513193766455,0.0992180847051997,97.49354549066425,109.0892,76.4292616876571,113952.70129110431,79836.69168894112,266.99177,166.64387256353314,278317.36514436133,173499.8432368266,295.93796,141.5850621524142,305768.56223624287,145293.34812480726,3073.06604,1395.4214993017004,3179095.976267079,1426893.8424770867,1280.36304,563.8277374467489,1323045.449797351,574779.8361076685,2137.39952,888.2499798074031,2201894.455354532,900963.3121971608,0.37771,100000,0,495860,5179.668240504742,0,0.0,0,0.0,22468,234.0805582250449,0,0.0,27393,282.81034554798816,1917396,0,68798,0,0,4381,0,0,55,0.5745205364977228,0,0.0,0,0.0,0,0.0,0.06846,0.1812501654708639,0.3185801928133216,0.02181,0.3193615544760583,0.6806384455239417,25.401978994103278,4.503143661941807,0.3389988793425476,0.2104968248038849,0.2248785954426597,0.2256257004109077,11.273097593865607,5.781433087417338,23.092703736400374,12757.064399801837,60.28523057665151,13.184637239596317,20.49079865448674,13.369018322305102,13.240776360263338,0.5509899140829286,0.7373558118899733,0.715702479338843,0.5656146179401993,0.1150662251655629,0.7185238784370478,0.8779840848806366,0.8760683760683761,0.7700729927007299,0.155893536121673,0.49269889224572,0.6666666666666666,0.6599851521900519,0.5053763440860215,0.1037037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894190345945,0.0047145420810901,0.0070139466899449,0.0095010669647393,0.0117808637265374,0.0136313623212029,0.015619102029157,0.0178064568826448,0.0198720176640157,0.0218971377093485,0.0238175796909763,0.0261315097749301,0.0282766565862288,0.0301693937270741,0.0322563996696944,0.034187238969524,0.0363884890596361,0.0384463722397476,0.0406671449813353,0.0428912248533655,0.0578316523627555,0.0720094617083407,0.0856771188485465,0.0978841542926849,0.1097332067910998,0.125,0.1380657213212193,0.1504519948465134,0.1623695912433726,0.1738117977829525,0.1872533160789388,0.2009253640776699,0.2130459889086214,0.2240925828511309,0.2345197142101085,0.2452145141232901,0.2548098434004474,0.2640543223244901,0.2725514510972821,0.281340823195598,0.2896626111968082,0.2973673105776444,0.3045937485177631,0.3104094128947052,0.3171983508264111,0.3228863333497853,0.3280539870541247,0.3338170154269131,0.3392105842298082,0.3442158026645561,0.3442861375205365,0.3437826828865525,0.3440536202089611,0.3439446266780342,0.3445198143520171,0.3438070264219227,0.3429029136993037,0.3442056413125761,0.3460932415305039,0.3472100470508256,0.3476088508208422,0.3475617002733431,0.3487996645350665,0.3495467263570229,0.3491952582883577,0.3498811793278145,0.350346565847511,0.3515731010760832,0.3542150855694063,0.3543652534598971,0.3569857993586807,0.3593290956679664,0.3607288481141692,0.3629766867376872,0.366081648225868,0.3727447678614385,0.3762437810945274,0.3809126901437799,0.3832772166105499,0.391287284144427,0.0,2.1463213951630147,61.04861586973876,192.72392499715951,307.6431867826386,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95809,42542,400.3799225542486,6964,71.51728960744815,5438,56.12207621413437,2200,22.54485486749679,77.3504688262772,79.68254329871677,63.33176974345843,65.05992440221337,77.07723232956552,79.40991962091606,63.23070652143424,64.96200888921751,0.2732364967116751,272.6236778007092,0.1010632220241944,97.9155129958542,110.08228,77.09478982181358,114897.64009644189,80467.16886911832,266.94497,165.98086508931772,278026.6572033943,172646.0510905215,294.96675,140.98403789079822,303404.6175202747,143805.908840866,3115.02012,1401.9183861581046,3216891.523760816,1428853.0995606938,1332.68766,580.405114144606,1373655.961339749,588466.1087628582,2159.65206,900.5028659622992,2214693.0664133853,906770.7017813732,0.38173,100000,0,500374,5222.620004383722,0,0.0,0,0.0,22489,234.08030560803263,0,0.0,27328,280.8295671596614,1917073,0,68856,0,0,4289,0,0,51,0.5323090732603409,0,0.0,0,0.0,0,0.0,0.06964,0.1824326094359888,0.3159103963239517,0.022,0.3210231158528245,0.6789768841471755,25.090207475854186,4.493894501164494,0.3265906583302684,0.2184626700993012,0.2245310776020596,0.2304155939683707,10.86506776785079,5.471101369304136,23.32864542343337,12879.970215004963,61.33688688399027,14.073570500646634,19.850726908961107,13.687118097532707,13.725471376849828,0.5492828245678558,0.781986531986532,0.6835585585585585,0.5634725634725635,0.1245011971268954,0.7215951843491347,0.9185750636132316,0.8610421836228288,0.7570422535211268,0.144578313253012,0.4935507422730591,0.7144654088050314,0.6314639475600874,0.5048025613660619,0.1195219123505976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0045831094166675,0.0066477215061402,0.0091340438718592,0.0113818988140041,0.0136175673748752,0.015634082912651,0.0178600604525774,0.0199685084454623,0.0219069262739798,0.0237379900126124,0.025907480618165,0.0279923077714132,0.0301962965251601,0.0321782178217821,0.034552593511056,0.036645583379054,0.0388441152980469,0.04087337878284,0.0428504502628702,0.0575765479109071,0.0715794316304552,0.0846974492255454,0.097288039423774,0.1100317145897649,0.1260991798427327,0.1390956713537358,0.1513681433252479,0.1630827051613316,0.1741311127543967,0.1873412544663997,0.2001059562552032,0.212409282517057,0.2231647991254441,0.2342197625675274,0.2453929944704852,0.2557711198428291,0.2658195079125678,0.2757884455952665,0.2842821626204415,0.2923125007234884,0.3002702607841072,0.3073035037878788,0.3144110561075885,0.321021725651344,0.3272004837177161,0.3326522938079719,0.3371188946670745,0.3435024439575257,0.3484966629220908,0.3492584045237998,0.3491936485162857,0.3497232263895165,0.3488607888295021,0.3489912901064542,0.3489025326170376,0.3487884658134587,0.3494729907773386,0.3505036316294367,0.3504282693617174,0.3517788046132462,0.3538245141351506,0.3555760988318346,0.3564247565190072,0.3568529880670564,0.3584327889447236,0.3584549895723223,0.3632322340626773,0.3632375136007862,0.3691101560012735,0.3715184391667046,0.3711931969173532,0.3731409125283589,0.3743816119948245,0.3810375670840787,0.3804514832762085,0.3816653934300993,0.3797417271993543,0.3745573413238899,0.3735124760076775,0.0,2.534715029525689,58.27279061907813,209.68734953414327,309.2986988195831,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95725,42723,401.5878819535127,6802,69.95037868895274,5354,55.4400626795508,2122,21.89605641159572,77.30949638025908,79.66936004126633,63.31695901961641,65.05942942448793,77.05385229170054,79.41124495729953,63.224098528829565,64.96744563650643,0.2556440885585402,258.11508396679983,0.0928604907868475,91.98378798150486,108.59112,76.19533364748325,113440.71036824236,79598.15476362836,269.32294,168.08619579075688,280869.1250979368,175111.2309122558,301.1117,144.14476666352124,311174.5729955602,147984.3812523107,3081.8574,1383.1273230557897,3193178.124836772,1418584.1557124995,1304.75597,564.9666359983731,1350628.289370593,577800.570382213,2096.04192,862.5970253999603,2164479.101593105,880133.5424934765,0.38232,100000,0,493596,5156.395925829199,0,0.0,0,0.0,22569,235.24680073126143,0,0.0,27845,287.4693131365892,1918880,0,68863,0,0,4293,0,0,60,0.6267955079655263,0,0.0,0,0.0,0,0.0,0.06802,0.1779137894957104,0.311967068509262,0.02122,0.3208072372999304,0.6791927627000696,25.4372588640883,4.524835337404955,0.3311542771759432,0.213111692192753,0.2213298468434815,0.2344041837878221,10.92385497171009,5.388133259074501,22.46248258633528,12923.255433808476,60.404491405344544,13.406916770510623,20.108960809584545,13.217606423753496,13.671007401495888,0.5502428091146806,0.7852760736196319,0.6813310772701635,0.6033755274261603,0.1011952191235059,0.7383320581484315,0.9496021220159152,0.8444444444444444,0.7665369649805448,0.1345291479820627,0.4894983938720039,0.7041884816753927,0.6258503401360545,0.5581896551724138,0.0939922480620155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090712064897,0.0048049631011272,0.0072132943754565,0.0092427074022913,0.0116708178722106,0.0138935540016489,0.01618508892626,0.0185470617656966,0.0207881934507992,0.022842873371473,0.0250617575005893,0.0273220116228925,0.029275666337611,0.0313484789190747,0.0335385662572321,0.0355626272123322,0.0377653353756352,0.03979299759396,0.0418113034983059,0.0438845024061998,0.0586325000522105,0.0727398321227471,0.0864316653906258,0.0992818312776673,0.1116652783196431,0.1279808800668351,0.1415718893226956,0.1539468642227615,0.165472159618897,0.1767897157683689,0.1899991382281971,0.2028925888236949,0.2151119139073568,0.2268330050339242,0.2364054741431512,0.2467411545623836,0.2571096664656077,0.2665615319628274,0.2759474688721258,0.2845778215915083,0.2924606941903813,0.2997133329433101,0.3075119594562592,0.3143384999280196,0.3210704779961352,0.3268576080521018,0.3320942690146309,0.3378101409239621,0.3429527069072806,0.3475955626661025,0.3478595231991797,0.3487573915560518,0.3488125829497642,0.3489260695883749,0.349008979494587,0.3486961329360813,0.3476056517109299,0.3482142857142857,0.3490410676913576,0.350162369700558,0.3499887039686723,0.3511347136861785,0.3526436684719617,0.3537918315940986,0.3542963734586594,0.3555701179554391,0.3559044250841024,0.3562913069601239,0.3577224299724829,0.3612448760297688,0.3633953467111578,0.3634810464495462,0.3655430236978836,0.3667459160978603,0.370892907868573,0.3721678988790842,0.371996303142329,0.3657683604196667,0.36341059602649,0.3686033089649865,0.0,1.9009949742770704,57.9355093607094,205.93789744701905,305.7901645333056,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95734,42606,400.5055675099756,6975,71.67777383165856,5433,56.16604341195396,2222,22.865439655712706,77.40440741590693,79.76030457478508,63.3594678928421,65.09884283982643,77.13293987999107,79.48816827907338,63.2600895748388,65.00161052923134,0.2714675359158605,272.1362957117037,0.0993783180033034,97.2323105950892,110.39336,77.33610871048519,115312.5953161886,80782.28080983265,270.27183,168.02982758673278,281726.711513151,174928.70619292284,298.82932,142.56697432202327,308137.28664842166,145885.32463357886,3139.75736,1412.4250489506364,3248622.641903608,1444318.725792964,1293.05789,565.4112895902009,1336729.740739967,576664.9203179659,2189.38106,907.717097213672,2254896.400442894,920630.9713628112,0.38161,100000,0,501788,5241.4816052813,0,0.0,0,0.0,22714,236.64528798545973,0,0.0,27689,285.2382643574905,1916422,0,68681,0,0,4452,0,0,56,0.5849541437733721,0,0.0,0,0.0,0,0.0,0.06975,0.1827782290820471,0.3185663082437276,0.02222,0.327993483573174,0.672006516426826,25.03672478106891,4.495533946452055,0.3219215902816124,0.2125897294312534,0.2300754647524388,0.2354132155346953,11.108103079307808,5.6075116984996445,23.519327171148927,12853.39814302077,61.09305188453936,13.621382052551146,19.582277014833195,13.772511910983086,14.116880906171945,0.5481317872262101,0.7844155844155845,0.6792452830188679,0.5976,0.1071149335418295,0.7138576779026217,0.9187817258883249,0.8498789346246973,0.7435897435897436,0.1450980392156863,0.4941434846266471,0.7148488830486203,0.6264970059880239,0.5568065506653019,0.09765625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021667156033897,0.0043577400557385,0.0065433075658895,0.0088457827654496,0.011052026882759,0.0131718241042345,0.0152254777070063,0.0177545585339224,0.0199241859181984,0.0220723670746183,0.0241570154760684,0.0262028902208719,0.0287550118227613,0.0310028015820698,0.0333687588348793,0.0354362860125908,0.0376852417592659,0.0399489615967136,0.0418203926377817,0.043725067441594,0.058674907602681,0.0718389301074706,0.0851409750776202,0.0982989549822326,0.1105325842933482,0.1262146187762352,0.1399868457344111,0.1524761539771759,0.1638304009229881,0.1750034848436109,0.1888393530184575,0.2017528673447305,0.2141334377515282,0.2252329090670515,0.2360635898564277,0.2464673311184939,0.2565779196143631,0.2665167275794208,0.2746928635440654,0.2838023492775857,0.2919821079762826,0.2991078726733459,0.3062651313847062,0.3122997848434138,0.3180771654306626,0.3239608050456741,0.3301763022753114,0.3362160926546784,0.3421304314110683,0.3466222532355535,0.3461383478844862,0.3460835885673474,0.3461165253343458,0.3465100845428052,0.3465610819467924,0.3454567701084379,0.3450284068429631,0.3459033871893709,0.3468280111279889,0.3484643099204509,0.3496616238306806,0.351192362541594,0.3519540181661807,0.3530675739194664,0.3554383683690915,0.3562821819702553,0.3557289738258665,0.3588444472417157,0.3606591939281071,0.3642468311677991,0.3669490753393459,0.3698010849909584,0.372511967750063,0.3734307235790915,0.3711921775103422,0.3695368944687907,0.3695182211241507,0.3747445852063751,0.3741248949873985,0.3724631914046956,0.0,2.2329218234063988,58.802619180007056,204.57730599991157,312.09541429690427,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95750,42487,399.4360313315927,6882,70.68407310704961,5406,55.89556135770235,2185,22.44386422976501,77.33232137485312,79.69978529756439,63.31916690730778,65.07202957229637,77.06417573581034,79.43276874142599,63.22042244272453,64.9767007667899,0.2681456390427854,267.01655613840103,0.0987444645832482,95.32880550646894,109.44758,76.67681413556097,114305.56657963444,80080.22364027257,268.00965,167.04986459055414,279326.3916449086,173885.3624966623,294.56745,141.43285887881552,304837.00261096604,145419.93591352575,3104.67508,1404.6904018494376,3210372.2610966056,1434931.3439680813,1299.73273,565.7009742720918,1342823.6762402088,576234.9213259635,2151.75122,892.2572693310286,2211114.1096605742,899386.5841443351,0.38223,100000,0,497489,5195.707571801567,0,0.0,0,0.0,22526,234.66318537859007,0,0.0,27343,282.7049608355092,1918169,0,68853,0,0,4355,0,0,51,0.5326370757180157,0,0.0,0,0.0,0,0.0,0.06882,0.1800486618004866,0.3174949142691078,0.02185,0.3186692328842452,0.6813307671157547,25.212143776408958,4.511574052655005,0.3222345541990381,0.2101368849426563,0.235479097299297,0.2321494635590085,11.147319398939732,5.614621106473376,23.167692670147076,12828.287750401236,61.06434017130437,13.486543747008795,19.57122821366642,14.294150791106944,13.712417419522202,0.5477247502774695,0.7878521126760564,0.6808266360505166,0.5781618224666143,0.1147410358565737,0.7229977957384276,0.9093333333333332,0.8901601830663616,0.7106109324758842,0.1386554621848739,0.4887515451174289,0.7279894875164258,0.610727969348659,0.5353430353430353,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.004767266125024,0.0072902282511575,0.009533295389869,0.0117603971677382,0.0138344148898238,0.01611324141307,0.0182748164861305,0.0200909973927713,0.0223894348894348,0.0242857289306693,0.0265897377984929,0.0287509383129903,0.031052382227532,0.0330774627543229,0.0351620638333057,0.037380661461677,0.0393206552750889,0.0412799700689038,0.0432146986220041,0.0574811041048983,0.0713291688901445,0.0849258459021207,0.0973670928667563,0.1091921300689568,0.1248175491295242,0.137259271048862,0.1506333155934007,0.1630159662519357,0.1738365858889127,0.1870381939208547,0.2006493155132298,0.2128261484560311,0.2236394464803369,0.2344104245999427,0.245354065607903,0.2552844802571371,0.2651924375422012,0.2739220737949585,0.2824924116602714,0.2899022047335223,0.2983946456987738,0.3053369157385159,0.3122714903921075,0.3183093800493239,0.3253666954270923,0.3319357180405016,0.3364113913585428,0.3412855681185323,0.3455869740192909,0.3456261528725882,0.3462147390448394,0.3465766552977986,0.3462950649050276,0.3471697551979535,0.346378477810991,0.3465902778879878,0.3479940173890176,0.3491268837781499,0.3500724287783679,0.3507191877409044,0.3507612298775283,0.3522961653407416,0.3537963732782059,0.355398675112422,0.3551553542915477,0.3575859801595243,0.3600746859077819,0.3634119679819457,0.3625480461242793,0.3639111518204717,0.3660944206008584,0.3666666666666666,0.370125374971156,0.3717223165440483,0.3694569599241166,0.3685492464606485,0.3662767244856797,0.3779851770518803,0.3676470588235294,0.0,2.1228642158935767,60.079305736946615,206.03999286049225,304.45150171523755,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95723,42685,401.7216342989668,6964,71.35171275451042,5383,55.61881679429187,2193,22.50242888334047,77.41699606751023,79.77080883218858,63.36600846061516,65.10083647110241,77.14831920250718,79.50265709305643,63.26707176261254,65.00491325940497,0.2686768650030444,268.1517391321506,0.0989366980026247,95.92321169743911,110.01276,77.08451296899293,114928.2408616529,80528.72660592849,269.76861,168.53488080850653,281209.99132914766,175453.0372099773,297.50851,142.45389774749378,307120.1487625753,146062.13110185534,3078.67968,1396.3044919608783,3181817.034568494,1424271.6295570324,1318.55377,579.7075826590786,1361583.0991506744,589724.5203964341,2160.3195,897.1027319822157,2218111.801761332,903827.5825052306,0.38181,100000,0,500058,5224.01094825695,0,0.0,0,0.0,22744,236.95454592940047,0,0.0,27576,284.38306363152014,1915128,0,68717,0,0,4249,0,0,54,0.5641277435934937,0,0.0,0,0.0,0,0.0,0.06964,0.1823943846415756,0.3149052268811028,0.02193,0.3308763308763309,0.6691236691236692,24.920768213401804,4.55859289651456,0.330856399777076,0.2140070592606353,0.2219951699795653,0.2331413709827234,11.28175011106017,5.601672404154642,23.1014722887146,12832.548985992757,60.53446211311209,13.397127895921454,20.05994239394568,13.336166913973749,13.741224909271212,0.5517369496563255,0.7673611111111112,0.6895002807411567,0.5899581589958159,0.1219123505976095,0.7020958083832335,0.9252873563218392,0.8511627906976744,0.7266187050359713,0.1714285714285714,0.5021003212255992,0.6990049751243781,0.6380458919319023,0.5485278080697928,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022976173606753,0.004548724027191,0.0067449691658552,0.0089663786187918,0.0112249877989263,0.0134876524359209,0.0157989154808986,0.0179832618901816,0.0201524720501972,0.0223536272212957,0.024326761487068,0.0264270613107822,0.0284956516375747,0.0305651672433679,0.0326194602624412,0.0346488100773992,0.0370849682676081,0.0392146694600593,0.0413327928995312,0.0433065944369205,0.0579728304566195,0.071800774301559,0.0854151147296744,0.0981099529854749,0.1104243357557986,0.1257602200010577,0.1384442393575831,0.1511703407240252,0.1627546714244506,0.173691096669026,0.1877476740179186,0.2004046611774125,0.2127981043066153,0.2236374957669241,0.2338164675889806,0.2450537777187624,0.2560783920270225,0.2647842361431157,0.2742807896855546,0.2832274678111588,0.290814910739062,0.2985871711871735,0.3056360175453116,0.3126070141408336,0.3188829690401349,0.3245446596800611,0.3305831614475905,0.3357357128330283,0.341356787169372,0.3466311472166906,0.3462304524533685,0.3468214452727423,0.3474212135300001,0.3472021295063943,0.3474672060442011,0.3470700880888548,0.3467360528938169,0.3473651438683883,0.349051296476244,0.3505154639175257,0.3516877873724346,0.351474905909476,0.3527036920824181,0.3544230426252898,0.3549161246970169,0.3553749153248918,0.3557536236011048,0.3586918996955717,0.3594122597839809,0.3602014114661803,0.3615929525020434,0.3633565097393981,0.363739234299365,0.3691838291380625,0.3725950258094791,0.3720546654099905,0.3753232922561996,0.3771806697413274,0.3730936819172113,0.3703843255463451,0.0,2.351719785342388,58.57144848594205,205.57199027040036,303.16844813791965,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95685,42503,400.3239797251398,6905,70.72163871035167,5454,56.2784135444427,2229,22.9085018550452,77.3508434030137,79.74139230073176,63.31502979323547,65.0826511323426,77.0823695203579,79.47195547483639,63.21649737486196,64.98614090940333,0.2684738826557975,269.4368258953688,0.0985324183735087,96.5102229392727,109.33164,76.59724209705368,114262.0473428437,80051.46271312503,266.4444,165.87003252502245,277777.1751058159,172667.31726500753,298.16418,143.11947828793393,306461.942833255,145681.7769546889,3142.5428,1429.5510173760242,3246262.005539008,1456021.338115717,1341.0596,586.4661971182021,1381829.471704029,593208.7021610959,2195.07216,906.9993461693678,2258045.6915922035,918800.71338807,0.3818,100000,0,496962,5193.729424674714,0,0.0,0,0.0,22440,233.78795004441656,0,0.0,27699,284.3078852484716,1918517,0,68832,0,0,4230,0,0,40,0.418038355019073,0,0.0,0,0.0,0,0.0,0.06905,0.180853850183342,0.3228095582910934,0.02229,0.3140461792193513,0.6859538207806487,24.944396038036544,4.515990684624656,0.3263659699303263,0.2125045837917125,0.2293729372937293,0.2317565089842317,11.108846219731294,5.531307703473441,23.526185749550493,12841.205843649012,61.54325567946204,13.7080100005502,20.10682970432207,13.835263430923332,13.89315254366644,0.552988632196553,0.7808455565142364,0.6825842696629213,0.5899280575539568,0.125,0.708029197080292,0.926208651399491,0.8485523385300668,0.7137546468401487,0.1274131274131274,0.5009794319294809,0.706266318537859,0.6265965439519159,0.5560081466395111,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0045532445670361,0.0067608035813986,0.0091165948451093,0.011332885714867,0.0133452863633585,0.0154750124963021,0.0176379271605694,0.0197788936500956,0.0219475225824952,0.0241513690903497,0.0261395616359565,0.0281520643475756,0.0304450855141149,0.0327767342979215,0.0347551016188723,0.0366329966329966,0.0391002885553548,0.0411292335857535,0.0430295828382012,0.0574472529768122,0.0710957541489974,0.0846139312255951,0.0979633058407675,0.1099108602774407,0.1252975592208974,0.1392589133134493,0.151378003066962,0.1632122967729522,0.1738654533357657,0.1879702490029104,0.200803343293924,0.212742804287502,0.2237154582763338,0.2343271750379847,0.245650414167064,0.256395368312918,0.2658250655975855,0.2752360285847374,0.2827986332469557,0.290624819039898,0.2980313162425193,0.3054545023640522,0.3119367342285584,0.3185367158806217,0.3246969454070119,0.330296013517742,0.3357221960564671,0.3413866770246649,0.3460558116192765,0.3464395992610871,0.3468243913187176,0.3470848479724969,0.346925500852823,0.34770021082638,0.3470621546749927,0.3468289517418211,0.3472817079374456,0.3489858341450078,0.3503141510781093,0.3517053973013493,0.3535451260686714,0.355204282189604,0.3559102578412769,0.3569763809798409,0.3589810377161909,0.3594344443813526,0.3621825023518344,0.3629772329246935,0.3664655070405869,0.3683972298918209,0.3706041478809738,0.3731305768505718,0.3792840241202961,0.3816930618401206,0.3780749940291378,0.3747313478661345,0.3771118262268704,0.3778385772913816,0.3824329576369996,0.0,2.802738264982385,59.63064684331038,211.60004396086543,302.2098264564239,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95713,42167,396.8426441549215,6796,69.68750326496924,5287,54.53804603345419,2162,22.086863853395048,77.26691653433518,79.62886698551512,63.2951211478972,65.03997524536065,77.00437577685514,79.37003863861754,63.197303209521614,64.94685722722576,0.2625407574800391,258.8283468975732,0.0978179383755843,93.11801813488783,110.43098,77.40213671351246,115377.20058926164,80868.99032891296,268.73428,168.2968109919514,280070.5651269943,175134.48642499073,297.1308,142.39910480864663,306871.36543625215,145845.35885077727,3025.12344,1386.6546179596069,3121812.7945002248,1410380.381546326,1291.32503,573.4206768867821,1327911.6003050788,578055.5978394062,2119.4345,890.6166738312965,2167994.23275835,890598.101935027,0.37834,100000,0,501959,5244.418208602802,0,0.0,0,0.0,22707,236.5195950393364,0,0.0,27478,283.482912457033,1908184,0,68505,0,0,4357,0,0,50,0.5223950769487948,0,0.0,0,0.0,0,0.0,0.06796,0.1796267907173442,0.3181283107710418,0.02162,0.3304469273743017,0.6695530726256983,25.00036636783392,4.548020300316548,0.326082844713448,0.2099489313410251,0.2369964062795536,0.2269718176659731,11.504375075729037,6.052510007842621,23.10636511005457,12761.116100473471,60.24938994566454,13.207932727271013,19.663238069427347,13.917867157621178,13.460351991345,0.5627009646302251,0.8018018018018018,0.703016241299304,0.5857940941739824,0.1158333333333333,0.6981684981684981,0.90625,0.8223234624145785,0.7437722419928826,0.1340996168582375,0.5155532891381948,0.7465564738292011,0.6622568093385214,0.5401234567901234,0.1107561235356762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0047856107230125,0.0069509274668182,0.00914253207505,0.0115839147326241,0.0137761803427244,0.0159641164177582,0.0180888312695868,0.0200464103533933,0.022324353095316,0.0243252385882545,0.0264054864276621,0.0284333384749858,0.0304157053394858,0.0323742120521206,0.0344314317314947,0.036565286277921,0.0385940158525957,0.040715562762463,0.0428336250729349,0.057985694147131,0.0722353064321976,0.0846783502990869,0.0970464135021097,0.1098461668319652,0.1247473197371066,0.1385343893996984,0.1513159997017564,0.1629309607323124,0.1736035813588981,0.1879784366576819,0.200788894788743,0.2125446545264442,0.2240829782806322,0.2344195990698597,0.2457507632528448,0.2558045899879211,0.2654082380120584,0.2742281863942641,0.281679966978536,0.2888199476767069,0.2970498712245376,0.3040661384121569,0.3100813320217845,0.3164512324136337,0.3221897251736946,0.3277738764044944,0.3329763771497048,0.3380373115920391,0.3438431081743183,0.3444587193184123,0.3445634893205225,0.344305445488509,0.344416571204849,0.3438292413710808,0.343638013503745,0.3429807952393833,0.3436767570065692,0.3448429877001305,0.3453566621803499,0.3463196942022709,0.347425959053866,0.3482574462246427,0.3496174617461746,0.3498352234176601,0.3510618748851495,0.3530256881788403,0.3544512931308382,0.3549882336162019,0.3562186640789261,0.3591685912240184,0.3641652750094273,0.3647822765469824,0.3665412090022275,0.3668812724862715,0.3687031082529475,0.3668866042657664,0.3686449260684626,0.3717205191935929,0.3786821705426356,0.0,2.694217829957032,59.74963491487001,202.7365343007086,296.190805687641,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95703,42360,398.7544800058514,6899,70.83372517057981,5417,56.02750175020637,2173,22.319049559574932,77.288290147924,79.65647544161168,63.294707477804174,65.04328211973004,77.02070086033225,79.39092826716178,63.19538725600299,64.9481511494941,0.2675892875917469,265.5471744498925,0.0993202218011859,95.1309702359424,108.63336,76.13987522758812,113510.69454458063,79558.29434764652,268.25305,167.31432879601647,279733.6551623251,174263.9241452456,298.1452,142.6916264693374,308363.42643386306,146682.5133447016,3138.07124,1414.2145114231412,3246972.237024963,1445801.5724274048,1319.64915,574.3500533713509,1365364.0220264776,586669.4560677898,2144.27832,890.6992209922857,2203482.5867527667,897469.219002634,0.37894,100000,0,493788,5159.577024753665,0,0.0,0,0.0,22549,235.0083069496254,0,0.0,27607,285.3202093978245,1916661,0,68803,0,0,4329,0,0,40,0.4075107363405535,0,0.0,0,0.0,0,0.0,0.06899,0.182060484509421,0.3149731845194956,0.02173,0.3195577055977885,0.6804422944022115,25.207488668991815,4.510218344756019,0.3285951633745615,0.2065719032674912,0.2257707218017352,0.2390622115562119,11.15172569793316,5.665909693407514,23.020606295385758,12820.61694664847,61.03454577088169,13.201958304519172,20.117574728919905,13.541844145577569,14.17316859186504,0.5432896437142329,0.7587131367292225,0.6943820224719102,0.5936222403924775,0.1019305019305019,0.7116382505559674,0.8943089430894309,0.8434782608695652,0.75,0.1532258064516129,0.4874631268436578,0.692,0.6424242424242425,0.5488958990536278,0.0897803247373447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774577421282,0.0044099309617704,0.0067378333400982,0.0091936040959791,0.0112989179074119,0.0134407233552933,0.0157215391203278,0.0180166385954167,0.0202804922925951,0.0224532820271404,0.0245969684236417,0.0268525266626292,0.0290047295907875,0.0309687120229046,0.0328220574128131,0.0348804762347688,0.0370067407353717,0.0389289606143946,0.0408592084048473,0.0429018136335209,0.0572297022049991,0.0715796527821406,0.084912096562582,0.0981487912943727,0.1109152327668109,0.126144821963641,0.1389962619998301,0.1511816225200843,0.1635762864108815,0.1740941990077532,0.1886155538539521,0.2005850804485617,0.2123436887281599,0.2236213919670623,0.2337596527754827,0.2446370506830616,0.2555439997316067,0.2649486861396188,0.274156843111374,0.2823010476015438,0.2901579051177037,0.2976304985337243,0.3050135308360632,0.3123340023314785,0.3180671808180123,0.3240573618494251,0.3306656280624168,0.3358010824058001,0.3404769640652414,0.3456914358349663,0.3465250313820238,0.3468643857178361,0.3472737047621742,0.3477958034651885,0.3482433360198203,0.3469660641829583,0.3459907570632236,0.3467966344491462,0.3473920724491021,0.3487859510796524,0.3497120704580526,0.3498641708472963,0.350716585643033,0.3514403476546749,0.3513429031715117,0.3532522337127823,0.3529579553882138,0.3551357658708884,0.3579842008745944,0.3588228247414447,0.3621338720044073,0.3662152759192849,0.3701619023526435,0.3717369670060476,0.3722128536631066,0.3734498641785756,0.374791192103265,0.3772141706924315,0.3800597663678348,0.3916666666666666,0.0,2.157681377880806,59.633016520253896,203.6138650100815,309.2707971830837,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95840,42185,396.1393989983305,6770,69.49081803005008,5276,54.58055091819699,2128,21.953255425709514,77.36488025655099,79.67793190703443,63.35773544642036,65.0704972883184,77.10336527966042,79.41296343361437,63.261922466159454,64.97475693645019,0.2615149768905667,264.968473420069,0.0958129802609022,95.7403518682156,109.51006,76.74729281280301,114263.418196995,80078.56094825022,262.76623,164.26854385851183,273584.5993322204,170813.92799131104,297.71134,142.76576638376142,306933.68113522534,146244.6495110217,3038.62704,1378.2153018277193,3146592.779632721,1414135.4098594745,1266.56944,551.4464986203807,1309648.382721202,563623.0811659581,2090.48154,862.5431594475547,2158615.442404007,881494.2075499861,0.37871,100000,0,497773,5193.791736227045,0,0.0,0,0.0,22143,230.53005008347245,0,0.0,27616,284.5262938230384,1922371,0,68989,0,0,4203,0,0,56,0.5634390651085142,0,0.0,1,0.0104340567612687,0,0.0,0.0677,0.1787647540334292,0.314327917282127,0.02128,0.3228932584269663,0.6771067415730337,25.07142408646552,4.481738316566373,0.327710386656558,0.2170204700530705,0.2249810462471569,0.2302880970432145,11.233437343081556,5.733979228393985,22.514611289380152,12772.944534187913,59.70741342339341,13.68857149033318,19.55107611128045,13.293008264451233,13.174757557328554,0.5583775587566339,0.788646288209607,0.7009832272990167,0.5796124684077506,0.1176954732510288,0.7212996389891697,0.9057971014492754,0.88558352402746,0.7402135231316725,0.1146245059288537,0.5003855050115652,0.7222982216142271,0.6385448916408669,0.5298013245033113,0.1185031185031185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0044811225110507,0.0069100576345482,0.0093852841994068,0.011795690505486,0.0141428745978088,0.016198087626659,0.0186618208546868,0.0206391069676153,0.0228977941552791,0.0250789160824826,0.0272159108401834,0.0293528196589893,0.0314632414240281,0.0334175127557594,0.0353566635697326,0.0373392910706343,0.0393194981195022,0.0412928814685605,0.0432679303385281,0.0581235268350681,0.0719265057848475,0.0849499308668873,0.0977025977025977,0.1095596133190118,0.1247439444174603,0.1378693022319679,0.1505410634181601,0.1626165432783597,0.1734822843922711,0.1871443171427034,0.2003934794828555,0.2128260562538703,0.2233082870997335,0.2334835164835164,0.2437797191197611,0.2542359664464669,0.2636756696052558,0.2731720022195296,0.2815569505906029,0.2885146296103776,0.2958438919575397,0.3027458953415525,0.3092551600358959,0.3156929653061968,0.3216819391073012,0.326704687578168,0.3319178151858821,0.3373310045927938,0.3426971473746623,0.3437180521926284,0.3442764994704919,0.3453530498033522,0.3455029363265542,0.3459317038316115,0.345103693704749,0.3443218792159352,0.3454216073781291,0.3460726967082354,0.3477629597762959,0.3488205456979616,0.350083585416335,0.351488697705803,0.3530656342846853,0.3532350314935927,0.3540946695989109,0.3542702085118537,0.356638061585058,0.359044898247099,0.3628290263221058,0.365409383624655,0.3673666684569526,0.3685186369157982,0.3687094782340228,0.3715867863280504,0.3718809980806142,0.3721652687169928,0.3769072164948454,0.3865406006674082,0.397270955165692,0.0,1.7248253944922587,61.57661473038016,192.25263924291409,299.70592678201785,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95635,42312,398.9020755999372,6886,70.83180843833324,5366,55.49223610602812,2121,21.791185235530925,77.2563444549925,79.66443003724748,63.27473565930678,65.055059816332,76.9905999167318,79.39827502380936,63.17738792664975,64.95948907348627,0.2657445382607051,266.155013438123,0.0973477326570275,95.5707428457373,109.22648,76.538778183445,114211.8262142521,80032.1829700894,265.9489,165.90283092830228,277455.4504104146,172843.77892760656,295.5263,141.18451640845447,304635.0917551106,144373.88348024918,3080.86716,1392.9445531399024,3189136.864118785,1424213.5709226415,1337.33527,580.3986474633066,1383392.3040727766,591963.183128003,2093.89014,868.2257320984021,2154643.2373085166,879791.3212775339,0.38031,100000,0,496484,5191.4466461023685,0,0.0,0,0.0,22367,233.22005541904116,0,0.0,27409,282.197940084697,1915722,0,68773,0,0,4340,0,0,43,0.4496261828828357,0,0.0,1,0.0104564228577403,0,0.0,0.06886,0.1810628171754621,0.3080162648852744,0.02121,0.3313002495148323,0.6686997504851677,24.7769488687598,4.490121648054763,0.32836377189713,0.2182258665672754,0.218412225121133,0.2349981364144614,11.3377067847777,5.774849696684602,22.51572976744885,12810.79020625238,60.82226661591022,13.873938782709809,19.890072751868846,13.125114001590187,13.933141079741397,0.5532985464032799,0.7779675491033304,0.6838819523269013,0.6032423208191127,0.1157811260904044,0.7023988005997002,0.9074550128534704,0.8352941176470589,0.7509881422924901,0.146067415730337,0.503968253968254,0.7135549872122762,0.6357516828721017,0.5625680087051143,0.107645875251509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002035752266167,0.0042771859765058,0.0062411836937659,0.0084727682789308,0.0109166751449791,0.0130191620060511,0.0152909254121103,0.0176754260492868,0.0199864983736677,0.0221177290142807,0.0241134460679691,0.0261848974390594,0.028372298918023,0.0305795263575721,0.0326319377730949,0.034622269590141,0.0366028112949371,0.0388702489898098,0.0408524276289775,0.0426606030895038,0.0570714935153155,0.0705553285772651,0.0834278155706727,0.0961884611740929,0.1083428306107804,0.1244113818901387,0.1380902346610628,0.1503663315726699,0.1629365995468342,0.1736811606644632,0.1872378960532131,0.2005330213208528,0.2124799860583154,0.2230051836184506,0.2331270749920033,0.2443605683836589,0.2547541277014631,0.2639480624873199,0.2732005638157596,0.2817450757706118,0.2901456468296303,0.2980287768096907,0.3059333096000949,0.3124654737600576,0.3193412429653811,0.3258736592358262,0.3324131354071248,0.3379895394820768,0.3433831931027319,0.3470564889535653,0.3478137536977752,0.3487636413869319,0.3486722907937946,0.3485024547540888,0.3484830369152593,0.3473736143445213,0.346426979173301,0.3469583161370202,0.3483384154219856,0.3496480838118553,0.3506189171312482,0.3505748271533603,0.3517740675855373,0.3521167883211679,0.3521708666553915,0.353202963428362,0.3533256880733945,0.3556349156184817,0.3573664404037562,0.3607743371626187,0.3626855446448961,0.363903115663679,0.3645073282152147,0.3670277693011901,0.369810616662002,0.3740973126553806,0.3801878218721599,0.38125,0.3787960954446854,0.383307573415765,0.0,2.361437216411847,58.747469869637925,210.58020684311904,299.3918374469609,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95702,42214,397.43161062464736,6874,70.78221980731855,5285,54.73239848696997,2133,21.93266598399197,77.32722884548278,79.70363600251689,63.32110870231941,65.07586356724089,77.06186581116923,79.43775903471808,63.223598381243946,64.98003946602911,0.2653630343135518,265.8769677988033,0.0975103210754682,95.82410121177531,109.19876,76.57051689187477,114102.90276065284,80009.31735164863,266.86144,166.69891257834246,278354.193224802,173694.61091803087,295.90947,141.94590174337543,306072.4645252973,145786.75258709036,3032.12676,1380.1807560737325,3142288.8967837663,1416225.6193795598,1303.29454,572.1812393043771,1350024.9002110718,586115.8733987488,2093.7761,882.4510385715138,2156244.926960774,896964.4988103885,0.3782,100000,0,496358,5186.495580029676,0,0.0,0,0.0,22479,234.36291822532445,0,0.0,27493,284.2155858811728,1917436,0,68811,0,0,4351,0,0,42,0.4388623017282815,0,0.0,0,0.0,0,0.0,0.06874,0.181755684822845,0.3102996799534477,0.02133,0.3255070853014726,0.6744929146985273,25.26323259128858,4.424444353158047,0.3165562913907285,0.2234626300851466,0.2293282876064333,0.2306527909176915,11.230989425500567,5.860086731665886,22.89801512020024,12781.150901519011,59.82569313068473,13.790266912912992,18.99175007443821,13.522982729502417,13.5206934138311,0.5540208136234627,0.7849280270956817,0.6867901972504483,0.5701320132013201,0.1320754716981132,0.7186588921282799,0.9508196721311476,0.8628318584070797,0.725,0.1642335766423357,0.4962944032711474,0.7104294478527607,0.6216216216216216,0.5236051502145923,0.1227513227513227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023589203636584,0.0045707452037579,0.00687836055595,0.0090191657271702,0.0109211824162861,0.0133078105749748,0.0157037097464972,0.0176993861897807,0.0197881087272206,0.0220786269469846,0.0242436673161727,0.0264366045293483,0.0286457797617823,0.030818847822279,0.0328493142202545,0.0348090466292309,0.0369641340157056,0.0389418934210936,0.0408046515014405,0.0428080050031269,0.0572162687221908,0.0707333919377119,0.0839853993161174,0.0966798518767884,0.1090767186280507,0.1245636305934624,0.1376708549112827,0.1502544881487318,0.1621278005106892,0.1736089507728945,0.1864996445574201,0.1992379880286187,0.2121554893302299,0.2233535291673046,0.2340039178570642,0.2440364736253144,0.2549779007991428,0.2639163891638916,0.2733567155877913,0.2821379468377635,0.2896467863346844,0.297140047529296,0.3043606992278175,0.3114612562054824,0.317704280155642,0.3236920039486673,0.3301711822351437,0.3352321239693644,0.3400653747373336,0.3446807948070491,0.3446576378292982,0.3445366566489288,0.3450826498778955,0.3449563053417443,0.3453478500469162,0.3446563124711672,0.3442646381552827,0.3444241796881418,0.3457022236655443,0.3466695231464124,0.3473055014240743,0.3487994936909141,0.3506324599861551,0.352169141526126,0.3532221873718242,0.3550844130349431,0.358298262189012,0.3603472770323599,0.3624401913875598,0.366765152120099,0.3694074414331649,0.3720008568980291,0.3741198858230257,0.3756450743279673,0.3769708552317248,0.3813001316892134,0.3868070610096005,0.3874795417348609,0.3899860917941585,0.3989155693261038,0.0,1.9082960257390047,60.90015856103648,196.5913951831738,297.42193111568844,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95761,42176,396.19469303787554,6931,70.9579056191978,5448,56.11887929324047,2229,22.74412339052433,77.38146625236273,79.70406202412656,63.35451413110488,65.06764308011562,77.10139540349748,79.42939632663492,63.25128694453366,64.97013585555524,0.2800708488652503,274.66569749164194,0.1032271865712175,97.50722456037408,108.35286,75.86533657204099,113149.25700441725,79223.62608164178,266.13908,166.08790398486806,277164.6703772935,172685.41069230397,296.08896,142.13491810613684,304542.0369461472,144783.726969424,3155.641,1432.803038492527,3254034.022201105,1454975.1316154918,1372.21479,599.7161327254298,1412386.1697350696,605691.7353885504,2204.15328,920.9584125650526,2253071.229414897,919825.4570561012,0.38019,100000,0,492513,5143.14804565533,0,0.0,0,0.0,22330,232.38061423752885,0,0.0,27408,281.56556426937897,1924782,0,69129,0,0,4392,0,0,65,0.6787731957686324,0,0.0,0,0.0,0,0.0,0.06931,0.1823035850495804,0.3215986149184822,0.02229,0.3243725140584282,0.6756274859415718,25.12307188678208,4.457100127221763,0.3256240822320117,0.2103524229074889,0.2204478707782672,0.243575624082232,11.16781222084953,5.677995458193295,23.76195535276629,12905.949171766595,61.70187771402772,13.558936306425895,20.1336788054881,13.409447485819928,14.599815116293795,0.5479074889867841,0.7643979057591623,0.6894024802705749,0.5978351373855121,0.1266013564431047,0.7242359630419332,0.9214659685863874,0.8660907127429806,0.7716262975778547,0.1575091575091575,0.4865132392972036,0.6858638743455497,0.6270022883295194,0.5427631578947368,0.1185958254269449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023287366097644,0.0042462199521666,0.0068065854475,0.0091498090827849,0.0113577435000559,0.0132337072703951,0.0156148075668623,0.0177654874029326,0.0200756027789129,0.0224770829923064,0.0246693507903822,0.0270453286274187,0.0289704643084701,0.0310582664196005,0.0330126916375408,0.0351967942825864,0.0371719513204735,0.039169742462572,0.04125371397702,0.0433768559588513,0.0578370085889314,0.0719824203421754,0.0857002013760698,0.0989540078843626,0.1114226978019081,0.1270440650716084,0.1405416299816486,0.153042867331623,0.165121445814018,0.176358957864265,0.1908186555273244,0.2035582954791261,0.2151487140449133,0.226341815635735,0.2363610349875083,0.247215541985748,0.2572883286251828,0.2674935563384245,0.2770597187833632,0.2858109270194347,0.293972498001645,0.3005774930009722,0.3075583461675157,0.3141705939489873,0.3203451628585318,0.3266148915187377,0.3322069535180596,0.3375198829293122,0.3424167390487055,0.3473307635441968,0.3476005712284105,0.3479822726271746,0.3479094690827046,0.3479173908006024,0.3485017805790234,0.347742628992629,0.3470714115875406,0.3471503441930767,0.3478736870915871,0.3491403167348105,0.3509258565109828,0.3516483516483517,0.3526450476150522,0.3530651126302813,0.3536511913653118,0.3554400898195775,0.3577887440454118,0.3590776103438513,0.361225422953818,0.3622546673049306,0.3646978021978022,0.3632685653446899,0.3629955947136564,0.3622868453105968,0.3641799544419134,0.3648084039632326,0.3685420818641729,0.3745676500508647,0.3744810406864102,0.3841982958946553,0.0,2.9785690842600068,61.34101427300814,206.52321031997036,303.1592548756759,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95762,42710,402.2159102775631,6873,70.58123263925148,5358,55.42908460558468,2093,21.50122177899376,77.31912755708531,79.66875551540964,63.32066847763053,65.05833659356576,77.05657638918436,79.40801097262279,63.22317315853866,64.96455917828318,0.262551167900952,260.74454278685266,0.0974953190918768,93.77741528257388,109.11538,76.46031365474272,113944.34117917337,79844.10690539329,266.17902,165.99231627903936,277458.5012844343,172839.8971708444,294.31534,141.07925058974877,304850.8489797623,145340.75287192495,3057.471,1384.7327335127,3161852.9270483074,1415218.3344427554,1270.4943,555.9886384785747,1311403.4168041602,565442.8695597746,2066.37392,865.8678495267047,2122831.102107308,871875.5036054915,0.38298,100000,0,495979,5179.288235416972,0,0.0,0,0.0,22424,233.6208516948268,0,0.0,27258,282.10563689146005,1918692,0,68934,0,0,4255,0,0,50,0.5221277751091247,0,0.0,0,0.0,0,0.0,0.06873,0.1794610684631051,0.3045249527135166,0.02093,0.3217897215680842,0.6782102784319157,25.31869907734409,4.502073243306424,0.3240014930944382,0.2215378872713699,0.2239641657334826,0.2304964539007092,10.903502953109834,5.335189909370128,22.24152775837938,12889.03047546494,60.31325986598899,13.978794249064476,19.48302588187055,13.38543580305642,13.466003931997548,0.5520716685330347,0.7598989048020219,0.6941244239631337,0.5908333333333333,0.1149797570850202,0.7015475313190862,0.8781725888324873,0.8838268792710706,0.7083333333333334,0.1192307692307692,0.501374656335916,0.7011349306431274,0.6299151888974557,0.5576923076923077,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021266038137095,0.0044791698335005,0.0068179051174871,0.0090495439679863,0.011268063987959,0.0133207051419143,0.0157736426204435,0.017951231466732,0.020142737367334,0.0222047050633688,0.024514779613054,0.0267275901016531,0.028971049519206,0.0312136227375274,0.0331200990507635,0.0352938744716253,0.0373211586640992,0.0392618563545081,0.041076531407492,0.0430059368815748,0.0571521028842239,0.0709772579869029,0.0848760737998091,0.0971605847092228,0.1091689245464033,0.1249233372105318,0.1383797887234313,0.1510198869984358,0.1635058944131214,0.174415986792028,0.1880707270847691,0.201038961038961,0.2133611781852988,0.2246826099793327,0.2355361897845558,0.2460957402033537,0.2563464243452633,0.2667619454885103,0.276520870463498,0.2843167577350882,0.2927879938857751,0.2994847775175644,0.3065007407407407,0.312927048934254,0.3193920514006181,0.3254328977595534,0.3313857264657204,0.3368607601392271,0.3424522425249169,0.3476795368326438,0.3476583576130355,0.3481083316105023,0.348562309343577,0.3491718471503717,0.3509014843598791,0.3496308122131311,0.3492436387879172,0.3501003718695494,0.3517824442504835,0.3525828241744459,0.3525860447620839,0.353209372398208,0.3552903035661656,0.3554646221642646,0.3560743372241958,0.3578517374112964,0.3601888952489983,0.3628528130327713,0.3660301436588895,0.3686828491842419,0.3736414284409535,0.3763613068545804,0.3780077455399657,0.3787645974185618,0.3811149032992036,0.3842960502905942,0.3812519177661859,0.3829397394136807,0.3859745996686913,0.3847626339969372,0.0,1.9963677807975104,60.08254930409493,197.1590814149961,306.82151135888705,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95689,42329,398.6560628703404,6884,70.80228657421439,5377,55.680381235042695,2112,21.77888785544838,77.34181859432726,79.72524995450976,63.3271521787835,65.08581919608622,77.08160497329825,79.46292390966296,63.23127900918726,64.99171458522157,0.2602136210290098,262.32604484680166,0.0958731695962384,94.1046108646475,109.60928,76.851529846862,114547.41924359124,80313.86036729613,267.70765,166.79263986445474,279265.2760505387,173803.8226592971,293.75188,140.08976723299767,304010.11610529944,144094.31386611093,3077.59952,1379.0558505474594,3189970.63403317,1414903.8348686465,1261.43185,544.0955673782912,1307483.1798848351,557829.3193348154,2084.87268,863.7203593625304,2152145.99379239,878612.1955065251,0.38061,100000,0,498224,5206.700874708692,0,0.0,0,0.0,22555,235.18899769043463,0,0.0,27239,281.5997659083071,1918008,0,68810,0,0,4397,0,0,44,0.4598229681572595,0,0.0,0,0.0,0,0.0,0.06884,0.1808675547147999,0.3067983730389308,0.02112,0.3282632743362831,0.6717367256637168,24.964754085073327,4.525396845347581,0.3249023619118467,0.2172214989771247,0.2254045006509205,0.2324716384601078,10.91278956443506,5.216991515259554,22.34914864337029,12789.728233858128,60.391861990245125,13.62727245501432,19.57034726471285,13.449502467825209,13.74473980269274,0.5460293844151014,0.7559931506849316,0.7097882083571837,0.5561056105610561,0.1112,0.7037037037037037,0.9193548387096774,0.8656716417910447,0.6690391459074733,0.1410788381742738,0.4959568733153638,0.6796482412060302,0.6631970260223048,0.5220193340494093,0.1040634291377601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898492167167,0.0046220744599977,0.0064527256678469,0.008429647986025,0.0104425102696546,0.0126354158181966,0.0150750695654832,0.017282035054051,0.0192152413659174,0.0216298662080684,0.0239008284800262,0.0260868672137377,0.028014403292181,0.0303273873929576,0.0323386422518347,0.0341660201706749,0.0361565644527809,0.0384267959673149,0.0406974324830427,0.0427956339070693,0.0574138687503917,0.0715893741557856,0.0853397426478305,0.0977860555169728,0.1101101312291657,0.1253120372329172,0.1387008467202852,0.1513896724609603,0.1633562339063818,0.173827245232835,0.1872920144311022,0.2005105241525515,0.2122504024013572,0.2239253072112651,0.2343318555351426,0.2450681760281786,0.255025840802795,0.2650251403246307,0.2749585820302748,0.2840963745047294,0.2920386732664107,0.2999438701529538,0.3070527149936723,0.3131245357168531,0.3194694135367572,0.3243193275239421,0.3286386739778161,0.333918999783558,0.3384407974903425,0.3431986265187533,0.3427982319012452,0.3430825794191762,0.3443406872425661,0.3447268308911808,0.3452025047223833,0.3446809816892545,0.3449330480944457,0.3447652539726882,0.3458668492212904,0.3475953032009007,0.3480973525940082,0.3499693512348486,0.3509040567185468,0.3522607545562554,0.3533905248445708,0.3552248971786341,0.3565580809526535,0.3591582672438307,0.3628005657708628,0.3645874930117402,0.3639692420358842,0.3645766687993175,0.3672081601813373,0.3715288373512359,0.3691413573303337,0.3721290015470665,0.3682354744749348,0.3609371844071904,0.361188228761799,0.3642691415313225,0.0,2.0261154349086032,57.217723907277374,205.76291485655136,308.4609637294797,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95669,42291,400.4118366450992,7015,72.08186559909689,5483,56.61185964105405,2255,23.194556230335845,77.38307130315455,79.75955935936508,63.34642469116329,65.09743809048862,77.11085803640455,79.4858733378735,63.24824191580769,65.00120643900821,0.2722132667500005,273.68602149158505,0.0981827753556032,96.23165148040869,108.55438,76.06927371449937,113468.70982240852,79512.98091806058,268.15783,166.56094315480834,279633.6953454097,173437.4490742125,299.35624,143.54717932385634,307571.0000104527,146148.07672257297,3149.72,1427.57386358178,3255427.1080496297,1455318.2573056906,1328.93187,574.780541906428,1374228.496169083,586035.521495598,2223.8383,905.54402539401,2289390.209994878,917854.1426202812,0.38102,100000,0,493429,5157.668628291296,0,0.0,0,0.0,22628,235.8130637928692,0,0.0,27867,285.9965087959527,1922774,0,69155,0,0,4338,0,0,44,0.4599190960499221,0,0.0,1,0.0104527067284073,0,0.0,0.07015,0.1841110702850244,0.3214540270848182,0.02255,0.3289473684210526,0.6710526315789473,24.79618134808611,4.561276275812598,0.3222688309319715,0.2086449024256793,0.233448841874886,0.235637424767463,11.46142219323928,5.893650347143499,23.74256011307877,12837.224389380795,61.95659721474555,13.713751258384244,20.09685691234463,14.054037007844704,14.09195203617196,0.5641072405617362,0.7884615384615384,0.7181663837011885,0.6,0.1191950464396284,0.7415730337078652,0.9213759213759214,0.8710359408033826,0.76,0.1680327868852459,0.5018477457501848,0.7150610583446404,0.6622874806800618,0.5510204081632653,0.107824427480916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022675966512456,0.0044272891212286,0.0065415158061277,0.0087330923270644,0.0107772863606324,0.013141687958712,0.0152602499541275,0.0173013912564178,0.0196457228133656,0.0218047806725699,0.0236628151368198,0.0257947917522385,0.0276346507872841,0.0295720245146006,0.0312790145872449,0.0329385257761792,0.0348599902619938,0.0368875003892181,0.0390083091546293,0.0408433383358345,0.0562548968399059,0.0699546687046556,0.0838972293037065,0.0971652682270309,0.1090247759620453,0.1243035806789229,0.1377402291783711,0.1497495666599317,0.1622887504267668,0.1736517323391399,0.187622367090514,0.2005232545568553,0.2130545351794292,0.2239549751379706,0.234797910365686,0.2468261881023596,0.2580004019741396,0.2673445716923978,0.2761282997445359,0.2842133003345707,0.2917009038619556,0.2994112207512495,0.3068803752931978,0.3138746565233564,0.3202237626170497,0.3255687706657454,0.3320933378424078,0.3377996280918053,0.3429586504674351,0.3472233235535115,0.3477100933748333,0.347963763526723,0.348686435900327,0.3491379310344827,0.349495069678897,0.3494527088226715,0.3486360823269911,0.3502179814098873,0.350910587509003,0.351830284352547,0.3520746654672214,0.3521343873517786,0.3539541217136273,0.3551163674573543,0.3554104029585515,0.3557632236568097,0.3581924115390081,0.3605209477483131,0.3615422431350516,0.3616128010139417,0.3634206443369535,0.3657542224810716,0.3671069182389937,0.3682493932038835,0.3706502472245545,0.3661144401362942,0.3695816341942304,0.3673792557403009,0.3724324324324324,0.3756554307116105,0.0,2.7209858672952745,62.32446480942842,203.9955301470007,307.20865805435386,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95702,42084,395.9478380807089,6912,70.98075275333849,5401,55.93404526551169,2171,22.32973187603185,77.3960056150407,79.78146204323332,63.35197710932333,65.1136661478147,77.12746718435898,79.5120098488933,63.25358010595172,65.01729157177418,0.2685384306817298,269.452194340019,0.098397003371609,96.37457604051748,109.05994,76.33354921636851,113957.84832082925,79761.70740043941,265.37467,165.01820540399484,276780.7360347746,171917.56663777112,293.09098,140.14127795942574,303633.54997805686,144318.30343512935,3095.82528,1400.3055305429511,3207314.706066749,1435677.5549865195,1282.5895,559.5534340472717,1328391.8831372384,572884.0923358666,2136.84346,889.8001762006411,2200506.760569267,901499.324974602,0.37811,100000,0,495727,5179.902196401329,0,0.0,0,0.0,22340,232.90004388623015,0,0.0,27144,280.95546592547703,1927673,0,69048,0,0,4325,0,0,46,0.4806587114166893,0,0.0,0,0.0,0,0.0,0.06912,0.1828039459416572,0.3140914351851852,0.02171,0.3115971935617003,0.6884028064382997,25.06695035867378,4.563246271112721,0.3223477133864099,0.2151453434549157,0.2310683206813553,0.231438622477319,10.995401249058324,5.4426082396374245,22.999264785024792,12762.056129215733,60.71352869105684,13.703590397747046,19.489436696209115,13.820320836413805,13.700180760686878,0.546009998148491,0.7667814113597247,0.6886846639862149,0.5825320512820513,0.1056,0.7061933534743202,0.9164420485175202,0.8571428571428571,0.7360594795539034,0.1401515151515151,0.493990679421143,0.6965865992414665,0.6351249053747161,0.5403472931562819,0.0963488843813387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691127161481,0.004603435338971,0.0069020117334199,0.0092151384302768,0.0116269607145036,0.0137152282816763,0.0159058698777491,0.0179379064615258,0.0200678811670653,0.0222317754713504,0.0243387328275579,0.0266127293448463,0.0285908221404035,0.0307571871491404,0.0329856274697949,0.0351553616836534,0.0370922801238826,0.0390168460604299,0.0410166812263405,0.04302195912497,0.057769839777736,0.071672997833799,0.084712520714031,0.0976302121664528,0.1095792225314107,0.1245281023634537,0.138242345802126,0.1508303172237598,0.1621445510286923,0.1732289376307181,0.1865817931153332,0.1986867441206378,0.2105331797335188,0.2221189895832194,0.232701843890532,0.2437674356817074,0.2545393709569484,0.2645019942699848,0.2743680674363535,0.2827384355063682,0.2910065130029101,0.2986724888790295,0.3060665130840569,0.3127198755534283,0.3185787048265825,0.3242010255401301,0.3288944911763972,0.3338492179274125,0.3391690551811397,0.3435616726755967,0.3438674685855439,0.3438580602667545,0.3447756996203066,0.3438920557038747,0.3440287321351716,0.3437088727695651,0.3426630994031693,0.3436069125104623,0.344396993508712,0.3462623161502213,0.3472222222222222,0.3481858940174991,0.3486848988303237,0.349868403443815,0.3501286088607899,0.3499583072753804,0.3507494524872721,0.3535614239400711,0.3549192725737803,0.3561709428993256,0.3567130586560103,0.3592321266242447,0.3612469049584153,0.365197393637409,0.3655126498002663,0.3639431188238129,0.3647040642868181,0.3675056271741355,0.3702056698165648,0.3706429124709527,0.0,1.8650993611621052,58.54491506421069,204.1918253596754,310.1226990436488,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95824,42243,397.8961429287026,6869,70.42077141425948,5375,55.51845049256971,2182,22.384788779428952,77.38566316619061,79.70751341390302,63.36611244363343,65.08455579091189,77.12260064451263,79.44464160892379,63.27036921391959,64.99115833421264,0.2630625216779805,262.8718049792269,0.0957432297138396,93.39745669925036,110.17534,77.16877102743503,114976.76991150442,80531.77808005826,269.9001,168.21827583155266,281034.8555685424,174921.74802925432,293.23576,140.46355066725465,302519.95324762067,143728.80049887148,3103.21868,1399.737109067726,3208484.888963099,1430765.7675193334,1309.95744,569.5218556824192,1355193.0414092503,582489.3509793149,2147.3988,885.6813677207448,2206627.1497745863,896936.9125994557,0.37913,100000,0,500797,5226.216814159292,0,0.0,0,0.0,22741,236.7465353147437,0,0.0,27183,280.2533811988646,1919555,0,68867,0,0,4251,0,0,47,0.4696109534145934,0,0.0,0,0.0,0,0.0,0.06869,0.1811779600664679,0.3176590478963459,0.02182,0.3280774550484094,0.6719225449515907,25.26195132370539,4.509694535510242,0.3281860465116279,0.209860465116279,0.2228837209302325,0.2390697674418604,11.144466854274338,5.583298286951959,23.15457522436572,12755.1738056391,60.56495879206882,13.28484717233844,19.972361729793715,13.179717713105648,14.128032176831011,0.5376744186046511,0.7632978723404256,0.6921768707482994,0.5492487479131887,0.1167315175097276,0.7096530920060332,0.9147727272727272,0.8642533936651584,0.7444444444444445,0.1374045801526717,0.4813534205976784,0.6945876288659794,0.6346444780635401,0.4924568965517241,0.1114369501466275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661784813588,0.0043186034488002,0.0066070576772792,0.0088188080385264,0.0108425892021644,0.0130231137358721,0.014983334862245,0.0172976834370854,0.0193571465072308,0.02153134529974,0.0237141188165486,0.0259060444015642,0.0278828365878725,0.0301595470921255,0.0322241356197861,0.0342925609932447,0.0363905386668874,0.0383714421940753,0.0401216941655331,0.0421431618817702,0.0566815133150444,0.0708618617049077,0.0840364318579618,0.0966454093693201,0.1088909720978733,0.1244547710830649,0.1382265394108238,0.1514066169984377,0.1634279010238908,0.1749938416390879,0.1884033035099793,0.2019550658889609,0.2136445047489823,0.225118147190116,0.2349556355969428,0.2452546513813193,0.2549513222091029,0.2645694583272499,0.2731690188704891,0.2814064607576416,0.2891232284965176,0.296417318240168,0.3030553456743483,0.3094495248341402,0.3171352091181066,0.3233021753282645,0.3289742949837784,0.334754256425871,0.3392829467376143,0.3442169705746823,0.3441745352809835,0.3442127115498302,0.3445368689214486,0.3447767663632423,0.3448270737036101,0.3448904829784951,0.3442550154626913,0.3446806410214222,0.3445886851988407,0.3456982599501819,0.345541969534757,0.3468416669971053,0.3481589269897507,0.3493506785802705,0.3502314197785155,0.3509681153320004,0.3523461969483635,0.3550942798288702,0.3569630128727969,0.3595109240328723,0.3633647437370719,0.3634566053869175,0.3661677026512749,0.3687150837988827,0.3739559605163249,0.3770963104935314,0.3775683608836706,0.3763792398855741,0.3803442531926707,0.3819364714887103,0.0,2.273828611659317,58.2595010187113,203.79192672782213,307.8791018583548,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95768,42535,400.1858658424526,6957,71.29730181271405,5456,56.4071506139838,2241,23.04527608386935,77.37657405990127,79.72230891374838,63.3458979718325,65.07943214342778,77.09620038320347,79.44105018843798,63.24175532281571,64.9776068420401,0.2803736766978062,281.2587253103942,0.1041426490167864,101.82530138767731,110.7964,77.56388760420845,115692.50689165483,80991.44558120504,267.19611,166.96092947390434,278434.9573970429,173770.94764090911,302.47967,145.15066045666006,312171.2367387854,148753.45429475306,3156.31892,1451.3356334899288,3265348.383593685,1485052.9346811003,1285.5427,572.492005483492,1329922.1451841951,585425.9855491074,2201.17118,932.7461934800996,2265457.1255534207,945004.5510099296,0.38221,100000,0,503620,5258.750313257038,0,0.0,0,0.0,22510,234.4415671205413,0,0.0,28038,289.1362459276585,1912294,0,68646,0,0,4422,0,0,41,0.4281179517166485,0,0.0,0,0.0,0,0.0,0.06957,0.182020355302059,0.3221216041397154,0.02241,0.3394130554031815,0.6605869445968184,24.797397888101745,4.533789274771181,0.3310117302052786,0.2118768328445748,0.2256231671554252,0.2314882697947214,11.42836220348548,5.8393545129594,23.965880199368243,12884.10419062033,61.86116043418974,13.665037619058332,20.58206606933903,13.758159492786891,13.8558972530055,0.5542521994134897,0.7811418685121108,0.689922480620155,0.6011372867587328,0.1068883610451306,0.7200282087447109,0.91644908616188,0.8893805309734514,0.7540453074433657,0.1277372262773722,0.4960376423972263,0.7141009055627425,0.6233382570162481,0.5498915401301518,0.1011122345803842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0045920384393151,0.0069705148237585,0.0093766508188061,0.0119091204946708,0.0142870235537316,0.0164778578784757,0.0186221260260546,0.0207321685971028,0.0228066044978554,0.0249159560511643,0.027027027027027,0.0290316943036608,0.0311637487126673,0.0328687416822275,0.0351432085749428,0.0373388558115454,0.0392032781783287,0.0410342246434066,0.042907727556759,0.0576336993278503,0.0719290539833929,0.0852910651948297,0.0982848495039515,0.1104752268631232,0.1262698337191725,0.1395565828676852,0.152831132346525,0.164083777462111,0.1750839223088555,0.1885818926051597,0.2017227759200943,0.2135963528349309,0.2251879575823237,0.2352753339132541,0.2462582318898423,0.2565534495660818,0.2672603032725062,0.2761626917008162,0.2843692011637763,0.2925736902405999,0.3002035516249035,0.3066857541734202,0.3136681683120866,0.3202799411929091,0.3263560157790927,0.3313363017810686,0.3364518056208768,0.3418209577042011,0.3469043127218037,0.346860540191542,0.3474254593464627,0.3478450642749532,0.3483043742230188,0.3474946504992867,0.3463283069756038,0.3457948368488613,0.3470581469858534,0.348697943400746,0.3502152669846544,0.3510142749812171,0.3511699726808409,0.3525989709125275,0.3533397437330888,0.3544706052289469,0.3552583459589363,0.3557719769235163,0.3584780966767371,0.3600493218249075,0.3617539099904245,0.3644405738644176,0.3677091686714782,0.3706912908734425,0.3762807768771983,0.3776375282592313,0.3752235602718493,0.3769835156370359,0.3816189896530736,0.3832550428295109,0.3915221579961464,0.0,2.1127073873648388,62.36833022580728,208.43070691555772,302.30783732742697,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95740,42278,397.58721537497394,6990,71.65239189471485,5475,56.49676206392313,2179,22.35220388552329,77.3313489084019,79.69883078602408,63.31030609897547,65.06376572597374,77.05959552810816,79.42776549427953,63.21158074231806,64.96820531847489,0.2717533802937453,271.06529174454863,0.098725356657404,95.56040749885142,108.79264,76.2166444074069,113633.1940672655,79607.73304715575,266.01905,165.43954644335253,277176.8017547524,172123.24721201428,297.80325,143.00988768634508,306591.9887194485,146009.5362062323,3135.67852,1421.029292320171,3237266.847712555,1446732.8314468777,1348.79095,593.9336999953574,1388722.049300188,600399.9298876313,2143.59778,888.3494769338994,2200988.677668686,894252.7232575873,0.379,100000,0,494512,5165.145184875705,0,0.0,0,0.0,22340,232.6300396908293,0,0.0,27605,283.85209943597243,1922132,0,68944,0,0,4384,0,0,50,0.5222477543346564,0,0.0,0,0.0,0,0.0,0.0699,0.1844327176781002,0.3117310443490701,0.02179,0.3148374813001496,0.6851625186998505,25.304314907838982,4.462642719111518,0.3318721461187214,0.2142465753424657,0.2261187214611872,0.2277625570776255,11.320801217076738,5.82821163167269,23.13521442067987,12831.158912582305,61.73950175775882,13.72823046378244,20.41092061135335,14.005048353854525,13.595302328768495,0.5512328767123288,0.7604433077578857,0.6752889378095762,0.598546042003231,0.1267040898155573,0.7281976744186046,0.8944591029023746,0.8619909502262444,0.7637540453074434,0.1869918699186991,0.4918272749451086,0.6964735516372796,0.6152727272727273,0.5435952637244349,0.1118881118881118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002117549316609,0.0046543699362178,0.0070032986551636,0.0092968908758382,0.0114244440375185,0.0135653980507378,0.0155703520918518,0.0177256807947966,0.0198938313780441,0.022041501935801,0.0241015753199868,0.0261057173678532,0.0281665500349895,0.0303205194269813,0.0325963543279453,0.0347637266053148,0.0368828694499668,0.0390669585879862,0.0411724962320045,0.0432337287658962,0.0586865977013894,0.0727679879452513,0.0862304093321864,0.0994699981071361,0.1113969696650182,0.1267254053711009,0.1397614398505815,0.1520270990008308,0.1635601915184678,0.1753672486130932,0.1874245559579238,0.200454840805718,0.211848723029023,0.2225931804498932,0.2329025013211203,0.2437699538843561,0.2535510094693586,0.2637580341966929,0.2735258068909165,0.2819031903190319,0.2894304237091919,0.2974596816696532,0.3045086485909732,0.3107283559142884,0.3176330266296674,0.3247609057814524,0.3318468784447339,0.3374772319097173,0.3427044278097066,0.3471247968929576,0.3475839939599849,0.3473747969494232,0.3475742930011695,0.3476249674752089,0.3477221430268472,0.3474918846083175,0.3474230392001772,0.3488929374497349,0.3497682691156602,0.3505010986655233,0.3503901560624249,0.3507712413123973,0.3513933187846231,0.3529741485616914,0.3541099028283461,0.3551010801056568,0.3568348610754162,0.3600315955766193,0.3630922869891635,0.3636181388075859,0.362818039864058,0.3641022903208584,0.3668886774500475,0.3660495716034271,0.3650347026824235,0.3667921863967992,0.3754354081478116,0.3778527485612225,0.3851992409867172,0.3909090909090909,0.0,2.667515293405078,60.18424103579737,205.89615526460776,311.2333671515441,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95503,42608,402.7831586442311,6868,70.78311676073002,5331,55.359517502068,2182,22.596148812079203,77.22623088476638,79.71410928418614,63.24095407219974,65.07645476028965,76.95896051584435,79.44163566586674,63.14378411996119,64.97901824045091,0.267270368922027,272.4736183193954,0.097169952238552,97.43651983873748,108.41028,75.96142529587776,113515.05188318693,79538.26088801163,265.97338,166.08897383808815,278061.6211009078,173473.90536222755,294.84009,141.11090246128165,305623.7290975152,145359.38132724556,3076.43356,1392.4760515000787,3196310.691810728,1433059.790268451,1297.43134,566.6981022628689,1348495.9844193377,583354.3263173604,2148.49434,892.8711654048512,2225763.148801608,915217.686965507,0.3814,100000,0,492774,5159.775085599405,0,0.0,0,0.0,22386,233.94029506926483,0,0.0,27279,282.56703977885513,1916924,0,68828,0,0,4240,0,0,48,0.492131137241762,0,0.0,3,0.031412625781389,0,0.0,0.06868,0.1800734137388568,0.3177052999417589,0.02182,0.3116504854368932,0.6883495145631068,25.0543928092914,4.533540469173962,0.3215156631026074,0.2164697054961545,0.2286625398611892,0.2333520915400487,11.114190057070704,5.576429986395396,23.343145446448947,12889.464266371522,60.39176950013421,13.591281239787175,19.38038994798409,13.660984684139972,13.75911362822296,0.547364471956481,0.7686308492201039,0.6808634772462077,0.5963904840032814,0.110128617363344,0.7085843373493976,0.8982558139534884,0.8640552995391705,0.7614035087719299,0.1509433962264151,0.4938795903072695,0.7135802469135802,0.61875,0.5460385438972163,0.0990806945863125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874499670669,0.0044427764309696,0.0065587751538164,0.00888662938485,0.0108425639354943,0.0130459155073128,0.0153062786354962,0.0176976682402468,0.0197346210113865,0.0218438146759287,0.0239776646411561,0.0263212009047912,0.028399320393348,0.0304261726968934,0.032546365655835,0.034435632493322,0.0365137652745793,0.0386054633902956,0.040577988915281,0.0425907363321221,0.0577239091070849,0.0715806922019744,0.0847555653700957,0.0974306550881038,0.1093182010313636,0.1247456333729014,0.1377206038698702,0.1507350587833656,0.162912985274431,0.1742882629208894,0.1884627424734723,0.2014813690192166,0.2133894406349137,0.2248298238498723,0.2362623421038115,0.2470139884226081,0.2566532055082612,0.2674897119341564,0.2770788306222272,0.2855880361303354,0.2937866870838264,0.3014543748533896,0.3089894974188572,0.3156091873895746,0.3213497665459776,0.3271150586983683,0.3334590435963192,0.3391975861099036,0.3442087879221336,0.3492469300976275,0.3488809250118331,0.3492760224715999,0.3489147637350215,0.3494967050474328,0.349416098674104,0.3479859113770244,0.3468173138128581,0.3480306381854798,0.348586162440911,0.3501401063371174,0.3512683854686529,0.3522246288973233,0.3536893530997305,0.3542172466504811,0.3540917103325043,0.3548311076197957,0.357948365676341,0.3590950740939682,0.3596172181221088,0.3636617582505287,0.3664664618770345,0.3697299605080585,0.3687432935681373,0.36999238385377,0.3765046188298964,0.3826219512195122,0.3833104080696928,0.3795008183306055,0.3841682812067534,0.3792177914110429,0.0,1.8214418611309169,59.123776335891634,206.56029610735763,299.8080701853509,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95720,42507,400.55369828666943,6861,70.57041370664437,5360,55.51608859172587,2158,22.294191391558712,77.36399481233721,79.7502159381527,63.33329461681414,65.09798371919472,77.10169457545608,79.48417261241146,63.2371747601324,65.00236073630107,0.2623002368811313,266.04332574125067,0.0961198566817458,95.62298289364436,110.29018,77.19827677879707,115221.66736314252,80650.10110613985,269.31002,168.19221502183655,280867.9063936481,175228.74532160105,298.89901,143.49817164922223,308961.2306727956,147334.16544983545,3088.34296,1394.874941719783,3200932.135394901,1431742.8141660918,1277.14172,555.491562085203,1322146.3435018803,568228.501969497,2127.67354,881.7105593438557,2198785.5411617216,899323.1345083849,0.38083,100000,0,501319,5237.348516506478,0,0.0,0,0.0,22595,235.5516088591726,0,0.0,27640,285.63518595904725,1914243,0,68788,0,0,4334,0,0,57,0.5745925616381111,0,0.0,0,0.0,0,0.0,0.06861,0.1801591261192658,0.3145314094155371,0.02158,0.3176274944567627,0.6823725055432373,25.0206610617886,4.548808445052464,0.3207089552238806,0.2149253731343283,0.2313432835820895,0.2330223880597015,10.95596027262274,5.387566490208865,22.94407644420705,12790.818720911451,60.31240424958517,13.583836276382709,19.27544167054992,13.754129488212545,13.698996814439983,0.5410447761194029,0.7586805555555556,0.6951716114019779,0.5645161290322581,0.1048839071257005,0.7139753801593048,0.905,0.860730593607306,0.7212543554006968,0.15625,0.4810253832621262,0.6808510638297872,0.6385636221701796,0.5173137460650578,0.0916414904330312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0046751244840629,0.0070758547876228,0.0094924487265483,0.0116913246097804,0.0136214520039937,0.0159941246072871,0.018168634339638,0.0204760005318441,0.0224454479361861,0.0245708308550567,0.0266922737216157,0.0286158055524125,0.0309631018742722,0.0328699546941597,0.0347708309639264,0.0368766703267107,0.0387999916983168,0.040715562762463,0.0427467077846307,0.0573018923096202,0.0712551285271707,0.0846673520340725,0.0968369471492565,0.1093942683685192,0.1245374775346231,0.1379975823383454,0.1509387798521355,0.1620833956060379,0.1729293492240418,0.1862086776859504,0.1997836785463198,0.212388418340165,0.2235599002755544,0.2339852171234986,0.2444924166943429,0.2546957258856072,0.2645772184924035,0.2734472507772256,0.2816757883166548,0.2896121771516476,0.2977725811166326,0.3047116329163362,0.311074352427871,0.3180062199329413,0.3240213829970684,0.3299510803608292,0.335282601510259,0.3403212456675806,0.3453064881673958,0.3455533291195417,0.3460687437296428,0.3465299174158331,0.3467348294486324,0.3467234522466908,0.3456395837471921,0.3446092133731305,0.3463350785340314,0.3470677408915157,0.3475694568279895,0.3482415544022034,0.3491668149202396,0.3495233106338397,0.3505425035868005,0.3520937056545686,0.353607196088173,0.3546440115563946,0.3572350810895922,0.3603885818872971,0.3641204991654082,0.3658258969222364,0.3656621392190153,0.3654674436280719,0.3642500958956655,0.3678248453117563,0.3720595295247239,0.3673405909797823,0.3686169113086624,0.3722955886484967,0.3768686073957514,0.0,1.854335664723484,61.294784009872224,195.28858761351145,304.7154489776118,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95664,42510,400.12962033784913,6867,70.54900485030942,5306,54.82731225957518,2128,21.815939120254225,77.31725194233033,79.72493491175379,63.30264576078415,65.08466559950193,77.04842156884087,79.45899757374687,63.20448149810734,64.99067035122236,0.2688303734894646,265.9373380069212,0.0981642626768106,93.99524827956895,109.54218,76.74812062311221,114507.21274460612,80226.75261656655,266.5075,166.57935235418375,277974.50451580534,173517.0830763754,297.34711,142.76626610215973,307464.43803311593,146508.24913202308,3053.60048,1381.9821354681796,3158029.4363605957,1410763.5328962717,1271.0651,554.1073640975541,1312678.0293527346,563280.9028467215,2094.28896,867.3340290237795,2150503.345040977,873012.4787939994,0.38117,100000,0,497919,5204.873306573006,0,0.0,0,0.0,22447,233.9960695768523,0,0.0,27455,283.5235825388861,1917197,0,68782,0,0,4340,0,0,63,0.6585549422980431,0,0.0,2,0.0209065061046997,0,0.0,0.06867,0.1801558359786971,0.309887869520897,0.02128,0.3280511537392271,0.6719488462607729,25.32315502560464,4.531816932681102,0.3318884281944968,0.2103279306445533,0.2310591782887297,0.2267244628722201,11.17588313616353,5.577398472489547,22.60242571850002,12821.116762276491,59.85515129760832,13.11164635102103,19.909587512920243,13.613998629836049,13.219918803830986,0.5544666415378816,0.782258064516129,0.676320272572402,0.5807504078303426,0.1379883624272651,0.7179681576952237,0.9429347826086956,0.8364485981308412,0.6964285714285714,0.1934156378600823,0.5003762227238525,0.7032085561497327,0.6249062265566392,0.5465116279069767,0.1239583333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023807835310565,0.0045530598793287,0.0066776946730669,0.0089727565568189,0.0111003713689779,0.0132525211368035,0.015485687470671,0.0178571428571428,0.0202983364367416,0.0224266702183245,0.0244485482712629,0.0269017746128631,0.0292240545158833,0.0312393677894281,0.033411137734446,0.035561303673047,0.0373499471316318,0.039297137872305,0.0412942828902876,0.0433336808089231,0.0581727002037298,0.0719005581560952,0.084992021499958,0.0969897202260077,0.1091816388323293,0.1249140111547375,0.1385466085055348,0.1512427850312027,0.1631737006914683,0.1739256366796112,0.187180232871253,0.2003442079968826,0.2129681021254366,0.2244028984872698,0.2339872448698602,0.2448129100904415,0.2541512297460161,0.2643750562404391,0.2743369858662855,0.2833966843744275,0.2911537393557941,0.2988960097300837,0.3065331391976514,0.3135578997842244,0.3192260009237426,0.3251002405773857,0.330527476106372,0.3355521050755994,0.3405217075950679,0.3456531201772783,0.3460197833254828,0.3463104045765835,0.3462610115110748,0.3464910380287996,0.3472528126674207,0.345923537540304,0.3448182913680472,0.3458344979530096,0.3461591056716009,0.3467452451111706,0.3481082703382041,0.3495230178521949,0.3504131536342801,0.3505217098619993,0.3521726507306687,0.3537784068569631,0.3550067252382451,0.3575552961221721,0.3596695615335734,0.3597716749161743,0.3635321100917431,0.3657714530280334,0.3704597409194818,0.3751057773674898,0.3783450370089201,0.3779424065001792,0.3781643112284516,0.3720213640098603,0.3707742639040349,0.3731513083048919,0.0,2.5145571302668763,57.70525653243687,203.51332664684895,299.4429371851608,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95853,42605,401.1455040530813,6868,70.4933596235903,5395,55.67900848173766,2170,22.19022878783137,77.4717338221379,79.75699741462019,63.40399372213196,65.09043473416436,77.20353773087625,79.49332725421745,63.3062764584173,64.99779529389966,0.2681960912616574,263.6701604027394,0.0977172637146566,92.63944026470485,109.99912,77.06287278806437,114758.14006864678,80396.93362551444,270.14969,168.51474335159142,281245.8764983882,175213.77875662883,300.7193,143.7901148975979,310524.6679811795,147547.71363045092,3067.48192,1384.858445040987,3165894.6094540595,1410473.8349775036,1288.61851,558.8214586202389,1325618.812139422,564247.7007712218,2121.78062,873.2134277361707,2171047.812796678,873686.3378205613,0.38196,100000,0,499996,5216.2790940294,0,0.0,0,0.0,22680,235.9863541047229,0,0.0,27832,287.1167308274128,1918683,0,68836,0,0,4332,0,0,62,0.6468237822499036,0,0.0,0,0.0,0,0.0,0.06868,0.1798094041260865,0.3159580663948748,0.0217,0.3219681219681219,0.678031878031878,25.156761079362184,4.504712787922579,0.3338276181649676,0.2063021316033364,0.2407784986098239,0.2190917516218721,11.315048235626296,5.856866370551565,22.94366826928279,12827.85774319691,60.65710163618832,13.098220451043876,20.4221195546953,14.309958367768534,12.826803262680606,0.552548656163114,0.7484276729559748,0.7040533037201555,0.567359507313318,0.1209813874788494,0.7305433186490455,0.9164420485175202,0.8559837728194726,0.7194244604316546,0.15,0.4924373915199603,0.6644204851752021,0.6467889908256881,0.5259549461312438,0.1143451143451143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025002530620508,0.0045891541976071,0.0066620698047009,0.0088814453917986,0.0111373059100886,0.0133690111611912,0.0154836606633526,0.0178602392925264,0.0200561654327291,0.0222329034699283,0.0244679325672381,0.0265114609507204,0.0286509697567389,0.030671879823027,0.0327385554215501,0.0345931433292028,0.0365972236588948,0.0384200816698795,0.0404872172955909,0.042429855965365,0.0570195105164916,0.0711112040396014,0.0848093571174041,0.0970629958493143,0.1093590243593932,0.1250317178381121,0.1378520529351883,0.1501031892938448,0.1624408835178443,0.1729718143821669,0.1875228647055025,0.2008299024216293,0.2134474035632471,0.2248954774198478,0.2351978741160451,0.245695086098278,0.2556298028733712,0.265824632311665,0.2753669142960681,0.2836269678850309,0.2910503769903125,0.2985476815398075,0.3061472699792178,0.3129582012796747,0.3192658547236644,0.3252923076923077,0.3312343041343378,0.336695289873482,0.3420773646377411,0.3464703791001146,0.3471223263380073,0.3473834417277243,0.3472046546926385,0.3467881443893438,0.3472761780492868,0.3465804913824716,0.3460080848913592,0.3462187075331139,0.3474713407259782,0.3480063341814494,0.3487363541199342,0.3494538858877804,0.3507777870703353,0.3519105437014552,0.3533064786841222,0.3546768574845318,0.3549550061032731,0.3575588677354709,0.3597953572547245,0.3625694143594187,0.3663911845730027,0.3666613680919832,0.3709636730575176,0.3723852578346487,0.3747380453419699,0.3779640718562874,0.3806609547123623,0.3848637739656912,0.3810434307566239,0.3727134146341463,0.0,2.3987315691613498,59.78500004720184,203.91410505562504,301.61778317837855,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95734,42608,399.48189775837216,6794,69.69310798671319,5327,55.006580734117456,2149,22.07157331773456,77.34438518034166,79.69712119721608,63.33412346583962,65.0723126924055,77.07372375791066,79.42755597581748,63.23311893090921,64.97433699495636,0.2706614224310044,269.56522139859374,0.1010045349304107,97.9756974491437,108.76712,76.28290343048197,113613.88848267074,79682.14367986501,267.5042,167.77872419684914,278798.32661332446,174628.98677256683,299.4144,144.47903927638973,308480.5084922808,147544.75775038847,3070.15288,1401.2334214481384,3174321.3487371258,1431183.1105866784,1260.62738,554.2180763234527,1301282.26126559,563463.3413876508,2110.16268,891.4685249218481,2169920.2164330333,900669.7904911088,0.38198,100000,0,494396,5164.267658303215,0,0.0,0,0.0,22565,235.0471096997932,0,0.0,27611,284.17281216704623,1918466,0,68837,0,0,4337,0,0,62,0.6476278020348049,0,0.0,0,0.0,0,0.0,0.06794,0.1778627153254097,0.3163085075066235,0.02149,0.3188324445691832,0.6811675554308168,25.08692724246154,4.486888533061628,0.3302046179838558,0.213065515299418,0.2258306739252862,0.2308991927914398,11.20631149387754,5.721436261678951,23.015079840100963,12857.2039244475,60.28212511316303,13.492861566172696,19.897205896797903,13.36161547563182,13.530442174560608,0.5526562793317064,0.7779735682819383,0.7077885162023877,0.5785536159600998,0.0975609756097561,0.709585121602289,0.9097938144329896,0.8706140350877193,0.7359154929577465,0.1222222222222222,0.4968185288877577,0.7095046854082999,0.6508058326937836,0.529923830250272,0.090625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024512783112515,0.0049172183751888,0.0075284854757049,0.0100037577567208,0.0124956788742704,0.014506326794458,0.0165100589062595,0.0188376958008061,0.0211196370732903,0.0232988846822879,0.0255553733912615,0.0276916760751308,0.0298895720660511,0.0321417905067919,0.0343621696341991,0.0363033234126984,0.0384539742674078,0.0405898701621935,0.0426617613435596,0.0447888673624565,0.0595586085939783,0.073076037589736,0.086394243879927,0.099124015437519,0.1113302050930563,0.1263256954944857,0.1389298403775786,0.150886787032801,0.1625885142423821,0.1735983788478239,0.1871790178619494,0.2002704895861509,0.2124323031080758,0.2239070306435919,0.2346393294762082,0.2454436742919148,0.2552878015023495,0.2650198539916084,0.2741633472917305,0.2833925094490894,0.291505612776299,0.2996160868954539,0.3065520589140678,0.3125937481250375,0.3180492074297384,0.3238569030219237,0.3292786918138041,0.3352168367346939,0.3403485098156245,0.3449475048263825,0.3454547906048594,0.3454289965283518,0.3457105370822341,0.345939530777358,0.346258077965395,0.3461254839304369,0.3453672953776238,0.3457854721390251,0.3473561603946489,0.3490674113056242,0.3503106989317964,0.3504583160103739,0.3518456305379414,0.352682478066731,0.3538134569869101,0.3547291116744636,0.3569367876831671,0.3584649399873658,0.3617006275118099,0.3637597827823031,0.3646290204678362,0.3670635980135633,0.3680121281030888,0.3688238860260685,0.3705373919579106,0.3682092555331992,0.3706830391404451,0.3740190004130524,0.3717555121406642,0.3713163064833006,0.0,2.535145084026824,61.22721279149116,198.1387005413611,297.30707618383764,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95660,42400,399.74911143633705,7007,71.83775872883128,5508,56.89943550073176,2242,22.998118335772528,77.28108161739658,79.66885133511153,63.29287913429015,65.05580485855856,77.00805742194501,79.39658718730946,63.19314465729262,64.9596601809848,0.2730241954515691,272.264147802062,0.0997344769975328,96.14467757376131,108.51434,76.10077764746619,113437.29876646456,79553.17860073822,267.32492,166.23903090621647,278740.8634748066,173075.5425743344,297.16645,142.75049515607876,306385.85615722346,146021.69471526914,3184.4376,1440.1724605702466,3290853.8574116663,1468004.612813265,1356.97675,586.949283640712,1404400.480869747,599600.9281165154,2208.01784,910.7315565363684,2266988.7309220154,916404.6398417592,0.38185,100000,0,493247,5156.240853021117,0,0.0,0,0.0,22426,233.7026970520594,0,0.0,27603,284.29855739075896,1920348,0,68912,0,0,4303,0,0,51,0.5226845076311938,0,0.0,0,0.0,0,0.0,0.07007,0.1835013748854262,0.3199657485371771,0.02242,0.3246329526916802,0.6753670473083198,25.118469947650336,4.586707450448541,0.3286129266521423,0.2080610021786492,0.2231299927378358,0.2401960784313725,11.40980564257558,5.730570690452224,23.80076709592203,12898.755117113711,62.26203286558978,13.358958314490824,20.78925399175392,13.718809655796807,14.395010903548238,0.5490196078431373,0.7556719022687609,0.7121546961325966,0.5842148087876322,0.1141345427059712,0.7205363443895554,0.9217877094972068,0.8538011695906432,0.7589928057553957,0.1567164179104477,0.4896113419701784,0.6802030456852792,0.6561295296838859,0.5331230283911672,0.1033175355450237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070759256445,0.004328916554304,0.0065559130072967,0.0089402728815109,0.0112177857331733,0.0132682986436397,0.015529090278769,0.0178053661126311,0.0202300025555839,0.0223441386298733,0.0245870543724559,0.0266438046737032,0.0286918963389551,0.0307657434882954,0.032592653752077,0.0345544216632029,0.0365033820528491,0.038662736387603,0.040414443092095,0.0425696029686148,0.0574861560965416,0.0716671727907683,0.0852482075937142,0.0984353462335721,0.1109469796887364,0.1260064114093462,0.1400271773748354,0.1515880962017766,0.1634359396550802,0.1745246045977258,0.1884747298259237,0.2011551548514336,0.213442522977741,0.2247237765683687,0.2354230938739532,0.2464290467107306,0.2568794009165083,0.2664323611909026,0.2755991409188532,0.2837876581153453,0.2911317606710849,0.2991211624091868,0.3071841942981832,0.3137513962789915,0.3204084364769311,0.3263215070488606,0.3315739324490359,0.3370618845977246,0.3424506380382433,0.3482565989780519,0.3492698215419532,0.3502319416832339,0.3504274714075416,0.3501829162069566,0.350337494773311,0.3491877922717204,0.3487828905554849,0.3504741485940463,0.3509178644411244,0.3516363310320093,0.3528337068916806,0.3542504479394784,0.3547773929205035,0.3561764307942092,0.3571151515151515,0.3593078133193497,0.3621719405042209,0.3659286982999238,0.3683634179942774,0.3703171179806694,0.3711614263452195,0.3733497247314127,0.3766588354816179,0.377279316395819,0.3782969103240391,0.3772743279727668,0.3788972508063277,0.3798905331441313,0.3797814207650273,0.3767096522078937,0.0,2.555014255416997,62.3073747426226,202.83872204569224,314.0779596649811,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95728,42489,400.0083570115327,6976,71.60914257061675,5460,56.48295169647334,2187,22.469914758482368,77.3612597271838,79.72819530158941,63.34108899169471,65.08959696101634,77.08187473852969,79.44755730702022,63.23755710149101,64.98823664836812,0.2793849886541153,280.63799456919014,0.1035318902037047,101.3603126482252,110.33836,77.24131255301064,115262.36837706836,80688.31747556686,268.5538,168.21258580141566,280004.0322580645,175184.94672553035,301.58184,145.30391111812676,311800.7061674745,149240.91905086895,3130.65104,1430.5145582730029,3239822.8731405647,1463815.3500261165,1299.91026,576.6856350277477,1339262.6399799432,583773.4159729291,2147.78642,905.0986387906796,2208070.762995153,914933.6342661156,0.3806,100000,0,501538,5239.198562594017,0,0.0,0,0.0,22655,236.08557579809465,0,0.0,27922,288.4318067858934,1913299,0,68713,0,0,4380,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.06976,0.183289542827115,0.3135034403669725,0.02187,0.3217059544897125,0.6782940455102875,24.848751215349985,4.511746851254724,0.3362637362637363,0.2076923076923077,0.2285714285714285,0.2274725274725274,11.256047493330174,5.837460044562793,23.29456803926574,12780.02957657881,61.85904300588695,13.352465745544752,20.871504966204856,13.98674918688315,13.648323107254184,0.5481684981684982,0.7530864197530864,0.7037037037037037,0.5793269230769231,0.0998389694041868,0.7165963431786216,0.926027397260274,0.8941908713692946,0.6976744186046512,0.145985401459854,0.4888558692421991,0.6710013003901171,0.6358936484490398,0.5417106652587117,0.0867768595041322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0047347716765349,0.0068498711209433,0.0091739391045503,0.0112478389097935,0.0133093012362273,0.0154181877511063,0.0176341450962373,0.0199167748729641,0.0218058968058968,0.0241354208319235,0.0263855223696643,0.0284480098734958,0.0306576561727377,0.0325679789484546,0.0345918451740964,0.0366389130524833,0.0387489103814702,0.0408347891190416,0.0430202754797974,0.0570086139389193,0.0712267113250994,0.0845379209063253,0.0969821240799158,0.1087254405936419,0.124616783305495,0.1376988335100742,0.1500031922364808,0.1617138096051956,0.1722285947064309,0.1855153923183771,0.1987753689038902,0.2114378907311769,0.2227688136779045,0.2332347411129559,0.2446560026567775,0.2545142258060918,0.2645772676686489,0.2732159259721261,0.2812049185958645,0.2896349925980755,0.2969959088252484,0.3039656437072616,0.3102775082941085,0.3170391400354274,0.3232829171640597,0.3297372302922719,0.3353387092671262,0.3400132129486897,0.3447109796047765,0.3451351278527739,0.3458390083508743,0.3456569214512152,0.3461927906034832,0.3468965722447036,0.3466004079817175,0.34654500522764,0.3473940110711411,0.3488217099304476,0.3494751524472023,0.3499830998610433,0.3515165952040654,0.3525883838383838,0.352970230344394,0.354893328818151,0.3559250794651535,0.357941641512146,0.3598145678541944,0.3620836286321757,0.3641618497109826,0.3681265764732859,0.3696230834752981,0.371347428210792,0.3704127565423056,0.3704782486141125,0.3694826767916468,0.3723029839326702,0.3711843711843712,0.3677546426561621,0.3609443777511004,0.0,2.144913864343932,62.67235041050777,205.67261122464583,304.6545140407157,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95664,42066,397.7776384010704,6754,69.57685231644088,5305,55.00501756146512,2116,21.857752132463624,77.2430810454354,79.64781563202408,63.27207635196621,65.05016540380657,76.97936374508402,79.38109032437822,63.17543462434411,64.95422483971429,0.2637173003513879,266.72530764585645,0.0966417276220994,95.94056409228811,108.93938,76.348406703868,113877.09065061048,79808.9215419259,264.99327,165.55153031952844,276514.71818029776,172565.75129571048,292.13032,139.50933503094365,302351.636979428,143465.3458812687,3044.74768,1369.8874001547474,3158994.0625522663,1408220.229297069,1275.30338,550.6397459816286,1319664.3460444892,562156.8947947435,2081.0402,865.6442126374764,2150499.393711323,883417.0871459771,0.37716,100000,0,495179,5176.231393209567,0,0.0,0,0.0,22340,233.02391704298375,0,0.0,27051,279.7708646930925,1916825,0,68815,0,0,4328,0,0,53,0.5540224117745443,0,0.0,1,0.0104532530523498,0,0.0,0.06754,0.1790751935518082,0.3132958246964761,0.02116,0.3291995490417136,0.6708004509582863,25.10753132415012,4.515400722219382,0.3362865221489161,0.2163996229971724,0.2145146088595664,0.2327992459943449,10.940425392452337,5.422497173420665,22.576348959664948,12729.955097287557,59.93982885477541,13.545396407872255,20.15574745715508,12.648120053458651,13.59056493628942,0.5485391140433553,0.7587108013937283,0.6911434977578476,0.5720562390158173,0.1255060728744939,0.7068702290076336,0.926829268292683,0.8538283062645011,0.7182539682539683,0.1356589147286821,0.4966207759699624,0.6790757381258024,0.639320029563932,0.5304740406320542,0.1228249744114636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019154370034052,0.0042805266467855,0.0065277199679197,0.0088499171907863,0.0110768667419364,0.0133000661948164,0.0154167728778995,0.0176339650383924,0.0196846367801047,0.0217605013619513,0.0238537190675923,0.0259404171416248,0.0281162907886753,0.0299474605954465,0.0318638329497011,0.0334715486666184,0.0355000776920288,0.0373753204562674,0.0391812196415755,0.0411150261660029,0.0563009404388714,0.0701133292833651,0.083493433277692,0.0961182216234422,0.1084601904440174,0.1241637025745257,0.1374244468286257,0.1501487095845725,0.1626297207660212,0.1741446336905861,0.1882727370805912,0.201170668256463,0.2127555299012187,0.2237200897990472,0.2342392981528016,0.2450933620316643,0.2554426218509946,0.2650563026252014,0.2732295728691777,0.2812403243007694,0.2891879049175388,0.2965778131734283,0.3046002203556492,0.3114492457969832,0.3161264408388816,0.3220885419240081,0.3272829904666332,0.3327166951596029,0.3381136094982009,0.3424940428911834,0.3425713437187829,0.3422649419422456,0.3429419245442984,0.3431093971991069,0.3433038444898629,0.343302171105234,0.3426971653994209,0.3428279094329658,0.3443039277931259,0.3453041152928086,0.345936869115677,0.3464135609425731,0.348697521497218,0.3509182571119913,0.3528301886792452,0.3542340352814365,0.3549726145863361,0.3585666222306862,0.3606452756603439,0.3631750634287785,0.3640987699990752,0.3666290140390511,0.366233103800051,0.3714549938347719,0.3763862332695984,0.3814271984622777,0.3768639146130905,0.3783839636288489,0.3756628523583589,0.381789761625635,0.0,1.6459728279680907,58.453576370713016,202.39789873096203,303.0443503136185,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95818,42535,399.3821620154877,7041,72.2828696069632,5489,56.701246112421465,2238,22.970631822830786,77.44904619750217,79.77555745744543,63.38601454967061,65.10691278979242,77.1764550588405,79.50318963522737,63.28605658077622,65.00954297091853,0.2725911386616673,272.3678222180581,0.0999579688943939,97.36981887388652,110.07854,77.0868437015785,114882.48554551338,80450.90499603446,271.1578,169.01213911389164,282408.7019140454,175805.96051207956,299.40277,143.0813486235985,309271.32689056336,146830.14315874304,3112.96324,1407.7281322163644,3217346.3858565195,1437781.646421722,1347.9424,584.4639865160676,1390456.1982091048,593708.8384253944,2188.81956,907.2793589140722,2247995.867164833,914962.7642178,0.38189,100000,0,500357,5221.931161159699,0,0.0,0,0.0,22797,237.3144920578597,0,0.0,27853,287.4407731323968,1919513,0,68863,0,0,4426,0,0,44,0.4592039074077939,0,0.0,0,0.0,0,0.0,0.07041,0.1843724632747649,0.317852577758841,0.02238,0.3130399568034557,0.6869600431965442,25.275011284638857,4.429311815960679,0.3246492985971944,0.2229914374202951,0.2306431043905993,0.2217161595919111,11.13446805562604,5.7300828992078845,23.611826044935388,12882.037954625765,61.81653854822248,14.45180707737008,19.928703320315662,14.234996669723536,13.201031480813176,0.5647658954272181,0.7843137254901961,0.6952861952861953,0.5860979462875198,0.1306491372226787,0.7160493827160493,0.91644908616188,0.8426150121065376,0.7379518072289156,0.1686746987951807,0.5141050583657587,0.7241379310344828,0.6508400292184076,0.5321199143468951,0.1208677685950413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024913158401101,0.0050581330522133,0.0072245390804947,0.0096098170477748,0.0117860011999552,0.0140612749839634,0.0162515420613154,0.018452933791935,0.0208277976494634,0.0233805036273035,0.0254444842957421,0.0275759441707717,0.0297800164473684,0.0316904671203681,0.0336320788770742,0.0356729616926319,0.0377247182289564,0.0396607322459898,0.0418480462946609,0.0436914428482198,0.0583952265709755,0.0733216933097744,0.0868694914010836,0.1000052529285076,0.1124340157413943,0.1280685624914138,0.1407931140485705,0.1532269213182045,0.1650930815597162,0.1758457106753906,0.1888590170986127,0.2018756009810171,0.213491563701114,0.2243697478991596,0.2347793625174303,0.2455502244234638,0.2558732775617961,0.2661839003031324,0.2748281757758982,0.2830906722132065,0.2909166483852717,0.2981524492011064,0.3056755672025875,0.3118423569925387,0.318412663781923,0.3242877694303385,0.3290565755151454,0.3349321152138053,0.3399850175656127,0.3455677212191398,0.3456848156007414,0.34611477210324,0.3466391277468667,0.346816058141547,0.3474473317727932,0.3470873786407767,0.3464328518261528,0.347321063394683,0.3484299208577993,0.3502357441508762,0.3512912508876182,0.3534002009971033,0.3552859981177454,0.355929171883384,0.3576905511621758,0.3579062329354864,0.3586770738377393,0.3610316986585404,0.3629864412748723,0.3657199602780536,0.3654970760233918,0.3676290090186243,0.3693351080687076,0.3696367112810707,0.3715396283655669,0.3762340906387534,0.37442218798151,0.3741287412874128,0.3710883411797286,0.372985418265541,0.0,2.2177210594208936,60.601866996257634,209.02556107074776,308.21274891940334,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95815,42498,399.8538850910609,6800,69.88467358973021,5348,55.32536659186975,2212,22.793925794499817,77.3497797498425,79.68438843734259,63.33168066437421,65.06055687577795,77.08288672213146,79.41470576966651,63.23526516982424,64.96498682397117,0.2668930277110348,269.6826676760793,0.0964154945499728,95.57005180677436,110.1529,77.11858622678187,114964.14966341387,80486.96574313194,267.90555,167.25070627776878,279124.46902885765,174073.966372701,293.78528,140.79833470804482,303362.9494338047,144385.34078068944,3090.55828,1388.2432394567695,3199811.1777905338,1423142.5554002707,1278.57401,552.5580292141664,1323714.4810311538,565987.6315964786,2183.10276,892.2146526710642,2251581.5895214737,908806.1404626888,0.38122,100000,0,500695,5225.643166518812,0,0.0,0,0.0,22578,235.13019882064395,0,0.0,27139,280.01878620257787,1915394,0,68715,0,0,4359,0,0,51,0.5218389604967907,0,0.0,1,0.0104367792099358,0,0.0,0.068,0.1783746917790252,0.3252941176470588,0.02212,0.3200670297444491,0.6799329702555509,24.989489901786754,4.532282554073,0.3290949887808526,0.206619296933433,0.2213911742707554,0.2428945400149588,11.198938520667316,5.605592773315811,23.227426512182287,12836.140159611266,60.05499650079731,12.923111558847662,19.89588706696395,13.101818815586684,14.134179059399012,0.5416978309648467,0.7592760180995475,0.6994318181818182,0.5793918918918919,0.1085450346420323,0.7219696969696969,0.9262295081967212,0.8741721854304636,0.71875,0.1387755102040816,0.4826216484607746,0.6765899864682002,0.6388676358071921,0.540948275862069,0.1015180265654649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387908503353,0.0043598608900199,0.0065053687052185,0.0085848682806896,0.0106194690265486,0.0126571966804134,0.0149877650897226,0.0171187080836642,0.0195222666271451,0.021586710201742,0.0236081639347623,0.025617594513009,0.0277623542476402,0.0299033085168823,0.0321735452791846,0.0342636315729652,0.0362089311222905,0.0387403926937797,0.0406553902418751,0.0428318584070796,0.0573783318554066,0.0715316408047178,0.084748249696055,0.0970765641747756,0.1097363040408085,0.1252299494639798,0.137696607167478,0.1507108802996765,0.1618391541172701,0.1732340891053004,0.1869578803323025,0.1996233725473219,0.2118631162163338,0.2229254801648466,0.2343835947985654,0.2454511203209148,0.2560491071428571,0.2666119308979665,0.2762807057355194,0.2844449533405851,0.2930663520266519,0.3010745144808072,0.3081627824441026,0.3140304870017123,0.3201082931685464,0.3262074230968155,0.3311995198919757,0.3366698038816676,0.3418634151392772,0.3468919097268048,0.3470470955921974,0.3475601355633317,0.3479248050318013,0.3477454503303582,0.3482098995161891,0.3473577610016571,0.3472197985246292,0.3480728421260425,0.3488866050017129,0.3495691739963814,0.3514361982103917,0.3519944433419329,0.3529003637281079,0.3540507805490759,0.3552869653325613,0.3561091775050375,0.3583459635677314,0.3605384275896854,0.3625228134213112,0.3647674142166574,0.3685050864467862,0.3670056978539858,0.3668039277795375,0.3696993060909792,0.3682063928673053,0.3678941723274937,0.3645076518781883,0.3606424069932913,0.3638613861386138,0.365482233502538,0.0,1.9552859152315616,58.37107583079357,200.57992373261,306.14151816226587,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95806,42716,401.74936851554185,7053,72.42761413690165,5526,57.15717178464814,2173,22.35768114731854,77.41775944651599,79.74663822612587,63.37436231324406,65.0953896553553,77.14743348900963,79.473279888172,63.27602082983055,64.9980317290129,0.2703259575063583,273.35833795386577,0.0983414834135132,97.35792634241136,109.32196,76.54574803906182,114107.63417740016,79896.61194399287,268.41204,167.6543099067298,279654.4475293823,174485.95067817232,301.19044,143.95013008853968,310915.8612195478,147597.6885589378,3168.94,1436.3667393008604,3278031.689038265,1469613.363777697,1321.03318,578.3219458178144,1365081.6754691773,589865.0221857565,2141.5672,885.8902588929785,2204447.007494312,899572.0181580872,0.38359,100000,0,496918,5186.71064442728,0,0.0,0,0.0,22578,235.13141139385843,0,0.0,27971,288.4996764294512,1922034,0,69008,0,0,4360,0,0,57,0.5845145397991776,0,0.0,0,0.0,0,0.0,0.07053,0.1838681926014755,0.3080958457394017,0.02173,0.3201943844492441,0.6798056155507559,24.852290438650343,4.520613177126188,0.3177705392689106,0.2245747376040535,0.2274701411509229,0.2301845819761129,11.295988464630742,5.811403575120933,22.995796365907253,12916.568922464878,62.349322451847456,14.710979571182545,19.94597541236776,13.903048828907028,13.789318639390132,0.5595367354325009,0.7945205479452054,0.7038724373576309,0.5727923627684964,0.1179245283018868,0.725531914893617,0.9249394673123488,0.8552631578947368,0.717687074829932,0.1619433198380566,0.5026724975704567,0.7294685990338164,0.6507692307692308,0.5285565939771547,0.1073170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024706609017912,0.004632398406536,0.0069202747815851,0.0091608945583067,0.0112462376962498,0.0133352335192801,0.0155335847518091,0.0177390381317873,0.020135325742554,0.0225672411675604,0.0249589995899959,0.0269970641975815,0.0291520615112609,0.0314198649316422,0.0334388501077508,0.0355718977876014,0.0376085359164622,0.0395828149622625,0.0414398504051527,0.0432374467730684,0.0575837567688824,0.0712650407184001,0.0847903563941299,0.0977216147228437,0.1106067467798502,0.1260868187244472,0.1400908869421522,0.152558950479471,0.1643318218191517,0.1758505441768789,0.1892031401225938,0.201935957823776,0.21357220412595,0.2244860078395405,0.2357290384953418,0.2465541273037014,0.2574791564492398,0.2673209513328991,0.2762663102573396,0.2846817173311375,0.2930438901533094,0.3003549660213446,0.3076114431504099,0.3139946855624446,0.3201956097028237,0.3265240786573578,0.3321834770653668,0.3378615361154882,0.3431195033626487,0.3486589028824366,0.3500557863182374,0.3498136509289948,0.3491777427348502,0.3496504506586549,0.3503454423891241,0.3499072981628181,0.349587705553709,0.3498276710979813,0.3513135448652337,0.3523388161415777,0.3530018181477385,0.3536188428382616,0.3543288955873733,0.3552420075013395,0.3579789027503492,0.3584403382398998,0.3591521168549583,0.3611041088984119,0.3626616985376827,0.3646665871406417,0.3678439256179467,0.370230026151465,0.3700373583233078,0.3683648566198901,0.366685616827743,0.369943584203577,0.3723321389624552,0.3756127450980392,0.3714285714285714,0.3703131039814457,0.0,2.0266877558455927,62.37206520297643,205.75238821194364,313.45929888083265,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95713,42540,401.9203243028638,6965,71.46364652659514,5389,55.63507569504665,2224,22.81821696112336,77.3893283971574,79.75038796026773,63.35181630130408,65.0936103650474,77.11426132781904,79.47639023010548,63.25060146538616,64.995793702119,0.2750670693383625,273.99773016225026,0.101214835917915,97.81666292839476,108.14056,75.73362310259152,112984.19232497152,79125.74373657866,264.9581,165.49732171261624,276142.185492044,172226.7369514714,293.8695,141.01284295461275,302736.2949651563,144042.19733152806,3122.65028,1408.4555072804164,3224990.8789819563,1434190.938744749,1324.77229,577.2210196847088,1365406.1726202292,584498.216228351,2193.70014,914.8298206408244,2252293.627824852,922011.5721297855,0.38251,100000,0,491548,5135.6451056805245,0,0.0,0,0.0,22240,231.6404250206346,0,0.0,27281,280.7560101553603,1927241,0,69099,0,0,4298,0,0,39,0.40746816002006,0,0.0,0,0.0,0,0.0,0.06965,0.1820867428302528,0.319310839913855,0.02224,0.3184556407447974,0.6815443592552026,25.23171280967614,4.516883662855146,0.3267767674893301,0.2119131564297643,0.2189645574318055,0.2423455186491,10.862097033544462,5.393210878270219,23.666873499324065,12873.890693303452,60.48667310971905,13.472436715312162,19.778566540667583,12.906984577424897,14.328685276314408,0.5312673965485247,0.7600700525394045,0.6871095968199886,0.5440677966101695,0.1094946401225114,0.7012987012987013,0.8940217391304348,0.8734793187347932,0.7364341085271318,0.1470588235294117,0.4767156862745098,0.6963824289405685,0.6303703703703704,0.4902386117136659,0.0996131528046421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091647508026,0.0047736325215117,0.0066847225180812,0.0088949361818791,0.0111321215078687,0.0132931620625776,0.0155816892222403,0.0178057590661415,0.0196184617899802,0.021713104605593,0.0236909519417973,0.0258341199162802,0.0279692974794751,0.0298298524976582,0.0317630558534774,0.033905486261096,0.0359864170945834,0.0378184383038752,0.0396332907168917,0.0416488702301209,0.0567233691509246,0.0716909264045708,0.085074470316761,0.0979654066558014,0.1100440640087706,0.1254454890597404,0.1386051445239989,0.1509709151300941,0.1632890702618394,0.1742799545347316,0.1881393896319269,0.2014734040826923,0.2132582388309612,0.2241202073445462,0.2349581866197183,0.2466651894526922,0.2571721997722757,0.267022126233141,0.2762569515378504,0.2846372427700628,0.2926344036272786,0.2998842416659846,0.3066015421732343,0.3133091414268434,0.3201840654670843,0.3262071598339963,0.3318274537286163,0.3371323903531087,0.3421100347096306,0.347056727762163,0.347633653509834,0.348202250281973,0.3487694710625185,0.3487302597327471,0.3496009867590019,0.34951084709953,0.3492256829650252,0.3498942397560136,0.3510173426191451,0.352380442349917,0.3531108364235681,0.3545039435450394,0.3566663869776808,0.3569701312077381,0.3592752331156784,0.3595812827122881,0.3602222538823194,0.363067735344963,0.364963503649635,0.3679245283018867,0.3701508866298947,0.3713280375326545,0.3710994366732071,0.3709775812109196,0.3732614249219415,0.3750297548202809,0.3748657357679914,0.3773584905660377,0.3816901408450704,0.3855516293678838,0.0,2.551266902870296,57.236854473219104,205.94234957271223,306.9644165534968,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95684,42634,401.2060532586431,6873,70.76418209941056,5377,55.735546172818864,2180,22.45934534509427,77.35982293729873,79.73737256333476,63.33991942654043,65.09076062885813,77.09173740069424,79.46517568500573,63.24116730437105,64.99234694369956,0.2680855366044881,272.1968783290265,0.0987521221693867,98.41368515857596,109.71686,76.84440256711495,114665.83754859748,80310.60842681635,269.14689,168.2328257325741,280828.0276744283,175362.0518922433,298.92839,143.0193934939005,309475.77442414616,147223.26892894742,3096.01492,1409.8058093010925,3209969.106642699,1447723.8088929092,1274.13037,561.3891771289271,1319873.228543957,574998.610809749,2137.37264,899.8594636647712,2203516.847121776,915259.8094444622,0.38182,100000,0,498713,5212.083524936249,0,0.0,0,0.0,22561,235.3057982525814,0,0.0,27639,285.9516742611095,1916583,0,68772,0,0,4328,0,0,64,0.668868358346223,0,0.0,1,0.0104510680991597,0,0.0,0.06873,0.1800062856843539,0.3171831805616179,0.0218,0.3261019759568882,0.6738980240431118,25.1226119773601,4.497056282237341,0.3358750232471638,0.215547703180212,0.217779430909429,0.230797842663195,11.03470708263291,5.585571330451998,23.31792928610341,12889.83116036131,60.70694584357887,13.75449289793646,20.18863339805168,13.14621441068127,13.617605136909466,0.5397061558489864,0.7627264883520276,0.6733111849390919,0.5636208368915457,0.1144238517324738,0.7018544935805991,0.911917098445596,0.8470066518847007,0.7003367003367004,0.1567164179104477,0.4825157232704402,0.6882276843467011,0.6154981549815498,0.517162471395881,0.1027749229188078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582735852878,0.0046117513505843,0.0069903109623091,0.0092624565822347,0.011611355132585,0.0139345513766603,0.0160690449260742,0.018375300983553,0.0205826472450918,0.0227003028071036,0.0249451922879914,0.0270838676583739,0.029487943758094,0.0314861720310537,0.0334914904589994,0.0355529832466901,0.0373924656045218,0.0395050716671161,0.0414804033683335,0.0436658468464713,0.0589630279666948,0.0726655916905744,0.0858033502665939,0.0983911867759551,0.1105415269075796,0.1258332804266395,0.1386506453804347,0.1518911837073804,0.1641384176261184,0.1754193901535885,0.1891056034482758,0.2018624796968056,0.21435955471887,0.2257877398242292,0.2366038982490915,0.2472333307485238,0.2575979106443296,0.2675353292336058,0.2761772978858542,0.2845955692941783,0.2916782343142698,0.2990535022755724,0.3061693037787429,0.3133146444316657,0.3197213693676201,0.3243972120286678,0.3307283526101907,0.3365844354018311,0.342176782709978,0.3464523281596452,0.3464902836841255,0.3466011533644383,0.3468204831680934,0.3473226160874342,0.3476284555623227,0.34772549680543,0.3472004310686382,0.3481857955853811,0.3494696437445379,0.3514370131614289,0.3528903579611614,0.3532768048181314,0.3538568187547265,0.3549956286847945,0.356499325496242,0.3561497326203208,0.3567318101532676,0.3583461913908745,0.3605215068878268,0.3619191838686538,0.3639690745230797,0.3683618843683083,0.3711261318709348,0.3707215541165587,0.3698421753185016,0.3697408077154913,0.3735107535200371,0.3726328649969456,0.3745592622728506,0.3686440677966102,0.0,1.730986801950587,62.258738918350616,197.3450057513236,303.746534158856,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95861,42481,400.5174158416874,6968,71.47849490407987,5426,56.10206444748125,2224,22.80385140985385,77.34109898624328,79.63130975302927,63.34986309044478,65.04390794960773,77.05911988810276,79.35114821462524,63.24501114240061,64.94272323738656,0.2819790981405248,280.16153840403035,0.1048519480441712,101.1847122211691,109.79452,76.96996119803774,114535.12898884845,80293.3009232511,267.74744,166.7579744433951,278807.24173542944,173457.34390773633,290.85928,139.45479368619857,300900.4913364142,143492.4086550617,3144.43904,1423.334118727744,3252150.801681601,1456733.5608096546,1320.33175,581.4043279840488,1362147.4426513389,591315.2773119922,2189.92172,923.3446936170512,2247976.132107948,930649.6946205958,0.38191,100000,0,499066,5206.142226765838,0,0.0,0,0.0,22557,234.77743816567735,0,0.0,27010,279.331532114207,1917618,0,68822,0,0,4441,0,0,38,0.3859755270652298,0,0.0,0,0.0,0,0.0,0.06968,0.1824513628865439,0.3191733639494833,0.02224,0.3223388305847076,0.6776611694152923,25.007413618685323,4.507256822304364,0.3380022115739034,0.1988573534832289,0.2231846664209362,0.2399557685219314,10.780934436725056,5.377294507542066,23.96878317625933,12827.880316225956,61.42588770096394,12.732805960069644,20.74167606399613,13.688961670027425,14.26244400687076,0.5407298193881312,0.7534754402224282,0.6842966194111232,0.5928984310487201,0.1136712749615975,0.6909620991253644,0.913793103448276,0.8387799564270153,0.7073170731707317,0.1510791366906475,0.4898865318204243,0.6771545827633378,0.6327272727272727,0.5573593073593074,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682395828059,0.0043165030245919,0.0067654606497682,0.0089954718053891,0.0108755310714939,0.0131787836847675,0.0150778854284462,0.0170976791634787,0.0192838028312871,0.0212465603486195,0.023344191096634,0.0254046070849828,0.0274239934264585,0.0294880237056547,0.0317371995012725,0.0337193460490463,0.0359118592892078,0.0379323206995876,0.0399294019933554,0.0418040888518961,0.0566759823141736,0.0706193432411529,0.0841556156118408,0.0976642090448883,0.109519797809604,0.1249366232888288,0.1382832199690632,0.1507331440662647,0.1630096051227321,0.1742984543486183,0.1884814499897751,0.2012286128355432,0.2139354866765962,0.2247840822127473,0.2349335944806945,0.2461939058171745,0.257318230009486,0.2669292224597727,0.2761376147830331,0.2847635084825366,0.2925827354778986,0.3004152775340703,0.3074483444178836,0.3136206731230223,0.3196466328043357,0.3250925240562546,0.3306277869632747,0.3356853554780039,0.3400761973875181,0.3455035757247287,0.3456994902500202,0.3457366905086754,0.3456183456183456,0.345806320613787,0.3459300590797876,0.345519647165491,0.3461489557837185,0.3472197005958374,0.348120223094402,0.3492120666366501,0.3501616654376311,0.3523655785403962,0.3531475922715935,0.3546688958676939,0.3552468309773485,0.3571616918046619,0.3580960598216853,0.3610872947826363,0.3644909354348517,0.3659404357385569,0.3688340292754554,0.3702355460385439,0.3712669970771381,0.3723461332106997,0.3732951835956127,0.3759163562071866,0.3751356378855991,0.3815441026685679,0.3765945646145313,0.3879142300194931,0.0,1.978810641390716,60.72496741835885,204.23462466713733,309.9744763655228,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95652,42739,403.4730063145569,6923,71.30012963659934,5457,56.58010287291432,2208,22.77004140007527,77.31769350596971,79.74107192967467,63.289715480586615,65.08200906555263,77.04413546949837,79.4634870229723,63.18997056566505,64.98245590007505,0.2735580364713428,277.5849067023728,0.0997449149215654,99.5531654775732,109.22296,76.53355006983509,114187.8476142684,80012.49327754264,270.50273,168.862268817466,282345.50244636805,176084.82709976373,304.46379,145.65741875459003,315141.57571195584,149793.60191326344,3116.25464,1409.0930113684035,3232777.945050809,1448014.81554845,1332.46186,574.3340476428941,1383710.0949274455,591120.4863911833,2169.74762,896.4330268508878,2240022.268222305,914222.8933382996,0.38206,100000,0,496468,5190.3567097394725,0,0.0,0,0.0,22741,237.25588591979255,0,0.0,28178,291.5568937398068,1914068,0,68683,0,0,4341,0,0,55,0.5540919165307573,0,0.0,0,0.0,0,0.0,0.06923,0.1812019054598754,0.3189368770764119,0.02208,0.3181693238042881,0.6818306761957119,25.032594853091734,4.474872341478256,0.3197727689206524,0.2213670514934946,0.2296133406633681,0.2292468389224848,11.106040781590904,5.5845211021554535,23.35261841310604,12860.846670487086,61.5412342538281,14.29510040327939,19.680813396447835,13.960882142254016,13.604438311846868,0.5552501374381529,0.7872516556291391,0.6808022922636103,0.5905826017557861,0.1207034372501998,0.7313540912382331,0.9414758269720102,0.849015317286652,0.7448979591836735,0.1392405063291139,0.4955839057899902,0.7128834355828221,0.6211180124223602,0.543274244004171,0.1163708086785009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021679228462598,0.0044923538717397,0.0067208121827411,0.0088618786776288,0.0111611912053476,0.0134983700081499,0.0156999163487238,0.0177361844726652,0.0198745305128283,0.0220996740400582,0.0240209413334702,0.0260035370568396,0.0283081042117186,0.0305856139301224,0.0327110045770609,0.0347068440985947,0.0368066355624676,0.0387535705011685,0.0406893250359023,0.0425782634992804,0.0570058103080717,0.0708522810620507,0.0841210822619947,0.0969773565034228,0.1091786521362647,0.1247749560502404,0.1383744036044077,0.1509773827034171,0.1631135879854953,0.1742581275709115,0.1880770558288031,0.2019330790568654,0.2144708752668496,0.2260406741794526,0.2361155503631614,0.2469689070316919,0.2567504135187089,0.2662432003243572,0.2754794971667367,0.2838886405574849,0.2922433662655347,0.2992648608152085,0.3067025272212414,0.3132417351652967,0.3190728235079394,0.3247856922602528,0.3313382001227132,0.3369869640492922,0.3427745514881261,0.3478444799915392,0.3482032050936168,0.3485347404968242,0.3490196078431372,0.3494496912196462,0.3494364647455913,0.3489603314662779,0.3478033140752968,0.3482477480439213,0.3491553245332056,0.3492927094668117,0.350690416495154,0.3522063467003473,0.353398827774649,0.3539106581324293,0.3539292141571685,0.3551942468537481,0.3561686740126989,0.3592887606623181,0.3605205921560373,0.3634520591508984,0.3643691321273185,0.3644859813084112,0.3668631552259618,0.3674873833919559,0.3723896815647737,0.3734094422642407,0.3845325953259532,0.3805668016194332,0.3841901603095633,0.3785659213569776,0.0,1.874605537709256,61.327280155150085,205.5165675898085,307.6273222213701,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95721,42689,401.1032061929984,6996,71.78153174329562,5454,56.49752927779693,2249,23.1297207509324,77.34880342590687,79.70732740542903,63.338894218876014,65.07751691651883,77.06501321935163,79.42191258163884,63.23326515747968,64.97360697629678,0.2837902065552384,285.414823790191,0.1056290613963355,103.90994022205292,109.96414,77.00710064331253,114879.8487270296,80449.53630166058,269.29957,168.17547919169814,280839.33515111625,175195.0169749028,298.69406,143.137933071741,309224.6006623416,147280.37463388653,3131.3448,1429.1518167629729,3245928.187127172,1467866.2844564696,1317.49019,583.4550529047165,1363358.3748602709,596539.3495399263,2207.09386,934.0730534675362,2273637.5299046184,948584.5547775317,0.38279,100000,0,499837,5221.811305774072,0,0.0,0,0.0,22513,234.68204469238725,0,0.0,27728,286.96942154804066,1915007,0,68776,0,0,4395,0,0,61,0.6268217005672736,0,0.0,0,0.0,0,0.0,0.06996,0.1827633950730165,0.3214694110920526,0.02249,0.3280228758169934,0.6719771241830066,25.0779145161762,4.517630239728951,0.3371837183718372,0.2011367803447011,0.2317565089842317,0.2299229922992299,11.299882069026497,5.781548675613099,24.20002527857886,12883.836387946732,61.96154471752929,12.967413141884672,21.06470242352641,14.143494959083185,13.785934193035018,0.5586725339200587,0.7675478577939836,0.711799891245242,0.5862341772151899,0.1236044657097288,0.7064285714285714,0.9054441260744984,0.8485477178423236,0.7254901960784313,0.1596958174904943,0.5076467686235816,0.7032085561497327,0.6632277081798084,0.5417536534446764,0.1140262361251261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0044905323764343,0.0068895540561108,0.0089700220441085,0.0111741499918659,0.0133557286099658,0.0157990765184951,0.0181790343982851,0.0205916917888712,0.0227112225576991,0.024936965746264,0.0270641966439164,0.0291677376240168,0.0316061482709274,0.0337621076302569,0.0357925191155197,0.0377714043134778,0.0399153342533124,0.0418286926324107,0.0440123784814479,0.0594937237619833,0.07349924648359,0.0866162384464471,0.0995560324874805,0.1116162308690286,0.126700374452601,0.139006791171477,0.1522310829083398,0.1637515626168623,0.1744214738603813,0.1879417341837614,0.2013830270761638,0.2138054830287206,0.2243190022973416,0.2343638224579862,0.2452729811805909,0.2559054238272957,0.2654984853433034,0.2744743926125328,0.2832515703085599,0.2920112107103977,0.2998607258640263,0.3072632314451853,0.3135879729535318,0.3199426460581316,0.3256906179505195,0.3312983974880218,0.337103237707525,0.3423375614807145,0.3474749607421385,0.3482245131729667,0.3483771422273654,0.3478469439584626,0.3481742101757739,0.34854036341972,0.3472350088995274,0.3469837844699013,0.3472861842105263,0.3483540574795327,0.3488509555965537,0.3499662212880949,0.352274977230428,0.3532945451490264,0.3542948228638139,0.3552819026922612,0.3544452877594284,0.3553688195480096,0.3574637727013858,0.3598871053095784,0.3630919108839734,0.3651886532635637,0.3685683530678149,0.3665983868902829,0.3714219402754139,0.3749761222540592,0.3730225818137906,0.3786787726988103,0.3791449426485923,0.3795537983620446,0.3817607579944729,0.0,1.8558237238056456,62.177446686091805,211.01026267150172,302.18867804506283,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95638,42488,400.0920136347477,6994,71.80200338777473,5512,57.06936573328593,2305,23.693510947531315,77.26744378178137,79.6801964186722,63.28338998351626,65.06838859702748,76.9858925077802,79.40103215142578,63.1788459615443,64.96759945998093,0.2815512740011598,279.16426724641497,0.1045440219719608,100.78913704654724,109.46826,76.65851594883713,114460.1309103076,80154.09277992674,269.10704,168.78020116734578,280786.39243815216,175886.75343647233,300.41212,144.18101117088352,310616.7109308016,148061.1112405671,3182.74024,1452.1668197852632,3294397.7916727657,1485224.8675197114,1336.22522,587.0757259795588,1383706.936573329,600400.9498362168,2265.11404,947.5839876340382,2329693.092703737,956889.0327575848,0.38095,100000,0,497583,5202.733223195801,0,0.0,0,0.0,22623,235.93132436897463,0,0.0,27987,289.14239109977206,1912821,0,68684,0,0,4310,0,0,42,0.439155984023087,0,0.0,1,0.0104560948576925,0,0.0,0.06994,0.1835936474602966,0.3295682013154132,0.02305,0.3228797382056176,0.6771202617943823,24.68292859696416,4.5318221027517405,0.3260159651669085,0.2151669085631349,0.2240566037735849,0.2347605224963715,11.148858514106772,5.677700297606814,24.575276064230167,12821.674854282364,62.68769427075231,13.969704416897418,20.3736248028467,13.945888537583942,14.398476513424251,0.5538824383164006,0.7765598650927488,0.6978297161936561,0.5902834008097166,0.1151468315301391,0.7100633356790992,0.9352331606217616,0.8747346072186837,0.7096774193548387,0.1333333333333333,0.4996333414813004,0.7,0.6349924585218703,0.555439330543933,0.110009910802775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0048367471101196,0.0072084145549057,0.0095317453865539,0.0119126339026846,0.0140648551757852,0.0162734261883883,0.0185606795373102,0.0204094153254667,0.0227547363031234,0.0247989826058418,0.0269243017247578,0.0289491281312689,0.031139230071717,0.0333508809958814,0.0355743484239147,0.0375652498135719,0.0394938968695507,0.041336842214756,0.0434542364752859,0.058034781154634,0.0719762034437973,0.0851466016970511,0.0980214596341964,0.1106712273811786,0.1262032085561497,0.1388499447701588,0.1512277261488618,0.1629762745223884,0.1737444687889333,0.1872903566767691,0.2002253374645201,0.2121578231292517,0.2233263655565648,0.2337921162739484,0.2445874975070357,0.2546889653016567,0.2647072067001373,0.2741523257795195,0.2823494335122242,0.2909571140613053,0.2983589671559332,0.3064802748489516,0.3125285120891258,0.3184423486461819,0.3252152005038841,0.3300162927685173,0.3357407619702701,0.3408645802259374,0.3452363626741463,0.3452109194548377,0.3462106265263042,0.3464820570782707,0.3462915971869789,0.3464924059320264,0.346065170611743,0.345764221306913,0.3461012762453684,0.3468072340790263,0.3471052159885284,0.3475902593366857,0.348915921715412,0.3506140017723762,0.3513288663039079,0.3522289754703731,0.3532890068592152,0.3542825999655786,0.3564284357789454,0.3585339943342776,0.3590237636480411,0.3607765011119347,0.3620848458579401,0.3678286596346797,0.3688378231503765,0.3688336520076481,0.3720508166969147,0.3730877302528879,0.3679519071310116,0.3705612829324169,0.3739376770538243,0.0,2.080086311539888,62.91838400738481,212.00599497389248,306.78831367548736,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95829,42409,398.1049577893957,6860,70.37535610305858,5400,55.67208256373332,2177,22.28970353442069,77.40182060844235,79.715889732109,63.36325590393732,65.07597651810397,77.13465176754093,79.45160982604664,63.26462371796026,64.98138837675145,0.2671688409014194,264.2799060623702,0.0986321859770598,94.58814135251714,109.49026,76.72413436021921,114255.87243944943,80063.5865554469,267.97441,167.08370670245807,278963.67487921193,173683.36232197957,299.03667,143.9429428490986,307771.1861753749,146852.01087033356,3100.65916,1407.546060656451,3200250.821776289,1433505.193934535,1336.0669,586.3609859737963,1381332.7280885745,599028.1392188871,2141.04392,887.5676575176055,2195730.9582694173,894122.1862761057,0.38097,100000,0,497683,5193.448747247702,0,0.0,0,0.0,22584,234.96018950422103,0,0.0,27712,285.101587202204,1919832,0,68918,0,0,4287,0,0,47,0.4591511964019243,0,0.0,0,0.0,0,0.0,0.0686,0.1800666719164238,0.3173469387755102,0.02177,0.3259814121237342,0.6740185878762658,24.944522093087112,4.489760839491998,0.325,0.2092592592592592,0.2342592592592592,0.2314814814814814,11.374432426475504,5.840637854957433,22.913366148645476,12829.433948826128,60.70312699067204,13.274573380917651,19.689802653587243,14.070469521926292,13.668281434240855,0.5614814814814815,0.7707964601769911,0.7133903133903133,0.5881422924901186,0.132,0.7298091042584435,0.9151193633952256,0.8834080717488789,0.7231833910034602,0.184,0.5047052996532937,0.6985391766268261,0.6554621848739496,0.548155737704918,0.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491767755523,0.0047329961791444,0.007050683764152,0.0093746508628132,0.0117932920568111,0.014363369844049,0.0164500840850022,0.0186058379261073,0.0207698755034037,0.0229063888149679,0.025278307398979,0.0273538136245599,0.0296959480295212,0.0317947345119075,0.0339122901109781,0.0359888406695598,0.0379475607357644,0.0397154589572358,0.0416311776803706,0.0434624231133499,0.0587511342421176,0.0723231647395822,0.0856648852562087,0.0975156258206838,0.1096962419952814,0.125209915400133,0.1387906010975274,0.1506824559911557,0.161889007470651,0.1730901066883756,0.1872714365615454,0.1999697424869514,0.211675104843441,0.2231886274981151,0.2328074322467154,0.2434560191336699,0.2537759632331615,0.2642600089968511,0.2739062358173731,0.2821111683553723,0.290263992040906,0.297336171008934,0.3047171708806095,0.3106700703507952,0.3167280103980661,0.3226454387499846,0.3289042364186872,0.3350458435596475,0.3401327966244288,0.3452984011397815,0.3462050957642973,0.3478003686686659,0.347614959111574,0.3474771966285648,0.3480538366795768,0.347808112205056,0.3472598078779534,0.3480900498818587,0.3497207085632292,0.350787022165114,0.3521656897810902,0.353123702986343,0.3542312526183493,0.3543592613318411,0.3557445173068146,0.3575372434628607,0.357640964335525,0.359121568627451,0.3618349524778171,0.3637050288213079,0.3648710444485092,0.3673523911301095,0.3682114180944553,0.3691791784162792,0.3696283119558093,0.3699100378787879,0.369661717434563,0.3729916615822656,0.3738651994497937,0.3692307692307692,0.0,2.6016341270192527,59.4032717149666,197.4217251263201,312.16066213844954,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95697,42522,400.6708674253112,6924,71.24570258210811,5374,55.581679676478885,2187,22.47719364243393,77.32145341825886,79.70923031303799,63.3143933609397,65.08032283931003,77.04846036632902,79.43536526651715,63.21539877286889,64.98369134550305,0.2729930519298307,273.8650465208394,0.0989945880708091,96.63149380698144,108.70156,76.20798542115682,113589.3079197885,79634.66505862965,267.45049,166.64377232148672,278886.5795165993,173547.10421589678,294.34946,141.3094686514144,303900.32080420497,144831.72702094456,3097.18324,1399.665161623498,3203020.70075342,1429173.9987914972,1313.90766,576.3090991951025,1356325.1303593633,585588.3908110405,2149.4888,889.7140897511013,2209753.0121111427,899239.6263497989,0.38212,100000,0,494098,5163.150359990386,0,0.0,0,0.0,22499,234.5005590561877,0,0.0,27381,282.5062436649007,1922498,0,68952,0,0,4418,0,0,44,0.449334879881292,0,0.0,0,0.0,0,0.0,0.06924,0.1811996231550298,0.3158578856152513,0.02187,0.3213254502956139,0.6786745497043861,25.07689092210067,4.513228971973985,0.3301079270561965,0.2139933010792705,0.2223669519910681,0.2335318198734648,11.24990401800472,5.819974206192078,23.325374644354955,12868.941167768216,60.78330038252896,13.57441156598466,20.009790342607022,13.30930370734368,13.88979476659359,0.5519166356531447,0.7704347826086957,0.6989853438556933,0.5774058577405857,0.1195219123505976,0.7134502923976608,0.8821989528795812,0.868663594470046,0.7630662020905923,0.1622641509433962,0.4967548676984523,0.71484375,0.6440298507462686,0.5187224669603524,0.108080808080808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594634027721,0.0044620221072913,0.0065778788370959,0.0090344610319,0.011069510011395,0.0133037242278542,0.0156439621852595,0.0179803961609148,0.020149459716415,0.0222122136466927,0.0242159546437835,0.0262171515419135,0.0280829527218861,0.0302121652395231,0.0325347591374985,0.0344185854157835,0.036335387643068,0.0385018524476177,0.0404746305598019,0.0425447647635128,0.0573022206438404,0.0705574456948442,0.0836359438298944,0.0966903446461457,0.1090864968663613,0.1250714421794627,0.1380657213212193,0.1510181477379228,0.1635285317375507,0.1755552457451714,0.1903469372367811,0.2035048600437295,0.2156024666383895,0.2267715329584983,0.238063288493901,0.2481123092934168,0.258251625785006,0.2678858453134308,0.2771496932654473,0.2854770738857587,0.2929419113054341,0.3001274600371856,0.3073462913421246,0.3141093263006473,0.3206808986306696,0.3262762485374715,0.3313021608838728,0.3368645953885872,0.3407712108864656,0.3452109351303591,0.3448726058925663,0.345626237079393,0.3460406841697754,0.3464211910576742,0.3469308816090928,0.3464282973989104,0.3459872085826284,0.348055752110451,0.3489825979720471,0.3501324835290748,0.3509098428453267,0.3512349965281222,0.3524686685171166,0.354529714658332,0.3554705469336368,0.3570470504694527,0.358200357163431,0.36060423344229,0.3630956595624159,0.3661318074506822,0.366115210118693,0.3673852423852424,0.3699322163959586,0.3704134667597549,0.3718487394957983,0.3742435245703219,0.3751172241325414,0.3721314864585487,0.3609253065774805,0.3644859813084112,0.0,2.1519141284291785,60.52901882791329,202.19225849712663,303.7104803451977,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95720,42433,399.8955286251567,7010,72.09569577935646,5423,56.22649394066026,2171,22.461345591307985,77.3455376358958,79.73224983640334,63.32130932583449,65.08709785665933,77.07805143221455,79.46051485386471,63.224529142562375,64.99071194557752,0.2674862036812442,271.7349825386321,0.0967801832721164,96.3859110818106,109.7525,76.85709430892365,114659.94567488508,80293.66308913879,268.52943,166.95276732936247,280114.5946510656,173996.05863911664,296.70743,141.48252507925812,307036.58587547013,145649.15714944646,3105.1802,1397.0237046894567,3222509.778520685,1437975.2033947532,1311.08307,567.571865452957,1360331.5294609277,583575.151956704,2133.9599,875.8108269861226,2209321.2285833685,896606.0058153719,0.38067,100000,0,498875,5211.815712494777,0,0.0,0,0.0,22647,236.167989970748,0,0.0,27556,284.9143334726285,1919260,0,68753,0,0,4344,0,0,37,0.3865440869201839,0,0.0,0,0.0,0,0.0,0.0701,0.184149000446581,0.309700427960057,0.02171,0.3058903182125931,0.694109681787407,25.19916745309322,4.521930805484743,0.3317352019177577,0.2142725428729485,0.2220173335791997,0.231974921630094,11.182935128933671,5.623571175639381,22.952504806935508,12807.56124156227,60.94349898233872,13.615335682037696,20.247839337622047,13.328955407928555,13.751368554750426,0.5515397381523142,0.7650602409638554,0.6964980544747081,0.5789036544850499,0.1208267090620031,0.7337461300309598,0.9365079365079364,0.8912529550827423,0.704,0.1701244813278008,0.494553376906318,0.6823979591836735,0.6366279069767442,0.5461215932914046,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012401341452,0.0046249809828084,0.0067414589573074,0.0089737596292607,0.0109872222674371,0.0129863515991036,0.015174073545308,0.0174218518631986,0.0194698952879581,0.0217302256994224,0.0240810633409911,0.0260990139687756,0.0282875246872942,0.0301094326401912,0.0322703818369453,0.0342820515471378,0.0364837987900886,0.03875413851439,0.0409218065911667,0.0427190130866049,0.0575230018902802,0.0714689383791024,0.0849853600176309,0.0977180191269766,0.1095114542462979,0.1243508519572276,0.138274958354112,0.150450488828303,0.1621381846167001,0.1730511221543646,0.1871537284152887,0.2000693143296546,0.2117207824014106,0.2230659809607178,0.2337156316727937,0.2453438514464252,0.2556805499754475,0.2657074394483131,0.274381459087248,0.2830292346786932,0.2902852647895796,0.2979240695717224,0.3053703178206583,0.3122089612985863,0.3190975802049851,0.3257476043447775,0.3314009420407551,0.3362488099016185,0.3415144277322316,0.3465519735890252,0.3467957410813786,0.3466191194623508,0.3468638836944448,0.3471701378872671,0.3480091940387039,0.3469812099622364,0.3473414193875289,0.3481179257699394,0.3490612859612192,0.3489900436931452,0.3494270607936478,0.3503336510962822,0.3518967078796048,0.352225266088831,0.3528558652195983,0.3532249606712113,0.3537629175850915,0.3535193906254938,0.3558903432946406,0.3578926362003592,0.3611085703832434,0.364732881464482,0.3670397773983431,0.3675547389373756,0.3726181402439024,0.374167776298269,0.3728760717069369,0.3733195449844881,0.3702268954067515,0.3701960784313725,0.0,1.6893119801008611,57.2711190566875,210.0866106847413,311.6283175959568,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95619,42368,398.8433261171943,6790,69.85013438751713,5279,54.72761689622355,2141,22.02491136698773,77.23812690061078,79.66939559292108,63.25655152000609,65.05417024874215,76.97327082501297,79.40288360069428,63.15979973099163,64.95887367006684,0.2648560755978053,266.5119922267962,0.096751789014462,95.29657867531682,108.51038,76.06853305947081,113481.33739110429,79553.14140015143,266.7902,166.9481579043685,278481.44197282963,174067.97201260013,292.63696,140.06363586937476,303211.7361612232,144249.08717376328,3055.81952,1378.1464476058857,3169451.3433522624,1415180.3476137624,1257.48595,552.9811541762012,1304492.9355044498,567857.655270823,2106.56856,878.4781975348506,2169534.255744152,891614.3038983633,0.37984,100000,0,493229,5158.242608686558,0,0.0,0,0.0,22472,234.47222832282287,0,0.0,27108,280.68689277235694,1916248,0,68795,0,0,4297,0,0,38,0.3974105564793608,0,0.0,0,0.0,0,0.0,0.0679,0.1787594776748104,0.3153166421207658,0.02141,0.3222160200948925,0.6777839799051074,25.144363088255812,4.542786539427528,0.329418450464103,0.2051524910020837,0.2303466565637431,0.23508240197007,11.138671226664904,5.63922259173939,22.83503142275736,12903.793939209598,59.609316330563445,12.73453879644871,19.64996766326246,13.578966899733762,13.645842971118498,0.5440424322788406,0.7580794090489381,0.7107533064979874,0.5748355263157895,0.0934730056406124,0.7233231707317073,0.9450867052023122,0.8935185185185185,0.7352941176470589,0.1374045801526717,0.4847491807411141,0.6702849389416553,0.6503442999234889,0.5286016949152542,0.0817160367722165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0044120779365675,0.006589635285517,0.009107264466422,0.0114395049666178,0.0136108479273001,0.0156662756897343,0.0177951211539247,0.020068326412045,0.022236334026405,0.024429532955758,0.0267562652199377,0.029054568658529,0.0310505860643485,0.0330868685199719,0.0353972228545413,0.0371533716892137,0.039099587605306,0.0413040762793021,0.0434691897643462,0.0579552582061467,0.0726680218789949,0.085356501276408,0.0981096308777842,0.1104164906648644,0.1268654345178202,0.1406611851190855,0.1534821257274413,0.1657447923910601,0.177454350161117,0.1905681548453919,0.2036207924548756,0.2160610187959684,0.2276273117714085,0.237619289004474,0.2483356264701966,0.2573573002539121,0.2671042096597765,0.2763561924257932,0.2841326718118339,0.2921420033191361,0.299800609899132,0.3073563272960334,0.3139617377920469,0.3204637440873848,0.3254232257904955,0.3307924149190003,0.3361890656520518,0.3410636057561064,0.3461319417771479,0.3463466709909326,0.3468029277724071,0.3463886063072228,0.346434424446346,0.3469123105129008,0.346425331016347,0.3459446564885496,0.3465232170555427,0.3470734851740438,0.3481468186305304,0.3487780999359867,0.3510204892784038,0.3522035112862773,0.3553715288716864,0.3571031045079488,0.360143805600021,0.3609467455621302,0.3642961272738797,0.3660891089108911,0.3687604490088368,0.3719364148609648,0.3740665671004907,0.3754740834386852,0.3775908221797323,0.3778658363996603,0.3800781712661376,0.382509505703422,0.3820020222446916,0.3828492392807746,0.3842307692307692,0.0,1.7254523007682052,58.34313322777656,201.95985870008576,299.047977264796,fqhc7_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95714,42618,401.0071671855737,6880,70.7002110454061,5360,55.37329962178992,2221,22.817978561130037,77.33641368994157,79.71151435550586,63.332022412709286,65.08956133124356,77.0643573539707,79.43946123501829,63.23208919728456,64.99214805662533,0.2720563359708592,272.0531204875698,0.099933215424727,97.41327461823346,109.7525,76.85768391629954,114667.13333472636,80299.31244781279,269.75882,168.43542024981727,281198.2990994003,175337.7147019425,296.74208,142.3514280725183,305773.4500700002,145477.5036777843,3535.48733,1601.3721004436466,3655971.7491694,1635248.3131450412,1290.97791,561.9353805309178,1331286.5724972314,569636.7167370984,2176.8888,907.8853393127883,2238602.2316484526,918317.9857578533,0.38227,100000,0,498875,5212.1424243057445,0,0.0,0,0.0,22682,236.2977202917024,0,0.0,27450,282.59188833399503,1917685,0,68851,0,0,4290,0,0,56,0.5746285809808388,0,0.0,0,0.0,0,0.0,0.0688,0.1799775028121484,0.3228197674418605,0.02221,0.3278077082469954,0.6721922917530045,24.96945403461888,4.513630432086765,0.3289179104477612,0.2097014925373134,0.2277985074626865,0.2335820895522388,11.173870355370902,5.667519035165292,23.73500744079843,12897.808203166158,60.57259736878519,13.140454711613533,19.96423950291078,13.629017658224804,13.838885496036063,0.5458955223880597,0.7651245551601423,0.6698808848553602,0.6117936117936118,0.1102236421725239,0.7068837897853442,0.9117647058823528,0.8355855855855856,0.7571428571428571,0.1225296442687747,0.4916438014467448,0.692,0.6141015921152388,0.5685441020191286,0.1071071071071071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023306716387661,0.0045537987200681,0.0067516117569419,0.009218229124319,0.0115459345086111,0.0137697838795755,0.0160107690268103,0.018174392485195,0.0202836023841411,0.0222959277685645,0.0246835118651017,0.0266418898801884,0.0288858038973726,0.0311363800224536,0.0331847449232293,0.0353909124736428,0.0373066329805959,0.0394941593875137,0.0416134027582909,0.0434782608695652,0.0581840964861901,0.0729471833933205,0.0858380351112695,0.0988573170603509,0.1114472117117591,0.127100551692067,0.1400905245974623,0.1528759956187458,0.1644109045108127,0.175839127500241,0.189608041498956,0.20195302361796,0.2142205124861446,0.2254470381334178,0.2364497379495237,0.2473879153076455,0.258233432862427,0.2684579596790506,0.2783842918523053,0.2868222374742621,0.2941496063902343,0.3013037687796444,0.3079386840954485,0.3143048704563957,0.3206713673709632,0.3259054982394799,0.3311406525518052,0.336317851147174,0.3415167877351772,0.3457871104067617,0.3467712587440864,0.3474164804546332,0.3474314270790688,0.3475451634867516,0.3476303352863127,0.3471616391226884,0.3462197948750516,0.3467801689361632,0.3474304710660246,0.3480987707414973,0.3482149567831642,0.3496927651139742,0.3509950457637081,0.3517025089605735,0.3522825982048065,0.3539209790026933,0.3558781258982466,0.3574603174603175,0.3603284723205436,0.3627718481662788,0.3658536585365853,0.3663328822733424,0.3647294589178356,0.3666562937606971,0.3666602760736196,0.3672749391727494,0.3716703227828267,0.3802758904673667,0.3720994475138121,0.37734404898584,0.0,2.432110306212804,59.10200040335417,203.09583906932892,304.4515318207488,fqhc7_80Compliance_baseline_low_initial_treat_cost,0 -100000,95600,42440,399.75941422594144,6990,71.92468619246863,5478,56.65271966527197,2187,22.426778242677827,77.26635035352784,79.70422928253247,63.26822878755484,65.07191718040247,76.99368612562749,79.43344662133657,63.16790905645172,64.97548642708176,0.2726642279003499,270.782661195895,0.10031973110312,96.4307533207034,108.85512,76.24324884243231,113865.18828451882,79752.3523456405,269.05647,167.61839349996484,280769.46652719664,174662.94682580186,297.18919,142.6341845523703,306946.88284518826,146197.67456521562,3613.21362,1631.6709374726925,3739943.9853556487,1667218.3087617208,1330.3521,585.2123276862158,1375311.9665271966,595998.4012386212,2150.00972,897.6414585772466,2208019.414225941,904681.9809007735,0.38032,100000,0,494796,5175.690376569038,0,0.0,0,0.0,22667,236.4016736401674,0,0.0,27583,284.57112970711296,1917263,0,68797,0,0,4357,0,0,42,0.4393305439330544,0,0.0,0,0.0,0,0.0,0.0699,0.1837925957088767,0.3128755364806867,0.02187,0.3108751871512182,0.6891248128487818,25.13666341142028,4.6069154314722125,0.3342460752099306,0.2066447608616283,0.2329317269076305,0.2261774370208105,11.287270729746895,5.620920256628957,23.419332828065848,12895.662608311168,61.92041715155336,13.23512993683674,20.662457968902388,14.375987738953446,13.64684150686079,0.5576852866009493,0.7632508833922261,0.6886947023484434,0.5995297805642633,0.1331719128329297,0.733723482077542,0.9217391304347826,0.8552631578947368,0.7819314641744548,0.1795918367346938,0.4991486256385308,0.6937738246505718,0.6334545454545455,0.5382198952879581,0.1217303822937625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020775061818476,0.0043621607912756,0.0065707292798602,0.0088762811127379,0.0111764825634657,0.0133310231662199,0.0154923252775963,0.0179332331933417,0.0200642547270197,0.0223076134849882,0.0244162775183455,0.026746158194994,0.0289884910749212,0.0309729038643955,0.0329397911437513,0.0347685716946574,0.0368807852974407,0.0391063193319207,0.0413834736721587,0.0433245377082007,0.0581808677469942,0.0722878940308517,0.0857896174289375,0.0989192719305637,0.1107660783506025,0.1263029661016949,0.1393680451487421,0.1518506666666666,0.1638480969302564,0.1754840234651997,0.1889285598714228,0.2016803078757656,0.2134291782388498,0.224761445677538,0.2359780895594767,0.24645606406815,0.2568370721244079,0.2672447772960189,0.2761218622515653,0.2849178033475203,0.2930185684995772,0.3002928086202858,0.3075473933649289,0.31451429119739,0.3206177418374171,0.3262356194144077,0.3319669048514479,0.3372841394252214,0.3427811993517017,0.3476905189726245,0.3490030602477857,0.3488727813912468,0.3490101454796879,0.3495404212202359,0.3494027939117743,0.3486363775807589,0.3474115089879261,0.347447996442512,0.349080690210593,0.3497059034502546,0.351102906549626,0.3522582697201017,0.3539712979158325,0.3550301177739818,0.3566034082106893,0.3568241469816273,0.3579367586662454,0.3604658542777355,0.36289637599094,0.3648930202740604,0.3657281954714554,0.3677840848238192,0.3671855065067619,0.367925971245029,0.3689320388349514,0.3692891895099086,0.3708934602394841,0.3758879642784656,0.3699007717750827,0.3645675265553869,0.0,2.5307338441892884,59.991198786569925,209.20086369800063,310.67823929530954,fqhc7_80Compliance_baseline_low_initial_treat_cost,1 -100000,95710,42348,398.3596280430467,6934,71.40319715808171,5415,56.05474872009195,2153,22.139797304356915,77.34534288058313,79.71529475990839,63.32656324425341,65.07497628583073,77.08484945608191,79.45523444914453,63.23050158992847,64.98195109395051,0.2604934245012202,260.06031076386193,0.0960616543249415,93.02519188021564,108.71124,76.19670533209606,113583.99331313344,79612.06282739114,267.05918,166.47504470071755,278497.02225472784,173404.41406406596,294.84105,140.6750172107088,305630.0073137603,145069.06936357706,3559.67137,1602.9894092934012,3685158.039912235,1640771.9144221086,1299.841,563.8581038669867,1342985.3411346776,574013.5553933611,2123.5421,883.9426312894549,2184274.725733988,892437.1652505032,0.38034,100000,0,494142,5162.90878696061,0,0.0,0,0.0,22453,234.0507783930624,0,0.0,27337,283.1156618953088,1921335,0,68965,0,0,4374,0,0,52,0.5433079093093721,0,0.0,0,0.0,0,0.0,0.06934,0.1823105642320029,0.3104989904816844,0.02153,0.3190934065934065,0.6809065934065934,24.900726992481147,4.515920149580061,0.322253000923361,0.2210526315789473,0.2230840258541089,0.2336103416435826,10.941252828158987,5.38349625278736,22.79586701197682,12843.057228604375,61.12190599495687,14.08456180225138,19.679145327015263,13.448071349119193,13.910127516571018,0.5471837488457987,0.7677527151211362,0.6922636103151862,0.5753311258278145,0.1114624505928853,0.7042042042042042,0.9212598425196852,0.8692660550458715,0.6963562753036437,0.1343283582089552,0.4959588537839823,0.696078431372549,0.6333078686019863,0.5442247658688866,0.1053159478435305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025518470511989,0.0049257089574929,0.0073048983401647,0.0094353036766199,0.0115723321605076,0.0136837068184363,0.0159730079610205,0.0182211651337749,0.0204444626173001,0.0225814046329754,0.024542267238021,0.0263914561511604,0.0285429223838225,0.030648933211081,0.0329105563524907,0.0347746984090885,0.0370562160818592,0.0389908256880734,0.0412693791396753,0.0432698320063362,0.0576844743850853,0.072041615205878,0.0848820004827014,0.0978945928599236,0.1104603923306636,0.1260120011429659,0.1388897735596675,0.1515742160872528,0.1632984578555321,0.1746055581178338,0.1879195353998987,0.2009745005684586,0.2123836987866587,0.2236126164592023,0.2343741395451291,0.2445787139689578,0.2549785676013574,0.2657236420107356,0.2752321700233873,0.283715814438423,0.2911434886762102,0.2985531994526251,0.3063746670612607,0.3129682237165426,0.3190894617226334,0.3252074624841243,0.330912369455784,0.3364156703128975,0.3414827009579612,0.3456852121051936,0.3457273144275654,0.346932587212107,0.3470042241781219,0.3470049820414784,0.3475476250763342,0.3462760324744087,0.3464712871287129,0.3476126362800473,0.3488717187739856,0.3496014693033291,0.3505079418532862,0.3515247212079345,0.3521834747093936,0.3517348036578805,0.3520334234930448,0.3530626650283652,0.3545125736906558,0.3563124489411173,0.35858054562031,0.3595625817187686,0.3608737376045332,0.3654871029631208,0.3698958662038498,0.3731434696064921,0.3784777893049137,0.3828598597408772,0.3869038491028983,0.3953677366924014,0.3926600441501103,0.3988985051140834,0.0,2.0197728852868977,58.8529017200221,212.4673257777868,302.1814666970089,fqhc7_80Compliance_baseline_low_initial_treat_cost,2 -100000,95667,41979,395.3296329977944,6785,69.66874679879164,5231,54.14615280086132,2105,21.700272821349053,77.2498286400838,79.64747051181949,63.26585613190741,65.03850600107974,76.9883407100976,79.3842273770469,63.17027268135988,64.94409070947012,0.2614879299862025,263.2431347725941,0.0955834505475294,94.41529160962148,110.49324,77.31164931229284,115497.75784753363,80813.28913030913,264.98475,165.42814987417128,276446.67440183135,172380.90446462337,285.22159,136.6542560900033,294438.374779182,140029.82750486574,3458.04312,1552.7738327213588,3581385.765206393,1589954.2425539168,1266.68198,551.315249315515,1309413.569987561,561719.1440197754,2068.8298,862.2173900173984,2134340.9326099907,877325.5797939971,0.37864,100000,0,502242,5249.898083978801,0,0.0,0,0.0,22405,233.6228793627897,0,0.0,26472,272.9990487838021,1909022,0,68562,0,0,4366,0,0,37,0.3867582342918665,0,0.0,0,0.0,0,0.0,0.06785,0.1791939573209381,0.3102431834929993,0.02105,0.3211535769284614,0.6788464230715385,25.28066898292133,4.53727872090267,0.3385585930032498,0.1991970942458421,0.2305486522653412,0.2316956604855668,11.10693851943123,5.519102079952094,22.520968341972765,12792.136897174614,58.8313933870008,12.220936957056152,19.972483419041875,13.435839524420835,13.202133486481932,0.5476964251577137,0.7802303262955854,0.6922642574816488,0.5655058043117744,0.1188118811881188,0.7058823529411765,0.9409937888198758,0.8537735849056604,0.7194244604316546,0.1394422310756972,0.4967138523761375,0.7083333333333334,0.6414253897550112,0.5193965517241379,0.1134235171696149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021577049313181,0.0043708864482237,0.0067396798652064,0.0088193456614509,0.0111889819043647,0.0134438718350885,0.0153362972631235,0.0175014039924439,0.0195643280834526,0.0216917073770239,0.0239606946139722,0.0258757062146892,0.0279878582085712,0.030023808787607,0.0320772248606235,0.0343465265640028,0.0362149895862476,0.0383924585500565,0.0403969996150685,0.0424972891817499,0.0567112095535611,0.0704210603474454,0.0832861070881346,0.0959921716348025,0.1081739901228314,0.1233318870180859,0.1360021237058667,0.1486797519340195,0.1604252906759083,0.1720482083011085,0.1862991531366309,0.1993559718969555,0.2120303539109008,0.2233165167799956,0.233412060745188,0.2446281359020509,0.2550426470259016,0.2650745123698431,0.2748039472336357,0.283224175571642,0.291476955956142,0.2990035955161798,0.3067327815829528,0.3133651091692545,0.3202112220880742,0.3252564753053572,0.331264292714799,0.3370100075408034,0.3423173934524274,0.3467643629425482,0.3476268368188393,0.3473817940786566,0.3473267326732673,0.3478626896001161,0.3480272190055512,0.3477546129146246,0.3472200171466675,0.3471446229913473,0.3477693891557996,0.3484889295911221,0.3487241340318872,0.3493369913122999,0.3504557798783183,0.3513111986494091,0.3532732470804865,0.3533059473036971,0.3537135354227322,0.3558309221285696,0.3578120065962598,0.3593849332485696,0.361017719218537,0.3639250555731978,0.3629159066607962,0.3640106747998475,0.3675366128426586,0.3673638189767222,0.3702967268277761,0.3732709519934906,0.3743828853538124,0.3725934314835787,0.0,1.971744925833046,56.49446290611078,196.1772171243913,303.1475834663501,fqhc7_80Compliance_baseline_low_initial_treat_cost,3 -100000,95735,42382,399.40460646576486,6835,70.08930903013527,5335,55.01645166344597,2164,22.18624327570899,77.32698317968122,79.68693062767288,63.31555014592704,65.0616834457895,77.0617918156201,79.42458442590576,63.2184094847274,64.9684415868406,0.2651913640611241,262.3462017671159,0.0971406611996386,93.24185894890036,109.28786,76.54482483242039,114156.64072700684,79954.90137611155,267.76739,167.32486720041285,279011.63628766907,174094.3930646188,297.2975,143.3186510503889,305790.3379119444,145981.97740331542,3540.67667,1599.250202948236,3658594.0460646576,1630676.9133005014,1322.313,577.077520152723,1365379.0985532985,586943.3333187682,2123.42592,874.7704923998624,2180606.215072857,882039.679830909,0.38081,100000,0,496763,5188.938214863947,0,0.0,0,0.0,22480,234.10455946101217,0,0.0,27561,283.2610852875124,1916169,0,68839,0,0,4455,0,0,55,0.5640570324332793,0,0.0,2,0.0208910012012325,0,0.0,0.06835,0.1794858328300202,0.316605705925384,0.02164,0.324770896973063,0.675229103026937,25.317296927013835,4.514297243633319,0.32970946579194,0.2026241799437675,0.237863167760075,0.2298031865042174,11.424901998373535,5.947619829943482,22.883690594644374,12754.270048855524,60.36189560182777,12.87851277532639,19.85726251695301,14.18298470590732,13.44313560364105,0.5610121836925961,0.7853839037927844,0.6992609437180216,0.6004728132387707,0.1239804241435562,0.7276688453159041,0.9213197969543148,0.8616780045351474,0.7306397306397306,0.1714285714285714,0.5030318342597271,0.7074235807860262,0.644916540212443,0.5606995884773662,0.1121304791029561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021072893977002,0.0044614791831437,0.0069017315226437,0.0091027308192457,0.0110450038138825,0.0131765185072043,0.0151731451645796,0.0174958659126635,0.0196026327623564,0.0222003868947093,0.0245774785023931,0.0266796694554226,0.028648376386419,0.0303660608556865,0.0321951722715081,0.0341923617425808,0.0364530489698726,0.0384623363691056,0.0406281830087097,0.0424210855297426,0.0577513310366426,0.0712230742674213,0.0839169637240511,0.0968084435380442,0.1093448584831075,0.1246154008818025,0.1379043376816205,0.1513073843795247,0.1633604104318084,0.1740474401631426,0.1877519346424953,0.199662103621556,0.2108830954038997,0.2217992057501066,0.2323136702367717,0.242823258185365,0.25328418230563,0.2631069163973015,0.2726508542348237,0.2805698502022899,0.2880555008628577,0.2954662605435801,0.3035468727772772,0.310771225509028,0.3179329309841331,0.3237933034667457,0.3306169527224402,0.3360862583161275,0.3410933143116529,0.3456265025229176,0.3451166426328486,0.3453728958316114,0.3451892577711989,0.3453984977640129,0.3452602437971631,0.3440277543251002,0.3439874371460749,0.3453792150995511,0.3457168280913104,0.3467245165782848,0.3480624660205095,0.3494111825828798,0.3487706900540517,0.3501344688480502,0.3511505620145689,0.3536863042738621,0.3541993888682639,0.3576246611611927,0.3608980223801816,0.3613341814423153,0.3635327375524348,0.3639072143009151,0.3618201298292052,0.3609228660625904,0.3611816727820114,0.3604941204418577,0.3639445300462249,0.3683888094751888,0.3688063063063063,0.371552403467297,0.0,2.830112818956872,60.15745657321559,200.64616347095048,298.2756269530562,fqhc7_80Compliance_baseline_low_initial_treat_cost,4 -100000,95761,42661,402.0634705151367,6849,70.46710038533432,5342,55.22081014191581,2151,22.07579285930598,77.39144353273707,79.72968660272564,63.36142006586866,65.08705342105955,77.12254756315299,79.4622027681859,63.262556705351656,64.99157622978029,0.2688959695840793,267.4838345397319,0.0988633605170008,95.47719127925802,108.91276,76.26325413567965,113733.9417925878,79639.15804521638,267.07062,166.29658210647105,278318.89809003664,173083.9507800368,289.77327,138.63738551393962,299584.2984095822,142371.37254793476,3533.01848,1585.9378185280846,3655419.784672257,1622148.7646621107,1277.19474,558.8831229014736,1319307.8497509426,569268.5836732495,2122.1313,880.575057027671,2181047.608107685,889468.655136061,0.38307,100000,0,495058,5169.724626935809,0,0.0,0,0.0,22512,234.4900324766868,0,0.0,26867,277.43026910746545,1925405,0,69070,0,0,4402,0,0,50,0.5221332275143326,0,0.0,0,0.0,0,0.0,0.06849,0.1787923878142376,0.3140604467805519,0.02151,0.3086144410370783,0.6913855589629216,25.1661497858961,4.467595158312228,0.324784724822164,0.2089105204043429,0.2324971920628978,0.2338075627105952,11.130997963069063,5.62991066542574,22.88561506640156,12858.700000942696,60.069029575892415,13.037489332034085,19.48713711709229,13.82393426569019,13.72046886107586,0.5481093223511794,0.7759856630824373,0.6864553314121038,0.5756843800322061,0.1248999199359487,0.7259148618371919,0.9247311827956988,0.875,0.6944444444444444,0.2024291497975708,0.4886335248563577,0.7016129032258065,0.6239447429009977,0.539832285115304,0.1057884231536926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020451968248825,0.0043475176586235,0.0063817698504494,0.0088055169051705,0.0106760480320484,0.0129875417311293,0.0152231506011819,0.0174464872365172,0.019542543084514,0.0217627077023819,0.0237602459016393,0.0259253939592908,0.0280103985779019,0.0301558222350301,0.0321829127494639,0.034397628319681,0.0365644146381851,0.0384571505616113,0.0406116169805829,0.0425429961352958,0.0573480443836703,0.0710586068704287,0.0842294094814472,0.0973193534478225,0.1094357925369829,0.1252035615337436,0.1385863513441858,0.1506111897188208,0.1621636052968816,0.1735038428968045,0.1870976770221102,0.1998421075399057,0.2122835809540371,0.2231544907301192,0.2336316067188462,0.244990096380476,0.2557268501488145,0.2658136844115433,0.2753468758501859,0.2839914413538222,0.292521095827072,0.3001811911859255,0.3072082515199545,0.314223755780797,0.320977764831537,0.3276573215626885,0.3332624681106498,0.3382167631897155,0.3435816411106506,0.3487562320293334,0.348971437028267,0.3489625586095948,0.3492228854600743,0.3493353347863112,0.3491768967001648,0.3482706445154289,0.3478116553653563,0.3484331978497443,0.3500546000546,0.3507321428571429,0.3523755868544601,0.3529901484667684,0.3538177003425737,0.3549038979701814,0.3562826465467208,0.3567947172580053,0.3567977126518942,0.3600088462024516,0.3632157112076578,0.3661623218491756,0.3667905824039653,0.3702134506060281,0.3702265784114052,0.3716895678206801,0.3773460341412807,0.3789349112426035,0.3817245037126837,0.3810483870967742,0.3843222645617855,0.3861726508785332,0.0,2.2046275153643147,59.045030870089576,196.65518169400767,307.67315281004244,fqhc7_80Compliance_baseline_low_initial_treat_cost,5 -100000,95715,42275,397.9627017708823,6879,70.44872799456721,5341,55.10108133521391,2082,21.292378415086453,77.37264048070351,79.73146366668847,63.34029949113111,65.08161480434627,77.10872882908596,79.47091722623821,63.24273529364408,64.98840634053319,0.2639116516175477,260.54644045025555,0.0975641974870384,93.20846381308456,109.41876,76.63383178694636,114317.25434884812,80064.59989233282,266.49958,166.43637593585848,277707.9350154103,173165.06914888832,293.90568,140.82117214775886,302353.8630308729,143509.6013635089,3526.62398,1585.044794835493,3644609.5178394183,1616109.0893125343,1247.10675,543.8268131291272,1287522.467742778,552757.8677627618,2048.38966,857.7196205173267,2098905.37533302,861025.4503428526,0.3787,100000,0,497358,5196.238834038551,0,0.0,0,0.0,22443,233.7251214543175,0,0.0,27222,279.8307475317348,1918459,0,68882,0,0,4281,0,0,51,0.5119364780859844,0,0.0,0,0.0,0,0.0,0.06879,0.181647742276208,0.3026602703881378,0.02082,0.3243392832433928,0.6756607167566072,25.128206570882725,4.583568550255698,0.3323347687698932,0.2140048680022467,0.2274854896086875,0.2261748736191724,11.292916826809686,5.590445734954204,22.124707573056057,12756.577249948004,60.123205188365056,13.390853610169325,20.22633729520432,13.364407744024888,13.14160653896652,0.5483991761842352,0.7646544181977253,0.6980281690140845,0.5637860082304527,0.1084437086092715,0.7218100890207715,0.9243243243243244,0.8886509635974305,0.6928838951310862,0.1270491803278688,0.4898572501878287,0.6882276843467011,0.6299694189602446,0.5274261603375527,0.1037344398340249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278481012658,0.0047834767362905,0.0071619140367428,0.0095669483262918,0.0118760739814334,0.0141602109270815,0.0165234498435318,0.0186890131874413,0.0207200392525657,0.0229708564935663,0.0249348944983287,0.0269401751522058,0.0290790934890799,0.0311331733591489,0.0332717762485943,0.0352742982347348,0.0371884997256416,0.0393307956395921,0.0409304452667027,0.0427251611828057,0.0566658313494549,0.0704816314572412,0.0838173925807872,0.0962771436379306,0.1080479885299822,0.1233440120108689,0.1369441615750169,0.1498190719455087,0.1618212500534028,0.1725713550213984,0.1857301349648316,0.1991711122893965,0.2114583446640488,0.223289394519499,0.2331910117305279,0.2446318168723824,0.2545292180610593,0.2641203495180614,0.2731403644294997,0.2806665443368962,0.2887494355613704,0.2963314135880507,0.3028916804930078,0.3098055688910225,0.3164704737814962,0.3222996730615014,0.3278090943254416,0.333214544806608,0.3393772988654613,0.3445781860416007,0.3444404055091078,0.3450520116682261,0.3454337996027553,0.3450310154860538,0.3454364252989825,0.3447937583347384,0.3435876314789,0.3449420659051688,0.3455312318568355,0.3466804535406118,0.348496746690599,0.3491856934421704,0.3508400720660325,0.3510978088494784,0.3527687687687688,0.3538954275596292,0.354583712465878,0.3557839972419845,0.35874925675912,0.3607714759012385,0.3619298086514917,0.3651417047022609,0.3667024568938293,0.3656437980659408,0.3663068981698733,0.3684335349223289,0.3711403240599205,0.3714112414071977,0.3797851831451391,0.3855606758832565,0.0,2.7347270020453385,59.02014878008071,198.1386042382288,303.9300470019582,fqhc7_80Compliance_baseline_low_initial_treat_cost,6 -100000,95748,42078,396.7602456448176,6896,70.85265488574173,5360,55.46852153569787,2135,21.92212892175293,77.33281654085012,79.69822738165946,63.319784280511655,65.07065053511951,77.06858471279934,79.43496828075183,63.2222569111136,64.97658086428571,0.2642318280507822,263.25910090763216,0.0975273693980582,94.0696708338038,109.43768,76.64928898497584,114297.61457158372,80053.14887514709,262.30399,163.51366060942505,273411.2879642395,170235.88183940446,292.06915,139.94555341255122,302198.0302460625,143983.30448932818,3505.22789,1586.960403018987,3627794.533567281,1624648.8688934098,1261.82482,550.5995803683005,1309539.0086477003,566867.135824836,2087.18272,872.8591425631946,2145198.0824664747,881236.771206897,0.37798,100000,0,497444,5195.3461168901695,0,0.0,0,0.0,22112,230.3860132848728,0,0.0,27155,280.8727075239169,1921486,0,68965,0,0,4357,0,0,43,0.4282073776997953,0,0.0,1,0.0104440823829218,0,0.0,0.06896,0.1824435155299222,0.3095997679814385,0.02135,0.3322793511135551,0.6677206488864449,25.11331571196041,4.4284201466511846,0.3389925373134328,0.2171641791044776,0.2259328358208955,0.217910447761194,11.178542054212812,5.805589555993061,22.842537934157995,12741.63237658532,60.59913341996436,13.687015236205816,20.507346044018515,13.42618324549242,12.978588894247611,0.5537313432835821,0.7749140893470791,0.6846450192625206,0.5772089182493807,0.1053082191780822,0.7182795698924731,0.9186351706036744,0.8682008368200836,0.7304964539007093,0.1220472440944882,0.4958385876418663,0.7049808429118773,0.6191187453323376,0.5306781485468245,0.1006564551422319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020569668352095,0.0043005081496657,0.0065082749517717,0.0084670820585275,0.0110181906971065,0.0130683670143415,0.0151949336623869,0.0173455844818785,0.0194270055827079,0.0216670079868933,0.0238576130083968,0.0258553415205158,0.0276898083408735,0.0298458274544537,0.0317687966239849,0.0339762672620524,0.0359062522655012,0.0382428028809232,0.0400137261222664,0.0418802350293786,0.055969681784014,0.0694944337490583,0.08252147194228,0.0957913219013173,0.1083927140869418,0.1235975255115529,0.1364841645276935,0.1502229980733818,0.1616817638010596,0.1730103064036978,0.1869677099820192,0.2000995304757989,0.2112823077843139,0.2221177602378818,0.2328614951441361,0.2433949728712213,0.2543188108204625,0.2642431063590321,0.2736920963915595,0.2826236342396408,0.2904775687409551,0.2981135168682741,0.3051530267663542,0.3118493643559606,0.3178889267130282,0.3230579379280557,0.3286799167898945,0.3343565705842642,0.3394973675337812,0.3437508262605431,0.3444424962572326,0.344517196223034,0.3446494360769589,0.3453249913103928,0.3444128124487636,0.3435672290192346,0.3432591934511533,0.3445781547971329,0.3459769132107738,0.3474665571252522,0.3482811005457716,0.3493861386138613,0.3508323200134177,0.3517756507737722,0.35213403625334,0.3543315312491838,0.354222031718817,0.3565414814114085,0.3596688974991194,0.3627986756551917,0.3645018078630601,0.3680781758957654,0.3676954211990893,0.3701640595192674,0.3734928409947249,0.3728894173602853,0.3722000613685179,0.3758130081300813,0.3802386899805717,0.390007745933385,0.0,1.9470042190395975,61.91381839789292,199.78477400305516,299.27085368203865,fqhc7_80Compliance_baseline_low_initial_treat_cost,7 -100000,95783,42688,401.7414363717987,6980,71.79770940563566,5495,56.81592766983702,2160,22.18556528820354,77.34910350822409,79.67808007601967,63.34642956891118,65.06702808474982,77.0891480782376,79.4172486428245,63.25290786416351,64.97523713842097,0.2599554299864905,260.83143319516466,0.0935217047476655,91.79094632885663,109.48036,76.7359044437142,114299.94884269653,80113.8730711235,269.70929,167.94324518143162,281049.6121441174,174803.43983946167,302.14579,144.71217887048704,311734.68151968514,148287.93120677606,3602.17654,1614.8511659599824,3727312.1743942033,1652522.290239379,1321.45907,573.6782920522351,1364771.201570216,584205.3535114601,2126.6334,866.1826574888643,2186944.739671967,878488.6217208635,0.38237,100000,0,497638,5195.452220122569,0,0.0,0,0.0,22699,236.40938371109692,0,0.0,28003,288.6629151310775,1918287,0,68872,0,0,4370,0,0,42,0.4384911727550818,0,0.0,0,0.0,0,0.0,0.0698,0.1825457018071501,0.3094555873925501,0.0216,0.3176486633933442,0.6823513366066557,25.01236783831391,4.462660421303058,0.3226569608735213,0.2174704276615104,0.2307552320291173,0.2291173794358507,11.529098791043566,6.028558886654238,22.70137130590624,12921.920043872986,62.05642947653139,14.21144730302342,20.10280639843047,14.0967194174983,13.645456357579192,0.554322111010009,0.7631799163179916,0.688663282571912,0.6096214511041009,0.1111993645750595,0.7467438494934877,0.9139240506329114,0.8747252747252747,0.7898305084745763,0.1687763713080168,0.4896669097982008,0.68875,0.6244309559939302,0.5549845837615622,0.0978473581213307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021872974724562,0.0045003496893339,0.0065637966541883,0.0090400300657179,0.0113372920649123,0.0137322366545869,0.016011333292566,0.0180333724549675,0.0202004720595898,0.0223036156411777,0.0241366239460716,0.0261362120450277,0.028415513945697,0.0304658391486033,0.0324765704741579,0.0347452462843037,0.036981467876618,0.0392144664261125,0.041228972496701,0.0431826228210842,0.0575712988761231,0.0717243975903614,0.0854135432938783,0.0987179487179487,0.1111193070454593,0.1267831857471944,0.1406662356519803,0.1523361902128836,0.1644683484867887,0.1757723786262159,0.1890664514393328,0.2025430051141216,0.2146949158069811,0.2249748545939563,0.2357910483879838,0.2468028566683275,0.2573331696921686,0.2662177808253054,0.2759794024907561,0.2851633134198539,0.2934108885702391,0.3011953775615233,0.3089383756152972,0.3153392754456584,0.321264221275149,0.3270465835829543,0.3330537962800711,0.3383732325353493,0.3433588181935985,0.3479909122130346,0.3483757918856989,0.3484861007796788,0.3489125991909682,0.3486257102786171,0.3493431611484277,0.3491047222264769,0.3482371947163356,0.349040483701367,0.3506093912924565,0.3520389009063768,0.3531914893617021,0.3532127360266291,0.3545861062708626,0.3560463237274441,0.3571497701427534,0.3587427461071869,0.3599045620490413,0.362405441484966,0.366251640594516,0.3687570258551469,0.3716113591383992,0.3725479686997535,0.3770554737987075,0.3776013565592724,0.3793564403704764,0.374713198889023,0.3778751369112815,0.379303193695562,0.3827508455467869,0.3857257417802726,0.0,2.13695980466108,61.05897403853246,209.16621872075777,309.7913145191755,fqhc7_80Compliance_baseline_low_initial_treat_cost,8 -100000,95672,42428,399.5839953173343,6892,70.89848649552638,5421,56.13972740195669,2196,22.671209967388577,77.31532774038504,79.70875941413665,63.31028192710126,65.07667156619073,77.04681281440811,79.43669150293108,63.212006376345485,64.97927034267593,0.2685149259769304,272.0679112055677,0.0982755507557726,97.40122351479386,109.97756,77.00433881672993,114952.7134375784,80487.85309884806,266.58435,166.3043068189962,278123.8397859353,173307.3384260768,297.43106,142.64728277425056,307338.16581653984,146387.52432766996,3594.84986,1622.3599583741695,3726245.913119826,1664524.718176864,1325.30972,580.7944226234368,1372377.3622376453,594181.7591598757,2165.94472,901.8418543933695,2237551.1121331216,918652.81293894,0.38112,100000,0,499898,5225.123338071745,0,0.0,0,0.0,22448,234.11238397859356,0,0.0,27608,285.0154695208629,1914892,0,68763,0,0,4434,0,0,50,0.5226189480725814,0,0.0,2,0.0209047579229032,0,0.0,0.06892,0.1808354324097397,0.3186302959953569,0.02196,0.3296158612143742,0.6703841387856257,25.01400621022136,4.546746125305188,0.3239254750046117,0.2173030806124331,0.2263420033204206,0.2324294410625345,10.938608905356784,5.356367835660064,23.578355635619207,12854.849776251887,61.39858717215925,13.755287117494198,20.01973259820488,13.558899702462964,14.0646677539972,0.5506364139457665,0.7724957555178268,0.7004555808656037,0.5664221678891606,0.119047619047619,0.7097722263041881,0.9311224489795918,0.8693693693693694,0.7063492063492064,0.1355311355311355,0.4972906403940886,0.693384223918575,0.6432926829268293,0.5302564102564102,0.1144883485309017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299633284032,0.004663517102942,0.0070531165641681,0.0092760043078048,0.011444091796875,0.0134861217214158,0.0159928195504059,0.0179868239620039,0.0201053331288029,0.0223953959899236,0.0245215679035136,0.026697209068217,0.0287633606633267,0.0308912931478619,0.0330715000877365,0.0350704822579143,0.0370094077665879,0.0389613085353703,0.0408159019752649,0.0429290560610324,0.0573067399412827,0.0721704533556695,0.0852015113350126,0.0968610903580861,0.1095949682348719,0.1250092619055179,0.1389620317676038,0.1513792736180637,0.1632288816689466,0.1747174792603483,0.1880462544858876,0.2007925165648954,0.2132198482754116,0.2238902322935017,0.2343911731671328,0.2451593585734247,0.255212230175658,0.2649517829614376,0.2741215871033661,0.2822593585952364,0.2904361522247701,0.29784693196586,0.3057098527826797,0.3134308654273129,0.3199105417330108,0.3259714155352496,0.3318928262748487,0.3377259994907053,0.3422856180444893,0.3474750944692545,0.3477938500114588,0.3477559684622595,0.348505999971798,0.3488183503243744,0.3485249903253654,0.3481375797741777,0.3474510425751209,0.3480138594676256,0.3489704473936243,0.3501510736059213,0.3519379263812879,0.353065790255202,0.3531736854277484,0.3549900132408716,0.3565131277022294,0.3570119396732299,0.3584591537975773,0.3612962610296451,0.3616802552286423,0.362874107357779,0.363164184592756,0.3657100021417862,0.3696399032955846,0.3681488343368843,0.3706207159177456,0.3687671888078441,0.3705397987191217,0.38174190970835,0.3872211511980171,0.3845568657284138,0.0,2.077306081906705,60.12554624374842,210.60977382423127,302.80094977731807,fqhc7_80Compliance_baseline_low_initial_treat_cost,9 -100000,95624,42301,399.24077637413205,6906,70.81904124487576,5366,55.50907721910818,2108,21.626369948966783,77.3146043072854,79.73571824023357,63.296484254502126,65.08378146506519,77.06191119344358,79.48251862432996,63.20394852060084,64.9933726731525,0.2526931138418291,253.1996159036112,0.0925357339012862,90.40879191267948,110.12232,77.10177109889715,115161.80038484064,80630.14630103024,267.08954,166.17769688652615,278733.9475445495,173204.11914009677,292.85353,140.27014759088985,302540.73245210404,143722.7871724764,3506.32103,1577.2280265684003,3632859.679578349,1615486.4224132013,1286.51153,560.2606830032904,1331607.075629549,572121.1233615931,2072.59326,857.562610771254,2130588.9943947126,867987.6278438071,0.38042,100000,0,500556,5234.627290220029,0,0.0,0,0.0,22529,234.9828494938509,0,0.0,27205,280.7454195599431,1914261,0,68648,0,0,4249,0,0,47,0.4915084079310634,0,0.0,0,0.0,0,0.0,0.06906,0.181536196835077,0.3052418187083695,0.02108,0.3273003592152528,0.6726996407847472,24.925836153299542,4.520969096898475,0.3315318673127096,0.2118896757361162,0.2364890048453224,0.2200894521058516,11.373245525931758,5.866353797385509,22.4231299885828,12773.839537264716,60.48015287529461,13.443441078458376,19.95597026534864,14.052438449085365,13.028303082402244,0.5493850167722698,0.7704485488126649,0.6790331646992692,0.5776201733648542,0.1109229466553768,0.7307692307692307,0.9236641221374046,0.8443935926773455,0.7667844522968198,0.1631799163179916,0.4882909815645241,0.6895161290322581,0.6251862891207154,0.5233265720081136,0.0976645435244161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021683402064989,0.0045329628540426,0.0068319324318837,0.0090636589950718,0.0111897786458333,0.0132919128132002,0.0153609204312481,0.0175298804780876,0.0195968129608984,0.0216485238246408,0.0236307692307692,0.0256599897277863,0.0276737582815521,0.0299420940919488,0.0317922356754301,0.033976466695618,0.0359748010610079,0.0379879568106312,0.0402343099716996,0.0423750026073715,0.0567337339952965,0.0697742628188341,0.0835328461021505,0.095913770236416,0.1076396951721517,0.1237254216829198,0.1369091874668082,0.1498518850030901,0.1614486955963675,0.1731331099080519,0.1865816557706,0.1999891622412485,0.2125907040596195,0.2242013934533981,0.2349829163452,0.245930019642441,0.2553728891223443,0.2649961692730632,0.2736683028815562,0.2822342011698589,0.2906034362988005,0.2984089845577913,0.3053303187774476,0.3126108846799328,0.3189854051822531,0.3246929246387167,0.3299562226391495,0.3354736172917991,0.3407693999818842,0.3450923482849604,0.3459032284121812,0.3455168239469557,0.3453258708922504,0.3445875542691751,0.3455157418163405,0.3451854581183984,0.344681999269876,0.3454515491100857,0.3460290203485876,0.3476811698086158,0.3485536337372903,0.349916065962279,0.3514463198845454,0.3523651971742824,0.3533968010359464,0.3542731163273246,0.3553486787954474,0.3582206116647402,0.3600894198190645,0.362258626147515,0.3617445708845264,0.3654080389768575,0.365793470007593,0.3684170413840408,0.3697289156626506,0.3737858256385657,0.3763659069622229,0.3761316872427983,0.3719259463940315,0.37065938353492,0.0,2.388036962395003,59.50092645361474,200.47933624604315,305.2485000651576,fqhc7_80Compliance_baseline_low_initial_treat_cost,10 -100000,95646,42532,401.77320536143696,6860,70.46818476465299,5374,55.600861510152015,2099,21.51684335988959,77.29129418892526,79.6908487462958,63.29829466637945,65.06978184785108,77.02809330117832,79.43087170725963,63.20065009362334,64.97663038778066,0.2632008877469474,259.97703903617264,0.0976445727561099,93.1514600704162,109.0232,76.41436199861842,113986.15728833409,79892.89881293353,265.57546,166.0653210941109,277111.0971708174,173071.054821018,299.68784,143.6598464207302,310296.3636743826,147784.6708073544,3538.58766,1599.424059049876,3660094.2433557073,1632655.980438153,1325.45127,585.3073533196342,1367171.2146874934,593334.4450574348,2077.0932,870.5317164563212,2130746.983668946,873819.3522760434,0.38131,100000,0,495560,5181.188967651548,0,0.0,0,0.0,22359,233.1723229408444,0,0.0,27845,288.0935951320494,1917612,0,68773,0,0,4376,0,0,40,0.4077535913681701,0,0.0,0,0.0,0,0.0,0.0686,0.1799061131362933,0.3059766763848396,0.02099,0.3273586216479088,0.6726413783520911,24.69452500092967,4.516679156480227,0.3265723855601042,0.2192035727577223,0.2210643840714551,0.2331596576107182,11.150206826793989,5.610798780886118,22.429353357941874,12868.710833279332,60.87314229537178,13.891186192015986,19.95707752331301,13.210554915394182,13.81432366464857,0.5597320431708225,0.7784380305602716,0.7111111111111111,0.5942760942760943,0.1093375897845171,0.7154411764705882,0.922879177377892,0.8663697104677061,0.75,0.1423357664233576,0.5069755854509218,0.7072243346007605,0.6577335375191424,0.5531914893617021,0.1001021450459652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021170345309603,0.0043800060833417,0.0065466946804299,0.0088608881211259,0.0108252195057432,0.0130264296990375,0.0149478964863266,0.017225886821737,0.0196407210117885,0.0216249424051604,0.023781932294818,0.025881990448313,0.0280129622961781,0.0300476062898007,0.031723910103544,0.0335943237177166,0.0355573519048211,0.0377642563442289,0.0398726406259754,0.0420055048167146,0.0566430131574822,0.0713986424201793,0.0850536573072642,0.0979642962401583,0.1103499957780967,0.1259182420560154,0.1398982982472902,0.1520877716233489,0.1641613924050632,0.1750692461297318,0.1887864574909698,0.2017866811044937,0.2139343013257287,0.2254666885640773,0.2366445867454343,0.2476209489585412,0.2582097723946054,0.2673384372888989,0.2768404559698442,0.2852591650336347,0.2928597066076949,0.2999660632160368,0.3074891015921152,0.3138214894280846,0.3197600126565333,0.3260885672651831,0.3309593369528419,0.3368183498871619,0.3422223952453251,0.3471361564378675,0.3474960222216229,0.3478362798907797,0.3480471066677963,0.348860114133426,0.3488275081195435,0.3479971717544345,0.3467987804878049,0.3472593032070932,0.3493969702688329,0.3507601835915089,0.3514012007603561,0.3527646977012179,0.354357580736902,0.3538468454294127,0.3553615358641648,0.3551702494900361,0.3566766424397891,0.3584566929133858,0.3614636209813874,0.3628890662410216,0.3641147668512332,0.3655782240451712,0.3669119512814006,0.3701538461538461,0.3745482214190603,0.3783523752254961,0.3833930518772394,0.3911508101371001,0.3942442022911427,0.4003846153846154,0.0,2.313886612270052,59.95345674248925,203.48156488855412,304.9712124839512,fqhc7_80Compliance_baseline_low_initial_treat_cost,11 -100000,95637,42089,395.98690883235565,6954,71.67727971391825,5409,56.03479824754018,2237,23.024561623639386,77.27514686010801,79.68735172936556,63.27600815666828,65.05692013657772,77.00671510989946,79.41799006168135,63.17881979657491,64.96169020619705,0.2684317502085491,269.3616676842083,0.0971883600933694,95.22993038066828,109.57584,76.74958603770004,114574.73571943914,80250.9343012642,266.8339,165.70125457756026,278457.7726193837,172712.5865361953,293.2754,139.7288538864558,303739.6196032916,143820.67532042964,3591.47114,1604.3477579210517,3720144.88116524,1642504.1776687684,1313.7426,567.3691319569876,1357275.991509562,576854.6804707061,2203.3046,905.129558899774,2269135.230088773,915910.0002043516,0.37819,100000,0,498072,5207.942532701779,0,0.0,0,0.0,22406,233.73798843543813,0,0.0,27059,280.0485167874358,1915466,0,68714,0,0,4467,0,0,61,0.6273722513253239,0,0.0,2,0.0209124083775107,0,0.0,0.06954,0.1838758296094555,0.3216853609433419,0.02237,0.3181942171303873,0.6818057828696127,25.39156396634217,4.58724952939109,0.3148456276576077,0.2231466075060085,0.2255500092438528,0.2364577555925309,11.182142762456609,5.5567211876003935,23.68116904839131,12782.36616497899,61.04784877553535,14.320160624847354,19.17327957567008,13.62734095035425,13.927067624663676,0.5481604732852653,0.7638773819386909,0.6905460951262478,0.5770491803278689,0.127443315089914,0.7055682684973302,0.8790931989924433,0.8618925831202046,0.717948717948718,0.172,0.4978038067349927,0.7074074074074074,0.6394817073170732,0.5364308342133052,0.1166180758017492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.0046521999128345,0.0069707270052255,0.0091518537328593,0.011422003885312,0.0136976535766661,0.0158665415833911,0.018274443344121,0.0206618752108615,0.022853866317169,0.0248017806406613,0.0268948655256723,0.0288797892917404,0.0309224156591112,0.0327647095268581,0.0346657563155608,0.0366301125645224,0.0388617717312285,0.0408645341214177,0.0431731200400446,0.0575140309988398,0.0712916103479709,0.08395134351562,0.0973094264885592,0.109351894883603,0.1245499216334138,0.1379555838911911,0.1503869193544948,0.1626948882301955,0.173442083884071,0.1870034542314335,0.1996725257804621,0.2123626613184513,0.224044914250625,0.2340458402763217,0.2448181636416146,0.254871456232442,0.2644158071723577,0.2736740268609151,0.2822865937701002,0.2902619550337595,0.297512227734966,0.3046439334614745,0.3118341560672119,0.317743819349815,0.3236401337957763,0.3289109035049219,0.3342083131578277,0.3389988963188989,0.344186600338696,0.3444523941304318,0.3449255769681754,0.3451211248517702,0.3455606563074739,0.3465163720833271,0.3449043510301839,0.3441762354881685,0.3445252352437981,0.3447698458804634,0.3456384233284494,0.3476652015477666,0.3494247866463378,0.3502731092436975,0.3511986186172717,0.3523736009262833,0.3526674856888935,0.354575070012002,0.3576165214096248,0.3584685956245589,0.3600495187891857,0.3608072857077479,0.3643664007709192,0.3668290830854901,0.3677222434185425,0.3711007869536361,0.3727710843373494,0.3740102468560782,0.3761052848036191,0.3772739994402463,0.3818606461658232,0.0,1.9313603068430292,58.23438036771612,208.38016691988125,310.0680055810104,fqhc7_80Compliance_baseline_low_initial_treat_cost,12 -100000,95685,42299,398.41145425092753,7059,72.50875267805822,5489,56.78005957046559,2203,22.65767884203376,77.28391542799022,79.68206547994262,63.28504443165552,65.05978593819074,77.01219030370326,79.40944343959366,63.1852543706834,64.96205833621798,0.2717251242869594,272.6220403489634,0.0997900609721185,97.72760197276398,108.33548,75.90123455917482,113220.9646235042,79324.06809758564,268.68835,167.9121544981167,280198.56821863406,174877.7807369146,302.09723,145.07757562305255,312060.2497779171,148738.55718682843,3578.30686,1625.2076986670495,3703774.0189162353,1662598.1174343398,1305.3047,573.2928651924743,1347719.0468725506,582710.8713037858,2151.26806,894.6963782174034,2214207.158906829,906294.539780586,0.37962,100000,0,492434,5146.407482886555,0,0.0,0,0.0,22638,235.9408475727648,0,0.0,28014,289.1048753723154,1919191,0,68940,0,0,4267,0,0,46,0.4807441082719339,0,0.0,0,0.0,0,0.0,0.07059,0.1859491070017385,0.3120838645700524,0.02203,0.3217567567567567,0.6782432432432433,24.910713574314236,4.4020599068585815,0.3271998542539625,0.218436873747495,0.2321005647658954,0.2222627072326471,11.327319542485538,5.945582768399524,23.480839170268226,12809.6429164167,62.427286440672496,14.305020023162967,20.567062871457512,14.265560468810824,13.289643077241177,0.5636728001457461,0.7848206839032527,0.6976614699331849,0.6028257456828885,0.1081967213114754,0.7275910364145658,0.9207459207459208,0.8257080610021786,0.7766666666666666,0.1333333333333333,0.5060329967988181,0.7090909090909091,0.6537023186237846,0.5492813141683778,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023408524350945,0.0046048360921778,0.006974831720763,0.009136086015386,0.0114770611397698,0.0138741748838725,0.016166046203274,0.0183539649466846,0.0204346714395295,0.0228134155586059,0.0247245419291298,0.0265607661008589,0.0284211934431627,0.0305778565613051,0.0330219354838709,0.0348518537669993,0.0371372024827214,0.039144651476618,0.0408384043272481,0.0428252803601951,0.0579645047058946,0.0710225190799736,0.0842157181685573,0.0969160678023168,0.1094224924012158,0.1253043165315324,0.1385523619413682,0.1511208135882008,0.1626905235255135,0.1738304517209182,0.1880193569942769,0.2007322991593725,0.2131688407848603,0.2235571131310919,0.2336882246616408,0.2448601243339254,0.2552297044979372,0.2654312638081068,0.2749593625316858,0.2832524466779105,0.290725857890037,0.2985114893317537,0.3058489804638355,0.3125518036686007,0.3184907314934353,0.324235201126357,0.3288269081241065,0.3341489836232715,0.3399870298313878,0.3449232476419456,0.3451257013379369,0.3454475319272046,0.3458051964529908,0.3460265140015324,0.3461567103048717,0.3451775870276246,0.3451231902463805,0.3453606551985001,0.3467390931834538,0.3490584630820776,0.3501525021651542,0.3512159233262413,0.3527809451412644,0.3545682017988774,0.3551224727838258,0.3561607823549515,0.3541487470611847,0.3559424150177575,0.3579441230421899,0.3600891861761427,0.3592264081931236,0.3610652463382157,0.3630477148425222,0.3659805473874689,0.3688241337442794,0.3692435184089025,0.3689379987722529,0.3708757637474542,0.3805532271584241,0.3806576402321083,0.0,2.1678738225618552,63.12240067596687,211.83732711881052,301.97139875215663,fqhc7_80Compliance_baseline_low_initial_treat_cost,13 -100000,95657,42218,398.3294479233093,6814,69.86420230615637,5309,54.925410581557024,2097,21.5143690477435,77.35161970545354,79.75696465267359,63.31721993396855,65.0941351563543,77.09135043075511,79.49850203459381,63.2215685888084,65.00185457176474,0.2602692746984303,258.46261807977555,0.0956513451601495,92.28058458955957,109.05048,76.3915398369851,114000.64814911612,79859.07475774309,265.23958,165.58672027098325,276713.3717344261,172538.05145030597,293.34313,140.4269760494151,303414.2718253761,144240.23489021178,3479.63043,1569.602714294425,3600023.260190054,1603487.1707095518,1275.24842,556.5322202302209,1317650.6789884693,566498.3004223478,2068.70158,863.067748383349,2123920.131302466,868380.3257058485,0.37853,100000,0,495684,5181.847643141642,0,0.0,0,0.0,22374,233.2918657285928,0,0.0,27193,280.9935498708929,1921889,0,68857,0,0,4375,0,0,50,0.5227009000909499,0,0.0,1,0.0104540180018189,0,0.0,0.06814,0.1800121522732676,0.3077487525682418,0.02097,0.3152143457551135,0.6847856542448866,25.21297403718492,4.489375049009658,0.3322659634582784,0.2168016575626295,0.2201921265775099,0.2307402524015822,11.026882177326527,5.439488619103345,22.27832728359474,12732.106056296532,59.741402340068674,13.610847719790032,19.78797443739076,12.890227563779431,13.452352619108456,0.5547184027123752,0.7715030408340573,0.70578231292517,0.5680068434559452,0.1208163265306122,0.7360703812316716,0.9250585480093676,0.8853211009174312,0.7322834645669292,0.1497975708502024,0.4920152091254753,0.680939226519337,0.6468373493975904,0.5224043715846994,0.1134969325153374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0045834812148253,0.0064647735806929,0.0087072258798667,0.0109857693598754,0.0130780199633326,0.01522459593127,0.0174816962963719,0.0194580777096114,0.0215817021581702,0.0239656109897099,0.0262965893559956,0.0282794603439226,0.0302892843151405,0.0323510272380775,0.034390001655355,0.0362232471368606,0.0382950452087074,0.0402929640765285,0.0423218083997163,0.0571240491515506,0.0707592113667061,0.0828470064656982,0.0963234210913988,0.1086825746942049,0.1239706162542075,0.1381261812235883,0.1502099720747799,0.1622607597915975,0.1735180412371134,0.1867640081093905,0.2001126601887058,0.2118668974300362,0.2231720665499124,0.2338314484247156,0.2442547530624688,0.2540948805613282,0.2635892816933123,0.2731195004257735,0.2811504891067787,0.2895507191039837,0.2962906676330648,0.3029227730267438,0.309258593843574,0.3156144162954151,0.3212298069345942,0.3265109769964139,0.3329607093405826,0.3387134291326372,0.3434034819711855,0.3442686896403303,0.3440699160402897,0.3447140283719883,0.3446677640128216,0.3447451283269962,0.345049292756108,0.3447402977518313,0.3461273270512526,0.3468250576873771,0.3474820015363453,0.347804054054054,0.3490515655596653,0.3501563385306276,0.3508587530190535,0.3512728146013448,0.3529427063015266,0.3540236433556473,0.3558303442199987,0.3575919356538232,0.3593054672600127,0.3613947128532361,0.3621190513917499,0.3628385155466399,0.3667680608365019,0.366407202475851,0.3686471009305655,0.3725007689941556,0.3714920250353321,0.3724959393611261,0.3675084809649453,0.0,2.150608901245576,60.28399467292338,192.7728940185636,303.1896280356906,fqhc7_80Compliance_baseline_low_initial_treat_cost,14 -100000,95806,42551,400.7369058305325,6899,70.98720330668226,5287,54.74604930797653,2141,22.0132350792226,77.3507064425629,79.67799307951192,63.34838135415546,65.06955792752086,77.07738803629879,79.4037898687546,63.2475967112188,64.97057552801242,0.2733184062641101,274.2032107573209,0.1007846429366594,98.98239950844356,109.5028,76.646627375172,114296.39062271676,80001.90737028161,265.77431,166.11696241260088,276964.2297977162,172944.2857572604,289.78182,138.7268193755739,300137.29829029494,142965.30997363263,3480.24622,1575.8899488915292,3604687.8274847087,1616966.5249478407,1238.3882,542.440653944668,1282640.4191804272,556237.9075187091,2104.54058,887.7881133260616,2165851.679435526,901143.4055661042,0.38196,100000,0,497740,5195.290482850761,0,0.0,0,0.0,22362,232.9394818696115,0,0.0,26914,278.5629292528652,1921380,0,68978,0,0,4320,0,0,38,0.396634866292299,0,0.0,2,0.020875519278542,0,0.0,0.06899,0.1806210074353335,0.3103348311349471,0.02141,0.3155293148427845,0.6844706851572154,25.39450694796376,4.470453105690571,0.3300548515226026,0.2084357858899186,0.2339701153773406,0.227539247210138,10.7484511750978,5.30143006209362,23.014987657141823,12820.976625490255,59.80170111219618,13.001387636786758,19.71686104150074,13.730722905255972,13.35272952865271,0.5498392282958199,0.7767695099818511,0.6859598853868195,0.5917542441390461,0.1014131338320864,0.7044776119402985,0.9397260273972604,0.8601895734597157,0.7183098591549296,0.1263940520446096,0.4973397517101596,0.6960651289009498,0.6303854875283447,0.5540398740818469,0.0942184154175588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0044403892944038,0.0065653951921418,0.0085121079148382,0.0106861070440865,0.012959776843434,0.0152867799926623,0.0175220173281219,0.019518276669017,0.0215104379860826,0.0235772690944115,0.0258062530141498,0.028097220081188,0.0301620308414486,0.0325032224800206,0.0344225544180088,0.0365886467581382,0.0385337079234094,0.0404390765683902,0.0425788854534286,0.0569288076878932,0.0706362068064195,0.0842243186582809,0.0976775956284153,0.110116977552956,0.1258561643835616,0.1393837214234211,0.1513594040968342,0.1621638931289561,0.1732537454186938,0.1871219785186939,0.2003458337836377,0.2122476476084925,0.2234264550033322,0.2333098777377078,0.243809608107809,0.2546169878403531,0.2645730337078651,0.2737949485330794,0.2827087291957602,0.2910740077416373,0.2986503067484662,0.3060272902637901,0.312846752064036,0.3197959679378188,0.3261035664111601,0.3317986763583591,0.3372610897615351,0.3424962756655224,0.3467931298314117,0.3471812884385051,0.3464851921171419,0.3463413946671176,0.3460297246060115,0.3462213626896757,0.3454723956495727,0.3453238551616895,0.3464155668693259,0.3486685299816526,0.3492868405963302,0.3503523116922265,0.3516166855462151,0.353552823065404,0.3554783550271831,0.3565154264972777,0.3585743177579912,0.3599666244677178,0.3613619023397762,0.3636170137287594,0.3648508119350452,0.3693129489777123,0.3723880999946007,0.3737147966025927,0.3757838507393357,0.3750950570342205,0.3769507803121248,0.3807596513075965,0.3857202331390508,0.3918194640338505,0.390282131661442,0.0,1.6193005693929166,59.58244315335869,197.7460075464696,302.7160629146751,fqhc7_80Compliance_baseline_low_initial_treat_cost,15 -100000,95730,42354,398.6733521362164,6873,70.56304188864515,5340,55.1446777394756,2100,21.55019325185417,77.31652017658898,79.67793761463557,63.31665033110207,65.062827556623,77.05676756139906,79.41873324487334,63.22185034456524,64.97071405276628,0.2597526151899245,259.20436976223016,0.0947999865368274,92.1135038567229,109.32526,76.54888647719632,114201.67136738743,79963.32025195478,267.34142,167.34104859491973,278658.9888227305,174198.1391360282,296.59856,142.20065010958115,305916.97482502874,145437.83799233806,3514.87095,1586.789212871338,3635533.552700303,1621450.4678484674,1296.96733,566.0989444478724,1337088.9689752427,573620.4788967647,2068.6364,861.3742175650135,2126061.52721195,869866.2381827049,0.37939,100000,0,496933,5190.985062153975,0,0.0,0,0.0,22503,234.43016818134336,0,0.0,27479,283.06695915595947,1917652,0,68848,0,0,4309,0,0,50,0.5118562624046799,0,0.0,1,0.010446046171524,0,0.0,0.06873,0.181159229289122,0.3055434308162374,0.021,0.3138342112558913,0.6861657887441087,25.16462195461077,4.485729793411953,0.3277153558052434,0.2155430711610486,0.2269662921348314,0.2297752808988764,11.017793949555193,5.532714034506025,22.444856029438206,12809.684984546526,60.55505825502164,13.729114721940388,19.769219792992025,13.487562024017995,13.569161716071225,0.5589887640449438,0.8036490008688097,0.6954285714285714,0.5750825082508251,0.1189894050529747,0.7180059523809523,0.9224806201550388,0.8669623059866962,0.7211155378486056,0.1411764705882353,0.5055055055055055,0.743455497382199,0.6358737490377213,0.5369406867845994,0.1131687242798353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022690207757214,0.0042578643768818,0.0065161126617609,0.0087078451893473,0.0109659830729166,0.0133725785753569,0.0155120190101271,0.0177588513423812,0.0199179967484995,0.0223905810084463,0.0245365433516528,0.0265838381764041,0.0288540638367884,0.0307782606009432,0.0324823353447831,0.0345718300545544,0.0365094974380208,0.0385979834861624,0.0409139103137148,0.0428074342626161,0.0576192265931679,0.0713620525484205,0.0848984385650318,0.0980590078438794,0.110784251702832,0.1252749809628564,0.1390807158238657,0.1507732918924097,0.1623417552481171,0.1733253229197957,0.1870267242586469,0.2003873788088642,0.2120790335033329,0.2233993702440304,0.2347126360864348,0.2456002305168897,0.2556804859257935,0.265718529186732,0.2750961854932982,0.2838110293949183,0.2910172296085442,0.2980838967784198,0.3053980131901441,0.3111804222648752,0.3180353777885842,0.3242356192779409,0.3300890609146593,0.33585482330468,0.3401349968258904,0.3447893276977942,0.3454665516683737,0.3463654792933681,0.3460696067487177,0.3464320398904173,0.3467149477699793,0.3464981650108256,0.3452445177874393,0.3464326907233481,0.3475679849017757,0.3482662071936248,0.3486471729020353,0.349514755790184,0.3508635214827296,0.3511781635039122,0.3520895269861987,0.3532580274029913,0.3537681823387928,0.355419029615627,0.3580325100274435,0.3616529978501473,0.3634411549707602,0.36574024585783,0.369528032942667,0.3726878282712948,0.3735984170357109,0.380849790544584,0.3795609152752009,0.383130081300813,0.3903387007218212,0.3921113689095127,0.0,2.53063015491084,59.01433194205522,205.38937885513997,300.887186397371,fqhc7_80Compliance_baseline_low_initial_treat_cost,16 -100000,95681,42740,402.7549879286379,6980,71.75928345230506,5427,56.14489815114809,2169,22.39734116491257,77.40264542862671,79.78347148405733,63.35728834693722,65.11216979814839,77.13367527656403,79.51147131287175,63.25944148696116,65.01487324185582,0.2689701520626784,272.0001711855815,0.0978468599760589,97.29655629256229,110.10934,77.11771753545102,115079.62918447758,80598.77879145391,269.65511,168.1957489798126,281287.4029326617,175248.20913223378,300.62084,144.122916582998,309984.14523259585,147414.39091324562,3590.9376,1624.3164504110175,3718576.112289796,1663395.1957633945,1345.77671,587.9372714373916,1390910.954107921,598955.5392302122,2148.1448,892.0748585098277,2219488.216051254,910603.5790935116,0.3835,100000,0,500497,5230.892235658072,0,0.0,0,0.0,22704,236.7136631097083,0,0.0,27863,287.15209916284323,1917477,0,68715,0,0,4511,0,0,49,0.4807642060597193,0,0.0,1,0.0104513957839069,0,0.0,0.0698,0.1820078226857888,0.3107449856733524,0.02169,0.3280843488977132,0.6719156511022867,25.17620895279769,4.453985007634639,0.3254099871015294,0.2115349180025797,0.226460291136908,0.2365948037589828,10.95093402297992,5.5023435773354565,22.93551381857833,12926.117227136076,61.14462542496614,13.515479189019116,19.81010349032408,13.742290837928648,14.076751907694296,0.5577667219458264,0.7770034843205574,0.6987542468856173,0.595606183889341,0.131619937694704,0.7299058653149891,0.9342105263157896,0.9028697571743928,0.7545126353790613,0.1291512915129151,0.4990113692535838,0.69921875,0.6283320639756284,0.5493697478991597,0.1322803553800592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809875343034,0.0049053888331458,0.0071515520389531,0.0093943918019966,0.0115313043389837,0.0135735087469197,0.0157411277743227,0.0177687510843939,0.0199070052628889,0.022401653772156,0.0244367453207322,0.02647626478318,0.0285726036129589,0.0306388325317459,0.0329749695631538,0.0350059428453309,0.036902432205759,0.0390793624439648,0.041027934355305,0.0429702970297029,0.0569634798596022,0.071071836162037,0.0848058761804826,0.0972377085393305,0.1101711898910418,0.1257234148354264,0.1395082297757638,0.1517809619110477,0.1642480070101947,0.1763810095767156,0.1901510827778555,0.2037053068998355,0.2154244328932773,0.2274203247143716,0.2380564752989318,0.2493771936623227,0.2594512636988973,0.2681923893626344,0.2776884034984366,0.2861357269452861,0.2939587086046833,0.3012534721411731,0.3092102932319284,0.3160923665948791,0.3215693408525862,0.3264776112054747,0.3313828457114278,0.3367795361597276,0.3420348664400822,0.3468933547554455,0.3481369005227159,0.3478982832205739,0.3481375358166189,0.3484632343405524,0.3499095840867993,0.3495528548498051,0.3492168960607499,0.3499326831510853,0.3507404121741504,0.3514781708861889,0.3521958351296133,0.3531267872285877,0.3543465083711306,0.3551328758856529,0.3555791045495051,0.3571391240723319,0.3579681958585974,0.3608669627949469,0.3614245416078984,0.3644368301525957,0.3644444444444444,0.3660144733315465,0.3710556329996198,0.3738797395633856,0.3744188253154948,0.3776115859449193,0.3817677001388246,0.3784715183458342,0.3794899917740609,0.3831316187594554,0.0,2.269882021217533,60.63005253110781,203.7233679160704,305.7033521456823,fqhc7_80Compliance_baseline_low_initial_treat_cost,17 -100000,95725,42462,400.3865238965788,6905,70.89057195090102,5395,55.75346043353356,2147,22.104988247584227,77.33907921770925,79.70608217006779,63.32552877917672,65.07561577297794,77.07701260002743,79.44270905099738,63.230496672527416,64.98235917612341,0.2620666176818247,263.3731190704083,0.0950321066492989,93.25659685453049,108.79396,76.16586106361864,113652.60903630192,79567.36595833757,267.59884,167.25717318313087,278951.9874640898,174129.14409311142,292.90666,140.82009577370445,301799.112039697,143945.35165471252,3558.75085,1596.5191630735687,3680274.9334029774,1630641.4686256344,1283.57685,556.4904994564912,1324589.8250195873,565160.6396019891,2121.54182,879.383903161296,2186065.938887438,893292.9354376779,0.37986,100000,0,494518,5166.027683468269,0,0.0,0,0.0,22550,234.9438495690781,0,0.0,27159,279.50901018542703,1921960,0,68917,0,0,4259,0,0,44,0.4596500391747192,0,0.0,0,0.0,0,0.0,0.06905,0.1817774969725688,0.3109341057204924,0.02147,0.3177673390439348,0.6822326609560652,25.02664077161408,4.49777891022126,0.3262279888785913,0.2103799814643188,0.2291010194624652,0.2342910101946246,10.911218012311094,5.383747505996493,22.922715330218665,12796.982841790154,60.73546532254352,13.33117002806472,19.941019385033908,13.603428611045327,13.859847298399568,0.5303058387395737,0.7480176211453744,0.6755681818181818,0.5647249190938511,0.0988924050632911,0.7222222222222222,0.9408450704225352,0.8513513513513513,0.7764705882352941,0.1074380165289256,0.4696267382288363,0.6602564102564102,0.6162613981762918,0.509683995922528,0.0968688845401174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0047248245934217,0.0068816418501263,0.0092566249390343,0.0116985239514562,0.0141156341341698,0.0163055116504359,0.0183667010382954,0.0204809914313176,0.0225117269915401,0.0246238731578245,0.0267144603186015,0.0283957092756574,0.0305162626335472,0.0321944673823286,0.0340933767643865,0.0363199386725507,0.0387920298879203,0.0406796580912172,0.0423811805888358,0.0568752545133704,0.0706147004969919,0.0841721187720181,0.09728911228417,0.1100823587721055,0.1251070941264821,0.1374649919375371,0.1490865732657667,0.1611531392913621,0.1725014752427444,0.1861302070986789,0.1987722223425218,0.2114292552381367,0.2229698680496291,0.2336621454993834,0.2446523175137986,0.255029361198562,0.2649104249189773,0.2742830554830509,0.2822801489544543,0.2902486721670003,0.297453771389139,0.3047642697506119,0.311246542702858,0.3180803571428571,0.3242754514589381,0.3295485772814709,0.3353353480458135,0.3404799751870662,0.3452721496460538,0.3458548525930708,0.3458537994799191,0.3461950696677385,0.3462674465743904,0.3464880952380952,0.3460423600141097,0.346397146254459,0.3473802037893628,0.3478447314705226,0.3491212338593974,0.3497225618357942,0.3516150139789423,0.3518359120777612,0.3531590169453484,0.3542986534338641,0.3557504110232521,0.3561318731592943,0.357602523659306,0.3612607853495334,0.3649063984353171,0.3664542161492962,0.3699833895943846,0.3710407239819004,0.3727755951005315,0.3739368739368739,0.3756430194999401,0.3837644125895917,0.3828430364122608,0.3906729963697291,0.3900270583687669,0.0,2.352476624515184,56.8947680938455,208.2813317502801,309.70338941171025,fqhc7_80Compliance_baseline_low_initial_treat_cost,18 -100000,95696,42453,399.93312155158,6853,70.60901187092459,5348,55.40461461294098,2161,22.278883129911385,77.30793472821749,79.68502746175396,63.31631099018998,65.07078587910493,77.04774061175097,79.42134587762669,63.22204617910951,64.9768786646361,0.260194116466522,263.6815841272693,0.0942648110804711,93.90721446882822,109.14134,76.47936261292732,114050.05433873934,79919.07980785752,264.44963,165.4378945203413,275894.6768934961,172429.81370207877,294.46135,141.08352818260127,304490.2817254639,144919.67871226455,3539.73362,1593.1587077007714,3672286.7726968736,1638163.181011506,1277.88463,557.4337624874421,1324899.201638522,572045.511293515,2127.79698,877.7503628936586,2196577.1610098644,895127.8814686572,0.38119,100000,0,496097,5184.093379033607,0,0.0,0,0.0,22251,232.03686674469157,0,0.0,27289,281.9344591205484,1919380,0,68963,0,0,4384,0,0,55,0.5747366661093463,0,0.0,0,0.0,0,0.0,0.06853,0.1797791127784044,0.3153363490442142,0.02161,0.3205074585250244,0.6794925414749756,24.961420329422044,4.487233596775049,0.3270381451009723,0.2137247569184742,0.2238219895287958,0.2354151084517576,10.837359018613403,5.405019200344822,22.967601900001675,12854.228381959509,60.65295791461263,13.573861541691594,19.848655587583053,13.481136977271248,13.74930380806675,0.543754674644727,0.7777777777777778,0.6952544311034877,0.5555555555555556,0.1096108022239873,0.7133382461311717,0.917098445595855,0.8390022675736961,0.7304964539007093,0.1532258064516129,0.4860937108494111,0.7067371202113606,0.6467889908256881,0.5016393442622951,0.0989119683481701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376121337302,0.0045397430181184,0.0068371559865691,0.0091919232956853,0.0111972174762021,0.0133192130666775,0.0156315322572422,0.0178458397141398,0.0200576580997362,0.0223254956956116,0.0242649772419731,0.0264681724845995,0.0283019838127461,0.0304313337660063,0.0325356778008234,0.0346727590377637,0.0366571345683617,0.0386611851667289,0.0407560359085849,0.0426665276764307,0.0570521324043995,0.0714554855456239,0.0851237935375577,0.0971531334462124,0.1091187012439384,0.1246801311198054,0.137786547009091,0.1504794950666823,0.1628513133859613,0.1748308002531292,0.188669696121293,0.2009237625475943,0.2132551995564205,0.2241584764570191,0.2345396546034539,0.2449987815414608,0.2551747994242164,0.2648485053048458,0.2738589682485645,0.2830352949262827,0.2908242432664026,0.2981947093166103,0.3062224747833499,0.3123012873579767,0.3181403495967594,0.3241762310255461,0.3301322635241021,0.335756370035963,0.3406573428389627,0.3466606689246401,0.3471607470581885,0.3474318990975078,0.3486312399355877,0.3493975903614458,0.3495161554863047,0.348818280940461,0.3485002541942044,0.3503949342875517,0.3519414975795653,0.3521217662561179,0.3529699616050591,0.3546593594249518,0.3554499379613468,0.3565453362937047,0.3584039803878946,0.3599695585996956,0.3616112385321101,0.3644108053329955,0.3681371331227597,0.371486826850038,0.3717099208540401,0.3717776944102042,0.3726027397260274,0.3747112274757431,0.3772813688212927,0.3794258373205741,0.381782057160324,0.3826210249139153,0.3858117326057299,0.3875379939209726,0.0,1.9057088665065345,60.35201135209355,203.96813467637463,301.31181549778046,fqhc7_80Compliance_baseline_low_initial_treat_cost,19 -100000,95709,42557,400.23404277549656,6972,71.52932326113532,5415,56.0239893844884,2202,22.714687228996223,77.38171245272493,79.75664717085671,63.34258245905804,65.0955424500296,77.110518669376,79.48308753284951,63.2437134165393,64.99800548535879,0.2711937833489202,273.5596380071996,0.0988690425187428,97.53696467080886,109.29314,76.57538461882957,114192.93901304998,80008.34177639468,265.31828,165.32246341716285,276640.6503045691,172163.1028871296,301.64148,144.94213248739,311237.20862196863,148476.92773762328,3583.40819,1622.2069421871877,3710253.100544359,1661213.0650111884,1308.69497,572.0205069242692,1350547.3988862073,581054.8252560878,2165.59752,893.0543220995452,2234945.720883094,908778.619089124,0.38168,100000,0,496787,5190.588136956817,0,0.0,0,0.0,22311,232.53821479693653,0,0.0,27956,288.30099572662965,1920531,0,68893,0,0,4248,0,0,46,0.4701752186314766,0,0.0,0,0.0,0,0.0,0.06972,0.1826661077342276,0.3158347676419966,0.02202,0.322928026172301,0.677071973827699,25.160188741137738,4.539659639011891,0.3346260387811634,0.2029547553093259,0.2291782086795937,0.2332409972299169,11.058091865385723,5.458850406033696,23.26544874144008,12894.796522200657,61.06620210402021,13.010273762611517,20.569643331295133,13.673915828483002,13.812369181630569,0.5602954755309326,0.7816196542311192,0.7168874172185431,0.5817888799355359,0.121931908155186,0.7281205164992827,0.9376693766937668,0.891213389121339,0.7142857142857143,0.1461538461538461,0.5021139020144243,0.7027397260273973,0.6544227886056971,0.5419287211740041,0.1156530408773679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0045413536883293,0.0070016641636562,0.0091826991447087,0.0116361860976056,0.0139307535641547,0.0162222788682131,0.0187124831557025,0.0209357717510197,0.0229092025795884,0.0249633494971448,0.0271865791932321,0.0293905925423171,0.0317058096415327,0.0335490129304562,0.035731271065528,0.0376776171340983,0.0396592335868674,0.0415899659917007,0.0436762682896327,0.0587141782939259,0.0723947318829958,0.0859109413690351,0.0987502366975951,0.1111017351405516,0.1258803375420341,0.1396044646267453,0.1516154787885239,0.1635064255269145,0.1751083365512507,0.1893694509094043,0.2024702583920588,0.2144185490097987,0.2255441020539784,0.2359908933933108,0.2470082915435112,0.2568471763761263,0.2666861596248355,0.275318429797997,0.2835762787555392,0.291839733428978,0.2992646113196076,0.3066043318735945,0.3137936407109555,0.3199416874202758,0.3267474393896442,0.3321197562837018,0.3371746549177405,0.3427568246893746,0.3475747376757078,0.3478348683147519,0.3477866248607615,0.3479852963959269,0.3481618336917769,0.3479337862291969,0.3472258320974819,0.3462079873467774,0.3472709391902966,0.3491606305922454,0.3494635154885395,0.3503426837946144,0.3511163801620233,0.3526596300553872,0.3534945035302529,0.3534685832411903,0.35425554052648,0.3559293093144369,0.3575843137254902,0.3599859845830413,0.3643956568428588,0.3678685531720675,0.3711708826982602,0.3694546841235541,0.3702733923758182,0.3704653371320038,0.3696904247660187,0.3745550224423464,0.3730175077239959,0.3776595744680851,0.3763736263736263,0.0,2.1139661519025608,61.496147091752974,201.9618683763053,303.9458206854523,fqhc7_80Compliance_baseline_low_initial_treat_cost,20 -100000,95851,42561,399.4950496082461,6963,71.2877278275657,5522,56.95297910298275,2216,22.701901910256545,77.44506122741345,79.72298789715717,63.40474875222951,65.08419120772076,77.18220609635816,79.46222902989791,63.30850034657959,64.99184916260504,0.2628551310552893,260.7588672592556,0.0962484056499164,92.3420451157284,108.67582,76.12047245275838,113379.95430407612,79415.41815187987,269.18952,167.59467781916328,280181.0205423,174188.55079150273,299.56304,143.02930687073916,308521.10045800253,146102.37199870366,3646.13478,1635.4099769658603,3762369.448414727,1664608.5455194642,1356.32401,595.1461540890688,1395765.4797550363,601639.3298860408,2179.8005,900.8827748657416,2234491.38767462,905707.9554498538,0.38208,100000,0,493981,5153.634286548914,0,0.0,0,0.0,22695,236.09560672293452,0,0.0,27752,285.5264942462781,1925255,0,69203,0,0,4185,0,0,37,0.3755829360152737,0,0.0,0,0.0,0,0.0,0.06963,0.1822393216080402,0.3182536263104983,0.02216,0.3194217130387343,0.6805782869612657,25.00153041170729,4.548467492282614,0.3301340094168779,0.2057225642883013,0.2341542919232162,0.2299891343716044,11.118346971580506,5.596766472109312,23.40697239193781,12864.229575977271,62.14870921327747,13.345679151178762,20.537527945255334,14.436159241925656,13.82934287491773,0.5561390800434625,0.7720070422535211,0.6856829402084477,0.6063418406805878,0.1259842519685039,0.7228654124457308,0.9209039548022598,0.8544303797468354,0.7474402730375427,0.1877394636015325,0.5004830917874397,0.7046035805626598,0.6263899184581171,0.565,0.110009910802775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021761574120933,0.0044267061052077,0.0067529886537623,0.0091855791482278,0.0114516227366025,0.0136940309896124,0.0158274260571987,0.0177429716418367,0.0199328084632744,0.0225153374233128,0.0246672127790292,0.0269934875134608,0.0291688919929337,0.0308385450954575,0.0331241821984566,0.035146573080099,0.0372821759139562,0.039357105107719,0.0414655163463834,0.043588196120869,0.0579568087258469,0.0717203481022576,0.0845610177477619,0.0969095965160816,0.1092757038845166,0.1239999155601528,0.1380632180865145,0.1516909444426736,0.1632740107271195,0.1745877165758804,0.1889501456190691,0.2014123592229864,0.2136987788331072,0.2251926729690195,0.2358361062607759,0.2471072368857718,0.2571355333400202,0.2673790182132785,0.2770812551011154,0.2851307750394727,0.2927116938980816,0.3002888517266784,0.307274534396668,0.3140958879511581,0.320236447940184,0.3259686199167467,0.3315008452820737,0.336893018519697,0.3422170972506543,0.3463914260070746,0.3468566119541654,0.3472724522490065,0.3474468982979322,0.3470646737485406,0.3480496769221649,0.348187161285398,0.3465902813945047,0.3483980757273292,0.349002096364597,0.35030169268284,0.3512127564006588,0.3509812059050216,0.3516085088546579,0.3519036015291408,0.3520388536256972,0.3538902645640557,0.3537686152794783,0.3551895391965801,0.3565135305223411,0.3597715736040609,0.3597112441175126,0.3624265098877605,0.3624462433594738,0.3647357880141734,0.3643278189769918,0.3626545061802472,0.3669254658385093,0.3658283101226356,0.3633314700950251,0.3682564503518373,0.0,2.5978091956020264,60.71288801216977,206.811318256248,313.76911581304773,fqhc7_80Compliance_baseline_low_initial_treat_cost,21 -100000,95671,42288,397.8217014560316,6938,71.17099225470623,5397,55.70130969677332,2227,22.901401678669608,77.29747507811412,79.70111681687182,63.28577397120039,65.06603414258798,77.01516976440281,79.42009140067185,63.18107113826073,64.96493667489361,0.2823053137113049,281.02541619996657,0.1047028329396653,101.09746769437322,110.28028,77.19339810526223,115270.33270269987,80686.30839571264,268.79359,168.32336352561862,280194.6566880246,175178.27087165244,299.59507,143.9982901357143,308166.6858295617,146808.4248795584,3543.73736,1615.829692782673,3659844.48788034,1644701.2707954056,1293.16922,572.3566807023875,1333954.259911572,580532.3138257093,2183.21378,918.5484717070358,2245998.264886956,927621.5183712892,0.37878,100000,0,501274,5239.5605773954485,0,0.0,0,0.0,22642,235.87084905561767,0,0.0,27692,284.49582423095814,1907847,0,68570,0,0,4405,0,0,61,0.6376017811039918,0,0.0,0,0.0,0,0.0,0.06938,0.1831670098738053,0.3209858748918996,0.02227,0.3232752708819092,0.6767247291180908,25.16597888443781,4.407012799751838,0.3168426903835464,0.2225310357606077,0.2317954419121734,0.2288308319436724,11.03444541815682,5.620733482837359,23.807075875345596,12779.116746372058,61.13249117101053,14.08156717709595,19.345431508811497,13.983157316354164,13.722335168748916,0.5501204372799704,0.7443796835970025,0.7005847953216374,0.5979216626698641,0.1044534412955465,0.6949891067538126,0.913978494623656,0.8480392156862745,0.7301587301587301,0.1453900709219858,0.5004975124378109,0.6682750301568154,0.6543778801843319,0.5534188034188035,0.0923399790136411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0047166940539224,0.0069851261485354,0.0093791281373844,0.011749267578125,0.0139949886940047,0.0164007996409775,0.0184534629603153,0.0205569817032635,0.0227442627315644,0.0249043521073307,0.0270592344517269,0.0290426122919281,0.0310783657066309,0.0329977801868772,0.0351062289248846,0.0370854063018242,0.03911531073153,0.0410541319433606,0.0431896111475888,0.0576959237824624,0.0720873506904096,0.085503809263962,0.0983956656672452,0.1106223164646432,0.1256904031319437,0.1388337455811633,0.1516675010385266,0.1632336584531143,0.1742080962095994,0.1880170414711751,0.2004271326821547,0.2118105861719626,0.2223731784814287,0.2331139553086174,0.2444797052883868,0.2552563629656953,0.2647333851578959,0.273433860209311,0.2823943500492994,0.2898582637013687,0.2975075873867751,0.3043421567349068,0.3104450717760826,0.3162105878484527,0.3224543242208249,0.3283655112716871,0.3331376502718293,0.3380250571844458,0.3430387288977159,0.3425427806763807,0.3429842866816844,0.3433249833708374,0.3440198539976489,0.3444154682959541,0.3437778255396235,0.3426419283222328,0.3442404720035499,0.3458504098360656,0.3464271685176588,0.3482763140647529,0.3485841791398444,0.3505135191783693,0.3510635918312568,0.3513864818024263,0.3522703549060543,0.3542421734539539,0.3569560422246731,0.3581164371500017,0.3609184405644582,0.3637736885471024,0.3672837859467534,0.3692229879243852,0.3705513975866809,0.370682312860793,0.373584455835022,0.3751937984496124,0.3748205864260816,0.3738551207327227,0.3734423676012461,0.0,2.699538888817949,60.33457911540616,205.67275372077185,302.04372432299004,fqhc7_80Compliance_baseline_low_initial_treat_cost,22 -100000,95833,42488,399.601389917878,6893,70.83155071843728,5429,56.10802124529129,2180,22.372251729571232,77.32864418348662,79.6382889071019,63.32870225298407,65.03806802128999,77.04802239016267,79.35965150600187,63.22532607719309,64.9381363771338,0.2806217933239452,278.63740110002766,0.1033761757909772,99.93164415618594,108.83774,76.2532241420262,113570.21067899368,79568.85847466551,266.97994,166.43969406854907,278083.49942086753,173171.57353787217,301.16166,144.33611363686035,311122.59868729976,148098.42387237394,3606.46958,1636.010058313463,3730469.82772114,1674450.0502611394,1342.07402,591.1937848555827,1387726.5138313523,604247.3721644373,2152.96556,903.8189159830096,2212317.761105256,913363.1535504478,0.38132,100000,0,494717,5162.282303590621,0,0.0,0,0.0,22385,233.04081057673244,0,0.0,27868,287.6670875376958,1918325,0,69035,0,0,4376,0,0,72,0.7513069610676907,0,0.0,2,0.0208696378074358,0,0.0,0.06893,0.1807668100283226,0.3162628753808211,0.0218,0.3251245157719978,0.6748754842280023,24.972733482094764,4.46986165977155,0.316080309449254,0.2110885982685577,0.2355866642107202,0.237244428071468,10.901109866534629,5.393523821709826,23.419522125813607,12854.81656604602,61.639799722683485,13.704882753160964,19.39388621519386,14.290196023999336,14.250834730329323,0.552956345551667,0.7966841186736475,0.6934731934731935,0.5887412040656763,0.1133540372670807,0.7314487632508834,0.935483870967742,0.871331828442438,0.740983606557377,0.1742424242424242,0.4900348779272546,0.721399730820996,0.631578947368421,0.5410677618069816,0.09765625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0045614888699671,0.0067873991782072,0.0090707784820412,0.0112161887329672,0.0134493993076766,0.0158291713382937,0.0181554696031106,0.0202342265007051,0.022409823484267,0.024447723267347,0.0265388641448246,0.0286007913262422,0.0308629901481382,0.0329057273083506,0.0349476250490692,0.0372018419827184,0.0391290824261275,0.0411728657934917,0.0429329725228975,0.0581050918876071,0.0719319156054618,0.0852977244856247,0.0982535045501355,0.1102467613235092,0.1257029301086634,0.1387913940640673,0.1516534729315628,0.1637672337380792,0.1751771605004449,0.1884583907649896,0.2011706282660204,0.2136689865158764,0.224549588945251,0.2349225910806439,0.2453637028338466,0.2557035812795229,0.2656846515084969,0.2747245257298648,0.2837754118672846,0.2916130229537098,0.2998369176258022,0.3067659528984216,0.3130948947216613,0.319437003847465,0.3251654157614063,0.3305536397266286,0.3362873610119351,0.3417126533792118,0.3465254798146923,0.3470253044910745,0.3472513812154696,0.3473140349635501,0.3477565965360921,0.3477715565509518,0.3473308293824272,0.3463796477495107,0.3478698146804722,0.3491851318698267,0.3496653663075766,0.3504964645704829,0.3513711949835298,0.3526729427586786,0.3536207824838478,0.3553200222120283,0.3561438954632521,0.3575006440163723,0.3587436868686868,0.360457343887423,0.3634194831013916,0.3638938376501758,0.3658354247877396,0.3689652984837911,0.366415732063297,0.3676777251184834,0.3657920077034184,0.3638183217859892,0.3669050051072523,0.3654164368450083,0.3685647425897035,0.0,2.1524465791969805,62.54920766584238,205.3380980204207,302.50445848491205,fqhc7_80Compliance_baseline_low_initial_treat_cost,23 -100000,95737,42491,399.6365041728904,6944,71.27860701714071,5496,56.71788336797685,2186,22.332013745991624,77.35098256499538,79.69905582217503,63.33757887846742,65.07095975515664,77.07413914784868,79.42685889177544,63.23478929719905,64.97387850058642,0.2768434171466936,272.1969303995877,0.1027895812683681,97.0812545702131,107.92232,75.63839876335355,112727.91083906952,79006.4434475214,267.76092,167.01491569173936,279006.6327543165,173775.95284374256,295.72934,141.94775695458128,305879.91058838274,145813.4035147585,3635.77265,1630.1491689455622,3753754.0867167343,1658888.9961317591,1349.2498,588.9161409469164,1389643.0951460772,595498.9001264132,2151.96246,899.5603885792126,2200621.306287016,895974.5980387061,0.38032,100000,0,490556,5123.995947230434,0,0.0,0,0.0,22527,234.56970659201767,0,0.0,27445,283.56852627510784,1924805,0,69056,0,0,4209,0,0,49,0.5118188370222589,0,0.0,2,0.0208905647764187,0,0.0,0.06944,0.1825830879259571,0.3148041474654378,0.02186,0.3285070345581204,0.6714929654418795,25.07208946313216,4.532272505401684,0.3198689956331877,0.2168850072780203,0.2270742358078602,0.2361717612809316,11.028567890729626,5.554518953465275,23.168997707835786,12830.592441985378,61.80395458759764,14.100856648638652,19.71704482719089,13.809477714367636,14.176575397400468,0.5456695778748181,0.7911073825503355,0.6803185437997725,0.5729166666666666,0.1117103235747303,0.7139737991266376,0.9349397590361446,0.8597701149425288,0.7054263565891473,0.1390977443609022,0.4895681707908782,0.7142857142857143,0.6213151927437641,0.5383838383838384,0.1046511627906976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025113161119155,0.0046320227850923,0.0065954359583168,0.0088262777281222,0.0111437606125001,0.0133053720312325,0.0158000428130192,0.0179827112866517,0.0199204816075389,0.0219836453141471,0.0241917297086741,0.026288236501745,0.0285919909525523,0.0307692307692307,0.0327748777518724,0.0348220653443446,0.0369354070453745,0.0391009277130938,0.0409847996506622,0.0432572095349224,0.0578673737837725,0.0720181614654712,0.0848826113854897,0.0971957900049418,0.1095906297112373,0.124159512834609,0.1366702730223382,0.1490942376056368,0.1609291193879949,0.1720704675664656,0.1859553103923807,0.1990842471017395,0.2112746537863211,0.2224070385852793,0.2329990201798905,0.2441276562725166,0.2546270957364817,0.264257742167807,0.2737149214421941,0.2826376146788991,0.2902168752822389,0.2982123415165244,0.3052225470123906,0.3126392982960673,0.3195623398545181,0.3256106122750619,0.3307892497872979,0.3365351585857686,0.3424425008098477,0.3475543693681791,0.3481081810211101,0.3484209074610399,0.3488766186999562,0.3489548604064593,0.3489179165611641,0.3491054288566382,0.3478184908117723,0.3488621195392449,0.3490659811482433,0.3504813370074795,0.3516873556310916,0.3534863457235083,0.354419738556597,0.3551527659383552,0.3567709588776936,0.357750608686546,0.3594272485638343,0.3616194178439366,0.3641002181715814,0.366155072752641,0.3693512201822261,0.3727156139788393,0.3745413134252815,0.3759547815459823,0.3764161631419939,0.3813397129186603,0.3776147361848267,0.3788934426229508,0.381950265437273,0.3763106796116505,0.0,2.6034529458307327,60.145295192630726,202.088917841482,318.0025967193577,fqhc7_80Compliance_baseline_low_initial_treat_cost,24 -100000,95831,42279,397.70011791591446,7009,71.87653264601225,5467,56.33876303075205,2164,22.122277759806327,77.51248185563044,79.79817596924393,63.42745123530996,65.11078273366603,77.24422782432366,79.53075571694765,63.32944996638586,65.01569380280152,0.2682540313067818,267.42025229627586,0.0980012689241007,95.08893086450598,109.53448,76.71152292051994,114299.63164320524,80048.75553893828,268.2337,166.55705484311008,279204.0258371508,173104.55188664937,292.90033,140.5129299548702,300798.96901837614,142904.73907542558,3591.18683,1615.3636484839878,3706221.807139652,1644460.9753661684,1346.22201,585.0735765875208,1386296.469827091,592054.4169900247,2132.7922,883.4584033639989,2183672.632029301,889563.9631479057,0.38166,100000,0,497884,5195.437801963873,0,0.0,0,0.0,22575,234.85093550103824,0,0.0,27225,279.1372311673676,1927850,0,69041,0,0,4304,0,0,56,0.5843620540326199,0,0.0,1,0.0104350366791539,0,0.0,0.07009,0.1836451291725619,0.3087458981309744,0.02164,0.3127807268272764,0.6872192731727236,25.090822894758745,4.4462383604562605,0.3380281690140845,0.2101701115785622,0.2207792207792207,0.2310224986281324,11.348314441596866,5.8619804891785074,22.801444716340605,12809.056267480326,61.31981590277036,13.455338947169263,20.80968007537322,13.33126543719294,13.723531443034922,0.5520395097859887,0.7519582245430809,0.704004329004329,0.5700082850041425,0.1306413301662707,0.7081824764663287,0.8790931989924433,0.8593073593073594,0.7255639097744361,0.15234375,0.4992657856093979,0.6848404255319149,0.6522366522366523,0.5260361317747078,0.125124131082423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022767287960658,0.0046789074447291,0.006932971143028,0.0091424744548507,0.0114488307360978,0.0137089392860774,0.0159332939667284,0.0180698319464839,0.020034104949302,0.0221392780447898,0.0244943935282371,0.0265001179378313,0.0285858139558779,0.0308035898069243,0.0327322962092392,0.0346120475954387,0.0365790562913907,0.0385373035292166,0.0404620674610182,0.0426118913516496,0.056598460672048,0.0704643600280226,0.0836511861849274,0.0966180023106816,0.1087290723386332,0.1245207288090837,0.1373049855858911,0.1496049595389245,0.1610978902323198,0.1722513145072338,0.1859387265708171,0.1993951177360121,0.2117211504011638,0.2230508844725922,0.2343798057911156,0.245153656459764,0.2552698426846116,0.2641736219543703,0.2739310188593759,0.2825873262618873,0.2899973467763332,0.2985564992485408,0.3062415964899865,0.3127567593388745,0.3199820853608347,0.3260201950716163,0.3307936903796994,0.3360061817536925,0.340880957293171,0.3456467498358503,0.3459846574754573,0.3462033814704189,0.3466752653198559,0.3466881649223327,0.3476104465237475,0.347648136835675,0.3481725053749842,0.34844884380275,0.3489934029967782,0.3494149960761932,0.3506461884247986,0.352242405075801,0.3527340557080879,0.3539771584381914,0.3547212305628099,0.3554401454167749,0.3572828216851731,0.3592421210605303,0.3623132765601005,0.3662619356359778,0.3688495097598273,0.3684955937893411,0.3675810473815461,0.3709104646769928,0.3673583325579231,0.3697764251433922,0.367420814479638,0.3622327790973871,0.3649891774891775,0.3562570462232243,0.0,2.7895115098289684,60.14572188441763,202.12284400143287,310.1389740940828,fqhc7_80Compliance_baseline_low_initial_treat_cost,25 -100000,95720,42418,398.5687421646469,7016,72.01211867948182,5490,56.581696615127456,2198,22.503134141245297,77.31288813594676,79.67197360150212,63.318020272784125,65.06205623027344,77.04725254905827,79.407244446092,63.22065318604629,64.96793656554175,0.265635586888493,264.729155410123,0.0973670867378331,94.11966473169286,109.0936,76.39324404804044,113971.58378604264,79809.07234437989,267.81944,166.91104928512723,278971.6151274551,173551.2320153858,298.24218,142.85498609791046,305677.62223150855,144768.78545482544,3610.12476,1626.6449326916131,3726394.348098621,1654533.0941518564,1330.4675,580.9081735053521,1373561.575428333,590596.3917047022,2155.41152,892.9129448739207,2211002.2774759717,900125.4594619554,0.38122,100000,0,495880,5180.52653572921,0,0.0,0,0.0,22574,235.03969912244045,0,0.0,27723,283.75470121186794,1919052,0,68972,0,0,4398,0,0,42,0.428332636857501,0,0.0,0,0.0,0,0.0,0.07016,0.1840407114002413,0.3132839224629418,0.02198,0.3276797829036635,0.6723202170963365,25.097888785746093,4.474904054427087,0.317304189435337,0.2156648451730419,0.2435336976320583,0.2234972677595628,11.09969427590618,5.665323418249695,23.41723523684596,12844.97918858982,62.24784323135034,14.162242144793272,19.80147831244778,14.79403693856124,13.490085835548038,0.5550091074681238,0.7719594594594594,0.7238805970149254,0.56245325355273,0.097799511002445,0.7292857142857143,0.903846153846154,0.8791946308724832,0.6910299003322259,0.1864406779661017,0.4953545232273839,0.7005208333333334,0.6702702702702703,0.525096525096525,0.0766902119071644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022990135510137,0.0044699419211627,0.0069602978926328,0.0091618250518018,0.0113709177083227,0.0136150712830957,0.0158662180075456,0.0180600504333799,0.0202936185004191,0.022506425287474,0.0244947760199321,0.0268829901935616,0.0291570676320552,0.0314263936384986,0.0335922911056774,0.0357497209475381,0.037826307560084,0.0396372465602755,0.041731661155134,0.0437188076309949,0.058402238369665,0.0719233264276895,0.0853948844867183,0.0975091736849299,0.1100496631132761,0.1254495451660672,0.1390931567610012,0.1518777143830367,0.1634673930459862,0.1744804512406974,0.1875013459095118,0.2000475866022084,0.2124730902211494,0.224371944483939,0.2344262295081967,0.2448988634601324,0.2555943704728847,0.2653892458116273,0.2750843242138258,0.2836121934448773,0.2917038152029178,0.2994619253713885,0.3063224035309849,0.3134127916736612,0.3200563976031019,0.3260631018284488,0.3309365135040337,0.3365072495130924,0.3417842931394279,0.3460333408246632,0.3461175136973361,0.3458876726681187,0.3459278510692392,0.3460724637681159,0.3460729783331593,0.3460243261113588,0.3460449280896016,0.3475880267172425,0.347756685318046,0.3478104745318419,0.3487413153584003,0.3506470272526686,0.3508384354814955,0.3504666606838373,0.35180216114294,0.353881637574042,0.3537407163134803,0.3563863521055302,0.3603951281688146,0.3611790655704832,0.3637699797905567,0.3658783964127475,0.3674550614947966,0.3690339385581858,0.3733143399810066,0.3809751434034417,0.380581920024895,0.3848670756646217,0.3834733893557423,0.3911877394636015,0.0,3.0521087066665715,61.07154743093096,209.10460821589805,308.178251645276,fqhc7_80Compliance_baseline_low_initial_treat_cost,26 -100000,95798,42644,401.80379548633584,6870,70.70084970458673,5287,54.78193699242155,2117,21.82717802041796,77.37208356525132,79.70984616183969,63.35007434272507,65.07913377875316,77.11399596671282,79.44929161375016,63.25546894352919,64.9855598989152,0.2580875985384949,260.55454808953016,0.0946053991958848,93.57387983796173,109.8119,76.9280637524409,114628.59349882044,80302.36931088427,268.23061,167.62458809133972,279549.86534165643,174533.276397663,291.43412,139.18477946139888,301698.50101254723,143390.7236362158,3488.07831,1563.095945995943,3614433.286707447,1605116.969684498,1263.35829,548.6820118368856,1310903.5261696486,564935.6255384111,2091.2612,869.5951819762562,2157291.154303848,885611.4226976874,0.38333,100000,0,499145,5210.3906135827465,0,0.0,0,0.0,22560,235.03622205056476,0,0.0,27064,279.9849683709472,1918556,0,68860,0,0,4374,0,0,48,0.5010543017599532,0,0.0,0,0.0,0,0.0,0.0687,0.1792189497299976,0.3081513828238719,0.02117,0.3182069728832318,0.6817930271167681,25.30534455140936,4.513262810133951,0.3226782674484584,0.2125969358804615,0.2311329676565159,0.233591829014564,11.14784278515912,5.534308089284793,22.36831026235086,12935.611252607829,59.321506825024464,13.231650642292244,18.95361475206797,13.39606197798857,13.740179452675688,0.5452997919425004,0.7642348754448398,0.6899179366940211,0.5736497545008183,0.1182186234817813,0.6939890710382514,0.9175531914893617,0.8695652173913043,0.7192307692307692,0.1335740072202166,0.4977533699450824,0.6871657754010695,0.64050822122571,0.5343035343035343,0.1137787056367432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.0044807590933052,0.006596172190538,0.0089088895886876,0.0109529136580901,0.0132045121355269,0.0153706591648064,0.0174602526685307,0.0197228580771746,0.0217787329853648,0.024113300745022,0.0263754759387924,0.0284524849668499,0.0304262767710049,0.03254514143112,0.0345094797747584,0.0365397952529319,0.0388268967519807,0.0406479566920543,0.0424054388905662,0.0569985494693562,0.071666143708817,0.0853617627943057,0.0984848484848484,0.1112129448201757,0.1268526637157858,0.1403804376622688,0.1525816604287172,0.1647691503323765,0.1766400994129494,0.1909812611604741,0.2048854301772589,0.2167269802975472,0.2269239177962396,0.2380842406246563,0.2482501993443784,0.258656849620705,0.2678314445044072,0.2762686499478481,0.2845740721655387,0.2924363527003111,0.3003543072299723,0.308281610214577,0.3153186597370249,0.321303276399966,0.3271589733484408,0.3329452269170579,0.3385513365039803,0.3427451183374526,0.3478438612686272,0.3489813756471458,0.349361836591699,0.3493699078120154,0.3498054868613244,0.350657845833643,0.3491917566842871,0.3490479358742832,0.3497601682107891,0.3512962772697695,0.3517359745414238,0.3541951814005812,0.3551869352893493,0.3554889675837646,0.3566061365059486,0.3573613352279569,0.3592095977417078,0.361458900381056,0.3635932160486014,0.3649611856033874,0.3689766865277722,0.3702855047889647,0.372803503712012,0.3757518201962646,0.3752204247489074,0.3773799374822392,0.3746877601998334,0.3727593074919565,0.3736307508464449,0.3743213897937025,0.3743879472693032,0.0,1.450493571938026,57.02538680288178,199.4106179090008,305.7237616124984,fqhc7_80Compliance_baseline_low_initial_treat_cost,27 -100000,95648,42432,399.08832385413183,7114,73.08046169287387,5597,57.94161927065909,2230,23.01145868183339,77.25911226955019,79.6543395296735,63.27736057920528,65.04515980373166,76.98393979895931,79.37664834005692,63.17633063817825,64.94513271659687,0.2751724705908742,277.6911896165899,0.1010299410270292,100.0270871347908,108.53194,76.0123692923395,113470.16142522584,79470.94481049213,267.45936,166.45090736724583,279083.59819337574,173479.24406913453,298.58626,143.67482888736382,307698.43593174976,146810.73936066285,3694.35497,1658.3794090975812,3828661.174305788,1700048.384804263,1339.37221,583.686677755539,1387412.2720809637,597342.921708283,2193.0817,916.8560511782596,2264991.8450986957,935377.9959312336,0.38092,100000,0,493327,5157.734610237538,0,0.0,0,0.0,22539,235.07025761124123,0,0.0,27677,285.0347106055537,1916636,0,68900,0,0,4293,0,0,45,0.4495650719304115,0,0.0,1,0.0104550016728002,0,0.0,0.07114,0.1867583744618292,0.313466404273264,0.0223,0.3207698476343223,0.6792301523656776,25.045267123975638,4.519926900878287,0.3258888690369841,0.2131499017330713,0.227085938895837,0.2338752903341075,11.005624496567975,5.544175518427281,23.87748510337235,12896.336192569335,63.28068108030183,14.12963072511178,20.69515344153564,14.035940971947792,14.41995594170661,0.5433267822047525,0.7854149203688181,0.6776315789473685,0.5601888276947286,0.1191749427043544,0.7084818246614397,0.9376623376623376,0.8663697104677061,0.71875,0.1316725978647686,0.4880782069623271,0.7128712871287128,0.616,0.513733468972533,0.1157587548638132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.0047860959855605,0.0068712827071026,0.0092261420907169,0.0115061803754005,0.0137901533823559,0.0158043926015049,0.0178241473299509,0.0201388249966776,0.0223759903371752,0.0246880670924879,0.0269224055610888,0.0291077397788634,0.0311830393934399,0.0334674922600619,0.0357028382360543,0.0375941407423522,0.0398588332987336,0.0417199737884981,0.0436699887410866,0.0590952316261377,0.0733347297863426,0.0868597349686036,0.0993240112875373,0.1122069693769799,0.1274860737508737,0.1397633613730988,0.1523668481445572,0.1637920894772297,0.1748094062063782,0.1886615396231299,0.2010055151639921,0.2135660054682308,0.2250734101766227,0.2353473187302847,0.2463209569399247,0.2569884290861887,0.2665132387946887,0.2755713814404842,0.2840066662835469,0.2919399589045867,0.2993334585054449,0.3063671657030239,0.3132940327237729,0.3196110250247074,0.3260923350982235,0.3322444877190778,0.3364876254693127,0.3420577265461539,0.3470917833441511,0.3474129541522491,0.3478032460530317,0.3484166100158622,0.3481158155099665,0.3484209581912794,0.3477129216078854,0.3468351609874107,0.3467315945856718,0.3484921426360854,0.3490059445771448,0.3508824803631637,0.3523803849133051,0.3539977679041462,0.3548589482175267,0.3566315586512738,0.3579615173746182,0.3590988264184346,0.3612795250726285,0.3639058474785616,0.3654153354632588,0.3658547773037934,0.3662069702800941,0.3695569379205281,0.371979198531661,0.3757051523128996,0.3783008722666985,0.3792147806004619,0.3858573472307378,0.3871150042384854,0.3919936583432422,0.0,2.290617258024111,62.052248866055365,213.74618315659453,315.6728798681939,fqhc7_80Compliance_baseline_low_initial_treat_cost,28 -100000,95606,42441,400.71752818860745,6880,70.53950588875176,5362,55.39401292805891,2167,22.216178900905803,77.28554750318864,79.71697134522624,63.27381344368566,65.07174216582553,77.01721019075228,79.45031411872469,63.17492760918442,64.97624848672336,0.2683373124363584,266.6572265015503,0.0988858345012388,95.49367910216232,107.8891,75.54456572867734,112847.62462606948,79016.55307059949,265.34228,165.7167807740633,276872.15237537393,172667.91914112426,295.31122,142.01351544376794,304182.0597033659,144992.38624412974,3526.95492,1596.4018956262703,3644280.254377341,1625000.058182825,1272.8971,559.4778489108533,1314300.0857686757,568092.4721365325,2127.45474,886.5011081201789,2183484.613936364,892258.8786389393,0.38089,100000,0,490405,5129.437483003159,0,0.0,0,0.0,22341,232.97700981109972,0,0.0,27425,282.1998619333515,1922151,0,68971,0,0,4204,0,0,38,0.397464594272326,0,0.0,0,0.0,0,0.0,0.0688,0.1806295780934128,0.3149709302325581,0.02167,0.3240855762594893,0.6759144237405107,25.141473565272968,4.4709071314966815,0.3243192838493099,0.2206266318537859,0.227154046997389,0.2279000372995151,11.176364194330848,5.736728763948768,23.10039335728555,12822.813291852164,60.550379561928,13.779484052394295,19.68783471513329,13.724150131092522,13.358910663307864,0.5550167847817978,0.7666948436179205,0.6940770557791834,0.59688013136289,0.1104746317512275,0.72,0.9244791666666666,0.8413793103448276,0.7467532467532467,0.157258064516129,0.4981188863807373,0.690863579474343,0.6449386503067485,0.5461538461538461,0.0985626283367556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800972841507,0.0044731156619906,0.0067416642976079,0.0085988717792346,0.0107028038904488,0.0130183662867096,0.0151380685701461,0.0173259235044132,0.0192899735095273,0.0213430558258144,0.0236864241603578,0.0261197480502666,0.0282341073781291,0.0302333731909454,0.0323083594911614,0.0343197592031361,0.0363216199131597,0.0382174865771463,0.040353050157686,0.0424198174706649,0.0574701830307211,0.071309559987006,0.0854218551327721,0.0971691056396641,0.1098188348386415,0.1252091762163994,0.1389585547290117,0.1513539445628998,0.1636169074371321,0.174524551412915,0.187893175074184,0.2003100876051695,0.212243074173369,0.223399592364505,0.2339541089168954,0.2450270846283633,0.2558552918422788,0.2644625304355668,0.2735497363156937,0.2822447481882396,0.2902415011293218,0.2979079791969264,0.3056362579895409,0.3125360299769408,0.3184629620610724,0.3249607923041776,0.330283393705426,0.3356490038367898,0.342142152536213,0.3470995716778594,0.3475388618499993,0.3480859267419444,0.3486379675370501,0.3486930707407139,0.3489119757092251,0.3487839727142835,0.3475870397737204,0.3483857145211529,0.3484936765260308,0.3497730493909112,0.350566825214792,0.3511816326934886,0.3513820522529345,0.3526470390385003,0.3531948727833461,0.3548555199458037,0.356485426964377,0.3589115902457396,0.3614255765199161,0.3638344226579521,0.3683946793002915,0.3696125843652016,0.3691182036079223,0.3714481602803382,0.373033072646754,0.3722334004024145,0.3727593074919565,0.3787078423405119,0.3853738701725555,0.3867924528301887,0.0,2.641297233932161,60.26627554987754,199.73552529157348,302.6728797233436,fqhc7_80Compliance_baseline_low_initial_treat_cost,29 -100000,95804,42347,398.7411799089808,6834,70.00751534382698,5336,55.06033151016659,2124,21.752745188092355,77.35864855579545,79.66271541708284,63.35358995694328,65.05389526749808,77.09284681604949,79.3992355138663,63.255934717749696,64.96003798490831,0.2658017397459673,263.4799032165347,0.0976552391935783,93.85728258976656,110.31702,77.23334078484837,115148.65767608868,80615.98762561935,266.43695,166.05899452783962,277499.164961797,172724.8805142161,294.30844,141.16732459368396,302895.34883720934,144076.18600731445,3501.86132,1581.0513916083164,3617207.56962131,1612270.4809906855,1317.42278,579.0020433968783,1356936.9337397185,586175.0275530028,2091.21072,868.3982295138093,2144797.98338274,873586.6017112057,0.37957,100000,0,501441,5234.029894367667,0,0.0,0,0.0,22415,233.3201118951192,0,0.0,27343,281.1260490167425,1916033,0,68792,0,0,4284,0,0,51,0.5323368544110892,0,0.0,0,0.0,0,0.0,0.06834,0.1800458413467871,0.3107989464442493,0.02124,0.3257342657342657,0.6742657342657342,25.07351759679213,4.514563054878875,0.3354572713643178,0.2140179910044977,0.217391304347826,0.2331334332833583,11.262383638477882,5.714939741224939,22.516747673300728,12755.135267104986,60.28653035308625,13.501384479831408,20.18166725875948,13.057436400404926,13.546042214090422,0.5502248875562219,0.7749562171628721,0.6944134078212291,0.5629310344827586,0.1245980707395498,0.722473604826546,0.9047619047619048,0.8640552995391705,0.703971119133574,0.1940928270042194,0.4932668329177057,0.7107329842931938,0.640117994100295,0.5186862967157417,0.1082423038728897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023581563872639,0.0046693474055242,0.0070257611241217,0.0091732878727916,0.0115010261516266,0.0135903565434108,0.0157274986757935,0.0176165168871706,0.0198189730911468,0.022044231674134,0.0238036709275647,0.0260016000984676,0.0282943267511866,0.0305010444858351,0.0323132758691796,0.0344752796339712,0.0364315498670419,0.0383877756238143,0.0403942831027462,0.04245263377056,0.0570015752631524,0.07106041755967,0.084377129081285,0.0972559405576399,0.1087199376093417,0.124227212681638,0.1370459894408752,0.1491197276740599,0.1607161922658068,0.1721505687605202,0.1857968798785542,0.1985330708150327,0.2104639276159819,0.2219754734112962,0.2327942131744965,0.2436096393021039,0.2542306661903911,0.2641178257591953,0.2737880387282778,0.2817309786034358,0.2893725399398009,0.296976722401761,0.3051676556633384,0.3117526416157933,0.3179966188686589,0.3234281908004293,0.3294569761910723,0.3350426915393131,0.3394573864372522,0.3449268473036497,0.3454077646361505,0.3462671364862633,0.3457805699153438,0.3450557706756054,0.3446471314095417,0.344387090845038,0.3429875873876444,0.3441824494430092,0.3452884829583426,0.346137292877125,0.3468865777744344,0.3477648366039009,0.3496357741378584,0.351939896837856,0.35183665588647,0.3522149410222804,0.3527203965275191,0.3561817318347317,0.3595457922105486,0.3603942939573649,0.3635905194150277,0.3676060865837977,0.3741518168558564,0.3765313198243316,0.3772907613829586,0.3800878129820814,0.3809229819416577,0.3864754098360656,0.3856338028169014,0.3871987356775977,0.0,2.545438057856903,58.00191604981467,206.98389609587875,299.24729786726147,fqhc7_80Compliance_baseline_low_initial_treat_cost,30 -100000,95882,42639,400.34625894328445,6880,70.72234621722534,5328,55.20327068688596,2170,22.433824909784946,77.41454581429173,79.70274460688118,63.37712166936033,65.0678646303191,77.15121533837251,79.43456994573057,63.28071488248475,64.97095858338875,0.2633304759192185,268.17466115060995,0.0964067868755762,96.90604693034288,108.87646,76.26191012777872,113552.55418118104,79537.25425812845,265.67162,166.24966724010372,276743.75795248325,173051.7690912827,292.29168,140.03418418109064,302349.05404559773,144147.43052102553,3532.28233,1598.47552673862,3664040.75843224,1647179.6132106346,1280.82896,560.4375424659254,1327948.8329404895,576617.5950292288,2142.43246,893.8971753952967,2216931.269685656,917059.3080991386,0.38376,100000,0,494893,5161.479735508228,0,0.0,0,0.0,22363,232.86956884503869,0,0.0,27117,280.28201330802443,1923749,0,69079,0,0,4483,0,0,47,0.4901858534448592,0,0.0,1,0.0104294862435076,0,0.0,0.0688,0.1792787158640817,0.315406976744186,0.0217,0.3260688506385341,0.6739311493614658,24.93474593604584,4.567005348990128,0.3140015015015015,0.2162162162162162,0.2304804804804804,0.2393018018018018,11.007536689407404,5.41450989309373,23.02552572472029,12878.630607831376,60.28199564827323,13.615632739989426,18.893042912706893,13.680262091872642,14.09305790370428,0.5489864864864865,0.7769097222222222,0.7065152420800956,0.5814332247557004,0.1050980392156862,0.7131386861313869,0.9093264248704664,0.8778280542986425,0.7427536231884058,0.1240601503759398,0.4921677614957049,0.7101827676240209,0.6450040617384241,0.5346638655462185,0.1000991080277502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023687806853267,0.0047110075477432,0.0068446616709086,0.0091771059630885,0.0113324524850086,0.0134006247519816,0.0158109209453952,0.0180239911869109,0.0201438261011685,0.0225329351116929,0.0246550646849744,0.0268132814984254,0.0289654038613688,0.0308791287968462,0.0327546033775285,0.0349193889881536,0.036892962817356,0.039057804306825,0.0412722139179538,0.0434660509236145,0.0577606789486305,0.0717480354455776,0.0856631087181958,0.0984871549904987,0.1108736167121181,0.1264125039602914,0.1394994121323179,0.1517785973153649,0.163677871536927,0.1747697579781537,0.1881299955893585,0.2014076588751703,0.2129134611205285,0.2244915800631632,0.2349831283454787,0.2463205187791868,0.256994391106056,0.2668517228203457,0.2766606557562973,0.2848948374760994,0.2925819250211102,0.2997976631852259,0.3067747470563872,0.3133578681115813,0.3202047092860703,0.3264191197326394,0.3319265641436658,0.3370295870041249,0.3417031983606132,0.3467108914554536,0.3470996429293269,0.3474250788100712,0.3475846908291528,0.3473207961723594,0.3479695582377073,0.3477528262001776,0.3470178769182091,0.3477347685542228,0.3487553604073055,0.349084876378037,0.3494271379361989,0.3507422855674382,0.3519902841468266,0.353347028089135,0.3547060944825099,0.3569326144148368,0.3582446354374182,0.3607019743027264,0.3627619615965177,0.366955691671307,0.3694704332818603,0.3705626788174208,0.3701550387596899,0.3698093300173336,0.3739837398373983,0.3746745562130177,0.3765498239706107,0.380738624770455,0.3890719384953322,0.3917995444191344,0.0,1.4465741452616172,61.19571778979496,203.20106088189792,295.5206349689076,fqhc7_80Compliance_baseline_low_initial_treat_cost,31 -100000,95711,42714,401.92872292630943,6899,70.78601205713032,5401,55.85564877600276,2156,22.06642914607517,77.36002699221102,79.73009972354188,63.33690834044432,65.08769855622324,77.09517019322128,79.46700542408351,63.2391367972542,64.99322690863583,0.2648567989897401,263.09429945837337,0.0977715431901273,94.47164758741168,108.90858,76.35144358394045,113788.98977129064,79772.90341124892,268.18071,167.2142035947258,279613.74345686496,174122.73162582578,296.40072,141.58770905558367,306179.83303904464,145171.77452006468,3542.54962,1598.3088564537309,3664113.0695531336,1632747.311647114,1305.14121,570.8099074304947,1348275.5378169697,581058.0732993226,2109.7026,879.0209216282921,2161940.111376957,885231.620293158,0.38255,100000,0,495039,5172.226807785939,0,0.0,0,0.0,22466,234.1319179613629,0,0.0,27529,284.19930833446523,1921919,0,68914,0,0,4327,0,0,49,0.5015097533198901,0,0.0,2,0.020896239721662,0,0.0,0.06899,0.1803424388968762,0.3125090592839541,0.02156,0.3228531855955678,0.6771468144044321,25.159158280743608,4.397551033011431,0.3303092019996297,0.2212553230883169,0.2232919829661173,0.2251434919459359,11.397210616647252,6.042464996884166,22.86853500410286,12869.002890852717,60.90870500766535,14.019081455817336,20.07854369781536,13.463734058687365,13.347345795345287,0.5624884280688761,0.7648535564853557,0.7001121076233184,0.5970149253731343,0.1274671052631578,0.7206870799103808,0.9142857142857144,0.8498845265588915,0.7413127413127413,0.2022900763358778,0.5103397341211225,0.6938271604938272,0.6521095484826055,0.5575501583949314,0.1069182389937107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025321327647851,0.0047542296424697,0.0068802451721583,0.0091326520246246,0.0113308108547947,0.0134617734511832,0.0158307849133537,0.0181775500622588,0.0204753386148735,0.0227789266774504,0.0248723574401771,0.0270214775573898,0.0292771716216077,0.0313327221976165,0.0332748658687577,0.0356382208804615,0.0376259984046245,0.0396076599719757,0.0416978698618738,0.0433994310662818,0.0585040833803287,0.0732243411274622,0.0854367302406579,0.0978459790908517,0.1101657388663967,0.1256581033935934,0.1397307647426989,0.1522849662629573,0.1645733205169283,0.1755537677661571,0.1892931404130619,0.2020019478411427,0.2144759296094607,0.22490188147063,0.235618909346884,0.2466270852256363,0.2570574189373145,0.2663734829994714,0.2744891247646912,0.2820709557728865,0.2901412360759274,0.2980556757199144,0.3050741183290546,0.3121241884866924,0.3181845791270333,0.324064263361506,0.329983228616486,0.3355845543345543,0.3411583431523611,0.3462457270315572,0.3472285845167201,0.3475021005220314,0.3474083688383511,0.3479356071573339,0.348225979283248,0.3476660737287615,0.3468056127458744,0.3465874591791522,0.3475920292579553,0.3497419965361473,0.3500599835045362,0.3506200676437429,0.3523084006529655,0.3534827593912713,0.3554973066564063,0.3564457202505219,0.3573776113857849,0.3600429713419065,0.3622472385926527,0.3645353725427393,0.3668045977011494,0.3712080608854111,0.3722636973301278,0.3764633866401408,0.3768702361908346,0.3782051282051282,0.3844155844155844,0.3845373376623376,0.3956714761376249,0.3967517401392111,0.0,2.1983840305077798,58.939236882735344,205.5009353220737,307.7127865849116,fqhc7_80Compliance_baseline_low_initial_treat_cost,32 -100000,95757,42299,398.7489165282956,6969,71.56656954582954,5435,56.23609762210595,2168,22.348235638125672,77.33346816806463,79.69540125915313,63.32120940122799,65.07031853310288,77.06437616381035,79.42363447416155,63.22297197088124,64.97311748648814,0.2690920042542757,271.76678499158413,0.0982374303467494,97.20104661474238,109.66252,76.8350708630733,114521.67465563877,80239.6387345816,267.4751,166.29231455609218,278796.21333166247,173130.0109194024,296.38487,141.82155998842487,305830.3204987625,145339.92624092154,3574.38173,1606.1734783486077,3700933.080610295,1645513.3706659635,1309.55578,571.3413828466419,1353250.697076976,582338.3278632803,2134.31334,885.1798060555731,2202490.1573775285,902047.2369228496,0.37969,100000,0,498466,5205.530666165398,0,0.0,0,0.0,22540,234.8340069133327,0,0.0,27437,282.86182733377194,1919156,0,68830,0,0,4273,0,0,49,0.5012688367430057,0,0.0,0,0.0,0,0.0,0.06969,0.1835444704890832,0.3110919787630937,0.02168,0.3282463550892492,0.6717536449107507,25.072874559841484,4.569271902222786,0.3357865685372585,0.2088316467341306,0.2206071757129714,0.2347746090156393,11.07092839174937,5.538627561774982,23.10921922498535,12775.797828981067,61.35963551645148,13.377394151985603,20.7376516413202,13.281716523904192,13.96287319924147,0.5486660533578657,0.7691629955947137,0.6986301369863014,0.572977481234362,0.1152037617554859,0.7083636363636364,0.8903743315508021,0.8786610878661087,0.7114624505928854,0.1518518518518518,0.4945812807881773,0.709592641261498,0.6347438752783965,0.5359408033826638,0.1053677932405566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021986929429049,0.0044923538717397,0.0065870937620526,0.0087992033977524,0.0107605622342914,0.0126159516948548,0.0146902907474615,0.0169622991978118,0.0191222762765218,0.0213730768837071,0.0237433747167915,0.0258405625994558,0.0278786133706282,0.03,0.0319938096466339,0.0341812318473575,0.0360337972166998,0.0382268708753579,0.0401821451963363,0.0421926425863433,0.0568389406766391,0.0709284435932054,0.0835755432672633,0.0966713992743334,0.1094214666863518,0.1245810114937667,0.137017547582168,0.1497823611421517,0.1614729062987248,0.1726948111133748,0.1865197345742847,0.2003678658371652,0.2124135380867446,0.2232357702235639,0.2338265221934987,0.2448618001417434,0.254141734393141,0.2633041873445641,0.2729439268245628,0.2819588041997275,0.2902378942255427,0.2975217243839397,0.3048082156125032,0.3124423411010603,0.318937159365403,0.3255195508716635,0.3312072437124026,0.3366768370200864,0.341540134363714,0.3461188058676737,0.346810834131018,0.3463095008672191,0.3465696846675406,0.3465128732072304,0.3461893420660911,0.3457840577484257,0.3443458381622188,0.3450001646307332,0.34647612193492,0.3484063994840282,0.348295817519071,0.3501209022079518,0.3511312597070058,0.3520880500325032,0.353370203105755,0.3551965592300228,0.3552939832009599,0.358974358974359,0.3588320548623139,0.3617012795471758,0.3652142139398922,0.3681315747316708,0.3694372349180224,0.3668993020937188,0.3702192274841036,0.374939700916546,0.375232486050837,0.3728287841191067,0.3696145124716553,0.3664571877454831,0.0,1.9610824517182288,61.02454671459952,203.71783977560727,308.5033287351577,fqhc7_80Compliance_baseline_low_initial_treat_cost,33 -100000,95787,42738,402.44500819526655,6923,71.00128409909486,5397,55.64429411089187,2214,22.67531084593943,77.34149214859087,79.67906604448454,63.33904717832892,65.07176746138886,77.07062186666147,79.41045885342226,63.23964285580543,64.97586967724627,0.2708702819294046,268.60719106228714,0.0994043225234904,95.89778414259342,108.85424,76.3397246374512,113641.97646862308,79697.37504823327,267.14369,166.8554105100009,278195.18306241976,173505.22463518564,301.57465,144.94250026654416,310131.4270203681,147722.0062065148,3567.04268,1615.2495867028597,3682550.763673567,1645529.8860859177,1357.40446,596.4281101650622,1401404.7104513138,607840.0846783445,2183.09836,904.943501396861,2239379.393863468,911946.7855154324,0.38297,100000,0,494792,5165.544384937413,0,0.0,0,0.0,22491,234.0714293171307,0,0.0,27972,287.3041226888826,1922121,0,68948,0,0,4390,0,0,49,0.5115516719387808,0,0.0,0,0.0,0,0.0,0.06923,0.1807713397916286,0.3198035533728152,0.02214,0.320280296784831,0.6797197032151691,24.926522188206015,4.5517272321382105,0.332592180841208,0.2080785621641653,0.2210487307763572,0.2382805262182694,11.497769887300336,5.943660420818827,23.431882452282995,12855.780222399457,61.100262713694725,13.369849089515611,20.415815405744656,13.207884247145303,14.106713971289146,0.5530850472484714,0.773820124666073,0.6997214484679666,0.586756077116513,0.1244167962674961,0.7262931034482759,0.921832884097035,0.8703703703703703,0.7718631178707225,0.1580882352941176,0.4928838951310861,0.7007978723404256,0.6363636363636364,0.5344086021505376,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022589827486653,0.0047038309864866,0.0070627632046273,0.0093078079908954,0.0114666531006766,0.0136292795224659,0.0157983844647519,0.0178598780749318,0.0199196261491108,0.0220051403352481,0.0241569174296875,0.0263395699410568,0.0282960646767192,0.0303070884798038,0.0327190556770811,0.0346263966841349,0.036665424121935,0.0390037447744318,0.0410124793482891,0.0430659365826237,0.0576862884210087,0.0715062420275611,0.0849627999580844,0.0974358974358974,0.1095806679383279,0.1257623643070808,0.1390087463556851,0.1517175369562905,0.1640231406370079,0.1754699993568994,0.1896791138763603,0.2022230151264502,0.2139271589378069,0.2250844271522093,0.2362940646097684,0.247068593256934,0.2572183451873983,0.2663200332408728,0.2751223269300471,0.2844335685126528,0.2926502517669885,0.3002557604493909,0.3079914883555976,0.3141694103561808,0.3198839918454519,0.3255573473834525,0.3303497762332175,0.3360219492677226,0.3421705747007574,0.3468396102185936,0.3467509753800619,0.3465315216195401,0.3461261997716734,0.3455452704657217,0.3458877100043154,0.3448064392487543,0.3440906278261697,0.3459639188833289,0.3470475341855444,0.348435176725605,0.3489715651404806,0.3508580281242552,0.3526426616129711,0.3536870503597122,0.3532829750145264,0.354609184236091,0.3552366130612715,0.3574706782253952,0.3611773498950066,0.3628432436778837,0.3665057556628295,0.3656297256426874,0.3681209558587994,0.3706124990271616,0.3734189344576466,0.3748189280540802,0.3749017141059915,0.3765148349352277,0.3812358276643991,0.3798600311041991,0.0,2.650991433126449,60.84801998190007,202.35385093913,304.2022549592005,fqhc7_80Compliance_baseline_low_initial_treat_cost,34 -100000,95708,42517,400.217327705103,6914,71.07033894763238,5329,55.15735361725248,2185,22.516404062356333,77.3419109081298,79.7109989706345,63.33255108723839,65.08100549951918,77.08073189710719,79.44848927332934,63.236249388588696,64.98642817069556,0.2611790110226195,262.5096973051626,0.0963016986496896,94.57732882361825,110.04334,77.00488090462774,114978.20453880553,80458.14446506849,266.79276,166.8839008518539,278161.3867179337,173783.17858696572,297.48975,142.58269783970778,307593.5136038785,146524.65299153884,3551.95686,1609.59579584962,3678375.036569566,1649611.6470249228,1301.64338,572.2371693053622,1346736.7409202994,584865.6357713793,2157.12598,896.3999196984629,2224224.6416182555,912002.6906760816,0.38099,100000,0,500197,5226.282024491161,0,0.0,0,0.0,22432,233.82580348560205,0,0.0,27532,284.38584026413673,1915557,0,68797,0,0,4261,0,0,58,0.5955614995611652,0,0.0,0,0.0,0,0.0,0.06914,0.1814745793852857,0.3160254555973387,0.02185,0.3272752306209555,0.6727247693790445,25.170923824174128,4.487654329852753,0.3235128541940326,0.2066053668605742,0.2317507975229874,0.2381309814224057,11.013886282365071,5.440830062602954,23.246173426687584,12843.93356885723,60.3337890735524,13.082705842031428,19.40335712590854,13.869892426856328,13.977833678756104,0.5501970350910115,0.7656675749318801,0.6937354988399071,0.6,0.119779353821907,0.7151248164464024,0.9201101928374656,0.8692660550458715,0.7551020408163265,0.1449814126394052,0.4935719687421225,0.6897018970189702,0.6343167701863354,0.5515409139213603,0.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569183408943,0.0047025438329786,0.0068878068573747,0.0092630210449337,0.0115203156139423,0.0136128533029241,0.0157191351417474,0.0178002776190087,0.0200429272281275,0.0221785542489279,0.0244490005125576,0.0265022384688051,0.0284959174019456,0.0307020255094681,0.032691474212123,0.0348060701290109,0.0369307884298718,0.0390730401212146,0.0412282161127979,0.0430822460294301,0.0577766637423236,0.0716304484361261,0.0851441102099486,0.0978490665264265,0.109944937870509,0.1255541331189098,0.1395837311437846,0.1528758023823971,0.1643913173524761,0.175519704803381,0.1890407418177118,0.2017660617472324,0.2134886452623336,0.2243666145451762,0.2352785904401575,0.2462551895931359,0.2567225438038835,0.2658841254314658,0.2752076053909334,0.2834495152410059,0.2913672810580027,0.2989665383129879,0.3056913841891523,0.3126093941065049,0.318630966126621,0.3246197308199997,0.3303128289968416,0.3361555306579751,0.3412833102304672,0.3457840383017449,0.3465295837656475,0.3468972253174308,0.3467357192113374,0.3473533743394265,0.3475826216115856,0.3460890603944628,0.3461903706751923,0.3470356380358023,0.3477963434865146,0.3484886424610982,0.3495307807807807,0.350191085325043,0.3518090029448885,0.3516281158769369,0.3529411764705882,0.3530765408854371,0.3547639484978541,0.3567389999684134,0.3585165806405996,0.359697248808618,0.3643364657345863,0.3670750628644802,0.3683676059913683,0.3702478066800062,0.373026440935895,0.3734723220704529,0.3711021920345785,0.3671278133388395,0.3658949745906267,0.3673548889754577,0.0,1.9513713792839644,60.22067522471513,203.21909729206777,298.1712099916969,fqhc7_80Compliance_baseline_low_initial_treat_cost,35 -100000,95710,42100,396.48939504753946,6944,71.26737018075437,5404,55.88757705568906,2258,23.205516664925295,77.33810060160408,79.72013119908658,63.31256206328344,65.07476863563147,77.06379247031953,79.44703361872851,63.21214605999103,64.97778520521196,0.2743081312845561,273.0975803580691,0.100416003292409,96.98343041951318,108.67934,76.06433561942592,113550.6634625431,79473.75991999364,261.82218,163.01491844385396,272993.2190993627,169757.12929041265,289.9713,139.08191838569144,299728.7117333612,142838.4770420047,3599.77346,1619.2312653335791,3722944.5303521054,1653628.6859613198,1310.77043,565.3152010362952,1355757.3816738063,576915.8657425017,2233.10582,920.7163924102194,2295822.9861038555,928336.1596707372,0.37872,100000,0,493997,5161.39379375196,0,0.0,0,0.0,22058,229.8714867829903,0,0.0,26858,277.39003238951,1924976,0,69093,0,0,4335,0,0,56,0.585100825410093,0,0.0,0,0.0,0,0.0,0.06944,0.1833544571187156,0.3251728110599078,0.02258,0.3277253453699904,0.6722746546300096,24.95803685056168,4.491625750962618,0.3203182827535159,0.2120651369356032,0.2200222057735011,0.2475943745373797,11.156564669311436,5.641518492686352,23.819125719101176,12803.183771904578,60.910021283269245,13.599232899972709,19.416871458572714,13.348552620727697,14.545364303996138,0.5490377498149519,0.7783595113438045,0.7094165222414789,0.5870479394449117,0.1113602391629297,0.7116920842411039,0.9197994987468672,0.8690476190476191,0.7322033898305085,0.1216730038022813,0.4934194189222746,0.7028112449799196,0.658276125095347,0.5391498881431768,0.1088372093023255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023109201110863,0.0043619395414891,0.0066399983755355,0.0085980852491005,0.0110906482433023,0.0132105643773108,0.0154825286090202,0.0178843187923233,0.020125786163522,0.0221880919469615,0.0243439739948112,0.0266668035774795,0.0287379958461,0.0306984120445698,0.0327222835449828,0.0344738500966218,0.0363521530704161,0.0383972942409246,0.0404615864434972,0.0424496854035584,0.0558317319742668,0.0697947091276446,0.0827509496526684,0.0951239008792965,0.1071748737040826,0.1235586586268909,0.1375270597223991,0.1501134076606076,0.1616864379608849,0.17291619728132,0.1863915526344144,0.1994760033345242,0.211824000696682,0.2229590720070037,0.2335369544879203,0.2452782088228774,0.2548281524009517,0.2651356523696949,0.2742367799382155,0.2836228145600458,0.2922038060159607,0.2998454042912021,0.3068966742888286,0.3139324306496684,0.3203608466766361,0.3251176172777003,0.3303279202457834,0.335637138011502,0.340409528873212,0.3449273447820343,0.3447044716597281,0.3449501349936635,0.3456488937148336,0.3462250506219265,0.347500111568957,0.347177456487706,0.3472946622489259,0.3475295045859495,0.3484801807352639,0.3493542732443744,0.3503173947338767,0.3515049504950495,0.3530153658587854,0.3541615158121867,0.3553501616873401,0.3550026055237102,0.3564404412393467,0.3595551635057652,0.3631220129322463,0.3657762076767356,0.3691665153441075,0.3697091698892832,0.3722723852520692,0.3734019214766624,0.3755380872169193,0.372746679316888,0.3707302262031274,0.3729086877645636,0.3764673764673765,0.3718631178707224,0.0,2.182236707267553,60.78504928226199,201.5842111172824,305.0918459438863,fqhc7_80Compliance_baseline_low_initial_treat_cost,36 -100000,95642,42268,397.4927333179984,6885,70.66978942305681,5362,55.40452939085339,2197,22.56330900650342,77.27782633283482,79.68870173807629,63.2892740309558,65.07222953024818,77.00465847138177,79.41776456399984,63.1879704184238,64.97515947828572,0.2731678614530466,270.937174076451,0.1013036125319928,97.07005196246143,109.45396,76.65029027442779,114441.31239413646,80142.91867006943,266.1678,165.9254525229415,277604.76568871416,172804.88346467438,293.28142,139.67774948511246,303062.9953367767,143255.02989584787,3550.00178,1605.972365850039,3669579.724388866,1637566.9377569368,1282.45439,555.5067158415673,1326256.194977102,566218.665333349,2171.19052,905.612355913777,2231212.333493653,912221.278151574,0.3796,100000,0,497518,5201.877836097113,0,0.0,0,0.0,22399,233.474833232262,0,0.0,27229,281.0689864285565,1918110,0,68858,0,0,4233,0,0,53,0.5541498504840969,0,0.0,1,0.0104556575563037,0,0.0,0.06885,0.1813751317175974,0.3190994916485112,0.02197,0.3219822812846069,0.6780177187153932,25.1104382085612,4.4926759605317805,0.3254382693024991,0.2118612458038045,0.2256620663931368,0.2370384185005594,10.961824703401993,5.406143031510139,23.29463579449387,12810.008319905284,60.64035603581429,13.44927390393637,19.88020127958784,13.390879388959508,13.920001463330586,0.5477433793360686,0.7764084507042254,0.6991404011461319,0.5834710743801653,0.1014948859166011,0.7159940209267563,0.936842105263158,0.8706140350877193,0.7053941908713693,0.1340996168582375,0.4917992047713718,0.6957671957671958,0.6384794414274632,0.5531475748194015,0.093069306930693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024927547980463,0.0048880415382119,0.0073396544372931,0.009593788428509,0.01151635383285,0.0137834781634253,0.0158286588475267,0.0182113455763691,0.0203864526754022,0.0227004988782921,0.0248723050729245,0.0268507390629975,0.0289871476934791,0.031126960895467,0.0330800363426117,0.0351461492315012,0.0372327747898985,0.0392818574514038,0.0412612518861543,0.0434501527585164,0.0578122877237718,0.0707597561741971,0.0843007998656393,0.0967164807408966,0.1090239449550966,0.1239493574407723,0.1368005182722841,0.1488146609131106,0.1605985410828502,0.1712408194820255,0.1857021221559984,0.1980529325132114,0.2109623339865012,0.2229761526928086,0.233941822826063,0.2455500631746946,0.2550228386995901,0.2641116551297203,0.2735590949856392,0.2820991400533602,0.2901972124226476,0.2983666358778893,0.3048551041900862,0.312428064454249,0.3188321238862755,0.3248482305907902,0.3308151043624245,0.3360081518277926,0.3411090064609876,0.3463042731428873,0.3468453875435328,0.3473674035819329,0.347452355369564,0.3478569771488226,0.3484791980548055,0.3472670788348559,0.3471912971563076,0.3487171025492946,0.3499785426143678,0.3503067044516985,0.3511112783935864,0.3519361055371228,0.3523009557492316,0.3530151600224593,0.3535880888502163,0.35439689938721,0.355923939541687,0.3568842880731614,0.3600854548691472,0.3612799356007244,0.3617531718569781,0.3634510140573023,0.3657404463661219,0.3679289026275116,0.3694019206998193,0.370540019286403,0.3670668953687822,0.3705699481865285,0.3733784545967287,0.3776740567872423,0.0,2.5305547693861445,58.57941385172084,204.8888910439431,304.7540209517499,fqhc7_80Compliance_baseline_low_initial_treat_cost,37 -100000,95818,42169,396.6791208332464,6871,70.58172785906615,5338,55.12534179381745,2130,21.90611367383999,77.39792083527668,79.70185054216591,63.37134666233784,65.07185337903505,77.13716562496265,79.44013599153733,63.27554518169734,64.97780477958428,0.2607552103140307,261.7145506285823,0.0958014806404961,94.04859945077249,110.37114,77.20996744742473,115188.31534784696,80579.81532428639,266.8085,166.99240577768498,277817.2577177566,173644.66569713937,292.59298,140.97209883844718,301517.178400718,144239.8113085167,3490.11656,1583.2265347768164,3607933.394560521,1618029.067215107,1288.26475,568.7010247449531,1330516.1973741886,579639.3817429094,2093.01416,873.5973006085749,2154514.9763092534,887083.5587954132,0.37906,100000,0,501687,5235.832515811226,0,0.0,0,0.0,22506,234.2879208499447,0,0.0,27112,279.0185560124403,1917538,0,68718,0,0,4299,0,0,51,0.5218226220543113,0,0.0,1,0.0104364524410862,0,0.0,0.06871,0.1812641798132221,0.3099985446077718,0.0213,0.3189441847676657,0.6810558152323344,25.259490586427987,4.401731837555228,0.3276508055451479,0.218433870363432,0.2266766579243162,0.2272386661671037,11.079663216759316,5.704284470472237,22.715220563651386,12780.000342909509,60.21946246798092,13.774672152324152,19.39408244173753,13.709644586538776,13.34106328738045,0.5458973398276508,0.7675814751286449,0.6718124642652945,0.5743801652892562,0.122835943940643,0.7242888402625821,0.906801007556675,0.8869778869778869,0.7206349206349206,0.1785714285714285,0.4842450214267708,0.6957087126137841,0.6065573770491803,0.5229050279329609,0.1082206035379812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020855268486271,0.0045901772233987,0.0067041939246412,0.0089964765492521,0.0112434938191281,0.0134131200260527,0.0159870391881151,0.0181076256057128,0.0202607434047857,0.0226210085839105,0.0247530838900045,0.0269818308659834,0.0289418799379449,0.0311396964239773,0.0332714904143475,0.0350737715920002,0.0367983281951542,0.0388569888683899,0.040571131879543,0.0426397735314932,0.0570090338194487,0.0713620817688341,0.0849026927271202,0.0975650784305479,0.1097911901424038,0.1250832514033808,0.1379431007242304,0.1499121920068117,0.1607358424049483,0.1718079629311824,0.185911518911002,0.1986219876260113,0.2114326716096627,0.222704511163106,0.2333036411423795,0.2446830888458344,0.2550152212942003,0.2647306823164356,0.2736332509466905,0.2820838482310403,0.2906045156591406,0.2982007243836896,0.305691210727335,0.3121514564036284,0.3179250315197362,0.3245952861290164,0.3304188161231092,0.3350901701803404,0.3396670590213553,0.3445387006691606,0.3454667562122229,0.3448531531902624,0.34499831214133,0.3447713832395788,0.3449994807352788,0.3449566798588084,0.3443998483028885,0.3448524590163934,0.3464565584825773,0.3467145460392325,0.3472206604445444,0.3481630877526001,0.3489054768095278,0.3498014403984654,0.3513049782503625,0.3520234542694099,0.3545765243114391,0.3572040214392185,0.3594699646643109,0.360266273368677,0.3618348623853211,0.363334048487449,0.3655961844197138,0.3704073789392775,0.3714612525021447,0.3772160996645903,0.3839987667642978,0.390827922077922,0.3898165891048453,0.3855283307810107,0.0,2.321013925506925,60.18186710037669,199.51261297570343,300.16500628663704,fqhc7_80Compliance_baseline_low_initial_treat_cost,38 -100000,95546,42298,399.3783099240157,6915,71.07571222238502,5382,55.70091892910221,2166,22.23012998974316,77.19945181010942,79.67219006931116,63.224607941291474,65.05454735111073,76.92670613882049,79.40070952834182,63.124726057033314,64.95830974678117,0.2727456712889307,271.4805409693355,0.0998818842581599,96.2376043295592,109.59256,76.84258031866734,114701.35850794382,80424.69629149033,269.45882,168.286004348991,281393.4963263768,175504.37940781505,301.08914,144.85878708349546,311524.9931969941,148713.7090643646,3550.48222,1611.8002451835134,3675893.287003119,1646837.151930498,1279.37211,564.5587316752484,1321474.4520963724,573339.1263634772,2128.7603,890.6188887945568,2186713.666715509,895928.5148443824,0.37812,100000,0,498148,5213.698113997446,0,0.0,0,0.0,22677,236.6713415527599,0,0.0,27979,289.2638101019404,1907559,0,68542,0,0,4263,0,0,39,0.4081803529190128,0,0.0,1,0.0104661628953593,0,0.0,0.06915,0.1828784512853062,0.313232104121475,0.02166,0.3236954426545504,0.6763045573454496,24.944573267030417,4.432875191099484,0.3272017837235229,0.2136752136752136,0.2276105536975102,0.2315124489037532,11.110091694216862,5.6459999888241645,23.261002168209693,12747.513923821189,61.08912271926534,13.570197990979093,20.21252794117968,13.635064832486412,13.671331954620165,0.5546265328874025,0.7713043478260869,0.7137989778534923,0.5697959183673469,0.1147672552166934,0.7340350877192983,0.9481481481481482,0.8609406952965235,0.7071428571428572,0.1713147410358565,0.4900176901693202,0.6751677852348993,0.6572327044025157,0.5291005291005291,0.100502512562814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002098306149963,0.0043221525537225,0.0067227232106588,0.0089982918496827,0.0114834873966689,0.0135884523639625,0.0154411389498392,0.0177498467198038,0.019596807204257,0.0217157380174012,0.023702228563803,0.0258295373921627,0.0278369944696759,0.0299460496590709,0.0320570454193148,0.0342118338785143,0.0363609964530916,0.0384751293936685,0.04059375,0.0424492352664822,0.057093841856962,0.0704054025712548,0.0837275307473982,0.0962707720840051,0.1086988690413275,0.1242671303315274,0.1374743359254492,0.1507160694085757,0.1626190450684007,0.1742478009333935,0.1878206028142852,0.2008399531188957,0.2125364081641558,0.2237396340660787,0.2347721478472965,0.2452622692230788,0.2555477221606741,0.2652883888368524,0.2744674071376548,0.2829967606313323,0.2906290234651387,0.2974250689189981,0.3035909241942374,0.3100991288675278,0.3160684260545361,0.3225774546893158,0.3287309823234544,0.3339290957602992,0.3385331357408419,0.3425960264900662,0.3436414035562166,0.3437607900006905,0.3447432762836185,0.3441256216561064,0.3439221364701667,0.3436504394132947,0.3423548130469371,0.3434543563326564,0.3444368013757524,0.3463205019867311,0.3478925612034957,0.3493184757735548,0.3496872887085869,0.3496722456243101,0.3507431924541112,0.3510277127141616,0.3508610263203363,0.3526519477223702,0.3551730257320319,0.35832,0.3614171428571429,0.364474034620506,0.3651685393258427,0.3668403309837573,0.3685103175350984,0.364798661727805,0.3680183626625861,0.3667270166968416,0.3646575342465753,0.3723076923076923,0.0,2.4993721305659835,62.70237531052532,197.8080321938144,302.90042493248063,fqhc7_80Compliance_baseline_low_initial_treat_cost,39 -100000,95675,42708,402.1635746015156,7034,72.24457799843219,5455,56.367912202769794,2223,22.81682780245623,77.33990302576841,79.73146409554474,63.32261558699434,65.08919778225035,77.06288332537653,79.45439664786453,63.22107162585821,64.99045021961741,0.2770197003918753,277.06744768021,0.1015439611361301,98.74756263293705,109.84842,76.92154938100121,114814.13117324274,80398.79736712958,267.38246,167.26303902666226,278838.67258949566,174193.34102603846,303.22409,145.54412971849936,312967.58818918216,149021.8417251374,3611.27911,1638.0331623400202,3735624.5100600994,1673177.7395767143,1344.10625,589.6178594635104,1389106.694538803,600511.5646339279,2190.61082,911.6224467780974,2250798.996603084,919725.0109823348,0.38229,100000,0,499311,5218.824144238307,0,0.0,0,0.0,22523,234.74261823882935,0,0.0,28136,290.054873268879,1915229,0,68733,0,0,4420,0,0,44,0.459890253462242,0,0.0,1,0.0104520512150509,0,0.0,0.07034,0.1839964424913024,0.3160363946545351,0.02223,0.3254933765882671,0.674506623411733,25.00877526900372,4.443390522734114,0.321173235563703,0.2181484876260311,0.2274977085242896,0.2331805682859761,11.266654133475631,5.716188793890121,23.71614709088349,12950.73574105738,61.85885143828053,14.272324635674345,19.723366240103047,13.902532550944631,13.960628011558482,0.5622364802933089,0.7924369747899159,0.7071917808219178,0.5922643029814666,0.1179245283018868,0.724113475177305,0.9326923076923076,0.8733031674208145,0.7338129496402878,0.156934306569343,0.5058096415327565,0.7170542635658915,0.6511450381679389,0.5514018691588785,0.1072144288577154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0046525771628402,0.0071638035129019,0.0096392150489578,0.0121310108497808,0.0144037948655306,0.0163493293105557,0.0186474238589042,0.020884445534838,0.0228970910356404,0.0249833410220923,0.0271715699357408,0.0292653833497861,0.0311585843187342,0.0334396383565037,0.0350810078681541,0.0369860033359924,0.0388719353968155,0.0410177989992614,0.0433132837827976,0.0573499916429884,0.0723311592458045,0.0858443847574282,0.0983515154065455,0.1103574141277745,0.1260380631988744,0.1391196409815716,0.1519957424161788,0.1644185276558478,0.1758386671384001,0.1901403142263334,0.2032717358376249,0.2153824405732802,0.2263136028688255,0.2367384222574396,0.247782220105656,0.2584258381212695,0.2685574781180388,0.2773056806707434,0.2859564525181257,0.29419795221843,0.3012290528925426,0.3085243612350442,0.3154798279353439,0.3216857958340924,0.328272309379737,0.3338298991011742,0.3388823132628256,0.3440663685268001,0.3491333756076939,0.3491673970201577,0.3490705141455482,0.3495596454581381,0.3502288793602967,0.350481069971106,0.3488668077406692,0.3479349980182322,0.3482859586787735,0.3498306939836508,0.351203559749102,0.3524290244497401,0.3544739916440607,0.3539956758118348,0.3551387172863079,0.3570237145550801,0.3589320337473143,0.3603404791929382,0.3636133362885096,0.3648925643200452,0.3682448589191774,0.3700351935646053,0.3711064807394347,0.3731721212888523,0.3729891221081661,0.3732766761095373,0.3721844833750447,0.3701358863495985,0.3704312114989733,0.3675645342312009,0.3662631784459195,0.0,2.4839436372611,61.96305104551528,205.51947280779456,306.41047483363343,fqhc7_80Compliance_baseline_low_initial_treat_cost,40 -100000,95783,42337,397.3669649102659,6914,70.87896599605358,5356,55.33340989528413,2167,22.269087416347368,77.331780499572,79.67240558807174,63.32970022966426,65.06270186798146,77.0603584354003,79.40012788601608,63.22911694652191,64.96427996342833,0.271422064171702,272.2777020556606,0.1005832831423489,98.42190455313472,109.8075,76.94333855206625,114641.95107691344,80330.89227949244,269.16508,167.9902836458306,280438.1675245085,174812.7249387647,295.64006,141.99249949265612,304950.61754173494,145518.12409790416,3520.03039,1591.072680893992,3641079.408663333,1627374.7057459657,1242.98467,548.1557365069,1284730.2652871597,559399.1690862712,2118.9001,891.1154518260445,2179840.368332585,903197.5906258916,0.37879,100000,0,499125,5210.997776223338,0,0.0,0,0.0,22667,236.03353413444972,0,0.0,27367,281.9602643475356,1915687,0,68773,0,0,4298,0,0,47,0.4906925028449725,0,0.0,1,0.0104402660179781,0,0.0,0.06914,0.1825285778399641,0.3134220422331501,0.02167,0.3195720751611576,0.6804279248388424,25.443988543358163,4.501340147020807,0.3265496639283047,0.2156460044809559,0.2326362957430918,0.2251680358476475,11.04781289181879,5.660942709425292,23.273733326702924,12748.634570086351,60.45488526651222,13.55780412374843,19.6813627011235,13.99558400463015,13.220134437010136,0.5440627333831217,0.7532467532467533,0.6826758147512865,0.5850722311396469,0.1003316749585406,0.7152221412964311,0.910761154855643,0.8554502369668247,0.7423312883435583,0.1311475409836065,0.4850615114235501,0.6757105943152455,0.627731725697061,0.5293478260869565,0.0925155925155925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107368954165,0.0046125461254612,0.0069712928856281,0.0090718842699825,0.0111467073480803,0.0133097078381653,0.0157317346709895,0.0178753726162766,0.0200875058780233,0.0220709423145825,0.0243674908762865,0.0266648869540218,0.0288422979239714,0.0309026669001534,0.0331602902170435,0.035438484043378,0.0374398011496038,0.0398174557900741,0.0419411825833939,0.0438377275188471,0.0590113639921109,0.0729804081547264,0.0857933579335793,0.0984741808705155,0.1105971360230972,0.1255177952489644,0.1386144910331962,0.150191407911527,0.1622769572270127,0.1730289167211288,0.1864007233428774,0.199052440290758,0.2109836332988962,0.2221383730341011,0.2331649553743383,0.2436489735323118,0.2533892726035193,0.2633106473929917,0.2724468036840434,0.2802436901653611,0.2877450696894338,0.2956275653994129,0.3028233205090263,0.3089845201980839,0.3151862115908207,0.3218948199698921,0.3277554243597939,0.3335799288274384,0.3388145514010201,0.3439512343475214,0.3440958787764401,0.3442383686507773,0.3439800321516202,0.3437373269219628,0.3444634745699605,0.3432338163211997,0.3426832369207298,0.344072377311229,0.3455987093895344,0.3467454561733369,0.3469030545988368,0.3486540635972308,0.3488597563545926,0.3500899280575539,0.3515836884928322,0.3519748064558456,0.3523746739660064,0.3565022421524663,0.3588678448215165,0.3598020829176808,0.3618170994184183,0.3650369102385792,0.3646338351620311,0.365641813989239,0.3690690406288474,0.3762553802008608,0.3758326878388845,0.3736777868185517,0.3708021093533167,0.3625246548323471,0.0,2.279397316890301,60.478385884001824,200.1506224203123,301.5079260178436,fqhc7_80Compliance_baseline_low_initial_treat_cost,41 -100000,95691,42407,399.9435683606609,6900,70.91576010283099,5381,55.68966778484915,2188,22.54130482490516,77.34192318165195,79.71603764524419,63.32298576779221,65.0744743721876,77.07501288175256,79.44823703593198,63.22613893345717,64.9793750401963,0.2669102998993935,267.8006093122036,0.0968468343350323,95.0993319912925,109.64954,76.77327823674229,114586.86814851972,80230.190131509,266.33344,166.1164302946548,277791.9553563031,173064.28487576125,293.83548,141.1771818349281,303352.67684526235,144667.49296641262,3559.10876,1599.6828416817289,3685957.2269074414,1638528.2103876243,1330.8278,581.8208290782003,1375491.8644386618,592874.8390864056,2152.46874,884.5529170695334,2219345.1630769875,899262.1320644995,0.38035,100000,0,498407,5208.494006750896,0,0.0,0,0.0,22471,234.25400507884757,0,0.0,27293,281.4893772664096,1916319,0,68731,0,0,4314,0,0,39,0.4075618396714424,0,0.0,0,0.0,0,0.0,0.069,0.1814118574996713,0.3171014492753623,0.02188,0.3212221304706854,0.6787778695293146,24.78154536112414,4.525221571394061,0.3263333952796878,0.2062813603419439,0.229697082326705,0.2376881620516632,11.302676383296728,5.736895506361579,23.138200940941147,12812.508017576376,60.71554335949267,13.270865931852237,19.70410259697886,13.844889378312429,13.895685452349154,0.5508269838320015,0.7972972972972973,0.6845102505694761,0.5736245954692557,0.1313526192337764,0.7150220913107511,0.926509186351706,0.8486997635933806,0.7081967213114754,0.1726907630522088,0.4954014417101665,0.7297668038408779,0.6324081020255063,0.5295381310418904,0.1213592233009708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020149246175187,0.0042874083984553,0.0063605100581271,0.008542060251488,0.0105864765643273,0.0127669972104009,0.0150786044899374,0.0173077512176692,0.0194690989406519,0.0216761378180515,0.0237775430897476,0.0258774722227927,0.0279760557875465,0.0302405852351759,0.032195132021718,0.0343101772382272,0.0363994199295628,0.0384144316200282,0.0404937449954764,0.0423891297099033,0.056979015427682,0.0705916843791554,0.0838073847058082,0.09645513946906,0.1084463202321287,0.124002624394167,0.137293624250146,0.150090011397893,0.161785141635489,0.1731607307700564,0.1863153127897699,0.1997487301123133,0.2118434659554781,0.2231888815933464,0.2337615163623154,0.2446266341679592,0.2552467068542085,0.2646976058351437,0.2747804977652744,0.2831586783485083,0.2917529709901758,0.2995635436046852,0.3076895759842799,0.3134457207261217,0.3191424717134766,0.3252604969480239,0.3309695040970256,0.3364318184712159,0.3429779397460671,0.3476749411795807,0.3480919534023569,0.3486722243692375,0.3484022264289548,0.3483539541277766,0.3487158908507223,0.3480126260304618,0.3472510414521724,0.3478403948992184,0.3491201315947294,0.3509747808978716,0.3519193209134615,0.3519606286712176,0.3535667745596704,0.3529808167482816,0.3528787476784293,0.3539642745220934,0.3553202420367622,0.3585036369934187,0.3581764540601292,0.3581905632627102,0.3604730498066864,0.362504654998138,0.3648888888888889,0.3680280402316367,0.3729800826756858,0.370654095462581,0.3732362312243969,0.3743980738362761,0.3704720087815587,0.3704119850187266,0.0,2.0386716883373057,60.10760758571956,204.44643412161892,301.9868623341056,fqhc7_80Compliance_baseline_low_initial_treat_cost,42 -100000,95730,42299,397.8898986733521,6954,71.41961767471012,5402,55.76099446359553,2133,21.884466729342943,77.32392886815877,79.68983520839976,63.31606620966248,65.06573310334059,77.06139476738943,79.42572655949951,63.220278910356086,64.97172727678229,0.2625341007693436,264.10864890024754,0.0957872993063944,94.00582655830192,109.23088,76.49956909172647,114103.0815836206,79911.8030833871,264.97381,165.41701642728407,276142.65120651835,172145.16497157014,297.47258,143.03617359305264,306175.18019429647,145973.86038442346,3540.327,1595.0489242041854,3661289.825551029,1629243.3659293712,1275.31906,546.8756438820617,1318791.6640551551,557856.3082440841,2085.01426,863.1343990879516,2142823.6289564404,872821.1230835279,0.3793,100000,0,496504,5186.50370834639,0,0.0,0,0.0,22315,232.4140812702392,0,0.0,27589,283.6623837877363,1918940,0,68937,0,0,4305,0,0,44,0.4491799853755353,0,0.0,0,0.0,0,0.0,0.06954,0.1833377273925652,0.3067299396031061,0.02133,0.3158827539195637,0.6841172460804362,25.280504355659456,4.452821318287571,0.3295075897815623,0.2110329507589781,0.239911144020733,0.2195483154387264,11.090388682806744,5.747703296678652,22.756937715169965,12867.543667680578,60.94988590665183,13.555339203694404,20.025955976073785,14.413062569053077,12.955528157830566,0.5618289522399111,0.7991228070175439,0.701123595505618,0.5725308641975309,0.1129848229342327,0.7258771929824561,0.9263959390862944,0.8629213483146068,0.7260726072607261,0.1061946902654867,0.5061973227565691,0.7319034852546917,0.647191011235955,0.525679758308157,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025423642975072,0.0048565837633961,0.0070229565429191,0.0093275620313357,0.0115046588273589,0.0137983706720977,0.0158024590665334,0.0178937805587595,0.0201412957907759,0.0224019658032149,0.024749582209828,0.0270744779153576,0.0290945727826954,0.0310758613586032,0.0332163863378392,0.0351439350870846,0.0370182398210198,0.0391082326566197,0.0410544376852285,0.0430696782797132,0.0580159525599265,0.0721033634984568,0.0851771071451041,0.0973375954238607,0.1092634575842252,0.1254852597395728,0.138261413914206,0.1508730834752981,0.1628749038708023,0.1739741005960293,0.1868803754615227,0.200583910034602,0.2130402643708148,0.2236337199768232,0.234605234220365,0.2454048188502081,0.2559330543933054,0.2656473262002002,0.2753856807165317,0.2838060950721181,0.2909472269219181,0.2989841708748784,0.3062448868284701,0.3125427635132702,0.3190466336380567,0.3249558701904679,0.3311387007775269,0.3363512324504916,0.3412851895596194,0.3462775036054035,0.3473905882988201,0.3478326828393717,0.3484728618653406,0.3484909981735424,0.3486099109031854,0.3480335010430728,0.3471500126806999,0.3488303325009856,0.3505764822607684,0.3515595674322996,0.3528551336146273,0.3547096569753624,0.3554776842856244,0.3572612806380786,0.358685695000241,0.3597062129172221,0.3605335313606763,0.3644129464991932,0.3666241677291401,0.3678955146383352,0.3698391605187188,0.3717777659177029,0.3711900847350449,0.3728308233315496,0.3767799506360357,0.3769765213224724,0.3754380618619534,0.3756233792140435,0.3736263736263736,0.371824480369515,0.0,2.5925714909564115,59.7749448981772,201.8193612480441,307.8744789814543,fqhc7_80Compliance_baseline_low_initial_treat_cost,43 -100000,95806,42676,401.7076174769848,6801,69.99561614095151,5289,54.73561154833727,2107,21.67922677076592,77.4066300966336,79.74495829128509,63.35719594835807,65.08745773390052,77.14684620290828,79.48440293636834,63.26291404837607,64.99518766667317,0.2597838937253272,260.55535491674675,0.0942818999820005,92.27006722734644,110.18898,77.2551893302553,115012.60881364424,80637.10971155805,267.9582,167.2324167846974,279214.98653529,174079.8350674252,294.42514,140.91814338319452,304445.0034444607,144937.86010486077,3489.24343,1553.818262498206,3610205.008037075,1590054.7382191154,1299.21162,557.2482785138228,1343735.2984155482,569291.7964572386,2070.01084,854.7486436224185,2130403.440285577,865847.8078573172,0.38236,100000,0,500859,5227.845855165648,0,0.0,0,0.0,22437,233.7014383232783,0,0.0,27169,280.8174853349477,1916983,0,68780,0,0,4394,0,0,70,0.7202054151097008,0,0.0,0,0.0,0,0.0,0.06801,0.1778690239564808,0.3098073812674606,0.02107,0.3133408071748879,0.6866591928251121,25.26200498256006,4.442649357144453,0.3337114766496502,0.2040083191529589,0.2355832860654187,0.226696918131972,11.060700320166625,5.596945627508487,22.273368308394534,12859.701298599995,59.16057801413577,12.689410964135382,19.62494036793925,13.736016219721831,13.110210462339316,0.5590848931745132,0.7868396663577386,0.6991501416430594,0.5826645264847512,0.1234361968306922,0.7247634069400631,0.9228571428571428,0.8778054862842892,0.7444444444444445,0.1740890688259109,0.5068390947525491,0.7215363511659808,0.6466275659824047,0.5379098360655737,0.1102941176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021176565951324,0.0042891038510677,0.0065962391288905,0.0086057120794936,0.0108623793492743,0.0129732592004236,0.0152117615872433,0.0174552135966926,0.0197064475244286,0.021756928241025,0.0240025416867371,0.0263403622184598,0.0285517539081369,0.0304817788758492,0.0326976600350479,0.0347775804386435,0.0368803277331788,0.0389156688954543,0.0409424769107701,0.0429328419584205,0.0572191732225955,0.0710289365529213,0.0839456224386051,0.0967914831902304,0.1092485670937289,0.1260222734092686,0.1399334407325758,0.1523389325962151,0.1642501253614142,0.1751638747268754,0.188094418384473,0.2007762497837744,0.2136539464534075,0.2246377602830219,0.235948021134264,0.2470377377277705,0.2570867810067578,0.2662860225688981,0.2749486909095032,0.2833289463143318,0.2913202835042606,0.299695011510102,0.3066986834478761,0.3135517096832145,0.3204430625728721,0.3254994269376286,0.3309420072115384,0.3369681392508143,0.3422464049747377,0.3473076821506853,0.3473905599072439,0.3482924814100798,0.3484570687126255,0.3477675858676466,0.3482229126098137,0.3476902818820719,0.3472039967747545,0.3479443079443079,0.3500969750586954,0.3506184247938584,0.3521584750513922,0.3537197896354074,0.354900035515073,0.3545702044095332,0.3541346891788181,0.3546543347795589,0.3547635288767621,0.3577358017730163,0.3616410543634263,0.3660223724257875,0.3672311254369637,0.3690300084530853,0.3704005516203849,0.3689936536718041,0.3704530654014327,0.3701443492547823,0.3725943033102386,0.3670298627925746,0.368362831858407,0.3776923076923077,0.0,1.7716422509491248,56.27889716224264,200.407759750894,303.8112255006897,fqhc7_80Compliance_baseline_low_initial_treat_cost,44 -100000,95690,42308,399.1953182150695,6971,71.72118298672798,5407,55.95151008464835,2163,22.22802800710628,77.29491858535671,79.69849659556503,63.29396199958445,65.07452121054017,77.030929393949,79.43404248373346,63.19706069207061,64.98007775851428,0.2639891914077168,264.45411183156864,0.0969013075138462,94.44345202588522,110.4532,77.35393413092787,115428.15341205976,80838.05426996328,270.02237,168.19181387044725,281584.9932072317,175170.66520083937,297.08885,142.2021902370874,306897.75316124986,145862.29408390613,3561.90347,1604.4654084640008,3685946.4520848575,1640476.933157379,1279.29204,555.9013551065709,1324002.2363883376,568080.61713642,2121.36724,881.9185937158585,2181341.3940850664,891496.0124113392,0.37903,100000,0,502060,5246.734246002718,0,0.0,0,0.0,22729,236.92130839168144,0,0.0,27535,284.2721287490856,1912099,0,68673,0,0,4413,0,0,43,0.449367750026126,0,0.0,0,0.0,0,0.0,0.06971,0.1839168403556446,0.3102854683689571,0.02163,0.3181569592562209,0.6818430407437791,24.995185196547556,4.4275615310340175,0.3230996855927501,0.2193452931385241,0.2272979471056038,0.2302570741631218,11.016081721576064,5.702390567504997,23.004331190584665,12770.949190999198,60.85553499589716,13.859144139085767,19.771587350630504,13.59851421822466,13.626289287956222,0.5381912335860921,0.7596964586846543,0.681740125930166,0.563873067534581,0.1004016064257028,0.7124183006535948,0.918158567774936,0.8454545454545455,0.75,0.1220472440944882,0.4786600496277916,0.6817610062893081,0.6266258607498087,0.5058697972251868,0.094853683148335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023011343477247,0.0045460541670471,0.0067739806022444,0.0090183518885669,0.0111872308804218,0.0132806050166644,0.0152557247234581,0.0171430906601826,0.0193456643614191,0.0215634251528903,0.0234905524895882,0.0254360913069384,0.0275988392434501,0.0297436848777169,0.0317312853544737,0.0338593914824084,0.0361665526746668,0.03815605045943,0.0401352405721716,0.0420683976276592,0.0561573575957631,0.0700002093933873,0.0831348186082631,0.0958017676767676,0.1085509310544917,0.1239816323507628,0.13752003311434,0.1502885250090496,0.1615274483407056,0.1731629598635295,0.1866705446397794,0.1998550285615371,0.2121758982442789,0.2235337836360854,0.2338864878536944,0.2448260970667375,0.255085530647087,0.2647909515502785,0.2746175772510987,0.2832834554481556,0.2912752921555229,0.2987834151025139,0.3053752487444328,0.3116021171133328,0.3176616522151552,0.3231673437133437,0.3286203136163652,0.3344118209031272,0.3399551923749336,0.3452566301622905,0.3462594926482469,0.346554806766607,0.3467748753064502,0.3468104482574191,0.3473936186029914,0.346664825724104,0.3463578051568652,0.3469737123668746,0.3477329953238211,0.347744293546422,0.34897294447687,0.3498757825698102,0.3505106875855533,0.3505293681300155,0.3514431239388794,0.351756944991984,0.3526689470809738,0.3554237879316358,0.358182075005297,0.3620386643233743,0.3633646063281824,0.365192276835856,0.365991133628879,0.3679411539345644,0.3712307984069789,0.3724997005629417,0.3751724137931034,0.3752035830618892,0.3716789920569707,0.3865194211728865,0.0,2.078143076940476,60.9905489015944,193.6900964493011,315.0220964806527,fqhc7_80Compliance_baseline_low_initial_treat_cost,45 -100000,95713,42512,401.51285614284376,6840,70.26213784961291,5297,54.69476455653882,2126,21.762978905686797,77.3593554540744,79.73077241417867,63.33143217950936,65.08395039991314,77.09736983476185,79.47039000939176,63.23510301201456,64.99111413586833,0.2619856193125542,260.38240478690966,0.096329167494801,92.83626404480572,109.53888,76.69314897775891,114445.1432929696,80128.2469233635,263.59374,164.24817659036074,274739.2517212918,170945.4980371728,293.26213,140.4166795858439,302209.84610241035,143467.42014256917,3488.43027,1570.7749121244533,3603246.539132615,1599822.4527319944,1262.60096,548.0711090078204,1300107.8641354884,553773.3725260065,2096.05308,877.1858170118301,2147285.217264113,880715.468312391,0.38263,100000,0,497904,5202.051967862255,0,0.0,0,0.0,22182,231.07623833752996,0,0.0,27169,279.6798762968458,1921743,0,68902,0,0,4308,0,0,51,0.5328429784877707,0,0.0,0,0.0,0,0.0,0.0684,0.1787627734364791,0.3108187134502924,0.02126,0.3307306190741773,0.6692693809258227,25.18196798862073,4.41925787256742,0.322257881819898,0.217481593354729,0.2237115348310364,0.2365489899943364,10.934936612937374,5.540697646140109,22.5474806135526,12806.550213217824,59.41760388599752,13.401073630839123,19.22777254293751,13.009712224867345,13.779045487353551,0.5384179724372287,0.7465277777777778,0.6983011130638547,0.5611814345991561,0.1077414205905826,0.7023014105419451,0.91869918699187,0.8705357142857143,0.6920152091254753,0.1310861423220973,0.4825316455696202,0.665389527458493,0.6370135027799841,0.5238611713665944,0.101419878296146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021978689786492,0.0046529544740336,0.0071032096360112,0.0091710507606995,0.011226015069705,0.0132346503507182,0.015138386258219,0.0174856582896106,0.0196888225552534,0.021754931971048,0.0237194277803414,0.0254521924013188,0.0276760360508662,0.0296829763339824,0.0319072090479433,0.0340924361929768,0.0360393005414695,0.03807656802647,0.0398478028089946,0.0416775174741403,0.0562546339323941,0.0708902890875217,0.083974110168158,0.0968610337031389,0.1091965537968343,0.125510441571631,0.1384971294557108,0.1510018525221983,0.1624489708679761,0.1743306326125449,0.1878064286714869,0.1999025710419485,0.2118976903075601,0.2223656996531007,0.2338051440215894,0.2451206529453513,0.2548868485132811,0.264393163739466,0.273308138413174,0.2827748181245346,0.2908918384114237,0.2987603789030523,0.3059503819501927,0.3118661925457658,0.3181172700901797,0.3242324601913769,0.3298163931964105,0.3350502352791555,0.3413772121745659,0.346163482205256,0.3470065475470227,0.3471620822851801,0.3477900358372567,0.3483333813488519,0.3483525767389467,0.3470338465298143,0.3462576338588268,0.3466996186516964,0.3479765435886945,0.3491777868837856,0.3500534218073441,0.351030581160739,0.3520496110994324,0.3536182361801137,0.3541782359900524,0.3552597164827117,0.3567361885961148,0.3596024813267502,0.3625039697942764,0.3630715309861398,0.3670346786385084,0.3711781056232627,0.3738675513589383,0.3767584097859327,0.381629769194536,0.3861315601994776,0.3888039155705108,0.3918046023415422,0.3887362637362637,0.394696387394312,0.0,2.490421325065369,59.1036361545938,193.34084909921503,301.400224770956,fqhc7_80Compliance_baseline_low_initial_treat_cost,46 -100000,95884,42776,400.8906595469526,6982,71.61778816069418,5438,56.07817779817279,2110,21.588586208335077,77.4394230829848,79.71955579925472,63.39129033748679,65.07720856593616,77.18623614932645,79.46968464744576,63.29821870771397,64.98870522699005,0.2531869336583554,249.8711518089607,0.0930716297728153,88.5033389461114,109.41788,76.68703140629043,114114.84710692086,79978.96563169082,267.96576,166.7525310576892,278838.3671936924,173280.3711335459,299.70014,143.18446407894078,308918.87071878515,146521.63644111578,3547.56933,1584.816232802283,3659226.7427308,1612218.798550624,1293.67065,556.4226029916304,1332726.5341454258,563834.5858306715,2074.59972,855.2341700973747,2123543.761211464,855231.0640512427,0.38333,100000,0,497354,5187.038504860039,0,0.0,0,0.0,22435,233.3235993492136,0,0.0,27680,285.06320136832005,1923774,0,69021,0,0,4477,0,0,66,0.6883317341787993,0,0.0,0,0.0,0,0.0,0.06982,0.1821407142670806,0.3022056717272988,0.0211,0.3210412147505423,0.6789587852494577,25.342503130147797,4.423158434181241,0.3271423317396101,0.2223243839646929,0.2239794041927179,0.226553880102979,10.861429922879411,5.465724092585756,22.10473022389783,12963.34572053104,60.92288293433178,14.181545119722866,19.928924155091103,13.439492781638815,13.372920877878984,0.5454211107024641,0.7584780810587263,0.6790331646992692,0.5812807881773399,0.1079545454545454,0.7169663799843627,0.8773333333333333,0.8799019607843137,0.7376425855513308,0.1502145922746781,0.492666506371724,0.7050359712230215,0.6192560175054704,0.5382198952879581,0.0980980980980981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023182830532496,0.0049860148364343,0.0073443634039704,0.0098386621856247,0.0123796843078862,0.0143668220019942,0.0163891010949834,0.0186454508363933,0.0206775366760655,0.0231694592769901,0.0252874034303981,0.0273747717058956,0.0295949195388125,0.0320143292431853,0.0340422899677309,0.036347114947751,0.0382995892777703,0.0403071216156006,0.0424838297739802,0.0442453939223703,0.0591779508188176,0.0727795193312434,0.0862052715905877,0.0992240573714549,0.1111391845371569,0.1268874200156273,0.1403086897106961,0.1528799149840595,0.1650816665955904,0.1763421525815566,0.1898720567680894,0.2028354386609468,0.2148358990515714,0.2255198714936675,0.2369809992962702,0.247614936804126,0.2574594010187362,0.2666456968893582,0.2760370647273386,0.2847327807945127,0.2923629476504487,0.3004249754821837,0.3079341441217837,0.3144587832499341,0.321386090544969,0.3273255527650563,0.333116631452611,0.3387145941826495,0.3440775444264943,0.3489048596851472,0.3490625629997984,0.3497631633143406,0.3495776112899372,0.3499372122226873,0.3499458448938412,0.3492833213504459,0.3485188936008608,0.3491506525873942,0.3490749590387766,0.3505000267393978,0.3525834159851788,0.3545700357234492,0.3553319666987407,0.3560013373453694,0.3572335481398079,0.360056222181733,0.3603938482492481,0.3626662494132374,0.3655482700892857,0.3676790016192093,0.3710232937550983,0.3739932174650275,0.3758326002262159,0.3785414280259641,0.3825789923142613,0.3833094213295074,0.3880248833592535,0.3916443712698086,0.3847650820127884,0.3959044368600682,0.0,2.47140502064094,55.781827984746286,212.2933450320994,311.1258197012503,fqhc7_80Compliance_baseline_low_initial_treat_cost,47 -100000,95741,42111,396.3610156568241,6720,68.95687323090421,5249,54.271419767915525,2193,22.550422494020324,77.34647984393533,79.69827708758238,63.33814763576003,65.07512877360632,77.07683663308123,79.42811566964362,63.23865741283712,64.97774361206261,0.2696432108540989,270.16141793876614,0.0994902229229097,97.38516154371268,109.77912,76.84208425537409,114662.60013996092,80260.37356553,265.80933,165.98763937046115,277063.9746816933,172801.75616555204,287.27418,137.5471225848509,296550.9551811659,140988.0871561021,3505.27402,1580.6471901776335,3626590.1442433232,1616347.061528114,1248.4273,547.3552576330013,1288063.7448950815,555804.7938009849,2159.1695,902.7588400195716,2221480.536029496,914286.4048270376,0.37861,100000,0,498996,5211.936369998224,0,0.0,0,0.0,22434,233.734763580911,0,0.0,26670,275.09635370426463,1918456,0,68890,0,0,4246,0,0,41,0.4177938396298347,0,0.0,0,0.0,0,0.0,0.0672,0.1774913499379308,0.3263392857142857,0.02193,0.3234211271594449,0.6765788728405551,25.01964351906108,4.5443572985349805,0.3238712135644884,0.2076586016384073,0.2286149742808154,0.2398552105162888,11.035436152885689,5.565712780063693,23.407492297154583,12705.266613193806,59.337205201128654,12.87246491433804,19.25965675403576,13.463751082489836,13.741332450265014,0.5406744141741284,0.763302752293578,0.69,0.5883333333333334,0.1008737092930897,0.698948948948949,0.9344262295081968,0.8539603960396039,0.6845637583892618,0.1515151515151515,0.4868521827929538,0.6767955801104972,0.6388888888888888,0.5565410199556541,0.0874371859296482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0045819014891179,0.0070630498980119,0.0095792446313565,0.011928732686558,0.0139782537872617,0.016065239551478,0.0182386021494401,0.0203923091862497,0.0222886570495428,0.0243544931784868,0.0263789953400529,0.0286328213353073,0.0307031547723269,0.032644807164524,0.0346463529338804,0.0365063259685668,0.0385002438037535,0.0405513570827139,0.0424860428297641,0.0572636634128517,0.0717014306795466,0.084578262694083,0.0974068309918398,0.1098927746792202,0.1251823814256412,0.1376428033477241,0.1495466348814439,0.1611580835254932,0.1725257765106857,0.1855264999407882,0.1986567309460205,0.2106384366236984,0.2213139834768545,0.2319581395860128,0.243906218866922,0.2543765750094779,0.2642795290201414,0.2730624794363576,0.2810069750661428,0.2883536366686334,0.29588220847416,0.3029373808649941,0.3090640890338674,0.3145082883671187,0.3206131325702034,0.3261634385446532,0.3314861525134398,0.3369363524297671,0.3411467629133119,0.3412626664687707,0.3419869850548723,0.3419106230415267,0.3420092117841314,0.3428703345149087,0.3422478775503937,0.3415879256769611,0.3418972007166691,0.3431154333458891,0.3439585010285305,0.3455228083348977,0.3471372269423484,0.3481754127668524,0.3497980251346499,0.351650738488271,0.3519966416539854,0.3528500974882441,0.3548845582893781,0.3577373395401326,0.3596463278636291,0.3622523844460748,0.3642983348503507,0.363895036357888,0.3651512824450929,0.3695961995249406,0.3713909188930154,0.3719390112428769,0.3771768080311412,0.3812341504649197,0.3813659692064745,0.0,2.185920300752672,58.68941865595791,198.1544632390601,296.77129021938435,fqhc7_80Compliance_baseline_low_initial_treat_cost,48 -100000,95731,42531,400.0689431845484,6973,71.5233310004074,5400,55.72907417659901,2191,22.490102474642487,77.41222784566315,79.76755942962616,63.350809200748486,65.08960453849177,77.13203819395623,79.48926303304266,63.24768880146819,64.99002737847309,0.2801896517069195,278.2963965834995,0.1031203992802929,99.57716001868278,109.37652,76.6256861003351,114254.0242972496,80042.70936304342,267.71479,166.91207446404627,278984.6026887842,173686.7205649646,299.54871,143.5097002970381,308736.187859732,146735.37481220317,3578.37161,1626.7700714544246,3695545.6539678895,1656914.971591672,1322.48314,580.6363226330571,1366709.477598688,591780.9618964151,2156.77236,903.7625213212168,2215495.691050966,910453.602152229,0.38204,100000,0,497166,5193.364740784073,0,0.0,0,0.0,22517,234.5008408979328,0,0.0,27732,285.5187974637265,1919070,0,68786,0,0,4277,0,0,62,0.6372021602197826,0,0.0,0,0.0,0,0.0,0.06973,0.182520154957596,0.314211960418758,0.02191,0.3150143188326742,0.6849856811673258,25.242116352306702,4.5024374109019725,0.322037037037037,0.2074074074074074,0.234074074074074,0.2364814814814815,11.24955353913194,5.777943255120894,23.24587472198538,12875.62379620936,60.9445698699049,13.184295377721456,19.569015127016986,14.14114992949133,14.050109435675132,0.5511111111111111,0.7732142857142857,0.7009775733179988,0.5806962025316456,0.1229444009397024,0.7211126961483595,0.9185750636132316,0.8891509433962265,0.7373417721518988,0.1486988847583643,0.4914957478739369,0.6946354883081155,0.6403041825095057,0.5284810126582279,0.1160714285714285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020153939639457,0.0045203466274768,0.0067564825711155,0.0090177918596149,0.0112648562917475,0.013620400061078,0.0158183337749964,0.018213728151179,0.0203370430552574,0.0223746161719549,0.0244732311224071,0.0266999260901699,0.0288469446500534,0.030997693194925,0.0333697917741502,0.0354846712008765,0.0375451712105366,0.0394451533920549,0.0413677666188426,0.0433143047626984,0.0575762637546196,0.0719069144483509,0.0854838032896945,0.0978539869556069,0.1092000717519072,0.1242115734665368,0.1371668736268984,0.1511153702816376,0.1638240574506283,0.1748486669814966,0.1887648929861448,0.2009162091036096,0.2127117536907198,0.2241360430992948,0.2347807882587569,0.2466610462794515,0.2565667404377081,0.265534177443338,0.2745559038662487,0.2831391615448124,0.2914986792715139,0.2989837969467079,0.3074036367080215,0.313614573346117,0.3202497661479402,0.3259610645638245,0.3314614470639734,0.3372168367022831,0.3428013904862825,0.3479044911283104,0.3482412667714251,0.3482837654227797,0.3481383614207204,0.3484579782862581,0.3485718514133491,0.3471052952659834,0.3470884119900976,0.3476356266039,0.3486186998927641,0.3497900654711073,0.3516071228581028,0.3524394807855187,0.3536712993971869,0.355626966593024,0.3562881445528377,0.3562556958729332,0.3584669267348159,0.3617683099255349,0.3650080707418064,0.367049504950495,0.3717477182945103,0.3747213079944792,0.3767295597484277,0.3776006074411541,0.3808588268313219,0.3829181494661922,0.3792053585020551,0.3823233340044292,0.3788086741696404,0.3810073048827374,0.0,2.62795025872649,61.37231513265415,199.40807251181755,303.89870119222127,fqhc7_80Compliance_baseline_low_initial_treat_cost,49 -100000,95730,42619,401.06549670949545,6836,70.06163167241199,5332,55.13423169330408,2082,21.383056513109786,77.32373385663094,79.69351331697536,63.321321634088775,65.07524360246852,77.07131124074508,79.44196821850173,63.22735103998747,64.98408333388188,0.2524226158858624,251.5450984736276,0.0939705941013073,91.16026858663416,109.71136,76.80490282010798,114604.99321007,80230.75610582679,266.12738,165.8806842749104,277448.81437375955,172730.65316505835,295.79308,141.55354910052552,305428.8728716181,145181.20564717415,3503.44593,1581.2402065277884,3623576.5277342526,1615696.4597743186,1284.09192,560.605271070268,1325868.4111563773,570147.2354421875,2048.34808,852.3865199927711,2105217.7373863994,861058.3973549437,0.38254,100000,0,498688,5209.317873184999,0,0.0,0,0.0,22385,233.24976496396116,0,0.0,27444,283.1714196176747,1918635,0,68924,0,0,4262,0,0,50,0.5118562624046799,0,0.0,0,0.0,0,0.0,0.06836,0.1787002666387828,0.3045640725570509,0.02082,0.3191727221911682,0.6808272778088318,24.98069694279024,4.447731377827603,0.3235183795948987,0.2162415603900975,0.2353713428357089,0.2248687171792948,11.309042099357296,5.761847040084503,22.05386424528073,12907.665637953256,60.1087683337055,13.728879270714694,19.54258742594306,13.73762386624944,13.099677770798294,0.5573893473368342,0.7623590633130962,0.7118840579710145,0.5800796812749004,0.1142618849040867,0.7133333333333334,0.9081364829396326,0.8826185101580135,0.6970802919708029,0.1388888888888889,0.5045203415369162,0.6904145077720207,0.6528861154446178,0.5474006116207951,0.1077085533262935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227963525835,0.00480696096626,0.0071965083231831,0.0093998333434953,0.0114968256552173,0.0134665729507278,0.0157977399747073,0.0181998304617364,0.0202468479339011,0.022694454401147,0.0249410316890575,0.0271236225081904,0.0291963293691617,0.0311826959738667,0.0331953633839452,0.0355211876234092,0.0376266130869772,0.0394766874857344,0.0413088232236062,0.0432517478874266,0.0575712331770675,0.0720812182741116,0.085467305896793,0.0980171461631515,0.1100823587721055,0.1256132634072069,0.1386151218425435,0.1518366391419085,0.1642653451387924,0.1748715914086878,0.1888210528582657,0.2008524817170799,0.213010287305074,0.2240713809279083,0.2349187488310173,0.2457360563505072,0.2560413948457172,0.2655977888385785,0.2747496966879457,0.2840370751802266,0.2921121063276509,0.2996365421248846,0.3070001182452406,0.3131050512795936,0.3198445470002429,0.3259500301988192,0.3318560250391236,0.337242617565038,0.3432452751924921,0.3478926596179992,0.3482870576189898,0.349114708921805,0.3495288076293663,0.350089090408657,0.3513722803830174,0.3502301319423136,0.3492357646313455,0.3501305354416039,0.3513379752884156,0.351694839619442,0.3532301001087323,0.3552959809938626,0.3563346512997392,0.3579112857944975,0.3598849991544055,0.3619095029737731,0.3629062329690503,0.3659355983772819,0.3684173272933182,0.3709858702633269,0.3716626772233474,0.3733612722974425,0.3728575979611341,0.3745569425181075,0.3748701973001038,0.3736276849642004,0.3708941605839416,0.3707751467314308,0.3763706140350877,0.3870719507502885,0.0,2.2202992956372367,59.42523701642139,199.1620668560972,302.9354670422638,fqhc7_80Compliance_baseline_low_initial_treat_cost,50 -100000,95779,42354,399.0123095876967,6762,69.40978711408556,5300,54.74060075799497,2139,21.96723707702106,77.38153749659537,79.72325481305234,63.350937847410606,65.08291271121807,77.11701383551623,79.45912357760258,63.25487516482281,64.98989196418957,0.2645236610791386,264.1312354497529,0.0960626825877923,93.02074702850403,109.10988,76.43921451551324,113918.37459150753,79807.90623781127,263.86296,164.48639058521056,274905.42812098685,171149.313090772,292.08183,139.6462980651143,301179.5278714541,142955.0764296412,3499.4037,1563.5578015247763,3616877.937752534,1595718.9170118454,1300.22087,564.3986312111409,1338845.96832291,570665.3564372167,2105.34316,867.5622924510551,2164082.3562576347,875456.3753953043,0.38002,100000,0,495954,5178.107935977615,0,0.0,0,0.0,22197,231.11538019816453,0,0.0,27092,279.0590839328037,1924453,0,69019,0,0,4223,0,0,46,0.4802722935090155,0,0.0,0,0.0,0,0.0,0.06762,0.1779380032629861,0.3163265306122449,0.02139,0.3216242798932134,0.6783757201067866,25.24085802725028,4.528674576981378,0.3239622641509433,0.2156603773584905,0.230377358490566,0.23,11.125193831671304,5.576093645893944,22.69343114451056,12789.942943829596,59.54227595114539,13.503655716545513,19.18961104567557,13.57025523499494,13.278753953929373,0.5488679245283019,0.7821522309711286,0.6808386721025044,0.5724815724815725,0.1205906480721903,0.7263406940063092,0.9293193717277488,0.8507853403141361,0.7480916030534351,0.1859504132231405,0.4930555555555556,0.7082785808147175,0.6322097378277154,0.5245046923879041,0.1044012282497441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021470963560128,0.0043890769760982,0.0066251369668438,0.0087444014502909,0.010990910384936,0.0135590459806386,0.015696986993925,0.0178507639392114,0.0199370516462629,0.0219984856856365,0.0240198389113192,0.0260926690070004,0.0282544546006025,0.0304668355264512,0.0325116039195461,0.0345094797747584,0.0363011714061012,0.0384272504872081,0.0404828438756323,0.0425321463897131,0.0578659013827289,0.0721472649304466,0.0847120001677465,0.0971721608642195,0.1091439832232093,0.124190190338297,0.1370784849833619,0.1493605213637958,0.1611460889979724,0.1722116229715535,0.1857556481212395,0.1992148635203529,0.2113305150135301,0.2231449207268436,0.2333120724921371,0.2436970139672842,0.2538573021181717,0.263338316118373,0.2727994285260735,0.281543512830193,0.2899678545824564,0.2975664492601164,0.305278849111516,0.3122514493795218,0.3191045066045066,0.3259006624147356,0.3317169495338316,0.3366481427317929,0.3421083284799068,0.346837045535467,0.3466550006730381,0.3468660576711424,0.3474160534551298,0.3479154008621937,0.3488160969148572,0.347011665159342,0.3460174749905027,0.3468765371372356,0.3476400702268737,0.3480113383131585,0.3492387497893219,0.3508015893411351,0.3522467551529639,0.3535401107896566,0.35443312378062,0.3544111880799895,0.3546755806976943,0.3568865667883671,0.359038259038259,0.3604591127526907,0.362632851343338,0.3635782407160743,0.3638382940915148,0.3621762852532083,0.3638178534081186,0.3651040420951925,0.3648565257636532,0.3698714023270055,0.3801675977653631,0.3823870220162225,0.0,2.279799107445811,55.58683393893804,205.16581272832477,303.2183494375256,fqhc7_80Compliance_baseline_low_initial_treat_cost,51 -100000,95846,42559,400.0166934457358,6811,69.79946998309788,5298,54.58756755628821,2108,21.586712017194248,77.37299817448195,79.67437506122762,63.35320242165369,65.05692705897964,77.11963985264659,79.4224902899168,63.260334571552455,64.96722878347015,0.2533583218353641,251.8847713108272,0.0928678501012356,89.69827550949105,109.60334,76.7375837206101,114353.58804749284,80063.41810885181,267.72062,167.76827212584269,278633.3493312188,174356.77362036868,297.70401,143.12306649410394,305899.5054566701,145729.36511459775,3505.59132,1574.857270030896,3613545.030569872,1599731.1201922875,1275.97153,555.4411858616332,1312071.6983494356,561043.9718107678,2081.16584,860.3703854852938,2133402.875446028,866568.9040191813,0.38096,100000,0,498197,5197.89036579513,0,0.0,0,0.0,22591,234.98111553951128,0,0.0,27628,283.50687561296246,1916557,0,68852,0,0,4306,0,0,32,0.3338689147173591,0,0.0,0,0.0,0,0.0,0.06811,0.178785174296514,0.309499339304067,0.02108,0.3174846625766871,0.6825153374233128,24.881355420246845,4.454537144002509,0.3261608154020385,0.2129105322763307,0.2281993204983012,0.2327293318233295,11.043637738604415,5.50125393925321,22.353384993880947,12778.202093767475,59.66386851652192,13.369963358264425,19.449177142668937,13.318507746387173,13.526220269201405,0.5539826349565874,0.7907801418439716,0.6961805555555556,0.5839536807278742,0.1086780210867802,0.7139605462822458,0.9042821158690176,0.8726415094339622,0.7125984251968503,0.1275720164609053,0.5010050251256282,0.7291381668946648,0.6388036809815951,0.5497382198952879,0.104040404040404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799878468705,0.0045709305036131,0.0066441475710822,0.0089251264139065,0.0112030579671837,0.0132430781758957,0.0154413788183013,0.0177264795028013,0.0199348108185431,0.0219575582704074,0.0241483530556836,0.0262858198159377,0.0287141330263915,0.030745952177538,0.0328237271012236,0.0351426151971415,0.0370496823721729,0.0390250979254315,0.0409155105092631,0.0431154670495453,0.0577145657591524,0.0714658919913058,0.0851892979111232,0.0975018114229909,0.1089241332827836,0.1241298446132232,0.1375513923621413,0.1503051179009589,0.1618053554466963,0.1728098748499914,0.1862309405700881,0.1993126033526798,0.2112023995826812,0.2220946758500054,0.2319499152784807,0.2433575882424604,0.2537626490834644,0.2634983854817115,0.2727375860778018,0.2814972576231207,0.2890168730990297,0.2970307454724133,0.3041095566129299,0.3104700061101992,0.3162502124766275,0.3228163114451152,0.3287542576637948,0.3342536867151018,0.3397650898071768,0.3449131841288704,0.34613933432152,0.345561494379546,0.3455715313739047,0.3466888615473691,0.3467906284864261,0.3466360153256705,0.3463068316878754,0.3467496837574543,0.3478833039941207,0.3483849055254643,0.3487583169337456,0.3507831658887746,0.3510114243789959,0.3538482166800751,0.3553901560624249,0.3556875618779636,0.3572346440503726,0.3594040381768356,0.3611657994656166,0.3627248949829595,0.3662131519274376,0.3708651399491094,0.3742509304232637,0.3763111553479825,0.3800416587767468,0.3827321111768184,0.3878052526493626,0.3901888341543514,0.3918881118881119,0.3862229102167183,0.0,2.6165735268213197,57.53745051139198,200.94498731704695,300.5887643874987,fqhc7_80Compliance_baseline_low_initial_treat_cost,52 -100000,95791,42597,401.561733356996,6913,70.98787986345273,5460,56.40404630915222,2190,22.549091250743807,77.39816222968327,79.72785469381296,63.35848721039546,65.07982812521298,77.13705726528646,79.46624495509849,63.26405287504869,64.98744567692162,0.2611049643968073,261.6097387144692,0.0944343353467758,92.38244829136022,109.15432,76.49974295148628,113950.49639318934,79861.09650331063,267.56546,166.10542447357315,278748.4941174014,172830.36451605387,296.03052,141.59064477509733,304887.546846781,144653.80208074546,3615.52493,1615.9168482023897,3740953.544696266,1653483.8640398278,1316.01922,564.9515084922434,1360875.531104175,576806.3476654838,2164.26776,886.8574536535862,2230350.7636416783,900451.1024194822,0.38152,100000,0,496156,5179.568017872243,0,0.0,0,0.0,22456,233.82154899729625,0,0.0,27377,281.7801254815171,1923476,0,68951,0,0,4398,0,0,60,0.6054848576588615,0,0.0,0,0.0,0,0.0,0.06913,0.1811962675613336,0.3167944452480833,0.0219,0.3203243094681874,0.6796756905318125,25.0940992694554,4.446202139294924,0.317032967032967,0.2135531135531135,0.2313186813186813,0.238095238095238,10.969866292568714,5.494218996892061,23.113049729172463,12855.144644622296,61.306885889663015,13.580034298868972,19.510582460763697,14.135734358519851,14.080534771510484,0.5472527472527473,0.7607204116638079,0.7111496244945118,0.5771971496437055,0.1084615384615384,0.7165653495440729,0.9221902017291066,0.8747099767981439,0.7342657342657343,0.1428571428571428,0.493484555984556,0.6923076923076923,0.6569230769230769,0.5312180143295804,0.1001908396946564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023596848352271,0.0048544673260904,0.0070101042892504,0.0092716711349419,0.0113963299954252,0.0136482993058806,0.0159779895042543,0.0181202301758968,0.020075807885246,0.0219869040311029,0.0241883432880164,0.0263414433920637,0.0284777604209487,0.0307845902078037,0.0328157862179883,0.0346401718582169,0.0365914216548385,0.038594744810137,0.0404672333880656,0.0423404942154096,0.0572117240731658,0.0705941412091992,0.0843319180164596,0.0972298120980285,0.1097618821743667,0.1252166744176214,0.1384594176157451,0.1516028471416868,0.1638652770065354,0.1745400351674743,0.1885250314980132,0.2015420884159529,0.2137425312330255,0.2245816402324463,0.2356237843540181,0.2463216585171582,0.2574804905239687,0.2674971611031784,0.2768691588785046,0.2853462489694971,0.2932533351830015,0.300549322113137,0.307493845862526,0.3138046734571599,0.3200777123429057,0.3261442577720845,0.3312575030012005,0.3367409215746109,0.3416731416731416,0.3466334164588528,0.3465418546703481,0.3467846234280839,0.3472611716294866,0.3475654673349414,0.347335153421568,0.3472780947427994,0.3456590876726634,0.3467086800256019,0.3477903954029279,0.348625328259821,0.3492045646185845,0.3504981085738052,0.3507991777488778,0.35121482375556,0.3514220568822753,0.3535256075936163,0.3535428149326666,0.3574028745371242,0.3602334684747658,0.3609079046225631,0.3616885485047411,0.3647426062113115,0.3676102204408817,0.3694029850746269,0.3691047726630895,0.372776119402985,0.3720397249809014,0.378757108042242,0.3806074115352466,0.3848508033664881,0.0,2.3537631738335127,57.846932962943015,208.5456014361268,313.24619599587584,fqhc7_80Compliance_baseline_low_initial_treat_cost,53 -100000,95878,42163,397.494732889714,6786,69.58843530319781,5290,54.60063831118713,2176,22.32003170696093,77.3584022892406,79.6405970758789,63.35300198276878,65.04159596746021,77.10054300308134,79.38356569957189,63.25795464954386,64.94952532942405,0.2578592861592597,257.0313763070118,0.0950473332249188,92.07063803616222,108.3687,75.96378803266283,113027.7018711279,79229.63352663054,266.00105,166.12485392954017,276839.00373391184,172682.87193265883,295.30224,140.9507891928376,304377.7091720729,144280.4405447065,3503.61709,1574.661332799254,3617281.315838879,1606594.692816255,1291.4265,561.71584724154,1329467.5316548117,568722.9907890843,2140.10646,883.3302009636008,2196650.472475438,890137.7906711465,0.37832,100000,0,492585,5137.622812323995,0,0.0,0,0.0,22346,232.44122739314545,0,0.0,27392,282.0980829804543,1923656,0,69062,0,0,4398,0,0,50,0.5214960679196479,0,0.0,0,0.0,0,0.0,0.06786,0.1793719602452949,0.3206601827291482,0.02176,0.3209563994374121,0.679043600562588,25.097932938685545,4.457153079374162,0.3198487712665406,0.2137996219281663,0.2304347826086956,0.2359168241965973,11.331357015265745,5.933432413799989,22.847783959193546,12684.02853898432,59.6103944790636,13.206695890938274,18.989887276625986,13.811050411970845,13.602760899528509,0.5468809073724008,0.7763041556145004,0.6725768321513003,0.5988515176374077,0.1177884615384615,0.7088122605363985,0.9283667621776504,0.8452088452088452,0.7055016181229773,0.1625,0.4938519447929737,0.7084398976982097,0.6178988326848249,0.5626373626373626,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022476688029644,0.0041442482090565,0.0064508930835471,0.0086811725167277,0.0106830656637527,0.0129962649731831,0.0151493540894086,0.0171655872303534,0.0192969380149678,0.0211717559983234,0.0234115081843029,0.0255889770560374,0.0275963355517213,0.0298211144600002,0.0318531724358247,0.0338337325514165,0.0357083747103608,0.0377141435811336,0.0397221010654869,0.041542687113756,0.0563478659744375,0.0705860227973211,0.0835392928954423,0.0965001627587076,0.1088335053826869,0.1243608704838368,0.1374417125900805,0.1500834742293255,0.1623684379069618,0.1733061749571183,0.1872072363107737,0.1995218830452372,0.2118721461187214,0.2225684081641577,0.2334081013326296,0.243907297961352,0.2535245828500044,0.2635224793648651,0.2721610183914045,0.2799019214684281,0.2875429682526823,0.2948341426314865,0.3017958255348385,0.3075483692979405,0.3143975779093661,0.3203711014607185,0.3257807408892676,0.3313198506454614,0.3363485347937809,0.3410762474204984,0.3419369636785579,0.3421241280432325,0.3424093224045257,0.3436889268497474,0.3437458124264848,0.3428632846087704,0.3427469282788837,0.3440067168233376,0.3451909731146866,0.3458187997495752,0.3472227438314493,0.3481465337903433,0.3495429231900809,0.3499786981187075,0.3507768770507624,0.352658894713507,0.35421006077553,0.3573517848718352,0.3589356548601116,0.3603195421485632,0.3634993835897904,0.3632065448363791,0.3658690573899867,0.3691430332922318,0.3686117467581998,0.3669160231660232,0.366166353971232,0.3705749948843871,0.3725868725868725,0.3703561853695902,0.0,2.1468995769675203,57.36542379132658,199.0565913513505,305.502388939185,fqhc7_80Compliance_baseline_low_initial_treat_cost,54 -100000,95730,42512,400.5118562624047,6946,71.34649535150945,5453,56.366865141543926,2115,21.72777603677008,77.38965647392791,79.7577332897407,63.34469261111818,65.09449712730917,77.14107684345493,79.508300274846,63.25403247857395,65.00555166056992,0.2485796304729888,249.4330148947057,0.0906601325442366,88.94546673924708,110.0275,77.05494924676071,114935.23451373656,80491.95575761069,269.97705,168.12534156463903,281398.31818656635,175003.55329012746,300.99235,143.6032828625094,310326.2195758906,146787.4308551109,3560.72661,1595.55392159875,3684354.559699154,1631526.0958933984,1325.37416,575.2576551331422,1369785.009923744,586209.8455375979,2077.09066,855.1929989418012,2136181.489606184,866116.7681616567,0.38165,100000,0,500125,5224.328841533479,0,0.0,0,0.0,22733,236.81186670845085,0,0.0,27841,286.9424422855949,1917539,0,68797,0,0,4321,0,0,46,0.4387339392040112,0,0.0,1,0.010446046171524,0,0.0,0.06946,0.1819992139394733,0.3044917938381802,0.02115,0.3242763517203714,0.6757236482796286,25.245545008423186,4.459320944599963,0.3196405648267009,0.2257472950669356,0.2312488538419218,0.2233632862644416,11.241220827622753,5.773294689318897,22.237471535431137,12871.767717592616,61.3133334166777,14.428785226566214,19.712263941502663,13.87573515201655,13.296549096592267,0.5552906656886117,0.7562956945572705,0.6953528399311532,0.5939730372720063,0.1116584564860427,0.7207272727272728,0.8836633663366337,0.8555045871559633,0.7687074829931972,0.1452282157676348,0.4995095635115252,0.694074969770254,0.6419280795715379,0.5408479834539814,0.1033776867963152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023802771250303,0.0045619050515495,0.006677559139021,0.008604750391125,0.010782548546899,0.0132377499898171,0.0157318950663227,0.0179255009646696,0.0200445661951099,0.0220588987952053,0.024221488755407,0.0263636083649019,0.0286198920585967,0.0307061803653438,0.0327478262663352,0.0348181066556428,0.036593700167747,0.0388633557771114,0.0410218568444245,0.042780191500224,0.0575676268231314,0.0723331658712216,0.0855575139535859,0.097794984009426,0.1105168776371308,0.1267318146244474,0.1396002630964757,0.1525364208106756,0.1645397947524107,0.1757608905475838,0.1898916812024894,0.2020856546337664,0.2145971275427552,0.2253856835153781,0.2362442099704034,0.2475167487957477,0.2577364424074136,0.2669618176506281,0.2763581534554689,0.2844542573759052,0.2928016463950423,0.3006731488406881,0.3075568477284546,0.3138749910229095,0.3200732983022463,0.3263966704017929,0.3318868490820869,0.3372755480950201,0.3423688024014077,0.347470032044942,0.3474329996771069,0.3467568905760026,0.3473866467714917,0.3476050887351807,0.3476242733420334,0.346791206775308,0.3459928276908008,0.3466075489602591,0.3474913318376504,0.348469768599154,0.3488350419384902,0.3494568639798489,0.3508007340061723,0.351246660730187,0.3515247259323089,0.3536274815507743,0.3547021899054165,0.3589187490177589,0.3606938043134081,0.3619040025514272,0.3636113657195233,0.3645587287953618,0.3675370769425782,0.3682176417096089,0.3666914913423943,0.3646740409508119,0.3631953918447779,0.3623420894325245,0.3578056768558952,0.3614595210946408,0.0,2.312461243281854,60.50099703103789,201.50641069164723,311.613293392737,fqhc7_80Compliance_baseline_low_initial_treat_cost,55 -100000,95754,42945,404.56795538567576,7061,72.33118198717547,5485,56.624266349186456,2176,22.265388391085487,77.34687979821054,79.70573337568943,63.33382307926016,65.08101082284209,77.078174144268,79.44063474327719,63.23366276278206,64.98514872497725,0.2687056539425327,265.09863241224707,0.1001603164780959,95.86209786483836,110.02772,77.16140180969695,114906.197130146,80582.54094577643,270.35242,168.95297489507075,281685.18286442343,175791.0908362866,304.21813,145.91506173498246,313932.942749128,149403.873907133,3620.31854,1644.7596476446106,3741247.697224137,1678150.2000645073,1316.42911,579.2510508058273,1358448.1588236522,588644.5501950111,2145.34766,903.1445634228016,2198167.1366209243,906465.2832248925,0.38438,100000,0,500126,5223.008960461181,0,0.0,0,0.0,22828,237.7237504438457,0,0.0,28154,290.24374960837144,1913750,0,68692,0,0,4307,0,0,45,0.4699542577855755,0,0.0,1,0.0104434279507905,0,0.0,0.07061,0.1836984234351423,0.308171647075485,0.02176,0.3234660925726588,0.6765339074273412,25.22000920070049,4.483990235474976,0.327073837739289,0.2164083865086599,0.2224247948951686,0.2340929808568824,11.232918922458648,5.698111626172289,23.1312157443139,12937.518701615954,61.97767329998277,14.104919558711138,20.27285637708519,13.621023085462976,13.978874278723476,0.5434822242479489,0.7598989048020219,0.6833890746934225,0.578688524590164,0.1144859813084112,0.7321178120617111,0.9192399049881236,0.8635394456289979,0.7437722419928826,0.1686274509803921,0.4772111357477211,0.6723237597911227,0.6196226415094339,0.5292864749733759,0.1010689990281827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023712050585707,0.0046444651766519,0.0070355329949238,0.0092990639958535,0.0118417839993489,0.014022117675811,0.0161076562340707,0.0180992241731318,0.0204861892007932,0.0225150509890649,0.0248521074053948,0.0270347971620136,0.0291849200962547,0.0311820757146536,0.0329948190806448,0.0349408176978342,0.0372591050773038,0.0391410342860106,0.0412681912681912,0.0430490471727585,0.0575752831271854,0.0714360433490941,0.0852634338138925,0.097756056545273,0.1102960550584416,0.126936489485364,0.1405403686548021,0.1532163742690058,0.1656763071145865,0.1764094653512014,0.1898675617811918,0.2023001426780232,0.2138650440073889,0.2252479573557041,0.2364473554073211,0.2480021251632612,0.2586139585726874,0.2682095745757565,0.2776068570131123,0.2864574977654527,0.2950662159659196,0.3030118578000444,0.3092553997726411,0.3153911656412286,0.3214493950731257,0.3273213010612365,0.3331831549965584,0.3386036099062544,0.3428926550746404,0.3477647369115126,0.3474755360531947,0.3471497597841498,0.3482663436892657,0.3489732258903041,0.3501351471767606,0.349215830423329,0.3477985429204941,0.3485722740050303,0.3493720269669073,0.3488505130680396,0.350116348896562,0.3513170673696311,0.353315683308119,0.3549894415240149,0.3554078549848942,0.3564715148332896,0.3587168598645702,0.3613208145657552,0.3634564410673264,0.3656662665066026,0.3713786443483859,0.37419113321568,0.3749841108427609,0.377372933251684,0.3776690809895588,0.3792325056433409,0.3837887626650291,0.3859397417503586,0.3922450126440011,0.3912698412698412,0.0,2.5071585201852016,62.419895872786086,205.49809798416356,305.9895816257333,fqhc7_80Compliance_baseline_low_initial_treat_cost,56 -100000,95736,42367,398.8886103451157,6849,70.11991309434278,5323,54.838305339684126,2180,22.248683880671848,77.36211040614715,79.72413206451562,63.32787542470121,65.07563557406121,77.09217589510374,79.45570191858165,63.228101283997226,64.97931785872932,0.2699345110434166,268.4301459339622,0.0997741407039853,96.31771533189236,109.73974,76.80785810861465,114627.45466700091,80228.8147704256,265.48905,165.73462540000637,276597.5286203727,172400.1268070594,293.86466,141.01934063467175,301643.87482242833,143278.24512712524,3512.11177,1588.5113050908378,3618978.8167460514,1609887.4077185558,1287.14934,561.8912417218733,1325538.6375031336,568069.2929305581,2136.78472,892.8020689923083,2183814.573410211,893690.9229550897,0.38013,100000,0,498817,5210.338848500041,0,0.0,0,0.0,22352,232.71287707863289,0,0.0,27223,279.1113060917523,1917439,0,68835,0,0,4320,0,0,55,0.564051140636751,0,0.0,1,0.0104453914932731,0,0.0,0.06849,0.180175203219951,0.3182946415535114,0.0218,0.3290645879732739,0.670935412026726,25.02441243592114,4.471275733370456,0.3310163441668232,0.2134134886342288,0.2246853278226564,0.2308848393762915,11.066035935081551,5.705215732837199,23.128795334084227,12818.84536920701,60.00441012215729,13.43476659126614,19.825412271552025,13.398001785416383,13.346229473922724,0.5459327446928424,0.7755281690140845,0.6963677639046538,0.5468227424749164,0.1171684296175752,0.7159763313609467,0.9375,0.8662131519274376,0.676056338028169,0.139917695473251,0.4880382775119617,0.6928191489361702,0.639666919000757,0.506578947368421,0.1115618661257606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0046646520777982,0.0069130037559638,0.0090736356523771,0.0115456996083617,0.0135250743471707,0.0157648930312238,0.0178163031936616,0.019856647682539,0.0220570164659621,0.0241303634424481,0.0261827968034184,0.0283121746466122,0.0304919519383359,0.0324075507529079,0.0346652881881623,0.036997918672921,0.0388649686154484,0.0409442434825994,0.0427269413051403,0.0577667825342644,0.071562339795566,0.0848557944415312,0.0973262369572534,0.1083145214034051,0.1231582844148289,0.136308178702908,0.1488555307143617,0.1614471476958254,0.1726589390836273,0.1868537825262795,0.200227285026246,0.2120592299239498,0.2224774907829816,0.2339317754026,0.2455314103345486,0.2556092875730129,0.2649044628991965,0.274841989401659,0.2835328483876511,0.2916690789092804,0.2997683018161393,0.3069955241906837,0.3135024893527682,0.3197788175244577,0.3263714980076732,0.3319217179943368,0.3376462947161978,0.3425465194630177,0.3477526012781915,0.3483273330366894,0.3490320358250086,0.3480528266783182,0.3476576055523424,0.3472172672136996,0.3461791982831302,0.3454954669371711,0.3458177278401997,0.3465598524186936,0.3470898904471327,0.3477788598396883,0.3484974134186313,0.3501340145740849,0.3514649966450458,0.3525506890829064,0.352658894713507,0.3540811673506612,0.3560829927695693,0.3584078555146414,0.3612090480529256,0.3626742971340328,0.3630303671569146,0.3667693855732344,0.364516372986463,0.3709511808083636,0.3747036510194405,0.3800518529815464,0.3865461847389558,0.3900109170305676,0.3934807916181606,0.0,2.964001758181607,58.82538008202027,196.657679999328,304.0906553415829,fqhc7_80Compliance_baseline_low_initial_treat_cost,57 -100000,95761,42443,398.7427031881455,6802,69.67345787951254,5302,54.79266089535406,2148,22.00269420745397,77.32840490063373,79.68797005110507,63.31625382636724,65.06435959812065,77.06248667370075,79.42377424208173,63.21856318532179,64.97006952913802,0.2659182269329818,264.1958090233345,0.0976906410454461,94.29006898263026,109.04344,76.40115038875089,113870.40653293094,79783.1584765728,266.62564,166.89448306364824,277874.12412151083,173728.22241167934,293.53297,141.32053703316126,302849.69872912776,144707.47226639814,3518.73017,1591.5904469004672,3636660.16436754,1624212.7973814665,1280.45901,565.4619275893757,1321224.1100239137,574576.6414191324,2113.26074,880.3466925262611,2166861.9375319807,886316.3703004273,0.37999,100000,0,495652,5175.927569678679,0,0.0,0,0.0,22431,233.65461931266384,0,0.0,27278,281.21051367466924,1918400,0,68885,0,0,4318,0,0,40,0.417706582011466,0,0.0,0,0.0,0,0.0,0.06802,0.1790047106502802,0.3157894736842105,0.02148,0.3284498395423468,0.6715501604576531,24.89326960060506,4.596993699578344,0.3211995473406261,0.2086005281026028,0.2365145228215767,0.2336854017351942,11.3179116923292,5.693081271114887,22.88555641374577,12795.213713465391,59.70685278968261,13.04265493829502,19.23641033985505,13.78813271413018,13.63965479740238,0.5522444360618635,0.7658227848101266,0.7058132706987669,0.5797448165869219,0.1226795803066989,0.7108433734939759,0.9058171745152356,0.8691588785046729,0.7330960854092526,0.1511627906976744,0.4992450931051836,0.697986577181208,0.6509803921568628,0.5354573484069887,0.1151885830784913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023205617988913,0.0048378263250775,0.0070970231084758,0.0095530396959287,0.0117291611564362,0.0139036016949152,0.0161119269048784,0.0183464695552742,0.0205688114661923,0.0226421274592093,0.024611757470145,0.0266648869540218,0.0287436111025411,0.0309928208720014,0.0332494014694955,0.0354027123129082,0.0375339005858849,0.0395544677673608,0.0415562552607787,0.0435869395406967,0.0577846436474468,0.072450580483213,0.0854593307957679,0.0977158294177625,0.1102446837657274,0.1254148785489292,0.1384334768499862,0.1499286915430298,0.1622695520283694,0.1732901537735646,0.1866033346258239,0.1998961353702341,0.2115627311893468,0.2226207922308012,0.2334617501375894,0.2446140383912451,0.2554098543608057,0.2651779483600837,0.2740340399441373,0.2831473035227246,0.2911256162766474,0.2982989775146821,0.3054765965510707,0.3116831683168317,0.3182796483420275,0.3234949492457787,0.3294861501405058,0.3350416236406981,0.3396365996106424,0.3436628652227346,0.344476822621553,0.3445833275911966,0.3450997557290711,0.3456597222222222,0.3449970220369267,0.3439126629508499,0.3431923540991935,0.3448656485279823,0.3468426013195099,0.3481299618286411,0.349073969720876,0.35014654626109,0.3512879089556305,0.3501233460417134,0.350213515404473,0.3517836142689141,0.3518830964568618,0.3536247401902123,0.3560292155347987,0.3597502783521552,0.3627039839547816,0.3631255301102629,0.3671100514493663,0.3708428246013667,0.3728222996515679,0.3671754821914566,0.3654287024300779,0.3646194654152214,0.3646470261256253,0.3660258925068654,0.0,2.196667433675884,58.43476246671239,198.227016352236,303.04014156724213,fqhc7_80Compliance_baseline_low_initial_treat_cost,58 -100000,95732,42147,396.5758576024736,6846,70.25863869970334,5354,55.36288806250784,2181,22.4585300630928,77.31464774318667,79.68219567249734,63.30648041847581,65.05663816864076,77.04316223865173,79.40888054055968,63.20726233377061,64.9591446231501,0.2714855045349367,273.31513193766455,0.0992180847051997,97.49354549066425,109.0892,76.4292616876571,113952.70129110431,79836.69168894112,266.99177,166.64387256353314,278317.36514436133,173499.8432368266,295.93796,141.58506215241417,305768.56223624287,145293.34812480726,3518.75449,1591.6004770164573,3640786.9886767226,1628004.5589513138,1280.36304,563.8277374467489,1323045.449797351,574779.8361076685,2137.39952,888.2499798074031,2201894.455354532,900963.3121971608,0.37771,100000,0,495860,5179.668240504742,0,0.0,0,0.0,22468,234.0805582250449,0,0.0,27393,282.81034554798816,1917396,0,68798,0,0,4381,0,0,55,0.5745205364977228,0,0.0,0,0.0,0,0.0,0.06846,0.1812501654708639,0.3185801928133216,0.02181,0.3193615544760583,0.6806384455239417,25.401978994103278,4.503143661941807,0.3389988793425476,0.2104968248038849,0.2248785954426597,0.2256257004109077,11.273097593865607,5.781433087417338,23.092703736400374,12757.064399801837,60.28523057665151,13.184637239596317,20.49079865448674,13.369018322305102,13.240776360263338,0.5509899140829286,0.7373558118899733,0.715702479338843,0.5656146179401993,0.1150662251655629,0.7185238784370478,0.8779840848806366,0.8760683760683761,0.7700729927007299,0.155893536121673,0.49269889224572,0.6666666666666666,0.6599851521900519,0.5053763440860215,0.1037037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894190345945,0.0047145420810901,0.0070139466899449,0.0095010669647393,0.0117808637265374,0.0136313623212029,0.015619102029157,0.0178064568826448,0.0198720176640157,0.0218971377093485,0.0238175796909763,0.0261315097749301,0.0282766565862288,0.0301693937270741,0.0322563996696944,0.034187238969524,0.0363884890596361,0.0384463722397476,0.0406671449813353,0.0428912248533655,0.0578316523627555,0.0720094617083407,0.0856771188485465,0.0978841542926849,0.1097332067910998,0.125,0.1380657213212193,0.1504519948465134,0.1623695912433726,0.1738117977829525,0.1872533160789388,0.2009253640776699,0.2130459889086214,0.2240925828511309,0.2345197142101085,0.2452145141232901,0.2548098434004474,0.2640543223244901,0.2725514510972821,0.281340823195598,0.2896626111968082,0.2973673105776444,0.3045937485177631,0.3104094128947052,0.3171983508264111,0.3228863333497853,0.3280539870541247,0.3338170154269131,0.3392105842298082,0.3442158026645561,0.3442861375205365,0.3437826828865525,0.3440536202089611,0.3439446266780342,0.3445198143520171,0.3438070264219227,0.3429029136993037,0.3442056413125761,0.3460932415305039,0.3472100470508256,0.3476088508208422,0.3475617002733431,0.3487996645350665,0.3495467263570229,0.3491952582883577,0.3498811793278145,0.350346565847511,0.3515731010760832,0.3542150855694063,0.3543652534598971,0.3569857993586807,0.3593290956679664,0.3607288481141692,0.3629766867376872,0.366081648225868,0.3727447678614385,0.3762437810945274,0.3809126901437799,0.3832772166105499,0.391287284144427,0.0,2.1463213951630147,61.04861586973876,192.72392499715951,307.6431867826386,fqhc7_80Compliance_baseline_low_initial_treat_cost,59 -100000,95809,42542,400.3799225542486,6964,71.51728960744815,5438,56.12207621413437,2200,22.54485486749679,77.3504688262772,79.68254329871677,63.33176974345843,65.05992440221337,77.07723232956552,79.40991962091606,63.23070652143424,64.96200888921751,0.2732364967116751,272.6236778007092,0.1010632220241944,97.9155129958542,110.08228,77.09478982181358,114897.64009644189,80467.16886911832,266.94497,165.98086508931772,278026.6572033943,172646.0510905215,294.96675,140.98403789079822,303404.6175202747,143805.908840866,3570.7147,1603.8505152774617,3687197.601477941,1634296.324225762,1332.68766,580.405114144606,1373655.961339749,588466.1087628582,2159.65206,900.5028659622992,2214693.0664133853,906770.7017813732,0.38173,100000,0,500374,5222.620004383722,0,0.0,0,0.0,22489,234.08030560803263,0,0.0,27328,280.8295671596614,1917073,0,68856,0,0,4289,0,0,51,0.5323090732603409,0,0.0,0,0.0,0,0.0,0.06964,0.1824326094359888,0.3159103963239517,0.022,0.3210231158528245,0.6789768841471755,25.090207475854186,4.493894501164494,0.3265906583302684,0.2184626700993012,0.2245310776020596,0.2304155939683707,10.86506776785079,5.471101369304136,23.32864542343337,12879.970215004963,61.33688688399027,14.073570500646634,19.850726908961107,13.687118097532707,13.725471376849828,0.5492828245678558,0.781986531986532,0.6835585585585585,0.5634725634725635,0.1245011971268954,0.7215951843491347,0.9185750636132316,0.8610421836228288,0.7570422535211268,0.144578313253012,0.4935507422730591,0.7144654088050314,0.6314639475600874,0.5048025613660619,0.1195219123505976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0045831094166675,0.0066477215061402,0.0091340438718592,0.0113818988140041,0.0136175673748752,0.015634082912651,0.0178600604525774,0.0199685084454623,0.0219069262739798,0.0237379900126124,0.025907480618165,0.0279923077714132,0.0301962965251601,0.0321782178217821,0.034552593511056,0.036645583379054,0.0388441152980469,0.04087337878284,0.0428504502628702,0.0575765479109071,0.0715794316304552,0.0846974492255454,0.097288039423774,0.1100317145897649,0.1260991798427327,0.1390956713537358,0.1513681433252479,0.1630827051613316,0.1741311127543967,0.1873412544663997,0.2001059562552032,0.212409282517057,0.2231647991254441,0.2342197625675274,0.2453929944704852,0.2557711198428291,0.2658195079125678,0.2757884455952665,0.2842821626204415,0.2923125007234884,0.3002702607841072,0.3073035037878788,0.3144110561075885,0.321021725651344,0.3272004837177161,0.3326522938079719,0.3371188946670745,0.3435024439575257,0.3484966629220908,0.3492584045237998,0.3491936485162857,0.3497232263895165,0.3488607888295021,0.3489912901064542,0.3489025326170376,0.3487884658134587,0.3494729907773386,0.3505036316294367,0.3504282693617174,0.3517788046132462,0.3538245141351506,0.3555760988318346,0.3564247565190072,0.3568529880670564,0.3584327889447236,0.3584549895723223,0.3632322340626773,0.3632375136007862,0.3691101560012735,0.3715184391667046,0.3711931969173532,0.3731409125283589,0.3743816119948245,0.3810375670840787,0.3804514832762085,0.3816653934300993,0.3797417271993543,0.3745573413238899,0.3735124760076775,0.0,2.534715029525689,58.27279061907813,209.68734953414327,309.2986988195831,fqhc7_80Compliance_baseline_low_initial_treat_cost,60 -100000,95725,42723,401.5878819535127,6802,69.95037868895274,5354,55.4400626795508,2122,21.89605641159572,77.30949638025908,79.66936004126633,63.31695901961641,65.05942942448793,77.05385229170054,79.41124495729953,63.224098528829565,64.96744563650643,0.2556440885585402,258.11508396679983,0.0928604907868475,91.98378798150486,108.59112,76.19533364748325,113440.71036824236,79598.15476362836,269.32294,168.08619579075688,280869.1250979368,175111.2309122558,301.1117,144.14476666352124,311174.5729955602,147984.3812523107,3533.52618,1579.1373726412928,3662067.119352312,1620396.9105680785,1304.75597,564.9666359983731,1350628.289370593,577800.570382213,2096.04192,862.5970253999603,2164479.101593105,880133.5424934765,0.38232,100000,0,493596,5156.395925829199,0,0.0,0,0.0,22569,235.24680073126143,0,0.0,27845,287.4693131365892,1918880,0,68863,0,0,4293,0,0,60,0.6267955079655263,0,0.0,0,0.0,0,0.0,0.06802,0.1779137894957104,0.311967068509262,0.02122,0.3208072372999304,0.6791927627000696,25.4372588640883,4.524835337404955,0.3311542771759432,0.213111692192753,0.2213298468434815,0.2344041837878221,10.92385497171009,5.388133259074501,22.46248258633528,12923.255433808476,60.404491405344544,13.406916770510623,20.108960809584545,13.217606423753496,13.671007401495888,0.5502428091146806,0.7852760736196319,0.6813310772701635,0.6033755274261603,0.1011952191235059,0.7383320581484315,0.9496021220159152,0.8444444444444444,0.7665369649805448,0.1345291479820627,0.4894983938720039,0.7041884816753927,0.6258503401360545,0.5581896551724138,0.0939922480620155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090712064897,0.0048049631011272,0.0072132943754565,0.0092427074022913,0.0116708178722106,0.0138935540016489,0.01618508892626,0.0185470617656966,0.0207881934507992,0.022842873371473,0.0250617575005893,0.0273220116228925,0.029275666337611,0.0313484789190747,0.0335385662572321,0.0355626272123322,0.0377653353756352,0.03979299759396,0.0418113034983059,0.0438845024061998,0.0586325000522105,0.0727398321227471,0.0864316653906258,0.0992818312776673,0.1116652783196431,0.1279808800668351,0.1415718893226956,0.1539468642227615,0.165472159618897,0.1767897157683689,0.1899991382281971,0.2028925888236949,0.2151119139073568,0.2268330050339242,0.2364054741431512,0.2467411545623836,0.2571096664656077,0.2665615319628274,0.2759474688721258,0.2845778215915083,0.2924606941903813,0.2997133329433101,0.3075119594562592,0.3143384999280196,0.3210704779961352,0.3268576080521018,0.3320942690146309,0.3378101409239621,0.3429527069072806,0.3475955626661025,0.3478595231991797,0.3487573915560518,0.3488125829497642,0.3489260695883749,0.349008979494587,0.3486961329360813,0.3476056517109299,0.3482142857142857,0.3490410676913576,0.350162369700558,0.3499887039686723,0.3511347136861785,0.3526436684719617,0.3537918315940986,0.3542963734586594,0.3555701179554391,0.3559044250841024,0.3562913069601239,0.3577224299724829,0.3612448760297688,0.3633953467111578,0.3634810464495462,0.3655430236978836,0.3667459160978603,0.370892907868573,0.3721678988790842,0.371996303142329,0.3657683604196667,0.36341059602649,0.3686033089649865,0.0,1.9009949742770704,57.9355093607094,205.93789744701905,305.7901645333056,fqhc7_80Compliance_baseline_low_initial_treat_cost,61 -100000,95734,42606,400.5055675099756,6975,71.67777383165856,5433,56.16604341195396,2222,22.865439655712706,77.40440741590693,79.76030457478508,63.3594678928421,65.09884283982643,77.13293987999107,79.48816827907338,63.2600895748388,65.00161052923134,0.2714675359158605,272.1362957117037,0.0993783180033034,97.2323105950892,110.39336,77.33610871048519,115312.5953161886,80782.28080983265,270.27183,168.02982758673278,281726.711513151,174928.70619292284,298.82932,142.56697432202327,308137.28664842166,145885.32463357886,3607.75124,1617.6271129976851,3732713.027764431,1653907.0372048432,1293.05789,565.4112895902009,1336729.740739967,576664.9203179659,2189.38106,907.717097213672,2254896.400442894,920630.9713628112,0.38161,100000,0,501788,5241.4816052813,0,0.0,0,0.0,22714,236.64528798545973,0,0.0,27689,285.2382643574905,1916422,0,68681,0,0,4452,0,0,56,0.5849541437733721,0,0.0,0,0.0,0,0.0,0.06975,0.1827782290820471,0.3185663082437276,0.02222,0.327993483573174,0.672006516426826,25.03672478106891,4.495533946452055,0.3219215902816124,0.2125897294312534,0.2300754647524388,0.2354132155346953,11.108103079307808,5.6075116984996445,23.519327171148927,12853.39814302077,61.09305188453936,13.621382052551146,19.582277014833195,13.772511910983086,14.116880906171945,0.5481317872262101,0.7844155844155845,0.6792452830188679,0.5976,0.1071149335418295,0.7138576779026217,0.9187817258883249,0.8498789346246973,0.7435897435897436,0.1450980392156863,0.4941434846266471,0.7148488830486203,0.6264970059880239,0.5568065506653019,0.09765625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021667156033897,0.0043577400557385,0.0065433075658895,0.0088457827654496,0.011052026882759,0.0131718241042345,0.0152254777070063,0.0177545585339224,0.0199241859181984,0.0220723670746183,0.0241570154760684,0.0262028902208719,0.0287550118227613,0.0310028015820698,0.0333687588348793,0.0354362860125908,0.0376852417592659,0.0399489615967136,0.0418203926377817,0.043725067441594,0.058674907602681,0.0718389301074706,0.0851409750776202,0.0982989549822326,0.1105325842933482,0.1262146187762352,0.1399868457344111,0.1524761539771759,0.1638304009229881,0.1750034848436109,0.1888393530184575,0.2017528673447305,0.2141334377515282,0.2252329090670515,0.2360635898564277,0.2464673311184939,0.2565779196143631,0.2665167275794208,0.2746928635440654,0.2838023492775857,0.2919821079762826,0.2991078726733459,0.3062651313847062,0.3122997848434138,0.3180771654306626,0.3239608050456741,0.3301763022753114,0.3362160926546784,0.3421304314110683,0.3466222532355535,0.3461383478844862,0.3460835885673474,0.3461165253343458,0.3465100845428052,0.3465610819467924,0.3454567701084379,0.3450284068429631,0.3459033871893709,0.3468280111279889,0.3484643099204509,0.3496616238306806,0.351192362541594,0.3519540181661807,0.3530675739194664,0.3554383683690915,0.3562821819702553,0.3557289738258665,0.3588444472417157,0.3606591939281071,0.3642468311677991,0.3669490753393459,0.3698010849909584,0.372511967750063,0.3734307235790915,0.3711921775103422,0.3695368944687907,0.3695182211241507,0.3747445852063751,0.3741248949873985,0.3724631914046956,0.0,2.2329218234063988,58.802619180007056,204.57730599991157,312.09541429690427,fqhc7_80Compliance_baseline_low_initial_treat_cost,62 -100000,95750,42487,399.4360313315927,6882,70.68407310704961,5406,55.89556135770235,2185,22.44386422976501,77.33232137485312,79.69978529756439,63.31916690730778,65.07202957229637,77.06417573581034,79.43276874142599,63.22042244272453,64.9767007667899,0.2681456390427854,267.01655613840103,0.0987444645832482,95.32880550646894,109.44758,76.67681413556097,114305.56657963444,80080.22364027255,268.00965,167.04986459055414,279326.3916449086,173885.36249666227,294.56745,141.43285887881552,304837.00261096604,145419.93591352575,3569.96669,1610.087983313646,3691700.678851175,1644829.9669072025,1299.73273,565.7009742720918,1342823.6762402088,576234.9213259635,2151.75122,892.2572693310286,2211114.1096605742,899386.5841443351,0.38223,100000,0,497489,5195.707571801567,0,0.0,0,0.0,22526,234.66318537859007,0,0.0,27343,282.7049608355092,1918169,0,68853,0,0,4355,0,0,51,0.5326370757180157,0,0.0,0,0.0,0,0.0,0.06882,0.1800486618004866,0.3174949142691078,0.02185,0.3186692328842452,0.6813307671157547,25.212143776408958,4.511574052655005,0.3222345541990381,0.2101368849426563,0.235479097299297,0.2321494635590085,11.147319398939732,5.614621106473376,23.167692670147076,12828.287750401236,61.06434017130437,13.486543747008795,19.57122821366642,14.294150791106944,13.712417419522202,0.5477247502774695,0.7878521126760564,0.6808266360505166,0.5781618224666143,0.1147410358565737,0.7229977957384276,0.9093333333333332,0.8901601830663616,0.7106109324758842,0.1386554621848739,0.4887515451174289,0.7279894875164258,0.610727969348659,0.5353430353430353,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024017998297458,0.004767266125024,0.0072902282511575,0.009533295389869,0.0117603971677382,0.0138344148898238,0.01611324141307,0.0182748164861305,0.0200909973927713,0.0223894348894348,0.0242857289306693,0.0265897377984929,0.0287509383129903,0.031052382227532,0.0330774627543229,0.0351620638333057,0.037380661461677,0.0393206552750889,0.0412799700689038,0.0432146986220041,0.0574811041048983,0.0713291688901445,0.0849258459021207,0.0973670928667563,0.1091921300689568,0.1248175491295242,0.137259271048862,0.1506333155934007,0.1630159662519357,0.1738365858889127,0.1870381939208547,0.2006493155132298,0.2128261484560311,0.2236394464803369,0.2344104245999427,0.245354065607903,0.2552844802571371,0.2651924375422012,0.2739220737949585,0.2824924116602714,0.2899022047335223,0.2983946456987738,0.3053369157385159,0.3122714903921075,0.3183093800493239,0.3253666954270923,0.3319357180405016,0.3364113913585428,0.3412855681185323,0.3455869740192909,0.3456261528725882,0.3462147390448394,0.3465766552977986,0.3462950649050276,0.3471697551979535,0.346378477810991,0.3465902778879878,0.3479940173890176,0.3491268837781499,0.3500724287783679,0.3507191877409044,0.3507612298775283,0.3522961653407416,0.3537963732782059,0.355398675112422,0.3551553542915477,0.3575859801595243,0.3600746859077819,0.3634119679819457,0.3625480461242793,0.3639111518204717,0.3660944206008584,0.3666666666666666,0.370125374971156,0.3717223165440483,0.3694569599241166,0.3685492464606485,0.3662767244856797,0.3779851770518803,0.3676470588235294,0.0,2.1228642158935767,60.079305736946615,206.03999286049225,304.45150171523755,fqhc7_80Compliance_baseline_low_initial_treat_cost,63 -100000,95723,42685,401.7216342989668,6964,71.35171275451042,5383,55.61881679429187,2193,22.50242888334047,77.41699606751023,79.77080883218858,63.36600846061516,65.10083647110241,77.14831920250718,79.50265709305643,63.26707176261254,65.00491325940496,0.2686768650030444,268.1517391321506,0.0989366980026247,95.92321169745333,110.01276,77.08451296899293,114928.2408616529,80528.72660592849,269.76861,168.53488080850653,281209.99132914766,175453.0372099773,297.50851,142.45389774749378,307120.1487625753,146062.1311018553,3527.76871,1596.211973210527,3645625.178901623,1627764.542701885,1318.55377,579.7075826590786,1361583.0991506744,589724.5203964341,2160.3195,897.1027319822157,2218111.801761332,903827.5825052306,0.38181,100000,0,500058,5224.01094825695,0,0.0,0,0.0,22744,236.95454592940047,0,0.0,27576,284.38306363152014,1915128,0,68717,0,0,4249,0,0,54,0.5641277435934937,0,0.0,0,0.0,0,0.0,0.06964,0.1823943846415756,0.3149052268811028,0.02193,0.3308763308763309,0.6691236691236692,24.920768213401804,4.55859289651456,0.330856399777076,0.2140070592606353,0.2219951699795653,0.2331413709827234,11.28175011106017,5.601672404154642,23.1014722887146,12832.548985992757,60.53446211311209,13.397127895921454,20.05994239394568,13.336166913973749,13.741224909271212,0.5517369496563255,0.7673611111111112,0.6895002807411567,0.5899581589958159,0.1219123505976095,0.7020958083832335,0.9252873563218392,0.8511627906976744,0.7266187050359713,0.1714285714285714,0.5021003212255992,0.6990049751243781,0.6380458919319023,0.5485278080697928,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022976173606753,0.004548724027191,0.0067449691658552,0.0089663786187918,0.0112249877989263,0.0134876524359209,0.0157989154808986,0.0179832618901816,0.0201524720501972,0.0223536272212957,0.024326761487068,0.0264270613107822,0.0284956516375747,0.0305651672433679,0.0326194602624412,0.0346488100773992,0.0370849682676081,0.0392146694600593,0.0413327928995312,0.0433065944369205,0.0579728304566195,0.071800774301559,0.0854151147296744,0.0981099529854749,0.1104243357557986,0.1257602200010577,0.1384442393575831,0.1511703407240252,0.1627546714244506,0.173691096669026,0.1877476740179186,0.2004046611774125,0.2127981043066153,0.2236374957669241,0.2338164675889806,0.2450537777187624,0.2560783920270225,0.2647842361431157,0.2742807896855546,0.2832274678111588,0.290814910739062,0.2985871711871735,0.3056360175453116,0.3126070141408336,0.3188829690401349,0.3245446596800611,0.3305831614475905,0.3357357128330283,0.341356787169372,0.3466311472166906,0.3462304524533685,0.3468214452727423,0.3474212135300001,0.3472021295063943,0.3474672060442011,0.3470700880888548,0.3467360528938169,0.3473651438683883,0.349051296476244,0.3505154639175257,0.3516877873724346,0.351474905909476,0.3527036920824181,0.3544230426252898,0.3549161246970169,0.3553749153248918,0.3557536236011048,0.3586918996955717,0.3594122597839809,0.3602014114661803,0.3615929525020434,0.3633565097393981,0.363739234299365,0.3691838291380625,0.3725950258094791,0.3720546654099905,0.3753232922561996,0.3771806697413274,0.3730936819172113,0.3703843255463451,0.0,2.351719785342388,58.57144848594205,205.57199027040036,303.16844813791965,fqhc7_80Compliance_baseline_low_initial_treat_cost,64 -100000,95685,42503,400.3239797251398,6905,70.72163871035167,5454,56.2784135444427,2229,22.9085018550452,77.3508434030137,79.74139230073176,63.31502979323547,65.0826511323426,77.0823695203579,79.47195547483639,63.21649737486196,64.98614090940333,0.2684738826557975,269.4368258953688,0.0985324183735087,96.5102229392727,109.33164,76.59724209705367,114262.0473428437,80051.462713125,266.4444,165.87003252502245,277777.1751058159,172667.31726500753,298.16418,143.11947828793393,306461.942833255,145681.7769546889,3608.9292,1633.9946534117084,3729081.339812928,1665085.366997658,1341.0596,586.4661971182021,1381829.471704029,593208.7021610959,2195.07216,906.9993461693676,2258045.6915922035,918800.7133880698,0.3818,100000,0,496962,5193.729424674714,0,0.0,0,0.0,22440,233.78795004441656,0,0.0,27699,284.3078852484716,1918517,0,68832,0,0,4230,0,0,40,0.418038355019073,0,0.0,0,0.0,0,0.0,0.06905,0.180853850183342,0.3228095582910934,0.02229,0.3140461792193513,0.6859538207806487,24.944396038036544,4.515990684624656,0.3263659699303263,0.2125045837917125,0.2293729372937293,0.2317565089842317,11.108846219731294,5.531307703473441,23.526185749550493,12841.205843649012,61.54325567946204,13.7080100005502,20.10682970432207,13.835263430923332,13.89315254366644,0.552988632196553,0.7808455565142364,0.6825842696629213,0.5899280575539568,0.125,0.708029197080292,0.926208651399491,0.8485523385300668,0.7137546468401487,0.1274131274131274,0.5009794319294809,0.706266318537859,0.6265965439519159,0.5560081466395111,0.1243781094527363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.0045532445670361,0.0067608035813986,0.0091165948451093,0.011332885714867,0.0133452863633585,0.0154750124963021,0.0176379271605694,0.0197788936500956,0.0219475225824952,0.0241513690903497,0.0261395616359565,0.0281520643475756,0.0304450855141149,0.0327767342979215,0.0347551016188723,0.0366329966329966,0.0391002885553548,0.0411292335857535,0.0430295828382012,0.0574472529768122,0.0710957541489974,0.0846139312255951,0.0979633058407675,0.1099108602774407,0.1252975592208974,0.1392589133134493,0.151378003066962,0.1632122967729522,0.1738654533357657,0.1879702490029104,0.200803343293924,0.212742804287502,0.2237154582763338,0.2343271750379847,0.245650414167064,0.256395368312918,0.2658250655975855,0.2752360285847374,0.2827986332469557,0.290624819039898,0.2980313162425193,0.3054545023640522,0.3119367342285584,0.3185367158806217,0.3246969454070119,0.330296013517742,0.3357221960564671,0.3413866770246649,0.3460558116192765,0.3464395992610871,0.3468243913187176,0.3470848479724969,0.346925500852823,0.34770021082638,0.3470621546749927,0.3468289517418211,0.3472817079374456,0.3489858341450078,0.3503141510781093,0.3517053973013493,0.3535451260686714,0.355204282189604,0.3559102578412769,0.3569763809798409,0.3589810377161909,0.3594344443813526,0.3621825023518344,0.3629772329246935,0.3664655070405869,0.3683972298918209,0.3706041478809738,0.3731305768505718,0.3792840241202961,0.3816930618401206,0.3780749940291378,0.3747313478661345,0.3771118262268704,0.3778385772913816,0.3824329576369996,0.0,2.802738264982385,59.63064684331038,211.60004396086543,302.2098264564239,fqhc7_80Compliance_baseline_low_initial_treat_cost,65 -100000,95713,42167,396.8426441549215,6796,69.68750326496924,5287,54.53804603345419,2162,22.086863853395048,77.26691653433518,79.62886698551512,63.2951211478972,65.03997524536065,77.00437577685514,79.37003863861754,63.197303209521614,64.94685722722576,0.2625407574800391,258.8283468975732,0.0978179383755843,93.11801813488783,110.43098,77.40213671351246,115377.20058926164,80868.99032891296,268.73428,168.2968109919514,280070.5651269943,175134.48642499073,297.1308,142.39910480864663,306871.36543625215,145845.35885077727,3475.97928,1587.7611072661005,3586276.4723705244,1614007.2726491045,1291.32503,573.4206768867821,1327911.6003050788,578055.5978394062,2119.4345,890.6166738312965,2167994.23275835,890598.101935027,0.37834,100000,0,501959,5244.418208602802,0,0.0,0,0.0,22707,236.5195950393364,0,0.0,27478,283.482912457033,1908184,0,68505,0,0,4357,0,0,50,0.5223950769487948,0,0.0,0,0.0,0,0.0,0.06796,0.1796267907173442,0.3181283107710418,0.02162,0.3304469273743017,0.6695530726256983,25.00036636783392,4.548020300316548,0.326082844713448,0.2099489313410251,0.2369964062795536,0.2269718176659731,11.504375075729037,6.052510007842621,23.10636511005457,12761.116100473471,60.24938994566454,13.207932727271013,19.663238069427347,13.917867157621178,13.460351991345,0.5627009646302251,0.8018018018018018,0.703016241299304,0.5857940941739824,0.1158333333333333,0.6981684981684981,0.90625,0.8223234624145785,0.7437722419928826,0.1340996168582375,0.5155532891381948,0.7465564738292011,0.6622568093385214,0.5401234567901234,0.1107561235356762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0047856107230125,0.0069509274668182,0.00914253207505,0.0115839147326241,0.0137761803427244,0.0159641164177582,0.0180888312695868,0.0200464103533933,0.022324353095316,0.0243252385882545,0.0264054864276621,0.0284333384749858,0.0304157053394858,0.0323742120521206,0.0344314317314947,0.036565286277921,0.0385940158525957,0.040715562762463,0.0428336250729349,0.057985694147131,0.0722353064321976,0.0846783502990869,0.0970464135021097,0.1098461668319652,0.1247473197371066,0.1385343893996984,0.1513159997017564,0.1629309607323124,0.1736035813588981,0.1879784366576819,0.200788894788743,0.2125446545264442,0.2240829782806322,0.2344195990698597,0.2457507632528448,0.2558045899879211,0.2654082380120584,0.2742281863942641,0.281679966978536,0.2888199476767069,0.2970498712245376,0.3040661384121569,0.3100813320217845,0.3164512324136337,0.3221897251736946,0.3277738764044944,0.3329763771497048,0.3380373115920391,0.3438431081743183,0.3444587193184123,0.3445634893205225,0.344305445488509,0.344416571204849,0.3438292413710808,0.343638013503745,0.3429807952393833,0.3436767570065692,0.3448429877001305,0.3453566621803499,0.3463196942022709,0.347425959053866,0.3482574462246427,0.3496174617461746,0.3498352234176601,0.3510618748851495,0.3530256881788403,0.3544512931308382,0.3549882336162019,0.3562186640789261,0.3591685912240184,0.3641652750094273,0.3647822765469824,0.3665412090022275,0.3668812724862715,0.3687031082529475,0.3668866042657664,0.3686449260684626,0.3717205191935929,0.3786821705426356,0.0,2.694217829957032,59.74963491487001,202.7365343007086,296.190805687641,fqhc7_80Compliance_baseline_low_initial_treat_cost,66 -100000,95703,42360,398.7544800058514,6899,70.83372517057981,5417,56.02750175020637,2173,22.319049559574932,77.288290147924,79.65647544161168,63.294707477804174,65.04328211973004,77.02070086033225,79.39092826716178,63.19538725600299,64.9481511494941,0.2675892875917469,265.5471744498925,0.0993202218011859,95.1309702359424,108.63336,76.13987522758812,113510.69454458063,79558.29434764652,268.25305,167.31432879601647,279733.6551623251,174263.9241452456,298.1452,142.69162646933734,308363.42643386306,146682.5133447016,3603.44856,1616.9687805120072,3728445.82719455,1652881.397211222,1319.64915,574.3500533713509,1365364.0220264776,586669.4560677898,2144.27832,890.6992209922857,2203482.5867527667,897469.2190026338,0.37894,100000,0,493788,5159.577024753665,0,0.0,0,0.0,22549,235.0083069496254,0,0.0,27607,285.3202093978245,1916661,0,68803,0,0,4329,0,0,40,0.4075107363405535,0,0.0,0,0.0,0,0.0,0.06899,0.182060484509421,0.3149731845194956,0.02173,0.3195577055977885,0.6804422944022115,25.207488668991815,4.510218344756019,0.3285951633745615,0.2065719032674912,0.2257707218017352,0.2390622115562119,11.15172569793316,5.665909693407514,23.020606295385758,12820.61694664847,61.03454577088169,13.201958304519172,20.117574728919905,13.541844145577569,14.17316859186504,0.5432896437142329,0.7587131367292225,0.6943820224719102,0.5936222403924775,0.1019305019305019,0.7116382505559674,0.8943089430894309,0.8434782608695652,0.75,0.1532258064516129,0.4874631268436578,0.692,0.6424242424242425,0.5488958990536278,0.0897803247373447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021774577421282,0.0044099309617704,0.0067378333400982,0.0091936040959791,0.0112989179074119,0.0134407233552933,0.0157215391203278,0.0180166385954167,0.0202804922925951,0.0224532820271404,0.0245969684236417,0.0268525266626292,0.0290047295907875,0.0309687120229046,0.0328220574128131,0.0348804762347688,0.0370067407353717,0.0389289606143946,0.0408592084048473,0.0429018136335209,0.0572297022049991,0.0715796527821406,0.084912096562582,0.0981487912943727,0.1109152327668109,0.126144821963641,0.1389962619998301,0.1511816225200843,0.1635762864108815,0.1740941990077532,0.1886155538539521,0.2005850804485617,0.2123436887281599,0.2236213919670623,0.2337596527754827,0.2446370506830616,0.2555439997316067,0.2649486861396188,0.274156843111374,0.2823010476015438,0.2901579051177037,0.2976304985337243,0.3050135308360632,0.3123340023314785,0.3180671808180123,0.3240573618494251,0.3306656280624168,0.3358010824058001,0.3404769640652414,0.3456914358349663,0.3465250313820238,0.3468643857178361,0.3472737047621742,0.3477958034651885,0.3482433360198203,0.3469660641829583,0.3459907570632236,0.3467966344491462,0.3473920724491021,0.3487859510796524,0.3497120704580526,0.3498641708472963,0.350716585643033,0.3514403476546749,0.3513429031715117,0.3532522337127823,0.3529579553882138,0.3551357658708884,0.3579842008745944,0.3588228247414447,0.3621338720044073,0.3662152759192849,0.3701619023526435,0.3717369670060476,0.3722128536631066,0.3734498641785756,0.374791192103265,0.3772141706924315,0.3800597663678348,0.3916666666666666,0.0,2.157681377880806,59.633016520253896,203.6138650100815,309.2707971830837,fqhc7_80Compliance_baseline_low_initial_treat_cost,67 -100000,95840,42185,396.1393989983305,6770,69.49081803005008,5276,54.58055091819699,2128,21.953255425709514,77.36488025655099,79.67793190703443,63.35773544642036,65.0704972883184,77.10336527966042,79.41296343361437,63.261922466159454,64.97475693645019,0.2615149768905667,264.968473420069,0.0958129802609022,95.7403518682156,109.51006,76.74729281280301,114263.418196995,80078.56094825022,262.76623,164.26854385851183,273584.5993322204,170813.92799131104,297.71134,142.76576638376142,306933.68113522534,146244.64951102168,3484.07308,1573.824279057898,3608452.639816361,1615319.612580537,1266.56944,551.4464986203807,1309648.382721202,563623.0811659581,2090.48154,862.5431594475547,2158615.442404007,881494.2075499861,0.37871,100000,0,497773,5193.791736227045,0,0.0,0,0.0,22143,230.53005008347245,0,0.0,27616,284.5262938230384,1922371,0,68989,0,0,4203,0,0,56,0.5634390651085142,0,0.0,1,0.0104340567612687,0,0.0,0.0677,0.1787647540334292,0.314327917282127,0.02128,0.3228932584269663,0.6771067415730337,25.07142408646552,4.481738316566373,0.327710386656558,0.2170204700530705,0.2249810462471569,0.2302880970432145,11.233437343081556,5.733979228393985,22.514611289380152,12772.944534187913,59.70741342339341,13.68857149033318,19.55107611128045,13.293008264451233,13.174757557328554,0.5583775587566339,0.788646288209607,0.7009832272990167,0.5796124684077506,0.1176954732510288,0.7212996389891697,0.9057971014492754,0.88558352402746,0.7402135231316725,0.1146245059288537,0.5003855050115652,0.7222982216142271,0.6385448916408669,0.5298013245033113,0.1185031185031185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0044811225110507,0.0069100576345482,0.0093852841994068,0.011795690505486,0.0141428745978088,0.016198087626659,0.0186618208546868,0.0206391069676153,0.0228977941552791,0.0250789160824826,0.0272159108401834,0.0293528196589893,0.0314632414240281,0.0334175127557594,0.0353566635697326,0.0373392910706343,0.0393194981195022,0.0412928814685605,0.0432679303385281,0.0581235268350681,0.0719265057848475,0.0849499308668873,0.0977025977025977,0.1095596133190118,0.1247439444174603,0.1378693022319679,0.1505410634181601,0.1626165432783597,0.1734822843922711,0.1871443171427034,0.2003934794828555,0.2128260562538703,0.2233082870997335,0.2334835164835164,0.2437797191197611,0.2542359664464669,0.2636756696052558,0.2731720022195296,0.2815569505906029,0.2885146296103776,0.2958438919575397,0.3027458953415525,0.3092551600358959,0.3156929653061968,0.3216819391073012,0.326704687578168,0.3319178151858821,0.3373310045927938,0.3426971473746623,0.3437180521926284,0.3442764994704919,0.3453530498033522,0.3455029363265542,0.3459317038316115,0.345103693704749,0.3443218792159352,0.3454216073781291,0.3460726967082354,0.3477629597762959,0.3488205456979616,0.350083585416335,0.351488697705803,0.3530656342846853,0.3532350314935927,0.3540946695989109,0.3542702085118537,0.356638061585058,0.359044898247099,0.3628290263221058,0.365409383624655,0.3673666684569526,0.3685186369157982,0.3687094782340228,0.3715867863280504,0.3718809980806142,0.3721652687169928,0.3769072164948454,0.3865406006674082,0.397270955165692,0.0,1.7248253944922587,61.57661473038016,192.25263924291409,299.70592678201785,fqhc7_80Compliance_baseline_low_initial_treat_cost,68 -100000,95635,42312,398.9020755999372,6886,70.83180843833324,5366,55.49223610602812,2121,21.791185235530925,77.2563444549925,79.66443003724748,63.27473565930678,65.055059816332,76.9905999167318,79.39827502380936,63.17738792664975,64.95948907348627,0.2657445382607051,266.155013438123,0.0973477326570275,95.5707428457373,109.22648,76.538778183445,114211.8262142521,80032.1829700894,265.9489,165.90283092830228,277455.4504104146,172843.77892760656,295.5263,141.18451640845447,304635.0917551106,144373.88348024918,3528.71101,1589.4072982395817,3653576.32665865,1625812.1463732831,1337.33527,580.3986474633066,1383392.3040727766,591963.183128003,2093.89014,868.2257320984021,2154643.2373085166,879791.3212775339,0.38031,100000,0,496484,5191.4466461023685,0,0.0,0,0.0,22367,233.22005541904116,0,0.0,27409,282.197940084697,1915722,0,68773,0,0,4340,0,0,43,0.4496261828828357,0,0.0,1,0.0104564228577403,0,0.0,0.06886,0.1810628171754621,0.3080162648852744,0.02121,0.3313002495148323,0.6686997504851677,24.7769488687598,4.490121648054763,0.32836377189713,0.2182258665672754,0.218412225121133,0.2349981364144614,11.3377067847777,5.774849696684602,22.51572976744885,12810.79020625238,60.82226661591022,13.873938782709809,19.890072751868846,13.125114001590187,13.933141079741397,0.5532985464032799,0.7779675491033304,0.6838819523269013,0.6032423208191127,0.1157811260904044,0.7023988005997002,0.9074550128534704,0.8352941176470589,0.7509881422924901,0.146067415730337,0.503968253968254,0.7135549872122762,0.6357516828721017,0.5625680087051143,0.107645875251509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002035752266167,0.0042771859765058,0.0062411836937659,0.0084727682789308,0.0109166751449791,0.0130191620060511,0.0152909254121103,0.0176754260492868,0.0199864983736677,0.0221177290142807,0.0241134460679691,0.0261848974390594,0.028372298918023,0.0305795263575721,0.0326319377730949,0.034622269590141,0.0366028112949371,0.0388702489898098,0.0408524276289775,0.0426606030895038,0.0570714935153155,0.0705553285772651,0.0834278155706727,0.0961884611740929,0.1083428306107804,0.1244113818901387,0.1380902346610628,0.1503663315726699,0.1629365995468342,0.1736811606644632,0.1872378960532131,0.2005330213208528,0.2124799860583154,0.2230051836184506,0.2331270749920033,0.2443605683836589,0.2547541277014631,0.2639480624873199,0.2732005638157596,0.2817450757706118,0.2901456468296303,0.2980287768096907,0.3059333096000949,0.3124654737600576,0.3193412429653811,0.3258736592358262,0.3324131354071248,0.3379895394820768,0.3433831931027319,0.3470564889535653,0.3478137536977752,0.3487636413869319,0.3486722907937946,0.3485024547540888,0.3484830369152593,0.3473736143445213,0.346426979173301,0.3469583161370202,0.3483384154219856,0.3496480838118553,0.3506189171312482,0.3505748271533603,0.3517740675855373,0.3521167883211679,0.3521708666553915,0.353202963428362,0.3533256880733945,0.3556349156184817,0.3573664404037562,0.3607743371626187,0.3626855446448961,0.363903115663679,0.3645073282152147,0.3670277693011901,0.369810616662002,0.3740973126553806,0.3801878218721599,0.38125,0.3787960954446854,0.383307573415765,0.0,2.361437216411847,58.747469869637925,210.58020684311904,299.3918374469609,fqhc7_80Compliance_baseline_low_initial_treat_cost,69 -100000,95702,42214,397.43161062464736,6874,70.78221980731855,5285,54.73239848696997,2133,21.93266598399197,77.32722884548278,79.70363600251689,63.32110870231941,65.07586356724089,77.06186581116923,79.43775903471808,63.223598381243946,64.98003946602911,0.2653630343135518,265.8769677988033,0.0975103210754682,95.82410121177531,109.19876,76.57051689187477,114102.90276065284,80009.31735164863,266.86144,166.69891257834246,278354.193224802,173694.61091803087,295.90947,141.94590174337543,306072.4645252973,145786.75258709036,3481.73742,1579.7191160469847,3608985.632484169,1621635.3902474828,1303.29454,572.1812393043771,1350024.9002110718,586115.8733987488,2093.7761,882.4510385715138,2156244.926960774,896964.4988103885,0.3782,100000,0,496358,5186.495580029676,0,0.0,0,0.0,22479,234.36291822532445,0,0.0,27493,284.2155858811728,1917436,0,68811,0,0,4351,0,0,42,0.4388623017282815,0,0.0,0,0.0,0,0.0,0.06874,0.181755684822845,0.3102996799534477,0.02133,0.3255070853014726,0.6744929146985273,25.26323259128858,4.424444353158047,0.3165562913907285,0.2234626300851466,0.2293282876064333,0.2306527909176915,11.230989425500567,5.860086731665886,22.89801512020024,12781.150901519011,59.82569313068473,13.790266912912992,18.99175007443821,13.522982729502417,13.5206934138311,0.5540208136234627,0.7849280270956817,0.6867901972504483,0.5701320132013201,0.1320754716981132,0.7186588921282799,0.9508196721311476,0.8628318584070797,0.725,0.1642335766423357,0.4962944032711474,0.7104294478527607,0.6216216216216216,0.5236051502145923,0.1227513227513227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023589203636584,0.0045707452037579,0.00687836055595,0.0090191657271702,0.0109211824162861,0.0133078105749748,0.0157037097464972,0.0176993861897807,0.0197881087272206,0.0220786269469846,0.0242436673161727,0.0264366045293483,0.0286457797617823,0.030818847822279,0.0328493142202545,0.0348090466292309,0.0369641340157056,0.0389418934210936,0.0408046515014405,0.0428080050031269,0.0572162687221908,0.0707333919377119,0.0839853993161174,0.0966798518767884,0.1090767186280507,0.1245636305934624,0.1376708549112827,0.1502544881487318,0.1621278005106892,0.1736089507728945,0.1864996445574201,0.1992379880286187,0.2121554893302299,0.2233535291673046,0.2340039178570642,0.2440364736253144,0.2549779007991428,0.2639163891638916,0.2733567155877913,0.2821379468377635,0.2896467863346844,0.297140047529296,0.3043606992278175,0.3114612562054824,0.317704280155642,0.3236920039486673,0.3301711822351437,0.3352321239693644,0.3400653747373336,0.3446807948070491,0.3446576378292982,0.3445366566489288,0.3450826498778955,0.3449563053417443,0.3453478500469162,0.3446563124711672,0.3442646381552827,0.3444241796881418,0.3457022236655443,0.3466695231464124,0.3473055014240743,0.3487994936909141,0.3506324599861551,0.352169141526126,0.3532221873718242,0.3550844130349431,0.358298262189012,0.3603472770323599,0.3624401913875598,0.366765152120099,0.3694074414331649,0.3720008568980291,0.3741198858230257,0.3756450743279673,0.3769708552317248,0.3813001316892134,0.3868070610096005,0.3874795417348609,0.3899860917941585,0.3989155693261038,0.0,1.9082960257390047,60.90015856103648,196.5913951831738,297.42193111568844,fqhc7_80Compliance_baseline_low_initial_treat_cost,70 -100000,95761,42176,396.19469303787554,6931,70.9579056191978,5448,56.11887929324047,2229,22.74412339052433,77.38146625236273,79.70406202412656,63.35451413110488,65.06764308011562,77.10139540349748,79.42939632663492,63.25128694453366,64.97013585555524,0.2800708488652503,274.66569749164194,0.1032271865712175,97.50722456037408,108.35286,75.865336572041,113149.25700441725,79223.6260816418,266.13908,166.08790398486806,277164.6703772935,172685.41069230397,296.08896,142.13491810613684,304542.0369461472,144783.726969424,3622.77724,1638.023880424374,3736717.818318522,1664159.1014022832,1372.21479,599.7161327254297,1412386.1697350696,605691.7353885504,2204.15328,920.9584125650526,2253071.229414897,919825.4570561012,0.38019,100000,0,492513,5143.14804565533,0,0.0,0,0.0,22330,232.38061423752885,0,0.0,27408,281.56556426937897,1924782,0,69129,0,0,4392,0,0,65,0.6787731957686324,0,0.0,0,0.0,0,0.0,0.06931,0.1823035850495804,0.3215986149184822,0.02229,0.3243725140584282,0.6756274859415718,25.12307188678208,4.457100127221763,0.3256240822320117,0.2103524229074889,0.2204478707782672,0.243575624082232,11.16781222084953,5.677995458193295,23.76195535276629,12905.949171766595,61.70187771402772,13.558936306425895,20.1336788054881,13.409447485819928,14.599815116293795,0.5479074889867841,0.7643979057591623,0.6894024802705749,0.5978351373855121,0.1266013564431047,0.7242359630419332,0.9214659685863874,0.8660907127429806,0.7716262975778547,0.1575091575091575,0.4865132392972036,0.6858638743455497,0.6270022883295194,0.5427631578947368,0.1185958254269449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023287366097644,0.0042462199521666,0.0068065854475,0.0091498090827849,0.0113577435000559,0.0132337072703951,0.0156148075668623,0.0177654874029326,0.0200756027789129,0.0224770829923064,0.0246693507903822,0.0270453286274187,0.0289704643084701,0.0310582664196005,0.0330126916375408,0.0351967942825864,0.0371719513204735,0.039169742462572,0.04125371397702,0.0433768559588513,0.0578370085889314,0.0719824203421754,0.0857002013760698,0.0989540078843626,0.1114226978019081,0.1270440650716084,0.1405416299816486,0.153042867331623,0.165121445814018,0.176358957864265,0.1908186555273244,0.2035582954791261,0.2151487140449133,0.226341815635735,0.2363610349875083,0.247215541985748,0.2572883286251828,0.2674935563384245,0.2770597187833632,0.2858109270194347,0.293972498001645,0.3005774930009722,0.3075583461675157,0.3141705939489873,0.3203451628585318,0.3266148915187377,0.3322069535180596,0.3375198829293122,0.3424167390487055,0.3473307635441968,0.3476005712284105,0.3479822726271746,0.3479094690827046,0.3479173908006024,0.3485017805790234,0.347742628992629,0.3470714115875406,0.3471503441930767,0.3478736870915871,0.3491403167348105,0.3509258565109828,0.3516483516483517,0.3526450476150522,0.3530651126302813,0.3536511913653118,0.3554400898195775,0.3577887440454118,0.3590776103438513,0.361225422953818,0.3622546673049306,0.3646978021978022,0.3632685653446899,0.3629955947136564,0.3622868453105968,0.3641799544419134,0.3648084039632326,0.3685420818641729,0.3745676500508647,0.3744810406864102,0.3841982958946553,0.0,2.9785690842600068,61.34101427300814,206.52321031997036,303.1592548756759,fqhc7_80Compliance_baseline_low_initial_treat_cost,71 -100000,95762,42710,402.2159102775631,6873,70.58123263925148,5358,55.42908460558468,2093,21.50122177899376,77.31912755708531,79.66875551540964,63.32066847763053,65.05833659356576,77.05657638918436,79.40801097262279,63.22317315853866,64.96455917828318,0.262551167900952,260.74454278685266,0.0974953190918768,93.77741528257388,109.11538,76.46031365474272,113944.34117917337,79844.10690539329,266.17902,165.99231627903936,277458.5012844343,172839.8971708444,294.31534,141.07925058974877,304850.8489797623,145340.75287192495,3504.59393,1582.2128904031763,3623593.137152524,1616281.3282342874,1270.4943,555.9886384785747,1311403.4168041602,565442.8695597746,2066.37392,865.8678495267047,2122831.102107308,871875.5036054915,0.38298,100000,0,495979,5179.288235416972,0,0.0,0,0.0,22424,233.6208516948268,0,0.0,27258,282.10563689146005,1918692,0,68934,0,0,4255,0,0,50,0.5221277751091247,0,0.0,0,0.0,0,0.0,0.06873,0.1794610684631051,0.3045249527135166,0.02093,0.3217897215680842,0.6782102784319157,25.31869907734409,4.502073243306424,0.3240014930944382,0.2215378872713699,0.2239641657334826,0.2304964539007092,10.903502953109834,5.335189909370128,22.24152775837938,12889.03047546494,60.31325986598899,13.978794249064476,19.48302588187055,13.38543580305642,13.466003931997548,0.5520716685330347,0.7598989048020219,0.6941244239631337,0.5908333333333333,0.1149797570850202,0.7015475313190862,0.8781725888324873,0.8838268792710706,0.7083333333333334,0.1192307692307692,0.501374656335916,0.7011349306431274,0.6299151888974557,0.5576923076923077,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021266038137095,0.0044791698335005,0.0068179051174871,0.0090495439679863,0.011268063987959,0.0133207051419143,0.0157736426204435,0.017951231466732,0.020142737367334,0.0222047050633688,0.024514779613054,0.0267275901016531,0.028971049519206,0.0312136227375274,0.0331200990507635,0.0352938744716253,0.0373211586640992,0.0392618563545081,0.041076531407492,0.0430059368815748,0.0571521028842239,0.0709772579869029,0.0848760737998091,0.0971605847092228,0.1091689245464033,0.1249233372105318,0.1383797887234313,0.1510198869984358,0.1635058944131214,0.174415986792028,0.1880707270847691,0.201038961038961,0.2133611781852988,0.2246826099793327,0.2355361897845558,0.2460957402033537,0.2563464243452633,0.2667619454885103,0.276520870463498,0.2843167577350882,0.2927879938857751,0.2994847775175644,0.3065007407407407,0.312927048934254,0.3193920514006181,0.3254328977595534,0.3313857264657204,0.3368607601392271,0.3424522425249169,0.3476795368326438,0.3476583576130355,0.3481083316105023,0.348562309343577,0.3491718471503717,0.3509014843598791,0.3496308122131311,0.3492436387879172,0.3501003718695494,0.3517824442504835,0.3525828241744459,0.3525860447620839,0.353209372398208,0.3552903035661656,0.3554646221642646,0.3560743372241958,0.3578517374112964,0.3601888952489983,0.3628528130327713,0.3660301436588895,0.3686828491842419,0.3736414284409535,0.3763613068545804,0.3780077455399657,0.3787645974185618,0.3811149032992036,0.3842960502905942,0.3812519177661859,0.3829397394136807,0.3859745996686913,0.3847626339969372,0.0,1.9963677807975104,60.08254930409493,197.1590814149961,306.82151135888705,fqhc7_80Compliance_baseline_low_initial_treat_cost,72 -100000,95689,42329,398.6560628703404,6884,70.80228657421439,5377,55.680381235042695,2112,21.77888785544838,77.34181859432726,79.72524995450976,63.3271521787835,65.08581919608622,77.08160497329825,79.46292390966296,63.23127900918726,64.99171458522157,0.2602136210290098,262.32604484680166,0.0958731695962384,94.1046108646475,109.60928,76.851529846862,114547.41924359124,80313.86036729613,267.70765,166.79263986445474,279265.2760505387,173803.8226592971,293.75188,140.08976723299767,304010.11610529944,144094.31386611093,3529.98817,1576.8105059044028,3659620.729655446,1618448.114103401,1261.43185,544.0955673782912,1307483.1798848351,557829.3193348154,2084.87268,863.7203593625304,2152145.99379239,878612.1955065251,0.38061,100000,0,498224,5206.700874708692,0,0.0,0,0.0,22555,235.18899769043463,0,0.0,27239,281.5997659083071,1918008,0,68810,0,0,4397,0,0,44,0.4598229681572595,0,0.0,0,0.0,0,0.0,0.06884,0.1808675547147999,0.3067983730389308,0.02112,0.3282632743362831,0.6717367256637168,24.964754085073327,4.525396845347581,0.3249023619118467,0.2172214989771247,0.2254045006509205,0.2324716384601078,10.91278956443506,5.216991515259554,22.34914864337029,12789.728233858128,60.391861990245125,13.62727245501432,19.57034726471285,13.449502467825209,13.74473980269274,0.5460293844151014,0.7559931506849316,0.7097882083571837,0.5561056105610561,0.1112,0.7037037037037037,0.9193548387096774,0.8656716417910447,0.6690391459074733,0.1410788381742738,0.4959568733153638,0.6796482412060302,0.6631970260223048,0.5220193340494093,0.1040634291377601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898492167167,0.0046220744599977,0.0064527256678469,0.008429647986025,0.0104425102696546,0.0126354158181966,0.0150750695654832,0.017282035054051,0.0192152413659174,0.0216298662080684,0.0239008284800262,0.0260868672137377,0.028014403292181,0.0303273873929576,0.0323386422518347,0.0341660201706749,0.0361565644527809,0.0384267959673149,0.0406974324830427,0.0427956339070693,0.0574138687503917,0.0715893741557856,0.0853397426478305,0.0977860555169728,0.1101101312291657,0.1253120372329172,0.1387008467202852,0.1513896724609603,0.1633562339063818,0.173827245232835,0.1872920144311022,0.2005105241525515,0.2122504024013572,0.2239253072112651,0.2343318555351426,0.2450681760281786,0.255025840802795,0.2650251403246307,0.2749585820302748,0.2840963745047294,0.2920386732664107,0.2999438701529538,0.3070527149936723,0.3131245357168531,0.3194694135367572,0.3243193275239421,0.3286386739778161,0.333918999783558,0.3384407974903425,0.3431986265187533,0.3427982319012452,0.3430825794191762,0.3443406872425661,0.3447268308911808,0.3452025047223833,0.3446809816892545,0.3449330480944457,0.3447652539726882,0.3458668492212904,0.3475953032009007,0.3480973525940082,0.3499693512348486,0.3509040567185468,0.3522607545562554,0.3533905248445708,0.3552248971786341,0.3565580809526535,0.3591582672438307,0.3628005657708628,0.3645874930117402,0.3639692420358842,0.3645766687993175,0.3672081601813373,0.3715288373512359,0.3691413573303337,0.3721290015470665,0.3682354744749348,0.3609371844071904,0.361188228761799,0.3642691415313225,0.0,2.0261154349086032,57.217723907277374,205.76291485655136,308.4609637294797,fqhc7_80Compliance_baseline_low_initial_treat_cost,73 -100000,95669,42291,400.4118366450992,7015,72.08186559909689,5483,56.61185964105405,2255,23.194556230335845,77.38307130315455,79.75955935936508,63.34642469116329,65.09743809048862,77.11085803640455,79.4858733378735,63.24824191580769,65.00120643900821,0.2722132667500005,273.68602149158505,0.0981827753556032,96.23165148040869,108.55438,76.06927371449937,113468.70982240852,79512.98091806058,268.15783,166.56094315480834,279633.6953454097,173437.4490742125,299.35624,143.54717932385634,307571.0000104527,146148.07672257297,3624.04284,1634.9782375101838,3746448.682436317,1667337.787068103,1328.93187,574.780541906428,1374228.496169083,586035.521495598,2223.8383,905.54402539401,2289390.209994878,917854.1426202812,0.38102,100000,0,493429,5157.668628291296,0,0.0,0,0.0,22628,235.8130637928692,0,0.0,27867,285.9965087959527,1922774,0,69155,0,0,4338,0,0,44,0.4599190960499221,0,0.0,1,0.0104527067284073,0,0.0,0.07015,0.1841110702850244,0.3214540270848182,0.02255,0.3289473684210526,0.6710526315789473,24.79618134808611,4.561276275812598,0.3222688309319715,0.2086449024256793,0.233448841874886,0.235637424767463,11.46142219323928,5.893650347143499,23.74256011307877,12837.224389380795,61.95659721474555,13.713751258384244,20.09685691234463,14.054037007844704,14.09195203617196,0.5641072405617362,0.7884615384615384,0.7181663837011885,0.6,0.1191950464396284,0.7415730337078652,0.9213759213759214,0.8710359408033826,0.76,0.1680327868852459,0.5018477457501848,0.7150610583446404,0.6622874806800618,0.5510204081632653,0.107824427480916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022675966512456,0.0044272891212286,0.0065415158061277,0.0087330923270644,0.0107772863606324,0.013141687958712,0.0152602499541275,0.0173013912564178,0.0196457228133656,0.0218047806725699,0.0236628151368198,0.0257947917522385,0.0276346507872841,0.0295720245146006,0.0312790145872449,0.0329385257761792,0.0348599902619938,0.0368875003892181,0.0390083091546293,0.0408433383358345,0.0562548968399059,0.0699546687046556,0.0838972293037065,0.0971652682270309,0.1090247759620453,0.1243035806789229,0.1377402291783711,0.1497495666599317,0.1622887504267668,0.1736517323391399,0.187622367090514,0.2005232545568553,0.2130545351794292,0.2239549751379706,0.234797910365686,0.2468261881023596,0.2580004019741396,0.2673445716923978,0.2761282997445359,0.2842133003345707,0.2917009038619556,0.2994112207512495,0.3068803752931978,0.3138746565233564,0.3202237626170497,0.3255687706657454,0.3320933378424078,0.3377996280918053,0.3429586504674351,0.3472233235535115,0.3477100933748333,0.347963763526723,0.348686435900327,0.3491379310344827,0.349495069678897,0.3494527088226715,0.3486360823269911,0.3502179814098873,0.350910587509003,0.351830284352547,0.3520746654672214,0.3521343873517786,0.3539541217136273,0.3551163674573543,0.3554104029585515,0.3557632236568097,0.3581924115390081,0.3605209477483131,0.3615422431350516,0.3616128010139417,0.3634206443369535,0.3657542224810716,0.3671069182389937,0.3682493932038835,0.3706502472245545,0.3661144401362942,0.3695816341942304,0.3673792557403009,0.3724324324324324,0.3756554307116105,0.0,2.7209858672952745,62.32446480942842,203.9955301470007,307.20865805435386,fqhc7_80Compliance_baseline_low_initial_treat_cost,74 -100000,95702,42084,395.9478380807089,6912,70.98075275333849,5401,55.93404526551169,2171,22.32973187603185,77.3960056150407,79.78146204323332,63.35197710932333,65.1136661478147,77.12746718435898,79.5120098488933,63.25358010595172,65.01729157177418,0.2685384306817298,269.452194340019,0.098397003371609,96.37457604051748,109.05994,76.33354921636851,113957.84832082925,79761.70740043941,265.37467,165.01820540399484,276780.7360347746,171917.56663777112,293.09098,140.14127795942574,303633.54997805686,144318.30343512935,3555.72234,1603.2656913118117,3683648.816116696,1643542.1228116113,1282.5895,559.5534340472717,1328391.8831372384,572884.0923358666,2136.84346,889.8001762006411,2200506.760569267,901499.324974602,0.37811,100000,0,495727,5179.902196401329,0,0.0,0,0.0,22340,232.90004388623015,0,0.0,27144,280.95546592547703,1927673,0,69048,0,0,4325,0,0,46,0.4806587114166893,0,0.0,0,0.0,0,0.0,0.06912,0.1828039459416572,0.3140914351851852,0.02171,0.3115971935617003,0.6884028064382997,25.06695035867378,4.563246271112721,0.3223477133864099,0.2151453434549157,0.2310683206813553,0.231438622477319,10.995401249058324,5.4426082396374245,22.999264785024792,12762.056129215733,60.71352869105684,13.703590397747046,19.489436696209115,13.820320836413805,13.700180760686878,0.546009998148491,0.7667814113597247,0.6886846639862149,0.5825320512820513,0.1056,0.7061933534743202,0.9164420485175202,0.8571428571428571,0.7360594795539034,0.1401515151515151,0.493990679421143,0.6965865992414665,0.6351249053747161,0.5403472931562819,0.0963488843813387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022691127161481,0.004603435338971,0.0069020117334199,0.0092151384302768,0.0116269607145036,0.0137152282816763,0.0159058698777491,0.0179379064615258,0.0200678811670653,0.0222317754713504,0.0243387328275579,0.0266127293448463,0.0285908221404035,0.0307571871491404,0.0329856274697949,0.0351553616836534,0.0370922801238826,0.0390168460604299,0.0410166812263405,0.04302195912497,0.057769839777736,0.071672997833799,0.084712520714031,0.0976302121664528,0.1095792225314107,0.1245281023634537,0.138242345802126,0.1508303172237598,0.1621445510286923,0.1732289376307181,0.1865817931153332,0.1986867441206378,0.2105331797335188,0.2221189895832194,0.232701843890532,0.2437674356817074,0.2545393709569484,0.2645019942699848,0.2743680674363535,0.2827384355063682,0.2910065130029101,0.2986724888790295,0.3060665130840569,0.3127198755534283,0.3185787048265825,0.3242010255401301,0.3288944911763972,0.3338492179274125,0.3391690551811397,0.3435616726755967,0.3438674685855439,0.3438580602667545,0.3447756996203066,0.3438920557038747,0.3440287321351716,0.3437088727695651,0.3426630994031693,0.3436069125104623,0.344396993508712,0.3462623161502213,0.3472222222222222,0.3481858940174991,0.3486848988303237,0.349868403443815,0.3501286088607899,0.3499583072753804,0.3507494524872721,0.3535614239400711,0.3549192725737803,0.3561709428993256,0.3567130586560103,0.3592321266242447,0.3612469049584153,0.365197393637409,0.3655126498002663,0.3639431188238129,0.3647040642868181,0.3675056271741355,0.3702056698165648,0.3706429124709527,0.0,1.8650993611621052,58.54491506421069,204.1918253596754,310.1226990436488,fqhc7_80Compliance_baseline_low_initial_treat_cost,75 -100000,95824,42243,397.8961429287026,6869,70.42077141425948,5375,55.51845049256971,2182,22.384788779428952,77.38566316619061,79.70751341390302,63.36611244363343,65.08455579091189,77.12260064451263,79.44464160892379,63.27036921391959,64.99115833421264,0.2630625216779805,262.8718049792269,0.0957432297138396,93.39745669925036,110.17534,77.16877102743503,114976.76991150442,80531.77808005826,269.9001,168.21827583155266,281034.8555685424,174921.74802925432,293.23576,140.46355066725465,302519.95324762067,143728.80049887148,3561.39573,1600.365385220139,3682985.535982635,1636493.6917892566,1309.95744,569.5218556824192,1355193.0414092503,582489.3509793149,2147.3988,885.6813677207448,2206627.1497745863,896936.9125994557,0.37913,100000,0,500797,5226.216814159292,0,0.0,0,0.0,22741,236.7465353147437,0,0.0,27183,280.2533811988646,1919555,0,68867,0,0,4251,0,0,47,0.4696109534145934,0,0.0,0,0.0,0,0.0,0.06869,0.1811779600664679,0.3176590478963459,0.02182,0.3280774550484094,0.6719225449515907,25.26195132370539,4.509694535510242,0.3281860465116279,0.209860465116279,0.2228837209302325,0.2390697674418604,11.144466854274338,5.583298286951959,23.15457522436572,12755.1738056391,60.56495879206882,13.28484717233844,19.972361729793715,13.179717713105648,14.128032176831011,0.5376744186046511,0.7632978723404256,0.6921768707482994,0.5492487479131887,0.1167315175097276,0.7096530920060332,0.9147727272727272,0.8642533936651584,0.7444444444444445,0.1374045801526717,0.4813534205976784,0.6945876288659794,0.6346444780635401,0.4924568965517241,0.1114369501466275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020661784813588,0.0043186034488002,0.0066070576772792,0.0088188080385264,0.0108425892021644,0.0130231137358721,0.014983334862245,0.0172976834370854,0.0193571465072308,0.02153134529974,0.0237141188165486,0.0259060444015642,0.0278828365878725,0.0301595470921255,0.0322241356197861,0.0342925609932447,0.0363905386668874,0.0383714421940753,0.0401216941655331,0.0421431618817702,0.0566815133150444,0.0708618617049077,0.0840364318579618,0.0966454093693201,0.1088909720978733,0.1244547710830649,0.1382265394108238,0.1514066169984377,0.1634279010238908,0.1749938416390879,0.1884033035099793,0.2019550658889609,0.2136445047489823,0.225118147190116,0.2349556355969428,0.2452546513813193,0.2549513222091029,0.2645694583272499,0.2731690188704891,0.2814064607576416,0.2891232284965176,0.296417318240168,0.3030553456743483,0.3094495248341402,0.3171352091181066,0.3233021753282645,0.3289742949837784,0.334754256425871,0.3392829467376143,0.3442169705746823,0.3441745352809835,0.3442127115498302,0.3445368689214486,0.3447767663632423,0.3448270737036101,0.3448904829784951,0.3442550154626913,0.3446806410214222,0.3445886851988407,0.3456982599501819,0.345541969534757,0.3468416669971053,0.3481589269897507,0.3493506785802705,0.3502314197785155,0.3509681153320004,0.3523461969483635,0.3550942798288702,0.3569630128727969,0.3595109240328723,0.3633647437370719,0.3634566053869175,0.3661677026512749,0.3687150837988827,0.3739559605163249,0.3770963104935314,0.3775683608836706,0.3763792398855741,0.3803442531926707,0.3819364714887103,0.0,2.273828611659317,58.2595010187113,203.79192672782213,307.8791018583548,fqhc7_80Compliance_baseline_low_initial_treat_cost,76 -100000,95768,42535,400.1858658424526,6957,71.29730181271405,5456,56.4071506139838,2241,23.04527608386935,77.37657405990127,79.72230891374838,63.3458979718325,65.07943214342778,77.09620038320347,79.44105018843798,63.24175532281571,64.9776068420401,0.2803736766978062,281.2587253103942,0.1041426490167864,101.82530138767731,110.7964,77.56388760420845,115692.50689165483,80991.44558120504,267.19611,166.96092947390434,278434.9573970429,173770.94764090911,302.47967,145.15066045666006,312171.2367387854,148753.45429475306,3620.21128,1659.5637162214716,3745164.783643806,1697914.2282566298,1285.5427,572.492005483492,1329922.1451841951,585425.9855491074,2201.17118,932.7461934800996,2265457.1255534207,945004.5510099296,0.38221,100000,0,503620,5258.750313257038,0,0.0,0,0.0,22510,234.4415671205413,0,0.0,28038,289.1362459276585,1912294,0,68646,0,0,4422,0,0,41,0.4281179517166485,0,0.0,0,0.0,0,0.0,0.06957,0.182020355302059,0.3221216041397154,0.02241,0.3394130554031815,0.6605869445968184,24.797397888101745,4.533789274771181,0.3310117302052786,0.2118768328445748,0.2256231671554252,0.2314882697947214,11.42836220348548,5.8393545129594,23.965880199368243,12884.10419062033,61.86116043418974,13.665037619058332,20.58206606933903,13.758159492786891,13.8558972530055,0.5542521994134897,0.7811418685121108,0.689922480620155,0.6011372867587328,0.1068883610451306,0.7200282087447109,0.91644908616188,0.8893805309734514,0.7540453074433657,0.1277372262773722,0.4960376423972263,0.7141009055627425,0.6233382570162481,0.5498915401301518,0.1011122345803842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430872075357,0.0045920384393151,0.0069705148237585,0.0093766508188061,0.0119091204946708,0.0142870235537316,0.0164778578784757,0.0186221260260546,0.0207321685971028,0.0228066044978554,0.0249159560511643,0.027027027027027,0.0290316943036608,0.0311637487126673,0.0328687416822275,0.0351432085749428,0.0373388558115454,0.0392032781783287,0.0410342246434066,0.042907727556759,0.0576336993278503,0.0719290539833929,0.0852910651948297,0.0982848495039515,0.1104752268631232,0.1262698337191725,0.1395565828676852,0.152831132346525,0.164083777462111,0.1750839223088555,0.1885818926051597,0.2017227759200943,0.2135963528349309,0.2251879575823237,0.2352753339132541,0.2462582318898423,0.2565534495660818,0.2672603032725062,0.2761626917008162,0.2843692011637763,0.2925736902405999,0.3002035516249035,0.3066857541734202,0.3136681683120866,0.3202799411929091,0.3263560157790927,0.3313363017810686,0.3364518056208768,0.3418209577042011,0.3469043127218037,0.346860540191542,0.3474254593464627,0.3478450642749532,0.3483043742230188,0.3474946504992867,0.3463283069756038,0.3457948368488613,0.3470581469858534,0.348697943400746,0.3502152669846544,0.3510142749812171,0.3511699726808409,0.3525989709125275,0.3533397437330888,0.3544706052289469,0.3552583459589363,0.3557719769235163,0.3584780966767371,0.3600493218249075,0.3617539099904245,0.3644405738644176,0.3677091686714782,0.3706912908734425,0.3762807768771983,0.3776375282592313,0.3752235602718493,0.3769835156370359,0.3816189896530736,0.3832550428295109,0.3915221579961464,0.0,2.1127073873648388,62.36833022580728,208.43070691555772,302.30783732742697,fqhc7_80Compliance_baseline_low_initial_treat_cost,77 -100000,95740,42278,397.58721537497394,6990,71.65239189471485,5475,56.49676206392313,2179,22.35220388552329,77.3313489084019,79.69883078602408,63.31030609897547,65.06376572597374,77.05959552810816,79.42776549427953,63.21158074231806,64.96820531847489,0.2717533802937453,271.06529174454863,0.098725356657404,95.56040749885142,108.79264,76.2166444074069,113633.1940672655,79607.73304715575,266.01905,165.43954644335253,277176.8017547524,172123.24721201428,297.80325,143.00988768634508,306591.9887194485,146009.5362062323,3594.49972,1623.5590677122952,3711371.495717568,1653142.237538505,1348.79095,593.9336999953574,1388722.049300188,600399.9298876313,2143.59778,888.3494769338994,2200988.677668686,894252.7232575873,0.379,100000,0,494512,5165.145184875705,0,0.0,0,0.0,22340,232.6300396908293,0,0.0,27605,283.85209943597243,1922132,0,68944,0,0,4384,0,0,50,0.5222477543346564,0,0.0,0,0.0,0,0.0,0.0699,0.1844327176781002,0.3117310443490701,0.02179,0.3148374813001496,0.6851625186998505,25.304314907838982,4.462642719111518,0.3318721461187214,0.2142465753424657,0.2261187214611872,0.2277625570776255,11.320801217076738,5.82821163167269,23.13521442067987,12831.158912582305,61.73950175775882,13.72823046378244,20.41092061135335,14.005048353854525,13.595302328768495,0.5512328767123288,0.7604433077578857,0.6752889378095762,0.598546042003231,0.1267040898155573,0.7281976744186046,0.8944591029023746,0.8619909502262444,0.7637540453074434,0.1869918699186991,0.4918272749451086,0.6964735516372796,0.6152727272727273,0.5435952637244349,0.1118881118881118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002117549316609,0.0046543699362178,0.0070032986551636,0.0092968908758382,0.0114244440375185,0.0135653980507378,0.0155703520918518,0.0177256807947966,0.0198938313780441,0.022041501935801,0.0241015753199868,0.0261057173678532,0.0281665500349895,0.0303205194269813,0.0325963543279453,0.0347637266053148,0.0368828694499668,0.0390669585879862,0.0411724962320045,0.0432337287658962,0.0586865977013894,0.0727679879452513,0.0862304093321864,0.0994699981071361,0.1113969696650182,0.1267254053711009,0.1397614398505815,0.1520270990008308,0.1635601915184678,0.1753672486130932,0.1874245559579238,0.200454840805718,0.211848723029023,0.2225931804498932,0.2329025013211203,0.2437699538843561,0.2535510094693586,0.2637580341966929,0.2735258068909165,0.2819031903190319,0.2894304237091919,0.2974596816696532,0.3045086485909732,0.3107283559142884,0.3176330266296674,0.3247609057814524,0.3318468784447339,0.3374772319097173,0.3427044278097066,0.3471247968929576,0.3475839939599849,0.3473747969494232,0.3475742930011695,0.3476249674752089,0.3477221430268472,0.3474918846083175,0.3474230392001772,0.3488929374497349,0.3497682691156602,0.3505010986655233,0.3503901560624249,0.3507712413123973,0.3513933187846231,0.3529741485616914,0.3541099028283461,0.3551010801056568,0.3568348610754162,0.3600315955766193,0.3630922869891635,0.3636181388075859,0.362818039864058,0.3641022903208584,0.3668886774500475,0.3660495716034271,0.3650347026824235,0.3667921863967992,0.3754354081478116,0.3778527485612225,0.3851992409867172,0.3909090909090909,0.0,2.667515293405078,60.18424103579737,205.89615526460776,311.2333671515441,fqhc7_80Compliance_baseline_low_initial_treat_cost,78 -100000,95503,42608,402.7831586442311,6868,70.78311676073002,5331,55.359517502068,2182,22.596148812079203,77.22623088476638,79.71410928418614,63.24095407219974,65.07645476028965,76.95896051584435,79.44163566586674,63.14378411996119,64.97901824045091,0.267270368922027,272.4736183193954,0.097169952238552,97.43651983873748,108.41028,75.96142529587776,113515.05188318693,79538.26088801163,265.97338,166.08897383808815,278061.6211009078,173473.90536222755,294.84009,141.11090246128165,305623.7290975152,145359.38132724556,3535.04127,1596.0702527939236,3673193.009643676,1642920.6441618833,1297.43134,566.6981022628689,1348495.9844193377,583354.3263173604,2148.49434,892.8711654048512,2225763.148801608,915217.686965507,0.3814,100000,0,492774,5159.775085599405,0,0.0,0,0.0,22386,233.94029506926483,0,0.0,27279,282.56703977885513,1916924,0,68828,0,0,4240,0,0,48,0.492131137241762,0,0.0,3,0.031412625781389,0,0.0,0.06868,0.1800734137388568,0.3177052999417589,0.02182,0.3116504854368932,0.6883495145631068,25.0543928092914,4.533540469173962,0.3215156631026074,0.2164697054961545,0.2286625398611892,0.2333520915400487,11.114190057070704,5.576429986395396,23.343145446448947,12889.464266371522,60.39176950013421,13.591281239787175,19.38038994798409,13.660984684139972,13.75911362822296,0.547364471956481,0.7686308492201039,0.6808634772462077,0.5963904840032814,0.110128617363344,0.7085843373493976,0.8982558139534884,0.8640552995391705,0.7614035087719299,0.1509433962264151,0.4938795903072695,0.7135802469135802,0.61875,0.5460385438972163,0.0990806945863125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020874499670669,0.0044427764309696,0.0065587751538164,0.00888662938485,0.0108425639354943,0.0130459155073128,0.0153062786354962,0.0176976682402468,0.0197346210113865,0.0218438146759287,0.0239776646411561,0.0263212009047912,0.028399320393348,0.0304261726968934,0.032546365655835,0.034435632493322,0.0365137652745793,0.0386054633902956,0.040577988915281,0.0425907363321221,0.0577239091070849,0.0715806922019744,0.0847555653700957,0.0974306550881038,0.1093182010313636,0.1247456333729014,0.1377206038698702,0.1507350587833656,0.162912985274431,0.1742882629208894,0.1884627424734723,0.2014813690192166,0.2133894406349137,0.2248298238498723,0.2362623421038115,0.2470139884226081,0.2566532055082612,0.2674897119341564,0.2770788306222272,0.2855880361303354,0.2937866870838264,0.3014543748533896,0.3089894974188572,0.3156091873895746,0.3213497665459776,0.3271150586983683,0.3334590435963192,0.3391975861099036,0.3442087879221336,0.3492469300976275,0.3488809250118331,0.3492760224715999,0.3489147637350215,0.3494967050474328,0.349416098674104,0.3479859113770244,0.3468173138128581,0.3480306381854798,0.348586162440911,0.3501401063371174,0.3512683854686529,0.3522246288973233,0.3536893530997305,0.3542172466504811,0.3540917103325043,0.3548311076197957,0.357948365676341,0.3590950740939682,0.3596172181221088,0.3636617582505287,0.3664664618770345,0.3697299605080585,0.3687432935681373,0.36999238385377,0.3765046188298964,0.3826219512195122,0.3833104080696928,0.3795008183306055,0.3841682812067534,0.3792177914110429,0.0,1.8214418611309169,59.123776335891634,206.56029610735763,299.8080701853509,fqhc7_80Compliance_baseline_low_initial_treat_cost,79 -100000,95720,42507,400.55369828666943,6861,70.57041370664437,5360,55.51608859172587,2158,22.294191391558712,77.36399481233721,79.7502159381527,63.33329461681414,65.09798371919472,77.10169457545608,79.48417261241146,63.2371747601324,65.00236073630107,0.2623002368811313,266.04332574125067,0.0961198566817458,95.62298289364436,110.29018,77.19827677879707,115221.66736314252,80650.10110613985,269.31002,168.19221502183655,280867.9063936481,175228.74532160105,298.89901,143.49817164922223,308961.2306727956,147334.16544983545,3550.01419,1597.0030344988868,3679746.5211032177,1639408.916108322,1277.14172,555.491562085203,1322146.3435018803,568228.501969497,2127.67354,881.7105593438557,2198785.5411617216,899323.1345083849,0.38083,100000,0,501319,5237.348516506478,0,0.0,0,0.0,22595,235.5516088591726,0,0.0,27640,285.63518595904725,1914243,0,68788,0,0,4334,0,0,57,0.5745925616381111,0,0.0,0,0.0,0,0.0,0.06861,0.1801591261192658,0.3145314094155371,0.02158,0.3176274944567627,0.6823725055432373,25.0206610617886,4.548808445052464,0.3207089552238806,0.2149253731343283,0.2313432835820895,0.2330223880597015,10.95596027262274,5.387566490208865,22.94407644420705,12790.818720911451,60.31240424958517,13.583836276382709,19.27544167054992,13.754129488212545,13.698996814439983,0.5410447761194029,0.7586805555555556,0.6951716114019779,0.5645161290322581,0.1048839071257005,0.7139753801593048,0.905,0.860730593607306,0.7212543554006968,0.15625,0.4810253832621262,0.6808510638297872,0.6385636221701796,0.5173137460650578,0.0916414904330312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0046751244840629,0.0070758547876228,0.0094924487265483,0.0116913246097804,0.0136214520039937,0.0159941246072871,0.018168634339638,0.0204760005318441,0.0224454479361861,0.0245708308550567,0.0266922737216157,0.0286158055524125,0.0309631018742722,0.0328699546941597,0.0347708309639264,0.0368766703267107,0.0387999916983168,0.040715562762463,0.0427467077846307,0.0573018923096202,0.0712551285271707,0.0846673520340725,0.0968369471492565,0.1093942683685192,0.1245374775346231,0.1379975823383454,0.1509387798521355,0.1620833956060379,0.1729293492240418,0.1862086776859504,0.1997836785463198,0.212388418340165,0.2235599002755544,0.2339852171234986,0.2444924166943429,0.2546957258856072,0.2645772184924035,0.2734472507772256,0.2816757883166548,0.2896121771516476,0.2977725811166326,0.3047116329163362,0.311074352427871,0.3180062199329413,0.3240213829970684,0.3299510803608292,0.335282601510259,0.3403212456675806,0.3453064881673958,0.3455533291195417,0.3460687437296428,0.3465299174158331,0.3467348294486324,0.3467234522466908,0.3456395837471921,0.3446092133731305,0.3463350785340314,0.3470677408915157,0.3475694568279895,0.3482415544022034,0.3491668149202396,0.3495233106338397,0.3505425035868005,0.3520937056545686,0.353607196088173,0.3546440115563946,0.3572350810895922,0.3603885818872971,0.3641204991654082,0.3658258969222364,0.3656621392190153,0.3654674436280719,0.3642500958956655,0.3678248453117563,0.3720595295247239,0.3673405909797823,0.3686169113086624,0.3722955886484967,0.3768686073957514,0.0,1.854335664723484,61.294784009872224,195.28858761351145,304.7154489776118,fqhc7_80Compliance_baseline_low_initial_treat_cost,80 -100000,95664,42510,400.12962033784913,6867,70.54900485030942,5306,54.82731225957518,2128,21.815939120254225,77.31725194233033,79.72493491175379,63.30264576078415,65.08466559950193,77.04842156884087,79.45899757374687,63.20448149810734,64.99067035122236,0.2688303734894646,265.9373380069212,0.0981642626768106,93.99524827956895,109.54218,76.74812062311221,114507.21274460612,80226.75261656655,266.5075,166.57935235418375,277974.50451580534,173517.0830763754,297.34711,142.76626610215973,307464.43803311593,146508.24913202308,3503.38414,1579.8870528412524,3623431.8447900983,1612870.717807078,1271.0651,554.1073640975541,1312678.0293527346,563280.9028467215,2094.28896,867.3340290237795,2150503.345040977,873012.4787939994,0.38117,100000,0,497919,5204.873306573006,0,0.0,0,0.0,22447,233.9960695768523,0,0.0,27455,283.5235825388861,1917197,0,68782,0,0,4340,0,0,63,0.6585549422980431,0,0.0,2,0.0209065061046997,0,0.0,0.06867,0.1801558359786971,0.309887869520897,0.02128,0.3280511537392271,0.6719488462607729,25.32315502560464,4.531816932681102,0.3318884281944968,0.2103279306445533,0.2310591782887297,0.2267244628722201,11.17588313616353,5.577398472489547,22.60242571850002,12821.116762276491,59.85515129760832,13.11164635102103,19.909587512920243,13.613998629836049,13.219918803830986,0.5544666415378816,0.782258064516129,0.676320272572402,0.5807504078303426,0.1379883624272651,0.7179681576952237,0.9429347826086956,0.8364485981308412,0.6964285714285714,0.1934156378600823,0.5003762227238525,0.7032085561497327,0.6249062265566392,0.5465116279069767,0.1239583333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023807835310565,0.0045530598793287,0.0066776946730669,0.0089727565568189,0.0111003713689779,0.0132525211368035,0.015485687470671,0.0178571428571428,0.0202983364367416,0.0224266702183245,0.0244485482712629,0.0269017746128631,0.0292240545158833,0.0312393677894281,0.033411137734446,0.035561303673047,0.0373499471316318,0.039297137872305,0.0412942828902876,0.0433336808089231,0.0581727002037298,0.0719005581560952,0.084992021499958,0.0969897202260077,0.1091816388323293,0.1249140111547375,0.1385466085055348,0.1512427850312027,0.1631737006914683,0.1739256366796112,0.187180232871253,0.2003442079968826,0.2129681021254366,0.2244028984872698,0.2339872448698602,0.2448129100904415,0.2541512297460161,0.2643750562404391,0.2743369858662855,0.2833966843744275,0.2911537393557941,0.2988960097300837,0.3065331391976514,0.3135578997842244,0.3192260009237426,0.3251002405773857,0.330527476106372,0.3355521050755994,0.3405217075950679,0.3456531201772783,0.3460197833254828,0.3463104045765835,0.3462610115110748,0.3464910380287996,0.3472528126674207,0.345923537540304,0.3448182913680472,0.3458344979530096,0.3461591056716009,0.3467452451111706,0.3481082703382041,0.3495230178521949,0.3504131536342801,0.3505217098619993,0.3521726507306687,0.3537784068569631,0.3550067252382451,0.3575552961221721,0.3596695615335734,0.3597716749161743,0.3635321100917431,0.3657714530280334,0.3704597409194818,0.3751057773674898,0.3783450370089201,0.3779424065001792,0.3781643112284516,0.3720213640098603,0.3707742639040349,0.3731513083048919,0.0,2.5145571302668763,57.70525653243687,203.51332664684895,299.4429371851608,fqhc7_80Compliance_baseline_low_initial_treat_cost,81 -100000,95853,42605,401.1455040530813,6868,70.4933596235903,5395,55.67900848173766,2170,22.19022878783137,77.4717338221379,79.75699741462019,63.40399372213196,65.09043473416436,77.20353773087625,79.49332725421745,63.3062764584173,64.99779529389966,0.2681960912616574,263.6701604027394,0.0977172637146566,92.63944026470485,109.99912,77.06287278806437,114758.14006864678,80396.93362551444,270.14969,168.51474335159142,281245.8764983882,175213.77875662883,300.7193,143.7901148975979,310524.6679811795,147547.71363045092,3523.42049,1582.727061084634,3636213.013677193,1611557.1041956246,1288.61851,558.8214586202389,1325618.812139422,564247.7007712218,2121.78062,873.2134277361707,2171047.812796678,873686.3378205613,0.38196,100000,0,499996,5216.2790940294,0,0.0,0,0.0,22680,235.9863541047229,0,0.0,27832,287.1167308274128,1918683,0,68836,0,0,4332,0,0,62,0.6468237822499036,0,0.0,0,0.0,0,0.0,0.06868,0.1798094041260865,0.3159580663948748,0.0217,0.3219681219681219,0.678031878031878,25.156761079362184,4.504712787922579,0.3338276181649676,0.2063021316033364,0.2407784986098239,0.2190917516218721,11.315048235626296,5.856866370551565,22.94366826928279,12827.85774319691,60.65710163618832,13.098220451043876,20.4221195546953,14.309958367768534,12.826803262680606,0.552548656163114,0.7484276729559748,0.7040533037201555,0.567359507313318,0.1209813874788494,0.7305433186490455,0.9164420485175202,0.8559837728194726,0.7194244604316546,0.15,0.4924373915199603,0.6644204851752021,0.6467889908256881,0.5259549461312438,0.1143451143451143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025002530620508,0.0045891541976071,0.0066620698047009,0.0088814453917986,0.0111373059100886,0.0133690111611912,0.0154836606633526,0.0178602392925264,0.0200561654327291,0.0222329034699283,0.0244679325672381,0.0265114609507204,0.0286509697567389,0.030671879823027,0.0327385554215501,0.0345931433292028,0.0365972236588948,0.0384200816698795,0.0404872172955909,0.042429855965365,0.0570195105164916,0.0711112040396014,0.0848093571174041,0.0970629958493143,0.1093590243593932,0.1250317178381121,0.1378520529351883,0.1501031892938448,0.1624408835178443,0.1729718143821669,0.1875228647055025,0.2008299024216293,0.2134474035632471,0.2248954774198478,0.2351978741160451,0.245695086098278,0.2556298028733712,0.265824632311665,0.2753669142960681,0.2836269678850309,0.2910503769903125,0.2985476815398075,0.3061472699792178,0.3129582012796747,0.3192658547236644,0.3252923076923077,0.3312343041343378,0.336695289873482,0.3420773646377411,0.3464703791001146,0.3471223263380073,0.3473834417277243,0.3472046546926385,0.3467881443893438,0.3472761780492868,0.3465804913824716,0.3460080848913592,0.3462187075331139,0.3474713407259782,0.3480063341814494,0.3487363541199342,0.3494538858877804,0.3507777870703353,0.3519105437014552,0.3533064786841222,0.3546768574845318,0.3549550061032731,0.3575588677354709,0.3597953572547245,0.3625694143594187,0.3663911845730027,0.3666613680919832,0.3709636730575176,0.3723852578346487,0.3747380453419699,0.3779640718562874,0.3806609547123623,0.3848637739656912,0.3810434307566239,0.3727134146341463,0.0,2.3987315691613498,59.78500004720184,203.91410505562504,301.61778317837855,fqhc7_80Compliance_baseline_low_initial_treat_cost,82 -100000,95734,42608,399.48189775837216,6794,69.69310798671319,5327,55.006580734117456,2149,22.07157331773456,77.34438518034166,79.69712119721608,63.33412346583962,65.0723126924055,77.07372375791066,79.42755597581748,63.23311893090921,64.97433699495636,0.2706614224310044,269.56522139859374,0.1010045349304107,97.9756974491437,108.76712,76.28290343048197,113613.88848267074,79682.14367986501,267.5042,167.77872419684914,278798.32661332446,174628.98677256683,299.4144,144.47903927638973,308480.5084922808,147544.75775038847,3521.18277,1601.1597165252265,3640350.1681743166,1634918.9150836049,1260.62738,554.2180763234527,1301282.26126559,563463.3413876508,2110.16268,891.4685249218481,2169920.2164330333,900669.7904911088,0.38198,100000,0,494396,5164.267658303215,0,0.0,0,0.0,22565,235.0471096997932,0,0.0,27611,284.17281216704623,1918466,0,68837,0,0,4337,0,0,62,0.6476278020348049,0,0.0,0,0.0,0,0.0,0.06794,0.1778627153254097,0.3163085075066235,0.02149,0.3188324445691832,0.6811675554308168,25.08692724246154,4.486888533061628,0.3302046179838558,0.213065515299418,0.2258306739252862,0.2308991927914398,11.20631149387754,5.721436261678951,23.015079840100963,12857.2039244475,60.28212511316303,13.492861566172696,19.897205896797903,13.36161547563182,13.530442174560608,0.5526562793317064,0.7779735682819383,0.7077885162023877,0.5785536159600998,0.0975609756097561,0.709585121602289,0.9097938144329896,0.8706140350877193,0.7359154929577465,0.1222222222222222,0.4968185288877577,0.7095046854082999,0.6508058326937836,0.529923830250272,0.090625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024512783112515,0.0049172183751888,0.0075284854757049,0.0100037577567208,0.0124956788742704,0.014506326794458,0.0165100589062595,0.0188376958008061,0.0211196370732903,0.0232988846822879,0.0255553733912615,0.0276916760751308,0.0298895720660511,0.0321417905067919,0.0343621696341991,0.0363033234126984,0.0384539742674078,0.0405898701621935,0.0426617613435596,0.0447888673624565,0.0595586085939783,0.073076037589736,0.086394243879927,0.099124015437519,0.1113302050930563,0.1263256954944857,0.1389298403775786,0.150886787032801,0.1625885142423821,0.1735983788478239,0.1871790178619494,0.2002704895861509,0.2124323031080758,0.2239070306435919,0.2346393294762082,0.2454436742919148,0.2552878015023495,0.2650198539916084,0.2741633472917305,0.2833925094490894,0.291505612776299,0.2996160868954539,0.3065520589140678,0.3125937481250375,0.3180492074297384,0.3238569030219237,0.3292786918138041,0.3352168367346939,0.3403485098156245,0.3449475048263825,0.3454547906048594,0.3454289965283518,0.3457105370822341,0.345939530777358,0.346258077965395,0.3461254839304369,0.3453672953776238,0.3457854721390251,0.3473561603946489,0.3490674113056242,0.3503106989317964,0.3504583160103739,0.3518456305379414,0.352682478066731,0.3538134569869101,0.3547291116744636,0.3569367876831671,0.3584649399873658,0.3617006275118099,0.3637597827823031,0.3646290204678362,0.3670635980135633,0.3680121281030888,0.3688238860260685,0.3705373919579106,0.3682092555331992,0.3706830391404451,0.3740190004130524,0.3717555121406642,0.3713163064833006,0.0,2.535145084026824,61.22721279149116,198.1387005413611,297.30707618383764,fqhc7_80Compliance_baseline_low_initial_treat_cost,83 -100000,95660,42400,399.74911143633705,7007,71.83775872883128,5508,56.89943550073176,2242,22.998118335772528,77.28108161739658,79.66885133511153,63.29287913429015,65.05580485855856,77.00805742194501,79.39658718730946,63.19314465729262,64.9596601809848,0.2730241954515691,272.264147802062,0.0997344769975328,96.14467757376131,108.51434,76.10077764746619,113437.29876646456,79553.17860073822,267.32492,166.23903090621647,278740.8634748066,173075.5425743344,297.16645,142.75049515607876,306385.85615722346,146021.69471526914,3655.64381,1645.0985837217224,3779541.459335145,1678406.1641023397,1356.97675,586.949283640712,1404400.480869747,599600.9281165154,2208.01784,910.7315565363684,2266988.7309220154,916404.6398417592,0.38185,100000,0,493247,5156.240853021117,0,0.0,0,0.0,22426,233.7026970520594,0,0.0,27603,284.29855739075896,1920348,0,68912,0,0,4303,0,0,51,0.5226845076311938,0,0.0,0,0.0,0,0.0,0.07007,0.1835013748854262,0.3199657485371771,0.02242,0.3246329526916802,0.6753670473083198,25.118469947650336,4.586707450448541,0.3286129266521423,0.2080610021786492,0.2231299927378358,0.2401960784313725,11.40980564257558,5.730570690452224,23.80076709592203,12898.755117113711,62.26203286558978,13.358958314490824,20.78925399175392,13.718809655796807,14.395010903548238,0.5490196078431373,0.7556719022687609,0.7121546961325966,0.5842148087876322,0.1141345427059712,0.7205363443895554,0.9217877094972068,0.8538011695906432,0.7589928057553957,0.1567164179104477,0.4896113419701784,0.6802030456852792,0.6561295296838859,0.5331230283911672,0.1033175355450237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021070759256445,0.004328916554304,0.0065559130072967,0.0089402728815109,0.0112177857331733,0.0132682986436397,0.015529090278769,0.0178053661126311,0.0202300025555839,0.0223441386298733,0.0245870543724559,0.0266438046737032,0.0286918963389551,0.0307657434882954,0.032592653752077,0.0345544216632029,0.0365033820528491,0.038662736387603,0.040414443092095,0.0425696029686148,0.0574861560965416,0.0716671727907683,0.0852482075937142,0.0984353462335721,0.1109469796887364,0.1260064114093462,0.1400271773748354,0.1515880962017766,0.1634359396550802,0.1745246045977258,0.1884747298259237,0.2011551548514336,0.213442522977741,0.2247237765683687,0.2354230938739532,0.2464290467107306,0.2568794009165083,0.2664323611909026,0.2755991409188532,0.2837876581153453,0.2911317606710849,0.2991211624091868,0.3071841942981832,0.3137513962789915,0.3204084364769311,0.3263215070488606,0.3315739324490359,0.3370618845977246,0.3424506380382433,0.3482565989780519,0.3492698215419532,0.3502319416832339,0.3504274714075416,0.3501829162069566,0.350337494773311,0.3491877922717204,0.3487828905554849,0.3504741485940463,0.3509178644411244,0.3516363310320093,0.3528337068916806,0.3542504479394784,0.3547773929205035,0.3561764307942092,0.3571151515151515,0.3593078133193497,0.3621719405042209,0.3659286982999238,0.3683634179942774,0.3703171179806694,0.3711614263452195,0.3733497247314127,0.3766588354816179,0.377279316395819,0.3782969103240391,0.3772743279727668,0.3788972508063277,0.3798905331441313,0.3797814207650273,0.3767096522078937,0.0,2.555014255416997,62.3073747426226,202.83872204569224,314.0779596649811,fqhc7_80Compliance_baseline_low_initial_treat_cost,84 -100000,95728,42489,400.0083570115327,6976,71.60914257061675,5460,56.48295169647334,2187,22.469914758482368,77.3612597271838,79.72819530158941,63.34108899169471,65.08959696101634,77.08187473852969,79.44755730702022,63.23755710149101,64.98823664836812,0.2793849886541153,280.63799456919014,0.1035318902037047,101.3603126482252,110.33836,77.24131255301066,115262.36837706836,80688.31747556687,268.5538,168.21258580141566,280004.0322580645,175184.94672553035,301.58184,145.30391111812682,311800.7061674745,149240.91905086895,3588.50628,1633.9349505537643,3712971.293665385,1671174.4009628992,1299.91026,576.6856350277477,1339262.6399799432,583773.4159729291,2147.78642,905.0986387906798,2208070.762995153,914933.6342661156,0.3806,100000,0,501538,5239.198562594017,0,0.0,0,0.0,22655,236.08557579809465,0,0.0,27922,288.4318067858934,1913299,0,68713,0,0,4380,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.06976,0.183289542827115,0.3135034403669725,0.02187,0.3217059544897125,0.6782940455102875,24.848751215349985,4.511746851254724,0.3362637362637363,0.2076923076923077,0.2285714285714285,0.2274725274725274,11.256047493330174,5.837460044562793,23.29456803926574,12780.02957657881,61.85904300588695,13.352465745544752,20.871504966204856,13.98674918688315,13.648323107254184,0.5481684981684982,0.7530864197530864,0.7037037037037037,0.5793269230769231,0.0998389694041868,0.7165963431786216,0.926027397260274,0.8941908713692946,0.6976744186046512,0.145985401459854,0.4888558692421991,0.6710013003901171,0.6358936484490398,0.5417106652587117,0.0867768595041322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024918710304798,0.0047347716765349,0.0068498711209433,0.0091739391045503,0.0112478389097935,0.0133093012362273,0.0154181877511063,0.0176341450962373,0.0199167748729641,0.0218058968058968,0.0241354208319235,0.0263855223696643,0.0284480098734958,0.0306576561727377,0.0325679789484546,0.0345918451740964,0.0366389130524833,0.0387489103814702,0.0408347891190416,0.0430202754797974,0.0570086139389193,0.0712267113250994,0.0845379209063253,0.0969821240799158,0.1087254405936419,0.124616783305495,0.1376988335100742,0.1500031922364808,0.1617138096051956,0.1722285947064309,0.1855153923183771,0.1987753689038902,0.2114378907311769,0.2227688136779045,0.2332347411129559,0.2446560026567775,0.2545142258060918,0.2645772676686489,0.2732159259721261,0.2812049185958645,0.2896349925980755,0.2969959088252484,0.3039656437072616,0.3102775082941085,0.3170391400354274,0.3232829171640597,0.3297372302922719,0.3353387092671262,0.3400132129486897,0.3447109796047765,0.3451351278527739,0.3458390083508743,0.3456569214512152,0.3461927906034832,0.3468965722447036,0.3466004079817175,0.34654500522764,0.3473940110711411,0.3488217099304476,0.3494751524472023,0.3499830998610433,0.3515165952040654,0.3525883838383838,0.352970230344394,0.354893328818151,0.3559250794651535,0.357941641512146,0.3598145678541944,0.3620836286321757,0.3641618497109826,0.3681265764732859,0.3696230834752981,0.371347428210792,0.3704127565423056,0.3704782486141125,0.3694826767916468,0.3723029839326702,0.3711843711843712,0.3677546426561621,0.3609443777511004,0.0,2.144913864343932,62.67235041050777,205.67261122464583,304.6545140407157,fqhc7_80Compliance_baseline_low_initial_treat_cost,85 -100000,95664,42066,397.7776384010704,6754,69.57685231644088,5305,55.00501756146512,2116,21.857752132463624,77.2430810454354,79.64781563202408,63.27207635196621,65.05016540380657,76.97936374508402,79.38109032437822,63.17543462434411,64.95422483971429,0.2637173003513879,266.72530764585645,0.0966417276220994,95.94056409228811,108.93938,76.348406703868,113877.09065061048,79808.9215419259,264.99327,165.55153031952844,276514.71818029776,172565.75129571048,292.13032,139.50933503094365,302351.636979428,143465.3458812687,3481.11306,1560.80858314756,3611997.574845292,1604654.711435398,1275.30338,550.6397459816286,1319664.3460444892,562156.8947947435,2081.0402,865.6442126374764,2150499.393711323,883417.0871459771,0.37716,100000,0,495179,5176.231393209567,0,0.0,0,0.0,22340,233.02391704298375,0,0.0,27051,279.7708646930925,1916825,0,68815,0,0,4328,0,0,53,0.5540224117745443,0,0.0,1,0.0104532530523498,0,0.0,0.06754,0.1790751935518082,0.3132958246964761,0.02116,0.3291995490417136,0.6708004509582863,25.10753132415012,4.515400722219382,0.3362865221489161,0.2163996229971724,0.2145146088595664,0.2327992459943449,10.940425392452337,5.422497173420665,22.576348959664948,12729.955097287557,59.93982885477541,13.545396407872255,20.15574745715508,12.648120053458651,13.59056493628942,0.5485391140433553,0.7587108013937283,0.6911434977578476,0.5720562390158173,0.1255060728744939,0.7068702290076336,0.926829268292683,0.8538283062645011,0.7182539682539683,0.1356589147286821,0.4966207759699624,0.6790757381258024,0.639320029563932,0.5304740406320542,0.1228249744114636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019154370034052,0.0042805266467855,0.0065277199679197,0.0088499171907863,0.0110768667419364,0.0133000661948164,0.0154167728778995,0.0176339650383924,0.0196846367801047,0.0217605013619513,0.0238537190675923,0.0259404171416248,0.0281162907886753,0.0299474605954465,0.0318638329497011,0.0334715486666184,0.0355000776920288,0.0373753204562674,0.0391812196415755,0.0411150261660029,0.0563009404388714,0.0701133292833651,0.083493433277692,0.0961182216234422,0.1084601904440174,0.1241637025745257,0.1374244468286257,0.1501487095845725,0.1626297207660212,0.1741446336905861,0.1882727370805912,0.201170668256463,0.2127555299012187,0.2237200897990472,0.2342392981528016,0.2450933620316643,0.2554426218509946,0.2650563026252014,0.2732295728691777,0.2812403243007694,0.2891879049175388,0.2965778131734283,0.3046002203556492,0.3114492457969832,0.3161264408388816,0.3220885419240081,0.3272829904666332,0.3327166951596029,0.3381136094982009,0.3424940428911834,0.3425713437187829,0.3422649419422456,0.3429419245442984,0.3431093971991069,0.3433038444898629,0.343302171105234,0.3426971653994209,0.3428279094329658,0.3443039277931259,0.3453041152928086,0.345936869115677,0.3464135609425731,0.348697521497218,0.3509182571119913,0.3528301886792452,0.3542340352814365,0.3549726145863361,0.3585666222306862,0.3606452756603439,0.3631750634287785,0.3640987699990752,0.3666290140390511,0.366233103800051,0.3714549938347719,0.3763862332695984,0.3814271984622777,0.3768639146130905,0.3783839636288489,0.3756628523583589,0.381789761625635,0.0,1.6459728279680907,58.453576370713016,202.39789873096203,303.0443503136185,fqhc7_80Compliance_baseline_low_initial_treat_cost,86 -100000,95818,42535,399.3821620154877,7041,72.2828696069632,5489,56.701246112421465,2238,22.970631822830786,77.44904619750217,79.77555745744543,63.38601454967061,65.10691278979242,77.1764550588405,79.50318963522737,63.28605658077622,65.00954297091853,0.2725911386616673,272.3678222180581,0.0999579688943939,97.36981887388652,110.07854,77.0868437015785,114882.48554551338,80450.90499603446,271.1578,169.01213911389164,282408.7019140454,175805.96051207956,299.40277,143.0813486235985,309271.32689056336,146830.14315874304,3568.04049,1610.9528158039732,3686970.6005134736,1644582.5937738337,1347.9424,584.4639865160676,1390456.1982091048,593708.8384253944,2188.81956,907.2793589140722,2247995.867164833,914962.7642178,0.38189,100000,0,500357,5221.931161159699,0,0.0,0,0.0,22797,237.3144920578597,0,0.0,27853,287.4407731323968,1919513,0,68863,0,0,4426,0,0,44,0.4592039074077939,0,0.0,0,0.0,0,0.0,0.07041,0.1843724632747649,0.317852577758841,0.02238,0.3130399568034557,0.6869600431965442,25.275011284638857,4.429311815960679,0.3246492985971944,0.2229914374202951,0.2306431043905993,0.2217161595919111,11.13446805562604,5.7300828992078845,23.611826044935388,12882.037954625765,61.81653854822248,14.45180707737008,19.928703320315662,14.234996669723536,13.201031480813176,0.5647658954272181,0.7843137254901961,0.6952861952861953,0.5860979462875198,0.1306491372226787,0.7160493827160493,0.91644908616188,0.8426150121065376,0.7379518072289156,0.1686746987951807,0.5141050583657587,0.7241379310344828,0.6508400292184076,0.5321199143468951,0.1208677685950413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024913158401101,0.0050581330522133,0.0072245390804947,0.0096098170477748,0.0117860011999552,0.0140612749839634,0.0162515420613154,0.018452933791935,0.0208277976494634,0.0233805036273035,0.0254444842957421,0.0275759441707717,0.0297800164473684,0.0316904671203681,0.0336320788770742,0.0356729616926319,0.0377247182289564,0.0396607322459898,0.0418480462946609,0.0436914428482198,0.0583952265709755,0.0733216933097744,0.0868694914010836,0.1000052529285076,0.1124340157413943,0.1280685624914138,0.1407931140485705,0.1532269213182045,0.1650930815597162,0.1758457106753906,0.1888590170986127,0.2018756009810171,0.213491563701114,0.2243697478991596,0.2347793625174303,0.2455502244234638,0.2558732775617961,0.2661839003031324,0.2748281757758982,0.2830906722132065,0.2909166483852717,0.2981524492011064,0.3056755672025875,0.3118423569925387,0.318412663781923,0.3242877694303385,0.3290565755151454,0.3349321152138053,0.3399850175656127,0.3455677212191398,0.3456848156007414,0.34611477210324,0.3466391277468667,0.346816058141547,0.3474473317727932,0.3470873786407767,0.3464328518261528,0.347321063394683,0.3484299208577993,0.3502357441508762,0.3512912508876182,0.3534002009971033,0.3552859981177454,0.355929171883384,0.3576905511621758,0.3579062329354864,0.3586770738377393,0.3610316986585404,0.3629864412748723,0.3657199602780536,0.3654970760233918,0.3676290090186243,0.3693351080687076,0.3696367112810707,0.3715396283655669,0.3762340906387534,0.37442218798151,0.3741287412874128,0.3710883411797286,0.372985418265541,0.0,2.2177210594208936,60.601866996257634,209.02556107074776,308.21274891940334,fqhc7_80Compliance_baseline_low_initial_treat_cost,87 -100000,95815,42498,399.8538850910609,6800,69.88467358973021,5348,55.32536659186975,2212,22.793925794499817,77.3497797498425,79.68438843734259,63.33168066437421,65.06055687577795,77.08288672213146,79.41470576966651,63.23526516982424,64.96498682397117,0.2668930277110348,269.6826676760793,0.0964154945499728,95.57005180677436,110.1529,77.11858622678187,114964.14966341387,80486.96574313194,267.90555,167.25070627776878,279124.46902885765,174073.966372701,293.78528,140.79833470804482,303362.9494338047,144385.34078068944,3546.54312,1586.0408908847571,3673312.571100558,1627179.68051428,1278.57401,552.5580292141664,1323714.4810311538,565987.6315964786,2183.10276,892.2146526710642,2251581.5895214737,908806.1404626888,0.38122,100000,0,500695,5225.643166518812,0,0.0,0,0.0,22578,235.13019882064395,0,0.0,27139,280.01878620257787,1915394,0,68715,0,0,4359,0,0,51,0.5218389604967907,0,0.0,1,0.0104367792099358,0,0.0,0.068,0.1783746917790252,0.3252941176470588,0.02212,0.3200670297444491,0.6799329702555509,24.989489901786754,4.532282554073,0.3290949887808526,0.206619296933433,0.2213911742707554,0.2428945400149588,11.198938520667316,5.605592773315811,23.227426512182287,12836.140159611266,60.05499650079731,12.923111558847662,19.89588706696395,13.101818815586684,14.134179059399012,0.5416978309648467,0.7592760180995475,0.6994318181818182,0.5793918918918919,0.1085450346420323,0.7219696969696969,0.9262295081967212,0.8741721854304636,0.71875,0.1387755102040816,0.4826216484607746,0.6765899864682002,0.6388676358071921,0.540948275862069,0.1015180265654649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387908503353,0.0043598608900199,0.0065053687052185,0.0085848682806896,0.0106194690265486,0.0126571966804134,0.0149877650897226,0.0171187080836642,0.0195222666271451,0.021586710201742,0.0236081639347623,0.025617594513009,0.0277623542476402,0.0299033085168823,0.0321735452791846,0.0342636315729652,0.0362089311222905,0.0387403926937797,0.0406553902418751,0.0428318584070796,0.0573783318554066,0.0715316408047178,0.084748249696055,0.0970765641747756,0.1097363040408085,0.1252299494639798,0.137696607167478,0.1507108802996765,0.1618391541172701,0.1732340891053004,0.1869578803323025,0.1996233725473219,0.2118631162163338,0.2229254801648466,0.2343835947985654,0.2454511203209148,0.2560491071428571,0.2666119308979665,0.2762807057355194,0.2844449533405851,0.2930663520266519,0.3010745144808072,0.3081627824441026,0.3140304870017123,0.3201082931685464,0.3262074230968155,0.3311995198919757,0.3366698038816676,0.3418634151392772,0.3468919097268048,0.3470470955921974,0.3475601355633317,0.3479248050318013,0.3477454503303582,0.3482098995161891,0.3473577610016571,0.3472197985246292,0.3480728421260425,0.3488866050017129,0.3495691739963814,0.3514361982103917,0.3519944433419329,0.3529003637281079,0.3540507805490759,0.3552869653325613,0.3561091775050375,0.3583459635677314,0.3605384275896854,0.3625228134213112,0.3647674142166574,0.3685050864467862,0.3670056978539858,0.3668039277795375,0.3696993060909792,0.3682063928673053,0.3678941723274937,0.3645076518781883,0.3606424069932913,0.3638613861386138,0.365482233502538,0.0,1.9552859152315616,58.37107583079357,200.57992373261,306.14151816226587,fqhc7_80Compliance_baseline_low_initial_treat_cost,88 -100000,95806,42716,401.74936851554185,7053,72.42761413690165,5526,57.15717178464814,2173,22.35768114731854,77.41775944651599,79.74663822612587,63.37436231324406,65.0953896553553,77.14743348900963,79.473279888172,63.27602082983055,64.9980317290129,0.2703259575063583,273.35833795386577,0.0983414834135132,97.35792634241136,109.32196,76.54574803906182,114107.63417740016,79896.61194399287,268.41204,167.6543099067298,279654.4475293823,174485.95067817232,301.19044,143.95013008853968,310915.8612195478,147597.6885589378,3636.63205,1641.1127004533878,3761423.470346325,1678548.337738124,1321.03318,578.3219458178144,1365081.6754691773,589865.0221857565,2141.5672,885.8902588929785,2204447.007494312,899572.0181580872,0.38359,100000,0,496918,5186.71064442728,0,0.0,0,0.0,22578,235.13141139385843,0,0.0,27971,288.4996764294512,1922034,0,69008,0,0,4360,0,0,57,0.5845145397991776,0,0.0,0,0.0,0,0.0,0.07053,0.1838681926014755,0.3080958457394017,0.02173,0.3201943844492441,0.6798056155507559,24.852290438650343,4.520613177126188,0.3177705392689106,0.2245747376040535,0.2274701411509229,0.2301845819761129,11.295988464630742,5.811403575120933,22.995796365907253,12916.568922464878,62.349322451847456,14.710979571182545,19.94597541236776,13.903048828907028,13.789318639390132,0.5595367354325009,0.7945205479452054,0.7038724373576309,0.5727923627684964,0.1179245283018868,0.725531914893617,0.9249394673123488,0.8552631578947368,0.717687074829932,0.1619433198380566,0.5026724975704567,0.7294685990338164,0.6507692307692308,0.5285565939771547,0.1073170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024706609017912,0.004632398406536,0.0069202747815851,0.0091608945583067,0.0112462376962498,0.0133352335192801,0.0155335847518091,0.0177390381317873,0.020135325742554,0.0225672411675604,0.0249589995899959,0.0269970641975815,0.0291520615112609,0.0314198649316422,0.0334388501077508,0.0355718977876014,0.0376085359164622,0.0395828149622625,0.0414398504051527,0.0432374467730684,0.0575837567688824,0.0712650407184001,0.0847903563941299,0.0977216147228437,0.1106067467798502,0.1260868187244472,0.1400908869421522,0.152558950479471,0.1643318218191517,0.1758505441768789,0.1892031401225938,0.201935957823776,0.21357220412595,0.2244860078395405,0.2357290384953418,0.2465541273037014,0.2574791564492398,0.2673209513328991,0.2762663102573396,0.2846817173311375,0.2930438901533094,0.3003549660213446,0.3076114431504099,0.3139946855624446,0.3201956097028237,0.3265240786573578,0.3321834770653668,0.3378615361154882,0.3431195033626487,0.3486589028824366,0.3500557863182374,0.3498136509289948,0.3491777427348502,0.3496504506586549,0.3503454423891241,0.3499072981628181,0.349587705553709,0.3498276710979813,0.3513135448652337,0.3523388161415777,0.3530018181477385,0.3536188428382616,0.3543288955873733,0.3552420075013395,0.3579789027503492,0.3584403382398998,0.3591521168549583,0.3611041088984119,0.3626616985376827,0.3646665871406417,0.3678439256179467,0.370230026151465,0.3700373583233078,0.3683648566198901,0.366685616827743,0.369943584203577,0.3723321389624552,0.3756127450980392,0.3714285714285714,0.3703131039814457,0.0,2.0266877558455927,62.37206520297643,205.75238821194364,313.45929888083265,fqhc7_80Compliance_baseline_low_initial_treat_cost,89 -100000,95713,42540,401.9203243028638,6965,71.46364652659514,5389,55.63507569504665,2224,22.81821696112336,77.3893283971574,79.75038796026773,63.35181630130408,65.0936103650474,77.11426132781904,79.47639023010548,63.25060146538616,64.995793702119,0.2750670693383625,273.99773016225026,0.101214835917915,97.81666292839476,108.14056,75.73362310259152,112984.19232497152,79125.74373657866,264.9581,165.49732171261624,276142.185492044,172226.7369514714,293.8695,141.01284295461275,302736.2949651563,144042.19733152806,3582.76556,1610.1700273478618,3700012.69420037,1639241.9849899977,1324.77229,577.2210196847088,1365406.1726202292,584498.216228351,2193.70014,914.8298206408244,2252293.627824852,922011.5721297855,0.38251,100000,0,491548,5135.6451056805245,0,0.0,0,0.0,22240,231.6404250206346,0,0.0,27281,280.7560101553603,1927241,0,69099,0,0,4298,0,0,39,0.40746816002006,0,0.0,0,0.0,0,0.0,0.06965,0.1820867428302528,0.319310839913855,0.02224,0.3184556407447974,0.6815443592552026,25.23171280967614,4.516883662855146,0.3267767674893301,0.2119131564297643,0.2189645574318055,0.2423455186491,10.862097033544462,5.393210878270219,23.666873499324065,12873.890693303452,60.48667310971905,13.472436715312162,19.778566540667583,12.906984577424897,14.328685276314408,0.5312673965485247,0.7600700525394045,0.6871095968199886,0.5440677966101695,0.1094946401225114,0.7012987012987013,0.8940217391304348,0.8734793187347932,0.7364341085271318,0.1470588235294117,0.4767156862745098,0.6963824289405685,0.6303703703703704,0.4902386117136659,0.0996131528046421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023091647508026,0.0047736325215117,0.0066847225180812,0.0088949361818791,0.0111321215078687,0.0132931620625776,0.0155816892222403,0.0178057590661415,0.0196184617899802,0.021713104605593,0.0236909519417973,0.0258341199162802,0.0279692974794751,0.0298298524976582,0.0317630558534774,0.033905486261096,0.0359864170945834,0.0378184383038752,0.0396332907168917,0.0416488702301209,0.0567233691509246,0.0716909264045708,0.085074470316761,0.0979654066558014,0.1100440640087706,0.1254454890597404,0.1386051445239989,0.1509709151300941,0.1632890702618394,0.1742799545347316,0.1881393896319269,0.2014734040826923,0.2132582388309612,0.2241202073445462,0.2349581866197183,0.2466651894526922,0.2571721997722757,0.267022126233141,0.2762569515378504,0.2846372427700628,0.2926344036272786,0.2998842416659846,0.3066015421732343,0.3133091414268434,0.3201840654670843,0.3262071598339963,0.3318274537286163,0.3371323903531087,0.3421100347096306,0.347056727762163,0.347633653509834,0.348202250281973,0.3487694710625185,0.3487302597327471,0.3496009867590019,0.34951084709953,0.3492256829650252,0.3498942397560136,0.3510173426191451,0.352380442349917,0.3531108364235681,0.3545039435450394,0.3566663869776808,0.3569701312077381,0.3592752331156784,0.3595812827122881,0.3602222538823194,0.363067735344963,0.364963503649635,0.3679245283018867,0.3701508866298947,0.3713280375326545,0.3710994366732071,0.3709775812109196,0.3732614249219415,0.3750297548202809,0.3748657357679914,0.3773584905660377,0.3816901408450704,0.3855516293678838,0.0,2.551266902870296,57.236854473219104,205.94234957271223,306.9644165534968,fqhc7_80Compliance_baseline_low_initial_treat_cost,90 -100000,95684,42634,401.2060532586431,6873,70.76418209941056,5377,55.735546172818864,2180,22.45934534509427,77.35982293729873,79.73737256333476,63.33991942654043,65.09076062885813,77.09173740069424,79.46517568500573,63.24116730437105,64.99234694369956,0.2680855366044881,272.1968783290265,0.0987521221693867,98.41368515857596,109.71686,76.84440256711497,114665.83754859748,80310.60842681635,269.14689,168.2328257325741,280828.0276744283,175362.0518922433,298.92839,143.0193934939005,309475.77442414616,147223.26892894742,3543.25774,1608.8519099239063,3674426.82162117,1652789.44225148,1274.13037,561.3891771289271,1319873.228543957,574998.610809749,2137.37264,899.8594636647712,2203516.847121776,915259.8094444622,0.38182,100000,0,498713,5212.083524936249,0,0.0,0,0.0,22561,235.3057982525814,0,0.0,27639,285.9516742611095,1916583,0,68772,0,0,4328,0,0,64,0.668868358346223,0,0.0,1,0.0104510680991597,0,0.0,0.06873,0.1800062856843539,0.3171831805616179,0.0218,0.3261019759568882,0.6738980240431118,25.1226119773601,4.497056282237341,0.3358750232471638,0.215547703180212,0.217779430909429,0.230797842663195,11.03470708263291,5.585571330451998,23.31792928610341,12889.83116036131,60.70694584357887,13.75449289793646,20.18863339805168,13.14621441068127,13.617605136909466,0.5397061558489864,0.7627264883520276,0.6733111849390919,0.5636208368915457,0.1144238517324738,0.7018544935805991,0.911917098445596,0.8470066518847007,0.7003367003367004,0.1567164179104477,0.4825157232704402,0.6882276843467011,0.6154981549815498,0.517162471395881,0.1027749229188078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582735852878,0.0046117513505843,0.0069903109623091,0.0092624565822347,0.011611355132585,0.0139345513766603,0.0160690449260742,0.018375300983553,0.0205826472450918,0.0227003028071036,0.0249451922879914,0.0270838676583739,0.029487943758094,0.0314861720310537,0.0334914904589994,0.0355529832466901,0.0373924656045218,0.0395050716671161,0.0414804033683335,0.0436658468464713,0.0589630279666948,0.0726655916905744,0.0858033502665939,0.0983911867759551,0.1105415269075796,0.1258332804266395,0.1386506453804347,0.1518911837073804,0.1641384176261184,0.1754193901535885,0.1891056034482758,0.2018624796968056,0.21435955471887,0.2257877398242292,0.2366038982490915,0.2472333307485238,0.2575979106443296,0.2675353292336058,0.2761772978858542,0.2845955692941783,0.2916782343142698,0.2990535022755724,0.3061693037787429,0.3133146444316657,0.3197213693676201,0.3243972120286678,0.3307283526101907,0.3365844354018311,0.342176782709978,0.3464523281596452,0.3464902836841255,0.3466011533644383,0.3468204831680934,0.3473226160874342,0.3476284555623227,0.34772549680543,0.3472004310686382,0.3481857955853811,0.3494696437445379,0.3514370131614289,0.3528903579611614,0.3532768048181314,0.3538568187547265,0.3549956286847945,0.356499325496242,0.3561497326203208,0.3567318101532676,0.3583461913908745,0.3605215068878268,0.3619191838686538,0.3639690745230797,0.3683618843683083,0.3711261318709348,0.3707215541165587,0.3698421753185016,0.3697408077154913,0.3735107535200371,0.3726328649969456,0.3745592622728506,0.3686440677966102,0.0,1.730986801950587,62.258738918350616,197.3450057513236,303.746534158856,fqhc7_80Compliance_baseline_low_initial_treat_cost,91 -100000,95861,42481,400.5174158416874,6968,71.47849490407987,5426,56.10206444748125,2224,22.80385140985385,77.34109898624328,79.63130975302927,63.34986309044478,65.04390794960773,77.05911988810276,79.35114821462524,63.24501114240061,64.94272323738656,0.2819790981405248,280.16153840403035,0.1048519480441712,101.1847122211691,109.79452,76.96996119803774,114535.12898884845,80293.3009232511,267.74744,166.7579744433951,278807.24173542944,173457.3439077364,290.85928,139.45479368619857,300900.4913364142,143492.40865506174,3609.47667,1629.2557165353944,3732876.894670408,1667155.7427268594,1320.33175,581.4043279840488,1362147.4426513389,591315.2773119922,2189.92172,923.3446936170512,2247976.132107948,930649.6946205958,0.38191,100000,0,499066,5206.142226765838,0,0.0,0,0.0,22557,234.77743816567735,0,0.0,27010,279.331532114207,1917618,0,68822,0,0,4441,0,0,38,0.3859755270652298,0,0.0,0,0.0,0,0.0,0.06968,0.1824513628865439,0.3191733639494833,0.02224,0.3223388305847076,0.6776611694152923,25.007413618685323,4.507256822304364,0.3380022115739034,0.1988573534832289,0.2231846664209362,0.2399557685219314,10.780934436725056,5.377294507542066,23.96878317625933,12827.880316225956,61.42588770096394,12.732805960069644,20.74167606399613,13.688961670027425,14.26244400687076,0.5407298193881312,0.7534754402224282,0.6842966194111232,0.5928984310487201,0.1136712749615975,0.6909620991253644,0.913793103448276,0.8387799564270153,0.7073170731707317,0.1510791366906475,0.4898865318204243,0.6771545827633378,0.6327272727272727,0.5573593073593074,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682395828059,0.0043165030245919,0.0067654606497682,0.0089954718053891,0.0108755310714939,0.0131787836847675,0.0150778854284462,0.0170976791634787,0.0192838028312871,0.0212465603486195,0.023344191096634,0.0254046070849828,0.0274239934264585,0.0294880237056547,0.0317371995012725,0.0337193460490463,0.0359118592892078,0.0379323206995876,0.0399294019933554,0.0418040888518961,0.0566759823141736,0.0706193432411529,0.0841556156118408,0.0976642090448883,0.109519797809604,0.1249366232888288,0.1382832199690632,0.1507331440662647,0.1630096051227321,0.1742984543486183,0.1884814499897751,0.2012286128355432,0.2139354866765962,0.2247840822127473,0.2349335944806945,0.2461939058171745,0.257318230009486,0.2669292224597727,0.2761376147830331,0.2847635084825366,0.2925827354778986,0.3004152775340703,0.3074483444178836,0.3136206731230223,0.3196466328043357,0.3250925240562546,0.3306277869632747,0.3356853554780039,0.3400761973875181,0.3455035757247287,0.3456994902500202,0.3457366905086754,0.3456183456183456,0.345806320613787,0.3459300590797876,0.345519647165491,0.3461489557837185,0.3472197005958374,0.348120223094402,0.3492120666366501,0.3501616654376311,0.3523655785403962,0.3531475922715935,0.3546688958676939,0.3552468309773485,0.3571616918046619,0.3580960598216853,0.3610872947826363,0.3644909354348517,0.3659404357385569,0.3688340292754554,0.3702355460385439,0.3712669970771381,0.3723461332106997,0.3732951835956127,0.3759163562071866,0.3751356378855991,0.3815441026685679,0.3765945646145313,0.3879142300194931,0.0,1.978810641390716,60.72496741835885,204.23462466713733,309.9744763655228,fqhc7_80Compliance_baseline_low_initial_treat_cost,92 -100000,95652,42739,403.4730063145569,6923,71.30012963659934,5457,56.58010287291432,2208,22.77004140007527,77.31769350596971,79.74107192967467,63.289715480586615,65.08200906555263,77.04413546949837,79.4634870229723,63.18997056566505,64.98245590007505,0.2735580364713428,277.5849067023728,0.0997449149215654,99.5531654775732,109.22296,76.53355006983509,114187.8476142684,80012.49327754264,270.50273,168.86226881746606,282345.50244636805,176084.82709976376,304.46379,145.65741875459003,315141.57571195584,149793.60191326344,3575.21729,1610.417939526175,3709850.8656379376,1655738.7190295826,1332.46186,574.3340476428941,1383710.0949274455,591120.4863911833,2169.74762,896.4330268508878,2240022.268222305,914222.8933382996,0.38206,100000,0,496468,5190.3567097394725,0,0.0,0,0.0,22741,237.25588591979255,0,0.0,28178,291.5568937398068,1914068,0,68683,0,0,4341,0,0,55,0.5540919165307573,0,0.0,0,0.0,0,0.0,0.06923,0.1812019054598754,0.3189368770764119,0.02208,0.3181693238042881,0.6818306761957119,25.032594853091734,4.474872341478256,0.3197727689206524,0.2213670514934946,0.2296133406633681,0.2292468389224848,11.106040781590904,5.5845211021554535,23.35261841310604,12860.846670487086,61.5412342538281,14.29510040327939,19.680813396447835,13.960882142254016,13.604438311846868,0.5552501374381529,0.7872516556291391,0.6808022922636103,0.5905826017557861,0.1207034372501998,0.7313540912382331,0.9414758269720102,0.849015317286652,0.7448979591836735,0.1392405063291139,0.4955839057899902,0.7128834355828221,0.6211180124223602,0.543274244004171,0.1163708086785009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021679228462598,0.0044923538717397,0.0067208121827411,0.0088618786776288,0.0111611912053476,0.0134983700081499,0.0156999163487238,0.0177361844726652,0.0198745305128283,0.0220996740400582,0.0240209413334702,0.0260035370568396,0.0283081042117186,0.0305856139301224,0.0327110045770609,0.0347068440985947,0.0368066355624676,0.0387535705011685,0.0406893250359023,0.0425782634992804,0.0570058103080717,0.0708522810620507,0.0841210822619947,0.0969773565034228,0.1091786521362647,0.1247749560502404,0.1383744036044077,0.1509773827034171,0.1631135879854953,0.1742581275709115,0.1880770558288031,0.2019330790568654,0.2144708752668496,0.2260406741794526,0.2361155503631614,0.2469689070316919,0.2567504135187089,0.2662432003243572,0.2754794971667367,0.2838886405574849,0.2922433662655347,0.2992648608152085,0.3067025272212414,0.3132417351652967,0.3190728235079394,0.3247856922602528,0.3313382001227132,0.3369869640492922,0.3427745514881261,0.3478444799915392,0.3482032050936168,0.3485347404968242,0.3490196078431372,0.3494496912196462,0.3494364647455913,0.3489603314662779,0.3478033140752968,0.3482477480439213,0.3491553245332056,0.3492927094668117,0.350690416495154,0.3522063467003473,0.353398827774649,0.3539106581324293,0.3539292141571685,0.3551942468537481,0.3561686740126989,0.3592887606623181,0.3605205921560373,0.3634520591508984,0.3643691321273185,0.3644859813084112,0.3668631552259618,0.3674873833919559,0.3723896815647737,0.3734094422642407,0.3845325953259532,0.3805668016194332,0.3841901603095633,0.3785659213569776,0.0,1.874605537709256,61.327280155150085,205.5165675898085,307.6273222213701,fqhc7_80Compliance_baseline_low_initial_treat_cost,93 -100000,95721,42689,401.1032061929984,6996,71.78153174329562,5454,56.49752927779693,2249,23.1297207509324,77.34880342590687,79.70732740542903,63.338894218876014,65.07751691651883,77.06501321935163,79.42191258163884,63.23326515747968,64.97360697629678,0.2837902065552384,285.414823790191,0.1056290613963355,103.90994022205292,109.96414,77.00710064331253,114879.8487270296,80449.53630166058,269.29957,168.17547919169814,280839.33515111625,175195.0169749028,298.69406,143.137933071741,309224.6006623416,147280.3746338865,3594.145,1635.080315329034,3726498.762027141,1680088.0714210423,1317.49019,583.4550529047165,1363358.3748602709,596539.3495399263,2207.09386,934.0730534675362,2273637.5299046184,948584.5547775317,0.38279,100000,0,499837,5221.811305774072,0,0.0,0,0.0,22513,234.68204469238725,0,0.0,27728,286.96942154804066,1915007,0,68776,0,0,4395,0,0,61,0.6268217005672736,0,0.0,0,0.0,0,0.0,0.06996,0.1827633950730165,0.3214694110920526,0.02249,0.3280228758169934,0.6719771241830066,25.0779145161762,4.517630239728951,0.3371837183718372,0.2011367803447011,0.2317565089842317,0.2299229922992299,11.299882069026497,5.781548675613099,24.20002527857886,12883.836387946732,61.96154471752929,12.967413141884672,21.06470242352641,14.143494959083185,13.785934193035018,0.5586725339200587,0.7675478577939836,0.711799891245242,0.5862341772151899,0.1236044657097288,0.7064285714285714,0.9054441260744984,0.8485477178423236,0.7254901960784313,0.1596958174904943,0.5076467686235816,0.7032085561497327,0.6632277081798084,0.5417536534446764,0.1140262361251261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021568964993468,0.0044905323764343,0.0068895540561108,0.0089700220441085,0.0111741499918659,0.0133557286099658,0.0157990765184951,0.0181790343982851,0.0205916917888712,0.0227112225576991,0.024936965746264,0.0270641966439164,0.0291677376240168,0.0316061482709274,0.0337621076302569,0.0357925191155197,0.0377714043134778,0.0399153342533124,0.0418286926324107,0.0440123784814479,0.0594937237619833,0.07349924648359,0.0866162384464471,0.0995560324874805,0.1116162308690286,0.126700374452601,0.139006791171477,0.1522310829083398,0.1637515626168623,0.1744214738603813,0.1879417341837614,0.2013830270761638,0.2138054830287206,0.2243190022973416,0.2343638224579862,0.2452729811805909,0.2559054238272957,0.2654984853433034,0.2744743926125328,0.2832515703085599,0.2920112107103977,0.2998607258640263,0.3072632314451853,0.3135879729535318,0.3199426460581316,0.3256906179505195,0.3312983974880218,0.337103237707525,0.3423375614807145,0.3474749607421385,0.3482245131729667,0.3483771422273654,0.3478469439584626,0.3481742101757739,0.34854036341972,0.3472350088995274,0.3469837844699013,0.3472861842105263,0.3483540574795327,0.3488509555965537,0.3499662212880949,0.352274977230428,0.3532945451490264,0.3542948228638139,0.3552819026922612,0.3544452877594284,0.3553688195480096,0.3574637727013858,0.3598871053095784,0.3630919108839734,0.3651886532635637,0.3685683530678149,0.3665983868902829,0.3714219402754139,0.3749761222540592,0.3730225818137906,0.3786787726988103,0.3791449426485923,0.3795537983620446,0.3817607579944729,0.0,1.8558237238056456,62.177446686091805,211.01026267150172,302.18867804506283,fqhc7_80Compliance_baseline_low_initial_treat_cost,94 -100000,95638,42488,400.0920136347477,6994,71.80200338777473,5512,57.06936573328593,2305,23.693510947531315,77.26744378178137,79.6801964186722,63.28338998351626,65.06838859702748,76.9858925077802,79.40103215142578,63.1788459615443,64.96759945998093,0.2815512740011598,279.16426724641497,0.1045440219719608,100.78913704654724,109.46826,76.65851594883713,114460.1309103076,80154.09277992674,269.10704,168.78020116734578,280786.39243815216,175886.75343647233,300.41212,144.18101117088352,310616.7109308016,148061.1112405671,3650.54587,1660.1047655984844,3778020.713523913,1697214.1101351883,1336.22522,587.0757259795588,1383706.936573329,600400.9498362168,2265.11404,947.5839876340382,2329693.092703737,956889.0327575848,0.38095,100000,0,497583,5202.733223195801,0,0.0,0,0.0,22623,235.93132436897463,0,0.0,27987,289.14239109977206,1912821,0,68684,0,0,4310,0,0,42,0.439155984023087,0,0.0,1,0.0104560948576925,0,0.0,0.06994,0.1835936474602966,0.3295682013154132,0.02305,0.3228797382056176,0.6771202617943823,24.68292859696416,4.5318221027517405,0.3260159651669085,0.2151669085631349,0.2240566037735849,0.2347605224963715,11.148858514106772,5.677700297606814,24.575276064230167,12821.674854282364,62.68769427075231,13.969704416897418,20.3736248028467,13.945888537583942,14.398476513424251,0.5538824383164006,0.7765598650927488,0.6978297161936561,0.5902834008097166,0.1151468315301391,0.7100633356790992,0.9352331606217616,0.8747346072186837,0.7096774193548387,0.1333333333333333,0.4996333414813004,0.7,0.6349924585218703,0.555439330543933,0.110009910802775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0048367471101196,0.0072084145549057,0.0095317453865539,0.0119126339026846,0.0140648551757852,0.0162734261883883,0.0185606795373102,0.0204094153254667,0.0227547363031234,0.0247989826058418,0.0269243017247578,0.0289491281312689,0.031139230071717,0.0333508809958814,0.0355743484239147,0.0375652498135719,0.0394938968695507,0.041336842214756,0.0434542364752859,0.058034781154634,0.0719762034437973,0.0851466016970511,0.0980214596341964,0.1106712273811786,0.1262032085561497,0.1388499447701588,0.1512277261488618,0.1629762745223884,0.1737444687889333,0.1872903566767691,0.2002253374645201,0.2121578231292517,0.2233263655565648,0.2337921162739484,0.2445874975070357,0.2546889653016567,0.2647072067001373,0.2741523257795195,0.2823494335122242,0.2909571140613053,0.2983589671559332,0.3064802748489516,0.3125285120891258,0.3184423486461819,0.3252152005038841,0.3300162927685173,0.3357407619702701,0.3408645802259374,0.3452363626741463,0.3452109194548377,0.3462106265263042,0.3464820570782707,0.3462915971869789,0.3464924059320264,0.346065170611743,0.345764221306913,0.3461012762453684,0.3468072340790263,0.3471052159885284,0.3475902593366857,0.348915921715412,0.3506140017723762,0.3513288663039079,0.3522289754703731,0.3532890068592152,0.3542825999655786,0.3564284357789454,0.3585339943342776,0.3590237636480411,0.3607765011119347,0.3620848458579401,0.3678286596346797,0.3688378231503765,0.3688336520076481,0.3720508166969147,0.3730877302528879,0.3679519071310116,0.3705612829324169,0.3739376770538243,0.0,2.080086311539888,62.91838400738481,212.00599497389248,306.78831367548736,fqhc7_80Compliance_baseline_low_initial_treat_cost,95 -100000,95829,42409,398.1049577893957,6860,70.37535610305858,5400,55.67208256373332,2177,22.28970353442069,77.40182060844235,79.715889732109,63.36325590393732,65.07597651810397,77.13465176754093,79.45160982604664,63.26462371796026,64.98138837675145,0.2671688409014194,264.2799060623702,0.0986321859770598,94.58814135251714,109.49026,76.72413436021921,114255.87243944943,80063.5865554469,267.97441,167.08370670245807,278963.67487921193,173683.36232197957,299.03667,143.9429428490986,307771.1861753749,146852.01087033356,3562.22312,1610.7198294972684,3677706.278892611,1641323.911484355,1336.0669,586.3609859737963,1381332.7280885745,599028.1392188871,2141.04392,887.5676575176055,2195730.9582694173,894122.1862761057,0.38097,100000,0,497683,5193.448747247702,0,0.0,0,0.0,22584,234.96018950422103,0,0.0,27712,285.101587202204,1919832,0,68918,0,0,4287,0,0,47,0.4591511964019243,0,0.0,0,0.0,0,0.0,0.0686,0.1800666719164238,0.3173469387755102,0.02177,0.3259814121237342,0.6740185878762658,24.944522093087112,4.489760839491998,0.325,0.2092592592592592,0.2342592592592592,0.2314814814814814,11.374432426475504,5.840637854957433,22.913366148645476,12829.433948826128,60.70312699067204,13.274573380917651,19.689802653587243,14.070469521926292,13.668281434240855,0.5614814814814815,0.7707964601769911,0.7133903133903133,0.5881422924901186,0.132,0.7298091042584435,0.9151193633952256,0.8834080717488789,0.7231833910034602,0.184,0.5047052996532937,0.6985391766268261,0.6554621848739496,0.548155737704918,0.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491767755523,0.0047329961791444,0.007050683764152,0.0093746508628132,0.0117932920568111,0.014363369844049,0.0164500840850022,0.0186058379261073,0.0207698755034037,0.0229063888149679,0.025278307398979,0.0273538136245599,0.0296959480295212,0.0317947345119075,0.0339122901109781,0.0359888406695598,0.0379475607357644,0.0397154589572358,0.0416311776803706,0.0434624231133499,0.0587511342421176,0.0723231647395822,0.0856648852562087,0.0975156258206838,0.1096962419952814,0.125209915400133,0.1387906010975274,0.1506824559911557,0.161889007470651,0.1730901066883756,0.1872714365615454,0.1999697424869514,0.211675104843441,0.2231886274981151,0.2328074322467154,0.2434560191336699,0.2537759632331615,0.2642600089968511,0.2739062358173731,0.2821111683553723,0.290263992040906,0.297336171008934,0.3047171708806095,0.3106700703507952,0.3167280103980661,0.3226454387499846,0.3289042364186872,0.3350458435596475,0.3401327966244288,0.3452984011397815,0.3462050957642973,0.3478003686686659,0.347614959111574,0.3474771966285648,0.3480538366795768,0.347808112205056,0.3472598078779534,0.3480900498818587,0.3497207085632292,0.350787022165114,0.3521656897810902,0.353123702986343,0.3542312526183493,0.3543592613318411,0.3557445173068146,0.3575372434628607,0.357640964335525,0.359121568627451,0.3618349524778171,0.3637050288213079,0.3648710444485092,0.3673523911301095,0.3682114180944553,0.3691791784162792,0.3696283119558093,0.3699100378787879,0.369661717434563,0.3729916615822656,0.3738651994497937,0.3692307692307692,0.0,2.6016341270192527,59.4032717149666,197.4217251263201,312.16066213844954,fqhc7_80Compliance_baseline_low_initial_treat_cost,96 -100000,95697,42522,400.6708674253112,6924,71.24570258210811,5374,55.581679676478885,2187,22.47719364243393,77.32145341825886,79.70923031303799,63.3143933609397,65.08032283931003,77.04846036632902,79.43536526651715,63.21539877286889,64.98369134550305,0.2729930519298307,273.8650465208394,0.0989945880708091,96.63149380698144,108.70156,76.20798542115683,113589.3079197885,79634.66505862966,267.45049,166.64377232148672,278886.5795165993,173547.10421589678,294.34946,141.3094686514144,303900.32080420497,144831.72702094456,3550.48737,1599.1823433567529,3671359.488803202,1632314.349829936,1313.90766,576.3090991951025,1356325.1303593633,585588.3908110405,2149.4888,889.7140897511013,2209753.0121111427,899239.6263497989,0.38212,100000,0,494098,5163.150359990386,0,0.0,0,0.0,22499,234.5005590561877,0,0.0,27381,282.5062436649007,1922498,0,68952,0,0,4418,0,0,44,0.449334879881292,0,0.0,0,0.0,0,0.0,0.06924,0.1811996231550298,0.3158578856152513,0.02187,0.3213254502956139,0.6786745497043861,25.07689092210067,4.513228971973985,0.3301079270561965,0.2139933010792705,0.2223669519910681,0.2335318198734648,11.24990401800472,5.819974206192078,23.325374644354955,12868.941167768216,60.78330038252896,13.57441156598466,20.009790342607022,13.30930370734368,13.88979476659359,0.5519166356531447,0.7704347826086957,0.6989853438556933,0.5774058577405857,0.1195219123505976,0.7134502923976608,0.8821989528795812,0.868663594470046,0.7630662020905923,0.1622641509433962,0.4967548676984523,0.71484375,0.6440298507462686,0.5187224669603524,0.108080808080808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594634027721,0.0044620221072913,0.0065778788370959,0.0090344610319,0.011069510011395,0.0133037242278542,0.0156439621852595,0.0179803961609148,0.020149459716415,0.0222122136466927,0.0242159546437835,0.0262171515419135,0.0280829527218861,0.0302121652395231,0.0325347591374985,0.0344185854157835,0.036335387643068,0.0385018524476177,0.0404746305598019,0.0425447647635128,0.0573022206438404,0.0705574456948442,0.0836359438298944,0.0966903446461457,0.1090864968663613,0.1250714421794627,0.1380657213212193,0.1510181477379228,0.1635285317375507,0.1755552457451714,0.1903469372367811,0.2035048600437295,0.2156024666383895,0.2267715329584983,0.238063288493901,0.2481123092934168,0.258251625785006,0.2678858453134308,0.2771496932654473,0.2854770738857587,0.2929419113054341,0.3001274600371856,0.3073462913421246,0.3141093263006473,0.3206808986306696,0.3262762485374715,0.3313021608838728,0.3368645953885872,0.3407712108864656,0.3452109351303591,0.3448726058925663,0.345626237079393,0.3460406841697754,0.3464211910576742,0.3469308816090928,0.3464282973989104,0.3459872085826284,0.348055752110451,0.3489825979720471,0.3501324835290748,0.3509098428453267,0.3512349965281222,0.3524686685171166,0.354529714658332,0.3554705469336368,0.3570470504694527,0.358200357163431,0.36060423344229,0.3630956595624159,0.3661318074506822,0.366115210118693,0.3673852423852424,0.3699322163959586,0.3704134667597549,0.3718487394957983,0.3742435245703219,0.3751172241325414,0.3721314864585487,0.3609253065774805,0.3644859813084112,0.0,2.1519141284291785,60.52901882791329,202.19225849712663,303.7104803451977,fqhc7_80Compliance_baseline_low_initial_treat_cost,97 -100000,95720,42433,399.8955286251567,7010,72.09569577935646,5423,56.22649394066026,2171,22.461345591307985,77.3455376358958,79.73224983640334,63.32130932583449,65.08709785665933,77.07805143221455,79.46051485386471,63.224529142562375,64.99071194557752,0.2674862036812442,271.7349825386321,0.0967801832721164,96.3859110818106,109.7525,76.85709430892365,114659.94567488508,80293.66308913879,268.52943,166.95276732936247,280114.5946510656,173996.05863911664,296.70743,141.48252507925812,307036.58587547013,145649.15714944646,3558.00319,1594.55373211988,3693197.659841204,1641955.0168406605,1311.08307,567.571865452957,1360331.5294609277,583575.151956704,2133.9599,875.8108269861226,2209321.2285833685,896606.0058153719,0.38067,100000,0,498875,5211.815712494777,0,0.0,0,0.0,22647,236.167989970748,0,0.0,27556,284.9143334726285,1919260,0,68753,0,0,4344,0,0,37,0.3865440869201839,0,0.0,0,0.0,0,0.0,0.0701,0.184149000446581,0.309700427960057,0.02171,0.3058903182125931,0.694109681787407,25.19916745309322,4.521930805484743,0.3317352019177577,0.2142725428729485,0.2220173335791997,0.231974921630094,11.182935128933671,5.623571175639381,22.952504806935508,12807.56124156227,60.94349898233872,13.615335682037696,20.247839337622047,13.328955407928555,13.751368554750426,0.5515397381523142,0.7650602409638554,0.6964980544747081,0.5789036544850499,0.1208267090620031,0.7337461300309598,0.9365079365079364,0.8912529550827423,0.704,0.1701244813278008,0.494553376906318,0.6823979591836735,0.6366279069767442,0.5461215932914046,0.1091445427728613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024012401341452,0.0046249809828084,0.0067414589573074,0.0089737596292607,0.0109872222674371,0.0129863515991036,0.015174073545308,0.0174218518631986,0.0194698952879581,0.0217302256994224,0.0240810633409911,0.0260990139687756,0.0282875246872942,0.0301094326401912,0.0322703818369453,0.0342820515471378,0.0364837987900886,0.03875413851439,0.0409218065911667,0.0427190130866049,0.0575230018902802,0.0714689383791024,0.0849853600176309,0.0977180191269766,0.1095114542462979,0.1243508519572276,0.138274958354112,0.150450488828303,0.1621381846167001,0.1730511221543646,0.1871537284152887,0.2000693143296546,0.2117207824014106,0.2230659809607178,0.2337156316727937,0.2453438514464252,0.2556805499754475,0.2657074394483131,0.274381459087248,0.2830292346786932,0.2902852647895796,0.2979240695717224,0.3053703178206583,0.3122089612985863,0.3190975802049851,0.3257476043447775,0.3314009420407551,0.3362488099016185,0.3415144277322316,0.3465519735890252,0.3467957410813786,0.3466191194623508,0.3468638836944448,0.3471701378872671,0.3480091940387039,0.3469812099622364,0.3473414193875289,0.3481179257699394,0.3490612859612192,0.3489900436931452,0.3494270607936478,0.3503336510962822,0.3518967078796048,0.352225266088831,0.3528558652195983,0.3532249606712113,0.3537629175850915,0.3535193906254938,0.3558903432946406,0.3578926362003592,0.3611085703832434,0.364732881464482,0.3670397773983431,0.3675547389373756,0.3726181402439024,0.374167776298269,0.3728760717069369,0.3733195449844881,0.3702268954067515,0.3701960784313725,0.0,1.6893119801008611,57.2711190566875,210.0866106847413,311.6283175959568,fqhc7_80Compliance_baseline_low_initial_treat_cost,98 -100000,95619,42368,398.8433261171943,6790,69.85013438751713,5279,54.72761689622355,2141,22.02491136698773,77.23812690061078,79.66939559292108,63.25655152000609,65.05417024874215,76.97327082501297,79.40288360069428,63.15979973099163,64.95887367006684,0.2648560755978053,266.5119922267962,0.096751789014462,95.29657867531682,108.51038,76.06853305947081,113481.33739110429,79553.14140015143,266.7902,166.9481579043685,278481.44197282963,174067.97201260013,292.63696,140.06363586937476,303211.7361612232,144249.08717376328,3511.86641,1578.1207446416151,3642708.53073134,1620692.5686804322,1257.48595,552.9811541762012,1304492.9355044498,567857.655270823,2106.56856,878.4781975348506,2169534.255744152,891614.3038983633,0.37984,100000,0,493229,5158.242608686558,0,0.0,0,0.0,22472,234.47222832282287,0,0.0,27108,280.68689277235694,1916248,0,68795,0,0,4297,0,0,38,0.3974105564793608,0,0.0,0,0.0,0,0.0,0.0679,0.1787594776748104,0.3153166421207658,0.02141,0.3222160200948925,0.6777839799051074,25.144363088255812,4.542786539427528,0.329418450464103,0.2051524910020837,0.2303466565637431,0.23508240197007,11.138671226664904,5.63922259173939,22.83503142275736,12903.793939209598,59.609316330563445,12.73453879644871,19.64996766326246,13.578966899733762,13.645842971118498,0.5440424322788406,0.7580794090489381,0.7107533064979874,0.5748355263157895,0.0934730056406124,0.7233231707317073,0.9450867052023122,0.8935185185185185,0.7352941176470589,0.1374045801526717,0.4847491807411141,0.6702849389416553,0.6503442999234889,0.5286016949152542,0.0817160367722165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021586670990757,0.0044120779365675,0.006589635285517,0.009107264466422,0.0114395049666178,0.0136108479273001,0.0156662756897343,0.0177951211539247,0.020068326412045,0.022236334026405,0.024429532955758,0.0267562652199377,0.029054568658529,0.0310505860643485,0.0330868685199719,0.0353972228545413,0.0371533716892137,0.039099587605306,0.0413040762793021,0.0434691897643462,0.0579552582061467,0.0726680218789949,0.085356501276408,0.0981096308777842,0.1104164906648644,0.1268654345178202,0.1406611851190855,0.1534821257274413,0.1657447923910601,0.177454350161117,0.1905681548453919,0.2036207924548756,0.2160610187959684,0.2276273117714085,0.237619289004474,0.2483356264701966,0.2573573002539121,0.2671042096597765,0.2763561924257932,0.2841326718118339,0.2921420033191361,0.299800609899132,0.3073563272960334,0.3139617377920469,0.3204637440873848,0.3254232257904955,0.3307924149190003,0.3361890656520518,0.3410636057561064,0.3461319417771479,0.3463466709909326,0.3468029277724071,0.3463886063072228,0.346434424446346,0.3469123105129008,0.346425331016347,0.3459446564885496,0.3465232170555427,0.3470734851740438,0.3481468186305304,0.3487780999359867,0.3510204892784038,0.3522035112862773,0.3553715288716864,0.3571031045079488,0.360143805600021,0.3609467455621302,0.3642961272738797,0.3660891089108911,0.3687604490088368,0.3719364148609648,0.3740665671004907,0.3754740834386852,0.3775908221797323,0.3778658363996603,0.3800781712661376,0.382509505703422,0.3820020222446916,0.3828492392807746,0.3842307692307692,0.0,1.7254523007682052,58.34313322777656,201.95985870008576,299.047977264796,fqhc7_80Compliance_baseline_low_initial_treat_cost,99 -100000,95714,43978,416.0624360072717,6231,63.89869820506927,4859,50.12850784629208,1888,19.349311490482062,77.33641368994157,79.71189386957127,63.332022412709286,65.08974424852174,77.09714288424799,79.47355480707546,63.24437602209915,65.00501373135813,0.2392708056935788,238.33906249581105,0.0876463906101321,84.73051716360658,150.74356,105.6789055049281,157493.74177236352,110411.12638164542,332.19442,213.1883463845048,346424.7027603067,222089.65854712288,349.10944,168.3563911265144,360605.5435986376,172773.49123533562,3446.68288,1571.630660479635,3560121.570512151,1601285.7316140623,1148.9544,505.879392272008,1183818.030800092,512133.3924235769,1845.91886,770.714876862882,1894327.705455837,775069.9934194192,0.37896,100000,0,685198,7158.806444198341,0,0.0,0,0.0,28237,294.3247591783856,0,0.0,32006,330.2024782163529,1672180,0,59975,0,0,6027,0,0,55,0.5746285809808388,0,0.0,1,0.0104477923814697,0,0.0,0.06231,0.1644236858771374,0.3030011234151821,0.01888,0.3277362234773317,0.6722637765226683,24.68562659488431,4.413240683264001,0.3274336283185841,0.2354393908211566,0.2218563490430129,0.2152706318172463,11.012513309573247,5.5642640379657,20.133040277002586,12397.391354965206,55.271507986840966,13.519299238790712,18.203295836359136,12.100746471383545,11.44816644030756,0.5610207861699938,0.7674825174825175,0.6957888120678818,0.5723562152133581,0.1185468451242829,0.745425616547335,0.9280397022332506,0.844059405940594,0.74609375,0.1597938144329896,0.4966685174902832,0.680161943319838,0.645324347093513,0.5182481751824818,0.1091549295774647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0045943670828304,0.0069648205492664,0.0094926416781852,0.0119223218009623,0.014075326421282,0.0161433422735292,0.0184500714723299,0.0204982977722797,0.0225111327225264,0.0246222604916251,0.0266934970534485,0.0287524166015384,0.0307243869027387,0.0327513620604259,0.0347194228244803,0.0367482604373757,0.0386131629180844,0.0404294459399066,0.042634528447324,0.0573376772549756,0.0706647973382996,0.0835955197583689,0.0960620650505645,0.1083542382528406,0.1240395286159699,0.1371630288446249,0.1489843666914814,0.1599842011998548,0.1709611408123252,0.1841360383145886,0.1966562489861686,0.2082305510578877,0.2197802197802197,0.2305038563800567,0.2412355861184508,0.25091905621282,0.2588880399119062,0.2671533343157369,0.2748856358645928,0.2823155583800335,0.2883946293053123,0.2951284322409211,0.3016100863657025,0.3070721032020271,0.3127098734301775,0.3178490217146855,0.3223941657773034,0.3268022037712423,0.3320758698921043,0.331754001049897,0.3300878618448233,0.3306695981847138,0.3294857886743328,0.3292109414531059,0.3279646587823846,0.3271124359807823,0.3273645093396474,0.3282169746748802,0.3282599753187988,0.3293078553078178,0.3297203212152379,0.3302193083513123,0.331813814216442,0.3331088394467829,0.3350007816163827,0.3350325037944958,0.3373794847479058,0.3386226594731831,0.3422577422577422,0.346123727486296,0.346182917611489,0.3503992787223081,0.3536168891648556,0.355417661097852,0.360999878655503,0.3609034267912772,0.355601233299075,0.3636615044247787,0.3744745892243026,0.0,2.409245023752704,54.79783123928912,192.1892945199961,263.3411309888619,fqhc7_80Compliance_implementation,0 -100000,95619,44224,418.4314832826112,6198,63.711187107164896,4821,49.92731570085444,1922,19.776404271117663,77.26635035352784,79.70475337822938,63.26822878755484,65.07228004853343,77.02131629919717,79.45960934714658,63.17596842436934,64.98265618737055,0.2450340543306737,245.14403108280192,0.0922603631855025,89.62386116287746,150.69824,105.57221776415186,157602.8195233165,110409.24686950487,336.0496,216.63518132983225,350967.86203578784,226082.20262691745,350.27404,168.9614407424707,363577.3224986666,174644.56850438868,3456.84291,1585.2595707618696,3579938.673276232,1622604.5250022176,1123.85294,503.4574343479491,1164683.305619176,515872.3878823414,1880.8828,807.4529121759945,1936402.116734122,816279.4444755135,0.38052,100000,0,684992,7163.764523787114,0,0.0,0,0.0,28600,298.601742331545,0,0.0,32045,332.38163963229067,1662305,0,59680,0,0,6002,0,0,53,0.554283144563319,0,0.0,0,0.0,0,0.0,0.06198,0.162882371491643,0.3101000322684737,0.01922,0.3202152190622598,0.6797847809377402,24.619870171562813,4.334445252270346,0.3250362995229205,0.2329392242273387,0.2163451566065131,0.2256793196432275,10.955203211238224,5.658696710309063,20.761347612560368,12382.914778514334,54.984920166519046,13.550442427133172,17.69881017865519,11.597120095419417,12.138547465311268,0.5619166148102054,0.7943009795191451,0.6943203573707721,0.5810162991371045,0.1130514705882353,0.7095015576323987,0.928395061728395,0.8375,0.703862660944206,0.1463414634146341,0.5083404014701725,0.7186629526462396,0.6452442159383034,0.5456790123456791,0.1033254156769596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0046867867106264,0.0068144657601023,0.0090694647795672,0.0114309562101748,0.0135042856997258,0.015625,0.0178412678949143,0.0202690950017905,0.0224103126376948,0.0245704784777387,0.0266230829324452,0.0287211373158604,0.0306945189095558,0.0328874657852605,0.0349533851391202,0.0369614112915764,0.0392804470202114,0.0411128573956305,0.043220692532332,0.0575332726949576,0.0714510280648068,0.0851698565095905,0.0982651653201596,0.1104386493023648,0.1262274764038516,0.1390931893546467,0.150624,0.1619764292824953,0.1723222728444941,0.1850281571622758,0.1972939569374878,0.2088189799786497,0.2197324158183671,0.2299348523430007,0.239527401819392,0.2484330484330484,0.2569713487701595,0.2655083464960625,0.2738275513950073,0.2812029378373995,0.2876335269865067,0.2945748373872967,0.3001343473358444,0.3061787846728199,0.3109692869840015,0.3161351784997994,0.3213502905494954,0.3266435896438619,0.3303439349112426,0.3290566037735849,0.3288765267201851,0.3282913007316351,0.3286199667461866,0.3288859140264762,0.3272618646404608,0.3262574257425742,0.3263574939584737,0.3258455800585105,0.3268129429450927,0.32783772605933,0.3297178322856973,0.3303837908276935,0.3321007574738918,0.3325612816058676,0.3338212997333612,0.3346680776821211,0.3380192702574632,0.3407120197391611,0.3415169660678642,0.3448953477744265,0.3490736797274276,0.3516992137966016,0.3559927084915692,0.3562681125549219,0.3600706713780919,0.3661501063506533,0.3633808472194338,0.3720359771054783,0.3680060082613594,0.0,1.906840584943572,56.71393964267299,187.73073213403225,259.3810486036535,fqhc7_80Compliance_implementation,1 -100000,95717,43856,415.5061274381772,6348,65.275760836633,4954,51.286605305222686,1993,20.55016350282604,77.34534288058313,79.7139156580278,63.32656324425341,65.0746344141712,77.09983596342114,79.46616226266673,63.23817175357417,64.98705385349302,0.2455069171619897,247.7533953610731,0.0883914906792355,87.58056067817677,150.25076,105.2043219198466,156973.95446994787,109911.8462967358,331.4765,212.8848347463688,345824.0646907028,221925.8384052664,343.6145,165.51812396744677,355763.60521119554,170391.00002919868,3566.44787,1607.498462645047,3696722.170565312,1650116.648709265,1185.1374,518.8789514838176,1227017.3114493769,530951.3212268834,1955.09178,807.8372385642336,2018308.6599036744,823534.8542177556,0.3803,100000,0,682958,7135.179748633994,0,0.0,0,0.0,28108,293.16631319410345,0,0.0,31598,326.9325198240647,1673572,0,60041,0,0,5983,0,0,57,0.5955055005902817,0,0.0,0,0.0,0,0.0,0.06348,0.1669208519589797,0.3139571518588532,0.01993,0.33003003003003,0.6699699699699699,24.581682667951625,4.402267035571439,0.326806620912394,0.2250706499798143,0.223253936213161,0.2248687928946306,11.216481398863554,5.8119919387284815,21.184588141831565,12404.46281254263,56.11258991164684,13.224969109323265,18.416830008539804,12.30766325630478,12.163127537478994,0.5641905530884134,0.7982062780269058,0.7059913526868438,0.5867992766726944,0.1014362657091561,0.7447956823438705,0.922077922077922,0.8568019093078759,0.8071428571428572,0.1220657276995305,0.5001367240907848,0.7328767123287672,0.6533333333333333,0.5121065375302664,0.0965593784683684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974238496435,0.0041148926681937,0.0063106205105312,0.0084704448507007,0.0107791494640932,0.01264521121168,0.0149128976687766,0.0170574604697692,0.0193609060985831,0.0214144598785968,0.0235376130235991,0.025569932224276,0.0276686346711649,0.0294944833056897,0.0316095809124776,0.0334708138224744,0.0356048053024026,0.0378157364936385,0.0396032397924702,0.0417765180329918,0.0563515602155478,0.0702960660575806,0.083728543249255,0.0967249850083637,0.1094768828209078,0.1254682440583268,0.1394482363306336,0.1509042111317017,0.1627822481539661,0.1732872892625798,0.1871027513843104,0.1990711169331702,0.2116372182087214,0.222606563478337,0.2333120443984407,0.243280389266357,0.2524271844660194,0.2615019460505298,0.269453806784008,0.276874978527502,0.2835910662857539,0.2902867563681423,0.29662320452448,0.3024905063670232,0.307936122411804,0.3133471339149293,0.3183154996558413,0.3223169910132069,0.3265359002927992,0.3309426635495502,0.3300117312333976,0.3288452792745614,0.3285260258492831,0.3271584374954738,0.3266081000595592,0.3257654783088912,0.3247411254314576,0.3265178864456843,0.3275368248772504,0.32887724364116,0.3284090059091929,0.3298359103818239,0.3303623734203699,0.3307733643813533,0.3305514014183028,0.330764609074998,0.3325366339450846,0.3356035402674032,0.3368505924419827,0.3393486089675096,0.342752796165259,0.3461927313361358,0.3476697988270165,0.3485416826150195,0.3528079282680509,0.3588249286393911,0.3624655013799448,0.3673965936739659,0.3692647871752349,0.3703558858036762,0.0,1.7807835325701402,57.61141120262053,185.91423560766395,274.6652080320736,fqhc7_80Compliance_implementation,2 -100000,95652,43913,414.7534813699661,6279,64.27466231756785,4927,50.81963785388701,1973,20.166854848827,77.2498286400838,79.64879502762155,63.26585613190741,65.03912042897431,77.00102379059591,79.40426682273893,63.17354714211564,64.95186491192952,0.2488048494878967,244.52820488261293,0.0923089897917748,87.25551704479528,149.64378,104.83945803263632,156446.05444737172,109605.08722518748,333.05053,214.09081404630817,347534.56279011414,223167.36089816017,344.57305,166.62016354108923,356129.09296198725,171008.28698969792,3516.95776,1591.4162771005203,3631385.553882825,1618382.104520515,1171.6554,513.454465212155,1206578.3987789068,518457.9885545028,1934.97008,807.1307047519055,1980415.4016643667,805199.0983527546,0.3805,100000,0,680199,7111.184293062351,0,0.0,0,0.0,28350,295.6969012670932,0,0.0,31675,327.15468573579227,1666910,0,59885,0,0,5801,0,0,60,0.6063647388449798,0,0.0,0,0.0,0,0.0,0.06279,0.1650197109067017,0.3142220098741838,0.01973,0.320127504553734,0.6798724954462659,24.656287033189088,4.405021415482305,0.3145930586563832,0.236046275624112,0.2238684798051552,0.2254921859143495,11.128891534647416,5.66048560397869,20.991258457254027,12466.67358247616,55.76087397831032,13.853437044816062,17.585137597476923,12.213657947500788,12.108641388516547,0.5553074893444286,0.7781599312123818,0.6929032258064516,0.57116953762466,0.1143114311431143,0.7168347556245152,0.9199029126213591,0.8423645320197044,0.728,0.0950226244343891,0.4980758658603628,0.7003994673768309,0.6398601398601399,0.5252051582649473,0.1191011235955056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00239069654362,0.0047359720912308,0.0069629825113427,0.0090225563909774,0.0113212153268708,0.0135253498462102,0.015948117632663,0.018073211824169,0.0204131724278993,0.0223676529326819,0.0245761234139886,0.0266974833076528,0.0288521891238359,0.0311472537439576,0.0333367747264092,0.0356500155134967,0.0377174712715139,0.0396698504983388,0.041386198358285,0.0433032688598091,0.0576772373439214,0.0716410095297937,0.0855400568867617,0.0983899821109123,0.1112506596306068,0.1268945808636748,0.1396089759247262,0.15167210179679,0.1628066196685886,0.1733250260497792,0.1863380843970177,0.1987333810484308,0.2104832729969032,0.2207330715742832,0.2307242345981502,0.2408,0.251063496328139,0.2603928116151303,0.2685175699211146,0.2765214193785622,0.2846440642531098,0.2913087922546382,0.2984173038277227,0.3041798553358447,0.3091217246046358,0.3143602939357201,0.320125091055236,0.3240100686147988,0.3283504484596386,0.3331125740095633,0.3321574828690751,0.3317226716735235,0.3305290840709216,0.3298518937580689,0.3293670319838962,0.3283034508166523,0.3263693903773854,0.3265201923710389,0.327910445202544,0.3282152466367713,0.3290786550698445,0.3306070591972049,0.3310847728323456,0.3316780514111091,0.3325758491478303,0.3324110568766151,0.3334851287889568,0.3362917895000941,0.3395301613976123,0.3416531090036109,0.3448792445977846,0.3454872120059184,0.3478370063414328,0.3521319449722581,0.3561039692221075,0.3565946392726414,0.3533547302460645,0.3512026090501426,0.3510462555066079,0.3534319302237391,0.0,2.7297823922004496,56.20376362870106,183.9966025598196,274.07866355979087,fqhc7_80Compliance_implementation,3 -100000,95744,44025,415.744067513369,6312,64.66201537433155,4998,51.595922459893046,1979,20.283255347593585,77.32698317968122,79.68687077850396,63.31555014592704,65.06118317813089,77.08536676273306,79.44639850855783,63.226735201523695,64.97537423686003,0.2416164169481618,240.47226994612456,0.0888149444033459,85.80894127085514,150.37418,105.33651311223916,157057.9044117647,110018.2892702741,332.26352,213.6074357614921,346412.3913770054,222484.5185734856,348.83097,168.76180758129445,360430.4186163101,173243.60415086328,3559.9856,1634.5385395344251,3672676.9405915774,1662419.1122869726,1210.36966,537.3340955587637,1244218.7917780748,541887.0455867784,1938.90216,808.7277431818411,1987595.6509024063,812794.9559213656,0.38175,100000,0,683519,7138.9956550802135,0,0.0,0,0.0,28246,294.3578709893048,0,0.0,32148,331.9163602941176,1670437,0,59939,0,0,6107,0,0,56,0.5744485294117647,0,0.0,1,0.0104445187165775,0,0.0,0.06312,0.1653438113948919,0.3135297845373891,0.01979,0.3407093058502576,0.6592906941497424,24.20783046602395,4.389581337158441,0.3291316526610644,0.2396958783513405,0.2090836334533813,0.2220888355342136,11.43565110840018,6.002471459078024,21.09346439963274,12448.500046547497,57.14333918659796,14.476718463782566,18.718012107738637,11.655554027164367,12.293054587912412,0.5672268907563025,0.7879799666110183,0.6808510638297872,0.5961722488038278,0.1333333333333333,0.7489239598278336,0.9204301075268816,0.8648068669527897,0.7563025210084033,0.1466666666666666,0.4969478357380688,0.703956343792633,0.6081424936386769,0.5489467162329615,0.1299435028248587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021072893977002,0.0043398024781488,0.0067697866552991,0.0091433680104031,0.0114213068904144,0.013583829743903,0.0156116164294163,0.0180879080497315,0.0202976166142022,0.0223027399924258,0.0244847341935616,0.0268844246897358,0.0291206249678778,0.0312100992627373,0.0332157372449505,0.0350902571838932,0.037167023842801,0.0392705999502116,0.0411677891410991,0.0432640220018334,0.0577077657031307,0.0714509885971335,0.0847958734352393,0.0979732570851904,0.1106883103193844,0.1258894304473319,0.1392270818309082,0.1510928467246537,0.1625018704174771,0.1727180037563724,0.1851592391011478,0.1980008230630942,0.2091644087530876,0.2197045951859956,0.2293356816555671,0.2405182541617715,0.2499748696011526,0.2592930419017376,0.2687118097358199,0.2769190223556508,0.2844904432790377,0.2915739678227676,0.2974571049388567,0.3041448663178611,0.3092246883551231,0.3142818371349971,0.318963356559226,0.3238722498949004,0.3286482982171799,0.3326158437545393,0.3322378168691576,0.3315346071251583,0.3302286914004706,0.3297378580413817,0.3289563691520685,0.3275872645849947,0.3266810385822528,0.3278731619157151,0.328591457784769,0.3295576168391009,0.3310925943263739,0.332160575573696,0.3337115243197815,0.3343556222157552,0.3343847820852396,0.3343862580274631,0.3341884727210535,0.3362453648419332,0.3386848008973639,0.3415155594267163,0.3424135113048215,0.3434685877741286,0.3448384060244744,0.3457164518574678,0.3464419475655431,0.3475035327366934,0.3507462686567164,0.3571139854486661,0.3641890024868748,0.3601547388781431,0.0,2.273187552843841,61.48077595499212,188.35725773267157,266.3335611493427,fqhc7_80Compliance_implementation,4 -100000,95757,43951,415.2594588385183,6362,65.19627807888718,5006,51.662019486826026,1944,19.88366385747256,77.39144353273707,79.73272650768776,63.36142006586866,65.08817946221293,77.15242835281704,79.49462661374874,63.27324643137608,65.0028216373814,0.239015179920031,238.0998939390224,0.0881736344925769,85.35782483153298,151.07092,105.7617124387124,157763.73528828178,110446.9857855703,337.37387,216.48853783671865,351686.75919253944,225455.3910023442,346.02236,167.09794136719697,358009.06461146445,171835.0964289397,3613.00304,1627.8268826001497,3732112.785488267,1660123.8677084032,1188.33522,521.4788085371428,1225606.2846580409,530241.8131847739,1912.7947,799.3118126351139,1959446.056162996,803427.7956069125,0.37898,100000,0,686686,7171.078876740081,0,0.0,0,0.0,28705,299.1008490240922,0,0.0,31765,328.3937466712616,1668020,0,59842,0,0,5857,0,0,59,0.6161429451632778,0,0.0,1,0.0104431007654792,0,0.0,0.06362,0.1678716554963322,0.3055642879597611,0.01944,0.3276224827171626,0.6723775172828373,24.76008730498948,4.458369251063721,0.3232121454254894,0.2263284059129045,0.2243308030363563,0.2261286456252497,11.07955322458458,5.541797887337522,20.696980479044843,12431.818066279198,56.50237137249326,13.543904992589054,18.30403402167338,12.3129882082674,12.341444149963412,0.5547343188174191,0.7740511915269197,0.6897404202719407,0.572573463935886,0.1245583038869257,0.7320463320463321,0.9309462915601024,0.8486997635933806,0.7258687258687259,0.1666666666666666,0.4928590676367556,0.6913746630727763,0.6334728033472803,0.5266203703703703,0.1142857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00247043576867,0.0051075731933479,0.0075688399180211,0.0095977087374696,0.0118453294831775,0.0140460874521618,0.0161300183411453,0.0184157365274348,0.0206866961558499,0.0227449455676516,0.0249385245901639,0.0271359980302035,0.0291304035100338,0.0312464621306464,0.0330591291439881,0.034966118502603,0.0370401034928848,0.0389433946609694,0.040903090340218,0.0428238088293506,0.0575538066509404,0.0714517394716191,0.0848867582112098,0.0979672531101132,0.1100016869807262,0.1256304786879699,0.1377002937464872,0.1490330404442269,0.1605390455647271,0.1708862116275081,0.1836607287013616,0.1960332652023921,0.2078121094216996,0.21854210589559,0.2283474953556628,0.2391400562083692,0.2492587556011324,0.2585449684934122,0.2672877917190883,0.2753452398659085,0.2826895961907403,0.2892906815020862,0.2955652790917691,0.3026869032930437,0.309054067171423,0.3139639362422303,0.3184994437291398,0.3239316565525489,0.3282896269641979,0.3331663524790065,0.3326297675544143,0.332014507088691,0.3305538760071431,0.3301284361350958,0.3296328684284634,0.3280267415593138,0.3269088096478351,0.3269073413412758,0.3281611936231094,0.3288969658096816,0.3311730880893068,0.3324572670684715,0.3338502158333682,0.3347512649442529,0.3364030858244937,0.3382983171318072,0.3387285213575357,0.3406794068570349,0.3437290999331198,0.3445010345376412,0.3472717301891966,0.3513989747970952,0.353880266075388,0.354653828519028,0.358338033464937,0.3594540534180492,0.365346981785338,0.3697394789579158,0.3689346706424505,0.3668303740083113,0.0,2.2276307837874443,56.80220498702793,190.25134490291887,275.5976778767887,fqhc7_80Compliance_implementation,5 -100000,95726,44126,416.2401019576709,6346,65.06069406430855,5025,51.88767941833984,2042,20.94519775191693,77.37264048070351,79.73245490189917,63.34029949113111,65.08199663275717,77.11838054690574,79.47796399978998,63.24722156846497,64.99126623800028,0.2542599337977691,254.4909021091968,0.09307792266614,90.73039475688915,151.06168,105.80094183972813,157806.32221131146,110524.77053227766,336.50565,215.66017945126333,350897.3215218436,224663.1517732304,349.58601,169.1310605063708,361228.725738044,173642.05160913378,3613.15262,1640.3534614727205,3733053.141257338,1672678.2129854804,1210.84791,529.3609751301408,1249752.6272903914,538308.5151764728,1997.80272,831.8680812316687,2050818.5237030692,838800.4736774641,0.38118,100000,0,686644,7173.014645968702,0,0.0,0,0.0,28578,297.88145331466893,0,0.0,32141,331.80118254183816,1665512,0,59846,0,0,5873,0,0,55,0.5745565468106888,0,0.0,0,0.0,0,0.0,0.06346,0.1664830263917309,0.3217774976363063,0.02042,0.3331334332833583,0.6668665667166417,24.64336201924476,4.389416574458729,0.3287562189054726,0.2256716417910447,0.2157213930348258,0.2298507462686567,11.244514202071551,5.891748562755209,21.64904385458233,12473.9018289307,56.79480145250471,13.518019478186297,18.58399259062709,12.15666452474936,12.536124858941957,0.5456716417910448,0.7777777777777778,0.6713075060532687,0.5811808118081181,0.1047619047619047,0.7255496588324488,0.9166666666666666,0.8561484918793504,0.7180451127819549,0.1504424778761062,0.481651376146789,0.7032520325203252,0.6060606060606061,0.5366748166259169,0.0936490850376749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026227848101265,0.0047226698286258,0.0070097487243474,0.0091810204744881,0.0113676804034611,0.0137530157889914,0.0161462952203296,0.0183930102478259,0.0205258208283926,0.0227865982863986,0.0252937437201386,0.0274740505744294,0.0296960473820589,0.0316477857878475,0.0336118848653667,0.035604291118047,0.0377674938658881,0.0399730332417155,0.0418316548706596,0.0438373570520965,0.0581583536069664,0.0721677531417091,0.0861983999664475,0.0983236113300751,0.1110736309492436,0.1271314551509064,0.1396616641035159,0.1516286592957551,0.1623044476480324,0.1728682336793343,0.1856362872742545,0.1980266574346546,0.2093111773277943,0.220505249343832,0.230900409276944,0.2409266152618984,0.2511692805715242,0.2600319762205008,0.2682306163021868,0.2765098515952932,0.2841793256761764,0.2917144663217287,0.2984784566526046,0.3040937076197448,0.3097360197468416,0.3145235892691952,0.3196343601302279,0.3242692997747776,0.3286894372944558,0.3337554913523568,0.3331404035373453,0.3322373399001224,0.3303229260595131,0.3298679891846561,0.3288810221475212,0.3270333241362396,0.3255176999556709,0.3261869558074585,0.3263488380029348,0.3270615066638158,0.3277340757487995,0.3285852197726422,0.3300548277738249,0.3305515887183149,0.3325650629021415,0.3343563867141779,0.3342710198050749,0.3384080443567334,0.3405006642892105,0.343991483993061,0.3467295654540506,0.34764631043257,0.3522540724838995,0.3534423735260555,0.3553912392362411,0.3601845280340667,0.3628453671195237,0.3642785065590312,0.3574374484465218,0.3608247422680412,0.0,2.3616289715991554,57.81479261250581,186.97447344648933,279.2378415431463,fqhc7_80Compliance_implementation,6 -100000,95748,43931,416.2489033713498,6242,64.06400133684254,4837,49.99582236704683,1961,20.157078999039143,77.33281654085012,79.69906522522004,63.319784280511655,65.07105055237109,77.08944226071574,79.45577678409644,63.229947406516175,64.98381239104744,0.2433742801343754,243.28844112359604,0.0898368739954804,87.23816132365414,150.711,105.61619014829589,157403.81000125327,110306.419087914,333.00039,214.44169724467497,347268.80979237164,223445.4297115824,344.38785,166.791961459261,356636.1908342733,171834.2229848942,3490.71675,1584.8489525578725,3611805.9176170784,1621338.7721780462,1179.8109,513.9697181435101,1220545.0975477295,525135.0818226074,1926.47322,802.1667255480115,1981950.8710364704,810837.1502197521,0.37845,100000,0,685050,7154.718636420604,0,0.0,0,0.0,28364,295.6719722605172,0,0.0,31557,326.49245937251953,1667486,0,59827,0,0,5951,0,0,52,0.5430922839119354,0,0.0,1,0.0104440823829218,0,0.0,0.06242,0.1649359228431761,0.3141621275232297,0.01961,0.3294585500152951,0.6705414499847048,24.518592765803987,4.402849491279508,0.3229274343601406,0.2222451933016332,0.2207980152987388,0.2340293570394873,11.061284509121146,5.697880075998395,20.738159935773574,12315.099733103165,54.60546237972005,12.797069166340036,17.605451846149514,11.85190480748923,12.35103655974126,0.5550961339673351,0.7748837209302326,0.704225352112676,0.5777153558052435,0.1192579505300353,0.7259083728278041,0.9194805194805196,0.865,0.7459016393442623,0.1561181434599156,0.4945393447213665,0.6942028985507246,0.648881239242685,0.5279126213592233,0.1094972067039106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.004117939407463,0.006406741801198,0.0085077403157113,0.0109062792495828,0.0130072522816166,0.0152153295464975,0.0173353751914241,0.0197848714750209,0.021851097162634,0.0235805532202833,0.025618909733132,0.0277100877057692,0.0295883582735146,0.0315820969439342,0.0334894105243573,0.0356059115341197,0.0377654164677556,0.0396793212090963,0.041650605798581,0.0560212976979694,0.0698800979304861,0.0829068791946308,0.0954478553406223,0.107988742608384,0.1232526171090197,0.1356164092991685,0.1473565445081906,0.1578919259567832,0.1683539959675689,0.181224023946422,0.193560601962545,0.2049542202213957,0.2161497337895899,0.2255158607945796,0.2361806263011029,0.2454801124949779,0.2554479963980189,0.2645142247349181,0.2730500515404879,0.2810853987474387,0.2884489298927551,0.2947483147930957,0.3002962305561219,0.3065506217559896,0.31242983159583,0.3180144295806403,0.3240601695130952,0.3287729799059427,0.3332320697397966,0.3330144701032039,0.3318924574276235,0.3307956916483393,0.330369020764648,0.3302132472209408,0.3283524904214559,0.3266275938539522,0.3264421419070921,0.3272652754533966,0.3287253398023617,0.3292941022231379,0.3300897907519481,0.3308962165332886,0.3320220826534945,0.3316725636026668,0.3329852772266889,0.3335713061853904,0.3366227378775459,0.3396737219604809,0.3427502785293649,0.3456412596987677,0.3479209923867327,0.3503686432667465,0.3548019162040909,0.3542252201611392,0.3579881656804733,0.3642595978062157,0.3625884732052578,0.3676227247655819,0.3697896749521988,0.0,1.9881823710769808,55.641149792902446,179.84100690218563,269.4757104758533,fqhc7_80Compliance_implementation,7 -100000,95779,43796,414.5793963186085,6360,65.27526910909489,4958,51.18032136480857,1989,20.411572474133163,77.34910350822409,79.67846020695357,63.34642956891118,65.06692395806226,77.09110803251473,79.4208061555607,63.25135748382338,64.97454427639546,0.2579954757093645,257.6540513928762,0.0950720850877999,92.37968166679876,150.80714,105.56815386629012,157453.2413159461,110220.5638671213,333.83069,214.19667259549345,347974.1592624688,223067.87212008177,342.01106,165.2559732072198,352965.0236481901,169403.55145446138,3556.67443,1614.4534711785334,3674704.851794235,1646891.9825616556,1176.32271,515.2539792046018,1214942.4926132034,524747.1163233953,1950.71342,820.9561626288487,2003031.4578352247,827905.2537902674,0.37989,100000,0,685487,7156.965514361186,0,0.0,0,0.0,28467,296.60990404994834,0,0.0,31370,323.4529489762892,1670784,0,59999,0,0,5959,0,0,64,0.6682049300994999,0,0.0,2,0.0208814040656093,0,0.0,0.0636,0.1674168838347942,0.3127358490566038,0.01989,0.3364893297264803,0.6635106702735197,24.71546054868488,4.326790430603329,0.3138362242839855,0.235982250907624,0.2230738200887454,0.227107704719645,10.8345118254164,5.417702562461434,21.289356446581035,12378.95446155209,56.22641671371899,13.945112431975865,17.55274005097686,12.36646823733343,12.36209599343283,0.5475998386446148,0.7726495726495727,0.666452442159383,0.5795660036166366,0.1181172291296625,0.706646294881589,0.903846153846154,0.8261964735516373,0.7165354330708661,0.1611570247933884,0.4905453548917511,0.7002652519893899,0.6117342536669542,0.5387323943661971,0.1063348416289592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0045206215347814,0.0067971310020188,0.0088165686483631,0.0110729247163135,0.0130603851948369,0.0151348376444689,0.0172475378884523,0.0193013109360471,0.021382824169753,0.0235114535098143,0.0257565340530112,0.0277372412800855,0.0295709992177528,0.0318689362930581,0.0339609779274301,0.0358439999586097,0.0379917463345845,0.0395985079124281,0.0417261092772125,0.0565736469704243,0.0710176759753163,0.0838680590504948,0.0964026357550471,0.1090058380930301,0.1242087687966945,0.13716387378507,0.1493130874909616,0.1603051806007576,0.1705767665081201,0.1836936752725433,0.1963712249818885,0.2080103499635794,0.2190158556588299,0.2289784916662082,0.2397470401258154,0.2490625418508102,0.2580786615394994,0.267183280764256,0.2748663224063112,0.2828883438989403,0.2898930568881192,0.2968548396642952,0.3030179543111921,0.3098040644777279,0.3149086783331483,0.3194209649748926,0.3241691073475105,0.3283796926667963,0.3320425048240861,0.3314499163924699,0.3306463836412991,0.3303362552495842,0.3294498568991934,0.3290249736298673,0.3274291575450467,0.3257587745672057,0.3259563290100147,0.3264675240388721,0.3274718990689612,0.3281906118776245,0.3289950674511202,0.3297867875430202,0.3307756164322092,0.3322296072507553,0.3334207421004326,0.3349786208281918,0.3373314294780263,0.3402379434884215,0.3435784411941495,0.3465669175693042,0.3472890599935835,0.3498499457250494,0.3523391812865497,0.3570066730219256,0.3591106814886418,0.3544106167056987,0.3605442176870748,0.362541993281075,0.3716673298846001,0.0,2.2858845220311923,57.39764270466917,184.8929239397435,276.26876117999905,fqhc7_80Compliance_implementation,8 -100000,95660,43888,415.0742212000836,6252,64.14384277650011,4872,50.282249634120845,1932,19.778381768764376,77.31532774038504,79.70679234496014,63.31028192710126,65.07633590079429,77.07023894014274,79.4641240212528,63.21951533732726,64.98911167202718,0.2450888002422999,242.6683237073348,0.0907665897739988,87.22422876711278,151.10326,105.8112022627842,157958.6661091365,110611.75231317604,334.57839,214.77816970858376,349076.0192347899,223840.58932147824,346.50996,167.51113066134354,357792.11791762494,171743.61002246954,3470.17252,1587.297283624987,3586500.574952958,1618201.8492064616,1123.54674,500.5590256311756,1159769.3602341623,508542.9918912411,1889.3508,801.331418284297,1937457.7252770227,806155.1860275771,0.37911,100000,0,686833,7179.939368597115,0,0.0,0,0.0,28499,297.2297721095547,0,0.0,31820,328.35040769391594,1665581,0,59786,0,0,5913,0,0,50,0.5122308174785699,0,0.0,3,0.0313610704578716,0,0.0,0.06252,0.1649125583603703,0.3090211132437619,0.01932,0.3190774400488773,0.6809225599511226,24.70300925226165,4.362308219696382,0.3183497536945813,0.2411740558292282,0.223727422003284,0.2167487684729064,11.458653675382967,6.004390680147526,20.769703230633723,12376.955200401057,55.39421039678134,13.958528003679978,17.63450592657776,12.081230496361792,11.719945970161804,0.5574712643678161,0.7940425531914893,0.6892327530625403,0.5596330275229358,0.0984848484848484,0.7170245398773006,0.9312039312039312,0.8557457212713936,0.6964980544747081,0.1168831168831168,0.4991591928251121,0.7213541666666666,0.6295971978984238,0.517406962785114,0.0933333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0049879356840163,0.007438754592137,0.0096620811574177,0.0119120279947916,0.0141278329513623,0.0162580066092774,0.0183238853991113,0.0204530347190264,0.0223853849856123,0.0246551458899543,0.0266461222393425,0.0287948150815287,0.0306549336410848,0.0328034682080924,0.034863998345227,0.0370312807601048,0.0392116161039554,0.0410559930099753,0.0430029078553784,0.057443762994849,0.0709678770364786,0.0841414777497901,0.0964707367889387,0.1083579569438581,0.1240473367770344,0.137167671791387,0.1491457907293797,0.1608490263557275,0.1717183642803477,0.1846155504300403,0.1968098930133841,0.2079858918813002,0.2187421342350919,0.2283716063659893,0.2388975155279503,0.2486122435303184,0.2583531212370159,0.2664706349837081,0.2751770936017056,0.2830042272279808,0.2897546356995692,0.2964392710393255,0.3018707176884217,0.3073389478289401,0.3117379458286587,0.3168663986876542,0.322041662955092,0.3257514952230536,0.3309131232590989,0.3303696519021446,0.32961524690848,0.3293330516233537,0.3279233929294682,0.3270140066018378,0.325191915786893,0.3238446558903155,0.3241980691373404,0.3245673913785453,0.3256328380041743,0.3262817275498943,0.3277448657187993,0.3296016771488469,0.3299093655589123,0.3321860935281234,0.3335158817086528,0.3355537766596146,0.3385652352773646,0.3411427965652496,0.3445075606048484,0.3466898954703832,0.3482324041439709,0.3511455226248651,0.3548013883532587,0.3543074726320799,0.3549197988987311,0.3570774862721171,0.3632367632367632,0.3634361233480176,0.3603500761035008,0.0,2.4061727845743106,57.04851307827242,184.8545883711115,265.40467195874203,fqhc7_80Compliance_implementation,9 -100000,95625,43766,414.3581699346405,6159,63.26797385620915,4739,48.9516339869281,1878,19.21045751633987,77.3146043072854,79.73369043505377,63.296484254502126,65.08284211092464,77.08179223623942,79.50393376699266,63.20978114620413,65.00015501838716,0.2328120710459842,229.75666806111408,0.0867031082979963,82.68709253748341,151.78372,106.29077767283758,158727.61307189544,111153.32798617268,329.60268,212.07733445443824,344059.5450980392,221158.6284099014,342.41812,165.2828233788296,354820.1725490196,170273.17527267017,3380.51062,1545.9852766253382,3494720.7843137253,1576366.9150037854,1088.32597,481.2932529808906,1124247.8535947711,489481.5656706612,1841.1273,776.8055394373555,1885742.6196078432,778513.1888278709,0.37898,100000,0,689926,7214.891503267974,0,0.0,0,0.0,28029,292.4549019607843,0,0.0,31455,325.5947712418301,1664696,0,59627,0,0,6024,0,0,50,0.5228758169934641,0,0.0,1,0.0104575163398692,0,0.0,0.06159,0.1625151723046071,0.3049196298100341,0.01878,0.3328658251519401,0.6671341748480598,24.79429511449466,4.42237836767221,0.3203207427727368,0.2276851656467609,0.2346486600548639,0.2173454315256383,11.21884477280159,5.646490174366568,20.133718876058158,12371.900164387012,54.19527349096693,13.106024369278074,17.250972895060407,12.409633371821489,11.428642854806942,0.5496940282760076,0.7868396663577386,0.6785243741765481,0.5485611510791367,0.1126213592233009,0.7265745007680492,0.9317073170731708,0.8713592233009708,0.6966292134831461,0.0892018779342723,0.4826883910386965,0.6980568011958147,0.6066907775768535,0.5017751479289941,0.1187270501835985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0045532445670361,0.0068217809721037,0.0090636589950718,0.0112508138020833,0.0135567325320839,0.0158505115206903,0.0177239758913065,0.0196786368145973,0.0216485238246408,0.0235797290228617,0.0257116149112985,0.028095840663354,0.0300666659797426,0.0321957966885503,0.0342146350542326,0.0363999958553947,0.0385386060901795,0.0405780815931579,0.0424801835627868,0.0573214453700703,0.0712968782736224,0.084428062880005,0.0972346495152478,0.1095453729799339,0.1253401666684314,0.1382138001359619,0.1506393861892583,0.1619869717292943,0.1718459638004189,0.1844504137134966,0.1975592309192985,0.2092131354731864,0.2197975548836598,0.2300807900450793,0.2405504383531239,0.2503743435020673,0.2593936252915263,0.2672748755936285,0.2751272994174045,0.282305403434023,0.2896519450131617,0.2958443310805213,0.3018028817338352,0.3073542089095567,0.3122389898367724,0.3158842733310818,0.3202914399064137,0.3252073547869518,0.3298422413338258,0.3297836535225299,0.3286484405082788,0.3278529163144548,0.3272561663244946,0.3268529949872822,0.3256002943972523,0.3234160653397827,0.3245053823616552,0.3256101116465725,0.3260208281143757,0.3273146153702073,0.3293204342600437,0.3297437181734702,0.3308951429463449,0.3315309711223294,0.3324357214986665,0.3336921115989236,0.3383233532934132,0.3401289423244468,0.3441504672528686,0.3466624543033804,0.3488751909804541,0.3506011204129162,0.3541413834951456,0.3556971514242878,0.3523513965146813,0.3493788819875776,0.3574051407588739,0.3549890350877193,0.359907120743034,0.0,2.33065057993193,57.33178441039138,181.269866261865,252.41043372025004,fqhc7_80Compliance_implementation,10 -100000,95630,43787,413.7613719544077,6317,64.78092648750392,4988,51.41691937676462,2042,20.851197323015796,77.29129418892526,79.69267999641305,63.29829466637945,65.07044954124089,77.03557634210206,79.44202826277122,63.20191537493416,64.97997751322819,0.2557178468232024,250.65173364183124,0.0963792914452881,90.47202801269805,150.88898,105.74727333114129,157784.14723413155,110579.6019357328,334.11837,214.0133615208088,348654.1775593433,223060.7356695689,340.77473,163.97176006423268,352471.630241556,168440.11838554652,3575.08412,1635.3643590440845,3687094.112726133,1658735.0612193714,1175.55373,521.8265125343158,1210803.2521175365,527202.690091306,2009.79198,854.7282540147579,2053681.1042559864,851781.5734963923,0.38019,100000,0,685859,7172.006692460525,0,0.0,0,0.0,28407,296.2773188330022,0,0.0,31332,323.6641221374046,1667555,0,59814,0,0,5934,0,0,62,0.6483321133535501,0,0.0,0,0.0,0,0.0,0.06317,0.1661537652226518,0.3232547095140098,0.02042,0.327297419646899,0.6727025803531009,24.629108776583717,4.357145158201585,0.3227746591820369,0.2303528468323977,0.2141138732959102,0.2327586206896551,10.962501311708204,5.616089187254337,21.98236069222976,12425.019782587391,56.75731821387326,13.73008960054597,18.0202243508766,11.95883271316949,13.04817154928121,0.5483159582999199,0.7885117493472585,0.6801242236024845,0.5608614232209738,0.1162790697674418,0.6979560938682816,0.9250645994832042,0.8393285371702638,0.7142857142857143,0.1433823529411764,0.494409599127352,0.7191601049868767,0.6244761106454317,0.5151883353584447,0.107986501687289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0044915340160194,0.006820742364727,0.0089523422416421,0.0113339234298853,0.0134949330345775,0.0158757672777698,0.0182571936201931,0.0202130705054801,0.0224336002293531,0.0245508245139059,0.0269301480028347,0.0290937522504449,0.0313469286811001,0.033407664354146,0.0355185039614406,0.0374646340073167,0.0392079495779123,0.0412786281385596,0.0431962965666086,0.0573775631780272,0.0711329946047876,0.0846014093233777,0.0973239851776991,0.109589908692669,0.1251548159674807,0.1377337056344159,0.1507478268280211,0.1625037423549035,0.1725041338286769,0.185215937887529,0.1979423868312757,0.2090881379550601,0.2191219789967038,0.2299848984226016,0.2412729753413717,0.2503603875423246,0.2584927542759342,0.267299525355983,0.2759438828141118,0.2829389153892465,0.2895325024866889,0.2961558964638986,0.30157187425006,0.3080554879532733,0.3135819236942832,0.3192308174444987,0.3241772248706248,0.3277374156720291,0.3316424259237242,0.3311222563770695,0.331936537692806,0.3314838345333898,0.3302392261353105,0.3294308652456916,0.3273300038417211,0.3256810821108782,0.3265282583621684,0.3273354145939826,0.3286964004015488,0.3288194248528278,0.3289518098604134,0.3304783349817967,0.3305126593643383,0.3314393027399239,0.3326200417536534,0.3329254759126995,0.3373259140494828,0.3401267159450897,0.341089286425754,0.34224696541024,0.343014920618064,0.3467400240308607,0.3544644229291532,0.3579297245963913,0.3602215266072718,0.3688307644402927,0.3667288944202447,0.3696443573228787,0.3733590733590733,0.0,2.8899789570882515,57.39610617259054,191.07966764573527,272.25416363940064,fqhc7_80Compliance_implementation,11 -100000,95630,44140,418.1637561434696,6305,64.64498588309108,4940,51.06138241137719,1971,20.21332217923246,77.27514686010801,79.68562853327883,63.27600815666828,65.0562104946175,77.03098967264049,79.44323850320157,63.185966328133645,64.96922389245712,0.2441571874675219,242.3900300772601,0.0900418285346376,86.98660216037979,150.23096,105.21221577868192,157095.59761581093,110019.66746065236,332.07043,213.85210757069495,346657.24145142734,223037.53423918743,355.91017,172.09884891896016,368484.15769110114,177122.40867697238,3504.88876,1611.820055239594,3624413.750914985,1644941.56759032,1176.8998,527.4992845572592,1211158.7472550457,532292.5968182988,1922.35848,809.7022877888774,1972678.991948133,814173.5314885873,0.38,100000,0,682868,7140.708982536861,0,0.0,0,0.0,28157,293.80947401443063,0,0.0,32649,337.67646136149745,1665150,0,59793,0,0,5931,0,0,60,0.6274181742131131,0,0.0,1,0.0104569695702185,0,0.0,0.06305,0.1659210526315789,0.312609040444092,0.01971,0.328340142230292,0.6716598577697079,24.63363023336758,4.309478410675146,0.3305668016194332,0.2289473684210526,0.2228744939271255,0.2176113360323886,11.498494583084188,6.11387921127996,21.11871843595851,12391.188407272566,56.27424797883703,13.52098358781964,18.429851030614014,12.391685907967076,11.931727452436288,0.569838056680162,0.7931034482758621,0.6907532149418248,0.5967302452316077,0.1237209302325581,0.7361516034985423,0.9243902439024392,0.8502202643171806,0.7683823529411765,0.1525423728813559,0.5058856502242153,0.7184466019417476,0.6293469041560644,0.5404101326899879,0.1156138259833134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0045609803067005,0.00674750139516,0.0092229558151345,0.0116661072630925,0.0138911520286785,0.0162540278174328,0.0182336065992179,0.0202733787942298,0.0224442988204456,0.0244735519473192,0.0266894043681042,0.0288077698670727,0.0305719616149746,0.0325478614650668,0.0343760991455113,0.0361944050000518,0.0382905805379582,0.0403442319299048,0.0423909983001887,0.0573480073997428,0.0716718185152197,0.0854114582239122,0.0977834899498546,0.1099468697516715,0.1250701659623592,0.138319465255417,0.150497857188546,0.1613279535944005,0.1724041572176305,0.1848437415663626,0.1968640548248229,0.2087870167522262,0.2195175438596491,0.2291726436122084,0.2395588039276669,0.2490235358633733,0.2585817779683586,0.2672774869109948,0.2756078233206619,0.2831488828565462,0.2899696262504251,0.296022969958711,0.3021247462675811,0.3078907029368111,0.3127900088853786,0.3178273190059433,0.3217579617834395,0.3266227950624976,0.3311108465293487,0.3307549003725903,0.3297523168578994,0.3289540528335967,0.3280275514781426,0.3273238430987549,0.3257036855338198,0.3250296935624356,0.325262016624503,0.3262523887523887,0.3262040670709953,0.3266868000975408,0.3285361273104675,0.3290775681341719,0.3299991049051199,0.3321382164685499,0.333324646896336,0.3336277638477319,0.3368374669520332,0.340317080887264,0.3424461575141063,0.3422919508867667,0.3457729982964225,0.3466549184970734,0.3510767364270549,0.3538838612368024,0.3566818073153239,0.3609531129900077,0.3639518269034497,0.3733075435203095,0.372737774355025,0.0,2.31322506988726,60.394599379689225,182.23332578598536,267.1947091065324,fqhc7_80Compliance_implementation,12 -100000,95699,44276,418.1025925035789,6252,64.35803926895788,4908,50.84692630017032,1998,20.60627592764815,77.28391542799022,79.68266432517326,63.28504443165552,65.06011324105917,77.03498053500958,79.4303429864254,63.19351232303482,64.96902734149899,0.2489348929806425,252.321338747862,0.0915321086206972,91.0858995601842,151.184,105.89272313154748,157978.6622639735,110651.8596135252,333.6667,214.4116375884885,348232.1236376556,223617.3811518286,349.56419,168.52166580841669,362690.2579964263,174023.51963132876,3517.36404,1605.0170179913491,3648389.983176418,1650096.3520949534,1161.30364,520.1739300779304,1203277.777197254,533335.5006113189,1961.46614,825.1243555899524,2025296.607070084,841460.1313122653,0.38092,100000,0,687200,7180.848284726068,0,0.0,0,0.0,28386,296.168194025016,0,0.0,32053,332.3127723382689,1663394,0,59747,0,0,5925,0,0,44,0.4597749192781534,0,0.0,0,0.0,0,0.0,0.06252,0.1641289509608316,0.31957773512476,0.01998,0.3323668548756295,0.6676331451243706,24.702446082772354,4.336600344520804,0.3111246943765281,0.2328850855745721,0.2286063569682151,0.2273838630806846,11.08936923117268,5.749542425424076,21.44807385534928,12469.25018068798,55.97998753200363,13.5410358060455,17.380341878270386,12.54843011937159,12.510179728316157,0.5548084759576202,0.7672790901137357,0.704649639816634,0.5704099821746881,0.1164874551971326,0.7222653219550039,0.9270833333333334,0.8668407310704961,0.7159090909090909,0.2093023255813953,0.4951644100580271,0.686429512516469,0.6503496503496503,0.5256410256410257,0.0885780885780885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022395168318437,0.0045439792275235,0.0064062864858828,0.0087499110781394,0.01101919965813,0.0134055904164289,0.0154622877250242,0.0176492217183478,0.0197698798261314,0.0219426745067508,0.0241910663356382,0.0262730672804241,0.0284211934431627,0.0304741685818226,0.0327425498312292,0.0349745085264583,0.0373950885918557,0.0394648065684717,0.0415535515544876,0.0436767234641238,0.0580659313111055,0.0723378417989196,0.0863442225556966,0.0991045969634158,0.1113913630799105,0.1273906923085064,0.140084513621982,0.1518678650536718,0.1629077771602035,0.1730399785350147,0.1862645771809187,0.198249528802617,0.2099320587082444,0.2202558261783774,0.2301647655259822,0.240808986768493,0.2511180179777291,0.2597488955008565,0.2689344001454744,0.2767331673683848,0.2845499234800352,0.2912352699771355,0.2984019267045522,0.3043697539536726,0.3098931067228323,0.315772582516602,0.3201238234888646,0.3247631418092909,0.3297949555434585,0.3335269424716847,0.3324349454903176,0.3305970663177467,0.3304159091229405,0.3296480959606908,0.3286992245061995,0.3274242563771986,0.3260614330138985,0.3268267034718456,0.3275924055400523,0.3286432880439647,0.329570469041034,0.330411797440178,0.3310748058088483,0.3319513294276701,0.3344173967914958,0.3348981143951116,0.3355994172926961,0.3386989868383676,0.340110256680361,0.3446542374223172,0.3481899217755139,0.3493535396354387,0.3525364358541314,0.3534761367906802,0.3543644146659222,0.3558145009416196,0.3627092846270928,0.3643536313979365,0.367935086737549,0.3695400077309625,0.0,1.6961741195300792,57.35110331930004,191.16367032883784,266.93576909726545,fqhc7_80Compliance_implementation,13 -100000,95666,43817,413.3757029665712,6245,64.12936675516903,4872,50.43589153931386,1929,19.829406476700186,77.35161970545354,79.75716116536832,63.31721993396855,65.09412809087999,77.11007441269832,79.51486129912195,63.22817304211486,65.00676118715192,0.2415452927552195,242.2998662463698,0.089046891853691,87.36690372806777,151.2764,105.97364572145727,158129.7430644116,110774.61765042678,333.06868,214.6485525431348,347664.7398239709,223879.84203328547,350.16223,169.2155188396149,363268.4025672653,174722.9103118581,3493.10591,1584.601876930166,3618176.353145318,1623216.1724596566,1155.44687,509.2979226405205,1193215.8028975811,517899.47742455057,1889.9974,786.6550304831939,1944539.8156084712,796202.512360817,0.37883,100000,0,687620,7187.715593836892,0,0.0,0,0.0,28380,296.1449208705287,0,0.0,32095,332.6678234691531,1663977,0,59636,0,0,5892,0,0,61,0.6376351054711182,0,0.0,1,0.0104530345159199,0,0.0,0.06245,0.1648496687168386,0.3088871096877502,0.01929,0.3285561823448696,0.6714438176551304,24.942199603900136,4.407000667810927,0.3238916256157635,0.2339901477832512,0.223111658456486,0.2190065681444991,11.283039137280602,5.854692630531711,20.521517656200725,12380.24739383477,55.04832396049226,13.503877893376426,17.832570092980564,12.095464089949392,11.616411884185885,0.5613711001642037,0.7885964912280702,0.6888466413181242,0.5722171113155474,0.1190253045923149,0.7348193697156034,0.9228855721393034,0.8405797101449275,0.7272727272727273,0.1761904761904762,0.4981797815737888,0.7154471544715447,0.6348797250859106,0.5197044334975369,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0044313745373421,0.0065358150486126,0.0086665853856782,0.0110264573945417,0.0133122835608066,0.0155407127925355,0.0176654991779926,0.0199591002044989,0.0224316296220424,0.0245296181545848,0.0267587397496763,0.0292362154485767,0.0314745512840338,0.0335588493518566,0.0355480146495892,0.0374976680554691,0.0396549397390248,0.0416874739908447,0.0437815406431163,0.058459673796065,0.0722945807856604,0.0856738035264483,0.0983344380964405,0.1102715366674757,0.1254696910359135,0.1379760678678742,0.149918997271487,0.1616740842177336,0.1720875793271553,0.184422782462421,0.196628787468449,0.2080421483465047,0.2178172305469511,0.2280891081476913,0.2379136411507122,0.2478101537361458,0.2567260283224891,0.2653089026633063,0.2731041432857699,0.2807796865058707,0.2872538133364502,0.2938664963572712,0.3005401003556758,0.3062936214116647,0.3116251585025053,0.3168790604697651,0.3214027155068396,0.3257749008359497,0.3306473910810917,0.3306260757314974,0.3299950544015826,0.329515232533596,0.3288786260643671,0.327776623222397,0.3270113184460079,0.3259687717301978,0.3267187090002624,0.3277678190354247,0.3284541235273117,0.3292140941736831,0.3317861304785794,0.3316846208659932,0.3321729039744706,0.332758166175378,0.3341465946843854,0.3355199636508207,0.3385570112204601,0.3404813545092003,0.3439492968904734,0.3460996774340102,0.3496238623809774,0.3513834238960714,0.3570780399274047,0.3563690698543145,0.3611904761904762,0.3576372865712967,0.3553083923154702,0.351049332243118,0.3496240601503759,0.0,1.8619773067808691,57.56292748163512,173.95690346114569,276.1300922169817,fqhc7_80Compliance_implementation,14 -100000,95786,44335,419.23663165807113,6351,64.98862046645648,4953,51.0826216774894,1974,20.13864239032844,77.3507064425629,79.67836929662188,63.34838135415546,65.0697534020296,77.09283151133467,79.42420416071951,63.25117321101634,64.97690204562457,0.2578749312282298,254.1651359023689,0.0972081431391203,92.85135640503484,151.15232,105.981191594009,157802.10051573298,110643.71786483304,337.20154,216.46153369317167,351389.8168834694,225337.9864418304,351.01049,169.23841490845803,362936.9636481323,173935.29123975686,3541.53161,1629.919121008537,3654852.723780093,1659140.9402298245,1191.51184,533.7460703756624,1229597.080993047,542895.5246070366,1943.74702,836.3726013447857,1986085.4195811497,836799.8078215212,0.38217,100000,0,687056,7172.822750715136,0,0.0,0,0.0,28573,297.64266176685527,0,0.0,32206,332.6790971540726,1667064,0,59797,0,0,5959,0,0,65,0.678596036999144,0,0.0,0,0.0,0,0.0,0.06351,0.1661825889002276,0.3108171941426547,0.01974,0.3311785929043896,0.6688214070956103,24.725134684361656,4.343501116176959,0.3276801938219261,0.2289521502119927,0.2125984251968504,0.2307692307692307,11.10785619849995,5.76228088031086,21.415001821336677,12486.03892325347,56.555571462784165,13.597609059877229,18.30175119607201,11.886502927575297,12.769708279259644,0.5509792045225116,0.7821869488536155,0.6900800985828712,0.5669515669515669,0.1093613298337707,0.6829085457271364,0.9054726368159204,0.8447368421052631,0.690566037735849,0.1498257839721254,0.5023487151146726,0.7144808743169399,0.6427996781979083,0.5253807106598984,0.0957943925233644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.0045316301703163,0.0066364272885019,0.0090809361287177,0.0114588417114039,0.013804758365826,0.016071501365619,0.0180832933636762,0.0202847011455491,0.0226054031927957,0.0245916757177695,0.0268012887602864,0.0287032659856535,0.030768755661698,0.0328325273002877,0.0347834171840618,0.0365261839967716,0.0386577097717235,0.0407302787355128,0.0427264114603396,0.0575787298870964,0.0716996915355257,0.0848402889161451,0.0980936166635138,0.110539629005059,0.1258707992853896,0.1389604742663824,0.1515406311532116,0.1624137857402148,0.1726193028341122,0.1859511249865432,0.1978510199007664,0.2099326233427515,0.2200780217018347,0.2303158265153514,0.242099322799097,0.2516134785371128,0.2607137239039079,0.2696431809938339,0.2777459888764276,0.2851993484062525,0.292512238150316,0.2991730061640027,0.3057811638994705,0.3117502792482152,0.3167543459780452,0.3217439155556667,0.3257207562533398,0.3297839266283227,0.3337203013073361,0.332238701515437,0.3313146050403975,0.3307587140058352,0.3301497720859561,0.329406690167031,0.327085314599503,0.324762463715242,0.3254063668253157,0.3273309803652811,0.3281482144455384,0.3299533448716984,0.3309600777423001,0.331670980367401,0.3324482448244824,0.3352553740741634,0.3364855660921045,0.3376154154957848,0.3405246150921878,0.3448141730612822,0.3491993945670357,0.3522643931059773,0.3544766099146033,0.3565344520722095,0.3586621454993834,0.3597993754140248,0.3646819216484964,0.3670708955223881,0.3715234537152345,0.3699943598420755,0.3709361535448492,0.0,2.3440809742214603,58.46402993914768,192.9927805742479,264.5191211415405,fqhc7_80Compliance_implementation,15 -100000,95741,44240,417.7520602458717,6215,63.74489508152202,4863,50.27104375345986,1895,19.448303234768805,77.31652017658898,79.67739107840734,63.31665033110207,65.06237752554127,77.08871732900548,79.45039220230021,63.23251423169191,64.98097279858253,0.2278028475835043,226.99887610713176,0.0841360994101592,81.40472695873768,150.0334,105.20518248502236,156707.5756467971,109885.1928484373,335.75842,216.071163710768,350187.2447540761,225175.74885448028,351.9409,169.93904465347495,364451.9798205575,175062.9787399958,3483.67984,1575.7095972437094,3603194.065238508,1610590.6460081711,1158.71192,509.2810868180727,1195457.4111404726,517226.2240528987,1858.36636,768.7202561876769,1909310.9117306063,775624.7423335639,0.38149,100000,0,681970,7123.071620308959,0,0.0,0,0.0,28551,297.6781107362572,0,0.0,32269,333.8486124022101,1667448,0,59850,0,0,6064,0,0,70,0.7311392193522106,0,0.0,1,0.0104448459907458,0,0.0,0.06215,0.1629138378463393,0.3049074818986323,0.01895,0.3280839895013123,0.6719160104986877,24.653950806338475,4.383388692965069,0.3253135924326547,0.229487970388649,0.2224964013983138,0.2227020357803824,11.3513024631055,5.905810625353926,20.01019325855181,12443.900671389036,55.05057957564015,13.409152685106031,17.957926293842487,12.05840293113419,11.625097665557451,0.5628213037219824,0.7876344086021505,0.6915297092288243,0.5868761552680222,0.1191135734072022,0.7544677544677545,0.9185185185185184,0.8875598086124402,0.7613636363636364,0.135,0.4938478747203579,0.7130801687763713,0.6211340206185567,0.530562347188264,0.1155152887882219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0047546152208513,0.0070134483633595,0.0093174959610636,0.0116475423177083,0.0140244026643309,0.0160831387106972,0.0185247592496144,0.0208280078935798,0.0228820066547222,0.0250902304979082,0.0271080625949809,0.0291425868416181,0.0311595769876329,0.0331215315742784,0.0350674174717156,0.0371405502763803,0.0394680884168162,0.041485623999501,0.0434637663041213,0.0579643569318146,0.071625142570134,0.0847368752228537,0.0970482770224087,0.1089776034417309,0.124516129032258,0.1377909320433666,0.1495710119009601,0.160941890404812,0.1714138585819574,0.1840214569622025,0.1967232628856496,0.2084389103365777,0.2192143271049495,0.2289453696874965,0.2395323063282722,0.2502791549421591,0.2590858968877287,0.2677803375058161,0.2762701185634916,0.2834318636694934,0.2901573191414702,0.2968258101166947,0.3031211405412535,0.3093681652490887,0.3149443149443149,0.3199919876810596,0.3243418707673506,0.3287068206535812,0.3325413795834323,0.3317490878246469,0.3309874672910067,0.330473677526774,0.3300667313231909,0.3288347939946732,0.3279414921345558,0.3272298164193052,0.3278572603190264,0.3293098429982707,0.3297335052654201,0.3310851431577365,0.3337160049087526,0.3358320209973753,0.336157052574963,0.3373476564381714,0.3367984992965452,0.3367460430628832,0.3386504223317738,0.3408923626932109,0.3430711907404471,0.3464126579976357,0.3486541121395893,0.3494393347612448,0.3505076526746477,0.3521073875903501,0.3555264411624583,0.3613587457731325,0.3590780428629195,0.362585969738652,0.3717899578382522,0.0,2.061351972266539,56.69196294950277,179.9687708419482,270.62038996834576,fqhc7_80Compliance_implementation,16 -100000,95686,44205,418.43111844993,6239,64.12641347741571,4868,50.36264448299647,1861,19.10415316765253,77.40264542862671,79.78340414856656,63.35728834693722,65.11223321220922,77.18073462622625,79.56179903194042,63.27699267959528,65.03411585981577,0.2219108024004583,221.60511662613655,0.080295667341943,78.11735239344841,151.48958,106.16545640754862,158319.48247392513,110951.92233717431,335.35085,214.6989538317249,349971.9394686788,223880.4567352852,348.0722,167.31461217745192,360436.6260476977,172289.8633716338,3475.82248,1547.8948618937122,3597180.810149865,1582332.642072731,1173.76985,506.2565351055309,1214187.4464393954,516579.3168337385,1826.97206,746.5964960119888,1877157.6615178816,753854.1746244929,0.38104,100000,0,688589,7196.340112451142,0,0.0,0,0.0,28568,298.0477812846184,0,0.0,31781,328.80463181656665,1669340,0,59763,0,0,6016,0,0,69,0.7211086261313044,0,0.0,1,0.0104508496540768,0,0.0,0.06239,0.1637360906991392,0.2982849815675589,0.01861,0.333843797856049,0.666156202143951,24.976213385560545,4.380589269107687,0.3262119967132292,0.2294576828266228,0.2241166803615447,0.2202136400986031,11.305554921542065,5.89919125342963,19.49597089908678,12493.306557221047,54.36515396689143,13.13731348823855,17.74552907989061,12.066851610263154,11.415459788499112,0.5659408381265407,0.7779767233661593,0.6939546599496221,0.615948670944088,0.1044776119402985,0.7384356602186711,0.9211956521739132,0.8673469387755102,0.7350427350427351,0.1384615384615384,0.5101929872247893,0.7076101468624834,0.637123745819398,0.5834305717619603,0.096921322690992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860548247612,0.0044189039901892,0.0065327652667883,0.0086631526563277,0.0107788206343234,0.0131254709488218,0.0152211811962849,0.0174931874547106,0.0195086557524475,0.0218287878012587,0.0243447420482384,0.0264765365938792,0.0286243059839605,0.0306391480772003,0.0329030860185099,0.034819905948013,0.0367283119680245,0.038769665020132,0.0407184756833215,0.042629033602935,0.0577604128579338,0.0721211232802127,0.0851452316991269,0.0982244288298901,0.1107290886655346,0.1271184647610181,0.1391055228394079,0.1510058541777541,0.163026754423455,0.1729088706132121,0.1862092727781726,0.1991582273002683,0.2115271707221606,0.2223169585273605,0.2325745078631914,0.2425178199849471,0.2525520438639504,0.2615424355072382,0.2702595578909222,0.2788414278692834,0.2856038134370564,0.292533274230989,0.2984146096728878,0.3040946162493124,0.3095307349234051,0.3159584281409507,0.3209618988132417,0.324636430547448,0.3291717771609321,0.3336490272680636,0.3331096497114481,0.3318533135997369,0.3312949690739,0.3306911036943261,0.330220926619216,0.3287449639848614,0.3264236434536872,0.3273159144893112,0.3281675285792052,0.328353962156779,0.3293254420193798,0.3311606722161143,0.3325011961971333,0.3325698274328411,0.3338363875913283,0.3342432987546473,0.3356002617875537,0.3400915016294811,0.3443755039085778,0.3494414956824843,0.3510657678994352,0.3534611288604898,0.3574535140245824,0.3613650213284582,0.3637135578828191,0.3654708520179372,0.3656624654165386,0.3701311806256306,0.3793386171084996,0.3833648393194707,0.0,2.0246445901182706,52.18161375689456,181.3090621099434,279.23625152091194,fqhc7_80Compliance_implementation,17 -100000,95725,44033,416.4951684512928,6311,64.65395664664403,4987,51.50169757116741,1922,19.74405850091408,77.33907921770925,79.70499863821034,63.32552877917672,65.07490935157466,77.09974363114357,79.46649775707536,63.23682019150851,64.9892272806126,0.2393355865656872,238.500881134982,0.0887085876682078,85.68207096206493,150.90152,105.8219296794508,157640.65813528336,110547.8502788726,336.84159,216.44815378121183,351316.5003917472,225546.39204096308,357.66186,173.16764636697962,369819.5455732568,178020.28742836494,3547.52551,1612.94505056945,3669310.702533298,1648333.4662517111,1195.141,524.7559992388883,1235873.230608514,535549.3854676291,1886.0847,787.4747984747438,1939575.158004701,795748.98161811,0.37875,100000,0,685916,7165.484460694699,0,0.0,0,0.0,28621,298.3860015669888,0,0.0,32759,338.30242883259336,1664601,0,59692,0,0,6031,0,0,57,0.5954557325672499,0,0.0,0,0.0,0,0.0,0.06311,0.1666270627062706,0.3045476152749168,0.01922,0.3305135951661631,0.6694864048338368,24.566915212675088,4.363473345204745,0.3136154000401043,0.2438339683176258,0.2225787046320433,0.2199719270102265,11.192035666784086,5.710455611041281,20.444540443473173,12365.358044384351,56.590062589796965,14.56645843956786,17.714251783688347,12.405430045841698,11.903922320699056,0.5636655303789854,0.7960526315789473,0.6809462915601023,0.5846846846846847,0.1175934366453965,0.734785875281743,0.9300225733634312,0.8469387755102041,0.7107142857142857,0.162037037037037,0.5013676148796499,0.7192755498059509,0.6254266211604096,0.5421686746987951,0.1066969353007945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0044916250963215,0.0065466946804299,0.0090330840513737,0.0112305829933979,0.0135351210420719,0.015765053790853,0.0178460219093609,0.0199492832164256,0.0220405989471312,0.0240187883946793,0.0259646888448383,0.0282311560889821,0.0302899177845088,0.0323709445998534,0.0344563711195218,0.0364035678397165,0.0383884927924281,0.0406293546307273,0.042643856596618,0.0572621906651352,0.0717364918595404,0.0843757536358012,0.09735834770538,0.1095468590169466,0.1246694450908629,0.1374978781191648,0.1491647413306644,0.1596584776824355,0.1702216690628956,0.1827439063813279,0.1963011488527714,0.2075264371817746,0.2185482635621594,0.2285214097750569,0.2388532913553422,0.2482942680707083,0.2572142439112231,0.2661089860731189,0.2737097864829863,0.280636574074074,0.2883060978605434,0.2958429424634853,0.3013436160275908,0.3064181440897011,0.3117610148012353,0.3170740847146408,0.3214566879142647,0.3269422085556661,0.3321034182853227,0.3319892473118279,0.3313351573563582,0.3303560107634437,0.3299787446319351,0.3297817009198579,0.3280247461831769,0.3260773200772567,0.3267126663380976,0.3274669588440731,0.3278750134220981,0.328623698283141,0.3295560170078117,0.3312961761443312,0.3322818086225026,0.3319728217809896,0.3334027109295731,0.3339035237769415,0.337546772317077,0.3395775489403578,0.3396669853409815,0.342981252857796,0.3455925589351579,0.3465541312349283,0.3480798771121351,0.3522940955246333,0.3545778834720571,0.3599628425452856,0.363784998978132,0.3687135315365379,0.3662188099808061,0.0,2.362155461323776,58.29350422334751,187.73536155176103,273.0982886607432,fqhc7_80Compliance_implementation,18 -100000,95690,43954,416.05183404744486,6241,64.1968857769882,4916,50.83080781690877,1952,20.012540495349565,77.30793472821749,79.68515232068617,63.31631099018998,65.07051076306713,77.07070517929328,79.44865134913384,63.22953411615787,64.9864961166378,0.2372295489242049,236.5009715523314,0.0867768740321111,84.01464642933831,150.37264,105.3844718099004,157144.6964155084,110130.39409158687,331.64816,212.82015881310568,346008.11997073883,221832.5422633855,343.41882,165.32765561910688,355951.6877416658,170421.80395493642,3540.80514,1596.7511596993018,3661880.018810743,1630699.860228348,1183.12894,516.9760469374056,1220102.894764343,524044.9661125761,1918.47584,790.452491343661,1967989.0479673948,794828.4492789448,0.38035,100000,0,683512,7142.940746159474,0,0.0,0,0.0,28214,294.2313721391995,0,0.0,31524,326.4499947747936,1670782,0,59988,0,0,5931,0,0,61,0.6374751802696207,0,0.0,1,0.0104504127913052,0,0.0,0.06241,0.1640857105297752,0.3127703893606793,0.01952,0.3358300214001834,0.6641699785998165,24.761092053094817,4.454509907632633,0.3207892595606184,0.2290480065093572,0.218673718470301,0.2314890154597233,11.247362235652108,5.727031578048399,20.615077604315672,12455.719874947845,55.83978214295437,13.41062117754582,17.955046106533796,12.126925646305176,12.347189212569605,0.5561432058584215,0.7753108348134992,0.7057704502219404,0.5609302325581396,0.1274165202108963,0.7377431906614786,0.9219512195121952,0.8627450980392157,0.6968503937007874,0.1924882629107981,0.4918755163866703,0.6913407821229051,0.65098374679213,0.5188794153471377,0.1124324324324324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0047930768918973,0.0069893182117895,0.0092325505809701,0.0113090879505329,0.0134617734511832,0.0157538925880229,0.018080653394589,0.02012921957104,0.0222538411931498,0.0242037171824863,0.0261912339962422,0.0281891480521617,0.0303495451689004,0.0324537959074163,0.0342909718704448,0.0362749059712163,0.0384659309170568,0.0406428794340996,0.0423772986948,0.0571386788116826,0.0716476339010017,0.085171118618461,0.0981699621371476,0.1105312542830333,0.126048287312683,0.1387270971917205,0.150211302839016,0.1619427142872405,0.1730422656082385,0.1858010597510015,0.1981587260374746,0.2092221714832452,0.221002569288799,0.2309706089405139,0.2401594861003433,0.2500390494254156,0.260200924748844,0.2691251560195166,0.2772846491278304,0.2839084584486092,0.2903957709580838,0.2972413221771187,0.303369034625856,0.3092270842705509,0.3144073023313186,0.3188567418898091,0.3241118303685203,0.3280106885279925,0.332104345068189,0.3319359447874262,0.33127929418252,0.3308306754353778,0.3305865314989138,0.3297439792681292,0.3278346402320192,0.3265659227277056,0.3286210930420312,0.3285773082727397,0.3292152333888382,0.3306635080000752,0.3324406887249068,0.332682250645832,0.3339976710856324,0.335849147597116,0.3363172359638791,0.3379355687047994,0.3414641842852635,0.3450189065978725,0.3486973149549837,0.3509117566205443,0.3533778371161549,0.3567533291058973,0.3584515139900345,0.35800718472301,0.359566615073223,0.3685649202733485,0.3704375882234321,0.3700873362445415,0.3717754172989377,0.0,2.029275737314671,56.70969231815393,188.69854232494384,269.67410318373214,fqhc7_80Compliance_implementation,19 -100000,95716,44040,416.1477704876928,6434,66.07045843955034,4990,51.652806218396094,1992,20.498140331814955,77.38171245272493,79.75580668526707,63.34258245905804,65.0951625827544,77.13196817498239,79.50429002086344,63.24944005470102,65.00351794272058,0.2497442777425362,251.5166644036384,0.0931424043570245,91.64464003382022,150.45514,105.38826893279186,157189.1219858749,110105.1746132223,335.80274,215.8190969860654,350354.2772368256,225000.4774395769,348.21785,167.64608960106762,360666.2313510803,172793.1657227954,3606.72219,1633.2563452875695,3736827.698608384,1675034.6392322795,1239.09369,543.9561041092277,1286152.1689163777,559910.9038655205,1970.1649,830.1234329141785,2029627.2096619168,843541.5336973019,0.38038,100000,0,683887,7144.960090267041,0,0.0,0,0.0,28546,297.7349659409085,0,0.0,31967,330.8746709014167,1669255,0,59847,0,0,5895,0,0,65,0.6790923147645117,0,0.0,0,0.0,0,0.0,0.06434,0.1691466428308533,0.3096052222567609,0.01992,0.3193910730121194,0.6806089269878806,24.690008682711845,4.438184761903285,0.3254509018036072,0.2202404809619238,0.2152304609218437,0.2390781563126252,11.07774827750655,5.535755149280261,21.215039386937644,12409.843857686286,56.34815040516699,13.105122969183562,18.14452735779155,12.00707730628516,13.09142277190672,0.5515030060120241,0.7825295723384895,0.7068965517241379,0.5837988826815642,0.0980720871751886,0.7080459770114943,0.9143576826196472,0.8575063613231552,0.7529880478087649,0.1325757575757575,0.4960651289009498,0.707977207977208,0.6588139723801787,0.5321992709599028,0.0882669537136706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207907956571,0.0047542296424697,0.0071437269148029,0.0091014363204193,0.0113005268832516,0.0135234215885947,0.0158858016823859,0.0182530932255298,0.0205064248694069,0.0226532910226225,0.0248918414631645,0.0270636550308008,0.0290315614105451,0.0309657481328869,0.0328696154719395,0.0349783388649358,0.0369645372441793,0.0388522803922586,0.040884460576813,0.0429055286332134,0.0572637075718015,0.0713350990881586,0.0847244226673241,0.0977392987513018,0.1102016707450848,0.1255472599987309,0.1380524964457742,0.1498408440058339,0.1606593453550978,0.1710004076291004,0.1844484434434973,0.1967305402186857,0.2092628647878438,0.2202932140943926,0.2299332299332299,0.240085911033368,0.2502091210225181,0.2600465634173499,0.2686003380332815,0.2759141976934617,0.2828625322578779,0.289596463943685,0.2963055032730802,0.3024164549072254,0.307958687727825,0.3127974355813093,0.3181021970872328,0.3232096942542196,0.3281699261753659,0.332453791047139,0.3314539460405032,0.3301722123723525,0.3290492412511613,0.3285969821990133,0.328646149742921,0.3271344814950531,0.3250773993808049,0.3252909498633231,0.3258501548830718,0.3273818000569638,0.3277109785515268,0.3283172925213001,0.3285443209541881,0.3285039229671897,0.329199846493332,0.331742119600467,0.3321317059324439,0.335315287122516,0.3380252174216758,0.3412258473234083,0.3452397182458532,0.35,0.3530267569106205,0.3557581794498506,0.358079426469201,0.3626203780763286,0.3646120821833793,0.3641912512716175,0.3694868238557559,0.374223602484472,0.0,1.8269905749840625,57.75569265192738,187.0594000309401,275.5542159989978,fqhc7_80Compliance_implementation,20 -100000,95856,44201,418.0020030045068,6223,63.80403939242197,4893,50.44024369888166,1995,20.3743114672008,77.44506122741345,79.72372228295826,63.40474875222951,65.08460768274169,77.20053100760686,79.48220320501402,63.31399731188875,64.99812152676546,0.2445302198065917,241.51907794424687,0.0907514403407603,86.48615597623177,151.58286,106.1659276431567,158136.01652478718,110755.6414237572,334.95689,215.30370231704316,348851.17259222164,224025.1964582741,344.8611,166.25617889035172,356598.35586713406,170955.24757249263,3562.32166,1608.4362555293667,3676614.651143382,1638259.8225769578,1210.39154,529.1480806171273,1247718.4735436488,537023.8280515849,1968.4962,822.2478075822164,2014001.2518778169,824370.0176254413,0.38172,100000,0,689013,7188.00075112669,0,0.0,0,0.0,28544,297.1540644299783,0,0.0,31636,326.8235686863629,1668119,0,59926,0,0,5909,0,0,53,0.5529127023869137,0,0.0,0,0.0,0,0.0,0.06223,0.1630252541129623,0.3205849268841395,0.01995,0.332461135908881,0.667538864091119,24.6653849013036,4.447204334085923,0.3145309625996321,0.2301246678929082,0.2164316370324954,0.2389127324749642,11.244344320170857,5.612663507102989,21.21949511636685,12382.67650538542,55.29827704723749,13.380360142055508,17.297050471231692,11.756551924778645,12.864314509171647,0.5497649703658287,0.7682060390763765,0.6972059779077323,0.5779036827195467,0.1197604790419161,0.703416149068323,0.8943488943488943,0.8274111675126904,0.7540983606557377,0.1316872427983539,0.4948682385575589,0.6968011126564673,0.6524017467248908,0.5251533742331288,0.1166306695464362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.004497614440989,0.0066921509181428,0.0090434817912386,0.0111772715264088,0.0134295103315664,0.0154709524973519,0.0175492265491959,0.0197387903481093,0.0218711656441717,0.024094041511791,0.0263581633385639,0.028429690950361,0.0305399261446043,0.032372062353826,0.0345486075269927,0.036435279030323,0.0383941802505725,0.0403239202657807,0.0420698840814967,0.0564355506428772,0.0705546790927042,0.0842914284517601,0.0970920653576938,0.109013814799617,0.1242677250129302,0.1370586864900353,0.149097361682233,0.1604888244326906,0.1708851953722829,0.1835416509935838,0.1965402183420259,0.2087386018237082,0.2195183195772741,0.2295821984008435,0.2399995575025443,0.2497436697574893,0.2586458731264466,0.2677253715101846,0.27547623133688,0.282759258616902,0.2892693423145289,0.2965675544564998,0.3020171185730532,0.307433703501426,0.3134043470229665,0.3184032256044878,0.3235623552172695,0.3281602197061948,0.3322469122769977,0.331547707175256,0.3306259877688449,0.3297674941662684,0.3284407634137558,0.3277108076888902,0.3263157894736842,0.3256745462286913,0.3260414622980838,0.3268258642111892,0.3273738648278803,0.3279089754128989,0.3295654060878657,0.3306357172731075,0.3318465655664585,0.3318465227817745,0.3343378188808645,0.3350728912587214,0.337976585488011,0.3393006408470326,0.3417236337772157,0.3432108880695526,0.3432812001276731,0.3466020028972728,0.3491783136230993,0.3505545549341169,0.3506166926116633,0.3557453416149068,0.3615689547256415,0.3623066104078762,0.367816091954023,0.0,2.3997423271138905,56.39105771533645,180.40366671486427,273.27248547872773,fqhc7_80Compliance_implementation,21 -100000,95689,43886,414.9066245858981,6268,64.33341345400203,4955,51.249359905527285,1916,19.73058554274786,77.29747507811412,79.70247628023823,63.28577397120039,65.06630062625361,77.0618388302028,79.46511293657343,63.19898714875159,64.98114289909981,0.2356362479113158,237.3633436647964,0.0867868224488006,85.1577271537991,151.90692,106.38453656587603,158750.66099551675,111177.39402217188,336.45675,215.60844396393537,351078.56702442287,224785.77889196816,347.80787,167.452918236616,359715.6412962828,172156.5392472187,3508.73028,1583.237243549862,3628171.148198853,1615930.4136837688,1156.4845,507.4051768350246,1194103.7527824517,515781.9779023968,1876.66898,782.4568628715447,1931826.7512462249,791600.0761055668,0.38036,100000,0,690486,7215.939136159852,0,0.0,0,0.0,28640,298.7490725161722,0,0.0,31944,330.1215395709016,1659505,0,59574,0,0,5846,0,0,55,0.5747787101965743,0,0.0,0,0.0,0,0.0,0.06268,0.1647912503943632,0.3056796426292278,0.01916,0.3315573146597655,0.6684426853402344,24.96820254181444,4.351164463833318,0.3376387487386478,0.2262361251261352,0.217356205852674,0.2187689202825428,11.066991176355131,5.677673634141727,20.30084289208161,12452.807641300791,55.78155399635358,13.420218944945605,18.687743051592307,11.900545669517934,11.77304633029774,0.568920282542886,0.8073148974130241,0.6921697549312612,0.5812441968430826,0.1199261992619926,0.7254901960784313,0.9147869674185464,0.8512195121951219,0.7458333333333333,0.1415929203539823,0.5146739130434783,0.7479224376731302,0.6405384006334125,0.5340501792114696,0.1142191142191142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024524707122299,0.0048282717627249,0.0071475709426874,0.0094197744131693,0.0116984049479166,0.0139440607875491,0.0160132185549345,0.0181470966687771,0.0200660687073647,0.0221810324523046,0.0245658662673217,0.0266380390787121,0.0287648402296249,0.030717708279664,0.0328642375558836,0.0347959204782887,0.036981374571159,0.0388760824870724,0.0411677191814313,0.0428960011672381,0.0575589169313053,0.0709649728869627,0.0840512492261199,0.097239754270807,0.1100176154763035,0.1253623341726085,0.1375543997452499,0.1499137325068694,0.1612040849061647,0.1711258079062077,0.1847102848084202,0.1973704177415508,0.2093757828582631,0.2193008402624861,0.2294050217137314,0.2399822498335921,0.2505057052492763,0.2598332957873395,0.2680693462997887,0.2764011461318051,0.2840362806537931,0.2909674321649823,0.2976064995203524,0.3039616912497149,0.309559145540363,0.3143724396624056,0.3198792010225307,0.3248435249276581,0.3292795306760808,0.3327470609238419,0.3321951087836743,0.3312954554863996,0.3307569484675927,0.3300056507816915,0.329154211097726,0.3277909738717339,0.3264240506329114,0.3275350438560537,0.3284828244274809,0.3294982991682844,0.3306694052842872,0.3314300340624938,0.3339393559442459,0.3354646111346269,0.3364501666307032,0.3375691899898651,0.3385524708021937,0.3411941796287004,0.3455946750744438,0.3485190912334959,0.3518965438732298,0.3535589264877479,0.3554773427188737,0.3562651699029126,0.3600375234521576,0.3635288552507095,0.3703533026113671,0.3707228183842883,0.3702174511423066,0.3720306513409961,0.0,2.023056638326072,56.160153275977166,184.2963329597402,277.52975521052446,fqhc7_80Compliance_implementation,22 -100000,95813,43846,412.9189149697849,6307,64.45889388705082,4852,49.89928297830148,1917,19.51718451567115,77.32864418348662,79.64004635196808,63.32870225298407,65.03877914343467,77.08104922099,79.39702979340747,63.23581648128242,64.9508122090134,0.2475949624966205,243.01655856061188,0.0928857717016455,87.96693442126013,149.63146,104.87909659239756,156170.31091814264,109462.282354584,331.0459,213.64643742588885,344781.6997693424,222251.9151116121,348.40832,169.150612363915,358846.61789110035,172809.61824878573,3478.22209,1599.6488944907076,3578715.236972018,1618310.483190253,1183.93728,527.7517029926761,1215460.5533695845,530634.2215849586,1884.81424,801.5329494646747,1921076.889357394,797456.9464519003,0.37888,100000,0,680143,7098.6504962792105,0,0.0,0,0.0,28172,293.24830659722585,0,0.0,31977,329.03676954066776,1670952,0,60026,0,0,5908,0,0,57,0.5949088328306179,0,0.0,1,0.0104369970672038,0,0.0,0.06307,0.1664643158783783,0.3039479942920564,0.01917,0.323943661971831,0.676056338028169,24.400183672998818,4.351012973384338,0.3264633140972794,0.2271228359439406,0.2186727122835944,0.2277411376751855,11.266577208067242,5.828117099421904,20.637721102350216,12382.185903813384,55.46664348934556,13.407323269196016,18.11129957609374,11.94617405813331,12.00184658592248,0.5719291014014839,0.8003629764065335,0.6900252525252525,0.6069745523091423,0.1411764705882353,0.7354227405247813,0.9294117647058824,0.8502304147465438,0.7573529411764706,0.1618257261410788,0.5074712643678161,0.7193500738552437,0.6295652173913043,0.5551330798479087,0.1354166666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023902364916189,0.0049264079795645,0.0071424948003855,0.0093247196489517,0.0113992271710392,0.0136835675015271,0.0161043726429517,0.0184004000530682,0.0204283933206613,0.0227882037533512,0.0249492817475767,0.0269388257750685,0.0289193772159704,0.03098684345982,0.0330710610169841,0.0351966445934358,0.0373267931245019,0.0395442150773984,0.0416939328783771,0.0438303408795212,0.0579835614152202,0.0707833214838359,0.0842408678790419,0.0971037033923241,0.1095146736380502,0.1252920344627094,0.1380323210044112,0.1497541873284099,0.1614298530416951,0.1711571656785067,0.1843822693202378,0.1972083964509846,0.2091847276444425,0.2196167175013391,0.2291348026540201,0.2386940240632824,0.2475459814399142,0.2557065798808572,0.2638526024036168,0.2717689298782936,0.2802254514247277,0.287579322721781,0.2939919259083353,0.2998870436684371,0.3056022204367833,0.311713957765079,0.3167548456658559,0.3219303837817162,0.3273841201438195,0.3308417891492148,0.3302213887727156,0.3288950825100723,0.3283387990500961,0.3285216886696648,0.3281608681394031,0.3266243643123819,0.3254743192823688,0.3267645946079318,0.3267804027488119,0.3286675831533092,0.3300573915000562,0.3319091700292744,0.3328795526420508,0.3332290432878181,0.3344636029146526,0.3349882414423831,0.3370760900541464,0.3416098312223025,0.3443133685721287,0.3464096271079091,0.349240287507961,0.3507197110532745,0.3527742749054224,0.3545252849820213,0.3576346317080072,0.3643559606620292,0.3684210526315789,0.3740861088545897,0.3708390646492435,0.3670542635658915,0.0,2.851332132761116,59.86297550971535,176.3734275339561,263.7033980962584,fqhc7_80Compliance_implementation,23 -100000,95739,44168,417.6145562414481,6299,64.43560095676787,4886,50.36609949968143,1886,19.34425887047076,77.35098256499538,79.69896754487374,63.33757887846742,65.07077281013427,77.11519603857957,79.46451299893424,63.24934845365603,64.98570051401185,0.2357865264158078,234.45454593949933,0.0882304248113854,85.07229612241929,150.18432,105.21175313897488,156868.48619684766,109894.35145444894,331.34519,212.8949758972782,345442.70360041363,221722.33360331348,346.56994,167.56729284874342,357586.18744712183,171662.53629464505,3502.68991,1592.8327477364585,3614039.952370507,1619492.3253086573,1160.89146,515.6632441342762,1195342.5667700728,521505.9409673852,1855.0933,781.2281955600243,1903357.9210144249,786704.5936992222,0.38189,100000,0,682656,7130.385736220349,0,0.0,0,0.0,28155,293.3914078902015,0,0.0,31825,328.02724072739426,1672196,0,59979,0,0,5824,0,0,52,0.5326982734308902,0,0.0,1,0.0104450641849194,0,0.0,0.06299,0.1649427845714734,0.2994126051754247,0.01886,0.3318731117824773,0.6681268882175226,24.79398390958288,4.430095473374075,0.3248055669259108,0.2251330331559558,0.225542365943512,0.2245190339746213,11.001945229442743,5.503277157859719,20.04181232217396,12453.014442568596,55.15789503112944,13.093585920054483,17.773893761744077,12.263479927159503,12.026935422171364,0.5577159230454359,0.7790909090909091,0.7013232514177694,0.5698729582577132,0.1157702825888787,0.7237871674491393,0.916010498687664,0.8658227848101265,0.7790697674418605,0.1352459016393442,0.4988913525498891,0.7065368567454798,0.6468120805369127,0.5059241706161137,0.1101992966002344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0045509370470601,0.0067273446774831,0.0092122369383277,0.0113369462435562,0.0135904144312895,0.0157490749329772,0.0180135126860035,0.0202579774729655,0.0225572374548394,0.024622765294407,0.0266172575909996,0.0288396290432028,0.0308525646966748,0.0329505947406971,0.0349778287698843,0.0370186283951,0.0389867795695577,0.0409540345806344,0.0429016429308135,0.0580000626350568,0.0719419192183364,0.0854521625163827,0.0983325623449262,0.1107081866289979,0.1261508863542668,0.1392695032452382,0.1505847797631083,0.1623348182332895,0.1732656804797202,0.1868408863227516,0.1990280754161525,0.2105578035939607,0.220828956582633,0.2296801893543237,0.2395969583434943,0.2491594902210457,0.2581632423430924,0.2669996027467227,0.2748128360638822,0.2823525326419113,0.2896384639692888,0.2962708816430836,0.3018854363814954,0.3080882263683706,0.3133887349953832,0.3184018007878447,0.3234479076625819,0.328918922417699,0.333148536807508,0.3316218583653392,0.3308259282220844,0.3308505085558706,0.3306930406325118,0.3297084201130615,0.3284527167913651,0.3262617133615564,0.3275768490649824,0.3291658827754878,0.3293697554008213,0.3307228238468168,0.331951354339414,0.333500837520938,0.3343460292639338,0.3348531387982338,0.335896166175819,0.3384046637281387,0.3422268313377958,0.3466368183567106,0.3505424024071581,0.3530456159519257,0.3558044482191199,0.356994525202945,0.361208074062832,0.3628451099672438,0.3651957884774636,0.3691451538104807,0.3706931495743818,0.3706061444782729,0.3707129094412331,0.0,2.578195840348673,55.67435164314392,181.8893848769687,271.5152039700593,fqhc7_80Compliance_implementation,24 -100000,95828,44239,417.7275952748674,6326,64.67838210126476,4977,51.20632800434111,1999,20.380264640814797,77.51248185563044,79.79641438485959,63.42745123530996,65.10983016697445,77.25720728201168,79.5465951792702,63.333229971624206,65.02103868597217,0.2552745736187631,249.81920558938955,0.0942212636857533,88.79148100227496,151.558,106.15987625762818,158156.2800016697,110781.68829322138,337.18566,216.31510681271556,351149.99791292736,225017.1837174057,352.88754,170.40767161677226,364072.859706975,174598.59796088687,3573.06497,1624.8167711477442,3680123.575572901,1647055.7886502305,1227.26765,541.7703805946918,1263551.2376340944,548209.9288252835,1966.50538,822.9739299004823,2007447.030095588,819869.6573684998,0.38168,100000,0,688900,7188.921818257712,0,0.0,0,0.0,28606,297.7522227323955,0,0.0,32413,333.94206286262886,1670185,0,59907,0,0,5983,0,0,60,0.6261218015611303,0,0.0,0,0.0,0,0.0,0.06326,0.1657409348145043,0.3159974707556117,0.01999,0.3282996073693748,0.6717003926306252,24.678857195928792,4.401007273782982,0.3261000602772754,0.2248342374924653,0.21458710066305,0.2344786015672091,11.308552437341456,5.851943718946133,21.114413730465504,12423.613364818975,56.258555964331045,13.34153414895392,18.34073664324956,11.823207535851813,12.75307763627576,0.5549527828008841,0.7694369973190348,0.6882316697473814,0.5917602996254682,0.130248500428449,0.7232897770945427,0.9143576826196472,0.8564593301435407,0.757201646090535,0.1481481481481481,0.4953754080522307,0.6897506925207756,0.6298755186721992,0.5430303030303031,0.1255411255411255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022564912067674,0.0046383974235626,0.0068316119157907,0.008746740266461,0.0109815315223795,0.0133224855079833,0.015668587485492,0.0180188448360254,0.020034104949302,0.0220267921055322,0.0240438277609953,0.0263462859838579,0.0287704732742853,0.0309679411310657,0.0328147712863019,0.0350764845016887,0.0368162910535791,0.0391170920853463,0.0409174483467855,0.0429749312900807,0.0577873725048495,0.0717818417558058,0.0850762846843826,0.0974928314094552,0.1096977993050437,0.1254053254750362,0.138393708798779,0.1499920250943697,0.1613843001664746,0.1725604009595613,0.1859964942843931,0.1983365737740332,0.2104840285770124,0.2212163239453538,0.2309973963768991,0.2412767228126831,0.2499470757985983,0.2590341821776394,0.2674089343965204,0.2745270617820198,0.2819288227490338,0.2890468422279189,0.2963185769725279,0.3032293507858405,0.3089447625503892,0.3146812771028094,0.3200917682850802,0.3247834017327861,0.3289200582707009,0.3331013929551392,0.3321041621969534,0.3309499349359633,0.3300723215787408,0.328982399585534,0.3284505208333333,0.3268455761128412,0.3253112951140888,0.3256229215471061,0.3265514773540537,0.3277432232539074,0.3298280410905076,0.3305436027002487,0.331261380046462,0.3321733699167949,0.333301453710788,0.3326856817180902,0.3327197031918207,0.3362851173957781,0.3386473598106443,0.3394347979461451,0.3415466092186167,0.3443334553632132,0.3481720964934096,0.3484186746987951,0.3497820239309897,0.3510365711623573,0.3486100676183321,0.3544303797468354,0.3605756177029595,0.3616222305670297,0.0,2.83300154511083,56.30003573723264,191.35493991064268,269.8986830598896,fqhc7_80Compliance_implementation,25 -100000,95740,44243,418.2473365364529,6247,64.05890954668895,4829,49.88510549404638,1946,19.928974305410488,77.31288813594676,79.67139174999926,63.318020272784125,65.06198027913247,77.074827985624,79.43348701771126,63.23079680804405,64.97701466334134,0.2380601503227666,237.90473228800124,0.0872234647400773,84.96561579113404,152.66966,106.88457831038396,159462.77418007102,111640.4619912095,335.63941,216.29053951106823,350000.5953624399,225341.2361719953,346.12012,167.37726307477527,357891.7171506163,172061.07568870368,3432.17818,1553.964351686879,3547134.8965949444,1585348.9886012955,1159.50339,512.772453688936,1193645.3519949864,518137.7937005808,1902.63234,791.8457837578837,1950467.9130979737,797346.4463797851,0.38196,100000,0,693953,7248.307917275956,0,0.0,0,0.0,28602,298.14079799456863,0,0.0,31617,326.551075830374,1657532,0,59529,0,0,6091,0,0,58,0.6058073950282014,0,0.0,0,0.0,0,0.0,0.06247,0.1635511571892344,0.3115095245717945,0.01946,0.3349588540079244,0.6650411459920755,24.809390274249875,4.413263430851095,0.3230482501553116,0.2360737212673431,0.2215779664526817,0.2193000621246635,11.200969565129906,5.871935246700682,20.715035263960026,12466.78673911908,54.64339293581479,13.512914111401148,17.518472636297332,12.004415301522592,11.60759088659371,0.5566369848829985,0.7649122807017544,0.6993589743589743,0.5672897196261683,0.1114258734655335,0.738498789346247,0.9010416666666666,0.9,0.6914498141263941,0.1632653061224489,0.4938718662952646,0.6957671957671958,0.6324786324786325,0.5255930087390761,0.0996523754345307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0045814370711237,0.0068588358242271,0.0089993093080892,0.011259039269332,0.0133604887983706,0.0155603140613847,0.0177435656603812,0.0202220541026846,0.0220866057074983,0.0244127508176887,0.0265030548852492,0.0286014007590015,0.0306635354222029,0.0328694198846578,0.0350465599388157,0.0369139330682571,0.0388785706133206,0.0410752352727083,0.0431448546036112,0.0579109463903533,0.0719651788143218,0.0860660465408937,0.0982598180957888,0.1097872160948143,0.1256082081658557,0.1379211545604075,0.1510016392395631,0.1621200145265001,0.1731429061588608,0.1863144069073918,0.1985141448222164,0.2103237589963253,0.2209135745765121,0.2312101210121012,0.2422299018630513,0.2521120001785575,0.26156407487401,0.2701518127831586,0.2785187222145836,0.2855191414977484,0.2921934389801766,0.2981804415209521,0.3040711400870076,0.3093546153565832,0.3147849230503838,0.3199248826291079,0.3248940853169807,0.3291280244546914,0.3340555394086718,0.3332749019026172,0.3326034565861048,0.3317486739645638,0.3302067048810144,0.3303596693722541,0.3285938027822989,0.3269365190315816,0.3270003292723082,0.3270552347003479,0.327883253554205,0.3275923662686847,0.3278415181229901,0.3288304376142356,0.32921036120821,0.3307027705376967,0.3314409794893261,0.33227440542629,0.3348098462317281,0.3372060173741083,0.3399024624240486,0.3424739058780443,0.347146124793872,0.3492183085326804,0.3518715763846622,0.35283054353959,0.3532061159179803,0.3585399661173571,0.3626953521412624,0.368377253814147,0.3700757575757575,0.0,2.1574985374167475,54.34489201395927,184.33277814099716,268.6611495196241,fqhc7_80Compliance_implementation,26 -100000,95784,44316,418.3892925749603,6305,64.57237116846237,4982,51.45953395139063,1966,20.180823519585733,77.37208356525132,79.71091583308129,63.35007434272507,65.07947280824769,77.12175486129485,79.4592070865364,63.25726572931779,64.98816610743872,0.2503287039564696,251.7087465448924,0.0928086134072856,91.3067008089712,150.1511,105.17652360597766,156759.18733817755,109805.09026089904,334.29372,215.3592918957609,348453.93802722794,224285.61975416957,354.79062,171.4615911125636,366752.2446337593,176238.86303251685,3555.04335,1627.9460645255838,3673163.764303016,1661569.9880241195,1180.55523,528.31639692385,1215509.4170216322,534889.9062749823,1928.27834,812.6246627272068,1980368.140816838,821250.0018134592,0.38136,100000,0,682505,7125.417606280798,0,0.0,0,0.0,28447,296.40649795372923,0,0.0,32493,335.5153261505053,1670162,0,60035,0,0,5951,0,0,56,0.5846487931178485,0,0.0,1,0.0104401570199615,0,0.0,0.06305,0.16532934759807,0.3118160190325139,0.01966,0.340654347167525,0.659345652832475,24.480591276413605,4.395815770914599,0.3327980730630269,0.223203532717784,0.2236049779205138,0.2203934162986752,11.406756431834689,5.994002625705715,21.017001251001084,12458.118535952271,56.81863769091826,13.376882702256657,18.72914785932519,12.655706551210246,12.056900578126164,0.5624247290244881,0.7850719424460432,0.6869722557297949,0.5897666068222621,0.1211293260473588,0.7220990391722099,0.910843373493976,0.864406779661017,0.7208480565371025,0.1570247933884297,0.5028933590520804,0.7101865136298422,0.6281124497991968,0.5451263537906137,0.1109813084112149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0043996593812091,0.0067179476771325,0.009254274133745,0.0113088579273873,0.0136931910734647,0.0159312601290401,0.0180725350531665,0.0204381948986265,0.0226998260157609,0.0247384224387944,0.0269912458050677,0.0292234157372667,0.0310131795716639,0.0332460247076535,0.0353563531915772,0.0374595025411185,0.0396241872426916,0.0416229414515039,0.0435493274476325,0.0579365327823519,0.0722413973433741,0.0852770061323968,0.0984123314875329,0.1106018942865872,0.1264830486091301,0.1394915056646565,0.1508793943131792,0.1616035511166597,0.1714876475755822,0.1848421279113549,0.198177553424924,0.2090374604692611,0.2198585436776457,0.2299046508814569,0.2402250102428383,0.2504155186453534,0.2594574541039449,0.2676937727442778,0.2762490409609857,0.2831528780307237,0.2906752411575563,0.2977842937879827,0.3035245931088995,0.3088044283130409,0.3140094833425703,0.3193926345041684,0.3249825141476442,0.3303005202805891,0.335012926713449,0.3338041051300675,0.3333974632054858,0.3323933732816355,0.3305561582411224,0.3296265461465271,0.3281968016665645,0.3269398292601802,0.3274103755768315,0.3280827312262439,0.3290089703727529,0.330072158185737,0.3310999110584049,0.3317486910994764,0.3319559536306984,0.3319228734913689,0.333768437540791,0.3332951650302007,0.3351450420274284,0.339225974574779,0.3394788299612913,0.3419404963210091,0.3441741629850428,0.3470351252675311,0.3510605829391118,0.3527688527688528,0.35257854179016,0.3608735491753207,0.3620313429875025,0.371645432366495,0.3795180722891566,0.0,2.14211343661265,59.53234529027244,191.06199955367933,267.2014135241226,fqhc7_80Compliance_implementation,27 -100000,95638,44470,421.0251155398482,6330,64.92189297141303,4972,51.31851356155503,1955,19.992053367908152,77.25911226955019,79.65947757375775,63.27736057920528,65.04769907516805,77.01838454042553,79.42196795748478,63.1875911236481,64.96270917352487,0.2407277291246572,237.5096162729733,0.0897694555571817,84.98990164318343,149.49044,104.81383784373926,156308.62209581965,109594.34308929429,337.30069,217.06736278202104,352034.64104226354,226317.533597546,356.60167,172.95674736054673,369756.1743240135,178328.14064466357,3546.03199,1623.9412445954335,3659096.980279805,1649340.6643754907,1203.32267,534.1417871570159,1241881.6056379264,542179.726841858,1914.25888,804.1122514262365,1958286.7897697568,801052.5606229663,0.38301,100000,0,679502,7104.937367991802,0,0.0,0,0.0,28642,298.79336665342225,0,0.0,32674,338.53698320751164,1663373,0,59770,0,0,5853,0,0,68,0.7005583554654008,0,0.0,2,0.020912189715385,0,0.0,0.0633,0.1652698362967024,0.3088467614533965,0.01955,0.3285606631499623,0.6714393368500376,24.56491499402155,4.309242313869087,0.33266291230893,0.2272727272727272,0.2135961383748994,0.2264682220434432,11.159100423588248,5.843326203127216,20.873605622782087,12491.061635379076,56.61740356315083,13.677401346291946,18.701743240694796,11.881341210319206,12.356917765844882,0.5623491552695092,0.7876106194690266,0.6916565900846433,0.5809792843691148,0.1287744227353463,0.745799853907962,0.9032258064516128,0.8761261261261262,0.7729083665338645,0.1916666666666666,0.4926450180405218,0.7155172413793104,0.6239669421487604,0.5215782983970407,0.1117381489841986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024006563819981,0.004522455105,0.0071047236262509,0.0095208096244513,0.0117605168116384,0.0137595991281852,0.0159777311010053,0.0180079014261359,0.0201288080147209,0.022079371091071,0.0241756889763779,0.0262655303419242,0.0283777668065498,0.0302768076974585,0.032467130384528,0.0344428244977303,0.0363425398338271,0.0385014636576909,0.0407023310483996,0.0429637815634187,0.0577716931244578,0.0718662602520189,0.0857136856254725,0.0985762726143088,0.1109198437004963,0.1274876346420665,0.1394550958627649,0.1508609666695081,0.1625245957738044,0.1727018900343642,0.1862587514428418,0.1991222366710013,0.2114207281204383,0.2219495091164095,0.2324999172833651,0.2430394367135701,0.2525987177048483,0.2621896888146987,0.2700925862735731,0.2781237791004987,0.2852865746811646,0.2917272769931021,0.2983207737494808,0.3045067577317108,0.3106984343754572,0.3152274665381335,0.3202761217445873,0.3249186810383315,0.3298413687462679,0.3345417978776893,0.3334638546083011,0.3321826542025103,0.3312820948096592,0.33089699065665,0.3301817747307732,0.3287081192505307,0.3263087632306665,0.3262202155357084,0.3264577684730754,0.3275584061917729,0.3290934711131987,0.3309170132699544,0.3321364829396325,0.3339886950110592,0.33436688779925,0.3350171857098219,0.3351075942160992,0.3399219438499307,0.3430158953439302,0.3448289578361177,0.3472837757572988,0.3497203728362184,0.3515713744793639,0.3490895295902883,0.35409866641798,0.3537190082644628,0.3533171028606208,0.3547868061142397,0.3704936217415419,0.3799533799533799,0.0,2.609313610451659,59.963736595235176,183.07417305958455,271.4221392744353,fqhc7_80Compliance_implementation,28 -100000,95627,44166,418.0304725652797,6362,65.46268313342466,5024,52.056427577985296,1960,20.245328202285965,77.28554750318864,79.71812482031861,63.27381344368565,65.0721619462361,77.04043555725374,79.47101568300879,63.18394445703284,64.98367386182501,0.2451119459348945,247.10913730982043,0.0898689866528101,88.48808441108247,149.63124,104.8018134703965,156473.8410699907,109594.37551151504,334.0593,214.3500736457431,348824.6415761239,223641.19406277867,349.06579,168.69581443290275,361689.5855772952,173840.84710325862,3561.48192,1610.2675849573627,3693635.751409121,1653199.5083332325,1161.33841,514.8903301532848,1204389.1787884175,528379.1817721816,1919.39658,799.4152243021564,1983316.5528564109,814523.2745340453,0.38087,100000,0,680142,7112.447321363214,0,0.0,0,0.0,28365,296.1192968513077,0,0.0,31944,330.7434092881718,1671019,0,59955,0,0,6063,0,0,77,0.8052119171363736,0,0.0,0,0.0,0,0.0,0.06362,0.1670386221020295,0.3080792203709525,0.0196,0.3324372759856631,0.6675627240143369,24.66961950039826,4.333177949395418,0.3186703821656051,0.2336783439490445,0.2314888535031847,0.2161624203821656,11.072395384351545,5.686436238122777,20.908045703362276,12498.368030711792,56.84594968073257,14.034274211001566,17.942773572265022,12.947229555837632,11.921672341628366,0.5549363057324841,0.7802385008517888,0.683947532792005,0.5666380051590714,0.1086556169429097,0.7234848484848485,0.918032786885246,0.8300492610837439,0.717948717948718,0.1401869158878504,0.4948704103671706,0.7014725568942436,0.6343096234309623,0.5202247191011236,0.1009174311926605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023611674098094,0.0048991266774183,0.0072696259594687,0.0093815114092595,0.0116693118463354,0.0137925414336501,0.0158827309728555,0.0180716737495913,0.020169579936791,0.0223774361705396,0.0243429556225764,0.0266335117806023,0.0288002305665349,0.0310477054385024,0.0330418082129544,0.0348066241194906,0.0367986901282928,0.0389348731423111,0.0409888108248764,0.0429326908032668,0.0572414153556682,0.0717294714339606,0.0851459554883046,0.0983449394759853,0.1111733141794828,0.1264655108503405,0.1387265424096232,0.1503208749973349,0.1617231638418079,0.172992834044199,0.1864554899824139,0.1986904297298469,0.2103754876108702,0.2211144466113022,0.231167800328523,0.2420563133302997,0.2530066615996781,0.2613404559849432,0.2702853182133239,0.2782815025390021,0.2852758960106537,0.2916978922716627,0.2981719894729355,0.30416771730125,0.3103402105775668,0.3161539601027059,0.3209511519813578,0.3255813953488372,0.3300768073070735,0.3349189989164619,0.3342630394653516,0.3327002215891105,0.3319184341155234,0.3310379746835443,0.3307659137882325,0.3294466008990626,0.3282397930848447,0.329042453373718,0.3292374041621029,0.330377615362568,0.3302805667636295,0.3317655428639184,0.332745739947956,0.3326247482658312,0.3335417468257022,0.3343646006655574,0.3355335845208079,0.3388843673699367,0.3422482239866277,0.3455594640528042,0.347970362289195,0.3479345863863226,0.3524962178517398,0.3531245248593583,0.3539125539500844,0.355284937337432,0.3580265770581946,0.3633791430881164,0.3667301933024775,0.3686982693754703,0.0,1.8283910115216573,58.368942878171225,187.4884977482104,279.3240191999442,fqhc7_80Compliance_implementation,29 -100000,95814,44033,416.2230989208258,6431,65.95069614043877,5042,52.09050869392782,1966,20.268436762894776,77.35864855579545,79.66356449834178,63.35358995694328,65.05441025649654,77.11188485540193,79.41474626159575,63.26355360009679,64.9654984309762,0.2467637003935294,248.8182367460325,0.0900363568464897,88.91182552034138,151.47066,106.05245159428024,158087.7742292358,110685.34456530574,335.40228,215.12287532122505,349515.6762059824,223983.33006975797,347.75855,167.9064583080918,359049.72133508674,172351.39336172427,3603.65366,1629.6528206186704,3728696.463982299,1668624.1208323322,1191.9852,527.9798939906148,1230655.9584194378,537665.5555449788,1929.91328,801.7825640610919,1990707.2035401925,816523.4115244617,0.38107,100000,0,688503,7185.807919510719,0,0.0,0,0.0,28517,297.06514705575387,0,0.0,31875,328.7828501054126,1665623,0,59779,0,0,6049,0,0,72,0.751455945895172,0,0.0,1,0.0104368881374329,0,0.0,0.06431,0.1687616448421549,0.3057067330119732,0.01966,0.3306055646481178,0.6693944353518821,24.538400474838426,4.395923740821774,0.3228877429591432,0.2362157873859579,0.2205474018246727,0.2203490678302261,11.233754114929056,5.661298771917614,20.98496202548419,12464.581849202865,57.06366461940695,14.21987995467942,18.38182956306083,12.24368738407089,12.218267717595811,0.5585085283617612,0.7758186397984886,0.6848894348894349,0.572841726618705,0.126012601260126,0.7299546142208775,0.917995444191344,0.8723404255319149,0.6842105263157895,0.1594827586206896,0.4975806451612903,0.6928191489361702,0.6190871369294606,0.5441176470588235,0.1171786120591581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0045174163619605,0.0069243792897188,0.0092544674114889,0.0116534249080527,0.013783632572097,0.0157682434910157,0.0176573194740546,0.0197065974705269,0.0218601035209394,0.0240187643395608,0.0260836564301392,0.0278522628037191,0.0299659384422239,0.0321792386687012,0.0341237709658762,0.0362552768810528,0.0383877756238143,0.0404989924590232,0.0423806450269628,0.0576901008794349,0.071498018880746,0.0849596478356566,0.097723737862037,0.1095432798701709,0.1249696188352654,0.1375292857975808,0.1493091380979226,0.1600836927281267,0.171074495342031,0.1848992818922731,0.1975292615910517,0.2094606350587211,0.2204344592229611,0.2306049665375132,0.2408852146545801,0.250234375,0.2595504859611231,0.2690614504856131,0.2769408772753829,0.2842792334043144,0.2913725903297166,0.298450025457947,0.3042185289109528,0.3095272833381967,0.3144343880243656,0.3195820820820821,0.3241706522845222,0.3294561092185536,0.3344113842173351,0.3343521934667277,0.3339525283797729,0.333492876851174,0.3324475766853446,0.3317830609212481,0.3297512437810945,0.3285021858962174,0.3291368088883045,0.3299217854147769,0.3303843260861778,0.3316426209798617,0.3327058730284536,0.3330458379788375,0.3335499047832418,0.3361613921762394,0.3382021883671012,0.3395222428837076,0.3443394736010616,0.3463789577603836,0.3512002236689699,0.3525597113759876,0.3529663053345437,0.3553755616022274,0.3538000461077384,0.3571226548505704,0.3571175008874689,0.3561875480399692,0.3617064707083078,0.3663865546218487,0.3700912336374454,0.0,2.029539067287134,58.28395498603593,190.49322619178503,277.6179830919995,fqhc7_80Compliance_implementation,30 -100000,95876,44213,417.2577078726689,6280,64.33309691685093,4916,50.84692728107138,1944,19.973716049897785,77.41454581429173,79.70215891238786,63.37712166936033,65.06781546776031,77.17015288642449,79.4592196764478,63.28664410248721,64.98019261651551,0.2443929278672385,242.93923594005665,0.090477566873119,87.62285124480229,150.85378,105.78405313910577,157342.58834327673,110334.23707612517,336.4835,216.32184555057069,350525.6685719054,225195.9456736926,353.93017,170.52147713982407,367064.4999791397,176159.93364316868,3498.58615,1598.69169942921,3619268.9098418793,1637721.547047558,1170.94226,513.2137599992509,1210153.917560182,524163.3445696812,1903.13988,797.690374595701,1956599.9624515,806922.2474241628,0.38,100000,0,685699,7151.9358337853055,0,0.0,0,0.0,28425,296.03863323459467,0,0.0,32497,336.86219700446406,1667826,0,59918,0,0,6042,0,0,64,0.657098752555384,0,0.0,0,0.0,0,0.0,0.0628,0.1652631578947368,0.3095541401273885,0.01944,0.3305020476262703,0.6694979523737297,24.61343738416836,4.382144999281278,0.3264849471114727,0.2377949552481692,0.2144019528071603,0.2213181448331977,11.35424072522514,5.964868119643108,20.68395214703473,12415.067489827496,55.8796235260388,14.013703449724233,18.07061385425587,11.74057359690729,12.054732625151397,0.564686737184703,0.776732249786142,0.7046728971962617,0.5853889943074004,0.1102941176470588,0.7300380228136882,0.908675799086758,0.8501228501228502,0.7628458498023716,0.1059907834101382,0.5043043599000278,0.6976744186046512,0.6552587646076795,0.529338327091136,0.1113662456946039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024700106291441,0.0047515323438528,0.0072401310118945,0.0093192292855257,0.011627197885964,0.0136753528220677,0.0158414832925835,0.0180853776712398,0.0203176873180448,0.0226149927889778,0.024634830885215,0.026762268176596,0.0286882719220731,0.0309926712779973,0.0330436217046591,0.0350547407560421,0.0369558020195331,0.0390486553707445,0.0410663123365029,0.0429482312068983,0.0574300371189056,0.0713666147624073,0.0843826604370508,0.0974065518689626,0.1097983467593323,0.1257261147842251,0.1383533200559345,0.1509247448979591,0.1625485426535228,0.1732085292322191,0.1862211416399509,0.1986507232901593,0.2106744319972184,0.2207871675517384,0.2305502742029431,0.2405337818399097,0.2499581841902786,0.25922346462887,0.2679640718562874,0.2753437360473503,0.2825815405968078,0.2889403454607117,0.2951921256861631,0.3011193403801443,0.3072669826224328,0.312537751315903,0.3173681179740116,0.3220317411833581,0.3266779893946662,0.3314356664509226,0.3308143059203879,0.3302783855564271,0.3297228012845794,0.3286828422876949,0.3292101628974058,0.3276621787025703,0.3251951581808413,0.3264871244283442,0.3266424292078447,0.3269357569277377,0.3278189023478391,0.3297095730408018,0.3307425515022356,0.3314399002049363,0.3317577618887662,0.3332553788587465,0.3347910040890504,0.3372074858624675,0.339771852473931,0.3411452137362201,0.3437726613488034,0.3458853395388195,0.3472534332084894,0.349472891566265,0.3528644620400559,0.355419559844651,0.3572516758074345,0.3622924260834346,0.3591780821917808,0.3733840304182509,0.0,1.6549091287250106,58.0616795344496,191.6795014914244,261.799412608301,fqhc7_80Compliance_implementation,31 -100000,95708,43882,414.3749738788816,6363,65.37593513603879,5007,51.70936598821415,1927,19.7684624064864,77.36002699221102,79.73096831450029,63.33690834044432,65.08824462872137,77.12285505087668,79.49645748422792,63.24970994184288,65.00486183712766,0.2371719413343385,234.51083027237016,0.0871983986014441,83.38279159370643,150.72926,105.59989875833269,157488.67388306098,110335.49834740323,332.23271,212.8641589893876,346538.23086889286,221816.62869288636,350.72724,169.2941793304531,362338.8431479082,173823.5182100039,3557.88972,1603.6433849545842,3680490.2933924017,1638617.9576990253,1179.1106,517.518172005215,1217642.0048480795,526396.6916490648,1883.0283,775.1314848875198,1934594.621139299,780281.0300735488,0.37875,100000,0,685133,7158.576085593681,0,0.0,0,0.0,28253,294.5835248882016,0,0.0,32191,332.31286830776946,1671505,0,59934,0,0,6027,0,0,60,0.6269068416433318,0,0.0,0,0.0,0,0.0,0.06363,0.168,0.3028445701713028,0.01927,0.3312387791741472,0.6687612208258528,24.674946280638544,4.337376073098722,0.3133612941881366,0.2402636309167166,0.2292790093868583,0.2170960655082884,11.470764106888437,6.065804629896624,20.332738763970823,12386.540343535264,56.721375356901326,14.461855112321102,17.72601291585262,12.847198634532134,11.686308694195477,0.578789694427801,0.7863674147963424,0.7214786488209051,0.5984320557491289,0.1223551057957681,0.7472527472527473,0.9052631578947368,0.8782816229116945,0.7090909090909091,0.1377551020408163,0.515650741350906,0.7087912087912088,0.6643478260869565,0.563573883161512,0.1189674523007856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021472485845377,0.0044197102859633,0.0067483230670874,0.0091326520246246,0.0116359493876886,0.0136756140279418,0.0160958205912334,0.0183204392822878,0.0203731152568361,0.0226151231597698,0.0248621050257335,0.0269188123691018,0.0290197852823824,0.031105480538475,0.0331510524143623,0.0350282252228035,0.0372430797281617,0.0393697518242114,0.0413866988412972,0.0433369108774708,0.0574075234454957,0.0713485792035166,0.0843124501699467,0.0963914977755808,0.1082984533310841,0.1230891214716143,0.1359407652568713,0.1476660777761222,0.1584658599365581,0.1690408255207774,0.1823528778102142,0.1945986301814522,0.2066207316277957,0.2176688565088595,0.2281079892230714,0.2380061132276069,0.2483377956269522,0.2573902288188002,0.2664580711718758,0.2744725424427323,0.2819979188345473,0.2892184359369887,0.2960965861388012,0.3020519082507302,0.3075382131193317,0.3132935164090881,0.3175784719702751,0.3221739240956811,0.327057453416149,0.3318121265679201,0.3306587326162172,0.3305526877279923,0.3296156340768731,0.3300209734577276,0.3294624934949074,0.32701704937118,0.325461102850454,0.325930539393244,0.3280146080070992,0.3283781615956366,0.3300641973460106,0.3313266091625051,0.3321777629270737,0.333377902571645,0.3361860242119142,0.3374060883354564,0.3389709860197603,0.342989388834661,0.3465503289589417,0.3488010214260064,0.3509703405346027,0.3543622013651877,0.3561540397684369,0.3603013928000609,0.364880059970015,0.3674556213017751,0.3740831295843521,0.3718940936863544,0.3707927677329624,0.3754833720030935,0.0,2.3942807785878224,59.92850802163577,182.67143796546776,274.6633162062735,fqhc7_80Compliance_implementation,32 -100000,95745,44293,419.69815656170033,6330,64.71356206590423,4930,50.8538304872317,1931,19.75037860984908,77.33346816806463,79.69632760176405,63.32120940122799,65.07047033824651,77.09025255850429,79.4561138208472,63.23058213079079,64.98379640714873,0.2432156095603375,240.21378091686077,0.0906272704371957,86.67393109777777,151.5448,106.07565351925932,158279.5968457883,110789.7577098118,335.37355,215.61136212366628,349627.58368583216,224543.6447593416,347.7243,167.69258010222796,359342.2633035668,172111.12787118318,3514.40904,1603.4749855866796,3626379.152958379,1630595.7648339437,1178.80388,522.2793691389842,1213753.595488015,528085.6476522502,1896.4258,799.2765921676647,1941628.7012376627,800699.1642011999,0.38339,100000,0,688840,7194.527129354013,0,0.0,0,0.0,28533,297.3314533396,0,0.0,31948,329.855344926628,1664666,0,59756,0,0,6016,0,0,64,0.6579978066739777,0,0.0,0,0.0,0,0.0,0.0633,0.1651060278045854,0.3050552922590837,0.01931,0.326668671076368,0.673331328923632,24.69303286589485,4.412999573926961,0.3190669371196754,0.2373225152129817,0.2196754563894523,0.2239350912778904,11.307576196496088,5.777904502436953,20.57855721719982,12479.883048983422,56.11104958296189,14.086334493455068,17.78938044464773,12.054220999913182,12.181113644945912,0.5649087221095335,0.7888888888888889,0.6891290527654164,0.5974145891043398,0.118659420289855,0.7406015037593985,0.9046511627906976,0.8609756097560975,0.7814814814814814,0.1454545454545454,0.5,0.7216216216216216,0.6285468615649183,0.5362853628536285,0.1119909502262443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000151983383,0.0047154504522776,0.0069220307330044,0.0091243471722652,0.011482679359655,0.0136749177773931,0.0157097418749745,0.0180441305545916,0.0201238706512407,0.0224171639728537,0.0244507550516182,0.0267234741543041,0.0288246968933496,0.0307106076210092,0.032675085634105,0.0344813329474511,0.03606486083499,0.0378633019621678,0.0401917059123184,0.0420563667798446,0.0570059605206843,0.0713351264796073,0.0844980273650633,0.0976104835825918,0.1099346129508542,0.1257494527805094,0.1387904509283819,0.150522069545411,0.1616004101424817,0.1722577324010124,0.1848659829354477,0.1978661703601108,0.2100614564638059,0.2207296395558715,0.2307768475020078,0.241048586269146,0.2506838150740753,0.2599320233191527,0.2687392172886588,0.2766154797485314,0.2839296248742062,0.2922709834378216,0.2987693764051591,0.3044150242616665,0.309868213479601,0.3158529531217309,0.3203669908252293,0.3259245139153641,0.3307979872456569,0.3352247235491277,0.3338676652836898,0.3328473979535702,0.3322490248264402,0.3309967046308608,0.3312224055657137,0.3294316177034594,0.3275605036952453,0.3279084677220496,0.3279170800123148,0.3292861740934125,0.3299390529770276,0.3309995648906293,0.3323703052380354,0.3338106638623498,0.3368182694160724,0.3387573577501635,0.3392760516048187,0.3419304046606833,0.344549646263771,0.347869216728831,0.3513710154153972,0.3550098127618946,0.3575520997292702,0.3580425986716543,0.3614730878186968,0.3670263788968825,0.3772859996926387,0.3840327533265097,0.3923270792495099,0.3944530046224961,0.0,2.399561485585607,58.24799101604661,187.89421014357225,266.04853700201016,fqhc7_80Compliance_implementation,33 -100000,95803,43740,414.298090873981,6418,65.90607809776311,5068,52.38875609323299,2013,20.68828742314959,77.34149214859087,79.67987923195588,63.33904717832892,65.07217372096976,77.10198859510113,79.4408331560493,63.251111868664,64.98644738405845,0.2395035534897402,239.046075906586,0.0879353096649211,85.72633691130704,150.34734,105.24251024792127,156933.853845913,109853.04243908988,334.09813,214.0096767856074,348192.812333643,222843.44622361235,341.68161,164.30284774323806,353217.7071699216,168907.2164943522,3683.97584,1658.4101442865583,3809532.707744016,1695229.7154437308,1219.67206,526.575497413711,1261633.059507531,538174.2023576387,1984.62,819.0581542350465,2041432.105466426,829863.5376626888,0.37959,100000,0,683397,7133.356992996044,0,0.0,0,0.0,28403,295.930190077555,0,0.0,31409,324.499232800643,1676377,0,60107,0,0,5937,0,0,69,0.7097898813189566,0,0.0,0,0.0,0,0.0,0.06418,0.1690771622013225,0.3136491118728576,0.02013,0.3404631951615282,0.6595368048384718,24.62117820003799,4.374273132086361,0.3151144435674822,0.2231649565903709,0.2255327545382794,0.2361878453038674,10.9690429370752,5.531324083579429,21.25969712453477,12429.66513979014,57.32690539192223,13.599123883703712,18.01661632317296,12.729961683159802,12.981203501885764,0.5542620363062352,0.7833775419982316,0.6963055729492799,0.5923009623797025,0.1119465329991645,0.7261345852895149,0.9328358208955224,0.8926701570680629,0.732824427480916,0.0862068965517241,0.4963060686015831,0.700960219478738,0.6345679012345679,0.5505107832009081,0.1181347150259067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.004541629917987,0.0066873002181744,0.009043612567573,0.0113852571602991,0.0134153670635931,0.0153190274151436,0.0173390926079098,0.0192244764397905,0.021390976673698,0.0233676482651136,0.0254875180990131,0.0275357697569405,0.0297311218708148,0.0317291619373877,0.0335517747503772,0.0354753867500569,0.0374174005954418,0.0395270059643799,0.041453258380179,0.0564974698732328,0.071172405140055,0.085088546578644,0.0978626371316884,0.1097001949523157,0.1255469823485889,0.1380004876342319,0.1495294305311852,0.1610049200098186,0.1716787413726583,0.1852122908034224,0.1968175381322494,0.2085383737982727,0.2191590725321794,0.2285645180795743,0.2390413991587336,0.2489383756311231,0.2583086319949699,0.2670690690010532,0.2751031794121346,0.2828097398773856,0.2903493205062345,0.2982165861037902,0.3044009048365669,0.3098002110702718,0.3146573471321511,0.3191388337019405,0.3242618578957394,0.3293874386146291,0.334478672985782,0.3341984938138784,0.333388300284454,0.3334130994777664,0.3316097349606413,0.3301289670747652,0.3285112897053195,0.3266757475924987,0.3278777421740202,0.3293022937584455,0.3304128596205768,0.3313315191892653,0.3339274397972117,0.3345792037628086,0.3368154408303257,0.336777807286511,0.338401151380348,0.339193886638513,0.3421328504717431,0.3440357218796513,0.3465834033865738,0.3484323775222792,0.3518030848605363,0.3572522982635342,0.356855151045701,0.3604884098063531,0.3609275501622011,0.3627986881149461,0.3686931348221671,0.3676056338028169,0.3666019417475728,0.0,1.9361262763659044,56.36718673351193,196.00892380501315,282.6092144490388,fqhc7_80Compliance_implementation,34 -100000,95705,44267,418.7659996865368,6422,65.9735645995507,5026,51.97220625881616,1972,20.218379395015933,77.3419109081298,79.71267248611596,63.33255108723839,65.08183620464321,77.10009412558769,79.47278570660364,63.24285413015565,64.99579428335049,0.2418167825421164,239.88677951231807,0.0896969570827366,86.04192129271837,151.74214,106.30055014684436,158551.9460843216,111071.05182262616,337.37371,216.88129699755245,351947.8606133431,226048.0507784885,351.66108,169.3717682704203,364689.43106420775,174788.7951296405,3593.45257,1638.3941566717865,3715133.117391986,1672660.24925556,1224.35008,539.3008016569564,1262464.4166971422,546716.1296264388,1937.72812,814.4482495729593,1988331.8321926757,817813.0787519894,0.38208,100000,0,689737,7206.906640196437,0,0.0,0,0.0,28605,298.31252285669507,0,0.0,32348,335.228044511781,1663344,0,59681,0,0,6003,0,0,63,0.6582728175121467,0,0.0,2,0.0208975497622903,0,0.0,0.06422,0.1680799832495812,0.3070694487698536,0.01972,0.3262390236642357,0.6737609763357643,24.66070680456645,4.339019116454879,0.3366494230003979,0.2266215678471946,0.2097095105451651,0.2270194986072423,10.996977499867118,5.720370082044529,20.97525829266944,12531.961726075788,57.20979987550884,13.6672679615718,19.225028585636483,11.840793437777386,12.476709890523182,0.564066852367688,0.7647058823529411,0.7056737588652482,0.5996204933586338,0.1209465381244522,0.7280118255728012,0.8873239436619719,0.8656036446469249,0.7423076923076923,0.1491228070175438,0.5036754696433433,0.6914446002805049,0.6496408619313647,0.552896725440806,0.1139101861993428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0046620046620046,0.0068878068573747,0.0091005119037945,0.0114389718143734,0.0135924900219923,0.0156375832084569,0.0176675920633624,0.0200122649223221,0.0221376155239645,0.0243364873038165,0.0263482153858791,0.0283825056816428,0.0304441445246901,0.0325573235919344,0.0345683096261991,0.0368375811679905,0.0390415010533525,0.0410614205650234,0.0431021905416953,0.0580998234968511,0.0725733008133485,0.0867224880382775,0.0998327530530456,0.1122422068674508,0.1281663316051211,0.140701918180275,0.152530102524247,0.1638407213906428,0.1736028409883377,0.1864625857667575,0.198807243129742,0.2101318423113741,0.2205612177944971,0.2311635171700728,0.2413174647107666,0.2513577107936614,0.2604238097914676,0.2694510929364656,0.2773886370919745,0.284241821294711,0.2916691046540203,0.2984210775494745,0.3039236835166942,0.3095755926272432,0.3154695110672668,0.3204500181661008,0.326745902473786,0.3318701524038897,0.3358811823776703,0.3362536503963287,0.3356280143451914,0.335192940052275,0.3342655729669728,0.3339265059168965,0.3324620135131004,0.3295567670063996,0.3304524656837824,0.3309815846117052,0.3315465022782096,0.3314894335164732,0.3330628562381253,0.3345449197411547,0.3350451884909511,0.3365298894055851,0.338006840552466,0.3376660477074704,0.3408840301187738,0.3436651503931732,0.347445780245237,0.3518391592414896,0.3552519214346712,0.3582789430327609,0.3567359507313318,0.3589035880841343,0.364539686340237,0.3658761934093009,0.3699814700432365,0.3644781144781144,0.3570050173678116,0.0,2.104872716127981,59.788212084190114,187.16439839526632,277.3257326870857,fqhc7_80Compliance_implementation,35 -100000,95713,43884,415.3981172881427,6297,64.67251052626081,4932,50.99620741174135,2018,20.72863665332818,77.33810060160408,79.72070202132137,63.31256206328344,65.07494820286284,77.08925517430667,79.4728312201092,63.2209345174565,64.986148809212,0.248845427297411,247.8708012121729,0.0916275458269382,88.7993936508451,151.75578,106.25046158058872,158552.94474104873,111009.43610647324,333.27599,213.87372380535845,347673.3568062855,222923.04473306495,343.49704,165.3872578958204,355762.634124936,170370.66732470883,3551.78552,1602.5982981492373,3675003.709005047,1638512.0915123734,1177.30501,521.7443154663703,1213233.1762665468,528309.8173355456,1978.8107,824.7997675081283,2034666.1999937312,833375.5346097548,0.37938,100000,0,689799,7206.952033684035,0,0.0,0,0.0,28282,294.92336464221165,0,0.0,31453,325.5043724467941,1664562,0,59740,0,0,5974,0,0,64,0.6686656984944574,0,0.0,1,0.0104479015389758,0,0.0,0.06297,0.1659813379724814,0.32047006511037,0.02018,0.3402640764911215,0.6597359235088784,24.721033730921487,4.401548500013031,0.3266423357664234,0.2274939172749391,0.2128953771289537,0.2329683698296837,11.238786421723669,5.7443071858857015,21.456620051417683,12403.226791579598,55.68701260268156,13.45861719812742,17.93794693081689,11.70925654546344,12.581191928273824,0.5547445255474452,0.7941176470588235,0.6852886405959032,0.579047619047619,0.1157528285465622,0.7250589159465829,0.931472081218274,0.8556962025316456,0.7520661157024794,0.1487603305785124,0.4954905711943154,0.7197802197802198,0.6299342105263158,0.5272277227722773,0.1069459757442116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432547485354,0.0044735240413877,0.0066095396673909,0.0088521657824664,0.0108973250170429,0.0131901934222186,0.0152683434306346,0.0173634163032265,0.0195837807434678,0.021604464240004,0.0235133666259908,0.0256502407918921,0.0276583931398959,0.0297410020081355,0.0316910126268878,0.0338345476153567,0.0359084272978597,0.0380046273720469,0.0400993907637286,0.0423355383092869,0.0566863349172367,0.070671119160028,0.083668223073291,0.0963494283821163,0.1085156867914579,0.1245015179241989,0.1376957684308815,0.1495501251131342,0.1606932957192622,0.1714135530310344,0.1848651676919596,0.1972373776738546,0.2086335633585127,0.2188932780373576,0.2290015847860538,0.2398368577381744,0.2498296641311753,0.2587468479827089,0.2674328805705719,0.2756798275783005,0.2829131003810472,0.2906893684789863,0.2976344187919781,0.3031742034512117,0.3090800782912092,0.3138917691206241,0.3183960490360751,0.3234146714602616,0.3282991962665283,0.3328931382388674,0.3318158553996175,0.3311167100353833,0.3310033821871477,0.3296720766551529,0.3292953015146335,0.3285048591311812,0.3275804740567158,0.3277469551229441,0.3291067858302431,0.3297389938229728,0.3299028980617103,0.331455231994939,0.3323122114981116,0.3318157351753835,0.3333574146317969,0.3337233489339573,0.3357010939053843,0.3393591312807959,0.3427791771620487,0.3445305090104331,0.3471444062895355,0.3516315789473684,0.3566132951217993,0.3597441685477803,0.3607930745601787,0.3588172929673695,0.3565059694725706,0.3595190380761523,0.3572789115646258,0.3614274867122247,0.0,2.10677364011163,55.99289944931692,185.3770090641653,275.0001238597911,fqhc7_80Compliance_implementation,36 -100000,95649,43738,414.3587491766773,6250,64.04667063952577,4917,50.81077690305178,1974,20.292946084120064,77.27782633283482,79.68634814334249,63.2892740309558,65.0711936086955,77.02981077403349,79.43935889550336,63.19778843869985,64.9827220148414,0.2480155588013275,246.9892478391245,0.0914855922559425,88.47159385409498,151.16574,105.93490647458708,158041.92411839118,110753.58809458234,335.47968,215.4859938766128,350121.0362889314,224669.83973759552,348.88034,168.76840952662687,360178.8518437203,173120.79470667063,3518.46028,1603.220356333301,3637622.0870056143,1635329.7313430356,1164.39596,513.567581949652,1202622.620205125,522188.5560221768,1939.51866,812.9295883587408,1995111.7941640792,821543.4200626113,0.37871,100000,0,687117,7183.723823563237,0,0.0,0,0.0,28519,297.5253269767588,0,0.0,32033,330.4477830400736,1664005,0,59681,0,0,5980,0,0,57,0.5959288649123358,0,0.0,1,0.010454892366883,0,0.0,0.0625,0.1650339309762087,0.31584,0.01974,0.3222307104660046,0.6777692895339954,24.6459863284049,4.368715536636592,0.3203172666259914,0.2383567215781981,0.2109009558673988,0.2304250559284116,11.254079592190571,5.865347854929881,21.07827645598284,12355.435610071654,55.679064335282725,13.990909080931598,17.73549179032465,11.502820690428983,12.449842773597478,0.5556233475696563,0.7994880546075085,0.6958730158730159,0.5564127290260367,0.1076787290379523,0.7119029567854435,0.927400468384075,0.8614609571788413,0.7113821138211383,0.1044176706827309,0.4983324068927182,0.7261744966442953,0.6400679117147708,0.5082174462705437,0.1085972850678733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019354315708408,0.0040868895018659,0.0063143361825675,0.0084555423437706,0.0108957729284297,0.013131488065525,0.0153187149413564,0.0175472642405548,0.019670219512694,0.0218395632087358,0.0237743589743589,0.0259565507678085,0.0279572769180111,0.0300331869808092,0.0320669006813958,0.0342555722190619,0.0364544474840421,0.0382522739543963,0.0402189408838801,0.0419985819743921,0.05672246953832,0.0707044259651033,0.0843095268085821,0.0963701996442816,0.1086229276374803,0.1234492103146038,0.1365108696806533,0.1484598911109453,0.1593296113285845,0.1695672245901463,0.1832386822849876,0.1955302423284319,0.2076671056784909,0.2187120424577337,0.2290079697063097,0.2392434097532328,0.2489840575179743,0.2576286061478914,0.2667241633662804,0.2742932356644157,0.2811607607376148,0.2879099558194441,0.2949580726425471,0.3013242255377794,0.3065790113255237,0.312705069692858,0.3185991457594849,0.3238552437223043,0.3289026635889722,0.3329459002535925,0.3329375733617561,0.3314334607582009,0.3304554253981263,0.3300005796093433,0.3292237510994499,0.3272545705945613,0.3243320519744575,0.3254552946023897,0.3257683539313324,0.3259405231099964,0.327593984962406,0.3290468536048104,0.3306700868358529,0.3304564203730272,0.3312028171052314,0.3317676530452481,0.3322850853369164,0.3352742001835385,0.3395898382060743,0.3426909965911369,0.3438461185328008,0.3494927923117992,0.3529560703886568,0.3571098799630655,0.3591154977697637,0.3592023065833734,0.3588947531822415,0.3517141676992978,0.3521641371557054,0.3456505003849114,0.0,2.2208801651015784,57.80487244620128,178.52374674813083,275.91380723684495,fqhc7_80Compliance_implementation,37 -100000,95823,44079,416.8832117550066,6249,64.01385888565376,4876,50.35325548146061,1967,20.162174008327856,77.39792083527668,79.70234273102177,63.37134666233783,65.07175922506896,77.15619580619688,79.46289573486243,63.28100800294085,64.98536208516379,0.2417250290798023,239.4469961593444,0.090338659396977,86.3971399051735,152.0948,106.4791461837739,158723.58410819952,111119.57487586036,334.73306,214.8688041064556,348789.64340502804,223701.50197345985,343.77573,165.35242155812935,355868.8415098671,170281.43916843715,3488.65038,1574.9645534472827,3604497.542343696,1607528.9777181894,1192.25416,520.3488839361238,1229249.9191217138,528299.9359681925,1928.63246,806.520527750027,1978420.1913945505,810618.5567059468,0.3814,100000,0,691340,7214.708368554523,0,0.0,0,0.0,28462,296.4632708222452,0,0.0,31556,326.42476232219826,1665783,0,59728,0,0,6075,0,0,57,0.5948467486929025,0,0.0,0,0.0,0,0.0,0.06249,0.1638437336130047,0.3147703632581213,0.01967,0.3184246679896199,0.6815753320103801,24.773301855285737,4.405694962368879,0.3076292042657916,0.2456931911402789,0.2147251845775225,0.2319524200164069,11.187330372701968,5.762024291024108,20.78053655608605,12410.60320105952,55.014162670057566,14.285993948160227,16.84308458490222,11.58301010581166,12.302074031183448,0.5547579983593109,0.7871452420701168,0.676,0.5644699140401146,0.138815207780725,0.7130365659777425,0.927860696517413,0.820855614973262,0.7125506072874493,0.1744680851063829,0.4997236042012161,0.7160804020100503,0.627886323268206,0.51875,0.1294642857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022373855997408,0.0046915056389263,0.0067853339418834,0.0088441659981925,0.0108063597918022,0.0131485213001974,0.0150801899288785,0.0173731191022698,0.019545538140875,0.0214032862024513,0.0233797102637132,0.0255247553193672,0.0277603690423597,0.0298436808578514,0.0320253151509529,0.0340939597315436,0.0361994227128358,0.0384639303482587,0.0403227481359945,0.0422867966944901,0.0566862436235799,0.0707382381858879,0.084288455690362,0.0968898515371998,0.1091984314386911,0.1245466944376896,0.1380637772145455,0.1503400853672815,0.1618661994401829,0.1727433628318584,0.1855035002692514,0.1980637135594137,0.2100307685617056,0.2199127477886266,0.2299427012878463,0.240264413761031,0.2502397787344144,0.2594787262750742,0.2686848072562358,0.2764211827169535,0.2831689579021609,0.2908190093364026,0.297651149588419,0.3033908245460747,0.3081931830582871,0.3132727250359836,0.318428776618997,0.3233199172179124,0.3281058088872225,0.3326445193218911,0.3317316081231628,0.331220676598897,0.3311275956053837,0.3305527942256991,0.3289678365605416,0.3277037850702549,0.3262855610079366,0.3272283871812498,0.3281742717370924,0.3273365902364226,0.3284386165098487,0.3290159532459327,0.3304580855874717,0.3315566703245022,0.3328672677305819,0.3334465283945457,0.3346123009964494,0.3383851167499841,0.3405034324942791,0.3443300608132278,0.3456643164545371,0.3473841874398202,0.3494610019023462,0.3521882425078562,0.3549397361677897,0.355685479059778,0.3553846153846154,0.3566221142162818,0.3563218390804598,0.3548510313216195,0.0,2.084305625915808,55.29355821672363,182.82887862910036,272.1993912456632,fqhc7_80Compliance_implementation,38 -100000,95556,44109,417.48294193980496,6207,63.774121980828,4872,50.43116078529867,1944,20.00920925949182,77.19945181010942,79.67055932472475,63.224607941291474,65.05373172659323,76.96151618494429,79.43248743769347,63.136496689765735,64.9678602885569,0.2379356251651359,238.0718870312819,0.0881112515257385,85.87143803632102,150.09588,105.16263303425178,157076.35313324124,110053.40641534992,331.48195,213.2851411804608,346322.8787307966,222629.11923946257,347.6791,168.0070995891849,359929.1514923186,172853.1309975216,3536.27263,1608.058168457793,3664290.206789736,1646400.737219842,1220.37622,539.2693899037072,1262125.0366277366,549352.2625571021,1915.22808,798.5787177152857,1972802.0846414668,809218.048036907,0.37971,100000,0,682254,7139.834233329148,0,0.0,0,0.0,28103,293.5032860312278,0,0.0,31911,330.15195278161497,1666461,0,59783,0,0,5856,0,0,56,0.5755787182385198,0,0.0,0,0.0,0,0.0,0.06207,0.1634668562850596,0.3131947800869985,0.01944,0.3243408951563458,0.6756591048436542,24.645778680554965,4.375150760985407,0.3175287356321839,0.2192118226600985,0.2337848932676519,0.2294745484400656,11.35665127834153,5.919920486007481,20.76093171133873,12442.718686596343,55.49269650938766,12.782400532840612,17.70037781351127,12.66335352308421,12.346564639951572,0.5656814449917899,0.7949438202247191,0.7052359405300582,0.5803336259877085,0.1386404293381037,0.7314814814814815,0.9151193633952256,0.8606356968215159,0.7256317689530686,0.2145922746781116,0.5055928411633109,0.7293777134587555,0.6493848857644992,0.5336426914153132,0.1186440677966101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022604940649359,0.0043018607576956,0.0067024128686327,0.0091813079551,0.0114529462067842,0.0139860139860139,0.0160840945042608,0.0183527488248518,0.0203540728612361,0.0226380676170077,0.0246160794941282,0.0268889071690042,0.0287638644298204,0.0310391780652348,0.0330694665481677,0.0352462579963977,0.0375014260083175,0.0394824360839742,0.041467454142058,0.0432217988202745,0.0578150170505659,0.0722285139046181,0.0853550855653197,0.0980516127672578,0.1104017588178714,0.1259846693737343,0.1389574468085106,0.1506200243314195,0.1620799365820737,0.1724697836466084,0.1861582653017148,0.1982506972252064,0.2101537018250046,0.2208779396279396,0.2313439424371509,0.2411560205702353,0.2509678863153183,0.2592320971217745,0.2681239403283986,0.2764791692989811,0.2833348798366892,0.2904020265515785,0.2963450656606997,0.3018666218228991,0.3071499031822001,0.3134214005906849,0.3186802145216594,0.3227123661745377,0.3276571977815012,0.3320229255185376,0.3315498628619296,0.3310887263695322,0.3303966001666031,0.3298715218934225,0.3290699581115931,0.3273925668720328,0.3256637449186992,0.325895285024473,0.3278812323006951,0.3289013296011197,0.329679642917679,0.3301703259618057,0.3314495381890261,0.3322019420967452,0.3332365817671673,0.3351693025939622,0.3356178132079259,0.3385110816442508,0.341010899086452,0.3443293239649081,0.3468082210426024,0.3452343171479953,0.3460235825388861,0.3481504034099558,0.3516699410609037,0.3560265214302628,0.3599514194625778,0.3573280159521436,0.3642798802069153,0.3656404408969973,0.0,2.083411970740097,57.16482741234877,186.89093434941077,264.96837471522645,fqhc7_80Compliance_implementation,39 -100000,95676,43924,415.0048078933066,6179,63.41193193695389,4863,50.16932145992725,1914,19.68100673105063,77.33990302576841,79.73233515616592,63.32261558699434,65.08975914357895,77.09686954670211,79.49001893894105,63.23295054093327,65.00290273687726,0.2430334790662982,242.31621722486807,0.0896650460610715,86.85640670168482,151.3193,105.98824230125872,158157.82432375936,110778.06586945392,335.81159,216.3612094963528,350328.0341987542,225479.862462602,348.37741,168.75561360025506,360213.10464484297,173305.96105741238,3525.4305,1609.4657783999655,3641581.661022618,1639110.470989646,1174.98044,517.8461539105554,1210835.8417994063,524068.6812016294,1883.66946,791.7491003376336,1937653.601739203,799583.2361476592,0.37858,100000,0,687815,7188.992014716334,0,0.0,0,0.0,28539,297.598143735106,0,0.0,31961,330.1141352063213,1664116,0,59709,0,0,5878,0,0,61,0.6375684602199089,0,0.0,0,0.0,0,0.0,0.06179,0.1632151724866606,0.3097588606570642,0.01914,0.3335901386748844,0.6664098613251156,24.621898172561597,4.492316996668673,0.3131811638906025,0.2251696483652066,0.2298992391527863,0.2317499485914045,11.216522598274224,5.68512620704642,20.48831362134997,12358.426372049442,55.36214237870766,13.207487422036358,17.342440634113615,12.451324238265572,12.36089008429212,0.5601480567550895,0.7972602739726027,0.7045305318450427,0.5760286225402504,0.1188997338065661,0.7157974300831443,0.908450704225352,0.8673469387755102,0.7366412213740458,0.1111111111111111,0.5019774011299435,0.726457399103139,0.6480990274093722,0.5268691588785047,0.1210407239819004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.004541077492271,0.0068593925987559,0.0092227684556941,0.0116632602218764,0.0141696695779637,0.0164410649488319,0.0184228790724259,0.0205164376840039,0.0224979016970664,0.024686042339433,0.0266377876778418,0.028741246516602,0.030839590865548,0.0329655585257356,0.0348442863642003,0.0369553055262012,0.0389865166440041,0.0411946446961895,0.0433237081591593,0.0582065853250877,0.0716289782244556,0.0853878595858075,0.0979371140636012,0.1098897621182551,0.1248690905628841,0.1381878361605295,0.1497296606922389,0.1615511128198556,0.1729616724738676,0.1855293762922122,0.1971893459116775,0.2088987473903966,0.2193423555390367,0.2289864641795972,0.2396557834581136,0.2496597273356092,0.2582187619540514,0.2660154964888995,0.2741787694140285,0.2813132656956768,0.2885541886898358,0.2949438534628628,0.3004336575782261,0.3061898345411947,0.3114105864817256,0.3162694689435166,0.3205250505590109,0.3253711236042385,0.329980330811981,0.3296330225790806,0.3289296232075523,0.327442109565487,0.3265190972222222,0.3251268167145174,0.3239509954058193,0.3227634682666582,0.3230430713147999,0.3239674497159527,0.3244114974072028,0.3251384523274959,0.3265926774359177,0.3282926523185041,0.3284480443927325,0.3288446714203122,0.3305843359344416,0.3319535242227868,0.3351414424926677,0.3391053391053391,0.3421908463551995,0.3415855101483571,0.3438098276962348,0.3431922810115406,0.3463648834019204,0.3461610662661911,0.3471465782618991,0.3495384615384615,0.3538461538461538,0.3556426771212545,0.3557617942768755,0.0,2.485566480807158,57.83054964833054,182.59023919399823,264.2675869004229,fqhc7_80Compliance_implementation,40 -100000,95794,44179,417.9071758147692,6361,65.24416978098837,4960,51.2975760486043,1945,19.96993548656492,77.331780499572,79.67083300146516,63.32970022966426,65.06198705257678,77.0901736190527,79.42954345992185,63.24082313184406,64.97520232208224,0.2416068805192992,241.28954154330984,0.0888770978202018,86.78473049454283,149.6715,104.8568551940864,156243.08411800323,109460.77540773578,331.86529,213.12369015064772,345963.8599494749,222009.55756087136,349.50534,169.3565959982679,361618.1911184416,174263.5921567654,3517.98769,1602.1739601626032,3644322.4627847257,1644463.1742004943,1164.75119,513.0532199087353,1206460.9474497358,526193.8958125307,1906.50446,796.5863385602773,1961246.9465728544,808131.9416537533,0.38122,100000,0,680325,7101.958369000146,0,0.0,0,0.0,28211,293.9954485667161,0,0.0,32036,331.22116207695683,1674121,0,60174,0,0,6045,0,0,75,0.7724909702069024,0,0.0,1,0.0104390671649581,0,0.0,0.06361,0.1668590315303499,0.3057695330922811,0.01945,0.3331833858149647,0.6668166141850352,24.462577896319463,4.331677845439582,0.3147177419354838,0.2459677419354838,0.2157258064516129,0.2235887096774193,10.869453161694462,5.549259950636635,20.79435208869482,12510.907223003089,56.42859481905207,14.657213986599698,17.71213365259947,11.909649640128572,12.149597539724326,0.5542338709677419,0.7737704918032787,0.6873798846893018,0.5785046728971963,0.1018935978358882,0.7343635025754232,0.9043659043659044,0.8469135802469135,0.736,0.1614349775784753,0.4862538183837823,0.6887686062246279,0.6314878892733564,0.5304878048780488,0.0869074492099322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195745758419,0.0045821337334252,0.0071133570783484,0.0092750619691982,0.0114314772438342,0.0137883277833786,0.0158132990762831,0.0180285025930009,0.0200772832287215,0.0222961560116701,0.0241009554270718,0.0262131137441731,0.0282661895654677,0.0301603815370669,0.032241085711337,0.0341562254476285,0.0362480193046594,0.038417258725302,0.0405582342671876,0.0424714444872502,0.0571306334978556,0.0718036147602711,0.0857625022273932,0.0986634724498802,0.1113932586637445,0.1267699395578849,0.1399773187353605,0.1519794978679058,0.1633086461912791,0.1740197128776515,0.1873351775507787,0.1996041231761003,0.2111181191413471,0.2212549079653954,0.2314092334782369,0.2410374014003368,0.2504546722454672,0.2591971927614634,0.2684190830432169,0.2763918623421525,0.2842061445602026,0.2915025192008697,0.2989434578388802,0.3047089420760573,0.3091182973347263,0.3149114045795879,0.3209553390276282,0.3257085329799164,0.330433091286307,0.3345002509973843,0.3345006869427009,0.3335900962861073,0.3328449878852764,0.3323207776427703,0.3318903962870403,0.3311443213551416,0.3298064720812182,0.3300162836982088,0.3309644496198369,0.3319936409267099,0.3326204813626728,0.3336365074343562,0.3337044194253066,0.3349091479398651,0.3365117682558841,0.3375189661486946,0.3394367001828153,0.3443629380096338,0.3462361817862783,0.3502447176793601,0.3552830275019448,0.3583917018660108,0.3621941896024465,0.3634687764037176,0.364739336492891,0.368176400476758,0.370089699969069,0.3687842500507408,0.3715634545959456,0.3622047244094488,0.0,1.86209506162713,60.101458171878285,186.64113931970576,266.6562364725854,fqhc7_80Compliance_implementation,41 -100000,95687,44075,417.0472477975065,6440,65.9023691828566,5043,52.117842549144605,2019,20.71336754209036,77.34192318165195,79.72029369871012,63.32298576779221,65.07629506014712,77.08497672409366,79.46361294898557,63.22773976558151,64.98384734383156,0.2569464575582856,256.680749724552,0.0952460022107004,92.44771631556148,151.30698,105.89440994834432,158126.53756518647,110667.0462532469,333.21433,213.1493977885811,347624.0659650736,222148.74450411653,346.72698,167.6480518575192,359310.1361731478,172732.34237835946,3599.32877,1644.748855928031,3720493.076384462,1677903.6160631587,1201.9364,535.1524041496798,1240926.6776051084,544139.1352753438,1978.31274,835.9900688172102,2031161.328080095,842027.7858220242,0.38178,100000,0,687759,7187.569889326659,0,0.0,0,0.0,28309,295.22296654717985,0,0.0,31839,329.6999592421123,1667424,0,59847,0,0,5938,0,0,55,0.57479072392279,0,0.0,1,0.0104507404349598,0,0.0,0.0644,0.1686835350201687,0.3135093167701863,0.02019,0.336843666567784,0.6631563334322159,24.73590645832341,4.388621783012447,0.3252032520325203,0.2256593297640293,0.2274439817568907,0.2216934364465596,11.197594934671883,5.768755733318032,21.600516600929424,12501.228956123798,57.04912332773503,13.56329944933837,18.457848342946598,12.708157897253953,12.319817638196117,0.5593892524291096,0.7882249560632689,0.7006097560975609,0.5579773321708805,0.1207513416815742,0.7263236390753169,0.9230769230769232,0.8538812785388128,0.7007299270072993,0.1592920353982301,0.4989195029713668,0.7142857142857143,0.6447587354409318,0.5131729667812142,0.1109865470852018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021870538562012,0.0045914799160762,0.0068170059953133,0.0091921100209234,0.011278004332218,0.0137240129502555,0.0160573374385743,0.0181961136695495,0.0201644239028181,0.0223212000204781,0.0244850249669329,0.0264627959992606,0.0284083311905374,0.0305706101757784,0.0328151451339857,0.0346007879796903,0.0366587596722568,0.0387469769469499,0.0406813502215012,0.0427026238459454,0.0571374851150061,0.0710561035370987,0.0841161714231734,0.0967453410920417,0.1091519199721422,0.1245740289977775,0.1375074322602565,0.1495834842448388,0.1612661827433959,0.1721039580045731,0.1856384928936528,0.1980458637087427,0.2094233428045766,0.22032878031696,0.2302450516303749,0.2409196675900277,0.2511946230796713,0.2602445174944837,0.268785241828434,0.2766042750120278,0.2837665794773269,0.2910965718231721,0.2982649375259075,0.3044302354874698,0.3101473592063029,0.3160815360142059,0.3217556917139671,0.3264196587725999,0.3303979041294874,0.3350688479530618,0.3345212062309333,0.334336185481645,0.3347127280944579,0.335016201828492,0.3340365159775972,0.3327974276527331,0.3309327466404976,0.3319305628616517,0.3334474436437704,0.334411002947218,0.3350897260402408,0.3360619995243003,0.3370423244877393,0.3376871114701856,0.3390116377129364,0.3390294808244195,0.3396312444786412,0.3414549798792756,0.3427880232802748,0.3452706722189173,0.3463755617085016,0.351931330472103,0.356024248547613,0.3568285280728376,0.3587078651685393,0.3585657370517928,0.3613966142684401,0.3682946357085668,0.3707037643207856,0.3755622188905547,0.0,2.181397214253762,58.69464330554937,189.0683064289388,276.858733962912,fqhc7_80Compliance_implementation,42 -100000,95731,43871,413.8471341571696,6341,64.93194472010111,4943,50.99706469168817,1897,19.429442918176974,77.32392886815877,79.68798162074236,63.31606620966248,65.06515059124129,77.09150820317392,79.46033738395568,63.22997158033783,64.9842302785472,0.2324206649848577,227.64423678668777,0.0860946293246556,80.92031269409006,150.15396,105.2676528298909,156849.88143861445,109961.92751552883,336.50172,216.31332290516497,350870.5539480419,225322.5108952847,353.39077,170.78423181222257,365611.13954727305,175640.8917929031,3491.65578,1595.9684510624008,3601921.070499629,1621698.0195155214,1128.83745,502.4409479351445,1160537.8090691625,506207.96600384766,1859.38962,773.4784673983556,1904585.80814992,772613.0740184314,0.3802,100000,0,682518,7129.540065391567,0,0.0,0,0.0,28591,297.9912463047498,0,0.0,32446,335.3772550166613,1667884,0,59894,0,0,6102,0,0,76,0.7938912160115323,0,0.0,0,0.0,0,0.0,0.06341,0.1667806417674908,0.2991641696893234,0.01897,0.3414450953883131,0.658554904611687,24.386081841602092,4.357976895345112,0.3291523366376694,0.237305280194214,0.2162654258547441,0.2172769573133724,11.419594312008469,5.965068940613387,20.101824553463278,12433.248244461449,56.41264627385603,14.109393357443825,18.57897447568863,12.011147992196944,11.713130448526638,0.5783936880436982,0.7953964194373402,0.7135832821143209,0.598690364826941,0.1163873370577281,0.7423547400611621,0.9175,0.8752941176470588,0.7843137254901961,0.1403508771929824,0.51939477303989,0.7322121604139715,0.6564059900166389,0.5405405405405406,0.1099290780141844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790118204746,0.0045625525960924,0.0069722126372622,0.0095815806051738,0.0122268787891117,0.0143380855397148,0.0165263136431295,0.0184960241714046,0.0207547362717132,0.0229548479574075,0.025016404199475,0.0271466266928139,0.0292490850022617,0.0313649145576465,0.0331971188574494,0.0353421542278271,0.0374145431945307,0.0395561737108693,0.0415973377703826,0.0434578757631957,0.0580097518193303,0.0725906860437134,0.0856552606466091,0.0983963405016036,0.1102522461720167,0.1251639656412643,0.1372727947964305,0.1493829395291386,0.1607827638142645,0.1712962466631645,0.1854547020323803,0.1984904517831268,0.210102942615199,0.2209698930843737,0.2309603923379736,0.2415220929331399,0.2508395532795573,0.2604817027212491,0.2686780630661309,0.2766459926398936,0.2835146501685725,0.2906010941764975,0.2975555397491524,0.3030997611875817,0.3095632072028227,0.3137823399504028,0.3187395811137711,0.3238293099492722,0.3285343709468223,0.3329235568597903,0.3323801944942744,0.3314272328933226,0.3304410395327182,0.3288170922355393,0.3286621740229987,0.3267793703295357,0.3248714907077896,0.3247696494737187,0.3250947325299559,0.3258298699677149,0.3248956207522795,0.3262163177352075,0.3267776730547701,0.3270133702991548,0.3296793115053608,0.3307445727241928,0.330829420970266,0.3344256096792488,0.3337095295196445,0.3378711885996338,0.3390379700620664,0.3394412577012959,0.3413038006544173,0.3459812941981598,0.3495466565923687,0.3561660126055417,0.3642824739150159,0.3689301223845243,0.3598093725178713,0.3573584905660377,0.0,2.4784836488414625,57.08681522475369,193.0476238776267,267.901512554366,fqhc7_80Compliance_implementation,43 -100000,95784,44018,415.6539714357304,6404,65.69990812661823,4991,51.417773323310776,1992,20.29566524680531,77.4066300966336,79.74515076869518,63.35719594835807,65.08740802663333,77.15369365494251,79.49688448380972,63.26322655287623,64.99863307337016,0.2529364416910908,248.2662848854602,0.0939693954818423,88.77495326316875,150.55106,105.4335208572939,157177.6705921657,110074.25129175426,332.92723,213.69954662213,346802.0441827445,222326.4706236219,347.24826,167.300666025097,358729.6312536541,171700.0862827623,3554.11179,1610.5263338616196,3662495.876137977,1633362.141758141,1183.98729,519.0507574178058,1220308.6110415102,526111.5447345008,1946.15762,821.1340832775143,1985151.3405161612,817302.3820713983,0.38081,100000,0,684323,7144.439572371168,0,0.0,0,0.0,28213,293.79645869873883,0,0.0,31840,328.530861104151,1672961,0,60036,0,0,6012,0,0,65,0.6681700492775411,0,0.0,0,0.0,0,0.0,0.06404,0.1681678527349596,0.3110555902560899,0.01992,0.3301057649337107,0.6698942350662893,24.98897665643652,4.412935216068027,0.3277900220396714,0.2294129432979363,0.2224003205770386,0.2203967140853536,11.021714462492609,5.715481973567577,21.121240739682705,12442.469243677402,55.996414203426966,13.600892617114242,18.17547030944254,12.185308713037326,12.034742563832877,0.5543979162492486,0.7842794759825328,0.6925427872860636,0.5657657657657658,0.0981818181818181,0.7261998426435877,0.9215686274509804,0.8863049095607235,0.7148760330578512,0.1324786324786324,0.4956989247311828,0.7082767978290366,0.6325060048038431,0.5241935483870968,0.0889145496535796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0041877065969053,0.0065353507677007,0.0087987563882425,0.0111369900631604,0.0134518645241441,0.015650170265696,0.0180574695044148,0.0203094975264728,0.022268615170494,0.0243609978067927,0.0266068790018059,0.0285617381652243,0.0305638196024335,0.0326461189568085,0.0348712335556886,0.0367155655790279,0.038771744313823,0.0410588870880605,0.0427897679357841,0.0578088967265973,0.0715480996506787,0.0852009476089645,0.0979231917263994,0.1103911156066927,0.1258849884819409,0.1391155957857248,0.149886763564449,0.1611571129796406,0.1721456344998232,0.1849385080536696,0.1981963472788417,0.2099789162518747,0.2206738382569759,0.2312390829094664,0.2422760269121813,0.2516926371677467,0.2611262284390672,0.2699296733212341,0.2784068142008312,0.2852087019881336,0.2914820746005213,0.2983622852274341,0.3037930703982364,0.3090650663297536,0.3143945464183134,0.3195642646966756,0.3242352522013539,0.3283071661744132,0.332281572624297,0.3316439316331482,0.3311630211846325,0.3311249876661545,0.3304372967112396,0.3301350126992143,0.3283652889779804,0.3263462176378599,0.3269731136166522,0.3271861986912552,0.3278624462680735,0.3277708220432418,0.3292310721669784,0.3295290951198648,0.3293153004612196,0.3293900716013314,0.3285836642529004,0.3295880149812734,0.3317483655019239,0.3339976922270009,0.3380993759380677,0.3416447547375102,0.3442813391065582,0.3468175565837189,0.3504486164517831,0.3525754060324826,0.355113968439509,0.3514669926650366,0.3535757091490212,0.3580654025831272,0.3610149942329873,0.0,2.5615627587854126,55.25993224316294,183.2276632744431,283.54878794991794,fqhc7_80Compliance_implementation,44 -100000,95692,43718,414.0889520545082,6285,64.42544831333863,4953,51.205952430715215,1954,20.04347280859424,77.29491858535671,79.69573385167577,63.29396199958445,65.07343850245489,77.04791842497431,79.45125109565757,63.20245763004698,64.98541439132002,0.2470001603823988,244.48275601820055,0.0915043695374748,88.02411113487096,151.12702,105.84110181091074,157930.67341052543,110606.00866416287,335.25482,215.03939187075176,349794.1729716173,224166.795920978,344.07124,165.90299540984563,356230.6357898257,170821.53273283233,3553.80764,1618.4640092786897,3675792.615892656,1653331.1457284044,1205.43967,532.2720087955615,1244061.2590394183,540596.9549423046,1915.70466,804.1033986743045,1966579.1497721856,809293.5748863751,0.37737,100000,0,686941,7178.666973205703,0,0.0,0,0.0,28493,297.1617272081261,0,0.0,31626,327.2060360322702,1667272,0,59850,0,0,5871,0,0,60,0.627011662416921,0,0.0,2,0.0209003887472307,0,0.0,0.06285,0.1665474203036807,0.3108989657915672,0.01954,0.3269927536231884,0.6730072463768116,24.71503579040656,4.382625877338876,0.3151625277609529,0.2339995962043206,0.2251160912578235,0.2257217847769028,11.23035319379773,5.820507409018363,20.87609537781802,12293.576671737328,56.23804425354794,13.758193376133269,17.74456427085143,12.56099088914164,12.174295717421606,0.5497678174843529,0.7661777394305436,0.6893017296604741,0.57847533632287,0.1019677996422182,0.7113636363636363,0.8917525773195877,0.8341232227488151,0.7352941176470589,0.1722689075630252,0.4910542251582714,0.7029831387808041,0.6356453028972783,0.527876631079478,0.0829545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023011343477247,0.0045866439363958,0.0069364748895546,0.0093132021757917,0.0115027942628541,0.0136882981867846,0.0157149271398832,0.0175721787458368,0.0197344191185497,0.0221370839693092,0.0243009252610631,0.0262373898214542,0.0284217783677543,0.0304235803359785,0.0322980212429938,0.0342816368318183,0.0362057531294039,0.0383297689001474,0.0402575651974909,0.0420245143000083,0.0568856020723656,0.0703951087753093,0.0833989232755092,0.0959921716348025,0.1082988690074274,0.1237832232943964,0.1361638891837384,0.1485519591141396,0.1599115223918874,0.169898172687962,0.1836251009964987,0.1963039503153976,0.2085303934679322,0.2189344584845437,0.2290424759684124,0.2393439718275545,0.2481393454512994,0.256761167321306,0.2642195166272942,0.2727981561958927,0.2806661956660219,0.2871994193261373,0.2936412078152753,0.3001667726492855,0.3054542359692637,0.3106126077187091,0.3157808995100189,0.320207768399343,0.3243890442166304,0.3281938325991189,0.3277479441730259,0.3276739070662634,0.3278222172149617,0.3263017973761775,0.3251969674446261,0.3242899208637507,0.3223927500119034,0.3227541954590325,0.3242572562979189,0.3249794135548315,0.3248392071313047,0.3259441544781599,0.3273059859969303,0.3284547005477238,0.3292685877428564,0.3286691297853942,0.3283085917349687,0.3314150197628459,0.3346129463971261,0.3389756252987095,0.3415796225032069,0.3450903084873994,0.3434782608695652,0.3430272498282574,0.3455111866326819,0.347769028871391,0.34529627367135,0.3442589576547231,0.3441949616648412,0.3497723823975721,0.0,2.1064966049298515,58.0799161585238,184.544919156888,274.7391795113842,fqhc7_80Compliance_implementation,45 -100000,95731,43982,416.2810374904681,6311,64.80659347546772,4949,51.21642936979662,1854,19.074281058382343,77.3593554540744,79.7298894320971,63.33143217950936,65.08344496820908,77.12605008266645,79.49548664282688,63.24372869804176,64.99728923534907,0.2333053714079511,234.40278927022007,0.0877034814675994,86.1557328600071,151.11866,105.80431747128227,157857.60098609646,110522.52402177174,335.2337,215.23123280079804,349715.34821531165,224361.68628642187,350.42624,169.4718446218671,362670.83807752974,174466.0497828689,3505.13582,1599.618070255891,3630874.136904451,1640391.541341124,1186.13678,524.9893692500524,1225415.4767003374,534805.945532162,1819.13686,772.4797245187897,1873180.8296163208,784386.3971293818,0.37936,100000,0,686903,7175.345499368022,0,0.0,0,0.0,28490,297.1033416552632,0,0.0,32119,332.1703523414568,1667146,0,59824,0,0,6008,0,0,56,0.5849724749558659,0,0.0,0,0.0,0,0.0,0.06311,0.1663591311682834,0.2937727776897481,0.01854,0.3313271140535661,0.6686728859464339,24.645645893956,4.37987482953505,0.3303697716710446,0.2321681147706607,0.2174176601333602,0.2200444534249343,11.24277989749285,5.7299034819687344,19.83878513013497,12360.715266333538,56.02216387080207,13.729721156080004,18.427123189630056,12.013122735996488,11.85219678909552,0.55849666599313,0.7789382071366405,0.6819571865443425,0.5799256505576208,0.1193755739210284,0.7181008902077152,0.9148936170212766,0.8545034642032333,0.6877323420074349,0.116591928251121,0.4987503471257984,0.699724517906336,0.6198003327787022,0.5439900867410161,0.1200923787528868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020560709800267,0.0043184283353776,0.006514657980456,0.0087241778554163,0.0109921397557528,0.0131430258482901,0.0153116876497273,0.0174142049282404,0.019658154607348,0.0218884691380775,0.0240378205982792,0.0259765604938525,0.028242484103957,0.0303323785777576,0.0325363492833335,0.0346820211710221,0.0365155452484237,0.0385221756627805,0.0405127245508982,0.0423428678569196,0.0570342602357805,0.0713560581481752,0.0853849139332655,0.0990525861978317,0.1112774819423208,0.1263936194969218,0.1390371494360204,0.1511280036624187,0.1618898008036248,0.1726761530702036,0.1850638504229753,0.1965919301930301,0.2081383962572081,0.2178785623604605,0.2285346024191949,0.2393004092406312,0.2487853369224067,0.2579628942068608,0.2658631529967201,0.2737500572842674,0.2814083724805035,0.2888948654684923,0.2957584930648346,0.3014018411885123,0.3068100445426189,0.3123637841232315,0.3172849546449797,0.3220351912123678,0.3263187865610602,0.3308020882771713,0.3298471548212773,0.3294851708309282,0.3287821323219553,0.3279639546265906,0.326895162484818,0.3250904428263955,0.3238639052321088,0.3235630867872681,0.3236987327973838,0.3253700014230824,0.326718785067704,0.3271420958095651,0.3279640932066528,0.3297698289966158,0.3309354248869213,0.3321612751992499,0.3325172237089335,0.3341931424976407,0.3368905114613683,0.3384024395073462,0.340901851936115,0.3446903359337685,0.3489945617807006,0.3518855065879145,0.3574300944543159,0.3550818513720409,0.3570124733799817,0.3589178356713426,0.3580952380952381,0.3514533786334465,0.0,1.818595504098384,59.74137730509968,180.75139821763128,270.9624071662125,fqhc7_80Compliance_implementation,46 -100000,95891,44345,419.7265645368178,6269,64.29174792211991,4883,50.35926207881866,1932,19.78287847660364,77.4394230829848,79.71857324442558,63.39129033748679,65.07687922995498,77.20069426995889,79.48105977745136,63.3037719025201,64.99249452576126,0.2387288130259151,237.51346697422093,0.0875184349666824,84.38470419372379,150.05562,105.16462610996682,156485.6138740862,109671.00782134592,334.01408,214.8659420033092,347787.50873387494,223533.78523877027,349.10152,168.52117113488688,360452.01322334737,173003.65211134008,3511.8606,1585.1914809037105,3626076.89981333,1616848.5894439607,1162.92879,507.0825341590294,1199418.5794287263,515468.8283144712,1905.24756,788.0285562352027,1952915.351805696,793276.3296687155,0.38072,100000,0,682071,7112.982448822099,0,0.0,0,0.0,28361,295.1893295512613,0,0.0,31986,329.957973115308,1675724,0,60137,0,0,6060,0,0,68,0.6987099936386104,0,0.0,0,0.0,0,0.0,0.06269,0.1646616936331162,0.3081831233051523,0.01932,0.3321630285452602,0.6678369714547397,24.64837880956541,4.394586944083705,0.320294900675814,0.2342822035633831,0.2144173663731312,0.2310055293876715,11.292893692484617,5.804420631132639,20.3129173992088,12333.946828385298,55.10018954667629,13.635268663743789,17.582742248282504,11.605248773090125,12.276929861559877,0.5613352447266025,0.7788461538461539,0.6879795396419437,0.6131805157593123,0.1170212765957446,0.7316495659037096,0.9041769041769042,0.8349753694581281,0.7827868852459017,0.1380952380952381,0.5016592920353983,0.7096336499321574,0.6364421416234888,0.5616438356164384,0.1122004357298474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021360599311601,0.0042867566581539,0.0064212459043001,0.008650712262283,0.0107026334780001,0.0128507763374778,0.0149528902470078,0.0171052631578947,0.0192370561072289,0.0218805622046277,0.0239659005912066,0.0260001436472024,0.027899663970898,0.0297502625023162,0.031867293496639,0.0338382743202916,0.0359101160793726,0.0378099451864593,0.0397641147033783,0.0417698341690768,0.0561242572709267,0.0697156828939531,0.0827870740748497,0.0955935620019528,0.1074443672498368,0.1232408121034238,0.1363130858444103,0.1482441693672634,0.1597573845284668,0.1707705972369364,0.1844028807911426,0.1965449064920753,0.2082247132429614,0.2187138080982453,0.2288899639370217,0.2387835056110139,0.2479491752117699,0.2568751685090321,0.2651863600317208,0.272726233350483,0.2808223133337183,0.2880261544748672,0.2946355760935081,0.3009863302291063,0.3068941664745215,0.3118414574101428,0.3163579089477237,0.3217333875228612,0.3267165510022099,0.3301393842873501,0.3292614094500887,0.3291425904829876,0.3294882962879703,0.3277893977641543,0.3279167346212582,0.3275551071570515,0.3262467399035801,0.3275958074025548,0.3284007023884617,0.3300519794930219,0.3310593600478468,0.3327155503854571,0.3324345226897431,0.3325986285510731,0.333436969363595,0.3341217445547642,0.3330595366226703,0.3354995938261575,0.3391843415874342,0.3408768333070494,0.3419909502262443,0.3473244058646059,0.3512868801004394,0.3526816279954355,0.3583317571401551,0.3601856258924322,0.363762958378462,0.3643061809250921,0.3733333333333333,0.3767565514622104,0.0,2.1969770212644155,55.55373021248727,181.3004021972924,273.8836497459885,fqhc7_80Compliance_implementation,47 -100000,95727,44201,418.49217044303066,6272,64.16162629143292,4875,50.23661036071328,1975,20.11971544078473,77.34647984393533,79.6977544577634,63.33814763576003,65.07478894436977,77.09621598528715,79.45165050035789,63.24501051756705,64.986108324239,0.2502638586481822,246.10395740550928,0.0931371181929776,88.68062013077349,150.51256,105.50106231306624,157231.0424436157,110210.35059394554,334.2426,214.9969795193253,348481.776301357,223913.34682934312,349.0569,168.9473997646463,360092.53397683,172927.970549221,3519.3785,1602.722525346637,3629392.0001671417,1627470.612722765,1181.38858,522.4907617181055,1211113.5311876482,522921.802320731,1936.1698,816.8983024486133,1975558.452683151,816583.3883014674,0.38261,100000,0,684148,7146.865565618895,0,0.0,0,0.0,28426,296.24870726127426,0,0.0,32022,330.0009401736187,1669299,0,59855,0,0,5934,0,0,53,0.5432114241541048,0,0.0,2,0.0208927470828501,0,0.0,0.06272,0.1639267138862026,0.3148915816326531,0.01975,0.3313609467455621,0.6686390532544378,24.720941731257412,4.440820039643405,0.3138461538461538,0.2317948717948718,0.224,0.2303589743589743,11.22572976579374,5.785745530268875,21.057224116524463,12499.829467457415,55.214181908703445,13.4989045189549,17.52767716593082,12.01291379156849,12.174686432249226,0.5606153846153846,0.7893805309734513,0.7137254901960784,0.5457875457875457,0.1362422083704363,0.7327117327117327,0.9223300970873788,0.8658536585365854,0.7344398340248963,0.1383928571428571,0.4988851727982162,0.713091922005571,0.6580357142857143,0.4923619271445358,0.135706340378198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0045819014891179,0.0064643143463127,0.008634525913736,0.0108711127382187,0.0129907151001791,0.015137614678899,0.017299625429939,0.0196052376036225,0.0217460301209136,0.0237602246868529,0.0257942006671798,0.0277489333264792,0.0300751879699248,0.0318090835929923,0.0342642741968826,0.0364971061159831,0.0385441416017347,0.0405634388481729,0.0423215941168505,0.0569331481848839,0.0721358146155617,0.0856318522792844,0.0982260218513728,0.1111966262519768,0.1273365474075953,0.1397142281295414,0.1511255388217763,0.1627946703108985,0.1737802263762647,0.1866790128773849,0.1988923982174534,0.2098197786908411,0.2203108264661522,0.2299937334403412,0.2407386904630101,0.2507527937010684,0.2604132686921407,0.2688492964139809,0.2778592375366568,0.2865076885695442,0.2940522837592841,0.3004664267449569,0.3062120067623466,0.3113816101169868,0.3166151534928395,0.3214151675131984,0.3260302224032794,0.3301744924680443,0.3341609984811464,0.333315361701554,0.3333195626428709,0.3329338953660496,0.3320749258696753,0.3319004625842245,0.330358785648574,0.3288842445257208,0.3291972360365683,0.3301304518798406,0.3317022644474605,0.332639982010344,0.334084573868691,0.3345508743203812,0.3343188639519778,0.3362313954048456,0.3363457760314342,0.3377132714989121,0.3396410887185795,0.3417124348683284,0.3444329651116586,0.3482155097564319,0.3526270824434002,0.3515013878374968,0.3569292123629112,0.3568244332732618,0.361437125748503,0.3641689793401171,0.3680969000205296,0.371404399323181,0.3677342823250296,0.0,2.735856332364773,55.71246477589094,183.331553455668,269.36222277716064,fqhc7_80Compliance_implementation,48 -100000,95730,44169,418.1761203384519,6389,65.44447926459834,5090,52.48093596573697,2008,20.557818865559383,77.41222784566315,79.76730462127784,63.350809200748486,65.0892210464075,77.16101806584525,79.51871555535536,63.2579186336493,65.00020554805155,0.2512097798178985,248.58906592248783,0.0928905670991895,89.01549835594835,152.79066,106.89621359038183,159605.59908074792,111664.08092436662,340.27419,217.80400563598656,354759.33354225423,226828.58863099111,352.51064,169.3147693895441,363523.64984853234,173319.82291946394,3643.87365,1647.7368266272915,3759987.4125143634,1675154.8625922098,1217.0645,534.6080079247497,1253303.6247780214,540508.1885756595,1968.0956,827.4663104657222,2016630.4188864515,830138.8449776171,0.38202,100000,0,694503,7254.799958215815,0,0.0,0,0.0,28853,300.658100908806,0,0.0,32370,333.3751175180194,1659626,0,59483,0,0,5984,0,0,68,0.7103311396636373,0,0.0,0,0.0,0,0.0,0.06389,0.1672425527459295,0.3142901862576303,0.02008,0.3287284610814022,0.6712715389185977,24.59807161662912,4.340125968106813,0.3231827111984283,0.2294695481335953,0.224950884086444,0.2223968565815324,10.924795095315869,5.636993853415973,21.366752257702647,12445.95194017134,57.35240913689528,13.879362281507047,18.51942694903405,12.528515995782096,12.425103910572078,0.556385068762279,0.791095890410959,0.6851063829787234,0.5519650655021834,0.131625441696113,0.7218337218337219,0.928388746803069,0.8560975609756097,0.7196652719665272,0.1740890688259109,0.5003944254535893,0.722007722007722,0.6283400809716599,0.5077262693156733,0.119774011299435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0046318349972127,0.0069086556019965,0.0090177918596149,0.0114173588588741,0.0136000407186847,0.0156756426198096,0.0175402793792026,0.0198362816935953,0.0219856704196519,0.0239710584569976,0.025930032027593,0.0281684349041862,0.0302253254242873,0.0324208310546572,0.0345134115458163,0.0365308151093439,0.0386367173315349,0.0405564161477122,0.0423133815287818,0.0566569576247298,0.070451715514445,0.0836567712157767,0.0961572851687828,0.1082680904045413,0.1240264138164578,0.1371108964902412,0.150512675816395,0.162214148322291,0.1732397540323879,0.186429349173665,0.1980898134211181,0.2102175001632884,0.2209059157150208,0.2310311016118192,0.2422602078734567,0.2518302428774212,0.2606917991056846,0.2687455286676281,0.2769211368039712,0.2834887357386923,0.2910672269891252,0.2982694948155864,0.3042769857433808,0.3100454181138125,0.3160235012994691,0.3206046738437301,0.3250752753744712,0.3287545550874835,0.3327411267716846,0.3324832557078238,0.3318798848210613,0.3315406650190968,0.3303327092035143,0.3305049668874172,0.3286477925163334,0.3267607408340683,0.3268157336379957,0.3273635560388772,0.3280431733858799,0.3287041346314946,0.3296420647542754,0.3308291074521589,0.3315462816719685,0.3330300708676498,0.3358766739333541,0.3365695792880259,0.33893425952001,0.3407723520358192,0.3427072651258184,0.3461956030037094,0.3481273804485823,0.3489827856025039,0.350143656434296,0.3548357069719817,0.3551236749116608,0.357845362384627,0.3708675616108996,0.3696837513631407,0.3727134146341463,0.0,2.620750378771058,55.99322195211726,196.0758015925307,281.2713224068006,fqhc7_80Compliance_implementation,49 -100000,95738,44282,418.1725124819821,6416,65.80459169817627,5017,51.91251122856128,2036,20.984353130418437,77.32373385663094,79.69387229350309,63.321321634088775,65.07515664734748,77.06796180042379,79.43616703248544,63.22742888186007,64.98240711609823,0.2557720562071495,257.705261017648,0.0938927522287045,92.74953124925388,151.07906,105.80261346970576,157804.6961499091,110512.66317418974,335.37326,215.15970144909105,349833.33681505773,224268.1917828773,351.22674,170.0288728986373,363547.9851260733,174991.8067785836,3620.0815,1639.6213190767671,3748850.790699618,1680225.8132369276,1168.69643,516.510468584555,1208220.4976080551,527000.9594774856,1997.13566,830.9468294916397,2060182.874093881,846457.8926783291,0.38261,100000,0,686723,7172.940734086778,0,0.0,0,0.0,28564,297.8650065804592,0,0.0,32172,332.6996594873509,1666266,0,59877,0,0,5965,0,0,55,0.5744845306983642,0,0.0,1,0.0104451732854248,0,0.0,0.06416,0.1676903374193042,0.3173316708229426,0.02036,0.3331356560415122,0.6668643439584878,24.69170008461836,4.456723096980372,0.319912298186167,0.2256328483157265,0.2234403029699023,0.2310145505282041,11.274442901591687,5.80291071412212,21.68229939476653,12516.374186176175,56.90257154226652,13.512497992723986,18.248966148364204,12.52455359859764,12.61655380258069,0.5459437911102253,0.7879858657243817,0.6922118380062305,0.5468331846565566,0.1061259706643658,0.7312312312312312,0.9365482233502538,0.871331828442438,0.7116788321167883,0.1085972850678733,0.4789687924016282,0.7086720867208672,0.6239242685025818,0.4935064935064935,0.1055437100213219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023910840932117,0.0048475260377052,0.0072472594397076,0.0095116151454179,0.0117613543871072,0.0137008627978282,0.0157569452943336,0.0180772726808493,0.0202263965723518,0.0222131189513031,0.0245203105290685,0.0266817294854678,0.0288973931650309,0.0311202250548725,0.0331740346603635,0.0354381176859777,0.0375015535026306,0.0398090989261814,0.0415276001538829,0.0435534623960656,0.0582603339006233,0.0726949241234955,0.0859942097092267,0.0987472520537282,0.1111017378100219,0.1268265347120895,0.1397593940294074,0.1516599276441796,0.1628202526778944,0.1727140161262652,0.1856063053168809,0.1981501514495889,0.2098905042025944,0.2206039930897242,0.2316146137006193,0.2420910429746758,0.2519847464430668,0.261285248848444,0.269792859491389,0.2771745970002403,0.2848624913334874,0.2921009581677962,0.2987740722789015,0.3042415821185151,0.310153868574135,0.3154858748705813,0.3202854996243426,0.3247615044642288,0.3301353523829279,0.3340154465641296,0.3334545944489356,0.3324696088430686,0.3315367684406569,0.3306638475351908,0.3309263615519757,0.3296777459085541,0.3288055093801947,0.3289946655724251,0.3297886867169631,0.330513012744993,0.3313517365538969,0.3318606862667406,0.3329966117389565,0.3354460252174499,0.3389924786572831,0.3403719539385673,0.3402434822556563,0.3427094564596943,0.3477506199078994,0.3515411783592872,0.3577482955592408,0.3583544235636207,0.3589367669556348,0.3591625463535228,0.3616274658573596,0.3572458543619322,0.355487336914812,0.3578520770010132,0.3607368710475667,0.3627602158828065,0.0,1.951543786093929,58.8338540059868,186.01894485625053,279.54072833859675,fqhc7_80Compliance_implementation,50 -100000,95784,43842,414.2027896099557,6161,63.298672012027055,4817,49.747348200116924,1912,19.658815668587653,77.38153749659537,79.7236744251157,63.350937847410606,65.08306300517337,77.14319362764309,79.4842082017056,63.26347118200615,64.99716299683082,0.2383438689522847,239.4662234101048,0.087466665404456,85.90000834254852,150.80494,105.655713335483,157442.7252985885,110306.22372784912,333.23271,214.1342518844375,347356.6044433308,223016.6127264669,344.80691,165.88946901916728,356320.4188590996,170377.5432371729,3444.72428,1557.5753878809958,3562153.512068821,1591994.4825847263,1135.48471,500.9343829019516,1169870.844817506,507391.6846292158,1873.5734,780.5133036582451,1927869.205712854,790494.0154025577,0.37926,100000,0,685477,7156.487513572204,0,0.0,0,0.0,28339,295.27896099557336,0,0.0,31667,326.9230769230769,1670767,0,59953,0,0,6035,0,0,66,0.6890503633174643,0,0.0,1,0.0104401570199615,0,0.0,0.06161,0.1624479249063966,0.3103392306443759,0.01912,0.3309051456912585,0.6690948543087415,24.591421866596303,4.40040189366374,0.3215694415611376,0.2368694208013286,0.2167324060618642,0.2248287315756695,11.361714319914157,5.863451588844263,20.28695972678306,12359.77076747417,54.312264438481606,13.476730296507167,17.4540132732627,11.61727778886368,11.764243079848066,0.559061656632759,0.7738825591586328,0.6946417043253712,0.5862068965517241,0.1126500461680517,0.7493995196156925,0.9225,0.8789473684210526,0.7704280155642024,0.1650943396226415,0.4924327354260089,0.6936572199730094,0.6347305389221557,0.5260482846251588,0.0998851894374282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483744860134,0.0044701684675735,0.0065642628140091,0.0087037770533093,0.0109502409663053,0.0131722263505603,0.0152994658947282,0.0175751946845752,0.0196713605428273,0.0219268627089856,0.0240915705121636,0.026256902958264,0.0281616286243059,0.0302293974712738,0.0323252743625711,0.0343744511143025,0.0364763343612243,0.0386644691150708,0.0407001506258764,0.0426028110359187,0.0567039893145224,0.0700062748379,0.0836548138208654,0.0964704893400161,0.1083584480178718,0.1239286884293066,0.136417103799078,0.1483564381697567,0.1597857287676203,0.170085744908896,0.1834522694737748,0.1952134792576891,0.2069576368813441,0.2178635429870186,0.2277236434023271,0.2386371183776484,0.2493644918164384,0.2586526680230663,0.2677795797089944,0.2749688211535601,0.2822024883215392,0.2878949029324793,0.2945880404566156,0.3016958490023713,0.3072982422064679,0.3126177256331023,0.3177609795714375,0.3222984998728705,0.3275369069337163,0.3313820880960856,0.3305840722252869,0.3295251450411064,0.3286766466222591,0.3283963818166055,0.3281112977303467,0.3269619245837414,0.3257570967945881,0.3271620095270834,0.3282286881061766,0.3284344252086187,0.3302870598788966,0.3304129915744194,0.3316805790916128,0.3311922293592355,0.3314033106695817,0.3327075511055486,0.3329439585173366,0.3370134554464761,0.340551318827398,0.343894807715157,0.3458130764687173,0.3505307855626327,0.3536839446934781,0.3577484151836859,0.3586239396795476,0.3606013969456612,0.3634146341463414,0.3650857719475277,0.3664630760688506,0.3712643678160919,0.0,2.0615431926183367,54.83243614906569,177.63803133586663,271.6468543393772,fqhc7_80Compliance_implementation,51 -100000,95865,43748,412.601053564909,6361,65.32102435716894,5019,51.86460126219163,1968,20.23679132112867,77.37299817448195,79.67487183635971,63.35320242165369,65.05729615959629,77.13337037381937,79.43348570404126,63.265769223872994,64.97116742154877,0.2396278006625749,241.3861323184534,0.0874331977806974,86.12873804752041,150.87116,105.69816499033853,157378.77223178427,110257.30453276848,336.79197,216.0051337318168,350818.2757002034,224821.47158172092,346.01134,166.88395030769686,357591.6236374068,171535.27050953195,3575.78933,1611.354221781561,3699054.858394617,1649886.6445329983,1183.6941,520.4990299383536,1224116.8726855477,532323.5368321327,1930.46028,798.456008774718,1987218.8598550044,809837.543463431,0.37873,100000,0,685778,7153.580555990195,0,0.0,0,0.0,28664,298.47180931518284,0,0.0,31852,328.9000156470036,1668318,0,59881,0,0,5998,0,0,59,0.6154488082198926,0,0.0,1,0.0104313357325405,0,0.0,0.06361,0.1679560636865313,0.3093853167740921,0.01968,0.3449157641395908,0.6550842358604091,24.77221440595131,4.316754878603569,0.3161984459055589,0.2388922096035066,0.2255429368400079,0.2193664076509265,10.910361001401707,5.6175174598970425,20.876793622281287,12339.383807116088,56.83620252567165,14.328498390282416,17.89753012238354,12.60742438359422,12.002749629411484,0.56664674237896,0.7814845704753962,0.6880907372400756,0.5962897526501767,0.1271571298819255,0.7447633824670287,0.9082125603864736,0.8703241895261845,0.7481203007518797,0.173076923076923,0.5050938337801608,0.7146496815286624,0.6264755480607083,0.5496535796766744,0.1164613661814109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0040236350552869,0.0062688293113417,0.0086509757732063,0.0108879084236423,0.0129987785016286,0.0153700325135303,0.0174917592791027,0.0196282786173354,0.0219166308551783,0.0240971261718149,0.0262550401674412,0.0282719284723292,0.0303339097496706,0.0323491814770524,0.0345329684514896,0.036644664694076,0.0386616098814556,0.0408411214953271,0.0430408456272498,0.0576820812262134,0.0715047021943573,0.0846942730539173,0.096850749246553,0.1089312229488516,0.124157600084504,0.1368356361786895,0.1488635638806795,0.1596051227321238,0.1702845754939356,0.1833403277700659,0.1956357269465219,0.2071360257357735,0.2175904668197223,0.227983892263005,0.2383473051239742,0.248089772334326,0.2578235730837589,0.2666704474564736,0.2743008253866495,0.2818111392463607,0.2884244260166785,0.294574285545234,0.3008767937139161,0.3061328542293872,0.3112112925873919,0.3164152950747856,0.3202757357617073,0.3247938484640578,0.3291050686378036,0.3288606878713171,0.3282930523996419,0.3276579537599977,0.3276907273174472,0.3272840772283408,0.3257021224464794,0.3246915730959884,0.32543018520951,0.3263587606326649,0.327402325955303,0.3283903461963339,0.3301003476611883,0.3313856077741476,0.3316435908887896,0.3330694684321627,0.3346262983885664,0.3358630527817404,0.3403096871656071,0.3438915616111248,0.3473750890806873,0.349934350522932,0.3503680559233172,0.3523221375007877,0.352954649564819,0.3534132754225285,0.3522754067436925,0.3511695459409876,0.3473469387755102,0.3453177257525083,0.3412667946257198,0.0,1.9078053670950488,56.997790605207,194.5031715389829,275.0357996413427,fqhc7_80Compliance_implementation,52 -100000,95779,44082,415.84272126457785,6208,63.5003497635181,4808,49.48892763549421,1920,19.55543490744318,77.39816222968327,79.72707411495824,63.35848721039546,65.0795123326518,77.15261596381731,79.48541032640719,63.26726908464162,64.99248746279409,0.2455462658659541,241.66378855105108,0.0912181257538407,87.0248698577143,151.1719,105.98160261732238,157834.07636329465,110652.2333886576,335.81961,215.9474456287222,349876.59090197226,224726.92022795585,349.94742,168.87566847236783,361120.7884818175,173009.11278524715,3440.05846,1568.9408279979386,3544658.474195805,1591507.439938395,1146.09612,505.7971311327424,1179914.5846166697,511527.6236988386,1879.8363,793.1081821293069,1917691.790475992,790946.4573856568,0.38014,100000,0,687145,7174.276198331576,0,0.0,0,0.0,28558,297.4138381064743,0,0.0,32107,330.9076102277117,1665007,0,59733,0,0,5851,0,0,55,0.5742386118042577,0,0.0,0,0.0,0,0.0,0.06208,0.163308254853475,0.3092783505154639,0.0192,0.3278663396689147,0.6721336603310852,24.5563604892867,4.345444889372687,0.3157237936772046,0.2383527454242928,0.2217138103161397,0.2242096505823627,11.27779570556238,5.904628830833721,20.6051859511784,12411.081604931893,54.49268685340155,13.649644939400432,17.180815880945612,11.832404367555254,11.829821665500274,0.5644758735440932,0.7835951134380453,0.69433465085639,0.6022514071294559,0.111317254174397,0.7331786542923434,0.9156626506024096,0.875,0.752,0.131578947368421,0.5024182076813656,0.7086183310533516,0.629695885509839,0.5563725490196079,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508314597638,0.0047835252148532,0.0070912632390536,0.0091904297668372,0.0115284908249885,0.013770431738148,0.0157538085290671,0.0178141452067093,0.0201166746697453,0.0226110087988541,0.0245981415648147,0.0268032139228945,0.0289190800156208,0.0311547962124331,0.0331969029969999,0.0351558465701361,0.037242406687081,0.0393197843218581,0.041568374780467,0.0435787697978819,0.0581176961602671,0.0717430636170635,0.0848264365767484,0.0976447961660939,0.1099515074847143,0.1256871035940803,0.1386390632954352,0.1504368275994168,0.162205750416542,0.1732612751721031,0.1862426226683324,0.1983950163310333,0.2101586266840504,0.2197690551361744,0.2298832890080664,0.2402611052718924,0.2495484245032669,0.2586978522433374,0.2668103448275862,0.2745293390133296,0.2812575881965242,0.2892952345321049,0.2965278024410744,0.3023961067759838,0.3079744022537674,0.3135830141507691,0.3189264900827893,0.3229662029855301,0.3271008675385213,0.3312706161762765,0.3306353866458372,0.3296190829928604,0.3285893443431454,0.3283978794401028,0.3278581497143705,0.3260437375745527,0.3244773381408736,0.3249745793288943,0.3253635944149163,0.326249107780157,0.3268006888289907,0.3279294596785354,0.3284491239821656,0.330204664021046,0.3304148126883881,0.3322242728288841,0.3332578673307675,0.3371464291295515,0.3409613375130616,0.3427344703982353,0.3460403902881779,0.3482956640851378,0.351494396014944,0.3546824135059429,0.3542076195825143,0.3559563360227812,0.3586741675535959,0.362257281553398,0.3671270718232044,0.3700457317073171,0.0,2.731979927540704,56.07917618219111,179.01728467887784,263.5084447222865,fqhc7_80Compliance_implementation,53 -100000,95886,44116,416.8908912667126,6191,63.43991823623887,4853,50.10116179629978,1955,20.07592349248065,77.3584022892406,79.63941209883261,63.35300198276878,65.04105566228434,77.11125551630532,79.39269503407026,63.261480514383294,64.95218201638488,0.2471467729352809,246.71706476235045,0.091521468385487,88.87364589945435,150.6912,105.61051818665928,157156.62349039485,110141.74977229134,333.21166,214.20655770420976,346991.96963060304,222880.93955760988,348.82703,168.34283147515993,360290.9600984503,172990.92589406393,3490.78152,1591.917904273162,3605463.696472895,1625129.1161099258,1144.40371,510.771894298204,1179635.9635400372,518820.6306373482,1918.97754,807.8575970464681,1971671.2137329744,815686.1278189607,0.38005,100000,0,684960,7143.482885927038,0,0.0,0,0.0,28227,293.84894562292726,0,0.0,31934,329.5893039651253,1668523,0,59936,0,0,6006,0,0,73,0.7613207350395261,0,0.0,0,0.0,0,0.0,0.06191,0.1628996184712537,0.3157809723792602,0.01955,0.3299048203868591,0.6700951796131409,24.54310518954719,4.365954317841102,0.3224809396249742,0.2262518030084483,0.2276942097671543,0.223573047599423,11.085379701649716,5.657003125268529,20.915020202331185,12407.097614697472,55.18406428506432,13.142063645320956,17.715295101881665,12.321401611022566,12.005303926839137,0.5518236142592211,0.785063752276867,0.6875399361022364,0.56289592760181,0.1087557603686635,0.7282010997643362,0.932642487046632,0.8619854721549637,0.7154471544715447,0.1535087719298245,0.4891061452513967,0.7050561797752809,0.625,0.519208381839348,0.0968494749124854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0046306147470387,0.0069681816798693,0.0090974626608047,0.0112116283797519,0.0133931751798817,0.0155772443864868,0.0177673517262481,0.019919749241906,0.0221224915404982,0.024117845772723,0.0260403317579274,0.028274466708433,0.0305411827636221,0.0325642267541916,0.0345048319154208,0.0364738497186362,0.0383670677486552,0.0404386566141192,0.0424261339991677,0.0570660105917184,0.0719106523465251,0.0848142756909028,0.0978977654569892,0.1100799528078288,0.1255757447707585,0.1383366538086558,0.1498192258613356,0.1611195320339019,0.1722356220185453,0.1857905844855063,0.1987538671224282,0.2106018437989215,0.2202859891551513,0.229969869581473,0.241259089550752,0.2517510595583315,0.2606138970092197,0.269108605395104,0.2765513844179946,0.2840280510102529,0.2907939999531977,0.2967191756484661,0.3022857005804192,0.307262162359291,0.3120197348134443,0.3171287885432198,0.3213721392527652,0.3263738402647116,0.3308605733629535,0.3308466436434276,0.3303188629564786,0.3299283255262712,0.3286235450807805,0.327847856196107,0.3261537044428751,0.3244984763839512,0.3249078462348604,0.3256670205843066,0.32598087407275,0.3276431304869813,0.3287283523008412,0.3294974906028853,0.3301523297491039,0.3316384316938573,0.3334201750729471,0.3346730517074283,0.3370927711978888,0.3391334853534468,0.3412764605425156,0.3430160974052624,0.3482218458933107,0.350714780527741,0.3524942440521872,0.3559161210741057,0.3563039309683605,0.3566542288557214,0.3562843756365859,0.3564356435643564,0.3567608861726509,0.0,1.9828767677393948,56.04767564182544,187.8429506614152,264.680366537957,fqhc7_80Compliance_implementation,54 -100000,95726,43936,414.7149154879552,6251,64.01604579738002,4902,50.550529636671335,1945,19.900549484988403,77.38965647392791,79.75741102494935,63.34469261111818,65.09444212778577,77.1350226952189,79.50390964566937,63.25010345497084,65.00320031817417,0.2546337787090209,253.5013792799816,0.094589156147343,91.24180961160278,150.89272,105.73681743315272,157629.35879489375,110457.38378271814,335.90303,216.1316028277417,350225.85295531,225109.98691118395,350.44972,169.69582233474776,361965.223659194,174094.29034488613,3465.08967,1594.2744639188147,3575908.144077889,1622087.505037698,1172.95459,524.4943355461456,1209917.9115391849,532980.9758687263,1901.08838,806.9086687092397,1946771.117564716,809887.5592948272,0.37917,100000,0,685876,7164.970854313353,0,0.0,0,0.0,28539,297.4322545598897,0,0.0,32140,331.67582474980674,1666825,0,59804,0,0,5876,0,0,58,0.5954495121492593,0,0.0,0,0.0,0,0.0,0.06251,0.1648600891420734,0.3111502159654455,0.01945,0.3368050237402358,0.6631949762597641,24.64314321869068,4.371504987502494,0.3223174214606283,0.2362301101591187,0.2254181966544267,0.2160342717258262,11.242557964530416,5.941468685637076,20.891454113355785,12375.462629669782,55.80437593552457,13.7788503884994,17.891323995594718,12.420679987278898,11.71352156415156,0.558343533251734,0.7694300518134715,0.6860759493670886,0.5710407239819004,0.1237016052880075,0.7282768777614138,0.9294117647058824,0.8608490566037735,0.7394636015325671,0.1451612903225806,0.4932279909706546,0.6766712141882674,0.6219723183391004,0.518957345971564,0.1171393341553637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020865407989628,0.0047038309864866,0.0067688935345396,0.009214295873377,0.0113115037586336,0.0136552482587267,0.0158848298855028,0.0183236185829054,0.0203818791397497,0.0225399977480474,0.0245699993849812,0.0266613282412968,0.0288257910644159,0.0309121238956278,0.0330476219946158,0.0353876205339148,0.0376410893652272,0.039746436204428,0.0415020995302041,0.0433042970866502,0.0578334638475593,0.0718442537157211,0.0845232974158281,0.0968206876236165,0.11003861003861,0.1255182772042646,0.1386148067986504,0.150440594270146,0.1614425921377233,0.172030671885892,0.1847764054743778,0.1968325057605556,0.2086309815050396,0.2198287645019846,0.2295733116211517,0.2405594560474851,0.2502007405094348,0.2589999213244467,0.2675345588151911,0.2750709447088978,0.2817921080630985,0.2891814164464916,0.2959158342691648,0.3023534200004788,0.3084019129463743,0.3134168421830544,0.3179293434747798,0.3229663550213064,0.3270729244867845,0.3309234828496042,0.3300001345840679,0.3284764931687786,0.327757831749384,0.3263793576722481,0.3257508309591643,0.3249498982667095,0.3234954710001739,0.3245124207837293,0.3242002142966478,0.3237014776748404,0.3239599455498163,0.324485053759206,0.325538705438161,0.3255513477389173,0.327130334818221,0.3291576786131975,0.3298676211578887,0.3327779175050301,0.3350794543664744,0.336346981041899,0.3403019213174748,0.3429871520342612,0.3434719505269136,0.3471498678746696,0.3507989594946116,0.3499353929284624,0.3463983050847458,0.3486513486513486,0.3545232273838631,0.3537466717383035,0.0,2.4782166670494266,59.51721836611812,183.4897661129559,261.83051625980914,fqhc7_80Compliance_implementation,55 -100000,95763,44255,418.8360849179746,6149,63.072376596389,4842,49.998433633031546,1938,19.892860499357788,77.34687979821054,79.70774262325413,63.33382307926016,65.08188528678137,77.11157837642037,79.47190387157613,63.247590400235495,64.99758932640155,0.2353014217901687,235.83875167800272,0.0862326790246612,84.29596037981923,149.97312,105.1525671781638,156608.62754926225,109805.00525063313,335.53199,215.9507137525916,349821.87274834746,224949.7653087222,345.71991,167.4078227738379,357287.7520545513,171938.99286649484,3519.59438,1585.934649898888,3636732.234787966,1617518.41514874,1202.95875,523.2290429444531,1239817.037895638,530012.9308234425,1905.05006,791.2578238571979,1957081.043826948,799012.711763949,0.38066,100000,0,681696,7118.57397951192,0,0.0,0,0.0,28439,296.3984002172029,0,0.0,31644,326.78591940519823,1673014,0,60027,0,0,6033,0,0,74,0.762298591313973,0,0.0,0,0.0,0,0.0,0.06149,0.1615352282877108,0.3151731988941291,0.01938,0.3359763681592039,0.664023631840796,24.59039050441278,4.48021143965043,0.328996282527881,0.218298223874432,0.2201569599339116,0.2325485336637753,11.16783087459338,5.651829036837533,20.532283493574745,12375.838607963811,54.55727159321175,12.593553815304848,17.91655688924369,11.805631173845672,12.241529714817522,0.5528707145807518,0.7899716177861873,0.6854990583804144,0.575046904315197,0.1216696269982238,0.7249398556535686,0.925531914893617,0.8522167487684729,0.7407407407407407,0.1351351351351351,0.4931849791376912,0.7151248164464024,0.628475147430497,0.5261239368165249,0.118362831858407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0042996795521843,0.0065583756345177,0.0088010813337805,0.0109668755595344,0.0132685688682511,0.0153022734223672,0.0174152715394038,0.019607041360839,0.0219723962812794,0.0241344310364272,0.0260593677163656,0.0281154233767302,0.030151633771478,0.0322613936591809,0.0344431925076752,0.0365016412794731,0.038454356846473,0.0404873028907622,0.0425469880772634,0.0569048836748113,0.0711297071129707,0.0839606617878336,0.0966199314737351,0.1085513142086293,0.1247094129084069,0.137101731922922,0.1489522310939111,0.1607160001280095,0.1708942114058014,0.184643352731732,0.1971211515393842,0.2097315618515823,0.2199604678337028,0.229862453858323,0.2404956848860367,0.2504933605378466,0.2595969020132417,0.2679774898454696,0.2746301470251454,0.2828222065407262,0.2896679182604016,0.2960706130127666,0.3021954317762385,0.3074971780898399,0.3121032429506422,0.3168367602181199,0.3221082338583578,0.3264796459718951,0.3306450550174606,0.329831876260928,0.3290058173916631,0.3290658413055712,0.3286779876210125,0.327617408846827,0.3264616372784413,0.3244243421052631,0.3250771452957783,0.3261081219574686,0.3271965034341272,0.3275516511510293,0.3281911316799177,0.3283165992412015,0.3310561093067533,0.3314373855201002,0.3321295860155964,0.333180843459614,0.3355152895044745,0.3377964130932666,0.3411835026897788,0.3480152007691955,0.3498826791808874,0.3524974645030426,0.3551216535733353,0.3601873536299765,0.3641748607984836,0.3686713715863762,0.3734840698869476,0.3736325385694249,0.3831628638867034,0.0,2.183924851450237,54.65189599880512,179.37793326562402,272.9176695298077,fqhc7_80Compliance_implementation,56 -100000,95757,44265,418.6221372850026,6298,64.56969203295843,4881,50.42973359649947,1902,19.5599277337427,77.36211040614715,79.72476576435636,63.32787542470121,65.07584809749422,77.13001522240928,79.49243330913816,63.24286615814027,64.99300570036398,0.2320951837378686,232.33245521819867,0.0850092665609452,82.84239713023567,151.45152,106.1277956071652,158162.34844450015,110830.32635438164,334.79923,214.9899382318559,349088.9438892196,223970.89323167587,350.10172,168.95429565364412,362053.8446275469,173676.47116891688,3483.73568,1574.269722354683,3601288.1669225227,1607423.778813111,1168.5146,512.4411961311513,1208189.521392692,523139.1016479762,1866.73566,773.1912380975156,1921310.671804672,783454.8428361019,0.38108,100000,0,688416,7189.197656568188,0,0.0,0,0.0,28410,296.1141222051652,0,0.0,32135,332.0383888384139,1664575,0,59732,0,0,5891,0,0,55,0.5743705421013607,0,0.0,0,0.0,0,0.0,0.06298,0.1652671355096042,0.302000635122261,0.01902,0.3287837427964816,0.6712162572035183,24.739546765967745,4.353653247106551,0.3165334972341733,0.2399098545380045,0.2206515058389674,0.2229051423888547,11.047631562362774,5.641083986679538,20.08439479803633,12474.464999081894,55.29117043569436,14.040204372839325,17.47825114129191,11.967775075096482,11.804939846466633,0.5716041794714198,0.7959009393680615,0.7029126213592233,0.5933147632311978,0.1222426470588235,0.7323272438443209,0.9326923076923076,0.8630490956072352,0.7316017316017316,0.1377777777777777,0.5157371617890668,0.7205298013245033,0.6493955094991365,0.5555555555555556,0.1181923522595596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025531138871158,0.0048066197497312,0.0071160288295604,0.0096934472702886,0.0122781140328569,0.0142787305984438,0.0164583035914588,0.0187045658743771,0.0206644103843519,0.0228252521632276,0.0250638389515029,0.027282158741898,0.0294852933611794,0.0315536731896827,0.0333673922242519,0.0350684931506849,0.0370301335818577,0.0388969009057613,0.0407895967817382,0.0427586350568726,0.0577581527412418,0.0717790448292096,0.084618853361578,0.0973034369610029,0.1105052209682523,0.1256054485077941,0.1384504412763068,0.1502922171242428,0.1614884933438748,0.1722048873591319,0.1856933614784819,0.1976430867123332,0.2094700430753165,0.2201028108935797,0.2294546174839334,0.2407914123342454,0.2510132758678443,0.2600830267643187,0.269201538164865,0.2769896609761962,0.2840461972874137,0.2913513829600608,0.2980832938949361,0.3040241665767612,0.3093324267223585,0.3151032681027259,0.3200605848187462,0.3246713582163627,0.3291552286735381,0.333628003324933,0.3327136544886302,0.3324753974261922,0.331090023371723,0.3300973678888215,0.330250441650213,0.3300280034889593,0.3278488822794222,0.3282620456743774,0.3284024677051024,0.3301233557023087,0.3301326359050999,0.3308798929407828,0.3315026729034414,0.3324487656936423,0.3330775502373987,0.3349536014140521,0.3352546993014935,0.3380502160165299,0.3414421331844199,0.346273720755908,0.348693135570227,0.3487600694992892,0.3508157779583672,0.3546542252991195,0.3573688128023818,0.3638297872340426,0.3668234937016239,0.371422893481717,0.379505110274341,0.3852929911911145,0.0,2.1216452216521926,55.27415357517402,188.74590677963644,267.72725526414945,fqhc7_80Compliance_implementation,57 -100000,95770,43854,414.15892241829386,6276,64.45651038947479,4860,50.26626292158296,1903,19.51550589955101,77.32840490063373,79.68710158458973,63.31625382636724,65.06402952197078,77.09110570166787,79.4508223219123,63.22818751192401,64.97860146798989,0.2372991989658572,236.27926267742797,0.0880663144432247,85.42805398089115,151.97314,106.4422671186851,158685.53826876893,111143.64322719548,334.44422,214.5587599457895,348762.441265532,223581.84185631145,344.45377,165.93845956968983,356362.4517072152,170759.21139401948,3452.17164,1563.5588006118935,3574382.645922523,1602352.9504144231,1145.99814,503.1998924944362,1186313.7516967736,515124.1855429009,1858.40322,773.8728996953955,1908792.75347186,782510.1978168689,0.37891,100000,0,690787,7212.97901221677,0,0.0,0,0.0,28430,296.3767359298319,0,0.0,31649,327.22146810065783,1662976,0,59727,0,0,5899,0,0,56,0.584734259162577,0,0.0,1,0.0104416831993317,0,0.0,0.06276,0.1656329999208255,0.3032186105799873,0.01903,0.3301471703838567,0.6698528296161432,24.73338765358872,4.361860616311662,0.325514403292181,0.2314814814814814,0.2279835390946502,0.2150205761316872,11.035774048201354,5.683659129250584,20.120474047278528,12368.77791935725,54.99977879271727,13.419499761679887,18.059545959066924,12.163044065991343,11.357689005979116,0.5590534979423868,0.7795555555555556,0.6940581542351454,0.5568592057761733,0.1196172248803827,0.7116903633491312,0.9056122448979592,0.8259803921568627,0.708,0.1481481481481481,0.5052865887590429,0.7121418826739427,0.6482112436115843,0.5128205128205128,0.1121833534378769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584264766981,0.0044727073571472,0.0067518174064898,0.0089635968210735,0.0112510427051331,0.0135063559322033,0.0156734377549355,0.0180401845877404,0.0203847962542681,0.0228059041496918,0.0245297524473373,0.0267675626835328,0.02889757301522,0.0311579424427826,0.0332696971260512,0.0349486262429968,0.0369239368970229,0.0389118778714622,0.0408712550270708,0.0428999937509113,0.0576999352858902,0.0719873658669232,0.0853491029956067,0.0976371166095566,0.1099708135332483,0.1254280640933496,0.1378549765646539,0.1499265691845986,0.1612500133502792,0.1720492365757419,0.1850160480796157,0.1974380335176189,0.2090123806001,0.2190678244132892,0.2287532058690794,0.2389698144558294,0.2488922620177014,0.2583691663477341,0.2665750718186876,0.2737838705240475,0.2812279341119818,0.2880842351564785,0.2945983395904639,0.3014893846837008,0.3068197016304546,0.3116359375963495,0.3164482347777011,0.3209415543037748,0.3251219385637194,0.3296443522932872,0.3301019307518067,0.3296246316543196,0.3286888829344653,0.3276873717374339,0.3273451906489798,0.3261472883668869,0.324434374801952,0.3248002367564368,0.3252047813670332,0.3266436728202012,0.3269760383685857,0.3277370676884789,0.328450833716411,0.3288638598373111,0.3283757808745795,0.3307209623245762,0.3316907827275834,0.3345575540697492,0.3383845453909148,0.3401600380288385,0.3432137993645029,0.3468439940890859,0.3492401025705172,0.3534933010370146,0.3542760690172543,0.355218260971879,0.3607681755829904,0.3670937563555013,0.3713021841304949,0.3814352574102964,0.0,1.895701593846589,55.9321935792152,183.25633057697084,269.44357846307463,fqhc7_80Compliance_implementation,58 -100000,95740,43932,414.6647169417172,6245,64.22602882807604,4910,50.80426154167537,1971,20.22143304783789,77.31464774318667,79.68060963786604,63.30648041847581,65.05598735007851,77.07451086322327,79.44258202153564,63.217736912434304,64.9709815729281,0.2401368799634013,238.02761633039893,0.0887435060415029,85.00577715041402,149.90228,104.98037248479862,156571.56883225404,109650.89190586872,332.42975,213.5747032412148,346733.852099436,222591.953296109,342.57294,164.87736795800674,356038.45832462923,170760.83802837777,3501.8978,1573.9752342351728,3622582.6300396905,1609083.93140718,1169.13179,508.200467257026,1206486.985585962,516513.7005354792,1934.2915,804.9749994748757,1985292.897430541,808566.7626632609,0.3795,100000,0,681374,7116.889492375183,0,0.0,0,0.0,28253,294.589513265093,0,0.0,31384,325.91393357008565,1671839,0,59978,0,0,5913,0,0,59,0.6162523501148945,0,0.0,1,0.0104449550866931,0,0.0,0.06245,0.1645586297760211,0.3156124899919936,0.01971,0.3262171709414836,0.6737828290585164,24.852402074058872,4.33976480888516,0.3219959266802444,0.2264765784114052,0.2287169042769857,0.2228105906313645,10.99878742687286,5.651308138678509,20.97147388302898,12456.54239872286,55.54870411538148,13.312784799676455,17.890808688427168,12.29779053326131,12.047320094016536,0.5564154786150712,0.7742805755395683,0.6850094876660342,0.5921638468388246,0.1124314442413162,0.7114914425427873,0.8936708860759494,0.8616187989556136,0.7219730941704036,0.1283185840707964,0.5047515612272604,0.708507670850767,0.6285475792988314,0.56,0.108294930875576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122828344223,0.0047855136823108,0.0070240971193081,0.0089726653795346,0.0111297624497685,0.0134479807653123,0.0155986982381326,0.0178370872557227,0.0199129065892503,0.0220097457106588,0.0240533973116791,0.0262957943157548,0.0287086753481865,0.0308494415364958,0.0331024659117886,0.0351689702583399,0.0370815255097286,0.0391511881290858,0.0412394717687428,0.0432046673959472,0.0573322892195249,0.0713642739014842,0.085071338648762,0.0981332491980859,0.1106201689356631,0.1265537559902252,0.1388042751462019,0.1506798266628336,0.1614844426392466,0.1725414453565105,0.1854263933666152,0.1975775435251291,0.2092815512827496,0.2196762988044752,0.2297574421168688,0.2398023759298323,0.2501370077507241,0.2593265066762901,0.2671428408948739,0.2748351976479776,0.2830407458083068,0.2906344481683737,0.2975600502691295,0.3036265200532994,0.3088269270523001,0.3145831791379863,0.3202758344492697,0.3248037257122498,0.3298173864651145,0.3345505840166636,0.3340286094925381,0.3334341739776134,0.3319920083293469,0.3310569856922166,0.3303705465301208,0.3277465414489912,0.3257328474092854,0.3265668403491181,0.3264677706309019,0.3280697367010824,0.3298524531768499,0.3310408885199897,0.3319253931080629,0.3331622749280439,0.3349581002233054,0.3354754780798751,0.335633626097867,0.3403841325633944,0.3436515162126199,0.3471913678197397,0.348313582497721,0.3512924157004574,0.3556864235055724,0.3590313433979615,0.364557681379049,0.3698499642772088,0.3736736890665846,0.3816494845360825,0.3842952275249722,0.389922480620155,0.0,1.7647469304518455,54.35813691498752,191.7417755597597,272.9837531372386,fqhc7_80Compliance_implementation,59 -100000,95811,44163,417.0189226706745,6212,63.6565738798259,4847,49.9733851019194,1927,19.72633622444187,77.3504688262772,79.68332036095012,63.33176974345843,65.06036676118644,77.11366040217328,79.44859602395998,63.24402082053362,64.97618554754003,0.2368084241039127,234.7243369901406,0.0877489229248098,84.18121364641706,151.28498,105.98821440360555,157899.3852480404,110622.17741554264,334.87764,215.3040057198611,348912.4108922775,224110.83875532149,348.11027,168.1426294462025,359604.97228919435,172623.32246326076,3484.59735,1578.4438626456763,3592485.4035549155,1602992.0391663574,1152.14873,505.8208614490748,1185035.5387168487,510449.2505548148,1894.81558,787.23775416667,1940294.2668378367,788191.8931901471,0.38165,100000,0,687659,7177.244784001837,0,0.0,0,0.0,28511,296.9387648599848,0,0.0,31889,329.06451242550435,1665204,0,59826,0,0,6069,0,0,58,0.6053584661468934,0,0.0,0,0.0,0,0.0,0.06212,0.1627669330538451,0.3102060528010302,0.01927,0.3337430854333128,0.6662569145666871,24.551908622649464,4.415777712977327,0.3214359397565504,0.2279760676707241,0.2213740458015267,0.2292139467711987,11.226487958788804,5.729013435426242,20.38370150621187,12462.767569249643,54.9007410439888,13.221999887470226,17.652140513853915,11.963268468465072,12.06333217419958,0.5669486280173303,0.7846153846153846,0.7105263157894737,0.5927306616961789,0.1242124212421242,0.7461656441717791,0.9218009478672986,0.8839506172839506,0.7568627450980392,0.1486486486486486,0.5009878633926051,0.6998535871156661,0.6496097137901128,0.5415647921760391,0.1181102362204724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982697489717,0.004400596209809,0.0066578706992794,0.00877843593469,0.0111276115304025,0.0136073822085514,0.0158176533578093,0.0178804836206192,0.0200605292217087,0.0221526114284544,0.024373737477313,0.0264517122760178,0.0285887639987248,0.0306597458238068,0.0327447866174377,0.0346858435882334,0.0366544174732156,0.0387188449690394,0.0406962847492855,0.0431419499245224,0.0579521151739606,0.0719999163521157,0.0850031439949696,0.0981990879862147,0.1104613796082645,0.1261770642880544,0.1391474923125861,0.1514461689023158,0.1631062571395018,0.1739447260413429,0.1872209010792721,0.1994097488730095,0.2111043517935125,0.2215227228014951,0.2316433277965393,0.2422778639485929,0.2515568153918264,0.2606895310108921,0.2692879770190637,0.2772159292643538,0.2842150328612422,0.2910137063198765,0.2975412939561739,0.3033715942584649,0.3091057127927183,0.3133910512554881,0.3188285986271857,0.3237396323051638,0.3290299165240836,0.333170383680372,0.3326408935171446,0.3319317884172652,0.3312782167042889,0.3299574640469921,0.329546468401487,0.3279025212659974,0.3258991551349723,0.3262723702157729,0.326753486464315,0.3278287133844476,0.3288936345584654,0.3306924824656722,0.3312327275772548,0.3318354571875698,0.3321225825074569,0.335096955796497,0.3371828421891,0.3416310899045706,0.3436440529866135,0.3433575022782202,0.3439767779390421,0.3451771289794625,0.3509046515995743,0.3549969806763285,0.3524904214559387,0.3491951592057337,0.3501370697532744,0.355252606255012,0.3493224932249322,0.3394216133942161,0.0,2.43888581250467,56.98637791327323,178.48357897455566,267.4499606883178,fqhc7_80Compliance_implementation,60 -100000,95725,43610,412.41055105771744,6157,63.1600940193262,4842,50.09140767824498,1986,20.464873335074437,77.30949638025908,79.66949594915855,63.31695901961641,65.05937011445859,77.07073346153527,79.42993515296797,63.22912722012736,64.97342863693075,0.2387629187238076,239.5607961905739,0.0878317994890522,85.94147752783954,150.9145,105.7262309961648,157654.217811439,110447.87777086944,334.69868,214.9571323868228,349152.57247323066,224063.4655385979,345.84402,166.66897337017025,358188.8952729172,171752.79999793402,3469.0516,1572.0543754758442,3589923.7398798643,1608208.1749551776,1146.83982,502.8231299643808,1185245.7142857143,512467.76700379327,1942.04574,800.9567191987993,2002358.7150692088,813272.477189079,0.37849,100000,0,685975,7166.100809610865,0,0.0,0,0.0,28416,296.3384695743014,0,0.0,31747,328.5035257247323,1666300,0,59826,0,0,5926,0,0,76,0.7939409767563332,0,0.0,1,0.0104465917994254,0,0.0,0.06157,0.1626727258315939,0.3225596881598181,0.01986,0.33426097711812,0.66573902288188,24.707913587972996,4.478275958443135,0.3273440726972325,0.2211895910780669,0.225113589425857,0.2263527467988434,11.33808386147467,5.98970321685104,20.93130761273292,12323.083030335052,54.95071509725605,12.76261220436478,18.069135004232265,12.15354276219052,11.965425126468473,0.5611317637339942,0.776844070961718,0.7028391167192429,0.6045871559633027,0.1021897810218978,0.7299843014128728,0.8790322580645161,0.8858447488584474,0.7529411764705882,0.1100478468899521,0.5008408071748879,0.7224606580829757,0.6329555361813426,0.5592814371257485,0.1003382187147688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018837159842416,0.0040953693942097,0.0064625436247057,0.0087856504428374,0.0108270218065368,0.0131403503414862,0.0153901034500331,0.0175263098798575,0.0198990229344671,0.0219217897677845,0.0240572371590524,0.0265622112245107,0.0288020565552699,0.0311006755643433,0.0330428505130717,0.0349013813838635,0.0370316704616021,0.0388392810843885,0.0405961586430531,0.042375441410848,0.0568892601681198,0.070961327123345,0.0841802754266175,0.0967192429022082,0.1093629720239162,0.1246562883370701,0.1372018504371445,0.1491483925910155,0.1602768846207257,0.1702319297455528,0.1834507573309202,0.1961805367601684,0.2083460282916213,0.2185136954071415,0.228786594294648,0.2396936072097637,0.2496230019101236,0.2585474658946253,0.2664811133200795,0.2738788517975055,0.2808480090775412,0.2872354118156395,0.2933772246628222,0.2983518856155839,0.3038437701272345,0.3094548100282399,0.3150590649714686,0.31977291820473,0.3241446345256609,0.3286595921819455,0.3284932319473655,0.3283156590001377,0.3274745736412238,0.3270482084502154,0.3261209244185181,0.3247199631732392,0.3241277453985294,0.3246642085857256,0.3259330373214928,0.3265800089645899,0.3272959807406571,0.3275656561643291,0.3293986449522367,0.3312453694349027,0.3321804329423147,0.3331502262680164,0.3340121615419917,0.3374155671990405,0.3389800662111714,0.3404263765929572,0.3430836522689994,0.3442169635735176,0.3465078164397377,0.3489170225747407,0.3508804972219606,0.3496743635287152,0.349272030651341,0.3544538160872248,0.3635862068965517,0.362413528055342,0.0,1.8543396920327344,56.23086379548808,183.8111362449461,266.8248073742272,fqhc7_80Compliance_implementation,61 -100000,95724,44059,416.6039864610756,6246,63.94425640382767,4911,50.62471271572437,1924,19.598010948142576,77.40440741590693,79.76137691535897,63.3594678928421,65.09916685113159,77.1542803358037,79.5162677182064,63.26553569853684,65.01078371012724,0.2501270801032262,245.10919715257276,0.0939321943052604,88.38314100434275,151.78614,106.17390197706644,158566.44101792653,110916.70007215164,336.31136,216.1993891386705,350675.31653503823,225197.9327427505,349.41589,168.73055008027237,361231.8122936777,173328.30241419887,3523.39876,1613.5012332353551,3631330.8888053154,1636118.0615471092,1190.10525,528.0072756189317,1221670.343905395,530003.4281912489,1889.409,803.7853792271056,1926674.125611132,798908.4705901736,0.38093,100000,0,689937,7207.565500814842,0,0.0,0,0.0,28603,298.10705779114954,0,0.0,31963,330.1366428481885,1665670,0,59753,0,0,6026,0,0,69,0.7103756633655092,0,0.0,0,0.0,0,0.0,0.06246,0.1639671330690678,0.3080371437720141,0.01924,0.3272727272727272,0.6727272727272727,24.698507474122483,4.399999207402815,0.3319079617185909,0.2180818570555895,0.2260232131948686,0.2239869680309509,11.30048085725354,5.854091079499609,20.480415367861195,12397.62348111109,55.63646748167878,12.808752733446113,18.38162516321221,12.406364846250622,12.039724738769843,0.5703522704133578,0.8104575163398693,0.688957055214724,0.6063063063063063,0.1245454545454545,0.715724244771495,0.9411764705882352,0.8254716981132075,0.7286821705426356,0.1446808510638297,0.5185082872928177,0.7403156384505022,0.6409618573797679,0.5692488262910798,0.1190751445086705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882136746079,0.0046516341525209,0.0070505407105321,0.0092113949118976,0.0112960458755706,0.0135280944625407,0.0156636942675159,0.0177851698417395,0.0199444171979728,0.0222358659503709,0.0243617468305131,0.0263360463087454,0.0283743356190437,0.0302718180600904,0.0325539642577077,0.0344446167364449,0.0367332566978386,0.0387472249310123,0.0407408177264129,0.0426331961876985,0.0575208302879695,0.0717208611108204,0.0846997115132441,0.0968813744663848,0.109454886623586,0.1250423011844331,0.137684080974409,0.1490779779396107,0.1610769806079384,0.1714907718210773,0.1843638595999956,0.1967450819139957,0.2085712731821395,0.2188709783250585,0.2283771292750561,0.238592060960482,0.2486189695001506,0.2580529062443765,0.2666734733235771,0.2750953204254783,0.2827617297222318,0.2900988017658188,0.2967635246869832,0.3031744514031649,0.3095618881457788,0.3151068877770538,0.319377288004298,0.3240209275156194,0.3283967847819906,0.3327366301185948,0.3322145398402363,0.3313525012008509,0.3306688394700982,0.3298992838926271,0.3292168273288614,0.327504848586656,0.3256390811135337,0.32570932726469,0.3264829678100983,0.3268634922896115,0.3267636213899339,0.3285683215690926,0.3282313281266358,0.3288533666726201,0.3297563317728964,0.3309538076752729,0.3312691739575048,0.3337512537612838,0.3386328617453424,0.3419822532086832,0.3466745411593676,0.3500477048658963,0.3518495297805643,0.3530794902912621,0.3547543433588642,0.3526011560693641,0.3562672387373582,0.3589018974566007,0.3576195773081201,0.366375892149088,0.0,2.686531864489408,56.04206566470796,187.0177249998565,268.9695458837287,fqhc7_80Compliance_implementation,62 -100000,95748,43808,414.0452019885533,6298,64.54442912645695,4936,50.95667794627564,1955,20.063082257592846,77.33232137485312,79.69874033292592,63.31916690730778,65.07164468373341,77.08785732335194,79.45546929170463,63.22873044853217,64.98397512839881,0.2444640515011826,243.27104122129128,0.0904364587756134,87.66955533459964,149.83628,104.98723831868462,156489.7856874295,109649.12349731212,332.35767,213.4847911272576,346469.6181643481,222325.86374403728,343.74671,166.01288848428447,355827.5368676108,170902.47150995675,3558.8581,1624.0420743843115,3672169.7476709695,1652609.119932667,1194.12661,528.0231781468952,1231684.3171658935,536584.491044666,1926.26478,809.7039064325735,1976768.8515687007,815290.181552333,0.37863,100000,0,681074,7113.17207670134,0,0.0,0,0.0,28268,294.5753436103104,0,0.0,31621,327.0042194092827,1673874,0,60057,0,0,5858,0,0,55,0.574424531060701,0,0.0,0,0.0,0,0.0,0.06298,0.1663365290653144,0.3104160050809781,0.01955,0.3366515837104072,0.6633484162895927,24.732865386058908,4.409346860870733,0.3123987034035656,0.2244732576985413,0.2364262560777958,0.2267017828200972,11.203134951718749,5.749152419330782,20.87917466267474,12366.387346274094,55.9599709539235,13.148087322875158,17.42549598783836,13.027371843295189,12.359015799914795,0.5676661264181524,0.7770758122743683,0.7088197146562906,0.6066838046272494,0.1251117068811438,0.7139605462822458,0.900523560209424,0.8737864077669902,0.7644787644787645,0.1471698113207547,0.5143725815367607,0.7121212121212122,0.6486725663716815,0.5616740088105727,0.1182669789227166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025335441242044,0.0048686973191735,0.0068536268377873,0.0091470851288722,0.011261902824123,0.0136001059483909,0.0156135269641837,0.0179379064615258,0.0203568324727774,0.0223587223587223,0.0243574892103293,0.0266102704145535,0.0286272493573264,0.0303620165816983,0.0325196541691599,0.0347475582657227,0.0365507672554826,0.0386442858328492,0.0407365839464604,0.0426586681663854,0.0573951895774177,0.0718186954611086,0.0845989259942943,0.0967267068336435,0.1091545582994158,0.1250872628038332,0.1377415144988275,0.1493587355648981,0.1612362370379863,0.1715789812263453,0.1850276249044167,0.1971802029907593,0.2091758486789867,0.2198733581950809,0.2293362968179217,0.240087252112099,0.2487558858316038,0.2587621094321365,0.2665501668066178,0.2750667109497577,0.2821595972455297,0.2888852485871078,0.2946975973487987,0.300130653145864,0.3059821168237924,0.3109590729783038,0.3155582259942168,0.3198346581875994,0.3242728756053974,0.3292866379879127,0.3294464567035157,0.3295947154751256,0.3284214974994717,0.3272120441541929,0.3269487949121816,0.3252569188121238,0.3248299589364704,0.3254535007797751,0.3254770112980851,0.3267781231022041,0.3281408355542209,0.3290753173707246,0.3297794194807648,0.3306606942889137,0.3325942350332594,0.3339856490541422,0.3339221104811828,0.3378829907956122,0.3409937451683182,0.3444355803749501,0.3455010038328162,0.3489254784561103,0.3508438015480269,0.3530357553020442,0.3531787022255611,0.3565535124941065,0.3617633691864869,0.3641838988154989,0.3715608825932988,0.3654141104294479,0.0,2.143617310268716,58.03804070701878,182.87652962265955,273.12384715127064,fqhc7_80Compliance_implementation,63 -100000,95716,44219,417.4119269505621,6427,65.87195453215763,4981,51.36027414434368,1970,20.132475239249448,77.41699606751023,79.76916992579756,63.36600846061516,65.1001628369504,77.17462467023519,79.52975875943204,63.276094266991095,65.01418527822585,0.2423713972750363,239.41116636551385,0.0899141936240681,85.97755872455082,150.68614,105.56505815416298,157430.46094696812,110289.8764617859,336.44809,216.5285394749809,350825.70312173513,225550.8439195304,354.01098,171.48291976311504,365210.73801663256,175666.37253276948,3567.24634,1626.852956380652,3681321.774833884,1654898.869178875,1208.81168,537.526495136693,1243664.4134731914,543306.5456587058,1936.09186,811.3389315163741,1980629.236491287,813428.5377987211,0.38105,100000,0,684937,7155.930043044005,0,0.0,0,0.0,28612,298.205106774207,0,0.0,32484,334.7298257344645,1667118,0,59823,0,0,6034,0,0,71,0.7417777592043128,0,0.0,1,0.0104475740733001,0,0.0,0.06427,0.1686655294580763,0.3065193714018982,0.0197,0.3216192170818505,0.6783807829181495,24.81810963766612,4.45660090931228,0.3318610720738807,0.2212407147159205,0.2200361373218229,0.2268620758883758,11.68560638144621,6.117206768174129,20.935659715292644,12443.850366669509,56.32813318582308,13.030218408582243,18.673340390986287,12.137523737150358,12.48705064910419,0.5557117044770127,0.7731397459165155,0.6950998185117967,0.5866788321167883,0.1097345132743362,0.722473604826546,0.9107142857142856,0.8807339449541285,0.748,0.1209677419354838,0.4952120383036936,0.6971830985915493,0.628594905505341,0.5390070921985816,0.1065759637188208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.0044879392963154,0.0068768257059396,0.0091288498055423,0.011336830974459,0.0134672937152629,0.0158091083295959,0.0179424372320881,0.0199991824554949,0.02253777609543,0.0245931876870106,0.0267041605944292,0.0290710225228466,0.0315019823901961,0.0336201204918709,0.0358884801388831,0.0378936905969809,0.0396934055220196,0.0416043069759707,0.0437346334958536,0.0588499410038739,0.073284295773911,0.0867708770457406,0.099260645961949,0.1114943256127916,0.126713342922413,0.1385064177362893,0.1501330494944119,0.1609029625118853,0.1717407856216019,0.1840158506250875,0.1968279040581623,0.2083469188131725,0.2190281676296158,0.2289750942069587,0.2393052713092538,0.2500612949960994,0.2592288761279737,0.2673635518468969,0.2747671464860288,0.2821040462427746,0.289490289560401,0.295728355067923,0.3022687818018557,0.3076577724388142,0.3137153483331486,0.3187056294370562,0.3235895936860567,0.3281005521575524,0.3332849967702387,0.3324051654560129,0.331463994611906,0.3307898071237505,0.3297335588613725,0.329618236666518,0.3280726192845224,0.3259550668309792,0.3261193419006302,0.3285266777895059,0.3289251497538171,0.3301247971347025,0.3313008929625113,0.3318717113505387,0.3332666088387714,0.3352329869259135,0.3365092551727718,0.3370872574605696,0.3398043077307824,0.3422209813638584,0.3461083043890117,0.3484629294755877,0.3527051992610187,0.3566381089362767,0.3589041095890411,0.3609296247899944,0.3675283658907474,0.3699788583509514,0.36779324055666,0.3667922497308934,0.3660081997763697,0.0,2.5760245409143225,57.85281725252591,185.3409933569349,273.6711140322632,fqhc7_80Compliance_implementation,64 -100000,95699,43884,414.52888744918965,6312,64.76556703831807,4882,50.47074682076093,1964,20.20919758827156,77.3508434030137,79.74087162499522,63.31502979323547,65.08253322164465,77.10314269373907,79.49205463361018,63.22415319058826,64.99344862788617,0.2477007092746248,248.8169913850413,0.0908766026472065,89.08459375848565,151.13274,105.88644596265728,157925.0984858776,110645.30032984389,334.98647,215.15267476137333,349501.1860103031,224281.7347053859,347.03142,167.3754313140811,358704.11394058453,171975.22534768237,3476.9193,1577.581861940292,3598245.5616046144,1613719.2251708868,1141.59,502.0677911036136,1181434.0902203785,513340.0516497396,1924.88492,806.0306435868366,1982215.0074713423,817790.6023290862,0.37947,100000,0,686967,7178.413567539891,0,0.0,0,0.0,28471,296.941451843802,0,0.0,31862,329.02120189343674,1665312,0,59759,0,0,5909,0,0,56,0.5851680790812861,0,0.0,0,0.0,0,0.0,0.06312,0.1663372598624397,0.3111533586818757,0.01964,0.3336355394378966,0.6663644605621033,24.83283182046829,4.355990880277154,0.3265055305202786,0.233920524375256,0.2156902908643998,0.2238836542400655,10.944037226892885,5.6060223690201525,20.840830647419622,12429.893990268998,55.099936894241054,13.566910097864197,17.78583382870043,11.785834481633511,11.961358486042924,0.5471118394100778,0.7408056042031523,0.6944792973651192,0.5698005698005698,0.1079597438243366,0.7068832173240526,0.8894601542416453,0.8722891566265061,0.6934865900383141,0.1096491228070175,0.4895514070771802,0.6640106241699867,0.631891433418151,0.5290404040404041,0.107514450867052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361234640436,0.0042794414416241,0.0063242952420591,0.0086389137328238,0.0108038820728804,0.0133452863633585,0.0156280284405635,0.0178728271748677,0.0200857017211932,0.0223879068433665,0.0244897959183673,0.0264890459218783,0.0284712150667036,0.030362975097621,0.0325397071116752,0.034744763991978,0.0367887779205171,0.0390479848042929,0.0411292335857535,0.043331873996706,0.0580420091705747,0.0724441931565942,0.0862888751272658,0.0991068704699186,0.1109024935656723,0.1265591113462047,0.1394257814573051,0.1514280237684493,0.1632711958613023,0.173711489553488,0.1866195285469459,0.1991361205534024,0.2105371968270894,0.2213017880983125,0.2316118591260885,0.2416890288527644,0.2513315839428284,0.260417722231605,0.2696872976748941,0.2773911747509372,0.2843775332947307,0.2904041882854499,0.2966609791933267,0.3026824060078217,0.3083459972038174,0.3142990988325505,0.3190014390289682,0.3233785898789907,0.3278198408076102,0.3314634918958872,0.3306204945091962,0.3300173367456451,0.3283544268157053,0.3277365518436174,0.3271015567086731,0.3254896564377781,0.3243730432307644,0.3245897339213404,0.3250303040650129,0.3248372424863997,0.3256384333108664,0.3256607495069034,0.3278743315508021,0.3283392415223062,0.3296495181473846,0.3301008735440932,0.3301988330595366,0.3340633212363909,0.3382003632807042,0.3427525679877209,0.3466810966810967,0.3468256900100269,0.3469988107905113,0.3521940832002433,0.3534848627746864,0.3533897295365185,0.3565084226646248,0.353870774154831,0.3612920738327904,0.3628659476117103,0.0,2.117338779528169,56.92905578809263,178.44769130292485,272.1442169283084,fqhc7_80Compliance_implementation,65 -100000,95720,44394,420.5495194316757,6194,63.518595904722105,4805,49.59256163811116,1873,19.06602590890096,77.26691653433518,79.62467464617525,63.2951211478972,65.03826320361414,77.02958112199465,79.3951037179004,63.20760739053712,64.95727499458715,0.2373354123405278,229.5709282748533,0.0875137573600781,80.98820902698378,150.63554,105.57335141302404,157370.55996656916,110293.47891038869,332.36825,213.8353437356068,346648.48516506475,222816.01086776183,349.42278,168.66397832437212,362194.285415796,173831.30100586166,3438.71762,1551.3250958040585,3549688.173840368,1577950.3270897197,1138.6413,499.9844842254304,1173419.7033012954,506273.1983501259,1839.36622,770.8064300335856,1875291.8303384872,764447.68318864,0.38149,100000,0,684707,7153.207271207689,0,0.0,0,0.0,28223,294.2122858336816,0,0.0,31985,331.2682824905976,1665363,0,59789,0,0,5988,0,0,59,0.6163811115754283,0,0.0,0,0.0,0,0.0,0.06194,0.1623633647015649,0.302389409105586,0.01873,0.3255131964809384,0.6744868035190615,24.37981999894235,4.331626399938257,0.3234131113423517,0.2349635796045785,0.2195629552549427,0.2220603537981269,11.076476980385772,5.668490493444493,20.044262844956524,12434.95669887585,54.492165284329744,13.453898421899842,17.64413184824273,11.759258911745686,11.634876102441488,0.5473465140478668,0.7714791851195748,0.6833976833976834,0.5620853080568721,0.0974695407685098,0.7255700325732899,0.9348958333333334,0.8316831683168316,0.7276595744680852,0.1219512195121951,0.4861615879228403,0.687248322147651,0.6313043478260869,0.5146341463414634,0.0916473317865429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0043192164576341,0.006768275358201,0.0089393646956044,0.0109330187336004,0.012900532516062,0.0151078036597176,0.0170578087197966,0.0192797194933706,0.021464762782128,0.0237926828018164,0.0258618919529373,0.0280534331520006,0.0299219248913334,0.0319518813127405,0.0342254059809181,0.0362135741358242,0.0382939431037702,0.0402594567624037,0.0424702780990486,0.0576822671929494,0.0714921233055948,0.0854732246859685,0.0985090017572103,0.1100700599307841,0.12569451058831,0.1373075698057118,0.1494301842581744,0.1609350271611275,0.1718781867559763,0.1849276674643727,0.197297560869895,0.2087925251557259,0.2194929639161145,0.2290078018248336,0.2394091075570748,0.2499021723332178,0.2586688596985332,0.2674307653861008,0.275876298113294,0.2826708326100792,0.2898789878987898,0.2969808193227563,0.3033504412893323,0.309134884173169,0.3139407244785949,0.3196696659064137,0.3251942427716214,0.3298963723849915,0.3342639392415782,0.3344816405933371,0.3331584325205048,0.3337243650445917,0.3322324584274871,0.330528165867318,0.3288693675707221,0.3274599215113046,0.3282733386075949,0.3291986206186628,0.3309022489024281,0.3318171566047665,0.3329168402054699,0.3338316104175,0.3351893845842969,0.3358560824044297,0.3362929205625835,0.3352738743905936,0.3377470856563608,0.3403876934020985,0.3429977015202226,0.3459516783474732,0.3478377941730842,0.3511193080641058,0.3535500690078209,0.3577374195989406,0.3584928087483656,0.3630095004596996,0.3690934901642669,0.3729939125622579,0.3787996882307092,0.0,2.3261885750596765,53.69101383153835,182.4146408262736,271.3134935693295,fqhc7_80Compliance_implementation,66 -100000,95699,43895,414.6960783289272,6275,64.35803926895788,4906,50.64838713048204,1995,20.418186187943448,77.288290147924,79.65922921137793,63.294707477804174,65.04470481661338,77.04479446581884,79.41629859178688,63.20549146819811,64.9581978944052,0.2434956821051628,242.9306195910499,0.0892160096060621,86.50692220817291,150.37682,105.34205100011896,157135.20517455775,110076.4386253973,333.66189,214.19659603876565,348035.64300567406,223202.0583865344,345.95731,166.25848871167483,357670.4145288875,170763.0241824152,3513.026,1590.5342032962346,3626026.332563559,1617306.324964575,1169.64522,515.3982190892146,1203677.049916927,520114.8688927348,1949.5088,808.6969950746484,1997143.5020219649,812459.810101258,0.37939,100000,0,683531,7142.50932611626,0,0.0,0,0.0,28419,296.31448604478624,0,0.0,31737,327.8090680153398,1666440,0,59873,0,0,5936,0,0,58,0.606066939048475,0,0.0,1,0.0104494299835943,0,0.0,0.06275,0.1653970847940114,0.3179282868525896,0.01995,0.3329798515376458,0.6670201484623541,24.703857305473782,4.413643041285184,0.3194048104362005,0.2319608642478597,0.2282918874847126,0.220342437831227,11.13140496088477,5.676468219013411,21.154687979502054,12370.10210701109,55.76402145813191,13.584828583722604,17.82167427414256,12.607139966933556,11.750378633333185,0.5605381165919282,0.7644991212653779,0.7102744097000638,0.575,0.1137835337650323,0.735686274509804,0.916030534351145,0.8880778588807786,0.7091633466135459,0.1590909090909091,0.4990360782153676,0.6845637583892618,0.6470588235294118,0.5362485615650172,0.1022067363530778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901396611268,0.0050486106183027,0.0073162316840524,0.0093155082386883,0.0116955495891302,0.0137971061715321,0.0160681878428253,0.0181697545041596,0.0201678438908708,0.0222995445939722,0.0245147272839076,0.0265651142977386,0.0287679542673836,0.0310604422199565,0.0331404523934771,0.0352614119033101,0.037335763022478,0.039268591353438,0.0412501950179416,0.0431778389194597,0.0583302001086184,0.0721779006218983,0.0851340714698011,0.0980404537896487,0.1100824457135618,0.1253202888423014,0.1383546951821686,0.1493990794408455,0.1605197027214885,0.1709263117201091,0.1835396626838631,0.1957466171197036,0.2075387447042551,0.2178525679626,0.2281258260639704,0.238497298376807,0.2480574220453249,0.2574746335963923,0.2656877353018119,0.27391094679312,0.2810289239904437,0.2883370849746764,0.2953555964173439,0.3020130197698719,0.3067895448070999,0.3120506929519009,0.3169087462495449,0.3209311224489796,0.3255741452769407,0.3301481001098508,0.329650017539599,0.3295161357082741,0.3287539574853008,0.3276451996404442,0.3277888832532744,0.3271995576308675,0.3246044215905664,0.3258258752303237,0.3268390479617539,0.3277464410421702,0.3286275541853864,0.3294061738906599,0.3300775096099313,0.3303070283324761,0.3312369475983581,0.3318688746198039,0.3321378760709305,0.3362180193221512,0.3390634887154609,0.3435673096042951,0.3459919472913616,0.3486684100976677,0.3512644258056379,0.35351532713131,0.353781512605042,0.3515294117647058,0.3516217035465293,0.3485335476094817,0.3485421166306695,0.3497926875235582,0.0,2.314148703682775,56.04719824471562,189.31049631212272,269.3212305735781,fqhc7_80Compliance_implementation,67 -100000,95822,44256,418.3277326709941,6233,63.84755066686147,4867,50.15549665003861,1888,19.337939095406064,77.36488025655099,79.67949629136017,63.35773544642036,65.0710436785692,77.13101070185823,79.44869484946128,63.271284992359135,64.98867422617188,0.2338695546927596,230.8014418988904,0.0864504540612216,82.36945239731597,151.36506,106.0997832143505,157964.60103107843,110725.69578630218,337.1017,217.1678941479527,351116.3928951598,225954.14087261035,354.24659,171.43062265551995,365821.3771367745,175942.74028521904,3463.45742,1566.6087177496,3571466.625618334,1591982.3799843465,1127.74036,496.30908252857074,1161967.2309073072,503004.4901260368,1849.65362,772.2602284183766,1894789.693389827,772680.392283117,0.38082,100000,0,688023,7180.209137776294,0,0.0,0,0.0,28692,298.7205443426353,0,0.0,32439,334.6517501200142,1664795,0,59763,0,0,6055,0,0,52,0.5426728726179791,0,0.0,1,0.0104360167811149,0,0.0,0.06233,0.1636731264114279,0.3029038986042034,0.01888,0.3322173185207731,0.6677826814792269,24.51621335697109,4.387082905096454,0.3207314567495377,0.2336141360180809,0.2260119169919868,0.2196424902403945,11.060093168776998,5.660943848502406,20.067032819679586,12357.404585878048,55.159363316818016,13.758022504042506,17.61343863393071,12.300472208194956,11.487429970649842,0.5566057119375385,0.7845206684256816,0.7014734144778988,0.5718181818181818,0.0869971936389148,0.7329762815608263,0.9149425287356322,0.8692493946731235,0.68,0.1483253588516746,0.4918539325842697,0.7037037037037037,0.6411149825783972,0.54,0.0720930232558139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0043391865039133,0.0064230051140514,0.0086945922886279,0.0109923633072675,0.013379220461858,0.0155456788109849,0.0175898891316332,0.0196270853778213,0.0217718409335175,0.0242077645226089,0.0264054514480408,0.028222573948077,0.0302905546578289,0.0324492593776091,0.0345518174028843,0.0365639222176251,0.0384192966823466,0.0404855356883267,0.0427196587421318,0.0573872229465449,0.0715263768540101,0.0847702654570596,0.0976193726569145,0.1100954146218168,0.1260520174447459,0.1388827087902192,0.1507893477914208,0.1615174532730221,0.1717223650385604,0.1850995158687466,0.1969924649463249,0.2091739730343426,0.2193670277826314,0.2285934065934066,0.2395280431705591,0.2485547201336675,0.2582507046365647,0.2665632466341309,0.2741229323609094,0.2814603563140089,0.2886054084336084,0.2953629865910567,0.3016322869955157,0.3073823222392154,0.3126861813437061,0.317992050198745,0.3220302375809935,0.3263308943299635,0.3305555555555555,0.3299686832166234,0.3290678175770404,0.3277506233008888,0.3268738891056487,0.3258386866523911,0.3240373270406521,0.3214874461070251,0.322832056299122,0.3233531909066009,0.324736644429739,0.3255232328550744,0.3272150014882429,0.3285188689162199,0.3293027638190954,0.3296534141472448,0.3315153571148978,0.3327928542982306,0.3354826534142736,0.3380440132180271,0.3403389830508475,0.3428165007112375,0.3462280325760823,0.3486104028556859,0.3478327815844176,0.3501952938934933,0.3514224240975376,0.3566227730441518,0.3655626414318041,0.3746891406465875,0.3807126258714175,0.0,2.393499720870849,57.085842342372885,181.0261252773824,267.3373784286614,fqhc7_80Compliance_implementation,68 -100000,95635,43951,416.57343022951846,6313,64.85073456370576,4929,50.922779317195584,1889,19.3234694411042,77.2563444549925,79.6675660206393,63.27473565930678,65.05628682518129,77.02875807968552,79.4421270521377,63.19035721562133,64.97488704479458,0.2275863753069842,225.43896850159229,0.0843784436854448,81.39978038670392,149.09048,104.46976261413744,155895.31029434828,109238.00137411768,329.2978,211.89141443599263,343695.73900768545,220930.65764206892,344.49847,166.95931147940945,356289.85204161657,171471.5287627197,3506.68327,1592.9482092482156,3623737.857478956,1622655.554188545,1163.89378,517.2988361250812,1200147.1636953,524040.1486119947,1854.98478,771.7226632688004,1900046.4056046424,774889.4536261146,0.38024,100000,0,677684,7086.150467924923,0,0.0,0,0.0,28000,292.12108537669263,0,0.0,31628,326.8886913786793,1674335,0,60087,0,0,6019,0,0,71,0.7319496000418256,0,0.0,1,0.0104564228577403,0,0.0,0.06313,0.166026719966337,0.2992238238555362,0.01889,0.3321725965177896,0.6678274034822105,24.66545468091624,4.388680428560656,0.3191316697098803,0.2335159261513491,0.2254006897950903,0.2219517143436802,11.125042791417588,5.793318283734604,20.04098746010827,12463.211281134823,55.98618229805366,13.71561466559685,18.094711659623197,12.413158883551594,11.76269708928202,0.5579224994927977,0.7715030408340573,0.6999364272091545,0.5895589558955896,0.0968921389396709,0.7326807228915663,0.9019607843137256,0.835214446952596,0.7481481481481481,0.1594202898550724,0.4934740349902805,0.6998654104979811,0.6469026548672566,0.5386444708680143,0.0822998872604284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598521294373,0.0046319288892492,0.0068094865992145,0.009072160759095,0.0112625902940278,0.0135387060297668,0.0158111637016484,0.0177980301606113,0.0200274123928564,0.0221996844714897,0.0240621408635692,0.0262568339704854,0.0284240652281337,0.0301777466182777,0.0321570977005557,0.0342297782514667,0.0362718470756536,0.0382377994307439,0.0401348581180216,0.0419517690253671,0.0565605894340805,0.0707453774029647,0.0846149808409007,0.0977432529156667,0.1100348211459322,0.1260885667425004,0.1386091330694372,0.1505803428814822,0.1622508416608774,0.1731889734207504,0.1860048942982503,0.1982839871299034,0.2100705790092798,0.2210156044534058,0.2307200282320765,0.2418328948682939,0.2517197794208118,0.2607642019837691,0.2691984177502955,0.2773692482419209,0.2846921854888273,0.2915953380390685,0.2975752686896486,0.304141656662665,0.3093313203136414,0.3148591897233201,0.3196774759862563,0.3247657295850067,0.3293111725247493,0.3333906033172537,0.3322855254104664,0.3311534216335541,0.3310199581613614,0.3310223795088981,0.3306375803876513,0.3292917480881968,0.3279996186420479,0.3279350225707602,0.3292366399092424,0.3298493256469658,0.3312847582241493,0.3317299091613827,0.3338455708992927,0.3345423607379545,0.336366919465511,0.3366204899428661,0.3375432179901134,0.3398865784499055,0.3430442242375433,0.3437487639916149,0.3464506172839506,0.3474414662570187,0.3481957302097109,0.3513595394985988,0.3542762247439801,0.3570176463713918,0.3584031100478468,0.362879238548483,0.3667829353367319,0.3708124759337697,0.0,2.319718187431986,58.37608106695974,183.36548342881773,270.45757845580886,fqhc7_80Compliance_implementation,69 -100000,95689,43993,415.3455465100482,6385,65.58747609443093,4984,51.458370345598766,1996,20.36806738496588,77.32722884548278,79.70421447563082,63.32110870231941,65.07587903957432,77.08084813379361,79.46192807624195,63.2298071257058,64.98939236463579,0.24638071168917,242.286399388874,0.0913015766136169,86.48667493852713,151.05068,105.77666046771353,157855.8454994827,110542.13176824244,337.21212,216.8281234443789,351802.1089153404,225994.54842706997,348.23582,168.2349523590154,360278.4541587852,172878.2375853974,3589.63217,1631.6194481556397,3709040.558475896,1662815.0551846484,1169.70106,516.3085779908,1207569.1458788367,524739.8948581347,1962.36552,821.4231424254185,2005764.6333434356,820915.1226793055,0.37958,100000,0,686594,7175.265704521941,0,0.0,0,0.0,28700,299.29249966035803,0,0.0,31968,330.46640679701954,1663590,0,59740,0,0,5909,0,0,58,0.6061302762072966,0,0.0,0,0.0,0,0.0,0.06385,0.1682122345750566,0.3126076742364918,0.01996,0.3299492385786802,0.6700507614213198,24.782397951980847,4.428109746051489,0.3200240770465489,0.2275280898876404,0.2203049759229534,0.2321428571428571,11.300525878259688,5.783280528070245,21.332038200052203,12444.422637890655,56.51774096453879,13.415954350762252,18.23018522580258,12.185239593274703,12.686361794699252,0.5545746388443018,0.7768959435626103,0.7084639498432602,0.5673952641165756,0.1123595505617977,0.7484802431610942,0.9448621553884712,0.8862559241706162,0.7471698113207547,0.1565217391304348,0.4850054525627045,0.6857142857142857,0.6445012787723785,0.5102040816326531,0.1014023732470334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024297892157855,0.0044896676835139,0.0071218423455412,0.0094863747625867,0.0116024852299651,0.0137659983912516,0.016081006668978,0.0184857986171397,0.0205959953367557,0.0227954654842244,0.0247874555169266,0.026878793792303,0.0288729569322869,0.0308404088698376,0.03307738353252,0.0353578704613379,0.0371199171199171,0.0391507475083056,0.0412432258131624,0.0434365651027279,0.0583288939028339,0.0724378296910324,0.0856909085187399,0.0984944924303794,0.1106306230289734,0.1256862973267463,0.1385286438987116,0.1504083653672094,0.1615987862729176,0.172815138219929,0.1859515705114395,0.1978523954882985,0.2093870669494751,0.2202679792179382,0.2300063838686243,0.2399809424617464,0.250429735461547,0.2588596629390455,0.2675851737521846,0.2754599399729649,0.2836518980747189,0.2899624337324017,0.2967159160865653,0.3021656020421615,0.3080681031025556,0.3136137728612478,0.3180861723446894,0.3227158103874271,0.3276731434793317,0.3318539066111882,0.3312688067576138,0.3309221675691315,0.3305815446707026,0.329982353111349,0.3289019234204728,0.3276527084133692,0.3258706862356207,0.3265925840815455,0.3273149650684112,0.3285724474876074,0.3296530558778397,0.3305555007010407,0.3323489989109491,0.3334450776623086,0.3348173461038649,0.3360133653544951,0.3356178074759416,0.3380051022015055,0.3422114608555286,0.3461461939437348,0.3484834600934665,0.3503286836620169,0.3543277151184894,0.3560780697710158,0.3586161011310712,0.3628878281622911,0.3665843113032736,0.3660277324632953,0.3722991689750692,0.3754345307068366,0.0,2.504288045680431,57.474473231398505,187.29992835295525,275.65309500168627,fqhc7_80Compliance_implementation,70 -100000,95771,44047,416.1802633365006,6332,64.90482505142475,4985,51.3829864990446,1895,19.41088638523144,77.38146625236273,79.70529838437534,63.35451413110488,65.0681528437277,77.15099510722555,79.47607263939133,63.27027736963744,64.98685542043023,0.230471145137173,229.2257449840065,0.0842367614674373,81.29742329747103,150.15616,105.17124949106515,156786.66819809756,109815.340229365,333.50857,213.77443754067616,347591.3794363638,222570.99997797905,348.60081,168.17563565947705,359547.76498104853,172212.31477430597,3510.65252,1583.996047996205,3626195.5080347913,1614544.4917995522,1189.69919,516.8700059431098,1229837.2054170887,527355.0847692122,1854.18236,763.3200089451758,1902213.0916456964,769166.8654084903,0.38074,100000,0,682528,7126.666736277161,0,0.0,0,0.0,28322,295.0371197961805,0,0.0,31987,329.4943145628635,1672912,0,60080,0,0,5968,0,0,76,0.7935596370508818,0,0.0,0,0.0,0,0.0,0.06332,0.1663077165519777,0.299273531269741,0.01895,0.3327313769751693,0.6672686230248307,24.564275763747883,4.33202798135871,0.3283851554663992,0.2385155466399197,0.2214643931795386,0.2116349047141424,11.32904794468768,5.9576101241735,19.81885991357691,12446.02274852041,56.17501548237842,14.089610808362348,18.461284893486987,12.226409766597426,11.397710013931649,0.5654964894684053,0.7804878048780488,0.7049480757483201,0.5661231884057971,0.1061611374407583,0.7378787878787879,0.9135514018691588,0.8781609195402299,0.7368421052631579,0.0904761904761904,0.5034106412005457,0.7056504599211564,0.6422628951747088,0.5169194865810969,0.1100591715976331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047630629535043,0.0071311916089307,0.0095052400682427,0.0116627858501021,0.0137426960115642,0.0159307729941291,0.0180512046041286,0.0204331834899877,0.0225282370273367,0.0248739909027578,0.027055311028348,0.0290321254598894,0.0312020670983415,0.0330429403577504,0.0348242778506439,0.0367783262446576,0.0388686717883321,0.0408684811967587,0.042919169937839,0.0578990211016259,0.0717798472323951,0.0842579968536969,0.0970346154250454,0.1094736620178573,0.1248149244891915,0.1374797153251381,0.1486354153361434,0.1594715256119964,0.1700633596706583,0.1835278160523596,0.1963773992971073,0.2079722515195337,0.2182273607297944,0.2285085547670132,0.2384249770106028,0.2484429065743944,0.2577458767409941,0.2666999682121611,0.2749223593587055,0.2825681699762635,0.2895007961037745,0.2962419190603613,0.3024540465406092,0.3084676195217914,0.3145077847851793,0.3196198574465425,0.324370709382151,0.3296737441740031,0.3331795290953674,0.3328715161949854,0.3321791701016763,0.3322311491325576,0.3327071471922777,0.3323376874266268,0.3319910583047525,0.3300297167425392,0.3312959837448998,0.3316961697192946,0.3323542501112594,0.3333956165100245,0.3341934213117983,0.3348870263152394,0.3355826164674338,0.3372450203983681,0.3376880237339301,0.3398226567384755,0.3421918580964618,0.345063025210084,0.3474653646143464,0.3520825754819934,0.3553522318595303,0.3585931155119635,0.3587128937230908,0.3616260468617672,0.3696862048549437,0.3657203582814635,0.3668412570507655,0.3656798245614035,0.3676132003069838,0.0,2.5820896638371917,57.7093960616928,182.4451298972793,276.1749137933116,fqhc7_80Compliance_implementation,71 -100000,95769,44083,416.2829308022429,6224,63.82023410498178,4883,50.5382743894162,1907,19.609685806471823,77.31912755708531,79.6679199373319,63.32066847763053,65.0580392727541,77.08090246799648,79.42974829044616,63.23250853339423,64.9721654952655,0.2382250890888286,238.1716468857462,0.0881599442363025,85.87377748860092,149.14306,104.58097552376044,155731.8547755537,109201.07838584745,332.50164,214.1881555655232,346714.8868631812,223176.247960381,350.03737,168.61147170133077,362977.497937746,174109.99198312862,3483.70365,1572.61893950662,3607517.2968288274,1612138.7592835256,1168.20732,508.84346415997817,1206791.1954807923,518541.4673502448,1871.58072,781.3504118527228,1925954.974991908,790483.3657203591,0.38021,100000,0,677923,7078.720671616075,0,0.0,0,0.0,28196,293.936451252493,0,0.0,32063,332.2369451492654,1674657,0,60073,0,0,5959,0,0,66,0.6891582871284027,0,0.0,0,0.0,0,0.0,0.06224,0.1636990084427027,0.3063946015424164,0.01907,0.3298035604665439,0.6701964395334561,24.80590468005427,4.387507802842245,0.3237763669875076,0.2320294900675814,0.2199467540446447,0.2242473889002662,11.071638818788296,5.586446653947249,20.297136436914958,12419.036950729487,55.27228824052111,13.507531737572334,17.823644841065704,11.99573782366948,11.94537383821357,0.5633831660864222,0.7828773168578994,0.6963946869070209,0.5865921787709497,0.1214611872146118,0.740598618572525,0.9058823529411764,0.8656716417910447,0.7557251908396947,0.1588785046728972,0.4988826815642458,0.7090395480225988,0.638676844783715,0.5320197044334976,0.1123723041997729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886307709445,0.0047933197539496,0.0071425672659388,0.0094558085681204,0.0115426467746692,0.0137586182314421,0.0160999235279123,0.01860474615039,0.0208686938917404,0.0230032145123973,0.0249864148544595,0.0269018697826287,0.0291664524091119,0.0314093517249904,0.0333673816819884,0.0353551534192494,0.0373920785109422,0.039571404862667,0.0415220598931814,0.0433161485184606,0.0576084006596939,0.0710370509843302,0.0845194516409863,0.0966958314053758,0.1088093280199042,0.1249510959787677,0.1382283690049424,0.1502064181137214,0.1620415354225615,0.1720264128290884,0.1852617524818571,0.1976301266096742,0.2086550801557435,0.2196308688141004,0.2300727228719483,0.2407591965096449,0.2505747639561617,0.2593259235926742,0.2678597773414891,0.2756744995648389,0.2825319269645359,0.2893181153058238,0.2956543373693813,0.3012386576407893,0.3064471011760699,0.31244831204098,0.3178338282649826,0.3218285364828192,0.3265329943971778,0.330616073669886,0.3295221658936468,0.3290262146487953,0.3285103259411922,0.3280994249460434,0.3283444417995715,0.3266770957946075,0.3253342638265476,0.3258524875867284,0.3267231947483588,0.3283648856600937,0.3302536946275327,0.3317966879686603,0.3332492855942175,0.3325177336805244,0.3334941968486837,0.3357480973925779,0.3367256510677224,0.3415125838661921,0.3456229311923375,0.3459082073862509,0.3484144341170038,0.352787827197276,0.3549993695624763,0.3578947368421052,0.3594014680971202,0.3615547205260686,0.3670156273706569,0.3686756702277766,0.3654320987654321,0.3665521191294387,0.0,1.7010627540649537,57.83294814473743,178.786945714464,272.08904016695914,fqhc7_80Compliance_implementation,72 -100000,95689,44813,423.078932792693,6257,64.29161136598773,4900,50.695482239337856,2044,21.08915340321249,77.34181859432726,79.72527854020221,63.3271521787835,65.08610110731608,77.10064624555584,79.48115563644868,63.23848466707627,64.99792742476876,0.2411723487714283,244.12290375353507,0.0886675117072286,88.17368254732116,149.8904,105.1195573600854,156643.292332452,109855.424719754,338.30943,217.98451577399143,353069.2765103617,227323.46014065517,357.46791,172.29558369020694,369998.6518826615,177337.09261839278,3529.42771,1594.257174922789,3656763.441983927,1634409.2162346668,1187.58316,515.7110377011273,1227640.533394643,525499.0936274044,2009.3353,825.9463347615637,2074918.8307955984,843000.4742290233,0.38521,100000,0,681320,7120.149651475092,0,0.0,0,0.0,28597,298.33105163602926,0,0.0,32716,338.3147488217037,1667743,0,59833,0,0,5945,0,0,61,0.6374818422180188,0,0.0,0,0.0,0,0.0,0.06257,0.1624308818566496,0.3266741249800223,0.02044,0.3307458143074581,0.6692541856925418,24.75729401529047,4.36758808225713,0.320204081632653,0.2289795918367347,0.2144897959183673,0.2363265306122449,11.21589425553123,5.806859384073009,21.412427045195567,12552.84907171807,55.56364234026966,13.447313072771763,17.771086031414224,11.715397558640973,12.6298456774427,0.556734693877551,0.7985739750445633,0.7004461440407903,0.570884871550904,0.114853195164076,0.7027463651050081,0.8967254408060453,0.8426395939086294,0.6728110599078341,0.1565217391304348,0.5073730202075368,0.7448275862068966,0.6527659574468085,0.5443645083932853,0.1045258620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189638585938,0.004733571870217,0.0070310359871351,0.0092827689870203,0.0117033391629723,0.0139488474382992,0.0161453077699293,0.0181701254555291,0.0203906417686198,0.0227047057498797,0.0250082027725371,0.0271647033450071,0.0292995072168554,0.0315105052191206,0.0339467627235852,0.0364497677930513,0.0384440023211473,0.0404385427589572,0.0424113180068657,0.0443357970123114,0.0596149627602344,0.0733954559731965,0.0869656482540748,0.0999936866029715,0.1121460821131693,0.1275504267899262,0.1396390182825249,0.1517548248368657,0.1628950573754727,0.1736271986271986,0.1870638407857327,0.1995565170362358,0.2109476111237996,0.2216743921637222,0.2320029921675613,0.2425266095894204,0.2528236607142857,0.2619810822058013,0.2705051972220961,0.2782988079288193,0.285248404107688,0.2921319411152555,0.2985051680503323,0.304276473406804,0.3101182813980035,0.3147317578057616,0.3195360302306085,0.3252907790588175,0.3307336537589553,0.3359198701452947,0.3351650571740272,0.3345398992540395,0.3337797640026504,0.3327068484436669,0.3330806504355064,0.3316670755642787,0.3291207398961104,0.3287075053374938,0.3295439004376367,0.3301556698086261,0.3315872184389732,0.3327803452225777,0.3335427793486229,0.3342205323193916,0.3356172616901069,0.3363097569254066,0.3368727521835931,0.3395709290237217,0.3452846818261942,0.3487696105757745,0.3512377820407417,0.3551645313912073,0.3580262414464185,0.3613963039014374,0.3620205799812909,0.3627497621313035,0.3618653167663752,0.3557400283458189,0.3521872387851769,0.3661265432098765,0.0,2.0251574544059228,54.48392199091511,192.3710971422419,270.5021577459109,fqhc7_80Compliance_implementation,73 -100000,95681,44046,417.5437129628662,6187,63.53403497037029,4820,49.81135230610048,1893,19.43959615806691,77.38307130315455,79.75871084517823,63.34642469116329,65.09707977894833,77.14498986672129,79.52138636814533,63.25935773340577,65.01242952187775,0.2380814364332621,237.3244770328995,0.0870669577575213,84.65025707057805,150.26726,105.31667780097548,157050.2607623248,110070.62823442007,331.40796,212.97087738938683,345731.35732277046,221949.33908256883,346.35203,167.05535174664956,358356.8315548541,171875.4189765604,3425.5123,1557.5433747711295,3539388.0289712693,1587257.6632863248,1132.68479,499.04086601498886,1166613.0788766842,504487.9180874304,1851.02318,773.3651867221066,1901297.624397738,779926.278027172,0.38065,100000,0,683033,7138.64821646931,0,0.0,0,0.0,28203,294.15453433806084,0,0.0,31781,328.5814320502503,1671103,0,60065,0,0,5909,0,0,58,0.5852781638987887,0,0.0,0,0.0,0,0.0,0.06187,0.1625377643504531,0.3059641183125909,0.01893,0.3252621838371375,0.6747378161628624,24.68046404681081,4.383881517267105,0.325103734439834,0.2331950207468879,0.229460580912863,0.2122406639004149,11.526174082076473,6.080778013090258,20.078112499284977,12371.492100981028,54.47046695733221,13.401666735571562,17.565300371947142,12.2203694710377,11.283130378775803,0.5719917012448132,0.7891459074733096,0.7121888959795788,0.5849909584086799,0.104594330400782,0.7369230769230769,0.9311224489795918,0.8894348894348895,0.7463235294117647,0.1222707423580786,0.5110795454545455,0.7131147540983607,0.65,0.5323741007194245,0.0994962216624685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021359950598787,0.0041436184223856,0.006216975487064,0.0084487590885088,0.0106349448426617,0.0126937915449372,0.0148728822198209,0.0165766722126386,0.0189608823198716,0.0211496135537697,0.0233449870305627,0.0253737780333525,0.0277066428064545,0.029932533347067,0.032114303399185,0.0342810487913269,0.0360494747964447,0.03802723347725,0.0399841935047783,0.0418420942932177,0.056012284678624,0.0707466186508102,0.0839033192060761,0.0963105489491005,0.1086053475033738,0.1244000422877682,0.1370512100236386,0.1489997553894094,0.1601327414742413,0.1699186730528143,0.1835298674470649,0.1962134809592803,0.2074624756811981,0.2177229854530749,0.2279206352697917,0.2391403090899019,0.2490341023293208,0.2579079535601274,0.2669217320224336,0.2751257288838483,0.2827752192728703,0.2902519808527322,0.2977909387029908,0.3038585209003215,0.3087099794501392,0.3136657455837363,0.3188079138492362,0.3234826010007767,0.3285118075537237,0.3327433394534191,0.3315292755496318,0.3299176100023382,0.3299356600825015,0.3296636615811373,0.3289426789426789,0.3280009806625601,0.3256646135820257,0.3262553331145389,0.3272867156778936,0.3278913994820041,0.329203572896812,0.3298723303648829,0.3309875331509595,0.3305553079597112,0.3319854524572905,0.3330220977279801,0.3350899560844312,0.3384370215292316,0.3425524475524475,0.3468679780817598,0.3496484463597187,0.3508476360956091,0.3517073475248143,0.3533092115181667,0.35681143281366,0.3606691623771642,0.3628025860772816,0.3641357661369433,0.3682097939523682,0.3663952627683197,0.0,2.096371192325962,57.307348226285306,174.26206245194112,267.45518559097275,fqhc7_80Compliance_implementation,74 -100000,95688,44230,417.9938968313686,6455,66.06889056098989,5082,52.47261934620851,2075,21.24613326644929,77.3960056150407,79.78116942683359,63.35197710932333,65.11364016226051,77.13566992205561,79.52311645015524,63.25442020400521,65.01978634078026,0.2603356929850946,258.0529766783428,0.0975569053181217,93.853821480252,149.66974,104.91987478175108,156414.3257252738,109647.8918795994,338.76857,217.55554533198816,353433.2309171474,226757.9689532524,352.99103,170.59869748207646,365059.91346877353,175300.5724612796,3651.05135,1668.5528418946474,3773637.655714405,1701801.575845086,1221.18809,542.2143938247035,1260641.0835214446,551070.7129678777,2041.57396,861.5744952144285,2092871.6244461169,866088.8194257555,0.38166,100000,0,680317,7109.7420784215365,0,0.0,0,0.0,28710,299.38968313686144,0,0.0,32346,334.2007357244377,1674455,0,59935,0,0,6044,0,0,72,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.06455,0.1691295917832626,0.3214562354763749,0.02075,0.3391510131637332,0.6608489868362668,24.510612411924875,4.409507137870879,0.3152302243211334,0.2304210940574577,0.2237308146399055,0.2306178669815033,11.302211399833483,5.846542809242149,22.17037536438976,12461.61474883849,57.55040740159714,13.938757622821896,18.083139889531168,12.549982123195074,12.97852776604898,0.5615899252262888,0.7967549103330487,0.6985018726591761,0.5892700087950747,0.1126279863481228,0.7193500738552437,0.9316037735849056,0.8415841584158416,0.753731343283582,0.1434108527131783,0.5042918454935622,0.7202141900937081,0.6502504173622704,0.5385500575373993,0.1039387308533916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0045020380848086,0.006932461785185,0.0094894589789179,0.0117592008626126,0.0140716002117867,0.0161913598499138,0.0184483761957753,0.0205176961295467,0.0228459129153104,0.0248310932037441,0.0270236970717483,0.0290130821128846,0.0311495673671199,0.0334513036928505,0.0354879725441144,0.0376013838966635,0.039538287470027,0.0413737155219037,0.0433898941048945,0.0578883596557198,0.0719585578985924,0.0857343640196767,0.0987067605929975,0.1115046486623237,0.1268031642624476,0.1391302502731892,0.1511257784638313,0.1619340640557229,0.1729966857228663,0.1864289945608271,0.1998766727609074,0.2111927482990239,0.2215699778091146,0.2304131249931274,0.241591940662017,0.2514889915010372,0.2608251129137361,0.2693174993484345,0.2771920596441476,0.2844142645971914,0.2912594149588369,0.2976153900692458,0.3036124676817006,0.3093169962392333,0.3151446565636686,0.3198202134964729,0.3236548223350254,0.3273577351277348,0.3316311085957962,0.3313952707692721,0.3308036449470275,0.3301455593840096,0.3292339670029879,0.3282377037015049,0.3260906155800039,0.3243884687193443,0.3251812485647738,0.3262090510251114,0.326376997716895,0.3264740577077911,0.3274355484545436,0.329676300336447,0.3302742075601987,0.3312934965202784,0.3317293937108227,0.3327372335291947,0.3368854520306802,0.3409609377741902,0.343756215936667,0.3462084115143471,0.3474810948982852,0.3521607278241092,0.3555792845702082,0.3525125390366234,0.3532654284002396,0.3570222563315426,0.3555691554467564,0.3627260083449235,0.3638132295719844,0.0,2.539337502956341,59.175876866774125,188.65877093173944,280.74298669561006,fqhc7_80Compliance_implementation,75 -100000,95825,44116,417.08322462822855,6270,64.15862248891207,4902,50.59222541090529,1994,20.38090268719019,77.38566316619061,79.70606292595939,63.36611244363343,65.08400540335295,77.14171173774875,79.46548441352994,63.274948374817335,64.99689844163935,0.2439514284418606,240.57851242945105,0.0911640688160915,87.10696171360155,153.06038,107.20766891834782,159728.83902948085,111878.39723864304,339.4929,218.4637306560197,353736.5927471954,227435.39450622743,352.08302,170.5090287805652,364454.42212366295,175560.2134214726,3540.36938,1621.3990383325877,3653976.2274980433,1651534.5861771,1174.62472,525.225895493331,1211896.1753195932,534203.6895312606,1965.6713,826.1533052572221,2010817.0936603183,828083.2008944785,0.37965,100000,0,695729,7260.40177406731,0,0.0,0,0.0,28875,300.7357161492304,0,0.0,32224,333.28463344638664,1658682,0,59522,0,0,6061,0,0,69,0.72006261414036,0,0.0,1,0.0104356900600052,0,0.0,0.0627,0.1651521137890162,0.3180223285486443,0.01994,0.3339917945600972,0.6660082054399028,24.557873501196383,4.485870575170296,0.3082415340677275,0.2407180742554059,0.2139942880456956,0.2370461036311709,11.19395189327983,5.583288227371275,21.246996304632336,12372.27443210779,55.798813335449175,14.155991093930774,17.18734245940395,11.693602539644614,12.761877242469817,0.5616075071399429,0.8135593220338984,0.6902713434811383,0.5824594852240229,0.1196213425129087,0.7249814677538917,0.9324009324009324,0.8604651162790697,0.7509293680297398,0.1628787878787878,0.4995778215592457,0.7456724367509987,0.6316725978647687,0.5243589743589744,0.1069042316258351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168201108038,0.0042780531816753,0.0062721377028549,0.0083108121837725,0.0108527604865942,0.0133591283983301,0.0154420083784362,0.0175221961424635,0.0200623435024784,0.0221248899895618,0.0240010658030928,0.0260907943220191,0.0284175582482862,0.0304892484739935,0.0326885002474839,0.0348197039653765,0.0369393139841688,0.0387441826718767,0.0405586418150667,0.0426010135170289,0.0577773605374056,0.0722984768814225,0.0855702411772721,0.0981665353296559,0.1103339302644053,0.1253538383539651,0.1374842407483923,0.1496125761295877,0.1613298916289786,0.1716112586753491,0.1850971620299175,0.1970230508328112,0.2090059381004592,0.220093656875266,0.2296066866563423,0.2398133507303426,0.2493983957219251,0.2579811731931433,0.2664846369980966,0.2746272752218055,0.2819236189728069,0.2883621041819858,0.2952476533443532,0.3009742394357779,0.3067026856775975,0.3127280321364077,0.3182311617982856,0.3226788432267884,0.3267686029392773,0.3316440033172299,0.3308905592383923,0.330598389269124,0.329792622189707,0.3285388325679461,0.3280806760630319,0.3265709211170994,0.3243838307039219,0.324148469463203,0.3249666130192103,0.32492350636105,0.3260331508287707,0.3283655939516288,0.3288997390352723,0.3286859298174715,0.3296666102555424,0.3307623694842331,0.3320828202411294,0.3352385764360375,0.3387034092916446,0.3396166134185303,0.3423435784851811,0.3434574468085106,0.3473080317740512,0.3485931558935361,0.3507180650037793,0.3516221374045801,0.3499384993849938,0.3489551633191317,0.3458356315499172,0.3451428571428571,0.0,2.1459112628457606,59.34204322448147,181.78144616458476,266.53186226020813,fqhc7_80Compliance_implementation,76 -100000,95773,44187,417.6960103578253,6365,65.26891712695645,4986,51.5489751808965,1944,19.995196976183266,77.37657405990127,79.72073075946506,63.3458979718325,65.07889826393965,77.14133285433833,79.48451215207334,63.26021117987148,64.99438393314345,0.2352412055629429,236.21860739172007,0.0856867919610238,84.51433079619619,151.28036,105.92410132737612,157957.21132260657,110599.12640031756,334.97655,215.17380962076675,349255.3955707767,224165.08788569516,353.65133,170.95914002519865,365335.8879851315,175481.9372203085,3548.18017,1604.8358988978396,3674239.033965732,1645124.0734840094,1206.63386,530.3025555401604,1248177.8998256293,541996.2991032555,1908.42252,783.7274396949246,1965316.7594207136,796513.6559680125,0.38131,100000,0,687638,7179.873241936663,0,0.0,0,0.0,28453,296.544955258789,0,0.0,32430,334.6976705334489,1666891,0,59832,0,0,6027,0,0,74,0.7726603531266641,0,0.0,0,0.0,0,0.0,0.06365,0.1669245495790826,0.3054202670856245,0.01944,0.3307922272047832,0.6692077727952167,24.72573834170736,4.410070779516027,0.3219013237063778,0.2352587244283995,0.2186121139189731,0.2242278379462495,11.575709167769352,6.027664960045818,20.424116343114694,12485.939867168883,56.3857656594412,14.052219500084313,18.17291050240741,12.078774859436828,12.081860797512633,0.5637785800240674,0.7817561807331628,0.7090342679127726,0.5834862385321101,0.1073345259391771,0.7626990144048522,0.925925925925926,0.8906976744186047,0.7983193277310925,0.1506849315068493,0.4922279792746113,0.6977058029689609,0.6425531914893617,0.5234741784037559,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.004521079787935,0.0067371496986545,0.0091836320045511,0.0115633390285574,0.013777863769208,0.015825269447645,0.0181320700780005,0.020159682679234,0.022202659405677,0.0243319974991544,0.0264730034900431,0.0286824574389341,0.0309059638932657,0.0328577471036695,0.0349357616099391,0.0369239052776541,0.0389311314197985,0.0408025365143718,0.0429254272235933,0.0576086162452123,0.0720380633692356,0.0853764635590821,0.0982514396200243,0.1107750671795142,0.1266422161859364,0.1391135657723172,0.150723990084368,0.1625431131138613,0.1731336242481424,0.1865974607755511,0.199513171417753,0.2114794752985707,0.2216168909309703,0.2313179011326487,0.2418244883032835,0.2523137036003349,0.2615999099909991,0.2700908812417033,0.2776219533137185,0.2844487619840636,0.2913452097068312,0.2977267085150902,0.303386928777521,0.3094110503946569,0.3139991868816912,0.3185652690120602,0.323209998856838,0.3286744931733554,0.3336189057742748,0.3332750997809522,0.3336309564691823,0.3331270917118992,0.3325973388749386,0.3321074796844415,0.3311110431511667,0.3290698961281245,0.3292199278924942,0.3302551847742596,0.3307196065153081,0.3312608850353002,0.3311029527869888,0.3312127236580517,0.3317140565112755,0.3326616288832913,0.3318763659069622,0.3318553888130968,0.3354216263626112,0.3383440204632257,0.3416967724006511,0.345889005426604,0.3477197831402147,0.3524115350711497,0.3537337291619091,0.3575854299662035,0.358922638822971,0.3598223855458582,0.3573876234630115,0.3635368190528333,0.3688212927756654,0.0,1.960869404647534,58.14018100009824,186.6425109139428,274.3227997883624,fqhc7_80Compliance_implementation,77 -100000,95747,43988,415.6683760326694,6360,65.01509185666391,4975,51.33320104024147,1986,20.41839431000449,77.3313489084019,79.69750183552785,63.31030609897547,65.06308030555658,77.07845923357755,79.44350543791568,63.21782080336962,64.97235607790351,0.2528896748243596,253.99639761216972,0.0924852956058472,90.72422765306952,150.51344,105.4748014723838,157198.88873802836,110159.69240218891,335.87854,215.5052689381997,350160.8823252948,224443.6254996077,353.74411,171.50243129838043,364820.8403396451,175755.4690533975,3554.96192,1623.4799472923946,3673084.712836956,1655949.0404310871,1178.96983,525.7135644742626,1215763.4808401307,533573.6431771822,1943.20822,812.2045087651722,1999691.039928144,823622.3899202648,0.3791,100000,0,684152,7145.404033546743,0,0.0,0,0.0,28624,298.2965523723981,0,0.0,32441,334.1932384304469,1665525,0,59818,0,0,5982,0,0,48,0.5013211902200592,0,0.0,0,0.0,0,0.0,0.0636,0.1677657610129253,0.3122641509433962,0.01986,0.3402788187678009,0.659721181232199,24.82219674793891,4.364417285747239,0.3155778894472362,0.2347738693467336,0.2241206030150754,0.2255276381909547,11.377894098643262,5.961123243454162,21.28163790688902,12369.179368647749,56.49432643085787,13.85580142320458,17.846322609334734,12.492643863630244,12.29955853468832,0.5537688442211055,0.7731164383561644,0.6961783439490445,0.5730941704035875,0.106951871657754,0.7317806160781367,0.9242424242424242,0.8714285714285714,0.7418181818181818,0.1583333333333333,0.4887486278814489,0.6955958549222798,0.6321739130434783,0.5178571428571429,0.0929705215419501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022999219850251,0.0045732480201182,0.006688657701091,0.0088295061979272,0.0110175181590673,0.0134533714902587,0.0157538925880229,0.0179503149984173,0.0199347441418036,0.0221439252719339,0.0242143912044634,0.0261879077413057,0.0284035360344135,0.0303105257191149,0.0324934713720956,0.034630020267196,0.0366661834448195,0.038839887931929,0.0409862478301092,0.0428691947965379,0.0574425887265135,0.0714681846243996,0.0846122376191924,0.0971765077028234,0.1096033402922755,0.1245504928713457,0.13731960950764,0.1496431994887634,0.1607394742466339,0.1714895762920998,0.1848854501174594,0.1978820395655799,0.2100427792351987,0.220616886670607,0.2303847635823196,0.2402952978473407,0.2493942405395446,0.2583070688878883,0.2672726860048118,0.2754337313501249,0.2819073197272611,0.2882856507126043,0.294410526939719,0.3003819636293752,0.3059483534938058,0.3109792211638122,0.3162832057913655,0.3213012023639698,0.3253460645295209,0.3301627562883111,0.3298187897745658,0.3295345060148099,0.3286092640595063,0.3277224718614093,0.3269815828918273,0.3257543301303629,0.3234796629728576,0.3247941745662085,0.3254152710369813,0.3266314625182859,0.3270956261122038,0.3276935544442907,0.3284804558213582,0.3300747170148986,0.3310389641645207,0.3333159377935497,0.3350138141217351,0.3377531416333343,0.3418721992872517,0.3451323894088473,0.3481088011722685,0.3492756710694503,0.3532567533451148,0.3534206917568185,0.356822429906542,0.3578185215461871,0.3531264057579847,0.3523285517783454,0.3523553162853297,0.348575712143928,0.0,2.3476971060979985,58.35291618271391,187.40151200807964,272.00392704053047,fqhc7_80Compliance_implementation,78 -100000,95496,43920,416.1430845271007,6289,64.72522409315573,4965,51.47859596213454,1952,20.11602580212784,77.22623088476638,79.71377828400284,63.24095407219974,65.07635300273245,76.97741013358434,79.46289032524291,63.14968348941779,64.98601635305117,0.2488207511820377,250.8879587599324,0.0912705827819522,90.33664968127653,148.61242,104.14609316700708,155621.61765937842,109058.06857565456,332.72225,213.78827355208537,347873.1255759404,223337.194522696,345.48514,166.49933058535595,358613.009969004,171852.87696012095,3534.51662,1603.0492130793896,3668406.708134372,1646605.8057365506,1159.4756,507.849699226061,1202229.9153891264,520880.7187913658,1916.43026,806.0377486140337,1977211.2968082435,820489.6908318726,0.38124,100000,0,675511,7073.709893608109,0,0.0,0,0.0,28238,295.132780430594,0,0.0,31771,329.5007120717098,1673839,0,60041,0,0,5974,0,0,55,0.5759403535226607,0,0.0,0,0.0,0,0.0,0.06289,0.1649617039135452,0.3103832087772301,0.01952,0.3289533303126415,0.6710466696873584,24.575471333921985,4.337310195796372,0.3341389728096677,0.2253776435045317,0.2201409869083585,0.2203423967774421,10.59955744668361,5.285842126900988,21.039771348301457,12492.57126592025,56.222071474331365,13.335822833771305,18.664424803981664,12.15102445974086,12.070799376837536,0.5568982880161127,0.7917783735478106,0.7010247136829415,0.5535224153705398,0.1014625228519195,0.7137345679012346,0.9177377892030848,0.8457943925233645,0.703125,0.116591928251121,0.5014990460615971,0.7246575342465753,0.6506904955320877,0.5077658303464755,0.0975889781859931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022495820033439,0.0043311998539361,0.006771986110829,0.0091306558210472,0.0113516044958462,0.0135147530958569,0.0158062837375891,0.0177385404532728,0.0199392308715357,0.0219872543595418,0.0237826408277221,0.0259821713157651,0.0280801112083612,0.0300548702504228,0.032360386423516,0.0344456293289987,0.036347416574173,0.0383975718265352,0.0405254768775588,0.0428722082424065,0.0572517086547418,0.0713498882699147,0.084900105152471,0.0980524407722789,0.1101659093310789,0.125613440033918,0.1381609024315043,0.1500858822399795,0.1619152673063742,0.1726691385888548,0.185359113039911,0.1974079496773494,0.2092295616339791,0.2209799408089444,0.2309949584652553,0.2419589587476529,0.2522147651006711,0.2621742267111552,0.2714545661321506,0.2794225649499678,0.2867166117734379,0.2940838463793609,0.3007392991491533,0.3056764359387396,0.311305111197815,0.31653118542989,0.3216211799313613,0.3263320719983636,0.3304726610753527,0.3347417778189862,0.334131169709263,0.3332275249109829,0.3330885260719733,0.3326049204052098,0.3320222877745001,0.3304548248309772,0.329306672600693,0.3297821462143576,0.329944705841948,0.3308209959623149,0.3306002707988566,0.3314023845894419,0.330712964519926,0.3313073317334649,0.3318167593461881,0.3321925860132187,0.3335142081964872,0.336917110697733,0.3392605633802817,0.3409018483110261,0.3441273326015368,0.3442588060019155,0.3459411912540839,0.3510324483775811,0.3532195212469846,0.3573513955389466,0.3572081682413898,0.3589953032468858,0.3589320121112028,0.354174609226077,0.0,1.8971683718887609,57.36252025309369,183.6586648971449,279.96418434889205,fqhc7_80Compliance_implementation,79 -100000,95716,44030,416.294036524719,6357,65.40181369885913,4955,51.26624597768399,1987,20.456350035521755,77.36399481233721,79.74754023490684,63.33329461681414,65.09665638599743,77.12087145749565,79.5050180549674,63.24348049263376,65.00981251617182,0.2431233548415576,242.5221799394421,0.0898141241803855,86.8438698256142,152.05872,106.4676244866809,158864.47406912115,111232.83932329068,335.28975,215.2317694770586,349749.2373270927,224317.77286666652,350.40647,169.04694484977094,362968.500564169,174268.48430901658,3534.40285,1602.7422402623283,3657149.724184044,1639032.9937129912,1153.53756,511.57571506498766,1189382.8095616198,518688.4168425204,1941.0496,805.0516285414473,1998518.9310042209,813881.0261743077,0.38031,100000,0,691176,7221.112457687325,0,0.0,0,0.0,28572,297.95436499644785,0,0.0,32176,333.0895566049564,1663326,0,59754,0,0,6104,0,0,53,0.5432738518116094,0,0.0,0,0.0,0,0.0,0.06357,0.1671531119350004,0.3125688217712757,0.01987,0.3403392883951359,0.6596607116048642,24.75220343015413,4.336919675569285,0.3097880928355196,0.2417759838546922,0.227648839556004,0.220787083753784,11.333886012307223,6.01686953279996,21.1228945082726,12440.148793200598,56.252884593628266,14.4209814882541,17.425095032781854,12.496441301049437,11.910366771542876,0.5588294651866801,0.7821368948247078,0.6872964169381107,0.5797872340425532,0.1124314442413162,0.7397769516728625,0.9390519187358916,0.8591885441527446,0.7018867924528301,0.1513761467889908,0.4914127423822714,0.6900662251655629,0.6227598566308243,0.5422943221320974,0.1027397260273972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025430340118134,0.0047562546269534,0.0073194997157475,0.0097262028172449,0.0120067563442479,0.013896529942743,0.0161675302949936,0.0181073573266881,0.020138484039561,0.0224659273594855,0.0246941433449899,0.0268055213211732,0.0288523848218969,0.0312310022565455,0.0330557189593073,0.0349986558861845,0.0368459761542206,0.0388722280448701,0.0407692307692307,0.0427380704313398,0.0576175954549252,0.0714674481892401,0.0847041544271926,0.0973603954148701,0.1094795872115698,0.124842717420037,0.1374245750220044,0.1494085358069869,0.1611367324280468,0.1714647060084456,0.185012213625456,0.1972915675161164,0.2096839083584329,0.2211214626252023,0.2317515839493136,0.2423085013340418,0.2525763997323221,0.2614371001652744,0.2699428260277702,0.2781809440959663,0.2850882264517472,0.2916126015547373,0.2976638500319534,0.3035089401275107,0.3083678501585142,0.3133297209428339,0.3181255393389112,0.3226560613953724,0.3269984098049102,0.3317218394741348,0.3320788699076625,0.3307972258463229,0.3301652021089631,0.3293323330832708,0.3279517286366601,0.3265097392684863,0.3252594064402182,0.3260422111866178,0.3264969474346547,0.3269220494737404,0.3278697726634858,0.3289722945773147,0.3307738979433856,0.3300284237147781,0.330506642323492,0.3334900854298926,0.3351145910727553,0.3386742067232171,0.3404046080359652,0.3433125817835759,0.3470537458543455,0.3475222363405337,0.3522734439049,0.3539755351681957,0.3550587343690792,0.3553748654788951,0.3546484556883439,0.3531224322103533,0.3592747559274756,0.3573655494933749,0.0,1.9467668036707069,59.5069574030175,183.76448524121105,270.4468893329759,fqhc7_80Compliance_implementation,80 -100000,95673,44207,417.798124862814,6324,64.93995171051394,4879,50.45310589194443,2006,20.61187586884492,77.31725194233033,79.72429923374891,63.30264576078415,65.08436823696863,77.07788661412621,79.48555498066261,63.214517802611255,64.99862430474327,0.2393653282041157,238.74425308629557,0.0881279581728975,85.74393222535548,151.05596,105.77831864621189,157887.76352785007,110562.35159994136,335.52902,215.87253607026727,350163.4316891913,225095.247426408,349.0064,168.58181462032326,361159.0730927221,173383.111292323,3489.46621,1584.126258081096,3610869.7960762177,1619357.0893366928,1159.57317,514.7888465318839,1199503.0154798117,525557.050089245,1953.71458,804.5426764619234,2010156.2405276303,815275.9917898759,0.38132,100000,0,686618,7176.716523993185,0,0.0,0,0.0,28542,297.753807239242,0,0.0,32080,331.6505179099641,1665122,0,59781,0,0,5926,0,0,56,0.5853271037805859,0,0.0,1,0.0104522697103676,0,0.0,0.06324,0.1658449596139725,0.3172043010752688,0.02006,0.3395052359993929,0.660494764000607,24.43855270739405,4.423547449907082,0.3252715720434515,0.2295552367288378,0.2258659561385529,0.2193072350891576,11.347391007866657,5.952405637158196,21.182039618235493,12453.357258717466,55.46073749978832,13.386751768078268,18.011701893537044,12.439832560066346,11.622451278106654,0.5579012092641935,0.76875,0.6887208569628229,0.5771324863883848,0.1233644859813084,0.7314460596786534,0.8997613365155132,0.8664987405541562,0.7116788321167883,0.184331797235023,0.4944008958566629,0.6904422253922967,0.6294117647058823,0.532608695652174,0.107854630715123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021275086873271,0.0044516554276732,0.0065762099515917,0.008739038096109,0.0109884519509589,0.0134155037180401,0.0155877012221247,0.0178367113435763,0.0203085674530907,0.0224778960525372,0.0244485482712629,0.0264801989354487,0.028554958516048,0.0304554920922943,0.0327084947069455,0.0348156271986094,0.0369652427204594,0.0393162748193071,0.0414282444495307,0.0434161697869324,0.0590281768128963,0.073605177180196,0.0869610858588509,0.099507617203939,0.1108977942805303,0.1265092752304257,0.1391851592431044,0.1513412205692866,0.1623083088431739,0.1724396863367696,0.1850112555604622,0.1975840495313142,0.2095240168019674,0.220559745192255,0.2309649422312293,0.241468739955889,0.2515817311447604,0.2606935180915318,0.2684921562177429,0.2768269087661854,0.2835757007832112,0.2902995720399429,0.2970173985086992,0.3032899862168154,0.3087055849900355,0.3137632101414425,0.3190581107133021,0.3234665581194189,0.3269688810645679,0.3316323839662447,0.3312302414744064,0.3310700295512336,0.3301735534865405,0.3296330513612611,0.3293083706336342,0.3275372985571246,0.3249406175771971,0.3249975370266986,0.3264842910046589,0.3270766488413547,0.3277782979121805,0.3292446867346132,0.3315921963499056,0.3332214389616202,0.334732677089365,0.3372168961103419,0.3386057911536708,0.3421928997800816,0.3447900193287647,0.3479729729729729,0.3499063199744093,0.350627926777352,0.353453718903902,0.354819001069192,0.3578362077089812,0.3546174766465649,0.3576911268038071,0.3552764836945513,0.3603020496224379,0.3740112994350282,0.0,2.1569672763579,57.472779278105634,184.8479293617675,265.6647621895696,fqhc7_80Compliance_implementation,81 -100000,95851,44132,417.3561047876392,6240,63.74477052925896,4900,50.48460631605304,1863,19.02953542477387,77.4717338221379,79.75761798418881,63.40399372213196,65.09028331134249,77.2372224240518,79.52647894978418,63.31584084656363,65.00651237731392,0.2345113980861128,231.1390344046345,0.0881528755683263,83.77093402856417,152.52886,106.82093670339331,159131.2140718407,111444.78065267272,335.48539,215.9556534540781,349377.5025821327,224673.80982366187,354.75469,172.00265589662445,366104.7980720076,176418.8620830152,3482.70421,1600.8886303019162,3589284.170222533,1626012.4467161703,1140.49414,512.6408956563528,1168276.481205204,513246.0231571434,1821.8902,772.1431092484582,1861833.2411764087,770614.9416872392,0.38109,100000,0,693313,7233.237003265485,0,0.0,0,0.0,28608,297.795536822777,0,0.0,32498,335.113874659628,1661710,0,59554,0,0,6176,0,0,60,0.6155387006916986,0,0.0,0,0.0,0,0.0,0.0624,0.1637408486184366,0.2985576923076923,0.01863,0.3252256386721738,0.6747743613278262,24.71054481962153,4.296411505114984,0.3257142857142857,0.2371428571428571,0.2279591836734694,0.2091836734693877,11.27147315671956,5.966073379957162,19.788404529945712,12385.740778976631,55.29718807063376,13.696830502450624,18.03891868034433,12.358661700764433,11.202777187074371,0.5714285714285714,0.7788296041308089,0.7017543859649122,0.5863921217547001,0.1170731707317073,0.750375939849624,0.9304556354916068,0.8932714617169374,0.708171206225681,0.1911111111111111,0.5047619047619047,0.6939597315436241,0.630901287553648,0.55,0.09625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022674359753011,0.0047208517794369,0.0068547324017927,0.0088002436053593,0.0108934232989187,0.0131044797379104,0.0151780620976285,0.0173298381256438,0.0194228294834875,0.021475906078704,0.0236688208605168,0.0258035402949562,0.0279213108017874,0.0299616219608811,0.0322846658145384,0.0341797379209219,0.0359968968192397,0.038211609613531,0.0403185612825518,0.0421991424884485,0.0569024306315888,0.0711903741414817,0.0842686620345626,0.0972870171899298,0.1092407745090805,0.1247607870502532,0.1382850113470063,0.1506543249281838,0.1621575452157758,0.1727475401401959,0.1852804442339976,0.1972459710978285,0.2089699733941467,0.2195641255213679,0.2289762741652021,0.2404342586757763,0.2502534508305388,0.2594946659180235,0.2673160786090502,0.2749531128493664,0.2818386556562915,0.2888515484608742,0.2955557392731868,0.3003169666885952,0.3065678377329192,0.3121246431032785,0.316880910442354,0.3213768759998984,0.3263555073137954,0.3308672529092728,0.3299780946365456,0.3296178998889483,0.3294870715067801,0.3287805299290453,0.3279746573111881,0.3265517767271618,0.3252702574931451,0.3259917652441016,0.3273787265866675,0.328630248819792,0.3291514428454254,0.331374552887072,0.3329861038771641,0.3335185473295846,0.3343361268295012,0.3344636570718575,0.3346984889139952,0.3369362073261899,0.3415418669802511,0.3459988260614361,0.351129639591178,0.3522177843178474,0.3550244024527593,0.3593761886648915,0.3626394403478918,0.3669648181276088,0.364190012180268,0.3627254509018036,0.3690766314649336,0.3717514124293785,0.0,2.47361088386883,57.865834931758044,181.6400628072693,264.5779431517241,fqhc7_80Compliance_implementation,82 -100000,95737,44336,419.973468982734,6277,64.30115838181686,4910,50.67006486520364,1954,20.00271577342093,77.34438518034166,79.69799263092412,63.33412346583962,65.07269924104912,77.09451983064484,79.44969929497333,63.24060121356254,64.98229740737571,0.2498653496968188,248.29333595079103,0.0935222522770757,90.40183367341116,151.3358,106.01213090167136,158074.0570521324,110732.25121864388,336.19316,215.763487686602,350547.5312575076,224756.4304460916,345.60249,167.06039714674355,357052.01750629325,171427.08416192455,3556.11397,1626.632283741087,3672872.379539781,1657518.8430969913,1174.07331,522.67957765974,1208411.2934393182,528040.7222045956,1917.5981,815.3674385095183,1965274.3453419264,819629.286615994,0.38395,100000,0,687890,7185.184411460565,0,0.0,0,0.0,28558,297.63832165202587,0,0.0,31703,327.177580245882,1664979,0,59792,0,0,6087,0,0,80,0.8356225910567493,0,0.0,0,0.0,0,0.0,0.06277,0.1634848287537439,0.3112952047156285,0.01954,0.3159902349710101,0.6840097650289899,24.64884368771936,4.4649973813354045,0.3199592668024439,0.2189409368635438,0.2299389002036659,0.2311608961303462,11.180989811911893,5.857026577890149,20.96107114779027,12499.35489977176,55.83084853364139,12.824673293622736,17.90706969535653,12.626726332709415,12.472379211952717,0.5553971486761711,0.7590697674418605,0.7167409293443666,0.5987599645704162,0.0960352422907489,0.7224770642201835,0.8871391076115486,0.8676122931442081,0.774074074074074,0.1324786324786324,0.4947251526929483,0.6887608069164265,0.6611498257839721,0.5436554132712457,0.0865704772475027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00213727158543,0.0044407044295519,0.0068689820310676,0.008998303931426,0.011173922768774,0.0131727627172131,0.0153890055237357,0.0177151895504872,0.0198424456682776,0.0219175278829428,0.0239466349700795,0.026326323244142,0.0282544546006025,0.0305349014438425,0.0326297763472806,0.0345782609594279,0.0364044757734786,0.0384539599904591,0.0404281854084389,0.0423827677436826,0.0574608245377765,0.0718000774406898,0.0853061181678012,0.0984256522973697,0.1104619894757932,0.1258631811596501,0.138828196262277,0.1508448246510044,0.1623515337947534,0.1722418784174975,0.1858407079646017,0.1978254989992968,0.2104936929099608,0.2210390519088643,0.230323297435841,0.240803897685749,0.2508203674353193,0.2602245118329884,0.2691766521423384,0.2777268770901095,0.2847820049986115,0.2917256631990357,0.2989881058050772,0.3053012944323812,0.3105602138777494,0.316204411982431,0.3212459262973176,0.3268664516704694,0.3322789322893034,0.336904824816361,0.3355786070321972,0.33486099642169,0.3346864560869381,0.3335598513656145,0.3321633078009965,0.3309351414370743,0.32869929537231,0.3284394318032355,0.3301736675506886,0.3297647983986274,0.3305261183531839,0.3306633440132906,0.3322289788215559,0.3319739171353665,0.3337030963634609,0.3358910115878484,0.3382076278433384,0.3416561712846347,0.3458282100825575,0.3489566741000318,0.3513969281254273,0.3534230544177882,0.3536569987389659,0.3578023308612078,0.3603569751056834,0.361038961038961,0.3627149877149877,0.3671617161716171,0.3659822419533851,0.3680933852140078,0.0,2.409428150776047,57.20197216143689,187.2959579036856,267.506494929688,fqhc7_80Compliance_implementation,83 -100000,95664,43921,414.9000669008195,6240,63.89028265596254,4812,49.63204549255728,1892,19.3803311590567,77.28108161739658,79.66989060943521,63.29287913429015,65.05645468555217,77.04741944397416,79.43890246329448,63.20596587194074,64.97352996524023,0.2336621734224166,230.9881461407315,0.0869132623494124,82.92472031193654,150.9321,105.76704404715652,157773.1435022579,110560.96760239644,335.1276,215.39711584590933,349666.52032112394,224509.21542681605,344.54793,166.20684871519427,356068.74059207225,170528.56306884543,3441.08774,1559.7805018402084,3550847.769275799,1584269.7063056196,1158.57379,507.2293678692674,1192257.3172771367,511392.1553001805,1857.25324,773.8957401226774,1904138.3174443888,775966.3664870048,0.3801,100000,0,686055,7171.5065228299045,0,0.0,0,0.0,28429,296.49606957685234,0,0.0,31634,326.6641578859341,1663577,0,59721,0,0,5816,0,0,66,0.6794614484027429,0,0.0,0,0.0,0,0.0,0.0624,0.1641673243883188,0.3032051282051282,0.01892,0.3323641928079571,0.6676358071920429,24.750052487394655,4.39793327646604,0.3258520365752286,0.226101413133832,0.2298420615128844,0.2182044887780548,11.262997946016258,5.792172979084469,20.08402943913934,12412.784611574229,54.47677036919585,12.910892343331442,17.67982145556443,12.323985148462224,11.562071421837754,0.5685785536159601,0.7628676470588235,0.7072704081632653,0.6121157323688969,0.1142857142857142,0.7342487883683361,0.9464788732394366,0.8461538461538461,0.7411764705882353,0.1509433962264151,0.5111919418019026,0.6739427012278308,0.6571180555555556,0.5734430082256169,0.1050119331742243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021526617028,0.0048560914040085,0.0069009610603123,0.0093568083225813,0.0114008502328987,0.0135941509510814,0.0158451781307991,0.0178564136072201,0.0202708918987988,0.0224772003807613,0.0244845228696517,0.0268494275886852,0.0289904256522588,0.0311057533794922,0.0329745182830545,0.0349886783088805,0.0368981519847518,0.0391812926193861,0.0410572742213993,0.0432149595055191,0.0580891187379198,0.0718743455497382,0.0855307356399059,0.0984384536060778,0.110590569043926,0.12666504438355,0.1395084664791124,0.1519731586515418,0.1633645899045195,0.1732865165523091,0.1860823797146154,0.1974706589941155,0.2096465053470694,0.2205882352941176,0.2305344688915086,0.2402155951601992,0.2499664699570815,0.2592083624321341,0.2675635446374803,0.2756647670592012,0.2821261411557533,0.2885931202549442,0.2950837167386045,0.3016019790565856,0.3066085940921699,0.3118761182059349,0.3178087684346377,0.3224605814946528,0.3277074360437964,0.3320634416709658,0.3312771643765353,0.3305012275523434,0.3289497871859048,0.3275577079225147,0.3268866588133546,0.3251351019405551,0.3238773309653685,0.3244746499037338,0.3247097900900592,0.3251215675057208,0.3255765907895725,0.3269933290978399,0.3292138616362794,0.3301513858317236,0.3314825097168239,0.3334725194425596,0.3344670877754594,0.3403617310059657,0.3424936744447568,0.3455932001429876,0.3476281525994719,0.3483682674449456,0.3514211886304909,0.351633393829401,0.3527653213751868,0.3537977632805219,0.3589003645200486,0.3581162324649298,0.3597083445854712,0.3588663347376484,0.0,2.6125640789621576,53.970930318505616,179.30614089941088,272.85508582304857,fqhc7_80Compliance_implementation,84 -100000,95738,43952,413.9839979945267,6402,65.70013996532202,4994,51.69316258956736,1990,20.43075894629092,77.3612597271838,79.72585210780065,63.34108899169471,65.08866470763257,77.10909054898036,79.47488857388262,63.24707908885491,64.99777367987,0.2521691782034452,250.96353391802492,0.0940099028398009,90.89102776258072,151.55272,106.21661617288572,158299.44222774656,110945.0961717246,337.37892,216.58356052974744,351934.8325638723,225761.98638967535,353.85443,170.7766739520032,367059.4121456475,176345.35936595718,3576.04252,1633.755836764909,3702872.5375503977,1674120.4399140424,1205.06356,531.3517357507588,1246005.9537487729,542304.1962622425,1952.49582,822.3262400967651,2006510.1213729132,829879.8307948542,0.37893,100000,0,688876,7195.429192170298,0,0.0,0,0.0,28587,298.10524556602394,0,0.0,32437,336.30324427082246,1664422,0,59694,0,0,6038,0,0,77,0.7938331696922852,0,0.0,0,0.0,0,0.0,0.06402,0.1689494101812999,0.3108403623867541,0.0199,0.327226690497468,0.672773309502532,24.69530449659192,4.361812735312609,0.3303964757709251,0.2296756107328794,0.2146575891069283,0.2252703243892671,11.41598892229564,5.905654737165733,21.21338964077011,12465.12282336188,56.77187728125556,13.616403823694162,18.703160970658484,12.123547325859338,12.328765161043592,0.5654785742891469,0.7776809067131648,0.7054545454545454,0.6063432835820896,0.1048888888888888,0.7256235827664399,0.9144254278728606,0.8485576923076923,0.7464285714285714,0.110091743119266,0.5077635521656224,0.7018970189701897,0.6572123176661264,0.5568181818181818,0.103638368246968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323892586177,0.0049983778084191,0.0073978608106188,0.009651430951631,0.0118173497406691,0.0140526669517932,0.0161727815960679,0.0185020676979629,0.0208574028443771,0.0228091728091728,0.0249454030943373,0.027042571766035,0.0294250745654633,0.0317599307730344,0.0339610959186832,0.0359048052270283,0.0379544960284995,0.040005811479748,0.0419387712657543,0.0441582528419451,0.058618997400048,0.0728618231679872,0.0862267911465435,0.0991062039957939,0.1112504743033011,0.1268393234672304,0.1393516505657416,0.151242351689279,0.161768947284089,0.1728577707737004,0.1851796020329055,0.1979446127217654,0.2099380232684571,0.2202750568479972,0.2301796749576653,0.2412525874187799,0.250404273590061,0.2590415608352626,0.2677565272597413,0.2761797932857944,0.2835801912426145,0.2903885480572597,0.2970655375116799,0.3034337435946554,0.3090860580188221,0.3142136662771388,0.3192858392263675,0.3236770855842686,0.3277457769723642,0.3321105275659127,0.3319607605667918,0.3319819696011873,0.3307626271866248,0.329581575449344,0.3294196329048079,0.3278226362480273,0.3267851772117835,0.3272766069200972,0.3273413226808699,0.3274137068534267,0.329157367641267,0.3297910305721876,0.3301478618835587,0.3307125417198664,0.3321841851494696,0.3333682391748259,0.3347657928663515,0.3370345765714466,0.339806167400881,0.3425548902195608,0.346383755418663,0.3466023534400508,0.3477359794008666,0.3510039549741405,0.353106550463874,0.3525519848771266,0.3581452104942038,0.3642625607779579,0.373355723481668,0.3704,0.0,1.8317733093363748,58.514356598109416,190.2221824812688,273.7459001870963,fqhc7_80Compliance_implementation,85 -100000,95651,43702,413.3464365244483,6109,62.58167713876489,4791,49.492425588859504,1938,19.85342547385809,77.2430810454354,79.64782331704002,63.27207635196621,65.0504228811306,76.99587503810073,79.40130789231928,63.18037788885233,64.96115073044966,0.2472060073346682,246.51542472074084,0.0916984631138859,89.27215068094085,151.41412,106.09658858401176,158298.0627489519,110920.12095859733,334.13217,215.1439342936156,348734.9008374194,224337.92917930943,341.7082,164.7474171393236,353532.8224482755,169402.8712130238,3438.72642,1565.8773636243316,3556667.2068248107,1598832.8193430305,1164.71546,509.3577014211164,1202848.5013225162,517693.3449949471,1907.4104,806.8272875604343,1956870.2261345931,813765.8565787079,0.37805,100000,0,688246,7195.366488588724,0,0.0,0,0.0,28476,297.10091896582367,0,0.0,31366,324.209888030444,1660933,0,59554,0,0,6078,0,0,58,0.6063710781905051,0,0.0,0,0.0,0,0.0,0.06109,0.1615923819600582,0.3172368636438042,0.01938,0.3281371784879189,0.6718628215120811,24.509955530267337,4.340917384503977,0.3185138801920267,0.2314756835733667,0.2160300563556668,0.2339803798789397,11.057482732012428,5.667654157166838,20.79977129603604,12352.153080839287,54.68624264120845,13.275868881412167,17.461791443965073,11.525951399125091,12.422630916706124,0.5612606971404717,0.8079350766456267,0.709043250327654,0.5652173913043478,0.1123996431757359,0.7098070739549839,0.9191374663072776,0.8737623762376238,0.7056277056277056,0.1092436974789916,0.509162672681139,0.7520325203252033,0.6497326203208557,0.5248756218905473,0.1132502831257078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024221663693854,0.0045746860609011,0.0067307594692547,0.0091852183013442,0.0114633873445017,0.0136972350934365,0.0156410910017843,0.017950498284594,0.0199300556282722,0.0222622729227681,0.0244382685030406,0.0263717304907729,0.0285585001902528,0.0307819099618831,0.0327711490029313,0.0348664074778724,0.036825258709096,0.0386619338232241,0.0404609847933265,0.0424933017795894,0.0571613685288523,0.0706534263507426,0.0836246810923178,0.0967212251986737,0.1094525262335578,0.1250277898347431,0.1379522807912125,0.1496636352975041,0.1609365135415663,0.1713549218624134,0.1848366802991227,0.1975477282336488,0.2085225973007418,0.2189717865591869,0.2280373007649743,0.239877947295423,0.2488398877346781,0.2581805065545499,0.267816340218491,0.2755544343279132,0.2828135322137617,0.2895923362493998,0.2969925257335086,0.3017527863424232,0.3063988221981578,0.3119135802469135,0.3162481036147297,0.3208683008953396,0.3251136216075834,0.3289315249751902,0.3282468496181764,0.3271822717124665,0.326399480314071,0.3254321273852127,0.3250037274489339,0.3246559773928001,0.3223920434685901,0.3225976594692599,0.3237073471696173,0.3258386674555789,0.3271966684881946,0.3286586700085536,0.3289277070398821,0.3294247141541433,0.330773874200169,0.3322223388620617,0.333659406738211,0.3384006334125099,0.3424497594112652,0.3441141020490156,0.3437802907915993,0.3449385762566386,0.3475028593213877,0.3494346588723944,0.3506778690089746,0.3522727272727273,0.3491493678788824,0.3509960977613473,0.3441396508728179,0.3480449090205187,0.0,2.308332584867604,54.47486053368088,186.4042055409586,265.0516529353947,fqhc7_80Compliance_implementation,86 -100000,95836,44367,419.4665887557911,6324,65.04862473392045,4924,50.99336366292416,1976,20.35769439459076,77.44904619750217,79.77515639673369,63.38601454967061,65.10695796880917,77.20208150272221,79.52700926551566,63.29550887521971,65.01807217813793,0.2469646947799617,248.1471312180332,0.0905056744509025,88.8857906712417,151.03726,105.80070390003826,157599.25289035437,110397.24983050216,336.02273,215.9136041603435,350215.3992236738,224894.02172029475,347.62273,167.25540843488187,360760.24667139695,173024.86797855658,3507.60164,1584.961811546166,3632109.624775659,1626478.8130742104,1176.31383,510.7883721995273,1215610.1151967945,521471.1522780564,1937.60414,806.8812554866478,1996392.983847406,819575.4282987132,0.38211,100000,0,686533,7163.602404107016,0,0.0,0,0.0,28553,297.5186777411411,0,0.0,31816,330.05342460035894,1672271,0,59976,0,0,6129,0,0,71,0.7304144580324722,0,0.0,0,0.0,0,0.0,0.06324,0.1655020805527204,0.312460468058191,0.01976,0.3348429951690821,0.6651570048309179,24.807612333985865,4.36450904669436,0.3269699431356621,0.2341592201462226,0.2156783103168155,0.2231925264012997,11.044750751702413,5.664482304684021,20.852910958165143,12420.46188797398,55.5637681532403,13.846877122212256,18.09375903337861,11.698616451765703,11.92451554588373,0.5406173842404549,0.7684301821335646,0.6658385093167701,0.5499058380414312,0.1091901728844404,0.6987767584097859,0.8967136150234741,0.8422273781902552,0.6805555555555556,0.0936170212765957,0.4834070796460177,0.6932599724896836,0.6013570822731128,0.516548463356974,0.1134259259259259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025115704404362,0.0047337637983639,0.006838959747547,0.0088276226369094,0.011053825111606,0.0131652632543553,0.0152931700702466,0.0174629257289827,0.0199795605518651,0.0222958938310259,0.0244709740226469,0.026559934318555,0.0285361842105263,0.0306505914936114,0.0326320132013201,0.0346405768952621,0.0368557234527013,0.0389257569473247,0.0408415584415584,0.0426504268165729,0.0575183852292286,0.0716682871749835,0.0851202079272254,0.0976150451775583,0.1096909475991275,0.1258335535006605,0.1380114479542082,0.1501504694860642,0.1611031098309062,0.1716228516357016,0.184421337863848,0.1964374446388835,0.2078425412265369,0.2186153090730536,0.2296293043831436,0.2400574776168896,0.2504928110835162,0.259745215780908,0.2685328775341566,0.2772408435579317,0.2839647251656393,0.2902326341087803,0.296777467048981,0.3032284283374968,0.3086225281116712,0.3138428634642804,0.3192909358548938,0.3239990361323542,0.3286734048458093,0.3324301929476135,0.3315974552385042,0.3303187912555407,0.3293871475115155,0.3289289779686171,0.3282265346300161,0.3265150475144526,0.3257308467741935,0.3267279826180713,0.3281295122904173,0.3283794101457767,0.32954757375704,0.3298591992448674,0.3310032551539938,0.3318764633738432,0.3323981488142339,0.3346992763959852,0.3360215817123385,0.3380008144597938,0.3424229662385064,0.3461523244312562,0.3485248588599526,0.3502554278416347,0.3516636151272176,0.3514892968690485,0.3542139077853363,0.3584928087483656,0.3549823430062951,0.3563124617581072,0.3563756540897824,0.3623188405797101,0.0,1.404973145330401,58.23532294369845,182.84681891964985,270.15553964095244,fqhc7_80Compliance_implementation,87 -100000,95816,43967,415.0455038824413,6283,64.46731234866827,4905,50.70134424313267,1970,20.268013692911413,77.3497797498425,79.68360305392021,63.33168066437421,65.06024412747153,77.10297888422387,79.43649284431824,63.24010719591327,64.97108742732165,0.2468008656186242,247.1102096019706,0.0915734684609432,89.15670014988564,149.57228,104.8374153568546,156103.65700926774,109415.35375809322,332.99445,214.31155383190853,347029.1496201052,223163.7240459928,344.87847,166.44827816085302,357169.48108875344,171571.0176069533,3536.20117,1612.696441399535,3656689.342072305,1649190.877723487,1153.8412,510.4120099332803,1190617.819570844,519091.9887422561,1931.58592,812.4141250746542,1988313.642815396,822135.0255418255,0.38031,100000,0,679874,7095.620773148535,0,0.0,0,0.0,28401,295.8796025715956,0,0.0,31619,327.18961342573266,1673238,0,60006,0,0,5922,0,0,55,0.5740168656591801,0,0.0,1,0.0104366702847123,0,0.0,0.06283,0.1652073308616654,0.3135444851185739,0.0197,0.3347489761868648,0.6652510238131352,24.67906560915221,4.341904956487872,0.3119266055045872,0.2316004077471967,0.2324159021406728,0.2240570846075433,10.8442027989102,5.5255101628581365,21.02257610520441,12423.851628292316,55.755730877096816,13.64910836356481,17.365053947636603,12.638836301742156,12.10273226415326,0.5510703363914373,0.7711267605633803,0.703921568627451,0.5412280701754386,0.1210191082802547,0.7094594594594594,0.8992974238875878,0.84688995215311,0.7008196721311475,0.1481481481481481,0.4920235096557515,0.693935119887165,0.6501798561151079,0.4977678571428571,0.1133177570093458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0045930627515791,0.0069214687316053,0.0092655619786851,0.0114739090631675,0.0136856575530777,0.015936133117181,0.0179559420999979,0.0202890551535222,0.0223546029601424,0.0244592516658124,0.0265416760786085,0.0288008719435704,0.0308815503588602,0.0327508664796171,0.0349349039057656,0.037026302441852,0.038948241883622,0.0409051710702671,0.0429685466490364,0.0575470517047114,0.0713135495744191,0.0849509475096428,0.0968704680636415,0.1095546772068511,0.1252920838663974,0.1371022486211285,0.1489570029799914,0.1599641106162079,0.1709731741588098,0.1840809421703104,0.1967120856286323,0.2084412052648754,0.2192975744127324,0.2290073816569674,0.2396068785179275,0.249469877904511,0.2590118208095736,0.2677491461574247,0.2760239542899019,0.2837110825726285,0.2905697009391703,0.2978876989527247,0.3031624341159559,0.3086778063826687,0.3142075829617403,0.3197118991647076,0.3240565257762118,0.3286219081272085,0.3329990102276476,0.3323811577018433,0.3305176999076766,0.3298259471353211,0.3296579103699089,0.3290572215194583,0.3274963199214916,0.3256108769372167,0.3265698419478855,0.3273579419109849,0.3286641979284065,0.3297994108044208,0.3307980272149266,0.3324662792892954,0.3337136975880431,0.3346402713299497,0.3362889555352719,0.3382097623452398,0.3410466246511773,0.3431396527025611,0.3457943925233644,0.3479742005813953,0.3484182078321233,0.3501577287066246,0.3544139039889748,0.3574592404108943,0.3579370712088952,0.3531302617480483,0.3513785469913463,0.3554708764289602,0.3530778164924506,0.0,1.8966215694918884,58.960659633994,180.97232310691143,269.9520402893821,fqhc7_80Compliance_implementation,88 -100000,95795,44217,418.0385197557284,6372,65.32700036536353,4985,51.41186909546427,2001,20.491674930841903,77.41775944651599,79.74694902555373,63.37436231324406,65.09577400666062,77.17362019712218,79.50433805906341,63.28438030575653,65.00875206363928,0.244139249393811,242.610966490318,0.089982007487535,87.02194302134103,151.23966,105.91821943976898,157878.44877081265,110567.5864499911,335.83698,215.4793175406288,349946.37507176783,224305.5144220771,352.27493,169.9990440849591,363872.321102354,174434.94388717297,3596.18256,1634.7590871321845,3710695.7356855785,1663357.465819178,1216.64634,536.3204625641664,1254076.3192233415,543923.6719723955,1971.15362,819.6550072674585,2020481.0271934865,825462.9058717116,0.38159,100000,0,687453,7176.29312594603,0,0.0,0,0.0,28526,297.1345059763036,0,0.0,32295,333.23242340414424,1669405,0,59956,0,0,5889,0,0,66,0.6889712406701811,0,0.0,0,0.0,0,0.0,0.06372,0.166985508005975,0.314030131826742,0.02001,0.329343109382014,0.670656890617986,24.737040370580903,4.417418218568278,0.3247743229689067,0.2198595787362086,0.226680040120361,0.2286860581745235,11.230913000518656,5.777615142519113,21.16995703879748,12422.46957885718,56.39133588295689,13.23513016107199,18.32717825761119,12.466982200275796,12.362045263997924,0.5586760280842528,0.791970802919708,0.6967263743051266,0.5725663716814159,0.1245614035087719,0.7388059701492538,0.9154589371980676,0.8906605922551253,0.7346938775510204,0.1652892561983471,0.4924554183813443,0.717008797653959,0.6245762711864407,0.5276836158192091,0.1135857461024498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023592786480219,0.0046628080240844,0.0068695396292275,0.0092523003798419,0.0113479215813877,0.013671159249155,0.0159107124655998,0.0182697803543725,0.020206872585294,0.0220864421177602,0.0243137415691178,0.0263201116859653,0.0282480648842014,0.0305763172524553,0.0327074375393118,0.0347253065060888,0.0366150247860328,0.0385975097711933,0.0407542073550799,0.0427472332982832,0.0576862884210087,0.0712859487544037,0.0842662473794549,0.0967447137049759,0.1086384126047942,0.1244836511541915,0.1367859072275245,0.1492887972274786,0.1604054414510536,0.1710157036656168,0.1847657762291908,0.1972453278599978,0.2086730871543197,0.2193020767366191,0.2294914472166375,0.2398805243652857,0.2506130729445336,0.2592089304164233,0.2677284879242376,0.2754511561949635,0.2826114583453677,0.2902099535253042,0.2970377719509602,0.3033320566832631,0.3100481720116972,0.3152781540128549,0.3199630129454691,0.3241251365981346,0.328984457834441,0.3334474540115613,0.3331273342827203,0.3328659986529765,0.3321327574320807,0.3313181739481733,0.3303203016000237,0.3283904141033881,0.3263944868572874,0.3272220856885394,0.3284697630073549,0.3290436268489347,0.3297130572950743,0.3301530471731518,0.3307867326277997,0.3309514269177686,0.3315169119235662,0.3325097529258777,0.3323669025894659,0.3357904642409033,0.3388062314020654,0.3413987010929827,0.3430026370828408,0.3468217301258563,0.3479685039370079,0.3507332269584378,0.3518047309395909,0.3521495772299631,0.3632545115121344,0.3631525076765609,0.3588543101074084,0.3481797056545314,0.0,2.4417798507687416,58.56832624249224,182.7387712561476,275.6923664389723,fqhc7_80Compliance_implementation,89 -100000,95713,44385,419.7757880329736,6322,64.77698954165056,4970,51.267852851754725,1989,20.279376887152218,77.3893283971574,79.74771580941729,63.35181630130408,65.09257290911977,77.13506443072325,79.49779851641752,63.256891026153816,65.00251430081286,0.2542639664341521,249.9172929997684,0.0949252751502598,90.05860830690438,151.09072,105.81375934256192,157858.09660129764,110553.17390799776,334.55128,215.22587840212307,348816.9214213326,224146.91672199505,351.10697,169.73036518608413,362501.1231494154,174115.53502230078,3547.58607,1625.1453170672426,3660884.38352157,1652494.1362814123,1186.46554,525.0252724898543,1221344.33149102,530311.642565768,1945.30846,821.2235772382563,1986041.269211079,820056.7868469297,0.38297,100000,0,686776,7175.36802733171,0,0.0,0,0.0,28486,296.939809639234,0,0.0,32248,332.6089454932977,1667023,0,59849,0,0,6079,0,0,59,0.605978289260602,0,0.0,0,0.0,0,0.0,0.06322,0.1650782045591038,0.3146156279658336,0.01989,0.3258308157099698,0.6741691842900303,24.699890646596057,4.392960837460813,0.3175050301810865,0.2309859154929577,0.2291750503018108,0.2223340040241448,11.275373562419531,5.829089816655667,21.244848552166776,12473.199451768587,56.27329334742289,13.680511385967256,17.815946899214328,12.61117245529573,12.165662606945558,0.5635814889336016,0.7839721254355401,0.70595690747782,0.582089552238806,0.1122171945701357,0.723752792256143,0.9017199017199016,0.8708920187793427,0.7442748091603053,0.157258064516129,0.5042735042735043,0.7192982456140351,0.6449652777777778,0.5336374002280502,0.0991831971995332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0047837676224066,0.0068774535163263,0.0092706355411593,0.0116201049164328,0.0138733383547421,0.0158364585031795,0.0183567682292198,0.0206606925725729,0.0227465747117027,0.0250643002797446,0.0269424523171945,0.0288840937114673,0.0307568786091467,0.0327650753380155,0.0347543016586575,0.0367950801851142,0.0388265925334273,0.0407974471712037,0.0428572916775181,0.057454940373008,0.0717327836087188,0.0850789321865002,0.0985037275375119,0.1102455171250566,0.1258764183965905,0.1388096273588408,0.1503502459173462,0.1611772875380588,0.1717848641461688,0.1855636798294261,0.1980896336120636,0.2090413907824782,0.2195418010826179,0.2295190202141356,0.2402419703298286,0.2502651231846038,0.2597792703094941,0.2684139434045789,0.2768929324411037,0.2846731372118043,0.2915711679685673,0.2980426941044291,0.3035068388147651,0.3095342173005003,0.3150679869937925,0.3199709640680342,0.3241620555873561,0.3295695861604599,0.3333597129893426,0.3321857938194239,0.3313580993758077,0.3312291751606236,0.3306612358089956,0.3302904810675216,0.3281252388741955,0.3271711159875597,0.3277961441524009,0.3274763105869521,0.3290193771502932,0.3304473034632358,0.3313146058549672,0.3335705316031812,0.3358355674709562,0.3365146524989783,0.3385470796092288,0.3402671213412901,0.3433055572959088,0.3473518615626638,0.3517004384405735,0.3516388598445242,0.3560195515885666,0.3597376387487386,0.362773390036452,0.3662117647058823,0.3697558663190329,0.3714067278287462,0.3669632025879498,0.371452655240236,0.3669796557120501,0.0,2.562425671516343,58.49189636058276,187.30966101006305,267.3243676666988,fqhc7_80Compliance_implementation,90 -100000,95671,44253,418.4862706567298,6376,65.4325762247703,5019,51.865246521934544,1977,20.246469672105444,77.35982293729873,79.73498653472299,63.33991942654043,65.08966560653673,77.1173367999183,79.49392682501535,63.24918842289795,65.00162825792546,0.2424861373804248,241.0597097076419,0.0907310036424817,88.037348611266,150.00084,105.09215306893653,156788.2012313031,109847.449142307,335.79896,215.674961163551,350382.5192587095,224823.9880072431,349.60125,168.87349549318853,361765.665666712,173664.83493077251,3588.48706,1628.5838683779896,3711833.8263423606,1663380.874490338,1191.45151,525.0879384230794,1229760.0004180996,533270.5333623752,1941.3279,815.6510526562885,1991111.89388634,822051.7666093617,0.38231,100000,0,681822,7126.736419604687,0,0.0,0,0.0,28489,297.12242999446016,0,0.0,32102,331.8560483323055,1672156,0,59916,0,0,5977,0,0,61,0.6376017811039918,0,0.0,0,0.0,0,0.0,0.06376,0.1667756532656744,0.310069008782936,0.01977,0.3268511593118923,0.6731488406881077,24.699155494749377,4.319275220580228,0.3199840605698346,0.2355050806933652,0.2193664076509265,0.2251444510858737,11.388333856234151,6.0178504297412845,20.9724608614768,12535.856309598645,56.62829880782797,14.063372743613488,18.09871834452837,12.255440992100208,12.210766727585888,0.5644550707312214,0.7690355329949239,0.7110834371108343,0.5894641235240691,0.1176991150442477,0.7218890554722639,0.90521327014218,0.8753056234718827,0.6928838951310862,0.1610169491525423,0.5074626865671642,0.6934210526315789,0.6549707602339181,0.5563549160671463,0.1062639821029082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0048043299784109,0.0071222036219753,0.0092624565822347,0.0114283390271677,0.0136800855005343,0.0159365797491313,0.018171244337428,0.0202355536941887,0.022434553099201,0.0244332209849097,0.0262634138334325,0.028470701900445,0.0306730779131186,0.0325531980732137,0.0346545398170637,0.0367199469957348,0.03873838367076,0.040898222268427,0.0432073033473675,0.0575201362264032,0.071219164886711,0.0848743729140866,0.0976769632185843,0.1098420131198717,0.1255594468485816,0.1379427467546941,0.149961654808061,0.1611306513860528,0.1721069523308609,0.1850011854214712,0.1979943903574793,0.2100073999912941,0.2207300388551414,0.2309657526704107,0.2416612201039093,0.2511803377496009,0.2611682689604767,0.2696880317640385,0.2781880846873461,0.2863637941207094,0.2932111766357764,0.2995135346266289,0.3060178030166888,0.3120441720769371,0.3172668513388735,0.3224366827512063,0.3275121380818018,0.3327555653287457,0.3372513323835154,0.3368255419871967,0.3363039980195568,0.3355545850297967,0.3347723761532797,0.3345498783454987,0.3338943631801211,0.3319088995457639,0.3319975693475012,0.3323638603274537,0.3328805076414335,0.3338020247469066,0.3333992524769118,0.3347589995177893,0.3353008250050305,0.3359688543894643,0.335867527598417,0.3379257449649178,0.3409347553324968,0.3447467823167319,0.3465683943572674,0.3497136103282116,0.3522430950987175,0.3561417971970321,0.3574657166934804,0.3602684056327379,0.365260129465356,0.3680811808118081,0.3639131317231581,0.3643243243243243,0.3641262509622787,0.0,2.1774571250942896,58.56402803143361,181.82432904448555,281.6545788600557,fqhc7_80Compliance_implementation,91 -100000,95852,44276,418.5828151733923,6410,65.62200058423403,4977,51.33956516295956,2013,20.625547719400743,77.34109898624328,79.63262452053834,63.34986309044478,65.0444000261567,77.0896915831819,79.3828300202244,63.256520260266655,64.95454008720438,0.2514074030613784,249.79450031393924,0.0933428301781233,89.85993895231559,150.74972,105.512793208689,157273.42152485083,110078.86450850165,331.64755,213.03826497493392,345417.5082418729,221675.4005914681,347.43247,168.02252266180594,358791.65797270794,172470.1297227084,3572.03555,1632.0199561592842,3684738.701331219,1660768.8375404626,1194.41825,527.1813319112865,1227269.2588574053,531157.6304211564,1971.30134,830.9518058397166,2020474.7318783123,834554.9285861496,0.38268,100000,0,685226,7148.791887493218,0,0.0,0,0.0,28230,293.90101406334765,0,0.0,31870,328.7881317030421,1670392,0,60068,0,0,5909,0,0,57,0.5946667779493385,0,0.0,1,0.0104327504903392,0,0.0,0.0641,0.1675028744643043,0.3140405616224649,0.02013,0.325297619047619,0.674702380952381,24.6800467404312,4.360825783572851,0.3343379545911191,0.2171991159332931,0.2258388587502511,0.2226240707253365,11.080794210691424,5.75660521338055,21.56434325795354,12465.759676635254,56.77141338275121,12.961658087816105,18.924360326142374,12.69022127672489,12.195173692067842,0.5633916013662849,0.7724329324699353,0.6989182692307693,0.6040925266903915,0.1146209386281588,0.7263643351268255,0.9050131926121372,0.8641686182669789,0.7381818181818182,0.1363636363636363,0.5057127312295974,0.7008547008547008,0.6418755052546483,0.5606595995288575,0.1092342342342342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022074831654093,0.0044684925677113,0.0067147450526935,0.008822872459236,0.011017827739719,0.0133517870227143,0.0158929062624163,0.0180770211680693,0.020162196392458,0.0224127172478697,0.0245731201409446,0.0266145657056705,0.0286659203188069,0.0303928226022182,0.0324787733904871,0.0346478960459907,0.0366559818012615,0.0384910273944216,0.0404480850489509,0.0422822422905655,0.0568833552316002,0.0710179765886287,0.0844742879291019,0.0973826828551022,0.1095010425661871,0.1256443298969072,0.1378565071831165,0.1499670402109426,0.1616280186534911,0.1723365487674169,0.1853414411020825,0.1976164469486411,0.2093339276202072,0.2202728405587984,0.2302258799194622,0.2405300302462912,0.2508899378438396,0.2603843211376626,0.2695537700304145,0.277477436202868,0.2849193678998635,0.2919624375811299,0.2981698588650049,0.3031882390999604,0.3089676784608097,0.3145252774352651,0.3203699994993241,0.3251135626216742,0.3301571683798969,0.3353007975492526,0.3346984413519958,0.3332048564270572,0.3330794832741016,0.3325851157806322,0.3318982853908147,0.3304582706651524,0.3295140762370266,0.3295776503920405,0.3300932525030483,0.3314581498589119,0.3313651883571334,0.3317691971209289,0.3327076786806419,0.3328298994635048,0.3328401290416474,0.3343674413713324,0.3343662133471051,0.3380843785632839,0.3401197604790419,0.3418629678345091,0.3440658586782529,0.34608,0.3474130834019378,0.3492208982584784,0.3513231528028075,0.3561004784688995,0.364156486779032,0.3612916328188464,0.3611340489953206,0.3585780525502318,0.0,2.3175867581812937,56.852910168404925,194.79784991968816,272.3788430840761,fqhc7_80Compliance_implementation,92 -100000,95648,43924,415.13675142188026,6233,63.99506523921044,4923,50.9472231515557,1990,20.481348277015726,77.31769350596971,79.73914427811962,63.289715480586615,65.08092887932983,77.07123912192505,79.4910326887931,63.20013970194744,64.99244201983497,0.246454384044668,248.11158932652688,0.0895757786391726,88.48685949486423,150.04286,105.15541914130831,156869.83522917365,109940.00830263918,336.68159,216.61933508248097,351508.3221813316,225983.2145810482,351.85464,170.21949414938155,364025.1651890265,175089.13320543338,3524.17752,1582.7434956362492,3653243.2356139175,1623473.6383784814,1168.20586,513.559321871907,1208268.1603379056,523835.0952156939,1949.10242,803.5326961289289,2008707.7617932416,817145.4507724387,0.37849,100000,0,682013,7130.447055871529,0,0.0,0,0.0,28679,299.31624289059886,0,0.0,32228,333.10680829708934,1665114,0,59714,0,0,5971,0,0,71,0.742305118768819,0,0.0,0,0.0,0,0.0,0.06233,0.1646807049063383,0.3192684100754051,0.0199,0.3278838808250573,0.6721161191749427,24.870476761308552,4.443251781223526,0.3180987202925046,0.22953483648182,0.2275035547430428,0.2248628884826325,11.535327928171968,5.946222823396095,21.035760951213117,12369.074048016397,55.63869143758615,13.509648973703468,17.693975336571924,12.383936379731022,12.051130747579728,0.5583993499898436,0.7849557522123893,0.6883780332056194,0.5794642857142858,0.1219512195121951,0.7270588235294118,0.9170731707317074,0.8304668304668305,0.7058823529411765,0.1625615763546798,0.4994517543859649,0.7097222222222223,0.6384814495254529,0.5421965317919075,0.1128318584070796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806629386498,0.0046647466839735,0.0070152284263959,0.0091565971198894,0.0115376397692472,0.0137734311328443,0.0160773672291024,0.018114202229283,0.0202531904659564,0.0222534287295762,0.0244726171534158,0.0266307477173644,0.0288535799240044,0.0309879204877193,0.033000299627016,0.0352963089435942,0.0377393702501788,0.0396156842378603,0.0414910555399456,0.0433186643585625,0.057851066942546,0.0717825672404941,0.0855555438858139,0.0979316300524464,0.1104212204728566,0.1256499592286268,0.1375807548452907,0.1494926671214188,0.1610118729275858,0.1716857118309133,0.1842400448681996,0.1968905742145179,0.2084159170605275,0.2191332340574632,0.2287713498622589,0.2390094046668441,0.2491787158915681,0.258209089680645,0.2670753860127157,0.2740606630074826,0.2818126034756231,0.2887567871185171,0.2951207958313595,0.3007832647626816,0.30643317524018,0.3123921297894373,0.3169727239726113,0.3211013843648208,0.3249157812904897,0.3293250171784978,0.3298596600024266,0.3285643468921264,0.327713560755568,0.3266149422796295,0.325892923442489,0.3245318294663928,0.3222069009240327,0.3231281908170133,0.3246269930690703,0.324260291786166,0.3248514740499943,0.3268079407594139,0.3298155780358853,0.3309824686304173,0.3319850653391412,0.3316709524922725,0.3324247586598524,0.3359934904390824,0.3399482010359793,0.3444435637285986,0.3446765806039595,0.3479208763160693,0.3521055622198371,0.3518039275384381,0.3548447789275635,0.3591140589837735,0.3643327715642714,0.3693295865114412,0.375170905113481,0.3849675696299122,0.0,2.073627737564681,56.14652030874989,185.3208985253009,273.8612467394598,fqhc7_80Compliance_implementation,93 -100000,95716,44041,414.4866062100381,6395,65.68389819883824,5061,52.352793681307205,1978,20.34142672071545,77.34880342590687,79.70497612413091,63.338894218876014,65.07656563897672,77.09623543071113,79.45375404840864,63.245115276696325,64.98609313111965,0.2525679951957329,251.22207572226785,0.0937789421796893,90.47250785707206,151.36616,105.96302741423445,158140.91687910067,110705.65779413516,334.99769,215.00818319644483,349489.80316770443,224129.87713281452,352.49222,170.38680793870498,364492.5613272598,175186.7383022414,3631.33944,1654.0443165012075,3761177.61920682,1695383.8924539357,1209.13816,536.4911421877463,1249872.6440720465,547119.6896942473,1939.63034,819.1151497065398,1996666.910443395,828792.0997350437,0.37952,100000,0,688028,7188.223494504577,0,0.0,0,0.0,28443,296.6275230891387,0,0.0,32304,333.9671528271136,1665558,0,59818,0,0,6003,0,0,66,0.6581971666179114,0,0.0,1,0.0104475740733001,0,0.0,0.06395,0.1685023187183811,0.3093041438623924,0.01978,0.3437266895419961,0.6562733104580039,24.62826619176737,4.397716212545502,0.3171310017783046,0.2373048804584074,0.2226832641770401,0.2228808535862478,10.90443436468786,5.602628324660514,21.324934418504387,12457.771298442807,57.58057155223359,14.446224356149832,18.101764079764283,12.593245814518845,12.43933730180064,0.5643153526970954,0.7810158201498751,0.6884735202492211,0.59094942324756,0.1303191489361702,0.7217771303714494,0.9023255813953488,0.8286384976525821,0.7553956834532374,0.1673640167364016,0.5056941431670282,0.7133592736705577,0.6378286683630195,0.5371024734982333,0.1203599550056243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0045513522280338,0.0070113134797828,0.0091528764006135,0.0116316902554091,0.0139054308545833,0.0163291100533091,0.0184546289680514,0.0206938838076746,0.0228954505910649,0.025100957300699,0.0272694616924103,0.0296306958381312,0.031894741176955,0.0343401208970312,0.0364231909815145,0.0384551667011803,0.0407760946254409,0.0426514166883285,0.0447327289778055,0.0595908222196693,0.0730956816611893,0.0868333525690123,0.0995107580619706,0.1113478618594544,0.1265893752512323,0.1384535393300155,0.1511567247601912,0.1625606290463879,0.1729956448048744,0.1864490763181989,0.1986583716526913,0.2109258594625164,0.2216705671354519,0.2310265155682693,0.240709964767666,0.2502066346476042,0.2593376409933133,0.2677906448683015,0.2755072812474937,0.2821833757814309,0.2889848155167169,0.2951949143513312,0.3018325203446912,0.3081959645776898,0.3136720964045442,0.3192122538293216,0.3247597009611961,0.3289053304186985,0.3331223712142188,0.3325254157409277,0.3312503441061498,0.3306410690121786,0.3298529262896065,0.3287222965937825,0.327427932138971,0.3255810269165571,0.325615359369872,0.326322803300815,0.3263957123715945,0.3272165527572325,0.328217890225356,0.3295480734982924,0.3305181567687448,0.3314463287724031,0.3301822739854808,0.3312539346420191,0.3339650053692123,0.335738166461376,0.3401503998726773,0.3446761800219539,0.3470131261719796,0.3504333418302319,0.3494996150885296,0.3500332099819717,0.3467162032598274,0.3525660964230171,0.3519055509527755,0.3565217391304348,0.3575310559006211,0.0,2.086083141313825,60.63221525220376,188.038230173224,277.7188294583398,fqhc7_80Compliance_implementation,94 -100000,95639,44356,419.9751147544412,6298,64.55525465552756,4924,50.91019354029214,1941,19.939564403642866,77.26744378178137,79.68544310403982,63.28338998351626,65.07064286802832,77.01630832341341,79.43308094043084,63.18948394379681,64.97846880103327,0.2511354583679548,252.36216360897856,0.0939060397194495,92.17406699504238,152.27212,106.5839624756638,159215.5083177365,111444.03692600696,335.91196,216.63443966121133,350655.192965213,225938.7903064768,349.13201,169.0608252205123,361979.2553247106,174322.1200684229,3504.999,1617.819582638018,3627046.1422641394,1653814.0744236335,1185.93626,534.7844428703771,1222869.885716078,542026.4880126065,1901.1284,810.3520256759673,1954954.7360386453,819496.9724786143,0.38335,100000,0,692146,7237.068559897113,0,0.0,0,0.0,28565,298.06877947280924,0,0.0,32122,332.6885475590502,1656501,0,59468,0,0,6123,0,0,62,0.6482711027927938,0,0.0,3,0.031367956586748,0,0.0,0.06298,0.1642885091952523,0.3081930771673547,0.01941,0.3391555285540705,0.6608444714459295,24.2786345779456,4.29900958605424,0.3245329000812347,0.2341592201462226,0.2185215272136474,0.2227863525588952,11.225194903712866,5.884241480536603,20.92560083075529,12463.768994495997,56.45188887665295,14.036353994761214,17.998256724701527,12.141406313703788,12.275871843486428,0.5682372055239643,0.795316565481353,0.6921151439299124,0.6031598513011153,0.1148587055606198,0.729490022172949,0.9019607843137256,0.8575,0.7406015037593985,0.1447368421052631,0.5071408569028283,0.7247838616714697,0.6368948247078464,0.5580246913580247,0.1070195627157652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0046643682822956,0.0068835282651072,0.0092675392244532,0.0114650199900304,0.0139528251924878,0.0161306768358586,0.0182543976967605,0.0205216822257896,0.0224882489682645,0.0247269370801497,0.0268007560504581,0.0288453625216031,0.0310764443436955,0.0331127878531394,0.0352944825233384,0.0370159394322289,0.039099071046759,0.0412432258131624,0.0430267835732977,0.0575743324450018,0.0716073691597105,0.0855123600697288,0.0987796017647864,0.11110172712301,0.1262177043625582,0.1392659147390556,0.1510917868218293,0.1626481536947499,0.1726993469668327,0.1858335490551385,0.1985590465872156,0.2100582376313068,0.2202983571749099,0.2299874474223171,0.2398736632127223,0.2495199178277956,0.2589824403421882,0.2680500187399911,0.2760027971707305,0.284056695539395,0.2906033907824072,0.29748963883955,0.3036597072234221,0.3096402247682989,0.3153762591349002,0.3212285954077989,0.325809654750993,0.3299629255139872,0.3341178026046142,0.3330229168353713,0.3324144014996967,0.3317806478932881,0.3302236643875304,0.3292690197948962,0.3282257569243997,0.3258676832658247,0.3269474272746707,0.3278803538732696,0.3287127296141945,0.3294572915296902,0.3309638219292323,0.3320919859454228,0.3327730339093211,0.3328827306522474,0.3337086890483423,0.3327900726253788,0.3363702279247186,0.339922480620155,0.3430592749510372,0.3454143034997925,0.3463819691577698,0.3492357869156487,0.3517917825146741,0.3549919255248409,0.3549553894381481,0.3566760037348273,0.3605947955390334,0.3626780626780627,0.3725411481332798,0.0,2.19725549542234,59.42256716643502,192.56184536514812,260.0685724920122,fqhc7_80Compliance_implementation,95 -100000,95826,44279,417.0580009600735,6244,63.82401435935968,4868,50.06991839375535,1956,19.84847536159289,77.40182060844235,79.71573378090704,63.36325590393732,65.07576469806193,77.15299829952258,79.47421016138779,63.26973944495739,64.9891996414766,0.2488223089197703,241.52361951925627,0.0935164589799342,86.56505658532865,152.05938,106.50537647233736,158682.57049235073,111144.33397443008,336.75198,217.04937170968373,350679.6798363701,225763.6139478677,353.37012,171.12833284540258,365012.7940224991,175625.80682388993,3482.85707,1600.2930693967912,3579992.42376808,1615497.7227430872,1205.68041,538.1555965867843,1237937.4491265418,541425.5199974396,1924.02606,813.2000612667334,1954148.8948719555,801658.189420201,0.38135,100000,0,691179,7212.844113288669,0,0.0,0,0.0,28614,297.83148623546845,0,0.0,32376,334.136873082462,1660987,0,59662,0,0,6117,0,0,63,0.6574416129234237,0,0.0,1,0.0104355811575146,0,0.0,0.06244,0.1637341025304838,0.313260730301089,0.01956,0.3257020757020757,0.6742979242979243,24.538754221164528,4.364415612736178,0.3182004930156121,0.2378800328677074,0.2136400986031224,0.2302793755135579,11.268290825162303,5.908107962089551,20.777569476283663,12446.06827934706,55.32720295013582,13.949463661733956,17.54795134360583,11.60908847598395,12.220699468812088,0.5776499589153656,0.803972366148532,0.71078114912847,0.6028846153846154,0.1364852809991079,0.7351190476190477,0.9250585480093676,0.8543689320388349,0.77734375,0.1686746987951807,0.5175936435868331,0.7332421340629275,0.6587510993843447,0.5459183673469388,0.1272935779816513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430182871261,0.004945828983774,0.0071622773201314,0.0095980986623602,0.0118034586878945,0.0142513946007573,0.0164806604494725,0.0184017146356399,0.0204736643055001,0.0230292112751018,0.0251963015355597,0.0271587958163548,0.0292751120430903,0.0313944748195512,0.0332944828937732,0.0354113064054475,0.0373180679489037,0.0397482163597146,0.041944531006544,0.0438696919233971,0.0586505063990904,0.0723702782105032,0.0852843159858313,0.0981321174938017,0.10963882071646,0.1257631773529101,0.1375309897654313,0.148570638827169,0.1608069164265129,0.1715427383847365,0.1848672604449034,0.197384490678195,0.2086000239070667,0.2201068840777696,0.230138221484259,0.2406984984718961,0.2503430349951473,0.25908349732921,0.2677118903649585,0.2758636478102607,0.2831945408281286,0.2899714739992517,0.2975054114474291,0.3025385334515905,0.3077885631674219,0.3134173845528155,0.3184098900136388,0.3235645780864433,0.3283417891903085,0.3324629080118694,0.3316875639024915,0.3311655277667019,0.3315705083124701,0.3304686373467916,0.3294783975328411,0.3278172029854398,0.3265380299941529,0.3269347309802637,0.3271648104245194,0.327685729556387,0.3287410038321338,0.3294358893467674,0.3296905363896608,0.3313028538277885,0.3312164493865031,0.3336277897581127,0.3363236337828247,0.3399868598066514,0.343510649459658,0.3459009900990099,0.3491636661957066,0.3517039403620873,0.3539382482671707,0.3601430528077918,0.3601493233784414,0.3656091520226441,0.3690895179801071,0.3742119178360789,0.3697687224669603,0.3633217993079585,0.0,2.819700605761428,58.42303648967218,180.11592309711273,263.0119538148893,fqhc7_80Compliance_implementation,96 -100000,95690,43793,413.8885985996447,6230,63.904274218831645,4895,50.517295433169615,1879,19.260110774375587,77.32145341825886,79.71020527974869,63.3143933609397,65.08097222524297,77.08803542668075,79.47817826566116,63.227513032143385,64.99695391609718,0.2334179915781078,232.02701408753512,0.0868803287963118,84.01830914579023,150.47054,105.35085530631837,157247.92559306094,110095.99258680988,332.17862,212.9243688347727,346510.4817640297,221885.51902780493,339.76297,163.7658099292377,351146.98505590967,168096.3982237869,3498.96264,1578.1212962758195,3614945.009927892,1607667.991071039,1166.30118,517.6060399816796,1202712.8435573203,524894.9284944078,1842.5638,775.805883826957,1890606.3120493256,781849.4852831648,0.38077,100000,0,683957,7147.632981502769,0,0.0,0,0.0,28260,294.64938865085173,0,0.0,31210,322.1862263559411,1673651,0,59991,0,0,5887,0,0,54,0.5643222907304839,0,0.0,1,0.0104504127913052,0,0.0,0.0623,0.1636158310791291,0.3016051364365971,0.01879,0.3316506042527153,0.6683493957472847,24.754592699165617,4.447628006527285,0.3315628192032686,0.229826353421859,0.2204290091930541,0.2181818181818181,11.3715112954075,5.90141776630035,20.07307963354277,12409.362402239662,55.11639094177993,13.348503587770509,18.200812888119717,11.96767086304563,11.599403602844069,0.5599591419816139,0.792,0.678373382624769,0.5792400370713624,0.1161048689138576,0.7371794871794872,0.9252577319587628,0.8478802992518704,0.756198347107438,0.1751152073732718,0.4993145050726624,0.7218453188602443,0.6227495908346972,0.5280764635603346,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019251033476534,0.0044417401886218,0.0063748578853337,0.0086381235963049,0.0112424711053231,0.0136195094124358,0.0157969344360932,0.0179599754952011,0.0202516893446058,0.0223043380350891,0.0244212512046586,0.0264638830125901,0.0285255783810474,0.0303979556086804,0.0325557390586292,0.0345119933829611,0.036594713291349,0.0385756984515754,0.0407978618301319,0.0428660760812923,0.0576125669761758,0.0712543572243565,0.0844930000209894,0.0971682924519367,0.1091346458188263,0.1244536169762396,0.1374530324580211,0.1487240659481106,0.1598841558552589,0.1700630657685872,0.1834898952902141,0.1957651338009872,0.2077573173517223,0.2186279550601131,0.2289633777406189,0.2394751411803787,0.2492330689512845,0.2584978193426555,0.2673788301467419,0.2755891985982914,0.2832224856861951,0.2896617046902955,0.2964927025011541,0.3025711717111177,0.3088344288786557,0.3145112624539711,0.3193650475964124,0.3234557542936323,0.3284722491564208,0.3331092747090532,0.3325082730232183,0.3316296387892777,0.3311990768754485,0.3304837545126354,0.329761940143252,0.3286600781429556,0.3270427307126007,0.3271733600301981,0.3280476564366913,0.3295687701832325,0.3311490142480013,0.331911363905676,0.3323077567081083,0.3331990871257887,0.3346813990996846,0.3361050099361991,0.3363102905395735,0.3379815124459728,0.3411313586153521,0.3450427180607987,0.3477448747152619,0.3494296983264044,0.3500444783326979,0.3486224411266738,0.3522125567322239,0.3567321514135122,0.3526226210738047,0.3613393590797042,0.3650528658875904,0.3617681271810779,0.0,2.386374296183247,54.46450037714481,187.63603791037545,269.1389095342114,fqhc7_80Compliance_implementation,97 -100000,95699,43926,415.9709087869257,6292,64.43118527884305,4889,50.42894910082655,1954,19.9479618386817,77.3455376358958,79.73225838599421,63.32130932583449,65.08729850363949,77.09478721205072,79.48518900679107,63.2264873494688,64.99690350798589,0.2507504238450764,247.06937920313976,0.0948219763656936,90.39499565359677,151.38574,106.00404821369838,158189.00928954326,110767.76186547232,334.19811,214.93658466423145,348544.8332793446,223924.1696219098,347.51187,167.71963565883803,359485.5954607676,172438.73527770827,3484.52665,1593.960003791325,3595503.56848034,1620165.1918279554,1187.14472,527.8812488436465,1226772.024786048,538086.5273677228,1905.30596,814.4398744502738,1947281.3091045883,814737.1880834576,0.37877,100000,0,688117,7190.4095131610575,0,0.0,0,0.0,28536,297.4639233429817,0,0.0,31890,329.59592054253443,1665336,0,59706,0,0,6078,0,0,49,0.5120220691961254,0,0.0,0,0.0,0,0.0,0.06292,0.1661166407054413,0.310553083280356,0.01954,0.3414449818621523,0.6585550181378477,24.742265909969127,4.313090440378968,0.318470034771937,0.2401309061157701,0.2188586623031294,0.2225403968091634,11.17732167473002,5.948462905770032,20.997045538490813,12388.161588504452,55.34528283095908,13.999796039562586,17.610397836552966,11.807779482459992,11.927309472383527,0.5669871139292288,0.8015332197614992,0.689145793192036,0.577570093457944,0.1286764705882352,0.7273431448489543,0.918987341772152,0.8578431372549019,0.7228915662650602,0.1924686192468619,0.509449694274597,0.7419768934531451,0.6292428198433421,0.5334957369062119,0.110718492343934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721628385292,0.0047568335108271,0.0072186405401289,0.0092888066830626,0.011353463009685,0.0135974740272968,0.0156635597887051,0.0175341850229261,0.0198482493455497,0.0220681604063408,0.0239885134095687,0.0262014564353283,0.0281843710462161,0.0300988180984471,0.0320849544370943,0.0339722515145876,0.0360487279356923,0.0382256172871539,0.04027829776613,0.0421581294544242,0.0572980312287847,0.0710061648925592,0.0847144521532858,0.0973987709403148,0.1097654890129018,0.1249722319190124,0.1377967378731442,0.1495127017095382,0.1605606097860831,0.1711074373067674,0.1841398863746617,0.1969455727051177,0.2083015828089961,0.2182110653943797,0.2285456386772929,0.2395532063428742,0.249137728962261,0.2580710499960615,0.266196112252193,0.2742136780516848,0.2817320265219454,0.2896463022508038,0.2965188488425734,0.3031126866833539,0.3086305875499132,0.3136499575400293,0.3190135739819513,0.3228465465999441,0.3274853045668884,0.3312190756921781,0.3302889070957517,0.3298575858189501,0.3297529840149587,0.3294160057678442,0.3288436462778568,0.3261925862543165,0.3246899126692824,0.3250825896158966,0.3264447977026819,0.3277791683055029,0.3290074185369518,0.3303134230715857,0.3309437214875859,0.331331376196132,0.3334378315809781,0.3344839308595486,0.3353884797625164,0.3395555275749181,0.3428320449754041,0.3473270315354674,0.3504793929204344,0.353090601185436,0.3539251926571017,0.3562400666010747,0.3577541615724631,0.3594105666706601,0.3601668726823238,0.3609975470155355,0.3592206366630077,0.3629283489096573,0.0,2.473655647763326,56.26221316473912,181.7402807219328,272.28168573160065,fqhc7_80Compliance_implementation,98 -100000,95613,44256,419.6500475876711,6240,64.12307949755787,4864,50.32788428351793,1927,19.809021785740438,77.23812690061078,79.66974740302763,63.25655152000609,65.054421960233,77.00573475662692,79.43735082424543,63.17032149018405,64.97054191024604,0.2323921439838585,232.39657878220044,0.0862300298220404,83.8800499869592,151.70342,106.33114052231966,158664.0101241463,111209.9196995384,336.13938,215.67164822289072,351012.67610053025,225017.53759728355,346.75998,166.6843510939931,359189.8904960623,171757.99607296745,3518.7604,1575.4408610541286,3641866.8381914594,1609382.1980840778,1138.81586,496.3100209531951,1175161.8085406795,503175.9498741746,1902.79172,790.6244845932881,1957609.237237614,799060.2648697768,0.38213,100000,0,689561,7212.000460188468,0,0.0,0,0.0,28612,298.6623157938774,0,0.0,31790,329.03475468817004,1656861,0,59476,0,0,6098,0,0,53,0.5438590986581323,0,0.0,0,0.0,0,0.0,0.0624,0.1632952136707403,0.3088141025641026,0.01927,0.3339455157636976,0.6660544842363024,24.758692304614907,4.464268960191223,0.3231907894736842,0.2251233552631578,0.2146381578947368,0.237047697368421,10.9988591054543,5.549331073083137,20.41095858007664,12465.077701376546,54.82824430988366,12.996837859694294,17.90962205695803,11.47410225579746,12.447682137433882,0.5460526315789473,0.7698630136986301,0.7073791348600509,0.5584291187739464,0.1023417172593235,0.7261809447558046,0.9110512129380054,0.8798076923076923,0.7361702127659574,0.13215859030837,0.4838174273858921,0.6975138121546961,0.6453287197231834,0.5067985166872683,0.0950323974082073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0045946466787702,0.0067825521890991,0.009107264466422,0.0109102751994789,0.0130607088643703,0.0152379009638431,0.0174375842765496,0.0196285007057668,0.0219393033093318,0.0237318394484117,0.0258109593826741,0.0279430229925279,0.0300712349102605,0.0323226899087116,0.0342383544068042,0.0361171006800464,0.0382997288790551,0.0402006911770829,0.0422599860211352,0.0565672827632349,0.0704921983883306,0.0837395470017229,0.0963960738057123,0.1084885734803362,0.1239407677315481,0.1373782230390854,0.1495192615174707,0.1614684199826665,0.1719211558085826,0.1853090642296861,0.1980140060273616,0.2097825139470014,0.2206882950399369,0.2307115857219999,0.2413842842243082,0.2511604496392819,0.2602352039148034,0.269865817602911,0.2779570324610456,0.2852336144983698,0.2922290364568065,0.2983222193217684,0.3046530357121392,0.3099859867178456,0.3152879231710482,0.3200667720962924,0.3251795990761653,0.329596529058741,0.3340744858254585,0.3330767776607524,0.3316541301497481,0.3315120711562897,0.3303722810729346,0.3301861504095309,0.3294112225618654,0.3279847485900389,0.3294278557774702,0.3304164307407217,0.3319422553374409,0.3322379539565103,0.3346540930343133,0.3348391570188893,0.3363607822030857,0.3378974519682761,0.3392899130025864,0.3411899313501144,0.3433598183881952,0.3457454289732771,0.3484584291035904,0.3538110451848471,0.3571694006476615,0.3594467148695379,0.3608936849304658,0.3596589844481919,0.3588235294117647,0.3582291823520554,0.3550637958532695,0.3560709413369713,0.3623188405797101,0.0,2.1405545230254384,54.99296902322856,177.93060373469345,277.51818196073566,fqhc7_80Compliance_implementation,99 -100000,95714,43978,416.0624360072717,6231,63.89869820506927,4859,50.12850784629208,1888,19.349311490482062,77.33641368994157,79.71189386957127,63.332022412709286,65.08974424852174,77.09714288424799,79.47355480707546,63.24437602209915,65.00501373135813,0.2392708056935788,238.33906249581105,0.0876463906101321,84.73051716360658,150.74356,105.6789055049281,157493.74177236352,110411.12638164542,332.19442,213.1883463845048,346424.7027603067,222089.65854712288,349.10944,168.3563911265144,360605.5435986376,172773.49123533562,2769.63928,1272.032194780925,2860046.095659987,1295556.357899978,1148.9544,505.879392272008,1183818.030800092,512133.3924235769,1845.91886,770.714876862882,1894327.705455837,775069.9934194192,0.37896,100000,0,685198,7158.806444198341,0,0.0,0,0.0,28237,294.3247591783856,0,0.0,32006,330.2024782163529,1672180,0,59975,0,0,6027,0,0,55,0.5746285809808388,0,0.0,1,0.0104477923814697,0,0.0,0.06231,0.1644236858771374,0.3030011234151821,0.01888,0.3277362234773317,0.6722637765226683,24.68562659488431,4.413240683264001,0.3274336283185841,0.2354393908211566,0.2218563490430129,0.2152706318172463,11.012513309573247,5.5642640379657,20.133040277002586,12397.391354965206,55.271507986840966,13.519299238790712,18.203295836359136,12.100746471383545,11.44816644030756,0.5610207861699938,0.7674825174825175,0.6957888120678818,0.5723562152133581,0.1185468451242829,0.745425616547335,0.9280397022332506,0.844059405940594,0.74609375,0.1597938144329896,0.4966685174902832,0.680161943319838,0.645324347093513,0.5182481751824818,0.1091549295774647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0045943670828304,0.0069648205492664,0.0094926416781852,0.0119223218009623,0.014075326421282,0.0161433422735292,0.0184500714723299,0.0204982977722797,0.0225111327225264,0.0246222604916251,0.0266934970534485,0.0287524166015384,0.0307243869027387,0.0327513620604259,0.0347194228244803,0.0367482604373757,0.0386131629180844,0.0404294459399066,0.042634528447324,0.0573376772549756,0.0706647973382996,0.0835955197583689,0.0960620650505645,0.1083542382528406,0.1240395286159699,0.1371630288446249,0.1489843666914814,0.1599842011998548,0.1709611408123252,0.1841360383145886,0.1966562489861686,0.2082305510578877,0.2197802197802197,0.2305038563800567,0.2412355861184508,0.25091905621282,0.2588880399119062,0.2671533343157369,0.2748856358645928,0.2823155583800335,0.2883946293053123,0.2951284322409211,0.3016100863657025,0.3070721032020271,0.3127098734301775,0.3178490217146855,0.3223941657773034,0.3268022037712423,0.3320758698921043,0.331754001049897,0.3300878618448233,0.3306695981847138,0.3294857886743328,0.3292109414531059,0.3279646587823846,0.3271124359807823,0.3273645093396474,0.3282169746748802,0.3282599753187988,0.3293078553078178,0.3297203212152379,0.3302193083513123,0.331813814216442,0.3331088394467829,0.3350007816163827,0.3350325037944958,0.3373794847479058,0.3386226594731831,0.3422577422577422,0.346123727486296,0.346182917611489,0.3503992787223081,0.3536168891648556,0.355417661097852,0.360999878655503,0.3609034267912772,0.355601233299075,0.3636615044247787,0.3744745892243026,0.0,2.409245023752704,54.79783123928912,192.1892945199961,263.3411309888619,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95619,44224,418.4314832826112,6198,63.711187107164896,4821,49.92731570085444,1922,19.776404271117663,77.26635035352784,79.70475337822938,63.26822878755484,65.07228004853343,77.02131629919717,79.45960934714658,63.17596842436934,64.98265618737055,0.2450340543306737,245.14403108280192,0.0922603631855025,89.62386116287746,150.69824,105.57221776415186,157602.8195233165,110409.24686950487,336.0496,216.63518132983225,350967.86203578784,226082.20262691745,350.27404,168.9614407424707,363577.3224986666,174644.56850438868,2774.86764,1280.5561830435122,2874591.9116493585,1311815.2072741948,1123.85294,503.4574343479491,1164683.305619176,515872.3878823414,1880.8828,807.4529121759945,1936402.116734122,816279.4444755135,0.38052,100000,0,684992,7163.764523787114,0,0.0,0,0.0,28600,298.601742331545,0,0.0,32045,332.38163963229067,1662305,0,59680,0,0,6002,0,0,53,0.554283144563319,0,0.0,0,0.0,0,0.0,0.06198,0.162882371491643,0.3101000322684737,0.01922,0.3202152190622598,0.6797847809377402,24.619870171562813,4.334445252270346,0.3250362995229205,0.2329392242273387,0.2163451566065131,0.2256793196432275,10.955203211238224,5.658696710309063,20.761347612560368,12382.914778514334,54.984920166519046,13.550442427133172,17.69881017865519,11.597120095419417,12.138547465311268,0.5619166148102054,0.7943009795191451,0.6943203573707721,0.5810162991371045,0.1130514705882353,0.7095015576323987,0.928395061728395,0.8375,0.703862660944206,0.1463414634146341,0.5083404014701725,0.7186629526462396,0.6452442159383034,0.5456790123456791,0.1033254156769596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0046867867106264,0.0068144657601023,0.0090694647795672,0.0114309562101748,0.0135042856997258,0.015625,0.0178412678949143,0.0202690950017905,0.0224103126376948,0.0245704784777387,0.0266230829324452,0.0287211373158604,0.0306945189095558,0.0328874657852605,0.0349533851391202,0.0369614112915764,0.0392804470202114,0.0411128573956305,0.043220692532332,0.0575332726949576,0.0714510280648068,0.0851698565095905,0.0982651653201596,0.1104386493023648,0.1262274764038516,0.1390931893546467,0.150624,0.1619764292824953,0.1723222728444941,0.1850281571622758,0.1972939569374878,0.2088189799786497,0.2197324158183671,0.2299348523430007,0.239527401819392,0.2484330484330484,0.2569713487701595,0.2655083464960625,0.2738275513950073,0.2812029378373995,0.2876335269865067,0.2945748373872967,0.3001343473358444,0.3061787846728199,0.3109692869840015,0.3161351784997994,0.3213502905494954,0.3266435896438619,0.3303439349112426,0.3290566037735849,0.3288765267201851,0.3282913007316351,0.3286199667461866,0.3288859140264762,0.3272618646404608,0.3262574257425742,0.3263574939584737,0.3258455800585105,0.3268129429450927,0.32783772605933,0.3297178322856973,0.3303837908276935,0.3321007574738918,0.3325612816058676,0.3338212997333612,0.3346680776821211,0.3380192702574632,0.3407120197391611,0.3415169660678642,0.3448953477744265,0.3490736797274276,0.3516992137966016,0.3559927084915692,0.3562681125549219,0.3600706713780919,0.3661501063506533,0.3633808472194338,0.3720359771054783,0.3680060082613594,0.0,1.906840584943572,56.71393964267299,187.73073213403225,259.3810486036535,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95717,43856,415.5061274381772,6348,65.275760836633,4954,51.286605305222686,1993,20.55016350282604,77.34534288058313,79.7139156580278,63.32656324425341,65.0746344141712,77.09983596342114,79.46616226266673,63.23817175357417,64.98705385349302,0.2455069171619897,247.7533953610731,0.0883914906792355,87.58056067817677,150.25076,105.2043219198466,156973.95446994787,109911.8462967358,331.4765,212.8848347463688,345824.0646907028,221925.8384052664,343.6145,165.51812396744677,355763.60521119554,170391.00002919868,2856.8186,1297.124046043979,2960854.602630672,1331369.188382398,1185.1374,518.8789514838176,1227017.3114493769,530951.3212268834,1955.09178,807.8372385642336,2018308.6599036744,823534.8542177556,0.3803,100000,0,682958,7135.179748633994,0,0.0,0,0.0,28108,293.16631319410345,0,0.0,31598,326.9325198240647,1673572,0,60041,0,0,5983,0,0,57,0.5955055005902817,0,0.0,0,0.0,0,0.0,0.06348,0.1669208519589797,0.3139571518588532,0.01993,0.33003003003003,0.6699699699699699,24.581682667951625,4.402267035571439,0.326806620912394,0.2250706499798143,0.223253936213161,0.2248687928946306,11.216481398863554,5.8119919387284815,21.184588141831565,12404.46281254263,56.11258991164684,13.224969109323265,18.416830008539804,12.30766325630478,12.163127537478994,0.5641905530884134,0.7982062780269058,0.7059913526868438,0.5867992766726944,0.1014362657091561,0.7447956823438705,0.922077922077922,0.8568019093078759,0.8071428571428572,0.1220657276995305,0.5001367240907848,0.7328767123287672,0.6533333333333333,0.5121065375302664,0.0965593784683684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974238496435,0.0041148926681937,0.0063106205105312,0.0084704448507007,0.0107791494640932,0.01264521121168,0.0149128976687766,0.0170574604697692,0.0193609060985831,0.0214144598785968,0.0235376130235991,0.025569932224276,0.0276686346711649,0.0294944833056897,0.0316095809124776,0.0334708138224744,0.0356048053024026,0.0378157364936385,0.0396032397924702,0.0417765180329918,0.0563515602155478,0.0702960660575806,0.083728543249255,0.0967249850083637,0.1094768828209078,0.1254682440583268,0.1394482363306336,0.1509042111317017,0.1627822481539661,0.1732872892625798,0.1871027513843104,0.1990711169331702,0.2116372182087214,0.222606563478337,0.2333120443984407,0.243280389266357,0.2524271844660194,0.2615019460505298,0.269453806784008,0.276874978527502,0.2835910662857539,0.2902867563681423,0.29662320452448,0.3024905063670232,0.307936122411804,0.3133471339149293,0.3183154996558413,0.3223169910132069,0.3265359002927992,0.3309426635495502,0.3300117312333976,0.3288452792745614,0.3285260258492831,0.3271584374954738,0.3266081000595592,0.3257654783088912,0.3247411254314576,0.3265178864456843,0.3275368248772504,0.32887724364116,0.3284090059091929,0.3298359103818239,0.3303623734203699,0.3307733643813533,0.3305514014183028,0.330764609074998,0.3325366339450846,0.3356035402674032,0.3368505924419827,0.3393486089675096,0.342752796165259,0.3461927313361358,0.3476697988270165,0.3485416826150195,0.3528079282680509,0.3588249286393911,0.3624655013799448,0.3673965936739659,0.3692647871752349,0.3703558858036762,0.0,1.7807835325701402,57.61141120262053,185.91423560766395,274.6652080320736,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95652,43913,414.7534813699661,6279,64.27466231756785,4927,50.81963785388701,1973,20.166854848827,77.2498286400838,79.64879502762155,63.26585613190741,65.03912042897431,77.00102379059591,79.40426682273893,63.17354714211564,64.95186491192952,0.2488048494878967,244.52820488261293,0.0923089897917748,87.25551704479528,149.64378,104.83945803263632,156446.05444737172,109605.08722518748,333.05053,214.09081404630817,347534.56279011414,223167.36089816017,344.57305,166.62016354108923,356129.09296198725,171008.28698969792,2816.98936,1285.4219137836856,2908028.1018692763,1306907.348826088,1171.6554,513.454465212155,1206578.3987789068,518457.9885545028,1934.97008,807.1307047519055,1980415.4016643667,805199.0983527546,0.3805,100000,0,680199,7111.184293062351,0,0.0,0,0.0,28350,295.6969012670932,0,0.0,31675,327.15468573579227,1666910,0,59885,0,0,5801,0,0,60,0.6063647388449798,0,0.0,0,0.0,0,0.0,0.06279,0.1650197109067017,0.3142220098741838,0.01973,0.320127504553734,0.6798724954462659,24.656287033189088,4.405021415482305,0.3145930586563832,0.236046275624112,0.2238684798051552,0.2254921859143495,11.128891534647416,5.66048560397869,20.991258457254027,12466.67358247616,55.76087397831032,13.853437044816062,17.585137597476923,12.213657947500788,12.108641388516547,0.5553074893444286,0.7781599312123818,0.6929032258064516,0.57116953762466,0.1143114311431143,0.7168347556245152,0.9199029126213591,0.8423645320197044,0.728,0.0950226244343891,0.4980758658603628,0.7003994673768309,0.6398601398601399,0.5252051582649473,0.1191011235955056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00239069654362,0.0047359720912308,0.0069629825113427,0.0090225563909774,0.0113212153268708,0.0135253498462102,0.015948117632663,0.018073211824169,0.0204131724278993,0.0223676529326819,0.0245761234139886,0.0266974833076528,0.0288521891238359,0.0311472537439576,0.0333367747264092,0.0356500155134967,0.0377174712715139,0.0396698504983388,0.041386198358285,0.0433032688598091,0.0576772373439214,0.0716410095297937,0.0855400568867617,0.0983899821109123,0.1112506596306068,0.1268945808636748,0.1396089759247262,0.15167210179679,0.1628066196685886,0.1733250260497792,0.1863380843970177,0.1987333810484308,0.2104832729969032,0.2207330715742832,0.2307242345981502,0.2408,0.251063496328139,0.2603928116151303,0.2685175699211146,0.2765214193785622,0.2846440642531098,0.2913087922546382,0.2984173038277227,0.3041798553358447,0.3091217246046358,0.3143602939357201,0.320125091055236,0.3240100686147988,0.3283504484596386,0.3331125740095633,0.3321574828690751,0.3317226716735235,0.3305290840709216,0.3298518937580689,0.3293670319838962,0.3283034508166523,0.3263693903773854,0.3265201923710389,0.327910445202544,0.3282152466367713,0.3290786550698445,0.3306070591972049,0.3310847728323456,0.3316780514111091,0.3325758491478303,0.3324110568766151,0.3334851287889568,0.3362917895000941,0.3395301613976123,0.3416531090036109,0.3448792445977846,0.3454872120059184,0.3478370063414328,0.3521319449722581,0.3561039692221075,0.3565946392726414,0.3533547302460645,0.3512026090501426,0.3510462555066079,0.3534319302237391,0.0,2.7297823922004496,56.20376362870106,183.9966025598196,274.07866355979087,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95744,44025,415.744067513369,6312,64.66201537433155,4998,51.595922459893046,1979,20.283255347593585,77.32698317968122,79.68687077850396,63.31555014592704,65.06118317813089,77.08536676273306,79.44639850855783,63.226735201523695,64.97537423686003,0.2416164169481618,240.47226994612456,0.0888149444033459,85.80894127085514,150.37418,105.33651311223912,157057.9044117647,110018.2892702741,332.26352,213.6074357614921,346412.3913770054,222484.5185734856,348.83097,168.76180758129445,360430.4186163101,173243.60415086328,2866.94668,1327.492270177277,2958743.6079545454,1351383.935613679,1210.36966,537.3340955587636,1244218.7917780748,541887.0455867784,1938.90216,808.7277431818411,1987595.6509024063,812794.9559213656,0.38175,100000,0,683519,7138.9956550802135,0,0.0,0,0.0,28246,294.3578709893048,0,0.0,32148,331.9163602941176,1670437,0,59939,0,0,6107,0,0,56,0.5744485294117647,0,0.0,1,0.0104445187165775,0,0.0,0.06312,0.1653438113948919,0.3135297845373891,0.01979,0.3407093058502576,0.6592906941497424,24.20783046602395,4.389581337158441,0.3291316526610644,0.2396958783513405,0.2090836334533813,0.2220888355342136,11.43565110840018,6.002471459078024,21.09346439963274,12448.500046547497,57.14333918659796,14.476718463782566,18.718012107738637,11.655554027164367,12.293054587912412,0.5672268907563025,0.7879799666110183,0.6808510638297872,0.5961722488038278,0.1333333333333333,0.7489239598278336,0.9204301075268816,0.8648068669527897,0.7563025210084033,0.1466666666666666,0.4969478357380688,0.703956343792633,0.6081424936386769,0.5489467162329615,0.1299435028248587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021072893977002,0.0043398024781488,0.0067697866552991,0.0091433680104031,0.0114213068904144,0.013583829743903,0.0156116164294163,0.0180879080497315,0.0202976166142022,0.0223027399924258,0.0244847341935616,0.0268844246897358,0.0291206249678778,0.0312100992627373,0.0332157372449505,0.0350902571838932,0.037167023842801,0.0392705999502116,0.0411677891410991,0.0432640220018334,0.0577077657031307,0.0714509885971335,0.0847958734352393,0.0979732570851904,0.1106883103193844,0.1258894304473319,0.1392270818309082,0.1510928467246537,0.1625018704174771,0.1727180037563724,0.1851592391011478,0.1980008230630942,0.2091644087530876,0.2197045951859956,0.2293356816555671,0.2405182541617715,0.2499748696011526,0.2592930419017376,0.2687118097358199,0.2769190223556508,0.2844904432790377,0.2915739678227676,0.2974571049388567,0.3041448663178611,0.3092246883551231,0.3142818371349971,0.318963356559226,0.3238722498949004,0.3286482982171799,0.3326158437545393,0.3322378168691576,0.3315346071251583,0.3302286914004706,0.3297378580413817,0.3289563691520685,0.3275872645849947,0.3266810385822528,0.3278731619157151,0.328591457784769,0.3295576168391009,0.3310925943263739,0.332160575573696,0.3337115243197815,0.3343556222157552,0.3343847820852396,0.3343862580274631,0.3341884727210535,0.3362453648419332,0.3386848008973639,0.3415155594267163,0.3424135113048215,0.3434685877741286,0.3448384060244744,0.3457164518574678,0.3464419475655431,0.3475035327366934,0.3507462686567164,0.3571139854486661,0.3641890024868748,0.3601547388781431,0.0,2.273187552843841,61.48077595499212,188.35725773267157,266.3335611493427,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95757,43951,415.2594588385183,6362,65.19627807888718,5006,51.662019486826026,1944,19.88366385747256,77.39144353273707,79.73272650768776,63.36142006586866,65.08817946221293,77.15242835281704,79.49462661374874,63.27324643137608,65.0028216373814,0.239015179920031,238.0998939390224,0.0881736344925769,85.35782483153298,151.07092,105.7617124387124,157763.73528828178,110446.9857855703,337.37387,216.48853783671865,351686.75919253944,225455.3910023442,346.02236,167.09794136719697,358009.06461146445,171835.0964289397,2888.26872,1311.6286641194322,2982699.207368652,1337105.6789425153,1188.33522,521.4788085371428,1225606.2846580409,530241.8131847739,1912.7947,799.3118126351139,1959446.056162996,803427.7956069125,0.37898,100000,0,686686,7171.078876740081,0,0.0,0,0.0,28705,299.1008490240922,0,0.0,31765,328.3937466712616,1668020,0,59842,0,0,5857,0,0,59,0.6161429451632778,0,0.0,1,0.0104431007654792,0,0.0,0.06362,0.1678716554963322,0.3055642879597611,0.01944,0.3276224827171626,0.6723775172828373,24.76008730498948,4.458369251063721,0.3232121454254894,0.2263284059129045,0.2243308030363563,0.2261286456252497,11.07955322458458,5.541797887337522,20.696980479044843,12431.818066279198,56.50237137249326,13.543904992589054,18.30403402167338,12.3129882082674,12.341444149963412,0.5547343188174191,0.7740511915269197,0.6897404202719407,0.572573463935886,0.1245583038869257,0.7320463320463321,0.9309462915601024,0.8486997635933806,0.7258687258687259,0.1666666666666666,0.4928590676367556,0.6913746630727763,0.6334728033472803,0.5266203703703703,0.1142857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00247043576867,0.0051075731933479,0.0075688399180211,0.0095977087374696,0.0118453294831775,0.0140460874521618,0.0161300183411453,0.0184157365274348,0.0206866961558499,0.0227449455676516,0.0249385245901639,0.0271359980302035,0.0291304035100338,0.0312464621306464,0.0330591291439881,0.034966118502603,0.0370401034928848,0.0389433946609694,0.040903090340218,0.0428238088293506,0.0575538066509404,0.0714517394716191,0.0848867582112098,0.0979672531101132,0.1100016869807262,0.1256304786879699,0.1377002937464872,0.1490330404442269,0.1605390455647271,0.1708862116275081,0.1836607287013616,0.1960332652023921,0.2078121094216996,0.21854210589559,0.2283474953556628,0.2391400562083692,0.2492587556011324,0.2585449684934122,0.2672877917190883,0.2753452398659085,0.2826895961907403,0.2892906815020862,0.2955652790917691,0.3026869032930437,0.309054067171423,0.3139639362422303,0.3184994437291398,0.3239316565525489,0.3282896269641979,0.3331663524790065,0.3326297675544143,0.332014507088691,0.3305538760071431,0.3301284361350958,0.3296328684284634,0.3280267415593138,0.3269088096478351,0.3269073413412758,0.3281611936231094,0.3288969658096816,0.3311730880893068,0.3324572670684715,0.3338502158333682,0.3347512649442529,0.3364030858244937,0.3382983171318072,0.3387285213575357,0.3406794068570349,0.3437290999331198,0.3445010345376412,0.3472717301891966,0.3513989747970952,0.353880266075388,0.354653828519028,0.358338033464937,0.3594540534180492,0.365346981785338,0.3697394789579158,0.3689346706424505,0.3668303740083113,0.0,2.2276307837874443,56.80220498702793,190.25134490291887,275.5976778767887,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95726,44126,416.2401019576709,6346,65.06069406430855,5025,51.88767941833984,2042,20.94519775191693,77.37264048070351,79.73245490189917,63.34029949113111,65.08199663275717,77.11838054690574,79.47796399978998,63.24722156846497,64.99126623800028,0.2542599337977691,254.4909021091968,0.09307792266614,90.73039475688915,151.06168,105.80094183972813,157806.32221131146,110524.77053227766,336.50565,215.66017945126333,350897.3215218436,224663.1517732304,349.58601,169.1310605063708,361228.725738044,173642.05160913378,2896.87028,1323.8399059585197,2993212.544136389,1350304.7301609004,1210.84791,529.3609751301408,1249752.6272903914,538308.5151764728,1997.80272,831.8680812316687,2050818.5237030692,838800.4736774641,0.38118,100000,0,686644,7173.014645968702,0,0.0,0,0.0,28578,297.88145331466893,0,0.0,32141,331.80118254183816,1665512,0,59846,0,0,5873,0,0,55,0.5745565468106888,0,0.0,0,0.0,0,0.0,0.06346,0.1664830263917309,0.3217774976363063,0.02042,0.3331334332833583,0.6668665667166417,24.64336201924476,4.389416574458729,0.3287562189054726,0.2256716417910447,0.2157213930348258,0.2298507462686567,11.244514202071551,5.891748562755209,21.64904385458233,12473.9018289307,56.79480145250471,13.518019478186297,18.58399259062709,12.15666452474936,12.536124858941957,0.5456716417910448,0.7777777777777778,0.6713075060532687,0.5811808118081181,0.1047619047619047,0.7255496588324488,0.9166666666666666,0.8561484918793504,0.7180451127819549,0.1504424778761062,0.481651376146789,0.7032520325203252,0.6060606060606061,0.5366748166259169,0.0936490850376749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026227848101265,0.0047226698286258,0.0070097487243474,0.0091810204744881,0.0113676804034611,0.0137530157889914,0.0161462952203296,0.0183930102478259,0.0205258208283926,0.0227865982863986,0.0252937437201386,0.0274740505744294,0.0296960473820589,0.0316477857878475,0.0336118848653667,0.035604291118047,0.0377674938658881,0.0399730332417155,0.0418316548706596,0.0438373570520965,0.0581583536069664,0.0721677531417091,0.0861983999664475,0.0983236113300751,0.1110736309492436,0.1271314551509064,0.1396616641035159,0.1516286592957551,0.1623044476480324,0.1728682336793343,0.1856362872742545,0.1980266574346546,0.2093111773277943,0.220505249343832,0.230900409276944,0.2409266152618984,0.2511692805715242,0.2600319762205008,0.2682306163021868,0.2765098515952932,0.2841793256761764,0.2917144663217287,0.2984784566526046,0.3040937076197448,0.3097360197468416,0.3145235892691952,0.3196343601302279,0.3242692997747776,0.3286894372944558,0.3337554913523568,0.3331404035373453,0.3322373399001224,0.3303229260595131,0.3298679891846561,0.3288810221475212,0.3270333241362396,0.3255176999556709,0.3261869558074585,0.3263488380029348,0.3270615066638158,0.3277340757487995,0.3285852197726422,0.3300548277738249,0.3305515887183149,0.3325650629021415,0.3343563867141779,0.3342710198050749,0.3384080443567334,0.3405006642892105,0.343991483993061,0.3467295654540506,0.34764631043257,0.3522540724838995,0.3534423735260555,0.3553912392362411,0.3601845280340667,0.3628453671195237,0.3642785065590312,0.3574374484465218,0.3608247422680412,0.0,2.3616289715991554,57.81479261250581,186.97447344648933,279.2378415431463,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95748,43931,416.2489033713498,6242,64.06400133684254,4837,49.99582236704683,1961,20.157078999039143,77.33281654085012,79.69906522522004,63.319784280511655,65.07105055237109,77.08944226071574,79.45577678409644,63.229947406516175,64.98381239104744,0.2433742801343754,243.28844112359604,0.0898368739954804,87.23816132365414,150.711,105.61619014829589,157403.81000125327,110306.419087914,333.00039,214.44169724467497,347268.80979237164,223445.4297115824,344.38785,166.791961459261,356636.1908342733,171834.2229848942,2789.37252,1275.6428440541135,2885562.1005138485,1304636.2646563274,1179.8109,513.9697181435101,1220545.0975477295,525135.0818226074,1926.47322,802.1667255480115,1981950.8710364704,810837.1502197521,0.37845,100000,0,685050,7154.718636420604,0,0.0,0,0.0,28364,295.6719722605172,0,0.0,31557,326.49245937251953,1667486,0,59827,0,0,5951,0,0,52,0.5430922839119354,0,0.0,1,0.0104440823829218,0,0.0,0.06242,0.1649359228431761,0.3141621275232297,0.01961,0.3294585500152951,0.6705414499847048,24.518592765803987,4.402849491279508,0.3229274343601406,0.2222451933016332,0.2207980152987388,0.2340293570394873,11.061284509121146,5.697880075998395,20.738159935773574,12315.099733103165,54.60546237972005,12.797069166340036,17.605451846149514,11.85190480748923,12.35103655974126,0.5550961339673351,0.7748837209302326,0.704225352112676,0.5777153558052435,0.1192579505300353,0.7259083728278041,0.9194805194805196,0.865,0.7459016393442623,0.1561181434599156,0.4945393447213665,0.6942028985507246,0.648881239242685,0.5279126213592233,0.1094972067039106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.004117939407463,0.006406741801198,0.0085077403157113,0.0109062792495828,0.0130072522816166,0.0152153295464975,0.0173353751914241,0.0197848714750209,0.021851097162634,0.0235805532202833,0.025618909733132,0.0277100877057692,0.0295883582735146,0.0315820969439342,0.0334894105243573,0.0356059115341197,0.0377654164677556,0.0396793212090963,0.041650605798581,0.0560212976979694,0.0698800979304861,0.0829068791946308,0.0954478553406223,0.107988742608384,0.1232526171090197,0.1356164092991685,0.1473565445081906,0.1578919259567832,0.1683539959675689,0.181224023946422,0.193560601962545,0.2049542202213957,0.2161497337895899,0.2255158607945796,0.2361806263011029,0.2454801124949779,0.2554479963980189,0.2645142247349181,0.2730500515404879,0.2810853987474387,0.2884489298927551,0.2947483147930957,0.3002962305561219,0.3065506217559896,0.31242983159583,0.3180144295806403,0.3240601695130952,0.3287729799059427,0.3332320697397966,0.3330144701032039,0.3318924574276235,0.3307956916483393,0.330369020764648,0.3302132472209408,0.3283524904214559,0.3266275938539522,0.3264421419070921,0.3272652754533966,0.3287253398023617,0.3292941022231379,0.3300897907519481,0.3308962165332886,0.3320220826534945,0.3316725636026668,0.3329852772266889,0.3335713061853904,0.3366227378775459,0.3396737219604809,0.3427502785293649,0.3456412596987677,0.3479209923867327,0.3503686432667465,0.3548019162040909,0.3542252201611392,0.3579881656804733,0.3642595978062157,0.3625884732052578,0.3676227247655819,0.3697896749521988,0.0,1.9881823710769808,55.641149792902446,179.84100690218563,269.4757104758533,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95779,43796,414.5793963186085,6360,65.27526910909489,4958,51.18032136480857,1989,20.411572474133163,77.34910350822409,79.67846020695357,63.34642956891118,65.06692395806226,77.09110803251473,79.4208061555607,63.25135748382338,64.97454427639546,0.2579954757093645,257.6540513928762,0.0950720850877999,92.37968166679876,150.80714,105.56815386629012,157453.2413159461,110220.5638671213,333.83069,214.19667259549345,347974.1592624688,223067.87212008177,342.01106,165.2559732072198,352965.0236481901,169403.55145446138,2843.46404,1299.888701208662,2937444.1579051777,1325844.5507025695,1176.32271,515.2539792046018,1214942.4926132034,524747.1163233953,1950.71342,820.9561626288487,2003031.4578352247,827905.2537902674,0.37989,100000,0,685487,7156.965514361186,0,0.0,0,0.0,28467,296.60990404994834,0,0.0,31370,323.4529489762892,1670784,0,59999,0,0,5959,0,0,64,0.6682049300994999,0,0.0,2,0.0208814040656093,0,0.0,0.0636,0.1674168838347942,0.3127358490566038,0.01989,0.3364893297264803,0.6635106702735197,24.71546054868488,4.326790430603329,0.3138362242839855,0.235982250907624,0.2230738200887454,0.227107704719645,10.8345118254164,5.417702562461434,21.289356446581035,12378.95446155209,56.22641671371899,13.945112431975865,17.55274005097686,12.36646823733343,12.36209599343283,0.5475998386446148,0.7726495726495727,0.666452442159383,0.5795660036166366,0.1181172291296625,0.706646294881589,0.903846153846154,0.8261964735516373,0.7165354330708661,0.1611570247933884,0.4905453548917511,0.7002652519893899,0.6117342536669542,0.5387323943661971,0.1063348416289592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0045206215347814,0.0067971310020188,0.0088165686483631,0.0110729247163135,0.0130603851948369,0.0151348376444689,0.0172475378884523,0.0193013109360471,0.021382824169753,0.0235114535098143,0.0257565340530112,0.0277372412800855,0.0295709992177528,0.0318689362930581,0.0339609779274301,0.0358439999586097,0.0379917463345845,0.0395985079124281,0.0417261092772125,0.0565736469704243,0.0710176759753163,0.0838680590504948,0.0964026357550471,0.1090058380930301,0.1242087687966945,0.13716387378507,0.1493130874909616,0.1603051806007576,0.1705767665081201,0.1836936752725433,0.1963712249818885,0.2080103499635794,0.2190158556588299,0.2289784916662082,0.2397470401258154,0.2490625418508102,0.2580786615394994,0.267183280764256,0.2748663224063112,0.2828883438989403,0.2898930568881192,0.2968548396642952,0.3030179543111921,0.3098040644777279,0.3149086783331483,0.3194209649748926,0.3241691073475105,0.3283796926667963,0.3320425048240861,0.3314499163924699,0.3306463836412991,0.3303362552495842,0.3294498568991934,0.3290249736298673,0.3274291575450467,0.3257587745672057,0.3259563290100147,0.3264675240388721,0.3274718990689612,0.3281906118776245,0.3289950674511202,0.3297867875430202,0.3307756164322092,0.3322296072507553,0.3334207421004326,0.3349786208281918,0.3373314294780263,0.3402379434884215,0.3435784411941495,0.3465669175693042,0.3472890599935835,0.3498499457250494,0.3523391812865497,0.3570066730219256,0.3591106814886418,0.3544106167056987,0.3605442176870748,0.362541993281075,0.3716673298846001,0.0,2.2858845220311923,57.39764270466917,184.8929239397435,276.26876117999905,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95660,43888,415.0742212000836,6252,64.14384277650011,4872,50.282249634120845,1932,19.778381768764376,77.31532774038504,79.70679234496014,63.31028192710126,65.07633590079429,77.07023894014274,79.4641240212528,63.21951533732726,64.98911167202718,0.2450888002422999,242.6683237073348,0.0907665897739988,87.22422876711278,151.10326,105.8112022627842,157958.6661091365,110611.75231317604,334.57839,214.77816970858376,349076.0192347899,223840.58932147815,346.50996,167.51113066134351,357792.11791762494,171743.61002246954,2784.39028,1282.671258013541,2877173.280367969,1307323.2057312152,1123.54674,500.5590256311757,1159769.3602341623,508542.991891241,1889.3508,801.331418284297,1937457.7252770227,806155.1860275771,0.37911,100000,0,686833,7179.939368597115,0,0.0,0,0.0,28499,297.2297721095547,0,0.0,31820,328.35040769391594,1665581,0,59786,0,0,5913,0,0,50,0.5122308174785699,0,0.0,3,0.0313610704578716,0,0.0,0.06252,0.1649125583603703,0.3090211132437619,0.01932,0.3190774400488773,0.6809225599511226,24.70300925226165,4.362308219696382,0.3183497536945813,0.2411740558292282,0.223727422003284,0.2167487684729064,11.458653675382967,6.004390680147526,20.769703230633723,12376.955200401057,55.39421039678134,13.958528003679978,17.63450592657776,12.081230496361792,11.719945970161804,0.5574712643678161,0.7940425531914893,0.6892327530625403,0.5596330275229358,0.0984848484848484,0.7170245398773006,0.9312039312039312,0.8557457212713936,0.6964980544747081,0.1168831168831168,0.4991591928251121,0.7213541666666666,0.6295971978984238,0.517406962785114,0.0933333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0049879356840163,0.007438754592137,0.0096620811574177,0.0119120279947916,0.0141278329513623,0.0162580066092774,0.0183238853991113,0.0204530347190264,0.0223853849856123,0.0246551458899543,0.0266461222393425,0.0287948150815287,0.0306549336410848,0.0328034682080924,0.034863998345227,0.0370312807601048,0.0392116161039554,0.0410559930099753,0.0430029078553784,0.057443762994849,0.0709678770364786,0.0841414777497901,0.0964707367889387,0.1083579569438581,0.1240473367770344,0.137167671791387,0.1491457907293797,0.1608490263557275,0.1717183642803477,0.1846155504300403,0.1968098930133841,0.2079858918813002,0.2187421342350919,0.2283716063659893,0.2388975155279503,0.2486122435303184,0.2583531212370159,0.2664706349837081,0.2751770936017056,0.2830042272279808,0.2897546356995692,0.2964392710393255,0.3018707176884217,0.3073389478289401,0.3117379458286587,0.3168663986876542,0.322041662955092,0.3257514952230536,0.3309131232590989,0.3303696519021446,0.32961524690848,0.3293330516233537,0.3279233929294682,0.3270140066018378,0.325191915786893,0.3238446558903155,0.3241980691373404,0.3245673913785453,0.3256328380041743,0.3262817275498943,0.3277448657187993,0.3296016771488469,0.3299093655589123,0.3321860935281234,0.3335158817086528,0.3355537766596146,0.3385652352773646,0.3411427965652496,0.3445075606048484,0.3466898954703832,0.3482324041439709,0.3511455226248651,0.3548013883532587,0.3543074726320799,0.3549197988987311,0.3570774862721171,0.3632367632367632,0.3634361233480176,0.3603500761035008,0.0,2.4061727845743106,57.04851307827242,184.8545883711115,265.40467195874203,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95625,43766,414.3581699346405,6159,63.26797385620915,4739,48.9516339869281,1878,19.21045751633987,77.3146043072854,79.73369043505377,63.296484254502126,65.08284211092464,77.08179223623942,79.50393376699266,63.20978114620413,65.00015501838716,0.2328120710459842,229.75666806111408,0.0867031082979963,82.68709253748341,151.78372,106.29077767283758,158727.61307189544,111153.32798617268,329.60268,212.07733445443824,344059.5450980392,221158.6284099014,342.41812,165.28282337882965,354820.1725490196,170273.17527267017,2703.19896,1245.2619591432117,2793180.946405229,1268614.0033915944,1088.32597,481.2932529808906,1124247.8535947711,489481.5656706612,1841.1273,776.8055394373555,1885742.6196078432,778513.1888278709,0.37898,100000,0,689926,7214.891503267974,0,0.0,0,0.0,28029,292.4549019607843,0,0.0,31455,325.5947712418301,1664696,0,59627,0,0,6024,0,0,50,0.5228758169934641,0,0.0,1,0.0104575163398692,0,0.0,0.06159,0.1625151723046071,0.3049196298100341,0.01878,0.3328658251519401,0.6671341748480598,24.79429511449466,4.42237836767221,0.3203207427727368,0.2276851656467609,0.2346486600548639,0.2173454315256383,11.21884477280159,5.646490174366568,20.133718876058158,12371.900164387012,54.19527349096693,13.106024369278074,17.250972895060407,12.409633371821489,11.428642854806942,0.5496940282760076,0.7868396663577386,0.6785243741765481,0.5485611510791367,0.1126213592233009,0.7265745007680492,0.9317073170731708,0.8713592233009708,0.6966292134831461,0.0892018779342723,0.4826883910386965,0.6980568011958147,0.6066907775768535,0.5017751479289941,0.1187270501835985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0045532445670361,0.0068217809721037,0.0090636589950718,0.0112508138020833,0.0135567325320839,0.0158505115206903,0.0177239758913065,0.0196786368145973,0.0216485238246408,0.0235797290228617,0.0257116149112985,0.028095840663354,0.0300666659797426,0.0321957966885503,0.0342146350542326,0.0363999958553947,0.0385386060901795,0.0405780815931579,0.0424801835627868,0.0573214453700703,0.0712968782736224,0.084428062880005,0.0972346495152478,0.1095453729799339,0.1253401666684314,0.1382138001359619,0.1506393861892583,0.1619869717292943,0.1718459638004189,0.1844504137134966,0.1975592309192985,0.2092131354731864,0.2197975548836598,0.2300807900450793,0.2405504383531239,0.2503743435020673,0.2593936252915263,0.2672748755936285,0.2751272994174045,0.282305403434023,0.2896519450131617,0.2958443310805213,0.3018028817338352,0.3073542089095567,0.3122389898367724,0.3158842733310818,0.3202914399064137,0.3252073547869518,0.3298422413338258,0.3297836535225299,0.3286484405082788,0.3278529163144548,0.3272561663244946,0.3268529949872822,0.3256002943972523,0.3234160653397827,0.3245053823616552,0.3256101116465725,0.3260208281143757,0.3273146153702073,0.3293204342600437,0.3297437181734702,0.3308951429463449,0.3315309711223294,0.3324357214986665,0.3336921115989236,0.3383233532934132,0.3401289423244468,0.3441504672528686,0.3466624543033804,0.3488751909804541,0.3506011204129162,0.3541413834951456,0.3556971514242878,0.3523513965146813,0.3493788819875776,0.3574051407588739,0.3549890350877193,0.359907120743034,0.0,2.33065057993193,57.33178441039138,181.269866261865,252.41043372025004,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95630,43787,413.7613719544077,6317,64.78092648750392,4988,51.41691937676462,2042,20.851197323015796,77.29129418892526,79.69267999641305,63.29829466637945,65.07044954124089,77.03557634210206,79.44202826277122,63.20191537493416,64.97997751322819,0.2557178468232024,250.65173364183124,0.0963792914452881,90.47202801269805,150.88898,105.74727333114129,157784.14723413155,110579.6019357328,334.11837,214.0133615208088,348654.1775593433,223060.7356695689,340.77473,163.97176006423268,352471.630241556,168440.11838554652,2863.4518,1317.7733003320857,2952815.518142842,1336504.2145059975,1175.55373,521.8265125343158,1210803.2521175365,527202.690091306,2009.79198,854.7282540147579,2053681.1042559864,851781.5734963923,0.38019,100000,0,685859,7172.006692460525,0,0.0,0,0.0,28407,296.2773188330022,0,0.0,31332,323.6641221374046,1667555,0,59814,0,0,5934,0,0,62,0.6483321133535501,0,0.0,0,0.0,0,0.0,0.06317,0.1661537652226518,0.3232547095140098,0.02042,0.327297419646899,0.6727025803531009,24.629108776583717,4.357145158201585,0.3227746591820369,0.2303528468323977,0.2141138732959102,0.2327586206896551,10.962501311708204,5.616089187254337,21.98236069222976,12425.019782587391,56.75731821387326,13.73008960054597,18.0202243508766,11.95883271316949,13.04817154928121,0.5483159582999199,0.7885117493472585,0.6801242236024845,0.5608614232209738,0.1162790697674418,0.6979560938682816,0.9250645994832042,0.8393285371702638,0.7142857142857143,0.1433823529411764,0.494409599127352,0.7191601049868767,0.6244761106454317,0.5151883353584447,0.107986501687289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0044915340160194,0.006820742364727,0.0089523422416421,0.0113339234298853,0.0134949330345775,0.0158757672777698,0.0182571936201931,0.0202130705054801,0.0224336002293531,0.0245508245139059,0.0269301480028347,0.0290937522504449,0.0313469286811001,0.033407664354146,0.0355185039614406,0.0374646340073167,0.0392079495779123,0.0412786281385596,0.0431962965666086,0.0573775631780272,0.0711329946047876,0.0846014093233777,0.0973239851776991,0.109589908692669,0.1251548159674807,0.1377337056344159,0.1507478268280211,0.1625037423549035,0.1725041338286769,0.185215937887529,0.1979423868312757,0.2090881379550601,0.2191219789967038,0.2299848984226016,0.2412729753413717,0.2503603875423246,0.2584927542759342,0.267299525355983,0.2759438828141118,0.2829389153892465,0.2895325024866889,0.2961558964638986,0.30157187425006,0.3080554879532733,0.3135819236942832,0.3192308174444987,0.3241772248706248,0.3277374156720291,0.3316424259237242,0.3311222563770695,0.331936537692806,0.3314838345333898,0.3302392261353105,0.3294308652456916,0.3273300038417211,0.3256810821108782,0.3265282583621684,0.3273354145939826,0.3286964004015488,0.3288194248528278,0.3289518098604134,0.3304783349817967,0.3305126593643383,0.3314393027399239,0.3326200417536534,0.3329254759126995,0.3373259140494828,0.3401267159450897,0.341089286425754,0.34224696541024,0.343014920618064,0.3467400240308607,0.3544644229291532,0.3579297245963913,0.3602215266072718,0.3688307644402927,0.3667288944202447,0.3696443573228787,0.3733590733590733,0.0,2.8899789570882515,57.39610617259054,191.07966764573527,272.25416363940064,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95630,44140,418.1637561434696,6305,64.64498588309108,4940,51.06138241137719,1971,20.21332217923246,77.27514686010801,79.68562853327883,63.27600815666828,65.0562104946175,77.03098967264049,79.44323850320157,63.185966328133645,64.96922389245712,0.2441571874675219,242.3900300772601,0.0900418285346376,86.98660216037979,150.23096,105.21221577868192,157095.59761581093,110019.66746065236,332.07043,213.85210757069495,346657.24145142734,223037.53423918743,355.91017,172.09884891896016,368484.15769110114,177122.40867697238,2814.98928,1303.5734108091062,2910937.613719544,1330527.6925746172,1176.8998,527.4992845572592,1211158.7472550457,532292.5968182988,1922.35848,809.7022877888774,1972678.991948133,814173.5314885873,0.38,100000,0,682868,7140.708982536861,0,0.0,0,0.0,28157,293.80947401443063,0,0.0,32649,337.67646136149745,1665150,0,59793,0,0,5931,0,0,60,0.6274181742131131,0,0.0,1,0.0104569695702185,0,0.0,0.06305,0.1659210526315789,0.312609040444092,0.01971,0.328340142230292,0.6716598577697079,24.63363023336758,4.309478410675146,0.3305668016194332,0.2289473684210526,0.2228744939271255,0.2176113360323886,11.498494583084188,6.11387921127996,21.11871843595851,12391.188407272566,56.27424797883703,13.52098358781964,18.429851030614014,12.391685907967076,11.931727452436288,0.569838056680162,0.7931034482758621,0.6907532149418248,0.5967302452316077,0.1237209302325581,0.7361516034985423,0.9243902439024392,0.8502202643171806,0.7683823529411765,0.1525423728813559,0.5058856502242153,0.7184466019417476,0.6293469041560644,0.5404101326899879,0.1156138259833134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0045609803067005,0.00674750139516,0.0092229558151345,0.0116661072630925,0.0138911520286785,0.0162540278174328,0.0182336065992179,0.0202733787942298,0.0224442988204456,0.0244735519473192,0.0266894043681042,0.0288077698670727,0.0305719616149746,0.0325478614650668,0.0343760991455113,0.0361944050000518,0.0382905805379582,0.0403442319299048,0.0423909983001887,0.0573480073997428,0.0716718185152197,0.0854114582239122,0.0977834899498546,0.1099468697516715,0.1250701659623592,0.138319465255417,0.150497857188546,0.1613279535944005,0.1724041572176305,0.1848437415663626,0.1968640548248229,0.2087870167522262,0.2195175438596491,0.2291726436122084,0.2395588039276669,0.2490235358633733,0.2585817779683586,0.2672774869109948,0.2756078233206619,0.2831488828565462,0.2899696262504251,0.296022969958711,0.3021247462675811,0.3078907029368111,0.3127900088853786,0.3178273190059433,0.3217579617834395,0.3266227950624976,0.3311108465293487,0.3307549003725903,0.3297523168578994,0.3289540528335967,0.3280275514781426,0.3273238430987549,0.3257036855338198,0.3250296935624356,0.325262016624503,0.3262523887523887,0.3262040670709953,0.3266868000975408,0.3285361273104675,0.3290775681341719,0.3299991049051199,0.3321382164685499,0.333324646896336,0.3336277638477319,0.3368374669520332,0.340317080887264,0.3424461575141063,0.3422919508867667,0.3457729982964225,0.3466549184970734,0.3510767364270549,0.3538838612368024,0.3566818073153239,0.3609531129900077,0.3639518269034497,0.3733075435203095,0.372737774355025,0.0,2.31322506988726,60.394599379689225,182.23332578598536,267.1947091065324,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95699,44276,418.1025925035789,6252,64.35803926895788,4908,50.84692630017032,1998,20.60627592764815,77.28391542799022,79.68266432517326,63.28504443165552,65.06011324105917,77.03498053500958,79.4303429864254,63.19351232303482,64.96902734149899,0.2489348929806425,252.321338747862,0.0915321086206972,91.0858995601842,151.184,105.89272313154748,157978.6622639735,110651.8596135252,333.6667,214.4116375884885,348232.1236376556,223617.3811518286,349.56419,168.52166580841669,362690.2579964263,174023.51963132876,2806.04032,1288.2914361666285,2909651.4697123272,1323690.4002827911,1161.30364,520.1739300779304,1203277.777197254,533335.5006113189,1961.46614,825.1243555899524,2025296.607070084,841460.1313122653,0.38092,100000,0,687200,7180.848284726068,0,0.0,0,0.0,28386,296.168194025016,0,0.0,32053,332.3127723382689,1663394,0,59747,0,0,5925,0,0,44,0.4597749192781534,0,0.0,0,0.0,0,0.0,0.06252,0.1641289509608316,0.31957773512476,0.01998,0.3323668548756295,0.6676331451243706,24.702446082772354,4.336600344520804,0.3111246943765281,0.2328850855745721,0.2286063569682151,0.2273838630806846,11.08936923117268,5.749542425424076,21.44807385534928,12469.25018068798,55.97998753200363,13.5410358060455,17.380341878270386,12.54843011937159,12.510179728316157,0.5548084759576202,0.7672790901137357,0.704649639816634,0.5704099821746881,0.1164874551971326,0.7222653219550039,0.9270833333333334,0.8668407310704961,0.7159090909090909,0.2093023255813953,0.4951644100580271,0.686429512516469,0.6503496503496503,0.5256410256410257,0.0885780885780885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022395168318437,0.0045439792275235,0.0064062864858828,0.0087499110781394,0.01101919965813,0.0134055904164289,0.0154622877250242,0.0176492217183478,0.0197698798261314,0.0219426745067508,0.0241910663356382,0.0262730672804241,0.0284211934431627,0.0304741685818226,0.0327425498312292,0.0349745085264583,0.0373950885918557,0.0394648065684717,0.0415535515544876,0.0436767234641238,0.0580659313111055,0.0723378417989196,0.0863442225556966,0.0991045969634158,0.1113913630799105,0.1273906923085064,0.140084513621982,0.1518678650536718,0.1629077771602035,0.1730399785350147,0.1862645771809187,0.198249528802617,0.2099320587082444,0.2202558261783774,0.2301647655259822,0.240808986768493,0.2511180179777291,0.2597488955008565,0.2689344001454744,0.2767331673683848,0.2845499234800352,0.2912352699771355,0.2984019267045522,0.3043697539536726,0.3098931067228323,0.315772582516602,0.3201238234888646,0.3247631418092909,0.3297949555434585,0.3335269424716847,0.3324349454903176,0.3305970663177467,0.3304159091229405,0.3296480959606908,0.3286992245061995,0.3274242563771986,0.3260614330138985,0.3268267034718456,0.3275924055400523,0.3286432880439647,0.329570469041034,0.330411797440178,0.3310748058088483,0.3319513294276701,0.3344173967914958,0.3348981143951116,0.3355994172926961,0.3386989868383676,0.340110256680361,0.3446542374223172,0.3481899217755139,0.3493535396354387,0.3525364358541314,0.3534761367906802,0.3543644146659222,0.3558145009416196,0.3627092846270928,0.3643536313979365,0.367935086737549,0.3695400077309625,0.0,1.6961741195300792,57.35110331930004,191.16367032883784,266.93576909726545,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95666,43817,413.3757029665712,6245,64.12936675516903,4872,50.43589153931386,1929,19.829406476700186,77.35161970545354,79.75716116536832,63.31721993396855,65.09412809087999,77.11007441269832,79.51486129912195,63.22817304211486,65.00676118715192,0.2415452927552195,242.2998662463698,0.089046891853691,87.36690372806777,151.2764,105.9736457214573,158129.7430644116,110774.6176504268,333.06868,214.6485525431348,347664.7398239709,223879.84203328547,350.16223,169.21551883961496,363268.4025672653,174722.9103118581,2800.56948,1280.051463699479,2900592.645244915,1311193.899151182,1155.44687,509.2979226405207,1193215.8028975811,517899.47742455057,1889.9974,786.6550304831939,1944539.8156084712,796202.512360817,0.37883,100000,0,687620,7187.715593836892,0,0.0,0,0.0,28380,296.1449208705287,0,0.0,32095,332.6678234691531,1663977,0,59636,0,0,5892,0,0,61,0.6376351054711182,0,0.0,1,0.0104530345159199,0,0.0,0.06245,0.1648496687168386,0.3088871096877502,0.01929,0.3285561823448696,0.6714438176551304,24.942199603900136,4.407000667810927,0.3238916256157635,0.2339901477832512,0.223111658456486,0.2190065681444991,11.283039137280602,5.854692630531711,20.521517656200725,12380.24739383477,55.04832396049226,13.503877893376426,17.832570092980564,12.095464089949392,11.616411884185885,0.5613711001642037,0.7885964912280702,0.6888466413181242,0.5722171113155474,0.1190253045923149,0.7348193697156034,0.9228855721393034,0.8405797101449275,0.7272727272727273,0.1761904761904762,0.4981797815737888,0.7154471544715447,0.6348797250859106,0.5197044334975369,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0044313745373421,0.0065358150486126,0.0086665853856782,0.0110264573945417,0.0133122835608066,0.0155407127925355,0.0176654991779926,0.0199591002044989,0.0224316296220424,0.0245296181545848,0.0267587397496763,0.0292362154485767,0.0314745512840338,0.0335588493518566,0.0355480146495892,0.0374976680554691,0.0396549397390248,0.0416874739908447,0.0437815406431163,0.058459673796065,0.0722945807856604,0.0856738035264483,0.0983344380964405,0.1102715366674757,0.1254696910359135,0.1379760678678742,0.149918997271487,0.1616740842177336,0.1720875793271553,0.184422782462421,0.196628787468449,0.2080421483465047,0.2178172305469511,0.2280891081476913,0.2379136411507122,0.2478101537361458,0.2567260283224891,0.2653089026633063,0.2731041432857699,0.2807796865058707,0.2872538133364502,0.2938664963572712,0.3005401003556758,0.3062936214116647,0.3116251585025053,0.3168790604697651,0.3214027155068396,0.3257749008359497,0.3306473910810917,0.3306260757314974,0.3299950544015826,0.329515232533596,0.3288786260643671,0.327776623222397,0.3270113184460079,0.3259687717301978,0.3267187090002624,0.3277678190354247,0.3284541235273117,0.3292140941736831,0.3317861304785794,0.3316846208659932,0.3321729039744706,0.332758166175378,0.3341465946843854,0.3355199636508207,0.3385570112204601,0.3404813545092003,0.3439492968904734,0.3460996774340102,0.3496238623809774,0.3513834238960714,0.3570780399274047,0.3563690698543145,0.3611904761904762,0.3576372865712967,0.3553083923154702,0.351049332243118,0.3496240601503759,0.0,1.8619773067808691,57.56292748163512,173.95690346114569,276.1300922169817,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95786,44335,419.23663165807113,6351,64.98862046645648,4953,51.0826216774894,1974,20.13864239032844,77.3507064425629,79.67836929662188,63.34838135415546,65.0697534020296,77.09283151133467,79.42420416071951,63.25117321101634,64.97690204562457,0.2578749312282298,254.1651359023689,0.0972081431391203,92.85135640503484,151.15232,105.981191594009,157802.10051573298,110643.71786483304,337.20154,216.46153369317167,351389.8168834694,225337.9864418304,351.01049,169.23841490845803,362936.9636481323,173935.29123975686,2841.03544,1311.5635587722031,2932310.0244294573,1335550.7055020595,1191.51184,533.7460703756624,1229597.080993047,542895.5246070366,1943.74702,836.3726013447857,1986085.4195811497,836799.8078215212,0.38217,100000,0,687056,7172.822750715136,0,0.0,0,0.0,28573,297.64266176685527,0,0.0,32206,332.6790971540726,1667064,0,59797,0,0,5959,0,0,65,0.678596036999144,0,0.0,0,0.0,0,0.0,0.06351,0.1661825889002276,0.3108171941426547,0.01974,0.3311785929043896,0.6688214070956103,24.725134684361656,4.343501116176959,0.3276801938219261,0.2289521502119927,0.2125984251968504,0.2307692307692307,11.10785619849995,5.76228088031086,21.415001821336677,12486.03892325347,56.555571462784165,13.597609059877229,18.30175119607201,11.886502927575297,12.769708279259644,0.5509792045225116,0.7821869488536155,0.6900800985828712,0.5669515669515669,0.1093613298337707,0.6829085457271364,0.9054726368159204,0.8447368421052631,0.690566037735849,0.1498257839721254,0.5023487151146726,0.7144808743169399,0.6427996781979083,0.5253807106598984,0.0957943925233644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.0045316301703163,0.0066364272885019,0.0090809361287177,0.0114588417114039,0.013804758365826,0.016071501365619,0.0180832933636762,0.0202847011455491,0.0226054031927957,0.0245916757177695,0.0268012887602864,0.0287032659856535,0.030768755661698,0.0328325273002877,0.0347834171840618,0.0365261839967716,0.0386577097717235,0.0407302787355128,0.0427264114603396,0.0575787298870964,0.0716996915355257,0.0848402889161451,0.0980936166635138,0.110539629005059,0.1258707992853896,0.1389604742663824,0.1515406311532116,0.1624137857402148,0.1726193028341122,0.1859511249865432,0.1978510199007664,0.2099326233427515,0.2200780217018347,0.2303158265153514,0.242099322799097,0.2516134785371128,0.2607137239039079,0.2696431809938339,0.2777459888764276,0.2851993484062525,0.292512238150316,0.2991730061640027,0.3057811638994705,0.3117502792482152,0.3167543459780452,0.3217439155556667,0.3257207562533398,0.3297839266283227,0.3337203013073361,0.332238701515437,0.3313146050403975,0.3307587140058352,0.3301497720859561,0.329406690167031,0.327085314599503,0.324762463715242,0.3254063668253157,0.3273309803652811,0.3281482144455384,0.3299533448716984,0.3309600777423001,0.331670980367401,0.3324482448244824,0.3352553740741634,0.3364855660921045,0.3376154154957848,0.3405246150921878,0.3448141730612822,0.3491993945670357,0.3522643931059773,0.3544766099146033,0.3565344520722095,0.3586621454993834,0.3597993754140248,0.3646819216484964,0.3670708955223881,0.3715234537152345,0.3699943598420755,0.3709361535448492,0.0,2.3440809742214603,58.46402993914768,192.9927805742479,264.5191211415405,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95741,44240,417.7520602458717,6215,63.74489508152202,4863,50.27104375345986,1895,19.448303234768805,77.31652017658898,79.67739107840734,63.31665033110207,65.06237752554127,77.08871732900548,79.45039220230021,63.23251423169191,64.98097279858253,0.2278028475835043,226.99887610713176,0.0841360994101592,81.40472695873768,150.0334,105.20518248502238,156707.5756467971,109885.19284843732,335.75842,216.071163710768,350187.2447540761,225175.74885448028,351.9409,169.93904465347498,364451.9798205575,175062.9787399958,2789.01396,1271.660638375536,2884783.0292142346,1300172.9682440236,1158.71192,509.2810868180727,1195457.4111404726,517226.2240528987,1858.36636,768.7202561876771,1909310.9117306063,775624.742333564,0.38149,100000,0,681970,7123.071620308959,0,0.0,0,0.0,28551,297.6781107362572,0,0.0,32269,333.8486124022101,1667448,0,59850,0,0,6064,0,0,70,0.7311392193522106,0,0.0,1,0.0104448459907458,0,0.0,0.06215,0.1629138378463393,0.3049074818986323,0.01895,0.3280839895013123,0.6719160104986877,24.653950806338475,4.383388692965069,0.3253135924326547,0.229487970388649,0.2224964013983138,0.2227020357803824,11.3513024631055,5.905810625353926,20.01019325855181,12443.900671389036,55.05057957564015,13.409152685106031,17.957926293842487,12.05840293113419,11.625097665557451,0.5628213037219824,0.7876344086021505,0.6915297092288243,0.5868761552680222,0.1191135734072022,0.7544677544677545,0.9185185185185184,0.8875598086124402,0.7613636363636364,0.135,0.4938478747203579,0.7130801687763713,0.6211340206185567,0.530562347188264,0.1155152887882219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0047546152208513,0.0070134483633595,0.0093174959610636,0.0116475423177083,0.0140244026643309,0.0160831387106972,0.0185247592496144,0.0208280078935798,0.0228820066547222,0.0250902304979082,0.0271080625949809,0.0291425868416181,0.0311595769876329,0.0331215315742784,0.0350674174717156,0.0371405502763803,0.0394680884168162,0.041485623999501,0.0434637663041213,0.0579643569318146,0.071625142570134,0.0847368752228537,0.0970482770224087,0.1089776034417309,0.124516129032258,0.1377909320433666,0.1495710119009601,0.160941890404812,0.1714138585819574,0.1840214569622025,0.1967232628856496,0.2084389103365777,0.2192143271049495,0.2289453696874965,0.2395323063282722,0.2502791549421591,0.2590858968877287,0.2677803375058161,0.2762701185634916,0.2834318636694934,0.2901573191414702,0.2968258101166947,0.3031211405412535,0.3093681652490887,0.3149443149443149,0.3199919876810596,0.3243418707673506,0.3287068206535812,0.3325413795834323,0.3317490878246469,0.3309874672910067,0.330473677526774,0.3300667313231909,0.3288347939946732,0.3279414921345558,0.3272298164193052,0.3278572603190264,0.3293098429982707,0.3297335052654201,0.3310851431577365,0.3337160049087526,0.3358320209973753,0.336157052574963,0.3373476564381714,0.3367984992965452,0.3367460430628832,0.3386504223317738,0.3408923626932109,0.3430711907404471,0.3464126579976357,0.3486541121395893,0.3494393347612448,0.3505076526746477,0.3521073875903501,0.3555264411624583,0.3613587457731325,0.3590780428629195,0.362585969738652,0.3717899578382522,0.0,2.061351972266539,56.69196294950277,179.9687708419482,270.62038996834576,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95686,44205,418.43111844993,6239,64.12641347741571,4868,50.36264448299647,1861,19.10415316765253,77.40264542862671,79.78340414856656,63.35728834693722,65.11223321220922,77.18073462622625,79.56179903194042,63.27699267959528,65.03411585981577,0.2219108024004583,221.60511662613655,0.080295667341943,78.11735239344841,151.48958,106.16545640754862,158319.48247392513,110951.92233717431,335.35085,214.6989538317249,349971.9394686788,223880.4567352852,348.0722,167.31461217745192,360436.6260476977,172289.8633716338,2785.24856,1248.9392992634062,2882633.279685639,1277059.569073225,1173.76985,506.2565351055309,1214187.4464393954,516579.3168337385,1826.97206,746.5964960119888,1877157.6615178816,753854.1746244929,0.38104,100000,0,688589,7196.340112451142,0,0.0,0,0.0,28568,298.0477812846184,0,0.0,31781,328.80463181656665,1669340,0,59763,0,0,6016,0,0,69,0.7211086261313044,0,0.0,1,0.0104508496540768,0,0.0,0.06239,0.1637360906991392,0.2982849815675589,0.01861,0.333843797856049,0.666156202143951,24.976213385560545,4.380589269107687,0.3262119967132292,0.2294576828266228,0.2241166803615447,0.2202136400986031,11.305554921542065,5.89919125342963,19.49597089908678,12493.306557221047,54.36515396689143,13.13731348823855,17.74552907989061,12.066851610263154,11.415459788499112,0.5659408381265407,0.7779767233661593,0.6939546599496221,0.615948670944088,0.1044776119402985,0.7384356602186711,0.9211956521739132,0.8673469387755102,0.7350427350427351,0.1384615384615384,0.5101929872247893,0.7076101468624834,0.637123745819398,0.5834305717619603,0.096921322690992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860548247612,0.0044189039901892,0.0065327652667883,0.0086631526563277,0.0107788206343234,0.0131254709488218,0.0152211811962849,0.0174931874547106,0.0195086557524475,0.0218287878012587,0.0243447420482384,0.0264765365938792,0.0286243059839605,0.0306391480772003,0.0329030860185099,0.034819905948013,0.0367283119680245,0.038769665020132,0.0407184756833215,0.042629033602935,0.0577604128579338,0.0721211232802127,0.0851452316991269,0.0982244288298901,0.1107290886655346,0.1271184647610181,0.1391055228394079,0.1510058541777541,0.163026754423455,0.1729088706132121,0.1862092727781726,0.1991582273002683,0.2115271707221606,0.2223169585273605,0.2325745078631914,0.2425178199849471,0.2525520438639504,0.2615424355072382,0.2702595578909222,0.2788414278692834,0.2856038134370564,0.292533274230989,0.2984146096728878,0.3040946162493124,0.3095307349234051,0.3159584281409507,0.3209618988132417,0.324636430547448,0.3291717771609321,0.3336490272680636,0.3331096497114481,0.3318533135997369,0.3312949690739,0.3306911036943261,0.330220926619216,0.3287449639848614,0.3264236434536872,0.3273159144893112,0.3281675285792052,0.328353962156779,0.3293254420193798,0.3311606722161143,0.3325011961971333,0.3325698274328411,0.3338363875913283,0.3342432987546473,0.3356002617875537,0.3400915016294811,0.3443755039085778,0.3494414956824843,0.3510657678994352,0.3534611288604898,0.3574535140245824,0.3613650213284582,0.3637135578828191,0.3654708520179372,0.3656624654165386,0.3701311806256306,0.3793386171084996,0.3833648393194707,0.0,2.0246445901182706,52.18161375689456,181.3090621099434,279.23625152091194,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95725,44033,416.4951684512928,6311,64.65395664664403,4987,51.50169757116741,1922,19.74405850091408,77.33907921770925,79.70499863821034,63.32552877917672,65.07490935157466,77.09974363114357,79.46649775707536,63.23682019150851,64.9892272806126,0.2393355865656872,238.500881134982,0.0887085876682078,85.68207096206493,150.90152,105.8219296794508,157640.65813528336,110547.8502788726,336.84159,216.44815378121183,351316.5003917472,225546.39204096308,357.66186,173.16764636697962,369819.5455732568,178020.28742836494,2843.77876,1303.2497018649194,2939826.001566989,1330498.1790179366,1195.141,524.7559992388883,1235873.230608514,535549.3854676291,1886.0847,787.4747984747438,1939575.158004701,795748.98161811,0.37875,100000,0,685916,7165.484460694699,0,0.0,0,0.0,28621,298.3860015669888,0,0.0,32759,338.30242883259336,1664601,0,59692,0,0,6031,0,0,57,0.5954557325672499,0,0.0,0,0.0,0,0.0,0.06311,0.1666270627062706,0.3045476152749168,0.01922,0.3305135951661631,0.6694864048338368,24.566915212675088,4.363473345204745,0.3136154000401043,0.2438339683176258,0.2225787046320433,0.2199719270102265,11.192035666784086,5.710455611041281,20.444540443473173,12365.358044384351,56.590062589796965,14.56645843956786,17.714251783688347,12.405430045841698,11.903922320699056,0.5636655303789854,0.7960526315789473,0.6809462915601023,0.5846846846846847,0.1175934366453965,0.734785875281743,0.9300225733634312,0.8469387755102041,0.7107142857142857,0.162037037037037,0.5013676148796499,0.7192755498059509,0.6254266211604096,0.5421686746987951,0.1066969353007945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0044916250963215,0.0065466946804299,0.0090330840513737,0.0112305829933979,0.0135351210420719,0.015765053790853,0.0178460219093609,0.0199492832164256,0.0220405989471312,0.0240187883946793,0.0259646888448383,0.0282311560889821,0.0302899177845088,0.0323709445998534,0.0344563711195218,0.0364035678397165,0.0383884927924281,0.0406293546307273,0.042643856596618,0.0572621906651352,0.0717364918595404,0.0843757536358012,0.09735834770538,0.1095468590169466,0.1246694450908629,0.1374978781191648,0.1491647413306644,0.1596584776824355,0.1702216690628956,0.1827439063813279,0.1963011488527714,0.2075264371817746,0.2185482635621594,0.2285214097750569,0.2388532913553422,0.2482942680707083,0.2572142439112231,0.2661089860731189,0.2737097864829863,0.280636574074074,0.2883060978605434,0.2958429424634853,0.3013436160275908,0.3064181440897011,0.3117610148012353,0.3170740847146408,0.3214566879142647,0.3269422085556661,0.3321034182853227,0.3319892473118279,0.3313351573563582,0.3303560107634437,0.3299787446319351,0.3297817009198579,0.3280247461831769,0.3260773200772567,0.3267126663380976,0.3274669588440731,0.3278750134220981,0.328623698283141,0.3295560170078117,0.3312961761443312,0.3322818086225026,0.3319728217809896,0.3334027109295731,0.3339035237769415,0.337546772317077,0.3395775489403578,0.3396669853409815,0.342981252857796,0.3455925589351579,0.3465541312349283,0.3480798771121351,0.3522940955246333,0.3545778834720571,0.3599628425452856,0.363784998978132,0.3687135315365379,0.3662188099808061,0.0,2.362155461323776,58.29350422334751,187.73536155176103,273.0982886607432,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95690,43954,416.05183404744486,6241,64.1968857769882,4916,50.83080781690877,1952,20.012540495349565,77.30793472821749,79.68515232068617,63.31631099018998,65.07051076306713,77.07070517929328,79.44865134913384,63.22953411615787,64.9864961166378,0.2372295489242049,236.5009715523314,0.0867768740321111,84.01464642933831,150.37264,105.3844718099004,157144.6964155084,110130.39409158687,331.64816,212.82015881310568,346008.11997073883,221832.5422633855,343.41882,165.32765561910688,355951.6877416658,170421.80395493648,2832.85172,1288.1360517484536,2930059.90176612,1316074.8780406977,1183.12894,516.9760469374056,1220102.894764343,524044.96611257625,1918.47584,790.452491343661,1967989.0479673948,794828.4492789448,0.38035,100000,0,683512,7142.940746159474,0,0.0,0,0.0,28214,294.2313721391995,0,0.0,31524,326.4499947747936,1670782,0,59988,0,0,5931,0,0,61,0.6374751802696207,0,0.0,1,0.0104504127913052,0,0.0,0.06241,0.1640857105297752,0.3127703893606793,0.01952,0.3358300214001834,0.6641699785998165,24.761092053094817,4.454509907632633,0.3207892595606184,0.2290480065093572,0.218673718470301,0.2314890154597233,11.247362235652108,5.727031578048399,20.615077604315672,12455.719874947845,55.83978214295437,13.41062117754582,17.955046106533796,12.126925646305176,12.347189212569605,0.5561432058584215,0.7753108348134992,0.7057704502219404,0.5609302325581396,0.1274165202108963,0.7377431906614786,0.9219512195121952,0.8627450980392157,0.6968503937007874,0.1924882629107981,0.4918755163866703,0.6913407821229051,0.65098374679213,0.5188794153471377,0.1124324324324324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0047930768918973,0.0069893182117895,0.0092325505809701,0.0113090879505329,0.0134617734511832,0.0157538925880229,0.018080653394589,0.02012921957104,0.0222538411931498,0.0242037171824863,0.0261912339962422,0.0281891480521617,0.0303495451689004,0.0324537959074163,0.0342909718704448,0.0362749059712163,0.0384659309170568,0.0406428794340996,0.0423772986948,0.0571386788116826,0.0716476339010017,0.085171118618461,0.0981699621371476,0.1105312542830333,0.126048287312683,0.1387270971917205,0.150211302839016,0.1619427142872405,0.1730422656082385,0.1858010597510015,0.1981587260374746,0.2092221714832452,0.221002569288799,0.2309706089405139,0.2401594861003433,0.2500390494254156,0.260200924748844,0.2691251560195166,0.2772846491278304,0.2839084584486092,0.2903957709580838,0.2972413221771187,0.303369034625856,0.3092270842705509,0.3144073023313186,0.3188567418898091,0.3241118303685203,0.3280106885279925,0.332104345068189,0.3319359447874262,0.33127929418252,0.3308306754353778,0.3305865314989138,0.3297439792681292,0.3278346402320192,0.3265659227277056,0.3286210930420312,0.3285773082727397,0.3292152333888382,0.3306635080000752,0.3324406887249068,0.332682250645832,0.3339976710856324,0.335849147597116,0.3363172359638791,0.3379355687047994,0.3414641842852635,0.3450189065978725,0.3486973149549837,0.3509117566205443,0.3533778371161549,0.3567533291058973,0.3584515139900345,0.35800718472301,0.359566615073223,0.3685649202733485,0.3704375882234321,0.3700873362445415,0.3717754172989377,0.0,2.029275737314671,56.70969231815393,188.69854232494384,269.67410318373214,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95716,44040,416.1477704876928,6434,66.07045843955034,4990,51.652806218396094,1992,20.498140331814955,77.38171245272493,79.75580668526707,63.34258245905804,65.0951625827544,77.13196817498239,79.50429002086344,63.24944005470102,65.00351794272058,0.2497442777425362,251.5166644036384,0.0931424043570245,91.64464003382022,150.45514,105.38826893279186,157189.1219858749,110105.1746132223,335.80274,215.8190969860654,350354.2772368256,225000.4774395769,348.21785,167.64608960106762,360666.2313510803,172793.1657227954,2881.26788,1311.6112173414317,2984873.584353713,1344963.1590762592,1239.09369,543.9561041092277,1286152.1689163777,559910.9038655205,1970.1649,830.1234329141785,2029627.2096619168,843541.5336973019,0.38038,100000,0,683887,7144.960090267041,0,0.0,0,0.0,28546,297.7349659409085,0,0.0,31967,330.8746709014167,1669255,0,59847,0,0,5895,0,0,65,0.6790923147645117,0,0.0,0,0.0,0,0.0,0.06434,0.1691466428308533,0.3096052222567609,0.01992,0.3193910730121194,0.6806089269878806,24.690008682711845,4.438184761903285,0.3254509018036072,0.2202404809619238,0.2152304609218437,0.2390781563126252,11.07774827750655,5.535755149280261,21.215039386937644,12409.843857686286,56.34815040516699,13.105122969183562,18.14452735779155,12.00707730628516,13.09142277190672,0.5515030060120241,0.7825295723384895,0.7068965517241379,0.5837988826815642,0.0980720871751886,0.7080459770114943,0.9143576826196472,0.8575063613231552,0.7529880478087649,0.1325757575757575,0.4960651289009498,0.707977207977208,0.6588139723801787,0.5321992709599028,0.0882669537136706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207907956571,0.0047542296424697,0.0071437269148029,0.0091014363204193,0.0113005268832516,0.0135234215885947,0.0158858016823859,0.0182530932255298,0.0205064248694069,0.0226532910226225,0.0248918414631645,0.0270636550308008,0.0290315614105451,0.0309657481328869,0.0328696154719395,0.0349783388649358,0.0369645372441793,0.0388522803922586,0.040884460576813,0.0429055286332134,0.0572637075718015,0.0713350990881586,0.0847244226673241,0.0977392987513018,0.1102016707450848,0.1255472599987309,0.1380524964457742,0.1498408440058339,0.1606593453550978,0.1710004076291004,0.1844484434434973,0.1967305402186857,0.2092628647878438,0.2202932140943926,0.2299332299332299,0.240085911033368,0.2502091210225181,0.2600465634173499,0.2686003380332815,0.2759141976934617,0.2828625322578779,0.289596463943685,0.2963055032730802,0.3024164549072254,0.307958687727825,0.3127974355813093,0.3181021970872328,0.3232096942542196,0.3281699261753659,0.332453791047139,0.3314539460405032,0.3301722123723525,0.3290492412511613,0.3285969821990133,0.328646149742921,0.3271344814950531,0.3250773993808049,0.3252909498633231,0.3258501548830718,0.3273818000569638,0.3277109785515268,0.3283172925213001,0.3285443209541881,0.3285039229671897,0.329199846493332,0.331742119600467,0.3321317059324439,0.335315287122516,0.3380252174216758,0.3412258473234083,0.3452397182458532,0.35,0.3530267569106205,0.3557581794498506,0.358079426469201,0.3626203780763286,0.3646120821833793,0.3641912512716175,0.3694868238557559,0.374223602484472,0.0,1.8269905749840625,57.75569265192738,187.0594000309401,275.5542159989978,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95856,44201,418.0020030045068,6223,63.80403939242197,4893,50.44024369888166,1995,20.3743114672008,77.44506122741345,79.72372228295826,63.40474875222951,65.08460768274169,77.20053100760686,79.48220320501402,63.31399731188875,64.99812152676546,0.2445302198065917,241.51907794424687,0.0907514403407603,86.48615597623177,151.58286,106.1659276431567,158136.01652478718,110755.6414237572,334.95689,215.30370231704316,348851.17259222164,224025.1964582741,344.8611,166.25617889035172,356598.35586713406,170955.24757249263,2842.65376,1292.4795775327716,2933109.24720414,1315918.6879619134,1210.39154,529.1480806171273,1247718.4735436488,537023.8280515849,1968.4962,822.2478075822164,2014001.2518778169,824370.0176254413,0.38172,100000,0,689013,7188.00075112669,0,0.0,0,0.0,28544,297.1540644299783,0,0.0,31636,326.8235686863629,1668119,0,59926,0,0,5909,0,0,53,0.5529127023869137,0,0.0,0,0.0,0,0.0,0.06223,0.1630252541129623,0.3205849268841395,0.01995,0.332461135908881,0.667538864091119,24.6653849013036,4.447204334085923,0.3145309625996321,0.2301246678929082,0.2164316370324954,0.2389127324749642,11.244344320170857,5.612663507102989,21.21949511636685,12382.67650538542,55.29827704723749,13.380360142055508,17.297050471231692,11.756551924778645,12.864314509171647,0.5497649703658287,0.7682060390763765,0.6972059779077323,0.5779036827195467,0.1197604790419161,0.703416149068323,0.8943488943488943,0.8274111675126904,0.7540983606557377,0.1316872427983539,0.4948682385575589,0.6968011126564673,0.6524017467248908,0.5251533742331288,0.1166306695464362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.004497614440989,0.0066921509181428,0.0090434817912386,0.0111772715264088,0.0134295103315664,0.0154709524973519,0.0175492265491959,0.0197387903481093,0.0218711656441717,0.024094041511791,0.0263581633385639,0.028429690950361,0.0305399261446043,0.032372062353826,0.0345486075269927,0.036435279030323,0.0383941802505725,0.0403239202657807,0.0420698840814967,0.0564355506428772,0.0705546790927042,0.0842914284517601,0.0970920653576938,0.109013814799617,0.1242677250129302,0.1370586864900353,0.149097361682233,0.1604888244326906,0.1708851953722829,0.1835416509935838,0.1965402183420259,0.2087386018237082,0.2195183195772741,0.2295821984008435,0.2399995575025443,0.2497436697574893,0.2586458731264466,0.2677253715101846,0.27547623133688,0.282759258616902,0.2892693423145289,0.2965675544564998,0.3020171185730532,0.307433703501426,0.3134043470229665,0.3184032256044878,0.3235623552172695,0.3281602197061948,0.3322469122769977,0.331547707175256,0.3306259877688449,0.3297674941662684,0.3284407634137558,0.3277108076888902,0.3263157894736842,0.3256745462286913,0.3260414622980838,0.3268258642111892,0.3273738648278803,0.3279089754128989,0.3295654060878657,0.3306357172731075,0.3318465655664585,0.3318465227817745,0.3343378188808645,0.3350728912587214,0.337976585488011,0.3393006408470326,0.3417236337772157,0.3432108880695526,0.3432812001276731,0.3466020028972728,0.3491783136230993,0.3505545549341169,0.3506166926116633,0.3557453416149068,0.3615689547256415,0.3623066104078762,0.367816091954023,0.0,2.3997423271138905,56.39105771533645,180.40366671486427,273.27248547872773,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95689,43886,414.9066245858981,6268,64.33341345400203,4955,51.249359905527285,1916,19.73058554274786,77.29747507811412,79.70247628023823,63.28577397120039,65.06630062625361,77.0618388302028,79.46511293657343,63.19898714875159,64.98114289909981,0.2356362479113158,237.3633436647964,0.0867868224488006,85.1577271537991,151.90692,106.38453656587603,158750.66099551675,111177.39402217188,336.45675,215.60844396393537,351078.56702442287,224785.77889196816,347.80787,167.452918236616,359715.6412962828,172156.5392472187,2823.89388,1282.986755123704,2920653.4084377512,1310325.027039372,1156.4845,507.4051768350246,1194103.7527824517,515781.9779023968,1876.66898,782.4568628715447,1931826.7512462249,791600.0761055668,0.38036,100000,0,690486,7215.939136159852,0,0.0,0,0.0,28640,298.7490725161722,0,0.0,31944,330.1215395709016,1659505,0,59574,0,0,5846,0,0,55,0.5747787101965743,0,0.0,0,0.0,0,0.0,0.06268,0.1647912503943632,0.3056796426292278,0.01916,0.3315573146597655,0.6684426853402344,24.96820254181444,4.351164463833318,0.3376387487386478,0.2262361251261352,0.217356205852674,0.2187689202825428,11.066991176355131,5.677673634141727,20.30084289208161,12452.807641300791,55.78155399635358,13.420218944945605,18.687743051592307,11.900545669517934,11.77304633029774,0.568920282542886,0.8073148974130241,0.6921697549312612,0.5812441968430826,0.1199261992619926,0.7254901960784313,0.9147869674185464,0.8512195121951219,0.7458333333333333,0.1415929203539823,0.5146739130434783,0.7479224376731302,0.6405384006334125,0.5340501792114696,0.1142191142191142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024524707122299,0.0048282717627249,0.0071475709426874,0.0094197744131693,0.0116984049479166,0.0139440607875491,0.0160132185549345,0.0181470966687771,0.0200660687073647,0.0221810324523046,0.0245658662673217,0.0266380390787121,0.0287648402296249,0.030717708279664,0.0328642375558836,0.0347959204782887,0.036981374571159,0.0388760824870724,0.0411677191814313,0.0428960011672381,0.0575589169313053,0.0709649728869627,0.0840512492261199,0.097239754270807,0.1100176154763035,0.1253623341726085,0.1375543997452499,0.1499137325068694,0.1612040849061647,0.1711258079062077,0.1847102848084202,0.1973704177415508,0.2093757828582631,0.2193008402624861,0.2294050217137314,0.2399822498335921,0.2505057052492763,0.2598332957873395,0.2680693462997887,0.2764011461318051,0.2840362806537931,0.2909674321649823,0.2976064995203524,0.3039616912497149,0.309559145540363,0.3143724396624056,0.3198792010225307,0.3248435249276581,0.3292795306760808,0.3327470609238419,0.3321951087836743,0.3312954554863996,0.3307569484675927,0.3300056507816915,0.329154211097726,0.3277909738717339,0.3264240506329114,0.3275350438560537,0.3284828244274809,0.3294982991682844,0.3306694052842872,0.3314300340624938,0.3339393559442459,0.3354646111346269,0.3364501666307032,0.3375691899898651,0.3385524708021937,0.3411941796287004,0.3455946750744438,0.3485190912334959,0.3518965438732298,0.3535589264877479,0.3554773427188737,0.3562651699029126,0.3600375234521576,0.3635288552507095,0.3703533026113671,0.3707228183842883,0.3702174511423066,0.3720306513409961,0.0,2.023056638326072,56.160153275977166,184.2963329597402,277.52975521052446,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95813,43846,412.9189149697849,6307,64.45889388705082,4852,49.89928297830148,1917,19.51718451567115,77.32864418348662,79.64004635196808,63.32870225298407,65.03877914343467,77.08104922099,79.39702979340747,63.23581648128242,64.9508122090134,0.2475949624966205,243.01655856061188,0.0928857717016455,87.96693442126013,149.63146,104.87909659239756,156170.31091814264,109462.282354584,331.0459,213.64643742588885,344781.6997693424,222251.9151116121,348.40832,169.150612363915,358846.61789110035,172809.61824878573,2788.5704,1291.7779316553183,2868957.991086805,1306926.7616192326,1183.93728,527.751702992676,1215460.5533695845,530634.2215849587,1884.81424,801.5329494646747,1921076.889357394,797456.9464519003,0.37888,100000,0,680143,7098.6504962792105,0,0.0,0,0.0,28172,293.24830659722585,0,0.0,31977,329.03676954066776,1670952,0,60026,0,0,5908,0,0,57,0.5949088328306179,0,0.0,1,0.0104369970672038,0,0.0,0.06307,0.1664643158783783,0.3039479942920564,0.01917,0.323943661971831,0.676056338028169,24.400183672998818,4.351012973384338,0.3264633140972794,0.2271228359439406,0.2186727122835944,0.2277411376751855,11.266577208067242,5.828117099421904,20.637721102350216,12382.185903813384,55.46664348934556,13.407323269196016,18.11129957609374,11.94617405813331,12.00184658592248,0.5719291014014839,0.8003629764065335,0.6900252525252525,0.6069745523091423,0.1411764705882353,0.7354227405247813,0.9294117647058824,0.8502304147465438,0.7573529411764706,0.1618257261410788,0.5074712643678161,0.7193500738552437,0.6295652173913043,0.5551330798479087,0.1354166666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023902364916189,0.0049264079795645,0.0071424948003855,0.0093247196489517,0.0113992271710392,0.0136835675015271,0.0161043726429517,0.0184004000530682,0.0204283933206613,0.0227882037533512,0.0249492817475767,0.0269388257750685,0.0289193772159704,0.03098684345982,0.0330710610169841,0.0351966445934358,0.0373267931245019,0.0395442150773984,0.0416939328783771,0.0438303408795212,0.0579835614152202,0.0707833214838359,0.0842408678790419,0.0971037033923241,0.1095146736380502,0.1252920344627094,0.1380323210044112,0.1497541873284099,0.1614298530416951,0.1711571656785067,0.1843822693202378,0.1972083964509846,0.2091847276444425,0.2196167175013391,0.2291348026540201,0.2386940240632824,0.2475459814399142,0.2557065798808572,0.2638526024036168,0.2717689298782936,0.2802254514247277,0.287579322721781,0.2939919259083353,0.2998870436684371,0.3056022204367833,0.311713957765079,0.3167548456658559,0.3219303837817162,0.3273841201438195,0.3308417891492148,0.3302213887727156,0.3288950825100723,0.3283387990500961,0.3285216886696648,0.3281608681394031,0.3266243643123819,0.3254743192823688,0.3267645946079318,0.3267804027488119,0.3286675831533092,0.3300573915000562,0.3319091700292744,0.3328795526420508,0.3332290432878181,0.3344636029146526,0.3349882414423831,0.3370760900541464,0.3416098312223025,0.3443133685721287,0.3464096271079091,0.349240287507961,0.3507197110532745,0.3527742749054224,0.3545252849820213,0.3576346317080072,0.3643559606620292,0.3684210526315789,0.3740861088545897,0.3708390646492435,0.3670542635658915,0.0,2.851332132761116,59.86297550971535,176.3734275339561,263.7033980962584,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95739,44168,417.6145562414481,6299,64.43560095676787,4886,50.36609949968143,1886,19.34425887047076,77.35098256499538,79.69896754487374,63.33757887846742,65.07077281013427,77.11519603857957,79.46451299893424,63.24934845365603,64.98570051401185,0.2357865264158078,234.45454593949933,0.0882304248113854,85.07229612241929,150.18432,105.21175313897488,156868.48619684766,109894.35145444894,331.34519,212.8949758972782,345442.70360041363,221722.33360331348,346.56994,167.56729284874342,357586.18744712183,171662.53629464505,2802.40456,1282.5176409545986,2889844.723675827,1302587.561070481,1160.89146,515.6632441342762,1195342.5667700728,521505.9409673852,1855.0933,781.2281955600243,1903357.9210144249,786704.5936992222,0.38189,100000,0,682656,7130.385736220349,0,0.0,0,0.0,28155,293.3914078902015,0,0.0,31825,328.02724072739426,1672196,0,59979,0,0,5824,0,0,52,0.5326982734308902,0,0.0,1,0.0104450641849194,0,0.0,0.06299,0.1649427845714734,0.2994126051754247,0.01886,0.3318731117824773,0.6681268882175226,24.79398390958288,4.430095473374075,0.3248055669259108,0.2251330331559558,0.225542365943512,0.2245190339746213,11.001945229442743,5.503277157859719,20.04181232217396,12453.014442568596,55.15789503112944,13.093585920054483,17.773893761744077,12.263479927159503,12.026935422171364,0.5577159230454359,0.7790909090909091,0.7013232514177694,0.5698729582577132,0.1157702825888787,0.7237871674491393,0.916010498687664,0.8658227848101265,0.7790697674418605,0.1352459016393442,0.4988913525498891,0.7065368567454798,0.6468120805369127,0.5059241706161137,0.1101992966002344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0045509370470601,0.0067273446774831,0.0092122369383277,0.0113369462435562,0.0135904144312895,0.0157490749329772,0.0180135126860035,0.0202579774729655,0.0225572374548394,0.024622765294407,0.0266172575909996,0.0288396290432028,0.0308525646966748,0.0329505947406971,0.0349778287698843,0.0370186283951,0.0389867795695577,0.0409540345806344,0.0429016429308135,0.0580000626350568,0.0719419192183364,0.0854521625163827,0.0983325623449262,0.1107081866289979,0.1261508863542668,0.1392695032452382,0.1505847797631083,0.1623348182332895,0.1732656804797202,0.1868408863227516,0.1990280754161525,0.2105578035939607,0.220828956582633,0.2296801893543237,0.2395969583434943,0.2491594902210457,0.2581632423430924,0.2669996027467227,0.2748128360638822,0.2823525326419113,0.2896384639692888,0.2962708816430836,0.3018854363814954,0.3080882263683706,0.3133887349953832,0.3184018007878447,0.3234479076625819,0.328918922417699,0.333148536807508,0.3316218583653392,0.3308259282220844,0.3308505085558706,0.3306930406325118,0.3297084201130615,0.3284527167913651,0.3262617133615564,0.3275768490649824,0.3291658827754878,0.3293697554008213,0.3307228238468168,0.331951354339414,0.333500837520938,0.3343460292639338,0.3348531387982338,0.335896166175819,0.3384046637281387,0.3422268313377958,0.3466368183567106,0.3505424024071581,0.3530456159519257,0.3558044482191199,0.356994525202945,0.361208074062832,0.3628451099672438,0.3651957884774636,0.3691451538104807,0.3706931495743818,0.3706061444782729,0.3707129094412331,0.0,2.578195840348673,55.67435164314392,181.8893848769687,271.5152039700593,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95828,44239,417.7275952748674,6326,64.67838210126476,4977,51.20632800434111,1999,20.380264640814797,77.51248185563044,79.79641438485959,63.42745123530996,65.10983016697445,77.25720728201168,79.5465951792702,63.333229971624206,65.02103868597217,0.2552745736187631,249.81920558938955,0.0942212636857533,88.79148100227496,151.558,106.15987625762818,158156.2800016697,110781.68829322138,337.18566,216.31510681271556,351149.99791292736,225017.1837174057,352.88754,170.40767161677226,364072.859706975,174598.59796088687,2860.1732,1310.3273318188758,2944835.6221563634,1327515.1436102989,1227.26765,541.7703805946918,1263551.2376340944,548209.9288252835,1966.50538,822.9739299004823,2007447.030095588,819869.6573684998,0.38168,100000,0,688900,7188.921818257712,0,0.0,0,0.0,28606,297.7522227323955,0,0.0,32413,333.94206286262886,1670185,0,59907,0,0,5983,0,0,60,0.6261218015611303,0,0.0,0,0.0,0,0.0,0.06326,0.1657409348145043,0.3159974707556117,0.01999,0.3282996073693748,0.6717003926306252,24.678857195928792,4.401007273782982,0.3261000602772754,0.2248342374924653,0.21458710066305,0.2344786015672091,11.308552437341456,5.851943718946133,21.114413730465504,12423.613364818975,56.258555964331045,13.34153414895392,18.34073664324956,11.823207535851813,12.75307763627576,0.5549527828008841,0.7694369973190348,0.6882316697473814,0.5917602996254682,0.130248500428449,0.7232897770945427,0.9143576826196472,0.8564593301435407,0.757201646090535,0.1481481481481481,0.4953754080522307,0.6897506925207756,0.6298755186721992,0.5430303030303031,0.1255411255411255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022564912067674,0.0046383974235626,0.0068316119157907,0.008746740266461,0.0109815315223795,0.0133224855079833,0.015668587485492,0.0180188448360254,0.020034104949302,0.0220267921055322,0.0240438277609953,0.0263462859838579,0.0287704732742853,0.0309679411310657,0.0328147712863019,0.0350764845016887,0.0368162910535791,0.0391170920853463,0.0409174483467855,0.0429749312900807,0.0577873725048495,0.0717818417558058,0.0850762846843826,0.0974928314094552,0.1096977993050437,0.1254053254750362,0.138393708798779,0.1499920250943697,0.1613843001664746,0.1725604009595613,0.1859964942843931,0.1983365737740332,0.2104840285770124,0.2212163239453538,0.2309973963768991,0.2412767228126831,0.2499470757985983,0.2590341821776394,0.2674089343965204,0.2745270617820198,0.2819288227490338,0.2890468422279189,0.2963185769725279,0.3032293507858405,0.3089447625503892,0.3146812771028094,0.3200917682850802,0.3247834017327861,0.3289200582707009,0.3331013929551392,0.3321041621969534,0.3309499349359633,0.3300723215787408,0.328982399585534,0.3284505208333333,0.3268455761128412,0.3253112951140888,0.3256229215471061,0.3265514773540537,0.3277432232539074,0.3298280410905076,0.3305436027002487,0.331261380046462,0.3321733699167949,0.333301453710788,0.3326856817180902,0.3327197031918207,0.3362851173957781,0.3386473598106443,0.3394347979461451,0.3415466092186167,0.3443334553632132,0.3481720964934096,0.3484186746987951,0.3497820239309897,0.3510365711623573,0.3486100676183321,0.3544303797468354,0.3605756177029595,0.3616222305670297,0.0,2.83300154511083,56.30003573723264,191.35493991064268,269.8986830598896,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95740,44243,418.2473365364529,6247,64.05890954668895,4829,49.88510549404638,1946,19.928974305410488,77.31288813594676,79.67139174999926,63.318020272784125,65.06198027913247,77.074827985624,79.43348701771126,63.23079680804405,64.97701466334134,0.2380601503227666,237.90473228800124,0.0872234647400773,84.96561579113404,152.66966,106.88457831038396,159462.77418007102,111640.4619912095,335.63941,216.29053951106823,350000.5953624399,225341.2361719953,346.12012,167.37726307477527,357891.7171506163,172061.07568870368,2756.3232,1255.6332457414014,2848439.983288072,1280976.0661598083,1159.50339,512.772453688936,1193645.3519949864,518137.7937005808,1902.63234,791.8457837578837,1950467.9130979737,797346.4463797851,0.38196,100000,0,693953,7248.307917275956,0,0.0,0,0.0,28602,298.14079799456863,0,0.0,31617,326.551075830374,1657532,0,59529,0,0,6091,0,0,58,0.6058073950282014,0,0.0,0,0.0,0,0.0,0.06247,0.1635511571892344,0.3115095245717945,0.01946,0.3349588540079244,0.6650411459920755,24.809390274249875,4.413263430851095,0.3230482501553116,0.2360737212673431,0.2215779664526817,0.2193000621246635,11.200969565129906,5.871935246700682,20.715035263960026,12466.78673911908,54.64339293581479,13.512914111401148,17.518472636297332,12.004415301522592,11.60759088659371,0.5566369848829985,0.7649122807017544,0.6993589743589743,0.5672897196261683,0.1114258734655335,0.738498789346247,0.9010416666666666,0.9,0.6914498141263941,0.1632653061224489,0.4938718662952646,0.6957671957671958,0.6324786324786325,0.5255930087390761,0.0996523754345307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0045814370711237,0.0068588358242271,0.0089993093080892,0.011259039269332,0.0133604887983706,0.0155603140613847,0.0177435656603812,0.0202220541026846,0.0220866057074983,0.0244127508176887,0.0265030548852492,0.0286014007590015,0.0306635354222029,0.0328694198846578,0.0350465599388157,0.0369139330682571,0.0388785706133206,0.0410752352727083,0.0431448546036112,0.0579109463903533,0.0719651788143218,0.0860660465408937,0.0982598180957888,0.1097872160948143,0.1256082081658557,0.1379211545604075,0.1510016392395631,0.1621200145265001,0.1731429061588608,0.1863144069073918,0.1985141448222164,0.2103237589963253,0.2209135745765121,0.2312101210121012,0.2422299018630513,0.2521120001785575,0.26156407487401,0.2701518127831586,0.2785187222145836,0.2855191414977484,0.2921934389801766,0.2981804415209521,0.3040711400870076,0.3093546153565832,0.3147849230503838,0.3199248826291079,0.3248940853169807,0.3291280244546914,0.3340555394086718,0.3332749019026172,0.3326034565861048,0.3317486739645638,0.3302067048810144,0.3303596693722541,0.3285938027822989,0.3269365190315816,0.3270003292723082,0.3270552347003479,0.327883253554205,0.3275923662686847,0.3278415181229901,0.3288304376142356,0.32921036120821,0.3307027705376967,0.3314409794893261,0.33227440542629,0.3348098462317281,0.3372060173741083,0.3399024624240486,0.3424739058780443,0.347146124793872,0.3492183085326804,0.3518715763846622,0.35283054353959,0.3532061159179803,0.3585399661173571,0.3626953521412624,0.368377253814147,0.3700757575757575,0.0,2.1574985374167475,54.34489201395927,184.33277814099716,268.6611495196241,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95784,44316,418.3892925749603,6305,64.57237116846237,4982,51.45953395139063,1966,20.180823519585733,77.37208356525132,79.71091583308129,63.35007434272507,65.07947280824769,77.12175486129485,79.4592070865364,63.25726572931779,64.98816610743872,0.2503287039564696,251.7087465448924,0.0928086134072856,91.3067008089712,150.1511,105.17652360597766,156759.18733817755,109805.09026089904,334.29372,215.3592918957609,348453.93802722794,224285.61975416957,354.79062,171.4615911125636,366752.2446337593,176238.86303251685,2851.7316,1313.7644295528942,2946200.200451015,1340823.7902329338,1180.55523,528.31639692385,1215509.4170216322,534889.9062749823,1928.27834,812.6246627272068,1980368.140816838,821250.0018134592,0.38136,100000,0,682505,7125.417606280798,0,0.0,0,0.0,28447,296.40649795372923,0,0.0,32493,335.5153261505053,1670162,0,60035,0,0,5951,0,0,56,0.5846487931178485,0,0.0,1,0.0104401570199615,0,0.0,0.06305,0.16532934759807,0.3118160190325139,0.01966,0.340654347167525,0.659345652832475,24.480591276413605,4.395815770914599,0.3327980730630269,0.223203532717784,0.2236049779205138,0.2203934162986752,11.406756431834689,5.994002625705715,21.017001251001084,12458.118535952271,56.81863769091826,13.376882702256657,18.72914785932519,12.655706551210246,12.056900578126164,0.5624247290244881,0.7850719424460432,0.6869722557297949,0.5897666068222621,0.1211293260473588,0.7220990391722099,0.910843373493976,0.864406779661017,0.7208480565371025,0.1570247933884297,0.5028933590520804,0.7101865136298422,0.6281124497991968,0.5451263537906137,0.1109813084112149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0043996593812091,0.0067179476771325,0.009254274133745,0.0113088579273873,0.0136931910734647,0.0159312601290401,0.0180725350531665,0.0204381948986265,0.0226998260157609,0.0247384224387944,0.0269912458050677,0.0292234157372667,0.0310131795716639,0.0332460247076535,0.0353563531915772,0.0374595025411185,0.0396241872426916,0.0416229414515039,0.0435493274476325,0.0579365327823519,0.0722413973433741,0.0852770061323968,0.0984123314875329,0.1106018942865872,0.1264830486091301,0.1394915056646565,0.1508793943131792,0.1616035511166597,0.1714876475755822,0.1848421279113549,0.198177553424924,0.2090374604692611,0.2198585436776457,0.2299046508814569,0.2402250102428383,0.2504155186453534,0.2594574541039449,0.2676937727442778,0.2762490409609857,0.2831528780307237,0.2906752411575563,0.2977842937879827,0.3035245931088995,0.3088044283130409,0.3140094833425703,0.3193926345041684,0.3249825141476442,0.3303005202805891,0.335012926713449,0.3338041051300675,0.3333974632054858,0.3323933732816355,0.3305561582411224,0.3296265461465271,0.3281968016665645,0.3269398292601802,0.3274103755768315,0.3280827312262439,0.3290089703727529,0.330072158185737,0.3310999110584049,0.3317486910994764,0.3319559536306984,0.3319228734913689,0.333768437540791,0.3332951650302007,0.3351450420274284,0.339225974574779,0.3394788299612913,0.3419404963210091,0.3441741629850428,0.3470351252675311,0.3510605829391118,0.3527688527688528,0.35257854179016,0.3608735491753207,0.3620313429875025,0.371645432366495,0.3795180722891566,0.0,2.14211343661265,59.53234529027244,191.06199955367933,267.2014135241226,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95638,44470,421.0251155398482,6330,64.92189297141303,4972,51.31851356155503,1955,19.992053367908152,77.25911226955019,79.65947757375775,63.27736057920528,65.04769907516805,77.01838454042553,79.42196795748478,63.1875911236481,64.96270917352487,0.2407277291246572,237.5096162729733,0.0897694555571817,84.98990164318343,149.49044,104.81383784373926,156308.62209581965,109594.34308929429,337.30069,217.06736278202104,352034.64104226354,226317.533597546,356.60167,172.95674736054673,369756.1743240135,178328.14064466357,2847.85916,1315.3607860660786,2938801.5642317906,1336406.7275205236,1203.32267,534.1417871570159,1241881.6056379264,542179.726841858,1914.25888,804.1122514262365,1958286.7897697568,801052.5606229663,0.38301,100000,0,679502,7104.937367991802,0,0.0,0,0.0,28642,298.79336665342225,0,0.0,32674,338.53698320751164,1663373,0,59770,0,0,5853,0,0,68,0.7005583554654008,0,0.0,2,0.020912189715385,0,0.0,0.0633,0.1652698362967024,0.3088467614533965,0.01955,0.3285606631499623,0.6714393368500376,24.56491499402155,4.309242313869087,0.33266291230893,0.2272727272727272,0.2135961383748994,0.2264682220434432,11.159100423588248,5.843326203127216,20.873605622782087,12491.061635379076,56.61740356315083,13.677401346291946,18.701743240694796,11.881341210319206,12.356917765844882,0.5623491552695092,0.7876106194690266,0.6916565900846433,0.5809792843691148,0.1287744227353463,0.745799853907962,0.9032258064516128,0.8761261261261262,0.7729083665338645,0.1916666666666666,0.4926450180405218,0.7155172413793104,0.6239669421487604,0.5215782983970407,0.1117381489841986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024006563819981,0.004522455105,0.0071047236262509,0.0095208096244513,0.0117605168116384,0.0137595991281852,0.0159777311010053,0.0180079014261359,0.0201288080147209,0.022079371091071,0.0241756889763779,0.0262655303419242,0.0283777668065498,0.0302768076974585,0.032467130384528,0.0344428244977303,0.0363425398338271,0.0385014636576909,0.0407023310483996,0.0429637815634187,0.0577716931244578,0.0718662602520189,0.0857136856254725,0.0985762726143088,0.1109198437004963,0.1274876346420665,0.1394550958627649,0.1508609666695081,0.1625245957738044,0.1727018900343642,0.1862587514428418,0.1991222366710013,0.2114207281204383,0.2219495091164095,0.2324999172833651,0.2430394367135701,0.2525987177048483,0.2621896888146987,0.2700925862735731,0.2781237791004987,0.2852865746811646,0.2917272769931021,0.2983207737494808,0.3045067577317108,0.3106984343754572,0.3152274665381335,0.3202761217445873,0.3249186810383315,0.3298413687462679,0.3345417978776893,0.3334638546083011,0.3321826542025103,0.3312820948096592,0.33089699065665,0.3301817747307732,0.3287081192505307,0.3263087632306665,0.3262202155357084,0.3264577684730754,0.3275584061917729,0.3290934711131987,0.3309170132699544,0.3321364829396325,0.3339886950110592,0.33436688779925,0.3350171857098219,0.3351075942160992,0.3399219438499307,0.3430158953439302,0.3448289578361177,0.3472837757572988,0.3497203728362184,0.3515713744793639,0.3490895295902883,0.35409866641798,0.3537190082644628,0.3533171028606208,0.3547868061142397,0.3704936217415419,0.3799533799533799,0.0,2.609313610451659,59.963736595235176,183.07417305958455,271.4221392744353,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95627,44166,418.0304725652797,6362,65.46268313342466,5024,52.056427577985296,1960,20.245328202285965,77.28554750318864,79.71812482031861,63.27381344368565,65.0721619462361,77.04043555725374,79.47101568300879,63.18394445703284,64.98367386182501,0.2451119459348945,247.10913730982043,0.0898689866528101,88.48808441108247,149.63124,104.8018134703965,156473.8410699907,109594.37551151504,334.0593,214.3500736457431,348824.6415761239,223641.19406277867,349.06579,168.69581443290275,361689.5855772952,173840.84710325862,2853.32292,1299.3750691858388,2958713.626904536,1333708.788238509,1161.33841,514.8903301532848,1204389.1787884175,528379.1817721816,1919.39658,799.4152243021564,1983316.5528564109,814523.2745340453,0.38087,100000,0,680142,7112.447321363214,0,0.0,0,0.0,28365,296.1192968513077,0,0.0,31944,330.7434092881718,1671019,0,59955,0,0,6063,0,0,77,0.8052119171363736,0,0.0,0,0.0,0,0.0,0.06362,0.1670386221020295,0.3080792203709525,0.0196,0.3324372759856631,0.6675627240143369,24.66961950039826,4.333177949395418,0.3186703821656051,0.2336783439490445,0.2314888535031847,0.2161624203821656,11.072395384351545,5.686436238122777,20.908045703362276,12498.368030711792,56.84594968073257,14.034274211001566,17.942773572265022,12.947229555837632,11.921672341628366,0.5549363057324841,0.7802385008517888,0.683947532792005,0.5666380051590714,0.1086556169429097,0.7234848484848485,0.918032786885246,0.8300492610837439,0.717948717948718,0.1401869158878504,0.4948704103671706,0.7014725568942436,0.6343096234309623,0.5202247191011236,0.1009174311926605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023611674098094,0.0048991266774183,0.0072696259594687,0.0093815114092595,0.0116693118463354,0.0137925414336501,0.0158827309728555,0.0180716737495913,0.020169579936791,0.0223774361705396,0.0243429556225764,0.0266335117806023,0.0288002305665349,0.0310477054385024,0.0330418082129544,0.0348066241194906,0.0367986901282928,0.0389348731423111,0.0409888108248764,0.0429326908032668,0.0572414153556682,0.0717294714339606,0.0851459554883046,0.0983449394759853,0.1111733141794828,0.1264655108503405,0.1387265424096232,0.1503208749973349,0.1617231638418079,0.172992834044199,0.1864554899824139,0.1986904297298469,0.2103754876108702,0.2211144466113022,0.231167800328523,0.2420563133302997,0.2530066615996781,0.2613404559849432,0.2702853182133239,0.2782815025390021,0.2852758960106537,0.2916978922716627,0.2981719894729355,0.30416771730125,0.3103402105775668,0.3161539601027059,0.3209511519813578,0.3255813953488372,0.3300768073070735,0.3349189989164619,0.3342630394653516,0.3327002215891105,0.3319184341155234,0.3310379746835443,0.3307659137882325,0.3294466008990626,0.3282397930848447,0.329042453373718,0.3292374041621029,0.330377615362568,0.3302805667636295,0.3317655428639184,0.332745739947956,0.3326247482658312,0.3335417468257022,0.3343646006655574,0.3355335845208079,0.3388843673699367,0.3422482239866277,0.3455594640528042,0.347970362289195,0.3479345863863226,0.3524962178517398,0.3531245248593583,0.3539125539500844,0.355284937337432,0.3580265770581946,0.3633791430881164,0.3667301933024775,0.3686982693754703,0.0,1.8283910115216573,58.368942878171225,187.4884977482104,279.3240191999442,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95814,44033,416.2230989208258,6431,65.95069614043877,5042,52.09050869392782,1966,20.268436762894776,77.35864855579545,79.66356449834178,63.35358995694328,65.05441025649654,77.11188485540193,79.41474626159575,63.26355360009679,64.9654984309762,0.2467637003935294,248.8182367460325,0.0900363568464897,88.91182552034138,151.47066,106.05245159428024,158087.7742292358,110685.34456530574,335.40228,215.12287532122505,349515.6762059824,223983.33006975797,347.75855,167.9064583080918,359049.72133508674,172351.39336172427,2893.29772,1320.0042264864246,2992157.34652556,1350258.2064024303,1191.9852,527.9798939906148,1230655.9584194378,537665.5555449788,1929.91328,801.7825640610919,1990707.2035401925,816523.4115244617,0.38107,100000,0,688503,7185.807919510719,0,0.0,0,0.0,28517,297.06514705575387,0,0.0,31875,328.7828501054126,1665623,0,59779,0,0,6049,0,0,72,0.751455945895172,0,0.0,1,0.0104368881374329,0,0.0,0.06431,0.1687616448421549,0.3057067330119732,0.01966,0.3306055646481178,0.6693944353518821,24.538400474838426,4.395923740821774,0.3228877429591432,0.2362157873859579,0.2205474018246727,0.2203490678302261,11.233754114929056,5.661298771917614,20.98496202548419,12464.581849202865,57.06366461940695,14.21987995467942,18.38182956306083,12.24368738407089,12.218267717595811,0.5585085283617612,0.7758186397984886,0.6848894348894349,0.572841726618705,0.126012601260126,0.7299546142208775,0.917995444191344,0.8723404255319149,0.6842105263157895,0.1594827586206896,0.4975806451612903,0.6928191489361702,0.6190871369294606,0.5441176470588235,0.1171786120591581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0045174163619605,0.0069243792897188,0.0092544674114889,0.0116534249080527,0.013783632572097,0.0157682434910157,0.0176573194740546,0.0197065974705269,0.0218601035209394,0.0240187643395608,0.0260836564301392,0.0278522628037191,0.0299659384422239,0.0321792386687012,0.0341237709658762,0.0362552768810528,0.0383877756238143,0.0404989924590232,0.0423806450269628,0.0576901008794349,0.071498018880746,0.0849596478356566,0.097723737862037,0.1095432798701709,0.1249696188352654,0.1375292857975808,0.1493091380979226,0.1600836927281267,0.171074495342031,0.1848992818922731,0.1975292615910517,0.2094606350587211,0.2204344592229611,0.2306049665375132,0.2408852146545801,0.250234375,0.2595504859611231,0.2690614504856131,0.2769408772753829,0.2842792334043144,0.2913725903297166,0.298450025457947,0.3042185289109528,0.3095272833381967,0.3144343880243656,0.3195820820820821,0.3241706522845222,0.3294561092185536,0.3344113842173351,0.3343521934667277,0.3339525283797729,0.333492876851174,0.3324475766853446,0.3317830609212481,0.3297512437810945,0.3285021858962174,0.3291368088883045,0.3299217854147769,0.3303843260861778,0.3316426209798617,0.3327058730284536,0.3330458379788375,0.3335499047832418,0.3361613921762394,0.3382021883671012,0.3395222428837076,0.3443394736010616,0.3463789577603836,0.3512002236689699,0.3525597113759876,0.3529663053345437,0.3553755616022274,0.3538000461077384,0.3571226548505704,0.3571175008874689,0.3561875480399692,0.3617064707083078,0.3663865546218487,0.3700912336374454,0.0,2.029539067287134,58.28395498603593,190.49322619178503,277.6179830919995,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95876,44213,417.2577078726689,6280,64.33309691685093,4916,50.84692728107138,1944,19.973716049897785,77.41454581429173,79.70215891238786,63.37712166936033,65.06781546776031,77.17015288642449,79.4592196764478,63.28664410248721,64.98019261651551,0.2443929278672385,242.93923594005665,0.090477566873119,87.62285124480229,150.85378,105.78405313910577,157342.58834327673,110334.23707612517,336.4835,216.32184555057069,350525.6685719054,225195.9456736926,353.93017,170.52147713982407,367064.4999791397,176159.93364316868,2815.20476,1296.266171530162,2911896.6164629315,1327670.9952642294,1170.94226,513.2137599992509,1210153.917560182,524163.3445696812,1903.13988,797.690374595701,1956599.9624515,806922.2474241628,0.38,100000,0,685699,7151.9358337853055,0,0.0,0,0.0,28425,296.03863323459467,0,0.0,32497,336.86219700446406,1667826,0,59918,0,0,6042,0,0,64,0.657098752555384,0,0.0,0,0.0,0,0.0,0.0628,0.1652631578947368,0.3095541401273885,0.01944,0.3305020476262703,0.6694979523737297,24.61343738416836,4.382144999281278,0.3264849471114727,0.2377949552481692,0.2144019528071603,0.2213181448331977,11.35424072522514,5.964868119643108,20.68395214703473,12415.067489827496,55.8796235260388,14.013703449724233,18.07061385425587,11.74057359690729,12.054732625151397,0.564686737184703,0.776732249786142,0.7046728971962617,0.5853889943074004,0.1102941176470588,0.7300380228136882,0.908675799086758,0.8501228501228502,0.7628458498023716,0.1059907834101382,0.5043043599000278,0.6976744186046512,0.6552587646076795,0.529338327091136,0.1113662456946039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024700106291441,0.0047515323438528,0.0072401310118945,0.0093192292855257,0.011627197885964,0.0136753528220677,0.0158414832925835,0.0180853776712398,0.0203176873180448,0.0226149927889778,0.024634830885215,0.026762268176596,0.0286882719220731,0.0309926712779973,0.0330436217046591,0.0350547407560421,0.0369558020195331,0.0390486553707445,0.0410663123365029,0.0429482312068983,0.0574300371189056,0.0713666147624073,0.0843826604370508,0.0974065518689626,0.1097983467593323,0.1257261147842251,0.1383533200559345,0.1509247448979591,0.1625485426535228,0.1732085292322191,0.1862211416399509,0.1986507232901593,0.2106744319972184,0.2207871675517384,0.2305502742029431,0.2405337818399097,0.2499581841902786,0.25922346462887,0.2679640718562874,0.2753437360473503,0.2825815405968078,0.2889403454607117,0.2951921256861631,0.3011193403801443,0.3072669826224328,0.312537751315903,0.3173681179740116,0.3220317411833581,0.3266779893946662,0.3314356664509226,0.3308143059203879,0.3302783855564271,0.3297228012845794,0.3286828422876949,0.3292101628974058,0.3276621787025703,0.3251951581808413,0.3264871244283442,0.3266424292078447,0.3269357569277377,0.3278189023478391,0.3297095730408018,0.3307425515022356,0.3314399002049363,0.3317577618887662,0.3332553788587465,0.3347910040890504,0.3372074858624675,0.339771852473931,0.3411452137362201,0.3437726613488034,0.3458853395388195,0.3472534332084894,0.349472891566265,0.3528644620400559,0.355419559844651,0.3572516758074345,0.3622924260834346,0.3591780821917808,0.3733840304182509,0.0,1.6549091287250106,58.0616795344496,191.6795014914244,261.799412608301,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95708,43882,414.3749738788816,6363,65.37593513603879,5007,51.70936598821415,1927,19.7684624064864,77.36002699221102,79.73096831450029,63.33690834044432,65.08824462872137,77.12285505087668,79.49645748422792,63.24970994184288,65.00486183712766,0.2371719413343385,234.51083027237016,0.0871983986014441,83.38279159370643,150.72926,105.59989875833269,157488.67388306098,110335.49834740323,332.23271,212.8641589893876,346538.23086889286,221816.62869288636,350.72724,169.2941793304531,362338.8431479082,173823.5182100039,2847.96544,1296.9011870530044,2944067.3715885817,1323457.7120543784,1179.1106,517.518172005215,1217642.0048480795,526396.6916490648,1883.0283,775.1314848875198,1934594.621139299,780281.0300735488,0.37875,100000,0,685133,7158.576085593681,0,0.0,0,0.0,28253,294.5835248882016,0,0.0,32191,332.31286830776946,1671505,0,59934,0,0,6027,0,0,60,0.6269068416433318,0,0.0,0,0.0,0,0.0,0.06363,0.168,0.3028445701713028,0.01927,0.3312387791741472,0.6687612208258528,24.674946280638544,4.337376073098722,0.3133612941881366,0.2402636309167166,0.2292790093868583,0.2170960655082884,11.470764106888437,6.065804629896624,20.332738763970823,12386.540343535264,56.721375356901326,14.461855112321102,17.72601291585262,12.847198634532134,11.686308694195477,0.578789694427801,0.7863674147963424,0.7214786488209051,0.5984320557491289,0.1223551057957681,0.7472527472527473,0.9052631578947368,0.8782816229116945,0.7090909090909091,0.1377551020408163,0.515650741350906,0.7087912087912088,0.6643478260869565,0.563573883161512,0.1189674523007856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021472485845377,0.0044197102859633,0.0067483230670874,0.0091326520246246,0.0116359493876886,0.0136756140279418,0.0160958205912334,0.0183204392822878,0.0203731152568361,0.0226151231597698,0.0248621050257335,0.0269188123691018,0.0290197852823824,0.031105480538475,0.0331510524143623,0.0350282252228035,0.0372430797281617,0.0393697518242114,0.0413866988412972,0.0433369108774708,0.0574075234454957,0.0713485792035166,0.0843124501699467,0.0963914977755808,0.1082984533310841,0.1230891214716143,0.1359407652568713,0.1476660777761222,0.1584658599365581,0.1690408255207774,0.1823528778102142,0.1945986301814522,0.2066207316277957,0.2176688565088595,0.2281079892230714,0.2380061132276069,0.2483377956269522,0.2573902288188002,0.2664580711718758,0.2744725424427323,0.2819979188345473,0.2892184359369887,0.2960965861388012,0.3020519082507302,0.3075382131193317,0.3132935164090881,0.3175784719702751,0.3221739240956811,0.327057453416149,0.3318121265679201,0.3306587326162172,0.3305526877279923,0.3296156340768731,0.3300209734577276,0.3294624934949074,0.32701704937118,0.325461102850454,0.325930539393244,0.3280146080070992,0.3283781615956366,0.3300641973460106,0.3313266091625051,0.3321777629270737,0.333377902571645,0.3361860242119142,0.3374060883354564,0.3389709860197603,0.342989388834661,0.3465503289589417,0.3488010214260064,0.3509703405346027,0.3543622013651877,0.3561540397684369,0.3603013928000609,0.364880059970015,0.3674556213017751,0.3740831295843521,0.3718940936863544,0.3707927677329624,0.3754833720030935,0.0,2.3942807785878224,59.92850802163577,182.67143796546776,274.6633162062735,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95745,44293,419.69815656170033,6330,64.71356206590423,4930,50.8538304872317,1931,19.75037860984908,77.33346816806463,79.69632760176405,63.32120940122799,65.07047033824651,77.09025255850429,79.4561138208472,63.23058213079079,64.98379640714873,0.2432156095603375,240.21378091686077,0.0906272704371957,86.67393109777777,151.5448,106.07565351925932,158279.5968457883,110789.7577098118,335.37355,215.61136212366628,349627.58368583216,224543.6447593416,347.7243,167.69258010222796,359342.2633035668,172111.12787118318,2818.55788,1294.4392946650014,2909415.677058854,1317616.06664874,1178.80388,522.2793691389842,1213753.595488015,528085.6476522502,1896.4258,799.2765921676647,1941628.7012376627,800699.1642011999,0.38339,100000,0,688840,7194.527129354013,0,0.0,0,0.0,28533,297.3314533396,0,0.0,31948,329.855344926628,1664666,0,59756,0,0,6016,0,0,64,0.6579978066739777,0,0.0,0,0.0,0,0.0,0.0633,0.1651060278045854,0.3050552922590837,0.01931,0.326668671076368,0.673331328923632,24.69303286589485,4.412999573926961,0.3190669371196754,0.2373225152129817,0.2196754563894523,0.2239350912778904,11.307576196496088,5.777904502436953,20.57855721719982,12479.883048983422,56.11104958296189,14.086334493455068,17.78938044464773,12.054220999913182,12.181113644945912,0.5649087221095335,0.7888888888888889,0.6891290527654164,0.5974145891043398,0.118659420289855,0.7406015037593985,0.9046511627906976,0.8609756097560975,0.7814814814814814,0.1454545454545454,0.5,0.7216216216216216,0.6285468615649183,0.5362853628536285,0.1119909502262443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000151983383,0.0047154504522776,0.0069220307330044,0.0091243471722652,0.011482679359655,0.0136749177773931,0.0157097418749745,0.0180441305545916,0.0201238706512407,0.0224171639728537,0.0244507550516182,0.0267234741543041,0.0288246968933496,0.0307106076210092,0.032675085634105,0.0344813329474511,0.03606486083499,0.0378633019621678,0.0401917059123184,0.0420563667798446,0.0570059605206843,0.0713351264796073,0.0844980273650633,0.0976104835825918,0.1099346129508542,0.1257494527805094,0.1387904509283819,0.150522069545411,0.1616004101424817,0.1722577324010124,0.1848659829354477,0.1978661703601108,0.2100614564638059,0.2207296395558715,0.2307768475020078,0.241048586269146,0.2506838150740753,0.2599320233191527,0.2687392172886588,0.2766154797485314,0.2839296248742062,0.2922709834378216,0.2987693764051591,0.3044150242616665,0.309868213479601,0.3158529531217309,0.3203669908252293,0.3259245139153641,0.3307979872456569,0.3352247235491277,0.3338676652836898,0.3328473979535702,0.3322490248264402,0.3309967046308608,0.3312224055657137,0.3294316177034594,0.3275605036952453,0.3279084677220496,0.3279170800123148,0.3292861740934125,0.3299390529770276,0.3309995648906293,0.3323703052380354,0.3338106638623498,0.3368182694160724,0.3387573577501635,0.3392760516048187,0.3419304046606833,0.344549646263771,0.347869216728831,0.3513710154153972,0.3550098127618946,0.3575520997292702,0.3580425986716543,0.3614730878186968,0.3670263788968825,0.3772859996926387,0.3840327533265097,0.3923270792495099,0.3944530046224961,0.0,2.399561485585607,58.24799101604661,187.89421014357225,266.04853700201016,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95803,43740,414.298090873981,6418,65.90607809776311,5068,52.38875609323299,2013,20.68828742314959,77.34149214859087,79.67987923195588,63.33904717832892,65.07217372096976,77.10198859510113,79.4408331560493,63.251111868664,64.98644738405845,0.2395035534897402,239.046075906586,0.0879353096649211,85.72633691130704,150.34734,105.24251024792127,156933.853845913,109853.04243908988,334.09813,214.0096767856074,348192.812333643,222843.44622361235,341.68161,164.30284774323806,353217.7071699216,168907.2164943522,2935.37088,1329.786944526602,3035006.461175537,1359084.0626354096,1219.67206,526.575497413711,1261633.059507531,538174.2023576387,1984.62,819.0581542350465,2041432.105466426,829863.5376626888,0.37959,100000,0,683397,7133.356992996044,0,0.0,0,0.0,28403,295.930190077555,0,0.0,31409,324.499232800643,1676377,0,60107,0,0,5937,0,0,69,0.7097898813189566,0,0.0,0,0.0,0,0.0,0.06418,0.1690771622013225,0.3136491118728576,0.02013,0.3404631951615282,0.6595368048384718,24.62117820003799,4.374273132086361,0.3151144435674822,0.2231649565903709,0.2255327545382794,0.2361878453038674,10.9690429370752,5.531324083579429,21.25969712453477,12429.66513979014,57.32690539192223,13.599123883703712,18.01661632317296,12.729961683159802,12.981203501885764,0.5542620363062352,0.7833775419982316,0.6963055729492799,0.5923009623797025,0.1119465329991645,0.7261345852895149,0.9328358208955224,0.8926701570680629,0.732824427480916,0.0862068965517241,0.4963060686015831,0.700960219478738,0.6345679012345679,0.5505107832009081,0.1181347150259067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.004541629917987,0.0066873002181744,0.009043612567573,0.0113852571602991,0.0134153670635931,0.0153190274151436,0.0173390926079098,0.0192244764397905,0.021390976673698,0.0233676482651136,0.0254875180990131,0.0275357697569405,0.0297311218708148,0.0317291619373877,0.0335517747503772,0.0354753867500569,0.0374174005954418,0.0395270059643799,0.041453258380179,0.0564974698732328,0.071172405140055,0.085088546578644,0.0978626371316884,0.1097001949523157,0.1255469823485889,0.1380004876342319,0.1495294305311852,0.1610049200098186,0.1716787413726583,0.1852122908034224,0.1968175381322494,0.2085383737982727,0.2191590725321794,0.2285645180795743,0.2390413991587336,0.2489383756311231,0.2583086319949699,0.2670690690010532,0.2751031794121346,0.2828097398773856,0.2903493205062345,0.2982165861037902,0.3044009048365669,0.3098002110702718,0.3146573471321511,0.3191388337019405,0.3242618578957394,0.3293874386146291,0.334478672985782,0.3341984938138784,0.333388300284454,0.3334130994777664,0.3316097349606413,0.3301289670747652,0.3285112897053195,0.3266757475924987,0.3278777421740202,0.3293022937584455,0.3304128596205768,0.3313315191892653,0.3339274397972117,0.3345792037628086,0.3368154408303257,0.336777807286511,0.338401151380348,0.339193886638513,0.3421328504717431,0.3440357218796513,0.3465834033865738,0.3484323775222792,0.3518030848605363,0.3572522982635342,0.356855151045701,0.3604884098063531,0.3609275501622011,0.3627986881149461,0.3686931348221671,0.3676056338028169,0.3666019417475728,0.0,1.9361262763659044,56.36718673351193,196.00892380501315,282.6092144490388,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95705,44267,418.7659996865368,6422,65.9735645995507,5026,51.97220625881616,1972,20.218379395015933,77.3419109081298,79.71267248611596,63.33255108723839,65.08183620464321,77.10009412558769,79.47278570660364,63.24285413015565,64.99579428335049,0.2418167825421164,239.88677951231807,0.0896969570827366,86.04192129271837,151.74214,106.30055014684436,158551.9460843216,111071.05182262616,337.37371,216.88129699755245,351947.8606133431,226048.0507784885,351.66108,169.3717682704203,364689.43106420775,174788.7951296405,2890.70556,1327.1803560559176,2990107.977639622,1356626.8460728156,1224.35008,539.3008016569564,1262464.4166971422,546716.1296264388,1937.72812,814.4482495729593,1988331.8321926757,817813.0787519894,0.38208,100000,0,689737,7206.906640196437,0,0.0,0,0.0,28605,298.31252285669507,0,0.0,32348,335.228044511781,1663344,0,59681,0,0,6003,0,0,63,0.6582728175121467,0,0.0,2,0.0208975497622903,0,0.0,0.06422,0.1680799832495812,0.3070694487698536,0.01972,0.3262390236642357,0.6737609763357643,24.66070680456645,4.339019116454879,0.3366494230003979,0.2266215678471946,0.2097095105451651,0.2270194986072423,10.996977499867118,5.720370082044529,20.97525829266944,12531.961726075788,57.20979987550884,13.6672679615718,19.225028585636483,11.840793437777386,12.476709890523182,0.564066852367688,0.7647058823529411,0.7056737588652482,0.5996204933586338,0.1209465381244522,0.7280118255728012,0.8873239436619719,0.8656036446469249,0.7423076923076923,0.1491228070175438,0.5036754696433433,0.6914446002805049,0.6496408619313647,0.552896725440806,0.1139101861993428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0046620046620046,0.0068878068573747,0.0091005119037945,0.0114389718143734,0.0135924900219923,0.0156375832084569,0.0176675920633624,0.0200122649223221,0.0221376155239645,0.0243364873038165,0.0263482153858791,0.0283825056816428,0.0304441445246901,0.0325573235919344,0.0345683096261991,0.0368375811679905,0.0390415010533525,0.0410614205650234,0.0431021905416953,0.0580998234968511,0.0725733008133485,0.0867224880382775,0.0998327530530456,0.1122422068674508,0.1281663316051211,0.140701918180275,0.152530102524247,0.1638407213906428,0.1736028409883377,0.1864625857667575,0.198807243129742,0.2101318423113741,0.2205612177944971,0.2311635171700728,0.2413174647107666,0.2513577107936614,0.2604238097914676,0.2694510929364656,0.2773886370919745,0.284241821294711,0.2916691046540203,0.2984210775494745,0.3039236835166942,0.3095755926272432,0.3154695110672668,0.3204500181661008,0.326745902473786,0.3318701524038897,0.3358811823776703,0.3362536503963287,0.3356280143451914,0.335192940052275,0.3342655729669728,0.3339265059168965,0.3324620135131004,0.3295567670063996,0.3304524656837824,0.3309815846117052,0.3315465022782096,0.3314894335164732,0.3330628562381253,0.3345449197411547,0.3350451884909511,0.3365298894055851,0.338006840552466,0.3376660477074704,0.3408840301187738,0.3436651503931732,0.347445780245237,0.3518391592414896,0.3552519214346712,0.3582789430327609,0.3567359507313318,0.3589035880841343,0.364539686340237,0.3658761934093009,0.3699814700432365,0.3644781144781144,0.3570050173678116,0.0,2.104872716127981,59.788212084190114,187.16439839526632,277.3257326870857,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95713,43884,415.3981172881427,6297,64.67251052626081,4932,50.99620741174135,2018,20.72863665332818,77.33810060160408,79.72070202132137,63.31256206328344,65.07494820286284,77.08925517430667,79.4728312201092,63.2209345174565,64.986148809212,0.248845427297411,247.8708012121729,0.0916275458269382,88.7993936508451,151.75578,106.25046158058872,158552.94474104873,111009.43610647324,333.27599,213.87372380535845,347673.3568062855,222923.04473306495,343.49704,165.3872578958204,355762.634124936,170370.66732470883,2848.5074,1293.58300428233,2947106.2029191437,1322536.5042181632,1177.30501,521.7443154663703,1213233.1762665468,528309.8173355456,1978.8107,824.7997675081283,2034666.1999937312,833375.5346097548,0.37938,100000,0,689799,7206.952033684035,0,0.0,0,0.0,28282,294.92336464221165,0,0.0,31453,325.5043724467941,1664562,0,59740,0,0,5974,0,0,64,0.6686656984944574,0,0.0,1,0.0104479015389758,0,0.0,0.06297,0.1659813379724814,0.32047006511037,0.02018,0.3402640764911215,0.6597359235088784,24.721033730921487,4.401548500013031,0.3266423357664234,0.2274939172749391,0.2128953771289537,0.2329683698296837,11.238786421723669,5.7443071858857015,21.456620051417683,12403.226791579598,55.68701260268156,13.45861719812742,17.93794693081689,11.70925654546344,12.581191928273824,0.5547445255474452,0.7941176470588235,0.6852886405959032,0.579047619047619,0.1157528285465622,0.7250589159465829,0.931472081218274,0.8556962025316456,0.7520661157024794,0.1487603305785124,0.4954905711943154,0.7197802197802198,0.6299342105263158,0.5272277227722773,0.1069459757442116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432547485354,0.0044735240413877,0.0066095396673909,0.0088521657824664,0.0108973250170429,0.0131901934222186,0.0152683434306346,0.0173634163032265,0.0195837807434678,0.021604464240004,0.0235133666259908,0.0256502407918921,0.0276583931398959,0.0297410020081355,0.0316910126268878,0.0338345476153567,0.0359084272978597,0.0380046273720469,0.0400993907637286,0.0423355383092869,0.0566863349172367,0.070671119160028,0.083668223073291,0.0963494283821163,0.1085156867914579,0.1245015179241989,0.1376957684308815,0.1495501251131342,0.1606932957192622,0.1714135530310344,0.1848651676919596,0.1972373776738546,0.2086335633585127,0.2188932780373576,0.2290015847860538,0.2398368577381744,0.2498296641311753,0.2587468479827089,0.2674328805705719,0.2756798275783005,0.2829131003810472,0.2906893684789863,0.2976344187919781,0.3031742034512117,0.3090800782912092,0.3138917691206241,0.3183960490360751,0.3234146714602616,0.3282991962665283,0.3328931382388674,0.3318158553996175,0.3311167100353833,0.3310033821871477,0.3296720766551529,0.3292953015146335,0.3285048591311812,0.3275804740567158,0.3277469551229441,0.3291067858302431,0.3297389938229728,0.3299028980617103,0.331455231994939,0.3323122114981116,0.3318157351753835,0.3333574146317969,0.3337233489339573,0.3357010939053843,0.3393591312807959,0.3427791771620487,0.3445305090104331,0.3471444062895355,0.3516315789473684,0.3566132951217993,0.3597441685477803,0.3607930745601787,0.3588172929673695,0.3565059694725706,0.3595190380761523,0.3572789115646258,0.3614274867122247,0.0,2.10677364011163,55.99289944931692,185.3770090641653,275.0001238597911,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95649,43738,414.3587491766773,6250,64.04667063952577,4917,50.81077690305178,1974,20.292946084120064,77.27782633283482,79.68634814334249,63.2892740309558,65.0711936086955,77.02981077403349,79.43935889550336,63.19778843869985,64.9827220148414,0.2480155588013275,246.9892478391245,0.0914855922559425,88.47159385409498,151.16574,105.93490647458708,158041.92411839118,110753.58809458234,335.47968,215.4859938766128,350121.0362889314,224669.83973759552,348.88034,168.76840952662687,360178.8518437203,173120.79470667063,2821.49968,1294.739812326434,2916753.755920083,1320592.177990815,1164.39596,513.567581949652,1202622.620205125,522188.5560221768,1939.51866,812.9295883587408,1995111.7941640792,821543.4200626113,0.37871,100000,0,687117,7183.723823563237,0,0.0,0,0.0,28519,297.5253269767588,0,0.0,32033,330.4477830400736,1664005,0,59681,0,0,5980,0,0,57,0.5959288649123358,0,0.0,1,0.010454892366883,0,0.0,0.0625,0.1650339309762087,0.31584,0.01974,0.3222307104660046,0.6777692895339954,24.6459863284049,4.368715536636592,0.3203172666259914,0.2383567215781981,0.2109009558673988,0.2304250559284116,11.254079592190571,5.865347854929881,21.07827645598284,12355.435610071654,55.679064335282725,13.990909080931598,17.73549179032465,11.502820690428983,12.449842773597478,0.5556233475696563,0.7994880546075085,0.6958730158730159,0.5564127290260367,0.1076787290379523,0.7119029567854435,0.927400468384075,0.8614609571788413,0.7113821138211383,0.1044176706827309,0.4983324068927182,0.7261744966442953,0.6400679117147708,0.5082174462705437,0.1085972850678733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019354315708408,0.0040868895018659,0.0063143361825675,0.0084555423437706,0.0108957729284297,0.013131488065525,0.0153187149413564,0.0175472642405548,0.019670219512694,0.0218395632087358,0.0237743589743589,0.0259565507678085,0.0279572769180111,0.0300331869808092,0.0320669006813958,0.0342555722190619,0.0364544474840421,0.0382522739543963,0.0402189408838801,0.0419985819743921,0.05672246953832,0.0707044259651033,0.0843095268085821,0.0963701996442816,0.1086229276374803,0.1234492103146038,0.1365108696806533,0.1484598911109453,0.1593296113285845,0.1695672245901463,0.1832386822849876,0.1955302423284319,0.2076671056784909,0.2187120424577337,0.2290079697063097,0.2392434097532328,0.2489840575179743,0.2576286061478914,0.2667241633662804,0.2742932356644157,0.2811607607376148,0.2879099558194441,0.2949580726425471,0.3013242255377794,0.3065790113255237,0.312705069692858,0.3185991457594849,0.3238552437223043,0.3289026635889722,0.3329459002535925,0.3329375733617561,0.3314334607582009,0.3304554253981263,0.3300005796093433,0.3292237510994499,0.3272545705945613,0.3243320519744575,0.3254552946023897,0.3257683539313324,0.3259405231099964,0.327593984962406,0.3290468536048104,0.3306700868358529,0.3304564203730272,0.3312028171052314,0.3317676530452481,0.3322850853369164,0.3352742001835385,0.3395898382060743,0.3426909965911369,0.3438461185328008,0.3494927923117992,0.3529560703886568,0.3571098799630655,0.3591154977697637,0.3592023065833734,0.3588947531822415,0.3517141676992978,0.3521641371557054,0.3456505003849114,0.0,2.2208801651015784,57.80487244620128,178.52374674813083,275.91380723684495,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95823,44079,416.8832117550066,6249,64.01385888565376,4876,50.35325548146061,1967,20.162174008327856,77.39792083527668,79.70234273102177,63.37134666233783,65.07175922506896,77.15619580619688,79.46289573486243,63.28100800294085,64.98536208516379,0.2417250290798023,239.4469961593444,0.090338659396977,86.3971399051735,152.0948,106.4791461837739,158723.58410819952,111119.57487586036,334.73306,214.8688041064556,348789.64340502804,223701.50197345985,343.77573,165.35242155812935,355868.8415098671,170281.43916843715,2792.85312,1269.115324097711,2885874.247310145,1295811.287321114,1192.25416,520.3488839361238,1229249.9191217138,528299.9359681925,1928.63246,806.520527750027,1978420.1913945505,810618.5567059468,0.3814,100000,0,691340,7214.708368554523,0,0.0,0,0.0,28462,296.4632708222452,0,0.0,31556,326.42476232219826,1665783,0,59728,0,0,6075,0,0,57,0.5948467486929025,0,0.0,0,0.0,0,0.0,0.06249,0.1638437336130047,0.3147703632581213,0.01967,0.3184246679896199,0.6815753320103801,24.773301855285737,4.405694962368879,0.3076292042657916,0.2456931911402789,0.2147251845775225,0.2319524200164069,11.187330372701968,5.762024291024108,20.78053655608605,12410.60320105952,55.014162670057566,14.285993948160227,16.84308458490222,11.58301010581166,12.302074031183448,0.5547579983593109,0.7871452420701168,0.676,0.5644699140401146,0.138815207780725,0.7130365659777425,0.927860696517413,0.820855614973262,0.7125506072874493,0.1744680851063829,0.4997236042012161,0.7160804020100503,0.627886323268206,0.51875,0.1294642857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022373855997408,0.0046915056389263,0.0067853339418834,0.0088441659981925,0.0108063597918022,0.0131485213001974,0.0150801899288785,0.0173731191022698,0.019545538140875,0.0214032862024513,0.0233797102637132,0.0255247553193672,0.0277603690423597,0.0298436808578514,0.0320253151509529,0.0340939597315436,0.0361994227128358,0.0384639303482587,0.0403227481359945,0.0422867966944901,0.0566862436235799,0.0707382381858879,0.084288455690362,0.0968898515371998,0.1091984314386911,0.1245466944376896,0.1380637772145455,0.1503400853672815,0.1618661994401829,0.1727433628318584,0.1855035002692514,0.1980637135594137,0.2100307685617056,0.2199127477886266,0.2299427012878463,0.240264413761031,0.2502397787344144,0.2594787262750742,0.2686848072562358,0.2764211827169535,0.2831689579021609,0.2908190093364026,0.297651149588419,0.3033908245460747,0.3081931830582871,0.3132727250359836,0.318428776618997,0.3233199172179124,0.3281058088872225,0.3326445193218911,0.3317316081231628,0.331220676598897,0.3311275956053837,0.3305527942256991,0.3289678365605416,0.3277037850702549,0.3262855610079366,0.3272283871812498,0.3281742717370924,0.3273365902364226,0.3284386165098487,0.3290159532459327,0.3304580855874717,0.3315566703245022,0.3328672677305819,0.3334465283945457,0.3346123009964494,0.3383851167499841,0.3405034324942791,0.3443300608132278,0.3456643164545371,0.3473841874398202,0.3494610019023462,0.3521882425078562,0.3549397361677897,0.355685479059778,0.3553846153846154,0.3566221142162818,0.3563218390804598,0.3548510313216195,0.0,2.084305625915808,55.29355821672363,182.82887862910036,272.1993912456632,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95556,44109,417.48294193980496,6207,63.774121980828,4872,50.43116078529867,1944,20.00920925949182,77.19945181010942,79.67055932472475,63.224607941291474,65.05373172659324,76.96151618494429,79.43248743769347,63.136496689765735,64.9678602885569,0.2379356251651359,238.0718870312819,0.0881112515257385,85.87143803633523,150.09588,105.16263303425178,157076.35313324124,110053.40641534992,331.48195,213.2851411804608,346322.8787307966,222629.11923946257,347.6791,168.0070995891849,359929.1514923186,172853.1309975216,2817.41916,1291.3964946534795,2918972.91640504,1321979.8805448953,1220.37622,539.2693899037073,1262125.0366277366,549352.2625571023,1915.22808,798.5787177152857,1972802.0846414668,809218.048036907,0.37971,100000,0,682254,7139.834233329148,0,0.0,0,0.0,28103,293.5032860312278,0,0.0,31911,330.15195278161497,1666461,0,59783,0,0,5856,0,0,56,0.5755787182385198,0,0.0,0,0.0,0,0.0,0.06207,0.1634668562850596,0.3131947800869985,0.01944,0.3243408951563458,0.6756591048436542,24.645778680554965,4.375150760985407,0.3175287356321839,0.2192118226600985,0.2337848932676519,0.2294745484400656,11.35665127834153,5.919920486007481,20.76093171133873,12442.718686596343,55.49269650938766,12.782400532840612,17.70037781351127,12.66335352308421,12.346564639951572,0.5656814449917899,0.7949438202247191,0.7052359405300582,0.5803336259877085,0.1386404293381037,0.7314814814814815,0.9151193633952256,0.8606356968215159,0.7256317689530686,0.2145922746781116,0.5055928411633109,0.7293777134587555,0.6493848857644992,0.5336426914153132,0.1186440677966101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022604940649359,0.0043018607576956,0.0067024128686327,0.0091813079551,0.0114529462067842,0.0139860139860139,0.0160840945042608,0.0183527488248518,0.0203540728612361,0.0226380676170077,0.0246160794941282,0.0268889071690042,0.0287638644298204,0.0310391780652348,0.0330694665481677,0.0352462579963977,0.0375014260083175,0.0394824360839742,0.041467454142058,0.0432217988202745,0.0578150170505659,0.0722285139046181,0.0853550855653197,0.0980516127672578,0.1104017588178714,0.1259846693737343,0.1389574468085106,0.1506200243314195,0.1620799365820737,0.1724697836466084,0.1861582653017148,0.1982506972252064,0.2101537018250046,0.2208779396279396,0.2313439424371509,0.2411560205702353,0.2509678863153183,0.2592320971217745,0.2681239403283986,0.2764791692989811,0.2833348798366892,0.2904020265515785,0.2963450656606997,0.3018666218228991,0.3071499031822001,0.3134214005906849,0.3186802145216594,0.3227123661745377,0.3276571977815012,0.3320229255185376,0.3315498628619296,0.3310887263695322,0.3303966001666031,0.3298715218934225,0.3290699581115931,0.3273925668720328,0.3256637449186992,0.325895285024473,0.3278812323006951,0.3289013296011197,0.329679642917679,0.3301703259618057,0.3314495381890261,0.3322019420967452,0.3332365817671673,0.3351693025939622,0.3356178132079259,0.3385110816442508,0.341010899086452,0.3443293239649081,0.3468082210426024,0.3452343171479953,0.3460235825388861,0.3481504034099558,0.3516699410609037,0.3560265214302628,0.3599514194625778,0.3573280159521436,0.3642798802069153,0.3656404408969973,0.0,2.083411970740097,57.16482741234877,186.89093434941077,264.96837471522645,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95676,43924,415.0048078933066,6179,63.41193193695389,4863,50.16932145992725,1914,19.68100673105063,77.33990302576841,79.73233515616592,63.32261558699434,65.08975914357895,77.09686954670211,79.49001893894105,63.23295054093327,65.00290273687726,0.2430334790662982,242.31621722486807,0.0896650460610715,86.85640670168482,151.3193,105.98824230125872,158157.82432375936,110778.06586945392,335.81159,216.3612094963528,350328.0341987542,225479.862462602,348.37741,168.75561360025506,360213.10464484297,173305.96105741238,2808.29676,1292.7022297521823,2900059.2416070905,1316027.6514872506,1174.98044,517.8461539105554,1210835.8417994063,524068.6812016294,1883.66946,791.7491003376336,1937653.601739203,799583.2361476592,0.37858,100000,0,687815,7188.992014716334,0,0.0,0,0.0,28539,297.598143735106,0,0.0,31961,330.1141352063213,1664116,0,59709,0,0,5878,0,0,61,0.6375684602199089,0,0.0,0,0.0,0,0.0,0.06179,0.1632151724866606,0.3097588606570642,0.01914,0.3335901386748844,0.6664098613251156,24.621898172561597,4.492316996668673,0.3131811638906025,0.2251696483652066,0.2298992391527863,0.2317499485914045,11.216522598274224,5.68512620704642,20.48831362134997,12358.426372049442,55.36214237870766,13.207487422036358,17.342440634113615,12.451324238265572,12.36089008429212,0.5601480567550895,0.7972602739726027,0.7045305318450427,0.5760286225402504,0.1188997338065661,0.7157974300831443,0.908450704225352,0.8673469387755102,0.7366412213740458,0.1111111111111111,0.5019774011299435,0.726457399103139,0.6480990274093722,0.5268691588785047,0.1210407239819004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.004541077492271,0.0068593925987559,0.0092227684556941,0.0116632602218764,0.0141696695779637,0.0164410649488319,0.0184228790724259,0.0205164376840039,0.0224979016970664,0.024686042339433,0.0266377876778418,0.028741246516602,0.030839590865548,0.0329655585257356,0.0348442863642003,0.0369553055262012,0.0389865166440041,0.0411946446961895,0.0433237081591593,0.0582065853250877,0.0716289782244556,0.0853878595858075,0.0979371140636012,0.1098897621182551,0.1248690905628841,0.1381878361605295,0.1497296606922389,0.1615511128198556,0.1729616724738676,0.1855293762922122,0.1971893459116775,0.2088987473903966,0.2193423555390367,0.2289864641795972,0.2396557834581136,0.2496597273356092,0.2582187619540514,0.2660154964888995,0.2741787694140285,0.2813132656956768,0.2885541886898358,0.2949438534628628,0.3004336575782261,0.3061898345411947,0.3114105864817256,0.3162694689435166,0.3205250505590109,0.3253711236042385,0.329980330811981,0.3296330225790806,0.3289296232075523,0.327442109565487,0.3265190972222222,0.3251268167145174,0.3239509954058193,0.3227634682666582,0.3230430713147999,0.3239674497159527,0.3244114974072028,0.3251384523274959,0.3265926774359177,0.3282926523185041,0.3284480443927325,0.3288446714203122,0.3305843359344416,0.3319535242227868,0.3351414424926677,0.3391053391053391,0.3421908463551995,0.3415855101483571,0.3438098276962348,0.3431922810115406,0.3463648834019204,0.3461610662661911,0.3471465782618991,0.3495384615384615,0.3538461538461538,0.3556426771212545,0.3557617942768755,0.0,2.485566480807158,57.83054964833054,182.59023919399823,264.2675869004229,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95794,44179,417.9071758147692,6361,65.24416978098837,4960,51.2975760486043,1945,19.96993548656492,77.331780499572,79.67083300146516,63.32970022966426,65.06198705257678,77.0901736190527,79.42954345992185,63.24082313184406,64.97520232208224,0.2416068805192992,241.28954154330984,0.0888770978202018,86.78473049454283,149.6715,104.8568551940864,156243.08411800323,109460.77540773578,331.86529,213.12369015064772,345963.8599494749,222009.55756087136,349.50534,169.3565959982679,361618.1911184416,174263.5921567654,2823.66404,1297.0281428808223,2923911.6854917845,1330292.8866959866,1164.75119,513.0532199087353,1206460.9474497358,526193.8958125307,1906.50446,796.5863385602773,1961246.9465728544,808131.9416537533,0.38122,100000,0,680325,7101.958369000146,0,0.0,0,0.0,28211,293.9954485667161,0,0.0,32036,331.22116207695683,1674121,0,60174,0,0,6045,0,0,75,0.7724909702069024,0,0.0,1,0.0104390671649581,0,0.0,0.06361,0.1668590315303499,0.3057695330922811,0.01945,0.3331833858149647,0.6668166141850352,24.462577896319463,4.331677845439582,0.3147177419354838,0.2459677419354838,0.2157258064516129,0.2235887096774193,10.869453161694462,5.549259950636635,20.79435208869482,12510.907223003089,56.42859481905207,14.657213986599698,17.71213365259947,11.909649640128572,12.149597539724326,0.5542338709677419,0.7737704918032787,0.6873798846893018,0.5785046728971963,0.1018935978358882,0.7343635025754232,0.9043659043659044,0.8469135802469135,0.736,0.1614349775784753,0.4862538183837823,0.6887686062246279,0.6314878892733564,0.5304878048780488,0.0869074492099322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195745758419,0.0045821337334252,0.0071133570783484,0.0092750619691982,0.0114314772438342,0.0137883277833786,0.0158132990762831,0.0180285025930009,0.0200772832287215,0.0222961560116701,0.0241009554270718,0.0262131137441731,0.0282661895654677,0.0301603815370669,0.032241085711337,0.0341562254476285,0.0362480193046594,0.038417258725302,0.0405582342671876,0.0424714444872502,0.0571306334978556,0.0718036147602711,0.0857625022273932,0.0986634724498802,0.1113932586637445,0.1267699395578849,0.1399773187353605,0.1519794978679058,0.1633086461912791,0.1740197128776515,0.1873351775507787,0.1996041231761003,0.2111181191413471,0.2212549079653954,0.2314092334782369,0.2410374014003368,0.2504546722454672,0.2591971927614634,0.2684190830432169,0.2763918623421525,0.2842061445602026,0.2915025192008697,0.2989434578388802,0.3047089420760573,0.3091182973347263,0.3149114045795879,0.3209553390276282,0.3257085329799164,0.330433091286307,0.3345002509973843,0.3345006869427009,0.3335900962861073,0.3328449878852764,0.3323207776427703,0.3318903962870403,0.3311443213551416,0.3298064720812182,0.3300162836982088,0.3309644496198369,0.3319936409267099,0.3326204813626728,0.3336365074343562,0.3337044194253066,0.3349091479398651,0.3365117682558841,0.3375189661486946,0.3394367001828153,0.3443629380096338,0.3462361817862783,0.3502447176793601,0.3552830275019448,0.3583917018660108,0.3621941896024465,0.3634687764037176,0.364739336492891,0.368176400476758,0.370089699969069,0.3687842500507408,0.3715634545959456,0.3622047244094488,0.0,1.86209506162713,60.101458171878285,186.64113931970576,266.6562364725854,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95687,44075,417.0472477975065,6440,65.9023691828566,5043,52.117842549144605,2019,20.71336754209036,77.34192318165195,79.72029369871012,63.32298576779221,65.07629506014712,77.08497672409366,79.46361294898557,63.22773976558151,64.98384734383156,0.2569464575582856,256.680749724552,0.0952460022106933,92.44771631556148,151.30698,105.89440994834432,158126.53756518647,110667.0462532469,333.21433,213.1493977885811,347624.0659650736,222148.74450411645,346.72698,167.6480518575192,359310.1361731478,172732.34237835946,2884.1542,1326.79992575012,2981787.0348114166,1354317.1551249858,1201.9364,535.1524041496798,1240926.6776051084,544139.1352753437,1978.31274,835.9900688172102,2031161.328080095,842027.7858220242,0.38178,100000,0,687759,7187.569889326659,0,0.0,0,0.0,28309,295.22296654717985,0,0.0,31839,329.6999592421123,1667424,0,59847,0,0,5938,0,0,55,0.57479072392279,0,0.0,1,0.0104507404349598,0,0.0,0.0644,0.1686835350201687,0.3135093167701863,0.02019,0.336843666567784,0.6631563334322159,24.73590645832341,4.388621783012447,0.3252032520325203,0.2256593297640293,0.2274439817568907,0.2216934364465596,11.197594934671883,5.768755733318032,21.600516600929424,12501.228956123798,57.04912332773503,13.56329944933837,18.457848342946598,12.708157897253953,12.319817638196117,0.5593892524291096,0.7882249560632689,0.7006097560975609,0.5579773321708805,0.1207513416815742,0.7263236390753169,0.9230769230769232,0.8538812785388128,0.7007299270072993,0.1592920353982301,0.4989195029713668,0.7142857142857143,0.6447587354409318,0.5131729667812142,0.1109865470852018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021870538562012,0.0045914799160762,0.0068170059953133,0.0091921100209234,0.011278004332218,0.0137240129502555,0.0160573374385743,0.0181961136695495,0.0201644239028181,0.0223212000204781,0.0244850249669329,0.0264627959992606,0.0284083311905374,0.0305706101757784,0.0328151451339857,0.0346007879796903,0.0366587596722568,0.0387469769469499,0.0406813502215012,0.0427026238459454,0.0571374851150061,0.0710561035370987,0.0841161714231734,0.0967453410920417,0.1091519199721422,0.1245740289977775,0.1375074322602565,0.1495834842448388,0.1612661827433959,0.1721039580045731,0.1856384928936528,0.1980458637087427,0.2094233428045766,0.22032878031696,0.2302450516303749,0.2409196675900277,0.2511946230796713,0.2602445174944837,0.268785241828434,0.2766042750120278,0.2837665794773269,0.2910965718231721,0.2982649375259075,0.3044302354874698,0.3101473592063029,0.3160815360142059,0.3217556917139671,0.3264196587725999,0.3303979041294874,0.3350688479530618,0.3345212062309333,0.334336185481645,0.3347127280944579,0.335016201828492,0.3340365159775972,0.3327974276527331,0.3309327466404976,0.3319305628616517,0.3334474436437704,0.334411002947218,0.3350897260402408,0.3360619995243003,0.3370423244877393,0.3376871114701856,0.3390116377129364,0.3390294808244195,0.3396312444786412,0.3414549798792756,0.3427880232802748,0.3452706722189173,0.3463755617085016,0.351931330472103,0.356024248547613,0.3568285280728376,0.3587078651685393,0.3585657370517928,0.3613966142684401,0.3682946357085668,0.3707037643207856,0.3755622188905547,0.0,2.181397214253762,58.69464330554937,189.0683064289388,276.858733962912,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95731,43871,413.8471341571696,6341,64.93194472010111,4943,50.99706469168817,1897,19.429442918176974,77.32392886815877,79.68798162074236,63.31606620966248,65.06515059124129,77.09150820317392,79.46033738395568,63.22997158033783,64.9842302785472,0.2324206649848577,227.64423678668777,0.0860946293246556,80.92031269409006,150.15396,105.2676528298909,156849.88143861445,109961.92751552883,336.50172,216.31332290516497,350870.5539480419,225322.5108952847,353.39077,170.78423181222257,365611.13954727305,175640.8917929031,2812.4844,1295.7126733781906,2902098.46340266,1317688.265429371,1128.83745,502.4409479351445,1160537.8090691625,506207.96600384766,1859.38962,773.4784673983556,1904585.80814992,772613.0740184314,0.3802,100000,0,682518,7129.540065391567,0,0.0,0,0.0,28591,297.9912463047498,0,0.0,32446,335.3772550166613,1667884,0,59894,0,0,6102,0,0,76,0.7938912160115323,0,0.0,0,0.0,0,0.0,0.06341,0.1667806417674908,0.2991641696893234,0.01897,0.3414450953883131,0.658554904611687,24.386081841602092,4.357976895345112,0.3291523366376694,0.237305280194214,0.2162654258547441,0.2172769573133724,11.419594312008469,5.965068940613387,20.101824553463278,12433.248244461449,56.41264627385603,14.109393357443825,18.57897447568863,12.011147992196944,11.713130448526638,0.5783936880436982,0.7953964194373402,0.7135832821143209,0.598690364826941,0.1163873370577281,0.7423547400611621,0.9175,0.8752941176470588,0.7843137254901961,0.1403508771929824,0.51939477303989,0.7322121604139715,0.6564059900166389,0.5405405405405406,0.1099290780141844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790118204746,0.0045625525960924,0.0069722126372622,0.0095815806051738,0.0122268787891117,0.0143380855397148,0.0165263136431295,0.0184960241714046,0.0207547362717132,0.0229548479574075,0.025016404199475,0.0271466266928139,0.0292490850022617,0.0313649145576465,0.0331971188574494,0.0353421542278271,0.0374145431945307,0.0395561737108693,0.0415973377703826,0.0434578757631957,0.0580097518193303,0.0725906860437134,0.0856552606466091,0.0983963405016036,0.1102522461720167,0.1251639656412643,0.1372727947964305,0.1493829395291386,0.1607827638142645,0.1712962466631645,0.1854547020323803,0.1984904517831268,0.210102942615199,0.2209698930843737,0.2309603923379736,0.2415220929331399,0.2508395532795573,0.2604817027212491,0.2686780630661309,0.2766459926398936,0.2835146501685725,0.2906010941764975,0.2975555397491524,0.3030997611875817,0.3095632072028227,0.3137823399504028,0.3187395811137711,0.3238293099492722,0.3285343709468223,0.3329235568597903,0.3323801944942744,0.3314272328933226,0.3304410395327182,0.3288170922355393,0.3286621740229987,0.3267793703295357,0.3248714907077896,0.3247696494737187,0.3250947325299559,0.3258298699677149,0.3248956207522795,0.3262163177352075,0.3267776730547701,0.3270133702991548,0.3296793115053608,0.3307445727241928,0.330829420970266,0.3344256096792488,0.3337095295196445,0.3378711885996338,0.3390379700620664,0.3394412577012959,0.3413038006544173,0.3459812941981598,0.3495466565923687,0.3561660126055417,0.3642824739150159,0.3689301223845243,0.3598093725178713,0.3573584905660377,0.0,2.4784836488414625,57.08681522475369,193.0476238776267,267.901512554366,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95784,44018,415.6539714357304,6404,65.69990812661823,4991,51.417773323310776,1992,20.29566524680531,77.4066300966336,79.74515076869518,63.35719594835807,65.08740802663333,77.15369365494251,79.49688448380972,63.26322655287623,64.99863307337016,0.2529364416910908,248.2662848854602,0.0939693954818423,88.77495326316875,150.55106,105.4335208572939,157177.6705921657,110074.25129175426,332.92723,213.69954662213,346802.0441827445,222326.4706236219,347.24826,167.300666025097,358729.6312536541,171700.0862827623,2852.20616,1299.7706609540307,2939730.4351457446,1318963.397805512,1183.98729,519.0507574178058,1220308.6110415102,526111.5447345008,1946.15762,821.1340832775143,1985151.3405161612,817302.3820713983,0.38081,100000,0,684323,7144.439572371168,0,0.0,0,0.0,28213,293.79645869873883,0,0.0,31840,328.530861104151,1672961,0,60036,0,0,6012,0,0,65,0.6681700492775411,0,0.0,0,0.0,0,0.0,0.06404,0.1681678527349596,0.3110555902560899,0.01992,0.3301057649337107,0.6698942350662893,24.98897665643652,4.412935216068027,0.3277900220396714,0.2294129432979363,0.2224003205770386,0.2203967140853536,11.021714462492609,5.715481973567577,21.121240739682705,12442.469243677402,55.996414203426966,13.600892617114242,18.17547030944254,12.185308713037326,12.034742563832877,0.5543979162492486,0.7842794759825328,0.6925427872860636,0.5657657657657658,0.0981818181818181,0.7261998426435877,0.9215686274509804,0.8863049095607235,0.7148760330578512,0.1324786324786324,0.4956989247311828,0.7082767978290366,0.6325060048038431,0.5241935483870968,0.0889145496535796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0041877065969053,0.0065353507677007,0.0087987563882425,0.0111369900631604,0.0134518645241441,0.015650170265696,0.0180574695044148,0.0203094975264728,0.022268615170494,0.0243609978067927,0.0266068790018059,0.0285617381652243,0.0305638196024335,0.0326461189568085,0.0348712335556886,0.0367155655790279,0.038771744313823,0.0410588870880605,0.0427897679357841,0.0578088967265973,0.0715480996506787,0.0852009476089645,0.0979231917263994,0.1103911156066927,0.1258849884819409,0.1391155957857248,0.149886763564449,0.1611571129796406,0.1721456344998232,0.1849385080536696,0.1981963472788417,0.2099789162518747,0.2206738382569759,0.2312390829094664,0.2422760269121813,0.2516926371677467,0.2611262284390672,0.2699296733212341,0.2784068142008312,0.2852087019881336,0.2914820746005213,0.2983622852274341,0.3037930703982364,0.3090650663297536,0.3143945464183134,0.3195642646966756,0.3242352522013539,0.3283071661744132,0.332281572624297,0.3316439316331482,0.3311630211846325,0.3311249876661545,0.3304372967112396,0.3301350126992143,0.3283652889779804,0.3263462176378599,0.3269731136166522,0.3271861986912552,0.3278624462680735,0.3277708220432418,0.3292310721669784,0.3295290951198648,0.3293153004612196,0.3293900716013314,0.3285836642529004,0.3295880149812734,0.3317483655019239,0.3339976922270009,0.3380993759380677,0.3416447547375102,0.3442813391065582,0.3468175565837189,0.3504486164517831,0.3525754060324826,0.355113968439509,0.3514669926650366,0.3535757091490212,0.3580654025831272,0.3610149942329873,0.0,2.5615627587854126,55.25993224316294,183.2276632744431,283.54878794991794,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95692,43718,414.0889520545082,6285,64.42544831333863,4953,51.205952430715215,1954,20.04347280859424,77.29491858535671,79.69573385167577,63.29396199958445,65.07343850245489,77.04791842497431,79.45125109565757,63.20245763004698,64.98541439132002,0.2470001603823988,244.48275601820055,0.0915043695374748,88.02411113487096,151.12702,105.84110181091071,157930.67341052543,110606.00866416286,335.25482,215.03939187075176,349794.1729716173,224166.795920978,344.07124,165.9029954098456,356230.6357898257,170821.53273283233,2842.2192,1303.2861734505177,2939480.834343519,1331273.103114305,1205.43967,532.2720087955615,1244061.2590394183,540596.9549423046,1915.70466,804.1033986743045,1966579.1497721856,809293.5748863749,0.37737,100000,0,686941,7178.666973205703,0,0.0,0,0.0,28493,297.1617272081261,0,0.0,31626,327.2060360322702,1667272,0,59850,0,0,5871,0,0,60,0.627011662416921,0,0.0,2,0.0209003887472307,0,0.0,0.06285,0.1665474203036807,0.3108989657915672,0.01954,0.3269927536231884,0.6730072463768116,24.71503579040656,4.382625877338876,0.3151625277609529,0.2339995962043206,0.2251160912578235,0.2257217847769028,11.23035319379773,5.820507409018363,20.87609537781802,12293.576671737328,56.23804425354794,13.758193376133269,17.74456427085143,12.56099088914164,12.174295717421606,0.5497678174843529,0.7661777394305436,0.6893017296604741,0.57847533632287,0.1019677996422182,0.7113636363636363,0.8917525773195877,0.8341232227488151,0.7352941176470589,0.1722689075630252,0.4910542251582714,0.7029831387808041,0.6356453028972783,0.527876631079478,0.0829545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023011343477247,0.0045866439363958,0.0069364748895546,0.0093132021757917,0.0115027942628541,0.0136882981867846,0.0157149271398832,0.0175721787458368,0.0197344191185497,0.0221370839693092,0.0243009252610631,0.0262373898214542,0.0284217783677543,0.0304235803359785,0.0322980212429938,0.0342816368318183,0.0362057531294039,0.0383297689001474,0.0402575651974909,0.0420245143000083,0.0568856020723656,0.0703951087753093,0.0833989232755092,0.0959921716348025,0.1082988690074274,0.1237832232943964,0.1361638891837384,0.1485519591141396,0.1599115223918874,0.169898172687962,0.1836251009964987,0.1963039503153976,0.2085303934679322,0.2189344584845437,0.2290424759684124,0.2393439718275545,0.2481393454512994,0.256761167321306,0.2642195166272942,0.2727981561958927,0.2806661956660219,0.2871994193261373,0.2936412078152753,0.3001667726492855,0.3054542359692637,0.3106126077187091,0.3157808995100189,0.320207768399343,0.3243890442166304,0.3281938325991189,0.3277479441730259,0.3276739070662634,0.3278222172149617,0.3263017973761775,0.3251969674446261,0.3242899208637507,0.3223927500119034,0.3227541954590325,0.3242572562979189,0.3249794135548315,0.3248392071313047,0.3259441544781599,0.3273059859969303,0.3284547005477238,0.3292685877428564,0.3286691297853942,0.3283085917349687,0.3314150197628459,0.3346129463971261,0.3389756252987095,0.3415796225032069,0.3450903084873994,0.3434782608695652,0.3430272498282574,0.3455111866326819,0.347769028871391,0.34529627367135,0.3442589576547231,0.3441949616648412,0.3497723823975721,0.0,2.1064966049298515,58.0799161585238,184.544919156888,274.7391795113842,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95731,43982,416.2810374904681,6311,64.80659347546772,4949,51.21642936979662,1854,19.074281058382343,77.3593554540744,79.7298894320971,63.33143217950936,65.08344496820908,77.12605008266645,79.49548664282688,63.24372869804176,64.99728923534907,0.2333053714079511,234.40278927022007,0.0877034814675994,86.1557328600071,151.11866,105.80431747128227,157857.60098609646,110522.52402177174,335.2337,215.23123280079804,349715.34821531165,224361.68628642187,350.42624,169.4718446218671,362670.83807752974,174466.0497828689,2816.30524,1294.0832270297335,2916459.9555003084,1326365.6738309574,1186.13678,524.9893692500524,1225415.4767003374,534805.945532162,1819.13686,772.4797245187897,1873180.8296163208,784386.3971293818,0.37936,100000,0,686903,7175.345499368022,0,0.0,0,0.0,28490,297.1033416552632,0,0.0,32119,332.1703523414568,1667146,0,59824,0,0,6008,0,0,56,0.5849724749558659,0,0.0,0,0.0,0,0.0,0.06311,0.1663591311682834,0.2937727776897481,0.01854,0.3313271140535661,0.6686728859464339,24.645645893956,4.37987482953505,0.3303697716710446,0.2321681147706607,0.2174176601333602,0.2200444534249343,11.24277989749285,5.7299034819687344,19.83878513013497,12360.715266333538,56.02216387080207,13.729721156080004,18.427123189630056,12.013122735996488,11.85219678909552,0.55849666599313,0.7789382071366405,0.6819571865443425,0.5799256505576208,0.1193755739210284,0.7181008902077152,0.9148936170212766,0.8545034642032333,0.6877323420074349,0.116591928251121,0.4987503471257984,0.699724517906336,0.6198003327787022,0.5439900867410161,0.1200923787528868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020560709800267,0.0043184283353776,0.006514657980456,0.0087241778554163,0.0109921397557528,0.0131430258482901,0.0153116876497273,0.0174142049282404,0.019658154607348,0.0218884691380775,0.0240378205982792,0.0259765604938525,0.028242484103957,0.0303323785777576,0.0325363492833335,0.0346820211710221,0.0365155452484237,0.0385221756627805,0.0405127245508982,0.0423428678569196,0.0570342602357805,0.0713560581481752,0.0853849139332655,0.0990525861978317,0.1112774819423208,0.1263936194969218,0.1390371494360204,0.1511280036624187,0.1618898008036248,0.1726761530702036,0.1850638504229753,0.1965919301930301,0.2081383962572081,0.2178785623604605,0.2285346024191949,0.2393004092406312,0.2487853369224067,0.2579628942068608,0.2658631529967201,0.2737500572842674,0.2814083724805035,0.2888948654684923,0.2957584930648346,0.3014018411885123,0.3068100445426189,0.3123637841232315,0.3172849546449797,0.3220351912123678,0.3263187865610602,0.3308020882771713,0.3298471548212773,0.3294851708309282,0.3287821323219553,0.3279639546265906,0.326895162484818,0.3250904428263955,0.3238639052321088,0.3235630867872681,0.3236987327973838,0.3253700014230824,0.326718785067704,0.3271420958095651,0.3279640932066528,0.3297698289966158,0.3309354248869213,0.3321612751992499,0.3325172237089335,0.3341931424976407,0.3368905114613683,0.3384024395073462,0.340901851936115,0.3446903359337685,0.3489945617807006,0.3518855065879145,0.3574300944543159,0.3550818513720409,0.3570124733799817,0.3589178356713426,0.3580952380952381,0.3514533786334465,0.0,1.818595504098384,59.74137730509968,180.75139821763128,270.9624071662125,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95891,44345,419.7265645368178,6269,64.29174792211991,4883,50.35926207881866,1932,19.78287847660364,77.4394230829848,79.71857324442558,63.39129033748679,65.07687922995498,77.20069426995889,79.48105977745136,63.3037719025201,64.99249452576126,0.2387288130259151,237.51346697422093,0.0875184349666824,84.38470419372379,150.05562,105.16462610996682,156485.6138740862,109671.00782134592,334.01408,214.8659420033092,347787.50873387494,223533.78523877027,349.10152,168.52117113488688,360452.01322334737,173003.65211134008,2812.93916,1278.639891007139,2903669.5414585317,1303624.4183574466,1162.92879,507.0825341590294,1199418.5794287263,515468.8283144712,1905.24756,788.0285562352027,1952915.351805696,793276.3296687155,0.38072,100000,0,682071,7112.982448822099,0,0.0,0,0.0,28361,295.1893295512613,0,0.0,31986,329.957973115308,1675724,0,60137,0,0,6060,0,0,68,0.6987099936386104,0,0.0,0,0.0,0,0.0,0.06269,0.1646616936331162,0.3081831233051523,0.01932,0.3321630285452602,0.6678369714547397,24.64837880956541,4.394586944083705,0.320294900675814,0.2342822035633831,0.2144173663731312,0.2310055293876715,11.292893692484617,5.804420631132639,20.3129173992088,12333.946828385298,55.10018954667629,13.635268663743789,17.582742248282504,11.605248773090125,12.276929861559877,0.5613352447266025,0.7788461538461539,0.6879795396419437,0.6131805157593123,0.1170212765957446,0.7316495659037096,0.9041769041769042,0.8349753694581281,0.7827868852459017,0.1380952380952381,0.5016592920353983,0.7096336499321574,0.6364421416234888,0.5616438356164384,0.1122004357298474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021360599311601,0.0042867566581539,0.0064212459043001,0.008650712262283,0.0107026334780001,0.0128507763374778,0.0149528902470078,0.0171052631578947,0.0192370561072289,0.0218805622046277,0.0239659005912066,0.0260001436472024,0.027899663970898,0.0297502625023162,0.031867293496639,0.0338382743202916,0.0359101160793726,0.0378099451864593,0.0397641147033783,0.0417698341690768,0.0561242572709267,0.0697156828939531,0.0827870740748497,0.0955935620019528,0.1074443672498368,0.1232408121034238,0.1363130858444103,0.1482441693672634,0.1597573845284668,0.1707705972369364,0.1844028807911426,0.1965449064920753,0.2082247132429614,0.2187138080982453,0.2288899639370217,0.2387835056110139,0.2479491752117699,0.2568751685090321,0.2651863600317208,0.272726233350483,0.2808223133337183,0.2880261544748672,0.2946355760935081,0.3009863302291063,0.3068941664745215,0.3118414574101428,0.3163579089477237,0.3217333875228612,0.3267165510022099,0.3301393842873501,0.3292614094500887,0.3291425904829876,0.3294882962879703,0.3277893977641543,0.3279167346212582,0.3275551071570515,0.3262467399035801,0.3275958074025548,0.3284007023884617,0.3300519794930219,0.3310593600478468,0.3327155503854571,0.3324345226897431,0.3325986285510731,0.333436969363595,0.3341217445547642,0.3330595366226703,0.3354995938261575,0.3391843415874342,0.3408768333070494,0.3419909502262443,0.3473244058646059,0.3512868801004394,0.3526816279954355,0.3583317571401551,0.3601856258924322,0.363762958378462,0.3643061809250921,0.3733333333333333,0.3767565514622104,0.0,2.1969770212644155,55.55373021248727,181.3004021972924,273.8836497459885,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95727,44201,418.49217044303066,6272,64.16162629143292,4875,50.23661036071328,1975,20.11971544078473,77.34647984393533,79.6977544577634,63.33814763576003,65.07478894436977,77.09621598528715,79.45165050035789,63.24501051756706,64.986108324239,0.2502638586481822,246.10395740550928,0.0931371181929705,88.68062013077349,150.51256,105.50106231306624,157231.0424436157,110210.35059394554,334.2426,214.9969795193253,348481.776301357,223913.34682934312,349.0569,168.94739976464632,360092.53397683,172927.970549221,2811.51952,1292.0996791640146,2898712.5053537665,1311758.821710173,1181.38858,522.4907617181055,1211113.5311876482,522921.802320731,1936.1698,816.8983024486133,1975558.452683151,816583.3883014674,0.38261,100000,0,684148,7146.865565618895,0,0.0,0,0.0,28426,296.24870726127426,0,0.0,32022,330.0009401736187,1669299,0,59855,0,0,5934,0,0,53,0.5432114241541048,0,0.0,2,0.0208927470828501,0,0.0,0.06272,0.1639267138862026,0.3148915816326531,0.01975,0.3313609467455621,0.6686390532544378,24.720941731257412,4.440820039643405,0.3138461538461538,0.2317948717948718,0.224,0.2303589743589743,11.22572976579374,5.785745530268875,21.057224116524463,12499.829467457415,55.214181908703445,13.4989045189549,17.52767716593082,12.01291379156849,12.174686432249226,0.5606153846153846,0.7893805309734513,0.7137254901960784,0.5457875457875457,0.1362422083704363,0.7327117327117327,0.9223300970873788,0.8658536585365854,0.7344398340248963,0.1383928571428571,0.4988851727982162,0.713091922005571,0.6580357142857143,0.4923619271445358,0.135706340378198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0045819014891179,0.0064643143463127,0.008634525913736,0.0108711127382187,0.0129907151001791,0.015137614678899,0.017299625429939,0.0196052376036225,0.0217460301209136,0.0237602246868529,0.0257942006671798,0.0277489333264792,0.0300751879699248,0.0318090835929923,0.0342642741968826,0.0364971061159831,0.0385441416017347,0.0405634388481729,0.0423215941168505,0.0569331481848839,0.0721358146155617,0.0856318522792844,0.0982260218513728,0.1111966262519768,0.1273365474075953,0.1397142281295414,0.1511255388217763,0.1627946703108985,0.1737802263762647,0.1866790128773849,0.1988923982174534,0.2098197786908411,0.2203108264661522,0.2299937334403412,0.2407386904630101,0.2507527937010684,0.2604132686921407,0.2688492964139809,0.2778592375366568,0.2865076885695442,0.2940522837592841,0.3004664267449569,0.3062120067623466,0.3113816101169868,0.3166151534928395,0.3214151675131984,0.3260302224032794,0.3301744924680443,0.3341609984811464,0.333315361701554,0.3333195626428709,0.3329338953660496,0.3320749258696753,0.3319004625842245,0.330358785648574,0.3288842445257208,0.3291972360365683,0.3301304518798406,0.3317022644474605,0.332639982010344,0.334084573868691,0.3345508743203812,0.3343188639519778,0.3362313954048456,0.3363457760314342,0.3377132714989121,0.3396410887185795,0.3417124348683284,0.3444329651116586,0.3482155097564319,0.3526270824434002,0.3515013878374968,0.3569292123629112,0.3568244332732618,0.361437125748503,0.3641689793401171,0.3680969000205296,0.371404399323181,0.3677342823250296,0.0,2.735856332364773,55.71246477589094,183.331553455668,269.36222277716064,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95730,44169,418.1761203384519,6389,65.44447926459834,5090,52.48093596573697,2008,20.557818865559383,77.41222784566315,79.76730462127784,63.350809200748486,65.0892210464075,77.16101806584525,79.51871555535536,63.2579186336493,65.00020554805155,0.2512097798178985,248.58906592248783,0.0928905670991895,89.01549835594835,152.79066,106.89621359038183,159605.59908074792,111664.08092436662,340.27419,217.80400563598656,354759.33354225423,226828.58863099111,352.51064,169.3147693895441,363523.64984853234,173319.82291946394,2916.47376,1328.273645199337,3008437.480413663,1349627.3125447182,1217.0645,534.6080079247497,1253303.6247780214,540508.1885756595,1968.0956,827.4663104657222,2016630.4188864515,830138.8449776171,0.38202,100000,0,694503,7254.799958215815,0,0.0,0,0.0,28853,300.658100908806,0,0.0,32370,333.3751175180194,1659626,0,59483,0,0,5984,0,0,68,0.7103311396636373,0,0.0,0,0.0,0,0.0,0.06389,0.1672425527459295,0.3142901862576303,0.02008,0.3287284610814022,0.6712715389185977,24.59807161662912,4.340125968106813,0.3231827111984283,0.2294695481335953,0.224950884086444,0.2223968565815324,10.924795095315869,5.636993853415973,21.366752257702647,12445.95194017134,57.35240913689528,13.879362281507047,18.51942694903405,12.528515995782096,12.425103910572078,0.556385068762279,0.791095890410959,0.6851063829787234,0.5519650655021834,0.131625441696113,0.7218337218337219,0.928388746803069,0.8560975609756097,0.7196652719665272,0.1740890688259109,0.5003944254535893,0.722007722007722,0.6283400809716599,0.5077262693156733,0.119774011299435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0046318349972127,0.0069086556019965,0.0090177918596149,0.0114173588588741,0.0136000407186847,0.0156756426198096,0.0175402793792026,0.0198362816935953,0.0219856704196519,0.0239710584569976,0.025930032027593,0.0281684349041862,0.0302253254242873,0.0324208310546572,0.0345134115458163,0.0365308151093439,0.0386367173315349,0.0405564161477122,0.0423133815287818,0.0566569576247298,0.070451715514445,0.0836567712157767,0.0961572851687828,0.1082680904045413,0.1240264138164578,0.1371108964902412,0.150512675816395,0.162214148322291,0.1732397540323879,0.186429349173665,0.1980898134211181,0.2102175001632884,0.2209059157150208,0.2310311016118192,0.2422602078734567,0.2518302428774212,0.2606917991056846,0.2687455286676281,0.2769211368039712,0.2834887357386923,0.2910672269891252,0.2982694948155864,0.3042769857433808,0.3100454181138125,0.3160235012994691,0.3206046738437301,0.3250752753744712,0.3287545550874835,0.3327411267716846,0.3324832557078238,0.3318798848210613,0.3315406650190968,0.3303327092035143,0.3305049668874172,0.3286477925163334,0.3267607408340683,0.3268157336379957,0.3273635560388772,0.3280431733858799,0.3287041346314946,0.3296420647542754,0.3308291074521589,0.3315462816719685,0.3330300708676498,0.3358766739333541,0.3365695792880259,0.33893425952001,0.3407723520358192,0.3427072651258184,0.3461956030037094,0.3481273804485823,0.3489827856025039,0.350143656434296,0.3548357069719817,0.3551236749116608,0.357845362384627,0.3708675616108996,0.3696837513631407,0.3727134146341463,0.0,2.620750378771058,55.99322195211726,196.0758015925307,281.2713224068006,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95738,44282,418.1725124819821,6416,65.80459169817627,5017,51.91251122856128,2036,20.984353130418437,77.32373385663094,79.69387229350309,63.321321634088775,65.07515664734748,77.06796180042379,79.43616703248544,63.22742888186007,64.98240711609823,0.2557720562071495,257.705261017648,0.0938927522287045,92.74953124925388,151.07906,105.80261346970576,157804.6961499091,110512.66317418974,335.37326,215.15970144909105,349833.33681505773,224268.1917828773,351.22674,170.02887289863727,363547.9851260733,174991.80677858353,2892.24828,1319.8374097004084,2994357.47561052,1351947.073994035,1168.69643,516.510468584555,1208220.4976080551,527000.9594774856,1997.13566,830.9468294916396,2060182.874093881,846457.8926783289,0.38261,100000,0,686723,7172.940734086778,0,0.0,0,0.0,28564,297.8650065804592,0,0.0,32172,332.6996594873509,1666266,0,59877,0,0,5965,0,0,55,0.5744845306983642,0,0.0,1,0.0104451732854248,0,0.0,0.06416,0.1676903374193042,0.3173316708229426,0.02036,0.3331356560415122,0.6668643439584878,24.69170008461836,4.456723096980372,0.319912298186167,0.2256328483157265,0.2234403029699023,0.2310145505282041,11.274442901591687,5.80291071412212,21.68229939476653,12516.374186176175,56.90257154226652,13.512497992723986,18.248966148364204,12.52455359859764,12.61655380258069,0.5459437911102253,0.7879858657243817,0.6922118380062305,0.5468331846565566,0.1061259706643658,0.7312312312312312,0.9365482233502538,0.871331828442438,0.7116788321167883,0.1085972850678733,0.4789687924016282,0.7086720867208672,0.6239242685025818,0.4935064935064935,0.1055437100213219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023910840932117,0.0048475260377052,0.0072472594397076,0.0095116151454179,0.0117613543871072,0.0137008627978282,0.0157569452943336,0.0180772726808493,0.0202263965723518,0.0222131189513031,0.0245203105290685,0.0266817294854678,0.0288973931650309,0.0311202250548725,0.0331740346603635,0.0354381176859777,0.0375015535026306,0.0398090989261814,0.0415276001538829,0.0435534623960656,0.0582603339006233,0.0726949241234955,0.0859942097092267,0.0987472520537282,0.1111017378100219,0.1268265347120895,0.1397593940294074,0.1516599276441796,0.1628202526778944,0.1727140161262652,0.1856063053168809,0.1981501514495889,0.2098905042025944,0.2206039930897242,0.2316146137006193,0.2420910429746758,0.2519847464430668,0.261285248848444,0.269792859491389,0.2771745970002403,0.2848624913334874,0.2921009581677962,0.2987740722789015,0.3042415821185151,0.310153868574135,0.3154858748705813,0.3202854996243426,0.3247615044642288,0.3301353523829279,0.3340154465641296,0.3334545944489356,0.3324696088430686,0.3315367684406569,0.3306638475351908,0.3309263615519757,0.3296777459085541,0.3288055093801947,0.3289946655724251,0.3297886867169631,0.330513012744993,0.3313517365538969,0.3318606862667406,0.3329966117389565,0.3354460252174499,0.3389924786572831,0.3403719539385673,0.3402434822556563,0.3427094564596943,0.3477506199078994,0.3515411783592872,0.3577482955592408,0.3583544235636207,0.3589367669556348,0.3591625463535228,0.3616274658573596,0.3572458543619322,0.355487336914812,0.3578520770010132,0.3607368710475667,0.3627602158828065,0.0,1.951543786093929,58.8338540059868,186.01894485625053,279.54072833859675,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95784,43842,414.2027896099557,6161,63.298672012027055,4817,49.747348200116924,1912,19.658815668587653,77.38153749659537,79.7236744251157,63.350937847410606,65.08306300517337,77.14319362764309,79.4842082017056,63.26347118200615,64.99716299683082,0.2383438689522847,239.4662234101048,0.087466665404456,85.90000834254852,150.80494,105.655713335483,157442.7252985885,110306.22372784912,333.23271,214.1342518844375,347356.6044433308,223016.6127264669,344.80691,165.88946901916728,356320.4188590996,170377.5432371729,2765.24096,1259.0718541841786,2858449.55316128,1286023.3207352224,1135.48471,500.9343829019516,1169870.844817506,507391.6846292158,1873.5734,780.5133036582451,1927869.205712854,790494.0154025577,0.37926,100000,0,685477,7156.487513572204,0,0.0,0,0.0,28339,295.27896099557336,0,0.0,31667,326.9230769230769,1670767,0,59953,0,0,6035,0,0,66,0.6890503633174643,0,0.0,1,0.0104401570199615,0,0.0,0.06161,0.1624479249063966,0.3103392306443759,0.01912,0.3309051456912585,0.6690948543087415,24.591421866596303,4.40040189366374,0.3215694415611376,0.2368694208013286,0.2167324060618642,0.2248287315756695,11.361714319914157,5.863451588844263,20.28695972678306,12359.77076747417,54.312264438481606,13.476730296507167,17.4540132732627,11.61727778886368,11.764243079848066,0.559061656632759,0.7738825591586328,0.6946417043253712,0.5862068965517241,0.1126500461680517,0.7493995196156925,0.9225,0.8789473684210526,0.7704280155642024,0.1650943396226415,0.4924327354260089,0.6936572199730094,0.6347305389221557,0.5260482846251588,0.0998851894374282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483744860134,0.0044701684675735,0.0065642628140091,0.0087037770533093,0.0109502409663053,0.0131722263505603,0.0152994658947282,0.0175751946845752,0.0196713605428273,0.0219268627089856,0.0240915705121636,0.026256902958264,0.0281616286243059,0.0302293974712738,0.0323252743625711,0.0343744511143025,0.0364763343612243,0.0386644691150708,0.0407001506258764,0.0426028110359187,0.0567039893145224,0.0700062748379,0.0836548138208654,0.0964704893400161,0.1083584480178718,0.1239286884293066,0.136417103799078,0.1483564381697567,0.1597857287676203,0.170085744908896,0.1834522694737748,0.1952134792576891,0.2069576368813441,0.2178635429870186,0.2277236434023271,0.2386371183776484,0.2493644918164384,0.2586526680230663,0.2677795797089944,0.2749688211535601,0.2822024883215392,0.2878949029324793,0.2945880404566156,0.3016958490023713,0.3072982422064679,0.3126177256331023,0.3177609795714375,0.3222984998728705,0.3275369069337163,0.3313820880960856,0.3305840722252869,0.3295251450411064,0.3286766466222591,0.3283963818166055,0.3281112977303467,0.3269619245837414,0.3257570967945881,0.3271620095270834,0.3282286881061766,0.3284344252086187,0.3302870598788966,0.3304129915744194,0.3316805790916128,0.3311922293592355,0.3314033106695817,0.3327075511055486,0.3329439585173366,0.3370134554464761,0.340551318827398,0.343894807715157,0.3458130764687173,0.3505307855626327,0.3536839446934781,0.3577484151836859,0.3586239396795476,0.3606013969456612,0.3634146341463414,0.3650857719475277,0.3664630760688506,0.3712643678160919,0.0,2.0615431926183367,54.83243614906569,177.63803133586663,271.6468543393772,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95865,43748,412.601053564909,6361,65.32102435716894,5019,51.86460126219163,1968,20.23679132112867,77.37299817448195,79.67487183635971,63.35320242165369,65.05729615959629,77.13337037381937,79.43348570404126,63.265769223872994,64.97116742154877,0.2396278006625749,241.3861323184534,0.0874331977806974,86.12873804752041,150.87116,105.69816499033853,157378.77223178427,110257.30453276848,336.79197,216.0051337318168,350818.2757002034,224821.47158172092,346.01134,166.88395030769686,357591.6236374068,171535.27050953195,2863.49616,1299.9511549673678,2961215.6678662705,1330229.379823051,1183.6941,520.4990299383536,1224116.8726855477,532323.5368321327,1930.46028,798.456008774718,1987218.8598550044,809837.543463431,0.37873,100000,0,685778,7153.580555990195,0,0.0,0,0.0,28664,298.47180931518284,0,0.0,31852,328.9000156470036,1668318,0,59881,0,0,5998,0,0,59,0.6154488082198926,0,0.0,1,0.0104313357325405,0,0.0,0.06361,0.1679560636865313,0.3093853167740921,0.01968,0.3449157641395908,0.6550842358604091,24.77221440595131,4.316754878603569,0.3161984459055589,0.2388922096035066,0.2255429368400079,0.2193664076509265,10.910361001401707,5.6175174598970425,20.876793622281287,12339.383807116088,56.83620252567165,14.328498390282416,17.89753012238354,12.60742438359422,12.002749629411484,0.56664674237896,0.7814845704753962,0.6880907372400756,0.5962897526501767,0.1271571298819255,0.7447633824670287,0.9082125603864736,0.8703241895261845,0.7481203007518797,0.173076923076923,0.5050938337801608,0.7146496815286624,0.6264755480607083,0.5496535796766744,0.1164613661814109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0040236350552869,0.0062688293113417,0.0086509757732063,0.0108879084236423,0.0129987785016286,0.0153700325135303,0.0174917592791027,0.0196282786173354,0.0219166308551783,0.0240971261718149,0.0262550401674412,0.0282719284723292,0.0303339097496706,0.0323491814770524,0.0345329684514896,0.036644664694076,0.0386616098814556,0.0408411214953271,0.0430408456272498,0.0576820812262134,0.0715047021943573,0.0846942730539173,0.096850749246553,0.1089312229488516,0.124157600084504,0.1368356361786895,0.1488635638806795,0.1596051227321238,0.1702845754939356,0.1833403277700659,0.1956357269465219,0.2071360257357735,0.2175904668197223,0.227983892263005,0.2383473051239742,0.248089772334326,0.2578235730837589,0.2666704474564736,0.2743008253866495,0.2818111392463607,0.2884244260166785,0.294574285545234,0.3008767937139161,0.3061328542293872,0.3112112925873919,0.3164152950747856,0.3202757357617073,0.3247938484640578,0.3291050686378036,0.3288606878713171,0.3282930523996419,0.3276579537599977,0.3276907273174472,0.3272840772283408,0.3257021224464794,0.3246915730959884,0.32543018520951,0.3263587606326649,0.327402325955303,0.3283903461963339,0.3301003476611883,0.3313856077741476,0.3316435908887896,0.3330694684321627,0.3346262983885664,0.3358630527817404,0.3403096871656071,0.3438915616111248,0.3473750890806873,0.349934350522932,0.3503680559233172,0.3523221375007877,0.352954649564819,0.3534132754225285,0.3522754067436925,0.3511695459409876,0.3473469387755102,0.3453177257525083,0.3412667946257198,0.0,1.9078053670950488,56.997790605207,194.5031715389829,275.0357996413427,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95779,44082,415.84272126457785,6208,63.5003497635181,4808,49.48892763549421,1920,19.55543490744318,77.39816222968327,79.72707411495824,63.35848721039546,65.0795123326518,77.15261596381731,79.48541032640719,63.26726908464162,64.99248746279409,0.2455462658659541,241.66378855105108,0.0912181257538407,87.0248698577143,151.1719,105.98160261732238,157834.07636329465,110652.2333886576,335.81961,215.9474456287222,349876.59090197226,224726.92022795585,349.94742,168.87566847236783,361120.7884818175,173009.11278524715,2755.31984,1266.3512002579448,2838995.520938828,1284707.764562164,1146.09612,505.7971311327424,1179914.5846166697,511527.6236988386,1879.8363,793.1081821293069,1917691.790475992,790946.4573856568,0.38014,100000,0,687145,7174.276198331576,0,0.0,0,0.0,28558,297.4138381064743,0,0.0,32107,330.9076102277117,1665007,0,59733,0,0,5851,0,0,55,0.5742386118042577,0,0.0,0,0.0,0,0.0,0.06208,0.163308254853475,0.3092783505154639,0.0192,0.3278663396689147,0.6721336603310852,24.5563604892867,4.345444889372687,0.3157237936772046,0.2383527454242928,0.2217138103161397,0.2242096505823627,11.27779570556238,5.904628830833721,20.6051859511784,12411.081604931893,54.49268685340155,13.649644939400432,17.180815880945612,11.832404367555254,11.829821665500274,0.5644758735440932,0.7835951134380453,0.69433465085639,0.6022514071294559,0.111317254174397,0.7331786542923434,0.9156626506024096,0.875,0.752,0.131578947368421,0.5024182076813656,0.7086183310533516,0.629695885509839,0.5563725490196079,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508314597638,0.0047835252148532,0.0070912632390536,0.0091904297668372,0.0115284908249885,0.013770431738148,0.0157538085290671,0.0178141452067093,0.0201166746697453,0.0226110087988541,0.0245981415648147,0.0268032139228945,0.0289190800156208,0.0311547962124331,0.0331969029969999,0.0351558465701361,0.037242406687081,0.0393197843218581,0.041568374780467,0.0435787697978819,0.0581176961602671,0.0717430636170635,0.0848264365767484,0.0976447961660939,0.1099515074847143,0.1256871035940803,0.1386390632954352,0.1504368275994168,0.162205750416542,0.1732612751721031,0.1862426226683324,0.1983950163310333,0.2101586266840504,0.2197690551361744,0.2298832890080664,0.2402611052718924,0.2495484245032669,0.2586978522433374,0.2668103448275862,0.2745293390133296,0.2812575881965242,0.2892952345321049,0.2965278024410744,0.3023961067759838,0.3079744022537674,0.3135830141507691,0.3189264900827893,0.3229662029855301,0.3271008675385213,0.3312706161762765,0.3306353866458372,0.3296190829928604,0.3285893443431454,0.3283978794401028,0.3278581497143705,0.3260437375745527,0.3244773381408736,0.3249745793288943,0.3253635944149163,0.326249107780157,0.3268006888289907,0.3279294596785354,0.3284491239821656,0.330204664021046,0.3304148126883881,0.3322242728288841,0.3332578673307675,0.3371464291295515,0.3409613375130616,0.3427344703982353,0.3460403902881779,0.3482956640851378,0.351494396014944,0.3546824135059429,0.3542076195825143,0.3559563360227812,0.3586741675535959,0.362257281553398,0.3671270718232044,0.3700457317073171,0.0,2.731979927540704,56.07917618219111,179.01728467887784,263.5084447222865,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95886,44116,416.8908912667126,6191,63.43991823623887,4853,50.10116179629978,1955,20.07592349248065,77.3584022892406,79.63941209883261,63.35300198276878,65.04105566228434,77.11125551630532,79.39269503407026,63.261480514383294,64.95218201638488,0.2471467729352809,246.71706476235045,0.091521468385487,88.87364589945435,150.6912,105.61051818665928,157156.62349039485,110141.74977229134,333.21166,214.20655770420976,346991.96963060304,222880.93955760988,348.82703,168.34283147515993,360290.9600984503,172990.92589406393,2791.8534,1282.439428289511,2883491.729762426,1309316.175760289,1144.40371,510.771894298204,1179635.9635400372,518820.6306373482,1918.97754,807.8575970464681,1971671.2137329744,815686.1278189607,0.38005,100000,0,684960,7143.482885927038,0,0.0,0,0.0,28227,293.84894562292726,0,0.0,31934,329.5893039651253,1668523,0,59936,0,0,6006,0,0,73,0.7613207350395261,0,0.0,0,0.0,0,0.0,0.06191,0.1628996184712537,0.3157809723792602,0.01955,0.3299048203868591,0.6700951796131409,24.54310518954719,4.365954317841102,0.3224809396249742,0.2262518030084483,0.2276942097671543,0.223573047599423,11.085379701649716,5.657003125268529,20.915020202331185,12407.097614697472,55.18406428506432,13.142063645320956,17.715295101881665,12.321401611022566,12.005303926839137,0.5518236142592211,0.785063752276867,0.6875399361022364,0.56289592760181,0.1087557603686635,0.7282010997643362,0.932642487046632,0.8619854721549637,0.7154471544715447,0.1535087719298245,0.4891061452513967,0.7050561797752809,0.625,0.519208381839348,0.0968494749124854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0046306147470387,0.0069681816798693,0.0090974626608047,0.0112116283797519,0.0133931751798817,0.0155772443864868,0.0177673517262481,0.019919749241906,0.0221224915404982,0.024117845772723,0.0260403317579274,0.028274466708433,0.0305411827636221,0.0325642267541916,0.0345048319154208,0.0364738497186362,0.0383670677486552,0.0404386566141192,0.0424261339991677,0.0570660105917184,0.0719106523465251,0.0848142756909028,0.0978977654569892,0.1100799528078288,0.1255757447707585,0.1383366538086558,0.1498192258613356,0.1611195320339019,0.1722356220185453,0.1857905844855063,0.1987538671224282,0.2106018437989215,0.2202859891551513,0.229969869581473,0.241259089550752,0.2517510595583315,0.2606138970092197,0.269108605395104,0.2765513844179946,0.2840280510102529,0.2907939999531977,0.2967191756484661,0.3022857005804192,0.307262162359291,0.3120197348134443,0.3171287885432198,0.3213721392527652,0.3263738402647116,0.3308605733629535,0.3308466436434276,0.3303188629564786,0.3299283255262712,0.3286235450807805,0.327847856196107,0.3261537044428751,0.3244984763839512,0.3249078462348604,0.3256670205843066,0.32598087407275,0.3276431304869813,0.3287283523008412,0.3294974906028853,0.3301523297491039,0.3316384316938573,0.3334201750729471,0.3346730517074283,0.3370927711978888,0.3391334853534468,0.3412764605425156,0.3430160974052624,0.3482218458933107,0.350714780527741,0.3524942440521872,0.3559161210741057,0.3563039309683605,0.3566542288557214,0.3562843756365859,0.3564356435643564,0.3567608861726509,0.0,1.9828767677393948,56.04767564182544,187.8429506614152,264.680366537957,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95726,43936,414.7149154879552,6251,64.01604579738002,4902,50.550529636671335,1945,19.900549484988403,77.38965647392791,79.75741102494935,63.34469261111818,65.09444212778577,77.1350226952189,79.50390964566937,63.25010345497084,65.00320031817417,0.2546337787090209,253.5013792799816,0.094589156147343,91.24180961160278,150.89272,105.73681743315272,157629.35879489375,110457.38378271814,335.90303,216.1316028277417,350225.85295531,225109.98691118395,350.44972,169.69582233474776,361965.223659194,174094.29034488613,2778.0952,1285.4807907112072,2866460.522741993,1307617.7360285048,1172.95459,524.4943355461456,1209917.9115391849,532980.9758687263,1901.08838,806.9086687092397,1946771.117564716,809887.5592948272,0.37917,100000,0,685876,7164.970854313353,0,0.0,0,0.0,28539,297.4322545598897,0,0.0,32140,331.67582474980674,1666825,0,59804,0,0,5876,0,0,58,0.5954495121492593,0,0.0,0,0.0,0,0.0,0.06251,0.1648600891420734,0.3111502159654455,0.01945,0.3368050237402358,0.6631949762597641,24.64314321869068,4.371504987502494,0.3223174214606283,0.2362301101591187,0.2254181966544267,0.2160342717258262,11.242557964530416,5.941468685637076,20.891454113355785,12375.462629669782,55.80437593552457,13.7788503884994,17.891323995594718,12.420679987278898,11.71352156415156,0.558343533251734,0.7694300518134715,0.6860759493670886,0.5710407239819004,0.1237016052880075,0.7282768777614138,0.9294117647058824,0.8608490566037735,0.7394636015325671,0.1451612903225806,0.4932279909706546,0.6766712141882674,0.6219723183391004,0.518957345971564,0.1171393341553637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020865407989628,0.0047038309864866,0.0067688935345396,0.009214295873377,0.0113115037586336,0.0136552482587267,0.0158848298855028,0.0183236185829054,0.0203818791397497,0.0225399977480474,0.0245699993849812,0.0266613282412968,0.0288257910644159,0.0309121238956278,0.0330476219946158,0.0353876205339148,0.0376410893652272,0.039746436204428,0.0415020995302041,0.0433042970866502,0.0578334638475593,0.0718442537157211,0.0845232974158281,0.0968206876236165,0.11003861003861,0.1255182772042646,0.1386148067986504,0.150440594270146,0.1614425921377233,0.172030671885892,0.1847764054743778,0.1968325057605556,0.2086309815050396,0.2198287645019846,0.2295733116211517,0.2405594560474851,0.2502007405094348,0.2589999213244467,0.2675345588151911,0.2750709447088978,0.2817921080630985,0.2891814164464916,0.2959158342691648,0.3023534200004788,0.3084019129463743,0.3134168421830544,0.3179293434747798,0.3229663550213064,0.3270729244867845,0.3309234828496042,0.3300001345840679,0.3284764931687786,0.327757831749384,0.3263793576722481,0.3257508309591643,0.3249498982667095,0.3234954710001739,0.3245124207837293,0.3242002142966478,0.3237014776748404,0.3239599455498163,0.324485053759206,0.325538705438161,0.3255513477389173,0.327130334818221,0.3291576786131975,0.3298676211578887,0.3327779175050301,0.3350794543664744,0.336346981041899,0.3403019213174748,0.3429871520342612,0.3434719505269136,0.3471498678746696,0.3507989594946116,0.3499353929284624,0.3463983050847458,0.3486513486513486,0.3545232273838631,0.3537466717383035,0.0,2.4782166670494266,59.51721836611812,183.4897661129559,261.83051625980914,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95763,44255,418.8360849179746,6149,63.072376596389,4842,49.998433633031546,1938,19.892860499357788,77.34687979821054,79.70774262325413,63.33382307926016,65.08188528678137,77.11157837642037,79.47190387157613,63.247590400235495,64.99758932640155,0.2353014217901687,235.83875167800272,0.0862326790246612,84.29596037981923,149.97312,105.1525671781638,156608.62754926225,109805.00525063313,335.53199,215.9507137525916,349821.87274834746,224949.7653087222,345.71991,167.4078227738379,357287.7520545513,171938.99286649484,2812.53624,1276.3476201472552,2906658.396249073,1302501.6552815342,1202.95875,523.2290429444531,1239817.037895638,530012.9308234425,1905.05006,791.2578238571979,1957081.043826948,799012.711763949,0.38066,100000,0,681696,7118.57397951192,0,0.0,0,0.0,28439,296.3984002172029,0,0.0,31644,326.78591940519823,1673014,0,60027,0,0,6033,0,0,74,0.762298591313973,0,0.0,0,0.0,0,0.0,0.06149,0.1615352282877108,0.3151731988941291,0.01938,0.3359763681592039,0.664023631840796,24.59039050441278,4.48021143965043,0.328996282527881,0.218298223874432,0.2201569599339116,0.2325485336637753,11.16783087459338,5.651829036837533,20.532283493574745,12375.838607963811,54.55727159321175,12.593553815304848,17.91655688924369,11.805631173845672,12.241529714817522,0.5528707145807518,0.7899716177861873,0.6854990583804144,0.575046904315197,0.1216696269982238,0.7249398556535686,0.925531914893617,0.8522167487684729,0.7407407407407407,0.1351351351351351,0.4931849791376912,0.7151248164464024,0.628475147430497,0.5261239368165249,0.118362831858407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0042996795521843,0.0065583756345177,0.0088010813337805,0.0109668755595344,0.0132685688682511,0.0153022734223672,0.0174152715394038,0.019607041360839,0.0219723962812794,0.0241344310364272,0.0260593677163656,0.0281154233767302,0.030151633771478,0.0322613936591809,0.0344431925076752,0.0365016412794731,0.038454356846473,0.0404873028907622,0.0425469880772634,0.0569048836748113,0.0711297071129707,0.0839606617878336,0.0966199314737351,0.1085513142086293,0.1247094129084069,0.137101731922922,0.1489522310939111,0.1607160001280095,0.1708942114058014,0.184643352731732,0.1971211515393842,0.2097315618515823,0.2199604678337028,0.229862453858323,0.2404956848860367,0.2504933605378466,0.2595969020132417,0.2679774898454696,0.2746301470251454,0.2828222065407262,0.2896679182604016,0.2960706130127666,0.3021954317762385,0.3074971780898399,0.3121032429506422,0.3168367602181199,0.3221082338583578,0.3264796459718951,0.3306450550174606,0.329831876260928,0.3290058173916631,0.3290658413055712,0.3286779876210125,0.327617408846827,0.3264616372784413,0.3244243421052631,0.3250771452957783,0.3261081219574686,0.3271965034341272,0.3275516511510293,0.3281911316799177,0.3283165992412015,0.3310561093067533,0.3314373855201002,0.3321295860155964,0.333180843459614,0.3355152895044745,0.3377964130932666,0.3411835026897788,0.3480152007691955,0.3498826791808874,0.3524974645030426,0.3551216535733353,0.3601873536299765,0.3641748607984836,0.3686713715863762,0.3734840698869476,0.3736325385694249,0.3831628638867034,0.0,2.183924851450237,54.65189599880512,179.37793326562402,272.9176695298077,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95757,44265,418.6221372850026,6298,64.56969203295843,4881,50.42973359649947,1902,19.5599277337427,77.36211040614715,79.72476576435636,63.32787542470121,65.07584809749422,77.13001522240928,79.49243330913816,63.24286615814027,64.99300570036398,0.2320951837378686,232.33245521819867,0.0850092665609452,82.84239713023567,151.45152,106.1277956071652,158162.34844450015,110830.32635438164,334.79923,214.9899382318559,349088.9438892196,223970.89323167587,350.10172,168.95429565364412,362053.8446275469,173676.47116891688,2792.3862,1272.7137763871,2886309.0948964567,1299436.9751805642,1168.5146,512.4411961311513,1208189.521392692,523139.1016479762,1866.73566,773.1912380975156,1921310.671804672,783454.8428361019,0.38108,100000,0,688416,7189.197656568188,0,0.0,0,0.0,28410,296.1141222051652,0,0.0,32135,332.0383888384139,1664575,0,59732,0,0,5891,0,0,55,0.5743705421013607,0,0.0,0,0.0,0,0.0,0.06298,0.1652671355096042,0.302000635122261,0.01902,0.3287837427964816,0.6712162572035183,24.739546765967745,4.353653247106551,0.3165334972341733,0.2399098545380045,0.2206515058389674,0.2229051423888547,11.047631562362774,5.641083986679538,20.08439479803633,12474.464999081894,55.29117043569436,14.040204372839325,17.47825114129191,11.967775075096482,11.804939846466633,0.5716041794714198,0.7959009393680615,0.7029126213592233,0.5933147632311978,0.1222426470588235,0.7323272438443209,0.9326923076923076,0.8630490956072352,0.7316017316017316,0.1377777777777777,0.5157371617890668,0.7205298013245033,0.6493955094991365,0.5555555555555556,0.1181923522595596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025531138871158,0.0048066197497312,0.0071160288295604,0.0096934472702886,0.0122781140328569,0.0142787305984438,0.0164583035914588,0.0187045658743771,0.0206644103843519,0.0228252521632276,0.0250638389515029,0.027282158741898,0.0294852933611794,0.0315536731896827,0.0333673922242519,0.0350684931506849,0.0370301335818577,0.0388969009057613,0.0407895967817382,0.0427586350568726,0.0577581527412418,0.0717790448292096,0.084618853361578,0.0973034369610029,0.1105052209682523,0.1256054485077941,0.1384504412763068,0.1502922171242428,0.1614884933438748,0.1722048873591319,0.1856933614784819,0.1976430867123332,0.2094700430753165,0.2201028108935797,0.2294546174839334,0.2407914123342454,0.2510132758678443,0.2600830267643187,0.269201538164865,0.2769896609761962,0.2840461972874137,0.2913513829600608,0.2980832938949361,0.3040241665767612,0.3093324267223585,0.3151032681027259,0.3200605848187462,0.3246713582163627,0.3291552286735381,0.333628003324933,0.3327136544886302,0.3324753974261922,0.331090023371723,0.3300973678888215,0.330250441650213,0.3300280034889593,0.3278488822794222,0.3282620456743774,0.3284024677051024,0.3301233557023087,0.3301326359050999,0.3308798929407828,0.3315026729034414,0.3324487656936423,0.3330775502373987,0.3349536014140521,0.3352546993014935,0.3380502160165299,0.3414421331844199,0.346273720755908,0.348693135570227,0.3487600694992892,0.3508157779583672,0.3546542252991195,0.3573688128023818,0.3638297872340426,0.3668234937016239,0.371422893481717,0.379505110274341,0.3852929911911145,0.0,2.1216452216521926,55.27415357517402,188.74590677963644,267.72725526414945,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95770,43854,414.15892241829386,6276,64.45651038947479,4860,50.26626292158296,1903,19.51550589955101,77.32840490063373,79.68710158458973,63.31625382636724,65.06402952197078,77.09110570166787,79.4508223219123,63.22818751192401,64.97860146798989,0.2372991989658572,236.27926267742797,0.0880663144432247,85.42805398089115,151.97314,106.4422671186851,158685.53826876893,111143.64322719548,334.44422,214.5587599457895,348762.441265532,223581.84185631145,344.45377,165.93845956968983,356362.4517072152,170759.21139401948,2770.40552,1264.401249581426,2867484.4732170827,1294962.524361936,1145.99814,503.1998924944362,1186313.7516967736,515124.1855429009,1858.40322,773.8728996953955,1908792.75347186,782510.1978168689,0.37891,100000,0,690787,7212.97901221677,0,0.0,0,0.0,28430,296.3767359298319,0,0.0,31649,327.22146810065783,1662976,0,59727,0,0,5899,0,0,56,0.584734259162577,0,0.0,1,0.0104416831993317,0,0.0,0.06276,0.1656329999208255,0.3032186105799873,0.01903,0.3301471703838567,0.6698528296161432,24.73338765358872,4.361860616311662,0.325514403292181,0.2314814814814814,0.2279835390946502,0.2150205761316872,11.035774048201354,5.683659129250584,20.120474047278528,12368.77791935725,54.99977879271727,13.419499761679887,18.059545959066924,12.163044065991343,11.357689005979116,0.5590534979423868,0.7795555555555556,0.6940581542351454,0.5568592057761733,0.1196172248803827,0.7116903633491312,0.9056122448979592,0.8259803921568627,0.708,0.1481481481481481,0.5052865887590429,0.7121418826739427,0.6482112436115843,0.5128205128205128,0.1121833534378769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584264766981,0.0044727073571472,0.0067518174064898,0.0089635968210735,0.0112510427051331,0.0135063559322033,0.0156734377549355,0.0180401845877404,0.0203847962542681,0.0228059041496918,0.0245297524473373,0.0267675626835328,0.02889757301522,0.0311579424427826,0.0332696971260512,0.0349486262429968,0.0369239368970229,0.0389118778714622,0.0408712550270708,0.0428999937509113,0.0576999352858902,0.0719873658669232,0.0853491029956067,0.0976371166095566,0.1099708135332483,0.1254280640933496,0.1378549765646539,0.1499265691845986,0.1612500133502792,0.1720492365757419,0.1850160480796157,0.1974380335176189,0.2090123806001,0.2190678244132892,0.2287532058690794,0.2389698144558294,0.2488922620177014,0.2583691663477341,0.2665750718186876,0.2737838705240475,0.2812279341119818,0.2880842351564785,0.2945983395904639,0.3014893846837008,0.3068197016304546,0.3116359375963495,0.3164482347777011,0.3209415543037748,0.3251219385637194,0.3296443522932872,0.3301019307518067,0.3296246316543196,0.3286888829344653,0.3276873717374339,0.3273451906489798,0.3261472883668869,0.324434374801952,0.3248002367564368,0.3252047813670332,0.3266436728202012,0.3269760383685857,0.3277370676884789,0.328450833716411,0.3288638598373111,0.3283757808745795,0.3307209623245762,0.3316907827275834,0.3345575540697492,0.3383845453909148,0.3401600380288385,0.3432137993645029,0.3468439940890859,0.3492401025705172,0.3534933010370146,0.3542760690172543,0.355218260971879,0.3607681755829904,0.3670937563555013,0.3713021841304949,0.3814352574102964,0.0,1.895701593846589,55.9321935792152,183.25633057697084,269.44357846307463,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95740,43932,414.6647169417172,6245,64.22602882807604,4910,50.80426154167537,1971,20.22143304783789,77.31464774318667,79.68060963786604,63.30648041847581,65.05598735007851,77.07451086322327,79.44258202153564,63.217736912434304,64.9709815729281,0.2401368799634013,238.02761633039893,0.0887435060415029,85.00577715041402,149.90228,104.98037248479862,156571.56883225404,109650.89190586872,332.42975,213.5747032412148,346733.852099436,222591.953296109,342.57294,164.87736795800674,356038.45832462923,170760.83802837777,2800.933,1268.9246027497138,2897963.526216837,1297933.5763000976,1169.13179,508.200467257026,1206486.985585962,516513.7005354792,1934.2915,804.9749994748757,1985292.897430541,808566.7626632609,0.3795,100000,0,681374,7116.889492375183,0,0.0,0,0.0,28253,294.589513265093,0,0.0,31384,325.91393357008565,1671839,0,59978,0,0,5913,0,0,59,0.6162523501148945,0,0.0,1,0.0104449550866931,0,0.0,0.06245,0.1645586297760211,0.3156124899919936,0.01971,0.3262171709414836,0.6737828290585164,24.852402074058872,4.33976480888516,0.3219959266802444,0.2264765784114052,0.2287169042769857,0.2228105906313645,10.99878742687286,5.651308138678509,20.97147388302898,12456.54239872286,55.54870411538148,13.312784799676455,17.890808688427168,12.29779053326131,12.047320094016536,0.5564154786150712,0.7742805755395683,0.6850094876660342,0.5921638468388246,0.1124314442413162,0.7114914425427873,0.8936708860759494,0.8616187989556136,0.7219730941704036,0.1283185840707964,0.5047515612272604,0.708507670850767,0.6285475792988314,0.56,0.108294930875576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122828344223,0.0047855136823108,0.0070240971193081,0.0089726653795346,0.0111297624497685,0.0134479807653123,0.0155986982381326,0.0178370872557227,0.0199129065892503,0.0220097457106588,0.0240533973116791,0.0262957943157548,0.0287086753481865,0.0308494415364958,0.0331024659117886,0.0351689702583399,0.0370815255097286,0.0391511881290858,0.0412394717687428,0.0432046673959472,0.0573322892195249,0.0713642739014842,0.085071338648762,0.0981332491980859,0.1106201689356631,0.1265537559902252,0.1388042751462019,0.1506798266628336,0.1614844426392466,0.1725414453565105,0.1854263933666152,0.1975775435251291,0.2092815512827496,0.2196762988044752,0.2297574421168688,0.2398023759298323,0.2501370077507241,0.2593265066762901,0.2671428408948739,0.2748351976479776,0.2830407458083068,0.2906344481683737,0.2975600502691295,0.3036265200532994,0.3088269270523001,0.3145831791379863,0.3202758344492697,0.3248037257122498,0.3298173864651145,0.3345505840166636,0.3340286094925381,0.3334341739776134,0.3319920083293469,0.3310569856922166,0.3303705465301208,0.3277465414489912,0.3257328474092854,0.3265668403491181,0.3264677706309019,0.3280697367010824,0.3298524531768499,0.3310408885199897,0.3319253931080629,0.3331622749280439,0.3349581002233054,0.3354754780798751,0.335633626097867,0.3403841325633944,0.3436515162126199,0.3471913678197397,0.348313582497721,0.3512924157004574,0.3556864235055724,0.3590313433979615,0.364557681379049,0.3698499642772088,0.3736736890665846,0.3816494845360825,0.3842952275249722,0.389922480620155,0.0,1.7647469304518455,54.35813691498752,191.7417755597597,272.9837531372386,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95811,44163,417.0189226706745,6212,63.6565738798259,4847,49.9733851019194,1927,19.72633622444187,77.3504688262772,79.68332036095012,63.33176974345843,65.06036676118644,77.11366040217328,79.44859602395998,63.24402082053362,64.97618554754003,0.2368084241039127,234.7243369901406,0.0877489229248098,84.18121364641706,151.28498,105.98821440360555,157899.3852480404,110622.17741554264,334.87764,215.3040057198611,348912.4108922775,224110.83875532149,348.11027,168.1426294462025,359604.97228919435,172623.32246326076,2788.36008,1273.8227102656742,2875435.0961789354,1294679.8908952775,1152.14873,505.8208614490748,1185035.5387168487,510449.2505548148,1894.81558,787.23775416667,1940294.2668378367,788191.8931901471,0.38165,100000,0,687659,7177.244784001837,0,0.0,0,0.0,28511,296.9387648599848,0,0.0,31889,329.06451242550435,1665204,0,59826,0,0,6069,0,0,58,0.6053584661468934,0,0.0,0,0.0,0,0.0,0.06212,0.1627669330538451,0.3102060528010302,0.01927,0.3337430854333128,0.6662569145666871,24.551908622649464,4.415777712977327,0.3214359397565504,0.2279760676707241,0.2213740458015267,0.2292139467711987,11.226487958788804,5.729013435426242,20.38370150621187,12462.767569249643,54.9007410439888,13.221999887470226,17.652140513853915,11.963268468465072,12.06333217419958,0.5669486280173303,0.7846153846153846,0.7105263157894737,0.5927306616961789,0.1242124212421242,0.7461656441717791,0.9218009478672986,0.8839506172839506,0.7568627450980392,0.1486486486486486,0.5009878633926051,0.6998535871156661,0.6496097137901128,0.5415647921760391,0.1181102362204724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982697489717,0.004400596209809,0.0066578706992794,0.00877843593469,0.0111276115304025,0.0136073822085514,0.0158176533578093,0.0178804836206192,0.0200605292217087,0.0221526114284544,0.024373737477313,0.0264517122760178,0.0285887639987248,0.0306597458238068,0.0327447866174377,0.0346858435882334,0.0366544174732156,0.0387188449690394,0.0406962847492855,0.0431419499245224,0.0579521151739606,0.0719999163521157,0.0850031439949696,0.0981990879862147,0.1104613796082645,0.1261770642880544,0.1391474923125861,0.1514461689023158,0.1631062571395018,0.1739447260413429,0.1872209010792721,0.1994097488730095,0.2111043517935125,0.2215227228014951,0.2316433277965393,0.2422778639485929,0.2515568153918264,0.2606895310108921,0.2692879770190637,0.2772159292643538,0.2842150328612422,0.2910137063198765,0.2975412939561739,0.3033715942584649,0.3091057127927183,0.3133910512554881,0.3188285986271857,0.3237396323051638,0.3290299165240836,0.333170383680372,0.3326408935171446,0.3319317884172652,0.3312782167042889,0.3299574640469921,0.329546468401487,0.3279025212659974,0.3258991551349723,0.3262723702157729,0.326753486464315,0.3278287133844476,0.3288936345584654,0.3306924824656722,0.3312327275772548,0.3318354571875698,0.3321225825074569,0.335096955796497,0.3371828421891,0.3416310899045706,0.3436440529866135,0.3433575022782202,0.3439767779390421,0.3451771289794625,0.3509046515995743,0.3549969806763285,0.3524904214559387,0.3491951592057337,0.3501370697532744,0.355252606255012,0.3493224932249322,0.3394216133942161,0.0,2.43888581250467,56.98637791327323,178.48357897455566,267.4499606883178,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95725,43610,412.41055105771744,6157,63.1600940193262,4842,50.09140767824498,1986,20.464873335074437,77.30949638025908,79.66949594915855,63.31695901961641,65.05937011445859,77.07073346153527,79.42993515296797,63.22912722012736,64.97342863693075,0.2387629187238076,239.5607961905739,0.0878317994890522,85.94147752783954,150.9145,105.72623099616482,157654.217811439,110447.87777086948,334.69868,214.9571323868228,349152.57247323066,224063.4655385979,345.84402,166.66897337017028,358188.8952729172,171752.79999793405,2776.80684,1268.339188132437,2872681.911726299,1296847.3315564764,1146.83982,502.82312996438094,1185245.7142857143,512467.7670037934,1942.04574,800.9567191987993,2002358.7150692088,813272.477189079,0.37849,100000,0,685975,7166.100809610865,0,0.0,0,0.0,28416,296.3384695743014,0,0.0,31747,328.5035257247323,1666300,0,59826,0,0,5926,0,0,76,0.7939409767563332,0,0.0,1,0.0104465917994254,0,0.0,0.06157,0.1626727258315939,0.3225596881598181,0.01986,0.33426097711812,0.66573902288188,24.707913587972996,4.478275958443135,0.3273440726972325,0.2211895910780669,0.225113589425857,0.2263527467988434,11.33808386147467,5.98970321685104,20.93130761273292,12323.083030335052,54.95071509725605,12.76261220436478,18.069135004232265,12.15354276219052,11.965425126468473,0.5611317637339942,0.776844070961718,0.7028391167192429,0.6045871559633027,0.1021897810218978,0.7299843014128728,0.8790322580645161,0.8858447488584474,0.7529411764705882,0.1100478468899521,0.5008408071748879,0.7224606580829757,0.6329555361813426,0.5592814371257485,0.1003382187147688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018837159842416,0.0040953693942097,0.0064625436247057,0.0087856504428374,0.0108270218065368,0.0131403503414862,0.0153901034500331,0.0175263098798575,0.0198990229344671,0.0219217897677845,0.0240572371590524,0.0265622112245107,0.0288020565552699,0.0311006755643433,0.0330428505130717,0.0349013813838635,0.0370316704616021,0.0388392810843885,0.0405961586430531,0.042375441410848,0.0568892601681198,0.070961327123345,0.0841802754266175,0.0967192429022082,0.1093629720239162,0.1246562883370701,0.1372018504371445,0.1491483925910155,0.1602768846207257,0.1702319297455528,0.1834507573309202,0.1961805367601684,0.2083460282916213,0.2185136954071415,0.228786594294648,0.2396936072097637,0.2496230019101236,0.2585474658946253,0.2664811133200795,0.2738788517975055,0.2808480090775412,0.2872354118156395,0.2933772246628222,0.2983518856155839,0.3038437701272345,0.3094548100282399,0.3150590649714686,0.31977291820473,0.3241446345256609,0.3286595921819455,0.3284932319473655,0.3283156590001377,0.3274745736412238,0.3270482084502154,0.3261209244185181,0.3247199631732392,0.3241277453985294,0.3246642085857256,0.3259330373214928,0.3265800089645899,0.3272959807406571,0.3275656561643291,0.3293986449522367,0.3312453694349027,0.3321804329423147,0.3331502262680164,0.3340121615419917,0.3374155671990405,0.3389800662111714,0.3404263765929572,0.3430836522689994,0.3442169635735176,0.3465078164397377,0.3489170225747407,0.3508804972219606,0.3496743635287152,0.349272030651341,0.3544538160872248,0.3635862068965517,0.362413528055342,0.0,1.8543396920327344,56.23086379548808,183.8111362449461,266.8248073742272,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95724,44059,416.6039864610756,6246,63.94425640382767,4911,50.62471271572437,1924,19.598010948142576,77.40440741590693,79.76137691535897,63.3594678928421,65.09916685113159,77.1542803358037,79.5162677182064,63.26553569853684,65.01078371012724,0.2501270801032262,245.10919715257276,0.0939321943052604,88.38314100434275,151.78614,106.17390197706644,158566.44101792653,110916.70007215164,336.31136,216.1993891386705,350675.31653503823,225197.93274275056,349.41589,168.7305500802724,361231.8122936777,173328.3024141989,2822.33952,1299.9637607841914,2909628.933182901,1319248.5069409874,1190.10525,528.0072756189318,1221670.343905395,530003.4281912489,1889.409,803.7853792271056,1926674.125611132,798908.4705901736,0.38093,100000,0,689937,7207.565500814842,0,0.0,0,0.0,28603,298.10705779114954,0,0.0,31963,330.1366428481885,1665670,0,59753,0,0,6026,0,0,69,0.7103756633655092,0,0.0,0,0.0,0,0.0,0.06246,0.1639671330690678,0.3080371437720141,0.01924,0.3272727272727272,0.6727272727272727,24.698507474122483,4.399999207402815,0.3319079617185909,0.2180818570555895,0.2260232131948686,0.2239869680309509,11.30048085725354,5.854091079499609,20.480415367861195,12397.62348111109,55.63646748167878,12.808752733446113,18.38162516321221,12.406364846250622,12.039724738769843,0.5703522704133578,0.8104575163398693,0.688957055214724,0.6063063063063063,0.1245454545454545,0.715724244771495,0.9411764705882352,0.8254716981132075,0.7286821705426356,0.1446808510638297,0.5185082872928177,0.7403156384505022,0.6409618573797679,0.5692488262910798,0.1190751445086705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882136746079,0.0046516341525209,0.0070505407105321,0.0092113949118976,0.0112960458755706,0.0135280944625407,0.0156636942675159,0.0177851698417395,0.0199444171979728,0.0222358659503709,0.0243617468305131,0.0263360463087454,0.0283743356190437,0.0302718180600904,0.0325539642577077,0.0344446167364449,0.0367332566978386,0.0387472249310123,0.0407408177264129,0.0426331961876985,0.0575208302879695,0.0717208611108204,0.0846997115132441,0.0968813744663848,0.109454886623586,0.1250423011844331,0.137684080974409,0.1490779779396107,0.1610769806079384,0.1714907718210773,0.1843638595999956,0.1967450819139957,0.2085712731821395,0.2188709783250585,0.2283771292750561,0.238592060960482,0.2486189695001506,0.2580529062443765,0.2666734733235771,0.2750953204254783,0.2827617297222318,0.2900988017658188,0.2967635246869832,0.3031744514031649,0.3095618881457788,0.3151068877770538,0.319377288004298,0.3240209275156194,0.3283967847819906,0.3327366301185948,0.3322145398402363,0.3313525012008509,0.3306688394700982,0.3298992838926271,0.3292168273288614,0.327504848586656,0.3256390811135337,0.32570932726469,0.3264829678100983,0.3268634922896115,0.3267636213899339,0.3285683215690926,0.3282313281266358,0.3288533666726201,0.3297563317728964,0.3309538076752729,0.3312691739575048,0.3337512537612838,0.3386328617453424,0.3419822532086832,0.3466745411593676,0.3500477048658963,0.3518495297805643,0.3530794902912621,0.3547543433588642,0.3526011560693641,0.3562672387373582,0.3589018974566007,0.3576195773081201,0.366375892149088,0.0,2.686531864489408,56.04206566470796,187.0177249998565,268.9695458837287,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95748,43808,414.0452019885533,6298,64.54442912645695,4936,50.95667794627564,1955,20.063082257592846,77.33232137485312,79.69874033292592,63.31916690730778,65.07164468373341,77.08785732335194,79.45546929170463,63.22873044853217,64.98397512839881,0.2444640515011826,243.27104122129128,0.0904364587756134,87.66955533459964,149.83628,104.98723831868462,156489.7856874295,109649.12349731212,332.35767,213.4847911272576,346469.6181643481,222325.86374403728,343.74671,166.01288848428447,355827.5368676108,170902.47150995675,2837.38628,1302.003279464252,2928014.2457283703,1325262.219767293,1194.12661,528.0231781468952,1231684.3171658935,536584.491044666,1926.26478,809.7039064325735,1976768.8515687007,815290.181552333,0.37863,100000,0,681074,7113.17207670134,0,0.0,0,0.0,28268,294.5753436103104,0,0.0,31621,327.0042194092827,1673874,0,60057,0,0,5858,0,0,55,0.574424531060701,0,0.0,0,0.0,0,0.0,0.06298,0.1663365290653144,0.3104160050809781,0.01955,0.3366515837104072,0.6633484162895927,24.732865386058908,4.409346860870733,0.3123987034035656,0.2244732576985413,0.2364262560777958,0.2267017828200972,11.203134951718749,5.749152419330782,20.87917466267474,12366.387346274094,55.9599709539235,13.148087322875158,17.42549598783836,13.027371843295189,12.359015799914795,0.5676661264181524,0.7770758122743683,0.7088197146562906,0.6066838046272494,0.1251117068811438,0.7139605462822458,0.900523560209424,0.8737864077669902,0.7644787644787645,0.1471698113207547,0.5143725815367607,0.7121212121212122,0.6486725663716815,0.5616740088105727,0.1182669789227166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025335441242044,0.0048686973191735,0.0068536268377873,0.0091470851288722,0.011261902824123,0.0136001059483909,0.0156135269641837,0.0179379064615258,0.0203568324727774,0.0223587223587223,0.0243574892103293,0.0266102704145535,0.0286272493573264,0.0303620165816983,0.0325196541691599,0.0347475582657227,0.0365507672554826,0.0386442858328492,0.0407365839464604,0.0426586681663854,0.0573951895774177,0.0718186954611086,0.0845989259942943,0.0967267068336435,0.1091545582994158,0.1250872628038332,0.1377415144988275,0.1493587355648981,0.1612362370379863,0.1715789812263453,0.1850276249044167,0.1971802029907593,0.2091758486789867,0.2198733581950809,0.2293362968179217,0.240087252112099,0.2487558858316038,0.2587621094321365,0.2665501668066178,0.2750667109497577,0.2821595972455297,0.2888852485871078,0.2946975973487987,0.300130653145864,0.3059821168237924,0.3109590729783038,0.3155582259942168,0.3198346581875994,0.3242728756053974,0.3292866379879127,0.3294464567035157,0.3295947154751256,0.3284214974994717,0.3272120441541929,0.3269487949121816,0.3252569188121238,0.3248299589364704,0.3254535007797751,0.3254770112980851,0.3267781231022041,0.3281408355542209,0.3290753173707246,0.3297794194807648,0.3306606942889137,0.3325942350332594,0.3339856490541422,0.3339221104811828,0.3378829907956122,0.3409937451683182,0.3444355803749501,0.3455010038328162,0.3489254784561103,0.3508438015480269,0.3530357553020442,0.3531787022255611,0.3565535124941065,0.3617633691864869,0.3641838988154989,0.3715608825932988,0.3654141104294479,0.0,2.143617310268716,58.03804070701878,182.87652962265955,273.12384715127064,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95716,44219,417.4119269505621,6427,65.87195453215763,4981,51.36027414434368,1970,20.132475239249448,77.41699606751023,79.76916992579756,63.36600846061516,65.1001628369504,77.17462467023519,79.52975875943204,63.276094266991095,65.01418527822585,0.2423713972750363,239.41116636551385,0.0899141936240681,85.97755872455082,150.68614,105.56505815416298,157430.46094696812,110289.8764617859,336.44809,216.52853947498087,350825.70312173513,225550.8439195304,354.01098,171.48291976311504,365210.73801663256,175666.37253276946,2859.09736,1311.9729758646215,2950609.3861005474,1334813.9374575568,1208.81168,537.526495136693,1243664.4134731914,543306.5456587058,1936.09186,811.3389315163741,1980629.236491287,813428.5377987211,0.38105,100000,0,684937,7155.930043044005,0,0.0,0,0.0,28612,298.205106774207,0,0.0,32484,334.7298257344645,1667118,0,59823,0,0,6034,0,0,71,0.7417777592043128,0,0.0,1,0.0104475740733001,0,0.0,0.06427,0.1686655294580763,0.3065193714018982,0.0197,0.3216192170818505,0.6783807829181495,24.81810963766612,4.45660090931228,0.3318610720738807,0.2212407147159205,0.2200361373218229,0.2268620758883758,11.68560638144621,6.117206768174129,20.935659715292644,12443.850366669509,56.32813318582308,13.030218408582243,18.673340390986287,12.137523737150358,12.48705064910419,0.5557117044770127,0.7731397459165155,0.6950998185117967,0.5866788321167883,0.1097345132743362,0.722473604826546,0.9107142857142856,0.8807339449541285,0.748,0.1209677419354838,0.4952120383036936,0.6971830985915493,0.628594905505341,0.5390070921985816,0.1065759637188208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.0044879392963154,0.0068768257059396,0.0091288498055423,0.011336830974459,0.0134672937152629,0.0158091083295959,0.0179424372320881,0.0199991824554949,0.02253777609543,0.0245931876870106,0.0267041605944292,0.0290710225228466,0.0315019823901961,0.0336201204918709,0.0358884801388831,0.0378936905969809,0.0396934055220196,0.0416043069759707,0.0437346334958536,0.0588499410038739,0.073284295773911,0.0867708770457406,0.099260645961949,0.1114943256127916,0.126713342922413,0.1385064177362893,0.1501330494944119,0.1609029625118853,0.1717407856216019,0.1840158506250875,0.1968279040581623,0.2083469188131725,0.2190281676296158,0.2289750942069587,0.2393052713092538,0.2500612949960994,0.2592288761279737,0.2673635518468969,0.2747671464860288,0.2821040462427746,0.289490289560401,0.295728355067923,0.3022687818018557,0.3076577724388142,0.3137153483331486,0.3187056294370562,0.3235895936860567,0.3281005521575524,0.3332849967702387,0.3324051654560129,0.331463994611906,0.3307898071237505,0.3297335588613725,0.329618236666518,0.3280726192845224,0.3259550668309792,0.3261193419006302,0.3285266777895059,0.3289251497538171,0.3301247971347025,0.3313008929625113,0.3318717113505387,0.3332666088387714,0.3352329869259135,0.3365092551727718,0.3370872574605696,0.3398043077307824,0.3422209813638584,0.3461083043890117,0.3484629294755877,0.3527051992610187,0.3566381089362767,0.3589041095890411,0.3609296247899944,0.3675283658907474,0.3699788583509514,0.36779324055666,0.3667922497308934,0.3660081997763697,0.0,2.5760245409143225,57.85281725252591,185.3409933569349,273.6711140322632,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95699,43884,414.52888744918965,6312,64.76556703831807,4882,50.47074682076093,1964,20.20919758827156,77.3508434030137,79.74087162499522,63.31502979323547,65.08253322164465,77.10314269373907,79.49205463361018,63.22415319058826,64.99344862788617,0.2477007092746248,248.8169913850413,0.0908766026472065,89.08459375848565,151.13274,105.88644596265728,157925.0984858776,110645.30032984389,334.98647,215.15267476137333,349501.1860103031,224281.7347053859,347.03142,167.3754313140811,358704.11394058453,171975.22534768237,2792.20596,1274.8409205825303,2888451.498970731,1303063.282788221,1141.59,502.0677911036136,1181434.0902203785,513340.0516497396,1924.88492,806.0306435868366,1982215.0074713423,817790.6023290862,0.37947,100000,0,686967,7178.413567539891,0,0.0,0,0.0,28471,296.941451843802,0,0.0,31862,329.02120189343674,1665312,0,59759,0,0,5909,0,0,56,0.5851680790812861,0,0.0,0,0.0,0,0.0,0.06312,0.1663372598624397,0.3111533586818757,0.01964,0.3336355394378966,0.6663644605621033,24.83283182046829,4.355990880277154,0.3265055305202786,0.233920524375256,0.2156902908643998,0.2238836542400655,10.944037226892885,5.6060223690201525,20.840830647419622,12429.893990268998,55.099936894241054,13.566910097864197,17.78583382870043,11.785834481633511,11.961358486042924,0.5471118394100778,0.7408056042031523,0.6944792973651192,0.5698005698005698,0.1079597438243366,0.7068832173240526,0.8894601542416453,0.8722891566265061,0.6934865900383141,0.1096491228070175,0.4895514070771802,0.6640106241699867,0.631891433418151,0.5290404040404041,0.107514450867052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361234640436,0.0042794414416241,0.0063242952420591,0.0086389137328238,0.0108038820728804,0.0133452863633585,0.0156280284405635,0.0178728271748677,0.0200857017211932,0.0223879068433665,0.0244897959183673,0.0264890459218783,0.0284712150667036,0.030362975097621,0.0325397071116752,0.034744763991978,0.0367887779205171,0.0390479848042929,0.0411292335857535,0.043331873996706,0.0580420091705747,0.0724441931565942,0.0862888751272658,0.0991068704699186,0.1109024935656723,0.1265591113462047,0.1394257814573051,0.1514280237684493,0.1632711958613023,0.173711489553488,0.1866195285469459,0.1991361205534024,0.2105371968270894,0.2213017880983125,0.2316118591260885,0.2416890288527644,0.2513315839428284,0.260417722231605,0.2696872976748941,0.2773911747509372,0.2843775332947307,0.2904041882854499,0.2966609791933267,0.3026824060078217,0.3083459972038174,0.3142990988325505,0.3190014390289682,0.3233785898789907,0.3278198408076102,0.3314634918958872,0.3306204945091962,0.3300173367456451,0.3283544268157053,0.3277365518436174,0.3271015567086731,0.3254896564377781,0.3243730432307644,0.3245897339213404,0.3250303040650129,0.3248372424863997,0.3256384333108664,0.3256607495069034,0.3278743315508021,0.3283392415223062,0.3296495181473846,0.3301008735440932,0.3301988330595366,0.3340633212363909,0.3382003632807042,0.3427525679877209,0.3466810966810967,0.3468256900100269,0.3469988107905113,0.3521940832002433,0.3534848627746864,0.3533897295365185,0.3565084226646248,0.353870774154831,0.3612920738327904,0.3628659476117103,0.0,2.117338779528169,56.92905578809263,178.44769130292485,272.1442169283084,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95720,44394,420.5495194316757,6194,63.518595904722105,4805,49.59256163811116,1873,19.06602590890096,77.26691653433518,79.62467464617525,63.2951211478972,65.03826320361414,77.02958112199465,79.3951037179004,63.20760739053712,64.95727499458715,0.2373354123405278,229.5709282748533,0.0875137573600781,80.98820902698378,150.63554,105.57335141302404,157370.55996656916,110293.47891038869,332.36825,213.8353437356068,346648.48516506475,222816.01086776183,349.42278,168.66397832437212,362194.285415796,173831.30100586166,2756.83512,1253.5760042141271,2846725.574592562,1276286.5595490483,1138.6413,499.9844842254304,1173419.7033012954,506273.1983501259,1839.36622,770.8064300335856,1875291.8303384872,764447.68318864,0.38149,100000,0,684707,7153.207271207689,0,0.0,0,0.0,28223,294.2122858336816,0,0.0,31985,331.2682824905976,1665363,0,59789,0,0,5988,0,0,59,0.6163811115754283,0,0.0,0,0.0,0,0.0,0.06194,0.1623633647015649,0.302389409105586,0.01873,0.3255131964809384,0.6744868035190615,24.37981999894235,4.331626399938257,0.3234131113423517,0.2349635796045785,0.2195629552549427,0.2220603537981269,11.076476980385772,5.668490493444493,20.044262844956524,12434.95669887585,54.492165284329744,13.453898421899842,17.64413184824273,11.759258911745686,11.634876102441488,0.5473465140478668,0.7714791851195748,0.6833976833976834,0.5620853080568721,0.0974695407685098,0.7255700325732899,0.9348958333333334,0.8316831683168316,0.7276595744680852,0.1219512195121951,0.4861615879228403,0.687248322147651,0.6313043478260869,0.5146341463414634,0.0916473317865429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0043192164576341,0.006768275358201,0.0089393646956044,0.0109330187336004,0.012900532516062,0.0151078036597176,0.0170578087197966,0.0192797194933706,0.021464762782128,0.0237926828018164,0.0258618919529373,0.0280534331520006,0.0299219248913334,0.0319518813127405,0.0342254059809181,0.0362135741358242,0.0382939431037702,0.0402594567624037,0.0424702780990486,0.0576822671929494,0.0714921233055948,0.0854732246859685,0.0985090017572103,0.1100700599307841,0.12569451058831,0.1373075698057118,0.1494301842581744,0.1609350271611275,0.1718781867559763,0.1849276674643727,0.197297560869895,0.2087925251557259,0.2194929639161145,0.2290078018248336,0.2394091075570748,0.2499021723332178,0.2586688596985332,0.2674307653861008,0.275876298113294,0.2826708326100792,0.2898789878987898,0.2969808193227563,0.3033504412893323,0.309134884173169,0.3139407244785949,0.3196696659064137,0.3251942427716214,0.3298963723849915,0.3342639392415782,0.3344816405933371,0.3331584325205048,0.3337243650445917,0.3322324584274871,0.330528165867318,0.3288693675707221,0.3274599215113046,0.3282733386075949,0.3291986206186628,0.3309022489024281,0.3318171566047665,0.3329168402054699,0.3338316104175,0.3351893845842969,0.3358560824044297,0.3362929205625835,0.3352738743905936,0.3377470856563608,0.3403876934020985,0.3429977015202226,0.3459516783474732,0.3478377941730842,0.3511193080641058,0.3535500690078209,0.3577374195989406,0.3584928087483656,0.3630095004596996,0.3690934901642669,0.3729939125622579,0.3787996882307092,0.0,2.3261885750596765,53.69101383153835,182.4146408262736,271.3134935693295,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95699,43895,414.6960783289272,6275,64.35803926895788,4906,50.64838713048204,1995,20.418186187943448,77.288290147924,79.65922921137793,63.294707477804174,65.04470481661338,77.04479446581884,79.41629859178688,63.20549146819811,64.9581978944052,0.2434956821051628,242.9306195910499,0.0892160096060621,86.50692220817291,150.37682,105.34205100011896,157135.20517455775,110076.4386253973,333.66189,214.19659603876565,348035.64300567406,223202.0583865344,345.95731,166.25848871167483,357670.4145288875,170763.0241824152,2811.7712,1281.4291788700152,2903147.4937042184,1304155.9279584666,1169.64522,515.3982190892146,1203677.049916927,520114.8688927348,1949.5088,808.6969950746484,1997143.5020219649,812459.810101258,0.37939,100000,0,683531,7142.50932611626,0,0.0,0,0.0,28419,296.31448604478624,0,0.0,31737,327.8090680153398,1666440,0,59873,0,0,5936,0,0,58,0.606066939048475,0,0.0,1,0.0104494299835943,0,0.0,0.06275,0.1653970847940114,0.3179282868525896,0.01995,0.3329798515376458,0.6670201484623541,24.703857305473782,4.413643041285184,0.3194048104362005,0.2319608642478597,0.2282918874847126,0.220342437831227,11.13140496088477,5.676468219013411,21.154687979502054,12370.10210701109,55.76402145813191,13.584828583722604,17.82167427414256,12.607139966933556,11.750378633333185,0.5605381165919282,0.7644991212653779,0.7102744097000638,0.575,0.1137835337650323,0.735686274509804,0.916030534351145,0.8880778588807786,0.7091633466135459,0.1590909090909091,0.4990360782153676,0.6845637583892618,0.6470588235294118,0.5362485615650172,0.1022067363530778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901396611268,0.0050486106183027,0.0073162316840524,0.0093155082386883,0.0116955495891302,0.0137971061715321,0.0160681878428253,0.0181697545041596,0.0201678438908708,0.0222995445939722,0.0245147272839076,0.0265651142977386,0.0287679542673836,0.0310604422199565,0.0331404523934771,0.0352614119033101,0.037335763022478,0.039268591353438,0.0412501950179416,0.0431778389194597,0.0583302001086184,0.0721779006218983,0.0851340714698011,0.0980404537896487,0.1100824457135618,0.1253202888423014,0.1383546951821686,0.1493990794408455,0.1605197027214885,0.1709263117201091,0.1835396626838631,0.1957466171197036,0.2075387447042551,0.2178525679626,0.2281258260639704,0.238497298376807,0.2480574220453249,0.2574746335963923,0.2656877353018119,0.27391094679312,0.2810289239904437,0.2883370849746764,0.2953555964173439,0.3020130197698719,0.3067895448070999,0.3120506929519009,0.3169087462495449,0.3209311224489796,0.3255741452769407,0.3301481001098508,0.329650017539599,0.3295161357082741,0.3287539574853008,0.3276451996404442,0.3277888832532744,0.3271995576308675,0.3246044215905664,0.3258258752303237,0.3268390479617539,0.3277464410421702,0.3286275541853864,0.3294061738906599,0.3300775096099313,0.3303070283324761,0.3312369475983581,0.3318688746198039,0.3321378760709305,0.3362180193221512,0.3390634887154609,0.3435673096042951,0.3459919472913616,0.3486684100976677,0.3512644258056379,0.35351532713131,0.353781512605042,0.3515294117647058,0.3516217035465293,0.3485335476094817,0.3485421166306695,0.3497926875235582,0.0,2.314148703682775,56.04719824471562,189.31049631212272,269.3212305735781,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95822,44256,418.3277326709941,6233,63.84755066686147,4867,50.15549665003861,1888,19.337939095406064,77.36488025655099,79.67949629136017,63.35773544642036,65.0710436785692,77.13101070185823,79.44869484946128,63.271284992359135,64.98867422617188,0.2338695546927596,230.8014418988904,0.0864504540612216,82.36945239731597,151.36506,106.0997832143505,157964.60103107843,110725.69578630218,337.1017,217.1678941479527,351116.3928951598,225954.14087261035,354.24659,171.43062265551995,365821.3771367745,175942.74028521904,2777.5774,1267.8559396064277,2863361.4410051974,1287862.9329448638,1127.74036,496.30908252857074,1161967.2309073072,503004.4901260368,1849.65362,772.2602284183766,1894789.693389827,772680.392283117,0.38082,100000,0,688023,7180.209137776294,0,0.0,0,0.0,28692,298.7205443426353,0,0.0,32439,334.6517501200142,1664795,0,59763,0,0,6055,0,0,52,0.5426728726179791,0,0.0,1,0.0104360167811149,0,0.0,0.06233,0.1636731264114279,0.3029038986042034,0.01888,0.3322173185207731,0.6677826814792269,24.51621335697109,4.387082905096454,0.3207314567495377,0.2336141360180809,0.2260119169919868,0.2196424902403945,11.060093168776998,5.660943848502406,20.067032819679586,12357.404585878048,55.159363316818016,13.758022504042506,17.61343863393071,12.300472208194956,11.487429970649842,0.5566057119375385,0.7845206684256816,0.7014734144778988,0.5718181818181818,0.0869971936389148,0.7329762815608263,0.9149425287356322,0.8692493946731235,0.68,0.1483253588516746,0.4918539325842697,0.7037037037037037,0.6411149825783972,0.54,0.0720930232558139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0043391865039133,0.0064230051140514,0.0086945922886279,0.0109923633072675,0.013379220461858,0.0155456788109849,0.0175898891316332,0.0196270853778213,0.0217718409335175,0.0242077645226089,0.0264054514480408,0.028222573948077,0.0302905546578289,0.0324492593776091,0.0345518174028843,0.0365639222176251,0.0384192966823466,0.0404855356883267,0.0427196587421318,0.0573872229465449,0.0715263768540101,0.0847702654570596,0.0976193726569145,0.1100954146218168,0.1260520174447459,0.1388827087902192,0.1507893477914208,0.1615174532730221,0.1717223650385604,0.1850995158687466,0.1969924649463249,0.2091739730343426,0.2193670277826314,0.2285934065934066,0.2395280431705591,0.2485547201336675,0.2582507046365647,0.2665632466341309,0.2741229323609094,0.2814603563140089,0.2886054084336084,0.2953629865910567,0.3016322869955157,0.3073823222392154,0.3126861813437061,0.317992050198745,0.3220302375809935,0.3263308943299635,0.3305555555555555,0.3299686832166234,0.3290678175770404,0.3277506233008888,0.3268738891056487,0.3258386866523911,0.3240373270406521,0.3214874461070251,0.322832056299122,0.3233531909066009,0.324736644429739,0.3255232328550744,0.3272150014882429,0.3285188689162199,0.3293027638190954,0.3296534141472448,0.3315153571148978,0.3327928542982306,0.3354826534142736,0.3380440132180271,0.3403389830508475,0.3428165007112375,0.3462280325760823,0.3486104028556859,0.3478327815844176,0.3501952938934933,0.3514224240975376,0.3566227730441518,0.3655626414318041,0.3746891406465875,0.3807126258714175,0.0,2.393499720870849,57.085842342372885,181.0261252773824,267.3373784286614,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95635,43951,416.57343022951846,6313,64.85073456370576,4929,50.922779317195584,1889,19.3234694411042,77.2563444549925,79.6675660206393,63.27473565930678,65.05628682518129,77.02875807968552,79.4421270521377,63.19035721562133,64.97488704479458,0.2275863753069842,225.43896850159229,0.0843784436854448,81.39978038670392,149.09048,104.46976261413744,155895.31029434828,109238.00137411768,329.2978,211.89141443599263,343695.73900768545,220930.65764206892,344.49847,166.95931147940945,356289.85204161657,171471.5287627197,2808.55432,1286.82407849292,2902656.516965546,1311471.028904607,1163.89378,517.2988361250812,1200147.1636953,524040.1486119947,1854.98478,771.7226632688004,1900046.4056046424,774889.4536261146,0.38024,100000,0,677684,7086.150467924923,0,0.0,0,0.0,28000,292.12108537669263,0,0.0,31628,326.8886913786793,1674335,0,60087,0,0,6019,0,0,71,0.7319496000418256,0,0.0,1,0.0104564228577403,0,0.0,0.06313,0.166026719966337,0.2992238238555362,0.01889,0.3321725965177896,0.6678274034822105,24.66545468091624,4.388680428560656,0.3191316697098803,0.2335159261513491,0.2254006897950903,0.2219517143436802,11.125042791417588,5.793318283734604,20.04098746010827,12463.211281134823,55.98618229805366,13.71561466559685,18.094711659623197,12.413158883551594,11.76269708928202,0.5579224994927977,0.7715030408340573,0.6999364272091545,0.5895589558955896,0.0968921389396709,0.7326807228915663,0.9019607843137256,0.835214446952596,0.7481481481481481,0.1594202898550724,0.4934740349902805,0.6998654104979811,0.6469026548672566,0.5386444708680143,0.0822998872604284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598521294373,0.0046319288892492,0.0068094865992145,0.009072160759095,0.0112625902940278,0.0135387060297668,0.0158111637016484,0.0177980301606113,0.0200274123928564,0.0221996844714897,0.0240621408635692,0.0262568339704854,0.0284240652281337,0.0301777466182777,0.0321570977005557,0.0342297782514667,0.0362718470756536,0.0382377994307439,0.0401348581180216,0.0419517690253671,0.0565605894340805,0.0707453774029647,0.0846149808409007,0.0977432529156667,0.1100348211459322,0.1260885667425004,0.1386091330694372,0.1505803428814822,0.1622508416608774,0.1731889734207504,0.1860048942982503,0.1982839871299034,0.2100705790092798,0.2210156044534058,0.2307200282320765,0.2418328948682939,0.2517197794208118,0.2607642019837691,0.2691984177502955,0.2773692482419209,0.2846921854888273,0.2915953380390685,0.2975752686896486,0.304141656662665,0.3093313203136414,0.3148591897233201,0.3196774759862563,0.3247657295850067,0.3293111725247493,0.3333906033172537,0.3322855254104664,0.3311534216335541,0.3310199581613614,0.3310223795088981,0.3306375803876513,0.3292917480881968,0.3279996186420479,0.3279350225707602,0.3292366399092424,0.3298493256469658,0.3312847582241493,0.3317299091613827,0.3338455708992927,0.3345423607379545,0.336366919465511,0.3366204899428661,0.3375432179901134,0.3398865784499055,0.3430442242375433,0.3437487639916149,0.3464506172839506,0.3474414662570187,0.3481957302097109,0.3513595394985988,0.3542762247439801,0.3570176463713918,0.3584031100478468,0.362879238548483,0.3667829353367319,0.3708124759337697,0.0,2.319718187431986,58.37608106695974,183.36548342881773,270.45757845580886,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95689,43993,415.3455465100482,6385,65.58747609443093,4984,51.458370345598766,1996,20.36806738496588,77.32722884548278,79.70421447563082,63.32110870231941,65.07587903957432,77.08084813379361,79.46192807624195,63.2298071257058,64.98939236463579,0.24638071168917,242.286399388874,0.0913015766136169,86.48667493852713,151.05068,105.77666046771353,157855.8454994827,110542.13176824244,337.21212,216.8281234443789,351802.1089153404,225994.54842706997,348.23582,168.2349523590154,360278.4541587852,172878.2375853974,2869.45176,1313.6164876371995,2964764.4347835174,1338835.3600071063,1169.70106,516.3085779908,1207569.1458788367,524739.8948581347,1962.36552,821.4231424254185,2005764.6333434356,820915.1226793055,0.37958,100000,0,686594,7175.265704521941,0,0.0,0,0.0,28700,299.29249966035803,0,0.0,31968,330.46640679701954,1663590,0,59740,0,0,5909,0,0,58,0.6061302762072966,0,0.0,0,0.0,0,0.0,0.06385,0.1682122345750566,0.3126076742364918,0.01996,0.3299492385786802,0.6700507614213198,24.782397951980847,4.428109746051489,0.3200240770465489,0.2275280898876404,0.2203049759229534,0.2321428571428571,11.300525878259688,5.783280528070245,21.332038200052203,12444.422637890655,56.51774096453879,13.415954350762252,18.23018522580258,12.185239593274703,12.686361794699252,0.5545746388443018,0.7768959435626103,0.7084639498432602,0.5673952641165756,0.1123595505617977,0.7484802431610942,0.9448621553884712,0.8862559241706162,0.7471698113207547,0.1565217391304348,0.4850054525627045,0.6857142857142857,0.6445012787723785,0.5102040816326531,0.1014023732470334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024297892157855,0.0044896676835139,0.0071218423455412,0.0094863747625867,0.0116024852299651,0.0137659983912516,0.016081006668978,0.0184857986171397,0.0205959953367557,0.0227954654842244,0.0247874555169266,0.026878793792303,0.0288729569322869,0.0308404088698376,0.03307738353252,0.0353578704613379,0.0371199171199171,0.0391507475083056,0.0412432258131624,0.0434365651027279,0.0583288939028339,0.0724378296910324,0.0856909085187399,0.0984944924303794,0.1106306230289734,0.1256862973267463,0.1385286438987116,0.1504083653672094,0.1615987862729176,0.172815138219929,0.1859515705114395,0.1978523954882985,0.2093870669494751,0.2202679792179382,0.2300063838686243,0.2399809424617464,0.250429735461547,0.2588596629390455,0.2675851737521846,0.2754599399729649,0.2836518980747189,0.2899624337324017,0.2967159160865653,0.3021656020421615,0.3080681031025556,0.3136137728612478,0.3180861723446894,0.3227158103874271,0.3276731434793317,0.3318539066111882,0.3312688067576138,0.3309221675691315,0.3305815446707026,0.329982353111349,0.3289019234204728,0.3276527084133692,0.3258706862356207,0.3265925840815455,0.3273149650684112,0.3285724474876074,0.3296530558778397,0.3305555007010407,0.3323489989109491,0.3334450776623086,0.3348173461038649,0.3360133653544951,0.3356178074759416,0.3380051022015055,0.3422114608555286,0.3461461939437348,0.3484834600934665,0.3503286836620169,0.3543277151184894,0.3560780697710158,0.3586161011310712,0.3628878281622911,0.3665843113032736,0.3660277324632953,0.3722991689750692,0.3754345307068366,0.0,2.504288045680431,57.474473231398505,187.29992835295525,275.65309500168627,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95771,44047,416.1802633365006,6332,64.90482505142475,4985,51.3829864990446,1895,19.41088638523144,77.38146625236273,79.70529838437534,63.35451413110488,65.0681528437277,77.15099510722555,79.47607263939133,63.27027736963744,64.98685542043023,0.230471145137173,229.2257449840065,0.0842367614674373,81.29742329747103,150.15616,105.17124949106515,156786.66819809756,109815.340229365,333.50857,213.77443754067616,347591.3794363638,222570.99997797905,348.60081,168.17563565947705,359547.76498104853,172212.31477430597,2828.57112,1287.3866619423382,2919456.119284544,1310271.0704470414,1189.69919,516.8700059431098,1229837.2054170887,527355.0847692122,1854.18236,763.3200089451758,1902213.0916456964,769166.8654084903,0.38074,100000,0,682528,7126.666736277161,0,0.0,0,0.0,28322,295.0371197961805,0,0.0,31987,329.4943145628635,1672912,0,60080,0,0,5968,0,0,76,0.7935596370508818,0,0.0,0,0.0,0,0.0,0.06332,0.1663077165519777,0.299273531269741,0.01895,0.3327313769751693,0.6672686230248307,24.564275763747883,4.33202798135871,0.3283851554663992,0.2385155466399197,0.2214643931795386,0.2116349047141424,11.32904794468768,5.9576101241735,19.81885991357691,12446.02274852041,56.17501548237842,14.089610808362348,18.461284893486987,12.226409766597426,11.397710013931649,0.5654964894684053,0.7804878048780488,0.7049480757483201,0.5661231884057971,0.1061611374407583,0.7378787878787879,0.9135514018691588,0.8781609195402299,0.7368421052631579,0.0904761904761904,0.5034106412005457,0.7056504599211564,0.6422628951747088,0.5169194865810969,0.1100591715976331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047630629535043,0.0071311916089307,0.0095052400682427,0.0116627858501021,0.0137426960115642,0.0159307729941291,0.0180512046041286,0.0204331834899877,0.0225282370273367,0.0248739909027578,0.027055311028348,0.0290321254598894,0.0312020670983415,0.0330429403577504,0.0348242778506439,0.0367783262446576,0.0388686717883321,0.0408684811967587,0.042919169937839,0.0578990211016259,0.0717798472323951,0.0842579968536969,0.0970346154250454,0.1094736620178573,0.1248149244891915,0.1374797153251381,0.1486354153361434,0.1594715256119964,0.1700633596706583,0.1835278160523596,0.1963773992971073,0.2079722515195337,0.2182273607297944,0.2285085547670132,0.2384249770106028,0.2484429065743944,0.2577458767409941,0.2666999682121611,0.2749223593587055,0.2825681699762635,0.2895007961037745,0.2962419190603613,0.3024540465406092,0.3084676195217914,0.3145077847851793,0.3196198574465425,0.324370709382151,0.3296737441740031,0.3331795290953674,0.3328715161949854,0.3321791701016763,0.3322311491325576,0.3327071471922777,0.3323376874266268,0.3319910583047525,0.3300297167425392,0.3312959837448998,0.3316961697192946,0.3323542501112594,0.3333956165100245,0.3341934213117983,0.3348870263152394,0.3355826164674338,0.3372450203983681,0.3376880237339301,0.3398226567384755,0.3421918580964618,0.345063025210084,0.3474653646143464,0.3520825754819934,0.3553522318595303,0.3585931155119635,0.3587128937230908,0.3616260468617672,0.3696862048549437,0.3657203582814635,0.3668412570507655,0.3656798245614035,0.3676132003069838,0.0,2.5820896638371917,57.7093960616928,182.4451298972793,276.1749137933116,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95769,44083,416.2829308022429,6224,63.82023410498178,4883,50.5382743894162,1907,19.609685806471823,77.31912755708531,79.6679199373319,63.32066847763053,65.0580392727541,77.08090246799648,79.42974829044616,63.23250853339423,64.9721654952655,0.2382250890888286,238.1716468857462,0.0881599442363025,85.87377748860092,149.14306,104.58097552376044,155731.8547755537,109201.07838584745,332.50164,214.1881555655232,346714.8868631812,223176.247960381,350.03737,168.61147170133077,362977.497937746,174109.99198312862,2792.04056,1270.318383085087,2890858.503273502,1302003.6429711983,1168.20732,508.84346415997817,1206791.1954807923,518541.4673502448,1871.58072,781.3504118527228,1925954.974991908,790483.3657203591,0.38021,100000,0,677923,7078.720671616075,0,0.0,0,0.0,28196,293.936451252493,0,0.0,32063,332.2369451492654,1674657,0,60073,0,0,5959,0,0,66,0.6891582871284027,0,0.0,0,0.0,0,0.0,0.06224,0.1636990084427027,0.3063946015424164,0.01907,0.3298035604665439,0.6701964395334561,24.80590468005427,4.387507802842245,0.3237763669875076,0.2320294900675814,0.2199467540446447,0.2242473889002662,11.071638818788296,5.586446653947249,20.297136436914958,12419.036950729487,55.27228824052111,13.507531737572334,17.823644841065704,11.99573782366948,11.94537383821357,0.5633831660864222,0.7828773168578994,0.6963946869070209,0.5865921787709497,0.1214611872146118,0.740598618572525,0.9058823529411764,0.8656716417910447,0.7557251908396947,0.1588785046728972,0.4988826815642458,0.7090395480225988,0.638676844783715,0.5320197044334976,0.1123723041997729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886307709445,0.0047933197539496,0.0071425672659388,0.0094558085681204,0.0115426467746692,0.0137586182314421,0.0160999235279123,0.01860474615039,0.0208686938917404,0.0230032145123973,0.0249864148544595,0.0269018697826287,0.0291664524091119,0.0314093517249904,0.0333673816819884,0.0353551534192494,0.0373920785109422,0.039571404862667,0.0415220598931814,0.0433161485184606,0.0576084006596939,0.0710370509843302,0.0845194516409863,0.0966958314053758,0.1088093280199042,0.1249510959787677,0.1382283690049424,0.1502064181137214,0.1620415354225615,0.1720264128290884,0.1852617524818571,0.1976301266096742,0.2086550801557435,0.2196308688141004,0.2300727228719483,0.2407591965096449,0.2505747639561617,0.2593259235926742,0.2678597773414891,0.2756744995648389,0.2825319269645359,0.2893181153058238,0.2956543373693813,0.3012386576407893,0.3064471011760699,0.31244831204098,0.3178338282649826,0.3218285364828192,0.3265329943971778,0.330616073669886,0.3295221658936468,0.3290262146487953,0.3285103259411922,0.3280994249460434,0.3283444417995715,0.3266770957946075,0.3253342638265476,0.3258524875867284,0.3267231947483588,0.3283648856600937,0.3302536946275327,0.3317966879686603,0.3332492855942175,0.3325177336805244,0.3334941968486837,0.3357480973925779,0.3367256510677224,0.3415125838661921,0.3456229311923375,0.3459082073862509,0.3484144341170038,0.352787827197276,0.3549993695624763,0.3578947368421052,0.3594014680971202,0.3615547205260686,0.3670156273706569,0.3686756702277766,0.3654320987654321,0.3665521191294387,0.0,1.7010627540649537,57.83294814473743,178.786945714464,272.08904016695914,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95689,44813,423.078932792693,6257,64.29161136598773,4900,50.695482239337856,2044,21.08915340321249,77.34181859432726,79.72527854020221,63.3271521787835,65.08610110731608,77.10064624555584,79.48115563644868,63.23848466707627,64.99792742476876,0.2411723487714283,244.12290375353507,0.0886675117072286,88.17368254732116,149.8904,105.1195573600854,156643.292332452,109855.424719754,338.30943,217.98451577399143,353069.2765103617,227323.46014065517,357.46791,172.29558369020694,369998.6518826615,177337.09261839278,2823.17208,1285.0208897909274,2923193.052492972,1315744.7666826143,1187.58316,515.7110377011273,1227640.533394643,525499.0936274044,2009.3353,825.9463347615637,2074918.8307955984,843000.4742290233,0.38521,100000,0,681320,7120.149651475092,0,0.0,0,0.0,28597,298.33105163602926,0,0.0,32716,338.3147488217037,1667743,0,59833,0,0,5945,0,0,61,0.6374818422180188,0,0.0,0,0.0,0,0.0,0.06257,0.1624308818566496,0.3266741249800223,0.02044,0.3307458143074581,0.6692541856925418,24.75729401529047,4.36758808225713,0.320204081632653,0.2289795918367347,0.2144897959183673,0.2363265306122449,11.21589425553123,5.806859384073009,21.412427045195567,12552.84907171807,55.56364234026966,13.447313072771763,17.771086031414224,11.715397558640973,12.6298456774427,0.556734693877551,0.7985739750445633,0.7004461440407903,0.570884871550904,0.114853195164076,0.7027463651050081,0.8967254408060453,0.8426395939086294,0.6728110599078341,0.1565217391304348,0.5073730202075368,0.7448275862068966,0.6527659574468085,0.5443645083932853,0.1045258620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189638585938,0.004733571870217,0.0070310359871351,0.0092827689870203,0.0117033391629723,0.0139488474382992,0.0161453077699293,0.0181701254555291,0.0203906417686198,0.0227047057498797,0.0250082027725371,0.0271647033450071,0.0292995072168554,0.0315105052191206,0.0339467627235852,0.0364497677930513,0.0384440023211473,0.0404385427589572,0.0424113180068657,0.0443357970123114,0.0596149627602344,0.0733954559731965,0.0869656482540748,0.0999936866029715,0.1121460821131693,0.1275504267899262,0.1396390182825249,0.1517548248368657,0.1628950573754727,0.1736271986271986,0.1870638407857327,0.1995565170362358,0.2109476111237996,0.2216743921637222,0.2320029921675613,0.2425266095894204,0.2528236607142857,0.2619810822058013,0.2705051972220961,0.2782988079288193,0.285248404107688,0.2921319411152555,0.2985051680503323,0.304276473406804,0.3101182813980035,0.3147317578057616,0.3195360302306085,0.3252907790588175,0.3307336537589553,0.3359198701452947,0.3351650571740272,0.3345398992540395,0.3337797640026504,0.3327068484436669,0.3330806504355064,0.3316670755642787,0.3291207398961104,0.3287075053374938,0.3295439004376367,0.3301556698086261,0.3315872184389732,0.3327803452225777,0.3335427793486229,0.3342205323193916,0.3356172616901069,0.3363097569254066,0.3368727521835931,0.3395709290237217,0.3452846818261942,0.3487696105757745,0.3512377820407417,0.3551645313912073,0.3580262414464185,0.3613963039014374,0.3620205799812909,0.3627497621313035,0.3618653167663752,0.3557400283458189,0.3521872387851769,0.3661265432098765,0.0,2.0251574544059228,54.48392199091511,192.3710971422419,270.5021577459109,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95681,44046,417.5437129628662,6187,63.53403497037029,4820,49.81135230610048,1893,19.43959615806691,77.38307130315455,79.75871084517823,63.34642469116329,65.09707977894833,77.14498986672129,79.52138636814533,63.25935773340577,65.01242952187775,0.2380814364332621,237.3244770328995,0.0870669577575213,84.65025707057805,150.26726,105.31667780097548,157050.2607623248,110070.62823442007,331.40796,212.97087738938683,345731.35732277046,221949.33908256883,346.35203,167.05535174664956,358356.8315548541,171875.4189765604,2747.86008,1256.0605221893893,2840003.302641068,1280975.449228026,1132.68479,499.04086601498886,1166613.0788766842,504487.9180874304,1851.02318,773.3651867221066,1901297.624397738,779926.278027172,0.38065,100000,0,683033,7138.64821646931,0,0.0,0,0.0,28203,294.15453433806084,0,0.0,31781,328.5814320502503,1671103,0,60065,0,0,5909,0,0,58,0.5852781638987887,0,0.0,0,0.0,0,0.0,0.06187,0.1625377643504531,0.3059641183125909,0.01893,0.3252621838371375,0.6747378161628624,24.68046404681081,4.383881517267105,0.325103734439834,0.2331950207468879,0.229460580912863,0.2122406639004149,11.526174082076473,6.080778013090258,20.078112499284977,12371.492100981028,54.47046695733221,13.401666735571562,17.565300371947142,12.2203694710377,11.283130378775803,0.5719917012448132,0.7891459074733096,0.7121888959795788,0.5849909584086799,0.104594330400782,0.7369230769230769,0.9311224489795918,0.8894348894348895,0.7463235294117647,0.1222707423580786,0.5110795454545455,0.7131147540983607,0.65,0.5323741007194245,0.0994962216624685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021359950598787,0.0041436184223856,0.006216975487064,0.0084487590885088,0.0106349448426617,0.0126937915449372,0.0148728822198209,0.0165766722126386,0.0189608823198716,0.0211496135537697,0.0233449870305627,0.0253737780333525,0.0277066428064545,0.029932533347067,0.032114303399185,0.0342810487913269,0.0360494747964447,0.03802723347725,0.0399841935047783,0.0418420942932177,0.056012284678624,0.0707466186508102,0.0839033192060761,0.0963105489491005,0.1086053475033738,0.1244000422877682,0.1370512100236386,0.1489997553894094,0.1601327414742413,0.1699186730528143,0.1835298674470649,0.1962134809592803,0.2074624756811981,0.2177229854530749,0.2279206352697917,0.2391403090899019,0.2490341023293208,0.2579079535601274,0.2669217320224336,0.2751257288838483,0.2827752192728703,0.2902519808527322,0.2977909387029908,0.3038585209003215,0.3087099794501392,0.3136657455837363,0.3188079138492362,0.3234826010007767,0.3285118075537237,0.3327433394534191,0.3315292755496318,0.3299176100023382,0.3299356600825015,0.3296636615811373,0.3289426789426789,0.3280009806625601,0.3256646135820257,0.3262553331145389,0.3272867156778936,0.3278913994820041,0.329203572896812,0.3298723303648829,0.3309875331509595,0.3305553079597112,0.3319854524572905,0.3330220977279801,0.3350899560844312,0.3384370215292316,0.3425524475524475,0.3468679780817598,0.3496484463597187,0.3508476360956091,0.3517073475248143,0.3533092115181667,0.35681143281366,0.3606691623771642,0.3628025860772816,0.3641357661369433,0.3682097939523682,0.3663952627683197,0.0,2.096371192325962,57.307348226285306,174.26206245194112,267.45518559097275,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95688,44230,417.9938968313686,6455,66.06889056098989,5082,52.47261934620851,2075,21.24613326644929,77.3960056150407,79.78116942683359,63.35197710932333,65.11364016226051,77.13566992205561,79.52311645015524,63.25442020400521,65.01978634078026,0.2603356929850946,258.0529766783428,0.0975569053181217,93.853821480252,149.66974,104.91987478175108,156414.3257252738,109647.8918795994,338.76857,217.55554533198816,353433.2309171474,226757.9689532524,352.99103,170.59869748207646,365059.91346877353,175300.5724612796,2915.47088,1342.3856820658143,3012778.697433325,1368805.369603101,1221.18809,542.2143938247035,1260641.0835214446,551070.7129678777,2041.57396,861.5744952144285,2092871.6244461169,866088.8194257555,0.38166,100000,0,680317,7109.7420784215365,0,0.0,0,0.0,28710,299.38968313686144,0,0.0,32346,334.2007357244377,1674455,0,59935,0,0,6044,0,0,72,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.06455,0.1691295917832626,0.3214562354763749,0.02075,0.3391510131637332,0.6608489868362668,24.510612411924875,4.409507137870879,0.3152302243211334,0.2304210940574577,0.2237308146399055,0.2306178669815033,11.302211399833483,5.846542809242149,22.17037536438976,12461.61474883849,57.55040740159714,13.938757622821896,18.083139889531168,12.549982123195074,12.97852776604898,0.5615899252262888,0.7967549103330487,0.6985018726591761,0.5892700087950747,0.1126279863481228,0.7193500738552437,0.9316037735849056,0.8415841584158416,0.753731343283582,0.1434108527131783,0.5042918454935622,0.7202141900937081,0.6502504173622704,0.5385500575373993,0.1039387308533916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0045020380848086,0.006932461785185,0.0094894589789179,0.0117592008626126,0.0140716002117867,0.0161913598499138,0.0184483761957753,0.0205176961295467,0.0228459129153104,0.0248310932037441,0.0270236970717483,0.0290130821128846,0.0311495673671199,0.0334513036928505,0.0354879725441144,0.0376013838966635,0.039538287470027,0.0413737155219037,0.0433898941048945,0.0578883596557198,0.0719585578985924,0.0857343640196767,0.0987067605929975,0.1115046486623237,0.1268031642624476,0.1391302502731892,0.1511257784638313,0.1619340640557229,0.1729966857228663,0.1864289945608271,0.1998766727609074,0.2111927482990239,0.2215699778091146,0.2304131249931274,0.241591940662017,0.2514889915010372,0.2608251129137361,0.2693174993484345,0.2771920596441476,0.2844142645971914,0.2912594149588369,0.2976153900692458,0.3036124676817006,0.3093169962392333,0.3151446565636686,0.3198202134964729,0.3236548223350254,0.3273577351277348,0.3316311085957962,0.3313952707692721,0.3308036449470275,0.3301455593840096,0.3292339670029879,0.3282377037015049,0.3260906155800039,0.3243884687193443,0.3251812485647738,0.3262090510251114,0.326376997716895,0.3264740577077911,0.3274355484545436,0.329676300336447,0.3302742075601987,0.3312934965202784,0.3317293937108227,0.3327372335291947,0.3368854520306802,0.3409609377741902,0.343756215936667,0.3462084115143471,0.3474810948982852,0.3521607278241092,0.3555792845702082,0.3525125390366234,0.3532654284002396,0.3570222563315426,0.3555691554467564,0.3627260083449235,0.3638132295719844,0.0,2.539337502956341,59.175876866774125,188.65877093173944,280.74298669561006,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95825,44116,417.08322462822855,6270,64.15862248891207,4902,50.59222541090529,1994,20.38090268719019,77.38566316619061,79.70606292595939,63.36611244363343,65.08400540335295,77.14171173774875,79.46548441352994,63.274948374817335,64.99689844163935,0.2439514284418606,240.57851242945105,0.0911640688160915,87.10696171360155,153.06038,107.20766891834782,159728.83902948085,111878.39723864304,339.4929,218.4637306560197,353736.5927471954,227435.39450622743,352.08302,170.5090287805652,364454.42212366295,175560.2134214726,2832.6368,1305.4062550131398,2923846.8875554395,1330172.1896844676,1174.62472,525.225895493331,1211896.1753195932,534203.6895312606,1965.6713,826.1533052572221,2010817.0936603183,828083.2008944785,0.37965,100000,0,695729,7260.40177406731,0,0.0,0,0.0,28875,300.7357161492304,0,0.0,32224,333.28463344638664,1658682,0,59522,0,0,6061,0,0,69,0.72006261414036,0,0.0,1,0.0104356900600052,0,0.0,0.0627,0.1651521137890162,0.3180223285486443,0.01994,0.3339917945600972,0.6660082054399028,24.557873501196383,4.485870575170296,0.3082415340677275,0.2407180742554059,0.2139942880456956,0.2370461036311709,11.19395189327983,5.583288227371275,21.246996304632336,12372.27443210779,55.798813335449175,14.155991093930774,17.18734245940395,11.693602539644614,12.761877242469817,0.5616075071399429,0.8135593220338984,0.6902713434811383,0.5824594852240229,0.1196213425129087,0.7249814677538917,0.9324009324009324,0.8604651162790697,0.7509293680297398,0.1628787878787878,0.4995778215592457,0.7456724367509987,0.6316725978647687,0.5243589743589744,0.1069042316258351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168201108038,0.0042780531816753,0.0062721377028549,0.0083108121837725,0.0108527604865942,0.0133591283983301,0.0154420083784362,0.0175221961424635,0.0200623435024784,0.0221248899895618,0.0240010658030928,0.0260907943220191,0.0284175582482862,0.0304892484739935,0.0326885002474839,0.0348197039653765,0.0369393139841688,0.0387441826718767,0.0405586418150667,0.0426010135170289,0.0577773605374056,0.0722984768814225,0.0855702411772721,0.0981665353296559,0.1103339302644053,0.1253538383539651,0.1374842407483923,0.1496125761295877,0.1613298916289786,0.1716112586753491,0.1850971620299175,0.1970230508328112,0.2090059381004592,0.220093656875266,0.2296066866563423,0.2398133507303426,0.2493983957219251,0.2579811731931433,0.2664846369980966,0.2746272752218055,0.2819236189728069,0.2883621041819858,0.2952476533443532,0.3009742394357779,0.3067026856775975,0.3127280321364077,0.3182311617982856,0.3226788432267884,0.3267686029392773,0.3316440033172299,0.3308905592383923,0.330598389269124,0.329792622189707,0.3285388325679461,0.3280806760630319,0.3265709211170994,0.3243838307039219,0.324148469463203,0.3249666130192103,0.32492350636105,0.3260331508287707,0.3283655939516288,0.3288997390352723,0.3286859298174715,0.3296666102555424,0.3307623694842331,0.3320828202411294,0.3352385764360375,0.3387034092916446,0.3396166134185303,0.3423435784851811,0.3434574468085106,0.3473080317740512,0.3485931558935361,0.3507180650037793,0.3516221374045801,0.3499384993849938,0.3489551633191317,0.3458356315499172,0.3451428571428571,0.0,2.1459112628457606,59.34204322448147,181.78144616458476,266.53186226020813,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95773,44187,417.6960103578253,6365,65.26891712695645,4986,51.5489751808965,1944,19.995196976183266,77.37657405990127,79.72073075946506,63.3458979718325,65.07889826393965,77.14133285433833,79.48451215207334,63.26021117987148,64.99438393314345,0.2352412055629429,236.21860739172007,0.0856867919610238,84.51433079619619,151.28036,105.92410132737612,157957.21132260657,110599.12640031756,334.97655,215.17380962076675,349255.3955707767,224165.08788569516,353.65133,170.95914002519865,365335.8879851315,175481.9372203085,2842.74064,1298.6710994498037,2942012.7593371826,1329794.7641295593,1206.63386,530.3025555401604,1248177.8998256293,541996.2991032555,1908.42252,783.7274396949246,1965316.7594207136,796513.6559680125,0.38131,100000,0,687638,7179.873241936663,0,0.0,0,0.0,28453,296.544955258789,0,0.0,32430,334.6976705334489,1666891,0,59832,0,0,6027,0,0,74,0.7726603531266641,0,0.0,0,0.0,0,0.0,0.06365,0.1669245495790826,0.3054202670856245,0.01944,0.3307922272047832,0.6692077727952167,24.72573834170736,4.410070779516027,0.3219013237063778,0.2352587244283995,0.2186121139189731,0.2242278379462495,11.575709167769352,6.027664960045818,20.424116343114694,12485.939867168883,56.3857656594412,14.052219500084313,18.17291050240741,12.078774859436828,12.081860797512633,0.5637785800240674,0.7817561807331628,0.7090342679127726,0.5834862385321101,0.1073345259391771,0.7626990144048522,0.925925925925926,0.8906976744186047,0.7983193277310925,0.1506849315068493,0.4922279792746113,0.6977058029689609,0.6425531914893617,0.5234741784037559,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.004521079787935,0.0067371496986545,0.0091836320045511,0.0115633390285574,0.013777863769208,0.015825269447645,0.0181320700780005,0.020159682679234,0.022202659405677,0.0243319974991544,0.0264730034900431,0.0286824574389341,0.0309059638932657,0.0328577471036695,0.0349357616099391,0.0369239052776541,0.0389311314197985,0.0408025365143718,0.0429254272235933,0.0576086162452123,0.0720380633692356,0.0853764635590821,0.0982514396200243,0.1107750671795142,0.1266422161859364,0.1391135657723172,0.150723990084368,0.1625431131138613,0.1731336242481424,0.1865974607755511,0.199513171417753,0.2114794752985707,0.2216168909309703,0.2313179011326487,0.2418244883032835,0.2523137036003349,0.2615999099909991,0.2700908812417033,0.2776219533137185,0.2844487619840636,0.2913452097068312,0.2977267085150902,0.303386928777521,0.3094110503946569,0.3139991868816912,0.3185652690120602,0.323209998856838,0.3286744931733554,0.3336189057742748,0.3332750997809522,0.3336309564691823,0.3331270917118992,0.3325973388749386,0.3321074796844415,0.3311110431511667,0.3290698961281245,0.3292199278924942,0.3302551847742596,0.3307196065153081,0.3312608850353002,0.3311029527869888,0.3312127236580517,0.3317140565112755,0.3326616288832913,0.3318763659069622,0.3318553888130968,0.3354216263626112,0.3383440204632257,0.3416967724006511,0.345889005426604,0.3477197831402147,0.3524115350711497,0.3537337291619091,0.3575854299662035,0.358922638822971,0.3598223855458582,0.3573876234630115,0.3635368190528333,0.3688212927756654,0.0,1.960869404647534,58.14018100009824,186.6425109139428,274.3227997883624,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95747,43988,415.6683760326694,6360,65.01509185666391,4975,51.33320104024147,1986,20.41839431000449,77.3313489084019,79.69750183552785,63.31030609897547,65.06308030555658,77.07845923357755,79.44350543791568,63.21782080336962,64.97235607790351,0.2528896748243596,253.99639761216972,0.0924852956058472,90.72422765306952,150.51344,105.4748014723838,157198.88873802836,110159.69240218891,335.87854,215.5052689381997,350160.8823252948,224443.6254996077,353.74411,171.50243129838043,364820.8403396451,175755.4690533975,2843.7832,1307.8066676760998,2937674.87231976,1333612.6543131997,1178.96983,525.7135644742626,1215763.4808401307,533573.6431771822,1943.20822,812.2045087651722,1999691.039928144,823622.3899202648,0.3791,100000,0,684152,7145.404033546743,0,0.0,0,0.0,28624,298.2965523723981,0,0.0,32441,334.1932384304469,1665525,0,59818,0,0,5982,0,0,48,0.5013211902200592,0,0.0,0,0.0,0,0.0,0.0636,0.1677657610129253,0.3122641509433962,0.01986,0.3402788187678009,0.659721181232199,24.82219674793891,4.364417285747239,0.3155778894472362,0.2347738693467336,0.2241206030150754,0.2255276381909547,11.377894098643262,5.961123243454162,21.28163790688902,12369.179368647749,56.49432643085787,13.85580142320458,17.846322609334734,12.492643863630244,12.29955853468832,0.5537688442211055,0.7731164383561644,0.6961783439490445,0.5730941704035875,0.106951871657754,0.7317806160781367,0.9242424242424242,0.8714285714285714,0.7418181818181818,0.1583333333333333,0.4887486278814489,0.6955958549222798,0.6321739130434783,0.5178571428571429,0.0929705215419501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022999219850251,0.0045732480201182,0.006688657701091,0.0088295061979272,0.0110175181590673,0.0134533714902587,0.0157538925880229,0.0179503149984173,0.0199347441418036,0.0221439252719339,0.0242143912044634,0.0261879077413057,0.0284035360344135,0.0303105257191149,0.0324934713720956,0.034630020267196,0.0366661834448195,0.038839887931929,0.0409862478301092,0.0428691947965379,0.0574425887265135,0.0714681846243996,0.0846122376191924,0.0971765077028234,0.1096033402922755,0.1245504928713457,0.13731960950764,0.1496431994887634,0.1607394742466339,0.1714895762920998,0.1848854501174594,0.1978820395655799,0.2100427792351987,0.220616886670607,0.2303847635823196,0.2402952978473407,0.2493942405395446,0.2583070688878883,0.2672726860048118,0.2754337313501249,0.2819073197272611,0.2882856507126043,0.294410526939719,0.3003819636293752,0.3059483534938058,0.3109792211638122,0.3162832057913655,0.3213012023639698,0.3253460645295209,0.3301627562883111,0.3298187897745658,0.3295345060148099,0.3286092640595063,0.3277224718614093,0.3269815828918273,0.3257543301303629,0.3234796629728576,0.3247941745662085,0.3254152710369813,0.3266314625182859,0.3270956261122038,0.3276935544442907,0.3284804558213582,0.3300747170148986,0.3310389641645207,0.3333159377935497,0.3350138141217351,0.3377531416333343,0.3418721992872517,0.3451323894088473,0.3481088011722685,0.3492756710694503,0.3532567533451148,0.3534206917568185,0.356822429906542,0.3578185215461871,0.3531264057579847,0.3523285517783454,0.3523553162853297,0.348575712143928,0.0,2.3476971060979985,58.35291618271391,187.40151200807964,272.00392704053047,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95496,43920,416.1430845271007,6289,64.72522409315573,4965,51.47859596213454,1952,20.11602580212784,77.22623088476638,79.71377828400284,63.24095407219974,65.07635300273245,76.97741013358434,79.46289032524291,63.14968348941779,64.98601635305117,0.2488207511820377,250.8879587599324,0.0912705827819522,90.33664968127653,148.61242,104.14609316700708,155621.61765937842,109058.06857565456,332.72225,213.78827355208537,347873.1255759404,223337.194522696,345.48514,166.49933058535595,358613.009969004,171852.87696012095,2840.52852,1298.14226947893,2947036.734522912,1332440.7489567408,1159.4756,507.849699226061,1202229.9153891264,520880.7187913658,1916.43026,806.0377486140337,1977211.2968082435,820489.6908318726,0.38124,100000,0,675511,7073.709893608109,0,0.0,0,0.0,28238,295.132780430594,0,0.0,31771,329.5007120717098,1673839,0,60041,0,0,5974,0,0,55,0.5759403535226607,0,0.0,0,0.0,0,0.0,0.06289,0.1649617039135452,0.3103832087772301,0.01952,0.3289533303126415,0.6710466696873584,24.575471333921985,4.337310195796372,0.3341389728096677,0.2253776435045317,0.2201409869083585,0.2203423967774421,10.59955744668361,5.285842126900988,21.039771348301457,12492.57126592025,56.222071474331365,13.335822833771305,18.664424803981664,12.15102445974086,12.070799376837536,0.5568982880161127,0.7917783735478106,0.7010247136829415,0.5535224153705398,0.1014625228519195,0.7137345679012346,0.9177377892030848,0.8457943925233645,0.703125,0.116591928251121,0.5014990460615971,0.7246575342465753,0.6506904955320877,0.5077658303464755,0.0975889781859931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022495820033439,0.0043311998539361,0.006771986110829,0.0091306558210472,0.0113516044958462,0.0135147530958569,0.0158062837375891,0.0177385404532728,0.0199392308715357,0.0219872543595418,0.0237826408277221,0.0259821713157651,0.0280801112083612,0.0300548702504228,0.032360386423516,0.0344456293289987,0.036347416574173,0.0383975718265352,0.0405254768775588,0.0428722082424065,0.0572517086547418,0.0713498882699147,0.084900105152471,0.0980524407722789,0.1101659093310789,0.125613440033918,0.1381609024315043,0.1500858822399795,0.1619152673063742,0.1726691385888548,0.185359113039911,0.1974079496773494,0.2092295616339791,0.2209799408089444,0.2309949584652553,0.2419589587476529,0.2522147651006711,0.2621742267111552,0.2714545661321506,0.2794225649499678,0.2867166117734379,0.2940838463793609,0.3007392991491533,0.3056764359387396,0.311305111197815,0.31653118542989,0.3216211799313613,0.3263320719983636,0.3304726610753527,0.3347417778189862,0.334131169709263,0.3332275249109829,0.3330885260719733,0.3326049204052098,0.3320222877745001,0.3304548248309772,0.329306672600693,0.3297821462143576,0.329944705841948,0.3308209959623149,0.3306002707988566,0.3314023845894419,0.330712964519926,0.3313073317334649,0.3318167593461881,0.3321925860132187,0.3335142081964872,0.336917110697733,0.3392605633802817,0.3409018483110261,0.3441273326015368,0.3442588060019155,0.3459411912540839,0.3510324483775811,0.3532195212469846,0.3573513955389466,0.3572081682413898,0.3589953032468858,0.3589320121112028,0.354174609226077,0.0,1.8971683718887609,57.36252025309369,183.6586648971449,279.96418434889205,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95716,44030,416.294036524719,6357,65.40181369885913,4955,51.26624597768399,1987,20.456350035521755,77.36399481233721,79.74754023490684,63.33329461681414,65.09665638599743,77.12087145749565,79.5050180549674,63.24348049263376,65.00981251617182,0.2431233548415576,242.5221799394421,0.0898141241803855,86.8438698256142,152.05872,106.4676244866809,158864.47406912115,111232.83932329068,335.28975,215.2317694770586,349749.2373270927,224317.77286666652,350.40647,169.04694484977094,362968.500564169,174268.48430901658,2828.2822,1294.3796055540154,2926608.257762548,1324052.1600923724,1153.53756,511.57571506498766,1189382.8095616198,518688.4168425204,1941.0496,805.0516285414473,1998518.9310042209,813881.0261743077,0.38031,100000,0,691176,7221.112457687325,0,0.0,0,0.0,28572,297.95436499644785,0,0.0,32176,333.0895566049564,1663326,0,59754,0,0,6104,0,0,53,0.5432738518116094,0,0.0,0,0.0,0,0.0,0.06357,0.1671531119350004,0.3125688217712757,0.01987,0.3403392883951359,0.6596607116048642,24.75220343015413,4.336919675569285,0.3097880928355196,0.2417759838546922,0.227648839556004,0.220787083753784,11.333886012307223,6.01686953279996,21.1228945082726,12440.148793200598,56.252884593628266,14.4209814882541,17.425095032781854,12.496441301049437,11.910366771542876,0.5588294651866801,0.7821368948247078,0.6872964169381107,0.5797872340425532,0.1124314442413162,0.7397769516728625,0.9390519187358916,0.8591885441527446,0.7018867924528301,0.1513761467889908,0.4914127423822714,0.6900662251655629,0.6227598566308243,0.5422943221320974,0.1027397260273972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025430340118134,0.0047562546269534,0.0073194997157475,0.0097262028172449,0.0120067563442479,0.013896529942743,0.0161675302949936,0.0181073573266881,0.020138484039561,0.0224659273594855,0.0246941433449899,0.0268055213211732,0.0288523848218969,0.0312310022565455,0.0330557189593073,0.0349986558861845,0.0368459761542206,0.0388722280448701,0.0407692307692307,0.0427380704313398,0.0576175954549252,0.0714674481892401,0.0847041544271926,0.0973603954148701,0.1094795872115698,0.124842717420037,0.1374245750220044,0.1494085358069869,0.1611367324280468,0.1714647060084456,0.185012213625456,0.1972915675161164,0.2096839083584329,0.2211214626252023,0.2317515839493136,0.2423085013340418,0.2525763997323221,0.2614371001652744,0.2699428260277702,0.2781809440959663,0.2850882264517472,0.2916126015547373,0.2976638500319534,0.3035089401275107,0.3083678501585142,0.3133297209428339,0.3181255393389112,0.3226560613953724,0.3269984098049102,0.3317218394741348,0.3320788699076625,0.3307972258463229,0.3301652021089631,0.3293323330832708,0.3279517286366601,0.3265097392684863,0.3252594064402182,0.3260422111866178,0.3264969474346547,0.3269220494737404,0.3278697726634858,0.3289722945773147,0.3307738979433856,0.3300284237147781,0.330506642323492,0.3334900854298926,0.3351145910727553,0.3386742067232171,0.3404046080359652,0.3433125817835759,0.3470537458543455,0.3475222363405337,0.3522734439049,0.3539755351681957,0.3550587343690792,0.3553748654788951,0.3546484556883439,0.3531224322103533,0.3592747559274756,0.3573655494933749,0.0,1.9467668036707069,59.5069574030175,183.76448524121105,270.4468893329759,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95673,44207,417.798124862814,6324,64.93995171051394,4879,50.45310589194443,2006,20.61187586884492,77.31725194233033,79.72429923374891,63.30264576078415,65.08436823696863,77.07788661412621,79.48555498066261,63.214517802611255,64.99862430474327,0.2393653282041157,238.74425308629557,0.0881279581728975,85.74393222535548,151.05596,105.77831864621189,157887.76352785007,110562.35159994136,335.52902,215.87253607026727,350163.4316891913,225095.247426408,349.0064,168.58181462032326,361159.0730927221,173383.111292323,2797.122,1280.2745151310985,2895261.2335768715,1309811.3314426206,1159.57317,514.7888465318839,1199503.0154798117,525557.050089245,1953.71458,804.5426764619234,2010156.2405276303,815275.9917898759,0.38132,100000,0,686618,7176.716523993185,0,0.0,0,0.0,28542,297.753807239242,0,0.0,32080,331.6505179099641,1665122,0,59781,0,0,5926,0,0,56,0.5853271037805859,0,0.0,1,0.0104522697103676,0,0.0,0.06324,0.1658449596139725,0.3172043010752688,0.02006,0.3395052359993929,0.660494764000607,24.43855270739405,4.423547449907082,0.3252715720434515,0.2295552367288378,0.2258659561385529,0.2193072350891576,11.347391007866657,5.952405637158196,21.182039618235493,12453.357258717466,55.46073749978832,13.386751768078268,18.011701893537044,12.439832560066346,11.622451278106654,0.5579012092641935,0.76875,0.6887208569628229,0.5771324863883848,0.1233644859813084,0.7314460596786534,0.8997613365155132,0.8664987405541562,0.7116788321167883,0.184331797235023,0.4944008958566629,0.6904422253922967,0.6294117647058823,0.532608695652174,0.107854630715123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021275086873271,0.0044516554276732,0.0065762099515917,0.008739038096109,0.0109884519509589,0.0134155037180401,0.0155877012221247,0.0178367113435763,0.0203085674530907,0.0224778960525372,0.0244485482712629,0.0264801989354487,0.028554958516048,0.0304554920922943,0.0327084947069455,0.0348156271986094,0.0369652427204594,0.0393162748193071,0.0414282444495307,0.0434161697869324,0.0590281768128963,0.073605177180196,0.0869610858588509,0.099507617203939,0.1108977942805303,0.1265092752304257,0.1391851592431044,0.1513412205692866,0.1623083088431739,0.1724396863367696,0.1850112555604622,0.1975840495313142,0.2095240168019674,0.220559745192255,0.2309649422312293,0.241468739955889,0.2515817311447604,0.2606935180915318,0.2684921562177429,0.2768269087661854,0.2835757007832112,0.2902995720399429,0.2970173985086992,0.3032899862168154,0.3087055849900355,0.3137632101414425,0.3190581107133021,0.3234665581194189,0.3269688810645679,0.3316323839662447,0.3312302414744064,0.3310700295512336,0.3301735534865405,0.3296330513612611,0.3293083706336342,0.3275372985571246,0.3249406175771971,0.3249975370266986,0.3264842910046589,0.3270766488413547,0.3277782979121805,0.3292446867346132,0.3315921963499056,0.3332214389616202,0.334732677089365,0.3372168961103419,0.3386057911536708,0.3421928997800816,0.3447900193287647,0.3479729729729729,0.3499063199744093,0.350627926777352,0.353453718903902,0.354819001069192,0.3578362077089812,0.3546174766465649,0.3576911268038071,0.3552764836945513,0.3603020496224379,0.3740112994350282,0.0,2.1569672763579,57.472779278105634,184.8479293617675,265.6647621895696,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95851,44132,417.3561047876392,6240,63.74477052925896,4900,50.48460631605304,1863,19.02953542477387,77.4717338221379,79.75761798418881,63.40399372213196,65.09028331134249,77.2372224240518,79.52647894978418,63.31584084656363,65.00651237731392,0.2345113980861128,231.1390344046345,0.0881528755683263,83.77093402856417,152.52886,106.82093670339331,159131.2140718407,111444.78065267272,335.48539,215.9556534540781,349377.5025821327,224673.80982366187,354.75469,172.00265589662445,366104.7980720076,176418.8620830152,2799.1678,1294.6995994852448,2885152.2467162577,1315561.7359080715,1140.49414,512.6408956563528,1168276.481205204,513246.0231571434,1821.8902,772.1431092484582,1861833.2411764087,770614.9416872392,0.38109,100000,0,693313,7233.237003265485,0,0.0,0,0.0,28608,297.795536822777,0,0.0,32498,335.113874659628,1661710,0,59554,0,0,6176,0,0,60,0.6155387006916986,0,0.0,0,0.0,0,0.0,0.0624,0.1637408486184366,0.2985576923076923,0.01863,0.3252256386721738,0.6747743613278262,24.71054481962153,4.296411505114984,0.3257142857142857,0.2371428571428571,0.2279591836734694,0.2091836734693877,11.27147315671956,5.966073379957162,19.788404529945712,12385.740778976631,55.29718807063376,13.696830502450624,18.03891868034433,12.358661700764433,11.202777187074371,0.5714285714285714,0.7788296041308089,0.7017543859649122,0.5863921217547001,0.1170731707317073,0.750375939849624,0.9304556354916068,0.8932714617169374,0.708171206225681,0.1911111111111111,0.5047619047619047,0.6939597315436241,0.630901287553648,0.55,0.09625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022674359753011,0.0047208517794369,0.0068547324017927,0.0088002436053593,0.0108934232989187,0.0131044797379104,0.0151780620976285,0.0173298381256438,0.0194228294834875,0.021475906078704,0.0236688208605168,0.0258035402949562,0.0279213108017874,0.0299616219608811,0.0322846658145384,0.0341797379209219,0.0359968968192397,0.038211609613531,0.0403185612825518,0.0421991424884485,0.0569024306315888,0.0711903741414817,0.0842686620345626,0.0972870171899298,0.1092407745090805,0.1247607870502532,0.1382850113470063,0.1506543249281838,0.1621575452157758,0.1727475401401959,0.1852804442339976,0.1972459710978285,0.2089699733941467,0.2195641255213679,0.2289762741652021,0.2404342586757763,0.2502534508305388,0.2594946659180235,0.2673160786090502,0.2749531128493664,0.2818386556562915,0.2888515484608742,0.2955557392731868,0.3003169666885952,0.3065678377329192,0.3121246431032785,0.316880910442354,0.3213768759998984,0.3263555073137954,0.3308672529092728,0.3299780946365456,0.3296178998889483,0.3294870715067801,0.3287805299290453,0.3279746573111881,0.3265517767271618,0.3252702574931451,0.3259917652441016,0.3273787265866675,0.328630248819792,0.3291514428454254,0.331374552887072,0.3329861038771641,0.3335185473295846,0.3343361268295012,0.3344636570718575,0.3346984889139952,0.3369362073261899,0.3415418669802511,0.3459988260614361,0.351129639591178,0.3522177843178474,0.3550244024527593,0.3593761886648915,0.3626394403478918,0.3669648181276088,0.364190012180268,0.3627254509018036,0.3690766314649336,0.3717514124293785,0.0,2.47361088386883,57.865834931758044,181.6400628072693,264.5779431517241,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95737,44336,419.973468982734,6277,64.30115838181686,4910,50.67006486520364,1954,20.00271577342093,77.34438518034166,79.69799263092412,63.33412346583962,65.07269924104912,77.09451983064484,79.44969929497333,63.24060121356254,64.98229740737571,0.2498653496968188,248.29333595079103,0.0935222522770757,90.40183367341116,151.3358,106.01213090167136,158074.0570521324,110732.25121864388,336.19316,215.763487686602,350547.5312575076,224756.4304460916,345.60249,167.06039714674355,357052.01750629325,171427.08416192455,2833.26632,1304.7100879504685,2925829.4285386004,1329253.8506796202,1174.07331,522.67957765974,1208411.2934393182,528040.7222045956,1917.5981,815.3674385095183,1965274.3453419264,819629.286615994,0.38395,100000,0,687890,7185.184411460565,0,0.0,0,0.0,28558,297.63832165202587,0,0.0,31703,327.177580245882,1664979,0,59792,0,0,6087,0,0,80,0.8356225910567493,0,0.0,0,0.0,0,0.0,0.06277,0.1634848287537439,0.3112952047156285,0.01954,0.3159902349710101,0.6840097650289899,24.64884368771936,4.4649973813354045,0.3199592668024439,0.2189409368635438,0.2299389002036659,0.2311608961303462,11.180989811911893,5.857026577890149,20.96107114779027,12499.35489977176,55.83084853364139,12.824673293622736,17.90706969535653,12.626726332709415,12.472379211952717,0.5553971486761711,0.7590697674418605,0.7167409293443666,0.5987599645704162,0.0960352422907489,0.7224770642201835,0.8871391076115486,0.8676122931442081,0.774074074074074,0.1324786324786324,0.4947251526929483,0.6887608069164265,0.6611498257839721,0.5436554132712457,0.0865704772475027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00213727158543,0.0044407044295519,0.0068689820310676,0.008998303931426,0.011173922768774,0.0131727627172131,0.0153890055237357,0.0177151895504872,0.0198424456682776,0.0219175278829428,0.0239466349700795,0.026326323244142,0.0282544546006025,0.0305349014438425,0.0326297763472806,0.0345782609594279,0.0364044757734786,0.0384539599904591,0.0404281854084389,0.0423827677436826,0.0574608245377765,0.0718000774406898,0.0853061181678012,0.0984256522973697,0.1104619894757932,0.1258631811596501,0.138828196262277,0.1508448246510044,0.1623515337947534,0.1722418784174975,0.1858407079646017,0.1978254989992968,0.2104936929099608,0.2210390519088643,0.230323297435841,0.240803897685749,0.2508203674353193,0.2602245118329884,0.2691766521423384,0.2777268770901095,0.2847820049986115,0.2917256631990357,0.2989881058050772,0.3053012944323812,0.3105602138777494,0.316204411982431,0.3212459262973176,0.3268664516704694,0.3322789322893034,0.336904824816361,0.3355786070321972,0.33486099642169,0.3346864560869381,0.3335598513656145,0.3321633078009965,0.3309351414370743,0.32869929537231,0.3284394318032355,0.3301736675506886,0.3297647983986274,0.3305261183531839,0.3306633440132906,0.3322289788215559,0.3319739171353665,0.3337030963634609,0.3358910115878484,0.3382076278433384,0.3416561712846347,0.3458282100825575,0.3489566741000318,0.3513969281254273,0.3534230544177882,0.3536569987389659,0.3578023308612078,0.3603569751056834,0.361038961038961,0.3627149877149877,0.3671617161716171,0.3659822419533851,0.3680933852140078,0.0,2.409428150776047,57.20197216143689,187.2959579036856,267.506494929688,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95664,43921,414.9000669008195,6240,63.89028265596254,4812,49.63204549255728,1892,19.3803311590567,77.28108161739658,79.66989060943521,63.29287913429015,65.05645468555217,77.04741944397416,79.43890246329448,63.20596587194074,64.97352996524023,0.2336621734224166,230.9881461407315,0.0869132623494124,82.92472031193654,150.9321,105.76704404715652,157773.1435022579,110560.96760239644,335.1276,215.39711584590933,349666.52032112394,224509.21542681605,344.54793,166.20684871519427,356068.74059207225,170528.56306884543,2755.61744,1256.953410821042,2844001.7143335007,1277410.2805873072,1158.57379,507.2293678692674,1192257.3172771367,511392.1553001805,1857.25324,773.8957401226774,1904138.3174443888,775966.3664870048,0.3801,100000,0,686055,7171.5065228299045,0,0.0,0,0.0,28429,296.49606957685234,0,0.0,31634,326.6641578859341,1663577,0,59721,0,0,5816,0,0,66,0.6794614484027429,0,0.0,0,0.0,0,0.0,0.0624,0.1641673243883188,0.3032051282051282,0.01892,0.3323641928079571,0.6676358071920429,24.750052487394655,4.39793327646604,0.3258520365752286,0.226101413133832,0.2298420615128844,0.2182044887780548,11.262997946016258,5.792172979084469,20.08402943913934,12412.784611574229,54.47677036919585,12.910892343331442,17.67982145556443,12.323985148462224,11.562071421837754,0.5685785536159601,0.7628676470588235,0.7072704081632653,0.6121157323688969,0.1142857142857142,0.7342487883683361,0.9464788732394366,0.8461538461538461,0.7411764705882353,0.1509433962264151,0.5111919418019026,0.6739427012278308,0.6571180555555556,0.5734430082256169,0.1050119331742243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021526617028,0.0048560914040085,0.0069009610603123,0.0093568083225813,0.0114008502328987,0.0135941509510814,0.0158451781307991,0.0178564136072201,0.0202708918987988,0.0224772003807613,0.0244845228696517,0.0268494275886852,0.0289904256522588,0.0311057533794922,0.0329745182830545,0.0349886783088805,0.0368981519847518,0.0391812926193861,0.0410572742213993,0.0432149595055191,0.0580891187379198,0.0718743455497382,0.0855307356399059,0.0984384536060778,0.110590569043926,0.12666504438355,0.1395084664791124,0.1519731586515418,0.1633645899045195,0.1732865165523091,0.1860823797146154,0.1974706589941155,0.2096465053470694,0.2205882352941176,0.2305344688915086,0.2402155951601992,0.2499664699570815,0.2592083624321341,0.2675635446374803,0.2756647670592012,0.2821261411557533,0.2885931202549442,0.2950837167386045,0.3016019790565856,0.3066085940921699,0.3118761182059349,0.3178087684346377,0.3224605814946528,0.3277074360437964,0.3320634416709658,0.3312771643765353,0.3305012275523434,0.3289497871859048,0.3275577079225147,0.3268866588133546,0.3251351019405551,0.3238773309653685,0.3244746499037338,0.3247097900900592,0.3251215675057208,0.3255765907895725,0.3269933290978399,0.3292138616362794,0.3301513858317236,0.3314825097168239,0.3334725194425596,0.3344670877754594,0.3403617310059657,0.3424936744447568,0.3455932001429876,0.3476281525994719,0.3483682674449456,0.3514211886304909,0.351633393829401,0.3527653213751868,0.3537977632805219,0.3589003645200486,0.3581162324649298,0.3597083445854712,0.3588663347376484,0.0,2.6125640789621576,53.970930318505616,179.30614089941088,272.85508582304857,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95738,43952,413.9839979945267,6402,65.70013996532202,4994,51.69316258956736,1990,20.43075894629092,77.3612597271838,79.72585210780065,63.34108899169471,65.08866470763257,77.10909054898036,79.47488857388262,63.24707908885491,64.99777367987,0.2521691782034452,250.96353391802492,0.0940099028398009,90.89102776258072,151.55272,106.21661617288572,158299.44222774656,110945.0961717246,337.37892,216.58356052974744,351934.8325638723,225761.98638967535,353.85443,170.7766739520032,367059.4121456475,176345.35936595718,2871.768,1319.4298149154715,2973921.828323132,1352477.6942441575,1205.06356,531.3517357507588,1246005.9537487729,542304.1962622425,1952.49582,822.3262400967651,2006510.1213729132,829879.8307948542,0.37893,100000,0,688876,7195.429192170298,0,0.0,0,0.0,28587,298.10524556602394,0,0.0,32437,336.30324427082246,1664422,0,59694,0,0,6038,0,0,77,0.7938331696922852,0,0.0,0,0.0,0,0.0,0.06402,0.1689494101812999,0.3108403623867541,0.0199,0.327226690497468,0.672773309502532,24.69530449659192,4.361812735312609,0.3303964757709251,0.2296756107328794,0.2146575891069283,0.2252703243892671,11.41598892229564,5.905654737165733,21.21338964077011,12465.12282336188,56.77187728125556,13.616403823694162,18.703160970658484,12.123547325859338,12.328765161043592,0.5654785742891469,0.7776809067131648,0.7054545454545454,0.6063432835820896,0.1048888888888888,0.7256235827664399,0.9144254278728606,0.8485576923076923,0.7464285714285714,0.110091743119266,0.5077635521656224,0.7018970189701897,0.6572123176661264,0.5568181818181818,0.103638368246968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323892586177,0.0049983778084191,0.0073978608106188,0.009651430951631,0.0118173497406691,0.0140526669517932,0.0161727815960679,0.0185020676979629,0.0208574028443771,0.0228091728091728,0.0249454030943373,0.027042571766035,0.0294250745654633,0.0317599307730344,0.0339610959186832,0.0359048052270283,0.0379544960284995,0.040005811479748,0.0419387712657543,0.0441582528419451,0.058618997400048,0.0728618231679872,0.0862267911465435,0.0991062039957939,0.1112504743033011,0.1268393234672304,0.1393516505657416,0.151242351689279,0.161768947284089,0.1728577707737004,0.1851796020329055,0.1979446127217654,0.2099380232684571,0.2202750568479972,0.2301796749576653,0.2412525874187799,0.250404273590061,0.2590415608352626,0.2677565272597413,0.2761797932857944,0.2835801912426145,0.2903885480572597,0.2970655375116799,0.3034337435946554,0.3090860580188221,0.3142136662771388,0.3192858392263675,0.3236770855842686,0.3277457769723642,0.3321105275659127,0.3319607605667918,0.3319819696011873,0.3307626271866248,0.329581575449344,0.3294196329048079,0.3278226362480273,0.3267851772117835,0.3272766069200972,0.3273413226808699,0.3274137068534267,0.329157367641267,0.3297910305721876,0.3301478618835587,0.3307125417198664,0.3321841851494696,0.3333682391748259,0.3347657928663515,0.3370345765714466,0.339806167400881,0.3425548902195608,0.346383755418663,0.3466023534400508,0.3477359794008666,0.3510039549741405,0.353106550463874,0.3525519848771266,0.3581452104942038,0.3642625607779579,0.373355723481668,0.3704,0.0,1.8317733093363748,58.514356598109416,190.2221824812688,273.7459001870963,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95651,43702,413.3464365244483,6109,62.58167713876489,4791,49.492425588859504,1938,19.85342547385809,77.2430810454354,79.64782331704002,63.27207635196621,65.0504228811306,76.99587503810073,79.40130789231928,63.18037788885233,64.96115073044966,0.2472060073346682,246.51542472074084,0.0916984631138859,89.27215068094085,151.41412,106.09658858401176,158298.0627489519,110920.12095859733,334.13217,215.1439342936156,348734.9008374194,224337.92917930943,341.7082,164.7474171393236,353532.8224482755,169402.8712130238,2751.06252,1262.1263878446175,2844824.7483037296,1288308.7480779684,1164.71546,509.3577014211164,1202848.5013225162,517693.3449949471,1907.4104,806.8272875604343,1956870.2261345931,813765.8565787079,0.37805,100000,0,688246,7195.366488588724,0,0.0,0,0.0,28476,297.10091896582367,0,0.0,31366,324.209888030444,1660933,0,59554,0,0,6078,0,0,58,0.6063710781905051,0,0.0,0,0.0,0,0.0,0.06109,0.1615923819600582,0.3172368636438042,0.01938,0.3281371784879189,0.6718628215120811,24.509955530267337,4.340917384503977,0.3185138801920267,0.2314756835733667,0.2160300563556668,0.2339803798789397,11.057482732012428,5.667654157166838,20.79977129603604,12352.153080839287,54.68624264120845,13.275868881412167,17.461791443965073,11.525951399125091,12.422630916706124,0.5612606971404717,0.8079350766456267,0.709043250327654,0.5652173913043478,0.1123996431757359,0.7098070739549839,0.9191374663072776,0.8737623762376238,0.7056277056277056,0.1092436974789916,0.509162672681139,0.7520325203252033,0.6497326203208557,0.5248756218905473,0.1132502831257078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024221663693854,0.0045746860609011,0.0067307594692547,0.0091852183013442,0.0114633873445017,0.0136972350934365,0.0156410910017843,0.017950498284594,0.0199300556282722,0.0222622729227681,0.0244382685030406,0.0263717304907729,0.0285585001902528,0.0307819099618831,0.0327711490029313,0.0348664074778724,0.036825258709096,0.0386619338232241,0.0404609847933265,0.0424933017795894,0.0571613685288523,0.0706534263507426,0.0836246810923178,0.0967212251986737,0.1094525262335578,0.1250277898347431,0.1379522807912125,0.1496636352975041,0.1609365135415663,0.1713549218624134,0.1848366802991227,0.1975477282336488,0.2085225973007418,0.2189717865591869,0.2280373007649743,0.239877947295423,0.2488398877346781,0.2581805065545499,0.267816340218491,0.2755544343279132,0.2828135322137617,0.2895923362493998,0.2969925257335086,0.3017527863424232,0.3063988221981578,0.3119135802469135,0.3162481036147297,0.3208683008953396,0.3251136216075834,0.3289315249751902,0.3282468496181764,0.3271822717124665,0.326399480314071,0.3254321273852127,0.3250037274489339,0.3246559773928001,0.3223920434685901,0.3225976594692599,0.3237073471696173,0.3258386674555789,0.3271966684881946,0.3286586700085536,0.3289277070398821,0.3294247141541433,0.330773874200169,0.3322223388620617,0.333659406738211,0.3384006334125099,0.3424497594112652,0.3441141020490156,0.3437802907915993,0.3449385762566386,0.3475028593213877,0.3494346588723944,0.3506778690089746,0.3522727272727273,0.3491493678788824,0.3509960977613473,0.3441396508728179,0.3480449090205187,0.0,2.308332584867604,54.47486053368088,186.4042055409586,265.0516529353947,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95836,44367,419.4665887557911,6324,65.04862473392045,4924,50.99336366292416,1976,20.35769439459076,77.44904619750217,79.77515639673369,63.38601454967061,65.10695796880917,77.20208150272221,79.52700926551566,63.29550887521971,65.01807217813793,0.2469646947799617,248.1471312180332,0.0905056744509025,88.8857906712417,151.03726,105.80070390003826,157599.25289035437,110397.24983050216,336.02273,215.9136041603435,350215.3992236738,224894.02172029475,347.62273,167.25540843488187,360760.24667139695,173024.86797855658,2818.14384,1284.1773405021383,2918606.577903919,1318374.113651628,1176.31383,510.7883721995273,1215610.1151967945,521471.1522780564,1937.60414,806.8812554866478,1996392.983847406,819575.4282987132,0.38211,100000,0,686533,7163.602404107016,0,0.0,0,0.0,28553,297.5186777411411,0,0.0,31816,330.05342460035894,1672271,0,59976,0,0,6129,0,0,71,0.7304144580324722,0,0.0,0,0.0,0,0.0,0.06324,0.1655020805527204,0.312460468058191,0.01976,0.3348429951690821,0.6651570048309179,24.807612333985865,4.36450904669436,0.3269699431356621,0.2341592201462226,0.2156783103168155,0.2231925264012997,11.044750751702413,5.664482304684021,20.852910958165143,12420.46188797398,55.5637681532403,13.846877122212256,18.09375903337861,11.698616451765703,11.92451554588373,0.5406173842404549,0.7684301821335646,0.6658385093167701,0.5499058380414312,0.1091901728844404,0.6987767584097859,0.8967136150234741,0.8422273781902552,0.6805555555555556,0.0936170212765957,0.4834070796460177,0.6932599724896836,0.6013570822731128,0.516548463356974,0.1134259259259259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025115704404362,0.0047337637983639,0.006838959747547,0.0088276226369094,0.011053825111606,0.0131652632543553,0.0152931700702466,0.0174629257289827,0.0199795605518651,0.0222958938310259,0.0244709740226469,0.026559934318555,0.0285361842105263,0.0306505914936114,0.0326320132013201,0.0346405768952621,0.0368557234527013,0.0389257569473247,0.0408415584415584,0.0426504268165729,0.0575183852292286,0.0716682871749835,0.0851202079272254,0.0976150451775583,0.1096909475991275,0.1258335535006605,0.1380114479542082,0.1501504694860642,0.1611031098309062,0.1716228516357016,0.184421337863848,0.1964374446388835,0.2078425412265369,0.2186153090730536,0.2296293043831436,0.2400574776168896,0.2504928110835162,0.259745215780908,0.2685328775341566,0.2772408435579317,0.2839647251656393,0.2902326341087803,0.296777467048981,0.3032284283374968,0.3086225281116712,0.3138428634642804,0.3192909358548938,0.3239990361323542,0.3286734048458093,0.3324301929476135,0.3315974552385042,0.3303187912555407,0.3293871475115155,0.3289289779686171,0.3282265346300161,0.3265150475144526,0.3257308467741935,0.3267279826180713,0.3281295122904173,0.3283794101457767,0.32954757375704,0.3298591992448674,0.3310032551539938,0.3318764633738432,0.3323981488142339,0.3346992763959852,0.3360215817123385,0.3380008144597938,0.3424229662385064,0.3461523244312562,0.3485248588599526,0.3502554278416347,0.3516636151272176,0.3514892968690485,0.3542139077853363,0.3584928087483656,0.3549823430062951,0.3563124617581072,0.3563756540897824,0.3623188405797101,0.0,1.404973145330401,58.23532294369845,182.84681891964985,270.15553964095244,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95816,43967,415.0455038824413,6283,64.46731234866827,4905,50.70134424313267,1970,20.268013692911413,77.3497797498425,79.68360305392021,63.33168066437421,65.06024412747153,77.10297888422387,79.43649284431824,63.24010719591327,64.97108742732165,0.2468008656186242,247.1102096019706,0.0915734684609432,89.15670014988564,149.57228,104.8374153568546,156103.65700926774,109415.35375809322,332.99445,214.31155383190853,347029.1496201052,223163.7240459928,344.87847,166.44827816085302,357169.48108875344,171571.0176069533,2822.35688,1296.6475343896184,2918268.7233864907,1325936.1843425091,1153.8412,510.4120099332803,1190617.819570844,519091.9887422561,1931.58592,812.4141250746542,1988313.642815396,822135.0255418255,0.38031,100000,0,679874,7095.620773148535,0,0.0,0,0.0,28401,295.8796025715956,0,0.0,31619,327.18961342573266,1673238,0,60006,0,0,5922,0,0,55,0.5740168656591801,0,0.0,1,0.0104366702847123,0,0.0,0.06283,0.1652073308616654,0.3135444851185739,0.0197,0.3347489761868648,0.6652510238131352,24.67906560915221,4.341904956487872,0.3119266055045872,0.2316004077471967,0.2324159021406728,0.2240570846075433,10.8442027989102,5.5255101628581365,21.02257610520441,12423.851628292316,55.755730877096816,13.64910836356481,17.365053947636603,12.638836301742156,12.10273226415326,0.5510703363914373,0.7711267605633803,0.703921568627451,0.5412280701754386,0.1210191082802547,0.7094594594594594,0.8992974238875878,0.84688995215311,0.7008196721311475,0.1481481481481481,0.4920235096557515,0.693935119887165,0.6501798561151079,0.4977678571428571,0.1133177570093458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0045930627515791,0.0069214687316053,0.0092655619786851,0.0114739090631675,0.0136856575530777,0.015936133117181,0.0179559420999979,0.0202890551535222,0.0223546029601424,0.0244592516658124,0.0265416760786085,0.0288008719435704,0.0308815503588602,0.0327508664796171,0.0349349039057656,0.037026302441852,0.038948241883622,0.0409051710702671,0.0429685466490364,0.0575470517047114,0.0713135495744191,0.0849509475096428,0.0968704680636415,0.1095546772068511,0.1252920838663974,0.1371022486211285,0.1489570029799914,0.1599641106162079,0.1709731741588098,0.1840809421703104,0.1967120856286323,0.2084412052648754,0.2192975744127324,0.2290073816569674,0.2396068785179275,0.249469877904511,0.2590118208095736,0.2677491461574247,0.2760239542899019,0.2837110825726285,0.2905697009391703,0.2978876989527247,0.3031624341159559,0.3086778063826687,0.3142075829617403,0.3197118991647076,0.3240565257762118,0.3286219081272085,0.3329990102276476,0.3323811577018433,0.3305176999076766,0.3298259471353211,0.3296579103699089,0.3290572215194583,0.3274963199214916,0.3256108769372167,0.3265698419478855,0.3273579419109849,0.3286641979284065,0.3297994108044208,0.3307980272149266,0.3324662792892954,0.3337136975880431,0.3346402713299497,0.3362889555352719,0.3382097623452398,0.3410466246511773,0.3431396527025611,0.3457943925233644,0.3479742005813953,0.3484182078321233,0.3501577287066246,0.3544139039889748,0.3574592404108943,0.3579370712088952,0.3531302617480483,0.3513785469913463,0.3554708764289602,0.3530778164924506,0.0,1.8966215694918884,58.960659633994,180.97232310691143,269.9520402893821,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95795,44217,418.0385197557284,6372,65.32700036536353,4985,51.41186909546427,2001,20.491674930841903,77.41775944651599,79.74694902555373,63.37436231324406,65.09577400666062,77.17362019712218,79.50433805906341,63.28438030575653,65.00875206363928,0.244139249393811,242.610966490318,0.089982007487535,87.02194302134103,151.23966,105.91821943976898,157878.44877081265,110567.5864499911,335.83698,215.4793175406288,349946.37507176783,224305.5144220771,352.27493,169.9990440849591,363872.321102354,174434.94388717297,2871.42296,1317.058097499421,2962260.577274388,1339849.0889385866,1216.64634,536.3204625641664,1254076.3192233415,543923.6719723955,1971.15362,819.6550072674585,2020481.0271934865,825462.9058717116,0.38159,100000,0,687453,7176.29312594603,0,0.0,0,0.0,28526,297.1345059763036,0,0.0,32295,333.23242340414424,1669405,0,59956,0,0,5889,0,0,66,0.6889712406701811,0,0.0,0,0.0,0,0.0,0.06372,0.166985508005975,0.314030131826742,0.02001,0.329343109382014,0.670656890617986,24.737040370580903,4.417418218568278,0.3247743229689067,0.2198595787362086,0.226680040120361,0.2286860581745235,11.230913000518656,5.777615142519113,21.16995703879748,12422.46957885718,56.39133588295689,13.23513016107199,18.32717825761119,12.466982200275796,12.362045263997924,0.5586760280842528,0.791970802919708,0.6967263743051266,0.5725663716814159,0.1245614035087719,0.7388059701492538,0.9154589371980676,0.8906605922551253,0.7346938775510204,0.1652892561983471,0.4924554183813443,0.717008797653959,0.6245762711864407,0.5276836158192091,0.1135857461024498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023592786480219,0.0046628080240844,0.0068695396292275,0.0092523003798419,0.0113479215813877,0.013671159249155,0.0159107124655998,0.0182697803543725,0.020206872585294,0.0220864421177602,0.0243137415691178,0.0263201116859653,0.0282480648842014,0.0305763172524553,0.0327074375393118,0.0347253065060888,0.0366150247860328,0.0385975097711933,0.0407542073550799,0.0427472332982832,0.0576862884210087,0.0712859487544037,0.0842662473794549,0.0967447137049759,0.1086384126047942,0.1244836511541915,0.1367859072275245,0.1492887972274786,0.1604054414510536,0.1710157036656168,0.1847657762291908,0.1972453278599978,0.2086730871543197,0.2193020767366191,0.2294914472166375,0.2398805243652857,0.2506130729445336,0.2592089304164233,0.2677284879242376,0.2754511561949635,0.2826114583453677,0.2902099535253042,0.2970377719509602,0.3033320566832631,0.3100481720116972,0.3152781540128549,0.3199630129454691,0.3241251365981346,0.328984457834441,0.3334474540115613,0.3331273342827203,0.3328659986529765,0.3321327574320807,0.3313181739481733,0.3303203016000237,0.3283904141033881,0.3263944868572874,0.3272220856885394,0.3284697630073549,0.3290436268489347,0.3297130572950743,0.3301530471731518,0.3307867326277997,0.3309514269177686,0.3315169119235662,0.3325097529258777,0.3323669025894659,0.3357904642409033,0.3388062314020654,0.3413987010929827,0.3430026370828408,0.3468217301258563,0.3479685039370079,0.3507332269584378,0.3518047309395909,0.3521495772299631,0.3632545115121344,0.3631525076765609,0.3588543101074084,0.3481797056545314,0.0,2.4417798507687416,58.56832624249224,182.7387712561476,275.6923664389723,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95713,44385,419.7757880329736,6322,64.77698954165056,4970,51.267852851754725,1989,20.279376887152218,77.3893283971574,79.74771580941729,63.35181630130408,65.09257290911977,77.13506443072325,79.49779851641752,63.256891026153816,65.00251430081286,0.2542639664341521,249.9172929997684,0.0949252751502598,90.05860830690438,151.09072,105.81375934256192,157858.09660129764,110553.17390799776,334.55128,215.22587840212307,348816.9214213326,224146.91672199505,351.10697,169.73036518608413,362501.1231494154,174115.53502230078,2839.57708,1310.074009740497,2930017.0300795087,1332164.204791705,1186.46554,525.0252724898543,1221344.33149102,530311.642565768,1945.30846,821.2235772382563,1986041.269211079,820056.7868469297,0.38297,100000,0,686776,7175.36802733171,0,0.0,0,0.0,28486,296.939809639234,0,0.0,32248,332.6089454932977,1667023,0,59849,0,0,6079,0,0,59,0.605978289260602,0,0.0,0,0.0,0,0.0,0.06322,0.1650782045591038,0.3146156279658336,0.01989,0.3258308157099698,0.6741691842900303,24.699890646596057,4.392960837460813,0.3175050301810865,0.2309859154929577,0.2291750503018108,0.2223340040241448,11.275373562419531,5.829089816655667,21.244848552166776,12473.199451768587,56.27329334742289,13.680511385967256,17.815946899214328,12.61117245529573,12.165662606945558,0.5635814889336016,0.7839721254355401,0.70595690747782,0.582089552238806,0.1122171945701357,0.723752792256143,0.9017199017199016,0.8708920187793427,0.7442748091603053,0.157258064516129,0.5042735042735043,0.7192982456140351,0.6449652777777778,0.5336374002280502,0.0991831971995332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0047837676224066,0.0068774535163263,0.0092706355411593,0.0116201049164328,0.0138733383547421,0.0158364585031795,0.0183567682292198,0.0206606925725729,0.0227465747117027,0.0250643002797446,0.0269424523171945,0.0288840937114673,0.0307568786091467,0.0327650753380155,0.0347543016586575,0.0367950801851142,0.0388265925334273,0.0407974471712037,0.0428572916775181,0.057454940373008,0.0717327836087188,0.0850789321865002,0.0985037275375119,0.1102455171250566,0.1258764183965905,0.1388096273588408,0.1503502459173462,0.1611772875380588,0.1717848641461688,0.1855636798294261,0.1980896336120636,0.2090413907824782,0.2195418010826179,0.2295190202141356,0.2402419703298286,0.2502651231846038,0.2597792703094941,0.2684139434045789,0.2768929324411037,0.2846731372118043,0.2915711679685673,0.2980426941044291,0.3035068388147651,0.3095342173005003,0.3150679869937925,0.3199709640680342,0.3241620555873561,0.3295695861604599,0.3333597129893426,0.3321857938194239,0.3313580993758077,0.3312291751606236,0.3306612358089956,0.3302904810675216,0.3281252388741955,0.3271711159875597,0.3277961441524009,0.3274763105869521,0.3290193771502932,0.3304473034632358,0.3313146058549672,0.3335705316031812,0.3358355674709562,0.3365146524989783,0.3385470796092288,0.3402671213412901,0.3433055572959088,0.3473518615626638,0.3517004384405735,0.3516388598445242,0.3560195515885666,0.3597376387487386,0.362773390036452,0.3662117647058823,0.3697558663190329,0.3714067278287462,0.3669632025879498,0.371452655240236,0.3669796557120501,0.0,2.562425671516343,58.49189636058276,187.30966101006305,267.3243676666988,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95671,44253,418.4862706567298,6376,65.4325762247703,5019,51.865246521934544,1977,20.246469672105444,77.35982293729873,79.73498653472299,63.33991942654043,65.08966560653673,77.1173367999183,79.49392682501535,63.24918842289795,65.00162825792546,0.2424861373804248,241.0597097076419,0.0907310036424817,88.037348611266,150.00084,105.09215306893653,156788.2012313031,109847.449142307,335.79896,215.674961163551,350382.5192587095,224823.9880072431,349.60125,168.87349549318853,361765.665666712,173664.83493077251,2874.74556,1313.9178111673853,2972604.1538188164,1341249.5215865723,1191.45151,525.0879384230794,1229760.0004180996,533270.5333623752,1941.3279,815.6510526562885,1991111.89388634,822051.7666093617,0.38231,100000,0,681822,7126.736419604687,0,0.0,0,0.0,28489,297.12242999446016,0,0.0,32102,331.8560483323055,1672156,0,59916,0,0,5977,0,0,61,0.6376017811039918,0,0.0,0,0.0,0,0.0,0.06376,0.1667756532656744,0.310069008782936,0.01977,0.3268511593118923,0.6731488406881077,24.699155494749377,4.319275220580228,0.3199840605698346,0.2355050806933652,0.2193664076509265,0.2251444510858737,11.388333856234151,6.0178504297412845,20.9724608614768,12535.856309598645,56.62829880782797,14.063372743613488,18.09871834452837,12.255440992100208,12.210766727585888,0.5644550707312214,0.7690355329949239,0.7110834371108343,0.5894641235240691,0.1176991150442477,0.7218890554722639,0.90521327014218,0.8753056234718827,0.6928838951310862,0.1610169491525423,0.5074626865671642,0.6934210526315789,0.6549707602339181,0.5563549160671463,0.1062639821029082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0048043299784109,0.0071222036219753,0.0092624565822347,0.0114283390271677,0.0136800855005343,0.0159365797491313,0.018171244337428,0.0202355536941887,0.022434553099201,0.0244332209849097,0.0262634138334325,0.028470701900445,0.0306730779131186,0.0325531980732137,0.0346545398170637,0.0367199469957348,0.03873838367076,0.040898222268427,0.0432073033473675,0.0575201362264032,0.071219164886711,0.0848743729140866,0.0976769632185843,0.1098420131198717,0.1255594468485816,0.1379427467546941,0.149961654808061,0.1611306513860528,0.1721069523308609,0.1850011854214712,0.1979943903574793,0.2100073999912941,0.2207300388551414,0.2309657526704107,0.2416612201039093,0.2511803377496009,0.2611682689604767,0.2696880317640385,0.2781880846873461,0.2863637941207094,0.2932111766357764,0.2995135346266289,0.3060178030166888,0.3120441720769371,0.3172668513388735,0.3224366827512063,0.3275121380818018,0.3327555653287457,0.3372513323835154,0.3368255419871967,0.3363039980195568,0.3355545850297967,0.3347723761532797,0.3345498783454987,0.3338943631801211,0.3319088995457639,0.3319975693475012,0.3323638603274537,0.3328805076414335,0.3338020247469066,0.3333992524769118,0.3347589995177893,0.3353008250050305,0.3359688543894643,0.335867527598417,0.3379257449649178,0.3409347553324968,0.3447467823167319,0.3465683943572674,0.3497136103282116,0.3522430950987175,0.3561417971970321,0.3574657166934804,0.3602684056327379,0.365260129465356,0.3680811808118081,0.3639131317231581,0.3643243243243243,0.3641262509622787,0.0,2.1774571250942896,58.56402803143361,181.82432904448555,281.6545788600557,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95852,44276,418.5828151733923,6410,65.62200058423403,4977,51.33956516295956,2013,20.625547719400743,77.34109898624328,79.63262452053834,63.34986309044478,65.0444000261567,77.0896915831819,79.3828300202244,63.256520260266655,64.95454008720438,0.2514074030613784,249.79450031393924,0.0933428301781233,89.85993895231559,150.74972,105.512793208689,157273.42152485083,110078.86450850165,331.64755,213.03826497493392,345417.5082418729,221675.4005914681,347.43247,168.02252266180594,358791.65797270794,172470.1297227084,2863.15656,1316.5533118329893,2954857.321704294,1341324.742136825,1194.41825,527.1813319112865,1227269.2588574053,531157.6304211564,1971.30134,830.9518058397166,2020474.7318783123,834554.9285861496,0.38268,100000,0,685226,7148.791887493218,0,0.0,0,0.0,28230,293.90101406334765,0,0.0,31870,328.7881317030421,1670392,0,60068,0,0,5909,0,0,57,0.5946667779493385,0,0.0,1,0.0104327504903392,0,0.0,0.0641,0.1675028744643043,0.3140405616224649,0.02013,0.325297619047619,0.674702380952381,24.6800467404312,4.360825783572851,0.3343379545911191,0.2171991159332931,0.2258388587502511,0.2226240707253365,11.080794210691424,5.75660521338055,21.56434325795354,12465.759676635254,56.77141338275121,12.961658087816105,18.924360326142374,12.69022127672489,12.195173692067842,0.5633916013662849,0.7724329324699353,0.6989182692307693,0.6040925266903915,0.1146209386281588,0.7263643351268255,0.9050131926121372,0.8641686182669789,0.7381818181818182,0.1363636363636363,0.5057127312295974,0.7008547008547008,0.6418755052546483,0.5606595995288575,0.1092342342342342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022074831654093,0.0044684925677113,0.0067147450526935,0.008822872459236,0.011017827739719,0.0133517870227143,0.0158929062624163,0.0180770211680693,0.020162196392458,0.0224127172478697,0.0245731201409446,0.0266145657056705,0.0286659203188069,0.0303928226022182,0.0324787733904871,0.0346478960459907,0.0366559818012615,0.0384910273944216,0.0404480850489509,0.0422822422905655,0.0568833552316002,0.0710179765886287,0.0844742879291019,0.0973826828551022,0.1095010425661871,0.1256443298969072,0.1378565071831165,0.1499670402109426,0.1616280186534911,0.1723365487674169,0.1853414411020825,0.1976164469486411,0.2093339276202072,0.2202728405587984,0.2302258799194622,0.2405300302462912,0.2508899378438396,0.2603843211376626,0.2695537700304145,0.277477436202868,0.2849193678998635,0.2919624375811299,0.2981698588650049,0.3031882390999604,0.3089676784608097,0.3145252774352651,0.3203699994993241,0.3251135626216742,0.3301571683798969,0.3353007975492526,0.3346984413519958,0.3332048564270572,0.3330794832741016,0.3325851157806322,0.3318982853908147,0.3304582706651524,0.3295140762370266,0.3295776503920405,0.3300932525030483,0.3314581498589119,0.3313651883571334,0.3317691971209289,0.3327076786806419,0.3328298994635048,0.3328401290416474,0.3343674413713324,0.3343662133471051,0.3380843785632839,0.3401197604790419,0.3418629678345091,0.3440658586782529,0.34608,0.3474130834019378,0.3492208982584784,0.3513231528028075,0.3561004784688995,0.364156486779032,0.3612916328188464,0.3611340489953206,0.3585780525502318,0.0,2.3175867581812937,56.852910168404925,194.79784991968816,272.3788430840761,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95648,43924,415.13675142188026,6233,63.99506523921044,4923,50.9472231515557,1990,20.481348277015726,77.31769350596971,79.73914427811962,63.289715480586615,65.08092887932983,77.07123912192505,79.4910326887931,63.20013970194744,64.99244201983497,0.246454384044668,248.11158932652688,0.0895757786391726,88.48685949486423,150.04286,105.15541914130831,156869.83522917365,109940.00830263918,336.68159,216.61933508248097,351508.3221813316,225983.2145810482,351.85464,170.21949414938155,364025.1651890265,175089.13320543338,2816.92048,1275.8416416758075,2918514.1351622613,1307315.951902609,1168.20586,513.559321871907,1208268.1603379056,523835.0952156939,1949.10242,803.5326961289289,2008707.7617932416,817145.4507724387,0.37849,100000,0,682013,7130.447055871529,0,0.0,0,0.0,28679,299.31624289059886,0,0.0,32228,333.10680829708934,1665114,0,59714,0,0,5971,0,0,71,0.742305118768819,0,0.0,0,0.0,0,0.0,0.06233,0.1646807049063383,0.3192684100754051,0.0199,0.3278838808250573,0.6721161191749427,24.870476761308552,4.443251781223526,0.3180987202925046,0.22953483648182,0.2275035547430428,0.2248628884826325,11.535327928171968,5.946222823396095,21.035760951213117,12369.074048016397,55.63869143758615,13.509648973703468,17.693975336571924,12.383936379731022,12.051130747579728,0.5583993499898436,0.7849557522123893,0.6883780332056194,0.5794642857142858,0.1219512195121951,0.7270588235294118,0.9170731707317074,0.8304668304668305,0.7058823529411765,0.1625615763546798,0.4994517543859649,0.7097222222222223,0.6384814495254529,0.5421965317919075,0.1128318584070796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806629386498,0.0046647466839735,0.0070152284263959,0.0091565971198894,0.0115376397692472,0.0137734311328443,0.0160773672291024,0.018114202229283,0.0202531904659564,0.0222534287295762,0.0244726171534158,0.0266307477173644,0.0288535799240044,0.0309879204877193,0.033000299627016,0.0352963089435942,0.0377393702501788,0.0396156842378603,0.0414910555399456,0.0433186643585625,0.057851066942546,0.0717825672404941,0.0855555438858139,0.0979316300524464,0.1104212204728566,0.1256499592286268,0.1375807548452907,0.1494926671214188,0.1610118729275858,0.1716857118309133,0.1842400448681996,0.1968905742145179,0.2084159170605275,0.2191332340574632,0.2287713498622589,0.2390094046668441,0.2491787158915681,0.258209089680645,0.2670753860127157,0.2740606630074826,0.2818126034756231,0.2887567871185171,0.2951207958313595,0.3007832647626816,0.30643317524018,0.3123921297894373,0.3169727239726113,0.3211013843648208,0.3249157812904897,0.3293250171784978,0.3298596600024266,0.3285643468921264,0.327713560755568,0.3266149422796295,0.325892923442489,0.3245318294663928,0.3222069009240327,0.3231281908170133,0.3246269930690703,0.324260291786166,0.3248514740499943,0.3268079407594139,0.3298155780358853,0.3309824686304173,0.3319850653391412,0.3316709524922725,0.3324247586598524,0.3359934904390824,0.3399482010359793,0.3444435637285986,0.3446765806039595,0.3479208763160693,0.3521055622198371,0.3518039275384381,0.3548447789275635,0.3591140589837735,0.3643327715642714,0.3693295865114412,0.375170905113481,0.3849675696299122,0.0,2.073627737564681,56.14652030874989,185.3208985253009,273.8612467394598,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95716,44041,414.4866062100381,6395,65.68389819883824,5061,52.352793681307205,1978,20.34142672071545,77.34880342590687,79.70497612413091,63.338894218876014,65.07656563897672,77.09623543071113,79.45375404840864,63.245115276696325,64.98609313111965,0.2525679951957329,251.22207572226785,0.0937789421796893,90.47250785707206,151.36616,105.96302741423445,158140.91687910067,110705.65779413516,334.99769,215.00818319644483,349489.80316770443,224129.87713281452,352.49222,170.38680793870498,364492.5613272598,175186.7383022414,2909.29096,1335.1920122362626,3011668.519369802,1367116.983823251,1209.13816,536.4911421877463,1249872.6440720465,547119.6896942473,1939.63034,819.1151497065398,1996666.910443395,828792.0997350437,0.37952,100000,0,688028,7188.223494504577,0,0.0,0,0.0,28443,296.6275230891387,0,0.0,32304,333.9671528271136,1665558,0,59818,0,0,6003,0,0,66,0.6581971666179114,0,0.0,1,0.0104475740733001,0,0.0,0.06395,0.1685023187183811,0.3093041438623924,0.01978,0.3437266895419961,0.6562733104580039,24.62826619176737,4.397716212545502,0.3171310017783046,0.2373048804584074,0.2226832641770401,0.2228808535862478,10.90443436468786,5.602628324660514,21.324934418504387,12457.771298442807,57.58057155223359,14.446224356149832,18.101764079764283,12.593245814518845,12.43933730180064,0.5643153526970954,0.7810158201498751,0.6884735202492211,0.59094942324756,0.1303191489361702,0.7217771303714494,0.9023255813953488,0.8286384976525821,0.7553956834532374,0.1673640167364016,0.5056941431670282,0.7133592736705577,0.6378286683630195,0.5371024734982333,0.1203599550056243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0045513522280338,0.0070113134797828,0.0091528764006135,0.0116316902554091,0.0139054308545833,0.0163291100533091,0.0184546289680514,0.0206938838076746,0.0228954505910649,0.025100957300699,0.0272694616924103,0.0296306958381312,0.031894741176955,0.0343401208970312,0.0364231909815145,0.0384551667011803,0.0407760946254409,0.0426514166883285,0.0447327289778055,0.0595908222196693,0.0730956816611893,0.0868333525690123,0.0995107580619706,0.1113478618594544,0.1265893752512323,0.1384535393300155,0.1511567247601912,0.1625606290463879,0.1729956448048744,0.1864490763181989,0.1986583716526913,0.2109258594625164,0.2216705671354519,0.2310265155682693,0.240709964767666,0.2502066346476042,0.2593376409933133,0.2677906448683015,0.2755072812474937,0.2821833757814309,0.2889848155167169,0.2951949143513312,0.3018325203446912,0.3081959645776898,0.3136720964045442,0.3192122538293216,0.3247597009611961,0.3289053304186985,0.3331223712142188,0.3325254157409277,0.3312503441061498,0.3306410690121786,0.3298529262896065,0.3287222965937825,0.327427932138971,0.3255810269165571,0.325615359369872,0.326322803300815,0.3263957123715945,0.3272165527572325,0.328217890225356,0.3295480734982924,0.3305181567687448,0.3314463287724031,0.3301822739854808,0.3312539346420191,0.3339650053692123,0.335738166461376,0.3401503998726773,0.3446761800219539,0.3470131261719796,0.3504333418302319,0.3494996150885296,0.3500332099819717,0.3467162032598274,0.3525660964230171,0.3519055509527755,0.3565217391304348,0.3575310559006211,0.0,2.086083141313825,60.63221525220376,188.038230173224,277.7188294583398,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95639,44356,419.9751147544412,6298,64.55525465552756,4924,50.91019354029214,1941,19.939564403642866,77.26744378178137,79.68544310403982,63.28338998351626,65.07064286802832,77.01630832341341,79.43308094043084,63.18948394379681,64.97846880103327,0.2511354583679548,252.36216360897856,0.0939060397194495,92.17406699504238,152.27212,106.5839624756638,159215.5083177365,111444.03692600696,335.91196,216.63443966121133,350655.192965213,225938.7903064768,349.13201,169.0608252205123,361979.2553247106,174322.1200684229,2814.59536,1308.3184097170615,2912046.968286996,1337085.9688171782,1185.93626,534.7844428703771,1222869.885716078,542026.4880126065,1901.1284,810.3520256759673,1954954.7360386453,819496.9724786143,0.38335,100000,0,692146,7237.068559897113,0,0.0,0,0.0,28565,298.06877947280924,0,0.0,32122,332.6885475590502,1656501,0,59468,0,0,6123,0,0,62,0.6482711027927938,0,0.0,3,0.031367956586748,0,0.0,0.06298,0.1642885091952523,0.3081930771673547,0.01941,0.3391555285540705,0.6608444714459295,24.2786345779456,4.29900958605424,0.3245329000812347,0.2341592201462226,0.2185215272136474,0.2227863525588952,11.225194903712866,5.884241480536603,20.92560083075529,12463.768994495997,56.45188887665295,14.036353994761214,17.998256724701527,12.141406313703788,12.275871843486428,0.5682372055239643,0.795316565481353,0.6921151439299124,0.6031598513011153,0.1148587055606198,0.729490022172949,0.9019607843137256,0.8575,0.7406015037593985,0.1447368421052631,0.5071408569028283,0.7247838616714697,0.6368948247078464,0.5580246913580247,0.1070195627157652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0046643682822956,0.0068835282651072,0.0092675392244532,0.0114650199900304,0.0139528251924878,0.0161306768358586,0.0182543976967605,0.0205216822257896,0.0224882489682645,0.0247269370801497,0.0268007560504581,0.0288453625216031,0.0310764443436955,0.0331127878531394,0.0352944825233384,0.0370159394322289,0.039099071046759,0.0412432258131624,0.0430267835732977,0.0575743324450018,0.0716073691597105,0.0855123600697288,0.0987796017647864,0.11110172712301,0.1262177043625582,0.1392659147390556,0.1510917868218293,0.1626481536947499,0.1726993469668327,0.1858335490551385,0.1985590465872156,0.2100582376313068,0.2202983571749099,0.2299874474223171,0.2398736632127223,0.2495199178277956,0.2589824403421882,0.2680500187399911,0.2760027971707305,0.284056695539395,0.2906033907824072,0.29748963883955,0.3036597072234221,0.3096402247682989,0.3153762591349002,0.3212285954077989,0.325809654750993,0.3299629255139872,0.3341178026046142,0.3330229168353713,0.3324144014996967,0.3317806478932881,0.3302236643875304,0.3292690197948962,0.3282257569243997,0.3258676832658247,0.3269474272746707,0.3278803538732696,0.3287127296141945,0.3294572915296902,0.3309638219292323,0.3320919859454228,0.3327730339093211,0.3328827306522474,0.3337086890483423,0.3327900726253788,0.3363702279247186,0.339922480620155,0.3430592749510372,0.3454143034997925,0.3463819691577698,0.3492357869156487,0.3517917825146741,0.3549919255248409,0.3549553894381481,0.3566760037348273,0.3605947955390334,0.3626780626780627,0.3725411481332798,0.0,2.19725549542234,59.42256716643502,192.56184536514812,260.0685724920122,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95826,44279,417.0580009600735,6244,63.82401435935968,4868,50.06991839375535,1956,19.84847536159289,77.40182060844235,79.71573378090704,63.36325590393732,65.07576469806193,77.15299829952258,79.47421016138779,63.26973944495739,64.9891996414766,0.2488223089197703,241.52361951925627,0.0935164589799342,86.56505658532865,152.05938,106.50537647233736,158682.57049235073,111144.33397443008,336.75198,217.04937170968373,350679.6798363701,225763.6139478677,353.37012,171.12833284540258,365012.7940224991,175625.80682388993,2791.97288,1291.99989258216,2871369.523928788,1306109.8789286416,1205.68041,538.1555965867843,1237937.4491265418,541425.5199974396,1924.02606,813.2000612667334,1954148.8948719555,801658.189420201,0.38135,100000,0,691179,7212.844113288669,0,0.0,0,0.0,28614,297.83148623546845,0,0.0,32376,334.136873082462,1660987,0,59662,0,0,6117,0,0,63,0.6574416129234237,0,0.0,1,0.0104355811575146,0,0.0,0.06244,0.1637341025304838,0.313260730301089,0.01956,0.3257020757020757,0.6742979242979243,24.538754221164528,4.364415612736178,0.3182004930156121,0.2378800328677074,0.2136400986031224,0.2302793755135579,11.268290825162303,5.908107962089551,20.777569476283663,12446.06827934706,55.32720295013582,13.949463661733956,17.54795134360583,11.60908847598395,12.220699468812088,0.5776499589153656,0.803972366148532,0.71078114912847,0.6028846153846154,0.1364852809991079,0.7351190476190477,0.9250585480093676,0.8543689320388349,0.77734375,0.1686746987951807,0.5175936435868331,0.7332421340629275,0.6587510993843447,0.5459183673469388,0.1272935779816513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430182871261,0.004945828983774,0.0071622773201314,0.0095980986623602,0.0118034586878945,0.0142513946007573,0.0164806604494725,0.0184017146356399,0.0204736643055001,0.0230292112751018,0.0251963015355597,0.0271587958163548,0.0292751120430903,0.0313944748195512,0.0332944828937732,0.0354113064054475,0.0373180679489037,0.0397482163597146,0.041944531006544,0.0438696919233971,0.0586505063990904,0.0723702782105032,0.0852843159858313,0.0981321174938017,0.10963882071646,0.1257631773529101,0.1375309897654313,0.148570638827169,0.1608069164265129,0.1715427383847365,0.1848672604449034,0.197384490678195,0.2086000239070667,0.2201068840777696,0.230138221484259,0.2406984984718961,0.2503430349951473,0.25908349732921,0.2677118903649585,0.2758636478102607,0.2831945408281286,0.2899714739992517,0.2975054114474291,0.3025385334515905,0.3077885631674219,0.3134173845528155,0.3184098900136388,0.3235645780864433,0.3283417891903085,0.3324629080118694,0.3316875639024915,0.3311655277667019,0.3315705083124701,0.3304686373467916,0.3294783975328411,0.3278172029854398,0.3265380299941529,0.3269347309802637,0.3271648104245194,0.327685729556387,0.3287410038321338,0.3294358893467674,0.3296905363896608,0.3313028538277885,0.3312164493865031,0.3336277897581127,0.3363236337828247,0.3399868598066514,0.343510649459658,0.3459009900990099,0.3491636661957066,0.3517039403620873,0.3539382482671707,0.3601430528077918,0.3601493233784414,0.3656091520226441,0.3690895179801071,0.3742119178360789,0.3697687224669603,0.3633217993079585,0.0,2.819700605761428,58.42303648967218,180.11592309711273,263.0119538148893,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95690,43793,413.8885985996447,6230,63.904274218831645,4895,50.517295433169615,1879,19.260110774375587,77.32145341825886,79.71020527974869,63.3143933609397,65.08097222524297,77.08803542668075,79.47817826566116,63.227513032143385,64.99695391609718,0.2334179915781078,232.02701408753512,0.0868803287963118,84.01830914579023,150.47054,105.35085530631837,157247.92559306094,110095.99258680988,332.17862,212.9243688347727,346510.4817640297,221885.51902780493,339.76297,163.7658099292377,351146.98505590967,168096.3982237869,2813.37596,1277.5212143884771,2905436.5973455952,1300462.22129597,1166.30118,517.6060399816796,1202712.8435573203,524894.9284944078,1842.5638,775.805883826957,1890606.3120493256,781849.4852831648,0.38077,100000,0,683957,7147.632981502769,0,0.0,0,0.0,28260,294.64938865085173,0,0.0,31210,322.1862263559411,1673651,0,59991,0,0,5887,0,0,54,0.5643222907304839,0,0.0,1,0.0104504127913052,0,0.0,0.0623,0.1636158310791291,0.3016051364365971,0.01879,0.3316506042527153,0.6683493957472847,24.754592699165617,4.447628006527285,0.3315628192032686,0.229826353421859,0.2204290091930541,0.2181818181818181,11.3715112954075,5.90141776630035,20.07307963354277,12409.362402239662,55.11639094177993,13.348503587770509,18.200812888119717,11.96767086304563,11.599403602844069,0.5599591419816139,0.792,0.678373382624769,0.5792400370713624,0.1161048689138576,0.7371794871794872,0.9252577319587628,0.8478802992518704,0.756198347107438,0.1751152073732718,0.4993145050726624,0.7218453188602443,0.6227495908346972,0.5280764635603346,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019251033476534,0.0044417401886218,0.0063748578853337,0.0086381235963049,0.0112424711053231,0.0136195094124358,0.0157969344360932,0.0179599754952011,0.0202516893446058,0.0223043380350891,0.0244212512046586,0.0264638830125901,0.0285255783810474,0.0303979556086804,0.0325557390586292,0.0345119933829611,0.036594713291349,0.0385756984515754,0.0407978618301319,0.0428660760812923,0.0576125669761758,0.0712543572243565,0.0844930000209894,0.0971682924519367,0.1091346458188263,0.1244536169762396,0.1374530324580211,0.1487240659481106,0.1598841558552589,0.1700630657685872,0.1834898952902141,0.1957651338009872,0.2077573173517223,0.2186279550601131,0.2289633777406189,0.2394751411803787,0.2492330689512845,0.2584978193426555,0.2673788301467419,0.2755891985982914,0.2832224856861951,0.2896617046902955,0.2964927025011541,0.3025711717111177,0.3088344288786557,0.3145112624539711,0.3193650475964124,0.3234557542936323,0.3284722491564208,0.3331092747090532,0.3325082730232183,0.3316296387892777,0.3311990768754485,0.3304837545126354,0.329761940143252,0.3286600781429556,0.3270427307126007,0.3271733600301981,0.3280476564366913,0.3295687701832325,0.3311490142480013,0.331911363905676,0.3323077567081083,0.3331990871257887,0.3346813990996846,0.3361050099361991,0.3363102905395735,0.3379815124459728,0.3411313586153521,0.3450427180607987,0.3477448747152619,0.3494296983264044,0.3500444783326979,0.3486224411266738,0.3522125567322239,0.3567321514135122,0.3526226210738047,0.3613393590797042,0.3650528658875904,0.3617681271810779,0.0,2.386374296183247,54.46450037714481,187.63603791037545,269.1389095342114,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95699,43926,415.9709087869257,6292,64.43118527884305,4889,50.42894910082655,1954,19.9479618386817,77.3455376358958,79.73225838599421,63.32130932583449,65.08729850363949,77.09478721205072,79.48518900679107,63.2264873494688,64.99690350798589,0.2507504238450764,247.06937920313976,0.0948219763656936,90.39499565359677,151.38574,106.00404821369838,158189.00928954326,110767.76186547232,334.19811,214.93658466423145,348544.8332793446,223924.1696219098,347.51187,167.71963565883803,359485.5954607676,172438.73527770827,2795.74496,1287.1044429985454,2884823.3314872677,1308545.065139264,1187.14472,527.8812488436465,1226772.024786048,538086.5273677228,1905.30596,814.4398744502738,1947281.3091045883,814737.1880834576,0.37877,100000,0,688117,7190.4095131610575,0,0.0,0,0.0,28536,297.4639233429817,0,0.0,31890,329.59592054253443,1665336,0,59706,0,0,6078,0,0,49,0.5120220691961254,0,0.0,0,0.0,0,0.0,0.06292,0.1661166407054413,0.310553083280356,0.01954,0.3414449818621523,0.6585550181378477,24.742265909969127,4.313090440378968,0.318470034771937,0.2401309061157701,0.2188586623031294,0.2225403968091634,11.17732167473002,5.948462905770032,20.997045538490813,12388.161588504452,55.34528283095908,13.999796039562586,17.610397836552966,11.807779482459992,11.927309472383527,0.5669871139292288,0.8015332197614992,0.689145793192036,0.577570093457944,0.1286764705882352,0.7273431448489543,0.918987341772152,0.8578431372549019,0.7228915662650602,0.1924686192468619,0.509449694274597,0.7419768934531451,0.6292428198433421,0.5334957369062119,0.110718492343934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721628385292,0.0047568335108271,0.0072186405401289,0.0092888066830626,0.011353463009685,0.0135974740272968,0.0156635597887051,0.0175341850229261,0.0198482493455497,0.0220681604063408,0.0239885134095687,0.0262014564353283,0.0281843710462161,0.0300988180984471,0.0320849544370943,0.0339722515145876,0.0360487279356923,0.0382256172871539,0.04027829776613,0.0421581294544242,0.0572980312287847,0.0710061648925592,0.0847144521532858,0.0973987709403148,0.1097654890129018,0.1249722319190124,0.1377967378731442,0.1495127017095382,0.1605606097860831,0.1711074373067674,0.1841398863746617,0.1969455727051177,0.2083015828089961,0.2182110653943797,0.2285456386772929,0.2395532063428742,0.249137728962261,0.2580710499960615,0.266196112252193,0.2742136780516848,0.2817320265219454,0.2896463022508038,0.2965188488425734,0.3031126866833539,0.3086305875499132,0.3136499575400293,0.3190135739819513,0.3228465465999441,0.3274853045668884,0.3312190756921781,0.3302889070957517,0.3298575858189501,0.3297529840149587,0.3294160057678442,0.3288436462778568,0.3261925862543165,0.3246899126692824,0.3250825896158966,0.3264447977026819,0.3277791683055029,0.3290074185369518,0.3303134230715857,0.3309437214875859,0.331331376196132,0.3334378315809781,0.3344839308595486,0.3353884797625164,0.3395555275749181,0.3428320449754041,0.3473270315354674,0.3504793929204344,0.353090601185436,0.3539251926571017,0.3562400666010747,0.3577541615724631,0.3594105666706601,0.3601668726823238,0.3609975470155355,0.3592206366630077,0.3629283489096573,0.0,2.473655647763326,56.26221316473912,181.7402807219328,272.28168573160065,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95613,44256,419.6500475876711,6240,64.12307949755787,4864,50.32788428351793,1927,19.809021785740438,77.23812690061078,79.66974740302763,63.25655152000609,65.054421960233,77.00573475662692,79.43735082424543,63.17032149018405,64.97054191024604,0.2323921439838585,232.39657878220044,0.0862300298220404,83.8800499869592,151.70342,106.33114052231966,158664.0101241463,111209.9196995384,336.13938,215.67164822289072,351012.67610053025,225017.53759728355,346.75998,166.6843510939931,359189.8904960623,171757.99607296745,2813.52144,1270.4886483466378,2912904.7305282755,1299073.1473195455,1138.81586,496.3100209531951,1175161.8085406795,503175.9498741746,1902.79172,790.6244845932881,1957609.237237614,799060.2648697768,0.38213,100000,0,689561,7212.000460188468,0,0.0,0,0.0,28612,298.6623157938774,0,0.0,31790,329.03475468817004,1656861,0,59476,0,0,6098,0,0,53,0.5438590986581323,0,0.0,0,0.0,0,0.0,0.0624,0.1632952136707403,0.3088141025641026,0.01927,0.3339455157636976,0.6660544842363024,24.758692304614907,4.464268960191223,0.3231907894736842,0.2251233552631578,0.2146381578947368,0.237047697368421,10.9988591054543,5.549331073083137,20.41095858007664,12465.077701376546,54.82824430988366,12.996837859694294,17.90962205695803,11.47410225579746,12.447682137433882,0.5460526315789473,0.7698630136986301,0.7073791348600509,0.5584291187739464,0.1023417172593235,0.7261809447558046,0.9110512129380054,0.8798076923076923,0.7361702127659574,0.13215859030837,0.4838174273858921,0.6975138121546961,0.6453287197231834,0.5067985166872683,0.0950323974082073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0045946466787702,0.0067825521890991,0.009107264466422,0.0109102751994789,0.0130607088643703,0.0152379009638431,0.0174375842765496,0.0196285007057668,0.0219393033093318,0.0237318394484117,0.0258109593826741,0.0279430229925279,0.0300712349102605,0.0323226899087116,0.0342383544068042,0.0361171006800464,0.0382997288790551,0.0402006911770829,0.0422599860211352,0.0565672827632349,0.0704921983883306,0.0837395470017229,0.0963960738057123,0.1084885734803362,0.1239407677315481,0.1373782230390854,0.1495192615174707,0.1614684199826665,0.1719211558085826,0.1853090642296861,0.1980140060273616,0.2097825139470014,0.2206882950399369,0.2307115857219999,0.2413842842243082,0.2511604496392819,0.2602352039148034,0.269865817602911,0.2779570324610456,0.2852336144983698,0.2922290364568065,0.2983222193217684,0.3046530357121392,0.3099859867178456,0.3152879231710482,0.3200667720962924,0.3251795990761653,0.329596529058741,0.3340744858254585,0.3330767776607524,0.3316541301497481,0.3315120711562897,0.3303722810729346,0.3301861504095309,0.3294112225618654,0.3279847485900389,0.3294278557774702,0.3304164307407217,0.3319422553374409,0.3322379539565103,0.3346540930343133,0.3348391570188893,0.3363607822030857,0.3378974519682761,0.3392899130025864,0.3411899313501144,0.3433598183881952,0.3457454289732771,0.3484584291035904,0.3538110451848471,0.3571694006476615,0.3594467148695379,0.3608936849304658,0.3596589844481919,0.3588235294117647,0.3582291823520554,0.3550637958532695,0.3560709413369713,0.3623188405797101,0.0,2.1405545230254384,54.99296902322856,177.93060373469345,277.51818196073566,fqhc7_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95714,43978,416.0624360072717,6231,63.89869820506927,4859,50.12850784629208,1888,19.349311490482062,77.33641368994157,79.71189386957127,63.332022412709286,65.08974424852174,77.09714288424799,79.47355480707546,63.24437602209915,65.00501373135813,0.2392708056935788,238.33906249581105,0.0876463906101321,84.73051716360658,150.74356,105.6789055049281,157493.74177236352,110411.12638164542,332.19442,213.1883463845048,346424.7027603067,222089.65854712288,349.10944,168.3563911265144,360605.5435986376,172773.49123533562,3164.15076,1447.1347480058034,3267832.8353218967,1474109.597066818,1148.9544,505.879392272008,1183818.030800092,512133.3924235769,1845.91886,770.714876862882,1894327.705455837,775069.9934194192,0.37896,100000,0,685198,7158.806444198341,0,0.0,0,0.0,28237,294.3247591783856,0,0.0,32006,330.2024782163529,1672180,0,59975,0,0,6027,0,0,55,0.5746285809808388,0,0.0,1,0.0104477923814697,0,0.0,0.06231,0.1644236858771374,0.3030011234151821,0.01888,0.3277362234773317,0.6722637765226683,24.68562659488431,4.413240683264001,0.3274336283185841,0.2354393908211566,0.2218563490430129,0.2152706318172463,11.012513309573247,5.5642640379657,20.133040277002586,12397.391354965206,55.271507986840966,13.519299238790712,18.203295836359136,12.100746471383545,11.44816644030756,0.5610207861699938,0.7674825174825175,0.6957888120678818,0.5723562152133581,0.1185468451242829,0.745425616547335,0.9280397022332506,0.844059405940594,0.74609375,0.1597938144329896,0.4966685174902832,0.680161943319838,0.645324347093513,0.5182481751824818,0.1091549295774647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0045943670828304,0.0069648205492664,0.0094926416781852,0.0119223218009623,0.014075326421282,0.0161433422735292,0.0184500714723299,0.0204982977722797,0.0225111327225264,0.0246222604916251,0.0266934970534485,0.0287524166015384,0.0307243869027387,0.0327513620604259,0.0347194228244803,0.0367482604373757,0.0386131629180844,0.0404294459399066,0.042634528447324,0.0573376772549756,0.0706647973382996,0.0835955197583689,0.0960620650505645,0.1083542382528406,0.1240395286159699,0.1371630288446249,0.1489843666914814,0.1599842011998548,0.1709611408123252,0.1841360383145886,0.1966562489861686,0.2082305510578877,0.2197802197802197,0.2305038563800567,0.2412355861184508,0.25091905621282,0.2588880399119062,0.2671533343157369,0.2748856358645928,0.2823155583800335,0.2883946293053123,0.2951284322409211,0.3016100863657025,0.3070721032020271,0.3127098734301775,0.3178490217146855,0.3223941657773034,0.3268022037712423,0.3320758698921043,0.331754001049897,0.3300878618448233,0.3306695981847138,0.3294857886743328,0.3292109414531059,0.3279646587823846,0.3271124359807823,0.3273645093396474,0.3282169746748802,0.3282599753187988,0.3293078553078178,0.3297203212152379,0.3302193083513123,0.331813814216442,0.3331088394467829,0.3350007816163827,0.3350325037944958,0.3373794847479058,0.3386226594731831,0.3422577422577422,0.346123727486296,0.346182917611489,0.3503992787223081,0.3536168891648556,0.355417661097852,0.360999878655503,0.3609034267912772,0.355601233299075,0.3636615044247787,0.3744745892243026,0.0,2.409245023752704,54.79783123928912,192.1892945199961,263.3411309888619,fqhc7_80Compliance_implementation_low_initial_treat_cost,0 -100000,95619,44224,418.4314832826112,6198,63.711187107164896,4821,49.92731570085444,1922,19.776404271117663,77.26635035352784,79.70475337822938,63.26822878755484,65.07228004853343,77.02131629919717,79.45960934714658,63.17596842436934,64.98265618737055,0.2450340543306737,245.14403108280192,0.0922603631855025,89.62386116287746,150.69824,105.57221776415186,157602.8195233165,110409.24686950487,336.0496,216.63518132983225,350967.86203578784,226082.20262691745,350.27404,168.9614407424707,363577.3224986666,174644.56850438868,3170.25779,1457.1880316143272,3283495.4036331694,1491937.4931910262,1123.85294,503.4574343479491,1164683.305619176,515872.3878823414,1880.8828,807.4529121759945,1936402.116734122,816279.4444755135,0.38052,100000,0,684992,7163.764523787114,0,0.0,0,0.0,28600,298.601742331545,0,0.0,32045,332.38163963229067,1662305,0,59680,0,0,6002,0,0,53,0.554283144563319,0,0.0,0,0.0,0,0.0,0.06198,0.162882371491643,0.3101000322684737,0.01922,0.3202152190622598,0.6797847809377402,24.619870171562813,4.334445252270346,0.3250362995229205,0.2329392242273387,0.2163451566065131,0.2256793196432275,10.955203211238224,5.658696710309063,20.761347612560368,12382.914778514334,54.984920166519046,13.550442427133172,17.69881017865519,11.597120095419417,12.138547465311268,0.5619166148102054,0.7943009795191451,0.6943203573707721,0.5810162991371045,0.1130514705882353,0.7095015576323987,0.928395061728395,0.8375,0.703862660944206,0.1463414634146341,0.5083404014701725,0.7186629526462396,0.6452442159383034,0.5456790123456791,0.1033254156769596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0046867867106264,0.0068144657601023,0.0090694647795672,0.0114309562101748,0.0135042856997258,0.015625,0.0178412678949143,0.0202690950017905,0.0224103126376948,0.0245704784777387,0.0266230829324452,0.0287211373158604,0.0306945189095558,0.0328874657852605,0.0349533851391202,0.0369614112915764,0.0392804470202114,0.0411128573956305,0.043220692532332,0.0575332726949576,0.0714510280648068,0.0851698565095905,0.0982651653201596,0.1104386493023648,0.1262274764038516,0.1390931893546467,0.150624,0.1619764292824953,0.1723222728444941,0.1850281571622758,0.1972939569374878,0.2088189799786497,0.2197324158183671,0.2299348523430007,0.239527401819392,0.2484330484330484,0.2569713487701595,0.2655083464960625,0.2738275513950073,0.2812029378373995,0.2876335269865067,0.2945748373872967,0.3001343473358444,0.3061787846728199,0.3109692869840015,0.3161351784997994,0.3213502905494954,0.3266435896438619,0.3303439349112426,0.3290566037735849,0.3288765267201851,0.3282913007316351,0.3286199667461866,0.3288859140264762,0.3272618646404608,0.3262574257425742,0.3263574939584737,0.3258455800585105,0.3268129429450927,0.32783772605933,0.3297178322856973,0.3303837908276935,0.3321007574738918,0.3325612816058676,0.3338212997333612,0.3346680776821211,0.3380192702574632,0.3407120197391611,0.3415169660678642,0.3448953477744265,0.3490736797274276,0.3516992137966016,0.3559927084915692,0.3562681125549219,0.3600706713780919,0.3661501063506533,0.3633808472194338,0.3720359771054783,0.3680060082613594,0.0,1.906840584943572,56.71393964267299,187.73073213403225,259.3810486036535,fqhc7_80Compliance_implementation_low_initial_treat_cost,1 -100000,95717,43856,415.5061274381772,6348,65.275760836633,4954,51.286605305222686,1993,20.55016350282604,77.34534288058313,79.7139156580278,63.32656324425341,65.0746344141712,77.09983596342114,79.46616226266673,63.23817175357417,64.98705385349302,0.2455069171619897,247.7533953610731,0.0883914906792355,87.58056067817677,150.25076,105.2043219198466,156973.95446994787,109911.8462967358,331.4765,212.8848347463688,345824.0646907028,221925.8384052664,343.6145,165.51812396744677,355763.60521119554,170391.00002919868,3269.59709,1478.1390199834711,3388649.6233688896,1517030.0886817095,1185.1374,518.8789514838176,1227017.3114493769,530951.3212268834,1955.09178,807.8372385642336,2018308.6599036744,823534.854217756,0.3803,100000,0,682958,7135.179748633994,0,0.0,0,0.0,28108,293.16631319410345,0,0.0,31598,326.9325198240647,1673572,0,60041,0,0,5983,0,0,57,0.5955055005902817,0,0.0,0,0.0,0,0.0,0.06348,0.1669208519589797,0.3139571518588532,0.01993,0.33003003003003,0.6699699699699699,24.581682667951625,4.402267035571439,0.326806620912394,0.2250706499798143,0.223253936213161,0.2248687928946306,11.216481398863554,5.8119919387284815,21.184588141831565,12404.46281254263,56.11258991164684,13.224969109323265,18.416830008539804,12.30766325630478,12.163127537478994,0.5641905530884134,0.7982062780269058,0.7059913526868438,0.5867992766726944,0.1014362657091561,0.7447956823438705,0.922077922077922,0.8568019093078759,0.8071428571428572,0.1220657276995305,0.5001367240907848,0.7328767123287672,0.6533333333333333,0.5121065375302664,0.0965593784683684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974238496435,0.0041148926681937,0.0063106205105312,0.0084704448507007,0.0107791494640932,0.01264521121168,0.0149128976687766,0.0170574604697692,0.0193609060985831,0.0214144598785968,0.0235376130235991,0.025569932224276,0.0276686346711649,0.0294944833056897,0.0316095809124776,0.0334708138224744,0.0356048053024026,0.0378157364936385,0.0396032397924702,0.0417765180329918,0.0563515602155478,0.0702960660575806,0.083728543249255,0.0967249850083637,0.1094768828209078,0.1254682440583268,0.1394482363306336,0.1509042111317017,0.1627822481539661,0.1732872892625798,0.1871027513843104,0.1990711169331702,0.2116372182087214,0.222606563478337,0.2333120443984407,0.243280389266357,0.2524271844660194,0.2615019460505298,0.269453806784008,0.276874978527502,0.2835910662857539,0.2902867563681423,0.29662320452448,0.3024905063670232,0.307936122411804,0.3133471339149293,0.3183154996558413,0.3223169910132069,0.3265359002927992,0.3309426635495502,0.3300117312333976,0.3288452792745614,0.3285260258492831,0.3271584374954738,0.3266081000595592,0.3257654783088912,0.3247411254314576,0.3265178864456843,0.3275368248772504,0.32887724364116,0.3284090059091929,0.3298359103818239,0.3303623734203699,0.3307733643813533,0.3305514014183028,0.330764609074998,0.3325366339450846,0.3356035402674032,0.3368505924419827,0.3393486089675096,0.342752796165259,0.3461927313361358,0.3476697988270165,0.3485416826150195,0.3528079282680509,0.3588249286393911,0.3624655013799448,0.3673965936739659,0.3692647871752349,0.3703558858036762,0.0,1.7807835325701402,57.61141120262053,185.91423560766395,274.6652080320736,fqhc7_80Compliance_implementation_low_initial_treat_cost,2 -100000,95652,43913,414.7534813699661,6279,64.27466231756785,4927,50.81963785388701,1973,20.166854848827,77.2498286400838,79.64879502762155,63.26585613190741,65.03912042897431,77.00102379059591,79.40426682273893,63.17354714211564,64.95186491192953,0.2488048494878967,244.52820488261293,0.0923089897917748,87.25551704478107,149.64378,104.83945803263632,156446.05444737172,109605.08722518748,333.05053,214.09081404630825,347534.56279011414,223167.36089816017,344.57305,166.62016354108923,356129.09296198725,171008.28698969795,3223.98313,1463.677829658981,3328559.873290679,1488303.6561435447,1171.6554,513.454465212155,1206578.3987789068,518457.9885545029,1934.97008,807.1307047519055,1980415.4016643667,805199.0983527547,0.3805,100000,0,680199,7111.184293062351,0,0.0,0,0.0,28350,295.6969012670932,0,0.0,31675,327.15468573579227,1666910,0,59885,0,0,5801,0,0,60,0.6063647388449798,0,0.0,0,0.0,0,0.0,0.06279,0.1650197109067017,0.3142220098741838,0.01973,0.320127504553734,0.6798724954462659,24.656287033189088,4.405021415482305,0.3145930586563832,0.236046275624112,0.2238684798051552,0.2254921859143495,11.128891534647416,5.66048560397869,20.991258457254027,12466.67358247616,55.76087397831032,13.853437044816062,17.585137597476923,12.213657947500788,12.108641388516547,0.5553074893444286,0.7781599312123818,0.6929032258064516,0.57116953762466,0.1143114311431143,0.7168347556245152,0.9199029126213591,0.8423645320197044,0.728,0.0950226244343891,0.4980758658603628,0.7003994673768309,0.6398601398601399,0.5252051582649473,0.1191011235955056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00239069654362,0.0047359720912308,0.0069629825113427,0.0090225563909774,0.0113212153268708,0.0135253498462102,0.015948117632663,0.018073211824169,0.0204131724278993,0.0223676529326819,0.0245761234139886,0.0266974833076528,0.0288521891238359,0.0311472537439576,0.0333367747264092,0.0356500155134967,0.0377174712715139,0.0396698504983388,0.041386198358285,0.0433032688598091,0.0576772373439214,0.0716410095297937,0.0855400568867617,0.0983899821109123,0.1112506596306068,0.1268945808636748,0.1396089759247262,0.15167210179679,0.1628066196685886,0.1733250260497792,0.1863380843970177,0.1987333810484308,0.2104832729969032,0.2207330715742832,0.2307242345981502,0.2408,0.251063496328139,0.2603928116151303,0.2685175699211146,0.2765214193785622,0.2846440642531098,0.2913087922546382,0.2984173038277227,0.3041798553358447,0.3091217246046358,0.3143602939357201,0.320125091055236,0.3240100686147988,0.3283504484596386,0.3331125740095633,0.3321574828690751,0.3317226716735235,0.3305290840709216,0.3298518937580689,0.3293670319838962,0.3283034508166523,0.3263693903773854,0.3265201923710389,0.327910445202544,0.3282152466367713,0.3290786550698445,0.3306070591972049,0.3310847728323456,0.3316780514111091,0.3325758491478303,0.3324110568766151,0.3334851287889568,0.3362917895000941,0.3395301613976123,0.3416531090036109,0.3448792445977846,0.3454872120059184,0.3478370063414328,0.3521319449722581,0.3561039692221075,0.3565946392726414,0.3533547302460645,0.3512026090501426,0.3510462555066079,0.3534319302237391,0.0,2.7297823922004496,56.20376362870106,183.9966025598196,274.07866355979087,fqhc7_80Compliance_implementation_low_initial_treat_cost,3 -100000,95744,44025,415.744067513369,6312,64.66201537433155,4998,51.595922459893046,1979,20.283255347593585,77.32698317968122,79.68687077850396,63.31555014592704,65.06118317813089,77.08536676273306,79.44639850855783,63.226735201523695,64.97537423686003,0.2416164169481618,240.47226994612456,0.0888149444033459,85.80894127085514,150.37418,105.33651311223912,157057.9044117647,110018.2892702741,332.26352,213.6074357614921,346412.3913770054,222484.5185734856,348.83097,168.76180758129445,360430.4186163101,173243.60415086328,3268.54327,1505.4383550143104,3372478.484291444,1531679.4795081746,1210.36966,537.3340955587636,1244218.7917780748,541887.0455867784,1938.90216,808.7277431818411,1987595.6509024063,812794.9559213656,0.38175,100000,0,683519,7138.9956550802135,0,0.0,0,0.0,28246,294.3578709893048,0,0.0,32148,331.9163602941176,1670437,0,59939,0,0,6107,0,0,56,0.5744485294117647,0,0.0,1,0.0104445187165775,0,0.0,0.06312,0.1653438113948919,0.3135297845373891,0.01979,0.3407093058502576,0.6592906941497424,24.20783046602395,4.389581337158441,0.3291316526610644,0.2396958783513405,0.2090836334533813,0.2220888355342136,11.43565110840018,6.002471459078024,21.09346439963274,12448.500046547497,57.14333918659796,14.476718463782566,18.718012107738637,11.655554027164367,12.293054587912412,0.5672268907563025,0.7879799666110183,0.6808510638297872,0.5961722488038278,0.1333333333333333,0.7489239598278336,0.9204301075268816,0.8648068669527897,0.7563025210084033,0.1466666666666666,0.4969478357380688,0.703956343792633,0.6081424936386769,0.5489467162329615,0.1299435028248587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021072893977002,0.0043398024781488,0.0067697866552991,0.0091433680104031,0.0114213068904144,0.013583829743903,0.0156116164294163,0.0180879080497315,0.0202976166142022,0.0223027399924258,0.0244847341935616,0.0268844246897358,0.0291206249678778,0.0312100992627373,0.0332157372449505,0.0350902571838932,0.037167023842801,0.0392705999502116,0.0411677891410991,0.0432640220018334,0.0577077657031307,0.0714509885971335,0.0847958734352393,0.0979732570851904,0.1106883103193844,0.1258894304473319,0.1392270818309082,0.1510928467246537,0.1625018704174771,0.1727180037563724,0.1851592391011478,0.1980008230630942,0.2091644087530876,0.2197045951859956,0.2293356816555671,0.2405182541617715,0.2499748696011526,0.2592930419017376,0.2687118097358199,0.2769190223556508,0.2844904432790377,0.2915739678227676,0.2974571049388567,0.3041448663178611,0.3092246883551231,0.3142818371349971,0.318963356559226,0.3238722498949004,0.3286482982171799,0.3326158437545393,0.3322378168691576,0.3315346071251583,0.3302286914004706,0.3297378580413817,0.3289563691520685,0.3275872645849947,0.3266810385822528,0.3278731619157151,0.328591457784769,0.3295576168391009,0.3310925943263739,0.332160575573696,0.3337115243197815,0.3343556222157552,0.3343847820852396,0.3343862580274631,0.3341884727210535,0.3362453648419332,0.3386848008973639,0.3415155594267163,0.3424135113048215,0.3434685877741286,0.3448384060244744,0.3457164518574678,0.3464419475655431,0.3475035327366934,0.3507462686567164,0.3571139854486661,0.3641890024868748,0.3601547388781431,0.0,2.273187552843841,61.48077595499212,188.35725773267157,266.3335611493427,fqhc7_80Compliance_implementation_low_initial_treat_cost,4 -100000,95757,43951,415.2594588385183,6362,65.19627807888718,5006,51.662019486826026,1944,19.88366385747256,77.39144353273707,79.73272650768776,63.36142006586866,65.08817946221293,77.15242835281704,79.49462661374874,63.27324643137608,65.0028216373814,0.239015179920031,238.0998939390224,0.0881736344925769,85.35782483153298,151.07092,105.7617124387124,157763.73528828178,110446.9857855703,337.37387,216.48853783671865,351686.75919253944,225455.3910023442,346.02236,167.09794136719697,358009.06461146445,171835.0964289397,3309.10354,1495.537582262279,3417779.3790532285,1524892.4972739224,1188.33522,521.4788085371428,1225606.2846580409,530241.8131847739,1912.7947,799.3118126351139,1959446.056162996,803427.7956069125,0.37898,100000,0,686686,7171.078876740081,0,0.0,0,0.0,28705,299.1008490240922,0,0.0,31765,328.3937466712616,1668020,0,59842,0,0,5857,0,0,59,0.6161429451632778,0,0.0,1,0.0104431007654792,0,0.0,0.06362,0.1678716554963322,0.3055642879597611,0.01944,0.3276224827171626,0.6723775172828373,24.76008730498948,4.458369251063721,0.3232121454254894,0.2263284059129045,0.2243308030363563,0.2261286456252497,11.07955322458458,5.541797887337522,20.696980479044843,12431.818066279198,56.50237137249326,13.543904992589054,18.30403402167338,12.3129882082674,12.341444149963412,0.5547343188174191,0.7740511915269197,0.6897404202719407,0.572573463935886,0.1245583038869257,0.7320463320463321,0.9309462915601024,0.8486997635933806,0.7258687258687259,0.1666666666666666,0.4928590676367556,0.6913746630727763,0.6334728033472803,0.5266203703703703,0.1142857142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00247043576867,0.0051075731933479,0.0075688399180211,0.0095977087374696,0.0118453294831775,0.0140460874521618,0.0161300183411453,0.0184157365274348,0.0206866961558499,0.0227449455676516,0.0249385245901639,0.0271359980302035,0.0291304035100338,0.0312464621306464,0.0330591291439881,0.034966118502603,0.0370401034928848,0.0389433946609694,0.040903090340218,0.0428238088293506,0.0575538066509404,0.0714517394716191,0.0848867582112098,0.0979672531101132,0.1100016869807262,0.1256304786879699,0.1377002937464872,0.1490330404442269,0.1605390455647271,0.1708862116275081,0.1836607287013616,0.1960332652023921,0.2078121094216996,0.21854210589559,0.2283474953556628,0.2391400562083692,0.2492587556011324,0.2585449684934122,0.2672877917190883,0.2753452398659085,0.2826895961907403,0.2892906815020862,0.2955652790917691,0.3026869032930437,0.309054067171423,0.3139639362422303,0.3184994437291398,0.3239316565525489,0.3282896269641979,0.3331663524790065,0.3326297675544143,0.332014507088691,0.3305538760071431,0.3301284361350958,0.3296328684284634,0.3280267415593138,0.3269088096478351,0.3269073413412758,0.3281611936231094,0.3288969658096816,0.3311730880893068,0.3324572670684715,0.3338502158333682,0.3347512649442529,0.3364030858244937,0.3382983171318072,0.3387285213575357,0.3406794068570349,0.3437290999331198,0.3445010345376412,0.3472717301891966,0.3513989747970952,0.353880266075388,0.354653828519028,0.358338033464937,0.3594540534180492,0.365346981785338,0.3697394789579158,0.3689346706424505,0.3668303740083113,0.0,2.2276307837874443,56.80220498702793,190.25134490291887,275.5976778767887,fqhc7_80Compliance_implementation_low_initial_treat_cost,5 -100000,95726,44126,416.2401019576709,6346,65.06069406430855,5025,51.88767941833984,2042,20.94519775191693,77.37264048070351,79.73245490189917,63.34029949113111,65.08199663275717,77.11838054690574,79.47796399978998,63.24722156846497,64.99126623800028,0.2542599337977691,254.4909021091968,0.09307792266614,90.73039475688915,151.06168,105.80094183972813,157806.32221131146,110524.77053227766,336.50565,215.66017945126333,350897.3215218436,224663.1517732304,349.58601,169.1310605063708,361228.725738044,173642.05160913378,3312.17541,1507.7884260741987,3422101.67561582,1537587.2923635351,1210.84791,529.3609751301408,1249752.6272903914,538308.5151764728,1997.80272,831.8680812316687,2050818.5237030692,838800.4736774641,0.38118,100000,0,686644,7173.014645968702,0,0.0,0,0.0,28578,297.88145331466893,0,0.0,32141,331.80118254183816,1665512,0,59846,0,0,5873,0,0,55,0.5745565468106888,0,0.0,0,0.0,0,0.0,0.06346,0.1664830263917309,0.3217774976363063,0.02042,0.3331334332833583,0.6668665667166417,24.64336201924476,4.389416574458729,0.3287562189054726,0.2256716417910447,0.2157213930348258,0.2298507462686567,11.244514202071551,5.891748562755209,21.64904385458233,12473.9018289307,56.79480145250471,13.518019478186297,18.58399259062709,12.15666452474936,12.536124858941957,0.5456716417910448,0.7777777777777778,0.6713075060532687,0.5811808118081181,0.1047619047619047,0.7255496588324488,0.9166666666666666,0.8561484918793504,0.7180451127819549,0.1504424778761062,0.481651376146789,0.7032520325203252,0.6060606060606061,0.5366748166259169,0.0936490850376749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026227848101265,0.0047226698286258,0.0070097487243474,0.0091810204744881,0.0113676804034611,0.0137530157889914,0.0161462952203296,0.0183930102478259,0.0205258208283926,0.0227865982863986,0.0252937437201386,0.0274740505744294,0.0296960473820589,0.0316477857878475,0.0336118848653667,0.035604291118047,0.0377674938658881,0.0399730332417155,0.0418316548706596,0.0438373570520965,0.0581583536069664,0.0721677531417091,0.0861983999664475,0.0983236113300751,0.1110736309492436,0.1271314551509064,0.1396616641035159,0.1516286592957551,0.1623044476480324,0.1728682336793343,0.1856362872742545,0.1980266574346546,0.2093111773277943,0.220505249343832,0.230900409276944,0.2409266152618984,0.2511692805715242,0.2600319762205008,0.2682306163021868,0.2765098515952932,0.2841793256761764,0.2917144663217287,0.2984784566526046,0.3040937076197448,0.3097360197468416,0.3145235892691952,0.3196343601302279,0.3242692997747776,0.3286894372944558,0.3337554913523568,0.3331404035373453,0.3322373399001224,0.3303229260595131,0.3298679891846561,0.3288810221475212,0.3270333241362396,0.3255176999556709,0.3261869558074585,0.3263488380029348,0.3270615066638158,0.3277340757487995,0.3285852197726422,0.3300548277738249,0.3305515887183149,0.3325650629021415,0.3343563867141779,0.3342710198050749,0.3384080443567334,0.3405006642892105,0.343991483993061,0.3467295654540506,0.34764631043257,0.3522540724838995,0.3534423735260555,0.3553912392362411,0.3601845280340667,0.3628453671195237,0.3642785065590312,0.3574374484465218,0.3608247422680412,0.0,2.3616289715991554,57.81479261250581,186.97447344648933,279.2378415431463,fqhc7_80Compliance_implementation_low_initial_treat_cost,6 -100000,95748,43931,416.2489033713498,6242,64.06400133684254,4837,49.99582236704683,1961,20.157078999039143,77.33281654085012,79.69906522522004,63.319784280511655,65.07105055237109,77.08944226071574,79.45577678409644,63.229947406516175,64.98381239104744,0.2433742801343754,243.28844112359604,0.0898368739954804,87.23816132365414,150.711,105.61619014829589,157403.81000125327,110306.419087914,333.00039,214.44169724467497,347268.80979237164,223445.4297115824,344.38785,166.791961459261,356636.1908342733,171834.2229848942,3196.03659,1455.2790346834288,3306612.440990934,1488582.6246065374,1179.8109,513.9697181435101,1220545.0975477295,525135.0818226074,1926.47322,802.1667255480115,1981950.8710364704,810837.1502197521,0.37845,100000,0,685050,7154.718636420604,0,0.0,0,0.0,28364,295.6719722605172,0,0.0,31557,326.49245937251953,1667486,0,59827,0,0,5951,0,0,52,0.5430922839119354,0,0.0,1,0.0104440823829218,0,0.0,0.06242,0.1649359228431761,0.3141621275232297,0.01961,0.3294585500152951,0.6705414499847048,24.518592765803987,4.402849491279508,0.3229274343601406,0.2222451933016332,0.2207980152987388,0.2340293570394873,11.061284509121146,5.697880075998395,20.738159935773574,12315.099733103165,54.60546237972005,12.797069166340036,17.605451846149514,11.85190480748923,12.35103655974126,0.5550961339673351,0.7748837209302326,0.704225352112676,0.5777153558052435,0.1192579505300353,0.7259083728278041,0.9194805194805196,0.865,0.7459016393442623,0.1561181434599156,0.4945393447213665,0.6942028985507246,0.648881239242685,0.5279126213592233,0.1094972067039106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020670996767623,0.004117939407463,0.006406741801198,0.0085077403157113,0.0109062792495828,0.0130072522816166,0.0152153295464975,0.0173353751914241,0.0197848714750209,0.021851097162634,0.0235805532202833,0.025618909733132,0.0277100877057692,0.0295883582735146,0.0315820969439342,0.0334894105243573,0.0356059115341197,0.0377654164677556,0.0396793212090963,0.041650605798581,0.0560212976979694,0.0698800979304861,0.0829068791946308,0.0954478553406223,0.107988742608384,0.1232526171090197,0.1356164092991685,0.1473565445081906,0.1578919259567832,0.1683539959675689,0.181224023946422,0.193560601962545,0.2049542202213957,0.2161497337895899,0.2255158607945796,0.2361806263011029,0.2454801124949779,0.2554479963980189,0.2645142247349181,0.2730500515404879,0.2810853987474387,0.2884489298927551,0.2947483147930957,0.3002962305561219,0.3065506217559896,0.31242983159583,0.3180144295806403,0.3240601695130952,0.3287729799059427,0.3332320697397966,0.3330144701032039,0.3318924574276235,0.3307956916483393,0.330369020764648,0.3302132472209408,0.3283524904214559,0.3266275938539522,0.3264421419070921,0.3272652754533966,0.3287253398023617,0.3292941022231379,0.3300897907519481,0.3308962165332886,0.3320220826534945,0.3316725636026668,0.3329852772266889,0.3335713061853904,0.3366227378775459,0.3396737219604809,0.3427502785293649,0.3456412596987677,0.3479209923867327,0.3503686432667465,0.3548019162040909,0.3542252201611392,0.3579881656804733,0.3642595978062157,0.3625884732052578,0.3676227247655819,0.3697896749521988,0.0,1.9881823710769808,55.641149792902446,179.84100690218563,269.4757104758533,fqhc7_80Compliance_implementation_low_initial_treat_cost,7 -100000,95779,43796,414.5793963186085,6360,65.27526910909489,4958,51.18032136480857,1989,20.411572474133163,77.34910350822409,79.67846020695357,63.34642956891118,65.06692395806226,77.09110803251473,79.4208061555607,63.25135748382338,64.97454427639546,0.2579954757093645,257.6540513928762,0.0950720850877999,92.37968166679876,150.80714,105.56815386629012,157453.2413159461,110220.5638671213,333.83069,214.19667259549345,347974.1592624688,223067.87212008177,342.01106,165.2559732072198,352965.0236481901,169403.55145446138,3257.75273,1482.81342349192,3365750.6342726485,1512591.29031385,1176.32271,515.2539792046018,1214942.4926132034,524747.1163233953,1950.71342,820.9561626288487,2003031.4578352247,827905.2537902674,0.37989,100000,0,685487,7156.965514361186,0,0.0,0,0.0,28467,296.60990404994834,0,0.0,31370,323.4529489762892,1670784,0,59999,0,0,5959,0,0,64,0.6682049300994999,0,0.0,2,0.0208814040656093,0,0.0,0.0636,0.1674168838347942,0.3127358490566038,0.01989,0.3364893297264803,0.6635106702735197,24.71546054868488,4.326790430603329,0.3138362242839855,0.235982250907624,0.2230738200887454,0.227107704719645,10.8345118254164,5.417702562461434,21.289356446581035,12378.95446155209,56.22641671371899,13.945112431975865,17.55274005097686,12.36646823733343,12.36209599343283,0.5475998386446148,0.7726495726495727,0.666452442159383,0.5795660036166366,0.1181172291296625,0.706646294881589,0.903846153846154,0.8261964735516373,0.7165354330708661,0.1611570247933884,0.4905453548917511,0.7002652519893899,0.6117342536669542,0.5387323943661971,0.1063348416289592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0045206215347814,0.0067971310020188,0.0088165686483631,0.0110729247163135,0.0130603851948369,0.0151348376444689,0.0172475378884523,0.0193013109360471,0.021382824169753,0.0235114535098143,0.0257565340530112,0.0277372412800855,0.0295709992177528,0.0318689362930581,0.0339609779274301,0.0358439999586097,0.0379917463345845,0.0395985079124281,0.0417261092772125,0.0565736469704243,0.0710176759753163,0.0838680590504948,0.0964026357550471,0.1090058380930301,0.1242087687966945,0.13716387378507,0.1493130874909616,0.1603051806007576,0.1705767665081201,0.1836936752725433,0.1963712249818885,0.2080103499635794,0.2190158556588299,0.2289784916662082,0.2397470401258154,0.2490625418508102,0.2580786615394994,0.267183280764256,0.2748663224063112,0.2828883438989403,0.2898930568881192,0.2968548396642952,0.3030179543111921,0.3098040644777279,0.3149086783331483,0.3194209649748926,0.3241691073475105,0.3283796926667963,0.3320425048240861,0.3314499163924699,0.3306463836412991,0.3303362552495842,0.3294498568991934,0.3290249736298673,0.3274291575450467,0.3257587745672057,0.3259563290100147,0.3264675240388721,0.3274718990689612,0.3281906118776245,0.3289950674511202,0.3297867875430202,0.3307756164322092,0.3322296072507553,0.3334207421004326,0.3349786208281918,0.3373314294780263,0.3402379434884215,0.3435784411941495,0.3465669175693042,0.3472890599935835,0.3498499457250494,0.3523391812865497,0.3570066730219256,0.3591106814886418,0.3544106167056987,0.3605442176870748,0.362541993281075,0.3716673298846001,0.0,2.2858845220311923,57.39764270466917,184.8929239397435,276.26876117999905,fqhc7_80Compliance_implementation_low_initial_treat_cost,8 -100000,95660,43888,415.0742212000836,6252,64.14384277650011,4872,50.282249634120845,1932,19.778381768764376,77.31532774038504,79.70679234496014,63.31028192710126,65.07633590079429,77.07023894014274,79.4641240212528,63.21951533732726,64.98911167202718,0.2450888002422999,242.6683237073348,0.0907665897739988,87.22422876711278,151.10326,105.8112022627842,157958.6661091365,110611.75231317604,334.57839,214.77816970858376,349076.0192347899,223840.58932147815,346.50996,167.51113066134351,357792.11791762494,171743.61002246954,3183.55751,1460.066199639124,3289876.3432991845,1488192.5493119778,1123.54674,500.5590256311757,1159769.3602341623,508542.991891241,1889.3508,801.331418284297,1937457.7252770227,806155.1860275771,0.37911,100000,0,686833,7179.939368597115,0,0.0,0,0.0,28499,297.2297721095547,0,0.0,31820,328.35040769391594,1665581,0,59786,0,0,5913,0,0,50,0.5122308174785699,0,0.0,3,0.0313610704578716,0,0.0,0.06252,0.1649125583603703,0.3090211132437619,0.01932,0.3190774400488773,0.6809225599511226,24.70300925226165,4.362308219696382,0.3183497536945813,0.2411740558292282,0.223727422003284,0.2167487684729064,11.458653675382967,6.004390680147526,20.769703230633723,12376.955200401057,55.39421039678134,13.958528003679978,17.63450592657776,12.081230496361792,11.719945970161804,0.5574712643678161,0.7940425531914893,0.6892327530625403,0.5596330275229358,0.0984848484848484,0.7170245398773006,0.9312039312039312,0.8557457212713936,0.6964980544747081,0.1168831168831168,0.4991591928251121,0.7213541666666666,0.6295971978984238,0.517406962785114,0.0933333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0049879356840163,0.007438754592137,0.0096620811574177,0.0119120279947916,0.0141278329513623,0.0162580066092774,0.0183238853991113,0.0204530347190264,0.0223853849856123,0.0246551458899543,0.0266461222393425,0.0287948150815287,0.0306549336410848,0.0328034682080924,0.034863998345227,0.0370312807601048,0.0392116161039554,0.0410559930099753,0.0430029078553784,0.057443762994849,0.0709678770364786,0.0841414777497901,0.0964707367889387,0.1083579569438581,0.1240473367770344,0.137167671791387,0.1491457907293797,0.1608490263557275,0.1717183642803477,0.1846155504300403,0.1968098930133841,0.2079858918813002,0.2187421342350919,0.2283716063659893,0.2388975155279503,0.2486122435303184,0.2583531212370159,0.2664706349837081,0.2751770936017056,0.2830042272279808,0.2897546356995692,0.2964392710393255,0.3018707176884217,0.3073389478289401,0.3117379458286587,0.3168663986876542,0.322041662955092,0.3257514952230536,0.3309131232590989,0.3303696519021446,0.32961524690848,0.3293330516233537,0.3279233929294682,0.3270140066018378,0.325191915786893,0.3238446558903155,0.3241980691373404,0.3245673913785453,0.3256328380041743,0.3262817275498943,0.3277448657187993,0.3296016771488469,0.3299093655589123,0.3321860935281234,0.3335158817086528,0.3355537766596146,0.3385652352773646,0.3411427965652496,0.3445075606048484,0.3466898954703832,0.3482324041439709,0.3511455226248651,0.3548013883532587,0.3543074726320799,0.3549197988987311,0.3570774862721171,0.3632367632367632,0.3634361233480176,0.3603500761035008,0.0,2.4061727845743106,57.04851307827242,184.8545883711115,265.40467195874203,fqhc7_80Compliance_implementation_low_initial_treat_cost,9 -100000,95625,43766,414.3581699346405,6159,63.26797385620915,4739,48.9516339869281,1878,19.21045751633987,77.3146043072854,79.73369043505377,63.296484254502126,65.08284211092464,77.08179223623942,79.50393376699266,63.20978114620413,65.00015501838716,0.2328120710459842,229.75666806111408,0.0867031082979963,82.68709253748341,151.78372,106.29077767283758,158727.61307189544,111153.32798617268,329.60268,212.07733445443824,344059.5450980392,221158.6284099014,342.41812,165.28282337882965,354820.1725490196,170273.17527267017,3098.33303,1420.9362015711858,3202514.6457516337,1448463.6044711692,1088.32597,481.2932529808906,1124247.8535947711,489481.5656706612,1841.1273,776.8055394373555,1885742.6196078432,778513.1888278709,0.37898,100000,0,689926,7214.891503267974,0,0.0,0,0.0,28029,292.4549019607843,0,0.0,31455,325.5947712418301,1664696,0,59627,0,0,6024,0,0,50,0.5228758169934641,0,0.0,1,0.0104575163398692,0,0.0,0.06159,0.1625151723046071,0.3049196298100341,0.01878,0.3328658251519401,0.6671341748480598,24.79429511449466,4.42237836767221,0.3203207427727368,0.2276851656467609,0.2346486600548639,0.2173454315256383,11.21884477280159,5.646490174366568,20.133718876058158,12371.900164387012,54.19527349096693,13.106024369278074,17.250972895060407,12.409633371821489,11.428642854806942,0.5496940282760076,0.7868396663577386,0.6785243741765481,0.5485611510791367,0.1126213592233009,0.7265745007680492,0.9317073170731708,0.8713592233009708,0.6966292134831461,0.0892018779342723,0.4826883910386965,0.6980568011958147,0.6066907775768535,0.5017751479289941,0.1187270501835985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987374991134,0.0045532445670361,0.0068217809721037,0.0090636589950718,0.0112508138020833,0.0135567325320839,0.0158505115206903,0.0177239758913065,0.0196786368145973,0.0216485238246408,0.0235797290228617,0.0257116149112985,0.028095840663354,0.0300666659797426,0.0321957966885503,0.0342146350542326,0.0363999958553947,0.0385386060901795,0.0405780815931579,0.0424801835627868,0.0573214453700703,0.0712968782736224,0.084428062880005,0.0972346495152478,0.1095453729799339,0.1253401666684314,0.1382138001359619,0.1506393861892583,0.1619869717292943,0.1718459638004189,0.1844504137134966,0.1975592309192985,0.2092131354731864,0.2197975548836598,0.2300807900450793,0.2405504383531239,0.2503743435020673,0.2593936252915263,0.2672748755936285,0.2751272994174045,0.282305403434023,0.2896519450131617,0.2958443310805213,0.3018028817338352,0.3073542089095567,0.3122389898367724,0.3158842733310818,0.3202914399064137,0.3252073547869518,0.3298422413338258,0.3297836535225299,0.3286484405082788,0.3278529163144548,0.3272561663244946,0.3268529949872822,0.3256002943972523,0.3234160653397827,0.3245053823616552,0.3256101116465725,0.3260208281143757,0.3273146153702073,0.3293204342600437,0.3297437181734702,0.3308951429463449,0.3315309711223294,0.3324357214986665,0.3336921115989236,0.3383233532934132,0.3401289423244468,0.3441504672528686,0.3466624543033804,0.3488751909804541,0.3506011204129162,0.3541413834951456,0.3556971514242878,0.3523513965146813,0.3493788819875776,0.3574051407588739,0.3549890350877193,0.359907120743034,0.0,2.33065057993193,57.33178441039138,181.269866261865,252.41043372025004,fqhc7_80Compliance_implementation_low_initial_treat_cost,10 -100000,95630,43787,413.7613719544077,6317,64.78092648750392,4988,51.41691937676462,2042,20.851197323015796,77.29129418892526,79.69267999641305,63.29829466637945,65.07044954124089,77.03557634210206,79.44202826277122,63.20191537493416,64.97997751322819,0.2557178468232024,250.65173364183124,0.0963792914452881,90.47202801269805,150.88898,105.74727333114129,157784.14723413155,110579.6019357328,334.11837,214.0133615208088,348654.1775593433,223060.7356695689,340.77473,163.97176006423268,352471.630241556,168440.11838554652,3275.65555,1501.5627261102,3378296.59102792,1523133.123612047,1175.55373,521.8265125343158,1210803.2521175365,527202.690091306,2009.79198,854.7282540147579,2053681.1042559864,851781.5734963923,0.38019,100000,0,685859,7172.006692460525,0,0.0,0,0.0,28407,296.2773188330022,0,0.0,31332,323.6641221374046,1667555,0,59814,0,0,5934,0,0,62,0.6483321133535501,0,0.0,0,0.0,0,0.0,0.06317,0.1661537652226518,0.3232547095140098,0.02042,0.327297419646899,0.6727025803531009,24.629108776583717,4.357145158201585,0.3227746591820369,0.2303528468323977,0.2141138732959102,0.2327586206896551,10.962501311708204,5.616089187254337,21.98236069222976,12425.019782587391,56.75731821387326,13.73008960054597,18.0202243508766,11.95883271316949,13.04817154928121,0.5483159582999199,0.7885117493472585,0.6801242236024845,0.5608614232209738,0.1162790697674418,0.6979560938682816,0.9250645994832042,0.8393285371702638,0.7142857142857143,0.1433823529411764,0.494409599127352,0.7191601049868767,0.6244761106454317,0.5151883353584447,0.107986501687289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297509192386,0.0044915340160194,0.006820742364727,0.0089523422416421,0.0113339234298853,0.0134949330345775,0.0158757672777698,0.0182571936201931,0.0202130705054801,0.0224336002293531,0.0245508245139059,0.0269301480028347,0.0290937522504449,0.0313469286811001,0.033407664354146,0.0355185039614406,0.0374646340073167,0.0392079495779123,0.0412786281385596,0.0431962965666086,0.0573775631780272,0.0711329946047876,0.0846014093233777,0.0973239851776991,0.109589908692669,0.1251548159674807,0.1377337056344159,0.1507478268280211,0.1625037423549035,0.1725041338286769,0.185215937887529,0.1979423868312757,0.2090881379550601,0.2191219789967038,0.2299848984226016,0.2412729753413717,0.2503603875423246,0.2584927542759342,0.267299525355983,0.2759438828141118,0.2829389153892465,0.2895325024866889,0.2961558964638986,0.30157187425006,0.3080554879532733,0.3135819236942832,0.3192308174444987,0.3241772248706248,0.3277374156720291,0.3316424259237242,0.3311222563770695,0.331936537692806,0.3314838345333898,0.3302392261353105,0.3294308652456916,0.3273300038417211,0.3256810821108782,0.3265282583621684,0.3273354145939826,0.3286964004015488,0.3288194248528278,0.3289518098604134,0.3304783349817967,0.3305126593643383,0.3314393027399239,0.3326200417536534,0.3329254759126995,0.3373259140494828,0.3401267159450897,0.341089286425754,0.34224696541024,0.343014920618064,0.3467400240308607,0.3544644229291532,0.3579297245963913,0.3602215266072718,0.3688307644402927,0.3667288944202447,0.3696443573228787,0.3733590733590733,0.0,2.8899789570882515,57.39610617259054,191.07966764573527,272.25416363940064,fqhc7_80Compliance_implementation_low_initial_treat_cost,11 -100000,95630,44140,418.1637561434696,6305,64.64498588309108,4940,51.06138241137719,1971,20.21332217923246,77.27514686010801,79.68562853327883,63.27600815666828,65.0562104946175,77.03098967264049,79.44323850320157,63.185966328133645,64.96922389245712,0.2441571874675219,242.3900300772601,0.0900418285346376,86.98660216037979,150.23096,105.21221577868192,157095.59761581093,110019.66746065236,332.07043,213.85210757069495,346657.24145142734,223037.53423918743,355.91017,172.09884891896016,368484.15769110114,177122.40867697238,3216.91189,1483.2822590755686,3326618.446094322,1513856.6446511934,1176.8998,527.4992845572592,1211158.7472550457,532292.5968182988,1922.35848,809.7022877888774,1972678.991948133,814173.5314885873,0.38,100000,0,682868,7140.708982536861,0,0.0,0,0.0,28157,293.80947401443063,0,0.0,32649,337.67646136149745,1665150,0,59793,0,0,5931,0,0,60,0.6274181742131131,0,0.0,1,0.0104569695702185,0,0.0,0.06305,0.1659210526315789,0.312609040444092,0.01971,0.328340142230292,0.6716598577697079,24.63363023336758,4.309478410675146,0.3305668016194332,0.2289473684210526,0.2228744939271255,0.2176113360323886,11.498494583084188,6.11387921127996,21.11871843595851,12391.188407272566,56.27424797883703,13.52098358781964,18.429851030614014,12.391685907967076,11.931727452436288,0.569838056680162,0.7931034482758621,0.6907532149418248,0.5967302452316077,0.1237209302325581,0.7361516034985423,0.9243902439024392,0.8502202643171806,0.7683823529411765,0.1525423728813559,0.5058856502242153,0.7184466019417476,0.6293469041560644,0.5404101326899879,0.1156138259833134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021366655865197,0.0045609803067005,0.00674750139516,0.0092229558151345,0.0116661072630925,0.0138911520286785,0.0162540278174328,0.0182336065992179,0.0202733787942298,0.0224442988204456,0.0244735519473192,0.0266894043681042,0.0288077698670727,0.0305719616149746,0.0325478614650668,0.0343760991455113,0.0361944050000518,0.0382905805379582,0.0403442319299048,0.0423909983001887,0.0573480073997428,0.0716718185152197,0.0854114582239122,0.0977834899498546,0.1099468697516715,0.1250701659623592,0.138319465255417,0.150497857188546,0.1613279535944005,0.1724041572176305,0.1848437415663626,0.1968640548248229,0.2087870167522262,0.2195175438596491,0.2291726436122084,0.2395588039276669,0.2490235358633733,0.2585817779683586,0.2672774869109948,0.2756078233206619,0.2831488828565462,0.2899696262504251,0.296022969958711,0.3021247462675811,0.3078907029368111,0.3127900088853786,0.3178273190059433,0.3217579617834395,0.3266227950624976,0.3311108465293487,0.3307549003725903,0.3297523168578994,0.3289540528335967,0.3280275514781426,0.3273238430987549,0.3257036855338198,0.3250296935624356,0.325262016624503,0.3262523887523887,0.3262040670709953,0.3266868000975408,0.3285361273104675,0.3290775681341719,0.3299991049051199,0.3321382164685499,0.333324646896336,0.3336277638477319,0.3368374669520332,0.340317080887264,0.3424461575141063,0.3422919508867667,0.3457729982964225,0.3466549184970734,0.3510767364270549,0.3538838612368024,0.3566818073153239,0.3609531129900077,0.3639518269034497,0.3733075435203095,0.372737774355025,0.0,2.31322506988726,60.394599379689225,182.23332578598536,267.1947091065324,fqhc7_80Compliance_implementation_low_initial_treat_cost,12 -100000,95699,44276,418.1025925035789,6252,64.35803926895788,4908,50.84692630017032,1998,20.60627592764815,77.28391542799022,79.68266432517326,63.28504443165552,65.06011324105917,77.03498053500958,79.4303429864254,63.19351232303482,64.96902734149899,0.2489348929806425,252.321338747862,0.0915321086206972,91.0858995601842,151.184,105.89272313154748,157978.6622639735,110651.8596135252,333.6667,214.4116375884885,348232.1236376556,223617.3811518286,349.56419,168.52166580841669,362690.2579964263,174023.51963132876,3219.71536,1472.4412709733233,3339173.7113240478,1513371.8857807524,1161.30364,520.1739300779304,1203277.777197254,533335.5006113189,1961.46614,825.1243555899524,2025296.607070084,841460.1313122653,0.38092,100000,0,687200,7180.848284726068,0,0.0,0,0.0,28386,296.168194025016,0,0.0,32053,332.3127723382689,1663394,0,59747,0,0,5925,0,0,44,0.4597749192781534,0,0.0,0,0.0,0,0.0,0.06252,0.1641289509608316,0.31957773512476,0.01998,0.3323668548756295,0.6676331451243706,24.702446082772354,4.336600344520804,0.3111246943765281,0.2328850855745721,0.2286063569682151,0.2273838630806846,11.08936923117268,5.749542425424076,21.44807385534928,12469.25018068798,55.97998753200363,13.5410358060455,17.380341878270386,12.54843011937159,12.510179728316157,0.5548084759576202,0.7672790901137357,0.704649639816634,0.5704099821746881,0.1164874551971326,0.7222653219550039,0.9270833333333334,0.8668407310704961,0.7159090909090909,0.2093023255813953,0.4951644100580271,0.686429512516469,0.6503496503496503,0.5256410256410257,0.0885780885780885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022395168318437,0.0045439792275235,0.0064062864858828,0.0087499110781394,0.01101919965813,0.0134055904164289,0.0154622877250242,0.0176492217183478,0.0197698798261314,0.0219426745067508,0.0241910663356382,0.0262730672804241,0.0284211934431627,0.0304741685818226,0.0327425498312292,0.0349745085264583,0.0373950885918557,0.0394648065684717,0.0415535515544876,0.0436767234641238,0.0580659313111055,0.0723378417989196,0.0863442225556966,0.0991045969634158,0.1113913630799105,0.1273906923085064,0.140084513621982,0.1518678650536718,0.1629077771602035,0.1730399785350147,0.1862645771809187,0.198249528802617,0.2099320587082444,0.2202558261783774,0.2301647655259822,0.240808986768493,0.2511180179777291,0.2597488955008565,0.2689344001454744,0.2767331673683848,0.2845499234800352,0.2912352699771355,0.2984019267045522,0.3043697539536726,0.3098931067228323,0.315772582516602,0.3201238234888646,0.3247631418092909,0.3297949555434585,0.3335269424716847,0.3324349454903176,0.3305970663177467,0.3304159091229405,0.3296480959606908,0.3286992245061995,0.3274242563771986,0.3260614330138985,0.3268267034718456,0.3275924055400523,0.3286432880439647,0.329570469041034,0.330411797440178,0.3310748058088483,0.3319513294276701,0.3344173967914958,0.3348981143951116,0.3355994172926961,0.3386989868383676,0.340110256680361,0.3446542374223172,0.3481899217755139,0.3493535396354387,0.3525364358541314,0.3534761367906802,0.3543644146659222,0.3558145009416196,0.3627092846270928,0.3643536313979365,0.367935086737549,0.3695400077309625,0.0,1.6961741195300792,57.35110331930004,191.16367032883784,266.93576909726545,fqhc7_80Compliance_implementation_low_initial_treat_cost,13 -100000,95666,43817,413.3757029665712,6245,64.12936675516903,4872,50.43589153931386,1929,19.829406476700186,77.35161970545354,79.75716116536832,63.31721993396855,65.09412809087999,77.11007441269832,79.51486129912195,63.22817304211486,65.00676118715192,0.2415452927552195,242.2998662463698,0.089046891853691,87.36690372806777,151.2764,105.97364572145727,158129.7430644116,110774.61765042678,333.06868,214.6485525431348,347664.7398239709,223879.84203328547,350.16223,169.2155188396149,363268.4025672653,174722.9103118581,3203.47067,1457.6054957224178,3318063.941212134,1493109.926166284,1155.44687,509.2979226405205,1193215.8028975811,517899.47742455057,1889.9974,786.6550304831939,1944539.8156084712,796202.512360817,0.37883,100000,0,687620,7187.715593836892,0,0.0,0,0.0,28380,296.1449208705287,0,0.0,32095,332.6678234691531,1663977,0,59636,0,0,5892,0,0,61,0.6376351054711182,0,0.0,1,0.0104530345159199,0,0.0,0.06245,0.1648496687168386,0.3088871096877502,0.01929,0.3285561823448696,0.6714438176551304,24.942199603900136,4.407000667810927,0.3238916256157635,0.2339901477832512,0.223111658456486,0.2190065681444991,11.283039137280602,5.854692630531711,20.521517656200725,12380.24739383477,55.04832396049226,13.503877893376426,17.832570092980564,12.095464089949392,11.616411884185885,0.5613711001642037,0.7885964912280702,0.6888466413181242,0.5722171113155474,0.1190253045923149,0.7348193697156034,0.9228855721393034,0.8405797101449275,0.7272727272727273,0.1761904761904762,0.4981797815737888,0.7154471544715447,0.6348797250859106,0.5197044334975369,0.1050175029171528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0044313745373421,0.0065358150486126,0.0086665853856782,0.0110264573945417,0.0133122835608066,0.0155407127925355,0.0176654991779926,0.0199591002044989,0.0224316296220424,0.0245296181545848,0.0267587397496763,0.0292362154485767,0.0314745512840338,0.0335588493518566,0.0355480146495892,0.0374976680554691,0.0396549397390248,0.0416874739908447,0.0437815406431163,0.058459673796065,0.0722945807856604,0.0856738035264483,0.0983344380964405,0.1102715366674757,0.1254696910359135,0.1379760678678742,0.149918997271487,0.1616740842177336,0.1720875793271553,0.184422782462421,0.196628787468449,0.2080421483465047,0.2178172305469511,0.2280891081476913,0.2379136411507122,0.2478101537361458,0.2567260283224891,0.2653089026633063,0.2731041432857699,0.2807796865058707,0.2872538133364502,0.2938664963572712,0.3005401003556758,0.3062936214116647,0.3116251585025053,0.3168790604697651,0.3214027155068396,0.3257749008359497,0.3306473910810917,0.3306260757314974,0.3299950544015826,0.329515232533596,0.3288786260643671,0.327776623222397,0.3270113184460079,0.3259687717301978,0.3267187090002624,0.3277678190354247,0.3284541235273117,0.3292140941736831,0.3317861304785794,0.3316846208659932,0.3321729039744706,0.332758166175378,0.3341465946843854,0.3355199636508207,0.3385570112204601,0.3404813545092003,0.3439492968904734,0.3460996774340102,0.3496238623809774,0.3513834238960714,0.3570780399274047,0.3563690698543145,0.3611904761904762,0.3576372865712967,0.3553083923154702,0.351049332243118,0.3496240601503759,0.0,1.8619773067808691,57.56292748163512,173.95690346114569,276.1300922169817,fqhc7_80Compliance_implementation_low_initial_treat_cost,14 -100000,95786,44335,419.23663165807113,6351,64.98862046645648,4953,51.0826216774894,1974,20.13864239032844,77.3507064425629,79.67836929662188,63.34838135415546,65.0697534020296,77.09283151133467,79.42420416071951,63.25117321101634,64.97690204562457,0.2578749312282298,254.1651359023689,0.0972081431391203,92.85135640503484,151.15232,105.981191594009,157802.10051573298,110643.71786483304,337.20154,216.46153369317167,351389.8168834694,225337.9864418304,351.01049,169.23841490845803,362936.9636481323,173935.29123975686,3247.02644,1496.2603064093523,3351019.4078466585,1523230.2386667705,1191.51184,533.7460703756624,1229597.080993047,542895.5246070366,1943.74702,836.3726013447857,1986085.4195811497,836799.8078215212,0.38217,100000,0,687056,7172.822750715136,0,0.0,0,0.0,28573,297.64266176685527,0,0.0,32206,332.6790971540726,1667064,0,59797,0,0,5959,0,0,65,0.678596036999144,0,0.0,0,0.0,0,0.0,0.06351,0.1661825889002276,0.3108171941426547,0.01974,0.3311785929043896,0.6688214070956103,24.725134684361656,4.343501116176959,0.3276801938219261,0.2289521502119927,0.2125984251968504,0.2307692307692307,11.10785619849995,5.76228088031086,21.415001821336677,12486.03892325347,56.555571462784165,13.597609059877229,18.30175119607201,11.886502927575297,12.769708279259644,0.5509792045225116,0.7821869488536155,0.6900800985828712,0.5669515669515669,0.1093613298337707,0.6829085457271364,0.9054726368159204,0.8447368421052631,0.690566037735849,0.1498257839721254,0.5023487151146726,0.7144808743169399,0.6427996781979083,0.5253807106598984,0.0957943925233644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803735667112,0.0045316301703163,0.0066364272885019,0.0090809361287177,0.0114588417114039,0.013804758365826,0.016071501365619,0.0180832933636762,0.0202847011455491,0.0226054031927957,0.0245916757177695,0.0268012887602864,0.0287032659856535,0.030768755661698,0.0328325273002877,0.0347834171840618,0.0365261839967716,0.0386577097717235,0.0407302787355128,0.0427264114603396,0.0575787298870964,0.0716996915355257,0.0848402889161451,0.0980936166635138,0.110539629005059,0.1258707992853896,0.1389604742663824,0.1515406311532116,0.1624137857402148,0.1726193028341122,0.1859511249865432,0.1978510199007664,0.2099326233427515,0.2200780217018347,0.2303158265153514,0.242099322799097,0.2516134785371128,0.2607137239039079,0.2696431809938339,0.2777459888764276,0.2851993484062525,0.292512238150316,0.2991730061640027,0.3057811638994705,0.3117502792482152,0.3167543459780452,0.3217439155556667,0.3257207562533398,0.3297839266283227,0.3337203013073361,0.332238701515437,0.3313146050403975,0.3307587140058352,0.3301497720859561,0.329406690167031,0.327085314599503,0.324762463715242,0.3254063668253157,0.3273309803652811,0.3281482144455384,0.3299533448716984,0.3309600777423001,0.331670980367401,0.3324482448244824,0.3352553740741634,0.3364855660921045,0.3376154154957848,0.3405246150921878,0.3448141730612822,0.3491993945670357,0.3522643931059773,0.3544766099146033,0.3565344520722095,0.3586621454993834,0.3597993754140248,0.3646819216484964,0.3670708955223881,0.3715234537152345,0.3699943598420755,0.3709361535448492,0.0,2.3440809742214603,58.46402993914768,192.9927805742479,264.5191211415405,fqhc7_80Compliance_implementation_low_initial_treat_cost,15 -100000,95741,44240,417.7520602458717,6215,63.74489508152202,4863,50.27104375345986,1895,19.448303234768805,77.31652017658898,79.67739107840734,63.31665033110207,65.06237752554127,77.08871732900548,79.45039220230021,63.23251423169191,64.98097279858253,0.2278028475835043,226.99887610713176,0.0841360994101592,81.40472695873768,150.0334,105.20518248502236,156707.5756467971,109885.1928484373,335.75842,216.071163710768,350187.2447540761,225175.74885448028,351.9409,169.93904465347495,364451.9798205575,175062.9787399958,3192.84956,1448.8804079969082,3302361.18277436,1481054.3770671706,1158.71192,509.2810868180727,1195457.4111404726,517226.2240528987,1858.36636,768.7202561876769,1909310.9117306063,775624.7423335639,0.38149,100000,0,681970,7123.071620308959,0,0.0,0,0.0,28551,297.6781107362572,0,0.0,32269,333.8486124022101,1667448,0,59850,0,0,6064,0,0,70,0.7311392193522106,0,0.0,1,0.0104448459907458,0,0.0,0.06215,0.1629138378463393,0.3049074818986323,0.01895,0.3280839895013123,0.6719160104986877,24.653950806338475,4.383388692965069,0.3253135924326547,0.229487970388649,0.2224964013983138,0.2227020357803824,11.3513024631055,5.905810625353926,20.01019325855181,12443.900671389036,55.05057957564015,13.409152685106031,17.957926293842487,12.05840293113419,11.625097665557451,0.5628213037219824,0.7876344086021505,0.6915297092288243,0.5868761552680222,0.1191135734072022,0.7544677544677545,0.9185185185185184,0.8875598086124402,0.7613636363636364,0.135,0.4938478747203579,0.7130801687763713,0.6211340206185567,0.530562347188264,0.1155152887882219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023703163460661,0.0047546152208513,0.0070134483633595,0.0093174959610636,0.0116475423177083,0.0140244026643309,0.0160831387106972,0.0185247592496144,0.0208280078935798,0.0228820066547222,0.0250902304979082,0.0271080625949809,0.0291425868416181,0.0311595769876329,0.0331215315742784,0.0350674174717156,0.0371405502763803,0.0394680884168162,0.041485623999501,0.0434637663041213,0.0579643569318146,0.071625142570134,0.0847368752228537,0.0970482770224087,0.1089776034417309,0.124516129032258,0.1377909320433666,0.1495710119009601,0.160941890404812,0.1714138585819574,0.1840214569622025,0.1967232628856496,0.2084389103365777,0.2192143271049495,0.2289453696874965,0.2395323063282722,0.2502791549421591,0.2590858968877287,0.2677803375058161,0.2762701185634916,0.2834318636694934,0.2901573191414702,0.2968258101166947,0.3031211405412535,0.3093681652490887,0.3149443149443149,0.3199919876810596,0.3243418707673506,0.3287068206535812,0.3325413795834323,0.3317490878246469,0.3309874672910067,0.330473677526774,0.3300667313231909,0.3288347939946732,0.3279414921345558,0.3272298164193052,0.3278572603190264,0.3293098429982707,0.3297335052654201,0.3310851431577365,0.3337160049087526,0.3358320209973753,0.336157052574963,0.3373476564381714,0.3367984992965452,0.3367460430628832,0.3386504223317738,0.3408923626932109,0.3430711907404471,0.3464126579976357,0.3486541121395893,0.3494393347612448,0.3505076526746477,0.3521073875903501,0.3555264411624583,0.3613587457731325,0.3590780428629195,0.362585969738652,0.3717899578382522,0.0,2.061351972266539,56.69196294950277,179.9687708419482,270.62038996834576,fqhc7_80Compliance_implementation_low_initial_treat_cost,16 -100000,95686,44205,418.43111844993,6239,64.12641347741571,4868,50.36264448299647,1861,19.10415316765253,77.40264542862671,79.78340414856656,63.35728834693722,65.11223321220922,77.18073462622625,79.56179903194042,63.27699267959528,65.03411585981577,0.2219108024004583,221.60511662613655,0.080295667341943,78.11735239344841,151.48958,106.16545640754862,158319.48247392513,110951.92233717431,335.35085,214.6989538317249,349971.9394686788,223880.4567352852,348.0722,167.31461217745192,360436.6260476977,172289.8633716338,3186.63061,1423.2689937516152,3297887.287586481,1455024.5738682938,1173.76985,506.2565351055309,1214187.4464393954,516579.3168337385,1826.97206,746.5964960119888,1877157.6615178816,753854.1746244929,0.38104,100000,0,688589,7196.340112451142,0,0.0,0,0.0,28568,298.0477812846184,0,0.0,31781,328.80463181656665,1669340,0,59763,0,0,6016,0,0,69,0.7211086261313044,0,0.0,1,0.0104508496540768,0,0.0,0.06239,0.1637360906991392,0.2982849815675589,0.01861,0.333843797856049,0.666156202143951,24.976213385560545,4.380589269107687,0.3262119967132292,0.2294576828266228,0.2241166803615447,0.2202136400986031,11.305554921542065,5.89919125342963,19.49597089908678,12493.306557221047,54.36515396689143,13.13731348823855,17.74552907989061,12.066851610263154,11.415459788499112,0.5659408381265407,0.7779767233661593,0.6939546599496221,0.615948670944088,0.1044776119402985,0.7384356602186711,0.9211956521739132,0.8673469387755102,0.7350427350427351,0.1384615384615384,0.5101929872247893,0.7076101468624834,0.637123745819398,0.5834305717619603,0.096921322690992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860548247612,0.0044189039901892,0.0065327652667883,0.0086631526563277,0.0107788206343234,0.0131254709488218,0.0152211811962849,0.0174931874547106,0.0195086557524475,0.0218287878012587,0.0243447420482384,0.0264765365938792,0.0286243059839605,0.0306391480772003,0.0329030860185099,0.034819905948013,0.0367283119680245,0.038769665020132,0.0407184756833215,0.042629033602935,0.0577604128579338,0.0721211232802127,0.0851452316991269,0.0982244288298901,0.1107290886655346,0.1271184647610181,0.1391055228394079,0.1510058541777541,0.163026754423455,0.1729088706132121,0.1862092727781726,0.1991582273002683,0.2115271707221606,0.2223169585273605,0.2325745078631914,0.2425178199849471,0.2525520438639504,0.2615424355072382,0.2702595578909222,0.2788414278692834,0.2856038134370564,0.292533274230989,0.2984146096728878,0.3040946162493124,0.3095307349234051,0.3159584281409507,0.3209618988132417,0.324636430547448,0.3291717771609321,0.3336490272680636,0.3331096497114481,0.3318533135997369,0.3312949690739,0.3306911036943261,0.330220926619216,0.3287449639848614,0.3264236434536872,0.3273159144893112,0.3281675285792052,0.328353962156779,0.3293254420193798,0.3311606722161143,0.3325011961971333,0.3325698274328411,0.3338363875913283,0.3342432987546473,0.3356002617875537,0.3400915016294811,0.3443755039085778,0.3494414956824843,0.3510657678994352,0.3534611288604898,0.3574535140245824,0.3613650213284582,0.3637135578828191,0.3654708520179372,0.3656624654165386,0.3701311806256306,0.3793386171084996,0.3833648393194707,0.0,2.0246445901182706,52.18161375689456,181.3090621099434,279.23625152091194,fqhc7_80Compliance_implementation_low_initial_treat_cost,17 -100000,95725,44033,416.4951684512928,6311,64.65395664664403,4987,51.50169757116741,1922,19.74405850091408,77.33907921770925,79.70499863821034,63.32552877917672,65.07490935157466,77.09974363114357,79.46649775707536,63.23682019150851,64.9892272806126,0.2393355865656872,238.500881134982,0.0887085876682078,85.68207096206493,150.90152,105.8219296794508,157640.65813528336,110547.8502788726,336.84159,216.44815378121183,351316.5003917472,225546.39204096308,357.66186,173.16764636697962,369819.5455732568,178020.28742836494,3253.3486,1483.872297861912,3364374.4998694174,1515874.837150078,1195.141,524.7559992388883,1235873.230608514,535549.3854676291,1886.0847,787.4747984747438,1939575.158004701,795748.98161811,0.37875,100000,0,685916,7165.484460694699,0,0.0,0,0.0,28621,298.3860015669888,0,0.0,32759,338.30242883259336,1664601,0,59692,0,0,6031,0,0,57,0.5954557325672499,0,0.0,0,0.0,0,0.0,0.06311,0.1666270627062706,0.3045476152749168,0.01922,0.3305135951661631,0.6694864048338368,24.566915212675088,4.363473345204745,0.3136154000401043,0.2438339683176258,0.2225787046320433,0.2199719270102265,11.192035666784086,5.710455611041281,20.444540443473173,12365.358044384351,56.590062589796965,14.56645843956786,17.714251783688347,12.405430045841698,11.903922320699056,0.5636655303789854,0.7960526315789473,0.6809462915601023,0.5846846846846847,0.1175934366453965,0.734785875281743,0.9300225733634312,0.8469387755102041,0.7107142857142857,0.162037037037037,0.5013676148796499,0.7192755498059509,0.6254266211604096,0.5421686746987951,0.1066969353007945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699562469615,0.0044916250963215,0.0065466946804299,0.0090330840513737,0.0112305829933979,0.0135351210420719,0.015765053790853,0.0178460219093609,0.0199492832164256,0.0220405989471312,0.0240187883946793,0.0259646888448383,0.0282311560889821,0.0302899177845088,0.0323709445998534,0.0344563711195218,0.0364035678397165,0.0383884927924281,0.0406293546307273,0.042643856596618,0.0572621906651352,0.0717364918595404,0.0843757536358012,0.09735834770538,0.1095468590169466,0.1246694450908629,0.1374978781191648,0.1491647413306644,0.1596584776824355,0.1702216690628956,0.1827439063813279,0.1963011488527714,0.2075264371817746,0.2185482635621594,0.2285214097750569,0.2388532913553422,0.2482942680707083,0.2572142439112231,0.2661089860731189,0.2737097864829863,0.280636574074074,0.2883060978605434,0.2958429424634853,0.3013436160275908,0.3064181440897011,0.3117610148012353,0.3170740847146408,0.3214566879142647,0.3269422085556661,0.3321034182853227,0.3319892473118279,0.3313351573563582,0.3303560107634437,0.3299787446319351,0.3297817009198579,0.3280247461831769,0.3260773200772567,0.3267126663380976,0.3274669588440731,0.3278750134220981,0.328623698283141,0.3295560170078117,0.3312961761443312,0.3322818086225026,0.3319728217809896,0.3334027109295731,0.3339035237769415,0.337546772317077,0.3395775489403578,0.3396669853409815,0.342981252857796,0.3455925589351579,0.3465541312349283,0.3480798771121351,0.3522940955246333,0.3545778834720571,0.3599628425452856,0.363784998978132,0.3687135315365379,0.3662188099808061,0.0,2.362155461323776,58.29350422334751,187.73536155176103,273.0982886607432,fqhc7_80Compliance_implementation_low_initial_treat_cost,18 -100000,95690,43954,416.05183404744486,6241,64.1968857769882,4916,50.83080781690877,1952,20.012540495349565,77.30793472821749,79.68515232068617,63.31631099018998,65.07051076306713,77.07070517929328,79.44865134913384,63.22953411615787,64.9864961166378,0.2372295489242049,236.5009715523314,0.0867768740321111,84.01464642933831,150.37264,105.3844718099004,157144.6964155084,110130.39409158687,331.64816,212.82015881310568,346008.11997073883,221832.5422633855,343.41882,165.32765561910688,355951.6877416658,170421.80395493642,3243.23713,1467.521363806936,3354317.4730901867,1498996.535254364,1183.12894,516.9760469374056,1220102.894764343,524044.9661125761,1918.47584,790.452491343661,1967989.0479673948,794828.4492789448,0.38035,100000,0,683512,7142.940746159474,0,0.0,0,0.0,28214,294.2313721391995,0,0.0,31524,326.4499947747936,1670782,0,59988,0,0,5931,0,0,61,0.6374751802696207,0,0.0,1,0.0104504127913052,0,0.0,0.06241,0.1640857105297752,0.3127703893606793,0.01952,0.3358300214001834,0.6641699785998165,24.761092053094817,4.454509907632633,0.3207892595606184,0.2290480065093572,0.218673718470301,0.2314890154597233,11.247362235652108,5.727031578048399,20.615077604315672,12455.719874947845,55.83978214295437,13.41062117754582,17.955046106533796,12.126925646305176,12.347189212569605,0.5561432058584215,0.7753108348134992,0.7057704502219404,0.5609302325581396,0.1274165202108963,0.7377431906614786,0.9219512195121952,0.8627450980392157,0.6968503937007874,0.1924882629107981,0.4918755163866703,0.6913407821229051,0.65098374679213,0.5188794153471377,0.1124324324324324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0047930768918973,0.0069893182117895,0.0092325505809701,0.0113090879505329,0.0134617734511832,0.0157538925880229,0.018080653394589,0.02012921957104,0.0222538411931498,0.0242037171824863,0.0261912339962422,0.0281891480521617,0.0303495451689004,0.0324537959074163,0.0342909718704448,0.0362749059712163,0.0384659309170568,0.0406428794340996,0.0423772986948,0.0571386788116826,0.0716476339010017,0.085171118618461,0.0981699621371476,0.1105312542830333,0.126048287312683,0.1387270971917205,0.150211302839016,0.1619427142872405,0.1730422656082385,0.1858010597510015,0.1981587260374746,0.2092221714832452,0.221002569288799,0.2309706089405139,0.2401594861003433,0.2500390494254156,0.260200924748844,0.2691251560195166,0.2772846491278304,0.2839084584486092,0.2903957709580838,0.2972413221771187,0.303369034625856,0.3092270842705509,0.3144073023313186,0.3188567418898091,0.3241118303685203,0.3280106885279925,0.332104345068189,0.3319359447874262,0.33127929418252,0.3308306754353778,0.3305865314989138,0.3297439792681292,0.3278346402320192,0.3265659227277056,0.3286210930420312,0.3285773082727397,0.3292152333888382,0.3306635080000752,0.3324406887249068,0.332682250645832,0.3339976710856324,0.335849147597116,0.3363172359638791,0.3379355687047994,0.3414641842852635,0.3450189065978725,0.3486973149549837,0.3509117566205443,0.3533778371161549,0.3567533291058973,0.3584515139900345,0.35800718472301,0.359566615073223,0.3685649202733485,0.3704375882234321,0.3700873362445415,0.3717754172989377,0.0,2.029275737314671,56.70969231815393,188.69854232494384,269.67410318373214,fqhc7_80Compliance_implementation_low_initial_treat_cost,19 -100000,95716,44040,416.1477704876928,6434,66.07045843955034,4990,51.652806218396094,1992,20.498140331814955,77.38171245272493,79.75580668526707,63.34258245905804,65.0951625827544,77.13196817498239,79.50429002086344,63.24944005470102,65.00351794272058,0.2497442777425362,251.5166644036384,0.0931424043570245,91.64464003382022,150.45514,105.38826893279186,157189.1219858749,110105.1746132223,335.80274,215.8190969860654,350354.2772368256,225000.4774395769,348.21785,167.64608960106762,360666.2313510803,172793.1657227954,3300.81703,1497.8475568950366,3419707.2171841697,1536041.5049678606,1239.09369,543.9561041092277,1286152.1689163777,559910.9038655205,1970.1649,830.1234329141785,2029627.2096619168,843541.5336973019,0.38038,100000,0,683887,7144.960090267041,0,0.0,0,0.0,28546,297.7349659409085,0,0.0,31967,330.8746709014167,1669255,0,59847,0,0,5895,0,0,65,0.6790923147645117,0,0.0,0,0.0,0,0.0,0.06434,0.1691466428308533,0.3096052222567609,0.01992,0.3193910730121194,0.6806089269878806,24.690008682711845,4.438184761903285,0.3254509018036072,0.2202404809619238,0.2152304609218437,0.2390781563126252,11.07774827750655,5.535755149280261,21.215039386937644,12409.843857686286,56.34815040516699,13.105122969183562,18.14452735779155,12.00707730628516,13.09142277190672,0.5515030060120241,0.7825295723384895,0.7068965517241379,0.5837988826815642,0.0980720871751886,0.7080459770114943,0.9143576826196472,0.8575063613231552,0.7529880478087649,0.1325757575757575,0.4960651289009498,0.707977207977208,0.6588139723801787,0.5321992709599028,0.0882669537136706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207907956571,0.0047542296424697,0.0071437269148029,0.0091014363204193,0.0113005268832516,0.0135234215885947,0.0158858016823859,0.0182530932255298,0.0205064248694069,0.0226532910226225,0.0248918414631645,0.0270636550308008,0.0290315614105451,0.0309657481328869,0.0328696154719395,0.0349783388649358,0.0369645372441793,0.0388522803922586,0.040884460576813,0.0429055286332134,0.0572637075718015,0.0713350990881586,0.0847244226673241,0.0977392987513018,0.1102016707450848,0.1255472599987309,0.1380524964457742,0.1498408440058339,0.1606593453550978,0.1710004076291004,0.1844484434434973,0.1967305402186857,0.2092628647878438,0.2202932140943926,0.2299332299332299,0.240085911033368,0.2502091210225181,0.2600465634173499,0.2686003380332815,0.2759141976934617,0.2828625322578779,0.289596463943685,0.2963055032730802,0.3024164549072254,0.307958687727825,0.3127974355813093,0.3181021970872328,0.3232096942542196,0.3281699261753659,0.332453791047139,0.3314539460405032,0.3301722123723525,0.3290492412511613,0.3285969821990133,0.328646149742921,0.3271344814950531,0.3250773993808049,0.3252909498633231,0.3258501548830718,0.3273818000569638,0.3277109785515268,0.3283172925213001,0.3285443209541881,0.3285039229671897,0.329199846493332,0.331742119600467,0.3321317059324439,0.335315287122516,0.3380252174216758,0.3412258473234083,0.3452397182458532,0.35,0.3530267569106205,0.3557581794498506,0.358079426469201,0.3626203780763286,0.3646120821833793,0.3641912512716175,0.3694868238557559,0.374223602484472,0.0,1.8269905749840625,57.75569265192738,187.0594000309401,275.5542159989978,fqhc7_80Compliance_implementation_low_initial_treat_cost,20 -100000,95856,44201,418.0020030045068,6223,63.80403939242197,4893,50.44024369888166,1995,20.3743114672008,77.44506122741345,79.72372228295826,63.40474875222951,65.08460768274169,77.20053100760686,79.48220320501402,63.31399731188875,64.99812152676546,0.2445302198065917,241.51907794424687,0.0907514403407603,86.48615597623177,151.58286,106.1659276431567,158136.01652478718,110755.6414237572,334.95689,215.30370231704316,348851.17259222164,224025.1964582741,344.8611,166.25617889035172,356598.35586713406,170955.24757249263,3258.85281,1475.498430073575,3362917.052662327,1502465.5630044823,1210.39154,529.1480806171273,1247718.4735436488,537023.8280515849,1968.4962,822.2478075822164,2014001.2518778169,824370.0176254413,0.38172,100000,0,689013,7188.00075112669,0,0.0,0,0.0,28544,297.1540644299783,0,0.0,31636,326.8235686863629,1668119,0,59926,0,0,5909,0,0,53,0.5529127023869137,0,0.0,0,0.0,0,0.0,0.06223,0.1630252541129623,0.3205849268841395,0.01995,0.332461135908881,0.667538864091119,24.6653849013036,4.447204334085923,0.3145309625996321,0.2301246678929082,0.2164316370324954,0.2389127324749642,11.244344320170857,5.612663507102989,21.21949511636685,12382.67650538542,55.29827704723749,13.380360142055508,17.297050471231692,11.756551924778645,12.864314509171647,0.5497649703658287,0.7682060390763765,0.6972059779077323,0.5779036827195467,0.1197604790419161,0.703416149068323,0.8943488943488943,0.8274111675126904,0.7540983606557377,0.1316872427983539,0.4948682385575589,0.6968011126564673,0.6524017467248908,0.5251533742331288,0.1166306695464362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.004497614440989,0.0066921509181428,0.0090434817912386,0.0111772715264088,0.0134295103315664,0.0154709524973519,0.0175492265491959,0.0197387903481093,0.0218711656441717,0.024094041511791,0.0263581633385639,0.028429690950361,0.0305399261446043,0.032372062353826,0.0345486075269927,0.036435279030323,0.0383941802505725,0.0403239202657807,0.0420698840814967,0.0564355506428772,0.0705546790927042,0.0842914284517601,0.0970920653576938,0.109013814799617,0.1242677250129302,0.1370586864900353,0.149097361682233,0.1604888244326906,0.1708851953722829,0.1835416509935838,0.1965402183420259,0.2087386018237082,0.2195183195772741,0.2295821984008435,0.2399995575025443,0.2497436697574893,0.2586458731264466,0.2677253715101846,0.27547623133688,0.282759258616902,0.2892693423145289,0.2965675544564998,0.3020171185730532,0.307433703501426,0.3134043470229665,0.3184032256044878,0.3235623552172695,0.3281602197061948,0.3322469122769977,0.331547707175256,0.3306259877688449,0.3297674941662684,0.3284407634137558,0.3277108076888902,0.3263157894736842,0.3256745462286913,0.3260414622980838,0.3268258642111892,0.3273738648278803,0.3279089754128989,0.3295654060878657,0.3306357172731075,0.3318465655664585,0.3318465227817745,0.3343378188808645,0.3350728912587214,0.337976585488011,0.3393006408470326,0.3417236337772157,0.3432108880695526,0.3432812001276731,0.3466020028972728,0.3491783136230993,0.3505545549341169,0.3506166926116633,0.3557453416149068,0.3615689547256415,0.3623066104078762,0.367816091954023,0.0,2.3997423271138905,56.39105771533645,180.40366671486427,273.27248547872773,fqhc7_80Compliance_implementation_low_initial_treat_cost,21 -100000,95689,43886,414.9066245858981,6268,64.33341345400203,4955,51.249359905527285,1916,19.73058554274786,77.29747507811412,79.70247628023823,63.28577397120039,65.06630062625361,77.0618388302028,79.46511293657343,63.19898714875159,64.98114289909981,0.2356362479113158,237.3633436647964,0.0867868224488006,85.1577271537991,151.90692,106.38453656587603,158750.66099551675,111177.39402217188,336.45675,215.60844396393537,351078.56702442287,224785.77889196816,347.80787,167.452918236616,359715.6412962828,172156.5392472187,3222.0799,1457.704502886438,3332153.2255536164,1488288.8345436126,1156.4845,507.4051768350246,1194103.7527824517,515781.9779023968,1876.66898,782.4568628715447,1931826.7512462249,791600.0761055668,0.38036,100000,0,690486,7215.939136159852,0,0.0,0,0.0,28640,298.7490725161722,0,0.0,31944,330.1215395709016,1659505,0,59574,0,0,5846,0,0,55,0.5747787101965743,0,0.0,0,0.0,0,0.0,0.06268,0.1647912503943632,0.3056796426292278,0.01916,0.3315573146597655,0.6684426853402344,24.96820254181444,4.351164463833318,0.3376387487386478,0.2262361251261352,0.217356205852674,0.2187689202825428,11.066991176355131,5.677673634141727,20.30084289208161,12452.807641300791,55.78155399635358,13.420218944945605,18.687743051592307,11.900545669517934,11.77304633029774,0.568920282542886,0.8073148974130241,0.6921697549312612,0.5812441968430826,0.1199261992619926,0.7254901960784313,0.9147869674185464,0.8512195121951219,0.7458333333333333,0.1415929203539823,0.5146739130434783,0.7479224376731302,0.6405384006334125,0.5340501792114696,0.1142191142191142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024524707122299,0.0048282717627249,0.0071475709426874,0.0094197744131693,0.0116984049479166,0.0139440607875491,0.0160132185549345,0.0181470966687771,0.0200660687073647,0.0221810324523046,0.0245658662673217,0.0266380390787121,0.0287648402296249,0.030717708279664,0.0328642375558836,0.0347959204782887,0.036981374571159,0.0388760824870724,0.0411677191814313,0.0428960011672381,0.0575589169313053,0.0709649728869627,0.0840512492261199,0.097239754270807,0.1100176154763035,0.1253623341726085,0.1375543997452499,0.1499137325068694,0.1612040849061647,0.1711258079062077,0.1847102848084202,0.1973704177415508,0.2093757828582631,0.2193008402624861,0.2294050217137314,0.2399822498335921,0.2505057052492763,0.2598332957873395,0.2680693462997887,0.2764011461318051,0.2840362806537931,0.2909674321649823,0.2976064995203524,0.3039616912497149,0.309559145540363,0.3143724396624056,0.3198792010225307,0.3248435249276581,0.3292795306760808,0.3327470609238419,0.3321951087836743,0.3312954554863996,0.3307569484675927,0.3300056507816915,0.329154211097726,0.3277909738717339,0.3264240506329114,0.3275350438560537,0.3284828244274809,0.3294982991682844,0.3306694052842872,0.3314300340624938,0.3339393559442459,0.3354646111346269,0.3364501666307032,0.3375691899898651,0.3385524708021937,0.3411941796287004,0.3455946750744438,0.3485190912334959,0.3518965438732298,0.3535589264877479,0.3554773427188737,0.3562651699029126,0.3600375234521576,0.3635288552507095,0.3703533026113671,0.3707228183842883,0.3702174511423066,0.3720306513409961,0.0,2.023056638326072,56.160153275977166,184.2963329597402,277.52975521052446,fqhc7_80Compliance_implementation_low_initial_treat_cost,22 -100000,95813,43846,412.9189149697849,6307,64.45889388705082,4852,49.89928297830148,1917,19.51718451567115,77.32864418348662,79.64004635196808,63.32870225298407,65.03877914343467,77.08104922099,79.39702979340747,63.23581648128242,64.9508122090134,0.2475949624966205,243.01655856061188,0.0928857717016455,87.96693442126013,149.63146,104.87909659239756,156170.31091814264,109462.282354584,331.0459,213.64643742588885,344781.6997693424,222251.9151116121,348.40832,169.150612363915,358846.61789110035,172809.61824878573,3188.82348,1471.0082921858934,3280825.3055430893,1488171.7668314446,1183.93728,527.7517029926761,1215460.5533695845,530634.2215849586,1884.81424,801.5329494646747,1921076.889357394,797456.9464519003,0.37888,100000,0,680143,7098.6504962792105,0,0.0,0,0.0,28172,293.24830659722585,0,0.0,31977,329.03676954066776,1670952,0,60026,0,0,5908,0,0,57,0.5949088328306179,0,0.0,1,0.0104369970672038,0,0.0,0.06307,0.1664643158783783,0.3039479942920564,0.01917,0.323943661971831,0.676056338028169,24.400183672998818,4.351012973384338,0.3264633140972794,0.2271228359439406,0.2186727122835944,0.2277411376751855,11.266577208067242,5.828117099421904,20.637721102350216,12382.185903813384,55.46664348934556,13.407323269196016,18.11129957609374,11.94617405813331,12.00184658592248,0.5719291014014839,0.8003629764065335,0.6900252525252525,0.6069745523091423,0.1411764705882353,0.7354227405247813,0.9294117647058824,0.8502304147465438,0.7573529411764706,0.1618257261410788,0.5074712643678161,0.7193500738552437,0.6295652173913043,0.5551330798479087,0.1354166666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023902364916189,0.0049264079795645,0.0071424948003855,0.0093247196489517,0.0113992271710392,0.0136835675015271,0.0161043726429517,0.0184004000530682,0.0204283933206613,0.0227882037533512,0.0249492817475767,0.0269388257750685,0.0289193772159704,0.03098684345982,0.0330710610169841,0.0351966445934358,0.0373267931245019,0.0395442150773984,0.0416939328783771,0.0438303408795212,0.0579835614152202,0.0707833214838359,0.0842408678790419,0.0971037033923241,0.1095146736380502,0.1252920344627094,0.1380323210044112,0.1497541873284099,0.1614298530416951,0.1711571656785067,0.1843822693202378,0.1972083964509846,0.2091847276444425,0.2196167175013391,0.2291348026540201,0.2386940240632824,0.2475459814399142,0.2557065798808572,0.2638526024036168,0.2717689298782936,0.2802254514247277,0.287579322721781,0.2939919259083353,0.2998870436684371,0.3056022204367833,0.311713957765079,0.3167548456658559,0.3219303837817162,0.3273841201438195,0.3308417891492148,0.3302213887727156,0.3288950825100723,0.3283387990500961,0.3285216886696648,0.3281608681394031,0.3266243643123819,0.3254743192823688,0.3267645946079318,0.3267804027488119,0.3286675831533092,0.3300573915000562,0.3319091700292744,0.3328795526420508,0.3332290432878181,0.3344636029146526,0.3349882414423831,0.3370760900541464,0.3416098312223025,0.3443133685721287,0.3464096271079091,0.349240287507961,0.3507197110532745,0.3527742749054224,0.3545252849820213,0.3576346317080072,0.3643559606620292,0.3684210526315789,0.3740861088545897,0.3708390646492435,0.3670542635658915,0.0,2.851332132761116,59.86297550971535,176.3734275339561,263.7033980962584,fqhc7_80Compliance_implementation_low_initial_treat_cost,23 -100000,95739,44168,417.6145562414481,6299,64.43560095676787,4886,50.36609949968143,1886,19.34425887047076,77.35098256499538,79.69896754487374,63.33757887846742,65.07077281013427,77.11519603857957,79.46451299893424,63.24934845365603,64.98570051401185,0.2357865264158078,234.45454593949933,0.0882304248113854,85.07229612241929,150.18432,105.21175313897488,156868.48619684766,109894.35145444894,331.34519,212.8949758972782,345442.70360041363,221722.33360331348,346.56994,167.56729284874342,357586.18744712183,171662.53629464505,3210.17499,1463.3192870510877,3311689.3011207557,1487383.9208423807,1160.89146,515.6632441342762,1195342.5667700728,521505.9409673852,1855.0933,781.2281955600243,1903357.9210144249,786704.5936992222,0.38189,100000,0,682656,7130.385736220349,0,0.0,0,0.0,28155,293.3914078902015,0,0.0,31825,328.02724072739426,1672196,0,59979,0,0,5824,0,0,52,0.5326982734308902,0,0.0,1,0.0104450641849194,0,0.0,0.06299,0.1649427845714734,0.2994126051754247,0.01886,0.3318731117824773,0.6681268882175226,24.79398390958288,4.430095473374075,0.3248055669259108,0.2251330331559558,0.225542365943512,0.2245190339746213,11.001945229442743,5.503277157859719,20.04181232217396,12453.014442568596,55.15789503112944,13.093585920054483,17.773893761744077,12.263479927159503,12.026935422171364,0.5577159230454359,0.7790909090909091,0.7013232514177694,0.5698729582577132,0.1157702825888787,0.7237871674491393,0.916010498687664,0.8658227848101265,0.7790697674418605,0.1352459016393442,0.4988913525498891,0.7065368567454798,0.6468120805369127,0.5059241706161137,0.1101992966002344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0045509370470601,0.0067273446774831,0.0092122369383277,0.0113369462435562,0.0135904144312895,0.0157490749329772,0.0180135126860035,0.0202579774729655,0.0225572374548394,0.024622765294407,0.0266172575909996,0.0288396290432028,0.0308525646966748,0.0329505947406971,0.0349778287698843,0.0370186283951,0.0389867795695577,0.0409540345806344,0.0429016429308135,0.0580000626350568,0.0719419192183364,0.0854521625163827,0.0983325623449262,0.1107081866289979,0.1261508863542668,0.1392695032452382,0.1505847797631083,0.1623348182332895,0.1732656804797202,0.1868408863227516,0.1990280754161525,0.2105578035939607,0.220828956582633,0.2296801893543237,0.2395969583434943,0.2491594902210457,0.2581632423430924,0.2669996027467227,0.2748128360638822,0.2823525326419113,0.2896384639692888,0.2962708816430836,0.3018854363814954,0.3080882263683706,0.3133887349953832,0.3184018007878447,0.3234479076625819,0.328918922417699,0.333148536807508,0.3316218583653392,0.3308259282220844,0.3308505085558706,0.3306930406325118,0.3297084201130615,0.3284527167913651,0.3262617133615564,0.3275768490649824,0.3291658827754878,0.3293697554008213,0.3307228238468168,0.331951354339414,0.333500837520938,0.3343460292639338,0.3348531387982338,0.335896166175819,0.3384046637281387,0.3422268313377958,0.3466368183567106,0.3505424024071581,0.3530456159519257,0.3558044482191199,0.356994525202945,0.361208074062832,0.3628451099672438,0.3651957884774636,0.3691451538104807,0.3706931495743818,0.3706061444782729,0.3707129094412331,0.0,2.578195840348673,55.67435164314392,181.8893848769687,271.5152039700593,fqhc7_80Compliance_implementation_low_initial_treat_cost,24 -100000,95828,44239,417.7275952748674,6326,64.67838210126476,4977,51.20632800434111,1999,20.380264640814797,77.51248185563044,79.79641438485959,63.42745123530996,65.10983016697445,77.25720728201168,79.5465951792702,63.333229971624206,65.02103868597217,0.2552745736187631,249.81920558938955,0.0942212636857533,88.79148100227496,151.558,106.15987625762818,158156.2800016697,110781.68829322138,337.18566,216.31510681271556,351149.99791292736,225017.1837174057,352.88754,170.40767161677226,364072.859706975,174598.59796088687,3273.23564,1492.654637656124,3370908.1583670746,1512807.1833452892,1227.26765,541.7703805946918,1263551.2376340944,548209.9288252835,1966.50538,822.9739299004823,2007447.030095588,819869.6573684998,0.38168,100000,0,688900,7188.921818257712,0,0.0,0,0.0,28606,297.7522227323955,0,0.0,32413,333.94206286262886,1670185,0,59907,0,0,5983,0,0,60,0.6261218015611303,0,0.0,0,0.0,0,0.0,0.06326,0.1657409348145043,0.3159974707556117,0.01999,0.3282996073693748,0.6717003926306252,24.678857195928792,4.401007273782982,0.3261000602772754,0.2248342374924653,0.21458710066305,0.2344786015672091,11.308552437341456,5.851943718946133,21.114413730465504,12423.613364818975,56.258555964331045,13.34153414895392,18.34073664324956,11.823207535851813,12.75307763627576,0.5549527828008841,0.7694369973190348,0.6882316697473814,0.5917602996254682,0.130248500428449,0.7232897770945427,0.9143576826196472,0.8564593301435407,0.757201646090535,0.1481481481481481,0.4953754080522307,0.6897506925207756,0.6298755186721992,0.5430303030303031,0.1255411255411255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022564912067674,0.0046383974235626,0.0068316119157907,0.008746740266461,0.0109815315223795,0.0133224855079833,0.015668587485492,0.0180188448360254,0.020034104949302,0.0220267921055322,0.0240438277609953,0.0263462859838579,0.0287704732742853,0.0309679411310657,0.0328147712863019,0.0350764845016887,0.0368162910535791,0.0391170920853463,0.0409174483467855,0.0429749312900807,0.0577873725048495,0.0717818417558058,0.0850762846843826,0.0974928314094552,0.1096977993050437,0.1254053254750362,0.138393708798779,0.1499920250943697,0.1613843001664746,0.1725604009595613,0.1859964942843931,0.1983365737740332,0.2104840285770124,0.2212163239453538,0.2309973963768991,0.2412767228126831,0.2499470757985983,0.2590341821776394,0.2674089343965204,0.2745270617820198,0.2819288227490338,0.2890468422279189,0.2963185769725279,0.3032293507858405,0.3089447625503892,0.3146812771028094,0.3200917682850802,0.3247834017327861,0.3289200582707009,0.3331013929551392,0.3321041621969534,0.3309499349359633,0.3300723215787408,0.328982399585534,0.3284505208333333,0.3268455761128412,0.3253112951140888,0.3256229215471061,0.3265514773540537,0.3277432232539074,0.3298280410905076,0.3305436027002487,0.331261380046462,0.3321733699167949,0.333301453710788,0.3326856817180902,0.3327197031918207,0.3362851173957781,0.3386473598106443,0.3394347979461451,0.3415466092186167,0.3443334553632132,0.3481720964934096,0.3484186746987951,0.3497820239309897,0.3510365711623573,0.3486100676183321,0.3544303797468354,0.3605756177029595,0.3616222305670297,0.0,2.83300154511083,56.30003573723264,191.35493991064268,269.8986830598896,fqhc7_80Compliance_implementation_low_initial_treat_cost,25 -100000,95740,44243,418.2473365364529,6247,64.05890954668895,4829,49.88510549404638,1946,19.928974305410488,77.31288813594676,79.67139174999926,63.318020272784125,65.06198027913247,77.074827985624,79.43348701771126,63.230796808044055,64.97701466334134,0.2380601503227666,237.90473228800124,0.0872234647400702,84.96561579113404,152.66966,106.88457831038396,159462.77418007102,111640.4619912095,335.63941,216.29053951106823,350000.5953624399,225341.2361719953,346.12012,167.37726307477527,357891.7171506163,172061.0756887037,3149.53271,1429.6848888783777,3254917.0043868814,1458543.6796306423,1159.50339,512.772453688936,1193645.3519949864,518137.7937005808,1902.63234,791.8457837578837,1950467.9130979737,797346.4463797851,0.38196,100000,0,693953,7248.307917275956,0,0.0,0,0.0,28602,298.14079799456863,0,0.0,31617,326.551075830374,1657532,0,59529,0,0,6091,0,0,58,0.6058073950282014,0,0.0,0,0.0,0,0.0,0.06247,0.1635511571892344,0.3115095245717945,0.01946,0.3349588540079244,0.6650411459920755,24.809390274249875,4.413263430851095,0.3230482501553116,0.2360737212673431,0.2215779664526817,0.2193000621246635,11.200969565129906,5.871935246700682,20.715035263960026,12466.78673911908,54.64339293581479,13.512914111401148,17.518472636297332,12.004415301522592,11.60759088659371,0.5566369848829985,0.7649122807017544,0.6993589743589743,0.5672897196261683,0.1114258734655335,0.738498789346247,0.9010416666666666,0.9,0.6914498141263941,0.1632653061224489,0.4938718662952646,0.6957671957671958,0.6324786324786325,0.5255930087390761,0.0996523754345307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0045814370711237,0.0068588358242271,0.0089993093080892,0.011259039269332,0.0133604887983706,0.0155603140613847,0.0177435656603812,0.0202220541026846,0.0220866057074983,0.0244127508176887,0.0265030548852492,0.0286014007590015,0.0306635354222029,0.0328694198846578,0.0350465599388157,0.0369139330682571,0.0388785706133206,0.0410752352727083,0.0431448546036112,0.0579109463903533,0.0719651788143218,0.0860660465408937,0.0982598180957888,0.1097872160948143,0.1256082081658557,0.1379211545604075,0.1510016392395631,0.1621200145265001,0.1731429061588608,0.1863144069073918,0.1985141448222164,0.2103237589963253,0.2209135745765121,0.2312101210121012,0.2422299018630513,0.2521120001785575,0.26156407487401,0.2701518127831586,0.2785187222145836,0.2855191414977484,0.2921934389801766,0.2981804415209521,0.3040711400870076,0.3093546153565832,0.3147849230503838,0.3199248826291079,0.3248940853169807,0.3291280244546914,0.3340555394086718,0.3332749019026172,0.3326034565861048,0.3317486739645638,0.3302067048810144,0.3303596693722541,0.3285938027822989,0.3269365190315816,0.3270003292723082,0.3270552347003479,0.327883253554205,0.3275923662686847,0.3278415181229901,0.3288304376142356,0.32921036120821,0.3307027705376967,0.3314409794893261,0.33227440542629,0.3348098462317281,0.3372060173741083,0.3399024624240486,0.3424739058780443,0.347146124793872,0.3492183085326804,0.3518715763846622,0.35283054353959,0.3532061159179803,0.3585399661173571,0.3626953521412624,0.368377253814147,0.3700757575757575,0.0,2.1574985374167475,54.34489201395927,184.33277814099716,268.6611495196241,fqhc7_80Compliance_implementation_low_initial_treat_cost,26 -100000,95784,44316,418.3892925749603,6305,64.57237116846237,4982,51.45953395139063,1966,20.180823519585733,77.37208356525132,79.71091583308129,63.35007434272507,65.07947280824769,77.12175486129485,79.4592070865364,63.25726572931779,64.98816610743872,0.2503287039564696,251.7087465448924,0.0928086134072856,91.3067008089712,150.1511,105.17652360597766,156759.18733817755,109805.09026089904,334.29372,215.3592918957609,348453.93802722794,224285.61975416957,354.79062,171.4615911125636,366752.2446337593,176238.86303251685,3261.26358,1497.1633167807418,3369524.8266933938,1528083.3903478663,1180.55523,528.31639692385,1215509.4170216322,534889.9062749823,1928.27834,812.6246627272068,1980368.140816838,821250.0018134592,0.38136,100000,0,682505,7125.417606280798,0,0.0,0,0.0,28447,296.40649795372923,0,0.0,32493,335.5153261505053,1670162,0,60035,0,0,5951,0,0,56,0.5846487931178485,0,0.0,1,0.0104401570199615,0,0.0,0.06305,0.16532934759807,0.3118160190325139,0.01966,0.340654347167525,0.659345652832475,24.480591276413605,4.395815770914599,0.3327980730630269,0.223203532717784,0.2236049779205138,0.2203934162986752,11.406756431834689,5.994002625705715,21.017001251001084,12458.118535952271,56.81863769091826,13.376882702256657,18.72914785932519,12.655706551210246,12.056900578126164,0.5624247290244881,0.7850719424460432,0.6869722557297949,0.5897666068222621,0.1211293260473588,0.7220990391722099,0.910843373493976,0.864406779661017,0.7208480565371025,0.1570247933884297,0.5028933590520804,0.7101865136298422,0.6281124497991968,0.5451263537906137,0.1109813084112149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0043996593812091,0.0067179476771325,0.009254274133745,0.0113088579273873,0.0136931910734647,0.0159312601290401,0.0180725350531665,0.0204381948986265,0.0226998260157609,0.0247384224387944,0.0269912458050677,0.0292234157372667,0.0310131795716639,0.0332460247076535,0.0353563531915772,0.0374595025411185,0.0396241872426916,0.0416229414515039,0.0435493274476325,0.0579365327823519,0.0722413973433741,0.0852770061323968,0.0984123314875329,0.1106018942865872,0.1264830486091301,0.1394915056646565,0.1508793943131792,0.1616035511166597,0.1714876475755822,0.1848421279113549,0.198177553424924,0.2090374604692611,0.2198585436776457,0.2299046508814569,0.2402250102428383,0.2504155186453534,0.2594574541039449,0.2676937727442778,0.2762490409609857,0.2831528780307237,0.2906752411575563,0.2977842937879827,0.3035245931088995,0.3088044283130409,0.3140094833425703,0.3193926345041684,0.3249825141476442,0.3303005202805891,0.335012926713449,0.3338041051300675,0.3333974632054858,0.3323933732816355,0.3305561582411224,0.3296265461465271,0.3281968016665645,0.3269398292601802,0.3274103755768315,0.3280827312262439,0.3290089703727529,0.330072158185737,0.3310999110584049,0.3317486910994764,0.3319559536306984,0.3319228734913689,0.333768437540791,0.3332951650302007,0.3351450420274284,0.339225974574779,0.3394788299612913,0.3419404963210091,0.3441741629850428,0.3470351252675311,0.3510605829391118,0.3527688527688528,0.35257854179016,0.3608735491753207,0.3620313429875025,0.371645432366495,0.3795180722891566,0.0,2.14211343661265,59.53234529027244,191.06199955367933,267.2014135241226,fqhc7_80Compliance_implementation_low_initial_treat_cost,27 -100000,95638,44470,421.0251155398482,6330,64.92189297141303,4972,51.31851356155503,1955,19.992053367908152,77.25911226955019,79.65947757375775,63.27736057920528,65.04769907516805,77.01838454042553,79.42196795748478,63.1875911236481,64.96270917352487,0.2407277291246572,237.5096162729733,0.0897694555571817,84.98990164318343,149.49044,104.81383784373926,156308.62209581965,109594.34308929429,337.30069,217.06736278202104,352034.64104226354,226317.533597546,356.60167,172.95674736054673,369756.1743240135,178328.14064466357,3252.74906,1494.511812264821,3356612.8108074195,1518183.266342689,1203.32267,534.1417871570159,1241881.6056379264,542179.726841858,1914.25888,804.1122514262365,1958286.7897697568,801052.5606229663,0.38301,100000,0,679502,7104.937367991802,0,0.0,0,0.0,28642,298.79336665342225,0,0.0,32674,338.53698320751164,1663373,0,59770,0,0,5853,0,0,68,0.7005583554654008,0,0.0,2,0.020912189715385,0,0.0,0.0633,0.1652698362967024,0.3088467614533965,0.01955,0.3285606631499623,0.6714393368500376,24.56491499402155,4.309242313869087,0.33266291230893,0.2272727272727272,0.2135961383748994,0.2264682220434432,11.159100423588248,5.843326203127216,20.873605622782087,12491.061635379076,56.61740356315083,13.677401346291946,18.701743240694796,11.881341210319206,12.356917765844882,0.5623491552695092,0.7876106194690266,0.6916565900846433,0.5809792843691148,0.1287744227353463,0.745799853907962,0.9032258064516128,0.8761261261261262,0.7729083665338645,0.1916666666666666,0.4926450180405218,0.7155172413793104,0.6239669421487604,0.5215782983970407,0.1117381489841986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024006563819981,0.004522455105,0.0071047236262509,0.0095208096244513,0.0117605168116384,0.0137595991281852,0.0159777311010053,0.0180079014261359,0.0201288080147209,0.022079371091071,0.0241756889763779,0.0262655303419242,0.0283777668065498,0.0302768076974585,0.032467130384528,0.0344428244977303,0.0363425398338271,0.0385014636576909,0.0407023310483996,0.0429637815634187,0.0577716931244578,0.0718662602520189,0.0857136856254725,0.0985762726143088,0.1109198437004963,0.1274876346420665,0.1394550958627649,0.1508609666695081,0.1625245957738044,0.1727018900343642,0.1862587514428418,0.1991222366710013,0.2114207281204383,0.2219495091164095,0.2324999172833651,0.2430394367135701,0.2525987177048483,0.2621896888146987,0.2700925862735731,0.2781237791004987,0.2852865746811646,0.2917272769931021,0.2983207737494808,0.3045067577317108,0.3106984343754572,0.3152274665381335,0.3202761217445873,0.3249186810383315,0.3298413687462679,0.3345417978776893,0.3334638546083011,0.3321826542025103,0.3312820948096592,0.33089699065665,0.3301817747307732,0.3287081192505307,0.3263087632306665,0.3262202155357084,0.3264577684730754,0.3275584061917729,0.3290934711131987,0.3309170132699544,0.3321364829396325,0.3339886950110592,0.33436688779925,0.3350171857098219,0.3351075942160992,0.3399219438499307,0.3430158953439302,0.3448289578361177,0.3472837757572988,0.3497203728362184,0.3515713744793639,0.3490895295902883,0.35409866641798,0.3537190082644628,0.3533171028606208,0.3547868061142397,0.3704936217415419,0.3799533799533799,0.0,2.609313610451659,59.963736595235176,183.07417305958455,271.4221392744353,fqhc7_80Compliance_implementation_low_initial_treat_cost,28 -100000,95627,44166,418.0304725652797,6362,65.46268313342466,5024,52.056427577985296,1960,20.245328202285965,77.28554750318864,79.71812482031861,63.27381344368565,65.0721619462361,77.04043555725374,79.47101568300879,63.18394445703284,64.98367386182501,0.2451119459348945,247.10913730982043,0.0898689866528101,88.48808441108247,149.63124,104.8018134703965,156473.8410699907,109594.37551151504,334.0593,214.3500736457431,348824.6415761239,223641.19406277867,349.06579,168.69581443290275,361689.5855772952,173840.84710325862,3267.02215,1481.3294137018154,3388022.033526096,1520675.719387189,1161.33841,514.8903301532848,1204389.1787884175,528379.1817721816,1919.39658,799.4152243021564,1983316.5528564109,814523.2745340453,0.38087,100000,0,680142,7112.447321363214,0,0.0,0,0.0,28365,296.1192968513077,0,0.0,31944,330.7434092881718,1671019,0,59955,0,0,6063,0,0,77,0.8052119171363736,0,0.0,0,0.0,0,0.0,0.06362,0.1670386221020295,0.3080792203709525,0.0196,0.3324372759856631,0.6675627240143369,24.66961950039826,4.333177949395418,0.3186703821656051,0.2336783439490445,0.2314888535031847,0.2161624203821656,11.072395384351545,5.686436238122777,20.908045703362276,12498.368030711792,56.84594968073257,14.034274211001566,17.942773572265022,12.947229555837632,11.921672341628366,0.5549363057324841,0.7802385008517888,0.683947532792005,0.5666380051590714,0.1086556169429097,0.7234848484848485,0.918032786885246,0.8300492610837439,0.717948717948718,0.1401869158878504,0.4948704103671706,0.7014725568942436,0.6343096234309623,0.5202247191011236,0.1009174311926605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023611674098094,0.0048991266774183,0.0072696259594687,0.0093815114092595,0.0116693118463354,0.0137925414336501,0.0158827309728555,0.0180716737495913,0.020169579936791,0.0223774361705396,0.0243429556225764,0.0266335117806023,0.0288002305665349,0.0310477054385024,0.0330418082129544,0.0348066241194906,0.0367986901282928,0.0389348731423111,0.0409888108248764,0.0429326908032668,0.0572414153556682,0.0717294714339606,0.0851459554883046,0.0983449394759853,0.1111733141794828,0.1264655108503405,0.1387265424096232,0.1503208749973349,0.1617231638418079,0.172992834044199,0.1864554899824139,0.1986904297298469,0.2103754876108702,0.2211144466113022,0.231167800328523,0.2420563133302997,0.2530066615996781,0.2613404559849432,0.2702853182133239,0.2782815025390021,0.2852758960106537,0.2916978922716627,0.2981719894729355,0.30416771730125,0.3103402105775668,0.3161539601027059,0.3209511519813578,0.3255813953488372,0.3300768073070735,0.3349189989164619,0.3342630394653516,0.3327002215891105,0.3319184341155234,0.3310379746835443,0.3307659137882325,0.3294466008990626,0.3282397930848447,0.329042453373718,0.3292374041621029,0.330377615362568,0.3302805667636295,0.3317655428639184,0.332745739947956,0.3326247482658312,0.3335417468257022,0.3343646006655574,0.3355335845208079,0.3388843673699367,0.3422482239866277,0.3455594640528042,0.347970362289195,0.3479345863863226,0.3524962178517398,0.3531245248593583,0.3539125539500844,0.355284937337432,0.3580265770581946,0.3633791430881164,0.3667301933024775,0.3686982693754703,0.0,1.8283910115216573,58.368942878171225,187.4884977482104,279.3240191999442,fqhc7_80Compliance_implementation_low_initial_treat_cost,29 -100000,95814,44033,416.2230989208258,6431,65.95069614043877,5042,52.09050869392782,1966,20.268436762894776,77.35864855579545,79.66356449834178,63.35358995694328,65.05441025649654,77.11188485540193,79.41474626159575,63.26355360009679,64.9654984309762,0.2467637003935294,248.8182367460325,0.0900363568464897,88.91182552034138,151.47066,106.05245159428024,158087.7742292358,110685.34456530574,335.40228,215.12287532122505,349515.6762059824,223983.33006975797,347.75855,167.9064583080918,359049.72133508674,172351.39336172427,3306.5889,1500.105045222644,3420737.0843509296,1535481.239448184,1191.9852,527.9798939906148,1230655.9584194378,537665.5555449788,1929.91328,801.7825640610919,1990707.2035401925,816523.4115244617,0.38107,100000,0,688503,7185.807919510719,0,0.0,0,0.0,28517,297.06514705575387,0,0.0,31875,328.7828501054126,1665623,0,59779,0,0,6049,0,0,72,0.751455945895172,0,0.0,1,0.0104368881374329,0,0.0,0.06431,0.1687616448421549,0.3057067330119732,0.01966,0.3306055646481178,0.6693944353518821,24.538400474838426,4.395923740821774,0.3228877429591432,0.2362157873859579,0.2205474018246727,0.2203490678302261,11.233754114929056,5.661298771917614,20.98496202548419,12464.581849202865,57.06366461940695,14.21987995467942,18.38182956306083,12.24368738407089,12.218267717595811,0.5585085283617612,0.7758186397984886,0.6848894348894349,0.572841726618705,0.126012601260126,0.7299546142208775,0.917995444191344,0.8723404255319149,0.6842105263157895,0.1594827586206896,0.4975806451612903,0.6928191489361702,0.6190871369294606,0.5441176470588235,0.1171786120591581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023176730158087,0.0045174163619605,0.0069243792897188,0.0092544674114889,0.0116534249080527,0.013783632572097,0.0157682434910157,0.0176573194740546,0.0197065974705269,0.0218601035209394,0.0240187643395608,0.0260836564301392,0.0278522628037191,0.0299659384422239,0.0321792386687012,0.0341237709658762,0.0362552768810528,0.0383877756238143,0.0404989924590232,0.0423806450269628,0.0576901008794349,0.071498018880746,0.0849596478356566,0.097723737862037,0.1095432798701709,0.1249696188352654,0.1375292857975808,0.1493091380979226,0.1600836927281267,0.171074495342031,0.1848992818922731,0.1975292615910517,0.2094606350587211,0.2204344592229611,0.2306049665375132,0.2408852146545801,0.250234375,0.2595504859611231,0.2690614504856131,0.2769408772753829,0.2842792334043144,0.2913725903297166,0.298450025457947,0.3042185289109528,0.3095272833381967,0.3144343880243656,0.3195820820820821,0.3241706522845222,0.3294561092185536,0.3344113842173351,0.3343521934667277,0.3339525283797729,0.333492876851174,0.3324475766853446,0.3317830609212481,0.3297512437810945,0.3285021858962174,0.3291368088883045,0.3299217854147769,0.3303843260861778,0.3316426209798617,0.3327058730284536,0.3330458379788375,0.3335499047832418,0.3361613921762394,0.3382021883671012,0.3395222428837076,0.3443394736010616,0.3463789577603836,0.3512002236689699,0.3525597113759876,0.3529663053345437,0.3553755616022274,0.3538000461077384,0.3571226548505704,0.3571175008874689,0.3561875480399692,0.3617064707083078,0.3663865546218487,0.3700912336374454,0.0,2.029539067287134,58.28395498603593,190.49322619178503,277.6179830919995,fqhc7_80Compliance_implementation_low_initial_treat_cost,30 -100000,95876,44213,417.2577078726689,6280,64.33309691685093,4916,50.84692728107138,1944,19.973716049897785,77.41454581429173,79.70215891238786,63.37712166936033,65.06781546776031,77.17015288642449,79.4592196764478,63.28664410248721,64.98019261651551,0.2443929278672385,242.93923594005665,0.090477566873119,87.62285124480229,150.85378,105.78405313910577,157342.58834327673,110334.23707612517,336.4835,216.32184555057069,350525.6685719054,225195.9456736926,353.93017,170.52147713982407,367064.4999791397,176159.93364316868,3211.91581,1472.0069025464356,3322545.01647962,1507855.1374310656,1170.94226,513.2137599992509,1210153.917560182,524163.3445696812,1903.13988,797.690374595701,1956599.9624515,806922.2474241628,0.38,100000,0,685699,7151.9358337853055,0,0.0,0,0.0,28425,296.03863323459467,0,0.0,32497,336.86219700446406,1667826,0,59918,0,0,6042,0,0,64,0.657098752555384,0,0.0,0,0.0,0,0.0,0.0628,0.1652631578947368,0.3095541401273885,0.01944,0.3305020476262703,0.6694979523737297,24.61343738416836,4.382144999281278,0.3264849471114727,0.2377949552481692,0.2144019528071603,0.2213181448331977,11.35424072522514,5.964868119643108,20.68395214703473,12415.067489827496,55.8796235260388,14.013703449724233,18.07061385425587,11.74057359690729,12.054732625151397,0.564686737184703,0.776732249786142,0.7046728971962617,0.5853889943074004,0.1102941176470588,0.7300380228136882,0.908675799086758,0.8501228501228502,0.7628458498023716,0.1059907834101382,0.5043043599000278,0.6976744186046512,0.6552587646076795,0.529338327091136,0.1113662456946039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024700106291441,0.0047515323438528,0.0072401310118945,0.0093192292855257,0.011627197885964,0.0136753528220677,0.0158414832925835,0.0180853776712398,0.0203176873180448,0.0226149927889778,0.024634830885215,0.026762268176596,0.0286882719220731,0.0309926712779973,0.0330436217046591,0.0350547407560421,0.0369558020195331,0.0390486553707445,0.0410663123365029,0.0429482312068983,0.0574300371189056,0.0713666147624073,0.0843826604370508,0.0974065518689626,0.1097983467593323,0.1257261147842251,0.1383533200559345,0.1509247448979591,0.1625485426535228,0.1732085292322191,0.1862211416399509,0.1986507232901593,0.2106744319972184,0.2207871675517384,0.2305502742029431,0.2405337818399097,0.2499581841902786,0.25922346462887,0.2679640718562874,0.2753437360473503,0.2825815405968078,0.2889403454607117,0.2951921256861631,0.3011193403801443,0.3072669826224328,0.312537751315903,0.3173681179740116,0.3220317411833581,0.3266779893946662,0.3314356664509226,0.3308143059203879,0.3302783855564271,0.3297228012845794,0.3286828422876949,0.3292101628974058,0.3276621787025703,0.3251951581808413,0.3264871244283442,0.3266424292078447,0.3269357569277377,0.3278189023478391,0.3297095730408018,0.3307425515022356,0.3314399002049363,0.3317577618887662,0.3332553788587465,0.3347910040890504,0.3372074858624675,0.339771852473931,0.3411452137362201,0.3437726613488034,0.3458853395388195,0.3472534332084894,0.349472891566265,0.3528644620400559,0.355419559844651,0.3572516758074345,0.3622924260834346,0.3591780821917808,0.3733840304182509,0.0,1.6549091287250106,58.0616795344496,191.6795014914244,261.799412608301,fqhc7_80Compliance_implementation_low_initial_treat_cost,31 -100000,95708,43882,414.3749738788816,6363,65.37593513603879,5007,51.70936598821415,1927,19.7684624064864,77.36002699221102,79.73096831450029,63.33690834044432,65.08824462872137,77.12285505087668,79.49645748422792,63.24970994184288,65.00486183712766,0.2371719413343385,234.51083027237016,0.0871983986014441,83.38279159370643,150.72926,105.59989875833269,157488.67388306098,110335.49834740323,332.23271,212.8641589893876,346538.23086889286,221816.62869288636,350.72724,169.2941793304531,362338.8431479082,173823.5182100039,3262.11794,1476.4940832649331,3373666.799013667,1507978.7721663143,1179.1106,517.518172005215,1217642.0048480795,526396.6916490648,1883.0283,775.1314848875198,1934594.621139299,780281.0300735488,0.37875,100000,0,685133,7158.576085593681,0,0.0,0,0.0,28253,294.5835248882016,0,0.0,32191,332.31286830776946,1671505,0,59934,0,0,6027,0,0,60,0.6269068416433318,0,0.0,0,0.0,0,0.0,0.06363,0.168,0.3028445701713028,0.01927,0.3312387791741472,0.6687612208258528,24.674946280638544,4.337376073098722,0.3133612941881366,0.2402636309167166,0.2292790093868583,0.2170960655082884,11.470764106888437,6.065804629896624,20.332738763970823,12386.540343535264,56.721375356901326,14.461855112321102,17.72601291585262,12.847198634532134,11.686308694195477,0.578789694427801,0.7863674147963424,0.7214786488209051,0.5984320557491289,0.1223551057957681,0.7472527472527473,0.9052631578947368,0.8782816229116945,0.7090909090909091,0.1377551020408163,0.515650741350906,0.7087912087912088,0.6643478260869565,0.563573883161512,0.1189674523007856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021472485845377,0.0044197102859633,0.0067483230670874,0.0091326520246246,0.0116359493876886,0.0136756140279418,0.0160958205912334,0.0183204392822878,0.0203731152568361,0.0226151231597698,0.0248621050257335,0.0269188123691018,0.0290197852823824,0.031105480538475,0.0331510524143623,0.0350282252228035,0.0372430797281617,0.0393697518242114,0.0413866988412972,0.0433369108774708,0.0574075234454957,0.0713485792035166,0.0843124501699467,0.0963914977755808,0.1082984533310841,0.1230891214716143,0.1359407652568713,0.1476660777761222,0.1584658599365581,0.1690408255207774,0.1823528778102142,0.1945986301814522,0.2066207316277957,0.2176688565088595,0.2281079892230714,0.2380061132276069,0.2483377956269522,0.2573902288188002,0.2664580711718758,0.2744725424427323,0.2819979188345473,0.2892184359369887,0.2960965861388012,0.3020519082507302,0.3075382131193317,0.3132935164090881,0.3175784719702751,0.3221739240956811,0.327057453416149,0.3318121265679201,0.3306587326162172,0.3305526877279923,0.3296156340768731,0.3300209734577276,0.3294624934949074,0.32701704937118,0.325461102850454,0.325930539393244,0.3280146080070992,0.3283781615956366,0.3300641973460106,0.3313266091625051,0.3321777629270737,0.333377902571645,0.3361860242119142,0.3374060883354564,0.3389709860197603,0.342989388834661,0.3465503289589417,0.3488010214260064,0.3509703405346027,0.3543622013651877,0.3561540397684369,0.3603013928000609,0.364880059970015,0.3674556213017751,0.3740831295843521,0.3718940936863544,0.3707927677329624,0.3754833720030935,0.0,2.3942807785878224,59.92850802163577,182.67143796546776,274.6633162062735,fqhc7_80Compliance_implementation_low_initial_treat_cost,32 -100000,95745,44293,419.69815656170033,6330,64.71356206590423,4930,50.8538304872317,1931,19.75037860984908,77.33346816806463,79.69632760176405,63.32120940122799,65.07047033824651,77.09025255850429,79.4561138208472,63.23058213079079,64.98379640714873,0.2432156095603375,240.21378091686077,0.0906272704371957,86.67393109777777,151.5448,106.07565351925932,158279.5968457883,110789.7577098118,335.37355,215.61136212366628,349627.58368583216,224543.6447593416,347.7243,167.69258010222796,359342.2633035668,172111.12787118318,3222.79627,1474.3586930369231,3325757.700141,1499681.862338839,1178.80388,522.2793691389842,1213753.595488015,528085.6476522502,1896.4258,799.2765921676647,1941628.7012376627,800699.1642011999,0.38339,100000,0,688840,7194.527129354013,0,0.0,0,0.0,28533,297.3314533396,0,0.0,31948,329.855344926628,1664666,0,59756,0,0,6016,0,0,64,0.6579978066739777,0,0.0,0,0.0,0,0.0,0.0633,0.1651060278045854,0.3050552922590837,0.01931,0.326668671076368,0.673331328923632,24.69303286589485,4.412999573926961,0.3190669371196754,0.2373225152129817,0.2196754563894523,0.2239350912778904,11.307576196496088,5.777904502436953,20.57855721719982,12479.883048983422,56.11104958296189,14.086334493455068,17.78938044464773,12.054220999913182,12.181113644945912,0.5649087221095335,0.7888888888888889,0.6891290527654164,0.5974145891043398,0.118659420289855,0.7406015037593985,0.9046511627906976,0.8609756097560975,0.7814814814814814,0.1454545454545454,0.5,0.7216216216216216,0.6285468615649183,0.5362853628536285,0.1119909502262443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023000151983383,0.0047154504522776,0.0069220307330044,0.0091243471722652,0.011482679359655,0.0136749177773931,0.0157097418749745,0.0180441305545916,0.0201238706512407,0.0224171639728537,0.0244507550516182,0.0267234741543041,0.0288246968933496,0.0307106076210092,0.032675085634105,0.0344813329474511,0.03606486083499,0.0378633019621678,0.0401917059123184,0.0420563667798446,0.0570059605206843,0.0713351264796073,0.0844980273650633,0.0976104835825918,0.1099346129508542,0.1257494527805094,0.1387904509283819,0.150522069545411,0.1616004101424817,0.1722577324010124,0.1848659829354477,0.1978661703601108,0.2100614564638059,0.2207296395558715,0.2307768475020078,0.241048586269146,0.2506838150740753,0.2599320233191527,0.2687392172886588,0.2766154797485314,0.2839296248742062,0.2922709834378216,0.2987693764051591,0.3044150242616665,0.309868213479601,0.3158529531217309,0.3203669908252293,0.3259245139153641,0.3307979872456569,0.3352247235491277,0.3338676652836898,0.3328473979535702,0.3322490248264402,0.3309967046308608,0.3312224055657137,0.3294316177034594,0.3275605036952453,0.3279084677220496,0.3279170800123148,0.3292861740934125,0.3299390529770276,0.3309995648906293,0.3323703052380354,0.3338106638623498,0.3368182694160724,0.3387573577501635,0.3392760516048187,0.3419304046606833,0.344549646263771,0.347869216728831,0.3513710154153972,0.3550098127618946,0.3575520997292702,0.3580425986716543,0.3614730878186968,0.3670263788968825,0.3772859996926387,0.3840327533265097,0.3923270792495099,0.3944530046224961,0.0,2.399561485585607,58.24799101604661,187.89421014357225,266.04853700201016,fqhc7_80Compliance_implementation_low_initial_treat_cost,33 -100000,95803,43740,414.298090873981,6418,65.90607809776311,5068,52.38875609323299,2013,20.68828742314959,77.34149214859087,79.67987923195588,63.33904717832892,65.07217372096976,77.10198859510113,79.4408331560493,63.251111868664,64.98644738405845,0.2395035534897402,239.046075906586,0.0879353096649211,85.72633691130704,150.34734,105.24251024792127,156933.853845913,109853.04243908988,334.09813,214.0096767856074,348192.812333643,222843.44622361235,341.68161,164.30284774323806,353217.7071699216,168907.2164943522,3369.6692,1520.9083823227186,3484292.2037932007,1554539.6723721786,1219.67206,526.575497413711,1261633.059507531,538174.2023576387,1984.62,819.0581542350465,2041432.105466426,829863.5376626888,0.37959,100000,0,683397,7133.356992996044,0,0.0,0,0.0,28403,295.930190077555,0,0.0,31409,324.499232800643,1676377,0,60107,0,0,5937,0,0,69,0.7097898813189566,0,0.0,0,0.0,0,0.0,0.06418,0.1690771622013225,0.3136491118728576,0.02013,0.3404631951615282,0.6595368048384718,24.62117820003799,4.374273132086361,0.3151144435674822,0.2231649565903709,0.2255327545382794,0.2361878453038674,10.9690429370752,5.531324083579429,21.25969712453477,12429.66513979014,57.32690539192223,13.599123883703712,18.01661632317296,12.729961683159802,12.981203501885764,0.5542620363062352,0.7833775419982316,0.6963055729492799,0.5923009623797025,0.1119465329991645,0.7261345852895149,0.9328358208955224,0.8926701570680629,0.732824427480916,0.0862068965517241,0.4963060686015831,0.700960219478738,0.6345679012345679,0.5505107832009081,0.1181347150259067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.004541629917987,0.0066873002181744,0.009043612567573,0.0113852571602991,0.0134153670635931,0.0153190274151436,0.0173390926079098,0.0192244764397905,0.021390976673698,0.0233676482651136,0.0254875180990131,0.0275357697569405,0.0297311218708148,0.0317291619373877,0.0335517747503772,0.0354753867500569,0.0374174005954418,0.0395270059643799,0.041453258380179,0.0564974698732328,0.071172405140055,0.085088546578644,0.0978626371316884,0.1097001949523157,0.1255469823485889,0.1380004876342319,0.1495294305311852,0.1610049200098186,0.1716787413726583,0.1852122908034224,0.1968175381322494,0.2085383737982727,0.2191590725321794,0.2285645180795743,0.2390413991587336,0.2489383756311231,0.2583086319949699,0.2670690690010532,0.2751031794121346,0.2828097398773856,0.2903493205062345,0.2982165861037902,0.3044009048365669,0.3098002110702718,0.3146573471321511,0.3191388337019405,0.3242618578957394,0.3293874386146291,0.334478672985782,0.3341984938138784,0.333388300284454,0.3334130994777664,0.3316097349606413,0.3301289670747652,0.3285112897053195,0.3266757475924987,0.3278777421740202,0.3293022937584455,0.3304128596205768,0.3313315191892653,0.3339274397972117,0.3345792037628086,0.3368154408303257,0.336777807286511,0.338401151380348,0.339193886638513,0.3421328504717431,0.3440357218796513,0.3465834033865738,0.3484323775222792,0.3518030848605363,0.3572522982635342,0.356855151045701,0.3604884098063531,0.3609275501622011,0.3627986881149461,0.3686931348221671,0.3676056338028169,0.3666019417475728,0.0,1.9361262763659044,56.36718673351193,196.00892380501315,282.6092144490388,fqhc7_80Compliance_implementation_low_initial_treat_cost,34 -100000,95705,44267,418.7659996865368,6422,65.9735645995507,5026,51.97220625881616,1972,20.218379395015933,77.3419109081298,79.71267248611596,63.33255108723839,65.08183620464321,77.10009412558769,79.47278570660364,63.24285413015565,64.99579428335049,0.2418167825421164,239.88677951231807,0.0896969570827366,86.04192129271837,151.74214,106.30055014684436,158551.9460843216,111071.05182262616,337.37371,216.88129699755245,351947.8606133431,226048.0507784885,351.66108,169.3717682704203,364689.43106420775,174788.7951296405,3297.79135,1507.76153607443,3409960.723055222,1539883.0835869722,1224.35008,539.3008016569564,1262464.4166971422,546716.1296264388,1937.72812,814.4482495729593,1988331.8321926757,817813.0787519894,0.38208,100000,0,689737,7206.906640196437,0,0.0,0,0.0,28605,298.31252285669507,0,0.0,32348,335.228044511781,1663344,0,59681,0,0,6003,0,0,63,0.6582728175121467,0,0.0,2,0.0208975497622903,0,0.0,0.06422,0.1680799832495812,0.3070694487698536,0.01972,0.3262390236642357,0.6737609763357643,24.66070680456645,4.339019116454879,0.3366494230003979,0.2266215678471946,0.2097095105451651,0.2270194986072423,10.996977499867118,5.720370082044529,20.97525829266944,12531.961726075788,57.20979987550884,13.6672679615718,19.225028585636483,11.840793437777386,12.476709890523182,0.564066852367688,0.7647058823529411,0.7056737588652482,0.5996204933586338,0.1209465381244522,0.7280118255728012,0.8873239436619719,0.8656036446469249,0.7423076923076923,0.1491228070175438,0.5036754696433433,0.6914446002805049,0.6496408619313647,0.552896725440806,0.1139101861993428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100777705767,0.0046620046620046,0.0068878068573747,0.0091005119037945,0.0114389718143734,0.0135924900219923,0.0156375832084569,0.0176675920633624,0.0200122649223221,0.0221376155239645,0.0243364873038165,0.0263482153858791,0.0283825056816428,0.0304441445246901,0.0325573235919344,0.0345683096261991,0.0368375811679905,0.0390415010533525,0.0410614205650234,0.0431021905416953,0.0580998234968511,0.0725733008133485,0.0867224880382775,0.0998327530530456,0.1122422068674508,0.1281663316051211,0.140701918180275,0.152530102524247,0.1638407213906428,0.1736028409883377,0.1864625857667575,0.198807243129742,0.2101318423113741,0.2205612177944971,0.2311635171700728,0.2413174647107666,0.2513577107936614,0.2604238097914676,0.2694510929364656,0.2773886370919745,0.284241821294711,0.2916691046540203,0.2984210775494745,0.3039236835166942,0.3095755926272432,0.3154695110672668,0.3204500181661008,0.326745902473786,0.3318701524038897,0.3358811823776703,0.3362536503963287,0.3356280143451914,0.335192940052275,0.3342655729669728,0.3339265059168965,0.3324620135131004,0.3295567670063996,0.3304524656837824,0.3309815846117052,0.3315465022782096,0.3314894335164732,0.3330628562381253,0.3345449197411547,0.3350451884909511,0.3365298894055851,0.338006840552466,0.3376660477074704,0.3408840301187738,0.3436651503931732,0.347445780245237,0.3518391592414896,0.3552519214346712,0.3582789430327609,0.3567359507313318,0.3589035880841343,0.364539686340237,0.3658761934093009,0.3699814700432365,0.3644781144781144,0.3570050173678116,0.0,2.104872716127981,59.788212084190114,187.16439839526632,277.3257326870857,fqhc7_80Compliance_implementation_low_initial_treat_cost,35 -100000,95713,43884,415.3981172881427,6297,64.67251052626081,4932,50.99620741174135,2018,20.72863665332818,77.33810060160408,79.72070202132137,63.31256206328344,65.07494820286284,77.08925517430667,79.4728312201092,63.2209345174565,64.986148809212,0.248845427297411,247.8708012121729,0.0916275458269382,88.7993936508451,151.75578,106.25046158058872,158552.94474104873,111009.43610647324,333.27599,213.87372380535845,347673.3568062855,222923.04473306495,343.49704,165.3872578958204,355762.634124936,170370.66732470883,3255.4896,1472.6237661104312,3368274.800706278,1505554.1317380422,1177.30501,521.7443154663703,1213233.1762665468,528309.8173355456,1978.8107,824.7997675081283,2034666.1999937312,833375.5346097548,0.37938,100000,0,689799,7206.952033684035,0,0.0,0,0.0,28282,294.92336464221165,0,0.0,31453,325.5043724467941,1664562,0,59740,0,0,5974,0,0,64,0.6686656984944574,0,0.0,1,0.0104479015389758,0,0.0,0.06297,0.1659813379724814,0.32047006511037,0.02018,0.3402640764911215,0.6597359235088784,24.721033730921487,4.401548500013031,0.3266423357664234,0.2274939172749391,0.2128953771289537,0.2329683698296837,11.238786421723669,5.7443071858857015,21.456620051417683,12403.226791579598,55.68701260268156,13.45861719812742,17.93794693081689,11.70925654546344,12.581191928273824,0.5547445255474452,0.7941176470588235,0.6852886405959032,0.579047619047619,0.1157528285465622,0.7250589159465829,0.931472081218274,0.8556962025316456,0.7520661157024794,0.1487603305785124,0.4954905711943154,0.7197802197802198,0.6299342105263158,0.5272277227722773,0.1069459757442116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002432547485354,0.0044735240413877,0.0066095396673909,0.0088521657824664,0.0108973250170429,0.0131901934222186,0.0152683434306346,0.0173634163032265,0.0195837807434678,0.021604464240004,0.0235133666259908,0.0256502407918921,0.0276583931398959,0.0297410020081355,0.0316910126268878,0.0338345476153567,0.0359084272978597,0.0380046273720469,0.0400993907637286,0.0423355383092869,0.0566863349172367,0.070671119160028,0.083668223073291,0.0963494283821163,0.1085156867914579,0.1245015179241989,0.1376957684308815,0.1495501251131342,0.1606932957192622,0.1714135530310344,0.1848651676919596,0.1972373776738546,0.2086335633585127,0.2188932780373576,0.2290015847860538,0.2398368577381744,0.2498296641311753,0.2587468479827089,0.2674328805705719,0.2756798275783005,0.2829131003810472,0.2906893684789863,0.2976344187919781,0.3031742034512117,0.3090800782912092,0.3138917691206241,0.3183960490360751,0.3234146714602616,0.3282991962665283,0.3328931382388674,0.3318158553996175,0.3311167100353833,0.3310033821871477,0.3296720766551529,0.3292953015146335,0.3285048591311812,0.3275804740567158,0.3277469551229441,0.3291067858302431,0.3297389938229728,0.3299028980617103,0.331455231994939,0.3323122114981116,0.3318157351753835,0.3333574146317969,0.3337233489339573,0.3357010939053843,0.3393591312807959,0.3427791771620487,0.3445305090104331,0.3471444062895355,0.3516315789473684,0.3566132951217993,0.3597441685477803,0.3607930745601787,0.3588172929673695,0.3565059694725706,0.3595190380761523,0.3572789115646258,0.3614274867122247,0.0,2.10677364011163,55.99289944931692,185.3770090641653,275.0001238597911,fqhc7_80Compliance_implementation_low_initial_treat_cost,36 -100000,95649,43738,414.3587491766773,6250,64.04667063952577,4917,50.81077690305178,1974,20.292946084120064,77.27782633283482,79.68634814334249,63.2892740309558,65.0711936086955,77.02981077403349,79.43935889550336,63.19778843869985,64.9827220148414,0.2480155588013275,246.9892478391245,0.0914855922559425,88.47159385409498,151.16574,105.93490647458708,158041.92411839118,110753.58809458234,335.47968,215.4859938766128,350121.0362889314,224669.83973759552,348.88034,168.76840952662687,360178.8518437203,173120.79470667063,3225.23537,1473.5676365286822,3334260.765925415,1502971.5143385483,1164.39596,513.567581949652,1202622.620205125,522188.5560221768,1939.51866,812.9295883587408,1995111.7941640792,821543.4200626113,0.37871,100000,0,687117,7183.723823563237,0,0.0,0,0.0,28519,297.5253269767588,0,0.0,32033,330.4477830400736,1664005,0,59681,0,0,5980,0,0,57,0.5959288649123358,0,0.0,1,0.010454892366883,0,0.0,0.0625,0.1650339309762087,0.31584,0.01974,0.3222307104660046,0.6777692895339954,24.6459863284049,4.368715536636592,0.3203172666259914,0.2383567215781981,0.2109009558673988,0.2304250559284116,11.254079592190571,5.865347854929881,21.07827645598284,12355.435610071654,55.679064335282725,13.990909080931598,17.73549179032465,11.502820690428983,12.449842773597478,0.5556233475696563,0.7994880546075085,0.6958730158730159,0.5564127290260367,0.1076787290379523,0.7119029567854435,0.927400468384075,0.8614609571788413,0.7113821138211383,0.1044176706827309,0.4983324068927182,0.7261744966442953,0.6400679117147708,0.5082174462705437,0.1085972850678733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019354315708408,0.0040868895018659,0.0063143361825675,0.0084555423437706,0.0108957729284297,0.013131488065525,0.0153187149413564,0.0175472642405548,0.019670219512694,0.0218395632087358,0.0237743589743589,0.0259565507678085,0.0279572769180111,0.0300331869808092,0.0320669006813958,0.0342555722190619,0.0364544474840421,0.0382522739543963,0.0402189408838801,0.0419985819743921,0.05672246953832,0.0707044259651033,0.0843095268085821,0.0963701996442816,0.1086229276374803,0.1234492103146038,0.1365108696806533,0.1484598911109453,0.1593296113285845,0.1695672245901463,0.1832386822849876,0.1955302423284319,0.2076671056784909,0.2187120424577337,0.2290079697063097,0.2392434097532328,0.2489840575179743,0.2576286061478914,0.2667241633662804,0.2742932356644157,0.2811607607376148,0.2879099558194441,0.2949580726425471,0.3013242255377794,0.3065790113255237,0.312705069692858,0.3185991457594849,0.3238552437223043,0.3289026635889722,0.3329459002535925,0.3329375733617561,0.3314334607582009,0.3304554253981263,0.3300005796093433,0.3292237510994499,0.3272545705945613,0.3243320519744575,0.3254552946023897,0.3257683539313324,0.3259405231099964,0.327593984962406,0.3290468536048104,0.3306700868358529,0.3304564203730272,0.3312028171052314,0.3317676530452481,0.3322850853369164,0.3352742001835385,0.3395898382060743,0.3426909965911369,0.3438461185328008,0.3494927923117992,0.3529560703886568,0.3571098799630655,0.3591154977697637,0.3592023065833734,0.3588947531822415,0.3517141676992978,0.3521641371557054,0.3456505003849114,0.0,2.2208801651015784,57.80487244620128,178.52374674813083,275.91380723684495,fqhc7_80Compliance_implementation_low_initial_treat_cost,37 -100000,95823,44079,416.8832117550066,6249,64.01385888565376,4876,50.35325548146061,1967,20.162174008327856,77.39792083527668,79.70234273102177,63.37134666233783,65.07175922506896,77.15619580619688,79.46289573486243,63.28100800294085,64.98536208516379,0.2417250290798023,239.4469961593444,0.090338659396977,86.3971399051735,152.0948,106.4791461837739,158723.58410819952,111119.57487586036,334.73306,214.8688041064556,348789.64340502804,223701.50197345985,343.77573,165.35242155812935,355868.8415098671,170281.43916843715,3195.58867,1446.4707513835224,3301759.932375317,1476513.8174360665,1192.25416,520.3488839361238,1229249.9191217138,528299.9359681925,1928.63246,806.520527750027,1978420.1913945505,810618.5567059468,0.3814,100000,0,691340,7214.708368554523,0,0.0,0,0.0,28462,296.4632708222452,0,0.0,31556,326.42476232219826,1665783,0,59728,0,0,6075,0,0,57,0.5948467486929025,0,0.0,0,0.0,0,0.0,0.06249,0.1638437336130047,0.3147703632581213,0.01967,0.3184246679896199,0.6815753320103801,24.773301855285737,4.405694962368879,0.3076292042657916,0.2456931911402789,0.2147251845775225,0.2319524200164069,11.187330372701968,5.762024291024108,20.78053655608605,12410.60320105952,55.014162670057566,14.285993948160227,16.84308458490222,11.58301010581166,12.302074031183448,0.5547579983593109,0.7871452420701168,0.676,0.5644699140401146,0.138815207780725,0.7130365659777425,0.927860696517413,0.820855614973262,0.7125506072874493,0.1744680851063829,0.4997236042012161,0.7160804020100503,0.627886323268206,0.51875,0.1294642857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022373855997408,0.0046915056389263,0.0067853339418834,0.0088441659981925,0.0108063597918022,0.0131485213001974,0.0150801899288785,0.0173731191022698,0.019545538140875,0.0214032862024513,0.0233797102637132,0.0255247553193672,0.0277603690423597,0.0298436808578514,0.0320253151509529,0.0340939597315436,0.0361994227128358,0.0384639303482587,0.0403227481359945,0.0422867966944901,0.0566862436235799,0.0707382381858879,0.084288455690362,0.0968898515371998,0.1091984314386911,0.1245466944376896,0.1380637772145455,0.1503400853672815,0.1618661994401829,0.1727433628318584,0.1855035002692514,0.1980637135594137,0.2100307685617056,0.2199127477886266,0.2299427012878463,0.240264413761031,0.2502397787344144,0.2594787262750742,0.2686848072562358,0.2764211827169535,0.2831689579021609,0.2908190093364026,0.297651149588419,0.3033908245460747,0.3081931830582871,0.3132727250359836,0.318428776618997,0.3233199172179124,0.3281058088872225,0.3326445193218911,0.3317316081231628,0.331220676598897,0.3311275956053837,0.3305527942256991,0.3289678365605416,0.3277037850702549,0.3262855610079366,0.3272283871812498,0.3281742717370924,0.3273365902364226,0.3284386165098487,0.3290159532459327,0.3304580855874717,0.3315566703245022,0.3328672677305819,0.3334465283945457,0.3346123009964494,0.3383851167499841,0.3405034324942791,0.3443300608132278,0.3456643164545371,0.3473841874398202,0.3494610019023462,0.3521882425078562,0.3549397361677897,0.355685479059778,0.3553846153846154,0.3566221142162818,0.3563218390804598,0.3548510313216195,0.0,2.084305625915808,55.29355821672363,182.82887862910036,272.1993912456632,fqhc7_80Compliance_implementation_low_initial_treat_cost,38 -100000,95556,44109,417.48294193980496,6207,63.774121980828,4872,50.43116078529867,1944,20.00920925949182,77.19945181010942,79.67055932472475,63.224607941291474,65.05373172659323,76.96151618494429,79.43248743769347,63.136496689765735,64.9678602885569,0.2379356251651359,238.0718870312819,0.0881112515257385,85.87143803632102,150.09588,105.16263303425178,157076.35313324124,110053.40641534992,331.48195,213.2851411804608,346322.8787307966,222629.11923946257,347.6791,168.0070995891849,359929.1514923186,172853.1309975216,3235.49492,1475.774156170478,3352436.3828540333,1510876.7070309334,1220.37622,539.2693899037072,1262125.0366277366,549352.2625571021,1915.22808,798.5787177152857,1972802.0846414668,809218.048036907,0.37971,100000,0,682254,7139.834233329148,0,0.0,0,0.0,28103,293.5032860312278,0,0.0,31911,330.15195278161497,1666461,0,59783,0,0,5856,0,0,56,0.5755787182385198,0,0.0,0,0.0,0,0.0,0.06207,0.1634668562850596,0.3131947800869985,0.01944,0.3243408951563458,0.6756591048436542,24.645778680554965,4.375150760985407,0.3175287356321839,0.2192118226600985,0.2337848932676519,0.2294745484400656,11.35665127834153,5.919920486007481,20.76093171133873,12442.718686596343,55.49269650938766,12.782400532840612,17.70037781351127,12.66335352308421,12.346564639951572,0.5656814449917899,0.7949438202247191,0.7052359405300582,0.5803336259877085,0.1386404293381037,0.7314814814814815,0.9151193633952256,0.8606356968215159,0.7256317689530686,0.2145922746781116,0.5055928411633109,0.7293777134587555,0.6493848857644992,0.5336426914153132,0.1186440677966101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022604940649359,0.0043018607576956,0.0067024128686327,0.0091813079551,0.0114529462067842,0.0139860139860139,0.0160840945042608,0.0183527488248518,0.0203540728612361,0.0226380676170077,0.0246160794941282,0.0268889071690042,0.0287638644298204,0.0310391780652348,0.0330694665481677,0.0352462579963977,0.0375014260083175,0.0394824360839742,0.041467454142058,0.0432217988202745,0.0578150170505659,0.0722285139046181,0.0853550855653197,0.0980516127672578,0.1104017588178714,0.1259846693737343,0.1389574468085106,0.1506200243314195,0.1620799365820737,0.1724697836466084,0.1861582653017148,0.1982506972252064,0.2101537018250046,0.2208779396279396,0.2313439424371509,0.2411560205702353,0.2509678863153183,0.2592320971217745,0.2681239403283986,0.2764791692989811,0.2833348798366892,0.2904020265515785,0.2963450656606997,0.3018666218228991,0.3071499031822001,0.3134214005906849,0.3186802145216594,0.3227123661745377,0.3276571977815012,0.3320229255185376,0.3315498628619296,0.3310887263695322,0.3303966001666031,0.3298715218934225,0.3290699581115931,0.3273925668720328,0.3256637449186992,0.325895285024473,0.3278812323006951,0.3289013296011197,0.329679642917679,0.3301703259618057,0.3314495381890261,0.3322019420967452,0.3332365817671673,0.3351693025939622,0.3356178132079259,0.3385110816442508,0.341010899086452,0.3443293239649081,0.3468082210426024,0.3452343171479953,0.3460235825388861,0.3481504034099558,0.3516699410609037,0.3560265214302628,0.3599514194625778,0.3573280159521436,0.3642798802069153,0.3656404408969973,0.0,2.083411970740097,57.16482741234877,186.89093434941077,264.96837471522645,fqhc7_80Compliance_implementation_low_initial_treat_cost,39 -100000,95676,43924,415.0048078933066,6179,63.41193193695389,4863,50.16932145992725,1914,19.68100673105063,77.33990302576841,79.73233515616592,63.32261558699434,65.08975914357895,77.09686954670211,79.49001893894105,63.23295054093327,65.00290273687726,0.2430334790662982,242.31621722486807,0.0896650460610715,86.85640670168482,151.3193,105.98824230125872,158157.82432375936,110778.06586945392,335.81159,216.3612094963528,350328.0341987542,225479.862462602,348.37741,168.75561360025506,360213.10464484297,173305.96105741238,3225.17414,1476.9383764947406,3331164.262720013,1503990.63374992,1174.98044,517.8461539105554,1210835.8417994063,524068.6812016294,1883.66946,791.7491003376336,1937653.601739203,799583.2361476592,0.37858,100000,0,687815,7188.992014716334,0,0.0,0,0.0,28539,297.598143735106,0,0.0,31961,330.1141352063213,1664116,0,59709,0,0,5878,0,0,61,0.6375684602199089,0,0.0,0,0.0,0,0.0,0.06179,0.1632151724866606,0.3097588606570642,0.01914,0.3335901386748844,0.6664098613251156,24.621898172561597,4.492316996668673,0.3131811638906025,0.2251696483652066,0.2298992391527863,0.2317499485914045,11.216522598274224,5.68512620704642,20.48831362134997,12358.426372049442,55.36214237870766,13.207487422036358,17.342440634113615,12.451324238265572,12.36089008429212,0.5601480567550895,0.7972602739726027,0.7045305318450427,0.5760286225402504,0.1188997338065661,0.7157974300831443,0.908450704225352,0.8673469387755102,0.7366412213740458,0.1111111111111111,0.5019774011299435,0.726457399103139,0.6480990274093722,0.5268691588785047,0.1210407239819004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.004541077492271,0.0068593925987559,0.0092227684556941,0.0116632602218764,0.0141696695779637,0.0164410649488319,0.0184228790724259,0.0205164376840039,0.0224979016970664,0.024686042339433,0.0266377876778418,0.028741246516602,0.030839590865548,0.0329655585257356,0.0348442863642003,0.0369553055262012,0.0389865166440041,0.0411946446961895,0.0433237081591593,0.0582065853250877,0.0716289782244556,0.0853878595858075,0.0979371140636012,0.1098897621182551,0.1248690905628841,0.1381878361605295,0.1497296606922389,0.1615511128198556,0.1729616724738676,0.1855293762922122,0.1971893459116775,0.2088987473903966,0.2193423555390367,0.2289864641795972,0.2396557834581136,0.2496597273356092,0.2582187619540514,0.2660154964888995,0.2741787694140285,0.2813132656956768,0.2885541886898358,0.2949438534628628,0.3004336575782261,0.3061898345411947,0.3114105864817256,0.3162694689435166,0.3205250505590109,0.3253711236042385,0.329980330811981,0.3296330225790806,0.3289296232075523,0.327442109565487,0.3265190972222222,0.3251268167145174,0.3239509954058193,0.3227634682666582,0.3230430713147999,0.3239674497159527,0.3244114974072028,0.3251384523274959,0.3265926774359177,0.3282926523185041,0.3284480443927325,0.3288446714203122,0.3305843359344416,0.3319535242227868,0.3351414424926677,0.3391053391053391,0.3421908463551995,0.3415855101483571,0.3438098276962348,0.3431922810115406,0.3463648834019204,0.3461610662661911,0.3471465782618991,0.3495384615384615,0.3538461538461538,0.3556426771212545,0.3557617942768755,0.0,2.485566480807158,57.83054964833054,182.59023919399823,264.2675869004229,fqhc7_80Compliance_implementation_low_initial_treat_cost,40 -100000,95794,44179,417.9071758147692,6361,65.24416978098837,4960,51.2975760486043,1945,19.96993548656492,77.331780499572,79.67083300146516,63.32970022966426,65.06198705257678,77.0901736190527,79.42954345992185,63.24082313184406,64.97520232208224,0.2416068805192992,241.28954154330984,0.0888770978202018,86.78473049454283,149.6715,104.8568551940864,156243.08411800323,109460.77540773578,331.86529,213.12369015064772,345963.8599494749,222009.55756087136,349.50534,169.3565959982679,361618.1911184416,174263.5921567654,3226.42115,1474.3796657412156,3341623.838653778,1512718.7805835456,1164.75119,513.0532199087353,1206460.9474497358,526193.8958125307,1906.50446,796.5863385602773,1961246.9465728544,808131.9416537533,0.38122,100000,0,680325,7101.958369000146,0,0.0,0,0.0,28211,293.9954485667161,0,0.0,32036,331.22116207695683,1674121,0,60174,0,0,6045,0,0,75,0.7724909702069024,0,0.0,1,0.0104390671649581,0,0.0,0.06361,0.1668590315303499,0.3057695330922811,0.01945,0.3331833858149647,0.6668166141850352,24.462577896319463,4.331677845439582,0.3147177419354838,0.2459677419354838,0.2157258064516129,0.2235887096774193,10.869453161694462,5.549259950636635,20.79435208869482,12510.907223003089,56.42859481905207,14.657213986599698,17.71213365259947,11.909649640128572,12.149597539724326,0.5542338709677419,0.7737704918032787,0.6873798846893018,0.5785046728971963,0.1018935978358882,0.7343635025754232,0.9043659043659044,0.8469135802469135,0.736,0.1614349775784753,0.4862538183837823,0.6887686062246279,0.6314878892733564,0.5304878048780488,0.0869074492099322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023195745758419,0.0045821337334252,0.0071133570783484,0.0092750619691982,0.0114314772438342,0.0137883277833786,0.0158132990762831,0.0180285025930009,0.0200772832287215,0.0222961560116701,0.0241009554270718,0.0262131137441731,0.0282661895654677,0.0301603815370669,0.032241085711337,0.0341562254476285,0.0362480193046594,0.038417258725302,0.0405582342671876,0.0424714444872502,0.0571306334978556,0.0718036147602711,0.0857625022273932,0.0986634724498802,0.1113932586637445,0.1267699395578849,0.1399773187353605,0.1519794978679058,0.1633086461912791,0.1740197128776515,0.1873351775507787,0.1996041231761003,0.2111181191413471,0.2212549079653954,0.2314092334782369,0.2410374014003368,0.2504546722454672,0.2591971927614634,0.2684190830432169,0.2763918623421525,0.2842061445602026,0.2915025192008697,0.2989434578388802,0.3047089420760573,0.3091182973347263,0.3149114045795879,0.3209553390276282,0.3257085329799164,0.330433091286307,0.3345002509973843,0.3345006869427009,0.3335900962861073,0.3328449878852764,0.3323207776427703,0.3318903962870403,0.3311443213551416,0.3298064720812182,0.3300162836982088,0.3309644496198369,0.3319936409267099,0.3326204813626728,0.3336365074343562,0.3337044194253066,0.3349091479398651,0.3365117682558841,0.3375189661486946,0.3394367001828153,0.3443629380096338,0.3462361817862783,0.3502447176793601,0.3552830275019448,0.3583917018660108,0.3621941896024465,0.3634687764037176,0.364739336492891,0.368176400476758,0.370089699969069,0.3687842500507408,0.3715634545959456,0.3622047244094488,0.0,1.86209506162713,60.101458171878285,186.64113931970576,266.6562364725854,fqhc7_80Compliance_implementation_low_initial_treat_cost,41 -100000,95687,44075,417.0472477975065,6440,65.9023691828566,5043,52.117842549144605,2019,20.71336754209036,77.34192318165195,79.72029369871012,63.32298576779221,65.07629506014712,77.08497672409366,79.46361294898557,63.22773976558151,64.98384734383156,0.2569464575582856,256.680749724552,0.0952460022106933,92.44771631556148,151.30698,105.89440994834432,158126.53756518647,110667.0462532469,333.21433,213.1493977885811,347624.0659650736,222148.74450411645,346.72698,167.6480518575192,359310.1361731478,172732.34237835946,3300.41162,1512.2304052292734,3411665.388192754,1542969.8861951982,1201.9364,535.1524041496798,1240926.6776051084,544139.1352753437,1978.31274,835.9900688172102,2031161.328080095,842027.7858220242,0.38178,100000,0,687759,7187.569889326659,0,0.0,0,0.0,28309,295.22296654717985,0,0.0,31839,329.6999592421123,1667424,0,59847,0,0,5938,0,0,55,0.57479072392279,0,0.0,1,0.0104507404349598,0,0.0,0.0644,0.1686835350201687,0.3135093167701863,0.02019,0.336843666567784,0.6631563334322159,24.73590645832341,4.388621783012447,0.3252032520325203,0.2256593297640293,0.2274439817568907,0.2216934364465596,11.197594934671883,5.768755733318032,21.600516600929424,12501.228956123798,57.04912332773503,13.56329944933837,18.457848342946598,12.708157897253953,12.319817638196117,0.5593892524291096,0.7882249560632689,0.7006097560975609,0.5579773321708805,0.1207513416815742,0.7263236390753169,0.9230769230769232,0.8538812785388128,0.7007299270072993,0.1592920353982301,0.4989195029713668,0.7142857142857143,0.6447587354409318,0.5131729667812142,0.1109865470852018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021870538562012,0.0045914799160762,0.0068170059953133,0.0091921100209234,0.011278004332218,0.0137240129502555,0.0160573374385743,0.0181961136695495,0.0201644239028181,0.0223212000204781,0.0244850249669329,0.0264627959992606,0.0284083311905374,0.0305706101757784,0.0328151451339857,0.0346007879796903,0.0366587596722568,0.0387469769469499,0.0406813502215012,0.0427026238459454,0.0571374851150061,0.0710561035370987,0.0841161714231734,0.0967453410920417,0.1091519199721422,0.1245740289977775,0.1375074322602565,0.1495834842448388,0.1612661827433959,0.1721039580045731,0.1856384928936528,0.1980458637087427,0.2094233428045766,0.22032878031696,0.2302450516303749,0.2409196675900277,0.2511946230796713,0.2602445174944837,0.268785241828434,0.2766042750120278,0.2837665794773269,0.2910965718231721,0.2982649375259075,0.3044302354874698,0.3101473592063029,0.3160815360142059,0.3217556917139671,0.3264196587725999,0.3303979041294874,0.3350688479530618,0.3345212062309333,0.334336185481645,0.3347127280944579,0.335016201828492,0.3340365159775972,0.3327974276527331,0.3309327466404976,0.3319305628616517,0.3334474436437704,0.334411002947218,0.3350897260402408,0.3360619995243003,0.3370423244877393,0.3376871114701856,0.3390116377129364,0.3390294808244195,0.3396312444786412,0.3414549798792756,0.3427880232802748,0.3452706722189173,0.3463755617085016,0.351931330472103,0.356024248547613,0.3568285280728376,0.3587078651685393,0.3585657370517928,0.3613966142684401,0.3682946357085668,0.3707037643207856,0.3755622188905547,0.0,2.181397214253762,58.69464330554937,189.0683064289388,276.858733962912,fqhc7_80Compliance_implementation_low_initial_treat_cost,42 -100000,95731,43871,413.8471341571696,6341,64.93194472010111,4943,50.99706469168817,1897,19.429442918176974,77.32392886815877,79.68798162074236,63.31606620966248,65.06515059124129,77.09150820317392,79.46033738395568,63.22997158033783,64.9842302785472,0.2324206649848577,227.64423678668777,0.0860946293246556,80.92031269409006,150.15396,105.2676528298909,156849.88143861445,109961.92751552883,336.50172,216.31332290516497,350870.5539480419,225322.5108952847,353.39077,170.78423181222257,365611.13954727305,175640.8917929031,3207.4807,1470.706046049319,3309175.617093732,1494951.746089897,1128.83745,502.4409479351445,1160537.8090691625,506207.96600384766,1859.38962,773.4784673983556,1904585.80814992,772613.0740184314,0.3802,100000,0,682518,7129.540065391567,0,0.0,0,0.0,28591,297.9912463047498,0,0.0,32446,335.3772550166613,1667884,0,59894,0,0,6102,0,0,76,0.7938912160115323,0,0.0,0,0.0,0,0.0,0.06341,0.1667806417674908,0.2991641696893234,0.01897,0.3414450953883131,0.658554904611687,24.386081841602092,4.357976895345112,0.3291523366376694,0.237305280194214,0.2162654258547441,0.2172769573133724,11.419594312008469,5.965068940613387,20.101824553463278,12433.248244461449,56.41264627385603,14.109393357443825,18.57897447568863,12.011147992196944,11.713130448526638,0.5783936880436982,0.7953964194373402,0.7135832821143209,0.598690364826941,0.1163873370577281,0.7423547400611621,0.9175,0.8752941176470588,0.7843137254901961,0.1403508771929824,0.51939477303989,0.7322121604139715,0.6564059900166389,0.5405405405405406,0.1099290780141844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022790118204746,0.0045625525960924,0.0069722126372622,0.0095815806051738,0.0122268787891117,0.0143380855397148,0.0165263136431295,0.0184960241714046,0.0207547362717132,0.0229548479574075,0.025016404199475,0.0271466266928139,0.0292490850022617,0.0313649145576465,0.0331971188574494,0.0353421542278271,0.0374145431945307,0.0395561737108693,0.0415973377703826,0.0434578757631957,0.0580097518193303,0.0725906860437134,0.0856552606466091,0.0983963405016036,0.1102522461720167,0.1251639656412643,0.1372727947964305,0.1493829395291386,0.1607827638142645,0.1712962466631645,0.1854547020323803,0.1984904517831268,0.210102942615199,0.2209698930843737,0.2309603923379736,0.2415220929331399,0.2508395532795573,0.2604817027212491,0.2686780630661309,0.2766459926398936,0.2835146501685725,0.2906010941764975,0.2975555397491524,0.3030997611875817,0.3095632072028227,0.3137823399504028,0.3187395811137711,0.3238293099492722,0.3285343709468223,0.3329235568597903,0.3323801944942744,0.3314272328933226,0.3304410395327182,0.3288170922355393,0.3286621740229987,0.3267793703295357,0.3248714907077896,0.3247696494737187,0.3250947325299559,0.3258298699677149,0.3248956207522795,0.3262163177352075,0.3267776730547701,0.3270133702991548,0.3296793115053608,0.3307445727241928,0.330829420970266,0.3344256096792488,0.3337095295196445,0.3378711885996338,0.3390379700620664,0.3394412577012959,0.3413038006544173,0.3459812941981598,0.3495466565923687,0.3561660126055417,0.3642824739150159,0.3689301223845243,0.3598093725178713,0.3573584905660377,0.0,2.4784836488414625,57.08681522475369,193.0476238776267,267.901512554366,fqhc7_80Compliance_implementation_low_initial_treat_cost,43 -100000,95784,44018,415.6539714357304,6404,65.69990812661823,4991,51.417773323310776,1992,20.29566524680531,77.4066300966336,79.74515076869518,63.35719594835807,65.08740802663333,77.15369365494251,79.49688448380972,63.26322655287623,64.99863307337016,0.2529364416910908,248.2662848854602,0.0939693954818423,88.77495326316875,150.55106,105.4335208572939,157177.6705921657,110074.25129175426,332.92723,213.69954662213,346802.0441827445,222326.4706236219,347.24826,167.300666025097,358729.6312536541,171700.0862827623,3260.41724,1480.4910572638803,3360030.7253821096,1501759.842211519,1183.98729,519.0507574178058,1220308.6110415102,526111.5447345008,1946.15762,821.1340832775143,1985151.3405161612,817302.3820713983,0.38081,100000,0,684323,7144.439572371168,0,0.0,0,0.0,28213,293.79645869873883,0,0.0,31840,328.530861104151,1672961,0,60036,0,0,6012,0,0,65,0.6681700492775411,0,0.0,0,0.0,0,0.0,0.06404,0.1681678527349596,0.3110555902560899,0.01992,0.3301057649337107,0.6698942350662893,24.98897665643652,4.412935216068027,0.3277900220396714,0.2294129432979363,0.2224003205770386,0.2203967140853536,11.021714462492609,5.715481973567577,21.121240739682705,12442.469243677402,55.996414203426966,13.600892617114242,18.17547030944254,12.185308713037326,12.034742563832877,0.5543979162492486,0.7842794759825328,0.6925427872860636,0.5657657657657658,0.0981818181818181,0.7261998426435877,0.9215686274509804,0.8863049095607235,0.7148760330578512,0.1324786324786324,0.4956989247311828,0.7082767978290366,0.6325060048038431,0.5241935483870968,0.0889145496535796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002188582892577,0.0041877065969053,0.0065353507677007,0.0087987563882425,0.0111369900631604,0.0134518645241441,0.015650170265696,0.0180574695044148,0.0203094975264728,0.022268615170494,0.0243609978067927,0.0266068790018059,0.0285617381652243,0.0305638196024335,0.0326461189568085,0.0348712335556886,0.0367155655790279,0.038771744313823,0.0410588870880605,0.0427897679357841,0.0578088967265973,0.0715480996506787,0.0852009476089645,0.0979231917263994,0.1103911156066927,0.1258849884819409,0.1391155957857248,0.149886763564449,0.1611571129796406,0.1721456344998232,0.1849385080536696,0.1981963472788417,0.2099789162518747,0.2206738382569759,0.2312390829094664,0.2422760269121813,0.2516926371677467,0.2611262284390672,0.2699296733212341,0.2784068142008312,0.2852087019881336,0.2914820746005213,0.2983622852274341,0.3037930703982364,0.3090650663297536,0.3143945464183134,0.3195642646966756,0.3242352522013539,0.3283071661744132,0.332281572624297,0.3316439316331482,0.3311630211846325,0.3311249876661545,0.3304372967112396,0.3301350126992143,0.3283652889779804,0.3263462176378599,0.3269731136166522,0.3271861986912552,0.3278624462680735,0.3277708220432418,0.3292310721669784,0.3295290951198648,0.3293153004612196,0.3293900716013314,0.3285836642529004,0.3295880149812734,0.3317483655019239,0.3339976922270009,0.3380993759380677,0.3416447547375102,0.3442813391065582,0.3468175565837189,0.3504486164517831,0.3525754060324826,0.355113968439509,0.3514669926650366,0.3535757091490212,0.3580654025831272,0.3610149942329873,0.0,2.5615627587854126,55.25993224316294,183.2276632744431,283.54878794991794,fqhc7_80Compliance_implementation_low_initial_treat_cost,44 -100000,95692,43718,414.0889520545082,6285,64.42544831333863,4953,51.205952430715215,1954,20.04347280859424,77.29491858535671,79.69573385167577,63.29396199958445,65.07343850245489,77.04791842497431,79.45125109565757,63.20245763004698,64.98541439132002,0.2470001603823988,244.48275601820055,0.0915043695374748,88.02411113487096,151.12702,105.84110181091071,157930.67341052543,110606.00866416286,335.25482,215.03939187075176,349794.1729716173,224166.795920978,344.07124,165.9029954098456,356230.6357898257,170821.53273283233,3255.61765,1486.8930815096771,3367252.9887555907,1518910.2421721653,1205.43967,532.2720087955615,1244061.2590394183,540596.9549423046,1915.70466,804.1033986743045,1966579.1497721856,809293.5748863749,0.37737,100000,0,686941,7178.666973205703,0,0.0,0,0.0,28493,297.1617272081261,0,0.0,31626,327.2060360322702,1667272,0,59850,0,0,5871,0,0,60,0.627011662416921,0,0.0,2,0.0209003887472307,0,0.0,0.06285,0.1665474203036807,0.3108989657915672,0.01954,0.3269927536231884,0.6730072463768116,24.71503579040656,4.382625877338876,0.3151625277609529,0.2339995962043206,0.2251160912578235,0.2257217847769028,11.23035319379773,5.820507409018363,20.87609537781802,12293.576671737328,56.23804425354794,13.758193376133269,17.74456427085143,12.56099088914164,12.174295717421606,0.5497678174843529,0.7661777394305436,0.6893017296604741,0.57847533632287,0.1019677996422182,0.7113636363636363,0.8917525773195877,0.8341232227488151,0.7352941176470589,0.1722689075630252,0.4910542251582714,0.7029831387808041,0.6356453028972783,0.527876631079478,0.0829545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023011343477247,0.0045866439363958,0.0069364748895546,0.0093132021757917,0.0115027942628541,0.0136882981867846,0.0157149271398832,0.0175721787458368,0.0197344191185497,0.0221370839693092,0.0243009252610631,0.0262373898214542,0.0284217783677543,0.0304235803359785,0.0322980212429938,0.0342816368318183,0.0362057531294039,0.0383297689001474,0.0402575651974909,0.0420245143000083,0.0568856020723656,0.0703951087753093,0.0833989232755092,0.0959921716348025,0.1082988690074274,0.1237832232943964,0.1361638891837384,0.1485519591141396,0.1599115223918874,0.169898172687962,0.1836251009964987,0.1963039503153976,0.2085303934679322,0.2189344584845437,0.2290424759684124,0.2393439718275545,0.2481393454512994,0.256761167321306,0.2642195166272942,0.2727981561958927,0.2806661956660219,0.2871994193261373,0.2936412078152753,0.3001667726492855,0.3054542359692637,0.3106126077187091,0.3157808995100189,0.320207768399343,0.3243890442166304,0.3281938325991189,0.3277479441730259,0.3276739070662634,0.3278222172149617,0.3263017973761775,0.3251969674446261,0.3242899208637507,0.3223927500119034,0.3227541954590325,0.3242572562979189,0.3249794135548315,0.3248392071313047,0.3259441544781599,0.3273059859969303,0.3284547005477238,0.3292685877428564,0.3286691297853942,0.3283085917349687,0.3314150197628459,0.3346129463971261,0.3389756252987095,0.3415796225032069,0.3450903084873994,0.3434782608695652,0.3430272498282574,0.3455111866326819,0.347769028871391,0.34529627367135,0.3442589576547231,0.3441949616648412,0.3497723823975721,0.0,2.1064966049298515,58.0799161585238,184.544919156888,274.7391795113842,fqhc7_80Compliance_implementation_low_initial_treat_cost,45 -100000,95731,43982,416.2810374904681,6311,64.80659347546772,4949,51.21642936979662,1854,19.074281058382343,77.3593554540744,79.7298894320971,63.33143217950936,65.08344496820908,77.12605008266645,79.49548664282688,63.24372869804176,64.99728923534907,0.2333053714079511,234.40278927022007,0.0877034814675994,86.1557328600071,151.11866,105.80431747128232,157857.60098609646,110522.52402177177,335.2337,215.23123280079804,349715.34821531165,224361.68628642187,350.42624,169.47184462186712,362670.83807752974,174466.04978286894,3216.63667,1471.9378112132708,3331692.8894506483,1509200.695071243,1186.13678,524.9893692500524,1225415.4767003374,534805.945532162,1819.13686,772.4797245187897,1873180.8296163208,784386.3971293819,0.37936,100000,0,686903,7175.345499368022,0,0.0,0,0.0,28490,297.1033416552632,0,0.0,32119,332.1703523414568,1667146,0,59824,0,0,6008,0,0,56,0.5849724749558659,0,0.0,0,0.0,0,0.0,0.06311,0.1663591311682834,0.2937727776897481,0.01854,0.3313271140535661,0.6686728859464339,24.645645893956,4.37987482953505,0.3303697716710446,0.2321681147706607,0.2174176601333602,0.2200444534249343,11.24277989749285,5.7299034819687344,19.83878513013497,12360.715266333538,56.02216387080207,13.729721156080004,18.427123189630056,12.013122735996488,11.85219678909552,0.55849666599313,0.7789382071366405,0.6819571865443425,0.5799256505576208,0.1193755739210284,0.7181008902077152,0.9148936170212766,0.8545034642032333,0.6877323420074349,0.116591928251121,0.4987503471257984,0.699724517906336,0.6198003327787022,0.5439900867410161,0.1200923787528868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020560709800267,0.0043184283353776,0.006514657980456,0.0087241778554163,0.0109921397557528,0.0131430258482901,0.0153116876497273,0.0174142049282404,0.019658154607348,0.0218884691380775,0.0240378205982792,0.0259765604938525,0.028242484103957,0.0303323785777576,0.0325363492833335,0.0346820211710221,0.0365155452484237,0.0385221756627805,0.0405127245508982,0.0423428678569196,0.0570342602357805,0.0713560581481752,0.0853849139332655,0.0990525861978317,0.1112774819423208,0.1263936194969218,0.1390371494360204,0.1511280036624187,0.1618898008036248,0.1726761530702036,0.1850638504229753,0.1965919301930301,0.2081383962572081,0.2178785623604605,0.2285346024191949,0.2393004092406312,0.2487853369224067,0.2579628942068608,0.2658631529967201,0.2737500572842674,0.2814083724805035,0.2888948654684923,0.2957584930648346,0.3014018411885123,0.3068100445426189,0.3123637841232315,0.3172849546449797,0.3220351912123678,0.3263187865610602,0.3308020882771713,0.3298471548212773,0.3294851708309282,0.3287821323219553,0.3279639546265906,0.326895162484818,0.3250904428263955,0.3238639052321088,0.3235630867872681,0.3236987327973838,0.3253700014230824,0.326718785067704,0.3271420958095651,0.3279640932066528,0.3297698289966158,0.3309354248869213,0.3321612751992499,0.3325172237089335,0.3341931424976407,0.3368905114613683,0.3384024395073462,0.340901851936115,0.3446903359337685,0.3489945617807006,0.3518855065879145,0.3574300944543159,0.3550818513720409,0.3570124733799817,0.3589178356713426,0.3580952380952381,0.3514533786334465,0.0,1.818595504098384,59.74137730509968,180.75139821763128,270.9624071662125,fqhc7_80Compliance_implementation_low_initial_treat_cost,46 -100000,95891,44345,419.7265645368178,6269,64.29174792211991,4883,50.35926207881866,1932,19.78287847660364,77.4394230829848,79.71857324442558,63.39129033748679,65.07687922995498,77.20069426995889,79.48105977745136,63.3037719025201,64.99249452576126,0.2387288130259151,237.51346697422093,0.0875184349666824,84.38470419372379,150.05562,105.16462610996682,156485.6138740862,109671.00782134592,334.01408,214.8659420033092,347787.50873387494,223533.78523877027,349.10152,168.52117113488688,360452.01322334737,173003.65211134008,3217.7444,1456.6352236836722,3322133.756035499,1485559.7539744857,1162.92879,507.0825341590294,1199418.5794287263,515468.8283144712,1905.24756,788.0285562352027,1952915.351805696,793276.3296687155,0.38072,100000,0,682071,7112.982448822099,0,0.0,0,0.0,28361,295.1893295512613,0,0.0,31986,329.957973115308,1675724,0,60137,0,0,6060,0,0,68,0.6987099936386104,0,0.0,0,0.0,0,0.0,0.06269,0.1646616936331162,0.3081831233051523,0.01932,0.3321630285452602,0.6678369714547397,24.64837880956541,4.394586944083705,0.320294900675814,0.2342822035633831,0.2144173663731312,0.2310055293876715,11.292893692484617,5.804420631132639,20.3129173992088,12333.946828385298,55.10018954667629,13.635268663743789,17.582742248282504,11.605248773090125,12.276929861559877,0.5613352447266025,0.7788461538461539,0.6879795396419437,0.6131805157593123,0.1170212765957446,0.7316495659037096,0.9041769041769042,0.8349753694581281,0.7827868852459017,0.1380952380952381,0.5016592920353983,0.7096336499321574,0.6364421416234888,0.5616438356164384,0.1122004357298474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021360599311601,0.0042867566581539,0.0064212459043001,0.008650712262283,0.0107026334780001,0.0128507763374778,0.0149528902470078,0.0171052631578947,0.0192370561072289,0.0218805622046277,0.0239659005912066,0.0260001436472024,0.027899663970898,0.0297502625023162,0.031867293496639,0.0338382743202916,0.0359101160793726,0.0378099451864593,0.0397641147033783,0.0417698341690768,0.0561242572709267,0.0697156828939531,0.0827870740748497,0.0955935620019528,0.1074443672498368,0.1232408121034238,0.1363130858444103,0.1482441693672634,0.1597573845284668,0.1707705972369364,0.1844028807911426,0.1965449064920753,0.2082247132429614,0.2187138080982453,0.2288899639370217,0.2387835056110139,0.2479491752117699,0.2568751685090321,0.2651863600317208,0.272726233350483,0.2808223133337183,0.2880261544748672,0.2946355760935081,0.3009863302291063,0.3068941664745215,0.3118414574101428,0.3163579089477237,0.3217333875228612,0.3267165510022099,0.3301393842873501,0.3292614094500887,0.3291425904829876,0.3294882962879703,0.3277893977641543,0.3279167346212582,0.3275551071570515,0.3262467399035801,0.3275958074025548,0.3284007023884617,0.3300519794930219,0.3310593600478468,0.3327155503854571,0.3324345226897431,0.3325986285510731,0.333436969363595,0.3341217445547642,0.3330595366226703,0.3354995938261575,0.3391843415874342,0.3408768333070494,0.3419909502262443,0.3473244058646059,0.3512868801004394,0.3526816279954355,0.3583317571401551,0.3601856258924322,0.363762958378462,0.3643061809250921,0.3733333333333333,0.3767565514622104,0.0,2.1969770212644155,55.55373021248727,181.3004021972924,273.8836497459885,fqhc7_80Compliance_implementation_low_initial_treat_cost,47 -100000,95727,44201,418.49217044303066,6272,64.16162629143292,4875,50.23661036071328,1975,20.11971544078473,77.34647984393533,79.6977544577634,63.33814763576003,65.07478894436977,77.09621598528715,79.45165050035789,63.24501051756705,64.986108324239,0.2502638586481822,246.10395740550928,0.0931371181929776,88.68062013077349,150.51256,105.50106231306624,157231.0424436157,110210.35059394554,334.2426,214.9969795193253,348481.776301357,223913.34682934312,349.0569,168.9473997646463,360092.53397683,172927.970549221,3222.49597,1472.6395590117738,3322887.941751021,1495211.6091659176,1181.38858,522.4907617181055,1211113.5311876482,522921.802320731,1936.1698,816.8983024486133,1975558.452683151,816583.3883014674,0.38261,100000,0,684148,7146.865565618895,0,0.0,0,0.0,28426,296.24870726127426,0,0.0,32022,330.0009401736187,1669299,0,59855,0,0,5934,0,0,53,0.5432114241541048,0,0.0,2,0.0208927470828501,0,0.0,0.06272,0.1639267138862026,0.3148915816326531,0.01975,0.3313609467455621,0.6686390532544378,24.720941731257412,4.440820039643405,0.3138461538461538,0.2317948717948718,0.224,0.2303589743589743,11.22572976579374,5.785745530268875,21.057224116524463,12499.829467457415,55.214181908703445,13.4989045189549,17.52767716593082,12.01291379156849,12.174686432249226,0.5606153846153846,0.7893805309734513,0.7137254901960784,0.5457875457875457,0.1362422083704363,0.7327117327117327,0.9223300970873788,0.8658536585365854,0.7344398340248963,0.1383928571428571,0.4988851727982162,0.713091922005571,0.6580357142857143,0.4923619271445358,0.135706340378198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0045819014891179,0.0064643143463127,0.008634525913736,0.0108711127382187,0.0129907151001791,0.015137614678899,0.017299625429939,0.0196052376036225,0.0217460301209136,0.0237602246868529,0.0257942006671798,0.0277489333264792,0.0300751879699248,0.0318090835929923,0.0342642741968826,0.0364971061159831,0.0385441416017347,0.0405634388481729,0.0423215941168505,0.0569331481848839,0.0721358146155617,0.0856318522792844,0.0982260218513728,0.1111966262519768,0.1273365474075953,0.1397142281295414,0.1511255388217763,0.1627946703108985,0.1737802263762647,0.1866790128773849,0.1988923982174534,0.2098197786908411,0.2203108264661522,0.2299937334403412,0.2407386904630101,0.2507527937010684,0.2604132686921407,0.2688492964139809,0.2778592375366568,0.2865076885695442,0.2940522837592841,0.3004664267449569,0.3062120067623466,0.3113816101169868,0.3166151534928395,0.3214151675131984,0.3260302224032794,0.3301744924680443,0.3341609984811464,0.333315361701554,0.3333195626428709,0.3329338953660496,0.3320749258696753,0.3319004625842245,0.330358785648574,0.3288842445257208,0.3291972360365683,0.3301304518798406,0.3317022644474605,0.332639982010344,0.334084573868691,0.3345508743203812,0.3343188639519778,0.3362313954048456,0.3363457760314342,0.3377132714989121,0.3396410887185795,0.3417124348683284,0.3444329651116586,0.3482155097564319,0.3526270824434002,0.3515013878374968,0.3569292123629112,0.3568244332732618,0.361437125748503,0.3641689793401171,0.3680969000205296,0.371404399323181,0.3677342823250296,0.0,2.735856332364773,55.71246477589094,183.331553455668,269.36222277716064,fqhc7_80Compliance_implementation_low_initial_treat_cost,48 -100000,95730,44169,418.1761203384519,6389,65.44447926459834,5090,52.48093596573697,2008,20.557818865559383,77.41222784566315,79.76730462127784,63.350809200748486,65.0892210464075,77.16101806584525,79.51871555535536,63.2579186336493,65.00020554805155,0.2512097798178985,248.58906592248783,0.0928905670991895,89.01549835594835,152.79066,106.89621359038183,159605.59908074792,111664.08092436662,340.27419,217.80400563598656,354759.33354225423,226828.58863099111,352.51064,169.3147693895441,363523.64984853234,173319.82291946394,3339.48817,1514.0794900663532,3445529.3742818343,1538995.585466151,1217.0645,534.6080079247497,1253303.6247780214,540508.1885756595,1968.0956,827.4663104657222,2016630.4188864515,830138.8449776171,0.38202,100000,0,694503,7254.799958215815,0,0.0,0,0.0,28853,300.658100908806,0,0.0,32370,333.3751175180194,1659626,0,59483,0,0,5984,0,0,68,0.7103311396636373,0,0.0,0,0.0,0,0.0,0.06389,0.1672425527459295,0.3142901862576303,0.02008,0.3287284610814022,0.6712715389185977,24.59807161662912,4.340125968106813,0.3231827111984283,0.2294695481335953,0.224950884086444,0.2223968565815324,10.924795095315869,5.636993853415973,21.366752257702647,12445.95194017134,57.35240913689528,13.879362281507047,18.51942694903405,12.528515995782096,12.425103910572078,0.556385068762279,0.791095890410959,0.6851063829787234,0.5519650655021834,0.131625441696113,0.7218337218337219,0.928388746803069,0.8560975609756097,0.7196652719665272,0.1740890688259109,0.5003944254535893,0.722007722007722,0.6283400809716599,0.5077262693156733,0.119774011299435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022280737289852,0.0046318349972127,0.0069086556019965,0.0090177918596149,0.0114173588588741,0.0136000407186847,0.0156756426198096,0.0175402793792026,0.0198362816935953,0.0219856704196519,0.0239710584569976,0.025930032027593,0.0281684349041862,0.0302253254242873,0.0324208310546572,0.0345134115458163,0.0365308151093439,0.0386367173315349,0.0405564161477122,0.0423133815287818,0.0566569576247298,0.070451715514445,0.0836567712157767,0.0961572851687828,0.1082680904045413,0.1240264138164578,0.1371108964902412,0.150512675816395,0.162214148322291,0.1732397540323879,0.186429349173665,0.1980898134211181,0.2102175001632884,0.2209059157150208,0.2310311016118192,0.2422602078734567,0.2518302428774212,0.2606917991056846,0.2687455286676281,0.2769211368039712,0.2834887357386923,0.2910672269891252,0.2982694948155864,0.3042769857433808,0.3100454181138125,0.3160235012994691,0.3206046738437301,0.3250752753744712,0.3287545550874835,0.3327411267716846,0.3324832557078238,0.3318798848210613,0.3315406650190968,0.3303327092035143,0.3305049668874172,0.3286477925163334,0.3267607408340683,0.3268157336379957,0.3273635560388772,0.3280431733858799,0.3287041346314946,0.3296420647542754,0.3308291074521589,0.3315462816719685,0.3330300708676498,0.3358766739333541,0.3365695792880259,0.33893425952001,0.3407723520358192,0.3427072651258184,0.3461956030037094,0.3481273804485823,0.3489827856025039,0.350143656434296,0.3548357069719817,0.3551236749116608,0.357845362384627,0.3708675616108996,0.3696837513631407,0.3727134146341463,0.0,2.620750378771058,55.99322195211726,196.0758015925307,281.2713224068006,fqhc7_80Compliance_implementation_low_initial_treat_cost,49 -100000,95738,44282,418.1725124819821,6416,65.80459169817627,5017,51.91251122856128,2036,20.984353130418437,77.32373385663094,79.69387229350309,63.321321634088775,65.07515664734748,77.06796180042379,79.43616703248544,63.22742888186007,64.98240711609823,0.2557720562071495,257.705261017648,0.0938927522287045,92.74953124925388,151.07906,105.80261346970576,157804.6961499091,110512.66317418974,335.37326,215.15970144909105,349833.33681505773,224268.1917828773,351.22674,170.02887289863727,363547.9851260733,174991.80677858353,3314.85096,1506.0125099130646,3432300.424074035,1542937.318424308,1168.69643,516.510468584555,1208220.4976080551,527000.9594774856,1997.13566,830.9468294916396,2060182.874093881,846457.8926783289,0.38261,100000,0,686723,7172.940734086778,0,0.0,0,0.0,28564,297.8650065804592,0,0.0,32172,332.6996594873509,1666266,0,59877,0,0,5965,0,0,55,0.5744845306983642,0,0.0,1,0.0104451732854248,0,0.0,0.06416,0.1676903374193042,0.3173316708229426,0.02036,0.3331356560415122,0.6668643439584878,24.69170008461836,4.456723096980372,0.319912298186167,0.2256328483157265,0.2234403029699023,0.2310145505282041,11.274442901591687,5.80291071412212,21.68229939476653,12516.374186176175,56.90257154226652,13.512497992723986,18.248966148364204,12.52455359859764,12.61655380258069,0.5459437911102253,0.7879858657243817,0.6922118380062305,0.5468331846565566,0.1061259706643658,0.7312312312312312,0.9365482233502538,0.871331828442438,0.7116788321167883,0.1085972850678733,0.4789687924016282,0.7086720867208672,0.6239242685025818,0.4935064935064935,0.1055437100213219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023910840932117,0.0048475260377052,0.0072472594397076,0.0095116151454179,0.0117613543871072,0.0137008627978282,0.0157569452943336,0.0180772726808493,0.0202263965723518,0.0222131189513031,0.0245203105290685,0.0266817294854678,0.0288973931650309,0.0311202250548725,0.0331740346603635,0.0354381176859777,0.0375015535026306,0.0398090989261814,0.0415276001538829,0.0435534623960656,0.0582603339006233,0.0726949241234955,0.0859942097092267,0.0987472520537282,0.1111017378100219,0.1268265347120895,0.1397593940294074,0.1516599276441796,0.1628202526778944,0.1727140161262652,0.1856063053168809,0.1981501514495889,0.2098905042025944,0.2206039930897242,0.2316146137006193,0.2420910429746758,0.2519847464430668,0.261285248848444,0.269792859491389,0.2771745970002403,0.2848624913334874,0.2921009581677962,0.2987740722789015,0.3042415821185151,0.310153868574135,0.3154858748705813,0.3202854996243426,0.3247615044642288,0.3301353523829279,0.3340154465641296,0.3334545944489356,0.3324696088430686,0.3315367684406569,0.3306638475351908,0.3309263615519757,0.3296777459085541,0.3288055093801947,0.3289946655724251,0.3297886867169631,0.330513012744993,0.3313517365538969,0.3318606862667406,0.3329966117389565,0.3354460252174499,0.3389924786572831,0.3403719539385673,0.3402434822556563,0.3427094564596943,0.3477506199078994,0.3515411783592872,0.3577482955592408,0.3583544235636207,0.3589367669556348,0.3591625463535228,0.3616274658573596,0.3572458543619322,0.355487336914812,0.3578520770010132,0.3607368710475667,0.3627602158828065,0.0,1.951543786093929,58.8338540059868,186.01894485625053,279.54072833859675,fqhc7_80Compliance_implementation_low_initial_treat_cost,50 -100000,95784,43842,414.2027896099557,6161,63.298672012027055,4817,49.747348200116924,1912,19.658815668587653,77.38153749659537,79.7236744251157,63.350937847410606,65.08306300517337,77.14319362764309,79.4842082017056,63.26347118200615,64.99716299683082,0.2383438689522847,239.4662234101048,0.087466665404456,85.90000834254852,150.80494,105.655713335483,157442.7252985885,110306.22372784912,333.23271,214.1342518844375,347356.6044433308,223016.6127264669,344.80691,165.88946901916728,356320.4188590996,170377.5432371729,3159.66515,1432.6108912550424,3266924.246220663,1463898.954934009,1135.48471,500.9343829019516,1169870.844817506,507391.6846292158,1873.5734,780.5133036582451,1927869.205712854,790494.0154025577,0.37926,100000,0,685477,7156.487513572204,0,0.0,0,0.0,28339,295.27896099557336,0,0.0,31667,326.9230769230769,1670767,0,59953,0,0,6035,0,0,66,0.6890503633174643,0,0.0,1,0.0104401570199615,0,0.0,0.06161,0.1624479249063966,0.3103392306443759,0.01912,0.3309051456912585,0.6690948543087415,24.591421866596303,4.40040189366374,0.3215694415611376,0.2368694208013286,0.2167324060618642,0.2248287315756695,11.361714319914157,5.863451588844263,20.28695972678306,12359.77076747417,54.312264438481606,13.476730296507167,17.4540132732627,11.61727778886368,11.764243079848066,0.559061656632759,0.7738825591586328,0.6946417043253712,0.5862068965517241,0.1126500461680517,0.7493995196156925,0.9225,0.8789473684210526,0.7704280155642024,0.1650943396226415,0.4924327354260089,0.6936572199730094,0.6347305389221557,0.5260482846251588,0.0998851894374282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483744860134,0.0044701684675735,0.0065642628140091,0.0087037770533093,0.0109502409663053,0.0131722263505603,0.0152994658947282,0.0175751946845752,0.0196713605428273,0.0219268627089856,0.0240915705121636,0.026256902958264,0.0281616286243059,0.0302293974712738,0.0323252743625711,0.0343744511143025,0.0364763343612243,0.0386644691150708,0.0407001506258764,0.0426028110359187,0.0567039893145224,0.0700062748379,0.0836548138208654,0.0964704893400161,0.1083584480178718,0.1239286884293066,0.136417103799078,0.1483564381697567,0.1597857287676203,0.170085744908896,0.1834522694737748,0.1952134792576891,0.2069576368813441,0.2178635429870186,0.2277236434023271,0.2386371183776484,0.2493644918164384,0.2586526680230663,0.2677795797089944,0.2749688211535601,0.2822024883215392,0.2878949029324793,0.2945880404566156,0.3016958490023713,0.3072982422064679,0.3126177256331023,0.3177609795714375,0.3222984998728705,0.3275369069337163,0.3313820880960856,0.3305840722252869,0.3295251450411064,0.3286766466222591,0.3283963818166055,0.3281112977303467,0.3269619245837414,0.3257570967945881,0.3271620095270834,0.3282286881061766,0.3284344252086187,0.3302870598788966,0.3304129915744194,0.3316805790916128,0.3311922293592355,0.3314033106695817,0.3327075511055486,0.3329439585173366,0.3370134554464761,0.340551318827398,0.343894807715157,0.3458130764687173,0.3505307855626327,0.3536839446934781,0.3577484151836859,0.3586239396795476,0.3606013969456612,0.3634146341463414,0.3650857719475277,0.3664630760688506,0.3712643678160919,0.0,2.0615431926183367,54.83243614906569,177.63803133586663,271.6468543393772,fqhc7_80Compliance_implementation_low_initial_treat_cost,51 -100000,95865,43748,412.601053564909,6361,65.32102435716894,5019,51.86460126219163,1968,20.23679132112867,77.37299817448195,79.67487183635971,63.35320242165369,65.05729615959629,77.13337037381937,79.43348570404126,63.265769223872994,64.97116742154877,0.2396278006625749,241.3861323184534,0.0874331977806974,86.12873804752041,150.87116,105.69816499033853,157378.77223178427,110257.30453276848,336.79197,216.0051337318168,350818.2757002034,224821.47158172092,346.01134,166.88395030769686,357591.6236374068,171535.27050953198,3278.00465,1481.6515671250831,3390496.041308089,1516659.8311428383,1183.6941,520.4990299383536,1224116.8726855477,532323.5368321327,1930.46028,798.456008774718,1987218.8598550044,809837.543463431,0.37873,100000,0,685778,7153.580555990195,0,0.0,0,0.0,28664,298.47180931518284,0,0.0,31852,328.9000156470036,1668318,0,59881,0,0,5998,0,0,59,0.6154488082198926,0,0.0,1,0.0104313357325405,0,0.0,0.06361,0.1679560636865313,0.3093853167740921,0.01968,0.3449157641395908,0.6550842358604091,24.77221440595131,4.316754878603569,0.3161984459055589,0.2388922096035066,0.2255429368400079,0.2193664076509265,10.910361001401707,5.6175174598970425,20.876793622281287,12339.383807116088,56.83620252567165,14.328498390282416,17.89753012238354,12.60742438359422,12.002749629411484,0.56664674237896,0.7814845704753962,0.6880907372400756,0.5962897526501767,0.1271571298819255,0.7447633824670287,0.9082125603864736,0.8703241895261845,0.7481203007518797,0.173076923076923,0.5050938337801608,0.7146496815286624,0.6264755480607083,0.5496535796766744,0.1164613661814109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356491796637,0.0040236350552869,0.0062688293113417,0.0086509757732063,0.0108879084236423,0.0129987785016286,0.0153700325135303,0.0174917592791027,0.0196282786173354,0.0219166308551783,0.0240971261718149,0.0262550401674412,0.0282719284723292,0.0303339097496706,0.0323491814770524,0.0345329684514896,0.036644664694076,0.0386616098814556,0.0408411214953271,0.0430408456272498,0.0576820812262134,0.0715047021943573,0.0846942730539173,0.096850749246553,0.1089312229488516,0.124157600084504,0.1368356361786895,0.1488635638806795,0.1596051227321238,0.1702845754939356,0.1833403277700659,0.1956357269465219,0.2071360257357735,0.2175904668197223,0.227983892263005,0.2383473051239742,0.248089772334326,0.2578235730837589,0.2666704474564736,0.2743008253866495,0.2818111392463607,0.2884244260166785,0.294574285545234,0.3008767937139161,0.3061328542293872,0.3112112925873919,0.3164152950747856,0.3202757357617073,0.3247938484640578,0.3291050686378036,0.3288606878713171,0.3282930523996419,0.3276579537599977,0.3276907273174472,0.3272840772283408,0.3257021224464794,0.3246915730959884,0.32543018520951,0.3263587606326649,0.327402325955303,0.3283903461963339,0.3301003476611883,0.3313856077741476,0.3316435908887896,0.3330694684321627,0.3346262983885664,0.3358630527817404,0.3403096871656071,0.3438915616111248,0.3473750890806873,0.349934350522932,0.3503680559233172,0.3523221375007877,0.352954649564819,0.3534132754225285,0.3522754067436925,0.3511695459409876,0.3473469387755102,0.3453177257525083,0.3412667946257198,0.0,1.9078053670950488,56.997790605207,194.5031715389829,275.0357996413427,fqhc7_80Compliance_implementation_low_initial_treat_cost,52 -100000,95779,44082,415.84272126457785,6208,63.5003497635181,4808,49.48892763549421,1920,19.55543490744318,77.39816222968327,79.72707411495824,63.35848721039546,65.0795123326518,77.15261596381731,79.48541032640719,63.26726908464162,64.99248746279409,0.2455462658659541,241.66378855105108,0.0912181257538407,87.0248698577143,151.1719,105.98160261732238,157834.07636329465,110652.2333886576,335.81961,215.9474456287222,349876.59090197226,224726.92022795585,349.94742,168.87566847236783,361120.7884818175,173009.11278524715,3153.19772,1442.520948388514,3248910.178640412,1463210.8168239184,1146.09612,505.7971311327424,1179914.5846166697,511527.6236988386,1879.8363,793.1081821293069,1917691.790475992,790946.4573856568,0.38014,100000,0,687145,7174.276198331576,0,0.0,0,0.0,28558,297.4138381064743,0,0.0,32107,330.9076102277117,1665007,0,59733,0,0,5851,0,0,55,0.5742386118042577,0,0.0,0,0.0,0,0.0,0.06208,0.163308254853475,0.3092783505154639,0.0192,0.3278663396689147,0.6721336603310852,24.5563604892867,4.345444889372687,0.3157237936772046,0.2383527454242928,0.2217138103161397,0.2242096505823627,11.27779570556238,5.904628830833721,20.6051859511784,12411.081604931893,54.49268685340155,13.649644939400432,17.180815880945612,11.832404367555254,11.829821665500274,0.5644758735440932,0.7835951134380453,0.69433465085639,0.6022514071294559,0.111317254174397,0.7331786542923434,0.9156626506024096,0.875,0.752,0.131578947368421,0.5024182076813656,0.7086183310533516,0.629695885509839,0.5563725490196079,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024508314597638,0.0047835252148532,0.0070912632390536,0.0091904297668372,0.0115284908249885,0.013770431738148,0.0157538085290671,0.0178141452067093,0.0201166746697453,0.0226110087988541,0.0245981415648147,0.0268032139228945,0.0289190800156208,0.0311547962124331,0.0331969029969999,0.0351558465701361,0.037242406687081,0.0393197843218581,0.041568374780467,0.0435787697978819,0.0581176961602671,0.0717430636170635,0.0848264365767484,0.0976447961660939,0.1099515074847143,0.1256871035940803,0.1386390632954352,0.1504368275994168,0.162205750416542,0.1732612751721031,0.1862426226683324,0.1983950163310333,0.2101586266840504,0.2197690551361744,0.2298832890080664,0.2402611052718924,0.2495484245032669,0.2586978522433374,0.2668103448275862,0.2745293390133296,0.2812575881965242,0.2892952345321049,0.2965278024410744,0.3023961067759838,0.3079744022537674,0.3135830141507691,0.3189264900827893,0.3229662029855301,0.3271008675385213,0.3312706161762765,0.3306353866458372,0.3296190829928604,0.3285893443431454,0.3283978794401028,0.3278581497143705,0.3260437375745527,0.3244773381408736,0.3249745793288943,0.3253635944149163,0.326249107780157,0.3268006888289907,0.3279294596785354,0.3284491239821656,0.330204664021046,0.3304148126883881,0.3322242728288841,0.3332578673307675,0.3371464291295515,0.3409613375130616,0.3427344703982353,0.3460403902881779,0.3482956640851378,0.351494396014944,0.3546824135059429,0.3542076195825143,0.3559563360227812,0.3586741675535959,0.362257281553398,0.3671270718232044,0.3700457317073171,0.0,2.731979927540704,56.07917618219111,179.01728467887784,263.5084447222865,fqhc7_80Compliance_implementation_low_initial_treat_cost,53 -100000,95886,44116,416.8908912667126,6191,63.43991823623887,4853,50.10116179629978,1955,20.07592349248065,77.3584022892406,79.63941209883261,63.35300198276878,65.04105566228434,77.11125551630532,79.39269503407026,63.261480514383294,64.95218201638488,0.2471467729352809,246.71706476235045,0.091521468385487,88.87364589945435,150.6912,105.61051818665928,157156.62349039485,110141.74977229134,333.21166,214.20655770420976,346991.96963060304,222880.93955760988,348.82703,168.34283147515993,360290.9600984503,172990.92589406393,3198.457,1462.544986267883,3303499.0196691905,1493107.498767164,1144.40371,510.771894298204,1179635.9635400372,518820.6306373482,1918.97754,807.8575970464681,1971671.2137329744,815686.1278189607,0.38005,100000,0,684960,7143.482885927038,0,0.0,0,0.0,28227,293.84894562292726,0,0.0,31934,329.5893039651253,1668523,0,59936,0,0,6006,0,0,73,0.7613207350395261,0,0.0,0,0.0,0,0.0,0.06191,0.1628996184712537,0.3157809723792602,0.01955,0.3299048203868591,0.6700951796131409,24.54310518954719,4.365954317841102,0.3224809396249742,0.2262518030084483,0.2276942097671543,0.223573047599423,11.085379701649716,5.657003125268529,20.915020202331185,12407.097614697472,55.18406428506432,13.142063645320956,17.715295101881665,12.321401611022566,12.005303926839137,0.5518236142592211,0.785063752276867,0.6875399361022364,0.56289592760181,0.1087557603686635,0.7282010997643362,0.932642487046632,0.8619854721549637,0.7154471544715447,0.1535087719298245,0.4891061452513967,0.7050561797752809,0.625,0.519208381839348,0.0968494749124854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286658769451,0.0046306147470387,0.0069681816798693,0.0090974626608047,0.0112116283797519,0.0133931751798817,0.0155772443864868,0.0177673517262481,0.019919749241906,0.0221224915404982,0.024117845772723,0.0260403317579274,0.028274466708433,0.0305411827636221,0.0325642267541916,0.0345048319154208,0.0364738497186362,0.0383670677486552,0.0404386566141192,0.0424261339991677,0.0570660105917184,0.0719106523465251,0.0848142756909028,0.0978977654569892,0.1100799528078288,0.1255757447707585,0.1383366538086558,0.1498192258613356,0.1611195320339019,0.1722356220185453,0.1857905844855063,0.1987538671224282,0.2106018437989215,0.2202859891551513,0.229969869581473,0.241259089550752,0.2517510595583315,0.2606138970092197,0.269108605395104,0.2765513844179946,0.2840280510102529,0.2907939999531977,0.2967191756484661,0.3022857005804192,0.307262162359291,0.3120197348134443,0.3171287885432198,0.3213721392527652,0.3263738402647116,0.3308605733629535,0.3308466436434276,0.3303188629564786,0.3299283255262712,0.3286235450807805,0.327847856196107,0.3261537044428751,0.3244984763839512,0.3249078462348604,0.3256670205843066,0.32598087407275,0.3276431304869813,0.3287283523008412,0.3294974906028853,0.3301523297491039,0.3316384316938573,0.3334201750729471,0.3346730517074283,0.3370927711978888,0.3391334853534468,0.3412764605425156,0.3430160974052624,0.3482218458933107,0.350714780527741,0.3524942440521872,0.3559161210741057,0.3563039309683605,0.3566542288557214,0.3562843756365859,0.3564356435643564,0.3567608861726509,0.0,1.9828767677393948,56.04767564182544,187.8429506614152,264.680366537957,fqhc7_80Compliance_implementation_low_initial_treat_cost,54 -100000,95726,43936,414.7149154879552,6251,64.01604579738002,4902,50.550529636671335,1945,19.900549484988403,77.38965647392791,79.75741102494935,63.34469261111818,65.09444212778577,77.1350226952189,79.50390964566937,63.25010345497084,65.00320031817417,0.2546337787090209,253.5013792799816,0.094589156147343,91.24180961160278,150.89272,105.73681743315272,157629.35879489375,110457.38378271814,335.90303,216.1316028277417,350225.85295531,225109.98691118395,350.44972,169.69582233474776,361965.223659194,174094.29034488613,3178.41664,1465.542908053878,3279871.100850344,1490992.4433847123,1172.95459,524.4943355461456,1209917.9115391849,532980.9758687263,1901.08838,806.9086687092397,1946771.117564716,809887.5592948272,0.37917,100000,0,685876,7164.970854313353,0,0.0,0,0.0,28539,297.4322545598897,0,0.0,32140,331.67582474980674,1666825,0,59804,0,0,5876,0,0,58,0.5954495121492593,0,0.0,0,0.0,0,0.0,0.06251,0.1648600891420734,0.3111502159654455,0.01945,0.3368050237402358,0.6631949762597641,24.64314321869068,4.371504987502494,0.3223174214606283,0.2362301101591187,0.2254181966544267,0.2160342717258262,11.242557964530416,5.941468685637076,20.891454113355785,12375.462629669782,55.80437593552457,13.7788503884994,17.891323995594718,12.420679987278898,11.71352156415156,0.558343533251734,0.7694300518134715,0.6860759493670886,0.5710407239819004,0.1237016052880075,0.7282768777614138,0.9294117647058824,0.8608490566037735,0.7394636015325671,0.1451612903225806,0.4932279909706546,0.6766712141882674,0.6219723183391004,0.518957345971564,0.1171393341553637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020865407989628,0.0047038309864866,0.0067688935345396,0.009214295873377,0.0113115037586336,0.0136552482587267,0.0158848298855028,0.0183236185829054,0.0203818791397497,0.0225399977480474,0.0245699993849812,0.0266613282412968,0.0288257910644159,0.0309121238956278,0.0330476219946158,0.0353876205339148,0.0376410893652272,0.039746436204428,0.0415020995302041,0.0433042970866502,0.0578334638475593,0.0718442537157211,0.0845232974158281,0.0968206876236165,0.11003861003861,0.1255182772042646,0.1386148067986504,0.150440594270146,0.1614425921377233,0.172030671885892,0.1847764054743778,0.1968325057605556,0.2086309815050396,0.2198287645019846,0.2295733116211517,0.2405594560474851,0.2502007405094348,0.2589999213244467,0.2675345588151911,0.2750709447088978,0.2817921080630985,0.2891814164464916,0.2959158342691648,0.3023534200004788,0.3084019129463743,0.3134168421830544,0.3179293434747798,0.3229663550213064,0.3270729244867845,0.3309234828496042,0.3300001345840679,0.3284764931687786,0.327757831749384,0.3263793576722481,0.3257508309591643,0.3249498982667095,0.3234954710001739,0.3245124207837293,0.3242002142966478,0.3237014776748404,0.3239599455498163,0.324485053759206,0.325538705438161,0.3255513477389173,0.327130334818221,0.3291576786131975,0.3298676211578887,0.3327779175050301,0.3350794543664744,0.336346981041899,0.3403019213174748,0.3429871520342612,0.3434719505269136,0.3471498678746696,0.3507989594946116,0.3499353929284624,0.3463983050847458,0.3486513486513486,0.3545232273838631,0.3537466717383035,0.0,2.4782166670494266,59.51721836611812,183.4897661129559,261.83051625980914,fqhc7_80Compliance_implementation_low_initial_treat_cost,55 -100000,95763,44255,418.8360849179746,6149,63.072376596389,4842,49.998433633031546,1938,19.892860499357788,77.34687979821054,79.70774262325413,63.33382307926016,65.08188528678137,77.11157837642037,79.47190387157613,63.247590400235495,64.99758932640155,0.2353014217901687,235.83875167800272,0.0862326790246612,84.29596037981923,149.97312,105.1525671781638,156608.62754926225,109805.00525063313,335.53199,215.9507137525916,349821.87274834746,224949.7653087222,345.71991,167.4078227738379,357287.7520545513,171938.99286649484,3222.5441,1456.2152933721409,3329863.350145672,1485383.951392647,1202.95875,523.2290429444531,1239817.037895638,530012.9308234425,1905.05006,791.2578238571979,1957081.043826948,799012.711763949,0.38066,100000,0,681696,7118.57397951192,0,0.0,0,0.0,28439,296.3984002172029,0,0.0,31644,326.78591940519823,1673014,0,60027,0,0,6033,0,0,74,0.762298591313973,0,0.0,0,0.0,0,0.0,0.06149,0.1615352282877108,0.3151731988941291,0.01938,0.3359763681592039,0.664023631840796,24.59039050441278,4.48021143965043,0.328996282527881,0.218298223874432,0.2201569599339116,0.2325485336637753,11.16783087459338,5.651829036837533,20.532283493574745,12375.838607963811,54.55727159321175,12.593553815304848,17.91655688924369,11.805631173845672,12.241529714817522,0.5528707145807518,0.7899716177861873,0.6854990583804144,0.575046904315197,0.1216696269982238,0.7249398556535686,0.925531914893617,0.8522167487684729,0.7407407407407407,0.1351351351351351,0.4931849791376912,0.7151248164464024,0.628475147430497,0.5261239368165249,0.118362831858407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888046694499,0.0042996795521843,0.0065583756345177,0.0088010813337805,0.0109668755595344,0.0132685688682511,0.0153022734223672,0.0174152715394038,0.019607041360839,0.0219723962812794,0.0241344310364272,0.0260593677163656,0.0281154233767302,0.030151633771478,0.0322613936591809,0.0344431925076752,0.0365016412794731,0.038454356846473,0.0404873028907622,0.0425469880772634,0.0569048836748113,0.0711297071129707,0.0839606617878336,0.0966199314737351,0.1085513142086293,0.1247094129084069,0.137101731922922,0.1489522310939111,0.1607160001280095,0.1708942114058014,0.184643352731732,0.1971211515393842,0.2097315618515823,0.2199604678337028,0.229862453858323,0.2404956848860367,0.2504933605378466,0.2595969020132417,0.2679774898454696,0.2746301470251454,0.2828222065407262,0.2896679182604016,0.2960706130127666,0.3021954317762385,0.3074971780898399,0.3121032429506422,0.3168367602181199,0.3221082338583578,0.3264796459718951,0.3306450550174606,0.329831876260928,0.3290058173916631,0.3290658413055712,0.3286779876210125,0.327617408846827,0.3264616372784413,0.3244243421052631,0.3250771452957783,0.3261081219574686,0.3271965034341272,0.3275516511510293,0.3281911316799177,0.3283165992412015,0.3310561093067533,0.3314373855201002,0.3321295860155964,0.333180843459614,0.3355152895044745,0.3377964130932666,0.3411835026897788,0.3480152007691955,0.3498826791808874,0.3524974645030426,0.3551216535733353,0.3601873536299765,0.3641748607984836,0.3686713715863762,0.3734840698869476,0.3736325385694249,0.3831628638867034,0.0,2.183924851450237,54.65189599880512,179.37793326562402,272.9176695298077,fqhc7_80Compliance_implementation_low_initial_treat_cost,56 -100000,95757,44265,418.6221372850026,6298,64.56969203295843,4881,50.42973359649947,1902,19.5599277337427,77.36211040614715,79.72476576435636,63.32787542470121,65.07584809749422,77.13001522240928,79.49243330913816,63.24286615814027,64.99300570036398,0.2320951837378686,232.33245521819867,0.0850092665609452,82.84239713023567,151.45152,106.1277956071652,158162.34844450015,110830.32635438164,334.79923,214.9899382318559,349088.9438892196,223970.89323167587,350.10172,168.95429565364412,362053.8446275469,173676.47116891688,3194.43501,1448.3307802542515,3301964.691876312,1478674.9938039524,1168.5146,512.4411961311513,1208189.521392692,523139.1016479762,1866.73566,773.1912380975156,1921310.671804672,783454.8428361019,0.38108,100000,0,688416,7189.197656568188,0,0.0,0,0.0,28410,296.1141222051652,0,0.0,32135,332.0383888384139,1664575,0,59732,0,0,5891,0,0,55,0.5743705421013607,0,0.0,0,0.0,0,0.0,0.06298,0.1652671355096042,0.302000635122261,0.01902,0.3287837427964816,0.6712162572035183,24.739546765967745,4.353653247106551,0.3165334972341733,0.2399098545380045,0.2206515058389674,0.2229051423888547,11.047631562362774,5.641083986679538,20.08439479803633,12474.464999081894,55.29117043569436,14.040204372839325,17.47825114129191,11.967775075096482,11.804939846466633,0.5716041794714198,0.7959009393680615,0.7029126213592233,0.5933147632311978,0.1222426470588235,0.7323272438443209,0.9326923076923076,0.8630490956072352,0.7316017316017316,0.1377777777777777,0.5157371617890668,0.7205298013245033,0.6493955094991365,0.5555555555555556,0.1181923522595596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025531138871158,0.0048066197497312,0.0071160288295604,0.0096934472702886,0.0122781140328569,0.0142787305984438,0.0164583035914588,0.0187045658743771,0.0206644103843519,0.0228252521632276,0.0250638389515029,0.027282158741898,0.0294852933611794,0.0315536731896827,0.0333673922242519,0.0350684931506849,0.0370301335818577,0.0388969009057613,0.0407895967817382,0.0427586350568726,0.0577581527412418,0.0717790448292096,0.084618853361578,0.0973034369610029,0.1105052209682523,0.1256054485077941,0.1384504412763068,0.1502922171242428,0.1614884933438748,0.1722048873591319,0.1856933614784819,0.1976430867123332,0.2094700430753165,0.2201028108935797,0.2294546174839334,0.2407914123342454,0.2510132758678443,0.2600830267643187,0.269201538164865,0.2769896609761962,0.2840461972874137,0.2913513829600608,0.2980832938949361,0.3040241665767612,0.3093324267223585,0.3151032681027259,0.3200605848187462,0.3246713582163627,0.3291552286735381,0.333628003324933,0.3327136544886302,0.3324753974261922,0.331090023371723,0.3300973678888215,0.330250441650213,0.3300280034889593,0.3278488822794222,0.3282620456743774,0.3284024677051024,0.3301233557023087,0.3301326359050999,0.3308798929407828,0.3315026729034414,0.3324487656936423,0.3330775502373987,0.3349536014140521,0.3352546993014935,0.3380502160165299,0.3414421331844199,0.346273720755908,0.348693135570227,0.3487600694992892,0.3508157779583672,0.3546542252991195,0.3573688128023818,0.3638297872340426,0.3668234937016239,0.371422893481717,0.379505110274341,0.3852929911911145,0.0,2.1216452216521926,55.27415357517402,188.74590677963644,267.72725526414945,fqhc7_80Compliance_implementation_low_initial_treat_cost,57 -100000,95770,43854,414.15892241829386,6276,64.45651038947479,4860,50.26626292158296,1903,19.51550589955101,77.32840490063373,79.68710158458973,63.31625382636724,65.06402952197078,77.09110570166787,79.4508223219123,63.22818751192401,64.97860146798989,0.2372991989658572,236.27926267742797,0.0880663144432247,85.42805398089115,151.97314,106.4422671186851,158685.53826876893,111143.64322719548,334.44422,214.5587599457895,348762.441265532,223581.84185631145,344.45377,165.93845956968983,356362.4517072152,170759.21139401948,3168.02469,1439.086671511745,3279729.435104939,1474427.1290714685,1145.99814,503.1998924944362,1186313.7516967736,515124.1855429009,1858.40322,773.8728996953955,1908792.75347186,782510.1978168689,0.37891,100000,0,690787,7212.97901221677,0,0.0,0,0.0,28430,296.3767359298319,0,0.0,31649,327.22146810065783,1662976,0,59727,0,0,5899,0,0,56,0.584734259162577,0,0.0,1,0.0104416831993317,0,0.0,0.06276,0.1656329999208255,0.3032186105799873,0.01903,0.3301471703838567,0.6698528296161432,24.73338765358872,4.361860616311662,0.325514403292181,0.2314814814814814,0.2279835390946502,0.2150205761316872,11.035774048201354,5.683659129250584,20.120474047278528,12368.77791935725,54.99977879271727,13.419499761679887,18.059545959066924,12.163044065991343,11.357689005979116,0.5590534979423868,0.7795555555555556,0.6940581542351454,0.5568592057761733,0.1196172248803827,0.7116903633491312,0.9056122448979592,0.8259803921568627,0.708,0.1481481481481481,0.5052865887590429,0.7121418826739427,0.6482112436115843,0.5128205128205128,0.1121833534378769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584264766981,0.0044727073571472,0.0067518174064898,0.0089635968210735,0.0112510427051331,0.0135063559322033,0.0156734377549355,0.0180401845877404,0.0203847962542681,0.0228059041496918,0.0245297524473373,0.0267675626835328,0.02889757301522,0.0311579424427826,0.0332696971260512,0.0349486262429968,0.0369239368970229,0.0389118778714622,0.0408712550270708,0.0428999937509113,0.0576999352858902,0.0719873658669232,0.0853491029956067,0.0976371166095566,0.1099708135332483,0.1254280640933496,0.1378549765646539,0.1499265691845986,0.1612500133502792,0.1720492365757419,0.1850160480796157,0.1974380335176189,0.2090123806001,0.2190678244132892,0.2287532058690794,0.2389698144558294,0.2488922620177014,0.2583691663477341,0.2665750718186876,0.2737838705240475,0.2812279341119818,0.2880842351564785,0.2945983395904639,0.3014893846837008,0.3068197016304546,0.3116359375963495,0.3164482347777011,0.3209415543037748,0.3251219385637194,0.3296443522932872,0.3301019307518067,0.3296246316543196,0.3286888829344653,0.3276873717374339,0.3273451906489798,0.3261472883668869,0.324434374801952,0.3248002367564368,0.3252047813670332,0.3266436728202012,0.3269760383685857,0.3277370676884789,0.328450833716411,0.3288638598373111,0.3283757808745795,0.3307209623245762,0.3316907827275834,0.3345575540697492,0.3383845453909148,0.3401600380288385,0.3432137993645029,0.3468439940890859,0.3492401025705172,0.3534933010370146,0.3542760690172543,0.355218260971879,0.3607681755829904,0.3670937563555013,0.3713021841304949,0.3814352574102964,0.0,1.895701593846589,55.9321935792152,183.25633057697084,269.44357846307463,fqhc7_80Compliance_implementation_low_initial_treat_cost,58 -100000,95740,43932,414.6647169417172,6245,64.22602882807604,4910,50.80426154167537,1971,20.22143304783789,77.31464774318667,79.68060963786604,63.30648041847581,65.05598735007851,77.07451086322327,79.44258202153564,63.217736912434304,64.9709815729281,0.2401368799634013,238.02761633039893,0.0887435060415029,85.00577715041402,149.90228,104.98037248479862,156571.56883225404,109650.89190586872,332.42975,213.5747032412148,346733.852099436,222591.953296109,342.57294,164.87736795800674,356038.45832462923,170760.83802837777,3209.51164,1446.6746399300068,3320467.1715061627,1479370.4933557005,1169.13179,508.200467257026,1206486.985585962,516513.7005354792,1934.2915,804.9749994748757,1985292.897430541,808566.7626632609,0.3795,100000,0,681374,7116.889492375183,0,0.0,0,0.0,28253,294.589513265093,0,0.0,31384,325.91393357008565,1671839,0,59978,0,0,5913,0,0,59,0.6162523501148945,0,0.0,1,0.0104449550866931,0,0.0,0.06245,0.1645586297760211,0.3156124899919936,0.01971,0.3262171709414836,0.6737828290585164,24.852402074058872,4.33976480888516,0.3219959266802444,0.2264765784114052,0.2287169042769857,0.2228105906313645,10.99878742687286,5.651308138678509,20.97147388302898,12456.54239872286,55.54870411538148,13.312784799676455,17.890808688427168,12.29779053326131,12.047320094016536,0.5564154786150712,0.7742805755395683,0.6850094876660342,0.5921638468388246,0.1124314442413162,0.7114914425427873,0.8936708860759494,0.8616187989556136,0.7219730941704036,0.1283185840707964,0.5047515612272604,0.708507670850767,0.6285475792988314,0.56,0.108294930875576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122828344223,0.0047855136823108,0.0070240971193081,0.0089726653795346,0.0111297624497685,0.0134479807653123,0.0155986982381326,0.0178370872557227,0.0199129065892503,0.0220097457106588,0.0240533973116791,0.0262957943157548,0.0287086753481865,0.0308494415364958,0.0331024659117886,0.0351689702583399,0.0370815255097286,0.0391511881290858,0.0412394717687428,0.0432046673959472,0.0573322892195249,0.0713642739014842,0.085071338648762,0.0981332491980859,0.1106201689356631,0.1265537559902252,0.1388042751462019,0.1506798266628336,0.1614844426392466,0.1725414453565105,0.1854263933666152,0.1975775435251291,0.2092815512827496,0.2196762988044752,0.2297574421168688,0.2398023759298323,0.2501370077507241,0.2593265066762901,0.2671428408948739,0.2748351976479776,0.2830407458083068,0.2906344481683737,0.2975600502691295,0.3036265200532994,0.3088269270523001,0.3145831791379863,0.3202758344492697,0.3248037257122498,0.3298173864651145,0.3345505840166636,0.3340286094925381,0.3334341739776134,0.3319920083293469,0.3310569856922166,0.3303705465301208,0.3277465414489912,0.3257328474092854,0.3265668403491181,0.3264677706309019,0.3280697367010824,0.3298524531768499,0.3310408885199897,0.3319253931080629,0.3331622749280439,0.3349581002233054,0.3354754780798751,0.335633626097867,0.3403841325633944,0.3436515162126199,0.3471913678197397,0.348313582497721,0.3512924157004574,0.3556864235055724,0.3590313433979615,0.364557681379049,0.3698499642772088,0.3736736890665846,0.3816494845360825,0.3842952275249722,0.389922480620155,0.0,1.7647469304518455,54.35813691498752,191.7417755597597,272.9837531372386,fqhc7_80Compliance_implementation_low_initial_treat_cost,59 -100000,95811,44163,417.0189226706745,6212,63.6565738798259,4847,49.9733851019194,1927,19.72633622444187,77.3504688262772,79.68332036095012,63.33176974345843,65.06036676118644,77.11366040217328,79.44859602395998,63.24402082053362,64.97618554754003,0.2368084241039127,234.7243369901406,0.0877489229248098,84.18121364641706,151.28498,105.98821440360555,157899.3852480404,110622.17741554264,334.87764,215.3040057198611,348912.4108922775,224110.83875532149,348.11027,168.1426294462025,359604.97228919435,172623.32246326076,3192.48226,1451.0813201480178,3291697.226831992,1474159.6373568955,1152.14873,505.8208614490748,1185035.5387168487,510449.2505548148,1894.81558,787.23775416667,1940294.2668378367,788191.8931901471,0.38165,100000,0,687659,7177.244784001837,0,0.0,0,0.0,28511,296.9387648599848,0,0.0,31889,329.06451242550435,1665204,0,59826,0,0,6069,0,0,58,0.6053584661468934,0,0.0,0,0.0,0,0.0,0.06212,0.1627669330538451,0.3102060528010302,0.01927,0.3337430854333128,0.6662569145666871,24.551908622649464,4.415777712977327,0.3214359397565504,0.2279760676707241,0.2213740458015267,0.2292139467711987,11.226487958788804,5.729013435426242,20.38370150621187,12462.767569249643,54.9007410439888,13.221999887470226,17.652140513853915,11.963268468465072,12.06333217419958,0.5669486280173303,0.7846153846153846,0.7105263157894737,0.5927306616961789,0.1242124212421242,0.7461656441717791,0.9218009478672986,0.8839506172839506,0.7568627450980392,0.1486486486486486,0.5009878633926051,0.6998535871156661,0.6496097137901128,0.5415647921760391,0.1181102362204724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982697489717,0.004400596209809,0.0066578706992794,0.00877843593469,0.0111276115304025,0.0136073822085514,0.0158176533578093,0.0178804836206192,0.0200605292217087,0.0221526114284544,0.024373737477313,0.0264517122760178,0.0285887639987248,0.0306597458238068,0.0327447866174377,0.0346858435882334,0.0366544174732156,0.0387188449690394,0.0406962847492855,0.0431419499245224,0.0579521151739606,0.0719999163521157,0.0850031439949696,0.0981990879862147,0.1104613796082645,0.1261770642880544,0.1391474923125861,0.1514461689023158,0.1631062571395018,0.1739447260413429,0.1872209010792721,0.1994097488730095,0.2111043517935125,0.2215227228014951,0.2316433277965393,0.2422778639485929,0.2515568153918264,0.2606895310108921,0.2692879770190637,0.2772159292643538,0.2842150328612422,0.2910137063198765,0.2975412939561739,0.3033715942584649,0.3091057127927183,0.3133910512554881,0.3188285986271857,0.3237396323051638,0.3290299165240836,0.333170383680372,0.3326408935171446,0.3319317884172652,0.3312782167042889,0.3299574640469921,0.329546468401487,0.3279025212659974,0.3258991551349723,0.3262723702157729,0.326753486464315,0.3278287133844476,0.3288936345584654,0.3306924824656722,0.3312327275772548,0.3318354571875698,0.3321225825074569,0.335096955796497,0.3371828421891,0.3416310899045706,0.3436440529866135,0.3433575022782202,0.3439767779390421,0.3451771289794625,0.3509046515995743,0.3549969806763285,0.3524904214559387,0.3491951592057337,0.3501370697532744,0.355252606255012,0.3493224932249322,0.3394216133942161,0.0,2.43888581250467,56.98637791327323,178.48357897455566,267.4499606883178,fqhc7_80Compliance_implementation_low_initial_treat_cost,60 -100000,95725,43610,412.41055105771744,6157,63.1600940193262,4842,50.09140767824498,1986,20.464873335074437,77.30949638025908,79.66949594915855,63.31695901961641,65.05937011445859,77.07073346153527,79.42993515296797,63.22912722012736,64.97342863693075,0.2387629187238076,239.5607961905739,0.0878317994890522,85.94147752783954,150.9145,105.7262309961648,157654.217811439,110447.87777086944,334.69868,214.9571323868228,349152.57247323066,224063.4655385979,345.84402,166.66897337017025,358188.8952729172,171752.79999793402,3179.2332,1445.299897407261,3289748.132671716,1478378.7907101177,1146.83982,502.8231299643808,1185245.7142857143,512467.76700379327,1942.04574,800.9567191987993,2002358.7150692088,813272.477189079,0.37849,100000,0,685975,7166.100809610865,0,0.0,0,0.0,28416,296.3384695743014,0,0.0,31747,328.5035257247323,1666300,0,59826,0,0,5926,0,0,76,0.7939409767563332,0,0.0,1,0.0104465917994254,0,0.0,0.06157,0.1626727258315939,0.3225596881598181,0.01986,0.33426097711812,0.66573902288188,24.707913587972996,4.478275958443135,0.3273440726972325,0.2211895910780669,0.225113589425857,0.2263527467988434,11.33808386147467,5.98970321685104,20.93130761273292,12323.083030335052,54.95071509725605,12.76261220436478,18.069135004232265,12.15354276219052,11.965425126468473,0.5611317637339942,0.776844070961718,0.7028391167192429,0.6045871559633027,0.1021897810218978,0.7299843014128728,0.8790322580645161,0.8858447488584474,0.7529411764705882,0.1100478468899521,0.5008408071748879,0.7224606580829757,0.6329555361813426,0.5592814371257485,0.1003382187147688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018837159842416,0.0040953693942097,0.0064625436247057,0.0087856504428374,0.0108270218065368,0.0131403503414862,0.0153901034500331,0.0175263098798575,0.0198990229344671,0.0219217897677845,0.0240572371590524,0.0265622112245107,0.0288020565552699,0.0311006755643433,0.0330428505130717,0.0349013813838635,0.0370316704616021,0.0388392810843885,0.0405961586430531,0.042375441410848,0.0568892601681198,0.070961327123345,0.0841802754266175,0.0967192429022082,0.1093629720239162,0.1246562883370701,0.1372018504371445,0.1491483925910155,0.1602768846207257,0.1702319297455528,0.1834507573309202,0.1961805367601684,0.2083460282916213,0.2185136954071415,0.228786594294648,0.2396936072097637,0.2496230019101236,0.2585474658946253,0.2664811133200795,0.2738788517975055,0.2808480090775412,0.2872354118156395,0.2933772246628222,0.2983518856155839,0.3038437701272345,0.3094548100282399,0.3150590649714686,0.31977291820473,0.3241446345256609,0.3286595921819455,0.3284932319473655,0.3283156590001377,0.3274745736412238,0.3270482084502154,0.3261209244185181,0.3247199631732392,0.3241277453985294,0.3246642085857256,0.3259330373214928,0.3265800089645899,0.3272959807406571,0.3275656561643291,0.3293986449522367,0.3312453694349027,0.3321804329423147,0.3331502262680164,0.3340121615419917,0.3374155671990405,0.3389800662111714,0.3404263765929572,0.3430836522689994,0.3442169635735176,0.3465078164397377,0.3489170225747407,0.3508804972219606,0.3496743635287152,0.349272030651341,0.3544538160872248,0.3635862068965517,0.362413528055342,0.0,1.8543396920327344,56.23086379548808,183.8111362449461,266.8248073742272,fqhc7_80Compliance_implementation_low_initial_treat_cost,61 -100000,95724,44059,416.6039864610756,6246,63.94425640382767,4911,50.62471271572437,1924,19.598010948142576,77.40440741590693,79.76137691535897,63.3594678928421,65.09916685113159,77.1542803358037,79.5162677182064,63.26553569853684,65.01078371012724,0.2501270801032262,245.10919715257276,0.0939321943052604,88.38314100434275,151.78614,106.17390197706644,158566.44101792653,110916.70007215164,336.31136,216.1993891386705,350675.31653503823,225197.9327427505,349.41589,168.73055008027237,361231.8122936777,173328.30241419887,3230.32712,1482.7262644234947,3329591.157912331,1503924.8092677826,1190.10525,528.0072756189317,1221670.343905395,530003.4281912489,1889.409,803.7853792271056,1926674.125611132,798908.4705901736,0.38093,100000,0,689937,7207.565500814842,0,0.0,0,0.0,28603,298.10705779114954,0,0.0,31963,330.1366428481885,1665670,0,59753,0,0,6026,0,0,69,0.7103756633655092,0,0.0,0,0.0,0,0.0,0.06246,0.1639671330690678,0.3080371437720141,0.01924,0.3272727272727272,0.6727272727272727,24.698507474122483,4.399999207402815,0.3319079617185909,0.2180818570555895,0.2260232131948686,0.2239869680309509,11.30048085725354,5.854091079499609,20.480415367861195,12397.62348111109,55.63646748167878,12.808752733446113,18.38162516321221,12.406364846250622,12.039724738769843,0.5703522704133578,0.8104575163398693,0.688957055214724,0.6063063063063063,0.1245454545454545,0.715724244771495,0.9411764705882352,0.8254716981132075,0.7286821705426356,0.1446808510638297,0.5185082872928177,0.7403156384505022,0.6409618573797679,0.5692488262910798,0.1190751445086705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022882136746079,0.0046516341525209,0.0070505407105321,0.0092113949118976,0.0112960458755706,0.0135280944625407,0.0156636942675159,0.0177851698417395,0.0199444171979728,0.0222358659503709,0.0243617468305131,0.0263360463087454,0.0283743356190437,0.0302718180600904,0.0325539642577077,0.0344446167364449,0.0367332566978386,0.0387472249310123,0.0407408177264129,0.0426331961876985,0.0575208302879695,0.0717208611108204,0.0846997115132441,0.0968813744663848,0.109454886623586,0.1250423011844331,0.137684080974409,0.1490779779396107,0.1610769806079384,0.1714907718210773,0.1843638595999956,0.1967450819139957,0.2085712731821395,0.2188709783250585,0.2283771292750561,0.238592060960482,0.2486189695001506,0.2580529062443765,0.2666734733235771,0.2750953204254783,0.2827617297222318,0.2900988017658188,0.2967635246869832,0.3031744514031649,0.3095618881457788,0.3151068877770538,0.319377288004298,0.3240209275156194,0.3283967847819906,0.3327366301185948,0.3322145398402363,0.3313525012008509,0.3306688394700982,0.3298992838926271,0.3292168273288614,0.327504848586656,0.3256390811135337,0.32570932726469,0.3264829678100983,0.3268634922896115,0.3267636213899339,0.3285683215690926,0.3282313281266358,0.3288533666726201,0.3297563317728964,0.3309538076752729,0.3312691739575048,0.3337512537612838,0.3386328617453424,0.3419822532086832,0.3466745411593676,0.3500477048658963,0.3518495297805643,0.3530794902912621,0.3547543433588642,0.3526011560693641,0.3562672387373582,0.3589018974566007,0.3576195773081201,0.366375892149088,0.0,2.686531864489408,56.04206566470796,187.0177249998565,268.9695458837287,fqhc7_80Compliance_implementation_low_initial_treat_cost,62 -100000,95748,43808,414.0452019885533,6298,64.54442912645695,4936,50.95667794627564,1955,20.063082257592846,77.33232137485312,79.69874033292592,63.31916690730778,65.07164468373341,77.08785732335194,79.45546929170463,63.22873044853217,64.98397512839881,0.2444640515011826,243.27104122129128,0.0904364587756134,87.66955533459964,149.83628,104.98723831868462,156489.7856874295,109649.12349731212,332.35767,213.4847911272576,346469.6181643481,222325.86374403728,343.74671,166.01288848428447,355827.5368676108,170902.47150995675,3257.93715,1489.7487526234809,3361889.2091740817,1516195.3806652175,1194.12661,528.0231781468952,1231684.3171658935,536584.491044666,1926.26478,809.7039064325735,1976768.8515687007,815290.181552333,0.37863,100000,0,681074,7113.17207670134,0,0.0,0,0.0,28268,294.5753436103104,0,0.0,31621,327.0042194092827,1673874,0,60057,0,0,5858,0,0,55,0.574424531060701,0,0.0,0,0.0,0,0.0,0.06298,0.1663365290653144,0.3104160050809781,0.01955,0.3366515837104072,0.6633484162895927,24.732865386058908,4.409346860870733,0.3123987034035656,0.2244732576985413,0.2364262560777958,0.2267017828200972,11.203134951718749,5.749152419330782,20.87917466267474,12366.387346274094,55.9599709539235,13.148087322875158,17.42549598783836,13.027371843295189,12.359015799914795,0.5676661264181524,0.7770758122743683,0.7088197146562906,0.6066838046272494,0.1251117068811438,0.7139605462822458,0.900523560209424,0.8737864077669902,0.7644787644787645,0.1471698113207547,0.5143725815367607,0.7121212121212122,0.6486725663716815,0.5616740088105727,0.1182669789227166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025335441242044,0.0048686973191735,0.0068536268377873,0.0091470851288722,0.011261902824123,0.0136001059483909,0.0156135269641837,0.0179379064615258,0.0203568324727774,0.0223587223587223,0.0243574892103293,0.0266102704145535,0.0286272493573264,0.0303620165816983,0.0325196541691599,0.0347475582657227,0.0365507672554826,0.0386442858328492,0.0407365839464604,0.0426586681663854,0.0573951895774177,0.0718186954611086,0.0845989259942943,0.0967267068336435,0.1091545582994158,0.1250872628038332,0.1377415144988275,0.1493587355648981,0.1612362370379863,0.1715789812263453,0.1850276249044167,0.1971802029907593,0.2091758486789867,0.2198733581950809,0.2293362968179217,0.240087252112099,0.2487558858316038,0.2587621094321365,0.2665501668066178,0.2750667109497577,0.2821595972455297,0.2888852485871078,0.2946975973487987,0.300130653145864,0.3059821168237924,0.3109590729783038,0.3155582259942168,0.3198346581875994,0.3242728756053974,0.3292866379879127,0.3294464567035157,0.3295947154751256,0.3284214974994717,0.3272120441541929,0.3269487949121816,0.3252569188121238,0.3248299589364704,0.3254535007797751,0.3254770112980851,0.3267781231022041,0.3281408355542209,0.3290753173707246,0.3297794194807648,0.3306606942889137,0.3325942350332594,0.3339856490541422,0.3339221104811828,0.3378829907956122,0.3409937451683182,0.3444355803749501,0.3455010038328162,0.3489254784561103,0.3508438015480269,0.3530357553020442,0.3531787022255611,0.3565535124941065,0.3617633691864869,0.3641838988154989,0.3715608825932988,0.3654141104294479,0.0,2.143617310268716,58.03804070701878,182.87652962265955,273.12384715127064,fqhc7_80Compliance_implementation_low_initial_treat_cost,63 -100000,95716,44219,417.4119269505621,6427,65.87195453215763,4981,51.36027414434368,1970,20.132475239249448,77.41699606751023,79.76916992579756,63.36600846061516,65.1001628369504,77.17462467023519,79.52975875943204,63.276094266991095,65.01418527822585,0.2423713972750363,239.41116636551385,0.0899141936240681,85.97755872455082,150.68614,105.56505815416298,157430.46094696812,110289.8764617859,336.44809,216.52853947498087,350825.70312173513,225550.8439195304,354.01098,171.48291976311504,365210.73801663256,175666.37253276946,3270.09905,1494.8998812862217,3374672.604371265,1520723.0374994157,1208.81168,537.526495136693,1243664.4134731914,543306.5456587058,1936.09186,811.3389315163741,1980629.236491287,813428.5377987211,0.38105,100000,0,684937,7155.930043044005,0,0.0,0,0.0,28612,298.205106774207,0,0.0,32484,334.7298257344645,1667118,0,59823,0,0,6034,0,0,71,0.7417777592043128,0,0.0,1,0.0104475740733001,0,0.0,0.06427,0.1686655294580763,0.3065193714018982,0.0197,0.3216192170818505,0.6783807829181495,24.81810963766612,4.45660090931228,0.3318610720738807,0.2212407147159205,0.2200361373218229,0.2268620758883758,11.68560638144621,6.117206768174129,20.935659715292644,12443.850366669509,56.32813318582308,13.030218408582243,18.673340390986287,12.137523737150358,12.48705064910419,0.5557117044770127,0.7731397459165155,0.6950998185117967,0.5866788321167883,0.1097345132743362,0.722473604826546,0.9107142857142856,0.8807339449541285,0.748,0.1209677419354838,0.4952120383036936,0.6971830985915493,0.628594905505341,0.5390070921985816,0.1065759637188208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024595639587845,0.0044879392963154,0.0068768257059396,0.0091288498055423,0.011336830974459,0.0134672937152629,0.0158091083295959,0.0179424372320881,0.0199991824554949,0.02253777609543,0.0245931876870106,0.0267041605944292,0.0290710225228466,0.0315019823901961,0.0336201204918709,0.0358884801388831,0.0378936905969809,0.0396934055220196,0.0416043069759707,0.0437346334958536,0.0588499410038739,0.073284295773911,0.0867708770457406,0.099260645961949,0.1114943256127916,0.126713342922413,0.1385064177362893,0.1501330494944119,0.1609029625118853,0.1717407856216019,0.1840158506250875,0.1968279040581623,0.2083469188131725,0.2190281676296158,0.2289750942069587,0.2393052713092538,0.2500612949960994,0.2592288761279737,0.2673635518468969,0.2747671464860288,0.2821040462427746,0.289490289560401,0.295728355067923,0.3022687818018557,0.3076577724388142,0.3137153483331486,0.3187056294370562,0.3235895936860567,0.3281005521575524,0.3332849967702387,0.3324051654560129,0.331463994611906,0.3307898071237505,0.3297335588613725,0.329618236666518,0.3280726192845224,0.3259550668309792,0.3261193419006302,0.3285266777895059,0.3289251497538171,0.3301247971347025,0.3313008929625113,0.3318717113505387,0.3332666088387714,0.3352329869259135,0.3365092551727718,0.3370872574605696,0.3398043077307824,0.3422209813638584,0.3461083043890117,0.3484629294755877,0.3527051992610187,0.3566381089362767,0.3589041095890411,0.3609296247899944,0.3675283658907474,0.3699788583509514,0.36779324055666,0.3667922497308934,0.3660081997763697,0.0,2.5760245409143225,57.85281725252591,185.3409933569349,273.6711140322632,fqhc7_80Compliance_implementation_low_initial_treat_cost,64 -100000,95699,43884,414.52888744918965,6312,64.76556703831807,4882,50.47074682076093,1964,20.20919758827156,77.3508434030137,79.74087162499522,63.31502979323547,65.08253322164465,77.10314269373907,79.49205463361018,63.22415319058826,64.99344862788617,0.2477007092746248,248.8169913850413,0.0908766026472065,89.08459375848565,151.13274,105.88644596265728,157925.0984858776,110645.30032984389,334.98647,215.15267476137333,349501.1860103031,224281.7347053859,347.03142,167.3754313140811,358704.11394058453,171975.22534768237,3189.78201,1450.9128015228805,3300582.5139238653,1483735.7355869734,1141.59,502.0677911036136,1181434.0902203785,513340.0516497396,1924.88492,806.0306435868366,1982215.0074713423,817790.6023290862,0.37947,100000,0,686967,7178.413567539891,0,0.0,0,0.0,28471,296.941451843802,0,0.0,31862,329.02120189343674,1665312,0,59759,0,0,5909,0,0,56,0.5851680790812861,0,0.0,0,0.0,0,0.0,0.06312,0.1663372598624397,0.3111533586818757,0.01964,0.3336355394378966,0.6663644605621033,24.83283182046829,4.355990880277154,0.3265055305202786,0.233920524375256,0.2156902908643998,0.2238836542400655,10.944037226892885,5.6060223690201525,20.840830647419622,12429.893990268998,55.099936894241054,13.566910097864197,17.78583382870043,11.785834481633511,11.961358486042924,0.5471118394100778,0.7408056042031523,0.6944792973651192,0.5698005698005698,0.1079597438243366,0.7068832173240526,0.8894601542416453,0.8722891566265061,0.6934865900383141,0.1096491228070175,0.4895514070771802,0.6640106241699867,0.631891433418151,0.5290404040404041,0.107514450867052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361234640436,0.0042794414416241,0.0063242952420591,0.0086389137328238,0.0108038820728804,0.0133452863633585,0.0156280284405635,0.0178728271748677,0.0200857017211932,0.0223879068433665,0.0244897959183673,0.0264890459218783,0.0284712150667036,0.030362975097621,0.0325397071116752,0.034744763991978,0.0367887779205171,0.0390479848042929,0.0411292335857535,0.043331873996706,0.0580420091705747,0.0724441931565942,0.0862888751272658,0.0991068704699186,0.1109024935656723,0.1265591113462047,0.1394257814573051,0.1514280237684493,0.1632711958613023,0.173711489553488,0.1866195285469459,0.1991361205534024,0.2105371968270894,0.2213017880983125,0.2316118591260885,0.2416890288527644,0.2513315839428284,0.260417722231605,0.2696872976748941,0.2773911747509372,0.2843775332947307,0.2904041882854499,0.2966609791933267,0.3026824060078217,0.3083459972038174,0.3142990988325505,0.3190014390289682,0.3233785898789907,0.3278198408076102,0.3314634918958872,0.3306204945091962,0.3300173367456451,0.3283544268157053,0.3277365518436174,0.3271015567086731,0.3254896564377781,0.3243730432307644,0.3245897339213404,0.3250303040650129,0.3248372424863997,0.3256384333108664,0.3256607495069034,0.3278743315508021,0.3283392415223062,0.3296495181473846,0.3301008735440932,0.3301988330595366,0.3340633212363909,0.3382003632807042,0.3427525679877209,0.3466810966810967,0.3468256900100269,0.3469988107905113,0.3521940832002433,0.3534848627746864,0.3533897295365185,0.3565084226646248,0.353870774154831,0.3612920738327904,0.3628659476117103,0.0,2.117338779528169,56.92905578809263,178.44769130292485,272.1442169283084,fqhc7_80Compliance_implementation_low_initial_treat_cost,65 -100000,95720,44394,420.5495194316757,6194,63.518595904722105,4805,49.59256163811116,1873,19.06602590890096,77.26691653433518,79.62467464617525,63.2951211478972,65.03826320361414,77.02958112199465,79.3951037179004,63.20760739053712,64.95727499458715,0.2373354123405278,229.5709282748533,0.0875137573600781,80.98820902698378,150.63554,105.57335141302404,157370.55996656916,110293.47891038869,332.36825,213.8353437356068,346648.48516506475,222816.01086776183,349.42278,168.66397832437212,362194.285415796,173831.30100586166,3153.2659,1426.943212536158,3255367.906393648,1451896.9310722766,1138.6413,499.9844842254304,1173419.7033012954,506273.1983501259,1839.36622,770.8064300335856,1875291.8303384872,764447.68318864,0.38149,100000,0,684707,7153.207271207689,0,0.0,0,0.0,28223,294.2122858336816,0,0.0,31985,331.2682824905976,1665363,0,59789,0,0,5988,0,0,59,0.6163811115754283,0,0.0,0,0.0,0,0.0,0.06194,0.1623633647015649,0.302389409105586,0.01873,0.3255131964809384,0.6744868035190615,24.37981999894235,4.331626399938257,0.3234131113423517,0.2349635796045785,0.2195629552549427,0.2220603537981269,11.076476980385772,5.668490493444493,20.044262844956524,12434.95669887585,54.492165284329744,13.453898421899842,17.64413184824273,11.759258911745686,11.634876102441488,0.5473465140478668,0.7714791851195748,0.6833976833976834,0.5620853080568721,0.0974695407685098,0.7255700325732899,0.9348958333333334,0.8316831683168316,0.7276595744680852,0.1219512195121951,0.4861615879228403,0.687248322147651,0.6313043478260869,0.5146341463414634,0.0916473317865429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776121217031,0.0043192164576341,0.006768275358201,0.0089393646956044,0.0109330187336004,0.012900532516062,0.0151078036597176,0.0170578087197966,0.0192797194933706,0.021464762782128,0.0237926828018164,0.0258618919529373,0.0280534331520006,0.0299219248913334,0.0319518813127405,0.0342254059809181,0.0362135741358242,0.0382939431037702,0.0402594567624037,0.0424702780990486,0.0576822671929494,0.0714921233055948,0.0854732246859685,0.0985090017572103,0.1100700599307841,0.12569451058831,0.1373075698057118,0.1494301842581744,0.1609350271611275,0.1718781867559763,0.1849276674643727,0.197297560869895,0.2087925251557259,0.2194929639161145,0.2290078018248336,0.2394091075570748,0.2499021723332178,0.2586688596985332,0.2674307653861008,0.275876298113294,0.2826708326100792,0.2898789878987898,0.2969808193227563,0.3033504412893323,0.309134884173169,0.3139407244785949,0.3196696659064137,0.3251942427716214,0.3298963723849915,0.3342639392415782,0.3344816405933371,0.3331584325205048,0.3337243650445917,0.3322324584274871,0.330528165867318,0.3288693675707221,0.3274599215113046,0.3282733386075949,0.3291986206186628,0.3309022489024281,0.3318171566047665,0.3329168402054699,0.3338316104175,0.3351893845842969,0.3358560824044297,0.3362929205625835,0.3352738743905936,0.3377470856563608,0.3403876934020985,0.3429977015202226,0.3459516783474732,0.3478377941730842,0.3511193080641058,0.3535500690078209,0.3577374195989406,0.3584928087483656,0.3630095004596996,0.3690934901642669,0.3729939125622579,0.3787996882307092,0.0,2.3261885750596765,53.69101383153835,182.4146408262736,271.3134935693295,fqhc7_80Compliance_implementation_low_initial_treat_cost,66 -100000,95699,43895,414.6960783289272,6275,64.35803926895788,4906,50.64838713048204,1995,20.418186187943448,77.288290147924,79.65922921137793,63.294707477804174,65.04470481661338,77.04479446581884,79.41629859178688,63.20549146819811,64.9581978944052,0.2434956821051628,242.9306195910499,0.0892160096060621,86.50692220817291,150.37682,105.34205100011896,157135.20517455775,110076.4386253973,333.66189,214.19659603876565,348035.64300567406,223202.0583865344,345.95731,166.25848871167483,357670.4145288875,170763.0241824152,3220.37508,1461.8152055386624,3324244.736099645,1486805.6580143564,1169.64522,515.3982190892146,1203677.049916927,520114.8688927348,1949.5088,808.6969950746484,1997143.5020219649,812459.810101258,0.37939,100000,0,683531,7142.50932611626,0,0.0,0,0.0,28419,296.31448604478624,0,0.0,31737,327.8090680153398,1666440,0,59873,0,0,5936,0,0,58,0.606066939048475,0,0.0,1,0.0104494299835943,0,0.0,0.06275,0.1653970847940114,0.3179282868525896,0.01995,0.3329798515376458,0.6670201484623541,24.703857305473782,4.413643041285184,0.3194048104362005,0.2319608642478597,0.2282918874847126,0.220342437831227,11.13140496088477,5.676468219013411,21.154687979502054,12370.10210701109,55.76402145813191,13.584828583722604,17.82167427414256,12.607139966933556,11.750378633333185,0.5605381165919282,0.7644991212653779,0.7102744097000638,0.575,0.1137835337650323,0.735686274509804,0.916030534351145,0.8880778588807786,0.7091633466135459,0.1590909090909091,0.4990360782153676,0.6845637583892618,0.6470588235294118,0.5362485615650172,0.1022067363530778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023901396611268,0.0050486106183027,0.0073162316840524,0.0093155082386883,0.0116955495891302,0.0137971061715321,0.0160681878428253,0.0181697545041596,0.0201678438908708,0.0222995445939722,0.0245147272839076,0.0265651142977386,0.0287679542673836,0.0310604422199565,0.0331404523934771,0.0352614119033101,0.037335763022478,0.039268591353438,0.0412501950179416,0.0431778389194597,0.0583302001086184,0.0721779006218983,0.0851340714698011,0.0980404537896487,0.1100824457135618,0.1253202888423014,0.1383546951821686,0.1493990794408455,0.1605197027214885,0.1709263117201091,0.1835396626838631,0.1957466171197036,0.2075387447042551,0.2178525679626,0.2281258260639704,0.238497298376807,0.2480574220453249,0.2574746335963923,0.2656877353018119,0.27391094679312,0.2810289239904437,0.2883370849746764,0.2953555964173439,0.3020130197698719,0.3067895448070999,0.3120506929519009,0.3169087462495449,0.3209311224489796,0.3255741452769407,0.3301481001098508,0.329650017539599,0.3295161357082741,0.3287539574853008,0.3276451996404442,0.3277888832532744,0.3271995576308675,0.3246044215905664,0.3258258752303237,0.3268390479617539,0.3277464410421702,0.3286275541853864,0.3294061738906599,0.3300775096099313,0.3303070283324761,0.3312369475983581,0.3318688746198039,0.3321378760709305,0.3362180193221512,0.3390634887154609,0.3435673096042951,0.3459919472913616,0.3486684100976677,0.3512644258056379,0.35351532713131,0.353781512605042,0.3515294117647058,0.3516217035465293,0.3485335476094817,0.3485421166306695,0.3497926875235582,0.0,2.314148703682775,56.04719824471562,189.31049631212272,269.3212305735781,fqhc7_80Compliance_implementation_low_initial_treat_cost,67 -100000,95822,44256,418.3277326709941,6233,63.84755066686147,4867,50.15549665003861,1888,19.337939095406064,77.36488025655099,79.67949629136017,63.35773544642036,65.0710436785692,77.13101070185823,79.44869484946128,63.271284992359135,64.98867422617188,0.2338695546927596,230.8014418988904,0.0864504540612216,82.36945239731597,151.36506,106.0997832143505,157964.60103107843,110725.69578630218,337.1017,217.1678941479527,351116.3928951598,225954.14087261035,354.24659,171.43062265551995,365821.3771367745,175942.74028521904,3177.05277,1442.2474836299948,3275990.1692721923,1465604.8619847177,1127.74036,496.30908252857074,1161967.2309073072,503004.4901260368,1849.65362,772.2602284183766,1894789.693389827,772680.392283117,0.38082,100000,0,688023,7180.209137776294,0,0.0,0,0.0,28692,298.7205443426353,0,0.0,32439,334.6517501200142,1664795,0,59763,0,0,6055,0,0,52,0.5426728726179791,0,0.0,1,0.0104360167811149,0,0.0,0.06233,0.1636731264114279,0.3029038986042034,0.01888,0.3322173185207731,0.6677826814792269,24.51621335697109,4.387082905096454,0.3207314567495377,0.2336141360180809,0.2260119169919868,0.2196424902403945,11.060093168776998,5.660943848502406,20.067032819679586,12357.404585878048,55.159363316818016,13.758022504042506,17.61343863393071,12.300472208194956,11.487429970649842,0.5566057119375385,0.7845206684256816,0.7014734144778988,0.5718181818181818,0.0869971936389148,0.7329762815608263,0.9149425287356322,0.8692493946731235,0.68,0.1483253588516746,0.4918539325842697,0.7037037037037037,0.6411149825783972,0.54,0.0720930232558139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023295857388838,0.0043391865039133,0.0064230051140514,0.0086945922886279,0.0109923633072675,0.013379220461858,0.0155456788109849,0.0175898891316332,0.0196270853778213,0.0217718409335175,0.0242077645226089,0.0264054514480408,0.028222573948077,0.0302905546578289,0.0324492593776091,0.0345518174028843,0.0365639222176251,0.0384192966823466,0.0404855356883267,0.0427196587421318,0.0573872229465449,0.0715263768540101,0.0847702654570596,0.0976193726569145,0.1100954146218168,0.1260520174447459,0.1388827087902192,0.1507893477914208,0.1615174532730221,0.1717223650385604,0.1850995158687466,0.1969924649463249,0.2091739730343426,0.2193670277826314,0.2285934065934066,0.2395280431705591,0.2485547201336675,0.2582507046365647,0.2665632466341309,0.2741229323609094,0.2814603563140089,0.2886054084336084,0.2953629865910567,0.3016322869955157,0.3073823222392154,0.3126861813437061,0.317992050198745,0.3220302375809935,0.3263308943299635,0.3305555555555555,0.3299686832166234,0.3290678175770404,0.3277506233008888,0.3268738891056487,0.3258386866523911,0.3240373270406521,0.3214874461070251,0.322832056299122,0.3233531909066009,0.324736644429739,0.3255232328550744,0.3272150014882429,0.3285188689162199,0.3293027638190954,0.3296534141472448,0.3315153571148978,0.3327928542982306,0.3354826534142736,0.3380440132180271,0.3403389830508475,0.3428165007112375,0.3462280325760823,0.3486104028556859,0.3478327815844176,0.3501952938934933,0.3514224240975376,0.3566227730441518,0.3655626414318041,0.3746891406465875,0.3807126258714175,0.0,2.393499720870849,57.085842342372885,181.0261252773824,267.3373784286614,fqhc7_80Compliance_implementation_low_initial_treat_cost,68 -100000,95635,43951,416.57343022951846,6313,64.85073456370576,4929,50.922779317195584,1889,19.3234694411042,77.2563444549925,79.6675660206393,63.27473565930678,65.0562868251813,77.02875807968552,79.4421270521377,63.19035721562133,64.97488704479458,0.2275863753069842,225.43896850159229,0.0843784436854448,81.39978038671813,149.09048,104.46976261413744,155895.31029434828,109238.00137411768,329.2978,211.89141443599263,343695.73900768545,220930.65764206892,344.49847,166.95931147940945,356289.85204161657,171471.52876271977,3214.63892,1465.4873687008924,3321957.1809483976,1492970.3546827943,1163.89378,517.2988361250812,1200147.1636953,524040.1486119947,1854.98478,771.7226632688004,1900046.4056046424,774889.4536261146,0.38024,100000,0,677684,7086.150467924923,0,0.0,0,0.0,28000,292.12108537669263,0,0.0,31628,326.8886913786793,1674335,0,60087,0,0,6019,0,0,71,0.7319496000418256,0,0.0,1,0.0104564228577403,0,0.0,0.06313,0.166026719966337,0.2992238238555362,0.01889,0.3321725965177896,0.6678274034822105,24.66545468091624,4.388680428560656,0.3191316697098803,0.2335159261513491,0.2254006897950903,0.2219517143436802,11.125042791417588,5.793318283734604,20.04098746010827,12463.211281134823,55.98618229805366,13.71561466559685,18.094711659623197,12.413158883551594,11.76269708928202,0.5579224994927977,0.7715030408340573,0.6999364272091545,0.5895589558955896,0.0968921389396709,0.7326807228915663,0.9019607843137256,0.835214446952596,0.7481481481481481,0.1594202898550724,0.4934740349902805,0.6998654104979811,0.6469026548672566,0.5386444708680143,0.0822998872604284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023598521294373,0.0046319288892492,0.0068094865992145,0.009072160759095,0.0112625902940278,0.0135387060297668,0.0158111637016484,0.0177980301606113,0.0200274123928564,0.0221996844714897,0.0240621408635692,0.0262568339704854,0.0284240652281337,0.0301777466182777,0.0321570977005557,0.0342297782514667,0.0362718470756536,0.0382377994307439,0.0401348581180216,0.0419517690253671,0.0565605894340805,0.0707453774029647,0.0846149808409007,0.0977432529156667,0.1100348211459322,0.1260885667425004,0.1386091330694372,0.1505803428814822,0.1622508416608774,0.1731889734207504,0.1860048942982503,0.1982839871299034,0.2100705790092798,0.2210156044534058,0.2307200282320765,0.2418328948682939,0.2517197794208118,0.2607642019837691,0.2691984177502955,0.2773692482419209,0.2846921854888273,0.2915953380390685,0.2975752686896486,0.304141656662665,0.3093313203136414,0.3148591897233201,0.3196774759862563,0.3247657295850067,0.3293111725247493,0.3333906033172537,0.3322855254104664,0.3311534216335541,0.3310199581613614,0.3310223795088981,0.3306375803876513,0.3292917480881968,0.3279996186420479,0.3279350225707602,0.3292366399092424,0.3298493256469658,0.3312847582241493,0.3317299091613827,0.3338455708992927,0.3345423607379545,0.336366919465511,0.3366204899428661,0.3375432179901134,0.3398865784499055,0.3430442242375433,0.3437487639916149,0.3464506172839506,0.3474414662570187,0.3481957302097109,0.3513595394985988,0.3542762247439801,0.3570176463713918,0.3584031100478468,0.362879238548483,0.3667829353367319,0.3708124759337697,0.0,2.319718187431986,58.37608106695974,183.36548342881773,270.45757845580886,fqhc7_80Compliance_implementation_low_initial_treat_cost,69 -100000,95689,43993,415.3455465100482,6385,65.58747609443093,4984,51.458370345598766,1996,20.36806738496588,77.32722884548278,79.70421447563082,63.32110870231941,65.07587903957432,77.08084813379361,79.46192807624195,63.2298071257058,64.98939236463579,0.24638071168917,242.286399388874,0.0913015766136169,86.48667493852713,151.05068,105.77666046771353,157855.8454994827,110542.13176824244,337.21212,216.8281234443789,351802.1089153404,225994.54842706997,348.23582,168.2349523590154,360278.4541587852,172878.2375853974,3287.04375,1498.3251617550914,3396215.88688355,1526911.5904180133,1169.70106,516.3085779908,1207569.1458788367,524739.8948581347,1962.36552,821.4231424254185,2005764.6333434356,820915.1226793055,0.37958,100000,0,686594,7175.265704521941,0,0.0,0,0.0,28700,299.29249966035803,0,0.0,31968,330.46640679701954,1663590,0,59740,0,0,5909,0,0,58,0.6061302762072966,0,0.0,0,0.0,0,0.0,0.06385,0.1682122345750566,0.3126076742364918,0.01996,0.3299492385786802,0.6700507614213198,24.782397951980847,4.428109746051489,0.3200240770465489,0.2275280898876404,0.2203049759229534,0.2321428571428571,11.300525878259688,5.783280528070245,21.332038200052203,12444.422637890655,56.51774096453879,13.415954350762252,18.23018522580258,12.185239593274703,12.686361794699252,0.5545746388443018,0.7768959435626103,0.7084639498432602,0.5673952641165756,0.1123595505617977,0.7484802431610942,0.9448621553884712,0.8862559241706162,0.7471698113207547,0.1565217391304348,0.4850054525627045,0.6857142857142857,0.6445012787723785,0.5102040816326531,0.1014023732470334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024297892157855,0.0044896676835139,0.0071218423455412,0.0094863747625867,0.0116024852299651,0.0137659983912516,0.016081006668978,0.0184857986171397,0.0205959953367557,0.0227954654842244,0.0247874555169266,0.026878793792303,0.0288729569322869,0.0308404088698376,0.03307738353252,0.0353578704613379,0.0371199171199171,0.0391507475083056,0.0412432258131624,0.0434365651027279,0.0583288939028339,0.0724378296910324,0.0856909085187399,0.0984944924303794,0.1106306230289734,0.1256862973267463,0.1385286438987116,0.1504083653672094,0.1615987862729176,0.172815138219929,0.1859515705114395,0.1978523954882985,0.2093870669494751,0.2202679792179382,0.2300063838686243,0.2399809424617464,0.250429735461547,0.2588596629390455,0.2675851737521846,0.2754599399729649,0.2836518980747189,0.2899624337324017,0.2967159160865653,0.3021656020421615,0.3080681031025556,0.3136137728612478,0.3180861723446894,0.3227158103874271,0.3276731434793317,0.3318539066111882,0.3312688067576138,0.3309221675691315,0.3305815446707026,0.329982353111349,0.3289019234204728,0.3276527084133692,0.3258706862356207,0.3265925840815455,0.3273149650684112,0.3285724474876074,0.3296530558778397,0.3305555007010407,0.3323489989109491,0.3334450776623086,0.3348173461038649,0.3360133653544951,0.3356178074759416,0.3380051022015055,0.3422114608555286,0.3461461939437348,0.3484834600934665,0.3503286836620169,0.3543277151184894,0.3560780697710158,0.3586161011310712,0.3628878281622911,0.3665843113032736,0.3660277324632953,0.3722991689750692,0.3754345307068366,0.0,2.504288045680431,57.474473231398505,187.29992835295525,275.65309500168627,fqhc7_80Compliance_implementation_low_initial_treat_cost,70 -100000,95771,44047,416.1802633365006,6332,64.90482505142475,4985,51.3829864990446,1895,19.41088638523144,77.38146625236273,79.70529838437534,63.35451413110488,65.06815284372772,77.15099510722555,79.47607263939133,63.27027736963744,64.98685542043023,0.230471145137173,229.2257449840065,0.0842367614674373,81.29742329748524,150.15616,105.17124949106518,156786.66819809756,109815.34022936504,333.50857,213.77443754067616,347591.3794363638,222570.99997797905,348.60081,168.17563565947705,359547.76498104853,172212.314774306,3226.51736,1460.6979826670804,3331683.5994194485,1487961.560748611,1189.69919,516.8700059431098,1229837.2054170887,527355.0847692122,1854.18236,763.3200089451758,1902213.0916456964,769166.8654084903,0.38074,100000,0,682528,7126.666736277161,0,0.0,0,0.0,28322,295.0371197961805,0,0.0,31987,329.4943145628635,1672912,0,60080,0,0,5968,0,0,76,0.7935596370508818,0,0.0,0,0.0,0,0.0,0.06332,0.1663077165519777,0.299273531269741,0.01895,0.3327313769751693,0.6672686230248307,24.564275763747883,4.33202798135871,0.3283851554663992,0.2385155466399197,0.2214643931795386,0.2116349047141424,11.32904794468768,5.9576101241735,19.81885991357691,12446.02274852041,56.17501548237842,14.089610808362348,18.461284893486987,12.226409766597426,11.397710013931649,0.5654964894684053,0.7804878048780488,0.7049480757483201,0.5661231884057971,0.1061611374407583,0.7378787878787879,0.9135514018691588,0.8781609195402299,0.7368421052631579,0.0904761904761904,0.5034106412005457,0.7056504599211564,0.6422628951747088,0.5169194865810969,0.1100591715976331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024198610857987,0.0047630629535043,0.0071311916089307,0.0095052400682427,0.0116627858501021,0.0137426960115642,0.0159307729941291,0.0180512046041286,0.0204331834899877,0.0225282370273367,0.0248739909027578,0.027055311028348,0.0290321254598894,0.0312020670983415,0.0330429403577504,0.0348242778506439,0.0367783262446576,0.0388686717883321,0.0408684811967587,0.042919169937839,0.0578990211016259,0.0717798472323951,0.0842579968536969,0.0970346154250454,0.1094736620178573,0.1248149244891915,0.1374797153251381,0.1486354153361434,0.1594715256119964,0.1700633596706583,0.1835278160523596,0.1963773992971073,0.2079722515195337,0.2182273607297944,0.2285085547670132,0.2384249770106028,0.2484429065743944,0.2577458767409941,0.2666999682121611,0.2749223593587055,0.2825681699762635,0.2895007961037745,0.2962419190603613,0.3024540465406092,0.3084676195217914,0.3145077847851793,0.3196198574465425,0.324370709382151,0.3296737441740031,0.3331795290953674,0.3328715161949854,0.3321791701016763,0.3322311491325576,0.3327071471922777,0.3323376874266268,0.3319910583047525,0.3300297167425392,0.3312959837448998,0.3316961697192946,0.3323542501112594,0.3333956165100245,0.3341934213117983,0.3348870263152394,0.3355826164674338,0.3372450203983681,0.3376880237339301,0.3398226567384755,0.3421918580964618,0.345063025210084,0.3474653646143464,0.3520825754819934,0.3553522318595303,0.3585931155119635,0.3587128937230908,0.3616260468617672,0.3696862048549437,0.3657203582814635,0.3668412570507655,0.3656798245614035,0.3676132003069838,0.0,2.5820896638371917,57.7093960616928,182.4451298972793,276.1749137933116,fqhc7_80Compliance_implementation_low_initial_treat_cost,71 -100000,95769,44083,416.2829308022429,6224,63.82023410498178,4883,50.5382743894162,1907,19.609685806471823,77.31912755708531,79.6679199373319,63.32066847763053,65.0580392727541,77.08090246799648,79.42974829044616,63.23250853339423,64.9721654952655,0.2382250890888286,238.1716468857462,0.0881599442363025,85.87377748860092,149.14306,104.58097552376044,155731.8547755537,109201.07838584745,332.50164,214.1881555655232,346714.8868631812,223176.247960381,350.03737,168.61147170133077,362977.497937746,174109.99198312862,3193.96685,1446.284509136607,3307398.176863077,1482621.8849887163,1168.20732,508.84346415997817,1206791.1954807923,518541.4673502448,1871.58072,781.3504118527228,1925954.974991908,790483.3657203591,0.38021,100000,0,677923,7078.720671616075,0,0.0,0,0.0,28196,293.936451252493,0,0.0,32063,332.2369451492654,1674657,0,60073,0,0,5959,0,0,66,0.6891582871284027,0,0.0,0,0.0,0,0.0,0.06224,0.1636990084427027,0.3063946015424164,0.01907,0.3298035604665439,0.6701964395334561,24.80590468005427,4.387507802842245,0.3237763669875076,0.2320294900675814,0.2199467540446447,0.2242473889002662,11.071638818788296,5.586446653947249,20.297136436914958,12419.036950729487,55.27228824052111,13.507531737572334,17.823644841065704,11.99573782366948,11.94537383821357,0.5633831660864222,0.7828773168578994,0.6963946869070209,0.5865921787709497,0.1214611872146118,0.740598618572525,0.9058823529411764,0.8656716417910447,0.7557251908396947,0.1588785046728972,0.4988826815642458,0.7090395480225988,0.638676844783715,0.5320197044334976,0.1123723041997729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886307709445,0.0047933197539496,0.0071425672659388,0.0094558085681204,0.0115426467746692,0.0137586182314421,0.0160999235279123,0.01860474615039,0.0208686938917404,0.0230032145123973,0.0249864148544595,0.0269018697826287,0.0291664524091119,0.0314093517249904,0.0333673816819884,0.0353551534192494,0.0373920785109422,0.039571404862667,0.0415220598931814,0.0433161485184606,0.0576084006596939,0.0710370509843302,0.0845194516409863,0.0966958314053758,0.1088093280199042,0.1249510959787677,0.1382283690049424,0.1502064181137214,0.1620415354225615,0.1720264128290884,0.1852617524818571,0.1976301266096742,0.2086550801557435,0.2196308688141004,0.2300727228719483,0.2407591965096449,0.2505747639561617,0.2593259235926742,0.2678597773414891,0.2756744995648389,0.2825319269645359,0.2893181153058238,0.2956543373693813,0.3012386576407893,0.3064471011760699,0.31244831204098,0.3178338282649826,0.3218285364828192,0.3265329943971778,0.330616073669886,0.3295221658936468,0.3290262146487953,0.3285103259411922,0.3280994249460434,0.3283444417995715,0.3266770957946075,0.3253342638265476,0.3258524875867284,0.3267231947483588,0.3283648856600937,0.3302536946275327,0.3317966879686603,0.3332492855942175,0.3325177336805244,0.3334941968486837,0.3357480973925779,0.3367256510677224,0.3415125838661921,0.3456229311923375,0.3459082073862509,0.3484144341170038,0.352787827197276,0.3549993695624763,0.3578947368421052,0.3594014680971202,0.3615547205260686,0.3670156273706569,0.3686756702277766,0.3654320987654321,0.3665521191294387,0.0,1.7010627540649537,57.83294814473743,178.786945714464,272.08904016695914,fqhc7_80Compliance_implementation_low_initial_treat_cost,72 -100000,95689,44813,423.078932792693,6257,64.29161136598773,4900,50.695482239337856,2044,21.08915340321249,77.34181859432726,79.72527854020221,63.3271521787835,65.08610110731608,77.10064624555584,79.48115563644868,63.23848466707627,64.99792742476876,0.2411723487714283,244.12290375353507,0.0886675117072286,88.17368254732116,149.8904,105.1195573600854,156643.292332452,109855.424719754,338.30943,217.98451577399143,353069.2765103617,227323.46014065517,357.46791,172.29558369020694,369998.6518826615,177337.09261839278,3231.76176,1464.109010370918,3347606.7259559613,1500317.3304882671,1187.58316,515.7110377011273,1227640.533394643,525499.0936274044,2009.3353,825.9463347615637,2074918.8307955984,843000.4742290233,0.38521,100000,0,681320,7120.149651475092,0,0.0,0,0.0,28597,298.33105163602926,0,0.0,32716,338.3147488217037,1667743,0,59833,0,0,5945,0,0,61,0.6374818422180188,0,0.0,0,0.0,0,0.0,0.06257,0.1624308818566496,0.3266741249800223,0.02044,0.3307458143074581,0.6692541856925418,24.75729401529047,4.36758808225713,0.320204081632653,0.2289795918367347,0.2144897959183673,0.2363265306122449,11.21589425553123,5.806859384073009,21.412427045195567,12552.84907171807,55.56364234026966,13.447313072771763,17.771086031414224,11.715397558640973,12.6298456774427,0.556734693877551,0.7985739750445633,0.7004461440407903,0.570884871550904,0.114853195164076,0.7027463651050081,0.8967254408060453,0.8426395939086294,0.6728110599078341,0.1565217391304348,0.5073730202075368,0.7448275862068966,0.6527659574468085,0.5443645083932853,0.1045258620689655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189638585938,0.004733571870217,0.0070310359871351,0.0092827689870203,0.0117033391629723,0.0139488474382992,0.0161453077699293,0.0181701254555291,0.0203906417686198,0.0227047057498797,0.0250082027725371,0.0271647033450071,0.0292995072168554,0.0315105052191206,0.0339467627235852,0.0364497677930513,0.0384440023211473,0.0404385427589572,0.0424113180068657,0.0443357970123114,0.0596149627602344,0.0733954559731965,0.0869656482540748,0.0999936866029715,0.1121460821131693,0.1275504267899262,0.1396390182825249,0.1517548248368657,0.1628950573754727,0.1736271986271986,0.1870638407857327,0.1995565170362358,0.2109476111237996,0.2216743921637222,0.2320029921675613,0.2425266095894204,0.2528236607142857,0.2619810822058013,0.2705051972220961,0.2782988079288193,0.285248404107688,0.2921319411152555,0.2985051680503323,0.304276473406804,0.3101182813980035,0.3147317578057616,0.3195360302306085,0.3252907790588175,0.3307336537589553,0.3359198701452947,0.3351650571740272,0.3345398992540395,0.3337797640026504,0.3327068484436669,0.3330806504355064,0.3316670755642787,0.3291207398961104,0.3287075053374938,0.3295439004376367,0.3301556698086261,0.3315872184389732,0.3327803452225777,0.3335427793486229,0.3342205323193916,0.3356172616901069,0.3363097569254066,0.3368727521835931,0.3395709290237217,0.3452846818261942,0.3487696105757745,0.3512377820407417,0.3551645313912073,0.3580262414464185,0.3613963039014374,0.3620205799812909,0.3627497621313035,0.3618653167663752,0.3557400283458189,0.3521872387851769,0.3661265432098765,0.0,2.0251574544059228,54.48392199091511,192.3710971422419,270.5021577459109,fqhc7_80Compliance_implementation_low_initial_treat_cost,73 -100000,95681,44046,417.5437129628662,6187,63.53403497037029,4820,49.81135230610048,1893,19.43959615806691,77.38307130315455,79.75871084517823,63.34642469116329,65.09707977894833,77.14498986672129,79.52138636814533,63.25935773340577,65.01242952187775,0.2380814364332621,237.3244770328995,0.0870669577575213,84.65025707057805,150.26726,105.31667780097548,157050.2607623248,110070.62823442007,331.40796,212.97087738938683,345731.35732277046,221949.33908256883,346.35203,167.05535174664956,358356.8315548541,171875.41897656044,3143.62305,1432.3250251836553,3248475.862501437,1460066.3323500426,1132.68479,499.04086601498886,1166613.0788766842,504487.9180874304,1851.02318,773.3651867221066,1901297.624397738,779926.278027172,0.38065,100000,0,683033,7138.64821646931,0,0.0,0,0.0,28203,294.15453433806084,0,0.0,31781,328.5814320502503,1671103,0,60065,0,0,5909,0,0,58,0.5852781638987887,0,0.0,0,0.0,0,0.0,0.06187,0.1625377643504531,0.3059641183125909,0.01893,0.3252621838371375,0.6747378161628624,24.68046404681081,4.383881517267105,0.325103734439834,0.2331950207468879,0.229460580912863,0.2122406639004149,11.526174082076473,6.080778013090258,20.078112499284977,12371.492100981028,54.47046695733221,13.401666735571562,17.565300371947142,12.2203694710377,11.283130378775803,0.5719917012448132,0.7891459074733096,0.7121888959795788,0.5849909584086799,0.104594330400782,0.7369230769230769,0.9311224489795918,0.8894348894348895,0.7463235294117647,0.1222707423580786,0.5110795454545455,0.7131147540983607,0.65,0.5323741007194245,0.0994962216624685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021359950598787,0.0041436184223856,0.006216975487064,0.0084487590885088,0.0106349448426617,0.0126937915449372,0.0148728822198209,0.0165766722126386,0.0189608823198716,0.0211496135537697,0.0233449870305627,0.0253737780333525,0.0277066428064545,0.029932533347067,0.032114303399185,0.0342810487913269,0.0360494747964447,0.03802723347725,0.0399841935047783,0.0418420942932177,0.056012284678624,0.0707466186508102,0.0839033192060761,0.0963105489491005,0.1086053475033738,0.1244000422877682,0.1370512100236386,0.1489997553894094,0.1601327414742413,0.1699186730528143,0.1835298674470649,0.1962134809592803,0.2074624756811981,0.2177229854530749,0.2279206352697917,0.2391403090899019,0.2490341023293208,0.2579079535601274,0.2669217320224336,0.2751257288838483,0.2827752192728703,0.2902519808527322,0.2977909387029908,0.3038585209003215,0.3087099794501392,0.3136657455837363,0.3188079138492362,0.3234826010007767,0.3285118075537237,0.3327433394534191,0.3315292755496318,0.3299176100023382,0.3299356600825015,0.3296636615811373,0.3289426789426789,0.3280009806625601,0.3256646135820257,0.3262553331145389,0.3272867156778936,0.3278913994820041,0.329203572896812,0.3298723303648829,0.3309875331509595,0.3305553079597112,0.3319854524572905,0.3330220977279801,0.3350899560844312,0.3384370215292316,0.3425524475524475,0.3468679780817598,0.3496484463597187,0.3508476360956091,0.3517073475248143,0.3533092115181667,0.35681143281366,0.3606691623771642,0.3628025860772816,0.3641357661369433,0.3682097939523682,0.3663952627683197,0.0,2.096371192325962,57.307348226285306,174.26206245194112,267.45518559097275,fqhc7_80Compliance_implementation_low_initial_treat_cost,74 -100000,95688,44230,417.9938968313686,6455,66.06889056098989,5082,52.47261934620851,2075,21.24613326644929,77.3960056150407,79.78116942683359,63.35197710932333,65.11364016226051,77.13566992205561,79.52311645015524,63.25442020400521,65.01978634078026,0.2603356929850946,258.0529766783428,0.0975569053181217,93.853821480252,149.66974,104.91987478175108,156414.3257252738,109647.8918795994,338.76857,217.55554533198816,353433.2309171474,226757.9689532524,352.99103,170.59869748207646,365059.91346877353,175300.5724612796,3342.49321,1531.8121754006463,3454444.956525374,1562168.981900182,1221.18809,542.2143938247035,1260641.0835214446,551070.7129678777,2041.57396,861.5744952144285,2092871.6244461169,866088.8194257555,0.38166,100000,0,680317,7109.7420784215365,0,0.0,0,0.0,28710,299.38968313686144,0,0.0,32346,334.2007357244377,1674455,0,59935,0,0,6044,0,0,72,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.06455,0.1691295917832626,0.3214562354763749,0.02075,0.3391510131637332,0.6608489868362668,24.510612411924875,4.409507137870879,0.3152302243211334,0.2304210940574577,0.2237308146399055,0.2306178669815033,11.302211399833483,5.846542809242149,22.17037536438976,12461.61474883849,57.55040740159714,13.938757622821896,18.083139889531168,12.549982123195074,12.97852776604898,0.5615899252262888,0.7967549103330487,0.6985018726591761,0.5892700087950747,0.1126279863481228,0.7193500738552437,0.9316037735849056,0.8415841584158416,0.753731343283582,0.1434108527131783,0.5042918454935622,0.7202141900937081,0.6502504173622704,0.5385500575373993,0.1039387308533916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387228136997,0.0045020380848086,0.006932461785185,0.0094894589789179,0.0117592008626126,0.0140716002117867,0.0161913598499138,0.0184483761957753,0.0205176961295467,0.0228459129153104,0.0248310932037441,0.0270236970717483,0.0290130821128846,0.0311495673671199,0.0334513036928505,0.0354879725441144,0.0376013838966635,0.039538287470027,0.0413737155219037,0.0433898941048945,0.0578883596557198,0.0719585578985924,0.0857343640196767,0.0987067605929975,0.1115046486623237,0.1268031642624476,0.1391302502731892,0.1511257784638313,0.1619340640557229,0.1729966857228663,0.1864289945608271,0.1998766727609074,0.2111927482990239,0.2215699778091146,0.2304131249931274,0.241591940662017,0.2514889915010372,0.2608251129137361,0.2693174993484345,0.2771920596441476,0.2844142645971914,0.2912594149588369,0.2976153900692458,0.3036124676817006,0.3093169962392333,0.3151446565636686,0.3198202134964729,0.3236548223350254,0.3273577351277348,0.3316311085957962,0.3313952707692721,0.3308036449470275,0.3301455593840096,0.3292339670029879,0.3282377037015049,0.3260906155800039,0.3243884687193443,0.3251812485647738,0.3262090510251114,0.326376997716895,0.3264740577077911,0.3274355484545436,0.329676300336447,0.3302742075601987,0.3312934965202784,0.3317293937108227,0.3327372335291947,0.3368854520306802,0.3409609377741902,0.343756215936667,0.3462084115143471,0.3474810948982852,0.3521607278241092,0.3555792845702082,0.3525125390366234,0.3532654284002396,0.3570222563315426,0.3555691554467564,0.3627260083449235,0.3638132295719844,0.0,2.539337502956341,59.175876866774125,188.65877093173944,280.74298669561006,fqhc7_80Compliance_implementation_low_initial_treat_cost,75 -100000,95825,44116,417.08322462822855,6270,64.15862248891207,4902,50.59222541090529,1994,20.38090268719019,77.38566316619061,79.70606292595939,63.36611244363343,65.08400540335295,77.14171173774875,79.46548441352994,63.274948374817335,64.99689844163935,0.2439514284418606,240.57851242945105,0.0911640688160915,87.10696171360155,153.06038,107.20766891834782,159728.83902948085,111878.39723864304,339.4929,218.4637306560197,353736.5927471954,227435.39450622743,352.08302,170.5090287805652,364454.42212366295,175560.2134214726,3242.1041,1488.5685681195728,3346354.938690321,1516536.8348737934,1174.62472,525.225895493331,1211896.1753195932,534203.6895312606,1965.6713,826.1533052572221,2010817.0936603183,828083.2008944785,0.37965,100000,0,695729,7260.40177406731,0,0.0,0,0.0,28875,300.7357161492304,0,0.0,32224,333.28463344638664,1658682,0,59522,0,0,6061,0,0,69,0.72006261414036,0,0.0,1,0.0104356900600052,0,0.0,0.0627,0.1651521137890162,0.3180223285486443,0.01994,0.3339917945600972,0.6660082054399028,24.557873501196383,4.485870575170296,0.3082415340677275,0.2407180742554059,0.2139942880456956,0.2370461036311709,11.19395189327983,5.583288227371275,21.246996304632336,12372.27443210779,55.798813335449175,14.155991093930774,17.18734245940395,11.693602539644614,12.761877242469817,0.5616075071399429,0.8135593220338984,0.6902713434811383,0.5824594852240229,0.1196213425129087,0.7249814677538917,0.9324009324009324,0.8604651162790697,0.7509293680297398,0.1628787878787878,0.4995778215592457,0.7456724367509987,0.6316725978647687,0.5243589743589744,0.1069042316258351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021168201108038,0.0042780531816753,0.0062721377028549,0.0083108121837725,0.0108527604865942,0.0133591283983301,0.0154420083784362,0.0175221961424635,0.0200623435024784,0.0221248899895618,0.0240010658030928,0.0260907943220191,0.0284175582482862,0.0304892484739935,0.0326885002474839,0.0348197039653765,0.0369393139841688,0.0387441826718767,0.0405586418150667,0.0426010135170289,0.0577773605374056,0.0722984768814225,0.0855702411772721,0.0981665353296559,0.1103339302644053,0.1253538383539651,0.1374842407483923,0.1496125761295877,0.1613298916289786,0.1716112586753491,0.1850971620299175,0.1970230508328112,0.2090059381004592,0.220093656875266,0.2296066866563423,0.2398133507303426,0.2493983957219251,0.2579811731931433,0.2664846369980966,0.2746272752218055,0.2819236189728069,0.2883621041819858,0.2952476533443532,0.3009742394357779,0.3067026856775975,0.3127280321364077,0.3182311617982856,0.3226788432267884,0.3267686029392773,0.3316440033172299,0.3308905592383923,0.330598389269124,0.329792622189707,0.3285388325679461,0.3280806760630319,0.3265709211170994,0.3243838307039219,0.324148469463203,0.3249666130192103,0.32492350636105,0.3260331508287707,0.3283655939516288,0.3288997390352723,0.3286859298174715,0.3296666102555424,0.3307623694842331,0.3320828202411294,0.3352385764360375,0.3387034092916446,0.3396166134185303,0.3423435784851811,0.3434574468085106,0.3473080317740512,0.3485931558935361,0.3507180650037793,0.3516221374045801,0.3499384993849938,0.3489551633191317,0.3458356315499172,0.3451428571428571,0.0,2.1459112628457606,59.34204322448147,181.78144616458476,266.53186226020813,fqhc7_80Compliance_implementation_low_initial_treat_cost,76 -100000,95773,44187,417.6960103578253,6365,65.26891712695645,4986,51.5489751808965,1944,19.995196976183266,77.37657405990127,79.72073075946506,63.3458979718325,65.07889826393965,77.14133285433833,79.48451215207334,63.26021117987148,64.99438393314345,0.2352412055629429,236.21860739172007,0.0856867919610238,84.51433079619619,151.28036,105.92410132737612,157957.21132260657,110599.12640031756,334.97655,215.17380962076675,349255.3955707767,224165.08788569516,353.65133,170.95914002519865,365335.8879851315,175481.9372203085,3252.75744,1476.8217248764008,3367557.474444781,1513239.7490695715,1206.63386,530.3025555401604,1248177.8998256293,541996.2991032555,1908.42252,783.7274396949246,1965316.7594207136,796513.6559680125,0.38131,100000,0,687638,7179.873241936663,0,0.0,0,0.0,28453,296.544955258789,0,0.0,32430,334.6976705334489,1666891,0,59832,0,0,6027,0,0,74,0.7726603531266641,0,0.0,0,0.0,0,0.0,0.06365,0.1669245495790826,0.3054202670856245,0.01944,0.3307922272047832,0.6692077727952167,24.72573834170736,4.410070779516027,0.3219013237063778,0.2352587244283995,0.2186121139189731,0.2242278379462495,11.575709167769352,6.027664960045818,20.424116343114694,12485.939867168883,56.3857656594412,14.052219500084313,18.17291050240741,12.078774859436828,12.081860797512633,0.5637785800240674,0.7817561807331628,0.7090342679127726,0.5834862385321101,0.1073345259391771,0.7626990144048522,0.925925925925926,0.8906976744186047,0.7983193277310925,0.1506849315068493,0.4922279792746113,0.6977058029689609,0.6425531914893617,0.5234741784037559,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.004521079787935,0.0067371496986545,0.0091836320045511,0.0115633390285574,0.013777863769208,0.015825269447645,0.0181320700780005,0.020159682679234,0.022202659405677,0.0243319974991544,0.0264730034900431,0.0286824574389341,0.0309059638932657,0.0328577471036695,0.0349357616099391,0.0369239052776541,0.0389311314197985,0.0408025365143718,0.0429254272235933,0.0576086162452123,0.0720380633692356,0.0853764635590821,0.0982514396200243,0.1107750671795142,0.1266422161859364,0.1391135657723172,0.150723990084368,0.1625431131138613,0.1731336242481424,0.1865974607755511,0.199513171417753,0.2114794752985707,0.2216168909309703,0.2313179011326487,0.2418244883032835,0.2523137036003349,0.2615999099909991,0.2700908812417033,0.2776219533137185,0.2844487619840636,0.2913452097068312,0.2977267085150902,0.303386928777521,0.3094110503946569,0.3139991868816912,0.3185652690120602,0.323209998856838,0.3286744931733554,0.3336189057742748,0.3332750997809522,0.3336309564691823,0.3331270917118992,0.3325973388749386,0.3321074796844415,0.3311110431511667,0.3290698961281245,0.3292199278924942,0.3302551847742596,0.3307196065153081,0.3312608850353002,0.3311029527869888,0.3312127236580517,0.3317140565112755,0.3326616288832913,0.3318763659069622,0.3318553888130968,0.3354216263626112,0.3383440204632257,0.3416967724006511,0.345889005426604,0.3477197831402147,0.3524115350711497,0.3537337291619091,0.3575854299662035,0.358922638822971,0.3598223855458582,0.3573876234630115,0.3635368190528333,0.3688212927756654,0.0,1.960869404647534,58.14018100009824,186.6425109139428,274.3227997883624,fqhc7_80Compliance_implementation_low_initial_treat_cost,77 -100000,95747,43988,415.6683760326694,6360,65.01509185666391,4975,51.33320104024147,1986,20.41839431000449,77.3313489084019,79.69750183552785,63.31030609897547,65.06308030555658,77.07845923357755,79.44350543791568,63.21782080336962,64.97235607790351,0.2528896748243596,253.99639761216972,0.0924852956058472,90.72422765306952,150.51344,105.4748014723838,157198.88873802836,110159.69240218891,335.87854,215.5052689381997,350160.8823252948,224443.6254996077,353.74411,171.50243129838043,364820.8403396451,175755.4690533975,3257.44562,1491.83274181284,3365316.0830104337,1521417.2686997987,1178.96983,525.7135644742626,1215763.4808401307,533573.6431771822,1943.20822,812.2045087651722,1999691.039928144,823622.3899202648,0.3791,100000,0,684152,7145.404033546743,0,0.0,0,0.0,28624,298.2965523723981,0,0.0,32441,334.1932384304469,1665525,0,59818,0,0,5982,0,0,48,0.5013211902200592,0,0.0,0,0.0,0,0.0,0.0636,0.1677657610129253,0.3122641509433962,0.01986,0.3402788187678009,0.659721181232199,24.82219674793891,4.364417285747239,0.3155778894472362,0.2347738693467336,0.2241206030150754,0.2255276381909547,11.377894098643262,5.961123243454162,21.28163790688902,12369.179368647749,56.49432643085787,13.85580142320458,17.846322609334734,12.492643863630244,12.29955853468832,0.5537688442211055,0.7731164383561644,0.6961783439490445,0.5730941704035875,0.106951871657754,0.7317806160781367,0.9242424242424242,0.8714285714285714,0.7418181818181818,0.1583333333333333,0.4887486278814489,0.6955958549222798,0.6321739130434783,0.5178571428571429,0.0929705215419501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022999219850251,0.0045732480201182,0.006688657701091,0.0088295061979272,0.0110175181590673,0.0134533714902587,0.0157538925880229,0.0179503149984173,0.0199347441418036,0.0221439252719339,0.0242143912044634,0.0261879077413057,0.0284035360344135,0.0303105257191149,0.0324934713720956,0.034630020267196,0.0366661834448195,0.038839887931929,0.0409862478301092,0.0428691947965379,0.0574425887265135,0.0714681846243996,0.0846122376191924,0.0971765077028234,0.1096033402922755,0.1245504928713457,0.13731960950764,0.1496431994887634,0.1607394742466339,0.1714895762920998,0.1848854501174594,0.1978820395655799,0.2100427792351987,0.220616886670607,0.2303847635823196,0.2402952978473407,0.2493942405395446,0.2583070688878883,0.2672726860048118,0.2754337313501249,0.2819073197272611,0.2882856507126043,0.294410526939719,0.3003819636293752,0.3059483534938058,0.3109792211638122,0.3162832057913655,0.3213012023639698,0.3253460645295209,0.3301627562883111,0.3298187897745658,0.3295345060148099,0.3286092640595063,0.3277224718614093,0.3269815828918273,0.3257543301303629,0.3234796629728576,0.3247941745662085,0.3254152710369813,0.3266314625182859,0.3270956261122038,0.3276935544442907,0.3284804558213582,0.3300747170148986,0.3310389641645207,0.3333159377935497,0.3350138141217351,0.3377531416333343,0.3418721992872517,0.3451323894088473,0.3481088011722685,0.3492756710694503,0.3532567533451148,0.3534206917568185,0.356822429906542,0.3578185215461871,0.3531264057579847,0.3523285517783454,0.3523553162853297,0.348575712143928,0.0,2.3476971060979985,58.35291618271391,187.40151200807964,272.00392704053047,fqhc7_80Compliance_implementation_low_initial_treat_cost,78 -100000,95496,43920,416.1430845271007,6289,64.72522409315573,4965,51.47859596213454,1952,20.11602580212784,77.22623088476638,79.71377828400284,63.24095407219974,65.07635300273245,76.97741013358434,79.46289032524291,63.14968348941779,64.98601635305117,0.2488207511820377,250.8879587599324,0.0912705827819522,90.33664968127653,148.61242,104.14609316700708,155621.61765937842,109058.06857565456,332.72225,213.78827355208537,347873.1255759404,223337.194522696,345.48514,166.49933058535595,358613.009969004,171852.87696012095,3244.0055,1475.7002028482714,3366410.8444332746,1515360.5962677752,1159.4756,507.849699226061,1202229.9153891264,520880.7187913658,1916.43026,806.0377486140337,1977211.2968082435,820489.6908318726,0.38124,100000,0,675511,7073.709893608109,0,0.0,0,0.0,28238,295.132780430594,0,0.0,31771,329.5007120717098,1673839,0,60041,0,0,5974,0,0,55,0.5759403535226607,0,0.0,0,0.0,0,0.0,0.06289,0.1649617039135452,0.3103832087772301,0.01952,0.3289533303126415,0.6710466696873584,24.575471333921985,4.337310195796372,0.3341389728096677,0.2253776435045317,0.2201409869083585,0.2203423967774421,10.59955744668361,5.285842126900988,21.039771348301457,12492.57126592025,56.222071474331365,13.335822833771305,18.664424803981664,12.15102445974086,12.070799376837536,0.5568982880161127,0.7917783735478106,0.7010247136829415,0.5535224153705398,0.1014625228519195,0.7137345679012346,0.9177377892030848,0.8457943925233645,0.703125,0.116591928251121,0.5014990460615971,0.7246575342465753,0.6506904955320877,0.5077658303464755,0.0975889781859931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022495820033439,0.0043311998539361,0.006771986110829,0.0091306558210472,0.0113516044958462,0.0135147530958569,0.0158062837375891,0.0177385404532728,0.0199392308715357,0.0219872543595418,0.0237826408277221,0.0259821713157651,0.0280801112083612,0.0300548702504228,0.032360386423516,0.0344456293289987,0.036347416574173,0.0383975718265352,0.0405254768775588,0.0428722082424065,0.0572517086547418,0.0713498882699147,0.084900105152471,0.0980524407722789,0.1101659093310789,0.125613440033918,0.1381609024315043,0.1500858822399795,0.1619152673063742,0.1726691385888548,0.185359113039911,0.1974079496773494,0.2092295616339791,0.2209799408089444,0.2309949584652553,0.2419589587476529,0.2522147651006711,0.2621742267111552,0.2714545661321506,0.2794225649499678,0.2867166117734379,0.2940838463793609,0.3007392991491533,0.3056764359387396,0.311305111197815,0.31653118542989,0.3216211799313613,0.3263320719983636,0.3304726610753527,0.3347417778189862,0.334131169709263,0.3332275249109829,0.3330885260719733,0.3326049204052098,0.3320222877745001,0.3304548248309772,0.329306672600693,0.3297821462143576,0.329944705841948,0.3308209959623149,0.3306002707988566,0.3314023845894419,0.330712964519926,0.3313073317334649,0.3318167593461881,0.3321925860132187,0.3335142081964872,0.336917110697733,0.3392605633802817,0.3409018483110261,0.3441273326015368,0.3442588060019155,0.3459411912540839,0.3510324483775811,0.3532195212469846,0.3573513955389466,0.3572081682413898,0.3589953032468858,0.3589320121112028,0.354174609226077,0.0,1.8971683718887609,57.36252025309369,183.6586648971449,279.96418434889205,fqhc7_80Compliance_implementation_low_initial_treat_cost,79 -100000,95716,44030,416.294036524719,6357,65.40181369885913,4955,51.26624597768399,1987,20.456350035521755,77.36399481233721,79.74754023490684,63.33329461681414,65.09665638599743,77.12087145749565,79.5050180549674,63.24348049263376,65.00981251617182,0.2431233548415576,242.5221799394421,0.0898141241803855,86.8438698256142,152.05872,106.4676244866809,158864.47406912115,111232.83932329068,335.28975,215.2317694770586,349749.2373270927,224317.77286666652,350.40647,169.04694484977094,362968.500564169,174268.48430901658,3239.5568,1474.3849942409968,3352221.8019975764,1508045.482720754,1153.53756,511.57571506498766,1189382.8095616198,518688.4168425204,1941.0496,805.0516285414473,1998518.9310042209,813881.0261743077,0.38031,100000,0,691176,7221.112457687325,0,0.0,0,0.0,28572,297.95436499644785,0,0.0,32176,333.0895566049564,1663326,0,59754,0,0,6104,0,0,53,0.5432738518116094,0,0.0,0,0.0,0,0.0,0.06357,0.1671531119350004,0.3125688217712757,0.01987,0.3403392883951359,0.6596607116048642,24.75220343015413,4.336919675569285,0.3097880928355196,0.2417759838546922,0.227648839556004,0.220787083753784,11.333886012307223,6.01686953279996,21.1228945082726,12440.148793200598,56.252884593628266,14.4209814882541,17.425095032781854,12.496441301049437,11.910366771542876,0.5588294651866801,0.7821368948247078,0.6872964169381107,0.5797872340425532,0.1124314442413162,0.7397769516728625,0.9390519187358916,0.8591885441527446,0.7018867924528301,0.1513761467889908,0.4914127423822714,0.6900662251655629,0.6227598566308243,0.5422943221320974,0.1027397260273972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025430340118134,0.0047562546269534,0.0073194997157475,0.0097262028172449,0.0120067563442479,0.013896529942743,0.0161675302949936,0.0181073573266881,0.020138484039561,0.0224659273594855,0.0246941433449899,0.0268055213211732,0.0288523848218969,0.0312310022565455,0.0330557189593073,0.0349986558861845,0.0368459761542206,0.0388722280448701,0.0407692307692307,0.0427380704313398,0.0576175954549252,0.0714674481892401,0.0847041544271926,0.0973603954148701,0.1094795872115698,0.124842717420037,0.1374245750220044,0.1494085358069869,0.1611367324280468,0.1714647060084456,0.185012213625456,0.1972915675161164,0.2096839083584329,0.2211214626252023,0.2317515839493136,0.2423085013340418,0.2525763997323221,0.2614371001652744,0.2699428260277702,0.2781809440959663,0.2850882264517472,0.2916126015547373,0.2976638500319534,0.3035089401275107,0.3083678501585142,0.3133297209428339,0.3181255393389112,0.3226560613953724,0.3269984098049102,0.3317218394741348,0.3320788699076625,0.3307972258463229,0.3301652021089631,0.3293323330832708,0.3279517286366601,0.3265097392684863,0.3252594064402182,0.3260422111866178,0.3264969474346547,0.3269220494737404,0.3278697726634858,0.3289722945773147,0.3307738979433856,0.3300284237147781,0.330506642323492,0.3334900854298926,0.3351145910727553,0.3386742067232171,0.3404046080359652,0.3433125817835759,0.3470537458543455,0.3475222363405337,0.3522734439049,0.3539755351681957,0.3550587343690792,0.3553748654788951,0.3546484556883439,0.3531224322103533,0.3592747559274756,0.3573655494933749,0.0,1.9467668036707069,59.5069574030175,183.76448524121105,270.4468893329759,fqhc7_80Compliance_implementation_low_initial_treat_cost,80 -100000,95673,44207,417.798124862814,6324,64.93995171051394,4879,50.45310589194443,2006,20.61187586884492,77.31725194233033,79.72429923374891,63.30264576078415,65.08436823696863,77.07788661412621,79.48555498066261,63.214517802611255,64.99862430474327,0.2393653282041157,238.74425308629557,0.0881279581728975,85.74393222535548,151.05596,105.77831864621189,157887.76352785007,110562.35159994136,335.52902,215.87253607026727,350163.4316891913,225095.247426408,349.0064,168.58181462032326,361159.0730927221,173383.111292323,3200.30609,1457.7661724537077,3311751.6958807604,1490401.9759532015,1159.57317,514.7888465318839,1199503.0154798117,525557.050089245,1953.71458,804.5426764619234,2010156.2405276303,815275.9917898759,0.38132,100000,0,686618,7176.716523993185,0,0.0,0,0.0,28542,297.753807239242,0,0.0,32080,331.6505179099641,1665122,0,59781,0,0,5926,0,0,56,0.5853271037805859,0,0.0,1,0.0104522697103676,0,0.0,0.06324,0.1658449596139725,0.3172043010752688,0.02006,0.3395052359993929,0.660494764000607,24.43855270739405,4.423547449907082,0.3252715720434515,0.2295552367288378,0.2258659561385529,0.2193072350891576,11.347391007866657,5.952405637158196,21.182039618235493,12453.357258717466,55.46073749978832,13.386751768078268,18.011701893537044,12.439832560066346,11.622451278106654,0.5579012092641935,0.76875,0.6887208569628229,0.5771324863883848,0.1233644859813084,0.7314460596786534,0.8997613365155132,0.8664987405541562,0.7116788321167883,0.184331797235023,0.4944008958566629,0.6904422253922967,0.6294117647058823,0.532608695652174,0.107854630715123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021275086873271,0.0044516554276732,0.0065762099515917,0.008739038096109,0.0109884519509589,0.0134155037180401,0.0155877012221247,0.0178367113435763,0.0203085674530907,0.0224778960525372,0.0244485482712629,0.0264801989354487,0.028554958516048,0.0304554920922943,0.0327084947069455,0.0348156271986094,0.0369652427204594,0.0393162748193071,0.0414282444495307,0.0434161697869324,0.0590281768128963,0.073605177180196,0.0869610858588509,0.099507617203939,0.1108977942805303,0.1265092752304257,0.1391851592431044,0.1513412205692866,0.1623083088431739,0.1724396863367696,0.1850112555604622,0.1975840495313142,0.2095240168019674,0.220559745192255,0.2309649422312293,0.241468739955889,0.2515817311447604,0.2606935180915318,0.2684921562177429,0.2768269087661854,0.2835757007832112,0.2902995720399429,0.2970173985086992,0.3032899862168154,0.3087055849900355,0.3137632101414425,0.3190581107133021,0.3234665581194189,0.3269688810645679,0.3316323839662447,0.3312302414744064,0.3310700295512336,0.3301735534865405,0.3296330513612611,0.3293083706336342,0.3275372985571246,0.3249406175771971,0.3249975370266986,0.3264842910046589,0.3270766488413547,0.3277782979121805,0.3292446867346132,0.3315921963499056,0.3332214389616202,0.334732677089365,0.3372168961103419,0.3386057911536708,0.3421928997800816,0.3447900193287647,0.3479729729729729,0.3499063199744093,0.350627926777352,0.353453718903902,0.354819001069192,0.3578362077089812,0.3546174766465649,0.3576911268038071,0.3552764836945513,0.3603020496224379,0.3740112994350282,0.0,2.1569672763579,57.472779278105634,184.8479293617675,265.6647621895696,fqhc7_80Compliance_implementation_low_initial_treat_cost,81 -100000,95851,44132,417.3561047876392,6240,63.74477052925896,4900,50.48460631605304,1863,19.02953542477387,77.4717338221379,79.75761798418881,63.40399372213196,65.09028331134249,77.2372224240518,79.52647894978418,63.31584084656363,65.00651237731392,0.2345113980861128,231.1390344046345,0.0881528755683263,83.77093402856417,152.52886,106.82093670339331,159131.2140718407,111444.78065267272,335.48539,215.9556534540781,349377.5025821327,224673.80982366187,354.75469,172.00265589662445,366104.7980720076,176418.8620830152,3198.58901,1473.8900592985303,3296703.7693920773,1497349.6148173036,1140.49414,512.6408956563528,1168276.481205204,513246.0231571434,1821.8902,772.1431092484582,1861833.2411764087,770614.9416872392,0.38109,100000,0,693313,7233.237003265485,0,0.0,0,0.0,28608,297.795536822777,0,0.0,32498,335.113874659628,1661710,0,59554,0,0,6176,0,0,60,0.6155387006916986,0,0.0,0,0.0,0,0.0,0.0624,0.1637408486184366,0.2985576923076923,0.01863,0.3252256386721738,0.6747743613278262,24.71054481962153,4.296411505114984,0.3257142857142857,0.2371428571428571,0.2279591836734694,0.2091836734693877,11.27147315671956,5.966073379957162,19.788404529945712,12385.740778976631,55.29718807063376,13.696830502450624,18.03891868034433,12.358661700764433,11.202777187074371,0.5714285714285714,0.7788296041308089,0.7017543859649122,0.5863921217547001,0.1170731707317073,0.750375939849624,0.9304556354916068,0.8932714617169374,0.708171206225681,0.1911111111111111,0.5047619047619047,0.6939597315436241,0.630901287553648,0.55,0.09625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022674359753011,0.0047208517794369,0.0068547324017927,0.0088002436053593,0.0108934232989187,0.0131044797379104,0.0151780620976285,0.0173298381256438,0.0194228294834875,0.021475906078704,0.0236688208605168,0.0258035402949562,0.0279213108017874,0.0299616219608811,0.0322846658145384,0.0341797379209219,0.0359968968192397,0.038211609613531,0.0403185612825518,0.0421991424884485,0.0569024306315888,0.0711903741414817,0.0842686620345626,0.0972870171899298,0.1092407745090805,0.1247607870502532,0.1382850113470063,0.1506543249281838,0.1621575452157758,0.1727475401401959,0.1852804442339976,0.1972459710978285,0.2089699733941467,0.2195641255213679,0.2289762741652021,0.2404342586757763,0.2502534508305388,0.2594946659180235,0.2673160786090502,0.2749531128493664,0.2818386556562915,0.2888515484608742,0.2955557392731868,0.3003169666885952,0.3065678377329192,0.3121246431032785,0.316880910442354,0.3213768759998984,0.3263555073137954,0.3308672529092728,0.3299780946365456,0.3296178998889483,0.3294870715067801,0.3287805299290453,0.3279746573111881,0.3265517767271618,0.3252702574931451,0.3259917652441016,0.3273787265866675,0.328630248819792,0.3291514428454254,0.331374552887072,0.3329861038771641,0.3335185473295846,0.3343361268295012,0.3344636570718575,0.3346984889139952,0.3369362073261899,0.3415418669802511,0.3459988260614361,0.351129639591178,0.3522177843178474,0.3550244024527593,0.3593761886648915,0.3626394403478918,0.3669648181276088,0.364190012180268,0.3627254509018036,0.3690766314649336,0.3717514124293785,0.0,2.47361088386883,57.865834931758044,181.6400628072693,264.5779431517241,fqhc7_80Compliance_implementation_low_initial_treat_cost,82 -100000,95737,44336,419.973468982734,6277,64.30115838181686,4910,50.67006486520364,1954,20.00271577342093,77.34438518034166,79.69799263092412,63.33412346583962,65.07269924104912,77.09451983064484,79.44969929497333,63.24060121356254,64.98229740737571,0.2498653496968188,248.29333595079103,0.0935222522770757,90.40183367341116,151.3358,106.01213090167136,158074.0570521324,110732.25121864388,336.19316,215.763487686602,350547.5312575076,224756.4304460916,345.60249,167.06039714674355,357052.01750629325,171427.08416192455,3253.48749,1492.1916370994052,3359998.109403888,1520319.425273493,1174.07331,522.67957765974,1208411.2934393182,528040.7222045956,1917.5981,815.3674385095183,1965274.3453419264,819629.286615994,0.38395,100000,0,687890,7185.184411460565,0,0.0,0,0.0,28558,297.63832165202587,0,0.0,31703,327.177580245882,1664979,0,59792,0,0,6087,0,0,80,0.8356225910567493,0,0.0,0,0.0,0,0.0,0.06277,0.1634848287537439,0.3112952047156285,0.01954,0.3159902349710101,0.6840097650289899,24.64884368771936,4.4649973813354045,0.3199592668024439,0.2189409368635438,0.2299389002036659,0.2311608961303462,11.180989811911893,5.857026577890149,20.96107114779027,12499.35489977176,55.83084853364139,12.824673293622736,17.90706969535653,12.626726332709415,12.472379211952717,0.5553971486761711,0.7590697674418605,0.7167409293443666,0.5987599645704162,0.0960352422907489,0.7224770642201835,0.8871391076115486,0.8676122931442081,0.774074074074074,0.1324786324786324,0.4947251526929483,0.6887608069164265,0.6611498257839721,0.5436554132712457,0.0865704772475027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00213727158543,0.0044407044295519,0.0068689820310676,0.008998303931426,0.011173922768774,0.0131727627172131,0.0153890055237357,0.0177151895504872,0.0198424456682776,0.0219175278829428,0.0239466349700795,0.026326323244142,0.0282544546006025,0.0305349014438425,0.0326297763472806,0.0345782609594279,0.0364044757734786,0.0384539599904591,0.0404281854084389,0.0423827677436826,0.0574608245377765,0.0718000774406898,0.0853061181678012,0.0984256522973697,0.1104619894757932,0.1258631811596501,0.138828196262277,0.1508448246510044,0.1623515337947534,0.1722418784174975,0.1858407079646017,0.1978254989992968,0.2104936929099608,0.2210390519088643,0.230323297435841,0.240803897685749,0.2508203674353193,0.2602245118329884,0.2691766521423384,0.2777268770901095,0.2847820049986115,0.2917256631990357,0.2989881058050772,0.3053012944323812,0.3105602138777494,0.316204411982431,0.3212459262973176,0.3268664516704694,0.3322789322893034,0.336904824816361,0.3355786070321972,0.33486099642169,0.3346864560869381,0.3335598513656145,0.3321633078009965,0.3309351414370743,0.32869929537231,0.3284394318032355,0.3301736675506886,0.3297647983986274,0.3305261183531839,0.3306633440132906,0.3322289788215559,0.3319739171353665,0.3337030963634609,0.3358910115878484,0.3382076278433384,0.3416561712846347,0.3458282100825575,0.3489566741000318,0.3513969281254273,0.3534230544177882,0.3536569987389659,0.3578023308612078,0.3603569751056834,0.361038961038961,0.3627149877149877,0.3671617161716171,0.3659822419533851,0.3680933852140078,0.0,2.409428150776047,57.20197216143689,187.2959579036856,267.506494929688,fqhc7_80Compliance_implementation_low_initial_treat_cost,83 -100000,95664,43921,414.9000669008195,6240,63.89028265596254,4812,49.63204549255728,1892,19.3803311590567,77.28108161739658,79.66989060943521,63.29287913429015,65.05645468555217,77.04741944397416,79.43890246329448,63.20596587194074,64.97352996524023,0.2336621734224166,230.9881461407315,0.0869132623494124,82.92472031193654,150.9321,105.76704404715652,157773.1435022579,110560.96760239644,335.1276,215.39711584590933,349666.52032112394,224509.21542681605,344.54793,166.20684871519427,356068.74059207225,170528.56306884543,3155.35678,1433.833268250654,3256160.938283994,1456608.8478954,1158.57379,507.2293678692674,1192257.3172771367,511392.1553001805,1857.25324,773.8957401226774,1904138.3174443888,775966.3664870048,0.3801,100000,0,686055,7171.5065228299045,0,0.0,0,0.0,28429,296.49606957685234,0,0.0,31634,326.6641578859341,1663577,0,59721,0,0,5816,0,0,66,0.6794614484027429,0,0.0,0,0.0,0,0.0,0.0624,0.1641673243883188,0.3032051282051282,0.01892,0.3323641928079571,0.6676358071920429,24.750052487394655,4.39793327646604,0.3258520365752286,0.226101413133832,0.2298420615128844,0.2182044887780548,11.262997946016258,5.792172979084469,20.08402943913934,12412.784611574229,54.47677036919585,12.910892343331442,17.67982145556443,12.323985148462224,11.562071421837754,0.5685785536159601,0.7628676470588235,0.7072704081632653,0.6121157323688969,0.1142857142857142,0.7342487883683361,0.9464788732394366,0.8461538461538461,0.7411764705882353,0.1509433962264151,0.5111919418019026,0.6739427012278308,0.6571180555555556,0.5734430082256169,0.1050119331742243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021526617028,0.0048560914040085,0.0069009610603123,0.0093568083225813,0.0114008502328987,0.0135941509510814,0.0158451781307991,0.0178564136072201,0.0202708918987988,0.0224772003807613,0.0244845228696517,0.0268494275886852,0.0289904256522588,0.0311057533794922,0.0329745182830545,0.0349886783088805,0.0368981519847518,0.0391812926193861,0.0410572742213993,0.0432149595055191,0.0580891187379198,0.0718743455497382,0.0855307356399059,0.0984384536060778,0.110590569043926,0.12666504438355,0.1395084664791124,0.1519731586515418,0.1633645899045195,0.1732865165523091,0.1860823797146154,0.1974706589941155,0.2096465053470694,0.2205882352941176,0.2305344688915086,0.2402155951601992,0.2499664699570815,0.2592083624321341,0.2675635446374803,0.2756647670592012,0.2821261411557533,0.2885931202549442,0.2950837167386045,0.3016019790565856,0.3066085940921699,0.3118761182059349,0.3178087684346377,0.3224605814946528,0.3277074360437964,0.3320634416709658,0.3312771643765353,0.3305012275523434,0.3289497871859048,0.3275577079225147,0.3268866588133546,0.3251351019405551,0.3238773309653685,0.3244746499037338,0.3247097900900592,0.3251215675057208,0.3255765907895725,0.3269933290978399,0.3292138616362794,0.3301513858317236,0.3314825097168239,0.3334725194425596,0.3344670877754594,0.3403617310059657,0.3424936744447568,0.3455932001429876,0.3476281525994719,0.3483682674449456,0.3514211886304909,0.351633393829401,0.3527653213751868,0.3537977632805219,0.3589003645200486,0.3581162324649298,0.3597083445854712,0.3588663347376484,0.0,2.6125640789621576,53.970930318505616,179.30614089941088,272.85508582304857,fqhc7_80Compliance_implementation_low_initial_treat_cost,84 -100000,95738,43952,413.9839979945267,6402,65.70013996532202,4994,51.69316258956736,1990,20.43075894629092,77.3612597271838,79.72585210780065,63.34108899169471,65.08866470763257,77.10909054898036,79.47488857388262,63.24707908885491,64.99777367987,0.2521691782034452,250.96353391802492,0.0940099028398009,90.89102776258072,151.55272,106.21661617288572,158299.44222774656,110945.0961717246,337.37892,216.58356052974744,351934.8325638723,225761.98638967535,353.85443,170.7766739520032,367059.4121456475,176345.35936595718,3280.33507,1502.2282739161697,3396809.981407592,1539546.6208988794,1205.06356,531.3517357507588,1246005.9537487729,542304.1962622425,1952.49582,822.3262400967651,2006510.1213729132,829879.8307948542,0.37893,100000,0,688876,7195.429192170298,0,0.0,0,0.0,28587,298.10524556602394,0,0.0,32437,336.30324427082246,1664422,0,59694,0,0,6038,0,0,77,0.7938331696922852,0,0.0,0,0.0,0,0.0,0.06402,0.1689494101812999,0.3108403623867541,0.0199,0.327226690497468,0.672773309502532,24.69530449659192,4.361812735312609,0.3303964757709251,0.2296756107328794,0.2146575891069283,0.2252703243892671,11.41598892229564,5.905654737165733,21.21338964077011,12465.12282336188,56.77187728125556,13.616403823694162,18.703160970658484,12.123547325859338,12.328765161043592,0.5654785742891469,0.7776809067131648,0.7054545454545454,0.6063432835820896,0.1048888888888888,0.7256235827664399,0.9144254278728606,0.8485576923076923,0.7464285714285714,0.110091743119266,0.5077635521656224,0.7018970189701897,0.6572123176661264,0.5568181818181818,0.103638368246968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323892586177,0.0049983778084191,0.0073978608106188,0.009651430951631,0.0118173497406691,0.0140526669517932,0.0161727815960679,0.0185020676979629,0.0208574028443771,0.0228091728091728,0.0249454030943373,0.027042571766035,0.0294250745654633,0.0317599307730344,0.0339610959186832,0.0359048052270283,0.0379544960284995,0.040005811479748,0.0419387712657543,0.0441582528419451,0.058618997400048,0.0728618231679872,0.0862267911465435,0.0991062039957939,0.1112504743033011,0.1268393234672304,0.1393516505657416,0.151242351689279,0.161768947284089,0.1728577707737004,0.1851796020329055,0.1979446127217654,0.2099380232684571,0.2202750568479972,0.2301796749576653,0.2412525874187799,0.250404273590061,0.2590415608352626,0.2677565272597413,0.2761797932857944,0.2835801912426145,0.2903885480572597,0.2970655375116799,0.3034337435946554,0.3090860580188221,0.3142136662771388,0.3192858392263675,0.3236770855842686,0.3277457769723642,0.3321105275659127,0.3319607605667918,0.3319819696011873,0.3307626271866248,0.329581575449344,0.3294196329048079,0.3278226362480273,0.3267851772117835,0.3272766069200972,0.3273413226808699,0.3274137068534267,0.329157367641267,0.3297910305721876,0.3301478618835587,0.3307125417198664,0.3321841851494696,0.3333682391748259,0.3347657928663515,0.3370345765714466,0.339806167400881,0.3425548902195608,0.346383755418663,0.3466023534400508,0.3477359794008666,0.3510039549741405,0.353106550463874,0.3525519848771266,0.3581452104942038,0.3642625607779579,0.373355723481668,0.3704,0.0,1.8317733093363748,58.514356598109416,190.2221824812688,273.7459001870963,fqhc7_80Compliance_implementation_low_initial_treat_cost,85 -100000,95651,43702,413.3464365244483,6109,62.58167713876489,4791,49.492425588859504,1938,19.85342547385809,77.2430810454354,79.64782331704002,63.27207635196621,65.0504228811306,76.99587503810073,79.40130789231928,63.18037788885233,64.96115073044966,0.2472060073346682,246.51542472074084,0.0916984631138859,89.27215068094085,151.41412,106.09658858401176,158298.0627489519,110920.12095859733,334.13217,215.1439342936156,348734.9008374194,224337.92917930943,341.7082,164.7474171393236,353532.8224482755,169402.8712130238,3149.49463,1438.1291904468037,3257153.2341533285,1468121.1316432613,1164.71546,509.3577014211164,1202848.5013225162,517693.3449949471,1907.4104,806.8272875604343,1956870.2261345931,813765.8565787079,0.37805,100000,0,688246,7195.366488588724,0,0.0,0,0.0,28476,297.10091896582367,0,0.0,31366,324.209888030444,1660933,0,59554,0,0,6078,0,0,58,0.6063710781905051,0,0.0,0,0.0,0,0.0,0.06109,0.1615923819600582,0.3172368636438042,0.01938,0.3281371784879189,0.6718628215120811,24.509955530267337,4.340917384503977,0.3185138801920267,0.2314756835733667,0.2160300563556668,0.2339803798789397,11.057482732012428,5.667654157166838,20.79977129603604,12352.153080839287,54.68624264120845,13.275868881412167,17.461791443965073,11.525951399125091,12.422630916706124,0.5612606971404717,0.8079350766456267,0.709043250327654,0.5652173913043478,0.1123996431757359,0.7098070739549839,0.9191374663072776,0.8737623762376238,0.7056277056277056,0.1092436974789916,0.509162672681139,0.7520325203252033,0.6497326203208557,0.5248756218905473,0.1132502831257078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024221663693854,0.0045746860609011,0.0067307594692547,0.0091852183013442,0.0114633873445017,0.0136972350934365,0.0156410910017843,0.017950498284594,0.0199300556282722,0.0222622729227681,0.0244382685030406,0.0263717304907729,0.0285585001902528,0.0307819099618831,0.0327711490029313,0.0348664074778724,0.036825258709096,0.0386619338232241,0.0404609847933265,0.0424933017795894,0.0571613685288523,0.0706534263507426,0.0836246810923178,0.0967212251986737,0.1094525262335578,0.1250277898347431,0.1379522807912125,0.1496636352975041,0.1609365135415663,0.1713549218624134,0.1848366802991227,0.1975477282336488,0.2085225973007418,0.2189717865591869,0.2280373007649743,0.239877947295423,0.2488398877346781,0.2581805065545499,0.267816340218491,0.2755544343279132,0.2828135322137617,0.2895923362493998,0.2969925257335086,0.3017527863424232,0.3063988221981578,0.3119135802469135,0.3162481036147297,0.3208683008953396,0.3251136216075834,0.3289315249751902,0.3282468496181764,0.3271822717124665,0.326399480314071,0.3254321273852127,0.3250037274489339,0.3246559773928001,0.3223920434685901,0.3225976594692599,0.3237073471696173,0.3258386674555789,0.3271966684881946,0.3286586700085536,0.3289277070398821,0.3294247141541433,0.330773874200169,0.3322223388620617,0.333659406738211,0.3384006334125099,0.3424497594112652,0.3441141020490156,0.3437802907915993,0.3449385762566386,0.3475028593213877,0.3494346588723944,0.3506778690089746,0.3522727272727273,0.3491493678788824,0.3509960977613473,0.3441396508728179,0.3480449090205187,0.0,2.308332584867604,54.47486053368088,186.4042055409586,265.0516529353947,fqhc7_80Compliance_implementation_low_initial_treat_cost,86 -100000,95836,44367,419.4665887557911,6324,65.04862473392045,4924,50.99336366292416,1976,20.35769439459076,77.44904619750217,79.77515639673369,63.38601454967061,65.10695796880917,77.20208150272221,79.52700926551566,63.29550887521971,65.01807217813793,0.2469646947799617,248.1471312180332,0.0905056744509025,88.8857906712417,151.03726,105.80070390003826,157599.25289035437,110397.24983050216,336.02273,215.9136041603435,350215.3992236738,224894.02172029475,347.62273,167.25540843488187,360760.24667139695,173024.86797855658,3218.23023,1458.7623182325876,3332748.100922409,1497302.362393275,1176.31383,510.7883721995273,1215610.1151967945,521471.1522780564,1937.60414,806.8812554866478,1996392.983847406,819575.4282987132,0.38211,100000,0,686533,7163.602404107016,0,0.0,0,0.0,28553,297.5186777411411,0,0.0,31816,330.05342460035894,1672271,0,59976,0,0,6129,0,0,71,0.7304144580324722,0,0.0,0,0.0,0,0.0,0.06324,0.1655020805527204,0.312460468058191,0.01976,0.3348429951690821,0.6651570048309179,24.807612333985865,4.36450904669436,0.3269699431356621,0.2341592201462226,0.2156783103168155,0.2231925264012997,11.044750751702413,5.664482304684021,20.852910958165143,12420.46188797398,55.5637681532403,13.846877122212256,18.09375903337861,11.698616451765703,11.92451554588373,0.5406173842404549,0.7684301821335646,0.6658385093167701,0.5499058380414312,0.1091901728844404,0.6987767584097859,0.8967136150234741,0.8422273781902552,0.6805555555555556,0.0936170212765957,0.4834070796460177,0.6932599724896836,0.6013570822731128,0.516548463356974,0.1134259259259259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025115704404362,0.0047337637983639,0.006838959747547,0.0088276226369094,0.011053825111606,0.0131652632543553,0.0152931700702466,0.0174629257289827,0.0199795605518651,0.0222958938310259,0.0244709740226469,0.026559934318555,0.0285361842105263,0.0306505914936114,0.0326320132013201,0.0346405768952621,0.0368557234527013,0.0389257569473247,0.0408415584415584,0.0426504268165729,0.0575183852292286,0.0716682871749835,0.0851202079272254,0.0976150451775583,0.1096909475991275,0.1258335535006605,0.1380114479542082,0.1501504694860642,0.1611031098309062,0.1716228516357016,0.184421337863848,0.1964374446388835,0.2078425412265369,0.2186153090730536,0.2296293043831436,0.2400574776168896,0.2504928110835162,0.259745215780908,0.2685328775341566,0.2772408435579317,0.2839647251656393,0.2902326341087803,0.296777467048981,0.3032284283374968,0.3086225281116712,0.3138428634642804,0.3192909358548938,0.3239990361323542,0.3286734048458093,0.3324301929476135,0.3315974552385042,0.3303187912555407,0.3293871475115155,0.3289289779686171,0.3282265346300161,0.3265150475144526,0.3257308467741935,0.3267279826180713,0.3281295122904173,0.3283794101457767,0.32954757375704,0.3298591992448674,0.3310032551539938,0.3318764633738432,0.3323981488142339,0.3346992763959852,0.3360215817123385,0.3380008144597938,0.3424229662385064,0.3461523244312562,0.3485248588599526,0.3502554278416347,0.3516636151272176,0.3514892968690485,0.3542139077853363,0.3584928087483656,0.3549823430062951,0.3563124617581072,0.3563756540897824,0.3623188405797101,0.0,1.404973145330401,58.23532294369845,182.84681891964985,270.15553964095244,fqhc7_80Compliance_implementation_low_initial_treat_cost,87 -100000,95816,43967,415.0455038824413,6283,64.46731234866827,4905,50.70134424313267,1970,20.268013692911413,77.3497797498425,79.68360305392021,63.33168066437421,65.06024412747153,77.10297888422387,79.43649284431824,63.24010719591327,64.97108742732165,0.2468008656186242,247.1102096019706,0.0915734684609432,89.15670014988564,149.57228,104.8374153568546,156103.65700926774,109415.35375809322,332.99445,214.31155383190853,347029.1496201052,223163.7240459928,344.87847,166.44827816085302,357169.48108875344,171571.0176069533,3238.19889,1480.7881934859183,3348411.8205727646,1514260.221138347,1153.8412,510.4120099332803,1190617.819570844,519091.9887422561,1931.58592,812.4141250746542,1988313.642815396,822135.0255418255,0.38031,100000,0,679874,7095.620773148535,0,0.0,0,0.0,28401,295.8796025715956,0,0.0,31619,327.18961342573266,1673238,0,60006,0,0,5922,0,0,55,0.5740168656591801,0,0.0,1,0.0104366702847123,0,0.0,0.06283,0.1652073308616654,0.3135444851185739,0.0197,0.3347489761868648,0.6652510238131352,24.67906560915221,4.341904956487872,0.3119266055045872,0.2316004077471967,0.2324159021406728,0.2240570846075433,10.8442027989102,5.5255101628581365,21.02257610520441,12423.851628292316,55.755730877096816,13.64910836356481,17.365053947636603,12.638836301742156,12.10273226415326,0.5510703363914373,0.7711267605633803,0.703921568627451,0.5412280701754386,0.1210191082802547,0.7094594594594594,0.8992974238875878,0.84688995215311,0.7008196721311475,0.1481481481481481,0.4920235096557515,0.693935119887165,0.6501798561151079,0.4977678571428571,0.1133177570093458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.0045930627515791,0.0069214687316053,0.0092655619786851,0.0114739090631675,0.0136856575530777,0.015936133117181,0.0179559420999979,0.0202890551535222,0.0223546029601424,0.0244592516658124,0.0265416760786085,0.0288008719435704,0.0308815503588602,0.0327508664796171,0.0349349039057656,0.037026302441852,0.038948241883622,0.0409051710702671,0.0429685466490364,0.0575470517047114,0.0713135495744191,0.0849509475096428,0.0968704680636415,0.1095546772068511,0.1252920838663974,0.1371022486211285,0.1489570029799914,0.1599641106162079,0.1709731741588098,0.1840809421703104,0.1967120856286323,0.2084412052648754,0.2192975744127324,0.2290073816569674,0.2396068785179275,0.249469877904511,0.2590118208095736,0.2677491461574247,0.2760239542899019,0.2837110825726285,0.2905697009391703,0.2978876989527247,0.3031624341159559,0.3086778063826687,0.3142075829617403,0.3197118991647076,0.3240565257762118,0.3286219081272085,0.3329990102276476,0.3323811577018433,0.3305176999076766,0.3298259471353211,0.3296579103699089,0.3290572215194583,0.3274963199214916,0.3256108769372167,0.3265698419478855,0.3273579419109849,0.3286641979284065,0.3297994108044208,0.3307980272149266,0.3324662792892954,0.3337136975880431,0.3346402713299497,0.3362889555352719,0.3382097623452398,0.3410466246511773,0.3431396527025611,0.3457943925233644,0.3479742005813953,0.3484182078321233,0.3501577287066246,0.3544139039889748,0.3574592404108943,0.3579370712088952,0.3531302617480483,0.3513785469913463,0.3554708764289602,0.3530778164924506,0.0,1.8966215694918884,58.960659633994,180.97232310691143,269.9520402893821,fqhc7_80Compliance_implementation_low_initial_treat_cost,88 -100000,95795,44217,418.0385197557284,6372,65.32700036536353,4985,51.41186909546427,2001,20.491674930841903,77.41775944651599,79.74694902555373,63.37436231324406,65.09577400666062,77.17362019712218,79.50433805906341,63.28438030575653,65.00875206363928,0.244139249393811,242.610966490318,0.089982007487535,87.02194302134103,151.23966,105.91821943976898,157878.44877081265,110567.5864499911,335.83698,215.4793175406288,349946.37507176783,224305.5144220771,352.27493,169.9990440849591,363872.321102354,174434.94388717297,3292.55961,1501.8436369600547,3397108.8783339425,1527971.453843471,1216.64634,536.3204625641664,1254076.3192233415,543923.6719723955,1971.15362,819.6550072674585,2020481.0271934865,825462.9058717116,0.38159,100000,0,687453,7176.29312594603,0,0.0,0,0.0,28526,297.1345059763036,0,0.0,32295,333.23242340414424,1669405,0,59956,0,0,5889,0,0,66,0.6889712406701811,0,0.0,0,0.0,0,0.0,0.06372,0.166985508005975,0.314030131826742,0.02001,0.329343109382014,0.670656890617986,24.737040370580903,4.417418218568278,0.3247743229689067,0.2198595787362086,0.226680040120361,0.2286860581745235,11.230913000518656,5.777615142519113,21.16995703879748,12422.46957885718,56.39133588295689,13.23513016107199,18.32717825761119,12.466982200275796,12.362045263997924,0.5586760280842528,0.791970802919708,0.6967263743051266,0.5725663716814159,0.1245614035087719,0.7388059701492538,0.9154589371980676,0.8906605922551253,0.7346938775510204,0.1652892561983471,0.4924554183813443,0.717008797653959,0.6245762711864407,0.5276836158192091,0.1135857461024498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023592786480219,0.0046628080240844,0.0068695396292275,0.0092523003798419,0.0113479215813877,0.013671159249155,0.0159107124655998,0.0182697803543725,0.020206872585294,0.0220864421177602,0.0243137415691178,0.0263201116859653,0.0282480648842014,0.0305763172524553,0.0327074375393118,0.0347253065060888,0.0366150247860328,0.0385975097711933,0.0407542073550799,0.0427472332982832,0.0576862884210087,0.0712859487544037,0.0842662473794549,0.0967447137049759,0.1086384126047942,0.1244836511541915,0.1367859072275245,0.1492887972274786,0.1604054414510536,0.1710157036656168,0.1847657762291908,0.1972453278599978,0.2086730871543197,0.2193020767366191,0.2294914472166375,0.2398805243652857,0.2506130729445336,0.2592089304164233,0.2677284879242376,0.2754511561949635,0.2826114583453677,0.2902099535253042,0.2970377719509602,0.3033320566832631,0.3100481720116972,0.3152781540128549,0.3199630129454691,0.3241251365981346,0.328984457834441,0.3334474540115613,0.3331273342827203,0.3328659986529765,0.3321327574320807,0.3313181739481733,0.3303203016000237,0.3283904141033881,0.3263944868572874,0.3272220856885394,0.3284697630073549,0.3290436268489347,0.3297130572950743,0.3301530471731518,0.3307867326277997,0.3309514269177686,0.3315169119235662,0.3325097529258777,0.3323669025894659,0.3357904642409033,0.3388062314020654,0.3413987010929827,0.3430026370828408,0.3468217301258563,0.3479685039370079,0.3507332269584378,0.3518047309395909,0.3521495772299631,0.3632545115121344,0.3631525076765609,0.3588543101074084,0.3481797056545314,0.0,2.4417798507687416,58.56832624249224,182.7387712561476,275.6923664389723,fqhc7_80Compliance_implementation_low_initial_treat_cost,89 -100000,95713,44385,419.7757880329736,6322,64.77698954165056,4970,51.267852851754725,1989,20.279376887152218,77.3893283971574,79.74771580941729,63.35181630130408,65.09257290911977,77.13506443072325,79.49779851641752,63.256891026153816,65.00251430081286,0.2542639664341521,249.9172929997684,0.0949252751502598,90.05860830690438,151.09072,105.81375934256192,157858.09660129764,110553.17390799776,334.55128,215.22587840212307,348816.9214213326,224146.91672199505,351.10697,169.73036518608413,362501.1231494154,174115.53502230078,3251.91492,1493.815001051308,3355670.285123233,1518981.7231129473,1186.46554,525.0252724898543,1221344.33149102,530311.642565768,1945.30846,821.2235772382563,1986041.269211079,820056.7868469297,0.38297,100000,0,686776,7175.36802733171,0,0.0,0,0.0,28486,296.939809639234,0,0.0,32248,332.6089454932977,1667023,0,59849,0,0,6079,0,0,59,0.605978289260602,0,0.0,0,0.0,0,0.0,0.06322,0.1650782045591038,0.3146156279658336,0.01989,0.3258308157099698,0.6741691842900303,24.699890646596057,4.392960837460813,0.3175050301810865,0.2309859154929577,0.2291750503018108,0.2223340040241448,11.275373562419531,5.829089816655667,21.244848552166776,12473.199451768587,56.27329334742289,13.680511385967256,17.815946899214328,12.61117245529573,12.165662606945558,0.5635814889336016,0.7839721254355401,0.70595690747782,0.582089552238806,0.1122171945701357,0.723752792256143,0.9017199017199016,0.8708920187793427,0.7442748091603053,0.157258064516129,0.5042735042735043,0.7192982456140351,0.6449652777777778,0.5336374002280502,0.0991831971995332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104439065395,0.0047837676224066,0.0068774535163263,0.0092706355411593,0.0116201049164328,0.0138733383547421,0.0158364585031795,0.0183567682292198,0.0206606925725729,0.0227465747117027,0.0250643002797446,0.0269424523171945,0.0288840937114673,0.0307568786091467,0.0327650753380155,0.0347543016586575,0.0367950801851142,0.0388265925334273,0.0407974471712037,0.0428572916775181,0.057454940373008,0.0717327836087188,0.0850789321865002,0.0985037275375119,0.1102455171250566,0.1258764183965905,0.1388096273588408,0.1503502459173462,0.1611772875380588,0.1717848641461688,0.1855636798294261,0.1980896336120636,0.2090413907824782,0.2195418010826179,0.2295190202141356,0.2402419703298286,0.2502651231846038,0.2597792703094941,0.2684139434045789,0.2768929324411037,0.2846731372118043,0.2915711679685673,0.2980426941044291,0.3035068388147651,0.3095342173005003,0.3150679869937925,0.3199709640680342,0.3241620555873561,0.3295695861604599,0.3333597129893426,0.3321857938194239,0.3313580993758077,0.3312291751606236,0.3306612358089956,0.3302904810675216,0.3281252388741955,0.3271711159875597,0.3277961441524009,0.3274763105869521,0.3290193771502932,0.3304473034632358,0.3313146058549672,0.3335705316031812,0.3358355674709562,0.3365146524989783,0.3385470796092288,0.3402671213412901,0.3433055572959088,0.3473518615626638,0.3517004384405735,0.3516388598445242,0.3560195515885666,0.3597376387487386,0.362773390036452,0.3662117647058823,0.3697558663190329,0.3714067278287462,0.3669632025879498,0.371452655240236,0.3669796557120501,0.0,2.562425671516343,58.49189636058276,187.30966101006305,267.3243676666988,fqhc7_80Compliance_implementation_low_initial_treat_cost,90 -100000,95671,44253,418.4862706567298,6376,65.4325762247703,5019,51.865246521934544,1977,20.246469672105444,77.35982293729873,79.73498653472299,63.33991942654043,65.08966560653673,77.1173367999183,79.49392682501535,63.24918842289795,65.00162825792546,0.2424861373804248,241.0597097076419,0.0907310036424817,88.037348611266,150.00084,105.09215306893653,156788.2012313031,109847.449142307,335.79896,215.674961163551,350382.5192587095,224823.9880072431,349.60125,168.87349549318853,361765.665666712,173664.83493077251,3288.93066,1496.9155183772202,3401493.064774069,1528508.5045088409,1191.45151,525.0879384230794,1229760.0004180996,533270.5333623752,1941.3279,815.6510526562885,1991111.89388634,822051.7666093617,0.38231,100000,0,681822,7126.736419604687,0,0.0,0,0.0,28489,297.12242999446016,0,0.0,32102,331.8560483323055,1672156,0,59916,0,0,5977,0,0,61,0.6376017811039918,0,0.0,0,0.0,0,0.0,0.06376,0.1667756532656744,0.310069008782936,0.01977,0.3268511593118923,0.6731488406881077,24.699155494749377,4.319275220580228,0.3199840605698346,0.2355050806933652,0.2193664076509265,0.2251444510858737,11.388333856234151,6.0178504297412845,20.9724608614768,12535.856309598645,56.62829880782797,14.063372743613488,18.09871834452837,12.255440992100208,12.210766727585888,0.5644550707312214,0.7690355329949239,0.7110834371108343,0.5894641235240691,0.1176991150442477,0.7218890554722639,0.90521327014218,0.8753056234718827,0.6928838951310862,0.1610169491525423,0.5074626865671642,0.6934210526315789,0.6549707602339181,0.5563549160671463,0.1062639821029082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0048043299784109,0.0071222036219753,0.0092624565822347,0.0114283390271677,0.0136800855005343,0.0159365797491313,0.018171244337428,0.0202355536941887,0.022434553099201,0.0244332209849097,0.0262634138334325,0.028470701900445,0.0306730779131186,0.0325531980732137,0.0346545398170637,0.0367199469957348,0.03873838367076,0.040898222268427,0.0432073033473675,0.0575201362264032,0.071219164886711,0.0848743729140866,0.0976769632185843,0.1098420131198717,0.1255594468485816,0.1379427467546941,0.149961654808061,0.1611306513860528,0.1721069523308609,0.1850011854214712,0.1979943903574793,0.2100073999912941,0.2207300388551414,0.2309657526704107,0.2416612201039093,0.2511803377496009,0.2611682689604767,0.2696880317640385,0.2781880846873461,0.2863637941207094,0.2932111766357764,0.2995135346266289,0.3060178030166888,0.3120441720769371,0.3172668513388735,0.3224366827512063,0.3275121380818018,0.3327555653287457,0.3372513323835154,0.3368255419871967,0.3363039980195568,0.3355545850297967,0.3347723761532797,0.3345498783454987,0.3338943631801211,0.3319088995457639,0.3319975693475012,0.3323638603274537,0.3328805076414335,0.3338020247469066,0.3333992524769118,0.3347589995177893,0.3353008250050305,0.3359688543894643,0.335867527598417,0.3379257449649178,0.3409347553324968,0.3447467823167319,0.3465683943572674,0.3497136103282116,0.3522430950987175,0.3561417971970321,0.3574657166934804,0.3602684056327379,0.365260129465356,0.3680811808118081,0.3639131317231581,0.3643243243243243,0.3641262509622787,0.0,2.1774571250942896,58.56402803143361,181.82432904448555,281.6545788600557,fqhc7_80Compliance_implementation_low_initial_treat_cost,91 -100000,95852,44276,418.5828151733923,6410,65.62200058423403,4977,51.33956516295956,2013,20.625547719400743,77.34109898624328,79.63262452053834,63.34986309044478,65.0444000261567,77.0896915831819,79.3828300202244,63.256520260266655,64.95454008720438,0.2514074030613784,249.79450031393924,0.0933428301781233,89.85993895231559,150.74972,105.512793208689,157273.42152485083,110078.86450850165,331.64755,213.03826497493392,345417.5082418729,221675.4005914681,347.43247,168.02252266180594,358791.65797270794,172470.1297227084,3275.57012,1500.4604864643752,3379430.85172975,1527503.2617622735,1194.41825,527.1813319112865,1227269.2588574053,531157.6304211564,1971.30134,830.9518058397166,2020474.7318783123,834554.9285861496,0.38268,100000,0,685226,7148.791887493218,0,0.0,0,0.0,28230,293.90101406334765,0,0.0,31870,328.7881317030421,1670392,0,60068,0,0,5909,0,0,57,0.5946667779493385,0,0.0,1,0.0104327504903392,0,0.0,0.0641,0.1675028744643043,0.3140405616224649,0.02013,0.325297619047619,0.674702380952381,24.6800467404312,4.360825783572851,0.3343379545911191,0.2171991159332931,0.2258388587502511,0.2226240707253365,11.080794210691424,5.75660521338055,21.56434325795354,12465.759676635254,56.77141338275121,12.961658087816105,18.924360326142374,12.69022127672489,12.195173692067842,0.5633916013662849,0.7724329324699353,0.6989182692307693,0.6040925266903915,0.1146209386281588,0.7263643351268255,0.9050131926121372,0.8641686182669789,0.7381818181818182,0.1363636363636363,0.5057127312295974,0.7008547008547008,0.6418755052546483,0.5606595995288575,0.1092342342342342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022074831654093,0.0044684925677113,0.0067147450526935,0.008822872459236,0.011017827739719,0.0133517870227143,0.0158929062624163,0.0180770211680693,0.020162196392458,0.0224127172478697,0.0245731201409446,0.0266145657056705,0.0286659203188069,0.0303928226022182,0.0324787733904871,0.0346478960459907,0.0366559818012615,0.0384910273944216,0.0404480850489509,0.0422822422905655,0.0568833552316002,0.0710179765886287,0.0844742879291019,0.0973826828551022,0.1095010425661871,0.1256443298969072,0.1378565071831165,0.1499670402109426,0.1616280186534911,0.1723365487674169,0.1853414411020825,0.1976164469486411,0.2093339276202072,0.2202728405587984,0.2302258799194622,0.2405300302462912,0.2508899378438396,0.2603843211376626,0.2695537700304145,0.277477436202868,0.2849193678998635,0.2919624375811299,0.2981698588650049,0.3031882390999604,0.3089676784608097,0.3145252774352651,0.3203699994993241,0.3251135626216742,0.3301571683798969,0.3353007975492526,0.3346984413519958,0.3332048564270572,0.3330794832741016,0.3325851157806322,0.3318982853908147,0.3304582706651524,0.3295140762370266,0.3295776503920405,0.3300932525030483,0.3314581498589119,0.3313651883571334,0.3317691971209289,0.3327076786806419,0.3328298994635048,0.3328401290416474,0.3343674413713324,0.3343662133471051,0.3380843785632839,0.3401197604790419,0.3418629678345091,0.3440658586782529,0.34608,0.3474130834019378,0.3492208982584784,0.3513231528028075,0.3561004784688995,0.364156486779032,0.3612916328188464,0.3611340489953206,0.3585780525502318,0.0,2.3175867581812937,56.852910168404925,194.79784991968816,272.3788430840761,fqhc7_80Compliance_implementation_low_initial_treat_cost,92 -100000,95648,43924,415.13675142188026,6233,63.99506523921044,4923,50.9472231515557,1990,20.481348277015726,77.31769350596971,79.73914427811962,63.289715480586615,65.08092887932983,77.07123912192505,79.4910326887931,63.20013970194744,64.99244201983497,0.246454384044668,248.11158932652688,0.0895757786391726,88.48685949486423,150.04286,105.15541914130831,156869.83522917365,109940.00830263918,336.68159,216.61933508248097,351508.3221813316,225983.2145810482,351.85464,170.21949414938155,364025.1651890265,175089.13320543338,3228.4438,1454.8377609224483,3346002.582385413,1491697.1718409678,1168.20586,513.559321871907,1208268.1603379056,523835.0952156939,1949.10242,803.5326961289289,2008707.7617932416,817145.4507724387,0.37849,100000,0,682013,7130.447055871529,0,0.0,0,0.0,28679,299.31624289059886,0,0.0,32228,333.10680829708934,1665114,0,59714,0,0,5971,0,0,71,0.742305118768819,0,0.0,0,0.0,0,0.0,0.06233,0.1646807049063383,0.3192684100754051,0.0199,0.3278838808250573,0.6721161191749427,24.870476761308552,4.443251781223526,0.3180987202925046,0.22953483648182,0.2275035547430428,0.2248628884826325,11.535327928171968,5.946222823396095,21.035760951213117,12369.074048016397,55.63869143758615,13.509648973703468,17.693975336571924,12.383936379731022,12.051130747579728,0.5583993499898436,0.7849557522123893,0.6883780332056194,0.5794642857142858,0.1219512195121951,0.7270588235294118,0.9170731707317074,0.8304668304668305,0.7058823529411765,0.1625615763546798,0.4994517543859649,0.7097222222222223,0.6384814495254529,0.5421965317919075,0.1128318584070796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806629386498,0.0046647466839735,0.0070152284263959,0.0091565971198894,0.0115376397692472,0.0137734311328443,0.0160773672291024,0.018114202229283,0.0202531904659564,0.0222534287295762,0.0244726171534158,0.0266307477173644,0.0288535799240044,0.0309879204877193,0.033000299627016,0.0352963089435942,0.0377393702501788,0.0396156842378603,0.0414910555399456,0.0433186643585625,0.057851066942546,0.0717825672404941,0.0855555438858139,0.0979316300524464,0.1104212204728566,0.1256499592286268,0.1375807548452907,0.1494926671214188,0.1610118729275858,0.1716857118309133,0.1842400448681996,0.1968905742145179,0.2084159170605275,0.2191332340574632,0.2287713498622589,0.2390094046668441,0.2491787158915681,0.258209089680645,0.2670753860127157,0.2740606630074826,0.2818126034756231,0.2887567871185171,0.2951207958313595,0.3007832647626816,0.30643317524018,0.3123921297894373,0.3169727239726113,0.3211013843648208,0.3249157812904897,0.3293250171784978,0.3298596600024266,0.3285643468921264,0.327713560755568,0.3266149422796295,0.325892923442489,0.3245318294663928,0.3222069009240327,0.3231281908170133,0.3246269930690703,0.324260291786166,0.3248514740499943,0.3268079407594139,0.3298155780358853,0.3309824686304173,0.3319850653391412,0.3316709524922725,0.3324247586598524,0.3359934904390824,0.3399482010359793,0.3444435637285986,0.3446765806039595,0.3479208763160693,0.3521055622198371,0.3518039275384381,0.3548447789275635,0.3591140589837735,0.3643327715642714,0.3693295865114412,0.375170905113481,0.3849675696299122,0.0,2.073627737564681,56.14652030874989,185.3208985253009,273.8612467394598,fqhc7_80Compliance_implementation_low_initial_treat_cost,93 -100000,95716,44041,414.4866062100381,6395,65.68389819883824,5061,52.352793681307205,1978,20.34142672071545,77.34880342590687,79.70497612413091,63.338894218876014,65.07656563897672,77.09623543071113,79.45375404840864,63.245115276696325,64.98609313111965,0.2525679951957329,251.22207572226785,0.0937789421796893,90.47250785707206,151.36616,105.96302741423445,158140.91687910067,110705.65779413516,334.99769,215.00818319644483,349489.80316770443,224129.87713281452,352.49222,170.38680793870498,364492.5613272598,175186.7383022414,3328.99313,1520.7801040650768,3447384.9931046013,1558241.040228465,1209.13816,536.4911421877463,1249872.6440720465,547119.6896942473,1939.63034,819.1151497065398,1996666.910443395,828792.0997350437,0.37952,100000,0,688028,7188.223494504577,0,0.0,0,0.0,28443,296.6275230891387,0,0.0,32304,333.9671528271136,1665558,0,59818,0,0,6003,0,0,66,0.6581971666179114,0,0.0,1,0.0104475740733001,0,0.0,0.06395,0.1685023187183811,0.3093041438623924,0.01978,0.3437266895419961,0.6562733104580039,24.62826619176737,4.397716212545502,0.3171310017783046,0.2373048804584074,0.2226832641770401,0.2228808535862478,10.90443436468786,5.602628324660514,21.324934418504387,12457.771298442807,57.58057155223359,14.446224356149832,18.101764079764283,12.593245814518845,12.43933730180064,0.5643153526970954,0.7810158201498751,0.6884735202492211,0.59094942324756,0.1303191489361702,0.7217771303714494,0.9023255813953488,0.8286384976525821,0.7553956834532374,0.1673640167364016,0.5056941431670282,0.7133592736705577,0.6378286683630195,0.5371024734982333,0.1203599550056243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0045513522280338,0.0070113134797828,0.0091528764006135,0.0116316902554091,0.0139054308545833,0.0163291100533091,0.0184546289680514,0.0206938838076746,0.0228954505910649,0.025100957300699,0.0272694616924103,0.0296306958381312,0.031894741176955,0.0343401208970312,0.0364231909815145,0.0384551667011803,0.0407760946254409,0.0426514166883285,0.0447327289778055,0.0595908222196693,0.0730956816611893,0.0868333525690123,0.0995107580619706,0.1113478618594544,0.1265893752512323,0.1384535393300155,0.1511567247601912,0.1625606290463879,0.1729956448048744,0.1864490763181989,0.1986583716526913,0.2109258594625164,0.2216705671354519,0.2310265155682693,0.240709964767666,0.2502066346476042,0.2593376409933133,0.2677906448683015,0.2755072812474937,0.2821833757814309,0.2889848155167169,0.2951949143513312,0.3018325203446912,0.3081959645776898,0.3136720964045442,0.3192122538293216,0.3247597009611961,0.3289053304186985,0.3331223712142188,0.3325254157409277,0.3312503441061498,0.3306410690121786,0.3298529262896065,0.3287222965937825,0.327427932138971,0.3255810269165571,0.325615359369872,0.326322803300815,0.3263957123715945,0.3272165527572325,0.328217890225356,0.3295480734982924,0.3305181567687448,0.3314463287724031,0.3301822739854808,0.3312539346420191,0.3339650053692123,0.335738166461376,0.3401503998726773,0.3446761800219539,0.3470131261719796,0.3504333418302319,0.3494996150885296,0.3500332099819717,0.3467162032598274,0.3525660964230171,0.3519055509527755,0.3565217391304348,0.3575310559006211,0.0,2.086083141313825,60.63221525220376,188.038230173224,277.7188294583398,fqhc7_80Compliance_implementation_low_initial_treat_cost,94 -100000,95639,44356,419.9751147544412,6298,64.55525465552756,4924,50.91019354029214,1941,19.939564403642866,77.26744378178137,79.68544310403982,63.28338998351626,65.07064286802832,77.01630832341341,79.43308094043084,63.18948394379681,64.97846880103327,0.2511354583679548,252.36216360897856,0.0939060397194495,92.17406699504238,152.27212,106.5839624756638,159215.5083177365,111444.03692600696,335.91196,216.63443966121133,350655.192965213,225938.7903064768,349.13201,169.0608252205123,361979.2553247106,174322.1200684229,3215.66296,1488.248994910678,3327357.145097711,1521175.6029555711,1185.93626,534.7844428703771,1222869.885716078,542026.4880126065,1901.1284,810.3520256759673,1954954.7360386453,819496.9724786143,0.38335,100000,0,692146,7237.068559897113,0,0.0,0,0.0,28565,298.06877947280924,0,0.0,32122,332.6885475590502,1656501,0,59468,0,0,6123,0,0,62,0.6482711027927938,0,0.0,3,0.031367956586748,0,0.0,0.06298,0.1642885091952523,0.3081930771673547,0.01941,0.3391555285540705,0.6608444714459295,24.2786345779456,4.29900958605424,0.3245329000812347,0.2341592201462226,0.2185215272136474,0.2227863525588952,11.225194903712866,5.884241480536603,20.92560083075529,12463.768994495997,56.45188887665295,14.036353994761214,17.998256724701527,12.141406313703788,12.275871843486428,0.5682372055239643,0.795316565481353,0.6921151439299124,0.6031598513011153,0.1148587055606198,0.729490022172949,0.9019607843137256,0.8575,0.7406015037593985,0.1447368421052631,0.5071408569028283,0.7247838616714697,0.6368948247078464,0.5580246913580247,0.1070195627157652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021987152207834,0.0046643682822956,0.0068835282651072,0.0092675392244532,0.0114650199900304,0.0139528251924878,0.0161306768358586,0.0182543976967605,0.0205216822257896,0.0224882489682645,0.0247269370801497,0.0268007560504581,0.0288453625216031,0.0310764443436955,0.0331127878531394,0.0352944825233384,0.0370159394322289,0.039099071046759,0.0412432258131624,0.0430267835732977,0.0575743324450018,0.0716073691597105,0.0855123600697288,0.0987796017647864,0.11110172712301,0.1262177043625582,0.1392659147390556,0.1510917868218293,0.1626481536947499,0.1726993469668327,0.1858335490551385,0.1985590465872156,0.2100582376313068,0.2202983571749099,0.2299874474223171,0.2398736632127223,0.2495199178277956,0.2589824403421882,0.2680500187399911,0.2760027971707305,0.284056695539395,0.2906033907824072,0.29748963883955,0.3036597072234221,0.3096402247682989,0.3153762591349002,0.3212285954077989,0.325809654750993,0.3299629255139872,0.3341178026046142,0.3330229168353713,0.3324144014996967,0.3317806478932881,0.3302236643875304,0.3292690197948962,0.3282257569243997,0.3258676832658247,0.3269474272746707,0.3278803538732696,0.3287127296141945,0.3294572915296902,0.3309638219292323,0.3320919859454228,0.3327730339093211,0.3328827306522474,0.3337086890483423,0.3327900726253788,0.3363702279247186,0.339922480620155,0.3430592749510372,0.3454143034997925,0.3463819691577698,0.3492357869156487,0.3517917825146741,0.3549919255248409,0.3549553894381481,0.3566760037348273,0.3605947955390334,0.3626780626780627,0.3725411481332798,0.0,2.19725549542234,59.42256716643502,192.56184536514812,260.0685724920122,fqhc7_80Compliance_implementation_low_initial_treat_cost,95 -100000,95826,44279,417.0580009600735,6244,63.82401435935968,4868,50.06991839375535,1956,19.84847536159289,77.40182060844235,79.71573378090704,63.36325590393732,65.07576469806193,77.15299829952258,79.47421016138779,63.26973944495739,64.9891996414766,0.2488223089197703,241.52361951925627,0.0935164589799342,86.56505658532865,152.05938,106.50537647233736,158682.57049235073,111144.33397443008,336.75198,217.04937170968373,350679.6798363701,225763.6139478677,353.37012,171.12833284540258,365012.7940224991,175625.80682388993,3192.33323,1470.8482705167464,3281996.232755202,1485587.0303860588,1205.68041,538.1555965867843,1237937.4491265418,541425.5199974396,1924.02606,813.2000612667334,1954148.8948719555,801658.189420201,0.38135,100000,0,691179,7212.844113288669,0,0.0,0,0.0,28614,297.83148623546845,0,0.0,32376,334.136873082462,1660987,0,59662,0,0,6117,0,0,63,0.6574416129234237,0,0.0,1,0.0104355811575146,0,0.0,0.06244,0.1637341025304838,0.313260730301089,0.01956,0.3257020757020757,0.6742979242979243,24.538754221164528,4.364415612736178,0.3182004930156121,0.2378800328677074,0.2136400986031224,0.2302793755135579,11.268290825162303,5.908107962089551,20.777569476283663,12446.06827934706,55.32720295013582,13.949463661733956,17.54795134360583,11.60908847598395,12.220699468812088,0.5776499589153656,0.803972366148532,0.71078114912847,0.6028846153846154,0.1364852809991079,0.7351190476190477,0.9250585480093676,0.8543689320388349,0.77734375,0.1686746987951807,0.5175936435868331,0.7332421340629275,0.6587510993843447,0.5459183673469388,0.1272935779816513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002430182871261,0.004945828983774,0.0071622773201314,0.0095980986623602,0.0118034586878945,0.0142513946007573,0.0164806604494725,0.0184017146356399,0.0204736643055001,0.0230292112751018,0.0251963015355597,0.0271587958163548,0.0292751120430903,0.0313944748195512,0.0332944828937732,0.0354113064054475,0.0373180679489037,0.0397482163597146,0.041944531006544,0.0438696919233971,0.0586505063990904,0.0723702782105032,0.0852843159858313,0.0981321174938017,0.10963882071646,0.1257631773529101,0.1375309897654313,0.148570638827169,0.1608069164265129,0.1715427383847365,0.1848672604449034,0.197384490678195,0.2086000239070667,0.2201068840777696,0.230138221484259,0.2406984984718961,0.2503430349951473,0.25908349732921,0.2677118903649585,0.2758636478102607,0.2831945408281286,0.2899714739992517,0.2975054114474291,0.3025385334515905,0.3077885631674219,0.3134173845528155,0.3184098900136388,0.3235645780864433,0.3283417891903085,0.3324629080118694,0.3316875639024915,0.3311655277667019,0.3315705083124701,0.3304686373467916,0.3294783975328411,0.3278172029854398,0.3265380299941529,0.3269347309802637,0.3271648104245194,0.327685729556387,0.3287410038321338,0.3294358893467674,0.3296905363896608,0.3313028538277885,0.3312164493865031,0.3336277897581127,0.3363236337828247,0.3399868598066514,0.343510649459658,0.3459009900990099,0.3491636661957066,0.3517039403620873,0.3539382482671707,0.3601430528077918,0.3601493233784414,0.3656091520226441,0.3690895179801071,0.3742119178360789,0.3697687224669603,0.3633217993079585,0.0,2.819700605761428,58.42303648967218,180.11592309711273,263.0119538148893,fqhc7_80Compliance_implementation_low_initial_treat_cost,96 -100000,95690,43793,413.8885985996447,6230,63.904274218831645,4895,50.517295433169615,1879,19.260110774375587,77.32145341825886,79.71020527974869,63.3143933609397,65.08097222524297,77.08803542668075,79.47817826566116,63.227513032143385,64.99695391609718,0.2334179915781078,232.02701408753512,0.0868803287963118,84.01830914579023,150.47054,105.35085530631837,157247.92559306094,110095.99258680988,332.17862,212.9243688347727,346510.4817640297,221885.51902780493,339.76297,163.7658099292377,351146.98505590967,168096.3982237869,3211.92691,1452.448220888028,3317888.828508726,1479231.028305854,1166.30118,517.6060399816796,1202712.8435573203,524894.9284944078,1842.5638,775.805883826957,1890606.3120493256,781849.4852831648,0.38077,100000,0,683957,7147.632981502769,0,0.0,0,0.0,28260,294.64938865085173,0,0.0,31210,322.1862263559411,1673651,0,59991,0,0,5887,0,0,54,0.5643222907304839,0,0.0,1,0.0104504127913052,0,0.0,0.0623,0.1636158310791291,0.3016051364365971,0.01879,0.3316506042527153,0.6683493957472847,24.754592699165617,4.447628006527285,0.3315628192032686,0.229826353421859,0.2204290091930541,0.2181818181818181,11.3715112954075,5.90141776630035,20.07307963354277,12409.362402239662,55.11639094177993,13.348503587770509,18.200812888119717,11.96767086304563,11.599403602844069,0.5599591419816139,0.792,0.678373382624769,0.5792400370713624,0.1161048689138576,0.7371794871794872,0.9252577319587628,0.8478802992518704,0.756198347107438,0.1751152073732718,0.4993145050726624,0.7218453188602443,0.6227495908346972,0.5280764635603346,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019251033476534,0.0044417401886218,0.0063748578853337,0.0086381235963049,0.0112424711053231,0.0136195094124358,0.0157969344360932,0.0179599754952011,0.0202516893446058,0.0223043380350891,0.0244212512046586,0.0264638830125901,0.0285255783810474,0.0303979556086804,0.0325557390586292,0.0345119933829611,0.036594713291349,0.0385756984515754,0.0407978618301319,0.0428660760812923,0.0576125669761758,0.0712543572243565,0.0844930000209894,0.0971682924519367,0.1091346458188263,0.1244536169762396,0.1374530324580211,0.1487240659481106,0.1598841558552589,0.1700630657685872,0.1834898952902141,0.1957651338009872,0.2077573173517223,0.2186279550601131,0.2289633777406189,0.2394751411803787,0.2492330689512845,0.2584978193426555,0.2673788301467419,0.2755891985982914,0.2832224856861951,0.2896617046902955,0.2964927025011541,0.3025711717111177,0.3088344288786557,0.3145112624539711,0.3193650475964124,0.3234557542936323,0.3284722491564208,0.3331092747090532,0.3325082730232183,0.3316296387892777,0.3311990768754485,0.3304837545126354,0.329761940143252,0.3286600781429556,0.3270427307126007,0.3271733600301981,0.3280476564366913,0.3295687701832325,0.3311490142480013,0.331911363905676,0.3323077567081083,0.3331990871257887,0.3346813990996846,0.3361050099361991,0.3363102905395735,0.3379815124459728,0.3411313586153521,0.3450427180607987,0.3477448747152619,0.3494296983264044,0.3500444783326979,0.3486224411266738,0.3522125567322239,0.3567321514135122,0.3526226210738047,0.3613393590797042,0.3650528658875904,0.3617681271810779,0.0,2.386374296183247,54.46450037714481,187.63603791037545,269.1389095342114,fqhc7_80Compliance_implementation_low_initial_treat_cost,97 -100000,95699,43926,415.9709087869257,6292,64.43118527884305,4889,50.42894910082655,1954,19.9479618386817,77.3455376358958,79.73225838599421,63.32130932583449,65.08729850363949,77.09478721205072,79.48518900679107,63.2264873494688,64.99690350798589,0.2507504238450764,247.06937920313976,0.0948219763656936,90.39499565359677,151.38574,106.00404821369838,158189.00928954326,110767.76186547232,334.19811,214.93658466423145,348544.8332793446,223924.1696219098,347.51187,167.71963565883803,359485.5954607676,172438.73527770827,3195.92232,1465.5796612176991,3297657.6662243074,1489729.6614501178,1187.14472,527.8812488436465,1226772.024786048,538086.5273677228,1905.30596,814.4398744502738,1947281.3091045883,814737.1880834576,0.37877,100000,0,688117,7190.4095131610575,0,0.0,0,0.0,28536,297.4639233429817,0,0.0,31890,329.59592054253443,1665336,0,59706,0,0,6078,0,0,49,0.5120220691961254,0,0.0,0,0.0,0,0.0,0.06292,0.1661166407054413,0.310553083280356,0.01954,0.3414449818621523,0.6585550181378477,24.742265909969127,4.313090440378968,0.318470034771937,0.2401309061157701,0.2188586623031294,0.2225403968091634,11.17732167473002,5.948462905770032,20.997045538490813,12388.161588504452,55.34528283095908,13.999796039562586,17.610397836552966,11.807779482459992,11.927309472383527,0.5669871139292288,0.8015332197614992,0.689145793192036,0.577570093457944,0.1286764705882352,0.7273431448489543,0.918987341772152,0.8578431372549019,0.7228915662650602,0.1924686192468619,0.509449694274597,0.7419768934531451,0.6292428198433421,0.5334957369062119,0.110718492343934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721628385292,0.0047568335108271,0.0072186405401289,0.0092888066830626,0.011353463009685,0.0135974740272968,0.0156635597887051,0.0175341850229261,0.0198482493455497,0.0220681604063408,0.0239885134095687,0.0262014564353283,0.0281843710462161,0.0300988180984471,0.0320849544370943,0.0339722515145876,0.0360487279356923,0.0382256172871539,0.04027829776613,0.0421581294544242,0.0572980312287847,0.0710061648925592,0.0847144521532858,0.0973987709403148,0.1097654890129018,0.1249722319190124,0.1377967378731442,0.1495127017095382,0.1605606097860831,0.1711074373067674,0.1841398863746617,0.1969455727051177,0.2083015828089961,0.2182110653943797,0.2285456386772929,0.2395532063428742,0.249137728962261,0.2580710499960615,0.266196112252193,0.2742136780516848,0.2817320265219454,0.2896463022508038,0.2965188488425734,0.3031126866833539,0.3086305875499132,0.3136499575400293,0.3190135739819513,0.3228465465999441,0.3274853045668884,0.3312190756921781,0.3302889070957517,0.3298575858189501,0.3297529840149587,0.3294160057678442,0.3288436462778568,0.3261925862543165,0.3246899126692824,0.3250825896158966,0.3264447977026819,0.3277791683055029,0.3290074185369518,0.3303134230715857,0.3309437214875859,0.331331376196132,0.3334378315809781,0.3344839308595486,0.3353884797625164,0.3395555275749181,0.3428320449754041,0.3473270315354674,0.3504793929204344,0.353090601185436,0.3539251926571017,0.3562400666010747,0.3577541615724631,0.3594105666706601,0.3601668726823238,0.3609975470155355,0.3592206366630077,0.3629283489096573,0.0,2.473655647763326,56.26221316473912,181.7402807219328,272.28168573160065,fqhc7_80Compliance_implementation_low_initial_treat_cost,98 -100000,95613,44256,419.6500475876711,6240,64.12307949755787,4864,50.32788428351793,1927,19.809021785740438,77.23812690061078,79.66974740302763,63.25655152000609,65.054421960233,77.00573475662692,79.43735082424543,63.17032149018405,64.97054191024604,0.2323921439838585,232.39657878220044,0.0862300298220404,83.8800499869592,151.70342,106.33114052231966,158664.0101241463,111209.9196995384,336.13938,215.67164822289072,351012.67610053025,225017.53759728355,346.75998,166.68435109399306,359189.8904960623,171757.99607296745,3221.57319,1447.244033464625,3334540.2194262287,1478799.7275105116,1138.81586,496.3100209531951,1175161.8085406795,503175.9498741746,1902.79172,790.6244845932881,1957609.237237614,799060.2648697768,0.38213,100000,0,689561,7212.000460188468,0,0.0,0,0.0,28612,298.6623157938774,0,0.0,31790,329.03475468817004,1656861,0,59476,0,0,6098,0,0,53,0.5438590986581323,0,0.0,0,0.0,0,0.0,0.0624,0.1632952136707403,0.3088141025641026,0.01927,0.3339455157636976,0.6660544842363024,24.758692304614907,4.464268960191223,0.3231907894736842,0.2251233552631578,0.2146381578947368,0.237047697368421,10.9988591054543,5.549331073083137,20.41095858007664,12465.077701376546,54.82824430988366,12.996837859694294,17.90962205695803,11.47410225579746,12.447682137433882,0.5460526315789473,0.7698630136986301,0.7073791348600509,0.5584291187739464,0.1023417172593235,0.7261809447558046,0.9110512129380054,0.8798076923076923,0.7361702127659574,0.13215859030837,0.4838174273858921,0.6975138121546961,0.6453287197231834,0.5067985166872683,0.0950323974082073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022904167342305,0.0045946466787702,0.0067825521890991,0.009107264466422,0.0109102751994789,0.0130607088643703,0.0152379009638431,0.0174375842765496,0.0196285007057668,0.0219393033093318,0.0237318394484117,0.0258109593826741,0.0279430229925279,0.0300712349102605,0.0323226899087116,0.0342383544068042,0.0361171006800464,0.0382997288790551,0.0402006911770829,0.0422599860211352,0.0565672827632349,0.0704921983883306,0.0837395470017229,0.0963960738057123,0.1084885734803362,0.1239407677315481,0.1373782230390854,0.1495192615174707,0.1614684199826665,0.1719211558085826,0.1853090642296861,0.1980140060273616,0.2097825139470014,0.2206882950399369,0.2307115857219999,0.2413842842243082,0.2511604496392819,0.2602352039148034,0.269865817602911,0.2779570324610456,0.2852336144983698,0.2922290364568065,0.2983222193217684,0.3046530357121392,0.3099859867178456,0.3152879231710482,0.3200667720962924,0.3251795990761653,0.329596529058741,0.3340744858254585,0.3330767776607524,0.3316541301497481,0.3315120711562897,0.3303722810729346,0.3301861504095309,0.3294112225618654,0.3279847485900389,0.3294278557774702,0.3304164307407217,0.3319422553374409,0.3322379539565103,0.3346540930343133,0.3348391570188893,0.3363607822030857,0.3378974519682761,0.3392899130025864,0.3411899313501144,0.3433598183881952,0.3457454289732771,0.3484584291035904,0.3538110451848471,0.3571694006476615,0.3594467148695379,0.3608936849304658,0.3596589844481919,0.3588235294117647,0.3582291823520554,0.3550637958532695,0.3560709413369713,0.3623188405797101,0.0,2.1405545230254384,54.99296902322856,177.93060373469345,277.51818196073566,fqhc7_80Compliance_implementation_low_initial_treat_cost,99 -100000,95725,41486,389.0937581613999,7372,75.82136328022983,5713,59.148602768346834,2321,23.891355445285978,77.33641368994157,79.71106777445092,63.332022412709286,65.08921534247641,77.04781687931036,79.4208208494146,63.22618790361523,64.98518512169255,0.2885968106312049,290.2469250363282,0.1058345090940591,104.03022078385504,77.08756,54.20084179216452,80530.22721337163,56621.406938798136,239.28476,146.97252182435403,249468.8743797336,153034.0473485025,264.81741,126.23119124824888,273205.0248106555,129244.23697736589,4117.08854,1836.9572980565051,4266444.784539044,1884484.75116898,1420.13157,620.1740074642823,1471342.0423086968,635659.0310412976,2294.05506,952.0469600180072,2363911.099503787,967036.6841839064,0.38092,100000,0,350398,3660.4648733350746,0,0.0,0,0.0,20202,210.509271350222,0,0.0,24742,255.12666492556804,2093981,0,75180,0,0,0,0,0,38,0.3760773047793158,0,0.0,1,0.0104465917994254,0,0.0,0.07372,0.1935314501732647,0.3148399348887683,0.02321,0.3115364850976361,0.6884635149023638,25.536215267185305,4.592522784326282,0.3352004200945213,0.2028706458953264,0.2263259233327498,0.2356030106774024,11.055516565543694,5.432757435440387,24.743469409360376,13077.623026774856,64.25229827708898,13.514665545541376,21.461763787499297,14.41727438338215,14.858594560666168,0.5394713810607387,0.7428817946505608,0.6741514360313315,0.580046403712297,0.1337295690936107,0.7041116005873715,0.9052924791086352,0.8463356973995272,0.7133333333333334,0.2214285714285714,0.4879338083199264,0.67,0.6253351206434317,0.5397784491440081,0.1106941838649155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0047972088966419,0.0072490989390324,0.0094113342548174,0.0116273155447951,0.0142280976921353,0.0165512599557409,0.0187665917908923,0.0209890300880251,0.023053456994861,0.0250422838398851,0.0272376337241535,0.0294311217144502,0.0315177982860909,0.0336700684132864,0.0358770814598902,0.0377833231514749,0.0397327634500072,0.041696979775094,0.0435724627868459,0.0584654261428899,0.0729972064993356,0.0853538319560384,0.0981299078093956,0.1105466197272171,0.1257926777712014,0.1394513112981533,0.1523933087320408,0.1644623776432787,0.1756872576117931,0.1896772527200525,0.2028612519869805,0.214908992121706,0.226118302474193,0.2372978199718706,0.2485210372090451,0.2585328890919424,0.2681188742019602,0.2778281774471559,0.2868028144842972,0.2951581576026637,0.3022619993457027,0.3095516707445362,0.3166225649253463,0.3224576991236375,0.3297666687188327,0.3360057032793856,0.3422438800956792,0.3483362907508386,0.3531905900379093,0.3544829445867601,0.3553669977924945,0.3559243044767688,0.3574275651153015,0.3581441823008321,0.3580873308733087,0.3579390951737298,0.3584031396345887,0.3593283197692387,0.3610926647163343,0.3618551073801502,0.3636092971556737,0.36472541560707,0.3644377649671385,0.3667511771097428,0.3670634401569653,0.3677621733624956,0.3700464347051714,0.3724996453397645,0.3764880952380952,0.3777582050806601,0.3809911523638929,0.3833041674768293,0.3861826697892271,0.3837276399307559,0.3866520253782333,0.3847359348064567,0.3919867823213548,0.3876185164528722,0.3854166666666667,0.0,2.1082389951349074,60.199483566956665,218.49746151321267,332.01173375942585,fqhc8_100Compliance_baseline,0 -100000,95611,41273,389.3694240202487,7150,73.58985890744789,5521,57.17961322441978,2258,23.25046281285626,77.26635035352784,79.70517436380037,63.26822878755484,65.0723362716434,76.99034300405977,79.42763763232954,63.16702778508478,64.97294649847117,0.2760073494680739,277.5367314708319,0.1012010024700629,99.38977317221998,76.27906,53.65492149465924,79780.63193565594,56117.93778399896,236.97645,145.93717145065992,247290.30132516133,152071.8865514009,260.10284,124.2009785190229,268643.93218353536,127279.48899055918,3960.57111,1780.440875767839,4104895.357228771,1824686.7680160648,1309.48066,575.622540505774,1356197.7492129568,588652.0489334636,2222.16772,928.00979229311,2289938.689062974,940864.9198889747,0.3791,100000,0,346723,3626.3923607116335,0,0.0,0,0.0,20021,208.80442626894396,0,0.0,24350,251.22632333099747,2093757,0,75092,0,0,0,0,0,43,0.4497390467624018,0,0.0,0,0.0,0,0.0,0.0715,0.1886045898179899,0.3158041958041958,0.02258,0.315782510914142,0.6842174890858579,25.468884397572836,4.527002235549263,0.3272957797500452,0.2106502445209201,0.2282195254482883,0.2338344502807462,10.92371757738873,5.347215240109138,24.14834816395805,12984.892701858824,62.28221950522378,13.574702060354053,20.27292986630168,14.055029078972105,14.379558499595934,0.5444665821409165,0.7626827171109201,0.6900940785832872,0.5817460317460318,0.1076684740511231,0.7022677395757132,0.9002770083102493,0.8758465011286681,0.7321428571428571,0.1484098939929328,0.4925373134328358,0.7007481296758105,0.6297653958944281,0.5387755102040817,0.0962301587301587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0046462084707075,0.0069769567469304,0.0092219782007483,0.0113495246432279,0.0136062048370822,0.0156964402351404,0.0174938434341886,0.0195117459278055,0.0218772415206476,0.0237797118108296,0.0258207758567522,0.0278249590809425,0.0299309207134756,0.0315960171872417,0.0338248228051114,0.0357479711031187,0.0377113539113456,0.0395911825315876,0.0415293479621209,0.0562222965626829,0.0699292638197537,0.0827004485341232,0.0955024225826838,0.1074555613058586,0.1234401813520899,0.1367187084843396,0.1495280251719908,0.1614401609692403,0.1726760926554643,0.1860640707582785,0.1989029929214859,0.2116096710956218,0.2231011098086045,0.2342463488564342,0.2453102293023307,0.2558175907410097,0.2664391815038796,0.277,0.286415730723783,0.2948945191672749,0.3027118842616997,0.3108841441740325,0.3178034210589449,0.3244436337103247,0.3308843503815474,0.336944256375536,0.3422310604612031,0.3481419028471366,0.3539351821268612,0.3544899362336034,0.3549351669399622,0.3558760035556559,0.3571242435648724,0.3581662744630782,0.3588657705763211,0.3589328508625752,0.3596132942455285,0.3608706830062559,0.3616483082774209,0.362099509988692,0.3627326228725942,0.3637800585892221,0.3639777812760024,0.3664624845652858,0.3682538015074717,0.3695858362314259,0.3709160184156215,0.3746812128081609,0.3744888960153932,0.3759132472545145,0.3795377768244946,0.3803716237788136,0.3812729498164015,0.3798230754752494,0.3779807806382726,0.3713365045266227,0.3691152597402597,0.3663911845730027,0.3706798328902392,0.0,2.185419021727748,60.30860432719289,208.7060842675535,316.7859203435022,fqhc8_100Compliance_baseline,1 -100000,95686,41518,389.9943565411868,7272,74.53545973287628,5657,58.33664276905712,2273,23.15908283343436,77.34534288058313,79.71531658999315,63.32656324425341,65.07501954663567,77.0654153832514,79.43951831486703,63.22420045754836,64.97774462843985,0.2799274973317267,275.798275126121,0.1023627867050507,97.27491819582212,76.82884,54.06406956351433,80292.66559371277,56501.54626958419,239.98658,148.3190368664867,250046.49583011097,154246.12468541553,271.46031,130.26112710937866,278946.1258700333,132333.5568988286,4101.30298,1842.0273070210128,4230871.517254353,1869909.6878830472,1383.26357,603.4420020421951,1428515.4881591874,613619.4457200898,2246.4289,933.6270941864856,2293488.6817298247,931021.1614390096,0.37987,100000,0,349222,3649.6666178960345,0,0.0,0,0.0,20220,210.5114645820705,0,0.0,25302,259.83947494931334,2089326,0,75007,0,0,0,0,0,57,0.5747967309742281,0,0.0,1,0.0104508496540768,0,0.0,0.07272,0.1914339116013373,0.3125687568756876,0.02273,0.3105070569785677,0.6894929430214323,25.335723569616192,4.579719948459003,0.3362206116316069,0.1986918861587414,0.230334099345943,0.2347534028637087,11.485964993479124,5.919265786281088,24.249348820493527,12993.490654874346,63.749526818714486,13.061252853182598,21.44556034697946,14.491907510733943,14.750806107818493,0.5568322432384656,0.7393238434163701,0.7187171398527865,0.6047582501918649,0.1234939759036144,0.7146912704045423,0.8947368421052632,0.8713080168776371,0.7898089171974523,0.1433691756272401,0.504472693032015,0.6713554987212276,0.6680672268907563,0.5460060667340748,0.1182078169685414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045528191834,0.0043175967405185,0.00655411712187,0.0089173268332317,0.0114197970265817,0.0135615308647003,0.0156672069151809,0.0179659667425456,0.0201584462049578,0.0221926502200839,0.0244505043877634,0.0264538854144202,0.0286260916076075,0.0306389466960624,0.0327251336456892,0.0347850357153932,0.0368701776189736,0.038752127527087,0.0408538867861747,0.0428538674781666,0.0576095584241968,0.0716431345048826,0.0855334956346541,0.0984638047138047,0.1103537058922843,0.1263202455286273,0.1395751276634144,0.1524631197741918,0.1644365595075239,0.1760181917643651,0.1898348184942946,0.2031576553650903,0.2158488677048306,0.2266999485444652,0.2377113277162839,0.2482623299743922,0.2589343512131967,0.2680805580558056,0.2770613875771885,0.2855195482089877,0.2938746702457537,0.3014584624741231,0.3088879418519307,0.3162304041420969,0.3225551667152717,0.3289272503082614,0.3343144131055558,0.3398809220904789,0.3447144561439909,0.3503874533865806,0.3510740275696329,0.3517361254811075,0.3530892480873389,0.3540594231689457,0.3544384962944185,0.3540600752861642,0.3534366523373677,0.3547162368719491,0.356366804468892,0.3574171653121372,0.3592125718781022,0.3589915966386555,0.3591389728096676,0.3597944160158003,0.3607175668487984,0.3626531894836074,0.363714163457424,0.3647343754914603,0.3657739350485027,0.368542270579359,0.3708148216003298,0.3737244216487685,0.3740090061520898,0.378010310071555,0.3810833886728014,0.3794011976047904,0.3831732259064146,0.379338673238858,0.3861992209237618,0.3906866614048934,0.0,2.928083990981188,61.65205863913384,208.7652327836331,328.13348992988296,fqhc8_100Compliance_baseline,2 -100000,95663,41157,386.9730198718418,7248,74.53247337005948,5660,58.59109582597242,2300,23.614145489896828,77.2498286400838,79.64727181300513,63.26585613190741,65.03837032132493,76.96415828503636,79.36221543726005,63.16087989646631,64.93639865783676,0.2856703550474435,285.0563757450857,0.1049762354411072,101.97166348817176,76.494,53.81582077346162,79961.94976114067,56255.62733079834,239.24175,147.5294617164787,249513.49006407912,153649.5940026706,263.40772,126.371233710668,272141.9357536352,129525.28381845176,4079.95764,1820.041774387532,4223757.680607968,1862170.209242869,1360.49908,592.841945483021,1409533.8741206108,607312.6958689544,2254.04622,940.0418658036097,2315962.0124813146,949159.6265179174,0.37788,100000,0,347700,3634.6340800518487,0,0.0,0,0.0,20179,210.3425566833572,0,0.0,24592,253.90171748742983,2086548,0,74938,0,0,0,0,0,50,0.5017613915515926,0,0.0,0,0.0,0,0.0,0.07248,0.1918069228326452,0.3173289183222958,0.023,0.3154590635626471,0.6845409364373528,25.375543311042986,4.61227110046587,0.3392226148409894,0.1989399293286219,0.2321554770318021,0.2296819787985865,11.168663296273191,5.589724071599107,24.55593950605688,12976.550011908865,63.51444980599249,13.067026654566948,21.658866482310795,14.56902688426397,14.219529784850788,0.5443462897526502,0.7486678507992895,0.7052083333333333,0.556316590563166,0.1176923076923077,0.7088425593098491,0.8944281524926686,0.8831967213114754,0.7326388888888888,0.1423357664233576,0.4907472475989693,0.6853503184713375,0.6445530726256983,0.50682261208577,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.0042289086981654,0.0063032246932126,0.0088091851249745,0.0109143432576212,0.0136271973601124,0.0157441775094832,0.0179098381579619,0.020065453057885,0.022234512141416,0.024176094693978,0.0261222393425783,0.0280704642739545,0.0300244277012193,0.0320778872163373,0.0340576487501163,0.0360084969690689,0.0381644518272425,0.0401073691438559,0.0423335592513424,0.0572580897948948,0.0716709253131152,0.0844020906362167,0.0978576539416642,0.1098037146475306,0.1246692771721875,0.1381331634278432,0.1509271099744245,0.1627959220787556,0.1741830135573555,0.1886100261119143,0.201266591480871,0.2133151581243184,0.2246377606423236,0.2351921760823012,0.2464106325287816,0.2567145464112583,0.2661348558017782,0.275213169248984,0.2848046708885492,0.2937123870158236,0.3017322427490246,0.3092358013678263,0.315987815596518,0.3230256898192198,0.3296740018317285,0.3355493835693908,0.3411671440261866,0.3473329604724061,0.3525660572474047,0.3537793293821547,0.3547165115925398,0.3551191470684016,0.3558674395966816,0.3563245859035442,0.3554308555615343,0.3552652490384921,0.3571086802290089,0.3579281910324686,0.3599964041711614,0.3612206767697737,0.361464492623783,0.3618093631379165,0.3627176757195705,0.3625944003302493,0.3635624770594096,0.3636415672133024,0.365760595358224,0.3664038854086014,0.3691730523627075,0.3711664841182913,0.3721399373573286,0.3753863622027376,0.3756112469437653,0.3787065800621293,0.3769676884838442,0.3742699047033507,0.3741776315789473,0.3728813559322034,0.3634975181366934,0.0,2.193797527082248,61.622561451637615,204.7102588149,334.1350066293893,fqhc8_100Compliance_baseline,3 -100000,95748,41205,385.8983999665789,7325,75.37494255754689,5690,58.87329239253039,2274,23.352968208213227,77.32698317968122,79.68578357439402,63.31555014592704,65.06077133255286,77.04791110847614,79.40543426967783,63.213725223907794,64.96074719374394,0.2790720712050785,280.34930471619646,0.1018249220192473,100.02413880891936,76.42052,53.72110397440998,79814.22066257258,56106.76356102475,237.03924,145.80206439862184,247040.14705267997,151751.28921608996,267.28874,128.02155237255477,275181.3301583323,130704.0481330099,4086.2579,1830.278798796876,4232413.3350043865,1876250.1762928488,1357.47999,589.5620179663945,1403247.8276308642,601227.97130634,2236.17764,927.204356689792,2299507.3526339973,940105.3471267936,0.37829,100000,0,347366,3627.9191210260265,0,0.0,0,0.0,19945,207.7536867610812,0,0.0,25029,257.44663073902325,2095280,0,75195,0,0,0,0,0,42,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.07325,0.1936345132041555,0.3104436860068259,0.02274,0.3211735687394522,0.6788264312605479,25.332497613999735,4.611074010121702,0.3363796133567662,0.1992970123022847,0.2374340949033392,0.2268892794376098,11.29260395643421,5.663448756232686,24.086621299598395,12969.223361909504,64.10141294132686,13.29125761579646,21.708182819053743,14.944142145338654,14.15783036113801,0.5546572934973638,0.763668430335097,0.7110762800417972,0.5862324204293117,0.1061192873741285,0.7102601156069365,0.9086021505376344,0.8742004264392325,0.7571428571428571,0.0874524714828897,0.504644681839294,0.6929133858267716,0.6581314878892733,0.5415499533146592,0.1108949416342412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.004431060006895,0.0064551488947079,0.0089198634590377,0.0110958555809814,0.0133801741255536,0.0153770852877595,0.0178225098503562,0.0198990229344671,0.0221084953940634,0.0242800040996207,0.0265356820234869,0.0287817112783191,0.0308394085423617,0.0327721730519279,0.0350592587234834,0.0373322842471426,0.0394784611075959,0.0415627338488401,0.0435452954412867,0.0585950956750493,0.0723618826434003,0.0855672156583182,0.097959655632759,0.1104552497602007,0.1262687135244861,0.1393770349237997,0.1516300066009411,0.1639570306236973,0.173919110385986,0.1868902997704024,0.1995732559273018,0.210353345739066,0.2217116348278955,0.2328074945783199,0.2440862837253641,0.2552003038630828,0.2655658677239142,0.274600686160907,0.2832712476359676,0.2915773992194647,0.3003033959258261,0.3080114754487043,0.3153711308022957,0.3222956445547807,0.3287958632094682,0.335117853560682,0.341669215866218,0.3470070833657663,0.3521057915874022,0.3519035105451115,0.3527815281183699,0.3540635444430342,0.3551202987926691,0.3561645874892071,0.3561852107809261,0.3561711246924359,0.3567949983547219,0.3576726101776202,0.3589436418252038,0.360313315926893,0.3612443986199786,0.3614437510541406,0.3631463096895916,0.3644032971548744,0.3657832589871425,0.3679912901469788,0.3693066801619433,0.3719649915302089,0.3713362842445268,0.372861977499314,0.3747136235281581,0.377400202122284,0.3794602012808783,0.3820679273685201,0.3868137080517016,0.3848987108655617,0.3844747002641739,0.3919821826280623,0.4026377036462374,0.0,2.188786008831302,61.06260143622615,219.8646301482766,323.68881236748734,fqhc8_100Compliance_baseline,4 -100000,95761,41889,393.0932216664404,7223,74.2369022879878,5665,58.58334812710812,2321,23.809275174653564,77.39144353273707,79.72918378331447,63.36142006586866,65.08667512004622,77.10298270106468,79.44278748444974,63.2551002036231,64.98426055693928,0.2884608316723955,286.39629886473017,0.1063198622455559,102.4145631069473,78.83084,55.39738037410576,82320.4018337319,57849.626021141965,244.42318,151.07164261889386,254650.0663109199,157166.18729847626,267.30792,127.13117972044918,276214.89959378034,130401.090934502,4141.9969,1847.128753348572,4284266.924948569,1887813.1006866803,1410.82163,613.6349163309102,1455965.9986842244,623560.115120746,2287.7106,957.6333593381892,2348912.480028404,966306.1554311232,0.38324,100000,0,358322,3741.836446987813,0,0.0,0,0.0,20563,214.10595127452723,0,0.0,24955,257.66230511377285,2083449,0,74749,0,0,0,0,0,54,0.5534612211651926,0,0.0,1,0.0104426645502866,0,0.0,0.07223,0.1884719757854086,0.321334625501869,0.02321,0.3204521556256572,0.6795478443743428,25.32144013690651,4.599937347816513,0.3133274492497793,0.2031774051191527,0.2436010591350397,0.2398940864960282,11.052585729863251,5.474852388691128,24.869312185259368,13166.680535183588,63.95515113978277,13.571881599795732,19.963629422936368,15.397763571214002,15.021876545836667,0.5412180052956752,0.7854039965247611,0.6929577464788732,0.5442028985507247,0.133186166298749,0.6710334788937409,0.9213483146067416,0.8398058252427184,0.6883561643835616,0.1496815286624203,0.4996504311349335,0.7245283018867924,0.6485693323550991,0.5055147058823529,0.1282296650717703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894378746152,0.0046920761676986,0.0068687729550942,0.0090797371548125,0.0112454372604243,0.0134252096734793,0.0158345221112696,0.0180994551798722,0.0202780700589443,0.0223868380126053,0.0243854957530302,0.0265312403816558,0.0287199827371839,0.0309901193906957,0.0329982990567496,0.0349778934754762,0.0372080025667829,0.0393706504039744,0.0416211889689296,0.0433568764714461,0.0583298538622129,0.0735489541587753,0.0870618843301197,0.0996361188818543,0.1119429740388468,0.1277601522842639,0.141110215509927,0.1533321984849774,0.1655862532973077,0.1775097818513158,0.1914075955907681,0.2046290287691975,0.2169385780898449,0.2289126349372842,0.239931834423616,0.2514220579447113,0.2614245738430494,0.2720399060769136,0.2812280343740788,0.2903930880585912,0.2982636641080181,0.3065089310764051,0.313901769660263,0.3204956142453147,0.3270689927280232,0.3325327322666864,0.3387673906515864,0.3451626047317085,0.3515862837303901,0.3563445882647877,0.3569476787228601,0.3571566145718688,0.3577152191975665,0.3589388096991753,0.3597807356349159,0.3599663454183876,0.3598765920417688,0.3605763707678926,0.3613512866956017,0.3613475430941992,0.3621305557644581,0.3630283786465568,0.3650616608443116,0.3668053525244574,0.3682667377450386,0.3691851307361126,0.3693277913143185,0.371453928809154,0.3742205215419501,0.3747495792932126,0.3748561962173853,0.3743744282408653,0.3762350991266654,0.3795463283352556,0.3782760904532122,0.3797934227709842,0.3775045537340619,0.3797136519459568,0.3773841961852861,0.3801526717557252,0.0,2.1548758349256034,60.943361272034586,219.8020736634783,322.3799944880823,fqhc8_100Compliance_baseline,5 -100000,95719,41511,390.8941798389035,7281,74.854522090703,5573,57.55388167448469,2251,23.109309541470346,77.37264048070351,79.73142504571739,63.34029949113111,65.08156689061032,77.09819993135305,79.45818003052493,63.24040935564099,64.98484555784083,0.2744405493504587,273.24501519245814,0.0998901354901207,96.72133276949069,76.49004,53.86424814219069,79911.03124771467,56273.30847813985,238.77833,147.09362099641115,248802.8082198937,153017.53152081734,263.96144,125.77493426515416,271239.6389431565,127893.24265020242,4053.9348,1801.7431626762448,4190817.914938518,1838003.597244698,1340.5358,579.1696241989416,1381342.878634336,585971.5219729132,2221.20182,918.9852790220992,2282701.65797804,928063.0430814278,0.38083,100000,0,347682,3632.3196021688486,0,0.0,0,0.0,20111,209.41505866128983,0,0.0,24653,253.1158913068461,2094240,0,75141,0,0,0,0,0,47,0.4701260982668018,0,0.0,0,0.0,0,0.0,0.07281,0.1911876690386786,0.3091608295563796,0.02251,0.3132217464642532,0.6867782535357467,25.45473428365182,4.597423400003701,0.3256773730486273,0.2058137448411986,0.2286021891261439,0.2399066929840301,11.13217504522717,5.458252839138444,23.898000075161395,13062.997659400524,62.60736689128313,13.449223344141108,20.39911826157159,14.130511571253075,14.628513714317368,0.5354387224116275,0.7428073234524848,0.6815426997245179,0.5808477237048666,0.1159311892296185,0.7033132530120482,0.9152542372881356,0.866822429906542,0.758364312267658,0.1263537906137184,0.4829210836277974,0.6658259773013872,0.6243691420331651,0.5333333333333333,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784810126582,0.0041855421442542,0.0065126753705225,0.0085919727006824,0.0108592868254888,0.0132642465948653,0.0152185435863981,0.0172190297326814,0.0191558740250845,0.0211792404544989,0.0231404111344645,0.0251537458547653,0.0274236005429194,0.0295471632045644,0.0317967976229778,0.0338277091623171,0.0360603801714498,0.0381384060075509,0.039931403627293,0.0419010123734533,0.0563827343537912,0.0706273804043025,0.0841730013106159,0.0969067614012591,0.1094583482679373,0.1253251009663163,0.1392539323935893,0.1522023689167473,0.1644150157526566,0.1762630433150664,0.1900992871142124,0.2036067418161362,0.2160381051807386,0.2272553286890714,0.2378395625433221,0.2489502431890448,0.2595044089742159,0.2692944236160367,0.279359814623397,0.2874049609522827,0.2960904849558342,0.3040628328631793,0.3119267142281529,0.3188049166946752,0.3253353439784018,0.3316923304708321,0.3372835918121915,0.3437126053415485,0.3494870200528525,0.3544768239890191,0.3551236987057762,0.3566080325928373,0.3573361522198731,0.3576708860759494,0.3588415632348126,0.3583481622384488,0.3587707620134398,0.3592978877410015,0.3607241149421357,0.3610039988574693,0.3621725861713879,0.3630584565573608,0.3645743766122098,0.3662717925793473,0.3682705248990578,0.3698651533295153,0.3699573257467994,0.3720492805417097,0.3731040039233544,0.3748566910456612,0.3758694367413738,0.3748205646233186,0.3764631445745017,0.3769389470466875,0.3760120504613067,0.3768305750684605,0.3805050816137973,0.3848979591836735,0.3904947192884936,0.3922480620155039,0.0,2.6399295817824684,58.17974333568943,215.6183788419504,319.01725138016536,fqhc8_100Compliance_baseline,6 -100000,95745,41423,388.6364823228367,7291,75.02219437046321,5632,58.26936132435114,2242,23.134367329886675,77.33281654085012,79.69851362651191,63.319784280511655,65.07073659740954,77.06361848733427,79.42547302613643,63.22265877513732,64.97407660625504,0.2691980535158507,273.04060037548084,0.0971255053743362,96.65999115449608,77.1562,54.25709675891383,80585.09582745834,56668.33438708427,238.37709,146.57497718678857,248440.8585304716,152558.97142074112,267.46793,128.1404232579388,275033.8398872004,130577.76894832493,4075.62025,1818.862385723079,4221412.689957701,1864362.332991882,1375.36202,595.6418539209069,1422402.3186589377,608030.6375485996,2209.7775,906.2510568139684,2281609.0657475586,925697.6266006392,0.37952,100000,0,350710,3662.958901248107,0,0.0,0,0.0,20091,209.27463575121416,0,0.0,25003,256.82803279544623,2091457,0,75108,0,0,0,0,0,45,0.4595540237088098,0,0.0,1,0.0104444096297456,0,0.0,0.07291,0.1921110876897133,0.3075024002194486,0.02242,0.3073909636980935,0.6926090363019065,25.436613763312167,4.580096154746079,0.3329190340909091,0.1976207386363636,0.2334872159090909,0.2359730113636363,11.115221170969036,5.605551522943482,23.774938940273262,13033.189221264596,63.39251466324136,12.976156150499222,21.18835485909164,14.744981273034258,14.483022380616246,0.5440340909090909,0.7610062893081762,0.6890666666666667,0.5825095057034221,0.1196388261851015,0.734341252699784,0.935672514619883,0.8736842105263158,0.746875,0.1825396825396825,0.4817346217299081,0.6835278858625162,0.6264285714285714,0.5296482412060302,0.1049210770659238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019759041027875,0.0043106508575659,0.0067011879378617,0.0090972850448765,0.0111809709844137,0.0133331975228161,0.0156640389969304,0.0178356304236855,0.0200098157501891,0.0220251686957946,0.0242879698168918,0.0262968743582371,0.028728304680431,0.0306900102986611,0.0328408410887105,0.0348434576782742,0.036775442993403,0.0389265366693994,0.041019828850093,0.0431073099080141,0.0578760008769091,0.0726384398899386,0.0860570218209653,0.0990086519558886,0.1108382431990893,0.1257295719844358,0.1388258499650045,0.1519492544620526,0.1635551948051948,0.1751616604647671,0.1885644768856447,0.2006101386875527,0.2124737683349824,0.2242664742664742,0.2348121590709132,0.2468474253512394,0.2576959553695955,0.2674033895253314,0.2770243431878795,0.2859007683411388,0.2944560185185185,0.3025507158158427,0.3101891888690131,0.3176841625595088,0.3245158702179648,0.3307131310389081,0.3366495426638266,0.3423428011254408,0.3476705296725519,0.353343113542947,0.3545329522165893,0.3548729397497381,0.3556305225418513,0.3559162515927256,0.3567075442177884,0.3564292620045117,0.356389307527564,0.3577338750801928,0.3582344988105629,0.3588799084471783,0.3603815031072226,0.3616244943285476,0.3619961773539728,0.3640337113910432,0.3661815461105882,0.3663822436266555,0.3680320824978516,0.3715993926357079,0.3746384479717813,0.377211549982028,0.3790400220052262,0.3803608716603309,0.3803093698491188,0.3816414025417241,0.3846950301204819,0.3914903731875446,0.3915043704953228,0.3971126474176494,0.4062153163152053,0.4023919753086419,0.0,2.203814334930931,61.48554417223633,210.9016191311735,324.2269995330621,fqhc8_100Compliance_baseline,7 -100000,95778,41441,388.3042034705256,7251,74.3176929983921,5638,58.27016642652801,2284,23.450061600785148,77.34910350822409,79.67746754080542,63.34642956891118,65.06668150648079,77.06781059266781,79.39701058943832,63.24203300407326,64.96544488240826,0.2812929155562784,280.4569513670998,0.1043965648379199,101.23662407252708,77.1936,54.31334167913069,80596.37912673056,56707.53375423447,239.05357,147.42953884220404,248998.38167428845,153335.46204995306,265.90344,127.55601069902768,273756.93791893753,130266.80746754917,4128.06418,1861.203374902717,4265554.219131742,1898767.6866323368,1390.70863,607.6838479735558,1434265.2801269602,616723.9010770275,2264.10756,950.9216620024838,2325309.194178204,959444.6702794236,0.37979,100000,0,350880,3663.471778487753,0,0.0,0,0.0,20159,209.8603019482553,0,0.0,24860,255.71634404560544,2091007,0,75071,0,0,0,0,0,46,0.4802773079412809,0,0.0,1,0.0104408110422017,0,0.0,0.07251,0.190921298612391,0.3149910357192111,0.02284,0.3158586256733675,0.6841413743266325,25.475005934118208,4.5999495950095,0.330081589216034,0.1912025540971975,0.2399787158566867,0.2387371408300816,10.95589002308984,5.430298999237587,24.517497012310667,13027.576864149103,63.43988610350237,12.538339895631378,20.83137022452136,15.095384951763508,14.974791031586124,0.5507272082298688,0.7569573283858998,0.7152068780225685,0.5868440502586844,0.1218424962852897,0.6964028776978417,0.9112426035502958,0.87248322147651,0.7322580645161291,0.1457627118644067,0.503060263653484,0.6864864864864865,0.6654879773691655,0.5436241610738255,0.1151284490960989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910887880751,0.0047233399892559,0.0071319150662973,0.0093752221917502,0.0114288038394273,0.0137933140600187,0.0160521005320124,0.0181558401796193,0.0204661333006365,0.0227128562951443,0.0248535016186534,0.0272441817510158,0.0291551481393938,0.031135172967465,0.0331893307488478,0.0352937530986613,0.0374383013069257,0.0393931852589228,0.0415956606675256,0.0435706252343066,0.0579198931351881,0.0712694411613969,0.0842988204456094,0.0971413557540725,0.1085045842554536,0.1239471153338054,0.1371089982086261,0.1500659350008507,0.1620687079113349,0.1741985943258764,0.1877044945755123,0.2007504487553796,0.2128957209949556,0.2241588575552469,0.234676700663432,0.2461291394395835,0.2574805522383062,0.2677987067753725,0.2776838498110724,0.2866565137236491,0.2951132603715958,0.3028271197547333,0.3103178831468656,0.3172494815205534,0.3241072621897136,0.3300392331038567,0.3355132927409857,0.341606992686221,0.3474593865158042,0.3522939177125626,0.3533079601587173,0.3547483721443549,0.3554834156669019,0.3565265230484132,0.3574383239591703,0.3577463924797963,0.3574350680239749,0.3582322841771006,0.3590590813374193,0.360182697474476,0.3612864442440637,0.3628748933129553,0.363276978719825,0.3633666704124059,0.3643825665859564,0.3666290097995429,0.3677096514436903,0.3695202975490352,0.3722966744664255,0.376068376068376,0.3777104005880191,0.3810797795494676,0.3846546987797866,0.3870545678442238,0.3912794580669783,0.3894940692326313,0.391618270287239,0.3912773873501446,0.3995510662177329,0.3943606036536934,0.0,2.242075722908502,61.23493955293455,211.9485367147671,324.3639400992509,fqhc8_100Compliance_baseline,8 -100000,95665,41629,389.933622536978,7262,74.70861861704907,5645,58.4121674593634,2278,23.373229498771757,77.31532774038504,79.70817653367924,63.31028192710126,65.07658928076144,77.03884258682771,79.43209750123317,63.20956345599104,64.97895626427764,0.2764851535573314,276.0790324460629,0.1007184711102198,97.63301648379752,77.05104,54.26726775930057,80542.55997491245,56726.355259813485,240.62025,148.57320127241897,250934.68875764383,154716.58524268956,269.93639,129.40947647856527,278831.1399153295,132567.2944512049,4093.36372,1830.8053239418707,4236080.708723148,1870995.8855818429,1390.32081,606.0873628062318,1434912.371295667,615141.873000817,2244.67752,929.377820692258,2304994.428474364,936008.3632330956,0.38035,100000,0,350232,3661.025453405112,0,0.0,0,0.0,20255,211.1116918413213,0,0.0,25176,259.8442481576334,2088441,0,74923,0,0,0,0,0,47,0.4808446140176657,0,0.0,1,0.0104531437829927,0,0.0,0.07262,0.1909294071250164,0.3136876893417791,0.02278,0.3248790691593672,0.6751209308406327,25.39384005856595,4.529233622734079,0.3317980513728963,0.1968113374667847,0.237378210806023,0.2340124003542958,11.058644098781809,5.545743397216282,24.27628523286564,13086.390528447831,63.82410321147607,13.063098752905445,21.12816294058012,15.124573352723138,14.508268165267369,0.5489813994685563,0.7803780378037803,0.6983449012279765,0.582089552238806,0.109008327024981,0.7120651369356032,0.9025787965616046,0.883668903803132,0.717607973421927,0.1417322834645669,0.4976711690731253,0.7244094488188977,0.6402524544179523,0.5428296438883542,0.1012183692596063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021881394736308,0.004876416796772,0.0073880127463516,0.0097941600796537,0.0119832356770833,0.0143111790170613,0.0166557871975847,0.0188345845462438,0.0210563992432377,0.0233477379318819,0.0255061227001415,0.0273549049820236,0.0293294652593461,0.0313037743820132,0.0334847233691164,0.0358162336587787,0.0380574436339522,0.0401876530908789,0.042221436298577,0.0443791299272507,0.0589587403746695,0.0734419500753895,0.0868022755421206,0.0994148969755645,0.1114171732522796,0.1273368195964685,0.1407411339987258,0.1536683566954965,0.1652843981788256,0.1769068137670505,0.1913932836142604,0.2045324122697792,0.2169672693232902,0.2274746678922373,0.2375996652129862,0.2494870060006433,0.2596559812353401,0.2693398455963447,0.2782811080835604,0.2874515737111157,0.2948622918162655,0.301849683914774,0.3088501758666019,0.3158482142857143,0.3232509812976218,0.3294539716198389,0.3353161434135223,0.3414109531506535,0.3466808257142117,0.3519682959048877,0.3533273126743856,0.3537761852260198,0.3549615091785805,0.3559182136754612,0.356545297567656,0.3560908254065664,0.3565935721194248,0.357481892686452,0.3587536787351995,0.3593959671503462,0.3601741022850925,0.3619002337652046,0.3630435239918379,0.3644649993264783,0.3663808718753774,0.3677736777367774,0.3673258517264143,0.3710809694736507,0.3727550223610421,0.3740206516935192,0.3755929081280221,0.3767711464147703,0.377409061901723,0.3808710503842869,0.3814502206023403,0.3804465902232951,0.3818321785989222,0.3731796116504854,0.3712691771269177,0.3752402921953095,0.0,2.369543585821972,59.51482796483792,220.73559935242804,324.5383614572125,fqhc8_100Compliance_baseline,9 -100000,95624,41936,394.8904040826571,7260,74.70927800552163,5610,58.05028026436878,2306,23.738810340500294,77.3146043072854,79.73366115846454,63.296484254502126,65.08287841360303,77.02752885000436,79.44269805537806,63.19233846894534,64.97901117457936,0.2870754572810483,290.963103086483,0.1041457855567884,103.86723902367125,76.93686,54.11055556298733,80457.68844641512,56586.793653253706,237.61225,146.138494008091,247892.96620095373,152234.6683784231,267.70744,127.92122150495123,275005.17652472184,130090.14590854468,4018.43267,1795.6874086091009,4166760.363507069,1842487.921996976,1346.2303,579.6934885668265,1396632.874592153,595320.254689801,2254.9333,935.7732420886932,2324807.5169413537,953549.5746316595,0.38356,100000,0,349713,3657.167656655233,0,0.0,0,0.0,19993,208.45185309127416,0,0.0,24908,255.63666025265624,2090950,0,75025,0,0,0,0,0,46,0.4705931565297415,0,0.0,2,0.0209152514013218,0,0.0,0.0726,0.1892793826259255,0.3176308539944903,0.02306,0.3184138201806046,0.6815861798193954,25.30756254372372,4.493016654588999,0.3303030303030303,0.2092691622103386,0.2322638146167558,0.2281639928698752,11.25213048893544,5.856373088214091,24.623198288949183,13098.385472368893,63.15307937536118,13.714535762958551,20.77327289926148,14.54075549695702,14.124515216184122,0.5468805704099822,0.7632027257240205,0.6821370750134916,0.5832693783576363,0.115625,0.7009413468501087,0.9090909090909092,0.8484848484848485,0.7389705882352942,0.1282051282051282,0.4965712934499882,0.695,0.6268871315600287,0.542192046556741,0.112214498510427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203266695712,0.0046546531320035,0.0067608722134242,0.0088604379413707,0.0111185709635416,0.0132511713179873,0.0153201211737946,0.0173664317090611,0.0194229372717881,0.0215358777687888,0.0235794871794871,0.0259167950693374,0.0280541124427755,0.0303848333419195,0.0326290037883088,0.0346071923403023,0.0365343169761273,0.038891196013289,0.0407753454303312,0.0427495723999833,0.0573184497679668,0.0707881174843926,0.0835599609395508,0.0962255015472706,0.1088922898305979,0.1246294257157377,0.1378134658891756,0.1510240180721608,0.1632421678628346,0.1742446213170925,0.1882868207855532,0.2019507965752682,0.2150810598797176,0.2257933769320932,0.2376176515969758,0.2490317282402423,0.259323416667598,0.2697291328646115,0.278908318278397,0.2880002753019718,0.2965536409116175,0.3047971257036526,0.3113837699559429,0.3184309962214358,0.3252979842776083,0.332268961436039,0.3384528726999624,0.3448411890461162,0.3499935241549022,0.3556089701259938,0.3566354384309496,0.3576052225650066,0.358737370886719,0.3596355260679984,0.3614093159181726,0.3624235344748086,0.362222999395924,0.363436814048291,0.3644507875369695,0.3660103738535815,0.3672889991915317,0.3676950782687855,0.3686615658735981,0.3699271708683473,0.3698653198653198,0.3691518182765447,0.3704136613735496,0.3737627651217596,0.3765371372356124,0.3778246339910884,0.3790730529098118,0.3812976488777523,0.3834375398749521,0.3838220580312476,0.3836889521100047,0.385616190820383,0.3843260188087774,0.3845358693405003,0.3935430002783189,0.3909626719056974,0.0,2.3950420012903977,60.89131433556709,209.25359950728225,324.8630672779079,fqhc8_100Compliance_baseline,10 -100000,95651,41390,389.1752307869233,7438,76.41321052576555,5782,59.92619000324096,2308,23.81574682962018,77.29129418892526,79.69091835558848,63.29829466637945,65.06962498178261,77.00512876350845,79.4011468454267,63.193203514489255,64.96488032521033,0.2861654254168115,289.7715101617848,0.1050911518901926,104.74465657227938,76.46144,53.80335296249011,79937.94105654933,56249.65025194729,238.85668,147.0152877181199,249204.79660432195,153189.9180814592,271.29449,130.1175124275341,279625.22085498326,132987.8506749054,4177.30961,1879.0399498000893,4331240.373859134,1928761.753858805,1396.08157,609.7306590003423,1446912.703474088,624898.6274070381,2281.34178,954.1790886131404,2355485.9227817794,974646.3883176228,0.37839,100000,0,347552,3633.542775297697,0,0.0,0,0.0,20147,210.0866692454862,0,0.0,25349,261.04274916101247,2091241,0,75081,0,0,0,0,0,42,0.4390962980000209,0,0.0,0,0.0,0,0.0,0.07438,0.1965696767884986,0.3102984673299274,0.02308,0.3189313562571903,0.6810686437428096,25.15639802990198,4.596986640319837,0.335696990660671,0.2018332756831546,0.224143894846074,0.2383258388101003,11.34304921828123,5.638842688120082,24.647560324262123,12976.417063942534,65.40504064171004,13.686312855931982,22.03223925579596,14.395235598431734,15.291252931550368,0.538395019024559,0.7686375321336761,0.6743946419371458,0.5841049382716049,0.1088534107402031,0.6850672328379335,0.905982905982906,0.8389121338912134,0.7263157894736842,0.1404682274247491,0.4909590295262073,0.7095588235294118,0.6206425153793574,0.5440158259149357,0.1000926784059314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020967758273148,0.0044611173071073,0.006597444251596,0.0088405649832334,0.0110287010754,0.0131282782502418,0.0153863409262393,0.0177262237833643,0.0197632095534107,0.0217168717875207,0.0236893920748215,0.0258919951523118,0.0280846861304857,0.0301606438117613,0.0324871733991266,0.0345754858460806,0.0366443857194673,0.0388832360819818,0.0409110299549479,0.04283733489017,0.0569216139111533,0.0707956259426847,0.083976438718619,0.0969402254570715,0.1090893739181829,0.1242286645709628,0.1382787868493965,0.1514209023901836,0.1633970857075658,0.1745021203499919,0.187363200172516,0.200534933079222,0.2127189401608917,0.2234644824301091,0.2342993837707936,0.2456233774878519,0.2561156867784942,0.2657800200452708,0.2762900881257382,0.2850559955982989,0.2928425026344129,0.3002691947565543,0.3083211886396758,0.3151819141787463,0.3223364770307271,0.3296288064014225,0.3359963879447656,0.3415337133820509,0.3475202159832821,0.3531588686227861,0.3538496816661271,0.3545618851837033,0.3555046843867904,0.3558670880570617,0.3558164163298182,0.3563060913471159,0.3560602446045454,0.3570237289255106,0.3590973153208896,0.3599367554844853,0.3606696453820485,0.3625291062152964,0.3632048604518701,0.3637693554195174,0.3660580592184707,0.3669294638413787,0.3681053443400268,0.3704873503679606,0.3717649554518455,0.3742540153001962,0.3746727297781452,0.3758880401687944,0.3766639067575313,0.3769325912183055,0.3769628494829567,0.3754403012267703,0.3791804050871408,0.376258389261745,0.3784545967287084,0.3768844221105528,0.0,1.9796844716326936,62.67164503269614,225.98848848019816,327.5172691142358,fqhc8_100Compliance_baseline,11 -100000,95622,40968,385.19378385727134,7305,75.06640731212482,5642,58.33385622555479,2298,23.530149965489112,77.27514686010801,79.68596159866452,63.27600815666828,65.05618323437663,76.99400455437495,79.40835570286744,63.17212456285748,64.9570541083157,0.2811423057330557,277.6058957970804,0.1038835938108064,99.12912606093016,77.17556,54.2529189248494,80709.0000209157,56736.85859409905,239.87601,147.38296352893218,250192.05831294053,153464.26923608815,263.6828,126.04689304537918,272046.22367237665,128894.48183224922,4115.89846,1847.733093923329,4254721.423940097,1882709.3701484264,1377.31185,602.2875603547518,1421139.8736692392,610631.8011352465,2272.6687,945.9750664062352,2329672.0210830146,949047.6072549172,0.37633,100000,0,350798,3668.590910041622,0,0.0,0,0.0,20277,211.36349375666688,0,0.0,24660,254.14653531614064,2085786,0,74870,0,0,0,0,0,42,0.4392294660224634,0,0.0,0,0.0,0,0.0,0.07305,0.1941115510323386,0.3145790554414784,0.02298,0.3167273673257024,0.6832726326742976,25.359059502314413,4.610202434547358,0.3275434243176178,0.1981566820276497,0.2320099255583126,0.2422899680964197,11.287741058464368,5.635134477757029,24.56853873887533,12912.534034831886,63.66118173926354,12.933872869390386,21.03712865515299,14.545283471107924,15.144896743612222,0.5377525700106345,0.7432915921288015,0.6985930735930735,0.5790679908326967,0.1126554498902706,0.7071942446043166,0.8973607038123167,0.8623481781376519,0.7275862068965517,0.1509433962264151,0.4823612417685795,0.6756756756756757,0.6388478581979321,0.5368007850834151,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0043886766062252,0.0069199939120288,0.0090198070086338,0.0111270456371606,0.0134736027374938,0.015917526614186,0.0181110963645087,0.0203756146933434,0.0225671690694626,0.0244225167193205,0.0268232296771144,0.0288389320438294,0.0308093510348808,0.0328996282527881,0.0350182073988247,0.0368493065489147,0.0386253167712184,0.0404096117222216,0.0424045220365851,0.0570165353178502,0.0704795037304049,0.0832860594600273,0.0957342576301899,0.1078340234936195,0.1235502833236244,0.1366766562519926,0.1490890483246804,0.1614739974099087,0.1729812229280194,0.186634278002699,0.1996225964927501,0.2119738807190433,0.2228412256267409,0.2334738561370207,0.2449707297024093,0.2552519950306109,0.2649408684661912,0.2747598014662356,0.283920550494549,0.2921675562775586,0.3005243955373587,0.3080346546403987,0.3147416102947361,0.3214902991796295,0.3281799883926256,0.3342575748071011,0.3406764319679759,0.3457960922885055,0.3505044086106919,0.3507714756667657,0.3507883038352155,0.3518065819779847,0.3519820276831654,0.3532269360871444,0.353518746158574,0.3529374414654666,0.35380535928982,0.3547967702203367,0.3561820263308529,0.3571186695763413,0.3591197462331483,0.3601160443995964,0.3613598115112756,0.3618546498998334,0.3623646917324687,0.3630567785465149,0.3651034264961313,0.3671538515851161,0.3711216707263506,0.3728340876880172,0.3735210664382462,0.3763849319404875,0.3774965695990242,0.3771190453641443,0.3837279173176301,0.3862229102167183,0.3927839278392784,0.3889662858735023,0.3917086400619914,0.0,2.5606653153831487,61.18848148834344,216.25720006748745,320.1367680085518,fqhc8_100Compliance_baseline,12 -100000,95693,41478,388.8267689381669,7269,74.74945920809255,5633,58.36372566436417,2252,23.261889584400112,77.28391542799022,79.68135158190032,63.28504443165552,65.05947777675584,77.01015661827562,79.40307957395892,63.18572425655609,64.9602139606637,0.2737588097146073,278.2720079413963,0.0993201750994288,99.2638160921473,76.76372,54.00184314628563,80218.74118274065,56432.38601181448,239.49887,147.36262557725416,249805.3149133165,153522.1547837921,268.2744,128.2251792301531,276411.1063505168,131048.31332631412,4069.9491,1831.0729981595796,4221385.022937937,1882201.6044775096,1370.67598,598.5957503850507,1418603.983572466,611944.9987701538,2219.73386,918.592259928692,2294739.0091229244,939897.8329853052,0.38119,100000,0,348926,3646.306417397302,0,0.0,0,0.0,20202,210.61101647978435,0,0.0,25095,258.399255953936,2089759,0,75070,0,0,0,0,0,43,0.438903577064153,0,0.0,0,0.0,0,0.0,0.07269,0.1906923056743356,0.3098087769982116,0.02252,0.315748134572588,0.684251865427412,25.42443453061112,4.604467279728444,0.3376531155689686,0.1970530800639091,0.2343333925084324,0.2309604118586898,11.331675647546271,5.749204048861309,23.91738368513197,13113.453715485555,63.66631729395303,12.947655806153186,21.55160697984437,14.775696398057017,14.391358109898452,0.560802414344044,0.7594594594594595,0.7192429022082019,0.5969696969696969,0.1229823212913143,0.7228300510576222,0.9267605633802816,0.902439024390244,0.7186440677966102,0.1592592592592592,0.5086813702487095,0.680794701986755,0.6623018607856651,0.5619512195121952,0.113482056256062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219209176952,0.0047975494969165,0.0073098673056032,0.0095730734443755,0.0119145732222256,0.0140880938798793,0.016247641389158,0.0184867426563712,0.0206494502684735,0.0229260996947284,0.0249912797258756,0.027156713657474,0.0291723690844918,0.031164976502597,0.0334455065342609,0.0354103107709809,0.0375205943610308,0.03969399088616,0.0417000384859422,0.0436880556105593,0.0586822094092086,0.0732179684473896,0.0859016737499344,0.0985900673400673,0.110844924752517,0.1268139335499645,0.1399993629152996,0.152709884234853,0.1643756547020972,0.1760128789911457,0.1898489960012502,0.2028294733193232,0.2151668572050737,0.2265281093274347,0.2375752099266083,0.2485237968389273,0.2590460434388938,0.2686516701978993,0.2787002625387841,0.2884496248537274,0.2963302220418575,0.3038028119466692,0.311773988775377,0.3191578795666899,0.3255360861147303,0.3320450925434318,0.3389127109506256,0.3440697185521169,0.349068467931182,0.3544263680540883,0.355169670904507,0.3560477705690317,0.357152924594785,0.3582756277738424,0.3591690864418137,0.360234043860188,0.3592859071488699,0.3598927314007436,0.3606886263481884,0.3612495964994082,0.3618123587038432,0.3628581098568556,0.363840135335166,0.365118064020949,0.3659877849964718,0.3671622154979608,0.3689568159660492,0.3707590842792821,0.3736895979668914,0.3761354581673307,0.3781443298969072,0.3803576194288764,0.3794774944916588,0.3812008469449486,0.3812061711079944,0.38221695317131,0.3756516406010426,0.3782246597603088,0.3773426573426573,0.3791505791505791,0.0,1.9924803449415192,60.758674840225005,220.0973033090293,319.4352194700673,fqhc8_100Compliance_baseline,13 -100000,95660,41394,389.32678235417103,7243,74.68116245034497,5601,58.00752665690989,2243,23.10265523729877,77.35161970545354,79.75589277541404,63.31721993396855,65.09360079627696,77.08290340709922,79.48639610658363,63.21974964839307,64.99804364779264,0.2687162983543203,269.49666883041345,0.0974702855754827,95.55714848431762,77.16742,54.21722723512704,80668.42985573907,56677.009445041855,237.89048,146.57223530360832,248157.26531465608,152696.0017808994,264.39825,126.25575528119845,272296.1321346435,128895.90420334984,4068.7069,1820.5671221978223,4217965.962784863,1867830.2970915951,1383.46126,595.1046536544933,1433037.2255906337,608913.6563396325,2215.47996,910.8178221959838,2284561.7185866614,925673.1443712376,0.38022,100000,0,350761,3666.746811624504,0,0.0,0,0.0,20064,209.1887936441564,0,0.0,24657,253.752874764792,2093241,0,74990,0,0,0,0,0,50,0.5226845076311938,0,0.0,0,0.0,0,0.0,0.07243,0.1904949765924991,0.3096783100925031,0.02243,0.3093298291721419,0.6906701708278581,25.574379885887573,4.576241301338354,0.3227995000892698,0.20317800392787,0.2372790573111944,0.2367434386716657,11.16831547928004,5.636105848622364,23.689899303130925,13022.821506696127,62.98496728761454,13.20580113370352,20.34990851433955,14.810550840663966,14.61870679890751,0.5440099982146045,0.7407732864674869,0.7029867256637168,0.5861550037622273,0.1161387631975867,0.7028985507246377,0.9101123595505618,0.8599137931034483,0.7260726072607261,0.1050583657587548,0.492063492063492,0.6636828644501279,0.6488095238095238,0.5448343079922028,0.1188026192703461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871115794166,0.0043299700856867,0.0066981955467148,0.0086767455092253,0.0110162853858751,0.0133733958036259,0.0155916993830622,0.0177880344324064,0.0197443762781186,0.0219502202191949,0.0242833986498963,0.0264710113652711,0.0286084755181427,0.0306498005134073,0.0326395703145173,0.0346789712181092,0.0368447235868416,0.0386895184312422,0.0408235453230823,0.0426758698349477,0.0575924436039161,0.0716364778557219,0.0850782455366982,0.0977283010132682,0.1103125857447392,0.1257434963909997,0.1387788901510728,0.1515991175812347,0.1633024186215675,0.1751777009470225,0.1891180815389094,0.2016271436154654,0.214251502220674,0.2257979771443583,0.2368560163873042,0.2481899925714855,0.258469652274962,0.2684071872466901,0.277838954669815,0.2877004122766834,0.2956236045395125,0.3035559815771632,0.3101453732508487,0.3173428198402146,0.3238075583018707,0.3304761201014803,0.3365913408659134,0.3424955205672677,0.348109365910413,0.3531403129775014,0.3538250447275319,0.3540816466740866,0.3549558680687529,0.3549635405385892,0.35565095965298,0.3556994580692569,0.3554985998386255,0.3559514037103923,0.3569633668951606,0.3583442063307655,0.3595193390912504,0.3614903636867307,0.3627430395162306,0.3628572067939222,0.3639489312591666,0.3654827622122695,0.3661032408858991,0.3670925914269528,0.3680694722778891,0.370034232943237,0.37266825164594,0.3722767028889477,0.3772112055398174,0.3786860198624904,0.3786636509282819,0.3779216109313196,0.3805762081784387,0.375025463434508,0.3742482230727173,0.3824308973873532,0.0,2.1473472781799208,61.123893688748,207.34802742891355,325.2930301333322,fqhc8_100Compliance_baseline,14 -100000,95793,41576,390.52957940559327,7159,73.54399590784294,5591,57.80171828839268,2298,23.634294781455846,77.3507064425629,79.67856972353982,63.34838135415546,65.06979962928297,77.07052212573771,79.395969900851,63.246336297280926,64.96892479556148,0.2801843168251849,282.5998226888231,0.1020450568745303,100.87483372149109,77.11748,54.30328474673372,80504.2957209817,56688.15544636218,239.04489,147.25348583280294,249003.97732610945,153181.3137001691,265.80885,127.47464095730002,273413.58971949934,129996.5552137913,4099.34718,1833.3587399818573,4242855.145991878,1877349.9002869288,1378.81118,594.6620565376197,1426596.2544236009,608009.1724213873,2280.93154,947.9303823559052,2349211.7795663564,964338.8121198526,0.3812,100000,0,350534,3659.286169135532,0,0.0,0,0.0,20166,209.94227135594457,0,0.0,24750,254.3192091280156,2093010,0,75057,0,0,0,0,0,43,0.4384453978891985,0,0.0,1,0.010439176140219,0,0.0,0.07159,0.1878016789087093,0.3209945523117753,0.02298,0.3188328912466843,0.6811671087533157,25.394236055497025,4.681068013020232,0.3233768556608836,0.1974602038991235,0.2264353425147558,0.2527275979252369,11.018922543500668,5.438212276270235,24.639358332800505,13022.053995141176,63.08403952219768,12.93712099356959,20.50053089176343,14.083325314570772,15.563062322293884,0.5340726167054194,0.7644927536231884,0.6913716814159292,0.5710900473933649,0.1196036801132342,0.7047619047619048,0.9189944134078212,0.8719646799116998,0.6895306859205776,0.1696750902527075,0.4789398958826313,0.6903485254691689,0.6309963099630996,0.537917087967644,0.1073943661971831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0043491484184914,0.0066161324038276,0.0088574679018365,0.0111131446233935,0.0130717623464017,0.0151848681260445,0.0175832474410915,0.0198146274666094,0.0216741711011052,0.0240691026087669,0.0264832030207884,0.028662158551374,0.0303679150110148,0.0324303700877527,0.0345568561009122,0.036464099831338,0.0386274103255235,0.0407298557527546,0.0427155558331771,0.0570343395557039,0.0717870436200911,0.0845606348074927,0.0971521647751156,0.1099190624736531,0.1253791922544367,0.1390217264524064,0.152362912751535,0.1642399658411614,0.1755811087415472,0.1892610370880599,0.2025505241543283,0.2150656801069135,0.2268992942513164,0.2367978361975129,0.2476795256164883,0.2576166172635896,0.2680754021748899,0.277629834441964,0.2871476295075965,0.2953201515291508,0.3031322261929787,0.3100132469129961,0.3171552426114863,0.3244929418476215,0.3307877070887479,0.3371681526591554,0.3423754691774286,0.3477551231897199,0.3527813320318168,0.3538881934068301,0.3541861746075461,0.3550976077634845,0.3559025011948383,0.3563632573445108,0.3558900322531101,0.3557945915027487,0.3575764573917059,0.3584041184041184,0.3588846422996178,0.3603607002716571,0.3607248711981062,0.3616154365816585,0.3620744152442879,0.3625886739462025,0.3635670731707317,0.3647224781206817,0.3677195661163597,0.3678618385984862,0.3690890890890891,0.3720544154945815,0.3738923708666523,0.3747036586147241,0.3761553398058252,0.3780928816140084,0.3791235251625331,0.3810785536159601,0.3794967768766895,0.3807909604519774,0.3830534947286216,0.0,2.233854418977894,60.06039001449852,215.29063383039656,319.8457380813767,fqhc8_100Compliance_baseline,15 -100000,95739,41548,389.6217842258641,7203,74.11817545618817,5563,57.552303658905984,2299,23.668515443027395,77.31652017658898,79.67726920948583,63.31665033110207,65.06274630362809,77.02978578699059,79.39073110946909,63.21126169213181,64.96010561985925,0.2867343895983936,286.53810001674174,0.105388638970254,102.64068376883984,76.0672,53.53113975125133,79452.67863671022,55913.619059371136,236.05818,145.36345754969005,246029.1208389476,151297.9011162536,261.40396,124.7191669064898,269767.09595880465,127690.88978542574,4063.24565,1825.216567729804,4209205.015719822,1871569.2745169727,1359.06503,595.4962548724516,1404397.758489226,606845.2719084715,2272.05048,954.5032392409746,2341803.4656722965,968131.232313685,0.38114,100000,0,345760,3611.485392577737,0,0.0,0,0.0,19888,207.1674030436917,0,0.0,24429,251.8827228193317,2097565,0,75321,0,0,0,0,0,42,0.4386926957666154,0,0.0,1,0.0104450641849194,0,0.0,0.07203,0.1889856745552815,0.319172566985978,0.02299,0.3169377231257437,0.6830622768742562,25.488454592019664,4.587390693724615,0.3248247348552939,0.1982743124213553,0.2333273413625741,0.2435736113607765,10.96188498817445,5.333744558745455,24.77948239219732,13070.282361839363,62.99620630708672,13.017598403978306,20.40496425257003,14.486389708959472,15.08725394157893,0.5369404997303613,0.7651858567543064,0.6884338682899834,0.5808936825885979,0.1070110701107011,0.6656912948061449,0.8977272727272727,0.8461538461538461,0.7178571428571429,0.0980392156862745,0.4949952335557674,0.7030625832223701,0.6393323657474601,0.5432220039292731,0.109628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024817414734453,0.0047647529931772,0.0068510530322253,0.009408943576821,0.011627197265625,0.0136883058684537,0.0159709544837995,0.0182081839812914,0.02041901412051,0.0227079600716662,0.0249876958411943,0.0269951123341684,0.0291943030489999,0.0314076820100916,0.0335657699290311,0.0358740687930731,0.0377938573336231,0.0399053971349439,0.0418290870157274,0.0433704564159729,0.0582898308623929,0.0718665634221375,0.0849334605744727,0.0979410713159057,0.1101867375235926,0.1257866291552528,0.1382818467283374,0.1501415827460665,0.1628185266306961,0.174613222324743,0.1883940882454326,0.2022011081291663,0.2147440080038279,0.2259517613872428,0.2370819664912705,0.248911055694098,0.2597509910111105,0.2704165447712491,0.2792685418511203,0.2879388578238152,0.2961848319288823,0.3036487466941278,0.3117693738081984,0.3192482628679779,0.3249604670964602,0.3301637481785176,0.336129501454509,0.3416580614729542,0.3467034962133001,0.3525157981015838,0.3532641690163647,0.3539888990141662,0.3550513480634849,0.3560596165846721,0.3572281068178428,0.3576920711078304,0.3574675015097098,0.3581909713625484,0.3596432438005877,0.3610586691119621,0.3623694036887565,0.3625973922722213,0.3633411357837245,0.3645223732781129,0.366205361463273,0.367069051297494,0.3668559302592337,0.3702041590291385,0.3738934151588897,0.3754237626131695,0.3772038283647021,0.3806461983603922,0.3829152111781518,0.3831203611599969,0.3833744543556652,0.3856453558504222,0.3850825288072251,0.3862097270675149,0.3892617449664429,0.3930523028883684,0.0,2.2019474586043493,60.54632010109381,215.00275164520784,316.97943184944603,fqhc8_100Compliance_baseline,16 -100000,95668,41601,390.9248651586737,7320,75.20801103817368,5765,59.570598319187184,2360,24.229627461638163,77.40264542862671,79.78242306148198,63.35728834693722,65.11163570774892,77.11899116416281,79.5008229970868,63.25404272483481,65.01188552267382,0.2836542644639053,281.6000643951781,0.1032456221024062,99.75018507509505,77.1848,54.24499956679293,80679.62118994858,56701.0835062852,241.23048,148.39178551960015,251445.770790651,154404.06221369756,269.70022,128.94905488517276,277569.59484885226,131378.60463892188,4165.60456,1868.513544205414,4308448.174938329,1907411.5614462649,1401.73574,609.6588867279147,1446708.585943053,618795.8503659096,2325.01004,958.8929464094126,2389638.018982314,967956.6797865134,0.38094,100000,0,350840,3667.255508634026,0,0.0,0,0.0,20323,211.6904294016808,0,0.0,25226,259.36572312581006,2094556,0,75070,0,0,0,0,0,38,0.3867541915792114,0,0.0,0,0.0,0,0.0,0.0732,0.192156245077965,0.3224043715846995,0.0236,0.3195474053843152,0.6804525946156847,25.434302926723287,4.524536901434495,0.3417172593235039,0.195836947094536,0.229661751951431,0.232784041630529,11.14969066634414,5.662557459589758,24.9190106008729,13097.847134342472,64.69989237476683,13.192534526530428,21.985720966691044,14.88015860066938,14.641478280875983,0.5524718126626192,0.7431355181576617,0.7025380710659899,0.6163141993957704,0.1087928464977645,0.7142857142857143,0.8937329700272479,0.8626609442060086,0.765625,0.1340996168582375,0.4998850838887612,0.6706036745406824,0.6529255319148937,0.5687250996015937,0.1026827012025902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582049802027,0.0046520113107725,0.0071921282207344,0.0094248600997328,0.0118160279029092,0.0138789890638046,0.0161387339810576,0.0181361692573049,0.0202953349343416,0.0225960948053542,0.0247545050124028,0.0267431833114323,0.0288502071745098,0.0306388325317459,0.0325938918695831,0.0343861752485685,0.0365200824212804,0.0389029553378714,0.0409871869539895,0.0430332780956549,0.0573610371159651,0.0711675583988608,0.0848190394241161,0.0974165316727326,0.1096556452038179,0.125747172645811,0.1387429832659514,0.1507057846664821,0.1633824189446237,0.1749136692190549,0.188819849021656,0.2026167132004415,0.2151463743529514,0.2272443992521402,0.2385263574760186,0.2509549485711755,0.2618487507386307,0.2714494382022472,0.2810042827037683,0.2891254874604028,0.2969614376292053,0.3048061544927096,0.3121485611680764,0.3189482880359985,0.3262124851396268,0.3318435341484135,0.337235625930234,0.3429050620044724,0.3476883694471738,0.3523924957841484,0.3537762482187508,0.355078730969345,0.3558250312644905,0.3569554184209008,0.3581631290882392,0.3579198604672511,0.3575388904730222,0.3596954298024898,0.3612529675997882,0.3627986713811207,0.3646560132042914,0.3661891230562791,0.3662608259068658,0.367009617535227,0.367713328674362,0.3693434475542767,0.3697830194080265,0.372787785103631,0.3737780130580554,0.3749501396090945,0.3780347881958786,0.3815966070757502,0.3811887488863434,0.3803185350465492,0.3815326035221323,0.3839391779520076,0.3877740043223217,0.3925670186839967,0.3891029168959823,0.3894175866006852,0.0,2.59933837729624,61.9552016194871,216.1220818057847,331.573566599611,fqhc8_100Compliance_baseline,17 -100000,95722,41688,391.5191909905769,7309,75.1655836693759,5687,58.77436743904223,2404,24.68607007793402,77.33907921770925,79.70616200407976,63.32552877917672,65.07567475595457,77.05196921172302,79.41968796780864,63.22035957479712,64.9737579292472,0.2871100059862357,286.474036271116,0.1051692043795995,101.91682670736668,76.68562,53.970547548279576,80112.84762123649,56382.59496069825,238.902,147.0242825169322,248932.19949436912,152949.27313294233,269.68648,128.41193228588014,277966.8205846096,131220.11554715037,4169.18589,1870.6573712099732,4313221.965692317,1912090.5179983224,1411.71835,612.4619572962521,1458759.7521990766,623783.0564512358,2376.98316,985.449641212172,2443276.0702868723,995163.3043020496,0.38168,100000,0,348571,3641.493073692569,0,0.0,0,0.0,20114,209.460730030714,0,0.0,25182,259.25074695472307,2094285,0,75080,0,0,0,0,0,41,0.4283236873446021,0,0.0,0,0.0,0,0.0,0.07309,0.1914954936072102,0.3289095635517854,0.02404,0.3194138244066917,0.6805861755933083,25.183741329155552,4.664917589593019,0.3223140495867768,0.19852294707227,0.231756637946193,0.24740636539476,11.173342729944606,5.460915066045397,25.56246311166582,13081.27072873172,64.41993306327025,13.238411117184269,20.7931333960509,14.815199761890591,15.573188788144476,0.5459820643573061,0.7590788308237378,0.7114020731042008,0.5948406676783005,0.1137171286425017,0.6978260869565217,0.9233038348082596,0.8435517970401691,0.7473684210526316,0.1342756183745583,0.4973299280241467,0.6886075949367089,0.6654411764705882,0.5527589545014521,0.1085409252669039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020256036298817,0.0045321815305998,0.0068410421931934,0.0091550154446431,0.0112509282524439,0.0136165965637698,0.015795645745169,0.0180604191977457,0.0203378392196159,0.0225014850775312,0.0246448900056407,0.0267355511960641,0.0290853740062325,0.0311044714609519,0.033155444532758,0.0351082201838657,0.037129507806106,0.0394781904791556,0.0411696806464024,0.0430791990498614,0.0572087875370672,0.0712746144348881,0.0848239562144819,0.0980031335765886,0.1103987176918453,0.1259546021873876,0.1392000848716316,0.1522426513643283,0.1647325340343228,0.1760319316730866,0.1898727356975829,0.2024387074417395,0.2142546245919477,0.2260101562842008,0.2371974185590625,0.2488385759111219,0.2595041322314049,0.2694710537276135,0.2797461600463178,0.2881804738814952,0.2959249826348691,0.304062434184354,0.3122478675957363,0.3188902332378979,0.326049481632554,0.3324224519940916,0.3382621303402245,0.3446720374088287,0.3504345352025244,0.3553693931398416,0.3559395015878142,0.3562805423635488,0.356700390862013,0.3573332560700006,0.3590045275825092,0.3586776352139481,0.3577753094255791,0.3590592420574139,0.3594286499107265,0.3602032753914667,0.3609913184309147,0.3618697895990472,0.3623093911031654,0.3618777695301077,0.3632304313195433,0.3655798618379736,0.3650283879107645,0.3662363958491521,0.3684433612376814,0.3706817181057604,0.3717046238785369,0.3731278957008943,0.3723090722706304,0.3750096651975566,0.374905303030303,0.3733797407585214,0.376270126621854,0.3794384805945499,0.3788645306351883,0.3788940809968847,0.0,2.452831630844633,60.83382134420425,221.7149845491974,325.3922940569065,fqhc8_100Compliance_baseline,18 -100000,95682,41686,391.672414874271,7110,73.08584686774942,5515,57.0117681486591,2281,23.400430593006,77.30793472821749,79.68349348346906,63.31631099018998,65.06985191134629,77.02824374008843,79.40612787757351,63.21268930437566,64.97030519468963,0.2796909881290617,277.3656058955538,0.1036216858143248,99.54671665666126,76.85062,54.10069621674104,80318.78514245103,56542.187889823625,237.15736,146.4141059850847,247262.9439183964,152424.56886884128,261.55793,125.15712856720796,269739.22994920675,128004.21619521096,3990.50626,1786.4235506449595,4128874.5532075,1825324.5549266955,1360.04861,590.4569111525433,1405748.5420455255,601426.2046702022,2249.5214,937.1490491851396,2310293.158587822,944074.1057312364,0.38186,100000,0,349321,3650.8538701114103,0,0.0,0,0.0,19976,208.1373717104576,0,0.0,24366,250.99809786584728,2090991,0,75102,0,0,0,0,0,54,0.5643694738822349,0,0.0,0,0.0,0,0.0,0.0711,0.1861938930498088,0.3208157524613221,0.02281,0.3096895074946467,0.6903104925053534,25.433587551328987,4.610327298870344,0.3361740707162284,0.2003626473254759,0.2248413417951042,0.2386219401631913,11.020890127687569,5.414645275755266,24.24741732568405,13035.2105283284,61.99236387585892,12.77760465640926,20.94553215199342,13.74291739267739,14.526309674778856,0.5421577515865821,0.7683257918552037,0.6844660194174758,0.5733870967741935,0.1223404255319148,0.7216804201050263,0.9333333333333332,0.8686440677966102,0.7364620938628159,0.1574803149606299,0.48493543758967,0.6980645161290323,0.6215629522431259,0.5264797507788161,0.1139359698681732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0048234769567508,0.0070704713985737,0.0091716096530429,0.0114311284679847,0.0133904932589303,0.0156621223399373,0.0177641653905053,0.0200678811670653,0.0223152593381171,0.0246647804157953,0.0263863078676372,0.0286930766382821,0.0306170804574018,0.0325569876273127,0.0346328402030414,0.0368866047745358,0.0392030648158722,0.041205047384244,0.0431065936929893,0.0573702848666548,0.0718697008394917,0.08512044653349,0.0976292151376822,0.1101703850533507,0.1255988578076252,0.1394907161803713,0.1521035598705501,0.1642626664102399,0.1752936759105294,0.1889472890593025,0.2018955089852752,0.214157559941282,0.2257821128254475,0.2363180247782937,0.2472355795865003,0.2577041129527317,0.2684351505874938,0.2773520429594814,0.2866556648101033,0.2947166008317212,0.3022447450962033,0.3099442214090311,0.3158463255679977,0.3228726834669814,0.3298767992494383,0.3354566885689923,0.341224791764991,0.3469785321887297,0.3519768180374722,0.3534970368670437,0.355133090346808,0.3563312605992086,0.3568910744592889,0.3574753804834378,0.3575194847119952,0.3582483655972132,0.3590323645970938,0.3598252974757548,0.3606810589460828,0.3622455716738035,0.3628491230864173,0.3639277204967635,0.3643335882326481,0.3653692445563979,0.3675128238853084,0.3680308081388665,0.3697279127291177,0.3710593581368929,0.3730244468451166,0.3746893695352047,0.375355094602562,0.3769750254841998,0.3815486249807958,0.382258064516129,0.3826055833929849,0.381590978360256,0.3791086912684009,0.3768980477223427,0.3763197586726998,0.0,2.4797927855843485,58.42779458542432,208.11387829082489,320.46123662400527,fqhc8_100Compliance_baseline,19 -100000,95702,41653,393.1370295291634,7162,73.64527387097448,5577,57.64769806273641,2305,23.62542057637249,77.38171245272493,79.75614415344984,63.34258245905804,65.09505055099079,77.09681311471509,79.47335775703371,63.23745566626626,64.99424366826247,0.2848993380098363,282.7863964161281,0.1051267927917791,100.80688272832106,77.5313,54.59429638993236,81013.24946187122,57046.13946409935,241.72429,148.7614857909956,251962.52951871435,154824.74325614466,264.7501,126.29063075885963,273137.9699483815,129229.79329883486,4080.65986,1824.1354098610243,4220535.913565025,1862670.4038170828,1364.75717,584.522780395485,1411307.872353765,596032.9673313878,2280.0649,947.6867615666542,2339580.238657499,953088.8673712192,0.38021,100000,0,352415,3682.420430085056,0,0.0,0,0.0,20339,211.8868989153832,0,0.0,24646,254.0490271885645,2089720,0,74892,0,0,0,0,0,52,0.543353325949301,0,0.0,1,0.0104491024221019,0,0.0,0.07162,0.1883695852292154,0.3218374755654845,0.02305,0.3032906039381525,0.6967093960618475,25.14264007152392,4.59450024619546,0.3320781782320244,0.189528420297651,0.2359691590460821,0.2424242424242424,11.044755062280164,5.46264365086851,24.40605935436341,12917.656004721084,62.6368377314728,12.276655504194816,20.92706718558741,14.632741478260812,14.800373563429744,0.5325443786982249,0.7663197729422895,0.673866090712743,0.5729483282674772,0.1168639053254437,0.6716306775874907,0.9131832797427653,0.8235294117647058,0.6986301369863014,0.1281138790035587,0.4884270193670288,0.7050938337801609,0.624551328068916,0.537109375,0.1139122315592903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207907956571,0.0041865604314286,0.0064740025165401,0.0087154379050443,0.010873324246801,0.0129429735234215,0.0148967626816212,0.0169157580954714,0.0190650460525643,0.0210463818853709,0.023056734534867,0.0252874743326488,0.0271593257987885,0.0295226518881723,0.0314551083591331,0.033489112678095,0.035421327367636,0.0375335955254392,0.03946998928746,0.0412602134400533,0.0559390894753882,0.0699164520384446,0.0831269674711437,0.0962966859547606,0.1082418219985864,0.1238089194877164,0.1369819408781274,0.1498397691824502,0.1615246560123066,0.1729671744260888,0.1864998545242944,0.1994024421927773,0.2120335425209097,0.223638609802228,0.2348301504884273,0.2458978276755464,0.2562935697953265,0.2665946748557352,0.2760400712478586,0.2853837607522879,0.293496753584945,0.3018889993566875,0.3094758780759302,0.3164124334436609,0.3230546709774655,0.3295924030338533,0.3353573038209224,0.3406274280037192,0.3458767428601047,0.3512571767966739,0.3522133663632936,0.3527202696196437,0.3533348361464116,0.3538050541516245,0.3553096163546272,0.3557852566553005,0.3556785827269851,0.356815052776503,0.3571891191709844,0.3580141236892788,0.3589858901568385,0.3589292073918721,0.3595094078988677,0.3602756892230576,0.3617026396207801,0.3624739583333333,0.3628149583855888,0.3644078451093789,0.366697093104901,0.3692270973387963,0.3704042436436802,0.3688174340348253,0.3693210821847881,0.3694980694980695,0.3696520250998288,0.3741153892287394,0.37395607794618,0.3719925971622455,0.3753162777621591,0.3771070168561348,0.0,2.477065201840408,58.950291035725655,211.8414811106573,322.10342582430115,fqhc8_100Compliance_baseline,20 -100000,95863,41792,391.42317682526107,7256,74.49172256240676,5685,58.781803198314265,2327,23.88825720037971,77.44506122741345,79.72158328014386,63.40474875222951,65.08368504914225,77.16396911594545,79.44123835591299,63.30158797543905,64.9833093236186,0.2810921114679985,280.3449242308744,0.1031607767904603,100.37572552364792,77.41668,54.48023485950429,80757.62285761972,56831.347714451134,239.9369,147.9355647587649,249786.38265024044,153814.69885019757,269.27621,128.74093206734267,277707.9373689536,131834.30927033155,4119.24271,1845.531117532971,4262410.179109771,1890575.7983090144,1416.17805,614.7845313293591,1461499.4210487884,625521.4956024325,2283.26896,946.6022094881024,2346514.3173069903,957701.3109279514,0.38239,100000,0,351894,3670.801038982715,0,0.0,0,0.0,20314,211.36413423322867,0,0.0,25057,258.2226719380783,2091750,0,75123,0,0,0,0,0,51,0.5320092214931725,0,0.0,0,0.0,0,0.0,0.07256,0.1897539161588953,0.3207001102535832,0.02327,0.313933674138157,0.686066325861843,25.326313042326547,4.602795195304591,0.3285839929639402,0.202990325417766,0.2379947229551451,0.2304309586631486,11.347019097348126,5.767663680194925,24.70366133249559,13084.830188548238,64.0320571618432,13.398672318281225,21.091734069777328,15.15039601082151,14.391254762963149,0.5465259454705365,0.766897746967071,0.6798715203426124,0.5668883961566888,0.1412213740458015,0.7133574007220217,0.9211267605633804,0.8322440087145969,0.7450980392156863,0.1924528301886792,0.4927906976744186,0.6983729662077597,0.6302342086586231,0.5148042024832856,0.1282296650717703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023887123221117,0.0048420263576413,0.0069963395962402,0.0089825829239576,0.0111874326823419,0.0131446419305938,0.0155320622504685,0.0178041543026706,0.0200859806594573,0.0222494887525562,0.0243600245750563,0.0266655726944535,0.0287786040014789,0.0310230615729597,0.0334226251803008,0.0356623073667695,0.0376743849343826,0.039832133050101,0.0417445288816909,0.0436596709917071,0.0581206206206206,0.0722210614291684,0.0856777895276885,0.0988688115175554,0.1110374648865322,0.1255475222966911,0.1387124099957645,0.1515470270729737,0.1632293977137007,0.1737124876921101,0.1877754132542292,0.2009848918454843,0.2136280726135672,0.2256313944727733,0.2368403708423041,0.2481577375024895,0.2586308760743309,0.2686986524607483,0.2777689586357039,0.2864467103832641,0.2952673945225759,0.3028562739777299,0.3104288960424162,0.3178013292617208,0.3247568512694731,0.3312921985116554,0.3380722740652596,0.3441228528134669,0.3497945587225052,0.3553648068669527,0.3564673869116577,0.3572519293997881,0.358082719993245,0.3585989007025693,0.3593372198240695,0.3599914400574739,0.3605384141428503,0.3612271305259364,0.3620839659496068,0.3639813297227963,0.3640705776579006,0.3654352256762372,0.3659309303008686,0.3655447139915853,0.3666474099749663,0.3674906132665832,0.368987305743724,0.3701480340698369,0.3723951949007109,0.3734350780970549,0.3754181751523761,0.3788576939562795,0.3803210048848569,0.3819911812485495,0.3851674641148325,0.3841691842900302,0.3864809888906274,0.3861635220125786,0.3893431068508599,0.4004729996058336,0.0,1.9823496047181428,61.38269073934601,222.98995839720416,317.85085731889944,fqhc8_100Compliance_baseline,21 -100000,95678,41670,391.5215619055583,7185,73.73690921632978,5595,57.818934342273046,2279,23.37005372185873,77.29747507811412,79.69995861561101,63.28577397120039,65.06533363357859,77.02067275788635,79.4245169258607,63.18417135819103,64.96724323934912,0.2768023202277732,275.44168975030914,0.1016026130093621,98.09039422947308,77.64944,54.62963033121128,81157.04759714878,57097.37905392178,240.47585,148.02549755066437,250663.70534501137,154039.09179918558,266.46062,127.06964639756536,273788.8647337946,129240.35332099388,4050.54617,1812.1298638964895,4186462.5619264618,1847173.807750906,1385.56769,597.9279273524028,1428622.8809130625,605565.0332126188,2255.02028,934.387050134433,2314035.891218462,940425.2660873728,0.38176,100000,0,352952,3688.956708961308,0,0.0,0,0.0,20261,211.06210414097285,0,0.0,24820,254.86527728422416,2084901,0,74866,0,0,0,0,0,54,0.5539413449277786,0,0.0,0,0.0,0,0.0,0.07185,0.1882072506286672,0.3171885873347251,0.02279,0.3206500198176774,0.6793499801823226,25.33657915830697,4.573532944366165,0.3292225201072386,0.201787310098302,0.2266309204647006,0.2423592493297587,11.20870120959072,5.5861269463027305,24.02524002134877,13083.429149649985,62.82786357667427,13.089302623264324,20.72013913727426,14.203963020152196,14.814458795983477,0.5415549597855228,0.733392382639504,0.6921824104234527,0.6151419558359621,0.1084070796460177,0.6947761194029851,0.8885542168674698,0.8698630136986302,0.7534722222222222,0.1347517730496454,0.4933019976498237,0.6687578419071518,0.6367521367521367,0.5744897959183674,0.1014897579143389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023207264177712,0.0047268374819954,0.0072795573379359,0.0095112285336856,0.0116984049479166,0.0138829472998024,0.0159520215413487,0.0181062478299054,0.0203422072675578,0.0223960840134765,0.0245966377073225,0.0268845924677939,0.029094051562725,0.0307589262713174,0.0327809612307056,0.0346921254874378,0.0369495144222298,0.0390617699280441,0.0411347960425704,0.0431144089876399,0.057777684923064,0.0720118083034985,0.0854486500099688,0.0981675117291872,0.1099858640842247,0.1251838293640297,0.138562466163498,0.1512291764304887,0.1632818933341888,0.1749634911090112,0.1889965054575262,0.2018168612529405,0.2145751633986928,0.2251221703591699,0.2354666225676644,0.2465741264715999,0.2575899843505477,0.2676611758343286,0.277717805074827,0.2866330390920555,0.2958761572598867,0.3040747943857347,0.3115208683904913,0.3184154278440885,0.324812853752054,0.3315677050536479,0.338274020013543,0.3442499553468908,0.3498590378194385,0.3552170057312279,0.3566748179472283,0.3569800373005456,0.3575380261761585,0.3579045104382771,0.3590366111591051,0.359291818167871,0.3595391661252238,0.36091769033699,0.36145524043548,0.3623028053394246,0.3639699000411815,0.3655752596864015,0.3660208831299534,0.3673592628212296,0.369039308668127,0.3695107305101561,0.369988577955454,0.372418576788473,0.3740753786544558,0.3777689243027888,0.3784884252905114,0.3781924820047987,0.3794631552291719,0.3796693202694427,0.384987205004265,0.3852860384569449,0.3843289371605896,0.3841726618705036,0.3876529477196885,0.383572258814413,0.0,2.476156116807949,58.91610869530097,211.0702691098444,326.0791908855235,fqhc8_100Compliance_baseline,22 -100000,95825,41378,389.6686668405948,7107,73.03939472997652,5510,56.88494651708845,2248,23.052439342551526,77.32864418348662,79.64067179533976,63.32870225298407,65.03871693436223,77.05843770690824,79.37047199920562,63.23052756365464,64.94349638625962,0.2702064765783802,270.19979613413625,0.0981746893294257,95.22054810260272,77.30096,54.44145412958775,80668.8859900861,56813.41417123689,238.6819,146.93850639986246,248445.3117662405,152704.7496998304,262.42382,124.85054359169165,270049.27732846333,127316.36230953624,4000.62523,1774.075785842295,4133574.171667102,1810016.1814164312,1353.85358,580.9982045286644,1400839.2799373858,594323.0861347248,2223.58072,913.1373697642996,2282282.807200626,919583.1656318766,0.37876,100000,0,351368,3666.767545003913,0,0.0,0,0.0,20131,209.4129924341247,0,0.0,24507,251.990607878946,2088655,0,75028,0,0,0,0,0,46,0.4696060527002348,0,0.0,3,0.0313070701800156,0,0.0,0.07107,0.1876386102017108,0.3163078654847334,0.02248,0.3118884867980163,0.6881115132019836,25.47599420594915,4.5305691891787525,0.3225045372050816,0.1992740471869328,0.2373865698729582,0.2408348457350272,10.992118090261798,5.436104941356438,23.670786457389177,12902.072155434202,61.69503522934176,12.851097125257972,19.8705646659109,14.38275018755284,14.59062325062004,0.543557168784029,0.7632058287795993,0.7045582442318514,0.5718654434250765,0.1183119819140919,0.7061538461538461,0.924198250728863,0.878345498783455,0.7444444444444445,0.1413043478260869,0.4933491686460807,0.6900662251655629,0.6522693997071742,0.5269749518304432,0.1122740247383444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0042776628958358,0.0064424491452341,0.0083495855680156,0.0104535285743339,0.0130116065974343,0.0149220262970135,0.0170022554012266,0.0193144889324912,0.021580746167857,0.023750486690301,0.025655761257748,0.0275416979251235,0.0293496947672922,0.0312561228383158,0.0331298230390181,0.0351429103628122,0.037263603185136,0.039366398338094,0.0413522487171747,0.0555202086049543,0.0689947200585498,0.0824476448022137,0.0952701211630815,0.1070822485269471,0.1229453611407672,0.135428595665267,0.1487806435137895,0.1615621195617351,0.1731542329091669,0.1866500123830341,0.1995088812444559,0.212109680786292,0.2237548227733269,0.2342159979757753,0.2456523183942932,0.2562218773377399,0.2661659892132908,0.2761808497348127,0.2846198837115956,0.2926130763968602,0.2996786602242342,0.3072840605520926,0.3138362436755639,0.3204041879717555,0.3267782633385181,0.3331744817466986,0.3397472680208612,0.3445115222330412,0.3498484788333532,0.3510850788166703,0.3518564527260179,0.3537882645843943,0.3551023370590797,0.3562311752601914,0.3559733730994511,0.3561700437028208,0.3581809503431703,0.3595622809267333,0.3614847364378472,0.3620488940628638,0.362977053858043,0.3628234997796108,0.3636302490863843,0.3642684693384838,0.3656546041409714,0.3662649222753428,0.3685988507924481,0.3679879013821967,0.3694424560566293,0.3710792618709648,0.3730472929595549,0.3770971021860702,0.37649417752757,0.376131060100962,0.3732334823046261,0.374884294970688,0.3763066202090592,0.3726742571507914,0.3817541111981206,0.0,2.318096373919401,57.21100153902525,205.5194605361541,326.0717844448752,fqhc8_100Compliance_baseline,23 -100000,95748,41393,387.5903413126123,7237,74.40364289593516,5682,58.76885156870117,2319,23.82295191544471,77.35098256499538,79.69810400209829,63.33757887846742,65.07045378568715,77.0660162741105,79.41291048525267,63.23223635088819,64.96768541829793,0.2849662908848813,285.19351684562366,0.105342527579225,102.76836738921702,76.96788,54.18356725825089,80385.8879558842,56589.76402457586,241.91355,149.06980861698295,252098.0072690813,155131.2388947894,264.43183,126.13339041787508,272760.12031582906,129094.0211915106,4115.32489,1840.666886030329,4258692.996198354,1883166.1137130212,1405.94437,602.4452190472259,1456412.551698208,617290.237425035,2277.8864,956.22152164513,2342422.985336508,967415.4576023424,0.3805,100000,0,349854,3653.903997994736,0,0.0,0,0.0,20449,212.9757279525421,0,0.0,24658,254.1671888707858,2090121,0,74985,0,0,0,0,0,37,0.3759869657851861,0,0.0,1,0.0104440823829218,0,0.0,0.07237,0.1901971090670171,0.3204366450186541,0.02319,0.3151945320715036,0.6848054679284963,25.368028691742467,4.617302487598452,0.3257655755015839,0.2016895459345301,0.2370644139387539,0.235480464625132,11.013360686375082,5.495728641292592,24.78513081134391,13122.868810765278,63.93998873886401,13.493670212049263,20.798415100911978,14.98944108305465,14.658462342848114,0.5337909186906019,0.7486910994764397,0.6828741220961643,0.5686711210096511,0.1083707025411061,0.6874546773023931,0.8972972972972973,0.8538812785388128,0.6762820512820513,0.1196911196911196,0.484545665814548,0.6778350515463918,0.6298655343241331,0.5362318840579711,0.1056533827618165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.0047232442403786,0.0069302811685083,0.0092833346875761,0.0118351618183851,0.014017978031375,0.0162689473094056,0.0184725921843585,0.0206666053414282,0.0231401406216418,0.0251347971379953,0.0276024184194048,0.0297540713933212,0.0318710740397487,0.0338680559137566,0.0358859339955142,0.0377012684442143,0.039763824466374,0.0417121528752482,0.043777217510887,0.0577924857241285,0.0716295808095073,0.0848571907897496,0.0979666505456609,0.1102478415332229,0.1257716701902748,0.1392194294198748,0.1517128353570934,0.1634512669315899,0.1757581608899473,0.1897467386269377,0.2019938517492206,0.213881636205396,0.2258057455540355,0.236237117942394,0.247779958093591,0.2583200205556735,0.2686390798906132,0.278459599686652,0.2874264545652648,0.2960514126910606,0.3042022316671935,0.3115516629186886,0.3184852297920786,0.3254339402626113,0.3319369147363233,0.3385980501357896,0.3448578627236403,0.3503381968020317,0.3555402869903015,0.356964586846543,0.3580069799842743,0.3582871835443038,0.3600672697749942,0.3619525860142152,0.3616432884204704,0.361896587350786,0.3629556325251525,0.3642991936867387,0.3645824004585266,0.3657541458278494,0.3665814151747655,0.3677126272398418,0.3694832308175818,0.3704052098408104,0.370482953801001,0.3704732186310154,0.3722556153116103,0.3722010984368399,0.3732045962336419,0.3748681495069938,0.3751204367840702,0.3750475948724457,0.3766750899762616,0.3805526737715741,0.3820760338457871,0.3835125448028674,0.3835001021033286,0.3843148199832542,0.3811188811188811,0.0,2.273421087311026,60.8226866733758,217.02222018864896,326.0530263230919,fqhc8_100Compliance_baseline,24 -100000,95836,41323,387.26574564881673,7205,73.949246629659,5639,58.18272882841521,2294,23.581952502191243,77.51248185563044,79.79874349524053,63.42745123530996,65.11110424681519,77.21779430006531,79.50314004053274,63.31887506986864,65.0046001488855,0.2946875555651331,295.6034547077877,0.1085761654413204,106.50409792968674,77.68398,54.60122905081106,81059.28878500772,56973.61017865005,240.27579,147.6896554659954,250065.91468759128,153456.98429191057,260.07064,124.39043423913029,267071.737134271,126411.64881328052,4110.34128,1841.386876046384,4246894.976835427,1879356.2607437528,1343.61394,587.2184086299408,1382580.2099419844,593330.0995762976,2266.70042,952.873531458382,2332787.929379356,966029.7906882764,0.3795,100000,0,353109,3684.51312659126,0,0.0,0,0.0,20235,210.4637088359281,0,0.0,24340,249.59305480195331,2096439,0,75161,0,0,0,0,0,49,0.5112901206227305,0,0.0,0,0.0,0,0.0,0.07205,0.1898550724637681,0.3183900069396252,0.02294,0.3163670015864622,0.6836329984135379,25.34991387173512,4.562969768695487,0.3325057634332328,0.1966660755453094,0.23142401134953,0.2394041496719276,10.845295525741284,5.209466793313518,24.49802641784606,12985.242256106554,63.24592808960796,12.843816105691667,21.194023649112346,14.559545083135102,14.648543251668835,0.5339599219719808,0.7493237150586114,0.6938666666666666,0.557088122605364,0.1125925925925925,0.6939929328621908,0.8914285714285715,0.8589743589743589,0.7047619047619048,0.1631205673758865,0.4803503787878788,0.6837944664031621,0.6389481165600569,0.51010101010101,0.099250936329588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019630461619411,0.0040712571272318,0.0062335924750909,0.0085539466875019,0.0108901034153477,0.0130275602562798,0.015220622671092,0.017529368575624,0.0196665066933515,0.022098374066878,0.0242588705135425,0.0263052641294649,0.0282564244834211,0.0303298512838985,0.0323711340206185,0.0346013613311711,0.0365997516556291,0.0389715411331709,0.0411767150039473,0.0431197817984967,0.057617503206766,0.0713374597465601,0.0841305600670613,0.0969656229978258,0.1084809300170587,0.1250712972938716,0.1385311668627513,0.1507720447488196,0.1627589298101448,0.1733156265729921,0.1868836238882376,0.2000475326246651,0.212859299156251,0.2238944528784089,0.2350019777611743,0.2467508046943267,0.2576529190857728,0.2677100771884094,0.2785481239804241,0.2871726282337071,0.2960364622396584,0.3041187851099042,0.3107406620891437,0.3172156708125739,0.3234980620155038,0.3295799579589177,0.3349472764709552,0.3401156157298243,0.3453576314498851,0.3503739828848606,0.3511100969153534,0.3520939356113085,0.3539519865225326,0.3545745509068366,0.355260036766886,0.3554545871770159,0.355037458225763,0.3564649085355841,0.3570257251204263,0.3578270192994996,0.3585312769709933,0.3603032882624274,0.3619249496306246,0.3629750660280227,0.3642644659821514,0.3668548240251801,0.3690767392911997,0.369832122275119,0.3714096023481725,0.3739472648563557,0.3758849258240519,0.3782219884271436,0.379827521559805,0.3831316187594554,0.3830920130780009,0.3830337210668547,0.385853066180935,0.3831700979412352,0.3867102396514161,0.3926149208741522,0.0,2.5494394003400176,62.20386170462155,207.0637495298825,322.6803734828231,fqhc8_100Compliance_baseline,25 -100000,95741,41557,391.023699355553,7214,74.07484776636969,5531,57.21686633730586,2252,23.17711325346508,77.31288813594676,79.67094414196423,63.318020272784125,65.06176252543587,77.03253099050055,79.38982780945418,63.213808428622606,64.96011490365233,0.2803571454462172,281.1163325100523,0.1042118441615187,101.6476217835418,77.49434,54.53695409122289,80941.6446454497,56963.00862872008,239.00083,147.95455475102614,249068.95687323093,153973.18781337782,264.07401,126.58597444014332,272461.7561964049,129720.3118825634,4007.54528,1813.899712298734,4144595.502449316,1853404.857310573,1348.99644,592.9286382868665,1390694.4778099246,601022.0383150614,2219.66582,939.9931704687706,2285020.231666684,951246.0260074656,0.38123,100000,0,352247,3679.165665702259,0,0.0,0,0.0,20189,210.2756394856958,0,0.0,24727,254.87513186618065,2086750,0,74949,0,0,0,0,0,41,0.4282386856205805,0,0.0,0,0.0,0,0.0,0.07214,0.1892295989297799,0.3121707790407541,0.02252,0.3201471941122355,0.6798528058877645,25.44160444811857,4.608269638812073,0.3323088049177364,0.1961670583981196,0.2357620683420719,0.2357620683420719,11.214645092020069,5.635413148598424,24.24444794297934,12999.520422076112,62.563583742915526,12.742786131201482,20.81410468638055,14.514183165709326,14.492509759624165,0.5422165973603327,0.7732718894009216,0.6898803046789989,0.5736196319018405,0.1104294478527607,0.6913229018492176,0.9255014326647564,0.831140350877193,0.7129629629629629,0.1407942238267148,0.4913939393939394,0.7010869565217391,0.6432706222865412,0.5275510204081633,0.1022395326192794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572241690129,0.0046219807620186,0.0070719061678791,0.0091719822857839,0.0116353576550279,0.0136048879837067,0.015794840420108,0.0180600504333799,0.0202322775880753,0.0221685217231033,0.0242794598640432,0.0261028505709356,0.028149458506032,0.0302109513411066,0.0324158137999339,0.0344374967701927,0.0363045189081721,0.0382675825430095,0.0401405960774526,0.0421151341495181,0.0569934121921426,0.0708575733478424,0.0837999958052811,0.0966615845644287,0.1085908913563843,0.1247104124572891,0.1381996476556364,0.1508154488162153,0.1633407401076831,0.1746227517937388,0.1882618996338574,0.2012828972276006,0.2136875761266748,0.2254055768873136,0.2359266147937004,0.2469057828895611,0.2570647016133534,0.2668422355774641,0.2763975508071203,0.2858567449537498,0.2945543407764291,0.302490228661034,0.3094336048494033,0.3161695033164214,0.3232222532916732,0.3294892509589649,0.3358020978232264,0.3408726216856422,0.3469258097139745,0.3523568934504285,0.3537049534350114,0.3547288446423893,0.3553207717732139,0.3562646794444283,0.3572217248582512,0.357304408031387,0.3568960850806387,0.358225215410518,0.3595492106031713,0.3604571757179312,0.3613247379929126,0.3617766457056435,0.3630389451734524,0.3636261489022225,0.3648138284994916,0.3661110381939887,0.3659909263194165,0.3680749682337992,0.3672673098751419,0.3691021622056105,0.3743263783335636,0.374959871589085,0.3766405855628471,0.3791309669522644,0.3830633702756464,0.3833035181872391,0.3862400993943158,0.3861913542306904,0.3836038052602126,0.3806990881458966,0.0,1.9945360615606915,62.316854042580566,205.5599052683013,317.1949229296074,fqhc8_100Compliance_baseline,26 -100000,95793,41762,392.1058950027664,7292,75.06811562431493,5626,58.27148121470253,2273,23.415072082511248,77.37208356525132,79.7110892894613,63.35007434272507,65.07933624755464,77.09643734164845,79.43368805731225,63.24908241345522,64.98050489871166,0.2756462236028625,277.401232149046,0.1009919292698526,98.83134884297816,76.85678,54.04372174164036,80232.1463990062,56417.19305339677,238.06492,146.50151512673258,248051.94534047373,152467.431919416,263.07574,125.0782240690274,272291.4200411304,128813.47072076023,4061.90992,1801.1463485560148,4207041.182549873,1847007.46816335,1350.49596,583.6293516695633,1397271.9300992764,596726.3700578999,2237.92514,924.9732772348816,2306236.134164292,937788.704152852,0.38271,100000,0,349349,3646.915745409372,0,0.0,0,0.0,20137,209.723048657,0,0.0,24527,253.68241938346225,2095791,0,75248,0,0,0,0,0,40,0.4175670456087605,0,0.0,1,0.010439176140219,0,0.0,0.07292,0.1905359149225262,0.3117114646187602,0.02273,0.3205847800548231,0.6794152199451768,25.4517724697435,4.579990311531044,0.3336295769640953,0.1974760042659082,0.2381798791325986,0.2307145396373978,10.875358638274228,5.387766439237756,24.08008723630686,13137.945649213509,63.068094488209766,12.86541801161646,21.08527789474673,15.038251071318186,14.079147510528385,0.5419480981158905,0.7416741674167416,0.6867341502397443,0.582089552238806,0.1201848998459167,0.7023186237845924,0.9148264984227128,0.8271334792122538,0.7169811320754716,0.1755102040816326,0.4919561669386803,0.672544080604534,0.6415492957746479,0.5401174168297456,0.1073124406457739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0043996593812091,0.0068092792920785,0.0092136406578559,0.0115936133428251,0.0137339143182928,0.0158599109154104,0.0179704879890605,0.0202133747547416,0.0221574045645276,0.0244617292300755,0.0264986299120475,0.0288019735827722,0.030992586490939,0.0329160393507538,0.0350153947885024,0.0368806218882298,0.0390442709143514,0.0411042881040699,0.0430821768055888,0.0576160460844882,0.0716579329965379,0.0854300331278567,0.0982419637884471,0.1105538756545468,0.1270708308680584,0.1404103781583856,0.1526142852585574,0.1643386864429387,0.1763691292423723,0.1899480404918403,0.2038178005491061,0.2155362596042035,0.2270068763460256,0.2378826039615938,0.2488344536605353,0.2589468987059348,0.2684182715549709,0.2784151456750935,0.2872977522300214,0.2960683839774212,0.3046594562993276,0.3126581380500839,0.3202596376091304,0.3271870941115063,0.3329310047540458,0.3389762596413904,0.3449122360722462,0.3504652938664043,0.3554239121830224,0.3568016363220432,0.3578860559411724,0.3591475798262439,0.3597007798822219,0.360723529586767,0.3603367375103505,0.3611489806917979,0.3624523089067228,0.363575556965716,0.3657317859445519,0.3662495772742644,0.3683782712133228,0.3693212859844505,0.3705555306461014,0.3711382506275342,0.3719272498558624,0.3717602436641572,0.3728990930424304,0.3750617981495868,0.3751751751751752,0.3792218505109757,0.3822445382191122,0.3842261716526469,0.3847922734937912,0.3835863377609108,0.3865887125641332,0.3895384615384615,0.3824413710162357,0.3876603876603877,0.387047619047619,0.0,1.7423630987142875,59.50585623221411,210.02914491052292,331.8627576315624,fqhc8_100Compliance_baseline,27 -100000,95643,41495,388.5699946676704,7337,75.37404723816694,5708,59.07384753719561,2288,23.514527984274856,77.25911226955019,79.65529921380707,63.27736057920528,65.04568857399929,76.96846752185874,79.365106483367,63.169271077102174,64.94036597715053,0.2906447476914451,290.19273044006866,0.1080895021031054,105.322596848751,76.65702,53.96238782679215,80149.11702895141,56420.63488890159,238.52229,146.88835226297013,248767.4686072164,152959.5306163798,269.66399,129.05641744942483,278415.02253170643,132149.09123447977,4126.81775,1864.8114109444884,4271678.544169464,1906657.7979257156,1379.87271,611.8083629051969,1424221.6262559728,621199.5486723301,2257.27032,958.4855696429736,2321290.06827473,968325.4768837652,0.38052,100000,0,348441,3643.1416831341553,0,0.0,0,0.0,20031,208.76593164162563,0,0.0,25171,259.7053626506906,2086446,0,74976,0,0,0,0,0,57,0.5750551530169484,0,0.0,2,0.0209110964733435,0,0.0,0.07337,0.1928150951329759,0.3118440779610195,0.02288,0.3130254818264131,0.6869745181735869,25.519956620340736,4.560390689474391,0.3298878766643308,0.1993693062368605,0.2380868955851436,0.232655921513665,10.98578632173237,5.480803701898425,24.580317178707705,13079.511135835812,64.4947609983,13.242049397552186,21.27368852365542,15.199241560703204,14.779781516389214,0.5411702873160477,0.7794376098418277,0.6909187466808284,0.5533480500367918,0.1121987951807228,0.7020669992872416,0.9303030303030304,0.8881578947368421,0.7068403908794788,0.1806451612903225,0.4887340301974448,0.7178217821782178,0.6278906797477225,0.5085551330798479,0.0913555992141453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.0046035753759417,0.006881432312283,0.0092972687367907,0.0117706902690879,0.0138512618906972,0.0163346044823296,0.0186510407627836,0.0208135267478353,0.0229901529264847,0.0251801880312086,0.0274255321333593,0.0294883003342761,0.0317390005459808,0.0335187459365744,0.0357645063898424,0.0378005448913842,0.0400655996346349,0.0424051422865701,0.0443362591997998,0.0590847815409695,0.0731066120636383,0.0864346620741798,0.0991702468199814,0.110803675150491,0.1268084475417822,0.1398298333386444,0.151932995183496,0.1640713567624221,0.1752942692671191,0.1887582263458841,0.2020527160012138,0.2144320237083524,0.2254274441034633,0.2359502217515059,0.2470058882346406,0.2579363302587982,0.2677972986696456,0.2779990441293611,0.2871727658400304,0.2956645922348133,0.3035211267605633,0.3105569409808811,0.3179974727721283,0.3249566724436741,0.3312957830132647,0.337564408696745,0.3431316189527204,0.3489236688851913,0.3539466535928659,0.3551729268391652,0.3559204792274809,0.3565445397207852,0.358046621336323,0.358379599838379,0.3582239072806855,0.3583734038149221,0.3583955347116718,0.3592526965886218,0.360038089762478,0.3607144202871246,0.3615030004371498,0.3619083744257597,0.3635425777658166,0.3658412974225311,0.36540322791598,0.3652574634341815,0.3666951539898078,0.3675346730823662,0.3693009118541033,0.3723868596370319,0.3742571076725384,0.3743080740599351,0.3779973952348119,0.3819398623809972,0.3831238779174147,0.3880919327471849,0.3877675840978593,0.3845291479820628,0.3902439024390244,0.0,2.3062022732227967,61.93676040040256,217.1172621918718,328.7228986163999,fqhc8_100Compliance_baseline,28 -100000,95625,41507,390.6509803921568,7153,73.6313725490196,5480,56.79477124183006,2231,22.96470588235294,77.28554750318864,79.71642391769426,63.27381344368565,65.07157018523075,77.01559690118096,79.44538936230965,63.17582029337618,64.97508946902884,0.2699506020076825,271.0345553846025,0.0979931503094704,96.4807162019099,78.12728,55.01024299488704,81701.27058823529,57526.63784827068,239.75448,148.27045290529864,250202.5725490196,154535.03984863556,265.25484,126.67210408469928,274305.0039215686,130046.92894811858,3989.21155,1782.7506857739008,4133958.9437908498,1827256.6332494,1344.75676,585.6128181926751,1390077.3960784313,596632.9285848911,2202.02536,911.7702916869972,2268337.5477124183,925972.5203306796,0.37939,100000,0,355124,3713.694117647058,0,0.0,0,0.0,20249,211.2,0,0.0,24826,256.5124183006536,2080970,0,74621,0,0,0,0,0,40,0.4183006535947712,0,0.0,0,0.0,0,0.0,0.07153,0.1885394976145918,0.3118971061093247,0.02231,0.3082036963169791,0.6917963036830209,25.51097723846177,4.636690183138124,0.3282846715328467,0.2029197080291971,0.2301094890510948,0.2386861313868613,11.252083811589038,5.69049443505569,23.69976453801477,12990.054376901991,61.61001097308458,12.988142264586038,20.108500134648764,14.093312912190603,14.420055661659154,0.5478102189781022,0.7760791366906474,0.707615341856587,0.5693893735130848,0.1131498470948012,0.6965875370919882,0.9265536723163842,0.8811188811188811,0.7031802120141343,0.1205673758865248,0.4992739593417231,0.7058047493403694,0.6532846715328468,0.5306748466257669,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024118362383461,0.0045644037367251,0.0066807456443162,0.0088529755552167,0.0110487120009766,0.0131609774979881,0.0152706796829574,0.0170909610983981,0.0190445019484305,0.0210562969183658,0.0232248004759853,0.0253593777293698,0.0275959321475625,0.029727974601342,0.031997934950955,0.0341118305372251,0.036154691094485,0.0384771162413932,0.0405299915692621,0.0426388526727509,0.0577413555211774,0.0716643438714883,0.0854374848952915,0.0988359230971819,0.1104961287801168,0.1259729944400317,0.1397301030708745,0.1524037949045943,0.1641931583508993,0.1754133407818828,0.1890556388706075,0.2018234248297992,0.2134988177092981,0.2247981330733075,0.2356961746224231,0.2468869997558431,0.2572153540050524,0.2664390276885628,0.2755744448737471,0.2845711141173503,0.2932456221625127,0.3010915138313072,0.3090605101205934,0.3164064376651453,0.3227683952902212,0.3294472163216914,0.3355099892211666,0.3413645403090102,0.3468921567354991,0.3524699599465954,0.3525596072931276,0.3534628785479184,0.3540396341463415,0.3540562458365917,0.3549366636400172,0.3553237896289014,0.3551774536904648,0.3571263799637502,0.3587701267557383,0.3595294033250237,0.3611915053561361,0.3615331286520749,0.3626819826643103,0.3629386949106902,0.3651076967606551,0.3668745596409279,0.3682607458013094,0.3710027355909819,0.373267534649307,0.3758282744117763,0.3770648900246418,0.3764574349145504,0.3771331058020478,0.3786792740582583,0.3820372811146676,0.3786212604942651,0.3777982214044771,0.3818921668362157,0.3882964178288214,0.3869992441421013,0.0,1.867449527905275,60.01315983385185,205.0996490921287,315.0981558670646,fqhc8_100Compliance_baseline,29 -100000,95817,41647,390.2230293163009,7242,74.49617500026092,5636,58.319504889529,2301,23.690994291200937,77.35864855579545,79.66490923192762,63.35358995694328,65.05480756869378,77.08241304878767,79.38629689670407,63.25219376889563,64.9551906882298,0.2762355070077831,278.6123352235564,0.1013961880476443,99.61688046396944,77.66726,54.58662353205643,81057.91247899641,56969.66460237372,239.98283,148.3814168459801,249943.8617364351,154343.4848158261,269.92094,129.20332901734935,278735.5479716543,132566.66060084596,4061.39528,1825.565670140184,4202957.54406838,1869520.2522936272,1371.92553,599.6253535155859,1421854.8796142647,615839.0614563029,2258.61536,938.8075592002226,2325972.7188286004,951447.361734455,0.38116,100000,0,353033,3684.4505672271102,0,0.0,0,0.0,20220,210.48456954402664,0,0.0,25120,259.3068035943518,2086878,0,74952,0,0,0,0,0,62,0.6366302430675141,0,0.0,0,0.0,0,0.0,0.07242,0.1899989505719383,0.3177299088649544,0.02301,0.3133955567240699,0.6866044432759301,25.60485771141088,4.530644932285644,0.3300212916962384,0.2047551454932576,0.233498935415188,0.2317246273953158,11.079486819331562,5.593815007660463,24.518163628652275,13009.235072526342,63.64161996354322,13.43990210873132,21.010532137063368,14.745992245633984,14.445193472114555,0.5493257629524485,0.7625649913344887,0.689247311827957,0.5881458966565349,0.1225114854517611,0.7313432835820896,0.9193548387096774,0.8817204301075269,0.7656765676567657,0.1685393258426966,0.4887680302672026,0.6879795396419437,0.625089605734767,0.5350444225074038,0.1106833493743984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024188814444466,0.0049529520201764,0.0074819793789348,0.0096197753356266,0.011694064576433,0.0139260464879711,0.0161247606242105,0.0180755459896157,0.0202480436426046,0.0224738640315882,0.024346525729269,0.0263708535909902,0.028489238197976,0.0308403136512379,0.0328288035633274,0.0350329983578282,0.0371044844070111,0.0395592092304821,0.0414957153985977,0.043495008172231,0.0579760041731872,0.0713986993705957,0.0847221348762132,0.0974230704556919,0.1096684442383491,0.1251783355350066,0.1381302743734362,0.1505409516920032,0.1623869569395359,0.1737466226358451,0.1880141263620311,0.2010904842269245,0.2133418886145882,0.2241075628781165,0.2350777903788771,0.2465858200682836,0.2576078947955971,0.2665091420534458,0.2753540947884511,0.2842821626204415,0.292856812184621,0.3012807005221137,0.3083691571629895,0.3160356427569168,0.3230189138235115,0.3299613871035393,0.3367635644357645,0.3430106021458845,0.3473685574692534,0.3524330321762561,0.3537282060955563,0.3549551038395857,0.3553614203184444,0.356293918625835,0.3574977685212734,0.3575896005150688,0.3582873278761342,0.3592720685111989,0.3606461791740979,0.3611469997128911,0.3614745919078191,0.362847498014297,0.3630690084125746,0.3646736444903643,0.3652554250640375,0.3661387334856723,0.3665038781959207,0.3690759610195854,0.3701066354908421,0.3719213798636181,0.3738356352957371,0.3755697356426618,0.3750238080121897,0.3757323465926611,0.3747169811320754,0.3719360568383659,0.3715603382013835,0.3666188230469551,0.374438202247191,0.3703557312252964,0.0,1.934045311151836,62.45507384814438,214.2609618126216,320.0176798192172,fqhc8_100Compliance_baseline,30 -100000,95858,41591,390.859396190198,7260,74.45387969705189,5637,58.17980763212251,2322,23.84777483360805,77.41454581429173,79.70261305650065,63.37712166936033,65.0678397619469,77.13522112578613,79.4233997443555,63.275364718454014,64.96874164664878,0.2793246885055964,279.21331214514566,0.1017569509063136,99.09811529811918,77.8426,54.76039617764225,81206.15911035072,57126.57908327136,241.18336,148.69766631011314,251009.77487533644,154527.7976904516,270.55328,129.62401706812187,277809.4264432807,131883.10309840055,4120.67162,1836.051451729058,4256672.077447892,1873334.0479970984,1389.57372,600.2930001723931,1431727.8265768115,608351.6012020722,2299.33598,944.69047832712,2363340.044649377,954540.0011011756,0.37984,100000,0,353830,3691.189050470488,0,0.0,0,0.0,20297,211.09349245759356,0,0.0,25249,259.07070875670263,2088350,0,75023,0,0,0,0,0,51,0.5320369713534603,0,0.0,0,0.0,0,0.0,0.0726,0.1911331086773378,0.3198347107438016,0.02322,0.3247706422018349,0.6752293577981652,25.270412442403217,4.595979601330045,0.3269469576015611,0.2013482348767074,0.2268937378037963,0.244811069717935,11.168245739493331,5.493153280678335,24.54992349056286,12983.282304068343,63.248644668632274,13.171020479472588,20.826316830096854,14.295984837808913,14.955322521253922,0.5407131452900479,0.7541850220264317,0.6966901790558871,0.5949960906958561,0.1065217391304347,0.7016011644832606,0.9112426035502958,0.8455114822546973,0.7372013651877133,0.1325757575757575,0.4888576120103213,0.6875784190715182,0.6444281524926686,0.552738336713996,0.1003584229390681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024598876347623,0.0047920571399625,0.0072401310118945,0.0094004426126327,0.0113934342921028,0.0135329012301712,0.0155969845150774,0.0176771798114978,0.0197863038326387,0.0221954013583176,0.0243070493516071,0.0263724766125061,0.0285238692176486,0.0304374678332475,0.0323328968667195,0.0341355091923156,0.036231959029538,0.0381789352595525,0.0400805555843913,0.042084897908237,0.0564597691561792,0.0702484089080249,0.0840579102851515,0.097008578418505,0.1089044269407354,0.1239411926237299,0.1378254697993686,0.1503852898974331,0.1631549187586015,0.1751236961038404,0.1887277578156938,0.2022878891087396,0.2148662450833387,0.2261328496344941,0.2366251978195885,0.2481990904161733,0.2582983041020438,0.2683949119021934,0.2775900390093441,0.2864012640401195,0.2942645987300926,0.3022956647838239,0.3099584718590646,0.3170006712052929,0.3233460149992099,0.3289348740273033,0.3348907120936932,0.3397766487119736,0.3454807280652819,0.350035033910181,0.3511382475435688,0.3516789246067818,0.3530763591247462,0.3544182951701792,0.3545853477129044,0.3535319462119934,0.3544949247018955,0.3555858534421867,0.3563072923792584,0.3578836507738169,0.3588662845153797,0.3602286663765478,0.3618951824144507,0.3625447227191413,0.3638114961350446,0.365209447996868,0.3669005247547342,0.3677601632396798,0.3696959043768676,0.3737558722828251,0.3740266836664997,0.3752325272389051,0.3772530302078754,0.378345591022822,0.3816629129129129,0.3823319876513892,0.3865002311604253,0.3914744645799011,0.3851501668520578,0.388631090487239,0.0,2.4491397525392213,60.40256513585506,209.0534046705145,328.4343327763809,fqhc8_100Compliance_baseline,31 -100000,95720,41731,393.25114918512327,7220,74.27914751358128,5599,58.0234015879649,2189,22.607605516088597,77.36002699221102,79.7307336139442,63.33690834044432,65.08797102756836,77.08913360806702,79.45704347153544,63.237847490816,64.99006782584307,0.2708933841440029,273.69014240875345,0.0990608496283229,97.90320172528766,76.9208,54.06714920342123,80360.21730045968,56484.69411138866,238.71371,147.63562025296366,248865.8692018387,153715.33666210162,265.23772,126.93115409650848,273895.43460091937,130229.81347305948,4090.44364,1832.3482970229268,4241877.862515671,1882814.6124351516,1358.23976,592.5805017742157,1407591.7467613874,607729.397066,2168.15132,904.6519311114022,2240818.031759298,922834.4973545136,0.38131,100000,0,349640,3652.737150020894,0,0.0,0,0.0,20068,209.1725867112411,0,0.0,24759,255.45340576681988,2092973,0,75087,0,0,0,0,0,48,0.4910154617634768,0,0.0,0,0.0,0,0.0,0.0722,0.1893472502688101,0.303185595567867,0.02189,0.3173431734317343,0.6826568265682657,25.198237218711448,4.599399646793088,0.3298803357742454,0.1948562243257724,0.235934988390784,0.239328451509198,11.056229619882563,5.416917318981411,23.342122007600288,13049.430427250458,63.09737512832298,12.791585735485992,20.947104335150787,14.642386178843662,14.716298878842538,0.5379532059296303,0.768102658111824,0.6886843530048727,0.5715367146101439,0.1097014925373134,0.7047075606276747,0.930635838150289,0.8577680525164114,0.7492163009404389,0.125,0.48224922563736,0.6926174496644295,0.6330935251798561,0.5149700598802395,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017471716077,0.0047643665926669,0.0068396537552134,0.0087669395964972,0.0111273851661987,0.0129933607592358,0.0151580020387359,0.0175039294535507,0.0198108867876309,0.0221237126067282,0.0241341836002378,0.026056424787483,0.0280842837016546,0.0303745056031641,0.0323562489037463,0.0342114513761088,0.0363203149280016,0.0380607394183463,0.0399604763638254,0.0418867806570598,0.0567582526603799,0.070656326205951,0.0834076389690224,0.0959382427799162,0.1081556919054547,0.1236666560950598,0.137489524658159,0.1512158782525408,0.1642068391037826,0.1751582108763273,0.1891434788697497,0.2016165682009998,0.2136957419523116,0.2252634340431113,0.2367651263553786,0.2480535158542933,0.2589307628801571,0.2683826423326474,0.2779717901038596,0.2869804190999656,0.2954734699542027,0.3032332725487445,0.3108910656823774,0.3178529503365995,0.3251573243919625,0.3308809937520796,0.3367882133513588,0.3433158617882041,0.349366695158909,0.3547841930841442,0.355915297416059,0.3573407202216066,0.357998023436397,0.3584569475026075,0.3587658953512612,0.3588118872643029,0.3591100687731753,0.3601569683436227,0.3603632880648582,0.3614748387788278,0.3624988275021105,0.3633089253908569,0.3650524464543684,0.3671845311277523,0.3688185491629786,0.3685791136761288,0.3708151070703605,0.3713553854911138,0.3735693090292497,0.377784008972921,0.3790122321346454,0.3784145688269952,0.3791838025941157,0.3802374569130601,0.380566037735849,0.3837734951225315,0.3838833461243284,0.3869132290184922,0.3899336283185841,0.3929811029695333,0.0,1.7809664554045368,62.37605790027439,209.44541698379723,320.108917345214,fqhc8_100Compliance_baseline,32 -100000,95734,41312,388.0230639062402,7143,73.21327845906366,5568,57.398625357762135,2328,23.753316481083,77.33346816806463,79.69614781540216,63.32120940122799,65.07043465769085,77.04566803222636,79.41440113932393,63.21495970915699,64.97033785362278,0.2878001358382676,281.7466760782281,0.1062496920709961,100.0968040680732,77.484,54.51112120895323,80936.76227881422,56940.18970162453,238.1102,146.1548454756423,247989.7110744354,151936.73666162734,263.30572,125.81123964808285,270729.93920655147,127948.85823694443,4089.59222,1825.466472141601,4218205.141329099,1853389.8553745367,1382.7605,599.4502958676877,1425023.8473269686,606886.4690275246,2294.55556,951.9859604794774,2344865.523220591,949968.8689905152,0.37823,100000,0,352200,3678.943739946101,0,0.0,0,0.0,20042,208.5779346940481,0,0.0,24526,251.91676938182883,2091455,0,75024,0,0,0,0,0,44,0.4596068272505066,0,0.0,0,0.0,0,0.0,0.07143,0.1888533432038706,0.3259134817303654,0.02328,0.3187250996015936,0.6812749003984063,25.26526398047631,4.682638122611685,0.334051724137931,0.184985632183908,0.2341954022988505,0.2467672413793103,11.057831548609316,5.487603456408991,24.88045648041838,12966.562040658897,62.74960794184948,12.021359642025391,21.108651937116797,14.591467068442093,15.028129294265216,0.5332255747126436,0.7466019417475728,0.6967741935483871,0.5651840490797546,0.1215429403202329,0.6924187725631769,0.909967845659164,0.8641975308641975,0.7021943573667712,0.1189591078066914,0.4805163758068372,0.6759388038942976,0.6375545851528385,0.5208121827411167,0.1221719457013574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682962662748,0.0042185535228978,0.0065464953413312,0.0087585604259383,0.0107809035617664,0.0129010579478459,0.0149043754842392,0.0171562123655365,0.0193471239932954,0.0214652022151024,0.0236306039387757,0.0257378984651711,0.0280023035313959,0.0303298695146191,0.0323762161716001,0.0343059733118339,0.0363562937497411,0.0384148429474208,0.0404445784510454,0.0425077599316709,0.0571974402605672,0.0718315313523753,0.0848217096564316,0.0981235669057786,0.1105497959226721,0.1264038408663099,0.1399255117090924,0.1525508520580314,0.1639020326201895,0.1749747967654061,0.1885052518179369,0.201679308367327,0.213952426012334,0.2252267034205143,0.2360454115421003,0.2470433203401842,0.2569323509711989,0.2675249552662083,0.2770659070015548,0.2860529027825489,0.2946871638269077,0.3021019756465593,0.3091423297202632,0.3165300349968838,0.3223103360334212,0.3284925972458306,0.3341508890918874,0.339517719666603,0.3447203761999145,0.349893635294584,0.350912696806573,0.3524744838225369,0.3537493652316199,0.3543266027405197,0.3545705132980705,0.3547781963558084,0.3546172549144246,0.3552805062957347,0.3564787814333253,0.3567098324783872,0.3579596749924766,0.3586253422754871,0.3600067243842985,0.3600853069929285,0.3606489989360673,0.3618915086908575,0.3620300214438885,0.3643893648635832,0.3649934557288903,0.3677895156468009,0.3692103698962096,0.3708495963214457,0.3744518589132507,0.3769088385006941,0.378046458492003,0.3855465440019368,0.3863141524105754,0.3958160729080364,0.4003978402955385,0.3923951391611133,0.0,2.9331127952470197,60.62353060385076,210.88800349781252,315.4087518160499,fqhc8_100Compliance_baseline,33 -100000,95803,41659,391.0315960878052,7136,73.31711950565223,5502,56.90844754339635,2193,22.546266818366856,77.34149214859087,79.68203806174175,63.33904717832892,65.0728592074043,77.07398920504392,79.41375753544644,63.2407815942421,64.97675861848477,0.2675029435469582,268.28052629531385,0.0982655840868176,96.10058891954054,78.5125,55.24979819024546,81952.02655449204,57670.21720639799,238.87493,147.2641114711616,248834.32669123096,153212.07558549076,263.79768,125.97378986490963,272245.46204189846,129005.72036978247,3957.10543,1769.9392883189034,4096299.165996889,1813555.1996675616,1327.39883,571.7651146180549,1372610.033088734,583949.7073612133,2156.89846,896.865872324981,2220377.295074267,908853.5092890352,0.38163,100000,0,356875,3725.092116113274,0,0.0,0,0.0,20158,209.8681669676315,0,0.0,24663,254.3866058474161,2088440,0,74875,0,0,0,0,0,41,0.4175234595993862,0,0.0,1,0.0104380864899846,0,0.0,0.07136,0.1869873961690643,0.3073150224215246,0.02193,0.3207396567779699,0.6792603432220301,25.365279585913186,4.523406365231672,0.3298800436205016,0.2077426390403489,0.2335514358415121,0.2288258814976372,11.112196571533406,5.577445907494622,23.39219363958272,13059.71682151786,62.18251015583857,13.407172289622128,20.7182331159424,14.222416953065949,13.83468779720811,0.5507088331515813,0.7681539807524059,0.7035812672176308,0.5712062256809338,0.1119936457505957,0.6967930029154519,0.8895184135977338,0.8571428571428571,0.7086330935251799,0.099601593625498,0.502179176755448,0.7139240506329114,0.6467924528301887,0.5332671300893744,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969032689405,0.0044402542501748,0.0065858237353493,0.0087489330569442,0.0110596733987892,0.0133135039879394,0.0155536063968668,0.0176658599597667,0.0198071436605892,0.0220768183167962,0.024095397266454,0.0264833336756279,0.0285737795972105,0.0304310202736113,0.0322447505546097,0.0344506806412601,0.0365829666062645,0.0385999854770277,0.0408782484907052,0.0427862043119332,0.0574892533700596,0.0711193826979778,0.0847244490552988,0.0974148802017654,0.1095806679383279,0.1251466562377786,0.1390060847626518,0.1512505848823854,0.1632995015955346,0.1750677913420006,0.1884802101161451,0.2016823076590407,0.2140257482753001,0.2262886992251959,0.2367590627714433,0.2474841966588803,0.2578056202695322,0.2683726518375459,0.2783528505741919,0.2870699610120851,0.2951643073228183,0.3029892573563755,0.3105902100547301,0.3177252319664771,0.3245906812471933,0.3309977958108091,0.3373094764744864,0.3436547062411059,0.3489662128088754,0.3545782624729993,0.3555367163215049,0.3567557902844254,0.3584836527621195,0.3585153911773636,0.3591978816458897,0.3582245110661516,0.3577400878960478,0.3596291905420536,0.3607563471791267,0.3621323199913961,0.3623463876394979,0.3640571303708707,0.364971037388099,0.3669964028776978,0.368494975178593,0.3698813523729525,0.3697726028186875,0.3728494966229132,0.3748266666666666,0.3768313731786617,0.3783746301775147,0.3804295171968351,0.3790569895221058,0.3777433113609926,0.3789211935730681,0.3819670157698326,0.3855932203389831,0.3867334167709637,0.3905762134544422,0.3828460038986355,0.0,2.032163168521435,60.70547775954508,209.54463126493064,313.14027489641893,fqhc8_100Compliance_baseline,34 -100000,95696,41229,386.714178231065,7168,73.39909714094634,5601,57.881207155993984,2297,23.606002340745697,77.3419109081298,79.71313117925273,63.33255108723839,65.08207444308103,77.06184416670966,79.43063032010659,63.22845872497198,64.97922040491781,0.2800667414201427,282.50085914613976,0.1040923622664067,102.85403816321548,77.4972,54.50345993325676,80982.69520147133,56954.79427902604,237.18562,146.13371693389232,247221.66025748203,152074.62896452547,266.64382,127.6489647130188,274077.3595552584,129894.29866310448,4077.37323,1845.1898763996703,4219109.576157833,1886532.0874432272,1375.70819,605.0709518173219,1422544.3801203812,617247.1491152416,2269.59004,953.487161120902,2335403.151646882,968331.8021375836,0.37739,100000,0,352260,3681.031600066879,0,0.0,0,0.0,19990,208.23231901019895,0,0.0,24907,255.7578164186591,2090811,0,75006,0,0,0,0,0,34,0.3552917572312322,0,0.0,1,0.0104497575656244,0,0.0,0.07168,0.1899361403322822,0.3204520089285714,0.02297,0.3205653150178312,0.6794346849821689,25.378765588804164,4.6210317440122,0.3251205141938939,0.1988930548116407,0.2346009641135511,0.2413854668809141,11.182827892918064,5.607402238920935,24.469455204331837,12936.68138896374,63.26937917460769,13.239984528828552,20.49699080643497,14.603013216763284,14.929390622580897,0.5393679700053562,0.7648114901256733,0.6908292147171884,0.5791476407914764,0.1109467455621301,0.6835443037974683,0.9135135135135136,0.8574712643678161,0.7326732673267327,0.1242038216560509,0.4903086862885857,0.6908602150537635,0.6385281385281385,0.533135509396637,0.1069364161849711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0046620046620046,0.0068269425847027,0.0090294141545461,0.0112762842152356,0.0136637615052537,0.015933208966635,0.0180758553115048,0.0203702000224859,0.0225062943933842,0.0246440250540753,0.0266870661683164,0.028742428760939,0.0306711174300962,0.0328665627870019,0.0348057103280027,0.0370028997514498,0.0391859777295793,0.0412997140629061,0.0431434258381183,0.0570136502731099,0.0711048306903229,0.0846989949010638,0.0976587151331566,0.1098289065631526,0.1250449687863718,0.1371535882527691,0.1494048506270894,0.1611731395907901,0.1719672095967724,0.1852546079350203,0.1979153136771009,0.2105291788154401,0.2218017564774206,0.2334517772081715,0.2446213639534497,0.2551003335155213,0.2651622478580584,0.2754297384693935,0.2840966338447446,0.2926682483652566,0.300031608152562,0.3082178804026051,0.3156083641072371,0.3220915954433272,0.328207343412527,0.3338934169278997,0.3396942675159236,0.3448320564176357,0.3497802821362119,0.351557130728907,0.3521316709327609,0.3528484131677508,0.3544985772680658,0.3548981441583335,0.3547477903895348,0.3552923291315639,0.3560369481608099,0.3568272886057742,0.358185694068753,0.3590365523465704,0.3598103964617917,0.3610150914762667,0.3620720680192541,0.3629020556227327,0.3648400629260618,0.3664925972684494,0.3697971069540721,0.3722899248972651,0.3738816449348044,0.3750172279138145,0.3768045939998927,0.3776845850806964,0.3805118717237126,0.3810205054840248,0.3812552502100084,0.3813939112965538,0.3872498452651124,0.3907787461343829,0.3940563489000386,0.0,2.5564094823826324,62.40810215781413,212.792013356155,313.99565923128506,fqhc8_100Compliance_baseline,35 -100000,95704,41373,388.3327760595169,7188,73.77957034188749,5590,57.78232884727912,2219,22.789016133076988,77.33810060160408,79.71878257603771,63.31256206328344,65.0740735399991,77.06568912032812,79.44826323985043,63.21240646622287,64.97737314883491,0.2724114812759666,270.5193361872773,0.1001555970605636,96.70039116419105,77.15884,54.28172277949719,80622.37733010114,56718.342785565066,240.29093,148.65020852410908,250377.91523865247,154628.59353508262,268.11137,128.67059392008375,275833.3716459082,131261.94976861076,4062.41513,1807.593497064356,4204351.113851041,1848718.7393505,1359.95483,588.3278506209281,1406454.0458079078,600597.7669855725,2180.3034,903.9708043022828,2241436.7215581373,913259.378936762,0.37951,100000,0,350722,3664.653515004598,0,0.0,0,0.0,20261,211.0465602273677,0,0.0,25054,257.49184987043384,2087504,0,74923,0,0,0,0,0,52,0.5328930870183065,0,0.0,1,0.0104488840591824,0,0.0,0.07188,0.1894021237912044,0.308708959376739,0.02219,0.3251525603608384,0.6748474396391616,25.35600431154345,4.529926271906048,0.3391771019677996,0.1976744186046511,0.2305903398926654,0.2325581395348837,11.162570913863265,5.689543979291441,23.457786888205604,12963.30514993332,62.84354732384334,12.975879512906715,21.540573078131303,14.292879506166653,14.034215226638658,0.5520572450805009,0.7628959276018099,0.7146624472573839,0.5880527540729248,0.1,0.7269399707174231,0.9246376811594202,0.8823529411764706,0.7278911564625851,0.1593625498007968,0.4955018939393939,0.6894736842105263,0.6584507042253521,0.5467336683417086,0.0857959961868446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0043619395414891,0.0067618332081141,0.0088724922251356,0.0108871501103977,0.0132614917650414,0.015819105317912,0.0180170978581715,0.0199212558163317,0.0222904827727435,0.0243234651708897,0.0265641204678242,0.0285837668880709,0.0309555438845809,0.0328770232212674,0.0352595899470899,0.037376791186946,0.0392584062166059,0.0411069987940283,0.0430334913276733,0.0576157902981567,0.0715721374285534,0.0847542996253895,0.0980930442922806,0.1099568651852476,0.1253729132725387,0.1390156419126854,0.1518236515627496,0.1635316247354808,0.1741038378592963,0.1875505080435743,0.2012818292049194,0.2137344755145802,0.2254781809427933,0.2360690740598069,0.2467415879771246,0.2569804324517512,0.2667582201109897,0.2760841416596624,0.2844693147417668,0.2930702933135629,0.3005903574942604,0.3085008057635794,0.3158728064388442,0.3218129415913706,0.3281840408979773,0.3339311244325165,0.3389534364677524,0.3445578716614997,0.3507272415023052,0.3512166204090431,0.3519156085603327,0.352133523167792,0.3534132481166042,0.3543699428843408,0.3542734386987878,0.3541673271407285,0.3549336050486458,0.3569191806841322,0.3575133240333369,0.3586631849861922,0.3596055211200665,0.3595486731241989,0.3599856257299434,0.3608677815584353,0.3631411592994162,0.3637167132348748,0.3666761211433614,0.3669312355130997,0.3719306596850331,0.3757317239188637,0.375112427913867,0.3789711134782881,0.3789999243513125,0.3780978210043954,0.3788129581461338,0.3798848833686761,0.3744995996797438,0.3675236806495264,0.3670694864048338,0.0,2.4028271567138737,60.14765259902374,211.3186543367549,320.80758762856624,fqhc8_100Compliance_baseline,36 -100000,95638,41525,390.0437064765051,7197,73.91413454902863,5627,58.14634350362826,2324,23.82944018068132,77.27782633283482,79.68835356421408,63.2892740309558,65.07198778218914,76.98841248729981,79.40066186476389,63.181955290347375,64.96857337233995,0.2894138455350088,287.6916994501926,0.1073187406084201,103.4144098491936,76.28984,53.67864060018838,79769.38037181873,56126.89579475563,237.34114,145.93320493668415,247497.7728517953,151920.76887501217,262.6574,125.20211366115836,270102.3651686568,127439.47029783984,4069.33037,1826.5186412512132,4207652.083899705,1862546.8655254336,1374.66438,600.5461208793807,1417032.2361404465,607606.8412967443,2294.63778,960.960891396693,2354938.476337857,966889.8595435156,0.38085,100000,0,346772,3625.88092599176,0,0.0,0,0.0,19986,208.25404128066248,0,0.0,24574,252.52514690813277,2094922,0,75197,0,0,0,0,0,45,0.4600681737384721,0,0.0,0,0.0,0,0.0,0.07197,0.188972036234738,0.322912324579686,0.02324,0.3161102278749337,0.6838897721250663,25.314552594834225,4.495344932419153,0.3312599964457082,0.2033054913808423,0.2278301048516083,0.2376044073218411,11.078109822171111,5.604282836264627,24.785707138917267,13059.83253298744,63.52230047532939,13.33162946822406,21.144765691939018,14.240020511370778,14.805884803795536,0.5343877732361827,0.7534965034965035,0.6856223175965666,0.5600624024960998,0.1114435302916978,0.6787527193618564,0.8991097922848664,0.8458244111349036,0.6813559322033899,0.1321428571428571,0.4875235404896422,0.6926889714993805,0.6320687186828919,0.5238095238095238,0.1059602649006622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024420890501185,0.0047359240629563,0.0071061661218605,0.009339715641737,0.0114044458009054,0.0134982324955939,0.0158898521162672,0.0181090218268356,0.0205396779934944,0.0226078405261163,0.0250358974358974,0.0270350778080221,0.0291094304676647,0.0309707607160893,0.0327999174065661,0.0351247362541889,0.0371705992684013,0.0393333679455895,0.0412395808401927,0.0432407069495855,0.0576131257184658,0.0717741935483871,0.0856836956407645,0.0984909075601953,0.1106268467707893,0.1261089584789006,0.13935209771641,0.1520986286189223,0.1641725587514841,0.1752875106037991,0.1885751239491269,0.2019646280311481,0.2141122930026456,0.2254088490925411,0.236722423494951,0.2478495100430097,0.2579884961188362,0.2674688217549862,0.2764981666685586,0.2861101251474174,0.2941271732466541,0.3026649671995042,0.3105872328339132,0.3180199302082959,0.3241015416038516,0.330823819808701,0.3366169116817686,0.3430897831239328,0.3483802305056588,0.3537816903270151,0.3547903585173182,0.3552875183066677,0.3563968298896122,0.3576736625156028,0.3580217417273922,0.3579741379310345,0.3578082453542254,0.3590285808689906,0.360622206943967,0.3610078479966956,0.3619201929236218,0.3634555327909614,0.3648472075869336,0.3662038285252089,0.3667641867549989,0.3675372645587195,0.3691238549234701,0.3695790410784688,0.3712523617696339,0.3735134045555331,0.3727982987379224,0.3754708858034657,0.377097288676236,0.3782150604276417,0.3802978235967926,0.379949146385761,0.3837846298325246,0.3851774530271398,0.3918112027295991,0.398909232567199,0.0,2.740147840190554,60.42879525784701,215.2426702984364,322.1124434287106,fqhc8_100Compliance_baseline,37 -100000,95812,41634,391.44366050181605,7283,74.61487078862773,5699,58.83396651776396,2293,23.535674028305436,77.39792083527668,79.70237880000211,63.37134666233783,65.07187368657058,77.11060369205475,79.41606888585065,63.26529152000786,64.96919768513351,0.2873171432219266,286.3099141514596,0.1060551423299642,102.67600143707512,76.55296,53.89423390615583,79899.13580762327,56249.98320268424,238.2106,146.76832741490972,247969.61758443617,152532.33802193883,270.84181,129.50105672314217,278806.443869244,132181.20376980706,4092.88192,1854.714926437167,4229955.256126581,1894151.379473749,1417.30141,624.4631328745827,1461825.3767795265,634527.6217332612,2251.40412,946.710346122633,2313304.3251367263,956400.9962553806,0.3822,100000,0,347968,3631.778900346512,0,0.0,0,0.0,20049,208.55425207698408,0,0.0,25377,261.00070972320793,2096571,0,75211,0,0,0,0,0,49,0.5009810879639294,0,0.0,0,0.0,0,0.0,0.07283,0.1905546834118262,0.3148427845667993,0.02293,0.3065569487983281,0.6934430512016719,25.30030925332513,4.561993142830784,0.3151430075451834,0.2153009299877171,0.2381119494648184,0.2314441130022811,11.271688752544962,5.711597876987055,24.543162837774823,13065.904676649756,64.59447219289756,14.262902176461395,20.41257771372056,15.24093585549855,14.67805644721705,0.5667660993156695,0.7791361043194784,0.7193763919821826,0.6072218128224024,0.1197877179681577,0.7032742155525239,0.912,0.8846153846153846,0.7151702786377709,0.1466666666666666,0.5194897236002834,0.7206572769953051,0.661144578313253,0.5735009671179884,0.1118743866535819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021462703490726,0.0046003100649515,0.0068867589634362,0.0090574007696759,0.0113044892648015,0.0135250656408377,0.0159870391881151,0.0180158122927824,0.0198929235547745,0.0221194573468928,0.0240354076593652,0.0259451141318286,0.0279447269738531,0.0299250843829752,0.0319318896298663,0.0341555585383733,0.0360132010469795,0.0378524046434494,0.0398965721347054,0.0421922484492735,0.0572483648540104,0.0705776531988997,0.0847777533108937,0.0975312276569794,0.109990196388476,0.1264669189943543,0.1406301366957591,0.1528234605354196,0.1645619658119658,0.1758983159927062,0.1903223374581327,0.2027928912156973,0.215157807760467,0.2264014782903441,0.2370661211561304,0.2487930194445674,0.2596169932745178,0.2708890938125548,0.2801800882296238,0.290152772214911,0.2978585634336987,0.3048712075171801,0.3116082625464354,0.3182863163944633,0.3239158124583005,0.3305268340718857,0.3364038596140385,0.3421413864104324,0.3466666666666667,0.3518704030791131,0.3533215044223997,0.3546911069583379,0.3555965317268172,0.3565715770630017,0.3576657509837404,0.3577229555083125,0.3573778790179701,0.3584738388796769,0.3591900950817429,0.3608651317554875,0.3614193185018304,0.3618593044442684,0.362774765687387,0.3633379056014031,0.3650920542635659,0.3670008924352984,0.3685437899464501,0.3708923174805154,0.3728345201402912,0.376165139816778,0.3779538440278225,0.3806066473055824,0.3832354443309499,0.3857605677260105,0.3875776397515528,0.3893432764012509,0.3897937024972855,0.3935562805872757,0.3998348926802421,0.4006092916984006,0.0,2.401096997395661,64.6934644182202,216.578486989714,318.1499440786287,fqhc8_100Compliance_baseline,38 -100000,95550,41522,390.8006279434851,7232,74.63108320251177,5631,58.31501831501832,2322,23.92464678178964,77.19945181010942,79.67205537506358,63.224607941291474,65.05427532587564,76.91168361394256,79.38347002876361,63.1196121273007,64.95195919309056,0.2877681961668656,288.5853462999677,0.1049958139907758,102.31613278507724,76.92872,54.10948374555794,80511.48090005234,56629.49633234739,238.51692,146.8603131414095,249014.610151753,153089.32824846625,263.76952,126.07689182074472,272276.70329670334,129039.75766273684,4107.78958,1842.3483011070437,4257487.315541602,1886538.828997429,1391.7974,603.6812490983,1443458.137100994,618637.4663509154,2292.58744,956.7802513341696,2364472.715855573,969991.7133539158,0.38034,100000,0,349676,3659.6127681841967,0,0.0,0,0.0,20072,209.45054945054943,0,0.0,24689,254.72527472527477,2086000,0,74852,0,0,0,0,0,41,0.4186289900575615,0,0.0,0,0.0,0,0.0,0.07232,0.1901456591470789,0.3210730088495575,0.02322,0.3108609271523179,0.6891390728476822,25.29746361562932,4.661520612160207,0.3290712129284319,0.1946368318238323,0.2315752086663114,0.2447167465814242,11.177336701295957,5.621580923746016,25.01129199830308,13071.73555932403,63.69885055301216,12.849316733608946,20.80760557919008,14.675304287054304,15.366623953158822,0.5434203516249334,0.7691605839416058,0.696708041014571,0.575920245398773,0.1269956458635704,0.7042971595047341,0.9212827988338192,0.8891509433962265,0.7348242811501597,0.1501706484641638,0.49154532644434,0.699867197875166,0.6396081175647306,0.5257315842583249,0.12073732718894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021794001074494,0.0043322984517359,0.0066617921845803,0.0089271189197982,0.0110864519281671,0.01331321739485,0.0152982599377455,0.0176680972818311,0.0198833401555464,0.0220334293239324,0.0245439707648562,0.0269091956032204,0.0289283433914852,0.0309460198260833,0.0330271057880106,0.0351416534691384,0.0370024682139671,0.0390035542807258,0.0412265900047913,0.0428963659710405,0.0570753088615275,0.0713207072295979,0.0847288361874126,0.0980706209628981,0.110441703396011,0.1264961251815493,0.13934984256659,0.1523866437588705,0.1645366214232916,0.1756134804395982,0.1891900647948164,0.203023265908499,0.215078862976941,0.2257601017856359,0.236315278329581,0.2476867536795334,0.2578533299014067,0.2686348196047894,0.2785187545520757,0.2872534717835031,0.2958507812409377,0.3041876832844575,0.3117205207010715,0.3189556775720585,0.3256493981188167,0.3315403543915619,0.3373306181964451,0.3423509726533063,0.3478170397055572,0.3535882313961964,0.3547859027261043,0.3558712958867757,0.3567063682915098,0.3579422566082652,0.3582743058668818,0.3580903082682442,0.3586146496815287,0.359121409446997,0.3598237036016803,0.3613471092231262,0.3621941534621639,0.3642926946012245,0.3662141843671248,0.3668413207461945,0.3666220979700985,0.3671757537390203,0.3681719809551291,0.3699510209274219,0.3720054027155755,0.374519692603266,0.3754512635379061,0.3757068174543903,0.3752290679304897,0.377959996934631,0.3811899830540388,0.3831006086645184,0.385284689360403,0.3926638604930847,0.3972640218878249,0.4046065259117082,0.0,2.3946320126658995,60.53694430811529,214.8837974765869,326.31436838897616,fqhc8_100Compliance_baseline,39 -100000,95676,41670,390.3695806680881,7212,74.02065303733434,5649,58.39499979096116,2241,23.0569839876249,77.33990302576841,79.73229622684723,63.32261558699434,65.08983487409716,77.06138741908244,79.4532679891816,63.22019571542575,64.99027354531547,0.2785156066859713,279.0282376656279,0.1024198715685855,99.56132878168944,76.93554,54.17906692482398,80412.57995735608,56627.646353133474,240.03906,147.73340256979165,250186.7971069025,153710.1324085015,270.81527,129.53458868714236,279244.94126008614,132438.7949425482,4087.69195,1828.2908160778031,4227256.62653121,1865827.6912725172,1372.73863,603.0315281772457,1416187.1942806975,611783.3121698906,2217.60386,920.3214989109704,2282468.414231364,929893.311641088,0.38173,100000,0,349707,3655.1172707889127,0,0.0,0,0.0,20166,210.05267778753293,0,0.0,25254,260.1070278857812,2092020,0,75062,0,0,0,0,0,56,0.585308750365818,0,0.0,0,0.0,0,0.0,0.07212,0.1889293479684594,0.3107321131447587,0.02241,0.3181220410310363,0.6818779589689637,25.239883361188244,4.701943291418671,0.3319171534784917,0.1956098424499911,0.2393343954682244,0.2331386086032926,11.042759006702656,5.311707844503316,23.85836835089573,13116.43053988762,63.53557529900066,13.02916332905715,21.09214745543596,14.99717507497466,14.417089439532912,0.548415648787396,0.7846153846153846,0.6778666666666666,0.5865384615384616,0.1268033409263477,0.720203488372093,0.9213483146067416,0.8446808510638298,0.7491408934707904,0.1853281853281853,0.4930961853498712,0.719626168224299,0.6220640569395017,0.5419415645617343,0.1124763705103969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334447483034,0.0050783031777406,0.0074682144270479,0.0099540893024011,0.0122326957688905,0.0146073820721105,0.0167774289558445,0.0192291989875071,0.0215489041543997,0.0237671190812503,0.0257624686042339,0.0276437619331129,0.0297184460029204,0.0318081621721843,0.0339563830775423,0.0361060848885901,0.0382830145672309,0.0401926590267397,0.0423099330032041,0.0442542455928192,0.0590982219343515,0.0733528075300227,0.0864040794057162,0.098819593485671,0.110520319027725,0.1256242065171392,0.1390103127785086,0.15190479738576,0.1634375066754961,0.1752691169532959,0.1892049064690869,0.2026705332409972,0.2152877463134542,0.2265054445270477,0.237720524305823,0.2493991249930774,0.259696063554405,0.2694324421640112,0.2786634140806717,0.2873605351783546,0.2957238059977786,0.3038947368421053,0.3113380590038223,0.3183533612086213,0.3253648350047349,0.3316907307938698,0.3375965160369921,0.3433097919450277,0.3488971826970427,0.3539030511161009,0.3548113093071229,0.355830164765526,0.3566762145306261,0.3570756151606876,0.3574566956107297,0.3578908633722267,0.3578313253012048,0.3592189890283421,0.3598269848868221,0.3608778012080489,0.3619699812382739,0.3633788869082986,0.3634531407457171,0.3646310775590905,0.3677732910994511,0.3683231116003564,0.3694318637848994,0.3713642988403777,0.3736112093977779,0.3755486393743516,0.3788620863276422,0.3812196034418256,0.3803218449062341,0.3821861106852675,0.3841147061597962,0.3847253663767425,0.3934096534653465,0.3972772277227723,0.3965614430665163,0.4001560062402496,0.0,2.4088611450697046,60.42115197924307,215.75187007839529,323.2045123033909,fqhc8_100Compliance_baseline,40 -100000,95793,41264,387.9824204273799,7195,73.99288048187236,5591,57.87479252137421,2320,23.884835008821103,77.331780499572,79.67300401245487,63.32970022966426,65.06296516146675,77.046666900321,79.38520319156255,63.22604541845958,64.96051714107716,0.2851135992510052,287.80082089231485,0.1036548112046844,102.44802038958768,76.70432,53.94247144863032,80072.99071957242,56311.49608909871,238.28039,146.90355498735858,248251.79292850208,152861.90534523255,264.19368,126.77436775520744,272665.22606035933,129936.48583911256,4064.00533,1813.4194201440484,4211926.988402075,1862500.71523394,1352.15821,588.1654619312059,1401277.859551324,603732.3728573129,2282.68992,947.0576641949276,2353060.2444855054,963385.286144166,0.37769,100000,0,348656,3639.681396344201,0,0.0,0,0.0,20060,208.9087929180629,0,0.0,24587,253.5780276220601,2093672,0,75228,0,0,0,0,0,50,0.5219588070109507,0,0.0,0,0.0,0,0.0,0.07195,0.190500145622071,0.3224461431549687,0.0232,0.3188328912466843,0.6811671087533157,25.193104138562106,4.646958259865097,0.3298157753532463,0.1960293328563763,0.233947415489179,0.2402074763011983,10.939947113412972,5.393937682722057,24.949394160114508,12907.235304463587,63.03819927269124,12.797573394584424,20.83479797964601,14.69797333738787,14.70785456107293,0.5362189232695403,0.7545620437956204,0.6876355748373102,0.5779816513761468,0.1094564408041697,0.7084249084249085,0.8720238095238095,0.8638297872340426,0.7491749174917491,0.16015625,0.4805963085660198,0.7026315789473684,0.6273653566229985,0.5263681592039801,0.0975160993560257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777665231704,0.0043388345971371,0.0067784914812221,0.0089296598805315,0.0112890922959572,0.0134522754814203,0.0157725168736363,0.0177732859651272,0.0199648340864018,0.0219378614935762,0.0241624636076598,0.026110438014662,0.0279165895490159,0.0299955707089955,0.0317976345284537,0.0338767535380893,0.0359365776364709,0.0382289797653989,0.0399538634190947,0.0419920451469148,0.056191499796521,0.0704976675104073,0.0839028890100213,0.0967657195696032,0.108503935348597,0.123746526200112,0.1371416459117164,0.1499920250943697,0.162366073334187,0.1736624456300486,0.1874091853318839,0.2003763749040135,0.2125008155542506,0.2238481140019904,0.2345464349778252,0.2457485348370871,0.2559525137794836,0.2658868518726802,0.2745849587226708,0.2834915219307786,0.2915804202273437,0.2994388590133271,0.3072608510436881,0.3140425531914894,0.3201132456044423,0.3259560819146311,0.3323140547653361,0.338872592781533,0.3444018952424222,0.3497606010105018,0.3505139342272101,0.3511897380785075,0.351963980748331,0.3523068226290385,0.3534252702199031,0.3538783293350556,0.3535747239810366,0.3546247876078457,0.3555486830575743,0.3572735097912631,0.3585623598997871,0.3593368410602601,0.3604977327849836,0.3615206284183754,0.3630078835657974,0.3644537925594847,0.3664731911959082,0.3696175278622087,0.3703651437643323,0.3740348069613923,0.3768675584976785,0.3760954890047852,0.3756803483383492,0.3765351046574496,0.37890625,0.3787969744267019,0.3813150940463236,0.3848664083214358,0.3896935933147632,0.3986566574476491,0.0,1.92628758258974,60.40932561154054,217.719722885414,315.6809235914416,fqhc8_100Compliance_baseline,41 -100000,95700,41649,390.06269592476485,7311,75.45454545454545,5667,58.76698014629049,2298,23.71995820271682,77.34192318165195,79.71675776881447,63.32298576779221,65.07464269797964,77.06371704363929,79.4350218079657,63.22266412707413,64.97480571301112,0.2782061380126635,281.7359608487777,0.1003216407180715,99.836984968519,77.16082,54.26818364846875,80627.81609195402,56706.56598586076,238.20621,146.4678595595622,248449.3103448276,152590.36851504803,265.24935,126.4182233870281,274008.46394984325,129698.07477488648,4072.49909,1817.9641834057688,4223820.062695925,1868102.1528152155,1368.18867,591.7239116878488,1418503.6468129572,607212.1541162445,2263.24372,933.5560583663532,2337544.5350052244,953201.4680685722,0.38261,100000,0,350731,3664.900731452456,0,0.0,0,0.0,20065,209.19540229885055,0,0.0,24834,256.3531870428422,2090754,0,75009,0,0,0,0,0,41,0.4284221525600836,0,0.0,1,0.0104493207941483,0,0.0,0.07311,0.191082303128512,0.3143208863356586,0.02298,0.3159126365054602,0.6840873634945398,25.70927435376145,4.502239594053477,0.3259220045879654,0.2179283571554614,0.2218104817363684,0.2343391565202047,11.012524347423028,5.471093707217926,24.36403781735376,13118.496456034114,63.59413017291884,14.308721628592268,20.746648443618103,14.002785085421747,14.535975015286716,0.540850538203635,0.7449392712550608,0.6832701678397402,0.5767700875099443,0.1189759036144578,0.7037037037037037,0.925207756232687,0.8636363636363636,0.7397769516728625,0.1321428571428571,0.4899235580264072,0.6704805491990846,0.6268656716417911,0.5323886639676113,0.1154580152671755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186820975466,0.0044698513090278,0.0070097487243474,0.0094460357121092,0.0118169892101329,0.0144163222088737,0.0165772893175376,0.0188496216801282,0.020962002535891,0.0232017611222034,0.0254180807759743,0.0272226900248505,0.0293542879476683,0.0314357838339086,0.0336922076447454,0.0358413302448709,0.0380153304329811,0.0401478037033961,0.0423863648180693,0.0442434536152299,0.0597679058253339,0.0735563583058478,0.0862423644492957,0.0987594566441145,0.1113338538479394,0.1266428223741296,0.1403303889926957,0.1530620939397167,0.1643561816607702,0.1760810535240896,0.1900516391940404,0.2029953867146044,0.2149721910815547,0.2268325509634638,0.237995135319561,0.2491081518246881,0.2592406532926979,0.2687635794616623,0.2779536403553558,0.2872754765395894,0.2961355508489288,0.3032512522821965,0.3108200914107087,0.3178094678388524,0.3242612469155311,0.3314508372586253,0.3380486399117916,0.343601171526805,0.3498488563681418,0.3544834333765237,0.3553217922056877,0.3559387555052394,0.3573477259561722,0.3580609674897953,0.3591919852547713,0.3591158527238726,0.3592937745657411,0.3608362828216314,0.3614682988718581,0.3618563528001002,0.3626914763650032,0.363809675113194,0.3650195715307883,0.3653850480325766,0.3659644375724777,0.3680106753185588,0.3696721780422221,0.3706055150194257,0.3747535905378766,0.377794604072849,0.3773791592496234,0.3785916093608401,0.3779217479674797,0.3789080372121397,0.375787790424231,0.3766340831468613,0.3784806295399516,0.3840594258181088,0.3874862788144895,0.3888679954870252,0.0,1.6591463033082103,60.11370939857958,216.35148698738047,328.15783212154605,fqhc8_100Compliance_baseline,42 -100000,95734,41416,388.973614389872,7201,73.95491674849062,5608,57.95224267240479,2254,23.137025508178915,77.32392886815877,79.6857975293023,63.31606620966248,65.06427339560138,77.05286415660402,79.41626103269999,63.21781091593918,64.96913956046997,0.2710647115547573,269.5364966023135,0.0982552937232981,95.1338351314064,75.38454,53.06356325675779,78743.74830258843,55428.12716146592,237.93329,146.78902493809213,247884.607349531,152679.61948686276,266.48389,127.42966812094612,274338.0094846136,130099.84403955092,4063.56199,1813.103226308354,4203030.010236697,1852382.7962043227,1429.31259,615.4662689182708,1476965.216119665,626853.1127063223,2229.16502,913.5440526999228,2290509.7248626403,922949.439160643,0.3797,100000,0,342657,3579.261286481292,0,0.0,0,0.0,20029,208.54659786491737,0,0.0,24906,256.1054588756346,2098525,0,75346,0,0,0,0,0,43,0.438715607830029,0,0.0,0,0.0,0,0.0,0.07201,0.1896497234658941,0.3130120816553256,0.02254,0.3132769108701402,0.6867230891298598,25.25963857379014,4.553650465328494,0.3241797432239657,0.2111269614835948,0.220756062767475,0.2439372325249643,11.275838958149969,5.718966855224153,23.76466282410327,13029.909804449777,63.21114914095271,13.990911110609575,20.542022202341112,13.769798830373691,14.908416997628343,0.5483238231098431,0.7787162162162162,0.6914191419141914,0.574313408723748,0.1352339181286549,0.7235294117647059,0.9305555555555556,0.8715203426124197,0.7195571955719557,0.1793893129770992,0.4922316384180791,0.712378640776699,0.6291635825314582,0.5336091003102379,0.1247739602169981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021372066405339,0.0042279654057123,0.0064038808939046,0.00885000711252,0.0112198396875127,0.0136150712830957,0.0159451909548763,0.0182510437188032,0.0202128638468852,0.0222076605678362,0.0246780675853018,0.0267872727086049,0.0288686926841304,0.031045280375757,0.033309943451521,0.0352683370544943,0.037236136142357,0.0390775011157586,0.0408464618104299,0.0427979080282541,0.0578065459101111,0.0713179754357332,0.0844544644261521,0.0970031545741324,0.109508293526515,0.1243428498894612,0.1377791925301077,0.1513373653051663,0.1630917791830456,0.1743465488775007,0.1879985789490682,0.201901136572547,0.2144130628573913,0.2248715425822674,0.2357812087622063,0.2470960812322138,0.2583430962343096,0.2687556255625563,0.2780029288560433,0.2864169504351116,0.295014717129812,0.3027220848615521,0.3098010386777016,0.3160699497101432,0.322890803758337,0.3294743467904175,0.3360956834622569,0.3416875948140688,0.3471045426825312,0.3528314862327082,0.3543916000863744,0.3549427822969805,0.355563087873909,0.3568209156389038,0.3576716266738162,0.3576871770496327,0.3580018061694947,0.3586992243985802,0.3593338126048406,0.3596142836696722,0.3607625845229151,0.3615029062270626,0.3627994955863808,0.363968937965706,0.3650103819595345,0.3674378389708387,0.3674164377289377,0.3689649706768109,0.3709631627510824,0.3737588084561178,0.3775889781859931,0.3793121891212494,0.3797540567951318,0.3843146274149034,0.3888677087304613,0.3911580970687169,0.3892032420859458,0.3925364198762722,0.3921778730243772,0.3917173252279635,0.0,2.401910192301068,59.93841176962529,213.47467325655165,323.96326747761736,fqhc8_100Compliance_baseline,43 -100000,95790,41746,392.52531579496815,7379,75.91606639523958,5723,59.11890594007725,2335,23.937780561645265,77.4066300966336,79.74452592455675,63.35719594835807,65.0871738306113,77.11765975626045,79.45757483949991,63.25128401571276,64.98534648128823,0.2889703403731545,286.95108505684175,0.1059119326453128,101.82734932307368,77.1364,54.21231593899152,80526.56853533772,56594.96392002455,238.97634,146.79799932095918,248839.81626474575,152610.20912512703,264.99943,126.73427501188358,273065.278212757,129525.41525128607,4145.77344,1848.538270566556,4288886.251174443,1890686.8885755872,1411.22578,606.1573865971607,1458676.0830984444,618227.4153700443,2301.67914,954.308595540131,2363259.7348366217,962037.885318054,0.38436,100000,0,350620,3660.2985697880777,0,0.0,0,0.0,20092,209.0719281762188,0,0.0,24758,254.79695166510072,2094548,0,75234,0,0,0,0,0,54,0.563733166301284,0,0.0,1,0.0104395030796534,0,0.0,0.07379,0.1919814756998647,0.316438541807833,0.02335,0.3060804730685178,0.6939195269314822,25.57878053978007,4.5713040216241945,0.3262275030578368,0.2081076358553206,0.2290756596190809,0.2365892014677616,10.970515468131865,5.456996745234976,24.73114148676208,13152.306627962207,64.12325345886818,13.662659439559548,21.044524675622664,14.60767349601038,14.808395847675571,0.5411497466363795,0.760705289672544,0.6898768077129084,0.5736079328756675,0.1115214180206794,0.7005813953488372,0.9131652661064426,0.8511111111111112,0.7109634551495017,0.1529850746268656,0.4906832298136646,0.6954436450839329,0.6386732533521524,0.5326732673267327,0.1012891344383057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019859363284495,0.0042891038510677,0.0068397925736495,0.0088800382024526,0.0112081854334272,0.0132176534082808,0.0157113435696662,0.0178328995049252,0.0200130831186884,0.0223197838634409,0.0242790087523315,0.026555573797406,0.0285411827581245,0.0306574152237023,0.0327189510143493,0.0347580053902789,0.0365607639068497,0.0385636092220932,0.0406428890528087,0.0424561695748136,0.0572940034850113,0.0714487403394651,0.0849763634267266,0.0983205112035986,0.1108652589876512,0.1262720730431474,0.1407462370150519,0.154020373008953,0.1657881258269666,0.1772928851468603,0.1906370708298813,0.2042689849806987,0.2167199148029819,0.228188579104282,0.2395526651140308,0.2503374565732115,0.260550499643112,0.270860971825602,0.280177840284,0.2893923436212107,0.2972785417702779,0.3055458137523088,0.3133920329475254,0.3196582835096632,0.3261522011203052,0.3328976733289767,0.3384943003883252,0.3452121767694129,0.3509042587670966,0.3563168259254853,0.3573028855237941,0.3582869272757347,0.3589218648518905,0.3597370250231696,0.3610301118781243,0.360396829047641,0.3602014315576107,0.3614752350171443,0.3619273247886556,0.3633725587936836,0.3648506875491775,0.3665685674218333,0.3692356020942408,0.3692734430923407,0.369955534190602,0.3706056976199156,0.3714245054788672,0.3725656489508732,0.3755355763152349,0.3775360304919204,0.3799343604704166,0.3805760356441945,0.3834193629610978,0.3842293361721542,0.3853271028037383,0.3887062690772482,0.3904498694917857,0.3920465957019481,0.4033287101248266,0.3995345228859581,0.0,2.368379378706841,60.52203432243503,215.51840733833308,331.680954470573,fqhc8_100Compliance_baseline,44 -100000,95683,41575,391.61606554978414,7271,74.63185727872245,5627,58.139899459674126,2268,23.27477190305488,77.29491858535671,79.69653223428386,63.29396199958445,65.07361216664304,77.02142164760815,79.42355407078954,63.19359480244864,64.97600594937262,0.2734969377485612,272.9781634943293,0.1003671971358102,97.60621727042462,77.16412,54.33932715353996,80645.59012572767,56790.994380966265,242.0984,149.66824719183109,252345.0038146797,155747.41892715226,270.64433,129.60544178529673,278561.24912471394,132170.95332643157,4043.04032,1817.342593593796,4180694.909231525,1854731.418649326,1371.01669,600.4876277527478,1416995.0043372386,611758.9126724917,2227.62488,920.6745122731712,2289366.80497058,930494.0664891378,0.38048,100000,0,350746,3665.70864207853,0,0.0,0,0.0,20353,212.01258321749944,0,0.0,25274,259.84762183459964,2087587,0,74893,0,0,0,0,0,51,0.5330100435814094,0,0.0,1,0.0104511773251256,0,0.0,0.07271,0.1911007148864592,0.3119240819694677,0.02268,0.3122962576607119,0.687703742339288,25.55279002991145,4.534496770425705,0.3401457259641016,0.1947751910431846,0.2386706948640483,0.2264083881286653,11.388488251126123,5.875453332738326,23.973051780620743,13012.069887998909,63.44792893021048,12.843402106074024,21.68407497718768,14.958011913269315,13.96243993367947,0.5544695219477519,0.7728102189781022,0.7016718913270638,0.5845122859270291,0.1138147566718995,0.7121320890165111,0.9255014326647564,0.8428571428571429,0.7364864864864865,0.1472868217054263,0.502598016060463,0.7014725568942436,0.6530898876404494,0.5415472779369628,0.1053149606299212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0044547271860127,0.006448992027624,0.0084184840628336,0.0104543094760629,0.0126181036152191,0.0149189762847463,0.0169387630003473,0.0194070466914924,0.0215943780860087,0.0237164692003898,0.0256620985802634,0.0278969736259891,0.0300216427908894,0.032194799698593,0.0340341479053124,0.0359170984455958,0.0376772773521044,0.0397703038688401,0.042014967376123,0.0565206037499347,0.0703861133213283,0.0836166729631028,0.0970654152505813,0.1093538993923025,0.1254152999682573,0.1390253998917346,0.1523711164583377,0.1641682604468282,0.1757220720140766,0.1894302549794788,0.2023606032412316,0.2150234843872314,0.2264608792602147,0.2362114663411308,0.2480676809957256,0.2578301960478013,0.2677914214003534,0.2768439224950594,0.2860927304212204,0.2947084308319626,0.3021755421291743,0.3098624912650566,0.3166104704880068,0.3231807404705453,0.3305182057265622,0.3364048944385938,0.3417489331889689,0.3474814459828772,0.3527408561133037,0.3534665068225596,0.3543361272829872,0.3553484831397316,0.3560508540765704,0.3566518879995239,0.3563006632277082,0.3564005593338842,0.3571334431630972,0.3583818992115187,0.3596972631729976,0.3607419555505287,0.3619074144070662,0.3633986928104575,0.3637673005513672,0.3650593345790763,0.3675642981118182,0.3693333716618276,0.3710633979258507,0.3725185446838573,0.3754847479310758,0.3801169590643274,0.3832726493895909,0.3851364183072735,0.3864541832669322,0.3870509052990805,0.3860804983229516,0.3879151291512915,0.3913934426229508,0.3885682879912063,0.3985507246376811,0.0,2.4760295349389176,61.23376779053326,211.1267515577117,324.52266196851866,fqhc8_100Compliance_baseline,45 -100000,95718,41467,389.15355523517,7225,74.25980484339414,5670,58.63056060511085,2296,23.61102404981299,77.3593554540744,79.73172032738357,63.33143217950936,65.08454481893028,77.0784263425094,79.45169519706653,63.2287038225397,64.9851000743446,0.2809291115650012,280.0251303170427,0.1027283569696635,99.44474458568207,77.83996,54.73130403500525,81322.17555736644,57179.7405242538,238.95505,147.0618149373297,249067.11381349375,153062.9818188112,266.70427,127.07379469997996,275351.7311268518,130125.5266277132,4116.71818,1844.2125927230895,4258645.406297666,1884477.969371578,1375.91968,598.3692229289597,1421210.4515347166,608875.8257892565,2271.94912,940.7424727350096,2338323.1576088094,951700.5739861176,0.38109,100000,0,353818,3696.4625253348377,0,0.0,0,0.0,20162,210.0231931298188,0,0.0,24971,257.5482145468982,2089280,0,74948,0,0,0,0,0,41,0.428341586744395,0,0.0,0,0.0,0,0.0,0.07225,0.1895877614211866,0.3177854671280277,0.02296,0.3143830233167409,0.685616976683259,25.283214762836938,4.630874806345377,0.3264550264550264,0.2044091710758377,0.2310405643738977,0.238095238095238,11.03198291264514,5.399826567844993,24.362802587451306,13092.579178232716,63.93169603910671,13.529975959714678,20.958619653498825,14.613524603745228,14.829575822147984,0.5455026455026455,0.7929249352890423,0.690977849810913,0.5732824427480916,0.1066666666666666,0.7181159420289855,0.9396551724137931,0.8643006263048016,0.718213058419244,0.1564885496183206,0.4899766899766899,0.7299630086313194,0.630466472303207,0.5318940137389597,0.0946691176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019750435522424,0.0042576054010765,0.0066770170578505,0.0088562084865227,0.0112971945130817,0.013478982357193,0.0156582904327437,0.0178020946042504,0.0198830528919874,0.0220520485677429,0.0241093586561929,0.0266131185932332,0.0286537373321672,0.0309399437455568,0.0332686671894993,0.0354359197006347,0.037581919266169,0.0393631366040867,0.0414080612128205,0.0431558004604118,0.0580483475173602,0.0719660892773038,0.0857634372508706,0.0989579499689803,0.1121866860691953,0.1278747487570083,0.1409697239820445,0.1539010263617392,0.1657209416642623,0.1771503991758949,0.1906388389057095,0.2033364366596661,0.2151864303511005,0.2265866978953474,0.2369711056521883,0.2480119780402595,0.2584752862328958,0.268463927269454,0.2776787842331657,0.2865393209501656,0.2948726851851851,0.303222033799193,0.3104594099213623,0.3179684880992289,0.3249745108510948,0.3311411611123426,0.3368133794001302,0.3426743328160379,0.3484014658085902,0.354121324838748,0.3555755855407423,0.3568972158027952,0.3581434599156118,0.3591222353585743,0.3592794824618672,0.3589163405088063,0.3590185173481641,0.3604818882150467,0.3611599747237545,0.3629809408237561,0.3636995174705694,0.3651532866966568,0.3650763559768299,0.3651090483056957,0.3665723201974018,0.3658933018744265,0.3673797098124677,0.3695920889987639,0.3704908756542651,0.3719835666706553,0.3726075182448249,0.3741627819750308,0.3787481618822326,0.3793684855916615,0.3797863288266994,0.382689556509299,0.3895823701648944,0.3922562335292925,0.3947078280044101,0.3987682832948422,0.0,2.3643266292983256,60.835424152260494,216.1999019883445,326.6016228943509,fqhc8_100Compliance_baseline,46 -100000,95900,41684,390.3232533889468,7242,74.47340980187695,5642,58.373305526590194,2311,23.80604796663191,77.4394230829848,79.7204656422446,63.39129033748679,65.07758974822816,77.15671227889133,79.43460277647861,63.28740564337198,64.97479153108237,0.2827108040934689,285.86286576599207,0.1038846941148037,102.7982171457893,77.98934,54.8108052464804,81323.60792492179,57154.12434460938,241.44021,148.92425407025067,251318.1230448384,154846.8447030768,266.2463,127.1135667346339,274802.9092805005,130372.94634114752,4092.77916,1833.9281218257372,4237874.348279458,1882450.9508089004,1365.74014,595.3365348338824,1412605.922836288,609265.3543627554,2276.01294,947.1114977905607,2346479.2492179354,963863.6267760094,0.38161,100000,0,354497,3696.52763295099,0,0.0,0,0.0,20351,211.75182481751824,0,0.0,24844,256.2356621480709,2089544,0,75077,0,0,0,0,0,44,0.4588112617309697,0,0.0,0,0.0,0,0.0,0.07242,0.1897749010770158,0.3191107428887048,0.02311,0.3166448230668414,0.6833551769331586,25.39885485810656,4.574517643295907,0.3286068769939738,0.1990428925912797,0.238390641616448,0.2339595887982984,10.90470769648093,5.322411564849591,24.535880643259784,13114.247935093115,63.42092767357514,12.956673086394597,20.986752604172786,15.026017693046628,14.451484289961147,0.5393477490251684,0.7533392698130009,0.6806903991370011,0.5828996282527881,0.1143939393939394,0.6982507288629738,0.8978978978978979,0.847682119205298,0.7275541795665634,0.1520912547528517,0.4882903981264637,0.6924050632911393,0.6266952177016417,0.5371819960861057,0.1050141911069063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022474185057703,0.0043779642466253,0.0065023990910843,0.0086913259348759,0.0110380436439773,0.0132882928715329,0.0155029284441049,0.0176458588331293,0.0198806750847942,0.022248818511017,0.0242220560058198,0.0264308140608647,0.0286186982345808,0.0307275796755332,0.0329800614445658,0.0349944240221387,0.0371818746120422,0.0392813105513475,0.0416934864309295,0.043619832303435,0.0575922779439817,0.0722040522042611,0.0854477103992795,0.0979883669655418,0.1105403328526164,0.1267947635135135,0.1397794795208287,0.1525612827133339,0.1649273539350396,0.1769276044732195,0.1905877800232188,0.2037187091476787,0.2163923741241649,0.2278995563520335,0.238802195022709,0.250163284735368,0.2609214237144545,0.2703984180130783,0.279520420651829,0.2884769332814894,0.2973585080076725,0.3050178164612419,0.3125266095841809,0.319403521379806,0.325523774822372,0.3316412651084854,0.337324974661211,0.343012981068745,0.348632281773246,0.3536847377647725,0.3548916921337121,0.3566292227523339,0.3574887387387387,0.3581144566992874,0.3583273894436519,0.3584946137697482,0.3583153758397769,0.3590332961187364,0.3605237517307396,0.3619445635090727,0.3621375248527591,0.3630984187298383,0.363979611100623,0.365872732147645,0.3676947077883115,0.3683167283918418,0.3693693693693693,0.3709439759225005,0.3737327833321681,0.375721629102412,0.378296192075523,0.3823357275871242,0.3859593793364451,0.3897667996317889,0.3866666666666666,0.3890555622224889,0.3938163647720175,0.3976003309888291,0.4006167647883375,0.4056748466257668,0.0,1.8220326042557529,60.76958240680733,214.09065793354512,325.1609709530511,fqhc8_100Compliance_baseline,47 -100000,95725,41228,387.5372159832855,7368,75.61243144424132,5711,58.93967093235832,2380,24.41368503525725,77.34647984393533,79.7003650636141,63.33814763576003,65.07582981190725,77.0527639363926,79.40651097332868,63.229876167810296,64.97063147199823,0.2937159075427331,293.8540902854214,0.1082714679497343,105.19833990902328,76.86272,54.03193378102807,80295.34604335336,56444.95563439862,237.86574,146.413943650614,247774.4894228258,152238.53084420366,263.81129,126.05609035533398,270805.7247323061,128015.3818635862,4143.12637,1866.554860106684,4279405.891877774,1901164.565272064,1399.69994,607.732279430207,1443704.110733873,616367.8239020179,2348.28268,980.984883171029,2410886.706711936,988487.1871553868,0.37907,100000,0,349376,3649.788456516062,0,0.0,0,0.0,20083,209.05719509010183,0,0.0,24687,253.13136589187775,2093705,0,75197,0,0,0,0,0,33,0.3447375293810394,0,0.0,0,0.0,0,0.0,0.07368,0.1943704329015749,0.3230184581976112,0.0238,0.3200051759834368,0.6799948240165632,25.3622113591616,4.541843957718423,0.3321659954473822,0.1945368586937489,0.2346349150761688,0.2386622307827,10.984244027862688,5.470916469446869,25.44822877047759,12957.778002021949,64.4095414386994,13.04643653303843,21.215519003552163,14.985959521284688,15.161626380824115,0.5398354053580809,0.774977497749775,0.6731681602530311,0.5835820895522388,0.119589141599413,0.6926863572433193,0.9269662921348316,0.8574766355140186,0.7592592592592593,0.1337579617834395,0.48915831196083,0.7033112582781457,0.6194690265486725,0.5275590551181102,0.1153479504289799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166700425359,0.0044501211365548,0.0066063871890888,0.0090002234818471,0.0114507698252893,0.0134284899820817,0.0155351681957186,0.0176262260280264,0.0195439073504308,0.0218484125602776,0.0240162363287856,0.0257631433087676,0.0278209016604122,0.0297661963126995,0.0317884484430779,0.0339331672678787,0.0359269037635243,0.0378478202228539,0.0401043669892618,0.0422360636613615,0.0566071223494774,0.0702966358935711,0.0830850260198086,0.0959586930688904,0.1076704096156887,0.1232620349126127,0.1360617826151528,0.1483811226770547,0.1606914075845575,0.1726207702284103,0.1868041947501023,0.200086528581472,0.2124347826086956,0.2241226680073006,0.2346429513675138,0.2457295944913706,0.2557291492422468,0.2661995118494606,0.2750442558213427,0.2851447490519996,0.2933307102105056,0.3008856805232184,0.3087819032391781,0.3161146366918989,0.3229484483450229,0.3292825714532211,0.3359379891556157,0.3413826059254539,0.3464439165595753,0.3515944290872538,0.3529824561403509,0.3535763041409837,0.3543485015394175,0.3552991985623396,0.3562922001460702,0.3568244697202582,0.3570759732736593,0.3576989548185335,0.35896952129393,0.3609961479888919,0.3621646014703947,0.3638618281383305,0.3641726891553065,0.3649426579716663,0.3657911285251294,0.3669693380707988,0.3693206341898541,0.3717672413793103,0.3741867043847242,0.3746411483253588,0.3760338173129939,0.3761137949543747,0.3787590407308717,0.3835479145786755,0.3846961167827497,0.3876146788990826,0.3857741885385929,0.3882912701696318,0.3889364128885087,0.3885094415427882,0.0,2.773791537672658,62.36728331806742,215.2019308385645,326.04427905522425,fqhc8_100Compliance_baseline,48 -100000,95736,41727,393.0078549344029,7137,73.35798445725746,5574,57.59588869390824,2245,22.99030667669424,77.41222784566315,79.7706798381051,63.350809200748486,65.09081792037318,77.14628795824007,79.5062742796296,63.253184650624505,64.9972331420751,0.2659398874230874,264.4055584755023,0.0976245501239816,93.5847782980801,76.47178,53.80771533803138,79877.76802874572,56204.26520643371,238.69479,146.99044621442192,248705.1370435364,152917.22756775,265.74624,126.74382694386732,274239.43970920035,129760.9562746974,4027.10066,1781.0325003402725,4160522.676944932,1814717.4051222312,1354.50304,577.405458641041,1400081.6620706944,588491.2182014476,2217.49552,910.3947923247156,2273058.2017214005,912760.8850248487,0.38114,100000,0,347599,3630.80763767026,0,0.0,0,0.0,20069,208.970502214423,0,0.0,24806,255.77630149578005,2096615,0,75078,0,0,0,0,0,37,0.3864794852511072,0,0.0,0,0.0,0,0.0,0.07137,0.1872540273915096,0.3145579375087571,0.02245,0.3154944614973975,0.6845055385026024,25.199489899452438,4.620006673749549,0.3310010764262648,0.2023681377825619,0.2265877287405812,0.240043057050592,11.024687199687682,5.345445153458358,23.464082650048255,12981.497752161406,62.16328769941227,13.288455810908433,20.69112725472604,13.789692298483642,14.394012335294155,0.540724793684966,0.7925531914893617,0.6959349593495935,0.5471100554235946,0.1083707025411061,0.7057949479940565,0.943089430894309,0.8358862144420132,0.6441281138790036,0.1631799163179916,0.4881740775780511,0.7193675889328063,0.6498559077809798,0.5193482688391039,0.0964513193812556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0045507525464957,0.0067463377023901,0.0088654642944187,0.0109395174818776,0.0128569247213315,0.0152577613796196,0.0173260002244829,0.0196114500618286,0.0216888433981576,0.0236638483218037,0.0259305643952614,0.0279119975326411,0.0297213239686103,0.031771091299323,0.0339969403787315,0.0360548796272327,0.0378597663464132,0.0398939488459139,0.0418789261493265,0.0564418458968469,0.071031675439239,0.0839033192060761,0.0962770489906268,0.1082598235765838,0.1234985978094079,0.1372199403529998,0.1499669910769427,0.1624293332478386,0.1737357259380098,0.1871873382784198,0.2010937246196329,0.213259307642064,0.2246077712208634,0.2350446182659469,0.2460152844482402,0.2563985068287994,0.2666336265642423,0.2758957469763216,0.284264715998991,0.2929826390095317,0.3016330114135206,0.3095317013116151,0.3170103401588766,0.3236576508738477,0.3296869803023023,0.3353798829590356,0.3407858131883487,0.3456633806638328,0.3515988945913936,0.3529293336017717,0.3544321158672902,0.3548205884418229,0.3562239797167841,0.3573836418475368,0.3571939871152469,0.3578988817136557,0.3593678573760857,0.3602577398459681,0.3610859406925715,0.3626521066656728,0.3634361233480176,0.3648558295027163,0.3656031371151018,0.3664418900434354,0.3683129177394606,0.3683296809630873,0.3708902496467263,0.3740257004423846,0.3755494831887846,0.3778747386601218,0.3804088133793469,0.3841367607315694,0.3858518462354993,0.3879857997010463,0.391324902493795,0.3950242718446602,0.3932223781832765,0.3911499590275881,0.397165836844121,0.0,2.388435955882335,59.33596482489556,203.96798459649636,325.13378709842016,fqhc8_100Compliance_baseline,49 -100000,95734,41500,389.3601019491508,7321,75.19794430400903,5639,58.37006706081434,2276,23.40861136064512,77.32373385663094,79.69358655139531,63.321321634088775,65.07509527541619,77.04902787237751,79.41844157812702,63.21988413769648,64.97599751621787,0.2747059842534298,275.1449732682971,0.1014374963922932,99.09775919831532,76.96524,54.1467787223196,80394.196419245,56559.03113867563,239.43694,147.5272077880001,249501.35792926236,153501.0719722891,265.43353,127.23961036138816,274183.32045041467,130552.04780020074,4103.34905,1843.8847022663967,4249130.758142352,1889459.277195988,1380.60401,604.5099467683905,1427603.495101009,617174.328502366,2244.8429,935.7021758928756,2309990.0348883364,947482.7267324992,0.38084,100000,0,349842,3654.2816554202273,0,0.0,0,0.0,20165,210.0298744437713,0,0.0,24787,255.8443186328786,2092316,0,75088,0,0,0,0,0,52,0.543171704932417,0,0.0,0,0.0,0,0.0,0.07321,0.1922329587228232,0.3108864909165414,0.02276,0.3109613889608706,0.6890386110391293,25.521342390539463,4.622904564648329,0.3110480581663415,0.2092569604539812,0.2452562511083525,0.2344387302713247,11.30632340514871,5.617357693419307,24.16607316526743,13056.294751848563,63.43157387360071,13.840336621236752,19.668421298171697,15.330699290800595,14.59211666339166,0.5362652952651179,0.752542372881356,0.6733181299885975,0.5770065075921909,0.1187594553706505,0.7010909090909091,0.9182561307901907,0.8729411764705882,0.7024221453287197,0.1802721088435374,0.4831144465290807,0.6777367773677737,0.6094808126410836,0.5438756855575868,0.1011673151750972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0047968196983986,0.0072675598863174,0.009491291181432,0.0115985674751749,0.0140268312807505,0.0158385346550809,0.018067059532442,0.0202979763377746,0.0225510778841722,0.0248997548994472,0.0270514532196775,0.0292780281052609,0.0314396710736477,0.0334114344105777,0.0352416987139726,0.0374704834500186,0.0394040628307015,0.0413088232236062,0.043200550166196,0.0577290524667188,0.0717881626458736,0.0850476799932859,0.0980802608741387,0.1106518048276371,0.1253806462527491,0.1386089244414267,0.1511588311660672,0.1630922373648908,0.174251522690229,0.1881400282123897,0.2016596702298005,0.2135422897475774,0.2253912358788727,0.2365076745337514,0.2475023813215781,0.2579961636258197,0.2684360146971246,0.2782477546947292,0.2867704280155642,0.2945385193319078,0.3023049230913086,0.3093914812099425,0.316421415903753,0.3231131788972437,0.3303006768001775,0.3356629342952331,0.3414273702448595,0.3470287655954141,0.3530413882359156,0.3539029749147425,0.3549080981205962,0.3557221304648569,0.3562473730741916,0.3570853941958167,0.3574476576410634,0.3574710822373633,0.3593721751992768,0.3614857357742338,0.3622501876943977,0.3636363636363636,0.3649238337035861,0.3660571332265948,0.3674121405750798,0.3688147574319744,0.3697874241269674,0.3694051317454838,0.3725153452278726,0.375452416436023,0.3773433100008045,0.381011781011781,0.3803561791689153,0.3798325771614799,0.3841571903767308,0.3894586894586894,0.3884675574816419,0.3924342611102568,0.3946078431372549,0.3971318257032543,0.3969732246798603,0.0,1.935543054302787,60.91077696650513,213.0641635044281,325.58666066437365,fqhc8_100Compliance_baseline,50 -100000,95787,41560,390.9925146418616,7100,72.97441197657302,5520,57.11631014647081,2321,23.865451470450058,77.38153749659537,79.72348528510986,63.350937847410606,65.08300467115916,77.08987263307958,79.43172167222204,63.24350176698599,64.97806518913981,0.2916648635157912,291.76361288782005,0.1074360804246126,104.939482019347,77.36256,54.406870855834,80765.1977825801,56799.84847195757,236.82838,145.83066846462447,246743.66041320845,151743.85948228848,262.16546,125.51735315725004,271076.00196268805,128871.19376605474,4030.71748,1819.048953422564,4173395.5860398593,1864484.1157301315,1377.46197,604.089622532507,1422819.5892970862,615480.3898227122,2295.4067,962.7169937970596,2362379.9262948,975541.3079568464,0.38202,100000,0,351648,3671.145353753641,0,0.0,0,0.0,19990,208.1597711589255,0,0.0,24452,252.6230072974412,2093366,0,75154,0,0,0,0,0,44,0.459352521740946,0,0.0,1,0.0104398300395669,0,0.0,0.071,0.1858541437621066,0.3269014084507042,0.02321,0.319251984393919,0.680748015606081,25.126256640787112,4.6519469723076,0.331159420289855,0.1925724637681159,0.2284420289855072,0.2478260869565217,10.9670475019349,5.340141469962743,24.850338820315585,13007.73150034181,62.369084067072095,12.47690564306659,20.68820615717862,14.000101850757966,15.203870416068918,0.5418478260869565,0.7638758231420508,0.6936542669584245,0.5836637589214909,0.1279239766081871,0.6952104499274311,0.8994252873563219,0.8673913043478261,0.7095588235294118,0.1778523489932885,0.4908256880733945,0.6979020979020979,0.6352339181286549,0.5490394337714863,0.114018691588785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177479795013,0.0046120785776552,0.0070106732681303,0.0090592405268984,0.0111332533501433,0.0133452772377006,0.0158294940269906,0.0177589075209993,0.0198859572032945,0.0220394131008656,0.0240300862828684,0.0260926690070004,0.0281413545276015,0.0301064640349251,0.032284682826199,0.0344681510564653,0.036249430853926,0.0380225772009661,0.040026178554362,0.0421455938697318,0.0569359366358124,0.0706479108926423,0.0834268102192076,0.0965881030189036,0.108515368971222,0.123874540305195,0.1373723029969056,0.1499936213641775,0.1623554018867119,0.174527290657291,0.1889378101686887,0.2011486793432409,0.2130994304595452,0.2245828005639159,0.235674605357241,0.2469023706968143,0.2577040184695687,0.2679523220510514,0.2774178909750978,0.2866594931202637,0.2946015364679748,0.3021474186530679,0.3098366477272727,0.3169123816373007,0.3239375015187228,0.331045530158339,0.3372226807733673,0.3435200977522083,0.3484383299003796,0.3539942175927759,0.3552103263359293,0.3556779836099442,0.3557064028563767,0.3564200193997655,0.3579355030907872,0.3580271534862315,0.3580258653480411,0.3586767361681169,0.3594379567028614,0.3600607305528266,0.3602327108942479,0.3614655992390615,0.3624992116383206,0.3632724655932355,0.3651886200067623,0.3662924884599244,0.3676731793960923,0.3691730271872832,0.3703117303497291,0.3707976924607121,0.3719484319283167,0.3721364874245741,0.372999745999492,0.3740293688014146,0.376782658300057,0.3774620986033186,0.3758255260328674,0.3822511703643395,0.380328782390638,0.3817829457364341,0.0,1.98856959462994,60.99233358764008,211.0663924993385,312.5914270258661,fqhc8_100Compliance_baseline,51 -100000,95859,41609,389.1862005654138,7127,73.27428827757436,5525,57.08384189278002,2259,23.179878780291887,77.37299817448195,79.67336196662242,63.35320242165369,65.05656652139673,77.09667345258795,79.39812626990732,63.25223499226546,64.95890330199636,0.2763247218939995,275.2356967151002,0.1009674293882341,97.66321940037416,76.89,54.06364097089315,80211.56072982193,56399.12889858349,239.46068,148.1656357685613,249226.520201546,153987.63367921775,264.28238,126.92552786970552,272444.2358046714,129910.2564241856,4026.13918,1797.3264987150558,4162101.753617292,1837006.8942040456,1319.30398,570.718355022351,1363732.586402946,582808.9120712201,2227.50058,920.663677342594,2287690.4411688,929298.769898298,0.38192,100000,0,349500,3645.980033173724,0,0.0,0,0.0,20230,210.4445070363764,0,0.0,24625,253.59121209276125,2091920,0,75113,0,0,0,0,0,52,0.5424634097998101,0,0.0,0,0.0,0,0.0,0.07127,0.1866097612065354,0.3169636593236986,0.02259,0.3118093462921049,0.6881906537078951,25.41865928303361,4.696672068555936,0.3314027149321267,0.1943891402714932,0.2327601809954751,0.2414479638009049,11.107418429350426,5.489917670178407,24.07188402556408,13081.049401293743,62.28678135194831,12.665767323712744,20.80383589591928,14.26270670687482,14.554471425441443,0.5417194570135747,0.7783985102420856,0.6947023484434736,0.5738724727838258,0.1101949025487256,0.7256505576208179,0.922437673130194,0.8556034482758621,0.7430555555555556,0.1379310344827586,0.4825358851674641,0.7054698457223001,0.640087783467447,0.5250501002004008,0.1043557168784029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0044999847973486,0.0067963036223283,0.0092601994192067,0.0114877091678018,0.0137316775244299,0.0159713799394575,0.0179611997264999,0.0200472059589859,0.0221212679313237,0.0243020337072895,0.0265217971210768,0.0288063306099378,0.0309926712779973,0.0334006845078553,0.0355958982620279,0.0377405338299193,0.0398221835364337,0.0419647956799418,0.0440111536540702,0.058905109489051,0.0726258150810901,0.0857986925913509,0.0986295615647151,0.1108232493970701,0.125723581358009,0.1392497615767722,0.1519668296831809,0.1639646947074079,0.1754331451103087,0.1897659402744148,0.2029984975084582,0.214982120148256,0.2262180720783765,0.2369842964202,0.2488950918818329,0.2598551711056314,0.2694999549914483,0.2787906290770889,0.2877148386062542,0.2963185713790032,0.3045172159629357,0.3123609072399261,0.3186986998981487,0.3247999222763319,0.3314930063466634,0.3369321526533986,0.3427407548851123,0.3488507683138556,0.3543601463730398,0.3554746494066882,0.3564595280105866,0.3568493440840476,0.3573880672682764,0.357542731225061,0.3573258864867353,0.3569104787900909,0.3576328907753813,0.3587641218760698,0.3604771970049797,0.3611105896487638,0.3625200530787665,0.3635542864341655,0.3632902604528251,0.3645096056622851,0.3654037104781813,0.3668108510699246,0.3676907516277893,0.3698489980242732,0.3710216422660725,0.3713700500682749,0.3723047436511739,0.3738205306820341,0.3785588212723506,0.3777313319399582,0.3803134647352172,0.3787293244705518,0.3794808405438813,0.3827402633790978,0.3777949113338473,0.0,2.189550421263961,59.36337307654209,213.83083272208256,313.82591252722057,fqhc8_100Compliance_baseline,52 -100000,95799,41274,386.9768995500997,7211,74.23877075961127,5635,58.32002421737179,2308,23.77895385129281,77.39816222968327,79.72818801103992,63.35848721039546,65.07986901179022,77.11912918106503,79.44741753860662,63.25680815402652,64.97972435114139,0.2790330486182313,280.77047243330355,0.1016790563689369,100.1446606488372,77.022,54.16221030752783,80399.58663451602,56537.34413462335,238.722,146.94648932603178,248682.6897984321,152890.48606323943,261.32662,124.338093716088,270212.78927754983,127757.6044846178,4107.14169,1827.004913475579,4253587.928892787,1874069.9840789265,1410.88231,610.049107865239,1461201.73488241,625251.3660406083,2278.79468,937.729128322894,2349040.929446028,953929.1283648688,0.37898,100000,0,350100,3654.526665205273,0,0.0,0,0.0,20139,209.6994749423272,0,0.0,24421,252.2468919299784,2094376,0,75130,0,0,0,0,0,50,0.5219261161389993,0,0.0,0,0.0,0,0.0,0.07211,0.1902738930814291,0.3200665649701844,0.02308,0.3141954174348169,0.6858045825651831,25.59240832517688,4.642144111023767,0.3213842058562555,0.2,0.2356699201419698,0.2429458740017746,11.301460322240931,5.657727331942292,24.383772861159343,12930.868350010194,63.253581299664816,13.107841934301565,20.45912020840697,14.568944913398354,15.117674243557923,0.5364685004436557,0.7905944986690329,0.6824958586416344,0.5549698795180723,0.1161431701972242,0.6979166666666666,0.9230769230769232,0.87248322147651,0.7090909090909091,0.1443661971830986,0.4859007224423211,0.7338403041825095,0.6202346041055719,0.5147198480531814,0.1087557603686635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020659901561645,0.0043477379601102,0.0064825711155297,0.0085811195060524,0.0108066893712194,0.0131495918741221,0.0157130483517603,0.0177223197159531,0.0199838576201228,0.0221199099652138,0.0243727525125756,0.0263619665267672,0.0283744065114175,0.0307533964594483,0.0330628782333474,0.035125225923057,0.0371696063725236,0.0391949482066755,0.0410591621894063,0.0431839718424258,0.0576585976627712,0.0714920674761292,0.0847862781895765,0.0974492101695271,0.1100885515496521,0.125087211146113,0.1383465026250198,0.1509747169490082,0.1624427285251994,0.172812369321167,0.186719221159645,0.1996625786775679,0.2115138083132346,0.2224576965512721,0.2334509325508039,0.2455243532718139,0.2558092859372909,0.2651672757942086,0.2743205227097418,0.2833732235493512,0.2917350785098166,0.2989957092584149,0.3062215118688214,0.3135061914865561,0.3211878302058663,0.3275715500141683,0.3342339637746422,0.3405575905575905,0.3461035175228347,0.3516606822262118,0.3523837765706506,0.3527022375215146,0.3534547198284981,0.3540205619098572,0.3546695583713364,0.354185170438884,0.355176891647927,0.3555394998275833,0.3561831407787762,0.3572271280969575,0.3584693303320203,0.3598913625280019,0.361392896897906,0.3630158445976188,0.363269521773593,0.3636078922643282,0.3650662722566699,0.3661263977886669,0.3673555166374781,0.3682667934093789,0.372541862481179,0.3730196577120754,0.3734486649116209,0.3717537427436602,0.3712908712908713,0.3726454709058188,0.3749231714812538,0.3780413003475771,0.3807262569832402,0.3876447876447876,0.0,1.8920276892448435,59.74258655934531,213.22597414932432,328.2355861803669,fqhc8_100Compliance_baseline,53 -100000,95888,41144,386.1692808276322,7152,73.53370599032203,5580,57.72359419322542,2297,23.621308192891707,77.3584022892406,79.64024233660905,63.35300198276878,65.04140382045172,77.07182931290004,79.3521658104509,63.248758349326856,64.93882017201841,0.2865729763405653,288.07652615815016,0.104243633441925,102.5836484333098,77.77836,54.676713033145546,81113.75771733689,57021.43441634568,238.49382,146.70814971529734,248258.6663607542,152539.47359963832,260.98666,123.93103783218702,269460.5060070082,127112.35595680116,4043.56738,1805.8635389573667,4186468.358918739,1853021.179979205,1359.31256,593.6447249826534,1408027.3444018022,609603.2832436495,2264.85466,939.853802610146,2331667.028199566,954789.0890470576,0.37807,100000,0,353538,3686.9889871516766,0,0.0,0,0.0,20080,208.92082429501085,0,0.0,24377,251.44960787585515,2089455,0,75045,0,0,0,0,0,55,0.5735858501585183,0,0.0,0,0.0,0,0.0,0.07152,0.1891713174808897,0.321168903803132,0.02297,0.316542948038176,0.6834570519618239,25.432379333405,4.5343174834339735,0.3288530465949821,0.200179211469534,0.232258064516129,0.2387096774193548,10.909093059637955,5.411295590996506,24.5640586103514,12928.234391215368,62.9478298583768,13.013758400020164,20.75118665032724,14.49340323328283,14.689481574746573,0.5446236559139785,0.7797672336615935,0.6899182561307902,0.5794753086419753,0.1133633633633633,0.7005267118133935,0.9221183800623052,0.8269230769230769,0.7420494699646644,0.1478599221789883,0.495883321571395,0.7223618090452262,0.6430138990490124,0.5340572556762093,0.1051162790697674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185412426976,0.0046610126556626,0.0067653234068018,0.0092091502604351,0.011323439723521,0.0134237067342431,0.0156689351644321,0.0179407414962517,0.0200626895234983,0.0220407078379455,0.0241280825493668,0.0260093088105636,0.0280793287253381,0.0300988550913972,0.0318943929760199,0.0337308347529812,0.0358332471294093,0.0380473648753692,0.0401694844846923,0.0421773237062777,0.0568777690904352,0.0706972565243736,0.0835131002994952,0.0962095758084838,0.1083281547876094,0.1233509025804611,0.1365538872346963,0.1497666209477635,0.1615915810145902,0.1732447207632114,0.187257731070721,0.1996927969539303,0.2126549249836921,0.2242664742664742,0.2346777208453368,0.2461044710048694,0.2571549666510517,0.2670167665613368,0.2757337508367085,0.2844800916642795,0.2925129914470562,0.2997086458467407,0.3073032044067997,0.313814408253854,0.321139743885977,0.3281417764010416,0.333918451276393,0.3398908636560675,0.3450810305422813,0.3500608916657842,0.351178742134968,0.3521150078640214,0.3534504675009181,0.3544145998521461,0.3555373256767842,0.3555124892334195,0.3562633236819498,0.3577285400821606,0.3579708402740808,0.3577297025795573,0.3591960518384569,0.3593175174498379,0.3594652722135537,0.3595824146154884,0.3610815259488768,0.3634460378938553,0.3647055456990786,0.3669548207975769,0.3684025210379916,0.3719410123555201,0.3727672437482825,0.3729364149536692,0.375134723895264,0.376742025394859,0.3770853307766059,0.3784537081919534,0.3809299403078856,0.3835728952772074,0.3811247216035635,0.3887171561051004,0.0,1.785458217980029,59.11894939650374,216.0656586273322,323.1539095899395,fqhc8_100Compliance_baseline,54 -100000,95739,41543,390.3633837829933,7434,76.51009515453472,5742,59.44286027637639,2318,23.866971662540863,77.38965647392791,79.75605021792536,63.34469261111818,65.0936456574513,77.1075910095049,79.47376154939649,63.24128554825951,64.99324628918025,0.2820654644230131,282.2886685288779,0.1034070628586789,100.39936827105578,77.84986,54.71423641925505,81314.67844869907,57149.371122797456,241.42524,148.46389628305678,251650.62304807865,154552.33331407938,269.04339,127.84271532675628,278219.7537053865,131409.04446433875,4152.31973,1853.5673411954203,4301668.066305268,1900660.1955328411,1404.87641,602.7534376382416,1454504.7159464797,616786.1186505032,2285.1548,947.081721962542,2354856.432592778,960103.228013842,0.38058,100000,0,353863,3696.121747668139,0,0.0,0,0.0,20350,211.99302269712447,0,0.0,25205,260.4894557077053,2089210,0,74976,0,0,0,0,0,38,0.3864673748420184,0,0.0,0,0.0,0,0.0,0.07434,0.1953334384360712,0.3118105999461931,0.02318,0.3158969124776729,0.6841030875223271,25.226350933292544,4.609209033806559,0.3220132358063393,0.2044583768721699,0.2391152908394287,0.234413096482062,11.134690866304682,5.513220497679817,24.593973113218954,13043.55139110152,64.43405945909267,13.625525303255111,20.82472107330278,15.225015922326293,14.758797160208472,0.543712991988854,0.7529812606473595,0.6976744186046512,0.5717407137654771,0.1210995542347696,0.7111269614835949,0.9102902374670184,0.8728070175438597,0.7312925170068028,0.1428571428571428,0.4896313364055299,0.6779874213836478,0.6403445800430725,0.5282669138090825,0.1155638397017707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0043591537159251,0.0066471143405149,0.0087266594875754,0.0105485875878625,0.0126165940287564,0.0148754600789143,0.0171700983044272,0.0194619347452776,0.0218134545305654,0.0239552261754666,0.0261996180933412,0.028332630843091,0.0305008649806409,0.0326040989778341,0.0345711421395868,0.036574126808255,0.0386259415267777,0.0407632984804706,0.0427411876256863,0.0577916992952231,0.0715840817266428,0.0846588047675004,0.09789069486087,0.1099553764518477,0.1257219013771657,0.139076923076923,0.1516954383873645,0.1641373418059486,0.1757930635094266,0.1891979196950609,0.2020186721767257,0.2144682331705938,0.2257323754223665,0.236727732849205,0.2479736014528059,0.2577313838982011,0.2673207241832709,0.2771849449440368,0.2862750483514722,0.294731363136892,0.3024063420794163,0.31029794277607,0.3175068854029457,0.3252115428973789,0.3316452888773888,0.3372800320408521,0.3425192841322776,0.3486796948858412,0.3540173444739239,0.3554047320863464,0.3562737433243407,0.3569436226861635,0.3572657232477125,0.3581207495619636,0.3578689528475199,0.3575191836088917,0.3585514991557515,0.3602036992880744,0.3612441469190093,0.3621185522728121,0.3643985874647359,0.3660352109731108,0.3660546770302867,0.3657856799615569,0.3662225235326328,0.3656499429874572,0.3682566723452584,0.3712046321141082,0.3747348196773806,0.3778831545508954,0.3779094827586207,0.377735368956743,0.3799558633285138,0.3792103293413174,0.3778093210314644,0.3785060975609756,0.3807700060471679,0.3841496973032471,0.383693972179289,0.0,2.0224622073649154,62.108001650382455,213.82605678059812,333.0884832458797,fqhc8_100Compliance_baseline,55 -100000,95750,41604,390.5691906005222,7354,75.44647519582246,5719,59.01827676240209,2308,23.613577023498696,77.34687979821054,79.7067265437784,63.33382307926016,65.08157186939408,77.0605787320978,79.42275911445874,63.22817199435718,64.97984278246159,0.2863010661127418,283.96742931965946,0.1056510849029734,101.72908693249384,77.68882,54.68479525426662,81137.14882506526,57112.05770680586,243.40845,150.2077785301162,253539.6971279373,156202.18123249733,269.62714,128.7560899849808,277430.7989556136,131206.67423771936,4132.18952,1864.796773544532,4267447.007832898,1899412.8078794065,1402.38445,611.8768949951424,1444271.8433420367,618676.4856346133,2278.3794,958.0369543050084,2334264.501305483,961795.9447076204,0.38115,100000,0,353131,3688.0522193211486,0,0.0,0,0.0,20519,213.57702349869453,0,0.0,25239,259.3942558746736,2087461,0,74987,0,0,0,0,0,44,0.4595300261096606,0,0.0,0,0.0,0,0.0,0.07354,0.1929424111242293,0.3138428066358444,0.02308,0.322463768115942,0.677536231884058,25.09245437045165,4.603083636008249,0.3289036544850498,0.2066794894212275,0.222766217870257,0.2416506382234656,11.07557113556142,5.503214755761766,24.65308119231391,12968.680636080502,64.78592180029833,13.908352969344394,21.229926618403297,14.334460147731043,15.313182064819594,0.5465990557789824,0.772419627749577,0.6953748006379585,0.5855572998430141,0.1150506512301013,0.7019162526614621,0.923728813559322,0.8715203426124197,0.7301038062283737,0.1471571906354515,0.4958236658932715,0.7077294685990339,0.6371994342291372,0.5431472081218274,0.1061865189289012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482712496453,0.0041779905082545,0.0066700507614213,0.0088823846255475,0.011231382762269,0.0132889350522392,0.0156488938729737,0.0177929767251939,0.0200977285273251,0.0223819470041364,0.024236956231994,0.026583019313503,0.0286604553587955,0.0306666941365528,0.0329115752972258,0.0348670133038381,0.0370715543129336,0.0391501898379634,0.0410386478451591,0.0429435714806368,0.057938794255177,0.0714875989832316,0.084750560949525,0.0975404666806811,0.1101226864538977,0.12593132747852,0.138909206551121,0.1508033559116574,0.1625182703694615,0.1740029352215878,0.1876795300749857,0.2012645914396887,0.213197583449235,0.2239686301923476,0.2349735182295672,0.246347941567065,0.2570204982936676,0.2670984863819355,0.2766754449691246,0.2852199816681943,0.2940550050930641,0.301659760750989,0.3084683148621767,0.3153671787860252,0.3225061950342548,0.3294753561446495,0.3358495762446639,0.341252974637635,0.3469908546853545,0.3513713177578724,0.3521030019797713,0.352006170713902,0.3527165104643788,0.3538763947505348,0.3549777757956859,0.3546586517818806,0.3542750221996701,0.3551434166570671,0.3565028183733959,0.3577694235588972,0.3585738986618553,0.3594419749166534,0.3598796473583436,0.3610848738361894,0.3612798605900719,0.3625440395435663,0.3641277782569941,0.364266853307034,0.3647575843493054,0.3679733579424628,0.3674985008533604,0.3684154003114428,0.3707600102014792,0.3745875853602394,0.3802737140160453,0.3838721221519742,0.3806581183377105,0.3795876288659793,0.3826284416690321,0.374250299880048,0.0,2.8086240595957457,61.74649188936751,222.9959068592016,323.04343167707657,fqhc8_100Compliance_baseline,56 -100000,95756,41464,390.2105351100714,7195,74.05280086887505,5598,57.88671205981871,2264,23.27791469986215,77.36211040614715,79.72338757328085,63.32787542470121,65.07539258887246,77.09251949831254,79.45348504791288,63.229377665892976,64.97927619507045,0.2695909078346119,269.9025253679679,0.0984977588082358,96.11639380200644,77.64482,54.58647486710151,81086.11470821672,57005.801064269086,240.73229,148.4523273923976,250765.2053135052,154395.3040983307,267.86237,127.77306756241856,276265.99899745185,130768.1592532077,4012.8356,1797.4374289965222,4151032.614144284,1837572.844436881,1356.90356,583.4297751296913,1404783.0736455158,597028.1706939415,2219.90884,916.2218926096446,2284289.9035047414,927806.5588240492,0.37954,100000,0,352931,3685.732486737124,0,0.0,0,0.0,20291,211.30790759847943,0,0.0,25046,258.04127156522827,2087264,0,74967,0,0,0,0,0,37,0.3759555536989849,0,0.0,0,0.0,0,0.0,0.07195,0.1895715866575328,0.3146629603891591,0.02264,0.316754617414248,0.683245382585752,25.31020479639765,4.586454140395289,0.3354769560557342,0.2036441586280814,0.2341907824222937,0.2266881028938907,11.36393702873594,5.812773929715369,23.916983147792934,12986.49740948948,63.07310125371581,13.28120105413819,21.12287902284014,14.78311310388867,13.885908072848808,0.5528760271525545,0.7798245614035088,0.7002129925452609,0.5659801678108314,0.1174152876280535,0.7045619116582187,0.9183098591549296,0.8542600896860987,0.7272727272727273,0.104,0.5032013279582642,0.7171974522292993,0.6522346368715084,0.5117227319062182,0.1207065750736015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024720626526042,0.0047052142697791,0.0071261800832402,0.0094597478077974,0.0116779411016733,0.0140139324561046,0.0159280484571615,0.0181123907539001,0.0198770973711925,0.0220570164659621,0.0243559767003035,0.0260800788873595,0.0281372811259027,0.0302034170771418,0.0322214424307476,0.0342930989919875,0.0362013440888051,0.0380465232097279,0.0399675685789424,0.0420086663055706,0.056213203056495,0.0698652494141278,0.0833202244245189,0.0959888098944091,0.10782504139815,0.1231294747194873,0.1367488729779899,0.1489094450890433,0.1620013248146327,0.173112595563085,0.1865609753470689,0.1998917748917749,0.2127347098627096,0.2239725203198669,0.2343488597340847,0.2463904617328,0.2572172029081,0.2670694932037087,0.2767565359477124,0.2859286409713075,0.2938861039397061,0.302412373063784,0.310171758661916,0.3177647439818646,0.3241486557082285,0.3307150696080003,0.3365187114874004,0.3419903499726285,0.3469160427946015,0.3524015680477277,0.3533986602148508,0.3539247689489415,0.354461781329725,0.3550556921741646,0.3558225645753713,0.3560751245688003,0.35613267376966,0.3564359690941969,0.3580576216123792,0.3595778496044572,0.3611027813179399,0.3619433198380566,0.3636915858486416,0.3652490995727165,0.3664621676891615,0.3671573233114104,0.3690272551032044,0.3713422692089862,0.3746316823347832,0.3765718592566147,0.3800645718703105,0.3813052453289578,0.3828355862936183,0.3848831050919271,0.384665670526709,0.3870126792273966,0.3894208846329229,0.3858597962852007,0.390997830802603,0.4013948082138706,0.0,2.1974596050736848,61.142617629535046,213.87317735171115,317.0314037446463,fqhc8_100Compliance_baseline,57 -100000,95759,41735,391.9213859793858,7300,75.0738833947723,5733,59.2738019402876,2379,24.519888470013264,77.32840490063373,79.68967380707474,63.31625382636724,65.06521086002624,77.04345481236744,79.40123409751806,63.21330956229331,64.96309888794302,0.2849500882662852,288.439709556684,0.1029442640739262,102.11197208322176,77.7744,54.71877846443308,81218.8932632964,57142.17824375054,241.48942,148.3090681446528,251611.4203364697,154304.2723343527,268.85326,128.41337448685843,276309.45394166606,130739.36981368584,4197.06954,1856.1246998180625,4347421.986445138,1902800.760051863,1394.31783,594.4226538961553,1446504.8716047576,611183.7257032295,2346.564,964.3627588146738,2421078.227633956,982972.2374837692,0.38155,100000,0,353520,3691.767875604382,0,0.0,0,0.0,20347,211.8756461533642,0,0.0,25009,256.748712914713,2086189,0,74919,0,0,0,0,0,44,0.4594868367464155,0,0.0,0,0.0,0,0.0,0.073,0.1913248591272441,0.3258904109589041,0.02379,0.3177740215836692,0.6822259784163308,25.5228623416516,4.58740961685952,0.3223443223443223,0.199023199023199,0.2354788069073783,0.2431536717251003,10.69670578796084,5.277158526187596,25.237974659214764,13050.396826261043,64.22352979913488,13.208279597445042,20.76250606075441,15.083159175092884,15.16958496584254,0.5281702424559568,0.7589833479404031,0.6861471861471862,0.5437037037037037,0.1147776183644189,0.7008733624454149,0.9269662921348316,0.8571428571428571,0.7206896551724138,0.1602787456445993,0.4737325074558385,0.6828025477707006,0.6325515280739161,0.4952830188679245,0.1029810298102981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021685599343351,0.0044828495507008,0.0066908987531982,0.0090245736701965,0.0111900063070944,0.0133841264667535,0.0157346222874857,0.0179176706007269,0.0201189965037109,0.0223043380350891,0.0245707549587412,0.0265724787974618,0.0286202038276823,0.0308283377623962,0.0326924863007337,0.0347721822541966,0.0367268774908131,0.038423645320197,0.0406521806902141,0.0430136643892684,0.0581591967100181,0.0726664226324321,0.0853062679556273,0.0980975404666806,0.1096817018048487,0.1253884038977784,0.1389307149067928,0.1515786785284822,0.1633450817045818,0.175321402914339,0.1891283509429491,0.2022525397872961,0.2145087415820795,0.2256088891805286,0.2369478353715587,0.2479369053025687,0.2587809859705124,0.2684541095427838,0.2777077585130179,0.2869732635029051,0.2948808462865013,0.3025503041647169,0.3095790795177298,0.3169297245393986,0.3235397842662743,0.3310301430034424,0.3362529802986573,0.3422032385566747,0.348282665697448,0.3538323242471512,0.3553650965042516,0.3566632195794553,0.3575887686788508,0.3582843577198112,0.3586924131354669,0.3584444717595722,0.3580527318932656,0.3585229146060006,0.3599945122787762,0.3611340243158914,0.3617597292724196,0.3625708959663665,0.3640753259295026,0.3656723123231052,0.3667326924005991,0.3674463682321817,0.3673410901587665,0.3703107237589996,0.37151909875022,0.3728793261746038,0.3711892337269981,0.3739690310221891,0.3734939759036144,0.3761944805443009,0.3765151515151515,0.3763132760267431,0.3802293151533932,0.3782662795520531,0.3754563324908733,0.3670127795527156,0.0,2.360237911950396,60.60649251737241,211.142358600057,338.94581435771977,fqhc8_100Compliance_baseline,58 -100000,95733,41301,388.2151400248608,7166,73.69454629020295,5508,56.98139617477776,2208,22.67765556286756,77.31464774318667,79.68139511162981,63.30648041847581,65.05635518987671,77.02753063214021,79.3942235117415,63.2008125624717,64.95312880100687,0.2871171110464559,287.1715998883104,0.1056678560041035,103.22638886984237,76.82048,53.96215118960763,80244.51338618867,56367.345836448905,236.87843,145.97574264446416,246877.9626670009,151923.5714377113,256.89019,122.1620583903994,265307.1668076839,125123.75241778394,4018.12777,1802.619632450477,4158486.2168740137,1844430.817433004,1339.76891,578.8438737623552,1383534.444757816,588716.1257958314,2181.73284,915.4173485296802,2242993.534100049,925537.113900943,0.37979,100000,0,349184,3647.477881190394,0,0.0,0,0.0,20000,208.3189704699529,0,0.0,24073,248.4932050599062,2092611,0,75096,0,0,0,0,0,35,0.3551544399527853,0,0.0,0,0.0,0,0.0,0.07166,0.1886832196740303,0.3081216857382082,0.02208,0.3214945867441246,0.6785054132558753,25.63339622640161,4.628489391581132,0.3213507625272331,0.2006172839506173,0.2391067538126361,0.2389251997095134,10.95797799802544,5.416762383690736,23.55114796462074,12971.40557768356,61.99768815812389,12.8587749943171,20.053257373009234,14.696480053275344,14.38917573752222,0.5406681190994916,0.755656108597285,0.7011299435028249,0.5823842065299925,0.1025835866261398,0.6806784660766961,0.8832807570977917,0.8741721854304636,0.7157190635451505,0.1149825783972125,0.4949421965317919,0.7043147208121827,0.6416097190584662,0.5432220039292731,0.0991253644314868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779871346806,0.0042582960732426,0.0064759739336973,0.0085865257595772,0.0107329976092375,0.0130608419250988,0.0153028432682792,0.0175716240223805,0.0197084619630773,0.0220302198927152,0.024125167891893,0.0260288319369147,0.028081219527248,0.0303239500473972,0.0323496320151942,0.0344150272404916,0.0362427643909662,0.0382791503668115,0.0403331461725622,0.0424215274666888,0.0567452155482934,0.0709964412811387,0.0840799882493652,0.0976104835825918,0.1097073556551542,0.1246006389776357,0.138196021822659,0.1502693839306629,0.161738925944929,0.1735738507103918,0.1866945615718923,0.1990118213043525,0.2112700609045248,0.2233316162690019,0.2339111640421684,0.2445863409217101,0.2556024210962061,0.2660152988695083,0.2756278233560529,0.284330510519482,0.2927267875581544,0.3010646780169785,0.3084798443542838,0.3156940006246846,0.3230325454589713,0.3291601847050399,0.3359473849044785,0.341593235878368,0.3468348855584772,0.352105798038724,0.3535182041124316,0.3546703750619596,0.3556435253014764,0.3565965444950481,0.3584995534385233,0.3581588032220943,0.3583974613248711,0.3594835819912393,0.3595892759188151,0.3604611611378649,0.3617705102903862,0.364420218037661,0.3643841940696283,0.3655612816491149,0.3663113212097824,0.3665437619309118,0.367853661333792,0.3692725778929406,0.3696104353957342,0.3713053203387123,0.3739669421487603,0.3753949975898452,0.3753193663771078,0.3770010053360142,0.3781769539461112,0.3789245759653554,0.3790788446526151,0.3812212463404433,0.3885296598256958,0.3917322834645669,0.0,2.034660752164956,60.1014075035223,206.00250725891124,318.17483630114083,fqhc8_100Compliance_baseline,59 -100000,95808,41469,389.0593687374749,7374,75.60955243820975,5778,59.660988643954575,2339,24.0063460253841,77.3504688262772,79.68282614533227,63.33176974345843,65.0600674581654,77.05802118669116,79.38892681416908,63.22461606185365,64.95437596443816,0.2924476395860296,293.899331163189,0.1071536816047782,105.69149372724952,77.6468,54.61416000984644,81044.1716766867,57003.75752530732,242.0089,149.0643602252342,251901.74098196396,154890.48954704637,272.92112,130.89771559021744,280000.4488142953,132896.62796432426,4178.31784,1879.9175829878316,4321442.071643287,1922477.2075273795,1415.72489,613.1865022605973,1462928.7324649298,625278.0992825205,2306.59146,966.1006229652636,2371744.57247829,980713.3501840323,0.37961,100000,0,352940,3683.825985303941,0,0.0,0,0.0,20402,212.2891616566466,0,0.0,25526,261.752672010688,2085035,0,74994,0,0,0,0,0,53,0.52187708750835,0,0.0,0,0.0,0,0.0,0.07374,0.194251995469034,0.317195551939246,0.02339,0.3266968325791855,0.6733031674208145,25.09206635997544,4.583406928139189,0.3307372793354102,0.2026652821045344,0.231914157147802,0.2346832814122533,11.106911630407415,5.522276625547059,25.060336559442003,13012.149489127958,65.21519643230698,13.752488520531893,21.65172383771877,14.83479562662554,14.976188447430768,0.5484596746278989,0.7754056362083689,0.7080062794348508,0.5604477611940298,0.1157817109144542,0.7172218284904324,0.9277777777777778,0.8763102725366876,0.735593220338983,0.1541218637992831,0.4939317609342798,0.7077681874229347,0.6520223152022315,0.5110047846889952,0.1058495821727019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259051401017,0.0047859018687324,0.0069623464934537,0.0091442040986354,0.0113310413572838,0.0131796052229532,0.0153383305287848,0.0175945592680336,0.0199480593840742,0.0219683475625985,0.02430195953775,0.026605740103712,0.0285681965426106,0.0305358448593703,0.0325691243051473,0.034654488345181,0.0368303918016665,0.0391017995125239,0.0409548156461736,0.0429722470904207,0.0575613114548887,0.071826612439491,0.0849759502027728,0.0976675772221054,0.1101628842952567,0.1253593168752113,0.1385266238310325,0.1512972438222685,0.1632254345133877,0.1746147416250509,0.1884934514264805,0.2010011676685551,0.213941158576333,0.2252161651053224,0.236143199771162,0.2470247988830529,0.2580619956020404,0.2671288376699379,0.2771973654326595,0.2859155897717899,0.2935592906422188,0.3018660427025446,0.3087603423173893,0.3157787474824973,0.322404105757303,0.3292845504369723,0.3352517805196108,0.3416400969264124,0.3473391900133656,0.352000317510716,0.3529475348259042,0.3528168430359462,0.3542205817883557,0.354590689510104,0.3564303287855066,0.356699446834665,0.3564922988889418,0.3576868550328047,0.3587012452403005,0.3606233971197475,0.3619457711255688,0.3632973659155823,0.3640187603844617,0.3652420115949845,0.366799758015729,0.3683782649742998,0.3707456705309861,0.3715225088517956,0.3732084375110047,0.3745306383318686,0.3762634347130116,0.3788015978695073,0.3804745677142496,0.3774834437086092,0.3802923149457803,0.3838228327806726,0.3868199233716475,0.3926045665791069,0.3986928104575163,0.3948678667177326,0.0,2.485175779092083,62.02664924557234,222.07978428545425,330.7715034942397,fqhc8_100Compliance_baseline,60 -100000,95726,41259,387.0735223450265,7246,74.62967218937384,5611,58.12422957190314,2275,23.45235359254539,77.30949638025908,79.67190954067567,63.31695901961641,65.06064987664439,77.03367882812229,79.39454835335596,63.21624250597644,64.96192256111514,0.275817552136786,277.3611873197126,0.1007165136399734,98.72731552924564,77.09042,54.19765863011986,80532.37364979212,56617.49015953854,238.6412,147.0968979304471,248793.9744687964,153162.3779646565,263.50617,126.17712824376908,272837.2333535299,129816.21019106868,4052.17574,1819.533588067173,4198976.213358962,1866650.4586707617,1353.57843,596.9448037763406,1399105.3632242023,608708.4033811723,2238.73458,926.2637089991769,2308817.520840733,939670.1176833916,0.37935,100000,0,350411,3660.562438626914,0,0.0,0,0.0,20089,209.32661972713788,0,0.0,24625,254.76881933852871,2090205,0,75077,0,0,0,0,0,52,0.5432170988028331,0,0.0,0,0.0,0,0.0,0.07246,0.1910109397653881,0.3139663262489649,0.02275,0.3127850905773491,0.6872149094226508,25.538964057892088,4.585570613968933,0.3405810016039922,0.1985385849224737,0.228301550525753,0.2325788629477811,11.16061960493309,5.5588645193927615,24.12098136767689,12962.569877476062,63.23731940209473,13.041287699574523,21.62343421825645,14.181735774342556,14.390861709921197,0.5421493494920692,0.7800718132854578,0.6692830978545264,0.5722092115534738,0.1233716475095785,0.7146912704045423,0.927170868347339,0.8185567010309278,0.7424749163879598,0.2126865671641791,0.4842931937172774,0.7107001321003963,0.6185133239831697,0.5203665987780041,0.1002892960462873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293262170729,0.0046326332008758,0.0066755945134323,0.0090294141545461,0.0114878259543536,0.0136696285891681,0.0155939458798348,0.017567139955291,0.0197559380237929,0.0219013212432581,0.0237394807244846,0.0259358892744932,0.0282365038560411,0.0302771284100388,0.0322494147252044,0.0343854936198791,0.0365969778513765,0.0386322623467673,0.0408772020994647,0.0430212814716819,0.0574647828493259,0.0705658244541667,0.084139204128296,0.0965024817027004,0.1090418239723282,0.1240150193029774,0.137149830220713,0.149197325838869,0.1615853007157354,0.1730841402086617,0.1867109061920972,0.1995344808920645,0.2122125608070607,0.2236158080791498,0.2345732029598308,0.2453631334464141,0.2564792886187944,0.266803361798968,0.2759137854635111,0.2843271005537276,0.2928337366696386,0.3003592702250413,0.3084903537548705,0.3153562815698225,0.3223406712290468,0.3286324153587997,0.3346980680864916,0.3407130937671171,0.3469340112056443,0.3517668382129202,0.3531159273512929,0.354540563656178,0.3555586947308942,0.3562625809161079,0.3571556323963394,0.3569891812146545,0.3569145129224652,0.3581840968305794,0.3596352646220421,0.3607679046045542,0.3624204061640481,0.3638155536972882,0.3636939046775112,0.36430774773152,0.3645345308896711,0.3659856084878407,0.3666916253887801,0.3669181034482758,0.3677209368145475,0.3698384201077199,0.3699289479715792,0.3734068758701938,0.371896628357356,0.372669850562317,0.3718180951472972,0.3759290338048429,0.3810261974887614,0.3797101449275362,0.381282976950847,0.3883720930232558,0.0,1.8195546384155143,62.59639581204455,202.29563350392712,331.0209707438852,fqhc8_100Compliance_baseline,61 -100000,95730,41327,386.9111041470803,7214,73.99979107907657,5578,57.64128277446986,2308,23.712524809359657,77.40440741590693,79.76183170883266,63.3594678928421,65.09931080921139,77.12623506508578,79.48403388979106,63.25740319690161,65.0002286214105,0.2781723508211513,277.79781904159506,0.1020646959404842,99.08218780088872,76.13518,53.53468831321472,79531.16055572966,55922.582589799145,236.2956,145.5459020364367,246243.95696228975,151446.4034643651,262.05816,125.2998582579809,269737.21926250914,127797.92231462256,4020.6704,1804.982004926904,4159834.179463073,1845315.8517987083,1359.77073,589.5986184341868,1407064.661025802,602546.3537209305,2280.51744,945.003108907809,2345339.9770186986,955725.3173873018,0.38013,100000,0,346069,3615.052752533166,0,0.0,0,0.0,19953,207.79275044395692,0,0.0,24488,251.80194296458788,2101480,0,75295,0,0,0,0,0,40,0.4178418468609631,0,0.0,0,0.0,0,0.0,0.07214,0.1897771814905427,0.3199334627113945,0.02308,0.3166973926784303,0.6833026073215697,25.37897143745691,4.554167251400883,0.3363212621011115,0.2016851918250269,0.2214055216923628,0.2405880243814987,10.880352858707004,5.330333333637722,24.370681698464875,13050.735504808692,62.77375883313626,13.088606902474403,21.31990288634093,13.617438325287123,14.747810719033808,0.5410541412692721,0.7395555555555555,0.7009594882729211,0.5797570850202429,0.1154992548435171,0.7122198120028923,0.9072463768115944,0.8663967611336032,0.7419354838709677,0.1396226415094339,0.4846245530393325,0.6653846153846154,0.6418234442836469,0.5324267782426778,0.1095636025998143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025210849777759,0.0049252596909044,0.0069693834073893,0.0092012390189407,0.0114485577460779,0.013711319218241,0.0159388535031847,0.0181116904584553,0.020179418015367,0.0220516756203632,0.0240747763167334,0.0264694713290158,0.028682752310555,0.030775886042703,0.0328019398441933,0.0349304801778053,0.0370542972835824,0.0392954210668271,0.0415610060278528,0.0438301373858156,0.0577720234304031,0.0720437872175651,0.0859636424667736,0.0986710684021279,0.1106766029661329,0.1258168206906761,0.1386985211431966,0.1512599674228955,0.1629969124921209,0.1748506718426612,0.1889397447633407,0.202720249302084,0.2149903740523608,0.22633627854081,0.2371316652362404,0.2479235420496578,0.2578751799323789,0.2673549025561441,0.2774418947583343,0.2865270797797442,0.2946738175597577,0.3027093308419946,0.3105664166322131,0.3181377999354399,0.3252972619177484,0.3315420560747663,0.3376613638919783,0.3434896362527941,0.3486791087215013,0.3541123488978431,0.3547667669819432,0.3562313704482081,0.3565290767175304,0.3566470902295782,0.3572805742591878,0.357469523853225,0.356723480352593,0.3571522309711286,0.3585388751386874,0.359803834150691,0.3609559512652296,0.3615393761642424,0.3630638762358572,0.3635976797832075,0.36431289436925,0.3657982073326887,0.3663380442215637,0.3697711749708854,0.3717795297761509,0.3717540226222718,0.3731452312468611,0.3743195645212936,0.3727709624383458,0.3726328649969456,0.3721914073516969,0.3731643770724775,0.3726669751658183,0.3707247557003257,0.3711079943899018,0.3699560527367159,0.0,2.485735407697617,60.804972331711824,208.40693841141868,320.5835154859114,fqhc8_100Compliance_baseline,62 -100000,95753,41353,389.2201810909319,7231,74.36842709888985,5586,57.79453385272524,2283,23.51884536254739,77.33232137485312,79.69756893357882,63.31916690730778,65.07089015896955,77.05617208181305,79.42115479042343,63.21766063516589,64.97211683436629,0.2761492930400777,276.4141431553924,0.10150627214189,98.7733246032576,76.49576,53.82962892680869,79888.63012124946,56217.17223147962,238.20366,147.16210423786018,248247.6475932869,153168.06182350442,266.05087,127.03159692190567,274455.4008751684,130041.79753960184,4098.04827,1827.772021859378,4243704.218144601,1872732.8144908024,1353.29937,591.262660560422,1398600.97333765,602765.1149942261,2259.59844,935.4327715025174,2328975.050390066,948014.3255845197,0.37828,100000,0,347708,3631.301369147703,0,0.0,0,0.0,20063,208.98561924952745,0,0.0,24823,255.85621338234836,2094843,0,75131,0,0,0,0,0,42,0.4386285547189122,0,0.0,0,0.0,0,0.0,0.07231,0.1911547002220577,0.3157239662563961,0.02283,0.3183915622940013,0.6816084377059987,25.231021472677803,4.510573848387064,0.3288578589330469,0.1944146079484425,0.2316505549588256,0.2450769781596849,10.677170351825428,5.169059588394141,24.117130011698578,12916.959380135826,62.84202008227751,12.858426124077772,20.70066037312393,14.26652972982757,15.01640385524822,0.5392051557465092,0.7762430939226519,0.6962438758845945,0.5656877897990726,0.1154127100073046,0.7022222222222222,0.9147727272727272,0.8736383442265795,0.7084870848708487,0.1231343283582089,0.4872521246458923,0.7098092643051771,0.637155297532656,0.5278592375366569,0.1135331516802906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021383112408285,0.0042905395125216,0.00652871415807,0.0086694040165867,0.0110380890371937,0.013396359042797,0.0154911479154768,0.017805184330621,0.0197537933008874,0.0220006347321328,0.024244971603141,0.0263333504440223,0.0285247149070941,0.0302905461773763,0.0320869959968635,0.0341798187136316,0.0362405127514832,0.0382508558979147,0.0398237445959428,0.0417343665375161,0.0563524376239691,0.0702402377265307,0.0842012523205689,0.0966005278487534,0.1079596377094294,0.1234993600795405,0.1372698816913364,0.1503187967683907,0.16247997436719,0.1731134250571039,0.1872306963116166,0.2003311795837527,0.2133104131080478,0.2246250779378466,0.2357615310962658,0.2467520960471375,0.2567525335952498,0.2662239729881823,0.2753771239827017,0.2837929177788725,0.2921272876705986,0.2998443552445261,0.3075921498070595,0.3139812272983373,0.320504877485817,0.3265535051711598,0.3323820610065963,0.3384010584972393,0.3446292554018343,0.3502362537285853,0.3520451453891635,0.3521247005039795,0.3533491204330176,0.3539004221361244,0.3542456829235643,0.3544950021463175,0.3547106913247083,0.3553732594650577,0.3565947119246612,0.357724304499508,0.3582943024283806,0.3592797728942092,0.3607581622349377,0.3617953789445293,0.3618199850027817,0.3626336197862083,0.3629599954215075,0.3643737524159564,0.3644400438487924,0.3667710340398201,0.3701441822022224,0.373270152388132,0.3750479355745877,0.3755010792476102,0.3772245361605452,0.3758014723343624,0.3769817073170731,0.3791641429436705,0.3867509620670698,0.3811728395061728,0.0,2.1574630734643923,59.50816090588411,214.08091192562728,320.9206733819667,fqhc8_100Compliance_baseline,63 -100000,95723,41462,389.13322816877866,7274,74.71558559593828,5622,58.12605121026294,2309,23.74559928125947,77.41699606751023,79.77155985420032,63.36600846061516,65.10116910674795,77.13161859758355,79.48634951829376,63.26136827768829,64.99954673210989,0.2853774699266722,285.2103359065552,0.1046401829268788,101.62237463805468,76.89396,54.0296303427919,80329.65953845993,56443.72861568473,235.47235,144.6867083569114,245393.4895479665,150551.4540464793,260.72632,125.06649022494348,268461.7803453716,127638.84546583984,4139.92309,1854.8248645738352,4282808.812928972,1895610.0984860847,1405.5485,609.1363271931671,1451650.3452670728,619653.6748672379,2293.56882,955.0331099323184,2360033.2835368724,965457.5593531488,0.38144,100000,0,349518,3651.348160839088,0,0.0,0,0.0,19865,206.9199669880802,0,0.0,24351,250.6712075467756,2097493,0,75239,0,0,0,0,0,47,0.4701064529945781,0,0.0,0,0.0,0,0.0,0.07274,0.1906984060402684,0.3174319494088534,0.02309,0.3174686192468619,0.6825313807531381,25.30499274199555,4.586435919767544,0.3299537531127712,0.1931696905016008,0.2248310209889719,0.252045535396656,10.944648316465646,5.337992525875201,24.47788430485736,13067.378126186835,63.01342925251533,12.666177898127469,20.878934971492782,13.94942650896982,15.518889873925232,0.5423336890786197,0.7679558011049724,0.6975741239892184,0.5957278481012658,0.1185603387438249,0.7116077865897621,0.9287749287749288,0.8577494692144374,0.7446808510638298,0.166077738515901,0.4868949232585596,0.691156462585034,0.6430635838150289,0.5529531568228105,0.1067019400352733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0047817321622141,0.0070898247322297,0.0094030199331837,0.0114893443956401,0.0136607015615138,0.0158091083295959,0.017993468054705,0.0201729106628242,0.0222822417285617,0.0246446760326682,0.0267044346603446,0.028526491087399,0.0306784478497281,0.0327638854501939,0.0350200985812158,0.0369296710805578,0.038769498838367,0.0411682170139791,0.0428903311837814,0.057556961760959,0.0717821005158684,0.0855419158535305,0.0978985674919539,0.1100821634620455,0.125244577000772,0.1383838598128858,0.1512964618725252,0.1632070936381603,0.1745699824132458,0.1880195546366886,0.2004695800828798,0.2131623281343405,0.2247116140872148,0.2354906054279749,0.2473306261548845,0.258701032306972,0.2688607139645715,0.2783743635683264,0.2871809545610621,0.2957365371940008,0.3034946236559139,0.3111631371714377,0.3185780310831198,0.3252090742471506,0.3311941070680693,0.3376063031515758,0.3434662053878049,0.3489859049196878,0.3545011940731749,0.3559723699624328,0.3569610150132793,0.3576403575557623,0.3584760856658799,0.35964337808472,0.359323489274269,0.3597847590409116,0.3606396063960639,0.3620554304048058,0.3629880549117489,0.3629047351675089,0.3635717809570794,0.3636420787929589,0.3646068293990218,0.3647517321016166,0.3656486557034716,0.3678026522173107,0.3696882071913502,0.3717093717093717,0.3728927848954821,0.3743125937372176,0.3780118078825594,0.3794710327455919,0.3807919123841617,0.3835577738016762,0.3862991008045433,0.3873929008567931,0.3855786709755605,0.3878440992095939,0.3880484114977307,0.0,2.385612406540705,60.851288251158046,209.05702532002212,323.36696900012066,fqhc8_100Compliance_baseline,64 -100000,95703,41248,387.1665465032444,7195,74.05201508834624,5632,58.34717824937567,2288,23.541581768596597,77.3508434030137,79.74123283837878,63.31502979323547,65.08257931835853,77.06863041923707,79.45817337739436,63.21144426490456,64.98144016809185,0.2822129837766312,283.0594609844184,0.1035855283309103,101.1391502666754,76.80706,54.008967303309085,80255.64506859765,56433.93342247274,236.32803,145.1522475269627,246451.2815690208,151181.76810231936,260.5845,124.2967479333862,269455.05365558027,127631.87243544115,4075.52244,1813.0345775875855,4225118.000480654,1861045.962600528,1381.73907,595.4910928003163,1432036.017679697,610486.0378465839,2255.977,937.4553467271744,2323888.174874351,950291.984990864,0.37893,100000,0,349123,3647.983866754438,0,0.0,0,0.0,19951,207.95586345255637,0,0.0,24334,251.38187935592404,2094592,0,75102,0,0,0,0,0,41,0.4284087228195563,0,0.0,1,0.0104489932395013,0,0.0,0.07195,0.1898767582403082,0.3179986101459346,0.02288,0.3194499537220679,0.680550046277932,25.413967115038197,4.611140705189874,0.3252840909090909,0.2072088068181818,0.2297585227272727,0.2377485795454545,11.206256133407512,5.482409351539856,24.277184353966728,12997.491026661628,62.99686860659592,13.47636576418576,20.52904213227273,14.312883667712978,14.67857704242444,0.5413707386363636,0.7429305912596401,0.6921397379912664,0.5772797527047914,0.1247199402539208,0.7022222222222222,0.912536443148688,0.8741573033707866,0.712280701754386,0.1552346570397112,0.4906585707613264,0.6723300970873787,0.6337418889689979,0.5391476709613479,0.1167608286252354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0045025402845524,0.0067201981544833,0.0090454508496625,0.011404097743596,0.0136101546423259,0.0159136582031847,0.0177911228220683,0.0203004673709616,0.0224903217877552,0.0245205619936416,0.0266225696120623,0.0289135063412225,0.0307338835141511,0.0329115752972258,0.0349312023818138,0.0370481646861369,0.0390376052230053,0.0410976002995724,0.0429665919633084,0.0576346601769356,0.0719842524631702,0.0847800986669465,0.0968417287379539,0.1085195265523134,0.1236682571758059,0.1370540595047287,0.1495554017357968,0.1612758406909378,0.1728515625,0.1867366628219086,0.2002122084840085,0.2123929438138664,0.2243285248341834,0.235576499603629,0.2461132426977755,0.2564068205420254,0.2670149993243547,0.2763349238809361,0.2853669445941761,0.2938042231823289,0.3022152454810632,0.3097831885157481,0.3165520304416195,0.3231111705815806,0.3297975998125239,0.3357706272693126,0.3413662287401975,0.3471076520635578,0.3526940808158197,0.3539067452556615,0.3547311724270935,0.3565076456909308,0.3570798698951933,0.3579192777167295,0.3581305606174295,0.3581023285284334,0.3589061345158906,0.3604311008468052,0.3616751269035533,0.3623226484498161,0.3622414679479575,0.3632916430980663,0.3638010871753573,0.3646515209857527,0.3659784396126438,0.3660958124715521,0.367418058520658,0.3677887141406004,0.3691158452235089,0.3721572891184199,0.3710207979626485,0.3752752437873545,0.3727363032016504,0.3756032932715056,0.3776633947809432,0.3851122731467241,0.3858204458726652,0.3870791130577607,0.3879377431906615,0.0,1.9910015120490656,59.74127175216008,209.55464775735243,329.2721023195085,fqhc8_100Compliance_baseline,65 -100000,95717,41621,391.45606318626784,7150,73.24717657260466,5588,57.72224369756679,2266,23.26650438271153,77.26691653433518,79.62634942948507,63.2951211478972,65.03887262662154,76.98372776586336,79.34256510547227,63.19092113241116,64.93696447883502,0.2831887684718168,283.7843240127995,0.104200015486036,101.90814778651712,76.38092,53.77271666060567,79798.69824587063,56178.85711065502,237.90636,147.05246178106776,247901.3550362005,152982.0635634921,265.79914,127.4276059041708,272791.3327831002,129502.38464485298,4050.18233,1816.4383308439935,4188684.8626680737,1854988.6549348528,1328.54325,577.3336240962733,1371981.2572479288,587157.6356303197,2238.401,931.8712289882436,2301303.2585643097,943283.801656076,0.38088,100000,0,347186,3627.213556630484,0,0.0,0,0.0,20125,209.57614634808863,0,0.0,24828,254.6256150944973,2089933,0,75053,0,0,0,0,0,35,0.3552138073696417,0,0.0,0,0.0,0,0.0,0.0715,0.1877231674018063,0.3169230769230769,0.02266,0.3081410766374967,0.6918589233625033,25.27769320175554,4.558577845763531,0.3400143163922691,0.193092340730136,0.2285254115962777,0.2383679312813171,11.098180043788297,5.534751733641736,24.245409566847,13047.300713466784,63.09557997402612,12.587337166277196,21.60012732403062,14.366030196866417,14.542085286851872,0.5431281317108089,0.7775718257645968,0.6915789473684211,0.586530931871574,0.0998498498498498,0.6931486880466472,0.9154078549848944,0.8382352941176471,0.7114093959731543,0.1385767790262172,0.4943074003795066,0.7165775401069518,0.6425561797752809,0.5485188968335035,0.0901408450704225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0046436646422451,0.0071335795754353,0.0094168080373015,0.011665276732502,0.013633633022105,0.0160864468117641,0.0180479986933575,0.0203326416078018,0.0225904847690795,0.0246840179184648,0.0267756308905361,0.0288244004771502,0.0306632195865563,0.0324161482352698,0.0346595548939953,0.036720618844947,0.0387081379424824,0.040684379027899,0.0425006512112529,0.0577547589461923,0.0708625977370024,0.0840075979389016,0.0967497553635875,0.1090302908810837,0.12475526251733,0.1382264880130805,0.1511471847638525,0.1624497390709214,0.1737034770753491,0.1878840804709231,0.2020068484244289,0.214845791949817,0.2262586658197071,0.2373516414489272,0.2476327912527058,0.2582142297971325,0.2683899756603263,0.2783635165534323,0.2862253204613726,0.2938888438697429,0.3017025362403691,0.3092888536125952,0.3166306695464362,0.3242112432800603,0.3308319859792898,0.3364353529906062,0.3420733806894265,0.3472987012987013,0.3525452473699552,0.3545021516143874,0.355301929860967,0.3556638246041413,0.3574580502816001,0.3583435344698892,0.3585172870293402,0.3590858416945373,0.3598572467120481,0.3604361209995013,0.361705949985628,0.3630793016327915,0.3645120203789205,0.3653996492636649,0.3668573745382467,0.3682333244364642,0.3690920561484674,0.371285418106427,0.3731770999172132,0.3760824447148071,0.3779610743163626,0.378275413491916,0.380037971250339,0.3832254757480617,0.3870593692022263,0.3865866438029913,0.3854628188240929,0.3829853054911059,0.3923973022685469,0.3915094339622642,0.3956301209520094,0.0,2.605093087809192,60.22764912691812,212.77925941231933,321.02730906134843,fqhc8_100Compliance_baseline,66 -100000,95706,41595,390.529329404635,7234,74.45719181660502,5671,58.71105259858316,2265,23.363216517250745,77.288290147924,79.65691524706287,63.294707477804174,65.04360949157179,77.01208808201963,79.37725788198186,63.194243327455325,64.94351898498651,0.2762020659043713,279.65736508100747,0.1004641503488485,100.09050658527484,76.59498,53.89967279672426,80031.30420245334,56317.75647155277,239.60408,147.50854384384508,249828.6523310973,153601.9374606452,268.9315,128.7438919855982,276768.938206591,131344.44663821845,4040.2355,1802.1894798695284,4187954.96625081,1849599.4145785612,1359.06379,586.0677348669706,1406983.3343782,599346.5360087481,2222.46826,915.0179617606848,2294862.09851002,934296.232227014,0.38228,100000,0,348159,3637.78655465697,0,0.0,0,0.0,20148,209.95548868409503,0,0.0,25198,259.0851148308361,2087753,0,75045,0,0,0,0,0,46,0.4806386224479134,0,0.0,0,0.0,0,0.0,0.07234,0.1892330229151407,0.3131047829693116,0.02265,0.3203360903242746,0.6796639096757253,25.361103696701765,4.458280632114258,0.3343325692117792,0.2084288485275965,0.2288837947451948,0.2283547875154293,11.247969854243152,5.822304089461512,23.924543769615976,13071.848658511972,63.848325603870286,13.993202326645712,21.54123122905073,14.235813004800608,14.078079043373233,0.5570446129430435,0.7834179357021996,0.6930379746835443,0.5947611710323575,0.1135135135135135,0.7195467422096318,0.9069212410501192,0.822680412371134,0.7689393939393939,0.1393442622950819,0.5031697581591923,0.7155963302752294,0.6484762579730687,0.5502901353965184,0.1075166508087535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875854525567,0.0040652467026895,0.006504444534643,0.0087263048822609,0.0109327963550565,0.0130945229052327,0.0154360637018005,0.0177206145051804,0.0196669699168958,0.0216855139947807,0.0241252792752167,0.0262158444704481,0.028520902305114,0.0306790797305925,0.0327485018205072,0.0350443868007399,0.0372943478666017,0.039413876839418,0.0413225719218688,0.0432091045522761,0.0576483243344856,0.0708557549362423,0.083965620375909,0.0967463591211381,0.1092146928435718,0.1254525820999809,0.1392575760793391,0.1517408165004687,0.1645549318364073,0.1759457108803728,0.1890758114957403,0.2022447564569249,0.2146552381367285,0.2263609687732667,0.2376053312771933,0.2489846645509221,0.260008051169656,0.2698917456021651,0.2787834655076289,0.2875670583910581,0.2961037755551945,0.3037440180163273,0.3111641210049726,0.3182544737822539,0.325544848758025,0.3317922219200435,0.3376341114098344,0.3432134696638966,0.3491077346989173,0.3546938937666362,0.3549014312719417,0.3558959202276054,0.3568456508817119,0.3577255835559168,0.3576516973073074,0.3576525590551181,0.3580602091744286,0.3588780117999934,0.3605403642480732,0.3612685656884551,0.3620494859337927,0.3633350533878458,0.365081704851752,0.3670216343459253,0.3683615003129664,0.3702264190317195,0.3707216730472544,0.3711542106260661,0.3737901801483574,0.3752499800015998,0.3744537969734602,0.3739737053930775,0.3767427122940431,0.3785566377789708,0.3803715518859073,0.3811213626685593,0.3799939005794449,0.3843654822335025,0.3769819573537452,0.3786259541984733,0.0,2.073812007469635,62.40801221412198,211.05072003149505,327.0399943536841,fqhc8_100Compliance_baseline,67 -100000,95811,41415,387.55466491321454,7247,74.02072830885805,5676,58.46927805784304,2270,23.12886829278475,77.36488025655099,79.68024946060615,63.35773544642036,65.07147324641488,77.07672513695921,79.3974352974119,63.24926171682429,64.96891365939285,0.288155119591778,282.8141631942458,0.1084737295960636,102.5595870220286,77.17996,54.30375681127117,80554.15348968282,56677.78210567801,237.66688,146.60122547564472,247257.65308785,152211.34128090172,269.00395,129.6772418977514,276357.87122564216,131862.27742294504,4089.90428,1857.7366262331905,4217209.923703959,1887518.8179146328,1347.47862,596.8284585450767,1387484.9025685985,604022.7671491363,2236.96392,951.8207949051476,2282741.000511423,948422.2607992066,0.37937,100000,0,350818,3661.5524313492174,0,0.0,0,0.0,20078,208.75473588627608,0,0.0,25199,258.6654976985941,2092712,0,75160,0,0,0,0,0,37,0.3757397376084165,0,0.0,0,0.0,0,0.0,0.07247,0.1910272293539288,0.3132330619566717,0.0227,0.3115703567197578,0.6884296432802423,25.248536222395018,4.48638075781307,0.3350951374207188,0.200845665961945,0.2267441860465116,0.2373150105708245,11.121692358548264,5.729213022691887,24.461233082586187,13016.272860291589,64.31237739887109,13.377085608070962,21.62792503537546,14.51005349229148,14.797313263133198,0.5528541226215645,0.7771929824561403,0.695583596214511,0.5951825951825952,0.1210096510764662,0.717983651226158,0.9085872576177284,0.8805668016194332,0.7507598784194529,0.1549295774647887,0.4952471482889733,0.7163029525032092,0.6306818181818182,0.5417536534446764,0.1119473189087488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.004511537369723,0.006554915171686,0.00920245398773,0.0115211356402721,0.0136439538956543,0.0158514954433321,0.0180084529473017,0.0204448806018972,0.0226009519422693,0.0247714508260566,0.026949364750313,0.0290964777947932,0.0312069001008666,0.0333773141467035,0.0354713163409623,0.0373822108671142,0.0394976790450928,0.0417843495597275,0.0437415461450421,0.0583504573949869,0.071896722939424,0.085074282840559,0.0980202699154545,0.1103831813106949,0.1259214667427075,0.1393227235160736,0.1518660287081339,0.1642641457090726,0.1755385818505147,0.1885121539173383,0.20148575877506,0.2138750937286054,0.2259741962266624,0.2370477855093493,0.2486144451696406,0.2583301758530769,0.2678679758240276,0.2776884034984366,0.2865133836650652,0.2946947548447485,0.302536126070348,0.3101797115157247,0.3168571599545209,0.3230728116420884,0.3284661639311942,0.3347305464145844,0.3404347328389911,0.3453587562942539,0.3504846047339618,0.3515638674583619,0.3532562302079031,0.3538950042337002,0.3542752867570385,0.3548863212821468,0.35528540251437,0.3549038629749201,0.3555808618441682,0.3573981783811651,0.35861697350696,0.3601103323194347,0.3611986123848638,0.3614343336219458,0.3630525888873868,0.3647175421209118,0.3648595483515618,0.3665970294479581,0.3678833502024291,0.3686590363148226,0.3715750680980612,0.3711772291820192,0.3713148267699591,0.3731104278759928,0.3751161350263239,0.3749880394220649,0.3778177458033573,0.3854021385402139,0.3823529411764705,0.3867036011080332,0.3872340425531915,0.0,2.994935548309563,63.900733984394655,212.07574617742048,321.15885422542743,fqhc8_100Compliance_baseline,68 -100000,95636,41435,390.6687858128738,7065,72.6713789786273,5503,56.94508344138191,2275,23.39077334894809,77.2563444549925,79.6670757503273,63.27473565930678,65.05598469178292,76.9782582876035,79.38855526478953,63.172349968538455,64.95601406591707,0.2780861673890058,278.52048553776854,0.1023856907683224,99.9706258658506,76.9824,54.22263067635444,80495.21100840687,56696.88263452512,239.02216,147.43632273674413,249320.015475344,153568.65980513356,262.04313,125.0937516528526,270169.2563469823,127856.41925227668,3988.45745,1776.8387929156347,4132366.3683131873,1820850.4400665965,1342.54705,577.8576006247706,1390146.7125350286,591145.9145043419,2240.08928,925.7039981666718,2306442.9294407964,937922.3529348448,0.37905,100000,0,349920,3658.873227654858,0,0.0,0,0.0,20169,210.25555230248025,0,0.0,24452,251.8925927475009,2085537,0,74967,0,0,0,0,0,46,0.4809904220168138,0,0.0,0,0.0,0,0.0,0.07065,0.186387020182034,0.3220099079971691,0.02275,0.3232186399349769,0.676781360065023,25.4826907524821,4.46635298026974,0.3372705796838088,0.2002544066872615,0.2247864801017626,0.237688533527167,10.90137760730624,5.452277735197711,24.19054066373536,12960.774196233751,61.93137292756242,12.779667638634557,20.940362873440016,13.908408426745936,14.302933988741898,0.5460657823005634,0.7622504537205081,0.6950431034482759,0.5804365400161682,0.1200305810397553,0.7004504504504504,0.9164086687306502,0.8493449781659389,0.7054794520547946,0.1621621621621621,0.4967633660992567,0.6983311938382541,0.6444921316165951,0.5417989417989418,0.109628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281865599837,0.0045609803067005,0.0069515623255766,0.0093058222344132,0.0112320683691118,0.0134470217902875,0.0154643381752897,0.0175221709101311,0.019638729210564,0.0218513737783514,0.0238571648453132,0.0258462993032289,0.0277657668787448,0.0298796770767819,0.0318378562647851,0.0336924016183942,0.0357135452302461,0.0378134674118551,0.0398967720452038,0.0416614511620144,0.0557674822068706,0.0693513241702983,0.0829877696708834,0.095964380447139,0.1077168212563445,0.1235965756976116,0.1371943453897096,0.1506596952303875,0.1626855622174484,0.173361091139322,0.1875761398061601,0.2011353541481594,0.2133358021195255,0.2252649111848954,0.2359551800957275,0.2470249988899249,0.2573493221173207,0.2663029387561858,0.2760243758242757,0.285114293583035,0.2934912478105026,0.3007330948331476,0.3090389043176909,0.3160006246021164,0.3223240174459686,0.3292624136268681,0.3355839461860897,0.3416190281747652,0.3465554862842893,0.3513978380809991,0.3525628032053621,0.3538151111848197,0.3544933078393881,0.3554075861768169,0.3564654140737194,0.3559029117224991,0.3559135672626446,0.3573977990019498,0.3582895077161824,0.3601253737795871,0.3614562647754137,0.3618939348610862,0.3630042900314884,0.3638509791577669,0.3651454290277307,0.3644801006764196,0.3646964213912344,0.3670805879371515,0.3699330278463165,0.3733253588516746,0.374988564632696,0.3768224299065421,0.3748651221834338,0.3751049378005037,0.3755702448561586,0.3738791882963662,0.3806509945750452,0.3819416699960048,0.3808879263670817,0.3849129593810445,0.0,2.2352653137496694,58.88134408180589,204.2314965483733,324.2083099374593,fqhc8_100Compliance_baseline,69 -100000,95698,41328,387.1658759848691,7193,74.16037952726285,5571,57.6919057869548,2266,23.30247236096888,77.32722884548278,79.70253511609191,63.32110870231941,65.07539427031466,77.05117603355222,79.42612687776386,63.21962288750464,64.97612396655971,0.2760528119305547,276.4082383280453,0.1014858148147723,99.27030375494894,77.07524,54.22573647855668,80540.07398273735,56663.39576433852,239.26211,147.8232534672051,249496.35311082783,153946.96176221562,265.41667,127.11322725849382,273922.6943091809,130228.97382161296,4029.77479,1806.432628494088,4175596.898576773,1852733.6660637923,1371.58597,590.6043235976367,1420623.5344521306,604697.6960883419,2228.38904,924.765246879008,2294474.2418859326,938073.9096119666,0.37855,100000,0,350342,3660.9124537607895,0,0.0,0,0.0,20198,210.51641622604444,0,0.0,24816,255.88831532529417,2088451,0,75017,0,0,0,0,0,42,0.4388806453635395,0,0.0,0,0.0,0,0.0,0.07193,0.19001452912429,0.315028499930488,0.02266,0.3204076230809952,0.6795923769190048,25.527403506861788,4.539229638389156,0.3266917968048824,0.2035541195476575,0.2335307844193143,0.2362232992281457,11.094842514639652,5.671944862298132,24.02632232258542,12990.911938286115,62.49347109665702,13.1711391203493,20.39138189885449,14.45559555187596,14.475354525577268,0.5501705259378926,0.7583774250440917,0.6901098901098901,0.5995388162951576,0.128419452887538,0.7031473533619457,0.9187675070028012,0.8446389496717724,0.7643097643097643,0.1463414634146341,0.4989216391085549,0.6846846846846847,0.6382978723404256,0.5507968127490039,0.1234207968901846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0049761328049781,0.0072435832403368,0.0092933971175233,0.0114296173518674,0.0135929052162137,0.0157546958171027,0.0179649280483694,0.0202585237150512,0.0223756029124125,0.0245205619936416,0.0266009346274328,0.0285535018154513,0.0307473544292058,0.0328606518463475,0.0351004198812749,0.0374314930120282,0.0394626190055959,0.0415440143958227,0.0437470032729471,0.0586484228117819,0.0728922471533824,0.0860220693127465,0.0997117427988301,0.1117720264084878,0.1270878952323527,0.1395780716089734,0.1518313458262351,0.164976978217441,0.1759197683149201,0.1899145906706732,0.202452593298121,0.2139578892417453,0.2251848287326654,0.2358107438835144,0.2465789852744014,0.2572835041189472,0.267521011712553,0.2766469513095008,0.285268972472438,0.2935725620562242,0.3012973631211653,0.3081998673237301,0.3152484226183336,0.3226120383436329,0.3290047030650158,0.3351466532965655,0.3403528451968183,0.3452271282324091,0.350059500198334,0.3512809085875569,0.3517448674286817,0.3523008062352625,0.3528355962134151,0.3536905152120146,0.3532415596400831,0.3535307010577809,0.3542693748767501,0.3558371381179568,0.3565726735360823,0.3570209813811336,0.3592742095057185,0.360922773357963,0.3619468232973142,0.362476439031463,0.3637555730396014,0.3644522177939616,0.3650422187786598,0.3664869816439418,0.367983367983368,0.3692541296645654,0.3693233729241683,0.3701840412660001,0.3730121970047861,0.3750954198473282,0.3809010304337407,0.3845558650572578,0.3880048959608323,0.3883953359244864,0.3876208897485493,0.0,2.026876295270408,61.98467492235101,196.8027266874072,329.8650677202993,fqhc8_100Compliance_baseline,70 -100000,95785,41665,390.3011953854988,7418,76.27499086495799,5769,59.72751474656784,2398,24.659393433209797,77.38146625236273,79.70554786775095,63.35451413110488,65.06838277389035,77.0866642972315,79.40954847559334,63.247126437441445,64.96317921130573,0.2948019551312342,295.9993921576114,0.1073876936634334,105.20356258462016,77.14014,54.30174240496873,80534.67661951245,56691.27985067467,239.65646,147.04092156835102,249701.3415461711,153010.27464462185,265.68051,126.73658954814933,274751.5686172156,130251.08702633208,4211.85279,1882.6945388507936,4363384.496528684,1931732.096727872,1427.64597,620.0708701418326,1481632.5207495957,638528.4675799544,2371.03922,979.2459359053404,2440794.1535731065,993314.7389693502,0.383,100000,0,350637,3660.667119068748,0,0.0,0,0.0,20207,210.4296079761967,0,0.0,24856,256.83562144385866,2092239,0,75096,0,0,0,0,0,36,0.3758417288719528,0,0.0,0,0.0,0,0.0,0.07418,0.1936814621409921,0.3232677271501752,0.02398,0.3120503597122302,0.6879496402877698,25.26043409323305,4.60014067106419,0.3244929797191888,0.2021147512567169,0.2293291731669266,0.2440630958571676,11.34719642666474,5.717434589467783,25.48012432711095,13170.409850756032,64.84762957258488,13.613747881210644,20.93782617747616,14.776839856860116,15.51921565703799,0.5373548275264344,0.7590051457975986,0.686965811965812,0.5774754346182918,0.1171875,0.7002861230329042,0.9228650137741048,0.8453159041394336,0.7235494880546075,0.1554770318021201,0.4852436513383665,0.684931506849315,0.6355272469922152,0.5359223300970873,0.1075555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0045502452470712,0.0068370172751341,0.009038102201641,0.0111543819333584,0.0132744263696887,0.0154721135029354,0.0176532413596057,0.019932570494483,0.0222420019847968,0.0244951900912806,0.0267988139575446,0.0290318271039082,0.0313355706079759,0.0333725102066064,0.0355261799029226,0.0375226367258239,0.0394890987693998,0.0415316213745533,0.0437077680718814,0.0583999499071194,0.0728284868207645,0.086465849974828,0.0985650459921156,0.1102302437378763,0.1260629521512882,0.1395583181297467,0.1524615466496354,0.1645892744614267,0.1757970796972491,0.1895790720206696,0.2036942909362259,0.2175340916505361,0.229256232702132,0.2396667840478915,0.251047184237938,0.2623792776196059,0.2724274926001373,0.2819417784491669,0.2902286330176348,0.2991126248233359,0.3062218890554722,0.3138105053664084,0.3199352479165417,0.3265321002807179,0.3332716962524655,0.3391951936917204,0.3447389517350198,0.350888563391966,0.3554179484809675,0.3568483737975263,0.3574132969862184,0.3583519056619742,0.3596214053803339,0.3611566796909953,0.3613980081150867,0.361477907567293,0.3615750415480558,0.3626273871713625,0.3639469776927067,0.3650909910417488,0.3659913255302715,0.3666848877302161,0.3677158273381295,0.3690680319752699,0.3702705531424983,0.3703280048042552,0.3731781184932803,0.3739995063643736,0.3740659340659341,0.3779671890752452,0.3827904249080343,0.3851781772311574,0.3873901413832633,0.3883550566073637,0.3882591576184226,0.3897420147420147,0.3871820956256358,0.3922651933701657,0.3853317811408615,0.0,1.9070714854074184,62.16245498575964,218.7823230686052,332.3250735472137,fqhc8_100Compliance_baseline,71 -100000,95763,41474,390.3386485385796,7130,73.28508923070497,5543,57.37080083121874,2288,23.558159205538672,77.31912755708531,79.67003551855926,63.32066847763053,65.05892545040346,77.03287211086302,79.3811412049643,63.21548738088823,64.95504923253539,0.2862554462222846,288.894313594966,0.1051810967423065,103.876217868077,77.38654,54.415931276053946,80810.4800392636,56823.544872293,238.11699,147.41277984802335,248151.1230851164,153434.4307924875,268.4653,128.5561156143974,277248.2900493928,131853.09493440745,4034.70071,1826.3949955978644,4179431.5758695942,1873506.7601701885,1366.25006,603.3535965134301,1415157.680941491,618637.3958735979,2255.07244,944.817161623694,2324035.9846704886,960102.4899557016,0.3797,100000,0,351757,3673.203638148346,0,0.0,0,0.0,20105,209.4128212357591,0,0.0,25030,258.3461253302424,2087160,0,75050,0,0,0,0,0,45,0.4594676440796549,0,0.0,0,0.0,0,0.0,0.0713,0.187779826178562,0.3208976157082749,0.02288,0.3224131042748701,0.6775868957251299,24.940192743917468,4.59511516412353,0.3287028684827711,0.1979072704311744,0.2345300378856215,0.2388598232004329,11.20883311670195,5.569602993892245,24.615701928755463,12911.798308880718,63.12162551501775,12.946583118830194,20.86986739559574,14.652156627828145,14.653018372763675,0.5531300739671658,0.7812215132178669,0.712403951701427,0.5738461538461539,0.1246223564954682,0.7086834733893558,0.8940217391304348,0.8673684210526316,0.7251655629139073,0.1837455830388692,0.4991494532199271,0.7242798353909465,0.6577579806978471,0.5280561122244489,0.1085494716618635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873639226726,0.0045906423859179,0.0069700904995738,0.0091307968880131,0.0113595915835291,0.0135956738260364,0.0157430537853683,0.0177674304619531,0.0200404899695302,0.0222456542658831,0.0240123855515569,0.0261215102011479,0.0281891480521617,0.0302346663370212,0.0323662326406801,0.0340936101609086,0.0360052589624936,0.0379225574906386,0.0398694915782582,0.0419313850063532,0.0561151529701575,0.0707777603431141,0.0838979673176564,0.096793867443401,0.1080189325659108,0.1230162506211607,0.1367695407784494,0.1495829254798485,0.1623477156005424,0.1737433940420423,0.1872294605362334,0.2007402357066329,0.2130045574687014,0.2246850669232788,0.2351543158937118,0.2467909315435646,0.2576193984861679,0.2678310188832121,0.2770650742473093,0.28573228707257,0.2934650438327292,0.3008687914198065,0.3085419036784224,0.3154836230909615,0.3211969285809898,0.3266002001408398,0.3325389757804562,0.3390135329906506,0.3447734060511622,0.3500211629014338,0.3510415682250813,0.3513446386930305,0.3519953615974206,0.3525099439653921,0.3528902811963899,0.3525140008615914,0.3523739816700611,0.353833720911055,0.3546987290533935,0.3563321600459737,0.3572330838408024,0.3580538779402415,0.3578449985233937,0.3587710604558969,0.3590916793763768,0.3594405961376994,0.3607220755366778,0.3604971065363817,0.3603409251662187,0.3631725787166202,0.3657218737121663,0.369759597365744,0.3714558169103624,0.3725731895223421,0.3740603292416024,0.3763402430307362,0.3761736185931968,0.3729851050805958,0.379406050513461,0.3797614467102732,0.0,1.9903338392585144,63.40871883970998,215.07083957581432,306.9141822681985,fqhc8_100Compliance_baseline,72 -100000,95683,41392,388.7106382533992,7188,73.91072604328878,5620,58.1712529916495,2272,23.400186030956384,77.34181859432726,79.72501993058827,63.3271521787835,65.08579734623609,77.06457685169983,79.44525451808667,63.22623947744433,64.98593759972785,0.2772417426274387,279.7654125016038,0.100912701339169,99.85974650824404,77.07942,54.206018181407984,80557.06865378385,56651.67081028813,239.6945,147.68017368118274,249918.930217489,153753.12613649524,264.09735,125.97954634762466,272078.6242070169,128628.6726015343,4088.15328,1817.9593767472704,4235655.487390654,1863035.5828593045,1408.13035,606.0481650479423,1456319.8791843902,618049.5647585702,2244.9357,926.9550822218677,2314403.603565942,942823.3665049154,0.37938,100000,0,350361,3661.684938808357,0,0.0,0,0.0,20231,210.84205135708532,0,0.0,24641,253.6918783901006,2091459,0,75076,0,0,0,0,0,48,0.4912053342809067,0,0.0,0,0.0,0,0.0,0.07188,0.1894670251462913,0.3160823594880356,0.02272,0.3111698612029081,0.6888301387970919,25.393191100086387,4.565016158430813,0.3293594306049822,0.197508896797153,0.2332740213523131,0.2398576512455516,10.987048655762376,5.457502320047067,24.20143038224336,12993.616295481212,63.10995335874877,12.891458798888912,20.78233024454553,14.702066773183278,14.734097542131035,0.548932384341637,0.7738738738738739,0.6888168557536467,0.6025934401220442,0.1194362017804154,0.6991988346686089,0.9241573033707864,0.84375,0.7177914110429447,0.1672727272727272,0.5003531904874029,0.7029177718832891,0.6439024390243903,0.5644670050761421,0.1071761416589002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101021761804,0.0047437079984187,0.0070919107575865,0.0094554244276979,0.0115406515638345,0.0138877575955037,0.0158802964050189,0.0178843032573522,0.019838714623003,0.022049565457728,0.0240751373964399,0.0260863313785701,0.0282707323848029,0.0307685966593506,0.0326882386334313,0.0348890130122675,0.0368501227991999,0.0390281887556455,0.0409878700871772,0.0429402443601184,0.0572031463819741,0.0709245105224583,0.0841397115929556,0.0966245080915002,0.1084633479962446,0.1242384498223049,0.1372944297082228,0.1504603757517696,0.162480368380004,0.1736603360821867,0.1877557613611888,0.2013475806277173,0.2132727193631182,0.2251033035265309,0.2346994896163322,0.2461184079381603,0.2568584120181254,0.2676084853665669,0.2765414165257555,0.2850434643180282,0.2924995372940959,0.3009789359188781,0.3085631143759537,0.315358067299396,0.322159719100441,0.3287345268037678,0.3349861638055169,0.340686212078759,0.3468884941063578,0.3522308393557848,0.3537042530812589,0.3548151516404172,0.3555728100515282,0.3559133091077555,0.3572417695320061,0.3576661393620126,0.3569253219973352,0.3581006597673538,0.3594756682659356,0.3608869163728771,0.3623008949175437,0.363715587244999,0.3649230381554356,0.3655071813285457,0.3659013543854567,0.3653478067070453,0.3674738501217939,0.3695349572919962,0.3718071350125766,0.3752498201295067,0.3766620816139385,0.376382580817526,0.3799835723763189,0.3797177048174286,0.3828582216348877,0.3799807969275084,0.3763906056860321,0.3811951866204364,0.3862493012856344,0.3918971562134787,0.0,2.228567260430565,60.87805355150871,207.37462618539303,327.75128232691924,fqhc8_100Compliance_baseline,73 -100000,95674,41435,390.3881932395426,7112,73.112862428664,5589,57.77954303154462,2161,22.24219746221544,77.38307130315455,79.75967993142875,63.34642469116329,65.0975582973831,77.11578810412355,79.4918247835731,63.24829113723328,65.00138773047674,0.2672831990309987,267.8551478556557,0.0981335539300118,96.17056690636616,76.72742,53.96826334077295,80196.73056420762,56408.49482698847,238.52314,146.94479448219295,248680.8432803061,152962.15022815688,266.1699,127.27442338589336,273745.8243618956,129623.12468664996,4008.42953,1794.5139696679205,4151398.499069758,1837436.2696463217,1343.88622,579.4914162912776,1390709.69124318,591778.3003259811,2125.65828,887.6523327432621,2191170.244789598,901462.7651112428,0.37983,100000,0,348761,3645.30593473671,0,0.0,0,0.0,20104,209.48219997073397,0,0.0,24840,255.17904550870665,2093013,0,75227,0,0,0,0,0,45,0.4703472207705332,0,0.0,0,0.0,0,0.0,0.07112,0.1872416607429639,0.3038526434195726,0.02161,0.3132932531730127,0.6867067468269873,25.23174490048874,4.620395905283477,0.3410270173555197,0.2007514761137949,0.2320629808552514,0.2261585256754338,11.235105067370284,5.641575667828739,22.91118669677149,12972.279665019229,62.54951948382838,12.90893628030055,21.3575810276795,14.33422263046917,13.94877954537915,0.5532295580604759,0.7522281639928698,0.6962224554039874,0.5959907478797224,0.1170886075949367,0.7037593984962406,0.921921921921922,0.8619909502262444,0.7456445993031359,0.126865671641791,0.5062221178680442,0.6806083650190115,0.6461748633879781,0.5534653465346535,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0044272891212286,0.0066125090009229,0.0089768065315406,0.0114381576940674,0.0136099433003858,0.0158311076678423,0.0176484398125937,0.0199114818108409,0.0218969135486512,0.0239498856844069,0.0262055368438347,0.0280871720506412,0.0302621414224648,0.0321039872079228,0.0338783356414973,0.035800857728883,0.0377366323480571,0.0396830348786422,0.0417899870774104,0.0568996134962916,0.0708729834699496,0.0843570671730258,0.0971032017244098,0.1092507854838369,0.1251374439651526,0.1380732291644582,0.1504381487153309,0.1621673531231993,0.1739670838333619,0.1877367016698226,0.2012975778546712,0.2128702646882982,0.2247229084231467,0.2360920121890848,0.2473737866229333,0.2582255578637003,0.2680528491456505,0.2771266325951164,0.2854785289432366,0.2939017896418401,0.3014191040442123,0.3090331678299304,0.3159082452076006,0.3229659542894676,0.3288815927521384,0.3352086909669577,0.3412918843164734,0.3470676730734314,0.3522135588740584,0.3528548145953153,0.3530504672382709,0.3543832952912334,0.3551885701064322,0.3558344236945402,0.3558963024358797,0.3557089581845592,0.3560069073267001,0.3571342915388964,0.3574100255919251,0.3587890588433527,0.3605321332701721,0.360887307732552,0.3612965153916557,0.3617138609825688,0.362729044834308,0.3639719453672942,0.3653984882225637,0.3682288923995085,0.3697046480323065,0.3738896733931581,0.3743312675459505,0.3754319824065347,0.3767522921876184,0.3785973735680357,0.3852910176835695,0.3891314165286768,0.3861308116627265,0.3882636655948553,0.3841328413284133,0.0,2.47777234445638,58.29981845835234,211.53433886467124,324.187632969748,fqhc8_100Compliance_baseline,74 -100000,95692,41652,391.3075283200268,7312,75.18914851816244,5653,58.48973790912511,2316,23.87869414371108,77.3960056150407,79.77967431181327,63.35197710932333,65.11269999613188,77.11766649810401,79.4999266076166,63.250490907273885,65.01287715031481,0.2783391169366922,279.74770419666584,0.1014862020494433,99.8228458170729,77.40436,54.43461504733576,80889.0607365297,56885.23078975855,241.03502,148.6854445600907,251284.1407850186,154777.039418228,268.18798,128.60609276621173,276024.02499686496,131222.62618593444,4075.75556,1823.8793723127967,4221947.383271329,1868692.9966066116,1374.37267,595.3442828963274,1423273.136730343,609174.3649876711,2276.18988,938.8233821533586,2348277.661664507,954927.4655757018,0.38215,100000,0,351838,3676.7754880240777,0,0.0,0,0.0,20353,212.0553442294027,0,0.0,25067,257.743594030849,2091903,0,74954,0,0,0,0,0,53,0.5538603018016135,0,0.0,1,0.0104501943736153,0,0.0,0.07312,0.1913384796545859,0.3167396061269146,0.02316,0.3132639791937581,0.6867360208062419,25.36446373580822,4.568226583061889,0.3292057314700159,0.2052007783477799,0.2317353617548204,0.2338581284273836,11.310416516471175,5.6943363889447305,24.547887115631987,13071.753251423715,63.54241202427227,13.591801953775828,20.872569237563926,14.705116048897771,14.37292478403476,0.5533345126481515,0.7646551724137931,0.7033852767329393,0.5877862595419847,0.1225416036308623,0.7278571428571429,0.9319371727748692,0.8690744920993227,0.7331189710610932,0.1893939393939394,0.4958852574653186,0.6825192802056556,0.6516220028208745,0.5425425425425425,0.10586011342155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0047149723185496,0.0068106615781246,0.0091135382270764,0.0111895509938355,0.0133181281309819,0.0155999877647154,0.017754137357196,0.0202212271770021,0.0224569592008024,0.0243592372360057,0.0266743328849964,0.0288067959767159,0.0309013936528537,0.0330062628326162,0.0350416571912923,0.0370715639663155,0.0389960868978545,0.040881909417087,0.0430532250836364,0.0583031303203434,0.0728473355937879,0.0860034611148985,0.0987194852709266,0.1107012236896192,0.1263350464226043,0.139863997538801,0.1519293203470115,0.1645108573747903,0.1759665397608451,0.1896039284098985,0.2026237805801302,0.2147583913766312,0.2263004295598377,0.2373119887413141,0.248641229147987,0.2591679678786527,0.2695509543764254,0.2790052118740086,0.2874571232563457,0.2961752546365799,0.3036696283669395,0.3105248857017968,0.3178674006701771,0.3247944108871261,0.3314187319353053,0.3372361539325702,0.3424268185913134,0.3473639345956139,0.3529806730212228,0.3539290368519339,0.355103105521843,0.3564554254840162,0.3571954653765615,0.3584199584199584,0.3581829038629369,0.3581529398723653,0.359003844005651,0.3595649720412456,0.360512490618634,0.3620899833086401,0.3629534446970446,0.3641084703172442,0.3656843045322616,0.3667965742879138,0.3666318810331333,0.3661121239744758,0.3682484628724578,0.3707267216465778,0.3725678213272603,0.3737188031438158,0.3759571619812584,0.3767075417752081,0.3778784157199877,0.3780127655520625,0.3790080461150474,0.3748652394886801,0.3746680286006129,0.3789649415692821,0.3783469150174621,0.0,2.1932032663636627,61.62741488149905,213.1179805263821,322.6637224894535,fqhc8_100Compliance_baseline,75 -100000,95819,41624,389.8913576639288,7287,74.90163746229871,5678,58.6313779104353,2290,23.53395464365105,77.38566316619061,79.70570815407841,63.36611244363343,65.08373600937466,77.10642971821257,79.42571045688764,63.2646652174458,64.98423241781248,0.2792334479780436,279.9976971907654,0.1014472261876235,99.50359156218268,77.21978,54.33917011180092,80589.21508260365,56710.22460242845,241.56305,148.46024602295088,251501.47674260844,154336.19221965465,266.77698,127.71075208788406,273960.7489120112,129898.83772101963,4098.46005,1827.4244167883744,4237097.70504806,1867210.8224420676,1360.28035,595.0831825005058,1404586.7416691887,606116.250908362,2252.05844,929.7933619214858,2316982.393888477,943124.6086695108,0.38161,100000,0,350999,3663.146140118348,0,0.0,0,0.0,20390,212.1604274726307,0,0.0,24908,255.48168943528944,2094027,0,75156,0,0,0,0,0,44,0.4591991149980692,0,0.0,0,0.0,0,0.0,0.07287,0.1909541154581903,0.314258268148758,0.0229,0.3232112602632608,0.6767887397367393,25.75585237765892,4.547700738322671,0.3386755899964776,0.2041211694258541,0.2282493835857696,0.2289538569918985,11.211711463085074,5.685279204078165,24.400746085813,13093.03888355252,63.75264780792237,13.413925378259211,21.69513995540165,14.324244034087132,14.319338440174368,0.5387460373370905,0.7377049180327869,0.6926677067082684,0.5570987654320988,0.1153846153846153,0.6991988346686089,0.9156976744186046,0.8586278586278586,0.7210144927536232,0.1213235294117647,0.4875725900116144,0.6625766871165644,0.6373092926490985,0.5127450980392156,0.1138132295719844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814398428083,0.0046531431525805,0.007013021282642,0.0093979233129457,0.01156475039668,0.0137256898482842,0.0160535730666911,0.0185222981936932,0.0207266595124942,0.0230868417282384,0.0253743120958402,0.0274866826099005,0.0294552929085303,0.0316520844055584,0.0335849367897873,0.0358411832754916,0.0379724570352512,0.0398727223730851,0.0417298307548541,0.0436397690026533,0.0581921728971962,0.0718855183659816,0.0848312074874493,0.0976519409570835,0.1107857594270065,0.1258580994022347,0.1398425830782105,0.1525985758316505,0.1644855427212321,0.176248821866164,0.1902247553500376,0.2033204433018643,0.2156813790408371,0.2272355194656363,0.2385684793112536,0.2497899624143267,0.2600521262613887,0.270131853815225,0.2787733925415741,0.2873540878274092,0.2952762727724316,0.3027547566242559,0.3106558828738414,0.3178715315552261,0.3251714361869684,0.3315354940167579,0.3372987142678816,0.3435703498775365,0.348510297423706,0.3540917532698462,0.3547892307899304,0.3555598354679396,0.3561998957408738,0.357025056420346,0.3579918185198958,0.357869383121366,0.3574728153028018,0.3574651691314515,0.3582058808383542,0.3590838161175183,0.3600496464570483,0.3599539335213057,0.3619317102012374,0.3628643510384286,0.3659832585223826,0.3672356567093409,0.3682150463362689,0.3724170766544993,0.3725309080574108,0.37399549983928,0.3770831415155142,0.3781643029167781,0.3785328675770085,0.3786519438693351,0.3788932279264692,0.3799735545137637,0.3844840961986036,0.3865080992413369,0.3968209704406023,0.4044856921887084,0.0,2.477249046669433,60.15689963952454,213.7901994469206,329.9260656027884,fqhc8_100Compliance_baseline,76 -100000,95772,41565,389.93651589191,7277,74.80265630873323,5617,58.12763646994946,2322,23.89007225493881,77.37657405990127,79.72178956447938,63.3458979718325,65.07942419039644,77.09706134405073,79.44220760151593,63.24447909133914,64.9805917895518,0.2795127158505437,279.58196296344795,0.1014188804933624,98.83240084464262,77.25916,54.38494850702195,80669.88263793175,56785.85443242488,239.49854,147.38257157066533,249570.34415069123,153387.7767726113,263.93219,125.8237094979712,272412.05153907195,128864.7777226762,4094.16659,1815.5035004519664,4240753.477007894,1861528.405016045,1387.01759,596.7699757256519,1434607.4322348912,609491.8458223355,2294.19158,941.6508413563,2363358.873157081,955832.3424912055,0.38155,100000,0,351178,3666.812847178716,0,0.0,0,0.0,20230,210.6983251889905,0,0.0,24688,254.6986593158752,2092264,0,75042,0,0,0,0,0,41,0.4176586058555736,0,0.0,0,0.0,0,0.0,0.07277,0.1907220547765692,0.3190875360725573,0.02322,0.317175422507533,0.6828245774924669,25.63703465978375,4.622667024600542,0.3238383478725298,0.1969022609934128,0.2366031689513975,0.2426562221826597,11.158290420796396,5.472943043446485,24.50395315345128,13095.312660345377,62.95357283504842,12.8407455417894,20.46434281160721,14.804592858025522,14.843891623626297,0.5435285739718712,0.7658227848101266,0.7009345794392523,0.5974416854778029,0.1005135730007336,0.7300150829562594,0.9339080459770116,0.8707482993197279,0.7758007117437722,0.16015625,0.4859007224423211,0.6886543535620053,0.6465892597968069,0.549618320610687,0.086720867208672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.0046224492899066,0.0068081738671645,0.0089702954203746,0.0114921487267106,0.01360474944247,0.0159680231668892,0.0182137460693429,0.0204254797125302,0.0225814046329754,0.0246494752377828,0.0268627913899467,0.0289703100583929,0.0309471581137166,0.0329605711102399,0.0349464588415264,0.0370182450763145,0.0391817172733591,0.0411481562340808,0.0432301267431082,0.0579265428812975,0.0720440902721131,0.0850918849786667,0.0976406915033366,0.1101532365153974,0.126397902881424,0.139582714897587,0.1524211825542917,0.1643831227774158,0.1760687976495566,0.189896183337641,0.2034554758581891,0.2152110776326237,0.2259578565020459,0.236488941243821,0.2481046331190423,0.2580313773658645,0.267497214625747,0.2768067913564554,0.2863833636790454,0.2950315229336572,0.3029977084599916,0.310810491213963,0.3180615263025542,0.3257220589306969,0.3325200246457178,0.3384967369289626,0.3441427246273683,0.3498480046568786,0.3547289275821131,0.3553827944262118,0.3565564188956886,0.357311785573512,0.3581080104628813,0.3587980155075607,0.3590002911475812,0.3595575066960394,0.3608011962076274,0.3614614528963806,0.3628614317881268,0.3645160078160228,0.3646609095230549,0.3660474108944183,0.3671883746445444,0.3676314520019296,0.3695492854525467,0.3713492948882977,0.3734594168636722,0.3755552421913558,0.3793860524529959,0.380071599045346,0.3824065145183756,0.3814720812182741,0.3824612551787632,0.3870510396975425,0.3892938224399569,0.3911637931034483,0.3890688259109311,0.3848052660449808,0.3845562812139839,0.0,2.031861657823937,58.790625215968376,212.1367625100989,329.0604106564437,fqhc8_100Compliance_baseline,77 -100000,95759,41414,389.2271222548272,7239,74.46819620087929,5622,58.20862790964818,2315,23.87242974550695,77.3313489084019,79.69842836855261,63.31030609897547,65.06343285292704,77.05319219712474,79.41683184811504,63.209865617584434,64.96377216999403,0.2781567112771625,281.5965204375743,0.1004404813910326,99.66068293300624,76.30304,53.72047791542293,79682.36928121638,56099.66469514399,237.26339,145.62800784897752,247268.54917031297,151574.79490071695,263.25063,125.64122500684724,271112.8666757172,128278.83946540068,4077.37044,1813.0995843172643,4225645.631220042,1861094.1470955876,1390.67604,597.6611438619459,1440379.8911851626,612243.740914113,2288.76954,938.5492945350524,2362530.22692384,956492.0289539188,0.38021,100000,0,346832,3621.925876418927,0,0.0,0,0.0,20042,208.77411000532587,0,0.0,24683,254.0544491901545,2095600,0,75191,0,0,0,0,0,33,0.3446151275598116,0,0.0,1,0.0104428826533276,0,0.0,0.07239,0.1903947818310933,0.3197955518718055,0.02315,0.3179778247096093,0.6820221752903907,25.32590353212802,4.607019228431939,0.3231945926716471,0.2072216293134116,0.2246531483457844,0.2449306296691568,11.061417545015107,5.450712113250666,24.460293710823017,13033.38729690398,63.22413507847544,13.630865705257042,20.54453285380397,14.050138497899727,14.998598021514708,0.5369975097829954,0.7493562231759656,0.689598238855256,0.5930324623911323,0.1045751633986928,0.7117776152158011,0.917098445595855,0.8454545454545455,0.7560975609756098,0.1181102362204724,0.4808460634547591,0.6662387676508345,0.6397966594045026,0.5450819672131147,0.101513802315227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417673937932,0.004725351612805,0.0069424004059883,0.0091952855110749,0.0113837514496734,0.0135144768868837,0.015447991761071,0.0176439956298436,0.0198733749961644,0.0221439252719339,0.0243374630784378,0.0263522884882108,0.0286502284608735,0.0307849280620027,0.0328137902559867,0.0345579947677003,0.0363869818686382,0.038414444329148,0.040487723747947,0.0424629998021101,0.0569003851814737,0.0707760884805742,0.0840422518959856,0.0969600740265612,0.1091348080045547,0.1246721380827481,0.1381564287305949,0.1506944148596259,0.163334437546083,0.1745791625092536,0.1882038515836324,0.2012105986941126,0.2136613508953355,0.2254928791146238,0.2363466196872935,0.2471175166297117,0.2575745731101259,0.267445656456497,0.2771441217527493,0.2861644950206851,0.2947489060220879,0.302959674869116,0.3105169551814086,0.3181299475068769,0.3250240393393137,0.3317127344521224,0.3379974695912513,0.3441325978112698,0.3501063995432605,0.3552376045341048,0.356072044866264,0.3565234149161688,0.3573019139160583,0.3572998611753817,0.3582685937523209,0.358242330489654,0.3578537635089163,0.3585599789777953,0.3593052109181141,0.3602481141181938,0.3615735440400893,0.3622783556215948,0.3628075040440326,0.3632631082991183,0.3652954808806489,0.3648811393863231,0.3673399422906608,0.3676656550328781,0.3693712829226848,0.3691011235955056,0.3706579672854255,0.3704000427281952,0.3717997465145754,0.3748469075321494,0.3783605940966347,0.3789448893075836,0.3797391568092205,0.3835425383542538,0.3804851458162987,0.3808250572956455,0.0,1.9820484612542848,60.72064127035219,212.7084551663964,323.74772846411645,fqhc8_100Compliance_baseline,78 -100000,95488,41687,391.7036695710456,7175,73.83126675603218,5576,57.78736595174263,2303,23.72025804289544,77.22623088476638,79.71379004637747,63.24095407219974,65.07638181095133,76.94572825540023,79.43041076052901,63.1381128074347,64.97482372205367,0.2805026293661541,283.3792858484543,0.1028412647650398,101.55808889766148,76.52238,53.88853404411794,80138.21632037533,56434.87563266372,240.62857,149.08848534292656,251393.9657339142,155528.42801496165,270.27932,129.99238316925067,278943.5216990617,133063.67010323162,4050.74222,1816.2594236687771,4204075.9362432975,1864225.491452325,1379.84081,602.2717874046197,1432423.3097352546,618133.6232902375,2269.18878,945.8366536526402,2340911.528150134,962687.2615169887,0.38064,100000,0,347829,3642.646196380697,0,0.0,0,0.0,20293,211.88002680965147,0,0.0,25150,259.21581769437,2083361,0,74763,0,0,0,0,0,35,0.3665382037533512,0,0.0,0,0.0,0,0.0,0.07175,0.1884983186212694,0.3209756097560975,0.02303,0.315684976836532,0.6843150231634679,25.49015052733797,4.5945532259448285,0.3305236728837876,0.2015781922525107,0.2268651362984218,0.2410329985652797,11.289224253792709,5.704176074697465,24.5898072768538,13058.218681977913,62.81582305280769,13.012816630250622,20.87917366297205,14.14949766327952,14.774335096305506,0.5371233859397417,0.7580071174377224,0.6934346174715138,0.5683794466403163,0.1086309523809523,0.7126099706744868,0.9195402298850576,0.8700440528634361,0.7456445993031359,0.1563636363636363,0.4802943969610636,0.6855670103092784,0.6357091432685386,0.516359918200409,0.0963517305893358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509145260171,0.0047166462109608,0.0069141267488374,0.0092933401118454,0.0116570288320573,0.0138205167405595,0.0159185297809161,0.0182290070095845,0.0204916774939384,0.0226942070859203,0.0249014616521596,0.0271026115566522,0.0291404094073067,0.031024062213146,0.0332589424090261,0.0350564775797985,0.0373025176087385,0.0393442963763747,0.0414856487992915,0.0438873110015871,0.0586997707694401,0.0734609089764572,0.0864705140068982,0.0989449942559627,0.1109537648612945,0.1264097345883151,0.1391981117029759,0.1521653312279279,0.1639962299717247,0.1747748135090397,0.188804318488529,0.2018352604290951,0.2148604448320976,0.226099253461374,0.2374384888673124,0.2490026780455823,0.2594473654771227,0.2691431792559188,0.2788197959439016,0.2874279679500425,0.2960904872389791,0.3038709677419355,0.3114598418840958,0.3177313834904752,0.3244647758462946,0.3302757971875619,0.3365738935771509,0.3424876563739159,0.3475443960189943,0.35246173215824,0.3543817397069369,0.3546057174423422,0.3550780973920418,0.3556421699316101,0.3565993255945809,0.3559248999692213,0.3557862225972331,0.35679487391211,0.3573185203019932,0.3577564517288477,0.3589352322821295,0.3597645842446415,0.3601887746502612,0.3614834472831953,0.3620073415765069,0.3628311627053798,0.3647959183673469,0.3666033554922444,0.3693923003499841,0.3711736225041014,0.3713221772710555,0.3768232088475717,0.3784943522433268,0.3817642134104574,0.3817927170868347,0.3841542259315857,0.3857868020304568,0.3903445430162987,0.390169397389614,0.3908531898539585,0.0,2.35996622718684,60.143380544515466,209.8628004758682,322.6876927279723,fqhc8_100Compliance_baseline,79 -100000,95703,41620,390.5520203128429,7186,73.8325862303167,5561,57.44856483077855,2312,23.761010626626124,77.36399481233721,79.74838230040477,63.33329461681414,65.09700499758118,77.07626195079595,79.46009523897733,63.2269642421826,64.9931754286841,0.287732861541258,288.28706142743954,0.1063303746315469,103.8295688970834,77.01408,54.18360188248984,80471.73024879054,56616.17909834576,240.01781,148.3121855964052,250139.5358557203,154318.07113712773,264.92,126.92034471317554,272457.3942300659,129377.80550724114,4060.93118,1830.2580726582933,4199954.431940482,1869261.4220020336,1338.95152,583.8509275412549,1382729.0471563064,593724.9485818149,2275.5079,954.6891029602276,2340811.7822847767,966042.1805322252,0.38023,100000,0,350064,3657.8059203995695,0,0.0,0,0.0,20213,210.51586679623415,0,0.0,24663,253.3776370646688,2091910,0,75127,0,0,0,0,0,48,0.4911026822565645,0,0.0,0,0.0,0,0.0,0.07186,0.1889908739447176,0.3217367102699693,0.02312,0.3307824251220477,0.6692175748779522,25.423787370091443,4.697548762910501,0.3330336270454954,0.1916921417011328,0.2362884373314152,0.2389857939219564,10.902569785954224,5.320880254766504,24.712676348555263,13029.499522622687,62.710066469715095,12.456692951305232,20.80600229426116,14.823762429345589,14.623608794803108,0.5329976622909549,0.7476547842401501,0.6744060475161987,0.5844748858447488,0.1128668171557562,0.6918194640338505,0.9196428571428572,0.8722943722943723,0.7360248447204969,0.1073825503355704,0.4786386676321506,0.6684931506849315,0.6086330935251798,0.5352822580645161,0.1144519883608147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0047461133590921,0.0069438804515552,0.0094111429558712,0.0115590467856488,0.0138863418709375,0.0162593333061324,0.0183933167204542,0.0205578227117915,0.0226604818808302,0.0247656746723547,0.026969569370128,0.0291915243777,0.0313652756311179,0.0334379128137384,0.035464659415195,0.0372403791371005,0.0392154827997717,0.0412989469963929,0.0435090643884142,0.0584831965244271,0.0719788155994222,0.0851097310226176,0.0977559046837865,0.1104013829159288,0.1260758315887415,0.1397469750474554,0.1524001021320056,0.1636986740119146,0.1750091105918669,0.1889346864540846,0.2013326987148976,0.213908977217117,0.2255408036046282,0.2370957095709571,0.2483834536516231,0.2590365478156098,0.2684356159452893,0.2781655374348847,0.286522386350624,0.2938699489837234,0.3023394549070066,0.3095632815460402,0.3167973715135381,0.3237113652661132,0.3295293494201595,0.3352363067292644,0.3406826885154133,0.3462350001941722,0.3517851725820705,0.3532309514516064,0.3537253067737853,0.3542884509740397,0.3551874656722458,0.3563629881608461,0.3566992964209238,0.3563434605292276,0.3569311874785114,0.3576359886129246,0.3584700233815839,0.3588194457474154,0.360068090497021,0.3612125026221942,0.3616299955096542,0.3628495660559305,0.3639988457805409,0.3659853008727606,0.3680118825648643,0.3694292277787595,0.3716725865027737,0.3731247713135748,0.3750932537567942,0.3763905663975589,0.3788275119249115,0.3805891886738488,0.3814730265529256,0.3821745216985534,0.3806571605703658,0.3815012651110486,0.3862745098039216,0.0,2.520871226121164,62.46289209098496,204.364700773124,317.8030076890277,fqhc8_100Compliance_baseline,80 -100000,95660,41483,390.0167259042442,7311,75.0888563662973,5732,59.25151578507213,2348,24.08530211164541,77.31725194233033,79.72485505907366,63.30264576078415,65.08455048030092,77.02482709844027,79.43459262727549,63.19514346708272,64.98113953165264,0.2924248438900605,290.262431798169,0.1075022937014296,103.41094864827484,76.35408,53.738450978933066,79818.18942086556,56176.51158157335,242.63741,149.42350452765425,252980.21116454108,155540.27831939486,266.90106,127.7608465514315,275156.439473134,130534.76491568128,4173.52533,1864.3341263663656,4318464.154296466,1904749.3633350208,1409.87501,610.8008277002432,1456355.948149697,621284.797455836,2309.87984,961.1127201058756,2372454.6100773574,968043.1691885636,0.38008,100000,0,347064,3628.099519130253,0,0.0,0,0.0,20477,213.35981601505333,0,0.0,25006,257.4952958394313,2092400,0,75098,0,0,0,0,0,47,0.4913234371733222,0,0.0,0,0.0,0,0.0,0.07311,0.1923542412123763,0.3211598960470523,0.02348,0.3159600674186438,0.6840399325813562,25.3307671844795,4.562283985655943,0.3206559665038381,0.2041172365666434,0.2377878576413119,0.2374389392882065,11.105576060788293,5.552393814485392,24.89311477477854,12992.397650065675,64.40502450149303,13.644736651938157,20.636531906490283,15.21159662033993,14.912159322724667,0.5457083042568039,0.7658119658119659,0.6877040261153428,0.5942773294203962,0.1160911094783247,0.7014492753623188,0.8954802259887006,0.8528735632183908,0.7484076433121019,0.1624548736462094,0.4963235294117647,0.7095588235294118,0.6364932287954383,0.5481410867492851,0.1042435424354243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027657612935252,0.0049586776859504,0.0069111095324598,0.0088406548181568,0.0112122907869969,0.0130691657329122,0.0153734723440719,0.0173770022883295,0.0195617032596018,0.0217302215027764,0.0239563348346653,0.0265626766135413,0.0286578963621765,0.0308988184836175,0.0329047250193648,0.0350129332643559,0.0370285903841768,0.0389859903833172,0.0412227401365074,0.0427820865649236,0.0571070365146528,0.0704442163905585,0.083636020071805,0.0964941815197491,0.108356454862906,0.1232075012435046,0.1368118280140526,0.1494190442719149,0.1612603272661201,0.1728999034438365,0.1859097274587956,0.1993698980144209,0.2122620459962776,0.2235395866176213,0.2355682369012471,0.2468239363235261,0.2577436962127047,0.268379953642235,0.2782840606026215,0.2865521191294387,0.2944792378129956,0.3020442072992359,0.3092155910603674,0.3158267083947864,0.3232551636942752,0.3297309300862356,0.3355876164712955,0.3415847884742656,0.3472483065007058,0.3521859041184466,0.3526560290850333,0.3538129179624074,0.3553997155450411,0.3560988304009021,0.3575344098194601,0.3573349727195881,0.3566223746249464,0.3578839882736585,0.3587070042974301,0.3597910105926138,0.3609214856605547,0.3619372631495406,0.3634677011300388,0.3657219973009447,0.3668145562101486,0.366635125900226,0.3675660160734788,0.3697564062005694,0.3722790500123881,0.374464507346759,0.3765090775043774,0.3783246467143087,0.3806365201862364,0.3823188181607239,0.3852817974105103,0.3877551020408163,0.3879350348027842,0.3891825945506303,0.3893996755002704,0.3908132530120481,0.0,2.567348060030923,60.4340641530146,217.9177582430665,331.76806349772727,fqhc8_100Compliance_baseline,81 -100000,95851,41478,388.4466515737968,7315,75.1270200623885,5722,59.060416688401794,2375,24.339860825656487,77.4717338221379,79.75813849573751,63.40399372213196,65.09045471655462,77.17584474438102,79.46490908509793,63.295074708692106,64.986120278576,0.2958890777568825,293.22941063958297,0.1089190134398521,104.33443797862196,77.715,54.66500819238997,81078.96631229721,57031.23409499115,240.70636,147.955017382046,250489.15504272256,153722.9839876955,266.66078,127.38376795928198,274740.3156983235,130163.47811347694,4161.52302,1854.839886159816,4297086.801389657,1890691.4701616047,1399.07309,598.2767877617356,1444979.676790018,609550.1330469629,2343.11556,971.9220507071714,2403209.606576875,976978.1740436248,0.38093,100000,0,353250,3685.407559649873,0,0.0,0,0.0,20260,210.71245996390232,0,0.0,24940,256.7213696257733,2092560,0,75038,0,0,0,0,0,50,0.5112101073541225,0,0.0,0,0.0,0,0.0,0.07315,0.1920300317643661,0.3246753246753247,0.02375,0.3150116670987814,0.6849883329012185,25.492010843877345,4.556008143639927,0.3275078643830828,0.2016777350576721,0.2280671094023068,0.2427472911569381,11.116234396627789,5.592952710096455,25.03570984358666,13059.822487881986,64.10000789494198,13.500666714269528,21.069591098936037,14.417608490267629,15.112141591468786,0.5489339391821042,0.7755632582322357,0.7091782283884739,0.5770114942528736,0.1180705543556515,0.698741672834937,0.9393063583815028,0.8402625820568927,0.7220216606498195,0.1291512915129151,0.5026309768931595,0.7054455445544554,0.6669019054340155,0.5379377431906615,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368660795627,0.0045992847808248,0.0067634711715913,0.0087900933820544,0.0111068205836923,0.013277442591594,0.0152493684296308,0.0174828384622446,0.0198313011866103,0.0220076904197005,0.0242833294073065,0.0263470965889278,0.0285276955950032,0.030692458071818,0.032831328406057,0.0348730340675568,0.0370952725768077,0.039187844616724,0.0414005794212018,0.0433560902506036,0.0571035288228914,0.0708177389340748,0.0843988429613482,0.0975002364215238,0.1095359058952494,0.1253158534651371,0.1375046396945755,0.150088838293028,0.1622853848125053,0.1733108941032704,0.1872268979916912,0.201124142031022,0.2141530642165966,0.2263471092427799,0.2368733248385254,0.2484906119379879,0.2594424761013437,0.2690251572327044,0.2782812606203412,0.2867176061493411,0.2958265469961072,0.3036820913812219,0.3110780352966192,0.3182981981766409,0.3251086244143991,0.3309853951678447,0.3369047470213909,0.3423233350279613,0.3473878955675731,0.3525279417967102,0.3538871469135636,0.3550876903849587,0.3562607252370101,0.3572077463265512,0.3586708203530633,0.3584816241668195,0.3589593639855221,0.3601711587645091,0.3616527628503676,0.3621878842966369,0.3625980639967047,0.3648787423967138,0.3651106268856856,0.3662157629960872,0.3679379040203782,0.3698123044838373,0.3706074832835396,0.373113725490196,0.375405433683256,0.378074296316766,0.3796912490379827,0.3832217617681436,0.3872561439067646,0.3907524234497615,0.3911545089029293,0.399251026818072,0.4058396415881353,0.4058236611688047,0.4023783185840708,0.4034749034749035,0.0,2.533663177281733,59.04721528694149,222.29212336298647,327.5910069583866,fqhc8_100Compliance_baseline,82 -100000,95740,41442,388.803008147065,7347,75.42302068101108,5742,59.40045957802382,2304,23.61604345101316,77.34438518034166,79.69776313900903,63.33412346583962,65.07250106006603,77.05901798850962,79.41441751452341,63.22834674136082,64.97079996103082,0.2853671918320373,283.3456244856194,0.105776724478801,101.70109903521052,76.6326,53.87108626896917,80042.40651765197,56268.107655075386,240.94915,148.18196540140963,251085.8053060372,154190.89764091247,264.04795,125.78222058485404,272955.70294547733,129086.62251029654,4161.29807,1856.7047149231628,4303782.473365365,1896645.0646784648,1395.93757,603.1826603339027,1441342.667641529,613313.7250197434,2264.87996,947.4665310983904,2323533.632755379,952995.1290970404,0.38105,100000,0,348330,3638.291205347817,0,0.0,0,0.0,20320,211.64612492166285,0,0.0,24658,254.6897848339252,2093351,0,75196,0,0,0,0,0,48,0.5013578441612702,0,0.0,0,0.0,0,0.0,0.07347,0.1928093426059572,0.3135973866884443,0.02304,0.3192282958199356,0.6807717041800643,25.39947018402747,4.615237927963203,0.3369905956112852,0.1969696969696969,0.2326715430163706,0.2333681644026471,10.988766580242164,5.501649163647405,24.47468998736799,12999.24290107127,64.3095290542528,13.098794718886966,21.7197375419027,14.75673681570556,14.73425997775758,0.5414489724834552,0.7648099027409372,0.6764857881136951,0.5703592814371258,0.1291044776119403,0.6827133479212254,0.9041916167664672,0.8506493506493507,0.6950354609929078,0.1535836177474402,0.4971402425074354,0.7063989962358845,0.6218601493550577,0.5370018975332068,0.1222540592168099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0045623675646081,0.0067979585831836,0.008896742938972,0.011295931024666,0.0133254608939969,0.0154705366788283,0.0179805092096535,0.0200365787618395,0.0223472833316279,0.0245204524961062,0.0266242430462896,0.028552921096465,0.0308441725625894,0.0329392588924651,0.0352082838157636,0.0373360659979919,0.0392632692427353,0.0413020432767257,0.0430625,0.057328697758428,0.0713014902880107,0.084439968951266,0.0966283154197253,0.1089517141019286,0.1244633377746758,0.1378706885579737,0.1509708996116401,0.1632238907995642,0.1740179260657003,0.1882589785548187,0.2008914082952898,0.2132511254648659,0.2247294194817973,0.2351970608617219,0.2458419152658738,0.2566025941553367,0.2665406639891097,0.2759364358683314,0.2848191170068962,0.2944287565966114,0.3022964558265836,0.3093825845024566,0.3160522273425499,0.3217425135867913,0.328242484103957,0.3349303900664743,0.3403660947764526,0.3460245779317683,0.351298460887502,0.3535289516977264,0.3543538164783687,0.3552451499118166,0.3561397921070157,0.3572013641711469,0.3577234523132711,0.3574142069206682,0.3579437867386758,0.3601727595249113,0.3617516470925236,0.3622714546103688,0.3638507888686276,0.3644429493513866,0.3652298979729426,0.3651431198432093,0.3666081672211017,0.3680412371134021,0.3704266362830738,0.3712105151579393,0.3738942480887003,0.3750343689854275,0.377438370846731,0.3792577529232333,0.3782897246166756,0.3778954334877564,0.3826852182185753,0.3845440494590417,0.3835303878863306,0.3737402015677492,0.3740726278797345,0.0,2.221259446277971,60.45162077953562,214.7913324799924,336.3882253086803,fqhc8_100Compliance_baseline,83 -100000,95678,41425,388.78321035138697,7264,74.89705052363135,5628,58.3206170697548,2291,23.68360542653484,77.28108161739658,79.6666519246891,63.29287913429015,65.05520135604098,77.00321045078383,79.38526117907259,63.19221991744882,64.95496887904021,0.2778711666127549,281.39074561651967,0.1006592168413362,100.2324770007732,77.00066,54.13645542758751,80478.96068061623,56581.92628147276,237.25671,145.690379331384,247470.9024018061,151768.30549487242,264.59291,126.13676249057411,272346.4955371141,128796.0461182342,4096.45441,1815.6985046054572,4248697.704801521,1864914.697846377,1352.13054,581.1012153566692,1401443.3934655825,595587.0257077588,2256.11342,924.5734169517686,2333207.9474905413,945061.702230194,0.37985,100000,0,350003,3658.134576391647,0,0.0,0,0.0,19984,208.34465603378,0,0.0,24785,254.8861807312026,2090398,0,74997,0,0,0,0,0,25,0.2612930872300842,0,0.0,0,0.0,0,0.0,0.07264,0.1912333815979992,0.3153909691629956,0.02291,0.3218631427449954,0.6781368572550046,25.37246634833182,4.597481847740139,0.337775408670931,0.1945628997867803,0.2359630419331911,0.2316986496090973,11.153653953315944,5.530758501479786,24.19358661883157,13042.477651925594,63.169881803393366,12.608210432226992,21.58746531444592,14.87246548517868,14.101740571541765,0.5465529495380241,0.7634703196347032,0.7012098895318254,0.5820783132530121,0.102760736196319,0.6927710843373494,0.9172413793103448,0.8461538461538461,0.7137931034482758,0.1141732283464567,0.5013953488372093,0.7080745341614907,0.650319829424307,0.5452793834296724,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002096945752925,0.0044201583552144,0.0066878431452144,0.0090825044955349,0.0113398287329902,0.0136145167202965,0.0154985011317984,0.0176828521256176,0.0198722208024533,0.0219756599351068,0.0242589535634823,0.0265000616041726,0.0285996359485391,0.030930915460306,0.0330574247615902,0.035391916622724,0.0372388361180455,0.0392112091333679,0.0414100857119081,0.0432756949438729,0.05797298285571,0.0719431239922099,0.0847879252254048,0.0969890165383158,0.108954342138577,0.1250806613703441,0.1380715832378041,0.1506831808645459,0.162178342723356,0.173828083059546,0.1886088372644816,0.2020156046814044,0.2147065550025592,0.2262533125999255,0.2373921570787928,0.2484999722730549,0.2593047949033195,0.2688144184736694,0.2781426850610241,0.2870708043762471,0.2954835121544272,0.3031133921561734,0.3107542313577113,0.3181168386531,0.3249917842232744,0.3303953881667469,0.3360956834622569,0.3426257731301409,0.3479683240295989,0.3526063590395256,0.3543541109399908,0.3545745767860594,0.3550985165892877,0.3553135888501742,0.3561944589649765,0.3566846647284138,0.3571383157961662,0.3581116757969771,0.3595403325546241,0.3604872273249139,0.3616672322135505,0.3622260772467149,0.3628150060303421,0.3636343099826055,0.3661030947869601,0.3680214381420277,0.3679370006322929,0.369674861221253,0.3722326189046997,0.3739022832508382,0.3749713919531285,0.3776615614493836,0.3777679081276568,0.3795943266737837,0.3811951288586803,0.3847513551732265,0.3875443194080468,0.3917274939172749,0.3974849644614543,0.4006223259432127,0.0,1.988317812758688,58.911054636144144,210.28316343909609,334.4375807858819,fqhc8_100Compliance_baseline,84 -100000,95716,41771,393.4242968782649,7196,73.82255840193908,5575,57.5452379957374,2346,24.08165823895692,77.3612597271838,79.72639359741424,63.34108899169471,65.08901661085388,77.07773082660688,79.44315293655812,63.2378533041126,64.98839175889071,0.2835289005769255,283.2406608561229,0.1032356875821136,100.62485196316118,77.44484,54.46967757282031,80910.38070959924,56907.006804583725,239.34804,147.8995236672199,249326.110577124,153786.75988743792,265.03509,127.0473991890114,272411.05980191403,129300.86687560512,4057.15088,1814.582506333844,4193173.126749969,1850663.7153238924,1332.86304,575.8005013926639,1375809.154164403,585034.4224461224,2310.41742,949.63543453133,2375230.870491872,960137.4074202796,0.38233,100000,0,352022,3677.744577709056,0,0.0,0,0.0,20223,210.48727485477875,0,0.0,24715,253.6253082034352,2090814,0,74983,0,0,0,0,0,41,0.4283505370053074,0,0.0,0,0.0,0,0.0,0.07196,0.188214369785264,0.3260144524735964,0.02346,0.3191180353842091,0.6808819646157909,25.398196837295245,4.486265006890761,0.3262780269058296,0.2005381165919282,0.2337219730941704,0.2394618834080717,11.144085083060668,5.715820530374634,24.71659079473253,13040.59773442326,62.658207085586,12.913486105911003,20.69170507824383,14.467913408870796,14.585102492560372,0.5426008968609866,0.7495527728085868,0.7014843320505773,0.5863392171910975,0.1101123595505618,0.7251506024096386,0.9106628242074928,0.8652173913043478,0.7653429602888087,0.151639344262295,0.4855191900164822,0.6770428015564203,0.6460632818248713,0.5380116959064327,0.1008249312557287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285025475835,0.0045826912158325,0.0066164681049704,0.0088691570744988,0.0110749516932777,0.0131463717643225,0.0154589766075908,0.0174707714300301,0.0197940842679971,0.0219389844389844,0.0240841561317707,0.0259949673907461,0.0280260410774341,0.0302452793258681,0.0320410290278308,0.0342089755916012,0.036317130252884,0.0383018907083411,0.0403136080523234,0.0421441967076474,0.0572162418952358,0.0720617941659776,0.0853420605450311,0.0982587849347044,0.110002107925801,0.1252708916961784,0.1396288441145281,0.1521755323110974,0.1638181507434626,0.17548561382445,0.1888929563513426,0.2024642745102281,0.2139642088325469,0.2253864486083477,0.2361737218251786,0.2478277713210471,0.2587347079880898,0.2682214105085698,0.277654315388453,0.286276844177847,0.2941448578136022,0.3018828231829178,0.3097243582160179,0.3172107393480708,0.3239007823397416,0.3304790728574592,0.33669873797326,0.342168490904237,0.3477427790940045,0.3538699159087008,0.355029824821253,0.3557370961752692,0.357022091974752,0.3578249797430258,0.3590808292777306,0.3587551981831295,0.3591942181506958,0.3600184034966643,0.3614216842753103,0.3626198654644339,0.3636261155472052,0.3650995509279497,0.3660082547169811,0.365713900498854,0.3658837473694395,0.3652608067271055,0.3659111826967326,0.3686751580217895,0.3715095676824946,0.3747442737374142,0.3740531607216636,0.3745596242126615,0.3750079209175591,0.3763993252568624,0.375520242149073,0.3758220734186296,0.3803121619533302,0.3765165535677565,0.380249716231555,0.3835839089800893,0.0,2.622269925914072,57.923398467096746,213.7636451455511,323.58756634476003,fqhc8_100Compliance_baseline,85 -100000,95646,41391,388.6414486753236,7174,73.66748217384941,5559,57.50371160320348,2313,23.86926792547519,77.2430810454354,79.65019451696304,63.27207635196621,65.05124646089565,76.96164603963906,79.36512346780432,63.16856399673653,64.94879351473774,0.2814350057963395,285.0710491587165,0.1035123552296823,102.45294615791067,76.48784,53.76582212256881,79969.72168203584,56213.35144446062,236.78689,146.0719911268798,246928.14127093655,152083.7535804453,260.49945,124.26417479917755,267753.7168308136,126481.95473735464,4027.25949,1805.0683198120337,4171045.511573929,1848045.174463646,1320.69747,573.7075741890217,1366671.6433515255,585820.4139826078,2273.1728,943.041133072259,2347314.597578571,960824.2774625656,0.38031,100000,0,347672,3634.9873491834473,0,0.0,0,0.0,19993,208.3725404094264,0,0.0,24376,250.3607051000565,2091478,0,75056,0,0,0,0,0,29,0.3032013884532547,0,0.0,0,0.0,0,0.0,0.07174,0.1886355867581709,0.3224142737663786,0.02313,0.3047845625165213,0.6952154374834787,25.55252463107111,4.553184347051993,0.3191221442705522,0.2063320741140493,0.2401511063140852,0.2343946753013132,10.88439294158704,5.416933839469222,24.65555377417905,13078.027689330596,62.8328499673037,13.362221005040688,20.21799110910464,14.934897598057209,14.317740255101162,0.5475805000899442,0.7680906713164778,0.6972942502818489,0.5760299625468165,0.1204911742133538,0.6772334293948127,0.9020771513353116,0.8211920529801324,0.6747720364741642,0.1561338289962825,0.5044353871973148,0.7123456790123457,0.6548069644208933,0.5437375745526839,0.1112185686653771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021282633371169,0.0044631083520986,0.0071672943971249,0.0093376278970523,0.011473558939306,0.0136259483680431,0.0157736426204435,0.0177871262865544,0.0199402814136125,0.0220677084400024,0.0243562264770128,0.0263514623726585,0.028497089615171,0.0309476959213738,0.0332166929881604,0.0352301281189572,0.0371582774802399,0.0392551689778294,0.0412020470999417,0.0431718429091212,0.0575184709115799,0.07195231810278,0.0855879975222316,0.0981758470785133,0.1102911678385169,0.126319355487566,0.1398432022436101,0.1533213223457672,0.1654807887782069,0.1769911504424778,0.1910012947777298,0.2036119632733146,0.2154231565188977,0.2262278924601653,0.2381162311397176,0.249570070231108,0.2598029898140591,0.2699430761427042,0.2793524108371136,0.2877524571926645,0.2963679994435492,0.3038033992807862,0.3107787837133242,0.3173082694131345,0.3242022474646018,0.3305247031788587,0.3367126725219573,0.3422859914728484,0.3481985026515545,0.3536346296492529,0.3537753048739314,0.3542373816817065,0.3552592508801945,0.3561999535801323,0.3575842612771293,0.3574933472796911,0.3577521723907438,0.3590797991808693,0.3597637403203929,0.3622355518839122,0.3643949405323768,0.3653366832166856,0.3654381965552178,0.3664893137343313,0.3667102966841187,0.3663653374799041,0.3671039704097555,0.3679605472478524,0.3706035065258366,0.3713293210001211,0.3711660711799917,0.3736518550474547,0.3744009201865934,0.3751545117428924,0.3778651577634986,0.373722803221541,0.3764318217479994,0.3779527559055118,0.3761185682326622,0.3744631003514252,0.0,2.446755009754422,61.37202101478072,205.46717212681145,323.2283821720832,fqhc8_100Compliance_baseline,86 -100000,95824,41753,391.6450993488061,7376,75.79520788111537,5791,59.92235765570212,2338,24.044080814827183,77.44904619750217,79.77419255915294,63.38601454967061,65.10628445762954,77.16384397567437,79.48756268569792,63.28136333094319,65.00341528840383,0.2852022218278023,286.6298734550128,0.1046512187274189,102.86916922571264,77.1551,54.20517491925229,80517.28168308566,56567.201243166935,240.73608,147.7361190097517,250725.5280514276,153672.63838887092,266.96046,127.5129063748317,275341.51152112207,130615.2700713668,4206.73722,1879.5832099518727,4356565.484638504,1927994.343746737,1416.26784,611.3010267732338,1464185.0684588412,624198.0022930312,2314.1333,963.9922320964356,2382004.2995491736,978240.114645622,0.38296,100000,0,350705,3659.876440140257,0,0.0,0,0.0,20260,210.9074970779763,0,0.0,25054,258.17123058941394,2097370,0,75289,0,0,0,0,0,43,0.4487393554850559,0,0.0,0,0.0,0,0.0,0.07376,0.1926049717986212,0.3169739696312364,0.02338,0.3246753246753247,0.6753246753246753,25.41824901575719,4.611623462950187,0.3147988257641167,0.2084268692799171,0.2322569504403384,0.2445173545156277,11.102585899610135,5.46521366848472,24.830154394711943,13133.949392223994,65.03542366375697,14.046803612145968,20.52295229484213,14.867965818087455,15.59770193868143,0.545156276981523,0.7887323943661971,0.6977509599561162,0.5776951672862454,0.1101694915254237,0.6943042537851478,0.922077922077922,0.8699763593380615,0.6898954703832753,0.1438356164383561,0.4981834695731153,0.7262773722627737,0.6457142857142857,0.5472589792060492,0.1014234875444839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022077514355447,0.0045614426322564,0.0070013089403671,0.0092644325027173,0.0113792367064278,0.0136132691191593,0.015874310532916,0.0179426203574235,0.0200408788962698,0.0221526434805742,0.0243787467336168,0.026549671592775,0.0285978618421052,0.0307535494764586,0.03280700487825,0.0350944253894789,0.0371140849297771,0.0391111848449343,0.0413593201321503,0.0434198746642793,0.0582166774456011,0.0724845265975242,0.0858765825438081,0.0989483195175507,0.1113897640699255,0.1265548545279688,0.140438838244647,0.1532768319527004,0.1649988264663835,0.1764548394696823,0.1907301860415098,0.2032497488142954,0.2155738683864803,0.2266020604155753,0.2371949010178201,0.2483251895907492,0.2595876449424685,0.2698421608028918,0.2797178250334035,0.2886788787439006,0.2968133010045029,0.3050430073643546,0.3123524412125791,0.3196068584546954,0.3263997478696195,0.332808657156911,0.3396539671443551,0.3454040057878303,0.3506312266601196,0.3550285729334,0.3560312852765683,0.3567463588898049,0.3580158361813144,0.3584769492797552,0.3592934266729948,0.3598055848502912,0.3603151296989216,0.3610783542976939,0.3626624427298894,0.3642321597122046,0.3661318673099218,0.3672897933427985,0.3684849499727885,0.3683550820332609,0.3686490649594455,0.3695476680294784,0.371523122129347,0.3730313720549326,0.3724369154755602,0.3743683603230812,0.3748111523142425,0.3771193239557148,0.378997461928934,0.3787751357137396,0.3810966947627616,0.3853287361788134,0.3900938317181972,0.3918200408997955,0.388030888030888,0.3938931297709924,0.0,1.968657846512764,61.254543623776016,225.4244636862399,329.4046087578637,fqhc8_100Compliance_baseline,87 -100000,95817,41078,385.19260673993136,7329,75.38328271601074,5706,59.08137386893767,2284,23.586628677583317,77.3497797498425,79.68058981598963,63.33168066437421,65.05904152517708,77.07536408192539,79.4027587813642,63.23169945995466,64.95929722900323,0.2744156679171112,277.8310346254358,0.0999812044195493,99.74429617385285,76.71554,53.96234291434856,80064.64406107475,56318.130305007006,236.76338,145.6290039941501,246632.30950666373,151519.35877156467,268.22278,128.0320691851187,276235.32358558505,130906.04339601925,4144.14886,1862.2433640633728,4295963.012826533,1914438.3398179584,1389.18035,600.9875862548995,1440322.6880407445,617720.4736684511,2252.07982,936.618720948945,2327055.741674233,958487.8298649724,0.37749,100000,0,348707,3639.302002776125,0,0.0,0,0.0,19925,207.44753018775376,0,0.0,25131,258.55537117630485,2095055,0,75176,0,0,0,0,0,42,0.4383355771940261,0,0.0,0,0.0,0,0.0,0.07329,0.1941508384328061,0.3116386955928503,0.02284,0.3120041617895695,0.6879958382104305,25.37890497595061,4.54230714678047,0.3317560462670872,0.1943568173852085,0.2365930599369085,0.2372940764107956,10.967177367922554,5.440693935687018,24.308283615635904,12946.936446132524,64.28643649300868,13.0517975362766,21.33851995332626,14.905520783590884,14.99059821981495,0.5513494567122328,0.7799819657348963,0.7131537242472267,0.5888888888888889,0.1004431314623338,0.712878254750176,0.9173553719008264,0.9039301310043668,0.749185667752443,0.1228668941979522,0.4977829638273045,0.7131367292225201,0.6522648083623693,0.5417066155321189,0.0942507068803016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046032019629513,0.0069620638561308,0.009224923548954,0.0116875190723222,0.0137671198004174,0.0160889070146818,0.0181803333911783,0.0203501742694481,0.0226204976509483,0.024910047052311,0.0270137070691513,0.0288828337874659,0.0307885577774574,0.0326473773789261,0.03480021905126,0.0367050347797283,0.0387499611048302,0.0407995761083001,0.042768500395619,0.0571783262742807,0.070513691826727,0.0833508007042844,0.0960972636711361,0.1079901769622361,0.1232158338795965,0.1355464814127379,0.1487772172913607,0.1602832486008459,0.1713053830560829,0.185328850961124,0.1984999675317647,0.2120806683200626,0.2236166072716937,0.2344243357720446,0.2452905456318425,0.2557918935809303,0.2657413447911277,0.2759778945337766,0.2851531634697967,0.2936759533506108,0.3019518869800133,0.3088719028799962,0.3153784421526704,0.3222018482313082,0.3285334187381439,0.3347214927090368,0.3399630972831965,0.3456806113197772,0.3504054518080245,0.3509741791950381,0.3525128261709053,0.3534286803427974,0.3544994269631951,0.3551296000953928,0.3549135256351181,0.3552211799438122,0.3562248004607916,0.3575589364035088,0.3580364183812459,0.3595125253893026,0.3617346432469981,0.3627727100760856,0.3635303353145677,0.3649453703480379,0.3672161172161172,0.3680118897907854,0.3710723506076444,0.3706588086718586,0.3729055258467023,0.3759864969663792,0.3768293331914214,0.3787744227353463,0.3802588996763754,0.3809839795241255,0.3840752201856701,0.382339343504392,0.3830219333874898,0.379746835443038,0.3740219092331768,0.0,1.8070123566249847,63.14507717864009,214.18763323703692,326.8703645485069,fqhc8_100Compliance_baseline,88 -100000,95796,41331,387.2917449580358,7249,74.37680070149067,5663,58.50974988517265,2337,23.967597812017203,77.41775944651599,79.74488550929946,63.37436231324406,65.09487883561057,77.12822672205199,79.4580934431424,63.26788954664614,64.99251680146395,0.2895327244639958,286.7920661570622,0.1064727665979248,102.3620341466227,77.44088,54.470581115760055,80839.36698818323,56861.01832619322,239.86958,147.37454098456948,249754.2799281807,153200.54799279777,268.13229,127.9244085098898,276373.6272913274,130779.7371577515,4093.62954,1848.7271580334,4227753.110777068,1884352.72314966,1352.86377,595.3739576900875,1392440.1958328115,601766.3442082363,2307.99356,962.2945819904722,2369003.152532465,968996.0676099992,0.3792,100000,0,352004,3674.5166812810553,0,0.0,0,0.0,20218,210.39500605453253,0,0.0,25083,258.3406405277882,2093399,0,75206,0,0,0,0,0,46,0.4801870641780449,0,0.0,0,0.0,0,0.0,0.07249,0.191165611814346,0.3223892950751827,0.02337,0.32,0.68,25.277096226017598,4.555167539647797,0.3243863676496556,0.207487197598446,0.23079639766908,0.2373300370828183,11.068032310842328,5.505069989095289,24.81230505006011,12961.75146849398,63.798479841578725,13.76102203564543,20.686816400308427,14.686232993268115,14.664408412356751,0.5467066925657779,0.7676595744680851,0.6880783886771911,0.595256312165264,0.1130952380952381,0.7230014025245441,0.926027397260274,0.8760504201680672,0.7310126582278481,0.1672862453531598,0.4873731413736134,0.6962962962962963,0.6223365172667157,0.5519677093844602,0.0995348837209302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020352575461476,0.0043080291526866,0.0066767460502683,0.0088358960817371,0.0110733750915154,0.0133352335192801,0.0156355111609418,0.017677798644566,0.0198184754389909,0.0219326974249805,0.0241084881968859,0.0264840838867959,0.0287312013651175,0.0306998579282228,0.0328617681631643,0.0351897374455163,0.0372252349215548,0.0392203618267585,0.0410139206316226,0.043289051763628,0.0583662865310977,0.0717145634924783,0.0858700209643605,0.0984684552196474,0.1096903307352011,0.1250977326035965,0.1387829477074328,0.150930356193514,0.1627629037593503,0.1737965909212654,0.1878804827155979,0.2004472871064629,0.2131314886408062,0.2244463373083475,0.2350291176793759,0.245452533746404,0.2561069425707691,0.2658279038418333,0.2752138689026117,0.2843480449355938,0.2925256540630489,0.3002978102189781,0.3082394083315611,0.3158373641109142,0.3220129145021119,0.3285752992758264,0.3344293447685248,0.3402405227428746,0.3462792804451922,0.3514942195388813,0.3526152273613707,0.3536333608587944,0.3539382837818797,0.3543771408749945,0.3553989353793083,0.355001456809434,0.3552260558248582,0.3561115035234982,0.3577622998395302,0.3588928571428571,0.3592861566176885,0.3600948241801659,0.3614745848012078,0.3624245135316484,0.3634410678510222,0.3625988168158735,0.3646792927848029,0.3668603549548411,0.3675123326286117,0.3688070469129897,0.3705060682390657,0.3718729955099423,0.3717436775052291,0.3700053480021392,0.3704230696262569,0.3692031156381066,0.3661048689138577,0.3639337558781435,0.3606019151846785,0.3667434715821812,0.0,2.3245646808876157,62.78341202554922,212.91467998925316,320.8236466266691,fqhc8_100Compliance_baseline,89 -100000,95728,41386,389.4262911582818,7305,75.29667390941,5697,59.00050142069196,2283,23.524987464482702,77.3893283971574,79.74949433769487,63.35181630130408,65.09335002531664,77.1170144995946,79.47601888616906,63.25348065801016,64.997059287943,0.2723138975627961,273.47545152581176,0.0983356432939217,96.2907373736357,78.53934,55.17658962982485,82044.27126859436,57638.92448377157,239.83987,147.46177632669702,250031.2343306034,153530.6350563023,270.94345,128.82938206739547,279425.8837539696,131967.273285849,4105.08916,1819.599354224566,4255952.406819321,1868702.6352019955,1387.20263,597.9209595600935,1436251.4206919605,611850.1703164903,2249.71156,918.26426595699,2320670.8382082568,933895.2207333096,0.38084,100000,0,356997,3729.28505766338,0,0.0,0,0.0,20205,210.534013036938,0,0.0,25323,261.1357178672907,2086646,0,74873,0,0,0,0,0,48,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.07305,0.1918128347862619,0.3125256673511293,0.02283,0.320754716981132,0.6792452830188679,25.60325254459895,4.548540816757947,0.3287695278216605,0.2130946111988766,0.2266104967526768,0.231525364226786,11.169243254362502,5.603220426666097,23.99038558359805,13043.306457408602,63.83922391701313,14.133738862871176,21.17348047944044,14.226089243496354,14.305915331205169,0.5585395822362647,0.7841845140032949,0.7095568606513615,0.576297443841983,0.1190295678544351,0.7199124726477024,0.9102564102564102,0.8836206896551724,0.690566037735849,0.1547619047619047,0.5073971336107258,0.7245145631067961,0.652235628105039,0.5467836257309941,0.1105904404873477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813393155554,0.004581065604508,0.0068774535163263,0.0088543200349298,0.0110304582977512,0.013008163182216,0.0150517691178868,0.0171731189159404,0.0193936669153034,0.0215391541916933,0.0236909519417973,0.0257828210284401,0.0278462803123715,0.0299125064333504,0.032052472000495,0.034143165683225,0.0361409611363024,0.0380055390168763,0.0399434576087973,0.0418871619650818,0.0564071506139838,0.0707984973892661,0.084411021260082,0.0968342252736276,0.1094995151157397,0.1251083899075777,0.1391357841369508,0.1512928877864952,0.1634939964961757,0.1754961561967255,0.1892019942068935,0.2022800034611058,0.2149068458009956,0.2266331383589351,0.237750005500671,0.2485129761522358,0.2591873402747553,0.2691325813380717,0.2779921027549584,0.2865113188525341,0.2946047533684149,0.3027135725392538,0.3106796116504854,0.3176903088289884,0.3238875736052935,0.3311044614380534,0.338096906597257,0.3438755786153924,0.3491397724183463,0.3546166627106575,0.3559376722550114,0.3569159688131678,0.3574703268267987,0.3580594814879043,0.3592325284386231,0.3585549469045506,0.3582155616680894,0.3588516746411483,0.3591948140566359,0.3600157025088326,0.3612401648557512,0.3621981846585853,0.3633310242038751,0.3648239854796423,0.366647368167125,0.3678628202121283,0.3693048982152021,0.3713737938837728,0.3721951048214348,0.372835583796664,0.3735529627087623,0.3737832923307305,0.3745874587458745,0.3770016775964618,0.380164507894488,0.3797498511018463,0.3789134438305709,0.3834418226200162,0.3797003109980209,0.3811588490342925,0.0,1.9789734493930649,60.72441522940984,212.73597395945453,332.5025908913684,fqhc8_100Compliance_baseline,90 -100000,95677,41331,387.5748612519205,7227,74.42750086227619,5609,58.10173813978281,2344,24.143733603687405,77.35982293729873,79.73378741118609,63.33991942654043,65.089102873522,77.07477533153346,79.44624168150418,63.23622111336347,64.98645516491811,0.2850476057652713,287.5457296819093,0.1036983131769631,102.6477086038824,76.69464,53.99830868691732,80159.9548480826,56438.12900374941,238.50381,147.09312797662906,248749.87719096543,153210.11920000752,266.87688,127.70063300070998,275012.43768094736,130530.19401080297,4070.08731,1829.5924556813056,4220847.601826981,1879182.8339675944,1380.11192,601.99287904931,1428499.9111594218,615276.5289963374,2309.6165,955.6173943906308,2381586.0865202714,973197.1544514484,0.37897,100000,0,348612,3643.634311276482,0,0.0,0,0.0,20164,210.18635617755567,0,0.0,24907,256.45661966825884,2093384,0,75027,0,0,0,0,0,51,0.5330434691723194,0,0.0,0,0.0,0,0.0,0.07227,0.1907011109058764,0.3243392832433928,0.02344,0.3151387610153887,0.6848612389846114,25.35992191453536,4.602503650305505,0.3360670351221251,0.1968265287930112,0.2278481012658227,0.2392583348190408,11.1581308691704,5.617618669537093,24.91174770153977,13007.051794001807,63.52271415419079,13.078260576143974,21.43967640924687,14.22300400187376,14.78177316692617,0.5467997860581209,0.7726449275362319,0.6885941644562334,0.5782472613458529,0.1318926974664679,0.6984463276836158,0.8929577464788733,0.8562628336755647,0.7074829931972789,0.1678571428571428,0.4955878845695206,0.7156208277703605,0.6301859799713877,0.5396341463414634,0.1224105461393597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0046117513505843,0.0066656521077461,0.0089171457008795,0.0112046526761021,0.0132322255585525,0.0153761501543728,0.0176611027221156,0.0198778320292549,0.0219637449873148,0.0243817485196795,0.0263452167222364,0.0285937467880855,0.0307860217046601,0.0327904362087283,0.0350055810492372,0.037298908880101,0.0396087867410649,0.0413760123088438,0.0433840157570578,0.0581358906857214,0.0720649977489503,0.0856168337093981,0.0978011572856391,0.1094318529377643,0.1245913433562216,0.1378340514954044,0.150343990287333,0.1624961251910681,0.1740968898237781,0.1880327144596618,0.2009355914583965,0.2131936056065206,0.2245340221305285,0.2352021319942295,0.2464521132221791,0.2575042139691683,0.2680266294813548,0.2771154042495263,0.2854411175359249,0.2935296907717402,0.3009511107991436,0.308706405841351,0.3164142987205903,0.3236000873807617,0.3301192059504458,0.3360969387755102,0.3416789583439296,0.3463818770226537,0.3519579625571017,0.3534099781912173,0.354111588455607,0.3551946494334777,0.3565281534300467,0.3574327639266759,0.3572315665199859,0.3566828463563973,0.3585135446496165,0.3596549891112368,0.3610951834862385,0.361655322829316,0.3629597284798443,0.3644076717404577,0.3643388216267211,0.3657246376811594,0.3657885787532372,0.3658236890984426,0.3684609313338595,0.3721838918614474,0.3725857940941739,0.3735745362949393,0.3751474214645652,0.3734878064392242,0.3727709722437587,0.3764222200975237,0.3776673132880698,0.3823072139303483,0.3834802213568354,0.3805479452054794,0.3759720062208398,0.0,1.9813355086315656,62.82334112214398,215.4522683897519,314.7678623918328,fqhc8_100Compliance_baseline,91 -100000,95856,41713,390.7632281755968,7219,74.09030211984644,5558,57.419462527124026,2362,24.29686195960608,77.34109898624328,79.63265975912009,63.34986309044478,65.04452233565024,77.0488466298353,79.33744528606793,63.243265854400846,64.9387745472812,0.2922523564079853,295.2144730521553,0.1065972360439317,105.74778836904386,76.15344,53.65900190470378,79445.66850275412,55978.76179342324,238.37311,147.2415510405802,248159.3849106994,153088.07068997266,261.81572,125.42758755329952,269040.1435486563,127749.54155104495,4089.33963,1835.13916509878,4229399.557669838,1877746.593952156,1361.41272,592.3814508868484,1404156.276080788,601878.6209385411,2334.10704,975.0532973496591,2402953.868302454,991205.4015417424,0.38251,100000,0,346152,3611.166750125188,0,0.0,0,0.0,20081,208.92797529627776,0,0.0,24415,250.6989651143382,2095621,0,75210,0,0,0,0,0,44,0.4485895509931564,0,0.0,0,0.0,0,0.0,0.07219,0.1887270921021672,0.3271921318742208,0.02362,0.3165637724944174,0.6834362275055825,25.458573289094986,4.642915170043652,0.3296149694134581,0.1899964015833033,0.2284994602374955,0.2518891687657431,11.104035965970905,5.5047053347188255,25.362603267396583,13114.532231465617,62.86188856723649,12.37153079187778,20.77232886083897,14.211118124274249,15.506910790245492,0.5275278877293991,0.759469696969697,0.6926855895196506,0.5645669291338583,0.1028571428571428,0.6790393013100436,0.9145569620253164,0.8629550321199143,0.7006802721088435,0.1178451178451178,0.4777724665391969,0.6932432432432433,0.6344322344322344,0.5235655737704918,0.098821396192203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024302566958635,0.0045799515659989,0.0067857468885981,0.0094320466221292,0.0116479986990018,0.013758853700236,0.0160966614709088,0.0184850803366488,0.0206728903233714,0.0227605184283478,0.024706280024993,0.0264607242854066,0.0285429633738008,0.0308043706401629,0.033034858679636,0.035123028651639,0.0374211560335022,0.0395366667357384,0.0413292637348947,0.0435497295047856,0.0579764548857676,0.0712643437911502,0.0855155654250639,0.0984141986977525,0.1104828094561154,0.1264443083162586,0.1401406809466302,0.152803470051668,0.1650376661900595,0.176486978887579,0.1902650581664388,0.2041052483588739,0.2169195982084619,0.2279558844425984,0.2386846216471934,0.2500581633670496,0.2603659897344342,0.2699975249195598,0.2790272797421814,0.2878527579256001,0.2964261335369593,0.3045558219778934,0.3118632033607479,0.3185986024379427,0.3257939449920393,0.3322640345465762,0.3380348732337909,0.34353507565337,0.3499591804999417,0.3548787902820736,0.356253624849948,0.3575298090840168,0.3582899029702131,0.3591793502705996,0.3599241824992911,0.359295438812399,0.358798174038905,0.3591115514821237,0.3605580434033758,0.3615567653315066,0.3619204483065447,0.3630359743809733,0.3641153691516601,0.364002443273081,0.3642387332521316,0.3654866555793141,0.3659373288362305,0.3680305683808311,0.3694172692471288,0.370877910005209,0.3725057471264368,0.3746447149675551,0.3778969546063972,0.3795148247978436,0.3808292636215646,0.3811129848229342,0.3801961700140121,0.3841738417384174,0.3927181767648693,0.4027885360185902,0.0,2.2369400951808407,60.76131615744902,211.15841731589725,319.350913106087,fqhc8_100Compliance_baseline,92 -100000,95655,41566,390.6852752077779,7391,76.09638806126182,5778,59.95504678270869,2277,23.490669593852907,77.31769350596971,79.7397144527274,63.289715480586615,65.0812134405275,77.04593637323968,79.4666842408451,63.18980540536428,64.98328951281269,0.2717571327300305,273.0302118823005,0.0999100752223398,97.92392771481671,76.56286,53.88156621805873,80040.62516334745,56329.06405107807,241.7748,148.89103850105278,252341.9267158016,155239.04500658903,267.57753,128.02425010807687,277188.8766922796,131823.27108603434,4165.8488,1855.8524389778847,4325128.378025196,1910203.5324634204,1389.2774,602.6023578242315,1441781.2555538132,619372.5553543794,2243.1812,924.739092996214,2316178.05655742,940735.091667044,0.38125,100000,0,348013,3638.210234697611,0,0.0,0,0.0,20360,212.39872458313727,0,0.0,25057,259.4636976634781,2090485,0,74937,0,0,0,0,0,51,0.5227118289686895,0,0.0,0,0.0,0,0.0,0.07391,0.1938622950819672,0.3080773914219997,0.02277,0.3104999357409073,0.6895000642590927,25.184528923914176,4.607475748825968,0.3286604361370716,0.2012807199723087,0.2409138110072689,0.2291450328833506,11.04913895261203,5.513558501390771,23.925207251019728,13062.551330988876,64.71162374852182,13.491691094077916,21.388207867433536,15.471415072568282,14.360309714442067,0.553478712357217,0.7773000859845228,0.69826224328594,0.5876436781609196,0.1132930513595166,0.7080028839221341,0.9277777777777778,0.8398268398268398,0.7272727272727273,0.1400778210116731,0.5046686404008198,0.709838107098381,0.6527487821851079,0.5479704797047971,0.1068416119962511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024009238998298,0.0044315093497748,0.0063553299492385,0.0085569975304627,0.0108457883545128,0.0131519967400162,0.0154652847203803,0.0175829340307931,0.0197517218793814,0.0220793997355392,0.0242880900075964,0.0266001747982108,0.0287511971084039,0.0308338233321986,0.032949320659193,0.0350176433457164,0.0370973260479631,0.0391490864520686,0.0411385159746071,0.043080613202628,0.0580323551542513,0.0720071252685073,0.0851951052990914,0.0971394266214479,0.1090248590195788,0.124148741249113,0.137713733116545,0.1502014624682883,0.1621520422791364,0.1733946333813135,0.187704290229668,0.2008539135900131,0.2130656441316804,0.2241097930974052,0.2351722237531,0.246927138800142,0.2583853986207821,0.2685371870107342,0.2784414817506643,0.2873793751575859,0.2961028432451213,0.3038170262076715,0.310802326545601,0.3176816463670726,0.3236303453647139,0.3301176876958377,0.3363557804300725,0.3426952702272582,0.3494814622763806,0.3552118448013748,0.3562497470966698,0.357473481195757,0.3586994851541011,0.3597888953152111,0.3608270408466615,0.3610356940162287,0.3605215570571999,0.3614341085271317,0.3618391825855175,0.3634386365257078,0.3647921029015854,0.36517640562447,0.3661516648943934,0.3668464933791074,0.3688263090983233,0.3693461448324349,0.3689171103960819,0.3703087736914773,0.373508353221957,0.3754224148212937,0.3774561443686163,0.378306171520171,0.3818273983018629,0.3828387886203732,0.3862088535754824,0.3906101048617731,0.3911769242634583,0.3861526039563989,0.3883842554362786,0.3898045228056727,0.0,1.7821428986054884,61.68024367107432,214.81018746785483,338.7300133727841,fqhc8_100Compliance_baseline,93 -100000,95709,41507,390.10960306763207,7249,74.48620296941772,5659,58.54203888871475,2407,24.68942314724843,77.34880342590687,79.70792462578153,63.338894218876014,65.07789805409739,77.05209481254093,79.4117280407954,63.22956346268453,64.97186906807848,0.2967086133659364,296.1965849861343,0.1093307561914898,106.02898601891296,77.15136,54.3036127452967,80610.35012381281,56738.25109999759,241.88289,149.31527509501132,252129.9041887388,155412.1295750779,269.89707,128.73297787195287,279139.1614163767,132208.18892599086,4133.08475,1863.4556151333309,4277498.626043528,1906258.1372945784,1433.51714,621.6483149663045,1484419.44853671,636151.4434027151,2370.22064,985.921308739538,2434399.8370059244,994148.0836299936,0.38021,100000,0,350688,3664.1068238096727,0,0.0,0,0.0,20450,213.03116739282615,0,0.0,25180,260.16362097608373,2088623,0,74939,0,0,0,0,0,55,0.5746586005495826,0,0.0,1,0.0104483381918105,0,0.0,0.07249,0.1906577943767917,0.3320457994206097,0.02407,0.3293562344303133,0.6706437655696866,25.30407387555477,4.540652574273104,0.3212581728220534,0.2002120515992224,0.2330800494787064,0.2454497261000176,11.03583135004401,5.576586441243424,25.64431605157696,13046.533162149968,63.97521375967561,13.342606063881975,20.451819390718665,14.80700190928208,15.373786395792884,0.5447959003357483,0.7872903795233892,0.680968096809681,0.5928733889310084,0.1231101511879049,0.6940350877192982,0.935064935064935,0.8600917431192661,0.7114093959731543,0.1372549019607843,0.4945677846008502,0.7112299465240641,0.6244573082489147,0.5582761998041136,0.1191135734072022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.004672991931233,0.0066967683019633,0.0091731935513363,0.0112554904831625,0.0134168066371456,0.015656375182199,0.0176992957027661,0.0198559092534873,0.022179008239087,0.0244142426665026,0.0264381382460101,0.0286231288040796,0.0306287385077884,0.0326700296062472,0.0347603252839001,0.0370163286014558,0.0389192666452235,0.0408105972383962,0.0428159093040461,0.057210293257582,0.0714547376573898,0.0845670398388399,0.0973674796405799,0.1095381759108841,0.1257616790792146,0.1388806350284404,0.1517003470965269,0.1639172614214282,0.1747623849471132,0.1884554474645292,0.2017854244440837,0.2142585199769392,0.2256215613138925,0.2367531995906284,0.2474843743073717,0.2576886555325923,0.2674721043090539,0.2766346437737049,0.2854785478547855,0.2935345276835242,0.3010287078539914,0.3087390598908062,0.3169752050261378,0.3246606472311001,0.3304567589225174,0.3366567007343099,0.3425990713058965,0.3481108507966916,0.35302734375,0.3540504111066181,0.3549107142857143,0.3559142667663783,0.3571883688600556,0.358481291706387,0.3589113850215666,0.3591098836563338,0.360346132333103,0.3613572101790763,0.3620711278330198,0.3639437254644151,0.3652165295808146,0.3660182946062454,0.3666411836128974,0.3674719209914794,0.3690713536201469,0.3704459844149869,0.3737944162436548,0.3765392781316348,0.3787981904800032,0.3816976615724544,0.3825275199654651,0.3847735303565692,0.3840118085767557,0.386852207293666,0.3838690115221346,0.3846760208103421,0.3876439790575916,0.3819523269012486,0.3746534653465346,0.0,2.267511890660295,62.94688459611609,212.24917021766348,323.8326038015477,fqhc8_100Compliance_baseline,94 -100000,95641,41588,390.7529197729007,7238,74.57052937547704,5614,58.186342677303664,2217,22.87721792954904,77.26744378178137,79.68546679842338,63.28338998351626,65.07062618508644,76.998860840158,79.41437924162372,63.18502143051579,64.97362497002929,0.2685829416233645,271.0875567996567,0.0983685530004692,97.00121505714776,77.3509,54.42653419037517,80876.29782206376,56907.11534841247,241.01675,148.6468288501395,251441.51566796665,154861.6794577007,265.84928,127.27650264625956,275008.86649031274,130712.29178123736,4051.21976,1802.5374175944864,4199977.467822378,1848807.6322858247,1357.58229,583.9910394223543,1404550.872533746,595701.8950265617,2193.32756,912.2413487675208,2263875.9946048246,926779.7623655606,0.3799,100000,0,351595,3676.195355548352,0,0.0,0,0.0,20307,211.7397350508673,0,0.0,24830,256.6367980259512,2086229,0,74863,0,0,0,0,0,44,0.460053742641754,0,0.0,1,0.0104557668782216,0,0.0,0.07238,0.1905238220584364,0.3063000828958275,0.02217,0.314503415659485,0.685496584340515,25.575599023775094,4.611758971780833,0.3361239757748486,0.2025293908086925,0.2231920199501247,0.2381546134663341,10.99713723915298,5.402526777573316,23.78102858783153,13032.547903005638,63.10465082614067,13.122471038493796,21.29933627391841,13.797910869233077,14.884932644495397,0.5390096188101176,0.7440633245382586,0.6841547429782724,0.5778132482043097,0.1234106207928197,0.7173091458805745,0.934131736526946,0.8702127659574468,0.7203065134099617,0.1550387596899224,0.4840363551619669,0.6650062266500623,0.6224417784050812,0.5403225806451613,0.1158480074142724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026546699900703,0.0050294058000405,0.0075434535412605,0.0097248191203967,0.011871941728807,0.0141565160712103,0.0162326406590941,0.0182135601180206,0.0201842554627347,0.0222629568565606,0.0244910517409363,0.0266774869540206,0.0286704797959015,0.0305921628834324,0.0327618418472146,0.0350153521694631,0.0368912732771299,0.0389844933884125,0.041117548549496,0.0431718429091212,0.058503244954905,0.0727048029995182,0.0857442898398529,0.0982004654150301,0.1101997297525546,0.1258867876580335,0.138401248924714,0.1508428702342135,0.1627824896522957,0.1745699375040268,0.1885305123311011,0.2017786154529403,0.2134182174338883,0.2246126236540313,0.2355693540751505,0.2471775667800441,0.2578938556839109,0.2677844041858895,0.2768933802656977,0.2856700711853915,0.2942981541953264,0.3022088588342654,0.3102006985968859,0.316813267253069,0.3233100998674111,0.3299009803195298,0.3358222979491098,0.3420261804105333,0.3475476150345525,0.3523623088725464,0.3531302328093772,0.3538578225194787,0.355042788149236,0.3564108139450605,0.3571822915889523,0.3566718416158138,0.3562534785719965,0.356880567768282,0.35838546576399,0.3597003691623956,0.3601219604005119,0.3601950442830132,0.3618384988403963,0.3633340822287126,0.3651269649334945,0.3672719638920961,0.3685220729366603,0.3701935239058943,0.3727938315707566,0.3755110220440881,0.3780871334751642,0.3813132680127754,0.384457421549124,0.3857950584772674,0.387293713631594,0.3894927536231884,0.3934093393721693,0.3954930742195576,0.4029807967899111,0.4022708840227088,0.0,1.8993059037562432,58.68795537023271,214.28886086474432,329.2798463397208,fqhc8_100Compliance_baseline,95 -100000,95848,41443,389.28303146648864,7175,73.8565228278107,5603,57.977213922043234,2253,23.182539020115183,77.40182060844235,79.71367945892557,63.36325590393732,65.0749004912694,77.12915729821005,79.43969144539562,63.26508978661022,64.97804777105772,0.2726633102323035,273.9880135299444,0.0981661173271035,96.852720211686,76.97536,54.19567740530035,80309.8238878224,56543.3576134091,237.94226,146.38132118918836,247757.417995159,152230.18862072073,262.83061,125.36539705028068,270833.13162507303,128159.19561402746,4021.02566,1775.0818598944816,4164146.878390786,1820911.9646674765,1374.52822,586.677596525636,1421289.6982722643,599310.4984200363,2215.11922,901.2570142104172,2281433.707536933,915916.601122326,0.38044,100000,0,349888,3650.4465403555632,0,0.0,0,0.0,20055,208.72631666805776,0,0.0,24533,252.58743009765465,2095510,0,75214,0,0,0,0,0,46,0.4799265503714214,0,0.0,0,0.0,0,0.0,0.07175,0.188597413521186,0.314006968641115,0.02253,0.3223326706428098,0.6776673293571902,25.539319028373008,4.504169969657175,0.3374977690522934,0.2057826164554702,0.2247010530073175,0.2320185614849187,10.99646543672186,5.479029463461533,23.6395862889924,13035.457257872891,62.74188579334298,13.431580929705818,21.36115164857973,13.986160129111214,13.962993085946216,0.5438158129573443,0.7632263660017347,0.6858804865150714,0.5671167593328038,0.12,0.7283582089552239,0.9204545454545454,0.8402489626556017,0.7642857142857142,0.1460176991150442,0.4858081163499883,0.6941323345817728,0.6330731014904187,0.5107252298263534,0.1145251396648044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023896798234067,0.0043985446290121,0.0065535851966075,0.0086027402825598,0.0107461290552149,0.0128771529785414,0.0148703052540386,0.0169422331087977,0.0189504671177709,0.02125830322508,0.0233406796166265,0.0257010305045777,0.0277323794546033,0.0298381450516865,0.0318694692547288,0.0339832408584152,0.0360000414031528,0.0381572535072529,0.0402043974533406,0.0423439548775157,0.0572414799983314,0.0710686959066772,0.0845854026529201,0.0974823279800854,0.1101867160925471,0.1254197908966099,0.1393631895602067,0.1515151515151515,0.1644097277800898,0.1751424531939505,0.1895420619044546,0.2024439786503014,0.214739655191144,0.2263107867451846,0.2366228455856489,0.247871857599876,0.2585368573658971,0.2684654300168634,0.2787324055485612,0.2869275584602882,0.2954353583365137,0.3030745849894786,0.3111597374179431,0.3181317101226993,0.3249766182025774,0.330606008329842,0.3361694673490071,0.3422023249306845,0.3471646815121698,0.3521416695257449,0.3538558888470031,0.3540390623924683,0.354527015606513,0.3560007510869094,0.3574387835409768,0.3576012866661561,0.357448155770144,0.3592839915339054,0.3604899465295454,0.3619714035808,0.3631356090980627,0.3646551894530864,0.3663677505866577,0.3663242239083238,0.3678630670481044,0.3686199885303164,0.370772740233818,0.3721258952129664,0.3739854537788553,0.3747412008281574,0.3752119129438717,0.3746453236254617,0.3782209559987338,0.3824810823205686,0.3842905405405405,0.3808788598574822,0.3845443349753694,0.3865683865683865,0.3900946021146355,0.390081999219055,0.0,1.778162444344806,59.740452372247766,208.62603697605525,327.9574664997022,fqhc8_100Compliance_baseline,96 -100000,95706,41409,388.5336342549056,7231,74.43629448519424,5606,58.09458132196518,2296,23.66622782270704,77.32145341825886,79.70728699242962,63.3143933609397,65.07968514692195,77.03455048048717,79.41740762827658,63.209705765195935,64.97592066076717,0.2869029377716856,289.8793641530375,0.104687595743762,103.7644861547733,76.64734,53.92562038278573,80086.24328673228,56345.07803354621,238.03777,146.65158850531702,248249.9216350072,152764.42965370687,264.0199,125.61842548761264,272642.3839675673,128843.16023585864,4027.90606,1806.3530155719427,4177049.620713434,1855932.262490115,1338.48298,583.2741283889902,1386888.9620295488,597816.0918003364,2254.69348,939.0993157273388,2325930.2029130883,957225.626896801,0.37968,100000,0,348397,3640.283785760558,0,0.0,0,0.0,20092,209.4330553988256,0,0.0,24638,254.25783127494617,2095233,0,75144,0,0,0,0,0,45,0.4597412910371345,0,0.0,0,0.0,0,0.0,0.07231,0.1904498525073746,0.3175217812197483,0.02296,0.3206728873702195,0.6793271126297805,25.320533655941016,4.607492072524836,0.3287549054584374,0.2054941134498751,0.2377809489832322,0.2279700321084552,11.075711142783414,5.560087539226724,24.47309401147519,13069.470449832324,63.266032072217726,13.46707676226928,20.80774666035138,14.804567725834374,14.186640923762692,0.5522654298965394,0.7508680555555556,0.7059142702116115,0.5746436609152288,0.1283255086071987,0.6792592592592592,0.8933717579250721,0.8561320754716981,0.7137809187279152,0.1418918918918918,0.511983082706767,0.6894409937888198,0.6610288935870331,0.5371428571428571,0.1242362525458248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202561400664,0.0042896257986005,0.0067808997888582,0.0089836485401571,0.0114764772912257,0.0136500692690082,0.0159193122367602,0.0178988962517485,0.020037211965078,0.0220077180555413,0.024052164284689,0.0262379592926533,0.0282892706511675,0.0302646222332138,0.032422221763455,0.0349465978763221,0.0371022538945972,0.0392291167221893,0.041297045456909,0.0433146775891358,0.0578527934157066,0.0710121109982937,0.0841650138001238,0.0972735212720059,0.1092988416010803,0.1250515976757231,0.138567516504978,0.1510965309361253,0.1625948487763172,0.173827706036295,0.1879093416063426,0.2011322552012296,0.2142826068041416,0.2258675009845534,0.2369029021540628,0.2476966690290574,0.2587439893789118,0.2684961383233465,0.2786585919070949,0.2878935373409531,0.2972985480418811,0.3056598477139549,0.3130217522587062,0.3195951698583814,0.3261738929608965,0.332236517795524,0.3382785602503912,0.3433399931281098,0.3487303600548753,0.3535621445442909,0.3549386457617758,0.3560923936221437,0.3577667577695754,0.3588334803290777,0.3597094459825548,0.3589133239142453,0.3593402755730522,0.3602132841814232,0.3605316342958928,0.361003653556845,0.36242784348382,0.3638564257227326,0.3638486786736239,0.3650986479494275,0.3657349094080031,0.3672448737858966,0.3682419768749459,0.3705469221724346,0.3713637008656166,0.3738430099771607,0.3747873660981104,0.3745759974156032,0.3770691646349288,0.3748639825897715,0.376373888941986,0.3803926320891905,0.3813174777030199,0.3797808559024188,0.3871780515117581,0.3886497064579256,0.0,1.81586060850912,60.01211264529648,215.4338236545774,324.4628840496059,fqhc8_100Compliance_baseline,97 -100000,95690,41273,389.0375169819208,7052,72.3691085797889,5450,56.21277040443098,2183,22.36388337339325,77.3455376358958,79.7319134828144,63.32130932583449,65.08706651727256,77.05830424709161,79.44811697720576,63.214343235914335,64.98468266600749,0.2872333888041822,283.7965056086489,0.1069660899201565,102.3838512650741,78.48852,55.182890764020776,82023.74333786184,57668.39875015234,237.5032,146.5854864515842,247478.93196781276,152466.1683055535,263.86056,126.02190240902728,271267.4051625039,128220.47565704463,3941.98992,1772.89532945847,4073505.799979099,1806712.4145244744,1326.571,575.3026430966033,1371260.852753684,586187.9078644139,2159.39728,915.0391437194836,2216054.781063852,920883.4494379642,0.37795,100000,0,356766,3728.351969902811,0,0.0,0,0.0,20059,208.86195004702685,0,0.0,24645,253.02539450308288,2086722,0,74812,0,0,0,0,0,35,0.365764447695684,0,0.0,0,0.0,0,0.0,0.07052,0.1865855271861357,0.3095575723199092,0.02183,0.3140005395198273,0.6859994604801727,25.38013336007941,4.575631898179829,0.3179816513761468,0.2066055045871559,0.2359633027522935,0.2394495412844036,11.020378484853303,5.461546588364216,23.514950315183285,12880.430641931678,61.2627429801096,13.04360470315576,19.489445801430595,14.299001326627554,14.430691148895695,0.551559633027523,0.7655417406749556,0.7016733987305251,0.5979782270606532,0.1218390804597701,0.6979472140762464,0.923529411764706,0.8645598194130926,0.7037037037037037,0.1619718309859155,0.5026921194322075,0.6972010178117048,0.6457364341085271,0.5662285136501517,0.1106758080313418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188674657291,0.0043612759267711,0.006447027767907,0.0086892010000203,0.0106718482949458,0.012772458749236,0.0149701209438926,0.0172788823871817,0.0192040248691099,0.0212079629705484,0.0232706015076149,0.0253389482333607,0.0274131830151415,0.029697256970921,0.0316411934075687,0.0338068358042305,0.0355104366292018,0.0374272162080812,0.0393327370676206,0.0413562430317491,0.056138701759883,0.0699572971615172,0.0831024349286314,0.0960743258172788,0.1080345558684851,0.1230655312847093,0.1363626716471761,0.1490089149722538,0.1612306639727184,0.1721468981138557,0.1859362030119767,0.1995862487273357,0.2113238768111997,0.2227000645634308,0.2343079192444023,0.245539573128837,0.256834749215776,0.2660957246874261,0.2751228480315943,0.2841127702455112,0.2923258532294837,0.3001087604813528,0.3081891962236471,0.3153185525890258,0.3219050856511551,0.3287114569993104,0.3341838010905998,0.3394221357841081,0.3445658498739251,0.3498590658834066,0.3505337599827906,0.3507634845655278,0.351124623483377,0.3523736622423778,0.352355220379745,0.3527143053918792,0.3533887022126418,0.3540898314014752,0.3556343456143055,0.3561317373853211,0.3567702939348862,0.3579893422413107,0.3584384359050069,0.3586746392123364,0.359579925470648,0.3605774278215223,0.361830792158661,0.363713987539926,0.3672878723704645,0.3696851023017903,0.3712076145151695,0.3753934802326202,0.3760343629587518,0.3772720329922102,0.3812458519010145,0.3856540084388186,0.3890440720049659,0.3845836768342951,0.3783259423503325,0.3767605633802817,0.0,2.865897586690098,59.56542801801301,199.96515882735807,314.5888702249417,fqhc8_100Compliance_baseline,98 -100000,95607,41385,388.4861987092995,7205,74.07407407407408,5631,58.29071093120797,2315,23.774409823548485,77.23812690061078,79.6693192780591,63.25655152000609,65.05412885102471,76.95044749817441,79.38424275276363,63.14947325425368,64.95155673076063,0.2876794024363676,285.0765252954801,0.1070782657524134,102.57212026408524,77.01562,54.18726898566702,80554.37363372976,56677.09371245517,240.95986,148.96312601572683,251432.4160364827,155208.56842671233,269.66989,128.81473713301494,278898.7521834175,132163.41399266096,4039.31775,1819.4855772494268,4183858.9643017766,1862028.7920857545,1325.09829,578.8425719405935,1369765.1008817344,589220.0382195798,2267.70144,949.770281293593,2331367.368498123,957179.9604024364,0.37887,100000,0,350071,3661.562437896807,0,0.0,0,0.0,20353,212.26479232692168,0,0.0,25135,259.7194766073614,2082900,0,74836,0,0,0,0,0,44,0.4602173481021264,0,0.0,0,0.0,0,0.0,0.07205,0.1901707709768522,0.3213046495489243,0.02315,0.3210449542500994,0.6789550457499005,25.33568076069465,4.558408940408239,0.3404368673415024,0.2067128396377197,0.2301545018646776,0.2226957911561001,11.18362256983665,5.702509519788109,24.68171948485478,13010.82200449298,63.57666404661352,13.53163143246409,21.70658224823745,14.56576102726284,13.772689338649142,0.5515894157343278,0.7714776632302406,0.693792383933229,0.5817901234567902,0.098883572567783,0.7109704641350211,0.9228571428571428,0.8568548387096774,0.7363344051446945,0.1283018867924528,0.4977429318127821,0.7063882063882064,0.6368754398311048,0.5329949238578681,0.0910010111223458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.0046859310498716,0.0065693282430346,0.0087210188752121,0.0111850675785702,0.0133765294375337,0.0156050793003212,0.0177236137784497,0.0199046703352903,0.0221134247641678,0.0243679717639333,0.0265407615955282,0.0287975628081226,0.031071524298468,0.0332021769887742,0.0353162736312745,0.0375703666842907,0.0395383384756027,0.0415582252389181,0.0435775987981471,0.0585461730666694,0.0721838550454293,0.0848314193555165,0.0976100443442631,0.1098707278948924,0.1249126003771426,0.1384824625715894,0.1515852540457559,0.163730924812191,0.1752148689299527,0.1898909020276467,0.20304452949659,0.2151871144918375,0.2264827072283347,0.2370816983378157,0.2482936195243221,0.2593873075546007,0.2695032260975499,0.2789324596430156,0.2872192544086392,0.2952300244941551,0.3029282714282362,0.3101331940454426,0.3165231405753873,0.3225822185910958,0.3288676117667433,0.3346609541279793,0.3401415287144901,0.3454505254396005,0.349944335471558,0.3505200654646774,0.3510464762642041,0.352518494419848,0.3535168728582215,0.3544728792061479,0.354090993043157,0.354467868288644,0.3554564229657166,0.3568405477943706,0.3586569899040707,0.3595130867361359,0.3606948838875291,0.3621264561877427,0.3630073696783935,0.3645924202772124,0.3656388823173777,0.3647485534989493,0.3672108238582227,0.3687679387690018,0.3689796895574797,0.3697988426563792,0.3738492828088204,0.3781144994611044,0.3824994253313922,0.3822751322751322,0.3806466951973371,0.377672571777642,0.3753026634382566,0.3753106876553438,0.3742780130920292,0.0,2.4029281606662463,62.81983347215047,208.0386699862712,323.98766303007363,fqhc8_100Compliance_baseline,99 -100000,95725,41486,389.0937581613999,7372,75.82136328022983,5713,59.148602768346834,2321,23.891355445285978,77.33641368994157,79.71106777445092,63.332022412709286,65.08921534247641,77.04781687931036,79.4208208494146,63.22618790361523,64.98518512169255,0.2885968106312049,290.2469250363282,0.1058345090940591,104.03022078385504,77.08756,54.20084179216452,80530.22721337163,56621.406938798136,239.28476,146.97252182435403,249468.8743797336,153034.0473485025,264.81741,126.23119124824888,273205.0248106555,129244.23697736589,3280.79048,1468.6764261763346,3399248.263254113,1506206.6818243244,1420.13157,620.1740074642823,1471342.0423086968,635659.0310412976,2294.05506,952.0469600180072,2363911.099503787,967036.6841839064,0.38092,100000,0,350398,3660.4648733350746,0,0.0,0,0.0,20202,210.509271350222,0,0.0,24742,255.12666492556804,2093981,0,75180,0,0,0,0,0,38,0.3760773047793158,0,0.0,1,0.0104465917994254,0,0.0,0.07372,0.1935314501732647,0.3148399348887683,0.02321,0.3115364850976361,0.6884635149023638,25.536215267185305,4.592522784326282,0.3352004200945213,0.2028706458953264,0.2263259233327498,0.2356030106774024,11.055516565543694,5.432757435440387,24.743469409360376,13077.623026774856,64.25229827708898,13.514665545541376,21.461763787499297,14.41727438338215,14.858594560666168,0.5394713810607387,0.7428817946505608,0.6741514360313315,0.580046403712297,0.1337295690936107,0.7041116005873715,0.9052924791086352,0.8463356973995272,0.7133333333333334,0.2214285714285714,0.4879338083199264,0.67,0.6253351206434317,0.5397784491440081,0.1106941838649155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0047972088966419,0.0072490989390324,0.0094113342548174,0.0116273155447951,0.0142280976921353,0.0165512599557409,0.0187665917908923,0.0209890300880251,0.023053456994861,0.0250422838398851,0.0272376337241535,0.0294311217144502,0.0315177982860909,0.0336700684132864,0.0358770814598902,0.0377833231514749,0.0397327634500072,0.041696979775094,0.0435724627868459,0.0584654261428899,0.0729972064993356,0.0853538319560384,0.0981299078093956,0.1105466197272171,0.1257926777712014,0.1394513112981533,0.1523933087320408,0.1644623776432787,0.1756872576117931,0.1896772527200525,0.2028612519869805,0.214908992121706,0.226118302474193,0.2372978199718706,0.2485210372090451,0.2585328890919424,0.2681188742019602,0.2778281774471559,0.2868028144842972,0.2951581576026637,0.3022619993457027,0.3095516707445362,0.3166225649253463,0.3224576991236375,0.3297666687188327,0.3360057032793856,0.3422438800956792,0.3483362907508386,0.3531905900379093,0.3544829445867601,0.3553669977924945,0.3559243044767688,0.3574275651153015,0.3581441823008321,0.3580873308733087,0.3579390951737298,0.3584031396345887,0.3593283197692387,0.3610926647163343,0.3618551073801502,0.3636092971556737,0.36472541560707,0.3644377649671385,0.3667511771097428,0.3670634401569653,0.3677621733624956,0.3700464347051714,0.3724996453397645,0.3764880952380952,0.3777582050806601,0.3809911523638929,0.3833041674768293,0.3861826697892271,0.3837276399307559,0.3866520253782333,0.3847359348064567,0.3919867823213548,0.3876185164528722,0.3854166666666667,0.0,2.1082389951349074,60.199483566956665,218.49746151321267,332.01173375942585,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95611,41273,389.3694240202487,7150,73.58985890744789,5521,57.17961322441978,2258,23.25046281285626,77.26635035352784,79.70517436380037,63.26822878755484,65.0723362716434,76.99034300405977,79.42763763232954,63.16702778508478,64.97294649847117,0.2760073494680739,277.5367314708319,0.1012010024700629,99.38977317221998,76.27906,53.65492149465924,79780.63193565594,56117.93778399896,236.97645,145.93717145065992,247290.30132516133,152071.8865514009,260.10284,124.2009785190229,268643.93218353536,127279.48899055918,3155.81844,1425.4169980491936,3270367.217161205,1460532.1124652964,1309.48066,575.622540505774,1356197.7492129568,588652.0489334636,2222.16772,928.00979229311,2289938.689062974,940864.9198889747,0.3791,100000,0,346723,3626.3923607116335,0,0.0,0,0.0,20021,208.80442626894396,0,0.0,24350,251.22632333099747,2093757,0,75092,0,0,0,0,0,43,0.4497390467624018,0,0.0,0,0.0,0,0.0,0.0715,0.1886045898179899,0.3158041958041958,0.02258,0.315782510914142,0.6842174890858579,25.468884397572836,4.527002235549263,0.3272957797500452,0.2106502445209201,0.2282195254482883,0.2338344502807462,10.92371757738873,5.347215240109138,24.14834816395805,12984.892701858824,62.28221950522378,13.574702060354053,20.27292986630168,14.055029078972105,14.379558499595934,0.5444665821409165,0.7626827171109201,0.6900940785832872,0.5817460317460318,0.1076684740511231,0.7022677395757132,0.9002770083102493,0.8758465011286681,0.7321428571428571,0.1484098939929328,0.4925373134328358,0.7007481296758105,0.6297653958944281,0.5387755102040817,0.0962301587301587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0046462084707075,0.0069769567469304,0.0092219782007483,0.0113495246432279,0.0136062048370822,0.0156964402351404,0.0174938434341886,0.0195117459278055,0.0218772415206476,0.0237797118108296,0.0258207758567522,0.0278249590809425,0.0299309207134756,0.0315960171872417,0.0338248228051114,0.0357479711031187,0.0377113539113456,0.0395911825315876,0.0415293479621209,0.0562222965626829,0.0699292638197537,0.0827004485341232,0.0955024225826838,0.1074555613058586,0.1234401813520899,0.1367187084843396,0.1495280251719908,0.1614401609692403,0.1726760926554643,0.1860640707582785,0.1989029929214859,0.2116096710956218,0.2231011098086045,0.2342463488564342,0.2453102293023307,0.2558175907410097,0.2664391815038796,0.277,0.286415730723783,0.2948945191672749,0.3027118842616997,0.3108841441740325,0.3178034210589449,0.3244436337103247,0.3308843503815474,0.336944256375536,0.3422310604612031,0.3481419028471366,0.3539351821268612,0.3544899362336034,0.3549351669399622,0.3558760035556559,0.3571242435648724,0.3581662744630782,0.3588657705763211,0.3589328508625752,0.3596132942455285,0.3608706830062559,0.3616483082774209,0.362099509988692,0.3627326228725942,0.3637800585892221,0.3639777812760024,0.3664624845652858,0.3682538015074717,0.3695858362314259,0.3709160184156215,0.3746812128081609,0.3744888960153932,0.3759132472545145,0.3795377768244946,0.3803716237788136,0.3812729498164015,0.3798230754752494,0.3779807806382726,0.3713365045266227,0.3691152597402597,0.3663911845730027,0.3706798328902392,0.0,2.185419021727748,60.30860432719289,208.7060842675535,316.7859203435022,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95686,41518,389.9943565411868,7272,74.53545973287628,5657,58.33664276905712,2273,23.15908283343436,77.34534288058313,79.71531658999315,63.32656324425341,65.07501954663567,77.0654153832514,79.43951831486703,63.22420045754836,64.97774462843985,0.2799274973317267,275.798275126121,0.1023627867050507,97.27491819582212,76.82884,54.06406956351433,80292.66559371277,56501.54626958419,239.98658,148.3190368664867,250046.49583011097,154246.1246854155,271.46031,130.26112710937866,278946.1258700333,132333.5568988286,3265.87492,1472.9645790664867,3369418.1802980583,1495787.5419463338,1383.26357,603.4420020421951,1428515.4881591874,613619.4457200898,2246.4289,933.6270941864856,2293488.6817298247,931021.1614390096,0.37987,100000,0,349222,3649.6666178960345,0,0.0,0,0.0,20220,210.5114645820705,0,0.0,25302,259.83947494931334,2089326,0,75007,0,0,0,0,0,57,0.5747967309742281,0,0.0,1,0.0104508496540768,0,0.0,0.07272,0.1914339116013373,0.3125687568756876,0.02273,0.3105070569785677,0.6894929430214323,25.335723569616192,4.579719948459003,0.3362206116316069,0.1986918861587414,0.230334099345943,0.2347534028637087,11.485964993479124,5.919265786281088,24.249348820493527,12993.490654874346,63.749526818714486,13.061252853182598,21.44556034697946,14.491907510733943,14.750806107818493,0.5568322432384656,0.7393238434163701,0.7187171398527865,0.6047582501918649,0.1234939759036144,0.7146912704045423,0.8947368421052632,0.8713080168776371,0.7898089171974523,0.1433691756272401,0.504472693032015,0.6713554987212276,0.6680672268907563,0.5460060667340748,0.1182078169685414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045528191834,0.0043175967405185,0.00655411712187,0.0089173268332317,0.0114197970265817,0.0135615308647003,0.0156672069151809,0.0179659667425456,0.0201584462049578,0.0221926502200839,0.0244505043877634,0.0264538854144202,0.0286260916076075,0.0306389466960624,0.0327251336456892,0.0347850357153932,0.0368701776189736,0.038752127527087,0.0408538867861747,0.0428538674781666,0.0576095584241968,0.0716431345048826,0.0855334956346541,0.0984638047138047,0.1103537058922843,0.1263202455286273,0.1395751276634144,0.1524631197741918,0.1644365595075239,0.1760181917643651,0.1898348184942946,0.2031576553650903,0.2158488677048306,0.2266999485444652,0.2377113277162839,0.2482623299743922,0.2589343512131967,0.2680805580558056,0.2770613875771885,0.2855195482089877,0.2938746702457537,0.3014584624741231,0.3088879418519307,0.3162304041420969,0.3225551667152717,0.3289272503082614,0.3343144131055558,0.3398809220904789,0.3447144561439909,0.3503874533865806,0.3510740275696329,0.3517361254811075,0.3530892480873389,0.3540594231689457,0.3544384962944185,0.3540600752861642,0.3534366523373677,0.3547162368719491,0.356366804468892,0.3574171653121372,0.3592125718781022,0.3589915966386555,0.3591389728096676,0.3597944160158003,0.3607175668487984,0.3626531894836074,0.363714163457424,0.3647343754914603,0.3657739350485027,0.368542270579359,0.3708148216003298,0.3737244216487685,0.3740090061520898,0.378010310071555,0.3810833886728014,0.3794011976047904,0.3831732259064146,0.379338673238858,0.3861992209237618,0.3906866614048934,0.0,2.928083990981188,61.65205863913384,208.7652327836331,328.13348992988296,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95663,41157,386.9730198718418,7248,74.53247337005948,5660,58.59109582597242,2300,23.614145489896828,77.2498286400838,79.64727181300513,63.26585613190741,65.03837032132493,76.96415828503636,79.36221543726005,63.16087989646631,64.93639865783676,0.2856703550474435,285.0563757450857,0.1049762354411072,101.97166348817176,76.494,53.81582077346162,79961.94976114067,56255.62733079834,239.24175,147.5294617164787,249513.49006407912,153649.5940026706,263.40772,126.371233710668,272141.9357536352,129525.28381845176,3253.31544,1459.35052965748,3368699.4135663738,1493953.9315179517,1360.49908,592.841945483021,1409533.8741206108,607312.6958689544,2254.04622,940.0418658036097,2315962.0124813146,949159.6265179174,0.37788,100000,0,347700,3634.6340800518487,0,0.0,0,0.0,20179,210.3425566833572,0,0.0,24592,253.90171748742983,2086548,0,74938,0,0,0,0,0,50,0.5017613915515926,0,0.0,0,0.0,0,0.0,0.07248,0.1918069228326452,0.3173289183222958,0.023,0.3154590635626471,0.6845409364373528,25.375543311042986,4.61227110046587,0.3392226148409894,0.1989399293286219,0.2321554770318021,0.2296819787985865,11.168663296273191,5.589724071599107,24.55593950605688,12976.550011908865,63.51444980599249,13.067026654566948,21.658866482310795,14.56902688426397,14.219529784850788,0.5443462897526502,0.7486678507992895,0.7052083333333333,0.556316590563166,0.1176923076923077,0.7088425593098491,0.8944281524926686,0.8831967213114754,0.7326388888888888,0.1423357664233576,0.4907472475989693,0.6853503184713375,0.6445530726256983,0.50682261208577,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.0042289086981654,0.0063032246932126,0.0088091851249745,0.0109143432576212,0.0136271973601124,0.0157441775094832,0.0179098381579619,0.020065453057885,0.022234512141416,0.024176094693978,0.0261222393425783,0.0280704642739545,0.0300244277012193,0.0320778872163373,0.0340576487501163,0.0360084969690689,0.0381644518272425,0.0401073691438559,0.0423335592513424,0.0572580897948948,0.0716709253131152,0.0844020906362167,0.0978576539416642,0.1098037146475306,0.1246692771721875,0.1381331634278432,0.1509271099744245,0.1627959220787556,0.1741830135573555,0.1886100261119143,0.201266591480871,0.2133151581243184,0.2246377606423236,0.2351921760823012,0.2464106325287816,0.2567145464112583,0.2661348558017782,0.275213169248984,0.2848046708885492,0.2937123870158236,0.3017322427490246,0.3092358013678263,0.315987815596518,0.3230256898192198,0.3296740018317285,0.3355493835693908,0.3411671440261866,0.3473329604724061,0.3525660572474047,0.3537793293821547,0.3547165115925398,0.3551191470684016,0.3558674395966816,0.3563245859035442,0.3554308555615343,0.3552652490384921,0.3571086802290089,0.3579281910324686,0.3599964041711614,0.3612206767697737,0.361464492623783,0.3618093631379165,0.3627176757195705,0.3625944003302493,0.3635624770594096,0.3636415672133024,0.365760595358224,0.3664038854086014,0.3691730523627075,0.3711664841182913,0.3721399373573286,0.3753863622027376,0.3756112469437653,0.3787065800621293,0.3769676884838442,0.3742699047033507,0.3741776315789473,0.3728813559322034,0.3634975181366934,0.0,2.193797527082248,61.622561451637615,204.7102588149,334.1350066293893,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95748,41205,385.8983999665789,7325,75.37494255754689,5690,58.87329239253039,2274,23.352968208213227,77.32698317968122,79.68578357439402,63.31555014592704,65.06077133255286,77.04791110847614,79.40543426967783,63.213725223907794,64.96074719374394,0.2790720712050785,280.34930471619646,0.1018249220192473,100.02413880891936,76.42052,53.72110397440998,79814.22066257258,56106.76356102475,237.03924,145.80206439862184,247040.14705267997,151751.28921608996,267.28874,128.02155237255477,275181.3301583323,130704.0481330099,3253.26956,1466.9470654731615,3368198.604670594,1502548.67514012,1357.47999,589.5620179663945,1403247.8276308642,601227.97130634,2236.17764,927.204356689792,2299507.3526339973,940105.3471267936,0.37829,100000,0,347366,3627.9191210260265,0,0.0,0,0.0,19945,207.7536867610812,0,0.0,25029,257.44663073902325,2095280,0,75195,0,0,0,0,0,42,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.07325,0.1936345132041555,0.3104436860068259,0.02274,0.3211735687394522,0.6788264312605479,25.332497613999735,4.611074010121702,0.3363796133567662,0.1992970123022847,0.2374340949033392,0.2268892794376098,11.29260395643421,5.663448756232686,24.086621299598395,12969.223361909504,64.10141294132686,13.29125761579646,21.708182819053743,14.944142145338654,14.15783036113801,0.5546572934973638,0.763668430335097,0.7110762800417972,0.5862324204293117,0.1061192873741285,0.7102601156069365,0.9086021505376344,0.8742004264392325,0.7571428571428571,0.0874524714828897,0.504644681839294,0.6929133858267716,0.6581314878892733,0.5415499533146592,0.1108949416342412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.004431060006895,0.0064551488947079,0.0089198634590377,0.0110958555809814,0.0133801741255536,0.0153770852877595,0.0178225098503562,0.0198990229344671,0.0221084953940634,0.0242800040996207,0.0265356820234869,0.0287817112783191,0.0308394085423617,0.0327721730519279,0.0350592587234834,0.0373322842471426,0.0394784611075959,0.0415627338488401,0.0435452954412867,0.0585950956750493,0.0723618826434003,0.0855672156583182,0.097959655632759,0.1104552497602007,0.1262687135244861,0.1393770349237997,0.1516300066009411,0.1639570306236973,0.173919110385986,0.1868902997704024,0.1995732559273018,0.210353345739066,0.2217116348278955,0.2328074945783199,0.2440862837253641,0.2552003038630828,0.2655658677239142,0.274600686160907,0.2832712476359676,0.2915773992194647,0.3003033959258261,0.3080114754487043,0.3153711308022957,0.3222956445547807,0.3287958632094682,0.335117853560682,0.341669215866218,0.3470070833657663,0.3521057915874022,0.3519035105451115,0.3527815281183699,0.3540635444430342,0.3551202987926691,0.3561645874892071,0.3561852107809261,0.3561711246924359,0.3567949983547219,0.3576726101776202,0.3589436418252038,0.360313315926893,0.3612443986199786,0.3614437510541406,0.3631463096895916,0.3644032971548744,0.3657832589871425,0.3679912901469788,0.3693066801619433,0.3719649915302089,0.3713362842445268,0.372861977499314,0.3747136235281581,0.377400202122284,0.3794602012808783,0.3820679273685201,0.3868137080517016,0.3848987108655617,0.3844747002641739,0.3919821826280623,0.4026377036462374,0.0,2.188786008831302,61.06260143622615,219.8646301482766,323.68881236748734,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95761,41889,393.0932216664404,7223,74.2369022879878,5665,58.58334812710812,2321,23.809275174653564,77.39144353273707,79.72918378331447,63.36142006586866,65.08667512004622,77.10298270106468,79.44278748444974,63.2551002036231,64.98426055693928,0.2884608316723955,286.39629886473017,0.1063198622455559,102.4145631069473,78.83084,55.39738037410576,82320.4018337319,57849.626021141965,244.42318,151.07164261889386,254650.0663109199,157166.18729847626,267.30792,127.13117972044918,276214.89959378034,130401.090934502,3271.41204,1466.2505025813282,3383715.2076523844,1498645.568218092,1410.82163,613.6349163309102,1455965.9986842244,623560.115120746,2287.7106,957.6333593381892,2348912.480028404,966306.1554311232,0.38324,100000,0,358322,3741.836446987813,0,0.0,0,0.0,20563,214.10595127452723,0,0.0,24955,257.66230511377285,2083449,0,74749,0,0,0,0,0,54,0.5534612211651926,0,0.0,1,0.0104426645502866,0,0.0,0.07223,0.1884719757854086,0.321334625501869,0.02321,0.3204521556256572,0.6795478443743428,25.32144013690651,4.599937347816513,0.3133274492497793,0.2031774051191527,0.2436010591350397,0.2398940864960282,11.052585729863251,5.474852388691128,24.869312185259368,13166.680535183588,63.95515113978277,13.571881599795732,19.963629422936368,15.397763571214002,15.021876545836667,0.5412180052956752,0.7854039965247611,0.6929577464788732,0.5442028985507247,0.133186166298749,0.6710334788937409,0.9213483146067416,0.8398058252427184,0.6883561643835616,0.1496815286624203,0.4996504311349335,0.7245283018867924,0.6485693323550991,0.5055147058823529,0.1282296650717703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894378746152,0.0046920761676986,0.0068687729550942,0.0090797371548125,0.0112454372604243,0.0134252096734793,0.0158345221112696,0.0180994551798722,0.0202780700589443,0.0223868380126053,0.0243854957530302,0.0265312403816558,0.0287199827371839,0.0309901193906957,0.0329982990567496,0.0349778934754762,0.0372080025667829,0.0393706504039744,0.0416211889689296,0.0433568764714461,0.0583298538622129,0.0735489541587753,0.0870618843301197,0.0996361188818543,0.1119429740388468,0.1277601522842639,0.141110215509927,0.1533321984849774,0.1655862532973077,0.1775097818513158,0.1914075955907681,0.2046290287691975,0.2169385780898449,0.2289126349372842,0.239931834423616,0.2514220579447113,0.2614245738430494,0.2720399060769136,0.2812280343740788,0.2903930880585912,0.2982636641080181,0.3065089310764051,0.313901769660263,0.3204956142453147,0.3270689927280232,0.3325327322666864,0.3387673906515864,0.3451626047317085,0.3515862837303901,0.3563445882647877,0.3569476787228601,0.3571566145718688,0.3577152191975665,0.3589388096991753,0.3597807356349159,0.3599663454183876,0.3598765920417688,0.3605763707678926,0.3613512866956017,0.3613475430941992,0.3621305557644581,0.3630283786465568,0.3650616608443116,0.3668053525244574,0.3682667377450386,0.3691851307361126,0.3693277913143185,0.371453928809154,0.3742205215419501,0.3747495792932126,0.3748561962173853,0.3743744282408653,0.3762350991266654,0.3795463283352556,0.3782760904532122,0.3797934227709842,0.3775045537340619,0.3797136519459568,0.3773841961852861,0.3801526717557252,0.0,2.1548758349256034,60.943361272034586,219.8020736634783,322.3799944880823,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95719,41511,390.8941798389035,7281,74.854522090703,5573,57.55388167448469,2251,23.109309541470346,77.37264048070351,79.73142504571739,63.34029949113111,65.08156689061032,77.09819993135305,79.45818003052493,63.24040935564099,64.98484555784083,0.2744405493504587,273.24501519245814,0.0998901354901207,96.72133276949069,76.49004,53.86424814219069,79911.03124771467,56273.30847813985,238.77833,147.09362099641115,248802.8082198937,153017.53152081734,263.96144,125.77493426515416,271239.6389431565,127893.24265020242,3221.24648,1439.3481736390818,3329437.833658939,1467950.5575794624,1340.5358,579.1696241989416,1381342.878634336,585971.5219729132,2221.20182,918.9852790220992,2282701.65797804,928063.0430814278,0.38083,100000,0,347682,3632.3196021688486,0,0.0,0,0.0,20111,209.41505866128983,0,0.0,24653,253.1158913068461,2094240,0,75141,0,0,0,0,0,47,0.4701260982668018,0,0.0,0,0.0,0,0.0,0.07281,0.1911876690386786,0.3091608295563796,0.02251,0.3132217464642532,0.6867782535357467,25.45473428365182,4.597423400003701,0.3256773730486273,0.2058137448411986,0.2286021891261439,0.2399066929840301,11.13217504522717,5.458252839138444,23.898000075161395,13062.997659400524,62.60736689128313,13.449223344141108,20.39911826157159,14.130511571253075,14.628513714317368,0.5354387224116275,0.7428073234524848,0.6815426997245179,0.5808477237048666,0.1159311892296185,0.7033132530120482,0.9152542372881356,0.866822429906542,0.758364312267658,0.1263537906137184,0.4829210836277974,0.6658259773013872,0.6243691420331651,0.5333333333333333,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784810126582,0.0041855421442542,0.0065126753705225,0.0085919727006824,0.0108592868254888,0.0132642465948653,0.0152185435863981,0.0172190297326814,0.0191558740250845,0.0211792404544989,0.0231404111344645,0.0251537458547653,0.0274236005429194,0.0295471632045644,0.0317967976229778,0.0338277091623171,0.0360603801714498,0.0381384060075509,0.039931403627293,0.0419010123734533,0.0563827343537912,0.0706273804043025,0.0841730013106159,0.0969067614012591,0.1094583482679373,0.1253251009663163,0.1392539323935893,0.1522023689167473,0.1644150157526566,0.1762630433150664,0.1900992871142124,0.2036067418161362,0.2160381051807386,0.2272553286890714,0.2378395625433221,0.2489502431890448,0.2595044089742159,0.2692944236160367,0.279359814623397,0.2874049609522827,0.2960904849558342,0.3040628328631793,0.3119267142281529,0.3188049166946752,0.3253353439784018,0.3316923304708321,0.3372835918121915,0.3437126053415485,0.3494870200528525,0.3544768239890191,0.3551236987057762,0.3566080325928373,0.3573361522198731,0.3576708860759494,0.3588415632348126,0.3583481622384488,0.3587707620134398,0.3592978877410015,0.3607241149421357,0.3610039988574693,0.3621725861713879,0.3630584565573608,0.3645743766122098,0.3662717925793473,0.3682705248990578,0.3698651533295153,0.3699573257467994,0.3720492805417097,0.3731040039233544,0.3748566910456612,0.3758694367413738,0.3748205646233186,0.3764631445745017,0.3769389470466875,0.3760120504613067,0.3768305750684605,0.3805050816137973,0.3848979591836735,0.3904947192884936,0.3922480620155039,0.0,2.6399295817824684,58.17974333568943,215.6183788419504,319.01725138016536,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95745,41423,388.6364823228367,7291,75.02219437046321,5632,58.26936132435114,2242,23.134367329886675,77.33281654085012,79.69851362651191,63.319784280511655,65.07073659740954,77.06361848733427,79.42547302613643,63.22265877513732,64.97407660625504,0.2691980535158507,273.04060037548084,0.0971255053743362,96.65999115449608,77.1562,54.25709675891383,80585.09582745834,56668.33438708427,238.37709,146.57497718678857,248440.8585304716,152558.97142074112,267.46793,128.1404232579388,275033.8398872004,130577.76894832493,3237.79468,1452.795547421363,3352321.186484934,1487994.9735457338,1375.36202,595.6418539209069,1422402.3186589377,608030.6375485996,2209.7775,906.2510568139684,2281609.0657475586,925697.6266006392,0.37952,100000,0,350710,3662.958901248107,0,0.0,0,0.0,20091,209.27463575121416,0,0.0,25003,256.82803279544623,2091457,0,75108,0,0,0,0,0,45,0.4595540237088098,0,0.0,1,0.0104444096297456,0,0.0,0.07291,0.1921110876897133,0.3075024002194486,0.02242,0.3073909636980935,0.6926090363019065,25.436613763312167,4.580096154746079,0.3329190340909091,0.1976207386363636,0.2334872159090909,0.2359730113636363,11.115221170969036,5.605551522943482,23.774938940273262,13033.189221264596,63.39251466324136,12.976156150499222,21.18835485909164,14.744981273034258,14.483022380616246,0.5440340909090909,0.7610062893081762,0.6890666666666667,0.5825095057034221,0.1196388261851015,0.734341252699784,0.935672514619883,0.8736842105263158,0.746875,0.1825396825396825,0.4817346217299081,0.6835278858625162,0.6264285714285714,0.5296482412060302,0.1049210770659238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019759041027875,0.0043106508575659,0.0067011879378617,0.0090972850448765,0.0111809709844137,0.0133331975228161,0.0156640389969304,0.0178356304236855,0.0200098157501891,0.0220251686957946,0.0242879698168918,0.0262968743582371,0.028728304680431,0.0306900102986611,0.0328408410887105,0.0348434576782742,0.036775442993403,0.0389265366693994,0.041019828850093,0.0431073099080141,0.0578760008769091,0.0726384398899386,0.0860570218209653,0.0990086519558886,0.1108382431990893,0.1257295719844358,0.1388258499650045,0.1519492544620526,0.1635551948051948,0.1751616604647671,0.1885644768856447,0.2006101386875527,0.2124737683349824,0.2242664742664742,0.2348121590709132,0.2468474253512394,0.2576959553695955,0.2674033895253314,0.2770243431878795,0.2859007683411388,0.2944560185185185,0.3025507158158427,0.3101891888690131,0.3176841625595088,0.3245158702179648,0.3307131310389081,0.3366495426638266,0.3423428011254408,0.3476705296725519,0.353343113542947,0.3545329522165893,0.3548729397497381,0.3556305225418513,0.3559162515927256,0.3567075442177884,0.3564292620045117,0.356389307527564,0.3577338750801928,0.3582344988105629,0.3588799084471783,0.3603815031072226,0.3616244943285476,0.3619961773539728,0.3640337113910432,0.3661815461105882,0.3663822436266555,0.3680320824978516,0.3715993926357079,0.3746384479717813,0.377211549982028,0.3790400220052262,0.3803608716603309,0.3803093698491188,0.3816414025417241,0.3846950301204819,0.3914903731875446,0.3915043704953228,0.3971126474176494,0.4062153163152053,0.4023919753086419,0.0,2.203814334930931,61.48554417223633,210.9016191311735,324.2269995330621,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95778,41441,388.3042034705256,7251,74.3176929983921,5638,58.27016642652801,2284,23.450061600785148,77.34910350822409,79.67746754080542,63.34642956891118,65.06668150648079,77.06781059266781,79.39701058943832,63.24203300407326,64.96544488240826,0.2812929155562784,280.4569513670998,0.1043965648379199,101.23662407252708,77.1936,54.31334167913069,80596.37912673056,56707.53375423447,239.05357,147.42953884220404,248998.38167428845,153335.46204995306,265.90344,127.55601069902768,273756.93791893753,130266.80746754917,3269.58492,1479.588638439222,3378938.7542024264,1510037.460000442,1390.70863,607.6838479735558,1434265.2801269602,616723.9010770275,2264.10756,950.9216620024838,2325309.194178204,959444.6702794236,0.37979,100000,0,350880,3663.471778487753,0,0.0,0,0.0,20159,209.8603019482553,0,0.0,24860,255.71634404560544,2091007,0,75071,0,0,0,0,0,46,0.4802773079412809,0,0.0,1,0.0104408110422017,0,0.0,0.07251,0.190921298612391,0.3149910357192111,0.02284,0.3158586256733675,0.6841413743266325,25.475005934118208,4.5999495950095,0.330081589216034,0.1912025540971975,0.2399787158566867,0.2387371408300816,10.95589002308984,5.430298999237587,24.517497012310667,13027.576864149103,63.43988610350237,12.538339895631378,20.83137022452136,15.095384951763508,14.974791031586124,0.5507272082298688,0.7569573283858998,0.7152068780225685,0.5868440502586844,0.1218424962852897,0.6964028776978417,0.9112426035502958,0.87248322147651,0.7322580645161291,0.1457627118644067,0.503060263653484,0.6864864864864865,0.6654879773691655,0.5436241610738255,0.1151284490960989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910887880751,0.0047233399892559,0.0071319150662973,0.0093752221917502,0.0114288038394273,0.0137933140600187,0.0160521005320124,0.0181558401796193,0.0204661333006365,0.0227128562951443,0.0248535016186534,0.0272441817510158,0.0291551481393938,0.031135172967465,0.0331893307488478,0.0352937530986613,0.0374383013069257,0.0393931852589228,0.0415956606675256,0.0435706252343066,0.0579198931351881,0.0712694411613969,0.0842988204456094,0.0971413557540725,0.1085045842554536,0.1239471153338054,0.1371089982086261,0.1500659350008507,0.1620687079113349,0.1741985943258764,0.1877044945755123,0.2007504487553796,0.2128957209949556,0.2241588575552469,0.234676700663432,0.2461291394395835,0.2574805522383062,0.2677987067753725,0.2776838498110724,0.2866565137236491,0.2951132603715958,0.3028271197547333,0.3103178831468656,0.3172494815205534,0.3241072621897136,0.3300392331038567,0.3355132927409857,0.341606992686221,0.3474593865158042,0.3522939177125626,0.3533079601587173,0.3547483721443549,0.3554834156669019,0.3565265230484132,0.3574383239591703,0.3577463924797963,0.3574350680239749,0.3582322841771006,0.3590590813374193,0.360182697474476,0.3612864442440637,0.3628748933129553,0.363276978719825,0.3633666704124059,0.3643825665859564,0.3666290097995429,0.3677096514436903,0.3695202975490352,0.3722966744664255,0.376068376068376,0.3777104005880191,0.3810797795494676,0.3846546987797866,0.3870545678442238,0.3912794580669783,0.3894940692326313,0.391618270287239,0.3912773873501446,0.3995510662177329,0.3943606036536934,0.0,2.242075722908502,61.23493955293455,211.9485367147671,324.3639400992509,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95665,41629,389.933622536978,7262,74.70861861704907,5645,58.4121674593634,2278,23.373229498771757,77.31532774038504,79.70817653367924,63.31028192710126,65.07658928076144,77.03884258682771,79.43209750123317,63.20956345599104,64.97895626427764,0.2764851535573314,276.0790324460629,0.1007184711102198,97.63301648379752,77.05104,54.26726775930057,80542.55997491245,56726.355259813485,240.62025,148.57320127241897,250934.68875764383,154716.58524268956,269.93639,129.40947647856527,278831.1399153295,132567.2944512049,3250.08896,1460.9509682426883,3364210.986254116,1493999.318708712,1390.32081,606.0873628062318,1434912.371295667,615141.873000817,2244.67752,929.377820692258,2304994.428474364,936008.3632330956,0.38035,100000,0,350232,3661.025453405112,0,0.0,0,0.0,20255,211.1116918413213,0,0.0,25176,259.8442481576334,2088441,0,74923,0,0,0,0,0,47,0.4808446140176657,0,0.0,1,0.0104531437829927,0,0.0,0.07262,0.1909294071250164,0.3136876893417791,0.02278,0.3248790691593672,0.6751209308406327,25.39384005856595,4.529233622734079,0.3317980513728963,0.1968113374667847,0.237378210806023,0.2340124003542958,11.058644098781809,5.545743397216282,24.27628523286564,13086.390528447831,63.82410321147607,13.063098752905445,21.12816294058012,15.124573352723138,14.508268165267369,0.5489813994685563,0.7803780378037803,0.6983449012279765,0.582089552238806,0.109008327024981,0.7120651369356032,0.9025787965616046,0.883668903803132,0.717607973421927,0.1417322834645669,0.4976711690731253,0.7244094488188977,0.6402524544179523,0.5428296438883542,0.1012183692596063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021881394736308,0.004876416796772,0.0073880127463516,0.0097941600796537,0.0119832356770833,0.0143111790170613,0.0166557871975847,0.0188345845462438,0.0210563992432377,0.0233477379318819,0.0255061227001415,0.0273549049820236,0.0293294652593461,0.0313037743820132,0.0334847233691164,0.0358162336587787,0.0380574436339522,0.0401876530908789,0.042221436298577,0.0443791299272507,0.0589587403746695,0.0734419500753895,0.0868022755421206,0.0994148969755645,0.1114171732522796,0.1273368195964685,0.1407411339987258,0.1536683566954965,0.1652843981788256,0.1769068137670505,0.1913932836142604,0.2045324122697792,0.2169672693232902,0.2274746678922373,0.2375996652129862,0.2494870060006433,0.2596559812353401,0.2693398455963447,0.2782811080835604,0.2874515737111157,0.2948622918162655,0.301849683914774,0.3088501758666019,0.3158482142857143,0.3232509812976218,0.3294539716198389,0.3353161434135223,0.3414109531506535,0.3466808257142117,0.3519682959048877,0.3533273126743856,0.3537761852260198,0.3549615091785805,0.3559182136754612,0.356545297567656,0.3560908254065664,0.3565935721194248,0.357481892686452,0.3587536787351995,0.3593959671503462,0.3601741022850925,0.3619002337652046,0.3630435239918379,0.3644649993264783,0.3663808718753774,0.3677736777367774,0.3673258517264143,0.3710809694736507,0.3727550223610421,0.3740206516935192,0.3755929081280221,0.3767711464147703,0.377409061901723,0.3808710503842869,0.3814502206023403,0.3804465902232951,0.3818321785989222,0.3731796116504854,0.3712691771269177,0.3752402921953095,0.0,2.369543585821972,59.51482796483792,220.73559935242804,324.5383614572125,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95624,41936,394.8904040826571,7260,74.70927800552163,5610,58.05028026436878,2306,23.738810340500294,77.3146043072854,79.73366115846454,63.296484254502126,65.08287841360303,77.02752885000436,79.44269805537806,63.19233846894534,64.97901117457936,0.2870754572810483,290.963103086483,0.1041457855567884,103.86723902367125,76.93686,54.11055556298733,80457.68844641512,56586.793653253706,237.61225,146.138494008091,247892.96620095373,152234.6683784231,267.70744,127.92122150495123,275005.17652472184,130090.14590854468,3203.6044,1439.156975708101,3319479.8376976494,1474421.1800646011,1346.2303,579.6934885668265,1396632.874592153,595320.254689801,2254.9333,935.7732420886932,2324807.5169413537,953549.5746316595,0.38356,100000,0,349713,3657.167656655233,0,0.0,0,0.0,19993,208.45185309127416,0,0.0,24908,255.63666025265624,2090950,0,75025,0,0,0,0,0,46,0.4705931565297415,0,0.0,2,0.0209152514013218,0,0.0,0.0726,0.1892793826259255,0.3176308539944903,0.02306,0.3184138201806046,0.6815861798193954,25.30756254372372,4.493016654588999,0.3303030303030303,0.2092691622103386,0.2322638146167558,0.2281639928698752,11.25213048893544,5.856373088214091,24.623198288949183,13098.385472368893,63.15307937536118,13.714535762958551,20.77327289926148,14.54075549695702,14.124515216184122,0.5468805704099822,0.7632027257240205,0.6821370750134916,0.5832693783576363,0.115625,0.7009413468501087,0.9090909090909092,0.8484848484848485,0.7389705882352942,0.1282051282051282,0.4965712934499882,0.695,0.6268871315600287,0.542192046556741,0.112214498510427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203266695712,0.0046546531320035,0.0067608722134242,0.0088604379413707,0.0111185709635416,0.0132511713179873,0.0153201211737946,0.0173664317090611,0.0194229372717881,0.0215358777687888,0.0235794871794871,0.0259167950693374,0.0280541124427755,0.0303848333419195,0.0326290037883088,0.0346071923403023,0.0365343169761273,0.038891196013289,0.0407753454303312,0.0427495723999833,0.0573184497679668,0.0707881174843926,0.0835599609395508,0.0962255015472706,0.1088922898305979,0.1246294257157377,0.1378134658891756,0.1510240180721608,0.1632421678628346,0.1742446213170925,0.1882868207855532,0.2019507965752682,0.2150810598797176,0.2257933769320932,0.2376176515969758,0.2490317282402423,0.259323416667598,0.2697291328646115,0.278908318278397,0.2880002753019718,0.2965536409116175,0.3047971257036526,0.3113837699559429,0.3184309962214358,0.3252979842776083,0.332268961436039,0.3384528726999624,0.3448411890461162,0.3499935241549022,0.3556089701259938,0.3566354384309496,0.3576052225650066,0.358737370886719,0.3596355260679984,0.3614093159181726,0.3624235344748086,0.362222999395924,0.363436814048291,0.3644507875369695,0.3660103738535815,0.3672889991915317,0.3676950782687855,0.3686615658735981,0.3699271708683473,0.3698653198653198,0.3691518182765447,0.3704136613735496,0.3737627651217596,0.3765371372356124,0.3778246339910884,0.3790730529098118,0.3812976488777523,0.3834375398749521,0.3838220580312476,0.3836889521100047,0.385616190820383,0.3843260188087774,0.3845358693405003,0.3935430002783189,0.3909626719056974,0.0,2.3950420012903977,60.89131433556709,209.25359950728225,324.8630672779079,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95651,41390,389.1752307869233,7438,76.41321052576555,5782,59.92619000324096,2308,23.81574682962018,77.29129418892526,79.69091835558848,63.29829466637945,65.06962498178261,77.00512876350845,79.4011468454267,63.193203514489255,64.96488032521033,0.2861654254168115,289.7715101617848,0.1050911518901926,104.74465657227938,76.46144,53.80335296249011,79937.94105654933,56249.65025194729,238.85668,147.0152877181199,249204.79660432195,153189.9180814592,271.29449,130.1175124275341,279625.22085498326,132987.8506749054,3331.57152,1505.8064842636545,3454490.8051144267,1545914.856273211,1396.08157,609.7306590003423,1446912.703474088,624898.6274070381,2281.34178,954.1790886131404,2355485.9227817794,974646.3883176228,0.37839,100000,0,347552,3633.542775297697,0,0.0,0,0.0,20147,210.0866692454862,0,0.0,25349,261.04274916101247,2091241,0,75081,0,0,0,0,0,42,0.4390962980000209,0,0.0,0,0.0,0,0.0,0.07438,0.1965696767884986,0.3102984673299274,0.02308,0.3189313562571903,0.6810686437428096,25.15639802990198,4.596986640319837,0.335696990660671,0.2018332756831546,0.224143894846074,0.2383258388101003,11.34304921828123,5.638842688120082,24.647560324262123,12976.417063942534,65.40504064171004,13.686312855931982,22.03223925579596,14.395235598431734,15.291252931550368,0.538395019024559,0.7686375321336761,0.6743946419371458,0.5841049382716049,0.1088534107402031,0.6850672328379335,0.905982905982906,0.8389121338912134,0.7263157894736842,0.1404682274247491,0.4909590295262073,0.7095588235294118,0.6206425153793574,0.5440158259149357,0.1000926784059314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020967758273148,0.0044611173071073,0.006597444251596,0.0088405649832334,0.0110287010754,0.0131282782502418,0.0153863409262393,0.0177262237833643,0.0197632095534107,0.0217168717875207,0.0236893920748215,0.0258919951523118,0.0280846861304857,0.0301606438117613,0.0324871733991266,0.0345754858460806,0.0366443857194673,0.0388832360819818,0.0409110299549479,0.04283733489017,0.0569216139111533,0.0707956259426847,0.083976438718619,0.0969402254570715,0.1090893739181829,0.1242286645709628,0.1382787868493965,0.1514209023901836,0.1633970857075658,0.1745021203499919,0.187363200172516,0.200534933079222,0.2127189401608917,0.2234644824301091,0.2342993837707936,0.2456233774878519,0.2561156867784942,0.2657800200452708,0.2762900881257382,0.2850559955982989,0.2928425026344129,0.3002691947565543,0.3083211886396758,0.3151819141787463,0.3223364770307271,0.3296288064014225,0.3359963879447656,0.3415337133820509,0.3475202159832821,0.3531588686227861,0.3538496816661271,0.3545618851837033,0.3555046843867904,0.3558670880570617,0.3558164163298182,0.3563060913471159,0.3560602446045454,0.3570237289255106,0.3590973153208896,0.3599367554844853,0.3606696453820485,0.3625291062152964,0.3632048604518701,0.3637693554195174,0.3660580592184707,0.3669294638413787,0.3681053443400268,0.3704873503679606,0.3717649554518455,0.3742540153001962,0.3746727297781452,0.3758880401687944,0.3766639067575313,0.3769325912183055,0.3769628494829567,0.3754403012267703,0.3791804050871408,0.376258389261745,0.3784545967287084,0.3768844221105528,0.0,1.9796844716326936,62.67164503269614,225.98848848019816,327.5172691142358,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95622,40968,385.19378385727134,7305,75.06640731212482,5642,58.33385622555479,2298,23.530149965489112,77.27514686010801,79.68596159866452,63.27600815666828,65.05618323437663,76.99400455437495,79.40835570286744,63.17212456285748,64.9570541083157,0.2811423057330557,277.6058957970804,0.1038835938108064,99.12912606093016,77.17556,54.2529189248494,80709.0000209157,56736.85859409905,239.87601,147.38296352893218,250192.05831294053,153464.26923608815,263.6828,126.04689304537918,272046.22367237665,128894.48183224922,3264.66396,1474.002862105553,3375680.0317918467,1503034.5130885695,1377.31185,602.2875603547518,1421139.8736692392,610631.8011352465,2272.6687,945.9750664062352,2329672.0210830146,949047.6072549172,0.37633,100000,0,350798,3668.590910041622,0,0.0,0,0.0,20277,211.36349375666688,0,0.0,24660,254.14653531614064,2085786,0,74870,0,0,0,0,0,42,0.4392294660224634,0,0.0,0,0.0,0,0.0,0.07305,0.1941115510323386,0.3145790554414784,0.02298,0.3167273673257024,0.6832726326742976,25.359059502314413,4.610202434547358,0.3275434243176178,0.1981566820276497,0.2320099255583126,0.2422899680964197,11.287741058464368,5.635134477757029,24.56853873887533,12912.534034831886,63.66118173926354,12.933872869390386,21.03712865515299,14.545283471107924,15.144896743612222,0.5377525700106345,0.7432915921288015,0.6985930735930735,0.5790679908326967,0.1126554498902706,0.7071942446043166,0.8973607038123167,0.8623481781376519,0.7275862068965517,0.1509433962264151,0.4823612417685795,0.6756756756756757,0.6388478581979321,0.5368007850834151,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0043886766062252,0.0069199939120288,0.0090198070086338,0.0111270456371606,0.0134736027374938,0.015917526614186,0.0181110963645087,0.0203756146933434,0.0225671690694626,0.0244225167193205,0.0268232296771144,0.0288389320438294,0.0308093510348808,0.0328996282527881,0.0350182073988247,0.0368493065489147,0.0386253167712184,0.0404096117222216,0.0424045220365851,0.0570165353178502,0.0704795037304049,0.0832860594600273,0.0957342576301899,0.1078340234936195,0.1235502833236244,0.1366766562519926,0.1490890483246804,0.1614739974099087,0.1729812229280194,0.186634278002699,0.1996225964927501,0.2119738807190433,0.2228412256267409,0.2334738561370207,0.2449707297024093,0.2552519950306109,0.2649408684661912,0.2747598014662356,0.283920550494549,0.2921675562775586,0.3005243955373587,0.3080346546403987,0.3147416102947361,0.3214902991796295,0.3281799883926256,0.3342575748071011,0.3406764319679759,0.3457960922885055,0.3505044086106919,0.3507714756667657,0.3507883038352155,0.3518065819779847,0.3519820276831654,0.3532269360871444,0.353518746158574,0.3529374414654666,0.35380535928982,0.3547967702203367,0.3561820263308529,0.3571186695763413,0.3591197462331483,0.3601160443995964,0.3613598115112756,0.3618546498998334,0.3623646917324687,0.3630567785465149,0.3651034264961313,0.3671538515851161,0.3711216707263506,0.3728340876880172,0.3735210664382462,0.3763849319404875,0.3774965695990242,0.3771190453641443,0.3837279173176301,0.3862229102167183,0.3927839278392784,0.3889662858735023,0.3917086400619914,0.0,2.5606653153831487,61.18848148834344,216.25720006748745,320.1367680085518,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95693,41478,388.8267689381669,7269,74.74945920809255,5633,58.36372566436417,2252,23.261889584400112,77.28391542799022,79.68135158190032,63.28504443165552,65.05947777675584,77.01015661827562,79.40307957395892,63.18572425655609,64.9602139606637,0.2737588097146073,278.2720079413963,0.0993201750994288,99.2638160921473,76.76372,54.00184314628563,80218.74118274065,56432.38601181448,239.49887,147.36262557725416,249805.3149133165,153522.1547837921,268.2744,128.2251792301531,276411.1063505168,131048.31332631412,3237.81216,1463.8471019930275,3355944.1129445205,1502596.6948534504,1370.67598,598.5957503850507,1418603.983572466,611944.9987701538,2219.73386,918.592259928692,2294739.0091229244,939897.8329853052,0.38119,100000,0,348926,3646.306417397302,0,0.0,0,0.0,20202,210.61101647978435,0,0.0,25095,258.399255953936,2089759,0,75070,0,0,0,0,0,43,0.438903577064153,0,0.0,0,0.0,0,0.0,0.07269,0.1906923056743356,0.3098087769982116,0.02252,0.315748134572588,0.684251865427412,25.42443453061112,4.604467279728444,0.3376531155689686,0.1970530800639091,0.2343333925084324,0.2309604118586898,11.331675647546271,5.749204048861309,23.91738368513197,13113.453715485555,63.66631729395303,12.947655806153186,21.55160697984437,14.775696398057017,14.391358109898452,0.560802414344044,0.7594594594594595,0.7192429022082019,0.5969696969696969,0.1229823212913143,0.7228300510576222,0.9267605633802816,0.902439024390244,0.7186440677966102,0.1592592592592592,0.5086813702487095,0.680794701986755,0.6623018607856651,0.5619512195121952,0.113482056256062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219209176952,0.0047975494969165,0.0073098673056032,0.0095730734443755,0.0119145732222256,0.0140880938798793,0.016247641389158,0.0184867426563712,0.0206494502684735,0.0229260996947284,0.0249912797258756,0.027156713657474,0.0291723690844918,0.031164976502597,0.0334455065342609,0.0354103107709809,0.0375205943610308,0.03969399088616,0.0417000384859422,0.0436880556105593,0.0586822094092086,0.0732179684473896,0.0859016737499344,0.0985900673400673,0.110844924752517,0.1268139335499645,0.1399993629152996,0.152709884234853,0.1643756547020972,0.1760128789911457,0.1898489960012502,0.2028294733193232,0.2151668572050737,0.2265281093274347,0.2375752099266083,0.2485237968389273,0.2590460434388938,0.2686516701978993,0.2787002625387841,0.2884496248537274,0.2963302220418575,0.3038028119466692,0.311773988775377,0.3191578795666899,0.3255360861147303,0.3320450925434318,0.3389127109506256,0.3440697185521169,0.349068467931182,0.3544263680540883,0.355169670904507,0.3560477705690317,0.357152924594785,0.3582756277738424,0.3591690864418137,0.360234043860188,0.3592859071488699,0.3598927314007436,0.3606886263481884,0.3612495964994082,0.3618123587038432,0.3628581098568556,0.363840135335166,0.365118064020949,0.3659877849964718,0.3671622154979608,0.3689568159660492,0.3707590842792821,0.3736895979668914,0.3761354581673307,0.3781443298969072,0.3803576194288764,0.3794774944916588,0.3812008469449486,0.3812061711079944,0.38221695317131,0.3756516406010426,0.3782246597603088,0.3773426573426573,0.3791505791505791,0.0,1.9924803449415192,60.758674840225005,220.0973033090293,319.4352194700673,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95660,41394,389.32678235417103,7243,74.68116245034497,5601,58.00752665690989,2243,23.10265523729877,77.35161970545354,79.75589277541404,63.31721993396855,65.09360079627696,77.08290340709922,79.48639610658363,63.21974964839307,64.99804364779264,0.2687162983543203,269.49666883041345,0.0974702855754827,95.55714848431762,77.16742,54.21722723512704,80668.42985573907,56677.009445041855,237.89048,146.57223530360832,248157.26531465608,152696.0017808994,264.39825,126.25575528119845,272296.1321346435,128895.90420334984,3224.14908,1450.9024899529682,3341824.168931633,1488127.1272767803,1383.46126,595.1046536544933,1433037.2255906337,608913.6563396325,2215.47996,910.8178221959838,2284561.7185866614,925673.1443712376,0.38022,100000,0,350761,3666.746811624504,0,0.0,0,0.0,20064,209.1887936441564,0,0.0,24657,253.752874764792,2093241,0,74990,0,0,0,0,0,50,0.5226845076311938,0,0.0,0,0.0,0,0.0,0.07243,0.1904949765924991,0.3096783100925031,0.02243,0.3093298291721419,0.6906701708278581,25.574379885887573,4.576241301338354,0.3227995000892698,0.20317800392787,0.2372790573111944,0.2367434386716657,11.16831547928004,5.636105848622364,23.689899303130925,13022.821506696127,62.98496728761454,13.20580113370352,20.34990851433955,14.810550840663966,14.61870679890751,0.5440099982146045,0.7407732864674869,0.7029867256637168,0.5861550037622273,0.1161387631975867,0.7028985507246377,0.9101123595505618,0.8599137931034483,0.7260726072607261,0.1050583657587548,0.492063492063492,0.6636828644501279,0.6488095238095238,0.5448343079922028,0.1188026192703461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871115794166,0.0043299700856867,0.0066981955467148,0.0086767455092253,0.0110162853858751,0.0133733958036259,0.0155916993830622,0.0177880344324064,0.0197443762781186,0.0219502202191949,0.0242833986498963,0.0264710113652711,0.0286084755181427,0.0306498005134073,0.0326395703145173,0.0346789712181092,0.0368447235868416,0.0386895184312422,0.0408235453230823,0.0426758698349477,0.0575924436039161,0.0716364778557219,0.0850782455366982,0.0977283010132682,0.1103125857447392,0.1257434963909997,0.1387788901510728,0.1515991175812347,0.1633024186215675,0.1751777009470225,0.1891180815389094,0.2016271436154654,0.214251502220674,0.2257979771443583,0.2368560163873042,0.2481899925714855,0.258469652274962,0.2684071872466901,0.277838954669815,0.2877004122766834,0.2956236045395125,0.3035559815771632,0.3101453732508487,0.3173428198402146,0.3238075583018707,0.3304761201014803,0.3365913408659134,0.3424955205672677,0.348109365910413,0.3531403129775014,0.3538250447275319,0.3540816466740866,0.3549558680687529,0.3549635405385892,0.35565095965298,0.3556994580692569,0.3554985998386255,0.3559514037103923,0.3569633668951606,0.3583442063307655,0.3595193390912504,0.3614903636867307,0.3627430395162306,0.3628572067939222,0.3639489312591666,0.3654827622122695,0.3661032408858991,0.3670925914269528,0.3680694722778891,0.370034232943237,0.37266825164594,0.3722767028889477,0.3772112055398174,0.3786860198624904,0.3786636509282819,0.3779216109313196,0.3805762081784387,0.375025463434508,0.3742482230727173,0.3824308973873532,0.0,2.1473472781799208,61.123893688748,207.34802742891355,325.2930301333322,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95793,41576,390.52957940559327,7159,73.54399590784294,5591,57.80171828839268,2298,23.634294781455846,77.3507064425629,79.67856972353982,63.34838135415546,65.06979962928297,77.07052212573771,79.395969900851,63.246336297280926,64.96892479556148,0.2801843168251849,282.5998226888231,0.1020450568745303,100.87483372149109,77.11748,54.30328474673372,80504.2957209817,56688.15544636218,239.04489,147.25348583280294,249003.97732610945,153181.3137001691,265.80885,127.47464095730002,273413.58971949934,129996.5552137913,3247.9238,1461.7756471402574,3360484.628313133,1495893.110290164,1378.81118,594.6620565376197,1426596.2544236009,608009.1724213873,2280.93154,947.9303823559052,2349211.7795663564,964338.8121198526,0.3812,100000,0,350534,3659.286169135532,0,0.0,0,0.0,20166,209.94227135594457,0,0.0,24750,254.3192091280156,2093010,0,75057,0,0,0,0,0,43,0.4384453978891985,0,0.0,1,0.010439176140219,0,0.0,0.07159,0.1878016789087093,0.3209945523117753,0.02298,0.3188328912466843,0.6811671087533157,25.394236055497025,4.681068013020232,0.3233768556608836,0.1974602038991235,0.2264353425147558,0.2527275979252369,11.018922543500668,5.438212276270235,24.639358332800505,13022.053995141176,63.08403952219768,12.93712099356959,20.50053089176343,14.083325314570772,15.563062322293884,0.5340726167054194,0.7644927536231884,0.6913716814159292,0.5710900473933649,0.1196036801132342,0.7047619047619048,0.9189944134078212,0.8719646799116998,0.6895306859205776,0.1696750902527075,0.4789398958826313,0.6903485254691689,0.6309963099630996,0.537917087967644,0.1073943661971831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0043491484184914,0.0066161324038276,0.0088574679018365,0.0111131446233935,0.0130717623464017,0.0151848681260445,0.0175832474410915,0.0198146274666094,0.0216741711011052,0.0240691026087669,0.0264832030207884,0.028662158551374,0.0303679150110148,0.0324303700877527,0.0345568561009122,0.036464099831338,0.0386274103255235,0.0407298557527546,0.0427155558331771,0.0570343395557039,0.0717870436200911,0.0845606348074927,0.0971521647751156,0.1099190624736531,0.1253791922544367,0.1390217264524064,0.152362912751535,0.1642399658411614,0.1755811087415472,0.1892610370880599,0.2025505241543283,0.2150656801069135,0.2268992942513164,0.2367978361975129,0.2476795256164883,0.2576166172635896,0.2680754021748899,0.277629834441964,0.2871476295075965,0.2953201515291508,0.3031322261929787,0.3100132469129961,0.3171552426114863,0.3244929418476215,0.3307877070887479,0.3371681526591554,0.3423754691774286,0.3477551231897199,0.3527813320318168,0.3538881934068301,0.3541861746075461,0.3550976077634845,0.3559025011948383,0.3563632573445108,0.3558900322531101,0.3557945915027487,0.3575764573917059,0.3584041184041184,0.3588846422996178,0.3603607002716571,0.3607248711981062,0.3616154365816585,0.3620744152442879,0.3625886739462025,0.3635670731707317,0.3647224781206817,0.3677195661163597,0.3678618385984862,0.3690890890890891,0.3720544154945815,0.3738923708666523,0.3747036586147241,0.3761553398058252,0.3780928816140084,0.3791235251625331,0.3810785536159601,0.3794967768766895,0.3807909604519774,0.3830534947286216,0.0,2.233854418977894,60.06039001449852,215.29063383039656,319.8457380813767,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95739,41548,389.6217842258641,7203,74.11817545618817,5563,57.552303658905984,2299,23.668515443027395,77.31652017658898,79.67726920948583,63.31665033110207,65.06274630362809,77.02978578699059,79.39073110946909,63.21126169213181,64.96010561985925,0.2867343895983936,286.53810001674174,0.105388638970254,102.64068376883984,76.0672,53.53113975125133,79452.67863671022,55913.619059371136,236.05818,145.36345754969005,246029.1208389476,151297.9011162536,261.40396,124.7191669064898,269767.09595880465,127690.88978542574,3220.50868,1453.784217576149,3335688.0686031813,1490333.0278947428,1359.06503,595.4962548724516,1404397.758489226,606845.2719084715,2272.05048,954.5032392409746,2341803.4656722965,968131.2323136848,0.38114,100000,0,345760,3611.485392577737,0,0.0,0,0.0,19888,207.1674030436917,0,0.0,24429,251.8827228193317,2097565,0,75321,0,0,0,0,0,42,0.4386926957666154,0,0.0,1,0.0104450641849194,0,0.0,0.07203,0.1889856745552815,0.319172566985978,0.02299,0.3169377231257437,0.6830622768742562,25.488454592019664,4.587390693724615,0.3248247348552939,0.1982743124213553,0.2333273413625741,0.2435736113607765,10.96188498817445,5.333744558745455,24.77948239219732,13070.282361839363,62.99620630708672,13.017598403978306,20.40496425257003,14.486389708959472,15.08725394157893,0.5369404997303613,0.7651858567543064,0.6884338682899834,0.5808936825885979,0.1070110701107011,0.6656912948061449,0.8977272727272727,0.8461538461538461,0.7178571428571429,0.0980392156862745,0.4949952335557674,0.7030625832223701,0.6393323657474601,0.5432220039292731,0.109628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024817414734453,0.0047647529931772,0.0068510530322253,0.009408943576821,0.011627197265625,0.0136883058684537,0.0159709544837995,0.0182081839812914,0.02041901412051,0.0227079600716662,0.0249876958411943,0.0269951123341684,0.0291943030489999,0.0314076820100916,0.0335657699290311,0.0358740687930731,0.0377938573336231,0.0399053971349439,0.0418290870157274,0.0433704564159729,0.0582898308623929,0.0718665634221375,0.0849334605744727,0.0979410713159057,0.1101867375235926,0.1257866291552528,0.1382818467283374,0.1501415827460665,0.1628185266306961,0.174613222324743,0.1883940882454326,0.2022011081291663,0.2147440080038279,0.2259517613872428,0.2370819664912705,0.248911055694098,0.2597509910111105,0.2704165447712491,0.2792685418511203,0.2879388578238152,0.2961848319288823,0.3036487466941278,0.3117693738081984,0.3192482628679779,0.3249604670964602,0.3301637481785176,0.336129501454509,0.3416580614729542,0.3467034962133001,0.3525157981015838,0.3532641690163647,0.3539888990141662,0.3550513480634849,0.3560596165846721,0.3572281068178428,0.3576920711078304,0.3574675015097098,0.3581909713625484,0.3596432438005877,0.3610586691119621,0.3623694036887565,0.3625973922722213,0.3633411357837245,0.3645223732781129,0.366205361463273,0.367069051297494,0.3668559302592337,0.3702041590291385,0.3738934151588897,0.3754237626131695,0.3772038283647021,0.3806461983603922,0.3829152111781518,0.3831203611599969,0.3833744543556652,0.3856453558504222,0.3850825288072251,0.3862097270675149,0.3892617449664429,0.3930523028883684,0.0,2.2019474586043493,60.54632010109381,215.00275164520784,316.97943184944603,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95668,41601,390.9248651586737,7320,75.20801103817368,5765,59.570598319187184,2360,24.229627461638163,77.40264542862671,79.78242306148198,63.35728834693722,65.11163570774892,77.11899116416281,79.5008229970868,63.25404272483481,65.01188552267382,0.2836542644639053,281.6000643951781,0.1032456221024062,99.75018507509505,77.1848,54.24499956679293,80679.62118994858,56701.0835062852,241.23048,148.39178551960015,251445.770790651,154404.06221369756,269.70022,128.94905488517276,277569.59484885226,131378.60463892188,3319.78896,1495.1708269777205,3433038.7590416856,1525848.420556212,1401.73574,609.6588867279147,1446708.585943053,618795.8503659096,2325.01004,958.8929464094126,2389638.018982314,967956.6797865134,0.38094,100000,0,350840,3667.255508634026,0,0.0,0,0.0,20323,211.6904294016808,0,0.0,25226,259.36572312581006,2094556,0,75070,0,0,0,0,0,38,0.3867541915792114,0,0.0,0,0.0,0,0.0,0.0732,0.192156245077965,0.3224043715846995,0.0236,0.3195474053843152,0.6804525946156847,25.434302926723287,4.524536901434495,0.3417172593235039,0.195836947094536,0.229661751951431,0.232784041630529,11.14969066634414,5.662557459589758,24.9190106008729,13097.847134342472,64.69989237476683,13.192534526530428,21.985720966691044,14.88015860066938,14.641478280875983,0.5524718126626192,0.7431355181576617,0.7025380710659899,0.6163141993957704,0.1087928464977645,0.7142857142857143,0.8937329700272479,0.8626609442060086,0.765625,0.1340996168582375,0.4998850838887612,0.6706036745406824,0.6529255319148937,0.5687250996015937,0.1026827012025902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582049802027,0.0046520113107725,0.0071921282207344,0.0094248600997328,0.0118160279029092,0.0138789890638046,0.0161387339810576,0.0181361692573049,0.0202953349343416,0.0225960948053542,0.0247545050124028,0.0267431833114323,0.0288502071745098,0.0306388325317459,0.0325938918695831,0.0343861752485685,0.0365200824212804,0.0389029553378714,0.0409871869539895,0.0430332780956549,0.0573610371159651,0.0711675583988608,0.0848190394241161,0.0974165316727326,0.1096556452038179,0.125747172645811,0.1387429832659514,0.1507057846664821,0.1633824189446237,0.1749136692190549,0.188819849021656,0.2026167132004415,0.2151463743529514,0.2272443992521402,0.2385263574760186,0.2509549485711755,0.2618487507386307,0.2714494382022472,0.2810042827037683,0.2891254874604028,0.2969614376292053,0.3048061544927096,0.3121485611680764,0.3189482880359985,0.3262124851396268,0.3318435341484135,0.337235625930234,0.3429050620044724,0.3476883694471738,0.3523924957841484,0.3537762482187508,0.355078730969345,0.3558250312644905,0.3569554184209008,0.3581631290882392,0.3579198604672511,0.3575388904730222,0.3596954298024898,0.3612529675997882,0.3627986713811207,0.3646560132042914,0.3661891230562791,0.3662608259068658,0.367009617535227,0.367713328674362,0.3693434475542767,0.3697830194080265,0.372787785103631,0.3737780130580554,0.3749501396090945,0.3780347881958786,0.3815966070757502,0.3811887488863434,0.3803185350465492,0.3815326035221323,0.3839391779520076,0.3877740043223217,0.3925670186839967,0.3891029168959823,0.3894175866006852,0.0,2.59933837729624,61.9552016194871,216.1220818057847,331.573566599611,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95722,41688,391.5191909905769,7309,75.1655836693759,5687,58.77436743904223,2404,24.68607007793402,77.33907921770925,79.70616200407976,63.32552877917672,65.07567475595457,77.05196921172302,79.41968796780864,63.22035957479712,64.9737579292472,0.2871100059862357,286.474036271116,0.1051692043795995,101.91682670736668,76.68562,53.970547548279576,80112.84762123649,56382.59496069825,238.902,147.0242825169322,248932.19949436912,152949.27313294233,269.68648,128.41193228588014,277966.8205846096,131220.11554715037,3300.90744,1488.5990657339269,3413877.9381960263,1520660.2288672216,1411.71835,612.4619572962521,1458759.7521990766,623783.0564512358,2376.98316,985.449641212172,2443276.0702868723,995163.3043020496,0.38168,100000,0,348571,3641.493073692569,0,0.0,0,0.0,20114,209.460730030714,0,0.0,25182,259.25074695472307,2094285,0,75080,0,0,0,0,0,41,0.4283236873446021,0,0.0,0,0.0,0,0.0,0.07309,0.1914954936072102,0.3289095635517854,0.02404,0.3194138244066917,0.6805861755933083,25.183741329155552,4.664917589593019,0.3223140495867768,0.19852294707227,0.231756637946193,0.24740636539476,11.173342729944606,5.460915066045397,25.56246311166582,13081.27072873172,64.41993306327025,13.238411117184269,20.7931333960509,14.815199761890591,15.573188788144476,0.5459820643573061,0.7590788308237378,0.7114020731042008,0.5948406676783005,0.1137171286425017,0.6978260869565217,0.9233038348082596,0.8435517970401691,0.7473684210526316,0.1342756183745583,0.4973299280241467,0.6886075949367089,0.6654411764705882,0.5527589545014521,0.1085409252669039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020256036298817,0.0045321815305998,0.0068410421931934,0.0091550154446431,0.0112509282524439,0.0136165965637698,0.015795645745169,0.0180604191977457,0.0203378392196159,0.0225014850775312,0.0246448900056407,0.0267355511960641,0.0290853740062325,0.0311044714609519,0.033155444532758,0.0351082201838657,0.037129507806106,0.0394781904791556,0.0411696806464024,0.0430791990498614,0.0572087875370672,0.0712746144348881,0.0848239562144819,0.0980031335765886,0.1103987176918453,0.1259546021873876,0.1392000848716316,0.1522426513643283,0.1647325340343228,0.1760319316730866,0.1898727356975829,0.2024387074417395,0.2142546245919477,0.2260101562842008,0.2371974185590625,0.2488385759111219,0.2595041322314049,0.2694710537276135,0.2797461600463178,0.2881804738814952,0.2959249826348691,0.304062434184354,0.3122478675957363,0.3188902332378979,0.326049481632554,0.3324224519940916,0.3382621303402245,0.3446720374088287,0.3504345352025244,0.3553693931398416,0.3559395015878142,0.3562805423635488,0.356700390862013,0.3573332560700006,0.3590045275825092,0.3586776352139481,0.3577753094255791,0.3590592420574139,0.3594286499107265,0.3602032753914667,0.3609913184309147,0.3618697895990472,0.3623093911031654,0.3618777695301077,0.3632304313195433,0.3655798618379736,0.3650283879107645,0.3662363958491521,0.3684433612376814,0.3706817181057604,0.3717046238785369,0.3731278957008943,0.3723090722706304,0.3750096651975566,0.374905303030303,0.3733797407585214,0.376270126621854,0.3794384805945499,0.3788645306351883,0.3788940809968847,0.0,2.452831630844633,60.83382134420425,221.7149845491974,325.3922940569065,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95682,41686,391.672414874271,7110,73.08584686774942,5515,57.0117681486591,2281,23.400430593006,77.30793472821749,79.68349348346906,63.31631099018998,65.06985191134629,77.02824374008843,79.40612787757351,63.21268930437566,64.97030519468963,0.2796909881290617,277.3656058955538,0.1036216858143248,99.54671665666126,76.85062,54.10069621674104,80318.78514245103,56542.187889823625,237.15736,146.4141059850847,247262.9439183964,152424.56886884128,261.55793,125.15712856720796,269739.22994920675,128004.21619521096,3176.8244,1428.9935726353942,3286341.882485734,1459633.800124783,1360.04861,590.4569111525433,1405748.5420455255,601426.2046702022,2249.5214,937.1490491851396,2310293.158587822,944074.1057312364,0.38186,100000,0,349321,3650.8538701114103,0,0.0,0,0.0,19976,208.1373717104576,0,0.0,24366,250.99809786584728,2090991,0,75102,0,0,0,0,0,54,0.5643694738822349,0,0.0,0,0.0,0,0.0,0.0711,0.1861938930498088,0.3208157524613221,0.02281,0.3096895074946467,0.6903104925053534,25.433587551328987,4.610327298870344,0.3361740707162284,0.2003626473254759,0.2248413417951042,0.2386219401631913,11.020890127687569,5.414645275755266,24.24741732568405,13035.2105283284,61.99236387585892,12.77760465640926,20.94553215199342,13.74291739267739,14.526309674778856,0.5421577515865821,0.7683257918552037,0.6844660194174758,0.5733870967741935,0.1223404255319148,0.7216804201050263,0.9333333333333332,0.8686440677966102,0.7364620938628159,0.1574803149606299,0.48493543758967,0.6980645161290323,0.6215629522431259,0.5264797507788161,0.1139359698681732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0048234769567508,0.0070704713985737,0.0091716096530429,0.0114311284679847,0.0133904932589303,0.0156621223399373,0.0177641653905053,0.0200678811670653,0.0223152593381171,0.0246647804157953,0.0263863078676372,0.0286930766382821,0.0306170804574018,0.0325569876273127,0.0346328402030414,0.0368866047745358,0.0392030648158722,0.041205047384244,0.0431065936929893,0.0573702848666548,0.0718697008394917,0.08512044653349,0.0976292151376822,0.1101703850533507,0.1255988578076252,0.1394907161803713,0.1521035598705501,0.1642626664102399,0.1752936759105294,0.1889472890593025,0.2018955089852752,0.214157559941282,0.2257821128254475,0.2363180247782937,0.2472355795865003,0.2577041129527317,0.2684351505874938,0.2773520429594814,0.2866556648101033,0.2947166008317212,0.3022447450962033,0.3099442214090311,0.3158463255679977,0.3228726834669814,0.3298767992494383,0.3354566885689923,0.341224791764991,0.3469785321887297,0.3519768180374722,0.3534970368670437,0.355133090346808,0.3563312605992086,0.3568910744592889,0.3574753804834378,0.3575194847119952,0.3582483655972132,0.3590323645970938,0.3598252974757548,0.3606810589460828,0.3622455716738035,0.3628491230864173,0.3639277204967635,0.3643335882326481,0.3653692445563979,0.3675128238853084,0.3680308081388665,0.3697279127291177,0.3710593581368929,0.3730244468451166,0.3746893695352047,0.375355094602562,0.3769750254841998,0.3815486249807958,0.382258064516129,0.3826055833929849,0.381590978360256,0.3791086912684009,0.3768980477223427,0.3763197586726998,0.0,2.4797927855843485,58.42779458542432,208.11387829082489,320.46123662400527,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95702,41653,393.1370295291634,7162,73.64527387097448,5577,57.64769806273641,2305,23.62542057637249,77.38171245272493,79.75614415344984,63.34258245905804,65.09505055099079,77.09681311471509,79.47335775703371,63.23745566626626,64.99424366826247,0.2848993380098363,282.7863964161281,0.1051267927917791,100.80688272832106,77.5313,54.59429638993236,81013.24946187122,57046.13946409935,241.72429,148.7614857909956,251962.52951871435,154824.74325614466,264.7501,126.29063075885963,273137.9699483815,129229.79329883488,3233.1262,1452.8871959903363,3343237.090133957,1483047.1212621843,1364.75717,584.522780395485,1411307.872353765,596032.9673313878,2280.0649,947.6867615666544,2339580.238657499,953088.8673712192,0.38021,100000,0,352415,3682.420430085056,0,0.0,0,0.0,20339,211.8868989153832,0,0.0,24646,254.0490271885645,2089720,0,74892,0,0,0,0,0,52,0.543353325949301,0,0.0,1,0.0104491024221019,0,0.0,0.07162,0.1883695852292154,0.3218374755654845,0.02305,0.3032906039381525,0.6967093960618475,25.14264007152392,4.59450024619546,0.3320781782320244,0.189528420297651,0.2359691590460821,0.2424242424242424,11.044755062280164,5.46264365086851,24.40605935436341,12917.656004721084,62.6368377314728,12.276655504194816,20.92706718558741,14.632741478260812,14.800373563429744,0.5325443786982249,0.7663197729422895,0.673866090712743,0.5729483282674772,0.1168639053254437,0.6716306775874907,0.9131832797427653,0.8235294117647058,0.6986301369863014,0.1281138790035587,0.4884270193670288,0.7050938337801609,0.624551328068916,0.537109375,0.1139122315592903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207907956571,0.0041865604314286,0.0064740025165401,0.0087154379050443,0.010873324246801,0.0129429735234215,0.0148967626816212,0.0169157580954714,0.0190650460525643,0.0210463818853709,0.023056734534867,0.0252874743326488,0.0271593257987885,0.0295226518881723,0.0314551083591331,0.033489112678095,0.035421327367636,0.0375335955254392,0.03946998928746,0.0412602134400533,0.0559390894753882,0.0699164520384446,0.0831269674711437,0.0962966859547606,0.1082418219985864,0.1238089194877164,0.1369819408781274,0.1498397691824502,0.1615246560123066,0.1729671744260888,0.1864998545242944,0.1994024421927773,0.2120335425209097,0.223638609802228,0.2348301504884273,0.2458978276755464,0.2562935697953265,0.2665946748557352,0.2760400712478586,0.2853837607522879,0.293496753584945,0.3018889993566875,0.3094758780759302,0.3164124334436609,0.3230546709774655,0.3295924030338533,0.3353573038209224,0.3406274280037192,0.3458767428601047,0.3512571767966739,0.3522133663632936,0.3527202696196437,0.3533348361464116,0.3538050541516245,0.3553096163546272,0.3557852566553005,0.3556785827269851,0.356815052776503,0.3571891191709844,0.3580141236892788,0.3589858901568385,0.3589292073918721,0.3595094078988677,0.3602756892230576,0.3617026396207801,0.3624739583333333,0.3628149583855888,0.3644078451093789,0.366697093104901,0.3692270973387963,0.3704042436436802,0.3688174340348253,0.3693210821847881,0.3694980694980695,0.3696520250998288,0.3741153892287394,0.37395607794618,0.3719925971622455,0.3753162777621591,0.3771070168561348,0.0,2.477065201840408,58.950291035725655,211.8414811106573,322.10342582430115,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95863,41792,391.42317682526107,7256,74.49172256240676,5685,58.781803198314265,2327,23.88825720037971,77.44506122741345,79.72158328014386,63.40474875222951,65.08368504914225,77.16396911594545,79.44123835591299,63.30158797543905,64.9833093236186,0.2810921114679985,280.3449242308744,0.1031607767904603,100.37572552364792,77.41668,54.48023485950429,80757.62285761972,56831.347714451134,239.9369,147.9355647587649,249786.38265024044,153814.69885019757,269.27621,128.74093206734267,277707.9373689536,131834.30927033155,3273.25516,1473.4437722063772,3386227.762536119,1508744.909095667,1416.17805,614.7845313293591,1461499.4210487884,625521.4956024325,2283.26896,946.6022094881024,2346514.3173069903,957701.3109279514,0.38239,100000,0,351894,3670.801038982715,0,0.0,0,0.0,20314,211.36413423322867,0,0.0,25057,258.2226719380783,2091750,0,75123,0,0,0,0,0,51,0.5320092214931725,0,0.0,0,0.0,0,0.0,0.07256,0.1897539161588953,0.3207001102535832,0.02327,0.313933674138157,0.686066325861843,25.326313042326547,4.602795195304591,0.3285839929639402,0.202990325417766,0.2379947229551451,0.2304309586631486,11.347019097348126,5.767663680194925,24.70366133249559,13084.830188548238,64.0320571618432,13.398672318281225,21.091734069777328,15.15039601082151,14.391254762963149,0.5465259454705365,0.766897746967071,0.6798715203426124,0.5668883961566888,0.1412213740458015,0.7133574007220217,0.9211267605633804,0.8322440087145969,0.7450980392156863,0.1924528301886792,0.4927906976744186,0.6983729662077597,0.6302342086586231,0.5148042024832856,0.1282296650717703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023887123221117,0.0048420263576413,0.0069963395962402,0.0089825829239576,0.0111874326823419,0.0131446419305938,0.0155320622504685,0.0178041543026706,0.0200859806594573,0.0222494887525562,0.0243600245750563,0.0266655726944535,0.0287786040014789,0.0310230615729597,0.0334226251803008,0.0356623073667695,0.0376743849343826,0.039832133050101,0.0417445288816909,0.0436596709917071,0.0581206206206206,0.0722210614291684,0.0856777895276885,0.0988688115175554,0.1110374648865322,0.1255475222966911,0.1387124099957645,0.1515470270729737,0.1632293977137007,0.1737124876921101,0.1877754132542292,0.2009848918454843,0.2136280726135672,0.2256313944727733,0.2368403708423041,0.2481577375024895,0.2586308760743309,0.2686986524607483,0.2777689586357039,0.2864467103832641,0.2952673945225759,0.3028562739777299,0.3104288960424162,0.3178013292617208,0.3247568512694731,0.3312921985116554,0.3380722740652596,0.3441228528134669,0.3497945587225052,0.3553648068669527,0.3564673869116577,0.3572519293997881,0.358082719993245,0.3585989007025693,0.3593372198240695,0.3599914400574739,0.3605384141428503,0.3612271305259364,0.3620839659496068,0.3639813297227963,0.3640705776579006,0.3654352256762372,0.3659309303008686,0.3655447139915853,0.3666474099749663,0.3674906132665832,0.368987305743724,0.3701480340698369,0.3723951949007109,0.3734350780970549,0.3754181751523761,0.3788576939562795,0.3803210048848569,0.3819911812485495,0.3851674641148325,0.3841691842900302,0.3864809888906274,0.3861635220125786,0.3893431068508599,0.4004729996058336,0.0,1.9823496047181428,61.38269073934601,222.98995839720416,317.85085731889944,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95678,41670,391.5215619055583,7185,73.73690921632978,5595,57.818934342273046,2279,23.37005372185873,77.29747507811412,79.69995861561101,63.28577397120039,65.06533363357859,77.02067275788635,79.4245169258607,63.18417135819103,64.96724323934912,0.2768023202277732,275.44168975030914,0.1016026130093621,98.09039422947308,77.64944,54.62963033121128,81157.04759714878,57097.37905392178,240.47585,148.02549755066437,250663.70534501137,154039.09179918558,266.46062,127.06964639756536,273788.8647337946,129240.35332099388,3219.6248,1446.186965502795,3327647.400656368,1474269.2558054077,1385.56769,597.9279273524028,1428622.8809130625,605565.0332126188,2255.02028,934.387050134433,2314035.891218462,940425.2660873728,0.38176,100000,0,352952,3688.956708961308,0,0.0,0,0.0,20261,211.06210414097285,0,0.0,24820,254.86527728422416,2084901,0,74866,0,0,0,0,0,54,0.5539413449277786,0,0.0,0,0.0,0,0.0,0.07185,0.1882072506286672,0.3171885873347251,0.02279,0.3206500198176774,0.6793499801823226,25.33657915830697,4.573532944366165,0.3292225201072386,0.201787310098302,0.2266309204647006,0.2423592493297587,11.20870120959072,5.5861269463027305,24.02524002134877,13083.429149649985,62.82786357667427,13.089302623264324,20.72013913727426,14.203963020152196,14.814458795983477,0.5415549597855228,0.733392382639504,0.6921824104234527,0.6151419558359621,0.1084070796460177,0.6947761194029851,0.8885542168674698,0.8698630136986302,0.7534722222222222,0.1347517730496454,0.4933019976498237,0.6687578419071518,0.6367521367521367,0.5744897959183674,0.1014897579143389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023207264177712,0.0047268374819954,0.0072795573379359,0.0095112285336856,0.0116984049479166,0.0138829472998024,0.0159520215413487,0.0181062478299054,0.0203422072675578,0.0223960840134765,0.0245966377073225,0.0268845924677939,0.029094051562725,0.0307589262713174,0.0327809612307056,0.0346921254874378,0.0369495144222298,0.0390617699280441,0.0411347960425704,0.0431144089876399,0.057777684923064,0.0720118083034985,0.0854486500099688,0.0981675117291872,0.1099858640842247,0.1251838293640297,0.138562466163498,0.1512291764304887,0.1632818933341888,0.1749634911090112,0.1889965054575262,0.2018168612529405,0.2145751633986928,0.2251221703591699,0.2354666225676644,0.2465741264715999,0.2575899843505477,0.2676611758343286,0.277717805074827,0.2866330390920555,0.2958761572598867,0.3040747943857347,0.3115208683904913,0.3184154278440885,0.324812853752054,0.3315677050536479,0.338274020013543,0.3442499553468908,0.3498590378194385,0.3552170057312279,0.3566748179472283,0.3569800373005456,0.3575380261761585,0.3579045104382771,0.3590366111591051,0.359291818167871,0.3595391661252238,0.36091769033699,0.36145524043548,0.3623028053394246,0.3639699000411815,0.3655752596864015,0.3660208831299534,0.3673592628212296,0.369039308668127,0.3695107305101561,0.369988577955454,0.372418576788473,0.3740753786544558,0.3777689243027888,0.3784884252905114,0.3781924820047987,0.3794631552291719,0.3796693202694427,0.384987205004265,0.3852860384569449,0.3843289371605896,0.3841726618705036,0.3876529477196885,0.383572258814413,0.0,2.476156116807949,58.91610869530097,211.0702691098444,326.0791908855235,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95825,41378,389.6686668405948,7107,73.03939472997652,5510,56.88494651708845,2248,23.052439342551526,77.32864418348662,79.64067179533976,63.32870225298407,65.03871693436223,77.05843770690824,79.37047199920562,63.23052756365464,64.94349638625962,0.2702064765783802,270.19979613413625,0.0981746893294257,95.22054810260272,77.30096,54.44145412958775,80668.8859900861,56813.41417123689,238.6819,146.93850639986246,248445.3117662405,152704.7496998304,262.42382,124.85054359169165,270049.27732846333,127316.36230953624,3168.92496,1413.0035042920488,3273773.357683277,1441348.14953514,1353.85358,580.9982045286644,1400839.2799373858,594323.0861347248,2223.58072,913.1373697642996,2282282.807200626,919583.1656318766,0.37876,100000,0,351368,3666.767545003913,0,0.0,0,0.0,20131,209.4129924341247,0,0.0,24507,251.990607878946,2088655,0,75028,0,0,0,0,0,46,0.4696060527002348,0,0.0,3,0.0313070701800156,0,0.0,0.07107,0.1876386102017108,0.3163078654847334,0.02248,0.3118884867980163,0.6881115132019836,25.47599420594915,4.5305691891787525,0.3225045372050816,0.1992740471869328,0.2373865698729582,0.2408348457350272,10.992118090261798,5.436104941356438,23.670786457389177,12902.072155434202,61.69503522934176,12.851097125257972,19.8705646659109,14.38275018755284,14.59062325062004,0.543557168784029,0.7632058287795993,0.7045582442318514,0.5718654434250765,0.1183119819140919,0.7061538461538461,0.924198250728863,0.878345498783455,0.7444444444444445,0.1413043478260869,0.4933491686460807,0.6900662251655629,0.6522693997071742,0.5269749518304432,0.1122740247383444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0042776628958358,0.0064424491452341,0.0083495855680156,0.0104535285743339,0.0130116065974343,0.0149220262970135,0.0170022554012266,0.0193144889324912,0.021580746167857,0.023750486690301,0.025655761257748,0.0275416979251235,0.0293496947672922,0.0312561228383158,0.0331298230390181,0.0351429103628122,0.037263603185136,0.039366398338094,0.0413522487171747,0.0555202086049543,0.0689947200585498,0.0824476448022137,0.0952701211630815,0.1070822485269471,0.1229453611407672,0.135428595665267,0.1487806435137895,0.1615621195617351,0.1731542329091669,0.1866500123830341,0.1995088812444559,0.212109680786292,0.2237548227733269,0.2342159979757753,0.2456523183942932,0.2562218773377399,0.2661659892132908,0.2761808497348127,0.2846198837115956,0.2926130763968602,0.2996786602242342,0.3072840605520926,0.3138362436755639,0.3204041879717555,0.3267782633385181,0.3331744817466986,0.3397472680208612,0.3445115222330412,0.3498484788333532,0.3510850788166703,0.3518564527260179,0.3537882645843943,0.3551023370590797,0.3562311752601914,0.3559733730994511,0.3561700437028208,0.3581809503431703,0.3595622809267333,0.3614847364378472,0.3620488940628638,0.362977053858043,0.3628234997796108,0.3636302490863843,0.3642684693384838,0.3656546041409714,0.3662649222753428,0.3685988507924481,0.3679879013821967,0.3694424560566293,0.3710792618709648,0.3730472929595549,0.3770971021860702,0.37649417752757,0.376131060100962,0.3732334823046261,0.374884294970688,0.3763066202090592,0.3726742571507914,0.3817541111981206,0.0,2.318096373919401,57.21100153902525,205.5194605361541,326.0717844448752,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95748,41393,387.5903413126123,7237,74.40364289593516,5682,58.76885156870117,2319,23.82295191544471,77.35098256499538,79.69810400209829,63.33757887846742,65.07045378568715,77.0660162741105,79.41291048525267,63.23223635088819,64.96768541829793,0.2849662908848813,285.19351684562366,0.105342527579225,102.76836738921702,76.96788,54.18356725825089,80385.8879558842,56589.76402457586,241.91355,149.06980861698295,252098.0072690813,155131.2388947894,264.43183,126.13339041787508,272760.12031582906,129094.0211915106,3265.97372,1468.6004160545274,3378577.390650457,1501530.580881212,1405.94437,602.4452190472259,1456412.551698208,617290.237425035,2277.8864,956.22152164513,2342422.985336508,967415.4576023424,0.3805,100000,0,349854,3653.903997994736,0,0.0,0,0.0,20449,212.9757279525421,0,0.0,24658,254.1671888707858,2090121,0,74985,0,0,0,0,0,37,0.3759869657851861,0,0.0,1,0.0104440823829218,0,0.0,0.07237,0.1901971090670171,0.3204366450186541,0.02319,0.3151945320715036,0.6848054679284963,25.368028691742467,4.617302487598452,0.3257655755015839,0.2016895459345301,0.2370644139387539,0.235480464625132,11.013360686375082,5.495728641292592,24.78513081134391,13122.868810765278,63.93998873886401,13.493670212049263,20.798415100911978,14.98944108305465,14.658462342848114,0.5337909186906019,0.7486910994764397,0.6828741220961643,0.5686711210096511,0.1083707025411061,0.6874546773023931,0.8972972972972973,0.8538812785388128,0.6762820512820513,0.1196911196911196,0.484545665814548,0.6778350515463918,0.6298655343241331,0.5362318840579711,0.1056533827618165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.0047232442403786,0.0069302811685083,0.0092833346875761,0.0118351618183851,0.014017978031375,0.0162689473094056,0.0184725921843585,0.0206666053414282,0.0231401406216418,0.0251347971379953,0.0276024184194048,0.0297540713933212,0.0318710740397487,0.0338680559137566,0.0358859339955142,0.0377012684442143,0.039763824466374,0.0417121528752482,0.043777217510887,0.0577924857241285,0.0716295808095073,0.0848571907897496,0.0979666505456609,0.1102478415332229,0.1257716701902748,0.1392194294198748,0.1517128353570934,0.1634512669315899,0.1757581608899473,0.1897467386269377,0.2019938517492206,0.213881636205396,0.2258057455540355,0.236237117942394,0.247779958093591,0.2583200205556735,0.2686390798906132,0.278459599686652,0.2874264545652648,0.2960514126910606,0.3042022316671935,0.3115516629186886,0.3184852297920786,0.3254339402626113,0.3319369147363233,0.3385980501357896,0.3448578627236403,0.3503381968020317,0.3555402869903015,0.356964586846543,0.3580069799842743,0.3582871835443038,0.3600672697749942,0.3619525860142152,0.3616432884204704,0.361896587350786,0.3629556325251525,0.3642991936867387,0.3645824004585266,0.3657541458278494,0.3665814151747655,0.3677126272398418,0.3694832308175818,0.3704052098408104,0.370482953801001,0.3704732186310154,0.3722556153116103,0.3722010984368399,0.3732045962336419,0.3748681495069938,0.3751204367840702,0.3750475948724457,0.3766750899762616,0.3805526737715741,0.3820760338457871,0.3835125448028674,0.3835001021033286,0.3843148199832542,0.3811188811188811,0.0,2.273421087311026,60.8226866733758,217.02222018864896,326.0530263230919,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95836,41323,387.26574564881673,7205,73.949246629659,5639,58.18272882841521,2294,23.581952502191243,77.51248185563044,79.79874349524053,63.42745123530996,65.11110424681519,77.21779430006531,79.50314004053274,63.31887506986864,65.0046001488855,0.2946875555651331,295.6034547077877,0.1085761654413204,106.50409792968674,77.68398,54.60122905081106,81059.28878500772,56973.61017865005,240.27579,147.6896554659954,250065.91468759128,153456.98429191057,260.07064,124.39043423913029,267071.737134271,126411.64881328052,3265.81208,1470.2697431753147,3373301.5985642136,1499744.3373839834,1343.61394,587.2184086299408,1382580.2099419844,593330.0995762976,2266.70042,952.873531458382,2332787.929379356,966029.7906882764,0.3795,100000,0,353109,3684.51312659126,0,0.0,0,0.0,20235,210.4637088359281,0,0.0,24340,249.59305480195331,2096439,0,75161,0,0,0,0,0,49,0.5112901206227305,0,0.0,0,0.0,0,0.0,0.07205,0.1898550724637681,0.3183900069396252,0.02294,0.3163670015864622,0.6836329984135379,25.34991387173512,4.562969768695487,0.3325057634332328,0.1966660755453094,0.23142401134953,0.2394041496719276,10.845295525741284,5.209466793313518,24.49802641784606,12985.242256106554,63.24592808960796,12.843816105691667,21.194023649112346,14.559545083135102,14.648543251668835,0.5339599219719808,0.7493237150586114,0.6938666666666666,0.557088122605364,0.1125925925925925,0.6939929328621908,0.8914285714285715,0.8589743589743589,0.7047619047619048,0.1631205673758865,0.4803503787878788,0.6837944664031621,0.6389481165600569,0.51010101010101,0.099250936329588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019630461619411,0.0040712571272318,0.0062335924750909,0.0085539466875019,0.0108901034153477,0.0130275602562798,0.015220622671092,0.017529368575624,0.0196665066933515,0.022098374066878,0.0242588705135425,0.0263052641294649,0.0282564244834211,0.0303298512838985,0.0323711340206185,0.0346013613311711,0.0365997516556291,0.0389715411331709,0.0411767150039473,0.0431197817984967,0.057617503206766,0.0713374597465601,0.0841305600670613,0.0969656229978258,0.1084809300170587,0.1250712972938716,0.1385311668627513,0.1507720447488196,0.1627589298101448,0.1733156265729921,0.1868836238882376,0.2000475326246651,0.212859299156251,0.2238944528784089,0.2350019777611743,0.2467508046943267,0.2576529190857728,0.2677100771884094,0.2785481239804241,0.2871726282337071,0.2960364622396584,0.3041187851099042,0.3107406620891437,0.3172156708125739,0.3234980620155038,0.3295799579589177,0.3349472764709552,0.3401156157298243,0.3453576314498851,0.3503739828848606,0.3511100969153534,0.3520939356113085,0.3539519865225326,0.3545745509068366,0.355260036766886,0.3554545871770159,0.355037458225763,0.3564649085355841,0.3570257251204263,0.3578270192994996,0.3585312769709933,0.3603032882624274,0.3619249496306246,0.3629750660280227,0.3642644659821514,0.3668548240251801,0.3690767392911997,0.369832122275119,0.3714096023481725,0.3739472648563557,0.3758849258240519,0.3782219884271436,0.379827521559805,0.3831316187594554,0.3830920130780009,0.3830337210668547,0.385853066180935,0.3831700979412352,0.3867102396514161,0.3926149208741522,0.0,2.5494394003400176,62.20386170462155,207.0637495298825,322.6803734828231,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95741,41557,391.023699355553,7214,74.07484776636969,5531,57.21686633730586,2252,23.17711325346508,77.31288813594676,79.67094414196423,63.318020272784125,65.06176252543587,77.03253099050055,79.38982780945418,63.213808428622606,64.96011490365233,0.2803571454462172,281.1163325100523,0.1042118441615187,101.6476217835418,77.49434,54.53695409122289,80941.6446454497,56963.00862872008,239.00083,147.95455475102614,249068.95687323093,153973.18781337782,264.07401,126.58597444014332,272461.7561964049,129720.3118825634,3183.63948,1446.8245925709623,3293445.942699575,1479407.907489939,1348.99644,592.9286382868665,1390694.4778099246,601022.0383150614,2219.66582,939.9931704687706,2285020.231666684,951246.0260074656,0.38123,100000,0,352247,3679.165665702259,0,0.0,0,0.0,20189,210.2756394856958,0,0.0,24727,254.87513186618065,2086750,0,74949,0,0,0,0,0,41,0.4282386856205805,0,0.0,0,0.0,0,0.0,0.07214,0.1892295989297799,0.3121707790407541,0.02252,0.3201471941122355,0.6798528058877645,25.44160444811857,4.608269638812073,0.3323088049177364,0.1961670583981196,0.2357620683420719,0.2357620683420719,11.214645092020069,5.635413148598424,24.24444794297934,12999.520422076112,62.563583742915526,12.742786131201482,20.81410468638055,14.514183165709326,14.492509759624165,0.5422165973603327,0.7732718894009216,0.6898803046789989,0.5736196319018405,0.1104294478527607,0.6913229018492176,0.9255014326647564,0.831140350877193,0.7129629629629629,0.1407942238267148,0.4913939393939394,0.7010869565217391,0.6432706222865412,0.5275510204081633,0.1022395326192794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572241690129,0.0046219807620186,0.0070719061678791,0.0091719822857839,0.0116353576550279,0.0136048879837067,0.015794840420108,0.0180600504333799,0.0202322775880753,0.0221685217231033,0.0242794598640432,0.0261028505709356,0.028149458506032,0.0302109513411066,0.0324158137999339,0.0344374967701927,0.0363045189081721,0.0382675825430095,0.0401405960774526,0.0421151341495181,0.0569934121921426,0.0708575733478424,0.0837999958052811,0.0966615845644287,0.1085908913563843,0.1247104124572891,0.1381996476556364,0.1508154488162153,0.1633407401076831,0.1746227517937388,0.1882618996338574,0.2012828972276006,0.2136875761266748,0.2254055768873136,0.2359266147937004,0.2469057828895611,0.2570647016133534,0.2668422355774641,0.2763975508071203,0.2858567449537498,0.2945543407764291,0.302490228661034,0.3094336048494033,0.3161695033164214,0.3232222532916732,0.3294892509589649,0.3358020978232264,0.3408726216856422,0.3469258097139745,0.3523568934504285,0.3537049534350114,0.3547288446423893,0.3553207717732139,0.3562646794444283,0.3572217248582512,0.357304408031387,0.3568960850806387,0.358225215410518,0.3595492106031713,0.3604571757179312,0.3613247379929126,0.3617766457056435,0.3630389451734524,0.3636261489022225,0.3648138284994916,0.3661110381939887,0.3659909263194165,0.3680749682337992,0.3672673098751419,0.3691021622056105,0.3743263783335636,0.374959871589085,0.3766405855628471,0.3791309669522644,0.3830633702756464,0.3833035181872391,0.3862400993943158,0.3861913542306904,0.3836038052602126,0.3806990881458966,0.0,1.9945360615606915,62.316854042580566,205.5599052683013,317.1949229296074,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95793,41762,392.1058950027664,7292,75.06811562431493,5626,58.27148121470253,2273,23.415072082511248,77.37208356525132,79.7110892894613,63.35007434272507,65.07933624755464,77.09643734164845,79.43368805731225,63.24908241345522,64.98050489871166,0.2756462236028625,277.401232149046,0.1009919292698526,98.83134884297816,76.85678,54.04372174164036,80232.1463990062,56417.19305339677,238.06492,146.50151512673258,248051.94534047373,152467.431919416,263.07574,125.0782240690274,272291.4200411304,128813.47072076023,3225.24268,1435.678679773603,3341211.863079766,1473066.5630489269,1350.49596,583.6293516695633,1397271.9300992764,596726.3700578999,2237.92514,924.9732772348816,2306236.134164292,937788.704152852,0.38271,100000,0,349349,3646.915745409372,0,0.0,0,0.0,20137,209.723048657,0,0.0,24527,253.68241938346225,2095791,0,75248,0,0,0,0,0,40,0.4175670456087605,0,0.0,1,0.010439176140219,0,0.0,0.07292,0.1905359149225262,0.3117114646187602,0.02273,0.3205847800548231,0.6794152199451768,25.4517724697435,4.579990311531044,0.3336295769640953,0.1974760042659082,0.2381798791325986,0.2307145396373978,10.875358638274228,5.387766439237756,24.08008723630686,13137.945649213509,63.068094488209766,12.86541801161646,21.08527789474673,15.038251071318186,14.079147510528385,0.5419480981158905,0.7416741674167416,0.6867341502397443,0.582089552238806,0.1201848998459167,0.7023186237845924,0.9148264984227128,0.8271334792122538,0.7169811320754716,0.1755102040816326,0.4919561669386803,0.672544080604534,0.6415492957746479,0.5401174168297456,0.1073124406457739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0043996593812091,0.0068092792920785,0.0092136406578559,0.0115936133428251,0.0137339143182928,0.0158599109154104,0.0179704879890605,0.0202133747547416,0.0221574045645276,0.0244617292300755,0.0264986299120475,0.0288019735827722,0.030992586490939,0.0329160393507538,0.0350153947885024,0.0368806218882298,0.0390442709143514,0.0411042881040699,0.0430821768055888,0.0576160460844882,0.0716579329965379,0.0854300331278567,0.0982419637884471,0.1105538756545468,0.1270708308680584,0.1404103781583856,0.1526142852585574,0.1643386864429387,0.1763691292423723,0.1899480404918403,0.2038178005491061,0.2155362596042035,0.2270068763460256,0.2378826039615938,0.2488344536605353,0.2589468987059348,0.2684182715549709,0.2784151456750935,0.2872977522300214,0.2960683839774212,0.3046594562993276,0.3126581380500839,0.3202596376091304,0.3271870941115063,0.3329310047540458,0.3389762596413904,0.3449122360722462,0.3504652938664043,0.3554239121830224,0.3568016363220432,0.3578860559411724,0.3591475798262439,0.3597007798822219,0.360723529586767,0.3603367375103505,0.3611489806917979,0.3624523089067228,0.363575556965716,0.3657317859445519,0.3662495772742644,0.3683782712133228,0.3693212859844505,0.3705555306461014,0.3711382506275342,0.3719272498558624,0.3717602436641572,0.3728990930424304,0.3750617981495868,0.3751751751751752,0.3792218505109757,0.3822445382191122,0.3842261716526469,0.3847922734937912,0.3835863377609108,0.3865887125641332,0.3895384615384615,0.3824413710162357,0.3876603876603877,0.387047619047619,0.0,1.7423630987142875,59.50585623221411,210.02914491052292,331.8627576315624,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95643,41495,388.5699946676704,7337,75.37404723816694,5708,59.07384753719561,2288,23.514527984274856,77.25911226955019,79.65529921380707,63.27736057920528,65.04568857399929,76.96846752185874,79.365106483367,63.169271077102174,64.94036597715053,0.2906447476914451,290.19273044006866,0.1080895021031054,105.322596848751,76.65702,53.96238782679215,80149.11702895141,56420.63488890159,238.52229,146.88835226297013,248767.4686072164,152959.5306163798,269.66399,129.05641744942483,278415.02253170643,132149.09123447977,3277.46324,1486.736795967625,3392491.78716686,1520209.270440709,1379.87271,611.8083629051969,1424221.6262559728,621199.5486723301,2257.27032,958.4855696429736,2321290.06827473,968325.4768837652,0.38052,100000,0,348441,3643.1416831341553,0,0.0,0,0.0,20031,208.76593164162563,0,0.0,25171,259.7053626506906,2086446,0,74976,0,0,0,0,0,57,0.5750551530169484,0,0.0,2,0.0209110964733435,0,0.0,0.07337,0.1928150951329759,0.3118440779610195,0.02288,0.3130254818264131,0.6869745181735869,25.519956620340736,4.560390689474391,0.3298878766643308,0.1993693062368605,0.2380868955851436,0.232655921513665,10.98578632173237,5.480803701898425,24.580317178707705,13079.511135835812,64.4947609983,13.242049397552186,21.27368852365542,15.199241560703204,14.779781516389214,0.5411702873160477,0.7794376098418277,0.6909187466808284,0.5533480500367918,0.1121987951807228,0.7020669992872416,0.9303030303030304,0.8881578947368421,0.7068403908794788,0.1806451612903225,0.4887340301974448,0.7178217821782178,0.6278906797477225,0.5085551330798479,0.0913555992141453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.0046035753759417,0.006881432312283,0.0092972687367907,0.0117706902690879,0.0138512618906972,0.0163346044823296,0.0186510407627836,0.0208135267478353,0.0229901529264847,0.0251801880312086,0.0274255321333593,0.0294883003342761,0.0317390005459808,0.0335187459365744,0.0357645063898424,0.0378005448913842,0.0400655996346349,0.0424051422865701,0.0443362591997998,0.0590847815409695,0.0731066120636383,0.0864346620741798,0.0991702468199814,0.110803675150491,0.1268084475417822,0.1398298333386444,0.151932995183496,0.1640713567624221,0.1752942692671191,0.1887582263458841,0.2020527160012138,0.2144320237083524,0.2254274441034633,0.2359502217515059,0.2470058882346406,0.2579363302587982,0.2677972986696456,0.2779990441293611,0.2871727658400304,0.2956645922348133,0.3035211267605633,0.3105569409808811,0.3179974727721283,0.3249566724436741,0.3312957830132647,0.337564408696745,0.3431316189527204,0.3489236688851913,0.3539466535928659,0.3551729268391652,0.3559204792274809,0.3565445397207852,0.358046621336323,0.358379599838379,0.3582239072806855,0.3583734038149221,0.3583955347116718,0.3592526965886218,0.360038089762478,0.3607144202871246,0.3615030004371498,0.3619083744257597,0.3635425777658166,0.3658412974225311,0.36540322791598,0.3652574634341815,0.3666951539898078,0.3675346730823662,0.3693009118541033,0.3723868596370319,0.3742571076725384,0.3743080740599351,0.3779973952348119,0.3819398623809972,0.3831238779174147,0.3880919327471849,0.3877675840978593,0.3845291479820628,0.3902439024390244,0.0,2.3062022732227967,61.93676040040256,217.1172621918718,328.7228986163999,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95625,41507,390.6509803921568,7153,73.6313725490196,5480,56.79477124183006,2231,22.96470588235294,77.28554750318864,79.71642391769426,63.27381344368565,65.07157018523075,77.01559690118096,79.44538936230965,63.17582029337618,64.97508946902884,0.2699506020076825,271.0345553846025,0.0979931503094704,96.4807162019099,78.12728,55.01024299488704,81701.27058823529,57526.63784827068,239.75448,148.27045290529864,250202.5725490196,154535.03984863556,265.25484,126.67210408469928,274305.0039215686,130046.92894811858,3170.878,1423.1906986819404,3286692.517647059,1459542.8128000991,1344.75676,585.6128181926751,1390077.3960784313,596632.9285848911,2202.02536,911.7702916869972,2268337.5477124183,925972.5203306796,0.37939,100000,0,355124,3713.694117647058,0,0.0,0,0.0,20249,211.2,0,0.0,24826,256.5124183006536,2080970,0,74621,0,0,0,0,0,40,0.4183006535947712,0,0.0,0,0.0,0,0.0,0.07153,0.1885394976145918,0.3118971061093247,0.02231,0.3082036963169791,0.6917963036830209,25.51097723846177,4.636690183138124,0.3282846715328467,0.2029197080291971,0.2301094890510948,0.2386861313868613,11.252083811589038,5.69049443505569,23.69976453801477,12990.054376901991,61.61001097308458,12.988142264586038,20.108500134648764,14.093312912190603,14.420055661659154,0.5478102189781022,0.7760791366906474,0.707615341856587,0.5693893735130848,0.1131498470948012,0.6965875370919882,0.9265536723163842,0.8811188811188811,0.7031802120141343,0.1205673758865248,0.4992739593417231,0.7058047493403694,0.6532846715328468,0.5306748466257669,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024118362383461,0.0045644037367251,0.0066807456443162,0.0088529755552167,0.0110487120009766,0.0131609774979881,0.0152706796829574,0.0170909610983981,0.0190445019484305,0.0210562969183658,0.0232248004759853,0.0253593777293698,0.0275959321475625,0.029727974601342,0.031997934950955,0.0341118305372251,0.036154691094485,0.0384771162413932,0.0405299915692621,0.0426388526727509,0.0577413555211774,0.0716643438714883,0.0854374848952915,0.0988359230971819,0.1104961287801168,0.1259729944400317,0.1397301030708745,0.1524037949045943,0.1641931583508993,0.1754133407818828,0.1890556388706075,0.2018234248297992,0.2134988177092981,0.2247981330733075,0.2356961746224231,0.2468869997558431,0.2572153540050524,0.2664390276885628,0.2755744448737471,0.2845711141173503,0.2932456221625127,0.3010915138313072,0.3090605101205934,0.3164064376651453,0.3227683952902212,0.3294472163216914,0.3355099892211666,0.3413645403090102,0.3468921567354991,0.3524699599465954,0.3525596072931276,0.3534628785479184,0.3540396341463415,0.3540562458365917,0.3549366636400172,0.3553237896289014,0.3551774536904648,0.3571263799637502,0.3587701267557383,0.3595294033250237,0.3611915053561361,0.3615331286520749,0.3626819826643103,0.3629386949106902,0.3651076967606551,0.3668745596409279,0.3682607458013094,0.3710027355909819,0.373267534649307,0.3758282744117763,0.3770648900246418,0.3764574349145504,0.3771331058020478,0.3786792740582583,0.3820372811146676,0.3786212604942651,0.3777982214044771,0.3818921668362157,0.3882964178288214,0.3869992441421013,0.0,1.867449527905275,60.01315983385185,205.0996490921287,315.0981558670646,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95817,41647,390.2230293163009,7242,74.49617500026092,5636,58.319504889529,2301,23.690994291200937,77.35864855579545,79.66490923192762,63.35358995694328,65.05480756869378,77.08241304878767,79.38629689670407,63.25219376889563,64.9551906882298,0.2762355070077831,278.6123352235564,0.1013961880476443,99.61688046396944,77.66726,54.58662353205643,81057.91247899641,56969.66460237372,239.98283,148.3814168459801,249943.8617364351,154343.4848158261,269.92094,129.20332901734935,278735.5479716543,132566.66060084596,3232.50224,1459.1034686808464,3344700.2932673744,1493881.7836927152,1371.92553,599.6253535155859,1421854.8796142647,615839.0614563029,2258.61536,938.8075592002226,2325972.7188286004,951447.361734455,0.38116,100000,0,353033,3684.4505672271102,0,0.0,0,0.0,20220,210.48456954402664,0,0.0,25120,259.3068035943518,2086878,0,74952,0,0,0,0,0,62,0.6366302430675141,0,0.0,0,0.0,0,0.0,0.07242,0.1899989505719383,0.3177299088649544,0.02301,0.3133955567240699,0.6866044432759301,25.60485771141088,4.530644932285644,0.3300212916962384,0.2047551454932576,0.233498935415188,0.2317246273953158,11.079486819331562,5.593815007660463,24.518163628652275,13009.235072526342,63.64161996354322,13.43990210873132,21.010532137063368,14.745992245633984,14.445193472114555,0.5493257629524485,0.7625649913344887,0.689247311827957,0.5881458966565349,0.1225114854517611,0.7313432835820896,0.9193548387096774,0.8817204301075269,0.7656765676567657,0.1685393258426966,0.4887680302672026,0.6879795396419437,0.625089605734767,0.5350444225074038,0.1106833493743984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024188814444466,0.0049529520201764,0.0074819793789348,0.0096197753356266,0.011694064576433,0.0139260464879711,0.0161247606242105,0.0180755459896157,0.0202480436426046,0.0224738640315882,0.024346525729269,0.0263708535909902,0.028489238197976,0.0308403136512379,0.0328288035633274,0.0350329983578282,0.0371044844070111,0.0395592092304821,0.0414957153985977,0.043495008172231,0.0579760041731872,0.0713986993705957,0.0847221348762132,0.0974230704556919,0.1096684442383491,0.1251783355350066,0.1381302743734362,0.1505409516920032,0.1623869569395359,0.1737466226358451,0.1880141263620311,0.2010904842269245,0.2133418886145882,0.2241075628781165,0.2350777903788771,0.2465858200682836,0.2576078947955971,0.2665091420534458,0.2753540947884511,0.2842821626204415,0.292856812184621,0.3012807005221137,0.3083691571629895,0.3160356427569168,0.3230189138235115,0.3299613871035393,0.3367635644357645,0.3430106021458845,0.3473685574692534,0.3524330321762561,0.3537282060955563,0.3549551038395857,0.3553614203184444,0.356293918625835,0.3574977685212734,0.3575896005150688,0.3582873278761342,0.3592720685111989,0.3606461791740979,0.3611469997128911,0.3614745919078191,0.362847498014297,0.3630690084125746,0.3646736444903643,0.3652554250640375,0.3661387334856723,0.3665038781959207,0.3690759610195854,0.3701066354908421,0.3719213798636181,0.3738356352957371,0.3755697356426618,0.3750238080121897,0.3757323465926611,0.3747169811320754,0.3719360568383659,0.3715603382013835,0.3666188230469551,0.374438202247191,0.3703557312252964,0.0,1.934045311151836,62.45507384814438,214.2609618126216,320.0176798192172,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95858,41591,390.859396190198,7260,74.45387969705189,5637,58.17980763212251,2322,23.84777483360805,77.41454581429173,79.70261305650065,63.37712166936033,65.0678397619469,77.13522112578613,79.4233997443555,63.275364718454014,64.96874164664878,0.2793246885055964,279.21331214514566,0.1017569509063136,99.09811529811918,77.8426,54.76039617764225,81206.15911035072,57126.57908327136,241.18336,148.69766631011314,251009.77487533644,154527.7976904516,270.55328,129.62401706812187,277809.4264432807,131883.10309840055,3271.30352,1467.0545069980124,3378736.005341234,1496525.8476058468,1389.57372,600.2930001723931,1431727.8265768115,608351.6012020722,2299.33598,944.69047832712,2363340.044649377,954540.0011011756,0.37984,100000,0,353830,3691.189050470488,0,0.0,0,0.0,20297,211.09349245759356,0,0.0,25249,259.07070875670263,2088350,0,75023,0,0,0,0,0,51,0.5320369713534603,0,0.0,0,0.0,0,0.0,0.0726,0.1911331086773378,0.3198347107438016,0.02322,0.3247706422018349,0.6752293577981652,25.270412442403217,4.595979601330045,0.3269469576015611,0.2013482348767074,0.2268937378037963,0.244811069717935,11.168245739493331,5.493153280678335,24.54992349056286,12983.282304068343,63.248644668632274,13.171020479472588,20.826316830096854,14.295984837808913,14.955322521253922,0.5407131452900479,0.7541850220264317,0.6966901790558871,0.5949960906958561,0.1065217391304347,0.7016011644832606,0.9112426035502958,0.8455114822546973,0.7372013651877133,0.1325757575757575,0.4888576120103213,0.6875784190715182,0.6444281524926686,0.552738336713996,0.1003584229390681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024598876347623,0.0047920571399625,0.0072401310118945,0.0094004426126327,0.0113934342921028,0.0135329012301712,0.0155969845150774,0.0176771798114978,0.0197863038326387,0.0221954013583176,0.0243070493516071,0.0263724766125061,0.0285238692176486,0.0304374678332475,0.0323328968667195,0.0341355091923156,0.036231959029538,0.0381789352595525,0.0400805555843913,0.042084897908237,0.0564597691561792,0.0702484089080249,0.0840579102851515,0.097008578418505,0.1089044269407354,0.1239411926237299,0.1378254697993686,0.1503852898974331,0.1631549187586015,0.1751236961038404,0.1887277578156938,0.2022878891087396,0.2148662450833387,0.2261328496344941,0.2366251978195885,0.2481990904161733,0.2582983041020438,0.2683949119021934,0.2775900390093441,0.2864012640401195,0.2942645987300926,0.3022956647838239,0.3099584718590646,0.3170006712052929,0.3233460149992099,0.3289348740273033,0.3348907120936932,0.3397766487119736,0.3454807280652819,0.350035033910181,0.3511382475435688,0.3516789246067818,0.3530763591247462,0.3544182951701792,0.3545853477129044,0.3535319462119934,0.3544949247018955,0.3555858534421867,0.3563072923792584,0.3578836507738169,0.3588662845153797,0.3602286663765478,0.3618951824144507,0.3625447227191413,0.3638114961350446,0.365209447996868,0.3669005247547342,0.3677601632396798,0.3696959043768676,0.3737558722828251,0.3740266836664997,0.3752325272389051,0.3772530302078754,0.378345591022822,0.3816629129129129,0.3823319876513892,0.3865002311604253,0.3914744645799011,0.3851501668520578,0.388631090487239,0.0,2.4491397525392213,60.40256513585506,209.0534046705145,328.4343327763809,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95720,41731,393.25114918512327,7220,74.27914751358128,5599,58.0234015879649,2189,22.607605516088597,77.36002699221102,79.7307336139442,63.33690834044432,65.08797102756836,77.08913360806702,79.45704347153544,63.237847490816,64.99006782584307,0.2708933841440029,273.69014240875345,0.0990608496283229,97.90320172528766,76.9208,54.06714920342123,80360.21730045968,56484.69411138866,238.71371,147.63562025296366,248865.8692018387,153715.33666210162,265.23772,126.93115409650848,273895.43460091937,130229.81347305948,3243.29776,1461.2115670090702,3363151.6924362723,1501381.745726149,1358.23976,592.5805017742157,1407591.7467613874,607729.397066,2168.15132,904.6519311114022,2240818.031759298,922834.4973545136,0.38131,100000,0,349640,3652.737150020894,0,0.0,0,0.0,20068,209.1725867112411,0,0.0,24759,255.45340576681988,2092973,0,75087,0,0,0,0,0,48,0.4910154617634768,0,0.0,0,0.0,0,0.0,0.0722,0.1893472502688101,0.303185595567867,0.02189,0.3173431734317343,0.6826568265682657,25.198237218711448,4.599399646793088,0.3298803357742454,0.1948562243257724,0.235934988390784,0.239328451509198,11.056229619882563,5.416917318981411,23.342122007600288,13049.430427250458,63.09737512832298,12.791585735485992,20.947104335150787,14.642386178843662,14.716298878842538,0.5379532059296303,0.768102658111824,0.6886843530048727,0.5715367146101439,0.1097014925373134,0.7047075606276747,0.930635838150289,0.8577680525164114,0.7492163009404389,0.125,0.48224922563736,0.6926174496644295,0.6330935251798561,0.5149700598802395,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017471716077,0.0047643665926669,0.0068396537552134,0.0087669395964972,0.0111273851661987,0.0129933607592358,0.0151580020387359,0.0175039294535507,0.0198108867876309,0.0221237126067282,0.0241341836002378,0.026056424787483,0.0280842837016546,0.0303745056031641,0.0323562489037463,0.0342114513761088,0.0363203149280016,0.0380607394183463,0.0399604763638254,0.0418867806570598,0.0567582526603799,0.070656326205951,0.0834076389690224,0.0959382427799162,0.1081556919054547,0.1236666560950598,0.137489524658159,0.1512158782525408,0.1642068391037826,0.1751582108763273,0.1891434788697497,0.2016165682009998,0.2136957419523116,0.2252634340431113,0.2367651263553786,0.2480535158542933,0.2589307628801571,0.2683826423326474,0.2779717901038596,0.2869804190999656,0.2954734699542027,0.3032332725487445,0.3108910656823774,0.3178529503365995,0.3251573243919625,0.3308809937520796,0.3367882133513588,0.3433158617882041,0.349366695158909,0.3547841930841442,0.355915297416059,0.3573407202216066,0.357998023436397,0.3584569475026075,0.3587658953512612,0.3588118872643029,0.3591100687731753,0.3601569683436227,0.3603632880648582,0.3614748387788278,0.3624988275021105,0.3633089253908569,0.3650524464543684,0.3671845311277523,0.3688185491629786,0.3685791136761288,0.3708151070703605,0.3713553854911138,0.3735693090292497,0.377784008972921,0.3790122321346454,0.3784145688269952,0.3791838025941157,0.3802374569130601,0.380566037735849,0.3837734951225315,0.3838833461243284,0.3869132290184922,0.3899336283185841,0.3929811029695333,0.0,1.7809664554045368,62.37605790027439,209.44541698379723,320.108917345214,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95734,41312,388.0230639062402,7143,73.21327845906366,5568,57.398625357762135,2328,23.753316481083,77.33346816806463,79.69614781540216,63.32120940122799,65.07043465769085,77.04566803222636,79.41440113932393,63.21495970915699,64.97033785362278,0.2878001358382676,281.7466760782281,0.1062496920709961,100.0968040680732,77.484,54.51112120895323,80936.76227881422,56940.18970162453,238.1102,146.1548454756423,247989.7110744354,151936.73666162734,263.30572,125.81123964808285,270729.93920655147,127948.85823694443,3236.97688,1451.971737063692,3338471.5148223205,1474126.9131827264,1382.7605,599.4502958676877,1425023.8473269686,606886.4690275246,2294.55556,951.9859604794774,2344865.523220591,949968.8689905152,0.37823,100000,0,352200,3678.943739946101,0,0.0,0,0.0,20042,208.5779346940481,0,0.0,24526,251.91676938182883,2091455,0,75024,0,0,0,0,0,44,0.4596068272505066,0,0.0,0,0.0,0,0.0,0.07143,0.1888533432038706,0.3259134817303654,0.02328,0.3187250996015936,0.6812749003984063,25.26526398047631,4.682638122611685,0.334051724137931,0.184985632183908,0.2341954022988505,0.2467672413793103,11.057831548609316,5.487603456408991,24.88045648041838,12966.562040658897,62.74960794184948,12.021359642025391,21.108651937116797,14.591467068442093,15.028129294265216,0.5332255747126436,0.7466019417475728,0.6967741935483871,0.5651840490797546,0.1215429403202329,0.6924187725631769,0.909967845659164,0.8641975308641975,0.7021943573667712,0.1189591078066914,0.4805163758068372,0.6759388038942976,0.6375545851528385,0.5208121827411167,0.1221719457013574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682962662748,0.0042185535228978,0.0065464953413312,0.0087585604259383,0.0107809035617664,0.0129010579478459,0.0149043754842392,0.0171562123655365,0.0193471239932954,0.0214652022151024,0.0236306039387757,0.0257378984651711,0.0280023035313959,0.0303298695146191,0.0323762161716001,0.0343059733118339,0.0363562937497411,0.0384148429474208,0.0404445784510454,0.0425077599316709,0.0571974402605672,0.0718315313523753,0.0848217096564316,0.0981235669057786,0.1105497959226721,0.1264038408663099,0.1399255117090924,0.1525508520580314,0.1639020326201895,0.1749747967654061,0.1885052518179369,0.201679308367327,0.213952426012334,0.2252267034205143,0.2360454115421003,0.2470433203401842,0.2569323509711989,0.2675249552662083,0.2770659070015548,0.2860529027825489,0.2946871638269077,0.3021019756465593,0.3091423297202632,0.3165300349968838,0.3223103360334212,0.3284925972458306,0.3341508890918874,0.339517719666603,0.3447203761999145,0.349893635294584,0.350912696806573,0.3524744838225369,0.3537493652316199,0.3543266027405197,0.3545705132980705,0.3547781963558084,0.3546172549144246,0.3552805062957347,0.3564787814333253,0.3567098324783872,0.3579596749924766,0.3586253422754871,0.3600067243842985,0.3600853069929285,0.3606489989360673,0.3618915086908575,0.3620300214438885,0.3643893648635832,0.3649934557288903,0.3677895156468009,0.3692103698962096,0.3708495963214457,0.3744518589132507,0.3769088385006941,0.378046458492003,0.3855465440019368,0.3863141524105754,0.3958160729080364,0.4003978402955385,0.3923951391611133,0.0,2.9331127952470197,60.62353060385076,210.88800349781252,315.4087518160499,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95803,41659,391.0315960878052,7136,73.31711950565223,5502,56.90844754339635,2193,22.546266818366856,77.34149214859087,79.68203806174175,63.33904717832892,65.0728592074043,77.07398920504392,79.41375753544644,63.2407815942421,64.97675861848477,0.2675029435469582,268.28052629531385,0.0982655840868176,96.10058891954054,78.5125,55.24979819024546,81952.02655449204,57670.21720639799,238.87493,147.2641114711616,248834.32669123096,153212.07558549076,263.79768,125.97378986490963,272245.46204189846,129005.72036978247,3151.98692,1419.9400563326635,3262961.3268895545,1455203.6912185538,1327.39883,571.7651146180549,1372610.033088734,583949.7073612133,2156.89846,896.865872324981,2220377.295074267,908853.5092890352,0.38163,100000,0,356875,3725.092116113274,0,0.0,0,0.0,20158,209.8681669676315,0,0.0,24663,254.3866058474161,2088440,0,74875,0,0,0,0,0,41,0.4175234595993862,0,0.0,1,0.0104380864899846,0,0.0,0.07136,0.1869873961690643,0.3073150224215246,0.02193,0.3207396567779699,0.6792603432220301,25.365279585913186,4.523406365231672,0.3298800436205016,0.2077426390403489,0.2335514358415121,0.2288258814976372,11.112196571533406,5.577445907494622,23.39219363958272,13059.71682151786,62.18251015583857,13.407172289622128,20.7182331159424,14.222416953065949,13.83468779720811,0.5507088331515813,0.7681539807524059,0.7035812672176308,0.5712062256809338,0.1119936457505957,0.6967930029154519,0.8895184135977338,0.8571428571428571,0.7086330935251799,0.099601593625498,0.502179176755448,0.7139240506329114,0.6467924528301887,0.5332671300893744,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969032689405,0.0044402542501748,0.0065858237353493,0.0087489330569442,0.0110596733987892,0.0133135039879394,0.0155536063968668,0.0176658599597667,0.0198071436605892,0.0220768183167962,0.024095397266454,0.0264833336756279,0.0285737795972105,0.0304310202736113,0.0322447505546097,0.0344506806412601,0.0365829666062645,0.0385999854770277,0.0408782484907052,0.0427862043119332,0.0574892533700596,0.0711193826979778,0.0847244490552988,0.0974148802017654,0.1095806679383279,0.1251466562377786,0.1390060847626518,0.1512505848823854,0.1632995015955346,0.1750677913420006,0.1884802101161451,0.2016823076590407,0.2140257482753001,0.2262886992251959,0.2367590627714433,0.2474841966588803,0.2578056202695322,0.2683726518375459,0.2783528505741919,0.2870699610120851,0.2951643073228183,0.3029892573563755,0.3105902100547301,0.3177252319664771,0.3245906812471933,0.3309977958108091,0.3373094764744864,0.3436547062411059,0.3489662128088754,0.3545782624729993,0.3555367163215049,0.3567557902844254,0.3584836527621195,0.3585153911773636,0.3591978816458897,0.3582245110661516,0.3577400878960478,0.3596291905420536,0.3607563471791267,0.3621323199913961,0.3623463876394979,0.3640571303708707,0.364971037388099,0.3669964028776978,0.368494975178593,0.3698813523729525,0.3697726028186875,0.3728494966229132,0.3748266666666666,0.3768313731786617,0.3783746301775147,0.3804295171968351,0.3790569895221058,0.3777433113609926,0.3789211935730681,0.3819670157698326,0.3855932203389831,0.3867334167709637,0.3905762134544422,0.3828460038986355,0.0,2.032163168521435,60.70547775954508,209.54463126493064,313.14027489641893,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95696,41229,386.714178231065,7168,73.39909714094634,5601,57.881207155993984,2297,23.606002340745697,77.3419109081298,79.71313117925273,63.33255108723839,65.08207444308103,77.06184416670966,79.43063032010659,63.22845872497198,64.97922040491781,0.2800667414201427,282.50085914613976,0.1040923622664067,102.85403816321548,77.4972,54.50345993325676,80982.69520147133,56954.79427902604,237.18562,146.13371693389232,247221.66025748203,152074.62896452547,266.64382,127.6489647130188,274077.3595552584,129894.29866310448,3232.38208,1468.335750387036,3343755.433873934,1500369.7859754188,1375.70819,605.0709518173219,1422544.3801203812,617247.1491152416,2269.59004,953.487161120902,2335403.151646882,968331.8021375836,0.37739,100000,0,352260,3681.031600066879,0,0.0,0,0.0,19990,208.23231901019895,0,0.0,24907,255.7578164186591,2090811,0,75006,0,0,0,0,0,34,0.3552917572312322,0,0.0,1,0.0104497575656244,0,0.0,0.07168,0.1899361403322822,0.3204520089285714,0.02297,0.3205653150178312,0.6794346849821689,25.378765588804164,4.6210317440122,0.3251205141938939,0.1988930548116407,0.2346009641135511,0.2413854668809141,11.182827892918064,5.607402238920935,24.469455204331837,12936.68138896374,63.26937917460769,13.239984528828552,20.49699080643497,14.603013216763284,14.929390622580897,0.5393679700053562,0.7648114901256733,0.6908292147171884,0.5791476407914764,0.1109467455621301,0.6835443037974683,0.9135135135135136,0.8574712643678161,0.7326732673267327,0.1242038216560509,0.4903086862885857,0.6908602150537635,0.6385281385281385,0.533135509396637,0.1069364161849711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0046620046620046,0.0068269425847027,0.0090294141545461,0.0112762842152356,0.0136637615052537,0.015933208966635,0.0180758553115048,0.0203702000224859,0.0225062943933842,0.0246440250540753,0.0266870661683164,0.028742428760939,0.0306711174300962,0.0328665627870019,0.0348057103280027,0.0370028997514498,0.0391859777295793,0.0412997140629061,0.0431434258381183,0.0570136502731099,0.0711048306903229,0.0846989949010638,0.0976587151331566,0.1098289065631526,0.1250449687863718,0.1371535882527691,0.1494048506270894,0.1611731395907901,0.1719672095967724,0.1852546079350203,0.1979153136771009,0.2105291788154401,0.2218017564774206,0.2334517772081715,0.2446213639534497,0.2551003335155213,0.2651622478580584,0.2754297384693935,0.2840966338447446,0.2926682483652566,0.300031608152562,0.3082178804026051,0.3156083641072371,0.3220915954433272,0.328207343412527,0.3338934169278997,0.3396942675159236,0.3448320564176357,0.3497802821362119,0.351557130728907,0.3521316709327609,0.3528484131677508,0.3544985772680658,0.3548981441583335,0.3547477903895348,0.3552923291315639,0.3560369481608099,0.3568272886057742,0.358185694068753,0.3590365523465704,0.3598103964617917,0.3610150914762667,0.3620720680192541,0.3629020556227327,0.3648400629260618,0.3664925972684494,0.3697971069540721,0.3722899248972651,0.3738816449348044,0.3750172279138145,0.3768045939998927,0.3776845850806964,0.3805118717237126,0.3810205054840248,0.3812552502100084,0.3813939112965538,0.3872498452651124,0.3907787461343829,0.3940563489000386,0.0,2.5564094823826324,62.40810215781413,212.792013356155,313.99565923128506,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95704,41373,388.3327760595169,7188,73.77957034188749,5590,57.78232884727912,2219,22.789016133076988,77.33810060160408,79.71878257603771,63.31256206328344,65.0740735399991,77.06568912032812,79.44826323985043,63.21240646622287,64.97737314883491,0.2724114812759666,270.5193361872773,0.1001555970605636,96.70039116419105,77.15884,54.2817227794972,80622.37733010114,56718.34278556507,240.29093,148.65020852410908,250377.91523865247,154628.59353508265,268.11137,128.67059392008375,275833.3716459082,131261.94976861076,3236.23488,1450.3894649473857,3348598.5956699825,1482873.6383060114,1359.95483,588.3278506209281,1406454.0458079078,600597.7669855725,2180.3034,903.9708043022828,2241436.7215581373,913259.378936762,0.37951,100000,0,350722,3664.653515004598,0,0.0,0,0.0,20261,211.0465602273677,0,0.0,25054,257.49184987043384,2087504,0,74923,0,0,0,0,0,52,0.5328930870183065,0,0.0,1,0.0104488840591824,0,0.0,0.07188,0.1894021237912044,0.308708959376739,0.02219,0.3251525603608384,0.6748474396391616,25.35600431154345,4.529926271906048,0.3391771019677996,0.1976744186046511,0.2305903398926654,0.2325581395348837,11.162570913863265,5.689543979291441,23.457786888205604,12963.30514993332,62.84354732384334,12.975879512906715,21.540573078131303,14.292879506166653,14.034215226638658,0.5520572450805009,0.7628959276018099,0.7146624472573839,0.5880527540729248,0.1,0.7269399707174231,0.9246376811594202,0.8823529411764706,0.7278911564625851,0.1593625498007968,0.4955018939393939,0.6894736842105263,0.6584507042253521,0.5467336683417086,0.0857959961868446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0043619395414891,0.0067618332081141,0.0088724922251356,0.0108871501103977,0.0132614917650414,0.015819105317912,0.0180170978581715,0.0199212558163317,0.0222904827727435,0.0243234651708897,0.0265641204678242,0.0285837668880709,0.0309555438845809,0.0328770232212674,0.0352595899470899,0.037376791186946,0.0392584062166059,0.0411069987940283,0.0430334913276733,0.0576157902981567,0.0715721374285534,0.0847542996253895,0.0980930442922806,0.1099568651852476,0.1253729132725387,0.1390156419126854,0.1518236515627496,0.1635316247354808,0.1741038378592963,0.1875505080435743,0.2012818292049194,0.2137344755145802,0.2254781809427933,0.2360690740598069,0.2467415879771246,0.2569804324517512,0.2667582201109897,0.2760841416596624,0.2844693147417668,0.2930702933135629,0.3005903574942604,0.3085008057635794,0.3158728064388442,0.3218129415913706,0.3281840408979773,0.3339311244325165,0.3389534364677524,0.3445578716614997,0.3507272415023052,0.3512166204090431,0.3519156085603327,0.352133523167792,0.3534132481166042,0.3543699428843408,0.3542734386987878,0.3541673271407285,0.3549336050486458,0.3569191806841322,0.3575133240333369,0.3586631849861922,0.3596055211200665,0.3595486731241989,0.3599856257299434,0.3608677815584353,0.3631411592994162,0.3637167132348748,0.3666761211433614,0.3669312355130997,0.3719306596850331,0.3757317239188637,0.375112427913867,0.3789711134782881,0.3789999243513125,0.3780978210043954,0.3788129581461338,0.3798848833686761,0.3744995996797438,0.3675236806495264,0.3670694864048338,0.0,2.4028271567138737,60.14765259902374,211.3186543367549,320.80758762856624,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95638,41525,390.0437064765051,7197,73.91413454902863,5627,58.14634350362826,2324,23.82944018068132,77.27782633283482,79.68835356421408,63.2892740309558,65.07198778218914,76.98841248729981,79.40066186476389,63.181955290347375,64.96857337233995,0.2894138455350088,287.6916994501926,0.1073187406084201,103.4144098491936,76.28984,53.67864060018838,79769.38037181873,56126.89579475563,237.34114,145.93320493668415,247497.7728517953,151920.76887501217,262.6574,125.20211366115836,270102.3651686568,127439.47029783984,3238.23872,1459.7895442787096,3347945.335536084,1488382.00744339,1374.66438,600.5461208793807,1417032.2361404465,607606.8412967443,2294.63778,960.960891396693,2354938.476337857,966889.8595435156,0.38085,100000,0,346772,3625.88092599176,0,0.0,0,0.0,19986,208.25404128066248,0,0.0,24574,252.52514690813277,2094922,0,75197,0,0,0,0,0,45,0.4600681737384721,0,0.0,0,0.0,0,0.0,0.07197,0.188972036234738,0.322912324579686,0.02324,0.3161102278749337,0.6838897721250663,25.314552594834225,4.495344932419153,0.3312599964457082,0.2033054913808423,0.2278301048516083,0.2376044073218411,11.078109822171111,5.604282836264627,24.785707138917267,13059.83253298744,63.52230047532939,13.33162946822406,21.144765691939018,14.240020511370778,14.805884803795536,0.5343877732361827,0.7534965034965035,0.6856223175965666,0.5600624024960998,0.1114435302916978,0.6787527193618564,0.8991097922848664,0.8458244111349036,0.6813559322033899,0.1321428571428571,0.4875235404896422,0.6926889714993805,0.6320687186828919,0.5238095238095238,0.1059602649006622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024420890501185,0.0047359240629563,0.0071061661218605,0.009339715641737,0.0114044458009054,0.0134982324955939,0.0158898521162672,0.0181090218268356,0.0205396779934944,0.0226078405261163,0.0250358974358974,0.0270350778080221,0.0291094304676647,0.0309707607160893,0.0327999174065661,0.0351247362541889,0.0371705992684013,0.0393333679455895,0.0412395808401927,0.0432407069495855,0.0576131257184658,0.0717741935483871,0.0856836956407645,0.0984909075601953,0.1106268467707893,0.1261089584789006,0.13935209771641,0.1520986286189223,0.1641725587514841,0.1752875106037991,0.1885751239491269,0.2019646280311481,0.2141122930026456,0.2254088490925411,0.236722423494951,0.2478495100430097,0.2579884961188362,0.2674688217549862,0.2764981666685586,0.2861101251474174,0.2941271732466541,0.3026649671995042,0.3105872328339132,0.3180199302082959,0.3241015416038516,0.330823819808701,0.3366169116817686,0.3430897831239328,0.3483802305056588,0.3537816903270151,0.3547903585173182,0.3552875183066677,0.3563968298896122,0.3576736625156028,0.3580217417273922,0.3579741379310345,0.3578082453542254,0.3590285808689906,0.360622206943967,0.3610078479966956,0.3619201929236218,0.3634555327909614,0.3648472075869336,0.3662038285252089,0.3667641867549989,0.3675372645587195,0.3691238549234701,0.3695790410784688,0.3712523617696339,0.3735134045555331,0.3727982987379224,0.3754708858034657,0.377097288676236,0.3782150604276417,0.3802978235967926,0.379949146385761,0.3837846298325246,0.3851774530271398,0.3918112027295991,0.398909232567199,0.0,2.740147840190554,60.42879525784701,215.2426702984364,322.1124434287106,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95812,41634,391.44366050181605,7283,74.61487078862773,5699,58.83396651776396,2293,23.535674028305436,77.39792083527668,79.70237880000211,63.37134666233783,65.07187368657058,77.11060369205475,79.41606888585065,63.26529152000786,64.96919768513351,0.2873171432219266,286.3099141514596,0.1060551423299642,102.67600143707512,76.55296,53.89423390615583,79899.13580762327,56249.98320268424,238.2106,146.76832741490972,247969.61758443617,152532.33802193883,270.84181,129.50105672314217,278806.443869244,132181.20376980706,3251.68772,1480.679133639729,3358738.696614203,1510449.5250300462,1417.30141,624.4631328745827,1461825.3767795265,634527.6217332612,2251.40412,946.710346122633,2313304.3251367263,956400.9962553806,0.3822,100000,0,347968,3631.778900346512,0,0.0,0,0.0,20049,208.55425207698408,0,0.0,25377,261.00070972320793,2096571,0,75211,0,0,0,0,0,49,0.5009810879639294,0,0.0,0,0.0,0,0.0,0.07283,0.1905546834118262,0.3148427845667993,0.02293,0.3065569487983281,0.6934430512016719,25.30030925332513,4.561993142830784,0.3151430075451834,0.2153009299877171,0.2381119494648184,0.2314441130022811,11.271688752544962,5.711597876987055,24.543162837774823,13065.904676649756,64.59447219289756,14.262902176461395,20.41257771372056,15.24093585549855,14.67805644721705,0.5667660993156695,0.7791361043194784,0.7193763919821826,0.6072218128224024,0.1197877179681577,0.7032742155525239,0.912,0.8846153846153846,0.7151702786377709,0.1466666666666666,0.5194897236002834,0.7206572769953051,0.661144578313253,0.5735009671179884,0.1118743866535819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021462703490726,0.0046003100649515,0.0068867589634362,0.0090574007696759,0.0113044892648015,0.0135250656408377,0.0159870391881151,0.0180158122927824,0.0198929235547745,0.0221194573468928,0.0240354076593652,0.0259451141318286,0.0279447269738531,0.0299250843829752,0.0319318896298663,0.0341555585383733,0.0360132010469795,0.0378524046434494,0.0398965721347054,0.0421922484492735,0.0572483648540104,0.0705776531988997,0.0847777533108937,0.0975312276569794,0.109990196388476,0.1264669189943543,0.1406301366957591,0.1528234605354196,0.1645619658119658,0.1758983159927062,0.1903223374581327,0.2027928912156973,0.215157807760467,0.2264014782903441,0.2370661211561304,0.2487930194445674,0.2596169932745178,0.2708890938125548,0.2801800882296238,0.290152772214911,0.2978585634336987,0.3048712075171801,0.3116082625464354,0.3182863163944633,0.3239158124583005,0.3305268340718857,0.3364038596140385,0.3421413864104324,0.3466666666666667,0.3518704030791131,0.3533215044223997,0.3546911069583379,0.3555965317268172,0.3565715770630017,0.3576657509837404,0.3577229555083125,0.3573778790179701,0.3584738388796769,0.3591900950817429,0.3608651317554875,0.3614193185018304,0.3618593044442684,0.362774765687387,0.3633379056014031,0.3650920542635659,0.3670008924352984,0.3685437899464501,0.3708923174805154,0.3728345201402912,0.376165139816778,0.3779538440278225,0.3806066473055824,0.3832354443309499,0.3857605677260105,0.3875776397515528,0.3893432764012509,0.3897937024972855,0.3935562805872757,0.3998348926802421,0.4006092916984006,0.0,2.401096997395661,64.6934644182202,216.578486989714,318.1499440786287,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95550,41522,390.8006279434851,7232,74.63108320251177,5631,58.31501831501832,2322,23.92464678178964,77.19945181010942,79.67205537506358,63.224607941291474,65.05427532587564,76.91168361394256,79.38347002876361,63.1196121273007,64.95195919309056,0.2877681961668656,288.5853462999677,0.1049958139907758,102.31613278507724,76.92872,54.10948374555794,80511.48090005234,56629.49633234739,238.51692,146.8603131414095,249014.610151753,153089.32824846625,263.76952,126.07689182074472,272276.70329670334,129039.75766273684,3258.1062,1467.3128544260649,3376036.6300366297,1501841.6058880838,1391.7974,603.6812490983,1443458.137100994,618637.4663509154,2292.58744,956.7802513341696,2364472.715855573,969991.7133539158,0.38034,100000,0,349676,3659.6127681841967,0,0.0,0,0.0,20072,209.45054945054943,0,0.0,24689,254.72527472527477,2086000,0,74852,0,0,0,0,0,41,0.4186289900575615,0,0.0,0,0.0,0,0.0,0.07232,0.1901456591470789,0.3210730088495575,0.02322,0.3108609271523179,0.6891390728476822,25.29746361562932,4.661520612160207,0.3290712129284319,0.1946368318238323,0.2315752086663114,0.2447167465814242,11.177336701295957,5.621580923746016,25.01129199830308,13071.73555932403,63.69885055301216,12.849316733608946,20.80760557919008,14.675304287054304,15.366623953158822,0.5434203516249334,0.7691605839416058,0.696708041014571,0.575920245398773,0.1269956458635704,0.7042971595047341,0.9212827988338192,0.8891509433962265,0.7348242811501597,0.1501706484641638,0.49154532644434,0.699867197875166,0.6396081175647306,0.5257315842583249,0.12073732718894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021794001074494,0.0043322984517359,0.0066617921845803,0.0089271189197982,0.0110864519281671,0.01331321739485,0.0152982599377455,0.0176680972818311,0.0198833401555464,0.0220334293239324,0.0245439707648562,0.0269091956032204,0.0289283433914852,0.0309460198260833,0.0330271057880106,0.0351416534691384,0.0370024682139671,0.0390035542807258,0.0412265900047913,0.0428963659710405,0.0570753088615275,0.0713207072295979,0.0847288361874126,0.0980706209628981,0.110441703396011,0.1264961251815493,0.13934984256659,0.1523866437588705,0.1645366214232916,0.1756134804395982,0.1891900647948164,0.203023265908499,0.215078862976941,0.2257601017856359,0.236315278329581,0.2476867536795334,0.2578533299014067,0.2686348196047894,0.2785187545520757,0.2872534717835031,0.2958507812409377,0.3041876832844575,0.3117205207010715,0.3189556775720585,0.3256493981188167,0.3315403543915619,0.3373306181964451,0.3423509726533063,0.3478170397055572,0.3535882313961964,0.3547859027261043,0.3558712958867757,0.3567063682915098,0.3579422566082652,0.3582743058668818,0.3580903082682442,0.3586146496815287,0.359121409446997,0.3598237036016803,0.3613471092231262,0.3621941534621639,0.3642926946012245,0.3662141843671248,0.3668413207461945,0.3666220979700985,0.3671757537390203,0.3681719809551291,0.3699510209274219,0.3720054027155755,0.374519692603266,0.3754512635379061,0.3757068174543903,0.3752290679304897,0.377959996934631,0.3811899830540388,0.3831006086645184,0.385284689360403,0.3926638604930847,0.3972640218878249,0.4046065259117082,0.0,2.3946320126658995,60.53694430811529,214.8837974765869,326.31436838897616,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95676,41670,390.3695806680881,7212,74.02065303733434,5649,58.39499979096116,2241,23.0569839876249,77.33990302576841,79.73229622684723,63.32261558699434,65.08983487409716,77.06138741908244,79.4532679891816,63.22019571542575,64.99027354531547,0.2785156066859713,279.0282376656279,0.1024198715685855,99.56132878168944,76.93554,54.17906692482398,80412.57995735608,56627.646353133474,240.03906,147.73340256979165,250186.7971069025,153710.1324085015,270.81527,129.53458868714236,279244.94126008614,132438.7949425482,3245.91608,1460.6275096973484,3356851.122538568,1490936.8867658635,1372.73863,603.0315281772457,1416187.1942806975,611783.3121698906,2217.60386,920.3214989109704,2282468.414231364,929893.311641088,0.38173,100000,0,349707,3655.1172707889127,0,0.0,0,0.0,20166,210.05267778753293,0,0.0,25254,260.1070278857812,2092020,0,75062,0,0,0,0,0,56,0.585308750365818,0,0.0,0,0.0,0,0.0,0.07212,0.1889293479684594,0.3107321131447587,0.02241,0.3181220410310363,0.6818779589689637,25.239883361188244,4.701943291418671,0.3319171534784917,0.1956098424499911,0.2393343954682244,0.2331386086032926,11.042759006702656,5.311707844503316,23.85836835089573,13116.43053988762,63.53557529900066,13.02916332905715,21.09214745543596,14.99717507497466,14.417089439532912,0.548415648787396,0.7846153846153846,0.6778666666666666,0.5865384615384616,0.1268033409263477,0.720203488372093,0.9213483146067416,0.8446808510638298,0.7491408934707904,0.1853281853281853,0.4930961853498712,0.719626168224299,0.6220640569395017,0.5419415645617343,0.1124763705103969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334447483034,0.0050783031777406,0.0074682144270479,0.0099540893024011,0.0122326957688905,0.0146073820721105,0.0167774289558445,0.0192291989875071,0.0215489041543997,0.0237671190812503,0.0257624686042339,0.0276437619331129,0.0297184460029204,0.0318081621721843,0.0339563830775423,0.0361060848885901,0.0382830145672309,0.0401926590267397,0.0423099330032041,0.0442542455928192,0.0590982219343515,0.0733528075300227,0.0864040794057162,0.098819593485671,0.110520319027725,0.1256242065171392,0.1390103127785086,0.15190479738576,0.1634375066754961,0.1752691169532959,0.1892049064690869,0.2026705332409972,0.2152877463134542,0.2265054445270477,0.237720524305823,0.2493991249930774,0.259696063554405,0.2694324421640112,0.2786634140806717,0.2873605351783546,0.2957238059977786,0.3038947368421053,0.3113380590038223,0.3183533612086213,0.3253648350047349,0.3316907307938698,0.3375965160369921,0.3433097919450277,0.3488971826970427,0.3539030511161009,0.3548113093071229,0.355830164765526,0.3566762145306261,0.3570756151606876,0.3574566956107297,0.3578908633722267,0.3578313253012048,0.3592189890283421,0.3598269848868221,0.3608778012080489,0.3619699812382739,0.3633788869082986,0.3634531407457171,0.3646310775590905,0.3677732910994511,0.3683231116003564,0.3694318637848994,0.3713642988403777,0.3736112093977779,0.3755486393743516,0.3788620863276422,0.3812196034418256,0.3803218449062341,0.3821861106852675,0.3841147061597962,0.3847253663767425,0.3934096534653465,0.3972772277227723,0.3965614430665163,0.4001560062402496,0.0,2.4088611450697046,60.42115197924307,215.75187007839529,323.2045123033909,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95793,41264,387.9824204273799,7195,73.99288048187236,5591,57.87479252137421,2320,23.884835008821103,77.331780499572,79.67300401245487,63.32970022966426,65.06296516146675,77.046666900321,79.38520319156255,63.22604541845958,64.96051714107716,0.2851135992510052,287.80082089231485,0.1036548112046844,102.44802038958768,76.70432,53.94247144863032,80072.99071957242,56311.49608909871,238.28039,146.90355498735858,248251.79292850208,152861.90534523255,264.19368,126.77436775520744,272665.22606035933,129936.48583911256,3224.55948,1447.6371871798424,3340315.805956594,1485355.3257334495,1352.15821,588.1654619312059,1401277.859551324,603732.3728573129,2282.68992,947.0576641949276,2353060.2444855054,963385.286144166,0.37769,100000,0,348656,3639.681396344201,0,0.0,0,0.0,20060,208.9087929180629,0,0.0,24587,253.5780276220601,2093672,0,75228,0,0,0,0,0,50,0.5219588070109507,0,0.0,0,0.0,0,0.0,0.07195,0.190500145622071,0.3224461431549687,0.0232,0.3188328912466843,0.6811671087533157,25.193104138562106,4.646958259865097,0.3298157753532463,0.1960293328563763,0.233947415489179,0.2402074763011983,10.939947113412972,5.393937682722057,24.949394160114508,12907.235304463587,63.03819927269124,12.797573394584424,20.83479797964601,14.69797333738787,14.70785456107293,0.5362189232695403,0.7545620437956204,0.6876355748373102,0.5779816513761468,0.1094564408041697,0.7084249084249085,0.8720238095238095,0.8638297872340426,0.7491749174917491,0.16015625,0.4805963085660198,0.7026315789473684,0.6273653566229985,0.5263681592039801,0.0975160993560257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777665231704,0.0043388345971371,0.0067784914812221,0.0089296598805315,0.0112890922959572,0.0134522754814203,0.0157725168736363,0.0177732859651272,0.0199648340864018,0.0219378614935762,0.0241624636076598,0.026110438014662,0.0279165895490159,0.0299955707089955,0.0317976345284537,0.0338767535380893,0.0359365776364709,0.0382289797653989,0.0399538634190947,0.0419920451469148,0.056191499796521,0.0704976675104073,0.0839028890100213,0.0967657195696032,0.108503935348597,0.123746526200112,0.1371416459117164,0.1499920250943697,0.162366073334187,0.1736624456300486,0.1874091853318839,0.2003763749040135,0.2125008155542506,0.2238481140019904,0.2345464349778252,0.2457485348370871,0.2559525137794836,0.2658868518726802,0.2745849587226708,0.2834915219307786,0.2915804202273437,0.2994388590133271,0.3072608510436881,0.3140425531914894,0.3201132456044423,0.3259560819146311,0.3323140547653361,0.338872592781533,0.3444018952424222,0.3497606010105018,0.3505139342272101,0.3511897380785075,0.351963980748331,0.3523068226290385,0.3534252702199031,0.3538783293350556,0.3535747239810366,0.3546247876078457,0.3555486830575743,0.3572735097912631,0.3585623598997871,0.3593368410602601,0.3604977327849836,0.3615206284183754,0.3630078835657974,0.3644537925594847,0.3664731911959082,0.3696175278622087,0.3703651437643323,0.3740348069613923,0.3768675584976785,0.3760954890047852,0.3756803483383492,0.3765351046574496,0.37890625,0.3787969744267019,0.3813150940463236,0.3848664083214358,0.3896935933147632,0.3986566574476491,0.0,1.92628758258974,60.40932561154054,217.719722885414,315.6809235914416,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95700,41649,390.06269592476485,7311,75.45454545454545,5667,58.76698014629049,2298,23.71995820271682,77.34192318165195,79.71675776881447,63.32298576779221,65.07464269797964,77.06371704363929,79.4350218079657,63.22266412707413,64.97480571301112,0.2782061380126635,281.7359608487777,0.1003216407180715,99.836984968519,77.16082,54.26818364846875,80627.81609195402,56706.56598586076,238.20621,146.4678595595622,248449.3103448276,152590.36851504803,265.24935,126.4182233870281,274008.46394984325,129698.07477488648,3250.51192,1457.9351739163224,3371578.1818181816,1498534.1789934535,1368.18867,591.7239116878488,1418503.6468129572,607212.1541162445,2263.24372,933.5560583663532,2337544.5350052244,953201.4680685722,0.38261,100000,0,350731,3664.900731452456,0,0.0,0,0.0,20065,209.19540229885055,0,0.0,24834,256.3531870428422,2090754,0,75009,0,0,0,0,0,41,0.4284221525600836,0,0.0,1,0.0104493207941483,0,0.0,0.07311,0.191082303128512,0.3143208863356586,0.02298,0.3159126365054602,0.6840873634945398,25.70927435376145,4.502239594053477,0.3259220045879654,0.2179283571554614,0.2218104817363684,0.2343391565202047,11.012524347423028,5.471093707217926,24.36403781735376,13118.496456034114,63.59413017291884,14.308721628592268,20.746648443618103,14.002785085421747,14.535975015286716,0.540850538203635,0.7449392712550608,0.6832701678397402,0.5767700875099443,0.1189759036144578,0.7037037037037037,0.925207756232687,0.8636363636363636,0.7397769516728625,0.1321428571428571,0.4899235580264072,0.6704805491990846,0.6268656716417911,0.5323886639676113,0.1154580152671755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186820975466,0.0044698513090278,0.0070097487243474,0.0094460357121092,0.0118169892101329,0.0144163222088737,0.0165772893175376,0.0188496216801282,0.020962002535891,0.0232017611222034,0.0254180807759743,0.0272226900248505,0.0293542879476683,0.0314357838339086,0.0336922076447454,0.0358413302448709,0.0380153304329811,0.0401478037033961,0.0423863648180693,0.0442434536152299,0.0597679058253339,0.0735563583058478,0.0862423644492957,0.0987594566441145,0.1113338538479394,0.1266428223741296,0.1403303889926957,0.1530620939397167,0.1643561816607702,0.1760810535240896,0.1900516391940404,0.2029953867146044,0.2149721910815547,0.2268325509634638,0.237995135319561,0.2491081518246881,0.2592406532926979,0.2687635794616623,0.2779536403553558,0.2872754765395894,0.2961355508489288,0.3032512522821965,0.3108200914107087,0.3178094678388524,0.3242612469155311,0.3314508372586253,0.3380486399117916,0.343601171526805,0.3498488563681418,0.3544834333765237,0.3553217922056877,0.3559387555052394,0.3573477259561722,0.3580609674897953,0.3591919852547713,0.3591158527238726,0.3592937745657411,0.3608362828216314,0.3614682988718581,0.3618563528001002,0.3626914763650032,0.363809675113194,0.3650195715307883,0.3653850480325766,0.3659644375724777,0.3680106753185588,0.3696721780422221,0.3706055150194257,0.3747535905378766,0.377794604072849,0.3773791592496234,0.3785916093608401,0.3779217479674797,0.3789080372121397,0.375787790424231,0.3766340831468613,0.3784806295399516,0.3840594258181088,0.3874862788144895,0.3888679954870252,0.0,1.6591463033082103,60.11370939857958,216.35148698738047,328.15783212154605,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95734,41416,388.973614389872,7201,73.95491674849062,5608,57.95224267240479,2254,23.137025508178915,77.32392886815877,79.6857975293023,63.31606620966248,65.06427339560138,77.05286415660402,79.41626103269999,63.21781091593918,64.96913956046997,0.2710647115547573,269.5364966023135,0.0982552937232981,95.1338351314064,75.38454,53.06356325675779,78743.74830258843,55428.12716146592,237.93329,146.78902493809213,247884.607349531,152679.61948686276,266.48389,127.42966812094612,274338.0094846136,130099.84403955092,3233.85452,1451.6811370126811,3343936.992082228,1482414.386445563,1429.31259,615.4662689182708,1476965.216119665,626853.1127063223,2229.16502,913.5440526999228,2290509.7248626403,922949.439160643,0.3797,100000,0,342657,3579.261286481292,0,0.0,0,0.0,20029,208.54659786491737,0,0.0,24906,256.1054588756346,2098525,0,75346,0,0,0,0,0,43,0.438715607830029,0,0.0,0,0.0,0,0.0,0.07201,0.1896497234658941,0.3130120816553256,0.02254,0.3132769108701402,0.6867230891298598,25.25963857379014,4.553650465328494,0.3241797432239657,0.2111269614835948,0.220756062767475,0.2439372325249643,11.275838958149969,5.718966855224153,23.76466282410327,13029.909804449777,63.21114914095271,13.990911110609575,20.542022202341112,13.769798830373691,14.908416997628343,0.5483238231098431,0.7787162162162162,0.6914191419141914,0.574313408723748,0.1352339181286549,0.7235294117647059,0.9305555555555556,0.8715203426124197,0.7195571955719557,0.1793893129770992,0.4922316384180791,0.712378640776699,0.6291635825314582,0.5336091003102379,0.1247739602169981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021372066405339,0.0042279654057123,0.0064038808939046,0.00885000711252,0.0112198396875127,0.0136150712830957,0.0159451909548763,0.0182510437188032,0.0202128638468852,0.0222076605678362,0.0246780675853018,0.0267872727086049,0.0288686926841304,0.031045280375757,0.033309943451521,0.0352683370544943,0.037236136142357,0.0390775011157586,0.0408464618104299,0.0427979080282541,0.0578065459101111,0.0713179754357332,0.0844544644261521,0.0970031545741324,0.109508293526515,0.1243428498894612,0.1377791925301077,0.1513373653051663,0.1630917791830456,0.1743465488775007,0.1879985789490682,0.201901136572547,0.2144130628573913,0.2248715425822674,0.2357812087622063,0.2470960812322138,0.2583430962343096,0.2687556255625563,0.2780029288560433,0.2864169504351116,0.295014717129812,0.3027220848615521,0.3098010386777016,0.3160699497101432,0.322890803758337,0.3294743467904175,0.3360956834622569,0.3416875948140688,0.3471045426825312,0.3528314862327082,0.3543916000863744,0.3549427822969805,0.355563087873909,0.3568209156389038,0.3576716266738162,0.3576871770496327,0.3580018061694947,0.3586992243985802,0.3593338126048406,0.3596142836696722,0.3607625845229151,0.3615029062270626,0.3627994955863808,0.363968937965706,0.3650103819595345,0.3674378389708387,0.3674164377289377,0.3689649706768109,0.3709631627510824,0.3737588084561178,0.3775889781859931,0.3793121891212494,0.3797540567951318,0.3843146274149034,0.3888677087304613,0.3911580970687169,0.3892032420859458,0.3925364198762722,0.3921778730243772,0.3917173252279635,0.0,2.401910192301068,59.93841176962529,213.47467325655165,323.96326747761736,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95790,41746,392.52531579496815,7379,75.91606639523958,5723,59.11890594007725,2335,23.937780561645265,77.4066300966336,79.74452592455675,63.35719594835807,65.0871738306113,77.11765975626045,79.45757483949991,63.25128401571276,64.98534648128823,0.2889703403731545,286.95108505684175,0.1059119326453128,101.82734932307368,77.1364,54.21231593899152,80526.56853533772,56594.96392002455,238.97634,146.79799932095918,248839.81626474575,152610.20912512703,264.99943,126.73427501188358,273065.278212757,129525.41525128607,3298.96812,1479.396525574841,3411106.71260048,1511564.3862353477,1411.22578,606.1573865971607,1458676.0830984444,618227.4153700443,2301.67914,954.308595540131,2363259.7348366217,962037.885318054,0.38436,100000,0,350620,3660.2985697880777,0,0.0,0,0.0,20092,209.0719281762188,0,0.0,24758,254.79695166510072,2094548,0,75234,0,0,0,0,0,54,0.563733166301284,0,0.0,1,0.0104395030796534,0,0.0,0.07379,0.1919814756998647,0.316438541807833,0.02335,0.3060804730685178,0.6939195269314822,25.57878053978007,4.5713040216241945,0.3262275030578368,0.2081076358553206,0.2290756596190809,0.2365892014677616,10.970515468131865,5.456996745234976,24.73114148676208,13152.306627962207,64.12325345886818,13.662659439559548,21.044524675622664,14.60767349601038,14.808395847675571,0.5411497466363795,0.760705289672544,0.6898768077129084,0.5736079328756675,0.1115214180206794,0.7005813953488372,0.9131652661064426,0.8511111111111112,0.7109634551495017,0.1529850746268656,0.4906832298136646,0.6954436450839329,0.6386732533521524,0.5326732673267327,0.1012891344383057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019859363284495,0.0042891038510677,0.0068397925736495,0.0088800382024526,0.0112081854334272,0.0132176534082808,0.0157113435696662,0.0178328995049252,0.0200130831186884,0.0223197838634409,0.0242790087523315,0.026555573797406,0.0285411827581245,0.0306574152237023,0.0327189510143493,0.0347580053902789,0.0365607639068497,0.0385636092220932,0.0406428890528087,0.0424561695748136,0.0572940034850113,0.0714487403394651,0.0849763634267266,0.0983205112035986,0.1108652589876512,0.1262720730431474,0.1407462370150519,0.154020373008953,0.1657881258269666,0.1772928851468603,0.1906370708298813,0.2042689849806987,0.2167199148029819,0.228188579104282,0.2395526651140308,0.2503374565732115,0.260550499643112,0.270860971825602,0.280177840284,0.2893923436212107,0.2972785417702779,0.3055458137523088,0.3133920329475254,0.3196582835096632,0.3261522011203052,0.3328976733289767,0.3384943003883252,0.3452121767694129,0.3509042587670966,0.3563168259254853,0.3573028855237941,0.3582869272757347,0.3589218648518905,0.3597370250231696,0.3610301118781243,0.360396829047641,0.3602014315576107,0.3614752350171443,0.3619273247886556,0.3633725587936836,0.3648506875491775,0.3665685674218333,0.3692356020942408,0.3692734430923407,0.369955534190602,0.3706056976199156,0.3714245054788672,0.3725656489508732,0.3755355763152349,0.3775360304919204,0.3799343604704166,0.3805760356441945,0.3834193629610978,0.3842293361721542,0.3853271028037383,0.3887062690772482,0.3904498694917857,0.3920465957019481,0.4033287101248266,0.3995345228859581,0.0,2.368379378706841,60.52203432243503,215.51840733833308,331.680954470573,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95683,41575,391.61606554978414,7271,74.63185727872245,5627,58.139899459674126,2268,23.27477190305488,77.29491858535671,79.69653223428386,63.29396199958445,65.07361216664304,77.02142164760815,79.42355407078954,63.19359480244864,64.97600594937262,0.2734969377485612,272.9781634943293,0.1003671971358102,97.60621727042462,77.16412,54.33932715353996,80645.59012572767,56790.994380966265,242.0984,149.66824719183109,252345.0038146797,155747.41892715226,270.64433,129.60544178529673,278561.24912471394,132170.95332643157,3218.57312,1455.1427981809843,3327936.9584983746,1485044.262774884,1371.01669,600.4876277527478,1416995.0043372386,611758.9126724917,2227.62488,920.6745122731712,2289366.80497058,930494.0664891378,0.38048,100000,0,350746,3665.70864207853,0,0.0,0,0.0,20353,212.01258321749944,0,0.0,25274,259.84762183459964,2087587,0,74893,0,0,0,0,0,51,0.5330100435814094,0,0.0,1,0.0104511773251256,0,0.0,0.07271,0.1911007148864592,0.3119240819694677,0.02268,0.3122962576607119,0.687703742339288,25.55279002991145,4.534496770425705,0.3401457259641016,0.1947751910431846,0.2386706948640483,0.2264083881286653,11.388488251126123,5.875453332738326,23.973051780620743,13012.069887998909,63.44792893021048,12.843402106074024,21.68407497718768,14.958011913269315,13.96243993367947,0.5544695219477519,0.7728102189781022,0.7016718913270638,0.5845122859270291,0.1138147566718995,0.7121320890165111,0.9255014326647564,0.8428571428571429,0.7364864864864865,0.1472868217054263,0.502598016060463,0.7014725568942436,0.6530898876404494,0.5415472779369628,0.1053149606299212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0044547271860127,0.006448992027624,0.0084184840628336,0.0104543094760629,0.0126181036152191,0.0149189762847463,0.0169387630003473,0.0194070466914924,0.0215943780860087,0.0237164692003898,0.0256620985802634,0.0278969736259891,0.0300216427908894,0.032194799698593,0.0340341479053124,0.0359170984455958,0.0376772773521044,0.0397703038688401,0.042014967376123,0.0565206037499347,0.0703861133213283,0.0836166729631028,0.0970654152505813,0.1093538993923025,0.1254152999682573,0.1390253998917346,0.1523711164583377,0.1641682604468282,0.1757220720140766,0.1894302549794788,0.2023606032412316,0.2150234843872314,0.2264608792602147,0.2362114663411308,0.2480676809957256,0.2578301960478013,0.2677914214003534,0.2768439224950594,0.2860927304212204,0.2947084308319626,0.3021755421291743,0.3098624912650566,0.3166104704880068,0.3231807404705453,0.3305182057265622,0.3364048944385938,0.3417489331889689,0.3474814459828772,0.3527408561133037,0.3534665068225596,0.3543361272829872,0.3553484831397316,0.3560508540765704,0.3566518879995239,0.3563006632277082,0.3564005593338842,0.3571334431630972,0.3583818992115187,0.3596972631729976,0.3607419555505287,0.3619074144070662,0.3633986928104575,0.3637673005513672,0.3650593345790763,0.3675642981118182,0.3693333716618276,0.3710633979258507,0.3725185446838573,0.3754847479310758,0.3801169590643274,0.3832726493895909,0.3851364183072735,0.3864541832669322,0.3870509052990805,0.3860804983229516,0.3879151291512915,0.3913934426229508,0.3885682879912063,0.3985507246376811,0.0,2.4760295349389176,61.23376779053326,211.1267515577117,324.52266196851866,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95718,41467,389.15355523517,7225,74.25980484339414,5670,58.63056060511085,2296,23.61102404981299,77.3593554540744,79.73172032738357,63.33143217950936,65.08454481893028,77.0784263425094,79.45169519706653,63.2287038225397,64.9851000743446,0.2809291115650012,280.0251303170427,0.1027283569696635,99.44474458568207,77.83996,54.73130403500525,81322.17555736644,57179.7405242538,238.95505,147.0618149373297,249067.11381349375,153062.9818188112,266.70427,127.07379469997996,275351.7311268518,130125.5266277132,3269.81508,1472.4809190506228,3382278.8190309037,1504539.8765651437,1375.91968,598.3692229289597,1421210.4515347166,608875.8257892565,2271.94912,940.7424727350096,2338323.1576088094,951700.5739861176,0.38109,100000,0,353818,3696.4625253348377,0,0.0,0,0.0,20162,210.0231931298188,0,0.0,24971,257.5482145468982,2089280,0,74948,0,0,0,0,0,41,0.428341586744395,0,0.0,0,0.0,0,0.0,0.07225,0.1895877614211866,0.3177854671280277,0.02296,0.3143830233167409,0.685616976683259,25.283214762836938,4.630874806345377,0.3264550264550264,0.2044091710758377,0.2310405643738977,0.238095238095238,11.03198291264514,5.399826567844993,24.362802587451306,13092.579178232716,63.93169603910671,13.529975959714678,20.958619653498825,14.613524603745228,14.829575822147984,0.5455026455026455,0.7929249352890423,0.690977849810913,0.5732824427480916,0.1066666666666666,0.7181159420289855,0.9396551724137931,0.8643006263048016,0.718213058419244,0.1564885496183206,0.4899766899766899,0.7299630086313194,0.630466472303207,0.5318940137389597,0.0946691176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019750435522424,0.0042576054010765,0.0066770170578505,0.0088562084865227,0.0112971945130817,0.013478982357193,0.0156582904327437,0.0178020946042504,0.0198830528919874,0.0220520485677429,0.0241093586561929,0.0266131185932332,0.0286537373321672,0.0309399437455568,0.0332686671894993,0.0354359197006347,0.037581919266169,0.0393631366040867,0.0414080612128205,0.0431558004604118,0.0580483475173602,0.0719660892773038,0.0857634372508706,0.0989579499689803,0.1121866860691953,0.1278747487570083,0.1409697239820445,0.1539010263617392,0.1657209416642623,0.1771503991758949,0.1906388389057095,0.2033364366596661,0.2151864303511005,0.2265866978953474,0.2369711056521883,0.2480119780402595,0.2584752862328958,0.268463927269454,0.2776787842331657,0.2865393209501656,0.2948726851851851,0.303222033799193,0.3104594099213623,0.3179684880992289,0.3249745108510948,0.3311411611123426,0.3368133794001302,0.3426743328160379,0.3484014658085902,0.354121324838748,0.3555755855407423,0.3568972158027952,0.3581434599156118,0.3591222353585743,0.3592794824618672,0.3589163405088063,0.3590185173481641,0.3604818882150467,0.3611599747237545,0.3629809408237561,0.3636995174705694,0.3651532866966568,0.3650763559768299,0.3651090483056957,0.3665723201974018,0.3658933018744265,0.3673797098124677,0.3695920889987639,0.3704908756542651,0.3719835666706553,0.3726075182448249,0.3741627819750308,0.3787481618822326,0.3793684855916615,0.3797863288266994,0.382689556509299,0.3895823701648944,0.3922562335292925,0.3947078280044101,0.3987682832948422,0.0,2.3643266292983256,60.835424152260494,216.1999019883445,326.6016228943509,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95900,41684,390.3232533889468,7242,74.47340980187695,5642,58.373305526590194,2311,23.80604796663191,77.4394230829848,79.7204656422446,63.39129033748679,65.07758974822816,77.15671227889133,79.43460277647861,63.28740564337198,64.97479153108237,0.2827108040934689,285.86286576599207,0.1038846941148037,102.7982171457893,77.98934,54.8108052464804,81323.60792492179,57154.12434460938,241.44021,148.92425407025067,251318.1230448384,154846.8447030768,266.2463,127.1135667346339,274802.9092805005,130372.94634114752,3250.83468,1463.1591362580953,3365387.945776851,1501284.1462545302,1365.74014,595.3365348338824,1412605.922836288,609265.3543627554,2276.01294,947.1114977905607,2346479.2492179354,963863.6267760094,0.38161,100000,0,354497,3696.52763295099,0,0.0,0,0.0,20351,211.75182481751824,0,0.0,24844,256.2356621480709,2089544,0,75077,0,0,0,0,0,44,0.4588112617309697,0,0.0,0,0.0,0,0.0,0.07242,0.1897749010770158,0.3191107428887048,0.02311,0.3166448230668414,0.6833551769331586,25.39885485810656,4.574517643295907,0.3286068769939738,0.1990428925912797,0.238390641616448,0.2339595887982984,10.90470769648093,5.322411564849591,24.535880643259784,13114.247935093115,63.42092767357514,12.956673086394597,20.986752604172786,15.026017693046628,14.451484289961147,0.5393477490251684,0.7533392698130009,0.6806903991370011,0.5828996282527881,0.1143939393939394,0.6982507288629738,0.8978978978978979,0.847682119205298,0.7275541795665634,0.1520912547528517,0.4882903981264637,0.6924050632911393,0.6266952177016417,0.5371819960861057,0.1050141911069063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022474185057703,0.0043779642466253,0.0065023990910843,0.0086913259348759,0.0110380436439773,0.0132882928715329,0.0155029284441049,0.0176458588331293,0.0198806750847942,0.022248818511017,0.0242220560058198,0.0264308140608647,0.0286186982345808,0.0307275796755332,0.0329800614445658,0.0349944240221387,0.0371818746120422,0.0392813105513475,0.0416934864309295,0.043619832303435,0.0575922779439817,0.0722040522042611,0.0854477103992795,0.0979883669655418,0.1105403328526164,0.1267947635135135,0.1397794795208287,0.1525612827133339,0.1649273539350396,0.1769276044732195,0.1905877800232188,0.2037187091476787,0.2163923741241649,0.2278995563520335,0.238802195022709,0.250163284735368,0.2609214237144545,0.2703984180130783,0.279520420651829,0.2884769332814894,0.2973585080076725,0.3050178164612419,0.3125266095841809,0.319403521379806,0.325523774822372,0.3316412651084854,0.337324974661211,0.343012981068745,0.348632281773246,0.3536847377647725,0.3548916921337121,0.3566292227523339,0.3574887387387387,0.3581144566992874,0.3583273894436519,0.3584946137697482,0.3583153758397769,0.3590332961187364,0.3605237517307396,0.3619445635090727,0.3621375248527591,0.3630984187298383,0.363979611100623,0.365872732147645,0.3676947077883115,0.3683167283918418,0.3693693693693693,0.3709439759225005,0.3737327833321681,0.375721629102412,0.378296192075523,0.3823357275871242,0.3859593793364451,0.3897667996317889,0.3866666666666666,0.3890555622224889,0.3938163647720175,0.3976003309888291,0.4006167647883375,0.4056748466257668,0.0,1.8220326042557529,60.76958240680733,214.09065793354512,325.1609709530511,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95725,41228,387.5372159832855,7368,75.61243144424132,5711,58.93967093235832,2380,24.41368503525725,77.34647984393533,79.7003650636141,63.33814763576003,65.07582981190725,77.0527639363926,79.40651097332868,63.229876167810296,64.97063147199823,0.2937159075427331,293.8540902854214,0.1082714679497343,105.19833990902328,76.86272,54.03193378102807,80295.34604335336,56444.95563439862,237.86574,146.413943650614,247774.4894228258,152238.53084420366,263.81129,126.05609035533398,270805.7247323061,128015.3818635862,3289.85352,1486.1882619143569,3397511.245756072,1513295.776353468,1399.69994,607.732279430207,1443704.110733873,616367.8239020179,2348.28268,980.984883171029,2410886.706711936,988487.1871553868,0.37907,100000,0,349376,3649.788456516062,0,0.0,0,0.0,20083,209.05719509010183,0,0.0,24687,253.13136589187775,2093705,0,75197,0,0,0,0,0,33,0.3447375293810394,0,0.0,0,0.0,0,0.0,0.07368,0.1943704329015749,0.3230184581976112,0.0238,0.3200051759834368,0.6799948240165632,25.3622113591616,4.541843957718423,0.3321659954473822,0.1945368586937489,0.2346349150761688,0.2386622307827,10.984244027862688,5.470916469446869,25.44822877047759,12957.778002021949,64.4095414386994,13.04643653303843,21.215519003552163,14.985959521284688,15.161626380824115,0.5398354053580809,0.774977497749775,0.6731681602530311,0.5835820895522388,0.119589141599413,0.6926863572433193,0.9269662921348316,0.8574766355140186,0.7592592592592593,0.1337579617834395,0.48915831196083,0.7033112582781457,0.6194690265486725,0.5275590551181102,0.1153479504289799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166700425359,0.0044501211365548,0.0066063871890888,0.0090002234818471,0.0114507698252893,0.0134284899820817,0.0155351681957186,0.0176262260280264,0.0195439073504308,0.0218484125602776,0.0240162363287856,0.0257631433087676,0.0278209016604122,0.0297661963126995,0.0317884484430779,0.0339331672678787,0.0359269037635243,0.0378478202228539,0.0401043669892618,0.0422360636613615,0.0566071223494774,0.0702966358935711,0.0830850260198086,0.0959586930688904,0.1076704096156887,0.1232620349126127,0.1360617826151528,0.1483811226770547,0.1606914075845575,0.1726207702284103,0.1868041947501023,0.200086528581472,0.2124347826086956,0.2241226680073006,0.2346429513675138,0.2457295944913706,0.2557291492422468,0.2661995118494606,0.2750442558213427,0.2851447490519996,0.2933307102105056,0.3008856805232184,0.3087819032391781,0.3161146366918989,0.3229484483450229,0.3292825714532211,0.3359379891556157,0.3413826059254539,0.3464439165595753,0.3515944290872538,0.3529824561403509,0.3535763041409837,0.3543485015394175,0.3552991985623396,0.3562922001460702,0.3568244697202582,0.3570759732736593,0.3576989548185335,0.35896952129393,0.3609961479888919,0.3621646014703947,0.3638618281383305,0.3641726891553065,0.3649426579716663,0.3657911285251294,0.3669693380707988,0.3693206341898541,0.3717672413793103,0.3741867043847242,0.3746411483253588,0.3760338173129939,0.3761137949543747,0.3787590407308717,0.3835479145786755,0.3846961167827497,0.3876146788990826,0.3857741885385929,0.3882912701696318,0.3889364128885087,0.3885094415427882,0.0,2.773791537672658,62.36728331806742,215.2019308385645,326.04427905522425,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95736,41727,393.0078549344029,7137,73.35798445725746,5574,57.59588869390824,2245,22.99030667669424,77.41222784566315,79.7706798381051,63.350809200748486,65.09081792037318,77.14628795824007,79.5062742796296,63.253184650624505,64.9972331420751,0.2659398874230874,264.4055584755023,0.0976245501239816,93.5847782980801,76.47178,53.80771533803138,79877.76802874572,56204.26520643371,238.69479,146.99044621442192,248705.1370435364,152917.22756775,265.74624,126.74382694386732,274239.43970920035,129760.9562746974,3202.64348,1426.6064574882998,3310068.2710788,1455203.5762957786,1354.50304,577.405458641041,1400081.6620706944,588491.2182014476,2217.49552,910.3947923247156,2273058.2017214005,912760.8850248487,0.38114,100000,0,347599,3630.80763767026,0,0.0,0,0.0,20069,208.970502214423,0,0.0,24806,255.77630149578005,2096615,0,75078,0,0,0,0,0,37,0.3864794852511072,0,0.0,0,0.0,0,0.0,0.07137,0.1872540273915096,0.3145579375087571,0.02245,0.3154944614973975,0.6845055385026024,25.199489899452438,4.620006673749549,0.3310010764262648,0.2023681377825619,0.2265877287405812,0.240043057050592,11.024687199687682,5.345445153458358,23.464082650048255,12981.497752161406,62.16328769941227,13.288455810908433,20.69112725472604,13.789692298483642,14.394012335294155,0.540724793684966,0.7925531914893617,0.6959349593495935,0.5471100554235946,0.1083707025411061,0.7057949479940565,0.943089430894309,0.8358862144420132,0.6441281138790036,0.1631799163179916,0.4881740775780511,0.7193675889328063,0.6498559077809798,0.5193482688391039,0.0964513193812556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0045507525464957,0.0067463377023901,0.0088654642944187,0.0109395174818776,0.0128569247213315,0.0152577613796196,0.0173260002244829,0.0196114500618286,0.0216888433981576,0.0236638483218037,0.0259305643952614,0.0279119975326411,0.0297213239686103,0.031771091299323,0.0339969403787315,0.0360548796272327,0.0378597663464132,0.0398939488459139,0.0418789261493265,0.0564418458968469,0.071031675439239,0.0839033192060761,0.0962770489906268,0.1082598235765838,0.1234985978094079,0.1372199403529998,0.1499669910769427,0.1624293332478386,0.1737357259380098,0.1871873382784198,0.2010937246196329,0.213259307642064,0.2246077712208634,0.2350446182659469,0.2460152844482402,0.2563985068287994,0.2666336265642423,0.2758957469763216,0.284264715998991,0.2929826390095317,0.3016330114135206,0.3095317013116151,0.3170103401588766,0.3236576508738477,0.3296869803023023,0.3353798829590356,0.3407858131883487,0.3456633806638328,0.3515988945913936,0.3529293336017717,0.3544321158672902,0.3548205884418229,0.3562239797167841,0.3573836418475368,0.3571939871152469,0.3578988817136557,0.3593678573760857,0.3602577398459681,0.3610859406925715,0.3626521066656728,0.3634361233480176,0.3648558295027163,0.3656031371151018,0.3664418900434354,0.3683129177394606,0.3683296809630873,0.3708902496467263,0.3740257004423846,0.3755494831887846,0.3778747386601218,0.3804088133793469,0.3841367607315694,0.3858518462354993,0.3879857997010463,0.391324902493795,0.3950242718446602,0.3932223781832765,0.3911499590275881,0.397165836844121,0.0,2.388435955882335,59.33596482489556,203.96798459649636,325.13378709842016,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95734,41500,389.3601019491508,7321,75.19794430400903,5639,58.37006706081434,2276,23.40861136064512,77.32373385663094,79.69358655139531,63.321321634088775,65.07509527541619,77.04902787237751,79.41844157812702,63.21988413769648,64.97599751621787,0.2747059842534298,275.1449732682971,0.1014374963922932,99.09775919831532,76.96524,54.1467787223196,80394.196419245,56559.03113867564,239.43694,147.5272077880001,249501.35792926236,153501.0719722891,265.43353,127.23961036138816,274183.32045041467,130552.04780020074,3243.58172,1464.5554428696812,3358030.793657426,1500064.2952032925,1380.60401,604.5099467683905,1427603.495101009,617174.328502366,2244.8429,935.702175892876,2309990.0348883364,947482.7267324992,0.38084,100000,0,349842,3654.2816554202273,0,0.0,0,0.0,20165,210.0298744437713,0,0.0,24787,255.8443186328786,2092316,0,75088,0,0,0,0,0,52,0.543171704932417,0,0.0,0,0.0,0,0.0,0.07321,0.1922329587228232,0.3108864909165414,0.02276,0.3109613889608706,0.6890386110391293,25.521342390539463,4.622904564648329,0.3110480581663415,0.2092569604539812,0.2452562511083525,0.2344387302713247,11.30632340514871,5.617357693419307,24.16607316526743,13056.294751848563,63.43157387360071,13.840336621236752,19.668421298171697,15.330699290800595,14.59211666339166,0.5362652952651179,0.752542372881356,0.6733181299885975,0.5770065075921909,0.1187594553706505,0.7010909090909091,0.9182561307901907,0.8729411764705882,0.7024221453287197,0.1802721088435374,0.4831144465290807,0.6777367773677737,0.6094808126410836,0.5438756855575868,0.1011673151750972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0047968196983986,0.0072675598863174,0.009491291181432,0.0115985674751749,0.0140268312807505,0.0158385346550809,0.018067059532442,0.0202979763377746,0.0225510778841722,0.0248997548994472,0.0270514532196775,0.0292780281052609,0.0314396710736477,0.0334114344105777,0.0352416987139726,0.0374704834500186,0.0394040628307015,0.0413088232236062,0.043200550166196,0.0577290524667188,0.0717881626458736,0.0850476799932859,0.0980802608741387,0.1106518048276371,0.1253806462527491,0.1386089244414267,0.1511588311660672,0.1630922373648908,0.174251522690229,0.1881400282123897,0.2016596702298005,0.2135422897475774,0.2253912358788727,0.2365076745337514,0.2475023813215781,0.2579961636258197,0.2684360146971246,0.2782477546947292,0.2867704280155642,0.2945385193319078,0.3023049230913086,0.3093914812099425,0.316421415903753,0.3231131788972437,0.3303006768001775,0.3356629342952331,0.3414273702448595,0.3470287655954141,0.3530413882359156,0.3539029749147425,0.3549080981205962,0.3557221304648569,0.3562473730741916,0.3570853941958167,0.3574476576410634,0.3574710822373633,0.3593721751992768,0.3614857357742338,0.3622501876943977,0.3636363636363636,0.3649238337035861,0.3660571332265948,0.3674121405750798,0.3688147574319744,0.3697874241269674,0.3694051317454838,0.3725153452278726,0.375452416436023,0.3773433100008045,0.381011781011781,0.3803561791689153,0.3798325771614799,0.3841571903767308,0.3894586894586894,0.3884675574816419,0.3924342611102568,0.3946078431372549,0.3971318257032543,0.3969732246798603,0.0,1.935543054302787,60.91077696650513,213.0641635044281,325.58666066437365,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95787,41560,390.9925146418616,7100,72.97441197657302,5520,57.11631014647081,2321,23.865451470450058,77.38153749659537,79.72348528510986,63.350937847410606,65.08300467115916,77.08987263307958,79.43172167222204,63.24350176698599,64.97806518913981,0.2916648635157912,291.76361288782005,0.1074360804246126,104.939482019347,77.36256,54.406870855834,80765.1977825801,56799.84847195757,236.82838,145.83066846462447,246743.66041320845,151743.85948228848,262.16546,125.51735315725,271076.00196268805,128871.19376605473,3197.61944,1450.1328699827775,3309847.682879723,1485524.50159234,1377.46197,604.089622532507,1422819.5892970862,615480.3898227124,2295.4067,962.7169937970596,2362379.9262948,975541.3079568464,0.38202,100000,0,351648,3671.145353753641,0,0.0,0,0.0,19990,208.1597711589255,0,0.0,24452,252.6230072974412,2093366,0,75154,0,0,0,0,0,44,0.459352521740946,0,0.0,1,0.0104398300395669,0,0.0,0.071,0.1858541437621066,0.3269014084507042,0.02321,0.319251984393919,0.680748015606081,25.126256640787112,4.6519469723076,0.331159420289855,0.1925724637681159,0.2284420289855072,0.2478260869565217,10.9670475019349,5.340141469962743,24.850338820315585,13007.73150034181,62.369084067072095,12.47690564306659,20.68820615717862,14.000101850757966,15.203870416068918,0.5418478260869565,0.7638758231420508,0.6936542669584245,0.5836637589214909,0.1279239766081871,0.6952104499274311,0.8994252873563219,0.8673913043478261,0.7095588235294118,0.1778523489932885,0.4908256880733945,0.6979020979020979,0.6352339181286549,0.5490394337714863,0.114018691588785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177479795013,0.0046120785776552,0.0070106732681303,0.0090592405268984,0.0111332533501433,0.0133452772377006,0.0158294940269906,0.0177589075209993,0.0198859572032945,0.0220394131008656,0.0240300862828684,0.0260926690070004,0.0281413545276015,0.0301064640349251,0.032284682826199,0.0344681510564653,0.036249430853926,0.0380225772009661,0.040026178554362,0.0421455938697318,0.0569359366358124,0.0706479108926423,0.0834268102192076,0.0965881030189036,0.108515368971222,0.123874540305195,0.1373723029969056,0.1499936213641775,0.1623554018867119,0.174527290657291,0.1889378101686887,0.2011486793432409,0.2130994304595452,0.2245828005639159,0.235674605357241,0.2469023706968143,0.2577040184695687,0.2679523220510514,0.2774178909750978,0.2866594931202637,0.2946015364679748,0.3021474186530679,0.3098366477272727,0.3169123816373007,0.3239375015187228,0.331045530158339,0.3372226807733673,0.3435200977522083,0.3484383299003796,0.3539942175927759,0.3552103263359293,0.3556779836099442,0.3557064028563767,0.3564200193997655,0.3579355030907872,0.3580271534862315,0.3580258653480411,0.3586767361681169,0.3594379567028614,0.3600607305528266,0.3602327108942479,0.3614655992390615,0.3624992116383206,0.3632724655932355,0.3651886200067623,0.3662924884599244,0.3676731793960923,0.3691730271872832,0.3703117303497291,0.3707976924607121,0.3719484319283167,0.3721364874245741,0.372999745999492,0.3740293688014146,0.376782658300057,0.3774620986033186,0.3758255260328674,0.3822511703643395,0.380328782390638,0.3817829457364341,0.0,1.98856959462994,60.99233358764008,211.0663924993385,312.5914270258661,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95859,41609,389.1862005654138,7127,73.27428827757436,5525,57.08384189278002,2259,23.179878780291887,77.37299817448195,79.67336196662242,63.35320242165369,65.05656652139673,77.09667345258795,79.39812626990732,63.25223499226546,64.95890330199636,0.2763247218939995,275.2356967151002,0.1009674293882341,97.66321940037416,76.89,54.06364097089315,80211.56072982193,56399.12889858349,239.46068,148.1656357685613,249226.520201546,153987.63367921775,264.28238,126.92552786970552,272444.2358046714,129910.2564241856,3194.07808,1437.8884795582358,3301598.055477316,1469543.0575723012,1319.30398,570.718355022351,1363732.586402946,582808.9120712201,2227.50058,920.663677342594,2287690.4411688,929298.769898298,0.38192,100000,0,349500,3645.980033173724,0,0.0,0,0.0,20230,210.4445070363764,0,0.0,24625,253.59121209276125,2091920,0,75113,0,0,0,0,0,52,0.5424634097998101,0,0.0,0,0.0,0,0.0,0.07127,0.1866097612065354,0.3169636593236986,0.02259,0.3118093462921049,0.6881906537078951,25.41865928303361,4.696672068555936,0.3314027149321267,0.1943891402714932,0.2327601809954751,0.2414479638009049,11.107418429350426,5.489917670178407,24.07188402556408,13081.049401293743,62.28678135194831,12.665767323712744,20.80383589591928,14.26270670687482,14.554471425441443,0.5417194570135747,0.7783985102420856,0.6947023484434736,0.5738724727838258,0.1101949025487256,0.7256505576208179,0.922437673130194,0.8556034482758621,0.7430555555555556,0.1379310344827586,0.4825358851674641,0.7054698457223001,0.640087783467447,0.5250501002004008,0.1043557168784029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0044999847973486,0.0067963036223283,0.0092601994192067,0.0114877091678018,0.0137316775244299,0.0159713799394575,0.0179611997264999,0.0200472059589859,0.0221212679313237,0.0243020337072895,0.0265217971210768,0.0288063306099378,0.0309926712779973,0.0334006845078553,0.0355958982620279,0.0377405338299193,0.0398221835364337,0.0419647956799418,0.0440111536540702,0.058905109489051,0.0726258150810901,0.0857986925913509,0.0986295615647151,0.1108232493970701,0.125723581358009,0.1392497615767722,0.1519668296831809,0.1639646947074079,0.1754331451103087,0.1897659402744148,0.2029984975084582,0.214982120148256,0.2262180720783765,0.2369842964202,0.2488950918818329,0.2598551711056314,0.2694999549914483,0.2787906290770889,0.2877148386062542,0.2963185713790032,0.3045172159629357,0.3123609072399261,0.3186986998981487,0.3247999222763319,0.3314930063466634,0.3369321526533986,0.3427407548851123,0.3488507683138556,0.3543601463730398,0.3554746494066882,0.3564595280105866,0.3568493440840476,0.3573880672682764,0.357542731225061,0.3573258864867353,0.3569104787900909,0.3576328907753813,0.3587641218760698,0.3604771970049797,0.3611105896487638,0.3625200530787665,0.3635542864341655,0.3632902604528251,0.3645096056622851,0.3654037104781813,0.3668108510699246,0.3676907516277893,0.3698489980242732,0.3710216422660725,0.3713700500682749,0.3723047436511739,0.3738205306820341,0.3785588212723506,0.3777313319399582,0.3803134647352172,0.3787293244705518,0.3794808405438813,0.3827402633790978,0.3777949113338473,0.0,2.189550421263961,59.36337307654209,213.83083272208256,313.82591252722057,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95799,41274,386.9768995500997,7211,74.23877075961127,5635,58.32002421737179,2308,23.77895385129281,77.39816222968327,79.72818801103992,63.35848721039546,65.07986901179022,77.11912918106503,79.44741753860662,63.25680815402652,64.97972435114139,0.2790330486182313,280.77047243330355,0.1016790563689369,100.1446606488372,77.022,54.16221030752783,80399.58663451602,56537.34413462335,238.722,146.94648932603178,248682.6897984321,152890.48606323943,261.32662,124.338093716088,270212.78927754983,127757.6044846178,3253.16912,1456.505506032019,3368282.5916763223,1493258.2933787014,1410.88231,610.049107865239,1461201.73488241,625251.3660406083,2278.79468,937.729128322894,2349040.929446028,953929.1283648688,0.37898,100000,0,350100,3654.526665205273,0,0.0,0,0.0,20139,209.6994749423272,0,0.0,24421,252.2468919299784,2094376,0,75130,0,0,0,0,0,50,0.5219261161389993,0,0.0,0,0.0,0,0.0,0.07211,0.1902738930814291,0.3200665649701844,0.02308,0.3141954174348169,0.6858045825651831,25.59240832517688,4.642144111023767,0.3213842058562555,0.2,0.2356699201419698,0.2429458740017746,11.301460322240931,5.657727331942292,24.383772861159343,12930.868350010194,63.253581299664816,13.107841934301565,20.45912020840697,14.568944913398354,15.117674243557923,0.5364685004436557,0.7905944986690329,0.6824958586416344,0.5549698795180723,0.1161431701972242,0.6979166666666666,0.9230769230769232,0.87248322147651,0.7090909090909091,0.1443661971830986,0.4859007224423211,0.7338403041825095,0.6202346041055719,0.5147198480531814,0.1087557603686635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020659901561645,0.0043477379601102,0.0064825711155297,0.0085811195060524,0.0108066893712194,0.0131495918741221,0.0157130483517603,0.0177223197159531,0.0199838576201228,0.0221199099652138,0.0243727525125756,0.0263619665267672,0.0283744065114175,0.0307533964594483,0.0330628782333474,0.035125225923057,0.0371696063725236,0.0391949482066755,0.0410591621894063,0.0431839718424258,0.0576585976627712,0.0714920674761292,0.0847862781895765,0.0974492101695271,0.1100885515496521,0.125087211146113,0.1383465026250198,0.1509747169490082,0.1624427285251994,0.172812369321167,0.186719221159645,0.1996625786775679,0.2115138083132346,0.2224576965512721,0.2334509325508039,0.2455243532718139,0.2558092859372909,0.2651672757942086,0.2743205227097418,0.2833732235493512,0.2917350785098166,0.2989957092584149,0.3062215118688214,0.3135061914865561,0.3211878302058663,0.3275715500141683,0.3342339637746422,0.3405575905575905,0.3461035175228347,0.3516606822262118,0.3523837765706506,0.3527022375215146,0.3534547198284981,0.3540205619098572,0.3546695583713364,0.354185170438884,0.355176891647927,0.3555394998275833,0.3561831407787762,0.3572271280969575,0.3584693303320203,0.3598913625280019,0.361392896897906,0.3630158445976188,0.363269521773593,0.3636078922643282,0.3650662722566699,0.3661263977886669,0.3673555166374781,0.3682667934093789,0.372541862481179,0.3730196577120754,0.3734486649116209,0.3717537427436602,0.3712908712908713,0.3726454709058188,0.3749231714812538,0.3780413003475771,0.3807262569832402,0.3876447876447876,0.0,1.8920276892448435,59.74258655934531,213.22597414932432,328.2355861803669,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95888,41144,386.1692808276322,7152,73.53370599032203,5580,57.72359419322542,2297,23.621308192891707,77.3584022892406,79.64024233660905,63.35300198276878,65.04140382045172,77.07182931290004,79.3521658104509,63.248758349326856,64.93882017201841,0.2865729763405653,288.07652615815016,0.104243633441925,102.5836484333098,77.77836,54.676713033145546,81113.75771733689,57021.43441634568,238.49382,146.70814971529734,248258.6663607542,152539.47359963832,260.98666,123.93103783218702,269460.5060070082,127112.35595680116,3210.99544,1441.1778321028444,3323722.843317204,1478151.3596834035,1359.31256,593.6447249826534,1408027.3444018022,609603.2832436495,2264.85466,939.853802610146,2331667.028199566,954789.0890470578,0.37807,100000,0,353538,3686.9889871516766,0,0.0,0,0.0,20080,208.92082429501085,0,0.0,24377,251.44960787585515,2089455,0,75045,0,0,0,0,0,55,0.5735858501585183,0,0.0,0,0.0,0,0.0,0.07152,0.1891713174808897,0.321168903803132,0.02297,0.316542948038176,0.6834570519618239,25.432379333405,4.5343174834339735,0.3288530465949821,0.200179211469534,0.232258064516129,0.2387096774193548,10.909093059637955,5.411295590996506,24.5640586103514,12928.234391215368,62.9478298583768,13.013758400020164,20.75118665032724,14.49340323328283,14.689481574746573,0.5446236559139785,0.7797672336615935,0.6899182561307902,0.5794753086419753,0.1133633633633633,0.7005267118133935,0.9221183800623052,0.8269230769230769,0.7420494699646644,0.1478599221789883,0.495883321571395,0.7223618090452262,0.6430138990490124,0.5340572556762093,0.1051162790697674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185412426976,0.0046610126556626,0.0067653234068018,0.0092091502604351,0.011323439723521,0.0134237067342431,0.0156689351644321,0.0179407414962517,0.0200626895234983,0.0220407078379455,0.0241280825493668,0.0260093088105636,0.0280793287253381,0.0300988550913972,0.0318943929760199,0.0337308347529812,0.0358332471294093,0.0380473648753692,0.0401694844846923,0.0421773237062777,0.0568777690904352,0.0706972565243736,0.0835131002994952,0.0962095758084838,0.1083281547876094,0.1233509025804611,0.1365538872346963,0.1497666209477635,0.1615915810145902,0.1732447207632114,0.187257731070721,0.1996927969539303,0.2126549249836921,0.2242664742664742,0.2346777208453368,0.2461044710048694,0.2571549666510517,0.2670167665613368,0.2757337508367085,0.2844800916642795,0.2925129914470562,0.2997086458467407,0.3073032044067997,0.313814408253854,0.321139743885977,0.3281417764010416,0.333918451276393,0.3398908636560675,0.3450810305422813,0.3500608916657842,0.351178742134968,0.3521150078640214,0.3534504675009181,0.3544145998521461,0.3555373256767842,0.3555124892334195,0.3562633236819498,0.3577285400821606,0.3579708402740808,0.3577297025795573,0.3591960518384569,0.3593175174498379,0.3594652722135537,0.3595824146154884,0.3610815259488768,0.3634460378938553,0.3647055456990786,0.3669548207975769,0.3684025210379916,0.3719410123555201,0.3727672437482825,0.3729364149536692,0.375134723895264,0.376742025394859,0.3770853307766059,0.3784537081919534,0.3809299403078856,0.3835728952772074,0.3811247216035635,0.3887171561051004,0.0,1.785458217980029,59.11894939650374,216.0656586273322,323.1539095899395,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95739,41543,390.3633837829933,7434,76.51009515453472,5742,59.44286027637639,2318,23.866971662540863,77.38965647392791,79.75605021792536,63.34469261111818,65.0936456574513,77.1075910095049,79.47376154939649,63.24128554825951,64.99324628918025,0.2820654644230131,282.2886685288779,0.1034070628586789,100.39936827105578,77.84986,54.71423641925505,81314.67844869907,57149.371122797456,241.42524,148.46389628305678,251650.62304807865,154552.33331407938,269.04339,127.84271532675628,278219.7537053865,131409.04446433875,3293.71908,1479.77248518824,3411100.638193421,1516459.5358814176,1404.87641,602.7534376382416,1454504.7159464797,616786.1186505032,2285.1548,947.081721962542,2354856.432592778,960103.228013842,0.38058,100000,0,353863,3696.121747668139,0,0.0,0,0.0,20350,211.99302269712447,0,0.0,25205,260.4894557077053,2089210,0,74976,0,0,0,0,0,38,0.3864673748420184,0,0.0,0,0.0,0,0.0,0.07434,0.1953334384360712,0.3118105999461931,0.02318,0.3158969124776729,0.6841030875223271,25.226350933292544,4.609209033806559,0.3220132358063393,0.2044583768721699,0.2391152908394287,0.234413096482062,11.134690866304682,5.513220497679817,24.593973113218954,13043.55139110152,64.43405945909267,13.625525303255111,20.82472107330278,15.225015922326293,14.758797160208472,0.543712991988854,0.7529812606473595,0.6976744186046512,0.5717407137654771,0.1210995542347696,0.7111269614835949,0.9102902374670184,0.8728070175438597,0.7312925170068028,0.1428571428571428,0.4896313364055299,0.6779874213836478,0.6403445800430725,0.5282669138090825,0.1155638397017707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0043591537159251,0.0066471143405149,0.0087266594875754,0.0105485875878625,0.0126165940287564,0.0148754600789143,0.0171700983044272,0.0194619347452776,0.0218134545305654,0.0239552261754666,0.0261996180933412,0.028332630843091,0.0305008649806409,0.0326040989778341,0.0345711421395868,0.036574126808255,0.0386259415267777,0.0407632984804706,0.0427411876256863,0.0577916992952231,0.0715840817266428,0.0846588047675004,0.09789069486087,0.1099553764518477,0.1257219013771657,0.139076923076923,0.1516954383873645,0.1641373418059486,0.1757930635094266,0.1891979196950609,0.2020186721767257,0.2144682331705938,0.2257323754223665,0.236727732849205,0.2479736014528059,0.2577313838982011,0.2673207241832709,0.2771849449440368,0.2862750483514722,0.294731363136892,0.3024063420794163,0.31029794277607,0.3175068854029457,0.3252115428973789,0.3316452888773888,0.3372800320408521,0.3425192841322776,0.3486796948858412,0.3540173444739239,0.3554047320863464,0.3562737433243407,0.3569436226861635,0.3572657232477125,0.3581207495619636,0.3578689528475199,0.3575191836088917,0.3585514991557515,0.3602036992880744,0.3612441469190093,0.3621185522728121,0.3643985874647359,0.3660352109731108,0.3660546770302867,0.3657856799615569,0.3662225235326328,0.3656499429874572,0.3682566723452584,0.3712046321141082,0.3747348196773806,0.3778831545508954,0.3779094827586207,0.377735368956743,0.3799558633285138,0.3792103293413174,0.3778093210314644,0.3785060975609756,0.3807700060471679,0.3841496973032471,0.383693972179289,0.0,2.0224622073649154,62.108001650382455,213.82605678059812,333.0884832458797,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95750,41604,390.5691906005222,7354,75.44647519582246,5719,59.01827676240209,2308,23.613577023498696,77.34687979821054,79.7067265437784,63.33382307926016,65.08157186939408,77.0605787320978,79.42275911445874,63.22817199435718,64.97984278246159,0.2863010661127418,283.96742931965946,0.1056510849029734,101.72908693249384,77.68882,54.68479525426662,81137.14882506526,57112.05770680586,243.40845,150.2077785301162,253539.6971279373,156202.18123249733,269.62714,128.7560899849808,277430.7989556136,131206.67423771936,3288.17116,1489.53125154023,3396131.091383812,1517655.991164731,1402.38445,611.8768949951424,1444271.8433420367,618676.4856346133,2278.3794,958.0369543050084,2334264.501305483,961795.9447076208,0.38115,100000,0,353131,3688.0522193211486,0,0.0,0,0.0,20519,213.57702349869453,0,0.0,25239,259.3942558746736,2087461,0,74987,0,0,0,0,0,44,0.4595300261096606,0,0.0,0,0.0,0,0.0,0.07354,0.1929424111242293,0.3138428066358444,0.02308,0.322463768115942,0.677536231884058,25.09245437045165,4.603083636008249,0.3289036544850498,0.2066794894212275,0.222766217870257,0.2416506382234656,11.07557113556142,5.503214755761766,24.65308119231391,12968.680636080502,64.78592180029833,13.908352969344394,21.229926618403297,14.334460147731043,15.313182064819594,0.5465990557789824,0.772419627749577,0.6953748006379585,0.5855572998430141,0.1150506512301013,0.7019162526614621,0.923728813559322,0.8715203426124197,0.7301038062283737,0.1471571906354515,0.4958236658932715,0.7077294685990339,0.6371994342291372,0.5431472081218274,0.1061865189289012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482712496453,0.0041779905082545,0.0066700507614213,0.0088823846255475,0.011231382762269,0.0132889350522392,0.0156488938729737,0.0177929767251939,0.0200977285273251,0.0223819470041364,0.024236956231994,0.026583019313503,0.0286604553587955,0.0306666941365528,0.0329115752972258,0.0348670133038381,0.0370715543129336,0.0391501898379634,0.0410386478451591,0.0429435714806368,0.057938794255177,0.0714875989832316,0.084750560949525,0.0975404666806811,0.1101226864538977,0.12593132747852,0.138909206551121,0.1508033559116574,0.1625182703694615,0.1740029352215878,0.1876795300749857,0.2012645914396887,0.213197583449235,0.2239686301923476,0.2349735182295672,0.246347941567065,0.2570204982936676,0.2670984863819355,0.2766754449691246,0.2852199816681943,0.2940550050930641,0.301659760750989,0.3084683148621767,0.3153671787860252,0.3225061950342548,0.3294753561446495,0.3358495762446639,0.341252974637635,0.3469908546853545,0.3513713177578724,0.3521030019797713,0.352006170713902,0.3527165104643788,0.3538763947505348,0.3549777757956859,0.3546586517818806,0.3542750221996701,0.3551434166570671,0.3565028183733959,0.3577694235588972,0.3585738986618553,0.3594419749166534,0.3598796473583436,0.3610848738361894,0.3612798605900719,0.3625440395435663,0.3641277782569941,0.364266853307034,0.3647575843493054,0.3679733579424628,0.3674985008533604,0.3684154003114428,0.3707600102014792,0.3745875853602394,0.3802737140160453,0.3838721221519742,0.3806581183377105,0.3795876288659793,0.3826284416690321,0.374250299880048,0.0,2.8086240595957457,61.74649188936751,222.9959068592016,323.04343167707657,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95756,41464,390.2105351100714,7195,74.05280086887505,5598,57.88671205981871,2264,23.27791469986215,77.36211040614715,79.72338757328085,63.32787542470121,65.07539258887246,77.09251949831254,79.45348504791288,63.229377665892976,64.97927619507045,0.2695909078346119,269.9025253679679,0.0984977588082358,96.11639380200644,77.64482,54.58647486710151,81086.11470821672,57005.801064269086,240.73229,148.4523273923976,250765.2053135052,154395.3040983307,267.86237,127.77306756241856,276265.99899745185,130768.1592532077,3197.64316,1437.0437475692,3308129.9135302226,1469626.0302139383,1356.90356,583.4297751296913,1404783.0736455158,597028.1706939415,2219.90884,916.2218926096446,2284289.9035047414,927806.5588240492,0.37954,100000,0,352931,3685.732486737124,0,0.0,0,0.0,20291,211.30790759847943,0,0.0,25046,258.04127156522827,2087264,0,74967,0,0,0,0,0,37,0.3759555536989849,0,0.0,0,0.0,0,0.0,0.07195,0.1895715866575328,0.3146629603891591,0.02264,0.316754617414248,0.683245382585752,25.31020479639765,4.586454140395289,0.3354769560557342,0.2036441586280814,0.2341907824222937,0.2266881028938907,11.36393702873594,5.812773929715369,23.916983147792934,12986.49740948948,63.07310125371581,13.28120105413819,21.12287902284014,14.78311310388867,13.885908072848808,0.5528760271525545,0.7798245614035088,0.7002129925452609,0.5659801678108314,0.1174152876280535,0.7045619116582187,0.9183098591549296,0.8542600896860987,0.7272727272727273,0.104,0.5032013279582642,0.7171974522292993,0.6522346368715084,0.5117227319062182,0.1207065750736015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024720626526042,0.0047052142697791,0.0071261800832402,0.0094597478077974,0.0116779411016733,0.0140139324561046,0.0159280484571615,0.0181123907539001,0.0198770973711925,0.0220570164659621,0.0243559767003035,0.0260800788873595,0.0281372811259027,0.0302034170771418,0.0322214424307476,0.0342930989919875,0.0362013440888051,0.0380465232097279,0.0399675685789424,0.0420086663055706,0.056213203056495,0.0698652494141278,0.0833202244245189,0.0959888098944091,0.10782504139815,0.1231294747194873,0.1367488729779899,0.1489094450890433,0.1620013248146327,0.173112595563085,0.1865609753470689,0.1998917748917749,0.2127347098627096,0.2239725203198669,0.2343488597340847,0.2463904617328,0.2572172029081,0.2670694932037087,0.2767565359477124,0.2859286409713075,0.2938861039397061,0.302412373063784,0.310171758661916,0.3177647439818646,0.3241486557082285,0.3307150696080003,0.3365187114874004,0.3419903499726285,0.3469160427946015,0.3524015680477277,0.3533986602148508,0.3539247689489415,0.354461781329725,0.3550556921741646,0.3558225645753713,0.3560751245688003,0.35613267376966,0.3564359690941969,0.3580576216123792,0.3595778496044572,0.3611027813179399,0.3619433198380566,0.3636915858486416,0.3652490995727165,0.3664621676891615,0.3671573233114104,0.3690272551032044,0.3713422692089862,0.3746316823347832,0.3765718592566147,0.3800645718703105,0.3813052453289578,0.3828355862936183,0.3848831050919271,0.384665670526709,0.3870126792273966,0.3894208846329229,0.3858597962852007,0.390997830802603,0.4013948082138706,0.0,2.1974596050736848,61.142617629535046,213.87317735171115,317.0314037446463,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95759,41735,391.9213859793858,7300,75.0738833947723,5733,59.2738019402876,2379,24.519888470013264,77.32840490063373,79.68967380707474,63.31625382636724,65.06521086002624,77.04345481236744,79.40123409751806,63.21330956229331,64.96309888794302,0.2849500882662852,288.439709556684,0.1029442640739262,102.11197208322176,77.7744,54.71877846443308,81218.8932632964,57142.17824375054,241.48942,148.3090681446528,251611.4203364697,154304.2723343527,268.85326,128.41337448685843,276309.45394166606,130739.36981368584,3323.1244,1478.4807840489584,3440308.691611232,1513969.009752564,1394.31783,594.4226538961553,1446504.8716047576,611183.7257032295,2346.564,964.3627588146738,2421078.227633956,982972.2374837692,0.38155,100000,0,353520,3691.767875604382,0,0.0,0,0.0,20347,211.8756461533642,0,0.0,25009,256.748712914713,2086189,0,74919,0,0,0,0,0,44,0.4594868367464155,0,0.0,0,0.0,0,0.0,0.073,0.1913248591272441,0.3258904109589041,0.02379,0.3177740215836692,0.6822259784163308,25.5228623416516,4.58740961685952,0.3223443223443223,0.199023199023199,0.2354788069073783,0.2431536717251003,10.69670578796084,5.277158526187596,25.237974659214764,13050.396826261043,64.22352979913488,13.208279597445042,20.76250606075441,15.083159175092884,15.16958496584254,0.5281702424559568,0.7589833479404031,0.6861471861471862,0.5437037037037037,0.1147776183644189,0.7008733624454149,0.9269662921348316,0.8571428571428571,0.7206896551724138,0.1602787456445993,0.4737325074558385,0.6828025477707006,0.6325515280739161,0.4952830188679245,0.1029810298102981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021685599343351,0.0044828495507008,0.0066908987531982,0.0090245736701965,0.0111900063070944,0.0133841264667535,0.0157346222874857,0.0179176706007269,0.0201189965037109,0.0223043380350891,0.0245707549587412,0.0265724787974618,0.0286202038276823,0.0308283377623962,0.0326924863007337,0.0347721822541966,0.0367268774908131,0.038423645320197,0.0406521806902141,0.0430136643892684,0.0581591967100181,0.0726664226324321,0.0853062679556273,0.0980975404666806,0.1096817018048487,0.1253884038977784,0.1389307149067928,0.1515786785284822,0.1633450817045818,0.175321402914339,0.1891283509429491,0.2022525397872961,0.2145087415820795,0.2256088891805286,0.2369478353715587,0.2479369053025687,0.2587809859705124,0.2684541095427838,0.2777077585130179,0.2869732635029051,0.2948808462865013,0.3025503041647169,0.3095790795177298,0.3169297245393986,0.3235397842662743,0.3310301430034424,0.3362529802986573,0.3422032385566747,0.348282665697448,0.3538323242471512,0.3553650965042516,0.3566632195794553,0.3575887686788508,0.3582843577198112,0.3586924131354669,0.3584444717595722,0.3580527318932656,0.3585229146060006,0.3599945122787762,0.3611340243158914,0.3617597292724196,0.3625708959663665,0.3640753259295026,0.3656723123231052,0.3667326924005991,0.3674463682321817,0.3673410901587665,0.3703107237589996,0.37151909875022,0.3728793261746038,0.3711892337269981,0.3739690310221891,0.3734939759036144,0.3761944805443009,0.3765151515151515,0.3763132760267431,0.3802293151533932,0.3782662795520531,0.3754563324908733,0.3670127795527156,0.0,2.360237911950396,60.60649251737241,211.142358600057,338.94581435771977,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95733,41301,388.2151400248608,7166,73.69454629020295,5508,56.98139617477776,2208,22.67765556286756,77.31464774318667,79.68139511162981,63.30648041847581,65.05635518987671,77.02753063214021,79.3942235117415,63.2008125624717,64.95312880100687,0.2871171110464559,287.1715998883104,0.1056678560041035,103.22638886984237,76.82048,53.96215118960763,80244.51338618867,56367.345836448905,236.87843,145.97574264446416,246877.9626670009,151923.5714377113,256.89019,122.1620583903994,265307.1668076839,125123.75241778394,3182.38276,1435.3802722165935,3293558.3758996376,1468890.804862746,1339.76891,578.8438737623552,1383534.444757816,588716.1257958314,2181.73284,915.4173485296802,2242993.534100049,925537.113900943,0.37979,100000,0,349184,3647.477881190394,0,0.0,0,0.0,20000,208.3189704699529,0,0.0,24073,248.4932050599062,2092611,0,75096,0,0,0,0,0,35,0.3551544399527853,0,0.0,0,0.0,0,0.0,0.07166,0.1886832196740303,0.3081216857382082,0.02208,0.3214945867441246,0.6785054132558753,25.63339622640161,4.628489391581132,0.3213507625272331,0.2006172839506173,0.2391067538126361,0.2389251997095134,10.95797799802544,5.416762383690736,23.55114796462074,12971.40557768356,61.99768815812389,12.8587749943171,20.053257373009234,14.696480053275344,14.38917573752222,0.5406681190994916,0.755656108597285,0.7011299435028249,0.5823842065299925,0.1025835866261398,0.6806784660766961,0.8832807570977917,0.8741721854304636,0.7157190635451505,0.1149825783972125,0.4949421965317919,0.7043147208121827,0.6416097190584662,0.5432220039292731,0.0991253644314868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779871346806,0.0042582960732426,0.0064759739336973,0.0085865257595772,0.0107329976092375,0.0130608419250988,0.0153028432682792,0.0175716240223805,0.0197084619630773,0.0220302198927152,0.024125167891893,0.0260288319369147,0.028081219527248,0.0303239500473972,0.0323496320151942,0.0344150272404916,0.0362427643909662,0.0382791503668115,0.0403331461725622,0.0424215274666888,0.0567452155482934,0.0709964412811387,0.0840799882493652,0.0976104835825918,0.1097073556551542,0.1246006389776357,0.138196021822659,0.1502693839306629,0.161738925944929,0.1735738507103918,0.1866945615718923,0.1990118213043525,0.2112700609045248,0.2233316162690019,0.2339111640421684,0.2445863409217101,0.2556024210962061,0.2660152988695083,0.2756278233560529,0.284330510519482,0.2927267875581544,0.3010646780169785,0.3084798443542838,0.3156940006246846,0.3230325454589713,0.3291601847050399,0.3359473849044785,0.341593235878368,0.3468348855584772,0.352105798038724,0.3535182041124316,0.3546703750619596,0.3556435253014764,0.3565965444950481,0.3584995534385233,0.3581588032220943,0.3583974613248711,0.3594835819912393,0.3595892759188151,0.3604611611378649,0.3617705102903862,0.364420218037661,0.3643841940696283,0.3655612816491149,0.3663113212097824,0.3665437619309118,0.367853661333792,0.3692725778929406,0.3696104353957342,0.3713053203387123,0.3739669421487603,0.3753949975898452,0.3753193663771078,0.3770010053360142,0.3781769539461112,0.3789245759653554,0.3790788446526151,0.3812212463404433,0.3885296598256958,0.3917322834645669,0.0,2.034660752164956,60.1014075035223,206.00250725891124,318.17483630114083,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95808,41469,389.0593687374749,7374,75.60955243820975,5778,59.660988643954575,2339,24.0063460253841,77.3504688262772,79.68282614533227,63.33176974345843,65.0600674581654,77.05802118669116,79.38892681416908,63.22461606185365,64.95437596443816,0.2924476395860296,293.899331163189,0.1071536816047782,105.69149372724952,77.6468,54.61416000984644,81044.1716766867,57003.75752530732,242.0089,149.0643602252342,251901.74098196396,154890.48954704637,272.92112,130.89771559021744,280000.4488142953,132896.62796432426,3324.0536,1503.51548180054,3436851.6616566465,1536657.4000089115,1415.72489,613.1865022605973,1462928.7324649298,625278.0992825205,2306.59146,966.1006229652636,2371744.57247829,980713.3501840323,0.37961,100000,0,352940,3683.825985303941,0,0.0,0,0.0,20402,212.2891616566466,0,0.0,25526,261.752672010688,2085035,0,74994,0,0,0,0,0,53,0.52187708750835,0,0.0,0,0.0,0,0.0,0.07374,0.194251995469034,0.317195551939246,0.02339,0.3266968325791855,0.6733031674208145,25.09206635997544,4.583406928139189,0.3307372793354102,0.2026652821045344,0.231914157147802,0.2346832814122533,11.106911630407415,5.522276625547059,25.060336559442003,13012.149489127958,65.21519643230698,13.752488520531893,21.65172383771877,14.83479562662554,14.976188447430768,0.5484596746278989,0.7754056362083689,0.7080062794348508,0.5604477611940298,0.1157817109144542,0.7172218284904324,0.9277777777777778,0.8763102725366876,0.735593220338983,0.1541218637992831,0.4939317609342798,0.7077681874229347,0.6520223152022315,0.5110047846889952,0.1058495821727019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259051401017,0.0047859018687324,0.0069623464934537,0.0091442040986354,0.0113310413572838,0.0131796052229532,0.0153383305287848,0.0175945592680336,0.0199480593840742,0.0219683475625985,0.02430195953775,0.026605740103712,0.0285681965426106,0.0305358448593703,0.0325691243051473,0.034654488345181,0.0368303918016665,0.0391017995125239,0.0409548156461736,0.0429722470904207,0.0575613114548887,0.071826612439491,0.0849759502027728,0.0976675772221054,0.1101628842952567,0.1253593168752113,0.1385266238310325,0.1512972438222685,0.1632254345133877,0.1746147416250509,0.1884934514264805,0.2010011676685551,0.213941158576333,0.2252161651053224,0.236143199771162,0.2470247988830529,0.2580619956020404,0.2671288376699379,0.2771973654326595,0.2859155897717899,0.2935592906422188,0.3018660427025446,0.3087603423173893,0.3157787474824973,0.322404105757303,0.3292845504369723,0.3352517805196108,0.3416400969264124,0.3473391900133656,0.352000317510716,0.3529475348259042,0.3528168430359462,0.3542205817883557,0.354590689510104,0.3564303287855066,0.356699446834665,0.3564922988889418,0.3576868550328047,0.3587012452403005,0.3606233971197475,0.3619457711255688,0.3632973659155823,0.3640187603844617,0.3652420115949845,0.366799758015729,0.3683782649742998,0.3707456705309861,0.3715225088517956,0.3732084375110047,0.3745306383318686,0.3762634347130116,0.3788015978695073,0.3804745677142496,0.3774834437086092,0.3802923149457803,0.3838228327806726,0.3868199233716475,0.3926045665791069,0.3986928104575163,0.3948678667177326,0.0,2.485175779092083,62.02664924557234,222.07978428545425,330.7715034942397,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95726,41259,387.0735223450265,7246,74.62967218937384,5611,58.12422957190314,2275,23.45235359254539,77.30949638025908,79.67190954067567,63.31695901961641,65.06064987664439,77.03367882812229,79.39454835335596,63.21624250597644,64.96192256111514,0.275817552136786,277.3611873197126,0.1007165136399734,98.72731552924564,77.09042,54.19765863011986,80532.37364979212,56617.49015953854,238.6412,147.0968979304471,248793.9744687964,153162.3779646565,263.50617,126.17712824376908,272837.2333535299,129816.21019106868,3229.31356,1458.8360198797582,3346051.7309821784,1496525.437059688,1353.57843,596.9448037763406,1399105.3632242023,608708.4033811723,2238.73458,926.2637089991769,2308817.520840733,939670.1176833916,0.37935,100000,0,350411,3660.562438626914,0,0.0,0,0.0,20089,209.32661972713788,0,0.0,24625,254.76881933852871,2090205,0,75077,0,0,0,0,0,52,0.5432170988028331,0,0.0,0,0.0,0,0.0,0.07246,0.1910109397653881,0.3139663262489649,0.02275,0.3127850905773491,0.6872149094226508,25.538964057892088,4.585570613968933,0.3405810016039922,0.1985385849224737,0.228301550525753,0.2325788629477811,11.16061960493309,5.5588645193927615,24.12098136767689,12962.569877476062,63.23731940209473,13.041287699574523,21.62343421825645,14.181735774342556,14.390861709921197,0.5421493494920692,0.7800718132854578,0.6692830978545264,0.5722092115534738,0.1233716475095785,0.7146912704045423,0.927170868347339,0.8185567010309278,0.7424749163879598,0.2126865671641791,0.4842931937172774,0.7107001321003963,0.6185133239831697,0.5203665987780041,0.1002892960462873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293262170729,0.0046326332008758,0.0066755945134323,0.0090294141545461,0.0114878259543536,0.0136696285891681,0.0155939458798348,0.017567139955291,0.0197559380237929,0.0219013212432581,0.0237394807244846,0.0259358892744932,0.0282365038560411,0.0302771284100388,0.0322494147252044,0.0343854936198791,0.0365969778513765,0.0386322623467673,0.0408772020994647,0.0430212814716819,0.0574647828493259,0.0705658244541667,0.084139204128296,0.0965024817027004,0.1090418239723282,0.1240150193029774,0.137149830220713,0.149197325838869,0.1615853007157354,0.1730841402086617,0.1867109061920972,0.1995344808920645,0.2122125608070607,0.2236158080791498,0.2345732029598308,0.2453631334464141,0.2564792886187944,0.266803361798968,0.2759137854635111,0.2843271005537276,0.2928337366696386,0.3003592702250413,0.3084903537548705,0.3153562815698225,0.3223406712290468,0.3286324153587997,0.3346980680864916,0.3407130937671171,0.3469340112056443,0.3517668382129202,0.3531159273512929,0.354540563656178,0.3555586947308942,0.3562625809161079,0.3571556323963394,0.3569891812146545,0.3569145129224652,0.3581840968305794,0.3596352646220421,0.3607679046045542,0.3624204061640481,0.3638155536972882,0.3636939046775112,0.36430774773152,0.3645345308896711,0.3659856084878407,0.3666916253887801,0.3669181034482758,0.3677209368145475,0.3698384201077199,0.3699289479715792,0.3734068758701938,0.371896628357356,0.372669850562317,0.3718180951472972,0.3759290338048429,0.3810261974887614,0.3797101449275362,0.381282976950847,0.3883720930232558,0.0,1.8195546384155143,62.59639581204455,202.29563350392712,331.0209707438852,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95730,41327,386.9111041470803,7214,73.99979107907657,5578,57.64128277446986,2308,23.712524809359657,77.40440741590693,79.76183170883266,63.3594678928421,65.09931080921139,77.12623506508578,79.48403388979106,63.25740319690161,65.0002286214105,0.2781723508211513,277.79781904159506,0.1020646959404842,99.08218780088872,76.13518,53.53468831321472,79531.16055572966,55922.582589799145,236.2956,145.5459020364367,246243.95696228975,151446.4034643651,262.05816,125.2998582579809,269737.21926250914,127797.92231462256,3206.31076,1448.226532731558,3315068.045544761,1478565.1443973265,1359.77073,589.5986184341868,1407064.661025802,602546.3537209305,2280.51744,945.003108907809,2345339.9770186986,955725.3173873018,0.38013,100000,0,346069,3615.052752533166,0,0.0,0,0.0,19953,207.79275044395692,0,0.0,24488,251.80194296458788,2101480,0,75295,0,0,0,0,0,40,0.4178418468609631,0,0.0,0,0.0,0,0.0,0.07214,0.1897771814905427,0.3199334627113945,0.02308,0.3166973926784303,0.6833026073215697,25.37897143745691,4.554167251400883,0.3363212621011115,0.2016851918250269,0.2214055216923628,0.2405880243814987,10.880352858707004,5.330333333637722,24.370681698464875,13050.735504808692,62.77375883313626,13.088606902474403,21.31990288634093,13.617438325287123,14.747810719033808,0.5410541412692721,0.7395555555555555,0.7009594882729211,0.5797570850202429,0.1154992548435171,0.7122198120028923,0.9072463768115944,0.8663967611336032,0.7419354838709677,0.1396226415094339,0.4846245530393325,0.6653846153846154,0.6418234442836469,0.5324267782426778,0.1095636025998143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025210849777759,0.0049252596909044,0.0069693834073893,0.0092012390189407,0.0114485577460779,0.013711319218241,0.0159388535031847,0.0181116904584553,0.020179418015367,0.0220516756203632,0.0240747763167334,0.0264694713290158,0.028682752310555,0.030775886042703,0.0328019398441933,0.0349304801778053,0.0370542972835824,0.0392954210668271,0.0415610060278528,0.0438301373858156,0.0577720234304031,0.0720437872175651,0.0859636424667736,0.0986710684021279,0.1106766029661329,0.1258168206906761,0.1386985211431966,0.1512599674228955,0.1629969124921209,0.1748506718426612,0.1889397447633407,0.202720249302084,0.2149903740523608,0.22633627854081,0.2371316652362404,0.2479235420496578,0.2578751799323789,0.2673549025561441,0.2774418947583343,0.2865270797797442,0.2946738175597577,0.3027093308419946,0.3105664166322131,0.3181377999354399,0.3252972619177484,0.3315420560747663,0.3376613638919783,0.3434896362527941,0.3486791087215013,0.3541123488978431,0.3547667669819432,0.3562313704482081,0.3565290767175304,0.3566470902295782,0.3572805742591878,0.357469523853225,0.356723480352593,0.3571522309711286,0.3585388751386874,0.359803834150691,0.3609559512652296,0.3615393761642424,0.3630638762358572,0.3635976797832075,0.36431289436925,0.3657982073326887,0.3663380442215637,0.3697711749708854,0.3717795297761509,0.3717540226222718,0.3731452312468611,0.3743195645212936,0.3727709624383458,0.3726328649969456,0.3721914073516969,0.3731643770724775,0.3726669751658183,0.3707247557003257,0.3711079943899018,0.3699560527367159,0.0,2.485735407697617,60.804972331711824,208.40693841141868,320.5835154859114,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95753,41353,389.2201810909319,7231,74.36842709888985,5586,57.79453385272524,2283,23.51884536254739,77.33232137485312,79.69756893357882,63.31916690730778,65.07089015896955,77.05617208181305,79.42115479042343,63.21766063516589,64.97211683436629,0.2761492930400777,276.4141431553924,0.10150627214189,98.7733246032576,76.49576,53.82962892680869,79888.63012124946,56217.17223147962,238.20366,147.16210423786018,248247.6475932869,153168.06182350442,266.05087,127.03159692190567,274455.4008751684,130041.79753960184,3248.72572,1459.432404305208,3362905.559094754,1494250.4614009033,1353.29937,591.262660560422,1398600.97333765,602765.1149942261,2259.59844,935.4327715025174,2328975.050390066,948014.3255845197,0.37828,100000,0,347708,3631.301369147703,0,0.0,0,0.0,20063,208.98561924952745,0,0.0,24823,255.85621338234836,2094843,0,75131,0,0,0,0,0,42,0.4386285547189122,0,0.0,0,0.0,0,0.0,0.07231,0.1911547002220577,0.3157239662563961,0.02283,0.3183915622940013,0.6816084377059987,25.231021472677803,4.510573848387064,0.3288578589330469,0.1944146079484425,0.2316505549588256,0.2450769781596849,10.677170351825428,5.169059588394141,24.117130011698578,12916.959380135826,62.84202008227751,12.858426124077772,20.70066037312393,14.26652972982757,15.01640385524822,0.5392051557465092,0.7762430939226519,0.6962438758845945,0.5656877897990726,0.1154127100073046,0.7022222222222222,0.9147727272727272,0.8736383442265795,0.7084870848708487,0.1231343283582089,0.4872521246458923,0.7098092643051771,0.637155297532656,0.5278592375366569,0.1135331516802906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021383112408285,0.0042905395125216,0.00652871415807,0.0086694040165867,0.0110380890371937,0.013396359042797,0.0154911479154768,0.017805184330621,0.0197537933008874,0.0220006347321328,0.024244971603141,0.0263333504440223,0.0285247149070941,0.0302905461773763,0.0320869959968635,0.0341798187136316,0.0362405127514832,0.0382508558979147,0.0398237445959428,0.0417343665375161,0.0563524376239691,0.0702402377265307,0.0842012523205689,0.0966005278487534,0.1079596377094294,0.1234993600795405,0.1372698816913364,0.1503187967683907,0.16247997436719,0.1731134250571039,0.1872306963116166,0.2003311795837527,0.2133104131080478,0.2246250779378466,0.2357615310962658,0.2467520960471375,0.2567525335952498,0.2662239729881823,0.2753771239827017,0.2837929177788725,0.2921272876705986,0.2998443552445261,0.3075921498070595,0.3139812272983373,0.320504877485817,0.3265535051711598,0.3323820610065963,0.3384010584972393,0.3446292554018343,0.3502362537285853,0.3520451453891635,0.3521247005039795,0.3533491204330176,0.3539004221361244,0.3542456829235643,0.3544950021463175,0.3547106913247083,0.3553732594650577,0.3565947119246612,0.357724304499508,0.3582943024283806,0.3592797728942092,0.3607581622349377,0.3617953789445293,0.3618199850027817,0.3626336197862083,0.3629599954215075,0.3643737524159564,0.3644400438487924,0.3667710340398201,0.3701441822022224,0.373270152388132,0.3750479355745877,0.3755010792476102,0.3772245361605452,0.3758014723343624,0.3769817073170731,0.3791641429436705,0.3867509620670698,0.3811728395061728,0.0,2.1574630734643923,59.50816090588411,214.08091192562728,320.9206733819667,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95723,41462,389.13322816877866,7274,74.71558559593828,5622,58.12605121026294,2309,23.74559928125947,77.41699606751023,79.77155985420032,63.36600846061516,65.10116910674795,77.13161859758355,79.48634951829376,63.26136827768829,64.99954673210989,0.2853774699266722,285.2103359065552,0.1046401829268788,101.62237463805468,76.89396,54.0296303427919,80329.65953845993,56443.72861568473,235.47235,144.6867083569114,245393.4895479665,150551.4540464793,260.72632,125.06649022494348,268461.7803453716,127638.84546583984,3282.2058,1479.3613543998367,3394861.2559155063,1511463.9056442415,1405.5485,609.1363271931671,1451650.3452670728,619653.6748672379,2293.56882,955.0331099323184,2360033.2835368724,965457.5593531488,0.38144,100000,0,349518,3651.348160839088,0,0.0,0,0.0,19865,206.9199669880802,0,0.0,24351,250.6712075467756,2097493,0,75239,0,0,0,0,0,47,0.4701064529945781,0,0.0,0,0.0,0,0.0,0.07274,0.1906984060402684,0.3174319494088534,0.02309,0.3174686192468619,0.6825313807531381,25.30499274199555,4.586435919767544,0.3299537531127712,0.1931696905016008,0.2248310209889719,0.252045535396656,10.944648316465646,5.337992525875201,24.47788430485736,13067.378126186835,63.01342925251533,12.666177898127469,20.878934971492782,13.94942650896982,15.518889873925232,0.5423336890786197,0.7679558011049724,0.6975741239892184,0.5957278481012658,0.1185603387438249,0.7116077865897621,0.9287749287749288,0.8577494692144374,0.7446808510638298,0.166077738515901,0.4868949232585596,0.691156462585034,0.6430635838150289,0.5529531568228105,0.1067019400352733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0047817321622141,0.0070898247322297,0.0094030199331837,0.0114893443956401,0.0136607015615138,0.0158091083295959,0.017993468054705,0.0201729106628242,0.0222822417285617,0.0246446760326682,0.0267044346603446,0.028526491087399,0.0306784478497281,0.0327638854501939,0.0350200985812158,0.0369296710805578,0.038769498838367,0.0411682170139791,0.0428903311837814,0.057556961760959,0.0717821005158684,0.0855419158535305,0.0978985674919539,0.1100821634620455,0.125244577000772,0.1383838598128858,0.1512964618725252,0.1632070936381603,0.1745699824132458,0.1880195546366886,0.2004695800828798,0.2131623281343405,0.2247116140872148,0.2354906054279749,0.2473306261548845,0.258701032306972,0.2688607139645715,0.2783743635683264,0.2871809545610621,0.2957365371940008,0.3034946236559139,0.3111631371714377,0.3185780310831198,0.3252090742471506,0.3311941070680693,0.3376063031515758,0.3434662053878049,0.3489859049196878,0.3545011940731749,0.3559723699624328,0.3569610150132793,0.3576403575557623,0.3584760856658799,0.35964337808472,0.359323489274269,0.3597847590409116,0.3606396063960639,0.3620554304048058,0.3629880549117489,0.3629047351675089,0.3635717809570794,0.3636420787929589,0.3646068293990218,0.3647517321016166,0.3656486557034716,0.3678026522173107,0.3696882071913502,0.3717093717093717,0.3728927848954821,0.3743125937372176,0.3780118078825594,0.3794710327455919,0.3807919123841617,0.3835577738016762,0.3862991008045433,0.3873929008567931,0.3855786709755605,0.3878440992095939,0.3880484114977307,0.0,2.385612406540705,60.851288251158046,209.05702532002212,323.36696900012066,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95703,41248,387.1665465032444,7195,74.05201508834624,5632,58.34717824937567,2288,23.541581768596597,77.3508434030137,79.74123283837878,63.31502979323547,65.08257931835853,77.06863041923707,79.45817337739436,63.21144426490456,64.98144016809185,0.2822129837766312,283.0594609844184,0.1035855283309103,101.1391502666754,76.80706,54.008967303309085,80255.64506859765,56433.93342247274,236.32803,145.1522475269627,246451.2815690208,151181.76810231936,260.5845,124.2967479333862,269455.05365558027,127631.87243544115,3238.95632,1448.0775089135184,3357315.19388107,1486027.1349001783,1381.73907,595.4910928003163,1432036.017679697,610486.0378465839,2255.977,937.4553467271744,2323888.174874351,950291.984990864,0.37893,100000,0,349123,3647.983866754438,0,0.0,0,0.0,19951,207.95586345255637,0,0.0,24334,251.38187935592404,2094592,0,75102,0,0,0,0,0,41,0.4284087228195563,0,0.0,1,0.0104489932395013,0,0.0,0.07195,0.1898767582403082,0.3179986101459346,0.02288,0.3194499537220679,0.680550046277932,25.413967115038197,4.611140705189874,0.3252840909090909,0.2072088068181818,0.2297585227272727,0.2377485795454545,11.206256133407512,5.482409351539856,24.277184353966728,12997.491026661628,62.99686860659592,13.47636576418576,20.52904213227273,14.312883667712978,14.67857704242444,0.5413707386363636,0.7429305912596401,0.6921397379912664,0.5772797527047914,0.1247199402539208,0.7022222222222222,0.912536443148688,0.8741573033707866,0.712280701754386,0.1552346570397112,0.4906585707613264,0.6723300970873787,0.6337418889689979,0.5391476709613479,0.1167608286252354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0045025402845524,0.0067201981544833,0.0090454508496625,0.011404097743596,0.0136101546423259,0.0159136582031847,0.0177911228220683,0.0203004673709616,0.0224903217877552,0.0245205619936416,0.0266225696120623,0.0289135063412225,0.0307338835141511,0.0329115752972258,0.0349312023818138,0.0370481646861369,0.0390376052230053,0.0410976002995724,0.0429665919633084,0.0576346601769356,0.0719842524631702,0.0847800986669465,0.0968417287379539,0.1085195265523134,0.1236682571758059,0.1370540595047287,0.1495554017357968,0.1612758406909378,0.1728515625,0.1867366628219086,0.2002122084840085,0.2123929438138664,0.2243285248341834,0.235576499603629,0.2461132426977755,0.2564068205420254,0.2670149993243547,0.2763349238809361,0.2853669445941761,0.2938042231823289,0.3022152454810632,0.3097831885157481,0.3165520304416195,0.3231111705815806,0.3297975998125239,0.3357706272693126,0.3413662287401975,0.3471076520635578,0.3526940808158197,0.3539067452556615,0.3547311724270935,0.3565076456909308,0.3570798698951933,0.3579192777167295,0.3581305606174295,0.3581023285284334,0.3589061345158906,0.3604311008468052,0.3616751269035533,0.3623226484498161,0.3622414679479575,0.3632916430980663,0.3638010871753573,0.3646515209857527,0.3659784396126438,0.3660958124715521,0.367418058520658,0.3677887141406004,0.3691158452235089,0.3721572891184199,0.3710207979626485,0.3752752437873545,0.3727363032016504,0.3756032932715056,0.3776633947809432,0.3851122731467241,0.3858204458726652,0.3870791130577607,0.3879377431906615,0.0,1.9910015120490656,59.74127175216008,209.55464775735243,329.2721023195085,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95717,41621,391.45606318626784,7150,73.24717657260466,5588,57.72224369756679,2266,23.26650438271153,77.26691653433518,79.62634942948507,63.2951211478972,65.03887262662154,76.98372776586336,79.34256510547227,63.19092113241116,64.93696447883502,0.2831887684718168,283.7843240127995,0.104200015486036,101.90814778651712,76.38092,53.77271666060567,79798.69824587063,56178.85711065502,237.90636,147.05246178106776,247901.3550362005,152982.0635634921,265.79914,127.4276059041708,272791.3327831002,129502.38464485298,3223.47264,1453.0847186490284,3333052.0597177097,1483445.4889403451,1328.54325,577.3336240962733,1371981.2572479288,587157.6356303197,2238.401,931.8712289882436,2301303.2585643097,943283.801656076,0.38088,100000,0,347186,3627.213556630484,0,0.0,0,0.0,20125,209.57614634808863,0,0.0,24828,254.6256150944973,2089933,0,75053,0,0,0,0,0,35,0.3552138073696417,0,0.0,0,0.0,0,0.0,0.0715,0.1877231674018063,0.3169230769230769,0.02266,0.3081410766374967,0.6918589233625033,25.27769320175554,4.558577845763531,0.3400143163922691,0.193092340730136,0.2285254115962777,0.2383679312813171,11.098180043788297,5.534751733641736,24.245409566847,13047.300713466784,63.09557997402612,12.587337166277196,21.60012732403062,14.366030196866417,14.542085286851872,0.5431281317108089,0.7775718257645968,0.6915789473684211,0.586530931871574,0.0998498498498498,0.6931486880466472,0.9154078549848944,0.8382352941176471,0.7114093959731543,0.1385767790262172,0.4943074003795066,0.7165775401069518,0.6425561797752809,0.5485188968335035,0.0901408450704225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0046436646422451,0.0071335795754353,0.0094168080373015,0.011665276732502,0.013633633022105,0.0160864468117641,0.0180479986933575,0.0203326416078018,0.0225904847690795,0.0246840179184648,0.0267756308905361,0.0288244004771502,0.0306632195865563,0.0324161482352698,0.0346595548939953,0.036720618844947,0.0387081379424824,0.040684379027899,0.0425006512112529,0.0577547589461923,0.0708625977370024,0.0840075979389016,0.0967497553635875,0.1090302908810837,0.12475526251733,0.1382264880130805,0.1511471847638525,0.1624497390709214,0.1737034770753491,0.1878840804709231,0.2020068484244289,0.214845791949817,0.2262586658197071,0.2373516414489272,0.2476327912527058,0.2582142297971325,0.2683899756603263,0.2783635165534323,0.2862253204613726,0.2938888438697429,0.3017025362403691,0.3092888536125952,0.3166306695464362,0.3242112432800603,0.3308319859792898,0.3364353529906062,0.3420733806894265,0.3472987012987013,0.3525452473699552,0.3545021516143874,0.355301929860967,0.3556638246041413,0.3574580502816001,0.3583435344698892,0.3585172870293402,0.3590858416945373,0.3598572467120481,0.3604361209995013,0.361705949985628,0.3630793016327915,0.3645120203789205,0.3653996492636649,0.3668573745382467,0.3682333244364642,0.3690920561484674,0.371285418106427,0.3731770999172132,0.3760824447148071,0.3779610743163626,0.378275413491916,0.380037971250339,0.3832254757480617,0.3870593692022263,0.3865866438029913,0.3854628188240929,0.3829853054911059,0.3923973022685469,0.3915094339622642,0.3956301209520094,0.0,2.605093087809192,60.22764912691812,212.77925941231933,321.02730906134843,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95706,41595,390.529329404635,7234,74.45719181660502,5671,58.71105259858316,2265,23.363216517250745,77.288290147924,79.65691524706287,63.294707477804174,65.04360949157179,77.01208808201963,79.37725788198186,63.194243327455325,64.94351898498651,0.2762020659043713,279.65736508100747,0.1004641503488485,100.09050658527484,76.59498,53.89967279672426,80031.30420245334,56317.75647155277,239.60408,147.50854384384508,249828.6523310973,153601.9374606452,268.9315,128.7438919855982,276768.938206591,131344.44663821845,3225.65168,1451.9029678008744,3342844.9209036008,1489587.1830406396,1359.06379,586.0677348669706,1406983.3343782,599346.5360087481,2222.46826,915.0179617606848,2294862.09851002,934296.232227014,0.38228,100000,0,348159,3637.78655465697,0,0.0,0,0.0,20148,209.95548868409503,0,0.0,25198,259.0851148308361,2087753,0,75045,0,0,0,0,0,46,0.4806386224479134,0,0.0,0,0.0,0,0.0,0.07234,0.1892330229151407,0.3131047829693116,0.02265,0.3203360903242746,0.6796639096757253,25.361103696701765,4.458280632114258,0.3343325692117792,0.2084288485275965,0.2288837947451948,0.2283547875154293,11.247969854243152,5.822304089461512,23.924543769615976,13071.848658511972,63.848325603870286,13.993202326645712,21.54123122905073,14.235813004800608,14.078079043373233,0.5570446129430435,0.7834179357021996,0.6930379746835443,0.5947611710323575,0.1135135135135135,0.7195467422096318,0.9069212410501192,0.822680412371134,0.7689393939393939,0.1393442622950819,0.5031697581591923,0.7155963302752294,0.6484762579730687,0.5502901353965184,0.1075166508087535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875854525567,0.0040652467026895,0.006504444534643,0.0087263048822609,0.0109327963550565,0.0130945229052327,0.0154360637018005,0.0177206145051804,0.0196669699168958,0.0216855139947807,0.0241252792752167,0.0262158444704481,0.028520902305114,0.0306790797305925,0.0327485018205072,0.0350443868007399,0.0372943478666017,0.039413876839418,0.0413225719218688,0.0432091045522761,0.0576483243344856,0.0708557549362423,0.083965620375909,0.0967463591211381,0.1092146928435718,0.1254525820999809,0.1392575760793391,0.1517408165004687,0.1645549318364073,0.1759457108803728,0.1890758114957403,0.2022447564569249,0.2146552381367285,0.2263609687732667,0.2376053312771933,0.2489846645509221,0.260008051169656,0.2698917456021651,0.2787834655076289,0.2875670583910581,0.2961037755551945,0.3037440180163273,0.3111641210049726,0.3182544737822539,0.325544848758025,0.3317922219200435,0.3376341114098344,0.3432134696638966,0.3491077346989173,0.3546938937666362,0.3549014312719417,0.3558959202276054,0.3568456508817119,0.3577255835559168,0.3576516973073074,0.3576525590551181,0.3580602091744286,0.3588780117999934,0.3605403642480732,0.3612685656884551,0.3620494859337927,0.3633350533878458,0.365081704851752,0.3670216343459253,0.3683615003129664,0.3702264190317195,0.3707216730472544,0.3711542106260661,0.3737901801483574,0.3752499800015998,0.3744537969734602,0.3739737053930775,0.3767427122940431,0.3785566377789708,0.3803715518859073,0.3811213626685593,0.3799939005794449,0.3843654822335025,0.3769819573537452,0.3786259541984733,0.0,2.073812007469635,62.40801221412198,211.05072003149505,327.0399943536841,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95811,41415,387.55466491321454,7247,74.02072830885805,5676,58.46927805784304,2270,23.12886829278475,77.36488025655099,79.68024946060615,63.35773544642036,65.07147324641488,77.07672513695921,79.3974352974119,63.24926171682429,64.96891365939285,0.288155119591778,282.8141631942458,0.1084737295960636,102.5595870220286,77.17996,54.30375681127117,80554.15348968282,56677.78210567801,237.66688,146.60122547564472,247257.65308785,152211.34128090172,269.00395,129.67724189775134,276357.87122564216,131862.27742294504,3258.08596,1488.133409083188,3358019.016605609,1510730.844144395,1347.47862,596.8284585450767,1387484.9025685985,604022.7671491362,2236.96392,951.8207949051476,2282741.000511423,948422.2607992066,0.37937,100000,0,350818,3661.5524313492174,0,0.0,0,0.0,20078,208.75473588627608,0,0.0,25199,258.6654976985941,2092712,0,75160,0,0,0,0,0,37,0.3757397376084165,0,0.0,0,0.0,0,0.0,0.07247,0.1910272293539288,0.3132330619566717,0.0227,0.3115703567197578,0.6884296432802423,25.248536222395018,4.48638075781307,0.3350951374207188,0.200845665961945,0.2267441860465116,0.2373150105708245,11.121692358548264,5.729213022691887,24.461233082586187,13016.272860291589,64.31237739887109,13.377085608070962,21.62792503537546,14.51005349229148,14.797313263133198,0.5528541226215645,0.7771929824561403,0.695583596214511,0.5951825951825952,0.1210096510764662,0.717983651226158,0.9085872576177284,0.8805668016194332,0.7507598784194529,0.1549295774647887,0.4952471482889733,0.7163029525032092,0.6306818181818182,0.5417536534446764,0.1119473189087488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.004511537369723,0.006554915171686,0.00920245398773,0.0115211356402721,0.0136439538956543,0.0158514954433321,0.0180084529473017,0.0204448806018972,0.0226009519422693,0.0247714508260566,0.026949364750313,0.0290964777947932,0.0312069001008666,0.0333773141467035,0.0354713163409623,0.0373822108671142,0.0394976790450928,0.0417843495597275,0.0437415461450421,0.0583504573949869,0.071896722939424,0.085074282840559,0.0980202699154545,0.1103831813106949,0.1259214667427075,0.1393227235160736,0.1518660287081339,0.1642641457090726,0.1755385818505147,0.1885121539173383,0.20148575877506,0.2138750937286054,0.2259741962266624,0.2370477855093493,0.2486144451696406,0.2583301758530769,0.2678679758240276,0.2776884034984366,0.2865133836650652,0.2946947548447485,0.302536126070348,0.3101797115157247,0.3168571599545209,0.3230728116420884,0.3284661639311942,0.3347305464145844,0.3404347328389911,0.3453587562942539,0.3504846047339618,0.3515638674583619,0.3532562302079031,0.3538950042337002,0.3542752867570385,0.3548863212821468,0.35528540251437,0.3549038629749201,0.3555808618441682,0.3573981783811651,0.35861697350696,0.3601103323194347,0.3611986123848638,0.3614343336219458,0.3630525888873868,0.3647175421209118,0.3648595483515618,0.3665970294479581,0.3678833502024291,0.3686590363148226,0.3715750680980612,0.3711772291820192,0.3713148267699591,0.3731104278759928,0.3751161350263239,0.3749880394220649,0.3778177458033573,0.3854021385402139,0.3823529411764705,0.3867036011080332,0.3872340425531915,0.0,2.994935548309563,63.900733984394655,212.07574617742048,321.15885422542743,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95636,41435,390.6687858128738,7065,72.6713789786273,5503,56.94508344138191,2275,23.39077334894809,77.2563444549925,79.6670757503273,63.27473565930678,65.05598469178292,76.9782582876035,79.38855526478953,63.172349968538455,64.95601406591707,0.2780861673890058,278.52048553776854,0.1023856907683224,99.9706258658506,76.9824,54.22263067635444,80495.21100840687,56696.88263452512,239.02216,147.43632273674413,249320.015475344,153568.65980513356,262.04313,125.0937516528526,270169.2563469823,127856.41925227668,3177.36532,1421.9068000307036,3291351.8340373915,1456537.4193211182,1342.54705,577.8576006247706,1390146.7125350286,591145.9145043419,2240.08928,925.7039981666718,2306442.9294407964,937922.3529348448,0.37905,100000,0,349920,3658.873227654858,0,0.0,0,0.0,20169,210.25555230248025,0,0.0,24452,251.8925927475009,2085537,0,74967,0,0,0,0,0,46,0.4809904220168138,0,0.0,0,0.0,0,0.0,0.07065,0.186387020182034,0.3220099079971691,0.02275,0.3232186399349769,0.676781360065023,25.4826907524821,4.46635298026974,0.3372705796838088,0.2002544066872615,0.2247864801017626,0.237688533527167,10.90137760730624,5.452277735197711,24.19054066373536,12960.774196233751,61.93137292756242,12.779667638634557,20.940362873440016,13.908408426745936,14.302933988741898,0.5460657823005634,0.7622504537205081,0.6950431034482759,0.5804365400161682,0.1200305810397553,0.7004504504504504,0.9164086687306502,0.8493449781659389,0.7054794520547946,0.1621621621621621,0.4967633660992567,0.6983311938382541,0.6444921316165951,0.5417989417989418,0.109628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281865599837,0.0045609803067005,0.0069515623255766,0.0093058222344132,0.0112320683691118,0.0134470217902875,0.0154643381752897,0.0175221709101311,0.019638729210564,0.0218513737783514,0.0238571648453132,0.0258462993032289,0.0277657668787448,0.0298796770767819,0.0318378562647851,0.0336924016183942,0.0357135452302461,0.0378134674118551,0.0398967720452038,0.0416614511620144,0.0557674822068706,0.0693513241702983,0.0829877696708834,0.095964380447139,0.1077168212563445,0.1235965756976116,0.1371943453897096,0.1506596952303875,0.1626855622174484,0.173361091139322,0.1875761398061601,0.2011353541481594,0.2133358021195255,0.2252649111848954,0.2359551800957275,0.2470249988899249,0.2573493221173207,0.2663029387561858,0.2760243758242757,0.285114293583035,0.2934912478105026,0.3007330948331476,0.3090389043176909,0.3160006246021164,0.3223240174459686,0.3292624136268681,0.3355839461860897,0.3416190281747652,0.3465554862842893,0.3513978380809991,0.3525628032053621,0.3538151111848197,0.3544933078393881,0.3554075861768169,0.3564654140737194,0.3559029117224991,0.3559135672626446,0.3573977990019498,0.3582895077161824,0.3601253737795871,0.3614562647754137,0.3618939348610862,0.3630042900314884,0.3638509791577669,0.3651454290277307,0.3644801006764196,0.3646964213912344,0.3670805879371515,0.3699330278463165,0.3733253588516746,0.374988564632696,0.3768224299065421,0.3748651221834338,0.3751049378005037,0.3755702448561586,0.3738791882963662,0.3806509945750452,0.3819416699960048,0.3808879263670817,0.3849129593810445,0.0,2.2352653137496694,58.88134408180589,204.2314965483733,324.2083099374593,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95698,41328,387.1658759848691,7193,74.16037952726285,5571,57.6919057869548,2266,23.30247236096888,77.32722884548278,79.70253511609191,63.32110870231941,65.07539427031466,77.05117603355222,79.42612687776386,63.21962288750464,64.97612396655971,0.2760528119305547,276.4082383280453,0.1014858148147723,99.27030375494894,77.07524,54.22573647855668,80540.07398273735,56663.39576433852,239.26211,147.8232534672051,249496.35311082783,153946.96176221562,265.41667,127.11322725849382,273922.6943091809,130228.97382161296,3200.03536,1441.3901322897866,3315009.174695396,1477584.4478851804,1371.58597,590.6043235976367,1420623.5344521306,604697.6960883419,2228.38904,924.765246879008,2294474.2418859326,938073.9096119666,0.37855,100000,0,350342,3660.9124537607895,0,0.0,0,0.0,20198,210.51641622604444,0,0.0,24816,255.88831532529417,2088451,0,75017,0,0,0,0,0,42,0.4388806453635395,0,0.0,0,0.0,0,0.0,0.07193,0.19001452912429,0.315028499930488,0.02266,0.3204076230809952,0.6795923769190048,25.527403506861788,4.539229638389156,0.3266917968048824,0.2035541195476575,0.2335307844193143,0.2362232992281457,11.094842514639652,5.671944862298132,24.02632232258542,12990.911938286115,62.49347109665702,13.1711391203493,20.39138189885449,14.45559555187596,14.475354525577268,0.5501705259378926,0.7583774250440917,0.6901098901098901,0.5995388162951576,0.128419452887538,0.7031473533619457,0.9187675070028012,0.8446389496717724,0.7643097643097643,0.1463414634146341,0.4989216391085549,0.6846846846846847,0.6382978723404256,0.5507968127490039,0.1234207968901846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0049761328049781,0.0072435832403368,0.0092933971175233,0.0114296173518674,0.0135929052162137,0.0157546958171027,0.0179649280483694,0.0202585237150512,0.0223756029124125,0.0245205619936416,0.0266009346274328,0.0285535018154513,0.0307473544292058,0.0328606518463475,0.0351004198812749,0.0374314930120282,0.0394626190055959,0.0415440143958227,0.0437470032729471,0.0586484228117819,0.0728922471533824,0.0860220693127465,0.0997117427988301,0.1117720264084878,0.1270878952323527,0.1395780716089734,0.1518313458262351,0.164976978217441,0.1759197683149201,0.1899145906706732,0.202452593298121,0.2139578892417453,0.2251848287326654,0.2358107438835144,0.2465789852744014,0.2572835041189472,0.267521011712553,0.2766469513095008,0.285268972472438,0.2935725620562242,0.3012973631211653,0.3081998673237301,0.3152484226183336,0.3226120383436329,0.3290047030650158,0.3351466532965655,0.3403528451968183,0.3452271282324091,0.350059500198334,0.3512809085875569,0.3517448674286817,0.3523008062352625,0.3528355962134151,0.3536905152120146,0.3532415596400831,0.3535307010577809,0.3542693748767501,0.3558371381179568,0.3565726735360823,0.3570209813811336,0.3592742095057185,0.360922773357963,0.3619468232973142,0.362476439031463,0.3637555730396014,0.3644522177939616,0.3650422187786598,0.3664869816439418,0.367983367983368,0.3692541296645654,0.3693233729241683,0.3701840412660001,0.3730121970047861,0.3750954198473282,0.3809010304337407,0.3845558650572578,0.3880048959608323,0.3883953359244864,0.3876208897485493,0.0,2.026876295270408,61.98467492235101,196.8027266874072,329.8650677202993,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95785,41665,390.3011953854988,7418,76.27499086495799,5769,59.72751474656784,2398,24.659393433209797,77.38146625236273,79.70554786775095,63.35451413110488,65.06838277389035,77.0866642972315,79.40954847559334,63.247126437441445,64.96317921130573,0.2948019551312342,295.9993921576114,0.1073876936634334,105.20356258462016,77.14014,54.30174240496873,80534.67661951245,56691.27985067467,239.65646,147.04092156835102,249701.3415461711,153010.27464462185,265.68051,126.73658954814933,274751.5686172156,130251.08702633208,3341.541,1500.6781038214651,3461220.692175184,1539350.9879641545,1427.64597,620.0708701418326,1481632.5207495957,638528.4675799544,2371.03922,979.2459359053404,2440794.1535731065,993314.7389693502,0.383,100000,0,350637,3660.667119068748,0,0.0,0,0.0,20207,210.4296079761967,0,0.0,24856,256.83562144385866,2092239,0,75096,0,0,0,0,0,36,0.3758417288719528,0,0.0,0,0.0,0,0.0,0.07418,0.1936814621409921,0.3232677271501752,0.02398,0.3120503597122302,0.6879496402877698,25.26043409323305,4.60014067106419,0.3244929797191888,0.2021147512567169,0.2293291731669266,0.2440630958571676,11.34719642666474,5.717434589467783,25.48012432711095,13170.409850756032,64.84762957258488,13.613747881210644,20.93782617747616,14.776839856860116,15.51921565703799,0.5373548275264344,0.7590051457975986,0.686965811965812,0.5774754346182918,0.1171875,0.7002861230329042,0.9228650137741048,0.8453159041394336,0.7235494880546075,0.1554770318021201,0.4852436513383665,0.684931506849315,0.6355272469922152,0.5359223300970873,0.1075555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0045502452470712,0.0068370172751341,0.009038102201641,0.0111543819333584,0.0132744263696887,0.0154721135029354,0.0176532413596057,0.019932570494483,0.0222420019847968,0.0244951900912806,0.0267988139575446,0.0290318271039082,0.0313355706079759,0.0333725102066064,0.0355261799029226,0.0375226367258239,0.0394890987693998,0.0415316213745533,0.0437077680718814,0.0583999499071194,0.0728284868207645,0.086465849974828,0.0985650459921156,0.1102302437378763,0.1260629521512882,0.1395583181297467,0.1524615466496354,0.1645892744614267,0.1757970796972491,0.1895790720206696,0.2036942909362259,0.2175340916505361,0.229256232702132,0.2396667840478915,0.251047184237938,0.2623792776196059,0.2724274926001373,0.2819417784491669,0.2902286330176348,0.2991126248233359,0.3062218890554722,0.3138105053664084,0.3199352479165417,0.3265321002807179,0.3332716962524655,0.3391951936917204,0.3447389517350198,0.350888563391966,0.3554179484809675,0.3568483737975263,0.3574132969862184,0.3583519056619742,0.3596214053803339,0.3611566796909953,0.3613980081150867,0.361477907567293,0.3615750415480558,0.3626273871713625,0.3639469776927067,0.3650909910417488,0.3659913255302715,0.3666848877302161,0.3677158273381295,0.3690680319752699,0.3702705531424983,0.3703280048042552,0.3731781184932803,0.3739995063643736,0.3740659340659341,0.3779671890752452,0.3827904249080343,0.3851781772311574,0.3873901413832633,0.3883550566073637,0.3882591576184226,0.3897420147420147,0.3871820956256358,0.3922651933701657,0.3853317811408615,0.0,1.9070714854074184,62.16245498575964,218.7823230686052,332.3250735472137,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95763,41474,390.3386485385796,7130,73.28508923070497,5543,57.37080083121874,2288,23.558159205538672,77.31912755708531,79.67003551855926,63.32066847763053,65.05892545040346,77.03287211086302,79.3811412049643,63.21548738088823,64.95504923253539,0.2862554462222846,288.894313594966,0.1051810967423065,103.876217868077,77.38654,54.415931276053946,80810.4800392636,56823.544872293,238.11699,147.41277984802335,248151.1230851164,153434.4307924875,268.4653,128.5561156143974,277248.2900493928,131853.09493440745,3199.39404,1455.849801048339,3313690.130843854,1493064.2278000943,1366.25006,603.3535965134301,1415157.680941491,618637.3958735979,2255.07244,944.817161623694,2324035.9846704886,960102.4899557016,0.3797,100000,0,351757,3673.203638148346,0,0.0,0,0.0,20105,209.4128212357591,0,0.0,25030,258.3461253302424,2087160,0,75050,0,0,0,0,0,45,0.4594676440796549,0,0.0,0,0.0,0,0.0,0.0713,0.187779826178562,0.3208976157082749,0.02288,0.3224131042748701,0.6775868957251299,24.940192743917468,4.59511516412353,0.3287028684827711,0.1979072704311744,0.2345300378856215,0.2388598232004329,11.20883311670195,5.569602993892245,24.615701928755463,12911.798308880718,63.12162551501775,12.946583118830194,20.86986739559574,14.652156627828145,14.653018372763675,0.5531300739671658,0.7812215132178669,0.712403951701427,0.5738461538461539,0.1246223564954682,0.7086834733893558,0.8940217391304348,0.8673684210526316,0.7251655629139073,0.1837455830388692,0.4991494532199271,0.7242798353909465,0.6577579806978471,0.5280561122244489,0.1085494716618635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873639226726,0.0045906423859179,0.0069700904995738,0.0091307968880131,0.0113595915835291,0.0135956738260364,0.0157430537853683,0.0177674304619531,0.0200404899695302,0.0222456542658831,0.0240123855515569,0.0261215102011479,0.0281891480521617,0.0302346663370212,0.0323662326406801,0.0340936101609086,0.0360052589624936,0.0379225574906386,0.0398694915782582,0.0419313850063532,0.0561151529701575,0.0707777603431141,0.0838979673176564,0.096793867443401,0.1080189325659108,0.1230162506211607,0.1367695407784494,0.1495829254798485,0.1623477156005424,0.1737433940420423,0.1872294605362334,0.2007402357066329,0.2130045574687014,0.2246850669232788,0.2351543158937118,0.2467909315435646,0.2576193984861679,0.2678310188832121,0.2770650742473093,0.28573228707257,0.2934650438327292,0.3008687914198065,0.3085419036784224,0.3154836230909615,0.3211969285809898,0.3266002001408398,0.3325389757804562,0.3390135329906506,0.3447734060511622,0.3500211629014338,0.3510415682250813,0.3513446386930305,0.3519953615974206,0.3525099439653921,0.3528902811963899,0.3525140008615914,0.3523739816700611,0.353833720911055,0.3546987290533935,0.3563321600459737,0.3572330838408024,0.3580538779402415,0.3578449985233937,0.3587710604558969,0.3590916793763768,0.3594405961376994,0.3607220755366778,0.3604971065363817,0.3603409251662187,0.3631725787166202,0.3657218737121663,0.369759597365744,0.3714558169103624,0.3725731895223421,0.3740603292416024,0.3763402430307362,0.3761736185931968,0.3729851050805958,0.379406050513461,0.3797614467102732,0.0,1.9903338392585144,63.40871883970998,215.07083957581432,306.9141822681985,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95683,41392,388.7106382533992,7188,73.91072604328878,5620,58.1712529916495,2272,23.400186030956384,77.34181859432726,79.72501993058827,63.3271521787835,65.08579734623609,77.06457685169983,79.44525451808667,63.22623947744433,64.98593759972785,0.2772417426274387,279.7654125016038,0.100912701339169,99.85974650824404,77.07942,54.206018181407984,80557.06865378385,56651.67081028813,239.6945,147.68017368118274,249918.930217489,153753.12613649524,264.09735,125.97954634762466,272078.6242070169,128628.6726015343,3243.28352,1447.6989737406527,3359625.597023505,1483028.3475023285,1408.13035,606.0481650479423,1456319.8791843902,618049.5647585703,2244.9357,926.9550822218677,2314403.603565942,942823.3665049154,0.37938,100000,0,350361,3661.684938808357,0,0.0,0,0.0,20231,210.84205135708532,0,0.0,24641,253.6918783901006,2091459,0,75076,0,0,0,0,0,48,0.4912053342809067,0,0.0,0,0.0,0,0.0,0.07188,0.1894670251462913,0.3160823594880356,0.02272,0.3111698612029081,0.6888301387970919,25.393191100086387,4.565016158430813,0.3293594306049822,0.197508896797153,0.2332740213523131,0.2398576512455516,10.987048655762376,5.457502320047067,24.20143038224336,12993.616295481212,63.10995335874877,12.891458798888912,20.78233024454553,14.702066773183278,14.734097542131035,0.548932384341637,0.7738738738738739,0.6888168557536467,0.6025934401220442,0.1194362017804154,0.6991988346686089,0.9241573033707864,0.84375,0.7177914110429447,0.1672727272727272,0.5003531904874029,0.7029177718832891,0.6439024390243903,0.5644670050761421,0.1071761416589002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101021761804,0.0047437079984187,0.0070919107575865,0.0094554244276979,0.0115406515638345,0.0138877575955037,0.0158802964050189,0.0178843032573522,0.019838714623003,0.022049565457728,0.0240751373964399,0.0260863313785701,0.0282707323848029,0.0307685966593506,0.0326882386334313,0.0348890130122675,0.0368501227991999,0.0390281887556455,0.0409878700871772,0.0429402443601184,0.0572031463819741,0.0709245105224583,0.0841397115929556,0.0966245080915002,0.1084633479962446,0.1242384498223049,0.1372944297082228,0.1504603757517696,0.162480368380004,0.1736603360821867,0.1877557613611888,0.2013475806277173,0.2132727193631182,0.2251033035265309,0.2346994896163322,0.2461184079381603,0.2568584120181254,0.2676084853665669,0.2765414165257555,0.2850434643180282,0.2924995372940959,0.3009789359188781,0.3085631143759537,0.315358067299396,0.322159719100441,0.3287345268037678,0.3349861638055169,0.340686212078759,0.3468884941063578,0.3522308393557848,0.3537042530812589,0.3548151516404172,0.3555728100515282,0.3559133091077555,0.3572417695320061,0.3576661393620126,0.3569253219973352,0.3581006597673538,0.3594756682659356,0.3608869163728771,0.3623008949175437,0.363715587244999,0.3649230381554356,0.3655071813285457,0.3659013543854567,0.3653478067070453,0.3674738501217939,0.3695349572919962,0.3718071350125766,0.3752498201295067,0.3766620816139385,0.376382580817526,0.3799835723763189,0.3797177048174286,0.3828582216348877,0.3799807969275084,0.3763906056860321,0.3811951866204364,0.3862493012856344,0.3918971562134787,0.0,2.228567260430565,60.87805355150871,207.37462618539303,327.75128232691924,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95674,41435,390.3881932395426,7112,73.112862428664,5589,57.77954303154462,2161,22.24219746221544,77.38307130315455,79.75967993142875,63.34642469116329,65.0975582973831,77.11578810412355,79.4918247835731,63.24829113723328,65.00138773047674,0.2672831990309987,267.8551478556557,0.0981335539300118,96.17056690636616,76.72742,53.96826334077295,80196.73056420762,56408.49482698847,238.52314,146.94479448219292,248680.8432803061,152962.15022815688,266.1699,127.27442338589334,273745.8243618956,129623.12468664991,3198.806,1438.4850003220265,3310911.930095951,1471036.803227349,1343.88622,579.4914162912776,1390709.69124318,591778.3003259811,2125.65828,887.6523327432621,2191170.244789598,901462.7651112428,0.37983,100000,0,348761,3645.30593473671,0,0.0,0,0.0,20104,209.48219997073397,0,0.0,24840,255.17904550870665,2093013,0,75227,0,0,0,0,0,45,0.4703472207705332,0,0.0,0,0.0,0,0.0,0.07112,0.1872416607429639,0.3038526434195726,0.02161,0.3132932531730127,0.6867067468269873,25.23174490048874,4.620395905283477,0.3410270173555197,0.2007514761137949,0.2320629808552514,0.2261585256754338,11.235105067370284,5.641575667828739,22.91118669677149,12972.279665019229,62.54951948382838,12.90893628030055,21.3575810276795,14.33422263046917,13.94877954537915,0.5532295580604759,0.7522281639928698,0.6962224554039874,0.5959907478797224,0.1170886075949367,0.7037593984962406,0.921921921921922,0.8619909502262444,0.7456445993031359,0.126865671641791,0.5062221178680442,0.6806083650190115,0.6461748633879781,0.5534653465346535,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0044272891212286,0.0066125090009229,0.0089768065315406,0.0114381576940674,0.0136099433003858,0.0158311076678423,0.0176484398125937,0.0199114818108409,0.0218969135486512,0.0239498856844069,0.0262055368438347,0.0280871720506412,0.0302621414224648,0.0321039872079228,0.0338783356414973,0.035800857728883,0.0377366323480571,0.0396830348786422,0.0417899870774104,0.0568996134962916,0.0708729834699496,0.0843570671730258,0.0971032017244098,0.1092507854838369,0.1251374439651526,0.1380732291644582,0.1504381487153309,0.1621673531231993,0.1739670838333619,0.1877367016698226,0.2012975778546712,0.2128702646882982,0.2247229084231467,0.2360920121890848,0.2473737866229333,0.2582255578637003,0.2680528491456505,0.2771266325951164,0.2854785289432366,0.2939017896418401,0.3014191040442123,0.3090331678299304,0.3159082452076006,0.3229659542894676,0.3288815927521384,0.3352086909669577,0.3412918843164734,0.3470676730734314,0.3522135588740584,0.3528548145953153,0.3530504672382709,0.3543832952912334,0.3551885701064322,0.3558344236945402,0.3558963024358797,0.3557089581845592,0.3560069073267001,0.3571342915388964,0.3574100255919251,0.3587890588433527,0.3605321332701721,0.360887307732552,0.3612965153916557,0.3617138609825688,0.362729044834308,0.3639719453672942,0.3653984882225637,0.3682288923995085,0.3697046480323065,0.3738896733931581,0.3743312675459505,0.3754319824065347,0.3767522921876184,0.3785973735680357,0.3852910176835695,0.3891314165286768,0.3861308116627265,0.3882636655948553,0.3841328413284133,0.0,2.47777234445638,58.29981845835234,211.53433886467124,324.187632969748,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95692,41652,391.3075283200268,7312,75.18914851816244,5653,58.48973790912511,2316,23.87869414371108,77.3960056150407,79.77967431181327,63.35197710932333,65.11269999613188,77.11766649810401,79.4999266076166,63.250490907273885,65.01287715031481,0.2783391169366922,279.74770419666584,0.1014862020494433,99.8228458170729,77.40436,54.43461504733576,80889.0607365297,56885.23078975855,241.03502,148.6854445600907,251284.1407850186,154777.039418228,268.18798,128.60609276621173,276024.02499686496,131222.62618593444,3242.33556,1458.9577673561855,3357129.9586172304,1493465.501145535,1374.37267,595.3442828963274,1423273.136730343,609174.3649876711,2276.18988,938.8233821533586,2348277.661664507,954927.4655757018,0.38215,100000,0,351838,3676.7754880240777,0,0.0,0,0.0,20353,212.0553442294027,0,0.0,25067,257.743594030849,2091903,0,74954,0,0,0,0,0,53,0.5538603018016135,0,0.0,1,0.0104501943736153,0,0.0,0.07312,0.1913384796545859,0.3167396061269146,0.02316,0.3132639791937581,0.6867360208062419,25.36446373580822,4.568226583061889,0.3292057314700159,0.2052007783477799,0.2317353617548204,0.2338581284273836,11.310416516471175,5.6943363889447305,24.547887115631987,13071.753251423715,63.54241202427227,13.591801953775828,20.872569237563926,14.705116048897771,14.37292478403476,0.5533345126481515,0.7646551724137931,0.7033852767329393,0.5877862595419847,0.1225416036308623,0.7278571428571429,0.9319371727748692,0.8690744920993227,0.7331189710610932,0.1893939393939394,0.4958852574653186,0.6825192802056556,0.6516220028208745,0.5425425425425425,0.10586011342155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0047149723185496,0.0068106615781246,0.0091135382270764,0.0111895509938355,0.0133181281309819,0.0155999877647154,0.017754137357196,0.0202212271770021,0.0224569592008024,0.0243592372360057,0.0266743328849964,0.0288067959767159,0.0309013936528537,0.0330062628326162,0.0350416571912923,0.0370715639663155,0.0389960868978545,0.040881909417087,0.0430532250836364,0.0583031303203434,0.0728473355937879,0.0860034611148985,0.0987194852709266,0.1107012236896192,0.1263350464226043,0.139863997538801,0.1519293203470115,0.1645108573747903,0.1759665397608451,0.1896039284098985,0.2026237805801302,0.2147583913766312,0.2263004295598377,0.2373119887413141,0.248641229147987,0.2591679678786527,0.2695509543764254,0.2790052118740086,0.2874571232563457,0.2961752546365799,0.3036696283669395,0.3105248857017968,0.3178674006701771,0.3247944108871261,0.3314187319353053,0.3372361539325702,0.3424268185913134,0.3473639345956139,0.3529806730212228,0.3539290368519339,0.355103105521843,0.3564554254840162,0.3571954653765615,0.3584199584199584,0.3581829038629369,0.3581529398723653,0.359003844005651,0.3595649720412456,0.360512490618634,0.3620899833086401,0.3629534446970446,0.3641084703172442,0.3656843045322616,0.3667965742879138,0.3666318810331333,0.3661121239744758,0.3682484628724578,0.3707267216465778,0.3725678213272603,0.3737188031438158,0.3759571619812584,0.3767075417752081,0.3778784157199877,0.3780127655520625,0.3790080461150474,0.3748652394886801,0.3746680286006129,0.3789649415692821,0.3783469150174621,0.0,2.1932032663636627,61.62741488149905,213.1179805263821,322.6637224894535,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95819,41624,389.8913576639288,7287,74.90163746229871,5678,58.6313779104353,2290,23.53395464365105,77.38566316619061,79.70570815407841,63.36611244363343,65.08373600937466,77.10642971821257,79.42571045688764,63.2646652174458,64.98423241781248,0.2792334479780436,279.9976971907654,0.1014472261876235,99.50359156218268,77.21978,54.33917011180092,80589.21508260365,56710.22460242845,241.56305,148.46024602295088,251501.47674260844,154336.19221965465,266.77698,127.71075208788406,273960.7489120112,129898.83772101963,3270.31896,1465.845923198553,3379618.4890261847,1496579.3598128806,1360.28035,595.0831825005058,1404586.7416691887,606116.250908362,2252.05844,929.7933619214858,2316982.393888477,943124.6086695108,0.38161,100000,0,350999,3663.146140118348,0,0.0,0,0.0,20390,212.1604274726307,0,0.0,24908,255.48168943528944,2094027,0,75156,0,0,0,0,0,44,0.4591991149980692,0,0.0,0,0.0,0,0.0,0.07287,0.1909541154581903,0.314258268148758,0.0229,0.3232112602632608,0.6767887397367393,25.75585237765892,4.547700738322671,0.3386755899964776,0.2041211694258541,0.2282493835857696,0.2289538569918985,11.211711463085074,5.685279204078165,24.400746085813,13093.03888355252,63.75264780792237,13.413925378259211,21.69513995540165,14.324244034087132,14.319338440174368,0.5387460373370905,0.7377049180327869,0.6926677067082684,0.5570987654320988,0.1153846153846153,0.6991988346686089,0.9156976744186046,0.8586278586278586,0.7210144927536232,0.1213235294117647,0.4875725900116144,0.6625766871165644,0.6373092926490985,0.5127450980392156,0.1138132295719844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814398428083,0.0046531431525805,0.007013021282642,0.0093979233129457,0.01156475039668,0.0137256898482842,0.0160535730666911,0.0185222981936932,0.0207266595124942,0.0230868417282384,0.0253743120958402,0.0274866826099005,0.0294552929085303,0.0316520844055584,0.0335849367897873,0.0358411832754916,0.0379724570352512,0.0398727223730851,0.0417298307548541,0.0436397690026533,0.0581921728971962,0.0718855183659816,0.0848312074874493,0.0976519409570835,0.1107857594270065,0.1258580994022347,0.1398425830782105,0.1525985758316505,0.1644855427212321,0.176248821866164,0.1902247553500376,0.2033204433018643,0.2156813790408371,0.2272355194656363,0.2385684793112536,0.2497899624143267,0.2600521262613887,0.270131853815225,0.2787733925415741,0.2873540878274092,0.2952762727724316,0.3027547566242559,0.3106558828738414,0.3178715315552261,0.3251714361869684,0.3315354940167579,0.3372987142678816,0.3435703498775365,0.348510297423706,0.3540917532698462,0.3547892307899304,0.3555598354679396,0.3561998957408738,0.357025056420346,0.3579918185198958,0.357869383121366,0.3574728153028018,0.3574651691314515,0.3582058808383542,0.3590838161175183,0.3600496464570483,0.3599539335213057,0.3619317102012374,0.3628643510384286,0.3659832585223826,0.3672356567093409,0.3682150463362689,0.3724170766544993,0.3725309080574108,0.37399549983928,0.3770831415155142,0.3781643029167781,0.3785328675770085,0.3786519438693351,0.3788932279264692,0.3799735545137637,0.3844840961986036,0.3865080992413369,0.3968209704406023,0.4044856921887084,0.0,2.477249046669433,60.15689963952454,213.7901994469206,329.9260656027884,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95772,41565,389.93651589191,7277,74.80265630873323,5617,58.12763646994946,2322,23.89007225493881,77.37657405990127,79.72178956447938,63.3458979718325,65.07942419039644,77.09706134405073,79.44220760151593,63.24447909133914,64.9805917895518,0.2795127158505437,279.58196296344795,0.1014188804933624,98.83240084464262,77.25916,54.384948507021946,80669.88263793175,56785.85443242487,239.49854,147.38257157066533,249570.34415069123,153387.7767726113,263.93219,125.82370949797118,272412.05153907195,128864.77772267615,3241.4518,1444.690666610872,3356284.759637472,1480235.935566629,1387.01759,596.7699757256518,1434607.4322348912,609491.8458223353,2294.19158,941.6508413563,2363358.873157081,955832.3424912055,0.38155,100000,0,351178,3666.812847178716,0,0.0,0,0.0,20230,210.6983251889905,0,0.0,24688,254.6986593158752,2092264,0,75042,0,0,0,0,0,41,0.4176586058555736,0,0.0,0,0.0,0,0.0,0.07277,0.1907220547765692,0.3190875360725573,0.02322,0.317175422507533,0.6828245774924669,25.63703465978375,4.622667024600542,0.3238383478725298,0.1969022609934128,0.2366031689513975,0.2426562221826597,11.158290420796396,5.472943043446485,24.50395315345128,13095.312660345377,62.95357283504842,12.8407455417894,20.46434281160721,14.804592858025522,14.843891623626297,0.5435285739718712,0.7658227848101266,0.7009345794392523,0.5974416854778029,0.1005135730007336,0.7300150829562594,0.9339080459770116,0.8707482993197279,0.7758007117437722,0.16015625,0.4859007224423211,0.6886543535620053,0.6465892597968069,0.549618320610687,0.086720867208672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.0046224492899066,0.0068081738671645,0.0089702954203746,0.0114921487267106,0.01360474944247,0.0159680231668892,0.0182137460693429,0.0204254797125302,0.0225814046329754,0.0246494752377828,0.0268627913899467,0.0289703100583929,0.0309471581137166,0.0329605711102399,0.0349464588415264,0.0370182450763145,0.0391817172733591,0.0411481562340808,0.0432301267431082,0.0579265428812975,0.0720440902721131,0.0850918849786667,0.0976406915033366,0.1101532365153974,0.126397902881424,0.139582714897587,0.1524211825542917,0.1643831227774158,0.1760687976495566,0.189896183337641,0.2034554758581891,0.2152110776326237,0.2259578565020459,0.236488941243821,0.2481046331190423,0.2580313773658645,0.267497214625747,0.2768067913564554,0.2863833636790454,0.2950315229336572,0.3029977084599916,0.310810491213963,0.3180615263025542,0.3257220589306969,0.3325200246457178,0.3384967369289626,0.3441427246273683,0.3498480046568786,0.3547289275821131,0.3553827944262118,0.3565564188956886,0.357311785573512,0.3581080104628813,0.3587980155075607,0.3590002911475812,0.3595575066960394,0.3608011962076274,0.3614614528963806,0.3628614317881268,0.3645160078160228,0.3646609095230549,0.3660474108944183,0.3671883746445444,0.3676314520019296,0.3695492854525467,0.3713492948882977,0.3734594168636722,0.3755552421913558,0.3793860524529959,0.380071599045346,0.3824065145183756,0.3814720812182741,0.3824612551787632,0.3870510396975425,0.3892938224399569,0.3911637931034483,0.3890688259109311,0.3848052660449808,0.3845562812139839,0.0,2.031861657823937,58.790625215968376,212.1367625100989,329.0604106564437,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95759,41414,389.2271222548272,7239,74.46819620087929,5622,58.20862790964818,2315,23.87242974550695,77.3313489084019,79.69842836855261,63.31030609897547,65.06343285292704,77.05319219712474,79.41683184811504,63.209865617584434,64.96377216999403,0.2781567112771625,281.5965204375743,0.1004404813910326,99.66068293300624,76.30304,53.72047791542293,79682.36928121638,56099.66469514399,237.26339,145.62800784897752,247268.54917031297,151574.79490071695,263.25063,125.64122500684724,271112.8666757172,128278.83946540068,3239.31044,1449.3172555543963,3356487.431990727,1487218.554448563,1390.67604,597.6611438619459,1440379.8911851626,612243.740914113,2288.76954,938.5492945350524,2362530.22692384,956492.0289539188,0.38021,100000,0,346832,3621.925876418927,0,0.0,0,0.0,20042,208.77411000532587,0,0.0,24683,254.0544491901545,2095600,0,75191,0,0,0,0,0,33,0.3446151275598116,0,0.0,1,0.0104428826533276,0,0.0,0.07239,0.1903947818310933,0.3197955518718055,0.02315,0.3179778247096093,0.6820221752903907,25.32590353212802,4.607019228431939,0.3231945926716471,0.2072216293134116,0.2246531483457844,0.2449306296691568,11.061417545015107,5.450712113250666,24.460293710823017,13033.38729690398,63.22413507847544,13.630865705257042,20.54453285380397,14.050138497899727,14.998598021514708,0.5369975097829954,0.7493562231759656,0.689598238855256,0.5930324623911323,0.1045751633986928,0.7117776152158011,0.917098445595855,0.8454545454545455,0.7560975609756098,0.1181102362204724,0.4808460634547591,0.6662387676508345,0.6397966594045026,0.5450819672131147,0.101513802315227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417673937932,0.004725351612805,0.0069424004059883,0.0091952855110749,0.0113837514496734,0.0135144768868837,0.015447991761071,0.0176439956298436,0.0198733749961644,0.0221439252719339,0.0243374630784378,0.0263522884882108,0.0286502284608735,0.0307849280620027,0.0328137902559867,0.0345579947677003,0.0363869818686382,0.038414444329148,0.040487723747947,0.0424629998021101,0.0569003851814737,0.0707760884805742,0.0840422518959856,0.0969600740265612,0.1091348080045547,0.1246721380827481,0.1381564287305949,0.1506944148596259,0.163334437546083,0.1745791625092536,0.1882038515836324,0.2012105986941126,0.2136613508953355,0.2254928791146238,0.2363466196872935,0.2471175166297117,0.2575745731101259,0.267445656456497,0.2771441217527493,0.2861644950206851,0.2947489060220879,0.302959674869116,0.3105169551814086,0.3181299475068769,0.3250240393393137,0.3317127344521224,0.3379974695912513,0.3441325978112698,0.3501063995432605,0.3552376045341048,0.356072044866264,0.3565234149161688,0.3573019139160583,0.3572998611753817,0.3582685937523209,0.358242330489654,0.3578537635089163,0.3585599789777953,0.3593052109181141,0.3602481141181938,0.3615735440400893,0.3622783556215948,0.3628075040440326,0.3632631082991183,0.3652954808806489,0.3648811393863231,0.3673399422906608,0.3676656550328781,0.3693712829226848,0.3691011235955056,0.3706579672854255,0.3704000427281952,0.3717997465145754,0.3748469075321494,0.3783605940966347,0.3789448893075836,0.3797391568092205,0.3835425383542538,0.3804851458162987,0.3808250572956455,0.0,1.9820484612542848,60.72064127035219,212.7084551663964,323.74772846411645,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95488,41687,391.7036695710456,7175,73.83126675603218,5576,57.78736595174263,2303,23.72025804289544,77.22623088476638,79.71379004637747,63.24095407219974,65.07638181095133,76.94572825540023,79.43041076052901,63.1381128074347,64.97482372205367,0.2805026293661541,283.3792858484543,0.1028412647650398,101.55808889766148,76.52238,53.88853404411794,80138.21632037533,56434.87563266372,240.62857,149.08848534292656,251393.9657339142,155528.42801496165,270.27932,129.99238316925067,278943.5216990617,133063.67010323162,3219.79724,1451.1556276024894,3340181.216487936,1488108.7542377545,1379.84081,602.2717874046197,1432423.3097352546,618133.6232902375,2269.18878,945.8366536526402,2340911.528150134,962687.2615169887,0.38064,100000,0,347829,3642.646196380697,0,0.0,0,0.0,20293,211.88002680965147,0,0.0,25150,259.21581769437,2083361,0,74763,0,0,0,0,0,35,0.3665382037533512,0,0.0,0,0.0,0,0.0,0.07175,0.1884983186212694,0.3209756097560975,0.02303,0.315684976836532,0.6843150231634679,25.49015052733797,4.5945532259448285,0.3305236728837876,0.2015781922525107,0.2268651362984218,0.2410329985652797,11.289224253792709,5.704176074697465,24.5898072768538,13058.218681977913,62.81582305280769,13.012816630250622,20.87917366297205,14.14949766327952,14.774335096305506,0.5371233859397417,0.7580071174377224,0.6934346174715138,0.5683794466403163,0.1086309523809523,0.7126099706744868,0.9195402298850576,0.8700440528634361,0.7456445993031359,0.1563636363636363,0.4802943969610636,0.6855670103092784,0.6357091432685386,0.516359918200409,0.0963517305893358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509145260171,0.0047166462109608,0.0069141267488374,0.0092933401118454,0.0116570288320573,0.0138205167405595,0.0159185297809161,0.0182290070095845,0.0204916774939384,0.0226942070859203,0.0249014616521596,0.0271026115566522,0.0291404094073067,0.031024062213146,0.0332589424090261,0.0350564775797985,0.0373025176087385,0.0393442963763747,0.0414856487992915,0.0438873110015871,0.0586997707694401,0.0734609089764572,0.0864705140068982,0.0989449942559627,0.1109537648612945,0.1264097345883151,0.1391981117029759,0.1521653312279279,0.1639962299717247,0.1747748135090397,0.188804318488529,0.2018352604290951,0.2148604448320976,0.226099253461374,0.2374384888673124,0.2490026780455823,0.2594473654771227,0.2691431792559188,0.2788197959439016,0.2874279679500425,0.2960904872389791,0.3038709677419355,0.3114598418840958,0.3177313834904752,0.3244647758462946,0.3302757971875619,0.3365738935771509,0.3424876563739159,0.3475443960189943,0.35246173215824,0.3543817397069369,0.3546057174423422,0.3550780973920418,0.3556421699316101,0.3565993255945809,0.3559248999692213,0.3557862225972331,0.35679487391211,0.3573185203019932,0.3577564517288477,0.3589352322821295,0.3597645842446415,0.3601887746502612,0.3614834472831953,0.3620073415765069,0.3628311627053798,0.3647959183673469,0.3666033554922444,0.3693923003499841,0.3711736225041014,0.3713221772710555,0.3768232088475717,0.3784943522433268,0.3817642134104574,0.3817927170868347,0.3841542259315857,0.3857868020304568,0.3903445430162987,0.390169397389614,0.3908531898539585,0.0,2.35996622718684,60.143380544515466,209.8628004758682,322.6876927279723,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95703,41620,390.5520203128429,7186,73.8325862303167,5561,57.44856483077855,2312,23.761010626626124,77.36399481233721,79.74838230040477,63.33329461681414,65.09700499758118,77.07626195079595,79.46009523897733,63.2269642421826,64.9931754286841,0.287732861541258,288.28706142743954,0.1063303746315469,103.8295688970834,77.01408,54.18360188248984,80471.73024879054,56616.17909834576,240.01781,148.3121855964052,250139.5358557203,154318.07113712773,264.92,126.92034471317554,272457.3942300659,129377.80550724114,3222.01644,1457.060761354807,3331721.764208019,1487616.1682587613,1338.95152,583.8509275412549,1382729.0471563064,593724.9485818149,2275.5079,954.6891029602276,2340811.7822847767,966042.1805322252,0.38023,100000,0,350064,3657.8059203995695,0,0.0,0,0.0,20213,210.51586679623415,0,0.0,24663,253.3776370646688,2091910,0,75127,0,0,0,0,0,48,0.4911026822565645,0,0.0,0,0.0,0,0.0,0.07186,0.1889908739447176,0.3217367102699693,0.02312,0.3307824251220477,0.6692175748779522,25.423787370091443,4.697548762910501,0.3330336270454954,0.1916921417011328,0.2362884373314152,0.2389857939219564,10.902569785954224,5.320880254766504,24.712676348555263,13029.499522622687,62.710066469715095,12.456692951305232,20.80600229426116,14.823762429345589,14.623608794803108,0.5329976622909549,0.7476547842401501,0.6744060475161987,0.5844748858447488,0.1128668171557562,0.6918194640338505,0.9196428571428572,0.8722943722943723,0.7360248447204969,0.1073825503355704,0.4786386676321506,0.6684931506849315,0.6086330935251798,0.5352822580645161,0.1144519883608147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0047461133590921,0.0069438804515552,0.0094111429558712,0.0115590467856488,0.0138863418709375,0.0162593333061324,0.0183933167204542,0.0205578227117915,0.0226604818808302,0.0247656746723547,0.026969569370128,0.0291915243777,0.0313652756311179,0.0334379128137384,0.035464659415195,0.0372403791371005,0.0392154827997717,0.0412989469963929,0.0435090643884142,0.0584831965244271,0.0719788155994222,0.0851097310226176,0.0977559046837865,0.1104013829159288,0.1260758315887415,0.1397469750474554,0.1524001021320056,0.1636986740119146,0.1750091105918669,0.1889346864540846,0.2013326987148976,0.213908977217117,0.2255408036046282,0.2370957095709571,0.2483834536516231,0.2590365478156098,0.2684356159452893,0.2781655374348847,0.286522386350624,0.2938699489837234,0.3023394549070066,0.3095632815460402,0.3167973715135381,0.3237113652661132,0.3295293494201595,0.3352363067292644,0.3406826885154133,0.3462350001941722,0.3517851725820705,0.3532309514516064,0.3537253067737853,0.3542884509740397,0.3551874656722458,0.3563629881608461,0.3566992964209238,0.3563434605292276,0.3569311874785114,0.3576359886129246,0.3584700233815839,0.3588194457474154,0.360068090497021,0.3612125026221942,0.3616299955096542,0.3628495660559305,0.3639988457805409,0.3659853008727606,0.3680118825648643,0.3694292277787595,0.3716725865027737,0.3731247713135748,0.3750932537567942,0.3763905663975589,0.3788275119249115,0.3805891886738488,0.3814730265529256,0.3821745216985534,0.3806571605703658,0.3815012651110486,0.3862745098039216,0.0,2.520871226121164,62.46289209098496,204.364700773124,317.8030076890277,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95660,41483,390.0167259042442,7311,75.0888563662973,5732,59.25151578507213,2348,24.08530211164541,77.31725194233033,79.72485505907366,63.30264576078415,65.08455048030092,77.02482709844027,79.43459262727549,63.19514346708272,64.98113953165264,0.2924248438900605,290.262431798169,0.1075022937014296,103.41094864827484,76.35408,53.738450978933066,79818.18942086556,56176.51158157335,242.63741,149.42350452765425,252980.21116454108,155540.27831939486,266.90106,127.7608465514315,275156.439473134,130534.76491568128,3307.6866,1484.8051509798504,3421568.8061885843,1516155.111858131,1409.87501,610.8008277002432,1456355.948149697,621284.797455836,2309.87984,961.1127201058756,2372454.6100773574,968043.1691885636,0.38008,100000,0,347064,3628.099519130253,0,0.0,0,0.0,20477,213.35981601505333,0,0.0,25006,257.4952958394313,2092400,0,75098,0,0,0,0,0,47,0.4913234371733222,0,0.0,0,0.0,0,0.0,0.07311,0.1923542412123763,0.3211598960470523,0.02348,0.3159600674186438,0.6840399325813562,25.3307671844795,4.562283985655943,0.3206559665038381,0.2041172365666434,0.2377878576413119,0.2374389392882065,11.105576060788293,5.552393814485392,24.89311477477854,12992.397650065675,64.40502450149303,13.644736651938157,20.636531906490283,15.21159662033993,14.912159322724667,0.5457083042568039,0.7658119658119659,0.6877040261153428,0.5942773294203962,0.1160911094783247,0.7014492753623188,0.8954802259887006,0.8528735632183908,0.7484076433121019,0.1624548736462094,0.4963235294117647,0.7095588235294118,0.6364932287954383,0.5481410867492851,0.1042435424354243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027657612935252,0.0049586776859504,0.0069111095324598,0.0088406548181568,0.0112122907869969,0.0130691657329122,0.0153734723440719,0.0173770022883295,0.0195617032596018,0.0217302215027764,0.0239563348346653,0.0265626766135413,0.0286578963621765,0.0308988184836175,0.0329047250193648,0.0350129332643559,0.0370285903841768,0.0389859903833172,0.0412227401365074,0.0427820865649236,0.0571070365146528,0.0704442163905585,0.083636020071805,0.0964941815197491,0.108356454862906,0.1232075012435046,0.1368118280140526,0.1494190442719149,0.1612603272661201,0.1728999034438365,0.1859097274587956,0.1993698980144209,0.2122620459962776,0.2235395866176213,0.2355682369012471,0.2468239363235261,0.2577436962127047,0.268379953642235,0.2782840606026215,0.2865521191294387,0.2944792378129956,0.3020442072992359,0.3092155910603674,0.3158267083947864,0.3232551636942752,0.3297309300862356,0.3355876164712955,0.3415847884742656,0.3472483065007058,0.3521859041184466,0.3526560290850333,0.3538129179624074,0.3553997155450411,0.3560988304009021,0.3575344098194601,0.3573349727195881,0.3566223746249464,0.3578839882736585,0.3587070042974301,0.3597910105926138,0.3609214856605547,0.3619372631495406,0.3634677011300388,0.3657219973009447,0.3668145562101486,0.366635125900226,0.3675660160734788,0.3697564062005694,0.3722790500123881,0.374464507346759,0.3765090775043774,0.3783246467143087,0.3806365201862364,0.3823188181607239,0.3852817974105103,0.3877551020408163,0.3879350348027842,0.3891825945506303,0.3893996755002704,0.3908132530120481,0.0,2.567348060030923,60.4340641530146,217.9177582430665,331.76806349772727,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95851,41478,388.4466515737968,7315,75.1270200623885,5722,59.060416688401794,2375,24.339860825656487,77.4717338221379,79.75813849573751,63.40399372213196,65.09045471655462,77.17584474438102,79.46490908509793,63.295074708692106,64.986120278576,0.2958890777568825,293.22941063958297,0.1089190134398521,104.33443797862196,77.715,54.66500819238997,81078.96631229721,57031.23409499115,240.70636,147.955017382046,250489.15504272256,153722.9839876955,266.66078,127.38376795928198,274740.3156983235,130163.47811347694,3301.9596,1480.1187140010786,3408954.815286225,1508388.5811372472,1399.07309,598.2767877617356,1444979.676790018,609550.1330469629,2343.11556,971.9220507071714,2403209.606576875,976978.1740436248,0.38093,100000,0,353250,3685.407559649873,0,0.0,0,0.0,20260,210.71245996390232,0,0.0,24940,256.7213696257733,2092560,0,75038,0,0,0,0,0,50,0.5112101073541225,0,0.0,0,0.0,0,0.0,0.07315,0.1920300317643661,0.3246753246753247,0.02375,0.3150116670987814,0.6849883329012185,25.492010843877345,4.556008143639927,0.3275078643830828,0.2016777350576721,0.2280671094023068,0.2427472911569381,11.116234396627789,5.592952710096455,25.03570984358666,13059.822487881986,64.10000789494198,13.500666714269528,21.069591098936037,14.417608490267629,15.112141591468786,0.5489339391821042,0.7755632582322357,0.7091782283884739,0.5770114942528736,0.1180705543556515,0.698741672834937,0.9393063583815028,0.8402625820568927,0.7220216606498195,0.1291512915129151,0.5026309768931595,0.7054455445544554,0.6669019054340155,0.5379377431906615,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368660795627,0.0045992847808248,0.0067634711715913,0.0087900933820544,0.0111068205836923,0.013277442591594,0.0152493684296308,0.0174828384622446,0.0198313011866103,0.0220076904197005,0.0242833294073065,0.0263470965889278,0.0285276955950032,0.030692458071818,0.032831328406057,0.0348730340675568,0.0370952725768077,0.039187844616724,0.0414005794212018,0.0433560902506036,0.0571035288228914,0.0708177389340748,0.0843988429613482,0.0975002364215238,0.1095359058952494,0.1253158534651371,0.1375046396945755,0.150088838293028,0.1622853848125053,0.1733108941032704,0.1872268979916912,0.201124142031022,0.2141530642165966,0.2263471092427799,0.2368733248385254,0.2484906119379879,0.2594424761013437,0.2690251572327044,0.2782812606203412,0.2867176061493411,0.2958265469961072,0.3036820913812219,0.3110780352966192,0.3182981981766409,0.3251086244143991,0.3309853951678447,0.3369047470213909,0.3423233350279613,0.3473878955675731,0.3525279417967102,0.3538871469135636,0.3550876903849587,0.3562607252370101,0.3572077463265512,0.3586708203530633,0.3584816241668195,0.3589593639855221,0.3601711587645091,0.3616527628503676,0.3621878842966369,0.3625980639967047,0.3648787423967138,0.3651106268856856,0.3662157629960872,0.3679379040203782,0.3698123044838373,0.3706074832835396,0.373113725490196,0.375405433683256,0.378074296316766,0.3796912490379827,0.3832217617681436,0.3872561439067646,0.3907524234497615,0.3911545089029293,0.399251026818072,0.4058396415881353,0.4058236611688047,0.4023783185840708,0.4034749034749035,0.0,2.533663177281733,59.04721528694149,222.29212336298647,327.5910069583866,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95740,41442,388.803008147065,7347,75.42302068101108,5742,59.40045957802382,2304,23.61604345101316,77.34438518034166,79.69776313900903,63.33412346583962,65.07250106006603,77.05901798850962,79.41441751452341,63.22834674136082,64.97079996103082,0.2853671918320373,283.3456244856194,0.105776724478801,101.70109903521052,76.6326,53.87108626896917,80042.40651765197,56268.107655075386,240.94915,148.18196540140963,251085.8053060372,154190.89764091247,264.04795,125.78222058485404,272955.70294547733,129086.62251029654,3310.05856,1482.839212498788,3424352.329224984,1515829.9274062957,1395.93757,603.1826603339027,1441342.667641529,613313.7250197434,2264.87996,947.4665310983904,2323533.632755379,952995.1290970404,0.38105,100000,0,348330,3638.291205347817,0,0.0,0,0.0,20320,211.64612492166285,0,0.0,24658,254.6897848339252,2093351,0,75196,0,0,0,0,0,48,0.5013578441612702,0,0.0,0,0.0,0,0.0,0.07347,0.1928093426059572,0.3135973866884443,0.02304,0.3192282958199356,0.6807717041800643,25.39947018402747,4.615237927963203,0.3369905956112852,0.1969696969696969,0.2326715430163706,0.2333681644026471,10.988766580242164,5.501649163647405,24.47468998736799,12999.24290107127,64.3095290542528,13.098794718886966,21.7197375419027,14.75673681570556,14.73425997775758,0.5414489724834552,0.7648099027409372,0.6764857881136951,0.5703592814371258,0.1291044776119403,0.6827133479212254,0.9041916167664672,0.8506493506493507,0.6950354609929078,0.1535836177474402,0.4971402425074354,0.7063989962358845,0.6218601493550577,0.5370018975332068,0.1222540592168099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0045623675646081,0.0067979585831836,0.008896742938972,0.011295931024666,0.0133254608939969,0.0154705366788283,0.0179805092096535,0.0200365787618395,0.0223472833316279,0.0245204524961062,0.0266242430462896,0.028552921096465,0.0308441725625894,0.0329392588924651,0.0352082838157636,0.0373360659979919,0.0392632692427353,0.0413020432767257,0.0430625,0.057328697758428,0.0713014902880107,0.084439968951266,0.0966283154197253,0.1089517141019286,0.1244633377746758,0.1378706885579737,0.1509708996116401,0.1632238907995642,0.1740179260657003,0.1882589785548187,0.2008914082952898,0.2132511254648659,0.2247294194817973,0.2351970608617219,0.2458419152658738,0.2566025941553367,0.2665406639891097,0.2759364358683314,0.2848191170068962,0.2944287565966114,0.3022964558265836,0.3093825845024566,0.3160522273425499,0.3217425135867913,0.328242484103957,0.3349303900664743,0.3403660947764526,0.3460245779317683,0.351298460887502,0.3535289516977264,0.3543538164783687,0.3552451499118166,0.3561397921070157,0.3572013641711469,0.3577234523132711,0.3574142069206682,0.3579437867386758,0.3601727595249113,0.3617516470925236,0.3622714546103688,0.3638507888686276,0.3644429493513866,0.3652298979729426,0.3651431198432093,0.3666081672211017,0.3680412371134021,0.3704266362830738,0.3712105151579393,0.3738942480887003,0.3750343689854275,0.377438370846731,0.3792577529232333,0.3782897246166756,0.3778954334877564,0.3826852182185753,0.3845440494590417,0.3835303878863306,0.3737402015677492,0.3740726278797345,0.0,2.221259446277971,60.45162077953562,214.7913324799924,336.3882253086803,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95678,41425,388.78321035138697,7264,74.89705052363135,5628,58.3206170697548,2291,23.68360542653484,77.28108161739658,79.6666519246891,63.29287913429015,65.05520135604098,77.00321045078383,79.38526117907259,63.19221991744882,64.95496887904021,0.2778711666127549,281.39074561651967,0.1006592168413362,100.2324770007732,77.00066,54.13645542758751,80478.96068061623,56581.92628147276,237.25671,145.690379331384,247470.9024018061,151768.30549487242,264.59291,126.13676249057411,272346.4955371141,128796.0461182342,3257.538,1452.4438020519858,3377654.8422834924,1491020.299391694,1352.13054,581.1012153566692,1401443.3934655825,595587.0257077588,2256.11342,924.5734169517686,2333207.9474905413,945061.702230194,0.37985,100000,0,350003,3658.134576391647,0,0.0,0,0.0,19984,208.34465603378,0,0.0,24785,254.8861807312026,2090398,0,74997,0,0,0,0,0,25,0.2612930872300842,0,0.0,0,0.0,0,0.0,0.07264,0.1912333815979992,0.3153909691629956,0.02291,0.3218631427449954,0.6781368572550046,25.37246634833182,4.597481847740139,0.337775408670931,0.1945628997867803,0.2359630419331911,0.2316986496090973,11.153653953315944,5.530758501479786,24.19358661883157,13042.477651925594,63.169881803393366,12.608210432226992,21.58746531444592,14.87246548517868,14.101740571541765,0.5465529495380241,0.7634703196347032,0.7012098895318254,0.5820783132530121,0.102760736196319,0.6927710843373494,0.9172413793103448,0.8461538461538461,0.7137931034482758,0.1141732283464567,0.5013953488372093,0.7080745341614907,0.650319829424307,0.5452793834296724,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002096945752925,0.0044201583552144,0.0066878431452144,0.0090825044955349,0.0113398287329902,0.0136145167202965,0.0154985011317984,0.0176828521256176,0.0198722208024533,0.0219756599351068,0.0242589535634823,0.0265000616041726,0.0285996359485391,0.030930915460306,0.0330574247615902,0.035391916622724,0.0372388361180455,0.0392112091333679,0.0414100857119081,0.0432756949438729,0.05797298285571,0.0719431239922099,0.0847879252254048,0.0969890165383158,0.108954342138577,0.1250806613703441,0.1380715832378041,0.1506831808645459,0.162178342723356,0.173828083059546,0.1886088372644816,0.2020156046814044,0.2147065550025592,0.2262533125999255,0.2373921570787928,0.2484999722730549,0.2593047949033195,0.2688144184736694,0.2781426850610241,0.2870708043762471,0.2954835121544272,0.3031133921561734,0.3107542313577113,0.3181168386531,0.3249917842232744,0.3303953881667469,0.3360956834622569,0.3426257731301409,0.3479683240295989,0.3526063590395256,0.3543541109399908,0.3545745767860594,0.3550985165892877,0.3553135888501742,0.3561944589649765,0.3566846647284138,0.3571383157961662,0.3581116757969771,0.3595403325546241,0.3604872273249139,0.3616672322135505,0.3622260772467149,0.3628150060303421,0.3636343099826055,0.3661030947869601,0.3680214381420277,0.3679370006322929,0.369674861221253,0.3722326189046997,0.3739022832508382,0.3749713919531285,0.3776615614493836,0.3777679081276568,0.3795943266737837,0.3811951288586803,0.3847513551732265,0.3875443194080468,0.3917274939172749,0.3974849644614543,0.4006223259432127,0.0,1.988317812758688,58.911054636144144,210.28316343909609,334.4375807858819,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95716,41771,393.4242968782649,7196,73.82255840193908,5575,57.5452379957374,2346,24.08165823895692,77.3612597271838,79.72639359741424,63.34108899169471,65.08901661085388,77.07773082660688,79.44315293655812,63.2378533041126,64.98839175889071,0.2835289005769255,283.2406608561229,0.1032356875821136,100.62485196316118,77.44484,54.46967757282031,80910.38070959924,56907.006804583725,239.34804,147.8995236672199,249326.110577124,153786.75988743792,265.03509,127.0473991890114,272411.05980191403,129300.86687560512,3216.37308,1447.8039718472328,3323997.952275481,1476626.9197961478,1332.86304,575.8005013926639,1375809.154164403,585034.4224461224,2310.41742,949.63543453133,2375230.870491872,960137.4074202796,0.38233,100000,0,352022,3677.744577709056,0,0.0,0,0.0,20223,210.48727485477875,0,0.0,24715,253.6253082034352,2090814,0,74983,0,0,0,0,0,41,0.4283505370053074,0,0.0,0,0.0,0,0.0,0.07196,0.188214369785264,0.3260144524735964,0.02346,0.3191180353842091,0.6808819646157909,25.398196837295245,4.486265006890761,0.3262780269058296,0.2005381165919282,0.2337219730941704,0.2394618834080717,11.144085083060668,5.715820530374634,24.71659079473253,13040.59773442326,62.658207085586,12.913486105911003,20.69170507824383,14.467913408870796,14.585102492560372,0.5426008968609866,0.7495527728085868,0.7014843320505773,0.5863392171910975,0.1101123595505618,0.7251506024096386,0.9106628242074928,0.8652173913043478,0.7653429602888087,0.151639344262295,0.4855191900164822,0.6770428015564203,0.6460632818248713,0.5380116959064327,0.1008249312557287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285025475835,0.0045826912158325,0.0066164681049704,0.0088691570744988,0.0110749516932777,0.0131463717643225,0.0154589766075908,0.0174707714300301,0.0197940842679971,0.0219389844389844,0.0240841561317707,0.0259949673907461,0.0280260410774341,0.0302452793258681,0.0320410290278308,0.0342089755916012,0.036317130252884,0.0383018907083411,0.0403136080523234,0.0421441967076474,0.0572162418952358,0.0720617941659776,0.0853420605450311,0.0982587849347044,0.110002107925801,0.1252708916961784,0.1396288441145281,0.1521755323110974,0.1638181507434626,0.17548561382445,0.1888929563513426,0.2024642745102281,0.2139642088325469,0.2253864486083477,0.2361737218251786,0.2478277713210471,0.2587347079880898,0.2682214105085698,0.277654315388453,0.286276844177847,0.2941448578136022,0.3018828231829178,0.3097243582160179,0.3172107393480708,0.3239007823397416,0.3304790728574592,0.33669873797326,0.342168490904237,0.3477427790940045,0.3538699159087008,0.355029824821253,0.3557370961752692,0.357022091974752,0.3578249797430258,0.3590808292777306,0.3587551981831295,0.3591942181506958,0.3600184034966643,0.3614216842753103,0.3626198654644339,0.3636261155472052,0.3650995509279497,0.3660082547169811,0.365713900498854,0.3658837473694395,0.3652608067271055,0.3659111826967326,0.3686751580217895,0.3715095676824946,0.3747442737374142,0.3740531607216636,0.3745596242126615,0.3750079209175591,0.3763993252568624,0.375520242149073,0.3758220734186296,0.3803121619533302,0.3765165535677565,0.380249716231555,0.3835839089800893,0.0,2.622269925914072,57.923398467096746,213.7636451455511,323.58756634476003,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95646,41391,388.6414486753236,7174,73.66748217384941,5559,57.50371160320348,2313,23.86926792547519,77.2430810454354,79.65019451696304,63.27207635196621,65.05124646089565,76.96164603963906,79.36512346780432,63.16856399673653,64.94879351473774,0.2814350057963395,285.0710491587165,0.1035123552296823,102.45294615791067,76.48784,53.76582212256881,79969.72168203584,56213.35144446062,236.78689,146.0719911268798,246928.14127093655,152083.7535804453,260.49945,124.26417479917755,267753.7168308136,126481.95473735464,3192.38448,1437.8970373001332,3304417.832423729,1470412.0455174262,1320.69747,573.7075741890217,1366671.6433515255,585820.4139826078,2273.1728,943.041133072259,2347314.597578571,960824.2774625656,0.38031,100000,0,347672,3634.9873491834473,0,0.0,0,0.0,19993,208.3725404094264,0,0.0,24376,250.3607051000565,2091478,0,75056,0,0,0,0,0,29,0.3032013884532547,0,0.0,0,0.0,0,0.0,0.07174,0.1886355867581709,0.3224142737663786,0.02313,0.3047845625165213,0.6952154374834787,25.55252463107111,4.553184347051993,0.3191221442705522,0.2063320741140493,0.2401511063140852,0.2343946753013132,10.88439294158704,5.416933839469222,24.65555377417905,13078.027689330596,62.8328499673037,13.362221005040688,20.21799110910464,14.934897598057209,14.317740255101162,0.5475805000899442,0.7680906713164778,0.6972942502818489,0.5760299625468165,0.1204911742133538,0.6772334293948127,0.9020771513353116,0.8211920529801324,0.6747720364741642,0.1561338289962825,0.5044353871973148,0.7123456790123457,0.6548069644208933,0.5437375745526839,0.1112185686653771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021282633371169,0.0044631083520986,0.0071672943971249,0.0093376278970523,0.011473558939306,0.0136259483680431,0.0157736426204435,0.0177871262865544,0.0199402814136125,0.0220677084400024,0.0243562264770128,0.0263514623726585,0.028497089615171,0.0309476959213738,0.0332166929881604,0.0352301281189572,0.0371582774802399,0.0392551689778294,0.0412020470999417,0.0431718429091212,0.0575184709115799,0.07195231810278,0.0855879975222316,0.0981758470785133,0.1102911678385169,0.126319355487566,0.1398432022436101,0.1533213223457672,0.1654807887782069,0.1769911504424778,0.1910012947777298,0.2036119632733146,0.2154231565188977,0.2262278924601653,0.2381162311397176,0.249570070231108,0.2598029898140591,0.2699430761427042,0.2793524108371136,0.2877524571926645,0.2963679994435492,0.3038033992807862,0.3107787837133242,0.3173082694131345,0.3242022474646018,0.3305247031788587,0.3367126725219573,0.3422859914728484,0.3481985026515545,0.3536346296492529,0.3537753048739314,0.3542373816817065,0.3552592508801945,0.3561999535801323,0.3575842612771293,0.3574933472796911,0.3577521723907438,0.3590797991808693,0.3597637403203929,0.3622355518839122,0.3643949405323768,0.3653366832166856,0.3654381965552178,0.3664893137343313,0.3667102966841187,0.3663653374799041,0.3671039704097555,0.3679605472478524,0.3706035065258366,0.3713293210001211,0.3711660711799917,0.3736518550474547,0.3744009201865934,0.3751545117428924,0.3778651577634986,0.373722803221541,0.3764318217479994,0.3779527559055118,0.3761185682326622,0.3744631003514252,0.0,2.446755009754422,61.37202101478072,205.46717212681145,323.2283821720832,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95824,41753,391.6450993488061,7376,75.79520788111537,5791,59.92235765570212,2338,24.044080814827183,77.44904619750217,79.77419255915294,63.38601454967061,65.10628445762954,77.16384397567437,79.48756268569792,63.28136333094319,65.00341528840383,0.2852022218278023,286.6298734550128,0.1046512187274189,102.86916922571264,77.1551,54.20517491925229,80517.28168308566,56567.201243166935,240.73608,147.7361190097517,250725.5280514276,153672.63838887092,266.96046,127.5129063748317,275341.51152112207,130615.2700713668,3333.27764,1497.4933793391829,3451635.206211387,1535847.6575170977,1416.26784,611.3010267732338,1464185.0684588412,624198.0022930312,2314.1333,963.9922320964356,2382004.2995491736,978240.114645622,0.38296,100000,0,350705,3659.876440140257,0,0.0,0,0.0,20260,210.9074970779763,0,0.0,25054,258.17123058941394,2097370,0,75289,0,0,0,0,0,43,0.4487393554850559,0,0.0,0,0.0,0,0.0,0.07376,0.1926049717986212,0.3169739696312364,0.02338,0.3246753246753247,0.6753246753246753,25.41824901575719,4.611623462950187,0.3147988257641167,0.2084268692799171,0.2322569504403384,0.2445173545156277,11.102585899610135,5.46521366848472,24.830154394711943,13133.949392223994,65.03542366375697,14.046803612145968,20.52295229484213,14.867965818087455,15.59770193868143,0.545156276981523,0.7887323943661971,0.6977509599561162,0.5776951672862454,0.1101694915254237,0.6943042537851478,0.922077922077922,0.8699763593380615,0.6898954703832753,0.1438356164383561,0.4981834695731153,0.7262773722627737,0.6457142857142857,0.5472589792060492,0.1014234875444839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022077514355447,0.0045614426322564,0.0070013089403671,0.0092644325027173,0.0113792367064278,0.0136132691191593,0.015874310532916,0.0179426203574235,0.0200408788962698,0.0221526434805742,0.0243787467336168,0.026549671592775,0.0285978618421052,0.0307535494764586,0.03280700487825,0.0350944253894789,0.0371140849297771,0.0391111848449343,0.0413593201321503,0.0434198746642793,0.0582166774456011,0.0724845265975242,0.0858765825438081,0.0989483195175507,0.1113897640699255,0.1265548545279688,0.140438838244647,0.1532768319527004,0.1649988264663835,0.1764548394696823,0.1907301860415098,0.2032497488142954,0.2155738683864803,0.2266020604155753,0.2371949010178201,0.2483251895907492,0.2595876449424685,0.2698421608028918,0.2797178250334035,0.2886788787439006,0.2968133010045029,0.3050430073643546,0.3123524412125791,0.3196068584546954,0.3263997478696195,0.332808657156911,0.3396539671443551,0.3454040057878303,0.3506312266601196,0.3550285729334,0.3560312852765683,0.3567463588898049,0.3580158361813144,0.3584769492797552,0.3592934266729948,0.3598055848502912,0.3603151296989216,0.3610783542976939,0.3626624427298894,0.3642321597122046,0.3661318673099218,0.3672897933427985,0.3684849499727885,0.3683550820332609,0.3686490649594455,0.3695476680294784,0.371523122129347,0.3730313720549326,0.3724369154755602,0.3743683603230812,0.3748111523142425,0.3771193239557148,0.378997461928934,0.3787751357137396,0.3810966947627616,0.3853287361788134,0.3900938317181972,0.3918200408997955,0.388030888030888,0.3938931297709924,0.0,1.968657846512764,61.254543623776016,225.4244636862399,329.4046087578637,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95817,41078,385.19260673993136,7329,75.38328271601074,5706,59.08137386893767,2284,23.586628677583317,77.3497797498425,79.68058981598963,63.33168066437421,65.05904152517708,77.07536408192539,79.4027587813642,63.23169945995466,64.95929722900323,0.2744156679171112,277.8310346254358,0.0999812044195493,99.74429617385285,76.71554,53.96234291434856,80064.64406107475,56318.130305007006,236.76338,145.6290039941501,246632.30950666373,151519.35877156467,268.22278,128.0320691851187,276235.32358558505,130906.04339601925,3289.01128,1485.8875610906675,3407991.0245572287,1526149.8910325598,1389.18035,600.9875862548995,1440322.6880407445,617720.4736684511,2252.07982,936.618720948945,2327055.741674233,958487.8298649724,0.37749,100000,0,348707,3639.302002776125,0,0.0,0,0.0,19925,207.44753018775376,0,0.0,25131,258.55537117630485,2095055,0,75176,0,0,0,0,0,42,0.4383355771940261,0,0.0,0,0.0,0,0.0,0.07329,0.1941508384328061,0.3116386955928503,0.02284,0.3120041617895695,0.6879958382104305,25.37890497595061,4.54230714678047,0.3317560462670872,0.1943568173852085,0.2365930599369085,0.2372940764107956,10.967177367922554,5.440693935687018,24.308283615635904,12946.936446132524,64.28643649300868,13.0517975362766,21.33851995332626,14.905520783590884,14.99059821981495,0.5513494567122328,0.7799819657348963,0.7131537242472267,0.5888888888888889,0.1004431314623338,0.712878254750176,0.9173553719008264,0.9039301310043668,0.749185667752443,0.1228668941979522,0.4977829638273045,0.7131367292225201,0.6522648083623693,0.5417066155321189,0.0942507068803016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046032019629513,0.0069620638561308,0.009224923548954,0.0116875190723222,0.0137671198004174,0.0160889070146818,0.0181803333911783,0.0203501742694481,0.0226204976509483,0.024910047052311,0.0270137070691513,0.0288828337874659,0.0307885577774574,0.0326473773789261,0.03480021905126,0.0367050347797283,0.0387499611048302,0.0407995761083001,0.042768500395619,0.0571783262742807,0.070513691826727,0.0833508007042844,0.0960972636711361,0.1079901769622361,0.1232158338795965,0.1355464814127379,0.1487772172913607,0.1602832486008459,0.1713053830560829,0.185328850961124,0.1984999675317647,0.2120806683200626,0.2236166072716937,0.2344243357720446,0.2452905456318425,0.2557918935809303,0.2657413447911277,0.2759778945337766,0.2851531634697967,0.2936759533506108,0.3019518869800133,0.3088719028799962,0.3153784421526704,0.3222018482313082,0.3285334187381439,0.3347214927090368,0.3399630972831965,0.3456806113197772,0.3504054518080245,0.3509741791950381,0.3525128261709053,0.3534286803427974,0.3544994269631951,0.3551296000953928,0.3549135256351181,0.3552211799438122,0.3562248004607916,0.3575589364035088,0.3580364183812459,0.3595125253893026,0.3617346432469981,0.3627727100760856,0.3635303353145677,0.3649453703480379,0.3672161172161172,0.3680118897907854,0.3710723506076444,0.3706588086718586,0.3729055258467023,0.3759864969663792,0.3768293331914214,0.3787744227353463,0.3802588996763754,0.3809839795241255,0.3840752201856701,0.382339343504392,0.3830219333874898,0.379746835443038,0.3740219092331768,0.0,1.8070123566249847,63.14507717864009,214.18763323703692,326.8703645485069,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95796,41331,387.2917449580358,7249,74.37680070149067,5663,58.50974988517265,2337,23.967597812017203,77.41775944651599,79.74488550929946,63.37436231324406,65.09487883561057,77.12822672205199,79.4580934431424,63.26788954664614,64.99251680146395,0.2895327244639958,286.7920661570622,0.1064727665979248,102.3620341466227,77.44088,54.470581115760055,80839.36698818323,56861.01832619322,239.86958,147.37454098456948,249754.2799281807,153200.54799279777,268.13229,127.9244085098898,276373.6272913274,130779.7371577515,3252.48924,1474.6732282532696,3360491.795064512,1504669.2255502765,1352.86377,595.3739576900875,1392440.1958328115,601766.3442082363,2307.99356,962.2945819904722,2369003.152532465,968996.0676099992,0.3792,100000,0,352004,3674.5166812810553,0,0.0,0,0.0,20218,210.39500605453253,0,0.0,25083,258.3406405277882,2093399,0,75206,0,0,0,0,0,46,0.4801870641780449,0,0.0,0,0.0,0,0.0,0.07249,0.191165611814346,0.3223892950751827,0.02337,0.32,0.68,25.277096226017598,4.555167539647797,0.3243863676496556,0.207487197598446,0.23079639766908,0.2373300370828183,11.068032310842328,5.505069989095289,24.81230505006011,12961.75146849398,63.798479841578725,13.76102203564543,20.686816400308427,14.686232993268115,14.664408412356751,0.5467066925657779,0.7676595744680851,0.6880783886771911,0.595256312165264,0.1130952380952381,0.7230014025245441,0.926027397260274,0.8760504201680672,0.7310126582278481,0.1672862453531598,0.4873731413736134,0.6962962962962963,0.6223365172667157,0.5519677093844602,0.0995348837209302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020352575461476,0.0043080291526866,0.0066767460502683,0.0088358960817371,0.0110733750915154,0.0133352335192801,0.0156355111609418,0.017677798644566,0.0198184754389909,0.0219326974249805,0.0241084881968859,0.0264840838867959,0.0287312013651175,0.0306998579282228,0.0328617681631643,0.0351897374455163,0.0372252349215548,0.0392203618267585,0.0410139206316226,0.043289051763628,0.0583662865310977,0.0717145634924783,0.0858700209643605,0.0984684552196474,0.1096903307352011,0.1250977326035965,0.1387829477074328,0.150930356193514,0.1627629037593503,0.1737965909212654,0.1878804827155979,0.2004472871064629,0.2131314886408062,0.2244463373083475,0.2350291176793759,0.245452533746404,0.2561069425707691,0.2658279038418333,0.2752138689026117,0.2843480449355938,0.2925256540630489,0.3002978102189781,0.3082394083315611,0.3158373641109142,0.3220129145021119,0.3285752992758264,0.3344293447685248,0.3402405227428746,0.3462792804451922,0.3514942195388813,0.3526152273613707,0.3536333608587944,0.3539382837818797,0.3543771408749945,0.3553989353793083,0.355001456809434,0.3552260558248582,0.3561115035234982,0.3577622998395302,0.3588928571428571,0.3592861566176885,0.3600948241801659,0.3614745848012078,0.3624245135316484,0.3634410678510222,0.3625988168158735,0.3646792927848029,0.3668603549548411,0.3675123326286117,0.3688070469129897,0.3705060682390657,0.3718729955099423,0.3717436775052291,0.3700053480021392,0.3704230696262569,0.3692031156381066,0.3661048689138577,0.3639337558781435,0.3606019151846785,0.3667434715821812,0.0,2.3245646808876157,62.78341202554922,212.91467998925316,320.8236466266691,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95728,41386,389.4262911582818,7305,75.29667390941,5697,59.00050142069196,2283,23.524987464482702,77.3893283971574,79.74949433769487,63.35181630130408,65.09335002531664,77.1170144995946,79.47601888616906,63.25348065801016,64.997059287943,0.2723138975627961,273.47545152581176,0.0983356432939217,96.2907373736357,78.53934,55.17658962982485,82044.27126859436,57638.92448377157,239.83987,147.46177632669702,250031.2343306034,153530.6350563023,270.94345,128.82938206739547,279425.8837539696,131967.273285849,3274.26056,1462.9118052767094,3393586.0354337287,1501636.5427861337,1387.20263,597.9209595600935,1436251.4206919605,611850.1703164903,2249.71156,918.26426595699,2320670.8382082568,933895.2207333096,0.38084,100000,0,356997,3729.28505766338,0,0.0,0,0.0,20205,210.534013036938,0,0.0,25323,261.1357178672907,2086646,0,74873,0,0,0,0,0,48,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.07305,0.1918128347862619,0.3125256673511293,0.02283,0.320754716981132,0.6792452830188679,25.60325254459895,4.548540816757947,0.3287695278216605,0.2130946111988766,0.2266104967526768,0.231525364226786,11.169243254362502,5.603220426666097,23.99038558359805,13043.306457408602,63.83922391701313,14.133738862871176,21.17348047944044,14.226089243496354,14.305915331205169,0.5585395822362647,0.7841845140032949,0.7095568606513615,0.576297443841983,0.1190295678544351,0.7199124726477024,0.9102564102564102,0.8836206896551724,0.690566037735849,0.1547619047619047,0.5073971336107258,0.7245145631067961,0.652235628105039,0.5467836257309941,0.1105904404873477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813393155554,0.004581065604508,0.0068774535163263,0.0088543200349298,0.0110304582977512,0.013008163182216,0.0150517691178868,0.0171731189159404,0.0193936669153034,0.0215391541916933,0.0236909519417973,0.0257828210284401,0.0278462803123715,0.0299125064333504,0.032052472000495,0.034143165683225,0.0361409611363024,0.0380055390168763,0.0399434576087973,0.0418871619650818,0.0564071506139838,0.0707984973892661,0.084411021260082,0.0968342252736276,0.1094995151157397,0.1251083899075777,0.1391357841369508,0.1512928877864952,0.1634939964961757,0.1754961561967255,0.1892019942068935,0.2022800034611058,0.2149068458009956,0.2266331383589351,0.237750005500671,0.2485129761522358,0.2591873402747553,0.2691325813380717,0.2779921027549584,0.2865113188525341,0.2946047533684149,0.3027135725392538,0.3106796116504854,0.3176903088289884,0.3238875736052935,0.3311044614380534,0.338096906597257,0.3438755786153924,0.3491397724183463,0.3546166627106575,0.3559376722550114,0.3569159688131678,0.3574703268267987,0.3580594814879043,0.3592325284386231,0.3585549469045506,0.3582155616680894,0.3588516746411483,0.3591948140566359,0.3600157025088326,0.3612401648557512,0.3621981846585853,0.3633310242038751,0.3648239854796423,0.366647368167125,0.3678628202121283,0.3693048982152021,0.3713737938837728,0.3721951048214348,0.372835583796664,0.3735529627087623,0.3737832923307305,0.3745874587458745,0.3770016775964618,0.380164507894488,0.3797498511018463,0.3789134438305709,0.3834418226200162,0.3797003109980209,0.3811588490342925,0.0,1.9789734493930649,60.72441522940984,212.73597395945453,332.5025908913684,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95677,41331,387.5748612519205,7227,74.42750086227619,5609,58.10173813978281,2344,24.143733603687405,77.35982293729873,79.73378741118609,63.33991942654043,65.089102873522,77.07477533153346,79.44624168150418,63.23622111336347,64.98645516491811,0.2850476057652713,287.5457296819093,0.1036983131769631,102.6477086038824,76.69464,53.99830868691732,80159.9548480826,56438.12900374941,238.50381,147.09312797662906,248749.87719096543,153210.11920000752,266.87688,127.70063300070998,275012.43768094736,130530.19401080297,3239.06816,1465.5709831926024,3357619.741421658,1504031.2444049828,1380.11192,601.99287904931,1428499.9111594218,615276.5289963374,2309.6165,955.6173943906308,2381586.0865202714,973197.1544514484,0.37897,100000,0,348612,3643.634311276482,0,0.0,0,0.0,20164,210.18635617755567,0,0.0,24907,256.45661966825884,2093384,0,75027,0,0,0,0,0,51,0.5330434691723194,0,0.0,0,0.0,0,0.0,0.07227,0.1907011109058764,0.3243392832433928,0.02344,0.3151387610153887,0.6848612389846114,25.35992191453536,4.602503650305505,0.3360670351221251,0.1968265287930112,0.2278481012658227,0.2392583348190408,11.1581308691704,5.617618669537093,24.91174770153977,13007.051794001807,63.52271415419079,13.078260576143974,21.43967640924687,14.22300400187376,14.78177316692617,0.5467997860581209,0.7726449275362319,0.6885941644562334,0.5782472613458529,0.1318926974664679,0.6984463276836158,0.8929577464788733,0.8562628336755647,0.7074829931972789,0.1678571428571428,0.4955878845695206,0.7156208277703605,0.6301859799713877,0.5396341463414634,0.1224105461393597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0046117513505843,0.0066656521077461,0.0089171457008795,0.0112046526761021,0.0132322255585525,0.0153761501543728,0.0176611027221156,0.0198778320292549,0.0219637449873148,0.0243817485196795,0.0263452167222364,0.0285937467880855,0.0307860217046601,0.0327904362087283,0.0350055810492372,0.037298908880101,0.0396087867410649,0.0413760123088438,0.0433840157570578,0.0581358906857214,0.0720649977489503,0.0856168337093981,0.0978011572856391,0.1094318529377643,0.1245913433562216,0.1378340514954044,0.150343990287333,0.1624961251910681,0.1740968898237781,0.1880327144596618,0.2009355914583965,0.2131936056065206,0.2245340221305285,0.2352021319942295,0.2464521132221791,0.2575042139691683,0.2680266294813548,0.2771154042495263,0.2854411175359249,0.2935296907717402,0.3009511107991436,0.308706405841351,0.3164142987205903,0.3236000873807617,0.3301192059504458,0.3360969387755102,0.3416789583439296,0.3463818770226537,0.3519579625571017,0.3534099781912173,0.354111588455607,0.3551946494334777,0.3565281534300467,0.3574327639266759,0.3572315665199859,0.3566828463563973,0.3585135446496165,0.3596549891112368,0.3610951834862385,0.361655322829316,0.3629597284798443,0.3644076717404577,0.3643388216267211,0.3657246376811594,0.3657885787532372,0.3658236890984426,0.3684609313338595,0.3721838918614474,0.3725857940941739,0.3735745362949393,0.3751474214645652,0.3734878064392242,0.3727709722437587,0.3764222200975237,0.3776673132880698,0.3823072139303483,0.3834802213568354,0.3805479452054794,0.3759720062208398,0.0,1.9813355086315656,62.82334112214398,215.4522683897519,314.7678623918328,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95856,41713,390.7632281755968,7219,74.09030211984644,5558,57.419462527124026,2362,24.29686195960608,77.34109898624328,79.63265975912009,63.34986309044478,65.04452233565024,77.0488466298353,79.33744528606793,63.243265854400846,64.9387745472812,0.2922523564079853,295.2144730521553,0.1065972360439317,105.74778836904386,76.15344,53.65900190470378,79445.66850275412,55978.76179342324,238.37311,147.2415510405802,248159.3849106994,153088.07068997266,261.81572,125.42758755329952,269040.1435486563,127749.54155104495,3239.36792,1459.7198462596948,3349274.661992989,1492689.707748805,1361.41272,592.3814508868484,1404156.276080788,601878.6209385411,2334.10704,975.0532973496591,2402953.868302454,991205.4015417424,0.38251,100000,0,346152,3611.166750125188,0,0.0,0,0.0,20081,208.92797529627776,0,0.0,24415,250.6989651143382,2095621,0,75210,0,0,0,0,0,44,0.4485895509931564,0,0.0,0,0.0,0,0.0,0.07219,0.1887270921021672,0.3271921318742208,0.02362,0.3165637724944174,0.6834362275055825,25.458573289094986,4.642915170043652,0.3296149694134581,0.1899964015833033,0.2284994602374955,0.2518891687657431,11.104035965970905,5.5047053347188255,25.362603267396583,13114.532231465617,62.86188856723649,12.37153079187778,20.77232886083897,14.211118124274249,15.506910790245492,0.5275278877293991,0.759469696969697,0.6926855895196506,0.5645669291338583,0.1028571428571428,0.6790393013100436,0.9145569620253164,0.8629550321199143,0.7006802721088435,0.1178451178451178,0.4777724665391969,0.6932432432432433,0.6344322344322344,0.5235655737704918,0.098821396192203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024302566958635,0.0045799515659989,0.0067857468885981,0.0094320466221292,0.0116479986990018,0.013758853700236,0.0160966614709088,0.0184850803366488,0.0206728903233714,0.0227605184283478,0.024706280024993,0.0264607242854066,0.0285429633738008,0.0308043706401629,0.033034858679636,0.035123028651639,0.0374211560335022,0.0395366667357384,0.0413292637348947,0.0435497295047856,0.0579764548857676,0.0712643437911502,0.0855155654250639,0.0984141986977525,0.1104828094561154,0.1264443083162586,0.1401406809466302,0.152803470051668,0.1650376661900595,0.176486978887579,0.1902650581664388,0.2041052483588739,0.2169195982084619,0.2279558844425984,0.2386846216471934,0.2500581633670496,0.2603659897344342,0.2699975249195598,0.2790272797421814,0.2878527579256001,0.2964261335369593,0.3045558219778934,0.3118632033607479,0.3185986024379427,0.3257939449920393,0.3322640345465762,0.3380348732337909,0.34353507565337,0.3499591804999417,0.3548787902820736,0.356253624849948,0.3575298090840168,0.3582899029702131,0.3591793502705996,0.3599241824992911,0.359295438812399,0.358798174038905,0.3591115514821237,0.3605580434033758,0.3615567653315066,0.3619204483065447,0.3630359743809733,0.3641153691516601,0.364002443273081,0.3642387332521316,0.3654866555793141,0.3659373288362305,0.3680305683808311,0.3694172692471288,0.370877910005209,0.3725057471264368,0.3746447149675551,0.3778969546063972,0.3795148247978436,0.3808292636215646,0.3811129848229342,0.3801961700140121,0.3841738417384174,0.3927181767648693,0.4027885360185902,0.0,2.2369400951808407,60.76131615744902,211.15841731589725,319.350913106087,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95655,41566,390.6852752077779,7391,76.09638806126182,5778,59.95504678270869,2277,23.490669593852907,77.31769350596971,79.7397144527274,63.289715480586615,65.0812134405275,77.04593637323968,79.4666842408451,63.18980540536428,64.98328951281269,0.2717571327300305,273.0302118823005,0.0999100752223398,97.92392771481671,76.56286,53.88156621805873,80040.62516334745,56329.06405107807,241.7748,148.89103850105278,252341.9267158016,155239.04500658903,267.57753,128.02425010807687,277188.8766922796,131823.27108603434,3309.78732,1483.3493571248148,3436079.1176624326,1526677.6615177616,1389.2774,602.6023578242315,1441781.2555538132,619372.5553543794,2243.1812,924.739092996214,2316178.05655742,940735.091667044,0.38125,100000,0,348013,3638.210234697611,0,0.0,0,0.0,20360,212.39872458313727,0,0.0,25057,259.4636976634781,2090485,0,74937,0,0,0,0,0,51,0.5227118289686895,0,0.0,0,0.0,0,0.0,0.07391,0.1938622950819672,0.3080773914219997,0.02277,0.3104999357409073,0.6895000642590927,25.184528923914176,4.607475748825968,0.3286604361370716,0.2012807199723087,0.2409138110072689,0.2291450328833506,11.04913895261203,5.513558501390771,23.925207251019728,13062.551330988876,64.71162374852182,13.491691094077916,21.388207867433536,15.471415072568282,14.360309714442067,0.553478712357217,0.7773000859845228,0.69826224328594,0.5876436781609196,0.1132930513595166,0.7080028839221341,0.9277777777777778,0.8398268398268398,0.7272727272727273,0.1400778210116731,0.5046686404008198,0.709838107098381,0.6527487821851079,0.5479704797047971,0.1068416119962511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024009238998298,0.0044315093497748,0.0063553299492385,0.0085569975304627,0.0108457883545128,0.0131519967400162,0.0154652847203803,0.0175829340307931,0.0197517218793814,0.0220793997355392,0.0242880900075964,0.0266001747982108,0.0287511971084039,0.0308338233321986,0.032949320659193,0.0350176433457164,0.0370973260479631,0.0391490864520686,0.0411385159746071,0.043080613202628,0.0580323551542513,0.0720071252685073,0.0851951052990914,0.0971394266214479,0.1090248590195788,0.124148741249113,0.137713733116545,0.1502014624682883,0.1621520422791364,0.1733946333813135,0.187704290229668,0.2008539135900131,0.2130656441316804,0.2241097930974052,0.2351722237531,0.246927138800142,0.2583853986207821,0.2685371870107342,0.2784414817506643,0.2873793751575859,0.2961028432451213,0.3038170262076715,0.310802326545601,0.3176816463670726,0.3236303453647139,0.3301176876958377,0.3363557804300725,0.3426952702272582,0.3494814622763806,0.3552118448013748,0.3562497470966698,0.357473481195757,0.3586994851541011,0.3597888953152111,0.3608270408466615,0.3610356940162287,0.3605215570571999,0.3614341085271317,0.3618391825855175,0.3634386365257078,0.3647921029015854,0.36517640562447,0.3661516648943934,0.3668464933791074,0.3688263090983233,0.3693461448324349,0.3689171103960819,0.3703087736914773,0.373508353221957,0.3754224148212937,0.3774561443686163,0.378306171520171,0.3818273983018629,0.3828387886203732,0.3862088535754824,0.3906101048617731,0.3911769242634583,0.3861526039563989,0.3883842554362786,0.3898045228056727,0.0,1.7821428986054884,61.68024367107432,214.81018746785483,338.7300133727841,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95709,41507,390.10960306763207,7249,74.48620296941772,5659,58.54203888871475,2407,24.68942314724843,77.34880342590687,79.70792462578153,63.338894218876014,65.07789805409739,77.05209481254093,79.4117280407954,63.22956346268453,64.97186906807848,0.2967086133659364,296.1965849861343,0.1093307561914898,106.02898601891296,77.15136,54.3036127452967,80610.35012381281,56738.25109999759,241.88289,149.31527509501132,252129.9041887388,155412.1295750779,269.89707,128.73297787195287,279139.1614163767,132208.18892599086,3273.18244,1482.5855537030125,3388024.2819379577,1517242.5598930204,1433.51714,621.6483149663045,1484419.44853671,636151.4434027151,2370.22064,985.921308739538,2434399.8370059244,994148.0836299936,0.38021,100000,0,350688,3664.1068238096727,0,0.0,0,0.0,20450,213.03116739282615,0,0.0,25180,260.16362097608373,2088623,0,74939,0,0,0,0,0,55,0.5746586005495826,0,0.0,1,0.0104483381918105,0,0.0,0.07249,0.1906577943767917,0.3320457994206097,0.02407,0.3293562344303133,0.6706437655696866,25.30407387555477,4.540652574273104,0.3212581728220534,0.2002120515992224,0.2330800494787064,0.2454497261000176,11.03583135004401,5.576586441243424,25.64431605157696,13046.533162149968,63.97521375967561,13.342606063881975,20.451819390718665,14.80700190928208,15.373786395792884,0.5447959003357483,0.7872903795233892,0.680968096809681,0.5928733889310084,0.1231101511879049,0.6940350877192982,0.935064935064935,0.8600917431192661,0.7114093959731543,0.1372549019607843,0.4945677846008502,0.7112299465240641,0.6244573082489147,0.5582761998041136,0.1191135734072022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.004672991931233,0.0066967683019633,0.0091731935513363,0.0112554904831625,0.0134168066371456,0.015656375182199,0.0176992957027661,0.0198559092534873,0.022179008239087,0.0244142426665026,0.0264381382460101,0.0286231288040796,0.0306287385077884,0.0326700296062472,0.0347603252839001,0.0370163286014558,0.0389192666452235,0.0408105972383962,0.0428159093040461,0.057210293257582,0.0714547376573898,0.0845670398388399,0.0973674796405799,0.1095381759108841,0.1257616790792146,0.1388806350284404,0.1517003470965269,0.1639172614214282,0.1747623849471132,0.1884554474645292,0.2017854244440837,0.2142585199769392,0.2256215613138925,0.2367531995906284,0.2474843743073717,0.2576886555325923,0.2674721043090539,0.2766346437737049,0.2854785478547855,0.2935345276835242,0.3010287078539914,0.3087390598908062,0.3169752050261378,0.3246606472311001,0.3304567589225174,0.3366567007343099,0.3425990713058965,0.3481108507966916,0.35302734375,0.3540504111066181,0.3549107142857143,0.3559142667663783,0.3571883688600556,0.358481291706387,0.3589113850215666,0.3591098836563338,0.360346132333103,0.3613572101790763,0.3620711278330198,0.3639437254644151,0.3652165295808146,0.3660182946062454,0.3666411836128974,0.3674719209914794,0.3690713536201469,0.3704459844149869,0.3737944162436548,0.3765392781316348,0.3787981904800032,0.3816976615724544,0.3825275199654651,0.3847735303565692,0.3840118085767557,0.386852207293666,0.3838690115221346,0.3846760208103421,0.3876439790575916,0.3819523269012486,0.3746534653465346,0.0,2.267511890660295,62.94688459611609,212.24917021766348,323.8326038015477,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95641,41588,390.7529197729007,7238,74.57052937547704,5614,58.186342677303664,2217,22.87721792954904,77.26744378178137,79.68546679842338,63.28338998351626,65.07062618508644,76.998860840158,79.41437924162372,63.18502143051579,64.97362497002929,0.2685829416233645,271.0875567996567,0.0983685530004692,97.00121505714776,77.3509,54.42653419037517,80876.29782206376,56907.11534841247,241.01675,148.6468288501395,251441.51566796665,154861.6794577007,265.84928,127.27650264625956,275008.86649031274,130712.29178123736,3232.76816,1446.4488552983928,3351615.2277788813,1483881.4057761754,1357.58229,583.9910394223543,1404550.872533746,595701.8950265617,2193.32756,912.2413487675208,2263875.9946048246,926779.7623655604,0.3799,100000,0,351595,3676.195355548352,0,0.0,0,0.0,20307,211.7397350508673,0,0.0,24830,256.6367980259512,2086229,0,74863,0,0,0,0,0,44,0.460053742641754,0,0.0,1,0.0104557668782216,0,0.0,0.07238,0.1905238220584364,0.3063000828958275,0.02217,0.314503415659485,0.685496584340515,25.575599023775094,4.611758971780833,0.3361239757748486,0.2025293908086925,0.2231920199501247,0.2381546134663341,10.99713723915298,5.402526777573316,23.78102858783153,13032.547903005638,63.10465082614067,13.122471038493796,21.29933627391841,13.797910869233077,14.884932644495397,0.5390096188101176,0.7440633245382586,0.6841547429782724,0.5778132482043097,0.1234106207928197,0.7173091458805745,0.934131736526946,0.8702127659574468,0.7203065134099617,0.1550387596899224,0.4840363551619669,0.6650062266500623,0.6224417784050812,0.5403225806451613,0.1158480074142724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026546699900703,0.0050294058000405,0.0075434535412605,0.0097248191203967,0.011871941728807,0.0141565160712103,0.0162326406590941,0.0182135601180206,0.0201842554627347,0.0222629568565606,0.0244910517409363,0.0266774869540206,0.0286704797959015,0.0305921628834324,0.0327618418472146,0.0350153521694631,0.0368912732771299,0.0389844933884125,0.041117548549496,0.0431718429091212,0.058503244954905,0.0727048029995182,0.0857442898398529,0.0982004654150301,0.1101997297525546,0.1258867876580335,0.138401248924714,0.1508428702342135,0.1627824896522957,0.1745699375040268,0.1885305123311011,0.2017786154529403,0.2134182174338883,0.2246126236540313,0.2355693540751505,0.2471775667800441,0.2578938556839109,0.2677844041858895,0.2768933802656977,0.2856700711853915,0.2942981541953264,0.3022088588342654,0.3102006985968859,0.316813267253069,0.3233100998674111,0.3299009803195298,0.3358222979491098,0.3420261804105333,0.3475476150345525,0.3523623088725464,0.3531302328093772,0.3538578225194787,0.355042788149236,0.3564108139450605,0.3571822915889523,0.3566718416158138,0.3562534785719965,0.356880567768282,0.35838546576399,0.3597003691623956,0.3601219604005119,0.3601950442830132,0.3618384988403963,0.3633340822287126,0.3651269649334945,0.3672719638920961,0.3685220729366603,0.3701935239058943,0.3727938315707566,0.3755110220440881,0.3780871334751642,0.3813132680127754,0.384457421549124,0.3857950584772674,0.387293713631594,0.3894927536231884,0.3934093393721693,0.3954930742195576,0.4029807967899111,0.4022708840227088,0.0,1.8993059037562432,58.68795537023271,214.28886086474432,329.2798463397208,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95848,41443,389.28303146648864,7175,73.8565228278107,5603,57.977213922043234,2253,23.182539020115183,77.40182060844235,79.71367945892557,63.36325590393732,65.0749004912694,77.12915729821005,79.43969144539562,63.26508978661022,64.97804777105772,0.2726633102323035,273.9880135299444,0.0981661173271035,96.852720211686,76.97536,54.19567740530035,80309.8238878224,56543.3576134091,237.94226,146.38132118918836,247757.417995159,152230.18862072073,262.83061,125.36539705028068,270833.13162507303,128159.19561402746,3211.64992,1427.3312315468283,3325242.3420415656,1463629.4878837625,1374.52822,586.677596525636,1421289.6982722643,599310.4984200363,2215.11922,901.2570142104172,2281433.707536933,915916.601122326,0.38044,100000,0,349888,3650.4465403555632,0,0.0,0,0.0,20055,208.72631666805776,0,0.0,24533,252.58743009765465,2095510,0,75214,0,0,0,0,0,46,0.4799265503714214,0,0.0,0,0.0,0,0.0,0.07175,0.188597413521186,0.314006968641115,0.02253,0.3223326706428098,0.6776673293571902,25.539319028373008,4.504169969657175,0.3374977690522934,0.2057826164554702,0.2247010530073175,0.2320185614849187,10.99646543672186,5.479029463461533,23.6395862889924,13035.457257872891,62.74188579334298,13.431580929705818,21.36115164857973,13.986160129111214,13.962993085946216,0.5438158129573443,0.7632263660017347,0.6858804865150714,0.5671167593328038,0.12,0.7283582089552239,0.9204545454545454,0.8402489626556017,0.7642857142857142,0.1460176991150442,0.4858081163499883,0.6941323345817728,0.6330731014904187,0.5107252298263534,0.1145251396648044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023896798234067,0.0043985446290121,0.0065535851966075,0.0086027402825598,0.0107461290552149,0.0128771529785414,0.0148703052540386,0.0169422331087977,0.0189504671177709,0.02125830322508,0.0233406796166265,0.0257010305045777,0.0277323794546033,0.0298381450516865,0.0318694692547288,0.0339832408584152,0.0360000414031528,0.0381572535072529,0.0402043974533406,0.0423439548775157,0.0572414799983314,0.0710686959066772,0.0845854026529201,0.0974823279800854,0.1101867160925471,0.1254197908966099,0.1393631895602067,0.1515151515151515,0.1644097277800898,0.1751424531939505,0.1895420619044546,0.2024439786503014,0.214739655191144,0.2263107867451846,0.2366228455856489,0.247871857599876,0.2585368573658971,0.2684654300168634,0.2787324055485612,0.2869275584602882,0.2954353583365137,0.3030745849894786,0.3111597374179431,0.3181317101226993,0.3249766182025774,0.330606008329842,0.3361694673490071,0.3422023249306845,0.3471646815121698,0.3521416695257449,0.3538558888470031,0.3540390623924683,0.354527015606513,0.3560007510869094,0.3574387835409768,0.3576012866661561,0.357448155770144,0.3592839915339054,0.3604899465295454,0.3619714035808,0.3631356090980627,0.3646551894530864,0.3663677505866577,0.3663242239083238,0.3678630670481044,0.3686199885303164,0.370772740233818,0.3721258952129664,0.3739854537788553,0.3747412008281574,0.3752119129438717,0.3746453236254617,0.3782209559987338,0.3824810823205686,0.3842905405405405,0.3808788598574822,0.3845443349753694,0.3865683865683865,0.3900946021146355,0.390081999219055,0.0,1.778162444344806,59.740452372247766,208.62603697605525,327.9574664997022,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95706,41409,388.5336342549056,7231,74.43629448519424,5606,58.09458132196518,2296,23.66622782270704,77.32145341825886,79.70728699242962,63.3143933609397,65.07968514692195,77.03455048048717,79.41740762827658,63.209705765195935,64.97592066076717,0.2869029377716856,289.8793641530375,0.104687595743762,103.7644861547733,76.64734,53.92562038278573,80086.24328673228,56345.07803354621,238.03777,146.65158850531702,248249.9216350072,152764.42965370687,264.0199,125.61842548761264,272642.3839675673,128843.16023585864,3203.07636,1442.9130121786332,3320550.4775040224,1481491.3096335668,1338.48298,583.2741283889902,1386888.9620295488,597816.0918003364,2254.69348,939.0993157273388,2325930.2029130883,957225.626896801,0.37968,100000,0,348397,3640.283785760558,0,0.0,0,0.0,20092,209.4330553988256,0,0.0,24638,254.25783127494617,2095233,0,75144,0,0,0,0,0,45,0.4597412910371345,0,0.0,0,0.0,0,0.0,0.07231,0.1904498525073746,0.3175217812197483,0.02296,0.3206728873702195,0.6793271126297805,25.320533655941016,4.607492072524836,0.3287549054584374,0.2054941134498751,0.2377809489832322,0.2279700321084552,11.075711142783414,5.560087539226724,24.47309401147519,13069.470449832324,63.266032072217726,13.46707676226928,20.80774666035138,14.804567725834374,14.186640923762692,0.5522654298965394,0.7508680555555556,0.7059142702116115,0.5746436609152288,0.1283255086071987,0.6792592592592592,0.8933717579250721,0.8561320754716981,0.7137809187279152,0.1418918918918918,0.511983082706767,0.6894409937888198,0.6610288935870331,0.5371428571428571,0.1242362525458248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202561400664,0.0042896257986005,0.0067808997888582,0.0089836485401571,0.0114764772912257,0.0136500692690082,0.0159193122367602,0.0178988962517485,0.020037211965078,0.0220077180555413,0.024052164284689,0.0262379592926533,0.0282892706511675,0.0302646222332138,0.032422221763455,0.0349465978763221,0.0371022538945972,0.0392291167221893,0.041297045456909,0.0433146775891358,0.0578527934157066,0.0710121109982937,0.0841650138001238,0.0972735212720059,0.1092988416010803,0.1250515976757231,0.138567516504978,0.1510965309361253,0.1625948487763172,0.173827706036295,0.1879093416063426,0.2011322552012296,0.2142826068041416,0.2258675009845534,0.2369029021540628,0.2476966690290574,0.2587439893789118,0.2684961383233465,0.2786585919070949,0.2878935373409531,0.2972985480418811,0.3056598477139549,0.3130217522587062,0.3195951698583814,0.3261738929608965,0.332236517795524,0.3382785602503912,0.3433399931281098,0.3487303600548753,0.3535621445442909,0.3549386457617758,0.3560923936221437,0.3577667577695754,0.3588334803290777,0.3597094459825548,0.3589133239142453,0.3593402755730522,0.3602132841814232,0.3605316342958928,0.361003653556845,0.36242784348382,0.3638564257227326,0.3638486786736239,0.3650986479494275,0.3657349094080031,0.3672448737858966,0.3682419768749459,0.3705469221724346,0.3713637008656166,0.3738430099771607,0.3747873660981104,0.3745759974156032,0.3770691646349288,0.3748639825897715,0.376373888941986,0.3803926320891905,0.3813174777030199,0.3797808559024188,0.3871780515117581,0.3886497064579256,0.0,1.81586060850912,60.01211264529648,215.4338236545774,324.4628840496059,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95690,41273,389.0375169819208,7052,72.3691085797889,5450,56.21277040443098,2183,22.36388337339325,77.3455376358958,79.7319134828144,63.32130932583449,65.08706651727256,77.05830424709161,79.44811697720576,63.214343235914335,64.98468266600749,0.2872333888041822,283.7965056086489,0.1069660899201565,102.3838512650741,78.48852,55.182890764020776,82023.74333786184,57668.39875015234,237.5032,146.5854864515842,247478.93196781276,152466.1683055535,263.86056,126.02190240902728,271267.4051625039,128220.47565704463,3126.14832,1412.960766693141,3228280.865294179,1437929.1531958824,1326.571,575.3026430966033,1371260.852753684,586187.9078644139,2159.39728,915.0391437194836,2216054.781063852,920883.4494379642,0.37795,100000,0,356766,3728.351969902811,0,0.0,0,0.0,20059,208.86195004702685,0,0.0,24645,253.02539450308288,2086722,0,74812,0,0,0,0,0,35,0.365764447695684,0,0.0,0,0.0,0,0.0,0.07052,0.1865855271861357,0.3095575723199092,0.02183,0.3140005395198273,0.6859994604801727,25.38013336007941,4.575631898179829,0.3179816513761468,0.2066055045871559,0.2359633027522935,0.2394495412844036,11.020378484853303,5.461546588364216,23.514950315183285,12880.430641931678,61.2627429801096,13.04360470315576,19.489445801430595,14.299001326627554,14.430691148895695,0.551559633027523,0.7655417406749556,0.7016733987305251,0.5979782270606532,0.1218390804597701,0.6979472140762464,0.923529411764706,0.8645598194130926,0.7037037037037037,0.1619718309859155,0.5026921194322075,0.6972010178117048,0.6457364341085271,0.5662285136501517,0.1106758080313418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188674657291,0.0043612759267711,0.006447027767907,0.0086892010000203,0.0106718482949458,0.012772458749236,0.0149701209438926,0.0172788823871817,0.0192040248691099,0.0212079629705484,0.0232706015076149,0.0253389482333607,0.0274131830151415,0.029697256970921,0.0316411934075687,0.0338068358042305,0.0355104366292018,0.0374272162080812,0.0393327370676206,0.0413562430317491,0.056138701759883,0.0699572971615172,0.0831024349286314,0.0960743258172788,0.1080345558684851,0.1230655312847093,0.1363626716471761,0.1490089149722538,0.1612306639727184,0.1721468981138557,0.1859362030119767,0.1995862487273357,0.2113238768111997,0.2227000645634308,0.2343079192444023,0.245539573128837,0.256834749215776,0.2660957246874261,0.2751228480315943,0.2841127702455112,0.2923258532294837,0.3001087604813528,0.3081891962236471,0.3153185525890258,0.3219050856511551,0.3287114569993104,0.3341838010905998,0.3394221357841081,0.3445658498739251,0.3498590658834066,0.3505337599827906,0.3507634845655278,0.351124623483377,0.3523736622423778,0.352355220379745,0.3527143053918792,0.3533887022126418,0.3540898314014752,0.3556343456143055,0.3561317373853211,0.3567702939348862,0.3579893422413107,0.3584384359050069,0.3586746392123364,0.359579925470648,0.3605774278215223,0.361830792158661,0.363713987539926,0.3672878723704645,0.3696851023017903,0.3712076145151695,0.3753934802326202,0.3760343629587518,0.3772720329922102,0.3812458519010145,0.3856540084388186,0.3890440720049659,0.3845836768342951,0.3783259423503325,0.3767605633802817,0.0,2.865897586690098,59.56542801801301,199.96515882735807,314.5888702249417,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95607,41385,388.4861987092995,7205,74.07407407407408,5631,58.29071093120797,2315,23.774409823548485,77.23812690061078,79.6693192780591,63.25655152000609,65.05412885102471,76.95044749817441,79.38424275276363,63.14947325425368,64.95155673076063,0.2876794024363676,285.0765252954801,0.1070782657524134,102.57212026408524,77.01562,54.18726898566702,80554.37363372976,56677.09371245517,240.95986,148.96312601572683,251432.4160364827,155208.56842671233,269.66989,128.81473713301494,278898.7521834175,132163.41399266096,3228.89672,1460.823725190058,3343442.9278190928,1494129.5984499669,1325.09829,578.8425719405935,1369765.1008817344,589220.0382195798,2267.70144,949.770281293593,2331367.368498123,957179.9604024364,0.37887,100000,0,350071,3661.562437896807,0,0.0,0,0.0,20353,212.26479232692168,0,0.0,25135,259.7194766073614,2082900,0,74836,0,0,0,0,0,44,0.4602173481021264,0,0.0,0,0.0,0,0.0,0.07205,0.1901707709768522,0.3213046495489243,0.02315,0.3210449542500994,0.6789550457499005,25.33568076069465,4.558408940408239,0.3404368673415024,0.2067128396377197,0.2301545018646776,0.2226957911561001,11.18362256983665,5.702509519788109,24.68171948485478,13010.82200449298,63.57666404661352,13.53163143246409,21.70658224823745,14.56576102726284,13.772689338649142,0.5515894157343278,0.7714776632302406,0.693792383933229,0.5817901234567902,0.098883572567783,0.7109704641350211,0.9228571428571428,0.8568548387096774,0.7363344051446945,0.1283018867924528,0.4977429318127821,0.7063882063882064,0.6368754398311048,0.5329949238578681,0.0910010111223458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.0046859310498716,0.0065693282430346,0.0087210188752121,0.0111850675785702,0.0133765294375337,0.0156050793003212,0.0177236137784497,0.0199046703352903,0.0221134247641678,0.0243679717639333,0.0265407615955282,0.0287975628081226,0.031071524298468,0.0332021769887742,0.0353162736312745,0.0375703666842907,0.0395383384756027,0.0415582252389181,0.0435775987981471,0.0585461730666694,0.0721838550454293,0.0848314193555165,0.0976100443442631,0.1098707278948924,0.1249126003771426,0.1384824625715894,0.1515852540457559,0.163730924812191,0.1752148689299527,0.1898909020276467,0.20304452949659,0.2151871144918375,0.2264827072283347,0.2370816983378157,0.2482936195243221,0.2593873075546007,0.2695032260975499,0.2789324596430156,0.2872192544086392,0.2952300244941551,0.3029282714282362,0.3101331940454426,0.3165231405753873,0.3225822185910958,0.3288676117667433,0.3346609541279793,0.3401415287144901,0.3454505254396005,0.349944335471558,0.3505200654646774,0.3510464762642041,0.352518494419848,0.3535168728582215,0.3544728792061479,0.354090993043157,0.354467868288644,0.3554564229657166,0.3568405477943706,0.3586569899040707,0.3595130867361359,0.3606948838875291,0.3621264561877427,0.3630073696783935,0.3645924202772124,0.3656388823173777,0.3647485534989493,0.3672108238582227,0.3687679387690018,0.3689796895574797,0.3697988426563792,0.3738492828088204,0.3781144994611044,0.3824994253313922,0.3822751322751322,0.3806466951973371,0.377672571777642,0.3753026634382566,0.3753106876553438,0.3742780130920292,0.0,2.4029281606662463,62.81983347215047,208.0386699862712,323.98766303007363,fqhc8_100Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95725,41486,389.0937581613999,7372,75.82136328022983,5713,59.148602768346834,2321,23.891355445285978,77.33641368994157,79.71106777445092,63.332022412709286,65.08921534247641,77.04781687931036,79.4208208494146,63.22618790361523,64.98518512169255,0.2885968106312049,290.2469250363282,0.1058345090940591,104.03022078385504,77.08756,54.20084179216452,80530.22721337163,56621.406938798136,239.28476,146.97252182435403,249468.8743797336,153034.0473485025,264.81741,126.23119124824888,273205.0248106555,129244.23697736589,3766.16744,1682.612397059792,3902453.779054583,1725848.8765315155,1420.13157,620.1740074642823,1471342.0423086968,635659.0310412976,2294.05506,952.0469600180072,2363911.099503787,967036.6841839064,0.38092,100000,0,350398,3660.4648733350746,0,0.0,0,0.0,20202,210.509271350222,0,0.0,24742,255.12666492556804,2093981,0,75180,0,0,0,0,0,38,0.3760773047793158,0,0.0,1,0.0104465917994254,0,0.0,0.07372,0.1935314501732647,0.3148399348887683,0.02321,0.3115364850976361,0.6884635149023638,25.536215267185305,4.592522784326282,0.3352004200945213,0.2028706458953264,0.2263259233327498,0.2356030106774024,11.055516565543694,5.432757435440387,24.743469409360376,13077.623026774856,64.25229827708898,13.514665545541376,21.461763787499297,14.41727438338215,14.858594560666168,0.5394713810607387,0.7428817946505608,0.6741514360313315,0.580046403712297,0.1337295690936107,0.7041116005873715,0.9052924791086352,0.8463356973995272,0.7133333333333334,0.2214285714285714,0.4879338083199264,0.67,0.6253351206434317,0.5397784491440081,0.1106941838649155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024320051882777,0.0047972088966419,0.0072490989390324,0.0094113342548174,0.0116273155447951,0.0142280976921353,0.0165512599557409,0.0187665917908923,0.0209890300880251,0.023053456994861,0.0250422838398851,0.0272376337241535,0.0294311217144502,0.0315177982860909,0.0336700684132864,0.0358770814598902,0.0377833231514749,0.0397327634500072,0.041696979775094,0.0435724627868459,0.0584654261428899,0.0729972064993356,0.0853538319560384,0.0981299078093956,0.1105466197272171,0.1257926777712014,0.1394513112981533,0.1523933087320408,0.1644623776432787,0.1756872576117931,0.1896772527200525,0.2028612519869805,0.214908992121706,0.226118302474193,0.2372978199718706,0.2485210372090451,0.2585328890919424,0.2681188742019602,0.2778281774471559,0.2868028144842972,0.2951581576026637,0.3022619993457027,0.3095516707445362,0.3166225649253463,0.3224576991236375,0.3297666687188327,0.3360057032793856,0.3422438800956792,0.3483362907508386,0.3531905900379093,0.3544829445867601,0.3553669977924945,0.3559243044767688,0.3574275651153015,0.3581441823008321,0.3580873308733087,0.3579390951737298,0.3584031396345887,0.3593283197692387,0.3610926647163343,0.3618551073801502,0.3636092971556737,0.36472541560707,0.3644377649671385,0.3667511771097428,0.3670634401569653,0.3677621733624956,0.3700464347051714,0.3724996453397645,0.3764880952380952,0.3777582050806601,0.3809911523638929,0.3833041674768293,0.3861826697892271,0.3837276399307559,0.3866520253782333,0.3847359348064567,0.3919867823213548,0.3876185164528722,0.3854166666666667,0.0,2.1082389951349074,60.199483566956665,218.49746151321267,332.01173375942585,fqhc8_100Compliance_baseline_low_initial_treat_cost,0 -100000,95611,41273,389.3694240202487,7150,73.58985890744789,5521,57.17961322441978,2258,23.25046281285626,77.26635035352784,79.70517436380037,63.26822878755484,65.0723362716434,76.99034300405977,79.42763763232954,63.16702778508478,64.97294649847117,0.2760073494680739,277.5367314708319,0.1012010024700629,99.38977317221998,76.27906,53.65492149465924,79780.63193565594,56117.93778399896,236.97645,145.93717145065992,247290.30132516133,152071.8865514009,260.10284,124.2009785190229,268643.93218353536,127279.48899055918,3623.31856,1631.7725721675388,3755100.166298857,1672132.738040119,1309.48066,575.622540505774,1356197.7492129568,588652.0489334636,2222.16772,928.00979229311,2289938.689062974,940864.9198889747,0.3791,100000,0,346723,3626.3923607116335,0,0.0,0,0.0,20021,208.80442626894396,0,0.0,24350,251.22632333099747,2093757,0,75092,0,0,0,0,0,43,0.4497390467624018,0,0.0,0,0.0,0,0.0,0.0715,0.1886045898179899,0.3158041958041958,0.02258,0.315782510914142,0.6842174890858579,25.468884397572836,4.527002235549263,0.3272957797500452,0.2106502445209201,0.2282195254482883,0.2338344502807462,10.92371757738873,5.347215240109138,24.14834816395805,12984.892701858824,62.28221950522378,13.574702060354053,20.27292986630168,14.055029078972105,14.379558499595934,0.5444665821409165,0.7626827171109201,0.6900940785832872,0.5817460317460318,0.1076684740511231,0.7022677395757132,0.9002770083102493,0.8758465011286681,0.7321428571428571,0.1484098939929328,0.4925373134328358,0.7007481296758105,0.6297653958944281,0.5387755102040817,0.0962301587301587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024119340062426,0.0046462084707075,0.0069769567469304,0.0092219782007483,0.0113495246432279,0.0136062048370822,0.0156964402351404,0.0174938434341886,0.0195117459278055,0.0218772415206476,0.0237797118108296,0.0258207758567522,0.0278249590809425,0.0299309207134756,0.0315960171872417,0.0338248228051114,0.0357479711031187,0.0377113539113456,0.0395911825315876,0.0415293479621209,0.0562222965626829,0.0699292638197537,0.0827004485341232,0.0955024225826838,0.1074555613058586,0.1234401813520899,0.1367187084843396,0.1495280251719908,0.1614401609692403,0.1726760926554643,0.1860640707582785,0.1989029929214859,0.2116096710956218,0.2231011098086045,0.2342463488564342,0.2453102293023307,0.2558175907410097,0.2664391815038796,0.277,0.286415730723783,0.2948945191672749,0.3027118842616997,0.3108841441740325,0.3178034210589449,0.3244436337103247,0.3308843503815474,0.336944256375536,0.3422310604612031,0.3481419028471366,0.3539351821268612,0.3544899362336034,0.3549351669399622,0.3558760035556559,0.3571242435648724,0.3581662744630782,0.3588657705763211,0.3589328508625752,0.3596132942455285,0.3608706830062559,0.3616483082774209,0.362099509988692,0.3627326228725942,0.3637800585892221,0.3639777812760024,0.3664624845652858,0.3682538015074717,0.3695858362314259,0.3709160184156215,0.3746812128081609,0.3744888960153932,0.3759132472545145,0.3795377768244946,0.3803716237788136,0.3812729498164015,0.3798230754752494,0.3779807806382726,0.3713365045266227,0.3691152597402597,0.3663911845730027,0.3706798328902392,0.0,2.185419021727748,60.30860432719289,208.7060842675535,316.7859203435022,fqhc8_100Compliance_baseline_low_initial_treat_cost,1 -100000,95686,41518,389.9943565411868,7272,74.53545973287628,5657,58.33664276905712,2273,23.15908283343436,77.34534288058313,79.71531658999315,63.32656324425341,65.07501954663567,77.0654153832514,79.43951831486703,63.22420045754836,64.97774462843985,0.2799274973317267,275.798275126121,0.1023627867050507,97.27491819582212,76.82884,54.06406956351433,80292.66559371277,56501.54626958419,239.98658,148.3190368664867,250046.49583011097,154246.1246854155,271.46031,130.26112710937866,278946.1258700333,132333.5568988286,3751.17616,1687.7347014067377,3869636.498547332,1713316.9555899897,1383.26357,603.4420020421951,1428515.4881591874,613619.4457200898,2246.4289,933.6270941864856,2293488.6817298247,931021.1614390096,0.37987,100000,0,349222,3649.6666178960345,0,0.0,0,0.0,20220,210.5114645820705,0,0.0,25302,259.83947494931334,2089326,0,75007,0,0,0,0,0,57,0.5747967309742281,0,0.0,1,0.0104508496540768,0,0.0,0.07272,0.1914339116013373,0.3125687568756876,0.02273,0.3105070569785677,0.6894929430214323,25.335723569616192,4.579719948459003,0.3362206116316069,0.1986918861587414,0.230334099345943,0.2347534028637087,11.485964993479124,5.919265786281088,24.249348820493527,12993.490654874346,63.749526818714486,13.061252853182598,21.44556034697946,14.491907510733943,14.750806107818493,0.5568322432384656,0.7393238434163701,0.7187171398527865,0.6047582501918649,0.1234939759036144,0.7146912704045423,0.8947368421052632,0.8713080168776371,0.7898089171974523,0.1433691756272401,0.504472693032015,0.6713554987212276,0.6680672268907563,0.5460060667340748,0.1182078169685414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045528191834,0.0043175967405185,0.00655411712187,0.0089173268332317,0.0114197970265817,0.0135615308647003,0.0156672069151809,0.0179659667425456,0.0201584462049578,0.0221926502200839,0.0244505043877634,0.0264538854144202,0.0286260916076075,0.0306389466960624,0.0327251336456892,0.0347850357153932,0.0368701776189736,0.038752127527087,0.0408538867861747,0.0428538674781666,0.0576095584241968,0.0716431345048826,0.0855334956346541,0.0984638047138047,0.1103537058922843,0.1263202455286273,0.1395751276634144,0.1524631197741918,0.1644365595075239,0.1760181917643651,0.1898348184942946,0.2031576553650903,0.2158488677048306,0.2266999485444652,0.2377113277162839,0.2482623299743922,0.2589343512131967,0.2680805580558056,0.2770613875771885,0.2855195482089877,0.2938746702457537,0.3014584624741231,0.3088879418519307,0.3162304041420969,0.3225551667152717,0.3289272503082614,0.3343144131055558,0.3398809220904789,0.3447144561439909,0.3503874533865806,0.3510740275696329,0.3517361254811075,0.3530892480873389,0.3540594231689457,0.3544384962944185,0.3540600752861642,0.3534366523373677,0.3547162368719491,0.356366804468892,0.3574171653121372,0.3592125718781022,0.3589915966386555,0.3591389728096676,0.3597944160158003,0.3607175668487984,0.3626531894836074,0.363714163457424,0.3647343754914603,0.3657739350485027,0.368542270579359,0.3708148216003298,0.3737244216487685,0.3740090061520898,0.378010310071555,0.3810833886728014,0.3794011976047904,0.3831732259064146,0.379338673238858,0.3861992209237618,0.3906866614048934,0.0,2.928083990981188,61.65205863913384,208.7652327836331,328.13348992988296,fqhc8_100Compliance_baseline_low_initial_treat_cost,2 -100000,95663,41157,386.9730198718418,7248,74.53247337005948,5660,58.59109582597242,2300,23.614145489896828,77.2498286400838,79.64727181300513,63.26585613190741,65.03837032132493,76.96415828503636,79.36221543726005,63.16087989646631,64.93639865783676,0.2856703550474435,285.0563757450857,0.1049762354411072,101.97166348817176,76.494,53.81582077346162,79961.94976114067,56255.62733079834,239.24175,147.5294617164787,249513.49006407912,153649.5940026706,263.40772,126.371233710668,272141.9357536352,129525.28381845176,3734.25645,1669.3640261456028,3866114.2761569256,1708281.9562468166,1360.49908,592.841945483021,1409533.8741206108,607312.6958689544,2254.04622,940.0418658036097,2315962.0124813146,949159.6265179174,0.37788,100000,0,347700,3634.6340800518487,0,0.0,0,0.0,20179,210.3425566833572,0,0.0,24592,253.90171748742983,2086548,0,74938,0,0,0,0,0,50,0.5017613915515926,0,0.0,0,0.0,0,0.0,0.07248,0.1918069228326452,0.3173289183222958,0.023,0.3154590635626471,0.6845409364373528,25.375543311042986,4.61227110046587,0.3392226148409894,0.1989399293286219,0.2321554770318021,0.2296819787985865,11.168663296273191,5.589724071599107,24.55593950605688,12976.550011908865,63.51444980599249,13.067026654566948,21.658866482310795,14.56902688426397,14.219529784850788,0.5443462897526502,0.7486678507992895,0.7052083333333333,0.556316590563166,0.1176923076923077,0.7088425593098491,0.8944281524926686,0.8831967213114754,0.7326388888888888,0.1423357664233576,0.4907472475989693,0.6853503184713375,0.6445530726256983,0.50682261208577,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147574861218,0.0042289086981654,0.0063032246932126,0.0088091851249745,0.0109143432576212,0.0136271973601124,0.0157441775094832,0.0179098381579619,0.020065453057885,0.022234512141416,0.024176094693978,0.0261222393425783,0.0280704642739545,0.0300244277012193,0.0320778872163373,0.0340576487501163,0.0360084969690689,0.0381644518272425,0.0401073691438559,0.0423335592513424,0.0572580897948948,0.0716709253131152,0.0844020906362167,0.0978576539416642,0.1098037146475306,0.1246692771721875,0.1381331634278432,0.1509271099744245,0.1627959220787556,0.1741830135573555,0.1886100261119143,0.201266591480871,0.2133151581243184,0.2246377606423236,0.2351921760823012,0.2464106325287816,0.2567145464112583,0.2661348558017782,0.275213169248984,0.2848046708885492,0.2937123870158236,0.3017322427490246,0.3092358013678263,0.315987815596518,0.3230256898192198,0.3296740018317285,0.3355493835693908,0.3411671440261866,0.3473329604724061,0.3525660572474047,0.3537793293821547,0.3547165115925398,0.3551191470684016,0.3558674395966816,0.3563245859035442,0.3554308555615343,0.3552652490384921,0.3571086802290089,0.3579281910324686,0.3599964041711614,0.3612206767697737,0.361464492623783,0.3618093631379165,0.3627176757195705,0.3625944003302493,0.3635624770594096,0.3636415672133024,0.365760595358224,0.3664038854086014,0.3691730523627075,0.3711664841182913,0.3721399373573286,0.3753863622027376,0.3756112469437653,0.3787065800621293,0.3769676884838442,0.3742699047033507,0.3741776315789473,0.3728813559322034,0.3634975181366934,0.0,2.193797527082248,61.622561451637615,204.7102588149,334.1350066293893,fqhc8_100Compliance_baseline_low_initial_treat_cost,3 -100000,95748,41205,385.8983999665789,7325,75.37494255754689,5690,58.87329239253039,2274,23.352968208213227,77.32698317968122,79.68578357439402,63.31555014592704,65.06077133255286,77.04791110847614,79.40543426967783,63.213725223907794,64.96074719374394,0.2790720712050785,280.34930471619646,0.1018249220192473,100.02413880891936,76.42052,53.72110397440998,79814.22066257258,56106.76356102475,237.03924,145.80206439862184,247040.14705267997,151751.28921608996,267.28874,128.02155237255477,275181.3301583323,130704.0481330099,3738.65809,1678.7240876820742,3871824.194761248,1720412.152402216,1357.47999,589.5620179663945,1403247.8276308642,601227.97130634,2236.17764,927.204356689792,2299507.3526339973,940105.3471267936,0.37829,100000,0,347366,3627.9191210260265,0,0.0,0,0.0,19945,207.7536867610812,0,0.0,25029,257.44663073902325,2095280,0,75195,0,0,0,0,0,42,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.07325,0.1936345132041555,0.3104436860068259,0.02274,0.3211735687394522,0.6788264312605479,25.332497613999735,4.611074010121702,0.3363796133567662,0.1992970123022847,0.2374340949033392,0.2268892794376098,11.29260395643421,5.663448756232686,24.086621299598395,12969.223361909504,64.10141294132686,13.29125761579646,21.708182819053743,14.944142145338654,14.15783036113801,0.5546572934973638,0.763668430335097,0.7110762800417972,0.5862324204293117,0.1061192873741285,0.7102601156069365,0.9086021505376344,0.8742004264392325,0.7571428571428571,0.0874524714828897,0.504644681839294,0.6929133858267716,0.6581314878892733,0.5415499533146592,0.1108949416342412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.004431060006895,0.0064551488947079,0.0089198634590377,0.0110958555809814,0.0133801741255536,0.0153770852877595,0.0178225098503562,0.0198990229344671,0.0221084953940634,0.0242800040996207,0.0265356820234869,0.0287817112783191,0.0308394085423617,0.0327721730519279,0.0350592587234834,0.0373322842471426,0.0394784611075959,0.0415627338488401,0.0435452954412867,0.0585950956750493,0.0723618826434003,0.0855672156583182,0.097959655632759,0.1104552497602007,0.1262687135244861,0.1393770349237997,0.1516300066009411,0.1639570306236973,0.173919110385986,0.1868902997704024,0.1995732559273018,0.210353345739066,0.2217116348278955,0.2328074945783199,0.2440862837253641,0.2552003038630828,0.2655658677239142,0.274600686160907,0.2832712476359676,0.2915773992194647,0.3003033959258261,0.3080114754487043,0.3153711308022957,0.3222956445547807,0.3287958632094682,0.335117853560682,0.341669215866218,0.3470070833657663,0.3521057915874022,0.3519035105451115,0.3527815281183699,0.3540635444430342,0.3551202987926691,0.3561645874892071,0.3561852107809261,0.3561711246924359,0.3567949983547219,0.3576726101776202,0.3589436418252038,0.360313315926893,0.3612443986199786,0.3614437510541406,0.3631463096895916,0.3644032971548744,0.3657832589871425,0.3679912901469788,0.3693066801619433,0.3719649915302089,0.3713362842445268,0.372861977499314,0.3747136235281581,0.377400202122284,0.3794602012808783,0.3820679273685201,0.3868137080517016,0.3848987108655617,0.3844747002641739,0.3919821826280623,0.4026377036462374,0.0,2.188786008831302,61.06260143622615,219.8646301482766,323.68881236748734,fqhc8_100Compliance_baseline_low_initial_treat_cost,4 -100000,95761,41889,393.0932216664404,7223,74.2369022879878,5665,58.58334812710812,2321,23.809275174653564,77.39144353273707,79.72918378331447,63.36142006586866,65.08667512004622,77.10298270106468,79.44278748444974,63.2551002036231,64.98426055693928,0.2884608316723955,286.39629886473017,0.1063198622455559,102.4145631069473,78.83084,55.39738037410576,82320.4018337319,57849.626021141965,244.42318,151.07164261889386,254650.0663109199,157166.18729847626,267.30792,127.13117972044918,276214.89959378034,130401.090934502,3777.75092,1687.747854694426,3907497.895803093,1724977.8037973996,1410.82163,613.6349163309102,1455965.9986842244,623560.115120746,2287.7106,957.6333593381892,2348912.480028404,966306.1554311232,0.38324,100000,0,358322,3741.836446987813,0,0.0,0,0.0,20563,214.10595127452723,0,0.0,24955,257.66230511377285,2083449,0,74749,0,0,0,0,0,54,0.5534612211651926,0,0.0,1,0.0104426645502866,0,0.0,0.07223,0.1884719757854086,0.321334625501869,0.02321,0.3204521556256572,0.6795478443743428,25.32144013690651,4.599937347816513,0.3133274492497793,0.2031774051191527,0.2436010591350397,0.2398940864960282,11.052585729863251,5.474852388691128,24.869312185259368,13166.680535183588,63.95515113978277,13.571881599795732,19.963629422936368,15.397763571214002,15.021876545836667,0.5412180052956752,0.7854039965247611,0.6929577464788732,0.5442028985507247,0.133186166298749,0.6710334788937409,0.9213483146067416,0.8398058252427184,0.6883561643835616,0.1496815286624203,0.4996504311349335,0.7245283018867924,0.6485693323550991,0.5055147058823529,0.1282296650717703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023894378746152,0.0046920761676986,0.0068687729550942,0.0090797371548125,0.0112454372604243,0.0134252096734793,0.0158345221112696,0.0180994551798722,0.0202780700589443,0.0223868380126053,0.0243854957530302,0.0265312403816558,0.0287199827371839,0.0309901193906957,0.0329982990567496,0.0349778934754762,0.0372080025667829,0.0393706504039744,0.0416211889689296,0.0433568764714461,0.0583298538622129,0.0735489541587753,0.0870618843301197,0.0996361188818543,0.1119429740388468,0.1277601522842639,0.141110215509927,0.1533321984849774,0.1655862532973077,0.1775097818513158,0.1914075955907681,0.2046290287691975,0.2169385780898449,0.2289126349372842,0.239931834423616,0.2514220579447113,0.2614245738430494,0.2720399060769136,0.2812280343740788,0.2903930880585912,0.2982636641080181,0.3065089310764051,0.313901769660263,0.3204956142453147,0.3270689927280232,0.3325327322666864,0.3387673906515864,0.3451626047317085,0.3515862837303901,0.3563445882647877,0.3569476787228601,0.3571566145718688,0.3577152191975665,0.3589388096991753,0.3597807356349159,0.3599663454183876,0.3598765920417688,0.3605763707678926,0.3613512866956017,0.3613475430941992,0.3621305557644581,0.3630283786465568,0.3650616608443116,0.3668053525244574,0.3682667377450386,0.3691851307361126,0.3693277913143185,0.371453928809154,0.3742205215419501,0.3747495792932126,0.3748561962173853,0.3743744282408653,0.3762350991266654,0.3795463283352556,0.3782760904532122,0.3797934227709842,0.3775045537340619,0.3797136519459568,0.3773841961852861,0.3801526717557252,0.0,2.1548758349256034,60.943361272034586,219.8020736634783,322.3799944880823,fqhc8_100Compliance_baseline_low_initial_treat_cost,5 -100000,95719,41511,390.8941798389035,7281,74.854522090703,5573,57.55388167448469,2251,23.109309541470346,77.37264048070351,79.73142504571739,63.34029949113111,65.08156689061032,77.09819993135305,79.45818003052493,63.24040935564099,64.98484555784083,0.2744405493504587,273.24501519245814,0.0998901354901207,96.72133276949069,76.49004,53.86424814219069,79911.03124771467,56273.30847813985,238.77833,147.09362099641115,248802.8082198937,153017.53152081734,263.96144,125.77493426515416,271239.6389431565,127893.24265020242,3703.91223,1649.6786158328598,3828564.0781871937,1682561.389487213,1340.5358,579.1696241989416,1381342.878634336,585971.5219729132,2221.20182,918.9852790220992,2282701.65797804,928063.0430814278,0.38083,100000,0,347682,3632.3196021688486,0,0.0,0,0.0,20111,209.41505866128983,0,0.0,24653,253.1158913068461,2094240,0,75141,0,0,0,0,0,47,0.4701260982668018,0,0.0,0,0.0,0,0.0,0.07281,0.1911876690386786,0.3091608295563796,0.02251,0.3132217464642532,0.6867782535357467,25.45473428365182,4.597423400003701,0.3256773730486273,0.2058137448411986,0.2286021891261439,0.2399066929840301,11.13217504522717,5.458252839138444,23.898000075161395,13062.997659400524,62.60736689128313,13.449223344141108,20.39911826157159,14.130511571253075,14.628513714317368,0.5354387224116275,0.7428073234524848,0.6815426997245179,0.5808477237048666,0.1159311892296185,0.7033132530120482,0.9152542372881356,0.866822429906542,0.758364312267658,0.1263537906137184,0.4829210836277974,0.6658259773013872,0.6243691420331651,0.5333333333333333,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784810126582,0.0041855421442542,0.0065126753705225,0.0085919727006824,0.0108592868254888,0.0132642465948653,0.0152185435863981,0.0172190297326814,0.0191558740250845,0.0211792404544989,0.0231404111344645,0.0251537458547653,0.0274236005429194,0.0295471632045644,0.0317967976229778,0.0338277091623171,0.0360603801714498,0.0381384060075509,0.039931403627293,0.0419010123734533,0.0563827343537912,0.0706273804043025,0.0841730013106159,0.0969067614012591,0.1094583482679373,0.1253251009663163,0.1392539323935893,0.1522023689167473,0.1644150157526566,0.1762630433150664,0.1900992871142124,0.2036067418161362,0.2160381051807386,0.2272553286890714,0.2378395625433221,0.2489502431890448,0.2595044089742159,0.2692944236160367,0.279359814623397,0.2874049609522827,0.2960904849558342,0.3040628328631793,0.3119267142281529,0.3188049166946752,0.3253353439784018,0.3316923304708321,0.3372835918121915,0.3437126053415485,0.3494870200528525,0.3544768239890191,0.3551236987057762,0.3566080325928373,0.3573361522198731,0.3576708860759494,0.3588415632348126,0.3583481622384488,0.3587707620134398,0.3592978877410015,0.3607241149421357,0.3610039988574693,0.3621725861713879,0.3630584565573608,0.3645743766122098,0.3662717925793473,0.3682705248990578,0.3698651533295153,0.3699573257467994,0.3720492805417097,0.3731040039233544,0.3748566910456612,0.3758694367413738,0.3748205646233186,0.3764631445745017,0.3769389470466875,0.3760120504613067,0.3768305750684605,0.3805050816137973,0.3848979591836735,0.3904947192884936,0.3922480620155039,0.0,2.6399295817824684,58.17974333568943,215.6183788419504,319.01725138016536,fqhc8_100Compliance_baseline_low_initial_treat_cost,6 -100000,95745,41423,388.6364823228367,7291,75.02219437046321,5632,58.26936132435114,2242,23.134367329886675,77.33281654085012,79.69851362651191,63.319784280511655,65.07073659740954,77.06361848733427,79.42547302613643,63.22265877513732,64.97407660625504,0.2691980535158507,273.04060037548084,0.0971255053743362,96.65999115449608,77.1562,54.25709675891383,80585.09582745834,56668.33438708427,238.37709,146.57497718678857,248440.8585304716,152558.97142074112,267.46793,128.1404232579388,275033.8398872004,130577.76894832493,3724.65292,1666.1312641022296,3857323.484255052,1707319.1436651824,1375.36202,595.6418539209069,1422402.3186589377,608030.6375485996,2209.7775,906.2510568139684,2281609.0657475586,925697.6266006392,0.37952,100000,0,350710,3662.958901248107,0,0.0,0,0.0,20091,209.27463575121416,0,0.0,25003,256.82803279544623,2091457,0,75108,0,0,0,0,0,45,0.4595540237088098,0,0.0,1,0.0104444096297456,0,0.0,0.07291,0.1921110876897133,0.3075024002194486,0.02242,0.3073909636980935,0.6926090363019065,25.436613763312167,4.580096154746079,0.3329190340909091,0.1976207386363636,0.2334872159090909,0.2359730113636363,11.115221170969036,5.605551522943482,23.774938940273262,13033.189221264596,63.39251466324136,12.976156150499222,21.18835485909164,14.744981273034258,14.483022380616246,0.5440340909090909,0.7610062893081762,0.6890666666666667,0.5825095057034221,0.1196388261851015,0.734341252699784,0.935672514619883,0.8736842105263158,0.746875,0.1825396825396825,0.4817346217299081,0.6835278858625162,0.6264285714285714,0.5296482412060302,0.1049210770659238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019759041027875,0.0043106508575659,0.0067011879378617,0.0090972850448765,0.0111809709844137,0.0133331975228161,0.0156640389969304,0.0178356304236855,0.0200098157501891,0.0220251686957946,0.0242879698168918,0.0262968743582371,0.028728304680431,0.0306900102986611,0.0328408410887105,0.0348434576782742,0.036775442993403,0.0389265366693994,0.041019828850093,0.0431073099080141,0.0578760008769091,0.0726384398899386,0.0860570218209653,0.0990086519558886,0.1108382431990893,0.1257295719844358,0.1388258499650045,0.1519492544620526,0.1635551948051948,0.1751616604647671,0.1885644768856447,0.2006101386875527,0.2124737683349824,0.2242664742664742,0.2348121590709132,0.2468474253512394,0.2576959553695955,0.2674033895253314,0.2770243431878795,0.2859007683411388,0.2944560185185185,0.3025507158158427,0.3101891888690131,0.3176841625595088,0.3245158702179648,0.3307131310389081,0.3366495426638266,0.3423428011254408,0.3476705296725519,0.353343113542947,0.3545329522165893,0.3548729397497381,0.3556305225418513,0.3559162515927256,0.3567075442177884,0.3564292620045117,0.356389307527564,0.3577338750801928,0.3582344988105629,0.3588799084471783,0.3603815031072226,0.3616244943285476,0.3619961773539728,0.3640337113910432,0.3661815461105882,0.3663822436266555,0.3680320824978516,0.3715993926357079,0.3746384479717813,0.377211549982028,0.3790400220052262,0.3803608716603309,0.3803093698491188,0.3816414025417241,0.3846950301204819,0.3914903731875446,0.3915043704953228,0.3971126474176494,0.4062153163152053,0.4023919753086419,0.0,2.203814334930931,61.48554417223633,210.9016191311735,324.2269995330621,fqhc8_100Compliance_baseline_low_initial_treat_cost,7 -100000,95778,41441,388.3042034705256,7251,74.3176929983921,5638,58.27016642652801,2284,23.450061600785148,77.34910350822409,79.67746754080542,63.34642956891118,65.06668150648079,77.06781059266781,79.39701058943832,63.24203300407326,64.96544488240826,0.2812929155562784,280.4569513670998,0.1043965648379199,101.23662407252708,77.1936,54.31334167913069,80596.37912673056,56707.53375423447,239.05357,147.42953884220404,248998.38167428845,153335.46204995306,265.90344,127.55601069902768,273756.93791893753,130266.80746754917,3768.8776,1701.6357818104225,3894703.4392031576,1736335.3189776605,1390.70863,607.6838479735558,1434265.2801269602,616723.9010770275,2264.10756,950.9216620024838,2325309.194178204,959444.6702794236,0.37979,100000,0,350880,3663.471778487753,0,0.0,0,0.0,20159,209.8603019482553,0,0.0,24860,255.71634404560544,2091007,0,75071,0,0,0,0,0,46,0.4802773079412809,0,0.0,1,0.0104408110422017,0,0.0,0.07251,0.190921298612391,0.3149910357192111,0.02284,0.3158586256733675,0.6841413743266325,25.475005934118208,4.5999495950095,0.330081589216034,0.1912025540971975,0.2399787158566867,0.2387371408300816,10.95589002308984,5.430298999237587,24.517497012310667,13027.576864149103,63.43988610350237,12.538339895631378,20.83137022452136,15.095384951763508,14.974791031586124,0.5507272082298688,0.7569573283858998,0.7152068780225685,0.5868440502586844,0.1218424962852897,0.6964028776978417,0.9112426035502958,0.87248322147651,0.7322580645161291,0.1457627118644067,0.503060263653484,0.6864864864864865,0.6654879773691655,0.5436241610738255,0.1151284490960989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910887880751,0.0047233399892559,0.0071319150662973,0.0093752221917502,0.0114288038394273,0.0137933140600187,0.0160521005320124,0.0181558401796193,0.0204661333006365,0.0227128562951443,0.0248535016186534,0.0272441817510158,0.0291551481393938,0.031135172967465,0.0331893307488478,0.0352937530986613,0.0374383013069257,0.0393931852589228,0.0415956606675256,0.0435706252343066,0.0579198931351881,0.0712694411613969,0.0842988204456094,0.0971413557540725,0.1085045842554536,0.1239471153338054,0.1371089982086261,0.1500659350008507,0.1620687079113349,0.1741985943258764,0.1877044945755123,0.2007504487553796,0.2128957209949556,0.2241588575552469,0.234676700663432,0.2461291394395835,0.2574805522383062,0.2677987067753725,0.2776838498110724,0.2866565137236491,0.2951132603715958,0.3028271197547333,0.3103178831468656,0.3172494815205534,0.3241072621897136,0.3300392331038567,0.3355132927409857,0.341606992686221,0.3474593865158042,0.3522939177125626,0.3533079601587173,0.3547483721443549,0.3554834156669019,0.3565265230484132,0.3574383239591703,0.3577463924797963,0.3574350680239749,0.3582322841771006,0.3590590813374193,0.360182697474476,0.3612864442440637,0.3628748933129553,0.363276978719825,0.3633666704124059,0.3643825665859564,0.3666290097995429,0.3677096514436903,0.3695202975490352,0.3722966744664255,0.376068376068376,0.3777104005880191,0.3810797795494676,0.3846546987797866,0.3870545678442238,0.3912794580669783,0.3894940692326313,0.391618270287239,0.3912773873501446,0.3995510662177329,0.3943606036536934,0.0,2.242075722908502,61.23493955293455,211.9485367147671,324.3639400992509,fqhc8_100Compliance_baseline_low_initial_treat_cost,8 -100000,95665,41629,389.933622536978,7262,74.70861861704907,5645,58.4121674593634,2278,23.373229498771757,77.31532774038504,79.70817653367924,63.31028192710126,65.07658928076144,77.03884258682771,79.43209750123317,63.20956345599104,64.97895626427764,0.2764851535573314,276.0790324460629,0.1007184711102198,97.63301648379752,77.05104,54.26726775930057,80542.55997491245,56726.355259813485,240.62025,148.57320127241897,250934.68875764383,154716.58524268956,269.93639,129.40947647856527,278831.1399153295,132567.2944512049,3740.56758,1676.5033879638806,3871223.571839231,1713627.594171202,1390.32081,606.0873628062318,1434912.371295667,615141.873000817,2244.67752,929.377820692258,2304994.428474364,936008.3632330956,0.38035,100000,0,350232,3661.025453405112,0,0.0,0,0.0,20255,211.1116918413213,0,0.0,25176,259.8442481576334,2088441,0,74923,0,0,0,0,0,47,0.4808446140176657,0,0.0,1,0.0104531437829927,0,0.0,0.07262,0.1909294071250164,0.3136876893417791,0.02278,0.3248790691593672,0.6751209308406327,25.39384005856595,4.529233622734079,0.3317980513728963,0.1968113374667847,0.237378210806023,0.2340124003542958,11.058644098781809,5.545743397216282,24.27628523286564,13086.390528447831,63.82410321147607,13.063098752905445,21.12816294058012,15.124573352723138,14.508268165267369,0.5489813994685563,0.7803780378037803,0.6983449012279765,0.582089552238806,0.109008327024981,0.7120651369356032,0.9025787965616046,0.883668903803132,0.717607973421927,0.1417322834645669,0.4976711690731253,0.7244094488188977,0.6402524544179523,0.5428296438883542,0.1012183692596063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021881394736308,0.004876416796772,0.0073880127463516,0.0097941600796537,0.0119832356770833,0.0143111790170613,0.0166557871975847,0.0188345845462438,0.0210563992432377,0.0233477379318819,0.0255061227001415,0.0273549049820236,0.0293294652593461,0.0313037743820132,0.0334847233691164,0.0358162336587787,0.0380574436339522,0.0401876530908789,0.042221436298577,0.0443791299272507,0.0589587403746695,0.0734419500753895,0.0868022755421206,0.0994148969755645,0.1114171732522796,0.1273368195964685,0.1407411339987258,0.1536683566954965,0.1652843981788256,0.1769068137670505,0.1913932836142604,0.2045324122697792,0.2169672693232902,0.2274746678922373,0.2375996652129862,0.2494870060006433,0.2596559812353401,0.2693398455963447,0.2782811080835604,0.2874515737111157,0.2948622918162655,0.301849683914774,0.3088501758666019,0.3158482142857143,0.3232509812976218,0.3294539716198389,0.3353161434135223,0.3414109531506535,0.3466808257142117,0.3519682959048877,0.3533273126743856,0.3537761852260198,0.3549615091785805,0.3559182136754612,0.356545297567656,0.3560908254065664,0.3565935721194248,0.357481892686452,0.3587536787351995,0.3593959671503462,0.3601741022850925,0.3619002337652046,0.3630435239918379,0.3644649993264783,0.3663808718753774,0.3677736777367774,0.3673258517264143,0.3710809694736507,0.3727550223610421,0.3740206516935192,0.3755929081280221,0.3767711464147703,0.377409061901723,0.3808710503842869,0.3814502206023403,0.3804465902232951,0.3818321785989222,0.3731796116504854,0.3712691771269177,0.3752402921953095,0.0,2.369543585821972,59.51482796483792,220.73559935242804,324.5383614572125,fqhc8_100Compliance_baseline_low_initial_treat_cost,9 -100000,95624,41936,394.8904040826571,7260,74.70927800552163,5610,58.05028026436878,2306,23.738810340500294,77.3146043072854,79.73366115846454,63.296484254502126,65.08287841360303,77.02752885000436,79.44269805537806,63.19233846894534,64.97901117457936,0.2870754572810483,290.963103086483,0.1041457855567884,103.86723902367125,76.93686,54.11055556298733,80457.68844641512,56586.793653253706,237.61225,146.138494008091,247892.96620095373,152234.6683784231,267.70744,127.92122150495123,275005.17652472184,130090.14590854468,3677.97404,1646.8405179189929,3812630.186982347,1688711.317887775,1346.2303,579.6934885668265,1396632.874592153,595320.254689801,2254.9333,935.7732420886932,2324807.5169413537,953549.5746316595,0.38356,100000,0,349713,3657.167656655233,0,0.0,0,0.0,19993,208.45185309127416,0,0.0,24908,255.63666025265624,2090950,0,75025,0,0,0,0,0,46,0.4705931565297415,0,0.0,2,0.0209152514013218,0,0.0,0.0726,0.1892793826259255,0.3176308539944903,0.02306,0.3184138201806046,0.6815861798193954,25.30756254372372,4.493016654588999,0.3303030303030303,0.2092691622103386,0.2322638146167558,0.2281639928698752,11.25213048893544,5.856373088214091,24.623198288949183,13098.385472368893,63.15307937536118,13.714535762958551,20.77327289926148,14.54075549695702,14.124515216184122,0.5468805704099822,0.7632027257240205,0.6821370750134916,0.5832693783576363,0.115625,0.7009413468501087,0.9090909090909092,0.8484848484848485,0.7389705882352942,0.1282051282051282,0.4965712934499882,0.695,0.6268871315600287,0.542192046556741,0.112214498510427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203266695712,0.0046546531320035,0.0067608722134242,0.0088604379413707,0.0111185709635416,0.0132511713179873,0.0153201211737946,0.0173664317090611,0.0194229372717881,0.0215358777687888,0.0235794871794871,0.0259167950693374,0.0280541124427755,0.0303848333419195,0.0326290037883088,0.0346071923403023,0.0365343169761273,0.038891196013289,0.0407753454303312,0.0427495723999833,0.0573184497679668,0.0707881174843926,0.0835599609395508,0.0962255015472706,0.1088922898305979,0.1246294257157377,0.1378134658891756,0.1510240180721608,0.1632421678628346,0.1742446213170925,0.1882868207855532,0.2019507965752682,0.2150810598797176,0.2257933769320932,0.2376176515969758,0.2490317282402423,0.259323416667598,0.2697291328646115,0.278908318278397,0.2880002753019718,0.2965536409116175,0.3047971257036526,0.3113837699559429,0.3184309962214358,0.3252979842776083,0.332268961436039,0.3384528726999624,0.3448411890461162,0.3499935241549022,0.3556089701259938,0.3566354384309496,0.3576052225650066,0.358737370886719,0.3596355260679984,0.3614093159181726,0.3624235344748086,0.362222999395924,0.363436814048291,0.3644507875369695,0.3660103738535815,0.3672889991915317,0.3676950782687855,0.3686615658735981,0.3699271708683473,0.3698653198653198,0.3691518182765447,0.3704136613735496,0.3737627651217596,0.3765371372356124,0.3778246339910884,0.3790730529098118,0.3812976488777523,0.3834375398749521,0.3838220580312476,0.3836889521100047,0.385616190820383,0.3843260188087774,0.3845358693405003,0.3935430002783189,0.3909626719056974,0.0,2.3950420012903977,60.89131433556709,209.25359950728225,324.8630672779079,fqhc8_100Compliance_baseline_low_initial_treat_cost,10 -100000,95651,41390,389.1752307869233,7438,76.41321052576555,5782,59.92619000324096,2308,23.81574682962018,77.29129418892526,79.69091835558848,63.29829466637945,65.06962498178261,77.00512876350845,79.4011468454267,63.193203514489255,64.96488032521033,0.2861654254168115,289.7715101617848,0.1050911518901926,104.74465657227938,76.46144,53.80335296249011,79937.94105654933,56249.65025194729,238.85668,147.0152877181199,249204.79660432195,153189.9180814592,271.29449,130.1175124275341,279625.22085498326,132987.8506749054,3821.81509,1722.1870664169016,3962617.7143992223,1767772.184474892,1396.08157,609.7306590003423,1446912.703474088,624898.6274070381,2281.34178,954.1790886131404,2355485.9227817794,974646.3883176228,0.37839,100000,0,347552,3633.542775297697,0,0.0,0,0.0,20147,210.0866692454862,0,0.0,25349,261.04274916101247,2091241,0,75081,0,0,0,0,0,42,0.4390962980000209,0,0.0,0,0.0,0,0.0,0.07438,0.1965696767884986,0.3102984673299274,0.02308,0.3189313562571903,0.6810686437428096,25.15639802990198,4.596986640319837,0.335696990660671,0.2018332756831546,0.224143894846074,0.2383258388101003,11.34304921828123,5.638842688120082,24.647560324262123,12976.417063942534,65.40504064171004,13.686312855931982,22.03223925579596,14.395235598431734,15.291252931550368,0.538395019024559,0.7686375321336761,0.6743946419371458,0.5841049382716049,0.1088534107402031,0.6850672328379335,0.905982905982906,0.8389121338912134,0.7263157894736842,0.1404682274247491,0.4909590295262073,0.7095588235294118,0.6206425153793574,0.5440158259149357,0.1000926784059314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020967758273148,0.0044611173071073,0.006597444251596,0.0088405649832334,0.0110287010754,0.0131282782502418,0.0153863409262393,0.0177262237833643,0.0197632095534107,0.0217168717875207,0.0236893920748215,0.0258919951523118,0.0280846861304857,0.0301606438117613,0.0324871733991266,0.0345754858460806,0.0366443857194673,0.0388832360819818,0.0409110299549479,0.04283733489017,0.0569216139111533,0.0707956259426847,0.083976438718619,0.0969402254570715,0.1090893739181829,0.1242286645709628,0.1382787868493965,0.1514209023901836,0.1633970857075658,0.1745021203499919,0.187363200172516,0.200534933079222,0.2127189401608917,0.2234644824301091,0.2342993837707936,0.2456233774878519,0.2561156867784942,0.2657800200452708,0.2762900881257382,0.2850559955982989,0.2928425026344129,0.3002691947565543,0.3083211886396758,0.3151819141787463,0.3223364770307271,0.3296288064014225,0.3359963879447656,0.3415337133820509,0.3475202159832821,0.3531588686227861,0.3538496816661271,0.3545618851837033,0.3555046843867904,0.3558670880570617,0.3558164163298182,0.3563060913471159,0.3560602446045454,0.3570237289255106,0.3590973153208896,0.3599367554844853,0.3606696453820485,0.3625291062152964,0.3632048604518701,0.3637693554195174,0.3660580592184707,0.3669294638413787,0.3681053443400268,0.3704873503679606,0.3717649554518455,0.3742540153001962,0.3746727297781452,0.3758880401687944,0.3766639067575313,0.3769325912183055,0.3769628494829567,0.3754403012267703,0.3791804050871408,0.376258389261745,0.3784545967287084,0.3768844221105528,0.0,1.9796844716326936,62.67164503269614,225.98848848019816,327.5172691142358,fqhc8_100Compliance_baseline_low_initial_treat_cost,11 -100000,95622,40968,385.19378385727134,7305,75.06640731212482,5642,58.33385622555479,2298,23.530149965489112,77.27514686010801,79.68596159866452,63.27600815666828,65.05618323437663,76.99400455437495,79.40835570286744,63.17212456285748,64.9570541083157,0.2811423057330557,277.6058957970804,0.1038835938108064,99.12912606093016,77.17556,54.2529189248494,80709.0000209157,56736.85859409905,239.87601,147.38296352893218,250192.05831294053,153464.26923608815,263.6828,126.04689304537918,272046.22367237665,128894.48183224922,3758.23239,1691.055205663859,3885234.0883897007,1723412.3482711709,1377.31185,602.2875603547518,1421139.8736692392,610631.8011352465,2272.6687,945.9750664062352,2329672.0210830146,949047.6072549172,0.37633,100000,0,350798,3668.590910041622,0,0.0,0,0.0,20277,211.36349375666688,0,0.0,24660,254.14653531614064,2085786,0,74870,0,0,0,0,0,42,0.4392294660224634,0,0.0,0,0.0,0,0.0,0.07305,0.1941115510323386,0.3145790554414784,0.02298,0.3167273673257024,0.6832726326742976,25.359059502314413,4.610202434547358,0.3275434243176178,0.1981566820276497,0.2320099255583126,0.2422899680964197,11.287741058464368,5.635134477757029,24.56853873887533,12912.534034831886,63.66118173926354,12.933872869390386,21.03712865515299,14.545283471107924,15.144896743612222,0.5377525700106345,0.7432915921288015,0.6985930735930735,0.5790679908326967,0.1126554498902706,0.7071942446043166,0.8973607038123167,0.8623481781376519,0.7275862068965517,0.1509433962264151,0.4823612417685795,0.6756756756756757,0.6388478581979321,0.5368007850834151,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146791963707,0.0043886766062252,0.0069199939120288,0.0090198070086338,0.0111270456371606,0.0134736027374938,0.015917526614186,0.0181110963645087,0.0203756146933434,0.0225671690694626,0.0244225167193205,0.0268232296771144,0.0288389320438294,0.0308093510348808,0.0328996282527881,0.0350182073988247,0.0368493065489147,0.0386253167712184,0.0404096117222216,0.0424045220365851,0.0570165353178502,0.0704795037304049,0.0832860594600273,0.0957342576301899,0.1078340234936195,0.1235502833236244,0.1366766562519926,0.1490890483246804,0.1614739974099087,0.1729812229280194,0.186634278002699,0.1996225964927501,0.2119738807190433,0.2228412256267409,0.2334738561370207,0.2449707297024093,0.2552519950306109,0.2649408684661912,0.2747598014662356,0.283920550494549,0.2921675562775586,0.3005243955373587,0.3080346546403987,0.3147416102947361,0.3214902991796295,0.3281799883926256,0.3342575748071011,0.3406764319679759,0.3457960922885055,0.3505044086106919,0.3507714756667657,0.3507883038352155,0.3518065819779847,0.3519820276831654,0.3532269360871444,0.353518746158574,0.3529374414654666,0.35380535928982,0.3547967702203367,0.3561820263308529,0.3571186695763413,0.3591197462331483,0.3601160443995964,0.3613598115112756,0.3618546498998334,0.3623646917324687,0.3630567785465149,0.3651034264961313,0.3671538515851161,0.3711216707263506,0.3728340876880172,0.3735210664382462,0.3763849319404875,0.3774965695990242,0.3771190453641443,0.3837279173176301,0.3862229102167183,0.3927839278392784,0.3889662858735023,0.3917086400619914,0.0,2.5606653153831487,61.18848148834344,216.25720006748745,320.1367680085518,fqhc8_100Compliance_baseline_low_initial_treat_cost,12 -100000,95693,41478,388.8267689381669,7269,74.74945920809255,5633,58.36372566436417,2252,23.261889584400112,77.28391542799022,79.68135158190032,63.28504443165552,65.05947777675584,77.01015661827562,79.40307957395892,63.18572425655609,64.9602139606637,0.2737588097146073,278.2720079413963,0.0993201750994288,99.2638160921473,76.76372,54.00184314628563,80218.74118274065,56432.38601181448,239.49887,147.36262557725416,249805.3149133165,153522.1547837921,268.2744,128.22517923015312,276411.1063505168,131048.31332631418,3721.62844,1677.479180745118,3859139.863939891,1723447.654434706,1370.67598,598.5957503850507,1418603.983572466,611944.9987701538,2219.73386,918.592259928692,2294739.0091229244,939897.8329853052,0.38119,100000,0,348926,3646.306417397302,0,0.0,0,0.0,20202,210.61101647978435,0,0.0,25095,258.399255953936,2089759,0,75070,0,0,0,0,0,43,0.438903577064153,0,0.0,0,0.0,0,0.0,0.07269,0.1906923056743356,0.3098087769982116,0.02252,0.315748134572588,0.684251865427412,25.42443453061112,4.604467279728444,0.3376531155689686,0.1970530800639091,0.2343333925084324,0.2309604118586898,11.331675647546271,5.749204048861309,23.91738368513197,13113.453715485555,63.66631729395303,12.947655806153186,21.55160697984437,14.775696398057017,14.391358109898452,0.560802414344044,0.7594594594594595,0.7192429022082019,0.5969696969696969,0.1229823212913143,0.7228300510576222,0.9267605633802816,0.902439024390244,0.7186440677966102,0.1592592592592592,0.5086813702487095,0.680794701986755,0.6623018607856651,0.5619512195121952,0.113482056256062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024219209176952,0.0047975494969165,0.0073098673056032,0.0095730734443755,0.0119145732222256,0.0140880938798793,0.016247641389158,0.0184867426563712,0.0206494502684735,0.0229260996947284,0.0249912797258756,0.027156713657474,0.0291723690844918,0.031164976502597,0.0334455065342609,0.0354103107709809,0.0375205943610308,0.03969399088616,0.0417000384859422,0.0436880556105593,0.0586822094092086,0.0732179684473896,0.0859016737499344,0.0985900673400673,0.110844924752517,0.1268139335499645,0.1399993629152996,0.152709884234853,0.1643756547020972,0.1760128789911457,0.1898489960012502,0.2028294733193232,0.2151668572050737,0.2265281093274347,0.2375752099266083,0.2485237968389273,0.2590460434388938,0.2686516701978993,0.2787002625387841,0.2884496248537274,0.2963302220418575,0.3038028119466692,0.311773988775377,0.3191578795666899,0.3255360861147303,0.3320450925434318,0.3389127109506256,0.3440697185521169,0.349068467931182,0.3544263680540883,0.355169670904507,0.3560477705690317,0.357152924594785,0.3582756277738424,0.3591690864418137,0.360234043860188,0.3592859071488699,0.3598927314007436,0.3606886263481884,0.3612495964994082,0.3618123587038432,0.3628581098568556,0.363840135335166,0.365118064020949,0.3659877849964718,0.3671622154979608,0.3689568159660492,0.3707590842792821,0.3736895979668914,0.3761354581673307,0.3781443298969072,0.3803576194288764,0.3794774944916588,0.3812008469449486,0.3812061711079944,0.38221695317131,0.3756516406010426,0.3782246597603088,0.3773426573426573,0.3791505791505791,0.0,1.9924803449415192,60.758674840225005,220.0973033090293,319.4352194700673,fqhc8_100Compliance_baseline_low_initial_treat_cost,13 -100000,95660,41394,389.32678235417103,7243,74.68116245034497,5601,58.00752665690989,2243,23.10265523729877,77.35161970545354,79.75589277541404,63.31721993396855,65.09360079627696,77.08290340709922,79.48639610658363,63.21974964839307,64.99804364779264,0.2687162983543203,269.49666883041345,0.0974702855754827,95.55714848431762,77.16742,54.21722723512704,80668.42985573907,56677.009445041855,237.89048,146.57223530360832,248157.26531465608,152696.0017808994,264.39825,126.25575528119845,272296.1321346435,128895.90420334984,3715.33863,1666.2531664699734,3851267.0604223288,1709216.607223473,1383.46126,595.1046536544933,1433037.2255906337,608913.6563396325,2215.47996,910.8178221959838,2284561.7185866614,925673.1443712376,0.38022,100000,0,350761,3666.746811624504,0,0.0,0,0.0,20064,209.1887936441564,0,0.0,24657,253.752874764792,2093241,0,74990,0,0,0,0,0,50,0.5226845076311938,0,0.0,0,0.0,0,0.0,0.07243,0.1904949765924991,0.3096783100925031,0.02243,0.3093298291721419,0.6906701708278581,25.574379885887573,4.576241301338354,0.3227995000892698,0.20317800392787,0.2372790573111944,0.2367434386716657,11.16831547928004,5.636105848622364,23.689899303130925,13022.821506696127,62.98496728761454,13.20580113370352,20.34990851433955,14.810550840663966,14.61870679890751,0.5440099982146045,0.7407732864674869,0.7029867256637168,0.5861550037622273,0.1161387631975867,0.7028985507246377,0.9101123595505618,0.8599137931034483,0.7260726072607261,0.1050583657587548,0.492063492063492,0.6636828644501279,0.6488095238095238,0.5448343079922028,0.1188026192703461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020871115794166,0.0043299700856867,0.0066981955467148,0.0086767455092253,0.0110162853858751,0.0133733958036259,0.0155916993830622,0.0177880344324064,0.0197443762781186,0.0219502202191949,0.0242833986498963,0.0264710113652711,0.0286084755181427,0.0306498005134073,0.0326395703145173,0.0346789712181092,0.0368447235868416,0.0386895184312422,0.0408235453230823,0.0426758698349477,0.0575924436039161,0.0716364778557219,0.0850782455366982,0.0977283010132682,0.1103125857447392,0.1257434963909997,0.1387788901510728,0.1515991175812347,0.1633024186215675,0.1751777009470225,0.1891180815389094,0.2016271436154654,0.214251502220674,0.2257979771443583,0.2368560163873042,0.2481899925714855,0.258469652274962,0.2684071872466901,0.277838954669815,0.2877004122766834,0.2956236045395125,0.3035559815771632,0.3101453732508487,0.3173428198402146,0.3238075583018707,0.3304761201014803,0.3365913408659134,0.3424955205672677,0.348109365910413,0.3531403129775014,0.3538250447275319,0.3540816466740866,0.3549558680687529,0.3549635405385892,0.35565095965298,0.3556994580692569,0.3554985998386255,0.3559514037103923,0.3569633668951606,0.3583442063307655,0.3595193390912504,0.3614903636867307,0.3627430395162306,0.3628572067939222,0.3639489312591666,0.3654827622122695,0.3661032408858991,0.3670925914269528,0.3680694722778891,0.370034232943237,0.37266825164594,0.3722767028889477,0.3772112055398174,0.3786860198624904,0.3786636509282819,0.3779216109313196,0.3805762081784387,0.375025463434508,0.3742482230727173,0.3824308973873532,0.0,2.1473472781799208,61.123893688748,207.34802742891355,325.2930301333322,fqhc8_100Compliance_baseline_low_initial_treat_cost,14 -100000,95793,41576,390.52957940559327,7159,73.54399590784294,5591,57.80171828839268,2298,23.634294781455846,77.3507064425629,79.67856972353982,63.34838135415546,65.06979962928297,77.07052212573771,79.395969900851,63.246336297280926,64.96892479556148,0.2801843168251849,282.5998226888231,0.1020450568745303,100.87483372149109,77.11748,54.30328474673372,80504.2957209817,56688.15544636218,239.04489,147.25348583280294,249003.97732610945,153181.3137001691,265.80885,127.47464095730002,273413.58971949934,129996.5552137913,3740.31015,1676.9963851293269,3870650.162329189,1716720.5799268477,1378.81118,594.6620565376197,1426596.2544236009,608009.1724213873,2280.93154,947.9303823559052,2349211.7795663564,964338.8121198526,0.3812,100000,0,350534,3659.286169135532,0,0.0,0,0.0,20166,209.94227135594457,0,0.0,24750,254.3192091280156,2093010,0,75057,0,0,0,0,0,43,0.4384453978891985,0,0.0,1,0.010439176140219,0,0.0,0.07159,0.1878016789087093,0.3209945523117753,0.02298,0.3188328912466843,0.6811671087533157,25.394236055497025,4.681068013020232,0.3233768556608836,0.1974602038991235,0.2264353425147558,0.2527275979252369,11.018922543500668,5.438212276270235,24.639358332800505,13022.053995141176,63.08403952219768,12.93712099356959,20.50053089176343,14.083325314570772,15.563062322293884,0.5340726167054194,0.7644927536231884,0.6913716814159292,0.5710900473933649,0.1196036801132342,0.7047619047619048,0.9189944134078212,0.8719646799116998,0.6895306859205776,0.1696750902527075,0.4789398958826313,0.6903485254691689,0.6309963099630996,0.537917087967644,0.1073943661971831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081763299704,0.0043491484184914,0.0066161324038276,0.0088574679018365,0.0111131446233935,0.0130717623464017,0.0151848681260445,0.0175832474410915,0.0198146274666094,0.0216741711011052,0.0240691026087669,0.0264832030207884,0.028662158551374,0.0303679150110148,0.0324303700877527,0.0345568561009122,0.036464099831338,0.0386274103255235,0.0407298557527546,0.0427155558331771,0.0570343395557039,0.0717870436200911,0.0845606348074927,0.0971521647751156,0.1099190624736531,0.1253791922544367,0.1390217264524064,0.152362912751535,0.1642399658411614,0.1755811087415472,0.1892610370880599,0.2025505241543283,0.2150656801069135,0.2268992942513164,0.2367978361975129,0.2476795256164883,0.2576166172635896,0.2680754021748899,0.277629834441964,0.2871476295075965,0.2953201515291508,0.3031322261929787,0.3100132469129961,0.3171552426114863,0.3244929418476215,0.3307877070887479,0.3371681526591554,0.3423754691774286,0.3477551231897199,0.3527813320318168,0.3538881934068301,0.3541861746075461,0.3550976077634845,0.3559025011948383,0.3563632573445108,0.3558900322531101,0.3557945915027487,0.3575764573917059,0.3584041184041184,0.3588846422996178,0.3603607002716571,0.3607248711981062,0.3616154365816585,0.3620744152442879,0.3625886739462025,0.3635670731707317,0.3647224781206817,0.3677195661163597,0.3678618385984862,0.3690890890890891,0.3720544154945815,0.3738923708666523,0.3747036586147241,0.3761553398058252,0.3780928816140084,0.3791235251625331,0.3810785536159601,0.3794967768766895,0.3807909604519774,0.3830534947286216,0.0,2.233854418977894,60.06039001449852,215.29063383039656,319.8457380813767,fqhc8_100Compliance_baseline_low_initial_treat_cost,15 -100000,95739,41548,389.6217842258641,7203,74.11817545618817,5563,57.552303658905984,2299,23.668515443027395,77.31652017658898,79.67726920948583,63.31665033110207,65.06274630362809,77.02978578699059,79.39073110946909,63.21126169213181,64.96010561985925,0.2867343895983936,286.53810001674174,0.105388638970254,102.64068376883984,76.0672,53.53113975125133,79452.67863671022,55913.619059371136,236.05818,145.36345754969005,246029.1208389476,151297.9011162536,261.40396,124.7191669064898,269767.09595880465,127690.88978542574,3709.29253,1669.1988076450557,3842197.819070598,1711306.8317457414,1359.06503,595.4962548724516,1404397.758489226,606845.2719084715,2272.05048,954.5032392409746,2341803.4656722965,968131.2323136848,0.38114,100000,0,345760,3611.485392577737,0,0.0,0,0.0,19888,207.1674030436917,0,0.0,24429,251.8827228193317,2097565,0,75321,0,0,0,0,0,42,0.4386926957666154,0,0.0,1,0.0104450641849194,0,0.0,0.07203,0.1889856745552815,0.319172566985978,0.02299,0.3169377231257437,0.6830622768742562,25.488454592019664,4.587390693724615,0.3248247348552939,0.1982743124213553,0.2333273413625741,0.2435736113607765,10.96188498817445,5.333744558745455,24.77948239219732,13070.282361839363,62.99620630708672,13.017598403978306,20.40496425257003,14.486389708959472,15.08725394157893,0.5369404997303613,0.7651858567543064,0.6884338682899834,0.5808936825885979,0.1070110701107011,0.6656912948061449,0.8977272727272727,0.8461538461538461,0.7178571428571429,0.0980392156862745,0.4949952335557674,0.7030625832223701,0.6393323657474601,0.5432220039292731,0.109628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024817414734453,0.0047647529931772,0.0068510530322253,0.009408943576821,0.011627197265625,0.0136883058684537,0.0159709544837995,0.0182081839812914,0.02041901412051,0.0227079600716662,0.0249876958411943,0.0269951123341684,0.0291943030489999,0.0314076820100916,0.0335657699290311,0.0358740687930731,0.0377938573336231,0.0399053971349439,0.0418290870157274,0.0433704564159729,0.0582898308623929,0.0718665634221375,0.0849334605744727,0.0979410713159057,0.1101867375235926,0.1257866291552528,0.1382818467283374,0.1501415827460665,0.1628185266306961,0.174613222324743,0.1883940882454326,0.2022011081291663,0.2147440080038279,0.2259517613872428,0.2370819664912705,0.248911055694098,0.2597509910111105,0.2704165447712491,0.2792685418511203,0.2879388578238152,0.2961848319288823,0.3036487466941278,0.3117693738081984,0.3192482628679779,0.3249604670964602,0.3301637481785176,0.336129501454509,0.3416580614729542,0.3467034962133001,0.3525157981015838,0.3532641690163647,0.3539888990141662,0.3550513480634849,0.3560596165846721,0.3572281068178428,0.3576920711078304,0.3574675015097098,0.3581909713625484,0.3596432438005877,0.3610586691119621,0.3623694036887565,0.3625973922722213,0.3633411357837245,0.3645223732781129,0.366205361463273,0.367069051297494,0.3668559302592337,0.3702041590291385,0.3738934151588897,0.3754237626131695,0.3772038283647021,0.3806461983603922,0.3829152111781518,0.3831203611599969,0.3833744543556652,0.3856453558504222,0.3850825288072251,0.3862097270675149,0.3892617449664429,0.3930523028883684,0.0,2.2019474586043493,60.54632010109381,215.00275164520784,316.97943184944603,fqhc8_100Compliance_baseline_low_initial_treat_cost,16 -100000,95668,41601,390.9248651586737,7320,75.20801103817368,5765,59.570598319187184,2360,24.229627461638163,77.40264542862671,79.78242306148198,63.35728834693722,65.11163570774892,77.11899116416281,79.5008229970868,63.25404272483481,65.01188552267382,0.2836542644639053,281.6000643951781,0.1032456221024062,99.75018507509505,77.1848,54.24499956679292,80679.62118994858,56701.083506285184,241.23048,148.39178551960015,251445.770790651,154404.06221369753,269.70022,128.94905488517276,277569.59484885226,131378.60463892188,3811.38761,1712.6793147849262,3941755.28912489,1748074.6247501,1401.73574,609.6588867279148,1446708.585943053,618795.8503659096,2325.01004,958.8929464094124,2389638.018982314,967956.6797865132,0.38094,100000,0,350840,3667.255508634026,0,0.0,0,0.0,20323,211.6904294016808,0,0.0,25226,259.36572312581006,2094556,0,75070,0,0,0,0,0,38,0.3867541915792114,0,0.0,0,0.0,0,0.0,0.0732,0.192156245077965,0.3224043715846995,0.0236,0.3195474053843152,0.6804525946156847,25.434302926723287,4.524536901434495,0.3417172593235039,0.195836947094536,0.229661751951431,0.232784041630529,11.14969066634414,5.662557459589758,24.9190106008729,13097.847134342472,64.69989237476683,13.192534526530428,21.985720966691044,14.88015860066938,14.641478280875983,0.5524718126626192,0.7431355181576617,0.7025380710659899,0.6163141993957704,0.1087928464977645,0.7142857142857143,0.8937329700272479,0.8626609442060086,0.765625,0.1340996168582375,0.4998850838887612,0.6706036745406824,0.6529255319148937,0.5687250996015937,0.1026827012025902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022582049802027,0.0046520113107725,0.0071921282207344,0.0094248600997328,0.0118160279029092,0.0138789890638046,0.0161387339810576,0.0181361692573049,0.0202953349343416,0.0225960948053542,0.0247545050124028,0.0267431833114323,0.0288502071745098,0.0306388325317459,0.0325938918695831,0.0343861752485685,0.0365200824212804,0.0389029553378714,0.0409871869539895,0.0430332780956549,0.0573610371159651,0.0711675583988608,0.0848190394241161,0.0974165316727326,0.1096556452038179,0.125747172645811,0.1387429832659514,0.1507057846664821,0.1633824189446237,0.1749136692190549,0.188819849021656,0.2026167132004415,0.2151463743529514,0.2272443992521402,0.2385263574760186,0.2509549485711755,0.2618487507386307,0.2714494382022472,0.2810042827037683,0.2891254874604028,0.2969614376292053,0.3048061544927096,0.3121485611680764,0.3189482880359985,0.3262124851396268,0.3318435341484135,0.337235625930234,0.3429050620044724,0.3476883694471738,0.3523924957841484,0.3537762482187508,0.355078730969345,0.3558250312644905,0.3569554184209008,0.3581631290882392,0.3579198604672511,0.3575388904730222,0.3596954298024898,0.3612529675997882,0.3627986713811207,0.3646560132042914,0.3661891230562791,0.3662608259068658,0.367009617535227,0.367713328674362,0.3693434475542767,0.3697830194080265,0.372787785103631,0.3737780130580554,0.3749501396090945,0.3780347881958786,0.3815966070757502,0.3811887488863434,0.3803185350465492,0.3815326035221323,0.3839391779520076,0.3877740043223217,0.3925670186839967,0.3891029168959823,0.3894175866006852,0.0,2.59933837729624,61.9552016194871,216.1220818057847,331.573566599611,fqhc8_100Compliance_baseline_low_initial_treat_cost,17 -100000,95722,41688,391.5191909905769,7309,75.1655836693759,5687,58.77436743904223,2404,24.68607007793402,77.33907921770925,79.70616200407976,63.32552877917672,65.07567475595457,77.05196921172302,79.41968796780864,63.22035957479712,64.9737579292472,0.2871100059862357,286.474036271116,0.1051692043795995,101.91682670736668,76.68562,53.970547548279576,80112.84762123649,56382.59496069825,238.902,147.0242825169322,248932.19949436912,152949.27313294233,269.68648,128.41193228588014,277966.8205846096,131220.11554715037,3804.1991,1710.213412058702,3935232.82004137,1747768.4190686,1411.71835,612.4619572962521,1458759.7521990766,623783.0564512358,2376.98316,985.449641212172,2443276.0702868723,995163.3043020496,0.38168,100000,0,348571,3641.493073692569,0,0.0,0,0.0,20114,209.460730030714,0,0.0,25182,259.25074695472307,2094285,0,75080,0,0,0,0,0,41,0.4283236873446021,0,0.0,0,0.0,0,0.0,0.07309,0.1914954936072102,0.3289095635517854,0.02404,0.3194138244066917,0.6805861755933083,25.183741329155552,4.664917589593019,0.3223140495867768,0.19852294707227,0.231756637946193,0.24740636539476,11.173342729944606,5.460915066045397,25.56246311166582,13081.27072873172,64.41993306327025,13.238411117184269,20.7931333960509,14.815199761890591,15.573188788144476,0.5459820643573061,0.7590788308237378,0.7114020731042008,0.5948406676783005,0.1137171286425017,0.6978260869565217,0.9233038348082596,0.8435517970401691,0.7473684210526316,0.1342756183745583,0.4973299280241467,0.6886075949367089,0.6654411764705882,0.5527589545014521,0.1085409252669039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020256036298817,0.0045321815305998,0.0068410421931934,0.0091550154446431,0.0112509282524439,0.0136165965637698,0.015795645745169,0.0180604191977457,0.0203378392196159,0.0225014850775312,0.0246448900056407,0.0267355511960641,0.0290853740062325,0.0311044714609519,0.033155444532758,0.0351082201838657,0.037129507806106,0.0394781904791556,0.0411696806464024,0.0430791990498614,0.0572087875370672,0.0712746144348881,0.0848239562144819,0.0980031335765886,0.1103987176918453,0.1259546021873876,0.1392000848716316,0.1522426513643283,0.1647325340343228,0.1760319316730866,0.1898727356975829,0.2024387074417395,0.2142546245919477,0.2260101562842008,0.2371974185590625,0.2488385759111219,0.2595041322314049,0.2694710537276135,0.2797461600463178,0.2881804738814952,0.2959249826348691,0.304062434184354,0.3122478675957363,0.3188902332378979,0.326049481632554,0.3324224519940916,0.3382621303402245,0.3446720374088287,0.3504345352025244,0.3553693931398416,0.3559395015878142,0.3562805423635488,0.356700390862013,0.3573332560700006,0.3590045275825092,0.3586776352139481,0.3577753094255791,0.3590592420574139,0.3594286499107265,0.3602032753914667,0.3609913184309147,0.3618697895990472,0.3623093911031654,0.3618777695301077,0.3632304313195433,0.3655798618379736,0.3650283879107645,0.3662363958491521,0.3684433612376814,0.3706817181057604,0.3717046238785369,0.3731278957008943,0.3723090722706304,0.3750096651975566,0.374905303030303,0.3733797407585214,0.376270126621854,0.3794384805945499,0.3788645306351883,0.3788940809968847,0.0,2.452831630844633,60.83382134420425,221.7149845491974,325.3922940569065,fqhc8_100Compliance_baseline_low_initial_treat_cost,18 -100000,95682,41686,391.672414874271,7110,73.08584686774942,5515,57.0117681486591,2281,23.400430593006,77.30793472821749,79.68349348346906,63.31631099018998,65.06985191134629,77.02824374008843,79.40612787757351,63.21268930437566,64.97030519468963,0.2796909881290617,277.3656058955538,0.1036216858143248,99.54671665666126,76.85062,54.10069621674104,80318.78514245103,56542.187889823625,237.15736,146.4141059850847,247262.9439183964,152424.56886884128,261.55793,125.15712856720796,269739.22994920675,128004.21619521096,3648.24778,1636.2419568107607,3774440.647143664,1671635.706622728,1360.04861,590.4569111525433,1405748.5420455255,601426.2046702022,2249.5214,937.1490491851396,2310293.158587822,944074.1057312364,0.38186,100000,0,349321,3650.8538701114103,0,0.0,0,0.0,19976,208.1373717104576,0,0.0,24366,250.99809786584728,2090991,0,75102,0,0,0,0,0,54,0.5643694738822349,0,0.0,0,0.0,0,0.0,0.0711,0.1861938930498088,0.3208157524613221,0.02281,0.3096895074946467,0.6903104925053534,25.433587551328987,4.610327298870344,0.3361740707162284,0.2003626473254759,0.2248413417951042,0.2386219401631913,11.020890127687569,5.414645275755266,24.24741732568405,13035.2105283284,61.99236387585892,12.77760465640926,20.94553215199342,13.74291739267739,14.526309674778856,0.5421577515865821,0.7683257918552037,0.6844660194174758,0.5733870967741935,0.1223404255319148,0.7216804201050263,0.9333333333333332,0.8686440677966102,0.7364620938628159,0.1574803149606299,0.48493543758967,0.6980645161290323,0.6215629522431259,0.5264797507788161,0.1139359698681732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0048234769567508,0.0070704713985737,0.0091716096530429,0.0114311284679847,0.0133904932589303,0.0156621223399373,0.0177641653905053,0.0200678811670653,0.0223152593381171,0.0246647804157953,0.0263863078676372,0.0286930766382821,0.0306170804574018,0.0325569876273127,0.0346328402030414,0.0368866047745358,0.0392030648158722,0.041205047384244,0.0431065936929893,0.0573702848666548,0.0718697008394917,0.08512044653349,0.0976292151376822,0.1101703850533507,0.1255988578076252,0.1394907161803713,0.1521035598705501,0.1642626664102399,0.1752936759105294,0.1889472890593025,0.2018955089852752,0.214157559941282,0.2257821128254475,0.2363180247782937,0.2472355795865003,0.2577041129527317,0.2684351505874938,0.2773520429594814,0.2866556648101033,0.2947166008317212,0.3022447450962033,0.3099442214090311,0.3158463255679977,0.3228726834669814,0.3298767992494383,0.3354566885689923,0.341224791764991,0.3469785321887297,0.3519768180374722,0.3534970368670437,0.355133090346808,0.3563312605992086,0.3568910744592889,0.3574753804834378,0.3575194847119952,0.3582483655972132,0.3590323645970938,0.3598252974757548,0.3606810589460828,0.3622455716738035,0.3628491230864173,0.3639277204967635,0.3643335882326481,0.3653692445563979,0.3675128238853084,0.3680308081388665,0.3697279127291177,0.3710593581368929,0.3730244468451166,0.3746893695352047,0.375355094602562,0.3769750254841998,0.3815486249807958,0.382258064516129,0.3826055833929849,0.381590978360256,0.3791086912684009,0.3768980477223427,0.3763197586726998,0.0,2.4797927855843485,58.42779458542432,208.11387829082489,320.46123662400527,fqhc8_100Compliance_baseline_low_initial_treat_cost,19 -100000,95702,41653,393.1370295291634,7162,73.64527387097448,5577,57.64769806273641,2305,23.62542057637249,77.38171245272493,79.75614415344984,63.34258245905804,65.09505055099079,77.09681311471509,79.47335775703371,63.23745566626626,64.99424366826247,0.2848993380098363,282.7863964161281,0.1051267927917791,100.80688272832106,77.5313,54.59429638993236,81013.24946187122,57046.13946409935,241.72429,148.7614857909956,251962.52951871435,154824.74325614466,264.7501,126.29063075885963,273137.9699483815,129229.79329883486,3725.47364,1668.7877387504957,3852903.659275668,1703851.496050756,1364.75717,584.522780395485,1411307.872353765,596032.9673313878,2280.0649,947.6867615666542,2339580.238657499,953088.8673712192,0.38021,100000,0,352415,3682.420430085056,0,0.0,0,0.0,20339,211.8868989153832,0,0.0,24646,254.0490271885645,2089720,0,74892,0,0,0,0,0,52,0.543353325949301,0,0.0,1,0.0104491024221019,0,0.0,0.07162,0.1883695852292154,0.3218374755654845,0.02305,0.3032906039381525,0.6967093960618475,25.14264007152392,4.59450024619546,0.3320781782320244,0.189528420297651,0.2359691590460821,0.2424242424242424,11.044755062280164,5.46264365086851,24.40605935436341,12917.656004721084,62.6368377314728,12.276655504194816,20.92706718558741,14.632741478260812,14.800373563429744,0.5325443786982249,0.7663197729422895,0.673866090712743,0.5729483282674772,0.1168639053254437,0.6716306775874907,0.9131832797427653,0.8235294117647058,0.6986301369863014,0.1281138790035587,0.4884270193670288,0.7050938337801609,0.624551328068916,0.537109375,0.1139122315592903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002207907956571,0.0041865604314286,0.0064740025165401,0.0087154379050443,0.010873324246801,0.0129429735234215,0.0148967626816212,0.0169157580954714,0.0190650460525643,0.0210463818853709,0.023056734534867,0.0252874743326488,0.0271593257987885,0.0295226518881723,0.0314551083591331,0.033489112678095,0.035421327367636,0.0375335955254392,0.03946998928746,0.0412602134400533,0.0559390894753882,0.0699164520384446,0.0831269674711437,0.0962966859547606,0.1082418219985864,0.1238089194877164,0.1369819408781274,0.1498397691824502,0.1615246560123066,0.1729671744260888,0.1864998545242944,0.1994024421927773,0.2120335425209097,0.223638609802228,0.2348301504884273,0.2458978276755464,0.2562935697953265,0.2665946748557352,0.2760400712478586,0.2853837607522879,0.293496753584945,0.3018889993566875,0.3094758780759302,0.3164124334436609,0.3230546709774655,0.3295924030338533,0.3353573038209224,0.3406274280037192,0.3458767428601047,0.3512571767966739,0.3522133663632936,0.3527202696196437,0.3533348361464116,0.3538050541516245,0.3553096163546272,0.3557852566553005,0.3556785827269851,0.356815052776503,0.3571891191709844,0.3580141236892788,0.3589858901568385,0.3589292073918721,0.3595094078988677,0.3602756892230576,0.3617026396207801,0.3624739583333333,0.3628149583855888,0.3644078451093789,0.366697093104901,0.3692270973387963,0.3704042436436802,0.3688174340348253,0.3693210821847881,0.3694980694980695,0.3696520250998288,0.3741153892287394,0.37395607794618,0.3719925971622455,0.3753162777621591,0.3771070168561348,0.0,2.477065201840408,58.950291035725655,211.8414811106573,322.10342582430115,fqhc8_100Compliance_baseline_low_initial_treat_cost,20 -100000,95863,41792,391.42317682526107,7256,74.49172256240676,5685,58.781803198314265,2327,23.88825720037971,77.44506122741345,79.72158328014386,63.40474875222951,65.08368504914225,77.16396911594545,79.44123835591299,63.30158797543905,64.9833093236186,0.2810921114679985,280.3449242308744,0.1031607767904603,100.37572552364792,77.41668,54.48023485950429,80757.62285761972,56831.347714451134,239.9369,147.9355647587649,249786.38265024044,153814.69885019757,269.27621,128.74093206734267,277707.9373689536,131834.30927033155,3765.61785,1690.312491617147,3896163.389420319,1731297.5304519443,1416.17805,614.7845313293591,1461499.4210487884,625521.4956024325,2283.26896,946.6022094881024,2346514.3173069903,957701.3109279514,0.38239,100000,0,351894,3670.801038982715,0,0.0,0,0.0,20314,211.36413423322867,0,0.0,25057,258.2226719380783,2091750,0,75123,0,0,0,0,0,51,0.5320092214931725,0,0.0,0,0.0,0,0.0,0.07256,0.1897539161588953,0.3207001102535832,0.02327,0.313933674138157,0.686066325861843,25.326313042326547,4.602795195304591,0.3285839929639402,0.202990325417766,0.2379947229551451,0.2304309586631486,11.347019097348126,5.767663680194925,24.70366133249559,13084.830188548238,64.0320571618432,13.398672318281225,21.091734069777328,15.15039601082151,14.391254762963149,0.5465259454705365,0.766897746967071,0.6798715203426124,0.5668883961566888,0.1412213740458015,0.7133574007220217,0.9211267605633804,0.8322440087145969,0.7450980392156863,0.1924528301886792,0.4927906976744186,0.6983729662077597,0.6302342086586231,0.5148042024832856,0.1282296650717703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023887123221117,0.0048420263576413,0.0069963395962402,0.0089825829239576,0.0111874326823419,0.0131446419305938,0.0155320622504685,0.0178041543026706,0.0200859806594573,0.0222494887525562,0.0243600245750563,0.0266655726944535,0.0287786040014789,0.0310230615729597,0.0334226251803008,0.0356623073667695,0.0376743849343826,0.039832133050101,0.0417445288816909,0.0436596709917071,0.0581206206206206,0.0722210614291684,0.0856777895276885,0.0988688115175554,0.1110374648865322,0.1255475222966911,0.1387124099957645,0.1515470270729737,0.1632293977137007,0.1737124876921101,0.1877754132542292,0.2009848918454843,0.2136280726135672,0.2256313944727733,0.2368403708423041,0.2481577375024895,0.2586308760743309,0.2686986524607483,0.2777689586357039,0.2864467103832641,0.2952673945225759,0.3028562739777299,0.3104288960424162,0.3178013292617208,0.3247568512694731,0.3312921985116554,0.3380722740652596,0.3441228528134669,0.3497945587225052,0.3553648068669527,0.3564673869116577,0.3572519293997881,0.358082719993245,0.3585989007025693,0.3593372198240695,0.3599914400574739,0.3605384141428503,0.3612271305259364,0.3620839659496068,0.3639813297227963,0.3640705776579006,0.3654352256762372,0.3659309303008686,0.3655447139915853,0.3666474099749663,0.3674906132665832,0.368987305743724,0.3701480340698369,0.3723951949007109,0.3734350780970549,0.3754181751523761,0.3788576939562795,0.3803210048848569,0.3819911812485495,0.3851674641148325,0.3841691842900302,0.3864809888906274,0.3861635220125786,0.3893431068508599,0.4004729996058336,0.0,1.9823496047181428,61.38269073934601,222.98995839720416,317.85085731889944,fqhc8_100Compliance_baseline_low_initial_treat_cost,21 -100000,95678,41670,391.5215619055583,7185,73.73690921632978,5595,57.818934342273046,2279,23.37005372185873,77.29747507811412,79.69995861561101,63.28577397120039,65.06533363357859,77.02067275788635,79.4245169258607,63.18417135819103,64.96724323934912,0.2768023202277732,275.44168975030914,0.1016026130093621,98.09039422947308,77.64944,54.62963033121128,81157.04759714878,57097.37905392178,240.47585,148.02549755066437,250663.70534501137,154039.09179918558,266.46062,127.06964639756536,273788.8647337946,129240.35332099388,3701.38769,1658.6908155017632,3825636.091891553,1690873.9565895032,1385.56769,597.9279273524028,1428622.8809130625,605565.0332126188,2255.02028,934.387050134433,2314035.891218462,940425.2660873728,0.38176,100000,0,352952,3688.956708961308,0,0.0,0,0.0,20261,211.06210414097285,0,0.0,24820,254.86527728422416,2084901,0,74866,0,0,0,0,0,54,0.5539413449277786,0,0.0,0,0.0,0,0.0,0.07185,0.1882072506286672,0.3171885873347251,0.02279,0.3206500198176774,0.6793499801823226,25.33657915830697,4.573532944366165,0.3292225201072386,0.201787310098302,0.2266309204647006,0.2423592493297587,11.20870120959072,5.5861269463027305,24.02524002134877,13083.429149649985,62.82786357667427,13.089302623264324,20.72013913727426,14.203963020152196,14.814458795983477,0.5415549597855228,0.733392382639504,0.6921824104234527,0.6151419558359621,0.1084070796460177,0.6947761194029851,0.8885542168674698,0.8698630136986302,0.7534722222222222,0.1347517730496454,0.4933019976498237,0.6687578419071518,0.6367521367521367,0.5744897959183674,0.1014897579143389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023207264177712,0.0047268374819954,0.0072795573379359,0.0095112285336856,0.0116984049479166,0.0138829472998024,0.0159520215413487,0.0181062478299054,0.0203422072675578,0.0223960840134765,0.0245966377073225,0.0268845924677939,0.029094051562725,0.0307589262713174,0.0327809612307056,0.0346921254874378,0.0369495144222298,0.0390617699280441,0.0411347960425704,0.0431144089876399,0.057777684923064,0.0720118083034985,0.0854486500099688,0.0981675117291872,0.1099858640842247,0.1251838293640297,0.138562466163498,0.1512291764304887,0.1632818933341888,0.1749634911090112,0.1889965054575262,0.2018168612529405,0.2145751633986928,0.2251221703591699,0.2354666225676644,0.2465741264715999,0.2575899843505477,0.2676611758343286,0.277717805074827,0.2866330390920555,0.2958761572598867,0.3040747943857347,0.3115208683904913,0.3184154278440885,0.324812853752054,0.3315677050536479,0.338274020013543,0.3442499553468908,0.3498590378194385,0.3552170057312279,0.3566748179472283,0.3569800373005456,0.3575380261761585,0.3579045104382771,0.3590366111591051,0.359291818167871,0.3595391661252238,0.36091769033699,0.36145524043548,0.3623028053394246,0.3639699000411815,0.3655752596864015,0.3660208831299534,0.3673592628212296,0.369039308668127,0.3695107305101561,0.369988577955454,0.372418576788473,0.3740753786544558,0.3777689243027888,0.3784884252905114,0.3781924820047987,0.3794631552291719,0.3796693202694427,0.384987205004265,0.3852860384569449,0.3843289371605896,0.3841726618705036,0.3876529477196885,0.383572258814413,0.0,2.476156116807949,58.91610869530097,211.0702691098444,326.0791908855235,fqhc8_100Compliance_baseline_low_initial_treat_cost,22 -100000,95825,41378,389.6686668405948,7107,73.03939472997652,5510,56.88494651708845,2248,23.052439342551526,77.32864418348662,79.64067179533976,63.32870225298407,65.03871693436223,77.05843770690824,79.37047199920562,63.23052756365464,64.94349638625962,0.2702064765783802,270.19979613413625,0.0981746893294257,95.22054810260272,77.30096,54.44145412958775,80668.8859900861,56813.41417123689,238.6819,146.93850639986246,248445.3117662405,152704.7496998304,262.42382,124.85054359169165,270049.27732846333,127316.36230953624,3652.25379,1622.9179372961971,3773387.351943648,1655635.3532963186,1353.85358,580.9982045286644,1400839.2799373858,594323.0861347248,2223.58072,913.1373697642996,2282282.807200626,919583.1656318766,0.37876,100000,0,351368,3666.767545003913,0,0.0,0,0.0,20131,209.4129924341247,0,0.0,24507,251.990607878946,2088655,0,75028,0,0,0,0,0,46,0.4696060527002348,0,0.0,3,0.0313070701800156,0,0.0,0.07107,0.1876386102017108,0.3163078654847334,0.02248,0.3118884867980163,0.6881115132019836,25.47599420594915,4.5305691891787525,0.3225045372050816,0.1992740471869328,0.2373865698729582,0.2408348457350272,10.992118090261798,5.436104941356438,23.670786457389177,12902.072155434202,61.69503522934176,12.851097125257972,19.8705646659109,14.38275018755284,14.59062325062004,0.543557168784029,0.7632058287795993,0.7045582442318514,0.5718654434250765,0.1183119819140919,0.7061538461538461,0.924198250728863,0.878345498783455,0.7444444444444445,0.1413043478260869,0.4933491686460807,0.6900662251655629,0.6522693997071742,0.5269749518304432,0.1122740247383444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0042776628958358,0.0064424491452341,0.0083495855680156,0.0104535285743339,0.0130116065974343,0.0149220262970135,0.0170022554012266,0.0193144889324912,0.021580746167857,0.023750486690301,0.025655761257748,0.0275416979251235,0.0293496947672922,0.0312561228383158,0.0331298230390181,0.0351429103628122,0.037263603185136,0.039366398338094,0.0413522487171747,0.0555202086049543,0.0689947200585498,0.0824476448022137,0.0952701211630815,0.1070822485269471,0.1229453611407672,0.135428595665267,0.1487806435137895,0.1615621195617351,0.1731542329091669,0.1866500123830341,0.1995088812444559,0.212109680786292,0.2237548227733269,0.2342159979757753,0.2456523183942932,0.2562218773377399,0.2661659892132908,0.2761808497348127,0.2846198837115956,0.2926130763968602,0.2996786602242342,0.3072840605520926,0.3138362436755639,0.3204041879717555,0.3267782633385181,0.3331744817466986,0.3397472680208612,0.3445115222330412,0.3498484788333532,0.3510850788166703,0.3518564527260179,0.3537882645843943,0.3551023370590797,0.3562311752601914,0.3559733730994511,0.3561700437028208,0.3581809503431703,0.3595622809267333,0.3614847364378472,0.3620488940628638,0.362977053858043,0.3628234997796108,0.3636302490863843,0.3642684693384838,0.3656546041409714,0.3662649222753428,0.3685988507924481,0.3679879013821967,0.3694424560566293,0.3710792618709648,0.3730472929595549,0.3770971021860702,0.37649417752757,0.376131060100962,0.3732334823046261,0.374884294970688,0.3763066202090592,0.3726742571507914,0.3817541111981206,0.0,2.318096373919401,57.21100153902525,205.5194605361541,326.0717844448752,fqhc8_100Compliance_baseline_low_initial_treat_cost,23 -100000,95748,41393,387.5903413126123,7237,74.40364289593516,5682,58.76885156870117,2319,23.82295191544471,77.35098256499538,79.69810400209829,63.33757887846742,65.07045378568715,77.0660162741105,79.41291048525267,63.23223635088819,64.96768541829793,0.2849662908848813,285.19351684562366,0.105342527579225,102.76836738921702,76.96788,54.18356725825089,80385.8879558842,56589.76402457586,241.91355,149.06980861698295,252098.0072690813,155131.2388947894,264.43183,126.13339041787508,272760.12031582906,129094.0211915106,3759.82768,1685.2714707789737,3890315.024856916,1723776.105304121,1405.94437,602.4452190472259,1456412.551698208,617290.237425035,2277.8864,956.22152164513,2342422.985336508,967415.4576023424,0.3805,100000,0,349854,3653.903997994736,0,0.0,0,0.0,20449,212.9757279525421,0,0.0,24658,254.1671888707858,2090121,0,74985,0,0,0,0,0,37,0.3759869657851861,0,0.0,1,0.0104440823829218,0,0.0,0.07237,0.1901971090670171,0.3204366450186541,0.02319,0.3151945320715036,0.6848054679284963,25.368028691742467,4.617302487598452,0.3257655755015839,0.2016895459345301,0.2370644139387539,0.235480464625132,11.013360686375082,5.495728641292592,24.78513081134391,13122.868810765278,63.93998873886401,13.493670212049263,20.798415100911978,14.98944108305465,14.658462342848114,0.5337909186906019,0.7486910994764397,0.6828741220961643,0.5686711210096511,0.1083707025411061,0.6874546773023931,0.8972972972972973,0.8538812785388128,0.6762820512820513,0.1196911196911196,0.484545665814548,0.6778350515463918,0.6298655343241331,0.5362318840579711,0.1056533827618165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024606847386914,0.0047232442403786,0.0069302811685083,0.0092833346875761,0.0118351618183851,0.014017978031375,0.0162689473094056,0.0184725921843585,0.0206666053414282,0.0231401406216418,0.0251347971379953,0.0276024184194048,0.0297540713933212,0.0318710740397487,0.0338680559137566,0.0358859339955142,0.0377012684442143,0.039763824466374,0.0417121528752482,0.043777217510887,0.0577924857241285,0.0716295808095073,0.0848571907897496,0.0979666505456609,0.1102478415332229,0.1257716701902748,0.1392194294198748,0.1517128353570934,0.1634512669315899,0.1757581608899473,0.1897467386269377,0.2019938517492206,0.213881636205396,0.2258057455540355,0.236237117942394,0.247779958093591,0.2583200205556735,0.2686390798906132,0.278459599686652,0.2874264545652648,0.2960514126910606,0.3042022316671935,0.3115516629186886,0.3184852297920786,0.3254339402626113,0.3319369147363233,0.3385980501357896,0.3448578627236403,0.3503381968020317,0.3555402869903015,0.356964586846543,0.3580069799842743,0.3582871835443038,0.3600672697749942,0.3619525860142152,0.3616432884204704,0.361896587350786,0.3629556325251525,0.3642991936867387,0.3645824004585266,0.3657541458278494,0.3665814151747655,0.3677126272398418,0.3694832308175818,0.3704052098408104,0.370482953801001,0.3704732186310154,0.3722556153116103,0.3722010984368399,0.3732045962336419,0.3748681495069938,0.3751204367840702,0.3750475948724457,0.3766750899762616,0.3805526737715741,0.3820760338457871,0.3835125448028674,0.3835001021033286,0.3843148199832542,0.3811188811188811,0.0,2.273421087311026,60.8226866733758,217.02222018864896,326.0530263230919,fqhc8_100Compliance_baseline_low_initial_treat_cost,24 -100000,95836,41323,387.26574564881673,7205,73.949246629659,5639,58.18272882841521,2294,23.581952502191243,77.51248185563044,79.79874349524053,63.42745123530996,65.11110424681519,77.21779430006531,79.50314004053274,63.31887506986864,65.0046001488855,0.2946875555651331,295.6034547077877,0.1085761654413204,106.50409792968674,77.68398,54.60122905081106,81059.28878500772,56973.61017865005,240.27579,147.6896554659954,250065.91468759128,153456.98429191057,260.07064,124.39043423913029,267071.737134271,126411.64881328052,3755.80062,1685.991470925772,3880007.585875872,1720266.8318020075,1343.61394,587.2184086299408,1382580.2099419844,593330.0995762976,2266.70042,952.873531458382,2332787.929379356,966029.7906882764,0.3795,100000,0,353109,3684.51312659126,0,0.0,0,0.0,20235,210.4637088359281,0,0.0,24340,249.59305480195331,2096439,0,75161,0,0,0,0,0,49,0.5112901206227305,0,0.0,0,0.0,0,0.0,0.07205,0.1898550724637681,0.3183900069396252,0.02294,0.3163670015864622,0.6836329984135379,25.34991387173512,4.562969768695487,0.3325057634332328,0.1966660755453094,0.23142401134953,0.2394041496719276,10.845295525741284,5.209466793313518,24.49802641784606,12985.242256106554,63.24592808960796,12.843816105691667,21.194023649112346,14.559545083135102,14.648543251668835,0.5339599219719808,0.7493237150586114,0.6938666666666666,0.557088122605364,0.1125925925925925,0.6939929328621908,0.8914285714285715,0.8589743589743589,0.7047619047619048,0.1631205673758865,0.4803503787878788,0.6837944664031621,0.6389481165600569,0.51010101010101,0.099250936329588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019630461619411,0.0040712571272318,0.0062335924750909,0.0085539466875019,0.0108901034153477,0.0130275602562798,0.015220622671092,0.017529368575624,0.0196665066933515,0.022098374066878,0.0242588705135425,0.0263052641294649,0.0282564244834211,0.0303298512838985,0.0323711340206185,0.0346013613311711,0.0365997516556291,0.0389715411331709,0.0411767150039473,0.0431197817984967,0.057617503206766,0.0713374597465601,0.0841305600670613,0.0969656229978258,0.1084809300170587,0.1250712972938716,0.1385311668627513,0.1507720447488196,0.1627589298101448,0.1733156265729921,0.1868836238882376,0.2000475326246651,0.212859299156251,0.2238944528784089,0.2350019777611743,0.2467508046943267,0.2576529190857728,0.2677100771884094,0.2785481239804241,0.2871726282337071,0.2960364622396584,0.3041187851099042,0.3107406620891437,0.3172156708125739,0.3234980620155038,0.3295799579589177,0.3349472764709552,0.3401156157298243,0.3453576314498851,0.3503739828848606,0.3511100969153534,0.3520939356113085,0.3539519865225326,0.3545745509068366,0.355260036766886,0.3554545871770159,0.355037458225763,0.3564649085355841,0.3570257251204263,0.3578270192994996,0.3585312769709933,0.3603032882624274,0.3619249496306246,0.3629750660280227,0.3642644659821514,0.3668548240251801,0.3690767392911997,0.369832122275119,0.3714096023481725,0.3739472648563557,0.3758849258240519,0.3782219884271436,0.379827521559805,0.3831316187594554,0.3830920130780009,0.3830337210668547,0.385853066180935,0.3831700979412352,0.3867102396514161,0.3926149208741522,0.0,2.5494394003400176,62.20386170462155,207.0637495298825,322.6803734828231,fqhc8_100Compliance_baseline_low_initial_treat_cost,25 -100000,95741,41557,391.023699355553,7214,74.07484776636969,5531,57.21686633730586,2252,23.17711325346508,77.31288813594676,79.67094414196423,63.318020272784125,65.06176252543587,77.03253099050055,79.38982780945418,63.213808428622606,64.96011490365233,0.2803571454462172,281.1163325100523,0.1042118441615187,101.6476217835418,77.49434,54.53695409122289,80941.6446454497,56963.00862872008,239.00083,147.95455475102614,249068.95687323093,153973.18781337782,264.07401,126.58597444014332,272461.7561964049,129720.3118825634,3662.84418,1660.5236935934363,3788454.726815053,1697100.182505317,1348.99644,592.9286382868665,1390694.4778099246,601022.0383150614,2219.66582,939.9931704687706,2285020.231666684,951246.0260074656,0.38123,100000,0,352247,3679.165665702259,0,0.0,0,0.0,20189,210.2756394856958,0,0.0,24727,254.87513186618065,2086750,0,74949,0,0,0,0,0,41,0.4282386856205805,0,0.0,0,0.0,0,0.0,0.07214,0.1892295989297799,0.3121707790407541,0.02252,0.3201471941122355,0.6798528058877645,25.44160444811857,4.608269638812073,0.3323088049177364,0.1961670583981196,0.2357620683420719,0.2357620683420719,11.214645092020069,5.635413148598424,24.24444794297934,12999.520422076112,62.563583742915526,12.742786131201482,20.81410468638055,14.514183165709326,14.492509759624165,0.5422165973603327,0.7732718894009216,0.6898803046789989,0.5736196319018405,0.1104294478527607,0.6913229018492176,0.9255014326647564,0.831140350877193,0.7129629629629629,0.1407942238267148,0.4913939393939394,0.7010869565217391,0.6432706222865412,0.5275510204081633,0.1022395326192794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572241690129,0.0046219807620186,0.0070719061678791,0.0091719822857839,0.0116353576550279,0.0136048879837067,0.015794840420108,0.0180600504333799,0.0202322775880753,0.0221685217231033,0.0242794598640432,0.0261028505709356,0.028149458506032,0.0302109513411066,0.0324158137999339,0.0344374967701927,0.0363045189081721,0.0382675825430095,0.0401405960774526,0.0421151341495181,0.0569934121921426,0.0708575733478424,0.0837999958052811,0.0966615845644287,0.1085908913563843,0.1247104124572891,0.1381996476556364,0.1508154488162153,0.1633407401076831,0.1746227517937388,0.1882618996338574,0.2012828972276006,0.2136875761266748,0.2254055768873136,0.2359266147937004,0.2469057828895611,0.2570647016133534,0.2668422355774641,0.2763975508071203,0.2858567449537498,0.2945543407764291,0.302490228661034,0.3094336048494033,0.3161695033164214,0.3232222532916732,0.3294892509589649,0.3358020978232264,0.3408726216856422,0.3469258097139745,0.3523568934504285,0.3537049534350114,0.3547288446423893,0.3553207717732139,0.3562646794444283,0.3572217248582512,0.357304408031387,0.3568960850806387,0.358225215410518,0.3595492106031713,0.3604571757179312,0.3613247379929126,0.3617766457056435,0.3630389451734524,0.3636261489022225,0.3648138284994916,0.3661110381939887,0.3659909263194165,0.3680749682337992,0.3672673098751419,0.3691021622056105,0.3743263783335636,0.374959871589085,0.3766405855628471,0.3791309669522644,0.3830633702756464,0.3833035181872391,0.3862400993943158,0.3861913542306904,0.3836038052602126,0.3806990881458966,0.0,1.9945360615606915,62.316854042580566,205.5599052683013,317.1949229296074,fqhc8_100Compliance_baseline_low_initial_treat_cost,26 -100000,95793,41762,392.1058950027664,7292,75.06811562431493,5626,58.27148121470253,2273,23.415072082511248,77.37208356525132,79.7110892894613,63.35007434272507,65.07933624755464,77.09643734164845,79.43368805731225,63.24908241345522,64.98050489871166,0.2756462236028625,277.401232149046,0.1009919292698526,98.83134884297816,76.85678,54.04372174164036,80232.1463990062,56417.19305339677,238.06492,146.50151512673258,248051.94534047373,152467.431919416,263.07574,125.0782240690274,272291.4200411304,128813.47072076023,3712.44955,1649.0054565337275,3845402.304970092,1691351.4593317553,1350.49596,583.6293516695633,1397271.9300992764,596726.3700578999,2237.92514,924.9732772348816,2306236.134164292,937788.704152852,0.38271,100000,0,349349,3646.915745409372,0,0.0,0,0.0,20137,209.723048657,0,0.0,24527,253.68241938346225,2095791,0,75248,0,0,0,0,0,40,0.4175670456087605,0,0.0,1,0.010439176140219,0,0.0,0.07292,0.1905359149225262,0.3117114646187602,0.02273,0.3205847800548231,0.6794152199451768,25.4517724697435,4.579990311531044,0.3336295769640953,0.1974760042659082,0.2381798791325986,0.2307145396373978,10.875358638274228,5.387766439237756,24.08008723630686,13137.945649213509,63.068094488209766,12.86541801161646,21.08527789474673,15.038251071318186,14.079147510528385,0.5419480981158905,0.7416741674167416,0.6867341502397443,0.582089552238806,0.1201848998459167,0.7023186237845924,0.9148264984227128,0.8271334792122538,0.7169811320754716,0.1755102040816326,0.4919561669386803,0.672544080604534,0.6415492957746479,0.5401174168297456,0.1073124406457739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0043996593812091,0.0068092792920785,0.0092136406578559,0.0115936133428251,0.0137339143182928,0.0158599109154104,0.0179704879890605,0.0202133747547416,0.0221574045645276,0.0244617292300755,0.0264986299120475,0.0288019735827722,0.030992586490939,0.0329160393507538,0.0350153947885024,0.0368806218882298,0.0390442709143514,0.0411042881040699,0.0430821768055888,0.0576160460844882,0.0716579329965379,0.0854300331278567,0.0982419637884471,0.1105538756545468,0.1270708308680584,0.1404103781583856,0.1526142852585574,0.1643386864429387,0.1763691292423723,0.1899480404918403,0.2038178005491061,0.2155362596042035,0.2270068763460256,0.2378826039615938,0.2488344536605353,0.2589468987059348,0.2684182715549709,0.2784151456750935,0.2872977522300214,0.2960683839774212,0.3046594562993276,0.3126581380500839,0.3202596376091304,0.3271870941115063,0.3329310047540458,0.3389762596413904,0.3449122360722462,0.3504652938664043,0.3554239121830224,0.3568016363220432,0.3578860559411724,0.3591475798262439,0.3597007798822219,0.360723529586767,0.3603367375103505,0.3611489806917979,0.3624523089067228,0.363575556965716,0.3657317859445519,0.3662495772742644,0.3683782712133228,0.3693212859844505,0.3705555306461014,0.3711382506275342,0.3719272498558624,0.3717602436641572,0.3728990930424304,0.3750617981495868,0.3751751751751752,0.3792218505109757,0.3822445382191122,0.3842261716526469,0.3847922734937912,0.3835863377609108,0.3865887125641332,0.3895384615384615,0.3824413710162357,0.3876603876603877,0.387047619047619,0.0,1.7423630987142875,59.50585623221411,210.02914491052292,331.8627576315624,fqhc8_100Compliance_baseline_low_initial_treat_cost,27 -100000,95643,41495,388.5699946676704,7337,75.37404723816694,5708,59.07384753719561,2288,23.514527984274856,77.25911226955019,79.65529921380707,63.27736057920528,65.04568857399929,76.96846752185874,79.365106483367,63.169271077102174,64.94036597715053,0.2906447476914451,290.19273044006866,0.1080895021031054,105.322596848751,76.65702,53.96238782679215,80149.11702895141,56420.63488890159,238.52229,146.88835226297013,248767.4686072164,152959.5306163798,269.66399,129.05641744942483,278415.02253170643,132149.09123447977,3772.21638,1706.8541974500426,3904626.2873393768,1745204.0229810616,1379.87271,611.8083629051969,1424221.6262559728,621199.5486723301,2257.27032,958.4855696429736,2321290.06827473,968325.4768837652,0.38052,100000,0,348441,3643.1416831341553,0,0.0,0,0.0,20031,208.76593164162563,0,0.0,25171,259.7053626506906,2086446,0,74976,0,0,0,0,0,57,0.5750551530169484,0,0.0,2,0.0209110964733435,0,0.0,0.07337,0.1928150951329759,0.3118440779610195,0.02288,0.3130254818264131,0.6869745181735869,25.519956620340736,4.560390689474391,0.3298878766643308,0.1993693062368605,0.2380868955851436,0.232655921513665,10.98578632173237,5.480803701898425,24.580317178707705,13079.511135835812,64.4947609983,13.242049397552186,21.27368852365542,15.199241560703204,14.779781516389214,0.5411702873160477,0.7794376098418277,0.6909187466808284,0.5533480500367918,0.1121987951807228,0.7020669992872416,0.9303030303030304,0.8881578947368421,0.7068403908794788,0.1806451612903225,0.4887340301974448,0.7178217821782178,0.6278906797477225,0.5085551330798479,0.0913555992141453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023500096228842,0.0046035753759417,0.006881432312283,0.0092972687367907,0.0117706902690879,0.0138512618906972,0.0163346044823296,0.0186510407627836,0.0208135267478353,0.0229901529264847,0.0251801880312086,0.0274255321333593,0.0294883003342761,0.0317390005459808,0.0335187459365744,0.0357645063898424,0.0378005448913842,0.0400655996346349,0.0424051422865701,0.0443362591997998,0.0590847815409695,0.0731066120636383,0.0864346620741798,0.0991702468199814,0.110803675150491,0.1268084475417822,0.1398298333386444,0.151932995183496,0.1640713567624221,0.1752942692671191,0.1887582263458841,0.2020527160012138,0.2144320237083524,0.2254274441034633,0.2359502217515059,0.2470058882346406,0.2579363302587982,0.2677972986696456,0.2779990441293611,0.2871727658400304,0.2956645922348133,0.3035211267605633,0.3105569409808811,0.3179974727721283,0.3249566724436741,0.3312957830132647,0.337564408696745,0.3431316189527204,0.3489236688851913,0.3539466535928659,0.3551729268391652,0.3559204792274809,0.3565445397207852,0.358046621336323,0.358379599838379,0.3582239072806855,0.3583734038149221,0.3583955347116718,0.3592526965886218,0.360038089762478,0.3607144202871246,0.3615030004371498,0.3619083744257597,0.3635425777658166,0.3658412974225311,0.36540322791598,0.3652574634341815,0.3666951539898078,0.3675346730823662,0.3693009118541033,0.3723868596370319,0.3742571076725384,0.3743080740599351,0.3779973952348119,0.3819398623809972,0.3831238779174147,0.3880919327471849,0.3877675840978593,0.3845291479820628,0.3902439024390244,0.0,2.3062022732227967,61.93676040040256,217.1172621918718,328.7228986163999,fqhc8_100Compliance_baseline_low_initial_treat_cost,28 -100000,95625,41507,390.6509803921568,7153,73.6313725490196,5480,56.79477124183006,2231,22.96470588235294,77.28554750318864,79.71642391769426,63.27381344368566,65.07157018523075,77.01559690118096,79.44538936230965,63.17582029337618,64.97508946902884,0.2699506020076825,271.0345553846025,0.0979931503094846,96.4807162019099,78.12728,55.01024299488704,81701.27058823529,57526.63784827068,239.75448,148.27045290529864,250202.5725490196,154535.03984863556,265.25484,126.6721040846993,274305.0039215686,130046.92894811858,3645.85235,1631.9997310325432,3778427.231372549,1673046.1397905138,1344.75676,585.6128181926751,1390077.3960784313,596632.9285848911,2202.02536,911.7702916869972,2268337.5477124183,925972.5203306796,0.37939,100000,0,355124,3713.694117647058,0,0.0,0,0.0,20249,211.2,0,0.0,24826,256.5124183006536,2080970,0,74621,0,0,0,0,0,40,0.4183006535947712,0,0.0,0,0.0,0,0.0,0.07153,0.1885394976145918,0.3118971061093247,0.02231,0.3082036963169791,0.6917963036830209,25.51097723846177,4.636690183138124,0.3282846715328467,0.2029197080291971,0.2301094890510948,0.2386861313868613,11.252083811589038,5.69049443505569,23.69976453801477,12990.054376901991,61.61001097308458,12.988142264586038,20.108500134648764,14.093312912190603,14.420055661659154,0.5478102189781022,0.7760791366906474,0.707615341856587,0.5693893735130848,0.1131498470948012,0.6965875370919882,0.9265536723163842,0.8811188811188811,0.7031802120141343,0.1205673758865248,0.4992739593417231,0.7058047493403694,0.6532846715328468,0.5306748466257669,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024118362383461,0.0045644037367251,0.0066807456443162,0.0088529755552167,0.0110487120009766,0.0131609774979881,0.0152706796829574,0.0170909610983981,0.0190445019484305,0.0210562969183658,0.0232248004759853,0.0253593777293698,0.0275959321475625,0.029727974601342,0.031997934950955,0.0341118305372251,0.036154691094485,0.0384771162413932,0.0405299915692621,0.0426388526727509,0.0577413555211774,0.0716643438714883,0.0854374848952915,0.0988359230971819,0.1104961287801168,0.1259729944400317,0.1397301030708745,0.1524037949045943,0.1641931583508993,0.1754133407818828,0.1890556388706075,0.2018234248297992,0.2134988177092981,0.2247981330733075,0.2356961746224231,0.2468869997558431,0.2572153540050524,0.2664390276885628,0.2755744448737471,0.2845711141173503,0.2932456221625127,0.3010915138313072,0.3090605101205934,0.3164064376651453,0.3227683952902212,0.3294472163216914,0.3355099892211666,0.3413645403090102,0.3468921567354991,0.3524699599465954,0.3525596072931276,0.3534628785479184,0.3540396341463415,0.3540562458365917,0.3549366636400172,0.3553237896289014,0.3551774536904648,0.3571263799637502,0.3587701267557383,0.3595294033250237,0.3611915053561361,0.3615331286520749,0.3626819826643103,0.3629386949106902,0.3651076967606551,0.3668745596409279,0.3682607458013094,0.3710027355909819,0.373267534649307,0.3758282744117763,0.3770648900246418,0.3764574349145504,0.3771331058020478,0.3786792740582583,0.3820372811146676,0.3786212604942651,0.3777982214044771,0.3818921668362157,0.3882964178288214,0.3869992441421013,0.0,1.867449527905275,60.01315983385185,205.0996490921287,315.0981558670646,fqhc8_100Compliance_baseline_low_initial_treat_cost,29 -100000,95817,41647,390.2230293163009,7242,74.49617500026092,5636,58.319504889529,2301,23.690994291200937,77.35864855579545,79.66490923192762,63.35358995694328,65.05480756869378,77.08241304878767,79.38629689670407,63.25219376889563,64.9551906882298,0.2762355070077831,278.6123352235564,0.1013961880476443,99.61688046396944,77.66726,54.58662353205643,81057.91247899641,56969.66460237372,239.98283,148.3814168459801,249943.8617364351,154343.4848158261,269.92094,129.20332901734935,278735.5479716543,132566.66060084596,3714.53804,1672.4648376541516,3843902.699938424,1712680.4717890902,1371.92553,599.6253535155859,1421854.8796142647,615839.0614563029,2258.61536,938.8075592002226,2325972.7188286004,951447.361734455,0.38116,100000,0,353033,3684.4505672271102,0,0.0,0,0.0,20220,210.48456954402664,0,0.0,25120,259.3068035943518,2086878,0,74952,0,0,0,0,0,62,0.6366302430675141,0,0.0,0,0.0,0,0.0,0.07242,0.1899989505719383,0.3177299088649544,0.02301,0.3133955567240699,0.6866044432759301,25.60485771141088,4.530644932285644,0.3300212916962384,0.2047551454932576,0.233498935415188,0.2317246273953158,11.079486819331562,5.593815007660463,24.518163628652275,13009.235072526342,63.64161996354322,13.43990210873132,21.010532137063368,14.745992245633984,14.445193472114555,0.5493257629524485,0.7625649913344887,0.689247311827957,0.5881458966565349,0.1225114854517611,0.7313432835820896,0.9193548387096774,0.8817204301075269,0.7656765676567657,0.1685393258426966,0.4887680302672026,0.6879795396419437,0.625089605734767,0.5350444225074038,0.1106833493743984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024188814444466,0.0049529520201764,0.0074819793789348,0.0096197753356266,0.011694064576433,0.0139260464879711,0.0161247606242105,0.0180755459896157,0.0202480436426046,0.0224738640315882,0.024346525729269,0.0263708535909902,0.028489238197976,0.0308403136512379,0.0328288035633274,0.0350329983578282,0.0371044844070111,0.0395592092304821,0.0414957153985977,0.043495008172231,0.0579760041731872,0.0713986993705957,0.0847221348762132,0.0974230704556919,0.1096684442383491,0.1251783355350066,0.1381302743734362,0.1505409516920032,0.1623869569395359,0.1737466226358451,0.1880141263620311,0.2010904842269245,0.2133418886145882,0.2241075628781165,0.2350777903788771,0.2465858200682836,0.2576078947955971,0.2665091420534458,0.2753540947884511,0.2842821626204415,0.292856812184621,0.3012807005221137,0.3083691571629895,0.3160356427569168,0.3230189138235115,0.3299613871035393,0.3367635644357645,0.3430106021458845,0.3473685574692534,0.3524330321762561,0.3537282060955563,0.3549551038395857,0.3553614203184444,0.356293918625835,0.3574977685212734,0.3575896005150688,0.3582873278761342,0.3592720685111989,0.3606461791740979,0.3611469997128911,0.3614745919078191,0.362847498014297,0.3630690084125746,0.3646736444903643,0.3652554250640375,0.3661387334856723,0.3665038781959207,0.3690759610195854,0.3701066354908421,0.3719213798636181,0.3738356352957371,0.3755697356426618,0.3750238080121897,0.3757323465926611,0.3747169811320754,0.3719360568383659,0.3715603382013835,0.3666188230469551,0.374438202247191,0.3703557312252964,0.0,1.934045311151836,62.45507384814438,214.2609618126216,320.0176798192172,fqhc8_100Compliance_baseline_low_initial_treat_cost,30 -100000,95858,41591,390.859396190198,7260,74.45387969705189,5637,58.17980763212251,2322,23.84777483360805,77.41454581429173,79.70261305650065,63.37712166936033,65.0678397619469,77.13522112578613,79.4233997443555,63.275364718454014,64.96874164664878,0.2793246885055964,279.21331214514566,0.1017569509063136,99.09811529811918,77.8426,54.76039617764225,81206.15911035072,57126.57908327136,241.18336,148.69766631011314,251009.77487533644,154527.7976904516,270.55328,129.62401706812187,277809.4264432807,131883.10309840055,3763.21136,1681.369766358148,3887127.70973732,1715330.2659748248,1389.57372,600.2930001723931,1431727.8265768115,608351.6012020722,2299.33598,944.69047832712,2363340.044649377,954540.0011011756,0.37984,100000,0,353830,3691.189050470488,0,0.0,0,0.0,20297,211.09349245759356,0,0.0,25249,259.07070875670263,2088350,0,75023,0,0,0,0,0,51,0.5320369713534603,0,0.0,0,0.0,0,0.0,0.0726,0.1911331086773378,0.3198347107438016,0.02322,0.3247706422018349,0.6752293577981652,25.270412442403217,4.595979601330045,0.3269469576015611,0.2013482348767074,0.2268937378037963,0.244811069717935,11.168245739493331,5.493153280678335,24.54992349056286,12983.282304068343,63.248644668632274,13.171020479472588,20.826316830096854,14.295984837808913,14.955322521253922,0.5407131452900479,0.7541850220264317,0.6966901790558871,0.5949960906958561,0.1065217391304347,0.7016011644832606,0.9112426035502958,0.8455114822546973,0.7372013651877133,0.1325757575757575,0.4888576120103213,0.6875784190715182,0.6444281524926686,0.552738336713996,0.1003584229390681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024598876347623,0.0047920571399625,0.0072401310118945,0.0094004426126327,0.0113934342921028,0.0135329012301712,0.0155969845150774,0.0176771798114978,0.0197863038326387,0.0221954013583176,0.0243070493516071,0.0263724766125061,0.0285238692176486,0.0304374678332475,0.0323328968667195,0.0341355091923156,0.036231959029538,0.0381789352595525,0.0400805555843913,0.042084897908237,0.0564597691561792,0.0702484089080249,0.0840579102851515,0.097008578418505,0.1089044269407354,0.1239411926237299,0.1378254697993686,0.1503852898974331,0.1631549187586015,0.1751236961038404,0.1887277578156938,0.2022878891087396,0.2148662450833387,0.2261328496344941,0.2366251978195885,0.2481990904161733,0.2582983041020438,0.2683949119021934,0.2775900390093441,0.2864012640401195,0.2942645987300926,0.3022956647838239,0.3099584718590646,0.3170006712052929,0.3233460149992099,0.3289348740273033,0.3348907120936932,0.3397766487119736,0.3454807280652819,0.350035033910181,0.3511382475435688,0.3516789246067818,0.3530763591247462,0.3544182951701792,0.3545853477129044,0.3535319462119934,0.3544949247018955,0.3555858534421867,0.3563072923792584,0.3578836507738169,0.3588662845153797,0.3602286663765478,0.3618951824144507,0.3625447227191413,0.3638114961350446,0.365209447996868,0.3669005247547342,0.3677601632396798,0.3696959043768676,0.3737558722828251,0.3740266836664997,0.3752325272389051,0.3772530302078754,0.378345591022822,0.3816629129129129,0.3823319876513892,0.3865002311604253,0.3914744645799011,0.3851501668520578,0.388631090487239,0.0,2.4491397525392213,60.40256513585506,209.0534046705145,328.4343327763809,fqhc8_100Compliance_baseline_low_initial_treat_cost,31 -100000,95720,41731,393.25114918512327,7220,74.27914751358128,5599,58.0234015879649,2189,22.607605516088597,77.36002699221102,79.7307336139442,63.33690834044432,65.08797102756836,77.08913360806702,79.45704347153544,63.237847490816,64.99006782584307,0.2708933841440029,273.69014240875345,0.0990608496283229,97.90320172528766,76.9208,54.06714920342123,80360.21730045968,56484.69411138866,238.71371,147.63562025296366,248865.8692018387,153715.33666210162,265.23772,126.93115409650848,273895.43460091937,130229.81347305948,3735.31182,1677.030972201148,3873330.547430004,1723016.247598356,1358.23976,592.5805017742157,1407591.7467613874,607729.397066,2168.15132,904.6519311114022,2240818.031759298,922834.4973545136,0.38131,100000,0,349640,3652.737150020894,0,0.0,0,0.0,20068,209.1725867112411,0,0.0,24759,255.45340576681988,2092973,0,75087,0,0,0,0,0,48,0.4910154617634768,0,0.0,0,0.0,0,0.0,0.0722,0.1893472502688101,0.303185595567867,0.02189,0.3173431734317343,0.6826568265682657,25.198237218711448,4.599399646793088,0.3298803357742454,0.1948562243257724,0.235934988390784,0.239328451509198,11.056229619882563,5.416917318981411,23.342122007600288,13049.430427250458,63.09737512832298,12.791585735485992,20.947104335150787,14.642386178843662,14.716298878842538,0.5379532059296303,0.768102658111824,0.6886843530048727,0.5715367146101439,0.1097014925373134,0.7047075606276747,0.930635838150289,0.8577680525164114,0.7492163009404389,0.125,0.48224922563736,0.6926174496644295,0.6330935251798561,0.5149700598802395,0.1056603773584905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025017471716077,0.0047643665926669,0.0068396537552134,0.0087669395964972,0.0111273851661987,0.0129933607592358,0.0151580020387359,0.0175039294535507,0.0198108867876309,0.0221237126067282,0.0241341836002378,0.026056424787483,0.0280842837016546,0.0303745056031641,0.0323562489037463,0.0342114513761088,0.0363203149280016,0.0380607394183463,0.0399604763638254,0.0418867806570598,0.0567582526603799,0.070656326205951,0.0834076389690224,0.0959382427799162,0.1081556919054547,0.1236666560950598,0.137489524658159,0.1512158782525408,0.1642068391037826,0.1751582108763273,0.1891434788697497,0.2016165682009998,0.2136957419523116,0.2252634340431113,0.2367651263553786,0.2480535158542933,0.2589307628801571,0.2683826423326474,0.2779717901038596,0.2869804190999656,0.2954734699542027,0.3032332725487445,0.3108910656823774,0.3178529503365995,0.3251573243919625,0.3308809937520796,0.3367882133513588,0.3433158617882041,0.349366695158909,0.3547841930841442,0.355915297416059,0.3573407202216066,0.357998023436397,0.3584569475026075,0.3587658953512612,0.3588118872643029,0.3591100687731753,0.3601569683436227,0.3603632880648582,0.3614748387788278,0.3624988275021105,0.3633089253908569,0.3650524464543684,0.3671845311277523,0.3688185491629786,0.3685791136761288,0.3708151070703605,0.3713553854911138,0.3735693090292497,0.377784008972921,0.3790122321346454,0.3784145688269952,0.3791838025941157,0.3802374569130601,0.380566037735849,0.3837734951225315,0.3838833461243284,0.3869132290184922,0.3899336283185841,0.3929811029695333,0.0,1.7809664554045368,62.37605790027439,209.44541698379723,320.108917345214,fqhc8_100Compliance_baseline_low_initial_treat_cost,32 -100000,95734,41312,388.0230639062402,7143,73.21327845906366,5568,57.398625357762135,2328,23.753316481083,77.33346816806463,79.69614781540216,63.32120940122799,65.07043465769085,77.04566803222636,79.41440113932393,63.21495970915699,64.97033785362278,0.2878001358382676,281.7466760782281,0.1062496920709961,100.0968040680732,77.484,54.51112120895323,80936.76227881422,56940.18970162453,238.1102,146.1548454756423,247989.7110744354,151936.73666162734,263.30572,125.81123964808285,270729.93920655147,127948.85823694443,3731.56438,1669.2169402673949,3848674.629703136,1694629.0892160074,1382.7605,599.4502958676877,1425023.8473269686,606886.4690275246,2294.55556,951.9859604794774,2344865.523220591,949968.8689905152,0.37823,100000,0,352200,3678.943739946101,0,0.0,0,0.0,20042,208.5779346940481,0,0.0,24526,251.91676938182883,2091455,0,75024,0,0,0,0,0,44,0.4596068272505066,0,0.0,0,0.0,0,0.0,0.07143,0.1888533432038706,0.3259134817303654,0.02328,0.3187250996015936,0.6812749003984063,25.26526398047631,4.682638122611685,0.334051724137931,0.184985632183908,0.2341954022988505,0.2467672413793103,11.057831548609316,5.487603456408991,24.88045648041838,12966.562040658897,62.74960794184948,12.021359642025391,21.108651937116797,14.591467068442093,15.028129294265216,0.5332255747126436,0.7466019417475728,0.6967741935483871,0.5651840490797546,0.1215429403202329,0.6924187725631769,0.909967845659164,0.8641975308641975,0.7021943573667712,0.1189591078066914,0.4805163758068372,0.6759388038942976,0.6375545851528385,0.5208121827411167,0.1221719457013574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682962662748,0.0042185535228978,0.0065464953413312,0.0087585604259383,0.0107809035617664,0.0129010579478459,0.0149043754842392,0.0171562123655365,0.0193471239932954,0.0214652022151024,0.0236306039387757,0.0257378984651711,0.0280023035313959,0.0303298695146191,0.0323762161716001,0.0343059733118339,0.0363562937497411,0.0384148429474208,0.0404445784510454,0.0425077599316709,0.0571974402605672,0.0718315313523753,0.0848217096564316,0.0981235669057786,0.1105497959226721,0.1264038408663099,0.1399255117090924,0.1525508520580314,0.1639020326201895,0.1749747967654061,0.1885052518179369,0.201679308367327,0.213952426012334,0.2252267034205143,0.2360454115421003,0.2470433203401842,0.2569323509711989,0.2675249552662083,0.2770659070015548,0.2860529027825489,0.2946871638269077,0.3021019756465593,0.3091423297202632,0.3165300349968838,0.3223103360334212,0.3284925972458306,0.3341508890918874,0.339517719666603,0.3447203761999145,0.349893635294584,0.350912696806573,0.3524744838225369,0.3537493652316199,0.3543266027405197,0.3545705132980705,0.3547781963558084,0.3546172549144246,0.3552805062957347,0.3564787814333253,0.3567098324783872,0.3579596749924766,0.3586253422754871,0.3600067243842985,0.3600853069929285,0.3606489989360673,0.3618915086908575,0.3620300214438885,0.3643893648635832,0.3649934557288903,0.3677895156468009,0.3692103698962096,0.3708495963214457,0.3744518589132507,0.3769088385006941,0.378046458492003,0.3855465440019368,0.3863141524105754,0.3958160729080364,0.4003978402955385,0.3923951391611133,0.0,2.9331127952470197,60.62353060385076,210.88800349781252,315.4087518160499,fqhc8_100Compliance_baseline_low_initial_treat_cost,33 -100000,95803,41659,391.0315960878052,7136,73.31711950565223,5502,56.90844754339635,2193,22.546266818366856,77.34149214859087,79.68203806174175,63.33904717832892,65.0728592074043,77.07398920504392,79.41375753544644,63.2407815942421,64.97675861848477,0.2675029435469582,268.28052629531385,0.0982655840868176,96.10058891954054,78.5125,55.24979819024546,81952.02655449204,57670.21720639799,238.87493,147.2641114711616,248834.32669123096,153212.07558549076,263.79768,125.97378986490963,272245.46204189846,129005.72036978247,3620.41777,1623.974477830693,3747546.67390374,1663847.3833644008,1327.39883,571.7651146180549,1372610.033088734,583949.7073612133,2156.89846,896.865872324981,2220377.295074267,908853.5092890352,0.38163,100000,0,356875,3725.092116113274,0,0.0,0,0.0,20158,209.8681669676315,0,0.0,24663,254.3866058474161,2088440,0,74875,0,0,0,0,0,41,0.4175234595993862,0,0.0,1,0.0104380864899846,0,0.0,0.07136,0.1869873961690643,0.3073150224215246,0.02193,0.3207396567779699,0.6792603432220301,25.365279585913186,4.523406365231672,0.3298800436205016,0.2077426390403489,0.2335514358415121,0.2288258814976372,11.112196571533406,5.577445907494622,23.39219363958272,13059.71682151786,62.18251015583857,13.407172289622128,20.7182331159424,14.222416953065949,13.83468779720811,0.5507088331515813,0.7681539807524059,0.7035812672176308,0.5712062256809338,0.1119936457505957,0.6967930029154519,0.8895184135977338,0.8571428571428571,0.7086330935251799,0.099601593625498,0.502179176755448,0.7139240506329114,0.6467924528301887,0.5332671300893744,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969032689405,0.0044402542501748,0.0065858237353493,0.0087489330569442,0.0110596733987892,0.0133135039879394,0.0155536063968668,0.0176658599597667,0.0198071436605892,0.0220768183167962,0.024095397266454,0.0264833336756279,0.0285737795972105,0.0304310202736113,0.0322447505546097,0.0344506806412601,0.0365829666062645,0.0385999854770277,0.0408782484907052,0.0427862043119332,0.0574892533700596,0.0711193826979778,0.0847244490552988,0.0974148802017654,0.1095806679383279,0.1251466562377786,0.1390060847626518,0.1512505848823854,0.1632995015955346,0.1750677913420006,0.1884802101161451,0.2016823076590407,0.2140257482753001,0.2262886992251959,0.2367590627714433,0.2474841966588803,0.2578056202695322,0.2683726518375459,0.2783528505741919,0.2870699610120851,0.2951643073228183,0.3029892573563755,0.3105902100547301,0.3177252319664771,0.3245906812471933,0.3309977958108091,0.3373094764744864,0.3436547062411059,0.3489662128088754,0.3545782624729993,0.3555367163215049,0.3567557902844254,0.3584836527621195,0.3585153911773636,0.3591978816458897,0.3582245110661516,0.3577400878960478,0.3596291905420536,0.3607563471791267,0.3621323199913961,0.3623463876394979,0.3640571303708707,0.364971037388099,0.3669964028776978,0.368494975178593,0.3698813523729525,0.3697726028186875,0.3728494966229132,0.3748266666666666,0.3768313731786617,0.3783746301775147,0.3804295171968351,0.3790569895221058,0.3777433113609926,0.3789211935730681,0.3819670157698326,0.3855932203389831,0.3867334167709637,0.3905762134544422,0.3828460038986355,0.0,2.032163168521435,60.70547775954508,209.54463126493064,313.14027489641893,fqhc8_100Compliance_baseline_low_initial_treat_cost,34 -100000,95696,41229,386.714178231065,7168,73.39909714094634,5601,57.881207155993984,2297,23.606002340745697,77.3419109081298,79.71313117925273,63.33255108723839,65.08207444308103,77.06184416670966,79.43063032010659,63.22845872497198,64.97922040491781,0.2800667414201427,282.50085914613976,0.1040923622664067,102.85403816321548,77.4972,54.50345993325676,80982.69520147133,56954.79427902604,237.18562,146.13371693389232,247221.66025748203,152074.62896452547,266.64382,127.6489647130188,274077.3595552584,129894.29866310448,3723.1599,1687.3737420478406,3852027.493312155,1724680.3127067394,1375.70819,605.0709518173219,1422544.3801203812,617247.1491152416,2269.59004,953.487161120902,2335403.151646882,968331.8021375836,0.37739,100000,0,352260,3681.031600066879,0,0.0,0,0.0,19990,208.23231901019895,0,0.0,24907,255.7578164186591,2090811,0,75006,0,0,0,0,0,34,0.3552917572312322,0,0.0,1,0.0104497575656244,0,0.0,0.07168,0.1899361403322822,0.3204520089285714,0.02297,0.3205653150178312,0.6794346849821689,25.378765588804164,4.6210317440122,0.3251205141938939,0.1988930548116407,0.2346009641135511,0.2413854668809141,11.182827892918064,5.607402238920935,24.469455204331837,12936.68138896374,63.26937917460769,13.239984528828552,20.49699080643497,14.603013216763284,14.929390622580897,0.5393679700053562,0.7648114901256733,0.6908292147171884,0.5791476407914764,0.1109467455621301,0.6835443037974683,0.9135135135135136,0.8574712643678161,0.7326732673267327,0.1242038216560509,0.4903086862885857,0.6908602150537635,0.6385281385281385,0.533135509396637,0.1069364161849711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022885612443292,0.0046620046620046,0.0068269425847027,0.0090294141545461,0.0112762842152356,0.0136637615052537,0.015933208966635,0.0180758553115048,0.0203702000224859,0.0225062943933842,0.0246440250540753,0.0266870661683164,0.028742428760939,0.0306711174300962,0.0328665627870019,0.0348057103280027,0.0370028997514498,0.0391859777295793,0.0412997140629061,0.0431434258381183,0.0570136502731099,0.0711048306903229,0.0846989949010638,0.0976587151331566,0.1098289065631526,0.1250449687863718,0.1371535882527691,0.1494048506270894,0.1611731395907901,0.1719672095967724,0.1852546079350203,0.1979153136771009,0.2105291788154401,0.2218017564774206,0.2334517772081715,0.2446213639534497,0.2551003335155213,0.2651622478580584,0.2754297384693935,0.2840966338447446,0.2926682483652566,0.300031608152562,0.3082178804026051,0.3156083641072371,0.3220915954433272,0.328207343412527,0.3338934169278997,0.3396942675159236,0.3448320564176357,0.3497802821362119,0.351557130728907,0.3521316709327609,0.3528484131677508,0.3544985772680658,0.3548981441583335,0.3547477903895348,0.3552923291315639,0.3560369481608099,0.3568272886057742,0.358185694068753,0.3590365523465704,0.3598103964617917,0.3610150914762667,0.3620720680192541,0.3629020556227327,0.3648400629260618,0.3664925972684494,0.3697971069540721,0.3722899248972651,0.3738816449348044,0.3750172279138145,0.3768045939998927,0.3776845850806964,0.3805118717237126,0.3810205054840248,0.3812552502100084,0.3813939112965538,0.3872498452651124,0.3907787461343829,0.3940563489000386,0.0,2.5564094823826324,62.40810215781413,212.792013356155,313.99565923128506,fqhc8_100Compliance_baseline_low_initial_treat_cost,35 -100000,95704,41373,388.3327760595169,7188,73.77957034188749,5590,57.78232884727912,2219,22.789016133076988,77.33810060160408,79.71878257603771,63.31256206328344,65.0740735399991,77.06568912032812,79.44826323985043,63.21240646622287,64.97737314883491,0.2724114812759666,270.5193361872773,0.1001555970605636,96.70039116419105,77.15884,54.28172277949719,80622.37733010114,56718.342785565066,240.29093,148.65020852410908,250377.91523865247,154628.59353508262,268.11137,128.67059392008375,275833.3716459082,131261.94976861076,3716.38661,1658.4122813218569,3845892.669062944,1695887.0674110567,1359.95483,588.3278506209281,1406454.0458079078,600597.7669855725,2180.3034,903.9708043022828,2241436.7215581373,913259.378936762,0.37951,100000,0,350722,3664.653515004598,0,0.0,0,0.0,20261,211.0465602273677,0,0.0,25054,257.49184987043384,2087504,0,74923,0,0,0,0,0,52,0.5328930870183065,0,0.0,1,0.0104488840591824,0,0.0,0.07188,0.1894021237912044,0.308708959376739,0.02219,0.3251525603608384,0.6748474396391616,25.35600431154345,4.529926271906048,0.3391771019677996,0.1976744186046511,0.2305903398926654,0.2325581395348837,11.162570913863265,5.689543979291441,23.457786888205604,12963.30514993332,62.84354732384334,12.975879512906715,21.540573078131303,14.292879506166653,14.034215226638658,0.5520572450805009,0.7628959276018099,0.7146624472573839,0.5880527540729248,0.1,0.7269399707174231,0.9246376811594202,0.8823529411764706,0.7278911564625851,0.1593625498007968,0.4955018939393939,0.6894736842105263,0.6584507042253521,0.5467336683417086,0.0857959961868446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138614664207,0.0043619395414891,0.0067618332081141,0.0088724922251356,0.0108871501103977,0.0132614917650414,0.015819105317912,0.0180170978581715,0.0199212558163317,0.0222904827727435,0.0243234651708897,0.0265641204678242,0.0285837668880709,0.0309555438845809,0.0328770232212674,0.0352595899470899,0.037376791186946,0.0392584062166059,0.0411069987940283,0.0430334913276733,0.0576157902981567,0.0715721374285534,0.0847542996253895,0.0980930442922806,0.1099568651852476,0.1253729132725387,0.1390156419126854,0.1518236515627496,0.1635316247354808,0.1741038378592963,0.1875505080435743,0.2012818292049194,0.2137344755145802,0.2254781809427933,0.2360690740598069,0.2467415879771246,0.2569804324517512,0.2667582201109897,0.2760841416596624,0.2844693147417668,0.2930702933135629,0.3005903574942604,0.3085008057635794,0.3158728064388442,0.3218129415913706,0.3281840408979773,0.3339311244325165,0.3389534364677524,0.3445578716614997,0.3507272415023052,0.3512166204090431,0.3519156085603327,0.352133523167792,0.3534132481166042,0.3543699428843408,0.3542734386987878,0.3541673271407285,0.3549336050486458,0.3569191806841322,0.3575133240333369,0.3586631849861922,0.3596055211200665,0.3595486731241989,0.3599856257299434,0.3608677815584353,0.3631411592994162,0.3637167132348748,0.3666761211433614,0.3669312355130997,0.3719306596850331,0.3757317239188637,0.375112427913867,0.3789711134782881,0.3789999243513125,0.3780978210043954,0.3788129581461338,0.3798848833686761,0.3744995996797438,0.3675236806495264,0.3670694864048338,0.0,2.4028271567138737,60.14765259902374,211.3186543367549,320.80758762856624,fqhc8_100Compliance_baseline_low_initial_treat_cost,36 -100000,95638,41525,390.0437064765051,7197,73.91413454902863,5627,58.14634350362826,2324,23.82944018068132,77.27782633283482,79.68835356421408,63.2892740309558,65.07198778218914,76.98841248729981,79.40066186476389,63.181955290347375,64.96857337233995,0.2894138455350088,287.6916994501926,0.1073187406084201,103.4144098491936,76.28984,53.67864060018838,79769.38037181873,56126.89579475563,237.34114,145.93320493668415,247497.7728517953,151920.76887501217,262.6574,125.20211366115836,270102.3651686568,127439.47029783984,3720.31606,1672.6803896373906,3846658.5875907065,1705631.307260074,1374.66438,600.5461208793807,1417032.2361404465,607606.8412967443,2294.63778,960.960891396693,2354938.476337857,966889.8595435156,0.38085,100000,0,346772,3625.88092599176,0,0.0,0,0.0,19986,208.25404128066248,0,0.0,24574,252.52514690813277,2094922,0,75197,0,0,0,0,0,45,0.4600681737384721,0,0.0,0,0.0,0,0.0,0.07197,0.188972036234738,0.322912324579686,0.02324,0.3161102278749337,0.6838897721250663,25.314552594834225,4.495344932419153,0.3312599964457082,0.2033054913808423,0.2278301048516083,0.2376044073218411,11.078109822171111,5.604282836264627,24.785707138917267,13059.83253298744,63.52230047532939,13.33162946822406,21.144765691939018,14.240020511370778,14.805884803795536,0.5343877732361827,0.7534965034965035,0.6856223175965666,0.5600624024960998,0.1114435302916978,0.6787527193618564,0.8991097922848664,0.8458244111349036,0.6813559322033899,0.1321428571428571,0.4875235404896422,0.6926889714993805,0.6320687186828919,0.5238095238095238,0.1059602649006622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024420890501185,0.0047359240629563,0.0071061661218605,0.009339715641737,0.0114044458009054,0.0134982324955939,0.0158898521162672,0.0181090218268356,0.0205396779934944,0.0226078405261163,0.0250358974358974,0.0270350778080221,0.0291094304676647,0.0309707607160893,0.0327999174065661,0.0351247362541889,0.0371705992684013,0.0393333679455895,0.0412395808401927,0.0432407069495855,0.0576131257184658,0.0717741935483871,0.0856836956407645,0.0984909075601953,0.1106268467707893,0.1261089584789006,0.13935209771641,0.1520986286189223,0.1641725587514841,0.1752875106037991,0.1885751239491269,0.2019646280311481,0.2141122930026456,0.2254088490925411,0.236722423494951,0.2478495100430097,0.2579884961188362,0.2674688217549862,0.2764981666685586,0.2861101251474174,0.2941271732466541,0.3026649671995042,0.3105872328339132,0.3180199302082959,0.3241015416038516,0.330823819808701,0.3366169116817686,0.3430897831239328,0.3483802305056588,0.3537816903270151,0.3547903585173182,0.3552875183066677,0.3563968298896122,0.3576736625156028,0.3580217417273922,0.3579741379310345,0.3578082453542254,0.3590285808689906,0.360622206943967,0.3610078479966956,0.3619201929236218,0.3634555327909614,0.3648472075869336,0.3662038285252089,0.3667641867549989,0.3675372645587195,0.3691238549234701,0.3695790410784688,0.3712523617696339,0.3735134045555331,0.3727982987379224,0.3754708858034657,0.377097288676236,0.3782150604276417,0.3802978235967926,0.379949146385761,0.3837846298325246,0.3851774530271398,0.3918112027295991,0.398909232567199,0.0,2.740147840190554,60.42879525784701,215.2426702984364,322.1124434287106,fqhc8_100Compliance_baseline_low_initial_treat_cost,37 -100000,95812,41634,391.44366050181605,7283,74.61487078862773,5699,58.83396651776396,2293,23.535674028305436,77.39792083527668,79.70237880000211,63.37134666233783,65.07187368657058,77.11060369205475,79.41606888585065,63.26529152000786,64.96919768513351,0.2873171432219266,286.3099141514596,0.1060551423299642,102.67600143707512,76.55296,53.89423390615583,79899.13580762327,56249.98320268424,238.2106,146.76832741490972,247969.61758443617,152532.33802193883,270.84181,129.50105672314217,278806.443869244,132181.20376980706,3741.386,1698.5464118460086,3865971.1518390174,1734007.2904867516,1417.30141,624.4631328745827,1461825.3767795265,634527.6217332612,2251.40412,946.710346122633,2313304.3251367263,956400.9962553806,0.3822,100000,0,347968,3631.778900346512,0,0.0,0,0.0,20049,208.55425207698408,0,0.0,25377,261.00070972320793,2096571,0,75211,0,0,0,0,0,49,0.5009810879639294,0,0.0,0,0.0,0,0.0,0.07283,0.1905546834118262,0.3148427845667993,0.02293,0.3065569487983281,0.6934430512016719,25.30030925332513,4.561993142830784,0.3151430075451834,0.2153009299877171,0.2381119494648184,0.2314441130022811,11.271688752544962,5.711597876987055,24.543162837774823,13065.904676649756,64.59447219289756,14.262902176461395,20.41257771372056,15.24093585549855,14.67805644721705,0.5667660993156695,0.7791361043194784,0.7193763919821826,0.6072218128224024,0.1197877179681577,0.7032742155525239,0.912,0.8846153846153846,0.7151702786377709,0.1466666666666666,0.5194897236002834,0.7206572769953051,0.661144578313253,0.5735009671179884,0.1118743866535819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021462703490726,0.0046003100649515,0.0068867589634362,0.0090574007696759,0.0113044892648015,0.0135250656408377,0.0159870391881151,0.0180158122927824,0.0198929235547745,0.0221194573468928,0.0240354076593652,0.0259451141318286,0.0279447269738531,0.0299250843829752,0.0319318896298663,0.0341555585383733,0.0360132010469795,0.0378524046434494,0.0398965721347054,0.0421922484492735,0.0572483648540104,0.0705776531988997,0.0847777533108937,0.0975312276569794,0.109990196388476,0.1264669189943543,0.1406301366957591,0.1528234605354196,0.1645619658119658,0.1758983159927062,0.1903223374581327,0.2027928912156973,0.215157807760467,0.2264014782903441,0.2370661211561304,0.2487930194445674,0.2596169932745178,0.2708890938125548,0.2801800882296238,0.290152772214911,0.2978585634336987,0.3048712075171801,0.3116082625464354,0.3182863163944633,0.3239158124583005,0.3305268340718857,0.3364038596140385,0.3421413864104324,0.3466666666666667,0.3518704030791131,0.3533215044223997,0.3546911069583379,0.3555965317268172,0.3565715770630017,0.3576657509837404,0.3577229555083125,0.3573778790179701,0.3584738388796769,0.3591900950817429,0.3608651317554875,0.3614193185018304,0.3618593044442684,0.362774765687387,0.3633379056014031,0.3650920542635659,0.3670008924352984,0.3685437899464501,0.3708923174805154,0.3728345201402912,0.376165139816778,0.3779538440278225,0.3806066473055824,0.3832354443309499,0.3857605677260105,0.3875776397515528,0.3893432764012509,0.3897937024972855,0.3935562805872757,0.3998348926802421,0.4006092916984006,0.0,2.401096997395661,64.6934644182202,216.578486989714,318.1499440786287,fqhc8_100Compliance_baseline_low_initial_treat_cost,38 -100000,95550,41522,390.8006279434851,7232,74.63108320251177,5631,58.31501831501832,2322,23.92464678178964,77.19945181010942,79.67205537506358,63.224607941291474,65.05427532587564,76.91168361394256,79.38347002876361,63.1196121273007,64.95195919309056,0.2877681961668656,288.5853462999677,0.1049958139907758,102.31613278507724,76.92872,54.10948374555794,80511.48090005234,56629.49633234739,238.51692,146.8603131414095,249014.610151753,153089.32824846625,263.76952,126.07689182074472,272276.70329670334,129039.75766273684,3750.34111,1684.8963432520147,3886597.0695970696,1724959.427788606,1391.7974,603.6812490983,1443458.137100994,618637.4663509154,2292.58744,956.7802513341696,2364472.715855573,969991.7133539158,0.38034,100000,0,349676,3659.6127681841967,0,0.0,0,0.0,20072,209.45054945054943,0,0.0,24689,254.72527472527477,2086000,0,74852,0,0,0,0,0,41,0.4186289900575615,0,0.0,0,0.0,0,0.0,0.07232,0.1901456591470789,0.3210730088495575,0.02322,0.3108609271523179,0.6891390728476822,25.29746361562932,4.661520612160207,0.3290712129284319,0.1946368318238323,0.2315752086663114,0.2447167465814242,11.177336701295957,5.621580923746016,25.01129199830308,13071.73555932403,63.69885055301216,12.849316733608946,20.80760557919008,14.675304287054304,15.366623953158822,0.5434203516249334,0.7691605839416058,0.696708041014571,0.575920245398773,0.1269956458635704,0.7042971595047341,0.9212827988338192,0.8891509433962265,0.7348242811501597,0.1501706484641638,0.49154532644434,0.699867197875166,0.6396081175647306,0.5257315842583249,0.12073732718894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021794001074494,0.0043322984517359,0.0066617921845803,0.0089271189197982,0.0110864519281671,0.01331321739485,0.0152982599377455,0.0176680972818311,0.0198833401555464,0.0220334293239324,0.0245439707648562,0.0269091956032204,0.0289283433914852,0.0309460198260833,0.0330271057880106,0.0351416534691384,0.0370024682139671,0.0390035542807258,0.0412265900047913,0.0428963659710405,0.0570753088615275,0.0713207072295979,0.0847288361874126,0.0980706209628981,0.110441703396011,0.1264961251815493,0.13934984256659,0.1523866437588705,0.1645366214232916,0.1756134804395982,0.1891900647948164,0.203023265908499,0.215078862976941,0.2257601017856359,0.236315278329581,0.2476867536795334,0.2578533299014067,0.2686348196047894,0.2785187545520757,0.2872534717835031,0.2958507812409377,0.3041876832844575,0.3117205207010715,0.3189556775720585,0.3256493981188167,0.3315403543915619,0.3373306181964451,0.3423509726533063,0.3478170397055572,0.3535882313961964,0.3547859027261043,0.3558712958867757,0.3567063682915098,0.3579422566082652,0.3582743058668818,0.3580903082682442,0.3586146496815287,0.359121409446997,0.3598237036016803,0.3613471092231262,0.3621941534621639,0.3642926946012245,0.3662141843671248,0.3668413207461945,0.3666220979700985,0.3671757537390203,0.3681719809551291,0.3699510209274219,0.3720054027155755,0.374519692603266,0.3754512635379061,0.3757068174543903,0.3752290679304897,0.377959996934631,0.3811899830540388,0.3831006086645184,0.385284689360403,0.3926638604930847,0.3972640218878249,0.4046065259117082,0.0,2.3946320126658995,60.53694430811529,214.8837974765869,326.31436838897616,fqhc8_100Compliance_baseline_low_initial_treat_cost,39 -100000,95676,41670,390.3695806680881,7212,74.02065303733434,5649,58.39499979096116,2241,23.0569839876249,77.33990302576841,79.73229622684723,63.32261558699434,65.08983487409716,77.06138741908244,79.4532679891816,63.22019571542575,64.99027354531547,0.2785156066859713,279.0282376656279,0.1024198715685855,99.56132878168944,76.93554,54.17906692482398,80412.57995735608,56627.646353133474,240.03906,147.73340256979165,250186.7971069025,153710.1324085015,270.81527,129.5345886871424,279244.94126008614,132438.7949425482,3736.11443,1675.0025099818338,3863686.703039425,1709496.7308767792,1372.73863,603.0315281772457,1416187.1942806975,611783.3121698906,2217.60386,920.3214989109704,2282468.414231364,929893.3116410882,0.38173,100000,0,349707,3655.1172707889127,0,0.0,0,0.0,20166,210.05267778753293,0,0.0,25254,260.1070278857812,2092020,0,75062,0,0,0,0,0,56,0.585308750365818,0,0.0,0,0.0,0,0.0,0.07212,0.1889293479684594,0.3107321131447587,0.02241,0.3181220410310363,0.6818779589689637,25.239883361188244,4.701943291418671,0.3319171534784917,0.1956098424499911,0.2393343954682244,0.2331386086032926,11.042759006702656,5.311707844503316,23.85836835089573,13116.43053988762,63.53557529900066,13.02916332905715,21.09214745543596,14.99717507497466,14.417089439532912,0.548415648787396,0.7846153846153846,0.6778666666666666,0.5865384615384616,0.1268033409263477,0.720203488372093,0.9213483146067416,0.8446808510638298,0.7491408934707904,0.1853281853281853,0.4930961853498712,0.719626168224299,0.6220640569395017,0.5419415645617343,0.1124763705103969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334447483034,0.0050783031777406,0.0074682144270479,0.0099540893024011,0.0122326957688905,0.0146073820721105,0.0167774289558445,0.0192291989875071,0.0215489041543997,0.0237671190812503,0.0257624686042339,0.0276437619331129,0.0297184460029204,0.0318081621721843,0.0339563830775423,0.0361060848885901,0.0382830145672309,0.0401926590267397,0.0423099330032041,0.0442542455928192,0.0590982219343515,0.0733528075300227,0.0864040794057162,0.098819593485671,0.110520319027725,0.1256242065171392,0.1390103127785086,0.15190479738576,0.1634375066754961,0.1752691169532959,0.1892049064690869,0.2026705332409972,0.2152877463134542,0.2265054445270477,0.237720524305823,0.2493991249930774,0.259696063554405,0.2694324421640112,0.2786634140806717,0.2873605351783546,0.2957238059977786,0.3038947368421053,0.3113380590038223,0.3183533612086213,0.3253648350047349,0.3316907307938698,0.3375965160369921,0.3433097919450277,0.3488971826970427,0.3539030511161009,0.3548113093071229,0.355830164765526,0.3566762145306261,0.3570756151606876,0.3574566956107297,0.3578908633722267,0.3578313253012048,0.3592189890283421,0.3598269848868221,0.3608778012080489,0.3619699812382739,0.3633788869082986,0.3634531407457171,0.3646310775590905,0.3677732910994511,0.3683231116003564,0.3694318637848994,0.3713642988403777,0.3736112093977779,0.3755486393743516,0.3788620863276422,0.3812196034418256,0.3803218449062341,0.3821861106852675,0.3841147061597962,0.3847253663767425,0.3934096534653465,0.3972772277227723,0.3965614430665163,0.4001560062402496,0.0,2.4088611450697046,60.42115197924307,215.75187007839529,323.2045123033909,fqhc8_100Compliance_baseline_low_initial_treat_cost,40 -100000,95793,41264,387.9824204273799,7195,73.99288048187236,5591,57.87479252137421,2320,23.884835008821103,77.331780499572,79.67300401245487,63.32970022966426,65.06296516146675,77.046666900321,79.38520319156255,63.22604541845958,64.96051714107716,0.2851135992510052,287.80082089231485,0.1036548112046844,102.44802038958768,76.70432,53.94247144863032,80072.99071957242,56311.49608909871,238.28039,146.90355498735858,248251.79292850208,152861.90534523255,264.19368,126.77436775520744,272665.22606035933,129936.48583911256,3711.85837,1660.537067247573,3846260.624471517,1704850.1845099053,1352.15821,588.1654619312059,1401277.859551324,603732.3728573129,2282.68992,947.0576641949276,2353060.2444855054,963385.286144166,0.37769,100000,0,348656,3639.681396344201,0,0.0,0,0.0,20060,208.9087929180629,0,0.0,24587,253.5780276220601,2093672,0,75228,0,0,0,0,0,50,0.5219588070109507,0,0.0,0,0.0,0,0.0,0.07195,0.190500145622071,0.3224461431549687,0.0232,0.3188328912466843,0.6811671087533157,25.193104138562106,4.646958259865097,0.3298157753532463,0.1960293328563763,0.233947415489179,0.2402074763011983,10.939947113412972,5.393937682722057,24.949394160114508,12907.235304463587,63.03819927269124,12.797573394584424,20.83479797964601,14.69797333738787,14.70785456107293,0.5362189232695403,0.7545620437956204,0.6876355748373102,0.5779816513761468,0.1094564408041697,0.7084249084249085,0.8720238095238095,0.8638297872340426,0.7491749174917491,0.16015625,0.4805963085660198,0.7026315789473684,0.6273653566229985,0.5263681592039801,0.0975160993560257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021777665231704,0.0043388345971371,0.0067784914812221,0.0089296598805315,0.0112890922959572,0.0134522754814203,0.0157725168736363,0.0177732859651272,0.0199648340864018,0.0219378614935762,0.0241624636076598,0.026110438014662,0.0279165895490159,0.0299955707089955,0.0317976345284537,0.0338767535380893,0.0359365776364709,0.0382289797653989,0.0399538634190947,0.0419920451469148,0.056191499796521,0.0704976675104073,0.0839028890100213,0.0967657195696032,0.108503935348597,0.123746526200112,0.1371416459117164,0.1499920250943697,0.162366073334187,0.1736624456300486,0.1874091853318839,0.2003763749040135,0.2125008155542506,0.2238481140019904,0.2345464349778252,0.2457485348370871,0.2559525137794836,0.2658868518726802,0.2745849587226708,0.2834915219307786,0.2915804202273437,0.2994388590133271,0.3072608510436881,0.3140425531914894,0.3201132456044423,0.3259560819146311,0.3323140547653361,0.338872592781533,0.3444018952424222,0.3497606010105018,0.3505139342272101,0.3511897380785075,0.351963980748331,0.3523068226290385,0.3534252702199031,0.3538783293350556,0.3535747239810366,0.3546247876078457,0.3555486830575743,0.3572735097912631,0.3585623598997871,0.3593368410602601,0.3604977327849836,0.3615206284183754,0.3630078835657974,0.3644537925594847,0.3664731911959082,0.3696175278622087,0.3703651437643323,0.3740348069613923,0.3768675584976785,0.3760954890047852,0.3756803483383492,0.3765351046574496,0.37890625,0.3787969744267019,0.3813150940463236,0.3848664083214358,0.3896935933147632,0.3986566574476491,0.0,1.92628758258974,60.40932561154054,217.719722885414,315.6809235914416,fqhc8_100Compliance_baseline_low_initial_treat_cost,41 -100000,95700,41649,390.06269592476485,7311,75.45454545454545,5667,58.76698014629049,2298,23.71995820271682,77.34192318165195,79.71675776881447,63.32298576779221,65.07464269797964,77.06371704363929,79.4350218079657,63.22266412707413,64.97480571301112,0.2782061380126635,281.7359608487777,0.1003216407180715,99.836984968519,77.16082,54.26818364846875,80627.81609195402,56706.56598586076,238.20621,146.4678595595622,248449.3103448276,152590.36851504803,265.24935,126.4182233870281,274008.46394984325,129698.07477488648,3727.00278,1666.8116154656198,3865610.0,1712953.7290362143,1368.18867,591.7239116878488,1418503.6468129572,607212.1541162445,2263.24372,933.5560583663532,2337544.5350052244,953201.4680685722,0.38261,100000,0,350731,3664.900731452456,0,0.0,0,0.0,20065,209.19540229885055,0,0.0,24834,256.3531870428422,2090754,0,75009,0,0,0,0,0,41,0.4284221525600836,0,0.0,1,0.0104493207941483,0,0.0,0.07311,0.191082303128512,0.3143208863356586,0.02298,0.3159126365054602,0.6840873634945398,25.70927435376145,4.502239594053477,0.3259220045879654,0.2179283571554614,0.2218104817363684,0.2343391565202047,11.012524347423028,5.471093707217926,24.36403781735376,13118.496456034114,63.59413017291884,14.308721628592268,20.746648443618103,14.002785085421747,14.535975015286716,0.540850538203635,0.7449392712550608,0.6832701678397402,0.5767700875099443,0.1189759036144578,0.7037037037037037,0.925207756232687,0.8636363636363636,0.7397769516728625,0.1321428571428571,0.4899235580264072,0.6704805491990846,0.6268656716417911,0.5323886639676113,0.1154580152671755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186820975466,0.0044698513090278,0.0070097487243474,0.0094460357121092,0.0118169892101329,0.0144163222088737,0.0165772893175376,0.0188496216801282,0.020962002535891,0.0232017611222034,0.0254180807759743,0.0272226900248505,0.0293542879476683,0.0314357838339086,0.0336922076447454,0.0358413302448709,0.0380153304329811,0.0401478037033961,0.0423863648180693,0.0442434536152299,0.0597679058253339,0.0735563583058478,0.0862423644492957,0.0987594566441145,0.1113338538479394,0.1266428223741296,0.1403303889926957,0.1530620939397167,0.1643561816607702,0.1760810535240896,0.1900516391940404,0.2029953867146044,0.2149721910815547,0.2268325509634638,0.237995135319561,0.2491081518246881,0.2592406532926979,0.2687635794616623,0.2779536403553558,0.2872754765395894,0.2961355508489288,0.3032512522821965,0.3108200914107087,0.3178094678388524,0.3242612469155311,0.3314508372586253,0.3380486399117916,0.343601171526805,0.3498488563681418,0.3544834333765237,0.3553217922056877,0.3559387555052394,0.3573477259561722,0.3580609674897953,0.3591919852547713,0.3591158527238726,0.3592937745657411,0.3608362828216314,0.3614682988718581,0.3618563528001002,0.3626914763650032,0.363809675113194,0.3650195715307883,0.3653850480325766,0.3659644375724777,0.3680106753185588,0.3696721780422221,0.3706055150194257,0.3747535905378766,0.377794604072849,0.3773791592496234,0.3785916093608401,0.3779217479674797,0.3789080372121397,0.375787790424231,0.3766340831468613,0.3784806295399516,0.3840594258181088,0.3874862788144895,0.3888679954870252,0.0,1.6591463033082103,60.11370939857958,216.35148698738047,328.15783212154605,fqhc8_100Compliance_baseline_low_initial_treat_cost,42 -100000,95734,41416,388.973614389872,7201,73.95491674849062,5608,57.95224267240479,2254,23.137025508178915,77.32392886815877,79.6857975293023,63.31606620966248,65.06427339560138,77.05286415660402,79.41626103269999,63.21781091593918,64.96913956046997,0.2710647115547573,269.5364966023135,0.0982552937232981,95.1338351314064,75.38454,53.06356325675779,78743.74830258843,55428.12716146592,237.93329,146.78902493809213,247884.607349531,152679.61948686276,266.48389,127.42966812094612,274338.0094846136,130099.84403955092,3714.01361,1661.2581750645766,3841076.3260701527,1696929.0970628946,1429.31259,615.4662689182708,1476965.216119665,626853.1127063223,2229.16502,913.5440526999228,2290509.7248626403,922949.439160643,0.3797,100000,0,342657,3579.261286481292,0,0.0,0,0.0,20029,208.54659786491737,0,0.0,24906,256.1054588756346,2098525,0,75346,0,0,0,0,0,43,0.438715607830029,0,0.0,0,0.0,0,0.0,0.07201,0.1896497234658941,0.3130120816553256,0.02254,0.3132769108701402,0.6867230891298598,25.25963857379014,4.553650465328494,0.3241797432239657,0.2111269614835948,0.220756062767475,0.2439372325249643,11.275838958149969,5.718966855224153,23.76466282410327,13029.909804449777,63.21114914095271,13.990911110609575,20.542022202341112,13.769798830373691,14.908416997628343,0.5483238231098431,0.7787162162162162,0.6914191419141914,0.574313408723748,0.1352339181286549,0.7235294117647059,0.9305555555555556,0.8715203426124197,0.7195571955719557,0.1793893129770992,0.4922316384180791,0.712378640776699,0.6291635825314582,0.5336091003102379,0.1247739602169981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021372066405339,0.0042279654057123,0.0064038808939046,0.00885000711252,0.0112198396875127,0.0136150712830957,0.0159451909548763,0.0182510437188032,0.0202128638468852,0.0222076605678362,0.0246780675853018,0.0267872727086049,0.0288686926841304,0.031045280375757,0.033309943451521,0.0352683370544943,0.037236136142357,0.0390775011157586,0.0408464618104299,0.0427979080282541,0.0578065459101111,0.0713179754357332,0.0844544644261521,0.0970031545741324,0.109508293526515,0.1243428498894612,0.1377791925301077,0.1513373653051663,0.1630917791830456,0.1743465488775007,0.1879985789490682,0.201901136572547,0.2144130628573913,0.2248715425822674,0.2357812087622063,0.2470960812322138,0.2583430962343096,0.2687556255625563,0.2780029288560433,0.2864169504351116,0.295014717129812,0.3027220848615521,0.3098010386777016,0.3160699497101432,0.322890803758337,0.3294743467904175,0.3360956834622569,0.3416875948140688,0.3471045426825312,0.3528314862327082,0.3543916000863744,0.3549427822969805,0.355563087873909,0.3568209156389038,0.3576716266738162,0.3576871770496327,0.3580018061694947,0.3586992243985802,0.3593338126048406,0.3596142836696722,0.3607625845229151,0.3615029062270626,0.3627994955863808,0.363968937965706,0.3650103819595345,0.3674378389708387,0.3674164377289377,0.3689649706768109,0.3709631627510824,0.3737588084561178,0.3775889781859931,0.3793121891212494,0.3797540567951318,0.3843146274149034,0.3888677087304613,0.3911580970687169,0.3892032420859458,0.3925364198762722,0.3921778730243772,0.3917173252279635,0.0,2.401910192301068,59.93841176962529,213.47467325655165,323.96326747761736,fqhc8_100Compliance_baseline_low_initial_treat_cost,43 -100000,95790,41746,392.52531579496815,7379,75.91606639523958,5723,59.11890594007725,2335,23.937780561645265,77.4066300966336,79.74452592455675,63.35719594835807,65.0871738306113,77.11765975626045,79.45757483949991,63.25128401571276,64.98534648128823,0.2889703403731545,286.95108505684175,0.1059119326453128,101.82734932307368,77.1364,54.21231593899152,80526.56853533772,56594.96392002455,238.97634,146.79799932095918,248839.81626474575,152610.20912512703,264.99943,126.73427501188358,273065.278212757,129525.41525128607,3790.35328,1693.859303946784,3920417.047708529,1731781.5157602918,1411.22578,606.1573865971607,1458676.0830984444,618227.4153700443,2301.67914,954.308595540131,2363259.7348366217,962037.885318054,0.38436,100000,0,350620,3660.2985697880777,0,0.0,0,0.0,20092,209.0719281762188,0,0.0,24758,254.79695166510072,2094548,0,75234,0,0,0,0,0,54,0.563733166301284,0,0.0,1,0.0104395030796534,0,0.0,0.07379,0.1919814756998647,0.316438541807833,0.02335,0.3060804730685178,0.6939195269314822,25.57878053978007,4.5713040216241945,0.3262275030578368,0.2081076358553206,0.2290756596190809,0.2365892014677616,10.970515468131865,5.456996745234976,24.73114148676208,13152.306627962207,64.12325345886818,13.662659439559548,21.044524675622664,14.60767349601038,14.808395847675571,0.5411497466363795,0.760705289672544,0.6898768077129084,0.5736079328756675,0.1115214180206794,0.7005813953488372,0.9131652661064426,0.8511111111111112,0.7109634551495017,0.1529850746268656,0.4906832298136646,0.6954436450839329,0.6386732533521524,0.5326732673267327,0.1012891344383057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019859363284495,0.0042891038510677,0.0068397925736495,0.0088800382024526,0.0112081854334272,0.0132176534082808,0.0157113435696662,0.0178328995049252,0.0200130831186884,0.0223197838634409,0.0242790087523315,0.026555573797406,0.0285411827581245,0.0306574152237023,0.0327189510143493,0.0347580053902789,0.0365607639068497,0.0385636092220932,0.0406428890528087,0.0424561695748136,0.0572940034850113,0.0714487403394651,0.0849763634267266,0.0983205112035986,0.1108652589876512,0.1262720730431474,0.1407462370150519,0.154020373008953,0.1657881258269666,0.1772928851468603,0.1906370708298813,0.2042689849806987,0.2167199148029819,0.228188579104282,0.2395526651140308,0.2503374565732115,0.260550499643112,0.270860971825602,0.280177840284,0.2893923436212107,0.2972785417702779,0.3055458137523088,0.3133920329475254,0.3196582835096632,0.3261522011203052,0.3328976733289767,0.3384943003883252,0.3452121767694129,0.3509042587670966,0.3563168259254853,0.3573028855237941,0.3582869272757347,0.3589218648518905,0.3597370250231696,0.3610301118781243,0.360396829047641,0.3602014315576107,0.3614752350171443,0.3619273247886556,0.3633725587936836,0.3648506875491775,0.3665685674218333,0.3692356020942408,0.3692734430923407,0.369955534190602,0.3706056976199156,0.3714245054788672,0.3725656489508732,0.3755355763152349,0.3775360304919204,0.3799343604704166,0.3805760356441945,0.3834193629610978,0.3842293361721542,0.3853271028037383,0.3887062690772482,0.3904498694917857,0.3920465957019481,0.4033287101248266,0.3995345228859581,0.0,2.368379378706841,60.52203432243503,215.51840733833308,331.680954470573,fqhc8_100Compliance_baseline_low_initial_treat_cost,44 -100000,95683,41575,391.61606554978414,7271,74.63185727872245,5627,58.139899459674126,2268,23.27477190305488,77.29491858535671,79.69653223428386,63.29396199958445,65.07361216664304,77.02142164760815,79.42355407078954,63.19359480244864,64.97600594937262,0.2734969377485612,272.9781634943293,0.1003671971358102,97.60621727042462,77.16412,54.33932715353996,80645.59012572767,56790.994380966265,242.0984,149.66824719183109,252345.0038146797,155747.41892715226,270.64433,129.60544178529673,278561.24912471394,132170.95332643157,3699.32483,1666.5103654745076,3825063.198269285,1700666.8210118876,1371.01669,600.4876277527478,1416995.0043372386,611758.9126724917,2227.62488,920.6745122731712,2289366.80497058,930494.0664891378,0.38048,100000,0,350746,3665.70864207853,0,0.0,0,0.0,20353,212.01258321749944,0,0.0,25274,259.84762183459964,2087587,0,74893,0,0,0,0,0,51,0.5330100435814094,0,0.0,1,0.0104511773251256,0,0.0,0.07271,0.1911007148864592,0.3119240819694677,0.02268,0.3122962576607119,0.687703742339288,25.55279002991145,4.534496770425705,0.3401457259641016,0.1947751910431846,0.2386706948640483,0.2264083881286653,11.388488251126123,5.875453332738326,23.973051780620743,13012.069887998909,63.44792893021048,12.843402106074024,21.68407497718768,14.958011913269315,13.96243993367947,0.5544695219477519,0.7728102189781022,0.7016718913270638,0.5845122859270291,0.1138147566718995,0.7121320890165111,0.9255014326647564,0.8428571428571429,0.7364864864864865,0.1472868217054263,0.502598016060463,0.7014725568942436,0.6530898876404494,0.5415472779369628,0.1053149606299212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002280860036291,0.0044547271860127,0.006448992027624,0.0084184840628336,0.0104543094760629,0.0126181036152191,0.0149189762847463,0.0169387630003473,0.0194070466914924,0.0215943780860087,0.0237164692003898,0.0256620985802634,0.0278969736259891,0.0300216427908894,0.032194799698593,0.0340341479053124,0.0359170984455958,0.0376772773521044,0.0397703038688401,0.042014967376123,0.0565206037499347,0.0703861133213283,0.0836166729631028,0.0970654152505813,0.1093538993923025,0.1254152999682573,0.1390253998917346,0.1523711164583377,0.1641682604468282,0.1757220720140766,0.1894302549794788,0.2023606032412316,0.2150234843872314,0.2264608792602147,0.2362114663411308,0.2480676809957256,0.2578301960478013,0.2677914214003534,0.2768439224950594,0.2860927304212204,0.2947084308319626,0.3021755421291743,0.3098624912650566,0.3166104704880068,0.3231807404705453,0.3305182057265622,0.3364048944385938,0.3417489331889689,0.3474814459828772,0.3527408561133037,0.3534665068225596,0.3543361272829872,0.3553484831397316,0.3560508540765704,0.3566518879995239,0.3563006632277082,0.3564005593338842,0.3571334431630972,0.3583818992115187,0.3596972631729976,0.3607419555505287,0.3619074144070662,0.3633986928104575,0.3637673005513672,0.3650593345790763,0.3675642981118182,0.3693333716618276,0.3710633979258507,0.3725185446838573,0.3754847479310758,0.3801169590643274,0.3832726493895909,0.3851364183072735,0.3864541832669322,0.3870509052990805,0.3860804983229516,0.3879151291512915,0.3913934426229508,0.3885682879912063,0.3985507246376811,0.0,2.4760295349389176,61.23376779053326,211.1267515577117,324.52266196851866,fqhc8_100Compliance_baseline_low_initial_treat_cost,45 -100000,95718,41467,389.15355523517,7225,74.25980484339414,5670,58.63056060511085,2296,23.61102404981299,77.3593554540744,79.73172032738357,63.33143217950936,65.08454481893028,77.0784263425094,79.45169519706653,63.2287038225397,64.9851000743446,0.2809291115650012,280.0251303170427,0.1027283569696635,99.44474458568207,77.83996,54.73130403500525,81322.17555736644,57179.7405242538,238.95505,147.0618149373297,249067.11381349375,153062.9818188112,266.70427,127.07379469997996,275351.7311268518,130125.5266277132,3761.50838,1688.5959804118186,3891009.235462504,1725363.9027265697,1375.91968,598.3692229289597,1421210.4515347166,608875.8257892565,2271.94912,940.7424727350096,2338323.1576088094,951700.5739861176,0.38109,100000,0,353818,3696.4625253348377,0,0.0,0,0.0,20162,210.0231931298188,0,0.0,24971,257.5482145468982,2089280,0,74948,0,0,0,0,0,41,0.428341586744395,0,0.0,0,0.0,0,0.0,0.07225,0.1895877614211866,0.3177854671280277,0.02296,0.3143830233167409,0.685616976683259,25.283214762836938,4.630874806345377,0.3264550264550264,0.2044091710758377,0.2310405643738977,0.238095238095238,11.03198291264514,5.399826567844993,24.362802587451306,13092.579178232716,63.93169603910671,13.529975959714678,20.958619653498825,14.613524603745228,14.829575822147984,0.5455026455026455,0.7929249352890423,0.690977849810913,0.5732824427480916,0.1066666666666666,0.7181159420289855,0.9396551724137931,0.8643006263048016,0.718213058419244,0.1564885496183206,0.4899766899766899,0.7299630086313194,0.630466472303207,0.5318940137389597,0.0946691176470588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019750435522424,0.0042576054010765,0.0066770170578505,0.0088562084865227,0.0112971945130817,0.013478982357193,0.0156582904327437,0.0178020946042504,0.0198830528919874,0.0220520485677429,0.0241093586561929,0.0266131185932332,0.0286537373321672,0.0309399437455568,0.0332686671894993,0.0354359197006347,0.037581919266169,0.0393631366040867,0.0414080612128205,0.0431558004604118,0.0580483475173602,0.0719660892773038,0.0857634372508706,0.0989579499689803,0.1121866860691953,0.1278747487570083,0.1409697239820445,0.1539010263617392,0.1657209416642623,0.1771503991758949,0.1906388389057095,0.2033364366596661,0.2151864303511005,0.2265866978953474,0.2369711056521883,0.2480119780402595,0.2584752862328958,0.268463927269454,0.2776787842331657,0.2865393209501656,0.2948726851851851,0.303222033799193,0.3104594099213623,0.3179684880992289,0.3249745108510948,0.3311411611123426,0.3368133794001302,0.3426743328160379,0.3484014658085902,0.354121324838748,0.3555755855407423,0.3568972158027952,0.3581434599156118,0.3591222353585743,0.3592794824618672,0.3589163405088063,0.3590185173481641,0.3604818882150467,0.3611599747237545,0.3629809408237561,0.3636995174705694,0.3651532866966568,0.3650763559768299,0.3651090483056957,0.3665723201974018,0.3658933018744265,0.3673797098124677,0.3695920889987639,0.3704908756542651,0.3719835666706553,0.3726075182448249,0.3741627819750308,0.3787481618822326,0.3793684855916615,0.3797863288266994,0.382689556509299,0.3895823701648944,0.3922562335292925,0.3947078280044101,0.3987682832948422,0.0,2.3643266292983256,60.835424152260494,216.1999019883445,326.6016228943509,fqhc8_100Compliance_baseline_low_initial_treat_cost,46 -100000,95900,41684,390.3232533889468,7242,74.47340980187695,5642,58.373305526590194,2311,23.80604796663191,77.4394230829848,79.7204656422446,63.39129033748679,65.07758974822816,77.15671227889133,79.43460277647861,63.28740564337198,64.97479153108237,0.2827108040934689,285.86286576599207,0.1038846941148037,102.7982171457893,77.98934,54.8108052464804,81323.60792492179,57154.12434460938,241.44021,148.92425407025067,251318.1230448384,154846.8447030768,266.2463,127.1135667346339,274802.9092805005,130372.94634114752,3740.89789,1679.3386807284662,3873116.152241919,1723419.3751078905,1365.74014,595.3365348338824,1412605.922836288,609265.3543627554,2276.01294,947.1114977905607,2346479.2492179354,963863.6267760094,0.38161,100000,0,354497,3696.52763295099,0,0.0,0,0.0,20351,211.75182481751824,0,0.0,24844,256.2356621480709,2089544,0,75077,0,0,0,0,0,44,0.4588112617309697,0,0.0,0,0.0,0,0.0,0.07242,0.1897749010770158,0.3191107428887048,0.02311,0.3166448230668414,0.6833551769331586,25.39885485810656,4.574517643295907,0.3286068769939738,0.1990428925912797,0.238390641616448,0.2339595887982984,10.90470769648093,5.322411564849591,24.535880643259784,13114.247935093115,63.42092767357514,12.956673086394597,20.986752604172786,15.026017693046628,14.451484289961147,0.5393477490251684,0.7533392698130009,0.6806903991370011,0.5828996282527881,0.1143939393939394,0.6982507288629738,0.8978978978978979,0.847682119205298,0.7275541795665634,0.1520912547528517,0.4882903981264637,0.6924050632911393,0.6266952177016417,0.5371819960861057,0.1050141911069063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022474185057703,0.0043779642466253,0.0065023990910843,0.0086913259348759,0.0110380436439773,0.0132882928715329,0.0155029284441049,0.0176458588331293,0.0198806750847942,0.022248818511017,0.0242220560058198,0.0264308140608647,0.0286186982345808,0.0307275796755332,0.0329800614445658,0.0349944240221387,0.0371818746120422,0.0392813105513475,0.0416934864309295,0.043619832303435,0.0575922779439817,0.0722040522042611,0.0854477103992795,0.0979883669655418,0.1105403328526164,0.1267947635135135,0.1397794795208287,0.1525612827133339,0.1649273539350396,0.1769276044732195,0.1905877800232188,0.2037187091476787,0.2163923741241649,0.2278995563520335,0.238802195022709,0.250163284735368,0.2609214237144545,0.2703984180130783,0.279520420651829,0.2884769332814894,0.2973585080076725,0.3050178164612419,0.3125266095841809,0.319403521379806,0.325523774822372,0.3316412651084854,0.337324974661211,0.343012981068745,0.348632281773246,0.3536847377647725,0.3548916921337121,0.3566292227523339,0.3574887387387387,0.3581144566992874,0.3583273894436519,0.3584946137697482,0.3583153758397769,0.3590332961187364,0.3605237517307396,0.3619445635090727,0.3621375248527591,0.3630984187298383,0.363979611100623,0.365872732147645,0.3676947077883115,0.3683167283918418,0.3693693693693693,0.3709439759225005,0.3737327833321681,0.375721629102412,0.378296192075523,0.3823357275871242,0.3859593793364451,0.3897667996317889,0.3866666666666666,0.3890555622224889,0.3938163647720175,0.3976003309888291,0.4006167647883375,0.4056748466257668,0.0,1.8220326042557529,60.76958240680733,214.09065793354512,325.1609709530511,fqhc8_100Compliance_baseline_low_initial_treat_cost,47 -100000,95725,41228,387.5372159832855,7368,75.61243144424132,5711,58.93967093235832,2380,24.41368503525725,77.34647984393533,79.7003650636141,63.33814763576003,65.07582981190725,77.0527639363926,79.40651097332868,63.229876167810296,64.97063147199823,0.2937159075427331,293.8540902854214,0.1082714679497343,105.19833990902328,76.86272,54.03193378102807,80295.34604335336,56444.95563439862,237.86574,146.413943650614,247774.4894228258,152238.53084420366,263.81129,126.05609035533398,270805.7247323061,128015.3818635862,3785.84658,1707.4511878683893,3910134.2909375816,1738919.464997011,1399.69994,607.732279430207,1443704.110733873,616367.8239020179,2348.28268,980.984883171029,2410886.706711936,988487.1871553868,0.37907,100000,0,349376,3649.788456516062,0,0.0,0,0.0,20083,209.05719509010183,0,0.0,24687,253.13136589187775,2093705,0,75197,0,0,0,0,0,33,0.3447375293810394,0,0.0,0,0.0,0,0.0,0.07368,0.1943704329015749,0.3230184581976112,0.0238,0.3200051759834368,0.6799948240165632,25.3622113591616,4.541843957718423,0.3321659954473822,0.1945368586937489,0.2346349150761688,0.2386622307827,10.984244027862688,5.470916469446869,25.44822877047759,12957.778002021949,64.4095414386994,13.04643653303843,21.215519003552163,14.985959521284688,15.161626380824115,0.5398354053580809,0.774977497749775,0.6731681602530311,0.5835820895522388,0.119589141599413,0.6926863572433193,0.9269662921348316,0.8574766355140186,0.7592592592592593,0.1337579617834395,0.48915831196083,0.7033112582781457,0.6194690265486725,0.5275590551181102,0.1153479504289799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021166700425359,0.0044501211365548,0.0066063871890888,0.0090002234818471,0.0114507698252893,0.0134284899820817,0.0155351681957186,0.0176262260280264,0.0195439073504308,0.0218484125602776,0.0240162363287856,0.0257631433087676,0.0278209016604122,0.0297661963126995,0.0317884484430779,0.0339331672678787,0.0359269037635243,0.0378478202228539,0.0401043669892618,0.0422360636613615,0.0566071223494774,0.0702966358935711,0.0830850260198086,0.0959586930688904,0.1076704096156887,0.1232620349126127,0.1360617826151528,0.1483811226770547,0.1606914075845575,0.1726207702284103,0.1868041947501023,0.200086528581472,0.2124347826086956,0.2241226680073006,0.2346429513675138,0.2457295944913706,0.2557291492422468,0.2661995118494606,0.2750442558213427,0.2851447490519996,0.2933307102105056,0.3008856805232184,0.3087819032391781,0.3161146366918989,0.3229484483450229,0.3292825714532211,0.3359379891556157,0.3413826059254539,0.3464439165595753,0.3515944290872538,0.3529824561403509,0.3535763041409837,0.3543485015394175,0.3552991985623396,0.3562922001460702,0.3568244697202582,0.3570759732736593,0.3576989548185335,0.35896952129393,0.3609961479888919,0.3621646014703947,0.3638618281383305,0.3641726891553065,0.3649426579716663,0.3657911285251294,0.3669693380707988,0.3693206341898541,0.3717672413793103,0.3741867043847242,0.3746411483253588,0.3760338173129939,0.3761137949543747,0.3787590407308717,0.3835479145786755,0.3846961167827497,0.3876146788990826,0.3857741885385929,0.3882912701696318,0.3889364128885087,0.3885094415427882,0.0,2.773791537672658,62.36728331806742,215.2019308385645,326.04427905522425,fqhc8_100Compliance_baseline_low_initial_treat_cost,48 -100000,95736,41727,393.0078549344029,7137,73.35798445725746,5574,57.59588869390824,2245,22.99030667669424,77.41222784566315,79.7706798381051,63.350809200748486,65.09081792037318,77.14628795824007,79.5062742796296,63.253184650624505,64.9972331420751,0.2659398874230874,264.4055584755023,0.0976245501239816,93.5847782980801,76.47178,53.80771533803138,79877.76802874572,56204.26520643371,238.69479,146.99044621442192,248705.1370435364,152917.22756775,265.74624,126.74382694386732,274239.43970920035,129760.9562746974,3680.69765,1632.4806052498957,3803004.19904738,1663853.2763902573,1354.50304,577.405458641041,1400081.6620706944,588491.2182014476,2217.49552,910.3947923247156,2273058.2017214005,912760.8850248487,0.38114,100000,0,347599,3630.80763767026,0,0.0,0,0.0,20069,208.970502214423,0,0.0,24806,255.77630149578005,2096615,0,75078,0,0,0,0,0,37,0.3864794852511072,0,0.0,0,0.0,0,0.0,0.07137,0.1872540273915096,0.3145579375087571,0.02245,0.3154944614973975,0.6845055385026024,25.199489899452438,4.620006673749549,0.3310010764262648,0.2023681377825619,0.2265877287405812,0.240043057050592,11.024687199687682,5.345445153458358,23.464082650048255,12981.497752161406,62.16328769941227,13.288455810908433,20.69112725472604,13.789692298483642,14.394012335294155,0.540724793684966,0.7925531914893617,0.6959349593495935,0.5471100554235946,0.1083707025411061,0.7057949479940565,0.943089430894309,0.8358862144420132,0.6441281138790036,0.1631799163179916,0.4881740775780511,0.7193675889328063,0.6498559077809798,0.5193482688391039,0.0964513193812556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0045507525464957,0.0067463377023901,0.0088654642944187,0.0109395174818776,0.0128569247213315,0.0152577613796196,0.0173260002244829,0.0196114500618286,0.0216888433981576,0.0236638483218037,0.0259305643952614,0.0279119975326411,0.0297213239686103,0.031771091299323,0.0339969403787315,0.0360548796272327,0.0378597663464132,0.0398939488459139,0.0418789261493265,0.0564418458968469,0.071031675439239,0.0839033192060761,0.0962770489906268,0.1082598235765838,0.1234985978094079,0.1372199403529998,0.1499669910769427,0.1624293332478386,0.1737357259380098,0.1871873382784198,0.2010937246196329,0.213259307642064,0.2246077712208634,0.2350446182659469,0.2460152844482402,0.2563985068287994,0.2666336265642423,0.2758957469763216,0.284264715998991,0.2929826390095317,0.3016330114135206,0.3095317013116151,0.3170103401588766,0.3236576508738477,0.3296869803023023,0.3353798829590356,0.3407858131883487,0.3456633806638328,0.3515988945913936,0.3529293336017717,0.3544321158672902,0.3548205884418229,0.3562239797167841,0.3573836418475368,0.3571939871152469,0.3578988817136557,0.3593678573760857,0.3602577398459681,0.3610859406925715,0.3626521066656728,0.3634361233480176,0.3648558295027163,0.3656031371151018,0.3664418900434354,0.3683129177394606,0.3683296809630873,0.3708902496467263,0.3740257004423846,0.3755494831887846,0.3778747386601218,0.3804088133793469,0.3841367607315694,0.3858518462354993,0.3879857997010463,0.391324902493795,0.3950242718446602,0.3932223781832765,0.3911499590275881,0.397165836844121,0.0,2.388435955882335,59.33596482489556,203.96798459649636,325.13378709842016,fqhc8_100Compliance_baseline_low_initial_treat_cost,49 -100000,95734,41500,389.3601019491508,7321,75.19794430400903,5639,58.37006706081434,2276,23.40861136064512,77.32373385663094,79.69358655139531,63.321321634088775,65.07509527541619,77.04902787237751,79.41844157812702,63.21988413769648,64.97599751621787,0.2747059842534298,275.1449732682971,0.1014374963922932,99.09775919831532,76.96524,54.1467787223196,80394.196419245,56559.03113867563,239.43694,147.5272077880001,249501.35792926236,153501.0719722891,265.43353,127.23961036138816,274183.32045041467,130552.04780020074,3744.9341,1685.7125885710018,3877830.164831721,1727257.727835307,1380.60401,604.5099467683905,1427603.495101009,617174.328502366,2244.8429,935.7021758928756,2309990.0348883364,947482.7267324992,0.38084,100000,0,349842,3654.2816554202273,0,0.0,0,0.0,20165,210.0298744437713,0,0.0,24787,255.8443186328786,2092316,0,75088,0,0,0,0,0,52,0.543171704932417,0,0.0,0,0.0,0,0.0,0.07321,0.1922329587228232,0.3108864909165414,0.02276,0.3109613889608706,0.6890386110391293,25.521342390539463,4.622904564648329,0.3110480581663415,0.2092569604539812,0.2452562511083525,0.2344387302713247,11.30632340514871,5.617357693419307,24.16607316526743,13056.294751848563,63.43157387360071,13.840336621236752,19.668421298171697,15.330699290800595,14.59211666339166,0.5362652952651179,0.752542372881356,0.6733181299885975,0.5770065075921909,0.1187594553706505,0.7010909090909091,0.9182561307901907,0.8729411764705882,0.7024221453287197,0.1802721088435374,0.4831144465290807,0.6777367773677737,0.6094808126410836,0.5438756855575868,0.1011673151750972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0047968196983986,0.0072675598863174,0.009491291181432,0.0115985674751749,0.0140268312807505,0.0158385346550809,0.018067059532442,0.0202979763377746,0.0225510778841722,0.0248997548994472,0.0270514532196775,0.0292780281052609,0.0314396710736477,0.0334114344105777,0.0352416987139726,0.0374704834500186,0.0394040628307015,0.0413088232236062,0.043200550166196,0.0577290524667188,0.0717881626458736,0.0850476799932859,0.0980802608741387,0.1106518048276371,0.1253806462527491,0.1386089244414267,0.1511588311660672,0.1630922373648908,0.174251522690229,0.1881400282123897,0.2016596702298005,0.2135422897475774,0.2253912358788727,0.2365076745337514,0.2475023813215781,0.2579961636258197,0.2684360146971246,0.2782477546947292,0.2867704280155642,0.2945385193319078,0.3023049230913086,0.3093914812099425,0.316421415903753,0.3231131788972437,0.3303006768001775,0.3356629342952331,0.3414273702448595,0.3470287655954141,0.3530413882359156,0.3539029749147425,0.3549080981205962,0.3557221304648569,0.3562473730741916,0.3570853941958167,0.3574476576410634,0.3574710822373633,0.3593721751992768,0.3614857357742338,0.3622501876943977,0.3636363636363636,0.3649238337035861,0.3660571332265948,0.3674121405750798,0.3688147574319744,0.3697874241269674,0.3694051317454838,0.3725153452278726,0.375452416436023,0.3773433100008045,0.381011781011781,0.3803561791689153,0.3798325771614799,0.3841571903767308,0.3894586894586894,0.3884675574816419,0.3924342611102568,0.3946078431372549,0.3971318257032543,0.3969732246798603,0.0,1.935543054302787,60.91077696650513,213.0641635044281,325.58666066437365,fqhc8_100Compliance_baseline_low_initial_treat_cost,50 -100000,95787,41560,390.9925146418616,7100,72.97441197657302,5520,57.11631014647081,2321,23.865451470450058,77.38153749659537,79.72348528510986,63.350937847410606,65.08300467115916,77.08987263307958,79.43172167222204,63.24350176698599,64.97806518913981,0.2916648635157912,291.76361288782005,0.1074360804246126,104.939482019347,77.36256,54.406870855834,80765.1977825801,56799.84847195757,236.82838,145.83066846462447,246743.66041320845,151743.85948228848,262.16546,125.51735315725,271076.00196268805,128871.19376605473,3680.02122,1663.7439605478664,3809956.319751114,1705025.4040772938,1377.46197,604.089622532507,1422819.5892970862,615480.3898227124,2295.4067,962.7169937970596,2362379.9262948,975541.3079568464,0.38202,100000,0,351648,3671.145353753641,0,0.0,0,0.0,19990,208.1597711589255,0,0.0,24452,252.6230072974412,2093366,0,75154,0,0,0,0,0,44,0.459352521740946,0,0.0,1,0.0104398300395669,0,0.0,0.071,0.1858541437621066,0.3269014084507042,0.02321,0.319251984393919,0.680748015606081,25.126256640787112,4.6519469723076,0.331159420289855,0.1925724637681159,0.2284420289855072,0.2478260869565217,10.9670475019349,5.340141469962743,24.850338820315585,13007.73150034181,62.369084067072095,12.47690564306659,20.68820615717862,14.000101850757966,15.203870416068918,0.5418478260869565,0.7638758231420508,0.6936542669584245,0.5836637589214909,0.1279239766081871,0.6952104499274311,0.8994252873563219,0.8673913043478261,0.7095588235294118,0.1778523489932885,0.4908256880733945,0.6979020979020979,0.6352339181286549,0.5490394337714863,0.114018691588785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177479795013,0.0046120785776552,0.0070106732681303,0.0090592405268984,0.0111332533501433,0.0133452772377006,0.0158294940269906,0.0177589075209993,0.0198859572032945,0.0220394131008656,0.0240300862828684,0.0260926690070004,0.0281413545276015,0.0301064640349251,0.032284682826199,0.0344681510564653,0.036249430853926,0.0380225772009661,0.040026178554362,0.0421455938697318,0.0569359366358124,0.0706479108926423,0.0834268102192076,0.0965881030189036,0.108515368971222,0.123874540305195,0.1373723029969056,0.1499936213641775,0.1623554018867119,0.174527290657291,0.1889378101686887,0.2011486793432409,0.2130994304595452,0.2245828005639159,0.235674605357241,0.2469023706968143,0.2577040184695687,0.2679523220510514,0.2774178909750978,0.2866594931202637,0.2946015364679748,0.3021474186530679,0.3098366477272727,0.3169123816373007,0.3239375015187228,0.331045530158339,0.3372226807733673,0.3435200977522083,0.3484383299003796,0.3539942175927759,0.3552103263359293,0.3556779836099442,0.3557064028563767,0.3564200193997655,0.3579355030907872,0.3580271534862315,0.3580258653480411,0.3586767361681169,0.3594379567028614,0.3600607305528266,0.3602327108942479,0.3614655992390615,0.3624992116383206,0.3632724655932355,0.3651886200067623,0.3662924884599244,0.3676731793960923,0.3691730271872832,0.3703117303497291,0.3707976924607121,0.3719484319283167,0.3721364874245741,0.372999745999492,0.3740293688014146,0.376782658300057,0.3774620986033186,0.3758255260328674,0.3822511703643395,0.380328782390638,0.3817829457364341,0.0,1.98856959462994,60.99233358764008,211.0663924993385,312.5914270258661,fqhc8_100Compliance_baseline_low_initial_treat_cost,51 -100000,95859,41609,389.1862005654138,7127,73.27428827757436,5525,57.08384189278002,2259,23.179878780291887,77.37299817448195,79.67336196662242,63.35320242165369,65.05656652139673,77.09667345258795,79.39812626990732,63.25223499226546,64.95890330199636,0.2763247218939995,275.2356967151002,0.1009674293882341,97.66321940037416,76.89,54.06364097089315,80211.56072982193,56399.12889858349,239.46068,148.1656357685613,249226.520201546,153987.63367921775,264.28238,126.92552786970552,272444.2358046714,129910.2564241856,3676.98887,1646.8733868376974,3800966.2733806944,1683152.1055275958,1319.30398,570.718355022351,1363732.586402946,582808.9120712201,2227.50058,920.663677342594,2287690.4411688,929298.769898298,0.38192,100000,0,349500,3645.980033173724,0,0.0,0,0.0,20230,210.4445070363764,0,0.0,24625,253.59121209276125,2091920,0,75113,0,0,0,0,0,52,0.5424634097998101,0,0.0,0,0.0,0,0.0,0.07127,0.1866097612065354,0.3169636593236986,0.02259,0.3118093462921049,0.6881906537078951,25.41865928303361,4.696672068555936,0.3314027149321267,0.1943891402714932,0.2327601809954751,0.2414479638009049,11.107418429350426,5.489917670178407,24.07188402556408,13081.049401293743,62.28678135194831,12.665767323712744,20.80383589591928,14.26270670687482,14.554471425441443,0.5417194570135747,0.7783985102420856,0.6947023484434736,0.5738724727838258,0.1101949025487256,0.7256505576208179,0.922437673130194,0.8556034482758621,0.7430555555555556,0.1379310344827586,0.4825358851674641,0.7054698457223001,0.640087783467447,0.5250501002004008,0.1043557168784029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021976909054081,0.0044999847973486,0.0067963036223283,0.0092601994192067,0.0114877091678018,0.0137316775244299,0.0159713799394575,0.0179611997264999,0.0200472059589859,0.0221212679313237,0.0243020337072895,0.0265217971210768,0.0288063306099378,0.0309926712779973,0.0334006845078553,0.0355958982620279,0.0377405338299193,0.0398221835364337,0.0419647956799418,0.0440111536540702,0.058905109489051,0.0726258150810901,0.0857986925913509,0.0986295615647151,0.1108232493970701,0.125723581358009,0.1392497615767722,0.1519668296831809,0.1639646947074079,0.1754331451103087,0.1897659402744148,0.2029984975084582,0.214982120148256,0.2262180720783765,0.2369842964202,0.2488950918818329,0.2598551711056314,0.2694999549914483,0.2787906290770889,0.2877148386062542,0.2963185713790032,0.3045172159629357,0.3123609072399261,0.3186986998981487,0.3247999222763319,0.3314930063466634,0.3369321526533986,0.3427407548851123,0.3488507683138556,0.3543601463730398,0.3554746494066882,0.3564595280105866,0.3568493440840476,0.3573880672682764,0.357542731225061,0.3573258864867353,0.3569104787900909,0.3576328907753813,0.3587641218760698,0.3604771970049797,0.3611105896487638,0.3625200530787665,0.3635542864341655,0.3632902604528251,0.3645096056622851,0.3654037104781813,0.3668108510699246,0.3676907516277893,0.3698489980242732,0.3710216422660725,0.3713700500682749,0.3723047436511739,0.3738205306820341,0.3785588212723506,0.3777313319399582,0.3803134647352172,0.3787293244705518,0.3794808405438813,0.3827402633790978,0.3777949113338473,0.0,2.189550421263961,59.36337307654209,213.83083272208256,313.82591252722057,fqhc8_100Compliance_baseline_low_initial_treat_cost,52 -100000,95799,41274,386.9768995500997,7211,74.23877075961127,5635,58.32002421737179,2308,23.77895385129281,77.39816222968327,79.72818801103992,63.35848721039546,65.07986901179022,77.11912918106503,79.44741753860662,63.25680815402652,64.97972435114139,0.2790330486182313,280.77047243330355,0.1016790563689369,100.1446606488372,77.022,54.16221030752783,80399.58663451602,56537.34413462335,238.722,146.94648932603178,248682.6897984321,152890.48606323943,261.32662,124.338093716088,270212.78927754983,127757.6044846178,3748.92345,1671.393121191404,3882273.2596373656,1714161.326575024,1410.88231,610.049107865239,1461201.73488241,625251.3660406083,2278.79468,937.729128322894,2349040.929446028,953929.1283648688,0.37898,100000,0,350100,3654.526665205273,0,0.0,0,0.0,20139,209.6994749423272,0,0.0,24421,252.2468919299784,2094376,0,75130,0,0,0,0,0,50,0.5219261161389993,0,0.0,0,0.0,0,0.0,0.07211,0.1902738930814291,0.3200665649701844,0.02308,0.3141954174348169,0.6858045825651831,25.59240832517688,4.642144111023767,0.3213842058562555,0.2,0.2356699201419698,0.2429458740017746,11.301460322240931,5.657727331942292,24.383772861159343,12930.868350010194,63.253581299664816,13.107841934301565,20.45912020840697,14.568944913398354,15.117674243557923,0.5364685004436557,0.7905944986690329,0.6824958586416344,0.5549698795180723,0.1161431701972242,0.6979166666666666,0.9230769230769232,0.87248322147651,0.7090909090909091,0.1443661971830986,0.4859007224423211,0.7338403041825095,0.6202346041055719,0.5147198480531814,0.1087557603686635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020659901561645,0.0043477379601102,0.0064825711155297,0.0085811195060524,0.0108066893712194,0.0131495918741221,0.0157130483517603,0.0177223197159531,0.0199838576201228,0.0221199099652138,0.0243727525125756,0.0263619665267672,0.0283744065114175,0.0307533964594483,0.0330628782333474,0.035125225923057,0.0371696063725236,0.0391949482066755,0.0410591621894063,0.0431839718424258,0.0576585976627712,0.0714920674761292,0.0847862781895765,0.0974492101695271,0.1100885515496521,0.125087211146113,0.1383465026250198,0.1509747169490082,0.1624427285251994,0.172812369321167,0.186719221159645,0.1996625786775679,0.2115138083132346,0.2224576965512721,0.2334509325508039,0.2455243532718139,0.2558092859372909,0.2651672757942086,0.2743205227097418,0.2833732235493512,0.2917350785098166,0.2989957092584149,0.3062215118688214,0.3135061914865561,0.3211878302058663,0.3275715500141683,0.3342339637746422,0.3405575905575905,0.3461035175228347,0.3516606822262118,0.3523837765706506,0.3527022375215146,0.3534547198284981,0.3540205619098572,0.3546695583713364,0.354185170438884,0.355176891647927,0.3555394998275833,0.3561831407787762,0.3572271280969575,0.3584693303320203,0.3598913625280019,0.361392896897906,0.3630158445976188,0.363269521773593,0.3636078922643282,0.3650662722566699,0.3661263977886669,0.3673555166374781,0.3682667934093789,0.372541862481179,0.3730196577120754,0.3734486649116209,0.3717537427436602,0.3712908712908713,0.3726454709058188,0.3749231714812538,0.3780413003475771,0.3807262569832402,0.3876447876447876,0.0,1.8920276892448435,59.74258655934531,213.22597414932432,328.2355861803669,fqhc8_100Compliance_baseline_low_initial_treat_cost,53 -100000,95888,41144,386.1692808276322,7152,73.53370599032203,5580,57.72359419322542,2297,23.621308192891707,77.3584022892406,79.64024233660905,63.35300198276878,65.04140382045172,77.07182931290004,79.3521658104509,63.248758349326856,64.93882017201841,0.2865729763405653,288.07652615815016,0.104243633441925,102.5836484333098,77.77836,54.676713033145546,81113.75771733689,57021.43441634568,238.49382,146.70814971529734,248258.6663607542,152539.47359963832,260.98666,123.93103783218702,269460.5060070082,127112.35595680116,3694.84958,1653.5099766186142,3825032.673535792,1696343.936576324,1359.31256,593.6447249826534,1408027.3444018022,609603.2832436495,2264.85466,939.853802610146,2331667.028199566,954789.0890470576,0.37807,100000,0,353538,3686.9889871516766,0,0.0,0,0.0,20080,208.92082429501085,0,0.0,24377,251.44960787585515,2089455,0,75045,0,0,0,0,0,55,0.5735858501585183,0,0.0,0,0.0,0,0.0,0.07152,0.1891713174808897,0.321168903803132,0.02297,0.316542948038176,0.6834570519618239,25.432379333405,4.5343174834339735,0.3288530465949821,0.200179211469534,0.232258064516129,0.2387096774193548,10.909093059637955,5.411295590996506,24.5640586103514,12928.234391215368,62.9478298583768,13.013758400020164,20.75118665032724,14.49340323328283,14.689481574746573,0.5446236559139785,0.7797672336615935,0.6899182561307902,0.5794753086419753,0.1133633633633633,0.7005267118133935,0.9221183800623052,0.8269230769230769,0.7420494699646644,0.1478599221789883,0.495883321571395,0.7223618090452262,0.6430138990490124,0.5340572556762093,0.1051162790697674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023185412426976,0.0046610126556626,0.0067653234068018,0.0092091502604351,0.011323439723521,0.0134237067342431,0.0156689351644321,0.0179407414962517,0.0200626895234983,0.0220407078379455,0.0241280825493668,0.0260093088105636,0.0280793287253381,0.0300988550913972,0.0318943929760199,0.0337308347529812,0.0358332471294093,0.0380473648753692,0.0401694844846923,0.0421773237062777,0.0568777690904352,0.0706972565243736,0.0835131002994952,0.0962095758084838,0.1083281547876094,0.1233509025804611,0.1365538872346963,0.1497666209477635,0.1615915810145902,0.1732447207632114,0.187257731070721,0.1996927969539303,0.2126549249836921,0.2242664742664742,0.2346777208453368,0.2461044710048694,0.2571549666510517,0.2670167665613368,0.2757337508367085,0.2844800916642795,0.2925129914470562,0.2997086458467407,0.3073032044067997,0.313814408253854,0.321139743885977,0.3281417764010416,0.333918451276393,0.3398908636560675,0.3450810305422813,0.3500608916657842,0.351178742134968,0.3521150078640214,0.3534504675009181,0.3544145998521461,0.3555373256767842,0.3555124892334195,0.3562633236819498,0.3577285400821606,0.3579708402740808,0.3577297025795573,0.3591960518384569,0.3593175174498379,0.3594652722135537,0.3595824146154884,0.3610815259488768,0.3634460378938553,0.3647055456990786,0.3669548207975769,0.3684025210379916,0.3719410123555201,0.3727672437482825,0.3729364149536692,0.375134723895264,0.376742025394859,0.3770853307766059,0.3784537081919534,0.3809299403078856,0.3835728952772074,0.3811247216035635,0.3887171561051004,0.0,1.785458217980029,59.11894939650374,216.0656586273322,323.1539095899395,fqhc8_100Compliance_baseline_low_initial_treat_cost,54 -100000,95739,41543,390.3633837829933,7434,76.51009515453472,5742,59.44286027637639,2318,23.866971662540863,77.38965647392791,79.75605021792536,63.34469261111818,65.0936456574513,77.1075910095049,79.47376154939649,63.24128554825951,64.99324628918025,0.2820654644230131,282.2886685288779,0.1034070628586789,100.39936827105578,77.84986,54.71423641925505,81314.67844869907,57149.371122797456,241.42524,148.46389628305678,251650.62304807865,154552.33331407938,269.04339,127.84271532675628,278219.7537053865,131409.04446433875,3793.17214,1697.4916330234123,3929109.255371374,1740203.736652783,1404.87641,602.7534376382416,1454504.7159464797,616786.1186505032,2285.1548,947.081721962542,2354856.432592778,960103.228013842,0.38058,100000,0,353863,3696.121747668139,0,0.0,0,0.0,20350,211.99302269712447,0,0.0,25205,260.4894557077053,2089210,0,74976,0,0,0,0,0,38,0.3864673748420184,0,0.0,0,0.0,0,0.0,0.07434,0.1953334384360712,0.3118105999461931,0.02318,0.3158969124776729,0.6841030875223271,25.226350933292544,4.609209033806559,0.3220132358063393,0.2044583768721699,0.2391152908394287,0.234413096482062,11.134690866304682,5.513220497679817,24.593973113218954,13043.55139110152,64.43405945909267,13.625525303255111,20.82472107330278,15.225015922326293,14.758797160208472,0.543712991988854,0.7529812606473595,0.6976744186046512,0.5717407137654771,0.1210995542347696,0.7111269614835949,0.9102902374670184,0.8728070175438597,0.7312925170068028,0.1428571428571428,0.4896313364055299,0.6779874213836478,0.6403445800430725,0.5282669138090825,0.1155638397017707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299246414391,0.0043591537159251,0.0066471143405149,0.0087266594875754,0.0105485875878625,0.0126165940287564,0.0148754600789143,0.0171700983044272,0.0194619347452776,0.0218134545305654,0.0239552261754666,0.0261996180933412,0.028332630843091,0.0305008649806409,0.0326040989778341,0.0345711421395868,0.036574126808255,0.0386259415267777,0.0407632984804706,0.0427411876256863,0.0577916992952231,0.0715840817266428,0.0846588047675004,0.09789069486087,0.1099553764518477,0.1257219013771657,0.139076923076923,0.1516954383873645,0.1641373418059486,0.1757930635094266,0.1891979196950609,0.2020186721767257,0.2144682331705938,0.2257323754223665,0.236727732849205,0.2479736014528059,0.2577313838982011,0.2673207241832709,0.2771849449440368,0.2862750483514722,0.294731363136892,0.3024063420794163,0.31029794277607,0.3175068854029457,0.3252115428973789,0.3316452888773888,0.3372800320408521,0.3425192841322776,0.3486796948858412,0.3540173444739239,0.3554047320863464,0.3562737433243407,0.3569436226861635,0.3572657232477125,0.3581207495619636,0.3578689528475199,0.3575191836088917,0.3585514991557515,0.3602036992880744,0.3612441469190093,0.3621185522728121,0.3643985874647359,0.3660352109731108,0.3660546770302867,0.3657856799615569,0.3662225235326328,0.3656499429874572,0.3682566723452584,0.3712046321141082,0.3747348196773806,0.3778831545508954,0.3779094827586207,0.377735368956743,0.3799558633285138,0.3792103293413174,0.3778093210314644,0.3785060975609756,0.3807700060471679,0.3841496973032471,0.383693972179289,0.0,2.0224622073649154,62.108001650382455,213.82605678059812,333.0884832458797,fqhc8_100Compliance_baseline_low_initial_treat_cost,55 -100000,95750,41604,390.5691906005222,7354,75.44647519582246,5719,59.01827676240209,2308,23.613577023498696,77.34687979821054,79.7067265437784,63.33382307926016,65.08157186939408,77.0605787320978,79.42275911445874,63.22817199435718,64.97984278246159,0.2863010661127418,283.96742931965946,0.1056510849029734,101.72908693249384,77.68882,54.68479525426662,81137.14882506526,57112.05770680586,243.40845,150.2077785301162,253539.6971279373,156202.18123249733,269.62714,128.7560899849808,277430.7989556136,131206.67423771936,3777.21635,1707.2436775562282,3900835.1749347257,1738983.8199020657,1402.38445,611.8768949951424,1444271.8433420367,618676.4856346133,2278.3794,958.0369543050084,2334264.501305483,961795.9447076204,0.38115,100000,0,353131,3688.0522193211486,0,0.0,0,0.0,20519,213.57702349869453,0,0.0,25239,259.3942558746736,2087461,0,74987,0,0,0,0,0,44,0.4595300261096606,0,0.0,0,0.0,0,0.0,0.07354,0.1929424111242293,0.3138428066358444,0.02308,0.322463768115942,0.677536231884058,25.09245437045165,4.603083636008249,0.3289036544850498,0.2066794894212275,0.222766217870257,0.2416506382234656,11.07557113556142,5.503214755761766,24.65308119231391,12968.680636080502,64.78592180029833,13.908352969344394,21.229926618403297,14.334460147731043,15.313182064819594,0.5465990557789824,0.772419627749577,0.6953748006379585,0.5855572998430141,0.1150506512301013,0.7019162526614621,0.923728813559322,0.8715203426124197,0.7301038062283737,0.1471571906354515,0.4958236658932715,0.7077294685990339,0.6371994342291372,0.5431472081218274,0.1061865189289012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482712496453,0.0041779905082545,0.0066700507614213,0.0088823846255475,0.011231382762269,0.0132889350522392,0.0156488938729737,0.0177929767251939,0.0200977285273251,0.0223819470041364,0.024236956231994,0.026583019313503,0.0286604553587955,0.0306666941365528,0.0329115752972258,0.0348670133038381,0.0370715543129336,0.0391501898379634,0.0410386478451591,0.0429435714806368,0.057938794255177,0.0714875989832316,0.084750560949525,0.0975404666806811,0.1101226864538977,0.12593132747852,0.138909206551121,0.1508033559116574,0.1625182703694615,0.1740029352215878,0.1876795300749857,0.2012645914396887,0.213197583449235,0.2239686301923476,0.2349735182295672,0.246347941567065,0.2570204982936676,0.2670984863819355,0.2766754449691246,0.2852199816681943,0.2940550050930641,0.301659760750989,0.3084683148621767,0.3153671787860252,0.3225061950342548,0.3294753561446495,0.3358495762446639,0.341252974637635,0.3469908546853545,0.3513713177578724,0.3521030019797713,0.352006170713902,0.3527165104643788,0.3538763947505348,0.3549777757956859,0.3546586517818806,0.3542750221996701,0.3551434166570671,0.3565028183733959,0.3577694235588972,0.3585738986618553,0.3594419749166534,0.3598796473583436,0.3610848738361894,0.3612798605900719,0.3625440395435663,0.3641277782569941,0.364266853307034,0.3647575843493054,0.3679733579424628,0.3674985008533604,0.3684154003114428,0.3707600102014792,0.3745875853602394,0.3802737140160453,0.3838721221519742,0.3806581183377105,0.3795876288659793,0.3826284416690321,0.374250299880048,0.0,2.8086240595957457,61.74649188936751,222.9959068592016,323.04343167707657,fqhc8_100Compliance_baseline_low_initial_treat_cost,56 -100000,95756,41464,390.2105351100714,7195,74.05280086887505,5598,57.88671205981871,2264,23.27791469986215,77.36211040614715,79.72338757328085,63.32787542470121,65.07539258887246,77.09251949831254,79.45348504791288,63.229377665892976,64.97927619507045,0.2695909078346119,269.9025253679679,0.0984977588082358,96.11639380200644,77.64482,54.58647486710151,81086.11470821672,57005.801064269086,240.73229,148.4523273923976,250765.2053135052,154395.3040983307,267.86237,127.77306756241856,276265.99899745185,130768.1592532077,3672.49394,1647.4841530050626,3799069.447345336,1684436.2618817848,1356.90356,583.4297751296913,1404783.0736455158,597028.1706939415,2219.90884,916.2218926096446,2284289.9035047414,927806.5588240492,0.37954,100000,0,352931,3685.732486737124,0,0.0,0,0.0,20291,211.30790759847943,0,0.0,25046,258.04127156522827,2087264,0,74967,0,0,0,0,0,37,0.3759555536989849,0,0.0,0,0.0,0,0.0,0.07195,0.1895715866575328,0.3146629603891591,0.02264,0.316754617414248,0.683245382585752,25.31020479639765,4.586454140395289,0.3354769560557342,0.2036441586280814,0.2341907824222937,0.2266881028938907,11.36393702873594,5.812773929715369,23.916983147792934,12986.49740948948,63.07310125371581,13.28120105413819,21.12287902284014,14.78311310388867,13.885908072848808,0.5528760271525545,0.7798245614035088,0.7002129925452609,0.5659801678108314,0.1174152876280535,0.7045619116582187,0.9183098591549296,0.8542600896860987,0.7272727272727273,0.104,0.5032013279582642,0.7171974522292993,0.6522346368715084,0.5117227319062182,0.1207065750736015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024720626526042,0.0047052142697791,0.0071261800832402,0.0094597478077974,0.0116779411016733,0.0140139324561046,0.0159280484571615,0.0181123907539001,0.0198770973711925,0.0220570164659621,0.0243559767003035,0.0260800788873595,0.0281372811259027,0.0302034170771418,0.0322214424307476,0.0342930989919875,0.0362013440888051,0.0380465232097279,0.0399675685789424,0.0420086663055706,0.056213203056495,0.0698652494141278,0.0833202244245189,0.0959888098944091,0.10782504139815,0.1231294747194873,0.1367488729779899,0.1489094450890433,0.1620013248146327,0.173112595563085,0.1865609753470689,0.1998917748917749,0.2127347098627096,0.2239725203198669,0.2343488597340847,0.2463904617328,0.2572172029081,0.2670694932037087,0.2767565359477124,0.2859286409713075,0.2938861039397061,0.302412373063784,0.310171758661916,0.3177647439818646,0.3241486557082285,0.3307150696080003,0.3365187114874004,0.3419903499726285,0.3469160427946015,0.3524015680477277,0.3533986602148508,0.3539247689489415,0.354461781329725,0.3550556921741646,0.3558225645753713,0.3560751245688003,0.35613267376966,0.3564359690941969,0.3580576216123792,0.3595778496044572,0.3611027813179399,0.3619433198380566,0.3636915858486416,0.3652490995727165,0.3664621676891615,0.3671573233114104,0.3690272551032044,0.3713422692089862,0.3746316823347832,0.3765718592566147,0.3800645718703105,0.3813052453289578,0.3828355862936183,0.3848831050919271,0.384665670526709,0.3870126792273966,0.3894208846329229,0.3858597962852007,0.390997830802603,0.4013948082138706,0.0,2.1974596050736848,61.142617629535046,213.87317735171115,317.0314037446463,fqhc8_100Compliance_baseline_low_initial_treat_cost,57 -100000,95759,41735,391.9213859793858,7300,75.0738833947723,5733,59.2738019402876,2379,24.519888470013264,77.32840490063373,79.68967380707474,63.31625382636724,65.06521086002624,77.04345481236744,79.40123409751806,63.21330956229331,64.96309888794302,0.2849500882662852,288.439709556684,0.1029442640739262,102.11197208322176,77.7744,54.71877846443308,81218.8932632964,57142.17824375054,241.48942,148.3090681446528,251611.4203364697,154304.2723343527,268.85326,128.41337448685843,276309.45394166606,130739.36981368584,3830.05537,1697.8578240730608,3966392.715045061,1739763.838462243,1394.31783,594.4226538961553,1446504.8716047576,611183.7257032295,2346.564,964.3627588146738,2421078.227633956,982972.2374837692,0.38155,100000,0,353520,3691.767875604382,0,0.0,0,0.0,20347,211.8756461533642,0,0.0,25009,256.748712914713,2086189,0,74919,0,0,0,0,0,44,0.4594868367464155,0,0.0,0,0.0,0,0.0,0.073,0.1913248591272441,0.3258904109589041,0.02379,0.3177740215836692,0.6822259784163308,25.5228623416516,4.58740961685952,0.3223443223443223,0.199023199023199,0.2354788069073783,0.2431536717251003,10.69670578796084,5.277158526187596,25.237974659214764,13050.396826261043,64.22352979913488,13.208279597445042,20.76250606075441,15.083159175092884,15.16958496584254,0.5281702424559568,0.7589833479404031,0.6861471861471862,0.5437037037037037,0.1147776183644189,0.7008733624454149,0.9269662921348316,0.8571428571428571,0.7206896551724138,0.1602787456445993,0.4737325074558385,0.6828025477707006,0.6325515280739161,0.4952830188679245,0.1029810298102981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021685599343351,0.0044828495507008,0.0066908987531982,0.0090245736701965,0.0111900063070944,0.0133841264667535,0.0157346222874857,0.0179176706007269,0.0201189965037109,0.0223043380350891,0.0245707549587412,0.0265724787974618,0.0286202038276823,0.0308283377623962,0.0326924863007337,0.0347721822541966,0.0367268774908131,0.038423645320197,0.0406521806902141,0.0430136643892684,0.0581591967100181,0.0726664226324321,0.0853062679556273,0.0980975404666806,0.1096817018048487,0.1253884038977784,0.1389307149067928,0.1515786785284822,0.1633450817045818,0.175321402914339,0.1891283509429491,0.2022525397872961,0.2145087415820795,0.2256088891805286,0.2369478353715587,0.2479369053025687,0.2587809859705124,0.2684541095427838,0.2777077585130179,0.2869732635029051,0.2948808462865013,0.3025503041647169,0.3095790795177298,0.3169297245393986,0.3235397842662743,0.3310301430034424,0.3362529802986573,0.3422032385566747,0.348282665697448,0.3538323242471512,0.3553650965042516,0.3566632195794553,0.3575887686788508,0.3582843577198112,0.3586924131354669,0.3584444717595722,0.3580527318932656,0.3585229146060006,0.3599945122787762,0.3611340243158914,0.3617597292724196,0.3625708959663665,0.3640753259295026,0.3656723123231052,0.3667326924005991,0.3674463682321817,0.3673410901587665,0.3703107237589996,0.37151909875022,0.3728793261746038,0.3711892337269981,0.3739690310221891,0.3734939759036144,0.3761944805443009,0.3765151515151515,0.3763132760267431,0.3802293151533932,0.3782662795520531,0.3754563324908733,0.3670127795527156,0.0,2.360237911950396,60.60649251737241,211.142358600057,338.94581435771977,fqhc8_100Compliance_baseline_low_initial_treat_cost,58 -100000,95733,41301,388.2151400248608,7166,73.69454629020295,5508,56.98139617477776,2208,22.67765556286756,77.31464774318667,79.68139511162981,63.30648041847581,65.05635518987671,77.02753063214021,79.3942235117415,63.2008125624717,64.95312880100687,0.2871171110464559,287.1715998883104,0.1056678560041035,103.22638886984237,76.82048,53.96215118960763,80244.51338618867,56367.345836448905,236.87843,145.97574264446416,246877.9626670009,151923.5714377113,256.89019,122.1620583903994,265307.1668076839,125123.75241778394,3668.46066,1649.1733843038833,3796530.694744759,1687442.0902996291,1339.76891,578.8438737623552,1383534.444757816,588716.1257958314,2181.73284,915.4173485296802,2242993.534100049,925537.113900943,0.37979,100000,0,349184,3647.477881190394,0,0.0,0,0.0,20000,208.3189704699529,0,0.0,24073,248.4932050599062,2092611,0,75096,0,0,0,0,0,35,0.3551544399527853,0,0.0,0,0.0,0,0.0,0.07166,0.1886832196740303,0.3081216857382082,0.02208,0.3214945867441246,0.6785054132558753,25.63339622640161,4.628489391581132,0.3213507625272331,0.2006172839506173,0.2391067538126361,0.2389251997095134,10.95797799802544,5.416762383690736,23.55114796462074,12971.40557768356,61.99768815812389,12.8587749943171,20.053257373009234,14.696480053275344,14.38917573752222,0.5406681190994916,0.755656108597285,0.7011299435028249,0.5823842065299925,0.1025835866261398,0.6806784660766961,0.8832807570977917,0.8741721854304636,0.7157190635451505,0.1149825783972125,0.4949421965317919,0.7043147208121827,0.6416097190584662,0.5432220039292731,0.0991253644314868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779871346806,0.0042582960732426,0.0064759739336973,0.0085865257595772,0.0107329976092375,0.0130608419250988,0.0153028432682792,0.0175716240223805,0.0197084619630773,0.0220302198927152,0.024125167891893,0.0260288319369147,0.028081219527248,0.0303239500473972,0.0323496320151942,0.0344150272404916,0.0362427643909662,0.0382791503668115,0.0403331461725622,0.0424215274666888,0.0567452155482934,0.0709964412811387,0.0840799882493652,0.0976104835825918,0.1097073556551542,0.1246006389776357,0.138196021822659,0.1502693839306629,0.161738925944929,0.1735738507103918,0.1866945615718923,0.1990118213043525,0.2112700609045248,0.2233316162690019,0.2339111640421684,0.2445863409217101,0.2556024210962061,0.2660152988695083,0.2756278233560529,0.284330510519482,0.2927267875581544,0.3010646780169785,0.3084798443542838,0.3156940006246846,0.3230325454589713,0.3291601847050399,0.3359473849044785,0.341593235878368,0.3468348855584772,0.352105798038724,0.3535182041124316,0.3546703750619596,0.3556435253014764,0.3565965444950481,0.3584995534385233,0.3581588032220943,0.3583974613248711,0.3594835819912393,0.3595892759188151,0.3604611611378649,0.3617705102903862,0.364420218037661,0.3643841940696283,0.3655612816491149,0.3663113212097824,0.3665437619309118,0.367853661333792,0.3692725778929406,0.3696104353957342,0.3713053203387123,0.3739669421487603,0.3753949975898452,0.3753193663771078,0.3770010053360142,0.3781769539461112,0.3789245759653554,0.3790788446526151,0.3812212463404433,0.3885296598256958,0.3917322834645669,0.0,2.034660752164956,60.1014075035223,206.00250725891124,318.17483630114083,fqhc8_100Compliance_baseline_low_initial_treat_cost,59 -100000,95808,41469,389.0593687374749,7374,75.60955243820975,5778,59.660988643954575,2339,24.0063460253841,77.3504688262772,79.68282614533227,63.33176974345843,65.0600674581654,77.05802118669116,79.38892681416908,63.22461606185365,64.95437596443816,0.2924476395860296,293.899331163189,0.1071536816047782,105.69149372724952,77.6468,54.61416000984644,81044.1716766867,57003.75752530732,242.0089,149.0643602252342,251901.74098196396,154890.48954704637,272.92112,130.89771559021744,280000.4488142953,132896.62796432426,3820.28276,1722.3783979295524,3950426.3213927858,1760729.8846960068,1415.72489,613.1865022605973,1462928.7324649298,625278.0992825205,2306.59146,966.1006229652636,2371744.57247829,980713.3501840323,0.37961,100000,0,352940,3683.825985303941,0,0.0,0,0.0,20402,212.2891616566466,0,0.0,25526,261.752672010688,2085035,0,74994,0,0,0,0,0,53,0.52187708750835,0,0.0,0,0.0,0,0.0,0.07374,0.194251995469034,0.317195551939246,0.02339,0.3266968325791855,0.6733031674208145,25.09206635997544,4.583406928139189,0.3307372793354102,0.2026652821045344,0.231914157147802,0.2346832814122533,11.106911630407415,5.522276625547059,25.060336559442003,13012.149489127958,65.21519643230698,13.752488520531893,21.65172383771877,14.83479562662554,14.976188447430768,0.5484596746278989,0.7754056362083689,0.7080062794348508,0.5604477611940298,0.1157817109144542,0.7172218284904324,0.9277777777777778,0.8763102725366876,0.735593220338983,0.1541218637992831,0.4939317609342798,0.7077681874229347,0.6520223152022315,0.5110047846889952,0.1058495821727019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259051401017,0.0047859018687324,0.0069623464934537,0.0091442040986354,0.0113310413572838,0.0131796052229532,0.0153383305287848,0.0175945592680336,0.0199480593840742,0.0219683475625985,0.02430195953775,0.026605740103712,0.0285681965426106,0.0305358448593703,0.0325691243051473,0.034654488345181,0.0368303918016665,0.0391017995125239,0.0409548156461736,0.0429722470904207,0.0575613114548887,0.071826612439491,0.0849759502027728,0.0976675772221054,0.1101628842952567,0.1253593168752113,0.1385266238310325,0.1512972438222685,0.1632254345133877,0.1746147416250509,0.1884934514264805,0.2010011676685551,0.213941158576333,0.2252161651053224,0.236143199771162,0.2470247988830529,0.2580619956020404,0.2671288376699379,0.2771973654326595,0.2859155897717899,0.2935592906422188,0.3018660427025446,0.3087603423173893,0.3157787474824973,0.322404105757303,0.3292845504369723,0.3352517805196108,0.3416400969264124,0.3473391900133656,0.352000317510716,0.3529475348259042,0.3528168430359462,0.3542205817883557,0.354590689510104,0.3564303287855066,0.356699446834665,0.3564922988889418,0.3576868550328047,0.3587012452403005,0.3606233971197475,0.3619457711255688,0.3632973659155823,0.3640187603844617,0.3652420115949845,0.366799758015729,0.3683782649742998,0.3707456705309861,0.3715225088517956,0.3732084375110047,0.3745306383318686,0.3762634347130116,0.3788015978695073,0.3804745677142496,0.3774834437086092,0.3802923149457803,0.3838228327806726,0.3868199233716475,0.3926045665791069,0.3986928104575163,0.3948678667177326,0.0,2.485175779092083,62.02664924557234,222.07978428545425,330.7715034942397,fqhc8_100Compliance_baseline_low_initial_treat_cost,60 -100000,95726,41259,387.0735223450265,7246,74.62967218937384,5611,58.12422957190314,2275,23.45235359254539,77.30949638025908,79.67190954067567,63.31695901961641,65.06064987664439,77.03367882812229,79.39454835335596,63.21624250597644,64.96192256111514,0.275817552136786,277.3611873197126,0.1007165136399734,98.72731552924564,77.09042,54.19765863011986,80532.37364979212,56617.49015953854,238.6412,147.0968979304471,248793.9744687964,153162.3779646565,263.50617,126.17712824376908,272837.2333535299,129816.21019106868,3707.22891,1668.4775644578149,3841437.4569082586,1711659.3970894148,1353.57843,596.9448037763406,1399105.3632242023,608708.4033811723,2238.73458,926.2637089991769,2308817.520840733,939670.1176833916,0.37935,100000,0,350411,3660.562438626914,0,0.0,0,0.0,20089,209.32661972713788,0,0.0,24625,254.76881933852871,2090205,0,75077,0,0,0,0,0,52,0.5432170988028331,0,0.0,0,0.0,0,0.0,0.07246,0.1910109397653881,0.3139663262489649,0.02275,0.3127850905773491,0.6872149094226508,25.538964057892088,4.585570613968933,0.3405810016039922,0.1985385849224737,0.228301550525753,0.2325788629477811,11.16061960493309,5.5588645193927615,24.12098136767689,12962.569877476062,63.23731940209473,13.041287699574523,21.62343421825645,14.181735774342556,14.390861709921197,0.5421493494920692,0.7800718132854578,0.6692830978545264,0.5722092115534738,0.1233716475095785,0.7146912704045423,0.927170868347339,0.8185567010309278,0.7424749163879598,0.2126865671641791,0.4842931937172774,0.7107001321003963,0.6185133239831697,0.5203665987780041,0.1002892960462873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293262170729,0.0046326332008758,0.0066755945134323,0.0090294141545461,0.0114878259543536,0.0136696285891681,0.0155939458798348,0.017567139955291,0.0197559380237929,0.0219013212432581,0.0237394807244846,0.0259358892744932,0.0282365038560411,0.0302771284100388,0.0322494147252044,0.0343854936198791,0.0365969778513765,0.0386322623467673,0.0408772020994647,0.0430212814716819,0.0574647828493259,0.0705658244541667,0.084139204128296,0.0965024817027004,0.1090418239723282,0.1240150193029774,0.137149830220713,0.149197325838869,0.1615853007157354,0.1730841402086617,0.1867109061920972,0.1995344808920645,0.2122125608070607,0.2236158080791498,0.2345732029598308,0.2453631334464141,0.2564792886187944,0.266803361798968,0.2759137854635111,0.2843271005537276,0.2928337366696386,0.3003592702250413,0.3084903537548705,0.3153562815698225,0.3223406712290468,0.3286324153587997,0.3346980680864916,0.3407130937671171,0.3469340112056443,0.3517668382129202,0.3531159273512929,0.354540563656178,0.3555586947308942,0.3562625809161079,0.3571556323963394,0.3569891812146545,0.3569145129224652,0.3581840968305794,0.3596352646220421,0.3607679046045542,0.3624204061640481,0.3638155536972882,0.3636939046775112,0.36430774773152,0.3645345308896711,0.3659856084878407,0.3666916253887801,0.3669181034482758,0.3677209368145475,0.3698384201077199,0.3699289479715792,0.3734068758701938,0.371896628357356,0.372669850562317,0.3718180951472972,0.3759290338048429,0.3810261974887614,0.3797101449275362,0.381282976950847,0.3883720930232558,0.0,1.8195546384155143,62.59639581204455,202.29563350392712,331.0209707438852,fqhc8_100Compliance_baseline_low_initial_treat_cost,61 -100000,95730,41327,386.9111041470803,7214,73.99979107907657,5578,57.64128277446986,2308,23.712524809359657,77.40440741590693,79.76183170883266,63.3594678928421,65.09931080921139,77.12623506508578,79.48403388979106,63.25740319690161,65.0002286214105,0.2781723508211513,277.79781904159506,0.1020646959404842,99.08218780088872,76.13518,53.53468831321472,79531.16055572966,55922.582589799145,236.2956,145.5459020364367,246243.95696228975,151446.4034643651,262.05816,125.2998582579809,269737.21926250914,127797.92231462256,3678.09276,1655.092712806303,3804561.704794735,1691326.5149966609,1359.77073,589.5986184341868,1407064.661025802,602546.3537209305,2280.51744,945.003108907809,2345339.9770186986,955725.3173873018,0.38013,100000,0,346069,3615.052752533166,0,0.0,0,0.0,19953,207.79275044395692,0,0.0,24488,251.80194296458788,2101480,0,75295,0,0,0,0,0,40,0.4178418468609631,0,0.0,0,0.0,0,0.0,0.07214,0.1897771814905427,0.3199334627113945,0.02308,0.3166973926784303,0.6833026073215697,25.37897143745691,4.554167251400883,0.3363212621011115,0.2016851918250269,0.2214055216923628,0.2405880243814987,10.880352858707004,5.330333333637722,24.370681698464875,13050.735504808692,62.77375883313626,13.088606902474403,21.31990288634093,13.617438325287123,14.747810719033808,0.5410541412692721,0.7395555555555555,0.7009594882729211,0.5797570850202429,0.1154992548435171,0.7122198120028923,0.9072463768115944,0.8663967611336032,0.7419354838709677,0.1396226415094339,0.4846245530393325,0.6653846153846154,0.6418234442836469,0.5324267782426778,0.1095636025998143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025210849777759,0.0049252596909044,0.0069693834073893,0.0092012390189407,0.0114485577460779,0.013711319218241,0.0159388535031847,0.0181116904584553,0.020179418015367,0.0220516756203632,0.0240747763167334,0.0264694713290158,0.028682752310555,0.030775886042703,0.0328019398441933,0.0349304801778053,0.0370542972835824,0.0392954210668271,0.0415610060278528,0.0438301373858156,0.0577720234304031,0.0720437872175651,0.0859636424667736,0.0986710684021279,0.1106766029661329,0.1258168206906761,0.1386985211431966,0.1512599674228955,0.1629969124921209,0.1748506718426612,0.1889397447633407,0.202720249302084,0.2149903740523608,0.22633627854081,0.2371316652362404,0.2479235420496578,0.2578751799323789,0.2673549025561441,0.2774418947583343,0.2865270797797442,0.2946738175597577,0.3027093308419946,0.3105664166322131,0.3181377999354399,0.3252972619177484,0.3315420560747663,0.3376613638919783,0.3434896362527941,0.3486791087215013,0.3541123488978431,0.3547667669819432,0.3562313704482081,0.3565290767175304,0.3566470902295782,0.3572805742591878,0.357469523853225,0.356723480352593,0.3571522309711286,0.3585388751386874,0.359803834150691,0.3609559512652296,0.3615393761642424,0.3630638762358572,0.3635976797832075,0.36431289436925,0.3657982073326887,0.3663380442215637,0.3697711749708854,0.3717795297761509,0.3717540226222718,0.3731452312468611,0.3743195645212936,0.3727709624383458,0.3726328649969456,0.3721914073516969,0.3731643770724775,0.3726669751658183,0.3707247557003257,0.3711079943899018,0.3699560527367159,0.0,2.485735407697617,60.804972331711824,208.40693841141868,320.5835154859114,fqhc8_100Compliance_baseline_low_initial_treat_cost,62 -100000,95753,41353,389.2201810909319,7231,74.36842709888985,5586,57.79453385272524,2283,23.51884536254739,77.33232137485312,79.69756893357882,63.31916690730778,65.07089015896955,77.05617208181305,79.42115479042343,63.21766063516589,64.97211683436629,0.2761492930400777,276.4141431553924,0.10150627214189,98.7733246032576,76.49576,53.82962892680869,79888.63012124946,56217.17223147962,238.20366,147.16210423786018,248247.6475932869,153168.06182350442,266.05087,127.03159692190567,274455.4008751684,130041.79753960184,3741.37867,1673.1384604168093,3873897.622006621,1713923.303099443,1353.29937,591.262660560422,1398600.97333765,602765.1149942261,2259.59844,935.4327715025174,2328975.050390066,948014.3255845197,0.37828,100000,0,347708,3631.301369147703,0,0.0,0,0.0,20063,208.98561924952745,0,0.0,24823,255.85621338234836,2094843,0,75131,0,0,0,0,0,42,0.4386285547189122,0,0.0,0,0.0,0,0.0,0.07231,0.1911547002220577,0.3157239662563961,0.02283,0.3183915622940013,0.6816084377059987,25.231021472677803,4.510573848387064,0.3288578589330469,0.1944146079484425,0.2316505549588256,0.2450769781596849,10.677170351825428,5.169059588394141,24.117130011698578,12916.959380135826,62.84202008227751,12.858426124077772,20.70066037312393,14.26652972982757,15.01640385524822,0.5392051557465092,0.7762430939226519,0.6962438758845945,0.5656877897990726,0.1154127100073046,0.7022222222222222,0.9147727272727272,0.8736383442265795,0.7084870848708487,0.1231343283582089,0.4872521246458923,0.7098092643051771,0.637155297532656,0.5278592375366569,0.1135331516802906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021383112408285,0.0042905395125216,0.00652871415807,0.0086694040165867,0.0110380890371937,0.013396359042797,0.0154911479154768,0.017805184330621,0.0197537933008874,0.0220006347321328,0.024244971603141,0.0263333504440223,0.0285247149070941,0.0302905461773763,0.0320869959968635,0.0341798187136316,0.0362405127514832,0.0382508558979147,0.0398237445959428,0.0417343665375161,0.0563524376239691,0.0702402377265307,0.0842012523205689,0.0966005278487534,0.1079596377094294,0.1234993600795405,0.1372698816913364,0.1503187967683907,0.16247997436719,0.1731134250571039,0.1872306963116166,0.2003311795837527,0.2133104131080478,0.2246250779378466,0.2357615310962658,0.2467520960471375,0.2567525335952498,0.2662239729881823,0.2753771239827017,0.2837929177788725,0.2921272876705986,0.2998443552445261,0.3075921498070595,0.3139812272983373,0.320504877485817,0.3265535051711598,0.3323820610065963,0.3384010584972393,0.3446292554018343,0.3502362537285853,0.3520451453891635,0.3521247005039795,0.3533491204330176,0.3539004221361244,0.3542456829235643,0.3544950021463175,0.3547106913247083,0.3553732594650577,0.3565947119246612,0.357724304499508,0.3582943024283806,0.3592797728942092,0.3607581622349377,0.3617953789445293,0.3618199850027817,0.3626336197862083,0.3629599954215075,0.3643737524159564,0.3644400438487924,0.3667710340398201,0.3701441822022224,0.373270152388132,0.3750479355745877,0.3755010792476102,0.3772245361605452,0.3758014723343624,0.3769817073170731,0.3791641429436705,0.3867509620670698,0.3811728395061728,0.0,2.1574630734643923,59.50816090588411,214.08091192562728,320.9206733819667,fqhc8_100Compliance_baseline_low_initial_treat_cost,63 -100000,95723,41462,389.13322816877866,7274,74.71558559593828,5622,58.12605121026294,2309,23.74559928125947,77.41699606751023,79.77155985420032,63.36600846061516,65.10116910674795,77.13161859758355,79.48634951829376,63.26136827768829,64.99954673210989,0.2853774699266722,285.2103359065552,0.1046401829268788,101.62237463805468,76.89396,54.0296303427919,80329.65953845993,56443.72861568473,235.47235,144.6867083569114,245393.4895479665,150551.4540464793,260.72632,125.06649022494348,268461.7803453716,127638.84546583984,3777.98642,1696.4188032221036,3908176.728685896,1733602.5753707073,1405.5485,609.1363271931671,1451650.3452670728,619653.6748672379,2293.56882,955.0331099323184,2360033.2835368724,965457.5593531488,0.38144,100000,0,349518,3651.348160839088,0,0.0,0,0.0,19865,206.9199669880802,0,0.0,24351,250.6712075467756,2097493,0,75239,0,0,0,0,0,47,0.4701064529945781,0,0.0,0,0.0,0,0.0,0.07274,0.1906984060402684,0.3174319494088534,0.02309,0.3174686192468619,0.6825313807531381,25.30499274199555,4.586435919767544,0.3299537531127712,0.1931696905016008,0.2248310209889719,0.252045535396656,10.944648316465646,5.337992525875201,24.47788430485736,13067.378126186835,63.01342925251533,12.666177898127469,20.878934971492782,13.94942650896982,15.518889873925232,0.5423336890786197,0.7679558011049724,0.6975741239892184,0.5957278481012658,0.1185603387438249,0.7116077865897621,0.9287749287749288,0.8577494692144374,0.7446808510638298,0.166077738515901,0.4868949232585596,0.691156462585034,0.6430635838150289,0.5529531568228105,0.1067019400352733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0047817321622141,0.0070898247322297,0.0094030199331837,0.0114893443956401,0.0136607015615138,0.0158091083295959,0.017993468054705,0.0201729106628242,0.0222822417285617,0.0246446760326682,0.0267044346603446,0.028526491087399,0.0306784478497281,0.0327638854501939,0.0350200985812158,0.0369296710805578,0.038769498838367,0.0411682170139791,0.0428903311837814,0.057556961760959,0.0717821005158684,0.0855419158535305,0.0978985674919539,0.1100821634620455,0.125244577000772,0.1383838598128858,0.1512964618725252,0.1632070936381603,0.1745699824132458,0.1880195546366886,0.2004695800828798,0.2131623281343405,0.2247116140872148,0.2354906054279749,0.2473306261548845,0.258701032306972,0.2688607139645715,0.2783743635683264,0.2871809545610621,0.2957365371940008,0.3034946236559139,0.3111631371714377,0.3185780310831198,0.3252090742471506,0.3311941070680693,0.3376063031515758,0.3434662053878049,0.3489859049196878,0.3545011940731749,0.3559723699624328,0.3569610150132793,0.3576403575557623,0.3584760856658799,0.35964337808472,0.359323489274269,0.3597847590409116,0.3606396063960639,0.3620554304048058,0.3629880549117489,0.3629047351675089,0.3635717809570794,0.3636420787929589,0.3646068293990218,0.3647517321016166,0.3656486557034716,0.3678026522173107,0.3696882071913502,0.3717093717093717,0.3728927848954821,0.3743125937372176,0.3780118078825594,0.3794710327455919,0.3807919123841617,0.3835577738016762,0.3862991008045433,0.3873929008567931,0.3855786709755605,0.3878440992095939,0.3880484114977307,0.0,2.385612406540705,60.851288251158046,209.05702532002212,323.36696900012066,fqhc8_100Compliance_baseline_low_initial_treat_cost,64 -100000,95703,41248,387.1665465032444,7195,74.05201508834624,5632,58.34717824937567,2288,23.541581768596597,77.3508434030137,79.74123283837878,63.31502979323547,65.08257931835853,77.06863041923707,79.45817337739436,63.21144426490456,64.98144016809185,0.2822129837766312,283.0594609844184,0.1035855283309103,101.1391502666754,76.80706,54.008967303309085,80255.64506859765,56433.93342247274,236.32803,145.1522475269627,246451.2815690208,151181.76810231936,260.5845,124.2967479333862,269455.05365558027,127631.87243544115,3724.95587,1660.343771740791,3861454.510307932,1704142.7246176093,1381.73907,595.4910928003163,1432036.017679697,610486.0378465839,2255.977,937.4553467271744,2323888.174874351,950291.984990864,0.37893,100000,0,349123,3647.983866754438,0,0.0,0,0.0,19951,207.95586345255637,0,0.0,24334,251.38187935592404,2094592,0,75102,0,0,0,0,0,41,0.4284087228195563,0,0.0,1,0.0104489932395013,0,0.0,0.07195,0.1898767582403082,0.3179986101459346,0.02288,0.3194499537220679,0.680550046277932,25.413967115038197,4.611140705189874,0.3252840909090909,0.2072088068181818,0.2297585227272727,0.2377485795454545,11.206256133407512,5.482409351539856,24.277184353966728,12997.491026661628,62.99686860659592,13.47636576418576,20.52904213227273,14.312883667712978,14.67857704242444,0.5413707386363636,0.7429305912596401,0.6921397379912664,0.5772797527047914,0.1247199402539208,0.7022222222222222,0.912536443148688,0.8741573033707866,0.712280701754386,0.1552346570397112,0.4906585707613264,0.6723300970873787,0.6337418889689979,0.5391476709613479,0.1167608286252354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0045025402845524,0.0067201981544833,0.0090454508496625,0.011404097743596,0.0136101546423259,0.0159136582031847,0.0177911228220683,0.0203004673709616,0.0224903217877552,0.0245205619936416,0.0266225696120623,0.0289135063412225,0.0307338835141511,0.0329115752972258,0.0349312023818138,0.0370481646861369,0.0390376052230053,0.0410976002995724,0.0429665919633084,0.0576346601769356,0.0719842524631702,0.0847800986669465,0.0968417287379539,0.1085195265523134,0.1236682571758059,0.1370540595047287,0.1495554017357968,0.1612758406909378,0.1728515625,0.1867366628219086,0.2002122084840085,0.2123929438138664,0.2243285248341834,0.235576499603629,0.2461132426977755,0.2564068205420254,0.2670149993243547,0.2763349238809361,0.2853669445941761,0.2938042231823289,0.3022152454810632,0.3097831885157481,0.3165520304416195,0.3231111705815806,0.3297975998125239,0.3357706272693126,0.3413662287401975,0.3471076520635578,0.3526940808158197,0.3539067452556615,0.3547311724270935,0.3565076456909308,0.3570798698951933,0.3579192777167295,0.3581305606174295,0.3581023285284334,0.3589061345158906,0.3604311008468052,0.3616751269035533,0.3623226484498161,0.3622414679479575,0.3632916430980663,0.3638010871753573,0.3646515209857527,0.3659784396126438,0.3660958124715521,0.367418058520658,0.3677887141406004,0.3691158452235089,0.3721572891184199,0.3710207979626485,0.3752752437873545,0.3727363032016504,0.3756032932715056,0.3776633947809432,0.3851122731467241,0.3858204458726652,0.3870791130577607,0.3879377431906615,0.0,1.9910015120490656,59.74127175216008,209.55464775735243,329.2721023195085,fqhc8_100Compliance_baseline_low_initial_treat_cost,65 -100000,95717,41621,391.45606318626784,7150,73.24717657260466,5588,57.72224369756679,2266,23.26650438271153,77.26691653433518,79.62634942948507,63.2951211478972,65.03887262662154,76.98372776586336,79.34256510547227,63.19092113241116,64.93696447883502,0.2831887684718168,283.7843240127995,0.104200015486036,101.90814778651712,76.38092,53.77271666060567,79798.69824587063,56178.85711065502,237.90636,147.05246178106776,247901.3550362005,152982.0635634921,265.79914,127.4276059041708,272791.3327831002,129502.38464485298,3703.07119,1664.317589413422,3829339.1769487136,1699358.5041459932,1328.54325,577.3336240962733,1371981.2572479288,587157.6356303197,2238.401,931.8712289882436,2301303.2585643097,943283.801656076,0.38088,100000,0,347186,3627.213556630484,0,0.0,0,0.0,20125,209.57614634808863,0,0.0,24828,254.6256150944973,2089933,0,75053,0,0,0,0,0,35,0.3552138073696417,0,0.0,0,0.0,0,0.0,0.0715,0.1877231674018063,0.3169230769230769,0.02266,0.3081410766374967,0.6918589233625033,25.27769320175554,4.558577845763531,0.3400143163922691,0.193092340730136,0.2285254115962777,0.2383679312813171,11.098180043788297,5.534751733641736,24.245409566847,13047.300713466784,63.09557997402612,12.587337166277196,21.60012732403062,14.366030196866417,14.542085286851872,0.5431281317108089,0.7775718257645968,0.6915789473684211,0.586530931871574,0.0998498498498498,0.6931486880466472,0.9154078549848944,0.8382352941176471,0.7114093959731543,0.1385767790262172,0.4943074003795066,0.7165775401069518,0.6425561797752809,0.5485188968335035,0.0901408450704225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0046436646422451,0.0071335795754353,0.0094168080373015,0.011665276732502,0.013633633022105,0.0160864468117641,0.0180479986933575,0.0203326416078018,0.0225904847690795,0.0246840179184648,0.0267756308905361,0.0288244004771502,0.0306632195865563,0.0324161482352698,0.0346595548939953,0.036720618844947,0.0387081379424824,0.040684379027899,0.0425006512112529,0.0577547589461923,0.0708625977370024,0.0840075979389016,0.0967497553635875,0.1090302908810837,0.12475526251733,0.1382264880130805,0.1511471847638525,0.1624497390709214,0.1737034770753491,0.1878840804709231,0.2020068484244289,0.214845791949817,0.2262586658197071,0.2373516414489272,0.2476327912527058,0.2582142297971325,0.2683899756603263,0.2783635165534323,0.2862253204613726,0.2938888438697429,0.3017025362403691,0.3092888536125952,0.3166306695464362,0.3242112432800603,0.3308319859792898,0.3364353529906062,0.3420733806894265,0.3472987012987013,0.3525452473699552,0.3545021516143874,0.355301929860967,0.3556638246041413,0.3574580502816001,0.3583435344698892,0.3585172870293402,0.3590858416945373,0.3598572467120481,0.3604361209995013,0.361705949985628,0.3630793016327915,0.3645120203789205,0.3653996492636649,0.3668573745382467,0.3682333244364642,0.3690920561484674,0.371285418106427,0.3731770999172132,0.3760824447148071,0.3779610743163626,0.378275413491916,0.380037971250339,0.3832254757480617,0.3870593692022263,0.3865866438029913,0.3854628188240929,0.3829853054911059,0.3923973022685469,0.3915094339622642,0.3956301209520094,0.0,2.605093087809192,60.22764912691812,212.77925941231933,321.02730906134843,fqhc8_100Compliance_baseline_low_initial_treat_cost,66 -100000,95706,41595,390.529329404635,7234,74.45719181660502,5671,58.71105259858316,2265,23.363216517250745,77.288290147924,79.65691524706287,63.294707477804174,65.04360949157179,77.01208808201963,79.37725788198186,63.194243327455325,64.94351898498651,0.2762020659043713,279.65736508100747,0.1004641503488485,100.09050658527484,76.59498,53.89967279672426,80031.30420245334,56317.75647155277,239.60408,147.50854384384508,249828.6523310973,153601.9374606452,268.9315,128.7438919855982,276768.938206591,131344.44663821845,3699.25097,1655.745402014834,3834038.189873153,1698936.8923779116,1359.06379,586.0677348669706,1406983.3343782,599346.5360087481,2222.46826,915.0179617606848,2294862.09851002,934296.232227014,0.38228,100000,0,348159,3637.78655465697,0,0.0,0,0.0,20148,209.95548868409503,0,0.0,25198,259.0851148308361,2087753,0,75045,0,0,0,0,0,46,0.4806386224479134,0,0.0,0,0.0,0,0.0,0.07234,0.1892330229151407,0.3131047829693116,0.02265,0.3203360903242746,0.6796639096757253,25.361103696701765,4.458280632114258,0.3343325692117792,0.2084288485275965,0.2288837947451948,0.2283547875154293,11.247969854243152,5.822304089461512,23.924543769615976,13071.848658511972,63.848325603870286,13.993202326645712,21.54123122905073,14.235813004800608,14.078079043373233,0.5570446129430435,0.7834179357021996,0.6930379746835443,0.5947611710323575,0.1135135135135135,0.7195467422096318,0.9069212410501192,0.822680412371134,0.7689393939393939,0.1393442622950819,0.5031697581591923,0.7155963302752294,0.6484762579730687,0.5502901353965184,0.1075166508087535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021875854525567,0.0040652467026895,0.006504444534643,0.0087263048822609,0.0109327963550565,0.0130945229052327,0.0154360637018005,0.0177206145051804,0.0196669699168958,0.0216855139947807,0.0241252792752167,0.0262158444704481,0.028520902305114,0.0306790797305925,0.0327485018205072,0.0350443868007399,0.0372943478666017,0.039413876839418,0.0413225719218688,0.0432091045522761,0.0576483243344856,0.0708557549362423,0.083965620375909,0.0967463591211381,0.1092146928435718,0.1254525820999809,0.1392575760793391,0.1517408165004687,0.1645549318364073,0.1759457108803728,0.1890758114957403,0.2022447564569249,0.2146552381367285,0.2263609687732667,0.2376053312771933,0.2489846645509221,0.260008051169656,0.2698917456021651,0.2787834655076289,0.2875670583910581,0.2961037755551945,0.3037440180163273,0.3111641210049726,0.3182544737822539,0.325544848758025,0.3317922219200435,0.3376341114098344,0.3432134696638966,0.3491077346989173,0.3546938937666362,0.3549014312719417,0.3558959202276054,0.3568456508817119,0.3577255835559168,0.3576516973073074,0.3576525590551181,0.3580602091744286,0.3588780117999934,0.3605403642480732,0.3612685656884551,0.3620494859337927,0.3633350533878458,0.365081704851752,0.3670216343459253,0.3683615003129664,0.3702264190317195,0.3707216730472544,0.3711542106260661,0.3737901801483574,0.3752499800015998,0.3744537969734602,0.3739737053930775,0.3767427122940431,0.3785566377789708,0.3803715518859073,0.3811213626685593,0.3799939005794449,0.3843654822335025,0.3769819573537452,0.3786259541984733,0.0,2.073812007469635,62.40801221412198,211.05072003149505,327.0399943536841,fqhc8_100Compliance_baseline_low_initial_treat_cost,67 -100000,95811,41415,387.55466491321454,7247,74.02072830885805,5676,58.46927805784304,2270,23.12886829278475,77.36488025655099,79.68024946060615,63.35773544642036,65.07147324641488,77.07672513695921,79.3974352974119,63.24926171682429,64.96891365939285,0.288155119591778,282.8141631942458,0.1084737295960636,102.5595870220286,77.17996,54.30375681127117,80554.15348968282,56677.78210567801,237.66688,146.60122547564472,247257.65308785,152211.34128090172,269.00395,129.67724189775134,276357.87122564216,131862.27742294504,3740.67599,1702.9483390015346,3856547.44236048,1729787.7031056287,1347.47862,596.8284585450767,1387484.9025685985,604022.7671491362,2236.96392,951.8207949051476,2282741.000511423,948422.2607992066,0.37937,100000,0,350818,3661.5524313492174,0,0.0,0,0.0,20078,208.75473588627608,0,0.0,25199,258.6654976985941,2092712,0,75160,0,0,0,0,0,37,0.3757397376084165,0,0.0,0,0.0,0,0.0,0.07247,0.1910272293539288,0.3132330619566717,0.0227,0.3115703567197578,0.6884296432802423,25.248536222395018,4.48638075781307,0.3350951374207188,0.200845665961945,0.2267441860465116,0.2373150105708245,11.121692358548264,5.729213022691887,24.461233082586187,13016.272860291589,64.31237739887109,13.377085608070962,21.62792503537546,14.51005349229148,14.797313263133198,0.5528541226215645,0.7771929824561403,0.695583596214511,0.5951825951825952,0.1210096510764662,0.717983651226158,0.9085872576177284,0.8805668016194332,0.7507598784194529,0.1549295774647887,0.4952471482889733,0.7163029525032092,0.6306818181818182,0.5417536534446764,0.1119473189087488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022181707687632,0.004511537369723,0.006554915171686,0.00920245398773,0.0115211356402721,0.0136439538956543,0.0158514954433321,0.0180084529473017,0.0204448806018972,0.0226009519422693,0.0247714508260566,0.026949364750313,0.0290964777947932,0.0312069001008666,0.0333773141467035,0.0354713163409623,0.0373822108671142,0.0394976790450928,0.0417843495597275,0.0437415461450421,0.0583504573949869,0.071896722939424,0.085074282840559,0.0980202699154545,0.1103831813106949,0.1259214667427075,0.1393227235160736,0.1518660287081339,0.1642641457090726,0.1755385818505147,0.1885121539173383,0.20148575877506,0.2138750937286054,0.2259741962266624,0.2370477855093493,0.2486144451696406,0.2583301758530769,0.2678679758240276,0.2776884034984366,0.2865133836650652,0.2946947548447485,0.302536126070348,0.3101797115157247,0.3168571599545209,0.3230728116420884,0.3284661639311942,0.3347305464145844,0.3404347328389911,0.3453587562942539,0.3504846047339618,0.3515638674583619,0.3532562302079031,0.3538950042337002,0.3542752867570385,0.3548863212821468,0.35528540251437,0.3549038629749201,0.3555808618441682,0.3573981783811651,0.35861697350696,0.3601103323194347,0.3611986123848638,0.3614343336219458,0.3630525888873868,0.3647175421209118,0.3648595483515618,0.3665970294479581,0.3678833502024291,0.3686590363148226,0.3715750680980612,0.3711772291820192,0.3713148267699591,0.3731104278759928,0.3751161350263239,0.3749880394220649,0.3778177458033573,0.3854021385402139,0.3823529411764705,0.3867036011080332,0.3872340425531915,0.0,2.994935548309563,63.900733984394655,212.07574617742048,321.15885422542743,fqhc8_100Compliance_baseline_low_initial_treat_cost,68 -100000,95636,41435,390.6687858128738,7065,72.6713789786273,5503,56.94508344138191,2275,23.39077334894809,77.2563444549925,79.6670757503273,63.27473565930678,65.05598469178292,76.9782582876035,79.38855526478953,63.172349968538455,64.95601406591707,0.2780861673890058,278.52048553776854,0.1023856907683224,99.9706258658506,76.9824,54.22263067635444,80495.21100840687,56696.88263452512,239.02216,147.43632273674413,249320.015475344,153568.65980513356,262.04313,125.0937516528526,270169.2563469823,127856.41925227668,3647.5146,1628.0894949356396,3778734.712869631,1668053.4456214434,1342.54705,577.8576006247706,1390146.7125350286,591145.9145043419,2240.08928,925.7039981666718,2306442.9294407964,937922.3529348448,0.37905,100000,0,349920,3658.873227654858,0,0.0,0,0.0,20169,210.25555230248025,0,0.0,24452,251.8925927475009,2085537,0,74967,0,0,0,0,0,46,0.4809904220168138,0,0.0,0,0.0,0,0.0,0.07065,0.186387020182034,0.3220099079971691,0.02275,0.3232186399349769,0.676781360065023,25.4826907524821,4.46635298026974,0.3372705796838088,0.2002544066872615,0.2247864801017626,0.237688533527167,10.90137760730624,5.452277735197711,24.19054066373536,12960.774196233751,61.93137292756242,12.779667638634557,20.940362873440016,13.908408426745936,14.302933988741898,0.5460657823005634,0.7622504537205081,0.6950431034482759,0.5804365400161682,0.1200305810397553,0.7004504504504504,0.9164086687306502,0.8493449781659389,0.7054794520547946,0.1621621621621621,0.4967633660992567,0.6983311938382541,0.6444921316165951,0.5417989417989418,0.109628217349857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281865599837,0.0045609803067005,0.0069515623255766,0.0093058222344132,0.0112320683691118,0.0134470217902875,0.0154643381752897,0.0175221709101311,0.019638729210564,0.0218513737783514,0.0238571648453132,0.0258462993032289,0.0277657668787448,0.0298796770767819,0.0318378562647851,0.0336924016183942,0.0357135452302461,0.0378134674118551,0.0398967720452038,0.0416614511620144,0.0557674822068706,0.0693513241702983,0.0829877696708834,0.095964380447139,0.1077168212563445,0.1235965756976116,0.1371943453897096,0.1506596952303875,0.1626855622174484,0.173361091139322,0.1875761398061601,0.2011353541481594,0.2133358021195255,0.2252649111848954,0.2359551800957275,0.2470249988899249,0.2573493221173207,0.2663029387561858,0.2760243758242757,0.285114293583035,0.2934912478105026,0.3007330948331476,0.3090389043176909,0.3160006246021164,0.3223240174459686,0.3292624136268681,0.3355839461860897,0.3416190281747652,0.3465554862842893,0.3513978380809991,0.3525628032053621,0.3538151111848197,0.3544933078393881,0.3554075861768169,0.3564654140737194,0.3559029117224991,0.3559135672626446,0.3573977990019498,0.3582895077161824,0.3601253737795871,0.3614562647754137,0.3618939348610862,0.3630042900314884,0.3638509791577669,0.3651454290277307,0.3644801006764196,0.3646964213912344,0.3670805879371515,0.3699330278463165,0.3733253588516746,0.374988564632696,0.3768224299065421,0.3748651221834338,0.3751049378005037,0.3755702448561586,0.3738791882963662,0.3806509945750452,0.3819416699960048,0.3808879263670817,0.3849129593810445,0.0,2.2352653137496694,58.88134408180589,204.2314965483733,324.2083099374593,fqhc8_100Compliance_baseline_low_initial_treat_cost,69 -100000,95698,41328,387.1658759848691,7193,74.16037952726285,5571,57.6919057869548,2266,23.30247236096888,77.32722884548278,79.70253511609191,63.32110870231941,65.07539427031466,77.05117603355222,79.42612687776386,63.21962288750464,64.97612396655971,0.2760528119305547,276.4082383280453,0.1014858148147723,99.27030375494894,77.07524,54.22573647855668,80540.07398273735,56663.39576433852,239.26211,147.8232534672051,249496.35311082783,153946.96176221562,265.41667,127.11322725849382,273922.6943091809,130228.97382161296,3682.29464,1653.7664160799002,3815098.83174152,1695755.169494935,1371.58597,590.6043235976367,1420623.5344521306,604697.6960883419,2228.38904,924.765246879008,2294474.2418859326,938073.9096119666,0.37855,100000,0,350342,3660.9124537607895,0,0.0,0,0.0,20198,210.51641622604444,0,0.0,24816,255.88831532529417,2088451,0,75017,0,0,0,0,0,42,0.4388806453635395,0,0.0,0,0.0,0,0.0,0.07193,0.19001452912429,0.315028499930488,0.02266,0.3204076230809952,0.6795923769190048,25.527403506861788,4.539229638389156,0.3266917968048824,0.2035541195476575,0.2335307844193143,0.2362232992281457,11.094842514639652,5.671944862298132,24.02632232258542,12990.911938286115,62.49347109665702,13.1711391203493,20.39138189885449,14.45559555187596,14.475354525577268,0.5501705259378926,0.7583774250440917,0.6901098901098901,0.5995388162951576,0.128419452887538,0.7031473533619457,0.9187675070028012,0.8446389496717724,0.7643097643097643,0.1463414634146341,0.4989216391085549,0.6846846846846847,0.6382978723404256,0.5507968127490039,0.1234207968901846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022374309028691,0.0049761328049781,0.0072435832403368,0.0092933971175233,0.0114296173518674,0.0135929052162137,0.0157546958171027,0.0179649280483694,0.0202585237150512,0.0223756029124125,0.0245205619936416,0.0266009346274328,0.0285535018154513,0.0307473544292058,0.0328606518463475,0.0351004198812749,0.0374314930120282,0.0394626190055959,0.0415440143958227,0.0437470032729471,0.0586484228117819,0.0728922471533824,0.0860220693127465,0.0997117427988301,0.1117720264084878,0.1270878952323527,0.1395780716089734,0.1518313458262351,0.164976978217441,0.1759197683149201,0.1899145906706732,0.202452593298121,0.2139578892417453,0.2251848287326654,0.2358107438835144,0.2465789852744014,0.2572835041189472,0.267521011712553,0.2766469513095008,0.285268972472438,0.2935725620562242,0.3012973631211653,0.3081998673237301,0.3152484226183336,0.3226120383436329,0.3290047030650158,0.3351466532965655,0.3403528451968183,0.3452271282324091,0.350059500198334,0.3512809085875569,0.3517448674286817,0.3523008062352625,0.3528355962134151,0.3536905152120146,0.3532415596400831,0.3535307010577809,0.3542693748767501,0.3558371381179568,0.3565726735360823,0.3570209813811336,0.3592742095057185,0.360922773357963,0.3619468232973142,0.362476439031463,0.3637555730396014,0.3644522177939616,0.3650422187786598,0.3664869816439418,0.367983367983368,0.3692541296645654,0.3693233729241683,0.3701840412660001,0.3730121970047861,0.3750954198473282,0.3809010304337407,0.3845558650572578,0.3880048959608323,0.3883953359244864,0.3876208897485493,0.0,2.026876295270408,61.98467492235101,196.8027266874072,329.8650677202993,fqhc8_100Compliance_baseline_low_initial_treat_cost,70 -100000,95785,41665,390.3011953854988,7418,76.27499086495799,5769,59.72751474656784,2398,24.659393433209797,77.38146625236273,79.70554786775095,63.35451413110488,65.06838277389035,77.0866642972315,79.40954847559334,63.247126437441445,64.96317921130573,0.2948019551312342,295.9993921576114,0.1073876936634334,105.20356258462016,77.14014,54.30174240496873,80534.67661951245,56691.27985067467,239.65646,147.04092156835102,249701.3415461711,153010.27464462185,265.68051,126.73658954814933,274751.5686172156,130251.08702633208,3845.90852,1722.372815172484,3983937.2344312784,1766955.7604765692,1427.64597,620.0708701418326,1481632.5207495957,638528.4675799544,2371.03922,979.2459359053404,2440794.1535731065,993314.7389693502,0.383,100000,0,350637,3660.667119068748,0,0.0,0,0.0,20207,210.4296079761967,0,0.0,24856,256.83562144385866,2092239,0,75096,0,0,0,0,0,36,0.3758417288719528,0,0.0,0,0.0,0,0.0,0.07418,0.1936814621409921,0.3232677271501752,0.02398,0.3120503597122302,0.6879496402877698,25.26043409323305,4.60014067106419,0.3244929797191888,0.2021147512567169,0.2293291731669266,0.2440630958571676,11.34719642666474,5.717434589467783,25.48012432711095,13170.409850756032,64.84762957258488,13.613747881210644,20.93782617747616,14.776839856860116,15.51921565703799,0.5373548275264344,0.7590051457975986,0.686965811965812,0.5774754346182918,0.1171875,0.7002861230329042,0.9228650137741048,0.8453159041394336,0.7235494880546075,0.1554770318021201,0.4852436513383665,0.684931506849315,0.6355272469922152,0.5359223300970873,0.1075555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002389486260454,0.0045502452470712,0.0068370172751341,0.009038102201641,0.0111543819333584,0.0132744263696887,0.0154721135029354,0.0176532413596057,0.019932570494483,0.0222420019847968,0.0244951900912806,0.0267988139575446,0.0290318271039082,0.0313355706079759,0.0333725102066064,0.0355261799029226,0.0375226367258239,0.0394890987693998,0.0415316213745533,0.0437077680718814,0.0583999499071194,0.0728284868207645,0.086465849974828,0.0985650459921156,0.1102302437378763,0.1260629521512882,0.1395583181297467,0.1524615466496354,0.1645892744614267,0.1757970796972491,0.1895790720206696,0.2036942909362259,0.2175340916505361,0.229256232702132,0.2396667840478915,0.251047184237938,0.2623792776196059,0.2724274926001373,0.2819417784491669,0.2902286330176348,0.2991126248233359,0.3062218890554722,0.3138105053664084,0.3199352479165417,0.3265321002807179,0.3332716962524655,0.3391951936917204,0.3447389517350198,0.350888563391966,0.3554179484809675,0.3568483737975263,0.3574132969862184,0.3583519056619742,0.3596214053803339,0.3611566796909953,0.3613980081150867,0.361477907567293,0.3615750415480558,0.3626273871713625,0.3639469776927067,0.3650909910417488,0.3659913255302715,0.3666848877302161,0.3677158273381295,0.3690680319752699,0.3702705531424983,0.3703280048042552,0.3731781184932803,0.3739995063643736,0.3740659340659341,0.3779671890752452,0.3827904249080343,0.3851781772311574,0.3873901413832633,0.3883550566073637,0.3882591576184226,0.3897420147420147,0.3871820956256358,0.3922651933701657,0.3853317811408615,0.0,1.9070714854074184,62.16245498575964,218.7823230686052,332.3250735472137,fqhc8_100Compliance_baseline_low_initial_treat_cost,71 -100000,95763,41474,390.3386485385796,7130,73.28508923070497,5543,57.37080083121874,2288,23.558159205538672,77.31912755708531,79.67003551855926,63.32066847763053,65.05892545040346,77.03287211086302,79.3811412049643,63.21548738088823,64.95504923253539,0.2862554462222846,288.894313594966,0.1051810967423065,103.876217868077,77.38654,54.415931276053946,80810.4800392636,56823.544872293,238.11699,147.41277984802335,248151.1230851164,153434.4307924875,268.4653,128.5561156143974,277248.2900493928,131853.09493440745,3684.5349,1671.4315055908353,3816442.832826874,1714344.859950994,1366.25006,603.3535965134301,1415157.680941491,618637.3958735979,2255.07244,944.817161623694,2324035.9846704886,960102.4899557016,0.3797,100000,0,351757,3673.203638148346,0,0.0,0,0.0,20105,209.4128212357591,0,0.0,25030,258.3461253302424,2087160,0,75050,0,0,0,0,0,45,0.4594676440796549,0,0.0,0,0.0,0,0.0,0.0713,0.187779826178562,0.3208976157082749,0.02288,0.3224131042748701,0.6775868957251299,24.940192743917468,4.59511516412353,0.3287028684827711,0.1979072704311744,0.2345300378856215,0.2388598232004329,11.20883311670195,5.569602993892245,24.615701928755463,12911.798308880718,63.12162551501775,12.946583118830194,20.86986739559574,14.652156627828145,14.653018372763675,0.5531300739671658,0.7812215132178669,0.712403951701427,0.5738461538461539,0.1246223564954682,0.7086834733893558,0.8940217391304348,0.8673684210526316,0.7251655629139073,0.1837455830388692,0.4991494532199271,0.7242798353909465,0.6577579806978471,0.5280561122244489,0.1085494716618635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873639226726,0.0045906423859179,0.0069700904995738,0.0091307968880131,0.0113595915835291,0.0135956738260364,0.0157430537853683,0.0177674304619531,0.0200404899695302,0.0222456542658831,0.0240123855515569,0.0261215102011479,0.0281891480521617,0.0302346663370212,0.0323662326406801,0.0340936101609086,0.0360052589624936,0.0379225574906386,0.0398694915782582,0.0419313850063532,0.0561151529701575,0.0707777603431141,0.0838979673176564,0.096793867443401,0.1080189325659108,0.1230162506211607,0.1367695407784494,0.1495829254798485,0.1623477156005424,0.1737433940420423,0.1872294605362334,0.2007402357066329,0.2130045574687014,0.2246850669232788,0.2351543158937118,0.2467909315435646,0.2576193984861679,0.2678310188832121,0.2770650742473093,0.28573228707257,0.2934650438327292,0.3008687914198065,0.3085419036784224,0.3154836230909615,0.3211969285809898,0.3266002001408398,0.3325389757804562,0.3390135329906506,0.3447734060511622,0.3500211629014338,0.3510415682250813,0.3513446386930305,0.3519953615974206,0.3525099439653921,0.3528902811963899,0.3525140008615914,0.3523739816700611,0.353833720911055,0.3546987290533935,0.3563321600459737,0.3572330838408024,0.3580538779402415,0.3578449985233937,0.3587710604558969,0.3590916793763768,0.3594405961376994,0.3607220755366778,0.3604971065363817,0.3603409251662187,0.3631725787166202,0.3657218737121663,0.369759597365744,0.3714558169103624,0.3725731895223421,0.3740603292416024,0.3763402430307362,0.3761736185931968,0.3729851050805958,0.379406050513461,0.3797614467102732,0.0,1.9903338392585144,63.40871883970998,215.07083957581432,306.9141822681985,fqhc8_100Compliance_baseline_low_initial_treat_cost,72 -100000,95683,41392,388.7106382533992,7188,73.91072604328878,5620,58.1712529916495,2272,23.400186030956384,77.34181859432726,79.72501993058827,63.3271521787835,65.08579734623609,77.06457685169983,79.44525451808667,63.22623947744433,64.98593759972785,0.2772417426274387,279.7654125016038,0.100912701339169,99.85974650824404,77.07942,54.206018181407984,80557.06865378385,56651.67081028813,239.6945,147.68017368118274,249918.930217489,153753.12613649524,264.09735,125.97954634762466,272078.6242070169,128628.6726015343,3733.90096,1663.1750065436725,3868328.323735669,1704175.9106044683,1408.13035,606.0481650479423,1456319.8791843902,618049.5647585702,2244.9357,926.9550822218677,2314403.603565942,942823.3665049154,0.37938,100000,0,350361,3661.684938808357,0,0.0,0,0.0,20231,210.84205135708532,0,0.0,24641,253.6918783901006,2091459,0,75076,0,0,0,0,0,48,0.4912053342809067,0,0.0,0,0.0,0,0.0,0.07188,0.1894670251462913,0.3160823594880356,0.02272,0.3111698612029081,0.6888301387970919,25.393191100086387,4.565016158430813,0.3293594306049822,0.197508896797153,0.2332740213523131,0.2398576512455516,10.987048655762376,5.457502320047067,24.20143038224336,12993.616295481212,63.10995335874877,12.891458798888912,20.78233024454553,14.702066773183278,14.734097542131035,0.548932384341637,0.7738738738738739,0.6888168557536467,0.6025934401220442,0.1194362017804154,0.6991988346686089,0.9241573033707864,0.84375,0.7177914110429447,0.1672727272727272,0.5003531904874029,0.7029177718832891,0.6439024390243903,0.5644670050761421,0.1071761416589002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101021761804,0.0047437079984187,0.0070919107575865,0.0094554244276979,0.0115406515638345,0.0138877575955037,0.0158802964050189,0.0178843032573522,0.019838714623003,0.022049565457728,0.0240751373964399,0.0260863313785701,0.0282707323848029,0.0307685966593506,0.0326882386334313,0.0348890130122675,0.0368501227991999,0.0390281887556455,0.0409878700871772,0.0429402443601184,0.0572031463819741,0.0709245105224583,0.0841397115929556,0.0966245080915002,0.1084633479962446,0.1242384498223049,0.1372944297082228,0.1504603757517696,0.162480368380004,0.1736603360821867,0.1877557613611888,0.2013475806277173,0.2132727193631182,0.2251033035265309,0.2346994896163322,0.2461184079381603,0.2568584120181254,0.2676084853665669,0.2765414165257555,0.2850434643180282,0.2924995372940959,0.3009789359188781,0.3085631143759537,0.315358067299396,0.322159719100441,0.3287345268037678,0.3349861638055169,0.340686212078759,0.3468884941063578,0.3522308393557848,0.3537042530812589,0.3548151516404172,0.3555728100515282,0.3559133091077555,0.3572417695320061,0.3576661393620126,0.3569253219973352,0.3581006597673538,0.3594756682659356,0.3608869163728771,0.3623008949175437,0.363715587244999,0.3649230381554356,0.3655071813285457,0.3659013543854567,0.3653478067070453,0.3674738501217939,0.3695349572919962,0.3718071350125766,0.3752498201295067,0.3766620816139385,0.376382580817526,0.3799835723763189,0.3797177048174286,0.3828582216348877,0.3799807969275084,0.3763906056860321,0.3811951866204364,0.3862493012856344,0.3918971562134787,0.0,2.228567260430565,60.87805355150871,207.37462618539303,327.75128232691924,fqhc8_100Compliance_baseline_low_initial_treat_cost,73 -100000,95674,41435,390.3881932395426,7112,73.112862428664,5589,57.77954303154462,2161,22.24219746221544,77.38307130315455,79.75967993142875,63.34642469116329,65.0975582973831,77.11578810412355,79.4918247835731,63.24829113723328,65.00138773047674,0.2672831990309987,267.8551478556557,0.0981335539300118,96.17056690636616,76.72742,53.96826334077295,80196.73056420762,56408.49482698847,238.52314,146.94479448219292,248680.8432803061,152962.15022815688,266.1699,127.27442338589334,273745.8243618956,129623.12468664991,3670.32561,1646.000410794568,3800276.5955222943,1684469.1493986829,1343.88622,579.4914162912776,1390709.69124318,591778.3003259811,2125.65828,887.6523327432621,2191170.244789598,901462.7651112428,0.37983,100000,0,348761,3645.30593473671,0,0.0,0,0.0,20104,209.48219997073397,0,0.0,24840,255.17904550870665,2093013,0,75227,0,0,0,0,0,45,0.4703472207705332,0,0.0,0,0.0,0,0.0,0.07112,0.1872416607429639,0.3038526434195726,0.02161,0.3132932531730127,0.6867067468269873,25.23174490048874,4.620395905283477,0.3410270173555197,0.2007514761137949,0.2320629808552514,0.2261585256754338,11.235105067370284,5.641575667828739,22.91118669677149,12972.279665019229,62.54951948382838,12.90893628030055,21.3575810276795,14.33422263046917,13.94877954537915,0.5532295580604759,0.7522281639928698,0.6962224554039874,0.5959907478797224,0.1170886075949367,0.7037593984962406,0.921921921921922,0.8619909502262444,0.7456445993031359,0.126865671641791,0.5062221178680442,0.6806083650190115,0.6461748633879781,0.5534653465346535,0.1144578313253012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0044272891212286,0.0066125090009229,0.0089768065315406,0.0114381576940674,0.0136099433003858,0.0158311076678423,0.0176484398125937,0.0199114818108409,0.0218969135486512,0.0239498856844069,0.0262055368438347,0.0280871720506412,0.0302621414224648,0.0321039872079228,0.0338783356414973,0.035800857728883,0.0377366323480571,0.0396830348786422,0.0417899870774104,0.0568996134962916,0.0708729834699496,0.0843570671730258,0.0971032017244098,0.1092507854838369,0.1251374439651526,0.1380732291644582,0.1504381487153309,0.1621673531231993,0.1739670838333619,0.1877367016698226,0.2012975778546712,0.2128702646882982,0.2247229084231467,0.2360920121890848,0.2473737866229333,0.2582255578637003,0.2680528491456505,0.2771266325951164,0.2854785289432366,0.2939017896418401,0.3014191040442123,0.3090331678299304,0.3159082452076006,0.3229659542894676,0.3288815927521384,0.3352086909669577,0.3412918843164734,0.3470676730734314,0.3522135588740584,0.3528548145953153,0.3530504672382709,0.3543832952912334,0.3551885701064322,0.3558344236945402,0.3558963024358797,0.3557089581845592,0.3560069073267001,0.3571342915388964,0.3574100255919251,0.3587890588433527,0.3605321332701721,0.360887307732552,0.3612965153916557,0.3617138609825688,0.362729044834308,0.3639719453672942,0.3653984882225637,0.3682288923995085,0.3697046480323065,0.3738896733931581,0.3743312675459505,0.3754319824065347,0.3767522921876184,0.3785973735680357,0.3852910176835695,0.3891314165286768,0.3861308116627265,0.3882636655948553,0.3841328413284133,0.0,2.47777234445638,58.29981845835234,211.53433886467124,324.187632969748,fqhc8_100Compliance_baseline_low_initial_treat_cost,74 -100000,95692,41652,391.3075283200268,7312,75.18914851816244,5653,58.48973790912511,2316,23.87869414371108,77.3960056150407,79.77967431181327,63.35197710932333,65.11269999613188,77.11766649810401,79.4999266076166,63.250490907273885,65.01287715031481,0.2783391169366922,279.74770419666584,0.1014862020494433,99.8228458170729,77.40436,54.43461504733576,80889.0607365297,56885.23078975855,241.03502,148.6854445600907,251284.1407850186,154777.039418228,268.18798,128.60609276621173,276024.02499686496,131222.62618593444,3726.86277,1671.526892260403,3859962.79730803,1712096.8547636203,1374.37267,595.3442828963274,1423273.136730343,609174.3649876711,2276.18988,938.8233821533586,2348277.661664507,954927.4655757018,0.38215,100000,0,351838,3676.7754880240777,0,0.0,0,0.0,20353,212.0553442294027,0,0.0,25067,257.743594030849,2091903,0,74954,0,0,0,0,0,53,0.5538603018016135,0,0.0,1,0.0104501943736153,0,0.0,0.07312,0.1913384796545859,0.3167396061269146,0.02316,0.3132639791937581,0.6867360208062419,25.36446373580822,4.568226583061889,0.3292057314700159,0.2052007783477799,0.2317353617548204,0.2338581284273836,11.310416516471175,5.6943363889447305,24.547887115631987,13071.753251423715,63.54241202427227,13.591801953775828,20.872569237563926,14.705116048897771,14.37292478403476,0.5533345126481515,0.7646551724137931,0.7033852767329393,0.5877862595419847,0.1225416036308623,0.7278571428571429,0.9319371727748692,0.8690744920993227,0.7331189710610932,0.1893939393939394,0.4958852574653186,0.6825192802056556,0.6516220028208745,0.5425425425425425,0.10586011342155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024008022934246,0.0047149723185496,0.0068106615781246,0.0091135382270764,0.0111895509938355,0.0133181281309819,0.0155999877647154,0.017754137357196,0.0202212271770021,0.0224569592008024,0.0243592372360057,0.0266743328849964,0.0288067959767159,0.0309013936528537,0.0330062628326162,0.0350416571912923,0.0370715639663155,0.0389960868978545,0.040881909417087,0.0430532250836364,0.0583031303203434,0.0728473355937879,0.0860034611148985,0.0987194852709266,0.1107012236896192,0.1263350464226043,0.139863997538801,0.1519293203470115,0.1645108573747903,0.1759665397608451,0.1896039284098985,0.2026237805801302,0.2147583913766312,0.2263004295598377,0.2373119887413141,0.248641229147987,0.2591679678786527,0.2695509543764254,0.2790052118740086,0.2874571232563457,0.2961752546365799,0.3036696283669395,0.3105248857017968,0.3178674006701771,0.3247944108871261,0.3314187319353053,0.3372361539325702,0.3424268185913134,0.3473639345956139,0.3529806730212228,0.3539290368519339,0.355103105521843,0.3564554254840162,0.3571954653765615,0.3584199584199584,0.3581829038629369,0.3581529398723653,0.359003844005651,0.3595649720412456,0.360512490618634,0.3620899833086401,0.3629534446970446,0.3641084703172442,0.3656843045322616,0.3667965742879138,0.3666318810331333,0.3661121239744758,0.3682484628724578,0.3707267216465778,0.3725678213272603,0.3737188031438158,0.3759571619812584,0.3767075417752081,0.3778784157199877,0.3780127655520625,0.3790080461150474,0.3748652394886801,0.3746680286006129,0.3789649415692821,0.3783469150174621,0.0,2.1932032663636627,61.62741488149905,213.1179805263821,322.6637224894535,fqhc8_100Compliance_baseline_low_initial_treat_cost,75 -100000,95819,41624,389.8913576639288,7287,74.90163746229871,5678,58.6313779104353,2290,23.53395464365105,77.38566316619061,79.70570815407841,63.36611244363343,65.08373600937466,77.10642971821257,79.42571045688764,63.2646652174458,64.98423241781248,0.2792334479780436,279.9976971907654,0.1014472261876235,99.50359156218268,77.21978,54.33917011180092,80589.21508260365,56710.22460242845,241.56305,148.46024602295088,251501.47674260844,154336.19221965465,266.77698,127.71075208788406,273960.7489120112,129898.83772101963,3751.54024,1676.1469964497192,3877806.207537127,1712072.8515809171,1360.28035,595.0831825005058,1404586.7416691887,606116.250908362,2252.05844,929.7933619214858,2316982.393888477,943124.6086695108,0.38161,100000,0,350999,3663.146140118348,0,0.0,0,0.0,20390,212.1604274726307,0,0.0,24908,255.48168943528944,2094027,0,75156,0,0,0,0,0,44,0.4591991149980692,0,0.0,0,0.0,0,0.0,0.07287,0.1909541154581903,0.314258268148758,0.0229,0.3232112602632608,0.6767887397367393,25.75585237765892,4.547700738322671,0.3386755899964776,0.2041211694258541,0.2282493835857696,0.2289538569918985,11.211711463085074,5.685279204078165,24.400746085813,13093.03888355252,63.75264780792237,13.413925378259211,21.69513995540165,14.324244034087132,14.319338440174368,0.5387460373370905,0.7377049180327869,0.6926677067082684,0.5570987654320988,0.1153846153846153,0.6991988346686089,0.9156976744186046,0.8586278586278586,0.7210144927536232,0.1213235294117647,0.4875725900116144,0.6625766871165644,0.6373092926490985,0.5127450980392156,0.1138132295719844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814398428083,0.0046531431525805,0.007013021282642,0.0093979233129457,0.01156475039668,0.0137256898482842,0.0160535730666911,0.0185222981936932,0.0207266595124942,0.0230868417282384,0.0253743120958402,0.0274866826099005,0.0294552929085303,0.0316520844055584,0.0335849367897873,0.0358411832754916,0.0379724570352512,0.0398727223730851,0.0417298307548541,0.0436397690026533,0.0581921728971962,0.0718855183659816,0.0848312074874493,0.0976519409570835,0.1107857594270065,0.1258580994022347,0.1398425830782105,0.1525985758316505,0.1644855427212321,0.176248821866164,0.1902247553500376,0.2033204433018643,0.2156813790408371,0.2272355194656363,0.2385684793112536,0.2497899624143267,0.2600521262613887,0.270131853815225,0.2787733925415741,0.2873540878274092,0.2952762727724316,0.3027547566242559,0.3106558828738414,0.3178715315552261,0.3251714361869684,0.3315354940167579,0.3372987142678816,0.3435703498775365,0.348510297423706,0.3540917532698462,0.3547892307899304,0.3555598354679396,0.3561998957408738,0.357025056420346,0.3579918185198958,0.357869383121366,0.3574728153028018,0.3574651691314515,0.3582058808383542,0.3590838161175183,0.3600496464570483,0.3599539335213057,0.3619317102012374,0.3628643510384286,0.3659832585223826,0.3672356567093409,0.3682150463362689,0.3724170766544993,0.3725309080574108,0.37399549983928,0.3770831415155142,0.3781643029167781,0.3785328675770085,0.3786519438693351,0.3788932279264692,0.3799735545137637,0.3844840961986036,0.3865080992413369,0.3968209704406023,0.4044856921887084,0.0,2.477249046669433,60.15689963952454,213.7901994469206,329.9260656027884,fqhc8_100Compliance_baseline_low_initial_treat_cost,76 -100000,95772,41565,389.93651589191,7277,74.80265630873323,5617,58.12763646994946,2322,23.89007225493881,77.37657405990127,79.72178956447938,63.3458979718325,65.07942419039644,77.09706134405073,79.44220760151593,63.24447909133914,64.9805917895518,0.2795127158505437,279.58196296344795,0.1014188804933624,98.83240084464262,77.25916,54.384948507021946,80669.88263793175,56785.85443242487,239.49854,147.38257157066533,249570.34415069123,153387.7767726113,263.93219,125.82370949797118,272412.05153907195,128864.77772267615,3736.79703,1660.4302995658363,3870012.936975316,1702014.9032763634,1387.01759,596.7699757256518,1434607.4322348912,609491.8458223353,2294.19158,941.6508413563,2363358.873157081,955832.3424912055,0.38155,100000,0,351178,3666.812847178716,0,0.0,0,0.0,20230,210.6983251889905,0,0.0,24688,254.6986593158752,2092264,0,75042,0,0,0,0,0,41,0.4176586058555736,0,0.0,0,0.0,0,0.0,0.07277,0.1907220547765692,0.3190875360725573,0.02322,0.317175422507533,0.6828245774924669,25.63703465978375,4.622667024600542,0.3238383478725298,0.1969022609934128,0.2366031689513975,0.2426562221826597,11.158290420796396,5.472943043446485,24.50395315345128,13095.312660345377,62.95357283504842,12.8407455417894,20.46434281160721,14.804592858025522,14.843891623626297,0.5435285739718712,0.7658227848101266,0.7009345794392523,0.5974416854778029,0.1005135730007336,0.7300150829562594,0.9339080459770116,0.8707482993197279,0.7758007117437722,0.16015625,0.4859007224423211,0.6886543535620053,0.6465892597968069,0.549618320610687,0.086720867208672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023599716398257,0.0046224492899066,0.0068081738671645,0.0089702954203746,0.0114921487267106,0.01360474944247,0.0159680231668892,0.0182137460693429,0.0204254797125302,0.0225814046329754,0.0246494752377828,0.0268627913899467,0.0289703100583929,0.0309471581137166,0.0329605711102399,0.0349464588415264,0.0370182450763145,0.0391817172733591,0.0411481562340808,0.0432301267431082,0.0579265428812975,0.0720440902721131,0.0850918849786667,0.0976406915033366,0.1101532365153974,0.126397902881424,0.139582714897587,0.1524211825542917,0.1643831227774158,0.1760687976495566,0.189896183337641,0.2034554758581891,0.2152110776326237,0.2259578565020459,0.236488941243821,0.2481046331190423,0.2580313773658645,0.267497214625747,0.2768067913564554,0.2863833636790454,0.2950315229336572,0.3029977084599916,0.310810491213963,0.3180615263025542,0.3257220589306969,0.3325200246457178,0.3384967369289626,0.3441427246273683,0.3498480046568786,0.3547289275821131,0.3553827944262118,0.3565564188956886,0.357311785573512,0.3581080104628813,0.3587980155075607,0.3590002911475812,0.3595575066960394,0.3608011962076274,0.3614614528963806,0.3628614317881268,0.3645160078160228,0.3646609095230549,0.3660474108944183,0.3671883746445444,0.3676314520019296,0.3695492854525467,0.3713492948882977,0.3734594168636722,0.3755552421913558,0.3793860524529959,0.380071599045346,0.3824065145183756,0.3814720812182741,0.3824612551787632,0.3870510396975425,0.3892938224399569,0.3911637931034483,0.3890688259109311,0.3848052660449808,0.3845562812139839,0.0,2.031861657823937,58.790625215968376,212.1367625100989,329.0604106564437,fqhc8_100Compliance_baseline_low_initial_treat_cost,77 -100000,95759,41414,389.2271222548272,7239,74.46819620087929,5622,58.20862790964818,2315,23.87242974550695,77.3313489084019,79.69842836855261,63.31030609897547,65.06343285292704,77.05319219712474,79.41683184811504,63.209865617584434,64.96377216999403,0.2781567112771625,281.5965204375743,0.1004404813910326,99.66068293300624,76.30304,53.72047791542293,79682.36928121638,56099.66469514399,237.26339,145.62800784897752,247268.54917031297,151574.79490071695,263.25063,125.64122500684724,271112.8666757172,128278.83946540068,3724.24149,1660.1289939126557,3859242.462849445,1703714.0048587143,1390.67604,597.6611438619459,1440379.8911851626,612243.740914113,2288.76954,938.5492945350524,2362530.22692384,956492.0289539186,0.38021,100000,0,346832,3621.925876418927,0,0.0,0,0.0,20042,208.77411000532587,0,0.0,24683,254.0544491901545,2095600,0,75191,0,0,0,0,0,33,0.3446151275598116,0,0.0,1,0.0104428826533276,0,0.0,0.07239,0.1903947818310933,0.3197955518718055,0.02315,0.3179778247096093,0.6820221752903907,25.32590353212802,4.607019228431939,0.3231945926716471,0.2072216293134116,0.2246531483457844,0.2449306296691568,11.061417545015107,5.450712113250666,24.460293710823017,13033.38729690398,63.22413507847544,13.630865705257042,20.54453285380397,14.050138497899727,14.998598021514708,0.5369975097829954,0.7493562231759656,0.689598238855256,0.5930324623911323,0.1045751633986928,0.7117776152158011,0.917098445595855,0.8454545454545455,0.7560975609756098,0.1181102362204724,0.4808460634547591,0.6662387676508345,0.6397966594045026,0.5450819672131147,0.101513802315227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024417673937932,0.004725351612805,0.0069424004059883,0.0091952855110749,0.0113837514496734,0.0135144768868837,0.015447991761071,0.0176439956298436,0.0198733749961644,0.0221439252719339,0.0243374630784378,0.0263522884882108,0.0286502284608735,0.0307849280620027,0.0328137902559867,0.0345579947677003,0.0363869818686382,0.038414444329148,0.040487723747947,0.0424629998021101,0.0569003851814737,0.0707760884805742,0.0840422518959856,0.0969600740265612,0.1091348080045547,0.1246721380827481,0.1381564287305949,0.1506944148596259,0.163334437546083,0.1745791625092536,0.1882038515836324,0.2012105986941126,0.2136613508953355,0.2254928791146238,0.2363466196872935,0.2471175166297117,0.2575745731101259,0.267445656456497,0.2771441217527493,0.2861644950206851,0.2947489060220879,0.302959674869116,0.3105169551814086,0.3181299475068769,0.3250240393393137,0.3317127344521224,0.3379974695912513,0.3441325978112698,0.3501063995432605,0.3552376045341048,0.356072044866264,0.3565234149161688,0.3573019139160583,0.3572998611753817,0.3582685937523209,0.358242330489654,0.3578537635089163,0.3585599789777953,0.3593052109181141,0.3602481141181938,0.3615735440400893,0.3622783556215948,0.3628075040440326,0.3632631082991183,0.3652954808806489,0.3648811393863231,0.3673399422906608,0.3676656550328781,0.3693712829226848,0.3691011235955056,0.3706579672854255,0.3704000427281952,0.3717997465145754,0.3748469075321494,0.3783605940966347,0.3789448893075836,0.3797391568092205,0.3835425383542538,0.3804851458162987,0.3808250572956455,0.0,1.9820484612542848,60.72064127035219,212.7084551663964,323.74772846411645,fqhc8_100Compliance_baseline_low_initial_treat_cost,78 -100000,95488,41687,391.7036695710456,7175,73.83126675603218,5576,57.78736595174263,2303,23.72025804289544,77.22623088476638,79.71379004637747,63.24095407219974,65.07638181095133,76.94572825540023,79.43041076052901,63.1381128074347,64.97482372205367,0.2805026293661541,283.3792858484543,0.1028412647650398,101.55808889766148,76.52238,53.888534044117954,80138.21632037533,56434.87563266375,240.62857,149.08848534292656,251393.9657339142,155528.42801496165,270.27932,129.9923831692507,278943.5216990617,133063.67010323162,3701.41237,1663.0671124374533,3840709.314259384,1706237.9611242805,1379.84081,602.2717874046198,1432423.3097352546,618133.6232902375,2269.18878,945.8366536526404,2340911.528150134,962687.2615169892,0.38064,100000,0,347829,3642.646196380697,0,0.0,0,0.0,20293,211.88002680965147,0,0.0,25150,259.21581769437,2083361,0,74763,0,0,0,0,0,35,0.3665382037533512,0,0.0,0,0.0,0,0.0,0.07175,0.1884983186212694,0.3209756097560975,0.02303,0.315684976836532,0.6843150231634679,25.49015052733797,4.5945532259448285,0.3305236728837876,0.2015781922525107,0.2268651362984218,0.2410329985652797,11.289224253792709,5.704176074697465,24.5898072768538,13058.218681977913,62.81582305280769,13.012816630250622,20.87917366297205,14.14949766327952,14.774335096305506,0.5371233859397417,0.7580071174377224,0.6934346174715138,0.5683794466403163,0.1086309523809523,0.7126099706744868,0.9195402298850576,0.8700440528634361,0.7456445993031359,0.1563636363636363,0.4802943969610636,0.6855670103092784,0.6357091432685386,0.516359918200409,0.0963517305893358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509145260171,0.0047166462109608,0.0069141267488374,0.0092933401118454,0.0116570288320573,0.0138205167405595,0.0159185297809161,0.0182290070095845,0.0204916774939384,0.0226942070859203,0.0249014616521596,0.0271026115566522,0.0291404094073067,0.031024062213146,0.0332589424090261,0.0350564775797985,0.0373025176087385,0.0393442963763747,0.0414856487992915,0.0438873110015871,0.0586997707694401,0.0734609089764572,0.0864705140068982,0.0989449942559627,0.1109537648612945,0.1264097345883151,0.1391981117029759,0.1521653312279279,0.1639962299717247,0.1747748135090397,0.188804318488529,0.2018352604290951,0.2148604448320976,0.226099253461374,0.2374384888673124,0.2490026780455823,0.2594473654771227,0.2691431792559188,0.2788197959439016,0.2874279679500425,0.2960904872389791,0.3038709677419355,0.3114598418840958,0.3177313834904752,0.3244647758462946,0.3302757971875619,0.3365738935771509,0.3424876563739159,0.3475443960189943,0.35246173215824,0.3543817397069369,0.3546057174423422,0.3550780973920418,0.3556421699316101,0.3565993255945809,0.3559248999692213,0.3557862225972331,0.35679487391211,0.3573185203019932,0.3577564517288477,0.3589352322821295,0.3597645842446415,0.3601887746502612,0.3614834472831953,0.3620073415765069,0.3628311627053798,0.3647959183673469,0.3666033554922444,0.3693923003499841,0.3711736225041014,0.3713221772710555,0.3768232088475717,0.3784943522433268,0.3817642134104574,0.3817927170868347,0.3841542259315857,0.3857868020304568,0.3903445430162987,0.390169397389614,0.3908531898539585,0.0,2.35996622718684,60.143380544515466,209.8628004758682,322.6876927279723,fqhc8_100Compliance_baseline_low_initial_treat_cost,79 -100000,95703,41620,390.5520203128429,7186,73.8325862303167,5561,57.44856483077855,2312,23.761010626626124,77.36399481233721,79.74838230040477,63.33329461681414,65.09700499758118,77.07626195079595,79.46009523897733,63.2269642421826,64.9931754286841,0.287732861541258,288.28706142743954,0.1063303746315469,103.8295688970834,77.01408,54.18360188248984,80471.73024879054,56616.17909834576,240.01781,148.3121855964052,250139.5358557203,154318.07113712773,264.92,126.92034471317554,272457.3942300659,129377.80550724114,3709.41892,1674.2935544738314,3836055.0348473927,1709670.6983228822,1338.95152,583.8509275412549,1382729.0471563064,593724.9485818149,2275.5079,954.6891029602276,2340811.7822847767,966042.1805322252,0.38023,100000,0,350064,3657.8059203995695,0,0.0,0,0.0,20213,210.51586679623415,0,0.0,24663,253.3776370646688,2091910,0,75127,0,0,0,0,0,48,0.4911026822565645,0,0.0,0,0.0,0,0.0,0.07186,0.1889908739447176,0.3217367102699693,0.02312,0.3307824251220477,0.6692175748779522,25.423787370091443,4.697548762910501,0.3330336270454954,0.1916921417011328,0.2362884373314152,0.2389857939219564,10.902569785954224,5.320880254766504,24.712676348555263,13029.499522622687,62.710066469715095,12.456692951305232,20.80600229426116,14.823762429345589,14.623608794803108,0.5329976622909549,0.7476547842401501,0.6744060475161987,0.5844748858447488,0.1128668171557562,0.6918194640338505,0.9196428571428572,0.8722943722943723,0.7360248447204969,0.1073825503355704,0.4786386676321506,0.6684931506849315,0.6086330935251798,0.5352822580645161,0.1144519883608147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002340401819637,0.0047461133590921,0.0069438804515552,0.0094111429558712,0.0115590467856488,0.0138863418709375,0.0162593333061324,0.0183933167204542,0.0205578227117915,0.0226604818808302,0.0247656746723547,0.026969569370128,0.0291915243777,0.0313652756311179,0.0334379128137384,0.035464659415195,0.0372403791371005,0.0392154827997717,0.0412989469963929,0.0435090643884142,0.0584831965244271,0.0719788155994222,0.0851097310226176,0.0977559046837865,0.1104013829159288,0.1260758315887415,0.1397469750474554,0.1524001021320056,0.1636986740119146,0.1750091105918669,0.1889346864540846,0.2013326987148976,0.213908977217117,0.2255408036046282,0.2370957095709571,0.2483834536516231,0.2590365478156098,0.2684356159452893,0.2781655374348847,0.286522386350624,0.2938699489837234,0.3023394549070066,0.3095632815460402,0.3167973715135381,0.3237113652661132,0.3295293494201595,0.3352363067292644,0.3406826885154133,0.3462350001941722,0.3517851725820705,0.3532309514516064,0.3537253067737853,0.3542884509740397,0.3551874656722458,0.3563629881608461,0.3566992964209238,0.3563434605292276,0.3569311874785114,0.3576359886129246,0.3584700233815839,0.3588194457474154,0.360068090497021,0.3612125026221942,0.3616299955096542,0.3628495660559305,0.3639988457805409,0.3659853008727606,0.3680118825648643,0.3694292277787595,0.3716725865027737,0.3731247713135748,0.3750932537567942,0.3763905663975589,0.3788275119249115,0.3805891886738488,0.3814730265529256,0.3821745216985534,0.3806571605703658,0.3815012651110486,0.3862745098039216,0.0,2.520871226121164,62.46289209098496,204.364700773124,317.8030076890277,fqhc8_100Compliance_baseline_low_initial_treat_cost,80 -100000,95660,41483,390.0167259042442,7311,75.0888563662973,5732,59.25151578507213,2348,24.08530211164541,77.31725194233033,79.72485505907366,63.30264576078415,65.08455048030092,77.02482709844027,79.43459262727549,63.19514346708272,64.98113953165264,0.2924248438900605,290.262431798169,0.1075022937014296,103.41094864827484,76.35408,53.738450978933066,79818.18942086556,56176.51158157335,242.63741,149.42350452765427,252980.21116454108,155540.27831939486,266.90106,127.7608465514315,275156.439473134,130534.76491568131,3811.06555,1705.7729253606951,3942997.742002927,1742398.278881579,1409.87501,610.8008277002432,1456355.948149697,621284.797455836,2309.87984,961.1127201058756,2372454.6100773574,968043.1691885636,0.38008,100000,0,347064,3628.099519130253,0,0.0,0,0.0,20477,213.35981601505333,0,0.0,25006,257.4952958394313,2092400,0,75098,0,0,0,0,0,47,0.4913234371733222,0,0.0,0,0.0,0,0.0,0.07311,0.1923542412123763,0.3211598960470523,0.02348,0.3159600674186438,0.6840399325813562,25.3307671844795,4.562283985655943,0.3206559665038381,0.2041172365666434,0.2377878576413119,0.2374389392882065,11.105576060788293,5.552393814485392,24.89311477477854,12992.397650065675,64.40502450149303,13.644736651938157,20.636531906490283,15.21159662033993,14.912159322724667,0.5457083042568039,0.7658119658119659,0.6877040261153428,0.5942773294203962,0.1160911094783247,0.7014492753623188,0.8954802259887006,0.8528735632183908,0.7484076433121019,0.1624548736462094,0.4963235294117647,0.7095588235294118,0.6364932287954383,0.5481410867492851,0.1042435424354243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027657612935252,0.0049586776859504,0.0069111095324598,0.0088406548181568,0.0112122907869969,0.0130691657329122,0.0153734723440719,0.0173770022883295,0.0195617032596018,0.0217302215027764,0.0239563348346653,0.0265626766135413,0.0286578963621765,0.0308988184836175,0.0329047250193648,0.0350129332643559,0.0370285903841768,0.0389859903833172,0.0412227401365074,0.0427820865649236,0.0571070365146528,0.0704442163905585,0.083636020071805,0.0964941815197491,0.108356454862906,0.1232075012435046,0.1368118280140526,0.1494190442719149,0.1612603272661201,0.1728999034438365,0.1859097274587956,0.1993698980144209,0.2122620459962776,0.2235395866176213,0.2355682369012471,0.2468239363235261,0.2577436962127047,0.268379953642235,0.2782840606026215,0.2865521191294387,0.2944792378129956,0.3020442072992359,0.3092155910603674,0.3158267083947864,0.3232551636942752,0.3297309300862356,0.3355876164712955,0.3415847884742656,0.3472483065007058,0.3521859041184466,0.3526560290850333,0.3538129179624074,0.3553997155450411,0.3560988304009021,0.3575344098194601,0.3573349727195881,0.3566223746249464,0.3578839882736585,0.3587070042974301,0.3597910105926138,0.3609214856605547,0.3619372631495406,0.3634677011300388,0.3657219973009447,0.3668145562101486,0.366635125900226,0.3675660160734788,0.3697564062005694,0.3722790500123881,0.374464507346759,0.3765090775043774,0.3783246467143087,0.3806365201862364,0.3823188181607239,0.3852817974105103,0.3877551020408163,0.3879350348027842,0.3891825945506303,0.3893996755002704,0.3908132530120481,0.0,2.567348060030923,60.4340641530146,217.9177582430665,331.76806349772727,fqhc8_100Compliance_baseline_low_initial_treat_cost,81 -100000,95851,41478,388.4466515737968,7315,75.1270200623885,5722,59.060416688401794,2375,24.339860825656487,77.4717338221379,79.75813849573751,63.40399372213196,65.09045471655462,77.17584474438102,79.46490908509793,63.295074708692106,64.986120278576,0.2958890777568825,293.22941063958297,0.1089190134398521,104.33443797862196,77.715,54.66500819238997,81078.96631229721,57031.23409499115,240.70636,147.955017382046,250489.15504272256,153722.9839876955,266.66078,127.38376795928198,274740.3156983235,130163.47811347696,3800.44775,1697.7379320963614,3924048.554527339,1730455.7145998967,1399.07309,598.2767877617356,1444979.676790018,609550.1330469629,2343.11556,971.9220507071714,2403209.606576875,976978.1740436248,0.38093,100000,0,353250,3685.407559649873,0,0.0,0,0.0,20260,210.71245996390232,0,0.0,24940,256.7213696257733,2092560,0,75038,0,0,0,0,0,50,0.5112101073541225,0,0.0,0,0.0,0,0.0,0.07315,0.1920300317643661,0.3246753246753247,0.02375,0.3150116670987814,0.6849883329012185,25.492010843877345,4.556008143639927,0.3275078643830828,0.2016777350576721,0.2280671094023068,0.2427472911569381,11.116234396627789,5.592952710096455,25.03570984358666,13059.822487881986,64.10000789494198,13.500666714269528,21.069591098936037,14.417608490267629,15.112141591468786,0.5489339391821042,0.7755632582322357,0.7091782283884739,0.5770114942528736,0.1180705543556515,0.698741672834937,0.9393063583815028,0.8402625820568927,0.7220216606498195,0.1291512915129151,0.5026309768931595,0.7054455445544554,0.6669019054340155,0.5379377431906615,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368660795627,0.0045992847808248,0.0067634711715913,0.0087900933820544,0.0111068205836923,0.013277442591594,0.0152493684296308,0.0174828384622446,0.0198313011866103,0.0220076904197005,0.0242833294073065,0.0263470965889278,0.0285276955950032,0.030692458071818,0.032831328406057,0.0348730340675568,0.0370952725768077,0.039187844616724,0.0414005794212018,0.0433560902506036,0.0571035288228914,0.0708177389340748,0.0843988429613482,0.0975002364215238,0.1095359058952494,0.1253158534651371,0.1375046396945755,0.150088838293028,0.1622853848125053,0.1733108941032704,0.1872268979916912,0.201124142031022,0.2141530642165966,0.2263471092427799,0.2368733248385254,0.2484906119379879,0.2594424761013437,0.2690251572327044,0.2782812606203412,0.2867176061493411,0.2958265469961072,0.3036820913812219,0.3110780352966192,0.3182981981766409,0.3251086244143991,0.3309853951678447,0.3369047470213909,0.3423233350279613,0.3473878955675731,0.3525279417967102,0.3538871469135636,0.3550876903849587,0.3562607252370101,0.3572077463265512,0.3586708203530633,0.3584816241668195,0.3589593639855221,0.3601711587645091,0.3616527628503676,0.3621878842966369,0.3625980639967047,0.3648787423967138,0.3651106268856856,0.3662157629960872,0.3679379040203782,0.3698123044838373,0.3706074832835396,0.373113725490196,0.375405433683256,0.378074296316766,0.3796912490379827,0.3832217617681436,0.3872561439067646,0.3907524234497615,0.3911545089029293,0.399251026818072,0.4058396415881353,0.4058236611688047,0.4023783185840708,0.4034749034749035,0.0,2.533663177281733,59.04721528694149,222.29212336298647,327.5910069583866,fqhc8_100Compliance_baseline_low_initial_treat_cost,82 -100000,95740,41442,388.803008147065,7347,75.42302068101108,5742,59.40045957802382,2304,23.61604345101316,77.34438518034166,79.69776313900903,63.33412346583962,65.07250106006603,77.05901798850962,79.41441751452341,63.22834674136082,64.97079996103082,0.2853671918320373,283.3456244856194,0.105776724478801,101.70109903521052,76.6326,53.87108626896917,80042.40651765197,56268.107655075386,240.94915,148.18196540140963,251085.8053060372,154190.89764091247,264.04795,125.78222058485404,272955.70294547733,129086.62251029654,3804.97576,1700.2786932832298,3935597.2216419466,1737250.5883468022,1395.93757,603.1826603339027,1441342.667641529,613313.7250197434,2264.87996,947.4665310983904,2323533.632755379,952995.1290970404,0.38105,100000,0,348330,3638.291205347817,0,0.0,0,0.0,20320,211.64612492166285,0,0.0,24658,254.6897848339252,2093351,0,75196,0,0,0,0,0,48,0.5013578441612702,0,0.0,0,0.0,0,0.0,0.07347,0.1928093426059572,0.3135973866884443,0.02304,0.3192282958199356,0.6807717041800643,25.39947018402747,4.615237927963203,0.3369905956112852,0.1969696969696969,0.2326715430163706,0.2333681644026471,10.988766580242164,5.501649163647405,24.47468998736799,12999.24290107127,64.3095290542528,13.098794718886966,21.7197375419027,14.75673681570556,14.73425997775758,0.5414489724834552,0.7648099027409372,0.6764857881136951,0.5703592814371258,0.1291044776119403,0.6827133479212254,0.9041916167664672,0.8506493506493507,0.6950354609929078,0.1535836177474402,0.4971402425074354,0.7063989962358845,0.6218601493550577,0.5370018975332068,0.1222540592168099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022588225760706,0.0045623675646081,0.0067979585831836,0.008896742938972,0.011295931024666,0.0133254608939969,0.0154705366788283,0.0179805092096535,0.0200365787618395,0.0223472833316279,0.0245204524961062,0.0266242430462896,0.028552921096465,0.0308441725625894,0.0329392588924651,0.0352082838157636,0.0373360659979919,0.0392632692427353,0.0413020432767257,0.0430625,0.057328697758428,0.0713014902880107,0.084439968951266,0.0966283154197253,0.1089517141019286,0.1244633377746758,0.1378706885579737,0.1509708996116401,0.1632238907995642,0.1740179260657003,0.1882589785548187,0.2008914082952898,0.2132511254648659,0.2247294194817973,0.2351970608617219,0.2458419152658738,0.2566025941553367,0.2665406639891097,0.2759364358683314,0.2848191170068962,0.2944287565966114,0.3022964558265836,0.3093825845024566,0.3160522273425499,0.3217425135867913,0.328242484103957,0.3349303900664743,0.3403660947764526,0.3460245779317683,0.351298460887502,0.3535289516977264,0.3543538164783687,0.3552451499118166,0.3561397921070157,0.3572013641711469,0.3577234523132711,0.3574142069206682,0.3579437867386758,0.3601727595249113,0.3617516470925236,0.3622714546103688,0.3638507888686276,0.3644429493513866,0.3652298979729426,0.3651431198432093,0.3666081672211017,0.3680412371134021,0.3704266362830738,0.3712105151579393,0.3738942480887003,0.3750343689854275,0.377438370846731,0.3792577529232333,0.3782897246166756,0.3778954334877564,0.3826852182185753,0.3845440494590417,0.3835303878863306,0.3737402015677492,0.3740726278797345,0.0,2.221259446277971,60.45162077953562,214.7913324799924,336.3882253086803,fqhc8_100Compliance_baseline_low_initial_treat_cost,83 -100000,95678,41425,388.78321035138697,7264,74.89705052363135,5628,58.3206170697548,2291,23.68360542653484,77.28108161739658,79.6666519246891,63.29287913429015,65.05520135604098,77.00321045078383,79.38526117907259,63.19221991744882,64.95496887904021,0.2778711666127549,281.39074561651967,0.1006592168413362,100.2324770007732,77.00066,54.13645542758751,80478.96068061623,56581.92628147276,237.25671,145.690379331384,247470.9024018061,151768.30549487242,264.59291,126.13676249057411,272346.4955371141,128796.0461182342,3745.39007,1664.18723632284,3884223.7191412863,1709008.064887268,1352.13054,581.1012153566692,1401443.3934655825,595587.0257077588,2256.11342,924.5734169517686,2333207.9474905413,945061.702230194,0.37985,100000,0,350003,3658.134576391647,0,0.0,0,0.0,19984,208.34465603378,0,0.0,24785,254.8861807312026,2090398,0,74997,0,0,0,0,0,25,0.2612930872300842,0,0.0,0,0.0,0,0.0,0.07264,0.1912333815979992,0.3153909691629956,0.02291,0.3218631427449954,0.6781368572550046,25.37246634833182,4.597481847740139,0.337775408670931,0.1945628997867803,0.2359630419331911,0.2316986496090973,11.153653953315944,5.530758501479786,24.19358661883157,13042.477651925594,63.169881803393366,12.608210432226992,21.58746531444592,14.87246548517868,14.101740571541765,0.5465529495380241,0.7634703196347032,0.7012098895318254,0.5820783132530121,0.102760736196319,0.6927710843373494,0.9172413793103448,0.8461538461538461,0.7137931034482758,0.1141732283464567,0.5013953488372093,0.7080745341614907,0.650319829424307,0.5452793834296724,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002096945752925,0.0044201583552144,0.0066878431452144,0.0090825044955349,0.0113398287329902,0.0136145167202965,0.0154985011317984,0.0176828521256176,0.0198722208024533,0.0219756599351068,0.0242589535634823,0.0265000616041726,0.0285996359485391,0.030930915460306,0.0330574247615902,0.035391916622724,0.0372388361180455,0.0392112091333679,0.0414100857119081,0.0432756949438729,0.05797298285571,0.0719431239922099,0.0847879252254048,0.0969890165383158,0.108954342138577,0.1250806613703441,0.1380715832378041,0.1506831808645459,0.162178342723356,0.173828083059546,0.1886088372644816,0.2020156046814044,0.2147065550025592,0.2262533125999255,0.2373921570787928,0.2484999722730549,0.2593047949033195,0.2688144184736694,0.2781426850610241,0.2870708043762471,0.2954835121544272,0.3031133921561734,0.3107542313577113,0.3181168386531,0.3249917842232744,0.3303953881667469,0.3360956834622569,0.3426257731301409,0.3479683240295989,0.3526063590395256,0.3543541109399908,0.3545745767860594,0.3550985165892877,0.3553135888501742,0.3561944589649765,0.3566846647284138,0.3571383157961662,0.3581116757969771,0.3595403325546241,0.3604872273249139,0.3616672322135505,0.3622260772467149,0.3628150060303421,0.3636343099826055,0.3661030947869601,0.3680214381420277,0.3679370006322929,0.369674861221253,0.3722326189046997,0.3739022832508382,0.3749713919531285,0.3776615614493836,0.3777679081276568,0.3795943266737837,0.3811951288586803,0.3847513551732265,0.3875443194080468,0.3917274939172749,0.3974849644614543,0.4006223259432127,0.0,1.988317812758688,58.911054636144144,210.28316343909609,334.4375807858819,fqhc8_100Compliance_baseline_low_initial_treat_cost,84 -100000,95716,41771,393.4242968782649,7196,73.82255840193908,5575,57.5452379957374,2346,24.08165823895692,77.3612597271838,79.72639359741424,63.34108899169471,65.08901661085388,77.07773082660688,79.44315293655812,63.2378533041126,64.98839175889071,0.2835289005769255,283.2406608561229,0.1032356875821136,100.62485196316118,77.44484,54.46967757282031,80910.38070959924,56907.006804583725,239.34804,147.8995236672199,249326.110577124,153786.75988743792,265.03509,127.0473991890114,272411.05980191403,129300.86687560512,3704.53697,1661.154438548815,3828355.019014585,1693912.7802144266,1332.86304,575.8005013926639,1375809.154164403,585034.4224461224,2310.41742,949.63543453133,2375230.870491872,960137.4074202796,0.38233,100000,0,352022,3677.744577709056,0,0.0,0,0.0,20223,210.48727485477875,0,0.0,24715,253.6253082034352,2090814,0,74983,0,0,0,0,0,41,0.4283505370053074,0,0.0,0,0.0,0,0.0,0.07196,0.188214369785264,0.3260144524735964,0.02346,0.3191180353842091,0.6808819646157909,25.398196837295245,4.486265006890761,0.3262780269058296,0.2005381165919282,0.2337219730941704,0.2394618834080717,11.144085083060668,5.715820530374634,24.71659079473253,13040.59773442326,62.658207085586,12.913486105911003,20.69170507824383,14.467913408870796,14.585102492560372,0.5426008968609866,0.7495527728085868,0.7014843320505773,0.5863392171910975,0.1101123595505618,0.7251506024096386,0.9106628242074928,0.8652173913043478,0.7653429602888087,0.151639344262295,0.4855191900164822,0.6770428015564203,0.6460632818248713,0.5380116959064327,0.1008249312557287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285025475835,0.0045826912158325,0.0066164681049704,0.0088691570744988,0.0110749516932777,0.0131463717643225,0.0154589766075908,0.0174707714300301,0.0197940842679971,0.0219389844389844,0.0240841561317707,0.0259949673907461,0.0280260410774341,0.0302452793258681,0.0320410290278308,0.0342089755916012,0.036317130252884,0.0383018907083411,0.0403136080523234,0.0421441967076474,0.0572162418952358,0.0720617941659776,0.0853420605450311,0.0982587849347044,0.110002107925801,0.1252708916961784,0.1396288441145281,0.1521755323110974,0.1638181507434626,0.17548561382445,0.1888929563513426,0.2024642745102281,0.2139642088325469,0.2253864486083477,0.2361737218251786,0.2478277713210471,0.2587347079880898,0.2682214105085698,0.277654315388453,0.286276844177847,0.2941448578136022,0.3018828231829178,0.3097243582160179,0.3172107393480708,0.3239007823397416,0.3304790728574592,0.33669873797326,0.342168490904237,0.3477427790940045,0.3538699159087008,0.355029824821253,0.3557370961752692,0.357022091974752,0.3578249797430258,0.3590808292777306,0.3587551981831295,0.3591942181506958,0.3600184034966643,0.3614216842753103,0.3626198654644339,0.3636261155472052,0.3650995509279497,0.3660082547169811,0.365713900498854,0.3658837473694395,0.3652608067271055,0.3659111826967326,0.3686751580217895,0.3715095676824946,0.3747442737374142,0.3740531607216636,0.3745596242126615,0.3750079209175591,0.3763993252568624,0.375520242149073,0.3758220734186296,0.3803121619533302,0.3765165535677565,0.380249716231555,0.3835839089800893,0.0,2.622269925914072,57.923398467096746,213.7636451455511,323.58756634476003,fqhc8_100Compliance_baseline_low_initial_treat_cost,85 -100000,95646,41391,388.6414486753236,7174,73.66748217384941,5559,57.50371160320348,2313,23.86926792547519,77.2430810454354,79.65019451696304,63.27207635196621,65.05124646089565,76.96164603963906,79.36512346780432,63.16856399673653,64.94879351473774,0.2814350057963395,285.0710491587165,0.1035123552296823,102.45294615791067,76.48784,53.76582212256881,79969.72168203584,56213.35144446062,236.78689,146.0719911268798,246928.14127093655,152083.7535804453,260.49945,124.26417479917755,267753.7168308136,126481.95473735464,3678.38666,1652.036364770177,3808866.93641135,1690622.54827765,1320.69747,573.7075741890217,1366671.6433515255,585820.4139826078,2273.1728,943.041133072259,2347314.597578571,960824.2774625656,0.38031,100000,0,347672,3634.9873491834473,0,0.0,0,0.0,19993,208.3725404094264,0,0.0,24376,250.3607051000565,2091478,0,75056,0,0,0,0,0,29,0.3032013884532547,0,0.0,0,0.0,0,0.0,0.07174,0.1886355867581709,0.3224142737663786,0.02313,0.3047845625165213,0.6952154374834787,25.55252463107111,4.553184347051993,0.3191221442705522,0.2063320741140493,0.2401511063140852,0.2343946753013132,10.88439294158704,5.416933839469222,24.65555377417905,13078.027689330596,62.8328499673037,13.362221005040688,20.21799110910464,14.934897598057209,14.317740255101162,0.5475805000899442,0.7680906713164778,0.6972942502818489,0.5760299625468165,0.1204911742133538,0.6772334293948127,0.9020771513353116,0.8211920529801324,0.6747720364741642,0.1561338289962825,0.5044353871973148,0.7123456790123457,0.6548069644208933,0.5437375745526839,0.1112185686653771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021282633371169,0.0044631083520986,0.0071672943971249,0.0093376278970523,0.011473558939306,0.0136259483680431,0.0157736426204435,0.0177871262865544,0.0199402814136125,0.0220677084400024,0.0243562264770128,0.0263514623726585,0.028497089615171,0.0309476959213738,0.0332166929881604,0.0352301281189572,0.0371582774802399,0.0392551689778294,0.0412020470999417,0.0431718429091212,0.0575184709115799,0.07195231810278,0.0855879975222316,0.0981758470785133,0.1102911678385169,0.126319355487566,0.1398432022436101,0.1533213223457672,0.1654807887782069,0.1769911504424778,0.1910012947777298,0.2036119632733146,0.2154231565188977,0.2262278924601653,0.2381162311397176,0.249570070231108,0.2598029898140591,0.2699430761427042,0.2793524108371136,0.2877524571926645,0.2963679994435492,0.3038033992807862,0.3107787837133242,0.3173082694131345,0.3242022474646018,0.3305247031788587,0.3367126725219573,0.3422859914728484,0.3481985026515545,0.3536346296492529,0.3537753048739314,0.3542373816817065,0.3552592508801945,0.3561999535801323,0.3575842612771293,0.3574933472796911,0.3577521723907438,0.3590797991808693,0.3597637403203929,0.3622355518839122,0.3643949405323768,0.3653366832166856,0.3654381965552178,0.3664893137343313,0.3667102966841187,0.3663653374799041,0.3671039704097555,0.3679605472478524,0.3706035065258366,0.3713293210001211,0.3711660711799917,0.3736518550474547,0.3744009201865934,0.3751545117428924,0.3778651577634986,0.373722803221541,0.3764318217479994,0.3779527559055118,0.3761185682326622,0.3744631003514252,0.0,2.446755009754422,61.37202101478072,205.46717212681145,323.2283821720832,fqhc8_100Compliance_baseline_low_initial_treat_cost,86 -100000,95824,41753,391.6450993488061,7376,75.79520788111537,5791,59.92235765570212,2338,24.044080814827183,77.44904619750217,79.77419255915294,63.38601454967061,65.10628445762954,77.16384397567437,79.48756268569792,63.28136333094319,65.00341528840383,0.2852022218278023,286.6298734550128,0.1046512187274189,102.86916922571264,77.1551,54.20517491925229,80517.28168308566,56567.201243166935,240.73608,147.7361190097517,250725.5280514276,153672.63838887092,266.96046,127.5129063748317,275341.51152112207,130615.2700713668,3839.56709,1719.154404105332,3976131.5223743534,1763311.4711401437,1416.26784,611.3010267732338,1464185.0684588412,624198.0022930312,2314.1333,963.9922320964356,2382004.2995491736,978240.114645622,0.38296,100000,0,350705,3659.876440140257,0,0.0,0,0.0,20260,210.9074970779763,0,0.0,25054,258.17123058941394,2097370,0,75289,0,0,0,0,0,43,0.4487393554850559,0,0.0,0,0.0,0,0.0,0.07376,0.1926049717986212,0.3169739696312364,0.02338,0.3246753246753247,0.6753246753246753,25.41824901575719,4.611623462950187,0.3147988257641167,0.2084268692799171,0.2322569504403384,0.2445173545156277,11.102585899610135,5.46521366848472,24.830154394711943,13133.949392223994,65.03542366375697,14.046803612145968,20.52295229484213,14.867965818087455,15.59770193868143,0.545156276981523,0.7887323943661971,0.6977509599561162,0.5776951672862454,0.1101694915254237,0.6943042537851478,0.922077922077922,0.8699763593380615,0.6898954703832753,0.1438356164383561,0.4981834695731153,0.7262773722627737,0.6457142857142857,0.5472589792060492,0.1014234875444839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022077514355447,0.0045614426322564,0.0070013089403671,0.0092644325027173,0.0113792367064278,0.0136132691191593,0.015874310532916,0.0179426203574235,0.0200408788962698,0.0221526434805742,0.0243787467336168,0.026549671592775,0.0285978618421052,0.0307535494764586,0.03280700487825,0.0350944253894789,0.0371140849297771,0.0391111848449343,0.0413593201321503,0.0434198746642793,0.0582166774456011,0.0724845265975242,0.0858765825438081,0.0989483195175507,0.1113897640699255,0.1265548545279688,0.140438838244647,0.1532768319527004,0.1649988264663835,0.1764548394696823,0.1907301860415098,0.2032497488142954,0.2155738683864803,0.2266020604155753,0.2371949010178201,0.2483251895907492,0.2595876449424685,0.2698421608028918,0.2797178250334035,0.2886788787439006,0.2968133010045029,0.3050430073643546,0.3123524412125791,0.3196068584546954,0.3263997478696195,0.332808657156911,0.3396539671443551,0.3454040057878303,0.3506312266601196,0.3550285729334,0.3560312852765683,0.3567463588898049,0.3580158361813144,0.3584769492797552,0.3592934266729948,0.3598055848502912,0.3603151296989216,0.3610783542976939,0.3626624427298894,0.3642321597122046,0.3661318673099218,0.3672897933427985,0.3684849499727885,0.3683550820332609,0.3686490649594455,0.3695476680294784,0.371523122129347,0.3730313720549326,0.3724369154755602,0.3743683603230812,0.3748111523142425,0.3771193239557148,0.378997461928934,0.3787751357137396,0.3810966947627616,0.3853287361788134,0.3900938317181972,0.3918200408997955,0.388030888030888,0.3938931297709924,0.0,1.968657846512764,61.254543623776016,225.4244636862399,329.4046087578637,fqhc8_100Compliance_baseline_low_initial_treat_cost,87 -100000,95817,41078,385.19260673993136,7329,75.38328271601074,5706,59.08137386893767,2284,23.586628677583317,77.3497797498425,79.68058981598963,63.33168066437421,65.05904152517708,77.07536408192539,79.4027587813642,63.23169945995466,64.95929722900323,0.2744156679171112,277.8310346254358,0.0999812044195493,99.74429617385285,76.71554,53.96234291434856,80064.64406107475,56318.130305007006,236.76338,145.6290039941501,246632.30950666373,151519.35877156467,268.22278,128.0320691851187,276235.32358558505,130906.04339601925,3786.21534,1704.715009145765,3924320.6737844017,1751950.081035479,1389.18035,600.9875862548995,1440322.6880407445,617720.4736684511,2252.07982,936.618720948945,2327055.741674233,958487.8298649724,0.37749,100000,0,348707,3639.302002776125,0,0.0,0,0.0,19925,207.44753018775376,0,0.0,25131,258.55537117630485,2095055,0,75176,0,0,0,0,0,42,0.4383355771940261,0,0.0,0,0.0,0,0.0,0.07329,0.1941508384328061,0.3116386955928503,0.02284,0.3120041617895695,0.6879958382104305,25.37890497595061,4.54230714678047,0.3317560462670872,0.1943568173852085,0.2365930599369085,0.2372940764107956,10.967177367922554,5.440693935687018,24.308283615635904,12946.936446132524,64.28643649300868,13.0517975362766,21.33851995332626,14.905520783590884,14.99059821981495,0.5513494567122328,0.7799819657348963,0.7131537242472267,0.5888888888888889,0.1004431314623338,0.712878254750176,0.9173553719008264,0.9039301310043668,0.749185667752443,0.1228668941979522,0.4977829638273045,0.7131367292225201,0.6522648083623693,0.5417066155321189,0.0942507068803016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046032019629513,0.0069620638561308,0.009224923548954,0.0116875190723222,0.0137671198004174,0.0160889070146818,0.0181803333911783,0.0203501742694481,0.0226204976509483,0.024910047052311,0.0270137070691513,0.0288828337874659,0.0307885577774574,0.0326473773789261,0.03480021905126,0.0367050347797283,0.0387499611048302,0.0407995761083001,0.042768500395619,0.0571783262742807,0.070513691826727,0.0833508007042844,0.0960972636711361,0.1079901769622361,0.1232158338795965,0.1355464814127379,0.1487772172913607,0.1602832486008459,0.1713053830560829,0.185328850961124,0.1984999675317647,0.2120806683200626,0.2236166072716937,0.2344243357720446,0.2452905456318425,0.2557918935809303,0.2657413447911277,0.2759778945337766,0.2851531634697967,0.2936759533506108,0.3019518869800133,0.3088719028799962,0.3153784421526704,0.3222018482313082,0.3285334187381439,0.3347214927090368,0.3399630972831965,0.3456806113197772,0.3504054518080245,0.3509741791950381,0.3525128261709053,0.3534286803427974,0.3544994269631951,0.3551296000953928,0.3549135256351181,0.3552211799438122,0.3562248004607916,0.3575589364035088,0.3580364183812459,0.3595125253893026,0.3617346432469981,0.3627727100760856,0.3635303353145677,0.3649453703480379,0.3672161172161172,0.3680118897907854,0.3710723506076444,0.3706588086718586,0.3729055258467023,0.3759864969663792,0.3768293331914214,0.3787744227353463,0.3802588996763754,0.3809839795241255,0.3840752201856701,0.382339343504392,0.3830219333874898,0.379746835443038,0.3740219092331768,0.0,1.8070123566249847,63.14507717864009,214.18763323703692,326.8703645485069,fqhc8_100Compliance_baseline_low_initial_treat_cost,88 -100000,95796,41331,387.2917449580358,7249,74.37680070149067,5663,58.50974988517265,2337,23.967597812017203,77.41775944651599,79.74488550929946,63.37436231324406,65.09487883561057,77.12822672205199,79.4580934431424,63.26788954664614,64.99251680146395,0.2895327244639958,286.7920661570622,0.1064727665979248,102.3620341466227,77.44088,54.470581115760055,80839.36698818323,56861.01832619322,239.86958,147.37454098456948,249754.2799281807,153200.54799279777,268.13229,127.9244085098898,276373.6272913274,130779.7371577515,3740.68468,1692.2518570575444,3863698.713933776,1725387.5305190785,1352.86377,595.3739576900875,1392440.1958328115,601766.3442082363,2307.99356,962.2945819904722,2369003.152532465,968996.0676099992,0.3792,100000,0,352004,3674.5166812810553,0,0.0,0,0.0,20218,210.39500605453253,0,0.0,25083,258.3406405277882,2093399,0,75206,0,0,0,0,0,46,0.4801870641780449,0,0.0,0,0.0,0,0.0,0.07249,0.191165611814346,0.3223892950751827,0.02337,0.32,0.68,25.277096226017598,4.555167539647797,0.3243863676496556,0.207487197598446,0.23079639766908,0.2373300370828183,11.068032310842328,5.505069989095289,24.81230505006011,12961.75146849398,63.798479841578725,13.76102203564543,20.686816400308427,14.686232993268115,14.664408412356751,0.5467066925657779,0.7676595744680851,0.6880783886771911,0.595256312165264,0.1130952380952381,0.7230014025245441,0.926027397260274,0.8760504201680672,0.7310126582278481,0.1672862453531598,0.4873731413736134,0.6962962962962963,0.6223365172667157,0.5519677093844602,0.0995348837209302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020352575461476,0.0043080291526866,0.0066767460502683,0.0088358960817371,0.0110733750915154,0.0133352335192801,0.0156355111609418,0.017677798644566,0.0198184754389909,0.0219326974249805,0.0241084881968859,0.0264840838867959,0.0287312013651175,0.0306998579282228,0.0328617681631643,0.0351897374455163,0.0372252349215548,0.0392203618267585,0.0410139206316226,0.043289051763628,0.0583662865310977,0.0717145634924783,0.0858700209643605,0.0984684552196474,0.1096903307352011,0.1250977326035965,0.1387829477074328,0.150930356193514,0.1627629037593503,0.1737965909212654,0.1878804827155979,0.2004472871064629,0.2131314886408062,0.2244463373083475,0.2350291176793759,0.245452533746404,0.2561069425707691,0.2658279038418333,0.2752138689026117,0.2843480449355938,0.2925256540630489,0.3002978102189781,0.3082394083315611,0.3158373641109142,0.3220129145021119,0.3285752992758264,0.3344293447685248,0.3402405227428746,0.3462792804451922,0.3514942195388813,0.3526152273613707,0.3536333608587944,0.3539382837818797,0.3543771408749945,0.3553989353793083,0.355001456809434,0.3552260558248582,0.3561115035234982,0.3577622998395302,0.3588928571428571,0.3592861566176885,0.3600948241801659,0.3614745848012078,0.3624245135316484,0.3634410678510222,0.3625988168158735,0.3646792927848029,0.3668603549548411,0.3675123326286117,0.3688070469129897,0.3705060682390657,0.3718729955099423,0.3717436775052291,0.3700053480021392,0.3704230696262569,0.3692031156381066,0.3661048689138577,0.3639337558781435,0.3606019151846785,0.3667434715821812,0.0,2.3245646808876157,62.78341202554922,212.91467998925316,320.8236466266691,fqhc8_100Compliance_baseline_low_initial_treat_cost,89 -100000,95728,41386,389.4262911582818,7305,75.29667390941,5697,59.00050142069196,2283,23.524987464482702,77.3893283971574,79.74949433769487,63.35181630130408,65.09335002531664,77.1170144995946,79.47601888616906,63.25348065801016,64.997059287943,0.2723138975627961,273.47545152581176,0.0983356432939217,96.2907373736357,78.53934,55.17658962982485,82044.27126859436,57638.92448377157,239.83987,147.46177632669702,250031.2343306034,153530.6350563023,270.94345,128.82938206739547,279425.8837539696,131967.273285849,3757.06408,1670.446849980152,3894636.250626776,1715134.0301497488,1387.20263,597.9209595600935,1436251.4206919605,611850.1703164903,2249.71156,918.26426595699,2320670.8382082568,933895.2207333096,0.38084,100000,0,356997,3729.28505766338,0,0.0,0,0.0,20205,210.534013036938,0,0.0,25323,261.1357178672907,2086646,0,74873,0,0,0,0,0,48,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.07305,0.1918128347862619,0.3125256673511293,0.02283,0.320754716981132,0.6792452830188679,25.60325254459895,4.548540816757947,0.3287695278216605,0.2130946111988766,0.2266104967526768,0.231525364226786,11.169243254362502,5.603220426666097,23.99038558359805,13043.306457408602,63.83922391701313,14.133738862871176,21.17348047944044,14.226089243496354,14.305915331205169,0.5585395822362647,0.7841845140032949,0.7095568606513615,0.576297443841983,0.1190295678544351,0.7199124726477024,0.9102564102564102,0.8836206896551724,0.690566037735849,0.1547619047619047,0.5073971336107258,0.7245145631067961,0.652235628105039,0.5467836257309941,0.1105904404873477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813393155554,0.004581065604508,0.0068774535163263,0.0088543200349298,0.0110304582977512,0.013008163182216,0.0150517691178868,0.0171731189159404,0.0193936669153034,0.0215391541916933,0.0236909519417973,0.0257828210284401,0.0278462803123715,0.0299125064333504,0.032052472000495,0.034143165683225,0.0361409611363024,0.0380055390168763,0.0399434576087973,0.0418871619650818,0.0564071506139838,0.0707984973892661,0.084411021260082,0.0968342252736276,0.1094995151157397,0.1251083899075777,0.1391357841369508,0.1512928877864952,0.1634939964961757,0.1754961561967255,0.1892019942068935,0.2022800034611058,0.2149068458009956,0.2266331383589351,0.237750005500671,0.2485129761522358,0.2591873402747553,0.2691325813380717,0.2779921027549584,0.2865113188525341,0.2946047533684149,0.3027135725392538,0.3106796116504854,0.3176903088289884,0.3238875736052935,0.3311044614380534,0.338096906597257,0.3438755786153924,0.3491397724183463,0.3546166627106575,0.3559376722550114,0.3569159688131678,0.3574703268267987,0.3580594814879043,0.3592325284386231,0.3585549469045506,0.3582155616680894,0.3588516746411483,0.3591948140566359,0.3600157025088326,0.3612401648557512,0.3621981846585853,0.3633310242038751,0.3648239854796423,0.366647368167125,0.3678628202121283,0.3693048982152021,0.3713737938837728,0.3721951048214348,0.372835583796664,0.3735529627087623,0.3737832923307305,0.3745874587458745,0.3770016775964618,0.380164507894488,0.3797498511018463,0.3789134438305709,0.3834418226200162,0.3797003109980209,0.3811588490342925,0.0,1.9789734493930649,60.72441522940984,212.73597395945453,332.5025908913684,fqhc8_100Compliance_baseline_low_initial_treat_cost,90 -100000,95677,41331,387.5748612519205,7227,74.42750086227619,5609,58.10173813978281,2344,24.143733603687405,77.35982293729873,79.73378741118609,63.33991942654043,65.089102873522,77.07477533153346,79.44624168150418,63.23622111336347,64.98645516491811,0.2850476057652713,287.5457296819093,0.1036983131769631,102.6477086038824,76.69464,53.99830868691732,80159.9548480826,56438.12900374941,238.50381,147.09312797662906,248749.87719096543,153210.11920000752,266.87688,127.70063300070998,275012.43768094736,130530.19401080297,3721.13919,1677.0662674457014,3858345.673463842,1721970.1489399234,1380.11192,601.99287904931,1428499.9111594218,615276.5289963374,2309.6165,955.6173943906308,2381586.0865202714,973197.1544514484,0.37897,100000,0,348612,3643.634311276482,0,0.0,0,0.0,20164,210.18635617755567,0,0.0,24907,256.45661966825884,2093384,0,75027,0,0,0,0,0,51,0.5330434691723194,0,0.0,0,0.0,0,0.0,0.07227,0.1907011109058764,0.3243392832433928,0.02344,0.3151387610153887,0.6848612389846114,25.35992191453536,4.602503650305505,0.3360670351221251,0.1968265287930112,0.2278481012658227,0.2392583348190408,11.1581308691704,5.617618669537093,24.91174770153977,13007.051794001807,63.52271415419079,13.078260576143974,21.43967640924687,14.22300400187376,14.78177316692617,0.5467997860581209,0.7726449275362319,0.6885941644562334,0.5782472613458529,0.1318926974664679,0.6984463276836158,0.8929577464788733,0.8562628336755647,0.7074829931972789,0.1678571428571428,0.4955878845695206,0.7156208277703605,0.6301859799713877,0.5396341463414634,0.1224105461393597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101753959573,0.0046117513505843,0.0066656521077461,0.0089171457008795,0.0112046526761021,0.0132322255585525,0.0153761501543728,0.0176611027221156,0.0198778320292549,0.0219637449873148,0.0243817485196795,0.0263452167222364,0.0285937467880855,0.0307860217046601,0.0327904362087283,0.0350055810492372,0.037298908880101,0.0396087867410649,0.0413760123088438,0.0433840157570578,0.0581358906857214,0.0720649977489503,0.0856168337093981,0.0978011572856391,0.1094318529377643,0.1245913433562216,0.1378340514954044,0.150343990287333,0.1624961251910681,0.1740968898237781,0.1880327144596618,0.2009355914583965,0.2131936056065206,0.2245340221305285,0.2352021319942295,0.2464521132221791,0.2575042139691683,0.2680266294813548,0.2771154042495263,0.2854411175359249,0.2935296907717402,0.3009511107991436,0.308706405841351,0.3164142987205903,0.3236000873807617,0.3301192059504458,0.3360969387755102,0.3416789583439296,0.3463818770226537,0.3519579625571017,0.3534099781912173,0.354111588455607,0.3551946494334777,0.3565281534300467,0.3574327639266759,0.3572315665199859,0.3566828463563973,0.3585135446496165,0.3596549891112368,0.3610951834862385,0.361655322829316,0.3629597284798443,0.3644076717404577,0.3643388216267211,0.3657246376811594,0.3657885787532372,0.3658236890984426,0.3684609313338595,0.3721838918614474,0.3725857940941739,0.3735745362949393,0.3751474214645652,0.3734878064392242,0.3727709722437587,0.3764222200975237,0.3776673132880698,0.3823072139303483,0.3834802213568354,0.3805479452054794,0.3759720062208398,0.0,1.9813355086315656,62.82334112214398,215.4522683897519,314.7678623918328,fqhc8_100Compliance_baseline_low_initial_treat_cost,91 -100000,95856,41713,390.7632281755968,7219,74.09030211984644,5558,57.419462527124026,2362,24.29686195960608,77.34109898624328,79.63265975912009,63.34986309044478,65.04452233565024,77.0488466298353,79.33744528606793,63.243265854400846,64.9387745472812,0.2922523564079853,295.2144730521553,0.1065972360439317,105.74778836904386,76.15344,53.65900190470378,79445.66850275412,55978.76179342324,238.37311,147.2415510405802,248159.3849106994,153088.07068997266,261.81572,125.42758755329952,269040.1435486563,127749.54155104495,3731.17848,1677.1950581838555,3858491.0490736105,1715710.8143296773,1361.41272,592.3814508868484,1404156.276080788,601878.6209385411,2334.10704,975.0532973496591,2402953.868302454,991205.4015417424,0.38251,100000,0,346152,3611.166750125188,0,0.0,0,0.0,20081,208.92797529627776,0,0.0,24415,250.6989651143382,2095621,0,75210,0,0,0,0,0,44,0.4485895509931564,0,0.0,0,0.0,0,0.0,0.07219,0.1887270921021672,0.3271921318742208,0.02362,0.3165637724944174,0.6834362275055825,25.458573289094986,4.642915170043652,0.3296149694134581,0.1899964015833033,0.2284994602374955,0.2518891687657431,11.104035965970905,5.5047053347188255,25.362603267396583,13114.532231465617,62.86188856723649,12.37153079187778,20.77232886083897,14.211118124274249,15.506910790245492,0.5275278877293991,0.759469696969697,0.6926855895196506,0.5645669291338583,0.1028571428571428,0.6790393013100436,0.9145569620253164,0.8629550321199143,0.7006802721088435,0.1178451178451178,0.4777724665391969,0.6932432432432433,0.6344322344322344,0.5235655737704918,0.098821396192203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024302566958635,0.0045799515659989,0.0067857468885981,0.0094320466221292,0.0116479986990018,0.013758853700236,0.0160966614709088,0.0184850803366488,0.0206728903233714,0.0227605184283478,0.024706280024993,0.0264607242854066,0.0285429633738008,0.0308043706401629,0.033034858679636,0.035123028651639,0.0374211560335022,0.0395366667357384,0.0413292637348947,0.0435497295047856,0.0579764548857676,0.0712643437911502,0.0855155654250639,0.0984141986977525,0.1104828094561154,0.1264443083162586,0.1401406809466302,0.152803470051668,0.1650376661900595,0.176486978887579,0.1902650581664388,0.2041052483588739,0.2169195982084619,0.2279558844425984,0.2386846216471934,0.2500581633670496,0.2603659897344342,0.2699975249195598,0.2790272797421814,0.2878527579256001,0.2964261335369593,0.3045558219778934,0.3118632033607479,0.3185986024379427,0.3257939449920393,0.3322640345465762,0.3380348732337909,0.34353507565337,0.3499591804999417,0.3548787902820736,0.356253624849948,0.3575298090840168,0.3582899029702131,0.3591793502705996,0.3599241824992911,0.359295438812399,0.358798174038905,0.3591115514821237,0.3605580434033758,0.3615567653315066,0.3619204483065447,0.3630359743809733,0.3641153691516601,0.364002443273081,0.3642387332521316,0.3654866555793141,0.3659373288362305,0.3680305683808311,0.3694172692471288,0.370877910005209,0.3725057471264368,0.3746447149675551,0.3778969546063972,0.3795148247978436,0.3808292636215646,0.3811129848229342,0.3801961700140121,0.3841738417384174,0.3927181767648693,0.4027885360185902,0.0,2.2369400951808407,60.76131615744902,211.15841731589725,319.350913106087,fqhc8_100Compliance_baseline_low_initial_treat_cost,92 -100000,95655,41566,390.6852752077779,7391,76.09638806126182,5778,59.95504678270869,2277,23.490669593852907,77.31769350596971,79.7397144527274,63.289715480586615,65.0812134405275,77.04593637323968,79.4666842408451,63.18980540536428,64.98328951281269,0.2717571327300305,273.0302118823005,0.0999100752223398,97.92392771481671,76.56286,53.88156621805873,80040.62516334745,56329.06405107807,241.7748,148.89103850105278,252341.9267158016,155239.04500658903,267.57753,128.02425010807687,277188.8766922796,131823.27108603434,3808.56994,1700.806737654452,3954029.1882285294,1750523.6711666423,1389.2774,602.6023578242315,1441781.2555538132,619372.5553543794,2243.1812,924.739092996214,2316178.05655742,940735.091667044,0.38125,100000,0,348013,3638.210234697611,0,0.0,0,0.0,20360,212.39872458313727,0,0.0,25057,259.4636976634781,2090485,0,74937,0,0,0,0,0,51,0.5227118289686895,0,0.0,0,0.0,0,0.0,0.07391,0.1938622950819672,0.3080773914219997,0.02277,0.3104999357409073,0.6895000642590927,25.184528923914176,4.607475748825968,0.3286604361370716,0.2012807199723087,0.2409138110072689,0.2291450328833506,11.04913895261203,5.513558501390771,23.925207251019728,13062.551330988876,64.71162374852182,13.491691094077916,21.388207867433536,15.471415072568282,14.360309714442067,0.553478712357217,0.7773000859845228,0.69826224328594,0.5876436781609196,0.1132930513595166,0.7080028839221341,0.9277777777777778,0.8398268398268398,0.7272727272727273,0.1400778210116731,0.5046686404008198,0.709838107098381,0.6527487821851079,0.5479704797047971,0.1068416119962511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024009238998298,0.0044315093497748,0.0063553299492385,0.0085569975304627,0.0108457883545128,0.0131519967400162,0.0154652847203803,0.0175829340307931,0.0197517218793814,0.0220793997355392,0.0242880900075964,0.0266001747982108,0.0287511971084039,0.0308338233321986,0.032949320659193,0.0350176433457164,0.0370973260479631,0.0391490864520686,0.0411385159746071,0.043080613202628,0.0580323551542513,0.0720071252685073,0.0851951052990914,0.0971394266214479,0.1090248590195788,0.124148741249113,0.137713733116545,0.1502014624682883,0.1621520422791364,0.1733946333813135,0.187704290229668,0.2008539135900131,0.2130656441316804,0.2241097930974052,0.2351722237531,0.246927138800142,0.2583853986207821,0.2685371870107342,0.2784414817506643,0.2873793751575859,0.2961028432451213,0.3038170262076715,0.310802326545601,0.3176816463670726,0.3236303453647139,0.3301176876958377,0.3363557804300725,0.3426952702272582,0.3494814622763806,0.3552118448013748,0.3562497470966698,0.357473481195757,0.3586994851541011,0.3597888953152111,0.3608270408466615,0.3610356940162287,0.3605215570571999,0.3614341085271317,0.3618391825855175,0.3634386365257078,0.3647921029015854,0.36517640562447,0.3661516648943934,0.3668464933791074,0.3688263090983233,0.3693461448324349,0.3689171103960819,0.3703087736914773,0.373508353221957,0.3754224148212937,0.3774561443686163,0.378306171520171,0.3818273983018629,0.3828387886203732,0.3862088535754824,0.3906101048617731,0.3911769242634583,0.3861526039563989,0.3883842554362786,0.3898045228056727,0.0,1.7821428986054884,61.68024367107432,214.81018746785483,338.7300133727841,fqhc8_100Compliance_baseline_low_initial_treat_cost,93 -100000,95709,41507,390.10960306763207,7249,74.48620296941772,5659,58.54203888871475,2407,24.68942314724843,77.34880342590687,79.70792462578153,63.338894218876014,65.07789805409739,77.05209481254093,79.4117280407954,63.22956346268453,64.97186906807848,0.2967086133659364,296.1965849861343,0.1093307561914898,106.02898601891296,77.15136,54.3036127452967,80610.35012381281,56738.25109999759,241.88289,149.31527509501132,252129.9041887388,155412.1295750779,269.89707,128.73297787195287,279139.1614163767,132208.18892599086,3771.8499,1703.703175499944,3903727.862583456,1742985.3666780656,1433.51714,621.6483149663045,1484419.44853671,636151.4434027151,2370.22064,985.921308739538,2434399.8370059244,994148.0836299936,0.38021,100000,0,350688,3664.1068238096727,0,0.0,0,0.0,20450,213.03116739282615,0,0.0,25180,260.16362097608373,2088623,0,74939,0,0,0,0,0,55,0.5746586005495826,0,0.0,1,0.0104483381918105,0,0.0,0.07249,0.1906577943767917,0.3320457994206097,0.02407,0.3293562344303133,0.6706437655696866,25.30407387555477,4.540652574273104,0.3212581728220534,0.2002120515992224,0.2330800494787064,0.2454497261000176,11.03583135004401,5.576586441243424,25.64431605157696,13046.533162149968,63.97521375967561,13.342606063881975,20.451819390718665,14.80700190928208,15.373786395792884,0.5447959003357483,0.7872903795233892,0.680968096809681,0.5928733889310084,0.1231101511879049,0.6940350877192982,0.935064935064935,0.8600917431192661,0.7114093959731543,0.1372549019607843,0.4945677846008502,0.7112299465240641,0.6244573082489147,0.5582761998041136,0.1191135734072022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.004672991931233,0.0066967683019633,0.0091731935513363,0.0112554904831625,0.0134168066371456,0.015656375182199,0.0176992957027661,0.0198559092534873,0.022179008239087,0.0244142426665026,0.0264381382460101,0.0286231288040796,0.0306287385077884,0.0326700296062472,0.0347603252839001,0.0370163286014558,0.0389192666452235,0.0408105972383962,0.0428159093040461,0.057210293257582,0.0714547376573898,0.0845670398388399,0.0973674796405799,0.1095381759108841,0.1257616790792146,0.1388806350284404,0.1517003470965269,0.1639172614214282,0.1747623849471132,0.1884554474645292,0.2017854244440837,0.2142585199769392,0.2256215613138925,0.2367531995906284,0.2474843743073717,0.2576886555325923,0.2674721043090539,0.2766346437737049,0.2854785478547855,0.2935345276835242,0.3010287078539914,0.3087390598908062,0.3169752050261378,0.3246606472311001,0.3304567589225174,0.3366567007343099,0.3425990713058965,0.3481108507966916,0.35302734375,0.3540504111066181,0.3549107142857143,0.3559142667663783,0.3571883688600556,0.358481291706387,0.3589113850215666,0.3591098836563338,0.360346132333103,0.3613572101790763,0.3620711278330198,0.3639437254644151,0.3652165295808146,0.3660182946062454,0.3666411836128974,0.3674719209914794,0.3690713536201469,0.3704459844149869,0.3737944162436548,0.3765392781316348,0.3787981904800032,0.3816976615724544,0.3825275199654651,0.3847735303565692,0.3840118085767557,0.386852207293666,0.3838690115221346,0.3846760208103421,0.3876439790575916,0.3819523269012486,0.3746534653465346,0.0,2.267511890660295,62.94688459611609,212.24917021766348,323.8326038015477,fqhc8_100Compliance_baseline_low_initial_treat_cost,94 -100000,95641,41588,390.7529197729007,7238,74.57052937547704,5614,58.186342677303664,2217,22.87721792954904,77.26744378178137,79.68546679842338,63.28338998351626,65.07062618508644,76.998860840158,79.41437924162372,63.18502143051579,64.97362497002929,0.2685829416233645,271.0875567996567,0.0983685530004692,97.00121505714776,77.3509,54.42653419037517,80876.29782206376,56907.11534841247,241.01675,148.6468288501395,251441.51566796665,154861.6794577007,265.84928,127.27650264625956,275008.86649031274,130712.29178123736,3707.00371,1652.7465718469805,3843218.74509886,1695335.370653781,1357.58229,583.9910394223543,1404550.872533746,595701.8950265617,2193.32756,912.2413487675208,2263875.9946048246,926779.7623655604,0.3799,100000,0,351595,3676.195355548352,0,0.0,0,0.0,20307,211.7397350508673,0,0.0,24830,256.6367980259512,2086229,0,74863,0,0,0,0,0,44,0.460053742641754,0,0.0,1,0.0104557668782216,0,0.0,0.07238,0.1905238220584364,0.3063000828958275,0.02217,0.314503415659485,0.685496584340515,25.575599023775094,4.611758971780833,0.3361239757748486,0.2025293908086925,0.2231920199501247,0.2381546134663341,10.99713723915298,5.402526777573316,23.78102858783153,13032.547903005638,63.10465082614067,13.122471038493796,21.29933627391841,13.797910869233077,14.884932644495397,0.5390096188101176,0.7440633245382586,0.6841547429782724,0.5778132482043097,0.1234106207928197,0.7173091458805745,0.934131736526946,0.8702127659574468,0.7203065134099617,0.1550387596899224,0.4840363551619669,0.6650062266500623,0.6224417784050812,0.5403225806451613,0.1158480074142724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026546699900703,0.0050294058000405,0.0075434535412605,0.0097248191203967,0.011871941728807,0.0141565160712103,0.0162326406590941,0.0182135601180206,0.0201842554627347,0.0222629568565606,0.0244910517409363,0.0266774869540206,0.0286704797959015,0.0305921628834324,0.0327618418472146,0.0350153521694631,0.0368912732771299,0.0389844933884125,0.041117548549496,0.0431718429091212,0.058503244954905,0.0727048029995182,0.0857442898398529,0.0982004654150301,0.1101997297525546,0.1258867876580335,0.138401248924714,0.1508428702342135,0.1627824896522957,0.1745699375040268,0.1885305123311011,0.2017786154529403,0.2134182174338883,0.2246126236540313,0.2355693540751505,0.2471775667800441,0.2578938556839109,0.2677844041858895,0.2768933802656977,0.2856700711853915,0.2942981541953264,0.3022088588342654,0.3102006985968859,0.316813267253069,0.3233100998674111,0.3299009803195298,0.3358222979491098,0.3420261804105333,0.3475476150345525,0.3523623088725464,0.3531302328093772,0.3538578225194787,0.355042788149236,0.3564108139450605,0.3571822915889523,0.3566718416158138,0.3562534785719965,0.356880567768282,0.35838546576399,0.3597003691623956,0.3601219604005119,0.3601950442830132,0.3618384988403963,0.3633340822287126,0.3651269649334945,0.3672719638920961,0.3685220729366603,0.3701935239058943,0.3727938315707566,0.3755110220440881,0.3780871334751642,0.3813132680127754,0.384457421549124,0.3857950584772674,0.387293713631594,0.3894927536231884,0.3934093393721693,0.3954930742195576,0.4029807967899111,0.4022708840227088,0.0,1.8993059037562432,58.68795537023271,214.28886086474432,329.2798463397208,fqhc8_100Compliance_baseline_low_initial_treat_cost,95 -100000,95848,41443,389.28303146648864,7175,73.8565228278107,5603,57.977213922043234,2253,23.182539020115183,77.40182060844235,79.71367945892557,63.36325590393732,65.0749004912694,77.12915729821005,79.43969144539562,63.26508978661022,64.97804777105772,0.2726633102323035,273.9880135299444,0.0981661173271035,96.852720211686,76.97536,54.19567740530035,80309.8238878224,56543.3576134091,237.94226,146.38132118918836,247757.417995159,152230.18862072073,262.83061,125.36539705028068,270833.13162507303,128159.19561402746,3681.5,1629.6949791360264,3812150.686503631,1671464.3697688298,1374.52822,586.677596525636,1421289.6982722643,599310.4984200363,2215.11922,901.2570142104172,2281433.707536933,915916.601122326,0.38044,100000,0,349888,3650.4465403555632,0,0.0,0,0.0,20055,208.72631666805776,0,0.0,24533,252.58743009765465,2095510,0,75214,0,0,0,0,0,46,0.4799265503714214,0,0.0,0,0.0,0,0.0,0.07175,0.188597413521186,0.314006968641115,0.02253,0.3223326706428098,0.6776673293571902,25.539319028373008,4.504169969657175,0.3374977690522934,0.2057826164554702,0.2247010530073175,0.2320185614849187,10.99646543672186,5.479029463461533,23.6395862889924,13035.457257872891,62.74188579334298,13.431580929705818,21.36115164857973,13.986160129111214,13.962993085946216,0.5438158129573443,0.7632263660017347,0.6858804865150714,0.5671167593328038,0.12,0.7283582089552239,0.9204545454545454,0.8402489626556017,0.7642857142857142,0.1460176991150442,0.4858081163499883,0.6941323345817728,0.6330731014904187,0.5107252298263534,0.1145251396648044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023896798234067,0.0043985446290121,0.0065535851966075,0.0086027402825598,0.0107461290552149,0.0128771529785414,0.0148703052540386,0.0169422331087977,0.0189504671177709,0.02125830322508,0.0233406796166265,0.0257010305045777,0.0277323794546033,0.0298381450516865,0.0318694692547288,0.0339832408584152,0.0360000414031528,0.0381572535072529,0.0402043974533406,0.0423439548775157,0.0572414799983314,0.0710686959066772,0.0845854026529201,0.0974823279800854,0.1101867160925471,0.1254197908966099,0.1393631895602067,0.1515151515151515,0.1644097277800898,0.1751424531939505,0.1895420619044546,0.2024439786503014,0.214739655191144,0.2263107867451846,0.2366228455856489,0.247871857599876,0.2585368573658971,0.2684654300168634,0.2787324055485612,0.2869275584602882,0.2954353583365137,0.3030745849894786,0.3111597374179431,0.3181317101226993,0.3249766182025774,0.330606008329842,0.3361694673490071,0.3422023249306845,0.3471646815121698,0.3521416695257449,0.3538558888470031,0.3540390623924683,0.354527015606513,0.3560007510869094,0.3574387835409768,0.3576012866661561,0.357448155770144,0.3592839915339054,0.3604899465295454,0.3619714035808,0.3631356090980627,0.3646551894530864,0.3663677505866577,0.3663242239083238,0.3678630670481044,0.3686199885303164,0.370772740233818,0.3721258952129664,0.3739854537788553,0.3747412008281574,0.3752119129438717,0.3746453236254617,0.3782209559987338,0.3824810823205686,0.3842905405405405,0.3808788598574822,0.3845443349753694,0.3865683865683865,0.3900946021146355,0.390081999219055,0.0,1.778162444344806,59.740452372247766,208.62603697605525,327.9574664997022,fqhc8_100Compliance_baseline_low_initial_treat_cost,96 -100000,95706,41409,388.5336342549056,7231,74.43629448519424,5606,58.09458132196518,2296,23.66622782270704,77.32145341825886,79.70728699242962,63.3143933609397,65.07968514692195,77.03455048048717,79.41740762827658,63.209705765195935,64.97592066076717,0.2869029377716856,289.8793641530375,0.104687595743762,103.7644861547733,76.64734,53.92562038278573,80086.24328673228,56345.07803354621,238.03777,146.65158850531702,248249.9216350072,152764.42965370687,264.0199,125.61842548761264,272642.3839675673,128843.16023585864,3683.85962,1654.8074748120046,3819779.13610432,1699784.237957728,1338.48298,583.2741283889902,1386888.9620295488,597816.0918003364,2254.69348,939.0993157273388,2325930.2029130883,957225.626896801,0.37968,100000,0,348397,3640.283785760558,0,0.0,0,0.0,20092,209.4330553988256,0,0.0,24638,254.25783127494617,2095233,0,75144,0,0,0,0,0,45,0.4597412910371345,0,0.0,0,0.0,0,0.0,0.07231,0.1904498525073746,0.3175217812197483,0.02296,0.3206728873702195,0.6793271126297805,25.320533655941016,4.607492072524836,0.3287549054584374,0.2054941134498751,0.2377809489832322,0.2279700321084552,11.075711142783414,5.560087539226724,24.47309401147519,13069.470449832324,63.266032072217726,13.46707676226928,20.80774666035138,14.804567725834374,14.186640923762692,0.5522654298965394,0.7508680555555556,0.7059142702116115,0.5746436609152288,0.1283255086071987,0.6792592592592592,0.8933717579250721,0.8561320754716981,0.7137809187279152,0.1418918918918918,0.511983082706767,0.6894409937888198,0.6610288935870331,0.5371428571428571,0.1242362525458248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202561400664,0.0042896257986005,0.0067808997888582,0.0089836485401571,0.0114764772912257,0.0136500692690082,0.0159193122367602,0.0178988962517485,0.020037211965078,0.0220077180555413,0.024052164284689,0.0262379592926533,0.0282892706511675,0.0302646222332138,0.032422221763455,0.0349465978763221,0.0371022538945972,0.0392291167221893,0.041297045456909,0.0433146775891358,0.0578527934157066,0.0710121109982937,0.0841650138001238,0.0972735212720059,0.1092988416010803,0.1250515976757231,0.138567516504978,0.1510965309361253,0.1625948487763172,0.173827706036295,0.1879093416063426,0.2011322552012296,0.2142826068041416,0.2258675009845534,0.2369029021540628,0.2476966690290574,0.2587439893789118,0.2684961383233465,0.2786585919070949,0.2878935373409531,0.2972985480418811,0.3056598477139549,0.3130217522587062,0.3195951698583814,0.3261738929608965,0.332236517795524,0.3382785602503912,0.3433399931281098,0.3487303600548753,0.3535621445442909,0.3549386457617758,0.3560923936221437,0.3577667577695754,0.3588334803290777,0.3597094459825548,0.3589133239142453,0.3593402755730522,0.3602132841814232,0.3605316342958928,0.361003653556845,0.36242784348382,0.3638564257227326,0.3638486786736239,0.3650986479494275,0.3657349094080031,0.3672448737858966,0.3682419768749459,0.3705469221724346,0.3713637008656166,0.3738430099771607,0.3747873660981104,0.3745759974156032,0.3770691646349288,0.3748639825897715,0.376373888941986,0.3803926320891905,0.3813174777030199,0.3797808559024188,0.3871780515117581,0.3886497064579256,0.0,1.81586060850912,60.01211264529648,215.4338236545774,324.4628840496059,fqhc8_100Compliance_baseline_low_initial_treat_cost,97 -100000,95690,41273,389.0375169819208,7052,72.3691085797889,5450,56.21277040443098,2183,22.36388337339325,77.3455376358958,79.7319134828144,63.32130932583449,65.08706651727256,77.05830424709161,79.44811697720576,63.214343235914335,64.98468266600749,0.2872333888041822,283.7965056086489,0.1069660899201565,102.3838512650741,78.48852,55.182890764020776,82023.74333786184,57668.39875015234,237.5032,146.5854864515842,247478.93196781276,152466.1683055535,263.86056,126.02190240902728,271267.4051625039,128220.47565704463,3600.15671,1622.2816753529764,3719240.840213189,1652279.784045332,1326.571,575.3026430966033,1371260.852753684,586187.9078644139,2159.39728,915.0391437194836,2216054.781063852,920883.4494379642,0.37795,100000,0,356766,3728.351969902811,0,0.0,0,0.0,20059,208.86195004702685,0,0.0,24645,253.02539450308288,2086722,0,74812,0,0,0,0,0,35,0.365764447695684,0,0.0,0,0.0,0,0.0,0.07052,0.1865855271861357,0.3095575723199092,0.02183,0.3140005395198273,0.6859994604801727,25.38013336007941,4.575631898179829,0.3179816513761468,0.2066055045871559,0.2359633027522935,0.2394495412844036,11.020378484853303,5.461546588364216,23.514950315183285,12880.430641931678,61.2627429801096,13.04360470315576,19.489445801430595,14.299001326627554,14.430691148895695,0.551559633027523,0.7655417406749556,0.7016733987305251,0.5979782270606532,0.1218390804597701,0.6979472140762464,0.923529411764706,0.8645598194130926,0.7037037037037037,0.1619718309859155,0.5026921194322075,0.6972010178117048,0.6457364341085271,0.5662285136501517,0.1106758080313418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188674657291,0.0043612759267711,0.006447027767907,0.0086892010000203,0.0106718482949458,0.012772458749236,0.0149701209438926,0.0172788823871817,0.0192040248691099,0.0212079629705484,0.0232706015076149,0.0253389482333607,0.0274131830151415,0.029697256970921,0.0316411934075687,0.0338068358042305,0.0355104366292018,0.0374272162080812,0.0393327370676206,0.0413562430317491,0.056138701759883,0.0699572971615172,0.0831024349286314,0.0960743258172788,0.1080345558684851,0.1230655312847093,0.1363626716471761,0.1490089149722538,0.1612306639727184,0.1721468981138557,0.1859362030119767,0.1995862487273357,0.2113238768111997,0.2227000645634308,0.2343079192444023,0.245539573128837,0.256834749215776,0.2660957246874261,0.2751228480315943,0.2841127702455112,0.2923258532294837,0.3001087604813528,0.3081891962236471,0.3153185525890258,0.3219050856511551,0.3287114569993104,0.3341838010905998,0.3394221357841081,0.3445658498739251,0.3498590658834066,0.3505337599827906,0.3507634845655278,0.351124623483377,0.3523736622423778,0.352355220379745,0.3527143053918792,0.3533887022126418,0.3540898314014752,0.3556343456143055,0.3561317373853211,0.3567702939348862,0.3579893422413107,0.3584384359050069,0.3586746392123364,0.359579925470648,0.3605774278215223,0.361830792158661,0.363713987539926,0.3672878723704645,0.3696851023017903,0.3712076145151695,0.3753934802326202,0.3760343629587518,0.3772720329922102,0.3812458519010145,0.3856540084388186,0.3890440720049659,0.3845836768342951,0.3783259423503325,0.3767605633802817,0.0,2.865897586690098,59.56542801801301,199.96515882735807,314.5888702249417,fqhc8_100Compliance_baseline_low_initial_treat_cost,98 -100000,95607,41385,388.4861987092995,7205,74.07407407407408,5631,58.29071093120797,2315,23.774409823548485,77.23812690061078,79.6693192780591,63.25655152000609,65.05412885102471,76.95044749817441,79.38424275276363,63.14947325425368,64.95155673076063,0.2876794024363676,285.0765252954801,0.1070782657524134,102.57212026408524,77.01562,54.18726898566702,80554.37363372976,56677.09371245517,240.95986,148.96312601572683,251432.4160364827,155208.56842671233,269.66989,128.81473713301494,278898.7521834175,132163.41399266096,3700.48574,1669.8003010515465,3832466.336146935,1708473.9099140717,1325.09829,578.8425719405935,1369765.1008817344,589220.0382195798,2267.70144,949.770281293593,2331367.368498123,957179.9604024364,0.37887,100000,0,350071,3661.562437896807,0,0.0,0,0.0,20353,212.26479232692168,0,0.0,25135,259.7194766073614,2082900,0,74836,0,0,0,0,0,44,0.4602173481021264,0,0.0,0,0.0,0,0.0,0.07205,0.1901707709768522,0.3213046495489243,0.02315,0.3210449542500994,0.6789550457499005,25.33568076069465,4.558408940408239,0.3404368673415024,0.2067128396377197,0.2301545018646776,0.2226957911561001,11.18362256983665,5.702509519788109,24.68171948485478,13010.82200449298,63.57666404661352,13.53163143246409,21.70658224823745,14.56576102726284,13.772689338649142,0.5515894157343278,0.7714776632302406,0.693792383933229,0.5817901234567902,0.098883572567783,0.7109704641350211,0.9228571428571428,0.8568548387096774,0.7363344051446945,0.1283018867924528,0.4977429318127821,0.7063882063882064,0.6368754398311048,0.5329949238578681,0.0910010111223458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002381628020107,0.0046859310498716,0.0065693282430346,0.0087210188752121,0.0111850675785702,0.0133765294375337,0.0156050793003212,0.0177236137784497,0.0199046703352903,0.0221134247641678,0.0243679717639333,0.0265407615955282,0.0287975628081226,0.031071524298468,0.0332021769887742,0.0353162736312745,0.0375703666842907,0.0395383384756027,0.0415582252389181,0.0435775987981471,0.0585461730666694,0.0721838550454293,0.0848314193555165,0.0976100443442631,0.1098707278948924,0.1249126003771426,0.1384824625715894,0.1515852540457559,0.163730924812191,0.1752148689299527,0.1898909020276467,0.20304452949659,0.2151871144918375,0.2264827072283347,0.2370816983378157,0.2482936195243221,0.2593873075546007,0.2695032260975499,0.2789324596430156,0.2872192544086392,0.2952300244941551,0.3029282714282362,0.3101331940454426,0.3165231405753873,0.3225822185910958,0.3288676117667433,0.3346609541279793,0.3401415287144901,0.3454505254396005,0.349944335471558,0.3505200654646774,0.3510464762642041,0.352518494419848,0.3535168728582215,0.3544728792061479,0.354090993043157,0.354467868288644,0.3554564229657166,0.3568405477943706,0.3586569899040707,0.3595130867361359,0.3606948838875291,0.3621264561877427,0.3630073696783935,0.3645924202772124,0.3656388823173777,0.3647485534989493,0.3672108238582227,0.3687679387690018,0.3689796895574797,0.3697988426563792,0.3738492828088204,0.3781144994611044,0.3824994253313922,0.3822751322751322,0.3806466951973371,0.377672571777642,0.3753026634382566,0.3753106876553438,0.3742780130920292,0.0,2.4029281606662463,62.81983347215047,208.0386699862712,323.98766303007363,fqhc8_100Compliance_baseline_low_initial_treat_cost,99 -100000,95724,45051,426.7895198696252,5990,61.39526137645731,4743,48.9845806694246,1908,19.577117546278885,77.33641368994157,79.71072572047942,63.332022412709286,65.08891032587108,77.09405883370441,79.4700068840387,63.24063948045716,65.00079904413228,0.2423548562371564,240.71883644072045,0.0913829322521309,88.11128173880434,158.3406,111.33543176200624,165413.6893569011,116308.79587355966,397.62729,261.3479824390151,414854.9475575613,272488.03062869824,377.78048,183.811790259496,391227.0694914546,189386.3896424485,3429.42135,1570.5555844894602,3545725.00104467,1603823.5285711626,1103.44222,490.9667197391678,1140002.110233588,500167.2723028367,1873.42586,800.7243984189059,1924495.236304375,807357.5387903984,0.38058,100000,0,719730,7518.804061677322,0,0.0,0,0.0,34419,358.9904308219464,0,0.0,34513,357.11002465421416,1577904,0,56644,0,0,0,0,0,66,0.6894822615018177,0,0.0,1,0.0104467009318457,0,0.0,0.0599,0.1573913500446686,0.3185308848080133,0.01908,0.336676217765043,0.663323782234957,24.43793786418065,4.380720918606566,0.3143580012650221,0.2331857474172464,0.2230655703141471,0.2293906810035842,10.809465028179572,5.484094687007637,20.44609774639802,12164.151727012191,54.02159240572239,13.29443820659628,16.869529137626408,11.879369751221976,11.978255310277714,0.552393000210837,0.7965641952983725,0.6827632461435278,0.5737240075614367,0.1047794117647058,0.7018633540372671,0.918987341772152,0.868421052631579,0.6833976833976834,0.1338582677165354,0.496671490593343,0.7285513361462729,0.6192619261926192,0.5381727158948686,0.0959232613908872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0043712410876378,0.0068328341540179,0.008903162858769,0.0110881661800758,0.0135864583545515,0.0157456225333727,0.0179497651623442,0.0199155531473321,0.0220297688512171,0.0243557414355126,0.0266832303238126,0.028773279310593,0.0308792023731048,0.0329886907710087,0.0351638810505752,0.0370585128964453,0.038975859242891,0.0409491046280802,0.0431032686819024,0.0580895098469185,0.0724748373056561,0.0858458214918674,0.0982465730384324,0.1106274439537506,0.1256777466575067,0.1375702321636807,0.1491124512087468,0.1603433183167154,0.1701113218261493,0.1826841317848647,0.194905905256327,0.205604225995087,0.2156725631808398,0.2248870618494377,0.2350878745313174,0.2445717597752909,0.2536310085885156,0.2615578259834216,0.2692246093303132,0.2757181665799664,0.2826853885332461,0.2899292221526391,0.2953413769989466,0.3019110598798762,0.3070021046930963,0.3118288978612232,0.315585389730094,0.319352417434517,0.3232984465942536,0.3221092329449794,0.3211696937959926,0.3204197046835996,0.3197169647508248,0.3187894486125997,0.3172363011597226,0.3164988503924522,0.3174376171220041,0.3185472834268509,0.3194216057767927,0.3197271262041306,0.3200790513833992,0.3204803648764567,0.3218947321448492,0.3224008265455681,0.3232888842587769,0.3240141933268471,0.3262586065314888,0.3297295393717425,0.3324289818065751,0.3370740008278526,0.3399030694668821,0.3423944476576055,0.3462372251471043,0.3470846036585366,0.3513808139534883,0.3515028811711571,0.3515785157851578,0.3485557083906465,0.3517320137038447,0.0,2.231851590227162,56.39435857991402,175.31649600365384,262.976234418119,fqhc8_100Compliance_implementation,0 -100000,95599,45099,428.1111727110116,6064,61.9671753888639,4793,49.42520319250201,1916,19.519032625864288,77.26635035352784,79.70334178326823,63.26822878755484,65.07149077319939,77.02729497322414,79.47004226127282,63.17803383826466,64.98686827392578,0.2390553803036965,233.2995219954057,0.0901949492901792,84.62249927360688,158.44356,111.45219969307362,165737.44495235305,116582.80180239712,399.66794,261.98074878684724,417367.4097009383,273342.2083691746,381.29284,185.61893416237604,394409.062856306,190702.77141565323,3413.00754,1568.092685666513,3521303.5492003057,1591526.51603627,1135.71014,501.47691488956,1168230.2116130923,504799.39632167673,1876.67286,794.9605189435399,1914441.887467442,789532.0541770123,0.38041,100000,0,720198,7533.520225106957,0,0.0,0,0.0,34535,360.5163233925041,0,0.0,34933,361.1125639389533,1570773,0,56394,0,0,0,0,0,60,0.6171612673772738,0,0.0,0,0.0,0,0.0,0.06064,0.1594069556531111,0.3159630606860158,0.01916,0.3285601888276947,0.6714398111723052,24.53571911131457,4.3313803116728415,0.3198414354266639,0.2376382224076778,0.2182349259336532,0.224285416232005,11.253924889840446,5.85495544235557,20.57571482082015,12150.668034398584,54.53710587033178,13.551781351037294,17.43325936891302,11.681838953039549,11.870226197341903,0.5578969330273316,0.7787532923617209,0.6999347684279191,0.5621414913957935,0.1172093023255814,0.7134099616858237,0.924170616113744,0.8442211055276382,0.7068273092369478,0.1228813559322034,0.4997133027522936,0.6931659693165969,0.6493392070484582,0.5169385194479298,0.1156138259833134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022396530057967,0.0046056302307887,0.0070785136136979,0.0090694647795672,0.0114818509395167,0.0137998511980594,0.0162577563683866,0.0186178637483011,0.0208213964148317,0.0227379854493288,0.0248573422554292,0.0266430935591965,0.0286484872816363,0.0306838919877511,0.0326908775409023,0.0347253838831174,0.0367951907131011,0.0388230528753777,0.0407052382885273,0.0426570436269959,0.0574182688789218,0.0709906624327978,0.0843339321168573,0.0970905490245649,0.1098623683626799,0.1250675339258662,0.136912480602028,0.1485673444133899,0.1596998469262141,0.1699315502734765,0.1823683614356451,0.1941282334829462,0.2052348949426514,0.2150041635622562,0.2249154018275409,0.234728400128673,0.2435681170753505,0.2521620647718571,0.2605929073823673,0.2683290512020554,0.275554525974402,0.2823512877270651,0.289154771071492,0.2959263212174267,0.3015077821011673,0.3065451941831469,0.3110175016298079,0.3158156308539243,0.3199787363698834,0.3242472266244057,0.3230391958715658,0.3218268939498251,0.3210650954300696,0.3197576914179967,0.3192384918569197,0.3178385995006969,0.3166698346321992,0.3160689043032315,0.3160199073044757,0.3166815822444961,0.3175155046043976,0.3186540825633501,0.3200411790659075,0.3222043082986251,0.3238852735598939,0.3257326437862404,0.3282285714285714,0.3300306080590704,0.3319017109061465,0.3339975291914079,0.3383856829802776,0.3425043903996594,0.3440329218106996,0.3468335229427379,0.3474939444754984,0.3494484862708284,0.3490737928940176,0.3534967845659164,0.3567921440261866,0.3605877920120572,0.0,2.7659376519800363,56.65207928930189,178.6402750669427,261.9554929029357,fqhc8_100Compliance_implementation,1 -100000,95714,45277,429.4774014250789,5840,59.88674593058487,4555,47.08820026328437,1766,18.147815366613035,77.34534288058313,79.71484856180453,63.32656324425341,65.07484339250018,77.12758715289532,79.49744573382618,63.24474315709661,64.99553068932948,0.2177557276878161,217.4028279783471,0.0818200871567995,79.31270317070016,159.19728,112.0331762867419,166325.5532106066,117049.53570098216,398.03656,262.3795675995167,415378.7220260359,273648.4588933723,381.04461,185.65815699686289,394865.45332971145,191504.0751900052,3260.97186,1492.878602826032,3374204.337923397,1527105.3024965029,1089.93592,487.3095702544436,1124203.220009612,494648.7015853412,1735.75306,733.038736177634,1784669.3691622962,739343.0953935077,0.3807,100000,0,723624,7560.252418663937,0,0.0,0,0.0,34318,358.02494932820696,0,0.0,34745,359.89510416449,1568360,0,56274,0,0,0,0,0,74,0.7731366362287648,0,0.0,0,0.0,0,0.0,0.0584,0.1534016285789335,0.3023972602739726,0.01766,0.3389525368248772,0.6610474631751228,24.52594851852285,4.265808792625399,0.3145993413830955,0.2428100987925356,0.2206366630076838,0.2219538968166849,10.95822399803995,5.600294238654705,18.83703100379811,12114.161743255923,51.718517606798805,13.24819476646693,16.158703962218585,11.170237892161554,11.141380985951743,0.554774972557629,0.7784810126582279,0.6845778087927425,0.5562189054726369,0.1246290801186943,0.7121831561733443,0.9285714285714286,0.8726287262872628,0.6486486486486487,0.1238938053097345,0.4969987995198079,0.6914285714285714,0.6193609022556391,0.5300127713920817,0.1248407643312101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0047838161068655,0.0071222758816606,0.0093946780418444,0.0116841912587199,0.0140196906912104,0.0160443615383831,0.0182211651337749,0.0203422403042136,0.0225609319179863,0.024542267238021,0.0264633394947627,0.0288206373043138,0.0309164709275971,0.0329514963880289,0.0349596857556336,0.036816868443128,0.038802407638024,0.0408933528806263,0.0426744755572692,0.0572520678419249,0.0713149411813957,0.0840608604407135,0.0973348905232368,0.1087814452135742,0.12410705781503,0.1362598864058601,0.147105501411301,0.1580595515465019,0.1682380324141112,0.1808885488615669,0.1926946276382617,0.2041615880201985,0.2149222684475585,0.2243428080570025,0.2347496425047943,0.2440959821428571,0.253788432764459,0.2624524768768087,0.2698474506390581,0.2771903847488605,0.2831236554110934,0.2890140578406778,0.2941881222519079,0.3001518187890933,0.3051327869862592,0.3090913642679217,0.3138832742204085,0.3187624698779571,0.3230314076656893,0.3221184304527747,0.3209381757082455,0.3208655026888171,0.3195722637031892,0.3186125035327016,0.3164981617647059,0.3143751878153321,0.3144645842210495,0.3159955066889063,0.3162642563564222,0.3165730703931043,0.3171370094855748,0.3190840969337702,0.32075640195575,0.3206866705135603,0.3219712739383847,0.3219671201814059,0.326766983016983,0.3291139240506329,0.3314841045011016,0.3323974277692238,0.3340721975934135,0.3363329583802025,0.3386119108955902,0.3381597384399813,0.3386187455954897,0.340142230292026,0.3406902086677367,0.3494271685761047,0.3488372093023256,0.0,1.946948803009404,53.73596849583891,172.9795404613688,246.5657653426623,fqhc8_100Compliance_implementation,2 -100000,95657,44985,426.7539228702552,5818,59.41018430433738,4546,46.86536270215458,1787,18.304985521185067,77.2498286400838,79.64879441400028,63.26585613190741,65.03915466609308,77.02075760449137,79.41994259284995,63.18105988111283,64.95658766723311,0.2290710355924403,228.8518211503288,0.0847962507945823,82.5669988599742,157.52352,110.8384824866545,164675.3713789895,115870.7491209786,395.69342,261.397946367884,412997.3342254096,272604.6043341146,378.75785,184.35644502700876,391538.7164556697,189445.2409686494,3246.54308,1484.441932965861,3352226.758104477,1510439.5072220785,1101.25254,490.21262680914896,1134631.1613368597,495976.4943562312,1756.71454,738.6822337814224,1802243.6831596224,743319.7364494185,0.37952,100000,0,716016,7485.244153590433,0,0.0,0,0.0,34214,356.994260744117,0,0.0,34636,357.6633178962334,1570871,0,56388,0,0,0,0,0,61,0.6272410801091399,0,0.0,0,0.0,0,0.0,0.05818,0.1532989038785834,0.3071502234444826,0.01787,0.334155161078238,0.665844838921762,24.49875387222192,4.357902079370934,0.3286405631324241,0.2322921249450066,0.2135943686757589,0.2254729432468104,11.240121535726985,5.85780643772882,19.000572343622327,12089.929221575563,51.755162911115534,12.702786735943947,16.92954224456177,10.871953385067744,11.250880545542064,0.5657721073471184,0.7926136363636364,0.6934404283801874,0.5746652935118435,0.1375609756097561,0.7520661157024794,0.9316455696202532,0.896640826873385,0.7216981132075472,0.1944444444444444,0.4982014388489209,0.7095310136157338,0.6224028906955736,0.5335968379446641,0.1223733003708281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400461931196,0.0045230054661433,0.0069528323910638,0.0092968908758382,0.011667056585733,0.0139429246532092,0.0160908757188889,0.0183897483024455,0.0206792869634584,0.022695616550594,0.0249251220612973,0.0267696637869931,0.0291405992756009,0.0309208220815897,0.0328109190774122,0.0347916020270969,0.0368263442030111,0.0388073337347646,0.0408023137263061,0.0425702727500208,0.0575679374797571,0.0714151081698046,0.0845034947421447,0.0971580686230153,0.1089161152794926,0.1252791212047453,0.136487203992779,0.1474471690271428,0.1585326714878685,0.1682746024924795,0.1809245311522109,0.1925713046307341,0.2038014438071143,0.214239489300091,0.2233419057184799,0.2335281438190262,0.2431379572829445,0.2516781173497591,0.2597056714583262,0.2671109323835238,0.2743697820508354,0.2812933079651422,0.2878910335647047,0.2934199446649825,0.2991273826354019,0.304433838621133,0.3093319273932364,0.3139263137730668,0.3179792941298728,0.3227954512358182,0.3206382231349131,0.3195860641600552,0.3194880054251081,0.3182747372236317,0.3175606193832993,0.3156538148790254,0.3128655434214071,0.3140615490895932,0.3144397843019772,0.3152756131205102,0.3175375939849624,0.318830525272547,0.3199874095058231,0.3213917178877473,0.3215043906204767,0.3227823368503321,0.3233437588854137,0.3265056844874565,0.3294191654434892,0.3310511318663923,0.334872770080594,0.338112053971433,0.3390318742563717,0.3439490445859872,0.3449757190885319,0.3510175273497236,0.3538274235276213,0.3534675615212528,0.353344298245614,0.3474320241691843,0.0,2.5154389754445114,52.68479767675512,174.69605308179172,246.6402608556288,fqhc8_100Compliance_implementation,3 -100000,95747,45608,433.0997315842794,6151,63.03069547870952,4792,49.484579151305,1887,19.353086780786864,77.32698317968122,79.68674739259693,63.31555014592704,65.06122821940872,77.08580726376056,79.44512492703902,63.22647684739052,64.97423515733851,0.2411759159206639,241.62246555791,0.089073298536519,86.9930620702064,158.08452,111.23378826177424,165106.49942034736,116174.69817516398,399.13276,262.2906019753768,416315.7174637325,273395.14760292944,384.33652,186.9417719039338,397447.52315999457,192185.37818106168,3451.69928,1568.4699622466903,3568216.330537772,1601335.574218191,1173.02415,521.6930576760276,1212061.68339478,531799.0199964775,1854.27588,778.8680877687858,1904137.153122291,787077.4007610289,0.38399,100000,0,718566,7504.840882743062,0,0.0,0,0.0,34541,360.1888309816496,0,0.0,35108,362.6849927412869,1572054,0,56465,0,0,0,0,0,56,0.5848747219234023,0,0.0,0,0.0,0,0.0,0.06151,0.1601864631891455,0.3067793854657779,0.01887,0.3373531230674088,0.6626468769325912,24.49607561869388,4.320726345558761,0.3236644407345576,0.2257929883138564,0.2230801335559265,0.2274624373956594,11.006416224185765,5.719907351123438,20.20516025387045,12265.123071307062,54.33756675052933,12.941299845057417,17.62564862190551,11.740254449028903,12.030363834537493,0.5546744574290484,0.7763401109057301,0.6982591876208898,0.5594013096351731,0.1256880733944954,0.7148562300319489,0.9037433155080212,0.875609756097561,0.7027027027027027,0.1707317073170731,0.4980225988700565,0.7090395480225988,0.6345311130587205,0.5218417945690673,0.1125592417061611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605693733853,0.00439050110523,0.0065667945516919,0.0089503413524057,0.0110958555809814,0.0132885290972964,0.0154280703185544,0.0174142049282404,0.0197150566207432,0.0216476801670402,0.0237570589621916,0.0261042733814426,0.0282366243511332,0.0305301852404831,0.0325242668372136,0.0344286009506096,0.0365036803909186,0.0384515647204041,0.040399526056499,0.0422652595609913,0.0578151751785192,0.0718829117234741,0.0859700991801388,0.0989309028982307,0.1110361547380626,0.126798684753074,0.1391437146705412,0.1502166483908401,0.161000374071501,0.1704157633776213,0.1828057809822496,0.1951594563863771,0.2074139356748052,0.2176762096465414,0.2276940011007154,0.2376091678858004,0.2477799001373948,0.2569964525029563,0.2649521191398484,0.2727731169486086,0.2804748118123914,0.2863300420487953,0.2926953574095364,0.2987661433578184,0.304399654547445,0.3099832214765101,0.3153448967315019,0.3202028180497872,0.3238603951667271,0.3281087005321467,0.3267192025324981,0.3252567526638949,0.3240295878830574,0.3227182668807034,0.3218635221341581,0.3198594833404921,0.3188807863031072,0.3194932798790706,0.3205231216343277,0.3209438370579108,0.3216867018687039,0.320947882285511,0.3224051749485445,0.3229588526167409,0.3233249127872007,0.3243066969293783,0.3254807007548782,0.3305992897771911,0.3339292599992989,0.3371089108910891,0.3396740364098606,0.3406157426999577,0.3459778042510502,0.3490187163749337,0.3511285941743935,0.352760736196319,0.3554097359987792,0.3558603994351422,0.3631331303625795,0.3722910216718266,0.0,2.2408843960942657,54.99473057592608,184.74826317514731,260.4024995007116,fqhc8_100Compliance_implementation,4 -100000,95766,45186,427.89716600881314,5940,60.87755570870664,4677,48.32612827099388,1844,18.93156234989453,77.39144353273707,79.73248426847537,63.36142006586866,65.08822787484374,77.16194671281818,79.50352614457464,63.27688171037461,65.00649937209046,0.2294968199188929,228.958123900739,0.0845383554940468,81.72850275327903,158.20486,111.29240179370746,165199.40271077416,116212.85403348524,400.13016,263.0208762637151,417308.3766681286,274137.22643079504,383.49734,186.14537796489412,397691.3205104108,192145.97644644385,3338.55928,1516.8426279313476,3450855.8778689723,1548597.6107714078,1128.58285,494.7160054121072,1166905.6345675918,505074.4652132773,1811.40086,757.9971938019991,1861235.6368648584,764168.5528751424,0.3811,100000,0,719113,7509.063759580644,0,0.0,0,0.0,34444,359.135810204039,0,0.0,35139,364.17935384165565,1576459,0,56586,0,0,0,0,0,70,0.7309483532777812,0,0.0,2,0.0208842386650794,0,0.0,0.0594,0.1558646024665442,0.3104377104377104,0.01844,0.330814981514226,0.6691850184857739,24.710580080454243,4.291032781813511,0.3155869146889031,0.2398973701090442,0.2206542655548428,0.2238614496472097,10.805559260396157,5.569407319914315,19.600708721059053,12101.19373031347,53.12142223924979,13.486289197865233,16.661231585668915,11.41454660105002,11.559354854665614,0.5655334616206971,0.7985739750445633,0.6849593495934959,0.5920542635658915,0.1212989493791786,0.738673139158576,0.9407582938388626,0.8657534246575342,0.7379912663755459,0.1409090909090909,0.5033420517291485,0.7128571428571429,0.6255625562556255,0.5504358655043586,0.1160822249093107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019743236675846,0.0043880539538088,0.0070006696292688,0.0090898934603548,0.0111437606125001,0.0135575278886084,0.0156409211330752,0.0176607423429306,0.0197570717853895,0.0219059507244004,0.0239344262295081,0.026192405946384,0.0282572955199342,0.0305263374570305,0.0326674088734949,0.0345938910638473,0.0369266434840205,0.0389442024476249,0.0410897675772317,0.0431159307061679,0.0572731827481107,0.07122527989955,0.0845869788716141,0.0966452834157114,0.1087364514360423,0.124846677663579,0.1370095440084835,0.1479085996340581,0.1589889800102511,0.1686300151136741,0.1817183698951583,0.1937126914092914,0.2050292867932319,0.2151634643742695,0.2243971600026377,0.2346127037164068,0.2440117257598894,0.2535632054809906,0.2620172962925182,0.2692285691404775,0.2766690164445934,0.2829783007513525,0.2898542156851153,0.2949692840121187,0.3000946096744457,0.3051245770532144,0.3103086342621517,0.3142421159715157,0.3192196737429011,0.3242687747035573,0.3232708798150587,0.3215369615072989,0.3203666474532904,0.3189732207200715,0.3176712897107634,0.3165649786455156,0.3140905290062004,0.3141183975921351,0.3141047469863107,0.3144404267825653,0.3156534925954355,0.3158175460777148,0.3161379541549679,0.3168520715356895,0.3178500012046161,0.3181284106634638,0.3189556998064002,0.3218622208241585,0.3236721772775237,0.3243694141012909,0.326248574686431,0.3292260094948525,0.3295820952140102,0.3310213414634146,0.3378618945001405,0.3434307854878478,0.349263600841599,0.3458691738347669,0.3465185586561907,0.3434535104364326,0.0,1.9868446310821444,54.32584838526215,180.05295135814606,253.83215385683312,fqhc8_100Compliance_implementation,5 -100000,95728,45106,428.077469496908,5862,60.17048303526659,4621,47.69764332274779,1782,18.27051646331272,77.37264048070351,79.7328962317907,63.34029949113111,65.0823297428907,77.14909443040987,79.51038911812522,63.25763375269214,65.00228311782456,0.2235460502936348,222.50711366548612,0.082665738438969,80.0466250661458,157.45312,110.76977981762064,164479.46264415846,115712.83117746178,396.85712,261.19029041502336,413973.5187197058,272253.1932530328,376.61138,183.13898058225703,389638.8517466154,188360.7283354536,3360.43935,1516.4113500426984,3473185.0242353333,1546968.5106653557,1126.39568,496.27493083522,1162971.366789236,504940.34829443856,1758.00912,735.6299269916628,1804545.545712853,742681.4533849536,0.38059,100000,0,715696,7476.339211098112,0,0.0,0,0.0,34298,357.66964733411334,0,0.0,34383,355.43414674912253,1578555,0,56657,0,0,0,0,0,65,0.6685609226140733,0,0.0,0,0.0,0,0.0,0.05862,0.1540240153445965,0.3039918116683726,0.01782,0.3356769130150425,0.6643230869849575,24.587469557874197,4.341616119882088,0.3191949794416793,0.2315516122051504,0.2151049556373079,0.2341484527158623,10.856408143119276,5.499976859669673,18.949203545957115,12092.811170213448,52.11658380477542,12.795787392248403,16.595418398795868,11.001414487295628,11.723963526435524,0.5555074659164683,0.7981308411214953,0.7016949152542373,0.5573440643863179,0.1146025878003696,0.7260162601626017,0.9282051282051282,0.8571428571428571,0.7041666666666667,0.1711711711711711,0.4936596874078442,0.7235294117647059,0.6481312670920693,0.5106100795755968,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392405063291,0.0047733422516797,0.0071822027450622,0.0094450763730906,0.0114591912474961,0.0136714375878005,0.0158301394438555,0.0175968644102396,0.0197591691540254,0.0220293178281877,0.0239508679113735,0.0259137577002053,0.0278146240141489,0.0300106077302546,0.031930588368806,0.0339717023057763,0.0358115313337957,0.037889081347951,0.0399110316585943,0.0422455994167274,0.0568851021175291,0.0709831331352278,0.0842446292082997,0.0968375915669108,0.108554261318716,0.1236137980611673,0.1358858779233176,0.147299195505044,0.1581965550014416,0.1689202955274135,0.1819738329833629,0.1943855473820857,0.204791109371262,0.2146622050171686,0.2241292054481043,0.2351689986373757,0.2444280755795136,0.2527581393254379,0.2605742583253828,0.2691271397287288,0.2762955332029215,0.2829139847864248,0.2899319953557804,0.294936405087593,0.3012727781087028,0.3064012923433588,0.3110165247871808,0.315551824576131,0.3200367575683056,0.32346076246489,0.3221866508837535,0.3211079799298921,0.319286689467832,0.3177275878003697,0.3164570121634265,0.3141659271046914,0.3123389862654296,0.3129355436404479,0.3141659995571528,0.3147713533888059,0.3142787869745235,0.3144188973900045,0.3171215569987679,0.3181231358233539,0.3184984798065643,0.3206613283578222,0.3213416360033965,0.324663984781863,0.3273169883498522,0.3316200415898301,0.3327174402884182,0.3337899783971758,0.3385579937304075,0.3395897979262847,0.3410823879486702,0.3422415822933836,0.3449429657794677,0.350422195416164,0.3552091878589007,0.3583902809415338,0.0,2.188172754397959,53.875763283053736,169.69852076027075,255.10461603505493,fqhc8_100Compliance_implementation,6 -100000,95741,45008,426.8808556417836,6133,62.88841771028086,4827,49.81147052986704,1923,19.68853469255596,77.33281654085012,79.69967294794753,63.319784280511655,65.07138061078125,77.09659031765555,79.462773449735,63.23330665523937,64.98675467105669,0.2362262231945635,236.8994982125372,0.0864776252722876,84.62593972456034,158.6662,111.60304919171138,165724.40229368818,116567.66609050604,401.51159,263.6074181113252,418769.1271242206,274732.1300385174,383.9917,186.0430550707908,396908.534483659,191131.1507449837,3468.45293,1566.1759034333954,3581680.0952569954,1595004.145405785,1186.80202,515.9956897842055,1223497.4044557714,522922.800974394,1882.17546,781.2068718481175,1928980.833707607,785254.2926607094,0.38044,100000,0,721210,7532.927376985826,0,0.0,0,0.0,34656,361.3603367418347,0,0.0,35083,362.31081772699264,1572638,0,56448,0,0,0,0,0,80,0.8355876792596694,0,0.0,0,0.0,0,0.0,0.06133,0.1612080748606876,0.3135496494374694,0.01923,0.3285405071119356,0.6714594928880643,24.456515874063903,4.380746063639741,0.3188315724052206,0.2345141910089082,0.2233271182929355,0.2233271182929355,11.23842548607054,5.789202550484724,20.376598181722304,12174.487267485069,54.58794520076878,13.592264973415292,17.34390794659595,11.918384855685623,11.73338742507191,0.5628754920240315,0.7782685512367491,0.6952566601689408,0.5714285714285714,0.1391465677179963,0.7282010997643362,0.8990147783251231,0.8765432098765432,0.6904761904761905,0.1571428571428571,0.5036578503095104,0.7107438016528925,0.6305114638447972,0.5351089588377724,0.1347926267281106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582952507371,0.0044830768918685,0.0067722611432632,0.0089753102733251,0.0112827086639807,0.0133739406779661,0.0155620595763774,0.0177131189382337,0.0199177930921658,0.0222913957465108,0.0244725132768767,0.026481430140981,0.0285737787511438,0.0306999927910114,0.0327163550823325,0.034522320644141,0.0365878917172386,0.038686646465485,0.0405718741876787,0.042450127610813,0.0570611324536495,0.0712126125937627,0.0839939599848999,0.0965612220224766,0.1089245623096139,0.1247383001670649,0.137365317722915,0.1486578538433701,0.1597099096404844,0.1692672307477828,0.1819424855460212,0.1938746808602709,0.2060000434943348,0.2167320747291669,0.2265688581923762,0.2372975187395506,0.247081798906372,0.2560691494749637,0.2645456402805838,0.2722067630858726,0.279034236903632,0.2858397031453019,0.2920427356501551,0.2978396911789387,0.3022639720983363,0.3075262716463565,0.3117932148626817,0.3166656061088132,0.3209028713589717,0.3249412199825641,0.3236062835125158,0.322319056076439,0.3211768354573136,0.3194257709155571,0.3179220856522127,0.317157260844915,0.3142558515187026,0.3148746902131989,0.3153923627114594,0.3158439149664717,0.316077314953551,0.3160007911392405,0.317151832460733,0.3184773138529589,0.3190885929913954,0.3218624537254289,0.3236661248467219,0.326525474399723,0.3308154446123036,0.3337707786526684,0.3363868380275271,0.3389343826438371,0.342668344870988,0.3442224416926233,0.3483587393621996,0.3530177514792899,0.3566732915456352,0.3583686654552796,0.3533461856237951,0.3534383403764887,0.0,2.34125161597185,55.74446212064723,179.48400975572187,267.5771371153211,fqhc8_100Compliance_implementation,7 -100000,95784,45139,427.2947465129875,5978,61.30460202121439,4645,47.962081349703496,1865,19.147247974609535,77.34910350822409,79.6772860193458,63.34642956891118,65.06641971395695,77.117455909127,79.44784506020227,63.259951618280105,64.98339616027931,0.2316475990970872,229.44095914353116,0.0864779506310711,83.02355367763425,159.05318,111.8913663925634,166053.78768896684,116816.11374818694,396.9272,260.4667637974941,413837.5511567694,271371.6600064697,379.25887,183.99772941843145,392464.39906456193,189469.199219048,3326.63728,1515.1876895703183,3437081.7568696234,1546018.1941283636,1104.46459,485.5979653030978,1139492.7336507142,493502.3824138931,1825.54844,767.786248914707,1875362.67017456,773893.4567230169,0.3807,100000,0,722969,7547.899440407583,0,0.0,0,0.0,34283,357.34569447924497,0,0.0,34563,357.4292157354046,1573413,0,56511,0,0,0,0,0,74,0.7725716194771569,0,0.0,0,0.0,0,0.0,0.05978,0.1570265300761754,0.31197724991636,0.01865,0.3356241010068723,0.6643758989931277,24.42595630086528,4.352793568812332,0.3145317545748116,0.2378902045209903,0.2260495156081808,0.2215285252960172,11.157383087247943,5.727891905296782,19.945193455360947,12044.56673420772,52.88284586462984,13.181810120939158,16.588360345680844,11.69344258354957,11.419232814460266,0.5646932185145318,0.779185520361991,0.7118412046543463,0.5619047619047619,0.1282798833819242,0.720125786163522,0.9022556390977444,0.8830845771144279,0.6929460580912863,0.1478260869565217,0.5060776756596501,0.7096317280453258,0.6468366383380547,0.522867737948084,0.1226533166458072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.0045003496893339,0.006786986030374,0.008877512671278,0.0111542685158823,0.0132537969787043,0.0153182902219776,0.0176965862121753,0.0199245930785028,0.0221708392588575,0.0243415188861911,0.0264851053349888,0.0284260829351009,0.0307131755817903,0.0329614813592873,0.0349418496560556,0.0368473334575029,0.0388013272501036,0.040981306954561,0.0430381855859045,0.0571986141258974,0.0708174706103836,0.084339875859755,0.0966443517282692,0.1092353734614736,0.1241968890016062,0.1365539315958495,0.1475144877452283,0.1578683398960634,0.1675433615804077,0.1795738269479121,0.1910580094069308,0.2019177456703956,0.2126026438654231,0.2219043951812531,0.2324296188008062,0.2416890783497561,0.2504216041193533,0.2590613620120477,0.2665346489320299,0.2745723901051243,0.281478102189781,0.2884360503644798,0.2929921042857314,0.2984797338319936,0.3037763996597171,0.3080486247605694,0.312736299408058,0.3168543986312201,0.3210321864594894,0.320905782450465,0.3197547871607659,0.3181357078449053,0.3161811455985203,0.3153237420753344,0.3133538329738247,0.3118002403694098,0.3129028554558725,0.3133742749914704,0.3144305062365054,0.3146096849038245,0.3161899867570613,0.3168924152657693,0.3179885417599141,0.319854447309444,0.3209021534601714,0.3231965245226935,0.3272888102609464,0.3302671459787129,0.3339714445242083,0.3374748766672757,0.3403383698659289,0.3429605179636917,0.3473337923647769,0.3502605400284225,0.3549045503661904,0.3563343153977361,0.3582516339869281,0.3637368711995578,0.3732809430255402,0.0,1.9743956958823288,56.16621435639101,172.87233501015,252.3884428328608,fqhc8_100Compliance_implementation,8 -100000,95668,45164,428.1682485261529,5996,61.48346364510599,4715,48.72057532299201,1854,19.024125099301752,77.31532774038504,79.70771042064902,63.31028192710126,65.07635761495574,77.0852727706859,79.47807122771562,63.22429117792413,64.99250808352832,0.2300549696991396,229.63919293340496,0.0859907491771281,83.84953142741836,157.82668,111.0711565786857,164973.09445164527,116100.42625603714,399.59633,262.8712437802101,417110.9461889033,274195.56194594863,383.91973,186.69717566533856,397761.8221348832,192341.53982255692,3382.75896,1547.5125410798937,3497369.78927123,1579124.4375621155,1132.82885,505.5485599796284,1167115.8799180498,511651.4836305857,1820.54432,767.7402275986524,1869990.550654346,775627.0038440699,0.37917,100000,0,717394,7498.77702052933,0,0.0,0,0.0,34533,360.371284023916,0,0.0,34966,361.9183007902329,1574017,0,56478,0,0,0,0,0,73,0.7630555671697955,0,0.0,1,0.0104528159886273,0,0.0,0.05996,0.1581348735395732,0.3092061374249499,0.01854,0.3263157894736842,0.6736842105263158,24.362121154082377,4.345718321870092,0.3278897136797455,0.2362672322375397,0.2139978791092258,0.2218451749734888,11.073312253330146,5.722609812394236,19.74526636434385,12108.331872191244,53.31926690594969,13.468990601986803,17.237884936227072,11.086324915000471,11.52606645273534,0.5556733828207847,0.7854578096947935,0.6694695989650712,0.5659068384539148,0.132887189292543,0.7258687258687259,0.8909512761020881,0.8836633663366337,0.71875,0.1610169491525423,0.4912280701754385,0.718887262079063,0.5936952714535902,0.5222929936305732,0.1246913580246913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0046837932642592,0.0070023747183827,0.0095300022351817,0.011566162109375,0.0135879806468041,0.0159418220390844,0.0181400337061437,0.0203405430280717,0.022518278821144,0.0247266834861444,0.0268307464740988,0.0290719804129332,0.0311282843894899,0.0331437536771916,0.0351015089305105,0.0368440138838522,0.0390447426596506,0.0408783116113127,0.0429906931663036,0.0574198671068577,0.0716260077478798,0.0846443677123455,0.0967623136252196,0.1088833076549671,0.1241386610214342,0.1358390401868662,0.1470657151986367,0.1576146200705354,0.1676255286263229,0.1808109331551378,0.1932605682605682,0.2044175438978456,0.2142630432641268,0.224053044905332,0.2346181576174366,0.2438114387846291,0.2534694474771236,0.2626068788536001,0.270042871225842,0.2759986564899642,0.2825486385877835,0.2887254727817447,0.2936651746606986,0.2993802406124681,0.3048350510380196,0.3102593320727783,0.3148096304591265,0.318932705005049,0.32361793125297,0.3221240606566649,0.3201619121048573,0.3195212953185498,0.3184860707521938,0.317355838521314,0.3155929038281979,0.3140073698027866,0.3142810350474943,0.3151252622064566,0.3162246934702024,0.3172412505135771,0.3189748644652538,0.3194935649262321,0.3199240562876926,0.3211101766190076,0.3214034722402977,0.3226404863152487,0.3242646130539073,0.3260264317180616,0.329423966810276,0.3335618003198538,0.3362587096431041,0.3409450313112784,0.3409143296196696,0.3426699582225598,0.3413438546150167,0.3408467864757843,0.3455382152861144,0.3461327482172243,0.3546423135464231,0.0,2.0644661795572445,56.84130502598517,165.94060822003033,264.95656056024905,fqhc8_100Compliance_implementation,9 -100000,95626,45229,427.9066362704704,5990,61.36406416664924,4732,48.898835044862274,1804,18.457323322109048,77.3146043072854,79.73380306282334,63.296484254502126,65.0830036591465,77.08993867198406,79.51168200635675,63.211894966693286,65.00200025244955,0.2246656353013492,222.12105646659097,0.0845892878088392,81.00340669695072,157.84362,110.97494745821348,165063.49737519084,116051.01903061249,398.05577,261.7475791258666,415703.0514713572,273160.02878491895,380.12929,184.9969978270412,394244.3059418986,190901.91603947515,3363.40532,1535.3569195438206,3481421.653106896,1569757.042586557,1119.01655,495.3484943157094,1158698.722104867,506503.6541481493,1768.08448,745.1980032594338,1812346.0146821996,748350.0128182353,0.38194,100000,0,717471,7502.886244326856,0,0.0,0,0.0,34421,359.3687909146048,0,0.0,34797,360.5086482755736,1574783,0,56493,0,0,0,0,0,61,0.6379018258632589,0,0.0,0,0.0,0,0.0,0.0599,0.1568309158506571,0.3011686143572621,0.01804,0.3449210652208579,0.655078934779142,24.749162520082518,4.349110033458084,0.3150887573964497,0.239222316145393,0.2311918850380389,0.2144970414201183,11.436488392628313,6.056053837989633,19.196216615174134,12226.455523204064,53.59746948895006,13.629487587450312,16.87871819406229,12.1040883868675,10.985175320569969,0.5720625528317836,0.7932862190812721,0.7189805499664654,0.5639853747714808,0.1182266009852216,0.7420604182804028,0.9270588235294116,0.8787878787878788,0.7261904761904762,0.1513761467889908,0.5082824760244115,0.7128712871287128,0.6611872146118721,0.5154394299287411,0.1091593475533249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0046445122755067,0.0069232955699029,0.0094802621551592,0.011688232421875,0.0139132206151965,0.0162789037239522,0.0184390642557973,0.020752574894396,0.0231641253033763,0.0252923076923076,0.0272727272727272,0.029350945958458,0.0313952170463561,0.0335679927331282,0.0357131778938117,0.0376218747733465,0.0399705152562784,0.0419098750403179,0.0441480152687678,0.0594844886696212,0.072773174385351,0.0859315110210339,0.0985504805414907,0.110790926459567,0.1261647606946209,0.1377706018567695,0.147943687188942,0.1595365704932764,0.1705126552361308,0.1828431478324666,0.195376010752455,0.2056660310542086,0.2156394469884533,0.2253072471755304,0.2356473003717884,0.2451693655636392,0.2539095948442922,0.262140665833428,0.2699255622971314,0.2783605418548107,0.2854886452714956,0.2921470678756599,0.2972930852594226,0.3027510683760683,0.308005026239929,0.3119559779889945,0.3167435770311328,0.3220093403536915,0.3259338398227287,0.3239521925220059,0.3225349595060982,0.3216977278169857,0.3202394205329131,0.319083742376915,0.3173861058311362,0.3166069673820014,0.3172999391136928,0.3180174467428747,0.3181850686498856,0.3201878285596692,0.3224288947938195,0.3233540424467331,0.3239860124284473,0.3250143430866322,0.3265886979921341,0.327985285795133,0.3320456103183999,0.3359668662118892,0.3375221587551704,0.3410545290671473,0.3431790659716737,0.3463304194704735,0.350340651021953,0.3554205607476635,0.3548578903555714,0.3569002778635381,0.3600731112916328,0.3576881134133042,0.3576107899807322,0.0,2.318799196205147,56.54561642146685,174.19851910413507,257.39592837526953,fqhc8_100Compliance_implementation,10 -100000,95634,45149,429.2615596963423,6046,61.89221406612711,4753,48.99930986887509,1921,19.64782399565008,77.29129418892526,79.69085431204421,63.29829466637945,65.06968612735855,77.05145082904704,79.45368626363091,63.20968875586931,64.9846777520637,0.2398433598782219,237.1680484132952,0.0886059105101395,85.00837529484784,158.6937,111.67487411489908,165938.34828617438,116772.96161919308,398.33636,261.2853534849285,415821.1096471966,272513.2834399153,377.88139,183.79161852448777,390294.9474036431,188516.6174701361,3423.03804,1561.2307282141248,3532984.6184411403,1586179.8086602276,1105.74069,487.2202122652015,1136797.2687537903,490042.1281655195,1885.6898,792.2492329461113,1931332.6432022084,794737.6749592765,0.38185,100000,0,721335,7542.652194826108,0,0.0,0,0.0,34403,358.9936633414894,0,0.0,34505,355.9508124725516,1570928,0,56341,0,0,0,0,0,81,0.846979107848673,0,0.0,0,0.0,0,0.0,0.06046,0.158334424512243,0.317730731061859,0.01921,0.3322804801010739,0.6677195198989261,24.26846768291635,4.324478427872366,0.3256890385019987,0.229118451504313,0.2158636650536503,0.2293288449400378,10.95784441185143,5.640176045611485,20.46482121110574,12161.518372788589,54.07538863676707,13.095045994052686,17.469080242891966,11.490636102643624,12.020626297178769,0.5543867031348622,0.8025711662075299,0.6802325581395349,0.5799220272904484,0.1036697247706422,0.7221337579617835,0.9114583333333334,0.883495145631068,0.7330508474576272,0.0892857142857142,0.4941378324277952,0.7432624113475177,0.6065140845070423,0.5341772151898734,0.1073903002309468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271638827831,0.0045320896279022,0.0064654953665641,0.0086881414490397,0.0111304418602285,0.0133116056424097,0.0156310541020046,0.0175220046153531,0.019865450678881,0.0220957139639178,0.024099597998195,0.0262617340755499,0.0283007221776433,0.0302849193673038,0.0321784733549439,0.0339249513880269,0.0359408033826638,0.0377007818421571,0.039725314743523,0.0418256500072976,0.0567747194181453,0.0700205295793531,0.08348295376991,0.0959824012967465,0.1086449461208033,0.1240063929550482,0.1363298583834051,0.1485300383468257,0.1597032158741019,0.1703365720113801,0.1831326080627945,0.1948132106118029,0.2064502786485545,0.215881844159541,0.2254025636221357,0.2354846222951765,0.2452990402556339,0.2542525526573529,0.2631357856494096,0.2709281138626909,0.2780639709202042,0.2840661783633257,0.2906240007579436,0.2962634199004378,0.3022622233033325,0.3079590753699384,0.3121616202125526,0.3163782778216661,0.3206602782712431,0.3260106144218836,0.3256286957341631,0.3245417108543253,0.3232589625701633,0.3215339659761602,0.3209683659197095,0.3187589234997006,0.316043272738809,0.3158960679707567,0.3154277291191745,0.3166436773372982,0.3175453434827553,0.3181962464785938,0.3191337258200168,0.320478037624162,0.3205686382988959,0.3215663781416206,0.3229829545454545,0.3265728996609318,0.3293873823240129,0.3335984727966911,0.3375433157030822,0.3394013374376393,0.3415127751075132,0.3446236559139785,0.347375427919361,0.3495122244971697,0.3501326259946949,0.359086188992731,0.3560606060606061,0.3585488228483211,0.0,2.687336257612939,54.74670561957443,180.3637162409369,261.8039778749154,fqhc8_100Compliance_implementation,11 -100000,95633,45203,429.5170077274581,5975,61.35957253249401,4611,47.66137212050234,1776,18.16318634780881,77.27514686010801,79.68642080981198,63.27600815666828,65.05668286304697,77.05253075988675,79.46723153540961,63.19326215883896,64.97774828316244,0.2226161002212592,219.1892744023676,0.0827459978293276,78.93457988453179,159.09366,111.91429318410012,166358.3072788682,117024.55469977944,400.1785,262.5582340638002,417828.3333159056,273928.2168897228,381.80985,185.0056398369672,396421.69543985865,191242.1055652585,3279.54845,1480.8705818717808,3391057.438331957,1510687.705864508,1075.17039,470.2235138928434,1110350.7262137546,478019.7577131788,1740.86822,729.6637521531467,1782545.1674631145,731027.0951209685,0.38054,100000,0,723153,7561.741239948554,0,0.0,0,0.0,34463,359.72938211705167,0,0.0,34781,360.8691560444617,1566173,0,56217,0,0,0,0,0,77,0.8051613982621062,0,0.0,1,0.0104566415358715,0,0.0,0.05975,0.1570137173490303,0.2972384937238493,0.01776,0.3346607199745142,0.6653392800254858,24.789559564258013,4.353910773389833,0.328562134027326,0.2303188028627195,0.2233788765994361,0.2177401865105183,10.928979741224106,5.504302558493968,18.8209650895432,12149.736761108335,52.10597421304339,12.744261034828172,16.975195947446277,11.477600193798224,10.908917036970712,0.5543266102797658,0.7853107344632768,0.6844884488448845,0.5650485436893203,0.1025896414342629,0.7107023411371237,0.900763358778626,0.8364611260053619,0.7368421052631579,0.0792079207920792,0.4995607613469985,0.7174887892376681,0.6348511383537653,0.516209476309227,0.1084788029925187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047434195189686,0.0070214600984222,0.0091620111731843,0.0110965327149381,0.0133412090598012,0.0152547212138516,0.0177639840328327,0.0200995777657366,0.0221985583224115,0.024340209040649,0.0266894043681042,0.0285814231038314,0.0306956512776111,0.0326621230896323,0.0346871637838285,0.036434309406582,0.0385318432969132,0.0405028514340423,0.0423832219174653,0.0569009668147373,0.0712234889764439,0.0845851629304367,0.0967215187206337,0.1091792542516108,0.1253971616183012,0.1371871845279209,0.1483897790143592,0.1595676369863013,0.1690328543639236,0.1811459660182646,0.1934742298224877,0.2055111072355082,0.2153869772134131,0.2255266555578852,0.2356208206518117,0.2445411914807892,0.2536306293090802,0.2623150466651491,0.2704909560723514,0.2776114900923476,0.2842099091175608,0.2909168554787126,0.2961526453565167,0.3014353484977496,0.3060521932259855,0.310447274732989,0.3153371108422996,0.3207087083971049,0.3250287466462246,0.3238574299084326,0.3219388528362198,0.3203145921718417,0.3186220654562276,0.3171478240197317,0.3148352321450447,0.3140805642980278,0.3142318103518989,0.3151825861834037,0.3165183339266643,0.3181962765459818,0.3190620809339749,0.3206347878813222,0.3200901725330893,0.3216591852900933,0.3232357376878673,0.3241269570653255,0.3283197789430715,0.3314732926230083,0.3372245384157236,0.3404081261646139,0.3431804898783274,0.3462335867311679,0.3507948523845571,0.3517630465444287,0.3572280534351145,0.3596006144393241,0.3597808441558441,0.3693025809994508,0.3571156047310187,0.0,1.9299047325672327,52.69203253229807,171.3596997439342,259.13089676796704,fqhc8_100Compliance_implementation,12 -100000,95675,44901,425.62842957930496,5977,61.02952704468253,4718,48.63339430363209,1874,19.14815782597335,77.28391542799022,79.68088141943988,63.28504443165552,65.0592710461108,77.04335798009286,79.44590770230754,63.19363876262429,64.97375009296884,0.2405574478973591,234.97371713234827,0.0914056690312321,85.52095314195185,156.62878,110.20695032317197,163709.20303109486,115188.86890323696,396.50715,261.024748014938,413766.6684086752,272159.76798007626,382.12277,186.2030606274896,395510.1123595506,191568.5022831133,3377.6638,1567.686220716632,3484281.8082048604,1592483.9725284874,1113.05262,503.7664391229729,1141872.8194408151,505047.9252120451,1834.16586,785.6952438499752,1875731.9675986413,782736.1303133132,0.37951,100000,0,711949,7441.327410504312,0,0.0,0,0.0,34244,357.21975437679646,0,0.0,34979,361.7350405016985,1578699,0,56719,0,0,0,0,0,74,0.7629997386987196,0,0.0,1,0.0104520512150509,0,0.0,0.05977,0.1574925561908777,0.3135352183369583,0.01874,0.3376934120274366,0.6623065879725634,24.39733264059945,4.367001652274415,0.3236540907164053,0.2352691818567189,0.221704111911827,0.2193726155150487,11.278623400747293,5.785695459809493,20.221506855577985,12075.485872651414,53.95150160095723,13.425712088447286,17.31972885673917,11.735718605605108,11.470342050165645,0.5671894870707928,0.8063063063063063,0.6836935166994106,0.607074569789675,0.0985507246376811,0.7334851936218679,0.9211136890951276,0.8495145631067961,0.7254901960784313,0.1552511415525114,0.5027932960893855,0.7334315169366715,0.6224215246636772,0.5689001264222503,0.0833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0044729795520934,0.0067717798511629,0.0091259235170374,0.0116602057324257,0.0139352945970173,0.0158396654597378,0.0179352044776729,0.0197801073894144,0.0219631625315003,0.0244988407164987,0.0267459901564892,0.028689325883164,0.0307330798008842,0.0328681146254851,0.0346147084070201,0.0367653154273398,0.0387102801797967,0.0408405284510558,0.0427028829918075,0.0572171787344734,0.0711862632185111,0.0850563613845798,0.0974955277280858,0.1096556965231893,0.1247419515345282,0.1360619351549971,0.1476242717309105,0.1579431259354287,0.1686167586251315,0.1816329610624811,0.1942358740993553,0.2055082438525036,0.2151721267483762,0.2249032727433062,0.2353692251324014,0.2451410167520297,0.2530436939171213,0.2614706016097494,0.2690687933903264,0.2758944621629458,0.2825495484930221,0.2887947403398841,0.2942490631305852,0.298372073201914,0.3034148991333119,0.3076122789205179,0.3127777990040627,0.3165262475696694,0.320599804641094,0.3200770847932726,0.3182606541129831,0.3166575118660301,0.3161626664356063,0.3147795561373237,0.3130989435593922,0.3113013155809161,0.3126230799527373,0.3129329661495305,0.314101303391679,0.3146763833064122,0.3162584844996626,0.3172442852628252,0.3175859510264655,0.3184338603840286,0.3180425732464064,0.3182427613749822,0.3221402446714592,0.3258970851310112,0.3304712539073319,0.3325907065563335,0.3331569478251667,0.3364322705434579,0.3388281132923722,0.3433790801186943,0.3493664946034725,0.3529322394408994,0.3573730862207896,0.3592017738359201,0.3574159021406727,0.0,2.6660536936928545,57.25250329892021,179.63455540390575,249.9779923429665,fqhc8_100Compliance_implementation,13 -100000,95649,45196,428.5774027956382,5980,61.26566926993487,4684,48.29114784263296,1850,18.92335518405838,77.35161970545354,79.75788709332065,63.31721993396855,65.09436873789836,77.11912374421033,79.52834810517412,63.230565348076055,65.01148803223494,0.2324959612432167,229.53898814652973,0.0866545858924965,82.88070566342753,158.9489,111.78554589897077,166179.36413344624,116870.5850547008,400.37498,263.4974642009135,417916.86269589857,274812.8931833197,385.91225,187.73694800631176,399298.24671455007,192971.9752791524,3324.10412,1527.6400866728693,3430319.219228638,1552182.7623099769,1097.47027,490.3536210432393,1128851.2791560811,494157.1250475321,1811.1978,768.0232246051104,1854244.874489017,768820.7336811731,0.38014,100000,0,722495,7553.607460611193,0,0.0,0,0.0,34525,360.26513607042415,0,0.0,35217,364.0184424301352,1568708,0,56300,0,0,0,0,0,72,0.7527522504155819,0,0.0,1,0.010454892366883,0,0.0,0.0598,0.1573104645656863,0.3093645484949833,0.0185,0.3291220214297137,0.6708779785702863,24.60128088718532,4.324909038506131,0.3234415029888984,0.2365499573014517,0.2239538855678907,0.2160546541417591,11.128841104606854,5.84330158114664,19.716618177328595,12114.237654487431,53.24987391284476,13.230243284155089,17.159662244734825,11.593277785875022,11.266690598079828,0.5640478223740393,0.7870036101083032,0.6831683168316832,0.5853193517635844,0.1195652173913043,0.734789391575663,0.927570093457944,0.8658227848101265,0.7442922374429224,0.1666666666666666,0.4997060552616108,0.6985294117647058,0.61875,0.5433734939759036,0.1049222797927461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045733407696597,0.0067793857957659,0.0090221897098268,0.0110569734205413,0.0136993277653289,0.0160811706521184,0.0181964852804525,0.0203680981595092,0.0225340571545631,0.0244680632784127,0.0265326674476437,0.0285570214254841,0.0305673254363447,0.0325466095129886,0.0346069089667587,0.0365760126031259,0.038606872210111,0.0406891457464185,0.0429900110524889,0.0578856080078573,0.072024625951481,0.0851543967924092,0.0980596418124039,0.1106021909365303,0.1256773920406435,0.1374224921430391,0.1484635635945044,0.1592399619125057,0.169823883161512,0.1823014957241915,0.1937231195900635,0.2045894929350547,0.2144929122653385,0.2238265160025551,0.2344664715274081,0.243870549583175,0.25277830948172,0.2617744572622399,0.2695294602767342,0.2771813322844119,0.283490152533458,0.2895732803481881,0.294150050895156,0.2992403097012208,0.3046673066981759,0.3088088338163285,0.3133484881195789,0.3177754812039788,0.3225704545155388,0.3211549318493427,0.3201922416752489,0.3193952180028129,0.3180736102494553,0.3176070760737289,0.3162489870185471,0.3142654028436019,0.3151046361088805,0.3160139192139738,0.3161140819964349,0.3158968408444378,0.3164452154713559,0.3162200046026067,0.3170682775684893,0.3177332822379766,0.3190247698093632,0.3202907604066102,0.3249631649894981,0.3291134813778633,0.3314208839472955,0.333832471186133,0.339022212886625,0.3435299981309576,0.3469957729468599,0.3444227005870841,0.3459940652818991,0.3494326893590923,0.353877139979859,0.3567172264355362,0.3655509590071455,0.0,2.643984671659225,55.92259000052768,174.6186053263231,253.0571465791473,fqhc8_100Compliance_implementation,14 -100000,95786,45247,428.100139895183,6031,61.6791597937068,4662,48.04459941953939,1824,18.635291169899567,77.3507064425629,79.67847098141051,63.34838135415546,65.06990474347707,77.12933870775572,79.46232014526379,63.26649981506235,64.99289228145537,0.2213677348071741,216.15083614672412,0.0818815390931035,77.01246202169898,158.24908,111.3544917896701,165210.84500866517,116253.19440384826,399.61385,263.2831960268008,416553.4316079594,274226.3502984427,386.40772,188.61013175361617,399431.8271981292,193859.96737269964,3291.52561,1506.241893620744,3393145.7519888086,1529481.559894494,1108.12906,489.8751014787728,1140433.9987054474,495133.154130036,1782.94812,736.8696683118706,1822659.804146744,735533.0354112068,0.38137,100000,0,719314,7509.583864030234,0,0.0,0,0.0,34469,359.1756624141315,0,0.0,35284,364.4373916856326,1576109,0,56483,0,0,0,0,0,66,0.6890359760299,0,0.0,0,0.0,0,0.0,0.06031,0.1581403885989983,0.3024374067318852,0.01824,0.3372369045735084,0.6627630954264916,24.615330622738544,4.310603783288127,0.332046332046332,0.2428142428142428,0.2104247104247104,0.2147147147147147,11.728118241336317,6.237793942914951,19.170135655460744,12188.43254916656,53.10752545353911,13.638091303705815,17.46803897291183,11.107728659514455,10.893666517407013,0.5845130845130845,0.8109540636042403,0.7164082687338501,0.5891946992864424,0.1198801198801198,0.7589703588143526,0.9324009324009324,0.8935643564356436,0.7233201581027668,0.1479591836734693,0.5183431952662721,0.7368421052631579,0.6538461538461539,0.5425824175824175,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284348284105,0.0042781832927818,0.0067581965965478,0.0089793596619535,0.011336830974459,0.0133975383550347,0.0158371040723981,0.0180934983825045,0.0204073290617942,0.022687269750307,0.0248478390064963,0.0269452168648737,0.0291763013205898,0.0312220129088045,0.0333683928313638,0.0352276366491389,0.0373121973428252,0.0394148930655912,0.0413222282224899,0.0434542709905783,0.0579746439192361,0.0727751811537375,0.0853845186179134,0.0980851689927694,0.1106567312050084,0.125932894987209,0.1379548033383174,0.1495237588463789,0.1593022386864664,0.1695872587162256,0.1824727953760211,0.1950868926162891,0.2066687671798437,0.2169097165328527,0.2261919157496674,0.2360951327433628,0.2449939269676067,0.2541790239956861,0.2622614568695888,0.270473422877148,0.277618662663125,0.2845049042503503,0.2910208665839097,0.2972067306541563,0.30286344948031,0.3085225524583103,0.3128404377592324,0.3166978026865937,0.3205096694909773,0.3242367568421884,0.3237506716818915,0.3219482036133819,0.3215833005120126,0.319985559566787,0.319431251484208,0.3174785363390111,0.3157220165195101,0.3159105095436775,0.3158038612677259,0.3175733561790533,0.3187704087377547,0.3188061592051617,0.3192204301075269,0.3206369169268084,0.3217942232179422,0.3227071837652658,0.32308836996337,0.3253012048192771,0.3290898190922876,0.3314129052765416,0.3353917936050501,0.3372105488850772,0.3391111111111111,0.3398768283294842,0.342433402607217,0.3390598902409926,0.3412183055040197,0.3454320478449165,0.3456375838926174,0.3440776699029126,0.0,2.311846056625729,55.972732203153,174.56786232581206,252.45931225276485,fqhc8_100Compliance_implementation,15 -100000,95731,45051,426.6120692356708,6004,61.48478549268263,4665,48.10354012806719,1910,19.523456351652023,77.31652017658898,79.67736503723141,63.31665033110207,65.06264635617384,77.0790917585253,79.44330328984093,63.22710882201376,64.97709856731494,0.2374284180636863,234.06174739048424,0.0895415090883133,85.54778885890357,156.75792,110.32152372787064,163748.10667390918,115240.9394322326,396.62351,261.033125597264,413673.21975117776,272036.3577078104,377.93104,184.33442269520023,391169.2764099404,189691.3480642049,3379.59782,1540.2605012719828,3488825.8139996445,1567465.6289728335,1111.28059,493.0381794994085,1146690.3510879443,500927.8651272101,1875.51578,790.8300780888329,1920291.3371844024,793438.3534643998,0.37961,100000,0,712536,7443.095757904964,0,0.0,0,0.0,34297,357.60620906498417,0,0.0,34454,356.2586831851752,1581076,0,56702,0,0,0,0,0,73,0.7625534048531823,0,0.0,0,0.0,0,0.0,0.06004,0.1581623244909249,0.3181212524983344,0.0191,0.3349312879514222,0.6650687120485779,24.695228241634563,4.387307999760144,0.3196141479099678,0.2287245444801715,0.2229367631296891,0.2287245444801715,11.1908632983029,5.738193010614692,20.366791424987223,12131.195479395452,52.733839144230494,12.799292415772872,16.66154395496743,11.678765881941956,11.594236891548224,0.5601286173633441,0.7844423617619494,0.6841046277665996,0.6076923076923076,0.1162136832239925,0.7300955414012739,0.9168704156479216,0.8432432432432433,0.7169117647058824,0.1707317073170731,0.4975066001760047,0.7021276595744681,0.631578947368421,0.5690104166666666,0.1032482598607888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183729905491,0.0045011709127036,0.0069322506977924,0.009256530883892,0.0114949544270833,0.0137392296254048,0.015777181728249,0.0179324571346874,0.0199895706587867,0.0221551062196058,0.0243417275038963,0.0265633021870828,0.0286895360315893,0.0305102198424548,0.0325635127747578,0.0346534141981877,0.0369224080821464,0.0391046386192017,0.0410178582565851,0.0431118010481022,0.0579882645283885,0.0711878950232305,0.0841933048074502,0.0968104907827074,0.1088086726354308,0.123995091816874,0.1360805491602389,0.147252653656563,0.1575803556163446,0.1679435181012468,0.1805449315334145,0.192516668109793,0.2038416776340834,0.2139263763424397,0.2236804439257481,0.2341210898530161,0.2441979941477361,0.2531255274855117,0.2618531424874289,0.2701600430753015,0.2770192085165471,0.2838191942351785,0.290079318101101,0.2964424507028739,0.3008533294435125,0.3059288049848849,0.3110587822688728,0.3151895671221711,0.3195435647026824,0.3243007685603359,0.3232242940288855,0.3212400237087681,0.3200446252047675,0.3195064017148485,0.31821227054147,0.3162585910652921,0.3146574951659429,0.3147620850272397,0.3154585482019565,0.3168847463703172,0.3176512602672781,0.3178630853339672,0.3174869813539392,0.3187623229969528,0.3204544907440841,0.3241343400156209,0.3257206398083996,0.3300882454542599,0.3360549462101833,0.3386444708680142,0.33992903930131,0.3413804105072849,0.3455243610726425,0.3484354875369346,0.3514095719771471,0.3574230357779627,0.3599448360404536,0.3657454105305628,0.3710033076074972,0.3726016884113584,0.0,2.356431544846594,54.8562957684402,167.19984504027445,262.2718260638693,fqhc8_100Compliance_implementation,16 -100000,95689,45617,432.1499858917953,6143,63.03754872555885,4765,49.32646385686965,1894,19.54247614668353,77.40264542862671,79.7823259098586,63.35728834693722,65.11163714390995,77.16574349716255,79.54245975704492,63.27050711015213,65.02546252380778,0.2369019314641605,239.86615281367563,0.0867812367850859,86.17462010217025,158.56434,111.5439449587614,165708.01241522015,116569.24511569916,400.62574,263.23736672586915,418216.472112782,274638.45031912666,390.78135,190.2455623928288,404267.6065169455,195844.25374548257,3415.94427,1545.095083751774,3539321.6043641376,1584186.545738562,1120.2871,496.7077084786162,1158635.025969547,507011.5170966924,1860.6472,776.5288144340288,1920579.8994659784,791640.4696201407,0.38259,100000,0,720747,7532.182382510007,0,0.0,0,0.0,34588,360.97148052545225,0,0.0,35550,367.5448588657004,1572961,0,56461,0,0,0,0,0,73,0.7524375842573338,0,0.0,0,0.0,0,0.0,0.06143,0.1605635275360046,0.3083184111997395,0.01894,0.329397141081417,0.670602858918583,24.434873211133187,4.368169436274652,0.3280167890870933,0.2274921301154249,0.2165792235047219,0.2279118572927597,10.932198689119012,5.479533993420366,20.159076439986944,12186.453788022309,53.8690873480318,12.991819239021956,17.534899543443974,11.485989583855304,11.856378981710565,0.5582371458551941,0.7859778597785978,0.6967370441458733,0.5852713178294574,0.1058931860036832,0.7462211614956245,0.9134615384615384,0.8535980148883374,0.7835497835497836,0.1594202898550724,0.4908779931584949,0.7065868263473054,0.6422413793103449,0.5280898876404494,0.0932878270762229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018126398720012,0.004155391366921,0.0063400284033272,0.0085920599616099,0.0109008450188629,0.0133800378795592,0.0154862520007748,0.0176156601790142,0.0198661284553676,0.0217876294567931,0.024221488755407,0.026281208935611,0.0283364178490643,0.0303816762446188,0.0326454808089145,0.0348826392980062,0.037152856876592,0.0392673688579878,0.0413724246237688,0.0438362446325092,0.0588136974280759,0.0730933534363613,0.0865495603265546,0.0992447511255101,0.1111544708587339,0.1261426153195091,0.1380364192028524,0.1489551952821451,0.1593024374085037,0.1700498632781084,0.1828607733973703,0.1941672979114814,0.2050824788230049,0.2160318362706083,0.2262957585357268,0.2365580684799575,0.2459036493746795,0.2546504313443565,0.2627399898057427,0.2707983217294875,0.277519308250886,0.2840757939934193,0.2905008146206701,0.295845743471968,0.3018053517950459,0.307138638712535,0.3114993813505305,0.316664762412563,0.3210530395018989,0.3255599715737109,0.3244437282627671,0.3229450880921368,0.3211168794724288,0.3202216465169833,0.3187189054726368,0.3171197312156383,0.3149927311800771,0.3153198956915356,0.3160002044536827,0.3169875848310504,0.3175146313644097,0.3183230424352066,0.3196166267319512,0.3213752867036319,0.3234518156089605,0.3252178436727793,0.3260022192505761,0.3298555628661841,0.3328423120089787,0.337998017839445,0.3406272793581327,0.3435432230522945,0.3454591385625868,0.3452453520268211,0.3468442932728647,0.349988215884987,0.3524276305712973,0.3491743858236005,0.3536652078774617,0.3496608892238131,0.0,1.7749176650499938,55.48082253001871,178.60700571979152,262.4216389157232,fqhc8_100Compliance_implementation,17 -100000,95721,44802,423.92996312198994,6130,62.66127600004179,4853,50.04126576195401,1960,20.006059276438812,77.33907921770925,79.70411205342472,63.32552877917672,65.07465548732341,77.09162280398839,79.46194479486988,63.23226336854624,64.98643558740517,0.2474564137208688,242.1672585548436,0.0932654106304795,88.21989991824353,157.2879,110.6895889727434,164319.11492775878,115637.72732497928,398.37365,261.30875910477425,415482.2348283031,272290.1548299477,379.04746,184.4476815765241,392135.926285768,189636.10172194857,3487.73766,1594.3994741641384,3601614.1912433007,1623638.4222523146,1188.29738,529.342238608169,1226816.7068877255,538404.4030130997,1922.27674,816.6321810228021,1966183.6169701528,816961.461408357,0.37793,100000,0,714945,7469.05067853449,0,0.0,0,0.0,34454,359.28375173681843,0,0.0,34692,358.61514192288,1579395,0,56628,0,0,0,0,0,52,0.5223514171393947,0,0.0,1,0.0104470283427878,0,0.0,0.0613,0.1621993490858095,0.3197389885807504,0.0196,0.3299081426124863,0.6700918573875136,24.222166137625663,4.394477389765342,0.3127962085308057,0.2382031732948691,0.2186276529981455,0.2303729651761797,11.306382714841147,5.880729160062912,20.951062621427347,12074.471075028348,54.90316844145149,13.875203891203938,16.90915541173646,11.915763164117957,12.203045974393133,0.5608901710282299,0.7811418685121108,0.6910408432147562,0.6032045240339302,0.1162790697674418,0.7061098221191029,0.8956310679611651,0.8525469168900804,0.7348484848484849,0.1311475409836065,0.5081460674157303,0.717741935483871,0.6384279475982533,0.5595984943538268,0.1121281464530892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193161562145,0.0044105122277649,0.0066177440800625,0.0087790603153958,0.0111390293276909,0.0135045677214351,0.0157446591546423,0.0180502098030607,0.0203071637456798,0.0224400335934779,0.0245520834401632,0.0267966270554522,0.0290847757448602,0.0312686736312872,0.033288948069241,0.0353656518861681,0.0372726142626279,0.0392582138187252,0.0413451739700101,0.0432046673959472,0.0575017489636737,0.0720070312009542,0.0853272380313293,0.0975024975024975,0.1090945521270537,0.1247990183633748,0.1367335462445225,0.1486056243544557,0.1588645205420888,0.1685429433038924,0.1817211833809344,0.1931295147124121,0.2041806766123679,0.2145663474692202,0.2249080457238508,0.2351375923010399,0.2439746252987558,0.2521641245004784,0.2600926388447391,0.2681210092510862,0.2746303565019046,0.2817437097717963,0.288003218706364,0.2939541348158443,0.2985103619079993,0.3038512191219368,0.3083863389275583,0.3126286106241902,0.3172134750122806,0.321388075837882,0.3196917531873688,0.3184306820370319,0.317233406642982,0.3156287979628451,0.3156525101118249,0.3138720796629644,0.3112581732976584,0.3122124359142895,0.312998527951799,0.3127762764643771,0.3131870193209529,0.3140631487376183,0.3154259883222066,0.3149437120923882,0.3163997791275538,0.3190022888056596,0.3210956873699512,0.3252633233768275,0.3272688957572351,0.3316758820955487,0.3346720825156314,0.3357360243472689,0.3391701560715645,0.3412667946257198,0.3455384036144578,0.3486293206197854,0.3532887575804696,0.3633744855967078,0.3664526932737929,0.3773148148148148,0.0,2.6127755442496614,56.275863136106366,178.65224569754045,269.5857112769621,fqhc8_100Compliance_implementation,18 -100000,95688,44783,425.1525792157846,5857,60.04932697934955,4569,47.16369868740072,1787,18.33040715659226,77.30793472821749,79.68459539543079,63.31631099018998,65.07038637350315,77.08700270053068,79.4635806801807,63.23447201690499,64.99073835726968,0.220932027686814,221.0147152500923,0.0818389732849951,79.64801623347739,157.96858,111.14080986185688,165086.44762143632,116148.6624845289,399.1006,263.14468874864457,416501.3585820584,274423.4382862768,381.52319,185.4209152490808,394888.7634813143,190890.07260762932,3219.35665,1481.7429391255173,3324717.7284507984,1509238.2280732386,1094.45793,490.9634420063936,1128249.0698938216,497559.2362745522,1734.74286,731.3893102614571,1780380.9673104256,735977.1425705126,0.37849,100000,0,718039,7503.929437338015,0,0.0,0,0.0,34556,360.5258757628961,0,0.0,34872,360.6303820750773,1572484,0,56504,0,0,0,0,0,66,0.6792910291781623,0,0.0,0,0.0,0,0.0,0.05857,0.1547464926418135,0.305105002561038,0.01787,0.3338240104677789,0.6661759895322211,24.532200786604054,4.166084648047907,0.3282994090610637,0.238783103523747,0.2241190632523528,0.2087984241628365,11.453226451873045,6.296612317015884,19.09493364023362,11961.82501481854,52.1940844688356,13.216271206192824,17.026807691108907,11.357701175915889,10.593304395617976,0.5810899540380827,0.773602199816682,0.7153333333333334,0.58984375,0.140461215932914,0.7529691211401425,0.8990384615384616,0.8911392405063291,0.775,0.1839622641509433,0.515426497277677,0.6962962962962963,0.6524886877828054,0.5331632653061225,0.1280323450134771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0045093429532649,0.0066342730196086,0.0084809458032014,0.0107090554063949,0.0128406174901226,0.0150809107687287,0.0172434915773353,0.0192193665787482,0.0212302054436949,0.0233526058965842,0.0254314726023881,0.0280965897404253,0.0300404866641255,0.032041359668132,0.0341052413935697,0.0358401027851458,0.0380402620459099,0.0402896108354398,0.0420437012635002,0.0558329503196423,0.0692694159514339,0.0825552361568643,0.0954860015565511,0.1071951926624848,0.1225558105349985,0.1344684914067473,0.145881676707896,0.1563090926572866,0.165926498036944,0.1782798802421005,0.1906358856747225,0.2027529519211951,0.2130167164113833,0.2226194273646233,0.2319577352472089,0.2407791686190508,0.2505906176172798,0.2589070939045976,0.2666643760307861,0.27404697683572,0.2802624500011695,0.2866205100893544,0.2923447787865341,0.2977261673151751,0.3018023019133267,0.3071352502662406,0.3119330343491999,0.3158522823083808,0.3200845665961945,0.3191277157798264,0.3185201521751116,0.3172235705819269,0.3160371212230893,0.314962857100323,0.3131765355248229,0.3109824756165252,0.3116511088062429,0.3114942331750955,0.3128331723373045,0.3128885049484497,0.3131153061426618,0.3133220061670128,0.3130158588140559,0.3143269925355165,0.3150022227452211,0.3156107305936073,0.3174663140662385,0.3221724879286646,0.3258252890001192,0.3276601569629494,0.3287307488050982,0.3339847443736998,0.3353380024360536,0.3378111789572569,0.343391314637321,0.3457350272232305,0.3480529907667603,0.3480961382662706,0.345229151014275,0.0,2.2828906197950984,55.32192897881279,171.76657657817,246.3894120420956,fqhc8_100Compliance_implementation,19 -100000,95694,44967,426.45306915794094,5991,61.35180889083955,4653,47.913139799778456,1861,18.95625640061028,77.38171245272493,79.75555878061898,63.34258245905804,65.09504156483057,77.14142018312782,79.52091737780235,63.25276254001043,65.01085569848007,0.2402922695971057,234.64140281663504,0.0898199190476134,84.18586635049508,159.7508,112.2875215525642,166939.20203983533,117340.19013999224,401.655,264.236529341256,418994.0435136999,275393.4044520803,378.52941,183.892107658482,391660.8355800782,189134.099227195,3322.70777,1515.292466314942,3422272.4726733128,1533630.7798000723,1121.4619,503.33413977186217,1151322.653457897,505531.8979638199,1828.87868,773.2599436326545,1865046.9203920832,767373.6481794165,0.37893,100000,0,726140,7588.1455472652415,0,0.0,0,0.0,34666,361.5169185110874,0,0.0,34582,357.4832277885761,1567444,0,56222,0,0,0,0,0,64,0.668798461763538,0,0.0,2,0.0208999519301105,0,0.0,0.05991,0.1581030797244873,0.3106326155900517,0.01861,0.3315848036878079,0.668415196312192,24.46895827058012,4.374764706340797,0.3193638512787449,0.243498817966903,0.2112615516870836,0.2258757790672684,11.19943189871334,5.754931780516457,19.824066176669408,12054.584334875715,52.8045207854582,13.645511950189457,16.739973478919968,10.852826864768913,11.566208491579856,0.5587792821835375,0.7899382171226832,0.7012113055181696,0.5595116988809766,0.1075166508087535,0.7289644012944984,0.9216152019002376,0.8519480519480519,0.7452830188679245,0.1238532110091743,0.4972197834357623,0.7120786516853933,0.6485013623978202,0.5084306095979247,0.1032412965186074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021167557932263,0.0044501211365548,0.0068697487518772,0.0089389106718404,0.0111479545130907,0.0131160896130346,0.0151720621972979,0.0172322267140348,0.0195761732925794,0.0218957928140034,0.0243789918292445,0.0263754992248539,0.0282799613335801,0.0302430984754841,0.0322074651971559,0.0341287401004942,0.0364348150296201,0.038227664210854,0.0404467972251978,0.0425607303271256,0.0569393531138056,0.0707413340033711,0.0837215646772433,0.0960621968796355,0.1078831608595208,0.1226600672631512,0.1347686300308776,0.1459220613287904,0.1562055960940588,0.1666112404389757,0.1798383620689655,0.1920541271989174,0.2039655434948119,0.2142654100977412,0.2245555751122062,0.2344644339883753,0.244091502247404,0.2527471291516235,0.2608828800217771,0.2684191845753998,0.2757731064243321,0.2821786808202202,0.2888710040122617,0.2940683043738766,0.2988581146744412,0.3032607088283137,0.3077202066058855,0.3121397579937144,0.3165266469042472,0.3207922881143595,0.3198563531453012,0.318610210474254,0.3175011962059162,0.316555164657708,0.31655432930894,0.3157629679368809,0.314108434115381,0.3142548596112311,0.3154573595945164,0.3168140648077299,0.3175078068026702,0.3176454337358907,0.3187773836845399,0.3192651550620917,0.3190239927135015,0.320277871380803,0.321938775510204,0.3265535664073484,0.3287212909071899,0.3326355701252024,0.3372931308093402,0.3403252290905239,0.3434400859073969,0.3448856246652895,0.3473961766644693,0.3471958174904943,0.3472200949609434,0.3508203362365809,0.3535911602209944,0.3602316602316602,0.0,2.71569993728158,53.45042872698819,178.1937418511212,252.3394684899665,fqhc8_100Compliance_implementation,20 -100000,95865,44952,424.7639910290513,5918,60.53304125593282,4613,47.61904761904762,1818,18.682522296980128,77.44506122741345,79.72243172940742,63.40474875222951,65.08389993575436,77.21705870835918,79.49274954937268,63.320398021547234,65.00052557055483,0.2280025190542716,229.68218003474303,0.0843507306822743,83.37436519953201,158.56984,111.47855248004409,165409.52380952382,116287.0207896981,394.71371,259.4160451640492,411255.2026286966,270121.6660554418,375.43432,181.91545052649025,388059.82371042616,187016.0835317776,3277.34058,1498.9013113229526,3387182.5588066555,1532032.8496562375,1063.77903,475.61423661987374,1097129.129505033,483594.6869241888,1783.06832,750.5969721238713,1834089.521723257,761630.0184321055,0.3796,100000,0,720772,7518.614718614719,0,0.0,0,0.0,34060,354.7905909351693,0,0.0,34265,353.7996140405779,1581358,0,56793,0,0,0,0,0,77,0.8032128514056225,0,0.0,0,0.0,0,0.0,0.05918,0.1559009483667018,0.3071983778303481,0.01818,0.3397839058216417,0.6602160941783584,24.620731846381634,4.318746213455429,0.3295035768480381,0.2414914372425753,0.2098417515716453,0.2191632343377411,11.064674200574954,5.770204443857433,19.32157853476093,12090.949381474393,52.250168362477794,13.32007846503388,17.081904583518398,10.778777075326513,11.069408238599005,0.5621070886624756,0.8016157989228008,0.6769736842105263,0.5847107438016529,0.1038575667655786,0.7216494845360825,0.927536231884058,0.841688654353562,0.7131147540983607,0.1473214285714285,0.5020883054892601,0.7271428571428571,0.6222611744084137,0.5414364640883977,0.0914866581956797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0045381334900069,0.0069355018606207,0.0093073768827899,0.0113703334891377,0.0138669868044887,0.0161940845758983,0.0183649953603148,0.0204638054100419,0.0224233128834355,0.0245952836854015,0.0267368161959264,0.0288909886407986,0.0310018514708907,0.0330197912695877,0.0351248413034278,0.0371151718218389,0.0391163335302102,0.0411095423968108,0.0432104545785602,0.056929557492597,0.0704525510843675,0.083404005821319,0.0959686050660007,0.107993519336784,0.1234947070681484,0.1353909682884218,0.1469597645583876,0.1577695785702098,0.1681275753197409,0.1805724235031114,0.1922071751009741,0.2040257963650576,0.2143863212027908,0.2240871743046706,0.233100258889651,0.2426718084750674,0.252210649318547,0.2609272273860802,0.2687489274068989,0.276629938375091,0.2829266581707217,0.2887443070917371,0.2943365966919597,0.3005253642970674,0.3051260586960803,0.3096641758351796,0.3136424346498759,0.3181541569018424,0.3223501180069353,0.3217388965109085,0.320782967032967,0.3201270055354182,0.3189115254481319,0.3172309651057782,0.3159876806732939,0.314089433712539,0.3139192942329685,0.3147445603171093,0.3146530293344697,0.3169216417910447,0.3173955870764381,0.3180594117278667,0.3189144663609243,0.3207858715420695,0.3229309763873409,0.3228665269834079,0.3255203450215638,0.3274638084632517,0.3292398815399802,0.3328785811732606,0.3359188227168889,0.336080010064159,0.3404011022657685,0.3412578139799204,0.3451940298507462,0.3504326328800989,0.3491602736885755,0.3512385193431672,0.358712715855573,0.0,1.984982602065759,55.48368178560199,170.48480449924028,249.70251609219275,fqhc8_100Compliance_implementation,21 -100000,95694,45261,429.1282630049951,5996,61.41450874662988,4709,48.74913787698288,1925,19.83405438167492,77.29747507811412,79.70036620348785,63.28577397120039,65.06542870976418,77.06436294736028,79.46450522894654,63.19920405947378,64.97931449141569,0.2331121307538382,235.8609745413105,0.0865699117266132,86.11421834848443,158.24886,111.3490557695502,165369.67834973978,116359.49565233996,400.30191,263.47589951499833,417801.8371057746,274819.8273825952,387.01546,188.669138426167,400907.2460133341,194548.2338256924,3389.54854,1562.279756791454,3510932.754404665,1601964.1198054284,1108.68647,497.4033486200899,1146087.5916985392,507546.6150037795,1880.949,788.2972232986057,1939673.8353501784,803478.1412341008,0.38205,100000,0,719313,7516.803561351809,0,0.0,0,0.0,34558,360.59732062616257,0,0.0,35418,366.5851568541392,1567929,0,56335,0,0,0,0,0,63,0.6583484857984826,0,0.0,1,0.0104499759650552,0,0.0,0.05996,0.1569428085329145,0.3210473649099399,0.01925,0.3395297108357165,0.6604702891642834,24.439953958173216,4.369113737404272,0.3217243576130813,0.231259290719898,0.2282862603525164,0.2187300913145041,11.20196758083175,5.847253454454716,20.474318547758838,12167.66070364996,53.65920934828456,13.20332237587109,17.095790208237602,12.052996472264873,11.307100291911,0.5667870036101083,0.8071625344352618,0.6924092409240924,0.5786046511627907,0.1155339805825242,0.7253414264036419,0.9145496535796768,0.8425,0.75,0.1459227467811159,0.5051607195517547,0.7362804878048781,0.6385650224215247,0.5261239368165249,0.1066499372647427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023409947707649,0.0047268374819954,0.0069648205492664,0.0094705822579006,0.01165771484375,0.0136690500926887,0.0156154379666272,0.0179122158452646,0.0200047045828773,0.0221195891491126,0.0245556091206548,0.0266585851944689,0.0286619616880311,0.0310062342212375,0.0330184296112745,0.0348779478692594,0.0370212986474581,0.0389982556690755,0.0409371326321483,0.0431542966714604,0.0578674688727333,0.0726345870013503,0.0861339908714128,0.0991795519091195,0.1110068034386372,0.1263196868718925,0.1376199371656618,0.1485181201478152,0.1588503239879386,0.1686688782247415,0.181479963766553,0.1937634128893802,0.205483182293482,0.2161670610921202,0.2253847171392036,0.2349971708475253,0.2444983402814256,0.2536499639509733,0.2622172228471441,0.2700732436986348,0.2775164519417926,0.2846382719520195,0.2910047268720901,0.2976577787915531,0.3024475737253995,0.307058910671078,0.3115551432797653,0.3156277100443809,0.320609200327192,0.3248148148148148,0.3236044549443131,0.3221447795183217,0.3212312214700603,0.3198446849509569,0.3178295726673707,0.3159556209390707,0.3140515481860038,0.3151863873315629,0.3157957487396103,0.3164698968962017,0.317372311827957,0.3190245630609353,0.3191356091450047,0.3201611825994033,0.3210358623002659,0.3220413778781507,0.322625500156077,0.3263804065269817,0.3311063695827066,0.333927087044294,0.3364235401045217,0.3399554990464081,0.3418357730728152,0.3422228956739147,0.3445724454434766,0.3479542506779861,0.3444682807232608,0.3428859737638748,0.3424657534246575,0.3444572305331799,0.0,1.690310296065295,58.2951158538123,176.64872721493603,250.02489748792348,fqhc8_100Compliance_implementation,22 -100000,95819,45136,427.36826725388494,6134,62.61806113610035,4820,49.61437710683685,1912,19.453344326281844,77.32864418348662,79.63626268613282,63.32870225298407,65.03706585799206,77.07875277747608,79.39363918929577,63.23451786883148,64.94925546136335,0.2498914060105335,242.6234968370551,0.0941843841525909,87.81039662871137,156.73328,110.35021138903193,163572.00555213477,115165.06812282917,397.82796,261.31567729794284,414507.2271678895,272039.4112102148,381.82273,185.74700892487127,394515.2005343408,190793.3961235838,3462.17891,1584.517235270478,3561692.649683257,1602303.9921554814,1181.19016,525.8556115415003,1213127.8034627787,529390.5451631146,1872.07028,796.3030331594349,1905478.4750414845,790040.0154415842,0.3804,100000,0,712424,7435.09116146067,0,0.0,0,0.0,34357,357.8517830492908,0,0.0,34910,360.3356328076895,1579095,0,56778,0,0,0,0,0,60,0.6261806113610036,0,0.0,0,0.0,0,0.0,0.06134,0.1612513144058885,0.3117052494294098,0.01912,0.3375835795366195,0.6624164204633805,24.351748856892403,4.395222882000773,0.3327800829875518,0.2242738589211618,0.2205394190871369,0.2224066390041493,11.310216638142329,5.869873501430917,20.48022726426735,12153.09487298132,54.67873645920032,12.993934009258416,18.139813996151386,11.712560699965174,11.832427753825352,0.5614107883817427,0.7816836262719704,0.6957605985037406,0.5719661335841957,0.1277985074626865,0.7225130890052356,0.9154589371980676,0.8373205741626795,0.754863813229572,0.1733870967741935,0.4995693367786391,0.6986506746626686,0.6458684654300169,0.5136476426799007,0.1140776699029126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180584392565,0.0046527186473665,0.0070511844975396,0.009284089062246,0.0115212527964205,0.0137141111789859,0.0158597492610335,0.0180125935073019,0.0201935556395818,0.0225944762236116,0.0247143808596751,0.0267241379310344,0.0287658140036792,0.0308533308625961,0.0328964329541821,0.0348571723746061,0.0368626395802502,0.0391103737881694,0.0410819457572893,0.0428211586901763,0.0571294461249608,0.0706824621754723,0.0844007463155908,0.0973874479801589,0.1096681705106042,0.125643492140675,0.13744141163496,0.1492173616948827,0.160609588090178,0.1706762725674342,0.1828422503661583,0.1951982169133558,0.2058007895337835,0.2153259134541797,0.2244745240453395,0.2347733593343157,0.2444856431275757,0.2535304849208315,0.2620997512466066,0.2695912537714096,0.2764802746016652,0.2835929436051421,0.2897499228156838,0.2952505676971321,0.3011015762887225,0.3059045691293722,0.3105856392382051,0.3155834385320633,0.3198130355751752,0.323267077786306,0.3227565357051273,0.3217075661799211,0.3217709776860205,0.3200673459316671,0.319927255381313,0.3178388678027567,0.3160435790744211,0.3161808251628611,0.3162105335133934,0.3167457965944383,0.3181869327132248,0.3188311174422285,0.3206417022702522,0.3213902548055431,0.3224572294809788,0.3244953456751386,0.3240468790099518,0.3261771547117621,0.3283493241823657,0.3298765041165294,0.331679788831748,0.3355665443717764,0.3373038381546606,0.3366676847892486,0.3414427157001414,0.3402727925340991,0.3432721712538226,0.3456016177957532,0.3416166029492081,0.3386161577116351,0.0,2.644260676819705,58.47990275658677,170.27725423208443,268.19445648272045,fqhc8_100Compliance_implementation,23 -100000,95745,45200,429.6830121677372,6064,62.18601493550577,4788,49.4125019583268,1842,18.841714972061204,77.35098256499538,79.69895019365113,63.33757887846742,65.07066821726048,77.12546949485484,79.4739449396781,63.25435224521824,64.99000234040807,0.2255130701405363,225.0052539730234,0.0832266332491755,80.66587685240734,157.87288,111.08010908719145,164888.21348373283,116015.98677394452,399.22025,262.0653446686736,416370.5572092538,273122.7574376571,385.65761,186.91417845129936,398959.0370254321,192257.6716982263,3416.16664,1552.9895617869477,3529416.199279336,1583684.183337984,1145.53575,504.2992291491741,1181910.522742702,512285.878419696,1800.7079,750.8968450416983,1844460.6193534909,754778.6183266314,0.38063,100000,0,717604,7494.918794715129,0,0.0,0,0.0,34460,359.2772468536216,0,0.0,35211,363.9145647292287,1575769,0,56585,0,0,0,0,0,72,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.06064,0.1593148201665659,0.3037598944591029,0.01842,0.3355809941978987,0.6644190058021013,24.43262108139737,4.362149520308196,0.3302005012531328,0.2270258980785296,0.2284878863826232,0.2142857142857142,11.424931647060026,5.940004545981379,19.58497953024084,12153.936545970646,54.47372441360923,13.037173351419543,17.877182338548387,12.315048970735004,11.24431975290629,0.5687134502923976,0.7930082796688133,0.6970271979759646,0.5786106032906764,0.1228070175438596,0.7212460063897763,0.9254498714652956,0.8520408163265306,0.6754716981132075,0.145631067961165,0.5147058823529411,0.7191977077363897,0.6459209419680404,0.5476477683956574,0.1170731707317073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682855204398,0.0042975441157093,0.0062910312217791,0.0082371820914926,0.0108285630039348,0.0133257322026651,0.0151272667964648,0.0175234479450516,0.0197773893846012,0.0218096592944355,0.0240482194476905,0.0258776431944159,0.0280268136206612,0.0299660179178251,0.0321039872079228,0.0341081745925106,0.0360748418360479,0.0379578707066514,0.039933461558455,0.041618051504292,0.0567455843667794,0.0706940739578429,0.0843503606777386,0.0971235123428235,0.1092534418418334,0.1248705101372064,0.136568501649045,0.1477323515014791,0.158621131680429,0.1687995451766195,0.1810788685667506,0.1938182487202519,0.204985697660507,0.2158510300762573,0.2253640496186147,0.2355979164357752,0.2455693658078997,0.2537627393192198,0.2617926401670317,0.2692774950717462,0.2767678404054663,0.2835297008272005,0.2897098998308833,0.2952058238942503,0.3010967945451457,0.3067675649070998,0.3116297092572686,0.3163720469188832,0.3219795009835386,0.3264231611728379,0.3252161732618592,0.3238286681995291,0.3228780467175099,0.3209712193780838,0.3201237193118113,0.3188381361128142,0.3166555692951583,0.3170731707317073,0.3177798682972719,0.3189665946544305,0.3196732062885303,0.3206090287926063,0.3220353185160358,0.3218580945142397,0.3210899051734485,0.3229646997525074,0.3246033100153557,0.3285812974941908,0.3329257641921397,0.3360490409333597,0.3413725757369305,0.3426436294254823,0.3454750989135213,0.3489780469341408,0.3521771631470753,0.3589864466705951,0.3598030163127116,0.3617107121242687,0.3588397790055249,0.3573076923076923,0.0,2.2347690674171616,54.98915861848184,185.8974402048385,260.78371127579646,fqhc8_100Compliance_implementation,24 -100000,95827,45356,429.5136026380874,5923,60.47356173103614,4647,47.76315652164839,1844,18.783850063134608,77.51248185563044,79.79667936623932,63.42745123530996,65.11002029230967,77.2756832750442,79.56551992591517,63.33783210019215,65.0256121754727,0.2367985805862389,231.1594403241486,0.0896191351178075,84.40811683696836,157.6696,110.77359207683573,164535.67366191157,115597.47469589543,395.75537,260.8852369390963,412254.0307011594,271510.6775116577,375.99561,183.7208884594964,387481.5761737298,187977.99390880755,3325.13553,1521.2204624695942,3421100.295323865,1538842.089721007,1071.77064,483.33354012802266,1097185.0522295386,483215.58452366205,1810.78126,772.7081720412395,1846584.6368977427,769395.9584398208,0.38255,100000,0,716680,7478.894257359617,0,0.0,0,0.0,34149,355.58871716739543,0,0.0,34292,352.938107214042,1585631,0,56866,0,0,0,0,0,75,0.7826604192972754,0,0.0,4,0.041741889029188,0,0.0,0.05923,0.154829434060907,0.3113287185547864,0.01844,0.3476853350598899,0.65231466494011,24.495013430607354,4.3696909452337644,0.3189154293092318,0.2375726275016139,0.2194964493221433,0.2240154938670109,11.057400972585564,5.622853086012934,19.75111804908795,12173.353562330776,52.40690088266389,13.104084539339096,16.69888078688882,11.087597803504794,11.516337752931175,0.5543361308370992,0.7626811594202898,0.7091767881241565,0.5754901960784313,0.0922190201729106,0.7223101265822784,0.9238329238329238,0.8512195121951219,0.7345971563981043,0.1398305084745762,0.4915755246822347,0.6685796269727403,0.6548507462686567,0.5339925834363412,0.0782608695652174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020844716977313,0.0044257198124386,0.0067606604567246,0.0089801219673062,0.0114894654503342,0.0137902979762025,0.0159943800777829,0.0183145700766846,0.0204017032052525,0.0224153798956948,0.0246787158875633,0.0266949717461977,0.0288523781634351,0.0309161640903196,0.0331336790342367,0.035065793550786,0.03729266046502,0.0391481949945051,0.0411373009359774,0.0429133612343057,0.0573296900421342,0.0712381191379905,0.0843750982385178,0.0973047917148079,0.109850997736008,0.1254898646864337,0.1372877403489432,0.1486983708367008,0.1596371398078975,0.1705668783669447,0.1826853793622627,0.1952945243213464,0.2064648526569523,0.2167997117054153,0.2259963967130992,0.2364064625286136,0.2462595947105154,0.2548076923076923,0.2629939631446014,0.2703166076122985,0.2774143679553294,0.2843776944049588,0.2908312497051469,0.2967563177757608,0.3019164880930762,0.3071980539823335,0.3122903286150776,0.3167756156886591,0.3212415856394914,0.3244428685865868,0.3233275237967556,0.3221441582097319,0.321563187467597,0.3202336926021326,0.3191294183792741,0.3170426447693764,0.3147574656343814,0.3153231353794752,0.3158011275570165,0.3157669771500828,0.3166000074757971,0.3171938121982461,0.3179207651985047,0.3177649154051647,0.3181894103891765,0.3200072358900144,0.3207397995199774,0.3246248951570314,0.3281163434903047,0.3314486254630532,0.3340917201998572,0.3376306076831106,0.3417150623996046,0.343062415806017,0.3446816341553184,0.3478512683887408,0.3489412466447957,0.3538040289458243,0.3539657020364415,0.3556050482553823,0.0,2.8380228103184533,54.61406995039084,169.89369868139812,252.5747412773541,fqhc8_100Compliance_implementation,25 -100000,95722,45309,429.65044608345,5901,60.32051148116421,4557,46.86487954702159,1785,18.17763941413677,77.31288813594676,79.67195725619393,63.318020272784125,65.06257492042347,77.08999100929972,79.45459354362966,63.234434787463655,64.98407195204196,0.2228971266470409,217.36371256427844,0.0835854853204693,78.50296838151394,157.38272,110.84524502546104,164416.4559871294,115799.13188761313,395.63267,260.6467886046949,412592.7790894465,271574.2476667145,383.16097,187.04247731824023,395883.4332755271,191962.1248336066,3256.89726,1490.5846157709357,3354778.20145839,1509541.6666869123,1092.18727,486.8131082868479,1120583.5858005474,488167.7631156867,1750.06798,740.5953864250088,1784958.8600321766,736894.7154382323,0.38017,100000,0,715376,7473.475272142246,0,0.0,0,0.0,34082,355.28927519274566,0,0.0,34946,360.6172039865444,1578363,0,56612,0,0,0,0,0,72,0.7521781826539354,0,0.0,0,0.0,0,0.0,0.05901,0.1552200331430675,0.302491103202847,0.01785,0.3267054639508567,0.6732945360491432,24.553504387752024,4.331886586388395,0.3274083827079219,0.2326091727013386,0.2196620583717358,0.2203203862190037,11.203137548832448,5.85722038103793,19.084471156835846,12105.016393469026,51.57086794296061,12.66083926379703,16.942498675590976,10.932088040468813,11.035441963103768,0.5637480798771122,0.789622641509434,0.7064343163538874,0.5584415584415584,0.1185258964143426,0.7348111658456487,0.9375,0.8733850129198967,0.7168949771689498,0.175438596491228,0.5013477088948787,0.7056213017751479,0.6479638009049774,0.5140664961636828,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0046017089165712,0.0071124909952414,0.0092329256896761,0.0116353576550279,0.0139918533604887,0.016243499541144,0.0183765352063786,0.0206616639744821,0.0228545683537952,0.0250792055859162,0.0270370180212558,0.0292081906348667,0.0315699482932657,0.0334777674610543,0.0353355794869674,0.036987180814712,0.0388490552333122,0.0406405990016638,0.0427411876256863,0.0570688773113104,0.0706191338195439,0.0837292223795291,0.0962850803865282,0.1089365740496652,0.1241603994118829,0.1364461187456889,0.1477538854588035,0.1581544903910865,0.1681859128345916,0.1811506035123233,0.1924096085832639,0.2034816079331079,0.2143778983288126,0.2239239503564827,0.2337915526656845,0.2435297925292679,0.2523512735127351,0.260477580079256,0.2680576561712269,0.2753302689622434,0.2826264941869985,0.2884169427354472,0.2939738242485258,0.3000716828459305,0.3056548426060591,0.3108453350031309,0.3143904208075126,0.3184125997305979,0.322943631464948,0.3221497317553177,0.3203585394062896,0.319487736421207,0.3180621074870489,0.3162360085734699,0.3152862820925985,0.3137500793701187,0.3137841972790234,0.3147615624251138,0.3159336233285,0.3173536972062217,0.3189508300645826,0.3211605383422078,0.320766101997944,0.3203042264368922,0.3226437741363114,0.3245248558872211,0.3292848354837692,0.331820580474934,0.3330145447300259,0.3348083941605839,0.338455831699433,0.3406648337915521,0.3428961748633879,0.3452325035227806,0.3430294430649166,0.3414859252422704,0.3438639125151883,0.3455250761983929,0.3422641509433962,0.0,2.8457170425042766,52.38094731053916,168.24551736918835,252.87319994024529,fqhc8_100Compliance_implementation,26 -100000,95783,45304,428.0300262050677,6042,61.77505402837664,4717,48.68296044183206,1852,18.96996335466628,77.37208356525132,79.71092155980715,63.35007434272507,65.07969286926799,77.1430200874389,79.48299155332424,63.26422482208373,64.99625837664176,0.2290634778124172,227.9300064829073,0.0858495206413394,83.43449262622471,158.22708,111.30249823346264,165193.28064479082,116202.7690022892,396.91807,261.1919112944635,413848.7623064636,272147.0420580516,384.8883,187.523424329288,398423.7077560736,193048.9070843943,3349.40909,1538.967026970682,3459878.4231022205,1569855.7373366242,1130.39086,507.1596443436632,1162560.464800643,511951.7301603364,1807.99428,764.8054629495117,1854163.369282649,771204.0198852705,0.38183,100000,0,719214,7508.785483854129,0,0.0,0,0.0,34283,357.3389849973377,0,0.0,35173,363.7179875343224,1576254,0,56675,0,0,0,0,0,67,0.6994978232045352,0,0.0,1,0.0104402660179781,0,0.0,0.06042,0.1582379593012597,0.306521019529957,0.01852,0.3313980856739369,0.6686019143260631,24.545792479917026,4.2976983093396255,0.3283866864532542,0.2317150731397074,0.225567097731609,0.2143311426754293,11.167994949981448,5.87052448571743,19.86719378963892,12199.242027938915,53.84769824679173,13.176965922250888,17.657868523714686,11.908210974263136,11.10465282656302,0.5717617129531481,0.7941445562671546,0.7004519044544868,0.5808270676691729,0.1246290801186943,0.7432744043043813,0.920863309352518,0.8765743073047859,0.717391304347826,0.1753554502369668,0.5064402810304449,0.7159763313609467,0.6397569444444444,0.5329949238578681,0.11125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0049065325818093,0.0071340139229973,0.0093964912993569,0.0114919149801688,0.0135710213389802,0.0161860787491463,0.0183582668326632,0.0206221386527141,0.022853575412705,0.025189588030334,0.0275457213818017,0.0295526499732741,0.0316419201383883,0.0339273192261683,0.0358323689866093,0.037915722137689,0.0400501923695153,0.042029467384302,0.0441015710403848,0.058978827310578,0.0736487617135207,0.0871506740183232,0.0997982599924347,0.1121938372399262,0.1277717328149924,0.139292147928367,0.1501796840113126,0.1607826819874318,0.1703533898214304,0.1827775387263339,0.1952656326001189,0.2073286026319507,0.2172520469178718,0.227166739991201,0.2367969346961827,0.2463494896536338,0.2558516020236088,0.2641353272638632,0.271198085445031,0.2780669488976797,0.2845049342874515,0.2915410533782585,0.2967371130934562,0.3026021943878046,0.3066343241313074,0.3110621573585,0.3146678872952904,0.3188263299523908,0.322681431678861,0.321855925139154,0.3203763477783119,0.3189306500937161,0.3171094856746364,0.3165847063542765,0.3147958168093218,0.311423778171689,0.3126640419947507,0.313404495535256,0.3149170283836164,0.3154563499494401,0.3156886747749171,0.3167339426515801,0.3183531458393737,0.3210119533387739,0.321822017345105,0.3241839762611276,0.3280035252274086,0.3305283825952806,0.3337170987335742,0.3378458183800482,0.3389803589390651,0.3437382474614516,0.34579226686884,0.3501737252324162,0.3523236612408587,0.3540212443095599,0.3587620737236349,0.3616734143049933,0.3650971599402092,0.0,2.1439471890000545,56.98325923114346,180.04351514207417,251.61825328757345,fqhc8_100Compliance_implementation,27 -100000,95640,45161,429.2032622333752,5943,60.863655374320366,4712,48.63028021748222,1863,19.061062317022166,77.25911226955019,79.65731235764581,63.27736057920528,65.04654750659876,77.0251964935889,79.42443187912895,63.19185382183687,64.96389533044156,0.2339157759612931,232.88047851686144,0.0855067573684138,82.65217615719678,158.94076,111.83068215480056,166186.49100794646,116928.77682434188,397.42914,260.84988140085784,414905.5207026349,272099.93872946245,382.46972,186.34428469788847,395672.5533249687,191489.80378249852,3411.70931,1556.3131493598885,3524158.3437892096,1584179.0875783032,1131.71657,504.1583518728414,1164984.452112087,508817.3482568399,1832.63362,763.8267756434792,1877741.844416562,766340.4121040181,0.38176,100000,0,722458,7553.931409452112,0,0.0,0,0.0,34301,357.97783354245087,0,0.0,34943,361.1668757841907,1567203,0,56324,0,0,0,0,0,76,0.794646591384358,0,0.0,0,0.0,0,0.0,0.05943,0.1556737217099748,0.3134780413932357,0.01863,0.3374518613607188,0.6625481386392811,24.138288756913703,4.376126901892277,0.3255517826825127,0.2217741935483871,0.2200764006791171,0.232597623089983,11.346841893722218,5.86781704687387,19.95057469198922,12199.128113874443,53.69487515870716,12.61791447130973,17.50637366125791,11.616725003041116,11.953862023098411,0.5519949066213922,0.7875598086124402,0.7033898305084746,0.5593056894889104,0.1085766423357664,0.7429467084639498,0.921119592875318,0.883495145631068,0.7384615384615385,0.1421800947867298,0.4810826542491269,0.7070552147239264,0.6372549019607843,0.4993564993564993,0.1005649717514124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0044616149017937,0.0070336763899884,0.0091651763940822,0.0113942723434559,0.0137799686309657,0.0158451781307991,0.0183039496922118,0.0204863986260618,0.0225807112002784,0.0245445318186944,0.0266041009949584,0.0284700437130367,0.0303379930567717,0.0324864295886565,0.0342859506183051,0.0360602073902188,0.0380419551385183,0.0400237146750153,0.0420528109916916,0.0567741261298918,0.0711884288691754,0.0847833163570686,0.0978951026124314,0.1096338849171568,0.1254156870220923,0.137564788852069,0.1485691760243762,0.1591732868583403,0.1693992591399581,0.1832741940702552,0.1957376729471164,0.2073363320517987,0.2176575629101346,0.2273754782934709,0.2376024339869861,0.2476339635305962,0.256765899864682,0.2646774542022492,0.2715523183677221,0.2787845739743828,0.2856321973872458,0.2920631154348084,0.2977339664602993,0.3033487340151893,0.3081581451682672,0.3127573049502962,0.3174785392670824,0.3216728754818863,0.3251518319065324,0.3237279896294696,0.3220470048882874,0.3205929781876821,0.3195017731527236,0.3188247770691123,0.3168653387679766,0.3146983128395768,0.3149365087207866,0.3157741260420598,0.3167648480724812,0.3185888890974973,0.3196453662108409,0.3207000755477209,0.3216958163014586,0.3227504326091136,0.3237423185084887,0.3250355618776671,0.3283516345215996,0.331763382657903,0.332644299570679,0.337136598055771,0.3403202638718944,0.3423611111111111,0.3455636584624734,0.3472701819878674,0.3494018713727348,0.3486420506560879,0.3465805931006657,0.3452777777777778,0.3530556636823667,0.0,2.521114263097449,55.7120242167347,175.74867098780288,259.3556521141883,fqhc8_100Compliance_implementation,28 -100000,95632,45084,429.1136857955496,5920,60.96285762088004,4619,47.87100552116446,1833,18.843065082817468,77.28554750318864,79.7181758954596,63.27381344368565,65.07237542705184,77.05374021475556,79.4856701947136,63.18662067030835,64.98702515577529,0.2318072884330746,232.50570074598895,0.0871927733772963,85.35027127655326,157.98838,111.14706304896316,165204.5131336791,116223.7149165166,398.07668,261.2425166186664,415842.74092354026,272758.66511070187,373.92827,181.8188094317473,388760.0803078468,188250.4289522269,3346.9391,1531.9685353069904,3468238.7589928056,1570369.2543364034,1110.20053,495.9288265659049,1144438.6397858458,502110.0223417942,1805.43372,772.6829671992641,1856846.8713401367,780502.032762081,0.38128,100000,0,718129,7509.296051530868,0,0.0,0,0.0,34407,359.3462439350845,0,0.0,34126,354.6720762924544,1573429,0,56467,0,0,0,0,0,71,0.7215158106073281,0,0.0,1,0.010456750878367,0,0.0,0.0592,0.1552664708350818,0.3096283783783783,0.01833,0.3310211324407162,0.6689788675592837,24.4235521610242,4.45242917214897,0.3134877679151331,0.2299198960814029,0.2240744749945875,0.2325178610088764,11.239244979444283,5.710422344977126,19.73695426855763,12130.953292554486,52.36708491848436,12.7680054453041,16.280546146648586,11.420817731254962,11.897715595276711,0.5615934184888504,0.8107344632768362,0.6857734806629834,0.5826086956521739,0.12756052141527,0.734108527131783,0.9394673123486684,0.8801955990220048,0.673728813559322,0.1724137931034483,0.4947431661159507,0.7288135593220338,0.6092396535129933,0.5556946182728411,0.1152019002375296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022598297527361,0.0045339743784803,0.0066705925354343,0.0088123189510596,0.0109062792495828,0.0130489258319836,0.0153420856667788,0.0173872180451127,0.0192899735095273,0.0212918488780557,0.0235428079029974,0.0256473489519112,0.027730599388568,0.0298732089475311,0.031885344925501,0.0339784234425263,0.035886382242303,0.0375632198232441,0.03965610558308,0.0416066921167365,0.0559039973239672,0.07038962127722,0.0837501576226304,0.0968826051686174,0.1095372394925584,0.1245684268496748,0.1372234383966334,0.1477659200187639,0.1585779566152627,0.1689069400122489,0.1819427658839779,0.1948019560432411,0.2066962388150796,0.2166823730522255,0.2266302070699274,0.2362330584200069,0.2454893017640351,0.2539054574964496,0.2625788486673865,0.2704301568375676,0.2772630408598165,0.2841283039196168,0.2910194692783798,0.297037668559901,0.3027632379793061,0.3080170859978766,0.3128798225719548,0.3167996329620473,0.3211607814648574,0.3260717352533192,0.3241334698938062,0.3222384280918047,0.3198815566835871,0.3183343458011513,0.3173602853745541,0.3156062627470825,0.3148089424449025,0.3147554459515002,0.3147198577923631,0.3136637630350403,0.3151167584991941,0.3154830050136197,0.3165838626501477,0.318145251396648,0.3187187860161352,0.3208213275186252,0.3213315985971263,0.3242221666874922,0.32769166608744,0.3315202396436876,0.3341338529158548,0.3356059404894033,0.3368012033091,0.3400060432089439,0.3451814534937961,0.3487936284844226,0.3510445049954587,0.3544379883790823,0.3549257759784076,0.3564208161737177,0.0,1.6619234673670162,57.28042672444076,166.2627975752135,250.8532736324453,fqhc8_100Compliance_implementation,29 -100000,95825,45519,430.8374641273154,6027,61.92538481607096,4748,49.12079311244456,1883,19.42081920166971,77.35864855579545,79.66391465533314,63.35358995694328,65.05447594544037,77.13047756304447,79.43289689091615,63.26920659740602,64.9706229573747,0.2281709927509894,231.0177644169897,0.0843833595372558,83.8529880656722,157.93492,111.13377875093836,164815.9874771719,115975.76702419863,402.17074,264.4296812217383,419271.7662405426,275529.46644585265,386.90788,187.90522216010663,401053.399426037,194039.7738465785,3388.47683,1529.5155355818706,3510603.2141925385,1570648.8239831694,1115.60373,489.8184315688424,1153572.5854422124,500522.4435886695,1837.87992,764.3818157060085,1897433.3420297415,779748.1890332657,0.38324,100000,0,717886,7491.635794416906,0,0.0,0,0.0,34570,360.3235063918602,0,0.0,35333,365.9274719540829,1573909,0,56528,0,0,0,0,0,74,0.7722410644403861,0,0.0,1,0.0104356900600052,0,0.0,0.06027,0.1572643774136311,0.3124274099883856,0.01883,0.3300848789688777,0.6699151210311223,24.89958052891223,4.304196239429386,0.3138163437236731,0.241575400168492,0.2268323504633529,0.2177759056444818,11.23638741227265,5.888542551042325,19.917206425922725,12249.31150469424,53.80626676682184,13.745396116902594,16.916263723445116,11.88644587634822,11.258161050125912,0.568871103622578,0.7776809067131648,0.7127516778523489,0.5821727019498607,0.11605415860735,0.7329545454545454,0.9004854368932039,0.8853333333333333,0.7166666666666667,0.1365853658536585,0.5113765642775882,0.708843537414966,0.6547085201793722,0.5436081242532855,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023075521729449,0.0045680600431484,0.0066912010705921,0.0090616660070829,0.0115010261516266,0.0139463913330959,0.0160840158089883,0.0181979537502677,0.0204830108493553,0.0227909736287567,0.0249405932481153,0.0270170472029047,0.0288488210818307,0.0309332455210595,0.0330449844827763,0.0352185408576386,0.0372692657892558,0.0391959694808425,0.0411005858157796,0.0432442561342508,0.0585136347514031,0.0723955883121635,0.0862757428077346,0.0994945408308025,0.1121321011201618,0.1276298965477159,0.1389227523772168,0.1501069001095593,0.1601400691805098,0.1700599315986405,0.1828919035314384,0.1952467493130828,0.2065680730752501,0.2176547801356377,0.2274928994473678,0.2383548891179306,0.2475949197562554,0.2569130385870176,0.2661514542834122,0.2735625336525794,0.2805744572513077,0.2862661094918706,0.2920949178231421,0.2969122849091672,0.3025871082257398,0.3078146577234169,0.3119440517446297,0.3168870803662258,0.3211797912836315,0.3247436963147686,0.3239157940075914,0.323215096208068,0.3216074745314347,0.3210676752511837,0.3198550703116879,0.3181317672967517,0.3164865420826938,0.3172577996715928,0.3182012481832948,0.3204880492342922,0.3205465055176038,0.3213882897678928,0.3214210725234115,0.3223541512935757,0.3234303584315612,0.3252272489812977,0.3269000171301319,0.3306421092468777,0.332453268560566,0.3351659296442373,0.339023169010879,0.3438680500133014,0.3449297283670511,0.3464657282741738,0.3462401795735129,0.3481524926686217,0.3569689592209373,0.3610210696920583,0.3662049861495844,0.3753918495297805,0.0,1.6930929315822136,54.55156619173509,181.30050893393923,262.26556607527493,fqhc8_100Compliance_implementation,30 -100000,95860,45593,431.4103901523055,6185,63.32151053619862,4803,49.5305654078865,1857,19.00688504068433,77.41454581429173,79.70394652840244,63.37712166936033,65.0685362540181,77.18614952239862,79.4771020101365,63.29223132998175,64.9864364992277,0.2283962918931052,226.84451826593488,0.0848903393785747,82.09975479040565,158.33708,111.41472621301368,165175.10953473818,116226.3002801956,402.75016,264.699500889261,419546.5157521385,275535.413220914,392.13521,190.6503131422596,405360.2023784686,196012.25880238827,3426.86685,1557.4352005817836,3537913.6448988104,1587881.2950692691,1153.06508,506.7803678099863,1187537.0957646568,513340.65075108025,1817.23762,762.0325039670319,1862112.163571876,765707.8404798678,0.38409,100000,0,719714,7507.95952430628,0,0.0,0,0.0,34655,360.90131441685793,0,0.0,35845,370.3108700187774,1572351,0,56526,0,0,0,0,0,78,0.8032547465053202,0,0.0,0,0.0,0,0.0,0.06185,0.1610299669348329,0.3002425222312045,0.01857,0.3305581251927227,0.6694418748072772,24.42103444049711,4.3312574142520095,0.3291692692067458,0.2373516552154903,0.2165313345825525,0.2169477409952113,11.405837104925237,6.026349923655758,19.753175819300704,12279.062722604089,54.36126426080183,13.67825099242385,17.726998674944337,11.63721331568871,11.318801277744932,0.57859671038934,0.8078947368421052,0.7014547754585705,0.5990384615384615,0.1209213051823416,0.7385826771653543,0.9257425742574258,0.890818858560794,0.7396694214876033,0.1176470588235294,0.5210868949900934,0.7432065217391305,0.6366723259762309,0.556390977443609,0.1218026796589525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024092726628536,0.0047717947419077,0.0069055031079834,0.0093395326173025,0.0115662160788698,0.0138381546413781,0.0158822330888345,0.0181361948671916,0.0202766200866225,0.0220931184027493,0.0243887449168775,0.0267004482557006,0.0289037534806777,0.0309103260869565,0.033167341973132,0.0351572989609799,0.037141260940636,0.0393376028518725,0.041542533866196,0.043436203076731,0.0579495574021749,0.0728572324283654,0.0865789528817749,0.0997532678880781,0.1119102022765323,0.1278950647924213,0.1394444679859316,0.1508078231292517,0.1616148683971876,0.1720718019021506,0.1846193570598614,0.196232984095062,0.2077171326429712,0.2181647326209052,0.2282568081411961,0.239269234599595,0.2479066085385841,0.257442098284019,0.2659726474790773,0.2741010406291857,0.2806262864543583,0.2870102996364146,0.2930510379088059,0.2980408603438979,0.3032077764277035,0.3076458479705161,0.3129857938544339,0.3177677117263843,0.3226684643107159,0.3270736764259208,0.3263583114522319,0.3246299455235789,0.3235708251196846,0.3220231305678684,0.3209997476883803,0.3189888516768362,0.3170881879321777,0.3171198899821548,0.3175628461866212,0.3180030956998239,0.3188332773485612,0.3204893327817505,0.3212959485959861,0.3229050776556451,0.3249269531062892,0.3261997405966277,0.3266249043340231,0.329433785680861,0.3334148300792847,0.3356919792860813,0.3390381575976518,0.3395520421607378,0.3427095650009334,0.3422712933753943,0.3507205950720595,0.3522367030644593,0.3517084282460136,0.3596437968022667,0.3669950738916256,0.3666666666666666,0.0,2.184005704135756,55.53577239714264,181.8139991116504,262.73524035758106,fqhc8_100Compliance_implementation,31 -100000,95710,44818,426.2355030822276,6057,62.2087556159231,4754,49.08577996029673,1834,18.73367464214816,77.36002699221102,79.73171298834065,63.33690834044432,65.0885878023374,77.13403622853116,79.5084732346487,63.25321985693114,65.00850148324324,0.2259907636798601,223.23975369194216,0.0836884835131854,80.08631909416408,158.6068,111.57284238666004,165716.0171350956,116573.86102461608,399.19015,261.9607226012519,416500.0417929161,273122.95947906043,377.68531,182.89458516829643,390816.4037195695,188200.61844190312,3380.68477,1531.0147723206555,3490574.798871591,1558435.9330820534,1127.36928,497.8451739934028,1161434.019433706,503902.30433737417,1799.17782,747.8467746403282,1840396.2804304669,749004.8284748934,0.37873,100000,0,720940,7532.546233413437,0,0.0,0,0.0,34486,359.70118064987986,0,0.0,34537,357.16226099676106,1575215,0,56483,0,0,0,0,0,70,0.7313760317626162,0,0.0,0,0.0,0,0.0,0.06057,0.1599292371874422,0.3027901601452864,0.01834,0.3244949494949495,0.6755050505050505,24.53144215368503,4.324113020875567,0.3289861169541438,0.2336979385780395,0.2198148927219184,0.2175010517458981,11.33451532870231,5.887138462486105,19.397248665182826,12056.740895867066,53.84434976117314,13.330334204187508,17.60175104587308,11.581841625354215,11.330422885758354,0.5645771981489273,0.7821782178217822,0.6924552429667519,0.5818181818181818,0.1199226305609284,0.7338645418326694,0.9166666666666666,0.8526570048309179,0.7016806722689075,0.1835748792270531,0.503858245212918,0.7076923076923077,0.6347826086956522,0.5464684014869888,0.1039903264812575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00223840536407,0.0042575190828087,0.0064032960230559,0.0085942420609927,0.0109544733308922,0.0131359211437415,0.0153211009174311,0.0172691828777888,0.0192997699974444,0.021458260816151,0.0235805532202833,0.0252761693564946,0.0273233034768569,0.0292521140832449,0.0313041683862979,0.0333129995140561,0.0352850986242333,0.0374595200531429,0.0394828536658935,0.0412633246152403,0.0560707646677945,0.0694325246478136,0.0826016260162601,0.094682149017628,0.1074911698033633,0.123270147691592,0.1359528153774345,0.1472995264194115,0.1580729222291048,0.1684632793813216,0.1816673668788848,0.1935923653715064,0.2047796035472091,0.214437181645279,0.2238827307117093,0.2342296447240187,0.2438004082862019,0.2530723304736954,0.2613333635631936,0.268741629368468,0.2762439881613022,0.2829999065158455,0.2900944790644326,0.2954374034743257,0.3003630535352186,0.3061870397280855,0.3102943568059847,0.3142326905721295,0.3187970703175548,0.3220399335320338,0.3217996339362618,0.3208575281393621,0.319583415541588,0.31769944770552,0.3166842519802054,0.3144230474849218,0.3125790538831267,0.3128275681341719,0.3129893390191897,0.3139141279173347,0.3141847683852394,0.3152746277487427,0.3154589271183258,0.317373004030911,0.3175732317788795,0.3189041807322773,0.3186225722978929,0.3239077784417953,0.3281239025075507,0.3319915507552509,0.3363179534033805,0.3387603085927108,0.3396546310832025,0.3404368269376611,0.3383395522388059,0.3383963263864359,0.3440974866717441,0.346992329430763,0.3465045592705167,0.3445216049382716,0.0,2.1842124179088227,55.03061104555467,177.3119705894356,263.9435519774736,fqhc8_100Compliance_implementation,32 -100000,95746,45407,430.493179871744,5840,59.83539782340777,4512,46.48758172665177,1796,18.329747456812814,77.33346816806463,79.6962314918559,63.32120940122799,65.0706346640992,77.10831447418087,79.47429733356131,63.238386973306994,64.99172781672365,0.2251536938837546,221.9341582945873,0.0828224279209948,78.9068473755492,157.92832,111.15619932127169,164945.0838677334,116094.87531726826,396.80982,261.7408464682533,413789.9964489378,272720.54153864057,382.83383,186.3900063178272,395844.54703068535,191566.8503805689,3238.33063,1468.928129686512,3342749.378564117,1494812.210657623,1120.82936,492.0298973543804,1154050.2266413218,497497.55926097406,1766.4246,732.6889513094358,1806470.5157395608,733472.5499815103,0.38189,100000,0,717856,7497.5038121697,0,0.0,0,0.0,34204,356.5475320117812,0,0.0,34898,360.5581434211351,1576910,0,56499,0,0,0,0,0,76,0.7833225408894366,0,0.0,2,0.0208886010903849,0,0.0,0.0584,0.1529236167482783,0.3075342465753424,0.01796,0.3362309332458586,0.6637690667541414,24.52641406655973,4.35824775110091,0.3164893617021276,0.2382535460992907,0.2149822695035461,0.2302748226950354,11.309010880305108,5.7762448320811,19.00759303997431,12147.171887151875,51.175671516697776,12.824937788974268,16.175499714041816,10.86572339039695,11.309510623284732,0.5565159574468085,0.772093023255814,0.6897759103641457,0.5835051546391753,0.1251203079884504,0.7275693311582382,0.9132653061224488,0.8605263157894737,0.7310924369747899,0.1527777777777778,0.492696287279367,0.6910688140556369,0.6278625954198473,0.5355191256830601,0.1178614823815309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0045430576400438,0.0065160465257901,0.0089617752850088,0.0113402900673297,0.0133694467920455,0.0156077967622232,0.0177583637811026,0.0196843955684559,0.0219053565762132,0.0239689162728232,0.026056424787483,0.0283416630673988,0.0305149330587023,0.0320254222423986,0.0340789283277861,0.0360970457581311,0.0383733358237607,0.04064043249987,0.0428700878024393,0.0572269661983005,0.0714315617608272,0.0843625069515125,0.0978608388372386,0.1101889737208419,0.1255630511557087,0.1373039954168346,0.1484552101403773,0.1593814410970022,0.1697676164330677,0.182450773406868,0.1947074033603444,0.2058727569331158,0.2156442422320169,0.2249879009195301,0.2352374519725842,0.2449211948028753,0.2536737403515088,0.2625899280575539,0.270971656211365,0.2776833512551019,0.2848925573456169,0.2910462764762231,0.29699626329405,0.302644668203324,0.3077197558814844,0.3126827805134101,0.316283619824421,0.3207537408983329,0.3248176626528271,0.323609783676821,0.3218163327011352,0.3211757918583872,0.3196302181135346,0.3191350323768787,0.3168878129500812,0.3148192141397823,0.3153264063295087,0.315293313978311,0.3155640426177431,0.316431766709716,0.3172748623418658,0.3167631749482618,0.3171880931645117,0.3183971907545037,0.318687343358396,0.3192765945346489,0.3219182389937107,0.3247493403693931,0.3294462954148818,0.3333333333333333,0.3348543534780071,0.3372173584430308,0.3402242733999542,0.3417948475983769,0.3438810979264053,0.3442975714724869,0.3465711361310133,0.3535325328120636,0.355288647810926,0.0,2.3562483462212804,53.54888137405635,165.3207086305994,248.47530311108684,fqhc8_100Compliance_implementation,33 -100000,95804,45382,430.57701139827145,5892,60.28975825644023,4614,47.64936745856123,1777,18.266460690576597,77.34149214859087,79.68001509080015,63.33904717832892,65.07215363637529,77.11964923115868,79.45726767192798,63.25776469629805,64.99223109796564,0.2218429174321983,222.7474188721743,0.0812824820308648,79.92253840964736,157.36292,110.73264634940018,164254.60314809403,115582.04203310946,396.8617,261.50365516836,413722.4019873909,272436.55000663846,381.13337,185.73242887704995,394242.5368460607,191181.33158193,3269.79808,1498.5499642848663,3382562.9723184835,1533790.3509090082,1060.28226,476.0293276239784,1095610.287670661,485809.0933216953,1735.47918,727.7426144832674,1786209.156193896,739194.83281052,0.38215,100000,0,715286,7466.118324913365,0,0.0,0,0.0,34294,357.4172268381278,0,0.0,34795,359.56745021084714,1580761,0,56701,0,0,0,0,0,60,0.6262786522483403,0,0.0,0,0.0,0,0.0,0.05892,0.1541802956954075,0.3015953835709437,0.01777,0.3419218927240318,0.6580781072759683,24.63452620326477,4.313125067128051,0.3246640658864326,0.2429562201993931,0.2219332466406588,0.2104464672735153,11.289650735698448,5.988867984556947,18.96216252938501,12164.840809657995,52.3928441652419,13.457431012156237,16.872145607292104,11.493718400408774,10.569549145384778,0.5606848721283052,0.7707404103479036,0.6935914552736983,0.576171875,0.0968074150360453,0.7382657120127287,0.9296116504854368,0.8567708333333334,0.7379032258064516,0.1549295774647887,0.4941912421805183,0.6784203102961918,0.6373429084380611,0.5244845360824743,0.0804749340369393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.004724106120049,0.006839514942412,0.0093281307157663,0.0116497939665259,0.0138635645964694,0.0159209358776913,0.0179315415407237,0.0203186354712041,0.022230641626902,0.0242186859158395,0.0264428013965906,0.0284406500720016,0.0305758730812815,0.0324514518026291,0.0345337274926095,0.0365933212529122,0.038661825726141,0.0405864566340049,0.0423476504757344,0.0569970891107702,0.0712851825519635,0.0849496505401695,0.0979930650415046,0.1097764009188426,0.1252443908986187,0.1372578115063382,0.1486262334127254,0.1588837904172446,0.1695118684027219,0.1823670587728833,0.194958219377993,0.206233162422873,0.2165023930764691,0.2258610643888174,0.235922469808167,0.2455084481298203,0.2543057957020636,0.2624706988120987,0.2700366953599232,0.2770639236195292,0.2836014288048934,0.290457510161641,0.2967514208794496,0.3015258842365727,0.3076544485868616,0.3118729619310586,0.3172060074394749,0.3208670826389696,0.3251193937560026,0.3242273582370331,0.3223046284850982,0.3217587055926837,0.3204671102963465,0.3193972236656521,0.3173551949343081,0.3155238426731639,0.3161928834033613,0.3170806710629719,0.316181328000857,0.3162945884646385,0.317733161902878,0.3177995427948239,0.3181685883801634,0.319150474904778,0.3204806687565308,0.3225593667546174,0.3266024218601407,0.3299151343705799,0.3332668289373927,0.335295740962193,0.3367986710251326,0.3373846643334394,0.3413636012663115,0.346882436934793,0.3465500718735026,0.3486811300140471,0.3566694283347141,0.3660112359550562,0.3564547206165703,0.0,1.8962651494963096,55.31980900459151,173.15259428365,249.138137425278,fqhc8_100Compliance_implementation,34 -100000,95698,45114,427.6264916717173,5934,60.78496938285022,4658,48.02608204978161,1780,18.20309724341157,77.3419109081298,79.71167308265443,63.33255108723839,65.08132796458301,77.11531324817061,79.48899179361906,63.24687640237509,65.00042260228382,0.2265976599591965,222.68128903536424,0.0856746848632923,80.9053622991911,157.97848,111.19538686544747,165080.23156178812,116194.05511656195,395.40264,260.2556951133389,412512.3827039228,271291.11457663984,381.46338,185.859329436174,394852.79734163726,191264.67633566936,3370.98921,1543.1558419645407,3476747.5495830635,1566835.1025976313,1112.85075,490.86430499271086,1148166.4820581411,498254.6886910665,1750.6219,744.3433350556732,1791477.2513532152,743112.0297480935,0.38018,100000,0,718084,7503.646889172188,0,0.0,0,0.0,34152,356.17254279086296,0,0.0,34843,360.4046061568685,1576987,0,56567,0,0,0,0,0,62,0.6374218896946645,0,0.0,0,0.0,0,0.0,0.05934,0.156083960229365,0.2999662959218065,0.0178,0.3280116110304789,0.6719883889695211,24.5069422712317,4.349548903817472,0.3149420352082439,0.2340060111635895,0.2282095319879776,0.2228424216401889,11.050931944808264,5.629273841191839,19.02980725968634,12134.476022826486,52.81235558095933,13.13123709603722,16.560848801538533,11.68551657307274,11.434753110310837,0.5573207385143839,0.7926605504587156,0.7062031356509885,0.5465663217309501,0.1107899807321772,0.7311912225705329,0.910377358490566,0.8794871794871795,0.7231404958677686,0.1318181818181818,0.4917208752217623,0.7177177177177178,0.6434540389972145,0.4945188794153471,0.1051344743276283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0046113306982872,0.0066037735849056,0.0092223937596489,0.0116321633383495,0.0141015720452879,0.0161472827915226,0.0181779211235404,0.0203906417686198,0.0224655851798782,0.0245110099643252,0.026656535266514,0.0285884700026737,0.0307226308957161,0.0326505340281719,0.0348067897533442,0.0367451349979804,0.0387209929843497,0.0406904799043311,0.0428968952903044,0.0572070190098182,0.0715736359448934,0.0846913398881415,0.0975522526218351,0.1093810985579712,0.1247698656226854,0.1365550899156543,0.1479584775086505,0.1589102564102564,0.1692522261559918,0.1816615145999159,0.194454365401474,0.2058522789078646,0.2154223033935191,0.22561237172366,0.2355057622690387,0.2439358961490849,0.2521920949682989,0.2604183208184932,0.2682857044760062,0.2757667256678119,0.2829190656742967,0.2898888639026641,0.2956936423111025,0.3011771566019169,0.306078914919852,0.3109396334665347,0.3150327628984032,0.319095770161969,0.3231332858912522,0.3215694192072145,0.3201577768309946,0.3192999718864211,0.3191007671454115,0.3185080824558802,0.3163059427732942,0.3146621173348498,0.3159085320875338,0.3169258077179089,0.3178824495332607,0.3179962546816479,0.3200719040752227,0.3198086686527084,0.319906008727761,0.3218202809313065,0.3226083784910379,0.3228949992876478,0.3270892918879844,0.3300748971482823,0.3329882128066263,0.3356579607092392,0.339468085106383,0.3450384566889421,0.3498052394409226,0.3491883729709324,0.3507604562737642,0.3492742551566081,0.3453428863868987,0.3503344481605351,0.3468917881811205,0.0,2.541848781881994,55.4610369276007,173.24670547024738,251.28359492562527,fqhc8_100Compliance_implementation,35 -100000,95716,45178,428.8311254126792,6029,61.90187638430357,4743,49.03046512599774,1846,19.03547996155293,77.33810060160408,79.71875540519366,63.31256206328344,65.07405215239183,77.10942083411761,79.48772053566528,63.23016677415808,64.99216567323857,0.2286797674864686,231.0348695283864,0.0823952891253583,81.88647915325475,157.17328,110.65723701481365,164207.94851435497,115609.9680459,398.89727,261.68156673710405,416232.9286639642,272875.8062780559,380.70226,184.87295303566285,393435.6847340048,189982.0479933484,3392.53428,1525.9978983892129,3514389.9765974344,1564312.2658585962,1112.54956,485.33440503798977,1150038.6978143677,494751.0186781611,1811.43604,750.9415244942777,1869660.6001086547,766345.032069748,0.38085,100000,0,714424,7463.997659743408,0,0.0,0,0.0,34393,358.8010363993481,0,0.0,34845,359.7413180659451,1579395,0,56664,0,0,0,0,0,64,0.6686447406912115,0,0.0,0,0.0,0,0.0,0.06029,0.1583037941446763,0.3061867639741251,0.01846,0.3276353276353276,0.6723646723646723,24.709319198820683,4.348336115175408,0.322369808138309,0.2306557031414716,0.2264389626818469,0.2205355260383723,10.957759075294325,5.663350729238085,19.675914833844303,12222.481443518358,53.4063045046722,13.036123348783487,17.105583843678016,11.821321035594435,11.443276276616247,0.5620915032679739,0.7979890310786106,0.697187704381949,0.5623836126629422,0.1175908221797323,0.7427884615384616,0.945945945945946,0.8535911602209945,0.7546468401486989,0.1428571428571428,0.4975679542203147,0.710334788937409,0.6486718080548415,0.4981366459627329,0.1112440191387559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025440392450994,0.0048082775410833,0.0069141267488374,0.0089029818891395,0.0112839714695617,0.0134550158384175,0.0156049201395263,0.0177719672750671,0.0199417088510507,0.0222290482772743,0.0244157548785364,0.0267078768213416,0.0286043307491414,0.0307087100694086,0.0329286031133622,0.0348562039496119,0.0367448361546824,0.0387903309471936,0.0407518296739853,0.0424895833333333,0.0573615563747245,0.0715025906735751,0.0849954359937467,0.0982658351649507,0.1100648494754046,0.1259254558531116,0.1386890742037473,0.1503401577821073,0.1609308388447854,0.1714202966951634,0.1840098241985522,0.1962441822708085,0.2079071083445784,0.2178997691693378,0.2274657805554333,0.2380503911183991,0.2478535142075587,0.2558741447605329,0.2639962759857852,0.2710988356101586,0.2782189909467688,0.284807978181733,0.2907786302926968,0.2971321053199267,0.3022622895050179,0.3071332502498674,0.3120614474739374,0.3169898830305038,0.3220837435870861,0.325776868773504,0.3250087461987674,0.3244715234702719,0.3235107775916201,0.321800906806827,0.3206521739130434,0.3184596296126097,0.3174266637131736,0.3178820982186792,0.317757967004816,0.3179968589377498,0.3191800329785639,0.3202441385031702,0.3214727268917248,0.3211598746081505,0.3220905353751472,0.3234523036988968,0.3261042352674009,0.3293826231461449,0.3319461444308446,0.3362803915377328,0.3379932356257046,0.3385682021114554,0.3398172891678578,0.3423065386922616,0.3416442673092965,0.3428403755868545,0.3469879518072289,0.3450269085110624,0.3398110661268556,0.3468536770280515,0.0,2.068076243151693,54.989574292880185,172.89472350172397,264.64560059571835,fqhc8_100Compliance_implementation,36 -100000,95656,44839,425.880237517772,6008,61.70025926235677,4737,48.99849460567032,1884,19.298318976331856,77.27782633283482,79.68959546402891,63.2892740309558,65.07257679485132,77.0432251885066,79.45771515658086,63.20156198801264,64.98898940832413,0.2346011443282236,231.88030744805133,0.0877120429431599,83.587386527185,157.24808,110.59716102089595,164389.14443422263,115619.67991646728,394.45986,259.3165781707959,411867.1907669148,270586.68371121085,378.72888,184.17685146450995,393437.8815756461,190485.25781774684,3376.22385,1546.9050254748618,3488807.0795350005,1576413.8950770083,1154.41127,515.8381703437747,1186514.008530568,518941.5617878382,1851.62252,778.0147870770212,1896639.26988375,778070.7110595513,0.37915,100000,0,714764,7472.23383791921,0,0.0,0,0.0,34159,356.5589194614033,0,0.0,34731,360.6464832315798,1579375,0,56727,0,0,0,0,0,59,0.6063393827883248,0,0.0,0,0.0,0,0.0,0.06008,0.1584597125148358,0.3135818908122503,0.01884,0.3250832936696811,0.6749167063303189,24.42721583981353,4.35560645183423,0.3101118851593836,0.242347477306312,0.2220814861726831,0.2254591513616212,11.182703508141936,5.825863399110323,20.03819066199608,12080.694561257496,53.868819662426176,13.684856564130166,16.775591029286982,11.700866040597244,11.707506028411784,0.5598480050664978,0.7822299651567944,0.6929884275017019,0.5779467680608364,0.1198501872659176,0.7292474786656322,0.9016393442622952,0.8446115288220551,0.7574468085106383,0.175438596491228,0.4965197215777262,0.7115117891816921,0.6364485981308411,0.5263157894736842,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023204912550919,0.0045635242576667,0.0070046494629768,0.0091872719696738,0.0113637519711073,0.0134676704597548,0.0158286588475267,0.0179762427609874,0.0200282318283177,0.0221673615308181,0.0243179487179487,0.0262649711362655,0.0283585775436285,0.0302293223396031,0.0322740506721179,0.0342248976045674,0.0359992539014735,0.0379834899537926,0.0400116548903711,0.0420720072570302,0.0572861696013375,0.0704201751078714,0.0838581685350799,0.0968196838626844,0.1083990249153132,0.1242298490398255,0.1359856410038552,0.1480419841227556,0.1584847933760523,0.1686084594156367,0.1816476978789446,0.1940353460972017,0.2047245808839538,0.2143967253305314,0.2240694051459335,0.235133098388634,0.2447630532850953,0.2540623874684912,0.2620798438528404,0.2697233635874603,0.276719234148823,0.2825672848812069,0.288252060886329,0.2933922922059246,0.2988276741784608,0.3036256011838698,0.3088220563930485,0.312754582484725,0.3175306913493823,0.3218412052869951,0.3198732213905186,0.3186100726966742,0.3178030730990848,0.3169417897480451,0.3162222553254878,0.3142642250840381,0.3123194157802826,0.3129704356419336,0.3137893221849085,0.3142667884061084,0.3152688091305001,0.3170325750970912,0.3186893917131942,0.3186658315064203,0.3202166064981949,0.3216500755720018,0.3244825124910778,0.3291503350613225,0.3327784664423587,0.3361085538165952,0.3388361535286834,0.3388050951340404,0.3411014273083239,0.340752110514198,0.3426110006626905,0.3398395401748293,0.3350316504554578,0.3401276508132592,0.3385431202902595,0.3420345489443378,0.0,2.0354249686173587,56.702897383391424,173.86872849236656,262.39572228800967,fqhc8_100Compliance_implementation,37 -100000,95825,45483,430.2321941038351,5936,60.81920166971041,4655,48.07722410644404,1848,18.91990607878946,77.39792083527668,79.70125456987813,63.37134666233783,65.07132935357178,77.16797556770834,79.47250718946839,63.28670866416736,64.98921572774762,0.2299452675683397,228.74738040974307,0.0846379981704714,82.1136258241637,157.89708,111.08321715182642,164776.49882598486,115923.0025064716,399.7749,262.7742929967741,416696.9371249674,273727.3498531428,382.4481,186.1187474028584,395726.0318288547,191580.2227714393,3334.28419,1514.9607716748594,3444668.9590399163,1546079.4277848788,1082.47829,483.6178261160845,1113685.885729194,488757.2743902998,1815.30514,758.8514614464086,1860196.9632141923,764185.1487667033,0.38233,100000,0,717714,7489.840855726585,0,0.0,0,0.0,34442,358.89381685363946,0,0.0,34875,360.6052700234803,1578838,0,56562,0,0,0,0,0,68,0.7096269240803548,0,0.0,0,0.0,0,0.0,0.05936,0.1552585462820077,0.3113207547169811,0.01848,0.324955695182858,0.675044304817142,24.760719694259464,4.35171213781742,0.3125671321160043,0.2410311493018259,0.225563909774436,0.2208378088077336,11.21829920526221,5.749733923231257,19.591285357160988,12212.7302288831,52.55766593328053,13.331319160088338,16.410738622197915,11.608387887895832,11.207220263098444,0.5559613319011816,0.7834224598930482,0.6996563573883161,0.5561904761904762,0.1040856031128404,0.7384,0.9429280397022332,0.8726287262872628,0.7370517928286853,0.158590308370044,0.4889867841409692,0.694019471488178,0.6408839779005525,0.4993742177722152,0.0886392009987515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0047725683713483,0.0072924590496475,0.009524486459592,0.0116806278464541,0.013647188129694,0.0157730635202054,0.0179546034174955,0.0199337924269979,0.0221808434449878,0.0245579165215253,0.0264991023339317,0.0285406071813838,0.030789178509318,0.0328478814301763,0.035083372051004,0.0370355044277083,0.03911488832461,0.0412764013208448,0.0435022427591661,0.0584676367808897,0.0719358246263583,0.0854224990301238,0.0984020185029436,0.1112504743033011,0.1262804046554403,0.1386780049198405,0.1505992038996147,0.1608481999786347,0.1709747307906817,0.1838046826200271,0.1963549835054891,0.2070446268413328,0.2173580284708403,0.2266003893061772,0.2363094842667021,0.245913155957983,0.2546037099494098,0.2631763918963347,0.2706440910650955,0.2773558953731636,0.2836148688114763,0.2906868135116282,0.2957392584084138,0.3011115016787675,0.3066620752419722,0.3116025272831706,0.3161295236161003,0.3204518430439952,0.325008881462086,0.324003381324889,0.3227792556838439,0.3221091062276205,0.3215535490560331,0.3205901085716824,0.3185049580472921,0.3169204070363651,0.3175935470148399,0.3190702588483888,0.3185974794559618,0.3210601076555024,0.3222097311796146,0.3226440337820888,0.323470871072347,0.3250818724715854,0.3260336826737577,0.3262585812356979,0.3276859373518349,0.3311153358681876,0.3340224218812117,0.3378378378378378,0.3421404503396267,0.3431142657963115,0.3428571428571428,0.3441053828658074,0.3448604817553065,0.3475919372211109,0.3489593857344918,0.3546099290780142,0.3596358118361153,0.0,1.8987802209540616,55.08401545236228,168.92850755860178,258.4901487286351,fqhc8_100Compliance_implementation,38 -100000,95547,45307,429.55822788784576,5919,60.79730394465551,4644,47.95545647691712,1825,18.66097313364104,77.19945181010942,79.66904808200292,63.224607941291474,65.05312120886813,76.97125995754622,79.44505950877468,63.139757124227245,64.97287271868045,0.2281918525631994,223.98857322824028,0.084850817064229,80.2484901876852,157.73538,110.95527930753006,165086.4600667734,116126.1570824098,397.05826,261.1833920114517,414905.5961987294,272698.2343887844,383.6035,186.709792553622,397678.849152773,192462.1504412017,3319.36224,1513.3540642554626,3429750.6672109016,1539572.8743502784,1099.79719,484.854384980099,1134759.3958994003,491156.9750804304,1793.732,746.5974814103965,1836550.556270736,747041.5835010516,0.38122,100000,0,716979,7503.930003035156,0,0.0,0,0.0,34269,357.991355039928,0,0.0,35077,363.1929835578302,1569697,0,56389,0,0,0,0,0,59,0.6174971480004605,0,0.0,1,0.01046605335594,0,0.0,0.05919,0.1552646765647133,0.3083291096468998,0.01825,0.3422028705047573,0.6577971294952427,24.38582137368336,4.368338054305284,0.3169681309216193,0.2383720930232558,0.2226528854435831,0.2220068906115417,11.2388360658753,5.8039611580155706,19.25888022092462,12169.053706873072,53.04880687405164,13.298047363880343,16.82077921170157,11.62715669912706,11.302823599342666,0.5656761412575366,0.7841011743450768,0.6949728260869565,0.6054158607350096,0.1066925315227934,0.7451768488745981,0.9270588235294116,0.8498727735368957,0.7489177489177489,0.1333333333333333,0.5,0.6950146627565983,0.6385542168674698,0.564134495641345,0.1004784688995215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020070754477906,0.0043322984517359,0.0067531887236981,0.0087034325687327,0.0111780754978213,0.0134967073742583,0.0157268969740266,0.0179644389944819,0.0201801064265247,0.0224228573770995,0.0246979479967562,0.026970890358138,0.0292269984140388,0.0313489648342806,0.0335961639815226,0.0356599418261616,0.037780658542909,0.0398873426798723,0.0417482604891462,0.0437528709232889,0.0584647893217289,0.0721798676580081,0.0851081723188192,0.097969377324889,0.1099049773277383,0.1259568693144468,0.1375421573946996,0.1487822059043268,0.1591595774315898,0.1689091085083728,0.181339035954595,0.1935746459000379,0.2047964037882425,0.214585070434897,0.22433300586138,0.2350516609265637,0.2445105982944244,0.2536508294774856,0.2616221506526613,0.2687616291089518,0.2768693756378143,0.2834597662066621,0.2899346529252007,0.2959596566008284,0.3007766848461238,0.3061615238283469,0.3106681562001833,0.3160203522105612,0.3213483729442764,0.3255690911736307,0.3242520790582136,0.3235119745205366,0.3218155652124838,0.3201418542375335,0.3190620903348826,0.317469093142901,0.3150843664185145,0.3158787399759588,0.3166821003532599,0.3173516390945101,0.318209179834462,0.3192995676833379,0.3198231392778187,0.3206374144316014,0.3206165889487545,0.3211196729045447,0.3236684525685471,0.3282442748091603,0.3328514509361447,0.3374761753494282,0.3413782153064464,0.3428495902722707,0.3446979192780145,0.3459928457264632,0.3509592887225082,0.3549038233198765,0.3595078979343863,0.3590101776092596,0.3625954198473282,0.3606118546845124,0.0,2.5283935229727628,54.30179800964389,182.0793351046112,247.4520023592653,fqhc8_100Compliance_implementation,39 -100000,95670,45042,426.8109125117592,6005,61.471725723842376,4744,48.87634577192432,1835,18.689244277202885,77.33990302576841,79.73036340796999,63.32261558699434,65.08894997507409,77.11238685467832,79.51101493189037,63.23680286364922,65.01034026900643,0.2275161710900874,219.34847607961672,0.0858127233451213,78.6097060676525,159.42696,112.1022925881996,166642.5838820947,117176.01399414612,399.31991,262.38686086572494,416685.0318804223,273558.6210335449,383.1485,186.0946961414556,396802.7490331347,191598.74817234103,3410.88051,1556.8085084373813,3515155.2106198394,1577540.4209496242,1114.09651,493.7362347738717,1147557.7506010244,499138.8519172003,1801.57022,760.185466629291,1837153.3186996968,753906.8729473206,0.37972,100000,0,724668,7574.662903731577,0,0.0,0,0.0,34410,358.9317445385178,0,0.0,35076,362.9455419671788,1569492,0,56347,0,0,0,0,0,78,0.8153026026967701,0,0.0,0,0.0,0,0.0,0.06005,0.1581428420941746,0.305578684429642,0.01835,0.332277478618942,0.6677225213810579,24.447337882894523,4.40004491954336,0.3159780775716694,0.2403035413153457,0.2204890387858347,0.22322934232715,11.250866343052746,5.868138067507657,19.4936416376321,12125.417115381451,53.78106141528957,13.635870484575811,16.953490933046726,11.665052321240095,11.526647676426949,0.5657672849915683,0.7973684210526316,0.6964643095396932,0.5850860420650096,0.1123701605288007,0.7368012422360248,0.9270588235294116,0.8525798525798526,0.7404255319148936,0.1538461538461538,0.5020254629629629,0.7202797202797203,0.6382783882783882,0.5400739827373613,0.1014319809069212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0046525771628402,0.0070217450863004,0.0095681144110835,0.0115920807784997,0.0137930332457908,0.0157379188029396,0.0178514927277366,0.0201179681669954,0.022129645741425,0.0242664698283816,0.0265051583431709,0.0287935502447451,0.0310053564070869,0.0332036289698308,0.0351662668541649,0.03699866344789,0.0388444250672147,0.0408855412912756,0.0430045871559633,0.0574819520043461,0.0715459923564211,0.0847612352181988,0.0975201742295916,0.1096188135003112,0.1245926615599475,0.136669885091619,0.147375031933918,0.158441752654404,0.1692312641410296,0.1819102188523177,0.1944769077608968,0.2059578448219607,0.2162945305836814,0.2257017061089708,0.2361789563464371,0.2451908056237447,0.254528679763271,0.2628736740597878,0.2707324056576762,0.2772791413171713,0.2832926102154623,0.2896685514206629,0.2951995497706944,0.300862727967675,0.3056673930976742,0.310319821959941,0.3143518106593113,0.3187649686063823,0.3224406332453826,0.3212064090480678,0.3204786136707468,0.3197537646677654,0.3186030038885757,0.3177386755439306,0.3150762453923922,0.3132124393290225,0.3135415299829419,0.3135002471324118,0.3145019140033829,0.3157904573233409,0.317732873336619,0.3184742647058823,0.3189345013296386,0.3181053137773503,0.3188500234582703,0.3195676353991387,0.3223642776168283,0.3263298432998384,0.3294289897510981,0.3329096686336813,0.3354872881355932,0.3325174166823573,0.3363194655329486,0.3388816158593604,0.3444326366749321,0.3489263803680981,0.3518707830709466,0.349609375,0.3429672447013487,0.0,2.74629391929375,55.88529734117905,174.88959363940523,259.9477971232123,fqhc8_100Compliance_implementation,40 -100000,95782,45314,428.6295963751018,6053,61.963625733436345,4760,49.1010837109269,1851,18.886638408051617,77.331780499572,79.6736962268554,63.32970022966426,65.0632026666809,77.09824819182597,79.44530014668595,63.24111791872362,64.97996464448698,0.2335323077460316,228.39608016944624,0.0885823109406445,83.23802219391041,157.80776,111.08084843368437,164757.21951932512,115972.57149953472,399.23761,262.2460341102337,416217.4625712556,273193.1199079512,383.82309,186.49613672744616,397698.1061159717,192291.29872004248,3406.72028,1556.2504903900603,3516117.840512831,1584157.9841620128,1133.17511,499.1790865871509,1168176.5049800589,506260.8805278141,1810.99692,770.9607622581192,1849892.8817523129,769284.468356498,0.38245,100000,0,717308,7488.964523605689,0,0.0,0,0.0,34462,359.1593410035289,0,0.0,35032,362.750830009814,1576625,0,56613,0,0,0,0,0,68,0.7099455012424046,0,0.0,1,0.0104403750182706,0,0.0,0.06053,0.1582690547784024,0.3057987774657195,0.01851,0.337684806542938,0.662315193457062,24.495989340950224,4.348729098529946,0.3157563025210084,0.2436974789915966,0.2147058823529411,0.2258403361344537,11.488073158236826,6.058806418306627,19.75056025933875,12221.68172564563,53.94249379074899,13.807246562428697,17.098128856398414,11.394027671773486,11.643090700148386,0.5649159663865546,0.7758620689655172,0.6866267465069861,0.6115459882583171,0.1227906976744186,0.737460815047022,0.9174757281553398,0.826302729528536,0.7727272727272727,0.1963470319634703,0.5017221584385764,0.6978609625668449,0.6354545454545455,0.5615384615384615,0.1039719626168224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271207900734,0.0043591095251611,0.0064233309994215,0.0087569588361981,0.0112178998220188,0.0138392447988268,0.0162313166534124,0.0182837192208746,0.0204248533049825,0.0225827916261452,0.0247467913232459,0.0270450648403889,0.0291002570694087,0.0309448267336931,0.0331303540097017,0.0350677680482181,0.0371824217253057,0.0395709944092356,0.0417047721982041,0.0436625291569476,0.0583373338064327,0.0719807521313876,0.0853015483641014,0.0986643688065489,0.1107083394802841,0.1258863936591809,0.1377917700184443,0.1488827677156561,0.1594970218398411,0.1700387937501339,0.1828321651970759,0.1954475625851959,0.2071789851525534,0.217365145001258,0.2276514943034839,0.238206580157578,0.2471710746568463,0.2560269087554701,0.2637787683896507,0.2722483709531498,0.2797626620710394,0.2865528531337699,0.2927100591715976,0.2981947208170507,0.3037588686947225,0.308227286179343,0.3132687056937451,0.317078144716214,0.3208760714239402,0.3241790177274048,0.3236371471665589,0.3229478894541455,0.32127926127166,0.3208117131831124,0.3195684800213977,0.31721633053393,0.3154342211588737,0.3159295524742064,0.3167139876167345,0.3178152100210556,0.3182337837584572,0.3190510054916834,0.3207139561223205,0.3216299677765843,0.3234790576547467,0.3238844184345281,0.3245764162245422,0.3289560491344915,0.3310697283674041,0.3326059355657832,0.3339869579096174,0.3364789933887822,0.3377786244999047,0.3397976391231028,0.3420704012112036,0.346585482330468,0.3458436724565756,0.3486480992071559,0.3547579298831386,0.3621706645694062,0.0,2.322076703867513,55.75636819385662,175.9141859742234,263.4181907420246,fqhc8_100Compliance_implementation,41 -100000,95695,45097,426.5113119807723,6044,62.040858979048025,4725,48.86357698939339,1853,19.09190657819113,77.34192318165195,79.71579692095577,63.32298576779221,65.07434867876853,77.11291431174054,79.4853926604967,63.2383037294016,64.99097622304126,0.2290088699114107,230.4042604590677,0.0846820383906035,83.3724557272717,158.00092,111.14777827658092,165108.85626208267,116147.94741269755,397.51988,261.1825013571394,414823.177804483,272352.4336246819,382.46635,186.2272354873492,395563.2791681906,191535.8995042888,3395.88666,1553.4149095376497,3517624.379539161,1592265.9486259983,1110.98472,491.5695379048487,1147901.2905585454,500637.3521149022,1820.3877,762.426276429508,1877321.3020533987,775622.2273148578,0.38125,100000,0,718186,7504.948011912848,0,0.0,0,0.0,34239,357.2600449344271,0,0.0,35013,361.826636710382,1575513,0,56533,0,0,0,0,0,89,0.9195882752494906,0,0.0,1,0.0104498667641987,0,0.0,0.06044,0.1585311475409836,0.306585043017869,0.01853,0.3244226510597912,0.6755773489402088,24.49561276080126,4.44588545582207,0.3231746031746031,0.2313227513227513,0.2232804232804232,0.2222222222222222,11.318857904336127,5.84508157143029,19.67453818555409,12211.61356622713,53.54366443546581,13.104330318926168,17.182342041965484,11.768581716385846,11.488410358188307,0.5657142857142857,0.7923147301006405,0.704649639816634,0.5848341232227489,0.1085714285714285,0.7318217357310399,0.927007299270073,0.8730964467005076,0.757085020242915,0.105726872246696,0.504062681369704,0.7111436950146628,0.646072374227714,0.5321782178217822,0.1093560145808019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021364276095298,0.0044597155917738,0.006725706807876,0.0089991264956223,0.01132885196221,0.0136527458206919,0.0160471423036926,0.0182573800455413,0.0204916356497198,0.0227921978190754,0.0249876958411943,0.0272127006294862,0.0294060169709436,0.031425804191481,0.0334547931913663,0.0354897418927862,0.0374874403090978,0.0395669638686775,0.0415964726191218,0.0438058122935531,0.057709582401972,0.0718070068896195,0.0855907387776949,0.098101732011701,0.1103900900045371,0.1261415706318719,0.1383919565979042,0.1499297004814452,0.1611655051519945,0.1717882941384825,0.1844516796757083,0.1962875924582245,0.2077913596238203,0.2181549573210768,0.2273763002917056,0.2375439024120013,0.2469105482311702,0.2558817569849382,0.264035575319622,0.2710416308767107,0.2781454654849235,0.2849955538915149,0.2913455733513264,0.2970121337106134,0.3020839662190898,0.3065659242459725,0.311840885749355,0.316274452406104,0.3204034537298726,0.3242932628797886,0.3235516338811085,0.3230028688072382,0.321917421612621,0.3211230564707242,0.3199934710351377,0.3183152872086621,0.3167230530875518,0.3164020816574459,0.317116932383247,0.316831330028177,0.3172439618049054,0.3179588607594936,0.317867616254713,0.3183628714643752,0.3184142915456095,0.3203045817198992,0.320286314832699,0.3247139946716815,0.3272511185682326,0.3294987349778621,0.3335898248313945,0.3364332892998679,0.338659955960994,0.341813240733751,0.3426176059618072,0.3460776314255741,0.3499474553370365,0.3497615262321145,0.3487109905020353,0.3526785714285714,0.0,2.003031490917782,56.1851370938518,176.3199527634994,256.7565229528452,fqhc8_100Compliance_implementation,42 -100000,95737,45211,428.5177099762892,5861,60.01859260265102,4580,47.24401224187096,1835,18.74928188683581,77.32392886815877,79.68727298766498,63.31606620966248,65.06463973593918,77.09631013357324,79.46223794889578,63.231046266789136,64.98308295325873,0.2276187345855334,225.0350387692066,0.0850199428733446,81.55678268045108,157.71294,110.98890094408492,164735.61945747203,115931.0412317964,397.23362,261.7193966086172,414338.0720097768,272789.6389155888,380.79963,185.74805001260737,393758.54685231415,190908.7324813468,3294.14407,1508.3040680255249,3404477.9447862376,1539117.6327078603,1071.81836,477.0579960371152,1107628.074830003,486384.0793393515,1797.89296,755.7689897366056,1840756.635365637,759354.5338785077,0.38178,100000,0,716877,7487.982702612366,0,0.0,0,0.0,34301,357.6778048194533,0,0.0,34806,359.62062734366026,1575072,0,56586,0,0,0,0,0,61,0.6371622256807713,0,0.0,1,0.0104452823882093,0,0.0,0.05861,0.1535177327256535,0.3130865040095547,0.01835,0.3422590068159688,0.6577409931840311,24.50830643626413,4.39865803172844,0.331004366812227,0.2288209606986899,0.2157205240174672,0.2244541484716157,11.229024310824771,5.827251350755018,19.589820263002053,12160.17626012447,52.14135431696193,12.712879045478577,17.170987263548557,10.990972806582162,11.26651520135264,0.5641921397379913,0.8034351145038168,0.6998680738786279,0.5678137651821862,0.1167315175097276,0.728125,0.9174528301886792,0.8661616161616161,0.6835443037974683,0.1704035874439461,0.5006060606060606,0.7259615384615384,0.6410714285714286,0.5312916111850865,0.101863354037267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022283671133529,0.0045625525960924,0.0069214687316053,0.0089719360279623,0.010894332099117,0.0131364562118126,0.0153130925922149,0.0175365173987158,0.0196198713819791,0.0218593222074331,0.0242061986733239,0.0262633729645372,0.0286833420719859,0.0308186724898026,0.0327217567177116,0.0347515091375175,0.0368329466357308,0.0390459584007971,0.0409188278601584,0.0428912248533655,0.0576180235107426,0.0713590760249824,0.0846737831092842,0.0976035499847527,0.1100097017758467,0.1256148516422489,0.1371410988264754,0.1483469094393867,0.1596966298135982,0.1696167247386759,0.1817849068791043,0.1944132024051564,0.2057905780793024,0.216454713453106,0.2260069070192032,0.2364081379508932,0.246211191214874,0.2554182702045777,0.2638474201055798,0.2712181140728002,0.2782450530608462,0.2847236051401595,0.2912987305463037,0.2959683225341972,0.3017582283871752,0.3060388440561684,0.3109024582868461,0.3152172527626598,0.3194494889223265,0.3236915511018864,0.3227212022285475,0.3216490299823633,0.3210914683183543,0.3196809126708362,0.3185557654829735,0.3155718246006341,0.3139882600509469,0.3143147574311806,0.3153771314455425,0.3155210840688241,0.3166994106090373,0.317741871765496,0.3188047958820698,0.3188082103053179,0.3221226607730559,0.3224067902520308,0.3236489751826477,0.3268698060941828,0.3310672772102853,0.335902121236196,0.3366426814828309,0.3381169243804279,0.3399836878097748,0.3455262958184715,0.3487276154571159,0.350255617643562,0.3537342826844417,0.3605294350059265,0.359192348565356,0.3554716981132075,0.0,2.3052987225578647,55.95731056679203,167.29481899911153,248.99600218177727,fqhc8_100Compliance_implementation,43 -100000,95786,45328,429.1963334934124,5936,60.66648570772347,4674,48.13855887081619,1850,18.92760946276074,77.4066300966336,79.74681330139053,63.35719594835807,65.08827754776404,77.16750193976324,79.50978343763595,63.26884385417652,65.00326380026185,0.2391281568703647,237.0298637545858,0.0883520941815518,85.01374750218815,158.68754,111.65186774663177,165668.82425406636,116563.86919448747,396.31097,260.5825123426189,413052.27277472697,271354.2882377649,383.03928,186.6603071756932,396045.7373728938,191826.33453371903,3324.44179,1526.3852606841997,3426148.2262543584,1549027.371800522,1102.60163,489.8326800315081,1132988.3281481636,493374.9998583655,1811.7608,764.5748637433065,1854844.9251456368,766561.5466761192,0.38168,100000,0,721307,7530.401102457561,0,0.0,0,0.0,34177,356.0854404610277,0,0.0,34954,361.0235316225753,1576056,0,56619,0,0,0,0,0,71,0.7412356711836803,0,0.0,0,0.0,0,0.0,0.05936,0.1555229511632781,0.3116576819407008,0.0185,0.3334947538337369,0.6665052461662632,24.326704644065103,4.300437699069921,0.3237056054771074,0.2389816003423192,0.2199400941377834,0.2173727000427899,11.26286111660884,5.793500236701564,19.682072262979023,12175.60257034968,52.95377700281139,13.380179199592217,16.98303745785114,11.471075606502357,11.119484738865683,0.5691056910569106,0.7949865711727843,0.6946463978849967,0.5943579766536965,0.108267716535433,0.7334384858044164,0.9043062200956936,0.859375,0.7732793522267206,0.1415525114155251,0.5079271873165003,0.7296137339055794,0.6386182462356067,0.5377720870678617,0.0991217063989962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023912294567045,0.0045932956135547,0.0067383119716666,0.0089511597898865,0.0115336499832182,0.0135944278120608,0.0158540812789298,0.0182412085949063,0.0204014882047508,0.0225551598509967,0.0247606944472912,0.0268223608602856,0.0289625686036711,0.0310167694382392,0.0330271824844605,0.0350773933066922,0.0372117563079978,0.0392892685354121,0.0411407199625993,0.043174530462666,0.0578789206786452,0.0717624789533679,0.0854043289135789,0.0989028311999495,0.1107973701955495,0.1267989602485259,0.1375757832704456,0.1495688784460487,0.160874529177648,0.1711672147302349,0.1843886169239873,0.1963887987890582,0.2076343011126564,0.217246500251152,0.22727072988531,0.2365145228215767,0.2459685513549682,0.2545581259414132,0.2629848038103878,0.2695587477822926,0.2764410013297103,0.2832184176697441,0.2903248704540614,0.2958394213035042,0.301139262030267,0.306090257067508,0.3110259876821391,0.3150094142791715,0.3201455619156155,0.3247634256754081,0.3236051039519247,0.3223125713735364,0.3210899305408794,0.3209218321051871,0.3194009469668858,0.3169702252603569,0.3147098302408211,0.3149541884816754,0.3155381059215446,0.3163921039551232,0.3164793308189252,0.3161602644836272,0.3166763994327188,0.3168352118323161,0.3166949821731952,0.3179061933143301,0.3196951236789165,0.323722354117206,0.3290520731537065,0.3310070183739452,0.332865613542751,0.3354566991313503,0.335910706491239,0.3374182392301331,0.3401165479604107,0.346658919233004,0.3476740650653694,0.3533041401273885,0.3547501372872048,0.3602912993484093,0.0,2.507632254153669,54.903891961994745,176.77673184746186,250.980179728125,fqhc8_100Compliance_implementation,44 -100000,95692,44846,425.2497596455294,5923,60.73652969945241,4679,48.353049366718224,1847,18.97755298248548,77.29491858535671,79.69707955108265,63.29396199958445,65.07391545196147,77.06722674530762,79.46915914438573,63.21017120434836,64.99179712288826,0.2276918400490899,227.92040669692423,0.0837907952360978,82.11832907321082,158.24028,111.3227853785384,165364.16837353175,116334.4745417991,398.0887,261.87862976484985,415458.24102328304,273116.37344078394,381.71509,186.28100919221356,394718.6807674623,191441.8408900649,3352.22592,1527.0184369465117,3469172.1460519168,1561820.34307494,1082.60195,484.6528797460704,1116140.4819629644,491301.5737149487,1808.44886,755.3158919696388,1860729.277264557,765410.6367934518,0.37806,100000,0,719274,7516.553107887807,0,0.0,0,0.0,34441,359.3403837311374,0,0.0,34888,360.5108055009824,1573115,0,56450,0,0,0,0,0,54,0.5643104961752289,0,0.0,0,0.0,0,0.0,0.05923,0.1566682537163413,0.3118352186392031,0.01847,0.3358606226810776,0.6641393773189224,24.426390756866724,4.329949836115604,0.3301987604188929,0.2335969224193203,0.2162855310963881,0.2199187860653985,11.086240177802988,5.735992036035694,19.648651573535155,12070.467237061725,52.99615772620037,13.115004952571647,17.607701626824852,11.108007553835348,11.165443592968533,0.5684975422098739,0.7868252516010978,0.7223300970873786,0.5681818181818182,0.1059280855199222,0.7511961722488039,0.9223300970873788,0.8902743142144638,0.7521367521367521,0.1400966183574879,0.5016058394160584,0.7048458149779736,0.6634615384615384,0.512853470437018,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024025059048932,0.0045257592823728,0.0067333570304169,0.0089471811295816,0.0110650773130286,0.0132500280289054,0.0155516551695987,0.0175313132138697,0.0196014240700577,0.0219936692652045,0.0242496358451469,0.0261960284766238,0.0283185840707964,0.0304335727757108,0.0324425314051548,0.0344264159918923,0.0364648097488187,0.0387873754152823,0.0406636845937792,0.0426385675275675,0.0577612049426043,0.0710950586264656,0.0841570652059854,0.0968614206201403,0.1090433388192598,0.124234248531979,0.1361233760720047,0.1481654990311109,0.1583322648202761,0.1682421485209068,0.1805518147832925,0.1934087810789171,0.2044293200547957,0.2149563354573574,0.2241675097875335,0.2339106169996013,0.2439582264075157,0.2525936761561831,0.2613029952085746,0.2690195898623322,0.2757806258900351,0.2824272924103224,0.2889325583322482,0.2931383954807681,0.2986014070986791,0.3043542635754562,0.3088716041032578,0.3130280973226102,0.3177383878897658,0.3226099911664271,0.3219978746014877,0.320998172399104,0.3198919055862855,0.3183275563258232,0.3167391917781771,0.3152701812443504,0.3126129553885665,0.3135206177098735,0.3149214704424657,0.3149144603943581,0.3158102321388325,0.3159000376543332,0.3166274575701562,0.3165195177699099,0.3175285621120263,0.318544693102997,0.3202197362021115,0.3227231142938263,0.324964006039962,0.3261517669038438,0.3301778936296702,0.3307287513953117,0.3325361862806796,0.334120874933313,0.3310065088199226,0.3295210864903502,0.3322157878695519,0.3332655137334689,0.3374384236453202,0.3464447806354009,0.0,2.1027320612867437,54.82549075707442,174.64027255389715,256.8862558355807,fqhc8_100Compliance_implementation,45 -100000,95716,44932,426.0207279869615,6010,61.55710643988466,4669,48.152868903840535,1853,18.962346943039822,77.3593554540744,79.73137666850616,63.33143217950936,65.08415453156037,77.12971287237134,79.50217464554771,63.247794679102114,65.00299402319983,0.2296425817030609,229.2020229584466,0.0836375004072493,81.16050836054,157.64738,110.7836950513098,164703.26800117013,115742.08601624575,398.90138,262.7265148109845,416092.7640101968,273825.2021091685,380.57022,185.6290192066697,393045.49918508925,190479.6827985012,3358.43136,1530.8158309480148,3469261.2206945545,1559969.9883345866,1131.86661,491.8515377725452,1169389.3184002675,500795.1981740157,1814.88766,754.3192747135548,1860099.7743324,758922.801880506,0.37917,100000,0,716579,7486.51218187137,0,0.0,0,0.0,34484,359.6054996029922,0,0.0,34871,359.8562413807514,1577776,0,56643,0,0,0,0,0,67,0.6895398888378119,0,0.0,0,0.0,0,0.0,0.0601,0.1585041010628478,0.3083194675540765,0.01853,0.3380861850443599,0.6619138149556401,24.380669914161164,4.362847742664942,0.3216962947097879,0.2319554508460055,0.2263868065967016,0.2199614478475048,11.43790749248616,5.977893060841618,19.695496915989725,12117.065374582524,52.932149412126414,12.989165720611156,16.989080432543993,11.749654645736353,11.20424861323492,0.5665024630541872,0.8051708217913204,0.6930758988015979,0.5733207190160833,0.1226874391431353,0.7519500780031201,0.9520383693045564,0.8774509803921569,0.7333333333333333,0.1089108910891089,0.4963094183643342,0.7132132132132132,0.6243144424131627,0.5224438902743143,0.126060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.0045211714497146,0.0067581965965478,0.0091812069630923,0.011500564351301,0.0137742168650167,0.0162087772057699,0.0185064205949002,0.0202306229682484,0.0225432283295283,0.0246628723786084,0.0266333877710329,0.0286637310177373,0.0306305378116628,0.0323712425314992,0.0344446167364449,0.0364952167971176,0.0386673858025971,0.0405538864574345,0.0425924189869066,0.0574728246682051,0.0710959004469004,0.0839050076572891,0.09683083781965,0.1091545582994158,0.1243335872048743,0.1363462722044186,0.1478137742337297,0.1581770582892557,0.1682368341988926,0.1810590960512848,0.1938671688963934,0.2048646237857476,0.214615519278743,0.2246327335198114,0.2353899883585564,0.2454473387447941,0.2537001214629538,0.2625416921924988,0.2698149081412929,0.2769333981076642,0.2838575452622228,0.2897255902999361,0.2957047140464225,0.3011522134627046,0.3062241582988777,0.3106070079783908,0.3141684560944309,0.318949683094037,0.323707646097908,0.3220614512380261,0.3211494347605115,0.3197422181037024,0.3181157438724256,0.3174184758463406,0.3156328679331655,0.313942489595157,0.3136177864966487,0.3143980661854827,0.3154992707481057,0.3168924481700471,0.3173177520282674,0.3177736751562959,0.3176607819825478,0.3195223535642921,0.3197725968810306,0.3217502850627138,0.3237954180190968,0.3273909985935302,0.329498115453283,0.3321931864824189,0.336065137565856,0.3382781792823633,0.3382274629136554,0.3433339583723983,0.346167473721507,0.3471099588226323,0.3490755627009646,0.3508580768183056,0.3502461188943582,0.0,2.407779183840637,56.04954948196945,168.16265399418603,258.17871242232115,fqhc8_100Compliance_implementation,46 -100000,95890,45110,427.6254041088748,6007,61.4766920429659,4698,48.42006465741996,1854,18.969652727083115,77.4394230829848,79.71909950084235,63.39129033748679,65.07703692242988,77.2039705370532,79.48538320918603,63.30439562454259,64.99325029098412,0.2354525459316079,233.7162916563216,0.0868947129441934,83.78663144576137,158.6497,111.55425536233156,165449.68192720824,116335.65060207692,400.6939,263.114553663923,417303.72301595577,273827.5040816801,377.88029,183.2987720347396,390506.6221712379,188389.5505388792,3360.95332,1524.3113669331435,3467031.233705288,1551667.8453781875,1117.28429,488.3723922653583,1150259.5473980603,494391.4717544662,1817.95504,763.3905007967766,1862161.3306914172,767858.9602240133,0.38176,100000,0,721135,7520.440087600376,0,0.0,0,0.0,34608,360.33997288559806,0,0.0,34549,356.7421003232871,1577332,0,56663,0,0,0,0,0,62,0.6465741996037125,0,0.0,2,0.020857232245281,0,0.0,0.06007,0.1573501676445934,0.3086399200932245,0.01854,0.3363391868375257,0.6636608131624743,24.65806902201092,4.3672218560610245,0.3197105151128139,0.2358450404427416,0.2215836526181353,0.222860791826309,11.161697329753691,5.744215383740282,19.80747038156516,12148.475242123128,53.1918027386762,13.369764428500812,16.86870313445092,11.528110026818284,11.425225148906184,0.5542784163473818,0.7924187725631769,0.6937416777629827,0.5379442843419788,0.1184336198662846,0.7443365695792881,0.9466019417475728,0.8702702702702703,0.7148760330578512,0.1650943396226415,0.486424032351242,0.7011494252873564,0.6360424028268551,0.4843554443053817,0.1065868263473053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0044387693056062,0.0067762910964809,0.009016235315619,0.0112819783101426,0.013471439327649,0.0152788388082505,0.0172378620971032,0.0194107310694291,0.0217680394443421,0.0239861472571159,0.025979089500631,0.0281460016030581,0.0300275879107304,0.0319697313346666,0.0339102061046631,0.0359925097507733,0.0377999751315953,0.0399916943521594,0.0420702210663199,0.0568301454109553,0.0707897101540133,0.0845226751552339,0.0973123359580052,0.1094595448133566,0.1250395928796165,0.1373915622451249,0.1490478619399813,0.1601368855342693,0.170506961761149,0.1832899744146546,0.195062395332505,0.2065066261134043,0.2170530778139545,0.2273396956636467,0.2367256147495628,0.2456787509333452,0.2543469470279013,0.2633951833979021,0.2708754843798223,0.2781569374675212,0.2853857289623611,0.2914253976507291,0.2963663347376484,0.3018371111003252,0.3072567243183356,0.3118772892628105,0.3155274454520054,0.3193340313594705,0.323489526417653,0.3225325033276416,0.3221186196289531,0.3203671943093317,0.3188679789874733,0.3182114785703693,0.3160582156179294,0.3145038892050844,0.3151497280650023,0.3151208199041626,0.3159328916435135,0.3161112981038932,0.3183126922773527,0.318988029331272,0.3192796563007813,0.320368156825245,0.3221276153886091,0.3226490890573724,0.3235624298365972,0.3276119662277196,0.3317604498446777,0.3317539822210189,0.3331046131109469,0.3370484002254085,0.3401184870120006,0.3415370108439415,0.3430474604496253,0.3439529848437983,0.3411282051282051,0.3462819089900111,0.3526077097505669,0.0,2.268302399611056,53.96399521784652,179.3310643752756,256.1239043450519,fqhc8_100Compliance_implementation,47 -100000,95737,45271,430.0740570521325,5951,61.03178499430732,4673,48.22586878636264,1808,18.56126680384804,77.34647984393533,79.6990618544931,63.33814763576003,65.07546437327412,77.12384608090787,79.47704375553695,63.25609624197294,64.99591799495424,0.2226337630274599,222.01809895614133,0.0820513937870899,79.54637831987554,158.32146,111.30700095895172,165370.77618893425,116262.87973603907,395.72715,260.2542614518288,412785.286775228,271281.31431866344,378.34325,183.9614677873677,391076.84594253,189066.5008336277,3326.44667,1507.0795926439653,3437696.010946656,1537419.6063079028,1104.19912,483.8441716107275,1141440.7804715002,493502.5994178232,1770.86398,739.587221742713,1819895.3800516,747137.0550989107,0.3815,100000,0,719643,7516.853463133376,0,0.0,0,0.0,34216,356.7899558164555,0,0.0,34620,357.5524614307948,1576741,0,56628,0,0,0,0,0,59,0.6058263785161432,0,0.0,0,0.0,0,0.0,0.05951,0.1559895150720839,0.3038144849605108,0.01808,0.3341330774152271,0.6658669225847729,24.44899958665862,4.344537578786971,0.3282687780868821,0.2386047506954847,0.2129253156430558,0.2202011555745773,11.031951924403222,5.692456484067548,19.329667908182188,12131.089611960791,52.8619608505476,13.372901624970408,17.216702807984742,10.98034279027284,11.292013627319616,0.5752193451744062,0.8116591928251121,0.7092568448500652,0.5778894472361809,0.1166180758017492,0.7473426001635323,0.9253012048192772,0.8877284595300261,0.7488584474885844,0.1262135922330097,0.5142028985507247,0.7442857142857143,0.6498696785403997,0.529639175257732,0.1142162818955042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787117682803,0.0046934079412867,0.0069006809348393,0.0090611730765323,0.011105009457563,0.0129194494217299,0.0153720693170234,0.0174731319976729,0.019799450072063,0.0216950610205586,0.0238524775005637,0.0257944654294629,0.0278314689916104,0.0298695011793303,0.03196384721735,0.0337888121718278,0.035554175078946,0.037722538075279,0.0397081141764204,0.0418189961357789,0.0561686311767223,0.0700612276937568,0.0833525671961224,0.0962039957939011,0.1088338552044786,0.1243987271516317,0.135999151463725,0.1474513142492284,0.1576997800977817,0.1678740596266369,0.180948177492626,0.193896860841074,0.2046269532523417,0.2148616756260652,0.2246631646042596,0.234622280262954,0.2439712358548414,0.2529544713435957,0.2621543138455954,0.2697961987634532,0.2770846101365649,0.2836403590798578,0.2904992901088499,0.2969163840318308,0.3021640395404755,0.3083608252498892,0.313294898890737,0.3180424243195439,0.3223440375294819,0.3263848550456777,0.325587660806897,0.3241502683363148,0.3224356987914472,0.3207440811724915,0.3191546281433922,0.3167718997118862,0.3149185255497548,0.3148330381158564,0.3158191414857455,0.3167145482771542,0.3173183102809336,0.3187084295498056,0.3193527426690981,0.3211163040318432,0.3220135164385868,0.3223369494183767,0.3236832328312994,0.3272858759904414,0.3292054025609542,0.3305624826821834,0.333045140152894,0.3347122779103686,0.3377151799687011,0.3388190476190476,0.3419811320754717,0.3468441697373113,0.3494582633908134,0.3473491773308958,0.3509212730318258,0.3532863849765258,0.0,2.239525984758266,53.425731793675375,175.6082050668431,259.1954593693512,fqhc8_100Compliance_implementation,48 -100000,95720,45143,427.4968658587547,6194,63.29920601755119,4895,50.32386126201421,1987,20.225658169661514,77.41222784566315,79.7676885289157,63.350809200748486,65.08938737093166,77.15966557660343,79.52187557183245,63.25678922231983,65.00175637108033,0.2525622690597231,245.81295708324544,0.0940199784286548,87.63099985132783,157.98068,111.07190410637956,165044.35854575847,116038.12903090216,398.53367,261.5877359651112,415548.4851650648,272480.0550398154,386.23486,187.9448074853102,398552.1207689093,192456.4552185689,3513.22871,1612.2970312419343,3612872.7434183033,1627013.601797883,1178.12636,528.0799410115333,1209953.5624738822,530841.131437037,1943.74894,819.938411723254,1979076.61930631,811112.2529194173,0.38202,100000,0,718094,7502.016297534476,0,0.0,0,0.0,34350,358.0234015879649,0,0.0,35352,364.39615545340575,1578179,0,56550,0,0,0,0,0,70,0.7208524864187212,0,0.0,1,0.0104471374843292,0,0.0,0.06194,0.1621381079524632,0.3207943170810461,0.01987,0.3312845728334357,0.6687154271665642,24.2380458237474,4.398985361094581,0.3256384065372829,0.2294177732379979,0.2169560776302349,0.2279877425944841,11.081885166818765,5.750075110560879,21.121933939617065,12243.948474211214,55.6412168279164,13.643180505995526,17.877103315792123,11.871309871218417,12.24962313491034,0.5536261491317671,0.8210151380231523,0.6599749058971142,0.5536723163841808,0.1326164874551971,0.7353159851301115,0.9395973154362416,0.8296296296296296,0.7624521072796935,0.146551724137931,0.4847887323943662,0.742603550295858,0.6021867115222876,0.4856429463171036,0.1289592760180995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.0047230527542694,0.0070303940267012,0.0094341538711511,0.0118138655334031,0.0140886649361225,0.0163177528181503,0.0186118650639782,0.0208073582013285,0.0228354435562288,0.0250576479631053,0.0271108145562798,0.0290220106712175,0.0309153072993903,0.0331018542404011,0.0350819163781074,0.0368529506176674,0.0388558029507584,0.0411515787941485,0.0431593970393674,0.0578826477343913,0.0718688195222,0.0851867394041124,0.0978075620173796,0.110175483026792,0.126074165008678,0.1382933559753767,0.149352585399097,0.1606514978251343,0.1710008049369466,0.1840882381481202,0.196257634166414,0.2078951379362902,0.218338698727635,0.2276503382472841,0.2381855697550585,0.2475857289757231,0.2562799918895172,0.2651939349196434,0.2725584168405604,0.2796335333225231,0.2863647536666159,0.2925992117503639,0.2985242681232332,0.3037147679939767,0.3085638284771311,0.3129468526573671,0.3177379002044678,0.3217930499935409,0.3257105263157894,0.3250093929472384,0.3238629351835346,0.322579739442947,0.3222187013884888,0.3212385456695241,0.3186865071507988,0.3168346456692913,0.3168147083795963,0.3178418440198545,0.3187041543079409,0.3188856796794931,0.3198978087845141,0.3208646616541353,0.3203775432972708,0.32051466359977,0.3213414317603696,0.3225467952353942,0.3246042175082911,0.3284730235322913,0.3301104972375691,0.3311894193314612,0.3345500714172353,0.3407467735872698,0.3426864317047345,0.3457535774019699,0.3507699541554014,0.3565505804311774,0.3569858085148911,0.3612920738327904,0.3732527389497544,0.0,3.18281809970803,58.10669668211312,184.92135799791828,260.4017613731048,fqhc8_100Compliance_implementation,49 -100000,95733,45425,430.1860382522223,5943,60.950769327191246,4698,48.52036392884376,1860,19.084328288051143,77.32373385663094,79.69336558242394,63.321321634088775,65.07489595984309,77.09062650505157,79.4606045672218,63.23507662882004,64.99099774187674,0.2331073515793633,232.76101520214357,0.0862450052687364,83.89821796635033,157.81348,111.0976247562152,164847.5238423532,116049.45500111268,399.24789,262.61390795918135,416479.3435910292,273755.46994975564,384.40488,187.3925487707006,397822.2660942413,192916.53515188707,3410.88086,1561.802669731547,3526999.300136839,1595521.9664540973,1139.52255,507.29985689369903,1179107.350652335,518720.471129762,1832.41478,774.8288444179541,1882284.1653348373,782740.1005687255,0.38224,100000,0,717334,7493.069265561509,0,0.0,0,0.0,34527,360.0639277991915,0,0.0,35054,362.4455516906396,1575148,0,56575,0,0,0,0,0,66,0.6894174422612892,0,0.0,2,0.0208914376442814,0,0.0,0.05943,0.1554782335705316,0.3129732458354367,0.0186,0.3379266143246274,0.6620733856753725,24.16671679862896,4.392048979066685,0.3190719455087271,0.2298850574712643,0.2164750957854406,0.2345679012345679,11.176706572861226,5.737111800049103,20.037905456545943,12161.371307834816,53.45254759863419,13.019325814845072,16.980837969729418,11.241326641641908,12.2110571724178,0.554704129416773,0.7703703703703704,0.7024683122081388,0.5909537856440511,0.1088929219600726,0.7161845191555903,0.9266503667481664,0.8590078328981723,0.7445887445887446,0.140625,0.494296577946768,0.6751117734724292,0.6487455197132617,0.5458015267175572,0.0992907801418439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796352583586,0.0046142768768951,0.0069427527405602,0.0089933540637765,0.0113035161972977,0.0135480650714584,0.0159915147064822,0.0183121750942162,0.0202979763377746,0.0225203543448205,0.0247151603408846,0.0268871315600287,0.0290722794889204,0.0309656544006265,0.0331017825624722,0.0351482947908159,0.037107615191027,0.0392065320012034,0.0413495529216053,0.043512237816886,0.0578027439597385,0.0711930753692055,0.0853309274781532,0.0989533477094619,0.1110091743119266,0.1266164077947069,0.1378637274974275,0.1497685800925679,0.1599316531396838,0.169427557442611,0.1821705426356589,0.1943209475904592,0.2064128910199954,0.2168228181609471,0.2266608007039155,0.2367054551091132,0.2465550303246521,0.2548863227893602,0.2629329403095062,0.2702600656743057,0.2776153552815558,0.283814887079249,0.2894920383483267,0.294424148050548,0.2999283571940305,0.3048343171203588,0.3102153229844767,0.3150925619413817,0.3209425305233688,0.3241395692567567,0.3229047420236764,0.3218751721478543,0.3207523228107772,0.320487402497793,0.3192866067709883,0.3170283192350128,0.3149278754903201,0.3142679107292196,0.3146648020874192,0.3153512916050131,0.3162883044878999,0.3161289046271934,0.3163265306122449,0.318672701200932,0.3186309954205832,0.3201557274247492,0.3211221688400824,0.324782814721213,0.3272445165385429,0.3304691871153385,0.3333027354507068,0.3355294873855053,0.3392573786099651,0.3394848135332564,0.3425174561237969,0.3439779930630307,0.3453766074709124,0.3466070702966274,0.3475980121479845,0.3489361702127659,0.0,2.1427333574088587,56.16352107588398,177.64546455425594,253.01267923081625,fqhc8_100Compliance_implementation,50 -100000,95775,45156,428.1075437222657,5975,61.216392586791954,4650,47.90394152962673,1773,18.08405116157661,77.38153749659537,79.72311953966307,63.350937847410606,65.08272717648222,77.15875167644703,79.50465516488076,63.26813242974986,65.00431462492915,0.2227858201483457,218.4643747823145,0.0828054176607437,78.41255155307181,158.65278,111.59282511062848,165651.55833985904,116515.60961694438,400.86298,263.17502607806324,417879.5614722005,274117.6675312589,377.50056,183.32646745985213,390117.50456799794,188211.01783628084,3290.66519,1492.675911747457,3392204.0093970243,1514974.056616116,1082.39902,471.7471401664542,1113760.1357347951,476203.637784763,1734.68266,727.7611571688491,1771917.7238318978,726408.947057693,0.37963,100000,0,721149,7529.616288175411,0,0.0,0,0.0,34688,361.50352388410334,0,0.0,34464,355.84442704254764,1575113,0,56521,0,0,0,0,0,59,0.6160271469590185,0,0.0,1,0.0104411380840511,0,0.0,0.05975,0.1573900903511313,0.2967364016736402,0.01773,0.3248356581689915,0.6751643418310085,24.685026097540607,4.358757042642797,0.3266666666666666,0.2412903225806451,0.22,0.2120430107526881,11.11706376370424,5.678885790607916,18.828295205038483,12108.518474736433,52.50242102918484,13.22034261226264,17.184960158020637,11.396691542672166,10.700426716229408,0.5666666666666667,0.7709447415329769,0.7024358130348913,0.5865102639296188,0.1044624746450304,0.7258333333333333,0.9063291139240506,0.8438356164383561,0.7258064516129032,0.1302083333333333,0.5113043478260869,0.6973865199449794,0.6577123050259965,0.5419354838709678,0.0982367758186398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0044296227218359,0.0066251369668438,0.0088662746412357,0.0113264330886389,0.0133961745574478,0.0157581440861091,0.0176772573714775,0.0199268327576692,0.0219268627089856,0.0243477548008935,0.026267167580218,0.0282952909726506,0.0304047444992432,0.0322331098504383,0.0344061579790256,0.0364353198050436,0.0384368197367057,0.0406482106684672,0.0425720205311872,0.0574681457209346,0.0713912188591628,0.084977460949785,0.0979110625420309,0.1097049525816649,0.1248031787295649,0.1368833783712181,0.1488210405459996,0.1595240636004695,0.169208673190495,0.1812623783690691,0.193441984708058,0.2045775642836959,0.2153175401022772,0.2243804788983358,0.234125226940619,0.2441991414394826,0.2519110571518503,0.2598884151319967,0.267685724419629,0.2753919800194255,0.2824348964420964,0.2900993612491128,0.2958070349832928,0.3020029133284778,0.3069649474889499,0.3118361532501937,0.316067841432095,0.3208015835025939,0.3242911937996757,0.3235349487669096,0.3217833344782579,0.3199786099266827,0.3179678928220823,0.3169344539811707,0.3151585578422678,0.314480602529487,0.3142581447075755,0.3148248894933696,0.314539215163315,0.3158405856646621,0.316341415336093,0.316996196129248,0.317727770452971,0.3178733302956905,0.3188096662591369,0.319168276332235,0.3210587241497982,0.3237882385808073,0.3271341704177525,0.3307946869758375,0.3326453934486955,0.333731982123749,0.3388102844971855,0.3421942513620139,0.3467295226870949,0.3481099134659177,0.3554483313228789,0.3601100412654746,0.3596657804785416,0.0,2.521021951843405,51.984694868950704,179.14024018542645,254.15916874574552,fqhc8_100Compliance_implementation,51 -100000,95873,45046,427.10669322958495,5969,61.33113598197615,4717,48.76242529179226,1877,19.358943602474103,77.37299817448195,79.67428156542874,63.35320242165369,65.05702778646945,77.14040220240784,79.4388291999296,63.26798771226765,64.97223853170914,0.2325959720741082,235.4523654991425,0.0852147093860367,84.78925476030952,157.82272,110.94138693502649,164616.44049941067,115717.02870988337,398.02083,261.6204420967068,414666.31898449,272394.367649606,377.51882,182.98403580742277,390611.1209621061,188489.81762105064,3406.21484,1541.814384466185,3524820.0014602654,1580163.5752153206,1134.58114,495.7580510643043,1173267.4788522315,506945.27245867415,1846.75216,769.2625647081229,1905748.625786196,785363.2801431563,0.37982,100000,0,717376,7482.565477245939,0,0.0,0,0.0,34392,358.28648316001374,0,0.0,34430,355.9813503280381,1579334,0,56764,0,0,0,0,0,70,0.7197021059109446,0,0.0,2,0.0208609306061143,0,0.0,0.05969,0.1571533884471591,0.3144580331713855,0.01877,0.3327464788732394,0.6672535211267606,24.37405878384508,4.340212456959226,0.3171507313970744,0.2310790756836972,0.2253550985796056,0.2264150943396226,10.991929797913803,5.65753130972509,20.02427210819601,12077.298535329632,53.25042292225787,12.973489332905718,16.67337303468017,11.781210726195331,11.822349828476646,0.5522577909688361,0.7880733944954128,0.6798128342245989,0.5719661335841957,0.1132958801498127,0.7157980456026058,0.9083769633507852,0.8598382749326146,0.701195219123506,0.1651785714285714,0.4946976210948696,0.7231638418079096,0.6204444444444445,0.5320197044334976,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019039902774964,0.0040945807615514,0.0062079668908432,0.0082448266758727,0.0104101010511762,0.0124083876221498,0.014615800148808,0.0169202665605323,0.019096956135242,0.0211594736734401,0.0234516674350699,0.0258549047369879,0.028025569349667,0.0299739580652798,0.0320505551374699,0.0340059482010822,0.0360653024064226,0.0380291176622972,0.0399169262720664,0.041979650013525,0.0566069212883314,0.0707605822179033,0.0837392497616877,0.0962346171615775,0.1088716895698415,0.1241999197279199,0.1363564125655559,0.1476572133168927,0.1581648987258019,0.1686576598776476,0.1813398467762761,0.1933102777477575,0.2046141140162135,0.2154327128037516,0.2252329559831457,0.2351970587909593,0.2446511835441626,0.2532146834816456,0.2614688265722842,0.2692765704078594,0.276463853261938,0.283067421513124,0.2885917159763314,0.2944946215950744,0.3000776963045695,0.305231519690568,0.3095229153365631,0.3135551173589466,0.3182141886030221,0.3223144859998151,0.3205313000956448,0.3202527985459953,0.3189031357115653,0.3183416540047753,0.3170376317706707,0.3150953511526384,0.3129691211401425,0.3132498481839518,0.314027720879421,0.3145764527358743,0.3160229059061307,0.3164429530201342,0.3167792816350438,0.3168550850670056,0.3176929893894757,0.319185986069238,0.3195350559813111,0.3245936684586123,0.3272497543170012,0.3318960401914633,0.3375531241522742,0.3400475812846947,0.3450876862153498,0.3486245523127333,0.3549147111488078,0.3594671068144305,0.3628142244022072,0.3676710097719869,0.3640642303433001,0.3623188405797101,0.0,1.749197399251457,54.30273517204653,173.7122223719379,265.8561922720671,fqhc8_100Compliance_implementation,52 -100000,95798,45117,427.99432138458,6015,61.77581995448757,4766,49.2285851479154,1864,19.16532704231821,77.39816222968327,79.727766841043,63.35848721039546,65.07954011374265,77.16887775936357,79.498071446412,63.27325077183816,64.99627683236946,0.2292844703196976,229.6953946310083,0.0852364385573025,83.26328137319194,157.32662,110.64921933801594,164227.45777573643,115502.64028269476,395.06783,259.42314086965786,411854.3289003946,270260.20118869323,377.63104,183.21556704007315,390685.9224618469,188612.42090067916,3410.82817,1549.311418155986,3527578.4149982254,1584438.9642573786,1133.15835,498.414840862581,1171661.3708010605,509122.4192099125,1823.47348,766.3502628617505,1876674.2520720684,776071.7707266763,0.38176,100000,0,715121,7464.884444351656,0,0.0,0,0.0,34057,354.9656569030669,0,0.0,34659,358.2747030209399,1583606,0,56817,0,0,0,0,0,61,0.6367565084866073,0,0.0,1,0.0104386312866656,0,0.0,0.06015,0.1575597233864208,0.3098919368246051,0.01864,0.338615116463318,0.661384883536682,24.513402981270264,4.40138014846511,0.3199748216533781,0.2314309693663449,0.2297524129248846,0.2188417960553923,10.970204304158676,5.663204715419278,19.85159991514973,12132.243266959871,53.962019516957504,13.286229180311697,17.222458861526007,12.13951051172521,11.313820963394589,0.5673520772135963,0.7842248413417952,0.7239344262295082,0.5598173515981735,0.1169702780441035,0.7178683385579937,0.8901869158878505,0.8549222797927462,0.6807692307692308,0.1386138613861386,0.5123209169054441,0.717037037037037,0.6795434591747147,0.5221556886227545,0.1117717003567182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495574325008,0.0046315064050591,0.0068985107332711,0.009038102201641,0.0110506785950287,0.0133226128198343,0.0152240813581429,0.0171919478425891,0.0193301865587772,0.0215881071015664,0.0235943775100401,0.0254899948691636,0.0275114331226555,0.0296109510086455,0.0320628473045558,0.0339061822237828,0.0360312829743653,0.0379606395553804,0.0401646073429007,0.0420068310563145,0.0569803839732888,0.0706845704963293,0.0838077265817476,0.0964361908965749,0.1091104598452423,0.1253884695883808,0.1373499342468077,0.1489785060651202,0.1597321600205045,0.1697850211762183,0.1820923169707282,0.193904588862572,0.2058059819866801,0.2160163418683911,0.2251467129700859,0.2350572041868596,0.2445475224120244,0.2529066498751883,0.261547710876174,0.2685845826127787,0.2764801110083256,0.2830115875261625,0.2892942541253344,0.2955444239388347,0.3004443473193473,0.3058753986921665,0.3105651412853213,0.315180092015963,0.319109558014625,0.3223747543880471,0.3224634267795378,0.3218600942968288,0.3211308853345348,0.3200889055667008,0.3187503705021045,0.3171562562057956,0.315086887835703,0.3166661207376592,0.3171564110439916,0.3177078691738704,0.3184553848454263,0.3203774255314949,0.3208612040133779,0.3208925310648911,0.3227680172104697,0.3243081875292041,0.3241363713461864,0.3273855944099572,0.3321280812154504,0.3376562131572742,0.3423174488131908,0.3473734027449124,0.3500124316260566,0.3523500075562944,0.3512957245766676,0.3548884670147129,0.3550592525068368,0.3574888978603149,0.358266629864753,0.3670354826402137,0.0,1.937671506803874,56.126087916809375,177.48287356081246,261.67609023888645,fqhc8_100Compliance_implementation,53 -100000,95875,44747,423.11342894393744,5976,60.93350717079531,4692,48.333767926988266,1847,18.82659713168188,77.3584022892406,79.64086501297393,63.35300198276878,65.04182931420256,77.12383811854187,79.41076568792654,63.26460529822048,64.95814205031691,0.2345641706987322,230.09932504739083,0.0883966845483001,83.68726388565051,157.75694,111.01373806963072,164544.3963494133,115790.07882099686,397.48164,261.4033389550785,413991.0404172099,272058.0015176829,376.42038,182.78904530759223,389445.9139504563,188223.42363643055,3401.08066,1554.6669297244257,3504391.478487614,1578536.2187477697,1123.5086,505.5010787189569,1154183.5202086049,509597.71156448376,1820.9156,774.9897202694584,1857658.2842242504,771882.4857937495,0.37759,100000,0,717077,7479.29074315515,0,0.0,0,0.0,34338,357.5280312907432,0,0.0,34496,356.5893089960887,1577000,0,56636,0,0,0,0,0,77,0.803129074315515,0,0.0,1,0.0104302477183833,0,0.0,0.05976,0.1582669032548531,0.3090696117804551,0.01847,0.3354076910802617,0.6645923089197383,24.67042532564466,4.445674294181661,0.3150042625745951,0.2274083546462063,0.2310315430520034,0.2265558397271952,11.123583625657943,5.651921140010127,19.663510990532743,12060.285257472577,52.975163440592176,12.629254067823002,16.592844433480504,11.960159322680209,11.79290561660848,0.5573316283034954,0.7769447047797563,0.6840324763193505,0.6014760147601476,0.1157102539981185,0.722940226171244,0.9470899470899472,0.8601583113456465,0.7280334728033473,0.152892561983471,0.4979733642154024,0.683599419448476,0.6232939035486806,0.565680473372781,0.1047503045066991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023489151454403,0.0048636653798218,0.0072927549167773,0.0093005310237691,0.0115267330758284,0.0136781363539217,0.015872692448755,0.0179815390891937,0.020154579704522,0.0221224915404982,0.024077145138505,0.0264606678217365,0.0283874413302248,0.0302531554421733,0.0325233413714215,0.0345778181592913,0.0368673128445966,0.0391037134536258,0.0411136727106569,0.0427716797586224,0.0577668890742285,0.0715487248069709,0.0849758079718492,0.0978693465225929,0.1095672509691555,0.1252416620006972,0.1372235234269847,0.1488318676293878,0.1588099660539294,0.1687214562919445,0.1815518819665069,0.1926738500151456,0.2039012297354601,0.2143575614449401,0.2232620026831467,0.2333200513569752,0.2419770438041696,0.2516250196801691,0.2597379020820332,0.266829374491538,0.2734216769862855,0.2799714529734536,0.2868547603818729,0.2928771921406808,0.2974297247349479,0.3031802032961611,0.3083130748602792,0.3126871472076044,0.3172409318019596,0.3211811065270284,0.3200296735905044,0.3188533627342889,0.3180465654129825,0.3172697154265708,0.316336854634727,0.3139793523447207,0.3121739268327492,0.3115988491574188,0.3126079742743273,0.3139435262199693,0.3155075205574391,0.3162097523372799,0.3170634587978875,0.3177967048934791,0.3200625451046427,0.3203701778101279,0.3198874296435272,0.3247249819788761,0.3272517563175002,0.3300490661601772,0.3327115559599636,0.3361864003804089,0.3418851788970634,0.346319018404908,0.3476158877618732,0.3531175059952038,0.3557662418402238,0.3560251981304613,0.3592847317744154,0.3605182926829268,0.0,2.311809411648201,53.85597304612643,174.90516397317492,259.5389908797676,fqhc8_100Compliance_implementation,54 -100000,95732,45508,431.6529478126436,5952,60.88873104082229,4633,47.80010863661054,1810,18.489115447290352,77.38965647392791,79.75633952208929,63.34469261111818,65.093784165139,77.16469952288392,79.53463500897638,63.26097358344009,65.01433266348438,0.2249569510439926,221.7045131129112,0.083719027678093,79.45150165461712,157.96902,111.12555881061586,165011.72021894457,116079.84666633504,400.4052,263.9519730084256,417669.2119667405,275133.0277675675,386.91824,188.4829963571603,400560.1052939456,194116.8500875543,3293.58717,1496.6142127263463,3397926.2629005974,1520902.775654724,1108.70197,492.2470354346145,1138789.2763130406,494952.86874760495,1769.59206,738.0321573826476,1808813.813562863,736519.3485217171,0.38256,100000,0,718041,7500.532737224752,0,0.0,0,0.0,34477,359.5140600844023,0,0.0,35279,364.9354447833536,1574916,0,56516,0,0,0,0,0,77,0.8043287510968119,0,0.0,0,0.0,0,0.0,0.05952,0.1555834378920953,0.3040994623655914,0.0181,0.3298688839142948,0.6701311160857052,24.77820158405407,4.324463375693637,0.3224692423915389,0.2382905244981653,0.2221023095186704,0.2171379235916253,11.179647721891026,5.881050860398453,19.02937855947929,12182.715821493242,52.21605759396383,13.235807191761127,16.79665928286327,11.37182029933206,10.811770820007366,0.56378156701921,0.782608695652174,0.6854082998661312,0.5811467444120505,0.125248508946322,0.7368421052631579,0.918987341772152,0.8582474226804123,0.6962025316455697,0.1785714285714285,0.5021949078138718,0.7066290550070522,0.6247739602169982,0.5467171717171717,0.1123456790123456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093752532209,0.00481534422108,0.0072560103106384,0.009295568604344,0.0114132259147364,0.0135839680664738,0.0156911124478747,0.0178030032359816,0.0201978902608553,0.0225195254521818,0.0244469956333668,0.0263844116378867,0.028332630843091,0.0303563889489563,0.0325525265340223,0.0348081315433189,0.0368115311733093,0.0388334405411574,0.0407437818960409,0.0427937315050222,0.0576762445706648,0.0715848310078817,0.0849972195700301,0.0978327196212519,0.1098381754119459,0.1254600837669755,0.1379222542861992,0.1493550721552935,0.1601413986073732,0.1700788246018553,0.1824564426162427,0.194845940799723,0.2067090741042788,0.2172600822325255,0.2268446185331074,0.2364087400467346,0.2457703674789494,0.2543797548011552,0.2619190693772038,0.2701592604457462,0.2778413755622622,0.2841598391790652,0.2904647672618555,0.2962838848662558,0.3017242425345516,0.3068779160665263,0.3115014376797099,0.3165554496345726,0.3209889314161581,0.325337726523888,0.3238887619457251,0.3230691015018481,0.3218227577576873,0.3214661800556814,0.319947265509273,0.3183234081539166,0.3157803404376154,0.3164042080501829,0.317186147920661,0.3178674044907949,0.3186821359512122,0.3189751644252478,0.3194216165609071,0.3205136750427692,0.3217262544481861,0.3225672663175903,0.3235960786535955,0.3263412033988649,0.3294984216064539,0.3327770493106051,0.3364831552999178,0.3381921084948475,0.339973523293198,0.3424843502526585,0.3436515291936978,0.3450819672131147,0.3469387755102041,0.3492126768985449,0.3560421735604217,0.3640151515151515,0.0,2.197447145779482,53.04351668031309,173.6799864370499,254.58462353421316,fqhc8_100Compliance_implementation,55 -100000,95758,45458,431.8281501284488,6068,62.13580066417428,4715,48.61212640197164,1847,18.80782806658452,77.34687979821054,79.70496651186205,63.33382307926016,65.08067758753398,77.11905086843207,79.48222753496343,63.24859071873302,65.00037060523455,0.2278289297784681,222.73897689862565,0.0852323605271365,80.30698229943312,159.49296,112.16101327842468,166558.3658806575,117129.65316571428,401.86133,264.22329621156973,418955.0324777042,275219.7479182625,379.59177,184.45363198019427,392723.20850477245,189714.5746524528,3383.24219,1538.954830798825,3487620.6687691887,1561632.9087896852,1118.37649,489.9176811582535,1148361.609473882,492083.5655332581,1811.96346,760.1080894075768,1847340.796591408,756550.3294675582,0.38387,100000,0,724968,7570.834812757159,0,0.0,0,0.0,34712,361.8287767079513,0,0.0,34728,358.9987259550116,1568552,0,56368,0,0,0,0,0,68,0.6996804444537271,0,0.0,0,0.0,0,0.0,0.06068,0.1580743480865918,0.3043836519446276,0.01847,0.3294469828265322,0.6705530171734678,24.66493531787133,4.385764892596726,0.3255567338282078,0.2284199363732768,0.2267232237539766,0.2193001060445387,11.102577178602065,5.669459890601216,19.589454998553546,12216.910144151623,53.40280345895505,13.003544247734196,17.23116060700573,11.92893181800096,11.239166786214174,0.5643690349946978,0.7920148560817084,0.6840390879478827,0.5865294667913938,0.1266924564796905,0.7298387096774194,0.901015228426396,0.8537859007832899,0.7601626016260162,0.1658986175115207,0.5053237410071942,0.7291361639824304,0.6276041666666666,0.534629404617254,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021077378298407,0.0042489757838802,0.0065177664974619,0.0085774972814211,0.0109872222674371,0.0132991181442333,0.0154755836476705,0.0177317272356063,0.0199341661384964,0.022075009982901,0.0244730150918635,0.0262957943157548,0.0285273549979432,0.0303688976337395,0.0322417512100977,0.0341548130995699,0.0361407105947166,0.0383003444126312,0.0400220381092965,0.0419972925127564,0.0569484165918627,0.0711013013096782,0.0848230668414154,0.0983572096738593,0.1100337268128161,0.1252073932387162,0.13726799588726,0.1484375830648676,0.1594162701883894,0.1703210188626699,0.1826523806450224,0.1946590872248219,0.2057321657504182,0.2157008365915991,0.2256540418191207,0.2362034813593457,0.2457513716044426,0.2551351959075833,0.2640580137771372,0.2717432390639497,0.278729879537591,0.2854134001076502,0.2924730419137578,0.2980975557127273,0.3033665578069419,0.3080122565004984,0.3124249399519616,0.3172409408773045,0.3225042695233659,0.3272720085385618,0.3265923545467991,0.3250161532010833,0.3242350095623805,0.3232834443579317,0.3220751108277611,0.3199333567705547,0.3180359993046666,0.3180312817654195,0.3193300243906599,0.3201019081045448,0.3211539540887916,0.321978672985782,0.3235805027102823,0.3251414387620474,0.3257710628879373,0.3264708956003762,0.3282946622471139,0.3315741238188541,0.3337207664130741,0.3384750288971262,0.3397116044861524,0.3419890384717714,0.3453637570317932,0.3462768387391502,0.3436419695412501,0.347738812138387,0.350320415013732,0.3499898021619416,0.3523969722455845,0.3600953895071542,0.0,2.483932051799653,54.03588152091356,178.77662823030792,258.5696864682223,fqhc8_100Compliance_implementation,56 -100000,95747,45172,428.34762446865176,5893,60.29431731542503,4616,47.57329211359102,1846,18.83087720764097,77.36211040614715,79.72298387663494,63.32787542470121,65.0753384123473,77.12674910790862,79.49274047755236,63.239717091046685,64.99212516854517,0.23536129823853,230.24339908258185,0.0881583336545261,83.21324380213468,158.48624,111.4449861148426,165526.0634797957,116395.27725656428,397.43124,262.4511046889483,414468.4637638777,273492.62607595883,379.10268,185.04316082322728,392400.492965837,190477.45191604985,3307.87326,1521.9301008555074,3411428.243182554,1546155.0135831998,1091.53937,486.4015728791919,1122487.889959999,490470.388502189,1798.70198,765.8273082632945,1836957.87857583,763962.2256484831,0.38005,100000,0,720392,7523.91197635435,0,0.0,0,0.0,34405,358.6744232195265,0,0.0,34661,358.4133184329536,1571887,0,56416,0,0,0,0,0,60,0.6266514877750738,0,0.0,1,0.0104441914629178,0,0.0,0.05893,0.1550585449282989,0.3132530120481928,0.01846,0.3369898370704952,0.6630101629295048,24.26963087996512,4.380625760819292,0.3158578856152513,0.2378682842287695,0.2281195840554592,0.2181542461005199,11.153769293228406,5.805086409985169,19.73651256885533,12096.756112813327,52.282725933048205,13.101667739066924,16.456893330602703,11.756525707599742,10.967639155778835,0.5617417677642981,0.7604735883424408,0.7133058984910837,0.5726495726495726,0.1142005958291956,0.7233716475095785,0.9090909090909092,0.8593350383631714,0.7159533073929961,0.1491228070175438,0.4980368468740562,0.6651718983557549,0.6597938144329897,0.5263819095477387,0.10397946084724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0045024033098748,0.0069231550096436,0.0090634748061818,0.0112506993540511,0.0132093534851509,0.0155405543205596,0.0176427346238666,0.0195703520413901,0.02161669533874,0.0238534744441709,0.0262444275530538,0.0281784325425402,0.0302652459759691,0.0322940211165123,0.0341897131041612,0.0360671015843429,0.0383781372233692,0.0404669341593729,0.0426327521196591,0.0572362102801787,0.0710392232765926,0.0836575671452392,0.0962167506336969,0.1080040505474568,0.1233011454378153,0.135010980383836,0.1456281738723105,0.1563241233412398,0.1669615570210712,0.180218217851642,0.1920845869137031,0.2037055169337554,0.2138223034254893,0.2240299411084814,0.2340295861266552,0.2432429413867048,0.2531058696435002,0.2620374258122354,0.2689369208389173,0.2761403102570039,0.2827760488569623,0.289329466769249,0.2950135514354928,0.3003619843545017,0.3050329198826227,0.3096630395311854,0.3147832285328785,0.3191183517010062,0.3233046989430347,0.3227540312260046,0.3209227423506255,0.3201717946912624,0.3195602236444804,0.3182351456108825,0.3164719751366413,0.3145926957402367,0.3155857997868328,0.3161896319530863,0.3176891451759304,0.3178362627715412,0.318342845896477,0.3199958255061574,0.3216561928956634,0.3226007378659384,0.3244169739780813,0.3260462742429397,0.3302488433162436,0.3332403598075448,0.3364445494643982,0.338633181263833,0.3415518872884029,0.3421430802874102,0.3430893085546611,0.3465144342337324,0.3484669811320754,0.3506828528072838,0.3566433566433566,0.3637105549510337,0.3649691358024691,0.0,2.4748725046589715,56.93975723873755,162.6579340202423,252.35745316163693,fqhc8_100Compliance_implementation,57 -100000,95768,45008,426.1653161807702,5874,60.35418929078607,4565,47.1765098989224,1787,18.35686241750898,77.32840490063373,79.68988736693622,63.31625382636724,65.06524291232681,77.09912740279724,79.45920599908642,63.23166405629844,64.98206167674547,0.2292774978364917,230.68136784979745,0.0845897700688027,83.1812355813355,157.38888,110.71816189653332,164343.91445994488,115610.81143652716,395.53157,260.7425317638629,412547.1869518002,271801.804113966,376.73234,183.6484320062669,390101.9025144098,189240.62938708943,3249.0529,1484.3364362392865,3360640.401804361,1517940.894911959,1075.86282,481.0539712157496,1111738.5556762177,490645.02883609297,1745.57018,733.9070275530054,1795066.2016539972,743466.8737092385,0.37822,100000,0,715404,7470.177929997494,0,0.0,0,0.0,34192,356.52827666861583,0,0.0,34371,355.6407150613984,1578036,0,56644,0,0,0,0,0,70,0.7309330882967171,0,0.0,1,0.0104419012613816,0,0.0,0.05874,0.1553064354079636,0.3042219952332312,0.01787,0.3423364790107387,0.6576635209892613,24.718032103338462,4.358496866369915,0.327710843373494,0.2293537787513691,0.2295728368017524,0.2133625410733844,11.192683751656178,5.823872069248756,19.093349838205423,12050.163152662772,51.59933070646779,12.384395375096702,16.78889877274579,11.642284096485668,10.783752462139624,0.5649507119386638,0.7717287488061128,0.7018716577540107,0.5811068702290076,0.1149897330595482,0.7352459016393442,0.9195710455764076,0.8677248677248677,0.772,0.1506849315068493,0.5028400597907324,0.6899109792284867,0.6457960644007156,0.5213032581453634,0.1046357615894039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381595614239,0.0047161200024341,0.0069345733663647,0.0091058761356938,0.0115053610302944,0.0136183996088657,0.0157652145537608,0.0178257851104667,0.020139648527352,0.0222738579017943,0.0243557414355126,0.0264084687811239,0.0285173644319665,0.0310237209925118,0.0329804140094524,0.0350402083807082,0.0370362702881748,0.0391176745102512,0.0410570288469532,0.0430231831531587,0.0577091683366733,0.0717557730923694,0.08441326958564,0.0965199020401299,0.1085999072786277,0.1234845842449609,0.135332605168556,0.1467264058575624,0.1576541456172767,0.1671920569565963,0.1802741968487825,0.1918578862527452,0.2031722547377124,0.2124774454590191,0.2216034163951747,0.2323325174709002,0.242054635539883,0.2511508030297914,0.2592100632358117,0.267703272527271,0.2752024994214302,0.2813552582335329,0.2873549609282501,0.2931309616653668,0.2988440079254136,0.3040481386946818,0.3091593003573443,0.3137119995922839,0.3181936086324963,0.3220354648322484,0.3211242922620652,0.319508131256799,0.3182241277183877,0.3181371557379418,0.3166198272144652,0.3145607553995432,0.3122385600202814,0.3123037208766997,0.3130610221074769,0.3139206576125804,0.3141460307945903,0.3152918418507333,0.3154014827190143,0.3155095747771099,0.3174423913304659,0.3190680723675647,0.3202824681796178,0.3224936498479099,0.3271589836787474,0.3303380571609532,0.3340285649512582,0.3381298756061564,0.3409842200461548,0.3416308365391868,0.3469692724385916,0.3507392630837831,0.3529232643118148,0.3514891880864953,0.3539823008849557,0.3509933774834437,0.0,1.945791025396752,53.67005113848563,166.21449656518084,254.6977951116266,fqhc8_100Compliance_implementation,58 -100000,95736,45210,429.107127935155,5949,60.92796858026239,4627,47.798111473218015,1819,18.676359989972426,77.31464774318667,79.67971522966815,63.30648041847581,65.05550890535557,77.08364342035739,79.44811557393867,63.220758721432375,64.97170654475212,0.2310043228292784,231.5996557294824,0.0857216970434322,83.8023606034426,158.2273,111.368284517875,165274.60934235816,116328.53317234376,395.98261,260.6113972294482,413087.9919779393,271687.4605471799,382.61966,186.5493078288605,396046.7326815409,192184.43481874192,3299.53532,1513.87636337533,3412823.608673853,1547632.9211324162,1105.17874,490.1269829200672,1143496.0829781902,501072.8079730627,1774.35904,750.2124424604144,1823855.686471129,758592.4769883427,0.37991,100000,0,719215,7512.482242834461,0,0.0,0,0.0,34241,357.0965989805298,0,0.0,34902,360.91961226706775,1572507,0,56366,0,0,0,0,0,71,0.7416227960223949,0,0.0,1,0.0104453914932731,0,0.0,0.05949,0.1565897186175673,0.3057656749033451,0.01819,0.3434684684684684,0.6565315315315315,24.43049111056316,4.306102055267364,0.3252647503782148,0.230819105251783,0.2264966500972552,0.2174194942727469,11.33907091323841,6.0725823831302135,19.43287205052848,12110.820697134595,52.57967210798319,12.83313797933666,17.000196257314254,11.64869011951418,11.097647751818096,0.5662416252431381,0.7865168539325843,0.7009966777408638,0.5868320610687023,0.1093439363817097,0.7428115015974441,0.9319899244332494,0.8952618453865336,0.7096774193548387,0.1213592233009708,0.5007407407407407,0.7004470938897168,0.6304347826086957,0.54875,0.10625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0044205168760328,0.0069631945431291,0.0093384818615994,0.0115367007477491,0.0138045560128774,0.0159047551034982,0.0180821302403463,0.0202093512972011,0.0220609311657999,0.0241661796520152,0.0260801708559224,0.0283078062478784,0.0304169972488691,0.0326073492981007,0.0345904147541661,0.0364291557506912,0.0382687738012472,0.0402711779813461,0.042286095281751,0.0567568414128653,0.071089898577574,0.0843570671730258,0.0972647253683313,0.1089482674989982,0.1254046163285167,0.1371635391016387,0.1489080784096595,0.159288913594236,0.1698394643087092,0.1826406711669937,0.19481856302348,0.2057259891929579,0.2158613963376546,0.2256769868571932,0.235417568873047,0.2448963611754309,0.2540998398411946,0.2623730278798357,0.2691101641377884,0.2765138338087618,0.2828130127033235,0.2889697774510618,0.2935279781984945,0.2994612737288857,0.3047297130591399,0.3086983729662078,0.3125039754729222,0.3175231589297728,0.3214022140221402,0.3203626239121955,0.3191331473567041,0.3176796356685033,0.3164445598246221,0.3158058863710611,0.3147274954072259,0.3132133415649586,0.3143068331143233,0.3151354585078198,0.3159040616746377,0.3159709210822154,0.3173424446507218,0.3187364198562594,0.319485613675366,0.3209841018631753,0.3233758474686339,0.3266700837177516,0.3297365119196989,0.3336713641291045,0.3362263702294614,0.3397678124288641,0.3421471806307741,0.3458056346945236,0.3433785752626332,0.3432115129710282,0.3462363030014292,0.3492454573452417,0.3512174989682212,0.3495821727019498,0.3520686963309914,0.0,2.026295870718925,54.95277708005072,172.1455315090818,254.24512742673957,fqhc8_100Compliance_implementation,59 -100000,95814,45325,428.9978500010437,5994,61.33759158369341,4719,48.66720938484982,1898,19.44392260003757,77.3504688262772,79.68439846496503,63.33176974345843,65.06069743186664,77.11460155682647,79.44933507218411,63.243924855178335,64.97540574618213,0.235867269450722,235.0633927809156,0.0878448882800952,85.29168568450984,157.66674,110.99614587713542,164555.0128373724,115845.4358205851,400.55579,263.7175502966198,417439.77915544703,274623.23908470565,387.17011,188.1482314967413,400765.2222013484,193742.7118569317,3380.50127,1553.5285768445897,3489998.0691756946,1583207.1063149315,1128.85059,505.69168960494,1162401.2252906673,512045.9374753694,1852.1894,783.2241586779342,1899465.2555993905,788752.5696918676,0.38159,100000,0,716667,7479.773310789656,0,0.0,0,0.0,34561,360.07264074143654,0,0.0,35384,365.9799194272236,1573933,0,56611,0,0,0,0,0,69,0.7097083933454402,0,0.0,0,0.0,0,0.0,0.05994,0.1570795880395188,0.31664998331665,0.01898,0.3327487244897959,0.6672512755102041,24.28280969722749,4.415437295934992,0.3297308751854206,0.2307692307692307,0.2180546726001271,0.2214452214452214,11.320840375345565,5.8400183336633,20.162142709814205,12166.738821499368,53.82300314047363,13.062037092445076,17.810957929292794,11.539446014483888,11.410562104251875,0.5619834710743802,0.7823691460055097,0.6928020565552699,0.5801749271137027,0.1196172248803827,0.7245600612088753,0.9221105527638191,0.8387096774193549,0.7317073170731707,0.1572052401746725,0.4997069167643611,0.7018813314037626,0.6363636363636364,0.5325670498084292,0.1090686274509804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110055311303,0.0047250641331129,0.0068101085963665,0.0090324416040966,0.0110258966169619,0.0131490497239819,0.0152873387384631,0.0174515970917408,0.0194981800335364,0.0216100567123231,0.0238917998831044,0.0262155362735534,0.0282391172447835,0.0305046343975283,0.0327956767460088,0.0351087461900087,0.0371819555721176,0.0393615035160868,0.0414016710313006,0.0432840948127791,0.0583013435700575,0.0714815937771179,0.0851636836148719,0.0978272289814873,0.1104660963378144,0.1264359313077939,0.1382838843763917,0.1494298114973831,0.1597552902991608,0.1704873056189649,0.1828131726216099,0.1952342854671654,0.2063117870722433,0.2163586083268661,0.2259150467012112,0.2366152550635997,0.2464339129852445,0.2544621756060231,0.2629570747217806,0.2704953716432957,0.2776099362202081,0.2855237761010704,0.2920216794471267,0.2966518071134119,0.3021560000972266,0.3067377198825648,0.3112135600015033,0.3159564303458819,0.3206708399756341,0.3240019023964911,0.3233016780877354,0.3224943829517416,0.3209772060482961,0.3195834538617298,0.3177642336851494,0.3164626767359568,0.3136496870791412,0.3141955732290451,0.3151932474455797,0.3157904139200028,0.3161383339262643,0.3166916818074097,0.3177660086663457,0.3183971751664953,0.3202414738563663,0.32158487027196,0.3218550955414013,0.3259136004018585,0.3279049449589376,0.3313930466460759,0.3335146159075459,0.3353935552033809,0.335422411631988,0.337138968698019,0.3385723641126391,0.3441756693283231,0.3450319051959891,0.3537442280666533,0.3565240931239848,0.3599391866210566,0.0,2.230378410812909,57.37083666775168,176.63737585219175,253.92308462230912,fqhc8_100Compliance_implementation,60 -100000,95702,45157,428.02658251656186,5997,61.08545275960795,4698,48.337547804643584,1921,19.66521075839585,77.30949638025908,79.66967376894094,63.31695901961641,65.0593952565904,77.06906715822116,79.43085930680877,63.22614184466971,64.97183226316307,0.2404292220379176,238.8144621321686,0.0908171749467001,87.56299342734053,158.54872,111.61790381581253,165669.18141731626,116630.6909111748,399.52757,262.7108544898475,416753.1608534827,273791.973511366,387.71972,189.28002646884957,399489.7703287288,193593.87314976176,3376.54535,1560.3118842455146,3479358.080290904,1581942.246430967,1176.34834,528.4782721853793,1211186.5582746444,534390.3156836793,1889.24354,800.5832197406995,1936146.496415958,804087.2897557231,0.37915,100000,0,720676,7530.417337150739,0,0.0,0,0.0,34517,359.9193329293014,0,0.0,35364,363.9317882593885,1568281,0,56335,0,0,0,0,0,83,0.8672755010344612,0,0.0,1,0.0104491024221019,0,0.0,0.05997,0.1581695898720823,0.3203268300817075,0.01921,0.3365019011406844,0.6634980988593155,24.48319973950875,4.370303424020224,0.3126862494678586,0.2337164750957854,0.2181779480630055,0.2354193273733503,11.331993199008588,5.943217221142061,20.45076587542461,12070.456598249928,53.55446819682977,13.141078641644096,16.72551817932217,11.36901292089546,12.318858454968042,0.55534269902086,0.7741347905282332,0.7161334240980258,0.5639024390243902,0.1166365280289331,0.7291021671826625,0.9117647058823528,0.8886075949367088,0.7396694214876033,0.1619433198380566,0.4894304169113329,0.6927536231884058,0.6527001862197392,0.5095785440613027,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025622588387802,0.0047441407833914,0.0070712604496388,0.0094052165434305,0.0117724800487978,0.0137103423005282,0.0159710543749681,0.0179652331907683,0.019991006091329,0.0220650694394694,0.0243034912564833,0.0264392718162496,0.0287715040771627,0.0306996766286997,0.032796353210536,0.0350670551526047,0.037124050423299,0.0391085207002406,0.0411050022345323,0.0430525317972062,0.0571828367950043,0.0712872737929518,0.0846060250062935,0.0974719750983237,0.1099803851264421,0.1257298189202911,0.1373235699883264,0.148160766569071,0.1585700701930576,0.168591744152376,0.1815634933462636,0.1928874642640561,0.20442373840728,0.2143537422412944,0.2237384083349853,0.2339394611375984,0.2435313044644054,0.2524927049651303,0.2601854166193278,0.2679797759765199,0.2746262780653304,0.2811651530755547,0.2876919979630748,0.2934817818622452,0.2992682096664397,0.3042410934570216,0.309448700615893,0.3139666653933814,0.3182772836881271,0.322461229292542,0.3215750283278476,0.3193860821404461,0.3176052263972569,0.3174192242052587,0.3164027620691708,0.3138674931721238,0.3112671134970299,0.3110379455099185,0.3121368458941089,0.3122423373364402,0.3134460259857473,0.3141188622278722,0.3148915581547005,0.3154998540080408,0.3178135203773128,0.318731867959541,0.31865864144454,0.3214296971034135,0.3244269441710026,0.3283948661067976,0.3314244159621852,0.3340944087505973,0.3389179315991686,0.3395277989337395,0.3386975343497083,0.3390111189969245,0.3426306965401615,0.3410995299407316,0.3459741687276724,0.348357524828113,0.0,2.9274930241465387,55.87638545897824,173.36191875164215,258.03340450655014,fqhc8_100Compliance_implementation,61 -100000,95722,45176,428.48039113265503,5995,61.15626501744636,4655,47.930465305781325,1880,19.19099057687888,77.40440741590693,79.76184236769217,63.3594678928421,65.09931626795849,77.16804531922581,79.52964769589994,63.27002962617596,65.01468026990013,0.2363620966811197,232.19467179222875,0.0894382666661428,84.63599805835997,157.21574,110.62408214773954,164242.01333026888,115568.08481617554,399.10842,262.85187917030026,416256.9628716491,273910.8555716557,381.7703,186.2916984743749,394600.7291949605,191386.2720616873,3339.29338,1532.5333654139663,3443624.4437015527,1556116.8544472174,1109.47789,497.2403747909135,1141202.3986126492,501602.81313690986,1837.78864,780.0763180608691,1878351.2881051376,777785.2426878181,0.37991,100000,0,714617,7465.546060466769,0,0.0,0,0.0,34443,359.0919537828295,0,0.0,34830,359.58295898539524,1580124,0,56669,0,0,0,0,0,83,0.8670942938927311,0,0.0,1,0.0104469192035268,0,0.0,0.05995,0.1578005317048774,0.3135946622185154,0.0188,0.3232642732879962,0.6767357267120038,24.40541864028556,4.383605238464705,0.3226638023630505,0.2292158968850698,0.2210526315789473,0.2270676691729323,11.318631187416177,5.949919234219858,19.999434374047777,12047.588151887854,52.663936381218335,12.796107031415444,16.834231360553872,11.472992745303454,11.560605243945576,0.5503759398496241,0.788191190253046,0.6731025299600533,0.5714285714285714,0.1154210028382213,0.7214397496087637,0.9303482587064676,0.8541666666666666,0.7233201581027668,0.1548117154811715,0.4856381403612674,0.7022556390977444,0.610912343470483,0.5219072164948454,0.1039119804400978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027033320846031,0.0048036483405117,0.0069592387444965,0.00917077134007,0.0112248736693339,0.0133957654723127,0.0160407643312101,0.0180606716120935,0.0201591891367207,0.0221746960828455,0.0240647740084042,0.0261720995155595,0.0283540660018505,0.0302512179797501,0.0323063271286474,0.0342995368838901,0.0364735975477149,0.0385896119254349,0.0406771910497708,0.0425893136131652,0.0564516971006775,0.0707326517157298,0.0841725411211816,0.0968352434023761,0.1091867390502292,0.124505636275194,0.136094549003798,0.1475050303952985,0.1579965169823819,0.1678945618719771,0.1806129921599035,0.1933539646814404,0.2039897319874695,0.2130891197375615,0.2229092629471113,0.2338309559670417,0.2434220803856368,0.2523389708528247,0.2609460072595281,0.2687235260446479,0.2755946464483021,0.2814153091609739,0.2874185013701218,0.2933758844903423,0.2981945959045196,0.3040025569159659,0.3082622221666937,0.3119817131246428,0.3165096716672481,0.3197346949518345,0.3190221112408877,0.318074505174733,0.3179154193194755,0.3166186220812914,0.3159344728500755,0.3136386543072247,0.3112803577353959,0.3112413635024068,0.3120816229198249,0.3130973356826312,0.3147659916605897,0.3155836460596484,0.3162339562690748,0.3176208509690354,0.3198036398467433,0.3202286605170846,0.3213668432833706,0.3239326405408789,0.3272517563175002,0.329643831284342,0.3331823124320406,0.3349907431896323,0.3374616876211922,0.3388704318936877,0.3419780628369585,0.3470581354544391,0.3512239622928387,0.3535778713168971,0.3582048458149779,0.3586530931871574,0.0,2.755237416271985,55.32957011307718,171.01050989829255,251.87879396404452,fqhc8_100Compliance_implementation,62 -100000,95736,45219,428.7310938413972,6058,61.847163031670426,4765,49.07244923539734,1874,19.073284866716804,77.33232137485312,79.69810854280668,63.31916690730778,65.07118520605502,77.10294894494734,79.4754916491907,63.23405643765991,64.9921687937446,0.22937242990578,222.61689361597803,0.0851104696478728,79.01641231042333,158.30606,111.34164136729709,165355.49845408206,116299.6612776543,399.224,262.28653942128955,416256.41347037687,273225.7043524486,379.91343,185.08292802106607,392770.0864878416,190156.08008687323,3413.68822,1550.8102037714916,3514822.3447814826,1569667.536785981,1143.19742,501.6170002976054,1177766.1067936826,508046.2971012841,1837.80816,761.6524004871569,1872694.5558619536,755022.7058480035,0.38219,100000,0,719573,7516.159020640093,0,0.0,0,0.0,34504,359.64527450488845,0,0.0,34799,359.5408205899557,1575343,0,56505,0,0,0,0,0,64,0.6580596640762095,0,0.0,0,0.0,0,0.0,0.06058,0.1585075486014809,0.3093430174975239,0.01874,0.3319678588309437,0.6680321411690563,24.717261506678888,4.365591987414431,0.3229800629590766,0.2325288562434417,0.2239244491080797,0.2205666316894018,11.267473814384145,5.764956777103631,19.699067222408495,12189.8249414916,53.82583329936397,13.27271997811692,17.40864839583455,11.841190436586087,11.303274488826402,0.5716684155299055,0.8113718411552346,0.7063027940220923,0.5763823805060918,0.1170313986679353,0.7416342412451362,0.9604938271604938,0.8523002421307506,0.6954887218045113,0.1343283582089552,0.5089080459770114,0.7254623044096729,0.6527531083481349,0.5368289637952559,0.1129411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.0047976954832689,0.0072699212086751,0.0097162370924465,0.0117502238137869,0.0139464756879004,0.0160418536346577,0.0181931413286506,0.0204693011604723,0.02253276003276,0.0244805068326037,0.0265078794723063,0.0285864121996113,0.0306606931355888,0.0323858653598142,0.0343558789482388,0.0363444333996023,0.0385217923578905,0.0406139904180913,0.0425567371085165,0.057468864507104,0.0721460709427644,0.0852851403937528,0.0981534449398502,0.1103612628382225,0.1264134378404679,0.138371587134838,0.1501884141278661,0.1606036655701286,0.1709129511677282,0.1837413962105626,0.1954722044866731,0.2074022498313714,0.217408424207291,0.2267535268613685,0.2367759580994142,0.2454223898416665,0.2543991899189919,0.2623456790123457,0.2693479306474886,0.2763672553058532,0.2830305653358911,0.2902015995456912,0.2957873044020033,0.3006423254853868,0.3060555658227068,0.3114399359583729,0.3159741200696572,0.3207075935607433,0.3254983125922801,0.3248789671866595,0.3230786149257014,0.3212481886351805,0.3197362345607757,0.3188173479383738,0.3173947626040137,0.3147629225045515,0.3151060027218023,0.3164899962507242,0.3168700057077626,0.3179661271264324,0.319451588651921,0.3209762643629958,0.3226694725530581,0.3254620370593479,0.3270474700052165,0.3276097727661028,0.3295615721625114,0.3316715233648141,0.3344492268452096,0.338410324228191,0.3394563998504832,0.3431757698644024,0.3454573240620463,0.3483230279183061,0.3514979948100967,0.3586561743341404,0.3547418967587035,0.3591836734693877,0.3610578765810655,0.0,2.565420895438377,55.93597744966455,167.50978424648437,271.6309957613374,fqhc8_100Compliance_implementation,63 -100000,95722,45441,430.32949583167925,5954,61.062242744614615,4668,48.13940368985187,1889,19.30590668811768,77.41699606751023,79.7698017647886,63.36600846061516,65.10029496978346,77.17403176278755,79.53202474707177,63.275083488060936,65.01478035359142,0.2429643047226761,237.77701771682305,0.0909249725542267,85.51461619204304,159.13766,111.90430241220947,166249.82762583316,116905.52058273905,400.10889,263.7164260216064,417378.1889220869,274890.5666061193,382.63789,186.5414638641799,396554.8463258185,192377.81216805975,3407.37309,1556.0956211034768,3515871.73272602,1581917.4097839966,1122.95255,498.108847308731,1158569.963017906,505864.2193151897,1864.613,790.5300995001606,1908073.504523516,789870.254197657,0.38274,100000,0,723353,7556.810346628779,0,0.0,0,0.0,34578,360.5963101481373,0,0.0,34921,361.5678736340653,1569930,0,56310,0,0,0,0,0,78,0.8148596978750967,0,0.0,0,0.0,0,0.0,0.05954,0.1555625228614725,0.3172657037285858,0.01889,0.3431498079385403,0.6568501920614597,24.348124961731692,4.433331426489145,0.3170522707797772,0.2245072836332476,0.2217223650385604,0.2367180805484147,11.220480919414236,5.677763156604223,20.12218352597821,12171.866511948952,52.80788811434434,12.506484810589416,16.572571948647305,11.523463695347877,12.205367659759748,0.5565552699228792,0.8024809160305344,0.7054054054054054,0.5816425120772947,0.1004524886877828,0.7198412698412698,0.9348958333333334,0.8642297650130548,0.7590361445783133,0.1147540983606557,0.4961854460093897,0.7259036144578314,0.649954421148587,0.5254452926208651,0.0963995354239256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026923621935666,0.0049336939894031,0.0072723953261927,0.0095654911199341,0.0118045387994143,0.0140576966143447,0.016328943613161,0.0182894468258828,0.0205612443027367,0.0228451583201186,0.0248806181214518,0.0269304979678968,0.0289691187960031,0.0312870104324363,0.0332910360764651,0.0355175727764056,0.0375627685458404,0.039392619329143,0.0413864781998648,0.0434008063423934,0.0577953199887228,0.0719375529721981,0.0857691419938309,0.0984528980553422,0.1111439270080692,0.1267571369641327,0.1381757616905711,0.149095167127954,0.1604983118936706,0.1698198198198198,0.1824809657653,0.1941483894004479,0.2052480542632288,0.2166693975640395,0.2259946599861555,0.2359872540992675,0.2452211906062261,0.2539893019283499,0.2621285472953821,0.2695437223194973,0.2773725159246714,0.2841218466284192,0.2905189738739804,0.2963273319287492,0.3012363954038609,0.3060860143562467,0.3110525065930082,0.3156583629893238,0.3190030910901589,0.3231470983731906,0.322703429724277,0.3205579222206953,0.320055177073363,0.3194299919065788,0.3186287615482874,0.3168339555664361,0.3144184136111594,0.3150725302072759,0.3155259617513326,0.3172531517274489,0.3178322069969757,0.3187658645048307,0.3194369021262375,0.3209843579645328,0.3213772627142994,0.3221056458733703,0.3223407878306277,0.3260203762735171,0.3281211825067188,0.3301108787436373,0.3308949697462295,0.3331925675675675,0.3379331876365907,0.3434182590233545,0.3417132216014897,0.344093567251462,0.3500604594921402,0.3508072553318716,0.3588774959525094,0.3590604026845637,0.0,2.434762783767532,54.83447077793078,171.32808153885364,257.2335947363725,fqhc8_100Compliance_implementation,64 -100000,95696,45392,430.3105667948504,5936,60.81758903193446,4619,47.69269352951012,1871,19.20665440561779,77.3508434030137,79.74211416752486,63.31502979323547,65.08316324720943,77.12128428655099,79.51193035689629,63.23075127838031,65.00046402634548,0.2295591164627097,230.1838106285743,0.084278514855157,82.69922086394388,159.69954,112.34973310093233,166881.687844842,117402.32082481416,399.31219,262.76248578628633,416703.2268851362,274013.4755014412,385.07931,187.1575541056285,398283.198879786,192406.77178748776,3313.33225,1499.6089468018347,3426735.338990136,1531640.6687081188,1125.65726,493.2186805865013,1160612.752884133,499958.74431835616,1831.8836,759.469743750271,1882781.1611770608,768479.5462724894,0.38132,100000,0,725907,7585.531265674636,0,0.0,0,0.0,34417,359.0432201972914,0,0.0,35077,362.41849189098815,1566694,0,56154,0,0,0,0,0,68,0.7105835144624645,0,0.0,2,0.0208995151312489,0,0.0,0.05936,0.1556697786635896,0.3151954177897574,0.01871,0.3252489559910054,0.6747510440089945,24.447321285963863,4.414751472674088,0.3147867503788699,0.2372807967092444,0.2188785451396406,0.229053907772245,11.270078798868044,5.870936368033677,19.684626760227,12181.25277767165,52.10283039218949,13.078821340443582,16.460907630818582,11.142856176512664,11.42024524441466,0.5648408746481922,0.791058394160584,0.7049518569463549,0.5816023738872403,0.1219281663516068,0.7475328947368421,0.9253731343283582,0.8590078328981723,0.7665198237885462,0.1666666666666666,0.4995592124595944,0.7132564841498559,0.6498599439775911,0.5280612244897959,0.1112412177985948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.004593807993023,0.0066491386573815,0.0091674119847142,0.0111599422165252,0.013406409812351,0.0158014465107264,0.0179445017515549,0.0197586418490488,0.0217941233703055,0.0240593176014521,0.0261295590636908,0.0281832114460867,0.0302496419703479,0.0323952237943383,0.034610017056908,0.0367369773320624,0.039223623436608,0.0410963178697732,0.0432874713362518,0.0575997159179922,0.071958790949923,0.0855532464260973,0.0987040037028465,0.111453344866142,0.1272030975604595,0.1391044079094006,0.1501634526306822,0.1603069753521879,0.1706066036419826,0.1838278883775073,0.1957651338009872,0.207721268307545,0.217483611849809,0.2273833247090687,0.2370656199410108,0.2458522207087511,0.2545260076559333,0.2623317621670736,0.2702981533065098,0.2774503560470098,0.2841586361134854,0.290270225444551,0.2959373388189855,0.3009942387631572,0.3057318561058871,0.3100821732768001,0.3153062651797408,0.3194401324640381,0.3235488126649076,0.3230893542522389,0.3217262150342437,0.3207289614410357,0.3189106495980603,0.3180787527601997,0.3167206502475096,0.3147560147228409,0.3145463777373757,0.3151575105319711,0.3163997791275538,0.3171310571658163,0.3187766910042706,0.3204927771871678,0.3218800071212391,0.3217424623416433,0.3227162993536329,0.3247921262514848,0.3304193075025758,0.3330427201394943,0.3345654738497837,0.3398386442511381,0.3438076659461169,0.3471962033220931,0.3486642380085003,0.3497329210008434,0.3511369019422075,0.3502283105022831,0.3621546412244086,0.3638567196337193,0.3678380443086325,0.0,2.15482729501374,53.23651908162444,172.65177623414925,253.75753498811227,fqhc8_100Compliance_implementation,65 -100000,95725,45231,428.237137633847,5842,59.90075737790546,4555,47.030556281013325,1730,17.738312875424395,77.26691653433518,79.62772342289861,63.2951211478972,65.0395565563638,77.04418305634178,79.40604501603356,63.21175114534645,64.95899474186146,0.2227334779934011,221.67840686505255,0.083370002550744,80.5618145023459,157.43046,110.76238344065771,164461.1752415774,115708.94065359909,395.03624,260.0242317455032,412112.8754243928,271071.34159885417,375.79624,182.84199894006795,389275.4348393837,188433.0815599313,3237.30818,1474.5652948748177,3345951.381561765,1504485.844737339,1098.46579,483.8519498910497,1132814.4580830503,490838.3403167829,1701.59546,722.7932666186009,1746273.3246278402,727091.0893636838,0.38134,100000,0,715593,7475.507965526247,0,0.0,0,0.0,34133,355.98850874902064,0,0.0,34303,355.0169757116741,1576431,0,56627,0,0,0,0,0,64,0.6685818751632281,0,0.0,0,0.0,0,0.0,0.05842,0.1531966224366706,0.296131461828141,0.0173,0.3360522022838499,0.6639477977161501,24.763999212766613,4.433291298739999,0.3132821075740944,0.24807903402854,0.2138309549945115,0.224807903402854,11.2110099398762,5.733179069266994,18.69040048488903,12224.666197352371,51.609773645327856,13.545968662130525,15.985602828681952,10.834930944106734,11.243271210408633,0.5637760702524698,0.7690265486725664,0.7119831814996496,0.580082135523614,0.115234375,0.7395498392282959,0.908466819221968,0.8926553672316384,0.7370689655172413,0.1628959276018099,0.4977348233162186,0.6810966810966811,0.65237651444548,0.5309973045822103,0.1021170610211706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194101203257,0.0049072787922416,0.0073060843446848,0.0093964912993569,0.0114923824827614,0.0134809037500127,0.0158213976247515,0.0180275824052429,0.0204655346902057,0.0226007206026858,0.0246327637284348,0.0268677556132767,0.0288652372872641,0.0311470006591957,0.0334265286962622,0.035527118241113,0.0376108027503935,0.0396003651906876,0.0415791771480842,0.0434587813620071,0.0586626012864422,0.0728722903168406,0.0864500692607983,0.0987268518518518,0.1109669251463839,0.1269920213328818,0.1390734803931975,0.1500670940808111,0.1606753346734528,0.1711997939162355,0.1837066902395377,0.1954752798153706,0.206825953433668,0.2167475276259733,0.2265579370764229,0.2369890229419403,0.2463325730131043,0.2547488677076996,0.2629922869832903,0.2710547130231438,0.2785390241644292,0.2859600664778446,0.2925324713766443,0.2978725955773013,0.302894023555723,0.3076221016280217,0.311824049125885,0.3171564319105303,0.3212493028443948,0.3255490870600688,0.3243623000432339,0.3232958077215277,0.3227434679334917,0.3214099443671766,0.3210689388071263,0.3186285047446488,0.3159650516282764,0.3160807827891806,0.3163866986630099,0.3164942178940961,0.3177968488854669,0.31849987115701,0.3189256267878176,0.3195319330180008,0.320033791938209,0.3205205257519141,0.3218749106300226,0.327098078867543,0.3312289413016492,0.3326636396512235,0.3360715924736117,0.3404198350647959,0.3426007835207886,0.3446724124780718,0.349421394298617,0.3514535570787048,0.3505484460694698,0.3553452788403463,0.3569281224378245,0.3544546850998464,0.0,2.112041643075049,54.51755195885941,164.7277834806744,252.36439656158345,fqhc8_100Compliance_implementation,66 -100000,95691,44936,426.12157883186507,5975,61.18652746862296,4649,47.87284070602251,1875,19.050903428744604,77.288290147924,79.6594512578918,63.294707477804174,65.04444998483886,77.04903535003021,79.4238663947878,63.20469094367176,64.95928408378849,0.2392547978937926,235.58486310400892,0.0900165341324168,85.1659010503738,157.58578,110.82570329122352,164681.9241098954,115816.22440064742,396.62942,262.0767586445276,413767.397142887,273156.85755981173,380.34906,185.20076874373044,393822.8778046002,190640.77696035092,3354.08899,1547.8214085905436,3454883.311910211,1567369.300282748,1125.78789,501.042922014742,1155911.841238988,503106.53943704587,1835.42002,783.0008920732216,1867281.102716034,775750.0484315333,0.37839,100000,0,716299,7485.5420049952445,0,0.0,0,0.0,34327,357.9646988745023,0,0.0,34800,359.91890564420896,1571227,0,56446,0,0,0,0,0,56,0.585217000553866,0,0.0,0,0.0,0,0.0,0.05975,0.1579058643198816,0.3138075313807531,0.01875,0.3345081704581865,0.6654918295418135,24.19426544749461,4.391474440515039,0.3293181329318133,0.2258550225855022,0.2178963217896321,0.2269305226930522,11.310328129387804,5.956905349922512,20.02091457123451,12087.30774566416,53.18052330296548,12.81432465783765,17.48786718108986,11.34546282298682,11.532868641051149,0.5685093568509357,0.7961904761904762,0.7008491182233834,0.6031589338598223,0.1165876777251184,0.7309803921568627,0.9221105527638191,0.8709677419354839,0.736,0.1339285714285714,0.507113218731476,0.7193251533742331,0.6400709219858156,0.5596330275229358,0.111913357400722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205227924123,0.0046228241806145,0.0067073913219953,0.0090412239175928,0.0110446668293873,0.0132879878626195,0.0154768459044473,0.017598121778186,0.0199636096005233,0.0220950938453036,0.0241357752656985,0.0261858569683531,0.0283572728487852,0.0305255460921327,0.0324397363562285,0.0345804051260851,0.0367260302340029,0.0386371655700616,0.0405134125919222,0.0426068558683439,0.0574460529339265,0.0708848566073691,0.0847729801213291,0.0977794148600294,0.1105269825183683,0.1262441235017576,0.1382877046917146,0.1494752543817591,0.1602737528738705,0.1695393966730027,0.1820074205099443,0.1935700586214743,0.2043201673166162,0.2137749011619629,0.223704650368526,0.2334890741007912,0.2436561280293456,0.2522584501562024,0.2596549919209849,0.267307626038113,0.2747743567136128,0.2813610612618318,0.2876622914243668,0.2936433549627493,0.2986503605534983,0.3041114173082389,0.3096299458794279,0.3133117297338674,0.3179497837297206,0.3224466029695895,0.3218269866321341,0.3211433143424701,0.3204499526588754,0.3198701505731635,0.3186215325910357,0.3168508287292818,0.3148479994925387,0.3141058307168806,0.3144172829361819,0.3152895297042987,0.3153843265367429,0.3164143662807955,0.3171546183895493,0.3172094686724635,0.3180268843014882,0.3185314140206828,0.3192753952906381,0.3218697934676684,0.3239520747689821,0.328831333915945,0.3304109589041096,0.3342548779839439,0.3367885412740294,0.3349024371725761,0.3375790256600967,0.3432521087160262,0.347366832654293,0.3509827517047734,0.3505545036516094,0.3550697323784395,0.0,2.7218925362014343,55.38215128685655,177.77421766777215,249.6561690444541,fqhc8_100Compliance_implementation,67 -100000,95825,45086,427.5710931385338,5919,60.47482389773023,4647,47.85807461518393,1832,18.72162796764936,77.36488025655099,79.67906815901377,63.35773544642036,65.07083685102518,77.1292629458035,79.44683561567824,63.26923829339065,64.98637070041634,0.2356173107474859,232.23254333552745,0.0884971530297065,84.46615060883289,159.04086,111.93396556528796,165969.88259848685,116810.60764646796,402.15051,265.0341863836431,418997.1614923037,275908.09999590204,384.11349,187.19894570212975,396865.8283328985,192305.34447186813,3339.3924,1529.327750740776,3441635.168275502,1552811.5904907985,1094.70148,491.7674247525148,1122038.1111400991,492874.0466974531,1805.35646,768.1280719748004,1845912.0897469344,768171.9654821155,0.37891,100000,0,722913,7544.085572658491,0,0.0,0,0.0,34710,361.5236107487608,0,0.0,35051,361.8053743803809,1570942,0,56368,0,0,0,0,0,68,0.7096269240803548,0,0.0,1,0.0104356900600052,0,0.0,0.05919,0.1562112374970309,0.3095117418482851,0.01832,0.3331721470019342,0.6668278529980658,24.27143131417402,4.378760033835457,0.3184850441144825,0.2360662793199913,0.2143318269851517,0.2311168495803744,10.997101179356626,5.609094942342758,19.753575382863843,12068.563179268973,53.0422418192762,13.241796409911304,17.000015560583638,10.865749092491846,11.934680756289426,0.5644501829137077,0.7876025524156791,0.7094594594594594,0.5873493975903614,0.1154562383612663,0.725,0.9219512195121952,0.8498727735368957,0.7524271844660194,0.1385281385281385,0.5060170237745818,0.7074235807860262,0.6586936522539099,0.5443037974683544,0.1091340450771055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044405693661543,0.0064534458965825,0.0088469507983585,0.0109008450188629,0.0132264896346678,0.0153010255051071,0.0173652939134695,0.019903091265947,0.0219253800092123,0.0238695527405403,0.0258718006609059,0.0278731320273798,0.0302185078067909,0.032047251399297,0.0339843911301977,0.0360057509903908,0.0380148163497901,0.0401212775678032,0.0420017687145606,0.0566374265956004,0.0711388912116397,0.0844044962653341,0.0974923341874238,0.1094108726330644,0.1247307286166842,0.1367021558345251,0.1483576060380567,0.1589733195361589,0.1689176886413538,0.1820128018933892,0.1939720873917602,0.2050460161029196,0.2147226530924344,0.224360594836398,0.2342173951513006,0.2434239112269795,0.2525326265190143,0.2612935007870627,0.2692628714512754,0.2760703602323782,0.2823898930456307,0.2883176741712462,0.2932830910939649,0.2998737373737373,0.305221031892624,0.3098390787351363,0.3139305822096259,0.3183405322918552,0.322350400337126,0.3206948478003657,0.3194270711624902,0.3183661971830986,0.3170100858307083,0.3159616871913855,0.3134177370405567,0.311242941437726,0.3121236054891894,0.3128448541759485,0.313907687900598,0.3146928173467851,0.3160161988327312,0.3171229132500736,0.3174265019173413,0.3184298454364078,0.3190790331412479,0.31927899240895,0.3214319389005877,0.3255127844900253,0.3277551996174994,0.331088818652375,0.3330839123463388,0.3361734596553697,0.3401412776412776,0.3434381830276537,0.3432889100428367,0.347792647285033,0.3439477444376403,0.3471074380165289,0.3484790142472083,0.0,2.314478690912081,53.99695043197746,183.603013588413,247.59488831038183,fqhc8_100Compliance_implementation,68 -100000,95648,44949,425.2467380394781,6038,62.0608899297424,4741,49.09668785547006,1817,18.69354299096688,77.2563444549925,79.6667515038222,63.27473565930678,65.05592697918799,77.02738459492029,79.43874918565402,63.18968238572957,64.9736104100926,0.2289598600722087,228.00231816817984,0.0850532735772091,82.31656909538287,157.19418,110.60867368154912,164346.54148544662,115641.3868366815,397.7256,261.0259778041267,415338.5224991637,272419.04462626163,378.40767,184.15262633205285,393279.0544496487,190658.55078117872,3409.37022,1551.3889299653292,3532652.925309468,1590133.1757750595,1117.76123,498.6029309363845,1156359.4220475077,509038.5513283092,1790.81486,754.2663287683846,1843906.2395449984,762725.5800189335,0.37957,100000,0,714519,7470.2973402475745,0,0.0,0,0.0,34334,358.46018735363,0,0.0,34650,359.92388758782204,1575471,0,56690,0,0,0,0,0,65,0.6691201070592172,0,0.0,0,0.0,0,0.0,0.06038,0.1590747424717443,0.3009274594236502,0.01817,0.3416060701865318,0.6583939298134682,24.44304370551269,4.336438836256677,0.3332630246783379,0.2233705969204809,0.214722632356043,0.2286437460451381,11.068390944008804,5.632797400851456,19.51388187755803,12122.95821922549,53.79742892315974,12.75914539958137,17.828818145293543,11.27571798281275,11.933747395472066,0.5593756591436406,0.7705382436260623,0.7088607594936709,0.5795677799607073,0.1162361623616236,0.7456692913385827,0.9115479115479116,0.8663366336633663,0.756198347107438,0.1981566820276497,0.491212906943244,0.6825153374233128,0.6547619047619048,0.5244845360824743,0.0957324106113033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0045407092831152,0.0069211175270705,0.0091127975374112,0.0114965917183843,0.0137120270573134,0.0162295600371311,0.0184521072796934,0.0209175062650232,0.0228862958827205,0.0249756297778461,0.0270692454730438,0.0290420548720852,0.0310647379653782,0.0332730747378751,0.0352645357560455,0.0373499471316318,0.0395047108562643,0.0413098446458487,0.0436415220293725,0.0577944065883533,0.0716470760785299,0.0848897147596401,0.0980200208418858,0.1105799670761048,0.126,0.1387255630319882,0.1498141699413224,0.1615185652294735,0.1711146165319941,0.1832726018241014,0.1956557066247765,0.2061408763655771,0.2168829176346819,0.2255737777238587,0.2357146028504195,0.2447263047222781,0.2526850818766835,0.2611966589010739,0.2693000263794745,0.2756993635299164,0.2821757224078307,0.2890180265654649,0.2943548871097454,0.2996469012541093,0.3045250713412148,0.3093013631632409,0.3133057060886197,0.3169683991953799,0.3212760612911329,0.3204065655202203,0.3191791786266283,0.3177538383238612,0.3166920565832427,0.3152616734565966,0.3135794107687097,0.3121453435696915,0.3128625098866333,0.3142508507201045,0.314677152912447,0.3151170240832171,0.316617658745927,0.3173724532749621,0.3182723954951525,0.3197717807361756,0.3209728347381331,0.3211918637869957,0.3244077620967742,0.3262202599950944,0.3290973871733966,0.3327883742052679,0.3347107438016529,0.3349059570988237,0.3400060432089439,0.3420228445099484,0.3465091802128406,0.3454572668762161,0.3390404140951623,0.3380016159439806,0.3346183500385505,0.0,1.734214902565939,56.20369954067691,176.8165893218003,260.88928534604,fqhc8_100Compliance_implementation,69 -100000,95696,45415,430.1433706738004,5977,61.26692860725631,4688,48.44507607423508,1855,18.9976592543053,77.32722884548278,79.7048241359134,63.32110870231941,65.07633608517482,77.08901880197719,79.46857989171916,63.23245643346539,64.99127108191153,0.2382100435055889,236.2442441942392,0.0886522688540267,85.06500326328137,158.00774,111.16428696894464,165114.25764922253,116163.984878098,400.1093,263.6822378022595,417578.6448754389,275015.67233976297,385.34767,187.50395568388697,399932.4841163685,193742.0482096163,3366.69765,1551.9990465507287,3476663.476007357,1580347.4299351373,1107.74329,492.9217943783673,1138457.626233071,495995.31830502953,1813.9686,770.2651060716298,1857846.158669119,771668.738064438,0.38107,100000,0,718217,7505.193529510116,0,0.0,0,0.0,34533,360.307640862732,0,0.0,35244,365.49072061528176,1571556,0,56494,0,0,0,0,0,71,0.741932787159338,0,0.0,0,0.0,0,0.0,0.05977,0.1568478232345763,0.3103563660699348,0.01855,0.3364187679540377,0.6635812320459623,24.27063632296116,4.324955870359224,0.314419795221843,0.2401877133105802,0.2265358361774744,0.2188566552901024,11.279195134628225,5.97125726700312,20.03908529469087,12173.681084970096,53.52996487564536,13.422968374706942,16.805749358513612,11.955052346642566,11.346194795782246,0.5661262798634812,0.7841918294849023,0.7021709633649932,0.5753295668549906,0.1218323586744639,0.7297709923664122,0.9285714285714286,0.8446601941747572,0.7192307692307692,0.1422018348623853,0.5026642984014209,0.6983002832861189,0.6468926553672316,0.5286783042394015,0.1163366336633663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021058173203474,0.0041653576025377,0.0061479151871766,0.0084402327919802,0.0105957840575141,0.0129310783704804,0.0151326657557155,0.0173317128471193,0.0196449389483157,0.0217816509815567,0.024089836939801,0.026426333898218,0.0286872177821664,0.0308088614116434,0.0330354194187582,0.0353571391637969,0.0372438513975509,0.0393264259463051,0.0414404293827622,0.0435602901934623,0.0581292108424296,0.0719548699055952,0.0852931920696527,0.0977695949500263,0.1103270786528705,0.1254958795713484,0.1371706302463043,0.1487483629161919,0.1594034124296199,0.1693413430594293,0.1823028866867729,0.1951161431385707,0.2068001609762995,0.2169191228741729,0.2269570672330871,0.2369182020629521,0.2454938113148584,0.2545192751161456,0.2632200081703055,0.271164309031556,0.2786061588330632,0.2852277515097607,0.2909325565975182,0.2961195890624438,0.3011766994067879,0.305963613937712,0.3107097679195421,0.3150063694267516,0.3196021990560656,0.3239047719706178,0.3228095739226638,0.321675528251467,0.3210432035206003,0.3197363476048683,0.3189428099468726,0.3170319627689802,0.3144320903452979,0.3143682120943662,0.3155747499231845,0.3165353488537916,0.3171867983834755,0.3174468421156541,0.3189534275248561,0.3205219878441186,0.3223492598387291,0.3240264319481808,0.3237469655861773,0.3282327382639086,0.3306211201907901,0.333439427093694,0.3399323335771763,0.3446381912227377,0.3505076622311913,0.3552973551444733,0.3571428571428571,0.3605563480741797,0.3602760736196319,0.3628640776699029,0.359802847754655,0.3605805958747135,0.0,2.1443189061792807,57.63108686409668,177.56630691547943,247.6735287812656,fqhc8_100Compliance_implementation,70 -100000,95767,45034,426.49346852256,5989,61.2319483747011,4647,47.824407154865455,1809,18.4301481721261,77.38146625236273,79.70445959983711,63.35451413110488,65.06776396269532,77.14535069830747,79.47291654851988,63.26489680822227,64.98328790084284,0.2361155540552602,231.54305131723163,0.08961732288261,84.47606185248446,158.98146,111.819961437375,166008.60421648374,116762.51886075056,397.85257,261.98990029216264,414765.39935468376,272897.4597639716,377.72875,184.39905403915932,390064.6778117723,189272.99276820957,3301.74474,1524.0837283071155,3404690.185554523,1548454.7268966497,1121.12625,502.1541819365874,1156490.6596217903,510159.3888673408,1772.85926,757.8556087756464,1810020.884020592,755631.9012095567,0.38057,100000,0,722643,7545.845646203807,0,0.0,0,0.0,34411,358.5995175791243,0,0.0,34582,356.7199557258764,1570836,0,56381,0,0,0,0,0,72,0.751824741299195,0,0.0,0,0.0,0,0.0,0.05989,0.1573692093438789,0.3020537652362665,0.01809,0.3401815575728619,0.659818442427138,24.34142667164083,4.336986901353788,0.3135356143748655,0.235635894125242,0.2345599311383688,0.2162685603615235,11.058878393888207,5.729428202348901,19.403397542071986,12088.6551460011,52.72407818194564,13.121683622321331,16.345656043377357,12.254961598221657,11.001776918025287,0.5687540348612008,0.8018264840182648,0.7035003431708992,0.5678899082568807,0.1203980099502487,0.7440794499618029,0.9140811455847256,0.8781094527363185,0.7622641509433963,0.1614349775784753,0.5,0.7322485207100592,0.6369668246445498,0.5054545454545455,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312354453961,0.0047022578945234,0.0070703279536624,0.009159964253798,0.0114594242834046,0.0137732353360343,0.0159409654272667,0.0181328380901845,0.0202084184715978,0.0220064658700278,0.0240749088226857,0.0263984076825214,0.0283946684205658,0.0302652844833798,0.0324968554755964,0.0345974304953112,0.0366127513375348,0.0386413826709935,0.040516954787234,0.0426706095503863,0.0573593412442468,0.0712633815050072,0.0843297671491504,0.0969542773636679,0.1097967273954116,0.1252498968679592,0.1369697355440282,0.147287069268355,0.157961633769119,0.1682730966752795,0.1810117452012617,0.1931150838713864,0.2036952455522206,0.2135652554425117,0.2239781656505183,0.2335704944920983,0.2443367683015329,0.2530078445937581,0.2606162477711274,0.2684308284987044,0.2745956717178738,0.2810153568625613,0.2881412154957943,0.2942375482602336,0.2993231173060798,0.305024159353121,0.3108552837389726,0.3142889855736203,0.3186835967867323,0.3217494557688501,0.320460358056266,0.3191919469732391,0.3187091687316963,0.3168901036921341,0.3163837605438938,0.3140689655172414,0.3127708708993704,0.3129917387883556,0.3137639395696211,0.3148500756295044,0.3166003697686145,0.3177417450509662,0.3182178796609461,0.3200919458144569,0.3210817809105948,0.3227315247895229,0.3255470723469474,0.3293506818466158,0.3326460721274811,0.3349058473736372,0.3372721901558878,0.3409342834520982,0.3423136888057374,0.3402442702050663,0.3439173320807891,0.3476516403115411,0.3519332827899924,0.3549357945425361,0.3542345276872964,0.3615326251896813,0.0,2.7679311754632825,56.66887814029212,167.94537032375794,251.0212070738131,fqhc8_100Compliance_implementation,71 -100000,95755,45345,428.66691034410735,5978,61.10385880632865,4768,49.19847527544254,1907,19.591666231528382,77.31912755708531,79.67003650213533,63.32066847763053,65.05885008166793,77.08351897993825,79.4339628229083,63.2335067487079,64.97395927455305,0.2356085771470617,236.07367922703304,0.0871617289226307,84.89080711487418,158.07242,111.24176178513872,165079.83917288913,116173.11578582897,399.07113,262.75609360302184,416158.0700746697,273801.7742641908,384.03037,187.3088117619965,396887.7343219675,192447.42699804704,3421.27976,1568.3101199242867,3536144.7235131324,1601165.869976404,1141.81242,507.7242576471624,1176795.279619863,514841.13764695294,1864.58906,777.9273917916122,1917361.182183698,786863.0221694967,0.38289,100000,0,718511,7503.629053313143,0,0.0,0,0.0,34373,358.34160096078534,0,0.0,35106,362.4980418777088,1573838,0,56498,0,0,0,0,0,75,0.7832489165056655,0,0.0,0,0.0,0,0.0,0.05978,0.1561283919663611,0.3190030110404818,0.01907,0.3368370759675107,0.6631629240324892,24.371156449971203,4.372965120584925,0.3110318791946309,0.2367869127516778,0.2325922818791946,0.2195889261744966,11.127686604319583,5.780195155151753,20.34565266789965,12225.7031148666,54.371689139165575,13.53768891092174,16.87243161667174,12.393029550886192,11.568539060685904,0.5654362416107382,0.7989371124889283,0.6925151719487526,0.5761947700631199,0.1222540592168099,0.7345864661654136,0.9339407744874716,0.8398058252427184,0.7213740458015268,0.1474654377880184,0.5,0.7130434782608696,0.6358543417366946,0.5312868949232585,0.1156626506024096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392641950804,0.0047730520171465,0.0068889249624609,0.0091307968880131,0.0111155179953422,0.0135753057753607,0.0159265867958195,0.0181760627380502,0.0205110377194507,0.0225632415720559,0.025007177131608,0.0270769799464005,0.0291153300285908,0.0311009467297133,0.0334712491874658,0.0354906054279749,0.0379936849733423,0.0401012385121258,0.0421359990024523,0.0442440086238321,0.0593417605244204,0.0727107261658193,0.0862132256542031,0.0985709628913027,0.1107140221596719,0.1259278841070106,0.1373828008994103,0.1493232890704801,0.1596762482381583,0.1693556167790487,0.1827882886278226,0.1946975435558922,0.2061881457313757,0.2160678751831361,0.2261570788914925,0.2365069873541071,0.2459234126142616,0.254860048600486,0.2631214607519377,0.2704797893049353,0.2776131496701007,0.284776349975423,0.2909674439536233,0.2970242380609551,0.3025718976105064,0.3086293288574038,0.3137928010323615,0.3180799021606196,0.3214748910562357,0.3254732559214784,0.3238375149987192,0.3230209782503891,0.3217032928257893,0.3205822711471611,0.3194339032992544,0.3174824745747112,0.3160491085591015,0.3169845445577113,0.3177605253257635,0.3185601517890705,0.3203230653643877,0.3213204298521641,0.3233885200437011,0.3234904750151457,0.3237698001301926,0.3248151341747015,0.3263867081560992,0.3298106560986349,0.3328526711919248,0.3367164889188439,0.3399144754799381,0.3440540109510392,0.3474886420999495,0.3501376988984088,0.354058395540017,0.3585572842998585,0.3598173515981735,0.3629032258064516,0.3686231486560614,0.3628787878787878,0.0,2.274209557370798,58.40220206397592,175.69787628535775,258.28056704169614,fqhc8_100Compliance_implementation,72 -100000,95665,45079,426.53007892123554,6118,62.64569069147546,4749,48.88935347305702,1870,19.06653426017875,77.34181859432726,79.72576834077883,63.3271521787835,65.08627404207898,77.10962888130732,79.49789751784193,63.24034280721408,65.00397227984097,0.2321897130199488,227.8708229368931,0.0868093715694158,82.30176223801777,157.03776,110.5171827525358,164153.82846391053,115525.20018035416,397.98685,261.9783053365797,415249.4120106622,273078.24575510866,381.60768,186.3686436517652,394338.5877802749,191170.65012830135,3381.82006,1548.0919161468476,3488075.868917577,1571297.2603920533,1099.54023,491.5484453205007,1129295.0922489937,493788.14189259545,1824.02808,765.6072085194542,1863050.7918256412,764631.4829188318,0.38052,100000,0,713808,7461.537657450478,0,0.0,0,0.0,34375,358.5323786128678,0,0.0,34987,361.093398839701,1579886,0,56660,0,0,0,0,0,65,0.6794543458945277,0,0.0,0,0.0,0,0.0,0.06118,0.1607799852832965,0.3056554429552141,0.0187,0.3345267745952677,0.6654732254047323,24.584035274880573,4.2893173339077615,0.3257527900610655,0.2387871130764371,0.2200463255422194,0.2154137713202779,11.357712691527512,6.069825218182536,19.91925329470741,12190.47323203904,53.75970213078897,13.503119718190982,17.45148699246393,11.674963436358931,11.130131983775131,0.5676984628342809,0.7733686067019401,0.709114414996768,0.5789473684210527,0.1143695014662756,0.7450381679389313,0.9152941176470588,0.9106280193236715,0.7142857142857143,0.1548672566371681,0.5001453911020646,0.688293370944993,0.6354810238305384,0.5375,0.1028858218318695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290903383256,0.00469302735741,0.0069904528068342,0.0094046434157339,0.0119372025867328,0.0141626618880834,0.0162676207075803,0.0183640762328634,0.0206257218491603,0.0230118027618257,0.025110737429251,0.0272060635937885,0.0293409600625501,0.0313462826523777,0.0334004231821231,0.0357364501448076,0.0375536258315889,0.0396087918020702,0.0416640659134885,0.0437325382594554,0.0585414773261462,0.0726446505978681,0.0859170007766745,0.0992360789595521,0.1111872989081702,0.1267902096422754,0.1389525507172566,0.1504774273214038,0.1606919616621611,0.1701415701415701,0.1822470167578512,0.1944122959774155,0.2058314935453349,0.2164197868270019,0.225530744692553,0.2356413493698363,0.2461102305957988,0.2554804458591562,0.2633298914091843,0.2710375629867155,0.2768024425785858,0.2835524161481966,0.2889740586961922,0.2950473930809696,0.2998943264220384,0.3051338295460147,0.3096647436458972,0.3145890079678232,0.3191897461152654,0.323509605862547,0.3225376210812777,0.3218789580924059,0.3206570783981951,0.3204492562986947,0.3202853321444494,0.3180619441888991,0.3157436433298502,0.3161548687816967,0.3158308415207176,0.3169130892293424,0.3192296905674488,0.320655711833981,0.3215069724655558,0.3219022103148024,0.3217251476023616,0.3235332447155107,0.3257470020223887,0.3291958646262137,0.3310349679870541,0.334167063681118,0.3387236368605658,0.3408331122313611,0.3417808647769226,0.3428658120306455,0.3453849028400598,0.3448807687744691,0.3440366972477064,0.3447304907481898,0.3430939226519337,0.3430544896392939,0.0,2.868613268853581,56.76642677852266,166.81476756547008,266.50707213010605,fqhc8_100Compliance_implementation,73 -100000,95676,45764,434.5917471466198,5948,60.882561980015886,4714,48.65378987415862,1861,19.09569798068481,77.38307130315455,79.75991241386846,63.34642469116329,65.09755474685151,77.15120024546864,79.52853763142981,63.2604206696579,65.01396848077381,0.2318710576859075,231.3747824386496,0.0860040215053956,83.58626607770248,157.85286,111.12546185587745,164986.2034365985,116147.10690649445,401.45072,264.0021544181567,418949.8411304821,275296.13815386064,389.28174,189.2527727163285,402527.7290020486,194468.8926976493,3399.16515,1549.1777300778624,3513274.436640328,1580137.8868829636,1132.54265,497.2370108503373,1169472.438229023,505872.4757738008,1822.00488,764.8453721626834,1871696.12023914,772185.3346453935,0.3841,100000,0,717513,7499.372883481751,0,0.0,0,0.0,34577,360.7383251808186,0,0.0,35511,366.82135540783474,1573672,0,56578,0,0,0,0,0,66,0.6898281700739998,0,0.0,0,0.0,0,0.0,0.05948,0.1548555063785472,0.3128782784129119,0.01861,0.3325835475578406,0.6674164524421594,24.35537393986334,4.409724014737157,0.333050487908358,0.2187102248621128,0.2282562579550275,0.2199830292745014,11.276736111911132,5.839099989026527,19.82256909883441,12208.439220787082,53.37461842593377,12.327649887550258,17.609906455395777,12.01140859024991,11.42565349273784,0.5683071701315231,0.7817652764306499,0.7101910828025477,0.5929368029739777,0.1157184185149469,0.7154150197628458,0.9112271540469974,0.8914141414141414,0.6742424242424242,0.1126126126126126,0.5143519860829225,0.7052469135802469,0.6490630323679727,0.5665024630541872,0.1165644171779141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024599374386281,0.0046704354345227,0.0066125090009229,0.0089666517730208,0.0111331401555589,0.0135794049085375,0.0158922709943118,0.0181179760944788,0.0204021138061799,0.0224906587500639,0.0246778145729313,0.0269243407541279,0.0290847757448602,0.0310552608538909,0.0330427606127817,0.0350458355295114,0.0370750202001367,0.0389828749351323,0.0408897578020195,0.0428217099503939,0.0575595182132522,0.0714293192072947,0.0849463380857961,0.0982598180957888,0.110588632218204,0.1262818479754731,0.1395861601085481,0.1508258090589073,0.1607819285721907,0.1708811932110406,0.1834936414692402,0.1954394576652358,0.2062781243886002,0.2160445926006885,0.2255158607945796,0.2362788327313819,0.2456587043675388,0.2541048221806797,0.2630628789427072,0.2710097272029422,0.2786321819128624,0.2853781866704122,0.2910971073890692,0.297240551889622,0.3028486668530924,0.3069711212267002,0.311638217134842,0.3159208415047245,0.3205314322747893,0.3252984995773457,0.3245404968693193,0.3239539331562943,0.3230522224100051,0.3216855978496488,0.3208110516934046,0.31877461572648,0.3171461595705939,0.3166962000393778,0.3166558408259546,0.3173257163259841,0.3183294750205361,0.3209745345770851,0.3226526482675177,0.3226244243219792,0.3232081829696723,0.3230358899994821,0.3246132526372352,0.3277261094813057,0.3315061797360519,0.3334382995473332,0.3361428312488671,0.3414852214157989,0.3431849357775283,0.3457634764303436,0.3418376779441671,0.3421389503083905,0.3435866806032552,0.3470185728250244,0.3501333333333333,0.3485798598303209,0.0,2.3576440819922784,55.37787344523052,170.61361692290768,264.2888274076882,fqhc8_100Compliance_implementation,74 -100000,95680,45260,428.29222408026754,6058,61.95652173913043,4740,48.808528428093645,1876,19.126254180602004,77.3960056150407,79.7802907206097,63.35197710932333,65.11316570550255,77.16402776874581,79.55322935143829,63.26510582576676,65.03140568921226,0.231977846294896,227.06136917140896,0.0868712835565688,81.76001629028917,157.34686,110.66884404993512,164451.14966555184,115665.59787827668,397.2517,261.0160983622694,414463.6287625418,272077.9415366642,382.95847,186.5221814595367,395958.42391304346,191593.58877808615,3399.09638,1560.0221183850997,3501727.8741638795,1579697.3108389454,1124.84913,498.8049876887503,1157434.4063545149,503248.0742481792,1827.05958,771.406694185836,1864189.2767558529,768015.1092781109,0.38157,100000,0,715213,7475.052257525083,0,0.0,0,0.0,34268,357.41011705685617,0,0.0,35070,362.15510033444815,1582883,0,56783,0,0,0,0,0,77,0.8047658862876254,0,0.0,1,0.0104515050167224,0,0.0,0.06058,0.1587651020782556,0.3096731594585671,0.01876,0.3330701200252685,0.6669298799747315,24.416816605934816,4.381236295311397,0.3234177215189873,0.2320675105485232,0.2276371308016877,0.2168776371308017,11.416622556294216,6.027964651337008,20.067933910316587,12187.68092484002,53.82852592020585,13.243646511048704,17.219067928184394,12.158630450478723,11.207181030494024,0.5624472573839663,0.7745454545454545,0.7110241356816699,0.5690454124189064,0.1070038910505836,0.720030935808198,0.9230769230769232,0.8571428571428571,0.6830188679245283,0.136986301369863,0.5033362344067305,0.6886657101865137,0.6583850931677019,0.5319410319410319,0.0988875154511742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.0047859503964632,0.007297862406366,0.0095707391414782,0.0119626472443187,0.0144279721418971,0.0166093987377264,0.018734239246955,0.0210799648326483,0.0233781653667424,0.0255587451302029,0.0277629471436198,0.0299284186276123,0.0320148331273176,0.0340597205885387,0.0358183960801339,0.0376221009125845,0.0398596607776785,0.0418629806442218,0.0437238777190623,0.0584640775482064,0.0725080587767404,0.0853831226726805,0.0982608512786002,0.1113488783943329,0.1265783963281795,0.1386012561534544,0.1500931495182839,0.1604867053381619,0.1700630657685872,0.1828002154011847,0.1951280192975434,0.2061118476819752,0.2158815171056946,0.2256844420010995,0.2362597828132437,0.2458065667380442,0.2548444714049809,0.2627972043814637,0.2704309063893016,0.276472693271151,0.2833664059764211,0.2904269769089942,0.2957517317286181,0.3011373281276523,0.3061309794568544,0.3107690004491242,0.3151734195675607,0.3195668727333737,0.3235247691457736,0.3227425197906883,0.3217262557578416,0.3201978055941895,0.3188882161289392,0.3175659650163059,0.3160917784363447,0.3140113404829971,0.3140667725508817,0.3140242343678102,0.3139845447099462,0.3161995515695067,0.3173996928771114,0.3181979277419893,0.3193394968441639,0.3212285153444726,0.322291969288234,0.3228335314428029,0.3247587416969545,0.3287168188018046,0.3326987148976678,0.3357364482569812,0.3393910409692332,0.3434247871333964,0.3496918511755307,0.3511831809182615,0.3559100107130103,0.3554262972600643,0.3615290768605124,0.3718801996672213,0.3764568764568765,0.0,2.860382084480071,55.90963909842443,179.0572793471804,254.09656308221312,fqhc8_100Compliance_implementation,75 -100000,95832,45379,430.3051172885884,5967,61.1278069955756,4705,48.62676350279656,1840,18.92895901160364,77.38566316619061,79.70506802651038,63.36611244363343,65.08345809459314,77.15159490484213,79.47136311772094,63.27850750230008,64.99849138094527,0.234068261348483,233.70490878943428,0.0876049413333461,84.9667136478729,158.81624,111.73567868221907,165723.59963269054,116595.37386490848,403.45868,265.8418806405484,420520.0141915018,276918.9502981099,387.37417,188.8491805139413,400970.09349695296,194681.0329313693,3353.11334,1544.128456458115,3466174.691126137,1579046.180981594,1114.25911,499.967911032358,1148453.178479005,507721.2212092883,1795.32128,763.3928474958876,1847363.010267969,772246.0511878285,0.38311,100000,0,721892,7532.890892395025,0,0.0,0,0.0,34820,362.8224392687203,0,0.0,35438,366.56857834543786,1571956,0,56429,0,0,0,0,0,73,0.7617497286918775,0,0.0,1,0.0104349277902996,0,0.0,0.05967,0.1557516118086189,0.3083626613038377,0.0184,0.3378269940619483,0.6621730059380517,24.446815505627367,4.335456172175724,0.3300743889479277,0.2371944739638682,0.2180658873538788,0.2146652497343252,11.1212860784595,5.721632204410385,19.729460672275824,12171.097525012476,53.679402817683474,13.36335531765278,17.618917835719998,11.437085680728073,11.260043983582635,0.5742826780021254,0.8082437275985663,0.7134578235672892,0.5662768031189084,0.1099009900990099,0.7307121661721068,0.9324618736383442,0.8837772397094431,0.7046413502109705,0.104602510460251,0.5114685731307715,0.7214611872146118,0.6517543859649123,0.5247148288973384,0.1115434500648508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674617402489,0.0045923177518931,0.0067694431194243,0.009042326214618,0.0112596118637861,0.013287852560839,0.0154114301440234,0.0174303500357179,0.0198374980837038,0.0220839558730223,0.0242265241496633,0.0261526460565751,0.0281714749683957,0.0303869393805264,0.0324310389275586,0.034540815799531,0.0364740697818798,0.0385592122311479,0.0405694467519521,0.0424041873484635,0.0572257108881146,0.0717011112156469,0.085820895522388,0.0989062943234469,0.1115687245225781,0.1268535338599974,0.1381473006186965,0.1488685522357918,0.1596608180897019,0.1701564792699776,0.1826217872889558,0.1947762967443669,0.2062268636625161,0.2154653917106024,0.2255208848177315,0.2353936311366652,0.2446048776140022,0.2536651126214683,0.2626522404123945,0.2707816483554173,0.2784470908943897,0.2852041173587283,0.2913027055101752,0.2965459543444484,0.3020844688298632,0.3072804087247003,0.3121031028158647,0.31622598440175,0.3204373531613869,0.3242286691665022,0.3227189633851282,0.320340194004012,0.3199195454033982,0.3193596350670535,0.3191792618107313,0.3178089320150601,0.3158261420315097,0.315805031859686,0.3171107346373017,0.3174909702106355,0.3195802885516207,0.3208159389035079,0.3209598721292168,0.3203007518796992,0.3209029170795369,0.3220774454028262,0.3229888348124821,0.3256562342251388,0.3290318031168465,0.3331473436690447,0.3367286347234275,0.3388894787132392,0.3426701076351734,0.3447542353566816,0.3480756563470406,0.34869906142331,0.3530674846625767,0.3580097087378641,0.3574772789865051,0.352515243902439,0.0,1.7163723251275564,59.7275481689761,171.25836237541768,251.39426793838172,fqhc8_100Compliance_implementation,76 -100000,95768,44866,426.6352017375324,5951,60.94937766268482,4668,48.16849051875366,1813,18.54481664021385,77.37657405990127,79.72200336168716,63.3458979718325,65.07913424940267,77.15074875511839,79.49845763442806,63.261652290464994,64.99831066299053,0.2258253047828873,223.5457272590935,0.0842456813675056,80.82358641213716,159.03382,111.8720187260514,166061.54456603457,116815.65734488703,399.8058,262.5995946495532,416905.36504886806,273636.0001770457,376.40758,183.4403885911377,389665.8904853396,188801.93275057076,3355.87573,1526.366297643037,3463663.582825161,1553307.897881376,1111.66331,494.3073090011723,1143778.840531284,499141.79997616366,1787.41744,747.636396673903,1830826.873277086,750043.3011655246,0.37893,100000,0,722881,7548.252025728844,0,0.0,0,0.0,34499,359.6295213432461,0,0.0,34397,355.73469217275084,1573052,0,56440,0,0,0,0,0,74,0.7727006933422438,0,0.0,0,0.0,0,0.0,0.05951,0.1570474757870847,0.3046546798857334,0.01813,0.3390372621141851,0.6609627378858148,24.39994463067102,4.421647093754335,0.3299057412167952,0.2277206512425021,0.2152956298200514,0.2270779777206512,11.225020224852342,5.660125307612339,19.128102198001876,11992.17208279719,52.61174968318299,12.733031169556387,17.337412357237902,11.059628088429452,11.481678067959258,0.5456298200514139,0.7808090310442145,0.674025974025974,0.5482587064676617,0.120754716981132,0.7297077922077922,0.9321608040201004,0.844059405940594,0.7035398230088495,0.1372549019607843,0.479627473806752,0.6902255639097744,0.613556338028169,0.503209242618742,0.116822429906542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498430061784,0.0044399841863576,0.0063718825463179,0.0087163232963549,0.0108310959238467,0.0132890703760654,0.0153970082899124,0.0175909666353575,0.0195360819472699,0.0214556249360221,0.023409554460012,0.0255286388831862,0.027705814622913,0.0297937199410922,0.0318567272577217,0.0337057747366897,0.0355157024964536,0.0376967043910332,0.0397430166436227,0.0410943211522239,0.0559423042802125,0.0696993464052287,0.0826790225697902,0.0953591996300811,0.1076238855047109,0.1225833729718302,0.1347738043489784,0.1466617013353194,0.1567105206953996,0.167206364864575,0.1800068926894412,0.1916256424127671,0.2028849919498716,0.2130283038478791,0.2222344536057507,0.2329587018687238,0.2426918868219477,0.2517471499791805,0.2594135136975419,0.2668124720889489,0.2736915158174773,0.280353071841936,0.2866703716403968,0.2925337036948349,0.2983934621316074,0.3036048689138577,0.3077336533293334,0.3121721347914999,0.3162181028465058,0.3210911247282071,0.3199618469309617,0.3188009776728092,0.3172472912772804,0.317078447492536,0.3162341223376662,0.3140643623361144,0.3121464909786077,0.3127497870667627,0.3130148551157198,0.3121962508678547,0.3132122073985368,0.3142130378199314,0.3147439516550613,0.3135242251514072,0.3153328060209487,0.3170490609229489,0.3182386363636363,0.3205172359810889,0.3246516838199257,0.3277493960635222,0.3316804658356837,0.3340409722959346,0.3368018554503855,0.3396741189844638,0.3442745244311824,0.3447545037089368,0.3479381443298969,0.3489344752041426,0.3447339847991313,0.3497926875235582,0.0,2.247173064111733,53.714061683709,173.067462257013,257.8755926568672,fqhc8_100Compliance_implementation,77 -100000,95744,45117,427.535929144385,5910,60.4528743315508,4664,48.05523061497326,1806,18.455464572192515,77.3313489084019,79.70088862476074,63.31030609897547,65.0644121082617,77.11070938847506,79.48240400154383,63.228537978788594,64.98645649715006,0.2206395199268485,218.4846232169093,0.0817681201868723,77.95561111164773,158.42508,111.4526225448484,165467.37132352943,116406.90021813213,399.01805,262.1629941940193,416115.234375,273177.361847073,382.87093,185.4615491507972,395942.7431483957,190691.52680396373,3327.62889,1506.304177424645,3431380.995153744,1529327.4247514952,1110.24663,486.4757503460607,1141792.195855615,490422.48178257735,1771.79242,737.2629764985003,1812780.330882353,736529.4429856322,0.37927,100000,0,720114,7521.244151069519,0,0.0,0,0.0,34438,359.00944184491976,0,0.0,35036,361.9861296791444,1572854,0,56415,0,0,0,0,0,57,0.5953375668449198,0,0.0,0,0.0,0,0.0,0.0591,0.155825665093469,0.3055837563451776,0.01806,0.3318313485677502,0.6681686514322498,24.598248856442066,4.354581524952152,0.3286878216123499,0.2367066895368782,0.213336192109777,0.2212692967409948,11.209540699656474,5.787836791960888,19.03065407717596,12085.200282134145,52.55954499015347,13.17273128542693,17.173407632103807,11.046572615519375,11.16683345710336,0.5602487135506004,0.7762681159420289,0.695368558382257,0.5758793969849246,0.1133720930232558,0.7218106995884773,0.9037037037037036,0.8505434782608695,0.7106382978723405,0.1497584541062802,0.5033342997970426,0.7024320457796852,0.6463519313304721,0.5342105263157895,0.1042424242424242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0046543699362178,0.0066176097437198,0.0089412720991668,0.0110582107469124,0.0134431872574879,0.0157538925880229,0.0179401043527982,0.0199552005236833,0.0222565909416801,0.0241733672464719,0.0262598243180767,0.0284961562606127,0.0305585043338452,0.0327112450711203,0.0347034796546197,0.0367708732435203,0.0388510708949028,0.0407705021986132,0.042694358803433,0.0573331523838356,0.071294029007346,0.0850039339103068,0.0979462210677967,0.1108580586659918,0.1256438732878523,0.137466307277628,0.1484736158155983,0.1589449271644917,0.1689289968130653,0.1813586540637832,0.1936734494969731,0.2050447429728494,0.2156165163324284,0.2253699462697084,0.235327376333119,0.2444975488827595,0.2532952127958938,0.2608828869723105,0.2685838680109991,0.2746570982117021,0.2819777312055824,0.2879725085910652,0.2936381208504916,0.2987216755658805,0.3025205938933556,0.3080176696574939,0.3134527778484717,0.3177941938828408,0.3221631462986661,0.3212092647454888,0.320012647091169,0.3189786156443444,0.317456423871638,0.316212211025489,0.3135146692731799,0.312432961070099,0.311954831846821,0.3135366414946389,0.3136710617626648,0.3139986554119668,0.3145498265531378,0.3162610966057441,0.3170856849666496,0.3188012860501943,0.318856042469033,0.3194330028690736,0.3242445184394044,0.32844327176781,0.3307177567115431,0.3339410236543457,0.3366357615894039,0.3395527076265862,0.3430325073880427,0.3459177980286405,0.3456660849331006,0.3416455129162311,0.3468230694037145,0.3533814488104785,0.3564504101416853,0.0,2.555263512185908,52.8162975288032,170.88721670988764,262.73466060672416,fqhc8_100Compliance_implementation,78 -100000,95488,45193,428.50410522788206,5976,61.36896782841823,4643,48.02697721179625,1911,19.62550268096515,77.22623088476638,79.71337682276422,63.24095407219974,65.0761852170968,76.98726440610966,79.47621217224105,63.15157919680519,64.98985648110119,0.2389664786567209,237.16465052316948,0.0893748753945544,86.32873599562174,156.3045,110.01833457130424,163690.2019101877,115216.9220962888,398.38165,262.77069076777934,416599.6565013405,274584.77040112915,385.81997,188.5582797398236,400140.7716152815,194376.01097602036,3378.30061,1556.5770735898657,3499545.1889242628,1592251.0255192376,1139.73382,504.60125062410856,1177061.2537701072,511938.42935957445,1877.88762,794.3547126071626,1931670.8277479887,803237.4787778864,0.37977,100000,0,710475,7440.463723190349,0,0.0,0,0.0,34340,358.99798927613944,0,0.0,35229,365.0720509383378,1573612,0,56594,0,0,0,0,0,71,0.7330764075067024,0,0.0,0,0.0,0,0.0,0.05976,0.1573584011375306,0.3197791164658634,0.01911,0.3297736691106152,0.6702263308893848,24.43433352076205,4.432680816539645,0.3159595089381865,0.2244238638811113,0.2250699978462201,0.234546629334482,11.405669931003832,5.925928315761666,20.60048660642922,12147.980821529864,53.285284601435485,12.513928467142756,16.924891475781788,11.741419940266905,12.105044718244022,0.5556752099935387,0.789827255278311,0.7123381049761418,0.5655502392344498,0.1111111111111111,0.7200622083981337,0.922872340425532,0.8609756097560975,0.7246376811594203,0.1160714285714285,0.4927018170985999,0.7147147147147147,0.6546830652790918,0.5084525357607282,0.1098265895953757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0045036363820787,0.0071273377058501,0.0092526690391459,0.0116163055872291,0.0136064821892676,0.0160103674527291,0.018137044530276,0.0203075286198041,0.0224892932521874,0.024747495483659,0.0268661320172732,0.028790609071719,0.0309218804794026,0.0332909705216825,0.0359372573380959,0.0378634633139347,0.0397713097713097,0.0419653275545924,0.0439608633454112,0.059140010048568,0.0730832179277351,0.0863758728022209,0.0992359171628813,0.1114856653739261,0.1272085554695863,0.1393168117883456,0.1502139054548558,0.160808379385683,0.1708748508593724,0.182908659036925,0.1948846441703817,0.2057374010510936,0.2150499912296088,0.2245845929783524,0.2348849354949829,0.2440511483772808,0.2527396951384504,0.2616845816982312,0.2699154147203635,0.2765135699373695,0.2831761891359414,0.2889914789584866,0.2945999230621273,0.3000512032770097,0.3050830683968974,0.3093445610507132,0.3133588127772168,0.3176683176683176,0.3218807947019867,0.3212870952477523,0.3206258537191109,0.3197531561555624,0.3178975710025766,0.3168663567000477,0.3151756353913765,0.3127145581691036,0.3135054061181435,0.3138641043239533,0.3138650790804432,0.3133997368915617,0.3149066106198199,0.3164846703065939,0.3173098471605934,0.3194721534504723,0.3208643970595902,0.3224759410056375,0.3274230563676947,0.3322918129476197,0.3346706919837928,0.3386257870243635,0.3407741251325556,0.3430414631091068,0.3490530445936769,0.3529085360214556,0.3553642075866884,0.356027293404094,0.3559666598902216,0.3611416026344676,0.3558678313710596,0.0,2.3350580901215103,56.34427327142179,181.27106457483987,243.78236930275432,fqhc8_100Compliance_implementation,79 -100000,95710,45159,428.0012537874831,6100,62.34458259325045,4787,49.43057151812768,1912,19.632222338313657,77.36399481233721,79.74901185542542,63.33329461681414,65.09731222689415,77.1216850701782,79.50701720515609,63.243074367428,65.00950739847197,0.2423097421590085,241.99465026933356,0.0902202493861423,87.80482842217907,158.99752,111.79371963392671,166124.25033956746,116804.63863120542,401.18799,263.2784010529131,418585.3933758228,274496.59557278745,379.20351,184.3295949733109,392689.8756660746,189845.10038799932,3457.83906,1574.991292813985,3574988.85173963,1607987.9246358073,1161.23037,513.7168281338926,1199281.6111169157,522826.6767469012,1871.90974,793.4310230733842,1923904.795737123,800923.8657563808,0.3818,100000,0,722716,7551.102288162157,0,0.0,0,0.0,34617,361.0698986521785,0,0.0,34714,359.1160798244697,1573450,0,56468,0,0,0,0,0,69,0.7209278027374361,0,0.0,1,0.0104482290251802,0,0.0,0.061,0.1597695128339444,0.3134426229508196,0.01912,0.3317683881064163,0.6682316118935837,24.508563590203355,4.410908369671415,0.3237936076874869,0.2299979110089826,0.2182995613118863,0.227908919991644,11.267821515148649,5.74261733351108,20.44517056840981,12132.690408516486,53.897883811948425,12.97287929900354,17.53520760853695,11.510542971908231,11.879253932499688,0.5494046375600585,0.7574931880108992,0.6961290322580646,0.5779904306220096,0.1035747021081576,0.7299679487179487,0.8968253968253969,0.8777506112469438,0.7551867219917012,0.1409090909090909,0.4857304323255156,0.6846473029045643,0.6310254163014899,0.5248756218905473,0.0941446613088404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021782960658959,0.0046852657519243,0.0069032729635344,0.0092282049718478,0.0115081706994444,0.0133565621370499,0.0155861112244481,0.0178111850974304,0.0198214230922647,0.0220563388934967,0.024519556166294,0.0267641651860448,0.0288623739971199,0.0308185302724312,0.0329941380449141,0.0350820960337482,0.0372818148857927,0.0393400093394904,0.0411222336566148,0.0428526776411752,0.0571458409482533,0.0716640674879373,0.0857277734067663,0.098015710274772,0.1101437666006155,0.126032118578663,0.1380644887658915,0.1494947346027018,0.1592476355174107,0.1690851802632143,0.1814581651869787,0.1930940481599273,0.2043304260826065,0.2149153506277615,0.2251108446194976,0.235167755508803,0.2442406595490701,0.2539138062890818,0.2626914784976739,0.2703603201318998,0.2772463885451244,0.2835292054025609,0.2900182304614437,0.2958865690246182,0.3008636711490106,0.3056089269878805,0.3100596749777939,0.3146441600040675,0.3191563647649097,0.3226418325276288,0.3222429755841922,0.3207938469990385,0.3195883535548088,0.3186212269867836,0.3178907107065555,0.3165061289288495,0.31465068601167,0.3147440295337972,0.3157858940352309,0.3159927386630597,0.3167913238593867,0.3179147442722504,0.3187224347317154,0.3192621576299608,0.3208557433730311,0.32213608957795,0.3224646983311938,0.3253280592704213,0.3264403328301092,0.329146027342976,0.3317285857026069,0.3337565465799079,0.3359646353015472,0.3365421346168538,0.3358561967833491,0.3361585293064343,0.3378712871287129,0.3383319638455218,0.3415522555337629,0.3414538310412573,0.0,2.1986861099836617,54.433651035623946,174.5190955610907,271.241327917316,fqhc8_100Compliance_implementation,80 -100000,95676,45153,428.6759479911368,5923,60.600359546803794,4679,48.37158744094653,1889,19.346544587984447,77.31725194233033,79.72565253382155,63.30264576078415,65.08502199839987,77.08399513294506,79.49182006562764,63.21468598904416,64.99902415669574,0.2332568093852671,233.8324681939099,0.087959771739996,85.99784170412761,158.3263,111.38533150619708,165481.50006271165,116419.0985636721,401.56428,263.674404184211,419151.3441197375,275032.18816366873,375.96912,181.90211845565003,389823.5921234165,187762.55052686547,3395.83448,1551.826716723035,3512654.040720766,1585490.7568620818,1111.5446,489.9459489572566,1150521.5623562858,500866.7290154314,1863.73546,792.2299902362388,1911528.3456666248,798591.2131757986,0.382,100000,0,719665,7521.886366486893,0,0.0,0,0.0,34744,362.5674150257118,0,0.0,34377,356.13947071365857,1573370,0,56466,0,0,0,0,0,62,0.648020402190727,0,0.0,0,0.0,0,0.0,0.05923,0.1550523560209424,0.3189262198210366,0.01889,0.3275221953188055,0.6724778046811946,24.456879232087765,4.445456249108112,0.3210087625561017,0.2182090190211583,0.2293225048087198,0.2314597136140201,10.966785385971871,5.496522672157135,20.149950358188843,12101.337235175755,52.993605985068704,12.28349528896861,16.862700069858327,11.887588306155262,11.959822320086522,0.5496901047232314,0.7747306562193927,0.7063914780292943,0.5619757688723206,0.1080332409972299,0.6919967663702506,0.9131652661064426,0.8436657681940701,0.7421875,0.1067193675889328,0.4985473561882626,0.7003012048192772,0.6613616268788682,0.5055079559363526,0.108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023909145248057,0.0045429194341631,0.0066675462009194,0.0087593614405186,0.0107137406521849,0.0129367423856575,0.0155060902209617,0.0179490846681922,0.0199811749299175,0.0220988248793631,0.0241920590951061,0.0263057841898126,0.0281637947007596,0.0301977441903622,0.0323883294603666,0.0343190001241567,0.0361156031015466,0.038319348674919,0.0402838178072785,0.0423946128507692,0.0570130073656166,0.070768103042044,0.0842772709617141,0.0968298559599339,0.1088885372158041,0.1244933165408998,0.1361609985989046,0.1482175760738744,0.1581979478409576,0.1674784885093234,0.1800211143189554,0.1924738283660456,0.2042666666666666,0.2145343872479253,0.2244756323257248,0.2346779289015995,0.2442380883288503,0.2525592278443989,0.261647891638022,0.2691246350260491,0.2765627531301349,0.2834467915877137,0.2891833013662949,0.2953559183869189,0.3001737989037299,0.3051955259036367,0.3101574822863724,0.3150284239040582,0.3199906821446597,0.3242876347628964,0.3223967297762478,0.3215380175624235,0.3197457782027306,0.318300549839089,0.3174622051106717,0.3154925258719816,0.3134576421425858,0.3149403403961988,0.3153143929698831,0.3155577735398435,0.3172864472156687,0.3185068141418131,0.3195519476433201,0.3212632238151685,0.3217229908884925,0.3224678341206253,0.3233971073909577,0.3246635082985599,0.3270821648906337,0.3312076682378104,0.3335912608101957,0.3384240110298017,0.3419513115682204,0.340877914951989,0.3392319277108434,0.3409627182633317,0.3479125248508946,0.3512913640032284,0.3538420204191295,0.3521074226035061,0.0,2.01684382378116,54.38436543038326,174.47559742579597,259.4619568971157,fqhc8_100Compliance_implementation,81 -100000,95842,45353,429.5402850524822,5905,60.24498654034765,4631,47.56787212286889,1890,19.271300682373077,77.4717338221379,79.75955160604623,63.40399372213196,65.0912418981603,77.23561699175978,79.52615746300502,63.31602085796361,65.00700571296895,0.2361168303781227,233.39414304120965,0.0879728641683499,84.236185191358,159.91272,112.44005431480171,166850.3578806786,117318.14268775872,399.10718,262.7278601608512,415691.06446025753,273395.0774825767,384.65928,187.99009268606423,396550.4371778552,192379.90829869505,3318.96888,1522.2224466482362,3415384.5913065253,1540688.285561901,1111.01382,493.4536257846557,1144349.283195259,499996.9176192648,1854.86754,781.9045823207312,1894691.2001001649,782637.7601103438,0.3818,100000,0,726876,7584.107176394483,0,0.0,0,0.0,34543,359.65443125143463,0,0.0,35102,361.43861772500577,1569539,0,56257,0,0,0,0,0,62,0.6468980196573527,0,0.0,0,0.0,0,0.0,0.05905,0.1546621267679413,0.3200677392040643,0.0189,0.3351551197556663,0.6648448802443337,24.528292790438652,4.434256282920044,0.3111638954869358,0.234506586050529,0.2282444396458648,0.2260850788166702,11.378898271890648,5.886062621145464,20.08560907353844,12142.394004675709,52.373910517456856,12.972438131583989,16.220743056101032,11.753376960245465,11.427352369526355,0.5558194774346793,0.7937384898710865,0.6821651630811936,0.5714285714285714,0.1193887297039159,0.7297734627831716,0.9238329238329238,0.871866295264624,0.7120622568093385,0.1408450704225352,0.4924889543446245,0.7157584683357879,0.6192236598890942,0.52625,0.1139088729016786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095353780747,0.0043865425332536,0.0069764140420612,0.0092874543239951,0.0115742622551012,0.0138065054381556,0.0158605655610789,0.017778639113006,0.0199334191123909,0.0221815429927186,0.0241811589749892,0.0262861010830324,0.0284868968492855,0.0303532292749179,0.0322746904990155,0.0342527287559764,0.0365351594017005,0.0386787857431571,0.0408381529899176,0.0428543182125649,0.0569638071801716,0.0713247823041783,0.0844363400090126,0.0980004833303563,0.1102667608216781,0.1260505978496442,0.1382944881555786,0.1499558515334943,0.1605440433868195,0.1701657932246621,0.1830203905955775,0.1945813340249859,0.2059657085771991,0.2162743471045506,0.2253292183329855,0.2355984479156302,0.2454354049929261,0.2537843057988591,0.2623101233561015,0.2700264160005489,0.2767217885352672,0.2827393105057458,0.288251479045381,0.2936941677329857,0.2994844422878631,0.3049299761254276,0.3102724581194018,0.3149493307596576,0.3203438025074318,0.3242065633762028,0.3235685394466318,0.3222953517071164,0.3203178748438005,0.3184540089247157,0.3175453657381368,0.3151464307504576,0.3125226574198124,0.31344893523134,0.3145106440862409,0.3160044032527254,0.3181513106379805,0.3188741917097427,0.3192083333333333,0.3200907049643182,0.3207668799541591,0.3216643794826648,0.3227556585379638,0.327610382326364,0.3306105496331164,0.3353959426646823,0.3375381576584665,0.3398513677330944,0.3413669742044812,0.3441662226957911,0.3453944260746339,0.350939804901261,0.350805226374962,0.3584566173530588,0.364399891628285,0.3692946058091286,0.0,2.976745331020999,53.03332367221103,176.60870095269007,249.0281532747641,fqhc8_100Compliance_implementation,82 -100000,95737,45297,429.1444269195818,5993,61.32425290117719,4679,48.24675935113906,1849,18.91640640504716,77.34438518034166,79.6967589053497,63.33412346583962,65.07214544155904,77.10891297044604,79.46665311135308,63.24523902002596,64.98863960665827,0.2354722098956188,230.10579399661424,0.0888844458136546,83.50583490077668,158.4693,111.5538922679585,165524.73965133645,116520.29880814992,402.20836,264.9500850978132,419494.187200351,276125.3944993192,381.11508,184.85630070860628,394486.5516989252,190291.7665695028,3332.7121,1526.621020682882,3438349.614046816,1552092.3607620806,1096.61323,488.6231631354216,1128107.356612386,493307.4378125701,1807.40274,770.7294016910797,1849964.757617222,769575.1358449479,0.38212,100000,0,720315,7523.851802333476,0,0.0,0,0.0,34766,362.4930800004178,0,0.0,34947,361.4798876087616,1569469,0,56333,0,0,0,0,0,60,0.626716943292562,0,0.0,0,0.0,0,0.0,0.05993,0.1568355490421857,0.3085266143834473,0.01849,0.336728198599618,0.6632718014003819,24.591982924232184,4.298433904637926,0.3282752724941227,0.23081855097243,0.2229108783928189,0.2179952981406283,11.062039444685304,5.751877199059231,19.751173649861265,12187.6583440147,53.26246499495493,13.040356040649062,17.297859884912352,11.648340463330715,11.275908606062798,0.5622996366745031,0.7805555555555556,0.69140625,0.5896452540747843,0.1088235294117647,0.6973148901545972,0.9090909090909092,0.8296703296703297,0.7048458149779736,0.1446280991735537,0.5142028985507247,0.706140350877193,0.6484641638225256,0.5575980392156863,0.0976863753213367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023601150682711,0.0046536149159003,0.0068791282379082,0.009201425916334,0.0115094454724769,0.0135697779768509,0.0160208719757037,0.0181437828460635,0.0201387540742405,0.0224905351478563,0.0247663742929748,0.0267163428477589,0.028841408242165,0.0311125758246737,0.0331459225254036,0.0352396502903912,0.0372436779943482,0.039335863771182,0.0413219704843067,0.0431961168284654,0.0579115509897268,0.0719697762521715,0.0854739403601883,0.0983615177519771,0.1104326826747656,0.1263469571194416,0.1383337576374745,0.1498526266506347,0.1604533413091779,0.1705052324583976,0.1833137738347742,0.1953673551081347,0.2073577867916526,0.217246807766311,0.2266913034392494,0.2369210669087768,0.2461440592843909,0.2547912542738887,0.2632695667960151,0.2706732475979982,0.2774403295037775,0.2839608733297452,0.2897922954020948,0.2952686004942537,0.3011750981273772,0.306279072636865,0.3112074800090241,0.3154051057213137,0.3200860683361849,0.3242643562787257,0.3242256935092917,0.3227279604946423,0.3215749229014406,0.3204565154579601,0.3190869642750996,0.3176697779208239,0.3154732653805304,0.3162224740134982,0.3164407677713778,0.317400232122132,0.3184423465947404,0.3194809299018349,0.3193164684201708,0.3199167710757115,0.3209537572254335,0.3225184374429937,0.3239881596174646,0.3259529500566109,0.3285959925606204,0.3323134387665898,0.3341673111040349,0.3340951368588892,0.3375660045260246,0.3407480018096818,0.3443956249415724,0.346389084921195,0.3461949062071069,0.3431976983148376,0.3446547884187082,0.3412729402577118,0.0,2.4010055157483903,53.60706182257367,183.3279100959685,252.45787022916596,fqhc8_100Compliance_implementation,83 -100000,95674,45065,426.3331730668729,6009,61.52141647678575,4672,48.27852917197985,1856,19.075192842360515,77.28108161739658,79.66837023455797,63.29287913429015,65.055849765656,77.05197713363194,79.43904842710783,63.20766251273811,64.97253111392742,0.2291044837646438,229.321807450134,0.0852166215520426,83.31865172858954,156.18834,109.98905900034772,163250.32924305456,114962.12579794876,394.32755,259.74757314704647,411582.2898593139,270918.8278647841,382.98307,186.75077525368243,396259.39126617473,192157.61954803453,3315.42141,1522.9626921728966,3429852.5200158875,1556515.536764967,1102.36246,497.1683783819232,1136469.1661266384,503929.32587457215,1818.6624,766.7128626234434,1871291.824320087,777016.0147286322,0.38004,100000,0,709947,7420.469511047933,0,0.0,0,0.0,34035,355.1435081631373,0,0.0,34980,361.63429980977065,1581534,0,56697,0,0,0,0,0,68,0.7107469113865835,0,0.0,0,0.0,0,0.0,0.06009,0.1581149352699715,0.308870028290897,0.01856,0.3287693042509154,0.6712306957490846,24.474194915854955,4.275429927617409,0.3206335616438356,0.2414383561643835,0.216181506849315,0.2217465753424657,11.191254993013857,6.022481940659079,19.932713763370444,12114.44986168261,53.43001785189487,13.622775998887622,17.032270099479152,11.27557429615676,11.499397457371336,0.5610017123287672,0.7783687943262412,0.7062750333778371,0.5673267326732673,0.1081081081081081,0.7400468384074942,0.9216152019002376,0.8810126582278481,0.7564102564102564,0.1515151515151515,0.493364789147744,0.693069306930693,0.6436990027198549,0.5103092783505154,0.0956521739130434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982474801195,0.0043998823994566,0.0067588824502471,0.0091028232975383,0.0112381262331428,0.0135636022972587,0.0155800721903868,0.0175603381386041,0.0201175568617429,0.0223031965526771,0.0244232543832666,0.0267056830432773,0.0287127592838264,0.0309721292050898,0.0331606324567559,0.0354233012117953,0.0376328492407135,0.0397513207194677,0.0418057939356113,0.0437546902359709,0.0581696615127455,0.0722669542546619,0.0855148525244043,0.0989636487979378,0.1112306799599092,0.1261967480190844,0.1372022419430172,0.1484897541856601,0.1596762639923877,0.1698413039276741,0.1819848579625116,0.193359628971436,0.2047216656503179,0.2147354129485059,0.2244392049711339,0.2344219573052398,0.2440319191738566,0.2531089483644228,0.260971341560419,0.2686996811707227,0.2754121913633888,0.2819548431696486,0.2881247406177744,0.2935369983428201,0.2985559435029623,0.3036912751677852,0.308550092717887,0.3139616389473013,0.3186764724956872,0.3226924094154985,0.3211336032388664,0.3204976139905663,0.3195577485896874,0.3181884078981704,0.3171542751483702,0.314862312051727,0.3133587180707599,0.3142273946896245,0.3146539166795195,0.3158751453358376,0.3167211636035629,0.3169782086172305,0.3181339511373209,0.3190987510108725,0.3190348525469169,0.3208429078754961,0.3212836486254786,0.3246372239747634,0.3277163419343514,0.3299504459861249,0.3344843253066787,0.3367724867724868,0.3395030744133517,0.3394377873238375,0.3452447422296668,0.3479318734793187,0.3536253776435045,0.3619558735837805,0.3647310677013647,0.3643292682926829,0.0,2.0687341254302694,56.40098425226665,181.7856328517072,246.14850332312048,fqhc8_100Compliance_implementation,84 -100000,95727,45044,427.6849791594848,6133,62.81404410458909,4846,50.04857563696763,1934,19.79587786100055,77.3612597271838,79.72483940599666,63.34108899169471,65.08819023028366,77.12589175813763,79.49322905373543,63.253046715926175,65.00446534223997,0.2353679690461803,231.6103522612281,0.0880422757685366,83.72488804369027,157.67774,110.9739249133896,164716.05712077054,115927.5073003328,397.74907,261.2685136190018,414935.3891796463,272362.70186990267,387.47899,188.48448196078925,401438.9775089577,194323.2045458841,3469.00754,1586.5303809569352,3580994.0246743346,1614488.0660178787,1164.83471,514.1099363835928,1199760.6213502982,519990.7240493399,1892.94276,788.6404722114204,1938427.6118545448,789962.3652054264,0.38024,100000,0,716717,7487.093505489569,0,0.0,0,0.0,34267,357.35999247861105,0,0.0,35511,367.56609942858336,1579007,0,56649,0,0,0,0,0,60,0.6267824124855056,0,0.0,0,0.0,0,0.0,0.06133,0.1612928676625289,0.3153432251752812,0.01934,0.3502175264139217,0.6497824735860783,24.15370318585169,4.315599365840213,0.3256293850598432,0.2292612463887742,0.2290548906314486,0.2160544779199339,11.084594389957264,5.7528931695648895,20.4454158602025,12112.747676936877,55.1431028344781,13.52603159866817,17.834080407088653,12.31563359199303,11.467357236728237,0.5751134956665291,0.8055805580558055,0.70595690747782,0.5828828828828829,0.1251193887297039,0.7603305785123967,0.9192399049881236,0.9106280193236715,0.7620817843866171,0.1894273127753304,0.5049786628733998,0.736231884057971,0.6331615120274914,0.525564803804994,0.1073170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023095390038593,0.0044001946629896,0.0066164681049704,0.0088386788714937,0.0111461405471371,0.0134213152481619,0.0155201598923174,0.0175933016796855,0.0197225147484331,0.0217035217035217,0.0237458091107625,0.0257073897190982,0.0276663581199218,0.0298441347055248,0.0318769091059192,0.0341579910469672,0.0363915038162405,0.0382208569857099,0.0401297796449778,0.0419184762222314,0.0567198153891133,0.071302217988842,0.0846769540633818,0.0975625144587688,0.1094410422354094,0.1251242150664947,0.1363197692299534,0.1472290797650464,0.1572527237769707,0.1676046524092833,0.1803695249580085,0.1922548542376548,0.2034049399895634,0.2141943664127144,0.2244368465606138,0.2353546644826403,0.2446173915952144,0.2530901654081265,0.2612259242044643,0.2693716378619663,0.2766427324337762,0.2831033152980496,0.2903416549391549,0.2959287501346708,0.3010548011639185,0.3072600280366936,0.3119661321744343,0.3162228095141289,0.3203519213352309,0.3240594163896364,0.322032074050156,0.3207803805729202,0.3198570785505289,0.3183105101981857,0.3177563150074294,0.3162763627452482,0.3140750818686621,0.3147243087217503,0.3153289900057986,0.3165584415584415,0.3174600202239616,0.3182556021854462,0.3189311632199337,0.3194338863300988,0.3201395572666025,0.3228848313872998,0.3243969360923745,0.3269388527797059,0.3303207202138135,0.3355613909445373,0.339171974522293,0.341980135249366,0.3450068913669966,0.3462645855432641,0.349038999813398,0.3492981007431874,0.3477730323367907,0.355969997972836,0.3562412342215988,0.3611892326235436,0.0,2.1929899630326823,58.438657778738936,182.1867990350254,260.3904914883574,fqhc8_100Compliance_implementation,85 -100000,95663,45267,429.3300440086554,5957,61.05808933443442,4676,48.409520922404695,1846,19.056479516636525,77.2430810454354,79.64822361705475,63.27207635196621,65.05050309251988,77.00751870266325,79.41030606241758,63.18491253433627,64.96412362764946,0.2355623427721553,237.91755463717837,0.0871638176299427,86.37946487041859,158.40682,111.4721047378041,165588.15843115936,116525.62638991658,401.20741,264.2459370007053,418880.7062291586,275712.0533645097,385.16424,187.34146420653295,399529.3582680869,193534.46929131087,3330.82397,1518.8515897713417,3450351.3479610714,1556423.4496501326,1107.29762,490.2748416852233,1144685.259713787,499968.61509948334,1812.56564,761.5104844165322,1871306.6284770493,775311.2178907724,0.38016,100000,0,720031,7526.734474143608,0,0.0,0,0.0,34613,361.31001536644266,0,0.0,35137,364.2787702664562,1567035,0,56238,0,0,0,0,0,69,0.7108286380314228,0,0.0,1,0.0104533623239915,0,0.0,0.05957,0.1566971801346801,0.3098875272788316,0.01846,0.3309825292514826,0.6690174707485174,24.744355692313405,4.342224995290618,0.3162959794696321,0.2418733960650128,0.2174935842600513,0.2243370402053036,11.09103137995156,5.683243956926122,19.7687239949475,12110.274036618965,53.19557623869289,13.594097486822111,16.74768475988641,11.282913107739162,11.570880884245208,0.5630881094952951,0.7992926613616269,0.6876267748478702,0.567354965585054,0.1286939942802669,0.7338582677165354,0.9214780600461894,0.8710526315789474,0.6896551724137931,0.1866666666666666,0.4994128009395185,0.7234957020057307,0.6242038216560509,0.5312101910828025,0.1128640776699029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027667423382519,0.0051427180329864,0.0075124615493944,0.0099371056401711,0.0121041978171757,0.0142777127144966,0.0166199337241906,0.0187469367750367,0.0209526341623036,0.0230405308538308,0.0248897548969336,0.0267725106802497,0.0290524280631029,0.0310912855803603,0.0331740346603635,0.0351876744907455,0.0370435593308126,0.0391497488271681,0.0412818272591113,0.0430331714029564,0.0580134166475099,0.0722073841319717,0.0851836687558397,0.0982032902838738,0.1100530999609403,0.1254909433522829,0.1376958623253837,0.1490613706866225,0.1593464793554668,0.1701051410651574,0.1828226154510142,0.1948075880758807,0.2050581072397155,0.2151524443665673,0.225367014945113,0.235934986409275,0.2445328920889048,0.2535081095093718,0.2619296610362152,0.2693957115009746,0.276097436610578,0.2824842218657424,0.2895902415916627,0.29455513837074,0.299164325073897,0.3044809282804592,0.3086644183393303,0.3126825224765669,0.3173065686796421,0.3211176672928849,0.3200933318946914,0.3184981054081984,0.3175772977551885,0.3155097252596058,0.3140583317188035,0.3123282202465951,0.3110447571551094,0.3114051711352438,0.3123415336120058,0.3133657068109735,0.3148325899158715,0.3153774315973533,0.3163406940063091,0.3172243431394565,0.3180315207684696,0.3179874609795126,0.3187293373580566,0.323146038977474,0.3274198678305121,0.3313023610053313,0.3330416359616802,0.3362419700214132,0.3386340598073999,0.342375478927203,0.3467135926947589,0.3478416408299546,0.3457405388568759,0.3487559119884845,0.3499308437067773,0.3602005399151562,0.0,1.6865929560450013,56.21642435515826,173.12834189057588,257.6532704346165,fqhc8_100Compliance_implementation,86 -100000,95812,45304,429.8104621550536,5967,61.119692731599386,4696,48.36554920051768,1913,19.53826243059325,77.44904619750217,79.77322903850727,63.38601454967061,65.10612299721261,77.20295718415306,79.5314783825763,63.29394600259903,65.01819996254928,0.2460890133491062,241.75065593097145,0.0920685470715838,87.92303466333351,157.55652,110.8744165013368,164443.4100112721,115720.80376292823,399.214,263.45434770030306,416033.9414687096,274340.15332140337,381.9588,186.18348767053408,394266.9707343548,190852.5135650652,3350.39968,1542.824842332029,3453476.8400617875,1566891.8218302808,1130.41366,504.9494209132078,1162875.7984386089,510072.1422297917,1868.29552,796.1509751950823,1910423.8717488416,797968.5158484856,0.38206,100000,0,716166,7474.700455057822,0,0.0,0,0.0,34497,359.3808708721246,0,0.0,34931,360.2680248820608,1581699,0,56707,0,0,0,0,0,64,0.6679747839519058,0,0.0,0,0.0,0,0.0,0.05967,0.156179657645396,0.3205966147142617,0.01913,0.3416318663668487,0.6583681336331513,24.29496183355196,4.36667976699936,0.3215502555366269,0.2304088586030664,0.2261499148211243,0.2218909710391823,11.386505442457889,6.0543235881459685,20.512512263553912,12169.261100218811,53.37343157198009,12.85350640687036,17.091267608620885,11.938083764857408,11.490573791631444,0.5617546848381602,0.7966728280961183,0.6801324503311258,0.5951035781544256,0.1122840690978886,0.6993865030674846,0.9311224489795918,0.7971014492753623,0.703125,0.152892561983471,0.5088443396226415,0.7202898550724638,0.6359489051094891,0.5607940446650124,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.0043080291526866,0.0063722058181891,0.0087565140541034,0.011002979549915,0.0130736256910999,0.0152014110498251,0.0171975627430367,0.0194174757281553,0.0217126602613295,0.0239893426243787,0.0262931034482758,0.0282072368421052,0.0301255057810907,0.0321782178217821,0.0341140371721095,0.0358736040241365,0.0377655878967616,0.0399384922284099,0.0421629049720996,0.057123186213659,0.0715868933358425,0.0848809423995975,0.0979376569345366,0.1103758574544535,0.1262919828369723,0.1382943764244448,0.1495294305311852,0.1607045694594104,0.171023463519635,0.182705853254616,0.1951880901449839,0.206173590150051,0.215949273147946,0.2262311281910513,0.2359990271728315,0.2451350598719019,0.2539121259064682,0.262399945656481,0.2704450665600182,0.2775802355114292,0.2848108650502882,0.2905745878521106,0.2960691485546231,0.3020423004666384,0.3073452023803669,0.3118596263525066,0.3161012863775911,0.3213155821851474,0.3258206696927834,0.3245435016111708,0.3228113034050204,0.3214847480478625,0.320982850554835,0.3203712475575818,0.3185180665924378,0.3154769405241935,0.3154404077365395,0.3157134604274985,0.316439961643641,0.317859673990078,0.3188209151869113,0.3198138020289734,0.3199571724922486,0.3205533975926725,0.321060001037183,0.3225211419490323,0.3264590830855891,0.3312296202797938,0.3343342552350849,0.3379661170913385,0.3419279537375988,0.345599798704158,0.34548071823623,0.3478915662650602,0.350076823070559,0.3530668294171498,0.3568094174954333,0.3554580362040592,0.3496769289243633,0.0,2.487882074429572,56.85432129935374,172.94838335472053,253.767208563716,fqhc8_100Compliance_implementation,87 -100000,95821,45612,431.5442335187485,6051,61.959278237547096,4769,49.3315661493827,1900,19.58860792519385,77.3497797498425,79.6839260661094,63.33168066437421,65.06036089032864,77.11654157498423,79.44699785149338,63.24631042858975,64.97495762813132,0.2332381748582719,236.92821461601451,0.0853702357844596,85.40326219731753,159.41574,112.1214727338015,166368.2700034439,117011.37823003464,403.33448,264.7000118930702,420509.6273259515,275828.95387552853,388.58896,188.53929026829505,402073.40770812245,194106.1720238436,3432.91924,1560.5856125760674,3554991.1606015386,1601000.2531554338,1101.29991,485.8882112974411,1141183.3001116666,498931.9160700064,1862.8845,769.9449895051916,1922607.9669383536,787312.3168041061,0.38186,100000,0,724617,7562.194091065633,0,0.0,0,0.0,34776,362.4883898101669,0,0.0,35495,366.9863599837197,1566291,0,56263,0,0,0,0,0,72,0.7514010498742447,0,0.0,0,0.0,0,0.0,0.06051,0.1584612161525166,0.3139976863328375,0.019,0.3410877082678403,0.6589122917321597,24.478495082920286,4.346720749210625,0.3147410358565737,0.2392535122667226,0.2233172572866429,0.2226881945900608,11.216641846219565,5.870519823033803,20.10787600793708,12213.195876703718,54.03014736265829,13.757685035789448,16.902670235330874,11.815819778147564,11.5539723133904,0.5525267351646047,0.7773882559158632,0.6968687541638907,0.5615023474178403,0.0979284369114877,0.7310664605873262,0.907621247113164,0.8753117206982544,0.7016129032258065,0.1320754716981132,0.4860431654676259,0.6977401129943502,0.6318181818181818,0.5189718482252142,0.0894117647058823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198330530623,0.0046336195970677,0.0067489394523717,0.0088388584665088,0.0114942528735632,0.0138485820477572,0.0160481239804241,0.0183130365546175,0.0205750380735304,0.022866150114126,0.0252995868827587,0.0273422660300836,0.0293458366750981,0.0312934416607457,0.033307889090609,0.0353378797272163,0.0374717926422789,0.0393838813401099,0.0414562683124493,0.0436860352528397,0.058973877482891,0.0734854346598632,0.086717742865228,0.0995229288386364,0.1114881956155143,0.1276022118139623,0.13921002948601,0.1506454256190871,0.1617343941902066,0.171466263393288,0.1836400465457053,0.1957968552165961,0.2072633536724638,0.217537187011596,0.2270577625269456,0.2372680440923946,0.2463375174337517,0.2551193675711539,0.2634982584722206,0.2715803452855245,0.2784403086069887,0.2850078327760761,0.2913916684408488,0.2966280295047418,0.3029265746573929,0.3077879702025488,0.3119641026922981,0.3163435255228529,0.3210053813515471,0.3250003298022506,0.3240411549235079,0.3221279643044041,0.3205350472888212,0.3185635679119606,0.3178099714421704,0.3162597514061949,0.3143454568495755,0.3153227130891772,0.3152549328044318,0.3158393534081968,0.3164459616611021,0.3179317714104797,0.3182818229439497,0.3192473574828487,0.3203605769230769,0.3214983458803303,0.3221843003412969,0.325527446001442,0.3270626832332821,0.329315370676751,0.3335600907029478,0.3347609983079526,0.3368387909319899,0.3403245560318432,0.3431640440968623,0.3439678600968923,0.3455826060327668,0.3547283702213279,0.3588347399945548,0.362722351121423,0.0,1.70997864093369,57.27848303900111,175.51716999451824,261.36786885228474,fqhc8_100Compliance_implementation,88 -100000,95804,45179,428.31197027264,6098,62.502609494384366,4793,49.49688948269383,1896,19.487704062460857,77.41775944651599,79.74577437614414,63.37436231324406,65.09513795536223,77.18337894639409,79.51021476203562,63.28766417337825,65.0097765632671,0.234380500121901,235.55961410852436,0.0866981398658097,85.36139209513749,157.96792,111.13892304344972,164886.56006012275,116006.55822663948,397.70959,261.4207982550598,414617.124545948,272359.3267122148,385.07871,187.12017613699305,398152.2900922717,192464.67800049917,3461.93334,1573.0153674774406,3578885.015239447,1607247.74009273,1126.40658,497.14623476671255,1158091.2070477223,501381.65891498985,1863.04174,784.3242499023153,1916036.261533965,794780.6145270491,0.38094,100000,0,718036,7494.843639096489,0,0.0,0,0.0,34355,358.05394346791365,0,0.0,35219,363.8574589787483,1580639,0,56706,0,0,0,0,0,61,0.6262786522483403,0,0.0,0,0.0,0,0.0,0.06098,0.160077702525332,0.3109216136438176,0.01896,0.3430178069353327,0.6569821930646673,24.415607685853665,4.319422828846995,0.3114959315668683,0.240976423951596,0.2217817650740663,0.2257458794074692,11.008949780531731,5.549123907624523,20.302404488761024,12181.27632876553,54.17672056192896,13.694041118142232,16.78864363988538,11.947818874155145,11.746216929746211,0.5616524097642395,0.7878787878787878,0.7032819825853985,0.5729068673565381,0.1136783733826247,0.7193523515805705,0.9116945107398567,0.8817480719794345,0.6627906976744186,0.1601731601731601,0.5031464530892449,0.717391304347826,0.6403985507246377,0.5440993788819876,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0045918522498048,0.006727481202626,0.0090593325343787,0.0112564060847636,0.0134370291949997,0.0156660890836815,0.0179635829182657,0.0201966516077597,0.0222602038727637,0.0244054940549405,0.0263298363752078,0.0283091598737703,0.0303697908087629,0.0323970964282768,0.0345896034951095,0.036779468074097,0.0386481443085216,0.0406482106684672,0.0424851910844602,0.05706893133992,0.0709170926500872,0.0843168906312236,0.0973129687598478,0.1102603530353456,0.1264143169549003,0.1389362626187727,0.150493281170267,0.1610989597225927,0.1710888543730919,0.1830773863294188,0.1957956595478065,0.2066730364161473,0.2171596405603415,0.2270679995605844,0.237425192756557,0.2467953719597833,0.2551767506625342,0.2630511853387248,0.2707999817042492,0.2776507276507276,0.2839867869690567,0.2902848777493123,0.2955154589834402,0.3006987916727325,0.3055521359103779,0.3101397115793157,0.3155828314401159,0.3193891273987482,0.3235867446393762,0.3228871299369734,0.3222626984672486,0.3216340540464501,0.3206267674727304,0.320079552369503,0.317860422405877,0.3160997660744768,0.3169397116644823,0.3170445261437908,0.3183015375854214,0.3186474260720027,0.3189480516925982,0.321189358372457,0.321373757145717,0.3220745574053639,0.3218686632350647,0.3241108964890353,0.326707840862777,0.3284296596547627,0.332806761186367,0.336779576474856,0.3398613243000053,0.3421795595708639,0.3423539194194572,0.345229151014275,0.3497027348394768,0.3529048207663782,0.3613871425674305,0.3677629790703995,0.3645074741280183,0.0,2.0562544790412387,56.96270362868108,174.83832109357272,264.1725654224509,fqhc8_100Compliance_implementation,89 -100000,95727,45044,427.026857626375,6112,62.64690212792629,4804,49.662059815934896,1847,18.918382483520844,77.3893283971574,79.74993790768113,63.35181630130408,65.09345227970374,77.15455453219155,79.51708452322084,63.26426448605297,65.00927642004281,0.2347738649658453,232.85338446028447,0.0875518152511034,84.175859660931,157.7895,110.9896373097933,164832.8057914695,115943.9210565392,399.04292,261.64778012442173,416338.9639286722,272810.8685370082,378.84587,183.64577807776,392894.9930531616,189527.7346232905,3451.44893,1568.5485562400802,3569836.263541112,1602888.198982605,1137.61165,504.3008923031939,1173925.9038724706,512345.8296020911,1809.98094,766.1346896818153,1856035.0371368576,769895.2270915767,0.38095,100000,0,717225,7492.400263248613,0,0.0,0,0.0,34408,358.8956093892005,0,0.0,34625,358.8224847744105,1579803,0,56646,0,0,0,0,0,71,0.7416925214411817,0,0.0,1,0.010446373541425,0,0.0,0.06112,0.1604410027562672,0.3021924083769634,0.01847,0.3331261653200746,0.6668738346799254,24.71719785051237,4.301268072994116,0.3199417152373022,0.2302248126561199,0.2339716902581182,0.2158617818484596,11.284233770173852,5.939193183990899,19.70031309602674,12136.248910908813,54.13116044380616,13.045347389281698,17.20267967183047,12.453197965746789,11.429935416947204,0.5566194837635304,0.7730560578661845,0.7000650618087183,0.5711743772241993,0.0973963355834136,0.7061191626409018,0.9083769633507852,0.8324873096446701,0.7235772357723578,0.109090909090909,0.5044918585064571,0.7016574585635359,0.6544181977252843,0.5284738041002278,0.0942472460220318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192926663763,0.00429728277945,0.0063195479950904,0.0087121635206076,0.0109389614086454,0.0135781609429391,0.0160097016142181,0.0183159527356584,0.0204871967792696,0.0227775049115913,0.0247363944706882,0.0268090738403767,0.0287613802174315,0.0308910116523242,0.0329500335172484,0.0352389219576719,0.0372283705858602,0.039218737034271,0.0409936597027336,0.0428872036334847,0.057419415468471,0.0711961241851266,0.0840631391263306,0.0965588300232355,0.1088810414799978,0.1248003891750124,0.1362744370074146,0.1469786654175361,0.1582714598579135,0.1688665387131016,0.1811300031227454,0.1935274520832432,0.2059769964994673,0.2170218815270047,0.2264024296309337,0.2373587414136937,0.2468296494753293,0.2552193475815523,0.263055763600463,0.2712808000274923,0.2770492182440559,0.2836035488433529,0.2901578294023763,0.2957943757407429,0.3009952664158272,0.3059963315401376,0.3108295708943557,0.3141008529408026,0.3186736384344585,0.3229233953359611,0.3214799285032724,0.3202528167078868,0.3188116585626352,0.3180558362444785,0.3175702736779648,0.3157122776996883,0.3134114007954043,0.314601226993865,0.3150901936736675,0.3156066893444229,0.3169360112097151,0.3178834059499635,0.3197708455298151,0.3195008705745792,0.3191187776282914,0.3204951856946355,0.320571039337004,0.3233068601088112,0.3261006069908602,0.3313630452772195,0.3343307943416757,0.3366677252037684,0.3385648816623768,0.3423103109161056,0.3432933683027351,0.3498470228289009,0.3490095266898533,0.3558441558441558,0.3591236827509706,0.3582722715001928,0.0,2.0343141326113328,54.54282249802869,177.83867715561905,270.197205055716,fqhc8_100Compliance_implementation,90 -100000,95681,45060,428.3713589949938,5975,61.27653348104639,4723,48.87072668554886,1874,19.251471033956584,77.35982293729873,79.7360484512428,63.33991942654043,65.09008121327722,77.12562275294684,79.50042897908027,63.25412458903828,65.00558364283641,0.2342001843518915,235.61947216252577,0.0857948375021564,84.49757044080286,157.9622,111.14423744878631,165092.54710966648,116161.24146777972,399.34976,262.63029155946145,416898.7991346244,274007.8715308801,381.99948,186.0414136065032,396091.9200259195,192014.18397392367,3401.45625,1545.7864206627496,3522404.134572172,1582970.1515063066,1136.75635,498.19639036263294,1172916.2216113962,505532.4454689562,1837.54448,765.9354180689671,1890129.471890971,776206.001598845,0.37996,100000,0,718010,7504.206686803022,0,0.0,0,0.0,34489,359.94607079775506,0,0.0,34995,362.5589197437318,1576472,0,56502,0,0,0,0,0,73,0.7629518922252067,0,0.0,2,0.0209027915678138,0,0.0,0.05975,0.1572533950942204,0.3136401673640167,0.01874,0.3381812370145437,0.6618187629854563,24.09140839536343,4.332446012143965,0.3116663137836121,0.2348083845013762,0.2267626508575058,0.2267626508575058,11.152223050361291,5.750302448478399,20.04355090874067,12061.71707430618,53.62913648205356,13.31061474930921,16.721362319544216,11.93100037603525,11.666159037164896,0.5672242218928647,0.806131650135257,0.7180706521739131,0.580765639589169,0.0989729225023342,0.7250778816199377,0.9040767386091128,0.8717948717948718,0.6868327402135231,0.1071428571428571,0.5082872928176796,0.7471098265895953,0.6626617375231053,0.5430379746835443,0.0971428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.0043887655709956,0.0067569624105919,0.0088257398793443,0.0109606312022124,0.0129166878721563,0.0148360998176056,0.016895890299147,0.018948293121412,0.0208795817945596,0.0233165664409453,0.025432423005109,0.0273400964098136,0.0293142504118616,0.0312538680529768,0.033435310168055,0.035405192761605,0.0374522900763358,0.0395571265204283,0.0417587227479261,0.0570082425331425,0.0708085979625383,0.0840627164536238,0.0969764554884591,0.1086667650967075,0.1252750740584003,0.1369063412045635,0.1481288206351573,0.1587892002821779,0.1694462330972311,0.1816918253224294,0.1927995235774998,0.2044022762139989,0.2135822463450932,0.2239837935438411,0.23401003422268,0.2435698583974022,0.2526077964120318,0.2607921622878136,0.268122410675456,0.2750997282765797,0.2817619476373671,0.2888218594748048,0.2942374018011113,0.2993510038211924,0.3039432875498449,0.3081834880727754,0.3127891018146698,0.3174740708170602,0.3213376762095657,0.3210093975612051,0.3199224763580383,0.3193877263638155,0.318712564047052,0.3182687886563534,0.316728101436197,0.3141247765067008,0.3131230190662309,0.3136902623068631,0.3144833997818819,0.3155347999774939,0.3167807541645234,0.3178423062397717,0.3189304094875811,0.3195893638505553,0.3213811766542634,0.3223156937418291,0.3253798819540374,0.3270488649480569,0.3304151481540168,0.3345767183732884,0.338529474356246,0.3410906785034876,0.345479598867029,0.3488832343794176,0.3489092859697222,0.3515003061849357,0.355021216407355,0.3526713437668645,0.366412213740458,0.0,1.8977263854644624,56.53187512014438,172.10159564137598,262.88188844795246,fqhc8_100Compliance_implementation,91 -100000,95850,45578,432.4882629107981,6031,61.773604590506,4748,48.92018779342723,1854,18.9358372456964,77.34109898624328,79.63352138464705,63.34986309044478,65.04480977304398,77.1113389594157,79.40539208249261,63.26590298231642,64.96386077800379,0.2297600268275772,228.12930215444285,0.0839601081283589,80.94899504018827,158.5144,111.59536784654549,165376.88054251435,116426.41048152892,396.88299,260.29912733248835,413432.0605112155,270935.5572183633,386.96987,187.9543235142164,399683.56807511736,192938.93205143305,3394.2266,1542.8368099151369,3499645.758998435,1568169.79320432,1129.27529,500.82854303569286,1164127.8977569118,508496.9683816801,1819.22512,756.9099934943088,1860341.9926969225,757837.8217368107,0.3833,100000,0,720520,7517.130933750653,0,0.0,0,0.0,34174,355.8581116327595,0,0.0,35219,363.4220135628586,1576285,0,56601,0,0,0,0,0,73,0.7616066770996349,0,0.0,0,0.0,0,0.0,0.06031,0.1573441168797286,0.3074117061847123,0.01854,0.3365079365079365,0.6634920634920635,24.366246637075744,4.322442991563024,0.3197135636057287,0.2356781802864364,0.2289385004212299,0.2156697556866048,11.065509903310431,5.618686996709954,19.62391013969243,12234.333566081004,53.81789296043964,13.368603185886908,17.273953723817737,11.949263932314452,11.226072118420534,0.5633951137320977,0.7640750670241286,0.7114624505928854,0.563017479300828,0.125,0.7397151898734177,0.9158163265306124,0.9009661835748792,0.7203389830508474,0.1486486486486486,0.4994259471871412,0.6822558459422283,0.6403985507246377,0.5193889541715628,0.1184538653366583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0043671662056317,0.0066741725750337,0.0090665421243933,0.0110584839306405,0.0132500203533338,0.0156585877726499,0.0177811782708492,0.0198866247893366,0.0220856008838332,0.0240714563743265,0.0261225410760804,0.0281834802078839,0.0305265757145502,0.0325711753856299,0.0344304424559556,0.0364894068015675,0.0385097543539747,0.0402902643107779,0.0421963754395455,0.0571619240274026,0.0711277394003365,0.0850633706923641,0.0979080464598517,0.1106665262714541,0.1259716120310915,0.1377604525279916,0.1489741681726374,0.1595800300893076,0.170215501998564,0.1826848583971765,0.1948466204599764,0.2071019423279675,0.2169869062452182,0.2263646564432025,0.2367543616726668,0.2465165054609145,0.2560797282400845,0.2645667147023114,0.272463900880578,0.2797705111447838,0.286339027841115,0.2930683700023657,0.2986907200440818,0.3045959565296582,0.3101382829253863,0.3147529497140998,0.3184402304551871,0.3232809366711948,0.3271981211737386,0.3260772989782319,0.3246640718480518,0.3231038029617731,0.3225689772414891,0.3223334771547171,0.3193899448191293,0.3177842565597668,0.3179261111293878,0.3189715795070579,0.320629452189984,0.3195825798673899,0.3200460555048239,0.3202273205640917,0.3215828309187438,0.3217452395949416,0.3244888853896018,0.3257593123209169,0.3289881668037714,0.3323716708299616,0.3357350423948091,0.3372624269005848,0.3404527296937417,0.3447992412266835,0.3478691774033697,0.3516410548283058,0.3500895522388059,0.3539645881447267,0.3577926015767131,0.3631881676253081,0.3622077424300498,0.0,2.313724180204597,55.30318972311456,179.21115137781706,259.0513461665782,fqhc8_100Compliance_implementation,92 -100000,95651,44928,425.44249406697264,5933,60.97165737943148,4649,48.101953978526105,1852,19.0797796154771,77.31769350596971,79.73912162888091,63.289715480586615,65.08090220646322,77.08480175866201,79.50573597547638,63.20434632588212,64.99747775306498,0.2328917473077041,233.38565340452533,0.0853691547044945,83.42445339823712,158.29968,111.3864869238426,165496.4610929316,116450.40743386208,399.07178,262.51642190309514,416725.06298940943,273964.57212996494,381.06589,185.5004349971635,395013.9883534934,191382.9522963153,3356.87344,1515.156188720281,3477414.8937282413,1552348.908947697,1118.64521,486.7530348199062,1154992.5562722816,494883.3281875047,1820.1723,754.6485530608209,1876234.958338125,765387.2302903114,0.37794,100000,0,719544,7522.566413315073,0,0.0,0,0.0,34479,359.93350827487427,0,0.0,34899,361.4703453178744,1570890,0,56310,0,0,0,0,0,64,0.6690991207619367,0,0.0,0,0.0,0,0.0,0.05933,0.1569825898290734,0.312152368110568,0.01852,0.3335470427953197,0.6664529572046802,24.370010814733277,4.423156455264785,0.3269520326952033,0.2286513228651323,0.2161755216175521,0.2282211228221123,11.177292192163351,5.6767539633636765,19.48017922425552,12047.05554253492,52.35040471917252,12.63247665912936,17.237677016715658,10.985586419214188,11.494664624113303,0.5611959561195956,0.7845719661335842,0.7105263157894737,0.5621890547263682,0.122525918944392,0.7481722177091795,0.931372549019608,0.8886255924170616,0.6869158878504673,0.1016042780748663,0.4938560561732007,0.6931297709923664,0.6420765027322405,0.5284450063211125,0.1270022883295194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023401410162898,0.0045024946254005,0.0068934010152284,0.0092277360542281,0.0113239797735204,0.0136715566422167,0.0156999163487238,0.01774640116879,0.0200998853774357,0.0226226718738788,0.0249553452275853,0.0267749730090997,0.0289156626506024,0.0312045470956561,0.0332689307448314,0.0354204824139322,0.03734577501296,0.0394910412879771,0.0415847148075302,0.043402542417069,0.0581123163416724,0.0722129086336965,0.0855609356454882,0.0985697434385137,0.1107344632768361,0.1255745483044205,0.1372340651633334,0.1481548596158355,0.1589678854917734,0.1693968526773726,0.1816357791633406,0.1934613467415097,0.2043984053329847,0.2141159721841975,0.2234356747702277,0.2335155998713412,0.2431218291129338,0.2520018469924431,0.2600426913731635,0.266798056650472,0.2728525281061492,0.280127777582757,0.2864451339380877,0.2922918240804039,0.2980898999355599,0.302824886610136,0.3078568747654197,0.3119961343811195,0.3162616677239361,0.3196699669966997,0.3178732117358622,0.3161384395289974,0.3150889449147171,0.3137804085757598,0.3136629373534736,0.3118742153770782,0.3105140667796019,0.3120973162614555,0.3130531162076903,0.3146033440056919,0.3152169857084219,0.3156010230179028,0.3160816767861598,0.3158783783783784,0.3159543682586755,0.316633370521236,0.317770785497633,0.3222090409590409,0.3245810055865922,0.3270577067594826,0.331602204910938,0.3330321071656389,0.3366561514195583,0.338150289017341,0.3412362404741744,0.3442196189800023,0.3508342262360324,0.3504118947156922,0.3492324561403508,0.3492184521540221,0.0,1.915255893948765,54.19377371557808,169.28696609709866,258.9155546059925,fqhc8_100Compliance_implementation,93 -100000,95712,45483,430.67744901370776,6074,62.270143764627214,4811,49.71163490471414,1960,20.10197258441993,77.34880342590687,79.70652980957996,63.338894218876014,65.07720122917529,77.1051184351193,79.46381272263528,63.24809445004856,64.9893303763566,0.2436849907875711,242.71708694467972,0.0907997688274591,87.87085281868201,158.2526,111.37663108953988,165342.48579070542,116366.42332156874,403.06788,264.5933847658455,420589.758859913,275911.4580886885,388.46875,188.89920633729585,402404.3589100635,194693.96513877425,3448.28315,1569.1426099024334,3565045.3443664326,1601717.2976245752,1164.60465,515.9723382363288,1201542.8786359078,523851.14534888894,1920.85756,805.7644901286204,1971934.5327649617,812929.4409168581,0.3815,100000,0,719330,7515.567535941156,0,0.0,0,0.0,34657,361.53251420929456,0,0.0,35468,367.0699598796389,1571535,0,56410,0,0,0,0,0,86,0.8985289200936142,0,0.0,0,0.0,0,0.0,0.06074,0.1592136304062909,0.3226868620349029,0.0196,0.3307740520213099,0.6692259479786901,24.590876022218925,4.315431918301431,0.3192683433797547,0.2332155477031802,0.2217834130118478,0.2257326959052172,10.976748876707443,5.693338451743762,20.90856991221744,12176.01502993764,54.482671973842834,13.363360160595535,17.53432902881781,11.716007263639106,11.868975520790396,0.5572646019538557,0.785204991087344,0.6998697916666666,0.5623242736644799,0.1151012891344383,0.7282525019245574,0.9307692307692308,0.8480725623582767,0.7219917012448133,0.1541850220264317,0.4940205011389522,0.7076502732240437,0.6401826484018265,0.5157384987893463,0.1047729918509895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.004439849166768,0.0066358885901273,0.0090106563455541,0.0112351553603383,0.0135898610474881,0.0156257963244212,0.0179238542410942,0.0204077461550252,0.0225269945243334,0.0248857183855031,0.0270644744134491,0.0294045073202829,0.0313593872256311,0.0334117307255885,0.0354116723154501,0.0375969433716102,0.0395218776264046,0.0415496911847276,0.0435756634816767,0.0576169937234342,0.0719025390911184,0.0851423235513214,0.0973633819413757,0.109101073817008,0.1248651278904944,0.1369858652744174,0.1481927069470322,0.1588208897816146,0.1692484284151129,0.1825879007238883,0.1950097921468064,0.2062083292546306,0.2163113974166876,0.2254816738372157,0.2357810058837217,0.244984809221696,0.2540835050037711,0.2620488425163773,0.2691320685546696,0.2762588262530385,0.2834733172683246,0.2904321681798274,0.2954646216523875,0.301044449842118,0.3063997536187249,0.3111827795694892,0.3160209477323571,0.3201008598952609,0.3243570986067723,0.3232918753028589,0.3226059438635112,0.3219070966651168,0.3208079114015557,0.3195509961344038,0.3175697412564915,0.315504465133954,0.3161487218193154,0.3169294364825854,0.3180616582717108,0.318540840008984,0.3199644725155433,0.3209830025956627,0.3225748690630735,0.3235697610050783,0.3244461819129528,0.3249621871521931,0.3288537798199786,0.3330994562357481,0.334948179327324,0.3403992873132623,0.3420404667594476,0.3443333120978531,0.3465300777940384,0.3497907153729072,0.3507696007696008,0.3545213181321255,0.3569352159468438,0.3615644344400675,0.3706020328381548,0.0,2.15609430124554,57.12683735874145,175.96766795393103,265.7451036937791,fqhc8_100Compliance_implementation,94 -100000,95640,45332,429.4019238812213,5995,61.42827268925136,4695,48.52572145545797,1888,19.343370974487662,77.26744378178137,79.68357624610138,63.28338998351626,65.06971730521103,77.0353462970185,79.45399026340652,63.19731378123917,64.98740913214435,0.2320974847628605,229.5859826948572,0.0860762022770842,82.30817306667859,157.90302,111.09108241273135,165101.4429109159,116155.46049009972,399.28564,263.1974387549575,416917.92137181095,274625.7828889141,387.39678,188.94262173606057,401821.5077373484,195008.0378068328,3406.38359,1554.3109987251455,3520265.91384358,1583833.1891730914,1125.55733,503.5923232686248,1161604.2973651192,511285.3861027018,1849.00574,775.202069845726,1895509.8912588877,776947.3238553836,0.38139,100000,0,717741,7504.61104140527,0,0.0,0,0.0,34417,359.26390631534923,0,0.0,35370,366.6457549142618,1571354,0,56417,0,0,0,0,0,72,0.7528230865746549,0,0.0,0,0.0,0,0.0,0.05995,0.1571881800781352,0.314929107589658,0.01888,0.3344508301404853,0.6655491698595147,24.39404954932475,4.433914319754249,0.3077742279020234,0.2336528221512247,0.227689030883919,0.2308839190628328,11.098777154586204,5.729612588037374,20.17576626803948,12200.009846454695,53.35583796337089,13.189329394528473,16.388228969579597,11.954487581224187,11.82379201803862,0.5642172523961662,0.8030993618960802,0.6982698961937717,0.5949485500467727,0.1134686346863468,0.7432646592709984,0.9240196078431372,0.8914728682170543,0.726890756302521,0.1877729257641921,0.4983979027090008,0.7314949201741655,0.6275992438563327,0.5571600481347774,0.0935672514619883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107524266926,0.0043094706955992,0.0063454353476283,0.0086578326965287,0.0106613495559466,0.0128936326231311,0.0150600566918857,0.0176826715944011,0.0199695293407908,0.0220069430932606,0.0243269575919183,0.0267185766528331,0.0286813571178733,0.0307064545379605,0.0329586391271586,0.0352952122985309,0.037296351151205,0.0395462047061021,0.0415773815715563,0.043757949830056,0.0581927635291904,0.0728956105531059,0.0858072985035442,0.0988206802148046,0.1105387059655642,0.1260456152982783,0.1379914611610272,0.1491171048284828,0.1601275029950368,0.1704399003350803,0.1839604836013416,0.1960221425398923,0.2068481372239576,0.2173075660414523,0.2265681763138774,0.2373461542722307,0.2463396125345951,0.2550711593632221,0.2630772374335921,0.2706552380079298,0.2772311610140062,0.2838329376264605,0.2907463958525673,0.2961883515639992,0.301567230415699,0.3071379208214039,0.311791738145027,0.315340077622956,0.3195583718850834,0.3244739902727849,0.3240016189962223,0.3226393002272884,0.3218940419769803,0.3210346524621486,0.3196121941412125,0.3178463474138063,0.3167581632976867,0.3178047538479228,0.3182548637467091,0.318937945575071,0.3197058106155838,0.3209695334814345,0.3225203269113599,0.3224809673085535,0.3220302219651507,0.3234440755940089,0.3241900956186671,0.3291334614294264,0.3323710614328463,0.3368580663181836,0.3382535522140985,0.3396104594856343,0.3390804597701149,0.3415066697509445,0.3435274005128692,0.3468457663708323,0.3464396284829721,0.3492518958803033,0.3560906515580737,0.3610108303249097,0.0,2.1059806943973323,55.35712788169965,177.67111543091997,255.36870431418964,fqhc8_100Compliance_implementation,95 -100000,95832,44903,424.7746055597296,6113,62.557392102846656,4789,49.33633859253694,1871,19.09591785624844,77.40182060844235,79.71639230373377,63.36325590393732,65.07601242714973,77.16052673239857,79.47980252126875,63.27159689999616,64.98962530114765,0.2412938760437839,236.5897824650176,0.0916590039411673,86.3871260020801,157.83768,110.99359445131137,164702.2497704316,115820.81109326026,396.9304,260.8436205186683,413559.0095166541,271554.52943509584,377.10161,182.90814942694888,390460.0133567076,188418.672511601,3419.89246,1573.0768545217136,3522742.486851991,1595740.0590547335,1129.82637,505.3601201982408,1160447.8149261207,508821.7925100594,1829.9337,787.1334749116745,1868702.2706402875,784042.3056500128,0.38043,100000,0,717444,7486.465898655982,0,0.0,0,0.0,34344,357.7093246514734,0,0.0,34448,356.34234911094416,1581602,0,56749,0,0,0,0,0,62,0.6469655229985809,0,0.0,1,0.0104349277902996,0,0.0,0.06113,0.1606865914885787,0.3060690332079175,0.01871,0.3459737827715355,0.6540262172284644,24.684155944483766,4.391803204446462,0.3230319482146586,0.2338692837753184,0.2219670077260388,0.2211317602839841,11.048682658467277,5.670823637287185,20.094037492222743,12125.722220991474,54.30488387020991,13.423624667989312,17.38909502877578,11.825141461754717,11.66702271169012,0.5596157861766549,0.76875,0.713639301874596,0.5700846660395108,0.1029272898961284,0.7171717171717171,0.8956310679611651,0.8877551020408163,0.7096774193548387,0.1276595744680851,0.5017133066818961,0.6949152542372882,0.6545454545454545,0.5276073619631901,0.0958737864077669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681706798436,0.0046215123291003,0.0068274966521933,0.0090902627542988,0.011325627026972,0.0136406205464391,0.0159200937675177,0.0179322310675648,0.0200850420099351,0.0223022834508664,0.0244579980523807,0.0266147987724142,0.0289767178907334,0.0309407852060831,0.0329740601309886,0.0348529624501436,0.0369649604057761,0.0391658716661827,0.0409244352116333,0.0430461163785477,0.0576044556624043,0.0711530218602657,0.0843777507649746,0.0974441398001954,0.1095311825238832,0.1251821964976024,0.1364536873218845,0.1472551771059233,0.1579430474320112,0.1684808227983715,0.1810885539381811,0.1931366191093817,0.2048579036026734,0.2154520416193057,0.2244630898314217,0.2346499241493096,0.244502950724573,0.2532277655315129,0.2617032381038826,0.269325883861513,0.276190366017306,0.2823600944786137,0.2890571394771087,0.2952328451932987,0.3003449029656797,0.3049316857420936,0.3101002139398716,0.3145974541246487,0.3184571576494952,0.3226402152693505,0.3223080442446914,0.3209329830979329,0.319981428330238,0.3189685012114918,0.3186435148801139,0.3163215367203988,0.3148271066439092,0.3154015005078138,0.3162671671073957,0.3174399543867151,0.3174959331351321,0.3193666692956858,0.3194551797614322,0.3203355045953422,0.3218597298074159,0.3232026991954321,0.3235569422776911,0.3266108891108891,0.3312990409764603,0.3343210461854529,0.3372902169463774,0.3416264389157074,0.3428571428571428,0.3438564615035203,0.3471435206688342,0.3484083166921179,0.3467558121865978,0.3519114688128772,0.3563815250068324,0.3604118993135011,0.0,2.435481313887088,56.09031926258305,183.26180650868852,256.209044142657,fqhc8_100Compliance_implementation,96 -100000,95703,44997,426.96676175250514,5880,60.238446025725416,4630,47.86683803015579,1800,18.515616020396436,77.32145341825886,79.70834981551032,63.3143933609397,65.07989433262334,77.1004771019546,79.48627828337106,63.23267238795601,64.99956664370208,0.2209763163042595,222.07153213925324,0.0817209729836889,80.3276889212583,157.50658,110.76935285630258,164578.51895969824,115742.82191394478,399.39101,263.049431133246,416775.6078701817,274313.817388339,378.78918,184.1830376336549,392228.174665371,189755.0987138708,3311.18199,1499.641850330123,3425624.630366864,1532849.3178494768,1109.9355,486.70173750638656,1149530.0251820737,498340.1855328645,1765.65488,736.0516345289944,1818336.123214528,747168.711222309,0.3798,100000,0,715939,7480.841770895374,0,0.0,0,0.0,34475,359.6647962968768,0,0.0,34508,357.0212010072829,1578707,0,56595,0,0,0,0,0,78,0.8045724794416058,0,0.0,1,0.0104489932395013,0,0.0,0.0588,0.1548183254344391,0.3061224489795918,0.018,0.3381971465629053,0.6618028534370947,24.853663941112348,4.418661029104575,0.31792656587473,0.2330453563714903,0.229157667386609,0.2198704103671706,11.30028216792011,5.905735959792336,19.10394121214488,12071.968663607082,52.09595824592772,12.762435329368122,16.431798254845422,11.839083728415623,11.062640933298551,0.5591792656587473,0.7775718257645968,0.6847826086956522,0.5758718190386428,0.1286836935166994,0.7264462809917356,0.921119592875318,0.8515406162464986,0.7269076305220884,0.1516587677725118,0.5,0.6953352769679301,0.6313901345291479,0.5295566502463054,0.1226765799256505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020061603307124,0.0044721630666261,0.0063647068377456,0.0086177985996077,0.0110389874654077,0.0131712981827071,0.0153278195335366,0.0176026138452113,0.0196485345382798,0.0220791450856756,0.0244722623771004,0.0265971102599123,0.0287210295131209,0.0304185643921439,0.0322976878612716,0.0340880893300248,0.0363046900894928,0.0383366024263935,0.0402358618107697,0.042323686048087,0.0571935871324873,0.0712012728719172,0.0845541936025522,0.0976197491371327,0.1089951890614449,0.1238715139969307,0.1358778139826146,0.1462606769335633,0.1571663674446439,0.1675317989747109,0.1798802163000624,0.1913101835815725,0.2024318357314539,0.2129598232353616,0.2230019578942737,0.2332986426341312,0.2424793369993196,0.2516606161419756,0.2606294927322615,0.2683985162117604,0.2755562236921227,0.2820150108723608,0.2885307204392691,0.2945779162422862,0.2992688318313212,0.3039249482911454,0.3085995147452413,0.3134182298815515,0.3188057386583947,0.322442096387447,0.3217811129938944,0.3205806017494953,0.3183000745334627,0.31701581255771,0.3164224310721126,0.3153358643071459,0.3133405056481979,0.3146441456215152,0.3151886422196815,0.3158870838311607,0.3171160719297917,0.3188528796431532,0.3192219201003974,0.3209310645529146,0.3229828615443866,0.3235886305990639,0.3266246779272831,0.3300967813120645,0.3330753807731542,0.3343253968253968,0.3369086033722674,0.3400680561463207,0.3426019761844439,0.3465407356215925,0.3479534927686927,0.3474414155906264,0.3473570658036677,0.3525811058967558,0.3569452130603209,0.3621621621621622,0.0,1.866202858823872,53.2288690043363,167.93975635775223,261.71762819245777,fqhc8_100Compliance_implementation,97 -100000,95704,45115,429.2297082671571,5866,60.12287887653599,4595,47.417035860570095,1770,18.1288138426816,77.3455376358958,79.73113577822222,63.32130932583449,65.0868660683473,77.1320690569967,79.51967913461692,63.242252194478056,65.01087052061295,0.2134685788990964,211.45664360530247,0.0790571313564356,75.99554773435102,158.38812,111.39563489426688,165497.91022318817,116396.00737092168,397.63313,261.40352834801985,414866.7244838252,272521.9931748097,375.8899,182.83570952518008,388861.2492685781,188114.51104932,3269.48612,1478.2054325515703,3377627.256958957,1505972.7787716005,1059.57052,469.59258583347776,1092673.7962885564,476256.4422276028,1735.67024,718.5883931186678,1779225.5078157652,722892.898911028,0.38065,100000,0,719946,7522.632282872189,0,0.0,0,0.0,34412,358.95051408509573,0,0.0,34494,356.4741285630695,1575952,0,56456,0,0,0,0,0,54,0.5642397391958539,0,0.0,0,0.0,0,0.0,0.05866,0.1541048207014317,0.3017388339584043,0.0177,0.3385890767230169,0.6614109232769831,24.64005534577503,4.289360163791243,0.3262241566920565,0.2376496191512513,0.2198041349292709,0.2163220892274211,11.088871200825926,5.673005941030378,18.585301296434363,12049.77628929778,51.80073187583017,13.07665386325405,16.76670596808567,11.1226544562232,10.834717588267251,0.5542981501632209,0.7857142857142857,0.6904603068712475,0.5554455445544555,0.0935613682092555,0.7364470391993327,0.9254807692307692,0.8864265927977839,0.695067264573991,0.1155778894472361,0.4899882214369846,0.6997041420118343,0.6282952548330404,0.5158831003811944,0.0880503144654088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002117549316609,0.0043511334246158,0.0069140565510939,0.0090855505193194,0.0111805159925124,0.0130474638419229,0.0151944688054496,0.0174320639686284,0.0192858311518324,0.021238684307541,0.0235064868468283,0.025328416922587,0.027412901035827,0.0295217781075149,0.0314754233702438,0.0337230820126332,0.0359447672912976,0.0378415966953471,0.0397570690211004,0.0413128418859077,0.0562088772845953,0.0710009628668313,0.0842866438571818,0.0971118943658267,0.1085679327475819,0.1243720054576031,0.1364528622208074,0.1477485728891539,0.1589062767231058,0.1691300381044383,0.181311574363507,0.193736327998094,0.2051047619047619,0.2156588146478626,0.2250299915253304,0.2350458126059451,0.2443003649105578,0.2534363681357,0.2614475460227079,0.2683741902996177,0.2751642150060135,0.2815611124094415,0.2880696860816944,0.2927950028121148,0.298035649327028,0.304055383404653,0.3086788211788211,0.3135538385414684,0.3179448802642444,0.3216256701356039,0.3209156374461922,0.3191541811608097,0.3180727288038062,0.3170352453351762,0.3156111776801432,0.312784064911692,0.3106578469602008,0.312238639531642,0.3128261981920519,0.3139675968881593,0.3139210136642237,0.3152077195341388,0.3167424607582203,0.3171810102273235,0.3180103328126877,0.3182339449541284,0.3206334764436609,0.3236705882352941,0.3269358736384968,0.3291716210860087,0.3331669691470054,0.336734693877551,0.3369646882043576,0.3369663941871026,0.3381234150464919,0.3401693096458805,0.334973854198708,0.3383642667754436,0.3384363039912521,0.3480108149864813,0.0,2.266925170547056,52.23330113740624,171.96062619065367,254.35287938802017,fqhc8_100Compliance_implementation,98 -100000,95600,44800,425.6485355648536,5935,60.70083682008369,4669,48.14853556485356,1824,18.556485355648537,77.23812690061078,79.66736633252457,63.25655152000609,65.05355218203871,77.00053547987902,79.43636746689005,63.16749014279276,64.9703063631646,0.2375914207317606,230.99886563451832,0.0890613772133335,83.24581887411853,158.24666,111.2791976358966,165529.7489539749,116400.6111254148,396.98817,260.9500045253603,414561.4748953975,272263.2389180535,375.24407,183.00108675162767,388505.24058577407,188333.55407023357,3366.46631,1549.4285079977558,3473926.0355648533,1573593.5023066895,1119.97934,499.6039113167437,1151532.290794979,502908.2909106386,1794.6671,766.937336789973,1829018.9748953972,762593.8461351395,0.37875,100000,0,719303,7524.07949790795,0,0.0,0,0.0,34305,358.09623430962347,0,0.0,34294,354.7907949790795,1569598,0,56420,0,0,0,0,0,71,0.7322175732217574,0,0.0,0,0.0,0,0.0,0.05935,0.1566996699669967,0.3073294018534119,0.01824,0.343319448894585,0.6566805511054149,24.46815680978726,4.383438423702666,0.3156992932105376,0.2385949882201756,0.2171771257228528,0.2285285928464339,11.154133084337383,5.756170028747469,19.674679098765232,12051.80429234447,53.29584254289021,13.359280860821622,16.73718258741916,11.37175723500037,11.827621859649044,0.5602912829299636,0.7675044883303411,0.7069199457259159,0.6035502958579881,0.1002811621368322,0.7246489859594384,0.909313725490196,0.8790931989924433,0.7428571428571429,0.1163793103448275,0.4980808975494538,0.6855524079320113,0.6434540389972145,0.5591677503250976,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.0045439331392695,0.0066810169766875,0.0089039773131536,0.0110934701188731,0.0132237130311643,0.0152684991585496,0.0175090916520246,0.0198739848208988,0.0220519701330492,0.0238960026266108,0.0258109593826741,0.028004775529528,0.0299887632341267,0.0321887747198843,0.0344774065374626,0.0364403528960491,0.0382929211078559,0.0399966686793395,0.0418570683359415,0.0562473209338309,0.0705482897384305,0.0837264522636295,0.0969624199528143,0.1089027352413137,0.1243088655862726,0.137089920108788,0.1478153347617068,0.1594072647515112,0.1688776222649494,0.1811737286763992,0.1935753160302695,0.2045286143921893,0.2153861325385694,0.2247815114010822,0.235294770364288,0.2446865631571882,0.253577671271497,0.2614896448189975,0.2687881850337636,0.275323469683783,0.2814977250340072,0.2876637554585153,0.2932788264999398,0.2988236728225757,0.3042564501971838,0.3089283920859696,0.313493228495207,0.3177967202889888,0.3211269097360129,0.3200016208768944,0.3182966388294568,0.3169533169533169,0.3163753369858249,0.3152376271539848,0.3134351285753786,0.311005924678749,0.3111078160010544,0.3115758054002127,0.3128829958788747,0.3133865664631282,0.3135458799270362,0.3142232683254876,0.3150586599071311,0.3149429721974391,0.3155858752189027,0.3178919676303223,0.3228949858088931,0.3265808539072941,0.3301524450603841,0.3332877274592967,0.3357757247531061,0.3402956904687008,0.3388580551965331,0.3388972243060765,0.3442314477243325,0.3453280919262171,0.3490792634107286,0.3500548245614035,0.3566806242862581,0.0,2.6070747359777293,55.80191533522,177.58113736283235,250.253536363078,fqhc8_100Compliance_implementation,99 -100000,95724,45051,426.7895198696252,5990,61.39526137645731,4743,48.9845806694246,1908,19.577117546278885,77.33641368994157,79.71072572047942,63.332022412709286,65.08891032587108,77.09405883370441,79.4700068840387,63.24063948045716,65.00079904413228,0.2423548562371564,240.71883644072045,0.0913829322521309,88.11128173880434,158.3406,111.33543176200624,165413.6893569011,116308.79587355966,397.62729,261.3479824390151,414854.9475575613,272488.03062869824,377.78048,183.811790259496,391227.0694914546,189386.3896424485,2740.88244,1263.3412735804952,2833511.3033304084,1289968.2353229024,1103.44222,490.9667197391678,1140002.110233588,500167.2723028367,1873.42586,800.7243984189059,1924495.236304375,807357.5387903984,0.38058,100000,0,719730,7518.804061677322,0,0.0,0,0.0,34419,358.9904308219464,0,0.0,34513,357.11002465421416,1577904,0,56644,0,0,0,0,0,66,0.6894822615018177,0,0.0,1,0.0104467009318457,0,0.0,0.0599,0.1573913500446686,0.3185308848080133,0.01908,0.336676217765043,0.663323782234957,24.43793786418065,4.380720918606566,0.3143580012650221,0.2331857474172464,0.2230655703141471,0.2293906810035842,10.809465028179572,5.484094687007637,20.44609774639802,12164.151727012191,54.02159240572239,13.29443820659628,16.869529137626408,11.879369751221976,11.978255310277714,0.552393000210837,0.7965641952983725,0.6827632461435278,0.5737240075614367,0.1047794117647058,0.7018633540372671,0.918987341772152,0.868421052631579,0.6833976833976834,0.1338582677165354,0.496671490593343,0.7285513361462729,0.6192619261926192,0.5381727158948686,0.0959232613908872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0043712410876378,0.0068328341540179,0.008903162858769,0.0110881661800758,0.0135864583545515,0.0157456225333727,0.0179497651623442,0.0199155531473321,0.0220297688512171,0.0243557414355126,0.0266832303238126,0.028773279310593,0.0308792023731048,0.0329886907710087,0.0351638810505752,0.0370585128964453,0.038975859242891,0.0409491046280802,0.0431032686819024,0.0580895098469185,0.0724748373056561,0.0858458214918674,0.0982465730384324,0.1106274439537506,0.1256777466575067,0.1375702321636807,0.1491124512087468,0.1603433183167154,0.1701113218261493,0.1826841317848647,0.194905905256327,0.205604225995087,0.2156725631808398,0.2248870618494377,0.2350878745313174,0.2445717597752909,0.2536310085885156,0.2615578259834216,0.2692246093303132,0.2757181665799664,0.2826853885332461,0.2899292221526391,0.2953413769989466,0.3019110598798762,0.3070021046930963,0.3118288978612232,0.315585389730094,0.319352417434517,0.3232984465942536,0.3221092329449794,0.3211696937959926,0.3204197046835996,0.3197169647508248,0.3187894486125997,0.3172363011597226,0.3164988503924522,0.3174376171220041,0.3185472834268509,0.3194216057767927,0.3197271262041306,0.3200790513833992,0.3204803648764567,0.3218947321448492,0.3224008265455681,0.3232888842587769,0.3240141933268471,0.3262586065314888,0.3297295393717425,0.3324289818065751,0.3370740008278526,0.3399030694668821,0.3423944476576055,0.3462372251471043,0.3470846036585366,0.3513808139534883,0.3515028811711571,0.3515785157851578,0.3485557083906465,0.3517320137038447,0.0,2.231851590227162,56.39435857991402,175.31649600365384,262.976234418119,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95599,45099,428.1111727110116,6064,61.9671753888639,4793,49.42520319250201,1916,19.519032625864288,77.26635035352784,79.70334178326823,63.26822878755484,65.07149077319939,77.02729497322414,79.47004226127282,63.17803383826466,64.98686827392578,0.2390553803036965,233.2995219954057,0.0901949492901792,84.62249927360688,158.44356,111.45219969307362,165737.44495235305,116582.80180239712,399.66794,261.98074878684724,417367.4097009383,273342.2083691746,381.29284,185.61893416237604,394409.062856306,190702.77141565323,2739.93952,1268.327989096201,2827380.453770437,1288071.2027282722,1135.71014,501.47691488956,1168230.2116130923,504799.39632167673,1876.67286,794.9605189435399,1914441.887467442,789532.0541770123,0.38041,100000,0,720198,7533.520225106957,0,0.0,0,0.0,34535,360.5163233925041,0,0.0,34933,361.1125639389533,1570773,0,56394,0,0,0,0,0,60,0.6171612673772738,0,0.0,0,0.0,0,0.0,0.06064,0.1594069556531111,0.3159630606860158,0.01916,0.3285601888276947,0.6714398111723052,24.53571911131457,4.3313803116728415,0.3198414354266639,0.2376382224076778,0.2182349259336532,0.224285416232005,11.253924889840446,5.85495544235557,20.57571482082015,12150.668034398584,54.53710587033178,13.551781351037294,17.43325936891302,11.681838953039549,11.870226197341903,0.5578969330273316,0.7787532923617209,0.6999347684279191,0.5621414913957935,0.1172093023255814,0.7134099616858237,0.924170616113744,0.8442211055276382,0.7068273092369478,0.1228813559322034,0.4997133027522936,0.6931659693165969,0.6493392070484582,0.5169385194479298,0.1156138259833134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022396530057967,0.0046056302307887,0.0070785136136979,0.0090694647795672,0.0114818509395167,0.0137998511980594,0.0162577563683866,0.0186178637483011,0.0208213964148317,0.0227379854493288,0.0248573422554292,0.0266430935591965,0.0286484872816363,0.0306838919877511,0.0326908775409023,0.0347253838831174,0.0367951907131011,0.0388230528753777,0.0407052382885273,0.0426570436269959,0.0574182688789218,0.0709906624327978,0.0843339321168573,0.0970905490245649,0.1098623683626799,0.1250675339258662,0.136912480602028,0.1485673444133899,0.1596998469262141,0.1699315502734765,0.1823683614356451,0.1941282334829462,0.2052348949426514,0.2150041635622562,0.2249154018275409,0.234728400128673,0.2435681170753505,0.2521620647718571,0.2605929073823673,0.2683290512020554,0.275554525974402,0.2823512877270651,0.289154771071492,0.2959263212174267,0.3015077821011673,0.3065451941831469,0.3110175016298079,0.3158156308539243,0.3199787363698834,0.3242472266244057,0.3230391958715658,0.3218268939498251,0.3210650954300696,0.3197576914179967,0.3192384918569197,0.3178385995006969,0.3166698346321992,0.3160689043032315,0.3160199073044757,0.3166815822444961,0.3175155046043976,0.3186540825633501,0.3200411790659075,0.3222043082986251,0.3238852735598939,0.3257326437862404,0.3282285714285714,0.3300306080590704,0.3319017109061465,0.3339975291914079,0.3383856829802776,0.3425043903996594,0.3440329218106996,0.3468335229427379,0.3474939444754984,0.3494484862708284,0.3490737928940176,0.3534967845659164,0.3567921440261866,0.3605877920120572,0.0,2.7659376519800363,56.65207928930189,178.6402750669427,261.9554929029357,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95714,45277,429.4774014250789,5840,59.88674593058487,4555,47.08820026328437,1766,18.147815366613035,77.34534288058313,79.71484856180453,63.32656324425341,65.07484339250018,77.12758715289532,79.49744573382618,63.24474315709661,64.99553068932948,0.2177557276878161,217.4028279783471,0.0818200871567995,79.31270317070016,159.19728,112.0331762867419,166325.5532106066,117049.53570098216,398.03656,262.3795675995167,415378.7220260359,273648.4588933723,381.04461,185.65815699686289,394865.45332971145,191504.0751900052,2615.40616,1206.1089039848684,2705573.646488497,1233287.2064319826,1089.93592,487.3095702544436,1124203.220009612,494648.7015853412,1735.75306,733.038736177634,1784669.3691622962,739343.0953935077,0.3807,100000,0,723624,7560.252418663937,0,0.0,0,0.0,34318,358.02494932820696,0,0.0,34745,359.89510416449,1568360,0,56274,0,0,0,0,0,74,0.7731366362287648,0,0.0,0,0.0,0,0.0,0.0584,0.1534016285789335,0.3023972602739726,0.01766,0.3389525368248772,0.6610474631751228,24.52594851852285,4.265808792625399,0.3145993413830955,0.2428100987925356,0.2206366630076838,0.2219538968166849,10.95822399803995,5.600294238654705,18.83703100379811,12114.161743255923,51.718517606798805,13.24819476646693,16.158703962218585,11.170237892161554,11.141380985951743,0.554774972557629,0.7784810126582279,0.6845778087927425,0.5562189054726369,0.1246290801186943,0.7121831561733443,0.9285714285714286,0.8726287262872628,0.6486486486486487,0.1238938053097345,0.4969987995198079,0.6914285714285714,0.6193609022556391,0.5300127713920817,0.1248407643312101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0047838161068655,0.0071222758816606,0.0093946780418444,0.0116841912587199,0.0140196906912104,0.0160443615383831,0.0182211651337749,0.0203422403042136,0.0225609319179863,0.024542267238021,0.0264633394947627,0.0288206373043138,0.0309164709275971,0.0329514963880289,0.0349596857556336,0.036816868443128,0.038802407638024,0.0408933528806263,0.0426744755572692,0.0572520678419249,0.0713149411813957,0.0840608604407135,0.0973348905232368,0.1087814452135742,0.12410705781503,0.1362598864058601,0.147105501411301,0.1580595515465019,0.1682380324141112,0.1808885488615669,0.1926946276382617,0.2041615880201985,0.2149222684475585,0.2243428080570025,0.2347496425047943,0.2440959821428571,0.253788432764459,0.2624524768768087,0.2698474506390581,0.2771903847488605,0.2831236554110934,0.2890140578406778,0.2941881222519079,0.3001518187890933,0.3051327869862592,0.3090913642679217,0.3138832742204085,0.3187624698779571,0.3230314076656893,0.3221184304527747,0.3209381757082455,0.3208655026888171,0.3195722637031892,0.3186125035327016,0.3164981617647059,0.3143751878153321,0.3144645842210495,0.3159955066889063,0.3162642563564222,0.3165730703931043,0.3171370094855748,0.3190840969337702,0.32075640195575,0.3206866705135603,0.3219712739383847,0.3219671201814059,0.326766983016983,0.3291139240506329,0.3314841045011016,0.3323974277692238,0.3340721975934135,0.3363329583802025,0.3386119108955902,0.3381597384399813,0.3386187455954897,0.340142230292026,0.3406902086677367,0.3494271685761047,0.3488372093023256,0.0,1.946948803009404,53.73596849583891,172.9795404613688,246.5657653426623,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95657,44985,426.7539228702552,5818,59.41018430433738,4546,46.86536270215458,1787,18.304985521185067,77.2498286400838,79.64879441400028,63.26585613190741,65.03915466609308,77.02075760449137,79.41994259284995,63.18105988111283,64.95658766723311,0.2290710355924403,228.8518211503288,0.0847962507945823,82.5669988599742,157.52352,110.8384824866545,164675.3713789895,115870.7491209786,395.69342,261.397946367884,412997.3342254096,272604.6043341146,378.75785,184.35644502700876,391538.7164556697,189445.2409686494,2609.74464,1202.2436295276505,2693528.001087218,1222440.3713112597,1101.25254,490.21262680914896,1134631.1613368597,495976.4943562312,1756.71454,738.6822337814224,1802243.6831596224,743319.7364494185,0.37952,100000,0,716016,7485.244153590433,0,0.0,0,0.0,34214,356.994260744117,0,0.0,34636,357.6633178962334,1570871,0,56388,0,0,0,0,0,61,0.6272410801091399,0,0.0,0,0.0,0,0.0,0.05818,0.1532989038785834,0.3071502234444826,0.01787,0.334155161078238,0.665844838921762,24.49875387222192,4.357902079370934,0.3286405631324241,0.2322921249450066,0.2135943686757589,0.2254729432468104,11.240121535726985,5.85780643772882,19.000572343622327,12089.929221575563,51.755162911115534,12.702786735943947,16.92954224456177,10.871953385067744,11.250880545542064,0.5657721073471184,0.7926136363636364,0.6934404283801874,0.5746652935118435,0.1375609756097561,0.7520661157024794,0.9316455696202532,0.896640826873385,0.7216981132075472,0.1944444444444444,0.4982014388489209,0.7095310136157338,0.6224028906955736,0.5335968379446641,0.1223733003708281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400461931196,0.0045230054661433,0.0069528323910638,0.0092968908758382,0.011667056585733,0.0139429246532092,0.0160908757188889,0.0183897483024455,0.0206792869634584,0.022695616550594,0.0249251220612973,0.0267696637869931,0.0291405992756009,0.0309208220815897,0.0328109190774122,0.0347916020270969,0.0368263442030111,0.0388073337347646,0.0408023137263061,0.0425702727500208,0.0575679374797571,0.0714151081698046,0.0845034947421447,0.0971580686230153,0.1089161152794926,0.1252791212047453,0.136487203992779,0.1474471690271428,0.1585326714878685,0.1682746024924795,0.1809245311522109,0.1925713046307341,0.2038014438071143,0.214239489300091,0.2233419057184799,0.2335281438190262,0.2431379572829445,0.2516781173497591,0.2597056714583262,0.2671109323835238,0.2743697820508354,0.2812933079651422,0.2878910335647047,0.2934199446649825,0.2991273826354019,0.304433838621133,0.3093319273932364,0.3139263137730668,0.3179792941298728,0.3227954512358182,0.3206382231349131,0.3195860641600552,0.3194880054251081,0.3182747372236317,0.3175606193832993,0.3156538148790254,0.3128655434214071,0.3140615490895932,0.3144397843019772,0.3152756131205102,0.3175375939849624,0.318830525272547,0.3199874095058231,0.3213917178877473,0.3215043906204767,0.3227823368503321,0.3233437588854137,0.3265056844874565,0.3294191654434892,0.3310511318663923,0.334872770080594,0.338112053971433,0.3390318742563717,0.3439490445859872,0.3449757190885319,0.3510175273497236,0.3538274235276213,0.3534675615212528,0.353344298245614,0.3474320241691843,0.0,2.5154389754445114,52.68479767675512,174.69605308179172,246.6402608556288,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95747,45608,433.0997315842794,6151,63.03069547870952,4792,49.484579151305,1887,19.353086780786864,77.32698317968122,79.68674739259693,63.31555014592704,65.06122821940872,77.08580726376056,79.44512492703902,63.22647684739052,64.97423515733851,0.2411759159206639,241.62246555791,0.089073298536519,86.9930620702064,158.08452,111.23378826177424,165106.49942034736,116174.69817516398,399.13276,262.2906019753768,416315.7174637325,273395.14760292944,384.33652,186.9417719039338,397447.52315999457,192185.37818106168,2759.01952,1263.124046183954,2851216.769193813,1288874.8954891053,1173.02415,521.6930576760276,1212061.68339478,531799.0199964775,1854.27588,778.8680877687858,1904137.153122291,787077.4007610289,0.38399,100000,0,718566,7504.840882743062,0,0.0,0,0.0,34541,360.1888309816496,0,0.0,35108,362.6849927412869,1572054,0,56465,0,0,0,0,0,56,0.5848747219234023,0,0.0,0,0.0,0,0.0,0.06151,0.1601864631891455,0.3067793854657779,0.01887,0.3373531230674088,0.6626468769325912,24.49607561869388,4.320726345558761,0.3236644407345576,0.2257929883138564,0.2230801335559265,0.2274624373956594,11.006416224185765,5.719907351123438,20.20516025387045,12265.123071307062,54.33756675052933,12.941299845057417,17.62564862190551,11.740254449028903,12.030363834537493,0.5546744574290484,0.7763401109057301,0.6982591876208898,0.5594013096351731,0.1256880733944954,0.7148562300319489,0.9037433155080212,0.875609756097561,0.7027027027027027,0.1707317073170731,0.4980225988700565,0.7090395480225988,0.6345311130587205,0.5218417945690673,0.1125592417061611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605693733853,0.00439050110523,0.0065667945516919,0.0089503413524057,0.0110958555809814,0.0132885290972964,0.0154280703185544,0.0174142049282404,0.0197150566207432,0.0216476801670402,0.0237570589621916,0.0261042733814426,0.0282366243511332,0.0305301852404831,0.0325242668372136,0.0344286009506096,0.0365036803909186,0.0384515647204041,0.040399526056499,0.0422652595609913,0.0578151751785192,0.0718829117234741,0.0859700991801388,0.0989309028982307,0.1110361547380626,0.126798684753074,0.1391437146705412,0.1502166483908401,0.161000374071501,0.1704157633776213,0.1828057809822496,0.1951594563863771,0.2074139356748052,0.2176762096465414,0.2276940011007154,0.2376091678858004,0.2477799001373948,0.2569964525029563,0.2649521191398484,0.2727731169486086,0.2804748118123914,0.2863300420487953,0.2926953574095364,0.2987661433578184,0.304399654547445,0.3099832214765101,0.3153448967315019,0.3202028180497872,0.3238603951667271,0.3281087005321467,0.3267192025324981,0.3252567526638949,0.3240295878830574,0.3227182668807034,0.3218635221341581,0.3198594833404921,0.3188807863031072,0.3194932798790706,0.3205231216343277,0.3209438370579108,0.3216867018687039,0.320947882285511,0.3224051749485445,0.3229588526167409,0.3233249127872007,0.3243066969293783,0.3254807007548782,0.3305992897771911,0.3339292599992989,0.3371089108910891,0.3396740364098606,0.3406157426999577,0.3459778042510502,0.3490187163749337,0.3511285941743935,0.352760736196319,0.3554097359987792,0.3558603994351422,0.3631331303625795,0.3722910216718266,0.0,2.2408843960942657,54.99473057592608,184.74826317514731,260.4024995007116,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95766,45186,427.89716600881314,5940,60.87755570870664,4677,48.32612827099388,1844,18.93156234989453,77.39144353273707,79.73248426847537,63.36142006586866,65.08822787484374,77.16194671281818,79.50352614457464,63.27688171037461,65.00649937209046,0.2294968199188929,228.958123900739,0.0845383554940468,81.72850275327903,158.20486,111.29240179370746,165199.40271077416,116212.85403348524,400.13016,263.0208762637151,417308.3766681286,274137.22643079504,383.49734,186.14537796489412,397691.3205104108,192145.97644644385,2677.0388,1226.2050365900286,2767521.375018274,1252543.4460978096,1128.58285,494.7160054121072,1166905.6345675918,505074.4652132773,1811.40086,757.9971938019991,1861235.6368648584,764168.5528751424,0.3811,100000,0,719113,7509.063759580644,0,0.0,0,0.0,34444,359.135810204039,0,0.0,35139,364.17935384165565,1576459,0,56586,0,0,0,0,0,70,0.7309483532777812,0,0.0,2,0.0208842386650794,0,0.0,0.0594,0.1558646024665442,0.3104377104377104,0.01844,0.330814981514226,0.6691850184857739,24.710580080454243,4.291032781813511,0.3155869146889031,0.2398973701090442,0.2206542655548428,0.2238614496472097,10.805559260396157,5.569407319914315,19.600708721059053,12101.19373031347,53.12142223924979,13.486289197865233,16.661231585668915,11.41454660105002,11.559354854665614,0.5655334616206971,0.7985739750445633,0.6849593495934959,0.5920542635658915,0.1212989493791786,0.738673139158576,0.9407582938388626,0.8657534246575342,0.7379912663755459,0.1409090909090909,0.5033420517291485,0.7128571428571429,0.6255625562556255,0.5504358655043586,0.1160822249093107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019743236675846,0.0043880539538088,0.0070006696292688,0.0090898934603548,0.0111437606125001,0.0135575278886084,0.0156409211330752,0.0176607423429306,0.0197570717853895,0.0219059507244004,0.0239344262295081,0.026192405946384,0.0282572955199342,0.0305263374570305,0.0326674088734949,0.0345938910638473,0.0369266434840205,0.0389442024476249,0.0410897675772317,0.0431159307061679,0.0572731827481107,0.07122527989955,0.0845869788716141,0.0966452834157114,0.1087364514360423,0.124846677663579,0.1370095440084835,0.1479085996340581,0.1589889800102511,0.1686300151136741,0.1817183698951583,0.1937126914092914,0.2050292867932319,0.2151634643742695,0.2243971600026377,0.2346127037164068,0.2440117257598894,0.2535632054809906,0.2620172962925182,0.2692285691404775,0.2766690164445934,0.2829783007513525,0.2898542156851153,0.2949692840121187,0.3000946096744457,0.3051245770532144,0.3103086342621517,0.3142421159715157,0.3192196737429011,0.3242687747035573,0.3232708798150587,0.3215369615072989,0.3203666474532904,0.3189732207200715,0.3176712897107634,0.3165649786455156,0.3140905290062004,0.3141183975921351,0.3141047469863107,0.3144404267825653,0.3156534925954355,0.3158175460777148,0.3161379541549679,0.3168520715356895,0.3178500012046161,0.3181284106634638,0.3189556998064002,0.3218622208241585,0.3236721772775237,0.3243694141012909,0.326248574686431,0.3292260094948525,0.3295820952140102,0.3310213414634146,0.3378618945001405,0.3434307854878478,0.349263600841599,0.3458691738347669,0.3465185586561907,0.3434535104364326,0.0,1.9868446310821444,54.32584838526215,180.05295135814606,253.83215385683312,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95728,45106,428.077469496908,5862,60.17048303526659,4621,47.69764332274779,1782,18.27051646331272,77.37264048070351,79.7328962317907,63.34029949113111,65.0823297428907,77.14909443040987,79.51038911812522,63.25763375269214,65.00228311782456,0.2235460502936348,222.50711366548612,0.082665738438969,80.0466250661458,157.45312,110.76977981762064,164479.46264415846,115712.83117746178,396.85712,261.19029041502336,413973.5187197058,272253.1932530328,376.61138,183.13898058225703,389638.8517466154,188360.7283354536,2689.86996,1224.6116810672324,2778810.8808290157,1248236.3181798763,1126.39568,496.27493083522,1162971.366789236,504940.34829443856,1758.00912,735.6299269916628,1804545.545712853,742681.4533849536,0.38059,100000,0,715696,7476.339211098112,0,0.0,0,0.0,34298,357.66964733411334,0,0.0,34383,355.43414674912253,1578555,0,56657,0,0,0,0,0,65,0.6685609226140733,0,0.0,0,0.0,0,0.0,0.05862,0.1540240153445965,0.3039918116683726,0.01782,0.3356769130150425,0.6643230869849575,24.587469557874197,4.341616119882088,0.3191949794416793,0.2315516122051504,0.2151049556373079,0.2341484527158623,10.856408143119276,5.499976859669673,18.949203545957115,12092.811170213448,52.11658380477542,12.795787392248403,16.595418398795868,11.001414487295628,11.723963526435524,0.5555074659164683,0.7981308411214953,0.7016949152542373,0.5573440643863179,0.1146025878003696,0.7260162601626017,0.9282051282051282,0.8571428571428571,0.7041666666666667,0.1711711711711711,0.4936596874078442,0.7235294117647059,0.6481312670920693,0.5106100795755968,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392405063291,0.0047733422516797,0.0071822027450622,0.0094450763730906,0.0114591912474961,0.0136714375878005,0.0158301394438555,0.0175968644102396,0.0197591691540254,0.0220293178281877,0.0239508679113735,0.0259137577002053,0.0278146240141489,0.0300106077302546,0.031930588368806,0.0339717023057763,0.0358115313337957,0.037889081347951,0.0399110316585943,0.0422455994167274,0.0568851021175291,0.0709831331352278,0.0842446292082997,0.0968375915669108,0.108554261318716,0.1236137980611673,0.1358858779233176,0.147299195505044,0.1581965550014416,0.1689202955274135,0.1819738329833629,0.1943855473820857,0.204791109371262,0.2146622050171686,0.2241292054481043,0.2351689986373757,0.2444280755795136,0.2527581393254379,0.2605742583253828,0.2691271397287288,0.2762955332029215,0.2829139847864248,0.2899319953557804,0.294936405087593,0.3012727781087028,0.3064012923433588,0.3110165247871808,0.315551824576131,0.3200367575683056,0.32346076246489,0.3221866508837535,0.3211079799298921,0.319286689467832,0.3177275878003697,0.3164570121634265,0.3141659271046914,0.3123389862654296,0.3129355436404479,0.3141659995571528,0.3147713533888059,0.3142787869745235,0.3144188973900045,0.3171215569987679,0.3181231358233539,0.3184984798065643,0.3206613283578222,0.3213416360033965,0.324663984781863,0.3273169883498522,0.3316200415898301,0.3327174402884182,0.3337899783971758,0.3385579937304075,0.3395897979262847,0.3410823879486702,0.3422415822933836,0.3449429657794677,0.350422195416164,0.3552091878589007,0.3583902809415338,0.0,2.188172754397959,53.875763283053736,169.69852076027075,255.10461603505493,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95741,45008,426.8808556417836,6133,62.88841771028086,4827,49.81147052986704,1923,19.68853469255596,77.33281654085012,79.69967294794753,63.319784280511655,65.07138061078125,77.09659031765555,79.462773449735,63.23330665523937,64.98675467105669,0.2362262231945635,236.8994982125372,0.0864776252722876,84.62593972456034,158.6662,111.60304919171138,165724.40229368818,116567.66609050604,401.51159,263.6074181113252,418769.1271242206,274732.1300385174,383.9917,186.0430550707908,396908.534483659,191131.1507449837,2779.33068,1266.0979224480795,2869135.0205241223,1288743.4297575871,1186.80202,515.9956897842055,1223497.4044557714,522922.800974394,1882.17546,781.2068718481175,1928980.833707607,785254.2926607094,0.38044,100000,0,721210,7532.927376985826,0,0.0,0,0.0,34656,361.3603367418347,0,0.0,35083,362.31081772699264,1572638,0,56448,0,0,0,0,0,80,0.8355876792596694,0,0.0,0,0.0,0,0.0,0.06133,0.1612080748606876,0.3135496494374694,0.01923,0.3285405071119356,0.6714594928880643,24.456515874063903,4.380746063639741,0.3188315724052206,0.2345141910089082,0.2233271182929355,0.2233271182929355,11.23842548607054,5.789202550484724,20.376598181722304,12174.487267485069,54.58794520076878,13.592264973415292,17.34390794659595,11.918384855685623,11.73338742507191,0.5628754920240315,0.7782685512367491,0.6952566601689408,0.5714285714285714,0.1391465677179963,0.7282010997643362,0.8990147783251231,0.8765432098765432,0.6904761904761905,0.1571428571428571,0.5036578503095104,0.7107438016528925,0.6305114638447972,0.5351089588377724,0.1347926267281106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582952507371,0.0044830768918685,0.0067722611432632,0.0089753102733251,0.0112827086639807,0.0133739406779661,0.0155620595763774,0.0177131189382337,0.0199177930921658,0.0222913957465108,0.0244725132768767,0.026481430140981,0.0285737787511438,0.0306999927910114,0.0327163550823325,0.034522320644141,0.0365878917172386,0.038686646465485,0.0405718741876787,0.042450127610813,0.0570611324536495,0.0712126125937627,0.0839939599848999,0.0965612220224766,0.1089245623096139,0.1247383001670649,0.137365317722915,0.1486578538433701,0.1597099096404844,0.1692672307477828,0.1819424855460212,0.1938746808602709,0.2060000434943348,0.2167320747291669,0.2265688581923762,0.2372975187395506,0.247081798906372,0.2560691494749637,0.2645456402805838,0.2722067630858726,0.279034236903632,0.2858397031453019,0.2920427356501551,0.2978396911789387,0.3022639720983363,0.3075262716463565,0.3117932148626817,0.3166656061088132,0.3209028713589717,0.3249412199825641,0.3236062835125158,0.322319056076439,0.3211768354573136,0.3194257709155571,0.3179220856522127,0.317157260844915,0.3142558515187026,0.3148746902131989,0.3153923627114594,0.3158439149664717,0.316077314953551,0.3160007911392405,0.317151832460733,0.3184773138529589,0.3190885929913954,0.3218624537254289,0.3236661248467219,0.326525474399723,0.3308154446123036,0.3337707786526684,0.3363868380275271,0.3389343826438371,0.342668344870988,0.3442224416926233,0.3483587393621996,0.3530177514792899,0.3566732915456352,0.3583686654552796,0.3533461856237951,0.3534383403764887,0.0,2.34125161597185,55.74446212064723,179.48400975572187,267.5771371153211,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95784,45139,427.2947465129875,5978,61.30460202121439,4645,47.962081349703496,1865,19.147247974609535,77.34910350822409,79.6772860193458,63.34642956891118,65.06641971395695,77.117455909127,79.44784506020227,63.259951618280105,64.98339616027931,0.2316475990970872,229.44095914353116,0.0864779506310711,83.02355367763425,159.05318,111.8913663925634,166053.78768896684,116816.11374818694,396.9272,260.4667637974941,413837.5511567694,271371.6600064697,379.25887,183.99772941843145,392464.39906456193,189469.199219048,2661.55428,1220.8850068656689,2749397.6864612047,1245399.4093958696,1104.46459,485.5979653030978,1139492.7336507142,493502.3824138931,1825.54844,767.786248914707,1875362.67017456,773893.4567230169,0.3807,100000,0,722969,7547.899440407583,0,0.0,0,0.0,34283,357.34569447924497,0,0.0,34563,357.4292157354046,1573413,0,56511,0,0,0,0,0,74,0.7725716194771569,0,0.0,0,0.0,0,0.0,0.05978,0.1570265300761754,0.31197724991636,0.01865,0.3356241010068723,0.6643758989931277,24.42595630086528,4.352793568812332,0.3145317545748116,0.2378902045209903,0.2260495156081808,0.2215285252960172,11.157383087247943,5.727891905296782,19.945193455360947,12044.56673420772,52.88284586462984,13.181810120939158,16.588360345680844,11.69344258354957,11.419232814460266,0.5646932185145318,0.779185520361991,0.7118412046543463,0.5619047619047619,0.1282798833819242,0.720125786163522,0.9022556390977444,0.8830845771144279,0.6929460580912863,0.1478260869565217,0.5060776756596501,0.7096317280453258,0.6468366383380547,0.522867737948084,0.1226533166458072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.0045003496893339,0.006786986030374,0.008877512671278,0.0111542685158823,0.0132537969787043,0.0153182902219776,0.0176965862121753,0.0199245930785028,0.0221708392588575,0.0243415188861911,0.0264851053349888,0.0284260829351009,0.0307131755817903,0.0329614813592873,0.0349418496560556,0.0368473334575029,0.0388013272501036,0.040981306954561,0.0430381855859045,0.0571986141258974,0.0708174706103836,0.084339875859755,0.0966443517282692,0.1092353734614736,0.1241968890016062,0.1365539315958495,0.1475144877452283,0.1578683398960634,0.1675433615804077,0.1795738269479121,0.1910580094069308,0.2019177456703956,0.2126026438654231,0.2219043951812531,0.2324296188008062,0.2416890783497561,0.2504216041193533,0.2590613620120477,0.2665346489320299,0.2745723901051243,0.281478102189781,0.2884360503644798,0.2929921042857314,0.2984797338319936,0.3037763996597171,0.3080486247605694,0.312736299408058,0.3168543986312201,0.3210321864594894,0.320905782450465,0.3197547871607659,0.3181357078449053,0.3161811455985203,0.3153237420753344,0.3133538329738247,0.3118002403694098,0.3129028554558725,0.3133742749914704,0.3144305062365054,0.3146096849038245,0.3161899867570613,0.3168924152657693,0.3179885417599141,0.319854447309444,0.3209021534601714,0.3231965245226935,0.3272888102609464,0.3302671459787129,0.3339714445242083,0.3374748766672757,0.3403383698659289,0.3429605179636917,0.3473337923647769,0.3502605400284225,0.3549045503661904,0.3563343153977361,0.3582516339869281,0.3637368711995578,0.3732809430255402,0.0,1.9743956958823288,56.16621435639101,172.87233501015,252.3884428328608,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95668,45164,428.1682485261529,5996,61.48346364510599,4715,48.72057532299201,1854,19.024125099301752,77.31532774038504,79.70771042064902,63.31028192710126,65.07635761495574,77.0852727706859,79.47807122771562,63.22429117792413,64.99250808352832,0.2300549696991396,229.63919293340496,0.0859907491771281,83.84953142741836,157.82668,111.0711565786857,164973.09445164527,116100.42625603714,399.59633,262.8712437802101,417110.9461889033,274195.56194594863,383.91973,186.69717566533856,397761.8221348832,192341.53982255692,2721.14404,1254.4778104381344,2813033.9089350672,1280027.71254561,1132.82885,505.5485599796284,1167115.8799180498,511651.4836305857,1820.54432,767.7402275986524,1869990.550654346,775627.0038440699,0.37917,100000,0,717394,7498.77702052933,0,0.0,0,0.0,34533,360.371284023916,0,0.0,34966,361.9183007902329,1574017,0,56478,0,0,0,0,0,73,0.7630555671697955,0,0.0,1,0.0104528159886273,0,0.0,0.05996,0.1581348735395732,0.3092061374249499,0.01854,0.3263157894736842,0.6736842105263158,24.362121154082377,4.345718321870092,0.3278897136797455,0.2362672322375397,0.2139978791092258,0.2218451749734888,11.073312253330146,5.722609812394236,19.74526636434385,12108.331872191244,53.31926690594969,13.468990601986803,17.237884936227072,11.086324915000471,11.52606645273534,0.5556733828207847,0.7854578096947935,0.6694695989650712,0.5659068384539148,0.132887189292543,0.7258687258687259,0.8909512761020881,0.8836633663366337,0.71875,0.1610169491525423,0.4912280701754385,0.718887262079063,0.5936952714535902,0.5222929936305732,0.1246913580246913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0046837932642592,0.0070023747183827,0.0095300022351817,0.011566162109375,0.0135879806468041,0.0159418220390844,0.0181400337061437,0.0203405430280717,0.022518278821144,0.0247266834861444,0.0268307464740988,0.0290719804129332,0.0311282843894899,0.0331437536771916,0.0351015089305105,0.0368440138838522,0.0390447426596506,0.0408783116113127,0.0429906931663036,0.0574198671068577,0.0716260077478798,0.0846443677123455,0.0967623136252196,0.1088833076549671,0.1241386610214342,0.1358390401868662,0.1470657151986367,0.1576146200705354,0.1676255286263229,0.1808109331551378,0.1932605682605682,0.2044175438978456,0.2142630432641268,0.224053044905332,0.2346181576174366,0.2438114387846291,0.2534694474771236,0.2626068788536001,0.270042871225842,0.2759986564899642,0.2825486385877835,0.2887254727817447,0.2936651746606986,0.2993802406124681,0.3048350510380196,0.3102593320727783,0.3148096304591265,0.318932705005049,0.32361793125297,0.3221240606566649,0.3201619121048573,0.3195212953185498,0.3184860707521938,0.317355838521314,0.3155929038281979,0.3140073698027866,0.3142810350474943,0.3151252622064566,0.3162246934702024,0.3172412505135771,0.3189748644652538,0.3194935649262321,0.3199240562876926,0.3211101766190076,0.3214034722402977,0.3226404863152487,0.3242646130539073,0.3260264317180616,0.329423966810276,0.3335618003198538,0.3362587096431041,0.3409450313112784,0.3409143296196696,0.3426699582225598,0.3413438546150167,0.3408467864757843,0.3455382152861144,0.3461327482172243,0.3546423135464231,0.0,2.0644661795572445,56.84130502598517,165.94060822003033,264.95656056024905,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95626,45229,427.9066362704704,5990,61.36406416664924,4732,48.898835044862274,1804,18.457323322109048,77.3146043072854,79.73380306282334,63.296484254502126,65.0830036591465,77.08993867198406,79.51168200635675,63.211894966693286,65.00200025244955,0.2246656353013492,222.12105646659097,0.0845892878088392,81.00340669695072,157.84362,110.97494745821348,165063.49737519084,116051.01903061249,398.05577,261.7475791258666,415703.0514713572,273160.02878491895,380.12929,184.9969978270412,394244.3059418986,190901.91603947515,2697.4962,1241.771936729879,2790952.837094514,1268642.7297281905,1119.01655,495.3484943157094,1158698.722104867,506503.6541481493,1768.08448,745.1980032594338,1812346.0146821996,748350.0128182354,0.38194,100000,0,717471,7502.886244326856,0,0.0,0,0.0,34421,359.3687909146048,0,0.0,34797,360.5086482755736,1574783,0,56493,0,0,0,0,0,61,0.6379018258632589,0,0.0,0,0.0,0,0.0,0.0599,0.1568309158506571,0.3011686143572621,0.01804,0.3449210652208579,0.655078934779142,24.749162520082518,4.349110033458084,0.3150887573964497,0.239222316145393,0.2311918850380389,0.2144970414201183,11.436488392628313,6.056053837989633,19.196216615174134,12226.455523204064,53.59746948895006,13.629487587450312,16.87871819406229,12.1040883868675,10.985175320569969,0.5720625528317836,0.7932862190812721,0.7189805499664654,0.5639853747714808,0.1182266009852216,0.7420604182804028,0.9270588235294116,0.8787878787878788,0.7261904761904762,0.1513761467889908,0.5082824760244115,0.7128712871287128,0.6611872146118721,0.5154394299287411,0.1091593475533249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0046445122755067,0.0069232955699029,0.0094802621551592,0.011688232421875,0.0139132206151965,0.0162789037239522,0.0184390642557973,0.020752574894396,0.0231641253033763,0.0252923076923076,0.0272727272727272,0.029350945958458,0.0313952170463561,0.0335679927331282,0.0357131778938117,0.0376218747733465,0.0399705152562784,0.0419098750403179,0.0441480152687678,0.0594844886696212,0.072773174385351,0.0859315110210339,0.0985504805414907,0.110790926459567,0.1261647606946209,0.1377706018567695,0.147943687188942,0.1595365704932764,0.1705126552361308,0.1828431478324666,0.195376010752455,0.2056660310542086,0.2156394469884533,0.2253072471755304,0.2356473003717884,0.2451693655636392,0.2539095948442922,0.262140665833428,0.2699255622971314,0.2783605418548107,0.2854886452714956,0.2921470678756599,0.2972930852594226,0.3027510683760683,0.308005026239929,0.3119559779889945,0.3167435770311328,0.3220093403536915,0.3259338398227287,0.3239521925220059,0.3225349595060982,0.3216977278169857,0.3202394205329131,0.319083742376915,0.3173861058311362,0.3166069673820014,0.3172999391136928,0.3180174467428747,0.3181850686498856,0.3201878285596692,0.3224288947938195,0.3233540424467331,0.3239860124284473,0.3250143430866322,0.3265886979921341,0.327985285795133,0.3320456103183999,0.3359668662118892,0.3375221587551704,0.3410545290671473,0.3431790659716737,0.3463304194704735,0.350340651021953,0.3554205607476635,0.3548578903555714,0.3569002778635381,0.3600731112916328,0.3576881134133042,0.3576107899807322,0.0,2.318799196205147,56.54561642146685,174.19851910413507,257.39592837526953,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95634,45149,429.2615596963423,6046,61.89221406612711,4753,48.99930986887509,1921,19.64782399565008,77.29129418892526,79.69085431204421,63.29829466637945,65.06968612735855,77.05145082904704,79.45368626363091,63.20968875586931,64.9846777520637,0.2398433598782219,237.1680484132952,0.0886059105101395,85.00837529484784,158.6937,111.67487411489908,165938.34828617438,116772.96161919308,398.33636,261.2853534849285,415821.1096471966,272513.2834399153,377.88139,183.79161852448777,390294.9474036431,188516.6174701361,2744.52584,1260.4702873801582,2831926.7624485013,1280119.2958363737,1105.74069,487.2202122652015,1136797.2687537903,490042.1281655195,1885.6898,792.2492329461113,1931332.6432022084,794737.6749592765,0.38185,100000,0,721335,7542.652194826108,0,0.0,0,0.0,34403,358.9936633414894,0,0.0,34505,355.9508124725516,1570928,0,56341,0,0,0,0,0,81,0.846979107848673,0,0.0,0,0.0,0,0.0,0.06046,0.158334424512243,0.317730731061859,0.01921,0.3322804801010739,0.6677195198989261,24.26846768291635,4.324478427872366,0.3256890385019987,0.229118451504313,0.2158636650536503,0.2293288449400378,10.95784441185143,5.640176045611485,20.46482121110574,12161.518372788589,54.07538863676707,13.095045994052686,17.469080242891966,11.490636102643624,12.020626297178769,0.5543867031348622,0.8025711662075299,0.6802325581395349,0.5799220272904484,0.1036697247706422,0.7221337579617835,0.9114583333333334,0.883495145631068,0.7330508474576272,0.0892857142857142,0.4941378324277952,0.7432624113475177,0.6065140845070423,0.5341772151898734,0.1073903002309468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271638827831,0.0045320896279022,0.0064654953665641,0.0086881414490397,0.0111304418602285,0.0133116056424097,0.0156310541020046,0.0175220046153531,0.019865450678881,0.0220957139639178,0.024099597998195,0.0262617340755499,0.0283007221776433,0.0302849193673038,0.0321784733549439,0.0339249513880269,0.0359408033826638,0.0377007818421571,0.039725314743523,0.0418256500072976,0.0567747194181453,0.0700205295793531,0.08348295376991,0.0959824012967465,0.1086449461208033,0.1240063929550482,0.1363298583834051,0.1485300383468257,0.1597032158741019,0.1703365720113801,0.1831326080627945,0.1948132106118029,0.2064502786485545,0.215881844159541,0.2254025636221357,0.2354846222951765,0.2452990402556339,0.2542525526573529,0.2631357856494096,0.2709281138626909,0.2780639709202042,0.2840661783633257,0.2906240007579436,0.2962634199004378,0.3022622233033325,0.3079590753699384,0.3121616202125526,0.3163782778216661,0.3206602782712431,0.3260106144218836,0.3256286957341631,0.3245417108543253,0.3232589625701633,0.3215339659761602,0.3209683659197095,0.3187589234997006,0.316043272738809,0.3158960679707567,0.3154277291191745,0.3166436773372982,0.3175453434827553,0.3181962464785938,0.3191337258200168,0.320478037624162,0.3205686382988959,0.3215663781416206,0.3229829545454545,0.3265728996609318,0.3293873823240129,0.3335984727966911,0.3375433157030822,0.3394013374376393,0.3415127751075132,0.3446236559139785,0.347375427919361,0.3495122244971697,0.3501326259946949,0.359086188992731,0.3560606060606061,0.3585488228483211,0.0,2.687336257612939,54.74670561957443,180.3637162409369,261.8039778749154,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95633,45203,429.5170077274581,5975,61.35957253249401,4611,47.66137212050234,1776,18.16318634780881,77.27514686010801,79.68642080981198,63.27600815666828,65.05668286304697,77.05253075988675,79.46723153540961,63.19326215883896,64.97774828316244,0.2226161002212592,219.1892744023676,0.0827459978293276,78.93457988453179,159.09366,111.91429318410012,166358.3072788682,117024.55469977944,400.1785,262.5582340638002,417828.3333159056,273928.2168897228,381.80985,185.0056398369672,396421.69543985865,191242.1055652585,2636.23192,1199.1698504652263,2726643.4808068345,1224268.6075804466,1075.17039,470.2235138928434,1110350.7262137546,478019.7577131788,1740.86822,729.6637521531467,1782545.1674631145,731027.0951209685,0.38054,100000,0,723153,7561.741239948554,0,0.0,0,0.0,34463,359.72938211705167,0,0.0,34781,360.8691560444617,1566173,0,56217,0,0,0,0,0,77,0.8051613982621062,0,0.0,1,0.0104566415358715,0,0.0,0.05975,0.1570137173490303,0.2972384937238493,0.01776,0.3346607199745142,0.6653392800254858,24.789559564258013,4.353910773389833,0.328562134027326,0.2303188028627195,0.2233788765994361,0.2177401865105183,10.928979741224106,5.504302558493968,18.8209650895432,12149.736761108335,52.10597421304339,12.744261034828172,16.975195947446277,11.477600193798224,10.908917036970712,0.5543266102797658,0.7853107344632768,0.6844884488448845,0.5650485436893203,0.1025896414342629,0.7107023411371237,0.900763358778626,0.8364611260053619,0.7368421052631579,0.0792079207920792,0.4995607613469985,0.7174887892376681,0.6348511383537653,0.516209476309227,0.1084788029925187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047434195189686,0.0070214600984222,0.0091620111731843,0.0110965327149381,0.0133412090598012,0.0152547212138516,0.0177639840328327,0.0200995777657366,0.0221985583224115,0.024340209040649,0.0266894043681042,0.0285814231038314,0.0306956512776111,0.0326621230896323,0.0346871637838285,0.036434309406582,0.0385318432969132,0.0405028514340423,0.0423832219174653,0.0569009668147373,0.0712234889764439,0.0845851629304367,0.0967215187206337,0.1091792542516108,0.1253971616183012,0.1371871845279209,0.1483897790143592,0.1595676369863013,0.1690328543639236,0.1811459660182646,0.1934742298224877,0.2055111072355082,0.2153869772134131,0.2255266555578852,0.2356208206518117,0.2445411914807892,0.2536306293090802,0.2623150466651491,0.2704909560723514,0.2776114900923476,0.2842099091175608,0.2909168554787126,0.2961526453565167,0.3014353484977496,0.3060521932259855,0.310447274732989,0.3153371108422996,0.3207087083971049,0.3250287466462246,0.3238574299084326,0.3219388528362198,0.3203145921718417,0.3186220654562276,0.3171478240197317,0.3148352321450447,0.3140805642980278,0.3142318103518989,0.3151825861834037,0.3165183339266643,0.3181962765459818,0.3190620809339749,0.3206347878813222,0.3200901725330893,0.3216591852900933,0.3232357376878673,0.3241269570653255,0.3283197789430715,0.3314732926230083,0.3372245384157236,0.3404081261646139,0.3431804898783274,0.3462335867311679,0.3507948523845571,0.3517630465444287,0.3572280534351145,0.3596006144393241,0.3597808441558441,0.3693025809994508,0.3571156047310187,0.0,1.9299047325672327,52.69203253229807,171.3596997439342,259.13089676796704,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95675,44901,425.62842957930496,5977,61.02952704468253,4718,48.63339430363209,1874,19.14815782597335,77.28391542799022,79.68088141943988,63.28504443165552,65.0592710461108,77.04335798009286,79.44590770230754,63.19363876262429,64.97375009296884,0.2405574478973591,234.97371713234827,0.0914056690312321,85.52095314195185,156.62878,110.20695032317197,163709.20303109486,115188.86890323696,396.50715,261.024748014938,413766.6684086752,272159.76798007626,382.12277,186.2030606274896,395510.1123595506,191568.5022831133,2711.39552,1267.2847916880285,2796827.551607003,1287435.6223548772,1113.05262,503.7664391229729,1141872.8194408151,505047.9252120451,1834.16586,785.6952438499752,1875731.9675986413,782736.1303133132,0.37951,100000,0,711949,7441.327410504312,0,0.0,0,0.0,34244,357.21975437679646,0,0.0,34979,361.7350405016985,1578699,0,56719,0,0,0,0,0,74,0.7629997386987196,0,0.0,1,0.0104520512150509,0,0.0,0.05977,0.1574925561908777,0.3135352183369583,0.01874,0.3376934120274366,0.6623065879725634,24.39733264059945,4.367001652274415,0.3236540907164053,0.2352691818567189,0.221704111911827,0.2193726155150487,11.278623400747293,5.785695459809493,20.221506855577985,12075.485872651414,53.95150160095723,13.425712088447286,17.31972885673917,11.735718605605108,11.470342050165645,0.5671894870707928,0.8063063063063063,0.6836935166994106,0.607074569789675,0.0985507246376811,0.7334851936218679,0.9211136890951276,0.8495145631067961,0.7254901960784313,0.1552511415525114,0.5027932960893855,0.7334315169366715,0.6224215246636772,0.5689001264222503,0.0833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0044729795520934,0.0067717798511629,0.0091259235170374,0.0116602057324257,0.0139352945970173,0.0158396654597378,0.0179352044776729,0.0197801073894144,0.0219631625315003,0.0244988407164987,0.0267459901564892,0.028689325883164,0.0307330798008842,0.0328681146254851,0.0346147084070201,0.0367653154273398,0.0387102801797967,0.0408405284510558,0.0427028829918075,0.0572171787344734,0.0711862632185111,0.0850563613845798,0.0974955277280858,0.1096556965231893,0.1247419515345282,0.1360619351549971,0.1476242717309105,0.1579431259354287,0.1686167586251315,0.1816329610624811,0.1942358740993553,0.2055082438525036,0.2151721267483762,0.2249032727433062,0.2353692251324014,0.2451410167520297,0.2530436939171213,0.2614706016097494,0.2690687933903264,0.2758944621629458,0.2825495484930221,0.2887947403398841,0.2942490631305852,0.298372073201914,0.3034148991333119,0.3076122789205179,0.3127777990040627,0.3165262475696694,0.320599804641094,0.3200770847932726,0.3182606541129831,0.3166575118660301,0.3161626664356063,0.3147795561373237,0.3130989435593922,0.3113013155809161,0.3126230799527373,0.3129329661495305,0.314101303391679,0.3146763833064122,0.3162584844996626,0.3172442852628252,0.3175859510264655,0.3184338603840286,0.3180425732464064,0.3182427613749822,0.3221402446714592,0.3258970851310112,0.3304712539073319,0.3325907065563335,0.3331569478251667,0.3364322705434579,0.3388281132923722,0.3433790801186943,0.3493664946034725,0.3529322394408994,0.3573730862207896,0.3592017738359201,0.3574159021406727,0.0,2.6660536936928545,57.25250329892021,179.63455540390575,249.9779923429665,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95649,45196,428.5774027956382,5980,61.26566926993487,4684,48.29114784263296,1850,18.92335518405838,77.35161970545354,79.75788709332065,63.31721993396855,65.09436873789836,77.11912374421033,79.52834810517412,63.230565348076055,65.01148803223494,0.2324959612432167,229.53898814652973,0.0866545858924965,82.88070566342753,158.9489,111.78554589897077,166179.36413344624,116870.5850547008,400.37498,263.4974642009135,417916.86269589857,274812.8931833197,385.91225,187.73694800631176,399298.24671455007,192971.9752791524,2670.81144,1236.6562814904887,2754775.6066451296,1255412.7188893654,1097.47027,490.3536210432393,1128851.2791560811,494157.1250475321,1811.1978,768.0232246051104,1854244.874489017,768820.7336811731,0.38014,100000,0,722495,7553.607460611193,0,0.0,0,0.0,34525,360.26513607042415,0,0.0,35217,364.0184424301352,1568708,0,56300,0,0,0,0,0,72,0.7527522504155819,0,0.0,1,0.010454892366883,0,0.0,0.0598,0.1573104645656863,0.3093645484949833,0.0185,0.3291220214297137,0.6708779785702863,24.60128088718532,4.324909038506131,0.3234415029888984,0.2365499573014517,0.2239538855678907,0.2160546541417591,11.128841104606854,5.84330158114664,19.716618177328595,12114.237654487431,53.24987391284476,13.230243284155089,17.159662244734825,11.593277785875022,11.266690598079828,0.5640478223740393,0.7870036101083032,0.6831683168316832,0.5853193517635844,0.1195652173913043,0.734789391575663,0.927570093457944,0.8658227848101265,0.7442922374429224,0.1666666666666666,0.4997060552616108,0.6985294117647058,0.61875,0.5433734939759036,0.1049222797927461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045733407696597,0.0067793857957659,0.0090221897098268,0.0110569734205413,0.0136993277653289,0.0160811706521184,0.0181964852804525,0.0203680981595092,0.0225340571545631,0.0244680632784127,0.0265326674476437,0.0285570214254841,0.0305673254363447,0.0325466095129886,0.0346069089667587,0.0365760126031259,0.038606872210111,0.0406891457464185,0.0429900110524889,0.0578856080078573,0.072024625951481,0.0851543967924092,0.0980596418124039,0.1106021909365303,0.1256773920406435,0.1374224921430391,0.1484635635945044,0.1592399619125057,0.169823883161512,0.1823014957241915,0.1937231195900635,0.2045894929350547,0.2144929122653385,0.2238265160025551,0.2344664715274081,0.243870549583175,0.25277830948172,0.2617744572622399,0.2695294602767342,0.2771813322844119,0.283490152533458,0.2895732803481881,0.294150050895156,0.2992403097012208,0.3046673066981759,0.3088088338163285,0.3133484881195789,0.3177754812039788,0.3225704545155388,0.3211549318493427,0.3201922416752489,0.3193952180028129,0.3180736102494553,0.3176070760737289,0.3162489870185471,0.3142654028436019,0.3151046361088805,0.3160139192139738,0.3161140819964349,0.3158968408444378,0.3164452154713559,0.3162200046026067,0.3170682775684893,0.3177332822379766,0.3190247698093632,0.3202907604066102,0.3249631649894981,0.3291134813778633,0.3314208839472955,0.333832471186133,0.339022212886625,0.3435299981309576,0.3469957729468599,0.3444227005870841,0.3459940652818991,0.3494326893590923,0.353877139979859,0.3567172264355362,0.3655509590071455,0.0,2.643984671659225,55.92259000052768,174.6186053263231,253.0571465791473,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95786,45247,428.100139895183,6031,61.6791597937068,4662,48.04459941953939,1824,18.635291169899567,77.3507064425629,79.67847098141051,63.34838135415546,65.06990474347707,77.12933870775572,79.46232014526379,63.26649981506235,64.99289228145537,0.2213677348071741,216.15083614672412,0.0818815390931035,77.01246202169898,158.24908,111.3544917896701,165210.84500866517,116253.19440384826,399.61385,263.2831960268008,416553.4316079594,274226.3502984427,386.40772,188.61013175361623,399431.8271981292,193859.96737269964,2657.79912,1226.416949950176,2739829.661954774,1245588.5824703476,1108.12906,489.8751014787728,1140433.9987054474,495133.154130036,1782.94812,736.8696683118706,1822659.804146744,735533.0354112068,0.38137,100000,0,719314,7509.583864030234,0,0.0,0,0.0,34469,359.1756624141315,0,0.0,35284,364.4373916856326,1576109,0,56483,0,0,0,0,0,66,0.6890359760299,0,0.0,0,0.0,0,0.0,0.06031,0.1581403885989983,0.3024374067318852,0.01824,0.3372369045735084,0.6627630954264916,24.615330622738544,4.310603783288127,0.332046332046332,0.2428142428142428,0.2104247104247104,0.2147147147147147,11.728118241336317,6.237793942914951,19.170135655460744,12188.43254916656,53.10752545353911,13.638091303705815,17.46803897291183,11.107728659514455,10.893666517407013,0.5845130845130845,0.8109540636042403,0.7164082687338501,0.5891946992864424,0.1198801198801198,0.7589703588143526,0.9324009324009324,0.8935643564356436,0.7233201581027668,0.1479591836734693,0.5183431952662721,0.7368421052631579,0.6538461538461539,0.5425824175824175,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284348284105,0.0042781832927818,0.0067581965965478,0.0089793596619535,0.011336830974459,0.0133975383550347,0.0158371040723981,0.0180934983825045,0.0204073290617942,0.022687269750307,0.0248478390064963,0.0269452168648737,0.0291763013205898,0.0312220129088045,0.0333683928313638,0.0352276366491389,0.0373121973428252,0.0394148930655912,0.0413222282224899,0.0434542709905783,0.0579746439192361,0.0727751811537375,0.0853845186179134,0.0980851689927694,0.1106567312050084,0.125932894987209,0.1379548033383174,0.1495237588463789,0.1593022386864664,0.1695872587162256,0.1824727953760211,0.1950868926162891,0.2066687671798437,0.2169097165328527,0.2261919157496674,0.2360951327433628,0.2449939269676067,0.2541790239956861,0.2622614568695888,0.270473422877148,0.277618662663125,0.2845049042503503,0.2910208665839097,0.2972067306541563,0.30286344948031,0.3085225524583103,0.3128404377592324,0.3166978026865937,0.3205096694909773,0.3242367568421884,0.3237506716818915,0.3219482036133819,0.3215833005120126,0.319985559566787,0.319431251484208,0.3174785363390111,0.3157220165195101,0.3159105095436775,0.3158038612677259,0.3175733561790533,0.3187704087377547,0.3188061592051617,0.3192204301075269,0.3206369169268084,0.3217942232179422,0.3227071837652658,0.32308836996337,0.3253012048192771,0.3290898190922876,0.3314129052765416,0.3353917936050501,0.3372105488850772,0.3391111111111111,0.3398768283294842,0.342433402607217,0.3390598902409926,0.3412183055040197,0.3454320478449165,0.3456375838926174,0.3440776699029126,0.0,2.311846056625729,55.972732203153,174.56786232581206,252.45931225276485,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95731,45051,426.6120692356708,6004,61.48478549268263,4665,48.10354012806719,1910,19.523456351652023,77.31652017658898,79.67736503723141,63.31665033110207,65.06264635617383,77.0790917585253,79.44330328984093,63.22710882201376,64.97709856731494,0.2374284180636863,234.06174739048424,0.0895415090883133,85.54778885888936,156.75792,110.32152372787064,163748.10667390918,115240.9394322326,396.62351,261.033125597264,413673.21975117776,272036.3577078104,377.93104,184.33442269520023,391169.2764099404,189691.3480642049,2703.52868,1240.3735859559945,2789968.3070269823,1261565.705942687,1111.28059,493.0381794994085,1146690.3510879443,500927.86512720987,1875.51578,790.8300780888329,1920291.3371844024,793438.3534643996,0.37961,100000,0,712536,7443.095757904964,0,0.0,0,0.0,34297,357.60620906498417,0,0.0,34454,356.2586831851752,1581076,0,56702,0,0,0,0,0,73,0.7625534048531823,0,0.0,0,0.0,0,0.0,0.06004,0.1581623244909249,0.3181212524983344,0.0191,0.3349312879514222,0.6650687120485779,24.695228241634563,4.387307999760144,0.3196141479099678,0.2287245444801715,0.2229367631296891,0.2287245444801715,11.1908632983029,5.738193010614692,20.366791424987223,12131.195479395452,52.733839144230494,12.799292415772872,16.66154395496743,11.678765881941956,11.594236891548224,0.5601286173633441,0.7844423617619494,0.6841046277665996,0.6076923076923076,0.1162136832239925,0.7300955414012739,0.9168704156479216,0.8432432432432433,0.7169117647058824,0.1707317073170731,0.4975066001760047,0.7021276595744681,0.631578947368421,0.5690104166666666,0.1032482598607888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183729905491,0.0045011709127036,0.0069322506977924,0.009256530883892,0.0114949544270833,0.0137392296254048,0.015777181728249,0.0179324571346874,0.0199895706587867,0.0221551062196058,0.0243417275038963,0.0265633021870828,0.0286895360315893,0.0305102198424548,0.0325635127747578,0.0346534141981877,0.0369224080821464,0.0391046386192017,0.0410178582565851,0.0431118010481022,0.0579882645283885,0.0711878950232305,0.0841933048074502,0.0968104907827074,0.1088086726354308,0.123995091816874,0.1360805491602389,0.147252653656563,0.1575803556163446,0.1679435181012468,0.1805449315334145,0.192516668109793,0.2038416776340834,0.2139263763424397,0.2236804439257481,0.2341210898530161,0.2441979941477361,0.2531255274855117,0.2618531424874289,0.2701600430753015,0.2770192085165471,0.2838191942351785,0.290079318101101,0.2964424507028739,0.3008533294435125,0.3059288049848849,0.3110587822688728,0.3151895671221711,0.3195435647026824,0.3243007685603359,0.3232242940288855,0.3212400237087681,0.3200446252047675,0.3195064017148485,0.31821227054147,0.3162585910652921,0.3146574951659429,0.3147620850272397,0.3154585482019565,0.3168847463703172,0.3176512602672781,0.3178630853339672,0.3174869813539392,0.3187623229969528,0.3204544907440841,0.3241343400156209,0.3257206398083996,0.3300882454542599,0.3360549462101833,0.3386444708680142,0.33992903930131,0.3413804105072849,0.3455243610726425,0.3484354875369346,0.3514095719771471,0.3574230357779627,0.3599448360404536,0.3657454105305628,0.3710033076074972,0.3726016884113584,0.0,2.356431544846594,54.8562957684402,167.19984504027445,262.2718260638693,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95689,45617,432.1499858917953,6143,63.03754872555885,4765,49.32646385686965,1894,19.54247614668353,77.40264542862671,79.7823259098586,63.35728834693722,65.11163714390995,77.16574349716255,79.54245975704492,63.27050711015213,65.02546252380778,0.2369019314641605,239.86615281367563,0.0867812367850859,86.17462010217025,158.56434,111.5439449587614,165708.01241522015,116569.24511569916,400.62574,263.23736672586915,418216.472112782,274638.45031912666,390.78135,190.2455623928288,404267.6065169455,195844.25374548257,2739.99652,1250.161238410984,2838057.0807511834,1281101.4415564835,1120.2871,496.7077084786163,1158635.025969547,507011.51709669246,1860.6472,776.5288144340288,1920579.8994659784,791640.469620141,0.38259,100000,0,720747,7532.182382510007,0,0.0,0,0.0,34588,360.97148052545225,0,0.0,35550,367.5448588657004,1572961,0,56461,0,0,0,0,0,73,0.7524375842573338,0,0.0,0,0.0,0,0.0,0.06143,0.1605635275360046,0.3083184111997395,0.01894,0.329397141081417,0.670602858918583,24.434873211133187,4.368169436274652,0.3280167890870933,0.2274921301154249,0.2165792235047219,0.2279118572927597,10.932198689119012,5.479533993420366,20.159076439986944,12186.453788022309,53.8690873480318,12.991819239021956,17.534899543443974,11.485989583855304,11.856378981710565,0.5582371458551941,0.7859778597785978,0.6967370441458733,0.5852713178294574,0.1058931860036832,0.7462211614956245,0.9134615384615384,0.8535980148883374,0.7835497835497836,0.1594202898550724,0.4908779931584949,0.7065868263473054,0.6422413793103449,0.5280898876404494,0.0932878270762229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018126398720012,0.004155391366921,0.0063400284033272,0.0085920599616099,0.0109008450188629,0.0133800378795592,0.0154862520007748,0.0176156601790142,0.0198661284553676,0.0217876294567931,0.024221488755407,0.026281208935611,0.0283364178490643,0.0303816762446188,0.0326454808089145,0.0348826392980062,0.037152856876592,0.0392673688579878,0.0413724246237688,0.0438362446325092,0.0588136974280759,0.0730933534363613,0.0865495603265546,0.0992447511255101,0.1111544708587339,0.1261426153195091,0.1380364192028524,0.1489551952821451,0.1593024374085037,0.1700498632781084,0.1828607733973703,0.1941672979114814,0.2050824788230049,0.2160318362706083,0.2262957585357268,0.2365580684799575,0.2459036493746795,0.2546504313443565,0.2627399898057427,0.2707983217294875,0.277519308250886,0.2840757939934193,0.2905008146206701,0.295845743471968,0.3018053517950459,0.307138638712535,0.3114993813505305,0.316664762412563,0.3210530395018989,0.3255599715737109,0.3244437282627671,0.3229450880921368,0.3211168794724288,0.3202216465169833,0.3187189054726368,0.3171197312156383,0.3149927311800771,0.3153198956915356,0.3160002044536827,0.3169875848310504,0.3175146313644097,0.3183230424352066,0.3196166267319512,0.3213752867036319,0.3234518156089605,0.3252178436727793,0.3260022192505761,0.3298555628661841,0.3328423120089787,0.337998017839445,0.3406272793581327,0.3435432230522945,0.3454591385625868,0.3452453520268211,0.3468442932728647,0.349988215884987,0.3524276305712973,0.3491743858236005,0.3536652078774617,0.3496608892238131,0.0,1.7749176650499938,55.48082253001871,178.60700571979152,262.4216389157232,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95721,44802,423.92996312198994,6130,62.66127600004179,4853,50.04126576195401,1960,20.006059276438812,77.33907921770925,79.70411205342472,63.32552877917672,65.07465548732341,77.09162280398839,79.46194479486988,63.23226336854624,64.98643558740517,0.2474564137208688,242.1672585548436,0.0932654106304795,88.21989991824353,157.2879,110.6895889727434,164319.11492775878,115637.72732497928,398.37365,261.30875910477425,415482.2348283031,272290.1548299477,379.04746,184.4476815765241,392135.926285768,189636.10172194857,2792.93012,1284.0740717130057,2882956.1329279887,1306649.9427638715,1188.29738,529.342238608169,1226816.7068877255,538404.4030130997,1922.27674,816.6321810228021,1966183.6169701528,816961.461408357,0.37793,100000,0,714945,7469.05067853449,0,0.0,0,0.0,34454,359.28375173681843,0,0.0,34692,358.61514192288,1579395,0,56628,0,0,0,0,0,52,0.5223514171393947,0,0.0,1,0.0104470283427878,0,0.0,0.0613,0.1621993490858095,0.3197389885807504,0.0196,0.3299081426124863,0.6700918573875136,24.222166137625663,4.394477389765342,0.3127962085308057,0.2382031732948691,0.2186276529981455,0.2303729651761797,11.306382714841147,5.880729160062912,20.951062621427347,12074.471075028348,54.90316844145149,13.875203891203938,16.90915541173646,11.915763164117957,12.203045974393133,0.5608901710282299,0.7811418685121108,0.6910408432147562,0.6032045240339302,0.1162790697674418,0.7061098221191029,0.8956310679611651,0.8525469168900804,0.7348484848484849,0.1311475409836065,0.5081460674157303,0.717741935483871,0.6384279475982533,0.5595984943538268,0.1121281464530892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193161562145,0.0044105122277649,0.0066177440800625,0.0087790603153958,0.0111390293276909,0.0135045677214351,0.0157446591546423,0.0180502098030607,0.0203071637456798,0.0224400335934779,0.0245520834401632,0.0267966270554522,0.0290847757448602,0.0312686736312872,0.033288948069241,0.0353656518861681,0.0372726142626279,0.0392582138187252,0.0413451739700101,0.0432046673959472,0.0575017489636737,0.0720070312009542,0.0853272380313293,0.0975024975024975,0.1090945521270537,0.1247990183633748,0.1367335462445225,0.1486056243544557,0.1588645205420888,0.1685429433038924,0.1817211833809344,0.1931295147124121,0.2041806766123679,0.2145663474692202,0.2249080457238508,0.2351375923010399,0.2439746252987558,0.2521641245004784,0.2600926388447391,0.2681210092510862,0.2746303565019046,0.2817437097717963,0.288003218706364,0.2939541348158443,0.2985103619079993,0.3038512191219368,0.3083863389275583,0.3126286106241902,0.3172134750122806,0.321388075837882,0.3196917531873688,0.3184306820370319,0.317233406642982,0.3156287979628451,0.3156525101118249,0.3138720796629644,0.3112581732976584,0.3122124359142895,0.312998527951799,0.3127762764643771,0.3131870193209529,0.3140631487376183,0.3154259883222066,0.3149437120923882,0.3163997791275538,0.3190022888056596,0.3210956873699512,0.3252633233768275,0.3272688957572351,0.3316758820955487,0.3346720825156314,0.3357360243472689,0.3391701560715645,0.3412667946257198,0.3455384036144578,0.3486293206197854,0.3532887575804696,0.3633744855967078,0.3664526932737929,0.3773148148148148,0.0,2.6127755442496614,56.275863136106366,178.65224569754045,269.5857112769621,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95688,44783,425.1525792157846,5857,60.04932697934955,4569,47.16369868740072,1787,18.33040715659226,77.30793472821749,79.68459539543079,63.31631099018998,65.07038637350315,77.08700270053068,79.4635806801807,63.23447201690499,64.99073835726968,0.220932027686814,221.0147152500923,0.0818389732849951,79.64801623347739,157.96858,111.14080986185688,165086.44762143632,116148.6624845289,399.1006,263.14468874864457,416501.3585820584,274423.4382862768,381.52319,185.4209152490808,394888.7634813143,190890.07260762932,2592.28156,1203.3541636908512,2676140.163865898,1224929.9836338316,1094.45793,490.9634420063936,1128249.0698938216,497559.2362745522,1734.74286,731.3893102614571,1780380.9673104256,735977.1425705126,0.37849,100000,0,718039,7503.929437338015,0,0.0,0,0.0,34556,360.5258757628961,0,0.0,34872,360.6303820750773,1572484,0,56504,0,0,0,0,0,66,0.6792910291781623,0,0.0,0,0.0,0,0.0,0.05857,0.1547464926418135,0.305105002561038,0.01787,0.3338240104677789,0.6661759895322211,24.532200786604054,4.166084648047907,0.3282994090610637,0.238783103523747,0.2241190632523528,0.2087984241628365,11.453226451873045,6.296612317015884,19.09493364023362,11961.82501481854,52.1940844688356,13.216271206192824,17.026807691108907,11.357701175915889,10.593304395617976,0.5810899540380827,0.773602199816682,0.7153333333333334,0.58984375,0.140461215932914,0.7529691211401425,0.8990384615384616,0.8911392405063291,0.775,0.1839622641509433,0.515426497277677,0.6962962962962963,0.6524886877828054,0.5331632653061225,0.1280323450134771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0045093429532649,0.0066342730196086,0.0084809458032014,0.0107090554063949,0.0128406174901226,0.0150809107687287,0.0172434915773353,0.0192193665787482,0.0212302054436949,0.0233526058965842,0.0254314726023881,0.0280965897404253,0.0300404866641255,0.032041359668132,0.0341052413935697,0.0358401027851458,0.0380402620459099,0.0402896108354398,0.0420437012635002,0.0558329503196423,0.0692694159514339,0.0825552361568643,0.0954860015565511,0.1071951926624848,0.1225558105349985,0.1344684914067473,0.145881676707896,0.1563090926572866,0.165926498036944,0.1782798802421005,0.1906358856747225,0.2027529519211951,0.2130167164113833,0.2226194273646233,0.2319577352472089,0.2407791686190508,0.2505906176172798,0.2589070939045976,0.2666643760307861,0.27404697683572,0.2802624500011695,0.2866205100893544,0.2923447787865341,0.2977261673151751,0.3018023019133267,0.3071352502662406,0.3119330343491999,0.3158522823083808,0.3200845665961945,0.3191277157798264,0.3185201521751116,0.3172235705819269,0.3160371212230893,0.314962857100323,0.3131765355248229,0.3109824756165252,0.3116511088062429,0.3114942331750955,0.3128331723373045,0.3128885049484497,0.3131153061426618,0.3133220061670128,0.3130158588140559,0.3143269925355165,0.3150022227452211,0.3156107305936073,0.3174663140662385,0.3221724879286646,0.3258252890001192,0.3276601569629494,0.3287307488050982,0.3339847443736998,0.3353380024360536,0.3378111789572569,0.343391314637321,0.3457350272232305,0.3480529907667603,0.3480961382662706,0.345229151014275,0.0,2.2828906197950984,55.32192897881279,171.76657657817,246.3894120420956,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95694,44967,426.45306915794094,5991,61.35180889083955,4653,47.913139799778456,1861,18.95625640061028,77.38171245272493,79.75555878061898,63.34258245905804,65.09504156483057,77.14142018312782,79.52091737780235,63.25276254001043,65.01085569848007,0.2402922695971057,234.64140281663504,0.0898199190476134,84.18586635049508,159.7508,112.2875215525642,166939.20203983533,117340.19013999224,401.655,264.236529341256,418994.0435136999,275393.4044520803,378.52941,183.892107658482,391660.8355800782,189134.099227195,2672.76512,1229.1889683883712,2753963.592283738,1245502.3032724469,1121.4619,503.33413977186217,1151322.653457897,505531.8979638199,1828.87868,773.2599436326545,1865046.9203920832,767373.6481794165,0.37893,100000,0,726140,7588.1455472652415,0,0.0,0,0.0,34666,361.5169185110874,0,0.0,34582,357.4832277885761,1567444,0,56222,0,0,0,0,0,64,0.668798461763538,0,0.0,2,0.0208999519301105,0,0.0,0.05991,0.1581030797244873,0.3106326155900517,0.01861,0.3315848036878079,0.668415196312192,24.46895827058012,4.374764706340797,0.3193638512787449,0.243498817966903,0.2112615516870836,0.2258757790672684,11.19943189871334,5.754931780516457,19.824066176669408,12054.584334875715,52.8045207854582,13.645511950189457,16.739973478919968,10.852826864768913,11.566208491579856,0.5587792821835375,0.7899382171226832,0.7012113055181696,0.5595116988809766,0.1075166508087535,0.7289644012944984,0.9216152019002376,0.8519480519480519,0.7452830188679245,0.1238532110091743,0.4972197834357623,0.7120786516853933,0.6485013623978202,0.5084306095979247,0.1032412965186074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021167557932263,0.0044501211365548,0.0068697487518772,0.0089389106718404,0.0111479545130907,0.0131160896130346,0.0151720621972979,0.0172322267140348,0.0195761732925794,0.0218957928140034,0.0243789918292445,0.0263754992248539,0.0282799613335801,0.0302430984754841,0.0322074651971559,0.0341287401004942,0.0364348150296201,0.038227664210854,0.0404467972251978,0.0425607303271256,0.0569393531138056,0.0707413340033711,0.0837215646772433,0.0960621968796355,0.1078831608595208,0.1226600672631512,0.1347686300308776,0.1459220613287904,0.1562055960940588,0.1666112404389757,0.1798383620689655,0.1920541271989174,0.2039655434948119,0.2142654100977412,0.2245555751122062,0.2344644339883753,0.244091502247404,0.2527471291516235,0.2608828800217771,0.2684191845753998,0.2757731064243321,0.2821786808202202,0.2888710040122617,0.2940683043738766,0.2988581146744412,0.3032607088283137,0.3077202066058855,0.3121397579937144,0.3165266469042472,0.3207922881143595,0.3198563531453012,0.318610210474254,0.3175011962059162,0.316555164657708,0.31655432930894,0.3157629679368809,0.314108434115381,0.3142548596112311,0.3154573595945164,0.3168140648077299,0.3175078068026702,0.3176454337358907,0.3187773836845399,0.3192651550620917,0.3190239927135015,0.320277871380803,0.321938775510204,0.3265535664073484,0.3287212909071899,0.3326355701252024,0.3372931308093402,0.3403252290905239,0.3434400859073969,0.3448856246652895,0.3473961766644693,0.3471958174904943,0.3472200949609434,0.3508203362365809,0.3535911602209944,0.3602316602316602,0.0,2.71569993728158,53.45042872698819,178.1937418511212,252.3394684899665,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95865,44952,424.7639910290513,5918,60.53304125593282,4613,47.61904761904762,1818,18.682522296980128,77.44506122741345,79.72243172940742,63.40474875222951,65.08389993575436,77.21705870835918,79.49274954937268,63.320398021547234,65.00052557055483,0.2280025190542716,229.68218003474303,0.0843507306822743,83.37436519953201,158.56984,111.47855248004409,165409.52380952382,116287.0207896981,394.71371,259.4160451640492,411255.2026286966,270121.6660554418,375.43432,181.91545052649025,388059.82371042616,187016.0835317776,2643.76076,1216.9315977106487,2732361.1745684035,1243987.7720864222,1063.77903,475.61423661987374,1097129.129505033,483594.6869241888,1783.06832,750.5969721238713,1834089.521723257,761630.0184321055,0.3796,100000,0,720772,7518.614718614719,0,0.0,0,0.0,34060,354.7905909351693,0,0.0,34265,353.7996140405779,1581358,0,56793,0,0,0,0,0,77,0.8032128514056225,0,0.0,0,0.0,0,0.0,0.05918,0.1559009483667018,0.3071983778303481,0.01818,0.3397839058216417,0.6602160941783584,24.620731846381634,4.318746213455429,0.3295035768480381,0.2414914372425753,0.2098417515716453,0.2191632343377411,11.064674200574954,5.770204443857433,19.32157853476093,12090.949381474393,52.250168362477794,13.32007846503388,17.081904583518398,10.778777075326513,11.069408238599005,0.5621070886624756,0.8016157989228008,0.6769736842105263,0.5847107438016529,0.1038575667655786,0.7216494845360825,0.927536231884058,0.841688654353562,0.7131147540983607,0.1473214285714285,0.5020883054892601,0.7271428571428571,0.6222611744084137,0.5414364640883977,0.0914866581956797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0045381334900069,0.0069355018606207,0.0093073768827899,0.0113703334891377,0.0138669868044887,0.0161940845758983,0.0183649953603148,0.0204638054100419,0.0224233128834355,0.0245952836854015,0.0267368161959264,0.0288909886407986,0.0310018514708907,0.0330197912695877,0.0351248413034278,0.0371151718218389,0.0391163335302102,0.0411095423968108,0.0432104545785602,0.056929557492597,0.0704525510843675,0.083404005821319,0.0959686050660007,0.107993519336784,0.1234947070681484,0.1353909682884218,0.1469597645583876,0.1577695785702098,0.1681275753197409,0.1805724235031114,0.1922071751009741,0.2040257963650576,0.2143863212027908,0.2240871743046706,0.233100258889651,0.2426718084750674,0.252210649318547,0.2609272273860802,0.2687489274068989,0.276629938375091,0.2829266581707217,0.2887443070917371,0.2943365966919597,0.3005253642970674,0.3051260586960803,0.3096641758351796,0.3136424346498759,0.3181541569018424,0.3223501180069353,0.3217388965109085,0.320782967032967,0.3201270055354182,0.3189115254481319,0.3172309651057782,0.3159876806732939,0.314089433712539,0.3139192942329685,0.3147445603171093,0.3146530293344697,0.3169216417910447,0.3173955870764381,0.3180594117278667,0.3189144663609243,0.3207858715420695,0.3229309763873409,0.3228665269834079,0.3255203450215638,0.3274638084632517,0.3292398815399802,0.3328785811732606,0.3359188227168889,0.336080010064159,0.3404011022657685,0.3412578139799204,0.3451940298507462,0.3504326328800989,0.3491602736885755,0.3512385193431672,0.358712715855573,0.0,1.984982602065759,55.48368178560199,170.48480449924028,249.70251609219275,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95694,45261,429.1282630049951,5996,61.41450874662988,4709,48.74913787698288,1925,19.83405438167492,77.29747507811412,79.70036620348785,63.28577397120039,65.06542870976418,77.06436294736028,79.46450522894654,63.19920405947378,64.97931449141569,0.2331121307538382,235.8609745413105,0.0865699117266132,86.11421834848443,158.24886,111.3490557695502,165369.67834973978,116359.49565233996,400.30191,263.47589951499833,417801.8371057746,274819.8273825952,387.01546,188.669138426167,400907.2460133341,194548.2338256924,2713.643,1260.0759117977343,2810432.5872050496,1291825.744980958,1108.68647,497.4033486200899,1146087.5916985392,507546.6150037795,1880.949,788.2972232986057,1939673.8353501784,803478.1412341008,0.38205,100000,0,719313,7516.803561351809,0,0.0,0,0.0,34558,360.59732062616257,0,0.0,35418,366.5851568541392,1567929,0,56335,0,0,0,0,0,63,0.6583484857984826,0,0.0,1,0.0104499759650552,0,0.0,0.05996,0.1569428085329145,0.3210473649099399,0.01925,0.3395297108357165,0.6604702891642834,24.439953958173216,4.369113737404272,0.3217243576130813,0.231259290719898,0.2282862603525164,0.2187300913145041,11.20196758083175,5.847253454454716,20.474318547758838,12167.66070364996,53.65920934828456,13.20332237587109,17.095790208237602,12.052996472264873,11.307100291911,0.5667870036101083,0.8071625344352618,0.6924092409240924,0.5786046511627907,0.1155339805825242,0.7253414264036419,0.9145496535796768,0.8425,0.75,0.1459227467811159,0.5051607195517547,0.7362804878048781,0.6385650224215247,0.5261239368165249,0.1066499372647427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023409947707649,0.0047268374819954,0.0069648205492664,0.0094705822579006,0.01165771484375,0.0136690500926887,0.0156154379666272,0.0179122158452646,0.0200047045828773,0.0221195891491126,0.0245556091206548,0.0266585851944689,0.0286619616880311,0.0310062342212375,0.0330184296112745,0.0348779478692594,0.0370212986474581,0.0389982556690755,0.0409371326321483,0.0431542966714604,0.0578674688727333,0.0726345870013503,0.0861339908714128,0.0991795519091195,0.1110068034386372,0.1263196868718925,0.1376199371656618,0.1485181201478152,0.1588503239879386,0.1686688782247415,0.181479963766553,0.1937634128893802,0.205483182293482,0.2161670610921202,0.2253847171392036,0.2349971708475253,0.2444983402814256,0.2536499639509733,0.2622172228471441,0.2700732436986348,0.2775164519417926,0.2846382719520195,0.2910047268720901,0.2976577787915531,0.3024475737253995,0.307058910671078,0.3115551432797653,0.3156277100443809,0.320609200327192,0.3248148148148148,0.3236044549443131,0.3221447795183217,0.3212312214700603,0.3198446849509569,0.3178295726673707,0.3159556209390707,0.3140515481860038,0.3151863873315629,0.3157957487396103,0.3164698968962017,0.317372311827957,0.3190245630609353,0.3191356091450047,0.3201611825994033,0.3210358623002659,0.3220413778781507,0.322625500156077,0.3263804065269817,0.3311063695827066,0.333927087044294,0.3364235401045217,0.3399554990464081,0.3418357730728152,0.3422228956739147,0.3445724454434766,0.3479542506779861,0.3444682807232608,0.3428859737638748,0.3424657534246575,0.3444572305331799,0.0,1.690310296065295,58.2951158538123,176.64872721493603,250.02489748792348,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95819,45136,427.36826725388494,6134,62.61806113610035,4820,49.61437710683685,1912,19.453344326281844,77.32864418348662,79.63626268613282,63.32870225298407,65.03706585799206,77.07875277747608,79.39363918929577,63.23451786883148,64.94925546136335,0.2498914060105335,242.6234968370551,0.0941843841525909,87.81039662871137,156.73328,110.35021138903193,163572.00555213477,115165.06812282917,397.82796,261.31567729794284,414507.2271678895,272039.4112102148,381.82273,185.74700892487127,394515.2005343408,190793.3961235838,2778.74696,1280.295882029323,2859278.639935712,1295586.6138505442,1181.19016,525.8556115415003,1213127.8034627787,529390.5451631146,1872.07028,796.3030331594349,1905478.4750414845,790040.0154415842,0.3804,100000,0,712424,7435.09116146067,0,0.0,0,0.0,34357,357.8517830492908,0,0.0,34910,360.3356328076895,1579095,0,56778,0,0,0,0,0,60,0.6261806113610036,0,0.0,0,0.0,0,0.0,0.06134,0.1612513144058885,0.3117052494294098,0.01912,0.3375835795366195,0.6624164204633805,24.351748856892403,4.395222882000773,0.3327800829875518,0.2242738589211618,0.2205394190871369,0.2224066390041493,11.310216638142329,5.869873501430917,20.48022726426735,12153.09487298132,54.67873645920032,12.993934009258416,18.139813996151386,11.712560699965174,11.832427753825352,0.5614107883817427,0.7816836262719704,0.6957605985037406,0.5719661335841957,0.1277985074626865,0.7225130890052356,0.9154589371980676,0.8373205741626795,0.754863813229572,0.1733870967741935,0.4995693367786391,0.6986506746626686,0.6458684654300169,0.5136476426799007,0.1140776699029126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180584392565,0.0046527186473665,0.0070511844975396,0.009284089062246,0.0115212527964205,0.0137141111789859,0.0158597492610335,0.0180125935073019,0.0201935556395818,0.0225944762236116,0.0247143808596751,0.0267241379310344,0.0287658140036792,0.0308533308625961,0.0328964329541821,0.0348571723746061,0.0368626395802502,0.0391103737881694,0.0410819457572893,0.0428211586901763,0.0571294461249608,0.0706824621754723,0.0844007463155908,0.0973874479801589,0.1096681705106042,0.125643492140675,0.13744141163496,0.1492173616948827,0.160609588090178,0.1706762725674342,0.1828422503661583,0.1951982169133558,0.2058007895337835,0.2153259134541797,0.2244745240453395,0.2347733593343157,0.2444856431275757,0.2535304849208315,0.2620997512466066,0.2695912537714096,0.2764802746016652,0.2835929436051421,0.2897499228156838,0.2952505676971321,0.3011015762887225,0.3059045691293722,0.3105856392382051,0.3155834385320633,0.3198130355751752,0.323267077786306,0.3227565357051273,0.3217075661799211,0.3217709776860205,0.3200673459316671,0.319927255381313,0.3178388678027567,0.3160435790744211,0.3161808251628611,0.3162105335133934,0.3167457965944383,0.3181869327132248,0.3188311174422285,0.3206417022702522,0.3213902548055431,0.3224572294809788,0.3244953456751386,0.3240468790099518,0.3261771547117621,0.3283493241823657,0.3298765041165294,0.331679788831748,0.3355665443717764,0.3373038381546606,0.3366676847892486,0.3414427157001414,0.3402727925340991,0.3432721712538226,0.3456016177957532,0.3416166029492081,0.3386161577116351,0.0,2.644260676819705,58.47990275658677,170.27725423208443,268.19445648272045,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95745,45200,429.6830121677372,6064,62.18601493550577,4788,49.4125019583268,1842,18.841714972061204,77.35098256499538,79.69895019365113,63.33757887846742,65.07066821726048,77.12546949485484,79.4739449396781,63.25435224521824,64.99000234040807,0.2255130701405363,225.0052539730234,0.0832266332491755,80.66587685240734,157.87288,111.08010908719145,164888.21348373283,116015.98677394452,399.22025,262.0653446686736,416370.5572092538,273122.7574376571,385.65761,186.91417845129936,398959.0370254321,192257.6716982263,2743.45444,1255.5896495212974,2834647.7413964174,1280828.4165944797,1145.53575,504.2992291491741,1181910.522742702,512285.878419696,1800.7079,750.8968450416983,1844460.6193534909,754778.6183266314,0.38063,100000,0,717604,7494.918794715129,0,0.0,0,0.0,34460,359.2772468536216,0,0.0,35211,363.9145647292287,1575769,0,56585,0,0,0,0,0,72,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.06064,0.1593148201665659,0.3037598944591029,0.01842,0.3355809941978987,0.6644190058021013,24.43262108139737,4.362149520308196,0.3302005012531328,0.2270258980785296,0.2284878863826232,0.2142857142857142,11.424931647060026,5.940004545981379,19.58497953024084,12153.936545970646,54.47372441360923,13.037173351419543,17.877182338548387,12.315048970735004,11.24431975290629,0.5687134502923976,0.7930082796688133,0.6970271979759646,0.5786106032906764,0.1228070175438596,0.7212460063897763,0.9254498714652956,0.8520408163265306,0.6754716981132075,0.145631067961165,0.5147058823529411,0.7191977077363897,0.6459209419680404,0.5476477683956574,0.1170731707317073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682855204398,0.0042975441157093,0.0062910312217791,0.0082371820914926,0.0108285630039348,0.0133257322026651,0.0151272667964648,0.0175234479450516,0.0197773893846012,0.0218096592944355,0.0240482194476905,0.0258776431944159,0.0280268136206612,0.0299660179178251,0.0321039872079228,0.0341081745925106,0.0360748418360479,0.0379578707066514,0.039933461558455,0.041618051504292,0.0567455843667794,0.0706940739578429,0.0843503606777386,0.0971235123428235,0.1092534418418334,0.1248705101372064,0.136568501649045,0.1477323515014791,0.158621131680429,0.1687995451766195,0.1810788685667506,0.1938182487202519,0.204985697660507,0.2158510300762573,0.2253640496186147,0.2355979164357752,0.2455693658078997,0.2537627393192198,0.2617926401670317,0.2692774950717462,0.2767678404054663,0.2835297008272005,0.2897098998308833,0.2952058238942503,0.3010967945451457,0.3067675649070998,0.3116297092572686,0.3163720469188832,0.3219795009835386,0.3264231611728379,0.3252161732618592,0.3238286681995291,0.3228780467175099,0.3209712193780838,0.3201237193118113,0.3188381361128142,0.3166555692951583,0.3170731707317073,0.3177798682972719,0.3189665946544305,0.3196732062885303,0.3206090287926063,0.3220353185160358,0.3218580945142397,0.3210899051734485,0.3229646997525074,0.3246033100153557,0.3285812974941908,0.3329257641921397,0.3360490409333597,0.3413725757369305,0.3426436294254823,0.3454750989135213,0.3489780469341408,0.3521771631470753,0.3589864466705951,0.3598030163127116,0.3617107121242687,0.3588397790055249,0.3573076923076923,0.0,2.2347690674171616,54.98915861848184,185.8974402048385,260.78371127579646,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95827,45356,429.5136026380874,5923,60.47356173103614,4647,47.76315652164839,1844,18.783850063134608,77.51248185563044,79.79667936623932,63.42745123530996,65.11002029230967,77.2756832750442,79.56551992591517,63.33783210019215,65.0256121754727,0.2367985805862389,231.1594403241486,0.0896191351178075,84.40811683696836,157.6696,110.77359207683573,164535.67366191157,115597.47469589543,395.75537,260.8852369390963,412254.0307011594,271510.6775116577,375.99561,183.7208884594964,387481.5761737298,187977.99390880755,2665.98728,1229.6904346533163,2742368.893944296,1243737.6642289464,1071.77064,483.33354012802266,1097185.0522295386,483215.58452366205,1810.78126,772.7081720412395,1846584.6368977427,769395.9584398208,0.38255,100000,0,716680,7478.894257359617,0,0.0,0,0.0,34149,355.58871716739543,0,0.0,34292,352.938107214042,1585631,0,56866,0,0,0,0,0,75,0.7826604192972754,0,0.0,4,0.041741889029188,0,0.0,0.05923,0.154829434060907,0.3113287185547864,0.01844,0.3476853350598899,0.65231466494011,24.495013430607354,4.3696909452337644,0.3189154293092318,0.2375726275016139,0.2194964493221433,0.2240154938670109,11.057400972585564,5.622853086012934,19.75111804908795,12173.353562330776,52.40690088266389,13.104084539339096,16.69888078688882,11.087597803504794,11.516337752931175,0.5543361308370992,0.7626811594202898,0.7091767881241565,0.5754901960784313,0.0922190201729106,0.7223101265822784,0.9238329238329238,0.8512195121951219,0.7345971563981043,0.1398305084745762,0.4915755246822347,0.6685796269727403,0.6548507462686567,0.5339925834363412,0.0782608695652174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020844716977313,0.0044257198124386,0.0067606604567246,0.0089801219673062,0.0114894654503342,0.0137902979762025,0.0159943800777829,0.0183145700766846,0.0204017032052525,0.0224153798956948,0.0246787158875633,0.0266949717461977,0.0288523781634351,0.0309161640903196,0.0331336790342367,0.035065793550786,0.03729266046502,0.0391481949945051,0.0411373009359774,0.0429133612343057,0.0573296900421342,0.0712381191379905,0.0843750982385178,0.0973047917148079,0.109850997736008,0.1254898646864337,0.1372877403489432,0.1486983708367008,0.1596371398078975,0.1705668783669447,0.1826853793622627,0.1952945243213464,0.2064648526569523,0.2167997117054153,0.2259963967130992,0.2364064625286136,0.2462595947105154,0.2548076923076923,0.2629939631446014,0.2703166076122985,0.2774143679553294,0.2843776944049588,0.2908312497051469,0.2967563177757608,0.3019164880930762,0.3071980539823335,0.3122903286150776,0.3167756156886591,0.3212415856394914,0.3244428685865868,0.3233275237967556,0.3221441582097319,0.321563187467597,0.3202336926021326,0.3191294183792741,0.3170426447693764,0.3147574656343814,0.3153231353794752,0.3158011275570165,0.3157669771500828,0.3166000074757971,0.3171938121982461,0.3179207651985047,0.3177649154051647,0.3181894103891765,0.3200072358900144,0.3207397995199774,0.3246248951570314,0.3281163434903047,0.3314486254630532,0.3340917201998572,0.3376306076831106,0.3417150623996046,0.343062415806017,0.3446816341553184,0.3478512683887408,0.3489412466447957,0.3538040289458243,0.3539657020364415,0.3556050482553823,0.0,2.8380228103184533,54.61406995039084,169.89369868139812,252.5747412773541,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95722,45309,429.65044608345,5901,60.32051148116421,4557,46.86487954702159,1785,18.17763941413677,77.31288813594676,79.67195725619393,63.318020272784125,65.06257492042347,77.08999100929972,79.45459354362966,63.234434787463655,64.98407195204196,0.2228971266470409,217.36371256427844,0.0835854853204693,78.50296838151394,157.38272,110.84524502546104,164416.4559871294,115799.13188761313,395.63267,260.6467886046949,412592.7790894465,271574.2476667145,383.16097,187.04247731824023,395883.4332755271,191962.1248336066,2617.81936,1208.775847609615,2695637.2829652536,1223632.15862191,1092.18727,486.8131082868479,1120583.5858005474,488167.7631156867,1750.06798,740.5953864250088,1784958.8600321766,736894.7154382323,0.38017,100000,0,715376,7473.475272142246,0,0.0,0,0.0,34082,355.28927519274566,0,0.0,34946,360.6172039865444,1578363,0,56612,0,0,0,0,0,72,0.7521781826539354,0,0.0,0,0.0,0,0.0,0.05901,0.1552200331430675,0.302491103202847,0.01785,0.3267054639508567,0.6732945360491432,24.553504387752024,4.331886586388395,0.3274083827079219,0.2326091727013386,0.2196620583717358,0.2203203862190037,11.203137548832448,5.85722038103793,19.084471156835846,12105.016393469026,51.57086794296061,12.66083926379703,16.942498675590976,10.932088040468813,11.035441963103768,0.5637480798771122,0.789622641509434,0.7064343163538874,0.5584415584415584,0.1185258964143426,0.7348111658456487,0.9375,0.8733850129198967,0.7168949771689498,0.175438596491228,0.5013477088948787,0.7056213017751479,0.6479638009049774,0.5140664961636828,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0046017089165712,0.0071124909952414,0.0092329256896761,0.0116353576550279,0.0139918533604887,0.016243499541144,0.0183765352063786,0.0206616639744821,0.0228545683537952,0.0250792055859162,0.0270370180212558,0.0292081906348667,0.0315699482932657,0.0334777674610543,0.0353355794869674,0.036987180814712,0.0388490552333122,0.0406405990016638,0.0427411876256863,0.0570688773113104,0.0706191338195439,0.0837292223795291,0.0962850803865282,0.1089365740496652,0.1241603994118829,0.1364461187456889,0.1477538854588035,0.1581544903910865,0.1681859128345916,0.1811506035123233,0.1924096085832639,0.2034816079331079,0.2143778983288126,0.2239239503564827,0.2337915526656845,0.2435297925292679,0.2523512735127351,0.260477580079256,0.2680576561712269,0.2753302689622434,0.2826264941869985,0.2884169427354472,0.2939738242485258,0.3000716828459305,0.3056548426060591,0.3108453350031309,0.3143904208075126,0.3184125997305979,0.322943631464948,0.3221497317553177,0.3203585394062896,0.319487736421207,0.3180621074870489,0.3162360085734699,0.3152862820925985,0.3137500793701187,0.3137841972790234,0.3147615624251138,0.3159336233285,0.3173536972062217,0.3189508300645826,0.3211605383422078,0.320766101997944,0.3203042264368922,0.3226437741363114,0.3245248558872211,0.3292848354837692,0.331820580474934,0.3330145447300259,0.3348083941605839,0.338455831699433,0.3406648337915521,0.3428961748633879,0.3452325035227806,0.3430294430649166,0.3414859252422704,0.3438639125151883,0.3455250761983929,0.3422641509433962,0.0,2.8457170425042766,52.38094731053916,168.24551736918835,252.87319994024529,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95783,45304,428.0300262050677,6042,61.77505402837664,4717,48.68296044183206,1852,18.96996335466628,77.37208356525132,79.71092155980715,63.35007434272507,65.07969286926799,77.1430200874389,79.48299155332424,63.26422482208373,64.99625837664176,0.2290634778124172,227.9300064829073,0.0858495206413394,83.43449262622471,158.22708,111.30249823346264,165193.28064479082,116202.7690022892,396.91807,261.1919112944635,413848.7623064636,272147.0420580516,384.8883,187.523424329288,398423.7077560736,193048.9070843943,2690.62,1245.4785942133544,2778328.680454778,1269689.5985047591,1130.39086,507.1596443436632,1162560.464800643,511951.7301603364,1807.99428,764.8054629495117,1854163.369282649,771204.0198852705,0.38183,100000,0,719214,7508.785483854129,0,0.0,0,0.0,34283,357.3389849973377,0,0.0,35173,363.7179875343224,1576254,0,56675,0,0,0,0,0,67,0.6994978232045352,0,0.0,1,0.0104402660179781,0,0.0,0.06042,0.1582379593012597,0.306521019529957,0.01852,0.3313980856739369,0.6686019143260631,24.545792479917026,4.2976983093396255,0.3283866864532542,0.2317150731397074,0.225567097731609,0.2143311426754293,11.167994949981448,5.87052448571743,19.86719378963892,12199.242027938915,53.84769824679173,13.176965922250888,17.657868523714686,11.908210974263136,11.10465282656302,0.5717617129531481,0.7941445562671546,0.7004519044544868,0.5808270676691729,0.1246290801186943,0.7432744043043813,0.920863309352518,0.8765743073047859,0.717391304347826,0.1753554502369668,0.5064402810304449,0.7159763313609467,0.6397569444444444,0.5329949238578681,0.11125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0049065325818093,0.0071340139229973,0.0093964912993569,0.0114919149801688,0.0135710213389802,0.0161860787491463,0.0183582668326632,0.0206221386527141,0.022853575412705,0.025189588030334,0.0275457213818017,0.0295526499732741,0.0316419201383883,0.0339273192261683,0.0358323689866093,0.037915722137689,0.0400501923695153,0.042029467384302,0.0441015710403848,0.058978827310578,0.0736487617135207,0.0871506740183232,0.0997982599924347,0.1121938372399262,0.1277717328149924,0.139292147928367,0.1501796840113126,0.1607826819874318,0.1703533898214304,0.1827775387263339,0.1952656326001189,0.2073286026319507,0.2172520469178718,0.227166739991201,0.2367969346961827,0.2463494896536338,0.2558516020236088,0.2641353272638632,0.271198085445031,0.2780669488976797,0.2845049342874515,0.2915410533782585,0.2967371130934562,0.3026021943878046,0.3066343241313074,0.3110621573585,0.3146678872952904,0.3188263299523908,0.322681431678861,0.321855925139154,0.3203763477783119,0.3189306500937161,0.3171094856746364,0.3165847063542765,0.3147958168093218,0.311423778171689,0.3126640419947507,0.313404495535256,0.3149170283836164,0.3154563499494401,0.3156886747749171,0.3167339426515801,0.3183531458393737,0.3210119533387739,0.321822017345105,0.3241839762611276,0.3280035252274086,0.3305283825952806,0.3337170987335742,0.3378458183800482,0.3389803589390651,0.3437382474614516,0.34579226686884,0.3501737252324162,0.3523236612408587,0.3540212443095599,0.3587620737236349,0.3616734143049933,0.3650971599402092,0.0,2.1439471890000545,56.98325923114346,180.04351514207417,251.61825328757345,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95640,45161,429.2032622333752,5943,60.863655374320366,4712,48.63028021748222,1863,19.061062317022166,77.25911226955019,79.65731235764581,63.27736057920528,65.04654750659876,77.0251964935889,79.42443187912895,63.19185382183687,64.96389533044156,0.2339157759612931,232.88047851686144,0.0855067573684138,82.65217615719678,158.94076,111.83068215480056,166186.49100794646,116928.77682434188,397.42914,260.84988140085784,414905.5207026349,272099.93872946245,382.46972,186.34428469788847,395672.5533249687,191489.80378249852,2730.62932,1256.3402493304102,2820232.204098704,1278733.8031476475,1131.71657,504.1583518728414,1164984.452112087,508817.3482568399,1832.63362,763.8267756434792,1877741.844416562,766340.4121040181,0.38176,100000,0,722458,7553.931409452112,0,0.0,0,0.0,34301,357.97783354245087,0,0.0,34943,361.1668757841907,1567203,0,56324,0,0,0,0,0,76,0.794646591384358,0,0.0,0,0.0,0,0.0,0.05943,0.1556737217099748,0.3134780413932357,0.01863,0.3374518613607188,0.6625481386392811,24.138288756913703,4.376126901892277,0.3255517826825127,0.2217741935483871,0.2200764006791171,0.232597623089983,11.346841893722218,5.86781704687387,19.95057469198922,12199.128113874443,53.69487515870716,12.61791447130973,17.50637366125791,11.616725003041116,11.953862023098411,0.5519949066213922,0.7875598086124402,0.7033898305084746,0.5593056894889104,0.1085766423357664,0.7429467084639498,0.921119592875318,0.883495145631068,0.7384615384615385,0.1421800947867298,0.4810826542491269,0.7070552147239264,0.6372549019607843,0.4993564993564993,0.1005649717514124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0044616149017937,0.0070336763899884,0.0091651763940822,0.0113942723434559,0.0137799686309657,0.0158451781307991,0.0183039496922118,0.0204863986260618,0.0225807112002784,0.0245445318186944,0.0266041009949584,0.0284700437130367,0.0303379930567717,0.0324864295886565,0.0342859506183051,0.0360602073902188,0.0380419551385183,0.0400237146750153,0.0420528109916916,0.0567741261298918,0.0711884288691754,0.0847833163570686,0.0978951026124314,0.1096338849171568,0.1254156870220923,0.137564788852069,0.1485691760243762,0.1591732868583403,0.1693992591399581,0.1832741940702552,0.1957376729471164,0.2073363320517987,0.2176575629101346,0.2273754782934709,0.2376024339869861,0.2476339635305962,0.256765899864682,0.2646774542022492,0.2715523183677221,0.2787845739743828,0.2856321973872458,0.2920631154348084,0.2977339664602993,0.3033487340151893,0.3081581451682672,0.3127573049502962,0.3174785392670824,0.3216728754818863,0.3251518319065324,0.3237279896294696,0.3220470048882874,0.3205929781876821,0.3195017731527236,0.3188247770691123,0.3168653387679766,0.3146983128395768,0.3149365087207866,0.3157741260420598,0.3167648480724812,0.3185888890974973,0.3196453662108409,0.3207000755477209,0.3216958163014586,0.3227504326091136,0.3237423185084887,0.3250355618776671,0.3283516345215996,0.331763382657903,0.332644299570679,0.337136598055771,0.3403202638718944,0.3423611111111111,0.3455636584624734,0.3472701819878674,0.3494018713727348,0.3486420506560879,0.3465805931006657,0.3452777777777778,0.3530556636823667,0.0,2.521114263097449,55.7120242167347,175.74867098780288,259.3556521141883,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95632,45084,429.1136857955496,5920,60.96285762088004,4619,47.87100552116446,1833,18.843065082817468,77.28554750318864,79.7181758954596,63.27381344368565,65.07237542705184,77.05374021475556,79.4856701947136,63.18662067030835,64.98702515577529,0.2318072884330746,232.50570074598895,0.0871927733772963,85.35027127655326,157.98838,111.14706304896316,165204.5131336791,116223.7149165166,398.07668,261.2425166186664,415842.74092354026,272758.66511070187,373.92827,181.8188094317473,388760.0803078468,188250.4289522269,2670.55468,1232.6793222773288,2768276.978417266,1264726.537432375,1110.20053,495.9288265659049,1144438.6397858458,502110.0223417942,1805.43372,772.6829671992641,1856846.8713401367,780502.032762081,0.38128,100000,0,718129,7509.296051530868,0,0.0,0,0.0,34407,359.3462439350845,0,0.0,34126,354.6720762924544,1573429,0,56467,0,0,0,0,0,71,0.7215158106073281,0,0.0,1,0.010456750878367,0,0.0,0.0592,0.1552664708350818,0.3096283783783783,0.01833,0.3310211324407162,0.6689788675592837,24.4235521610242,4.45242917214897,0.3134877679151331,0.2299198960814029,0.2240744749945875,0.2325178610088764,11.239244979444283,5.710422344977126,19.73695426855763,12130.953292554486,52.36708491848436,12.7680054453041,16.280546146648586,11.420817731254962,11.897715595276711,0.5615934184888504,0.8107344632768362,0.6857734806629834,0.5826086956521739,0.12756052141527,0.734108527131783,0.9394673123486684,0.8801955990220048,0.673728813559322,0.1724137931034483,0.4947431661159507,0.7288135593220338,0.6092396535129933,0.5556946182728411,0.1152019002375296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022598297527361,0.0045339743784803,0.0066705925354343,0.0088123189510596,0.0109062792495828,0.0130489258319836,0.0153420856667788,0.0173872180451127,0.0192899735095273,0.0212918488780557,0.0235428079029974,0.0256473489519112,0.027730599388568,0.0298732089475311,0.031885344925501,0.0339784234425263,0.035886382242303,0.0375632198232441,0.03965610558308,0.0416066921167365,0.0559039973239672,0.07038962127722,0.0837501576226304,0.0968826051686174,0.1095372394925584,0.1245684268496748,0.1372234383966334,0.1477659200187639,0.1585779566152627,0.1689069400122489,0.1819427658839779,0.1948019560432411,0.2066962388150796,0.2166823730522255,0.2266302070699274,0.2362330584200069,0.2454893017640351,0.2539054574964496,0.2625788486673865,0.2704301568375676,0.2772630408598165,0.2841283039196168,0.2910194692783798,0.297037668559901,0.3027632379793061,0.3080170859978766,0.3128798225719548,0.3167996329620473,0.3211607814648574,0.3260717352533192,0.3241334698938062,0.3222384280918047,0.3198815566835871,0.3183343458011513,0.3173602853745541,0.3156062627470825,0.3148089424449025,0.3147554459515002,0.3147198577923631,0.3136637630350403,0.3151167584991941,0.3154830050136197,0.3165838626501477,0.318145251396648,0.3187187860161352,0.3208213275186252,0.3213315985971263,0.3242221666874922,0.32769166608744,0.3315202396436876,0.3341338529158548,0.3356059404894033,0.3368012033091,0.3400060432089439,0.3451814534937961,0.3487936284844226,0.3510445049954587,0.3544379883790823,0.3549257759784076,0.3564208161737177,0.0,1.6619234673670162,57.28042672444076,166.2627975752135,250.8532736324453,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95825,45519,430.8374641273154,6027,61.92538481607096,4748,49.12079311244456,1883,19.42081920166971,77.35864855579545,79.66391465533314,63.35358995694328,65.05447594544037,77.13047756304447,79.43289689091615,63.26920659740602,64.9706229573747,0.2281709927509894,231.0177644169897,0.0843833595372558,83.8529880656722,157.93492,111.13377875093836,164815.9874771719,115975.76702419863,402.17074,264.4296812217383,419271.7662405426,275529.46644585265,386.90788,187.90522216010672,401053.399426037,194039.77384657855,2717.36464,1236.8750393450548,2814445.917036264,1269452.8560866732,1115.60373,489.8184315688424,1153572.5854422124,500522.4435886695,1837.87992,764.3818157060089,1897433.3420297415,779748.1890332657,0.38324,100000,0,717886,7491.635794416906,0,0.0,0,0.0,34570,360.3235063918602,0,0.0,35333,365.9274719540829,1573909,0,56528,0,0,0,0,0,74,0.7722410644403861,0,0.0,1,0.0104356900600052,0,0.0,0.06027,0.1572643774136311,0.3124274099883856,0.01883,0.3300848789688777,0.6699151210311223,24.89958052891223,4.304196239429386,0.3138163437236731,0.241575400168492,0.2268323504633529,0.2177759056444818,11.23638741227265,5.888542551042325,19.917206425922725,12249.31150469424,53.80626676682184,13.745396116902594,16.916263723445116,11.88644587634822,11.258161050125912,0.568871103622578,0.7776809067131648,0.7127516778523489,0.5821727019498607,0.11605415860735,0.7329545454545454,0.9004854368932039,0.8853333333333333,0.7166666666666667,0.1365853658536585,0.5113765642775882,0.708843537414966,0.6547085201793722,0.5436081242532855,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023075521729449,0.0045680600431484,0.0066912010705921,0.0090616660070829,0.0115010261516266,0.0139463913330959,0.0160840158089883,0.0181979537502677,0.0204830108493553,0.0227909736287567,0.0249405932481153,0.0270170472029047,0.0288488210818307,0.0309332455210595,0.0330449844827763,0.0352185408576386,0.0372692657892558,0.0391959694808425,0.0411005858157796,0.0432442561342508,0.0585136347514031,0.0723955883121635,0.0862757428077346,0.0994945408308025,0.1121321011201618,0.1276298965477159,0.1389227523772168,0.1501069001095593,0.1601400691805098,0.1700599315986405,0.1828919035314384,0.1952467493130828,0.2065680730752501,0.2176547801356377,0.2274928994473678,0.2383548891179306,0.2475949197562554,0.2569130385870176,0.2661514542834122,0.2735625336525794,0.2805744572513077,0.2862661094918706,0.2920949178231421,0.2969122849091672,0.3025871082257398,0.3078146577234169,0.3119440517446297,0.3168870803662258,0.3211797912836315,0.3247436963147686,0.3239157940075914,0.323215096208068,0.3216074745314347,0.3210676752511837,0.3198550703116879,0.3181317672967517,0.3164865420826938,0.3172577996715928,0.3182012481832948,0.3204880492342922,0.3205465055176038,0.3213882897678928,0.3214210725234115,0.3223541512935757,0.3234303584315612,0.3252272489812977,0.3269000171301319,0.3306421092468777,0.332453268560566,0.3351659296442373,0.339023169010879,0.3438680500133014,0.3449297283670511,0.3464657282741738,0.3462401795735129,0.3481524926686217,0.3569689592209373,0.3610210696920583,0.3662049861495844,0.3753918495297805,0.0,1.6930929315822136,54.55156619173509,181.30050893393923,262.26556607527493,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95860,45593,431.4103901523055,6185,63.32151053619862,4803,49.5305654078865,1857,19.00688504068433,77.41454581429173,79.70394652840244,63.37712166936033,65.0685362540181,77.18614952239862,79.4771020101365,63.29223132998175,64.9864364992277,0.2283962918931052,226.84451826593488,0.0848903393785747,82.09975479040565,158.33708,111.41472621301368,165175.10953473818,116226.3002801956,402.75016,264.699500889261,419546.5157521385,275535.413220914,392.13521,190.6503131422596,405360.2023784686,196012.25880238827,2759.0744,1264.107427466654,2847872.689338619,1288436.838325322,1153.06508,506.7803678099863,1187537.0957646568,513340.65075108025,1817.23762,762.0325039670319,1862112.163571876,765707.8404798678,0.38409,100000,0,719714,7507.95952430628,0,0.0,0,0.0,34655,360.90131441685793,0,0.0,35845,370.3108700187774,1572351,0,56526,0,0,0,0,0,78,0.8032547465053202,0,0.0,0,0.0,0,0.0,0.06185,0.1610299669348329,0.3002425222312045,0.01857,0.3305581251927227,0.6694418748072772,24.42103444049711,4.3312574142520095,0.3291692692067458,0.2373516552154903,0.2165313345825525,0.2169477409952113,11.405837104925237,6.026349923655758,19.753175819300704,12279.062722604089,54.36126426080183,13.67825099242385,17.726998674944337,11.63721331568871,11.318801277744932,0.57859671038934,0.8078947368421052,0.7014547754585705,0.5990384615384615,0.1209213051823416,0.7385826771653543,0.9257425742574258,0.890818858560794,0.7396694214876033,0.1176470588235294,0.5210868949900934,0.7432065217391305,0.6366723259762309,0.556390977443609,0.1218026796589525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024092726628536,0.0047717947419077,0.0069055031079834,0.0093395326173025,0.0115662160788698,0.0138381546413781,0.0158822330888345,0.0181361948671916,0.0202766200866225,0.0220931184027493,0.0243887449168775,0.0267004482557006,0.0289037534806777,0.0309103260869565,0.033167341973132,0.0351572989609799,0.037141260940636,0.0393376028518725,0.041542533866196,0.043436203076731,0.0579495574021749,0.0728572324283654,0.0865789528817749,0.0997532678880781,0.1119102022765323,0.1278950647924213,0.1394444679859316,0.1508078231292517,0.1616148683971876,0.1720718019021506,0.1846193570598614,0.196232984095062,0.2077171326429712,0.2181647326209052,0.2282568081411961,0.239269234599595,0.2479066085385841,0.257442098284019,0.2659726474790773,0.2741010406291857,0.2806262864543583,0.2870102996364146,0.2930510379088059,0.2980408603438979,0.3032077764277035,0.3076458479705161,0.3129857938544339,0.3177677117263843,0.3226684643107159,0.3270736764259208,0.3263583114522319,0.3246299455235789,0.3235708251196846,0.3220231305678684,0.3209997476883803,0.3189888516768362,0.3170881879321777,0.3171198899821548,0.3175628461866212,0.3180030956998239,0.3188332773485612,0.3204893327817505,0.3212959485959861,0.3229050776556451,0.3249269531062892,0.3261997405966277,0.3266249043340231,0.329433785680861,0.3334148300792847,0.3356919792860813,0.3390381575976518,0.3395520421607378,0.3427095650009334,0.3422712933753943,0.3507205950720595,0.3522367030644593,0.3517084282460136,0.3596437968022667,0.3669950738916256,0.3666666666666666,0.0,2.184005704135756,55.53577239714264,181.8139991116504,262.73524035758106,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95710,44818,426.2355030822276,6057,62.2087556159231,4754,49.08577996029673,1834,18.73367464214816,77.36002699221102,79.73171298834065,63.33690834044432,65.0885878023374,77.13403622853116,79.5084732346487,63.25321985693114,65.00850148324324,0.2259907636798601,223.23975369194216,0.0836884835131854,80.08631909416408,158.6068,111.57284238666004,165716.0171350956,116573.86102461608,399.19015,261.9607226012519,416500.0417929161,273122.95947906043,377.68531,182.89458516829643,390816.4037195695,188200.61844190315,2717.27428,1240.568934805551,2805295.580399122,1262775.080421078,1127.36928,497.8451739934028,1161434.019433706,503902.3043373742,1799.17782,747.8467746403282,1840396.2804304669,749004.8284748934,0.37873,100000,0,720940,7532.546233413437,0,0.0,0,0.0,34486,359.70118064987986,0,0.0,34537,357.16226099676106,1575215,0,56483,0,0,0,0,0,70,0.7313760317626162,0,0.0,0,0.0,0,0.0,0.06057,0.1599292371874422,0.3027901601452864,0.01834,0.3244949494949495,0.6755050505050505,24.53144215368503,4.324113020875567,0.3289861169541438,0.2336979385780395,0.2198148927219184,0.2175010517458981,11.33451532870231,5.887138462486105,19.397248665182826,12056.740895867066,53.84434976117314,13.330334204187508,17.60175104587308,11.581841625354215,11.330422885758354,0.5645771981489273,0.7821782178217822,0.6924552429667519,0.5818181818181818,0.1199226305609284,0.7338645418326694,0.9166666666666666,0.8526570048309179,0.7016806722689075,0.1835748792270531,0.503858245212918,0.7076923076923077,0.6347826086956522,0.5464684014869888,0.1039903264812575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00223840536407,0.0042575190828087,0.0064032960230559,0.0085942420609927,0.0109544733308922,0.0131359211437415,0.0153211009174311,0.0172691828777888,0.0192997699974444,0.021458260816151,0.0235805532202833,0.0252761693564946,0.0273233034768569,0.0292521140832449,0.0313041683862979,0.0333129995140561,0.0352850986242333,0.0374595200531429,0.0394828536658935,0.0412633246152403,0.0560707646677945,0.0694325246478136,0.0826016260162601,0.094682149017628,0.1074911698033633,0.123270147691592,0.1359528153774345,0.1472995264194115,0.1580729222291048,0.1684632793813216,0.1816673668788848,0.1935923653715064,0.2047796035472091,0.214437181645279,0.2238827307117093,0.2342296447240187,0.2438004082862019,0.2530723304736954,0.2613333635631936,0.268741629368468,0.2762439881613022,0.2829999065158455,0.2900944790644326,0.2954374034743257,0.3003630535352186,0.3061870397280855,0.3102943568059847,0.3142326905721295,0.3187970703175548,0.3220399335320338,0.3217996339362618,0.3208575281393621,0.319583415541588,0.31769944770552,0.3166842519802054,0.3144230474849218,0.3125790538831267,0.3128275681341719,0.3129893390191897,0.3139141279173347,0.3141847683852394,0.3152746277487427,0.3154589271183258,0.317373004030911,0.3175732317788795,0.3189041807322773,0.3186225722978929,0.3239077784417953,0.3281239025075507,0.3319915507552509,0.3363179534033805,0.3387603085927108,0.3396546310832025,0.3404368269376611,0.3383395522388059,0.3383963263864359,0.3440974866717441,0.346992329430763,0.3465045592705167,0.3445216049382716,0.0,2.1842124179088227,55.03061104555467,177.3119705894356,263.9435519774736,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95746,45407,430.493179871744,5840,59.83539782340777,4512,46.48758172665177,1796,18.329747456812814,77.33346816806463,79.6962314918559,63.32120940122799,65.0706346640992,77.10831447418087,79.47429733356131,63.238386973306994,64.99172781672364,0.2251536938837546,221.9341582945873,0.0828224279209948,78.90684737556342,157.92832,111.15619932127169,164945.0838677334,116094.87531726826,396.80982,261.7408464682533,413789.9964489378,272720.5415386405,382.83383,186.39000631782716,395844.54703068535,191566.8503805689,2596.44884,1188.506243841211,2678721.534058864,1208280.153989604,1120.82936,492.0298973543804,1154050.2266413218,497497.55926097406,1766.4246,732.6889513094357,1806470.5157395608,733472.5499815103,0.38189,100000,0,717856,7497.5038121697,0,0.0,0,0.0,34204,356.5475320117812,0,0.0,34898,360.5581434211351,1576910,0,56499,0,0,0,0,0,76,0.7833225408894366,0,0.0,2,0.0208886010903849,0,0.0,0.0584,0.1529236167482783,0.3075342465753424,0.01796,0.3362309332458586,0.6637690667541414,24.52641406655973,4.35824775110091,0.3164893617021276,0.2382535460992907,0.2149822695035461,0.2302748226950354,11.309010880305108,5.7762448320811,19.00759303997431,12147.171887151875,51.175671516697776,12.824937788974268,16.175499714041816,10.86572339039695,11.309510623284732,0.5565159574468085,0.772093023255814,0.6897759103641457,0.5835051546391753,0.1251203079884504,0.7275693311582382,0.9132653061224488,0.8605263157894737,0.7310924369747899,0.1527777777777778,0.492696287279367,0.6910688140556369,0.6278625954198473,0.5355191256830601,0.1178614823815309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0045430576400438,0.0065160465257901,0.0089617752850088,0.0113402900673297,0.0133694467920455,0.0156077967622232,0.0177583637811026,0.0196843955684559,0.0219053565762132,0.0239689162728232,0.026056424787483,0.0283416630673988,0.0305149330587023,0.0320254222423986,0.0340789283277861,0.0360970457581311,0.0383733358237607,0.04064043249987,0.0428700878024393,0.0572269661983005,0.0714315617608272,0.0843625069515125,0.0978608388372386,0.1101889737208419,0.1255630511557087,0.1373039954168346,0.1484552101403773,0.1593814410970022,0.1697676164330677,0.182450773406868,0.1947074033603444,0.2058727569331158,0.2156442422320169,0.2249879009195301,0.2352374519725842,0.2449211948028753,0.2536737403515088,0.2625899280575539,0.270971656211365,0.2776833512551019,0.2848925573456169,0.2910462764762231,0.29699626329405,0.302644668203324,0.3077197558814844,0.3126827805134101,0.316283619824421,0.3207537408983329,0.3248176626528271,0.323609783676821,0.3218163327011352,0.3211757918583872,0.3196302181135346,0.3191350323768787,0.3168878129500812,0.3148192141397823,0.3153264063295087,0.315293313978311,0.3155640426177431,0.316431766709716,0.3172748623418658,0.3167631749482618,0.3171880931645117,0.3183971907545037,0.318687343358396,0.3192765945346489,0.3219182389937107,0.3247493403693931,0.3294462954148818,0.3333333333333333,0.3348543534780071,0.3372173584430308,0.3402242733999542,0.3417948475983769,0.3438810979264053,0.3442975714724869,0.3465711361310133,0.3535325328120636,0.355288647810926,0.0,2.3562483462212804,53.54888137405635,165.3207086305994,248.47530311108684,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95804,45382,430.57701139827145,5892,60.28975825644023,4614,47.64936745856123,1777,18.266460690576597,77.34149214859087,79.68001509080015,63.33904717832892,65.07215363637529,77.11964923115868,79.45726767192798,63.25776469629805,64.99223109796564,0.2218429174321983,222.7474188721743,0.0812824820308648,79.92253840964736,157.36292,110.73264634940018,164254.60314809403,115582.04203310946,396.8617,261.50365516836,413722.4019873909,272436.55000663846,381.13337,185.73242887704995,394242.5368460607,191181.33158193,2636.74436,1217.2594746385712,2725776.0427539563,1244162.479059926,1060.28226,476.0293276239784,1095610.287670661,485809.0933216953,1735.47918,727.7426144832674,1786209.156193896,739194.83281052,0.38215,100000,0,715286,7466.118324913365,0,0.0,0,0.0,34294,357.4172268381278,0,0.0,34795,359.56745021084714,1580761,0,56701,0,0,0,0,0,60,0.6262786522483403,0,0.0,0,0.0,0,0.0,0.05892,0.1541802956954075,0.3015953835709437,0.01777,0.3419218927240318,0.6580781072759683,24.63452620326477,4.313125067128051,0.3246640658864326,0.2429562201993931,0.2219332466406588,0.2104464672735153,11.289650735698448,5.988867984556947,18.96216252938501,12164.840809657995,52.3928441652419,13.457431012156237,16.872145607292104,11.493718400408774,10.569549145384778,0.5606848721283052,0.7707404103479036,0.6935914552736983,0.576171875,0.0968074150360453,0.7382657120127287,0.9296116504854368,0.8567708333333334,0.7379032258064516,0.1549295774647887,0.4941912421805183,0.6784203102961918,0.6373429084380611,0.5244845360824743,0.0804749340369393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.004724106120049,0.006839514942412,0.0093281307157663,0.0116497939665259,0.0138635645964694,0.0159209358776913,0.0179315415407237,0.0203186354712041,0.022230641626902,0.0242186859158395,0.0264428013965906,0.0284406500720016,0.0305758730812815,0.0324514518026291,0.0345337274926095,0.0365933212529122,0.038661825726141,0.0405864566340049,0.0423476504757344,0.0569970891107702,0.0712851825519635,0.0849496505401695,0.0979930650415046,0.1097764009188426,0.1252443908986187,0.1372578115063382,0.1486262334127254,0.1588837904172446,0.1695118684027219,0.1823670587728833,0.194958219377993,0.206233162422873,0.2165023930764691,0.2258610643888174,0.235922469808167,0.2455084481298203,0.2543057957020636,0.2624706988120987,0.2700366953599232,0.2770639236195292,0.2836014288048934,0.290457510161641,0.2967514208794496,0.3015258842365727,0.3076544485868616,0.3118729619310586,0.3172060074394749,0.3208670826389696,0.3251193937560026,0.3242273582370331,0.3223046284850982,0.3217587055926837,0.3204671102963465,0.3193972236656521,0.3173551949343081,0.3155238426731639,0.3161928834033613,0.3170806710629719,0.316181328000857,0.3162945884646385,0.317733161902878,0.3177995427948239,0.3181685883801634,0.319150474904778,0.3204806687565308,0.3225593667546174,0.3266024218601407,0.3299151343705799,0.3332668289373927,0.335295740962193,0.3367986710251326,0.3373846643334394,0.3413636012663115,0.346882436934793,0.3465500718735026,0.3486811300140471,0.3566694283347141,0.3660112359550562,0.3564547206165703,0.0,1.8962651494963096,55.31980900459151,173.15259428365,249.138137425278,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95698,45114,427.6264916717173,5934,60.78496938285022,4658,48.02608204978161,1780,18.20309724341157,77.3419109081298,79.71167308265443,63.33255108723839,65.08132796458301,77.11531324817061,79.48899179361906,63.24687640237509,65.00042260228382,0.2265976599591965,222.68128903536424,0.0856746848632923,80.9053622991911,157.97848,111.19538686544747,165080.23156178812,116194.05511656195,395.40264,260.2556951133389,412512.3827039228,271291.11457663984,381.46338,185.859329436174,394852.79734163726,191264.67633566936,2692.42144,1242.2055126571531,2777238.6047775294,1261887.979626994,1112.85075,490.86430499271086,1148166.4820581411,498254.6886910665,1750.6219,744.3433350556732,1791477.2513532152,743112.0297480935,0.38018,100000,0,718084,7503.646889172188,0,0.0,0,0.0,34152,356.17254279086296,0,0.0,34843,360.4046061568685,1576987,0,56567,0,0,0,0,0,62,0.6374218896946645,0,0.0,0,0.0,0,0.0,0.05934,0.156083960229365,0.2999662959218065,0.0178,0.3280116110304789,0.6719883889695211,24.5069422712317,4.349548903817472,0.3149420352082439,0.2340060111635895,0.2282095319879776,0.2228424216401889,11.050931944808264,5.629273841191839,19.02980725968634,12134.476022826486,52.81235558095933,13.13123709603722,16.560848801538533,11.68551657307274,11.434753110310837,0.5573207385143839,0.7926605504587156,0.7062031356509885,0.5465663217309501,0.1107899807321772,0.7311912225705329,0.910377358490566,0.8794871794871795,0.7231404958677686,0.1318181818181818,0.4917208752217623,0.7177177177177178,0.6434540389972145,0.4945188794153471,0.1051344743276283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0046113306982872,0.0066037735849056,0.0092223937596489,0.0116321633383495,0.0141015720452879,0.0161472827915226,0.0181779211235404,0.0203906417686198,0.0224655851798782,0.0245110099643252,0.026656535266514,0.0285884700026737,0.0307226308957161,0.0326505340281719,0.0348067897533442,0.0367451349979804,0.0387209929843497,0.0406904799043311,0.0428968952903044,0.0572070190098182,0.0715736359448934,0.0846913398881415,0.0975522526218351,0.1093810985579712,0.1247698656226854,0.1365550899156543,0.1479584775086505,0.1589102564102564,0.1692522261559918,0.1816615145999159,0.194454365401474,0.2058522789078646,0.2154223033935191,0.22561237172366,0.2355057622690387,0.2439358961490849,0.2521920949682989,0.2604183208184932,0.2682857044760062,0.2757667256678119,0.2829190656742967,0.2898888639026641,0.2956936423111025,0.3011771566019169,0.306078914919852,0.3109396334665347,0.3150327628984032,0.319095770161969,0.3231332858912522,0.3215694192072145,0.3201577768309946,0.3192999718864211,0.3191007671454115,0.3185080824558802,0.3163059427732942,0.3146621173348498,0.3159085320875338,0.3169258077179089,0.3178824495332607,0.3179962546816479,0.3200719040752227,0.3198086686527084,0.319906008727761,0.3218202809313065,0.3226083784910379,0.3228949992876478,0.3270892918879844,0.3300748971482823,0.3329882128066263,0.3356579607092392,0.339468085106383,0.3450384566889421,0.3498052394409226,0.3491883729709324,0.3507604562737642,0.3492742551566081,0.3453428863868987,0.3503344481605351,0.3468917881811205,0.0,2.541848781881994,55.4610369276007,173.24670547024738,251.28359492562527,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95716,45178,428.8311254126792,6029,61.90187638430357,4743,49.03046512599774,1846,19.03547996155293,77.33810060160408,79.71875540519366,63.31256206328344,65.07405215239183,77.10942083411761,79.48772053566528,63.23016677415808,64.99216567323857,0.2286797674864686,231.0348695283864,0.0823952891253583,81.88647915325475,157.17328,110.65723701481365,164207.94851435497,115609.9680459,398.89727,261.68156673710405,416232.9286639642,272875.8062780559,380.70226,184.87295303566285,393435.6847340048,189982.0479933484,2718.83236,1231.9074218228836,2814531.6979397386,1261055.8546354682,1112.54956,485.33440503798977,1150038.6978143677,494751.0186781611,1811.43604,750.9415244942777,1869660.6001086547,766345.032069748,0.38085,100000,0,714424,7463.997659743408,0,0.0,0,0.0,34393,358.8010363993481,0,0.0,34845,359.7413180659451,1579395,0,56664,0,0,0,0,0,64,0.6686447406912115,0,0.0,0,0.0,0,0.0,0.06029,0.1583037941446763,0.3061867639741251,0.01846,0.3276353276353276,0.6723646723646723,24.709319198820683,4.348336115175408,0.322369808138309,0.2306557031414716,0.2264389626818469,0.2205355260383723,10.957759075294325,5.663350729238085,19.675914833844303,12222.481443518358,53.4063045046722,13.036123348783487,17.105583843678016,11.821321035594435,11.443276276616247,0.5620915032679739,0.7979890310786106,0.697187704381949,0.5623836126629422,0.1175908221797323,0.7427884615384616,0.945945945945946,0.8535911602209945,0.7546468401486989,0.1428571428571428,0.4975679542203147,0.710334788937409,0.6486718080548415,0.4981366459627329,0.1112440191387559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025440392450994,0.0048082775410833,0.0069141267488374,0.0089029818891395,0.0112839714695617,0.0134550158384175,0.0156049201395263,0.0177719672750671,0.0199417088510507,0.0222290482772743,0.0244157548785364,0.0267078768213416,0.0286043307491414,0.0307087100694086,0.0329286031133622,0.0348562039496119,0.0367448361546824,0.0387903309471936,0.0407518296739853,0.0424895833333333,0.0573615563747245,0.0715025906735751,0.0849954359937467,0.0982658351649507,0.1100648494754046,0.1259254558531116,0.1386890742037473,0.1503401577821073,0.1609308388447854,0.1714202966951634,0.1840098241985522,0.1962441822708085,0.2079071083445784,0.2178997691693378,0.2274657805554333,0.2380503911183991,0.2478535142075587,0.2558741447605329,0.2639962759857852,0.2710988356101586,0.2782189909467688,0.284807978181733,0.2907786302926968,0.2971321053199267,0.3022622895050179,0.3071332502498674,0.3120614474739374,0.3169898830305038,0.3220837435870861,0.325776868773504,0.3250087461987674,0.3244715234702719,0.3235107775916201,0.321800906806827,0.3206521739130434,0.3184596296126097,0.3174266637131736,0.3178820982186792,0.317757967004816,0.3179968589377498,0.3191800329785639,0.3202441385031702,0.3214727268917248,0.3211598746081505,0.3220905353751472,0.3234523036988968,0.3261042352674009,0.3293826231461449,0.3319461444308446,0.3362803915377328,0.3379932356257046,0.3385682021114554,0.3398172891678578,0.3423065386922616,0.3416442673092965,0.3428403755868545,0.3469879518072289,0.3450269085110624,0.3398110661268556,0.3468536770280515,0.0,2.068076243151693,54.989574292880185,172.89472350172397,264.64560059571835,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95656,44839,425.880237517772,6008,61.70025926235677,4737,48.99849460567032,1884,19.298318976331856,77.27782633283482,79.68959546402891,63.2892740309558,65.07257679485132,77.0432251885066,79.45771515658086,63.20156198801264,64.98898940832413,0.2346011443282236,231.88030744805133,0.0877120429431599,83.587386527185,157.24808,110.59716102089592,164389.14443422263,115619.67991646728,394.45986,259.3165781707959,411867.1907669148,270586.68371121085,378.72888,184.17685146450992,393437.8815756461,190485.25781774684,2701.9436,1248.598887186541,2792865.141757966,1273520.079437298,1154.41127,515.8381703437747,1186514.008530568,518941.5617878382,1851.62252,778.0147870770212,1896639.26988375,778070.7110595513,0.37915,100000,0,714764,7472.23383791921,0,0.0,0,0.0,34159,356.5589194614033,0,0.0,34731,360.6464832315798,1579375,0,56727,0,0,0,0,0,59,0.6063393827883248,0,0.0,0,0.0,0,0.0,0.06008,0.1584597125148358,0.3135818908122503,0.01884,0.3250832936696811,0.6749167063303189,24.42721583981353,4.35560645183423,0.3101118851593836,0.242347477306312,0.2220814861726831,0.2254591513616212,11.182703508141936,5.825863399110323,20.03819066199608,12080.694561257496,53.868819662426176,13.684856564130166,16.775591029286982,11.700866040597244,11.707506028411784,0.5598480050664978,0.7822299651567944,0.6929884275017019,0.5779467680608364,0.1198501872659176,0.7292474786656322,0.9016393442622952,0.8446115288220551,0.7574468085106383,0.175438596491228,0.4965197215777262,0.7115117891816921,0.6364485981308411,0.5263157894736842,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023204912550919,0.0045635242576667,0.0070046494629768,0.0091872719696738,0.0113637519711073,0.0134676704597548,0.0158286588475267,0.0179762427609874,0.0200282318283177,0.0221673615308181,0.0243179487179487,0.0262649711362655,0.0283585775436285,0.0302293223396031,0.0322740506721179,0.0342248976045674,0.0359992539014735,0.0379834899537926,0.0400116548903711,0.0420720072570302,0.0572861696013375,0.0704201751078714,0.0838581685350799,0.0968196838626844,0.1083990249153132,0.1242298490398255,0.1359856410038552,0.1480419841227556,0.1584847933760523,0.1686084594156367,0.1816476978789446,0.1940353460972017,0.2047245808839538,0.2143967253305314,0.2240694051459335,0.235133098388634,0.2447630532850953,0.2540623874684912,0.2620798438528404,0.2697233635874603,0.276719234148823,0.2825672848812069,0.288252060886329,0.2933922922059246,0.2988276741784608,0.3036256011838698,0.3088220563930485,0.312754582484725,0.3175306913493823,0.3218412052869951,0.3198732213905186,0.3186100726966742,0.3178030730990848,0.3169417897480451,0.3162222553254878,0.3142642250840381,0.3123194157802826,0.3129704356419336,0.3137893221849085,0.3142667884061084,0.3152688091305001,0.3170325750970912,0.3186893917131942,0.3186658315064203,0.3202166064981949,0.3216500755720018,0.3244825124910778,0.3291503350613225,0.3327784664423587,0.3361085538165952,0.3388361535286834,0.3388050951340404,0.3411014273083239,0.340752110514198,0.3426110006626905,0.3398395401748293,0.3350316504554578,0.3401276508132592,0.3385431202902595,0.3420345489443378,0.0,2.0354249686173587,56.702897383391424,173.86872849236656,262.39572228800967,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95825,45483,430.2321941038351,5936,60.81920166971041,4655,48.07722410644404,1848,18.91990607878946,77.39792083527668,79.70125456987813,63.37134666233783,65.07132935357178,77.16797556770834,79.47250718946839,63.28670866416736,64.98921572774762,0.2299452675683397,228.74738040974307,0.0846379981704714,82.1136258241637,157.89708,111.08321715182642,164776.49882598486,115923.0025064716,399.7749,262.7742929967741,416696.9371249674,273727.3498531428,382.4481,186.1187474028584,395726.0318288547,191580.2227714393,2666.85424,1220.403276427651,2755107.9154709103,1245636.521187218,1082.47829,483.6178261160845,1113685.885729194,488757.2743902998,1815.30514,758.8514614464086,1860196.9632141923,764185.1487667033,0.38233,100000,0,717714,7489.840855726585,0,0.0,0,0.0,34442,358.89381685363946,0,0.0,34875,360.6052700234803,1578838,0,56562,0,0,0,0,0,68,0.7096269240803548,0,0.0,0,0.0,0,0.0,0.05936,0.1552585462820077,0.3113207547169811,0.01848,0.324955695182858,0.675044304817142,24.760719694259464,4.35171213781742,0.3125671321160043,0.2410311493018259,0.225563909774436,0.2208378088077336,11.21829920526221,5.749733923231257,19.591285357160988,12212.7302288831,52.55766593328053,13.331319160088338,16.410738622197915,11.608387887895832,11.207220263098444,0.5559613319011816,0.7834224598930482,0.6996563573883161,0.5561904761904762,0.1040856031128404,0.7384,0.9429280397022332,0.8726287262872628,0.7370517928286853,0.158590308370044,0.4889867841409692,0.694019471488178,0.6408839779005525,0.4993742177722152,0.0886392009987515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0047725683713483,0.0072924590496475,0.009524486459592,0.0116806278464541,0.013647188129694,0.0157730635202054,0.0179546034174955,0.0199337924269979,0.0221808434449878,0.0245579165215253,0.0264991023339317,0.0285406071813838,0.030789178509318,0.0328478814301763,0.035083372051004,0.0370355044277083,0.03911488832461,0.0412764013208448,0.0435022427591661,0.0584676367808897,0.0719358246263583,0.0854224990301238,0.0984020185029436,0.1112504743033011,0.1262804046554403,0.1386780049198405,0.1505992038996147,0.1608481999786347,0.1709747307906817,0.1838046826200271,0.1963549835054891,0.2070446268413328,0.2173580284708403,0.2266003893061772,0.2363094842667021,0.245913155957983,0.2546037099494098,0.2631763918963347,0.2706440910650955,0.2773558953731636,0.2836148688114763,0.2906868135116282,0.2957392584084138,0.3011115016787675,0.3066620752419722,0.3116025272831706,0.3161295236161003,0.3204518430439952,0.325008881462086,0.324003381324889,0.3227792556838439,0.3221091062276205,0.3215535490560331,0.3205901085716824,0.3185049580472921,0.3169204070363651,0.3175935470148399,0.3190702588483888,0.3185974794559618,0.3210601076555024,0.3222097311796146,0.3226440337820888,0.323470871072347,0.3250818724715854,0.3260336826737577,0.3262585812356979,0.3276859373518349,0.3311153358681876,0.3340224218812117,0.3378378378378378,0.3421404503396267,0.3431142657963115,0.3428571428571428,0.3441053828658074,0.3448604817553065,0.3475919372211109,0.3489593857344918,0.3546099290780142,0.3596358118361153,0.0,1.8987802209540616,55.08401545236228,168.92850755860178,258.4901487286351,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95547,45307,429.55822788784576,5919,60.79730394465551,4644,47.95545647691712,1825,18.66097313364104,77.19945181010942,79.66904808200292,63.224607941291474,65.05312120886813,76.97125995754622,79.44505950877468,63.139757124227245,64.97287271868045,0.2281918525631994,223.98857322824028,0.084850817064229,80.2484901876852,157.73538,110.95527930753006,165086.4600667734,116126.1570824098,397.05826,261.1833920114517,414905.5961987294,272698.2343887844,383.6035,186.709792553622,397678.849152773,192462.1504412017,2659.92232,1223.3342573537852,2747533.88384774,1243993.152431563,1099.79719,484.854384980099,1134759.3958994003,491156.9750804304,1793.732,746.5974814103965,1836550.556270736,747041.5835010516,0.38122,100000,0,716979,7503.930003035156,0,0.0,0,0.0,34269,357.991355039928,0,0.0,35077,363.1929835578302,1569697,0,56389,0,0,0,0,0,59,0.6174971480004605,0,0.0,1,0.01046605335594,0,0.0,0.05919,0.1552646765647133,0.3083291096468998,0.01825,0.3422028705047573,0.6577971294952427,24.38582137368336,4.368338054305284,0.3169681309216193,0.2383720930232558,0.2226528854435831,0.2220068906115417,11.2388360658753,5.8039611580155706,19.25888022092462,12169.053706873072,53.04880687405164,13.298047363880343,16.82077921170157,11.62715669912706,11.302823599342666,0.5656761412575366,0.7841011743450768,0.6949728260869565,0.6054158607350096,0.1066925315227934,0.7451768488745981,0.9270588235294116,0.8498727735368957,0.7489177489177489,0.1333333333333333,0.5,0.6950146627565983,0.6385542168674698,0.564134495641345,0.1004784688995215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020070754477906,0.0043322984517359,0.0067531887236981,0.0087034325687327,0.0111780754978213,0.0134967073742583,0.0157268969740266,0.0179644389944819,0.0201801064265247,0.0224228573770995,0.0246979479967562,0.026970890358138,0.0292269984140388,0.0313489648342806,0.0335961639815226,0.0356599418261616,0.037780658542909,0.0398873426798723,0.0417482604891462,0.0437528709232889,0.0584647893217289,0.0721798676580081,0.0851081723188192,0.097969377324889,0.1099049773277383,0.1259568693144468,0.1375421573946996,0.1487822059043268,0.1591595774315898,0.1689091085083728,0.181339035954595,0.1935746459000379,0.2047964037882425,0.214585070434897,0.22433300586138,0.2350516609265637,0.2445105982944244,0.2536508294774856,0.2616221506526613,0.2687616291089518,0.2768693756378143,0.2834597662066621,0.2899346529252007,0.2959596566008284,0.3007766848461238,0.3061615238283469,0.3106681562001833,0.3160203522105612,0.3213483729442764,0.3255690911736307,0.3242520790582136,0.3235119745205366,0.3218155652124838,0.3201418542375335,0.3190620903348826,0.317469093142901,0.3150843664185145,0.3158787399759588,0.3166821003532599,0.3173516390945101,0.318209179834462,0.3192995676833379,0.3198231392778187,0.3206374144316014,0.3206165889487545,0.3211196729045447,0.3236684525685471,0.3282442748091603,0.3328514509361447,0.3374761753494282,0.3413782153064464,0.3428495902722707,0.3446979192780145,0.3459928457264632,0.3509592887225082,0.3549038233198765,0.3595078979343863,0.3590101776092596,0.3625954198473282,0.3606118546845124,0.0,2.5283935229727628,54.30179800964389,182.0793351046112,247.4520023592653,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95670,45042,426.8109125117592,6005,61.471725723842376,4744,48.87634577192432,1835,18.689244277202885,77.33990302576841,79.73036340796999,63.32261558699434,65.08894997507409,77.11238685467832,79.51101493189037,63.23680286364922,65.01034026900643,0.2275161710900874,219.34847607961672,0.0858127233451213,78.6097060676525,159.42696,112.1022925881996,166642.5838820947,117176.01399414612,399.31991,262.38686086572494,416685.0318804223,273558.6210335449,383.1485,186.0946961414556,396802.7490331347,191598.74817234103,2733.96164,1257.9874127731855,2818203.073063656,1275697.8072061916,1114.09651,493.7362347738717,1147557.7506010244,499138.8519172003,1801.57022,760.185466629291,1837153.3186996968,753906.8729473206,0.37972,100000,0,724668,7574.662903731577,0,0.0,0,0.0,34410,358.9317445385178,0,0.0,35076,362.9455419671788,1569492,0,56347,0,0,0,0,0,78,0.8153026026967701,0,0.0,0,0.0,0,0.0,0.06005,0.1581428420941746,0.305578684429642,0.01835,0.332277478618942,0.6677225213810579,24.447337882894523,4.40004491954336,0.3159780775716694,0.2403035413153457,0.2204890387858347,0.22322934232715,11.250866343052746,5.868138067507657,19.4936416376321,12125.417115381451,53.78106141528957,13.635870484575811,16.953490933046726,11.665052321240095,11.526647676426949,0.5657672849915683,0.7973684210526316,0.6964643095396932,0.5850860420650096,0.1123701605288007,0.7368012422360248,0.9270588235294116,0.8525798525798526,0.7404255319148936,0.1538461538461538,0.5020254629629629,0.7202797202797203,0.6382783882783882,0.5400739827373613,0.1014319809069212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0046525771628402,0.0070217450863004,0.0095681144110835,0.0115920807784997,0.0137930332457908,0.0157379188029396,0.0178514927277366,0.0201179681669954,0.022129645741425,0.0242664698283816,0.0265051583431709,0.0287935502447451,0.0310053564070869,0.0332036289698308,0.0351662668541649,0.03699866344789,0.0388444250672147,0.0408855412912756,0.0430045871559633,0.0574819520043461,0.0715459923564211,0.0847612352181988,0.0975201742295916,0.1096188135003112,0.1245926615599475,0.136669885091619,0.147375031933918,0.158441752654404,0.1692312641410296,0.1819102188523177,0.1944769077608968,0.2059578448219607,0.2162945305836814,0.2257017061089708,0.2361789563464371,0.2451908056237447,0.254528679763271,0.2628736740597878,0.2707324056576762,0.2772791413171713,0.2832926102154623,0.2896685514206629,0.2951995497706944,0.300862727967675,0.3056673930976742,0.310319821959941,0.3143518106593113,0.3187649686063823,0.3224406332453826,0.3212064090480678,0.3204786136707468,0.3197537646677654,0.3186030038885757,0.3177386755439306,0.3150762453923922,0.3132124393290225,0.3135415299829419,0.3135002471324118,0.3145019140033829,0.3157904573233409,0.317732873336619,0.3184742647058823,0.3189345013296386,0.3181053137773503,0.3188500234582703,0.3195676353991387,0.3223642776168283,0.3263298432998384,0.3294289897510981,0.3329096686336813,0.3354872881355932,0.3325174166823573,0.3363194655329486,0.3388816158593604,0.3444326366749321,0.3489263803680981,0.3518707830709466,0.349609375,0.3429672447013487,0.0,2.74629391929375,55.88529734117905,174.88959363940523,259.9477971232123,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95782,45314,428.6295963751018,6053,61.963625733436345,4760,49.1010837109269,1851,18.886638408051617,77.331780499572,79.6736962268554,63.32970022966426,65.0632026666809,77.09824819182597,79.44530014668595,63.24111791872362,64.97996464448698,0.2335323077460316,228.39608016944624,0.0885823109406445,83.23802219391041,157.80776,111.08084843368437,164757.21951932512,115972.57149953472,399.23761,262.2460341102337,416217.4625712556,273193.1199079512,383.82309,186.49613672744616,397698.1061159717,192291.29872004248,2733.17004,1258.3812407896253,2820362.6151051344,1280627.8014549976,1133.17511,499.1790865871509,1168176.5049800589,506260.8805278141,1810.99692,770.9607622581192,1849892.8817523129,769284.468356498,0.38245,100000,0,717308,7488.964523605689,0,0.0,0,0.0,34462,359.1593410035289,0,0.0,35032,362.750830009814,1576625,0,56613,0,0,0,0,0,68,0.7099455012424046,0,0.0,1,0.0104403750182706,0,0.0,0.06053,0.1582690547784024,0.3057987774657195,0.01851,0.337684806542938,0.662315193457062,24.495989340950224,4.348729098529946,0.3157563025210084,0.2436974789915966,0.2147058823529411,0.2258403361344537,11.488073158236826,6.058806418306627,19.75056025933875,12221.68172564563,53.94249379074899,13.807246562428697,17.098128856398414,11.394027671773486,11.643090700148386,0.5649159663865546,0.7758620689655172,0.6866267465069861,0.6115459882583171,0.1227906976744186,0.737460815047022,0.9174757281553398,0.826302729528536,0.7727272727272727,0.1963470319634703,0.5017221584385764,0.6978609625668449,0.6354545454545455,0.5615384615384615,0.1039719626168224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271207900734,0.0043591095251611,0.0064233309994215,0.0087569588361981,0.0112178998220188,0.0138392447988268,0.0162313166534124,0.0182837192208746,0.0204248533049825,0.0225827916261452,0.0247467913232459,0.0270450648403889,0.0291002570694087,0.0309448267336931,0.0331303540097017,0.0350677680482181,0.0371824217253057,0.0395709944092356,0.0417047721982041,0.0436625291569476,0.0583373338064327,0.0719807521313876,0.0853015483641014,0.0986643688065489,0.1107083394802841,0.1258863936591809,0.1377917700184443,0.1488827677156561,0.1594970218398411,0.1700387937501339,0.1828321651970759,0.1954475625851959,0.2071789851525534,0.217365145001258,0.2276514943034839,0.238206580157578,0.2471710746568463,0.2560269087554701,0.2637787683896507,0.2722483709531498,0.2797626620710394,0.2865528531337699,0.2927100591715976,0.2981947208170507,0.3037588686947225,0.308227286179343,0.3132687056937451,0.317078144716214,0.3208760714239402,0.3241790177274048,0.3236371471665589,0.3229478894541455,0.32127926127166,0.3208117131831124,0.3195684800213977,0.31721633053393,0.3154342211588737,0.3159295524742064,0.3167139876167345,0.3178152100210556,0.3182337837584572,0.3190510054916834,0.3207139561223205,0.3216299677765843,0.3234790576547467,0.3238844184345281,0.3245764162245422,0.3289560491344915,0.3310697283674041,0.3326059355657832,0.3339869579096174,0.3364789933887822,0.3377786244999047,0.3397976391231028,0.3420704012112036,0.346585482330468,0.3458436724565756,0.3486480992071559,0.3547579298831386,0.3621706645694062,0.0,2.322076703867513,55.75636819385662,175.9141859742234,263.4181907420246,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95695,45097,426.5113119807723,6044,62.040858979048025,4725,48.86357698939339,1853,19.09190657819113,77.34192318165195,79.71579692095577,63.32298576779221,65.07434867876853,77.11291431174054,79.4853926604967,63.2383037294016,64.99097622304126,0.2290088699114107,230.4042604590677,0.0846820383906035,83.3724557272717,158.00092,111.14777827658092,165108.85626208267,116147.94741269755,397.51988,261.1825013571394,414823.177804483,272352.4336246819,382.46635,186.2272354873492,395563.2791681906,191535.8995042888,2719.74168,1253.9193647208351,2815211.07685877,1283446.2873931092,1110.98472,491.5695379048487,1147901.2905585454,500637.3521149022,1820.3877,762.426276429508,1877321.3020533987,775622.2273148578,0.38125,100000,0,718186,7504.948011912848,0,0.0,0,0.0,34239,357.2600449344271,0,0.0,35013,361.826636710382,1575513,0,56533,0,0,0,0,0,89,0.9195882752494906,0,0.0,1,0.0104498667641987,0,0.0,0.06044,0.1585311475409836,0.306585043017869,0.01853,0.3244226510597912,0.6755773489402088,24.49561276080126,4.44588545582207,0.3231746031746031,0.2313227513227513,0.2232804232804232,0.2222222222222222,11.318857904336127,5.84508157143029,19.67453818555409,12211.61356622713,53.54366443546581,13.104330318926168,17.182342041965484,11.768581716385846,11.488410358188307,0.5657142857142857,0.7923147301006405,0.704649639816634,0.5848341232227489,0.1085714285714285,0.7318217357310399,0.927007299270073,0.8730964467005076,0.757085020242915,0.105726872246696,0.504062681369704,0.7111436950146628,0.646072374227714,0.5321782178217822,0.1093560145808019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021364276095298,0.0044597155917738,0.006725706807876,0.0089991264956223,0.01132885196221,0.0136527458206919,0.0160471423036926,0.0182573800455413,0.0204916356497198,0.0227921978190754,0.0249876958411943,0.0272127006294862,0.0294060169709436,0.031425804191481,0.0334547931913663,0.0354897418927862,0.0374874403090978,0.0395669638686775,0.0415964726191218,0.0438058122935531,0.057709582401972,0.0718070068896195,0.0855907387776949,0.098101732011701,0.1103900900045371,0.1261415706318719,0.1383919565979042,0.1499297004814452,0.1611655051519945,0.1717882941384825,0.1844516796757083,0.1962875924582245,0.2077913596238203,0.2181549573210768,0.2273763002917056,0.2375439024120013,0.2469105482311702,0.2558817569849382,0.264035575319622,0.2710416308767107,0.2781454654849235,0.2849955538915149,0.2913455733513264,0.2970121337106134,0.3020839662190898,0.3065659242459725,0.311840885749355,0.316274452406104,0.3204034537298726,0.3242932628797886,0.3235516338811085,0.3230028688072382,0.321917421612621,0.3211230564707242,0.3199934710351377,0.3183152872086621,0.3167230530875518,0.3164020816574459,0.317116932383247,0.316831330028177,0.3172439618049054,0.3179588607594936,0.317867616254713,0.3183628714643752,0.3184142915456095,0.3203045817198992,0.320286314832699,0.3247139946716815,0.3272511185682326,0.3294987349778621,0.3335898248313945,0.3364332892998679,0.338659955960994,0.341813240733751,0.3426176059618072,0.3460776314255741,0.3499474553370365,0.3497615262321145,0.3487109905020353,0.3526785714285714,0.0,2.003031490917782,56.1851370938518,176.3199527634994,256.7565229528452,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95737,45211,428.5177099762892,5861,60.01859260265102,4580,47.24401224187096,1835,18.74928188683581,77.32392886815877,79.68727298766498,63.31606620966248,65.06463973593918,77.09631013357324,79.46223794889578,63.231046266789136,64.98308295325873,0.2276187345855334,225.0350387692066,0.0850199428733446,81.55678268045108,157.71294,110.98890094408492,164735.61945747203,115931.0412317964,397.23362,261.7193966086172,414338.0720097768,272789.6389155888,380.79963,185.74805001260737,393758.54685231415,190908.7324813468,2644.39364,1222.5627570277884,2731258.176044789,1246115.667952608,1071.81836,477.0579960371152,1107628.074830003,486384.0793393515,1797.89296,755.7689897366056,1840756.635365637,759354.5338785077,0.38178,100000,0,716877,7487.982702612366,0,0.0,0,0.0,34301,357.6778048194533,0,0.0,34806,359.62062734366026,1575072,0,56586,0,0,0,0,0,61,0.6371622256807713,0,0.0,1,0.0104452823882093,0,0.0,0.05861,0.1535177327256535,0.3130865040095547,0.01835,0.3422590068159688,0.6577409931840311,24.50830643626413,4.39865803172844,0.331004366812227,0.2288209606986899,0.2157205240174672,0.2244541484716157,11.229024310824771,5.827251350755018,19.589820263002053,12160.17626012447,52.14135431696193,12.712879045478577,17.170987263548557,10.990972806582162,11.26651520135264,0.5641921397379913,0.8034351145038168,0.6998680738786279,0.5678137651821862,0.1167315175097276,0.728125,0.9174528301886792,0.8661616161616161,0.6835443037974683,0.1704035874439461,0.5006060606060606,0.7259615384615384,0.6410714285714286,0.5312916111850865,0.101863354037267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022283671133529,0.0045625525960924,0.0069214687316053,0.0089719360279623,0.010894332099117,0.0131364562118126,0.0153130925922149,0.0175365173987158,0.0196198713819791,0.0218593222074331,0.0242061986733239,0.0262633729645372,0.0286833420719859,0.0308186724898026,0.0327217567177116,0.0347515091375175,0.0368329466357308,0.0390459584007971,0.0409188278601584,0.0428912248533655,0.0576180235107426,0.0713590760249824,0.0846737831092842,0.0976035499847527,0.1100097017758467,0.1256148516422489,0.1371410988264754,0.1483469094393867,0.1596966298135982,0.1696167247386759,0.1817849068791043,0.1944132024051564,0.2057905780793024,0.216454713453106,0.2260069070192032,0.2364081379508932,0.246211191214874,0.2554182702045777,0.2638474201055798,0.2712181140728002,0.2782450530608462,0.2847236051401595,0.2912987305463037,0.2959683225341972,0.3017582283871752,0.3060388440561684,0.3109024582868461,0.3152172527626598,0.3194494889223265,0.3236915511018864,0.3227212022285475,0.3216490299823633,0.3210914683183543,0.3196809126708362,0.3185557654829735,0.3155718246006341,0.3139882600509469,0.3143147574311806,0.3153771314455425,0.3155210840688241,0.3166994106090373,0.317741871765496,0.3188047958820698,0.3188082103053179,0.3221226607730559,0.3224067902520308,0.3236489751826477,0.3268698060941828,0.3310672772102853,0.335902121236196,0.3366426814828309,0.3381169243804279,0.3399836878097748,0.3455262958184715,0.3487276154571159,0.350255617643562,0.3537342826844417,0.3605294350059265,0.359192348565356,0.3554716981132075,0.0,2.3052987225578647,55.95731056679203,167.29481899911153,248.99600218177727,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95786,45328,429.1963334934124,5936,60.66648570772347,4674,48.13855887081619,1850,18.92760946276074,77.4066300966336,79.74681330139053,63.35719594835807,65.08827754776404,77.16750193976324,79.50978343763595,63.26884385417652,65.00326380026185,0.2391281568703647,237.0298637545858,0.0883520941815518,85.01374750218815,158.68754,111.65186774663177,165668.82425406636,116563.86919448747,396.31097,260.5825123426189,413052.27277472697,271354.2882377649,383.03928,186.6603071756932,396045.7373728938,191826.33453371903,2673.66968,1237.1359615081624,2755795.2519157287,1256090.3435054857,1102.60163,489.8326800315081,1132988.3281481636,493374.9998583655,1811.7608,764.5748637433065,1854844.9251456368,766561.5466761192,0.38168,100000,0,721307,7530.401102457561,0,0.0,0,0.0,34177,356.0854404610277,0,0.0,34954,361.0235316225753,1576056,0,56619,0,0,0,0,0,71,0.7412356711836803,0,0.0,0,0.0,0,0.0,0.05936,0.1555229511632781,0.3116576819407008,0.0185,0.3334947538337369,0.6665052461662632,24.326704644065103,4.300437699069921,0.3237056054771074,0.2389816003423192,0.2199400941377834,0.2173727000427899,11.26286111660884,5.793500236701564,19.682072262979023,12175.60257034968,52.95377700281139,13.380179199592217,16.98303745785114,11.471075606502357,11.119484738865683,0.5691056910569106,0.7949865711727843,0.6946463978849967,0.5943579766536965,0.108267716535433,0.7334384858044164,0.9043062200956936,0.859375,0.7732793522267206,0.1415525114155251,0.5079271873165003,0.7296137339055794,0.6386182462356067,0.5377720870678617,0.0991217063989962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023912294567045,0.0045932956135547,0.0067383119716666,0.0089511597898865,0.0115336499832182,0.0135944278120608,0.0158540812789298,0.0182412085949063,0.0204014882047508,0.0225551598509967,0.0247606944472912,0.0268223608602856,0.0289625686036711,0.0310167694382392,0.0330271824844605,0.0350773933066922,0.0372117563079978,0.0392892685354121,0.0411407199625993,0.043174530462666,0.0578789206786452,0.0717624789533679,0.0854043289135789,0.0989028311999495,0.1107973701955495,0.1267989602485259,0.1375757832704456,0.1495688784460487,0.160874529177648,0.1711672147302349,0.1843886169239873,0.1963887987890582,0.2076343011126564,0.217246500251152,0.22727072988531,0.2365145228215767,0.2459685513549682,0.2545581259414132,0.2629848038103878,0.2695587477822926,0.2764410013297103,0.2832184176697441,0.2903248704540614,0.2958394213035042,0.301139262030267,0.306090257067508,0.3110259876821391,0.3150094142791715,0.3201455619156155,0.3247634256754081,0.3236051039519247,0.3223125713735364,0.3210899305408794,0.3209218321051871,0.3194009469668858,0.3169702252603569,0.3147098302408211,0.3149541884816754,0.3155381059215446,0.3163921039551232,0.3164793308189252,0.3161602644836272,0.3166763994327188,0.3168352118323161,0.3166949821731952,0.3179061933143301,0.3196951236789165,0.323722354117206,0.3290520731537065,0.3310070183739452,0.332865613542751,0.3354566991313503,0.335910706491239,0.3374182392301331,0.3401165479604107,0.346658919233004,0.3476740650653694,0.3533041401273885,0.3547501372872048,0.3602912993484093,0.0,2.507632254153669,54.903891961994745,176.77673184746186,250.980179728125,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95692,44846,425.2497596455294,5923,60.73652969945241,4679,48.353049366718224,1847,18.97755298248548,77.29491858535671,79.69707955108265,63.29396199958445,65.07391545196147,77.06722674530762,79.46915914438573,63.21017120434836,64.99179712288826,0.2276918400490899,227.92040669692423,0.0837907952360978,82.11832907321082,158.24028,111.3227853785384,165364.16837353175,116334.4745417991,398.0887,261.87862976484985,415458.24102328304,273116.37344078394,381.71509,186.28100919221356,394718.6807674623,191441.8408900649,2696.17824,1240.5480324447424,2789890.189357522,1268744.9613962276,1082.60195,484.6528797460704,1116140.4819629644,491301.5737149487,1808.44886,755.3158919696388,1860729.277264557,765410.6367934518,0.37806,100000,0,719274,7516.553107887807,0,0.0,0,0.0,34441,359.3403837311374,0,0.0,34888,360.5108055009824,1573115,0,56450,0,0,0,0,0,54,0.5643104961752289,0,0.0,0,0.0,0,0.0,0.05923,0.1566682537163413,0.3118352186392031,0.01847,0.3358606226810776,0.6641393773189224,24.426390756866724,4.329949836115604,0.3301987604188929,0.2335969224193203,0.2162855310963881,0.2199187860653985,11.086240177802988,5.735992036035694,19.648651573535155,12070.467237061725,52.99615772620037,13.115004952571647,17.607701626824852,11.108007553835348,11.165443592968533,0.5684975422098739,0.7868252516010978,0.7223300970873786,0.5681818181818182,0.1059280855199222,0.7511961722488039,0.9223300970873788,0.8902743142144638,0.7521367521367521,0.1400966183574879,0.5016058394160584,0.7048458149779736,0.6634615384615384,0.512853470437018,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024025059048932,0.0045257592823728,0.0067333570304169,0.0089471811295816,0.0110650773130286,0.0132500280289054,0.0155516551695987,0.0175313132138697,0.0196014240700577,0.0219936692652045,0.0242496358451469,0.0261960284766238,0.0283185840707964,0.0304335727757108,0.0324425314051548,0.0344264159918923,0.0364648097488187,0.0387873754152823,0.0406636845937792,0.0426385675275675,0.0577612049426043,0.0710950586264656,0.0841570652059854,0.0968614206201403,0.1090433388192598,0.124234248531979,0.1361233760720047,0.1481654990311109,0.1583322648202761,0.1682421485209068,0.1805518147832925,0.1934087810789171,0.2044293200547957,0.2149563354573574,0.2241675097875335,0.2339106169996013,0.2439582264075157,0.2525936761561831,0.2613029952085746,0.2690195898623322,0.2757806258900351,0.2824272924103224,0.2889325583322482,0.2931383954807681,0.2986014070986791,0.3043542635754562,0.3088716041032578,0.3130280973226102,0.3177383878897658,0.3226099911664271,0.3219978746014877,0.320998172399104,0.3198919055862855,0.3183275563258232,0.3167391917781771,0.3152701812443504,0.3126129553885665,0.3135206177098735,0.3149214704424657,0.3149144603943581,0.3158102321388325,0.3159000376543332,0.3166274575701562,0.3165195177699099,0.3175285621120263,0.318544693102997,0.3202197362021115,0.3227231142938263,0.324964006039962,0.3261517669038438,0.3301778936296702,0.3307287513953117,0.3325361862806796,0.334120874933313,0.3310065088199226,0.3295210864903502,0.3322157878695519,0.3332655137334689,0.3374384236453202,0.3464447806354009,0.0,2.1027320612867437,54.82549075707442,174.64027255389715,256.8862558355807,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95716,44932,426.0207279869615,6010,61.55710643988466,4669,48.152868903840535,1853,18.962346943039822,77.3593554540744,79.73137666850616,63.33143217950936,65.08415453156037,77.12971287237134,79.50217464554771,63.247794679102114,65.00299402319983,0.2296425817030609,229.2020229584466,0.0836375004072493,81.16050836054,157.64738,110.7836950513098,164703.26800117013,115742.08601624575,398.90138,262.7265148109845,416092.7640101968,273825.2021091685,380.57022,185.6290192066697,393045.49918508925,190479.6827985012,2689.13668,1236.0353568712453,2777017.8026662213,1259003.0610948694,1131.86661,491.8515377725452,1169389.3184002675,500795.1981740157,1814.88766,754.3192747135548,1860099.7743324,758922.801880506,0.37917,100000,0,716579,7486.51218187137,0,0.0,0,0.0,34484,359.6054996029922,0,0.0,34871,359.8562413807514,1577776,0,56643,0,0,0,0,0,67,0.6895398888378119,0,0.0,0,0.0,0,0.0,0.0601,0.1585041010628478,0.3083194675540765,0.01853,0.3380861850443599,0.6619138149556401,24.380669914161164,4.362847742664942,0.3216962947097879,0.2319554508460055,0.2263868065967016,0.2199614478475048,11.43790749248616,5.977893060841618,19.695496915989725,12117.065374582524,52.932149412126414,12.989165720611156,16.989080432543993,11.749654645736353,11.20424861323492,0.5665024630541872,0.8051708217913204,0.6930758988015979,0.5733207190160833,0.1226874391431353,0.7519500780031201,0.9520383693045564,0.8774509803921569,0.7333333333333333,0.1089108910891089,0.4963094183643342,0.7132132132132132,0.6243144424131627,0.5224438902743143,0.126060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.0045211714497146,0.0067581965965478,0.0091812069630923,0.011500564351301,0.0137742168650167,0.0162087772057699,0.0185064205949002,0.0202306229682484,0.0225432283295283,0.0246628723786084,0.0266333877710329,0.0286637310177373,0.0306305378116628,0.0323712425314992,0.0344446167364449,0.0364952167971176,0.0386673858025971,0.0405538864574345,0.0425924189869066,0.0574728246682051,0.0710959004469004,0.0839050076572891,0.09683083781965,0.1091545582994158,0.1243335872048743,0.1363462722044186,0.1478137742337297,0.1581770582892557,0.1682368341988926,0.1810590960512848,0.1938671688963934,0.2048646237857476,0.214615519278743,0.2246327335198114,0.2353899883585564,0.2454473387447941,0.2537001214629538,0.2625416921924988,0.2698149081412929,0.2769333981076642,0.2838575452622228,0.2897255902999361,0.2957047140464225,0.3011522134627046,0.3062241582988777,0.3106070079783908,0.3141684560944309,0.318949683094037,0.323707646097908,0.3220614512380261,0.3211494347605115,0.3197422181037024,0.3181157438724256,0.3174184758463406,0.3156328679331655,0.313942489595157,0.3136177864966487,0.3143980661854827,0.3154992707481057,0.3168924481700471,0.3173177520282674,0.3177736751562959,0.3176607819825478,0.3195223535642921,0.3197725968810306,0.3217502850627138,0.3237954180190968,0.3273909985935302,0.329498115453283,0.3321931864824189,0.336065137565856,0.3382781792823633,0.3382274629136554,0.3433339583723983,0.346167473721507,0.3471099588226323,0.3490755627009646,0.3508580768183056,0.3502461188943582,0.0,2.407779183840637,56.04954948196945,168.16265399418603,258.17871242232115,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95890,45110,427.6254041088748,6007,61.4766920429659,4698,48.42006465741996,1854,18.969652727083115,77.4394230829848,79.71909950084235,63.39129033748679,65.07703692242988,77.2039705370532,79.48538320918603,63.30439562454259,64.99325029098412,0.2354525459316079,233.7162916563216,0.0868947129441934,83.78663144576137,158.6497,111.55425536233156,165449.68192720824,116335.65060207692,400.6939,263.114553663923,417303.72301595577,273827.5040816801,377.88029,183.2987720347396,390506.6221712379,188389.5505388792,2694.27532,1232.374285177308,2778368.380435916,1253807.910290236,1117.28429,488.3723922653583,1150259.5473980603,494391.4717544662,1817.95504,763.3905007967766,1862161.3306914172,767858.9602240133,0.38176,100000,0,721135,7520.440087600376,0,0.0,0,0.0,34608,360.33997288559806,0,0.0,34549,356.7421003232871,1577332,0,56663,0,0,0,0,0,62,0.6465741996037125,0,0.0,2,0.020857232245281,0,0.0,0.06007,0.1573501676445934,0.3086399200932245,0.01854,0.3363391868375257,0.6636608131624743,24.65806902201092,4.3672218560610245,0.3197105151128139,0.2358450404427416,0.2215836526181353,0.222860791826309,11.161697329753691,5.744215383740282,19.80747038156516,12148.475242123128,53.1918027386762,13.369764428500812,16.86870313445092,11.528110026818284,11.425225148906184,0.5542784163473818,0.7924187725631769,0.6937416777629827,0.5379442843419788,0.1184336198662846,0.7443365695792881,0.9466019417475728,0.8702702702702703,0.7148760330578512,0.1650943396226415,0.486424032351242,0.7011494252873564,0.6360424028268551,0.4843554443053817,0.1065868263473053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0044387693056062,0.0067762910964809,0.009016235315619,0.0112819783101426,0.013471439327649,0.0152788388082505,0.0172378620971032,0.0194107310694291,0.0217680394443421,0.0239861472571159,0.025979089500631,0.0281460016030581,0.0300275879107304,0.0319697313346666,0.0339102061046631,0.0359925097507733,0.0377999751315953,0.0399916943521594,0.0420702210663199,0.0568301454109553,0.0707897101540133,0.0845226751552339,0.0973123359580052,0.1094595448133566,0.1250395928796165,0.1373915622451249,0.1490478619399813,0.1601368855342693,0.170506961761149,0.1832899744146546,0.195062395332505,0.2065066261134043,0.2170530778139545,0.2273396956636467,0.2367256147495628,0.2456787509333452,0.2543469470279013,0.2633951833979021,0.2708754843798223,0.2781569374675212,0.2853857289623611,0.2914253976507291,0.2963663347376484,0.3018371111003252,0.3072567243183356,0.3118772892628105,0.3155274454520054,0.3193340313594705,0.323489526417653,0.3225325033276416,0.3221186196289531,0.3203671943093317,0.3188679789874733,0.3182114785703693,0.3160582156179294,0.3145038892050844,0.3151497280650023,0.3151208199041626,0.3159328916435135,0.3161112981038932,0.3183126922773527,0.318988029331272,0.3192796563007813,0.320368156825245,0.3221276153886091,0.3226490890573724,0.3235624298365972,0.3276119662277196,0.3317604498446777,0.3317539822210189,0.3331046131109469,0.3370484002254085,0.3401184870120006,0.3415370108439415,0.3430474604496253,0.3439529848437983,0.3411282051282051,0.3462819089900111,0.3526077097505669,0.0,2.268302399611056,53.96399521784652,179.3310643752756,256.1239043450519,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95737,45271,430.0740570521325,5951,61.03178499430732,4673,48.22586878636264,1808,18.56126680384804,77.34647984393533,79.6990618544931,63.33814763576003,65.07546437327412,77.12384608090787,79.47704375553695,63.25609624197294,64.99591799495424,0.2226337630274599,222.01809895614133,0.0820513937870899,79.54637831987554,158.32146,111.30700095895172,165370.77618893425,116262.87973603907,395.72715,260.2542614518288,412785.286775228,271281.31431866344,378.34325,183.9614677873677,391076.84594253,189066.5008336277,2680.30264,1223.9668555645264,2770064.196705558,1248953.3170712756,1104.19912,483.8441716107275,1141440.7804715002,493502.5994178232,1770.86398,739.587221742713,1819895.3800516,747137.0550989107,0.3815,100000,0,719643,7516.853463133376,0,0.0,0,0.0,34216,356.7899558164555,0,0.0,34620,357.5524614307948,1576741,0,56628,0,0,0,0,0,59,0.6058263785161432,0,0.0,0,0.0,0,0.0,0.05951,0.1559895150720839,0.3038144849605108,0.01808,0.3341330774152271,0.6658669225847729,24.44899958665862,4.344537578786971,0.3282687780868821,0.2386047506954847,0.2129253156430558,0.2202011555745773,11.031951924403222,5.692456484067548,19.329667908182188,12131.089611960791,52.8619608505476,13.372901624970408,17.216702807984742,10.98034279027284,11.292013627319616,0.5752193451744062,0.8116591928251121,0.7092568448500652,0.5778894472361809,0.1166180758017492,0.7473426001635323,0.9253012048192772,0.8877284595300261,0.7488584474885844,0.1262135922330097,0.5142028985507247,0.7442857142857143,0.6498696785403997,0.529639175257732,0.1142162818955042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787117682803,0.0046934079412867,0.0069006809348393,0.0090611730765323,0.011105009457563,0.0129194494217299,0.0153720693170234,0.0174731319976729,0.019799450072063,0.0216950610205586,0.0238524775005637,0.0257944654294629,0.0278314689916104,0.0298695011793303,0.03196384721735,0.0337888121718278,0.035554175078946,0.037722538075279,0.0397081141764204,0.0418189961357789,0.0561686311767223,0.0700612276937568,0.0833525671961224,0.0962039957939011,0.1088338552044786,0.1243987271516317,0.135999151463725,0.1474513142492284,0.1576997800977817,0.1678740596266369,0.180948177492626,0.193896860841074,0.2046269532523417,0.2148616756260652,0.2246631646042596,0.234622280262954,0.2439712358548414,0.2529544713435957,0.2621543138455954,0.2697961987634532,0.2770846101365649,0.2836403590798578,0.2904992901088499,0.2969163840318308,0.3021640395404755,0.3083608252498892,0.313294898890737,0.3180424243195439,0.3223440375294819,0.3263848550456777,0.325587660806897,0.3241502683363148,0.3224356987914472,0.3207440811724915,0.3191546281433922,0.3167718997118862,0.3149185255497548,0.3148330381158564,0.3158191414857455,0.3167145482771542,0.3173183102809336,0.3187084295498056,0.3193527426690981,0.3211163040318432,0.3220135164385868,0.3223369494183767,0.3236832328312994,0.3272858759904414,0.3292054025609542,0.3305624826821834,0.333045140152894,0.3347122779103686,0.3377151799687011,0.3388190476190476,0.3419811320754717,0.3468441697373113,0.3494582633908134,0.3473491773308958,0.3509212730318258,0.3532863849765258,0.0,2.239525984758266,53.425731793675375,175.6082050668431,259.1954593693512,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95720,45143,427.4968658587547,6194,63.29920601755119,4895,50.32386126201421,1987,20.225658169661514,77.41222784566315,79.7676885289157,63.350809200748486,65.08938737093166,77.15966557660343,79.52187557183245,63.25678922231983,65.00175637108033,0.2525622690597231,245.81295708324544,0.0940199784286548,87.63099985132783,157.98068,111.07190410637956,165044.35854575847,116038.12903090216,398.53367,261.5877359651112,415548.4851650648,272480.0550398154,386.23486,187.9448074853102,398552.1207689093,192456.4552185689,2816.84644,1302.2126110715872,2897037.776849144,1314728.385992047,1178.12636,528.0799410115333,1209953.5624738822,530841.131437037,1943.74894,819.938411723254,1979076.61930631,811112.2529194173,0.38202,100000,0,718094,7502.016297534476,0,0.0,0,0.0,34350,358.0234015879649,0,0.0,35352,364.39615545340575,1578179,0,56550,0,0,0,0,0,70,0.7208524864187212,0,0.0,1,0.0104471374843292,0,0.0,0.06194,0.1621381079524632,0.3207943170810461,0.01987,0.3312845728334357,0.6687154271665642,24.2380458237474,4.398985361094581,0.3256384065372829,0.2294177732379979,0.2169560776302349,0.2279877425944841,11.081885166818765,5.750075110560879,21.121933939617065,12243.948474211214,55.6412168279164,13.643180505995526,17.877103315792123,11.871309871218417,12.24962313491034,0.5536261491317671,0.8210151380231523,0.6599749058971142,0.5536723163841808,0.1326164874551971,0.7353159851301115,0.9395973154362416,0.8296296296296296,0.7624521072796935,0.146551724137931,0.4847887323943662,0.742603550295858,0.6021867115222876,0.4856429463171036,0.1289592760180995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.0047230527542694,0.0070303940267012,0.0094341538711511,0.0118138655334031,0.0140886649361225,0.0163177528181503,0.0186118650639782,0.0208073582013285,0.0228354435562288,0.0250576479631053,0.0271108145562798,0.0290220106712175,0.0309153072993903,0.0331018542404011,0.0350819163781074,0.0368529506176674,0.0388558029507584,0.0411515787941485,0.0431593970393674,0.0578826477343913,0.0718688195222,0.0851867394041124,0.0978075620173796,0.110175483026792,0.126074165008678,0.1382933559753767,0.149352585399097,0.1606514978251343,0.1710008049369466,0.1840882381481202,0.196257634166414,0.2078951379362902,0.218338698727635,0.2276503382472841,0.2381855697550585,0.2475857289757231,0.2562799918895172,0.2651939349196434,0.2725584168405604,0.2796335333225231,0.2863647536666159,0.2925992117503639,0.2985242681232332,0.3037147679939767,0.3085638284771311,0.3129468526573671,0.3177379002044678,0.3217930499935409,0.3257105263157894,0.3250093929472384,0.3238629351835346,0.322579739442947,0.3222187013884888,0.3212385456695241,0.3186865071507988,0.3168346456692913,0.3168147083795963,0.3178418440198545,0.3187041543079409,0.3188856796794931,0.3198978087845141,0.3208646616541353,0.3203775432972708,0.32051466359977,0.3213414317603696,0.3225467952353942,0.3246042175082911,0.3284730235322913,0.3301104972375691,0.3311894193314612,0.3345500714172353,0.3407467735872698,0.3426864317047345,0.3457535774019699,0.3507699541554014,0.3565505804311774,0.3569858085148911,0.3612920738327904,0.3732527389497544,0.0,3.18281809970803,58.10669668211312,184.92135799791828,260.4017613731048,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95733,45425,430.1860382522223,5943,60.950769327191246,4698,48.52036392884376,1860,19.084328288051143,77.32373385663094,79.69336558242394,63.321321634088775,65.07489595984309,77.09062650505157,79.4606045672218,63.23507662882004,64.99099774187674,0.2331073515793633,232.76101520214357,0.0862450052687364,83.89821796635033,157.81348,111.0976247562152,164847.5238423532,116049.45500111268,399.24789,262.61390795918135,416479.3435910292,273755.46994975564,384.40488,187.3925487707006,397822.2660942413,192916.53515188707,2728.37448,1258.088801167031,2820319.1793843294,1284512.5700593772,1139.52255,507.29985689369903,1179107.350652335,518720.471129762,1832.41478,774.8288444179541,1882284.1653348373,782740.1005687255,0.38224,100000,0,717334,7493.069265561509,0,0.0,0,0.0,34527,360.0639277991915,0,0.0,35054,362.4455516906396,1575148,0,56575,0,0,0,0,0,66,0.6894174422612892,0,0.0,2,0.0208914376442814,0,0.0,0.05943,0.1554782335705316,0.3129732458354367,0.0186,0.3379266143246274,0.6620733856753725,24.16671679862896,4.392048979066685,0.3190719455087271,0.2298850574712643,0.2164750957854406,0.2345679012345679,11.176706572861226,5.737111800049103,20.037905456545943,12161.371307834816,53.45254759863419,13.019325814845072,16.980837969729418,11.241326641641908,12.2110571724178,0.554704129416773,0.7703703703703704,0.7024683122081388,0.5909537856440511,0.1088929219600726,0.7161845191555903,0.9266503667481664,0.8590078328981723,0.7445887445887446,0.140625,0.494296577946768,0.6751117734724292,0.6487455197132617,0.5458015267175572,0.0992907801418439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796352583586,0.0046142768768951,0.0069427527405602,0.0089933540637765,0.0113035161972977,0.0135480650714584,0.0159915147064822,0.0183121750942162,0.0202979763377746,0.0225203543448205,0.0247151603408846,0.0268871315600287,0.0290722794889204,0.0309656544006265,0.0331017825624722,0.0351482947908159,0.037107615191027,0.0392065320012034,0.0413495529216053,0.043512237816886,0.0578027439597385,0.0711930753692055,0.0853309274781532,0.0989533477094619,0.1110091743119266,0.1266164077947069,0.1378637274974275,0.1497685800925679,0.1599316531396838,0.169427557442611,0.1821705426356589,0.1943209475904592,0.2064128910199954,0.2168228181609471,0.2266608007039155,0.2367054551091132,0.2465550303246521,0.2548863227893602,0.2629329403095062,0.2702600656743057,0.2776153552815558,0.283814887079249,0.2894920383483267,0.294424148050548,0.2999283571940305,0.3048343171203588,0.3102153229844767,0.3150925619413817,0.3209425305233688,0.3241395692567567,0.3229047420236764,0.3218751721478543,0.3207523228107772,0.320487402497793,0.3192866067709883,0.3170283192350128,0.3149278754903201,0.3142679107292196,0.3146648020874192,0.3153512916050131,0.3162883044878999,0.3161289046271934,0.3163265306122449,0.318672701200932,0.3186309954205832,0.3201557274247492,0.3211221688400824,0.324782814721213,0.3272445165385429,0.3304691871153385,0.3333027354507068,0.3355294873855053,0.3392573786099651,0.3394848135332564,0.3425174561237969,0.3439779930630307,0.3453766074709124,0.3466070702966274,0.3475980121479845,0.3489361702127659,0.0,2.1427333574088587,56.16352107588398,177.64546455425594,253.01267923081625,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95775,45156,428.1075437222657,5975,61.216392586791954,4650,47.90394152962673,1773,18.08405116157661,77.38153749659537,79.72311953966307,63.350937847410606,65.08272717648222,77.15875167644703,79.50465516488076,63.26813242974986,65.00431462492915,0.2227858201483457,218.4643747823145,0.0828054176607437,78.41255155307181,158.65278,111.59282511062848,165651.55833985904,116515.60961694438,400.86298,263.17502607806324,417879.5614722005,274117.6675312589,377.50056,183.32646745985213,390117.50456799794,188211.01783628084,2650.30256,1210.7999798538665,2732137.488906291,1229182.2116030045,1082.39902,471.7471401664542,1113760.1357347951,476203.637784763,1734.68266,727.7611571688491,1771917.7238318978,726408.947057693,0.37963,100000,0,721149,7529.616288175411,0,0.0,0,0.0,34688,361.50352388410334,0,0.0,34464,355.84442704254764,1575113,0,56521,0,0,0,0,0,59,0.6160271469590185,0,0.0,1,0.0104411380840511,0,0.0,0.05975,0.1573900903511313,0.2967364016736402,0.01773,0.3248356581689915,0.6751643418310085,24.685026097540607,4.358757042642797,0.3266666666666666,0.2412903225806451,0.22,0.2120430107526881,11.11706376370424,5.678885790607916,18.828295205038483,12108.518474736433,52.50242102918484,13.22034261226264,17.184960158020637,11.396691542672166,10.700426716229408,0.5666666666666667,0.7709447415329769,0.7024358130348913,0.5865102639296188,0.1044624746450304,0.7258333333333333,0.9063291139240506,0.8438356164383561,0.7258064516129032,0.1302083333333333,0.5113043478260869,0.6973865199449794,0.6577123050259965,0.5419354838709678,0.0982367758186398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0044296227218359,0.0066251369668438,0.0088662746412357,0.0113264330886389,0.0133961745574478,0.0157581440861091,0.0176772573714775,0.0199268327576692,0.0219268627089856,0.0243477548008935,0.026267167580218,0.0282952909726506,0.0304047444992432,0.0322331098504383,0.0344061579790256,0.0364353198050436,0.0384368197367057,0.0406482106684672,0.0425720205311872,0.0574681457209346,0.0713912188591628,0.084977460949785,0.0979110625420309,0.1097049525816649,0.1248031787295649,0.1368833783712181,0.1488210405459996,0.1595240636004695,0.169208673190495,0.1812623783690691,0.193441984708058,0.2045775642836959,0.2153175401022772,0.2243804788983358,0.234125226940619,0.2441991414394826,0.2519110571518503,0.2598884151319967,0.267685724419629,0.2753919800194255,0.2824348964420964,0.2900993612491128,0.2958070349832928,0.3020029133284778,0.3069649474889499,0.3118361532501937,0.316067841432095,0.3208015835025939,0.3242911937996757,0.3235349487669096,0.3217833344782579,0.3199786099266827,0.3179678928220823,0.3169344539811707,0.3151585578422678,0.314480602529487,0.3142581447075755,0.3148248894933696,0.314539215163315,0.3158405856646621,0.316341415336093,0.316996196129248,0.317727770452971,0.3178733302956905,0.3188096662591369,0.319168276332235,0.3210587241497982,0.3237882385808073,0.3271341704177525,0.3307946869758375,0.3326453934486955,0.333731982123749,0.3388102844971855,0.3421942513620139,0.3467295226870949,0.3481099134659177,0.3554483313228789,0.3601100412654746,0.3596657804785416,0.0,2.521021951843405,51.984694868950704,179.14024018542645,254.15916874574552,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95873,45046,427.10669322958495,5969,61.33113598197615,4717,48.76242529179226,1877,19.358943602474103,77.37299817448195,79.67428156542874,63.35320242165369,65.05702778646945,77.14040220240784,79.4388291999296,63.26798771226765,64.97223853170914,0.2325959720741082,235.4523654991425,0.0852147093860367,84.78925476030952,157.82272,110.94138693502649,164616.44049941067,115717.02870988337,398.02083,261.6204420967068,414666.31898449,272394.367649606,377.51882,182.98403580742277,390611.1209621061,188489.81762105064,2722.154,1239.7516537029885,2815732.062207295,1269517.4383851432,1134.58114,495.7580510643043,1173267.4788522315,506945.27245867415,1846.75216,769.2625647081229,1905748.625786196,785363.2801431563,0.37982,100000,0,717376,7482.565477245939,0,0.0,0,0.0,34392,358.28648316001374,0,0.0,34430,355.9813503280381,1579334,0,56764,0,0,0,0,0,70,0.7197021059109446,0,0.0,2,0.0208609306061143,0,0.0,0.05969,0.1571533884471591,0.3144580331713855,0.01877,0.3327464788732394,0.6672535211267606,24.37405878384508,4.340212456959226,0.3171507313970744,0.2310790756836972,0.2253550985796056,0.2264150943396226,10.991929797913803,5.65753130972509,20.02427210819601,12077.298535329632,53.25042292225787,12.973489332905718,16.67337303468017,11.781210726195331,11.822349828476646,0.5522577909688361,0.7880733944954128,0.6798128342245989,0.5719661335841957,0.1132958801498127,0.7157980456026058,0.9083769633507852,0.8598382749326146,0.701195219123506,0.1651785714285714,0.4946976210948696,0.7231638418079096,0.6204444444444445,0.5320197044334976,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019039902774964,0.0040945807615514,0.0062079668908432,0.0082448266758727,0.0104101010511762,0.0124083876221498,0.014615800148808,0.0169202665605323,0.019096956135242,0.0211594736734401,0.0234516674350699,0.0258549047369879,0.028025569349667,0.0299739580652798,0.0320505551374699,0.0340059482010822,0.0360653024064226,0.0380291176622972,0.0399169262720664,0.041979650013525,0.0566069212883314,0.0707605822179033,0.0837392497616877,0.0962346171615775,0.1088716895698415,0.1241999197279199,0.1363564125655559,0.1476572133168927,0.1581648987258019,0.1686576598776476,0.1813398467762761,0.1933102777477575,0.2046141140162135,0.2154327128037516,0.2252329559831457,0.2351970587909593,0.2446511835441626,0.2532146834816456,0.2614688265722842,0.2692765704078594,0.276463853261938,0.283067421513124,0.2885917159763314,0.2944946215950744,0.3000776963045695,0.305231519690568,0.3095229153365631,0.3135551173589466,0.3182141886030221,0.3223144859998151,0.3205313000956448,0.3202527985459953,0.3189031357115653,0.3183416540047753,0.3170376317706707,0.3150953511526384,0.3129691211401425,0.3132498481839518,0.314027720879421,0.3145764527358743,0.3160229059061307,0.3164429530201342,0.3167792816350438,0.3168550850670056,0.3176929893894757,0.319185986069238,0.3195350559813111,0.3245936684586123,0.3272497543170012,0.3318960401914633,0.3375531241522742,0.3400475812846947,0.3450876862153498,0.3486245523127333,0.3549147111488078,0.3594671068144305,0.3628142244022072,0.3676710097719869,0.3640642303433001,0.3623188405797101,0.0,1.749197399251457,54.30273517204653,173.7122223719379,265.8561922720671,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95798,45117,427.99432138458,6015,61.77581995448757,4766,49.2285851479154,1864,19.16532704231821,77.39816222968327,79.727766841043,63.35848721039546,65.07954011374265,77.16887775936357,79.498071446412,63.27325077183816,64.99627683236946,0.2292844703196976,229.6953946310083,0.0852364385573025,83.26328137319194,157.32662,110.64921933801594,164227.45777573643,115502.64028269476,395.06783,259.42314086965786,411854.3289003946,270260.20118869323,377.63104,183.21556704007315,390685.9224618469,188612.42090067916,2731.31456,1250.964464102226,2823794.317209128,1278531.9808375982,1133.15835,498.414840862581,1171661.3708010605,509122.4192099125,1823.47348,766.3502628617505,1876674.2520720684,776071.7707266763,0.38176,100000,0,715121,7464.884444351656,0,0.0,0,0.0,34057,354.9656569030669,0,0.0,34659,358.2747030209399,1583606,0,56817,0,0,0,0,0,61,0.6367565084866073,0,0.0,1,0.0104386312866656,0,0.0,0.06015,0.1575597233864208,0.3098919368246051,0.01864,0.338615116463318,0.661384883536682,24.513402981270264,4.40138014846511,0.3199748216533781,0.2314309693663449,0.2297524129248846,0.2188417960553923,10.970204304158676,5.663204715419278,19.85159991514973,12132.243266959871,53.962019516957504,13.286229180311697,17.222458861526007,12.13951051172521,11.313820963394589,0.5673520772135963,0.7842248413417952,0.7239344262295082,0.5598173515981735,0.1169702780441035,0.7178683385579937,0.8901869158878505,0.8549222797927462,0.6807692307692308,0.1386138613861386,0.5123209169054441,0.717037037037037,0.6795434591747147,0.5221556886227545,0.1117717003567182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495574325008,0.0046315064050591,0.0068985107332711,0.009038102201641,0.0110506785950287,0.0133226128198343,0.0152240813581429,0.0171919478425891,0.0193301865587772,0.0215881071015664,0.0235943775100401,0.0254899948691636,0.0275114331226555,0.0296109510086455,0.0320628473045558,0.0339061822237828,0.0360312829743653,0.0379606395553804,0.0401646073429007,0.0420068310563145,0.0569803839732888,0.0706845704963293,0.0838077265817476,0.0964361908965749,0.1091104598452423,0.1253884695883808,0.1373499342468077,0.1489785060651202,0.1597321600205045,0.1697850211762183,0.1820923169707282,0.193904588862572,0.2058059819866801,0.2160163418683911,0.2251467129700859,0.2350572041868596,0.2445475224120244,0.2529066498751883,0.261547710876174,0.2685845826127787,0.2764801110083256,0.2830115875261625,0.2892942541253344,0.2955444239388347,0.3004443473193473,0.3058753986921665,0.3105651412853213,0.315180092015963,0.319109558014625,0.3223747543880471,0.3224634267795378,0.3218600942968288,0.3211308853345348,0.3200889055667008,0.3187503705021045,0.3171562562057956,0.315086887835703,0.3166661207376592,0.3171564110439916,0.3177078691738704,0.3184553848454263,0.3203774255314949,0.3208612040133779,0.3208925310648911,0.3227680172104697,0.3243081875292041,0.3241363713461864,0.3273855944099572,0.3321280812154504,0.3376562131572742,0.3423174488131908,0.3473734027449124,0.3500124316260566,0.3523500075562944,0.3512957245766676,0.3548884670147129,0.3550592525068368,0.3574888978603149,0.358266629864753,0.3670354826402137,0.0,1.937671506803874,56.126087916809375,177.48287356081246,261.67609023888645,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95875,44747,423.11342894393744,5976,60.93350717079531,4692,48.333767926988266,1847,18.82659713168188,77.3584022892406,79.64086501297393,63.35300198276878,65.04182931420256,77.12383811854187,79.41076568792654,63.26460529822048,64.95814205031691,0.2345641706987322,230.09932504739083,0.0883966845483001,83.68726388565051,157.75694,111.01373806963072,164544.3963494133,115790.07882099686,397.48164,261.4033389550785,413991.0404172099,272058.0015176829,376.42038,182.78904530759223,389445.9139504563,188223.42363643055,2714.62064,1249.0045487717848,2797588.6518904823,1268914.7627345854,1123.5086,505.5010787189569,1154183.5202086049,509597.71156448376,1820.9156,774.9897202694584,1857658.2842242504,771882.4857937495,0.37759,100000,0,717077,7479.29074315515,0,0.0,0,0.0,34338,357.5280312907432,0,0.0,34496,356.5893089960887,1577000,0,56636,0,0,0,0,0,77,0.803129074315515,0,0.0,1,0.0104302477183833,0,0.0,0.05976,0.1582669032548531,0.3090696117804551,0.01847,0.3354076910802617,0.6645923089197383,24.67042532564466,4.445674294181661,0.3150042625745951,0.2274083546462063,0.2310315430520034,0.2265558397271952,11.123583625657943,5.651921140010127,19.663510990532743,12060.285257472577,52.975163440592176,12.629254067823002,16.592844433480504,11.960159322680209,11.79290561660848,0.5573316283034954,0.7769447047797563,0.6840324763193505,0.6014760147601476,0.1157102539981185,0.722940226171244,0.9470899470899472,0.8601583113456465,0.7280334728033473,0.152892561983471,0.4979733642154024,0.683599419448476,0.6232939035486806,0.565680473372781,0.1047503045066991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023489151454403,0.0048636653798218,0.0072927549167773,0.0093005310237691,0.0115267330758284,0.0136781363539217,0.015872692448755,0.0179815390891937,0.020154579704522,0.0221224915404982,0.024077145138505,0.0264606678217365,0.0283874413302248,0.0302531554421733,0.0325233413714215,0.0345778181592913,0.0368673128445966,0.0391037134536258,0.0411136727106569,0.0427716797586224,0.0577668890742285,0.0715487248069709,0.0849758079718492,0.0978693465225929,0.1095672509691555,0.1252416620006972,0.1372235234269847,0.1488318676293878,0.1588099660539294,0.1687214562919445,0.1815518819665069,0.1926738500151456,0.2039012297354601,0.2143575614449401,0.2232620026831467,0.2333200513569752,0.2419770438041696,0.2516250196801691,0.2597379020820332,0.266829374491538,0.2734216769862855,0.2799714529734536,0.2868547603818729,0.2928771921406808,0.2974297247349479,0.3031802032961611,0.3083130748602792,0.3126871472076044,0.3172409318019596,0.3211811065270284,0.3200296735905044,0.3188533627342889,0.3180465654129825,0.3172697154265708,0.316336854634727,0.3139793523447207,0.3121739268327492,0.3115988491574188,0.3126079742743273,0.3139435262199693,0.3155075205574391,0.3162097523372799,0.3170634587978875,0.3177967048934791,0.3200625451046427,0.3203701778101279,0.3198874296435272,0.3247249819788761,0.3272517563175002,0.3300490661601772,0.3327115559599636,0.3361864003804089,0.3418851788970634,0.346319018404908,0.3476158877618732,0.3531175059952038,0.3557662418402238,0.3560251981304613,0.3592847317744154,0.3605182926829268,0.0,2.311809411648201,53.85597304612643,174.90516397317492,259.5389908797676,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95732,45508,431.6529478126436,5952,60.88873104082229,4633,47.80010863661054,1810,18.489115447290352,77.38965647392791,79.75633952208929,63.34469261111818,65.093784165139,77.16469952288392,79.53463500897638,63.26097358344009,65.01433266348438,0.2249569510439926,221.7045131129112,0.083719027678093,79.45150165461712,157.96902,111.12555881061586,165011.72021894457,116079.84666633504,400.4052,263.9519730084256,417669.2119667405,275133.0277675675,386.91824,188.4829963571603,400560.1052939456,194116.8500875543,2645.30868,1212.725587772159,2729116.617223081,1232709.6047578,1108.70197,492.2470354346145,1138789.2763130406,494952.86874760495,1769.59206,738.0321573826476,1808813.813562863,736519.3485217171,0.38256,100000,0,718041,7500.532737224752,0,0.0,0,0.0,34477,359.5140600844023,0,0.0,35279,364.9354447833536,1574916,0,56516,0,0,0,0,0,77,0.8043287510968119,0,0.0,0,0.0,0,0.0,0.05952,0.1555834378920953,0.3040994623655914,0.0181,0.3298688839142948,0.6701311160857052,24.77820158405407,4.324463375693637,0.3224692423915389,0.2382905244981653,0.2221023095186704,0.2171379235916253,11.179647721891026,5.881050860398453,19.02937855947929,12182.715821493242,52.21605759396383,13.235807191761127,16.79665928286327,11.37182029933206,10.811770820007366,0.56378156701921,0.782608695652174,0.6854082998661312,0.5811467444120505,0.125248508946322,0.7368421052631579,0.918987341772152,0.8582474226804123,0.6962025316455697,0.1785714285714285,0.5021949078138718,0.7066290550070522,0.6247739602169982,0.5467171717171717,0.1123456790123456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093752532209,0.00481534422108,0.0072560103106384,0.009295568604344,0.0114132259147364,0.0135839680664738,0.0156911124478747,0.0178030032359816,0.0201978902608553,0.0225195254521818,0.0244469956333668,0.0263844116378867,0.028332630843091,0.0303563889489563,0.0325525265340223,0.0348081315433189,0.0368115311733093,0.0388334405411574,0.0407437818960409,0.0427937315050222,0.0576762445706648,0.0715848310078817,0.0849972195700301,0.0978327196212519,0.1098381754119459,0.1254600837669755,0.1379222542861992,0.1493550721552935,0.1601413986073732,0.1700788246018553,0.1824564426162427,0.194845940799723,0.2067090741042788,0.2172600822325255,0.2268446185331074,0.2364087400467346,0.2457703674789494,0.2543797548011552,0.2619190693772038,0.2701592604457462,0.2778413755622622,0.2841598391790652,0.2904647672618555,0.2962838848662558,0.3017242425345516,0.3068779160665263,0.3115014376797099,0.3165554496345726,0.3209889314161581,0.325337726523888,0.3238887619457251,0.3230691015018481,0.3218227577576873,0.3214661800556814,0.319947265509273,0.3183234081539166,0.3157803404376154,0.3164042080501829,0.317186147920661,0.3178674044907949,0.3186821359512122,0.3189751644252478,0.3194216165609071,0.3205136750427692,0.3217262544481861,0.3225672663175903,0.3235960786535955,0.3263412033988649,0.3294984216064539,0.3327770493106051,0.3364831552999178,0.3381921084948475,0.339973523293198,0.3424843502526585,0.3436515291936978,0.3450819672131147,0.3469387755102041,0.3492126768985449,0.3560421735604217,0.3640151515151515,0.0,2.197447145779482,53.04351668031309,173.6799864370499,254.58462353421316,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95758,45458,431.8281501284488,6068,62.13580066417428,4715,48.61212640197164,1847,18.80782806658452,77.34687979821054,79.70496651186205,63.33382307926016,65.08067758753398,77.11905086843207,79.48222753496343,63.24859071873302,65.00037060523455,0.2278289297784681,222.73897689862565,0.0852323605271365,80.30698229943312,159.49296,112.16101327842468,166558.3658806575,117129.65316571428,401.86133,264.22329621156973,418955.0324777042,275219.7479182625,379.59177,184.45363198019427,392723.20850477245,189714.5746524528,2710.31416,1241.9316430051058,2795122.746924539,1261692.101970703,1118.37649,489.9176811582535,1148361.609473882,492083.5655332581,1811.96346,760.1080894075768,1847340.796591408,756550.3294675582,0.38387,100000,0,724968,7570.834812757159,0,0.0,0,0.0,34712,361.8287767079513,0,0.0,34728,358.9987259550116,1568552,0,56368,0,0,0,0,0,68,0.6996804444537271,0,0.0,0,0.0,0,0.0,0.06068,0.1580743480865918,0.3043836519446276,0.01847,0.3294469828265322,0.6705530171734678,24.66493531787133,4.385764892596726,0.3255567338282078,0.2284199363732768,0.2267232237539766,0.2193001060445387,11.102577178602065,5.669459890601216,19.589454998553546,12216.910144151623,53.40280345895505,13.003544247734196,17.23116060700573,11.92893181800096,11.239166786214174,0.5643690349946978,0.7920148560817084,0.6840390879478827,0.5865294667913938,0.1266924564796905,0.7298387096774194,0.901015228426396,0.8537859007832899,0.7601626016260162,0.1658986175115207,0.5053237410071942,0.7291361639824304,0.6276041666666666,0.534629404617254,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021077378298407,0.0042489757838802,0.0065177664974619,0.0085774972814211,0.0109872222674371,0.0132991181442333,0.0154755836476705,0.0177317272356063,0.0199341661384964,0.022075009982901,0.0244730150918635,0.0262957943157548,0.0285273549979432,0.0303688976337395,0.0322417512100977,0.0341548130995699,0.0361407105947166,0.0383003444126312,0.0400220381092965,0.0419972925127564,0.0569484165918627,0.0711013013096782,0.0848230668414154,0.0983572096738593,0.1100337268128161,0.1252073932387162,0.13726799588726,0.1484375830648676,0.1594162701883894,0.1703210188626699,0.1826523806450224,0.1946590872248219,0.2057321657504182,0.2157008365915991,0.2256540418191207,0.2362034813593457,0.2457513716044426,0.2551351959075833,0.2640580137771372,0.2717432390639497,0.278729879537591,0.2854134001076502,0.2924730419137578,0.2980975557127273,0.3033665578069419,0.3080122565004984,0.3124249399519616,0.3172409408773045,0.3225042695233659,0.3272720085385618,0.3265923545467991,0.3250161532010833,0.3242350095623805,0.3232834443579317,0.3220751108277611,0.3199333567705547,0.3180359993046666,0.3180312817654195,0.3193300243906599,0.3201019081045448,0.3211539540887916,0.321978672985782,0.3235805027102823,0.3251414387620474,0.3257710628879373,0.3264708956003762,0.3282946622471139,0.3315741238188541,0.3337207664130741,0.3384750288971262,0.3397116044861524,0.3419890384717714,0.3453637570317932,0.3462768387391502,0.3436419695412501,0.347738812138387,0.350320415013732,0.3499898021619416,0.3523969722455845,0.3600953895071542,0.0,2.483932051799653,54.03588152091356,178.77662823030792,258.5696864682223,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95747,45172,428.34762446865176,5893,60.29431731542503,4616,47.57329211359102,1846,18.83087720764097,77.36211040614715,79.72298387663494,63.32787542470121,65.0753384123473,77.12674910790862,79.49274047755236,63.239717091046685,64.99212516854517,0.23536129823853,230.24339908258185,0.0881583336545261,83.21324380213468,158.48624,111.4449861148426,165526.0634797957,116395.27725656428,397.43124,262.4511046889483,414468.4637638777,273492.62607595883,379.10268,185.04316082322728,392400.492965837,190477.45191604985,2651.77168,1228.863301643399,2734957.795022298,1248845.0412476617,1091.53937,486.4015728791919,1122487.889959999,490470.388502189,1798.70198,765.8273082632945,1836957.87857583,763962.2256484831,0.38005,100000,0,720392,7523.91197635435,0,0.0,0,0.0,34405,358.6744232195265,0,0.0,34661,358.4133184329536,1571887,0,56416,0,0,0,0,0,60,0.6266514877750738,0,0.0,1,0.0104441914629178,0,0.0,0.05893,0.1550585449282989,0.3132530120481928,0.01846,0.3369898370704952,0.6630101629295048,24.26963087996512,4.380625760819292,0.3158578856152513,0.2378682842287695,0.2281195840554592,0.2181542461005199,11.153769293228406,5.805086409985169,19.73651256885533,12096.756112813327,52.282725933048205,13.101667739066924,16.456893330602703,11.756525707599742,10.967639155778835,0.5617417677642981,0.7604735883424408,0.7133058984910837,0.5726495726495726,0.1142005958291956,0.7233716475095785,0.9090909090909092,0.8593350383631714,0.7159533073929961,0.1491228070175438,0.4980368468740562,0.6651718983557549,0.6597938144329897,0.5263819095477387,0.10397946084724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0045024033098748,0.0069231550096436,0.0090634748061818,0.0112506993540511,0.0132093534851509,0.0155405543205596,0.0176427346238666,0.0195703520413901,0.02161669533874,0.0238534744441709,0.0262444275530538,0.0281784325425402,0.0302652459759691,0.0322940211165123,0.0341897131041612,0.0360671015843429,0.0383781372233692,0.0404669341593729,0.0426327521196591,0.0572362102801787,0.0710392232765926,0.0836575671452392,0.0962167506336969,0.1080040505474568,0.1233011454378153,0.135010980383836,0.1456281738723105,0.1563241233412398,0.1669615570210712,0.180218217851642,0.1920845869137031,0.2037055169337554,0.2138223034254893,0.2240299411084814,0.2340295861266552,0.2432429413867048,0.2531058696435002,0.2620374258122354,0.2689369208389173,0.2761403102570039,0.2827760488569623,0.289329466769249,0.2950135514354928,0.3003619843545017,0.3050329198826227,0.3096630395311854,0.3147832285328785,0.3191183517010062,0.3233046989430347,0.3227540312260046,0.3209227423506255,0.3201717946912624,0.3195602236444804,0.3182351456108825,0.3164719751366413,0.3145926957402367,0.3155857997868328,0.3161896319530863,0.3176891451759304,0.3178362627715412,0.318342845896477,0.3199958255061574,0.3216561928956634,0.3226007378659384,0.3244169739780813,0.3260462742429397,0.3302488433162436,0.3332403598075448,0.3364445494643982,0.338633181263833,0.3415518872884029,0.3421430802874102,0.3430893085546611,0.3465144342337324,0.3484669811320754,0.3506828528072838,0.3566433566433566,0.3637105549510337,0.3649691358024691,0.0,2.4748725046589715,56.93975723873755,162.6579340202423,252.35745316163693,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95768,45008,426.1653161807702,5874,60.35418929078607,4565,47.1765098989224,1787,18.35686241750898,77.32840490063373,79.68988736693622,63.31625382636724,65.06524291232681,77.09912740279724,79.45920599908642,63.23166405629844,64.98206167674547,0.2292774978364917,230.68136784979745,0.0845897700688027,83.1812355813355,157.38888,110.71816189653336,164343.91445994488,115610.8114365272,395.53157,260.7425317638629,412547.1869518002,271801.804113966,376.73234,183.64843200626692,390101.9025144098,189240.6293870895,2609.24332,1198.918285337628,2699207.042018211,1226559.5661782925,1075.86282,481.0539712157497,1111738.5556762177,490645.02883609297,1745.57018,733.9070275530054,1795066.2016539972,743466.8737092385,0.37822,100000,0,715404,7470.177929997494,0,0.0,0,0.0,34192,356.52827666861583,0,0.0,34371,355.6407150613984,1578036,0,56644,0,0,0,0,0,70,0.7309330882967171,0,0.0,1,0.0104419012613816,0,0.0,0.05874,0.1553064354079636,0.3042219952332312,0.01787,0.3423364790107387,0.6576635209892613,24.718032103338462,4.358496866369915,0.327710843373494,0.2293537787513691,0.2295728368017524,0.2133625410733844,11.192683751656178,5.823872069248756,19.093349838205423,12050.163152662772,51.59933070646779,12.384395375096702,16.78889877274579,11.642284096485668,10.783752462139624,0.5649507119386638,0.7717287488061128,0.7018716577540107,0.5811068702290076,0.1149897330595482,0.7352459016393442,0.9195710455764076,0.8677248677248677,0.772,0.1506849315068493,0.5028400597907324,0.6899109792284867,0.6457960644007156,0.5213032581453634,0.1046357615894039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381595614239,0.0047161200024341,0.0069345733663647,0.0091058761356938,0.0115053610302944,0.0136183996088657,0.0157652145537608,0.0178257851104667,0.020139648527352,0.0222738579017943,0.0243557414355126,0.0264084687811239,0.0285173644319665,0.0310237209925118,0.0329804140094524,0.0350402083807082,0.0370362702881748,0.0391176745102512,0.0410570288469532,0.0430231831531587,0.0577091683366733,0.0717557730923694,0.08441326958564,0.0965199020401299,0.1085999072786277,0.1234845842449609,0.135332605168556,0.1467264058575624,0.1576541456172767,0.1671920569565963,0.1802741968487825,0.1918578862527452,0.2031722547377124,0.2124774454590191,0.2216034163951747,0.2323325174709002,0.242054635539883,0.2511508030297914,0.2592100632358117,0.267703272527271,0.2752024994214302,0.2813552582335329,0.2873549609282501,0.2931309616653668,0.2988440079254136,0.3040481386946818,0.3091593003573443,0.3137119995922839,0.3181936086324963,0.3220354648322484,0.3211242922620652,0.319508131256799,0.3182241277183877,0.3181371557379418,0.3166198272144652,0.3145607553995432,0.3122385600202814,0.3123037208766997,0.3130610221074769,0.3139206576125804,0.3141460307945903,0.3152918418507333,0.3154014827190143,0.3155095747771099,0.3174423913304659,0.3190680723675647,0.3202824681796178,0.3224936498479099,0.3271589836787474,0.3303380571609532,0.3340285649512582,0.3381298756061564,0.3409842200461548,0.3416308365391868,0.3469692724385916,0.3507392630837831,0.3529232643118148,0.3514891880864953,0.3539823008849557,0.3509933774834437,0.0,1.945791025396752,53.67005113848563,166.21449656518084,254.6977951116266,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95736,45210,429.107127935155,5949,60.92796858026239,4627,47.798111473218015,1819,18.676359989972426,77.31464774318667,79.67971522966815,63.30648041847581,65.05550890535557,77.08364342035739,79.44811557393867,63.220758721432375,64.97170654475212,0.2310043228292784,231.5996557294824,0.0857216970434322,83.8023606034426,158.2273,111.368284517875,165274.60934235816,116328.53317234376,395.98261,260.6113972294482,413087.9919779393,271687.4605471799,382.61966,186.5493078288605,396046.7326815409,192184.43481874192,2647.47848,1223.2379007280251,2737060.875741623,1249385.8326314294,1105.17874,490.1269829200672,1143496.0829781902,501072.8079730627,1774.35904,750.2124424604144,1823855.686471129,758592.4769883427,0.37991,100000,0,719215,7512.482242834461,0,0.0,0,0.0,34241,357.0965989805298,0,0.0,34902,360.91961226706775,1572507,0,56366,0,0,0,0,0,71,0.7416227960223949,0,0.0,1,0.0104453914932731,0,0.0,0.05949,0.1565897186175673,0.3057656749033451,0.01819,0.3434684684684684,0.6565315315315315,24.43049111056316,4.306102055267364,0.3252647503782148,0.230819105251783,0.2264966500972552,0.2174194942727469,11.33907091323841,6.0725823831302135,19.43287205052848,12110.820697134595,52.57967210798319,12.83313797933666,17.000196257314254,11.64869011951418,11.097647751818096,0.5662416252431381,0.7865168539325843,0.7009966777408638,0.5868320610687023,0.1093439363817097,0.7428115015974441,0.9319899244332494,0.8952618453865336,0.7096774193548387,0.1213592233009708,0.5007407407407407,0.7004470938897168,0.6304347826086957,0.54875,0.10625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0044205168760328,0.0069631945431291,0.0093384818615994,0.0115367007477491,0.0138045560128774,0.0159047551034982,0.0180821302403463,0.0202093512972011,0.0220609311657999,0.0241661796520152,0.0260801708559224,0.0283078062478784,0.0304169972488691,0.0326073492981007,0.0345904147541661,0.0364291557506912,0.0382687738012472,0.0402711779813461,0.042286095281751,0.0567568414128653,0.071089898577574,0.0843570671730258,0.0972647253683313,0.1089482674989982,0.1254046163285167,0.1371635391016387,0.1489080784096595,0.159288913594236,0.1698394643087092,0.1826406711669937,0.19481856302348,0.2057259891929579,0.2158613963376546,0.2256769868571932,0.235417568873047,0.2448963611754309,0.2540998398411946,0.2623730278798357,0.2691101641377884,0.2765138338087618,0.2828130127033235,0.2889697774510618,0.2935279781984945,0.2994612737288857,0.3047297130591399,0.3086983729662078,0.3125039754729222,0.3175231589297728,0.3214022140221402,0.3203626239121955,0.3191331473567041,0.3176796356685033,0.3164445598246221,0.3158058863710611,0.3147274954072259,0.3132133415649586,0.3143068331143233,0.3151354585078198,0.3159040616746377,0.3159709210822154,0.3173424446507218,0.3187364198562594,0.319485613675366,0.3209841018631753,0.3233758474686339,0.3266700837177516,0.3297365119196989,0.3336713641291045,0.3362263702294614,0.3397678124288641,0.3421471806307741,0.3458056346945236,0.3433785752626332,0.3432115129710282,0.3462363030014292,0.3492454573452417,0.3512174989682212,0.3495821727019498,0.3520686963309914,0.0,2.026295870718925,54.95277708005072,172.1455315090818,254.24512742673957,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95814,45325,428.9978500010437,5994,61.33759158369341,4719,48.66720938484982,1898,19.44392260003757,77.3504688262772,79.68439846496503,63.33176974345843,65.06069743186664,77.11460155682647,79.44933507218411,63.243924855178335,64.97540574618213,0.235867269450722,235.0633927809156,0.0878448882800952,85.29168568450984,157.66674,110.99614587713542,164555.0128373724,115845.4358205851,400.55579,263.7175502966198,417439.77915544703,274623.23908470565,387.17011,188.1482314967413,400765.2222013484,193742.7118569317,2717.96412,1258.0909453848074,2805313.0857703467,1281659.783940559,1128.85059,505.69168960494,1162401.2252906673,512045.9374753694,1852.1894,783.2241586779342,1899465.2555993905,788752.5696918676,0.38159,100000,0,716667,7479.773310789656,0,0.0,0,0.0,34561,360.07264074143654,0,0.0,35384,365.9799194272236,1573933,0,56611,0,0,0,0,0,69,0.7097083933454402,0,0.0,0,0.0,0,0.0,0.05994,0.1570795880395188,0.31664998331665,0.01898,0.3327487244897959,0.6672512755102041,24.28280969722749,4.415437295934992,0.3297308751854206,0.2307692307692307,0.2180546726001271,0.2214452214452214,11.320840375345565,5.8400183336633,20.162142709814205,12166.738821499368,53.82300314047363,13.062037092445076,17.810957929292794,11.539446014483888,11.410562104251875,0.5619834710743802,0.7823691460055097,0.6928020565552699,0.5801749271137027,0.1196172248803827,0.7245600612088753,0.9221105527638191,0.8387096774193549,0.7317073170731707,0.1572052401746725,0.4997069167643611,0.7018813314037626,0.6363636363636364,0.5325670498084292,0.1090686274509804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110055311303,0.0047250641331129,0.0068101085963665,0.0090324416040966,0.0110258966169619,0.0131490497239819,0.0152873387384631,0.0174515970917408,0.0194981800335364,0.0216100567123231,0.0238917998831044,0.0262155362735534,0.0282391172447835,0.0305046343975283,0.0327956767460088,0.0351087461900087,0.0371819555721176,0.0393615035160868,0.0414016710313006,0.0432840948127791,0.0583013435700575,0.0714815937771179,0.0851636836148719,0.0978272289814873,0.1104660963378144,0.1264359313077939,0.1382838843763917,0.1494298114973831,0.1597552902991608,0.1704873056189649,0.1828131726216099,0.1952342854671654,0.2063117870722433,0.2163586083268661,0.2259150467012112,0.2366152550635997,0.2464339129852445,0.2544621756060231,0.2629570747217806,0.2704953716432957,0.2776099362202081,0.2855237761010704,0.2920216794471267,0.2966518071134119,0.3021560000972266,0.3067377198825648,0.3112135600015033,0.3159564303458819,0.3206708399756341,0.3240019023964911,0.3233016780877354,0.3224943829517416,0.3209772060482961,0.3195834538617298,0.3177642336851494,0.3164626767359568,0.3136496870791412,0.3141955732290451,0.3151932474455797,0.3157904139200028,0.3161383339262643,0.3166916818074097,0.3177660086663457,0.3183971751664953,0.3202414738563663,0.32158487027196,0.3218550955414013,0.3259136004018585,0.3279049449589376,0.3313930466460759,0.3335146159075459,0.3353935552033809,0.335422411631988,0.337138968698019,0.3385723641126391,0.3441756693283231,0.3450319051959891,0.3537442280666533,0.3565240931239848,0.3599391866210566,0.0,2.230378410812909,57.37083666775168,176.63737585219175,253.92308462230912,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95702,45157,428.02658251656186,5997,61.08545275960795,4698,48.337547804643584,1921,19.66521075839585,77.30949638025908,79.66967376894094,63.31695901961641,65.0593952565904,77.06906715822116,79.43085930680877,63.22614184466971,64.97183226316307,0.2404292220379176,238.8144621321686,0.0908171749467001,87.56299342734053,158.54872,111.61790381581253,165669.18141731626,116630.6909111748,399.52757,262.7108544898475,416753.1608534827,273791.973511366,387.71972,189.28002646884957,399489.7703287288,193593.87314976176,2698.95204,1256.0609000292268,2779555.9131470607,1272249.299349103,1176.34834,528.4782721853793,1211186.5582746444,534390.3156836793,1889.24354,800.5832197406995,1936146.496415958,804087.2897557231,0.37915,100000,0,720676,7530.417337150739,0,0.0,0,0.0,34517,359.9193329293014,0,0.0,35364,363.9317882593885,1568281,0,56335,0,0,0,0,0,83,0.8672755010344612,0,0.0,1,0.0104491024221019,0,0.0,0.05997,0.1581695898720823,0.3203268300817075,0.01921,0.3365019011406844,0.6634980988593155,24.48319973950875,4.370303424020224,0.3126862494678586,0.2337164750957854,0.2181779480630055,0.2354193273733503,11.331993199008588,5.943217221142061,20.45076587542461,12070.456598249928,53.55446819682977,13.141078641644096,16.72551817932217,11.36901292089546,12.318858454968042,0.55534269902086,0.7741347905282332,0.7161334240980258,0.5639024390243902,0.1166365280289331,0.7291021671826625,0.9117647058823528,0.8886075949367088,0.7396694214876033,0.1619433198380566,0.4894304169113329,0.6927536231884058,0.6527001862197392,0.5095785440613027,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025622588387802,0.0047441407833914,0.0070712604496388,0.0094052165434305,0.0117724800487978,0.0137103423005282,0.0159710543749681,0.0179652331907683,0.019991006091329,0.0220650694394694,0.0243034912564833,0.0264392718162496,0.0287715040771627,0.0306996766286997,0.032796353210536,0.0350670551526047,0.037124050423299,0.0391085207002406,0.0411050022345323,0.0430525317972062,0.0571828367950043,0.0712872737929518,0.0846060250062935,0.0974719750983237,0.1099803851264421,0.1257298189202911,0.1373235699883264,0.148160766569071,0.1585700701930576,0.168591744152376,0.1815634933462636,0.1928874642640561,0.20442373840728,0.2143537422412944,0.2237384083349853,0.2339394611375984,0.2435313044644054,0.2524927049651303,0.2601854166193278,0.2679797759765199,0.2746262780653304,0.2811651530755547,0.2876919979630748,0.2934817818622452,0.2992682096664397,0.3042410934570216,0.309448700615893,0.3139666653933814,0.3182772836881271,0.322461229292542,0.3215750283278476,0.3193860821404461,0.3176052263972569,0.3174192242052587,0.3164027620691708,0.3138674931721238,0.3112671134970299,0.3110379455099185,0.3121368458941089,0.3122423373364402,0.3134460259857473,0.3141188622278722,0.3148915581547005,0.3154998540080408,0.3178135203773128,0.318731867959541,0.31865864144454,0.3214296971034135,0.3244269441710026,0.3283948661067976,0.3314244159621852,0.3340944087505973,0.3389179315991686,0.3395277989337395,0.3386975343497083,0.3390111189969245,0.3426306965401615,0.3410995299407316,0.3459741687276724,0.348357524828113,0.0,2.9274930241465387,55.87638545897824,173.36191875164215,258.03340450655014,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95722,45176,428.48039113265503,5995,61.15626501744636,4655,47.930465305781325,1880,19.19099057687888,77.40440741590693,79.76184236769217,63.3594678928421,65.09931626795849,77.16804531922581,79.52964769589994,63.27002962617596,65.01468026990013,0.2363620966811197,232.19467179222875,0.0894382666661428,84.63599805835997,157.21574,110.62408214773954,164242.01333026888,115568.08481617554,399.10842,262.85187917030026,416256.9628716491,273910.8555716557,381.7703,186.2916984743749,394600.7291949605,191386.2720616873,2674.674,1235.5450567105122,2757168.216293015,1253721.836892786,1109.47789,497.2403747909135,1141202.3986126492,501602.81313690986,1837.78864,780.0763180608691,1878351.2881051376,777785.2426878181,0.37991,100000,0,714617,7465.546060466769,0,0.0,0,0.0,34443,359.0919537828295,0,0.0,34830,359.58295898539524,1580124,0,56669,0,0,0,0,0,83,0.8670942938927311,0,0.0,1,0.0104469192035268,0,0.0,0.05995,0.1578005317048774,0.3135946622185154,0.0188,0.3232642732879962,0.6767357267120038,24.40541864028556,4.383605238464705,0.3226638023630505,0.2292158968850698,0.2210526315789473,0.2270676691729323,11.318631187416177,5.949919234219858,19.999434374047777,12047.588151887854,52.663936381218335,12.796107031415444,16.834231360553872,11.472992745303454,11.560605243945576,0.5503759398496241,0.788191190253046,0.6731025299600533,0.5714285714285714,0.1154210028382213,0.7214397496087637,0.9303482587064676,0.8541666666666666,0.7233201581027668,0.1548117154811715,0.4856381403612674,0.7022556390977444,0.610912343470483,0.5219072164948454,0.1039119804400978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027033320846031,0.0048036483405117,0.0069592387444965,0.00917077134007,0.0112248736693339,0.0133957654723127,0.0160407643312101,0.0180606716120935,0.0201591891367207,0.0221746960828455,0.0240647740084042,0.0261720995155595,0.0283540660018505,0.0302512179797501,0.0323063271286474,0.0342995368838901,0.0364735975477149,0.0385896119254349,0.0406771910497708,0.0425893136131652,0.0564516971006775,0.0707326517157298,0.0841725411211816,0.0968352434023761,0.1091867390502292,0.124505636275194,0.136094549003798,0.1475050303952985,0.1579965169823819,0.1678945618719771,0.1806129921599035,0.1933539646814404,0.2039897319874695,0.2130891197375615,0.2229092629471113,0.2338309559670417,0.2434220803856368,0.2523389708528247,0.2609460072595281,0.2687235260446479,0.2755946464483021,0.2814153091609739,0.2874185013701218,0.2933758844903423,0.2981945959045196,0.3040025569159659,0.3082622221666937,0.3119817131246428,0.3165096716672481,0.3197346949518345,0.3190221112408877,0.318074505174733,0.3179154193194755,0.3166186220812914,0.3159344728500755,0.3136386543072247,0.3112803577353959,0.3112413635024068,0.3120816229198249,0.3130973356826312,0.3147659916605897,0.3155836460596484,0.3162339562690748,0.3176208509690354,0.3198036398467433,0.3202286605170846,0.3213668432833706,0.3239326405408789,0.3272517563175002,0.329643831284342,0.3331823124320406,0.3349907431896323,0.3374616876211922,0.3388704318936877,0.3419780628369585,0.3470581354544391,0.3512239622928387,0.3535778713168971,0.3582048458149779,0.3586530931871574,0.0,2.755237416271985,55.32957011307718,171.01050989829255,251.87879396404452,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95736,45219,428.7310938413972,6058,61.847163031670426,4765,49.07244923539734,1874,19.073284866716804,77.33232137485312,79.69810854280668,63.31916690730778,65.07118520605502,77.10294894494734,79.4754916491907,63.23405643765991,64.9921687937446,0.22937242990578,222.61689361597803,0.0851104696478728,79.01641231042333,158.30606,111.34164136729709,165355.49845408206,116299.6612776543,399.224,262.28653942128955,416256.41347037687,273225.7043524486,379.91343,185.08292802106607,392770.0864878416,190156.08008687323,2738.55824,1255.2425305398592,2820446.4360324224,1271543.3334869782,1143.19742,501.6170002976054,1177766.1067936826,508046.2971012841,1837.80816,761.6524004871569,1872694.5558619536,755022.7058480035,0.38219,100000,0,719573,7516.159020640093,0,0.0,0,0.0,34504,359.64527450488845,0,0.0,34799,359.5408205899557,1575343,0,56505,0,0,0,0,0,64,0.6580596640762095,0,0.0,0,0.0,0,0.0,0.06058,0.1585075486014809,0.3093430174975239,0.01874,0.3319678588309437,0.6680321411690563,24.717261506678888,4.365591987414431,0.3229800629590766,0.2325288562434417,0.2239244491080797,0.2205666316894018,11.267473814384145,5.764956777103631,19.699067222408495,12189.8249414916,53.82583329936397,13.27271997811692,17.40864839583455,11.841190436586087,11.303274488826402,0.5716684155299055,0.8113718411552346,0.7063027940220923,0.5763823805060918,0.1170313986679353,0.7416342412451362,0.9604938271604938,0.8523002421307506,0.6954887218045113,0.1343283582089552,0.5089080459770114,0.7254623044096729,0.6527531083481349,0.5368289637952559,0.1129411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.0047976954832689,0.0072699212086751,0.0097162370924465,0.0117502238137869,0.0139464756879004,0.0160418536346577,0.0181931413286506,0.0204693011604723,0.02253276003276,0.0244805068326037,0.0265078794723063,0.0285864121996113,0.0306606931355888,0.0323858653598142,0.0343558789482388,0.0363444333996023,0.0385217923578905,0.0406139904180913,0.0425567371085165,0.057468864507104,0.0721460709427644,0.0852851403937528,0.0981534449398502,0.1103612628382225,0.1264134378404679,0.138371587134838,0.1501884141278661,0.1606036655701286,0.1709129511677282,0.1837413962105626,0.1954722044866731,0.2074022498313714,0.217408424207291,0.2267535268613685,0.2367759580994142,0.2454223898416665,0.2543991899189919,0.2623456790123457,0.2693479306474886,0.2763672553058532,0.2830305653358911,0.2902015995456912,0.2957873044020033,0.3006423254853868,0.3060555658227068,0.3114399359583729,0.3159741200696572,0.3207075935607433,0.3254983125922801,0.3248789671866595,0.3230786149257014,0.3212481886351805,0.3197362345607757,0.3188173479383738,0.3173947626040137,0.3147629225045515,0.3151060027218023,0.3164899962507242,0.3168700057077626,0.3179661271264324,0.319451588651921,0.3209762643629958,0.3226694725530581,0.3254620370593479,0.3270474700052165,0.3276097727661028,0.3295615721625114,0.3316715233648141,0.3344492268452096,0.338410324228191,0.3394563998504832,0.3431757698644024,0.3454573240620463,0.3483230279183061,0.3514979948100967,0.3586561743341404,0.3547418967587035,0.3591836734693877,0.3610578765810655,0.0,2.565420895438377,55.93597744966455,167.50978424648437,271.6309957613374,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95722,45441,430.32949583167925,5954,61.062242744614615,4668,48.13940368985187,1889,19.30590668811768,77.41699606751023,79.7698017647886,63.36600846061516,65.10029496978346,77.17403176278755,79.53202474707177,63.275083488060936,65.01478035359142,0.2429643047226761,237.77701771682305,0.0909249725542267,85.51461619204304,159.13766,111.90430241220947,166249.82762583316,116905.52058273905,400.10889,263.7164260216064,417378.1889220869,274890.5666061193,382.63789,186.5414638641799,396554.8463258185,192377.81216805975,2719.41752,1249.5587155078456,2806630.408892418,1271123.142592063,1122.95255,498.108847308731,1158569.963017906,505864.2193151897,1864.613,790.5300995001606,1908073.504523516,789870.254197657,0.38274,100000,0,723353,7556.810346628779,0,0.0,0,0.0,34578,360.5963101481373,0,0.0,34921,361.5678736340653,1569930,0,56310,0,0,0,0,0,78,0.8148596978750967,0,0.0,0,0.0,0,0.0,0.05954,0.1555625228614725,0.3172657037285858,0.01889,0.3431498079385403,0.6568501920614597,24.348124961731692,4.433331426489145,0.3170522707797772,0.2245072836332476,0.2217223650385604,0.2367180805484147,11.220480919414236,5.677763156604223,20.12218352597821,12171.866511948952,52.80788811434434,12.506484810589416,16.572571948647305,11.523463695347877,12.205367659759748,0.5565552699228792,0.8024809160305344,0.7054054054054054,0.5816425120772947,0.1004524886877828,0.7198412698412698,0.9348958333333334,0.8642297650130548,0.7590361445783133,0.1147540983606557,0.4961854460093897,0.7259036144578314,0.649954421148587,0.5254452926208651,0.0963995354239256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026923621935666,0.0049336939894031,0.0072723953261927,0.0095654911199341,0.0118045387994143,0.0140576966143447,0.016328943613161,0.0182894468258828,0.0205612443027367,0.0228451583201186,0.0248806181214518,0.0269304979678968,0.0289691187960031,0.0312870104324363,0.0332910360764651,0.0355175727764056,0.0375627685458404,0.039392619329143,0.0413864781998648,0.0434008063423934,0.0577953199887228,0.0719375529721981,0.0857691419938309,0.0984528980553422,0.1111439270080692,0.1267571369641327,0.1381757616905711,0.149095167127954,0.1604983118936706,0.1698198198198198,0.1824809657653,0.1941483894004479,0.2052480542632288,0.2166693975640395,0.2259946599861555,0.2359872540992675,0.2452211906062261,0.2539893019283499,0.2621285472953821,0.2695437223194973,0.2773725159246714,0.2841218466284192,0.2905189738739804,0.2963273319287492,0.3012363954038609,0.3060860143562467,0.3110525065930082,0.3156583629893238,0.3190030910901589,0.3231470983731906,0.322703429724277,0.3205579222206953,0.320055177073363,0.3194299919065788,0.3186287615482874,0.3168339555664361,0.3144184136111594,0.3150725302072759,0.3155259617513326,0.3172531517274489,0.3178322069969757,0.3187658645048307,0.3194369021262375,0.3209843579645328,0.3213772627142994,0.3221056458733703,0.3223407878306277,0.3260203762735171,0.3281211825067188,0.3301108787436373,0.3308949697462295,0.3331925675675675,0.3379331876365907,0.3434182590233545,0.3417132216014897,0.344093567251462,0.3500604594921402,0.3508072553318716,0.3588774959525094,0.3590604026845637,0.0,2.434762783767532,54.83447077793078,171.32808153885364,257.2335947363725,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95696,45392,430.3105667948504,5936,60.81758903193446,4619,47.69269352951012,1871,19.20665440561779,77.3508434030137,79.74211416752486,63.31502979323547,65.08316324720943,77.12128428655099,79.51193035689629,63.23075127838031,65.00046402634548,0.2295591164627097,230.1838106285743,0.084278514855157,82.69922086394388,159.69954,112.34973310093233,166881.687844842,117402.32082481416,399.31219,262.76248578628633,416703.2268851362,274013.4755014412,385.07931,187.1575541056285,398283.198879786,192406.77178748776,2652.41872,1211.291785671536,2741789.2492894167,1236006.1963386948,1125.65726,493.2186805865013,1160612.752884133,499958.74431835616,1831.8836,759.469743750271,1882781.1611770608,768479.5462724894,0.38132,100000,0,725907,7585.531265674636,0,0.0,0,0.0,34417,359.0432201972914,0,0.0,35077,362.41849189098815,1566694,0,56154,0,0,0,0,0,68,0.7105835144624645,0,0.0,2,0.0208995151312489,0,0.0,0.05936,0.1556697786635896,0.3151954177897574,0.01871,0.3252489559910054,0.6747510440089945,24.447321285963863,4.414751472674088,0.3147867503788699,0.2372807967092444,0.2188785451396406,0.229053907772245,11.270078798868044,5.870936368033677,19.684626760227,12181.25277767165,52.10283039218949,13.078821340443582,16.460907630818582,11.142856176512664,11.42024524441466,0.5648408746481922,0.791058394160584,0.7049518569463549,0.5816023738872403,0.1219281663516068,0.7475328947368421,0.9253731343283582,0.8590078328981723,0.7665198237885462,0.1666666666666666,0.4995592124595944,0.7132564841498559,0.6498599439775911,0.5280612244897959,0.1112412177985948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.004593807993023,0.0066491386573815,0.0091674119847142,0.0111599422165252,0.013406409812351,0.0158014465107264,0.0179445017515549,0.0197586418490488,0.0217941233703055,0.0240593176014521,0.0261295590636908,0.0281832114460867,0.0302496419703479,0.0323952237943383,0.034610017056908,0.0367369773320624,0.039223623436608,0.0410963178697732,0.0432874713362518,0.0575997159179922,0.071958790949923,0.0855532464260973,0.0987040037028465,0.111453344866142,0.1272030975604595,0.1391044079094006,0.1501634526306822,0.1603069753521879,0.1706066036419826,0.1838278883775073,0.1957651338009872,0.207721268307545,0.217483611849809,0.2273833247090687,0.2370656199410108,0.2458522207087511,0.2545260076559333,0.2623317621670736,0.2702981533065098,0.2774503560470098,0.2841586361134854,0.290270225444551,0.2959373388189855,0.3009942387631572,0.3057318561058871,0.3100821732768001,0.3153062651797408,0.3194401324640381,0.3235488126649076,0.3230893542522389,0.3217262150342437,0.3207289614410357,0.3189106495980603,0.3180787527601997,0.3167206502475096,0.3147560147228409,0.3145463777373757,0.3151575105319711,0.3163997791275538,0.3171310571658163,0.3187766910042706,0.3204927771871678,0.3218800071212391,0.3217424623416433,0.3227162993536329,0.3247921262514848,0.3304193075025758,0.3330427201394943,0.3345654738497837,0.3398386442511381,0.3438076659461169,0.3471962033220931,0.3486642380085003,0.3497329210008434,0.3511369019422075,0.3502283105022831,0.3621546412244086,0.3638567196337193,0.3678380443086325,0.0,2.15482729501374,53.23651908162444,172.65177623414925,253.75753498811227,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95725,45231,428.237137633847,5842,59.90075737790546,4555,47.030556281013325,1730,17.738312875424395,77.26691653433518,79.62772342289861,63.2951211478972,65.0395565563638,77.04418305634178,79.40604501603356,63.21175114534645,64.95899474186146,0.2227334779934011,221.67840686505255,0.083370002550744,80.5618145023459,157.43046,110.76238344065771,164461.1752415774,115708.94065359909,395.03624,260.0242317455032,412112.8754243928,271071.34159885417,375.79624,182.84199894006795,389275.4348393837,188433.0815599313,2602.56836,1193.1698270309212,2688782.6168712457,1216441.501207544,1098.46579,483.8519498910497,1132814.4580830503,490838.3403167829,1701.59546,722.7932666186009,1746273.3246278402,727091.0893636838,0.38134,100000,0,715593,7475.507965526247,0,0.0,0,0.0,34133,355.98850874902064,0,0.0,34303,355.0169757116741,1576431,0,56627,0,0,0,0,0,64,0.6685818751632281,0,0.0,0,0.0,0,0.0,0.05842,0.1531966224366706,0.296131461828141,0.0173,0.3360522022838499,0.6639477977161501,24.763999212766613,4.433291298739999,0.3132821075740944,0.24807903402854,0.2138309549945115,0.224807903402854,11.2110099398762,5.733179069266994,18.69040048488903,12224.666197352371,51.609773645327856,13.545968662130525,15.985602828681952,10.834930944106734,11.243271210408633,0.5637760702524698,0.7690265486725664,0.7119831814996496,0.580082135523614,0.115234375,0.7395498392282959,0.908466819221968,0.8926553672316384,0.7370689655172413,0.1628959276018099,0.4977348233162186,0.6810966810966811,0.65237651444548,0.5309973045822103,0.1021170610211706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194101203257,0.0049072787922416,0.0073060843446848,0.0093964912993569,0.0114923824827614,0.0134809037500127,0.0158213976247515,0.0180275824052429,0.0204655346902057,0.0226007206026858,0.0246327637284348,0.0268677556132767,0.0288652372872641,0.0311470006591957,0.0334265286962622,0.035527118241113,0.0376108027503935,0.0396003651906876,0.0415791771480842,0.0434587813620071,0.0586626012864422,0.0728722903168406,0.0864500692607983,0.0987268518518518,0.1109669251463839,0.1269920213328818,0.1390734803931975,0.1500670940808111,0.1606753346734528,0.1711997939162355,0.1837066902395377,0.1954752798153706,0.206825953433668,0.2167475276259733,0.2265579370764229,0.2369890229419403,0.2463325730131043,0.2547488677076996,0.2629922869832903,0.2710547130231438,0.2785390241644292,0.2859600664778446,0.2925324713766443,0.2978725955773013,0.302894023555723,0.3076221016280217,0.311824049125885,0.3171564319105303,0.3212493028443948,0.3255490870600688,0.3243623000432339,0.3232958077215277,0.3227434679334917,0.3214099443671766,0.3210689388071263,0.3186285047446488,0.3159650516282764,0.3160807827891806,0.3163866986630099,0.3164942178940961,0.3177968488854669,0.31849987115701,0.3189256267878176,0.3195319330180008,0.320033791938209,0.3205205257519141,0.3218749106300226,0.327098078867543,0.3312289413016492,0.3326636396512235,0.3360715924736117,0.3404198350647959,0.3426007835207886,0.3446724124780718,0.349421394298617,0.3514535570787048,0.3505484460694698,0.3553452788403463,0.3569281224378245,0.3544546850998464,0.0,2.112041643075049,54.51755195885941,164.7277834806744,252.36439656158345,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95691,44936,426.12157883186507,5975,61.18652746862296,4649,47.87284070602251,1875,19.050903428744604,77.288290147924,79.6594512578918,63.294707477804174,65.04444998483886,77.04903535003021,79.4238663947878,63.20469094367176,64.95928408378849,0.2392547978937926,235.58486310400892,0.0900165341324168,85.1659010503738,157.58578,110.82570329122352,164681.9241098954,115816.22440064742,396.62942,262.0767586445276,413767.397142887,273156.85755981173,380.34906,185.20076874373044,393822.8778046002,190640.77696035092,2690.56212,1250.6935095157771,2771598.164926691,1266950.762970684,1125.78789,501.042922014742,1155911.841238988,503106.53943704587,1835.42002,783.0008920732216,1867281.102716034,775750.0484315333,0.37839,100000,0,716299,7485.5420049952445,0,0.0,0,0.0,34327,357.9646988745023,0,0.0,34800,359.91890564420896,1571227,0,56446,0,0,0,0,0,56,0.585217000553866,0,0.0,0,0.0,0,0.0,0.05975,0.1579058643198816,0.3138075313807531,0.01875,0.3345081704581865,0.6654918295418135,24.19426544749461,4.391474440515039,0.3293181329318133,0.2258550225855022,0.2178963217896321,0.2269305226930522,11.310328129387804,5.956905349922512,20.02091457123451,12087.30774566416,53.18052330296548,12.81432465783765,17.48786718108986,11.34546282298682,11.532868641051149,0.5685093568509357,0.7961904761904762,0.7008491182233834,0.6031589338598223,0.1165876777251184,0.7309803921568627,0.9221105527638191,0.8709677419354839,0.736,0.1339285714285714,0.507113218731476,0.7193251533742331,0.6400709219858156,0.5596330275229358,0.111913357400722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205227924123,0.0046228241806145,0.0067073913219953,0.0090412239175928,0.0110446668293873,0.0132879878626195,0.0154768459044473,0.017598121778186,0.0199636096005233,0.0220950938453036,0.0241357752656985,0.0261858569683531,0.0283572728487852,0.0305255460921327,0.0324397363562285,0.0345804051260851,0.0367260302340029,0.0386371655700616,0.0405134125919222,0.0426068558683439,0.0574460529339265,0.0708848566073691,0.0847729801213291,0.0977794148600294,0.1105269825183683,0.1262441235017576,0.1382877046917146,0.1494752543817591,0.1602737528738705,0.1695393966730027,0.1820074205099443,0.1935700586214743,0.2043201673166162,0.2137749011619629,0.223704650368526,0.2334890741007912,0.2436561280293456,0.2522584501562024,0.2596549919209849,0.267307626038113,0.2747743567136128,0.2813610612618318,0.2876622914243668,0.2936433549627493,0.2986503605534983,0.3041114173082389,0.3096299458794279,0.3133117297338674,0.3179497837297206,0.3224466029695895,0.3218269866321341,0.3211433143424701,0.3204499526588754,0.3198701505731635,0.3186215325910357,0.3168508287292818,0.3148479994925387,0.3141058307168806,0.3144172829361819,0.3152895297042987,0.3153843265367429,0.3164143662807955,0.3171546183895493,0.3172094686724635,0.3180268843014882,0.3185314140206828,0.3192753952906381,0.3218697934676684,0.3239520747689821,0.328831333915945,0.3304109589041096,0.3342548779839439,0.3367885412740294,0.3349024371725761,0.3375790256600967,0.3432521087160262,0.347366832654293,0.3509827517047734,0.3505545036516094,0.3550697323784395,0.0,2.7218925362014343,55.38215128685655,177.77421766777215,249.6561690444541,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95825,45086,427.5710931385338,5919,60.47482389773023,4647,47.85807461518393,1832,18.72162796764936,77.36488025655099,79.67906815901377,63.35773544642036,65.07083685102518,77.1292629458035,79.44683561567824,63.26923829339065,64.98637070041634,0.2356173107474859,232.23254333552745,0.0884971530297065,84.46615060883289,159.04086,111.93396556528796,165969.88259848685,116810.60764646796,402.15051,265.0341863836431,418997.1614923037,275908.09999590204,384.11349,187.19894570212975,396865.8283328985,192305.34447186813,2677.39304,1238.001752769345,2758751.26532742,1256720.0358667828,1094.70148,491.7674247525148,1122038.1111400991,492874.0466974531,1805.35646,768.1280719748004,1845912.0897469344,768171.9654821155,0.37891,100000,0,722913,7544.085572658491,0,0.0,0,0.0,34710,361.5236107487608,0,0.0,35051,361.8053743803809,1570942,0,56368,0,0,0,0,0,68,0.7096269240803548,0,0.0,1,0.0104356900600052,0,0.0,0.05919,0.1562112374970309,0.3095117418482851,0.01832,0.3331721470019342,0.6668278529980658,24.27143131417402,4.378760033835457,0.3184850441144825,0.2360662793199913,0.2143318269851517,0.2311168495803744,10.997101179356626,5.609094942342758,19.753575382863843,12068.563179268973,53.0422418192762,13.241796409911304,17.000015560583638,10.865749092491846,11.934680756289426,0.5644501829137077,0.7876025524156791,0.7094594594594594,0.5873493975903614,0.1154562383612663,0.725,0.9219512195121952,0.8498727735368957,0.7524271844660194,0.1385281385281385,0.5060170237745818,0.7074235807860262,0.6586936522539099,0.5443037974683544,0.1091340450771055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044405693661543,0.0064534458965825,0.0088469507983585,0.0109008450188629,0.0132264896346678,0.0153010255051071,0.0173652939134695,0.019903091265947,0.0219253800092123,0.0238695527405403,0.0258718006609059,0.0278731320273798,0.0302185078067909,0.032047251399297,0.0339843911301977,0.0360057509903908,0.0380148163497901,0.0401212775678032,0.0420017687145606,0.0566374265956004,0.0711388912116397,0.0844044962653341,0.0974923341874238,0.1094108726330644,0.1247307286166842,0.1367021558345251,0.1483576060380567,0.1589733195361589,0.1689176886413538,0.1820128018933892,0.1939720873917602,0.2050460161029196,0.2147226530924344,0.224360594836398,0.2342173951513006,0.2434239112269795,0.2525326265190143,0.2612935007870627,0.2692628714512754,0.2760703602323782,0.2823898930456307,0.2883176741712462,0.2932830910939649,0.2998737373737373,0.305221031892624,0.3098390787351363,0.3139305822096259,0.3183405322918552,0.322350400337126,0.3206948478003657,0.3194270711624902,0.3183661971830986,0.3170100858307083,0.3159616871913855,0.3134177370405567,0.311242941437726,0.3121236054891894,0.3128448541759485,0.313907687900598,0.3146928173467851,0.3160161988327312,0.3171229132500736,0.3174265019173413,0.3184298454364078,0.3190790331412479,0.31927899240895,0.3214319389005877,0.3255127844900253,0.3277551996174994,0.331088818652375,0.3330839123463388,0.3361734596553697,0.3401412776412776,0.3434381830276537,0.3432889100428367,0.347792647285033,0.3439477444376403,0.3471074380165289,0.3484790142472083,0.0,2.314478690912081,53.99695043197746,183.603013588413,247.59488831038183,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95648,44949,425.2467380394781,6038,62.0608899297424,4741,49.09668785547006,1817,18.69354299096688,77.2563444549925,79.6667515038222,63.27473565930678,65.05592697918799,77.02738459492029,79.43874918565402,63.18968238572957,64.9736104100926,0.2289598600722087,228.00231816817984,0.0850532735772091,82.31656909538287,157.19418,110.60867368154912,164346.54148544662,115641.3868366815,397.7256,261.0259778041267,415338.5224991637,272419.04462626163,378.40767,184.15262633205285,393279.0544496487,190658.55078117872,2736.81304,1255.1909079574343,2836100.9953161594,1287064.8084198665,1117.76123,498.6029309363845,1156359.4220475077,509038.5513283092,1790.81486,754.2663287683846,1843906.2395449984,762725.5800189335,0.37957,100000,0,714519,7470.2973402475745,0,0.0,0,0.0,34334,358.46018735363,0,0.0,34650,359.92388758782204,1575471,0,56690,0,0,0,0,0,65,0.6691201070592172,0,0.0,0,0.0,0,0.0,0.06038,0.1590747424717443,0.3009274594236502,0.01817,0.3416060701865318,0.6583939298134682,24.44304370551269,4.336438836256677,0.3332630246783379,0.2233705969204809,0.214722632356043,0.2286437460451381,11.068390944008804,5.632797400851456,19.51388187755803,12122.95821922549,53.79742892315974,12.75914539958137,17.828818145293543,11.27571798281275,11.933747395472066,0.5593756591436406,0.7705382436260623,0.7088607594936709,0.5795677799607073,0.1162361623616236,0.7456692913385827,0.9115479115479116,0.8663366336633663,0.756198347107438,0.1981566820276497,0.491212906943244,0.6825153374233128,0.6547619047619048,0.5244845360824743,0.0957324106113033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0045407092831152,0.0069211175270705,0.0091127975374112,0.0114965917183843,0.0137120270573134,0.0162295600371311,0.0184521072796934,0.0209175062650232,0.0228862958827205,0.0249756297778461,0.0270692454730438,0.0290420548720852,0.0310647379653782,0.0332730747378751,0.0352645357560455,0.0373499471316318,0.0395047108562643,0.0413098446458487,0.0436415220293725,0.0577944065883533,0.0716470760785299,0.0848897147596401,0.0980200208418858,0.1105799670761048,0.126,0.1387255630319882,0.1498141699413224,0.1615185652294735,0.1711146165319941,0.1832726018241014,0.1956557066247765,0.2061408763655771,0.2168829176346819,0.2255737777238587,0.2357146028504195,0.2447263047222781,0.2526850818766835,0.2611966589010739,0.2693000263794745,0.2756993635299164,0.2821757224078307,0.2890180265654649,0.2943548871097454,0.2996469012541093,0.3045250713412148,0.3093013631632409,0.3133057060886197,0.3169683991953799,0.3212760612911329,0.3204065655202203,0.3191791786266283,0.3177538383238612,0.3166920565832427,0.3152616734565966,0.3135794107687097,0.3121453435696915,0.3128625098866333,0.3142508507201045,0.314677152912447,0.3151170240832171,0.316617658745927,0.3173724532749621,0.3182723954951525,0.3197717807361756,0.3209728347381331,0.3211918637869957,0.3244077620967742,0.3262202599950944,0.3290973871733966,0.3327883742052679,0.3347107438016529,0.3349059570988237,0.3400060432089439,0.3420228445099484,0.3465091802128406,0.3454572668762161,0.3390404140951623,0.3380016159439806,0.3346183500385505,0.0,1.734214902565939,56.20369954067691,176.8165893218003,260.88928534604,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95696,45415,430.1433706738004,5977,61.26692860725631,4688,48.44507607423508,1855,18.9976592543053,77.32722884548278,79.7048241359134,63.32110870231941,65.07633608517482,77.08901880197719,79.46857989171916,63.23245643346539,64.99127108191153,0.2382100435055889,236.2442441942392,0.0886522688540267,85.06500326328137,158.00774,111.16428696894464,165114.25764922253,116163.984878098,400.1093,263.6822378022595,417578.6448754389,275015.67233976297,385.34767,187.50395568388697,399932.4841163685,193742.0482096163,2699.9202,1253.606581312719,2788295.9371342584,1276933.269219946,1107.74329,492.9217943783672,1138457.626233071,495995.3183050294,1813.9686,770.2651060716298,1857846.158669119,771668.738064438,0.38107,100000,0,718217,7505.193529510116,0,0.0,0,0.0,34533,360.307640862732,0,0.0,35244,365.49072061528176,1571556,0,56494,0,0,0,0,0,71,0.741932787159338,0,0.0,0,0.0,0,0.0,0.05977,0.1568478232345763,0.3103563660699348,0.01855,0.3364187679540377,0.6635812320459623,24.27063632296116,4.324955870359224,0.314419795221843,0.2401877133105802,0.2265358361774744,0.2188566552901024,11.279195134628225,5.97125726700312,20.03908529469087,12173.681084970096,53.52996487564536,13.422968374706942,16.805749358513612,11.955052346642566,11.346194795782246,0.5661262798634812,0.7841918294849023,0.7021709633649932,0.5753295668549906,0.1218323586744639,0.7297709923664122,0.9285714285714286,0.8446601941747572,0.7192307692307692,0.1422018348623853,0.5026642984014209,0.6983002832861189,0.6468926553672316,0.5286783042394015,0.1163366336633663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021058173203474,0.0041653576025377,0.0061479151871766,0.0084402327919802,0.0105957840575141,0.0129310783704804,0.0151326657557155,0.0173317128471193,0.0196449389483157,0.0217816509815567,0.024089836939801,0.026426333898218,0.0286872177821664,0.0308088614116434,0.0330354194187582,0.0353571391637969,0.0372438513975509,0.0393264259463051,0.0414404293827622,0.0435602901934623,0.0581292108424296,0.0719548699055952,0.0852931920696527,0.0977695949500263,0.1103270786528705,0.1254958795713484,0.1371706302463043,0.1487483629161919,0.1594034124296199,0.1693413430594293,0.1823028866867729,0.1951161431385707,0.2068001609762995,0.2169191228741729,0.2269570672330871,0.2369182020629521,0.2454938113148584,0.2545192751161456,0.2632200081703055,0.271164309031556,0.2786061588330632,0.2852277515097607,0.2909325565975182,0.2961195890624438,0.3011766994067879,0.305963613937712,0.3107097679195421,0.3150063694267516,0.3196021990560656,0.3239047719706178,0.3228095739226638,0.321675528251467,0.3210432035206003,0.3197363476048683,0.3189428099468726,0.3170319627689802,0.3144320903452979,0.3143682120943662,0.3155747499231845,0.3165353488537916,0.3171867983834755,0.3174468421156541,0.3189534275248561,0.3205219878441186,0.3223492598387291,0.3240264319481808,0.3237469655861773,0.3282327382639086,0.3306211201907901,0.333439427093694,0.3399323335771763,0.3446381912227377,0.3505076622311913,0.3552973551444733,0.3571428571428571,0.3605563480741797,0.3602760736196319,0.3628640776699029,0.359802847754655,0.3605805958747135,0.0,2.1443189061792807,57.63108686409668,177.56630691547943,247.6735287812656,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95767,45034,426.49346852256,5989,61.2319483747011,4647,47.824407154865455,1809,18.4301481721261,77.38146625236273,79.70445959983711,63.35451413110488,65.06776396269532,77.14535069830747,79.47291654851988,63.26489680822227,64.98328790084284,0.2361155540552602,231.54305131723163,0.08961732288261,84.47606185248446,158.98146,111.819961437375,166008.60421648374,116762.51886075056,397.85257,261.98990029216264,414765.39935468376,272897.4597639716,377.72875,184.39905403915932,390064.6778117723,189272.99276820957,2644.09204,1229.7904851523335,2724971.984086376,1248156.844374715,1121.12625,502.1541819365874,1156490.6596217903,510159.3888673408,1772.85926,757.8556087756464,1810020.884020592,755631.9012095567,0.38057,100000,0,722643,7545.845646203807,0,0.0,0,0.0,34411,358.5995175791243,0,0.0,34582,356.7199557258764,1570836,0,56381,0,0,0,0,0,72,0.751824741299195,0,0.0,0,0.0,0,0.0,0.05989,0.1573692093438789,0.3020537652362665,0.01809,0.3401815575728619,0.659818442427138,24.34142667164083,4.336986901353788,0.3135356143748655,0.235635894125242,0.2345599311383688,0.2162685603615235,11.058878393888207,5.729428202348901,19.403397542071986,12088.6551460011,52.72407818194564,13.121683622321331,16.345656043377357,12.254961598221657,11.001776918025287,0.5687540348612008,0.8018264840182648,0.7035003431708992,0.5678899082568807,0.1203980099502487,0.7440794499618029,0.9140811455847256,0.8781094527363185,0.7622641509433963,0.1614349775784753,0.5,0.7322485207100592,0.6369668246445498,0.5054545454545455,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312354453961,0.0047022578945234,0.0070703279536624,0.009159964253798,0.0114594242834046,0.0137732353360343,0.0159409654272667,0.0181328380901845,0.0202084184715978,0.0220064658700278,0.0240749088226857,0.0263984076825214,0.0283946684205658,0.0302652844833798,0.0324968554755964,0.0345974304953112,0.0366127513375348,0.0386413826709935,0.040516954787234,0.0426706095503863,0.0573593412442468,0.0712633815050072,0.0843297671491504,0.0969542773636679,0.1097967273954116,0.1252498968679592,0.1369697355440282,0.147287069268355,0.157961633769119,0.1682730966752795,0.1810117452012617,0.1931150838713864,0.2036952455522206,0.2135652554425117,0.2239781656505183,0.2335704944920983,0.2443367683015329,0.2530078445937581,0.2606162477711274,0.2684308284987044,0.2745956717178738,0.2810153568625613,0.2881412154957943,0.2942375482602336,0.2993231173060798,0.305024159353121,0.3108552837389726,0.3142889855736203,0.3186835967867323,0.3217494557688501,0.320460358056266,0.3191919469732391,0.3187091687316963,0.3168901036921341,0.3163837605438938,0.3140689655172414,0.3127708708993704,0.3129917387883556,0.3137639395696211,0.3148500756295044,0.3166003697686145,0.3177417450509662,0.3182178796609461,0.3200919458144569,0.3210817809105948,0.3227315247895229,0.3255470723469474,0.3293506818466158,0.3326460721274811,0.3349058473736372,0.3372721901558878,0.3409342834520982,0.3423136888057374,0.3402442702050663,0.3439173320807891,0.3476516403115411,0.3519332827899924,0.3549357945425361,0.3542345276872964,0.3615326251896813,0.0,2.7679311754632825,56.66887814029212,167.94537032375794,251.0212070738131,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95755,45345,428.66691034410735,5978,61.10385880632865,4768,49.19847527544254,1907,19.591666231528382,77.31912755708531,79.67003650213533,63.32066847763053,65.05885008166793,77.08351897993825,79.4339628229083,63.2335067487079,64.97395927455305,0.2356085771470617,236.07367922703304,0.0871617289226307,84.89080711487418,158.07242,111.24176178513872,165079.83917288913,116173.11578582897,399.07113,262.75609360302184,416158.0700746697,273801.7742641908,384.03037,187.3088117619965,396887.7343219675,192447.42699804704,2732.97528,1263.3156429356677,2823571.823925643,1288855.233343082,1141.81242,507.7242576471624,1176795.279619863,514841.13764695294,1864.58906,777.9273917916122,1917361.182183698,786863.0221694967,0.38289,100000,0,718511,7503.629053313143,0,0.0,0,0.0,34373,358.34160096078534,0,0.0,35106,362.4980418777088,1573838,0,56498,0,0,0,0,0,75,0.7832489165056655,0,0.0,0,0.0,0,0.0,0.05978,0.1561283919663611,0.3190030110404818,0.01907,0.3368370759675107,0.6631629240324892,24.371156449971203,4.372965120584925,0.3110318791946309,0.2367869127516778,0.2325922818791946,0.2195889261744966,11.127686604319583,5.780195155151753,20.34565266789965,12225.7031148666,54.371689139165575,13.53768891092174,16.87243161667174,12.393029550886192,11.568539060685904,0.5654362416107382,0.7989371124889283,0.6925151719487526,0.5761947700631199,0.1222540592168099,0.7345864661654136,0.9339407744874716,0.8398058252427184,0.7213740458015268,0.1474654377880184,0.5,0.7130434782608696,0.6358543417366946,0.5312868949232585,0.1156626506024096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392641950804,0.0047730520171465,0.0068889249624609,0.0091307968880131,0.0111155179953422,0.0135753057753607,0.0159265867958195,0.0181760627380502,0.0205110377194507,0.0225632415720559,0.025007177131608,0.0270769799464005,0.0291153300285908,0.0311009467297133,0.0334712491874658,0.0354906054279749,0.0379936849733423,0.0401012385121258,0.0421359990024523,0.0442440086238321,0.0593417605244204,0.0727107261658193,0.0862132256542031,0.0985709628913027,0.1107140221596719,0.1259278841070106,0.1373828008994103,0.1493232890704801,0.1596762482381583,0.1693556167790487,0.1827882886278226,0.1946975435558922,0.2061881457313757,0.2160678751831361,0.2261570788914925,0.2365069873541071,0.2459234126142616,0.254860048600486,0.2631214607519377,0.2704797893049353,0.2776131496701007,0.284776349975423,0.2909674439536233,0.2970242380609551,0.3025718976105064,0.3086293288574038,0.3137928010323615,0.3180799021606196,0.3214748910562357,0.3254732559214784,0.3238375149987192,0.3230209782503891,0.3217032928257893,0.3205822711471611,0.3194339032992544,0.3174824745747112,0.3160491085591015,0.3169845445577113,0.3177605253257635,0.3185601517890705,0.3203230653643877,0.3213204298521641,0.3233885200437011,0.3234904750151457,0.3237698001301926,0.3248151341747015,0.3263867081560992,0.3298106560986349,0.3328526711919248,0.3367164889188439,0.3399144754799381,0.3440540109510392,0.3474886420999495,0.3501376988984088,0.354058395540017,0.3585572842998585,0.3598173515981735,0.3629032258064516,0.3686231486560614,0.3628787878787878,0.0,2.274209557370798,58.40220206397592,175.69787628535775,258.28056704169614,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95665,45079,426.53007892123554,6118,62.64569069147546,4749,48.88935347305702,1870,19.06653426017875,77.34181859432726,79.72576834077883,63.3271521787835,65.08627404207898,77.10962888130732,79.49789751784193,63.24034280721408,65.00397227984097,0.2321897130199488,227.8708229368931,0.0868093715694158,82.30176223801777,157.03776,110.5171827525358,164153.82846391053,115525.20018035416,397.98685,261.9783053365797,415249.4120106622,273078.24575510866,381.60768,186.3686436517652,394338.5877802749,191170.65012830135,2719.42624,1255.3979123105814,2803107.0088329064,1272765.7141462856,1099.54023,491.5484453205007,1129295.0922489937,493788.14189259545,1824.02808,765.6072085194542,1863050.7918256412,764631.4829188318,0.38052,100000,0,713808,7461.537657450478,0,0.0,0,0.0,34375,358.5323786128678,0,0.0,34987,361.093398839701,1579886,0,56660,0,0,0,0,0,65,0.6794543458945277,0,0.0,0,0.0,0,0.0,0.06118,0.1607799852832965,0.3056554429552141,0.0187,0.3345267745952677,0.6654732254047323,24.584035274880573,4.2893173339077615,0.3257527900610655,0.2387871130764371,0.2200463255422194,0.2154137713202779,11.357712691527512,6.069825218182536,19.91925329470741,12190.47323203904,53.75970213078897,13.503119718190982,17.45148699246393,11.674963436358931,11.130131983775131,0.5676984628342809,0.7733686067019401,0.709114414996768,0.5789473684210527,0.1143695014662756,0.7450381679389313,0.9152941176470588,0.9106280193236715,0.7142857142857143,0.1548672566371681,0.5001453911020646,0.688293370944993,0.6354810238305384,0.5375,0.1028858218318695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290903383256,0.00469302735741,0.0069904528068342,0.0094046434157339,0.0119372025867328,0.0141626618880834,0.0162676207075803,0.0183640762328634,0.0206257218491603,0.0230118027618257,0.025110737429251,0.0272060635937885,0.0293409600625501,0.0313462826523777,0.0334004231821231,0.0357364501448076,0.0375536258315889,0.0396087918020702,0.0416640659134885,0.0437325382594554,0.0585414773261462,0.0726446505978681,0.0859170007766745,0.0992360789595521,0.1111872989081702,0.1267902096422754,0.1389525507172566,0.1504774273214038,0.1606919616621611,0.1701415701415701,0.1822470167578512,0.1944122959774155,0.2058314935453349,0.2164197868270019,0.225530744692553,0.2356413493698363,0.2461102305957988,0.2554804458591562,0.2633298914091843,0.2710375629867155,0.2768024425785858,0.2835524161481966,0.2889740586961922,0.2950473930809696,0.2998943264220384,0.3051338295460147,0.3096647436458972,0.3145890079678232,0.3191897461152654,0.323509605862547,0.3225376210812777,0.3218789580924059,0.3206570783981951,0.3204492562986947,0.3202853321444494,0.3180619441888991,0.3157436433298502,0.3161548687816967,0.3158308415207176,0.3169130892293424,0.3192296905674488,0.320655711833981,0.3215069724655558,0.3219022103148024,0.3217251476023616,0.3235332447155107,0.3257470020223887,0.3291958646262137,0.3310349679870541,0.334167063681118,0.3387236368605658,0.3408331122313611,0.3417808647769226,0.3428658120306455,0.3453849028400598,0.3448807687744691,0.3440366972477064,0.3447304907481898,0.3430939226519337,0.3430544896392939,0.0,2.868613268853581,56.76642677852266,166.81476756547008,266.50707213010605,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95676,45764,434.5917471466198,5948,60.882561980015886,4714,48.65378987415862,1861,19.09569798068481,77.38307130315455,79.75991241386846,63.34642469116329,65.09755474685151,77.15120024546864,79.52853763142981,63.2604206696579,65.01396848077381,0.2318710576859075,231.3747824386496,0.0860040215053956,83.58626607770248,157.85286,111.12546185587745,164986.2034365985,116147.10690649445,401.45072,264.0021544181567,418949.8411304821,275296.13815386064,389.28174,189.2527727163285,402527.7290020486,194468.8926976493,2723.381,1249.6412161791525,2813680.4214223004,1273658.9682961456,1132.54265,497.2370108503373,1169472.438229023,505872.4757738008,1822.00488,764.8453721626834,1871696.12023914,772185.3346453935,0.3841,100000,0,717513,7499.372883481751,0,0.0,0,0.0,34577,360.7383251808186,0,0.0,35511,366.82135540783474,1573672,0,56578,0,0,0,0,0,66,0.6898281700739998,0,0.0,0,0.0,0,0.0,0.05948,0.1548555063785472,0.3128782784129119,0.01861,0.3325835475578406,0.6674164524421594,24.35537393986334,4.409724014737157,0.333050487908358,0.2187102248621128,0.2282562579550275,0.2199830292745014,11.276736111911132,5.839099989026527,19.82256909883441,12208.439220787082,53.37461842593377,12.327649887550258,17.609906455395777,12.01140859024991,11.42565349273784,0.5683071701315231,0.7817652764306499,0.7101910828025477,0.5929368029739777,0.1157184185149469,0.7154150197628458,0.9112271540469974,0.8914141414141414,0.6742424242424242,0.1126126126126126,0.5143519860829225,0.7052469135802469,0.6490630323679727,0.5665024630541872,0.1165644171779141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024599374386281,0.0046704354345227,0.0066125090009229,0.0089666517730208,0.0111331401555589,0.0135794049085375,0.0158922709943118,0.0181179760944788,0.0204021138061799,0.0224906587500639,0.0246778145729313,0.0269243407541279,0.0290847757448602,0.0310552608538909,0.0330427606127817,0.0350458355295114,0.0370750202001367,0.0389828749351323,0.0408897578020195,0.0428217099503939,0.0575595182132522,0.0714293192072947,0.0849463380857961,0.0982598180957888,0.110588632218204,0.1262818479754731,0.1395861601085481,0.1508258090589073,0.1607819285721907,0.1708811932110406,0.1834936414692402,0.1954394576652358,0.2062781243886002,0.2160445926006885,0.2255158607945796,0.2362788327313819,0.2456587043675388,0.2541048221806797,0.2630628789427072,0.2710097272029422,0.2786321819128624,0.2853781866704122,0.2910971073890692,0.297240551889622,0.3028486668530924,0.3069711212267002,0.311638217134842,0.3159208415047245,0.3205314322747893,0.3252984995773457,0.3245404968693193,0.3239539331562943,0.3230522224100051,0.3216855978496488,0.3208110516934046,0.31877461572648,0.3171461595705939,0.3166962000393778,0.3166558408259546,0.3173257163259841,0.3183294750205361,0.3209745345770851,0.3226526482675177,0.3226244243219792,0.3232081829696723,0.3230358899994821,0.3246132526372352,0.3277261094813057,0.3315061797360519,0.3334382995473332,0.3361428312488671,0.3414852214157989,0.3431849357775283,0.3457634764303436,0.3418376779441671,0.3421389503083905,0.3435866806032552,0.3470185728250244,0.3501333333333333,0.3485798598303209,0.0,2.3576440819922784,55.37787344523052,170.61361692290768,264.2888274076882,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95680,45260,428.29222408026754,6058,61.95652173913043,4740,48.808528428093645,1876,19.126254180602004,77.3960056150407,79.7802907206097,63.35197710932333,65.11316570550255,77.16402776874581,79.55322935143829,63.26510582576676,65.03140568921226,0.231977846294896,227.06136917140896,0.0868712835565688,81.76001629028917,157.34686,110.6688440499351,164451.14966555184,115665.59787827666,397.2517,261.0160983622694,414463.6287625418,272077.9415366642,382.95847,186.5221814595367,395958.42391304346,191593.58877808615,2722.70528,1258.4469273215216,2804716.4715719065,1274401.4885614836,1124.84913,498.8049876887503,1157434.4063545149,503248.0742481792,1827.05958,771.4066941858358,1864189.2767558529,768015.1092781108,0.38157,100000,0,715213,7475.052257525083,0,0.0,0,0.0,34268,357.41011705685617,0,0.0,35070,362.15510033444815,1582883,0,56783,0,0,0,0,0,77,0.8047658862876254,0,0.0,1,0.0104515050167224,0,0.0,0.06058,0.1587651020782556,0.3096731594585671,0.01876,0.3330701200252685,0.6669298799747315,24.416816605934816,4.381236295311397,0.3234177215189873,0.2320675105485232,0.2276371308016877,0.2168776371308017,11.416622556294216,6.027964651337008,20.067933910316587,12187.68092484002,53.82852592020585,13.243646511048704,17.219067928184394,12.158630450478723,11.207181030494024,0.5624472573839663,0.7745454545454545,0.7110241356816699,0.5690454124189064,0.1070038910505836,0.720030935808198,0.9230769230769232,0.8571428571428571,0.6830188679245283,0.136986301369863,0.5033362344067305,0.6886657101865137,0.6583850931677019,0.5319410319410319,0.0988875154511742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.0047859503964632,0.007297862406366,0.0095707391414782,0.0119626472443187,0.0144279721418971,0.0166093987377264,0.018734239246955,0.0210799648326483,0.0233781653667424,0.0255587451302029,0.0277629471436198,0.0299284186276123,0.0320148331273176,0.0340597205885387,0.0358183960801339,0.0376221009125845,0.0398596607776785,0.0418629806442218,0.0437238777190623,0.0584640775482064,0.0725080587767404,0.0853831226726805,0.0982608512786002,0.1113488783943329,0.1265783963281795,0.1386012561534544,0.1500931495182839,0.1604867053381619,0.1700630657685872,0.1828002154011847,0.1951280192975434,0.2061118476819752,0.2158815171056946,0.2256844420010995,0.2362597828132437,0.2458065667380442,0.2548444714049809,0.2627972043814637,0.2704309063893016,0.276472693271151,0.2833664059764211,0.2904269769089942,0.2957517317286181,0.3011373281276523,0.3061309794568544,0.3107690004491242,0.3151734195675607,0.3195668727333737,0.3235247691457736,0.3227425197906883,0.3217262557578416,0.3201978055941895,0.3188882161289392,0.3175659650163059,0.3160917784363447,0.3140113404829971,0.3140667725508817,0.3140242343678102,0.3139845447099462,0.3161995515695067,0.3173996928771114,0.3181979277419893,0.3193394968441639,0.3212285153444726,0.322291969288234,0.3228335314428029,0.3247587416969545,0.3287168188018046,0.3326987148976678,0.3357364482569812,0.3393910409692332,0.3434247871333964,0.3496918511755307,0.3511831809182615,0.3559100107130103,0.3554262972600643,0.3615290768605124,0.3718801996672213,0.3764568764568765,0.0,2.860382084480071,55.90963909842443,179.0572793471804,254.09656308221312,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95832,45379,430.3051172885884,5967,61.1278069955756,4705,48.62676350279656,1840,18.92895901160364,77.38566316619061,79.70506802651038,63.36611244363343,65.08345809459314,77.15159490484213,79.47136311772094,63.27850750230008,64.99849138094527,0.234068261348483,233.70490878943428,0.0876049413333461,84.9667136478729,158.81624,111.73567868221907,165723.59963269054,116595.37386490848,403.45868,265.8418806405484,420520.0141915018,276918.9502981099,387.37417,188.8491805139413,400970.09349695296,194681.0329313693,2700.549,1252.3664864850175,2791417.8979881457,1280623.5116758791,1114.25911,499.967911032358,1148453.178479005,507721.2212092883,1795.32128,763.3928474958876,1847363.010267969,772246.0511878285,0.38311,100000,0,721892,7532.890892395025,0,0.0,0,0.0,34820,362.8224392687203,0,0.0,35438,366.56857834543786,1571956,0,56429,0,0,0,0,0,73,0.7617497286918775,0,0.0,1,0.0104349277902996,0,0.0,0.05967,0.1557516118086189,0.3083626613038377,0.0184,0.3378269940619483,0.6621730059380517,24.446815505627367,4.335456172175724,0.3300743889479277,0.2371944739638682,0.2180658873538788,0.2146652497343252,11.1212860784595,5.721632204410385,19.729460672275824,12171.097525012476,53.679402817683474,13.36335531765278,17.618917835719998,11.437085680728073,11.260043983582635,0.5742826780021254,0.8082437275985663,0.7134578235672892,0.5662768031189084,0.1099009900990099,0.7307121661721068,0.9324618736383442,0.8837772397094431,0.7046413502109705,0.104602510460251,0.5114685731307715,0.7214611872146118,0.6517543859649123,0.5247148288973384,0.1115434500648508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674617402489,0.0045923177518931,0.0067694431194243,0.009042326214618,0.0112596118637861,0.013287852560839,0.0154114301440234,0.0174303500357179,0.0198374980837038,0.0220839558730223,0.0242265241496633,0.0261526460565751,0.0281714749683957,0.0303869393805264,0.0324310389275586,0.034540815799531,0.0364740697818798,0.0385592122311479,0.0405694467519521,0.0424041873484635,0.0572257108881146,0.0717011112156469,0.085820895522388,0.0989062943234469,0.1115687245225781,0.1268535338599974,0.1381473006186965,0.1488685522357918,0.1596608180897019,0.1701564792699776,0.1826217872889558,0.1947762967443669,0.2062268636625161,0.2154653917106024,0.2255208848177315,0.2353936311366652,0.2446048776140022,0.2536651126214683,0.2626522404123945,0.2707816483554173,0.2784470908943897,0.2852041173587283,0.2913027055101752,0.2965459543444484,0.3020844688298632,0.3072804087247003,0.3121031028158647,0.31622598440175,0.3204373531613869,0.3242286691665022,0.3227189633851282,0.320340194004012,0.3199195454033982,0.3193596350670535,0.3191792618107313,0.3178089320150601,0.3158261420315097,0.315805031859686,0.3171107346373017,0.3174909702106355,0.3195802885516207,0.3208159389035079,0.3209598721292168,0.3203007518796992,0.3209029170795369,0.3220774454028262,0.3229888348124821,0.3256562342251388,0.3290318031168465,0.3331473436690447,0.3367286347234275,0.3388894787132392,0.3426701076351734,0.3447542353566816,0.3480756563470406,0.34869906142331,0.3530674846625767,0.3580097087378641,0.3574772789865051,0.352515243902439,0.0,1.7163723251275564,59.7275481689761,171.25836237541768,251.39426793838172,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95768,44866,426.6352017375324,5951,60.94937766268482,4668,48.16849051875366,1813,18.54481664021385,77.37657405990127,79.72200336168716,63.3458979718325,65.07913424940267,77.15074875511839,79.49845763442806,63.261652290464994,64.99831066299053,0.2258253047828873,223.5457272590935,0.0842456813675056,80.82358641213716,159.03382,111.8720187260514,166061.54456603457,116815.65734488703,399.8058,262.5995946495532,416905.36504886806,273636.0001770457,376.40758,183.4403885911377,389665.8904853396,188801.93275057076,2692.25108,1234.8726995560833,2779537.00609807,1257756.8911912988,1111.66331,494.3073090011723,1143778.840531284,499141.79997616366,1787.41744,747.636396673903,1830826.873277086,750043.3011655246,0.37893,100000,0,722881,7548.252025728844,0,0.0,0,0.0,34499,359.6295213432461,0,0.0,34397,355.73469217275084,1573052,0,56440,0,0,0,0,0,74,0.7727006933422438,0,0.0,0,0.0,0,0.0,0.05951,0.1570474757870847,0.3046546798857334,0.01813,0.3390372621141851,0.6609627378858148,24.39994463067102,4.421647093754335,0.3299057412167952,0.2277206512425021,0.2152956298200514,0.2270779777206512,11.225020224852342,5.660125307612339,19.128102198001876,11992.17208279719,52.61174968318299,12.733031169556387,17.337412357237902,11.059628088429452,11.481678067959258,0.5456298200514139,0.7808090310442145,0.674025974025974,0.5482587064676617,0.120754716981132,0.7297077922077922,0.9321608040201004,0.844059405940594,0.7035398230088495,0.1372549019607843,0.479627473806752,0.6902255639097744,0.613556338028169,0.503209242618742,0.116822429906542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498430061784,0.0044399841863576,0.0063718825463179,0.0087163232963549,0.0108310959238467,0.0132890703760654,0.0153970082899124,0.0175909666353575,0.0195360819472699,0.0214556249360221,0.023409554460012,0.0255286388831862,0.027705814622913,0.0297937199410922,0.0318567272577217,0.0337057747366897,0.0355157024964536,0.0376967043910332,0.0397430166436227,0.0410943211522239,0.0559423042802125,0.0696993464052287,0.0826790225697902,0.0953591996300811,0.1076238855047109,0.1225833729718302,0.1347738043489784,0.1466617013353194,0.1567105206953996,0.167206364864575,0.1800068926894412,0.1916256424127671,0.2028849919498716,0.2130283038478791,0.2222344536057507,0.2329587018687238,0.2426918868219477,0.2517471499791805,0.2594135136975419,0.2668124720889489,0.2736915158174773,0.280353071841936,0.2866703716403968,0.2925337036948349,0.2983934621316074,0.3036048689138577,0.3077336533293334,0.3121721347914999,0.3162181028465058,0.3210911247282071,0.3199618469309617,0.3188009776728092,0.3172472912772804,0.317078447492536,0.3162341223376662,0.3140643623361144,0.3121464909786077,0.3127497870667627,0.3130148551157198,0.3121962508678547,0.3132122073985368,0.3142130378199314,0.3147439516550613,0.3135242251514072,0.3153328060209487,0.3170490609229489,0.3182386363636363,0.3205172359810889,0.3246516838199257,0.3277493960635222,0.3316804658356837,0.3340409722959346,0.3368018554503855,0.3396741189844638,0.3442745244311824,0.3447545037089368,0.3479381443298969,0.3489344752041426,0.3447339847991313,0.3497926875235582,0.0,2.247173064111733,53.714061683709,173.067462257013,257.8755926568672,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95744,45117,427.535929144385,5910,60.4528743315508,4664,48.05523061497326,1806,18.455464572192515,77.3313489084019,79.70088862476074,63.31030609897547,65.0644121082617,77.11070938847506,79.48240400154383,63.228537978788594,64.98645649715006,0.2206395199268485,218.4846232169093,0.0817681201868723,77.95561111164773,158.42508,111.4526225448484,165467.37132352943,116406.90021813213,399.01805,262.1629941940193,416115.234375,273177.361847073,382.87093,185.4615491507972,395942.7431483957,190691.52680396373,2677.3204,1221.065654447764,2760510.2774064173,1239739.1641375243,1110.24663,486.4757503460607,1141792.195855615,490422.48178257735,1771.79242,737.2629764985003,1812780.330882353,736529.4429856322,0.37927,100000,0,720114,7521.244151069519,0,0.0,0,0.0,34438,359.00944184491976,0,0.0,35036,361.9861296791444,1572854,0,56415,0,0,0,0,0,57,0.5953375668449198,0,0.0,0,0.0,0,0.0,0.0591,0.155825665093469,0.3055837563451776,0.01806,0.3318313485677502,0.6681686514322498,24.598248856442066,4.354581524952152,0.3286878216123499,0.2367066895368782,0.213336192109777,0.2212692967409948,11.209540699656474,5.787836791960888,19.03065407717596,12085.200282134145,52.55954499015347,13.17273128542693,17.173407632103807,11.046572615519375,11.16683345710336,0.5602487135506004,0.7762681159420289,0.695368558382257,0.5758793969849246,0.1133720930232558,0.7218106995884773,0.9037037037037036,0.8505434782608695,0.7106382978723405,0.1497584541062802,0.5033342997970426,0.7024320457796852,0.6463519313304721,0.5342105263157895,0.1042424242424242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0046543699362178,0.0066176097437198,0.0089412720991668,0.0110582107469124,0.0134431872574879,0.0157538925880229,0.0179401043527982,0.0199552005236833,0.0222565909416801,0.0241733672464719,0.0262598243180767,0.0284961562606127,0.0305585043338452,0.0327112450711203,0.0347034796546197,0.0367708732435203,0.0388510708949028,0.0407705021986132,0.042694358803433,0.0573331523838356,0.071294029007346,0.0850039339103068,0.0979462210677967,0.1108580586659918,0.1256438732878523,0.137466307277628,0.1484736158155983,0.1589449271644917,0.1689289968130653,0.1813586540637832,0.1936734494969731,0.2050447429728494,0.2156165163324284,0.2253699462697084,0.235327376333119,0.2444975488827595,0.2532952127958938,0.2608828869723105,0.2685838680109991,0.2746570982117021,0.2819777312055824,0.2879725085910652,0.2936381208504916,0.2987216755658805,0.3025205938933556,0.3080176696574939,0.3134527778484717,0.3177941938828408,0.3221631462986661,0.3212092647454888,0.320012647091169,0.3189786156443444,0.317456423871638,0.316212211025489,0.3135146692731799,0.312432961070099,0.311954831846821,0.3135366414946389,0.3136710617626648,0.3139986554119668,0.3145498265531378,0.3162610966057441,0.3170856849666496,0.3188012860501943,0.318856042469033,0.3194330028690736,0.3242445184394044,0.32844327176781,0.3307177567115431,0.3339410236543457,0.3366357615894039,0.3395527076265862,0.3430325073880427,0.3459177980286405,0.3456660849331006,0.3416455129162311,0.3468230694037145,0.3533814488104785,0.3564504101416853,0.0,2.555263512185908,52.8162975288032,170.88721670988764,262.73466060672416,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95488,45193,428.50410522788206,5976,61.36896782841823,4643,48.02697721179625,1911,19.62550268096515,77.22623088476638,79.71337682276422,63.24095407219974,65.0761852170968,76.98726440610966,79.47621217224105,63.15157919680519,64.98985648110119,0.2389664786567209,237.16465052316948,0.0893748753945544,86.32873599562174,156.3045,110.01833457130424,163690.2019101877,115216.9220962888,398.38165,262.77069076777934,416599.6565013405,274584.77040112915,385.81997,188.5582797398236,400140.7716152815,194376.01097602036,2694.24144,1251.2748418239098,2789907.7580428952,1279105.146025764,1139.73382,504.60125062410856,1177061.2537701072,511938.42935957445,1877.88762,794.3547126071626,1931670.8277479887,803237.4787778864,0.37977,100000,0,710475,7440.463723190349,0,0.0,0,0.0,34340,358.99798927613944,0,0.0,35229,365.0720509383378,1573612,0,56594,0,0,0,0,0,71,0.7330764075067024,0,0.0,0,0.0,0,0.0,0.05976,0.1573584011375306,0.3197791164658634,0.01911,0.3297736691106152,0.6702263308893848,24.43433352076205,4.432680816539645,0.3159595089381865,0.2244238638811113,0.2250699978462201,0.234546629334482,11.405669931003832,5.925928315761666,20.60048660642922,12147.980821529864,53.285284601435485,12.513928467142756,16.924891475781788,11.741419940266905,12.105044718244022,0.5556752099935387,0.789827255278311,0.7123381049761418,0.5655502392344498,0.1111111111111111,0.7200622083981337,0.922872340425532,0.8609756097560975,0.7246376811594203,0.1160714285714285,0.4927018170985999,0.7147147147147147,0.6546830652790918,0.5084525357607282,0.1098265895953757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0045036363820787,0.0071273377058501,0.0092526690391459,0.0116163055872291,0.0136064821892676,0.0160103674527291,0.018137044530276,0.0203075286198041,0.0224892932521874,0.024747495483659,0.0268661320172732,0.028790609071719,0.0309218804794026,0.0332909705216825,0.0359372573380959,0.0378634633139347,0.0397713097713097,0.0419653275545924,0.0439608633454112,0.059140010048568,0.0730832179277351,0.0863758728022209,0.0992359171628813,0.1114856653739261,0.1272085554695863,0.1393168117883456,0.1502139054548558,0.160808379385683,0.1708748508593724,0.182908659036925,0.1948846441703817,0.2057374010510936,0.2150499912296088,0.2245845929783524,0.2348849354949829,0.2440511483772808,0.2527396951384504,0.2616845816982312,0.2699154147203635,0.2765135699373695,0.2831761891359414,0.2889914789584866,0.2945999230621273,0.3000512032770097,0.3050830683968974,0.3093445610507132,0.3133588127772168,0.3176683176683176,0.3218807947019867,0.3212870952477523,0.3206258537191109,0.3197531561555624,0.3178975710025766,0.3168663567000477,0.3151756353913765,0.3127145581691036,0.3135054061181435,0.3138641043239533,0.3138650790804432,0.3133997368915617,0.3149066106198199,0.3164846703065939,0.3173098471605934,0.3194721534504723,0.3208643970595902,0.3224759410056375,0.3274230563676947,0.3322918129476197,0.3346706919837928,0.3386257870243635,0.3407741251325556,0.3430414631091068,0.3490530445936769,0.3529085360214556,0.3553642075866884,0.356027293404094,0.3559666598902216,0.3611416026344676,0.3558678313710596,0.0,2.3350580901215103,56.34427327142179,181.27106457483987,243.78236930275432,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95710,45159,428.0012537874831,6100,62.34458259325045,4787,49.43057151812768,1912,19.632222338313657,77.36399481233721,79.74901185542542,63.33329461681414,65.09731222689415,77.1216850701782,79.50701720515609,63.243074367428,65.00950739847197,0.2423097421590085,241.99465026933356,0.0902202493861423,87.80482842217907,158.99752,111.79371963392671,166124.25033956746,116804.63863120542,401.18799,263.2784010529131,418585.3933758228,274496.59557278745,379.20351,184.3295949733109,392689.8756660746,189845.10038799932,2771.33516,1272.7551860147323,2863835.3777034795,1298254.3679950591,1161.23037,513.7168281338926,1199281.6111169157,522826.6767469012,1871.90974,793.4310230733842,1923904.795737123,800923.8657563808,0.3818,100000,0,722716,7551.102288162157,0,0.0,0,0.0,34617,361.0698986521785,0,0.0,34714,359.1160798244697,1573450,0,56468,0,0,0,0,0,69,0.7209278027374361,0,0.0,1,0.0104482290251802,0,0.0,0.061,0.1597695128339444,0.3134426229508196,0.01912,0.3317683881064163,0.6682316118935837,24.508563590203355,4.410908369671415,0.3237936076874869,0.2299979110089826,0.2182995613118863,0.227908919991644,11.267821515148649,5.74261733351108,20.44517056840981,12132.690408516486,53.897883811948425,12.97287929900354,17.53520760853695,11.510542971908231,11.879253932499688,0.5494046375600585,0.7574931880108992,0.6961290322580646,0.5779904306220096,0.1035747021081576,0.7299679487179487,0.8968253968253969,0.8777506112469438,0.7551867219917012,0.1409090909090909,0.4857304323255156,0.6846473029045643,0.6310254163014899,0.5248756218905473,0.0941446613088404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021782960658959,0.0046852657519243,0.0069032729635344,0.0092282049718478,0.0115081706994444,0.0133565621370499,0.0155861112244481,0.0178111850974304,0.0198214230922647,0.0220563388934967,0.024519556166294,0.0267641651860448,0.0288623739971199,0.0308185302724312,0.0329941380449141,0.0350820960337482,0.0372818148857927,0.0393400093394904,0.0411222336566148,0.0428526776411752,0.0571458409482533,0.0716640674879373,0.0857277734067663,0.098015710274772,0.1101437666006155,0.126032118578663,0.1380644887658915,0.1494947346027018,0.1592476355174107,0.1690851802632143,0.1814581651869787,0.1930940481599273,0.2043304260826065,0.2149153506277615,0.2251108446194976,0.235167755508803,0.2442406595490701,0.2539138062890818,0.2626914784976739,0.2703603201318998,0.2772463885451244,0.2835292054025609,0.2900182304614437,0.2958865690246182,0.3008636711490106,0.3056089269878805,0.3100596749777939,0.3146441600040675,0.3191563647649097,0.3226418325276288,0.3222429755841922,0.3207938469990385,0.3195883535548088,0.3186212269867836,0.3178907107065555,0.3165061289288495,0.31465068601167,0.3147440295337972,0.3157858940352309,0.3159927386630597,0.3167913238593867,0.3179147442722504,0.3187224347317154,0.3192621576299608,0.3208557433730311,0.32213608957795,0.3224646983311938,0.3253280592704213,0.3264403328301092,0.329146027342976,0.3317285857026069,0.3337565465799079,0.3359646353015472,0.3365421346168538,0.3358561967833491,0.3361585293064343,0.3378712871287129,0.3383319638455218,0.3415522555337629,0.3414538310412573,0.0,2.1986861099836617,54.433651035623946,174.5190955610907,271.241327917316,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95676,45153,428.6759479911368,5923,60.600359546803794,4679,48.37158744094653,1889,19.346544587984447,77.31725194233033,79.72565253382155,63.30264576078415,65.08502199839987,77.08399513294506,79.49182006562764,63.21468598904416,64.99902415669574,0.2332568093852671,233.8324681939099,0.087959771739996,85.99784170412761,158.3263,111.38533150619708,165481.50006271165,116419.0985636721,401.56428,263.674404184211,419151.3441197375,275032.18816366873,375.96912,181.90211845565003,389823.5921234165,187762.55052686547,2708.11668,1244.4672449814825,2801776.537480664,1272104.817586505,1111.5446,489.9459489572566,1150521.5623562858,500866.7290154314,1863.73546,792.2299902362388,1911528.3456666248,798591.2131757986,0.382,100000,0,719665,7521.886366486893,0,0.0,0,0.0,34744,362.5674150257118,0,0.0,34377,356.13947071365857,1573370,0,56466,0,0,0,0,0,62,0.648020402190727,0,0.0,0,0.0,0,0.0,0.05923,0.1550523560209424,0.3189262198210366,0.01889,0.3275221953188055,0.6724778046811946,24.456879232087765,4.445456249108112,0.3210087625561017,0.2182090190211583,0.2293225048087198,0.2314597136140201,10.966785385971871,5.496522672157135,20.149950358188843,12101.337235175755,52.993605985068704,12.28349528896861,16.862700069858327,11.887588306155262,11.959822320086522,0.5496901047232314,0.7747306562193927,0.7063914780292943,0.5619757688723206,0.1080332409972299,0.6919967663702506,0.9131652661064426,0.8436657681940701,0.7421875,0.1067193675889328,0.4985473561882626,0.7003012048192772,0.6613616268788682,0.5055079559363526,0.108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023909145248057,0.0045429194341631,0.0066675462009194,0.0087593614405186,0.0107137406521849,0.0129367423856575,0.0155060902209617,0.0179490846681922,0.0199811749299175,0.0220988248793631,0.0241920590951061,0.0263057841898126,0.0281637947007596,0.0301977441903622,0.0323883294603666,0.0343190001241567,0.0361156031015466,0.038319348674919,0.0402838178072785,0.0423946128507692,0.0570130073656166,0.070768103042044,0.0842772709617141,0.0968298559599339,0.1088885372158041,0.1244933165408998,0.1361609985989046,0.1482175760738744,0.1581979478409576,0.1674784885093234,0.1800211143189554,0.1924738283660456,0.2042666666666666,0.2145343872479253,0.2244756323257248,0.2346779289015995,0.2442380883288503,0.2525592278443989,0.261647891638022,0.2691246350260491,0.2765627531301349,0.2834467915877137,0.2891833013662949,0.2953559183869189,0.3001737989037299,0.3051955259036367,0.3101574822863724,0.3150284239040582,0.3199906821446597,0.3242876347628964,0.3223967297762478,0.3215380175624235,0.3197457782027306,0.318300549839089,0.3174622051106717,0.3154925258719816,0.3134576421425858,0.3149403403961988,0.3153143929698831,0.3155577735398435,0.3172864472156687,0.3185068141418131,0.3195519476433201,0.3212632238151685,0.3217229908884925,0.3224678341206253,0.3233971073909577,0.3246635082985599,0.3270821648906337,0.3312076682378104,0.3335912608101957,0.3384240110298017,0.3419513115682204,0.340877914951989,0.3392319277108434,0.3409627182633317,0.3479125248508946,0.3512913640032284,0.3538420204191295,0.3521074226035061,0.0,2.01684382378116,54.38436543038326,174.47559742579597,259.4619568971157,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95842,45353,429.5402850524822,5905,60.24498654034765,4631,47.56787212286889,1890,19.271300682373077,77.4717338221379,79.75955160604623,63.40399372213196,65.0912418981603,77.23561699175978,79.52615746300502,63.31602085796361,65.00700571296895,0.2361168303781227,233.39414304120965,0.0879728641683499,84.236185191358,159.91272,112.44005431480171,166850.3578806786,117318.14268775872,399.10718,262.7278601608512,415691.06446025753,273395.0774825767,384.65928,187.99009268606423,396550.4371778552,192379.90829869505,2651.02976,1224.978688816557,2726930.990588677,1239012.2585260707,1111.01382,493.4536257846557,1144349.283195259,499996.9176192648,1854.86754,781.9045823207312,1894691.2001001649,782637.7601103438,0.3818,100000,0,726876,7584.107176394483,0,0.0,0,0.0,34543,359.65443125143463,0,0.0,35102,361.43861772500577,1569539,0,56257,0,0,0,0,0,62,0.6468980196573527,0,0.0,0,0.0,0,0.0,0.05905,0.1546621267679413,0.3200677392040643,0.0189,0.3351551197556663,0.6648448802443337,24.528292790438652,4.434256282920044,0.3111638954869358,0.234506586050529,0.2282444396458648,0.2260850788166702,11.378898271890648,5.886062621145464,20.08560907353844,12142.394004675709,52.373910517456856,12.972438131583989,16.220743056101032,11.753376960245465,11.427352369526355,0.5558194774346793,0.7937384898710865,0.6821651630811936,0.5714285714285714,0.1193887297039159,0.7297734627831716,0.9238329238329238,0.871866295264624,0.7120622568093385,0.1408450704225352,0.4924889543446245,0.7157584683357879,0.6192236598890942,0.52625,0.1139088729016786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095353780747,0.0043865425332536,0.0069764140420612,0.0092874543239951,0.0115742622551012,0.0138065054381556,0.0158605655610789,0.017778639113006,0.0199334191123909,0.0221815429927186,0.0241811589749892,0.0262861010830324,0.0284868968492855,0.0303532292749179,0.0322746904990155,0.0342527287559764,0.0365351594017005,0.0386787857431571,0.0408381529899176,0.0428543182125649,0.0569638071801716,0.0713247823041783,0.0844363400090126,0.0980004833303563,0.1102667608216781,0.1260505978496442,0.1382944881555786,0.1499558515334943,0.1605440433868195,0.1701657932246621,0.1830203905955775,0.1945813340249859,0.2059657085771991,0.2162743471045506,0.2253292183329855,0.2355984479156302,0.2454354049929261,0.2537843057988591,0.2623101233561015,0.2700264160005489,0.2767217885352672,0.2827393105057458,0.288251479045381,0.2936941677329857,0.2994844422878631,0.3049299761254276,0.3102724581194018,0.3149493307596576,0.3203438025074318,0.3242065633762028,0.3235685394466318,0.3222953517071164,0.3203178748438005,0.3184540089247157,0.3175453657381368,0.3151464307504576,0.3125226574198124,0.31344893523134,0.3145106440862409,0.3160044032527254,0.3181513106379805,0.3188741917097427,0.3192083333333333,0.3200907049643182,0.3207668799541591,0.3216643794826648,0.3227556585379638,0.327610382326364,0.3306105496331164,0.3353959426646823,0.3375381576584665,0.3398513677330944,0.3413669742044812,0.3441662226957911,0.3453944260746339,0.350939804901261,0.350805226374962,0.3584566173530588,0.364399891628285,0.3692946058091286,0.0,2.976745331020999,53.03332367221103,176.60870095269007,249.0281532747641,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95737,45297,429.1444269195818,5993,61.32425290117719,4679,48.24675935113906,1849,18.91640640504716,77.34438518034166,79.6967589053497,63.33412346583962,65.07214544155904,77.10891297044604,79.46665311135308,63.24523902002596,64.98863960665827,0.2354722098956188,230.10579399661424,0.0888844458136546,83.50583490077668,158.4693,111.5538922679585,165524.73965133645,116520.29880814992,402.20836,264.9500850978132,419494.187200351,276125.3944993192,381.11508,184.85630070860628,394486.5516989252,190291.7665695028,2676.17552,1233.2695112543493,2760670.8378161,1253739.1070278585,1096.61323,488.6231631354216,1128107.356612386,493307.4378125701,1807.40274,770.7294016910797,1849964.757617222,769575.1358449479,0.38212,100000,0,720315,7523.851802333476,0,0.0,0,0.0,34766,362.4930800004178,0,0.0,34947,361.4798876087616,1569469,0,56333,0,0,0,0,0,60,0.626716943292562,0,0.0,0,0.0,0,0.0,0.05993,0.1568355490421857,0.3085266143834473,0.01849,0.336728198599618,0.6632718014003819,24.591982924232184,4.298433904637926,0.3282752724941227,0.23081855097243,0.2229108783928189,0.2179952981406283,11.062039444685304,5.751877199059231,19.751173649861265,12187.6583440147,53.26246499495493,13.040356040649062,17.297859884912352,11.648340463330715,11.275908606062798,0.5622996366745031,0.7805555555555556,0.69140625,0.5896452540747843,0.1088235294117647,0.6973148901545972,0.9090909090909092,0.8296703296703297,0.7048458149779736,0.1446280991735537,0.5142028985507247,0.706140350877193,0.6484641638225256,0.5575980392156863,0.0976863753213367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023601150682711,0.0046536149159003,0.0068791282379082,0.009201425916334,0.0115094454724769,0.0135697779768509,0.0160208719757037,0.0181437828460635,0.0201387540742405,0.0224905351478563,0.0247663742929748,0.0267163428477589,0.028841408242165,0.0311125758246737,0.0331459225254036,0.0352396502903912,0.0372436779943482,0.039335863771182,0.0413219704843067,0.0431961168284654,0.0579115509897268,0.0719697762521715,0.0854739403601883,0.0983615177519771,0.1104326826747656,0.1263469571194416,0.1383337576374745,0.1498526266506347,0.1604533413091779,0.1705052324583976,0.1833137738347742,0.1953673551081347,0.2073577867916526,0.217246807766311,0.2266913034392494,0.2369210669087768,0.2461440592843909,0.2547912542738887,0.2632695667960151,0.2706732475979982,0.2774403295037775,0.2839608733297452,0.2897922954020948,0.2952686004942537,0.3011750981273772,0.306279072636865,0.3112074800090241,0.3154051057213137,0.3200860683361849,0.3242643562787257,0.3242256935092917,0.3227279604946423,0.3215749229014406,0.3204565154579601,0.3190869642750996,0.3176697779208239,0.3154732653805304,0.3162224740134982,0.3164407677713778,0.317400232122132,0.3184423465947404,0.3194809299018349,0.3193164684201708,0.3199167710757115,0.3209537572254335,0.3225184374429937,0.3239881596174646,0.3259529500566109,0.3285959925606204,0.3323134387665898,0.3341673111040349,0.3340951368588892,0.3375660045260246,0.3407480018096818,0.3443956249415724,0.346389084921195,0.3461949062071069,0.3431976983148376,0.3446547884187082,0.3412729402577118,0.0,2.4010055157483903,53.60706182257367,183.3279100959685,252.45787022916596,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95674,45065,426.3331730668729,6009,61.52141647678575,4672,48.27852917197985,1856,19.075192842360515,77.28108161739658,79.66837023455797,63.29287913429015,65.055849765656,77.05197713363194,79.43904842710783,63.20766251273811,64.97253111392742,0.2291044837646438,229.321807450134,0.0852166215520426,83.31865172858954,156.18834,109.98905900034772,163250.32924305456,114962.12579794876,394.32755,259.74757314704647,411582.2898593139,270918.8278647841,382.98307,186.75077525368243,396259.39126617473,192157.61954803453,2665.98292,1234.21041862849,2757983.443777829,1261600.8507854692,1102.36246,497.1683783819232,1136469.1661266384,503929.32587457215,1818.6624,766.7128626234434,1871291.824320087,777016.0147286322,0.38004,100000,0,709947,7420.469511047933,0,0.0,0,0.0,34035,355.1435081631373,0,0.0,34980,361.63429980977065,1581534,0,56697,0,0,0,0,0,68,0.7107469113865835,0,0.0,0,0.0,0,0.0,0.06009,0.1581149352699715,0.308870028290897,0.01856,0.3287693042509154,0.6712306957490846,24.474194915854955,4.275429927617409,0.3206335616438356,0.2414383561643835,0.216181506849315,0.2217465753424657,11.191254993013857,6.022481940659079,19.932713763370444,12114.44986168261,53.43001785189487,13.622775998887622,17.032270099479152,11.27557429615676,11.499397457371336,0.5610017123287672,0.7783687943262412,0.7062750333778371,0.5673267326732673,0.1081081081081081,0.7400468384074942,0.9216152019002376,0.8810126582278481,0.7564102564102564,0.1515151515151515,0.493364789147744,0.693069306930693,0.6436990027198549,0.5103092783505154,0.0956521739130434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982474801195,0.0043998823994566,0.0067588824502471,0.0091028232975383,0.0112381262331428,0.0135636022972587,0.0155800721903868,0.0175603381386041,0.0201175568617429,0.0223031965526771,0.0244232543832666,0.0267056830432773,0.0287127592838264,0.0309721292050898,0.0331606324567559,0.0354233012117953,0.0376328492407135,0.0397513207194677,0.0418057939356113,0.0437546902359709,0.0581696615127455,0.0722669542546619,0.0855148525244043,0.0989636487979378,0.1112306799599092,0.1261967480190844,0.1372022419430172,0.1484897541856601,0.1596762639923877,0.1698413039276741,0.1819848579625116,0.193359628971436,0.2047216656503179,0.2147354129485059,0.2244392049711339,0.2344219573052398,0.2440319191738566,0.2531089483644228,0.260971341560419,0.2686996811707227,0.2754121913633888,0.2819548431696486,0.2881247406177744,0.2935369983428201,0.2985559435029623,0.3036912751677852,0.308550092717887,0.3139616389473013,0.3186764724956872,0.3226924094154985,0.3211336032388664,0.3204976139905663,0.3195577485896874,0.3181884078981704,0.3171542751483702,0.314862312051727,0.3133587180707599,0.3142273946896245,0.3146539166795195,0.3158751453358376,0.3167211636035629,0.3169782086172305,0.3181339511373209,0.3190987510108725,0.3190348525469169,0.3208429078754961,0.3212836486254786,0.3246372239747634,0.3277163419343514,0.3299504459861249,0.3344843253066787,0.3367724867724868,0.3395030744133517,0.3394377873238375,0.3452447422296668,0.3479318734793187,0.3536253776435045,0.3619558735837805,0.3647310677013647,0.3643292682926829,0.0,2.0687341254302694,56.40098425226665,181.7856328517072,246.14850332312048,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95727,45044,427.6849791594848,6133,62.81404410458909,4846,50.04857563696763,1934,19.79587786100055,77.3612597271838,79.72483940599666,63.34108899169471,65.08819023028366,77.12589175813763,79.49322905373543,63.253046715926175,65.00446534223997,0.2353679690461803,231.6103522612281,0.0880422757685366,83.72488804369027,157.67774,110.9739249133896,164716.05712077054,115927.5073003328,397.74907,261.2685136190018,414935.3891796463,272362.70186990267,387.47899,188.48448196078925,401438.9775089577,194323.2045458841,2781.8664,1281.3530542105505,2872462.6489914027,1304970.357590387,1164.83471,514.1099363835928,1199760.6213502982,519990.7240493399,1892.94276,788.6404722114204,1938427.6118545448,789962.3652054264,0.38024,100000,0,716717,7487.093505489569,0,0.0,0,0.0,34267,357.35999247861105,0,0.0,35511,367.56609942858336,1579007,0,56649,0,0,0,0,0,60,0.6267824124855056,0,0.0,0,0.0,0,0.0,0.06133,0.1612928676625289,0.3153432251752812,0.01934,0.3502175264139217,0.6497824735860783,24.15370318585169,4.315599365840213,0.3256293850598432,0.2292612463887742,0.2290548906314486,0.2160544779199339,11.084594389957264,5.7528931695648895,20.4454158602025,12112.747676936877,55.1431028344781,13.52603159866817,17.834080407088653,12.31563359199303,11.467357236728237,0.5751134956665291,0.8055805580558055,0.70595690747782,0.5828828828828829,0.1251193887297039,0.7603305785123967,0.9192399049881236,0.9106280193236715,0.7620817843866171,0.1894273127753304,0.5049786628733998,0.736231884057971,0.6331615120274914,0.525564803804994,0.1073170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023095390038593,0.0044001946629896,0.0066164681049704,0.0088386788714937,0.0111461405471371,0.0134213152481619,0.0155201598923174,0.0175933016796855,0.0197225147484331,0.0217035217035217,0.0237458091107625,0.0257073897190982,0.0276663581199218,0.0298441347055248,0.0318769091059192,0.0341579910469672,0.0363915038162405,0.0382208569857099,0.0401297796449778,0.0419184762222314,0.0567198153891133,0.071302217988842,0.0846769540633818,0.0975625144587688,0.1094410422354094,0.1251242150664947,0.1363197692299534,0.1472290797650464,0.1572527237769707,0.1676046524092833,0.1803695249580085,0.1922548542376548,0.2034049399895634,0.2141943664127144,0.2244368465606138,0.2353546644826403,0.2446173915952144,0.2530901654081265,0.2612259242044643,0.2693716378619663,0.2766427324337762,0.2831033152980496,0.2903416549391549,0.2959287501346708,0.3010548011639185,0.3072600280366936,0.3119661321744343,0.3162228095141289,0.3203519213352309,0.3240594163896364,0.322032074050156,0.3207803805729202,0.3198570785505289,0.3183105101981857,0.3177563150074294,0.3162763627452482,0.3140750818686621,0.3147243087217503,0.3153289900057986,0.3165584415584415,0.3174600202239616,0.3182556021854462,0.3189311632199337,0.3194338863300988,0.3201395572666025,0.3228848313872998,0.3243969360923745,0.3269388527797059,0.3303207202138135,0.3355613909445373,0.339171974522293,0.341980135249366,0.3450068913669966,0.3462645855432641,0.349038999813398,0.3492981007431874,0.3477730323367907,0.355969997972836,0.3562412342215988,0.3611892326235436,0.0,2.1929899630326823,58.438657778738936,182.1867990350254,260.3904914883574,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95663,45267,429.3300440086554,5957,61.05808933443442,4676,48.409520922404695,1846,19.056479516636525,77.2430810454354,79.64822361705475,63.27207635196621,65.05050309251988,77.00751870266325,79.41030606241758,63.18491253433627,64.96412362764946,0.2355623427721553,237.91755463717837,0.0871638176299427,86.37946487041859,158.40682,111.4721047378041,165588.15843115936,116525.62638991658,401.20741,264.2459370007053,418880.7062291586,275712.0533645097,385.16424,187.34146420653295,399529.3582680869,193534.46929131087,2675.93796,1229.5848241583742,2771621.337403176,1259831.2069962732,1107.29762,490.2748416852233,1144685.259713787,499968.61509948334,1812.56564,761.5104844165322,1871306.6284770493,775311.2178907724,0.38016,100000,0,720031,7526.734474143608,0,0.0,0,0.0,34613,361.31001536644266,0,0.0,35137,364.2787702664562,1567035,0,56238,0,0,0,0,0,69,0.7108286380314228,0,0.0,1,0.0104533623239915,0,0.0,0.05957,0.1566971801346801,0.3098875272788316,0.01846,0.3309825292514826,0.6690174707485174,24.744355692313405,4.342224995290618,0.3162959794696321,0.2418733960650128,0.2174935842600513,0.2243370402053036,11.09103137995156,5.683243956926122,19.7687239949475,12110.274036618965,53.19557623869289,13.594097486822111,16.74768475988641,11.282913107739162,11.570880884245208,0.5630881094952951,0.7992926613616269,0.6876267748478702,0.567354965585054,0.1286939942802669,0.7338582677165354,0.9214780600461894,0.8710526315789474,0.6896551724137931,0.1866666666666666,0.4994128009395185,0.7234957020057307,0.6242038216560509,0.5312101910828025,0.1128640776699029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027667423382519,0.0051427180329864,0.0075124615493944,0.0099371056401711,0.0121041978171757,0.0142777127144966,0.0166199337241906,0.0187469367750367,0.0209526341623036,0.0230405308538308,0.0248897548969336,0.0267725106802497,0.0290524280631029,0.0310912855803603,0.0331740346603635,0.0351876744907455,0.0370435593308126,0.0391497488271681,0.0412818272591113,0.0430331714029564,0.0580134166475099,0.0722073841319717,0.0851836687558397,0.0982032902838738,0.1100530999609403,0.1254909433522829,0.1376958623253837,0.1490613706866225,0.1593464793554668,0.1701051410651574,0.1828226154510142,0.1948075880758807,0.2050581072397155,0.2151524443665673,0.225367014945113,0.235934986409275,0.2445328920889048,0.2535081095093718,0.2619296610362152,0.2693957115009746,0.276097436610578,0.2824842218657424,0.2895902415916627,0.29455513837074,0.299164325073897,0.3044809282804592,0.3086644183393303,0.3126825224765669,0.3173065686796421,0.3211176672928849,0.3200933318946914,0.3184981054081984,0.3175772977551885,0.3155097252596058,0.3140583317188035,0.3123282202465951,0.3110447571551094,0.3114051711352438,0.3123415336120058,0.3133657068109735,0.3148325899158715,0.3153774315973533,0.3163406940063091,0.3172243431394565,0.3180315207684696,0.3179874609795126,0.3187293373580566,0.323146038977474,0.3274198678305121,0.3313023610053313,0.3330416359616802,0.3362419700214132,0.3386340598073999,0.342375478927203,0.3467135926947589,0.3478416408299546,0.3457405388568759,0.3487559119884845,0.3499308437067773,0.3602005399151562,0.0,1.6865929560450013,56.21642435515826,173.12834189057588,257.6532704346165,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95812,45304,429.8104621550536,5967,61.119692731599386,4696,48.36554920051768,1913,19.53826243059325,77.44904619750217,79.77322903850727,63.38601454967061,65.10612299721261,77.20295718415306,79.5314783825763,63.29394600259903,65.01819996254928,0.2460890133491062,241.75065593097145,0.0920685470715838,87.92303466333351,157.55652,110.8744165013368,164443.4100112721,115720.80376292823,399.214,263.45434770030306,416033.9414687096,274340.15332140337,381.9588,186.18348767053408,394266.9707343548,190852.5135650652,2684.1314,1243.2517491935785,2766980.9209702336,1263119.5562075502,1130.41366,504.9494209132078,1162875.7984386089,510072.1422297917,1868.29552,796.1509751950823,1910423.8717488416,797968.5158484856,0.38206,100000,0,716166,7474.700455057822,0,0.0,0,0.0,34497,359.3808708721246,0,0.0,34931,360.2680248820608,1581699,0,56707,0,0,0,0,0,64,0.6679747839519058,0,0.0,0,0.0,0,0.0,0.05967,0.156179657645396,0.3205966147142617,0.01913,0.3416318663668487,0.6583681336331513,24.29496183355196,4.36667976699936,0.3215502555366269,0.2304088586030664,0.2261499148211243,0.2218909710391823,11.386505442457889,6.0543235881459685,20.512512263553912,12169.261100218811,53.37343157198009,12.85350640687036,17.091267608620885,11.938083764857408,11.490573791631444,0.5617546848381602,0.7966728280961183,0.6801324503311258,0.5951035781544256,0.1122840690978886,0.6993865030674846,0.9311224489795918,0.7971014492753623,0.703125,0.152892561983471,0.5088443396226415,0.7202898550724638,0.6359489051094891,0.5607940446650124,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.0043080291526866,0.0063722058181891,0.0087565140541034,0.011002979549915,0.0130736256910999,0.0152014110498251,0.0171975627430367,0.0194174757281553,0.0217126602613295,0.0239893426243787,0.0262931034482758,0.0282072368421052,0.0301255057810907,0.0321782178217821,0.0341140371721095,0.0358736040241365,0.0377655878967616,0.0399384922284099,0.0421629049720996,0.057123186213659,0.0715868933358425,0.0848809423995975,0.0979376569345366,0.1103758574544535,0.1262919828369723,0.1382943764244448,0.1495294305311852,0.1607045694594104,0.171023463519635,0.182705853254616,0.1951880901449839,0.206173590150051,0.215949273147946,0.2262311281910513,0.2359990271728315,0.2451350598719019,0.2539121259064682,0.262399945656481,0.2704450665600182,0.2775802355114292,0.2848108650502882,0.2905745878521106,0.2960691485546231,0.3020423004666384,0.3073452023803669,0.3118596263525066,0.3161012863775911,0.3213155821851474,0.3258206696927834,0.3245435016111708,0.3228113034050204,0.3214847480478625,0.320982850554835,0.3203712475575818,0.3185180665924378,0.3154769405241935,0.3154404077365395,0.3157134604274985,0.316439961643641,0.317859673990078,0.3188209151869113,0.3198138020289734,0.3199571724922486,0.3205533975926725,0.321060001037183,0.3225211419490323,0.3264590830855891,0.3312296202797938,0.3343342552350849,0.3379661170913385,0.3419279537375988,0.345599798704158,0.34548071823623,0.3478915662650602,0.350076823070559,0.3530668294171498,0.3568094174954333,0.3554580362040592,0.3496769289243633,0.0,2.487882074429572,56.85432129935374,172.94838335472053,253.767208563716,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95821,45612,431.5442335187485,6051,61.959278237547096,4769,49.3315661493827,1900,19.58860792519385,77.3497797498425,79.6839260661094,63.33168066437421,65.06036089032864,77.11654157498423,79.44699785149338,63.24631042858975,64.97495762813132,0.2332381748582719,236.92821461601451,0.0853702357844596,85.40326219731753,159.41574,112.1214727338015,166368.2700034439,117011.37823003464,403.33448,264.7000118930702,420509.6273259515,275828.95387552853,388.58896,188.53929026829505,402073.40770812245,194106.1720238436,2746.89756,1259.5671295027994,2843320.733450914,1291124.0015265958,1101.29991,485.8882112974411,1141183.3001116666,498931.9160700064,1862.8845,769.9449895051916,1922607.9669383536,787312.3168041061,0.38186,100000,0,724617,7562.194091065633,0,0.0,0,0.0,34776,362.4883898101669,0,0.0,35495,366.9863599837197,1566291,0,56263,0,0,0,0,0,72,0.7514010498742447,0,0.0,0,0.0,0,0.0,0.06051,0.1584612161525166,0.3139976863328375,0.019,0.3410877082678403,0.6589122917321597,24.478495082920286,4.346720749210625,0.3147410358565737,0.2392535122667226,0.2233172572866429,0.2226881945900608,11.216641846219565,5.870519823033803,20.10787600793708,12213.195876703718,54.03014736265829,13.757685035789448,16.902670235330874,11.815819778147564,11.5539723133904,0.5525267351646047,0.7773882559158632,0.6968687541638907,0.5615023474178403,0.0979284369114877,0.7310664605873262,0.907621247113164,0.8753117206982544,0.7016129032258065,0.1320754716981132,0.4860431654676259,0.6977401129943502,0.6318181818181818,0.5189718482252142,0.0894117647058823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198330530623,0.0046336195970677,0.0067489394523717,0.0088388584665088,0.0114942528735632,0.0138485820477572,0.0160481239804241,0.0183130365546175,0.0205750380735304,0.022866150114126,0.0252995868827587,0.0273422660300836,0.0293458366750981,0.0312934416607457,0.033307889090609,0.0353378797272163,0.0374717926422789,0.0393838813401099,0.0414562683124493,0.0436860352528397,0.058973877482891,0.0734854346598632,0.086717742865228,0.0995229288386364,0.1114881956155143,0.1276022118139623,0.13921002948601,0.1506454256190871,0.1617343941902066,0.171466263393288,0.1836400465457053,0.1957968552165961,0.2072633536724638,0.217537187011596,0.2270577625269456,0.2372680440923946,0.2463375174337517,0.2551193675711539,0.2634982584722206,0.2715803452855245,0.2784403086069887,0.2850078327760761,0.2913916684408488,0.2966280295047418,0.3029265746573929,0.3077879702025488,0.3119641026922981,0.3163435255228529,0.3210053813515471,0.3250003298022506,0.3240411549235079,0.3221279643044041,0.3205350472888212,0.3185635679119606,0.3178099714421704,0.3162597514061949,0.3143454568495755,0.3153227130891772,0.3152549328044318,0.3158393534081968,0.3164459616611021,0.3179317714104797,0.3182818229439497,0.3192473574828487,0.3203605769230769,0.3214983458803303,0.3221843003412969,0.325527446001442,0.3270626832332821,0.329315370676751,0.3335600907029478,0.3347609983079526,0.3368387909319899,0.3403245560318432,0.3431640440968623,0.3439678600968923,0.3455826060327668,0.3547283702213279,0.3588347399945548,0.362722351121423,0.0,1.70997864093369,57.27848303900111,175.51716999451824,261.36786885228474,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95804,45179,428.31197027264,6098,62.502609494384366,4793,49.49688948269383,1896,19.487704062460857,77.41775944651599,79.74577437614414,63.37436231324406,65.09513795536223,77.18337894639409,79.51021476203562,63.28766417337825,65.0097765632671,0.234380500121901,235.55961410852436,0.0866981398658097,85.36139209513749,157.96792,111.13892304344972,164886.56006012275,116006.55822663948,397.70959,261.4207982550598,414617.124545948,272359.3267122148,385.07871,187.12017613699305,398152.2900922717,192464.67800049917,2769.18108,1267.8568061066385,2861553.5468247677,1294482.4121701522,1126.40658,497.14623476671255,1158091.2070477223,501381.65891498985,1863.04174,784.3242499023153,1916036.261533965,794780.6145270491,0.38094,100000,0,718036,7494.843639096489,0,0.0,0,0.0,34355,358.05394346791365,0,0.0,35219,363.8574589787483,1580639,0,56706,0,0,0,0,0,61,0.6262786522483403,0,0.0,0,0.0,0,0.0,0.06098,0.160077702525332,0.3109216136438176,0.01896,0.3430178069353327,0.6569821930646673,24.415607685853665,4.319422828846995,0.3114959315668683,0.240976423951596,0.2217817650740663,0.2257458794074692,11.008949780531731,5.549123907624523,20.302404488761024,12181.27632876553,54.17672056192896,13.694041118142232,16.78864363988538,11.947818874155145,11.746216929746211,0.5616524097642395,0.7878787878787878,0.7032819825853985,0.5729068673565381,0.1136783733826247,0.7193523515805705,0.9116945107398567,0.8817480719794345,0.6627906976744186,0.1601731601731601,0.5031464530892449,0.717391304347826,0.6403985507246377,0.5440993788819876,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0045918522498048,0.006727481202626,0.0090593325343787,0.0112564060847636,0.0134370291949997,0.0156660890836815,0.0179635829182657,0.0201966516077597,0.0222602038727637,0.0244054940549405,0.0263298363752078,0.0283091598737703,0.0303697908087629,0.0323970964282768,0.0345896034951095,0.036779468074097,0.0386481443085216,0.0406482106684672,0.0424851910844602,0.05706893133992,0.0709170926500872,0.0843168906312236,0.0973129687598478,0.1102603530353456,0.1264143169549003,0.1389362626187727,0.150493281170267,0.1610989597225927,0.1710888543730919,0.1830773863294188,0.1957956595478065,0.2066730364161473,0.2171596405603415,0.2270679995605844,0.237425192756557,0.2467953719597833,0.2551767506625342,0.2630511853387248,0.2707999817042492,0.2776507276507276,0.2839867869690567,0.2902848777493123,0.2955154589834402,0.3006987916727325,0.3055521359103779,0.3101397115793157,0.3155828314401159,0.3193891273987482,0.3235867446393762,0.3228871299369734,0.3222626984672486,0.3216340540464501,0.3206267674727304,0.320079552369503,0.317860422405877,0.3160997660744768,0.3169397116644823,0.3170445261437908,0.3183015375854214,0.3186474260720027,0.3189480516925982,0.321189358372457,0.321373757145717,0.3220745574053639,0.3218686632350647,0.3241108964890353,0.326707840862777,0.3284296596547627,0.332806761186367,0.336779576474856,0.3398613243000053,0.3421795595708639,0.3423539194194572,0.345229151014275,0.3497027348394768,0.3529048207663782,0.3613871425674305,0.3677629790703995,0.3645074741280183,0.0,2.0562544790412387,56.96270362868108,174.83832109357272,264.1725654224509,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95727,45044,427.026857626375,6112,62.64690212792629,4804,49.662059815934896,1847,18.918382483520844,77.3893283971574,79.74993790768113,63.35181630130408,65.09345227970374,77.15455453219155,79.51708452322084,63.26426448605297,65.00927642004281,0.2347738649658453,232.85338446028447,0.0875518152511034,84.175859660931,157.7895,110.9896373097933,164832.8057914695,115943.9210565392,399.04292,261.64778012442173,416338.9639286722,272810.8685370082,378.84587,183.64577807776,392894.9930531616,189527.7346232905,2761.76528,1264.4023726072792,2856043.9583398625,1291842.7325699949,1137.61165,504.3008923031939,1173925.9038724706,512345.8296020911,1809.98094,766.1346896818153,1856035.0371368576,769895.2270915767,0.38095,100000,0,717225,7492.400263248613,0,0.0,0,0.0,34408,358.8956093892005,0,0.0,34625,358.8224847744105,1579803,0,56646,0,0,0,0,0,71,0.7416925214411817,0,0.0,1,0.010446373541425,0,0.0,0.06112,0.1604410027562672,0.3021924083769634,0.01847,0.3331261653200746,0.6668738346799254,24.71719785051237,4.301268072994116,0.3199417152373022,0.2302248126561199,0.2339716902581182,0.2158617818484596,11.284233770173852,5.939193183990899,19.70031309602674,12136.248910908813,54.13116044380616,13.045347389281698,17.20267967183047,12.453197965746789,11.429935416947204,0.5566194837635304,0.7730560578661845,0.7000650618087183,0.5711743772241993,0.0973963355834136,0.7061191626409018,0.9083769633507852,0.8324873096446701,0.7235772357723578,0.109090909090909,0.5044918585064571,0.7016574585635359,0.6544181977252843,0.5284738041002278,0.0942472460220318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192926663763,0.00429728277945,0.0063195479950904,0.0087121635206076,0.0109389614086454,0.0135781609429391,0.0160097016142181,0.0183159527356584,0.0204871967792696,0.0227775049115913,0.0247363944706882,0.0268090738403767,0.0287613802174315,0.0308910116523242,0.0329500335172484,0.0352389219576719,0.0372283705858602,0.039218737034271,0.0409936597027336,0.0428872036334847,0.057419415468471,0.0711961241851266,0.0840631391263306,0.0965588300232355,0.1088810414799978,0.1248003891750124,0.1362744370074146,0.1469786654175361,0.1582714598579135,0.1688665387131016,0.1811300031227454,0.1935274520832432,0.2059769964994673,0.2170218815270047,0.2264024296309337,0.2373587414136937,0.2468296494753293,0.2552193475815523,0.263055763600463,0.2712808000274923,0.2770492182440559,0.2836035488433529,0.2901578294023763,0.2957943757407429,0.3009952664158272,0.3059963315401376,0.3108295708943557,0.3141008529408026,0.3186736384344585,0.3229233953359611,0.3214799285032724,0.3202528167078868,0.3188116585626352,0.3180558362444785,0.3175702736779648,0.3157122776996883,0.3134114007954043,0.314601226993865,0.3150901936736675,0.3156066893444229,0.3169360112097151,0.3178834059499635,0.3197708455298151,0.3195008705745792,0.3191187776282914,0.3204951856946355,0.320571039337004,0.3233068601088112,0.3261006069908602,0.3313630452772195,0.3343307943416757,0.3366677252037684,0.3385648816623768,0.3423103109161056,0.3432933683027351,0.3498470228289009,0.3490095266898533,0.3558441558441558,0.3591236827509706,0.3582722715001928,0.0,2.0343141326113328,54.54282249802869,177.83867715561905,270.197205055716,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95681,45060,428.3713589949938,5975,61.27653348104639,4723,48.87072668554886,1874,19.251471033956584,77.35982293729873,79.7360484512428,63.33991942654043,65.09008121327722,77.12562275294684,79.50042897908027,63.25412458903828,65.00558364283641,0.2342001843518915,235.61947216252577,0.0857948375021564,84.49757044080286,157.9622,111.14423744878631,165092.54710966648,116161.24146777972,399.34976,262.63029155946145,416898.7991346244,274007.8715308801,381.99948,186.0414136065032,396091.9200259195,192014.18397392367,2716.25568,1245.1617867593184,2813207.8469079547,1275709.3955532634,1136.75635,498.19639036263294,1172916.2216113962,505532.4454689562,1837.54448,765.9354180689671,1890129.471890971,776206.001598845,0.37996,100000,0,718010,7504.206686803022,0,0.0,0,0.0,34489,359.94607079775506,0,0.0,34995,362.5589197437318,1576472,0,56502,0,0,0,0,0,73,0.7629518922252067,0,0.0,2,0.0209027915678138,0,0.0,0.05975,0.1572533950942204,0.3136401673640167,0.01874,0.3381812370145437,0.6618187629854563,24.09140839536343,4.332446012143965,0.3116663137836121,0.2348083845013762,0.2267626508575058,0.2267626508575058,11.152223050361291,5.750302448478399,20.04355090874067,12061.71707430618,53.62913648205356,13.31061474930921,16.721362319544216,11.93100037603525,11.666159037164896,0.5672242218928647,0.806131650135257,0.7180706521739131,0.580765639589169,0.0989729225023342,0.7250778816199377,0.9040767386091128,0.8717948717948718,0.6868327402135231,0.1071428571428571,0.5082872928176796,0.7471098265895953,0.6626617375231053,0.5430379746835443,0.0971428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.0043887655709956,0.0067569624105919,0.0088257398793443,0.0109606312022124,0.0129166878721563,0.0148360998176056,0.016895890299147,0.018948293121412,0.0208795817945596,0.0233165664409453,0.025432423005109,0.0273400964098136,0.0293142504118616,0.0312538680529768,0.033435310168055,0.035405192761605,0.0374522900763358,0.0395571265204283,0.0417587227479261,0.0570082425331425,0.0708085979625383,0.0840627164536238,0.0969764554884591,0.1086667650967075,0.1252750740584003,0.1369063412045635,0.1481288206351573,0.1587892002821779,0.1694462330972311,0.1816918253224294,0.1927995235774998,0.2044022762139989,0.2135822463450932,0.2239837935438411,0.23401003422268,0.2435698583974022,0.2526077964120318,0.2607921622878136,0.268122410675456,0.2750997282765797,0.2817619476373671,0.2888218594748048,0.2942374018011113,0.2993510038211924,0.3039432875498449,0.3081834880727754,0.3127891018146698,0.3174740708170602,0.3213376762095657,0.3210093975612051,0.3199224763580383,0.3193877263638155,0.318712564047052,0.3182687886563534,0.316728101436197,0.3141247765067008,0.3131230190662309,0.3136902623068631,0.3144833997818819,0.3155347999774939,0.3167807541645234,0.3178423062397717,0.3189304094875811,0.3195893638505553,0.3213811766542634,0.3223156937418291,0.3253798819540374,0.3270488649480569,0.3304151481540168,0.3345767183732884,0.338529474356246,0.3410906785034876,0.345479598867029,0.3488832343794176,0.3489092859697222,0.3515003061849357,0.355021216407355,0.3526713437668645,0.366412213740458,0.0,1.8977263854644624,56.53187512014438,172.10159564137598,262.88188844795246,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95850,45578,432.4882629107981,6031,61.773604590506,4748,48.92018779342723,1854,18.9358372456964,77.34109898624328,79.63352138464705,63.34986309044478,65.04480977304398,77.1113389594157,79.40539208249261,63.26590298231642,64.96386077800379,0.2297600268275772,228.12930215444285,0.0839601081283589,80.94899504018827,158.5144,111.59536784654549,165376.88054251435,116426.41048152892,396.88299,260.2991273324883,413432.0605112155,270935.5572183633,386.96987,187.9543235142164,399683.56807511736,192938.93205143305,2720.47412,1247.3438755536006,2804704.350547731,1267841.7357172382,1129.27529,500.82854303569286,1164127.8977569118,508496.96838168,1819.22512,756.9099934943088,1860341.9926969225,757837.8217368108,0.3833,100000,0,720520,7517.130933750653,0,0.0,0,0.0,34174,355.8581116327595,0,0.0,35219,363.4220135628586,1576285,0,56601,0,0,0,0,0,73,0.7616066770996349,0,0.0,0,0.0,0,0.0,0.06031,0.1573441168797286,0.3074117061847123,0.01854,0.3365079365079365,0.6634920634920635,24.366246637075744,4.322442991563024,0.3197135636057287,0.2356781802864364,0.2289385004212299,0.2156697556866048,11.065509903310431,5.618686996709954,19.62391013969243,12234.333566081004,53.81789296043964,13.368603185886908,17.273953723817737,11.949263932314452,11.226072118420534,0.5633951137320977,0.7640750670241286,0.7114624505928854,0.563017479300828,0.125,0.7397151898734177,0.9158163265306124,0.9009661835748792,0.7203389830508474,0.1486486486486486,0.4994259471871412,0.6822558459422283,0.6403985507246377,0.5193889541715628,0.1184538653366583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0043671662056317,0.0066741725750337,0.0090665421243933,0.0110584839306405,0.0132500203533338,0.0156585877726499,0.0177811782708492,0.0198866247893366,0.0220856008838332,0.0240714563743265,0.0261225410760804,0.0281834802078839,0.0305265757145502,0.0325711753856299,0.0344304424559556,0.0364894068015675,0.0385097543539747,0.0402902643107779,0.0421963754395455,0.0571619240274026,0.0711277394003365,0.0850633706923641,0.0979080464598517,0.1106665262714541,0.1259716120310915,0.1377604525279916,0.1489741681726374,0.1595800300893076,0.170215501998564,0.1826848583971765,0.1948466204599764,0.2071019423279675,0.2169869062452182,0.2263646564432025,0.2367543616726668,0.2465165054609145,0.2560797282400845,0.2645667147023114,0.272463900880578,0.2797705111447838,0.286339027841115,0.2930683700023657,0.2986907200440818,0.3045959565296582,0.3101382829253863,0.3147529497140998,0.3184402304551871,0.3232809366711948,0.3271981211737386,0.3260772989782319,0.3246640718480518,0.3231038029617731,0.3225689772414891,0.3223334771547171,0.3193899448191293,0.3177842565597668,0.3179261111293878,0.3189715795070579,0.320629452189984,0.3195825798673899,0.3200460555048239,0.3202273205640917,0.3215828309187438,0.3217452395949416,0.3244888853896018,0.3257593123209169,0.3289881668037714,0.3323716708299616,0.3357350423948091,0.3372624269005848,0.3404527296937417,0.3447992412266835,0.3478691774033697,0.3516410548283058,0.3500895522388059,0.3539645881447267,0.3577926015767131,0.3631881676253081,0.3622077424300498,0.0,2.313724180204597,55.30318972311456,179.21115137781706,259.0513461665782,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95651,44928,425.44249406697264,5933,60.97165737943148,4649,48.101953978526105,1852,19.0797796154771,77.31769350596971,79.73912162888091,63.289715480586615,65.08090220646322,77.08480175866201,79.50573597547638,63.20434632588212,64.99747775306498,0.2328917473077041,233.38565340452533,0.0853691547044945,83.42445339823712,158.29968,111.3864869238426,165496.4610929316,116450.40743386208,399.07178,262.51642190309514,416725.06298940943,273964.57212996494,381.06589,185.5004349971635,395013.9883534934,191382.9522963153,2692.71768,1228.1519893780292,2788275.710656449,1257393.5324313357,1118.64521,486.7530348199062,1154992.5562722816,494883.3281875047,1820.1723,754.6485530608209,1876234.958338125,765387.2302903114,0.37794,100000,0,719544,7522.566413315073,0,0.0,0,0.0,34479,359.93350827487427,0,0.0,34899,361.4703453178744,1570890,0,56310,0,0,0,0,0,64,0.6690991207619367,0,0.0,0,0.0,0,0.0,0.05933,0.1569825898290734,0.312152368110568,0.01852,0.3335470427953197,0.6664529572046802,24.370010814733277,4.423156455264785,0.3269520326952033,0.2286513228651323,0.2161755216175521,0.2282211228221123,11.177292192163351,5.6767539633636765,19.48017922425552,12047.05554253492,52.35040471917252,12.63247665912936,17.237677016715658,10.985586419214188,11.494664624113303,0.5611959561195956,0.7845719661335842,0.7105263157894737,0.5621890547263682,0.122525918944392,0.7481722177091795,0.931372549019608,0.8886255924170616,0.6869158878504673,0.1016042780748663,0.4938560561732007,0.6931297709923664,0.6420765027322405,0.5284450063211125,0.1270022883295194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023401410162898,0.0045024946254005,0.0068934010152284,0.0092277360542281,0.0113239797735204,0.0136715566422167,0.0156999163487238,0.01774640116879,0.0200998853774357,0.0226226718738788,0.0249553452275853,0.0267749730090997,0.0289156626506024,0.0312045470956561,0.0332689307448314,0.0354204824139322,0.03734577501296,0.0394910412879771,0.0415847148075302,0.043402542417069,0.0581123163416724,0.0722129086336965,0.0855609356454882,0.0985697434385137,0.1107344632768361,0.1255745483044205,0.1372340651633334,0.1481548596158355,0.1589678854917734,0.1693968526773726,0.1816357791633406,0.1934613467415097,0.2043984053329847,0.2141159721841975,0.2234356747702277,0.2335155998713412,0.2431218291129338,0.2520018469924431,0.2600426913731635,0.266798056650472,0.2728525281061492,0.280127777582757,0.2864451339380877,0.2922918240804039,0.2980898999355599,0.302824886610136,0.3078568747654197,0.3119961343811195,0.3162616677239361,0.3196699669966997,0.3178732117358622,0.3161384395289974,0.3150889449147171,0.3137804085757598,0.3136629373534736,0.3118742153770782,0.3105140667796019,0.3120973162614555,0.3130531162076903,0.3146033440056919,0.3152169857084219,0.3156010230179028,0.3160816767861598,0.3158783783783784,0.3159543682586755,0.316633370521236,0.317770785497633,0.3222090409590409,0.3245810055865922,0.3270577067594826,0.331602204910938,0.3330321071656389,0.3366561514195583,0.338150289017341,0.3412362404741744,0.3442196189800023,0.3508342262360324,0.3504118947156922,0.3492324561403508,0.3492184521540221,0.0,1.915255893948765,54.19377371557808,169.28696609709866,258.9155546059925,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95712,45483,430.67744901370776,6074,62.270143764627214,4811,49.71163490471414,1960,20.10197258441993,77.34880342590687,79.70652980957996,63.338894218876014,65.07720122917529,77.1051184351193,79.46381272263528,63.24809445004856,64.9893303763566,0.2436849907875711,242.71708694467972,0.0907997688274591,87.87085281868201,158.2526,111.37663108953988,165342.48579070542,116366.42332156874,403.06788,264.5933847658455,420589.758859913,275911.4580886885,388.46875,188.89920633729585,402404.3589100635,194693.96513877425,2761.8248,1268.4046987774002,2854586.7184888,1294259.7989566615,1164.60465,515.9723382363288,1201542.8786359078,523851.14534888894,1920.85756,805.7644901286204,1971934.5327649617,812929.4409168581,0.3815,100000,0,719330,7515.567535941156,0,0.0,0,0.0,34657,361.53251420929456,0,0.0,35468,367.0699598796389,1571535,0,56410,0,0,0,0,0,86,0.8985289200936142,0,0.0,0,0.0,0,0.0,0.06074,0.1592136304062909,0.3226868620349029,0.0196,0.3307740520213099,0.6692259479786901,24.590876022218925,4.315431918301431,0.3192683433797547,0.2332155477031802,0.2217834130118478,0.2257326959052172,10.976748876707443,5.693338451743762,20.90856991221744,12176.01502993764,54.482671973842834,13.363360160595535,17.53432902881781,11.716007263639106,11.868975520790396,0.5572646019538557,0.785204991087344,0.6998697916666666,0.5623242736644799,0.1151012891344383,0.7282525019245574,0.9307692307692308,0.8480725623582767,0.7219917012448133,0.1541850220264317,0.4940205011389522,0.7076502732240437,0.6401826484018265,0.5157384987893463,0.1047729918509895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.004439849166768,0.0066358885901273,0.0090106563455541,0.0112351553603383,0.0135898610474881,0.0156257963244212,0.0179238542410942,0.0204077461550252,0.0225269945243334,0.0248857183855031,0.0270644744134491,0.0294045073202829,0.0313593872256311,0.0334117307255885,0.0354116723154501,0.0375969433716102,0.0395218776264046,0.0415496911847276,0.0435756634816767,0.0576169937234342,0.0719025390911184,0.0851423235513214,0.0973633819413757,0.109101073817008,0.1248651278904944,0.1369858652744174,0.1481927069470322,0.1588208897816146,0.1692484284151129,0.1825879007238883,0.1950097921468064,0.2062083292546306,0.2163113974166876,0.2254816738372157,0.2357810058837217,0.244984809221696,0.2540835050037711,0.2620488425163773,0.2691320685546696,0.2762588262530385,0.2834733172683246,0.2904321681798274,0.2954646216523875,0.301044449842118,0.3063997536187249,0.3111827795694892,0.3160209477323571,0.3201008598952609,0.3243570986067723,0.3232918753028589,0.3226059438635112,0.3219070966651168,0.3208079114015557,0.3195509961344038,0.3175697412564915,0.315504465133954,0.3161487218193154,0.3169294364825854,0.3180616582717108,0.318540840008984,0.3199644725155433,0.3209830025956627,0.3225748690630735,0.3235697610050783,0.3244461819129528,0.3249621871521931,0.3288537798199786,0.3330994562357481,0.334948179327324,0.3403992873132623,0.3420404667594476,0.3443333120978531,0.3465300777940384,0.3497907153729072,0.3507696007696008,0.3545213181321255,0.3569352159468438,0.3615644344400675,0.3706020328381548,0.0,2.15609430124554,57.12683735874145,175.96766795393103,265.7451036937791,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95640,45332,429.4019238812213,5995,61.42827268925136,4695,48.52572145545797,1888,19.343370974487662,77.26744378178137,79.68357624610138,63.28338998351626,65.06971730521103,77.0353462970185,79.45399026340652,63.19731378123917,64.98740913214435,0.2320974847628605,229.5859826948572,0.0860762022770842,82.30817306667859,157.90302,111.09108241273135,165101.4429109159,116155.4604900997,399.28564,263.1974387549575,416917.92137181095,274625.7828889141,387.39678,188.94262173606057,401821.5077373484,195008.0378068328,2718.88496,1251.212657233929,2810564.617314931,1276034.8151755838,1125.55733,503.5923232686248,1161604.2973651192,511285.3861027018,1849.00574,775.202069845726,1895509.8912588877,776947.3238553833,0.38139,100000,0,717741,7504.61104140527,0,0.0,0,0.0,34417,359.26390631534923,0,0.0,35370,366.6457549142618,1571354,0,56417,0,0,0,0,0,72,0.7528230865746549,0,0.0,0,0.0,0,0.0,0.05995,0.1571881800781352,0.314929107589658,0.01888,0.3344508301404853,0.6655491698595147,24.39404954932475,4.433914319754249,0.3077742279020234,0.2336528221512247,0.227689030883919,0.2308839190628328,11.098777154586204,5.729612588037374,20.17576626803948,12200.009846454695,53.35583796337089,13.189329394528473,16.388228969579597,11.954487581224187,11.82379201803862,0.5642172523961662,0.8030993618960802,0.6982698961937717,0.5949485500467727,0.1134686346863468,0.7432646592709984,0.9240196078431372,0.8914728682170543,0.726890756302521,0.1877729257641921,0.4983979027090008,0.7314949201741655,0.6275992438563327,0.5571600481347774,0.0935672514619883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107524266926,0.0043094706955992,0.0063454353476283,0.0086578326965287,0.0106613495559466,0.0128936326231311,0.0150600566918857,0.0176826715944011,0.0199695293407908,0.0220069430932606,0.0243269575919183,0.0267185766528331,0.0286813571178733,0.0307064545379605,0.0329586391271586,0.0352952122985309,0.037296351151205,0.0395462047061021,0.0415773815715563,0.043757949830056,0.0581927635291904,0.0728956105531059,0.0858072985035442,0.0988206802148046,0.1105387059655642,0.1260456152982783,0.1379914611610272,0.1491171048284828,0.1601275029950368,0.1704399003350803,0.1839604836013416,0.1960221425398923,0.2068481372239576,0.2173075660414523,0.2265681763138774,0.2373461542722307,0.2463396125345951,0.2550711593632221,0.2630772374335921,0.2706552380079298,0.2772311610140062,0.2838329376264605,0.2907463958525673,0.2961883515639992,0.301567230415699,0.3071379208214039,0.311791738145027,0.315340077622956,0.3195583718850834,0.3244739902727849,0.3240016189962223,0.3226393002272884,0.3218940419769803,0.3210346524621486,0.3196121941412125,0.3178463474138063,0.3167581632976867,0.3178047538479228,0.3182548637467091,0.318937945575071,0.3197058106155838,0.3209695334814345,0.3225203269113599,0.3224809673085535,0.3220302219651507,0.3234440755940089,0.3241900956186671,0.3291334614294264,0.3323710614328463,0.3368580663181836,0.3382535522140985,0.3396104594856343,0.3390804597701149,0.3415066697509445,0.3435274005128692,0.3468457663708323,0.3464396284829721,0.3492518958803033,0.3560906515580737,0.3610108303249097,0.0,2.1059806943973323,55.35712788169965,177.67111543091997,255.36870431418964,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95832,44903,424.7746055597296,6113,62.557392102846656,4789,49.33633859253694,1871,19.09591785624844,77.40182060844235,79.71639230373377,63.36325590393732,65.07601242714973,77.16052673239857,79.47980252126875,63.27159689999616,64.98962530114765,0.2412938760437839,236.5897824650176,0.0916590039411673,86.3871260020801,157.83768,110.99359445131134,164702.2497704316,115820.81109326024,396.9304,260.8436205186683,413559.0095166541,271554.52943509584,377.10161,182.90814942694888,390460.0133567076,188418.672511601,2744.47248,1269.47540462313,2828052.299858085,1288999.2595115723,1129.82637,505.3601201982408,1160447.8149261207,508821.7925100594,1829.9337,787.1334749116745,1868702.2706402875,784042.3056500128,0.38043,100000,0,717444,7486.465898655982,0,0.0,0,0.0,34344,357.7093246514734,0,0.0,34448,356.34234911094416,1581602,0,56749,0,0,0,0,0,62,0.6469655229985809,0,0.0,1,0.0104349277902996,0,0.0,0.06113,0.1606865914885787,0.3060690332079175,0.01871,0.3459737827715355,0.6540262172284644,24.684155944483766,4.391803204446462,0.3230319482146586,0.2338692837753184,0.2219670077260388,0.2211317602839841,11.048682658467277,5.670823637287185,20.094037492222743,12125.722220991474,54.30488387020991,13.423624667989312,17.38909502877578,11.825141461754717,11.66702271169012,0.5596157861766549,0.76875,0.713639301874596,0.5700846660395108,0.1029272898961284,0.7171717171717171,0.8956310679611651,0.8877551020408163,0.7096774193548387,0.1276595744680851,0.5017133066818961,0.6949152542372882,0.6545454545454545,0.5276073619631901,0.0958737864077669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681706798436,0.0046215123291003,0.0068274966521933,0.0090902627542988,0.011325627026972,0.0136406205464391,0.0159200937675177,0.0179322310675648,0.0200850420099351,0.0223022834508664,0.0244579980523807,0.0266147987724142,0.0289767178907334,0.0309407852060831,0.0329740601309886,0.0348529624501436,0.0369649604057761,0.0391658716661827,0.0409244352116333,0.0430461163785477,0.0576044556624043,0.0711530218602657,0.0843777507649746,0.0974441398001954,0.1095311825238832,0.1251821964976024,0.1364536873218845,0.1472551771059233,0.1579430474320112,0.1684808227983715,0.1810885539381811,0.1931366191093817,0.2048579036026734,0.2154520416193057,0.2244630898314217,0.2346499241493096,0.244502950724573,0.2532277655315129,0.2617032381038826,0.269325883861513,0.276190366017306,0.2823600944786137,0.2890571394771087,0.2952328451932987,0.3003449029656797,0.3049316857420936,0.3101002139398716,0.3145974541246487,0.3184571576494952,0.3226402152693505,0.3223080442446914,0.3209329830979329,0.319981428330238,0.3189685012114918,0.3186435148801139,0.3163215367203988,0.3148271066439092,0.3154015005078138,0.3162671671073957,0.3174399543867151,0.3174959331351321,0.3193666692956858,0.3194551797614322,0.3203355045953422,0.3218597298074159,0.3232026991954321,0.3235569422776911,0.3266108891108891,0.3312990409764603,0.3343210461854529,0.3372902169463774,0.3416264389157074,0.3428571428571428,0.3438564615035203,0.3471435206688342,0.3484083166921179,0.3467558121865978,0.3519114688128772,0.3563815250068324,0.3604118993135011,0.0,2.435481313887088,56.09031926258305,183.26180650868852,256.209044142657,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95703,44997,426.96676175250514,5880,60.238446025725416,4630,47.86683803015579,1800,18.515616020396436,77.32145341825886,79.70834981551032,63.3143933609397,65.07989433262334,77.1004771019546,79.48627828337106,63.23267238795601,64.99956664370208,0.2209763163042595,222.07153213925324,0.0817209729836889,80.3276889212583,157.50658,110.76935285630262,164578.51895969824,115742.82191394482,399.39101,263.049431133246,416775.6078701817,274313.817388339,378.78918,184.1830376336549,392228.174665371,189755.0987138708,2649.729,1207.3407695219869,2740848.5000470206,1233769.4895719942,1109.9355,486.70173750638656,1149530.0251820737,498340.1855328645,1765.65488,736.0516345289944,1818336.123214528,747168.7112223092,0.3798,100000,0,715939,7480.841770895374,0,0.0,0,0.0,34475,359.6647962968768,0,0.0,34508,357.0212010072829,1578707,0,56595,0,0,0,0,0,78,0.8045724794416058,0,0.0,1,0.0104489932395013,0,0.0,0.0588,0.1548183254344391,0.3061224489795918,0.018,0.3381971465629053,0.6618028534370947,24.853663941112348,4.418661029104575,0.31792656587473,0.2330453563714903,0.229157667386609,0.2198704103671706,11.30028216792011,5.905735959792336,19.10394121214488,12071.968663607082,52.09595824592772,12.762435329368122,16.431798254845422,11.839083728415623,11.062640933298551,0.5591792656587473,0.7775718257645968,0.6847826086956522,0.5758718190386428,0.1286836935166994,0.7264462809917356,0.921119592875318,0.8515406162464986,0.7269076305220884,0.1516587677725118,0.5,0.6953352769679301,0.6313901345291479,0.5295566502463054,0.1226765799256505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020061603307124,0.0044721630666261,0.0063647068377456,0.0086177985996077,0.0110389874654077,0.0131712981827071,0.0153278195335366,0.0176026138452113,0.0196485345382798,0.0220791450856756,0.0244722623771004,0.0265971102599123,0.0287210295131209,0.0304185643921439,0.0322976878612716,0.0340880893300248,0.0363046900894928,0.0383366024263935,0.0402358618107697,0.042323686048087,0.0571935871324873,0.0712012728719172,0.0845541936025522,0.0976197491371327,0.1089951890614449,0.1238715139969307,0.1358778139826146,0.1462606769335633,0.1571663674446439,0.1675317989747109,0.1798802163000624,0.1913101835815725,0.2024318357314539,0.2129598232353616,0.2230019578942737,0.2332986426341312,0.2424793369993196,0.2516606161419756,0.2606294927322615,0.2683985162117604,0.2755562236921227,0.2820150108723608,0.2885307204392691,0.2945779162422862,0.2992688318313212,0.3039249482911454,0.3085995147452413,0.3134182298815515,0.3188057386583947,0.322442096387447,0.3217811129938944,0.3205806017494953,0.3183000745334627,0.31701581255771,0.3164224310721126,0.3153358643071459,0.3133405056481979,0.3146441456215152,0.3151886422196815,0.3158870838311607,0.3171160719297917,0.3188528796431532,0.3192219201003974,0.3209310645529146,0.3229828615443866,0.3235886305990639,0.3266246779272831,0.3300967813120645,0.3330753807731542,0.3343253968253968,0.3369086033722674,0.3400680561463207,0.3426019761844439,0.3465407356215925,0.3479534927686927,0.3474414155906264,0.3473570658036677,0.3525811058967558,0.3569452130603209,0.3621621621621622,0.0,1.866202858823872,53.2288690043363,167.93975635775223,261.71762819245777,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95704,45115,429.2297082671571,5866,60.12287887653599,4595,47.417035860570095,1770,18.1288138426816,77.3455376358958,79.73113577822222,63.32130932583449,65.0868660683473,77.1320690569967,79.51967913461692,63.242252194478056,65.01087052061295,0.2134685788990964,211.45664360530247,0.0790571313564356,75.99554773435102,158.38812,111.39563489426688,165497.91022318817,116396.00737092168,397.63313,261.40352834801985,414866.7244838252,272521.9931748097,375.8899,182.83570952518008,388861.2492685781,188114.51104932,2627.59932,1197.926343505705,2713124.843266739,1219310.069745992,1059.57052,469.59258583347776,1092673.7962885564,476256.4422276028,1735.67024,718.5883931186678,1779225.5078157652,722892.898911028,0.38065,100000,0,719946,7522.632282872189,0,0.0,0,0.0,34412,358.95051408509573,0,0.0,34494,356.4741285630695,1575952,0,56456,0,0,0,0,0,54,0.5642397391958539,0,0.0,0,0.0,0,0.0,0.05866,0.1541048207014317,0.3017388339584043,0.0177,0.3385890767230169,0.6614109232769831,24.64005534577503,4.289360163791243,0.3262241566920565,0.2376496191512513,0.2198041349292709,0.2163220892274211,11.088871200825926,5.673005941030378,18.585301296434363,12049.77628929778,51.80073187583017,13.07665386325405,16.76670596808567,11.1226544562232,10.834717588267251,0.5542981501632209,0.7857142857142857,0.6904603068712475,0.5554455445544555,0.0935613682092555,0.7364470391993327,0.9254807692307692,0.8864265927977839,0.695067264573991,0.1155778894472361,0.4899882214369846,0.6997041420118343,0.6282952548330404,0.5158831003811944,0.0880503144654088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002117549316609,0.0043511334246158,0.0069140565510939,0.0090855505193194,0.0111805159925124,0.0130474638419229,0.0151944688054496,0.0174320639686284,0.0192858311518324,0.021238684307541,0.0235064868468283,0.025328416922587,0.027412901035827,0.0295217781075149,0.0314754233702438,0.0337230820126332,0.0359447672912976,0.0378415966953471,0.0397570690211004,0.0413128418859077,0.0562088772845953,0.0710009628668313,0.0842866438571818,0.0971118943658267,0.1085679327475819,0.1243720054576031,0.1364528622208074,0.1477485728891539,0.1589062767231058,0.1691300381044383,0.181311574363507,0.193736327998094,0.2051047619047619,0.2156588146478626,0.2250299915253304,0.2350458126059451,0.2443003649105578,0.2534363681357,0.2614475460227079,0.2683741902996177,0.2751642150060135,0.2815611124094415,0.2880696860816944,0.2927950028121148,0.298035649327028,0.304055383404653,0.3086788211788211,0.3135538385414684,0.3179448802642444,0.3216256701356039,0.3209156374461922,0.3191541811608097,0.3180727288038062,0.3170352453351762,0.3156111776801432,0.312784064911692,0.3106578469602008,0.312238639531642,0.3128261981920519,0.3139675968881593,0.3139210136642237,0.3152077195341388,0.3167424607582203,0.3171810102273235,0.3180103328126877,0.3182339449541284,0.3206334764436609,0.3236705882352941,0.3269358736384968,0.3291716210860087,0.3331669691470054,0.336734693877551,0.3369646882043576,0.3369663941871026,0.3381234150464919,0.3401693096458805,0.334973854198708,0.3383642667754436,0.3384363039912521,0.3480108149864813,0.0,2.266925170547056,52.23330113740624,171.96062619065367,254.35287938802017,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95600,44800,425.6485355648536,5935,60.70083682008369,4669,48.14853556485356,1824,18.556485355648537,77.23812690061078,79.66736633252457,63.25655152000609,65.05355218203871,77.00053547987902,79.43636746689005,63.16749014279276,64.9703063631646,0.2375914207317606,230.99886563451832,0.0890613772133335,83.24581887411853,158.24666,111.2791976358966,165529.7489539749,116400.6111254148,396.98817,260.9500045253603,414561.4748953975,272263.2389180535,375.24407,183.00108675162767,388505.24058577407,188333.55407023357,2697.78192,1249.6356642321382,2783886.610878661,1269393.6806379347,1119.97934,499.6039113167437,1151532.290794979,502908.2909106386,1794.6671,766.937336789973,1829018.9748953972,762593.8461351395,0.37875,100000,0,719303,7524.07949790795,0,0.0,0,0.0,34305,358.09623430962347,0,0.0,34294,354.7907949790795,1569598,0,56420,0,0,0,0,0,71,0.7322175732217574,0,0.0,0,0.0,0,0.0,0.05935,0.1566996699669967,0.3073294018534119,0.01824,0.343319448894585,0.6566805511054149,24.46815680978726,4.383438423702666,0.3156992932105376,0.2385949882201756,0.2171771257228528,0.2285285928464339,11.154133084337383,5.756170028747469,19.674679098765232,12051.80429234447,53.29584254289021,13.359280860821622,16.73718258741916,11.37175723500037,11.827621859649044,0.5602912829299636,0.7675044883303411,0.7069199457259159,0.6035502958579881,0.1002811621368322,0.7246489859594384,0.909313725490196,0.8790931989924433,0.7428571428571429,0.1163793103448275,0.4980808975494538,0.6855524079320113,0.6434540389972145,0.5591677503250976,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.0045439331392695,0.0066810169766875,0.0089039773131536,0.0110934701188731,0.0132237130311643,0.0152684991585496,0.0175090916520246,0.0198739848208988,0.0220519701330492,0.0238960026266108,0.0258109593826741,0.028004775529528,0.0299887632341267,0.0321887747198843,0.0344774065374626,0.0364403528960491,0.0382929211078559,0.0399966686793395,0.0418570683359415,0.0562473209338309,0.0705482897384305,0.0837264522636295,0.0969624199528143,0.1089027352413137,0.1243088655862726,0.137089920108788,0.1478153347617068,0.1594072647515112,0.1688776222649494,0.1811737286763992,0.1935753160302695,0.2045286143921893,0.2153861325385694,0.2247815114010822,0.235294770364288,0.2446865631571882,0.253577671271497,0.2614896448189975,0.2687881850337636,0.275323469683783,0.2814977250340072,0.2876637554585153,0.2932788264999398,0.2988236728225757,0.3042564501971838,0.3089283920859696,0.313493228495207,0.3177967202889888,0.3211269097360129,0.3200016208768944,0.3182966388294568,0.3169533169533169,0.3163753369858249,0.3152376271539848,0.3134351285753786,0.311005924678749,0.3111078160010544,0.3115758054002127,0.3128829958788747,0.3133865664631282,0.3135458799270362,0.3142232683254876,0.3150586599071311,0.3149429721974391,0.3155858752189027,0.3178919676303223,0.3228949858088931,0.3265808539072941,0.3301524450603841,0.3332877274592967,0.3357757247531061,0.3402956904687008,0.3388580551965331,0.3388972243060765,0.3442314477243325,0.3453280919262171,0.3490792634107286,0.3500548245614035,0.3566806242862581,0.0,2.6070747359777293,55.80191533522,177.58113736283235,250.253536363078,fqhc8_100Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95724,45051,426.7895198696252,5990,61.39526137645731,4743,48.9845806694246,1908,19.577117546278885,77.33641368994157,79.71072572047942,63.332022412709286,65.08891032587108,77.09405883370441,79.4700068840387,63.24063948045716,65.00079904413228,0.2423548562371564,240.71883644072045,0.0913829322521309,88.11128173880434,158.3406,111.33543176200628,165413.6893569011,116308.79587355968,397.62729,261.3479824390151,414854.9475575613,272488.03062869824,377.78048,183.811790259496,391227.0694914546,189386.3896424485,3140.73904,1441.8880833172057,3247013.465797501,1472274.6785729837,1103.44222,490.9667197391678,1140002.110233588,500167.2723028367,1873.42586,800.7243984189059,1924495.236304375,807357.5387903984,0.38058,100000,0,719730,7518.804061677322,0,0.0,0,0.0,34419,358.9904308219464,0,0.0,34513,357.11002465421416,1577904,0,56644,0,0,0,0,0,66,0.6894822615018177,0,0.0,1,0.0104467009318457,0,0.0,0.0599,0.1573913500446686,0.3185308848080133,0.01908,0.336676217765043,0.663323782234957,24.43793786418065,4.380720918606566,0.3143580012650221,0.2331857474172464,0.2230655703141471,0.2293906810035842,10.809465028179572,5.484094687007637,20.44609774639802,12164.151727012191,54.02159240572239,13.29443820659628,16.869529137626408,11.879369751221976,11.978255310277714,0.552393000210837,0.7965641952983725,0.6827632461435278,0.5737240075614367,0.1047794117647058,0.7018633540372671,0.918987341772152,0.868421052631579,0.6833976833976834,0.1338582677165354,0.496671490593343,0.7285513361462729,0.6192619261926192,0.5381727158948686,0.0959232613908872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021178711847918,0.0043712410876378,0.0068328341540179,0.008903162858769,0.0110881661800758,0.0135864583545515,0.0157456225333727,0.0179497651623442,0.0199155531473321,0.0220297688512171,0.0243557414355126,0.0266832303238126,0.028773279310593,0.0308792023731048,0.0329886907710087,0.0351638810505752,0.0370585128964453,0.038975859242891,0.0409491046280802,0.0431032686819024,0.0580895098469185,0.0724748373056561,0.0858458214918674,0.0982465730384324,0.1106274439537506,0.1256777466575067,0.1375702321636807,0.1491124512087468,0.1603433183167154,0.1701113218261493,0.1826841317848647,0.194905905256327,0.205604225995087,0.2156725631808398,0.2248870618494377,0.2350878745313174,0.2445717597752909,0.2536310085885156,0.2615578259834216,0.2692246093303132,0.2757181665799664,0.2826853885332461,0.2899292221526391,0.2953413769989466,0.3019110598798762,0.3070021046930963,0.3118288978612232,0.315585389730094,0.319352417434517,0.3232984465942536,0.3221092329449794,0.3211696937959926,0.3204197046835996,0.3197169647508248,0.3187894486125997,0.3172363011597226,0.3164988503924522,0.3174376171220041,0.3185472834268509,0.3194216057767927,0.3197271262041306,0.3200790513833992,0.3204803648764567,0.3218947321448492,0.3224008265455681,0.3232888842587769,0.3240141933268471,0.3262586065314888,0.3297295393717425,0.3324289818065751,0.3370740008278526,0.3399030694668821,0.3423944476576055,0.3462372251471043,0.3470846036585366,0.3513808139534883,0.3515028811711571,0.3515785157851578,0.3485557083906465,0.3517320137038447,0.0,2.231851590227162,56.39435857991402,175.31649600365384,262.976234418119,fqhc8_100Compliance_implementation_low_initial_treat_cost,0 -100000,95599,45099,428.1111727110116,6064,61.9671753888639,4793,49.42520319250201,1916,19.519032625864288,77.26635035352784,79.70334178326823,63.26822878755484,65.07149077319939,77.02729497322414,79.47004226127282,63.17803383826466,64.98686827392578,0.2390553803036965,233.2995219954057,0.0901949492901792,84.62249927360688,158.44356,111.45219969307362,165737.44495235305,116582.80180239712,399.66794,261.98074878684724,417367.4097009383,273342.2083691746,381.29284,185.61893416237604,394409.062856306,190702.77141565323,3130.80906,1442.7530062961248,3230347.6186989406,1464640.6798367398,1135.71014,501.47691488956,1168230.2116130923,504799.39632167673,1876.67286,794.9605189435399,1914441.887467442,789532.0541770123,0.38041,100000,0,720198,7533.520225106957,0,0.0,0,0.0,34535,360.5163233925041,0,0.0,34933,361.1125639389533,1570773,0,56394,0,0,0,0,0,60,0.6171612673772738,0,0.0,0,0.0,0,0.0,0.06064,0.1594069556531111,0.3159630606860158,0.01916,0.3285601888276947,0.6714398111723052,24.53571911131457,4.3313803116728415,0.3198414354266639,0.2376382224076778,0.2182349259336532,0.224285416232005,11.253924889840446,5.85495544235557,20.57571482082015,12150.668034398584,54.53710587033178,13.551781351037294,17.43325936891302,11.681838953039549,11.870226197341903,0.5578969330273316,0.7787532923617209,0.6999347684279191,0.5621414913957935,0.1172093023255814,0.7134099616858237,0.924170616113744,0.8442211055276382,0.7068273092369478,0.1228813559322034,0.4997133027522936,0.6931659693165969,0.6493392070484582,0.5169385194479298,0.1156138259833134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022396530057967,0.0046056302307887,0.0070785136136979,0.0090694647795672,0.0114818509395167,0.0137998511980594,0.0162577563683866,0.0186178637483011,0.0208213964148317,0.0227379854493288,0.0248573422554292,0.0266430935591965,0.0286484872816363,0.0306838919877511,0.0326908775409023,0.0347253838831174,0.0367951907131011,0.0388230528753777,0.0407052382885273,0.0426570436269959,0.0574182688789218,0.0709906624327978,0.0843339321168573,0.0970905490245649,0.1098623683626799,0.1250675339258662,0.136912480602028,0.1485673444133899,0.1596998469262141,0.1699315502734765,0.1823683614356451,0.1941282334829462,0.2052348949426514,0.2150041635622562,0.2249154018275409,0.234728400128673,0.2435681170753505,0.2521620647718571,0.2605929073823673,0.2683290512020554,0.275554525974402,0.2823512877270651,0.289154771071492,0.2959263212174267,0.3015077821011673,0.3065451941831469,0.3110175016298079,0.3158156308539243,0.3199787363698834,0.3242472266244057,0.3230391958715658,0.3218268939498251,0.3210650954300696,0.3197576914179967,0.3192384918569197,0.3178385995006969,0.3166698346321992,0.3160689043032315,0.3160199073044757,0.3166815822444961,0.3175155046043976,0.3186540825633501,0.3200411790659075,0.3222043082986251,0.3238852735598939,0.3257326437862404,0.3282285714285714,0.3300306080590704,0.3319017109061465,0.3339975291914079,0.3383856829802776,0.3425043903996594,0.3440329218106996,0.3468335229427379,0.3474939444754984,0.3494484862708284,0.3490737928940176,0.3534967845659164,0.3567921440261866,0.3605877920120572,0.0,2.7659376519800363,56.65207928930189,178.6402750669427,261.9554929029357,fqhc8_100Compliance_implementation_low_initial_treat_cost,1 -100000,95714,45277,429.4774014250789,5840,59.88674593058487,4555,47.08820026328437,1766,18.147815366613035,77.34534288058313,79.71484856180453,63.32656324425341,65.07484339250018,77.12758715289532,79.49744573382618,63.24474315709661,64.99553068932948,0.2177557276878161,217.4028279783471,0.0818200871567995,79.31270317070016,159.19728,112.0331762867419,166325.5532106066,117049.53570098216,398.03656,262.3795675995167,415378.7220260359,273648.4588933723,381.04461,185.65815699686289,394865.45332971145,191504.0751900052,2990.69834,1372.7777805669791,3094345.163716906,1404119.8923336968,1089.93592,487.3095702544436,1124203.220009612,494648.7015853412,1735.75306,733.038736177634,1784669.3691622962,739343.0953935077,0.3807,100000,0,723624,7560.252418663937,0,0.0,0,0.0,34318,358.02494932820696,0,0.0,34745,359.89510416449,1568360,0,56274,0,0,0,0,0,74,0.7731366362287648,0,0.0,0,0.0,0,0.0,0.0584,0.1534016285789335,0.3023972602739726,0.01766,0.3389525368248772,0.6610474631751228,24.52594851852285,4.265808792625399,0.3145993413830955,0.2428100987925356,0.2206366630076838,0.2219538968166849,10.95822399803995,5.600294238654705,18.83703100379811,12114.161743255923,51.718517606798805,13.24819476646693,16.158703962218585,11.170237892161554,11.141380985951743,0.554774972557629,0.7784810126582279,0.6845778087927425,0.5562189054726369,0.1246290801186943,0.7121831561733443,0.9285714285714286,0.8726287262872628,0.6486486486486487,0.1238938053097345,0.4969987995198079,0.6914285714285714,0.6193609022556391,0.5300127713920817,0.1248407643312101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0047838161068655,0.0071222758816606,0.0093946780418444,0.0116841912587199,0.0140196906912104,0.0160443615383831,0.0182211651337749,0.0203422403042136,0.0225609319179863,0.024542267238021,0.0264633394947627,0.0288206373043138,0.0309164709275971,0.0329514963880289,0.0349596857556336,0.036816868443128,0.038802407638024,0.0408933528806263,0.0426744755572692,0.0572520678419249,0.0713149411813957,0.0840608604407135,0.0973348905232368,0.1087814452135742,0.12410705781503,0.1362598864058601,0.147105501411301,0.1580595515465019,0.1682380324141112,0.1808885488615669,0.1926946276382617,0.2041615880201985,0.2149222684475585,0.2243428080570025,0.2347496425047943,0.2440959821428571,0.253788432764459,0.2624524768768087,0.2698474506390581,0.2771903847488605,0.2831236554110934,0.2890140578406778,0.2941881222519079,0.3001518187890933,0.3051327869862592,0.3090913642679217,0.3138832742204085,0.3187624698779571,0.3230314076656893,0.3221184304527747,0.3209381757082455,0.3208655026888171,0.3195722637031892,0.3186125035327016,0.3164981617647059,0.3143751878153321,0.3144645842210495,0.3159955066889063,0.3162642563564222,0.3165730703931043,0.3171370094855748,0.3190840969337702,0.32075640195575,0.3206866705135603,0.3219712739383847,0.3219671201814059,0.326766983016983,0.3291139240506329,0.3314841045011016,0.3323974277692238,0.3340721975934135,0.3363329583802025,0.3386119108955902,0.3381597384399813,0.3386187455954897,0.340142230292026,0.3406902086677367,0.3494271685761047,0.3488372093023256,0.0,1.946948803009404,53.73596849583891,172.9795404613688,246.5657653426623,fqhc8_100Compliance_implementation_low_initial_treat_cost,2 -100000,95657,44985,426.7539228702552,5818,59.41018430433738,4546,46.86536270215458,1787,18.304985521185067,77.2498286400838,79.64879441400028,63.26585613190741,65.03915466609308,77.02075760449137,79.41994259284995,63.18105988111283,64.95658766723311,0.2290710355924403,228.8518211503288,0.0847962507945823,82.5669988599742,157.52352,110.8384824866545,164675.3713789895,115870.7491209786,395.69342,261.397946367884,412997.3342254096,272604.6043341146,378.75785,184.35644502700876,391538.7164556697,189445.2409686494,2979.18006,1366.2408391957267,3075524.028560377,1389670.923877278,1101.25254,490.21262680914896,1134631.1613368597,495976.4943562312,1756.71454,738.6822337814224,1802243.6831596224,743319.7364494185,0.37952,100000,0,716016,7485.244153590433,0,0.0,0,0.0,34214,356.994260744117,0,0.0,34636,357.6633178962334,1570871,0,56388,0,0,0,0,0,61,0.6272410801091399,0,0.0,0,0.0,0,0.0,0.05818,0.1532989038785834,0.3071502234444826,0.01787,0.334155161078238,0.665844838921762,24.49875387222192,4.357902079370934,0.3286405631324241,0.2322921249450066,0.2135943686757589,0.2254729432468104,11.240121535726985,5.85780643772882,19.000572343622327,12089.929221575563,51.755162911115534,12.702786735943947,16.92954224456177,10.871953385067744,11.250880545542064,0.5657721073471184,0.7926136363636364,0.6934404283801874,0.5746652935118435,0.1375609756097561,0.7520661157024794,0.9316455696202532,0.896640826873385,0.7216981132075472,0.1944444444444444,0.4982014388489209,0.7095310136157338,0.6224028906955736,0.5335968379446641,0.1223733003708281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400461931196,0.0045230054661433,0.0069528323910638,0.0092968908758382,0.011667056585733,0.0139429246532092,0.0160908757188889,0.0183897483024455,0.0206792869634584,0.022695616550594,0.0249251220612973,0.0267696637869931,0.0291405992756009,0.0309208220815897,0.0328109190774122,0.0347916020270969,0.0368263442030111,0.0388073337347646,0.0408023137263061,0.0425702727500208,0.0575679374797571,0.0714151081698046,0.0845034947421447,0.0971580686230153,0.1089161152794926,0.1252791212047453,0.136487203992779,0.1474471690271428,0.1585326714878685,0.1682746024924795,0.1809245311522109,0.1925713046307341,0.2038014438071143,0.214239489300091,0.2233419057184799,0.2335281438190262,0.2431379572829445,0.2516781173497591,0.2597056714583262,0.2671109323835238,0.2743697820508354,0.2812933079651422,0.2878910335647047,0.2934199446649825,0.2991273826354019,0.304433838621133,0.3093319273932364,0.3139263137730668,0.3179792941298728,0.3227954512358182,0.3206382231349131,0.3195860641600552,0.3194880054251081,0.3182747372236317,0.3175606193832993,0.3156538148790254,0.3128655434214071,0.3140615490895932,0.3144397843019772,0.3152756131205102,0.3175375939849624,0.318830525272547,0.3199874095058231,0.3213917178877473,0.3215043906204767,0.3227823368503321,0.3233437588854137,0.3265056844874565,0.3294191654434892,0.3310511318663923,0.334872770080594,0.338112053971433,0.3390318742563717,0.3439490445859872,0.3449757190885319,0.3510175273497236,0.3538274235276213,0.3534675615212528,0.353344298245614,0.3474320241691843,0.0,2.5154389754445114,52.68479767675512,174.69605308179172,246.6402608556288,fqhc8_100Compliance_implementation_low_initial_treat_cost,3 -100000,95747,45608,433.0997315842794,6151,63.03069547870952,4792,49.484579151305,1887,19.353086780786864,77.32698317968122,79.68674739259693,63.31555014592704,65.06122821940872,77.08580726376056,79.44512492703902,63.22647684739052,64.97423515733851,0.2411759159206639,241.62246555791,0.089073298536519,86.9930620702064,158.08452,111.23378826177424,165106.49942034736,116174.69817516398,399.13276,262.2906019753768,416315.7174637325,273395.14760292944,384.33652,186.9417719039338,397447.52315999457,192185.37818106168,3161.48374,1440.5134843916944,3267711.009222221,1470296.7240662323,1173.02415,521.6930576760276,1212061.68339478,531799.0199964775,1854.27588,778.8680877687858,1904137.153122291,787077.4007610289,0.38399,100000,0,718566,7504.840882743062,0,0.0,0,0.0,34541,360.1888309816496,0,0.0,35108,362.6849927412869,1572054,0,56465,0,0,0,0,0,56,0.5848747219234023,0,0.0,0,0.0,0,0.0,0.06151,0.1601864631891455,0.3067793854657779,0.01887,0.3373531230674088,0.6626468769325912,24.49607561869388,4.320726345558761,0.3236644407345576,0.2257929883138564,0.2230801335559265,0.2274624373956594,11.006416224185765,5.719907351123438,20.20516025387045,12265.123071307062,54.33756675052933,12.941299845057417,17.62564862190551,11.740254449028903,12.030363834537493,0.5546744574290484,0.7763401109057301,0.6982591876208898,0.5594013096351731,0.1256880733944954,0.7148562300319489,0.9037433155080212,0.875609756097561,0.7027027027027027,0.1707317073170731,0.4980225988700565,0.7090395480225988,0.6345311130587205,0.5218417945690673,0.1125592417061611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605693733853,0.00439050110523,0.0065667945516919,0.0089503413524057,0.0110958555809814,0.0132885290972964,0.0154280703185544,0.0174142049282404,0.0197150566207432,0.0216476801670402,0.0237570589621916,0.0261042733814426,0.0282366243511332,0.0305301852404831,0.0325242668372136,0.0344286009506096,0.0365036803909186,0.0384515647204041,0.040399526056499,0.0422652595609913,0.0578151751785192,0.0718829117234741,0.0859700991801388,0.0989309028982307,0.1110361547380626,0.126798684753074,0.1391437146705412,0.1502166483908401,0.161000374071501,0.1704157633776213,0.1828057809822496,0.1951594563863771,0.2074139356748052,0.2176762096465414,0.2276940011007154,0.2376091678858004,0.2477799001373948,0.2569964525029563,0.2649521191398484,0.2727731169486086,0.2804748118123914,0.2863300420487953,0.2926953574095364,0.2987661433578184,0.304399654547445,0.3099832214765101,0.3153448967315019,0.3202028180497872,0.3238603951667271,0.3281087005321467,0.3267192025324981,0.3252567526638949,0.3240295878830574,0.3227182668807034,0.3218635221341581,0.3198594833404921,0.3188807863031072,0.3194932798790706,0.3205231216343277,0.3209438370579108,0.3216867018687039,0.320947882285511,0.3224051749485445,0.3229588526167409,0.3233249127872007,0.3243066969293783,0.3254807007548782,0.3305992897771911,0.3339292599992989,0.3371089108910891,0.3396740364098606,0.3406157426999577,0.3459778042510502,0.3490187163749337,0.3511285941743935,0.352760736196319,0.3554097359987792,0.3558603994351422,0.3631331303625795,0.3722910216718266,0.0,2.2408843960942657,54.99473057592608,184.74826317514731,260.4024995007116,fqhc8_100Compliance_implementation_low_initial_treat_cost,4 -100000,95766,45186,427.89716600881314,5940,60.87755570870664,4677,48.32612827099388,1844,18.93156234989453,77.39144353273707,79.73248426847537,63.36142006586866,65.08822787484374,77.16194671281818,79.50352614457464,63.27688171037461,65.00649937209046,0.2294968199188929,228.958123900739,0.0845383554940468,81.72850275327903,158.20486,111.29240179370746,165199.40271077416,116212.85403348524,400.13016,263.0208762637151,417308.3766681286,274137.22643079504,383.49734,186.14537796489412,397691.3205104108,192145.97644644385,3061.50997,1395.2199967265117,3164589.301004532,1424629.426650911,1128.58285,494.7160054121072,1166905.6345675918,505074.4652132773,1811.40086,757.9971938019991,1861235.6368648584,764168.5528751424,0.3811,100000,0,719113,7509.063759580644,0,0.0,0,0.0,34444,359.135810204039,0,0.0,35139,364.17935384165565,1576459,0,56586,0,0,0,0,0,70,0.7309483532777812,0,0.0,2,0.0208842386650794,0,0.0,0.0594,0.1558646024665442,0.3104377104377104,0.01844,0.330814981514226,0.6691850184857739,24.710580080454243,4.291032781813511,0.3155869146889031,0.2398973701090442,0.2206542655548428,0.2238614496472097,10.805559260396157,5.569407319914315,19.600708721059053,12101.19373031347,53.12142223924979,13.486289197865233,16.661231585668915,11.41454660105002,11.559354854665614,0.5655334616206971,0.7985739750445633,0.6849593495934959,0.5920542635658915,0.1212989493791786,0.738673139158576,0.9407582938388626,0.8657534246575342,0.7379912663755459,0.1409090909090909,0.5033420517291485,0.7128571428571429,0.6255625562556255,0.5504358655043586,0.1160822249093107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019743236675846,0.0043880539538088,0.0070006696292688,0.0090898934603548,0.0111437606125001,0.0135575278886084,0.0156409211330752,0.0176607423429306,0.0197570717853895,0.0219059507244004,0.0239344262295081,0.026192405946384,0.0282572955199342,0.0305263374570305,0.0326674088734949,0.0345938910638473,0.0369266434840205,0.0389442024476249,0.0410897675772317,0.0431159307061679,0.0572731827481107,0.07122527989955,0.0845869788716141,0.0966452834157114,0.1087364514360423,0.124846677663579,0.1370095440084835,0.1479085996340581,0.1589889800102511,0.1686300151136741,0.1817183698951583,0.1937126914092914,0.2050292867932319,0.2151634643742695,0.2243971600026377,0.2346127037164068,0.2440117257598894,0.2535632054809906,0.2620172962925182,0.2692285691404775,0.2766690164445934,0.2829783007513525,0.2898542156851153,0.2949692840121187,0.3000946096744457,0.3051245770532144,0.3103086342621517,0.3142421159715157,0.3192196737429011,0.3242687747035573,0.3232708798150587,0.3215369615072989,0.3203666474532904,0.3189732207200715,0.3176712897107634,0.3165649786455156,0.3140905290062004,0.3141183975921351,0.3141047469863107,0.3144404267825653,0.3156534925954355,0.3158175460777148,0.3161379541549679,0.3168520715356895,0.3178500012046161,0.3181284106634638,0.3189556998064002,0.3218622208241585,0.3236721772775237,0.3243694141012909,0.326248574686431,0.3292260094948525,0.3295820952140102,0.3310213414634146,0.3378618945001405,0.3434307854878478,0.349263600841599,0.3458691738347669,0.3465185586561907,0.3434535104364326,0.0,1.9868446310821444,54.32584838526215,180.05295135814606,253.83215385683312,fqhc8_100Compliance_implementation_low_initial_treat_cost,5 -100000,95728,45106,428.077469496908,5862,60.17048303526659,4621,47.69764332274779,1782,18.27051646331272,77.37264048070351,79.7328962317907,63.34029949113111,65.0823297428907,77.14909443040987,79.51038911812522,63.25763375269214,65.00228311782456,0.2235460502936348,222.50711366548612,0.082665738438969,80.0466250661458,157.45312,110.76977981762064,164479.46264415846,115712.83117746178,396.85712,261.19029041502336,413973.5187197058,272253.1932530328,376.61138,183.13898058225703,389638.8517466154,188360.7283354536,3077.97518,1393.8621885397104,3180729.661123182,1421550.0362945856,1126.39568,496.27493083522,1162971.366789236,504940.34829443856,1758.00912,735.6299269916628,1804545.545712853,742681.4533849536,0.38059,100000,0,715696,7476.339211098112,0,0.0,0,0.0,34298,357.66964733411334,0,0.0,34383,355.43414674912253,1578555,0,56657,0,0,0,0,0,65,0.6685609226140733,0,0.0,0,0.0,0,0.0,0.05862,0.1540240153445965,0.3039918116683726,0.01782,0.3356769130150425,0.6643230869849575,24.587469557874197,4.341616119882088,0.3191949794416793,0.2315516122051504,0.2151049556373079,0.2341484527158623,10.856408143119276,5.499976859669673,18.949203545957115,12092.811170213448,52.11658380477542,12.795787392248403,16.595418398795868,11.001414487295628,11.723963526435524,0.5555074659164683,0.7981308411214953,0.7016949152542373,0.5573440643863179,0.1146025878003696,0.7260162601626017,0.9282051282051282,0.8571428571428571,0.7041666666666667,0.1711711711711711,0.4936596874078442,0.7235294117647059,0.6481312670920693,0.5106100795755968,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392405063291,0.0047733422516797,0.0071822027450622,0.0094450763730906,0.0114591912474961,0.0136714375878005,0.0158301394438555,0.0175968644102396,0.0197591691540254,0.0220293178281877,0.0239508679113735,0.0259137577002053,0.0278146240141489,0.0300106077302546,0.031930588368806,0.0339717023057763,0.0358115313337957,0.037889081347951,0.0399110316585943,0.0422455994167274,0.0568851021175291,0.0709831331352278,0.0842446292082997,0.0968375915669108,0.108554261318716,0.1236137980611673,0.1358858779233176,0.147299195505044,0.1581965550014416,0.1689202955274135,0.1819738329833629,0.1943855473820857,0.204791109371262,0.2146622050171686,0.2241292054481043,0.2351689986373757,0.2444280755795136,0.2527581393254379,0.2605742583253828,0.2691271397287288,0.2762955332029215,0.2829139847864248,0.2899319953557804,0.294936405087593,0.3012727781087028,0.3064012923433588,0.3110165247871808,0.315551824576131,0.3200367575683056,0.32346076246489,0.3221866508837535,0.3211079799298921,0.319286689467832,0.3177275878003697,0.3164570121634265,0.3141659271046914,0.3123389862654296,0.3129355436404479,0.3141659995571528,0.3147713533888059,0.3142787869745235,0.3144188973900045,0.3171215569987679,0.3181231358233539,0.3184984798065643,0.3206613283578222,0.3213416360033965,0.324663984781863,0.3273169883498522,0.3316200415898301,0.3327174402884182,0.3337899783971758,0.3385579937304075,0.3395897979262847,0.3410823879486702,0.3422415822933836,0.3449429657794677,0.350422195416164,0.3552091878589007,0.3583902809415338,0.0,2.188172754397959,53.875763283053736,169.69852076027075,255.10461603505493,fqhc8_100Compliance_implementation_low_initial_treat_cost,6 -100000,95741,45008,426.8808556417836,6133,62.88841771028086,4827,49.81147052986704,1923,19.68853469255596,77.33281654085012,79.69967294794753,63.319784280511655,65.07138061078125,77.09659031765555,79.462773449735,63.23330665523937,64.98675467105669,0.2362262231945635,236.8994982125372,0.0864776252722876,84.62593972456034,158.6662,111.60304919171138,165724.40229368818,116567.66609050604,401.51159,263.6074181113252,418769.1271242206,274732.1300385174,383.9917,186.0430550707908,396908.534483659,191131.1507449837,3180.13694,1440.9714117807723,3283542.484411068,1467202.720930986,1186.80202,515.9956897842055,1223497.4044557714,522922.800974394,1882.17546,781.2068718481175,1928980.833707607,785254.2926607094,0.38044,100000,0,721210,7532.927376985826,0,0.0,0,0.0,34656,361.3603367418347,0,0.0,35083,362.31081772699264,1572638,0,56448,0,0,0,0,0,80,0.8355876792596694,0,0.0,0,0.0,0,0.0,0.06133,0.1612080748606876,0.3135496494374694,0.01923,0.3285405071119356,0.6714594928880643,24.456515874063903,4.380746063639741,0.3188315724052206,0.2345141910089082,0.2233271182929355,0.2233271182929355,11.23842548607054,5.789202550484724,20.376598181722304,12174.487267485069,54.58794520076878,13.592264973415292,17.34390794659595,11.918384855685623,11.73338742507191,0.5628754920240315,0.7782685512367491,0.6952566601689408,0.5714285714285714,0.1391465677179963,0.7282010997643362,0.8990147783251231,0.8765432098765432,0.6904761904761905,0.1571428571428571,0.5036578503095104,0.7107438016528925,0.6305114638447972,0.5351089588377724,0.1347926267281106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582952507371,0.0044830768918685,0.0067722611432632,0.0089753102733251,0.0112827086639807,0.0133739406779661,0.0155620595763774,0.0177131189382337,0.0199177930921658,0.0222913957465108,0.0244725132768767,0.026481430140981,0.0285737787511438,0.0306999927910114,0.0327163550823325,0.034522320644141,0.0365878917172386,0.038686646465485,0.0405718741876787,0.042450127610813,0.0570611324536495,0.0712126125937627,0.0839939599848999,0.0965612220224766,0.1089245623096139,0.1247383001670649,0.137365317722915,0.1486578538433701,0.1597099096404844,0.1692672307477828,0.1819424855460212,0.1938746808602709,0.2060000434943348,0.2167320747291669,0.2265688581923762,0.2372975187395506,0.247081798906372,0.2560691494749637,0.2645456402805838,0.2722067630858726,0.279034236903632,0.2858397031453019,0.2920427356501551,0.2978396911789387,0.3022639720983363,0.3075262716463565,0.3117932148626817,0.3166656061088132,0.3209028713589717,0.3249412199825641,0.3236062835125158,0.322319056076439,0.3211768354573136,0.3194257709155571,0.3179220856522127,0.317157260844915,0.3142558515187026,0.3148746902131989,0.3153923627114594,0.3158439149664717,0.316077314953551,0.3160007911392405,0.317151832460733,0.3184773138529589,0.3190885929913954,0.3218624537254289,0.3236661248467219,0.326525474399723,0.3308154446123036,0.3337707786526684,0.3363868380275271,0.3389343826438371,0.342668344870988,0.3442224416926233,0.3483587393621996,0.3530177514792899,0.3566732915456352,0.3583686654552796,0.3533461856237951,0.3534383403764887,0.0,2.34125161597185,55.74446212064723,179.48400975572187,267.5771371153211,fqhc8_100Compliance_implementation_low_initial_treat_cost,7 -100000,95784,45139,427.2947465129875,5978,61.30460202121439,4645,47.962081349703496,1865,19.147247974609535,77.34910350822409,79.6772860193458,63.34642956891118,65.06641971395695,77.117455909127,79.44784506020227,63.259951618280105,64.98339616027931,0.2316475990970872,229.44095914353116,0.0864779506310711,83.02355367763425,159.05318,111.8913663925634,166053.78768896684,116816.11374818694,396.9272,260.4667637974941,413837.5511567694,271371.6600064697,379.25887,183.99772941843145,392464.39906456193,189469.199219048,3049.03218,1392.4457724283589,3150065.3240624736,1420664.786401424,1104.46459,485.5979653030978,1139492.7336507142,493502.3824138931,1825.54844,767.786248914707,1875362.67017456,773893.4567230169,0.3807,100000,0,722969,7547.899440407583,0,0.0,0,0.0,34283,357.34569447924497,0,0.0,34563,357.4292157354046,1573413,0,56511,0,0,0,0,0,74,0.7725716194771569,0,0.0,0,0.0,0,0.0,0.05978,0.1570265300761754,0.31197724991636,0.01865,0.3356241010068723,0.6643758989931277,24.42595630086528,4.352793568812332,0.3145317545748116,0.2378902045209903,0.2260495156081808,0.2215285252960172,11.157383087247943,5.727891905296782,19.945193455360947,12044.56673420772,52.88284586462984,13.181810120939158,16.588360345680844,11.69344258354957,11.419232814460266,0.5646932185145318,0.779185520361991,0.7118412046543463,0.5619047619047619,0.1282798833819242,0.720125786163522,0.9022556390977444,0.8830845771144279,0.6929460580912863,0.1478260869565217,0.5060776756596501,0.7096317280453258,0.6468366383380547,0.522867737948084,0.1226533166458072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.0045003496893339,0.006786986030374,0.008877512671278,0.0111542685158823,0.0132537969787043,0.0153182902219776,0.0176965862121753,0.0199245930785028,0.0221708392588575,0.0243415188861911,0.0264851053349888,0.0284260829351009,0.0307131755817903,0.0329614813592873,0.0349418496560556,0.0368473334575029,0.0388013272501036,0.040981306954561,0.0430381855859045,0.0571986141258974,0.0708174706103836,0.084339875859755,0.0966443517282692,0.1092353734614736,0.1241968890016062,0.1365539315958495,0.1475144877452283,0.1578683398960634,0.1675433615804077,0.1795738269479121,0.1910580094069308,0.2019177456703956,0.2126026438654231,0.2219043951812531,0.2324296188008062,0.2416890783497561,0.2504216041193533,0.2590613620120477,0.2665346489320299,0.2745723901051243,0.281478102189781,0.2884360503644798,0.2929921042857314,0.2984797338319936,0.3037763996597171,0.3080486247605694,0.312736299408058,0.3168543986312201,0.3210321864594894,0.320905782450465,0.3197547871607659,0.3181357078449053,0.3161811455985203,0.3153237420753344,0.3133538329738247,0.3118002403694098,0.3129028554558725,0.3133742749914704,0.3144305062365054,0.3146096849038245,0.3161899867570613,0.3168924152657693,0.3179885417599141,0.319854447309444,0.3209021534601714,0.3231965245226935,0.3272888102609464,0.3302671459787129,0.3339714445242083,0.3374748766672757,0.3403383698659289,0.3429605179636917,0.3473337923647769,0.3502605400284225,0.3549045503661904,0.3563343153977361,0.3582516339869281,0.3637368711995578,0.3732809430255402,0.0,1.9743956958823288,56.16621435639101,172.87233501015,252.3884428328608,fqhc8_100Compliance_implementation_low_initial_treat_cost,8 -100000,95668,45164,428.1682485261529,5996,61.48346364510599,4715,48.72057532299201,1854,19.024125099301752,77.31532774038504,79.70771042064902,63.31028192710126,65.07635761495574,77.0852727706859,79.47807122771562,63.22429117792413,64.99250808352832,0.2300549696991396,229.63919293340496,0.0859907491771281,83.84953142741836,157.82668,111.0711565786857,164973.09445164527,116100.42625603714,399.59633,262.8712437802101,417110.9461889033,274195.56194594863,383.91973,186.69717566533856,397761.8221348832,192341.53982255692,3105.02417,1424.4503289788747,3210065.016515449,1453481.4976619645,1132.82885,505.5485599796284,1167115.8799180498,511651.4836305857,1820.54432,767.7402275986524,1869990.550654346,775627.0038440699,0.37917,100000,0,717394,7498.77702052933,0,0.0,0,0.0,34533,360.371284023916,0,0.0,34966,361.9183007902329,1574017,0,56478,0,0,0,0,0,73,0.7630555671697955,0,0.0,1,0.0104528159886273,0,0.0,0.05996,0.1581348735395732,0.3092061374249499,0.01854,0.3263157894736842,0.6736842105263158,24.362121154082377,4.345718321870092,0.3278897136797455,0.2362672322375397,0.2139978791092258,0.2218451749734888,11.073312253330146,5.722609812394236,19.74526636434385,12108.331872191244,53.31926690594969,13.468990601986803,17.237884936227072,11.086324915000471,11.52606645273534,0.5556733828207847,0.7854578096947935,0.6694695989650712,0.5659068384539148,0.132887189292543,0.7258687258687259,0.8909512761020881,0.8836633663366337,0.71875,0.1610169491525423,0.4912280701754385,0.718887262079063,0.5936952714535902,0.5222929936305732,0.1246913580246913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0046837932642592,0.0070023747183827,0.0095300022351817,0.011566162109375,0.0135879806468041,0.0159418220390844,0.0181400337061437,0.0203405430280717,0.022518278821144,0.0247266834861444,0.0268307464740988,0.0290719804129332,0.0311282843894899,0.0331437536771916,0.0351015089305105,0.0368440138838522,0.0390447426596506,0.0408783116113127,0.0429906931663036,0.0574198671068577,0.0716260077478798,0.0846443677123455,0.0967623136252196,0.1088833076549671,0.1241386610214342,0.1358390401868662,0.1470657151986367,0.1576146200705354,0.1676255286263229,0.1808109331551378,0.1932605682605682,0.2044175438978456,0.2142630432641268,0.224053044905332,0.2346181576174366,0.2438114387846291,0.2534694474771236,0.2626068788536001,0.270042871225842,0.2759986564899642,0.2825486385877835,0.2887254727817447,0.2936651746606986,0.2993802406124681,0.3048350510380196,0.3102593320727783,0.3148096304591265,0.318932705005049,0.32361793125297,0.3221240606566649,0.3201619121048573,0.3195212953185498,0.3184860707521938,0.317355838521314,0.3155929038281979,0.3140073698027866,0.3142810350474943,0.3151252622064566,0.3162246934702024,0.3172412505135771,0.3189748644652538,0.3194935649262321,0.3199240562876926,0.3211101766190076,0.3214034722402977,0.3226404863152487,0.3242646130539073,0.3260264317180616,0.329423966810276,0.3335618003198538,0.3362587096431041,0.3409450313112784,0.3409143296196696,0.3426699582225598,0.3413438546150167,0.3408467864757843,0.3455382152861144,0.3461327482172243,0.3546423135464231,0.0,2.0644661795572445,56.84130502598517,165.94060822003033,264.95656056024905,fqhc8_100Compliance_implementation_low_initial_treat_cost,9 -100000,95626,45229,427.9066362704704,5990,61.36406416664924,4732,48.898835044862274,1804,18.457323322109048,77.3146043072854,79.73380306282334,63.296484254502126,65.0830036591465,77.08993867198406,79.51168200635675,63.211894966693286,65.00200025244955,0.2246656353013492,222.12105646659097,0.0845892878088392,81.00340669695072,157.84362,110.97494745821348,165063.49737519084,116051.01903061249,398.05577,261.7475791258666,415703.0514713572,273160.02878491895,380.12929,184.9969978270412,394244.3059418986,190901.91603947515,3086.24452,1413.4132065994525,3193992.637985485,1444644.8524454152,1119.01655,495.3484943157094,1158698.722104867,506503.6541481493,1768.08448,745.1980032594338,1812346.0146821996,748350.0128182353,0.38194,100000,0,717471,7502.886244326856,0,0.0,0,0.0,34421,359.3687909146048,0,0.0,34797,360.5086482755736,1574783,0,56493,0,0,0,0,0,61,0.6379018258632589,0,0.0,0,0.0,0,0.0,0.0599,0.1568309158506571,0.3011686143572621,0.01804,0.3449210652208579,0.655078934779142,24.749162520082518,4.349110033458084,0.3150887573964497,0.239222316145393,0.2311918850380389,0.2144970414201183,11.436488392628313,6.056053837989633,19.196216615174134,12226.455523204064,53.59746948895006,13.629487587450312,16.87871819406229,12.1040883868675,10.985175320569969,0.5720625528317836,0.7932862190812721,0.7189805499664654,0.5639853747714808,0.1182266009852216,0.7420604182804028,0.9270588235294116,0.8787878787878788,0.7261904761904762,0.1513761467889908,0.5082824760244115,0.7128712871287128,0.6611872146118721,0.5154394299287411,0.1091593475533249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0046445122755067,0.0069232955699029,0.0094802621551592,0.011688232421875,0.0139132206151965,0.0162789037239522,0.0184390642557973,0.020752574894396,0.0231641253033763,0.0252923076923076,0.0272727272727272,0.029350945958458,0.0313952170463561,0.0335679927331282,0.0357131778938117,0.0376218747733465,0.0399705152562784,0.0419098750403179,0.0441480152687678,0.0594844886696212,0.072773174385351,0.0859315110210339,0.0985504805414907,0.110790926459567,0.1261647606946209,0.1377706018567695,0.147943687188942,0.1595365704932764,0.1705126552361308,0.1828431478324666,0.195376010752455,0.2056660310542086,0.2156394469884533,0.2253072471755304,0.2356473003717884,0.2451693655636392,0.2539095948442922,0.262140665833428,0.2699255622971314,0.2783605418548107,0.2854886452714956,0.2921470678756599,0.2972930852594226,0.3027510683760683,0.308005026239929,0.3119559779889945,0.3167435770311328,0.3220093403536915,0.3259338398227287,0.3239521925220059,0.3225349595060982,0.3216977278169857,0.3202394205329131,0.319083742376915,0.3173861058311362,0.3166069673820014,0.3172999391136928,0.3180174467428747,0.3181850686498856,0.3201878285596692,0.3224288947938195,0.3233540424467331,0.3239860124284473,0.3250143430866322,0.3265886979921341,0.327985285795133,0.3320456103183999,0.3359668662118892,0.3375221587551704,0.3410545290671473,0.3431790659716737,0.3463304194704735,0.350340651021953,0.3554205607476635,0.3548578903555714,0.3569002778635381,0.3600731112916328,0.3576881134133042,0.3576107899807322,0.0,2.318799196205147,56.54561642146685,174.19851910413507,257.39592837526953,fqhc8_100Compliance_implementation_low_initial_treat_cost,10 -100000,95634,45149,429.2615596963423,6046,61.89221406612711,4753,48.99930986887509,1921,19.64782399565008,77.29129418892526,79.69085431204421,63.29829466637945,65.06968612735855,77.05145082904704,79.45368626363091,63.20968875586931,64.9846777520637,0.2398433598782219,237.1680484132952,0.0886059105101395,85.00837529484784,158.6937,111.67487411489908,165938.34828617438,116772.96161919308,398.33636,261.2853534849285,415821.1096471966,272513.2834399153,377.88139,183.79161852448777,390294.9474036431,188516.6174701361,3137.66699,1434.9387174492103,3238052.6486396054,1457589.3484003711,1105.74069,487.2202122652015,1136797.2687537903,490042.1281655195,1885.6898,792.2492329461113,1931332.6432022084,794737.6749592765,0.38185,100000,0,721335,7542.652194826108,0,0.0,0,0.0,34403,358.9936633414894,0,0.0,34505,355.9508124725516,1570928,0,56341,0,0,0,0,0,81,0.846979107848673,0,0.0,0,0.0,0,0.0,0.06046,0.158334424512243,0.317730731061859,0.01921,0.3322804801010739,0.6677195198989261,24.26846768291635,4.324478427872366,0.3256890385019987,0.229118451504313,0.2158636650536503,0.2293288449400378,10.95784441185143,5.640176045611485,20.46482121110574,12161.518372788589,54.07538863676707,13.095045994052686,17.469080242891966,11.490636102643624,12.020626297178769,0.5543867031348622,0.8025711662075299,0.6802325581395349,0.5799220272904484,0.1036697247706422,0.7221337579617835,0.9114583333333334,0.883495145631068,0.7330508474576272,0.0892857142857142,0.4941378324277952,0.7432624113475177,0.6065140845070423,0.5341772151898734,0.1073903002309468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271638827831,0.0045320896279022,0.0064654953665641,0.0086881414490397,0.0111304418602285,0.0133116056424097,0.0156310541020046,0.0175220046153531,0.019865450678881,0.0220957139639178,0.024099597998195,0.0262617340755499,0.0283007221776433,0.0302849193673038,0.0321784733549439,0.0339249513880269,0.0359408033826638,0.0377007818421571,0.039725314743523,0.0418256500072976,0.0567747194181453,0.0700205295793531,0.08348295376991,0.0959824012967465,0.1086449461208033,0.1240063929550482,0.1363298583834051,0.1485300383468257,0.1597032158741019,0.1703365720113801,0.1831326080627945,0.1948132106118029,0.2064502786485545,0.215881844159541,0.2254025636221357,0.2354846222951765,0.2452990402556339,0.2542525526573529,0.2631357856494096,0.2709281138626909,0.2780639709202042,0.2840661783633257,0.2906240007579436,0.2962634199004378,0.3022622233033325,0.3079590753699384,0.3121616202125526,0.3163782778216661,0.3206602782712431,0.3260106144218836,0.3256286957341631,0.3245417108543253,0.3232589625701633,0.3215339659761602,0.3209683659197095,0.3187589234997006,0.316043272738809,0.3158960679707567,0.3154277291191745,0.3166436773372982,0.3175453434827553,0.3181962464785938,0.3191337258200168,0.320478037624162,0.3205686382988959,0.3215663781416206,0.3229829545454545,0.3265728996609318,0.3293873823240129,0.3335984727966911,0.3375433157030822,0.3394013374376393,0.3415127751075132,0.3446236559139785,0.347375427919361,0.3495122244971697,0.3501326259946949,0.359086188992731,0.3560606060606061,0.3585488228483211,0.0,2.687336257612939,54.74670561957443,180.3637162409369,261.8039778749154,fqhc8_100Compliance_implementation_low_initial_treat_cost,11 -100000,95633,45203,429.5170077274581,5975,61.35957253249401,4611,47.66137212050234,1776,18.16318634780881,77.27514686010801,79.68642080981198,63.27600815666828,65.05668286304697,77.05253075988675,79.46723153540961,63.19326215883896,64.97774828316244,0.2226161002212592,219.1892744023676,0.0827459978293276,78.93457988453179,159.09366,111.91429318410012,166358.3072788682,117024.55469977944,400.1785,262.5582340638002,417828.3333159056,273928.2168897228,381.80985,185.0056398369672,396421.69543985865,191242.10556525856,3010.8789,1363.4037385698675,3113448.11937302,1391124.234988569,1075.17039,470.2235138928434,1110350.7262137546,478019.7577131788,1740.86822,729.6637521531467,1782545.1674631145,731027.0951209685,0.38054,100000,0,723153,7561.741239948554,0,0.0,0,0.0,34463,359.72938211705167,0,0.0,34781,360.8691560444617,1566173,0,56217,0,0,0,0,0,77,0.8051613982621062,0,0.0,1,0.0104566415358715,0,0.0,0.05975,0.1570137173490303,0.2972384937238493,0.01776,0.3346607199745142,0.6653392800254858,24.789559564258013,4.353910773389833,0.328562134027326,0.2303188028627195,0.2233788765994361,0.2177401865105183,10.928979741224106,5.504302558493968,18.8209650895432,12149.736761108335,52.10597421304339,12.744261034828172,16.975195947446277,11.477600193798224,10.908917036970712,0.5543266102797658,0.7853107344632768,0.6844884488448845,0.5650485436893203,0.1025896414342629,0.7107023411371237,0.900763358778626,0.8364611260053619,0.7368421052631579,0.0792079207920792,0.4995607613469985,0.7174887892376681,0.6348511383537653,0.516209476309227,0.1084788029925187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047434195189686,0.0070214600984222,0.0091620111731843,0.0110965327149381,0.0133412090598012,0.0152547212138516,0.0177639840328327,0.0200995777657366,0.0221985583224115,0.024340209040649,0.0266894043681042,0.0285814231038314,0.0306956512776111,0.0326621230896323,0.0346871637838285,0.036434309406582,0.0385318432969132,0.0405028514340423,0.0423832219174653,0.0569009668147373,0.0712234889764439,0.0845851629304367,0.0967215187206337,0.1091792542516108,0.1253971616183012,0.1371871845279209,0.1483897790143592,0.1595676369863013,0.1690328543639236,0.1811459660182646,0.1934742298224877,0.2055111072355082,0.2153869772134131,0.2255266555578852,0.2356208206518117,0.2445411914807892,0.2536306293090802,0.2623150466651491,0.2704909560723514,0.2776114900923476,0.2842099091175608,0.2909168554787126,0.2961526453565167,0.3014353484977496,0.3060521932259855,0.310447274732989,0.3153371108422996,0.3207087083971049,0.3250287466462246,0.3238574299084326,0.3219388528362198,0.3203145921718417,0.3186220654562276,0.3171478240197317,0.3148352321450447,0.3140805642980278,0.3142318103518989,0.3151825861834037,0.3165183339266643,0.3181962765459818,0.3190620809339749,0.3206347878813222,0.3200901725330893,0.3216591852900933,0.3232357376878673,0.3241269570653255,0.3283197789430715,0.3314732926230083,0.3372245384157236,0.3404081261646139,0.3431804898783274,0.3462335867311679,0.3507948523845571,0.3517630465444287,0.3572280534351145,0.3596006144393241,0.3597808441558441,0.3693025809994508,0.3571156047310187,0.0,1.9299047325672327,52.69203253229807,171.3596997439342,259.13089676796704,fqhc8_100Compliance_implementation_low_initial_treat_cost,12 -100000,95675,44901,425.62842957930496,5977,61.02952704468253,4718,48.63339430363209,1874,19.14815782597335,77.28391542799022,79.68088141943988,63.28504443165552,65.0592710461108,77.04335798009286,79.44590770230754,63.19363876262429,64.97375009296884,0.2405574478973591,234.97371713234827,0.0914056690312321,85.52095314195185,156.62878,110.20695032317197,163709.20303109486,115188.86890323696,396.50715,261.024748014938,413766.6684086752,272159.76798007626,382.12277,186.2030606274896,395510.1123595506,191568.5022831133,3099.27621,1442.511603972629,3197080.533054612,1465421.6817064325,1113.05262,503.7664391229729,1141872.8194408151,505047.9252120451,1834.16586,785.6952438499752,1875731.9675986413,782736.1303133132,0.37951,100000,0,711949,7441.327410504312,0,0.0,0,0.0,34244,357.21975437679646,0,0.0,34979,361.7350405016985,1578699,0,56719,0,0,0,0,0,74,0.7629997386987196,0,0.0,1,0.0104520512150509,0,0.0,0.05977,0.1574925561908777,0.3135352183369583,0.01874,0.3376934120274366,0.6623065879725634,24.39733264059945,4.367001652274415,0.3236540907164053,0.2352691818567189,0.221704111911827,0.2193726155150487,11.278623400747293,5.785695459809493,20.221506855577985,12075.485872651414,53.95150160095723,13.425712088447286,17.31972885673917,11.735718605605108,11.470342050165645,0.5671894870707928,0.8063063063063063,0.6836935166994106,0.607074569789675,0.0985507246376811,0.7334851936218679,0.9211136890951276,0.8495145631067961,0.7254901960784313,0.1552511415525114,0.5027932960893855,0.7334315169366715,0.6224215246636772,0.5689001264222503,0.0833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0044729795520934,0.0067717798511629,0.0091259235170374,0.0116602057324257,0.0139352945970173,0.0158396654597378,0.0179352044776729,0.0197801073894144,0.0219631625315003,0.0244988407164987,0.0267459901564892,0.028689325883164,0.0307330798008842,0.0328681146254851,0.0346147084070201,0.0367653154273398,0.0387102801797967,0.0408405284510558,0.0427028829918075,0.0572171787344734,0.0711862632185111,0.0850563613845798,0.0974955277280858,0.1096556965231893,0.1247419515345282,0.1360619351549971,0.1476242717309105,0.1579431259354287,0.1686167586251315,0.1816329610624811,0.1942358740993553,0.2055082438525036,0.2151721267483762,0.2249032727433062,0.2353692251324014,0.2451410167520297,0.2530436939171213,0.2614706016097494,0.2690687933903264,0.2758944621629458,0.2825495484930221,0.2887947403398841,0.2942490631305852,0.298372073201914,0.3034148991333119,0.3076122789205179,0.3127777990040627,0.3165262475696694,0.320599804641094,0.3200770847932726,0.3182606541129831,0.3166575118660301,0.3161626664356063,0.3147795561373237,0.3130989435593922,0.3113013155809161,0.3126230799527373,0.3129329661495305,0.314101303391679,0.3146763833064122,0.3162584844996626,0.3172442852628252,0.3175859510264655,0.3184338603840286,0.3180425732464064,0.3182427613749822,0.3221402446714592,0.3258970851310112,0.3304712539073319,0.3325907065563335,0.3331569478251667,0.3364322705434579,0.3388281132923722,0.3433790801186943,0.3493664946034725,0.3529322394408994,0.3573730862207896,0.3592017738359201,0.3574159021406727,0.0,2.6660536936928545,57.25250329892021,179.63455540390575,249.9779923429665,fqhc8_100Compliance_implementation_low_initial_treat_cost,13 -100000,95649,45196,428.5774027956382,5980,61.26566926993487,4684,48.29114784263296,1850,18.92335518405838,77.35161970545354,79.75788709332065,63.31721993396855,65.09436873789836,77.11912374421033,79.52834810517412,63.230565348076055,65.01148803223494,0.2324959612432167,229.53898814652973,0.0866545858924965,82.88070566342753,158.9489,111.78554589897077,166179.36413344624,116870.5850547008,400.37498,263.4974642009135,417916.86269589857,274812.8931833197,385.91225,187.73694800631176,399298.24671455007,192971.9752791524,3051.57021,1406.0315479602937,3148602.442262857,1428251.0661484108,1097.47027,490.3536210432393,1128851.2791560811,494157.1250475321,1811.1978,768.0232246051104,1854244.874489017,768820.7336811731,0.38014,100000,0,722495,7553.607460611193,0,0.0,0,0.0,34525,360.26513607042415,0,0.0,35217,364.0184424301352,1568708,0,56300,0,0,0,0,0,72,0.7527522504155819,0,0.0,1,0.010454892366883,0,0.0,0.0598,0.1573104645656863,0.3093645484949833,0.0185,0.3291220214297137,0.6708779785702863,24.60128088718532,4.324909038506131,0.3234415029888984,0.2365499573014517,0.2239538855678907,0.2160546541417591,11.128841104606854,5.84330158114664,19.716618177328595,12114.237654487431,53.24987391284476,13.230243284155089,17.159662244734825,11.593277785875022,11.266690598079828,0.5640478223740393,0.7870036101083032,0.6831683168316832,0.5853193517635844,0.1195652173913043,0.734789391575663,0.927570093457944,0.8658227848101265,0.7442922374429224,0.1666666666666666,0.4997060552616108,0.6985294117647058,0.61875,0.5433734939759036,0.1049222797927461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023201386004194,0.0045733407696597,0.0067793857957659,0.0090221897098268,0.0110569734205413,0.0136993277653289,0.0160811706521184,0.0181964852804525,0.0203680981595092,0.0225340571545631,0.0244680632784127,0.0265326674476437,0.0285570214254841,0.0305673254363447,0.0325466095129886,0.0346069089667587,0.0365760126031259,0.038606872210111,0.0406891457464185,0.0429900110524889,0.0578856080078573,0.072024625951481,0.0851543967924092,0.0980596418124039,0.1106021909365303,0.1256773920406435,0.1374224921430391,0.1484635635945044,0.1592399619125057,0.169823883161512,0.1823014957241915,0.1937231195900635,0.2045894929350547,0.2144929122653385,0.2238265160025551,0.2344664715274081,0.243870549583175,0.25277830948172,0.2617744572622399,0.2695294602767342,0.2771813322844119,0.283490152533458,0.2895732803481881,0.294150050895156,0.2992403097012208,0.3046673066981759,0.3088088338163285,0.3133484881195789,0.3177754812039788,0.3225704545155388,0.3211549318493427,0.3201922416752489,0.3193952180028129,0.3180736102494553,0.3176070760737289,0.3162489870185471,0.3142654028436019,0.3151046361088805,0.3160139192139738,0.3161140819964349,0.3158968408444378,0.3164452154713559,0.3162200046026067,0.3170682775684893,0.3177332822379766,0.3190247698093632,0.3202907604066102,0.3249631649894981,0.3291134813778633,0.3314208839472955,0.333832471186133,0.339022212886625,0.3435299981309576,0.3469957729468599,0.3444227005870841,0.3459940652818991,0.3494326893590923,0.353877139979859,0.3567172264355362,0.3655509590071455,0.0,2.643984671659225,55.92259000052768,174.6186053263231,253.0571465791473,fqhc8_100Compliance_implementation_low_initial_treat_cost,14 -100000,95786,45247,428.100139895183,6031,61.6791597937068,4662,48.04459941953939,1824,18.635291169899567,77.3507064425629,79.67847098141051,63.34838135415546,65.06990474347707,77.12933870775572,79.46232014526379,63.26649981506235,64.99289228145537,0.2213677348071741,216.15083614672412,0.0818815390931035,77.01246202169898,158.24908,111.3544917896701,165210.84500866517,116253.19440384826,399.61385,263.2831960268008,416553.4316079594,274226.3502984427,386.40772,188.61013175361617,399431.8271981292,193859.96737269964,3026.2181,1389.6520218881487,3119668.719854676,1411242.2590065764,1108.12906,489.8751014787728,1140433.9987054474,495133.154130036,1782.94812,736.8696683118706,1822659.804146744,735533.0354112068,0.38137,100000,0,719314,7509.583864030234,0,0.0,0,0.0,34469,359.1756624141315,0,0.0,35284,364.4373916856326,1576109,0,56483,0,0,0,0,0,66,0.6890359760299,0,0.0,0,0.0,0,0.0,0.06031,0.1581403885989983,0.3024374067318852,0.01824,0.3372369045735084,0.6627630954264916,24.615330622738544,4.310603783288127,0.332046332046332,0.2428142428142428,0.2104247104247104,0.2147147147147147,11.728118241336317,6.237793942914951,19.170135655460744,12188.43254916656,53.10752545353911,13.638091303705815,17.46803897291183,11.107728659514455,10.893666517407013,0.5845130845130845,0.8109540636042403,0.7164082687338501,0.5891946992864424,0.1198801198801198,0.7589703588143526,0.9324009324009324,0.8935643564356436,0.7233201581027668,0.1479591836734693,0.5183431952662721,0.7368421052631579,0.6538461538461539,0.5425824175824175,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284348284105,0.0042781832927818,0.0067581965965478,0.0089793596619535,0.011336830974459,0.0133975383550347,0.0158371040723981,0.0180934983825045,0.0204073290617942,0.022687269750307,0.0248478390064963,0.0269452168648737,0.0291763013205898,0.0312220129088045,0.0333683928313638,0.0352276366491389,0.0373121973428252,0.0394148930655912,0.0413222282224899,0.0434542709905783,0.0579746439192361,0.0727751811537375,0.0853845186179134,0.0980851689927694,0.1106567312050084,0.125932894987209,0.1379548033383174,0.1495237588463789,0.1593022386864664,0.1695872587162256,0.1824727953760211,0.1950868926162891,0.2066687671798437,0.2169097165328527,0.2261919157496674,0.2360951327433628,0.2449939269676067,0.2541790239956861,0.2622614568695888,0.270473422877148,0.277618662663125,0.2845049042503503,0.2910208665839097,0.2972067306541563,0.30286344948031,0.3085225524583103,0.3128404377592324,0.3166978026865937,0.3205096694909773,0.3242367568421884,0.3237506716818915,0.3219482036133819,0.3215833005120126,0.319985559566787,0.319431251484208,0.3174785363390111,0.3157220165195101,0.3159105095436775,0.3158038612677259,0.3175733561790533,0.3187704087377547,0.3188061592051617,0.3192204301075269,0.3206369169268084,0.3217942232179422,0.3227071837652658,0.32308836996337,0.3253012048192771,0.3290898190922876,0.3314129052765416,0.3353917936050501,0.3372105488850772,0.3391111111111111,0.3398768283294842,0.342433402607217,0.3390598902409926,0.3412183055040197,0.3454320478449165,0.3456375838926174,0.3440776699029126,0.0,2.311846056625729,55.972732203153,174.56786232581206,252.45931225276485,fqhc8_100Compliance_implementation_low_initial_treat_cost,15 -100000,95731,45051,426.6120692356708,6004,61.48478549268263,4665,48.10354012806719,1910,19.523456351652023,77.31652017658898,79.67736503723141,63.31665033110207,65.06264635617383,77.0790917585253,79.44330328984093,63.22710882201376,64.97709856731494,0.2374284180636863,234.06174739048424,0.0895415090883133,85.54778885888936,156.75792,110.32152372787064,163748.10667390918,115240.9394322326,396.62351,261.033125597264,413673.21975117776,272036.3577078104,377.93104,184.33442269520023,391169.2764099404,189691.3480642049,3095.85794,1414.961989282682,3195396.50687865,1439543.1775315034,1111.28059,493.0381794994085,1146690.3510879443,500927.86512720987,1875.51578,790.8300780888329,1920291.3371844024,793438.3534643996,0.37961,100000,0,712536,7443.095757904964,0,0.0,0,0.0,34297,357.60620906498417,0,0.0,34454,356.2586831851752,1581076,0,56702,0,0,0,0,0,73,0.7625534048531823,0,0.0,0,0.0,0,0.0,0.06004,0.1581623244909249,0.3181212524983344,0.0191,0.3349312879514222,0.6650687120485779,24.695228241634563,4.387307999760144,0.3196141479099678,0.2287245444801715,0.2229367631296891,0.2287245444801715,11.1908632983029,5.738193010614692,20.366791424987223,12131.195479395452,52.733839144230494,12.799292415772872,16.66154395496743,11.678765881941956,11.594236891548224,0.5601286173633441,0.7844423617619494,0.6841046277665996,0.6076923076923076,0.1162136832239925,0.7300955414012739,0.9168704156479216,0.8432432432432433,0.7169117647058824,0.1707317073170731,0.4975066001760047,0.7021276595744681,0.631578947368421,0.5690104166666666,0.1032482598607888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022183729905491,0.0045011709127036,0.0069322506977924,0.009256530883892,0.0114949544270833,0.0137392296254048,0.015777181728249,0.0179324571346874,0.0199895706587867,0.0221551062196058,0.0243417275038963,0.0265633021870828,0.0286895360315893,0.0305102198424548,0.0325635127747578,0.0346534141981877,0.0369224080821464,0.0391046386192017,0.0410178582565851,0.0431118010481022,0.0579882645283885,0.0711878950232305,0.0841933048074502,0.0968104907827074,0.1088086726354308,0.123995091816874,0.1360805491602389,0.147252653656563,0.1575803556163446,0.1679435181012468,0.1805449315334145,0.192516668109793,0.2038416776340834,0.2139263763424397,0.2236804439257481,0.2341210898530161,0.2441979941477361,0.2531255274855117,0.2618531424874289,0.2701600430753015,0.2770192085165471,0.2838191942351785,0.290079318101101,0.2964424507028739,0.3008533294435125,0.3059288049848849,0.3110587822688728,0.3151895671221711,0.3195435647026824,0.3243007685603359,0.3232242940288855,0.3212400237087681,0.3200446252047675,0.3195064017148485,0.31821227054147,0.3162585910652921,0.3146574951659429,0.3147620850272397,0.3154585482019565,0.3168847463703172,0.3176512602672781,0.3178630853339672,0.3174869813539392,0.3187623229969528,0.3204544907440841,0.3241343400156209,0.3257206398083996,0.3300882454542599,0.3360549462101833,0.3386444708680142,0.33992903930131,0.3413804105072849,0.3455243610726425,0.3484354875369346,0.3514095719771471,0.3574230357779627,0.3599448360404536,0.3657454105305628,0.3710033076074972,0.3726016884113584,0.0,2.356431544846594,54.8562957684402,167.19984504027445,262.2718260638693,fqhc8_100Compliance_implementation_low_initial_treat_cost,16 -100000,95689,45617,432.1499858917953,6143,63.03754872555885,4765,49.32646385686965,1894,19.54247614668353,77.40264542862671,79.7823259098586,63.35728834693722,65.11163714390995,77.16574349716255,79.54245975704492,63.27050711015213,65.02546252380778,0.2369019314641605,239.86615281367563,0.0867812367850859,86.17462010217025,158.56434,111.5439449587614,165708.01241522015,116569.24511569916,400.62574,263.23736672586915,418216.472112782,274638.45031912666,390.78135,190.2455623928288,404267.6065169455,195844.25374548257,3132.1654,1421.496069015425,3244941.978701836,1457203.2302724726,1120.2871,496.7077084786162,1158635.025969547,507011.5170966924,1860.6472,776.5288144340288,1920579.8994659784,791640.4696201407,0.38259,100000,0,720747,7532.182382510007,0,0.0,0,0.0,34588,360.97148052545225,0,0.0,35550,367.5448588657004,1572961,0,56461,0,0,0,0,0,73,0.7524375842573338,0,0.0,0,0.0,0,0.0,0.06143,0.1605635275360046,0.3083184111997395,0.01894,0.329397141081417,0.670602858918583,24.434873211133187,4.368169436274652,0.3280167890870933,0.2274921301154249,0.2165792235047219,0.2279118572927597,10.932198689119012,5.479533993420366,20.159076439986944,12186.453788022309,53.8690873480318,12.991819239021956,17.534899543443974,11.485989583855304,11.856378981710565,0.5582371458551941,0.7859778597785978,0.6967370441458733,0.5852713178294574,0.1058931860036832,0.7462211614956245,0.9134615384615384,0.8535980148883374,0.7835497835497836,0.1594202898550724,0.4908779931584949,0.7065868263473054,0.6422413793103449,0.5280898876404494,0.0932878270762229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018126398720012,0.004155391366921,0.0063400284033272,0.0085920599616099,0.0109008450188629,0.0133800378795592,0.0154862520007748,0.0176156601790142,0.0198661284553676,0.0217876294567931,0.024221488755407,0.026281208935611,0.0283364178490643,0.0303816762446188,0.0326454808089145,0.0348826392980062,0.037152856876592,0.0392673688579878,0.0413724246237688,0.0438362446325092,0.0588136974280759,0.0730933534363613,0.0865495603265546,0.0992447511255101,0.1111544708587339,0.1261426153195091,0.1380364192028524,0.1489551952821451,0.1593024374085037,0.1700498632781084,0.1828607733973703,0.1941672979114814,0.2050824788230049,0.2160318362706083,0.2262957585357268,0.2365580684799575,0.2459036493746795,0.2546504313443565,0.2627399898057427,0.2707983217294875,0.277519308250886,0.2840757939934193,0.2905008146206701,0.295845743471968,0.3018053517950459,0.307138638712535,0.3114993813505305,0.316664762412563,0.3210530395018989,0.3255599715737109,0.3244437282627671,0.3229450880921368,0.3211168794724288,0.3202216465169833,0.3187189054726368,0.3171197312156383,0.3149927311800771,0.3153198956915356,0.3160002044536827,0.3169875848310504,0.3175146313644097,0.3183230424352066,0.3196166267319512,0.3213752867036319,0.3234518156089605,0.3252178436727793,0.3260022192505761,0.3298555628661841,0.3328423120089787,0.337998017839445,0.3406272793581327,0.3435432230522945,0.3454591385625868,0.3452453520268211,0.3468442932728647,0.349988215884987,0.3524276305712973,0.3491743858236005,0.3536652078774617,0.3496608892238131,0.0,1.7749176650499938,55.48082253001871,178.60700571979152,262.4216389157232,fqhc8_100Compliance_implementation_low_initial_treat_cost,17 -100000,95721,44802,423.92996312198994,6130,62.66127600004179,4853,50.04126576195401,1960,20.006059276438812,77.33907921770925,79.70411205342472,63.32552877917672,65.07465548732341,77.09162280398839,79.46194479486988,63.23226336854624,64.98643558740517,0.2474564137208688,242.1672585548436,0.0932654106304795,88.21989991824353,157.2879,110.6895889727434,164319.11492775878,115637.72732497928,398.37365,261.30875910477425,415482.2348283031,272290.1548299477,379.04746,184.4476815765241,392135.926285768,189636.10172194857,3195.87916,1464.282562685501,3299534.38639379,1490530.5133518248,1188.29738,529.342238608169,1226816.7068877255,538404.4030130997,1922.27674,816.6321810228021,1966183.6169701528,816961.461408357,0.37793,100000,0,714945,7469.05067853449,0,0.0,0,0.0,34454,359.28375173681843,0,0.0,34692,358.61514192288,1579395,0,56628,0,0,0,0,0,52,0.5223514171393947,0,0.0,1,0.0104470283427878,0,0.0,0.0613,0.1621993490858095,0.3197389885807504,0.0196,0.3299081426124863,0.6700918573875136,24.222166137625663,4.394477389765342,0.3127962085308057,0.2382031732948691,0.2186276529981455,0.2303729651761797,11.306382714841147,5.880729160062912,20.951062621427347,12074.471075028348,54.90316844145149,13.875203891203938,16.90915541173646,11.915763164117957,12.203045974393133,0.5608901710282299,0.7811418685121108,0.6910408432147562,0.6032045240339302,0.1162790697674418,0.7061098221191029,0.8956310679611651,0.8525469168900804,0.7348484848484849,0.1311475409836065,0.5081460674157303,0.717741935483871,0.6384279475982533,0.5595984943538268,0.1121281464530892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193161562145,0.0044105122277649,0.0066177440800625,0.0087790603153958,0.0111390293276909,0.0135045677214351,0.0157446591546423,0.0180502098030607,0.0203071637456798,0.0224400335934779,0.0245520834401632,0.0267966270554522,0.0290847757448602,0.0312686736312872,0.033288948069241,0.0353656518861681,0.0372726142626279,0.0392582138187252,0.0413451739700101,0.0432046673959472,0.0575017489636737,0.0720070312009542,0.0853272380313293,0.0975024975024975,0.1090945521270537,0.1247990183633748,0.1367335462445225,0.1486056243544557,0.1588645205420888,0.1685429433038924,0.1817211833809344,0.1931295147124121,0.2041806766123679,0.2145663474692202,0.2249080457238508,0.2351375923010399,0.2439746252987558,0.2521641245004784,0.2600926388447391,0.2681210092510862,0.2746303565019046,0.2817437097717963,0.288003218706364,0.2939541348158443,0.2985103619079993,0.3038512191219368,0.3083863389275583,0.3126286106241902,0.3172134750122806,0.321388075837882,0.3196917531873688,0.3184306820370319,0.317233406642982,0.3156287979628451,0.3156525101118249,0.3138720796629644,0.3112581732976584,0.3122124359142895,0.312998527951799,0.3127762764643771,0.3131870193209529,0.3140631487376183,0.3154259883222066,0.3149437120923882,0.3163997791275538,0.3190022888056596,0.3210956873699512,0.3252633233768275,0.3272688957572351,0.3316758820955487,0.3346720825156314,0.3357360243472689,0.3391701560715645,0.3412667946257198,0.3455384036144578,0.3486293206197854,0.3532887575804696,0.3633744855967078,0.3664526932737929,0.3773148148148148,0.0,2.6127755442496614,56.275863136106366,178.65224569754045,269.5857112769621,fqhc8_100Compliance_implementation_low_initial_treat_cost,18 -100000,95688,44783,425.1525792157846,5857,60.04932697934955,4569,47.16369868740072,1787,18.33040715659226,77.30793472821749,79.68459539543079,63.31631099018998,65.07038637350315,77.08700270053068,79.4635806801807,63.23447201690499,64.99073835726968,0.220932027686814,221.0147152500923,0.0818389732849951,79.64801623347739,157.96858,111.14080986185688,165086.44762143632,116148.6624845289,399.1006,263.14468874864457,416501.3585820584,274423.4382862768,381.52319,185.4209152490808,394888.7634813143,190890.07260762932,2958.62349,1365.9586232976997,3055114.7583814063,1391054.786468173,1094.45793,490.9634420063936,1128249.0698938216,497559.2362745522,1734.74286,731.3893102614571,1780380.9673104256,735977.1425705126,0.37849,100000,0,718039,7503.929437338015,0,0.0,0,0.0,34556,360.5258757628961,0,0.0,34872,360.6303820750773,1572484,0,56504,0,0,0,0,0,66,0.6792910291781623,0,0.0,0,0.0,0,0.0,0.05857,0.1547464926418135,0.305105002561038,0.01787,0.3338240104677789,0.6661759895322211,24.532200786604054,4.166084648047907,0.3282994090610637,0.238783103523747,0.2241190632523528,0.2087984241628365,11.453226451873045,6.296612317015884,19.09493364023362,11961.82501481854,52.1940844688356,13.216271206192824,17.026807691108907,11.357701175915889,10.593304395617976,0.5810899540380827,0.773602199816682,0.7153333333333334,0.58984375,0.140461215932914,0.7529691211401425,0.8990384615384616,0.8911392405063291,0.775,0.1839622641509433,0.515426497277677,0.6962962962962963,0.6524886877828054,0.5331632653061225,0.1280323450134771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022983617844197,0.0045093429532649,0.0066342730196086,0.0084809458032014,0.0107090554063949,0.0128406174901226,0.0150809107687287,0.0172434915773353,0.0192193665787482,0.0212302054436949,0.0233526058965842,0.0254314726023881,0.0280965897404253,0.0300404866641255,0.032041359668132,0.0341052413935697,0.0358401027851458,0.0380402620459099,0.0402896108354398,0.0420437012635002,0.0558329503196423,0.0692694159514339,0.0825552361568643,0.0954860015565511,0.1071951926624848,0.1225558105349985,0.1344684914067473,0.145881676707896,0.1563090926572866,0.165926498036944,0.1782798802421005,0.1906358856747225,0.2027529519211951,0.2130167164113833,0.2226194273646233,0.2319577352472089,0.2407791686190508,0.2505906176172798,0.2589070939045976,0.2666643760307861,0.27404697683572,0.2802624500011695,0.2866205100893544,0.2923447787865341,0.2977261673151751,0.3018023019133267,0.3071352502662406,0.3119330343491999,0.3158522823083808,0.3200845665961945,0.3191277157798264,0.3185201521751116,0.3172235705819269,0.3160371212230893,0.314962857100323,0.3131765355248229,0.3109824756165252,0.3116511088062429,0.3114942331750955,0.3128331723373045,0.3128885049484497,0.3131153061426618,0.3133220061670128,0.3130158588140559,0.3143269925355165,0.3150022227452211,0.3156107305936073,0.3174663140662385,0.3221724879286646,0.3258252890001192,0.3276601569629494,0.3287307488050982,0.3339847443736998,0.3353380024360536,0.3378111789572569,0.343391314637321,0.3457350272232305,0.3480529907667603,0.3480961382662706,0.345229151014275,0.0,2.2828906197950984,55.32192897881279,171.76657657817,246.3894120420956,fqhc8_100Compliance_implementation_low_initial_treat_cost,19 -100000,95694,44967,426.45306915794094,5991,61.35180889083955,4653,47.913139799778456,1861,18.95625640061028,77.38171245272493,79.75555878061898,63.34258245905804,65.09504156483057,77.14142018312782,79.52091737780235,63.25276254001043,65.01085569848007,0.2402922695971057,234.64140281663504,0.0898199190476134,84.18586635049508,159.7508,112.2875215525642,166939.20203983533,117340.19013999224,401.655,264.236529341256,418994.0435136999,275393.4044520803,378.52941,183.892107658482,391660.8355800782,189134.099227195,3049.18732,1394.9246621146983,3140897.5170857105,1412285.5449804622,1121.4619,503.33413977186217,1151322.653457897,505531.8979638199,1828.87868,773.2599436326545,1865046.9203920832,767373.6481794165,0.37893,100000,0,726140,7588.1455472652415,0,0.0,0,0.0,34666,361.5169185110874,0,0.0,34582,357.4832277885761,1567444,0,56222,0,0,0,0,0,64,0.668798461763538,0,0.0,2,0.0208999519301105,0,0.0,0.05991,0.1581030797244873,0.3106326155900517,0.01861,0.3315848036878079,0.668415196312192,24.46895827058012,4.374764706340797,0.3193638512787449,0.243498817966903,0.2112615516870836,0.2258757790672684,11.19943189871334,5.754931780516457,19.824066176669408,12054.584334875715,52.8045207854582,13.645511950189457,16.739973478919968,10.852826864768913,11.566208491579856,0.5587792821835375,0.7899382171226832,0.7012113055181696,0.5595116988809766,0.1075166508087535,0.7289644012944984,0.9216152019002376,0.8519480519480519,0.7452830188679245,0.1238532110091743,0.4972197834357623,0.7120786516853933,0.6485013623978202,0.5084306095979247,0.1032412965186074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021167557932263,0.0044501211365548,0.0068697487518772,0.0089389106718404,0.0111479545130907,0.0131160896130346,0.0151720621972979,0.0172322267140348,0.0195761732925794,0.0218957928140034,0.0243789918292445,0.0263754992248539,0.0282799613335801,0.0302430984754841,0.0322074651971559,0.0341287401004942,0.0364348150296201,0.038227664210854,0.0404467972251978,0.0425607303271256,0.0569393531138056,0.0707413340033711,0.0837215646772433,0.0960621968796355,0.1078831608595208,0.1226600672631512,0.1347686300308776,0.1459220613287904,0.1562055960940588,0.1666112404389757,0.1798383620689655,0.1920541271989174,0.2039655434948119,0.2142654100977412,0.2245555751122062,0.2344644339883753,0.244091502247404,0.2527471291516235,0.2608828800217771,0.2684191845753998,0.2757731064243321,0.2821786808202202,0.2888710040122617,0.2940683043738766,0.2988581146744412,0.3032607088283137,0.3077202066058855,0.3121397579937144,0.3165266469042472,0.3207922881143595,0.3198563531453012,0.318610210474254,0.3175011962059162,0.316555164657708,0.31655432930894,0.3157629679368809,0.314108434115381,0.3142548596112311,0.3154573595945164,0.3168140648077299,0.3175078068026702,0.3176454337358907,0.3187773836845399,0.3192651550620917,0.3190239927135015,0.320277871380803,0.321938775510204,0.3265535664073484,0.3287212909071899,0.3326355701252024,0.3372931308093402,0.3403252290905239,0.3434400859073969,0.3448856246652895,0.3473961766644693,0.3471958174904943,0.3472200949609434,0.3508203362365809,0.3535911602209944,0.3602316602316602,0.0,2.71569993728158,53.45042872698819,178.1937418511212,252.3394684899665,fqhc8_100Compliance_implementation_low_initial_treat_cost,20 -100000,95865,44952,424.7639910290513,5918,60.53304125593282,4613,47.61904761904762,1818,18.682522296980128,77.44506122741345,79.72243172940742,63.40474875222951,65.08389993575436,77.21705870835918,79.49274954937268,63.320398021547234,65.00052557055483,0.2280025190542716,229.68218003474303,0.0843507306822743,83.37436519953201,158.56984,111.47855248004409,165409.52380952382,116287.0207896981,394.71371,259.4160451640492,411255.2026286966,270121.6660554418,375.43432,181.91545052649025,388059.82371042616,187016.0835317776,3011.71753,1380.8433123962077,3112533.917488134,1411314.2673511785,1063.77903,475.61423661987374,1097129.129505033,483594.6869241888,1783.06832,750.5969721238713,1834089.521723257,761630.0184321055,0.3796,100000,0,720772,7518.614718614719,0,0.0,0,0.0,34060,354.7905909351693,0,0.0,34265,353.7996140405779,1581358,0,56793,0,0,0,0,0,77,0.8032128514056225,0,0.0,0,0.0,0,0.0,0.05918,0.1559009483667018,0.3071983778303481,0.01818,0.3397839058216417,0.6602160941783584,24.620731846381634,4.318746213455429,0.3295035768480381,0.2414914372425753,0.2098417515716453,0.2191632343377411,11.064674200574954,5.770204443857433,19.32157853476093,12090.949381474393,52.250168362477794,13.32007846503388,17.081904583518398,10.778777075326513,11.069408238599005,0.5621070886624756,0.8016157989228008,0.6769736842105263,0.5847107438016529,0.1038575667655786,0.7216494845360825,0.927536231884058,0.841688654353562,0.7131147540983607,0.1473214285714285,0.5020883054892601,0.7271428571428571,0.6222611744084137,0.5414364640883977,0.0914866581956797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022166440616206,0.0045381334900069,0.0069355018606207,0.0093073768827899,0.0113703334891377,0.0138669868044887,0.0161940845758983,0.0183649953603148,0.0204638054100419,0.0224233128834355,0.0245952836854015,0.0267368161959264,0.0288909886407986,0.0310018514708907,0.0330197912695877,0.0351248413034278,0.0371151718218389,0.0391163335302102,0.0411095423968108,0.0432104545785602,0.056929557492597,0.0704525510843675,0.083404005821319,0.0959686050660007,0.107993519336784,0.1234947070681484,0.1353909682884218,0.1469597645583876,0.1577695785702098,0.1681275753197409,0.1805724235031114,0.1922071751009741,0.2040257963650576,0.2143863212027908,0.2240871743046706,0.233100258889651,0.2426718084750674,0.252210649318547,0.2609272273860802,0.2687489274068989,0.276629938375091,0.2829266581707217,0.2887443070917371,0.2943365966919597,0.3005253642970674,0.3051260586960803,0.3096641758351796,0.3136424346498759,0.3181541569018424,0.3223501180069353,0.3217388965109085,0.320782967032967,0.3201270055354182,0.3189115254481319,0.3172309651057782,0.3159876806732939,0.314089433712539,0.3139192942329685,0.3147445603171093,0.3146530293344697,0.3169216417910447,0.3173955870764381,0.3180594117278667,0.3189144663609243,0.3207858715420695,0.3229309763873409,0.3228665269834079,0.3255203450215638,0.3274638084632517,0.3292398815399802,0.3328785811732606,0.3359188227168889,0.336080010064159,0.3404011022657685,0.3412578139799204,0.3451940298507462,0.3504326328800989,0.3491602736885755,0.3512385193431672,0.358712715855573,0.0,1.984982602065759,55.48368178560199,170.48480449924028,249.70251609219275,fqhc8_100Compliance_implementation_low_initial_treat_cost,21 -100000,95694,45261,429.1282630049951,5996,61.41450874662988,4709,48.74913787698288,1925,19.83405438167492,77.29747507811412,79.70036620348785,63.28577397120039,65.06542870976418,77.06436294736028,79.46450522894654,63.19920405947378,64.97931449141569,0.2331121307538382,235.8609745413105,0.0865699117266132,86.11421834848443,158.24886,111.3490557695502,165369.67834973978,116359.49565233996,400.30191,263.47589951499833,417801.8371057746,274819.8273825952,387.01546,188.669138426167,400907.2460133341,194548.2338256924,3107.45617,1436.4785707902097,3218485.338683721,1472767.3542742606,1108.68647,497.4033486200899,1146087.5916985392,507546.6150037795,1880.949,788.2972232986057,1939673.8353501784,803478.1412341008,0.38205,100000,0,719313,7516.803561351809,0,0.0,0,0.0,34558,360.59732062616257,0,0.0,35418,366.5851568541392,1567929,0,56335,0,0,0,0,0,63,0.6583484857984826,0,0.0,1,0.0104499759650552,0,0.0,0.05996,0.1569428085329145,0.3210473649099399,0.01925,0.3395297108357165,0.6604702891642834,24.439953958173216,4.369113737404272,0.3217243576130813,0.231259290719898,0.2282862603525164,0.2187300913145041,11.20196758083175,5.847253454454716,20.474318547758838,12167.66070364996,53.65920934828456,13.20332237587109,17.095790208237602,12.052996472264873,11.307100291911,0.5667870036101083,0.8071625344352618,0.6924092409240924,0.5786046511627907,0.1155339805825242,0.7253414264036419,0.9145496535796768,0.8425,0.75,0.1459227467811159,0.5051607195517547,0.7362804878048781,0.6385650224215247,0.5261239368165249,0.1066499372647427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023409947707649,0.0047268374819954,0.0069648205492664,0.0094705822579006,0.01165771484375,0.0136690500926887,0.0156154379666272,0.0179122158452646,0.0200047045828773,0.0221195891491126,0.0245556091206548,0.0266585851944689,0.0286619616880311,0.0310062342212375,0.0330184296112745,0.0348779478692594,0.0370212986474581,0.0389982556690755,0.0409371326321483,0.0431542966714604,0.0578674688727333,0.0726345870013503,0.0861339908714128,0.0991795519091195,0.1110068034386372,0.1263196868718925,0.1376199371656618,0.1485181201478152,0.1588503239879386,0.1686688782247415,0.181479963766553,0.1937634128893802,0.205483182293482,0.2161670610921202,0.2253847171392036,0.2349971708475253,0.2444983402814256,0.2536499639509733,0.2622172228471441,0.2700732436986348,0.2775164519417926,0.2846382719520195,0.2910047268720901,0.2976577787915531,0.3024475737253995,0.307058910671078,0.3115551432797653,0.3156277100443809,0.320609200327192,0.3248148148148148,0.3236044549443131,0.3221447795183217,0.3212312214700603,0.3198446849509569,0.3178295726673707,0.3159556209390707,0.3140515481860038,0.3151863873315629,0.3157957487396103,0.3164698968962017,0.317372311827957,0.3190245630609353,0.3191356091450047,0.3201611825994033,0.3210358623002659,0.3220413778781507,0.322625500156077,0.3263804065269817,0.3311063695827066,0.333927087044294,0.3364235401045217,0.3399554990464081,0.3418357730728152,0.3422228956739147,0.3445724454434766,0.3479542506779861,0.3444682807232608,0.3428859737638748,0.3424657534246575,0.3444572305331799,0.0,1.690310296065295,58.2951158538123,176.64872721493603,250.02489748792348,fqhc8_100Compliance_implementation_low_initial_treat_cost,22 -100000,95819,45136,427.36826725388494,6134,62.61806113610035,4820,49.61437710683685,1912,19.453344326281844,77.32864418348662,79.63626268613282,63.32870225298407,65.03706585799206,77.07875277747608,79.39363918929577,63.23451786883148,64.94925546136335,0.2498914060105335,242.6234968370551,0.0941843841525909,87.81039662871137,156.73328,110.35021138903193,163572.00555213477,115165.06812282917,397.82796,261.31567729794284,414507.2271678895,272039.4112102148,381.82273,185.74700892487127,394515.2005343408,190793.3961235838,3176.06167,1457.147587708461,3267826.9341153638,1474084.1936519449,1181.19016,525.8556115415003,1213127.8034627787,529390.5451631146,1872.07028,796.3030331594349,1905478.4750414845,790040.0154415842,0.3804,100000,0,712424,7435.09116146067,0,0.0,0,0.0,34357,357.8517830492908,0,0.0,34910,360.3356328076895,1579095,0,56778,0,0,0,0,0,60,0.6261806113610036,0,0.0,0,0.0,0,0.0,0.06134,0.1612513144058885,0.3117052494294098,0.01912,0.3375835795366195,0.6624164204633805,24.351748856892403,4.395222882000773,0.3327800829875518,0.2242738589211618,0.2205394190871369,0.2224066390041493,11.310216638142329,5.869873501430917,20.48022726426735,12153.09487298132,54.67873645920032,12.993934009258416,18.139813996151386,11.712560699965174,11.832427753825352,0.5614107883817427,0.7816836262719704,0.6957605985037406,0.5719661335841957,0.1277985074626865,0.7225130890052356,0.9154589371980676,0.8373205741626795,0.754863813229572,0.1733870967741935,0.4995693367786391,0.6986506746626686,0.6458684654300169,0.5136476426799007,0.1140776699029126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180584392565,0.0046527186473665,0.0070511844975396,0.009284089062246,0.0115212527964205,0.0137141111789859,0.0158597492610335,0.0180125935073019,0.0201935556395818,0.0225944762236116,0.0247143808596751,0.0267241379310344,0.0287658140036792,0.0308533308625961,0.0328964329541821,0.0348571723746061,0.0368626395802502,0.0391103737881694,0.0410819457572893,0.0428211586901763,0.0571294461249608,0.0706824621754723,0.0844007463155908,0.0973874479801589,0.1096681705106042,0.125643492140675,0.13744141163496,0.1492173616948827,0.160609588090178,0.1706762725674342,0.1828422503661583,0.1951982169133558,0.2058007895337835,0.2153259134541797,0.2244745240453395,0.2347733593343157,0.2444856431275757,0.2535304849208315,0.2620997512466066,0.2695912537714096,0.2764802746016652,0.2835929436051421,0.2897499228156838,0.2952505676971321,0.3011015762887225,0.3059045691293722,0.3105856392382051,0.3155834385320633,0.3198130355751752,0.323267077786306,0.3227565357051273,0.3217075661799211,0.3217709776860205,0.3200673459316671,0.319927255381313,0.3178388678027567,0.3160435790744211,0.3161808251628611,0.3162105335133934,0.3167457965944383,0.3181869327132248,0.3188311174422285,0.3206417022702522,0.3213902548055431,0.3224572294809788,0.3244953456751386,0.3240468790099518,0.3261771547117621,0.3283493241823657,0.3298765041165294,0.331679788831748,0.3355665443717764,0.3373038381546606,0.3366676847892486,0.3414427157001414,0.3402727925340991,0.3432721712538226,0.3456016177957532,0.3416166029492081,0.3386161577116351,0.0,2.644260676819705,58.47990275658677,170.27725423208443,268.19445648272045,fqhc8_100Compliance_implementation_low_initial_treat_cost,23 -100000,95745,45200,429.6830121677372,6064,62.18601493550577,4788,49.4125019583268,1842,18.841714972061204,77.35098256499538,79.69895019365113,63.33757887846742,65.07066821726048,77.12546949485484,79.4739449396781,63.25435224521824,64.99000234040807,0.2255130701405363,225.0052539730234,0.0832266332491755,80.66587685240734,157.87288,111.08010908719145,164888.21348373283,116015.98677394452,399.22025,262.0653446686736,416370.5572092538,273122.7574376571,385.65761,186.91417845129936,398959.0370254321,192257.6716982263,3136.09079,1429.661728282278,3239982.610057967,1457932.1205233743,1145.53575,504.2992291491741,1181910.522742702,512285.878419696,1800.7079,750.8968450416983,1844460.6193534909,754778.6183266314,0.38063,100000,0,717604,7494.918794715129,0,0.0,0,0.0,34460,359.2772468536216,0,0.0,35211,363.9145647292287,1575769,0,56585,0,0,0,0,0,72,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.06064,0.1593148201665659,0.3037598944591029,0.01842,0.3355809941978987,0.6644190058021013,24.43262108139737,4.362149520308196,0.3302005012531328,0.2270258980785296,0.2284878863826232,0.2142857142857142,11.424931647060026,5.940004545981379,19.58497953024084,12153.936545970646,54.47372441360923,13.037173351419543,17.877182338548387,12.315048970735004,11.24431975290629,0.5687134502923976,0.7930082796688133,0.6970271979759646,0.5786106032906764,0.1228070175438596,0.7212460063897763,0.9254498714652956,0.8520408163265306,0.6754716981132075,0.145631067961165,0.5147058823529411,0.7191977077363897,0.6459209419680404,0.5476477683956574,0.1170731707317073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022682855204398,0.0042975441157093,0.0062910312217791,0.0082371820914926,0.0108285630039348,0.0133257322026651,0.0151272667964648,0.0175234479450516,0.0197773893846012,0.0218096592944355,0.0240482194476905,0.0258776431944159,0.0280268136206612,0.0299660179178251,0.0321039872079228,0.0341081745925106,0.0360748418360479,0.0379578707066514,0.039933461558455,0.041618051504292,0.0567455843667794,0.0706940739578429,0.0843503606777386,0.0971235123428235,0.1092534418418334,0.1248705101372064,0.136568501649045,0.1477323515014791,0.158621131680429,0.1687995451766195,0.1810788685667506,0.1938182487202519,0.204985697660507,0.2158510300762573,0.2253640496186147,0.2355979164357752,0.2455693658078997,0.2537627393192198,0.2617926401670317,0.2692774950717462,0.2767678404054663,0.2835297008272005,0.2897098998308833,0.2952058238942503,0.3010967945451457,0.3067675649070998,0.3116297092572686,0.3163720469188832,0.3219795009835386,0.3264231611728379,0.3252161732618592,0.3238286681995291,0.3228780467175099,0.3209712193780838,0.3201237193118113,0.3188381361128142,0.3166555692951583,0.3170731707317073,0.3177798682972719,0.3189665946544305,0.3196732062885303,0.3206090287926063,0.3220353185160358,0.3218580945142397,0.3210899051734485,0.3229646997525074,0.3246033100153557,0.3285812974941908,0.3329257641921397,0.3360490409333597,0.3413725757369305,0.3426436294254823,0.3454750989135213,0.3489780469341408,0.3521771631470753,0.3589864466705951,0.3598030163127116,0.3617107121242687,0.3588397790055249,0.3573076923076923,0.0,2.2347690674171616,54.98915861848184,185.8974402048385,260.78371127579646,fqhc8_100Compliance_implementation_low_initial_treat_cost,24 -100000,95827,45356,429.5136026380874,5923,60.47356173103614,4647,47.76315652164839,1844,18.783850063134608,77.51248185563044,79.79667936623932,63.42745123530996,65.11002029230967,77.2756832750442,79.56551992591517,63.33783210019215,65.0256121754727,0.2367985805862389,231.1594403241486,0.0896191351178075,84.40811683696836,157.6696,110.77359207683573,164535.67366191157,115597.47469589543,395.75537,260.8852369390963,412254.0307011594,271510.6775116577,375.99561,183.7208884594964,387481.5761737298,187977.99390880755,3049.20328,1398.991389994491,3136945.2242061216,1415083.543095209,1071.77064,483.33354012802266,1097185.0522295386,483215.58452366205,1810.78126,772.7081720412395,1846584.6368977427,769395.9584398208,0.38255,100000,0,716680,7478.894257359617,0,0.0,0,0.0,34149,355.58871716739543,0,0.0,34292,352.938107214042,1585631,0,56866,0,0,0,0,0,75,0.7826604192972754,0,0.0,4,0.041741889029188,0,0.0,0.05923,0.154829434060907,0.3113287185547864,0.01844,0.3476853350598899,0.65231466494011,24.495013430607354,4.3696909452337644,0.3189154293092318,0.2375726275016139,0.2194964493221433,0.2240154938670109,11.057400972585564,5.622853086012934,19.75111804908795,12173.353562330776,52.40690088266389,13.104084539339096,16.69888078688882,11.087597803504794,11.516337752931175,0.5543361308370992,0.7626811594202898,0.7091767881241565,0.5754901960784313,0.0922190201729106,0.7223101265822784,0.9238329238329238,0.8512195121951219,0.7345971563981043,0.1398305084745762,0.4915755246822347,0.6685796269727403,0.6548507462686567,0.5339925834363412,0.0782608695652174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020844716977313,0.0044257198124386,0.0067606604567246,0.0089801219673062,0.0114894654503342,0.0137902979762025,0.0159943800777829,0.0183145700766846,0.0204017032052525,0.0224153798956948,0.0246787158875633,0.0266949717461977,0.0288523781634351,0.0309161640903196,0.0331336790342367,0.035065793550786,0.03729266046502,0.0391481949945051,0.0411373009359774,0.0429133612343057,0.0573296900421342,0.0712381191379905,0.0843750982385178,0.0973047917148079,0.109850997736008,0.1254898646864337,0.1372877403489432,0.1486983708367008,0.1596371398078975,0.1705668783669447,0.1826853793622627,0.1952945243213464,0.2064648526569523,0.2167997117054153,0.2259963967130992,0.2364064625286136,0.2462595947105154,0.2548076923076923,0.2629939631446014,0.2703166076122985,0.2774143679553294,0.2843776944049588,0.2908312497051469,0.2967563177757608,0.3019164880930762,0.3071980539823335,0.3122903286150776,0.3167756156886591,0.3212415856394914,0.3244428685865868,0.3233275237967556,0.3221441582097319,0.321563187467597,0.3202336926021326,0.3191294183792741,0.3170426447693764,0.3147574656343814,0.3153231353794752,0.3158011275570165,0.3157669771500828,0.3166000074757971,0.3171938121982461,0.3179207651985047,0.3177649154051647,0.3181894103891765,0.3200072358900144,0.3207397995199774,0.3246248951570314,0.3281163434903047,0.3314486254630532,0.3340917201998572,0.3376306076831106,0.3417150623996046,0.343062415806017,0.3446816341553184,0.3478512683887408,0.3489412466447957,0.3538040289458243,0.3539657020364415,0.3556050482553823,0.0,2.8380228103184533,54.61406995039084,169.89369868139812,252.5747412773541,fqhc8_100Compliance_implementation_low_initial_treat_cost,25 -100000,95722,45309,429.65044608345,5901,60.32051148116421,4557,46.86487954702159,1785,18.17763941413677,77.31288813594676,79.67195725619393,63.318020272784125,65.06257492042347,77.08999100929972,79.45459354362966,63.234434787463655,64.98407195204196,0.2228971266470409,217.36371256427844,0.0835854853204693,78.50296838151394,157.38272,110.84524502546104,164416.4559871294,115799.13188761313,395.63267,260.6467886046949,412592.7790894465,271574.2476667145,383.16097,187.04247731824023,395883.4332755271,191962.1248336066,2989.55058,1372.6622140503605,3079016.433003907,1389879.99066567,1092.18727,486.8131082868479,1120583.5858005474,488167.7631156867,1750.06798,740.5953864250088,1784958.8600321766,736894.7154382323,0.38017,100000,0,715376,7473.475272142246,0,0.0,0,0.0,34082,355.28927519274566,0,0.0,34946,360.6172039865444,1578363,0,56612,0,0,0,0,0,72,0.7521781826539354,0,0.0,0,0.0,0,0.0,0.05901,0.1552200331430675,0.302491103202847,0.01785,0.3267054639508567,0.6732945360491432,24.553504387752024,4.331886586388395,0.3274083827079219,0.2326091727013386,0.2196620583717358,0.2203203862190037,11.203137548832448,5.85722038103793,19.084471156835846,12105.016393469026,51.57086794296061,12.66083926379703,16.942498675590976,10.932088040468813,11.035441963103768,0.5637480798771122,0.789622641509434,0.7064343163538874,0.5584415584415584,0.1185258964143426,0.7348111658456487,0.9375,0.8733850129198967,0.7168949771689498,0.175438596491228,0.5013477088948787,0.7056213017751479,0.6479638009049774,0.5140664961636828,0.1018041237113402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813141850148,0.0046017089165712,0.0071124909952414,0.0092329256896761,0.0116353576550279,0.0139918533604887,0.016243499541144,0.0183765352063786,0.0206616639744821,0.0228545683537952,0.0250792055859162,0.0270370180212558,0.0292081906348667,0.0315699482932657,0.0334777674610543,0.0353355794869674,0.036987180814712,0.0388490552333122,0.0406405990016638,0.0427411876256863,0.0570688773113104,0.0706191338195439,0.0837292223795291,0.0962850803865282,0.1089365740496652,0.1241603994118829,0.1364461187456889,0.1477538854588035,0.1581544903910865,0.1681859128345916,0.1811506035123233,0.1924096085832639,0.2034816079331079,0.2143778983288126,0.2239239503564827,0.2337915526656845,0.2435297925292679,0.2523512735127351,0.260477580079256,0.2680576561712269,0.2753302689622434,0.2826264941869985,0.2884169427354472,0.2939738242485258,0.3000716828459305,0.3056548426060591,0.3108453350031309,0.3143904208075126,0.3184125997305979,0.322943631464948,0.3221497317553177,0.3203585394062896,0.319487736421207,0.3180621074870489,0.3162360085734699,0.3152862820925985,0.3137500793701187,0.3137841972790234,0.3147615624251138,0.3159336233285,0.3173536972062217,0.3189508300645826,0.3211605383422078,0.320766101997944,0.3203042264368922,0.3226437741363114,0.3245248558872211,0.3292848354837692,0.331820580474934,0.3330145447300259,0.3348083941605839,0.338455831699433,0.3406648337915521,0.3428961748633879,0.3452325035227806,0.3430294430649166,0.3414859252422704,0.3438639125151883,0.3455250761983929,0.3422641509433962,0.0,2.8457170425042766,52.38094731053916,168.24551736918835,252.87319994024529,fqhc8_100Compliance_implementation_low_initial_treat_cost,26 -100000,95783,45304,428.0300262050677,6042,61.77505402837664,4717,48.68296044183206,1852,18.96996335466628,77.37208356525132,79.71092155980715,63.35007434272507,65.07969286926799,77.1430200874389,79.48299155332424,63.26422482208373,64.99625837664176,0.2290634778124172,227.9300064829073,0.0858495206413394,83.43449262622471,158.22708,111.30249823346264,165193.28064479082,116202.7690022892,396.91807,261.1919112944635,413848.7623064636,272147.0420580516,384.8883,187.523424329288,398423.7077560736,193048.9070843943,3074.70363,1416.94626618019,3175650.5851769103,1445034.7870735377,1130.39086,507.1596443436632,1162560.464800643,511951.7301603364,1807.99428,764.8054629495117,1854163.369282649,771204.0198852705,0.38183,100000,0,719214,7508.785483854129,0,0.0,0,0.0,34283,357.3389849973377,0,0.0,35173,363.7179875343224,1576254,0,56675,0,0,0,0,0,67,0.6994978232045352,0,0.0,1,0.0104402660179781,0,0.0,0.06042,0.1582379593012597,0.306521019529957,0.01852,0.3313980856739369,0.6686019143260631,24.545792479917026,4.2976983093396255,0.3283866864532542,0.2317150731397074,0.225567097731609,0.2143311426754293,11.167994949981448,5.87052448571743,19.86719378963892,12199.242027938915,53.84769824679173,13.176965922250888,17.657868523714686,11.908210974263136,11.10465282656302,0.5717617129531481,0.7941445562671546,0.7004519044544868,0.5808270676691729,0.1246290801186943,0.7432744043043813,0.920863309352518,0.8765743073047859,0.717391304347826,0.1753554502369668,0.5064402810304449,0.7159763313609467,0.6397569444444444,0.5329949238578681,0.11125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022890712042945,0.0049065325818093,0.0071340139229973,0.0093964912993569,0.0114919149801688,0.0135710213389802,0.0161860787491463,0.0183582668326632,0.0206221386527141,0.022853575412705,0.025189588030334,0.0275457213818017,0.0295526499732741,0.0316419201383883,0.0339273192261683,0.0358323689866093,0.037915722137689,0.0400501923695153,0.042029467384302,0.0441015710403848,0.058978827310578,0.0736487617135207,0.0871506740183232,0.0997982599924347,0.1121938372399262,0.1277717328149924,0.139292147928367,0.1501796840113126,0.1607826819874318,0.1703533898214304,0.1827775387263339,0.1952656326001189,0.2073286026319507,0.2172520469178718,0.227166739991201,0.2367969346961827,0.2463494896536338,0.2558516020236088,0.2641353272638632,0.271198085445031,0.2780669488976797,0.2845049342874515,0.2915410533782585,0.2967371130934562,0.3026021943878046,0.3066343241313074,0.3110621573585,0.3146678872952904,0.3188263299523908,0.322681431678861,0.321855925139154,0.3203763477783119,0.3189306500937161,0.3171094856746364,0.3165847063542765,0.3147958168093218,0.311423778171689,0.3126640419947507,0.313404495535256,0.3149170283836164,0.3154563499494401,0.3156886747749171,0.3167339426515801,0.3183531458393737,0.3210119533387739,0.321822017345105,0.3241839762611276,0.3280035252274086,0.3305283825952806,0.3337170987335742,0.3378458183800482,0.3389803589390651,0.3437382474614516,0.34579226686884,0.3501737252324162,0.3523236612408587,0.3540212443095599,0.3587620737236349,0.3616734143049933,0.3650971599402092,0.0,2.1439471890000545,56.98325923114346,180.04351514207417,251.61825328757345,fqhc8_100Compliance_implementation_low_initial_treat_cost,27 -100000,95640,45161,429.2032622333752,5943,60.863655374320366,4712,48.63028021748222,1863,19.061062317022166,77.25911226955019,79.65731235764581,63.27736057920528,65.04654750659876,77.0251964935889,79.42443187912895,63.19185382183687,64.96389533044156,0.2339157759612931,232.88047851686144,0.0855067573684138,82.65217615719678,158.94076,111.83068215480056,166186.49100794646,116928.77682434188,397.42914,260.84988140085784,414905.5207026349,272099.93872946245,382.46972,186.34428469788847,395672.5533249687,191489.80378249852,3125.64192,1430.8210955758711,3228309.1698034294,1456225.4972562443,1131.71657,504.1583518728414,1164984.452112087,508817.3482568399,1832.63362,763.8267756434792,1877741.844416562,766340.4121040181,0.38176,100000,0,722458,7553.931409452112,0,0.0,0,0.0,34301,357.97783354245087,0,0.0,34943,361.1668757841907,1567203,0,56324,0,0,0,0,0,76,0.794646591384358,0,0.0,0,0.0,0,0.0,0.05943,0.1556737217099748,0.3134780413932357,0.01863,0.3374518613607188,0.6625481386392811,24.138288756913703,4.376126901892277,0.3255517826825127,0.2217741935483871,0.2200764006791171,0.232597623089983,11.346841893722218,5.86781704687387,19.95057469198922,12199.128113874443,53.69487515870716,12.61791447130973,17.50637366125791,11.616725003041116,11.953862023098411,0.5519949066213922,0.7875598086124402,0.7033898305084746,0.5593056894889104,0.1085766423357664,0.7429467084639498,0.921119592875318,0.883495145631068,0.7384615384615385,0.1421800947867298,0.4810826542491269,0.7070552147239264,0.6372549019607843,0.4993564993564993,0.1005649717514124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023094922155931,0.0044616149017937,0.0070336763899884,0.0091651763940822,0.0113942723434559,0.0137799686309657,0.0158451781307991,0.0183039496922118,0.0204863986260618,0.0225807112002784,0.0245445318186944,0.0266041009949584,0.0284700437130367,0.0303379930567717,0.0324864295886565,0.0342859506183051,0.0360602073902188,0.0380419551385183,0.0400237146750153,0.0420528109916916,0.0567741261298918,0.0711884288691754,0.0847833163570686,0.0978951026124314,0.1096338849171568,0.1254156870220923,0.137564788852069,0.1485691760243762,0.1591732868583403,0.1693992591399581,0.1832741940702552,0.1957376729471164,0.2073363320517987,0.2176575629101346,0.2273754782934709,0.2376024339869861,0.2476339635305962,0.256765899864682,0.2646774542022492,0.2715523183677221,0.2787845739743828,0.2856321973872458,0.2920631154348084,0.2977339664602993,0.3033487340151893,0.3081581451682672,0.3127573049502962,0.3174785392670824,0.3216728754818863,0.3251518319065324,0.3237279896294696,0.3220470048882874,0.3205929781876821,0.3195017731527236,0.3188247770691123,0.3168653387679766,0.3146983128395768,0.3149365087207866,0.3157741260420598,0.3167648480724812,0.3185888890974973,0.3196453662108409,0.3207000755477209,0.3216958163014586,0.3227504326091136,0.3237423185084887,0.3250355618776671,0.3283516345215996,0.331763382657903,0.332644299570679,0.337136598055771,0.3403202638718944,0.3423611111111111,0.3455636584624734,0.3472701819878674,0.3494018713727348,0.3486420506560879,0.3465805931006657,0.3452777777777778,0.3530556636823667,0.0,2.521114263097449,55.7120242167347,175.74867098780288,259.3556521141883,fqhc8_100Compliance_implementation_low_initial_treat_cost,28 -100000,95632,45084,429.1136857955496,5920,60.96285762088004,4619,47.87100552116446,1833,18.843065082817468,77.28554750318864,79.7181758954596,63.27381344368565,65.07237542705184,77.05374021475556,79.4856701947136,63.18662067030835,64.98702515577529,0.2318072884330746,232.50570074598895,0.0871927733772963,85.35027127655326,157.98838,111.14706304896316,165204.5131336791,116223.7149165166,398.07668,261.2425166186664,415842.74092354026,272758.66511070187,373.92827,181.8188094317473,388760.0803078468,188250.4289522269,3063.21101,1406.363277213455,3174628.001087502,1442103.602573885,1110.20053,495.9288265659049,1144438.6397858458,502110.0223417942,1805.43372,772.6829671992641,1856846.8713401367,780502.032762081,0.38128,100000,0,718129,7509.296051530868,0,0.0,0,0.0,34407,359.3462439350845,0,0.0,34126,354.6720762924544,1573429,0,56467,0,0,0,0,0,71,0.7215158106073281,0,0.0,1,0.010456750878367,0,0.0,0.0592,0.1552664708350818,0.3096283783783783,0.01833,0.3310211324407162,0.6689788675592837,24.4235521610242,4.45242917214897,0.3134877679151331,0.2299198960814029,0.2240744749945875,0.2325178610088764,11.239244979444283,5.710422344977126,19.73695426855763,12130.953292554486,52.36708491848436,12.7680054453041,16.280546146648586,11.420817731254962,11.897715595276711,0.5615934184888504,0.8107344632768362,0.6857734806629834,0.5826086956521739,0.12756052141527,0.734108527131783,0.9394673123486684,0.8801955990220048,0.673728813559322,0.1724137931034483,0.4947431661159507,0.7288135593220338,0.6092396535129933,0.5556946182728411,0.1152019002375296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022598297527361,0.0045339743784803,0.0066705925354343,0.0088123189510596,0.0109062792495828,0.0130489258319836,0.0153420856667788,0.0173872180451127,0.0192899735095273,0.0212918488780557,0.0235428079029974,0.0256473489519112,0.027730599388568,0.0298732089475311,0.031885344925501,0.0339784234425263,0.035886382242303,0.0375632198232441,0.03965610558308,0.0416066921167365,0.0559039973239672,0.07038962127722,0.0837501576226304,0.0968826051686174,0.1095372394925584,0.1245684268496748,0.1372234383966334,0.1477659200187639,0.1585779566152627,0.1689069400122489,0.1819427658839779,0.1948019560432411,0.2066962388150796,0.2166823730522255,0.2266302070699274,0.2362330584200069,0.2454893017640351,0.2539054574964496,0.2625788486673865,0.2704301568375676,0.2772630408598165,0.2841283039196168,0.2910194692783798,0.297037668559901,0.3027632379793061,0.3080170859978766,0.3128798225719548,0.3167996329620473,0.3211607814648574,0.3260717352533192,0.3241334698938062,0.3222384280918047,0.3198815566835871,0.3183343458011513,0.3173602853745541,0.3156062627470825,0.3148089424449025,0.3147554459515002,0.3147198577923631,0.3136637630350403,0.3151167584991941,0.3154830050136197,0.3165838626501477,0.318145251396648,0.3187187860161352,0.3208213275186252,0.3213315985971263,0.3242221666874922,0.32769166608744,0.3315202396436876,0.3341338529158548,0.3356059404894033,0.3368012033091,0.3400060432089439,0.3451814534937961,0.3487936284844226,0.3510445049954587,0.3544379883790823,0.3549257759784076,0.3564208161737177,0.0,1.6619234673670162,57.28042672444076,166.2627975752135,250.8532736324453,fqhc8_100Compliance_implementation_low_initial_treat_cost,29 -100000,95825,45519,430.8374641273154,6027,61.92538481607096,4748,49.12079311244456,1883,19.42081920166971,77.35864855579545,79.66391465533314,63.35358995694328,65.05447594544037,77.13047756304447,79.43289689091615,63.26920659740602,64.9706229573747,0.2281709927509894,231.0177644169897,0.0843833595372558,83.8529880656722,157.93492,111.13377875093836,164815.9874771719,115975.76702419863,402.17074,264.4296812217383,419271.7662405426,275529.46644585265,386.90788,187.90522216010663,401053.399426037,194039.7738465785,3108.5134,1407.6733879290912,3220082.775893556,1445138.855130801,1115.60373,489.8184315688424,1153572.5854422124,500522.4435886695,1837.87992,764.3818157060085,1897433.3420297415,779748.1890332657,0.38324,100000,0,717886,7491.635794416906,0,0.0,0,0.0,34570,360.3235063918602,0,0.0,35333,365.9274719540829,1573909,0,56528,0,0,0,0,0,74,0.7722410644403861,0,0.0,1,0.0104356900600052,0,0.0,0.06027,0.1572643774136311,0.3124274099883856,0.01883,0.3300848789688777,0.6699151210311223,24.89958052891223,4.304196239429386,0.3138163437236731,0.241575400168492,0.2268323504633529,0.2177759056444818,11.23638741227265,5.888542551042325,19.917206425922725,12249.31150469424,53.80626676682184,13.745396116902594,16.916263723445116,11.88644587634822,11.258161050125912,0.568871103622578,0.7776809067131648,0.7127516778523489,0.5821727019498607,0.11605415860735,0.7329545454545454,0.9004854368932039,0.8853333333333333,0.7166666666666667,0.1365853658536585,0.5113765642775882,0.708843537414966,0.6547085201793722,0.5436081242532855,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023075521729449,0.0045680600431484,0.0066912010705921,0.0090616660070829,0.0115010261516266,0.0139463913330959,0.0160840158089883,0.0181979537502677,0.0204830108493553,0.0227909736287567,0.0249405932481153,0.0270170472029047,0.0288488210818307,0.0309332455210595,0.0330449844827763,0.0352185408576386,0.0372692657892558,0.0391959694808425,0.0411005858157796,0.0432442561342508,0.0585136347514031,0.0723955883121635,0.0862757428077346,0.0994945408308025,0.1121321011201618,0.1276298965477159,0.1389227523772168,0.1501069001095593,0.1601400691805098,0.1700599315986405,0.1828919035314384,0.1952467493130828,0.2065680730752501,0.2176547801356377,0.2274928994473678,0.2383548891179306,0.2475949197562554,0.2569130385870176,0.2661514542834122,0.2735625336525794,0.2805744572513077,0.2862661094918706,0.2920949178231421,0.2969122849091672,0.3025871082257398,0.3078146577234169,0.3119440517446297,0.3168870803662258,0.3211797912836315,0.3247436963147686,0.3239157940075914,0.323215096208068,0.3216074745314347,0.3210676752511837,0.3198550703116879,0.3181317672967517,0.3164865420826938,0.3172577996715928,0.3182012481832948,0.3204880492342922,0.3205465055176038,0.3213882897678928,0.3214210725234115,0.3223541512935757,0.3234303584315612,0.3252272489812977,0.3269000171301319,0.3306421092468777,0.332453268560566,0.3351659296442373,0.339023169010879,0.3438680500133014,0.3449297283670511,0.3464657282741738,0.3462401795735129,0.3481524926686217,0.3569689592209373,0.3610210696920583,0.3662049861495844,0.3753918495297805,0.0,1.6930929315822136,54.55156619173509,181.30050893393923,262.26556607527493,fqhc8_100Compliance_implementation_low_initial_treat_cost,30 -100000,95860,45593,431.4103901523055,6185,63.32151053619862,4803,49.5305654078865,1857,19.00688504068433,77.41454581429173,79.70394652840244,63.37712166936033,65.0685362540181,77.18614952239862,79.4771020101365,63.29223132998175,64.9864364992277,0.2283962918931052,226.84451826593488,0.0848903393785747,82.09975479040565,158.33708,111.41472621301368,165175.10953473818,116226.3002801956,402.75016,264.699500889261,419546.5157521385,275535.413220914,392.13521,190.6503131422596,405360.2023784686,196012.25880238827,3147.53719,1435.1369897314069,3249256.676403088,1463018.5516687294,1153.06508,506.7803678099863,1187537.0957646568,513340.65075108025,1817.23762,762.0325039670319,1862112.163571876,765707.8404798678,0.38409,100000,0,719714,7507.95952430628,0,0.0,0,0.0,34655,360.90131441685793,0,0.0,35845,370.3108700187774,1572351,0,56526,0,0,0,0,0,78,0.8032547465053202,0,0.0,0,0.0,0,0.0,0.06185,0.1610299669348329,0.3002425222312045,0.01857,0.3305581251927227,0.6694418748072772,24.42103444049711,4.3312574142520095,0.3291692692067458,0.2373516552154903,0.2165313345825525,0.2169477409952113,11.405837104925237,6.026349923655758,19.753175819300704,12279.062722604089,54.36126426080183,13.67825099242385,17.726998674944337,11.63721331568871,11.318801277744932,0.57859671038934,0.8078947368421052,0.7014547754585705,0.5990384615384615,0.1209213051823416,0.7385826771653543,0.9257425742574258,0.890818858560794,0.7396694214876033,0.1176470588235294,0.5210868949900934,0.7432065217391305,0.6366723259762309,0.556390977443609,0.1218026796589525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024092726628536,0.0047717947419077,0.0069055031079834,0.0093395326173025,0.0115662160788698,0.0138381546413781,0.0158822330888345,0.0181361948671916,0.0202766200866225,0.0220931184027493,0.0243887449168775,0.0267004482557006,0.0289037534806777,0.0309103260869565,0.033167341973132,0.0351572989609799,0.037141260940636,0.0393376028518725,0.041542533866196,0.043436203076731,0.0579495574021749,0.0728572324283654,0.0865789528817749,0.0997532678880781,0.1119102022765323,0.1278950647924213,0.1394444679859316,0.1508078231292517,0.1616148683971876,0.1720718019021506,0.1846193570598614,0.196232984095062,0.2077171326429712,0.2181647326209052,0.2282568081411961,0.239269234599595,0.2479066085385841,0.257442098284019,0.2659726474790773,0.2741010406291857,0.2806262864543583,0.2870102996364146,0.2930510379088059,0.2980408603438979,0.3032077764277035,0.3076458479705161,0.3129857938544339,0.3177677117263843,0.3226684643107159,0.3270736764259208,0.3263583114522319,0.3246299455235789,0.3235708251196846,0.3220231305678684,0.3209997476883803,0.3189888516768362,0.3170881879321777,0.3171198899821548,0.3175628461866212,0.3180030956998239,0.3188332773485612,0.3204893327817505,0.3212959485959861,0.3229050776556451,0.3249269531062892,0.3261997405966277,0.3266249043340231,0.329433785680861,0.3334148300792847,0.3356919792860813,0.3390381575976518,0.3395520421607378,0.3427095650009334,0.3422712933753943,0.3507205950720595,0.3522367030644593,0.3517084282460136,0.3596437968022667,0.3669950738916256,0.3666666666666666,0.0,2.184005704135756,55.53577239714264,181.8139991116504,262.73524035758106,fqhc8_100Compliance_implementation_low_initial_treat_cost,31 -100000,95710,44818,426.2355030822276,6057,62.2087556159231,4754,49.08577996029673,1834,18.73367464214816,77.36002699221102,79.73171298834065,63.33690834044432,65.0885878023374,77.13403622853116,79.5084732346487,63.25321985693114,65.00850148324324,0.2259907636798601,223.23975369194216,0.0836884835131854,80.08631909416408,158.6068,111.57284238666004,165716.0171350956,116573.86102461608,399.19015,261.9607226012519,416500.0417929161,273122.95947906043,377.68531,182.89458516829643,390816.4037195695,188200.61844190315,3103.25828,1409.7811407272854,3203982.53056107,1435015.2280438312,1127.36928,497.8451739934028,1161434.019433706,503902.3043373742,1799.17782,747.8467746403282,1840396.2804304669,749004.8284748934,0.37873,100000,0,720940,7532.546233413437,0,0.0,0,0.0,34486,359.70118064987986,0,0.0,34537,357.16226099676106,1575215,0,56483,0,0,0,0,0,70,0.7313760317626162,0,0.0,0,0.0,0,0.0,0.06057,0.1599292371874422,0.3027901601452864,0.01834,0.3244949494949495,0.6755050505050505,24.53144215368503,4.324113020875567,0.3289861169541438,0.2336979385780395,0.2198148927219184,0.2175010517458981,11.33451532870231,5.887138462486105,19.397248665182826,12056.740895867066,53.84434976117314,13.330334204187508,17.60175104587308,11.581841625354215,11.330422885758354,0.5645771981489273,0.7821782178217822,0.6924552429667519,0.5818181818181818,0.1199226305609284,0.7338645418326694,0.9166666666666666,0.8526570048309179,0.7016806722689075,0.1835748792270531,0.503858245212918,0.7076923076923077,0.6347826086956522,0.5464684014869888,0.1039903264812575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00223840536407,0.0042575190828087,0.0064032960230559,0.0085942420609927,0.0109544733308922,0.0131359211437415,0.0153211009174311,0.0172691828777888,0.0192997699974444,0.021458260816151,0.0235805532202833,0.0252761693564946,0.0273233034768569,0.0292521140832449,0.0313041683862979,0.0333129995140561,0.0352850986242333,0.0374595200531429,0.0394828536658935,0.0412633246152403,0.0560707646677945,0.0694325246478136,0.0826016260162601,0.094682149017628,0.1074911698033633,0.123270147691592,0.1359528153774345,0.1472995264194115,0.1580729222291048,0.1684632793813216,0.1816673668788848,0.1935923653715064,0.2047796035472091,0.214437181645279,0.2238827307117093,0.2342296447240187,0.2438004082862019,0.2530723304736954,0.2613333635631936,0.268741629368468,0.2762439881613022,0.2829999065158455,0.2900944790644326,0.2954374034743257,0.3003630535352186,0.3061870397280855,0.3102943568059847,0.3142326905721295,0.3187970703175548,0.3220399335320338,0.3217996339362618,0.3208575281393621,0.319583415541588,0.31769944770552,0.3166842519802054,0.3144230474849218,0.3125790538831267,0.3128275681341719,0.3129893390191897,0.3139141279173347,0.3141847683852394,0.3152746277487427,0.3154589271183258,0.317373004030911,0.3175732317788795,0.3189041807322773,0.3186225722978929,0.3239077784417953,0.3281239025075507,0.3319915507552509,0.3363179534033805,0.3387603085927108,0.3396546310832025,0.3404368269376611,0.3383395522388059,0.3383963263864359,0.3440974866717441,0.346992329430763,0.3465045592705167,0.3445216049382716,0.0,2.1842124179088227,55.03061104555467,177.3119705894356,263.9435519774736,fqhc8_100Compliance_implementation_low_initial_treat_cost,32 -100000,95746,45407,430.493179871744,5840,59.83539782340777,4512,46.48758172665177,1796,18.329747456812814,77.33346816806463,79.6962314918559,63.32120940122799,65.0706346640992,77.10831447418087,79.47429733356131,63.238386973306994,64.99172781672364,0.2251536938837546,221.9341582945873,0.0828224279209948,78.90684737556342,157.92832,111.15619932127169,164945.0838677334,116094.87531726826,396.80982,261.7408464682533,413789.9964489378,272720.5415386405,382.83383,186.39000631782716,395844.54703068535,191566.8503805689,2968.57391,1351.4601832201815,3063539.594343367,1374646.1914977038,1120.82936,492.0298973543804,1154050.2266413218,497497.55926097406,1766.4246,732.6889513094357,1806470.5157395608,733472.5499815103,0.38189,100000,0,717856,7497.5038121697,0,0.0,0,0.0,34204,356.5475320117812,0,0.0,34898,360.5581434211351,1576910,0,56499,0,0,0,0,0,76,0.7833225408894366,0,0.0,2,0.0208886010903849,0,0.0,0.0584,0.1529236167482783,0.3075342465753424,0.01796,0.3362309332458586,0.6637690667541414,24.52641406655973,4.35824775110091,0.3164893617021276,0.2382535460992907,0.2149822695035461,0.2302748226950354,11.309010880305108,5.7762448320811,19.00759303997431,12147.171887151875,51.175671516697776,12.824937788974268,16.175499714041816,10.86572339039695,11.309510623284732,0.5565159574468085,0.772093023255814,0.6897759103641457,0.5835051546391753,0.1251203079884504,0.7275693311582382,0.9132653061224488,0.8605263157894737,0.7310924369747899,0.1527777777777778,0.492696287279367,0.6910688140556369,0.6278625954198473,0.5355191256830601,0.1178614823815309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202796494249,0.0045430576400438,0.0065160465257901,0.0089617752850088,0.0113402900673297,0.0133694467920455,0.0156077967622232,0.0177583637811026,0.0196843955684559,0.0219053565762132,0.0239689162728232,0.026056424787483,0.0283416630673988,0.0305149330587023,0.0320254222423986,0.0340789283277861,0.0360970457581311,0.0383733358237607,0.04064043249987,0.0428700878024393,0.0572269661983005,0.0714315617608272,0.0843625069515125,0.0978608388372386,0.1101889737208419,0.1255630511557087,0.1373039954168346,0.1484552101403773,0.1593814410970022,0.1697676164330677,0.182450773406868,0.1947074033603444,0.2058727569331158,0.2156442422320169,0.2249879009195301,0.2352374519725842,0.2449211948028753,0.2536737403515088,0.2625899280575539,0.270971656211365,0.2776833512551019,0.2848925573456169,0.2910462764762231,0.29699626329405,0.302644668203324,0.3077197558814844,0.3126827805134101,0.316283619824421,0.3207537408983329,0.3248176626528271,0.323609783676821,0.3218163327011352,0.3211757918583872,0.3196302181135346,0.3191350323768787,0.3168878129500812,0.3148192141397823,0.3153264063295087,0.315293313978311,0.3155640426177431,0.316431766709716,0.3172748623418658,0.3167631749482618,0.3171880931645117,0.3183971907545037,0.318687343358396,0.3192765945346489,0.3219182389937107,0.3247493403693931,0.3294462954148818,0.3333333333333333,0.3348543534780071,0.3372173584430308,0.3402242733999542,0.3417948475983769,0.3438810979264053,0.3442975714724869,0.3465711361310133,0.3535325328120636,0.355288647810926,0.0,2.3562483462212804,53.54888137405635,165.3207086305994,248.47530311108684,fqhc8_100Compliance_implementation_low_initial_treat_cost,33 -100000,95804,45382,430.57701139827145,5892,60.28975825644023,4614,47.64936745856123,1777,18.266460690576597,77.34149214859087,79.68001509080015,63.33904717832892,65.07215363637529,77.11964923115868,79.45726767192798,63.25776469629805,64.99223109796564,0.2218429174321983,222.7474188721743,0.0812824820308648,79.92253840964736,157.36292,110.73264634940018,164254.60314809403,115582.04203310946,396.8617,261.50365516836,413722.4019873909,272436.55000663846,381.13337,185.73242887704995,394242.5368460607,191181.33158193,3006.15349,1381.7223059637236,3108984.029894368,1413453.5949059778,1060.28226,476.0293276239784,1095610.287670661,485809.0933216953,1735.47918,727.7426144832674,1786209.156193896,739194.83281052,0.38215,100000,0,715286,7466.118324913365,0,0.0,0,0.0,34294,357.4172268381278,0,0.0,34795,359.56745021084714,1580761,0,56701,0,0,0,0,0,60,0.6262786522483403,0,0.0,0,0.0,0,0.0,0.05892,0.1541802956954075,0.3015953835709437,0.01777,0.3419218927240318,0.6580781072759683,24.63452620326477,4.313125067128051,0.3246640658864326,0.2429562201993931,0.2219332466406588,0.2104464672735153,11.289650735698448,5.988867984556947,18.96216252938501,12164.840809657995,52.3928441652419,13.457431012156237,16.872145607292104,11.493718400408774,10.569549145384778,0.5606848721283052,0.7707404103479036,0.6935914552736983,0.576171875,0.0968074150360453,0.7382657120127287,0.9296116504854368,0.8567708333333334,0.7379032258064516,0.1549295774647887,0.4941912421805183,0.6784203102961918,0.6373429084380611,0.5244845360824743,0.0804749340369393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.004724106120049,0.006839514942412,0.0093281307157663,0.0116497939665259,0.0138635645964694,0.0159209358776913,0.0179315415407237,0.0203186354712041,0.022230641626902,0.0242186859158395,0.0264428013965906,0.0284406500720016,0.0305758730812815,0.0324514518026291,0.0345337274926095,0.0365933212529122,0.038661825726141,0.0405864566340049,0.0423476504757344,0.0569970891107702,0.0712851825519635,0.0849496505401695,0.0979930650415046,0.1097764009188426,0.1252443908986187,0.1372578115063382,0.1486262334127254,0.1588837904172446,0.1695118684027219,0.1823670587728833,0.194958219377993,0.206233162422873,0.2165023930764691,0.2258610643888174,0.235922469808167,0.2455084481298203,0.2543057957020636,0.2624706988120987,0.2700366953599232,0.2770639236195292,0.2836014288048934,0.290457510161641,0.2967514208794496,0.3015258842365727,0.3076544485868616,0.3118729619310586,0.3172060074394749,0.3208670826389696,0.3251193937560026,0.3242273582370331,0.3223046284850982,0.3217587055926837,0.3204671102963465,0.3193972236656521,0.3173551949343081,0.3155238426731639,0.3161928834033613,0.3170806710629719,0.316181328000857,0.3162945884646385,0.317733161902878,0.3177995427948239,0.3181685883801634,0.319150474904778,0.3204806687565308,0.3225593667546174,0.3266024218601407,0.3299151343705799,0.3332668289373927,0.335295740962193,0.3367986710251326,0.3373846643334394,0.3413636012663115,0.346882436934793,0.3465500718735026,0.3486811300140471,0.3566694283347141,0.3660112359550562,0.3564547206165703,0.0,1.8962651494963096,55.31980900459151,173.15259428365,249.138137425278,fqhc8_100Compliance_implementation_low_initial_treat_cost,34 -100000,95698,45114,427.6264916717173,5934,60.78496938285022,4658,48.02608204978161,1780,18.20309724341157,77.3419109081298,79.71167308265443,63.33255108723839,65.08132796458301,77.11531324817061,79.48899179361906,63.24687640237509,65.00042260228382,0.2265976599591965,222.68128903536424,0.0856746848632923,80.9053622991911,157.97848,111.1953868654475,165080.23156178812,116194.055116562,395.40264,260.2556951133389,412512.3827039228,271291.11457663984,381.46338,185.85932943617408,394852.79734163726,191264.67633566936,3087.51502,1417.525630525127,3184564.37961086,1439580.7477661709,1112.85075,490.86430499271086,1148166.4820581411,498254.6886910665,1750.6219,744.3433350556732,1791477.2513532152,743112.0297480932,0.38018,100000,0,718084,7503.646889172188,0,0.0,0,0.0,34152,356.17254279086296,0,0.0,34843,360.4046061568685,1576987,0,56567,0,0,0,0,0,62,0.6374218896946645,0,0.0,0,0.0,0,0.0,0.05934,0.156083960229365,0.2999662959218065,0.0178,0.3280116110304789,0.6719883889695211,24.5069422712317,4.349548903817472,0.3149420352082439,0.2340060111635895,0.2282095319879776,0.2228424216401889,11.050931944808264,5.629273841191839,19.02980725968634,12134.476022826486,52.81235558095933,13.13123709603722,16.560848801538533,11.68551657307274,11.434753110310837,0.5573207385143839,0.7926605504587156,0.7062031356509885,0.5465663217309501,0.1107899807321772,0.7311912225705329,0.910377358490566,0.8794871794871795,0.7231404958677686,0.1318181818181818,0.4917208752217623,0.7177177177177178,0.6434540389972145,0.4945188794153471,0.1051344743276283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075502268308,0.0046113306982872,0.0066037735849056,0.0092223937596489,0.0116321633383495,0.0141015720452879,0.0161472827915226,0.0181779211235404,0.0203906417686198,0.0224655851798782,0.0245110099643252,0.026656535266514,0.0285884700026737,0.0307226308957161,0.0326505340281719,0.0348067897533442,0.0367451349979804,0.0387209929843497,0.0406904799043311,0.0428968952903044,0.0572070190098182,0.0715736359448934,0.0846913398881415,0.0975522526218351,0.1093810985579712,0.1247698656226854,0.1365550899156543,0.1479584775086505,0.1589102564102564,0.1692522261559918,0.1816615145999159,0.194454365401474,0.2058522789078646,0.2154223033935191,0.22561237172366,0.2355057622690387,0.2439358961490849,0.2521920949682989,0.2604183208184932,0.2682857044760062,0.2757667256678119,0.2829190656742967,0.2898888639026641,0.2956936423111025,0.3011771566019169,0.306078914919852,0.3109396334665347,0.3150327628984032,0.319095770161969,0.3231332858912522,0.3215694192072145,0.3201577768309946,0.3192999718864211,0.3191007671454115,0.3185080824558802,0.3163059427732942,0.3146621173348498,0.3159085320875338,0.3169258077179089,0.3178824495332607,0.3179962546816479,0.3200719040752227,0.3198086686527084,0.319906008727761,0.3218202809313065,0.3226083784910379,0.3228949992876478,0.3270892918879844,0.3300748971482823,0.3329882128066263,0.3356579607092392,0.339468085106383,0.3450384566889421,0.3498052394409226,0.3491883729709324,0.3507604562737642,0.3492742551566081,0.3453428863868987,0.3503344481605351,0.3468917881811205,0.0,2.541848781881994,55.4610369276007,173.24670547024738,251.28359492562527,fqhc8_100Compliance_implementation_low_initial_treat_cost,35 -100000,95716,45178,428.8311254126792,6029,61.90187638430357,4743,49.03046512599774,1846,19.03547996155293,77.33810060160408,79.71875540519366,63.31256206328344,65.07405215239183,77.10942083411761,79.48772053566528,63.23016677415808,64.99216567323857,0.2286797674864686,231.0348695283864,0.0823952891253583,81.88647915325475,157.17328,110.65723701481366,164207.94851435497,115609.96804590002,398.89727,261.68156673710405,416232.9286639642,272875.8062780559,380.70226,184.87295303566285,393435.6847340048,189982.0479933484,3111.25522,1403.4581454168338,3222135.7662250823,1437902.122337784,1112.54956,485.33440503798977,1150038.6978143677,494751.0186781611,1811.43604,750.9415244942777,1869660.6001086547,766345.0320697482,0.38085,100000,0,714424,7463.997659743408,0,0.0,0,0.0,34393,358.8010363993481,0,0.0,34845,359.7413180659451,1579395,0,56664,0,0,0,0,0,64,0.6686447406912115,0,0.0,0,0.0,0,0.0,0.06029,0.1583037941446763,0.3061867639741251,0.01846,0.3276353276353276,0.6723646723646723,24.709319198820683,4.348336115175408,0.322369808138309,0.2306557031414716,0.2264389626818469,0.2205355260383723,10.957759075294325,5.663350729238085,19.675914833844303,12222.481443518358,53.4063045046722,13.036123348783487,17.105583843678016,11.821321035594435,11.443276276616247,0.5620915032679739,0.7979890310786106,0.697187704381949,0.5623836126629422,0.1175908221797323,0.7427884615384616,0.945945945945946,0.8535911602209945,0.7546468401486989,0.1428571428571428,0.4975679542203147,0.710334788937409,0.6486718080548415,0.4981366459627329,0.1112440191387559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025440392450994,0.0048082775410833,0.0069141267488374,0.0089029818891395,0.0112839714695617,0.0134550158384175,0.0156049201395263,0.0177719672750671,0.0199417088510507,0.0222290482772743,0.0244157548785364,0.0267078768213416,0.0286043307491414,0.0307087100694086,0.0329286031133622,0.0348562039496119,0.0367448361546824,0.0387903309471936,0.0407518296739853,0.0424895833333333,0.0573615563747245,0.0715025906735751,0.0849954359937467,0.0982658351649507,0.1100648494754046,0.1259254558531116,0.1386890742037473,0.1503401577821073,0.1609308388447854,0.1714202966951634,0.1840098241985522,0.1962441822708085,0.2079071083445784,0.2178997691693378,0.2274657805554333,0.2380503911183991,0.2478535142075587,0.2558741447605329,0.2639962759857852,0.2710988356101586,0.2782189909467688,0.284807978181733,0.2907786302926968,0.2971321053199267,0.3022622895050179,0.3071332502498674,0.3120614474739374,0.3169898830305038,0.3220837435870861,0.325776868773504,0.3250087461987674,0.3244715234702719,0.3235107775916201,0.321800906806827,0.3206521739130434,0.3184596296126097,0.3174266637131736,0.3178820982186792,0.317757967004816,0.3179968589377498,0.3191800329785639,0.3202441385031702,0.3214727268917248,0.3211598746081505,0.3220905353751472,0.3234523036988968,0.3261042352674009,0.3293826231461449,0.3319461444308446,0.3362803915377328,0.3379932356257046,0.3385682021114554,0.3398172891678578,0.3423065386922616,0.3416442673092965,0.3428403755868545,0.3469879518072289,0.3450269085110624,0.3398110661268556,0.3468536770280515,0.0,2.068076243151693,54.989574292880185,172.89472350172397,264.64560059571835,fqhc8_100Compliance_implementation_low_initial_treat_cost,36 -100000,95656,44839,425.880237517772,6008,61.70025926235677,4737,48.99849460567032,1884,19.298318976331856,77.27782633283482,79.68959546402891,63.2892740309558,65.07257679485132,77.0432251885066,79.45771515658086,63.20156198801264,64.98898940832413,0.2346011443282236,231.88030744805133,0.0877120429431599,83.587386527185,157.24808,110.59716102089592,164389.14443422263,115619.67991646728,394.45986,259.3165781707959,411867.1907669148,270586.68371121085,378.72888,184.17685146450992,393437.8815756461,190485.25781774684,3093.96735,1422.0929756508615,3197683.302667893,1449884.5505256972,1154.41127,515.8381703437747,1186514.008530568,518941.5617878382,1851.62252,778.0147870770212,1896639.26988375,778070.7110595513,0.37915,100000,0,714764,7472.23383791921,0,0.0,0,0.0,34159,356.5589194614033,0,0.0,34731,360.6464832315798,1579375,0,56727,0,0,0,0,0,59,0.6063393827883248,0,0.0,0,0.0,0,0.0,0.06008,0.1584597125148358,0.3135818908122503,0.01884,0.3250832936696811,0.6749167063303189,24.42721583981353,4.35560645183423,0.3101118851593836,0.242347477306312,0.2220814861726831,0.2254591513616212,11.182703508141936,5.825863399110323,20.03819066199608,12080.694561257496,53.868819662426176,13.684856564130166,16.775591029286982,11.700866040597244,11.707506028411784,0.5598480050664978,0.7822299651567944,0.6929884275017019,0.5779467680608364,0.1198501872659176,0.7292474786656322,0.9016393442622952,0.8446115288220551,0.7574468085106383,0.175438596491228,0.4965197215777262,0.7115117891816921,0.6364485981308411,0.5263157894736842,0.1047619047619047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023204912550919,0.0045635242576667,0.0070046494629768,0.0091872719696738,0.0113637519711073,0.0134676704597548,0.0158286588475267,0.0179762427609874,0.0200282318283177,0.0221673615308181,0.0243179487179487,0.0262649711362655,0.0283585775436285,0.0302293223396031,0.0322740506721179,0.0342248976045674,0.0359992539014735,0.0379834899537926,0.0400116548903711,0.0420720072570302,0.0572861696013375,0.0704201751078714,0.0838581685350799,0.0968196838626844,0.1083990249153132,0.1242298490398255,0.1359856410038552,0.1480419841227556,0.1584847933760523,0.1686084594156367,0.1816476978789446,0.1940353460972017,0.2047245808839538,0.2143967253305314,0.2240694051459335,0.235133098388634,0.2447630532850953,0.2540623874684912,0.2620798438528404,0.2697233635874603,0.276719234148823,0.2825672848812069,0.288252060886329,0.2933922922059246,0.2988276741784608,0.3036256011838698,0.3088220563930485,0.312754582484725,0.3175306913493823,0.3218412052869951,0.3198732213905186,0.3186100726966742,0.3178030730990848,0.3169417897480451,0.3162222553254878,0.3142642250840381,0.3123194157802826,0.3129704356419336,0.3137893221849085,0.3142667884061084,0.3152688091305001,0.3170325750970912,0.3186893917131942,0.3186658315064203,0.3202166064981949,0.3216500755720018,0.3244825124910778,0.3291503350613225,0.3327784664423587,0.3361085538165952,0.3388361535286834,0.3388050951340404,0.3411014273083239,0.340752110514198,0.3426110006626905,0.3398395401748293,0.3350316504554578,0.3401276508132592,0.3385431202902595,0.3420345489443378,0.0,2.0354249686173587,56.702897383391424,173.86872849236656,262.39572228800967,fqhc8_100Compliance_implementation_low_initial_treat_cost,37 -100000,95825,45483,430.2321941038351,5936,60.81920166971041,4655,48.07722410644404,1848,18.91990607878946,77.39792083527668,79.70125456987813,63.37134666233783,65.07132935357178,77.16797556770834,79.47250718946839,63.28670866416736,64.98921572774762,0.2299452675683397,228.74738040974307,0.0846379981704714,82.1136258241637,157.89708,111.08321715182642,164776.49882598486,115923.0025064716,399.7749,262.7742929967741,416696.9371249674,273727.3498531428,382.4481,186.1187474028584,395726.0318288547,191580.2227714393,3055.28548,1391.9477961955022,3156418.460735716,1420610.8074046455,1082.47829,483.6178261160845,1113685.885729194,488757.2743902998,1815.30514,758.8514614464086,1860196.9632141923,764185.1487667033,0.38233,100000,0,717714,7489.840855726585,0,0.0,0,0.0,34442,358.89381685363946,0,0.0,34875,360.6052700234803,1578838,0,56562,0,0,0,0,0,68,0.7096269240803548,0,0.0,0,0.0,0,0.0,0.05936,0.1552585462820077,0.3113207547169811,0.01848,0.324955695182858,0.675044304817142,24.760719694259464,4.35171213781742,0.3125671321160043,0.2410311493018259,0.225563909774436,0.2208378088077336,11.21829920526221,5.749733923231257,19.591285357160988,12212.7302288831,52.55766593328053,13.331319160088338,16.410738622197915,11.608387887895832,11.207220263098444,0.5559613319011816,0.7834224598930482,0.6996563573883161,0.5561904761904762,0.1040856031128404,0.7384,0.9429280397022332,0.8726287262872628,0.7370517928286853,0.158590308370044,0.4889867841409692,0.694019471488178,0.6408839779005525,0.4993742177722152,0.0886392009987515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024196161010771,0.0047725683713483,0.0072924590496475,0.009524486459592,0.0116806278464541,0.013647188129694,0.0157730635202054,0.0179546034174955,0.0199337924269979,0.0221808434449878,0.0245579165215253,0.0264991023339317,0.0285406071813838,0.030789178509318,0.0328478814301763,0.035083372051004,0.0370355044277083,0.03911488832461,0.0412764013208448,0.0435022427591661,0.0584676367808897,0.0719358246263583,0.0854224990301238,0.0984020185029436,0.1112504743033011,0.1262804046554403,0.1386780049198405,0.1505992038996147,0.1608481999786347,0.1709747307906817,0.1838046826200271,0.1963549835054891,0.2070446268413328,0.2173580284708403,0.2266003893061772,0.2363094842667021,0.245913155957983,0.2546037099494098,0.2631763918963347,0.2706440910650955,0.2773558953731636,0.2836148688114763,0.2906868135116282,0.2957392584084138,0.3011115016787675,0.3066620752419722,0.3116025272831706,0.3161295236161003,0.3204518430439952,0.325008881462086,0.324003381324889,0.3227792556838439,0.3221091062276205,0.3215535490560331,0.3205901085716824,0.3185049580472921,0.3169204070363651,0.3175935470148399,0.3190702588483888,0.3185974794559618,0.3210601076555024,0.3222097311796146,0.3226440337820888,0.323470871072347,0.3250818724715854,0.3260336826737577,0.3262585812356979,0.3276859373518349,0.3311153358681876,0.3340224218812117,0.3378378378378378,0.3421404503396267,0.3431142657963115,0.3428571428571428,0.3441053828658074,0.3448604817553065,0.3475919372211109,0.3489593857344918,0.3546099290780142,0.3596358118361153,0.0,1.8987802209540616,55.08401545236228,168.92850755860178,258.4901487286351,fqhc8_100Compliance_implementation_low_initial_treat_cost,38 -100000,95547,45307,429.55822788784576,5919,60.79730394465551,4644,47.95545647691712,1825,18.66097313364104,77.19945181010942,79.66904808200292,63.224607941291474,65.0531212088681,76.97125995754622,79.44505950877468,63.139757124227245,64.97287271868045,0.2281918525631994,223.98857322824028,0.084850817064229,80.24849018765678,157.73538,110.95527930753003,165086.4600667734,116126.1570824098,397.05826,261.1833920114517,414905.5961987294,272698.2343887844,383.6035,186.709792553622,397678.849152773,192462.1504412017,3043.61315,1392.3778371335309,3144494.332632108,1416302.6438648324,1099.79719,484.854384980099,1134759.3958994003,491156.9750804304,1793.732,746.5974814103965,1836550.556270736,747041.5835010516,0.38122,100000,0,716979,7503.930003035156,0,0.0,0,0.0,34269,357.991355039928,0,0.0,35077,363.1929835578302,1569697,0,56389,0,0,0,0,0,59,0.6174971480004605,0,0.0,1,0.01046605335594,0,0.0,0.05919,0.1552646765647133,0.3083291096468998,0.01825,0.3422028705047573,0.6577971294952427,24.38582137368336,4.368338054305284,0.3169681309216193,0.2383720930232558,0.2226528854435831,0.2220068906115417,11.2388360658753,5.8039611580155706,19.25888022092462,12169.053706873072,53.04880687405164,13.298047363880343,16.82077921170157,11.62715669912706,11.302823599342666,0.5656761412575366,0.7841011743450768,0.6949728260869565,0.6054158607350096,0.1066925315227934,0.7451768488745981,0.9270588235294116,0.8498727735368957,0.7489177489177489,0.1333333333333333,0.5,0.6950146627565983,0.6385542168674698,0.564134495641345,0.1004784688995215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020070754477906,0.0043322984517359,0.0067531887236981,0.0087034325687327,0.0111780754978213,0.0134967073742583,0.0157268969740266,0.0179644389944819,0.0201801064265247,0.0224228573770995,0.0246979479967562,0.026970890358138,0.0292269984140388,0.0313489648342806,0.0335961639815226,0.0356599418261616,0.037780658542909,0.0398873426798723,0.0417482604891462,0.0437528709232889,0.0584647893217289,0.0721798676580081,0.0851081723188192,0.097969377324889,0.1099049773277383,0.1259568693144468,0.1375421573946996,0.1487822059043268,0.1591595774315898,0.1689091085083728,0.181339035954595,0.1935746459000379,0.2047964037882425,0.214585070434897,0.22433300586138,0.2350516609265637,0.2445105982944244,0.2536508294774856,0.2616221506526613,0.2687616291089518,0.2768693756378143,0.2834597662066621,0.2899346529252007,0.2959596566008284,0.3007766848461238,0.3061615238283469,0.3106681562001833,0.3160203522105612,0.3213483729442764,0.3255690911736307,0.3242520790582136,0.3235119745205366,0.3218155652124838,0.3201418542375335,0.3190620903348826,0.317469093142901,0.3150843664185145,0.3158787399759588,0.3166821003532599,0.3173516390945101,0.318209179834462,0.3192995676833379,0.3198231392778187,0.3206374144316014,0.3206165889487545,0.3211196729045447,0.3236684525685471,0.3282442748091603,0.3328514509361447,0.3374761753494282,0.3413782153064464,0.3428495902722707,0.3446979192780145,0.3459928457264632,0.3509592887225082,0.3549038233198765,0.3595078979343863,0.3590101776092596,0.3625954198473282,0.3606118546845124,0.0,2.5283935229727628,54.30179800964389,182.0793351046112,247.4520023592653,fqhc8_100Compliance_implementation_low_initial_treat_cost,39 -100000,95670,45042,426.8109125117592,6005,61.471725723842376,4744,48.87634577192432,1835,18.689244277202885,77.33990302576841,79.73036340796999,63.32261558699434,65.08894997507409,77.11238685467832,79.51101493189037,63.23680286364922,65.01034026900643,0.2275161710900874,219.34847607961672,0.0858127233451213,78.6097060676525,159.42696,112.1022925881996,166642.5838820947,117176.01399414612,399.31991,262.38686086572494,416685.0318804223,273558.6210335449,383.1485,186.0946961414556,396802.7490331347,191598.74817234103,3127.41356,1431.9073904899174,3223215.375770879,1451295.573540688,1114.09651,493.7362347738717,1147557.7506010244,499138.8519172003,1801.57022,760.185466629291,1837153.3186996968,753906.8729473206,0.37972,100000,0,724668,7574.662903731577,0,0.0,0,0.0,34410,358.9317445385178,0,0.0,35076,362.9455419671788,1569492,0,56347,0,0,0,0,0,78,0.8153026026967701,0,0.0,0,0.0,0,0.0,0.06005,0.1581428420941746,0.305578684429642,0.01835,0.332277478618942,0.6677225213810579,24.447337882894523,4.40004491954336,0.3159780775716694,0.2403035413153457,0.2204890387858347,0.22322934232715,11.250866343052746,5.868138067507657,19.4936416376321,12125.417115381451,53.78106141528957,13.635870484575811,16.953490933046726,11.665052321240095,11.526647676426949,0.5657672849915683,0.7973684210526316,0.6964643095396932,0.5850860420650096,0.1123701605288007,0.7368012422360248,0.9270588235294116,0.8525798525798526,0.7404255319148936,0.1538461538461538,0.5020254629629629,0.7202797202797203,0.6382783882783882,0.5400739827373613,0.1014319809069212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002177656234174,0.0046525771628402,0.0070217450863004,0.0095681144110835,0.0115920807784997,0.0137930332457908,0.0157379188029396,0.0178514927277366,0.0201179681669954,0.022129645741425,0.0242664698283816,0.0265051583431709,0.0287935502447451,0.0310053564070869,0.0332036289698308,0.0351662668541649,0.03699866344789,0.0388444250672147,0.0408855412912756,0.0430045871559633,0.0574819520043461,0.0715459923564211,0.0847612352181988,0.0975201742295916,0.1096188135003112,0.1245926615599475,0.136669885091619,0.147375031933918,0.158441752654404,0.1692312641410296,0.1819102188523177,0.1944769077608968,0.2059578448219607,0.2162945305836814,0.2257017061089708,0.2361789563464371,0.2451908056237447,0.254528679763271,0.2628736740597878,0.2707324056576762,0.2772791413171713,0.2832926102154623,0.2896685514206629,0.2951995497706944,0.300862727967675,0.3056673930976742,0.310319821959941,0.3143518106593113,0.3187649686063823,0.3224406332453826,0.3212064090480678,0.3204786136707468,0.3197537646677654,0.3186030038885757,0.3177386755439306,0.3150762453923922,0.3132124393290225,0.3135415299829419,0.3135002471324118,0.3145019140033829,0.3157904573233409,0.317732873336619,0.3184742647058823,0.3189345013296386,0.3181053137773503,0.3188500234582703,0.3195676353991387,0.3223642776168283,0.3263298432998384,0.3294289897510981,0.3329096686336813,0.3354872881355932,0.3325174166823573,0.3363194655329486,0.3388816158593604,0.3444326366749321,0.3489263803680981,0.3518707830709466,0.349609375,0.3429672447013487,0.0,2.74629391929375,55.88529734117905,174.88959363940523,259.9477971232123,fqhc8_100Compliance_implementation_low_initial_treat_cost,40 -100000,95782,45314,428.6295963751018,6053,61.963625733436345,4760,49.1010837109269,1851,18.886638408051617,77.331780499572,79.6736962268554,63.32970022966426,65.0632026666809,77.09824819182597,79.44530014668595,63.24111791872362,64.97996464448698,0.2335323077460316,228.39608016944624,0.0885823109406445,83.23802219391041,157.80776,111.08084843368437,164757.21951932512,115972.57149953472,399.23761,262.2460341102337,416217.4625712556,273193.1199079512,383.82309,186.49613672744616,397698.1061159717,192291.29872004248,3123.78192,1431.296023510948,3223929.610991627,1456910.8637436554,1133.17511,499.1790865871509,1168176.5049800589,506260.8805278141,1810.99692,770.9607622581192,1849892.8817523129,769284.468356498,0.38245,100000,0,717308,7488.964523605689,0,0.0,0,0.0,34462,359.1593410035289,0,0.0,35032,362.750830009814,1576625,0,56613,0,0,0,0,0,68,0.7099455012424046,0,0.0,1,0.0104403750182706,0,0.0,0.06053,0.1582690547784024,0.3057987774657195,0.01851,0.337684806542938,0.662315193457062,24.495989340950224,4.348729098529946,0.3157563025210084,0.2436974789915966,0.2147058823529411,0.2258403361344537,11.488073158236826,6.058806418306627,19.75056025933875,12221.68172564563,53.94249379074899,13.807246562428697,17.098128856398414,11.394027671773486,11.643090700148386,0.5649159663865546,0.7758620689655172,0.6866267465069861,0.6115459882583171,0.1227906976744186,0.737460815047022,0.9174757281553398,0.826302729528536,0.7727272727272727,0.1963470319634703,0.5017221584385764,0.6978609625668449,0.6354545454545455,0.5615384615384615,0.1039719626168224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271207900734,0.0043591095251611,0.0064233309994215,0.0087569588361981,0.0112178998220188,0.0138392447988268,0.0162313166534124,0.0182837192208746,0.0204248533049825,0.0225827916261452,0.0247467913232459,0.0270450648403889,0.0291002570694087,0.0309448267336931,0.0331303540097017,0.0350677680482181,0.0371824217253057,0.0395709944092356,0.0417047721982041,0.0436625291569476,0.0583373338064327,0.0719807521313876,0.0853015483641014,0.0986643688065489,0.1107083394802841,0.1258863936591809,0.1377917700184443,0.1488827677156561,0.1594970218398411,0.1700387937501339,0.1828321651970759,0.1954475625851959,0.2071789851525534,0.217365145001258,0.2276514943034839,0.238206580157578,0.2471710746568463,0.2560269087554701,0.2637787683896507,0.2722483709531498,0.2797626620710394,0.2865528531337699,0.2927100591715976,0.2981947208170507,0.3037588686947225,0.308227286179343,0.3132687056937451,0.317078144716214,0.3208760714239402,0.3241790177274048,0.3236371471665589,0.3229478894541455,0.32127926127166,0.3208117131831124,0.3195684800213977,0.31721633053393,0.3154342211588737,0.3159295524742064,0.3167139876167345,0.3178152100210556,0.3182337837584572,0.3190510054916834,0.3207139561223205,0.3216299677765843,0.3234790576547467,0.3238844184345281,0.3245764162245422,0.3289560491344915,0.3310697283674041,0.3326059355657832,0.3339869579096174,0.3364789933887822,0.3377786244999047,0.3397976391231028,0.3420704012112036,0.346585482330468,0.3458436724565756,0.3486480992071559,0.3547579298831386,0.3621706645694062,0.0,2.322076703867513,55.75636819385662,175.9141859742234,263.4181907420246,fqhc8_100Compliance_implementation_low_initial_treat_cost,41 -100000,95695,45097,426.5113119807723,6044,62.040858979048025,4725,48.86357698939339,1853,19.09190657819113,77.34192318165195,79.71579692095577,63.32298576779221,65.07434867876853,77.11291431174054,79.4853926604967,63.2383037294016,64.99097622304126,0.2290088699114107,230.4042604590677,0.0846820383906035,83.3724557272717,158.00092,111.14777827658092,165108.85626208267,116147.94741269755,397.51988,261.1825013571394,414823.177804483,272352.4336246819,382.46635,186.2272354873492,395563.2791681906,191535.8995042888,3112.97643,1428.3537361965407,3223739.819217305,1463331.5493981305,1110.98472,491.5695379048487,1147901.2905585454,500637.3521149022,1820.3877,762.426276429508,1877321.3020533987,775622.2273148578,0.38125,100000,0,718186,7504.948011912848,0,0.0,0,0.0,34239,357.2600449344271,0,0.0,35013,361.826636710382,1575513,0,56533,0,0,0,0,0,89,0.9195882752494906,0,0.0,1,0.0104498667641987,0,0.0,0.06044,0.1585311475409836,0.306585043017869,0.01853,0.3244226510597912,0.6755773489402088,24.49561276080126,4.44588545582207,0.3231746031746031,0.2313227513227513,0.2232804232804232,0.2222222222222222,11.318857904336127,5.84508157143029,19.67453818555409,12211.61356622713,53.54366443546581,13.104330318926168,17.182342041965484,11.768581716385846,11.488410358188307,0.5657142857142857,0.7923147301006405,0.704649639816634,0.5848341232227489,0.1085714285714285,0.7318217357310399,0.927007299270073,0.8730964467005076,0.757085020242915,0.105726872246696,0.504062681369704,0.7111436950146628,0.646072374227714,0.5321782178217822,0.1093560145808019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021364276095298,0.0044597155917738,0.006725706807876,0.0089991264956223,0.01132885196221,0.0136527458206919,0.0160471423036926,0.0182573800455413,0.0204916356497198,0.0227921978190754,0.0249876958411943,0.0272127006294862,0.0294060169709436,0.031425804191481,0.0334547931913663,0.0354897418927862,0.0374874403090978,0.0395669638686775,0.0415964726191218,0.0438058122935531,0.057709582401972,0.0718070068896195,0.0855907387776949,0.098101732011701,0.1103900900045371,0.1261415706318719,0.1383919565979042,0.1499297004814452,0.1611655051519945,0.1717882941384825,0.1844516796757083,0.1962875924582245,0.2077913596238203,0.2181549573210768,0.2273763002917056,0.2375439024120013,0.2469105482311702,0.2558817569849382,0.264035575319622,0.2710416308767107,0.2781454654849235,0.2849955538915149,0.2913455733513264,0.2970121337106134,0.3020839662190898,0.3065659242459725,0.311840885749355,0.316274452406104,0.3204034537298726,0.3242932628797886,0.3235516338811085,0.3230028688072382,0.321917421612621,0.3211230564707242,0.3199934710351377,0.3183152872086621,0.3167230530875518,0.3164020816574459,0.317116932383247,0.316831330028177,0.3172439618049054,0.3179588607594936,0.317867616254713,0.3183628714643752,0.3184142915456095,0.3203045817198992,0.320286314832699,0.3247139946716815,0.3272511185682326,0.3294987349778621,0.3335898248313945,0.3364332892998679,0.338659955960994,0.341813240733751,0.3426176059618072,0.3460776314255741,0.3499474553370365,0.3497615262321145,0.3487109905020353,0.3526785714285714,0.0,2.003031490917782,56.1851370938518,176.3199527634994,256.7565229528452,fqhc8_100Compliance_implementation_low_initial_treat_cost,42 -100000,95737,45211,428.5177099762892,5861,60.01859260265102,4580,47.24401224187096,1835,18.74928188683581,77.32392886815877,79.68727298766498,63.31606620966248,65.06463973593918,77.09631013357324,79.46223794889578,63.231046266789136,64.98308295325873,0.2276187345855334,225.0350387692066,0.0850199428733446,81.55678268045108,157.71294,110.98890094408492,164735.61945747203,115931.0412317964,397.23362,261.7193966086172,414338.0720097768,272789.6389155888,380.79963,185.74805001260737,393758.54685231415,190908.7324813468,3021.09874,1388.526356272546,3121445.083927844,1416177.1272053064,1071.81836,477.0579960371152,1107628.074830003,486384.0793393515,1797.89296,755.7689897366056,1840756.635365637,759354.5338785077,0.38178,100000,0,716877,7487.982702612366,0,0.0,0,0.0,34301,357.6778048194533,0,0.0,34806,359.62062734366026,1575072,0,56586,0,0,0,0,0,61,0.6371622256807713,0,0.0,1,0.0104452823882093,0,0.0,0.05861,0.1535177327256535,0.3130865040095547,0.01835,0.3422590068159688,0.6577409931840311,24.50830643626413,4.39865803172844,0.331004366812227,0.2288209606986899,0.2157205240174672,0.2244541484716157,11.229024310824771,5.827251350755018,19.589820263002053,12160.17626012447,52.14135431696193,12.712879045478577,17.170987263548557,10.990972806582162,11.26651520135264,0.5641921397379913,0.8034351145038168,0.6998680738786279,0.5678137651821862,0.1167315175097276,0.728125,0.9174528301886792,0.8661616161616161,0.6835443037974683,0.1704035874439461,0.5006060606060606,0.7259615384615384,0.6410714285714286,0.5312916111850865,0.101863354037267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022283671133529,0.0045625525960924,0.0069214687316053,0.0089719360279623,0.010894332099117,0.0131364562118126,0.0153130925922149,0.0175365173987158,0.0196198713819791,0.0218593222074331,0.0242061986733239,0.0262633729645372,0.0286833420719859,0.0308186724898026,0.0327217567177116,0.0347515091375175,0.0368329466357308,0.0390459584007971,0.0409188278601584,0.0428912248533655,0.0576180235107426,0.0713590760249824,0.0846737831092842,0.0976035499847527,0.1100097017758467,0.1256148516422489,0.1371410988264754,0.1483469094393867,0.1596966298135982,0.1696167247386759,0.1817849068791043,0.1944132024051564,0.2057905780793024,0.216454713453106,0.2260069070192032,0.2364081379508932,0.246211191214874,0.2554182702045777,0.2638474201055798,0.2712181140728002,0.2782450530608462,0.2847236051401595,0.2912987305463037,0.2959683225341972,0.3017582283871752,0.3060388440561684,0.3109024582868461,0.3152172527626598,0.3194494889223265,0.3236915511018864,0.3227212022285475,0.3216490299823633,0.3210914683183543,0.3196809126708362,0.3185557654829735,0.3155718246006341,0.3139882600509469,0.3143147574311806,0.3153771314455425,0.3155210840688241,0.3166994106090373,0.317741871765496,0.3188047958820698,0.3188082103053179,0.3221226607730559,0.3224067902520308,0.3236489751826477,0.3268698060941828,0.3310672772102853,0.335902121236196,0.3366426814828309,0.3381169243804279,0.3399836878097748,0.3455262958184715,0.3487276154571159,0.350255617643562,0.3537342826844417,0.3605294350059265,0.359192348565356,0.3554716981132075,0.0,2.3052987225578647,55.95731056679203,167.29481899911153,248.99600218177727,fqhc8_100Compliance_implementation_low_initial_treat_cost,43 -100000,95786,45328,429.1963334934124,5936,60.66648570772347,4674,48.13855887081619,1850,18.92760946276074,77.4066300966336,79.74681330139053,63.35719594835807,65.08827754776404,77.16750193976324,79.50978343763595,63.26884385417652,65.00326380026185,0.2391281568703647,237.0298637545858,0.0883520941815518,85.01374750218815,158.68754,111.65186774663177,165668.82425406636,116563.86919448747,396.31097,260.5825123426189,413052.27277472697,271354.2882377649,383.03928,186.6603071756932,396045.7373728938,191826.33453371903,3052.26148,1405.616625367423,3145719.4266385487,1426665.9448129216,1102.60163,489.8326800315081,1132988.3281481636,493374.9998583655,1811.7608,764.5748637433065,1854844.9251456368,766561.5466761192,0.38168,100000,0,721307,7530.401102457561,0,0.0,0,0.0,34177,356.0854404610277,0,0.0,34954,361.0235316225753,1576056,0,56619,0,0,0,0,0,71,0.7412356711836803,0,0.0,0,0.0,0,0.0,0.05936,0.1555229511632781,0.3116576819407008,0.0185,0.3334947538337369,0.6665052461662632,24.326704644065103,4.300437699069921,0.3237056054771074,0.2389816003423192,0.2199400941377834,0.2173727000427899,11.26286111660884,5.793500236701564,19.682072262979023,12175.60257034968,52.95377700281139,13.380179199592217,16.98303745785114,11.471075606502357,11.119484738865683,0.5691056910569106,0.7949865711727843,0.6946463978849967,0.5943579766536965,0.108267716535433,0.7334384858044164,0.9043062200956936,0.859375,0.7732793522267206,0.1415525114155251,0.5079271873165003,0.7296137339055794,0.6386182462356067,0.5377720870678617,0.0991217063989962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023912294567045,0.0045932956135547,0.0067383119716666,0.0089511597898865,0.0115336499832182,0.0135944278120608,0.0158540812789298,0.0182412085949063,0.0204014882047508,0.0225551598509967,0.0247606944472912,0.0268223608602856,0.0289625686036711,0.0310167694382392,0.0330271824844605,0.0350773933066922,0.0372117563079978,0.0392892685354121,0.0411407199625993,0.043174530462666,0.0578789206786452,0.0717624789533679,0.0854043289135789,0.0989028311999495,0.1107973701955495,0.1267989602485259,0.1375757832704456,0.1495688784460487,0.160874529177648,0.1711672147302349,0.1843886169239873,0.1963887987890582,0.2076343011126564,0.217246500251152,0.22727072988531,0.2365145228215767,0.2459685513549682,0.2545581259414132,0.2629848038103878,0.2695587477822926,0.2764410013297103,0.2832184176697441,0.2903248704540614,0.2958394213035042,0.301139262030267,0.306090257067508,0.3110259876821391,0.3150094142791715,0.3201455619156155,0.3247634256754081,0.3236051039519247,0.3223125713735364,0.3210899305408794,0.3209218321051871,0.3194009469668858,0.3169702252603569,0.3147098302408211,0.3149541884816754,0.3155381059215446,0.3163921039551232,0.3164793308189252,0.3161602644836272,0.3166763994327188,0.3168352118323161,0.3166949821731952,0.3179061933143301,0.3196951236789165,0.323722354117206,0.3290520731537065,0.3310070183739452,0.332865613542751,0.3354566991313503,0.335910706491239,0.3374182392301331,0.3401165479604107,0.346658919233004,0.3476740650653694,0.3533041401273885,0.3547501372872048,0.3602912993484093,0.0,2.507632254153669,54.903891961994745,176.77673184746186,250.980179728125,fqhc8_100Compliance_implementation_low_initial_treat_cost,44 -100000,95692,44846,425.2497596455294,5923,60.73652969945241,4679,48.353049366718224,1847,18.97755298248548,77.29491858535671,79.69707955108265,63.29396199958445,65.07391545196147,77.06722674530762,79.46915914438573,63.21017120434836,64.99179712288826,0.2276918400490899,227.92040669692423,0.0837907952360978,82.11832907321082,158.24028,111.32278537853844,165364.16837353175,116334.47454179914,398.0887,261.87862976484985,415458.24102328304,273116.373440784,381.71509,186.28100919221356,394718.6807674623,191441.8408900649,3077.17679,1407.1879012676347,3184204.95966225,1439056.498164109,1082.60195,484.6528797460704,1116140.4819629644,491301.5737149488,1808.44886,755.3158919696386,1860729.277264557,765410.6367934518,0.37806,100000,0,719274,7516.553107887807,0,0.0,0,0.0,34441,359.3403837311374,0,0.0,34888,360.5108055009824,1573115,0,56450,0,0,0,0,0,54,0.5643104961752289,0,0.0,0,0.0,0,0.0,0.05923,0.1566682537163413,0.3118352186392031,0.01847,0.3358606226810776,0.6641393773189224,24.426390756866724,4.329949836115604,0.3301987604188929,0.2335969224193203,0.2162855310963881,0.2199187860653985,11.086240177802988,5.735992036035694,19.648651573535155,12070.467237061725,52.99615772620037,13.115004952571647,17.607701626824852,11.108007553835348,11.165443592968533,0.5684975422098739,0.7868252516010978,0.7223300970873786,0.5681818181818182,0.1059280855199222,0.7511961722488039,0.9223300970873788,0.8902743142144638,0.7521367521367521,0.1400966183574879,0.5016058394160584,0.7048458149779736,0.6634615384615384,0.512853470437018,0.097323600973236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024025059048932,0.0045257592823728,0.0067333570304169,0.0089471811295816,0.0110650773130286,0.0132500280289054,0.0155516551695987,0.0175313132138697,0.0196014240700577,0.0219936692652045,0.0242496358451469,0.0261960284766238,0.0283185840707964,0.0304335727757108,0.0324425314051548,0.0344264159918923,0.0364648097488187,0.0387873754152823,0.0406636845937792,0.0426385675275675,0.0577612049426043,0.0710950586264656,0.0841570652059854,0.0968614206201403,0.1090433388192598,0.124234248531979,0.1361233760720047,0.1481654990311109,0.1583322648202761,0.1682421485209068,0.1805518147832925,0.1934087810789171,0.2044293200547957,0.2149563354573574,0.2241675097875335,0.2339106169996013,0.2439582264075157,0.2525936761561831,0.2613029952085746,0.2690195898623322,0.2757806258900351,0.2824272924103224,0.2889325583322482,0.2931383954807681,0.2986014070986791,0.3043542635754562,0.3088716041032578,0.3130280973226102,0.3177383878897658,0.3226099911664271,0.3219978746014877,0.320998172399104,0.3198919055862855,0.3183275563258232,0.3167391917781771,0.3152701812443504,0.3126129553885665,0.3135206177098735,0.3149214704424657,0.3149144603943581,0.3158102321388325,0.3159000376543332,0.3166274575701562,0.3165195177699099,0.3175285621120263,0.318544693102997,0.3202197362021115,0.3227231142938263,0.324964006039962,0.3261517669038438,0.3301778936296702,0.3307287513953117,0.3325361862806796,0.334120874933313,0.3310065088199226,0.3295210864903502,0.3322157878695519,0.3332655137334689,0.3374384236453202,0.3464447806354009,0.0,2.1027320612867437,54.82549075707442,174.64027255389715,256.8862558355807,fqhc8_100Compliance_implementation_low_initial_treat_cost,45 -100000,95716,44932,426.0207279869615,6010,61.55710643988466,4669,48.152868903840535,1853,18.962346943039822,77.3593554540744,79.73137666850616,63.33143217950936,65.08415453156037,77.12971287237134,79.50217464554771,63.247794679102114,65.00299402319983,0.2296425817030609,229.2020229584466,0.0836375004072493,81.16050836054,157.64738,110.7836950513098,164703.26800117013,115742.08601624575,398.90138,262.7265148109845,416092.7640101968,273825.2021091685,380.57022,185.6290192066697,393045.49918508925,190479.6827985012,3078.77892,1408.0749585224696,3179889.5900371936,1434532.880196403,1131.86661,491.8515377725452,1169389.3184002675,500795.1981740157,1814.88766,754.3192747135548,1860099.7743324,758922.801880506,0.37917,100000,0,716579,7486.51218187137,0,0.0,0,0.0,34484,359.6054996029922,0,0.0,34871,359.8562413807514,1577776,0,56643,0,0,0,0,0,67,0.6895398888378119,0,0.0,0,0.0,0,0.0,0.0601,0.1585041010628478,0.3083194675540765,0.01853,0.3380861850443599,0.6619138149556401,24.380669914161164,4.362847742664942,0.3216962947097879,0.2319554508460055,0.2263868065967016,0.2199614478475048,11.43790749248616,5.977893060841618,19.695496915989725,12117.065374582524,52.932149412126414,12.989165720611156,16.989080432543993,11.749654645736353,11.20424861323492,0.5665024630541872,0.8051708217913204,0.6930758988015979,0.5733207190160833,0.1226874391431353,0.7519500780031201,0.9520383693045564,0.8774509803921569,0.7333333333333333,0.1089108910891089,0.4963094183643342,0.7132132132132132,0.6243144424131627,0.5224438902743143,0.126060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.0045211714497146,0.0067581965965478,0.0091812069630923,0.011500564351301,0.0137742168650167,0.0162087772057699,0.0185064205949002,0.0202306229682484,0.0225432283295283,0.0246628723786084,0.0266333877710329,0.0286637310177373,0.0306305378116628,0.0323712425314992,0.0344446167364449,0.0364952167971176,0.0386673858025971,0.0405538864574345,0.0425924189869066,0.0574728246682051,0.0710959004469004,0.0839050076572891,0.09683083781965,0.1091545582994158,0.1243335872048743,0.1363462722044186,0.1478137742337297,0.1581770582892557,0.1682368341988926,0.1810590960512848,0.1938671688963934,0.2048646237857476,0.214615519278743,0.2246327335198114,0.2353899883585564,0.2454473387447941,0.2537001214629538,0.2625416921924988,0.2698149081412929,0.2769333981076642,0.2838575452622228,0.2897255902999361,0.2957047140464225,0.3011522134627046,0.3062241582988777,0.3106070079783908,0.3141684560944309,0.318949683094037,0.323707646097908,0.3220614512380261,0.3211494347605115,0.3197422181037024,0.3181157438724256,0.3174184758463406,0.3156328679331655,0.313942489595157,0.3136177864966487,0.3143980661854827,0.3154992707481057,0.3168924481700471,0.3173177520282674,0.3177736751562959,0.3176607819825478,0.3195223535642921,0.3197725968810306,0.3217502850627138,0.3237954180190968,0.3273909985935302,0.329498115453283,0.3321931864824189,0.336065137565856,0.3382781792823633,0.3382274629136554,0.3433339583723983,0.346167473721507,0.3471099588226323,0.3490755627009646,0.3508580768183056,0.3502461188943582,0.0,2.407779183840637,56.04954948196945,168.16265399418603,258.17871242232115,fqhc8_100Compliance_implementation_low_initial_treat_cost,46 -100000,95890,45110,427.6254041088748,6007,61.4766920429659,4698,48.42006465741996,1854,18.969652727083115,77.4394230829848,79.71909950084235,63.39129033748679,65.07703692242988,77.2039705370532,79.48538320918603,63.30439562454259,64.99325029098412,0.2354525459316079,233.7162916563216,0.0868947129441934,83.78663144576137,158.6497,111.55425536233156,165449.68192720824,116335.65060207692,400.6939,263.114553663923,417303.72301595577,273827.5040816801,377.88029,183.2987720347396,390506.6221712379,188389.5505388792,3081.89204,1402.40202219227,3178744.457190531,1427268.7894381806,1117.28429,488.3723922653583,1150259.5473980603,494391.4717544662,1817.95504,763.3905007967766,1862161.3306914172,767858.9602240133,0.38176,100000,0,721135,7520.440087600376,0,0.0,0,0.0,34608,360.33997288559806,0,0.0,34549,356.7421003232871,1577332,0,56663,0,0,0,0,0,62,0.6465741996037125,0,0.0,2,0.020857232245281,0,0.0,0.06007,0.1573501676445934,0.3086399200932245,0.01854,0.3363391868375257,0.6636608131624743,24.65806902201092,4.3672218560610245,0.3197105151128139,0.2358450404427416,0.2215836526181353,0.222860791826309,11.161697329753691,5.744215383740282,19.80747038156516,12148.475242123128,53.1918027386762,13.369764428500812,16.86870313445092,11.528110026818284,11.425225148906184,0.5542784163473818,0.7924187725631769,0.6937416777629827,0.5379442843419788,0.1184336198662846,0.7443365695792881,0.9466019417475728,0.8702702702702703,0.7148760330578512,0.1650943396226415,0.486424032351242,0.7011494252873564,0.6360424028268551,0.4843554443053817,0.1065868263473053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021461834379429,0.0044387693056062,0.0067762910964809,0.009016235315619,0.0112819783101426,0.013471439327649,0.0152788388082505,0.0172378620971032,0.0194107310694291,0.0217680394443421,0.0239861472571159,0.025979089500631,0.0281460016030581,0.0300275879107304,0.0319697313346666,0.0339102061046631,0.0359925097507733,0.0377999751315953,0.0399916943521594,0.0420702210663199,0.0568301454109553,0.0707897101540133,0.0845226751552339,0.0973123359580052,0.1094595448133566,0.1250395928796165,0.1373915622451249,0.1490478619399813,0.1601368855342693,0.170506961761149,0.1832899744146546,0.195062395332505,0.2065066261134043,0.2170530778139545,0.2273396956636467,0.2367256147495628,0.2456787509333452,0.2543469470279013,0.2633951833979021,0.2708754843798223,0.2781569374675212,0.2853857289623611,0.2914253976507291,0.2963663347376484,0.3018371111003252,0.3072567243183356,0.3118772892628105,0.3155274454520054,0.3193340313594705,0.323489526417653,0.3225325033276416,0.3221186196289531,0.3203671943093317,0.3188679789874733,0.3182114785703693,0.3160582156179294,0.3145038892050844,0.3151497280650023,0.3151208199041626,0.3159328916435135,0.3161112981038932,0.3183126922773527,0.318988029331272,0.3192796563007813,0.320368156825245,0.3221276153886091,0.3226490890573724,0.3235624298365972,0.3276119662277196,0.3317604498446777,0.3317539822210189,0.3331046131109469,0.3370484002254085,0.3401184870120006,0.3415370108439415,0.3430474604496253,0.3439529848437983,0.3411282051282051,0.3462819089900111,0.3526077097505669,0.0,2.268302399611056,53.96399521784652,179.3310643752756,256.1239043450519,fqhc8_100Compliance_implementation_low_initial_treat_cost,47 -100000,95737,45271,430.0740570521325,5951,61.03178499430732,4673,48.22586878636264,1808,18.56126680384804,77.34647984393533,79.6990618544931,63.33814763576003,65.07546437327412,77.12384608090787,79.47704375553695,63.25609624197294,64.99591799495424,0.2226337630274599,222.01809895614133,0.0820513937870899,79.54637831987554,158.32146,111.30700095895172,165370.77618893425,116262.87973603907,395.72715,260.2542614518288,412785.286775228,271281.31431866344,378.34325,183.9614677873677,391076.84594253,189066.5008336277,3055.19571,1388.4852588432657,3157260.985825752,1416424.1819230132,1104.19912,483.8441716107275,1141440.7804715002,493502.5994178232,1770.86398,739.587221742713,1819895.3800516,747137.0550989107,0.3815,100000,0,719643,7516.853463133376,0,0.0,0,0.0,34216,356.7899558164555,0,0.0,34620,357.5524614307948,1576741,0,56628,0,0,0,0,0,59,0.6058263785161432,0,0.0,0,0.0,0,0.0,0.05951,0.1559895150720839,0.3038144849605108,0.01808,0.3341330774152271,0.6658669225847729,24.44899958665862,4.344537578786971,0.3282687780868821,0.2386047506954847,0.2129253156430558,0.2202011555745773,11.031951924403222,5.692456484067548,19.329667908182188,12131.089611960791,52.8619608505476,13.372901624970408,17.216702807984742,10.98034279027284,11.292013627319616,0.5752193451744062,0.8116591928251121,0.7092568448500652,0.5778894472361809,0.1166180758017492,0.7473426001635323,0.9253012048192772,0.8877284595300261,0.7488584474885844,0.1262135922330097,0.5142028985507247,0.7442857142857143,0.6498696785403997,0.529639175257732,0.1142162818955042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022787117682803,0.0046934079412867,0.0069006809348393,0.0090611730765323,0.011105009457563,0.0129194494217299,0.0153720693170234,0.0174731319976729,0.019799450072063,0.0216950610205586,0.0238524775005637,0.0257944654294629,0.0278314689916104,0.0298695011793303,0.03196384721735,0.0337888121718278,0.035554175078946,0.037722538075279,0.0397081141764204,0.0418189961357789,0.0561686311767223,0.0700612276937568,0.0833525671961224,0.0962039957939011,0.1088338552044786,0.1243987271516317,0.135999151463725,0.1474513142492284,0.1576997800977817,0.1678740596266369,0.180948177492626,0.193896860841074,0.2046269532523417,0.2148616756260652,0.2246631646042596,0.234622280262954,0.2439712358548414,0.2529544713435957,0.2621543138455954,0.2697961987634532,0.2770846101365649,0.2836403590798578,0.2904992901088499,0.2969163840318308,0.3021640395404755,0.3083608252498892,0.313294898890737,0.3180424243195439,0.3223440375294819,0.3263848550456777,0.325587660806897,0.3241502683363148,0.3224356987914472,0.3207440811724915,0.3191546281433922,0.3167718997118862,0.3149185255497548,0.3148330381158564,0.3158191414857455,0.3167145482771542,0.3173183102809336,0.3187084295498056,0.3193527426690981,0.3211163040318432,0.3220135164385868,0.3223369494183767,0.3236832328312994,0.3272858759904414,0.3292054025609542,0.3305624826821834,0.333045140152894,0.3347122779103686,0.3377151799687011,0.3388190476190476,0.3419811320754717,0.3468441697373113,0.3494582633908134,0.3473491773308958,0.3509212730318258,0.3532863849765258,0.0,2.239525984758266,53.425731793675375,175.6082050668431,259.1954593693512,fqhc8_100Compliance_implementation_low_initial_treat_cost,48 -100000,95720,45143,427.4968658587547,6194,63.29920601755119,4895,50.32386126201421,1987,20.225658169661514,77.41222784566315,79.7676885289157,63.350809200748486,65.08938737093166,77.15966557660343,79.52187557183245,63.25678922231983,65.00175637108033,0.2525622690597231,245.81295708324544,0.0940199784286548,87.63099985132783,157.98068,111.07190410637956,165044.35854575847,116038.12903090216,398.53367,261.5877359651112,415548.4851650648,272480.0550398154,386.23486,187.9448074853102,398552.1207689093,192456.4552185689,3220.98124,1482.4525624046,3312591.454241538,1496387.1078412042,1178.12636,528.0799410115333,1209953.5624738822,530841.131437037,1943.74894,819.938411723254,1979076.61930631,811112.2529194173,0.38202,100000,0,718094,7502.016297534476,0,0.0,0,0.0,34350,358.0234015879649,0,0.0,35352,364.39615545340575,1578179,0,56550,0,0,0,0,0,70,0.7208524864187212,0,0.0,1,0.0104471374843292,0,0.0,0.06194,0.1621381079524632,0.3207943170810461,0.01987,0.3312845728334357,0.6687154271665642,24.2380458237474,4.398985361094581,0.3256384065372829,0.2294177732379979,0.2169560776302349,0.2279877425944841,11.081885166818765,5.750075110560879,21.121933939617065,12243.948474211214,55.6412168279164,13.643180505995526,17.877103315792123,11.871309871218417,12.24962313491034,0.5536261491317671,0.8210151380231523,0.6599749058971142,0.5536723163841808,0.1326164874551971,0.7353159851301115,0.9395973154362416,0.8296296296296296,0.7624521072796935,0.146551724137931,0.4847887323943662,0.742603550295858,0.6021867115222876,0.4856429463171036,0.1289592760180995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.0047230527542694,0.0070303940267012,0.0094341538711511,0.0118138655334031,0.0140886649361225,0.0163177528181503,0.0186118650639782,0.0208073582013285,0.0228354435562288,0.0250576479631053,0.0271108145562798,0.0290220106712175,0.0309153072993903,0.0331018542404011,0.0350819163781074,0.0368529506176674,0.0388558029507584,0.0411515787941485,0.0431593970393674,0.0578826477343913,0.0718688195222,0.0851867394041124,0.0978075620173796,0.110175483026792,0.126074165008678,0.1382933559753767,0.149352585399097,0.1606514978251343,0.1710008049369466,0.1840882381481202,0.196257634166414,0.2078951379362902,0.218338698727635,0.2276503382472841,0.2381855697550585,0.2475857289757231,0.2562799918895172,0.2651939349196434,0.2725584168405604,0.2796335333225231,0.2863647536666159,0.2925992117503639,0.2985242681232332,0.3037147679939767,0.3085638284771311,0.3129468526573671,0.3177379002044678,0.3217930499935409,0.3257105263157894,0.3250093929472384,0.3238629351835346,0.322579739442947,0.3222187013884888,0.3212385456695241,0.3186865071507988,0.3168346456692913,0.3168147083795963,0.3178418440198545,0.3187041543079409,0.3188856796794931,0.3198978087845141,0.3208646616541353,0.3203775432972708,0.32051466359977,0.3213414317603696,0.3225467952353942,0.3246042175082911,0.3284730235322913,0.3301104972375691,0.3311894193314612,0.3345500714172353,0.3407467735872698,0.3426864317047345,0.3457535774019699,0.3507699541554014,0.3565505804311774,0.3569858085148911,0.3612920738327904,0.3732527389497544,0.0,3.18281809970803,58.10669668211312,184.92135799791828,260.4017613731048,fqhc8_100Compliance_implementation_low_initial_treat_cost,49 -100000,95733,45425,430.1860382522223,5943,60.950769327191246,4698,48.52036392884376,1860,19.084328288051143,77.32373385663094,79.69336558242394,63.321321634088775,65.07489595984309,77.09062650505157,79.4606045672218,63.23507662882004,64.99099774187674,0.2331073515793633,232.76101520214357,0.0862450052687364,83.89821796635033,157.81348,111.0976247562152,164847.5238423532,116049.45500111268,399.24789,262.61390795918135,416479.3435910292,273755.46994975564,384.40488,187.3925487707006,397822.2660942413,192916.53515188707,3123.66104,1434.0911678880605,3229550.8654278046,1464688.9484959564,1139.52255,507.29985689369903,1179107.350652335,518720.471129762,1832.41478,774.8288444179541,1882284.1653348373,782740.1005687255,0.38224,100000,0,717334,7493.069265561509,0,0.0,0,0.0,34527,360.0639277991915,0,0.0,35054,362.4455516906396,1575148,0,56575,0,0,0,0,0,66,0.6894174422612892,0,0.0,2,0.0208914376442814,0,0.0,0.05943,0.1554782335705316,0.3129732458354367,0.0186,0.3379266143246274,0.6620733856753725,24.16671679862896,4.392048979066685,0.3190719455087271,0.2298850574712643,0.2164750957854406,0.2345679012345679,11.176706572861226,5.737111800049103,20.037905456545943,12161.371307834816,53.45254759863419,13.019325814845072,16.980837969729418,11.241326641641908,12.2110571724178,0.554704129416773,0.7703703703703704,0.7024683122081388,0.5909537856440511,0.1088929219600726,0.7161845191555903,0.9266503667481664,0.8590078328981723,0.7445887445887446,0.140625,0.494296577946768,0.6751117734724292,0.6487455197132617,0.5458015267175572,0.0992907801418439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796352583586,0.0046142768768951,0.0069427527405602,0.0089933540637765,0.0113035161972977,0.0135480650714584,0.0159915147064822,0.0183121750942162,0.0202979763377746,0.0225203543448205,0.0247151603408846,0.0268871315600287,0.0290722794889204,0.0309656544006265,0.0331017825624722,0.0351482947908159,0.037107615191027,0.0392065320012034,0.0413495529216053,0.043512237816886,0.0578027439597385,0.0711930753692055,0.0853309274781532,0.0989533477094619,0.1110091743119266,0.1266164077947069,0.1378637274974275,0.1497685800925679,0.1599316531396838,0.169427557442611,0.1821705426356589,0.1943209475904592,0.2064128910199954,0.2168228181609471,0.2266608007039155,0.2367054551091132,0.2465550303246521,0.2548863227893602,0.2629329403095062,0.2702600656743057,0.2776153552815558,0.283814887079249,0.2894920383483267,0.294424148050548,0.2999283571940305,0.3048343171203588,0.3102153229844767,0.3150925619413817,0.3209425305233688,0.3241395692567567,0.3229047420236764,0.3218751721478543,0.3207523228107772,0.320487402497793,0.3192866067709883,0.3170283192350128,0.3149278754903201,0.3142679107292196,0.3146648020874192,0.3153512916050131,0.3162883044878999,0.3161289046271934,0.3163265306122449,0.318672701200932,0.3186309954205832,0.3201557274247492,0.3211221688400824,0.324782814721213,0.3272445165385429,0.3304691871153385,0.3333027354507068,0.3355294873855053,0.3392573786099651,0.3394848135332564,0.3425174561237969,0.3439779930630307,0.3453766074709124,0.3466070702966274,0.3475980121479845,0.3489361702127659,0.0,2.1427333574088587,56.16352107588398,177.64546455425594,253.01267923081625,fqhc8_100Compliance_implementation_low_initial_treat_cost,50 -100000,95775,45156,428.1075437222657,5975,61.216392586791954,4650,47.90394152962673,1773,18.08405116157661,77.38153749659537,79.72311953966307,63.350937847410606,65.08272717648222,77.15875167644703,79.50465516488076,63.26813242974986,65.00431462492915,0.2227858201483457,218.4643747823145,0.0828054176607437,78.41255155307181,158.65278,111.59282511062848,165651.55833985904,116515.60961694438,400.86298,263.17502607806324,417879.5614722005,274117.6675312589,377.50056,183.32646745985213,390117.50456799794,188211.01783628084,3023.1943,1375.3666765081937,3116355.3328112764,1395902.039490458,1082.39902,471.7471401664542,1113760.1357347951,476203.637784763,1734.68266,727.7611571688491,1771917.7238318978,726408.947057693,0.37963,100000,0,721149,7529.616288175411,0,0.0,0,0.0,34688,361.50352388410334,0,0.0,34464,355.84442704254764,1575113,0,56521,0,0,0,0,0,59,0.6160271469590185,0,0.0,1,0.0104411380840511,0,0.0,0.05975,0.1573900903511313,0.2967364016736402,0.01773,0.3248356581689915,0.6751643418310085,24.685026097540607,4.358757042642797,0.3266666666666666,0.2412903225806451,0.22,0.2120430107526881,11.11706376370424,5.678885790607916,18.828295205038483,12108.518474736433,52.50242102918484,13.22034261226264,17.184960158020637,11.396691542672166,10.700426716229408,0.5666666666666667,0.7709447415329769,0.7024358130348913,0.5865102639296188,0.1044624746450304,0.7258333333333333,0.9063291139240506,0.8438356164383561,0.7258064516129032,0.1302083333333333,0.5113043478260869,0.6973865199449794,0.6577123050259965,0.5419354838709678,0.0982367758186398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0044296227218359,0.0066251369668438,0.0088662746412357,0.0113264330886389,0.0133961745574478,0.0157581440861091,0.0176772573714775,0.0199268327576692,0.0219268627089856,0.0243477548008935,0.026267167580218,0.0282952909726506,0.0304047444992432,0.0322331098504383,0.0344061579790256,0.0364353198050436,0.0384368197367057,0.0406482106684672,0.0425720205311872,0.0574681457209346,0.0713912188591628,0.084977460949785,0.0979110625420309,0.1097049525816649,0.1248031787295649,0.1368833783712181,0.1488210405459996,0.1595240636004695,0.169208673190495,0.1812623783690691,0.193441984708058,0.2045775642836959,0.2153175401022772,0.2243804788983358,0.234125226940619,0.2441991414394826,0.2519110571518503,0.2598884151319967,0.267685724419629,0.2753919800194255,0.2824348964420964,0.2900993612491128,0.2958070349832928,0.3020029133284778,0.3069649474889499,0.3118361532501937,0.316067841432095,0.3208015835025939,0.3242911937996757,0.3235349487669096,0.3217833344782579,0.3199786099266827,0.3179678928220823,0.3169344539811707,0.3151585578422678,0.314480602529487,0.3142581447075755,0.3148248894933696,0.314539215163315,0.3158405856646621,0.316341415336093,0.316996196129248,0.317727770452971,0.3178733302956905,0.3188096662591369,0.319168276332235,0.3210587241497982,0.3237882385808073,0.3271341704177525,0.3307946869758375,0.3326453934486955,0.333731982123749,0.3388102844971855,0.3421942513620139,0.3467295226870949,0.3481099134659177,0.3554483313228789,0.3601100412654746,0.3596657804785416,0.0,2.521021951843405,51.984694868950704,179.14024018542645,254.15916874574552,fqhc8_100Compliance_implementation_low_initial_treat_cost,51 -100000,95873,45046,427.10669322958495,5969,61.33113598197615,4717,48.76242529179226,1877,19.358943602474103,77.37299817448195,79.67428156542874,63.35320242165369,65.05702778646945,77.14040220240784,79.4388291999296,63.26798771226765,64.97223853170914,0.2325959720741082,235.4523654991425,0.0852147093860367,84.78925476030952,157.82272,110.94138693502649,164616.44049941067,115717.02870988337,398.02083,261.6204420967068,414666.31898449,272394.367649606,377.51882,182.98403580742277,390611.1209621061,188489.81762105064,3119.67326,1415.4880457434892,3227790.817018348,1450246.342289789,1134.58114,495.7580510643043,1173267.4788522315,506945.27245867415,1846.75216,769.2625647081229,1905748.625786196,785363.2801431563,0.37982,100000,0,717376,7482.565477245939,0,0.0,0,0.0,34392,358.28648316001374,0,0.0,34430,355.9813503280381,1579334,0,56764,0,0,0,0,0,70,0.7197021059109446,0,0.0,2,0.0208609306061143,0,0.0,0.05969,0.1571533884471591,0.3144580331713855,0.01877,0.3327464788732394,0.6672535211267606,24.37405878384508,4.340212456959226,0.3171507313970744,0.2310790756836972,0.2253550985796056,0.2264150943396226,10.991929797913803,5.65753130972509,20.02427210819601,12077.298535329632,53.25042292225787,12.973489332905718,16.67337303468017,11.781210726195331,11.822349828476646,0.5522577909688361,0.7880733944954128,0.6798128342245989,0.5719661335841957,0.1132958801498127,0.7157980456026058,0.9083769633507852,0.8598382749326146,0.701195219123506,0.1651785714285714,0.4946976210948696,0.7231638418079096,0.6204444444444445,0.5320197044334976,0.0995260663507109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019039902774964,0.0040945807615514,0.0062079668908432,0.0082448266758727,0.0104101010511762,0.0124083876221498,0.014615800148808,0.0169202665605323,0.019096956135242,0.0211594736734401,0.0234516674350699,0.0258549047369879,0.028025569349667,0.0299739580652798,0.0320505551374699,0.0340059482010822,0.0360653024064226,0.0380291176622972,0.0399169262720664,0.041979650013525,0.0566069212883314,0.0707605822179033,0.0837392497616877,0.0962346171615775,0.1088716895698415,0.1241999197279199,0.1363564125655559,0.1476572133168927,0.1581648987258019,0.1686576598776476,0.1813398467762761,0.1933102777477575,0.2046141140162135,0.2154327128037516,0.2252329559831457,0.2351970587909593,0.2446511835441626,0.2532146834816456,0.2614688265722842,0.2692765704078594,0.276463853261938,0.283067421513124,0.2885917159763314,0.2944946215950744,0.3000776963045695,0.305231519690568,0.3095229153365631,0.3135551173589466,0.3182141886030221,0.3223144859998151,0.3205313000956448,0.3202527985459953,0.3189031357115653,0.3183416540047753,0.3170376317706707,0.3150953511526384,0.3129691211401425,0.3132498481839518,0.314027720879421,0.3145764527358743,0.3160229059061307,0.3164429530201342,0.3167792816350438,0.3168550850670056,0.3176929893894757,0.319185986069238,0.3195350559813111,0.3245936684586123,0.3272497543170012,0.3318960401914633,0.3375531241522742,0.3400475812846947,0.3450876862153498,0.3486245523127333,0.3549147111488078,0.3594671068144305,0.3628142244022072,0.3676710097719869,0.3640642303433001,0.3623188405797101,0.0,1.749197399251457,54.30273517204653,173.7122223719379,265.8561922720671,fqhc8_100Compliance_implementation_low_initial_treat_cost,52 -100000,95798,45117,427.99432138458,6015,61.77581995448757,4766,49.2285851479154,1864,19.16532704231821,77.39816222968327,79.727766841043,63.35848721039546,65.07954011374265,77.16887775936357,79.498071446412,63.27325077183816,64.99627683236946,0.2292844703196976,229.6953946310083,0.0852364385573025,83.26328137319194,157.32662,110.64921933801594,164227.45777573643,115502.64028269476,395.06783,259.42314086965786,411854.3289003946,270260.20118869323,377.63104,183.21556704007315,390685.9224618469,188612.42090067916,3127.38935,1425.2149372227814,3233945.489467421,1457133.5328498357,1133.15835,498.414840862581,1171661.3708010605,509122.4192099125,1823.47348,766.3502628617505,1876674.2520720684,776071.7707266763,0.38176,100000,0,715121,7464.884444351656,0,0.0,0,0.0,34057,354.9656569030669,0,0.0,34659,358.2747030209399,1583606,0,56817,0,0,0,0,0,61,0.6367565084866073,0,0.0,1,0.0104386312866656,0,0.0,0.06015,0.1575597233864208,0.3098919368246051,0.01864,0.338615116463318,0.661384883536682,24.513402981270264,4.40138014846511,0.3199748216533781,0.2314309693663449,0.2297524129248846,0.2188417960553923,10.970204304158676,5.663204715419278,19.85159991514973,12132.243266959871,53.962019516957504,13.286229180311697,17.222458861526007,12.13951051172521,11.313820963394589,0.5673520772135963,0.7842248413417952,0.7239344262295082,0.5598173515981735,0.1169702780441035,0.7178683385579937,0.8901869158878505,0.8549222797927462,0.6807692307692308,0.1386138613861386,0.5123209169054441,0.717037037037037,0.6795434591747147,0.5221556886227545,0.1117717003567182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495574325008,0.0046315064050591,0.0068985107332711,0.009038102201641,0.0110506785950287,0.0133226128198343,0.0152240813581429,0.0171919478425891,0.0193301865587772,0.0215881071015664,0.0235943775100401,0.0254899948691636,0.0275114331226555,0.0296109510086455,0.0320628473045558,0.0339061822237828,0.0360312829743653,0.0379606395553804,0.0401646073429007,0.0420068310563145,0.0569803839732888,0.0706845704963293,0.0838077265817476,0.0964361908965749,0.1091104598452423,0.1253884695883808,0.1373499342468077,0.1489785060651202,0.1597321600205045,0.1697850211762183,0.1820923169707282,0.193904588862572,0.2058059819866801,0.2160163418683911,0.2251467129700859,0.2350572041868596,0.2445475224120244,0.2529066498751883,0.261547710876174,0.2685845826127787,0.2764801110083256,0.2830115875261625,0.2892942541253344,0.2955444239388347,0.3004443473193473,0.3058753986921665,0.3105651412853213,0.315180092015963,0.319109558014625,0.3223747543880471,0.3224634267795378,0.3218600942968288,0.3211308853345348,0.3200889055667008,0.3187503705021045,0.3171562562057956,0.315086887835703,0.3166661207376592,0.3171564110439916,0.3177078691738704,0.3184553848454263,0.3203774255314949,0.3208612040133779,0.3208925310648911,0.3227680172104697,0.3243081875292041,0.3241363713461864,0.3273855944099572,0.3321280812154504,0.3376562131572742,0.3423174488131908,0.3473734027449124,0.3500124316260566,0.3523500075562944,0.3512957245766676,0.3548884670147129,0.3550592525068368,0.3574888978603149,0.358266629864753,0.3670354826402137,0.0,1.937671506803874,56.126087916809375,177.48287356081246,261.67609023888645,fqhc8_100Compliance_implementation_low_initial_treat_cost,53 -100000,95875,44747,423.11342894393744,5976,60.93350717079531,4692,48.333767926988266,1847,18.82659713168188,77.3584022892406,79.64086501297393,63.35300198276878,65.04182931420256,77.12383811854187,79.41076568792654,63.26460529822048,64.95814205031691,0.2345641706987322,230.09932504739083,0.0883966845483001,83.68726388565051,157.75694,111.01373806963072,164544.3963494133,115790.07882099686,397.48164,261.4033389550785,413991.0404172099,272058.0015176829,376.42038,182.78904530759223,389445.9139504563,188223.42363643055,3114.14649,1426.8668893353156,3208972.43285528,1449098.0123445273,1123.5086,505.5010787189569,1154183.5202086049,509597.71156448376,1820.9156,774.9897202694584,1857658.2842242504,771882.4857937495,0.37759,100000,0,717077,7479.29074315515,0,0.0,0,0.0,34338,357.5280312907432,0,0.0,34496,356.5893089960887,1577000,0,56636,0,0,0,0,0,77,0.803129074315515,0,0.0,1,0.0104302477183833,0,0.0,0.05976,0.1582669032548531,0.3090696117804551,0.01847,0.3354076910802617,0.6645923089197383,24.67042532564466,4.445674294181661,0.3150042625745951,0.2274083546462063,0.2310315430520034,0.2265558397271952,11.123583625657943,5.651921140010127,19.663510990532743,12060.285257472577,52.975163440592176,12.629254067823002,16.592844433480504,11.960159322680209,11.79290561660848,0.5573316283034954,0.7769447047797563,0.6840324763193505,0.6014760147601476,0.1157102539981185,0.722940226171244,0.9470899470899472,0.8601583113456465,0.7280334728033473,0.152892561983471,0.4979733642154024,0.683599419448476,0.6232939035486806,0.565680473372781,0.1047503045066991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023489151454403,0.0048636653798218,0.0072927549167773,0.0093005310237691,0.0115267330758284,0.0136781363539217,0.015872692448755,0.0179815390891937,0.020154579704522,0.0221224915404982,0.024077145138505,0.0264606678217365,0.0283874413302248,0.0302531554421733,0.0325233413714215,0.0345778181592913,0.0368673128445966,0.0391037134536258,0.0411136727106569,0.0427716797586224,0.0577668890742285,0.0715487248069709,0.0849758079718492,0.0978693465225929,0.1095672509691555,0.1252416620006972,0.1372235234269847,0.1488318676293878,0.1588099660539294,0.1687214562919445,0.1815518819665069,0.1926738500151456,0.2039012297354601,0.2143575614449401,0.2232620026831467,0.2333200513569752,0.2419770438041696,0.2516250196801691,0.2597379020820332,0.266829374491538,0.2734216769862855,0.2799714529734536,0.2868547603818729,0.2928771921406808,0.2974297247349479,0.3031802032961611,0.3083130748602792,0.3126871472076044,0.3172409318019596,0.3211811065270284,0.3200296735905044,0.3188533627342889,0.3180465654129825,0.3172697154265708,0.316336854634727,0.3139793523447207,0.3121739268327492,0.3115988491574188,0.3126079742743273,0.3139435262199693,0.3155075205574391,0.3162097523372799,0.3170634587978875,0.3177967048934791,0.3200625451046427,0.3203701778101279,0.3198874296435272,0.3247249819788761,0.3272517563175002,0.3300490661601772,0.3327115559599636,0.3361864003804089,0.3418851788970634,0.346319018404908,0.3476158877618732,0.3531175059952038,0.3557662418402238,0.3560251981304613,0.3592847317744154,0.3605182926829268,0.0,2.311809411648201,53.85597304612643,174.90516397317492,259.5389908797676,fqhc8_100Compliance_implementation_low_initial_treat_cost,54 -100000,95732,45508,431.6529478126436,5952,60.88873104082229,4633,47.80010863661054,1810,18.489115447290352,77.38965647392791,79.75633952208929,63.34469261111818,65.093784165139,77.16469952288392,79.53463500897638,63.26097358344009,65.01433266348438,0.2249569510439926,221.7045131129112,0.083719027678093,79.45150165461712,157.96902,111.12555881061586,165011.72021894457,116079.84666633504,400.4052,263.9519730084256,417669.2119667405,275133.0277675675,386.91824,188.4829963571603,400560.1052939456,194116.8500875543,3022.48493,1378.2110742513555,3118311.0349726323,1400785.4979919766,1108.70197,492.2470354346145,1138789.2763130406,494952.86874760495,1769.59206,738.0321573826476,1808813.813562863,736519.3485217171,0.38256,100000,0,718041,7500.532737224752,0,0.0,0,0.0,34477,359.5140600844023,0,0.0,35279,364.9354447833536,1574916,0,56516,0,0,0,0,0,77,0.8043287510968119,0,0.0,0,0.0,0,0.0,0.05952,0.1555834378920953,0.3040994623655914,0.0181,0.3298688839142948,0.6701311160857052,24.77820158405407,4.324463375693637,0.3224692423915389,0.2382905244981653,0.2221023095186704,0.2171379235916253,11.179647721891026,5.881050860398453,19.02937855947929,12182.715821493242,52.21605759396383,13.235807191761127,16.79665928286327,11.37182029933206,10.811770820007366,0.56378156701921,0.782608695652174,0.6854082998661312,0.5811467444120505,0.125248508946322,0.7368421052631579,0.918987341772152,0.8582474226804123,0.6962025316455697,0.1785714285714285,0.5021949078138718,0.7066290550070522,0.6247739602169982,0.5467171717171717,0.1123456790123456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093752532209,0.00481534422108,0.0072560103106384,0.009295568604344,0.0114132259147364,0.0135839680664738,0.0156911124478747,0.0178030032359816,0.0201978902608553,0.0225195254521818,0.0244469956333668,0.0263844116378867,0.028332630843091,0.0303563889489563,0.0325525265340223,0.0348081315433189,0.0368115311733093,0.0388334405411574,0.0407437818960409,0.0427937315050222,0.0576762445706648,0.0715848310078817,0.0849972195700301,0.0978327196212519,0.1098381754119459,0.1254600837669755,0.1379222542861992,0.1493550721552935,0.1601413986073732,0.1700788246018553,0.1824564426162427,0.194845940799723,0.2067090741042788,0.2172600822325255,0.2268446185331074,0.2364087400467346,0.2457703674789494,0.2543797548011552,0.2619190693772038,0.2701592604457462,0.2778413755622622,0.2841598391790652,0.2904647672618555,0.2962838848662558,0.3017242425345516,0.3068779160665263,0.3115014376797099,0.3165554496345726,0.3209889314161581,0.325337726523888,0.3238887619457251,0.3230691015018481,0.3218227577576873,0.3214661800556814,0.319947265509273,0.3183234081539166,0.3157803404376154,0.3164042080501829,0.317186147920661,0.3178674044907949,0.3186821359512122,0.3189751644252478,0.3194216165609071,0.3205136750427692,0.3217262544481861,0.3225672663175903,0.3235960786535955,0.3263412033988649,0.3294984216064539,0.3327770493106051,0.3364831552999178,0.3381921084948475,0.339973523293198,0.3424843502526585,0.3436515291936978,0.3450819672131147,0.3469387755102041,0.3492126768985449,0.3560421735604217,0.3640151515151515,0.0,2.197447145779482,53.04351668031309,173.6799864370499,254.58462353421316,fqhc8_100Compliance_implementation_low_initial_treat_cost,55 -100000,95758,45458,431.8281501284488,6068,62.13580066417428,4715,48.61212640197164,1847,18.80782806658452,77.34687979821054,79.70496651186205,63.33382307926016,65.08067758753398,77.11905086843207,79.48222753496343,63.24859071873302,65.00037060523455,0.2278289297784681,222.73897689862565,0.0852323605271365,80.30698229943312,159.49296,112.16101327842468,166558.3658806575,117129.65316571428,401.86133,264.22329621156973,418955.0324777042,275219.7479182625,379.59177,184.45363198019427,392723.20850477245,189714.5746524528,3102.51985,1415.3408405157488,3198648.666429959,1436729.025789749,1118.37649,489.9176811582535,1148361.609473882,492083.5655332581,1811.96346,760.1080894075768,1847340.796591408,756550.3294675582,0.38387,100000,0,724968,7570.834812757159,0,0.0,0,0.0,34712,361.8287767079513,0,0.0,34728,358.9987259550116,1568552,0,56368,0,0,0,0,0,68,0.6996804444537271,0,0.0,0,0.0,0,0.0,0.06068,0.1580743480865918,0.3043836519446276,0.01847,0.3294469828265322,0.6705530171734678,24.66493531787133,4.385764892596726,0.3255567338282078,0.2284199363732768,0.2267232237539766,0.2193001060445387,11.102577178602065,5.669459890601216,19.589454998553546,12216.910144151623,53.40280345895505,13.003544247734196,17.23116060700573,11.92893181800096,11.239166786214174,0.5643690349946978,0.7920148560817084,0.6840390879478827,0.5865294667913938,0.1266924564796905,0.7298387096774194,0.901015228426396,0.8537859007832899,0.7601626016260162,0.1658986175115207,0.5053237410071942,0.7291361639824304,0.6276041666666666,0.534629404617254,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021077378298407,0.0042489757838802,0.0065177664974619,0.0085774972814211,0.0109872222674371,0.0132991181442333,0.0154755836476705,0.0177317272356063,0.0199341661384964,0.022075009982901,0.0244730150918635,0.0262957943157548,0.0285273549979432,0.0303688976337395,0.0322417512100977,0.0341548130995699,0.0361407105947166,0.0383003444126312,0.0400220381092965,0.0419972925127564,0.0569484165918627,0.0711013013096782,0.0848230668414154,0.0983572096738593,0.1100337268128161,0.1252073932387162,0.13726799588726,0.1484375830648676,0.1594162701883894,0.1703210188626699,0.1826523806450224,0.1946590872248219,0.2057321657504182,0.2157008365915991,0.2256540418191207,0.2362034813593457,0.2457513716044426,0.2551351959075833,0.2640580137771372,0.2717432390639497,0.278729879537591,0.2854134001076502,0.2924730419137578,0.2980975557127273,0.3033665578069419,0.3080122565004984,0.3124249399519616,0.3172409408773045,0.3225042695233659,0.3272720085385618,0.3265923545467991,0.3250161532010833,0.3242350095623805,0.3232834443579317,0.3220751108277611,0.3199333567705547,0.3180359993046666,0.3180312817654195,0.3193300243906599,0.3201019081045448,0.3211539540887916,0.321978672985782,0.3235805027102823,0.3251414387620474,0.3257710628879373,0.3264708956003762,0.3282946622471139,0.3315741238188541,0.3337207664130741,0.3384750288971262,0.3397116044861524,0.3419890384717714,0.3453637570317932,0.3462768387391502,0.3436419695412501,0.347738812138387,0.350320415013732,0.3499898021619416,0.3523969722455845,0.3600953895071542,0.0,2.483932051799653,54.03588152091356,178.77662823030792,258.5696864682223,fqhc8_100Compliance_implementation_low_initial_treat_cost,56 -100000,95747,45172,428.34762446865176,5893,60.29431731542503,4616,47.57329211359102,1846,18.83087720764097,77.36211040614715,79.72298387663494,63.32787542470121,65.0753384123473,77.12674910790862,79.49274047755236,63.239717091046685,64.99212516854517,0.23536129823853,230.24339908258185,0.0881583336545261,83.21324380213468,158.48624,111.4449861148426,165526.0634797957,116395.27725656428,397.43124,262.4511046889483,414468.4637638777,273492.62607595883,379.10268,185.04316082322728,392400.492965837,190477.45191604985,3034.27307,1399.9688495306912,3129304.7301743138,1422406.1114506875,1091.53937,486.4015728791919,1122487.889959999,490470.388502189,1798.70198,765.8273082632945,1836957.87857583,763962.2256484831,0.38005,100000,0,720392,7523.91197635435,0,0.0,0,0.0,34405,358.6744232195265,0,0.0,34661,358.4133184329536,1571887,0,56416,0,0,0,0,0,60,0.6266514877750738,0,0.0,1,0.0104441914629178,0,0.0,0.05893,0.1550585449282989,0.3132530120481928,0.01846,0.3369898370704952,0.6630101629295048,24.26963087996512,4.380625760819292,0.3158578856152513,0.2378682842287695,0.2281195840554592,0.2181542461005199,11.153769293228406,5.805086409985169,19.73651256885533,12096.756112813327,52.282725933048205,13.101667739066924,16.456893330602703,11.756525707599742,10.967639155778835,0.5617417677642981,0.7604735883424408,0.7133058984910837,0.5726495726495726,0.1142005958291956,0.7233716475095785,0.9090909090909092,0.8593350383631714,0.7159533073929961,0.1491228070175438,0.4980368468740562,0.6651718983557549,0.6597938144329897,0.5263819095477387,0.10397946084724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021579891188717,0.0045024033098748,0.0069231550096436,0.0090634748061818,0.0112506993540511,0.0132093534851509,0.0155405543205596,0.0176427346238666,0.0195703520413901,0.02161669533874,0.0238534744441709,0.0262444275530538,0.0281784325425402,0.0302652459759691,0.0322940211165123,0.0341897131041612,0.0360671015843429,0.0383781372233692,0.0404669341593729,0.0426327521196591,0.0572362102801787,0.0710392232765926,0.0836575671452392,0.0962167506336969,0.1080040505474568,0.1233011454378153,0.135010980383836,0.1456281738723105,0.1563241233412398,0.1669615570210712,0.180218217851642,0.1920845869137031,0.2037055169337554,0.2138223034254893,0.2240299411084814,0.2340295861266552,0.2432429413867048,0.2531058696435002,0.2620374258122354,0.2689369208389173,0.2761403102570039,0.2827760488569623,0.289329466769249,0.2950135514354928,0.3003619843545017,0.3050329198826227,0.3096630395311854,0.3147832285328785,0.3191183517010062,0.3233046989430347,0.3227540312260046,0.3209227423506255,0.3201717946912624,0.3195602236444804,0.3182351456108825,0.3164719751366413,0.3145926957402367,0.3155857997868328,0.3161896319530863,0.3176891451759304,0.3178362627715412,0.318342845896477,0.3199958255061574,0.3216561928956634,0.3226007378659384,0.3244169739780813,0.3260462742429397,0.3302488433162436,0.3332403598075448,0.3364445494643982,0.338633181263833,0.3415518872884029,0.3421430802874102,0.3430893085546611,0.3465144342337324,0.3484669811320754,0.3506828528072838,0.3566433566433566,0.3637105549510337,0.3649691358024691,0.0,2.4748725046589715,56.93975723873755,162.6579340202423,252.35745316163693,fqhc8_100Compliance_implementation_low_initial_treat_cost,57 -100000,95768,45008,426.1653161807702,5874,60.35418929078607,4565,47.1765098989224,1787,18.35686241750898,77.32840490063373,79.68988736693622,63.31625382636724,65.06524291232681,77.09912740279724,79.45920599908642,63.23166405629844,64.98206167674547,0.2292774978364917,230.68136784979745,0.0845897700688027,83.1812355813355,157.38888,110.71816189653332,164343.91445994488,115610.81143652716,395.53157,260.7425317638629,412547.1869518002,271801.804113966,376.73234,183.6484320062669,390101.9025144098,189240.62938708943,2982.836,1365.654708667828,3085288.520173753,1396643.7835893263,1075.86282,481.0539712157496,1111738.5556762177,490645.02883609297,1745.57018,733.9070275530054,1795066.2016539972,743466.8737092385,0.37822,100000,0,715404,7470.177929997494,0,0.0,0,0.0,34192,356.52827666861583,0,0.0,34371,355.6407150613984,1578036,0,56644,0,0,0,0,0,70,0.7309330882967171,0,0.0,1,0.0104419012613816,0,0.0,0.05874,0.1553064354079636,0.3042219952332312,0.01787,0.3423364790107387,0.6576635209892613,24.718032103338462,4.358496866369915,0.327710843373494,0.2293537787513691,0.2295728368017524,0.2133625410733844,11.192683751656178,5.823872069248756,19.093349838205423,12050.163152662772,51.59933070646779,12.384395375096702,16.78889877274579,11.642284096485668,10.783752462139624,0.5649507119386638,0.7717287488061128,0.7018716577540107,0.5811068702290076,0.1149897330595482,0.7352459016393442,0.9195710455764076,0.8677248677248677,0.772,0.1506849315068493,0.5028400597907324,0.6899109792284867,0.6457960644007156,0.5213032581453634,0.1046357615894039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021381595614239,0.0047161200024341,0.0069345733663647,0.0091058761356938,0.0115053610302944,0.0136183996088657,0.0157652145537608,0.0178257851104667,0.020139648527352,0.0222738579017943,0.0243557414355126,0.0264084687811239,0.0285173644319665,0.0310237209925118,0.0329804140094524,0.0350402083807082,0.0370362702881748,0.0391176745102512,0.0410570288469532,0.0430231831531587,0.0577091683366733,0.0717557730923694,0.08441326958564,0.0965199020401299,0.1085999072786277,0.1234845842449609,0.135332605168556,0.1467264058575624,0.1576541456172767,0.1671920569565963,0.1802741968487825,0.1918578862527452,0.2031722547377124,0.2124774454590191,0.2216034163951747,0.2323325174709002,0.242054635539883,0.2511508030297914,0.2592100632358117,0.267703272527271,0.2752024994214302,0.2813552582335329,0.2873549609282501,0.2931309616653668,0.2988440079254136,0.3040481386946818,0.3091593003573443,0.3137119995922839,0.3181936086324963,0.3220354648322484,0.3211242922620652,0.319508131256799,0.3182241277183877,0.3181371557379418,0.3166198272144652,0.3145607553995432,0.3122385600202814,0.3123037208766997,0.3130610221074769,0.3139206576125804,0.3141460307945903,0.3152918418507333,0.3154014827190143,0.3155095747771099,0.3174423913304659,0.3190680723675647,0.3202824681796178,0.3224936498479099,0.3271589836787474,0.3303380571609532,0.3340285649512582,0.3381298756061564,0.3409842200461548,0.3416308365391868,0.3469692724385916,0.3507392630837831,0.3529232643118148,0.3514891880864953,0.3539823008849557,0.3509933774834437,0.0,1.945791025396752,53.67005113848563,166.21449656518084,254.6977951116266,fqhc8_100Compliance_implementation_low_initial_treat_cost,58 -100000,95736,45210,429.107127935155,5949,60.92796858026239,4627,47.798111473218015,1819,18.676359989972426,77.31464774318667,79.67971522966815,63.30648041847581,65.05550890535557,77.08364342035739,79.44811557393867,63.220758721432375,64.97170654475212,0.2310043228292784,231.5996557294824,0.0857216970434322,83.8023606034426,158.2273,111.368284517875,165274.60934235816,116328.53317234376,395.98261,260.6113972294482,413087.9919779393,271687.4605471799,382.61966,186.5493078288605,396046.7326815409,192184.43481874192,3027.2308,1392.7198977197352,3130602.323055068,1423291.6956210153,1105.17874,490.1269829200672,1143496.0829781902,501072.8079730627,1774.35904,750.2124424604146,1823855.686471129,758592.4769883427,0.37991,100000,0,719215,7512.482242834461,0,0.0,0,0.0,34241,357.0965989805298,0,0.0,34902,360.91961226706775,1572507,0,56366,0,0,0,0,0,71,0.7416227960223949,0,0.0,1,0.0104453914932731,0,0.0,0.05949,0.1565897186175673,0.3057656749033451,0.01819,0.3434684684684684,0.6565315315315315,24.43049111056316,4.306102055267364,0.3252647503782148,0.230819105251783,0.2264966500972552,0.2174194942727469,11.33907091323841,6.0725823831302135,19.43287205052848,12110.820697134595,52.57967210798319,12.83313797933666,17.000196257314254,11.64869011951418,11.097647751818096,0.5662416252431381,0.7865168539325843,0.7009966777408638,0.5868320610687023,0.1093439363817097,0.7428115015974441,0.9319899244332494,0.8952618453865336,0.7096774193548387,0.1213592233009708,0.5007407407407407,0.7004470938897168,0.6304347826086957,0.54875,0.10625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020361647166084,0.0044205168760328,0.0069631945431291,0.0093384818615994,0.0115367007477491,0.0138045560128774,0.0159047551034982,0.0180821302403463,0.0202093512972011,0.0220609311657999,0.0241661796520152,0.0260801708559224,0.0283078062478784,0.0304169972488691,0.0326073492981007,0.0345904147541661,0.0364291557506912,0.0382687738012472,0.0402711779813461,0.042286095281751,0.0567568414128653,0.071089898577574,0.0843570671730258,0.0972647253683313,0.1089482674989982,0.1254046163285167,0.1371635391016387,0.1489080784096595,0.159288913594236,0.1698394643087092,0.1826406711669937,0.19481856302348,0.2057259891929579,0.2158613963376546,0.2256769868571932,0.235417568873047,0.2448963611754309,0.2540998398411946,0.2623730278798357,0.2691101641377884,0.2765138338087618,0.2828130127033235,0.2889697774510618,0.2935279781984945,0.2994612737288857,0.3047297130591399,0.3086983729662078,0.3125039754729222,0.3175231589297728,0.3214022140221402,0.3203626239121955,0.3191331473567041,0.3176796356685033,0.3164445598246221,0.3158058863710611,0.3147274954072259,0.3132133415649586,0.3143068331143233,0.3151354585078198,0.3159040616746377,0.3159709210822154,0.3173424446507218,0.3187364198562594,0.319485613675366,0.3209841018631753,0.3233758474686339,0.3266700837177516,0.3297365119196989,0.3336713641291045,0.3362263702294614,0.3397678124288641,0.3421471806307741,0.3458056346945236,0.3433785752626332,0.3432115129710282,0.3462363030014292,0.3492454573452417,0.3512174989682212,0.3495821727019498,0.3520686963309914,0.0,2.026295870718925,54.95277708005072,172.1455315090818,254.24512742673957,fqhc8_100Compliance_implementation_low_initial_treat_cost,59 -100000,95814,45325,428.9978500010437,5994,61.33759158369341,4719,48.66720938484982,1898,19.44392260003757,77.3504688262772,79.68439846496503,63.33176974345843,65.06069743186664,77.11460155682647,79.44933507218411,63.243924855178335,64.97540574618213,0.235867269450722,235.0633927809156,0.0878448882800952,85.29168568450984,157.66674,110.99614587713542,164555.0128373724,115845.4358205851,400.55579,263.7175502966198,417439.77915544703,274623.23908470565,387.17011,188.1482314967413,400765.2222013484,193742.7118569317,3102.97322,1430.0606638240054,3203111.2259168806,1457111.1046652934,1128.85059,505.69168960494,1162401.2252906673,512045.9374753694,1852.1894,783.2241586779342,1899465.2555993905,788752.5696918676,0.38159,100000,0,716667,7479.773310789656,0,0.0,0,0.0,34561,360.07264074143654,0,0.0,35384,365.9799194272236,1573933,0,56611,0,0,0,0,0,69,0.7097083933454402,0,0.0,0,0.0,0,0.0,0.05994,0.1570795880395188,0.31664998331665,0.01898,0.3327487244897959,0.6672512755102041,24.28280969722749,4.415437295934992,0.3297308751854206,0.2307692307692307,0.2180546726001271,0.2214452214452214,11.320840375345565,5.8400183336633,20.162142709814205,12166.738821499368,53.82300314047363,13.062037092445076,17.810957929292794,11.539446014483888,11.410562104251875,0.5619834710743802,0.7823691460055097,0.6928020565552699,0.5801749271137027,0.1196172248803827,0.7245600612088753,0.9221105527638191,0.8387096774193549,0.7317073170731707,0.1572052401746725,0.4997069167643611,0.7018813314037626,0.6363636363636364,0.5325670498084292,0.1090686274509804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110055311303,0.0047250641331129,0.0068101085963665,0.0090324416040966,0.0110258966169619,0.0131490497239819,0.0152873387384631,0.0174515970917408,0.0194981800335364,0.0216100567123231,0.0238917998831044,0.0262155362735534,0.0282391172447835,0.0305046343975283,0.0327956767460088,0.0351087461900087,0.0371819555721176,0.0393615035160868,0.0414016710313006,0.0432840948127791,0.0583013435700575,0.0714815937771179,0.0851636836148719,0.0978272289814873,0.1104660963378144,0.1264359313077939,0.1382838843763917,0.1494298114973831,0.1597552902991608,0.1704873056189649,0.1828131726216099,0.1952342854671654,0.2063117870722433,0.2163586083268661,0.2259150467012112,0.2366152550635997,0.2464339129852445,0.2544621756060231,0.2629570747217806,0.2704953716432957,0.2776099362202081,0.2855237761010704,0.2920216794471267,0.2966518071134119,0.3021560000972266,0.3067377198825648,0.3112135600015033,0.3159564303458819,0.3206708399756341,0.3240019023964911,0.3233016780877354,0.3224943829517416,0.3209772060482961,0.3195834538617298,0.3177642336851494,0.3164626767359568,0.3136496870791412,0.3141955732290451,0.3151932474455797,0.3157904139200028,0.3161383339262643,0.3166916818074097,0.3177660086663457,0.3183971751664953,0.3202414738563663,0.32158487027196,0.3218550955414013,0.3259136004018585,0.3279049449589376,0.3313930466460759,0.3335146159075459,0.3353935552033809,0.335422411631988,0.337138968698019,0.3385723641126391,0.3441756693283231,0.3450319051959891,0.3537442280666533,0.3565240931239848,0.3599391866210566,0.0,2.230378410812909,57.37083666775168,176.63737585219175,253.92308462230912,fqhc8_100Compliance_implementation_low_initial_treat_cost,60 -100000,95702,45157,428.02658251656186,5997,61.08545275960795,4698,48.337547804643584,1921,19.66521075839585,77.30949638025908,79.66967376894094,63.31695901961641,65.0593952565904,77.06906715822116,79.43085930680877,63.22614184466971,64.97183226316307,0.2404292220379176,238.8144621321686,0.0908171749467001,87.56299342734053,158.54872,111.61790381581253,165669.18141731626,116630.6909111748,399.52757,262.7108544898475,416753.1608534827,273791.973511366,387.71972,189.28002646884957,399489.7703287288,193593.87314976176,3091.8634,1432.4446048554546,3185327.297235168,1451768.7188243784,1176.34834,528.4782721853793,1211186.5582746444,534390.3156836793,1889.24354,800.5832197406995,1936146.496415958,804087.2897557231,0.37915,100000,0,720676,7530.417337150739,0,0.0,0,0.0,34517,359.9193329293014,0,0.0,35364,363.9317882593885,1568281,0,56335,0,0,0,0,0,83,0.8672755010344612,0,0.0,1,0.0104491024221019,0,0.0,0.05997,0.1581695898720823,0.3203268300817075,0.01921,0.3365019011406844,0.6634980988593155,24.48319973950875,4.370303424020224,0.3126862494678586,0.2337164750957854,0.2181779480630055,0.2354193273733503,11.331993199008588,5.943217221142061,20.45076587542461,12070.456598249928,53.55446819682977,13.141078641644096,16.72551817932217,11.36901292089546,12.318858454968042,0.55534269902086,0.7741347905282332,0.7161334240980258,0.5639024390243902,0.1166365280289331,0.7291021671826625,0.9117647058823528,0.8886075949367088,0.7396694214876033,0.1619433198380566,0.4894304169113329,0.6927536231884058,0.6527001862197392,0.5095785440613027,0.1036088474970896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025622588387802,0.0047441407833914,0.0070712604496388,0.0094052165434305,0.0117724800487978,0.0137103423005282,0.0159710543749681,0.0179652331907683,0.019991006091329,0.0220650694394694,0.0243034912564833,0.0264392718162496,0.0287715040771627,0.0306996766286997,0.032796353210536,0.0350670551526047,0.037124050423299,0.0391085207002406,0.0411050022345323,0.0430525317972062,0.0571828367950043,0.0712872737929518,0.0846060250062935,0.0974719750983237,0.1099803851264421,0.1257298189202911,0.1373235699883264,0.148160766569071,0.1585700701930576,0.168591744152376,0.1815634933462636,0.1928874642640561,0.20442373840728,0.2143537422412944,0.2237384083349853,0.2339394611375984,0.2435313044644054,0.2524927049651303,0.2601854166193278,0.2679797759765199,0.2746262780653304,0.2811651530755547,0.2876919979630748,0.2934817818622452,0.2992682096664397,0.3042410934570216,0.309448700615893,0.3139666653933814,0.3182772836881271,0.322461229292542,0.3215750283278476,0.3193860821404461,0.3176052263972569,0.3174192242052587,0.3164027620691708,0.3138674931721238,0.3112671134970299,0.3110379455099185,0.3121368458941089,0.3122423373364402,0.3134460259857473,0.3141188622278722,0.3148915581547005,0.3154998540080408,0.3178135203773128,0.318731867959541,0.31865864144454,0.3214296971034135,0.3244269441710026,0.3283948661067976,0.3314244159621852,0.3340944087505973,0.3389179315991686,0.3395277989337395,0.3386975343497083,0.3390111189969245,0.3426306965401615,0.3410995299407316,0.3459741687276724,0.348357524828113,0.0,2.9274930241465387,55.87638545897824,173.36191875164215,258.03340450655014,fqhc8_100Compliance_implementation_low_initial_treat_cost,61 -100000,95722,45176,428.48039113265503,5995,61.15626501744636,4655,47.930465305781325,1880,19.19099057687888,77.40440741590693,79.76184236769217,63.3594678928421,65.09931626795849,77.16804531922581,79.52964769589994,63.27002962617596,65.01468026990013,0.2363620966811197,232.19467179222875,0.0894382666661428,84.63599805835997,157.21574,110.62408214773954,164242.01333026888,115568.08481617554,399.10842,262.85187917030026,416256.9628716491,273910.8555716557,381.7703,186.2916984743749,394600.7291949605,191386.2720616873,3060.91303,1408.3941947646172,3156071.6136311404,1429698.5382300988,1109.47789,497.2403747909135,1141202.3986126492,501602.81313690986,1837.78864,780.0763180608691,1878351.2881051376,777785.2426878181,0.37991,100000,0,714617,7465.546060466769,0,0.0,0,0.0,34443,359.0919537828295,0,0.0,34830,359.58295898539524,1580124,0,56669,0,0,0,0,0,83,0.8670942938927311,0,0.0,1,0.0104469192035268,0,0.0,0.05995,0.1578005317048774,0.3135946622185154,0.0188,0.3232642732879962,0.6767357267120038,24.40541864028556,4.383605238464705,0.3226638023630505,0.2292158968850698,0.2210526315789473,0.2270676691729323,11.318631187416177,5.949919234219858,19.999434374047777,12047.588151887854,52.663936381218335,12.796107031415444,16.834231360553872,11.472992745303454,11.560605243945576,0.5503759398496241,0.788191190253046,0.6731025299600533,0.5714285714285714,0.1154210028382213,0.7214397496087637,0.9303482587064676,0.8541666666666666,0.7233201581027668,0.1548117154811715,0.4856381403612674,0.7022556390977444,0.610912343470483,0.5219072164948454,0.1039119804400978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027033320846031,0.0048036483405117,0.0069592387444965,0.00917077134007,0.0112248736693339,0.0133957654723127,0.0160407643312101,0.0180606716120935,0.0201591891367207,0.0221746960828455,0.0240647740084042,0.0261720995155595,0.0283540660018505,0.0302512179797501,0.0323063271286474,0.0342995368838901,0.0364735975477149,0.0385896119254349,0.0406771910497708,0.0425893136131652,0.0564516971006775,0.0707326517157298,0.0841725411211816,0.0968352434023761,0.1091867390502292,0.124505636275194,0.136094549003798,0.1475050303952985,0.1579965169823819,0.1678945618719771,0.1806129921599035,0.1933539646814404,0.2039897319874695,0.2130891197375615,0.2229092629471113,0.2338309559670417,0.2434220803856368,0.2523389708528247,0.2609460072595281,0.2687235260446479,0.2755946464483021,0.2814153091609739,0.2874185013701218,0.2933758844903423,0.2981945959045196,0.3040025569159659,0.3082622221666937,0.3119817131246428,0.3165096716672481,0.3197346949518345,0.3190221112408877,0.318074505174733,0.3179154193194755,0.3166186220812914,0.3159344728500755,0.3136386543072247,0.3112803577353959,0.3112413635024068,0.3120816229198249,0.3130973356826312,0.3147659916605897,0.3155836460596484,0.3162339562690748,0.3176208509690354,0.3198036398467433,0.3202286605170846,0.3213668432833706,0.3239326405408789,0.3272517563175002,0.329643831284342,0.3331823124320406,0.3349907431896323,0.3374616876211922,0.3388704318936877,0.3419780628369585,0.3470581354544391,0.3512239622928387,0.3535778713168971,0.3582048458149779,0.3586530931871574,0.0,2.755237416271985,55.32957011307718,171.01050989829255,251.87879396404452,fqhc8_100Compliance_implementation_low_initial_treat_cost,62 -100000,95736,45219,428.7310938413972,6058,61.847163031670426,4765,49.07244923539734,1874,19.073284866716804,77.33232137485312,79.69810854280668,63.31916690730778,65.07118520605502,77.10294894494734,79.4754916491907,63.23405643765991,64.9921687937446,0.22937242990578,222.61689361597803,0.0851104696478728,79.01641231042333,158.30606,111.34164136729709,165355.49845408206,116299.6612776543,399.224,262.28653942128955,416256.41347037687,273225.7043524486,379.91343,185.08292802106607,392770.0864878416,190156.08008687323,3131.70465,1427.8558496622684,3224840.6346619874,1445704.2326206225,1143.19742,501.6170002976054,1177766.1067936826,508046.2971012841,1837.80816,761.6524004871569,1872694.5558619536,755022.7058480035,0.38219,100000,0,719573,7516.159020640093,0,0.0,0,0.0,34504,359.64527450488845,0,0.0,34799,359.5408205899557,1575343,0,56505,0,0,0,0,0,64,0.6580596640762095,0,0.0,0,0.0,0,0.0,0.06058,0.1585075486014809,0.3093430174975239,0.01874,0.3319678588309437,0.6680321411690563,24.717261506678888,4.365591987414431,0.3229800629590766,0.2325288562434417,0.2239244491080797,0.2205666316894018,11.267473814384145,5.764956777103631,19.699067222408495,12189.8249414916,53.82583329936397,13.27271997811692,17.40864839583455,11.841190436586087,11.303274488826402,0.5716684155299055,0.8113718411552346,0.7063027940220923,0.5763823805060918,0.1170313986679353,0.7416342412451362,0.9604938271604938,0.8523002421307506,0.6954887218045113,0.1343283582089552,0.5089080459770114,0.7254623044096729,0.6527531083481349,0.5368289637952559,0.1129411764705882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022497871822935,0.0047976954832689,0.0072699212086751,0.0097162370924465,0.0117502238137869,0.0139464756879004,0.0160418536346577,0.0181931413286506,0.0204693011604723,0.02253276003276,0.0244805068326037,0.0265078794723063,0.0285864121996113,0.0306606931355888,0.0323858653598142,0.0343558789482388,0.0363444333996023,0.0385217923578905,0.0406139904180913,0.0425567371085165,0.057468864507104,0.0721460709427644,0.0852851403937528,0.0981534449398502,0.1103612628382225,0.1264134378404679,0.138371587134838,0.1501884141278661,0.1606036655701286,0.1709129511677282,0.1837413962105626,0.1954722044866731,0.2074022498313714,0.217408424207291,0.2267535268613685,0.2367759580994142,0.2454223898416665,0.2543991899189919,0.2623456790123457,0.2693479306474886,0.2763672553058532,0.2830305653358911,0.2902015995456912,0.2957873044020033,0.3006423254853868,0.3060555658227068,0.3114399359583729,0.3159741200696572,0.3207075935607433,0.3254983125922801,0.3248789671866595,0.3230786149257014,0.3212481886351805,0.3197362345607757,0.3188173479383738,0.3173947626040137,0.3147629225045515,0.3151060027218023,0.3164899962507242,0.3168700057077626,0.3179661271264324,0.319451588651921,0.3209762643629958,0.3226694725530581,0.3254620370593479,0.3270474700052165,0.3276097727661028,0.3295615721625114,0.3316715233648141,0.3344492268452096,0.338410324228191,0.3394563998504832,0.3431757698644024,0.3454573240620463,0.3483230279183061,0.3514979948100967,0.3586561743341404,0.3547418967587035,0.3591836734693877,0.3610578765810655,0.0,2.565420895438377,55.93597744966455,167.50978424648437,271.6309957613374,fqhc8_100Compliance_implementation_low_initial_treat_cost,63 -100000,95722,45441,430.32949583167925,5954,61.062242744614615,4668,48.13940368985187,1889,19.30590668811768,77.41699606751023,79.7698017647886,63.36600846061516,65.10029496978346,77.17403176278755,79.53202474707177,63.275083488060936,65.01478035359142,0.2429643047226761,237.77701771682305,0.0909249725542267,85.51461619204304,159.13766,111.90430241220947,166249.82762583316,116905.52058273905,400.10889,263.7164260216064,417378.1889220869,274890.5666061193,382.63789,186.5414638641799,396554.8463258185,192377.81216805975,3118.32446,1427.6087828698194,3217690.0712479893,1451464.9069534205,1122.95255,498.1088473087311,1158569.963017906,505864.2193151898,1864.613,790.5300995001606,1908073.504523516,789870.254197657,0.38274,100000,0,723353,7556.810346628779,0,0.0,0,0.0,34578,360.5963101481373,0,0.0,34921,361.5678736340653,1569930,0,56310,0,0,0,0,0,78,0.8148596978750967,0,0.0,0,0.0,0,0.0,0.05954,0.1555625228614725,0.3172657037285858,0.01889,0.3431498079385403,0.6568501920614597,24.348124961731692,4.433331426489145,0.3170522707797772,0.2245072836332476,0.2217223650385604,0.2367180805484147,11.220480919414236,5.677763156604223,20.12218352597821,12171.866511948952,52.80788811434434,12.506484810589416,16.572571948647305,11.523463695347877,12.205367659759748,0.5565552699228792,0.8024809160305344,0.7054054054054054,0.5816425120772947,0.1004524886877828,0.7198412698412698,0.9348958333333334,0.8642297650130548,0.7590361445783133,0.1147540983606557,0.4961854460093897,0.7259036144578314,0.649954421148587,0.5254452926208651,0.0963995354239256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026923621935666,0.0049336939894031,0.0072723953261927,0.0095654911199341,0.0118045387994143,0.0140576966143447,0.016328943613161,0.0182894468258828,0.0205612443027367,0.0228451583201186,0.0248806181214518,0.0269304979678968,0.0289691187960031,0.0312870104324363,0.0332910360764651,0.0355175727764056,0.0375627685458404,0.039392619329143,0.0413864781998648,0.0434008063423934,0.0577953199887228,0.0719375529721981,0.0857691419938309,0.0984528980553422,0.1111439270080692,0.1267571369641327,0.1381757616905711,0.149095167127954,0.1604983118936706,0.1698198198198198,0.1824809657653,0.1941483894004479,0.2052480542632288,0.2166693975640395,0.2259946599861555,0.2359872540992675,0.2452211906062261,0.2539893019283499,0.2621285472953821,0.2695437223194973,0.2773725159246714,0.2841218466284192,0.2905189738739804,0.2963273319287492,0.3012363954038609,0.3060860143562467,0.3110525065930082,0.3156583629893238,0.3190030910901589,0.3231470983731906,0.322703429724277,0.3205579222206953,0.320055177073363,0.3194299919065788,0.3186287615482874,0.3168339555664361,0.3144184136111594,0.3150725302072759,0.3155259617513326,0.3172531517274489,0.3178322069969757,0.3187658645048307,0.3194369021262375,0.3209843579645328,0.3213772627142994,0.3221056458733703,0.3223407878306277,0.3260203762735171,0.3281211825067188,0.3301108787436373,0.3308949697462295,0.3331925675675675,0.3379331876365907,0.3434182590233545,0.3417132216014897,0.344093567251462,0.3500604594921402,0.3508072553318716,0.3588774959525094,0.3590604026845637,0.0,2.434762783767532,54.83447077793078,171.32808153885364,257.2335947363725,fqhc8_100Compliance_implementation_low_initial_treat_cost,64 -100000,95696,45392,430.3105667948504,5936,60.81758903193446,4619,47.69269352951012,1871,19.20665440561779,77.3508434030137,79.74211416752486,63.31502979323547,65.08316324720943,77.12128428655099,79.51193035689629,63.23075127838031,65.00046402634548,0.2295591164627097,230.1838106285743,0.084278514855157,82.69922086394388,159.69954,112.34973310093233,166881.687844842,117402.32082481416,399.31219,262.76248578628633,416703.2268851362,274013.4755014412,385.07931,187.1575541056285,398283.198879786,192406.77178748776,3036.08799,1378.904491481218,3139400.9362982777,1407870.3698188334,1125.65726,493.2186805865013,1160612.752884133,499958.74431835616,1831.8836,759.469743750271,1882781.1611770608,768479.5462724894,0.38132,100000,0,725907,7585.531265674636,0,0.0,0,0.0,34417,359.0432201972914,0,0.0,35077,362.41849189098815,1566694,0,56154,0,0,0,0,0,68,0.7105835144624645,0,0.0,2,0.0208995151312489,0,0.0,0.05936,0.1556697786635896,0.3151954177897574,0.01871,0.3252489559910054,0.6747510440089945,24.447321285963863,4.414751472674088,0.3147867503788699,0.2372807967092444,0.2188785451396406,0.229053907772245,11.270078798868044,5.870936368033677,19.684626760227,12181.25277767165,52.10283039218949,13.078821340443582,16.460907630818582,11.142856176512664,11.42024524441466,0.5648408746481922,0.791058394160584,0.7049518569463549,0.5816023738872403,0.1219281663516068,0.7475328947368421,0.9253731343283582,0.8590078328981723,0.7665198237885462,0.1666666666666666,0.4995592124595944,0.7132564841498559,0.6498599439775911,0.5280612244897959,0.1112412177985948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488527811825,0.004593807993023,0.0066491386573815,0.0091674119847142,0.0111599422165252,0.013406409812351,0.0158014465107264,0.0179445017515549,0.0197586418490488,0.0217941233703055,0.0240593176014521,0.0261295590636908,0.0281832114460867,0.0302496419703479,0.0323952237943383,0.034610017056908,0.0367369773320624,0.039223623436608,0.0410963178697732,0.0432874713362518,0.0575997159179922,0.071958790949923,0.0855532464260973,0.0987040037028465,0.111453344866142,0.1272030975604595,0.1391044079094006,0.1501634526306822,0.1603069753521879,0.1706066036419826,0.1838278883775073,0.1957651338009872,0.207721268307545,0.217483611849809,0.2273833247090687,0.2370656199410108,0.2458522207087511,0.2545260076559333,0.2623317621670736,0.2702981533065098,0.2774503560470098,0.2841586361134854,0.290270225444551,0.2959373388189855,0.3009942387631572,0.3057318561058871,0.3100821732768001,0.3153062651797408,0.3194401324640381,0.3235488126649076,0.3230893542522389,0.3217262150342437,0.3207289614410357,0.3189106495980603,0.3180787527601997,0.3167206502475096,0.3147560147228409,0.3145463777373757,0.3151575105319711,0.3163997791275538,0.3171310571658163,0.3187766910042706,0.3204927771871678,0.3218800071212391,0.3217424623416433,0.3227162993536329,0.3247921262514848,0.3304193075025758,0.3330427201394943,0.3345654738497837,0.3398386442511381,0.3438076659461169,0.3471962033220931,0.3486642380085003,0.3497329210008434,0.3511369019422075,0.3502283105022831,0.3621546412244086,0.3638567196337193,0.3678380443086325,0.0,2.15482729501374,53.23651908162444,172.65177623414925,253.75753498811227,fqhc8_100Compliance_implementation_low_initial_treat_cost,65 -100000,95725,45231,428.237137633847,5842,59.90075737790546,4555,47.030556281013325,1730,17.738312875424395,77.26691653433518,79.62772342289861,63.2951211478972,65.0395565563638,77.04418305634178,79.40604501603356,63.21175114534645,64.95899474186146,0.2227334779934011,221.67840686505255,0.083370002550744,80.5618145023459,157.43046,110.76238344065771,164461.1752415774,115708.94065359909,395.03624,260.0242317455032,412112.8754243928,271071.34159885417,375.79624,182.84199894006795,389275.4348393837,188433.0815599313,2970.62609,1356.5403537081984,3069945.3329851134,1383775.8513535634,1098.46579,483.8519498910497,1132814.4580830503,490838.3403167829,1701.59546,722.7932666186009,1746273.3246278402,727091.0893636838,0.38134,100000,0,715593,7475.507965526247,0,0.0,0,0.0,34133,355.98850874902064,0,0.0,34303,355.0169757116741,1576431,0,56627,0,0,0,0,0,64,0.6685818751632281,0,0.0,0,0.0,0,0.0,0.05842,0.1531966224366706,0.296131461828141,0.0173,0.3360522022838499,0.6639477977161501,24.763999212766613,4.433291298739999,0.3132821075740944,0.24807903402854,0.2138309549945115,0.224807903402854,11.2110099398762,5.733179069266994,18.69040048488903,12224.666197352371,51.609773645327856,13.545968662130525,15.985602828681952,10.834930944106734,11.243271210408633,0.5637760702524698,0.7690265486725664,0.7119831814996496,0.580082135523614,0.115234375,0.7395498392282959,0.908466819221968,0.8926553672316384,0.7370689655172413,0.1628959276018099,0.4977348233162186,0.6810966810966811,0.65237651444548,0.5309973045822103,0.1021170610211706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194101203257,0.0049072787922416,0.0073060843446848,0.0093964912993569,0.0114923824827614,0.0134809037500127,0.0158213976247515,0.0180275824052429,0.0204655346902057,0.0226007206026858,0.0246327637284348,0.0268677556132767,0.0288652372872641,0.0311470006591957,0.0334265286962622,0.035527118241113,0.0376108027503935,0.0396003651906876,0.0415791771480842,0.0434587813620071,0.0586626012864422,0.0728722903168406,0.0864500692607983,0.0987268518518518,0.1109669251463839,0.1269920213328818,0.1390734803931975,0.1500670940808111,0.1606753346734528,0.1711997939162355,0.1837066902395377,0.1954752798153706,0.206825953433668,0.2167475276259733,0.2265579370764229,0.2369890229419403,0.2463325730131043,0.2547488677076996,0.2629922869832903,0.2710547130231438,0.2785390241644292,0.2859600664778446,0.2925324713766443,0.2978725955773013,0.302894023555723,0.3076221016280217,0.311824049125885,0.3171564319105303,0.3212493028443948,0.3255490870600688,0.3243623000432339,0.3232958077215277,0.3227434679334917,0.3214099443671766,0.3210689388071263,0.3186285047446488,0.3159650516282764,0.3160807827891806,0.3163866986630099,0.3164942178940961,0.3177968488854669,0.31849987115701,0.3189256267878176,0.3195319330180008,0.320033791938209,0.3205205257519141,0.3218749106300226,0.327098078867543,0.3312289413016492,0.3326636396512235,0.3360715924736117,0.3404198350647959,0.3426007835207886,0.3446724124780718,0.349421394298617,0.3514535570787048,0.3505484460694698,0.3553452788403463,0.3569281224378245,0.3544546850998464,0.0,2.112041643075049,54.51755195885941,164.7277834806744,252.36439656158345,fqhc8_100Compliance_implementation_low_initial_treat_cost,66 -100000,95691,44936,426.12157883186507,5975,61.18652746862296,4649,47.87284070602251,1875,19.050903428744604,77.288290147924,79.6594512578918,63.294707477804174,65.04444998483886,77.04903535003021,79.4238663947878,63.20469094367176,64.95928408378849,0.2392547978937926,235.58486310400892,0.0900165341324168,85.1659010503738,157.58578,110.82570329122352,164681.9241098954,115816.22440064742,396.62942,262.0767586445276,413767.397142887,273156.85755981173,380.34906,185.20076874373044,393822.8778046002,190640.77696035092,3075.35773,1423.236876058112,3167830.4647250003,1441393.4414456668,1125.78789,501.042922014742,1155911.841238988,503106.53943704587,1835.42002,783.0008920732216,1867281.102716034,775750.0484315333,0.37839,100000,0,716299,7485.5420049952445,0,0.0,0,0.0,34327,357.9646988745023,0,0.0,34800,359.91890564420896,1571227,0,56446,0,0,0,0,0,56,0.585217000553866,0,0.0,0,0.0,0,0.0,0.05975,0.1579058643198816,0.3138075313807531,0.01875,0.3345081704581865,0.6654918295418135,24.19426544749461,4.391474440515039,0.3293181329318133,0.2258550225855022,0.2178963217896321,0.2269305226930522,11.310328129387804,5.956905349922512,20.02091457123451,12087.30774566416,53.18052330296548,12.81432465783765,17.48786718108986,11.34546282298682,11.532868641051149,0.5685093568509357,0.7961904761904762,0.7008491182233834,0.6031589338598223,0.1165876777251184,0.7309803921568627,0.9221105527638191,0.8709677419354839,0.736,0.1339285714285714,0.507113218731476,0.7193251533742331,0.6400709219858156,0.5596330275229358,0.111913357400722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205227924123,0.0046228241806145,0.0067073913219953,0.0090412239175928,0.0110446668293873,0.0132879878626195,0.0154768459044473,0.017598121778186,0.0199636096005233,0.0220950938453036,0.0241357752656985,0.0261858569683531,0.0283572728487852,0.0305255460921327,0.0324397363562285,0.0345804051260851,0.0367260302340029,0.0386371655700616,0.0405134125919222,0.0426068558683439,0.0574460529339265,0.0708848566073691,0.0847729801213291,0.0977794148600294,0.1105269825183683,0.1262441235017576,0.1382877046917146,0.1494752543817591,0.1602737528738705,0.1695393966730027,0.1820074205099443,0.1935700586214743,0.2043201673166162,0.2137749011619629,0.223704650368526,0.2334890741007912,0.2436561280293456,0.2522584501562024,0.2596549919209849,0.267307626038113,0.2747743567136128,0.2813610612618318,0.2876622914243668,0.2936433549627493,0.2986503605534983,0.3041114173082389,0.3096299458794279,0.3133117297338674,0.3179497837297206,0.3224466029695895,0.3218269866321341,0.3211433143424701,0.3204499526588754,0.3198701505731635,0.3186215325910357,0.3168508287292818,0.3148479994925387,0.3141058307168806,0.3144172829361819,0.3152895297042987,0.3153843265367429,0.3164143662807955,0.3171546183895493,0.3172094686724635,0.3180268843014882,0.3185314140206828,0.3192753952906381,0.3218697934676684,0.3239520747689821,0.328831333915945,0.3304109589041096,0.3342548779839439,0.3367885412740294,0.3349024371725761,0.3375790256600967,0.3432521087160262,0.347366832654293,0.3509827517047734,0.3505545036516094,0.3550697323784395,0.0,2.7218925362014343,55.38215128685655,177.77421766777215,249.6561690444541,fqhc8_100Compliance_implementation_low_initial_treat_cost,67 -100000,95825,45086,427.5710931385338,5919,60.47482389773023,4647,47.85807461518393,1832,18.72162796764936,77.36488025655099,79.67906815901377,63.35773544642036,65.07083685102518,77.1292629458035,79.44683561567824,63.26923829339065,64.98637070041634,0.2356173107474859,232.23254333552745,0.0884971530297065,84.46615060883289,159.04086,111.93396556528796,165969.88259848685,116810.60764646796,402.15051,265.0341863836431,418997.1614923037,275908.09999590204,384.11349,187.19894570212975,396865.8283328985,192305.34447186813,3060.70737,1406.6197961425985,3154321.377511088,1428256.098457574,1094.70148,491.7674247525148,1122038.1111400991,492874.0466974531,1805.35646,768.1280719748004,1845912.0897469344,768171.9654821155,0.37891,100000,0,722913,7544.085572658491,0,0.0,0,0.0,34710,361.5236107487608,0,0.0,35051,361.8053743803809,1570942,0,56368,0,0,0,0,0,68,0.7096269240803548,0,0.0,1,0.0104356900600052,0,0.0,0.05919,0.1562112374970309,0.3095117418482851,0.01832,0.3331721470019342,0.6668278529980658,24.27143131417402,4.378760033835457,0.3184850441144825,0.2360662793199913,0.2143318269851517,0.2311168495803744,10.997101179356626,5.609094942342758,19.753575382863843,12068.563179268973,53.0422418192762,13.241796409911304,17.000015560583638,10.865749092491846,11.934680756289426,0.5644501829137077,0.7876025524156791,0.7094594594594594,0.5873493975903614,0.1154562383612663,0.725,0.9219512195121952,0.8498727735368957,0.7524271844660194,0.1385281385281385,0.5060170237745818,0.7074235807860262,0.6586936522539099,0.5443037974683544,0.1091340450771055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021270130659374,0.0044405693661543,0.0064534458965825,0.0088469507983585,0.0109008450188629,0.0132264896346678,0.0153010255051071,0.0173652939134695,0.019903091265947,0.0219253800092123,0.0238695527405403,0.0258718006609059,0.0278731320273798,0.0302185078067909,0.032047251399297,0.0339843911301977,0.0360057509903908,0.0380148163497901,0.0401212775678032,0.0420017687145606,0.0566374265956004,0.0711388912116397,0.0844044962653341,0.0974923341874238,0.1094108726330644,0.1247307286166842,0.1367021558345251,0.1483576060380567,0.1589733195361589,0.1689176886413538,0.1820128018933892,0.1939720873917602,0.2050460161029196,0.2147226530924344,0.224360594836398,0.2342173951513006,0.2434239112269795,0.2525326265190143,0.2612935007870627,0.2692628714512754,0.2760703602323782,0.2823898930456307,0.2883176741712462,0.2932830910939649,0.2998737373737373,0.305221031892624,0.3098390787351363,0.3139305822096259,0.3183405322918552,0.322350400337126,0.3206948478003657,0.3194270711624902,0.3183661971830986,0.3170100858307083,0.3159616871913855,0.3134177370405567,0.311242941437726,0.3121236054891894,0.3128448541759485,0.313907687900598,0.3146928173467851,0.3160161988327312,0.3171229132500736,0.3174265019173413,0.3184298454364078,0.3190790331412479,0.31927899240895,0.3214319389005877,0.3255127844900253,0.3277551996174994,0.331088818652375,0.3330839123463388,0.3361734596553697,0.3401412776412776,0.3434381830276537,0.3432889100428367,0.347792647285033,0.3439477444376403,0.3471074380165289,0.3484790142472083,0.0,2.314478690912081,53.99695043197746,183.603013588413,247.59488831038183,fqhc8_100Compliance_implementation_low_initial_treat_cost,68 -100000,95648,44949,425.2467380394781,6038,62.0608899297424,4741,49.09668785547006,1817,18.69354299096688,77.2563444549925,79.6667515038222,63.27473565930678,65.05592697918799,77.02738459492029,79.43874918565402,63.18968238572957,64.9736104100926,0.2289598600722087,228.00231816817984,0.0850532735772091,82.31656909538287,157.19418,110.60867368154912,164346.54148544662,115641.3868366815,397.7256,261.0259778041267,415338.5224991637,272419.04462626163,378.40767,184.15262633205285,393279.0544496487,190658.55078117872,3126.73923,1427.110445015525,3239904.61901974,1462942.4400045206,1117.76123,498.6029309363845,1156359.4220475077,509038.5513283092,1790.81486,754.2663287683846,1843906.2395449984,762725.5800189335,0.37957,100000,0,714519,7470.2973402475745,0,0.0,0,0.0,34334,358.46018735363,0,0.0,34650,359.92388758782204,1575471,0,56690,0,0,0,0,0,65,0.6691201070592172,0,0.0,0,0.0,0,0.0,0.06038,0.1590747424717443,0.3009274594236502,0.01817,0.3416060701865318,0.6583939298134682,24.44304370551269,4.336438836256677,0.3332630246783379,0.2233705969204809,0.214722632356043,0.2286437460451381,11.068390944008804,5.632797400851456,19.51388187755803,12122.95821922549,53.79742892315974,12.75914539958137,17.828818145293543,11.27571798281275,11.933747395472066,0.5593756591436406,0.7705382436260623,0.7088607594936709,0.5795677799607073,0.1162361623616236,0.7456692913385827,0.9115479115479116,0.8663366336633663,0.756198347107438,0.1981566820276497,0.491212906943244,0.6825153374233128,0.6547619047619048,0.5244845360824743,0.0957324106113033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471615941662,0.0045407092831152,0.0069211175270705,0.0091127975374112,0.0114965917183843,0.0137120270573134,0.0162295600371311,0.0184521072796934,0.0209175062650232,0.0228862958827205,0.0249756297778461,0.0270692454730438,0.0290420548720852,0.0310647379653782,0.0332730747378751,0.0352645357560455,0.0373499471316318,0.0395047108562643,0.0413098446458487,0.0436415220293725,0.0577944065883533,0.0716470760785299,0.0848897147596401,0.0980200208418858,0.1105799670761048,0.126,0.1387255630319882,0.1498141699413224,0.1615185652294735,0.1711146165319941,0.1832726018241014,0.1956557066247765,0.2061408763655771,0.2168829176346819,0.2255737777238587,0.2357146028504195,0.2447263047222781,0.2526850818766835,0.2611966589010739,0.2693000263794745,0.2756993635299164,0.2821757224078307,0.2890180265654649,0.2943548871097454,0.2996469012541093,0.3045250713412148,0.3093013631632409,0.3133057060886197,0.3169683991953799,0.3212760612911329,0.3204065655202203,0.3191791786266283,0.3177538383238612,0.3166920565832427,0.3152616734565966,0.3135794107687097,0.3121453435696915,0.3128625098866333,0.3142508507201045,0.314677152912447,0.3151170240832171,0.316617658745927,0.3173724532749621,0.3182723954951525,0.3197717807361756,0.3209728347381331,0.3211918637869957,0.3244077620967742,0.3262202599950944,0.3290973871733966,0.3327883742052679,0.3347107438016529,0.3349059570988237,0.3400060432089439,0.3420228445099484,0.3465091802128406,0.3454572668762161,0.3390404140951623,0.3380016159439806,0.3346183500385505,0.0,1.734214902565939,56.20369954067691,176.8165893218003,260.88928534604,fqhc8_100Compliance_implementation_low_initial_treat_cost,69 -100000,95696,45415,430.1433706738004,5977,61.26692860725631,4688,48.44507607423508,1855,18.9976592543053,77.32722884548278,79.7048241359134,63.32110870231941,65.07633608517482,77.08901880197719,79.46857989171916,63.23245643346539,64.99127108191153,0.2382100435055889,236.2442441942392,0.0886522688540267,85.06500326328137,158.00774,111.16428696894464,165114.25764922253,116163.984878098,400.1093,263.6822378022595,417578.6448754389,275015.67233976297,385.34767,187.50395568388697,399932.4841163685,193742.0482096163,3088.29465,1427.6718910660616,3189493.0195619464,1454182.4956801352,1107.74329,492.9217943783672,1138457.626233071,495995.3183050294,1813.9686,770.2651060716298,1857846.158669119,771668.738064438,0.38107,100000,0,718217,7505.193529510116,0,0.0,0,0.0,34533,360.307640862732,0,0.0,35244,365.49072061528176,1571556,0,56494,0,0,0,0,0,71,0.741932787159338,0,0.0,0,0.0,0,0.0,0.05977,0.1568478232345763,0.3103563660699348,0.01855,0.3364187679540377,0.6635812320459623,24.27063632296116,4.324955870359224,0.314419795221843,0.2401877133105802,0.2265358361774744,0.2188566552901024,11.279195134628225,5.97125726700312,20.03908529469087,12173.681084970096,53.52996487564536,13.422968374706942,16.805749358513612,11.955052346642566,11.346194795782246,0.5661262798634812,0.7841918294849023,0.7021709633649932,0.5753295668549906,0.1218323586744639,0.7297709923664122,0.9285714285714286,0.8446601941747572,0.7192307692307692,0.1422018348623853,0.5026642984014209,0.6983002832861189,0.6468926553672316,0.5286783042394015,0.1163366336633663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021058173203474,0.0041653576025377,0.0061479151871766,0.0084402327919802,0.0105957840575141,0.0129310783704804,0.0151326657557155,0.0173317128471193,0.0196449389483157,0.0217816509815567,0.024089836939801,0.026426333898218,0.0286872177821664,0.0308088614116434,0.0330354194187582,0.0353571391637969,0.0372438513975509,0.0393264259463051,0.0414404293827622,0.0435602901934623,0.0581292108424296,0.0719548699055952,0.0852931920696527,0.0977695949500263,0.1103270786528705,0.1254958795713484,0.1371706302463043,0.1487483629161919,0.1594034124296199,0.1693413430594293,0.1823028866867729,0.1951161431385707,0.2068001609762995,0.2169191228741729,0.2269570672330871,0.2369182020629521,0.2454938113148584,0.2545192751161456,0.2632200081703055,0.271164309031556,0.2786061588330632,0.2852277515097607,0.2909325565975182,0.2961195890624438,0.3011766994067879,0.305963613937712,0.3107097679195421,0.3150063694267516,0.3196021990560656,0.3239047719706178,0.3228095739226638,0.321675528251467,0.3210432035206003,0.3197363476048683,0.3189428099468726,0.3170319627689802,0.3144320903452979,0.3143682120943662,0.3155747499231845,0.3165353488537916,0.3171867983834755,0.3174468421156541,0.3189534275248561,0.3205219878441186,0.3223492598387291,0.3240264319481808,0.3237469655861773,0.3282327382639086,0.3306211201907901,0.333439427093694,0.3399323335771763,0.3446381912227377,0.3505076622311913,0.3552973551444733,0.3571428571428571,0.3605563480741797,0.3602760736196319,0.3628640776699029,0.359802847754655,0.3605805958747135,0.0,2.1443189061792807,57.63108686409668,177.56630691547943,247.6735287812656,fqhc8_100Compliance_implementation_low_initial_treat_cost,70 -100000,95767,45034,426.49346852256,5989,61.2319483747011,4647,47.824407154865455,1809,18.4301481721261,77.38146625236273,79.70445959983711,63.35451413110488,65.06776396269532,77.14535069830747,79.47291654851988,63.26489680822227,64.98328790084284,0.2361155540552602,231.54305131723163,0.08961732288261,84.47606185248446,158.98146,111.819961437375,166008.60421648374,116762.51886075056,397.85257,261.98990029216264,414765.39935468376,272897.4597639716,377.72875,184.39905403915932,390064.6778117723,189272.99276820957,3027.92695,1401.9000647857083,3121565.2051332924,1423666.2574641646,1121.12625,502.1541819365874,1156490.6596217903,510159.3888673408,1772.85926,757.8556087756464,1810020.884020592,755631.9012095567,0.38057,100000,0,722643,7545.845646203807,0,0.0,0,0.0,34411,358.5995175791243,0,0.0,34582,356.7199557258764,1570836,0,56381,0,0,0,0,0,72,0.751824741299195,0,0.0,0,0.0,0,0.0,0.05989,0.1573692093438789,0.3020537652362665,0.01809,0.3401815575728619,0.659818442427138,24.34142667164083,4.336986901353788,0.3135356143748655,0.235635894125242,0.2345599311383688,0.2162685603615235,11.058878393888207,5.729428202348901,19.403397542071986,12088.6551460011,52.72407818194564,13.121683622321331,16.345656043377357,12.254961598221657,11.001776918025287,0.5687540348612008,0.8018264840182648,0.7035003431708992,0.5678899082568807,0.1203980099502487,0.7440794499618029,0.9140811455847256,0.8781094527363185,0.7622641509433963,0.1614349775784753,0.5,0.7322485207100592,0.6369668246445498,0.5054545454545455,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312354453961,0.0047022578945234,0.0070703279536624,0.009159964253798,0.0114594242834046,0.0137732353360343,0.0159409654272667,0.0181328380901845,0.0202084184715978,0.0220064658700278,0.0240749088226857,0.0263984076825214,0.0283946684205658,0.0302652844833798,0.0324968554755964,0.0345974304953112,0.0366127513375348,0.0386413826709935,0.040516954787234,0.0426706095503863,0.0573593412442468,0.0712633815050072,0.0843297671491504,0.0969542773636679,0.1097967273954116,0.1252498968679592,0.1369697355440282,0.147287069268355,0.157961633769119,0.1682730966752795,0.1810117452012617,0.1931150838713864,0.2036952455522206,0.2135652554425117,0.2239781656505183,0.2335704944920983,0.2443367683015329,0.2530078445937581,0.2606162477711274,0.2684308284987044,0.2745956717178738,0.2810153568625613,0.2881412154957943,0.2942375482602336,0.2993231173060798,0.305024159353121,0.3108552837389726,0.3142889855736203,0.3186835967867323,0.3217494557688501,0.320460358056266,0.3191919469732391,0.3187091687316963,0.3168901036921341,0.3163837605438938,0.3140689655172414,0.3127708708993704,0.3129917387883556,0.3137639395696211,0.3148500756295044,0.3166003697686145,0.3177417450509662,0.3182178796609461,0.3200919458144569,0.3210817809105948,0.3227315247895229,0.3255470723469474,0.3293506818466158,0.3326460721274811,0.3349058473736372,0.3372721901558878,0.3409342834520982,0.3423136888057374,0.3402442702050663,0.3439173320807891,0.3476516403115411,0.3519332827899924,0.3549357945425361,0.3542345276872964,0.3615326251896813,0.0,2.7679311754632825,56.66887814029212,167.94537032375794,251.0212070738131,fqhc8_100Compliance_implementation_low_initial_treat_cost,71 -100000,95755,45345,428.66691034410735,5978,61.10385880632865,4768,49.19847527544254,1907,19.591666231528382,77.31912755708531,79.67003650213533,63.32066847763053,65.05885008166793,77.08351897993825,79.4339628229083,63.2335067487079,64.97395927455305,0.2356085771470617,236.07367922703304,0.0871617289226307,84.89080711487418,158.07242,111.24176178513872,165079.83917288913,116173.11578582897,399.07113,262.75609360302184,416158.0700746697,273801.7742641908,384.03037,187.3088117619965,396887.7343219675,192447.42699804704,3134.75907,1441.6591708840217,3239494.75223226,1471453.8507464463,1141.81242,507.7242576471624,1176795.279619863,514841.13764695294,1864.58906,777.9273917916122,1917361.182183698,786863.0221694967,0.38289,100000,0,718511,7503.629053313143,0,0.0,0,0.0,34373,358.34160096078534,0,0.0,35106,362.4980418777088,1573838,0,56498,0,0,0,0,0,75,0.7832489165056655,0,0.0,0,0.0,0,0.0,0.05978,0.1561283919663611,0.3190030110404818,0.01907,0.3368370759675107,0.6631629240324892,24.371156449971203,4.372965120584925,0.3110318791946309,0.2367869127516778,0.2325922818791946,0.2195889261744966,11.127686604319583,5.780195155151753,20.34565266789965,12225.7031148666,54.371689139165575,13.53768891092174,16.87243161667174,12.393029550886192,11.568539060685904,0.5654362416107382,0.7989371124889283,0.6925151719487526,0.5761947700631199,0.1222540592168099,0.7345864661654136,0.9339407744874716,0.8398058252427184,0.7213740458015268,0.1474654377880184,0.5,0.7130434782608696,0.6358543417366946,0.5312868949232585,0.1156626506024096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023392641950804,0.0047730520171465,0.0068889249624609,0.0091307968880131,0.0111155179953422,0.0135753057753607,0.0159265867958195,0.0181760627380502,0.0205110377194507,0.0225632415720559,0.025007177131608,0.0270769799464005,0.0291153300285908,0.0311009467297133,0.0334712491874658,0.0354906054279749,0.0379936849733423,0.0401012385121258,0.0421359990024523,0.0442440086238321,0.0593417605244204,0.0727107261658193,0.0862132256542031,0.0985709628913027,0.1107140221596719,0.1259278841070106,0.1373828008994103,0.1493232890704801,0.1596762482381583,0.1693556167790487,0.1827882886278226,0.1946975435558922,0.2061881457313757,0.2160678751831361,0.2261570788914925,0.2365069873541071,0.2459234126142616,0.254860048600486,0.2631214607519377,0.2704797893049353,0.2776131496701007,0.284776349975423,0.2909674439536233,0.2970242380609551,0.3025718976105064,0.3086293288574038,0.3137928010323615,0.3180799021606196,0.3214748910562357,0.3254732559214784,0.3238375149987192,0.3230209782503891,0.3217032928257893,0.3205822711471611,0.3194339032992544,0.3174824745747112,0.3160491085591015,0.3169845445577113,0.3177605253257635,0.3185601517890705,0.3203230653643877,0.3213204298521641,0.3233885200437011,0.3234904750151457,0.3237698001301926,0.3248151341747015,0.3263867081560992,0.3298106560986349,0.3328526711919248,0.3367164889188439,0.3399144754799381,0.3440540109510392,0.3474886420999495,0.3501376988984088,0.354058395540017,0.3585572842998585,0.3598173515981735,0.3629032258064516,0.3686231486560614,0.3628787878787878,0.0,2.274209557370798,58.40220206397592,175.69787628535775,258.28056704169614,fqhc8_100Compliance_implementation_low_initial_treat_cost,72 -100000,95665,45079,426.53007892123554,6118,62.64569069147546,4749,48.88935347305702,1870,19.06653426017875,77.34181859432726,79.72576834077883,63.3271521787835,65.08627404207898,77.10962888130732,79.49789751784193,63.24034280721408,65.00397227984097,0.2321897130199488,227.8708229368931,0.0868093715694158,82.30176223801777,157.03776,110.5171827525358,164153.82846391053,115525.20018035416,397.98685,261.9783053365797,415249.4120106622,273078.24575510866,381.60768,186.3686436517652,394338.5877802749,191170.65012830135,3104.87231,1426.0746110109558,3201613.223226886,1446780.3007061274,1099.54023,491.5484453205007,1129295.0922489937,493788.14189259545,1824.02808,765.6072085194542,1863050.7918256412,764631.4829188318,0.38052,100000,0,713808,7461.537657450478,0,0.0,0,0.0,34375,358.5323786128678,0,0.0,34987,361.093398839701,1579886,0,56660,0,0,0,0,0,65,0.6794543458945277,0,0.0,0,0.0,0,0.0,0.06118,0.1607799852832965,0.3056554429552141,0.0187,0.3345267745952677,0.6654732254047323,24.584035274880573,4.2893173339077615,0.3257527900610655,0.2387871130764371,0.2200463255422194,0.2154137713202779,11.357712691527512,6.069825218182536,19.91925329470741,12190.47323203904,53.75970213078897,13.503119718190982,17.45148699246393,11.674963436358931,11.130131983775131,0.5676984628342809,0.7733686067019401,0.709114414996768,0.5789473684210527,0.1143695014662756,0.7450381679389313,0.9152941176470588,0.9106280193236715,0.7142857142857143,0.1548672566371681,0.5001453911020646,0.688293370944993,0.6354810238305384,0.5375,0.1028858218318695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290903383256,0.00469302735741,0.0069904528068342,0.0094046434157339,0.0119372025867328,0.0141626618880834,0.0162676207075803,0.0183640762328634,0.0206257218491603,0.0230118027618257,0.025110737429251,0.0272060635937885,0.0293409600625501,0.0313462826523777,0.0334004231821231,0.0357364501448076,0.0375536258315889,0.0396087918020702,0.0416640659134885,0.0437325382594554,0.0585414773261462,0.0726446505978681,0.0859170007766745,0.0992360789595521,0.1111872989081702,0.1267902096422754,0.1389525507172566,0.1504774273214038,0.1606919616621611,0.1701415701415701,0.1822470167578512,0.1944122959774155,0.2058314935453349,0.2164197868270019,0.225530744692553,0.2356413493698363,0.2461102305957988,0.2554804458591562,0.2633298914091843,0.2710375629867155,0.2768024425785858,0.2835524161481966,0.2889740586961922,0.2950473930809696,0.2998943264220384,0.3051338295460147,0.3096647436458972,0.3145890079678232,0.3191897461152654,0.323509605862547,0.3225376210812777,0.3218789580924059,0.3206570783981951,0.3204492562986947,0.3202853321444494,0.3180619441888991,0.3157436433298502,0.3161548687816967,0.3158308415207176,0.3169130892293424,0.3192296905674488,0.320655711833981,0.3215069724655558,0.3219022103148024,0.3217251476023616,0.3235332447155107,0.3257470020223887,0.3291958646262137,0.3310349679870541,0.334167063681118,0.3387236368605658,0.3408331122313611,0.3417808647769226,0.3428658120306455,0.3453849028400598,0.3448807687744691,0.3440366972477064,0.3447304907481898,0.3430939226519337,0.3430544896392939,0.0,2.868613268853581,56.76642677852266,166.81476756547008,266.50707213010605,fqhc8_100Compliance_implementation_low_initial_treat_cost,73 -100000,95676,45764,434.5917471466198,5948,60.882561980015886,4714,48.65378987415862,1861,19.09569798068481,77.38307130315455,79.75991241386846,63.34642469116329,65.09755474685151,77.15120024546864,79.52853763142981,63.2604206696579,65.01396848077381,0.2318710576859075,231.3747824386496,0.0860040215053956,83.58626607770248,157.85286,111.12546185587745,164986.2034365985,116147.10690649445,401.45072,264.0021544181567,418949.8411304821,275296.13815386064,389.28174,189.2527727163285,402527.7290020486,194468.8926976493,3117.03379,1424.3652460939595,3221093.262678205,1452321.0953167845,1132.54265,497.2370108503373,1169472.438229023,505872.4757738008,1822.00488,764.8453721626834,1871696.12023914,772185.3346453935,0.3841,100000,0,717513,7499.372883481751,0,0.0,0,0.0,34577,360.7383251808186,0,0.0,35511,366.82135540783474,1573672,0,56578,0,0,0,0,0,66,0.6898281700739998,0,0.0,0,0.0,0,0.0,0.05948,0.1548555063785472,0.3128782784129119,0.01861,0.3325835475578406,0.6674164524421594,24.35537393986334,4.409724014737157,0.333050487908358,0.2187102248621128,0.2282562579550275,0.2199830292745014,11.276736111911132,5.839099989026527,19.82256909883441,12208.439220787082,53.37461842593377,12.327649887550258,17.609906455395777,12.01140859024991,11.42565349273784,0.5683071701315231,0.7817652764306499,0.7101910828025477,0.5929368029739777,0.1157184185149469,0.7154150197628458,0.9112271540469974,0.8914141414141414,0.6742424242424242,0.1126126126126126,0.5143519860829225,0.7052469135802469,0.6490630323679727,0.5665024630541872,0.1165644171779141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024599374386281,0.0046704354345227,0.0066125090009229,0.0089666517730208,0.0111331401555589,0.0135794049085375,0.0158922709943118,0.0181179760944788,0.0204021138061799,0.0224906587500639,0.0246778145729313,0.0269243407541279,0.0290847757448602,0.0310552608538909,0.0330427606127817,0.0350458355295114,0.0370750202001367,0.0389828749351323,0.0408897578020195,0.0428217099503939,0.0575595182132522,0.0714293192072947,0.0849463380857961,0.0982598180957888,0.110588632218204,0.1262818479754731,0.1395861601085481,0.1508258090589073,0.1607819285721907,0.1708811932110406,0.1834936414692402,0.1954394576652358,0.2062781243886002,0.2160445926006885,0.2255158607945796,0.2362788327313819,0.2456587043675388,0.2541048221806797,0.2630628789427072,0.2710097272029422,0.2786321819128624,0.2853781866704122,0.2910971073890692,0.297240551889622,0.3028486668530924,0.3069711212267002,0.311638217134842,0.3159208415047245,0.3205314322747893,0.3252984995773457,0.3245404968693193,0.3239539331562943,0.3230522224100051,0.3216855978496488,0.3208110516934046,0.31877461572648,0.3171461595705939,0.3166962000393778,0.3166558408259546,0.3173257163259841,0.3183294750205361,0.3209745345770851,0.3226526482675177,0.3226244243219792,0.3232081829696723,0.3230358899994821,0.3246132526372352,0.3277261094813057,0.3315061797360519,0.3334382995473332,0.3361428312488671,0.3414852214157989,0.3431849357775283,0.3457634764303436,0.3418376779441671,0.3421389503083905,0.3435866806032552,0.3470185728250244,0.3501333333333333,0.3485798598303209,0.0,2.3576440819922784,55.37787344523052,170.61361692290768,264.2888274076882,fqhc8_100Compliance_implementation_low_initial_treat_cost,74 -100000,95680,45260,428.29222408026754,6058,61.95652173913043,4740,48.808528428093645,1876,19.126254180602004,77.3960056150407,79.7802907206097,63.35197710932333,65.11316570550255,77.16402776874581,79.55322935143829,63.26510582576676,65.03140568921226,0.231977846294896,227.06136917140896,0.0868712835565688,81.76001629028917,157.34686,110.6688440499351,164451.14966555184,115665.59787827666,397.2517,261.0160983622694,414463.6287625418,272077.9415366642,382.95847,186.5221814595367,395958.42391304346,191593.58877808615,3117.15997,1434.7086882936635,3211263.733277592,1452916.7112722993,1124.84913,498.8049876887503,1157434.4063545149,503248.0742481792,1827.05958,771.4066941858358,1864189.2767558529,768015.1092781108,0.38157,100000,0,715213,7475.052257525083,0,0.0,0,0.0,34268,357.41011705685617,0,0.0,35070,362.15510033444815,1582883,0,56783,0,0,0,0,0,77,0.8047658862876254,0,0.0,1,0.0104515050167224,0,0.0,0.06058,0.1587651020782556,0.3096731594585671,0.01876,0.3330701200252685,0.6669298799747315,24.416816605934816,4.381236295311397,0.3234177215189873,0.2320675105485232,0.2276371308016877,0.2168776371308017,11.416622556294216,6.027964651337008,20.067933910316587,12187.68092484002,53.82852592020585,13.243646511048704,17.219067928184394,12.158630450478723,11.207181030494024,0.5624472573839663,0.7745454545454545,0.7110241356816699,0.5690454124189064,0.1070038910505836,0.720030935808198,0.9230769230769232,0.8571428571428571,0.6830188679245283,0.136986301369863,0.5033362344067305,0.6886657101865137,0.6583850931677019,0.5319410319410319,0.0988875154511742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501524560106,0.0047859503964632,0.007297862406366,0.0095707391414782,0.0119626472443187,0.0144279721418971,0.0166093987377264,0.018734239246955,0.0210799648326483,0.0233781653667424,0.0255587451302029,0.0277629471436198,0.0299284186276123,0.0320148331273176,0.0340597205885387,0.0358183960801339,0.0376221009125845,0.0398596607776785,0.0418629806442218,0.0437238777190623,0.0584640775482064,0.0725080587767404,0.0853831226726805,0.0982608512786002,0.1113488783943329,0.1265783963281795,0.1386012561534544,0.1500931495182839,0.1604867053381619,0.1700630657685872,0.1828002154011847,0.1951280192975434,0.2061118476819752,0.2158815171056946,0.2256844420010995,0.2362597828132437,0.2458065667380442,0.2548444714049809,0.2627972043814637,0.2704309063893016,0.276472693271151,0.2833664059764211,0.2904269769089942,0.2957517317286181,0.3011373281276523,0.3061309794568544,0.3107690004491242,0.3151734195675607,0.3195668727333737,0.3235247691457736,0.3227425197906883,0.3217262557578416,0.3201978055941895,0.3188882161289392,0.3175659650163059,0.3160917784363447,0.3140113404829971,0.3140667725508817,0.3140242343678102,0.3139845447099462,0.3161995515695067,0.3173996928771114,0.3181979277419893,0.3193394968441639,0.3212285153444726,0.322291969288234,0.3228335314428029,0.3247587416969545,0.3287168188018046,0.3326987148976678,0.3357364482569812,0.3393910409692332,0.3434247871333964,0.3496918511755307,0.3511831809182615,0.3559100107130103,0.3554262972600643,0.3615290768605124,0.3718801996672213,0.3764568764568765,0.0,2.860382084480071,55.90963909842443,179.0572793471804,254.09656308221312,fqhc8_100Compliance_implementation_low_initial_treat_cost,75 -100000,95832,45379,430.3051172885884,5967,61.1278069955756,4705,48.62676350279656,1840,18.92895901160364,77.38566316619061,79.70506802651038,63.36611244363343,65.08345809459314,77.15159490484213,79.47136311772094,63.27850750230008,64.99849138094527,0.234068261348483,233.70490878943428,0.0876049413333461,84.9667136478729,158.81624,111.73567868221907,165723.59963269054,116595.37386490848,403.45868,265.8418806405484,420520.0141915018,276918.9502981099,387.37417,188.8491805139413,400970.09349695296,194681.0329313693,3080.34549,1422.204702153941,3184223.8187661744,1454425.77248558,1114.25911,499.967911032358,1148453.178479005,507721.2212092883,1795.32128,763.3928474958876,1847363.010267969,772246.0511878285,0.38311,100000,0,721892,7532.890892395025,0,0.0,0,0.0,34820,362.8224392687203,0,0.0,35438,366.56857834543786,1571956,0,56429,0,0,0,0,0,73,0.7617497286918775,0,0.0,1,0.0104349277902996,0,0.0,0.05967,0.1557516118086189,0.3083626613038377,0.0184,0.3378269940619483,0.6621730059380517,24.446815505627367,4.335456172175724,0.3300743889479277,0.2371944739638682,0.2180658873538788,0.2146652497343252,11.1212860784595,5.721632204410385,19.729460672275824,12171.097525012476,53.679402817683474,13.36335531765278,17.618917835719998,11.437085680728073,11.260043983582635,0.5742826780021254,0.8082437275985663,0.7134578235672892,0.5662768031189084,0.1099009900990099,0.7307121661721068,0.9324618736383442,0.8837772397094431,0.7046413502109705,0.104602510460251,0.5114685731307715,0.7214611872146118,0.6517543859649123,0.5247148288973384,0.1115434500648508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021674617402489,0.0045923177518931,0.0067694431194243,0.009042326214618,0.0112596118637861,0.013287852560839,0.0154114301440234,0.0174303500357179,0.0198374980837038,0.0220839558730223,0.0242265241496633,0.0261526460565751,0.0281714749683957,0.0303869393805264,0.0324310389275586,0.034540815799531,0.0364740697818798,0.0385592122311479,0.0405694467519521,0.0424041873484635,0.0572257108881146,0.0717011112156469,0.085820895522388,0.0989062943234469,0.1115687245225781,0.1268535338599974,0.1381473006186965,0.1488685522357918,0.1596608180897019,0.1701564792699776,0.1826217872889558,0.1947762967443669,0.2062268636625161,0.2154653917106024,0.2255208848177315,0.2353936311366652,0.2446048776140022,0.2536651126214683,0.2626522404123945,0.2707816483554173,0.2784470908943897,0.2852041173587283,0.2913027055101752,0.2965459543444484,0.3020844688298632,0.3072804087247003,0.3121031028158647,0.31622598440175,0.3204373531613869,0.3242286691665022,0.3227189633851282,0.320340194004012,0.3199195454033982,0.3193596350670535,0.3191792618107313,0.3178089320150601,0.3158261420315097,0.315805031859686,0.3171107346373017,0.3174909702106355,0.3195802885516207,0.3208159389035079,0.3209598721292168,0.3203007518796992,0.3209029170795369,0.3220774454028262,0.3229888348124821,0.3256562342251388,0.3290318031168465,0.3331473436690447,0.3367286347234275,0.3388894787132392,0.3426701076351734,0.3447542353566816,0.3480756563470406,0.34869906142331,0.3530674846625767,0.3580097087378641,0.3574772789865051,0.352515243902439,0.0,1.7163723251275564,59.7275481689761,171.25836237541768,251.39426793838172,fqhc8_100Compliance_implementation_low_initial_treat_cost,76 -100000,95768,44866,426.6352017375324,5951,60.94937766268482,4668,48.16849051875366,1813,18.54481664021385,77.37657405990127,79.72200336168716,63.3458979718325,65.07913424940267,77.15074875511839,79.49845763442806,63.261652290464994,64.99831066299055,0.2258253047828873,223.5457272590935,0.0842456813675056,80.82358641212295,159.03382,111.8720187260514,166061.54456603457,116815.65734488703,399.8058,262.5995946495532,416905.36504886806,273636.00017704576,376.40758,183.44038859113772,389665.8904853396,188801.93275057076,3077.35483,1404.2640297140074,3176353.949127057,1429329.055335821,1111.66331,494.3073090011723,1143778.840531284,499141.79997616366,1787.41744,747.6363966739028,1830826.873277086,750043.3011655244,0.37893,100000,0,722881,7548.252025728844,0,0.0,0,0.0,34499,359.6295213432461,0,0.0,34397,355.73469217275084,1573052,0,56440,0,0,0,0,0,74,0.7727006933422438,0,0.0,0,0.0,0,0.0,0.05951,0.1570474757870847,0.3046546798857334,0.01813,0.3390372621141851,0.6609627378858148,24.39994463067102,4.421647093754335,0.3299057412167952,0.2277206512425021,0.2152956298200514,0.2270779777206512,11.225020224852342,5.660125307612339,19.128102198001876,11992.17208279719,52.61174968318299,12.733031169556387,17.337412357237902,11.059628088429452,11.481678067959258,0.5456298200514139,0.7808090310442145,0.674025974025974,0.5482587064676617,0.120754716981132,0.7297077922077922,0.9321608040201004,0.844059405940594,0.7035398230088495,0.1372549019607843,0.479627473806752,0.6902255639097744,0.613556338028169,0.503209242618742,0.116822429906542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498430061784,0.0044399841863576,0.0063718825463179,0.0087163232963549,0.0108310959238467,0.0132890703760654,0.0153970082899124,0.0175909666353575,0.0195360819472699,0.0214556249360221,0.023409554460012,0.0255286388831862,0.027705814622913,0.0297937199410922,0.0318567272577217,0.0337057747366897,0.0355157024964536,0.0376967043910332,0.0397430166436227,0.0410943211522239,0.0559423042802125,0.0696993464052287,0.0826790225697902,0.0953591996300811,0.1076238855047109,0.1225833729718302,0.1347738043489784,0.1466617013353194,0.1567105206953996,0.167206364864575,0.1800068926894412,0.1916256424127671,0.2028849919498716,0.2130283038478791,0.2222344536057507,0.2329587018687238,0.2426918868219477,0.2517471499791805,0.2594135136975419,0.2668124720889489,0.2736915158174773,0.280353071841936,0.2866703716403968,0.2925337036948349,0.2983934621316074,0.3036048689138577,0.3077336533293334,0.3121721347914999,0.3162181028465058,0.3210911247282071,0.3199618469309617,0.3188009776728092,0.3172472912772804,0.317078447492536,0.3162341223376662,0.3140643623361144,0.3121464909786077,0.3127497870667627,0.3130148551157198,0.3121962508678547,0.3132122073985368,0.3142130378199314,0.3147439516550613,0.3135242251514072,0.3153328060209487,0.3170490609229489,0.3182386363636363,0.3205172359810889,0.3246516838199257,0.3277493960635222,0.3316804658356837,0.3340409722959346,0.3368018554503855,0.3396741189844638,0.3442745244311824,0.3447545037089368,0.3479381443298969,0.3489344752041426,0.3447339847991313,0.3497926875235582,0.0,2.247173064111733,53.714061683709,173.067462257013,257.8755926568672,fqhc8_100Compliance_implementation_low_initial_treat_cost,77 -100000,95744,45117,427.535929144385,5910,60.4528743315508,4664,48.05523061497326,1806,18.455464572192515,77.3313489084019,79.70088862476074,63.31030609897547,65.0644121082617,77.11070938847506,79.48240400154383,63.228537978788594,64.98645649715006,0.2206395199268485,218.4846232169093,0.0817681201868723,77.95561111164773,158.42508,111.4526225448484,165467.37132352943,116406.90021813213,399.01805,262.1629941940193,416115.234375,273177.361847073,382.87093,185.4615491507972,395942.7431483957,190691.52680396373,3054.67333,1386.948411229857,3149686.121323529,1408052.8191923,1110.24663,486.4757503460607,1141792.195855615,490422.48178257735,1771.79242,737.2629764985003,1812780.330882353,736529.4429856322,0.37927,100000,0,720114,7521.244151069519,0,0.0,0,0.0,34438,359.00944184491976,0,0.0,35036,361.9861296791444,1572854,0,56415,0,0,0,0,0,57,0.5953375668449198,0,0.0,0,0.0,0,0.0,0.0591,0.155825665093469,0.3055837563451776,0.01806,0.3318313485677502,0.6681686514322498,24.598248856442066,4.354581524952152,0.3286878216123499,0.2367066895368782,0.213336192109777,0.2212692967409948,11.209540699656474,5.787836791960888,19.03065407717596,12085.200282134145,52.55954499015347,13.17273128542693,17.173407632103807,11.046572615519375,11.16683345710336,0.5602487135506004,0.7762681159420289,0.695368558382257,0.5758793969849246,0.1133720930232558,0.7218106995884773,0.9037037037037036,0.8505434782608695,0.7106382978723405,0.1497584541062802,0.5033342997970426,0.7024320457796852,0.6463519313304721,0.5342105263157895,0.1042424242424242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023404492446731,0.0046543699362178,0.0066176097437198,0.0089412720991668,0.0110582107469124,0.0134431872574879,0.0157538925880229,0.0179401043527982,0.0199552005236833,0.0222565909416801,0.0241733672464719,0.0262598243180767,0.0284961562606127,0.0305585043338452,0.0327112450711203,0.0347034796546197,0.0367708732435203,0.0388510708949028,0.0407705021986132,0.042694358803433,0.0573331523838356,0.071294029007346,0.0850039339103068,0.0979462210677967,0.1108580586659918,0.1256438732878523,0.137466307277628,0.1484736158155983,0.1589449271644917,0.1689289968130653,0.1813586540637832,0.1936734494969731,0.2050447429728494,0.2156165163324284,0.2253699462697084,0.235327376333119,0.2444975488827595,0.2532952127958938,0.2608828869723105,0.2685838680109991,0.2746570982117021,0.2819777312055824,0.2879725085910652,0.2936381208504916,0.2987216755658805,0.3025205938933556,0.3080176696574939,0.3134527778484717,0.3177941938828408,0.3221631462986661,0.3212092647454888,0.320012647091169,0.3189786156443444,0.317456423871638,0.316212211025489,0.3135146692731799,0.312432961070099,0.311954831846821,0.3135366414946389,0.3136710617626648,0.3139986554119668,0.3145498265531378,0.3162610966057441,0.3170856849666496,0.3188012860501943,0.318856042469033,0.3194330028690736,0.3242445184394044,0.32844327176781,0.3307177567115431,0.3339410236543457,0.3366357615894039,0.3395527076265862,0.3430325073880427,0.3459177980286405,0.3456660849331006,0.3416455129162311,0.3468230694037145,0.3533814488104785,0.3564504101416853,0.0,2.555263512185908,52.8162975288032,170.88721670988764,262.73466060672416,fqhc8_100Compliance_implementation_low_initial_treat_cost,78 -100000,95488,45193,428.50410522788206,5976,61.36896782841823,4643,48.02697721179625,1911,19.62550268096515,77.22623088476638,79.71337682276422,63.24095407219974,65.0761852170968,76.98726440610966,79.47621217224105,63.15157919680519,64.98985648110119,0.2389664786567209,237.16465052316948,0.0893748753945544,86.32873599562174,156.3045,110.01833457130424,163690.2019101877,115216.9220962888,398.38165,262.77069076777934,416599.6565013405,274584.77040112915,385.81997,188.5582797398236,400140.7716152815,194376.01097602036,3091.31111,1428.9142052458894,3201701.061913539,1461194.5944939544,1139.73382,504.60125062410856,1177061.2537701072,511938.42935957445,1877.88762,794.3547126071626,1931670.8277479887,803237.4787778864,0.37977,100000,0,710475,7440.463723190349,0,0.0,0,0.0,34340,358.99798927613944,0,0.0,35229,365.0720509383378,1573612,0,56594,0,0,0,0,0,71,0.7330764075067024,0,0.0,0,0.0,0,0.0,0.05976,0.1573584011375306,0.3197791164658634,0.01911,0.3297736691106152,0.6702263308893848,24.43433352076205,4.432680816539645,0.3159595089381865,0.2244238638811113,0.2250699978462201,0.234546629334482,11.405669931003832,5.925928315761666,20.60048660642922,12147.980821529864,53.285284601435485,12.513928467142756,16.924891475781788,11.741419940266905,12.105044718244022,0.5556752099935387,0.789827255278311,0.7123381049761418,0.5655502392344498,0.1111111111111111,0.7200622083981337,0.922872340425532,0.8609756097560975,0.7246376811594203,0.1160714285714285,0.4927018170985999,0.7147147147147147,0.6546830652790918,0.5084525357607282,0.1098265895953757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0045036363820787,0.0071273377058501,0.0092526690391459,0.0116163055872291,0.0136064821892676,0.0160103674527291,0.018137044530276,0.0203075286198041,0.0224892932521874,0.024747495483659,0.0268661320172732,0.028790609071719,0.0309218804794026,0.0332909705216825,0.0359372573380959,0.0378634633139347,0.0397713097713097,0.0419653275545924,0.0439608633454112,0.059140010048568,0.0730832179277351,0.0863758728022209,0.0992359171628813,0.1114856653739261,0.1272085554695863,0.1393168117883456,0.1502139054548558,0.160808379385683,0.1708748508593724,0.182908659036925,0.1948846441703817,0.2057374010510936,0.2150499912296088,0.2245845929783524,0.2348849354949829,0.2440511483772808,0.2527396951384504,0.2616845816982312,0.2699154147203635,0.2765135699373695,0.2831761891359414,0.2889914789584866,0.2945999230621273,0.3000512032770097,0.3050830683968974,0.3093445610507132,0.3133588127772168,0.3176683176683176,0.3218807947019867,0.3212870952477523,0.3206258537191109,0.3197531561555624,0.3178975710025766,0.3168663567000477,0.3151756353913765,0.3127145581691036,0.3135054061181435,0.3138641043239533,0.3138650790804432,0.3133997368915617,0.3149066106198199,0.3164846703065939,0.3173098471605934,0.3194721534504723,0.3208643970595902,0.3224759410056375,0.3274230563676947,0.3322918129476197,0.3346706919837928,0.3386257870243635,0.3407741251325556,0.3430414631091068,0.3490530445936769,0.3529085360214556,0.3553642075866884,0.356027293404094,0.3559666598902216,0.3611416026344676,0.3558678313710596,0.0,2.3350580901215103,56.34427327142179,181.27106457483987,243.78236930275432,fqhc8_100Compliance_implementation_low_initial_treat_cost,79 -100000,95710,45159,428.0012537874831,6100,62.34458259325045,4787,49.43057151812768,1912,19.632222338313657,77.36399481233721,79.74901185542542,63.33329461681414,65.09731222689415,77.1216850701782,79.50701720515609,63.243074367428,65.00950739847197,0.2423097421590085,241.99465026933356,0.0902202493861423,87.80482842217907,158.99752,111.79371963392671,166124.25033956746,116804.63863120542,401.18799,263.2784010529131,418585.3933758228,274496.59557278745,379.20351,184.3295949733109,392689.8756660746,189845.10038799932,3169.66631,1448.292404138344,3276514.031971581,1478190.8487401083,1161.23037,513.7168281338926,1199281.6111169157,522826.6767469012,1871.90974,793.4310230733842,1923904.795737123,800923.8657563808,0.3818,100000,0,722716,7551.102288162157,0,0.0,0,0.0,34617,361.0698986521785,0,0.0,34714,359.1160798244697,1573450,0,56468,0,0,0,0,0,69,0.7209278027374361,0,0.0,1,0.0104482290251802,0,0.0,0.061,0.1597695128339444,0.3134426229508196,0.01912,0.3317683881064163,0.6682316118935837,24.508563590203355,4.410908369671415,0.3237936076874869,0.2299979110089826,0.2182995613118863,0.227908919991644,11.267821515148649,5.74261733351108,20.44517056840981,12132.690408516486,53.897883811948425,12.97287929900354,17.53520760853695,11.510542971908231,11.879253932499688,0.5494046375600585,0.7574931880108992,0.6961290322580646,0.5779904306220096,0.1035747021081576,0.7299679487179487,0.8968253968253969,0.8777506112469438,0.7551867219917012,0.1409090909090909,0.4857304323255156,0.6846473029045643,0.6310254163014899,0.5248756218905473,0.0941446613088404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021782960658959,0.0046852657519243,0.0069032729635344,0.0092282049718478,0.0115081706994444,0.0133565621370499,0.0155861112244481,0.0178111850974304,0.0198214230922647,0.0220563388934967,0.024519556166294,0.0267641651860448,0.0288623739971199,0.0308185302724312,0.0329941380449141,0.0350820960337482,0.0372818148857927,0.0393400093394904,0.0411222336566148,0.0428526776411752,0.0571458409482533,0.0716640674879373,0.0857277734067663,0.098015710274772,0.1101437666006155,0.126032118578663,0.1380644887658915,0.1494947346027018,0.1592476355174107,0.1690851802632143,0.1814581651869787,0.1930940481599273,0.2043304260826065,0.2149153506277615,0.2251108446194976,0.235167755508803,0.2442406595490701,0.2539138062890818,0.2626914784976739,0.2703603201318998,0.2772463885451244,0.2835292054025609,0.2900182304614437,0.2958865690246182,0.3008636711490106,0.3056089269878805,0.3100596749777939,0.3146441600040675,0.3191563647649097,0.3226418325276288,0.3222429755841922,0.3207938469990385,0.3195883535548088,0.3186212269867836,0.3178907107065555,0.3165061289288495,0.31465068601167,0.3147440295337972,0.3157858940352309,0.3159927386630597,0.3167913238593867,0.3179147442722504,0.3187224347317154,0.3192621576299608,0.3208557433730311,0.32213608957795,0.3224646983311938,0.3253280592704213,0.3264403328301092,0.329146027342976,0.3317285857026069,0.3337565465799079,0.3359646353015472,0.3365421346168538,0.3358561967833491,0.3361585293064343,0.3378712871287129,0.3383319638455218,0.3415522555337629,0.3414538310412573,0.0,2.1986861099836617,54.433651035623946,174.5190955610907,271.241327917316,fqhc8_100Compliance_implementation_low_initial_treat_cost,80 -100000,95676,45153,428.6759479911368,5923,60.600359546803794,4679,48.37158744094653,1889,19.346544587984447,77.31725194233033,79.72565253382155,63.30264576078415,65.08502199839987,77.08399513294506,79.49182006562764,63.21468598904416,64.99902415669574,0.2332568093852671,233.8324681939099,0.087959771739996,85.99784170412761,158.3263,111.38533150619708,165481.50006271165,116419.0985636721,401.56428,263.674404184211,419151.3441197375,275032.18816366873,375.96912,181.90211845565003,389823.5921234165,187762.55052686547,3108.05163,1423.336078315752,3215025.5863539446,1454328.812895201,1111.5446,489.9459489572566,1150521.5623562858,500866.7290154314,1863.73546,792.2299902362388,1911528.3456666248,798591.2131757986,0.382,100000,0,719665,7521.886366486893,0,0.0,0,0.0,34744,362.5674150257118,0,0.0,34377,356.13947071365857,1573370,0,56466,0,0,0,0,0,62,0.648020402190727,0,0.0,0,0.0,0,0.0,0.05923,0.1550523560209424,0.3189262198210366,0.01889,0.3275221953188055,0.6724778046811946,24.456879232087765,4.445456249108112,0.3210087625561017,0.2182090190211583,0.2293225048087198,0.2314597136140201,10.966785385971871,5.496522672157135,20.149950358188843,12101.337235175755,52.993605985068704,12.28349528896861,16.862700069858327,11.887588306155262,11.959822320086522,0.5496901047232314,0.7747306562193927,0.7063914780292943,0.5619757688723206,0.1080332409972299,0.6919967663702506,0.9131652661064426,0.8436657681940701,0.7421875,0.1067193675889328,0.4985473561882626,0.7003012048192772,0.6613616268788682,0.5055079559363526,0.108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023909145248057,0.0045429194341631,0.0066675462009194,0.0087593614405186,0.0107137406521849,0.0129367423856575,0.0155060902209617,0.0179490846681922,0.0199811749299175,0.0220988248793631,0.0241920590951061,0.0263057841898126,0.0281637947007596,0.0301977441903622,0.0323883294603666,0.0343190001241567,0.0361156031015466,0.038319348674919,0.0402838178072785,0.0423946128507692,0.0570130073656166,0.070768103042044,0.0842772709617141,0.0968298559599339,0.1088885372158041,0.1244933165408998,0.1361609985989046,0.1482175760738744,0.1581979478409576,0.1674784885093234,0.1800211143189554,0.1924738283660456,0.2042666666666666,0.2145343872479253,0.2244756323257248,0.2346779289015995,0.2442380883288503,0.2525592278443989,0.261647891638022,0.2691246350260491,0.2765627531301349,0.2834467915877137,0.2891833013662949,0.2953559183869189,0.3001737989037299,0.3051955259036367,0.3101574822863724,0.3150284239040582,0.3199906821446597,0.3242876347628964,0.3223967297762478,0.3215380175624235,0.3197457782027306,0.318300549839089,0.3174622051106717,0.3154925258719816,0.3134576421425858,0.3149403403961988,0.3153143929698831,0.3155577735398435,0.3172864472156687,0.3185068141418131,0.3195519476433201,0.3212632238151685,0.3217229908884925,0.3224678341206253,0.3233971073909577,0.3246635082985599,0.3270821648906337,0.3312076682378104,0.3335912608101957,0.3384240110298017,0.3419513115682204,0.340877914951989,0.3392319277108434,0.3409627182633317,0.3479125248508946,0.3512913640032284,0.3538420204191295,0.3521074226035061,0.0,2.01684382378116,54.38436543038326,174.47559742579597,259.4619568971157,fqhc8_100Compliance_implementation_low_initial_treat_cost,81 -100000,95842,45353,429.5402850524822,5905,60.24498654034765,4631,47.56787212286889,1890,19.271300682373077,77.4717338221379,79.75955160604623,63.40399372213196,65.0912418981603,77.23561699175978,79.52615746300502,63.31602085796361,65.00700571296895,0.2361168303781227,233.39414304120965,0.0879728641683499,84.236185191358,159.91272,112.44005431480171,166850.3578806786,117318.14268775872,399.10718,262.7278601608512,415691.06446025753,273395.0774825767,384.65928,187.99009268606423,396550.4371778552,192379.90829869505,3039.95476,1398.3115648725516,3127615.66953945,1414751.5858105568,1111.01382,493.4536257846557,1144349.283195259,499996.9176192648,1854.86754,781.9045823207312,1894691.2001001649,782637.7601103438,0.3818,100000,0,726876,7584.107176394483,0,0.0,0,0.0,34543,359.65443125143463,0,0.0,35102,361.43861772500577,1569539,0,56257,0,0,0,0,0,62,0.6468980196573527,0,0.0,0,0.0,0,0.0,0.05905,0.1546621267679413,0.3200677392040643,0.0189,0.3351551197556663,0.6648448802443337,24.528292790438652,4.434256282920044,0.3111638954869358,0.234506586050529,0.2282444396458648,0.2260850788166702,11.378898271890648,5.886062621145464,20.08560907353844,12142.394004675709,52.373910517456856,12.972438131583989,16.220743056101032,11.753376960245465,11.427352369526355,0.5558194774346793,0.7937384898710865,0.6821651630811936,0.5714285714285714,0.1193887297039159,0.7297734627831716,0.9238329238329238,0.871866295264624,0.7120622568093385,0.1408450704225352,0.4924889543446245,0.7157584683357879,0.6192236598890942,0.52625,0.1139088729016786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095353780747,0.0043865425332536,0.0069764140420612,0.0092874543239951,0.0115742622551012,0.0138065054381556,0.0158605655610789,0.017778639113006,0.0199334191123909,0.0221815429927186,0.0241811589749892,0.0262861010830324,0.0284868968492855,0.0303532292749179,0.0322746904990155,0.0342527287559764,0.0365351594017005,0.0386787857431571,0.0408381529899176,0.0428543182125649,0.0569638071801716,0.0713247823041783,0.0844363400090126,0.0980004833303563,0.1102667608216781,0.1260505978496442,0.1382944881555786,0.1499558515334943,0.1605440433868195,0.1701657932246621,0.1830203905955775,0.1945813340249859,0.2059657085771991,0.2162743471045506,0.2253292183329855,0.2355984479156302,0.2454354049929261,0.2537843057988591,0.2623101233561015,0.2700264160005489,0.2767217885352672,0.2827393105057458,0.288251479045381,0.2936941677329857,0.2994844422878631,0.3049299761254276,0.3102724581194018,0.3149493307596576,0.3203438025074318,0.3242065633762028,0.3235685394466318,0.3222953517071164,0.3203178748438005,0.3184540089247157,0.3175453657381368,0.3151464307504576,0.3125226574198124,0.31344893523134,0.3145106440862409,0.3160044032527254,0.3181513106379805,0.3188741917097427,0.3192083333333333,0.3200907049643182,0.3207668799541591,0.3216643794826648,0.3227556585379638,0.327610382326364,0.3306105496331164,0.3353959426646823,0.3375381576584665,0.3398513677330944,0.3413669742044812,0.3441662226957911,0.3453944260746339,0.350939804901261,0.350805226374962,0.3584566173530588,0.364399891628285,0.3692946058091286,0.0,2.976745331020999,53.03332367221103,176.60870095269007,249.0281532747641,fqhc8_100Compliance_implementation_low_initial_treat_cost,82 -100000,95737,45297,429.1444269195818,5993,61.32425290117719,4679,48.24675935113906,1849,18.91640640504716,77.34438518034166,79.6967589053497,63.33412346583962,65.07214544155904,77.10891297044604,79.46665311135308,63.24523902002596,64.98863960665827,0.2354722098956188,230.10579399661424,0.0888844458136546,83.50583490077668,158.4693,111.5538922679585,165524.73965133645,116520.29880814992,402.20836,264.9500850978132,419494.187200351,276125.3944993192,381.11508,184.85630070860628,394486.5516989252,190291.7665695028,3058.71477,1404.226001461234,3155627.4376677773,1427708.2273553016,1096.61323,488.6231631354216,1128107.356612386,493307.4378125701,1807.40274,770.7294016910797,1849964.757617222,769575.1358449479,0.38212,100000,0,720315,7523.851802333476,0,0.0,0,0.0,34766,362.4930800004178,0,0.0,34947,361.4798876087616,1569469,0,56333,0,0,0,0,0,60,0.626716943292562,0,0.0,0,0.0,0,0.0,0.05993,0.1568355490421857,0.3085266143834473,0.01849,0.336728198599618,0.6632718014003819,24.591982924232184,4.298433904637926,0.3282752724941227,0.23081855097243,0.2229108783928189,0.2179952981406283,11.062039444685304,5.751877199059231,19.751173649861265,12187.6583440147,53.26246499495493,13.040356040649062,17.297859884912352,11.648340463330715,11.275908606062798,0.5622996366745031,0.7805555555555556,0.69140625,0.5896452540747843,0.1088235294117647,0.6973148901545972,0.9090909090909092,0.8296703296703297,0.7048458149779736,0.1446280991735537,0.5142028985507247,0.706140350877193,0.6484641638225256,0.5575980392156863,0.0976863753213367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023601150682711,0.0046536149159003,0.0068791282379082,0.009201425916334,0.0115094454724769,0.0135697779768509,0.0160208719757037,0.0181437828460635,0.0201387540742405,0.0224905351478563,0.0247663742929748,0.0267163428477589,0.028841408242165,0.0311125758246737,0.0331459225254036,0.0352396502903912,0.0372436779943482,0.039335863771182,0.0413219704843067,0.0431961168284654,0.0579115509897268,0.0719697762521715,0.0854739403601883,0.0983615177519771,0.1104326826747656,0.1263469571194416,0.1383337576374745,0.1498526266506347,0.1604533413091779,0.1705052324583976,0.1833137738347742,0.1953673551081347,0.2073577867916526,0.217246807766311,0.2266913034392494,0.2369210669087768,0.2461440592843909,0.2547912542738887,0.2632695667960151,0.2706732475979982,0.2774403295037775,0.2839608733297452,0.2897922954020948,0.2952686004942537,0.3011750981273772,0.306279072636865,0.3112074800090241,0.3154051057213137,0.3200860683361849,0.3242643562787257,0.3242256935092917,0.3227279604946423,0.3215749229014406,0.3204565154579601,0.3190869642750996,0.3176697779208239,0.3154732653805304,0.3162224740134982,0.3164407677713778,0.317400232122132,0.3184423465947404,0.3194809299018349,0.3193164684201708,0.3199167710757115,0.3209537572254335,0.3225184374429937,0.3239881596174646,0.3259529500566109,0.3285959925606204,0.3323134387665898,0.3341673111040349,0.3340951368588892,0.3375660045260246,0.3407480018096818,0.3443956249415724,0.346389084921195,0.3461949062071069,0.3431976983148376,0.3446547884187082,0.3412729402577118,0.0,2.4010055157483903,53.60706182257367,183.3279100959685,252.45787022916596,fqhc8_100Compliance_implementation_low_initial_treat_cost,83 -100000,95674,45065,426.3331730668729,6009,61.52141647678575,4672,48.27852917197985,1856,19.075192842360515,77.28108161739658,79.66837023455797,63.29287913429015,65.055849765656,77.05197713363194,79.43904842710783,63.20766251273811,64.97253111392742,0.2291044837646438,229.321807450134,0.0852166215520426,83.31865172858954,156.18834,109.98905900034772,163250.32924305456,114962.12579794876,394.32755,259.74757314704647,411582.2898593139,270918.8278647841,382.98307,186.75077525368243,396259.39126617473,192157.61954803453,3043.26013,1402.1491775636991,3148114.5556786587,1432949.5527122691,1102.36246,497.1683783819232,1136469.1661266384,503929.32587457215,1818.6624,766.7128626234434,1871291.824320087,777016.0147286322,0.38004,100000,0,709947,7420.469511047933,0,0.0,0,0.0,34035,355.1435081631373,0,0.0,34980,361.63429980977065,1581534,0,56697,0,0,0,0,0,68,0.7107469113865835,0,0.0,0,0.0,0,0.0,0.06009,0.1581149352699715,0.308870028290897,0.01856,0.3287693042509154,0.6712306957490846,24.474194915854955,4.275429927617409,0.3206335616438356,0.2414383561643835,0.216181506849315,0.2217465753424657,11.191254993013857,6.022481940659079,19.932713763370444,12114.44986168261,53.43001785189487,13.622775998887622,17.032270099479152,11.27557429615676,11.499397457371336,0.5610017123287672,0.7783687943262412,0.7062750333778371,0.5673267326732673,0.1081081081081081,0.7400468384074942,0.9216152019002376,0.8810126582278481,0.7564102564102564,0.1515151515151515,0.493364789147744,0.693069306930693,0.6436990027198549,0.5103092783505154,0.0956521739130434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982474801195,0.0043998823994566,0.0067588824502471,0.0091028232975383,0.0112381262331428,0.0135636022972587,0.0155800721903868,0.0175603381386041,0.0201175568617429,0.0223031965526771,0.0244232543832666,0.0267056830432773,0.0287127592838264,0.0309721292050898,0.0331606324567559,0.0354233012117953,0.0376328492407135,0.0397513207194677,0.0418057939356113,0.0437546902359709,0.0581696615127455,0.0722669542546619,0.0855148525244043,0.0989636487979378,0.1112306799599092,0.1261967480190844,0.1372022419430172,0.1484897541856601,0.1596762639923877,0.1698413039276741,0.1819848579625116,0.193359628971436,0.2047216656503179,0.2147354129485059,0.2244392049711339,0.2344219573052398,0.2440319191738566,0.2531089483644228,0.260971341560419,0.2686996811707227,0.2754121913633888,0.2819548431696486,0.2881247406177744,0.2935369983428201,0.2985559435029623,0.3036912751677852,0.308550092717887,0.3139616389473013,0.3186764724956872,0.3226924094154985,0.3211336032388664,0.3204976139905663,0.3195577485896874,0.3181884078981704,0.3171542751483702,0.314862312051727,0.3133587180707599,0.3142273946896245,0.3146539166795195,0.3158751453358376,0.3167211636035629,0.3169782086172305,0.3181339511373209,0.3190987510108725,0.3190348525469169,0.3208429078754961,0.3212836486254786,0.3246372239747634,0.3277163419343514,0.3299504459861249,0.3344843253066787,0.3367724867724868,0.3395030744133517,0.3394377873238375,0.3452447422296668,0.3479318734793187,0.3536253776435045,0.3619558735837805,0.3647310677013647,0.3643292682926829,0.0,2.0687341254302694,56.40098425226665,181.7856328517072,246.14850332312048,fqhc8_100Compliance_implementation_low_initial_treat_cost,84 -100000,95727,45044,427.6849791594848,6133,62.81404410458909,4846,50.04857563696763,1934,19.79587786100055,77.3612597271838,79.72483940599666,63.34108899169471,65.08819023028366,77.12589175813763,79.49322905373543,63.253046715926175,65.00446534223997,0.2353679690461803,231.6103522612281,0.0880422757685366,83.72488804369027,157.67774,110.9739249133896,164716.05712077054,115927.5073003328,397.74907,261.2685136190018,414935.3891796463,272362.70186990267,387.47899,188.48448196078925,401438.9775089577,194323.2045458841,3182.65005,1459.5882171615974,3285789.808517973,1485815.0544377211,1164.83471,514.1099363835928,1199760.6213502982,519990.7240493399,1892.94276,788.6404722114204,1938427.6118545448,789962.3652054264,0.38024,100000,0,716717,7487.093505489569,0,0.0,0,0.0,34267,357.35999247861105,0,0.0,35511,367.56609942858336,1579007,0,56649,0,0,0,0,0,60,0.6267824124855056,0,0.0,0,0.0,0,0.0,0.06133,0.1612928676625289,0.3153432251752812,0.01934,0.3502175264139217,0.6497824735860783,24.15370318585169,4.315599365840213,0.3256293850598432,0.2292612463887742,0.2290548906314486,0.2160544779199339,11.084594389957264,5.7528931695648895,20.4454158602025,12112.747676936877,55.1431028344781,13.52603159866817,17.834080407088653,12.31563359199303,11.467357236728237,0.5751134956665291,0.8055805580558055,0.70595690747782,0.5828828828828829,0.1251193887297039,0.7603305785123967,0.9192399049881236,0.9106280193236715,0.7620817843866171,0.1894273127753304,0.5049786628733998,0.736231884057971,0.6331615120274914,0.525564803804994,0.1073170731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023095390038593,0.0044001946629896,0.0066164681049704,0.0088386788714937,0.0111461405471371,0.0134213152481619,0.0155201598923174,0.0175933016796855,0.0197225147484331,0.0217035217035217,0.0237458091107625,0.0257073897190982,0.0276663581199218,0.0298441347055248,0.0318769091059192,0.0341579910469672,0.0363915038162405,0.0382208569857099,0.0401297796449778,0.0419184762222314,0.0567198153891133,0.071302217988842,0.0846769540633818,0.0975625144587688,0.1094410422354094,0.1251242150664947,0.1363197692299534,0.1472290797650464,0.1572527237769707,0.1676046524092833,0.1803695249580085,0.1922548542376548,0.2034049399895634,0.2141943664127144,0.2244368465606138,0.2353546644826403,0.2446173915952144,0.2530901654081265,0.2612259242044643,0.2693716378619663,0.2766427324337762,0.2831033152980496,0.2903416549391549,0.2959287501346708,0.3010548011639185,0.3072600280366936,0.3119661321744343,0.3162228095141289,0.3203519213352309,0.3240594163896364,0.322032074050156,0.3207803805729202,0.3198570785505289,0.3183105101981857,0.3177563150074294,0.3162763627452482,0.3140750818686621,0.3147243087217503,0.3153289900057986,0.3165584415584415,0.3174600202239616,0.3182556021854462,0.3189311632199337,0.3194338863300988,0.3201395572666025,0.3228848313872998,0.3243969360923745,0.3269388527797059,0.3303207202138135,0.3355613909445373,0.339171974522293,0.341980135249366,0.3450068913669966,0.3462645855432641,0.349038999813398,0.3492981007431874,0.3477730323367907,0.355969997972836,0.3562412342215988,0.3611892326235436,0.0,2.1929899630326823,58.438657778738936,182.1867990350254,260.3904914883574,fqhc8_100Compliance_implementation_low_initial_treat_cost,85 -100000,95663,45267,429.3300440086554,5957,61.05808933443442,4676,48.409520922404695,1846,19.056479516636525,77.2430810454354,79.64822361705475,63.27207635196621,65.05050309251988,77.00751870266325,79.41030606241758,63.18491253433627,64.96412362764946,0.2355623427721553,237.91755463717837,0.0871638176299427,86.37946487041859,158.40682,111.4721047378041,165588.15843115936,116525.62638991658,401.20741,264.2459370007053,418880.7062291586,275712.0533645097,385.16424,187.34146420653295,399529.3582680869,193534.46929131087,3056.38596,1397.8169611956862,3165989.682531386,1432392.926513216,1107.29762,490.2748416852233,1144685.259713787,499968.61509948334,1812.56564,761.5104844165322,1871306.6284770493,775311.2178907724,0.38016,100000,0,720031,7526.734474143608,0,0.0,0,0.0,34613,361.31001536644266,0,0.0,35137,364.2787702664562,1567035,0,56238,0,0,0,0,0,69,0.7108286380314228,0,0.0,1,0.0104533623239915,0,0.0,0.05957,0.1566971801346801,0.3098875272788316,0.01846,0.3309825292514826,0.6690174707485174,24.744355692313405,4.342224995290618,0.3162959794696321,0.2418733960650128,0.2174935842600513,0.2243370402053036,11.09103137995156,5.683243956926122,19.7687239949475,12110.274036618965,53.19557623869289,13.594097486822111,16.74768475988641,11.282913107739162,11.570880884245208,0.5630881094952951,0.7992926613616269,0.6876267748478702,0.567354965585054,0.1286939942802669,0.7338582677165354,0.9214780600461894,0.8710526315789474,0.6896551724137931,0.1866666666666666,0.4994128009395185,0.7234957020057307,0.6242038216560509,0.5312101910828025,0.1128640776699029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027667423382519,0.0051427180329864,0.0075124615493944,0.0099371056401711,0.0121041978171757,0.0142777127144966,0.0166199337241906,0.0187469367750367,0.0209526341623036,0.0230405308538308,0.0248897548969336,0.0267725106802497,0.0290524280631029,0.0310912855803603,0.0331740346603635,0.0351876744907455,0.0370435593308126,0.0391497488271681,0.0412818272591113,0.0430331714029564,0.0580134166475099,0.0722073841319717,0.0851836687558397,0.0982032902838738,0.1100530999609403,0.1254909433522829,0.1376958623253837,0.1490613706866225,0.1593464793554668,0.1701051410651574,0.1828226154510142,0.1948075880758807,0.2050581072397155,0.2151524443665673,0.225367014945113,0.235934986409275,0.2445328920889048,0.2535081095093718,0.2619296610362152,0.2693957115009746,0.276097436610578,0.2824842218657424,0.2895902415916627,0.29455513837074,0.299164325073897,0.3044809282804592,0.3086644183393303,0.3126825224765669,0.3173065686796421,0.3211176672928849,0.3200933318946914,0.3184981054081984,0.3175772977551885,0.3155097252596058,0.3140583317188035,0.3123282202465951,0.3110447571551094,0.3114051711352438,0.3123415336120058,0.3133657068109735,0.3148325899158715,0.3153774315973533,0.3163406940063091,0.3172243431394565,0.3180315207684696,0.3179874609795126,0.3187293373580566,0.323146038977474,0.3274198678305121,0.3313023610053313,0.3330416359616802,0.3362419700214132,0.3386340598073999,0.342375478927203,0.3467135926947589,0.3478416408299546,0.3457405388568759,0.3487559119884845,0.3499308437067773,0.3602005399151562,0.0,1.6865929560450013,56.21642435515826,173.12834189057588,257.6532704346165,fqhc8_100Compliance_implementation_low_initial_treat_cost,86 -100000,95812,45304,429.8104621550536,5967,61.119692731599386,4696,48.36554920051768,1913,19.53826243059325,77.44904619750217,79.77322903850727,63.38601454967061,65.10612299721261,77.20295718415306,79.5314783825763,63.29394600259903,65.01819996254928,0.2460890133491062,241.75065593097145,0.0920685470715838,87.92303466333351,157.55652,110.8744165013368,164443.4100112721,115720.80376292823,399.214,263.45434770030306,416033.9414687096,274340.15332140337,381.9588,186.18348767053408,394266.9707343548,190852.5135650652,3072.01209,1417.919426002128,3166507.3685968355,1440113.3219243202,1130.41366,504.9494209132078,1162875.7984386089,510072.1422297917,1868.29552,796.1509751950823,1910423.8717488416,797968.5158484856,0.38206,100000,0,716166,7474.700455057822,0,0.0,0,0.0,34497,359.3808708721246,0,0.0,34931,360.2680248820608,1581699,0,56707,0,0,0,0,0,64,0.6679747839519058,0,0.0,0,0.0,0,0.0,0.05967,0.156179657645396,0.3205966147142617,0.01913,0.3416318663668487,0.6583681336331513,24.29496183355196,4.36667976699936,0.3215502555366269,0.2304088586030664,0.2261499148211243,0.2218909710391823,11.386505442457889,6.0543235881459685,20.512512263553912,12169.261100218811,53.37343157198009,12.85350640687036,17.091267608620885,11.938083764857408,11.490573791631444,0.5617546848381602,0.7966728280961183,0.6801324503311258,0.5951035781544256,0.1122840690978886,0.6993865030674846,0.9311224489795918,0.7971014492753623,0.703125,0.152892561983471,0.5088443396226415,0.7202898550724638,0.6359489051094891,0.5607940446650124,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002055841933099,0.0043080291526866,0.0063722058181891,0.0087565140541034,0.011002979549915,0.0130736256910999,0.0152014110498251,0.0171975627430367,0.0194174757281553,0.0217126602613295,0.0239893426243787,0.0262931034482758,0.0282072368421052,0.0301255057810907,0.0321782178217821,0.0341140371721095,0.0358736040241365,0.0377655878967616,0.0399384922284099,0.0421629049720996,0.057123186213659,0.0715868933358425,0.0848809423995975,0.0979376569345366,0.1103758574544535,0.1262919828369723,0.1382943764244448,0.1495294305311852,0.1607045694594104,0.171023463519635,0.182705853254616,0.1951880901449839,0.206173590150051,0.215949273147946,0.2262311281910513,0.2359990271728315,0.2451350598719019,0.2539121259064682,0.262399945656481,0.2704450665600182,0.2775802355114292,0.2848108650502882,0.2905745878521106,0.2960691485546231,0.3020423004666384,0.3073452023803669,0.3118596263525066,0.3161012863775911,0.3213155821851474,0.3258206696927834,0.3245435016111708,0.3228113034050204,0.3214847480478625,0.320982850554835,0.3203712475575818,0.3185180665924378,0.3154769405241935,0.3154404077365395,0.3157134604274985,0.316439961643641,0.317859673990078,0.3188209151869113,0.3198138020289734,0.3199571724922486,0.3205533975926725,0.321060001037183,0.3225211419490323,0.3264590830855891,0.3312296202797938,0.3343342552350849,0.3379661170913385,0.3419279537375988,0.345599798704158,0.34548071823623,0.3478915662650602,0.350076823070559,0.3530668294171498,0.3568094174954333,0.3554580362040592,0.3496769289243633,0.0,2.487882074429572,56.85432129935374,172.94838335472053,253.767208563716,fqhc8_100Compliance_implementation_low_initial_treat_cost,87 -100000,95821,45612,431.5442335187485,6051,61.959278237547096,4769,49.3315661493827,1900,19.58860792519385,77.3497797498425,79.6839260661094,63.33168066437421,65.06036089032864,77.11654157498423,79.44699785149338,63.24631042858975,64.97495762813132,0.2332381748582719,236.92821461601451,0.0853702357844596,85.40326219731753,159.41574,112.1214727338015,166368.2700034439,117011.37823003464,403.33448,264.7000118930702,420509.6273259515,275828.95387552853,388.58896,188.53929026829505,402073.40770812245,194106.1720238436,3145.48637,1434.744239258289,3256732.469917868,1471380.4794964476,1101.29991,485.8882112974411,1141183.3001116666,498931.9160700064,1862.8845,769.9449895051916,1922607.9669383536,787312.3168041061,0.38186,100000,0,724617,7562.194091065633,0,0.0,0,0.0,34776,362.4883898101669,0,0.0,35495,366.9863599837197,1566291,0,56263,0,0,0,0,0,72,0.7514010498742447,0,0.0,0,0.0,0,0.0,0.06051,0.1584612161525166,0.3139976863328375,0.019,0.3410877082678403,0.6589122917321597,24.478495082920286,4.346720749210625,0.3147410358565737,0.2392535122667226,0.2233172572866429,0.2226881945900608,11.216641846219565,5.870519823033803,20.10787600793708,12213.195876703718,54.03014736265829,13.757685035789448,16.902670235330874,11.815819778147564,11.5539723133904,0.5525267351646047,0.7773882559158632,0.6968687541638907,0.5615023474178403,0.0979284369114877,0.7310664605873262,0.907621247113164,0.8753117206982544,0.7016129032258065,0.1320754716981132,0.4860431654676259,0.6977401129943502,0.6318181818181818,0.5189718482252142,0.0894117647058823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198330530623,0.0046336195970677,0.0067489394523717,0.0088388584665088,0.0114942528735632,0.0138485820477572,0.0160481239804241,0.0183130365546175,0.0205750380735304,0.022866150114126,0.0252995868827587,0.0273422660300836,0.0293458366750981,0.0312934416607457,0.033307889090609,0.0353378797272163,0.0374717926422789,0.0393838813401099,0.0414562683124493,0.0436860352528397,0.058973877482891,0.0734854346598632,0.086717742865228,0.0995229288386364,0.1114881956155143,0.1276022118139623,0.13921002948601,0.1506454256190871,0.1617343941902066,0.171466263393288,0.1836400465457053,0.1957968552165961,0.2072633536724638,0.217537187011596,0.2270577625269456,0.2372680440923946,0.2463375174337517,0.2551193675711539,0.2634982584722206,0.2715803452855245,0.2784403086069887,0.2850078327760761,0.2913916684408488,0.2966280295047418,0.3029265746573929,0.3077879702025488,0.3119641026922981,0.3163435255228529,0.3210053813515471,0.3250003298022506,0.3240411549235079,0.3221279643044041,0.3205350472888212,0.3185635679119606,0.3178099714421704,0.3162597514061949,0.3143454568495755,0.3153227130891772,0.3152549328044318,0.3158393534081968,0.3164459616611021,0.3179317714104797,0.3182818229439497,0.3192473574828487,0.3203605769230769,0.3214983458803303,0.3221843003412969,0.325527446001442,0.3270626832332821,0.329315370676751,0.3335600907029478,0.3347609983079526,0.3368387909319899,0.3403245560318432,0.3431640440968623,0.3439678600968923,0.3455826060327668,0.3547283702213279,0.3588347399945548,0.362722351121423,0.0,1.70997864093369,57.27848303900111,175.51716999451824,261.36786885228474,fqhc8_100Compliance_implementation_low_initial_treat_cost,88 -100000,95804,45179,428.31197027264,6098,62.502609494384366,4793,49.49688948269383,1896,19.487704062460857,77.41775944651599,79.74577437614414,63.37436231324406,65.09513795536223,77.18337894639409,79.51021476203562,63.28766417337825,65.0097765632671,0.234380500121901,235.55961410852436,0.0866981398658097,85.36139209513749,157.96792,111.13892304344972,164886.56006012275,116006.55822663948,397.70959,261.4207982550599,414617.124545948,272359.3267122148,385.07871,187.12017613699305,398152.2900922717,192464.67800049917,3171.65161,1445.6638625243947,3278335.132144796,1476762.5099826194,1126.40658,497.1462347667127,1158091.2070477223,501381.6589149899,1863.04174,784.3242499023153,1916036.261533965,794780.6145270491,0.38094,100000,0,718036,7494.843639096489,0,0.0,0,0.0,34355,358.05394346791365,0,0.0,35219,363.8574589787483,1580639,0,56706,0,0,0,0,0,61,0.6262786522483403,0,0.0,0,0.0,0,0.0,0.06098,0.160077702525332,0.3109216136438176,0.01896,0.3430178069353327,0.6569821930646673,24.415607685853665,4.319422828846995,0.3114959315668683,0.240976423951596,0.2217817650740663,0.2257458794074692,11.008949780531731,5.549123907624523,20.302404488761024,12181.27632876553,54.17672056192896,13.694041118142232,16.78864363988538,11.947818874155145,11.746216929746211,0.5616524097642395,0.7878787878787878,0.7032819825853985,0.5729068673565381,0.1136783733826247,0.7193523515805705,0.9116945107398567,0.8817480719794345,0.6627906976744186,0.1601731601731601,0.5031464530892449,0.717391304347826,0.6403985507246377,0.5440993788819876,0.1010575793184488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0045918522498048,0.006727481202626,0.0090593325343787,0.0112564060847636,0.0134370291949997,0.0156660890836815,0.0179635829182657,0.0201966516077597,0.0222602038727637,0.0244054940549405,0.0263298363752078,0.0283091598737703,0.0303697908087629,0.0323970964282768,0.0345896034951095,0.036779468074097,0.0386481443085216,0.0406482106684672,0.0424851910844602,0.05706893133992,0.0709170926500872,0.0843168906312236,0.0973129687598478,0.1102603530353456,0.1264143169549003,0.1389362626187727,0.150493281170267,0.1610989597225927,0.1710888543730919,0.1830773863294188,0.1957956595478065,0.2066730364161473,0.2171596405603415,0.2270679995605844,0.237425192756557,0.2467953719597833,0.2551767506625342,0.2630511853387248,0.2707999817042492,0.2776507276507276,0.2839867869690567,0.2902848777493123,0.2955154589834402,0.3006987916727325,0.3055521359103779,0.3101397115793157,0.3155828314401159,0.3193891273987482,0.3235867446393762,0.3228871299369734,0.3222626984672486,0.3216340540464501,0.3206267674727304,0.320079552369503,0.317860422405877,0.3160997660744768,0.3169397116644823,0.3170445261437908,0.3183015375854214,0.3186474260720027,0.3189480516925982,0.321189358372457,0.321373757145717,0.3220745574053639,0.3218686632350647,0.3241108964890353,0.326707840862777,0.3284296596547627,0.332806761186367,0.336779576474856,0.3398613243000053,0.3421795595708639,0.3423539194194572,0.345229151014275,0.3497027348394768,0.3529048207663782,0.3613871425674305,0.3677629790703995,0.3645074741280183,0.0,2.0562544790412387,56.96270362868108,174.83832109357272,264.1725654224509,fqhc8_100Compliance_implementation_low_initial_treat_cost,89 -100000,95727,45044,427.026857626375,6112,62.64690212792629,4804,49.662059815934896,1847,18.918382483520844,77.3893283971574,79.74993790768113,63.35181630130408,65.09345227970374,77.15455453219155,79.51708452322084,63.26426448605297,65.00927642004281,0.2347738649658453,232.85338446028447,0.0875518152511034,84.175859660931,157.7895,110.9896373097933,164832.8057914695,115943.9210565392,399.04292,261.64778012442173,416338.9639286722,272810.8685370082,378.84587,183.64577807776,392894.9930531616,189527.7346232905,3164.11855,1441.8432105701247,3272489.5379568986,1473336.3842699784,1137.61165,504.3008923031939,1173925.9038724706,512345.8296020911,1809.98094,766.1346896818153,1856035.0371368576,769895.2270915767,0.38095,100000,0,717225,7492.400263248613,0,0.0,0,0.0,34408,358.8956093892005,0,0.0,34625,358.8224847744105,1579803,0,56646,0,0,0,0,0,71,0.7416925214411817,0,0.0,1,0.010446373541425,0,0.0,0.06112,0.1604410027562672,0.3021924083769634,0.01847,0.3331261653200746,0.6668738346799254,24.71719785051237,4.301268072994116,0.3199417152373022,0.2302248126561199,0.2339716902581182,0.2158617818484596,11.284233770173852,5.939193183990899,19.70031309602674,12136.248910908813,54.13116044380616,13.045347389281698,17.20267967183047,12.453197965746789,11.429935416947204,0.5566194837635304,0.7730560578661845,0.7000650618087183,0.5711743772241993,0.0973963355834136,0.7061191626409018,0.9083769633507852,0.8324873096446701,0.7235772357723578,0.109090909090909,0.5044918585064571,0.7016574585635359,0.6544181977252843,0.5284738041002278,0.0942472460220318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192926663763,0.00429728277945,0.0063195479950904,0.0087121635206076,0.0109389614086454,0.0135781609429391,0.0160097016142181,0.0183159527356584,0.0204871967792696,0.0227775049115913,0.0247363944706882,0.0268090738403767,0.0287613802174315,0.0308910116523242,0.0329500335172484,0.0352389219576719,0.0372283705858602,0.039218737034271,0.0409936597027336,0.0428872036334847,0.057419415468471,0.0711961241851266,0.0840631391263306,0.0965588300232355,0.1088810414799978,0.1248003891750124,0.1362744370074146,0.1469786654175361,0.1582714598579135,0.1688665387131016,0.1811300031227454,0.1935274520832432,0.2059769964994673,0.2170218815270047,0.2264024296309337,0.2373587414136937,0.2468296494753293,0.2552193475815523,0.263055763600463,0.2712808000274923,0.2770492182440559,0.2836035488433529,0.2901578294023763,0.2957943757407429,0.3009952664158272,0.3059963315401376,0.3108295708943557,0.3141008529408026,0.3186736384344585,0.3229233953359611,0.3214799285032724,0.3202528167078868,0.3188116585626352,0.3180558362444785,0.3175702736779648,0.3157122776996883,0.3134114007954043,0.314601226993865,0.3150901936736675,0.3156066893444229,0.3169360112097151,0.3178834059499635,0.3197708455298151,0.3195008705745792,0.3191187776282914,0.3204951856946355,0.320571039337004,0.3233068601088112,0.3261006069908602,0.3313630452772195,0.3343307943416757,0.3366677252037684,0.3385648816623768,0.3423103109161056,0.3432933683027351,0.3498470228289009,0.3490095266898533,0.3558441558441558,0.3591236827509706,0.3582722715001928,0.0,2.0343141326113328,54.54282249802869,177.83867715561905,270.197205055716,fqhc8_100Compliance_implementation_low_initial_treat_cost,90 -100000,95681,45060,428.3713589949938,5975,61.27653348104639,4723,48.87072668554886,1874,19.251471033956584,77.35982293729873,79.7360484512428,63.33991942654043,65.09008121327722,77.12562275294684,79.50042897908027,63.25412458903828,65.00558364283641,0.2342001843518915,235.61947216252577,0.0857948375021564,84.49757044080286,157.9622,111.14423744878631,165092.54710966648,116161.24146777972,399.34976,262.63029155946145,416898.7991346244,274007.8715308801,381.99948,186.0414136065032,396091.9200259195,192014.18397392367,3114.92284,1420.7360785419062,3225665.900230976,1455004.262645571,1136.75635,498.19639036263294,1172916.2216113962,505532.4454689562,1837.54448,765.9354180689671,1890129.471890971,776206.001598845,0.37996,100000,0,718010,7504.206686803022,0,0.0,0,0.0,34489,359.94607079775506,0,0.0,34995,362.5589197437318,1576472,0,56502,0,0,0,0,0,73,0.7629518922252067,0,0.0,2,0.0209027915678138,0,0.0,0.05975,0.1572533950942204,0.3136401673640167,0.01874,0.3381812370145437,0.6618187629854563,24.09140839536343,4.332446012143965,0.3116663137836121,0.2348083845013762,0.2267626508575058,0.2267626508575058,11.152223050361291,5.750302448478399,20.04355090874067,12061.71707430618,53.62913648205356,13.31061474930921,16.721362319544216,11.93100037603525,11.666159037164896,0.5672242218928647,0.806131650135257,0.7180706521739131,0.580765639589169,0.0989729225023342,0.7250778816199377,0.9040767386091128,0.8717948717948718,0.6868327402135231,0.1071428571428571,0.5082872928176796,0.7471098265895953,0.6626617375231053,0.5430379746835443,0.0971428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.0043887655709956,0.0067569624105919,0.0088257398793443,0.0109606312022124,0.0129166878721563,0.0148360998176056,0.016895890299147,0.018948293121412,0.0208795817945596,0.0233165664409453,0.025432423005109,0.0273400964098136,0.0293142504118616,0.0312538680529768,0.033435310168055,0.035405192761605,0.0374522900763358,0.0395571265204283,0.0417587227479261,0.0570082425331425,0.0708085979625383,0.0840627164536238,0.0969764554884591,0.1086667650967075,0.1252750740584003,0.1369063412045635,0.1481288206351573,0.1587892002821779,0.1694462330972311,0.1816918253224294,0.1927995235774998,0.2044022762139989,0.2135822463450932,0.2239837935438411,0.23401003422268,0.2435698583974022,0.2526077964120318,0.2607921622878136,0.268122410675456,0.2750997282765797,0.2817619476373671,0.2888218594748048,0.2942374018011113,0.2993510038211924,0.3039432875498449,0.3081834880727754,0.3127891018146698,0.3174740708170602,0.3213376762095657,0.3210093975612051,0.3199224763580383,0.3193877263638155,0.318712564047052,0.3182687886563534,0.316728101436197,0.3141247765067008,0.3131230190662309,0.3136902623068631,0.3144833997818819,0.3155347999774939,0.3167807541645234,0.3178423062397717,0.3189304094875811,0.3195893638505553,0.3213811766542634,0.3223156937418291,0.3253798819540374,0.3270488649480569,0.3304151481540168,0.3345767183732884,0.338529474356246,0.3410906785034876,0.345479598867029,0.3488832343794176,0.3489092859697222,0.3515003061849357,0.355021216407355,0.3526713437668645,0.366412213740458,0.0,1.8977263854644624,56.53187512014438,172.10159564137598,262.88188844795246,fqhc8_100Compliance_implementation_low_initial_treat_cost,91 -100000,95850,45578,432.4882629107981,6031,61.773604590506,4748,48.92018779342723,1854,18.9358372456964,77.34109898624328,79.63352138464705,63.34986309044478,65.04480977304398,77.1113389594157,79.40539208249261,63.26590298231642,64.96386077800379,0.2297600268275772,228.12930215444285,0.0839601081283589,80.94899504018827,158.5144,111.59536784654549,165376.88054251435,116426.41048152892,396.88299,260.2991273324883,413432.0605112155,270935.5572183633,386.96987,187.9543235142164,399683.56807511736,192938.93205143305,3113.50064,1419.7368460374323,3209989.0871152845,1442954.2614525373,1129.27529,500.82854303569286,1164127.8977569118,508496.96838168,1819.22512,756.9099934943088,1860341.9926969225,757837.8217368108,0.3833,100000,0,720520,7517.130933750653,0,0.0,0,0.0,34174,355.8581116327595,0,0.0,35219,363.4220135628586,1576285,0,56601,0,0,0,0,0,73,0.7616066770996349,0,0.0,0,0.0,0,0.0,0.06031,0.1573441168797286,0.3074117061847123,0.01854,0.3365079365079365,0.6634920634920635,24.366246637075744,4.322442991563024,0.3197135636057287,0.2356781802864364,0.2289385004212299,0.2156697556866048,11.065509903310431,5.618686996709954,19.62391013969243,12234.333566081004,53.81789296043964,13.368603185886908,17.273953723817737,11.949263932314452,11.226072118420534,0.5633951137320977,0.7640750670241286,0.7114624505928854,0.563017479300828,0.125,0.7397151898734177,0.9158163265306124,0.9009661835748792,0.7203389830508474,0.1486486486486486,0.4994259471871412,0.6822558459422283,0.6403985507246377,0.5193889541715628,0.1184538653366583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0043671662056317,0.0066741725750337,0.0090665421243933,0.0110584839306405,0.0132500203533338,0.0156585877726499,0.0177811782708492,0.0198866247893366,0.0220856008838332,0.0240714563743265,0.0261225410760804,0.0281834802078839,0.0305265757145502,0.0325711753856299,0.0344304424559556,0.0364894068015675,0.0385097543539747,0.0402902643107779,0.0421963754395455,0.0571619240274026,0.0711277394003365,0.0850633706923641,0.0979080464598517,0.1106665262714541,0.1259716120310915,0.1377604525279916,0.1489741681726374,0.1595800300893076,0.170215501998564,0.1826848583971765,0.1948466204599764,0.2071019423279675,0.2169869062452182,0.2263646564432025,0.2367543616726668,0.2465165054609145,0.2560797282400845,0.2645667147023114,0.272463900880578,0.2797705111447838,0.286339027841115,0.2930683700023657,0.2986907200440818,0.3045959565296582,0.3101382829253863,0.3147529497140998,0.3184402304551871,0.3232809366711948,0.3271981211737386,0.3260772989782319,0.3246640718480518,0.3231038029617731,0.3225689772414891,0.3223334771547171,0.3193899448191293,0.3177842565597668,0.3179261111293878,0.3189715795070579,0.320629452189984,0.3195825798673899,0.3200460555048239,0.3202273205640917,0.3215828309187438,0.3217452395949416,0.3244888853896018,0.3257593123209169,0.3289881668037714,0.3323716708299616,0.3357350423948091,0.3372624269005848,0.3404527296937417,0.3447992412266835,0.3478691774033697,0.3516410548283058,0.3500895522388059,0.3539645881447267,0.3577926015767131,0.3631881676253081,0.3622077424300498,0.0,2.313724180204597,55.30318972311456,179.21115137781706,259.0513461665782,fqhc8_100Compliance_implementation_low_initial_treat_cost,92 -100000,95651,44928,425.44249406697264,5933,60.97165737943148,4649,48.101953978526105,1852,19.0797796154771,77.31769350596971,79.73912162888091,63.289715480586615,65.08090220646322,77.08480175866201,79.50573597547638,63.20434632588212,64.99747775306498,0.2328917473077041,233.38565340452533,0.0853691547044945,83.42445339823712,158.29968,111.3864869238426,165496.4610929316,116450.40743386208,399.07178,262.51642190309514,416725.06298940943,273964.57212996494,381.06589,185.5004349971635,395013.9883534934,191382.9522963153,3077.71784,1394.7611964317853,3187820.995075849,1428679.495532838,1118.64521,486.7530348199062,1154992.5562722816,494883.3281875047,1820.1723,754.6485530608209,1876234.958338125,765387.2302903114,0.37794,100000,0,719544,7522.566413315073,0,0.0,0,0.0,34479,359.93350827487427,0,0.0,34899,361.4703453178744,1570890,0,56310,0,0,0,0,0,64,0.6690991207619367,0,0.0,0,0.0,0,0.0,0.05933,0.1569825898290734,0.312152368110568,0.01852,0.3335470427953197,0.6664529572046802,24.370010814733277,4.423156455264785,0.3269520326952033,0.2286513228651323,0.2161755216175521,0.2282211228221123,11.177292192163351,5.6767539633636765,19.48017922425552,12047.05554253492,52.35040471917252,12.63247665912936,17.237677016715658,10.985586419214188,11.494664624113303,0.5611959561195956,0.7845719661335842,0.7105263157894737,0.5621890547263682,0.122525918944392,0.7481722177091795,0.931372549019608,0.8886255924170616,0.6869158878504673,0.1016042780748663,0.4938560561732007,0.6931297709923664,0.6420765027322405,0.5284450063211125,0.1270022883295194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023401410162898,0.0045024946254005,0.0068934010152284,0.0092277360542281,0.0113239797735204,0.0136715566422167,0.0156999163487238,0.01774640116879,0.0200998853774357,0.0226226718738788,0.0249553452275853,0.0267749730090997,0.0289156626506024,0.0312045470956561,0.0332689307448314,0.0354204824139322,0.03734577501296,0.0394910412879771,0.0415847148075302,0.043402542417069,0.0581123163416724,0.0722129086336965,0.0855609356454882,0.0985697434385137,0.1107344632768361,0.1255745483044205,0.1372340651633334,0.1481548596158355,0.1589678854917734,0.1693968526773726,0.1816357791633406,0.1934613467415097,0.2043984053329847,0.2141159721841975,0.2234356747702277,0.2335155998713412,0.2431218291129338,0.2520018469924431,0.2600426913731635,0.266798056650472,0.2728525281061492,0.280127777582757,0.2864451339380877,0.2922918240804039,0.2980898999355599,0.302824886610136,0.3078568747654197,0.3119961343811195,0.3162616677239361,0.3196699669966997,0.3178732117358622,0.3161384395289974,0.3150889449147171,0.3137804085757598,0.3136629373534736,0.3118742153770782,0.3105140667796019,0.3120973162614555,0.3130531162076903,0.3146033440056919,0.3152169857084219,0.3156010230179028,0.3160816767861598,0.3158783783783784,0.3159543682586755,0.316633370521236,0.317770785497633,0.3222090409590409,0.3245810055865922,0.3270577067594826,0.331602204910938,0.3330321071656389,0.3366561514195583,0.338150289017341,0.3412362404741744,0.3442196189800023,0.3508342262360324,0.3504118947156922,0.3492324561403508,0.3492184521540221,0.0,1.915255893948765,54.19377371557808,169.28696609709866,258.9155546059925,fqhc8_100Compliance_implementation_low_initial_treat_cost,93 -100000,95712,45483,430.67744901370776,6074,62.270143764627214,4811,49.71163490471414,1960,20.10197258441993,77.34880342590687,79.70652980957996,63.338894218876014,65.07720122917529,77.1051184351193,79.46381272263528,63.24809445004856,64.9893303763566,0.2436849907875711,242.71708694467972,0.0907997688274591,87.87085281868201,158.2526,111.37663108953988,165342.48579070542,116366.42332156874,403.06788,264.5933847658455,420589.758859913,275911.4580886885,388.46875,188.89920633729585,402404.3589100635,194693.96513877425,3160.90106,1443.262529550433,3267667.1472751587,1473076.573000704,1164.60465,515.9723382363288,1201542.8786359078,523851.14534888894,1920.85756,805.7644901286204,1971934.5327649617,812929.4409168581,0.3815,100000,0,719330,7515.567535941156,0,0.0,0,0.0,34657,361.53251420929456,0,0.0,35468,367.0699598796389,1571535,0,56410,0,0,0,0,0,86,0.8985289200936142,0,0.0,0,0.0,0,0.0,0.06074,0.1592136304062909,0.3226868620349029,0.0196,0.3307740520213099,0.6692259479786901,24.590876022218925,4.315431918301431,0.3192683433797547,0.2332155477031802,0.2217834130118478,0.2257326959052172,10.976748876707443,5.693338451743762,20.90856991221744,12176.01502993764,54.482671973842834,13.363360160595535,17.53432902881781,11.716007263639106,11.868975520790396,0.5572646019538557,0.785204991087344,0.6998697916666666,0.5623242736644799,0.1151012891344383,0.7282525019245574,0.9307692307692308,0.8480725623582767,0.7219917012448133,0.1541850220264317,0.4940205011389522,0.7076502732240437,0.6401826484018265,0.5157384987893463,0.1047729918509895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.004439849166768,0.0066358885901273,0.0090106563455541,0.0112351553603383,0.0135898610474881,0.0156257963244212,0.0179238542410942,0.0204077461550252,0.0225269945243334,0.0248857183855031,0.0270644744134491,0.0294045073202829,0.0313593872256311,0.0334117307255885,0.0354116723154501,0.0375969433716102,0.0395218776264046,0.0415496911847276,0.0435756634816767,0.0576169937234342,0.0719025390911184,0.0851423235513214,0.0973633819413757,0.109101073817008,0.1248651278904944,0.1369858652744174,0.1481927069470322,0.1588208897816146,0.1692484284151129,0.1825879007238883,0.1950097921468064,0.2062083292546306,0.2163113974166876,0.2254816738372157,0.2357810058837217,0.244984809221696,0.2540835050037711,0.2620488425163773,0.2691320685546696,0.2762588262530385,0.2834733172683246,0.2904321681798274,0.2954646216523875,0.301044449842118,0.3063997536187249,0.3111827795694892,0.3160209477323571,0.3201008598952609,0.3243570986067723,0.3232918753028589,0.3226059438635112,0.3219070966651168,0.3208079114015557,0.3195509961344038,0.3175697412564915,0.315504465133954,0.3161487218193154,0.3169294364825854,0.3180616582717108,0.318540840008984,0.3199644725155433,0.3209830025956627,0.3225748690630735,0.3235697610050783,0.3244461819129528,0.3249621871521931,0.3288537798199786,0.3330994562357481,0.334948179327324,0.3403992873132623,0.3420404667594476,0.3443333120978531,0.3465300777940384,0.3497907153729072,0.3507696007696008,0.3545213181321255,0.3569352159468438,0.3615644344400675,0.3706020328381548,0.0,2.15609430124554,57.12683735874145,175.96766795393103,265.7451036937791,fqhc8_100Compliance_implementation_low_initial_treat_cost,94 -100000,95640,45332,429.4019238812213,5995,61.42827268925136,4695,48.52572145545797,1888,19.343370974487662,77.26744378178137,79.68357624610138,63.28338998351626,65.06971730521103,77.0353462970185,79.45399026340652,63.19731378123917,64.98740913214435,0.2320974847628605,229.5859826948572,0.0860762022770842,82.30817306667859,157.90302,111.09108241273135,165101.4429109159,116155.4604900997,399.28564,263.1974387549575,416917.92137181095,274625.7828889141,387.39678,188.94262173606057,401821.5077373484,195008.0378068328,3118.35139,1427.6300561942876,3222903.6909242994,1455167.8322817737,1125.55733,503.5923232686248,1161604.2973651192,511285.3861027018,1849.00574,775.202069845726,1895509.8912588877,776947.3238553833,0.38139,100000,0,717741,7504.61104140527,0,0.0,0,0.0,34417,359.26390631534923,0,0.0,35370,366.6457549142618,1571354,0,56417,0,0,0,0,0,72,0.7528230865746549,0,0.0,0,0.0,0,0.0,0.05995,0.1571881800781352,0.314929107589658,0.01888,0.3344508301404853,0.6655491698595147,24.39404954932475,4.433914319754249,0.3077742279020234,0.2336528221512247,0.227689030883919,0.2308839190628328,11.098777154586204,5.729612588037374,20.17576626803948,12200.009846454695,53.35583796337089,13.189329394528473,16.388228969579597,11.954487581224187,11.82379201803862,0.5642172523961662,0.8030993618960802,0.6982698961937717,0.5949485500467727,0.1134686346863468,0.7432646592709984,0.9240196078431372,0.8914728682170543,0.726890756302521,0.1877729257641921,0.4983979027090008,0.7314949201741655,0.6275992438563327,0.5571600481347774,0.0935672514619883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002107524266926,0.0043094706955992,0.0063454353476283,0.0086578326965287,0.0106613495559466,0.0128936326231311,0.0150600566918857,0.0176826715944011,0.0199695293407908,0.0220069430932606,0.0243269575919183,0.0267185766528331,0.0286813571178733,0.0307064545379605,0.0329586391271586,0.0352952122985309,0.037296351151205,0.0395462047061021,0.0415773815715563,0.043757949830056,0.0581927635291904,0.0728956105531059,0.0858072985035442,0.0988206802148046,0.1105387059655642,0.1260456152982783,0.1379914611610272,0.1491171048284828,0.1601275029950368,0.1704399003350803,0.1839604836013416,0.1960221425398923,0.2068481372239576,0.2173075660414523,0.2265681763138774,0.2373461542722307,0.2463396125345951,0.2550711593632221,0.2630772374335921,0.2706552380079298,0.2772311610140062,0.2838329376264605,0.2907463958525673,0.2961883515639992,0.301567230415699,0.3071379208214039,0.311791738145027,0.315340077622956,0.3195583718850834,0.3244739902727849,0.3240016189962223,0.3226393002272884,0.3218940419769803,0.3210346524621486,0.3196121941412125,0.3178463474138063,0.3167581632976867,0.3178047538479228,0.3182548637467091,0.318937945575071,0.3197058106155838,0.3209695334814345,0.3225203269113599,0.3224809673085535,0.3220302219651507,0.3234440755940089,0.3241900956186671,0.3291334614294264,0.3323710614328463,0.3368580663181836,0.3382535522140985,0.3396104594856343,0.3390804597701149,0.3415066697509445,0.3435274005128692,0.3468457663708323,0.3464396284829721,0.3492518958803033,0.3560906515580737,0.3610108303249097,0.0,2.1059806943973323,55.35712788169965,177.67111543091997,255.36870431418964,fqhc8_100Compliance_implementation_low_initial_treat_cost,95 -100000,95832,44903,424.7746055597296,6113,62.557392102846656,4789,49.33633859253694,1871,19.09591785624844,77.40182060844235,79.71639230373377,63.36325590393732,65.07601242714973,77.16052673239857,79.47980252126875,63.27159689999616,64.98962530114765,0.2412938760437839,236.5897824650176,0.0916590039411673,86.3871260020801,157.83768,110.99359445131134,164702.2497704316,115820.81109326024,396.9304,260.8436205186683,413559.0095166541,271554.52943509584,377.10161,182.90814942694888,390460.0133567076,188418.672511601,3137.64413,1446.2410739610248,3232441.950496703,1467592.2947024608,1129.82637,505.3601201982408,1160447.8149261207,508821.7925100594,1829.9337,787.1334749116745,1868702.2706402875,784042.3056500128,0.38043,100000,0,717444,7486.465898655982,0,0.0,0,0.0,34344,357.7093246514734,0,0.0,34448,356.34234911094416,1581602,0,56749,0,0,0,0,0,62,0.6469655229985809,0,0.0,1,0.0104349277902996,0,0.0,0.06113,0.1606865914885787,0.3060690332079175,0.01871,0.3459737827715355,0.6540262172284644,24.684155944483766,4.391803204446462,0.3230319482146586,0.2338692837753184,0.2219670077260388,0.2211317602839841,11.048682658467277,5.670823637287185,20.094037492222743,12125.722220991474,54.30488387020991,13.423624667989312,17.38909502877578,11.825141461754717,11.66702271169012,0.5596157861766549,0.76875,0.713639301874596,0.5700846660395108,0.1029272898961284,0.7171717171717171,0.8956310679611651,0.8877551020408163,0.7096774193548387,0.1276595744680851,0.5017133066818961,0.6949152542372882,0.6545454545454545,0.5276073619631901,0.0958737864077669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022681706798436,0.0046215123291003,0.0068274966521933,0.0090902627542988,0.011325627026972,0.0136406205464391,0.0159200937675177,0.0179322310675648,0.0200850420099351,0.0223022834508664,0.0244579980523807,0.0266147987724142,0.0289767178907334,0.0309407852060831,0.0329740601309886,0.0348529624501436,0.0369649604057761,0.0391658716661827,0.0409244352116333,0.0430461163785477,0.0576044556624043,0.0711530218602657,0.0843777507649746,0.0974441398001954,0.1095311825238832,0.1251821964976024,0.1364536873218845,0.1472551771059233,0.1579430474320112,0.1684808227983715,0.1810885539381811,0.1931366191093817,0.2048579036026734,0.2154520416193057,0.2244630898314217,0.2346499241493096,0.244502950724573,0.2532277655315129,0.2617032381038826,0.269325883861513,0.276190366017306,0.2823600944786137,0.2890571394771087,0.2952328451932987,0.3003449029656797,0.3049316857420936,0.3101002139398716,0.3145974541246487,0.3184571576494952,0.3226402152693505,0.3223080442446914,0.3209329830979329,0.319981428330238,0.3189685012114918,0.3186435148801139,0.3163215367203988,0.3148271066439092,0.3154015005078138,0.3162671671073957,0.3174399543867151,0.3174959331351321,0.3193666692956858,0.3194551797614322,0.3203355045953422,0.3218597298074159,0.3232026991954321,0.3235569422776911,0.3266108891108891,0.3312990409764603,0.3343210461854529,0.3372902169463774,0.3416264389157074,0.3428571428571428,0.3438564615035203,0.3471435206688342,0.3484083166921179,0.3467558121865978,0.3519114688128772,0.3563815250068324,0.3604118993135011,0.0,2.435481313887088,56.09031926258305,183.26180650868852,256.209044142657,fqhc8_100Compliance_implementation_low_initial_treat_cost,96 -100000,95703,44997,426.96676175250514,5880,60.238446025725416,4630,47.86683803015579,1800,18.515616020396436,77.32145341825886,79.70834981551032,63.3143933609397,65.07989433262334,77.1004771019546,79.48627828337106,63.23267238795601,64.99956664370208,0.2209763163042595,222.07153213925324,0.0817209729836889,80.3276889212583,157.50658,110.76935285630258,164578.51895969824,115742.82191394478,399.39101,263.049431133246,416775.6078701817,274313.817388339,378.78918,184.1830376336549,392228.174665371,189755.0987138708,3035.54263,1378.1317031588146,3140142.6287577194,1408402.5687661057,1109.9355,486.70173750638656,1149530.0251820737,498340.1855328645,1765.65488,736.0516345289944,1818336.123214528,747168.711222309,0.3798,100000,0,715939,7480.841770895374,0,0.0,0,0.0,34475,359.6647962968768,0,0.0,34508,357.0212010072829,1578707,0,56595,0,0,0,0,0,78,0.8045724794416058,0,0.0,1,0.0104489932395013,0,0.0,0.0588,0.1548183254344391,0.3061224489795918,0.018,0.3381971465629053,0.6618028534370947,24.853663941112348,4.418661029104575,0.31792656587473,0.2330453563714903,0.229157667386609,0.2198704103671706,11.30028216792011,5.905735959792336,19.10394121214488,12071.968663607082,52.09595824592772,12.762435329368122,16.431798254845422,11.839083728415623,11.062640933298551,0.5591792656587473,0.7775718257645968,0.6847826086956522,0.5758718190386428,0.1286836935166994,0.7264462809917356,0.921119592875318,0.8515406162464986,0.7269076305220884,0.1516587677725118,0.5,0.6953352769679301,0.6313901345291479,0.5295566502463054,0.1226765799256505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020061603307124,0.0044721630666261,0.0063647068377456,0.0086177985996077,0.0110389874654077,0.0131712981827071,0.0153278195335366,0.0176026138452113,0.0196485345382798,0.0220791450856756,0.0244722623771004,0.0265971102599123,0.0287210295131209,0.0304185643921439,0.0322976878612716,0.0340880893300248,0.0363046900894928,0.0383366024263935,0.0402358618107697,0.042323686048087,0.0571935871324873,0.0712012728719172,0.0845541936025522,0.0976197491371327,0.1089951890614449,0.1238715139969307,0.1358778139826146,0.1462606769335633,0.1571663674446439,0.1675317989747109,0.1798802163000624,0.1913101835815725,0.2024318357314539,0.2129598232353616,0.2230019578942737,0.2332986426341312,0.2424793369993196,0.2516606161419756,0.2606294927322615,0.2683985162117604,0.2755562236921227,0.2820150108723608,0.2885307204392691,0.2945779162422862,0.2992688318313212,0.3039249482911454,0.3085995147452413,0.3134182298815515,0.3188057386583947,0.322442096387447,0.3217811129938944,0.3205806017494953,0.3183000745334627,0.31701581255771,0.3164224310721126,0.3153358643071459,0.3133405056481979,0.3146441456215152,0.3151886422196815,0.3158870838311607,0.3171160719297917,0.3188528796431532,0.3192219201003974,0.3209310645529146,0.3229828615443866,0.3235886305990639,0.3266246779272831,0.3300967813120645,0.3330753807731542,0.3343253968253968,0.3369086033722674,0.3400680561463207,0.3426019761844439,0.3465407356215925,0.3479534927686927,0.3474414155906264,0.3473570658036677,0.3525811058967558,0.3569452130603209,0.3621621621621622,0.0,1.866202858823872,53.2288690043363,167.93975635775223,261.71762819245777,fqhc8_100Compliance_implementation_low_initial_treat_cost,97 -100000,95704,45115,429.2297082671571,5866,60.12287887653599,4595,47.417035860570095,1770,18.1288138426816,77.3455376358958,79.73113577822222,63.32130932583449,65.0868660683473,77.1320690569967,79.51967913461692,63.242252194478056,65.01087052061295,0.2134685788990964,211.45664360530247,0.0790571313564356,75.99554773435102,158.38812,111.39563489426688,165497.91022318817,116396.00737092168,397.63313,261.40352834801985,414866.7244838252,272521.9931748097,375.8899,182.83570952518008,388861.2492685781,188114.51104932,3001.07316,1361.1575224632186,3099849.6614561565,1386354.7689827164,1059.57052,469.59258583347776,1092673.7962885564,476256.4422276028,1735.67024,718.5883931186678,1779225.5078157652,722892.898911028,0.38065,100000,0,719946,7522.632282872189,0,0.0,0,0.0,34412,358.95051408509573,0,0.0,34494,356.4741285630695,1575952,0,56456,0,0,0,0,0,54,0.5642397391958539,0,0.0,0,0.0,0,0.0,0.05866,0.1541048207014317,0.3017388339584043,0.0177,0.3385890767230169,0.6614109232769831,24.64005534577503,4.289360163791243,0.3262241566920565,0.2376496191512513,0.2198041349292709,0.2163220892274211,11.088871200825926,5.673005941030378,18.585301296434363,12049.77628929778,51.80073187583017,13.07665386325405,16.76670596808567,11.1226544562232,10.834717588267251,0.5542981501632209,0.7857142857142857,0.6904603068712475,0.5554455445544555,0.0935613682092555,0.7364470391993327,0.9254807692307692,0.8864265927977839,0.695067264573991,0.1155778894472361,0.4899882214369846,0.6997041420118343,0.6282952548330404,0.5158831003811944,0.0880503144654088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002117549316609,0.0043511334246158,0.0069140565510939,0.0090855505193194,0.0111805159925124,0.0130474638419229,0.0151944688054496,0.0174320639686284,0.0192858311518324,0.021238684307541,0.0235064868468283,0.025328416922587,0.027412901035827,0.0295217781075149,0.0314754233702438,0.0337230820126332,0.0359447672912976,0.0378415966953471,0.0397570690211004,0.0413128418859077,0.0562088772845953,0.0710009628668313,0.0842866438571818,0.0971118943658267,0.1085679327475819,0.1243720054576031,0.1364528622208074,0.1477485728891539,0.1589062767231058,0.1691300381044383,0.181311574363507,0.193736327998094,0.2051047619047619,0.2156588146478626,0.2250299915253304,0.2350458126059451,0.2443003649105578,0.2534363681357,0.2614475460227079,0.2683741902996177,0.2751642150060135,0.2815611124094415,0.2880696860816944,0.2927950028121148,0.298035649327028,0.304055383404653,0.3086788211788211,0.3135538385414684,0.3179448802642444,0.3216256701356039,0.3209156374461922,0.3191541811608097,0.3180727288038062,0.3170352453351762,0.3156111776801432,0.312784064911692,0.3106578469602008,0.312238639531642,0.3128261981920519,0.3139675968881593,0.3139210136642237,0.3152077195341388,0.3167424607582203,0.3171810102273235,0.3180103328126877,0.3182339449541284,0.3206334764436609,0.3236705882352941,0.3269358736384968,0.3291716210860087,0.3331669691470054,0.336734693877551,0.3369646882043576,0.3369663941871026,0.3381234150464919,0.3401693096458805,0.334973854198708,0.3383642667754436,0.3384363039912521,0.3480108149864813,0.0,2.266925170547056,52.23330113740624,171.96062619065367,254.35287938802017,fqhc8_100Compliance_implementation_low_initial_treat_cost,98 -100000,95600,44800,425.6485355648536,5935,60.70083682008369,4669,48.14853556485356,1824,18.556485355648537,77.23812690061078,79.66736633252457,63.25655152000609,65.05355218203871,77.00053547987902,79.43636746689005,63.16749014279276,64.9703063631646,0.2375914207317606,230.99886563451832,0.0890613772133335,83.24581887411853,158.24666,111.2791976358966,165529.7489539749,116400.6111254148,396.98817,260.9500045253603,414561.4748953975,272263.2389180535,375.24407,183.00108675162767,388505.24058577407,188333.55407023357,3085.72308,1423.7518262311787,3184161.5271966527,1446018.2682222205,1119.97934,499.6039113167437,1151532.290794979,502908.2909106386,1794.6671,766.937336789973,1829018.9748953972,762593.8461351395,0.37875,100000,0,719303,7524.07949790795,0,0.0,0,0.0,34305,358.09623430962347,0,0.0,34294,354.7907949790795,1569598,0,56420,0,0,0,0,0,71,0.7322175732217574,0,0.0,0,0.0,0,0.0,0.05935,0.1566996699669967,0.3073294018534119,0.01824,0.343319448894585,0.6566805511054149,24.46815680978726,4.383438423702666,0.3156992932105376,0.2385949882201756,0.2171771257228528,0.2285285928464339,11.154133084337383,5.756170028747469,19.674679098765232,12051.80429234447,53.29584254289021,13.359280860821622,16.73718258741916,11.37175723500037,11.827621859649044,0.5602912829299636,0.7675044883303411,0.7069199457259159,0.6035502958579881,0.1002811621368322,0.7246489859594384,0.909313725490196,0.8790931989924433,0.7428571428571429,0.1163793103448275,0.4980808975494538,0.6855524079320113,0.6434540389972145,0.5591677503250976,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021688016863953,0.0045439331392695,0.0066810169766875,0.0089039773131536,0.0110934701188731,0.0132237130311643,0.0152684991585496,0.0175090916520246,0.0198739848208988,0.0220519701330492,0.0238960026266108,0.0258109593826741,0.028004775529528,0.0299887632341267,0.0321887747198843,0.0344774065374626,0.0364403528960491,0.0382929211078559,0.0399966686793395,0.0418570683359415,0.0562473209338309,0.0705482897384305,0.0837264522636295,0.0969624199528143,0.1089027352413137,0.1243088655862726,0.137089920108788,0.1478153347617068,0.1594072647515112,0.1688776222649494,0.1811737286763992,0.1935753160302695,0.2045286143921893,0.2153861325385694,0.2247815114010822,0.235294770364288,0.2446865631571882,0.253577671271497,0.2614896448189975,0.2687881850337636,0.275323469683783,0.2814977250340072,0.2876637554585153,0.2932788264999398,0.2988236728225757,0.3042564501971838,0.3089283920859696,0.313493228495207,0.3177967202889888,0.3211269097360129,0.3200016208768944,0.3182966388294568,0.3169533169533169,0.3163753369858249,0.3152376271539848,0.3134351285753786,0.311005924678749,0.3111078160010544,0.3115758054002127,0.3128829958788747,0.3133865664631282,0.3135458799270362,0.3142232683254876,0.3150586599071311,0.3149429721974391,0.3155858752189027,0.3178919676303223,0.3228949858088931,0.3265808539072941,0.3301524450603841,0.3332877274592967,0.3357757247531061,0.3402956904687008,0.3388580551965331,0.3388972243060765,0.3442314477243325,0.3453280919262171,0.3490792634107286,0.3500548245614035,0.3566806242862581,0.0,2.6070747359777293,55.80191533522,177.58113736283235,250.253536363078,fqhc8_100Compliance_implementation_low_initial_treat_cost,99 -100000,95726,41315,389.3508555669306,7335,75.5071767335938,5738,59.4300399055638,2333,24.006017174017508,77.33641368994157,79.71186336265353,63.332022412709286,65.0894501810177,77.05649296759412,79.43129840813859,63.22979323259649,64.98982057955139,0.2799207223474411,280.5649545149436,0.1022291801127934,99.6296014663045,81.4539,57.07383843134021,85090.6754695694,59622.0864042582,224.04931,135.0048741147144,233539.6966341433,140519.58100695148,258.90567,122.93523907719288,267530.514175877,126109.83353625078,4192.9315,1858.4685875028736,4345129.400580824,1906436.7648317849,1410.25383,609.1547761530888,1461246.317614859,624429.3371159624,2313.93892,951.0340174531634,2383455.612895138,964105.0109859176,0.38107,100000,0,370245,3867.757975889518,0,0.0,0,0.0,18639,194.16877337400496,0,0.0,24155,249.4933455905397,2090180,0,74998,0,0,3285,0,0,53,0.5327706161335478,0,0.0,1,0.0104464826692852,0,0.0,0.07335,0.1924843204660561,0.3180640763462849,0.02333,0.3135582267028564,0.6864417732971436,25.376876776627544,4.614724234303063,0.3337399790867898,0.1932729173928198,0.2283025444405716,0.2446845590798187,11.078899090001425,5.43303716077111,24.714083664952952,13039.06466026288,64.08021995731875,12.871787369711027,21.45126581965713,14.50355016203831,15.253616605912264,0.5402579295921924,0.7835888187556357,0.6939947780678851,0.5717557251908397,0.1089743589743589,0.7164068299925761,0.9047619047619048,0.8841870824053452,0.7777777777777778,0.1624548736462094,0.486221817353678,0.7355163727959698,0.635743519781719,0.5089641434262948,0.095829636202307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.0044016673597095,0.0066500837605969,0.008903162858769,0.0110678209210298,0.0132401768072841,0.0152153295464975,0.0173881968552174,0.0195883982701685,0.0217638327276449,0.0240994731123275,0.0259645592492967,0.0277452129738178,0.0297777228436643,0.0317820658342792,0.0337171562648584,0.0354236129807194,0.0373793962029256,0.0392662266798316,0.0413541666666666,0.0566195359328334,0.0703321998430552,0.0834137337975586,0.0952916565926268,0.1083075106979489,0.1244028746565208,0.138347379021572,0.1510314759676733,0.1631354801524192,0.1740672101468682,0.1878443526170798,0.201453240054929,0.2135568909124496,0.2258948955181491,0.2365616209563994,0.2480814737819846,0.2585163641226222,0.2684716883583968,0.2782381951136556,0.2866032922658064,0.2951871286899836,0.3025475103080139,0.3107534885919204,0.3172801819596576,0.3241511540421814,0.3307848568790397,0.3370598239295718,0.3431049612738303,0.3487351440925921,0.3542032506370562,0.3551838924003719,0.3562898198968475,0.3570430388323475,0.3577628051872781,0.3584689023753784,0.3589869682812884,0.3587319243604004,0.3599314447685437,0.3613970083710717,0.3628324933187452,0.3651289188121791,0.36544415336985,0.3662063602160708,0.3664536383002579,0.3678885347242345,0.3707077051926298,0.3717221726490314,0.3750278139801011,0.3755185986312542,0.3783056024435334,0.3827618164967563,0.3854369984818911,0.3872533160789388,0.3904130943102104,0.3873968923844235,0.3900328987449738,0.3881578947368421,0.3884654994850669,0.3933425797503467,0.3903474903474903,0.0,1.9051791655031127,59.774034877868736,209.45249750191005,345.172660635844,fqhc8_80Compliance_baseline,0 -100000,95599,41441,389.9203966568688,7203,74.13257460852101,5584,57.72026904047113,2243,22.981411939455437,77.26635035352784,79.70364971589669,63.26822878755484,65.0716679770671,76.98455606695697,79.42581277644612,63.16389421205468,64.97238655203004,0.2817942865708716,277.836939450566,0.104334575500161,99.28142503704862,81.14062,56.81648942371587,84876.01334741995,59432.09596723384,219.56706,133.29912032829895,228989.95805395456,138750.58350850845,258.32258,123.05167658914765,265907.3002855678,125378.78838483998,4020.91333,1810.597009008548,4160123.0766012194,1848052.5308931544,1375.2187,603.8463395747171,1419921.6832812058,613038.3890780413,2215.3954,933.9253052851412,2272711.534639484,937069.224312912,0.38245,100000,0,368821,3858.0006067009062,0,0.0,0,0.0,18305,190.7655937823617,0,0.0,24260,249.46913670645088,2086257,0,74897,0,0,3219,0,0,29,0.3033504534566261,0,0.0,0,0.0,0,0.0,0.07203,0.1883383448816838,0.3113980285991948,0.02243,0.3101992347275366,0.6898007652724634,25.25420974833681,4.5165168298425,0.3409742120343839,0.2027220630372493,0.2220630372492836,0.2342406876790831,11.247363716226523,5.663973343982708,24.19614072196287,13146.38701693068,63.28422358865515,13.301918740782629,21.55016030661074,13.88917062944015,14.542973911821631,0.5492478510028653,0.7597173144876325,0.6953781512605042,0.5887096774193549,0.1169724770642201,0.7025862068965517,0.905027932960894,0.8791208791208791,0.7152542372881356,0.1514084507042253,0.4983301526717557,0.6925064599483204,0.6376811594202898,0.5492063492063493,0.107421875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021585795938222,0.0045447628709104,0.0070988249870515,0.0093134862534569,0.0113698825349646,0.0136062048370822,0.0155229425212279,0.0178719229943901,0.0202791192600474,0.0223486012911158,0.0245699741368693,0.0265608617889521,0.028782606905355,0.0307354442256338,0.0326702197983804,0.0346008588131822,0.0369399156310568,0.0387295784302524,0.0406839990841156,0.0426557089816862,0.056716605158336,0.0713162858939425,0.0855534078493991,0.0984188515869421,0.1106451749197228,0.1260725862836077,0.1396305429190935,0.1522583260438224,0.1646614287855109,0.176215856095936,0.1893393458185898,0.2022311119784044,0.2148132011763424,0.2260983893941054,0.2375881834215167,0.2483469423981539,0.2589687726942629,0.2695473946191876,0.2789632760658121,0.2887971089313371,0.2979573866598695,0.3069047116984138,0.314678105485182,0.3209817305039406,0.3273932611604427,0.3336338153394006,0.3395925842301999,0.345158246410446,0.3503711201079622,0.3560675152332236,0.3577652485904664,0.3588393410986284,0.3598831300813008,0.3601546436535287,0.3607353554615339,0.361279926335175,0.361105379279694,0.362042544777472,0.363547524345083,0.3648643800229621,0.3659391609182404,0.367395238758179,0.3685175815836073,0.3690944660565312,0.3710044556373498,0.3727807542809118,0.3734337280147143,0.3753135816582515,0.3760277856535299,0.3767244145011229,0.3780258141564466,0.3820441397043068,0.3841288096607245,0.3871904616325283,0.3880259813611974,0.3900557731102408,0.3905842662168379,0.3931484502446982,0.3971278652305993,0.4,0.0,2.7000468949080583,61.19718468121821,215.71061598279908,314.81068330274,fqhc8_80Compliance_baseline,1 -100000,95716,40991,384.4811734715199,7326,75.4105896610807,5718,59.25864014375863,2332,24.00852522044381,77.34534288058313,79.71321405113312,63.32656324425341,65.07397984290965,77.05883167086795,79.4238118661953,63.22376779823985,64.97217097541466,0.2865112097151865,289.40218493782766,0.1027954460135589,101.80886749499508,80.93184,56.650397274634095,84553.90948221824,59185.71869929364,219.62068,131.88101064462734,228971.352751891,137305.77622779904,256.36444,121.58714397790804,264595.37590371515,124501.6781218048,4144.49476,1834.4505903285112,4296364.850181788,1883065.57858679,1396.5569,601.0355235342124,1446719.670692465,615702.9445381933,2294.10374,943.1777902713544,2363730.2645325754,959593.5399032162,0.37842,100000,0,367872,3843.3595219190106,0,0.0,0,0.0,18216,189.82197333779095,0,0.0,23952,247.09557440762256,2092851,0,75097,0,0,3240,0,0,50,0.5119311295917088,0,0.0,1,0.0104475740733001,0,0.0,0.07326,0.1935944188996353,0.3183183183183183,0.02332,0.312258064516129,0.687741935483871,25.54844169992104,4.635050230709933,0.3352570828961175,0.1937740468695348,0.2359216509268975,0.2350472193074501,11.016006461906995,5.482719759783302,24.760490296203702,13067.5974612562,63.91416853434046,12.954522263241202,21.27041432998009,14.888708511890842,14.80052342922833,0.5360265827212312,0.7608303249097473,0.6744913928012519,0.5648628613787992,0.1242559523809523,0.7064492216456635,0.9027777777777778,0.852017937219731,0.7398648648648649,0.117408906882591,0.4834058136873426,0.6925133689839572,0.6206662134602311,0.5156695156695157,0.1257976298997265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0046115176453894,0.0067468852725132,0.0088970140158439,0.0109621916248042,0.012828475142284,0.0151779252418376,0.0175270255096311,0.0194835728742869,0.0218648596083569,0.0239886822627273,0.0262271513657835,0.0282446359877394,0.0306276978231979,0.0328376384144642,0.0349600471371422,0.0372104102155159,0.0390510683782858,0.0410272405905593,0.043026103266816,0.0576360750240193,0.0716274201988487,0.0844245781918912,0.0980367401047913,0.110305677777426,0.1247976126226229,0.138350158699829,0.1516865301253581,0.164062666980144,0.1754794285469132,0.1893618625898273,0.2026418362927674,0.214895816332082,0.2268259041947631,0.2378645053299268,0.2484869310749994,0.2595725684950616,0.2693285630709689,0.278255144780304,0.2877253671164463,0.2954808404294706,0.3034789218265801,0.3107378737305589,0.3180745125765437,0.3243624169228339,0.3306993429406181,0.3361881150927804,0.3420165608822295,0.3476338649034098,0.3525157981015838,0.353859649122807,0.3545080836506097,0.3559621611685355,0.3569988834268645,0.3582603767393995,0.3581362469841562,0.3589234992621273,0.360169770349411,0.3611044623012481,0.362146983598934,0.3638990524439441,0.3647993029564942,0.3663276883640795,0.3673116249803366,0.3674596637433984,0.368519052739241,0.370415892525368,0.3744798890429958,0.378652397380835,0.3785557986870897,0.3831758554261077,0.3836012861736334,0.3855146124523507,0.3868004631416442,0.3852591535901093,0.3844955667385574,0.3810994441012971,0.3749232971977909,0.3770217512548801,0.3767313019390582,0.0,1.818291801730479,59.9676758347072,211.1917623914421,339.89795609606705,fqhc8_80Compliance_baseline,2 -100000,95663,41163,385.499095784159,7168,73.6543909348442,5606,58.01616089815289,2311,23.78139928708069,77.2498286400838,79.64899608856335,63.26585613190741,65.03908850713388,76.96601781164395,79.36379750247308,63.16139573366998,64.9368257980988,0.2838108284398544,285.1985860902744,0.1044603982374354,102.26270903508804,80.83438,56.663891802911024,84499.10623752131,59232.81917032816,218.96794,132.69469701856556,228310.50667447184,138125.95989940263,258.92499,122.90574302793,267141.08903128695,125782.39917605255,4052.6881,1812.5629509289647,4194723.2472324725,1853039.2637999689,1398.62787,601.9514849194397,1446749.140210949,613954.4493894603,2274.74764,940.0386626677714,2341928.1017739354,952641.2505167264,0.37889,100000,0,367429,3840.868465341877,0,0.0,0,0.0,18245,190.10484722410965,0,0.0,24194,249.36495823881756,2085556,0,74891,0,0,3233,0,0,41,0.428587855283652,0,0.0,1,0.0104533623239915,0,0.0,0.07168,0.1891841959407743,0.3224051339285714,0.02311,0.3233182664185057,0.6766817335814943,25.307346278270245,4.547627865372983,0.3453442739921513,0.1949696753478416,0.2227970032108455,0.2368890474491616,11.151511439431482,5.682399211468831,24.53615983417669,13113.44824387958,63.41839457858681,12.862198019460912,21.98543670923566,14.06127469500628,14.50948515488395,0.550303246521584,0.7676120768526989,0.6993801652892562,0.5940752602081665,0.1129518072289156,0.7011747430249633,0.8972809667673716,0.8669438669438669,0.7030716723549488,0.1361867704280155,0.501885014137606,0.7112860892388452,0.6439862542955327,0.5606694560669456,0.107376283846872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026945986466226,0.0049996450556248,0.0071862851574791,0.0094492989229831,0.0118501490168953,0.0142790214490864,0.0162438308112738,0.0189002910093429,0.0209245244426263,0.0229823842687423,0.0251610388544701,0.0271808357644738,0.0292335079180515,0.0313746508487853,0.0332662227040421,0.0354546112714222,0.0374392505932458,0.0395257327366923,0.0417928150067105,0.0438445577486523,0.0583035546360729,0.0723224664621055,0.0853922206595436,0.0978512501052277,0.1105060418975251,0.1252778189361386,0.138735198853077,0.1514631599138941,0.1639816003423192,0.1752750085940185,0.1897476289638653,0.2025570399930597,0.2144929116684842,0.2261050784249204,0.2370939435080631,0.2488137702659154,0.2591045979199086,0.2697436707432646,0.279365223924774,0.288199871288039,0.2972213187119558,0.3050247949423018,0.312482161545048,0.3196051285138145,0.3263070579911684,0.3328712184977967,0.338201103417074,0.3440700722460201,0.3492468194708223,0.3543558672623861,0.3553240427547016,0.3568565663266716,0.3576999844287473,0.3582293376723374,0.3599563834077703,0.3601845444059977,0.3596553971357271,0.360001979936642,0.3608939891085877,0.3623388995739938,0.3633808131308367,0.363953025477707,0.3647634308847094,0.3660758580255265,0.3666723296847317,0.3668851599370739,0.3685700397449461,0.3707507639960933,0.371446664790318,0.3731759827764931,0.3737917198613897,0.375,0.3779418259827118,0.3805485522194209,0.3822808671065033,0.3794044370625222,0.3797235023041475,0.3789711006353761,0.3791285040244241,0.3832632785632403,0.0,2.231960283660149,60.24845352206936,215.14846798863616,323.9971106363199,fqhc8_80Compliance_baseline,3 -100000,95749,41110,385.2259553624581,7239,74.39242185296975,5661,58.60113421550095,2348,24.1777982015478,77.32698317968122,79.68728620349265,63.31555014592704,65.0615621303907,77.04424736825544,79.40163699890087,63.211860041828935,64.95878998105911,0.2827358114257805,285.6492045917776,0.1036901040981064,102.77214933158518,81.01104,56.74684822429666,84607.71391868322,59266.25680090305,220.93879,133.93087072016877,230220.26339700675,139355.86543390734,259.22619,123.67174045369752,267238.2479190383,126450.48387900268,4115.27486,1830.3518635812052,4263533.29016491,1877642.434165368,1376.36826,602.7755647209151,1422431.3987613448,614493.2529017687,2317.13032,957.2806878037972,2388318.938056794,973427.1409432092,0.37951,100000,0,368232,3845.805178121965,0,0.0,0,0.0,18381,191.4171427377832,0,0.0,24213,249.38119458166665,2088237,0,74920,0,0,3175,0,0,42,0.4386468788185778,0,0.0,0,0.0,0,0.0,0.07239,0.1907459618982372,0.3243541925680342,0.02348,0.3285340314136126,0.6714659685863874,25.40886538278389,4.590100828766113,0.3227344992050874,0.202791026320438,0.2317611729376435,0.2427133015368309,11.048735866637744,5.472235936241969,24.77676083614584,13070.858576038852,63.4581140065305,13.366181779653251,20.453513459815543,14.618937730040908,15.019481037020809,0.540893835011482,0.7674216027874564,0.6683087027914614,0.6021341463414634,0.12372634643377,0.7005150846210448,0.8967551622418879,0.8555304740406321,0.7391304347826086,0.1726618705035971,0.4904695490469549,0.7132262051915945,0.6083815028901735,0.5616979269496545,0.1113138686131386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023301757763031,0.0045020380848086,0.0068205346812009,0.0091230494148244,0.011390795830155,0.0134209052492235,0.0155810254109393,0.0177612641120388,0.0201034299497158,0.0222720340631109,0.0243617468305131,0.0265662050771425,0.0284527774351383,0.0306849540755385,0.0329272444063915,0.0350596209882411,0.0368874946941226,0.0389598265686101,0.0409698909756072,0.0432640220018334,0.0579687451066361,0.0716706768490427,0.0852107729564825,0.097959655632759,0.1101308119617578,0.1257507189984774,0.1390677202100015,0.1512760724438624,0.1633335827356584,0.1749546513250399,0.1890892628084207,0.2022268675468714,0.2146432768902624,0.226149183179963,0.2368606468943347,0.2477441525329786,0.2589596925551881,0.2692169054699468,0.2785270357788054,0.2874749211808541,0.2962164917402284,0.3042841407110548,0.3115506385400732,0.3179116485152676,0.3247061400306636,0.3306836836713282,0.3372999949842002,0.3433296357214805,0.3485680175445426,0.3539370390928554,0.3551013805004314,0.3560029766826525,0.3569252468265162,0.3586629219989576,0.3590697951405431,0.3590440645686464,0.3583869175200445,0.3590499078219647,0.3606113567047051,0.3612178856846584,0.3615871168753167,0.362422224864265,0.3633758297334317,0.3653993078962743,0.3659863616578807,0.3670258790214741,0.3671705026909424,0.3713418873648947,0.3726237082495679,0.3736842105263158,0.3750970984692712,0.3804904051172708,0.3785475001580178,0.3780646146795998,0.3806603773584905,0.3830673969992855,0.3842720837180671,0.3897822104620395,0.3973713646532438,0.4001563110590074,0.0,2.0218118924945068,60.128648783607,215.25640162616912,325.9536981071493,fqhc8_80Compliance_baseline,4 -100000,95752,41507,389.62110452001,7364,75.49711755368034,5689,58.745509232183146,2330,23.93683682847356,77.39144353273707,79.73181032702402,63.36142006586866,65.08775780846064,77.10366133062443,79.44357469523058,63.25554418497488,64.98449840290728,0.2877822021126377,288.2356317934409,0.1058758808937767,103.25940555335931,80.8313,56.62521150434401,84417.34898487761,59137.36684804913,218.82718,132.14975615842545,227905.02548249645,137382.1916601486,259.98661,124.13163854109936,267233.36327178543,126233.6188830828,4124.9541,1852.679522869165,4262655.756537722,1890010.4485202783,1393.67743,607.415812457521,1439859.9507059904,618840.1089629483,2292.32198,954.0722312572884,2357173.928481912,964802.0862236932,0.38304,100000,0,367415,3837.1522265853455,0,0.0,0,0.0,18226,189.6775002088729,0,0.0,24304,249.53003592614252,2095630,0,75180,0,0,3282,0,0,43,0.4490767816860222,0,0.0,1,0.0104436460857214,0,0.0,0.07364,0.1922514619883041,0.3164041281912004,0.0233,0.310136351942372,0.689863648057628,25.21710436998921,4.640910751369237,0.3222007382668307,0.2005624890138864,0.2425733872385305,0.2346633854807523,11.252159693787826,5.593216709405361,24.76382845847445,13184.41205659826,64.06697008086199,13.25119795340881,20.81634566297256,15.442740046822296,14.556686417658344,0.5420987871330638,0.775635407537248,0.685215493726132,0.5702898550724638,0.1168539325842696,0.7232267037552156,0.9305555555555556,0.8675889328063241,0.7156549520766773,0.1621621621621621,0.480828040461068,0.704225352112676,0.6156744536548606,0.5276476101218369,0.1059479553903345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023691884011015,0.0048947576436251,0.0073862137537793,0.0096891154873503,0.011784323494423,0.0138832342643107,0.0160790707153046,0.0183137102862856,0.020370010930748,0.0224686911680445,0.0244979508196721,0.0265306959947472,0.0284830612098108,0.0305675058150305,0.0328433292786013,0.0349565109600644,0.0369580741645363,0.0389864962973718,0.0410698322280202,0.0428659228934237,0.0566272102878854,0.0711744516993135,0.0845572807385648,0.097889301376634,0.1098071468488701,0.1255194729662567,0.1388529492862748,0.1513745850710698,0.1640091845997757,0.1755303753095419,0.1895380507918052,0.2025828502206454,0.2149130434782608,0.2269315239125446,0.2381146099041252,0.2498948580029661,0.2611109872220859,0.2714248794903199,0.2814750138906213,0.2911831353429925,0.2998057713651498,0.3077561614366553,0.3150354324653661,0.3219134581970258,0.3285341426403642,0.3347496243749846,0.3404255319148936,0.347102703803656,0.3529663212435233,0.3583048566490309,0.3593211670973298,0.3603426465735342,0.3608604451452142,0.3613160288151987,0.3618872294308026,0.3619321396351626,0.361711554894452,0.3619322751670141,0.3634779042345945,0.3652763127313035,0.3661497979513203,0.3672096668584694,0.3690436100353595,0.3698987626546681,0.3700588933860061,0.3710660431881469,0.3730411115885976,0.3738314795449504,0.3781524511192972,0.3805497675909601,0.3834607238235565,0.3855557949159844,0.3887007094011631,0.3892741562644475,0.3873779967781673,0.3889679715302491,0.389444949954504,0.3862903225806451,0.3855191256830601,0.3850860420650095,0.0,2.6647607704854206,62.87763725193737,210.58820489875296,325.89353267171225,fqhc8_80Compliance_baseline,5 -100000,95732,41471,387.8849287594535,7409,76.22320645134333,5762,59.64567751639995,2305,23.680691931642503,77.37264048070351,79.73118516127168,63.34029949113111,65.08150527575832,77.0816624298628,79.43938488899937,63.23412539739788,64.97714426198891,0.2909780508407067,291.80027227231164,0.1061740937332302,104.361013769406,80.33784,56.359051874186406,83919.52534157857,58871.69585320103,221.50725,133.5336655079292,230808.07880332597,138931.54437711733,261.64864,124.00507982359706,270032.0686917645,126896.58545000949,4222.80785,1883.874603728072,4373449.097480467,1931684.4862617457,1426.53204,617.0599102867636,1476226.1626206494,631206.3329784368,2284.3782,954.2153454976828,2349576.0038440647,967630.4474546886,0.38241,100000,0,365172,3814.523879162663,0,0.0,0,0.0,18410,191.72272594325827,0,0.0,24440,252.0891655872645,2093793,0,75098,0,0,3198,0,0,43,0.4387247733255338,0,0.0,1,0.0104458279363222,0,0.0,0.07409,0.193744933448393,0.3111081117559724,0.02305,0.3219186866743619,0.678081313325638,25.450036175406076,4.64594095183104,0.3255813953488372,0.2023602915654286,0.2263103089205137,0.2457480041652204,11.022671747857087,5.354625660584378,24.68363338165264,13253.41339326471,64.82381974997371,13.72784409677139,21.10677184041413,14.37863510532215,15.610568707466037,0.5437348143005901,0.7787307032590052,0.6918976545842217,0.5973926380368099,0.1045197740112994,0.7015032211882606,0.9297297297297298,0.8603603603603603,0.7649122807017544,0.1208053691275167,0.493241695303551,0.7085427135678392,0.6396648044692738,0.55053974484789,0.1001788908765653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493670886075,0.004570652559464,0.006827150349473,0.0089880565485862,0.0112863374309855,0.0135391005150966,0.0158912990296012,0.0183826156185887,0.0206584959470095,0.0229399119664244,0.0252524734710616,0.0272789807086169,0.0294287006951013,0.0319052523171987,0.0340039203548952,0.0362867802846305,0.0385443627704731,0.04061650797602,0.042529309054627,0.0444201426860386,0.0589697007663555,0.0735532607217217,0.087200402608568,0.0988165556092741,0.1117834327760325,0.1278001543454589,0.1411753476088962,0.1540360509906574,0.1662502135656928,0.1778211493710523,0.1925930712154987,0.2059937249810667,0.2181025200395897,0.2299892809485266,0.2413998019148233,0.2524626857402462,0.2627319207841211,0.2730722457436267,0.2824763116635234,0.2915323829294308,0.300280202857606,0.3081677807564884,0.315521839625437,0.3225202295483468,0.3288567744446877,0.3350736873287417,0.3408273493991002,0.3468919934286769,0.3519027374533389,0.3566295934272052,0.3577002385476893,0.3592703827184305,0.3599740366027459,0.3610857631193963,0.3618523981940905,0.3616946133529881,0.3621504966834872,0.3630107668499555,0.3645696100740842,0.3654265394374754,0.3663362626243699,0.3675211985847844,0.3688374923919659,0.3693764268767626,0.3696003083817187,0.3703471678412947,0.3723012862561675,0.375196380317979,0.3778643365968347,0.3791108645693002,0.3814447075970122,0.3833697331273638,0.3873011849692668,0.3884303836160782,0.3910504003768252,0.3927765237020316,0.3922321154436598,0.3934025656689065,0.3966759002770083,0.3930769230769231,0.0,2.0349789894187764,62.000398975217706,219.0428107339918,331.72837156276444,fqhc8_80Compliance_baseline,6 -100000,95732,41003,384.333347261104,7143,73.23569966155517,5565,57.42071616596331,2261,23.18973801863536,77.33281654085012,79.69748681794748,63.319784280511655,65.07037412035865,77.04891729328445,79.41269268637,63.215871871590416,64.96826054396024,0.283899247565671,284.7941315774847,0.1039124089212393,102.11357639840912,80.65552,56.48543155217613,84251.13859524505,59003.5351829516,218.77942,132.41299887141372,227791.90866168053,137589.5255428444,254.60601,121.42651856365352,260649.1455312748,122862.05455736096,4050.20275,1823.4812236638368,4185359.117118623,1860591.009452283,1365.66032,596.8199902824603,1407795.940751264,605656.879777364,2238.18422,939.6713805639422,2299205.40676054,951400.4530895506,0.37755,100000,0,366616,3829.5972088747753,0,0.0,0,0.0,18215,189.4977645928216,0,0.0,23822,243.53403250741653,2093447,0,75196,0,0,3115,0,0,49,0.5118455688797894,0,0.0,0,0.0,0,0.0,0.07143,0.1891934843067143,0.3165336693266135,0.02261,0.317885204421361,0.682114795578639,25.45449752108017,4.556957776468787,0.3292003593890386,0.2017969451931716,0.2267744833782569,0.2422282120395328,10.97273331956071,5.447564576349023,24.418296404649624,13030.099539832549,63.013996636104,13.224566785753876,20.815069782903247,14.039804356845284,14.93455571060158,0.5437556154537286,0.7693677649154052,0.6932314410480349,0.5768621236133122,0.1216617210682492,0.7114427860696517,0.9418282548476454,0.8721174004192872,0.7402135231316725,0.1284722222222222,0.487012987012987,0.6876640419947506,0.6302583025830258,0.5300713557594292,0.1198113207547169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022798893493702,0.0045033623076689,0.0069753274444106,0.0093920574094591,0.0116387905424653,0.0136591427640156,0.0160515607950315,0.0180602348136804,0.0199484673115069,0.0222094797309058,0.0244317541035709,0.0265227748798619,0.0287591511063584,0.0307209062821833,0.0328411799300461,0.0348334814876067,0.0369610919522374,0.0389053776384882,0.0410917598128411,0.0430756088922224,0.0576770502755971,0.072051054035675,0.0846423253570455,0.097570462884116,0.109896596430943,0.1253542274669035,0.1389377903153965,0.1519418457379439,0.1639538609420057,0.1753849783382662,0.1893093610378425,0.2025183630640084,0.2147074494112018,0.2263220615085222,0.2376647088585318,0.2487209585612722,0.2593824281043199,0.2694234037524339,0.2782123031864776,0.2863343793664246,0.2943430741443986,0.3023315728455494,0.3092566038183046,0.3154946135943761,0.3220823450708508,0.3285463795317593,0.3348170066577228,0.3405128466557912,0.3460191000155707,0.3518119153777966,0.3527045994385662,0.3533582552798201,0.3539909287440125,0.3545642943060447,0.3562489745387289,0.3564944938487767,0.3568558951965065,0.3587924478609405,0.3602144092613841,0.3612577625856792,0.3630008268811546,0.363926813779965,0.3645780803496386,0.3639156072733795,0.3642860592013134,0.3649480216816361,0.3660458452722063,0.3677484658695514,0.3711511299435028,0.3746851637148682,0.3762553308570642,0.3764661774945102,0.3808165335361988,0.3808611707018081,0.3816261082814563,0.387058403711193,0.3893913843323624,0.3844435418359058,0.3794247787610619,0.3824319140774836,0.0,2.6922901580357608,61.84692676116504,210.2190193495346,315.82503863472607,fqhc8_80Compliance_baseline,7 -100000,95784,41365,387.3820262256744,7296,74.99164787438403,5703,59.00776747682285,2223,22.843063559675937,77.34910350822409,79.67729187203231,63.34642956891118,65.06653044801335,77.07253435375448,79.40102896109929,63.24462208671837,64.96753616317737,0.2765691544696125,276.2629109330277,0.1018074821928038,98.99428483598172,80.52836,56.41289159859688,84072.87229599933,58895.94462394228,220.14781,133.46777282274826,229317.5686962332,138822.24883357162,265.71296,126.67257800839656,274154.5456443665,129728.4169684698,4088.00776,1833.5959986968592,4232387.705671093,1878746.4281057983,1364.32604,595.5242374302528,1409587.1961914306,606946.0425856645,2191.25498,918.0815628989978,2253797.96208135,929375.5928568692,0.38023,100000,0,366038,3821.4941952726967,0,0.0,0,0.0,18332,190.83563016787767,0,0.0,24802,255.71076588991895,2092224,0,75181,0,0,3155,0,0,49,0.5011275369581558,0,0.0,0,0.0,0,0.0,0.07296,0.1918838597690871,0.3046875,0.02223,0.3137665054255458,0.6862334945744542,25.209211710309056,4.510119688258711,0.3412239172365421,0.2081360687357531,0.2200596177450464,0.2305803962826582,11.068969502097016,5.527437088621374,23.849761580488824,13126.146452220886,64.21031105200235,13.745074244036347,21.906997429119887,14.087901619358874,14.470337759487236,0.5425214799228476,0.7455770850884583,0.6932168550873586,0.5705179282868525,0.1095057034220532,0.7033356990773598,0.9316939890710384,0.8638297872340426,0.7304964539007093,0.1305841924398625,0.4897531439217513,0.6626065773447016,0.6388888888888888,0.5241521068859198,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025822261827608,0.0047740196028745,0.0070507552931389,0.0095174249118851,0.011591491438565,0.0138645710330225,0.0163476630179987,0.0185030209013716,0.0208444026648138,0.0229381733356523,0.0253050435922916,0.0274502560313599,0.0293204801447011,0.0314854460867059,0.0336835376478229,0.0356445665533945,0.0376759105960264,0.0396926618346968,0.0415835411471321,0.0436625291569476,0.0579917348472199,0.0718207775093345,0.0849357294134915,0.0978319128140993,0.1102996965098634,0.1258982162482035,0.1398092209856915,0.1518602400927196,0.1639919759277833,0.1758240581045324,0.1894378854246262,0.2016523206021021,0.214831646354059,0.226670311645708,0.2382545166472284,0.2499916931562683,0.2608089105153903,0.2709312523894123,0.279793040064448,0.28839989008976,0.2961180770832369,0.3040263037805834,0.3120760479679897,0.3186972573839662,0.3256424275560415,0.3319475456754789,0.3377217156027658,0.3431472469233317,0.3494538567314428,0.3546578512396694,0.3556122311283837,0.3564759264622726,0.3575449735449735,0.3587234966350676,0.3600838961116235,0.3601189563724438,0.3598433809425677,0.3606031704268894,0.3617683792708173,0.3628877790308433,0.3643566587183868,0.3655986509274873,0.3662560955103413,0.3675413371675053,0.3699634586065871,0.3708856107932174,0.3705650837427102,0.372971256153724,0.3739589609100897,0.3761486296697564,0.3780700947474933,0.3794693111766282,0.3819066521544273,0.3837308018831519,0.3859900611620795,0.3858181818181818,0.384156862745098,0.3892686969131966,0.3874051166713522,0.3856573705179283,0.0,2.072998813693318,62.27128793634031,212.02224690840572,331.4609716605326,fqhc8_80Compliance_baseline,8 -100000,95659,41016,384.9716179345383,7209,73.9501771919004,5591,57.778149468424296,2332,23.918293103628518,77.31532774038504,79.70488205783052,63.31028192710126,65.07530774611797,77.02990618492748,79.42353208919077,63.20440723315145,64.97376762330715,0.2854215554575603,281.34996863974493,0.1058746939498078,101.54012281081748,81.85848,57.30538260059147,85572.9832007443,59905.66763251913,218.5031,132.54454939242774,227737.74553361424,137878.40076984678,258.34664,123.2779187198864,266297.1806102928,125850.70171543804,4061.50973,1840.4481399324384,4200534.220512445,1879182.67233586,1382.65593,604.7096254712966,1428781.73512163,615745.1771164823,2292.33072,957.7102533266664,2353789.774093394,965427.0255303842,0.37853,100000,0,372084,3889.6810545792864,0,0.0,0,0.0,18195,189.50647612874897,0,0.0,24161,248.78997271558347,2085862,0,74846,0,0,3309,0,0,45,0.4599671750697791,0,0.0,0,0.0,0,0.0,0.07209,0.1904472564922199,0.3234845332223609,0.02332,0.3179487179487179,0.6820512820512821,25.20610365689695,4.598339599037279,0.3235557145412269,0.2030048291897692,0.2405651940618851,0.2328742622071185,11.322689085707289,5.810940224522912,24.730744881175657,13051.557714952733,63.211730960619285,13.270037440995727,20.60778568376011,14.9885189261345,14.345388909728928,0.5446252906456805,0.7647577092511013,0.693200663349917,0.5769516728624535,0.1129032258064516,0.7112038970076549,0.922872340425532,0.8617021276595744,0.75,0.1290322580645161,0.4870004814636495,0.686429512516469,0.6340552651232263,0.5246853823814134,0.1085043988269794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.004592550538332,0.006779110596927,0.0091947249710442,0.0115458170572916,0.0136898395721925,0.0159928195504059,0.0181706756549716,0.0202689574065551,0.0222929936305732,0.0241626156339097,0.0261836036609793,0.028197847869473,0.0304382322332017,0.0324521836066927,0.034574055496375,0.0368954370259853,0.0391900447322809,0.0411595830992947,0.0430224075039082,0.0574425626612894,0.0716275076433387,0.0842700756740871,0.0970671493365043,0.1088631374535629,0.1241861893016313,0.1377010883992567,0.1502071859987004,0.16250507728157,0.1741286589882032,0.1888999073016146,0.2020532368802928,0.2140384112882153,0.2250985113835376,0.2364812020136372,0.247728508192902,0.2587196961233381,0.2691740495998018,0.2774591420686209,0.2858404035771612,0.2942301007994438,0.3026491462300611,0.3105719565938492,0.317543227665706,0.3248285255630685,0.3309522047030375,0.3373185953831115,0.3432162915982119,0.3484424402633079,0.3535489667565139,0.3544663925032023,0.3561088592935726,0.3573060648801128,0.358621488896293,0.3587608906098741,0.3583972981271108,0.3588686009803766,0.3604777237481929,0.3616595380667237,0.3629193790686029,0.3641188163372463,0.364367338046858,0.3645677739675594,0.365759978437142,0.3677863702271629,0.3680970344755318,0.3684392066685829,0.3688511558396133,0.3715402380529401,0.3742210428979214,0.3767761579627237,0.3776201225411157,0.3774897854954034,0.3826080223013783,0.3835341365461847,0.385439229843562,0.3885311254216498,0.3889112093210125,0.3971885336273429,0.4003038359285986,0.0,2.5627013665444216,63.1280147434569,209.8826992736085,314.02921447191613,fqhc8_80Compliance_baseline,9 -100000,95618,41275,387.3015541006924,7183,73.94005312807212,5527,57.13359409316238,2289,23.489301177602545,77.3146043072854,79.73308247344968,63.296484254502126,65.08263538124241,77.02986971064013,79.4513139611215,63.19180344880498,64.98228650878268,0.2847345966452792,281.7685123281848,0.1046808056971428,100.34887245973324,80.67466,56.48558860289048,84371.8337551507,59074.22096560322,219.66523,132.94564410038055,229080.4346461963,138386.64697063374,252.16969,120.10546285504734,259858.1229475621,122524.79003106237,4008.37783,1794.916813199672,4150864.743040013,1835964.811227669,1377.78484,595.2428663706988,1426788.2302495346,608383.77331747,2254.06652,935.6075241961344,2317355.602501621,944244.498406178,0.38063,100000,0,366703,3835.0833525068506,0,0.0,0,0.0,18284,190.52897989918216,0,0.0,23645,243.3642201259177,2091020,0,74961,0,0,3207,0,0,39,0.4078729946244431,0,0.0,0,0.0,0,0.0,0.07183,0.1887134487560097,0.3186690797716831,0.02289,0.3086076953589845,0.6913923046410154,25.687359092341364,4.528667698261615,0.3318255834991858,0.1972136783064954,0.2317713045051565,0.2391894336891623,11.132338511721484,5.565591585656748,24.337858985082097,13107.3947547567,62.04330811482946,12.581756271428285,20.63400519417202,14.319736734330426,14.507809914898733,0.5379048308304686,0.7522935779816514,0.693565976008724,0.570647931303669,0.113464447806354,0.6904937361827561,0.9186746987951808,0.8568376068376068,0.7025089605734767,0.1258992805755395,0.4882494004796163,0.679419525065963,0.637628111273792,0.5339321357285429,0.1101532567049808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0045126811410491,0.006913144110123,0.0090636589950718,0.01129150390625,0.0136280301487064,0.0160647076223212,0.0182143221983859,0.0202718597539147,0.0223756029124125,0.0245333333333333,0.0268723869788082,0.029175754084194,0.0312921805611366,0.0334344935794211,0.0354450797721092,0.0374883431768728,0.0394534656754848,0.0413813913803508,0.0433889253939943,0.0576786386252456,0.071780259381089,0.0848813886817814,0.0976326066590174,0.1096708818003335,0.1251945741605515,0.1386507759472292,0.1516220479154233,0.1638246432315625,0.1757034044884672,0.1892477990678405,0.2022090704127644,0.2151061418421167,0.2266218185403907,0.237810725899796,0.2492563487835198,0.2596070015424854,0.2695688431111812,0.2799222753769758,0.2885574992830513,0.2963048739534722,0.3038731570325298,0.3116112762103219,0.3189351241156014,0.325225969481971,0.331808824073275,0.3378396985742361,0.3442606261135149,0.35,0.3550845219228737,0.356112878011967,0.3563569766321036,0.3581535770212886,0.358488653314217,0.3592189596064987,0.3584282267607149,0.3587049810864935,0.3601848032340566,0.361822871883061,0.3625349989231101,0.363609016901991,0.364507254121885,0.3661794619078575,0.3679775910364146,0.3691908015010103,0.3708841979229027,0.3726249821962683,0.3746114477691607,0.3754122517718055,0.3780497496622427,0.379734158776402,0.3811804779392198,0.3813279063851437,0.3818474758324382,0.379649787032655,0.3779356858966639,0.3769772905246671,0.3805985552115583,0.3849372384937238,0.3873767258382643,0.0,2.617198211291886,59.59761786130253,203.56082789295704,321.7290686268814,fqhc8_80Compliance_baseline,10 -100000,95656,41372,387.8899389478966,7239,74.55883582838504,5630,58.386300911599896,2268,23.406791001087228,77.29129418892526,79.69089967130783,63.29829466637945,65.06983774364558,77.0112463990689,79.40804466575206,63.194893131822944,64.96752180626945,0.2800477898563684,282.85500555577414,0.1034015345565038,102.31593737613308,81.51506,57.12327075618186,85216.88132474701,59717.394367506335,221.20687,133.90375259586258,230784.44634941875,139516.65613851996,260.40575,123.7861971645826,269091.06590281846,127107.79528752224,4098.82149,1852.96415182894,4253746.299238939,1905898.450519506,1352.88481,593.60270864114,1402532.8782303254,608769.7046093708,2246.88646,944.6732639979308,2320812.1602408634,963457.501628964,0.38085,100000,0,370523,3873.4946056703184,0,0.0,0,0.0,18439,192.26185498034624,0,0.0,24349,251.46357782052357,2084794,0,74886,0,0,3203,0,0,44,0.4495274734465166,0,0.0,0,0.0,0,0.0,0.07239,0.1900748326112643,0.3133029423953585,0.02268,0.3160519753248458,0.6839480246751543,25.141207625929063,4.6173094889280994,0.3179396092362344,0.2024866785079929,0.2383658969804618,0.2412078152753108,11.082913582911534,5.433902541099795,24.341948736734118,13092.697596540303,63.97693941565071,13.440659406486017,20.296849547423044,15.08351772793506,15.155912733806591,0.5438721136767318,0.7771929824561403,0.7022346368715083,0.5774962742175856,0.1060382916053019,0.6923620933521923,0.9178082191780822,0.8681318681318682,0.7368421052631579,0.1262135922330097,0.4940702087286527,0.7109677419354838,0.6456928838951311,0.5345316934720908,0.100095328884652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474225864286,0.0042279225387813,0.0064654953665641,0.0087186261558784,0.0110592233108486,0.0136477058613841,0.0160898913065644,0.018328670328997,0.0204277768689677,0.022454078184834,0.0245508245139059,0.02646714458846,0.0287019319795074,0.0308307400614141,0.0330453095481433,0.0352691730878626,0.0377643974174292,0.0397773878373186,0.0420039538029341,0.0439319856965627,0.0580920234499911,0.0721363331657449,0.0854682906341873,0.0979065141197149,0.1102562478892266,0.1259790017357436,0.1392993630573248,0.1514225152583534,0.1637498797293107,0.1754286143705246,0.1886570704620195,0.2026659736434612,0.2149147155188366,0.2265400871602829,0.2378884246960394,0.2495729529471792,0.2601747759426056,0.2704915263780192,0.2800881237366281,0.288147638697845,0.2964172398619699,0.3041457933423849,0.3113307029704143,0.3179199769579723,0.3252324392737185,0.3315467075038285,0.3378069889371096,0.3430412042352341,0.3490250045439202,0.3539124572002697,0.3548704803022126,0.3564441133049105,0.3573376669257401,0.3582033288870846,0.3589387974230494,0.3590043383280514,0.3588202559821925,0.3596705509523652,0.3607717815232892,0.3607190317135366,0.361633145463799,0.3634446257312269,0.3645277607911772,0.3663838692981074,0.3670054805765469,0.3682819613794547,0.3699243829362248,0.3717746514415494,0.3721710270804646,0.3721515951067402,0.374627891000687,0.3759786950732356,0.3752856054836253,0.3774967224492944,0.3762650372350582,0.3780384568871689,0.3795918367346939,0.3825250836120401,0.3866139508613386,0.3846749226006192,0.0,1.811042612856296,63.11255057961434,218.54077335858767,316.433833198141,fqhc8_80Compliance_baseline,11 -100000,95638,41315,387.9838557895397,7301,75.27342688052866,5675,58.815533574520586,2356,24.29996444927748,77.27514686010801,79.68944076685916,63.27600815666828,65.05778952739084,76.98516348870432,79.39685192871454,63.17035910067445,64.95377013100213,0.289983371403693,292.5888381446242,0.1056490559938296,104.01939638870772,80.24236,56.263236126130224,83902.17277651143,58829.37339355719,218.58352,131.90486021269697,228019.5738095736,137388.71789535307,259.56098,123.86802129574632,268786.2983332985,127386.59583658226,4133.19578,1853.9492379929757,4286637.989083837,1903522.9866540884,1371.66952,592.3900337826615,1422438.424057383,607660.5352707622,2324.36212,959.9380161559434,2399029.695309396,976306.3971630816,0.38093,100000,0,364738,3813.7351262050647,0,0.0,0,0.0,18163,189.3598778728121,0,0.0,24259,251.0403814383404,2090371,0,74995,0,0,3210,0,0,31,0.324138940588469,0,0.0,2,0.020912189715385,0,0.0,0.07301,0.1916625101724726,0.3226955211614847,0.02356,0.3159129414831226,0.6840870585168773,25.31046641267766,4.616497153077065,0.3284581497797357,0.1945374449339207,0.2336563876651982,0.2433480176211453,11.205293954613133,5.579678492638076,25.132705996445,13110.261762580109,64.20950116180227,13.09197038234439,20.978152645681853,14.867283967731266,15.272094166044758,0.5441409691629956,0.7907608695652174,0.6786480686695279,0.5965309200603318,0.1151339608979,0.6979241231209735,0.9030470914127424,0.847682119205298,0.7467532467532467,0.1272727272727272,0.4939223936418887,0.7362045760430687,0.6243798724309001,0.5510805500982319,0.1121157323688969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569183408943,0.0045204382595299,0.0070214600984222,0.0094464195022854,0.0116457653149442,0.0140235457063711,0.0162336338051148,0.0183050709027983,0.0205800864915706,0.0226695609436435,0.024884093053789,0.0271211514161555,0.0290141366751034,0.0309646030469829,0.0328793151519532,0.0350599505498484,0.0371291746999191,0.0391230293085183,0.0409074353504344,0.0430502252628066,0.0567122371336594,0.0704263724288244,0.0845641532029329,0.0970164977560523,0.1093471073507198,0.1246121095942639,0.1382696108643444,0.1508532932536002,0.1633367221360158,0.1742200346054229,0.1886354559094981,0.2024572475790798,0.2157027315733252,0.2275074837988091,0.2382828450035866,0.2491585109810151,0.2601674239541598,0.2704398257847584,0.2803241557495532,0.2891765543699245,0.2972223511393697,0.3059905455654479,0.3136103100857987,0.3203325883738255,0.3266344503548257,0.3327406309810459,0.339020901814167,0.344267101807705,0.3498272233625191,0.3554519938569083,0.3564605261380065,0.3571122802656835,0.3580937844484016,0.3582955155065172,0.3592927741916248,0.3590945414310302,0.3591254088729397,0.3599887951489586,0.3607859245567194,0.3626444388795478,0.3640639698965193,0.3656600928534582,0.3669388785990907,0.3662247191011236,0.3665417623594826,0.3665190387588773,0.3677397181807767,0.3687792832721286,0.3717390534848324,0.3730123763367645,0.3739389768295481,0.3756369682990935,0.3780526482714875,0.380741306839893,0.3842724340732308,0.3849584187055562,0.3872868217054263,0.3917504617278883,0.3872945110058512,0.3937038476486592,0.0,1.9421732144102704,62.15301360866256,219.9095741535446,321.48484780812163,fqhc8_80Compliance_baseline,12 -100000,95684,41640,391.1312236110531,7286,74.9341582709753,5675,58.72455164917855,2370,24.39279294343882,77.28391542799022,79.68194590010913,63.28504443165552,65.05963036159554,77.00214981662349,79.39906424673289,63.181905588327695,64.95885447628764,0.2817656113667368,282.8816533762364,0.1031388433278266,100.77588530789684,80.64606,56.52949613242033,84283.74649889219,59079.36136911117,221.62314,133.7335821513212,231033.1507880105,139187.19188499203,260.14079,123.95547923799649,268181.5873082229,126718.1098844505,4117.96081,1847.5024103896449,4261272.4070900045,1889829.1553362345,1391.72184,605.5205866652884,1439417.164834246,618218.1814688909,2334.6095,963.4398037609202,2404796.141465658,976908.8325460084,0.38448,100000,0,366573,3831.079386313281,0,0.0,0,0.0,18396,191.6516868023912,0,0.0,24403,251.36908992098992,2088711,0,75020,0,0,3172,0,0,44,0.4598469963630283,0,0.0,0,0.0,0,0.0,0.07286,0.1895027049521431,0.3252813615152347,0.0237,0.32389403627822,0.67610596372178,25.362921276126364,4.5406110349813735,0.3238766519823788,0.2001762114537445,0.2375330396475771,0.2384140969162995,11.086432628926678,5.605925406815016,25.11074978286368,13240.543409262458,64.06001908588581,13.245122205887457,20.794699363357456,15.106108756510167,14.914088760130737,0.5453744493392071,0.7526408450704225,0.7023939064200218,0.5927299703264095,0.1108647450110864,0.7208333333333333,0.9331476323119776,0.8813559322033898,0.7685185185185185,0.1333333333333333,0.4857142857142857,0.6692406692406693,0.6405563689604685,0.537109375,0.1048689138576779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025029894002959,0.0047874066861408,0.007015442094683,0.009410473470798,0.0114872358393618,0.0134055904164289,0.0156662756897343,0.0176185807084201,0.0196062388136026,0.0219836505562498,0.0243244352340111,0.0264169166906415,0.0284829339068336,0.0304229532525352,0.032671304994116,0.0348311701742592,0.0367330867190981,0.0389881353996906,0.0410252142797703,0.0430754158502522,0.0576633795754638,0.0719490744618477,0.0852171357807023,0.0981943684498505,0.1101108179419525,0.1258679820475908,0.1401509922804931,0.1533456160342495,0.1660217628321611,0.1779580972007556,0.1915925626515764,0.2048682200773455,0.2181184668989547,0.2304381632407214,0.2415358843237524,0.2528030017095535,0.2638228881310449,0.2731330665614608,0.2828041696506724,0.2919807694514245,0.3008303567286728,0.3098898779157724,0.3173565291688422,0.3242853711265914,0.3305931068079406,0.3371291653286565,0.34278618821257,0.3486184747145187,0.3550228310502283,0.3600206133801979,0.3605400884860257,0.3613162826590232,0.3618263346400067,0.3620233395514294,0.3631881553860819,0.36321044546851,0.362660057827344,0.3633984561449709,0.3644189875154342,0.3645034062387953,0.3644364869958537,0.3656749113792966,0.3663839597301241,0.3683806600153492,0.3689998296961292,0.3686204356518994,0.3696032588427665,0.3719506392158107,0.3742056206750459,0.3761365449034933,0.3779285681536839,0.3779048026069768,0.3807752915222187,0.3848831050919271,0.3835411003842909,0.3822448737702975,0.3805866994317309,0.3829656862745098,0.3823033707865168,0.3852427184466019,0.0,2.19718248822659,63.93866770724408,209.9371690445231,324.2145747906204,fqhc8_80Compliance_baseline,13 -100000,95664,41250,387.0526007693594,7293,75.13798294029101,5654,58.60093661147349,2299,23.739337681886603,77.35161970545354,79.7577201152714,63.31721993396855,65.09442791411291,77.06835479161701,79.47076141599204,63.21447977011957,64.99245205763201,0.2832649138365326,286.9586992793529,0.1027401638489777,101.97585648090524,80.22982,56.18466894626587,83866.26108044824,58731.25621578219,219.87364,133.05879630600458,229286.77454423817,138538.91734216144,257.11375,122.78372401327036,265399.99372804817,125746.18272844584,4130.83061,1835.2671101045544,4283714.1348887775,1884337.1692910928,1355.30178,589.8884245689078,1400234.9682221103,600576.7994308928,2274.30992,940.116182619768,2349173.921224285,958373.3017907372,0.38025,100000,0,364681,3812.10277638401,0,0.0,0,0.0,18330,191.05410603779896,0,0.0,23944,246.97900986787087,2095224,0,75100,0,0,3200,0,0,47,0.4808496404080949,0,0.0,0,0.0,0,0.0,0.07293,0.1917948717948717,0.3152337858220211,0.02299,0.3195042400521852,0.6804957599478147,25.68301706293057,4.604469244649156,0.3257870534135125,0.1982667138309161,0.2350548284400424,0.2408914043155288,10.905147290293709,5.339527659522009,24.46996172863271,13093.27392568966,63.52872985641926,13.16839391842391,20.67049313375793,14.813981870668476,14.875860933568946,0.5291828793774319,0.7475468331846565,0.6742671009771987,0.5733634311512416,0.1101321585903083,0.7163958641063516,0.9219653179190752,0.8504672897196262,0.7601246105919003,0.166023166023166,0.4702325581395349,0.6696774193548387,0.620933521923621,0.5138888888888888,0.0970081595648232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809282580723,0.0047862901181361,0.0072157833844155,0.0094793952694464,0.0117079819752006,0.0140048889794255,0.0163361036047519,0.0182577529076594,0.0204089979550102,0.0223704022370402,0.0249504991125747,0.026933708754226,0.0287322610190073,0.0309181632610981,0.0329291218212242,0.034979360004966,0.0372596776701041,0.03926046651649,0.0413333194619282,0.0431446147429882,0.0577608275429705,0.0719520877832223,0.084965468018557,0.0977398514278499,0.11085313858753,0.1260055038103302,0.13939438982439,0.152306446111869,0.1645110561956417,0.1759728545657589,0.1904746501045912,0.2035378099374979,0.215883486268491,0.2272926289980078,0.2377323583825213,0.2494512316800071,0.2598377689884025,0.2695728535723131,0.278508174386921,0.2871738483036675,0.2952678468124494,0.3033250713183369,0.3107499024026688,0.3178708773106827,0.3238376258302672,0.33043071276373,0.33666212551088,0.3426218884610986,0.3486276487090977,0.3536124178097534,0.3550653440826929,0.3564306050311524,0.3575222236310102,0.35831960461285,0.3585416263958485,0.3590670875601459,0.3589443001077245,0.3596896421350254,0.3596659364731654,0.3608328563251288,0.3613345864661654,0.3625757635780216,0.3645001261246111,0.3652368686303057,0.3669810866740459,0.3687312557047855,0.3699189312628454,0.3712231123446666,0.3739648306727279,0.3767994576703752,0.3787629243297648,0.379209758684699,0.3842274475193847,0.3843685537474215,0.3867737364194615,0.3868718441933157,0.3880248833592535,0.3866095121453358,0.3909465020576131,0.3883384146341463,0.0,1.864855451414921,60.19500093410039,215.0945392886593,327.64691580611515,fqhc8_80Compliance_baseline,14 -100000,95788,41323,387.3345304213472,7275,74.63356579112207,5607,57.93001211007642,2227,22.82123021672861,77.3507064425629,79.68250195944448,63.34838135415546,65.07152334561582,77.07560968916181,79.40634333104738,63.24587105590047,64.97135500100013,0.2750967534010868,276.1586283970985,0.1025102982549839,100.1683446156818,81.38856,57.01642442668157,84967.38631143776,59523.55663202235,219.79112,132.93564670479424,228878.49208669143,138203.80079424797,253.83387,120.71301226359918,261640.8005178102,123357.25152359156,4067.21663,1833.420859005812,4201390.163694826,1869736.4799061604,1366.92383,596.4343912639695,1409938.3116883116,605697.1614907078,2203.58166,932.6365465582916,2260322.3577066017,938766.033009714,0.38145,100000,0,369948,3862.153923247171,0,0.0,0,0.0,18349,190.94249801645304,0,0.0,23724,244.27903286424188,2092728,0,75063,0,0,3127,0,0,42,0.4384682841274481,0,0.0,0,0.0,0,0.0,0.07275,0.1907196224931183,0.3061168384879725,0.02227,0.3095890410958904,0.6904109589041096,25.44385580054933,4.590054617901541,0.3190654538969146,0.2056358123773854,0.2359550561797752,0.2393436775459247,11.011721166345849,5.455845762391806,23.925587819736727,13129.702205150155,63.35294114931384,13.508350642380943,20.140112222803737,14.902283767864423,14.802194516264736,0.5478865703584804,0.7753686036426712,0.6975964225824483,0.5888133030990174,0.1125186289120715,0.6796322489391796,0.9305555555555556,0.8306264501160093,0.7275541795665634,0.11,0.503458144526592,0.7049180327868853,0.6553755522827688,0.544,0.1132437619961612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0044099756690997,0.0066770170578505,0.0090707784820412,0.0111639824304538,0.013336455353416,0.0156536627124862,0.0178485779306262,0.0200292263200384,0.022022103970528,0.0240383630141197,0.0263398216649394,0.0286316222187965,0.0307587782959142,0.032780968683296,0.0349077460278104,0.036981467876618,0.038958346291804,0.0410617483955386,0.0431623219788456,0.0579206577766647,0.0718318695106649,0.0848795521730926,0.0978918828029761,0.1103686684513395,0.1256659619450317,0.1393454792254342,0.1523094934014474,0.1634795050022956,0.1754024910497995,0.1897908436225066,0.2030157271793763,0.2159771351568697,0.2271729035782573,0.2379962837132082,0.2492642665899586,0.2600191690442225,0.2700847210049664,0.2794876154848948,0.2881194918164129,0.2965659086707339,0.3047375309680736,0.3117522454824089,0.3192231195034866,0.3260465624658432,0.3326555009181548,0.3389972597940466,0.3455473393491237,0.3514378652981351,0.3556602404233139,0.3569793742258603,0.3574850629147278,0.3582950283409943,0.3584818262090529,0.3600732110173653,0.3600208672169884,0.3609978259834648,0.3619223416177731,0.3628555264105333,0.3630988640842799,0.3643350978656067,0.3661739579608217,0.3681280445372303,0.3690076025898436,0.3707691191057992,0.372626769255009,0.3735846887752169,0.3761785340147932,0.3777368383759654,0.3812225329604474,0.3817429294090596,0.3808291552105234,0.3847137014314928,0.3878167867937689,0.3878735960403578,0.3913931962976319,0.3942741559047767,0.3948354852144939,0.3888103984176321,0.3848568065908199,0.0,2.318394865285008,62.42302078060984,209.3487711775105,321.11736009637394,fqhc8_80Compliance_baseline,15 -100000,95729,41291,387.5941459745741,7300,74.99294884517754,5654,58.414900395909285,2285,23.4098340105924,77.31652017658898,79.6783957558159,63.31665033110207,65.06288313096367,77.03637871881595,79.40064686684148,63.212968771154365,64.96354899644855,0.280141457773027,277.74888897441485,0.1036815599477023,99.33413451511797,81.59052,57.101878699348624,85230.72423194643,59649.50923894392,219.71392,133.06819608942817,228875.02219808,138363.55345760242,257.50695,122.77790657869782,265286.4753627427,125349.08051136648,4098.09249,1841.749347942981,4236302.625118825,1879291.5395992657,1421.27061,620.4001870143649,1463871.773443784,627270.0926724031,2258.27566,941.8000987282796,2316020.558033616,945928.4666509542,0.38046,100000,0,370866,3874.123828724838,0,0.0,0,0.0,18354,191.06018030064035,0,0.0,24082,247.87681893679036,2087049,0,74915,0,0,3181,0,0,47,0.4909692987495952,0,0.0,1,0.0104461552925445,0,0.0,0.073,0.1918729958471324,0.313013698630137,0.02285,0.3163451511991658,0.6836548488008342,25.66023544100194,4.596167496505547,0.3340997523876901,0.1915458082773257,0.2368234877962504,0.2375309515387336,11.20519621782111,5.581489851483661,24.48062504856636,13101.89887294819,63.80088671888558,12.753554714973047,21.326830077210143,14.834639610551466,14.885862316150918,0.5468694729395118,0.7746999076638966,0.6903123345685548,0.5817774458551157,0.1265822784810126,0.6941678520625889,0.8980169971671388,0.8704883227176221,0.6996587030716723,0.1522491349480969,0.4981167608286252,0.7150684931506849,0.6304654442877292,0.5487571701720841,0.1195445920303605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238632104618,0.0047242019038736,0.0071961431108855,0.0094191044230163,0.0119120279947916,0.0144827164768907,0.016531875618288,0.0186779408310611,0.0210938538460751,0.0229331968262093,0.0247621195964235,0.026932949994866,0.0287929580651132,0.0308921657467666,0.0329461762218142,0.0348194451619569,0.0369135853587843,0.0389299199203352,0.0409671618208089,0.0429663895313704,0.0581356498496491,0.0713897028045207,0.084165373159374,0.0968735869096568,0.1090700102289384,0.1240824183960567,0.1372827770587112,0.1502022567596338,0.1632655241676994,0.1753996352322712,0.1895420612093203,0.2029824580388931,0.2154749605785438,0.2269750150347165,0.2380884230921661,0.2496730432469576,0.2601505270680722,0.2704052928865585,0.2796522647055485,0.2883756100914277,0.2961201009329351,0.3040486777439738,0.311676930364756,0.3190524193548387,0.3252433090024331,0.331386374581692,0.3373577052304298,0.343306604795839,0.3490603965917491,0.3547022109383264,0.3551532972739658,0.3555153806875422,0.3565651423885071,0.3575625680087051,0.3585173031026253,0.3586735948837781,0.3594288527818808,0.3602178038115667,0.3614008557730311,0.362923812605616,0.3640460030165912,0.3662044578648337,0.3667621776504298,0.3674181065514759,0.3686132269374924,0.3704391980317227,0.3712950753884079,0.3731847455486803,0.3744889327505992,0.3776759019334264,0.3790783874067633,0.3782119914346895,0.3800557880055788,0.3840756558877364,0.3939193654990086,0.399039039039039,0.3991935483870967,0.3936300530828909,0.3888888888888889,0.3887596899224806,0.0,2.521345975606211,61.83054069070299,210.86407576480144,327.0597279759121,fqhc8_80Compliance_baseline,16 -100000,95672,41380,388.1386403545447,7348,75.48708085960365,5725,59.19182205870056,2282,23.423781252613097,77.40264542862671,79.7821956398966,63.35728834693722,65.11165751215745,77.1153778808119,79.49698575367495,63.25110126914626,65.00917479798831,0.2872675478148068,285.2098862216508,0.1061870777909561,102.4827141691418,82.10708,57.47079851246346,85821.43155782257,60070.656526949846,221.4066,133.5917069609376,230781.3153273685,138993.8612770064,258.48033,123.31025144383106,266282.40237478045,125804.2284044564,4143.33636,1846.518924744202,4286117.683334727,1885609.76209503,1414.22477,608.5403400752632,1459992.976001338,617953.6626481428,2252.39952,938.9895978120924,2313967.514006188,947335.5201247592,0.38154,100000,0,373214,3900.974161719208,0,0.0,0,0.0,18519,192.89865373358975,0,0.0,24139,248.3171669872063,2089452,0,74862,0,0,3251,0,0,45,0.4703570532653232,0,0.0,0,0.0,0,0.0,0.07348,0.1925879331131729,0.3105606967882417,0.02282,0.3149035348957659,0.685096465104234,25.288384695687952,4.531359725336995,0.3292576419213974,0.2078602620087336,0.2279475982532751,0.2349344978165939,10.980300968854392,5.4924077682143135,24.26338111528244,13172.99159557889,64.018311867201,13.821857006596542,21.305837978637747,14.287697334111582,14.60291954785514,0.542707423580786,0.7512605042016807,0.6923076923076923,0.5685823754789272,0.1234200743494423,0.7072484166080225,0.9244791666666666,0.8640167364016736,0.6866197183098591,0.1527272727272727,0.4883828996282527,0.6687344913151365,0.6339729921819474,0.5357492654260528,0.1158878504672897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303551356441,0.0048445782277762,0.0072225603570703,0.0094959527944507,0.0117041722170813,0.0141233733173125,0.0162814644142445,0.0185546177320092,0.0208573910377599,0.0230566130418764,0.0250210131409007,0.0268766425755584,0.0293025981637038,0.0311743684280991,0.0333673816819884,0.0353163693490708,0.0373906290447838,0.0393611722219916,0.0413940862619476,0.0433794713582923,0.0581586067843002,0.0715377688425373,0.0854024556616643,0.0986250355050127,0.110968123035379,0.1263371742373742,0.1395292069960944,0.1522819942298069,0.1646539563117171,0.1766554409146485,0.1905567103576775,0.2041777152443314,0.2163826015075212,0.228549244329739,0.2398829302642871,0.2509052654891756,0.2610668807564505,0.2714146056431404,0.2811947604586864,0.2896828573715932,0.2980758125245432,0.3056547827508113,0.313515876015876,0.3208023649659497,0.3278408056785779,0.3334687896363614,0.3397177671579052,0.3453833638397396,0.3511161118439771,0.3566035498280429,0.3566626327820357,0.3583778513259266,0.3592465031278555,0.3605585447831167,0.3615155157829126,0.3612514158018796,0.3615514974896656,0.3622778608887208,0.3628132634060508,0.3634544967401982,0.3636295392699634,0.3640169016309284,0.3657383189303425,0.3676158096047598,0.3686214958902788,0.3696613050869622,0.36952102837184,0.3714330758316254,0.3728640022595678,0.3725271218889598,0.3740927882406982,0.3780009667543906,0.379899625182644,0.380700948882767,0.3845424371740161,0.3904773156899811,0.3939766441303011,0.3904220779220779,0.3922484881803189,0.4003044140030441,0.0,2.5432091301356667,62.32897017748194,205.8297772529828,334.93642404276824,fqhc8_80Compliance_baseline,17 -100000,95731,41343,387.6069402805779,7421,76.22400267415989,5793,59.97012462002904,2340,24.19279021424617,77.33907921770925,79.7054720965723,63.32552877917672,65.07517070034555,77.04686803260356,79.40889691181786,63.21875490257574,64.9686709907518,0.2922111851056996,296.5751847544311,0.1067738766009753,106.49970959374856,80.6377,56.47496798413298,84233.63382812255,58993.39606202064,221.7164,133.68742734336584,231088.25772215897,139133.74700292054,261.83473,124.88518596731711,268949.19096217526,127044.02184511782,4214.98312,1891.9278650952415,4369749.4855376,1943100.589250337,1442.70227,623.7394950612755,1494719.0878607766,639235.7283025093,2316.28536,968.917900476691,2396774.4826649674,991535.387129673,0.38146,100000,0,366535,3828.8015376419344,0,0.0,0,0.0,18472,192.403714575216,0,0.0,24403,250.5353542739552,2092766,0,75060,0,0,3154,0,0,60,0.6163102861142159,0,0.0,0,0.0,0,0.0,0.07421,0.1945420227546793,0.3153213852580515,0.0234,0.3204525231981696,0.6795474768018305,25.36570751136744,4.572340846420485,0.3341964439841187,0.1981702054203349,0.2280338339375107,0.2395995166580355,10.943748769556652,5.393793981701987,25.119805579950384,13089.311163880602,65.33688609672312,13.382446130883343,21.800331073361207,14.753760498114255,15.400348394364318,0.5387536682202658,0.7456445993031359,0.6838842975206612,0.5821347464042392,0.1239193083573487,0.7021276595744681,0.9289772727272728,0.8509719222462203,0.749185667752443,0.1354166666666666,0.486196668948209,0.664572864321608,0.6313645621181263,0.5315581854043393,0.1209090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0044409295534736,0.0066278939942957,0.0087790603153958,0.0105795347039256,0.012954607949974,0.0152143986131647,0.0176316246209762,0.0198470316366387,0.0222556791413179,0.0246854072015342,0.0268377104238776,0.0290539220223586,0.0310622997434655,0.0330408753096614,0.0350757458249314,0.0372515098463737,0.0392897541536513,0.0414699581972838,0.0433804225528191,0.0575300701637153,0.0713762581347172,0.0846343381389252,0.097762308355591,0.1092703708781069,0.1251176713241593,0.1385620776355014,0.151667749044491,0.1638154871937341,0.1749211390313512,0.1892989924026079,0.2031642553928788,0.2155027963353861,0.2271563327569981,0.2372043342289565,0.2485088361161001,0.2596269823542551,0.2695805848848466,0.2787439832894378,0.2875663407420993,0.295930535455861,0.303642066334293,0.3116199266359011,0.3189029212298401,0.325887166288288,0.3321636994902859,0.3382253669025177,0.3442981341196807,0.3502276725654558,0.3549204338532182,0.3557571922833564,0.3565004200928336,0.3575855108061943,0.3588301788353961,0.3591680448159239,0.3586125357000276,0.3586939267913267,0.3599723174268389,0.3605819605957023,0.3618465960122148,0.3623382250437993,0.3621227474121317,0.3635235732009925,0.3644233579924898,0.3655460158209531,0.3674322594131327,0.3688146471447809,0.3698864175657291,0.3730071759341086,0.375821182502804,0.3790578809227793,0.3823687897402737,0.3827089337175792,0.3843231508761048,0.3891372586321697,0.3884944036586834,0.3923872180451128,0.3891768608749741,0.3926553672316384,0.3999218139171227,0.0,2.158705606191082,62.42566220742669,219.2944528309232,336.22009684947955,fqhc8_80Compliance_baseline,18 -100000,95687,41251,387.1685808939564,7244,74.54513152256838,5634,58.30468088664082,2299,23.650025604314067,77.30793472821749,79.6836241570301,63.31631099018998,65.07004214202726,77.02506345644575,79.40011442236901,63.21363080503108,64.96967162256985,0.2828712717717394,283.50973466108087,0.1026801851589027,100.37051945741382,81.84066,57.32572282735698,85529.54946857985,59909.624951515856,220.38856,133.0310665409716,229739.25402614777,138444.20510724714,258.20272,122.5312114241259,266358.0632687826,125388.29976056363,4084.84727,1824.5406506811323,4231089.761409596,1868901.9832172948,1364.67255,589.6342867171685,1413175.8650600396,603203.4933869478,2269.54624,932.028820153944,2337891.730329093,945575.1166882904,0.38098,100000,0,372003,3887.706794026357,0,0.0,0,0.0,18339,191.03953515106545,0,0.0,24205,249.45917418249084,2086058,0,74945,0,0,3274,0,0,40,0.4180296173983926,0,0.0,0,0.0,0,0.0,0.07244,0.1901412147619297,0.3173660960795141,0.02299,0.3194280467007739,0.680571953299226,25.45269967410656,4.566730508490121,0.3310259140930067,0.2005679801206957,0.2310969116080937,0.2373091941782037,11.038278510060108,5.476212967243956,24.419674622713494,13143.97269170193,63.5470202189313,13.220427368882532,21.10969876672976,14.55285314701852,14.664040936300491,0.5461483848065317,0.763716814159292,0.7040214477211796,0.5675883256528418,0.1211667913238594,0.7121551081282624,0.9127906976744186,0.8650442477876106,0.7167235494880546,0.1587301587301587,0.4942930351735383,0.6984732824427481,0.6525123849964615,0.5242814667988107,0.112442396313364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095862948788,0.0042965424992906,0.0065936964262165,0.0090700414398309,0.011217557562444,0.0134414076819681,0.0155805487860835,0.0177743746809596,0.0197305199452043,0.021977459540797,0.0239474304694147,0.0262220351338309,0.0286108025834053,0.0308334191820335,0.032949116162919,0.0349533232019353,0.0370316644562334,0.0389634659108605,0.041194216165609,0.0429810478910827,0.0574207161659633,0.0718569768780681,0.0854849708860095,0.0983328950828293,0.110969360858655,0.1266206984073267,0.1407823125643174,0.1541785976602833,0.1668714278083435,0.1779761010876794,0.1916105756286683,0.2046583078204615,0.2173114140952877,0.2283780533140895,0.2392435560347198,0.2504569573838774,0.2617695303346463,0.272084964673057,0.2816244553376906,0.2903813331195088,0.298376638414154,0.3056881463802705,0.3130320502954026,0.3197672325874378,0.3271853519070503,0.3329876927254996,0.3390774324629392,0.3442926219364386,0.3500012988025041,0.3551379606960894,0.3559209904545884,0.3574318260269244,0.3577173713300255,0.3584117032392894,0.3588614585510015,0.3594576312876645,0.3592773421969178,0.36084142394822,0.3615137291312048,0.3627663967538647,0.3631940253470127,0.3641664510736532,0.3643798081989672,0.3659342140738744,0.3670935102030936,0.3676219046867188,0.3683771740692827,0.3702057404114808,0.3715576745178965,0.3744034011149881,0.3770257167920957,0.3768419920404431,0.3801674014439972,0.3779357231149567,0.3766927331680336,0.3768046198267565,0.3781163434903047,0.3817849156332588,0.3747945205479452,0.3665399239543726,0.0,2.2723515660303204,59.1550441154813,216.4749627125597,328.6533804038775,fqhc8_80Compliance_baseline,19 -100000,95700,41316,388.36990595611286,7284,74.84848484848484,5727,59.195402298850574,2375,24.346917450365726,77.38171245272493,79.75522822207166,63.34258245905804,65.094716500596,77.08685955856822,79.4631912345969,63.23351537532432,64.99036257241967,0.2948528941567048,292.03698747475926,0.1090670837337199,104.35392817632304,81.8455,57.36543528584519,85522.75862068965,59942.77376989047,226.16087,137.33087454059174,235630.28213166143,142810.88435820694,264.70909,126.23614908876256,273318.275862069,129320.00219182228,4145.58947,1873.1513666319647,4281445.485893417,1907062.1872052003,1392.83754,612.0866222607515,1435446.3218390804,619930.2110119035,2345.52392,986.6405913862366,2404606.687565308,989455.5877008204,0.38,100000,0,372025,3887.398119122257,0,0.0,0,0.0,18779,195.5276907001045,0,0.0,24737,255.16196447230928,2084053,0,74733,0,0,3266,0,0,51,0.5329153605015674,0,0.0,0,0.0,0,0.0,0.07284,0.1916842105263158,0.3260571114772103,0.02375,0.3207990599294947,0.6792009400705052,25.16970989600302,4.57394022912265,0.3272219312030731,0.1994063209359176,0.2315348349921424,0.2418369128688667,10.945093356357338,5.451961967878566,25.483641242608545,13082.231854852718,64.58912457507107,13.323537147398206,21.13841937529598,14.70906941411741,15.41809863825947,0.5385018334206391,0.7845884413309983,0.6840981856990395,0.5648567119155354,0.1133574007220216,0.6831476323119777,0.9307228915662652,0.8453815261044176,0.6970684039087948,0.1237458193979933,0.4900955488231182,0.7246913580246913,0.6257267441860465,0.5250245338567223,0.1104972375690607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0045514906385264,0.0069610748061858,0.0091115941734554,0.01137172732266,0.0135437881873727,0.0157940351771603,0.0181203805790354,0.0201179681669954,0.0223461971542634,0.0244405031627077,0.0264679007402388,0.0286504663670673,0.0307999752776118,0.0328785783575158,0.0347708309639264,0.0366231318163457,0.0385202096196751,0.0404788401335427,0.0423644909486936,0.0579867566269087,0.0721980840705648,0.0857571560480147,0.0982514833985607,0.1101078081816072,0.1256755470476875,0.1401740237691001,0.1530983816013628,0.1653774653304557,0.1776001716461943,0.1919027554770089,0.2051487463733599,0.2172253279098601,0.228566118999989,0.2384037486388085,0.2490256864481842,0.2593992928921159,0.2694306346028389,0.2783727367609021,0.2873292025059843,0.2959083280282423,0.3037853265955456,0.3113563958927958,0.3179583123455902,0.3249887536626585,0.3315572001233426,0.3376652644230769,0.343452229299363,0.3495086472891332,0.3546205165466675,0.3555621445321976,0.3557751868624995,0.3560239689813183,0.3565319155084231,0.3575394940016629,0.3575298438934802,0.3562277298281732,0.3575214558821116,0.3587262581272717,0.3590672927565213,0.3613361842598844,0.3635571745327843,0.363851584923844,0.364246860519777,0.3656317689530686,0.3667985836284107,0.3656082544749743,0.3667504714016342,0.3684321364641466,0.3696110823613709,0.3707752115252687,0.3701565923788146,0.3704978644737681,0.3782447466007416,0.3783474697417325,0.3737373737373737,0.3761439429191872,0.3798641136504014,0.3878753859107494,0.3879310344827586,0.0,2.3594196851881875,63.25333504925553,215.0619583129355,326.83859375086206,fqhc8_80Compliance_baseline,20 -100000,95852,41301,386.92985018570295,7445,76.35730083879314,5865,60.55168384592914,2450,25.174226933188663,77.44506122741345,79.72202420344523,63.40474875222951,65.08381907708619,77.1460391397003,79.42446158878866,63.2948971480708,64.97764144153813,0.2990220877131406,297.5626146565702,0.1098516041587061,106.1776355480646,80.94746,56.73755213968451,84450.46530067187,59192.87249059437,224.67728,135.12117275029684,233765.3361432208,140335.5215122024,259.68874,122.85633763022076,266981.92004340026,125078.08277858248,4280.05948,1905.154264552348,4421949.380294621,1944711.9257388692,1437.24137,620.9764254011877,1480180.9351917538,628809.1526329131,2420.86566,1002.3784196450558,2489311.06288862,1012978.3863428364,0.38074,100000,0,367943,3838.657513666903,0,0.0,0,0.0,18735,194.78988440512452,0,0.0,24341,250.0,2093744,0,75198,0,0,3102,0,0,37,0.3860117681425531,0,0.0,0,0.0,0,0.0,0.07445,0.195540263697011,0.3290799194089993,0.0245,0.3200559938915754,0.6799440061084245,25.316064691651757,4.606570491306224,0.3242966751918159,0.2006820119352088,0.2277919863597613,0.2472293265132139,10.781948132020275,5.213615034762216,25.92762511110184,13081.958560040584,65.82173460744848,13.592828921784529,21.32115338609832,14.907826038405922,15.999926261159713,0.5316283034953112,0.7604078164825828,0.6787592008412198,0.5726047904191617,0.1151724137931034,0.6777697320782042,0.8955223880597015,0.8329571106094809,0.7305194805194806,0.1423728813559322,0.4866190900981266,0.7066508313539193,0.6319396847155586,0.5252918287937743,0.1082251082251082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025202939330755,0.0048318965953869,0.0070977358222726,0.0093073768827899,0.0115735566077997,0.0135007274318096,0.01568483663326,0.0178143514128096,0.0197183673886182,0.0217382413087934,0.0238992422690968,0.0260909696938618,0.0283777538129718,0.0305498981670061,0.0328253948629184,0.0349511757055265,0.0370347388125303,0.0390876778478979,0.0409057403004599,0.0430887372013651,0.0583733055265901,0.0726501530521631,0.0855539384547729,0.0984762624354615,0.1099338166436936,0.1253707710983269,0.1395636979773377,0.15193922006163,0.1652376077126525,0.1771253652427995,0.1912357449186882,0.2047280660071709,0.2168550427239069,0.227847963049911,0.2385090301885134,0.2495158630916153,0.2596432552954292,0.2696427166571136,0.2794067623647867,0.2878217379859688,0.2960559796437659,0.3044683588723827,0.3115256684935074,0.3187730561011833,0.3254602419002283,0.3321134604958352,0.3381827750836434,0.3434219912361153,0.3485636469749043,0.3537813127576366,0.3540371833416472,0.354412777089357,0.355351182344408,0.3571913112506314,0.3574502819827842,0.3571810828580603,0.357780763455307,0.3584673651074713,0.3597609901835254,0.3611517204492779,0.3618377871542428,0.3614875574576002,0.3639973944653401,0.3640562294016097,0.3644122965641953,0.3645743541519735,0.3645782788639931,0.3653222505588614,0.3674250403763781,0.3689811862244898,0.3691275167785235,0.3704977959359208,0.3717524197656648,0.3756974581525109,0.3779014003452906,0.3825096899224806,0.386929948283968,0.388713413350179,0.3890620572400113,0.3949780789159027,0.0,2.479824548510479,60.81109646629162,225.8707817009013,339.55187550707615,fqhc8_80Compliance_baseline,21 -100000,95684,41124,385.2159190669287,7347,75.60302662932152,5713,59.13214330504578,2324,23.91204381087747,77.29747507811412,79.70194994851512,63.28577397120039,65.06625268277286,76.99999221528653,79.40369758197114,63.17764086063029,64.96081740929554,0.2974828628275929,298.25236654397713,0.1081331105701011,105.43527347731184,80.61636,56.464330658152576,84252.70682663767,59011.25648818254,223.15578,134.99974592232692,232648.0289285565,140515.5573787957,262.00056,124.38164762516438,270507.4202583504,127453.10742139949,4138.48552,1850.801337867367,4283945.894820451,1893071.5771365813,1352.08425,587.5843092359094,1396917.0812257011,597933.2118599216,2292.91426,957.8978619937697,2360142.092721876,968222.3049416528,0.37846,100000,0,366438,3829.668492119895,0,0.0,0,0.0,18551,193.27160235776097,0,0.0,24542,253.19802683834288,2086977,0,74973,0,0,3241,0,0,42,0.4284937920655491,0,0.0,0,0.0,0,0.0,0.07347,0.1941288379221053,0.3163195862256703,0.02324,0.3231644260599793,0.6768355739400207,25.39170352823757,4.51633489888386,0.3217223875371958,0.2100472606336425,0.2324523017678977,0.2357780500612638,10.615398418744643,5.185584140891868,24.9538135828411,13014.880383977374,64.6973095705563,14.211627082886288,20.716929256161407,14.840436127341391,14.928317104167226,0.5413968142832137,0.7891666666666667,0.6746463547334058,0.579066265060241,0.1017074981440237,0.6953068592057762,0.9267015706806284,0.8177676537585421,0.7281879194630873,0.1240601503759398,0.4921441774491682,0.7249388753056235,0.629735525375268,0.5359223300970873,0.0962072155411655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021180428878349,0.0043211003590773,0.0067516117569419,0.009033634793212,0.01141357421875,0.0137810914868911,0.0159520215413487,0.0180960356201874,0.020035386645121,0.0221707919017726,0.024165837547311,0.0263709395738735,0.0284664924590029,0.0305837498067906,0.0328738836404935,0.0351882498965659,0.0376335727537493,0.0397790399451753,0.041583869994486,0.0435838379206486,0.0584996918319805,0.072295210677833,0.0858423145942429,0.098952196599899,0.1112318420136508,0.1268224041981421,0.1403201494596947,0.1524624036126613,0.1644976741699192,0.1753349939872874,0.1892020146460888,0.2016563506086655,0.2135838779956427,0.225184065211675,0.2357357026323912,0.2463221425877027,0.2574018397022499,0.2673049845114052,0.2759901833799168,0.285724111052523,0.2944038929440389,0.3024579984534995,0.3098643284554772,0.3173408253190697,0.3237893506683222,0.330373791383164,0.3359585648177178,0.3416395534290271,0.3469589283162039,0.3520283868234297,0.3523679515597124,0.3530395598927376,0.353550086380243,0.3546386662019287,0.3559943919100319,0.3556539383877513,0.3558102980169252,0.3570970130831893,0.3586638616655549,0.3594856570570141,0.360594237695078,0.3617492826753735,0.361276229284379,0.3622022542407063,0.3622503136157483,0.3636006803611147,0.363917437233403,0.365459944402325,0.3651611991948868,0.3660846286011108,0.3690951659551026,0.3690011235353914,0.3697281504065041,0.372959300988733,0.3746792130025663,0.3792319655461179,0.3827699018538713,0.3803339517625232,0.3825746998045238,0.3865054602184087,0.0,2.236265274290989,61.40549318309255,224.9637217266348,323.2642474555042,fqhc8_80Compliance_baseline,22 -100000,95822,41393,387.0509903779925,7448,76.37077080419945,5784,59.70445200475882,2398,24.63943562021248,77.32864418348662,79.6379711952416,63.32870225298407,65.03784913454247,77.02343165500127,79.33412794883728,63.21696205941992,64.92993787981756,0.3052125284853417,303.8432464043268,0.1117401935641453,107.91125472491105,80.51912,56.41805513567635,84029.88875206112,58877.97701537888,221.08283,133.62775755530433,230049.27887124044,138788.02827313793,265.81474,127.03517892789414,272916.2509653315,129219.54472978854,4202.33604,1898.7743824535453,4340278.829496358,1937414.900312692,1418.9719,626.1772774719725,1464189.6224249129,637840.8484043416,2366.94446,989.4984396021764,2433262.0692534074,999771.5577967296,0.38189,100000,0,365996,3819.54039782096,0,0.0,0,0.0,18380,191.1043392957776,0,0.0,24842,254.9101458955146,2089728,0,75143,0,0,3164,0,0,47,0.4800567719312892,0,0.0,1,0.0104360167811149,0,0.0,0.07448,0.1950299824556809,0.3219656283566058,0.02398,0.3213967121192813,0.6786032878807188,25.201090457762376,4.54098903342415,0.3303941908713693,0.201417704011065,0.2276970954356846,0.240491009681881,11.088703287765304,5.564152161072068,25.657680940286376,13165.743405671656,65.68934164825855,13.679964936175551,21.575189508688037,14.880619644709602,15.553567558685362,0.5489280774550485,0.7716738197424893,0.6944008372579801,0.6006074411541382,0.113587347232207,0.7013167013167013,0.9162162162162162,0.8629550321199143,0.7651006711409396,0.1363636363636363,0.4982722874913614,0.7044025157232704,0.6398891966759003,0.5525024533856723,0.1071098799630655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092115258013,0.0048655881279649,0.0072236595140262,0.0095481878758329,0.0116737848281472,0.0139890042761148,0.0161757211293446,0.0185126598426321,0.0207043145911255,0.0228495999017661,0.0250927273099858,0.0270309100611633,0.0293612866759159,0.0313886572572758,0.0335870148083983,0.0357438016528925,0.0376583326434307,0.0397727272727272,0.0418925937467539,0.0438728883245032,0.0588204614678516,0.0727206189878711,0.0862009328651538,0.0988871257579419,0.1118513287022884,0.1272596570607015,0.1403529237099408,0.1537814857775271,0.1660489805508977,0.1770615544619211,0.1908526013116943,0.2038106985198649,0.2162726462080515,0.2280876276263145,0.238418539140386,0.2498504287708568,0.2599144525971342,0.2693754363837023,0.2793793589131966,0.288529705298659,0.297009265594378,0.3053366174055829,0.3133904825227963,0.3200033645353937,0.3266210523752709,0.3330863740198802,0.3392673441224438,0.3450000637991093,0.3504762152258936,0.355631191396938,0.3561902960370756,0.3567696815568332,0.3580148995836048,0.3584815132525916,0.3595136378573776,0.3590462401035088,0.3589469996177857,0.3595945254329629,0.3613994749395151,0.3626503648195622,0.3639517345399698,0.3661254377586755,0.3670971411717614,0.3689311655310441,0.3710533330102498,0.3729786673689755,0.3742059728090598,0.3747463216641298,0.3771493132789605,0.3812774451097804,0.3833402213344354,0.3835792862892406,0.3861972369007448,0.3871988882025942,0.3897142857142857,0.3852567975830815,0.3873499538319483,0.3849774866966844,0.389334070185134,0.3842829076620825,0.0,2.430116025307154,63.5226598131017,225.75991468912656,325.9503322686554,fqhc8_80Compliance_baseline,23 -100000,95757,41332,387.6792297168875,7325,75.39918752676044,5671,58.75288490658646,2311,23.90425765218209,77.35098256499538,79.69651989108026,63.33757887846742,65.06969776242495,77.0705818040318,79.41132800314847,63.23545744017024,64.96758308765834,0.2804007609635732,285.19188793178785,0.102121438297182,102.11467476661085,80.9215,56.7110927608538,84507.13785937321,59223.96562220392,221.66514,133.8019609974771,231048.1740238312,139291.77083396213,261.56401,123.93871225841676,269380.2750712742,126719.84398929216,4095.16336,1823.614424234896,4248386.582704136,1876185.1397129127,1369.88443,587.4459380502058,1418901.5946614868,601793.1932393516,2273.84736,938.2027834015656,2353093.5179673545,961680.724457419,0.38162,100000,0,367825,3841.233539062418,0,0.0,0,0.0,18427,191.96507827104023,0,0.0,24448,251.52208193656855,2090617,0,75072,0,0,3180,0,0,44,0.4594964336810885,0,0.0,1,0.0104431007654792,0,0.0,0.07325,0.1919448666212462,0.3154948805460751,0.02311,0.3096321331080203,0.6903678668919797,25.75633332181151,4.518967798145322,0.3362722623875859,0.2006700758243696,0.2297654734614706,0.2332921883265738,10.92409012597995,5.428025927858045,24.509654487260597,13169.007766464823,64.02472826513643,13.416820877788764,21.6215671068178,14.463491273960315,14.522849006569547,0.5501675189560924,0.7741652021089631,0.697954902988988,0.5763622409823485,0.1186696900982615,0.7055837563451777,0.9340974212034384,0.8630705394190872,0.6795774647887324,0.1439393939393939,0.500232991612302,0.7034220532319392,0.6421052631578947,0.5475956820412169,0.1123701605288007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391694429536,0.0045914799160762,0.0068694002212007,0.0090294141545461,0.0115504672041972,0.0137736559741833,0.0159121721491116,0.0180847698070073,0.0200533529574096,0.0222804449948315,0.0244787502306414,0.0265756518168753,0.0288181771449133,0.0309542688263945,0.0330936587680658,0.0352550851661981,0.0373070192695983,0.0394828319722738,0.0414609042802041,0.043234120576316,0.0581259395356606,0.0713770124802544,0.0848964613368283,0.0978594558223642,0.1106109799291617,0.126615997716726,0.1405073493541476,0.1532052100625718,0.1661503621253231,0.1777508420397743,0.1921887958983638,0.2051795415683643,0.2171562816092579,0.2288049364886598,0.238517165090861,0.2495123681177409,0.2603106887193862,0.2705405861506441,0.2803781808276394,0.2891209887300368,0.2974068071312803,0.3053412775521193,0.3129859524964792,0.320232460607513,0.3275941620729012,0.3337356222753134,0.3391174888341194,0.3453543988195186,0.3512060522838562,0.3567191195317558,0.3579350729956553,0.3585007173601148,0.3582650466233399,0.3589527884545652,0.3607004470938897,0.3605026268088113,0.3606586036458416,0.3624084702157134,0.3638406256967909,0.3649125320059446,0.3658664962309905,0.3667162255922291,0.3679261160432532,0.3696003592276605,0.3708404719963321,0.3709994495557128,0.3713402592942388,0.3730116062110623,0.3760822129935947,0.3781629806734409,0.3805334066538355,0.3818259613841793,0.3819277108433735,0.3825940396843637,0.386535552193646,0.3866491207082186,0.384735445606368,0.3834048640915594,0.3817114093959731,0.3820443062572872,0.0,1.854830071741239,61.451563942720966,216.886774431046,326.65274475625654,fqhc8_80Compliance_baseline,24 -100000,95834,41462,387.6912160611057,7332,75.19252039985808,5736,59.18567523008535,2326,23.84331239434856,77.51248185563044,79.80011153854095,63.42745123530996,65.11153996527503,77.229568131018,79.51654396283845,63.32360271553003,65.0103073175324,0.2829137246124418,283.5675757024916,0.1038485197799303,101.2326477426342,81.5518,57.077961688261816,85096.70889245988,59558.99464056976,223.58671,135.38691678196537,232618.4965669804,140585.661572655,264.41091,126.26236874608844,271685.5604482752,128586.7458423352,4138.51337,1848.062424156508,4273522.465930671,1883639.640449243,1400.18689,602.0179856869702,1445381.0651751987,612574.0925769437,2285.22088,948.557417592179,2344973.683661331,956480.2504506328,0.38187,100000,0,370690,3868.03222238454,0,0.0,0,0.0,18526,192.5934428282238,0,0.0,24657,253.05215268067695,2093607,0,75053,0,0,3212,0,0,55,0.5634743410480623,0,0.0,1,0.0104347100194085,0,0.0,0.07332,0.1920025139445361,0.3172394980905619,0.02326,0.307991192850667,0.692008807149333,25.52880959910347,4.52457921460115,0.3298465829846583,0.2058926080892608,0.2306485355648535,0.2336122733612273,11.263122309781874,5.762992823306367,24.523974256686905,13166.003863090604,63.96923158601004,13.80328678444274,21.04539491783952,14.68447275200318,14.43607713172462,0.5428870292887029,0.7510584250635055,0.6865750528541226,0.5842781557067271,0.1156716417910447,0.7139769452449568,0.8956743002544529,0.8939051918735892,0.7421602787456446,0.1132075471698113,0.4882704691812327,0.6789340101522843,0.6231884057971014,0.5405405405405406,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020945904923805,0.0043649547806888,0.0066390293840399,0.0091323274243792,0.0115097828074524,0.0137801281399369,0.0159332939667284,0.0182635829662261,0.0203710700172566,0.0226096737907761,0.0247711307268519,0.0269926570127579,0.0292023304322808,0.0312979220485164,0.0335470834450194,0.0358515121467526,0.0381109076045902,0.0402479990046862,0.0422072862886051,0.0440798309266758,0.0595198364690667,0.0737057833265368,0.0864280325257775,0.0992752862094317,0.1109157339454371,0.1272272155976384,0.1405786350148368,0.1529579381618679,0.1650980643233668,0.1762457030873518,0.1897413839453734,0.2032448313854263,0.2162980816206885,0.2276082730906152,0.2376458438619235,0.2496764988884833,0.2596352048490791,0.2695366916820204,0.27873810602628,0.2876136038868248,0.2963445872660559,0.3041512248560706,0.3123377542832869,0.3191832540801453,0.3257236284364781,0.3321249062957001,0.3379784420380258,0.3433424171367006,0.3503128830398039,0.3562212587045066,0.3576374909412996,0.3581575844006253,0.3595240767762936,0.3604691372255201,0.3617276633575344,0.3619551262456441,0.361787652914273,0.3630680885972108,0.3643981023243114,0.36553534127225,0.3663360767918409,0.3681389322942421,0.3700899691714028,0.3717014044189999,0.3731751168644373,0.3748733535967578,0.3752060010229016,0.3772717319903657,0.3789433277498604,0.3806715420303531,0.3803305264105912,0.3808973415992434,0.379265091863517,0.382183908045977,0.383855331841909,0.3862756598240469,0.3832072617246596,0.3877388535031847,0.3896598639455782,0.386303443057132,0.0,2.5218807032558823,60.75143767735908,210.25342474564235,335.14171662660283,fqhc8_80Compliance_baseline,25 -100000,95747,41576,390.3412117350935,7330,75.59505780859975,5739,59.45878199839159,2275,23.541207557416943,77.31288813594676,79.67209468638215,63.318020272784125,65.06220300420377,77.03230438781519,79.38676733462844,63.21633255463424,64.96066836996444,0.2805837481315762,285.3273517537076,0.1016877181498898,101.53463423932862,80.89444,56.650069320955,84487.70196455241,59166.41703756253,222.5457,134.004910601339,231963.40355311395,139489.70787736328,261.13727,123.74561151369603,269059.7825519337,126454.6930763795,4168.78332,1842.9379640017444,4327201.520674277,1898044.0995558568,1381.26544,586.9765242536612,1433618.0036972438,604047.4524044209,2248.54434,925.8477596916372,2329189.7396263066,949723.807588064,0.38282,100000,0,367702,3840.350089297837,0,0.0,0,0.0,18490,192.61177895913187,0,0.0,24356,250.75459283319583,2091060,0,75122,0,0,3203,0,0,51,0.5222095731458949,0,0.0,1,0.0104441914629178,0,0.0,0.0733,0.1914737996969855,0.3103683492496589,0.02275,0.3177691309987029,0.682230869001297,25.32256378059625,4.570315922800908,0.3251437532671197,0.2024742986583028,0.2343613870012197,0.2380205610733577,10.8413260346836,5.329710482908637,24.19930413489652,13199.38929828032,64.33613687261119,13.59474386302279,20.809975162700407,14.959069661744346,14.97234818514366,0.542080501829587,0.7788296041308089,0.6939978563772776,0.579182156133829,0.0966325036603221,0.6875,0.9154929577464788,0.858139534883721,0.7072368421052632,0.0959409594095941,0.4969171043617264,0.7187112763320942,0.6448467966573816,0.5417867435158501,0.0968036529680365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192691770139,0.0046929322210847,0.007122637202082,0.0093751269654247,0.0117268945596566,0.0139409368635437,0.0163454675231977,0.0186011373033455,0.02094792156542,0.0230286398869558,0.0252535091406834,0.0272321199363351,0.0294758927102188,0.0314466704434258,0.0333133872565203,0.0353056689576766,0.0371225614049621,0.0388590283686471,0.041024094506203,0.0430098564254308,0.0572630655836969,0.0715025581468344,0.0846755589111195,0.0976522662517216,0.1108545521640571,0.1266169548892061,0.1407349242898526,0.1540672301109147,0.1661966715802516,0.1779900920028308,0.1917204995693368,0.2046437686551023,0.2173601069786151,0.2289201426102933,0.2394406486890891,0.2513181798041561,0.2621346220381924,0.2721105273224351,0.2812691635058711,0.2908626300591282,0.2991525227499016,0.3071281523417395,0.3145426576736481,0.3212016591143398,0.3280790452346807,0.334118372379778,0.3396860003257778,0.3455749395135617,0.3518285647613985,0.3566015526841332,0.3580185240191181,0.3588127387832228,0.3590442817984005,0.3593079243531732,0.3601361031518624,0.3607657269481719,0.3606878433245761,0.3620066359629574,0.3629912194786673,0.3635906010103734,0.3654067301347912,0.3662061551936935,0.3663360080874455,0.369208646025255,0.3696657226538862,0.3698259796845061,0.3705395621444579,0.373192665798087,0.3755678591709256,0.3795003821553562,0.3827980804724991,0.3843267581475129,0.3872192344194875,0.3879873875259556,0.3896029705798343,0.3906530856800479,0.3925671455340412,0.3967112024665981,0.4050028105677347,0.4006127920337035,0.0,1.8824738583361504,60.4848773919281,211.25889026883013,343.22178985823143,fqhc8_80Compliance_baseline,26 -100000,95787,41471,388.6435528829591,7286,75.03105849436771,5670,58.682284652405855,2326,23.93853028072703,77.37208356525132,79.71005814449278,63.35007434272507,65.0793503183962,77.09127439172694,79.42821872377992,63.24736408912282,64.9787177432985,0.2808091735243749,281.8394207128563,0.1027102536022539,100.6325750976913,81.34852,56.97372374880159,84926.47227703134,59479.599265872814,220.34844,132.91082518971032,229518.98483092693,138235.60106247233,255.40517,120.7957228860471,263806.2471942957,123929.2775672026,4114.18945,1831.424896215261,4261879.419963043,1878712.0237769848,1383.82899,593.284236809242,1433661.0604779357,608347.2842803778,2299.6066,952.2653977563792,2369146.084541744,966358.8067453064,0.38214,100000,0,369766,3860.2941944105146,0,0.0,0,0.0,18295,190.45381941181995,0,0.0,23868,246.31734995354276,2092950,0,75131,0,0,3273,0,0,46,0.469792351780513,0,0.0,2,0.0208796600791339,0,0.0,0.07286,0.1906631077615533,0.3192423826516607,0.02326,0.3046133853151397,0.6953866146848603,25.243170179944293,4.537723716166219,0.326984126984127,0.2079365079365079,0.2202821869488536,0.2447971781305114,10.990111934934331,5.3956830502373645,24.781168210553147,13175.054095718888,63.573871624919946,13.687248576027663,20.72344705164923,13.969351872257304,15.193824124985758,0.5396825396825397,0.7675996607294318,0.6785329018338727,0.5868694955964772,0.1181556195965417,0.7116519174041298,0.9222222222222224,0.8747252747252747,0.7210144927536232,0.1358490566037735,0.485628187297172,0.6996336996336996,0.6147248034310222,0.5488180883864338,0.113980409617097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0045821337334252,0.0067585395059974,0.0088987312197153,0.0108918946404962,0.0129296302329369,0.0151566115239172,0.0172459538339081,0.0195389143230869,0.0217787329853648,0.0239905718384914,0.0259857550442332,0.0282266354179515,0.0304680903642991,0.0327936475198515,0.034903905765654,0.0370266857131027,0.0393566050650239,0.0415220598931814,0.043415792103948,0.0574067310200887,0.0722092646243633,0.0853102428899395,0.0982652278530224,0.1102566263537145,0.1251333734774295,0.139181484856834,0.1515486608044742,0.1637430644472898,0.1749437600428494,0.1886443340003012,0.202451467854209,0.2147817298601375,0.2264940914109557,0.2377673907066263,0.2494269039524247,0.2604718612304088,0.2711401398475616,0.2803731960866558,0.2892980226473854,0.297928689557866,0.3061491699789572,0.3146596054047025,0.321789529146908,0.3288940148112176,0.3353082465972778,0.3409967443025294,0.347390247935987,0.3522877340169347,0.3583078222316056,0.3587338330888389,0.3596502083075527,0.3609809787210024,0.3625253402838111,0.3636092912447886,0.3636698599852616,0.363949465130305,0.3647990255785627,0.3660692827960312,0.3662956390815723,0.3685901651665758,0.3687289311917509,0.3690969084298354,0.3699816085766833,0.3716204788711976,0.3725834797891036,0.3735376124637098,0.3758646950561655,0.378186317836309,0.3790810399391099,0.3817623326609206,0.3864109823193205,0.3862356885318489,0.3873342022540826,0.3849503076194983,0.3875074360499702,0.3861234492265278,0.3871351995235259,0.38218469081994,0.3742889647326507,0.0,1.946856456079588,60.07507885953396,213.170031836204,331.1481072081718,fqhc8_80Compliance_baseline,27 -100000,95648,41368,388.8006022080964,7397,76.20650719304115,5815,60.252174640347945,2289,23.638758782201407,77.25911226955019,79.65591878280789,63.27736057920528,65.04615060165031,76.98071081042468,79.3748703566633,63.17660867874813,64.94649675709123,0.2784014591255044,281.0484261445936,0.1007519004571477,99.65384455908575,80.94064,56.71277243451642,84623.45265975242,59293.21306720101,223.16258,135.05329941493434,232722.77517564403,140604.50758503508,270.08082,127.91705846498758,278596.1651053864,130816.78611236686,4156.3576,1863.6425050236928,4309582.406323185,1912886.562139921,1400.01901,612.9006146783028,1449954.0398126463,627155.4914591692,2247.0633,926.94369100217,2321976.0162261627,945883.4237060356,0.38032,100000,0,367912,3846.520575443292,0,0.0,0,0.0,18511,192.91569086651052,0,0.0,25251,260.2145366343259,2083051,0,74906,0,0,3167,0,0,54,0.5645700903312145,0,0.0,0,0.0,0,0.0,0.07397,0.1944941102229701,0.3094497769365959,0.02289,0.3209718670076726,0.6790281329923273,25.365880406573336,4.517302505152555,0.328804815133276,0.2204643164230438,0.2252794496990541,0.2254514187446259,11.27681489105114,5.703875940909199,24.31407513614701,13113.46549977322,66.03423384555205,15.21549610690553,21.6265281214766,14.596711569381227,14.59549804778869,0.5681857265692175,0.781591263650546,0.7055439330543933,0.6053435114503817,0.122044241037376,0.7231316725978648,0.9186602870813396,0.8604118993135011,0.7617328519855595,0.1648351648351648,0.5188208616780046,0.7152777777777778,0.6596610169491526,0.5634075508228461,0.1107899807321772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081986973653,0.0044717549356614,0.0066987394190365,0.0089822793041781,0.0114247927158044,0.0135049803434298,0.0157941962191814,0.0181712384005226,0.0206295171793377,0.0226523635023645,0.0246060469360345,0.0267170477764885,0.0286657615403604,0.0305961615724572,0.0327763960412388,0.0347419685047511,0.0369422660547607,0.0387905084182773,0.0408154774287497,0.0429193945206621,0.0571404685769222,0.0713769519999162,0.0852033476493998,0.0981878678754567,0.1104669581194956,0.1256579435095262,0.1396571501401988,0.1524717664606861,0.1643819503849444,0.1759494894179042,0.1897299279520255,0.2024573112594262,0.2156907593778591,0.2272777071738463,0.2382921477168723,0.2493115089059654,0.2605363556013023,0.2703455587134028,0.2795400520910342,0.287758127348571,0.2966530498560951,0.3047568772362015,0.3126157132684548,0.3195045695045695,0.3261092275044515,0.3331149081377809,0.3392442262046793,0.3444521037581699,0.3493414044841651,0.3543774164503999,0.3555588589034987,0.3565949330347887,0.3580533680811285,0.3585926928281461,0.3595638386980974,0.3599248166635854,0.3600942630129134,0.3613097105493453,0.3626950135025887,0.3630566383445005,0.3639995477330117,0.3648758770099179,0.3665626712761921,0.3668662943274342,0.3678199773040056,0.3679018160883446,0.3682809548342778,0.3698569439169515,0.3717458970005659,0.3727687505002801,0.3756829973827999,0.3797739568268252,0.3803407934893184,0.3834724668760052,0.3807278898736564,0.3841273641369404,0.3795282873439186,0.3791275988585406,0.3792717086834734,0.3821456538762725,0.0,2.108732095390492,62.54812713992715,228.0053657691712,333.60507938709,fqhc8_80Compliance_baseline,28 -100000,95616,41315,387.93716532797856,7269,74.78873828647924,5687,58.88135876840696,2301,23.625753012048197,77.28554750318864,79.71572902040363,63.27381344368565,65.07120741973897,76.99757087987994,79.42980016737378,63.16817441463896,64.96964688148812,0.287976623308694,285.9288530298443,0.1056390290466851,101.5605382508511,81.22488,56.891138969497646,84949.04618473897,59499.60149922361,220.35539,133.49911593942645,229839.80714524764,139001.16710532384,260.57515,124.28935110101972,269406.86705153954,127586.35245848994,4099.64749,1839.22838273172,4244759.768239626,1880700.2936032864,1381.57973,597.5541511277067,1429529.8799364122,609582.316782208,2266.78324,942.4316642454712,2329536.374665328,948710.2615151306,0.38095,100000,0,369204,3861.320281124498,0,0.0,0,0.0,18315,190.90947121820616,0,0.0,24431,252.3322456492637,2085750,0,74829,0,0,3227,0,0,40,0.4183400267737617,0,0.0,0,0.0,0,0.0,0.07269,0.1908124425777661,0.3165497317375155,0.02301,0.3216856432404135,0.6783143567595864,25.521718324556364,4.522146292329221,0.3268858800773694,0.2039739757341304,0.2363284684367856,0.2328116757517144,11.01343222147126,5.533249330534112,24.586332016011568,13165.10614395814,64.11762949033456,13.696757064655982,20.987498305347888,14.966238549295907,14.4671355710348,0.5517847722876736,0.7517241379310344,0.7132867132867133,0.5833333333333334,0.1178247734138972,0.7170596393897365,0.8944591029023746,0.8668076109936576,0.7515337423312883,0.1515151515151515,0.4956419316843345,0.6824583866837388,0.6608946608946609,0.5294695481335953,0.1094339622641509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022699635184434,0.0046658349308746,0.0071680948706493,0.0094323321644559,0.0115980954706385,0.0137823549185588,0.0160051412308351,0.0183577149395227,0.0203741395710384,0.0224798500660569,0.0245070884881311,0.0266232365059956,0.0288516963109354,0.0307999958768412,0.0329272070211667,0.035012049937423,0.0370976767320884,0.0390059505883086,0.0412498829015436,0.0432669239595285,0.0577357307129416,0.0722587271145764,0.0855122115263357,0.0982509746075229,0.1106439618017409,0.1258274638563787,0.1397479223787965,0.1527160296391065,0.1648686829769473,0.1760527814491258,0.1898308011049723,0.2031487183935464,0.2160450770538614,0.2273494345577277,0.2386354866095547,0.2500610446402805,0.260351920583106,0.2702794089469472,0.2797867987998909,0.2894208830644699,0.2976175308956555,0.3055470964417063,0.3132648705056446,0.3205539341092254,0.3279399052802026,0.3342927377614171,0.3403967199137347,0.3463059339762233,0.3515552957984285,0.3570776618119766,0.3584197957283754,0.3595474651710785,0.3605966860194092,0.3614613222038663,0.3622564499791456,0.3618866068134301,0.3618878061962517,0.3625222669393679,0.3632823890632772,0.3642550593474474,0.3660882330798765,0.3671235050278665,0.3682014540090612,0.3682259369102184,0.3679099429896608,0.3675640355462624,0.3682184907489238,0.3713151927437642,0.3727584757635191,0.3761322103924996,0.3777473155129084,0.3800021342439441,0.3826120017742855,0.3827528261533761,0.3831052383199622,0.3856837606837607,0.3818964192408176,0.3824547119886016,0.3827567270730368,0.3873292867981791,0.0,2.224207808606242,63.89245566968729,207.77990909696848,328.1563669361578,fqhc8_80Compliance_baseline,29 -100000,95817,41400,389.01238819833645,7302,75.1119321206049,5726,59.26923197344939,2360,24.32762453426845,77.35864855579545,79.66385124931274,63.35358995694328,65.05430823355175,77.06396319098482,79.36535920454962,63.24637579365252,64.94787818926694,0.2946853648106327,298.4920447631225,0.1072141632907559,106.43004428480651,79.90598,56.02122599420375,83394.36634417692,58466.89626496734,218.82326,132.3253952596961,227825.7302983813,137551.70299601962,255.4869,121.6633304254367,263364.7160733482,124399.21508305764,4163.73198,1853.844149256933,4315393.687967689,1904665.079533834,1396.02232,599.8235555644889,1447174.4053769163,616216.6792578445,2328.13278,961.312446319082,2402502.812653287,980401.6148183736,0.38155,100000,0,363209,3790.653015644406,0,0.0,0,0.0,18249,189.95585334543972,0,0.0,23973,246.88729557385437,2097490,0,75286,0,0,3160,0,0,43,0.4278990158322636,0,0.0,1,0.0104365613617625,0,0.0,0.07302,0.191377276896868,0.3231991235278006,0.0236,0.3140096618357488,0.6859903381642513,25.245880152692408,4.5983508865755365,0.3332169053440447,0.1933286762137618,0.234544184421935,0.2389102340202584,11.130023605833149,5.604699530728396,25.10451514918264,13127.40691795471,64.56404421076672,12.99607857112152,21.53114580868806,14.97583959838863,15.06098023256852,0.5382465944813133,0.7606142728093948,0.6986373165618449,0.5502606105733433,0.1228070175438596,0.701867816091954,0.9104046242774566,0.8547008547008547,0.7202572347266881,0.1423220973782771,0.4856945085371481,0.6925098554533509,0.6479166666666667,0.499031007751938,0.1180744777475022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023581563872639,0.004527545098198,0.006721615620913,0.0089804864683856,0.0112673480584398,0.0133869080921621,0.0152996781159597,0.0174737078330766,0.0196146537809288,0.0217475807606538,0.023998279252704,0.0260016000984676,0.028160476704166,0.0302540724657069,0.0323648286385944,0.0342480608946221,0.0362246112140056,0.0382633755947876,0.0404258634121007,0.0422240498027254,0.0574298948422633,0.0719707266074229,0.0854558413516969,0.0982312696394228,0.109899143191375,0.1252708000887696,0.1389345348529022,0.1513994234226567,0.1634191392361815,0.1749745349273575,0.1883903479019285,0.2015016606982506,0.213759801629164,0.2258858536905556,0.2367157737112153,0.2481738070165715,0.2590810653926012,0.2690130860891384,0.2787184783348843,0.2871434628651318,0.2955047985089313,0.303477344573235,0.3116346279122102,0.3191900289104017,0.3264188819271245,0.3333703511759334,0.3399589188647579,0.3458066487567003,0.3519932585726324,0.3576922060417052,0.3584460416132903,0.3601554211389283,0.3612986903133943,0.3621901483816851,0.3632196225516461,0.36317904358762,0.3626307352917837,0.3636348657109903,0.365079365079365,0.3663104965430547,0.3676634070054453,0.3693371483071054,0.3691317649541091,0.3684636482172564,0.3698540622957961,0.3711204629142556,0.3739132937992976,0.3774857615577969,0.3789832676116381,0.3800522823245525,0.3810028086007643,0.3831564200657363,0.38573981871569,0.3871267933307483,0.3876249405045217,0.3927207637231503,0.3895096213531968,0.396023198011599,0.3999432302015328,0.4016096579476861,0.0,1.9606263918453493,61.87826091090776,216.74864020742797,332.1487425483752,fqhc8_80Compliance_baseline,30 -100000,95862,41411,389.0488410423317,7227,74.28386639127079,5601,57.853998456114,2304,23.659009826625777,77.41454581429173,79.70383284172574,63.37712166936033,65.06824597688804,77.13328716778285,79.42148243800231,63.27404317465668,64.96750175912484,0.2812586465088742,282.35040372342723,0.1030784947036451,100.74421776319298,80.11168,56.18310821897263,83569.79825165342,58608.32052218045,219.16948,132.6283341592113,228009.87878408545,137733.07896686002,256.80843,122.1527067079992,264496.9330913188,124841.29031194806,4088.61983,1824.3404704331665,4227886.211428929,1865866.475175948,1377.76655,595.3014929965497,1423918.6434666498,607677.5291528968,2278.49084,947.5337630036722,2342550.770899835,958533.7269137818,0.38141,100000,0,364144,3798.627193256974,0,0.0,0,0.0,18219,189.45984853226517,0,0.0,23996,246.87571717677497,2097231,0,75301,0,0,3181,0,0,40,0.4068348250610252,0,0.0,0,0.0,0,0.0,0.07227,0.1894811357856375,0.3188044831880448,0.02304,0.3164340268633131,0.6835659731366869,25.252879043905757,4.593566522027822,0.3236921978218175,0.1978218175325834,0.2317443313693983,0.2467416532762006,10.88490976019364,5.405515294007301,24.507015732010927,13084.249456240936,62.91777874976041,13.054312747422768,20.36715204410085,14.278387552526532,15.21792640571026,0.5416889841099803,0.7734657039711191,0.6971869829012686,0.5924499229583975,0.1041968162083936,0.6958393113342898,0.9116022099447514,0.8777777777777778,0.7307692307692307,0.1216216216216216,0.4906108866175422,0.7064343163538874,0.6375641966250917,0.5533596837944664,0.0994475138121546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023282887077997,0.0045387771642773,0.0066519971201719,0.008537551012121,0.0107429616830978,0.0125052147457747,0.0146699266503667,0.016810151372965,0.018866960856419,0.0210600605515096,0.0232415213004599,0.0254182523156458,0.027557720168922,0.0294895680009881,0.0316108545034642,0.033743028299938,0.0356939630645077,0.0380848748639825,0.0400917688338921,0.0419930306340042,0.0563364127374721,0.0698415684307332,0.0829596882333221,0.0957685846283074,0.1076430572228891,0.1223595268272074,0.1362239925420568,0.1492240646258503,0.1616719831862844,0.1733440428380187,0.1873614906297738,0.2012909782890753,0.2141894681937713,0.2256961140009616,0.2369187484201387,0.2481990107008089,0.2591940052186712,0.269810048330898,0.2791003640735406,0.288329650450533,0.2976786685018332,0.3051033773037702,0.3124682054254853,0.319213712093971,0.326489929378016,0.3337197257435998,0.3404772342957349,0.3459510405787503,0.3515421245896534,0.3565300159961926,0.3575290928949959,0.3579872688693543,0.3588897351273589,0.3601435019095012,0.3618689197631868,0.3623295019157088,0.3620864334335918,0.3636050064058342,0.3653171874732755,0.3669613358335565,0.3679515769353297,0.3684960516159677,0.3692068951054817,0.3703040744635625,0.3693237936932379,0.3704370515329419,0.373324205602145,0.3774414369151542,0.3796925025507511,0.3811991707861585,0.3838894967177242,0.3857363186725522,0.3847408708746392,0.3828644888082275,0.3793911007025761,0.3766741732843428,0.3774307150512938,0.3787971457696228,0.385103448275862,0.3933613124761541,0.0,2.257199268420049,61.61058956390324,204.9226655880956,325.053089694144,fqhc8_80Compliance_baseline,31 -100000,95721,41143,386.5191546264665,7192,74.09032500705175,5643,58.5033587196122,2237,23.119273722589607,77.36002699221102,79.73158695174267,63.33690834044432,65.08852811247883,77.09020908958767,79.45838604429753,63.23999108366241,64.99244940928473,0.2698179026233447,273.200907445144,0.0969172567819143,96.07870319409528,80.6025,56.49120017804548,84205.66019995612,59016.516937814566,219.61882,132.70059840631993,228978.2179459053,138174.50549651583,261.28202,123.83282623170696,269882.7843419939,127057.59214359114,4076.46955,1812.764872283201,4229380.3031727625,1864481.6103918697,1372.95193,597.9660067059193,1424231.1613961407,614601.1708046499,2205.85644,902.9979749571723,2280861.608215543,922194.5348158284,0.38003,100000,0,366375,3827.5300090889145,0,0.0,0,0.0,18261,190.2821742355387,0,0.0,24415,251.9927706563868,2095003,0,75105,0,0,3149,0,0,45,0.4701162754254552,0,0.0,0,0.0,0,0.0,0.07192,0.1892482172460069,0.3110400444938821,0.02237,0.3140637345272584,0.6859362654727417,25.1703741505094,4.574472305753861,0.3287258550416445,0.2062732589048378,0.2330320751373382,0.2319688109161793,11.229930008584194,5.6425611614118845,23.5774038635976,13081.453163762497,63.54297351662837,13.6961714934676,20.829191015884746,14.668919480970738,14.348691526305284,0.5511252879673932,0.781786941580756,0.693800539083558,0.5726235741444867,0.1222307104660045,0.7184115523465704,0.9302949061662198,0.8957871396895787,0.7562724014336918,0.1170212765957446,0.4967120713950211,0.7117572692793932,0.6289173789173789,0.5231660231660231,0.1236611489776046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877627087743,0.0042575190828087,0.0066671402331976,0.0089294784534427,0.0111578990194881,0.013125738259134,0.0152599388379204,0.0174835167078323,0.019657551750575,0.0218882450500624,0.0240419118702454,0.0263336207958605,0.0284541976882892,0.0306831875907672,0.0327170301892243,0.0346143109705033,0.0365689422977312,0.0387146326780561,0.0405533309064433,0.0424507658643326,0.0568534280194245,0.0715676218784669,0.0845834294945765,0.0973065070834341,0.1097464551157029,0.1245269456013869,0.1380356385235469,0.1513381218409151,0.1638971357782097,0.1756188596679394,0.1888302455838001,0.2018046869928375,0.2142756229827097,0.2257852973965506,0.2370354079612931,0.2485133055004928,0.2595120971789981,0.2701371711266022,0.2796521778563816,0.2884685839897417,0.2969713089634915,0.3046156363593861,0.3118243962438205,0.3187511975474228,0.3262778243287551,0.3325655301537248,0.3386723393605706,0.3447806738715829,0.3501055002524239,0.3556567055874398,0.3567925850083526,0.3573071783780805,0.3584884360844963,0.3591673663182884,0.359995237173858,0.3600417190711371,0.3601584158415841,0.3614946397202476,0.3612982660145696,0.3620914565500974,0.3631245073383131,0.3645039301482963,0.3643657693516288,0.3642994585402962,0.3646081617912604,0.3654172652474859,0.3660456197590223,0.3671422696067575,0.3708742667326313,0.3724806667468045,0.3755173365216591,0.3759104541559554,0.3772868266126479,0.3796914575178448,0.3795385779122541,0.3766451304139746,0.3739385517986722,0.377079482439926,0.377877596855699,0.3784421715184893,0.0,1.7452845825702348,61.920555107451584,213.20366264372387,323.38687077599377,fqhc8_80Compliance_baseline,32 -100000,95751,41492,389.5938423619597,7315,75.20548088270618,5657,58.485028876983,2251,23.101586406408288,77.33346816806463,79.69420411015274,63.32120940122799,65.06963887748371,77.05384350206764,79.41540888220757,63.21919482275497,64.97072257835697,0.279624665996991,278.7952279451673,0.1020145784730175,98.91629912674205,81.31948,56.96984108590376,84928.07385823647,59497.9071611824,221.53814,134.3116458813573,230809.8505498637,139712.63577545647,262.69598,125.40859051711163,270726.5198274692,128142.71581660978,4063.19581,1828.00531324829,4203293.897713862,1869224.5572180524,1361.98131,593.9780652323045,1404979.7808900168,603006.2098079502,2211.68738,919.9859024494192,2272484.3395891427,929297.6999299914,0.38266,100000,0,369634,3860.366993556203,0,0.0,0,0.0,18435,191.9353322680703,0,0.0,24662,253.82502532610624,2089005,0,74993,0,0,3193,0,0,43,0.4490814717339766,0,0.0,0,0.0,0,0.0,0.07315,0.1911618669314796,0.3077238550922761,0.02251,0.3235370611183355,0.6764629388816645,25.12049244514845,4.501953064962765,0.3316245359731306,0.2061163160685876,0.2361675799893936,0.2260915679688881,11.106268738358697,5.630529590272036,24.013100200515726,13140.003375091492,63.908295780699824,13.739830689979966,21.265775076698866,14.922915044401796,13.979774969619209,0.5529432561428319,0.7873070325900514,0.7020255863539445,0.562125748502994,0.1110242376856919,0.7114597544338336,0.9360613810741688,0.848421052631579,0.6929824561403509,0.1434108527131783,0.497494631352899,0.712258064516129,0.6523911491791577,0.5171026156941649,0.1028403525954946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365773342114,0.0042286942765586,0.0063942512636258,0.0088195248836594,0.0109944875002542,0.0131759818346587,0.0153733230028952,0.0172174481027127,0.0191631576795715,0.0213628407357743,0.0236203520498651,0.0257173656383142,0.0279300309533848,0.0299790939331211,0.0322517410368841,0.0343473182630986,0.0365423047849813,0.0385393643184011,0.040577630840247,0.0429737949422988,0.0579564908764457,0.0723712440737213,0.0857361705699655,0.0989440915401119,0.1111837595570788,0.1264195233362235,0.1402805185986801,0.1529267773520647,0.1647798876476493,0.1766806429819952,0.1906567424625957,0.2043514481385712,0.2165718698002196,0.2278698386655728,0.238944867338408,0.2497785356779022,0.2596313785904864,0.2696999707398321,0.2793403250703714,0.2885593220338983,0.2963027232132528,0.3045248233587572,0.312161234585434,0.3202305765612454,0.3273563832370222,0.3333620668423515,0.3396547410557918,0.3457444779307977,0.3503767770670948,0.3555599577390386,0.3567845971308381,0.3572451199030864,0.3584578517056667,0.3598842257597685,0.3608853561966003,0.3606673221088853,0.3606408994188078,0.3622381767883019,0.3636955776482687,0.3660512636673239,0.3669574700109051,0.3675303547337513,0.3687308193551099,0.3701084394153701,0.3708155959752321,0.3718009354143675,0.3727072423956277,0.374746963562753,0.3756591287114697,0.378731045490822,0.3795724030581879,0.3818522483940043,0.382035319527379,0.3826294697903822,0.3876987527373131,0.3893655589123867,0.3905619372865569,0.3954113269946259,0.3941276115189158,0.3982819211245607,0.0,2.365411707458426,64.86908908910424,201.72590544783048,328.6621915895269,fqhc8_80Compliance_baseline,33 -100000,95794,41379,388.7299830887112,7172,73.72069231893438,5556,57.38355220577489,2249,23.091216568887404,77.34149214859087,79.68031588286416,63.33904717832892,65.07235404440897,77.06330010136065,79.40232242089044,63.23760371068686,64.97383912821857,0.2781920472302204,277.9934619737219,0.1014434676420563,98.5149161903962,80.90038,56.66551197726718,84452.45004906361,59153.50854674321,220.67981,133.8590786559979,229691.8804935591,139059.36046010087,255.39876,121.75085076440212,262505.9607073512,124086.84894124696,4028.35946,1803.2326459912551,4160597.469570119,1837800.684494675,1346.24822,581.4719121582364,1389079.691838737,590730.3589865885,2219.26682,922.564190276084,2279210.973547404,930317.2530381908,0.38143,100000,0,367729,3838.747729502892,0,0.0,0,0.0,18455,191.97444516358016,0,0.0,23842,244.8483203540932,2093607,0,75107,0,0,3169,0,0,39,0.3966845522684093,0,0.0,0,0.0,0,0.0,0.07172,0.1880292583173845,0.3135805911879532,0.02249,0.3126820227693937,0.6873179772306063,25.397892803793848,4.637178578563398,0.3390928725701944,0.1976241900647948,0.2253419726421886,0.2379409647228221,11.323636514062589,5.711263693605013,23.93226296881744,13100.077841707842,62.46697079538488,12.761287876080042,21.148139197496825,13.93440904906105,14.62313467274696,0.543016558675306,0.7750455373406193,0.685244161358811,0.5782747603833865,0.1142208774583963,0.698948948948949,0.9203539823008848,0.876993166287016,0.7073170731707317,0.1161048689138576,0.4938446969696969,0.7101449275362319,0.6269896193771626,0.5398963730569948,0.1137440758293838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044301166833936,0.0066873002181744,0.0089115148559118,0.0111817673093554,0.0132625724501125,0.0154210182767624,0.0179621762927865,0.0201857002617801,0.0221692027278871,0.0239828562053974,0.0260728478861379,0.0280597813229652,0.0300395582660293,0.0322753724875149,0.0341505767561086,0.036272327206834,0.0385169970642849,0.0404426663895672,0.0424331386572555,0.057740865173932,0.0717063989962358,0.084725336910276,0.0967423287095418,0.108388660554326,0.1237607018285593,0.1375643988381707,0.1503296469587409,0.1616914095435286,0.1734312201918439,0.1881969259913032,0.201764343398307,0.2144106558890953,0.2250904361700965,0.2367087076520458,0.2482229455922407,0.2583604583760646,0.2691145921060019,0.2788253547605295,0.2883065207697321,0.2972195921760617,0.3048686514886164,0.3131662924004255,0.3201417319064378,0.3269027772722309,0.3328819735092816,0.3393674209276159,0.3453524419372872,0.3510280615543773,0.3563194160814745,0.3571168988491823,0.3588092879938373,0.3592454745389951,0.3598854199820607,0.3609990622627748,0.36059941408347,0.3612354378948036,0.3620042166293319,0.3631187184852331,0.3643914252399318,0.3658577941896831,0.3679031488549618,0.3672810865530622,0.369563259792886,0.3710553104852392,0.372410892650615,0.3733367968366669,0.3758933129147524,0.3780366175108641,0.3779011302843811,0.3793231339823829,0.3801122261789144,0.3795400679008391,0.3833592534992224,0.3830339129599385,0.3858715374380065,0.3834041883168005,0.3829385872982603,0.3786242183058556,0.3811379579111457,0.0,2.2221573898093325,58.662426609847074,209.97997640521652,324.80361073225623,fqhc8_80Compliance_baseline,34 -100000,95711,41065,384.3863296799741,7275,74.95481188160191,5662,58.67664113842714,2315,23.83216140255561,77.3419109081298,79.7099610216409,63.33255108723839,65.08057986137844,77.05975820047702,79.42566020019412,63.23022310940751,64.97940712454975,0.2821527076527843,284.30082144677726,0.1023279778308747,101.172736828687,81.16878,56.79671516748065,84806.11423974256,59341.88877713183,218.55596,131.8096602524658,227837.10336324977,137203.52963866826,255.0907,121.22826324314396,263220.6642914608,124085.707745449,4075.79433,1828.9456707323243,4228468.159354724,1880933.749237105,1424.58547,617.7034852111027,1477000.825401469,634022.7121865108,2280.01652,940.702407514569,2350514.6534881047,957544.3315947108,0.37969,100000,0,368949,3854.823374533753,0,0.0,0,0.0,18189,189.5184461556143,0,0.0,23879,246.1994964006227,2093654,0,75162,0,0,3205,0,0,41,0.4283729142940728,0,0.0,2,0.020896239721662,0,0.0,0.07275,0.1916036766836103,0.3182130584192439,0.02315,0.311909758656873,0.688090241343127,25.44840026448446,4.55436052819281,0.3447545037089368,0.1990462734016248,0.220063581773225,0.2361356411162133,11.177320020406478,5.620766721454977,24.66953156223283,13096.102592304613,63.99869860236556,13.213943699230947,22.111027540923857,14.005366092007115,14.668361270203652,0.5473330978452844,0.7613132209405501,0.6869877049180327,0.5922953451043339,0.1211667913238594,0.7000715819613458,0.9116809116809116,0.8535031847133758,0.6923076923076923,0.1520912547528517,0.4973036342321219,0.6932989690721649,0.6340310600945307,0.5588865096359743,0.1135940409683426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0045707915273132,0.0068167985392574,0.0093747460794669,0.0118253548623256,0.0140812087643561,0.0164531025413621,0.0185045317220543,0.0205335241210139,0.0229563900232327,0.0251973347001537,0.027415827249484,0.0295956562872773,0.0317728509024973,0.0338152287197267,0.0359106884432499,0.0378302248273148,0.0397455454894513,0.0417355500795408,0.0437881661491006,0.0587246219400117,0.0726532406632055,0.0861897117916758,0.098215130893907,0.1105461910086285,0.1256599341917327,0.1396064286850899,0.1521019406623588,0.1639818830516803,0.1752711124459652,0.1892203316821021,0.2019174583937498,0.214324559495323,0.2255620188943317,0.236331841228292,0.2477196245129295,0.258879286311681,0.2691624508150646,0.279028086573801,0.2870191262147035,0.2951800259163273,0.3037030968376208,0.3113042242849024,0.318332753928961,0.3242855580001701,0.3310753285211919,0.337909676772236,0.3441213556990562,0.3498509397278029,0.354958306945324,0.3560299746617068,0.3565746373420683,0.3570724564219538,0.3584303417198648,0.3587647863044641,0.3582919654348225,0.3585996136428413,0.3590637122756263,0.3595957865890211,0.3614146988210843,0.3621279957861469,0.3635876255907231,0.3642477652217912,0.3641377757766771,0.3657863523032606,0.3670846230523057,0.3683651499928233,0.3723346956879891,0.3732132089525768,0.3741614108383883,0.3772196154200018,0.3779222873112269,0.3802789986623351,0.383307573415765,0.3828363914373088,0.3796218234373118,0.379020979020979,0.3815570358034971,0.3801817149346962,0.3776908023483366,0.0,1.8663712454837385,62.19521513169728,216.44534522689344,323.5283972707345,fqhc8_80Compliance_baseline,35 -100000,95708,41299,386.2895473732604,7362,75.66765578635015,5708,59.054624482801856,2328,23.98963514021816,77.33810060160408,79.72198081872583,63.31256206328344,65.07546306408736,77.05074414571251,79.43128959937873,63.20693815396741,64.97066777921863,0.2873564558915689,290.69121934709585,0.10562390931603,104.7952848687288,81.4264,57.00686740251919,85077.94541731098,59563.32532548919,220.65829,133.51864496484131,229975.00731391317,138927.85481874508,261.81658,124.85571681621704,269207.78827266267,127155.92711707874,4131.79602,1858.2915177414468,4280104.348643791,1904666.124303589,1366.56608,597.6113508733431,1413384.001337401,610073.5388735168,2294.1906,956.5275783393048,2366700.840055168,974212.072594524,0.38067,100000,0,370120,3867.1793371505,0,0.0,0,0.0,18392,191.5618339114808,0,0.0,24455,251.24336523592595,2087115,0,74937,0,0,3235,0,0,39,0.3970409997074435,0,0.0,1,0.0104484473607221,0,0.0,0.07362,0.1933958546772795,0.3162184189079055,0.02328,0.3231958762886598,0.6768041237113402,25.3591843958716,4.626932833123754,0.3326909600560617,0.1955150665732305,0.2393132445690259,0.2324807288016818,11.12554715761981,5.495368925973644,24.69933901851048,13165.220025161309,64.24548749544616,13.053940584179893,21.408372214843787,15.186467274724912,14.59670742169756,0.5495795374912403,0.775089605734767,0.6893101632438126,0.5944363103953147,0.1137905048982667,0.6984352773826458,0.9185393258426966,0.8295218295218295,0.7517241379310344,0.1362007168458781,0.50092980009298,0.7078947368421052,0.6417489421720733,0.5520446096654275,0.107824427480916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022095639658632,0.0044126597687157,0.0068125977216886,0.0092383681931825,0.0119453404015018,0.0142494830870145,0.0164922587356954,0.0188444135761487,0.020903001482845,0.0231608047918906,0.02556424901814,0.0278373910275498,0.0298175985523041,0.0320268572487796,0.0340334660696969,0.0362214000785399,0.0380091528442152,0.0402340588882202,0.0424273298124506,0.0444502317829053,0.0588057145244162,0.0735588146008018,0.086910445412098,0.0991354830567299,0.1112118783481672,0.1264201239765587,0.1392932937181663,0.1528329411263616,0.1649265295217739,0.176505300201708,0.1910996174775066,0.2036640031183005,0.2160664518376589,0.2276577582244402,0.2393632830990411,0.2507039443052568,0.260945826676647,0.2710742312845514,0.2793442697446151,0.2880195430773465,0.296469661333117,0.3045627599133134,0.3123666872067118,0.3194529422350189,0.326302986073101,0.3327322134387351,0.3391790857544282,0.3451843347365735,0.3499007511773634,0.3552471583399418,0.3563272624327639,0.3577985444922262,0.3587674247982392,0.3593019722467406,0.3597040918089397,0.3600528247416348,0.3598165690801478,0.3614428106187703,0.3628112477309312,0.363415114260661,0.3636346551400112,0.3641516538835048,0.36473038648461,0.3654404319946001,0.3665096049293222,0.367624810892587,0.3686013646615468,0.3712384076714403,0.3719482164215859,0.3757002662004847,0.3793306997230168,0.3833721916066129,0.386266633191062,0.3882361858561358,0.3888628919045391,0.3894686907020873,0.3967746843146204,0.3997979797979798,0.3941305540318157,0.3935926773455377,0.0,2.24951713124634,61.94330810592376,216.9074870430589,325.69614252385435,fqhc8_80Compliance_baseline,36 -100000,95649,41095,385.4196071051449,7218,74.4074689751069,5573,57.67964118809397,2254,23.272590408681744,77.27782633283482,79.6891573821084,63.2892740309558,65.07261664928605,77.0066208855396,79.41480323188745,63.1910481848849,64.97534429390848,0.2712054472952161,274.3541502209581,0.0982258460708962,97.2723553775694,80.73758,56.52902296723207,84410.27088626123,59100.485072747295,217.87446,131.3566086829959,227188.1880626039,136736.38252188684,250.69363,119.38094374724184,257799.8724503131,121664.29431533,4031.52161,1802.5375550990975,4177414.358749176,1847248.4244312025,1379.12985,595.7665939155135,1427335.497496053,608618.9149378539,2226.7848,915.9302360406484,2300733.9752637246,934654.2135886448,0.38164,100000,0,366989,3836.830494830056,0,0.0,0,0.0,18134,188.95126974667795,0,0.0,23633,242.8044203284927,2093771,0,75178,0,0,3229,0,0,36,0.3763761252077909,0,0.0,0,0.0,0,0.0,0.07218,0.1891311183314118,0.312274868384594,0.02254,0.3177336663599316,0.6822663336400684,25.32701005890284,4.516419721103063,0.3177821640050242,0.2102996590705185,0.2312937376637358,0.2406244392607213,11.172434654660265,5.6543343218559,24.09491031051121,13147.957587887198,63.00469302895903,13.594224154637493,20.29907543190903,14.264100554750378,14.847292887662128,0.5490759016687601,0.7414675767918089,0.7154150197628458,0.5903801396431342,0.1215510812826249,0.703626220362622,0.8994565217391305,0.8487229862475442,0.7228070175438597,0.1470588235294117,0.4955303213336555,0.6691542288557214,0.661648177496038,0.5527888446215139,0.1150608044901777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024420890501185,0.0046750770728541,0.0068422228087629,0.0093092269073244,0.0115265272902996,0.0139566630331801,0.0162774094849566,0.0184767177014922,0.0209079192324215,0.0229766136384589,0.0251179487179487,0.0270453494941194,0.0291094304676647,0.0309195473378269,0.0329654446153687,0.0350113256725587,0.0372431373768147,0.0392395074034847,0.0412391516993069,0.0433962067419479,0.0578283540758853,0.0716844001340482,0.0851535030175806,0.0978733255464006,0.1090078397855929,0.1242392489336254,0.1373521354089239,0.1505960561219597,0.1632711989476723,0.1742528340776365,0.1876393961922617,0.2003161233747253,0.2129424056418963,0.2251898374072696,0.2368609322546915,0.2489752055128404,0.2602998135931866,0.2710419150898823,0.2811953981256666,0.2899290455481804,0.2979882067291016,0.3058724518421545,0.3131727743736544,0.3206323712724134,0.3272647723681972,0.3333744632545284,0.3397231096911608,0.3457236758299151,0.3515337104894379,0.3564593301435406,0.3576394983056339,0.3587162171493281,0.3602998373523796,0.361359778303324,0.3623255466825882,0.361885126090502,0.3618711104744624,0.3623229087546646,0.3642736863809753,0.3656232602410071,0.3679145794885315,0.370402749905621,0.3715404205164902,0.3716673030704611,0.3712835387962291,0.37192440582138,0.3715047750150563,0.3732143990857723,0.3747953591002918,0.3764634882317441,0.379265818114739,0.3812382739212007,0.3815940002542265,0.3829162805066419,0.3850618458610846,0.3837981407702523,0.3834762275915822,0.3869691923397169,0.3863829787234042,0.3935130910511918,0.0,2.236986073284202,63.67728325760564,205.5032438935745,316.3499752297043,fqhc8_80Compliance_baseline,37 -100000,95819,41407,388.06499754745926,7298,74.90163746229871,5684,58.72530500213945,2309,23.721808827059352,77.39792083527668,79.70161356062998,63.37134666233783,65.07148197943634,77.11152907421216,79.41510489705979,63.26577764641759,64.96831083991681,0.2863917610645217,286.50866357018856,0.1055690159202384,103.1711395195316,80.43552,56.33577202865943,83945.27181456705,58793.9469506668,219.18477,132.3582201340217,228182.0098310356,137566.8397019607,257.09658,122.32503676588772,264787.1090284808,124895.45931357155,4104.35362,1849.551704728481,4244332.16794164,1891143.4316038375,1380.64703,599.9847420011472,1427644.6007576785,612918.619481676,2279.1446,955.6059308015192,2344319.978292405,968841.8528689664,0.38182,100000,0,365616,3815.6941733894114,0,0.0,0,0.0,18330,190.68243250294827,0,0.0,23993,246.7986516244169,2097563,0,75175,0,0,3131,0,0,39,0.4070173973846523,0,0.0,0,0.0,0,0.0,0.07298,0.1911371850610235,0.3163880515209646,0.02309,0.3122975249449268,0.6877024750550732,25.350461564042018,4.598347928709025,0.3296973961998592,0.2053131597466573,0.2306474313863476,0.2343420126671358,11.16861403654221,5.5505576446201,24.732778331697432,13120.6191506578,64.13871510150653,13.54238418809418,21.143664908186505,14.5580599748194,14.894606030406456,0.5531315974665728,0.7566409597257926,0.7017075773745998,0.5957284515636918,0.1238738738738738,0.6885245901639344,0.9014492753623188,0.8407079646017699,0.7574750830564784,0.1540983606557377,0.508759635599159,0.6958637469586375,0.6575246132208158,0.5475247524752476,0.1148977604673807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024803596015226,0.0047219041635845,0.0066129114052436,0.0088746281084044,0.011019843851659,0.0131485213001974,0.0153451121843858,0.0174649324152002,0.019617058667266,0.022006916167052,0.0240661434747863,0.0263759938445755,0.0286950089382949,0.03092327323619,0.032931014934911,0.0351353583744605,0.0368711269281302,0.0389399058891814,0.0411833729660128,0.0432538195745389,0.0578110656763748,0.0714450069028992,0.0849515581092983,0.0979204777224079,0.1103463541117693,0.1255272588880784,0.1386458830390753,0.1517067407478366,0.1639317992436382,0.1756503083936712,0.18911758053572,0.2023689761479798,0.2146732335257727,0.2256265581944626,0.2369063592969798,0.248668460507812,0.2593096525957731,0.2689275955516074,0.2779907018936387,0.2873115966078806,0.2964903151199768,0.3042111291623324,0.312272275587943,0.3200617875275409,0.326135219400939,0.3319464276921562,0.338282529089023,0.3446562460287203,0.3505597618585388,0.3561835220308154,0.3572878439596187,0.3582099808958341,0.358899635370472,0.35963557082834,0.3603725379519325,0.3607595905188903,0.3617031376085821,0.3622764815027668,0.3637949314272033,0.3646871477392689,0.3664501839477438,0.3669348446417247,0.3682728476264526,0.3692826624690802,0.3705084745762712,0.3728,0.3732451093210587,0.3745590898979948,0.3770387404917742,0.3811845575893214,0.3836411366462487,0.3853280189593881,0.3863665430361939,0.386463725565943,0.3894092907665838,0.3921921921921922,0.3977994731132806,0.3960154502947753,0.391602634467618,0.3858508604206501,0.0,2.313561661000998,61.93072601155758,214.7857765226003,326.9098242803938,fqhc8_80Compliance_baseline,38 -100000,95557,40960,384.3569806502925,7335,75.5465324361376,5720,59.31538244189332,2320,23.86010444028172,77.19945181010942,79.66985644133564,63.224607941291474,65.05342635511465,76.9146527712229,79.3861767733578,63.11987309265825,64.95197457797786,0.2847990388865185,283.67966797783595,0.1047348486332211,101.45177713678775,80.69622,56.531498011882334,84448.25601473467,59159.97573373205,219.82751,132.43357353319132,229496.782025388,138040.64301676367,257.94169,122.3912059747106,266970.2376591982,125680.1551654156,4162.99402,1865.428760106213,4318659.972581809,1914404.0653097648,1425.90302,616.0103221037889,1477680.5466894105,630131.2327760283,2290.3752,954.5896526152414,2358361.710811348,965736.6885778584,0.37854,100000,0,366801,3838.557091578848,0,0.0,0,0.0,18345,191.4145483847337,0,0.0,24157,249.8404093891604,2086219,0,74905,0,0,3307,0,0,35,0.3662735330745,0,0.0,0,0.0,0,0.0,0.07335,0.1937708036138849,0.316291751874574,0.0232,0.3202385582782315,0.6797614417217684,25.3899957102174,4.515286625131335,0.3216783216783216,0.2019230769230769,0.2367132867132867,0.2396853146853146,11.05491097593725,5.551681232725444,24.8450974078746,13097.865344916094,64.6679716661831,13.563703282537206,20.72800288713743,15.207200659023508,15.16906483748495,0.541083916083916,0.7575757575757576,0.6782608695652174,0.5819793205317577,0.1342086068563092,0.7148997134670487,0.92,0.8694690265486725,0.7468354430379747,0.1690647482014388,0.4849676225716929,0.6869565217391305,0.6159942363112392,0.5317919075144508,0.1253430924062214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022604940649359,0.0044033197378299,0.0065602404744495,0.008601756954612,0.0109948283585128,0.0132520540683805,0.01555340103077,0.0175454731248722,0.0197707736389684,0.0220129331106078,0.0240412252607374,0.0264673220088018,0.0286917745440314,0.030874130923645,0.0331827999214608,0.0355046735743786,0.0376250972258231,0.0396794878456885,0.0413741380387908,0.0433039629181108,0.057387338382359,0.0714645246534259,0.0848417954378219,0.0974995521743253,0.1094564171942544,0.1254293711038548,0.1394713047178341,0.1530605711358688,0.1653239629756599,0.1769526083169339,0.1904484188698807,0.2031692624952515,0.2154524326506563,0.2267585389670949,0.2374370749801289,0.2493694654622623,0.2594636341250476,0.2703447030407007,0.2799435446236498,0.2887931529668562,0.2969232197136691,0.3049517262414509,0.3121261748789519,0.3194784907474164,0.3262901358679095,0.3325418908056637,0.3379963048150522,0.3436825502241408,0.3483314049479336,0.3538506379088777,0.3547676038243607,0.3562203897843893,0.3573165903048815,0.3581325170107505,0.3587154592979836,0.3582305572235823,0.358217270194986,0.3592624413455819,0.3605301661072381,0.3622961442920401,0.3618887397690112,0.3632650621613006,0.3640980068554018,0.3666711809317443,0.3662420382165605,0.3689904480447517,0.3702475047597069,0.3725676919658445,0.3730071370237546,0.3740058350985172,0.3739841110400876,0.373069960600575,0.3764757876128543,0.3766950126407722,0.3790406182263688,0.3837695709334289,0.3825740144193895,0.3818953323903818,0.3841916827320297,0.3829296424452134,0.0,2.0704849391515348,61.94345776582685,219.1799516361864,329.3905870576034,fqhc8_80Compliance_baseline,39 -100000,95683,41139,385.3976150413344,7354,75.63517030193451,5735,59.37313838403896,2344,24.11086608906493,77.33990302576841,79.73098383633759,63.32261558699434,65.08919403139512,77.05960445656682,79.44994729444213,63.21957809743447,64.98862860292095,0.2802985692015909,281.03654189546035,0.1030374895598669,100.5654284741695,80.58006,56.4004180051401,84215.64959292664,58945.07697829301,219.24201,132.1367921976629,228529.97920215715,137498.2320480164,257.17172,122.41643589300492,265580.730119248,125472.23475973507,4162.87479,1857.228223313278,4312470.438844936,1903047.8951688637,1399.99125,602.5672590312188,1449647.7117147248,616424.80789531,2310.14686,957.8011679373058,2378337.6775393747,970700.9226665476,0.38057,100000,0,366273,3827.984072405756,0,0.0,0,0.0,18223,189.8247337562576,0,0.0,24070,248.3095220676609,2095978,0,75219,0,0,3167,0,0,46,0.480754156955781,0,0.0,0,0.0,0,0.0,0.07354,0.1932364610978269,0.3187381017133532,0.02344,0.3096007236077012,0.6903992763922987,25.42839709702681,4.577101144854256,0.3297297297297297,0.1998256320836966,0.233129904097646,0.2373147340889276,10.971025392918383,5.437126142854364,24.930787893233337,13126.7646909492,64.32635519841998,13.426043355859855,21.12394410820606,14.991899365091635,14.784468369262411,0.5396687009590235,0.7652705061082025,0.6641988365943945,0.5961106955871354,0.121234386480529,0.7029411764705882,0.926027397260274,0.8372641509433962,0.7292993630573248,0.1322957198443579,0.4889142857142857,0.6901408450704225,0.6141785957736878,0.555229716520039,0.118659420289855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0044802594901424,0.0069101277511136,0.0093446552634786,0.0115819122865887,0.0136098047598688,0.0159314225139642,0.0181779211235404,0.0205471050049067,0.0223955454564064,0.0244710079553842,0.026597273548493,0.0285358780823889,0.0303866834222615,0.0328004211004345,0.0348546259150502,0.0369871529216742,0.0392779663480002,0.0413831845702515,0.0437724126428154,0.0580400513961578,0.0713702416349093,0.0849307020028747,0.0977223712587449,0.1092625804409747,0.1251322415471203,0.1391906803038662,0.1513577382029528,0.1629069469366829,0.1749769456775826,0.1891135068767568,0.2028458583563274,0.2159651984774334,0.2271718331419824,0.2383326729185928,0.2488840151087185,0.2593914915931227,0.2699327137295497,0.2794740007034503,0.2885879900107682,0.2975218085475623,0.3058372220857748,0.3133786150423628,0.3200345050679318,0.3264533048419212,0.3334483225941577,0.339527027027027,0.3442207858306189,0.3506039085583951,0.3551701821351683,0.3567450953954021,0.357445987654321,0.3585984025288589,0.3599408935504433,0.3608694356712949,0.3613177307792586,0.361256046308778,0.3621988943003817,0.363107858559606,0.363503127792672,0.3643565099864844,0.3657207403590821,0.3666274723890312,0.3676985981308411,0.3685826904940391,0.3692501244987288,0.3705848623853211,0.3732496990432744,0.3751326119244642,0.378035650197392,0.3789141182933528,0.3799796802310037,0.3803486529318542,0.3778579100813257,0.3791182856603417,0.3809467032311911,0.3831891223733004,0.3815599917678535,0.3765831691528286,0.3866822429906542,0.0,2.1226993978576782,60.021909368530416,219.00428664855653,333.079625212051,fqhc8_80Compliance_baseline,40 -100000,95790,41227,387.3577617705397,7235,74.39189894561018,5670,58.67000730765215,2249,23.15481783067126,77.331780499572,79.67294960125466,63.32970022966426,65.06300892023933,77.06253944508148,79.40169191516175,63.23225466851626,64.96689806128981,0.2692410544905215,271.257686092909,0.0974455611479996,96.11085894951545,82.02062,57.43065981414737,85625.4515085082,59954.75499963187,221.19918,133.73585171787303,230410.3037895396,139102.93529373946,263.94229,125.01942309906973,272129.2723666353,127940.05191532534,4115.82499,1831.7888526929844,4262374.130911369,1877953.901965742,1384.98009,594.5679876930661,1433040.9124125692,607889.9547897127,2224.7667,913.2669714689474,2292053.617287817,928430.9075517476,0.37951,100000,0,372821,3892.065977659463,0,0.0,0,0.0,18456,192.12861467794133,0,0.0,24623,253.6381668232592,2086289,0,74921,0,0,3273,0,0,34,0.3549431047082159,0,0.0,0,0.0,0,0.0,0.07235,0.1906405628310189,0.3108500345542502,0.02249,0.3188348490839594,0.6811651509160406,25.211989635697343,4.623289362943225,0.3349206349206349,0.2040564373897707,0.2216931216931217,0.2393298059964726,11.379658624953692,5.635757547422842,23.778929961203485,13046.997000746658,63.89498641266477,13.434764830928543,21.54479249935983,13.969221502286306,14.946207580090068,0.5492063492063493,0.7882454624027658,0.6987888362295945,0.5767700875099443,0.1105379513633014,0.7138643067846607,0.927536231884058,0.8862144420131292,0.7328519855595668,0.1444043321299639,0.4974501622624014,0.729064039408867,0.6393897364771152,0.5326530612244897,0.1018518518518518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271207900734,0.0043996593812091,0.0066567221731762,0.0087772766061197,0.0107297228578693,0.0129023717145795,0.0152933259925368,0.0175180693372534,0.0196990452045552,0.0216923958887842,0.023691143756343,0.0258540141488608,0.0279682888959723,0.0302430984754841,0.0323033417961896,0.0341248591483774,0.0359883594486272,0.0380111803690144,0.0401205382657037,0.0421269639640577,0.0567648225055825,0.0707068594021295,0.0838364779874213,0.0968592714014017,0.1094416757104173,0.1253856883215689,0.138706942236354,0.1517954934549824,0.1638333066538605,0.1749247399376493,0.1890559579803894,0.2021522820679212,0.2141723208072373,0.2257810535064026,0.2368664304421506,0.2480696584652538,0.2588501746047684,0.2688492509784516,0.278131201451494,0.2864796794504865,0.2951765440377367,0.3027922905197704,0.3106173540616644,0.3179611941371748,0.3251454742033844,0.3317630809830931,0.3377345726956129,0.3431966241283035,0.349312402698495,0.354699725100444,0.3555378829745649,0.3567073590332925,0.3568609764347728,0.3572483279770694,0.3584040494268274,0.3579482610298636,0.3574662790143463,0.3574512259425257,0.3591733040373523,0.3614086626303156,0.3627622542101797,0.3641068348105407,0.3653595046543954,0.3653789972808378,0.3661194246694755,0.3667060522515426,0.3685539644732689,0.3709070201524882,0.3726057356520512,0.3748049765971916,0.37806392274086,0.3801395598497047,0.3803528058289658,0.38320351661911,0.3882330540746382,0.3866522885214474,0.3915065096094234,0.3968673718470301,0.4013377926421405,0.4086576648133439,0.0,2.0266168751450637,60.10394584386268,218.57694168222216,327.6072843350857,fqhc8_80Compliance_baseline,41 -100000,95695,41327,388.3379486911542,7221,74.39260149433095,5613,58.15350854276608,2243,23.104655415643453,77.34192318165195,79.7184011830031,63.32298576779221,65.0753363264265,77.06017140646,79.43537058282502,63.22009414525069,64.97462715526726,0.2817517751919496,283.0306001780798,0.1028916225415201,100.70917115923804,81.33048,56.95558544120824,84989.26798683318,59517.82793375646,219.98764,133.44931297726845,229285.4694602644,138854.0707218438,260.89384,123.9476625299974,270132.9118553738,127468.55233373884,4025.46772,1795.8502852324466,4174105.773551387,1844185.2607058312,1358.05152,588.500228208951,1405442.938502534,601290.9185748511,2203.50324,912.8350019800708,2272261.079471237,926713.2306189734,0.38046,100000,0,369684,3863.148544856053,0,0.0,0,0.0,18407,191.78640472333976,0,0.0,24335,251.81043941689745,2087018,0,74884,0,0,3176,0,0,39,0.386645070275354,0,0.0,1,0.0104498667641987,0,0.0,0.07221,0.1897965620564579,0.3106217975349674,0.02243,0.3198369922439858,0.6801630077560142,25.281506086235755,4.52688511468988,0.3254943880277926,0.2168181008373418,0.2294673080349189,0.2282202030999465,11.06054420218212,5.540723414516856,23.75943170711648,13115.065986047694,63.1140677404109,14.09811591965824,20.60746030806328,14.282453585873052,14.126037926816336,0.5530019597363264,0.76253081347576,0.6956759715380405,0.5822981366459627,0.1209992193598751,0.6921933085501859,0.8983957219251337,0.8387096774193549,0.7116104868913857,0.1518518518518518,0.5091377694470478,0.7022538552787663,0.6511127063890882,0.5484818805093046,0.1127596439169139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376801028725,0.0046522942196004,0.0067459955161954,0.0091413248826863,0.0111966481242309,0.01322514304331,0.0157616785270069,0.0178693596642602,0.0200008180293672,0.0221266574514923,0.0243107178377713,0.0263090335897146,0.0284700437130367,0.0303957631397277,0.0325154577453884,0.0344966651155576,0.0365862501165332,0.0385912832276345,0.0406085563944177,0.0426704734911637,0.0580548795136676,0.0726865327832806,0.0862555759643138,0.0993233929266675,0.1114734031888737,0.126509403011927,0.1398492248885113,0.1524015467047306,0.1642845689240472,0.1757785244265058,0.1899463026460503,0.202662161137646,0.215000272138464,0.2271458746019064,0.2383416266678409,0.2492797305083994,0.2598394426269776,0.2698625356045168,0.2793265030577396,0.2880969563673436,0.2962512875710334,0.3046846657070299,0.3124008241953437,0.3200830044740851,0.3269258826962358,0.3325851288186179,0.3383797874473631,0.3443857079166932,0.3501589567248426,0.3548404163855931,0.3562802258665874,0.3572780133419886,0.3583929429726596,0.3592209108681485,0.3606971833080515,0.3609658873131468,0.3609737542791936,0.3617385577872901,0.3621851477169459,0.3633988331722682,0.3646817865799808,0.3658812553347758,0.3672121492574986,0.3664808487682071,0.3668951865977888,0.3683302397322945,0.3674390696877053,0.369685883688659,0.3717380600689315,0.3719031307257229,0.3734939759036144,0.374993337952353,0.3768493237665883,0.3754485075196579,0.3729770417764396,0.3730692135361396,0.3764991650220131,0.3788368336025848,0.3876871880199667,0.3892897835169008,0.0,1.901252913948118,59.67775272556914,216.210795368029,322.27806255288937,fqhc8_80Compliance_baseline,42 -100000,95738,40893,383.4840920010863,7140,73.38778750339468,5567,57.5633499759761,2293,23.51208506549124,77.32392886815877,79.68810434762305,63.31606620966248,65.06509014468003,77.0362009533138,79.40199189060448,63.2089364411286,64.96188223638745,0.2877279148449787,286.1124570185751,0.1071297685338805,103.20790829257476,80.67774,56.49073594670514,84269.29745764483,59005.55259845113,217.23239,131.50279994659542,226334.2350999603,136789.5210339624,251.664,119.71377081513135,260004.87789592423,122777.79491033083,4008.62815,1796.6756742487266,4145502.7470805743,1835182.688749718,1320.58338,567.9041840793036,1366465.342915039,580365.4957883178,2256.0526,947.8170256747286,2315428.607240594,953882.3927643816,0.3773,100000,0,366717,3830.422611711128,0,0.0,0,0.0,18066,188.0966805239299,0,0.0,23533,242.9442854456956,2093132,0,75207,0,0,3212,0,0,44,0.4491424512732666,0,0.0,0,0.0,0,0.0,0.0714,0.1892393320964749,0.3211484593837535,0.02293,0.3181213411389036,0.6818786588610963,25.419560463493436,4.577012722878617,0.3368061792707023,0.1979522184300341,0.2311837614514101,0.2340578408478534,11.078930073593678,5.407779835299543,24.487828509057863,12930.55761681584,62.71002383276224,12.77020589259651,21.252023898747307,14.359712203775034,14.3280818376434,0.5482306448715646,0.7667876588021778,0.7114666666666667,0.5726495726495726,0.1043745203376822,0.698295033358043,0.9118541033434652,0.8701298701298701,0.7033333333333334,0.1124031007751938,0.5002370791844476,0.705045278137128,0.659589525831564,0.5329280648429585,0.1023923444976076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359172262906,0.0043293554634032,0.0065358150486126,0.008656952996403,0.0106603735199576,0.0131771894093686,0.0151601655689904,0.0172404993518225,0.0192415830854011,0.0217469207220305,0.0239706364829396,0.0261096337669538,0.0282621211498128,0.0303757570763462,0.0325673067993024,0.0345048583832954,0.036544059000839,0.0388296105621522,0.0407129709549609,0.0427176778253576,0.0572266828152896,0.0713448701584046,0.084219467690178,0.0964499032556574,0.1088226609297224,0.1239500687612398,0.1376423273236627,0.1510414448183328,0.1626428800341844,0.1736552626218224,0.1875013456776832,0.2016763099551181,0.2141956247553603,0.2249838711441099,0.2351666483335166,0.2462312114398378,0.2565771115402216,0.2664242615273775,0.2759251266441017,0.2837180487357166,0.2919942484751501,0.3002767095019229,0.3070387773506099,0.3134850086488564,0.3196920978271461,0.3256713025863985,0.332559656738514,0.3382071499655515,0.3451190692601345,0.349962277137298,0.3515809662736199,0.3526611378658461,0.3532562609531347,0.3542473422384661,0.3553942032442748,0.3559551044849453,0.3560957034968585,0.3575330744421773,0.3582749344619022,0.3593797561281312,0.3590760440551817,0.3596578278818673,0.3597098096940385,0.3600880344951491,0.3613817109429766,0.3629049166579306,0.3634022093755366,0.3654376565323526,0.3675735111552513,0.3698191710673708,0.3725571153316818,0.3742521367521367,0.374176798378926,0.3720930232558139,0.3764247720364742,0.3792276325257855,0.3773498395231545,0.3767246550689862,0.374630475678581,0.3807706982067913,0.0,2.2767601953972147,59.402627448736894,211.0118513809786,323.2594942615828,fqhc8_80Compliance_baseline,43 -100000,95797,41195,386.4212866791236,7373,75.67042809273777,5701,58.95800494796288,2269,23.33058446506676,77.4066300966336,79.74576880562711,63.35719594835807,65.08769470434407,77.12316525101099,79.46210495388283,63.25190639731259,64.98495346983364,0.2834648456226176,283.6638517442793,0.1052895510454803,102.74123451043238,79.90004,56.04117692117797,83405.57637504305,58499.92893428601,219.16386,132.138001998465,228264.51767800664,137420.48498226976,256.16766,121.82323693333528,264159.4204411412,124601.89174508586,4092.74753,1835.7238728579289,4239012.735263109,1882964.3651240943,1381.0972,602.7999510204893,1425248.765618965,612804.4834603268,2239.01774,939.475019869972,2305809.3677255027,952648.5863154776,0.38047,100000,0,363182,3791.162562501957,0,0.0,0,0.0,18248,189.93287890017436,0,0.0,23965,246.8970844598474,2099801,0,75301,0,0,3150,0,0,46,0.4801820516300093,0,0.0,0,0.0,0,0.0,0.07373,0.1937866323231792,0.3077444730774447,0.02269,0.3218170185540627,0.6781829814459372,25.45134490721971,4.5794793675924845,0.3264339589545694,0.2120680582353973,0.2271531310296439,0.2343448517803894,11.085054476423712,5.513841393457573,24.07953734157641,13080.708594147438,63.67999643317532,13.927569263669218,20.73112101093892,14.352591611307451,14.668714547259729,0.548149447465357,0.76095947063689,0.6899516389038152,0.5922779922779923,0.1152694610778443,0.6988847583643123,0.935754189944134,0.8513189448441247,0.7167832167832168,0.1584507042253521,0.5016069788797062,0.6874265569917744,0.6433518005540166,0.5569871159563925,0.1036121673003802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088475489898,0.0044614791831437,0.0065150546473041,0.0086260325330461,0.0108420378149123,0.0130038084764057,0.0151403927326114,0.0174756290511917,0.0197473322703299,0.02183879814974,0.0237153340029106,0.0260120055410189,0.0281098081133025,0.0303170681490632,0.0323471807030203,0.0342303085374416,0.0363734171977158,0.0383869797335821,0.040538153862137,0.0427884315072771,0.0570841289218601,0.0707339008219521,0.0837779198591298,0.0969616714485396,0.1088117841676588,0.1242404708816349,0.1379222623830067,0.1508910343654304,0.163479597063343,0.1752405030745827,0.1895317930893477,0.2026430765237704,0.2152491712406934,0.2266461309913925,0.2364155815614526,0.2474158347905,0.2580350070839701,0.2684673946045633,0.2780046740634855,0.2864618520342146,0.2951356353750939,0.3036493107117383,0.3112431498337022,0.3183572216097023,0.3254788061442737,0.3320259986926653,0.3384370575484582,0.3446892511462048,0.35025999455373,0.3559532621338691,0.3571100793607947,0.357731532524807,0.3587586966032091,0.3604528280035323,0.360885477104347,0.3604695713475656,0.3599101095144648,0.3613483956649341,0.3622998296422487,0.3636428367986328,0.3658002172366006,0.3676389327439217,0.3683043651042647,0.3696968342977145,0.3697238895558223,0.3707075962539022,0.3722372351016925,0.3752235153872698,0.3763237253664352,0.3783376911496712,0.3777110898922384,0.3771795007684562,0.3765719315895372,0.3781410838631547,0.38339074574062,0.3846784584748741,0.3869978534191965,0.3890559230306675,0.3944751381215469,0.3914053426248548,0.0,2.199083917289794,59.12231261415176,217.23796257350128,329.97618399198353,fqhc8_80Compliance_baseline,44 -100000,95689,41205,386.888775094316,7202,74.16735465936524,5624,58.19895703790405,2262,23.241960935948757,77.29491858535671,79.69841067663151,63.29396199958445,65.07437685608382,77.01339009525255,79.41599138352103,63.19267773500084,64.97527905783184,0.281528490104165,282.419293110479,0.1012842645836116,99.09779825197518,80.45774,56.37495853349402,84082.53822278422,58914.77446048556,220.13952,133.1561305817908,229484.5802547837,138582.3977487389,259.5895,123.24938653145126,267703.8740085067,125966.10656434017,4107.80363,1829.5593976092944,4255218.562217183,1874334.4142057025,1377.80683,593.1384936605065,1426285.9785346277,606266.9198341859,2233.20802,919.2532173022134,2298149.170751079,931377.6818358792,0.38019,100000,0,365717,3821.9335555811017,0,0.0,0,0.0,18252,190.1263468110232,0,0.0,24345,250.84387965178863,2093873,0,75165,0,0,3285,0,0,39,0.4075703581393891,0,0.0,0,0.0,0,0.0,0.07202,0.1894315999894789,0.3140794223826715,0.02262,0.3242777630532732,0.6757222369467267,25.37960358955519,4.600382283965,0.3220128022759602,0.1980796586059744,0.2459103840682788,0.2339971550497866,11.04684532126522,5.361097935027784,24.058748117893217,13101.55195573994,63.461424391779,12.883928560775134,20.52725188924819,15.537403136824476,14.512840804931216,0.5567211948790897,0.7863554757630161,0.7023743787962452,0.6095444685466378,0.1063829787234042,0.723293768545994,0.9181818181818182,0.8864628820960698,0.7639344262295082,0.1294117647058823,0.5042095416276894,0.7308673469387755,0.6400591278640059,0.5658627087198516,0.1008482563619227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023214086591584,0.004343105320304,0.0064896155994515,0.0087641706064765,0.0110752567769781,0.0132500280289054,0.0157047226417404,0.0179399685335403,0.0200004092155338,0.0224856071626134,0.0248756218905472,0.02703868833597,0.0290391957110075,0.0308979789547454,0.0328144676810008,0.0350265775920908,0.0371491041729272,0.0390884551495016,0.0409350033288948,0.0429843030164057,0.0576591633154018,0.0724373671702419,0.0855982538250047,0.0982081794556148,0.1104980535716169,0.1257776461128274,0.1389755673013649,0.1517422734192847,0.1640382930529735,0.1756160885751376,0.1900945733428122,0.202801817395067,0.2154893135911986,0.2271410930311342,0.2372260767260052,0.2491585473870682,0.259820820921333,0.2703660773567707,0.279873285493687,0.2888310556727506,0.2974306126466195,0.3054700394479626,0.3137596210775606,0.3200441506400643,0.3256534954407294,0.3317694700972887,0.3372942754358916,0.3431613535922157,0.3493523316062176,0.3539064769096718,0.3552011207802354,0.3560378760769633,0.3570038636171352,0.357991290383252,0.3592235900031258,0.3582465517771019,0.3584701711996693,0.3594970501961043,0.3608691178488132,0.3615162441920959,0.3621713316369805,0.3637231693489029,0.3639430680021085,0.3648934732669699,0.3662012868762899,0.3676025576928137,0.3686681065514758,0.36831236497649,0.3705213169365985,0.371349486521181,0.3739784846945842,0.3761630721239176,0.3788332802040166,0.3857958050586058,0.386200973375322,0.3886815171583384,0.3910967344423906,0.3987679671457905,0.3997237569060773,0.4036697247706422,0.0,2.235191671153754,59.66538095993946,214.9940799509928,327.4170480372041,fqhc8_80Compliance_baseline,45 -100000,95718,41016,385.4760860026327,7227,74.41651518000793,5620,58.108192816398166,2337,24.070707703880142,77.3593554540744,79.73035036573835,63.33143217950936,65.08401135479552,77.07720728791132,79.44643024369671,63.22928234514484,64.98338537646097,0.2821481661630827,283.92012204163564,0.1021498343645248,100.62597833454844,80.90874,56.68772327308483,84528.2392026578,59223.68130663493,221.01691,133.69975076982095,230311.78043837103,139088.43767088838,259.45261,123.71558724950532,266792.01404124615,126179.5042257419,4114.796,1834.3143900043124,4260224.273386406,1877724.0017596611,1389.93683,597.4268466016536,1436386.708873984,608423.333752955,2315.499,950.3918036556086,2387077.6447481145,966072.9934621726,0.37823,100000,0,367767,3842.1926910299,0,0.0,0,0.0,18327,190.84184792828933,0,0.0,24262,249.2216719948181,2092303,0,75025,0,0,3182,0,0,44,0.4596836540671556,0,0.0,0,0.0,0,0.0,0.07227,0.1910742141025302,0.3233706932337069,0.02337,0.3213020081375509,0.6786979918624492,25.11053938851655,4.604450130408838,0.3240213523131672,0.1983985765124555,0.2282918149466192,0.249288256227758,11.018021086982824,5.502058308335559,24.783931709655448,12995.97773234864,63.23613399867865,13.137681123006368,20.50903273230955,14.393464509438212,15.195955633924514,0.5403914590747331,0.7739910313901345,0.6908292147171884,0.5853468433359315,0.1177730192719486,0.7141833810888252,0.921832884097035,0.8685344827586207,0.7431506849315068,0.1301115241635687,0.4829545454545454,0.7002688172043011,0.630066322770818,0.5388496468213926,0.1148409893992932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0047441888754853,0.0069408505586167,0.0091304259511283,0.0112971945130817,0.0136215093609699,0.0158213976247515,0.017842925096462,0.0198932755412892,0.0221439613427655,0.0239860534276777,0.0257808728520218,0.027881805835631,0.0301359983515351,0.0323396175793785,0.0347533052853554,0.0366390243397417,0.038729217014303,0.0404391126265671,0.0422590960699144,0.057243100441697,0.0717754427094235,0.0846707365682757,0.0976656151419558,0.109569251858491,0.1252869307663828,0.1377773533250565,0.150301817291416,0.1615481609711269,0.1730243038789634,0.187213135949318,0.1997315697756226,0.2116346865074185,0.2238355235083649,0.2342459417193454,0.2453236053976737,0.2558518717055302,0.2661176920567423,0.2756229857927466,0.2850219406285446,0.2931531260486698,0.3012104555289164,0.3088748300124165,0.3157611168314935,0.3225986574574234,0.3290963061498478,0.3350147068026785,0.3417283573736294,0.3477190891899593,0.3527843758247558,0.3544354892964304,0.3549874093542306,0.3564947032258972,0.3576969662014073,0.3581192395030945,0.3585950527008215,0.3588219485590527,0.3598779907837124,0.3607173356105892,0.3619781906444647,0.3627846722865779,0.3638723741577487,0.3640919811320754,0.3647461597369251,0.3657893463641202,0.3678206136900078,0.3692373853211009,0.3709401167216442,0.3729341402130445,0.3760338834059216,0.3761370945511348,0.3801564341583628,0.3831488708335999,0.3811676371437327,0.3829425113464448,0.3848539057841383,0.3875288683602771,0.3866450172518774,0.3834254143646409,0.3735032831208961,0.0,2.3913722408395333,61.54349467009922,210.08225060266184,321.9892820359076,fqhc8_80Compliance_baseline,46 -100000,95875,41403,387.22294654498046,7472,76.63102998696219,5747,59.222946544980445,2332,23.864406779661017,77.4394230829848,79.72172241077021,63.39129033748679,65.07843379441388,77.15469224218035,79.43776102586229,63.28598817120532,64.97645711056242,0.2847308408044569,283.96138490792566,0.1053021662814686,101.9766838514613,81.21674,56.88470405535306,84711.07170795307,59332.15546842562,220.31416,133.36750218757047,228935.9478487614,138248.42992184663,261.71509,124.57755860944413,268603.01434159064,126580.30011000574,4164.36652,1863.0918190113464,4296226.722294655,1895940.2023586405,1422.20034,616.4693314881117,1465568.4172099088,625171.0158937275,2302.64382,961.4695379074768,2358947.5462842244,966042.2385964209,0.3816,100000,0,369167,3850.503259452412,0,0.0,0,0.0,18345,190.59191655801823,0,0.0,24465,250.79530638852677,2094293,0,75164,0,0,3187,0,0,48,0.4797913950456323,0,0.0,0,0.0,0,0.0,0.07472,0.1958071278825995,0.3120985010706638,0.02332,0.3177368086458995,0.6822631913541004,25.373976375896145,4.6059531872891855,0.3316512963285192,0.198886375500261,0.2281190186184096,0.2413433095528101,11.065004528641252,5.490302326991433,24.76074969022092,13118.20289199984,64.64725454925318,13.433677606743124,21.448532820879343,14.720417255394672,15.044626866236024,0.5482860622933704,0.7681539807524059,0.7030430220356768,0.5873379099923722,0.1175198269646719,0.7110320284697509,0.907103825136612,0.8550106609808102,0.7266881028938906,0.1544401544401544,0.4956241363426992,0.7027027027027027,0.6534446764091858,0.544,0.1090425531914893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026827292974286,0.0049556123069439,0.0074356607391026,0.0097269745859943,0.0120849299196032,0.014326122789524,0.0163585434173669,0.0184618523051815,0.0206571043275714,0.0227909736287567,0.0246828828459599,0.0268922565486389,0.0291733031906694,0.0315408054022893,0.0335474293019371,0.0356243030027673,0.0377723520039727,0.0397173262043167,0.0419737962251614,0.0437663850859306,0.0573328746703359,0.0716173996635424,0.0850070158537351,0.0975684018226487,0.109671238933395,0.1252098444775268,0.1383145496144394,0.1511200374054238,0.1629724398955168,0.1742159905811837,0.187771470347912,0.2008299024216293,0.2139116451900302,0.2254158379051824,0.2369300811577627,0.2482177647892313,0.2587452344324794,0.2687873612297182,0.27819523307606,0.2876275218445491,0.295977907957526,0.3041588785046729,0.3119626278753474,0.3194254773712834,0.3261833331308984,0.3326474031174912,0.338760339886621,0.3445860034584477,0.3495367974329779,0.3544981216634811,0.3557706546761621,0.3564985424344095,0.3581526330611095,0.3591500433651344,0.3604017174013162,0.360634142605499,0.3613262994471112,0.3622962391450662,0.3635338153104651,0.3654069300390953,0.3672654316357909,0.3684356271139506,0.3704922844682992,0.3707121946859147,0.3717523891850358,0.3727464843851913,0.3725495774888326,0.3743018512707876,0.3763952552573568,0.3772485933909184,0.3791096357600836,0.3808865002926622,0.3835184250378596,0.3840208157955154,0.3828674652975851,0.3815805252428348,0.3801872074882995,0.3809130344970047,0.3867898124825077,0.3912045889101338,0.0,2.772992853336549,61.322249515952045,221.0567998474469,325.8581421973604,fqhc8_80Compliance_baseline,47 -100000,95742,41375,388.9202230995801,7304,75.07676881619352,5661,58.605418729502205,2257,23.239539595997577,77.34647984393533,79.69951451790844,63.33814763576003,65.07563931689434,77.07806361479541,79.42900797856343,63.2403750483717,64.97926856374218,0.2684162291399161,270.506539345007,0.0977725873883272,96.37075315215782,79.88882,56.00082467307367,83441.77059179879,58491.3879729624,220.21202,133.02354489243777,229499.09130789,138433.0230123015,258.61049,122.70020779177456,266688.78861941467,125556.96790033492,4103.31678,1824.821347537008,4251801.8946752725,1872130.2386923125,1362.64282,584.8489966419498,1412263.2178145433,599940.6707609739,2226.3927,916.8643245838562,2294728.917298573,931504.3687938928,0.38229,100000,0,363131,3792.807754172672,0,0.0,0,0.0,18309,190.7000062668421,0,0.0,24223,249.5665434187713,2097727,0,75260,0,0,3233,0,0,41,0.42823421278018,0,0.0,1,0.0104447368970775,0,0.0,0.07304,0.1910591435820973,0.3090087623220153,0.02257,0.3168638668573657,0.6831361331426342,25.45584088726697,4.605650990627058,0.3398692810457516,0.1953718424306659,0.2298180533474651,0.2349408231761172,11.204141386767796,5.656507555768579,23.840642289378923,13136.302217883596,63.51643664005807,12.976100259234414,21.64581866988093,14.36534524428824,14.529172466654488,0.5403638933050697,0.7549728752260397,0.682952182952183,0.5757109915449654,0.1210526315789473,0.706408345752608,0.9005847953216374,0.8706140350877193,0.7403508771929824,0.1235521235521235,0.4887705487381338,0.6897905759162304,0.6246594005449592,0.5295275590551181,0.1204481792717086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0044805319871463,0.0066063871890888,0.0090408565449706,0.0114507698252893,0.0137440951294999,0.0159836901121304,0.0184733463293154,0.0204536394394414,0.0221862746101788,0.0242929919330866,0.0261634471291031,0.0285402915715666,0.0302399835204449,0.0323658987030942,0.0344189604026915,0.0364442051643095,0.0384172467812717,0.0403326403326403,0.0424235480376635,0.0569817821161977,0.0717350804847926,0.0852829476069577,0.0984321931420279,0.1107467816588822,0.1261960394574078,0.1393491312557014,0.1519501942212525,0.1643803443895252,0.1763085694688558,0.1904700385418685,0.2040103394944895,0.2166456549145763,0.2292855113325902,0.2395844783994723,0.2510405596882749,0.2612593525941949,0.271107912374612,0.2805976583772009,0.2892009208250776,0.2979963907269446,0.3058807020826268,0.3136488997786537,0.3210881580682676,0.3272879667646559,0.3333990220590952,0.3386103671814381,0.3446493149289462,0.3502651952329698,0.3554941933438148,0.3573835908220766,0.3579398313956692,0.3587758268105211,0.359782309774349,0.3610664523043944,0.3607923161900085,0.3608448338694088,0.3617007294473287,0.3623538274521889,0.3625778063962224,0.3634247526796944,0.3645439239378033,0.3652995915617499,0.3650258485052821,0.365717462773158,0.367209668943773,0.3682425635867222,0.3700237154150197,0.3703847511471937,0.3723544182709554,0.3721697680814007,0.3756752420174359,0.3749289189359954,0.3761806035475696,0.3783063748810656,0.3819561551433389,0.3826262000619387,0.3824561403508772,0.3867497168742921,0.3856235107227959,0.0,2.0675310742483783,59.332985001592014,214.8550854587645,330.68588101115444,fqhc8_80Compliance_baseline,48 -100000,95739,41271,387.00007311544925,7244,74.44197244592068,5680,58.73259591180187,2335,23.97142230439006,77.41222784566315,79.77045315166511,63.350809200748486,65.0905787954518,77.12239330672475,79.47973227303139,63.24569060367633,64.9883735993851,0.2898345389384076,290.7208786337208,0.1051185970721562,102.20519606670564,80.76992,56.57973595734559,84364.69986108065,59097.89736402677,220.13967,132.64691209196576,229338.07539247329,137951.3281859699,255.49418,121.28088692670732,263547.0393465568,124062.31627456378,4134.31687,1843.645029910256,4279145.708645379,1886524.2690128947,1375.23842,593.9982860602875,1419986.7034332927,603992.5080425692,2311.12104,954.5979598497534,2375785.8552940805,964276.791864242,0.38028,100000,0,367136,3834.759084594575,0,0.0,0,0.0,18304,190.5806411180397,0,0.0,23958,246.9004272031252,2094602,0,75078,0,0,3138,0,0,40,0.4178025673967766,0,0.0,0,0.0,0,0.0,0.07244,0.1904912169980014,0.3223357261181667,0.02335,0.3118336185336317,0.6881663814663683,25.487593378785967,4.57818358054397,0.3163732394366197,0.2051056338028169,0.2376760563380281,0.2408450704225352,11.022118331475316,5.442019467221559,24.72521815207703,13105.515726224046,63.73293202715369,13.494535181998186,20.12602999897493,15.003825993667515,15.10854085251305,0.5369718309859155,0.7725321888412017,0.6789092932665554,0.5762962962962963,0.1111111111111111,0.7048940832724616,0.9423631123919308,0.852803738317757,0.7295597484276729,0.1485507246376811,0.4836464857341684,0.7004889975550123,0.6245434623813002,0.5290697674418605,0.1016483516483516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394774154344,0.0045304819338164,0.0069390902081727,0.0092412056219026,0.0113970251832572,0.0135898610474881,0.015726603746662,0.0176322932185057,0.0198671435871231,0.0222008413596863,0.0243607481424545,0.0266799433346336,0.0287858538089853,0.0309156256758287,0.0330812171741665,0.0353203849374114,0.0372571759930414,0.039156689008321,0.0410995934748027,0.0432119343278606,0.0577364794320317,0.0723292487678285,0.0856972011245856,0.0980474667564383,0.1100687995947999,0.1252817728672572,0.1391757501140959,0.1525634882606612,0.1645899677274573,0.1764630128459664,0.1909895535743162,0.2044002685203231,0.2170543479444003,0.228878597781938,0.2391967659143231,0.2501663561352142,0.2603846540683705,0.2703981080015766,0.2797788022619399,0.2887752645396494,0.296536069579719,0.3040134836195091,0.3110945414950528,0.3178942828389323,0.3252723761402145,0.3319737279885645,0.3385954817242501,0.3436185489712666,0.3483459803249867,0.3534097941877461,0.3551541199382177,0.3562172253795678,0.3575956929391754,0.3583738336626238,0.3590384985420582,0.3586488878039849,0.3587037124690365,0.3599293390254673,0.361620599805855,0.3624227969314561,0.3624768911878396,0.3628179113886645,0.3639904510616911,0.36417283233118,0.3647968400009634,0.365133209821778,0.3659726183685111,0.3674560493128282,0.3708367038300566,0.3728174603174603,0.3738496583143508,0.3768046454637472,0.378868258178603,0.3848973047262732,0.3856834599868655,0.3824649060195099,0.3857448761089018,0.3857056084227576,0.3871412803532009,0.3861271676300578,0.0,2.305591146131509,60.46644779288145,215.76035102483783,326.3069668242608,fqhc8_80Compliance_baseline,49 -100000,95734,41660,391.1358555998914,7282,74.79056552530972,5636,58.31783901226315,2303,23.66975160340109,77.32373385663094,79.69395025171559,63.321321634088775,65.07515447655881,77.04405089313066,79.41414070953603,63.21939859756228,64.97561888027633,0.279682963500278,279.80954217956366,0.1019230365265002,99.53559628247888,81.58876,57.14102115815857,85224.43437023419,59687.28054626212,221.00746,133.45732265874744,230281.61363778805,138830.17177325737,257.02394,122.34168082171364,265419.0778615748,125330.62417953764,4074.90329,1815.4696408094835,4219425.460129107,1859311.0780287147,1372.61654,593.741066029335,1419005.4212714396,605454.4305168289,2271.20684,937.282188576182,2336932.3542315164,948939.488543414,0.38516,100000,0,370858,3873.837925919736,0,0.0,0,0.0,18408,191.687383792592,0,0.0,24059,248.2399147638248,2089403,0,75002,0,0,3299,0,0,47,0.490943656381223,0,0.0,1,0.0104456097102387,0,0.0,0.07282,0.1890642849724789,0.3162592694314748,0.02303,0.3167213114754098,0.6832786885245902,25.43095622944531,4.605979251828852,0.3333924769339957,0.1965933286018452,0.2336763662171753,0.2363378282469836,11.1125416673682,5.527828848837296,24.45320570680709,13238.7332904027,63.28811431960391,12.976370284757454,21.10118658701977,14.741356096917093,14.469201350909596,0.5361958836053939,0.7644404332129964,0.6838744012772752,0.5649202733485194,0.1096096096096096,0.717741935483871,0.923512747875354,0.8772727272727273,0.7278688524590164,0.169172932330827,0.4782303370786517,0.6900662251655629,0.6247394023627519,0.5158102766798419,0.0947467166979362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0047359720912308,0.006973203410475,0.009155945775664,0.011506999837213,0.0135786246167323,0.0157773426345204,0.0177810913770388,0.019878723426012,0.0223360131087101,0.0244792895160546,0.0266919995891958,0.0289694051807501,0.0312026627371371,0.0332875736713355,0.035448089069914,0.0371490414988038,0.0392169068442839,0.0412871698897899,0.0432404271945819,0.0576443196174446,0.0720468032109179,0.0853264518294729,0.0983391010739568,0.1107349994727407,0.126122125297383,0.1400564384375464,0.1535244985902005,0.1657927057190153,0.1768370487127523,0.1902782563749138,0.204091568037735,0.217040017398869,0.2285261316422479,0.2401813021188585,0.2514728682170543,0.2614964317573595,0.2709929667662854,0.2804141012121418,0.2901656978074793,0.2991228779771879,0.3072446833372283,0.3151497954647561,0.323418782942022,0.3299897993879633,0.3364967462039046,0.3430621290661859,0.3485963929080904,0.3540342868999144,0.3590644356106129,0.3605220228384992,0.3612919240953222,0.3623335733547941,0.3635467551857596,0.3642379171075575,0.3648748272154815,0.3642058520339386,0.36514304505097,0.3662231950477102,0.3663148479427549,0.368088586414995,0.3694348464990666,0.3703961523857739,0.3714852198990627,0.372960259922896,0.3749309046879524,0.3751259826647853,0.376503149456003,0.3780635078496839,0.3798671230118784,0.3816112165101106,0.3834423836046071,0.3846548298186014,0.3867069486404834,0.3886674259681093,0.3915604712671315,0.3979387786494385,0.390462604442633,0.3977304179352339,0.3982886036561649,0.0,2.067061075213668,60.29976132694964,210.5667173333852,329.1533788554554,fqhc8_80Compliance_baseline,50 -100000,95773,41274,387.6144633665021,7300,74.95849560940975,5708,58.95189667233981,2335,23.99423637141992,77.38153749659537,79.72555142685927,63.350937847410606,65.08417766267056,77.09564867896138,79.43838908989004,63.24639288294829,64.98175540368688,0.2858888176339889,287.16233696923155,0.1045449644623133,102.42225898367964,81.2658,56.904008027293386,84852.51584475792,59415.501265798695,220.72119,133.3054247002172,229807.56580664695,138533.6521777716,259.1337,123.05382773004212,266772.1174026083,125558.9203446997,4135.6448,1848.3454124265045,4274942.09223894,1886977.003912285,1401.9196,604.1853771358775,1446141.7309680183,613322.925743478,2305.89328,957.082223050824,2371558.706524804,967727.2219913604,0.38064,100000,0,369390,3856.932538398087,0,0.0,0,0.0,18411,191.55711943867271,0,0.0,24284,249.6945903333925,2092017,0,75110,0,0,3194,0,0,43,0.4489783133033319,0,0.0,0,0.0,0,0.0,0.073,0.1917822614543926,0.3198630136986301,0.02335,0.3097506852891267,0.6902493147108733,25.28662527226165,4.5762674661068505,0.3181499649614576,0.2105816398037841,0.2293272599859845,0.2419411352487736,10.85246062753336,5.296932003675064,24.7692084639383,13057.137065027551,64.22881840995736,14.177221978342496,20.26399997280741,14.635179668048506,15.15241679075893,0.5394183601962158,0.7770382695507487,0.6762114537444934,0.5798319327731093,0.114409847936278,0.6997167138810199,0.914572864321608,0.8628318584070797,0.7266187050359713,0.1126760563380281,0.486731843575419,0.7089552238805971,0.6143695014662757,0.5402521823472357,0.1148587055606198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205473070145,0.0048452166156466,0.0068889249624609,0.0091912698170886,0.0110722492221973,0.0132333031342569,0.0152790801973335,0.0176058134906459,0.0196611416542336,0.0218552397323347,0.0238148914803352,0.0258052595922892,0.0278945907319631,0.0299517107173378,0.0321918514698298,0.0343854936198791,0.0362908232956662,0.0381573355171091,0.0403785423418931,0.0423538230884557,0.0571863879699875,0.0706904846570585,0.0834818526827836,0.096559623386995,0.1090995310606459,0.1243209537297343,0.1373598423027194,0.1498787956111253,0.1624122254711544,0.1741698287135292,0.188034188034188,0.2013064967932425,0.2132531953743152,0.2250890651979105,0.2366024287222808,0.2472571877733125,0.2585191793041926,0.2691248384014389,0.2789131075778538,0.2872901623774159,0.2959737210405172,0.3040773611159832,0.3123735132256346,0.3189373150067706,0.3252918382469055,0.3323107628622117,0.3389277272670427,0.3442641725520137,0.3495926535158729,0.3551362406808735,0.3556707974137931,0.35598353546895,0.3572859077061943,0.3582022601976588,0.3596045912670647,0.3597171952640942,0.3596673267326732,0.3610390463367377,0.3622255608290368,0.3636022648114741,0.3647434093254527,0.3657971358963693,0.3658715981927077,0.367120762521356,0.3675380790305839,0.3679136539872157,0.3697250593654336,0.3711782134526886,0.3729720218194615,0.3739244741873805,0.374000091420213,0.3778371161548731,0.3788167938931298,0.3773279975373249,0.3765813754399315,0.3781070745697896,0.381354630625096,0.3857433808553971,0.3893087041701651,0.3895348837209302,0.0,2.486077583666358,62.133898536993165,214.22462760719725,327.2566568910274,fqhc8_80Compliance_baseline,51 -100000,95853,41391,388.2298936913816,7309,75.02112609933963,5679,58.631446068459,2314,23.7133944686134,77.37299817448195,79.67412688571021,63.35320242165369,65.05695654467598,77.09969971414856,79.40396372873562,63.253473237375424,64.96179592723293,0.2732984603333932,270.1631569745899,0.0997291842782672,95.1606174430566,80.9226,56.66486087883957,84423.64871209038,59116.41876502516,221.22784,134.04583231916058,230144.3355972166,139190.47115808638,262.58143,125.09480911052502,270580.13833682827,127831.31613462546,4091.2697,1822.4514220229469,4225430.941128603,1858454.1350014573,1405.86053,612.5341981938379,1446799.3385705194,619150.4055103519,2281.5474,932.1464806604243,2340109.5636026,936228.651945068,0.38163,100000,0,367830,3837.4385778222895,0,0.0,0,0.0,18399,191.272051996286,0,0.0,24529,252.511658477043,2091620,0,75092,0,0,3121,0,0,48,0.5007667991612157,0,0.0,0,0.0,0,0.0,0.07309,0.1915205827634095,0.31659597756191,0.02314,0.3088692946058091,0.6911307053941909,25.5430530630232,4.576382736864164,0.3282268004930445,0.1995069554499031,0.238950519457651,0.2333157245994013,11.077711793230256,5.555638411291603,24.38541040396101,13158.439224721023,63.77426408656038,13.364389761714667,20.93192780805137,14.932804551239506,14.545141965554842,0.5458707518929389,0.7678729037952339,0.6968884120171673,0.5740604274134119,0.1147169811320754,0.7324464153732446,0.925531914893617,0.8587443946188341,0.7801418439716312,0.1606425702811245,0.4875173370319001,0.6895640686922061,0.6459802538787024,0.52,0.104089219330855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0048445782277762,0.0073744966170637,0.0096968096988404,0.0118333570542667,0.0140268729641693,0.0161752265245176,0.0182775617671371,0.0203639559002339,0.022469150960771,0.0246196403872752,0.0268090738403767,0.0287549457890139,0.0305915533550864,0.0325869569699593,0.0345333250717723,0.0366147638508095,0.0386109988497528,0.0407908947412145,0.0428241463262375,0.0578611499238806,0.0713016762111775,0.0850069669254381,0.097696984972118,0.1107588937801461,0.1258490107638192,0.139676821192053,0.1530038378533536,0.1650265758746558,0.1761510355837949,0.1904392931706162,0.2033832351510565,0.2153834449178332,0.2273403161968905,0.2381706941326642,0.2493852595201701,0.2600386035769673,0.2698898477671388,0.2793338551770298,0.288629103358256,0.2972185277279824,0.3048799035952874,0.3122373358904239,0.3197099538562953,0.3260822037603847,0.3331566948055949,0.3398329388486055,0.3465131076609824,0.3520916979665846,0.3580333324529199,0.3597816564458521,0.3604971614396737,0.3608098949508641,0.3617825539125523,0.362833834519308,0.3627995458869013,0.3624648881976735,0.3630949443100867,0.3640673672679971,0.3651157378399183,0.3662048509424044,0.3668674221412156,0.3675599613559037,0.3683963108882521,0.3688059270662946,0.3687891440501044,0.3692298886758435,0.3728958089884092,0.3729931900779789,0.3748459183267724,0.377206551410373,0.3787451439518918,0.3801658122903614,0.3838888035632007,0.3854929175777165,0.3868058851447555,0.390032502708559,0.3889809444904722,0.3850914205344585,0.3881172839506173,0.0,2.416545959001535,59.30189352275987,221.1785233683194,323.92665745592296,fqhc8_80Compliance_baseline,52 -100000,95793,41346,388.69228440491474,7382,75.882371363252,5750,59.4615472946875,2361,24.21888864530811,77.39816222968327,79.72696420815802,63.35848721039546,65.0794593299779,77.10764205911588,79.43593821892605,63.2525981899206,64.9758659040909,0.2905201705673903,291.02598923196865,0.1058890204748621,103.5934258869986,80.9435,56.6684402638444,84498.34539058177,59157.18295057509,222.09186,133.68783079705202,231301.222427526,139015.65908645742,256.2561,121.47735420408628,264094.7355234725,124161.67362178644,4184.90469,1861.7843546219108,4330452.83058261,1905545.616478365,1393.56087,602.3023011403351,1439498.3349514056,613601.9403210117,2335.96928,965.4299591210188,2399427.619972232,975469.5065293903,0.38105,100000,0,367925,3840.833881390081,0,0.0,0,0.0,18472,192.2583069744136,0,0.0,23968,246.7403672502166,2093909,0,75148,0,0,3188,0,0,39,0.4071278694685415,0,0.0,1,0.010439176140219,0,0.0,0.07382,0.1937278572365831,0.3198320238417773,0.02361,0.3168253151530743,0.6831746848469257,25.45955916297015,4.614269114770891,0.3375652173913043,0.1987826086956521,0.2198260869565217,0.2438260869565217,11.221547716863014,5.556726926213224,25.10027828662308,13094.80796676485,64.61587435330254,13.390155744576484,21.910637540576666,13.8818969248361,15.433184143313312,0.5328695652173913,0.7611548556430446,0.6883049974240082,0.5474683544303798,0.1184022824536376,0.6743682310469314,0.8885714285714286,0.8471615720524017,0.6655172413793103,0.1463414634146341,0.4879725085910653,0.7049180327868853,0.6392447741065408,0.5123203285420944,0.1112107623318385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0046821793416572,0.0068274966521933,0.0090177918596149,0.0114268286484013,0.0138823864677265,0.0161308401691547,0.0179773905236093,0.0201166746697453,0.0222222222222222,0.0243727525125756,0.0260438579388615,0.0281277619057406,0.0302493850286643,0.0324140419609258,0.0344022721404595,0.0366523560751047,0.0383347158855246,0.0403832564326391,0.0420593350064041,0.0562726295689556,0.0698739737488887,0.0836740684825229,0.0966033294097864,0.1095064409352533,0.1254386706693163,0.1385223994569828,0.1512578214787383,0.1629034669856663,0.1747447885390752,0.1893679120311036,0.20229932296511,0.2142282870863301,0.2254981211220833,0.2366116074862901,0.2483512592395874,0.2595367923371134,0.2697234499589505,0.2792425858274148,0.2880967653257583,0.2962217673385838,0.3043646014801997,0.312328345487262,0.319780891536516,0.3270183619935878,0.3332799487508007,0.3394253261780563,0.3456395903568475,0.3511404872991187,0.356804163199535,0.3578209277238403,0.3585617853698856,0.3588875248698303,0.3588860759493671,0.3599375650364204,0.3594655061448404,0.3592682424184778,0.3604838444597837,0.361315744389241,0.3615143649870223,0.3634468772298794,0.3652220502440766,0.3666372314032211,0.3671490009855748,0.368061568061568,0.3688363949933366,0.3694050024186893,0.3709641925241284,0.3717769058295964,0.3740185581727338,0.3776559287183002,0.3779652921509314,0.3803904337455276,0.3810397553516819,0.3838651642836853,0.3861147876308506,0.3888204496458269,0.3966011466011466,0.3999441808540329,0.3928984947896565,0.0,2.1852438292941607,61.28244137875466,220.44523437057072,329.2628838721861,fqhc8_80Compliance_baseline,53 -100000,95884,41490,389.0430103041175,7456,76.54040298694255,5748,59.43640231946936,2337,24.0811814275583,77.3584022892406,79.64018038572381,63.35300198276878,65.04141106856663,77.0726194723913,79.35312216332083,63.248330765664754,64.93847254935392,0.2857828168493057,287.05822240297607,0.1046712171040269,102.93851921271369,80.02742,56.10035449027207,83462.74665220475,58508.56711262783,221.71804,133.75943452558397,230710.00375453677,138978.1138519475,260.15615,123.45325103795102,267932.3453339452,126142.3138289617,4180.02563,1876.2830688981448,4326369.592424179,1923944.9271419584,1386.43777,603.1137157152074,1433656.105293897,616748.9842857383,2310.31334,961.1393835387914,2382146.093195945,977968.9564428334,0.38226,100000,0,363761,3793.761211463852,0,0.0,0,0.0,18496,192.3574318968754,0,0.0,24376,250.82391222727463,2094708,0,75243,0,0,3232,0,0,33,0.3441658670893996,0,0.0,0,0.0,0,0.0,0.07456,0.1950504891958352,0.3134388412017167,0.02337,0.3157491378209222,0.6842508621790778,25.322539552649264,4.576782692435896,0.3227209464161447,0.2032011134307585,0.2345163535142658,0.2395615866388309,10.91113094476407,5.4048149590237085,24.94358305432369,13127.25162710928,65.02534525320173,13.78400808391062,20.980022548887565,14.973118223421457,15.288196396982096,0.546624913013222,0.7748287671232876,0.7040431266846361,0.5689910979228486,0.1190994916485112,0.6962649753347427,0.9093333333333332,0.8246753246753247,0.7541528239202658,0.1387900355871886,0.4975744975744975,0.7112232030264817,0.6640344580043073,0.5157593123209169,0.1140510948905109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464224604886,0.0043975641142556,0.0063798926879735,0.0088639340433957,0.0111506403740597,0.0131794542993517,0.0154957414727576,0.0177061553368351,0.019878909161451,0.02210204561486,0.0241383193260106,0.0262451046728588,0.0281920138033029,0.0302943022023803,0.0324721497985304,0.0343816466021021,0.0365056377366297,0.0386787857431571,0.0408440904323263,0.0428110694964627,0.0573879865729833,0.0719106523465251,0.0848849142354493,0.097296162125269,0.1092607807200488,0.1252852193019521,0.1392783341281195,0.1520809850917675,0.1646208692682093,0.1765304919227759,0.1913965758587272,0.2044717030114226,0.2165873067640727,0.2284265069196965,0.2386282422016734,0.2498644326645344,0.2608079771571339,0.2705568800323872,0.2801284451555071,0.2886349832109008,0.2970084975340943,0.3047274599997659,0.3125518450927879,0.3198243066473052,0.3263175823641053,0.3324198207540182,0.3386957230449011,0.3448741981968196,0.3513222152950956,0.3568809646719347,0.3577418004563928,0.3585356093118247,0.3594581997429414,0.3599675287023078,0.3612039136141272,0.3610935986345394,0.3602544731610338,0.3608636843494325,0.3609222634253536,0.3621959744053913,0.363287423797697,0.3645245849551195,0.3655150621445123,0.3659528571107566,0.36715992069249,0.3687705903885374,0.3685564799725534,0.3709321392532795,0.3727112676056338,0.3743573392850026,0.3760765988638446,0.3795950985615343,0.3836450079239302,0.3826100409994585,0.385219975079076,0.3922162948593598,0.3905511811023622,0.3900020656889073,0.388047138047138,0.4025771183131589,0.0,1.9565839838129888,63.13090867309768,217.5688442993589,332.0174995976348,fqhc8_80Compliance_baseline,54 -100000,95736,41381,389.2475139968246,7230,74.33985125762513,5611,58.06593131110554,2250,23.126096766106794,77.38965647392791,79.75594379274845,63.34469261111818,65.0935935320381,77.11581726974276,79.48132346967381,63.24501951900403,64.99581945011671,0.2738392041851512,274.6203230746431,0.0996730921141519,97.77408192138635,81.41452,57.01259514025134,85040.65346369182,59551.88762874085,221.32642,133.81622336439713,230621.20832288795,139213.8124351412,261.70499,125.02230515839685,269908.393916604,127831.01438464296,4010.09869,1793.36593060084,4154158.832623047,1838748.4373763332,1353.78245,587.6684325099725,1398307.1780730342,598179.3553791952,2208.92576,904.7014744513084,2273075.2277095346,917180.7932615532,0.3817,100000,0,370066,3865.484248349628,0,0.0,0,0.0,18523,192.87415392328904,0,0.0,24461,252.04729673268156,2089217,0,74965,0,0,3211,0,0,48,0.5013787916771121,0,0.0,1,0.0104453914932731,0,0.0,0.0723,0.1894157715483364,0.3112033195020747,0.0225,0.3217437113130515,0.6782562886869485,25.369666110069307,4.53630367063443,0.3275708429869898,0.2158260559615042,0.2266975583674924,0.2299055426840135,11.399992426778738,5.868943347400771,23.652413052229036,13135.816856030617,63.04189827600912,14.267477578582604,20.841475767454597,13.973701056543849,13.959243873428074,0.5619319194439494,0.7630057803468208,0.7334058759521219,0.5794025157232704,0.1116279069767441,0.7384083044982699,0.9312039312039312,0.8709677419354839,0.7672727272727272,0.1685393258426966,0.500720115218435,0.677860696517413,0.6825633383010432,0.5275827482447342,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498906085406,0.004450391816956,0.0066978556713585,0.0088993640408801,0.0109961650747149,0.0133090301820699,0.0154464167371866,0.0179152928206122,0.0198707989205985,0.0222431494579959,0.0242624900059451,0.0263638790218261,0.0285790653206406,0.0309430154251704,0.0329850546140913,0.0350554458924566,0.0370071239231278,0.0386442858328492,0.0403766407882019,0.0422175684264266,0.0574110228328617,0.0716722835074205,0.0853869637742737,0.0983178867861012,0.1108239538391755,0.1270213958604351,0.140823254827074,0.1536112204829149,0.1660010251591132,0.1773493045650985,0.1906797454588524,0.2034684957590445,0.2150142443946676,0.2264505828576427,0.2376210387323943,0.2494379782721846,0.2601606067365603,0.2706675657451112,0.2800235857079681,0.2890277253326925,0.2975760939957443,0.3052230431123164,0.3131849294825568,0.3194645657978233,0.326647564469914,0.3326597750150935,0.3387270360915052,0.344845137810806,0.3503845257515731,0.355518902157419,0.356899592122444,0.3577149620169547,0.3582856820934622,0.3600439395253375,0.3605569409808811,0.3602950177500306,0.3604174903139084,0.3615424939387982,0.3617238562091503,0.3629827371418402,0.3644947007015972,0.3660950128129312,0.3671674223271557,0.3685631414547077,0.3684551518932668,0.3692956866013753,0.3712528823981553,0.3735433070866141,0.373205910357231,0.3755551110222044,0.376840942562592,0.377566970301299,0.382313618132043,0.3812428516965307,0.3805193587700384,0.3827541216937493,0.3908799755985969,0.3954756614825288,0.3905309250136836,0.3909716908951798,0.0,1.993828053697016,64.06129855459325,204.42846052674145,317.8471945500808,fqhc8_80Compliance_baseline,55 -100000,95767,41002,384.7985214113421,7243,74.47241742980358,5605,57.99492518299624,2287,23.525849196487307,77.34687979821054,79.70584753414688,63.33382307926016,65.08116555319572,77.07326612597984,79.43179802665374,63.23426843070388,64.98378572580242,0.2736136722306952,274.04950749314594,0.0995546485562783,97.37982739329708,80.59326,56.37487360856746,84155.33534516065,58866.47823213365,216.68145,130.9897910370323,225708.41730449945,136229.54017253575,251.23159,119.16642095338872,259340.6810279115,122059.5136904498,4086.65867,1820.7606991157409,4229962.774233295,1864342.726453113,1362.13807,588.7111353614328,1408177.3575448743,600898.8081142902,2248.54564,922.4904716154948,2315508.5572274374,936055.2261933254,0.37983,100000,0,366333,3825.24251568912,0,0.0,0,0.0,18102,188.4574018189982,0,0.0,23528,242.68276128520264,2099171,0,75365,0,0,3143,0,0,45,0.4594484530161747,0,0.0,0,0.0,0,0.0,0.07243,0.1906905720980438,0.315753140963689,0.02287,0.3081052769412072,0.6918947230587927,25.077300702306008,4.642213676727979,0.3329170383586083,0.1950044603033006,0.2383586083853702,0.2337198929527207,11.334625712829352,5.696402220329782,24.262240594631415,13058.520537162309,63.10449902777143,12.873507740411537,20.97829660425189,14.96393622934803,14.288758453759955,0.552720785013381,0.7758462946020128,0.7009646302250804,0.592814371257485,0.1145038167938931,0.7237128353879623,0.9131736526946108,0.8676789587852495,0.759375,0.1893939393939394,0.4969238050165641,0.7154150197628458,0.6462633451957296,0.5403543307086615,0.0956022944550669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989380244011,0.0045633391473654,0.0067918781725888,0.0089941766517271,0.0112720761780743,0.0132685688682511,0.0152411051075542,0.0173029808084932,0.0196274866594426,0.0217573821517794,0.0241446835559838,0.0261928475352438,0.0283522382534116,0.0303167653875869,0.0321688425615356,0.0344228741549339,0.0365434399917158,0.0385281699637955,0.0406340956340956,0.0425175203840426,0.0575102547777348,0.0719799991631449,0.0856094364351245,0.097546876313798,0.1089950993307688,0.1248071517636367,0.1380633399754101,0.1507213404067573,0.1624870665287096,0.1736587873659858,0.1878885662041518,0.2011389300109138,0.2139039756680426,0.2255440420165314,0.2360636650226825,0.2478510504131957,0.2585766687850509,0.2681775259678942,0.2777771473315101,0.2867156896433235,0.2953953687523868,0.3036802995728746,0.3112836782044604,0.3178188619523775,0.3244939836569167,0.3306909243097527,0.3369791014891753,0.3429516539440203,0.3486447635944521,0.3539281380256424,0.3548625977837918,0.3559172656917018,0.356965699952087,0.3582661232041164,0.3602770676021166,0.3598945319086965,0.3593353627600203,0.3606759691963404,0.3623352165725047,0.3627889501180849,0.3652293130000376,0.3669244497323022,0.3684487144448882,0.3685889515422461,0.3700435203094777,0.3711838579160317,0.3717190282005628,0.3731580284552845,0.3736601931444338,0.3756755674766804,0.3788688282977155,0.3785247131982416,0.3795035009548058,0.3798955613577023,0.3824167531364965,0.3858436606291706,0.3872511189998456,0.3889806025588114,0.3914027149321267,0.3895116092874299,0.0,1.947538952223571,61.37019155120532,209.30416917515387,324.1019909693502,fqhc8_80Compliance_baseline,56 -100000,95749,41216,386.8238832781544,7283,74.86240065170394,5646,58.350478856176046,2338,24.01069462866453,77.36211040614715,79.72313726474002,63.32787542470121,65.07524514808186,77.07674097802261,79.43850907173784,63.22357211856485,64.97404677637793,0.2853694281245396,284.62819300217745,0.1043033061363587,101.19837170392998,80.53518,56.40938216031469,84110.72700498177,58913.80814453905,217.86085,131.17131084910432,226876.65667526555,136341.4427596339,253.36758,119.8788351239726,260872.83418103584,122340.39948864172,4128.2839,1836.7126005066584,4268579.661406386,1875552.2791364235,1409.65218,611.099151238614,1451154.4768091573,617647.9130503623,2315.10062,953.1077943523502,2379242.58216796,962157.101919398,0.38031,100000,0,366069,3823.214863862808,0,0.0,0,0.0,18163,189.004584904281,0,0.0,23686,243.5639014506679,2096479,0,75222,0,0,3233,0,0,34,0.3550950923769439,0,0.0,0,0.0,0,0.0,0.07283,0.1915016696905156,0.3210215570506659,0.02338,0.3148730034040324,0.6851269965959675,25.58253256352373,4.606960839283243,0.3289054197662062,0.1987247608926673,0.2233439603258944,0.249025859015232,10.972648877311723,5.385785350868174,24.614963975593152,13147.095550370384,63.119957558688526,12.85683786498811,20.84462318540763,14.157488177704929,15.261008330587838,0.5441020191285866,0.7513368983957219,0.7016693591814755,0.5971451229183188,0.1230440967283072,0.6979010494752623,0.9177215189873418,0.8669623059866962,0.7118055555555556,0.1612903225806451,0.4965213358070501,0.6861042183622829,0.6486486486486487,0.5632065775950668,0.1135758651286601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299828779267,0.0047761981057456,0.0070449700538016,0.0094699086539927,0.0114948374955495,0.0137695034016376,0.0159484428854037,0.0179898717634566,0.0199588961258064,0.0225382976980421,0.0244175075888095,0.0265217659264128,0.0286619616880311,0.0304095134065662,0.0324691408991454,0.0347479968984233,0.036770492482293,0.0386897968500342,0.0407792018793983,0.0427790219259413,0.0567008695107566,0.0707642412512423,0.0843269886214671,0.097068691691997,0.1095851397107686,0.1250330509460502,0.1386879124143345,0.1515187002949036,0.1637550619183468,0.1752595007291756,0.1895155209926541,0.2024047879306053,0.2151762402088773,0.2271230568956275,0.238382459770621,0.2506953910258541,0.2621661770783304,0.2721625119576839,0.2809942682027126,0.2903052105769671,0.298721600778156,0.3066192304091377,0.314073267186057,0.3203781008588839,0.3268529769137303,0.3336827565794342,0.3395850560024054,0.3451481844696053,0.350232624444358,0.354974181534845,0.356654484646609,0.3580927444360229,0.358445879268052,0.3599103009259259,0.3608764205390611,0.3611238919051562,0.3611031814000698,0.3628010191501603,0.3642470131779103,0.3653180016426811,0.3657983082953543,0.3667602514927439,0.3683514823440549,0.3698344793603154,0.3723468330643024,0.3721683693465367,0.3719310266072856,0.373007874015748,0.3749297160528535,0.3762812872467223,0.3793590737110817,0.3790630975143403,0.3817251831270523,0.3832080771274577,0.3847958704833411,0.3906771578445398,0.3867996930161166,0.3901652559451834,0.3887061403508772,0.3954669792887846,0.0,2.3167879136809204,58.72033630756399,209.89242822964735,333.5532607697703,fqhc8_80Compliance_baseline,57 -100000,95753,41347,387.1210301504914,7286,74.88016041272859,5673,58.58824266602613,2346,24.03057867638612,77.32840490063373,79.68929209652323,63.31625382636724,65.06498783255687,77.0375067708943,79.40033926592628,63.2088346957162,64.96142487550972,0.2908981297394319,288.95283059695487,0.1074191306510385,103.56295704714567,81.88686,57.37260118416904,85518.84536254738,59917.28842351575,221.41213,134.06079474967862,230586.85367560285,139362.065841347,257.06442,122.7423129141806,264777.6884275166,125280.7530188784,4114.56797,1840.059208006292,4253376.677493134,1878060.871651486,1376.41614,596.5359196908145,1421857.0593088467,607451.9256365917,2310.99482,963.6507553140634,2370325.399726379,968234.5317670238,0.38184,100000,0,372213,3887.220243752154,0,0.0,0,0.0,18414,191.62846072707904,0,0.0,24072,247.7729157310998,2085214,0,74822,0,0,3239,0,0,37,0.3759673326162104,0,0.0,3,0.0313306110513508,0,0.0,0.07286,0.190812905929185,0.3219873730441943,0.02346,0.3051268637195919,0.694873136280408,25.42818280266036,4.544375791957427,0.3289264939185616,0.2037722545390446,0.228803102414948,0.2384981491274458,11.072307338338144,5.598704236070643,24.93093148022272,13177.085624943456,63.75886705840552,13.492388564584996,21.05820710951333,14.346876885557432,14.86139449874974,0.5457429931253305,0.777681660899654,0.687566988210075,0.5824345146379045,0.1167775314116777,0.7109826589595376,0.9361111111111112,0.8451612903225807,0.7517241379310344,0.1338289962825278,0.4924224761016554,0.7060301507537688,0.635260528194147,0.5337301587301587,0.1125461254612546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.004421996389379,0.007056410672948,0.0092278298339397,0.0115257064963072,0.0139850880052151,0.0163974547234459,0.0184587740433699,0.0207221574761291,0.0229799168833295,0.0250630420075035,0.0271066709106403,0.0292166723228334,0.0313327221976165,0.0333828658700183,0.0353502987203605,0.0372954340782759,0.0394495317701473,0.0415346087101098,0.0438364439260123,0.0583065425243204,0.0726896205497217,0.0854060062075329,0.0983139571551706,0.1103722983866718,0.1261878336240156,0.1392588978916557,0.1519647494571927,0.1650375498082449,0.1771002027005287,0.1908209437621202,0.2041600380940012,0.2168755985026551,0.2289305561633046,0.2396776111514831,0.2509030470914127,0.2619568615192247,0.2716177265357593,0.2808436211654874,0.2899080675852266,0.2988423246121787,0.3066715036335763,0.3145686734427938,0.3215636368002113,0.3284150346673154,0.335159411706643,0.3405109672238117,0.3462235033033186,0.3513625800085688,0.3556924541272275,0.3565759637188209,0.3575013789299504,0.3584452636187732,0.3590085133491631,0.3596935733873852,0.359489584134061,0.3596998791886564,0.3605978619506401,0.3618361218361218,0.3624517634389302,0.3642180942164003,0.3656953432053674,0.3663634644875323,0.3675557754587981,0.3679523786478246,0.3694227441933623,0.3703066781312697,0.3718823009408347,0.3747050329306519,0.3746958637469586,0.375177078097153,0.3777506112469437,0.3805209513023782,0.3812714122573277,0.3847967556351976,0.38698224852071,0.3927529556272071,0.3951430335459971,0.3917525773195876,0.3973196689002759,0.0,2.5123840352129454,60.58118482661518,212.08782119265328,330.35291625457387,fqhc8_80Compliance_baseline,58 -100000,95734,41121,386.44577683999415,7211,74.11160089414419,5600,57.96268828211503,2244,23.043015020786765,77.31464774318667,79.68036256572589,63.30648041847581,65.05585417779493,77.04503602801618,79.4115749555831,63.20645876790267,64.95890633149536,0.269611715170484,268.7876101427804,0.1000216505731401,96.94784629957098,80.0569,56.072536788350895,83624.31320116155,58571.18347541197,217.5936,131.41625531919593,226743.35136941943,136725.86052937928,254.4427,121.34148983656084,262748.4174901289,124337.89010526576,4022.92646,1797.454178283025,4163326.623770029,1839161.2699754091,1346.87349,583.8286065280448,1391807.8843462092,594940.8749363228,2211.64878,922.9380781393864,2272800.3635072177,931823.3824409049,0.37962,100000,0,363895,3801.105145507344,0,0.0,0,0.0,18054,188.0314203940084,0,0.0,23777,245.31514404495792,2095840,0,75176,0,0,3140,0,0,54,0.5640629243528945,0,0.0,0,0.0,0,0.0,0.07211,0.1899531110057425,0.311191235612259,0.02244,0.3185584637643036,0.6814415362356965,25.400956189938213,4.595611120428377,0.3325,0.2007142857142857,0.2383928571428571,0.2283928571428571,11.02767094855682,5.491846071891823,23.877808738169374,13083.791761235374,62.84330181825851,13.073005493811625,20.95467279356693,14.78817589380558,14.027447637074376,0.5525,0.7775800711743772,0.6933404940923737,0.5827715355805243,0.1180609851446442,0.7205014749262537,0.9415384615384615,0.888402625820569,0.7348993288590604,0.1666666666666666,0.4988218661639962,0.7108886107634543,0.6298932384341637,0.5390549662487946,0.1046859421734795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488983437167,0.0044914884772536,0.0066992833796869,0.0090437963621583,0.0111297624497685,0.0134377929010962,0.0154150641189132,0.017520573400584,0.0197084619630773,0.0217231071618688,0.0237355561707319,0.0257310662066699,0.0277520623752802,0.0299942298973746,0.0321012376007679,0.0342489119535215,0.0362841846931273,0.0383936909826709,0.0401676163540323,0.0422973944388302,0.0567046368125959,0.0710682213058131,0.0839532077847138,0.0970971813209928,0.1098467671345559,0.1253636604072996,0.1389950324799388,0.1524201963414893,0.1636289779469144,0.1750496324515748,0.189351537308443,0.2029169240104454,0.2154444529181692,0.2263212117226715,0.2369773288637967,0.2478456891573757,0.2587790444014364,0.2693071317374726,0.2776886583159835,0.286480772986822,0.2951861732977612,0.3031826973799894,0.3111472182359429,0.3187358157518702,0.3258156338953361,0.332601021944657,0.3390316601542931,0.3450984886104639,0.3505393610546354,0.3551157728082327,0.356525136052589,0.3577504335618135,0.35790629884669,0.3587872306602887,0.3602940082429436,0.3602098577937319,0.3603147657501864,0.3613360990385881,0.3621079691516709,0.3627286067069897,0.3632401562969642,0.3641818829959995,0.365114622186832,0.3659022261997986,0.3678722789443267,0.3698333637572691,0.371028171028171,0.3744211686879823,0.3764056789429294,0.3761745500875935,0.3798892904524452,0.3841066666666666,0.3865828890581366,0.3872952395601015,0.3877551020408163,0.3894862604540023,0.3866728509585652,0.3932280847528043,0.3964014619061006,0.3994511956095649,0.0,2.116604571218825,59.9819666764157,207.65776874952712,328.07452915172775,fqhc8_80Compliance_baseline,59 -100000,95808,41382,388.8193052772211,7286,74.82673680694722,5671,58.53373413493654,2296,23.609719438877757,77.3504688262772,79.68215324986338,63.33176974345843,65.06000455461484,77.07416595914994,79.40609950005427,63.23104233282082,64.96172557679746,0.2763028671272565,276.05374980910824,0.1007274106376101,98.27897781737248,81.20926,56.91682298085721,84762.5041750167,59407.171614956176,222.75194,134.8866045556096,231799.9123246493,140090.10161532398,262.67822,125.04579507844936,269861.9113226453,127194.24759541557,4096.09866,1835.4920496398256,4232718.729124917,1873201.141491134,1382.17266,598.3609522610072,1425575.7452404809,607469.0028609382,2266.81694,938.6374452294136,2332857.4440547763,950936.7572498372,0.38059,100000,0,369133,3852.841098864395,0,0.0,0,0.0,18515,192.5830828323313,0,0.0,24554,251.93094522378087,2088240,0,75040,0,0,3179,0,0,46,0.469689378757515,0,0.0,0,0.0,0,0.0,0.07286,0.1914396069260884,0.3151248970628603,0.02296,0.3220582473553611,0.6779417526446389,25.288724641934618,4.582580020238039,0.3239287603597249,0.2063128196085346,0.2334685240698289,0.2362898959619114,11.275722809245764,5.657299856591551,24.438476187642337,13146.79511707634,63.86763628213106,13.737967267885892,20.61669099788677,14.658477552313894,14.854500464044492,0.5459354611179686,0.7735042735042735,0.7049537289058248,0.5634441087613293,0.1119402985074626,0.7046783625730995,0.9378378378378378,0.8902439024390244,0.7311475409836066,0.1024734982332155,0.4954682779456193,0.6975,0.6517168885774351,0.5132482826300294,0.1144749290444654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0046642263974934,0.0068608545620623,0.0091746847789642,0.0111276115304025,0.0132610865535434,0.0153995206771709,0.017788579364431,0.0199378348533802,0.0218966893925434,0.0239843317405303,0.0261336564528053,0.0282705498822488,0.0303922881242468,0.0323745088130034,0.0343666046703864,0.0362311339309745,0.0382106147511227,0.0403217425643796,0.042243990797514,0.0568734222110951,0.0709162763466042,0.0843463134509787,0.0968060516915318,0.1092393594605984,0.1244742682024727,0.1384860050890585,0.1517688102278287,0.1645831776499098,0.1763388551957654,0.1910520992489616,0.2041314899090899,0.2165823032304316,0.2282488715970317,0.2397012397012397,0.2509250847532738,0.2618191964285714,0.2713851693484865,0.2805382082434427,0.2894338931017893,0.2981621646644909,0.3066016214508826,0.3146868046020548,0.3221243181681951,0.3289961695141971,0.3343370891902898,0.3407760295869115,0.3464563917538916,0.3520185771366301,0.3568727522741696,0.3582964243275359,0.3588780918727915,0.3593692598977025,0.3598967996289425,0.3603408972391495,0.3602825986791583,0.3604239159794715,0.3610914303603499,0.3626797374419441,0.3639263188073394,0.3640666378678887,0.3645693002615104,0.3647170009450803,0.3658383421548398,0.3671527911918099,0.3686152396901821,0.3702730492402605,0.3705058660275009,0.3729266235591791,0.3749950197219012,0.3786421047831836,0.380530033459026,0.380640282329216,0.3820233285049935,0.3856048425234087,0.3852459016393442,0.3901200369344413,0.385456755114442,0.3837145969498911,0.3830275229357798,0.0,2.5672227706067416,60.025930148780674,221.04601967737847,321.49574113229835,fqhc8_80Compliance_baseline,60 -100000,95727,41270,386.6307311416841,7320,75.1825503776364,5715,59.21004523279744,2275,23.514786841747885,77.30949638025908,79.67086253790083,63.31695901961641,65.06008197109149,77.03438480477796,79.39143421150906,63.21643638787037,64.9600833301166,0.2751115754811195,279.4283263917663,0.1005226317460454,99.99864097488852,80.6047,56.45988364541166,84202.68053945072,58980.10346653677,218.42089,131.53679347749008,227672.6419923324,136912.05192635363,261.16302,124.4241356331313,269874.12119882583,127736.71454556832,4118.60399,1845.054450540671,4270706.279315135,1895815.5942896183,1369.56221,596.1777817494946,1417695.0494635787,609839.0908722938,2240.49672,924.1953678258382,2317015.993397892,943999.5422820768,0.38066,100000,0,366385,3827.394569975033,0,0.0,0,0.0,18190,189.50766241499264,0,0.0,24500,252.9275961849844,2091968,0,75117,0,0,3147,0,0,46,0.4805331829055543,0,0.0,1,0.010446373541425,0,0.0,0.0732,0.1922975883990963,0.3107923497267759,0.02275,0.3113158577731638,0.6886841422268363,25.4920194049556,4.5370054787423895,0.3359580052493438,0.2031496062992126,0.2339457567804024,0.2269466316710411,11.101595344867532,5.615438197950778,24.128379594462555,13154.202392738054,64.25575434362224,13.557675753685936,21.62237831916312,14.833245405186045,14.242454865587137,0.5518810148731409,0.7820844099913867,0.6828125,0.5804038893044129,0.1225905936777178,0.7183823529411765,0.9342857142857144,0.8655097613882863,0.7385159010600707,0.1578947368421052,0.4998851894374282,0.7163995067817509,0.6250856751199452,0.5379506641366224,0.113482056256062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407287752807,0.0047745519422593,0.007223439655872,0.0096489802551393,0.0120368017079245,0.0141480146976498,0.0162564337766906,0.0186695519919973,0.0209314922886665,0.0228124040528093,0.0251235162672461,0.0270347971620136,0.0290799905397484,0.0311112941927643,0.0331882593180833,0.0352843932427545,0.0376733595528876,0.0396175146750741,0.041605171804519,0.0434071543157149,0.0582467498564193,0.0722060578150838,0.0856040106559268,0.0983470379171836,0.1103811883798175,0.1253040590562006,0.1387494827531326,0.1517131999957423,0.1637845401236875,0.1756235122557955,0.1900221920582595,0.2034731394669034,0.2160626836434867,0.2279582366589327,0.2385514044418018,0.2501801572079513,0.261112910973825,0.2708457733863608,0.2803836014907735,0.288583909469267,0.2973680249186554,0.3049609699579856,0.3124185638814527,0.3197715574645758,0.3269915753899269,0.3338145296614352,0.3395486876377479,0.3449901267596662,0.350203636929622,0.3551472339074529,0.356574915290846,0.3571684736130652,0.3580449215990959,0.3588900635780387,0.3597549158454956,0.360073795064955,0.3599058029818448,0.3610602536823527,0.3621637406809359,0.363170942013365,0.3648669029484956,0.3661893286064251,0.3679101958136394,0.3691167860199072,0.3713662262092375,0.3732749121057879,0.3732120758626644,0.3766427055954907,0.3764801526987381,0.3775217287297663,0.3772677295217152,0.3781557552417629,0.3796866078792108,0.384644943129419,0.3877162958737402,0.390311004784689,0.3920445751431667,0.3939771547248182,0.3929070092153029,0.3947981366459627,0.0,1.898593314108736,60.16138100817837,217.07595069349424,335.2387358818926,fqhc8_80Compliance_baseline,61 -100000,95739,41446,389.6113391616792,7325,75.29846770908406,5619,58.15811738163131,2300,23.668515443027395,77.40440741590693,79.76149725320262,63.3594678928421,65.09907591956596,77.1221036510862,79.47851005642475,63.25527124245137,64.99749050883912,0.2823037648207247,282.9871967778672,0.1041966503907261,101.58541072684102,80.43464,56.313499381896726,84014.49774908867,58819.81155213312,220.618,133.53415958835035,229895.2046710327,138935.62226102932,258.67067,123.34769590823788,266799.24586636585,126224.74867529988,4072.17994,1827.1172435695437,4215052.570008042,1870076.1487077137,1376.8263,598.5725210232844,1423605.7719424686,610826.2395454228,2269.13692,949.146600708754,2335666.008627623,960545.0271734636,0.38132,100000,0,365612,3818.840806776757,0,0.0,0,0.0,18395,191.572922215607,0,0.0,24078,248.1642799695004,2096585,0,75134,0,0,3136,0,0,50,0.5118081450610513,0,0.0,0,0.0,0,0.0,0.07325,0.1920958774782335,0.3139931740614334,0.023,0.3235561323815704,0.6764438676184296,25.40160909823815,4.637237149985772,0.3258586937177434,0.2057305570386189,0.2292222815447588,0.2391884676988788,10.87317763399692,5.279952005276787,24.448149135327352,13082.607347536732,62.992524413873454,13.485337799275344,20.431162664267,14.362976639319577,14.713047311011543,0.5321231535860473,0.7448096885813149,0.6777717094483888,0.5753105590062112,0.109375,0.6906841339155749,0.9175531914893617,0.8215962441314554,0.7301038062283737,0.1519434628975265,0.4808009422850412,0.6615384615384615,0.6341637010676157,0.5305305305305306,0.0980207351555136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021059665677807,0.0044590828477324,0.0068273581268894,0.0090590565175443,0.0113265482496721,0.0133550488599348,0.015164331210191,0.0175096680713855,0.0197400686611083,0.0218265541059094,0.0239825357944471,0.0261310452418096,0.0283749190389538,0.0305602191848548,0.0326368467213537,0.034610017056908,0.0364636192290963,0.0385485176040996,0.0405836563743881,0.0424964586284476,0.0580822318277683,0.0714487551150694,0.0849584072003272,0.097768946084616,0.1094456566423173,0.125335730146981,0.1386286720631451,0.1518242113892112,0.1643020448281019,0.1757337880298984,0.190000753928506,0.2030646365613738,0.2155661916675731,0.2264629651906693,0.2374606598146884,0.2493852867554216,0.2601669568322842,0.2698489466758146,0.2791278106777392,0.2878210192468428,0.296528765128134,0.304442264573991,0.3112804157807701,0.3181714941484465,0.3252217751708759,0.3310131952728212,0.3362955741372629,0.3424375619299271,0.3486670286763375,0.3542706618373394,0.3556561815567768,0.3560984994228549,0.3569096997495568,0.3574335440297861,0.3586316367250663,0.3592265683559988,0.3597056263353644,0.3604960141718334,0.3613814059885964,0.3622492683275037,0.3630395228001726,0.3645806489979583,0.3664966521839515,0.3676622039134912,0.3678047370069633,0.3673592212685786,0.3672584051601119,0.368945195550093,0.3717826837083201,0.3740637450199203,0.3754792769764469,0.3794685732579234,0.3832153690596562,0.3841864018334606,0.3873603155225842,0.3897884410826143,0.3922413793103448,0.3986623429266315,0.4009473390916689,0.423444976076555,0.0,2.050983414140833,60.681640035989325,209.7423462062121,324.46107134677743,fqhc8_80Compliance_baseline,62 -100000,95750,40968,385.2114882506528,7226,74.21409921671018,5610,58.03655352480418,2261,23.31070496083551,77.33232137485312,79.69808583083137,63.31916690730778,65.07123834108583,77.04723523730793,79.40881592949624,63.21497999188086,64.96734872871892,0.2850861375451927,289.26990133513186,0.1041869154269221,103.8896123669133,80.7521,56.58100927518849,84336.39686684073,59092.43788531436,220.84713,133.65693327149242,230090.40208877283,139030.14440886935,256.61159,122.19335676394708,263834.2872062663,124499.49194561932,4048.83627,1819.5709246554209,4193121.514360313,1864907.0544704143,1376.1826,598.9319504621036,1422945.409921671,611208.9321927858,2223.90382,935.9425465554784,2294730.610966057,953994.0104938652,0.37811,100000,0,367055,3833.4725848563967,0,0.0,0,0.0,18436,191.95822454308092,0,0.0,24004,246.52741514360312,2092737,0,75076,0,0,3197,0,0,41,0.4281984334203655,0,0.0,0,0.0,0,0.0,0.07226,0.1911084076062521,0.3128978688070855,0.02261,0.3174142480211082,0.6825857519788918,25.368383754332594,4.492389242406011,0.3288770053475935,0.2023172905525846,0.2367201426024955,0.2320855614973262,10.984727998636808,5.612556526717018,24.24843284367237,12960.340307605398,63.13621235148443,13.26841636956063,20.72968921872037,14.788547313158697,14.349559450044753,0.5491978609625668,0.7674008810572687,0.6775067750677507,0.5978915662650602,0.1274961597542242,0.7045619116582187,0.9175824175824177,0.868421052631579,0.7197231833910035,0.1286764705882352,0.4984629936155119,0.6964980544747081,0.6148308135349172,0.5640038498556305,0.1271844660194174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0048179817220988,0.0067927057103403,0.0091470851288722,0.011322942947831,0.0136001059483909,0.0155727339479481,0.017754137357196,0.0196615714942998,0.0216420966420966,0.0237424010989574,0.0260661560889472,0.0280517023311293,0.0302384262835367,0.032282359738357,0.0341794654484569,0.0358984447803847,0.0379077101834177,0.0399255941556079,0.0418454488648198,0.0568076244558806,0.0707163707508971,0.0840482433141059,0.0962820431939099,0.1080405718864662,0.1231451024358255,0.1364576812486074,0.1491159909310568,0.1609847271173769,0.1717619052725264,0.1849976841629056,0.1985629105390167,0.2119435136428913,0.223284404873887,0.2343787828766369,0.2453793424214571,0.2566760777136735,0.2665428764348413,0.2758307608498275,0.2845082361566129,0.2932896549329197,0.3008988343242357,0.3088778409090909,0.3157459358365703,0.3226343550229698,0.3289506142384922,0.3357088285760805,0.3413169080404184,0.3480221303722515,0.3532416451084948,0.3542059600150886,0.3550097798837433,0.3554054625699742,0.3569496477803653,0.358110119047619,0.3581343272136075,0.3579223254705742,0.3590916570676321,0.3593586913745016,0.3597993550698674,0.3622942793657967,0.3630744156463666,0.364038599300493,0.3651150757047403,0.3656528477334366,0.366188314925099,0.3658347898341021,0.3672556546014021,0.3691322650252927,0.3695940248162871,0.3705422794117647,0.3716714185808811,0.371901354459494,0.373497688751926,0.3777756779741094,0.3832562551879521,0.3853658536585366,0.3858124494745352,0.3936140930360584,0.3937403400309119,0.0,2.1513228534504503,60.95980426939872,208.20020640748103,326.9678756416506,fqhc8_80Compliance_baseline,63 -100000,95719,41562,389.410670817706,7406,75.99327197317147,5802,59.97764289221576,2381,24.477898849758148,77.41699606751023,79.77024777540448,63.36600846061516,65.10071054714335,77.12416956073677,79.47886105791154,63.25879113415486,64.99727071916335,0.2928265067734514,291.3867174929408,0.1072173264603009,103.43982797999728,80.83592,56.631612019234296,84451.27926534961,59164.44177147097,222.81631,134.4160060336205,232155.4759243201,139801.4981702906,263.58811,125.43588237806956,271442.9110208005,128045.19065287108,4191.72575,1886.7807403131392,4332725.686645284,1924725.3618499348,1440.06406,625.6093739608011,1489749.8511267356,638873.0155547397,2343.75536,971.8948427772071,2410013.7276820694,981215.5913155292,0.38376,100000,0,367436,3838.6945120613454,0,0.0,0,0.0,18506,192.6785695629917,0,0.0,24712,254.22329944943013,2092669,0,75100,0,0,3102,0,0,47,0.4910205915231041,0,0.0,0,0.0,0,0.0,0.07406,0.19298519908276,0.3214960842560086,0.02381,0.3180819439059066,0.6819180560940933,25.48758440526795,4.568955708028327,0.333160978972768,0.1959669079627714,0.2380213719407101,0.2328507411237504,11.060810110910497,5.571403497766382,25.25690625712044,13229.402966489,65.40673408518053,13.25806661606326,21.6908404680678,15.587241321595435,14.87058567945404,0.552395725611858,0.7581354441512753,0.6880496637351268,0.6089790007241129,0.1273131014063656,0.70888733379986,0.9147727272727272,0.8340080971659919,0.7824675324675324,0.1381818181818181,0.5012577178138578,0.6878980891719745,0.6379430159833217,0.5591798695246971,0.1245353159851301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.0047817321622141,0.0071101103537812,0.0092710120939489,0.0115503497641125,0.0137421364441458,0.0162881722183715,0.0185549964788373,0.0210213279102326,0.0233769156794139,0.0254439628229169,0.0274128658811938,0.029668160697397,0.0317810137793248,0.0340334660696969,0.0362199028624573,0.0380900121134314,0.0401298593536074,0.0421144531980792,0.0438813993707415,0.0581847040641577,0.072735073143168,0.0856555313077052,0.0979206327502971,0.1106446713357522,0.1261727219842403,0.1398913712261048,0.1530731728087543,0.1651940725862455,0.177028258887876,0.1910602373312084,0.2045334054638896,0.2167211938741128,0.2288644704648724,0.2401256880431558,0.2514797809371024,0.2621834314250044,0.2719752739533577,0.2820443053760515,0.2904141253475838,0.2988101707850097,0.306466882502133,0.313708332840639,0.321598352312869,0.3280538867649736,0.334425542922605,0.3408164286250281,0.3465769626982411,0.3518365128258224,0.3576886026840501,0.3589684890923781,0.3601574218051217,0.3611291277741744,0.3616522079163468,0.3629637348895373,0.3631691977297131,0.3626786223503691,0.3634796315452441,0.3650340810085928,0.3656848227507092,0.3666092298471681,0.367973920774474,0.3692007470046373,0.3713008493518104,0.3724366997208048,0.3738503344481605,0.3762848332571951,0.3768526385348815,0.3805904500510222,0.3817899637868598,0.3820915926179084,0.3831691078561917,0.3858034419718842,0.386839481555334,0.3894203714124929,0.3881106533254855,0.3878048780487805,0.3825894652191395,0.3860604410563572,0.3793494704992435,0.0,2.4793786916861484,62.852810096212295,223.78113140048137,327.45244472866455,fqhc8_80Compliance_baseline,64 -100000,95700,41197,387.9832810867293,7276,74.98432601880877,5661,58.61024033437826,2296,23.67816091954023,77.3508434030137,79.7421969294324,63.31502979323547,65.08316316866429,77.06738243704561,79.45725820852465,63.21167082021462,64.9820102754977,0.2834609659680893,284.9387209077463,0.1033589730208461,101.15289316658505,81.76388,57.2205025823408,85437.7011494253,59791.53874852748,220.94386,133.22940767616475,230326.4158829676,138670.77082148878,256.47296,121.5457006865367,264802.20480668754,124507.17504591343,4111.99477,1831.1732363234255,4262649.310344827,1879345.722386025,1416.659,610.311785566423,1468073.6990595611,625497.3198652728,2273.49792,940.479308490032,2347413.521421108,957187.7594891776,0.37982,100000,0,371654,3883.531870428422,0,0.0,0,0.0,18384,191.52560083594565,0,0.0,23973,247.3458725182863,2088459,0,74935,0,0,3286,0,0,49,0.5015673981191222,0,0.0,0,0.0,0,0.0,0.07276,0.1915644252540677,0.3155579989004948,0.02296,0.3147760020958868,0.6852239979041131,25.3229644035667,4.4938306438962,0.3294470941529765,0.2057940293234411,0.2178060413354531,0.2469528351881293,10.868799140049925,5.415810852450708,24.3753602777673,13089.791924947162,63.67676610340969,13.666211285919363,21.023327180534924,13.578775544619042,15.408452092336352,0.5440734852499558,0.769098712446352,0.6954423592493297,0.5798864557988646,0.1230329041487839,0.6927044952100221,0.8935574229691877,0.852017937219731,0.7296296296296296,0.1549295774647887,0.4972118959107807,0.7141089108910891,0.6462297392529951,0.5379023883696781,0.1149012567324955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.004401131719585,0.0062735384584149,0.0086389137328238,0.0107021506032676,0.0129276094619099,0.0150261657264686,0.0170864227791735,0.0192061852507133,0.0213739988939186,0.0235975797354117,0.0256160064091371,0.0278849219818763,0.0297244946320756,0.0314770475561426,0.0334529064538471,0.0354108822676225,0.0375533250988655,0.0395585420654073,0.0415289837699227,0.0564033465985648,0.0708444584053191,0.0844337147055736,0.0978360352209726,0.1107208034009515,0.1258754575654345,0.1400231390572426,0.1526584246451351,0.1653039193681127,0.1766763598124322,0.1902370148417206,0.2028665454230536,0.2154095577994429,0.2267599006379742,0.2379783345810031,0.2493209007350903,0.2596045418513515,0.270260532774888,0.2793843707405725,0.2878664541796127,0.296320744884133,0.3046273848424159,0.312045979735735,0.3183596562815035,0.3250772487287414,0.3312444488305536,0.3383203545584295,0.3444403417410459,0.3496412010051553,0.3552645488662191,0.3568527987264412,0.3579539190827913,0.3587531193164996,0.359977439042027,0.3605994890380845,0.3608059449934881,0.3611379665583644,0.3617524773627384,0.3631119479630263,0.3633616450603487,0.3650647644077341,0.3659559318010997,0.3662222781201526,0.3664675481575944,0.3660510029619284,0.367952367273392,0.3686815531218887,0.3705320685972737,0.3727588505666467,0.3761757963797328,0.3769666742235321,0.3797898312281074,0.3810511756569847,0.3850087779558812,0.383511190858438,0.3823178016726404,0.3808206546795758,0.376983329985941,0.3735334242837653,0.378001549186677,0.0,2.113224161133896,60.18411104375736,216.44356875638584,326.721726068995,fqhc8_80Compliance_baseline,65 -100000,95719,41392,387.5719554111514,7284,74.71870788453704,5731,59.23588838161703,2293,23.495857666711935,77.26691653433518,79.62639431117088,63.2951211478972,65.03900072033119,76.97700552747784,79.33944013049961,63.18844761179204,64.93688417429058,0.2899110068573378,286.9541806712732,0.1066735361051556,102.11654604060529,80.63946,56.49589881742715,84245.80281866714,59022.42900304762,219.85224,132.93320076491105,229038.24736990567,138231.78341281365,261.37981,124.66220570167988,269748.5556681536,127593.6230661467,4084.26859,1835.251139263311,4221599.713745442,1871995.7158592448,1394.60156,605.3807006784207,1435140.4423364222,610634.6585825287,2253.54018,941.4922980513552,2310575.6850781976,944730.593265788,0.38159,100000,0,366543,3829.35467357578,0,0.0,0,0.0,18335,190.88164314294968,0,0.0,24473,252.3427950563629,2088472,0,75017,0,0,3315,0,0,33,0.344759138728988,0,0.0,0,0.0,0,0.0,0.07284,0.1908855053853612,0.3147995606809445,0.02293,0.3223915592028136,0.6776084407971864,25.15498391135233,4.510673315112807,0.345489443378119,0.2010120397836328,0.231373233292619,0.222125283545629,11.251785685457538,5.722487036087567,24.43012289845232,13167.55840270346,64.79100163993375,13.513977449671325,22.332210700717496,14.802879289557549,14.14193419998739,0.5487698481940324,0.7638888888888888,0.6883838383838384,0.5739064856711915,0.1107619795758051,0.6984352773826458,0.9234828496042216,0.857451403887689,0.6745762711864407,0.1338289962825278,0.5001156069364162,0.685640362225097,0.6367831245880027,0.545101842870999,0.1045816733067729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079974071223,0.004521996573016,0.0070726955392296,0.0092441157647728,0.0117364684823952,0.0136947247309419,0.0157500382282481,0.0177927950919243,0.0202610837941997,0.0224267114313789,0.0246840179184648,0.0268880128126155,0.029410252455139,0.0314971984179301,0.0334475074281941,0.0354872388591984,0.0377159189760159,0.0401099756186128,0.0418914564297668,0.0438447512373013,0.0589875321095169,0.0732103042927574,0.0864755947820794,0.0994054821907718,0.1114112371405961,0.1269155871645076,0.1407230450708711,0.1539256308383839,0.1660214317797788,0.1774456755131838,0.1922716147882996,0.2053860742346247,0.2170171980002831,0.228302300109529,0.2388987468726924,0.2501526607378787,0.2610869395013813,0.2714383924445797,0.2807472047995636,0.2893674602082473,0.29778637089865,0.3054082218085168,0.3129582903917457,0.3195752594636751,0.3268306921421013,0.3327285518569259,0.3385591732303216,0.344299503972049,0.3502174900993313,0.3560395305089685,0.3567814039075607,0.3576111310890432,0.3583414758485917,0.3594044751429318,0.3605855318132983,0.3601797974200301,0.3604504834573172,0.3616588703945519,0.3619034511234215,0.3627049180327868,0.3628251806297043,0.3636273123718114,0.3650283393959901,0.3651520620882592,0.3653888227143447,0.3672883409725515,0.3685576673492343,0.3704436011098,0.3734560166123662,0.3753807415830727,0.3798255382331106,0.3804436249254297,0.3826282051282051,0.3833423555796149,0.3849456210646823,0.3852715040845747,0.3855925639039504,0.3910992616899097,0.3926174496644295,0.4017295597484276,0.0,2.479059718899791,61.88674608436109,219.02215742597127,329.66954598791114,fqhc8_80Compliance_baseline,66 -100000,95706,41326,387.1335130503834,7410,76.22301632081583,5842,60.48732576849936,2362,24.355839759262743,77.288290147924,79.6567826656004,63.294707477804174,65.04352204619619,76.99519972972828,79.36198169497952,63.18731840583445,64.93798361795687,0.2930904181957174,294.8009706208836,0.1073890719697203,105.53842823931348,80.9116,56.67816248093496,84541.82600881868,59221.11725590346,222.45761,134.75407478562337,231896.4432741939,140257.9512106068,265.99684,126.79202779482286,274276.90008985857,129726.31640047416,4186.20718,1886.4400699540147,4339157.712160157,1936207.938848155,1404.75363,611.8466721434537,1454711.334712557,626229.3609005226,2321.39196,963.0434256359472,2395721.062420329,980287.748149055,0.38154,100000,0,367780,3842.8102731281215,0,0.0,0,0.0,18538,193.14358556412344,0,0.0,24967,257.26704699809835,2083614,0,74896,0,0,3226,0,0,32,0.323908636867072,0,0.0,1,0.0104486657053894,0,0.0,0.0741,0.1942129265607799,0.3187584345479082,0.02362,0.3157355202460277,0.6842644797539723,25.22188479638005,4.454669792505725,0.3334474495035947,0.2084902430674426,0.2276617596713454,0.2304005477576172,11.040170600686256,5.631064100470362,25.15311976857581,13139.321747528544,66.13123238183915,14.315112101844631,22.07552949160903,14.934379177830872,14.806211610554612,0.5487846627867169,0.7660098522167488,0.6883983572895277,0.5849624060150376,0.1144130757800891,0.701010101010101,0.8886010362694301,0.8703703703703703,0.740625,0.1296928327645051,0.4969015377553362,0.7091346153846154,0.627906976744186,0.5356435643564357,0.1101614434947768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293733985557,0.0048255796271327,0.0070929902179648,0.0093053495601292,0.0115124888129525,0.0140211182274536,0.0161905344507656,0.0181901699586587,0.0205562767686473,0.0229545105664432,0.0251296451923668,0.0271704543121676,0.0293228599041763,0.0315029556548783,0.033605297630713,0.0354998398114943,0.0375858105799397,0.0397471953839288,0.0415847557233646,0.0437215991995664,0.0581747540367221,0.0718144696890377,0.0858180367956508,0.0983340875367016,0.1107838790719277,0.1262625193215745,0.1398628129711822,0.1527086773557769,0.1651430098904036,0.1759596284962688,0.1898569009953306,0.2028927410617551,0.2154667247576516,0.2275658924914862,0.2384907738914899,0.2500499389634891,0.2614073543884763,0.2709289605160766,0.2802603579922393,0.2897348711115196,0.2984752489034324,0.3061978671734769,0.3136039886039886,0.3199148977089694,0.3265704015109973,0.3325378670788253,0.3385148975206404,0.3439974457215836,0.3500676308396629,0.3548870187528991,0.3566495939024555,0.3568752678361603,0.3575182378355407,0.3587880549298844,0.359577776448777,0.3597394798835974,0.3590241418272674,0.3606065105842366,0.3619009982646346,0.3628072317276791,0.3630554036986069,0.3643840514929376,0.3657528469000422,0.3661712540972565,0.3672637847481736,0.3675867652051289,0.3680418560768505,0.3693762053811376,0.3703507470594468,0.3721302295816334,0.3748041655146991,0.3755775222950467,0.3758252920264093,0.3795940335229893,0.3784012804820638,0.3762046400951814,0.3703533731069298,0.3755839934998984,0.3799725651577503,0.3767727098505174,0.0,2.194572889491843,65.96056413552847,217.61528019241533,333.99727751000285,fqhc8_80Compliance_baseline,67 -100000,95835,41491,389.58626806490327,7364,75.68216204935567,5718,59.15375384775918,2333,24.02045181822925,77.36488025655099,79.67819940293649,63.35773544642036,65.07054126158563,77.07986223087202,79.39172428066794,63.25268744021783,64.96715259343159,0.2850180256789656,286.4751222685413,0.10504800620253,103.38866815403946,81.31046,56.95458604960658,84844.22183962018,59429.83883717492,222.26738,134.49720166976792,231435.7698126989,139851.0895495048,264.0652,126.2750453446145,272015.4745134867,129003.22374927728,4150.26369,1861.4999932879407,4298651.18171858,1910417.554429948,1401.93034,608.6236062776961,1449218.218813586,621434.2842152613,2306.01798,959.9916257212428,2377132.4463922363,976533.159987582,0.3813,100000,0,369593,3856.555538164554,0,0.0,0,0.0,18434,191.8297073094381,0,0.0,24658,253.8529764699745,2091174,0,75072,0,0,3219,0,0,50,0.5112954557312047,0,0.0,0,0.0,0,0.0,0.07364,0.1931287699973773,0.316811515480717,0.02333,0.320360824742268,0.679639175257732,25.48419069792159,4.61823327789759,0.3356068555438964,0.2004197271773347,0.2226302903112976,0.2413431269674711,11.24587609585029,5.645684609285854,24.87164654657533,13151.910225459573,64.45543586900382,13.498460149619667,21.534621930304095,14.181472659789035,15.24088112929102,0.5416229450856943,0.7600349040139616,0.6909848879624805,0.5648075412411626,0.131159420289855,0.7077140835102619,0.906166219839142,0.8713080168776371,0.7132616487455197,0.1742160278745644,0.4871080139372822,0.6895213454075032,0.6318339100346021,0.5231388329979879,0.1198536139066788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.0045622288008435,0.0067274129393619,0.0092227684556941,0.0115516417364069,0.0137355923919683,0.0159942098717608,0.0181003328092778,0.0202302093555773,0.0223859972362966,0.0244639855696306,0.0265591166117627,0.0288081069692391,0.0309280472617614,0.0331288975931556,0.0350362853692023,0.0371634550739028,0.0388640225454846,0.0408676059847784,0.0427386885007126,0.0571872588080685,0.070874618504118,0.0839365212381501,0.0970787130376344,0.1093652916583295,0.1243994382437726,0.1391675582910473,0.1529401760278923,0.1651359510170992,0.1768857568195692,0.1904838744379182,0.2043439716312056,0.2168857981093122,0.2286023243621111,0.2400668256707297,0.2511669579452691,0.2611621817371441,0.2717437706428202,0.281106617272202,0.2894384644421821,0.2977317109809223,0.3053397661296917,0.312867260194611,0.3202633153800119,0.3268385121838633,0.3331649499778227,0.3397432689420478,0.3450613750556509,0.3506039538587019,0.3564035284344879,0.3574332875568839,0.3587466787813709,0.3586071645244578,0.3592650508209539,0.3602527043537861,0.3610552339419253,0.3610735908722529,0.3616452815252168,0.362125846249012,0.3637865106008653,0.3646303465206307,0.3656299840510367,0.3675067544748396,0.3691777272010275,0.3706692437786905,0.3718533668974197,0.3720970140716165,0.3732683914226073,0.3755438435145555,0.3756522437183913,0.3782723117410776,0.3782749326145552,0.3799025890797231,0.3818379048504571,0.3793070352241098,0.3825794032723772,0.3852140077821012,0.3810513193434448,0.3837111670864819,0.388235294117647,0.0,2.0268694595329344,62.624699556151,213.7531170696863,331.16970218562057,fqhc8_80Compliance_baseline,68 -100000,95632,41038,384.5679270537058,7286,74.87033628910824,5657,58.51597791534214,2277,23.34992471139368,77.2563444549925,79.6643843071954,63.27473565930678,65.05490371866883,76.97553166348676,79.38539880186738,63.17171074291645,64.95528991613878,0.2808127915057383,278.98550532802346,0.1030249163903249,99.61380253004393,80.84406,56.57521004698694,84536.61954157604,59159.28773526324,218.64104,132.23744419661878,227979.2328927556,137630.17653718128,258.8453,123.166394789182,266439.4344989125,125591.92008883048,4130.26878,1849.945584781187,4275501.087502091,1891358.9564502963,1406.10257,614.6835483907925,1450497.1662205118,623186.2314467636,2255.99774,939.8031547033876,2316503.3879872845,948581.3253568528,0.37794,100000,0,367473,3842.573615526184,0,0.0,0,0.0,18210,189.75865818972727,0,0.0,24179,248.64062238581224,2087826,0,75027,0,0,3262,0,0,43,0.4496402877697841,0,0.0,0,0.0,0,0.0,0.07286,0.1927819230565698,0.3125171561899533,0.02277,0.3157280041526084,0.6842719958473916,25.365931305676263,4.655041435063303,0.3264981438925225,0.1937422662188439,0.2375817571150786,0.2421778327735549,11.245343667461205,5.5260173943981,24.28667018957791,13076.138819630944,63.89879056356441,12.8506348225317,20.932221306330256,14.956448669962422,15.159485764740014,0.545872370514407,0.7655109489051095,0.697347049269085,0.5997023809523809,0.1131386861313868,0.7,0.9190751445086706,0.8410138248847926,0.7580645161290323,0.1655172413793103,0.4961421557166238,0.6946666666666667,0.6532200990799717,0.5522243713733076,0.099074074074074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408770952549,0.0047535550307612,0.0071139345842762,0.0093261406235713,0.0116085054430766,0.0137628230596049,0.0161069854741308,0.0182577955780783,0.0205592946423091,0.0228145841230164,0.0249038017546559,0.0266784506767241,0.028804974468786,0.0311159683272847,0.0332520711526145,0.0353159081972641,0.0373814336806095,0.0394228371977063,0.0414884650204476,0.0435698713869968,0.0581601939718239,0.0720144992823693,0.0854383202099737,0.0991515432228725,0.111231887881634,0.1267832197434703,0.140229470265451,0.1535659897125696,0.1655105334601695,0.176868266300382,0.189681008182318,0.2027062162806318,0.2141635716075065,0.2256021389905542,0.2360401892556606,0.2474578152753108,0.2583618587377229,0.2686649607142454,0.2777278773890601,0.2867274104335452,0.2957661524185129,0.3033768488217976,0.311101880970747,0.3178504077931126,0.3249424293007444,0.331231765811205,0.3368065581179306,0.3419829984938605,0.3474899963623136,0.3530462629684522,0.353928257785584,0.3547348641852497,0.3562863655024987,0.3564734769785113,0.3583856502242152,0.3581691487065643,0.3583884067202803,0.3589184546520654,0.3601544454786776,0.3617205230735977,0.3627921930554504,0.3637669592976855,0.3651944209636517,0.3661965494747733,0.3663970552622657,0.3663631353819508,0.3676673567977915,0.3717046894803549,0.3719864655293952,0.3729421612787499,0.3736032240337058,0.3734224598930481,0.3749046044263546,0.3725250363122085,0.373202614379085,0.3738583797888744,0.379226686884003,0.3868171739568635,0.3885714285714285,0.3836307214895267,0.0,2.463212457979865,60.8900817716704,214.6304719555489,327.6261501652323,fqhc8_80Compliance_baseline,69 -100000,95699,40958,384.8734051557488,7255,74.70297495271633,5587,57.86894324914576,2216,22.832004514153752,77.32722884548278,79.70586532668307,63.32110870231941,65.07680325627257,77.04890406199965,79.42634766708849,63.21863372715909,64.97675941525746,0.2783247834831286,279.51765959457475,0.1024749751603266,100.04384101510766,80.69996,56.472386698336095,84326.85816988684,59010.42508107305,219.7028,133.17725438063445,229083.9716193482,138669.70854516185,257.55233,122.1700852460747,266489.51399701147,125602.74819344551,4081.69551,1832.905083513323,4227750.770645462,1877892.9597104704,1388.22578,601.1711269870971,1434778.0959048686,612354.9919216482,2195.63664,917.9957284753846,2263009.7284193146,929806.1383817092,0.37713,100000,0,366818,3833.0390077221286,0,0.0,0,0.0,18302,190.7334454905485,0,0.0,24050,248.7277818994974,2091505,0,75121,0,0,3183,0,0,41,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07255,0.1923739824463712,0.3054445210199862,0.02216,0.3132940406024885,0.6867059593975114,25.33845145407704,4.574026047442065,0.3234293896545552,0.1968856273492035,0.2373366744227671,0.2423483085734741,11.078850945660427,5.507542585149778,23.589438491148535,13009.976044545194,63.0553876214271,12.88004620942401,20.49099906004404,14.827308001811383,14.857034350147677,0.5432253445498478,0.7427272727272727,0.7044825677919203,0.5965309200603318,0.1137370753323486,0.7023895727733527,0.8966480446927374,0.8724373576309795,0.7401315789473685,0.1464285714285714,0.4909652876842605,0.6684636118598383,0.6505847953216374,0.5538160469667319,0.1052141527001862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095693198615,0.0040842800822936,0.0065435730952622,0.0087855612094619,0.0112262433776349,0.0133892661867573,0.0154487793934697,0.017239794511454,0.0192563352627165,0.0215563588698528,0.0232696469043883,0.0253789901811757,0.0275969183612594,0.0295929933024214,0.0318695495123587,0.0338579908581356,0.0359699559699559,0.0380602360855888,0.0402442322494747,0.0422269476932057,0.0565832767535384,0.070667531869466,0.08345571266731,0.0961609275215941,0.1088364342066405,0.1237173384110864,0.1371537726838586,0.150083060016186,0.1620492547678829,0.1734983962152826,0.1873821859818822,0.2001428818843089,0.2131964235212217,0.224711235561778,0.2356942380716526,0.2466451691543942,0.2574238635348754,0.2679268635724331,0.2773217995436434,0.2870714154748808,0.2959633983899924,0.3036575656816372,0.3113058928042641,0.3175853962771061,0.3241901935264137,0.3311366160681229,0.3372350958104094,0.3429001096016109,0.3475434932084431,0.3528688524590164,0.3536710501444657,0.354365987482423,0.3552822916519603,0.356258955321089,0.3576897866762007,0.3578162245290273,0.3581370960053389,0.3594035151176364,0.3604406507124651,0.3617431684229327,0.3623506461838576,0.3635877847487482,0.366397313464162,0.3667458645268301,0.3678566252838027,0.3671184752117033,0.3683923549331344,0.369873417721519,0.3719847651290732,0.3727389146790459,0.3759377732774888,0.3781792762273485,0.380539989811513,0.3825052159802179,0.3899894726768111,0.3925233644859813,0.3986350240421901,0.402963572751595,0.4046355766545658,0.3968192397207137,0.0,1.9740411337144577,61.25681309725916,211.75194203959884,320.3282556973164,fqhc8_80Compliance_baseline,70 -100000,95771,41271,387.6538826993557,7434,76.26525775025843,5747,59.34990759206858,2354,24.140919485021563,77.38146625236273,79.70596988415902,63.35451413110488,65.06842246974618,77.09007421822822,79.41557136617281,63.246542692426935,64.9637729561013,0.2913920341345033,290.39851798620475,0.1079714386779429,104.64951364488684,81.29924,56.96713778741079,84889.20445646386,59482.65945579642,221.02272,133.70802344906028,230087.7614309133,138924.6288309177,260.4962,123.98812932443224,268343.183218302,126531.6029601312,4137.49465,1865.994704221248,4273910.400852033,1903000.442445637,1403.97591,617.4548456813417,1444985.527978198,624887.8189510606,2313.47852,973.986856336435,2373974.8984556915,982040.9902482664,0.38137,100000,0,369542,3858.600202566539,0,0.0,0,0.0,18442,191.84304225705068,0,0.0,24379,250.90058577231105,2088878,0,75026,0,0,3228,0,0,44,0.4594292635557737,0,0.0,0,0.0,0,0.0,0.07434,0.1949288092928127,0.3166532149582997,0.02354,0.3171450538185545,0.6828549461814454,25.202947655019823,4.563030342893947,0.3389594571080563,0.2014964329215242,0.2274230033060727,0.2321211066643466,11.108096129600645,5.556718665608863,25.28541376428157,13100.823123882034,64.96250347303801,13.373157077881093,22.138562283187955,14.726591823587274,14.724192288381664,0.5448059857316861,0.7417962003454232,0.6909650924024641,0.5837796480489671,0.1221889055472263,0.7087988826815642,0.9196428571428572,0.8478260869565217,0.7184466019417476,0.195729537366548,0.4903823870220162,0.6690997566909975,0.6359223300970874,0.5420841683366734,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021262377741327,0.004337427540638,0.0067051460220529,0.0089467056625233,0.011266230795042,0.0133965836675692,0.0155842302674494,0.0178267125174746,0.0200449530036779,0.0220269274840399,0.0240953981067901,0.0258346500318059,0.0278605635829239,0.0299873379932263,0.0321562967163255,0.0340906743777754,0.0361666459704458,0.0383287543414027,0.0403490546436733,0.042470560061639,0.0566884431550165,0.0700241715236431,0.0836532209007194,0.0966307490144546,0.1090190290443308,0.1247091424461649,0.137856415478615,0.1508851488732049,0.1633232925292144,0.174625809495218,0.1892380737056296,0.2020895748385771,0.2145599286576546,0.2261886528236658,0.2379982831106513,0.2494209178867104,0.2602476634992239,0.2702632734149004,0.2797396608321312,0.2884352961412763,0.2965760964022942,0.3050074983597338,0.312794018319489,0.3201357737424137,0.3264088102299801,0.3330373877873138,0.3388500106410946,0.3443873004557374,0.3503857874602866,0.3557589444906692,0.3567740978877701,0.3584061045150271,0.3592356328327876,0.3603612746092957,0.3615129910807505,0.3609309189288898,0.3615373629338115,0.3622334824953935,0.3637001900782574,0.3648440852524675,0.3651034922779561,0.3672827291435808,0.3671750273086295,0.3672062686634186,0.367847148509119,0.3700070627010908,0.3687623182610186,0.370411183174863,0.3712283913671091,0.3721217925695358,0.3752858318851184,0.3762028815992344,0.3803179790108716,0.3836439710916698,0.3874976285334851,0.3882788254953449,0.386825615161241,0.3903916027452563,0.3908866318967883,0.3931591083781706,0.0,2.482515955871188,62.95911817218688,220.08519990841037,325.8205725098944,fqhc8_80Compliance_baseline,71 -100000,95764,41170,385.9070214276764,7286,74.81934756275845,5692,58.93655235787979,2318,23.78764462637317,77.31912755708531,79.66652054784528,63.32066847763053,65.0573638041922,77.03840232788261,79.3883518607514,63.21688756665158,64.95734911317918,0.2807252292027016,278.1686870938813,0.1037809109789549,100.01469101302972,80.74242,56.56907944827976,84313.95931665343,59071.3414730794,220.6021,132.91044706148,229846.2992356209,138277.9485696163,257.49942,122.31539773669536,266367.5598345933,125651.55957841437,4083.4344,1824.659292535628,4230979.762750094,1872658.7123541888,1357.13387,587.548262837473,1404340.7021427676,600996.1017802376,2274.88038,945.825328226443,2338260.703395848,955368.5016433496,0.3797,100000,0,367011,3832.45269621152,0,0.0,0,0.0,18326,190.84415855645128,0,0.0,24023,248.31878367653815,2092212,0,75154,0,0,3198,0,0,50,0.5221168706403242,0,0.0,0,0.0,0,0.0,0.07286,0.1918883328943903,0.3181443864946472,0.02318,0.3201828870019595,0.6798171129980405,25.424435531044228,4.537016088106606,0.3350316233309908,0.2027406886858749,0.2338369641602248,0.2283907238229093,11.052464194804395,5.565414425687474,24.502743789994277,13103.435039526265,64.15238005605778,13.603650721315198,21.61331829302951,14.685072499521215,14.250338542191855,0.539353478566409,0.7625649913344887,0.6743576297850026,0.560480841472577,0.1215384615384615,0.701098901098901,0.9173789173789174,0.8375,0.7052238805970149,0.1654135338345864,0.4883290963716201,0.6948941469489415,0.6194814295725298,0.5239887111947319,0.1102514506769826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886307709445,0.004246090860264,0.0063410575869485,0.0084807735277986,0.0107188984145386,0.0131170246351572,0.0154269691562579,0.0178695421312747,0.0199280178319461,0.0221125693577117,0.0242789619923513,0.026470890235137,0.028724224816167,0.030883973916537,0.0330998049917972,0.0350875379813555,0.0371033697396345,0.03900172188453,0.0411683413169297,0.0430453574962245,0.0577226182896151,0.0716415100260457,0.0846190151554879,0.0971944730698858,0.1089523287440173,0.1246629659000793,0.1383965976221536,0.1515486843365289,0.1640487351706905,0.1753612933659248,0.189181330633871,0.2025953504480713,0.2151792707336176,0.2262273209462045,0.2377027532627594,0.2490584012761432,0.2597836160021437,0.2697333618467702,0.2794404832190381,0.2887796718907524,0.2974312649109397,0.3056339512606419,0.312831879385549,0.31962675185243,0.3263177115033475,0.3328803340663685,0.3386046978266595,0.3446164834323904,0.3503018500486854,0.3555238170805893,0.3565557729941291,0.3570029788172992,0.3581068667768969,0.3590305175214667,0.3597859942474777,0.3600510078662733,0.3603311563458391,0.3618423220110038,0.3624355394130445,0.3629890046815304,0.3632906626506024,0.3632394673652041,0.3646349433914528,0.3654274841818468,0.3680439571079321,0.3686504082114824,0.3711760316822591,0.3724137931034483,0.373911812584047,0.3752345215759849,0.3761232349165597,0.3772968339851074,0.377076306243238,0.3749518601247785,0.37660485021398,0.380080817684811,0.3805282555282555,0.384928716904277,0.3895671476137625,0.389739663093415,0.0,1.9428338560613292,60.502794965358575,218.98186109006377,329.3381000317163,fqhc8_80Compliance_baseline,72 -100000,95683,41114,386.0873927447927,7277,74.83042964789983,5697,58.965542468359054,2335,24.048159025114177,77.34181859432726,79.72309361625345,63.3271521787835,65.08500198274152,77.0506968942303,79.43104177736137,63.22021639774343,64.98014903828029,0.2911217000969657,292.0518388920783,0.1069357810400717,104.8529444612285,81.09332,56.807965488385136,84752.06672031604,59371.01207987327,219.85805,132.7747556576201,229196.35671958447,138184.06159675185,260.86104,123.52991039850448,268909.99446087604,126289.28562675342,4170.73286,1875.1482975102851,4319092.064421058,1919935.931680953,1413.71111,614.333092815592,1461202.3765977237,625758.2358575631,2308.39982,966.9499533787624,2378427.4113478884,981938.745811003,0.38062,100000,0,368606,3852.3666691052745,0,0.0,0,0.0,18286,190.52496263704103,0,0.0,24463,251.9360805994795,2091752,0,75090,0,0,3223,0,0,36,0.3762423837045243,0,0.0,1,0.0104511773251256,0,0.0,0.07277,0.1911880615837318,0.3208739865329119,0.02335,0.3083355108440031,0.6916644891559969,25.182579621966205,4.530922514888397,0.3257855011409514,0.1929085483587853,0.2403019132876953,0.241004037212568,10.97514189750547,5.542443765468556,24.95192083667476,13137.912037985709,64.34401757717427,12.933090336178532,20.88715074300268,15.290924714718324,15.232851783274745,0.5462524135509917,0.7843494085532302,0.6923491379310345,0.5902118334550767,0.1143481427530954,0.6844380403458213,0.909375,0.8521739130434782,0.7266881028938906,0.138047138047138,0.5017405430494314,0.7329910141206675,0.6396848137535817,0.5500945179584121,0.1078066914498141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025012404937671,0.0048247970240327,0.0070310359871351,0.0092827689870203,0.0113881319396429,0.0138877575955037,0.0158904891498231,0.0177005604156671,0.01984893549607,0.0220905117259875,0.0242496949562685,0.0264155206589501,0.0283124659211325,0.0303882774823791,0.0326266462986664,0.0346714384716432,0.0365388601036269,0.0385721553684341,0.0405621905039324,0.0426492358374512,0.0565787411856881,0.0703859605034449,0.0840400520592804,0.0972568578553615,0.1096636040464561,0.1255222601834124,0.1392266717599372,0.1518751530248352,0.1641610838649015,0.1761671367745948,0.1908736483866799,0.2044522807662769,0.2168167580266249,0.2285355053845733,0.2385949858640529,0.251043893362278,0.2622002946823235,0.2717813150345913,0.2809442742027012,0.2896171733602144,0.2978304888631761,0.305319933076716,0.3130799091081234,0.3199002410043045,0.3267409775487133,0.333436120087821,0.3387949392458975,0.344820557247143,0.3498670471496206,0.3549520977865874,0.3561545930201197,0.3569479660456399,0.3575572777707195,0.3585648717911593,0.3593031047576502,0.3602298391433268,0.3602444056498968,0.3606195782785468,0.3616959264847071,0.3630356535286428,0.3640170506825906,0.365673269486249,0.3678651827228545,0.3692695100838635,0.370587097398201,0.3703596668680871,0.3720415900735294,0.3738904387522191,0.3767704376841432,0.378055143075009,0.3802181617342477,0.3846648104519169,0.3881877839475012,0.3903428221610039,0.3881312893821123,0.3907522759942501,0.3888545847483791,0.3847405900305188,0.3843793584379358,0.3860808709175738,0.0,2.2731676153515923,61.30092163157641,220.63817598985736,324.5999457436758,fqhc8_80Compliance_baseline,73 -100000,95683,41084,386.07694156746754,7157,73.68080014213601,5577,57.74275472131935,2264,23.27477190305488,77.38307130315455,79.75925806974348,63.34642469116329,65.09742316008527,77.10280922293886,79.4801211968966,63.24341348994275,64.997803620475,0.2802620802156923,279.1368728468768,0.1030112012205393,99.61953961027348,81.5683,57.10761102792896,85248.24681500372,59683.96060943842,219.97488,133.31797883440183,229359.15470877796,138793.36094541542,257.26815,122.57790025568492,266259.5549888695,126027.34056991522,4042.18444,1800.5016652361262,4184813.331521796,1842061.2581494355,1332.0542,575.700561573281,1374425.1538935862,584120.7047478423,2227.981,925.5244889226452,2291957.401001223,934309.2364054036,0.37832,100000,0,370765,3874.920309772896,0,0.0,0,0.0,18295,190.62947441029232,0,0.0,24061,248.74847151531617,2088355,0,75024,0,0,3257,0,0,48,0.5016565116060324,0,0.0,0,0.0,0,0.0,0.07157,0.1891784732501586,0.3163336593544781,0.02264,0.310866392463845,0.6891336075361549,25.439523100005264,4.516757529108225,0.3171956248879325,0.2103281334050565,0.2404518558364712,0.2320243858705397,10.94494148883786,5.4118198383899045,24.06079148506222,12984.963044268963,62.44341847575659,13.620902957045308,19.87385536137729,14.82379603938759,14.124864117946384,0.5416890801506186,0.7800511508951407,0.6851328434143584,0.5585384041759881,0.1120556414219474,0.7015250544662309,0.9137466307277629,0.8447488584474886,0.7293729372937293,0.1358490566037735,0.4892857142857142,0.7182044887780549,0.6326070623591284,0.5086705202312138,0.1059280855199222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0043665025429051,0.0068660561251914,0.0090478898411795,0.0114991612017691,0.0137219174038295,0.0158820771065669,0.0178219640906817,0.0199625893103554,0.0221016532732763,0.0242882188297774,0.0264006407623428,0.0281591640698116,0.0303754441983828,0.032321294089732,0.0344578114018768,0.0363510167718142,0.0384128367999335,0.0405062501299943,0.0424483074870768,0.0572577696526508,0.0715452261306532,0.0849157556809836,0.0975163508653866,0.1093713755509162,0.12494052716719,0.1389015508888724,0.1510443253360558,0.1626048357839475,0.1738399065710949,0.1886256536053192,0.2018056982213331,0.2137631930781856,0.2252888388514215,0.2357496425035749,0.2472187749313004,0.2579488725835092,0.2684973474651679,0.2775159286306488,0.2862006120834909,0.2936811151245716,0.3022692145566952,0.309613812226712,0.3163814004849125,0.3229479677368337,0.3297172547422464,0.3361691997343725,0.341650207072316,0.346696246707923,0.3516586675128581,0.3525201191647682,0.3537685811508947,0.3542586350365993,0.3541929039822816,0.355297619047619,0.3554436134105324,0.3556173084557364,0.3560917799651051,0.3569713187868807,0.3576739103172754,0.3577799430370259,0.3588112081571355,0.3602614598173133,0.3614827077088273,0.36252193351441,0.3635581958883764,0.3635768563053191,0.3645382055628806,0.366226375324949,0.3682376237623762,0.3691831345050542,0.3697803651759724,0.371776369454728,0.3739763421292084,0.3747317346272277,0.3805506736965436,0.3798040693293142,0.3802678219771563,0.3806070373354821,0.381838481577968,0.0,2.066386056238405,60.92638113641134,201.5965233943885,326.92588387235975,fqhc8_80Compliance_baseline,74 -100000,95706,41205,386.5588364365871,7354,75.7528263640733,5717,59.29617787808497,2377,24.54391574195975,77.3960056150407,79.78200640885429,63.35197710932333,65.11375996522303,77.10290572378243,79.48399969367667,63.24456031253568,65.00638184850614,0.2930998912582794,298.0067151776211,0.1074167967876533,107.37811671688746,81.34456,57.00205882732958,84994.21143919922,59559.54572057089,223.84894,135.4610841131379,233432.3030948948,141078.78723709894,259.45352,123.79795831576764,268062.88007021503,126977.5951168881,4143.06789,1867.6828188408883,4300808.068459658,1923334.27250213,1400.7285,615.4419798412281,1452027.7516561134,631508.118447357,2342.13468,980.9422454490156,2420288.3413788057,1001539.9573748058,0.38064,100000,0,369748,3863.373247236328,0,0.0,0,0.0,18600,193.8749921635007,0,0.0,24321,251.21726955467787,2090324,0,74953,0,0,3242,0,0,54,0.5537792823856393,0,0.0,0,0.0,0,0.0,0.07354,0.1932009247583018,0.323225455534403,0.02377,0.3026315789473684,0.6973684210526315,25.150541848729517,4.557021814592673,0.3195732027287039,0.2022039531222669,0.2410355081336365,0.2371873360153926,10.918306792087527,5.398281312325761,25.29581069782368,13024.50911107326,64.37277980845018,13.630168661786406,20.40278678365279,15.403169314706018,14.936655048304964,0.536295259751618,0.7750865051903114,0.6672140120415982,0.5878084179970973,0.1039823008849557,0.696636925188744,0.9477806788511748,0.8755980861244019,0.7126099706744868,0.1365079365079365,0.4814553990610328,0.6895213454075032,0.6053938963804116,0.5467695274831244,0.0941402497598463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0045527367118898,0.0065569111467489,0.0089103378206756,0.0111997233129208,0.0135523153993402,0.0156611641873222,0.0180297910136908,0.020211004109673,0.0224262523286044,0.0245335247078121,0.0268899452755218,0.0287759425715284,0.0307678045363713,0.0325732562938506,0.0345148385896362,0.0370193901226383,0.0392867151739098,0.0412762461391266,0.043093565666882,0.0573183213920163,0.0715257429886982,0.0843445520047825,0.0969417256278976,0.1094281949934123,0.1251810885403999,0.139744337771177,0.1528815652210938,0.1646121306642169,0.1752466752466752,0.1888186449257412,0.2020162686050536,0.2141646199656589,0.2256643456018189,0.2366065537717176,0.2480624446412754,0.2584974064364995,0.2679034958591318,0.2776644453511038,0.2865262989352333,0.2945246621231373,0.3024529844644317,0.3099788438582184,0.316405080870117,0.3237114152591729,0.3299498006791673,0.3360683376419017,0.3421523695870203,0.3477760835293205,0.3523840885142255,0.3537388452854532,0.3545981431632148,0.3550539026655783,0.3559118815456843,0.3571598371616201,0.3565891472868217,0.3555379496117889,0.3563696098562628,0.3568679768074298,0.3583853263492858,0.3601756954612006,0.3605626557986784,0.3618296926753595,0.3632928656069041,0.3644314868804664,0.3657982073326887,0.3684225536890739,0.3697107490210938,0.3724514991181658,0.3727789338882664,0.3715615352716214,0.3738132274848468,0.3734870684163587,0.37549042234018,0.375548768849017,0.3790400385914134,0.3836886005560704,0.3829438294382943,0.3828603227601558,0.3708171206225681,0.0,1.6913566730610097,65.00010316850577,209.19819319262237,327.41275917527247,fqhc8_80Compliance_baseline,75 -100000,95825,41577,389.52256717975473,7199,73.91599269501695,5635,58.252021914949125,2242,23.02113227237151,77.38566316619061,79.7055796861788,63.36611244363343,65.08362260349462,77.11357768463515,79.43406251935308,63.26659087698924,64.9870714876552,0.2720854815554645,271.517166825717,0.0995215666441851,96.55111583941788,81.17318,56.83342817697646,84709.81476650144,59309.60415024937,222.05035,134.92221825305495,231180.6626663188,140256.44482447684,259.99573,124.48770919567306,267853.6811896687,127175.96285763705,4054.52732,1818.5498888984496,4192971.7714583874,1859801.5457572024,1368.06199,593.579349182583,1413111.1714062092,605093.1279656648,2207.56522,909.6066269301944,2268750.138272893,920154.4131761632,0.38296,100000,0,368969,3850.446125750065,0,0.0,0,0.0,18501,192.49673884685623,0,0.0,24354,250.6444038612053,2093140,0,75098,0,0,3127,0,0,35,0.3652491521001826,0,0.0,0,0.0,0,0.0,0.07199,0.1879830791727595,0.3114321433532435,0.02242,0.3220472440944882,0.6779527559055119,25.234796929836143,4.469241190511784,0.3217391304347826,0.2138420585625554,0.2333629103815439,0.231055900621118,11.187802103069954,5.762744451997255,23.70016289126065,13123.541746649098,63.50416567982182,14.03003737981214,20.605269215721897,14.556479039433404,14.312380044854375,0.54924578527063,0.7883817427385892,0.6993932708218422,0.5551330798479087,0.1129032258064516,0.7164285714285714,0.9324324324324323,0.8720682302771855,0.7272727272727273,0.149090909090909,0.4939787485242031,0.7245508982035929,0.6391369047619048,0.5072886297376094,0.1032132424537487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024105415615852,0.0046024553186744,0.0069013812911672,0.0092760043078048,0.0115138939745311,0.0138173302107728,0.0157783689569764,0.0181242983977956,0.0202565281823291,0.0225035305675515,0.0247286813761157,0.0268503217727781,0.029044193216855,0.0311892042120865,0.033317521861079,0.0353774802970675,0.037580837084174,0.0397396297601525,0.0413378468184083,0.0436008699362116,0.0588848902101914,0.0729257048474268,0.0859065467580655,0.0977746958330706,0.1100542476431242,0.1255452404338688,0.1397743524551088,0.15238763298579,0.1648499328057339,0.1760289597412472,0.1897239577172475,0.2027307293466989,0.2159776803161231,0.227236011963237,0.2381689785070233,0.2495991862097942,0.260043672987366,0.2698412698412698,0.279706335538838,0.2887831982347628,0.2964109554228419,0.3045985060690943,0.3120889759967885,0.3192120110930477,0.3256650675970344,0.3319778370210204,0.3381501447539183,0.3442764359650903,0.3497662283987291,0.3549160040023171,0.3560466461323254,0.3572862249106406,0.3575400903881622,0.3585500166216196,0.3590010405827263,0.3589837940603774,0.3590504451038576,0.3599683935009136,0.3611411318683203,0.3620374354561101,0.3633784291619691,0.3639682539682539,0.365475914164539,0.3678272227727232,0.3694095949913853,0.3704425711275026,0.3706923852022455,0.3723019299136617,0.3736017897091722,0.3764295172745877,0.3762699397784214,0.3789822535813555,0.3807016430882446,0.3805661820964039,0.3795169265880563,0.3832493400527957,0.3875212881250968,0.3908868001634654,0.3906640733537093,0.397919876733436,0.0,2.16912036702227,61.86306058889706,212.5180639545936,322.02602658234485,fqhc8_80Compliance_baseline,76 -100000,95771,41508,388.60406594898245,7378,75.85803635756126,5706,59.05754351526036,2299,23.65016549895062,77.37657405990127,79.72069892481306,63.3458979718325,65.07884994011654,77.08479265231324,79.42765734885089,63.23952472955833,64.97433000419608,0.2917814075880329,293.04157596217806,0.1063732422741665,104.51993592046448,81.82988,57.31307876863028,85443.27614831213,59843.87629724058,222.17796,134.0249520059043,231458.11362521013,139414.23185573143,263.80562,125.47059028787363,272282.6429712544,128495.28550204296,4139.43821,1859.0136099752533,4289159.223564545,1908173.379830042,1380.17656,602.2218623469414,1429772.6138392624,617589.8293902727,2260.73092,945.4677194679892,2328758.580363576,960332.8428153588,0.38235,100000,0,371954,3883.785279468733,0,0.0,0,0.0,18472,192.3233546689499,0,0.0,24668,254.35674682315107,2087476,0,74946,0,0,3276,0,0,43,0.4489876893840515,0,0.0,2,0.0208831483434442,0,0.0,0.07378,0.1929645612658559,0.3116020601789103,0.02299,0.3133771082786146,0.6866228917213854,25.30660912403401,4.635794746408526,0.3298282509638977,0.2029442691903259,0.2344900105152471,0.2327374693305292,11.119440510344225,5.52797074978622,24.61474471683407,13160.69196561218,64.53914364312718,13.735088215573647,21.19335074646262,14.997813800984146,14.612890880106772,0.5520504731861199,0.7823834196891192,0.6981934112646121,0.5874439461883408,0.108433734939759,0.711781206171108,0.912087912087912,0.8663793103448276,0.7554179566563467,0.1345454545454545,0.4988317757009345,0.7229219143576826,0.6431593794076164,0.5339901477832513,0.1016144349477682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.004521079787935,0.006848759106313,0.0092649030842374,0.0114718086404686,0.0136963982036842,0.0160394000265114,0.0183873075509454,0.0205890471176356,0.0229908589327573,0.0250389471958019,0.0273965572104577,0.0293812260339457,0.0314311902040143,0.0334973641587488,0.0354835708896216,0.0375559145129224,0.0398340248962655,0.0418221700123709,0.0438848621178038,0.0588216876271982,0.0731607843137255,0.0869515084173672,0.099905422446406,0.111477621220584,0.1272554304740764,0.1407518924535103,0.153446753274389,0.1660277015409916,0.1775933431984387,0.1915865203390378,0.2049875581521151,0.2172352275694021,0.2284926530924846,0.2392417186829155,0.2499057879452905,0.2608700506934054,0.2712150542475127,0.2801543612734805,0.2885939092689519,0.2967685205539679,0.303668962936106,0.3113518884328314,0.3186822401916741,0.3256701256409633,0.3327785175321793,0.3387996597618333,0.3440821931743044,0.3499656997890213,0.3556268313930466,0.3568236276014323,0.357733647110634,0.3586958053289372,0.3595978591060321,0.3607125332698913,0.3605398359021547,0.3604992308546236,0.361201979188927,0.3622771412423572,0.3632429726056791,0.3638140706351145,0.3646902619793111,0.3650122974080848,0.3671631761675439,0.367868773368713,0.3686360779384035,0.3688864722548149,0.371315067629347,0.3731622183831047,0.3744056894002956,0.3743342516069788,0.3753282246396227,0.3762690355329949,0.3801075268817204,0.3871670931665245,0.3898609779482263,0.3893094392090221,0.3891034763163244,0.3872035300606729,0.3854365230651925,0.0,1.9884955520937808,63.34605005194057,218.90964075541515,322.06168252927534,fqhc8_80Compliance_baseline,77 -100000,95748,41121,385.6581860717717,7223,74.27831390734009,5575,57.60955842419685,2290,23.52007352633997,77.3313489084019,79.69851779302681,63.31030609897547,65.06372690428145,77.0497459559745,79.41831564612588,63.208316641619454,64.96535081847352,0.2816029524274057,280.20214690093326,0.1019894573560122,98.3760858079279,80.77212,56.55005961823616,84359.06755232486,59061.34814119999,216.6892,130.6640778275405,225685.95688682792,135840.6105898196,255.23412,121.15118154289328,262677.37185110914,123514.28011496892,4078.21025,1824.9259885764343,4216217.080252329,1862868.4344074377,1382.63205,599.7932528322079,1430696.3278606343,613093.0388438482,2260.04464,931.7364922373836,2322847.0568575845,939889.8906481904,0.38071,100000,0,367146,3834.50307056022,0,0.0,0,0.0,18097,188.3485816936124,0,0.0,23878,245.57170906964112,2093616,0,75152,0,0,3105,0,0,33,0.3446547186364206,0,0.0,0,0.0,0,0.0,0.07223,0.1897244621890678,0.3170427800083068,0.0229,0.3077227200843437,0.6922772799156564,25.335671831526103,4.650894509266402,0.3257399103139013,0.1949775784753363,0.240896860986547,0.2383856502242152,11.184744235483333,5.575425214165032,24.44592877142181,13086.164519940232,63.02085976780219,12.698226054231244,20.57423167281349,15.047385728793726,14.701016311963746,0.5461883408071749,0.7690892364305428,0.691079295154185,0.5867460908413998,0.1249059443190368,0.7078402366863905,0.8895522388059701,0.8755555555555555,0.7084639498432602,0.157258064516129,0.494435235614492,0.7154255319148937,0.6303074670571011,0.548828125,0.1174838112858464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0045529675410933,0.0069626998223801,0.0092359276569802,0.0114651366253636,0.0134431872574879,0.0155091719264614,0.0175725211105098,0.0198120058505252,0.0222053792736137,0.024398999015425,0.026557764421842,0.0286502284608735,0.0306712426181863,0.0327411979645131,0.0344028870712564,0.036646612337037,0.0388618510485954,0.0411230885975945,0.042881843179735,0.0574989821803263,0.0710847407965509,0.0837660634670862,0.097082886407134,0.1095623200936303,0.1253027594741239,0.1383533007205238,0.1509793688157039,0.1627357734437617,0.1746459227467811,0.1885245018267251,0.2017866811044937,0.214882060325028,0.226497083000405,0.2370179552385041,0.2489137181874612,0.2600330526832972,0.2699225608932511,0.2791969767468252,0.2880483976305327,0.2963018693211413,0.3045036183517178,0.312649645591826,0.3193692124764295,0.3257231870124496,0.3318646870796154,0.3374506733479486,0.3436170483784679,0.3493993097900827,0.3550173101826158,0.3556443017310001,0.3564608792692503,0.3575609687292833,0.3581383232753006,0.3587253910664367,0.3588784473639834,0.3586928974212761,0.3597764444809731,0.3605397907283407,0.3616013159541562,0.3638821100056317,0.3652432378876449,0.3665217299976894,0.3668057612060842,0.3688198248196317,0.3703965264699728,0.3707406243751964,0.3727919102543846,0.3754423213021939,0.3756970353432021,0.3784814780770291,0.3826876836761955,0.383673728276037,0.3848099325567137,0.386829727187206,0.3801224682053697,0.3831139355424421,0.3872568479555379,0.3831521739130434,0.3820053373999237,0.0,2.4427398033964214,59.59156654379011,221.88580311110337,310.73761680936417,fqhc8_80Compliance_baseline,78 -100000,95500,40731,382.4188481675393,7228,74.56544502617801,5623,58.39790575916231,2280,23.612565445026178,77.22623088476638,79.71357680340381,63.24095407219974,65.07629485382986,76.94917361779858,79.4317593554878,63.13966659809386,64.97501824633085,0.2770572669678017,281.81744791601204,0.1012874741058809,101.2766074990168,80.95538,56.679428970024894,84770.03141361257,59350.18740316742,220.10694,133.1518266666743,229997.7277486911,138945.25305410926,258.41533,122.5948884647778,267213.86387434555,125794.02251567846,4076.36222,1823.7598110863344,4238568.178010471,1879822.2000904027,1369.82717,592.2712838005792,1423212.9109947644,609018.2657597696,2254.14706,936.831465193368,2336619.497382199,960519.439745408,0.37542,100000,0,367979,3853.1832460732985,0,0.0,0,0.0,18374,191.90575916230367,0,0.0,24168,249.67539267015707,2084867,0,74858,0,0,3291,0,0,42,0.4397905759162304,0,0.0,0,0.0,0,0.0,0.07228,0.1925310319109264,0.3154399557277255,0.0228,0.317614606593984,0.682385393406016,25.36855624773674,4.607054836949901,0.3366530321892228,0.1952694291303574,0.2281700160056909,0.2399075226747287,11.09296299279612,5.445122811824259,24.318000439487232,12936.037697463898,63.58951647852276,12.879479323957536,21.517519160594976,14.36833692410339,14.824181069866862,0.5433042859683443,0.7686703096539163,0.6920232435287903,0.5876851130163678,0.1089696071163825,0.6985185185185185,0.9156976744186046,0.8558951965065502,0.7228070175438597,0.1140684410646387,0.4942663234261643,0.7015915119363395,0.6397212543554007,0.5490981963927856,0.1077348066298342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0044630630813393,0.0068024448189737,0.0088967971530249,0.0109341912363577,0.0132293736941344,0.0156124042082062,0.0179122473586332,0.0202256846757445,0.0222741337267678,0.024470356380358,0.0268764137363767,0.0291404094073067,0.0312200253720721,0.0333002707003078,0.035501304509877,0.0374880710343969,0.0393430694870329,0.041483487863319,0.043186801712436,0.0575785804749892,0.0713940996265055,0.0842105263157894,0.0971165398478173,0.1089823523195604,0.1246210916799152,0.137792094575918,0.1502885856635336,0.1626024096385542,0.1740364152281863,0.1874399473155775,0.2004902439288929,0.2124463051394431,0.2236899802674852,0.2346242965905329,0.245451817605939,0.2563887397064088,0.2660765631166488,0.2751609893735636,0.2844646485518476,0.2921577726218097,0.2998369558842504,0.3072239103598898,0.3136189296750069,0.3203336503987707,0.3266543730894419,0.3319502074688796,0.3381542435518727,0.3439377780090003,0.3495931727226948,0.3499188311688311,0.350312051253728,0.3515534447177225,0.3534166799461096,0.3540976759449864,0.3541259559015863,0.354158376442499,0.3552275279043656,0.3569512279012176,0.3584614001977173,0.3605970374279145,0.3611796054724785,0.3620504392895519,0.3628163311213587,0.3649536321483771,0.3662484611959454,0.3667688253659095,0.3689136208422916,0.369938520245919,0.3731408923716616,0.3738699463081088,0.3730235042735043,0.3736118122160525,0.376092408237708,0.3731231931362492,0.3746766988008465,0.3755189912348147,0.3814814814814815,0.3820005572582892,0.3757739938080495,0.0,1.9014054587051488,59.91246104216897,223.1934088884234,318.18531938237487,fqhc8_80Compliance_baseline,79 -100000,95709,41167,386.086992863785,7372,75.90717696350396,5741,59.39880262044321,2337,24.03117784116436,77.36399481233721,79.74895007901448,63.33329461681414,65.0973246886352,77.08344470939358,79.46607460402997,63.23155889406375,64.99704195715157,0.2805501029436357,282.8754749845075,0.1017357227503978,100.28273148363098,81.02248,56.80933218769584,84655.02721792099,59356.31151479572,222.20131,133.91879719849453,231579.6111128525,139339.05609555478,261.2319,123.92012564581204,268724.1952167508,126323.1372987456,4131.66015,1851.7801595060887,4276474.960557523,1894450.6398625916,1383.77091,597.7091078710034,1435572.4644495293,614288.6721238369,2295.49048,949.3222736144525,2362749.0622616475,964199.3915748493,0.37939,100000,0,368284,3847.955782632772,0,0.0,0,0.0,18495,192.63601124241188,0,0.0,24464,251.4392585859219,2093231,0,75117,0,0,3368,0,0,36,0.3761401749051813,0,0.0,1,0.0104483381918105,0,0.0,0.07372,0.1943119217691557,0.3170103092783505,0.02337,0.3230511099638616,0.6769488900361383,25.397060600905355,4.613918983138295,0.3274690820414562,0.2074551471869012,0.2353248562968124,0.2297509144748301,11.32941817246441,5.671782928318116,24.826510099490637,13072.03972091325,64.79709437115783,14.021191730588097,21.040307762153915,15.165242152762808,14.57035272565302,0.5413690994600244,0.746431570109152,0.6920212765957446,0.5595854922279793,0.1228203184230477,0.6840974212034384,0.8773841961852861,0.8662131519274376,0.6918238993710691,0.1148148148148148,0.495512082853855,0.6881067961165048,0.6386379430159833,0.5188770571151985,0.1248808388941849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024923759637693,0.0043607451803624,0.0066494761634045,0.0089131451104742,0.0112130893994586,0.0131833649163559,0.0155963115590191,0.0178316107684137,0.0201487118120544,0.0223225713963894,0.024345222224501,0.0264355184915116,0.028636083110471,0.0309009603099369,0.0329218956406869,0.0350503525713931,0.037104944218279,0.0390901449666379,0.0411222336566148,0.0432295573893473,0.0573988783406961,0.0714681962339986,0.084659526032542,0.0970608339029391,0.1096179183135704,0.1252484458916564,0.1396897432906721,0.1528470678339308,0.1647399152442864,0.1761421482997717,0.1902020701973358,0.2028294234076381,0.2158600367523133,0.2273457917354649,0.2379066851448558,0.2499723237019816,0.2607992504935366,0.2702626726037871,0.279500357373813,0.2876359473382942,0.2958041311035551,0.3036971213432172,0.3110040483912971,0.3176935986573963,0.3240139972297149,0.3304669212763336,0.3373834699368078,0.342698771898599,0.3479627473806752,0.3533815756521281,0.3543874751170173,0.3553230396942157,0.3565918752287379,0.3570066454781855,0.3581311796668547,0.3583342251303297,0.3579759158001201,0.3589886352471096,0.359837700530201,0.360406363263047,0.3617528385098996,0.3626821926489227,0.364063811922754,0.3632442147831948,0.3641802566824278,0.3650918635170603,0.3654778641723811,0.3678295185477506,0.3702096125344061,0.3733466135458167,0.3753823677121855,0.3779799914857386,0.3780573025856045,0.3780929623063285,0.380743146432324,0.3833615068823955,0.3824588880187941,0.3792029887920299,0.3842015855039637,0.380990099009901,0.0,2.261172679282721,61.841050039977695,223.8037605938885,324.2630964606176,fqhc8_80Compliance_baseline,80 -100000,95691,41373,387.1837476878703,7378,76.09911067916522,5737,59.59808132426247,2349,24.244704308660165,77.31725194233033,79.72592932452251,63.30264576078415,65.08524106825567,77.03267816162773,79.43724384724794,63.20006341901414,64.98290332414227,0.2845737807026012,288.6854772745693,0.1025823417700095,102.3377441133988,81.16152,56.866145133871576,84816.25231212967,59426.84801483063,222.06547,134.0671065986763,231724.85395700744,139763.89273670074,258.58543,122.59596076858652,268612.1683334901,126719.972685461,4158.29829,1851.628002785569,4322262.490725356,1911722.014385437,1403.091,601.276996321211,1457955.3354024934,620035.3599828734,2317.98198,952.1669950170296,2395282.837466428,972478.0481684444,0.38064,100000,0,368916,3855.284196005894,0,0.0,0,0.0,18449,192.44234044999007,0,0.0,24161,250.82818655881957,2089713,0,75024,0,0,3331,0,0,41,0.4284624468340805,0,0.0,0,0.0,0,0.0,0.07378,0.1938314417822614,0.3183789644890214,0.02349,0.3165938864628821,0.6834061135371179,25.429093644558424,4.5836858073523405,0.3280460170820987,0.1981872058567195,0.2344430887223287,0.239323688338853,10.945021662575122,5.401107074512388,24.96993126496168,13124.374068272107,64.72323744449122,13.413527792816511,21.163353274524123,15.090755111964624,15.055601265185969,0.5365173435593515,0.7590149516270889,0.6822529224229543,0.5724907063197026,0.1172614712308812,0.681915654038599,0.8970588235294118,0.8251599147121536,0.7084639498432602,0.1328413284132841,0.4896265560165975,0.7001254705144291,0.6348195329087049,0.530214424951267,0.1134301270417422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0048978350149571,0.0071445243918528,0.0094401934782387,0.0117922368621864,0.0141998573902414,0.0161385754799747,0.0184190094802222,0.0206768840416607,0.0226418187220178,0.0245511439417256,0.0268398446330586,0.0290384674771223,0.0312181040259807,0.0335963480883233,0.0359840254929956,0.0380847733468782,0.0403028163163578,0.0423849603096162,0.0443117143035837,0.0586397826995403,0.0718219895287958,0.0862532278042533,0.0984850078905839,0.1105590717299578,0.1266309006063299,0.1400191021967526,0.1530556827499547,0.1652489848258174,0.1761109502204202,0.1896822832525579,0.2028572974728069,0.2147396139365846,0.2262474143308999,0.2366513943345521,0.2486424186005275,0.2593534853100347,0.2697935999100163,0.2786650936975361,0.2874612134605036,0.2948112661713994,0.302556784954034,0.3104509773741727,0.3171965664412794,0.3242001361470388,0.3312399753238741,0.3373921104388239,0.3431048089407092,0.349192158691906,0.3550294296196584,0.3566120042006624,0.3572637575857656,0.3583268783888458,0.3591118692088639,0.3599273084772019,0.3595217237616611,0.3593023440351685,0.3605618033029819,0.3613997842798199,0.3629127463957357,0.364394993045897,0.3668649613325401,0.3676315678590991,0.3691196652343135,0.3703227683876131,0.3710736421893056,0.3727997247864228,0.3759636041956274,0.3770845110231769,0.3791794830823313,0.3815475096489616,0.3821621911346947,0.3862521500923743,0.3880965230128749,0.3890898705255141,0.3900395067640368,0.3901526955437831,0.3952292823360065,0.3885245901639344,0.3902624572080639,0.0,1.4032816131301469,62.87971365396261,217.9341769224229,330.95228760440995,fqhc8_80Compliance_baseline,81 -100000,95859,41109,387.24585067651446,7205,74.10884736957406,5567,57.52198541607987,2250,23.190310768941885,77.4717338221379,79.75909499308283,63.40399372213196,65.09096528219959,77.2044320824131,79.4882366631683,63.30788168668519,64.9953117358837,0.2673017397248003,270.85832991453174,0.0961120354467723,95.65354631588718,81.5254,57.01474099684665,85047.20474864123,59477.71309615857,218.92173,132.35534852267918,227857.74940276865,137551.79849850215,254.12745,120.33293997669132,260804.3167569033,122252.2223841532,3992.71542,1762.9433157341105,4130075.871853452,1804169.6550829136,1315.01842,564.4740259685317,1358944.3557725411,576061.0304347359,2203.52128,899.4731176479277,2273478.838711024,917740.8860459558,0.38011,100000,0,370570,3865.7820340291473,0,0.0,0,0.0,18239,189.7161455888336,0,0.0,23774,243.7851427617647,2095791,0,75115,0,0,3228,0,0,40,0.4068475573498576,0,0.0,0,0.0,0,0.0,0.07205,0.1895503933072005,0.3122831367106176,0.0225,0.3252331538158413,0.6747668461841587,25.456289223135883,4.464557300588599,0.3254894916472067,0.2137596551104724,0.2308245015268547,0.2299263517154661,10.920587273216098,5.541327698515604,23.64231310004816,12997.860894543326,62.24268286337026,13.827085700515216,20.42939072585329,14.18335361747814,13.80285281952363,0.5417639662295671,0.7831932773109244,0.6876379690949227,0.5525291828793775,0.1,0.7188693659281895,0.9224137931034484,0.8562231759656652,0.6996336996336996,0.1351351351351351,0.4873179896665101,0.7256532066508313,0.6292719167904903,0.5128458498023716,0.0926275992438563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019333940682255,0.0040522332870703,0.0059522602364679,0.0081912302070645,0.0102430696691325,0.0122193168984708,0.0142918262570287,0.0162894358367588,0.0184424973959928,0.0205248302380757,0.0225831890945216,0.0249625664061698,0.0269764957264957,0.0289124395513941,0.0306869253288253,0.0324146263385619,0.0344866821825704,0.0366462845890765,0.038729506069007,0.040803371663458,0.0557420807874377,0.0700465164898343,0.0831613031678001,0.0959025005253204,0.1073382022827152,0.1228038647751538,0.1365347301008344,0.1497335304817726,0.1616866826794769,0.1732733215453035,0.1872390789756832,0.2013291549600173,0.2135303569877529,0.225506784416038,0.2363638360256086,0.247899902732337,0.2584758977100597,0.2686396245691639,0.277892901224083,0.2877573651298115,0.2964600748164226,0.3043518831721741,0.3114256705704571,0.319060657874284,0.3261452256491735,0.3319673139875458,0.3381101712914954,0.3439504197305089,0.349822910472842,0.3553598230507939,0.3555200043020004,0.3564109247040425,0.3568980050576004,0.3577345877335792,0.3586885634671251,0.3575334514572004,0.3571101460718515,0.3586531060122176,0.3593723378880294,0.360774818401937,0.3627505984440455,0.3634534587845434,0.3642848178052964,0.3648823608196794,0.3659168305434313,0.3662547157538702,0.3663135773719932,0.368452380952381,0.3716065710705833,0.3729902269861286,0.3747685916828464,0.3773824650571791,0.3795017344686219,0.3819923371647509,0.3821904761904762,0.3818968626036783,0.3807987711213517,0.3797775530839231,0.3771209633278599,0.3810975609756097,0.0,2.192413514094592,57.77799069068389,211.55123230892696,323.4712091501007,fqhc8_80Compliance_baseline,82 -100000,95748,41350,388.01854869031206,7251,74.46630739023269,5649,58.507749509128125,2217,22.87254041859882,77.34438518034166,79.69920372217254,63.33412346583962,65.07301661510719,77.07645714376372,79.42766859673486,63.23614715979806,64.97570519841199,0.2679280365779419,271.5351254376799,0.0979763060415592,97.31141669520582,81.10388,56.849951150256295,84705.56042946066,59374.55732783587,224.71836,135.52700254278886,234167.5648577516,141015.37634497733,260.23525,123.47781537676563,268730.70977983874,126579.0293807897,4087.3199,1816.4792176535648,4235094.957597026,1863658.2013701547,1331.932,578.2110749932012,1378192.23378034,591112.9602979232,2192.92422,905.379117601,2264295.692860425,922958.6568381484,0.38101,100000,0,368654,3850.2527467936666,0,0.0,0,0.0,18650,194.280820487112,0,0.0,24380,251.5352801102895,2089477,0,75027,0,0,3237,0,0,42,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.07251,0.1903099656177003,0.3057509309060819,0.02217,0.3160383554446341,0.6839616445553658,25.594316597642905,4.565011659330877,0.3329792883696229,0.199150292087095,0.2370331032041069,0.230837316339175,11.042470731589969,5.531043010810933,23.447490978909588,13097.48650456565,63.297570312655495,13.129958074544566,21.25905094933921,14.619872331273807,14.2886889574979,0.5478845813418304,0.7591111111111111,0.7139819245082403,0.5728155339805825,0.1004601226993865,0.7212990936555891,0.9114285714285716,0.8881578947368421,0.7380073800738007,0.1255060728744939,0.4947976878612716,0.6903225806451613,0.6582456140350877,0.5308988764044944,0.0946073793755913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021879178315303,0.0045420903754321,0.006645765480575,0.0090389283284076,0.0111230859954856,0.0133763602862581,0.0154705366788283,0.0176539619368335,0.0199446209806786,0.0222858896961015,0.024561439462251,0.0270447804086994,0.0290978634148347,0.0312767118773236,0.0332790030741298,0.0353728983455445,0.0371071916532107,0.0392305299180752,0.0409469767828563,0.0428610115823681,0.0575210614775918,0.0712103137230279,0.0852806678972982,0.0982175719017824,0.1103214104943479,0.1256106587712805,0.1386116561489102,0.1515325609353888,0.164007262629499,0.1750396672241519,0.1895595818665288,0.2023559699716591,0.2155344872575454,0.226611431132292,0.2374437760499719,0.2483975600845778,0.2589162165781368,0.2688656964844013,0.2784610497174885,0.2875170336780148,0.2954971423282505,0.3036401717702398,0.3106958137553112,0.3176539744235706,0.3242185601088911,0.3310092920517788,0.3378127663841949,0.343821313377274,0.349979252035894,0.355288023152859,0.357039871720588,0.3577318594182349,0.3582878653301188,0.358607920849365,0.3597505618311976,0.3598955934285275,0.3594472242077675,0.3599874930059573,0.3612595942982456,0.3627930299611382,0.3649118193940988,0.3663121199516707,0.3674018063432052,0.3668215383924764,0.3677177721396641,0.3711108203584979,0.3722347823598432,0.3735850249794473,0.3763759525825571,0.3781764423845293,0.3797161172161172,0.3820224719101123,0.3849178664298852,0.3857697874609583,0.3878879351004622,0.3807546274323683,0.3834436067087244,0.3804213135068153,0.3832635983263598,0.381174640217814,0.0,1.942447835992336,58.56430891173311,218.77951876011,326.05348196337115,fqhc8_80Compliance_baseline,83 -100000,95650,41082,385.88604286461054,7345,75.45216936748562,5735,59.16361735493988,2303,23.565081024568737,77.28108161739658,79.66650578840908,63.29287913429015,65.05469176638752,76.99640490410958,79.384251431516,63.18800186456361,64.95372685504061,0.2846767132869985,282.2543568930769,0.1048772697265434,100.96491134690666,80.82338,56.57912902011317,84498.63042341871,59151.79887100176,220.73723,134.03628887313738,229980.491374804,139338.131748281,261.19167,125.03635936879124,267073.0162049137,126253.2166884475,4125.1301,1840.907136521248,4263757.919498171,1875805.5915369133,1404.83725,602.8202116078036,1451085.436487193,612710.6399300625,2269.75828,943.7434247220084,2326923.4082592786,948660.1517830878,0.37823,100000,0,367379,3840.8468374281233,0,0.0,0,0.0,18395,191.4898065865133,0,0.0,24435,249.4929430214323,2086654,0,74938,0,0,3178,0,0,38,0.3972817564035546,0,0.0,0,0.0,0,0.0,0.07345,0.1941940089363614,0.3135466303607896,0.02303,0.3106267029972752,0.6893732970027248,25.4569423243546,4.526332966984629,0.3251961639058413,0.2097646033129904,0.230514385353095,0.2345248474280732,11.021192198963854,5.416582785216847,24.638562248971265,13066.23114162383,64.67814531334973,14.057502087778706,21.113322587359693,14.731737158579856,14.77558347963148,0.5448997384481256,0.7655860349127181,0.6836461126005362,0.5816944024205749,0.1189591078066914,0.7005730659025788,0.9252873563218392,0.8354700854700855,0.7012987012987013,0.1801470588235294,0.4948144733809633,0.7005847953216374,0.6327845382963493,0.5453648915187377,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0047344356694613,0.0071343759197052,0.0093568083225813,0.011665276732502,0.0140625636430287,0.0160694985419173,0.0183158410585208,0.0204651162790697,0.0224567293421631,0.0247511047769427,0.0266540720358125,0.0287947346770876,0.0306830007109224,0.0327264846120502,0.0347194937860584,0.0365551745926516,0.0385789014821272,0.0407967961720497,0.0427758437389256,0.0566043649508446,0.0705841701307812,0.0840225879586867,0.0962396363789402,0.1084220409971831,0.1238825707484792,0.1378131634819533,0.1509671097477846,0.1626947215361751,0.1751403936390675,0.1887201501391375,0.2021804625354921,0.2144086255717708,0.2263409185483694,0.237455651292448,0.2487051803875032,0.2596401028277635,0.2696341861853742,0.2793512604277953,0.288123150336094,0.2962619530570849,0.3035546801725755,0.311254271070615,0.3180856943743542,0.3255420425355782,0.3316293140705069,0.3377603872731605,0.3433022442808477,0.3491226475134103,0.3547703554590242,0.3554915639195328,0.3566028608942022,0.3577269184439878,0.357992937791534,0.3587302536204809,0.3582183766473704,0.3584878653901205,0.3598844407758976,0.3605184892296584,0.3616077840011489,0.361793217909547,0.3623032261926138,0.3632437924684066,0.3631743019788561,0.3651271834989432,0.3651164622777763,0.3669885612461919,0.3689988894177375,0.3718704756523888,0.3727454110135674,0.3764124616862619,0.3779330204778157,0.3802192232148514,0.3825544222864971,0.3825105782792666,0.3798921959221936,0.3802170921877388,0.3804435483870967,0.3821932681867535,0.3833976833976834,0.0,3.028011193244452,60.97892707341085,217.3347014762672,331.8584358144411,fqhc8_80Compliance_baseline,84 -100000,95720,41244,388.0484747179273,7402,76.08650229837025,5736,59.28750522356874,2334,23.976180526535728,77.3612597271838,79.72587921995748,63.34108899169471,65.08857263098538,77.07656533025616,79.44180000977119,63.23662942288949,64.98726550007737,0.2846943969276481,284.0792101862917,0.1044595688052183,101.3071309080118,81.31574,56.98206401234504,84951.6715419975,59529.94568778211,220.98147,133.25004540490488,230256.08023401588,138601.85478991317,261.13611,124.72162698973383,268263.7484329294,126831.43460429134,4160.98208,1852.893794110081,4304997.952361053,1893706.387494861,1380.90909,592.4636973784806,1428924.95821145,605225.2166511499,2304.05816,955.3780452602036,2369521.6673631426,965905.3933356416,0.37976,100000,0,369617,3861.439615545341,0,0.0,0,0.0,18374,191.30798161303804,0,0.0,24423,250.7730881738404,2091474,0,75046,0,0,3242,0,0,44,0.4387797743418303,0,0.0,0,0.0,0,0.0,0.07402,0.1949125763640193,0.3153201837341259,0.02334,0.3200205470656222,0.6799794529343778,25.277292069429663,4.563945740661685,0.3364714086471408,0.1966527196652719,0.2285564853556485,0.2383193863319386,11.067976328138576,5.476996871851688,24.862529440550453,13108.352121940028,64.39315517181092,13.152645847847394,21.636534072129265,14.622954101231068,14.981021150603166,0.5406206415620641,0.7588652482269503,0.6974093264248704,0.5758962623951183,0.1053401609363569,0.7060070671378091,0.9264305177111716,0.8611713665943601,0.7402597402597403,0.1218637992831541,0.4864614672529507,0.6780551905387647,0.6460176991150443,0.5254237288135594,0.1011029411764705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474660913078,0.0045218590315516,0.0067077997199163,0.0090317074905263,0.0111868198921997,0.0135231461681024,0.0155711459629229,0.0177668862000306,0.0199167748729641,0.0219287469287469,0.0237355561707319,0.0259025317105736,0.0281186041488825,0.0303486072193835,0.0324128536932697,0.0341266231080969,0.0363278620618236,0.0381162894471944,0.0399413514131813,0.0420109403490492,0.0567087814555706,0.0721380797370707,0.0856192764006755,0.0978654048370136,0.1098615005164744,0.1252867366462647,0.138611131729352,0.1511836995265202,0.1630529980988187,0.1750846803584444,0.1889689178859425,0.2019080996884735,0.2146763059194434,0.2267003344920312,0.2370156998988521,0.2489706924030458,0.2599424531037405,0.270026638492059,0.2792330022225246,0.2888397865958372,0.297135389561577,0.3048539604249699,0.3125332702430946,0.3195051556268787,0.3261800492521199,0.3329888027562446,0.3394573381825453,0.344917474123242,0.3503866129596291,0.3552852293590099,0.3565164679733279,0.3574445835683916,0.3584605194548965,0.3592556147256309,0.3604150847886611,0.3605593589782949,0.3601262209818597,0.3613152486642005,0.3625416916103652,0.3639114166532395,0.3647065460631476,0.3661969031386034,0.3665648372484989,0.3684778454690556,0.3703157130760856,0.3719090789646564,0.3728896430728523,0.3769289388454944,0.3792480883602379,0.3790325812527552,0.3808672533920059,0.3833865814696485,0.3825164224355735,0.3841332925710792,0.3793915418668174,0.383059719248156,0.386412542268675,0.3873009391588403,0.38568194680249,0.382711038961039,0.0,2.5208204593091663,62.202651013241926,211.0338691568008,333.63148649960624,fqhc8_80Compliance_baseline,85 -100000,95669,41252,387.45048030187417,7340,75.8030291944099,5679,58.9637186549457,2279,23.623117206200547,77.2430810454354,79.64788978385549,63.27207635196621,65.05036841637957,76.96052154798288,79.35809471782429,63.17038878384339,64.9470481794661,0.2825594974525245,289.7950660312034,0.1016875681228199,103.32023691347558,81.54036,57.1692052741981,85231.7469608755,59757.29366273098,222.4473,134.22745160941932,232130.2720839561,139917.09957718587,259.1171,122.6914138125315,267889.30583574617,126030.14949234646,4106.721,1817.046002552964,4270953.997637688,1877679.7902651955,1373.97821,591.1337148887817,1427935.3918197115,609676.7894328663,2252.62954,923.7307859537434,2336853.108112345,951966.3413749196,0.3796,100000,0,370638,3874.170316403433,0,0.0,0,0.0,18529,193.27054740825136,0,0.0,24238,250.35277885208376,2083444,0,74735,0,0,3167,0,0,44,0.4599190960499221,0,0.0,0,0.0,0,0.0,0.0734,0.1933614330874604,0.3104904632152588,0.02279,0.3157894736842105,0.6842105263157895,25.541759091929404,4.569267029681279,0.3282268004930445,0.2054939249867934,0.2271526677231907,0.2391266067969712,10.979246140940196,5.304003219583762,24.319919853222647,13077.477800925197,63.92515640235167,13.726205787475951,20.990511617882827,14.389090755432282,14.819348241560602,0.5370663849269237,0.7463581833761782,0.6915236051502146,0.5767441860465117,0.1075110456553755,0.7177777777777777,0.9166666666666666,0.8744493392070485,0.7440273037542662,0.1372549019607843,0.4807114807114807,0.673992673992674,0.6326241134751773,0.5275827482447342,0.1006346328195829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024221663693854,0.0043413872152232,0.0064668081175192,0.0086162224773671,0.0109344644146755,0.0132084118335964,0.0156003058883507,0.017756494036922,0.0200016361256544,0.0222110717430929,0.0240588241326619,0.0262690368362138,0.0283528213988214,0.0304522509529205,0.0326163246769332,0.0349801472412937,0.0368977697670323,0.0388068376423211,0.0408865867864869,0.0429284768626142,0.057604697818273,0.0717869225048964,0.0854311448907178,0.0985549345878985,0.1109457305422723,0.1269106999195494,0.140529401767505,0.1527342500799488,0.1645733481684354,0.1754314371932688,0.1891014230076275,0.202742250162584,0.2149391239953825,0.2263504265081085,0.2367339291814985,0.2484885462310721,0.2588870506170631,0.2692606740813359,0.2792008546037229,0.2881791188508145,0.2970113450685455,0.304607998126354,0.3118936782630326,0.3187152044538299,0.3249114608054328,0.3317402096995295,0.3376983380370022,0.3435549940660771,0.3493528096896605,0.3545960264900662,0.3553793792712244,0.3555138588043763,0.3559602414919338,0.3565904969169387,0.3571300582350306,0.3570065556615678,0.3565125983499506,0.3578369802340186,0.3590043319810218,0.3613688677888074,0.3624541639889616,0.3627092937396475,0.3642798284349975,0.3643792325056433,0.3651475441661813,0.3649625408884668,0.368119630925867,0.3705637075468695,0.3742843935568751,0.374282944170639,0.3768506056527591,0.3770854705469467,0.3802356859228897,0.3822937625754527,0.3818897637795275,0.3844396344396344,0.3894654088050314,0.3920796184947128,0.398658093374336,0.3998441153546375,0.0,1.5364190345649749,60.511019014612295,214.0559136826211,334.9417728653905,fqhc8_80Compliance_baseline,86 -100000,95811,41427,388.4627026124349,7391,75.87855256703301,5753,59.40862740186408,2321,23.838598908267315,77.44904619750217,79.77496431862407,63.38601454967061,65.10671303122841,77.16971069908735,79.49438502636464,63.284604886245525,65.00708434958284,0.2793354984148237,280.5792922594321,0.1014096634250876,99.62868164556936,80.48084,56.32930654791085,83999.58251140267,58792.10794993357,220.96583,133.1114529823637,230010.687708092,138315.18612932094,260.0079,123.70748474495272,266754.756760706,125607.64554691408,4166.49114,1865.2250339980883,4310468.95450418,1908588.0577366785,1425.62873,612.8887394602281,1473630.4390936324,625356.2424567413,2293.37236,946.0371813482636,2359108.3069793656,959529.8039387309,0.3833,100000,0,365822,3818.162841427393,0,0.0,0,0.0,18323,190.59398190186928,0,0.0,24381,249.88779993946412,2100815,0,75333,0,0,3184,0,0,43,0.4383630272098193,0,0.0,0,0.0,0,0.0,0.07391,0.1928254630837464,0.3140305777296712,0.02321,0.3182751540041068,0.6817248459958932,25.493655952791737,4.599779893780719,0.3210498870154702,0.2087606466191552,0.2324004867025899,0.2377889796627846,11.434927396966245,5.78666359698288,24.459222938359662,13230.723785093282,64.58409098178034,13.98588144318378,20.872721533685425,14.676441286936088,15.049046717975036,0.5520597948896228,0.7668609492089925,0.7033026529507309,0.5804038893044129,0.131578947368421,0.7037037037037037,0.9,0.8758169934640523,0.7556270096463023,0.127147766323024,0.501850994909764,0.7075812274368231,0.6462536023054755,0.5272904483430799,0.1327762302692665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799155383166,0.0045918522498048,0.0068592533966495,0.009254274133745,0.0116232954025443,0.0138474540030342,0.0161190012540399,0.0181059206564672,0.0205109862033725,0.0226335553713765,0.0247681508428549,0.0268370279146141,0.0289473684210526,0.031031536030146,0.0330339002279266,0.0352294563712626,0.0371459029797451,0.0391327340031729,0.0411644917296982,0.043098961044369,0.0576551954351522,0.0713464232691382,0.0853735222604175,0.0987371561849929,0.1110677933955703,0.1262549405026102,0.140668892775746,0.1540187591722143,0.1663394857569614,0.1783824883805607,0.19220304350164,0.2050628261503722,0.2178742440200219,0.2292689847859778,0.2405111933334065,0.2510142492344767,0.2617867525032578,0.2720405001908268,0.2822001856505694,0.2912468298032764,0.2999469079661134,0.3084568988648692,0.3158031363201926,0.3230671781817312,0.3295404973098735,0.3359889839677387,0.3418904752396166,0.34788676994912,0.3534091936504656,0.3587736035265478,0.3598093191889351,0.359935747823938,0.3607504215851602,0.3616631572874902,0.3624105383258998,0.3626076598863844,0.3628688653937194,0.3631407475319657,0.3639041667376164,0.3648747306754037,0.3658053176769754,0.3671605279251909,0.3686161191029587,0.3697428206907357,0.3711129296235679,0.3719416970327954,0.371778056569343,0.3725187958098713,0.3751586070774002,0.3770615586376823,0.379438140556369,0.380317868036603,0.3802772126144456,0.3796516534949743,0.3827113480578827,0.385709164774764,0.3890779702970297,0.3914115471543045,0.3845297718419588,0.3849404533230887,0.0,2.5234287868844034,62.84763764947098,216.88348957794224,325.2244195774145,fqhc8_80Compliance_baseline,87 -100000,95815,41473,389.4484162187549,7292,75.13437353232793,5641,58.372906121171006,2284,23.514063559985388,77.3497797498425,79.68281635940617,63.33168066437421,65.05972873377151,77.0742773638911,79.40555614181044,63.23287270769551,64.96261435014085,0.2755023859513983,277.2602175957388,0.0988079566786979,97.11438363065383,80.12642,56.14962920929114,83626.1754422585,58602.128277713455,219.52466,132.21999751032428,228631.0807284872,137513.13208821614,261.40771,123.882354505944,269324.2498564943,126598.48040587692,4095.36261,1812.908777415559,4241350.143505714,1859203.4727501525,1367.00547,583.6060613433008,1413485.9155664565,595869.2494320307,2250.42172,916.3016293406944,2319144.7476908625,930601.485820338,0.38177,100000,0,364211,3801.1897928299327,0,0.0,0,0.0,18210,189.54234723164436,0,0.0,24446,251.65162030997237,2097034,0,75221,0,0,3225,0,0,37,0.3861608307676251,0,0.0,0,0.0,0,0.0,0.07292,0.191005055399848,0.3132199670872189,0.02284,0.3133237635390839,0.6866762364609161,25.49637877682186,4.584820503094069,0.319092359510725,0.2084736748803403,0.2350647048395674,0.2373692607693671,11.10520222715695,5.503320685775075,24.080495349944574,13139.960092265095,63.53051010081965,13.773152062890778,20.38705304241663,14.90020118233471,14.47010381317754,0.5468888494947705,0.7551020408163265,0.6961111111111111,0.6033182503770739,0.1075429424943988,0.7204610951008645,0.9182058047493404,0.8632286995515696,0.7492063492063492,0.125,0.4902421819891841,0.6775407779171895,0.6410635155096012,0.5578635014836796,0.1035747021081576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020463156188585,0.004146937451205,0.0063734345505104,0.0083410377023031,0.0107822195097141,0.0129728628888549,0.0153038336052202,0.0173739064748935,0.0197573515132311,0.0216993009140318,0.0241412184395854,0.0263873915498742,0.0284509793840933,0.0305002368350598,0.0324207790064367,0.0344909536159704,0.0365812001200741,0.0386366700895126,0.0407484753088343,0.0426028110359187,0.0572212485394758,0.0706114852147726,0.084172684491306,0.0968494503877761,0.1091307693118458,0.1243272961799938,0.1378388697976326,0.1512716824518463,0.1626848934693223,0.174402642529278,0.1889186947200586,0.2029931177769121,0.2160001740095052,0.2276368564277986,0.238795464293963,0.2496316401706087,0.2605663661519236,0.2710067023525707,0.2805019173606226,0.2898096099465351,0.2985055636523469,0.306344121223459,0.3133524979001786,0.3205303248059787,0.3276188626098781,0.3337849321985885,0.3396068329039842,0.3449512809423258,0.3505281416662352,0.3557802743270538,0.3570302074487443,0.3583729748362633,0.3592768737916143,0.3605592133886359,0.361431423378326,0.3619000829060091,0.3619671818960865,0.363192021591732,0.3642158290639297,0.3653828921665263,0.3666422163290639,0.3677051686821151,0.3696137013970712,0.3720496754923758,0.3736016816062238,0.3742890839994758,0.3752576139226013,0.3775091528847368,0.3783308725304085,0.3792870752619879,0.3819736601426742,0.3844677789030435,0.386877971473851,0.3903586579251832,0.3884933067502136,0.3901013714967203,0.3851027661876062,0.3878960194963444,0.3829261597584408,0.3765625,0.0,1.989278143163204,61.729065247537214,210.9727833364632,326.04013485575643,fqhc8_80Compliance_baseline,88 -100000,95810,41612,390.3350380962321,7280,74.78342552969418,5719,59.22137563928609,2324,23.93278363427617,77.41775944651599,79.7450597890874,63.37436231324406,65.09471135151217,77.13808798568647,79.46339865493152,63.272254701762925,64.99406398692919,0.279671460829519,281.66113415588256,0.1021076114811379,100.64736458298285,81.48338,57.07990398097861,85046.84270952927,59576.14443270913,224.38964,135.90432631908686,233733.06544202063,141378.0777779844,261.98844,124.45635334740712,270485.30424799083,127635.27443371229,4103.53674,1836.3812803132028,4251853.355599625,1885549.775924436,1399.34808,611.4435194740981,1447612.1699196326,625250.6622211646,2291.2455,945.5094045339732,2361500.6158021083,962542.9393857014,0.38425,100000,0,370379,3865.765577705876,0,0.0,0,0.0,18675,194.43690637720488,0,0.0,24491,252.65629892495565,2090622,0,75021,0,0,3248,0,0,44,0.4488049264168667,0,0.0,0,0.0,0,0.0,0.0728,0.1894599869876382,0.3192307692307692,0.02324,0.31522730233164,0.68477269766836,25.259042384205724,4.482983587044494,0.3283790872530163,0.2150725651337646,0.2194439587340444,0.2371043888791746,11.098743180607949,5.643106196009537,24.54858978291064,13226.448520387326,64.12821035544653,14.320173446820126,21.025511954682525,13.91249288006706,14.87003207387682,0.5490470361951391,0.759349593495935,0.7018104366347178,0.5936254980079682,0.105457227138643,0.6987600291757841,0.9245810055865922,0.8536585365853658,0.7366548042704626,0.1245551601423487,0.5018399264029438,0.6915137614678899,0.6538192011212334,0.5523613963039015,0.1004651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023592786480219,0.0045208964755253,0.0066970401112114,0.0089780829152363,0.0112564060847636,0.0134268496274278,0.015370502497197,0.0174940801829019,0.0197980334839224,0.0219943299865925,0.0244467450465871,0.0266072656723159,0.0287823029954153,0.0307001739882429,0.0331817572514203,0.0354586487910181,0.0373494225276317,0.0392510574769843,0.0412013422121567,0.0432365464899586,0.057268952277612,0.0712329339940203,0.0845570893997044,0.0972868502043002,0.10991638056322,0.1254476500353894,0.1398381390224783,0.1536188127232522,0.1655961932400136,0.1775247439907451,0.1920140233148363,0.2054143395737233,0.2169404662374184,0.2288038434241415,0.2404087013843111,0.2521185971899546,0.2628921142398501,0.273435920476244,0.2831875453226976,0.2922395845249262,0.3009614495701211,0.3083733370709088,0.3155886348868805,0.3223987453158858,0.3296396538540895,0.3365066072242269,0.3417170858542927,0.3484650098519036,0.3536831483350151,0.3582903910275841,0.3591909193609123,0.360320321422183,0.3607726011186092,0.3613415021818917,0.3626904496469714,0.3628237170149803,0.3628213454136505,0.3636139670860296,0.3650576909947429,0.3663090626729262,0.366267951554239,0.3668995185097482,0.3678071865315353,0.3680414442980595,0.369723400154202,0.3701247846290398,0.3724494163979338,0.3746022745172164,0.3778129395218003,0.377592039800995,0.3786465477823502,0.3836464560204953,0.3854536239229599,0.3894116746997169,0.392022792022792,0.391973083393415,0.3892627954296447,0.3897921383000617,0.388290527478597,0.3816556548775748,0.0,1.8184046659206847,60.79028528347544,218.884374562334,328.4424072415703,fqhc8_80Compliance_baseline,89 -100000,95728,41114,385.6029583820826,7247,74.42963396289487,5658,58.572204579642325,2255,23.18026073875982,77.3893283971574,79.74922176898738,63.35181630130408,65.0932448544143,77.12059905093176,79.4795659005694,63.254191895900135,64.99773597511509,0.2687293462256406,269.65586841798483,0.0976244054039412,95.50887929920292,81.0051,56.73174656501956,84620.06936319573,59263.482539089455,219.31608,132.29458349148908,228601.9242019054,137696.96796286257,258.1115,122.17956435431692,266683.0185525656,125354.95578494245,4087.3677,1815.76577756182,4234799.7868962055,1861824.353963123,1388.06056,598.902713994307,1436889.8545879992,612518.4639939894,2223.93942,908.7159911812936,2289165.3016881165,921246.9305912316,0.38017,100000,0,368205,3846.3667892361696,0,0.0,0,0.0,18218,189.7772856426542,0,0.0,24212,249.8850910914257,2093972,0,75109,0,0,3177,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.07247,0.1906252466002051,0.3111632399613633,0.02255,0.3197011403853716,0.6802988596146284,25.54060594110438,4.548781211125552,0.3412866737363025,0.1952986921173559,0.2301166489925769,0.2332979851537645,11.164677702825491,5.625638256913087,23.6194496970579,13072.17909007284,63.27214406255278,12.892152882422046,21.61655368342248,14.480158124640065,14.283279372068206,0.5542594556380347,0.7819004524886878,0.6991196271361989,0.5837173579109063,0.1227272727272727,0.7060561299852289,0.9141104294478528,0.8769230769230769,0.7322033898305085,0.1546762589928057,0.5065055762081785,0.7265725288831836,0.6443089430894309,0.5402184707050646,0.1142034548944337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.004439174191979,0.0068165910958278,0.0092503274676847,0.0113456142491155,0.0135374468171732,0.0159689385292678,0.0181628946348033,0.0204154618001982,0.0225623919205148,0.0246234245312019,0.0265420445684737,0.0286683107274969,0.0307565620174987,0.0331143584930955,0.0350728531569701,0.0371033697396345,0.0389167211210339,0.0409001143332294,0.0429397364446064,0.0575047511642963,0.0710817654814473,0.0844232806452627,0.0969108802624384,0.1089992937183095,0.1241248757376425,0.1384310231443178,0.1511928715148031,0.1631501917591633,0.1747386479386694,0.1884583907649896,0.2021741481882098,0.2151779017056387,0.2277269944016794,0.2387695151335115,0.2489753417373773,0.2586478250678096,0.2687925313536921,0.2788166942786464,0.2869056210408147,0.2955523175131834,0.3033912769016751,0.310687302694586,0.3180773099583273,0.3245343500327837,0.3308908647570256,0.336374330480052,0.3423967646348132,0.3477562649744221,0.3531926121372031,0.3540938189251708,0.3550094881878936,0.3559474587235957,0.3571831067315889,0.3582751966750779,0.3589261416624623,0.3594889934624009,0.3600281514943206,0.3616295917497656,0.36318407960199,0.365103133305881,0.3664933884134169,0.3682311983557736,0.3682054267036805,0.3699392712550607,0.3706000364763815,0.369930987281127,0.3720762072434607,0.3726143699129947,0.3749503928883245,0.3778366284644537,0.3793342950259122,0.3802334432885054,0.3829868541730358,0.3824727617243013,0.3896119402985075,0.3898279041180086,0.3917022574740695,0.386523822948971,0.3817394726485635,0.0,2.0601659576165647,59.91614147796256,210.3208693306561,331.0168014901149,fqhc8_80Compliance_baseline,90 -100000,95671,41596,391.1007515339026,7269,74.7457432241745,5668,58.64891137335242,2371,24.3961074933888,77.35982293729873,79.73545388018877,63.33991942654043,65.08992407717557,77.06692001993407,79.44370605584479,63.23203346320239,64.98559123318437,0.2929029173646569,291.74782434398594,0.1078859633380417,104.33284399120168,79.7192,55.828016133836144,83326.39984948418,58354.168069567735,219.95089,132.94839555798404,229320.2015239728,138380.94674246534,257.34812,122.53411977968604,265994.10479664686,125689.79624649532,4117.95387,1841.041293295913,4260943.55656364,1881003.3691462544,1329.56686,576.8084591036982,1372963.9180106823,586144.0866131821,2326.3839,970.3784120213508,2394997.6063801986,981679.9262860228,0.38312,100000,0,362360,3787.563629522008,0,0.0,0,0.0,18313,190.79971987331584,0,0.0,24067,248.47654984269005,2097896,0,75244,0,0,3283,0,0,38,0.3971945521631424,0,0.0,2,0.020904976429639,0,0.0,0.07269,0.1897316767592399,0.3261796670793782,0.02371,0.3108143493061011,0.6891856506938989,25.270269864180623,4.613059018765495,0.3373323923782639,0.1910726887791108,0.2385321100917431,0.2330628087508821,10.909576473083854,5.403439865495763,25.35049707670601,13160.584691610617,63.678185697795776,12.66808391901736,21.41117493174825,15.091733995938975,14.507192851091174,0.5271700776287932,0.7368421052631579,0.678347280334728,0.5591715976331361,0.1037093111279333,0.6888726207906296,0.8734567901234568,0.8549450549450549,0.7204968944099379,0.1396226415094339,0.4758251975825197,0.6785243741765481,0.6231983527796843,0.5087378640776699,0.0946969696969697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987807347996,0.0043380869847254,0.0065946329833105,0.0087952712721659,0.0110623068163331,0.0131915110183724,0.0151621679454651,0.0173142064237032,0.0195713906310649,0.0215647761682625,0.023726347924969,0.0259453803065432,0.0279673560004933,0.0302412504247366,0.0323269415247506,0.0347172697487416,0.0367310599002008,0.0389051382579293,0.040795957831701,0.0428126270153095,0.0571906179804628,0.0716005947519423,0.0847564367659252,0.0981060606060606,0.1107419361643777,0.1257618725133327,0.1395923999575416,0.15244344084189,0.1651610558162905,0.1774827186466875,0.1915235242138839,0.2044076239982672,0.2171556677694584,0.2287224727463771,0.2393092739226677,0.2511965433192998,0.2620881328690062,0.2719075352476895,0.2810851886717553,0.2897342843077768,0.298535434163948,0.3063414063414063,0.3134734649434266,0.320018690021206,0.3266571986939053,0.3336042759673883,0.340266920161603,0.3457256638294082,0.3513513513513513,0.356709853797694,0.3580105586381512,0.3584180510786015,0.3592885375494071,0.3601875162774546,0.3617514947794271,0.360842615606493,0.3599822199644399,0.3611985043403778,0.3626081285184677,0.364676759704384,0.3650954934612851,0.366596513521026,0.3676340507981972,0.3687748724059626,0.3702477341389728,0.3725551802686356,0.3740490762454956,0.3768491591857377,0.37645400070497,0.3777254212922291,0.3794100105519108,0.3786756814767117,0.3806422779799527,0.3829377311960542,0.3842865285958579,0.3868049692437583,0.387542715128922,0.3805128205128205,0.3787547788093938,0.3859581070597362,0.0,2.321906996393838,60.13902872060133,215.19913891069476,327.69850042217394,fqhc8_80Compliance_baseline,91 -100000,95857,41597,390.5400753205295,7288,74.91367349280699,5627,58.14911795695672,2312,23.764565968056584,77.34109898624328,79.63300506830845,63.34986309044478,65.04453506593171,77.06042272442116,79.35005491141936,63.24703474345677,64.94270250562019,0.2806762618221228,282.9501568890862,0.1028283469880051,101.83256031152156,80.20782,56.23518623470208,83674.45256997402,58665.70645305202,219.02716,132.5557133562222,227963.6541932253,137755.20968933,261.11582,124.44153727784952,268562.6714793912,126810.9549198187,4057.79273,1826.780713867361,4197379.544529873,1869969.0259375076,1409.88697,616.4505200460221,1456340.9662309482,628739.8316854812,2274.26482,947.0951469403346,2340524.719112845,962693.4464631596,0.38321,100000,0,364581,3803.384207726092,0,0.0,0,0.0,18195,189.2506546209458,0,0.0,24467,251.44746862513952,2094845,0,75248,0,0,3200,0,0,38,0.3964238396778535,0,0.0,0,0.0,0,0.0,0.07288,0.1901829284204483,0.3172338090010977,0.02312,0.32041242495432,0.67958757504568,25.376968229148503,4.571777000931,0.3447663053136662,0.1977963390794384,0.2242758130442509,0.2331615425626444,11.41087553261721,5.828153925255024,24.67551334079593,13166.833116123777,63.54986752590157,12.920489831474509,21.906289058823617,14.147477520344294,14.57561111525915,0.5590901012973165,0.7538185085354897,0.7103092783505155,0.6053882725832013,0.1257621951219512,0.6979388770433547,0.9006024096385542,0.8732106339468303,0.7162162162162162,0.1517241379310344,0.5127962085308057,0.6914212548015365,0.6554100620261888,0.5714285714285714,0.1183953033268101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0045799515659989,0.0069378936798222,0.0090766950271082,0.0115870144126196,0.0137181470324839,0.0158317796998685,0.0180260137719969,0.0204583988723878,0.0224229466943543,0.0244502033248998,0.0264607242854066,0.028491316002999,0.0306394361849889,0.0325090159711488,0.0346265391006388,0.0367069236495988,0.0386245195246531,0.0407370879833895,0.0426337636936777,0.0575575575575575,0.0714076706029888,0.0848730517848165,0.0981149908112365,0.1107250405374102,0.1256270792628188,0.1397428020592784,0.1522016456530521,0.1646909443988007,0.1763968366231595,0.1905591960145044,0.2037759923874609,0.216505603687237,0.2280145604005203,0.2391263684876492,0.2502022138258856,0.261408658192248,0.271890541665729,0.2816848652698009,0.2904670798629807,0.2992848546565451,0.3069930151747376,0.3148707024084265,0.3216468896080546,0.3278485319852226,0.3338514872250391,0.3396921227000012,0.3450497949619215,0.3507762486068994,0.3565225437193502,0.3574973031283711,0.3582106002783021,0.3588733587462939,0.3599501116686486,0.3607386304312158,0.3602077826274051,0.3601284129557229,0.362200956937799,0.363425169072981,0.3653537918490104,0.3657466918714556,0.3670558234051879,0.3678503487634749,0.3687444928944217,0.3697593498308879,0.3704318936877076,0.3706263498920086,0.3724467069678651,0.3744381127667858,0.377201408901697,0.3790933725256051,0.3822883760775285,0.3844785977391083,0.383140293012196,0.3834414345669591,0.385040885040885,0.3821062441752097,0.3876967095851216,0.3894736842105263,0.3955659276546091,0.0,2.1460107544336933,62.23077438555872,210.8343877329476,323.5224404648254,fqhc8_80Compliance_baseline,92 -100000,95646,41121,385.5153378081676,7180,73.83476569851327,5565,57.629174246701375,2301,23.722894841394307,77.31769350596971,79.74069612444967,63.289715480586615,65.0815771283324,77.03435512771024,79.45404866021286,63.18624538306269,64.97912252860613,0.2833383782594723,286.64746423680754,0.1034700975239246,102.45459972627202,81.37426,56.92832141005103,85078.35142086443,59519.6639546557,222.2815,135.42370417174,231815.98812286972,141008.68456181246,258.2262,123.5182636104609,266588.9321037994,126553.37691678532,4067.61781,1823.5965680805452,4214318.15235347,1868557.889898697,1384.33216,598.638786370234,1435408.861844719,613949.1315582814,2271.27538,942.0516105866022,2342368.9229032057,958136.8085358732,0.37912,100000,0,369883,3867.1977918574735,0,0.0,0,0.0,18544,193.27520230851263,0,0.0,24130,248.8237877172072,2083637,0,74771,0,0,3191,0,0,42,0.4391192522426447,0,0.0,0,0.0,0,0.0,0.0718,0.1893859464021945,0.3204735376044568,0.02301,0.3202752779248279,0.6797247220751721,25.4126147514878,4.643097095412295,0.3358490566037735,0.1883198562443845,0.2273135669362084,0.2485175202156334,11.103418299254024,5.562924488168596,24.45176203779181,13103.745715193698,62.652722440840265,12.22169683716895,21.198553899177675,14.078137546099326,15.154334158394322,0.5297394429469902,0.7423664122137404,0.7051899411449973,0.5430830039525691,0.1193058568329718,0.7108167770419426,0.903726708074534,0.8702127659574468,0.7407407407407407,0.1703703703703703,0.4712315739419876,0.6707988980716253,0.6497498213009293,0.4824380165289256,0.1069182389937107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172704433098,0.0044923538717397,0.0067106598984771,0.0092074106444171,0.011395199772096,0.013620619396903,0.0158427356007589,0.0183185361517792,0.0203964672049778,0.0223561610135613,0.0243707140804007,0.0266007218286325,0.0286794084936359,0.03078256204997,0.0328360059513969,0.0352456641417277,0.0371806569343065,0.0392425706065044,0.0411389441039036,0.0434564965741638,0.0581264108352144,0.0715034159017561,0.0858586389084377,0.0985107010448264,0.1110090289878029,0.1261822302714496,0.1393245770636742,0.1526982807320479,0.1651512558298746,0.1760150375939849,0.1904017086641353,0.2035869094061551,0.2158814879363869,0.2273279817769649,0.2380044521831125,0.2487632822378491,0.26034530926971,0.270471771423423,0.2801780422168981,0.2890001833684789,0.2972622411636633,0.3048522095405326,0.3125088858347946,0.3192771084337349,0.3255695093457944,0.3315899194493443,0.3374239274712615,0.3433879141307392,0.3491520149369846,0.3545418484728282,0.3549879921206724,0.3557751954013481,0.3563755452351039,0.3579542987800466,0.35862612679618,0.3578940903717124,0.3576986597217811,0.3580592105263158,0.3593937112943511,0.3601885579601457,0.3619133235944113,0.3633418921587991,0.3635737253100597,0.3639975891242717,0.365728285933897,0.3669968717413973,0.3681107408356832,0.3707050738962628,0.3731259436115305,0.3751690667515315,0.3751259734310582,0.3787457191780822,0.3802629072204229,0.3834113404434896,0.3828798938287989,0.3838987099856665,0.3858754442899088,0.3845218800648298,0.38208460049765,0.3884644766997708,0.0,2.079356314541347,60.219652195675366,209.2555869520656,322.214253144179,fqhc8_80Compliance_baseline,93 -100000,95723,41324,387.4617385581313,7316,75.42596868046343,5665,58.73196619412263,2276,23.526216269862,77.34880342590687,79.70568603744066,63.338894218876014,65.07671951949611,77.07849821603685,79.4317796693345,63.24108648926962,64.97940313912073,0.2703052098700169,273.90636810615376,0.0978077296063943,97.31638037537492,80.18318,56.178348880703695,83765.84519916844,58688.45406088787,219.84808,132.67175246807585,229226.8002465447,138155.3466440415,258.54236,122.75869275251146,266459.7014301683,125548.01102897408,4079.83078,1805.9697376004915,4234016.516406715,1858557.073640077,1361.55491,581.090195611574,1412951.0671416484,597614.4036559386,2239.27548,916.1528058689032,2316105.805292354,937570.1247795394,0.38083,100000,0,364469,3807.53841814402,0,0.0,0,0.0,18240,190.0797091608077,0,0.0,24135,248.54005829320016,2096720,0,75188,0,0,3200,0,0,54,0.5641277435934937,0,0.0,0,0.0,0,0.0,0.07316,0.192106714281963,0.3110989611809732,0.02276,0.3183171521035599,0.6816828478964402,25.684913831879943,4.537637007514087,0.3274492497793468,0.2132391879964695,0.2254192409532215,0.233892321270962,11.081403797314128,5.613762088548952,23.981080170523555,13150.336227242611,63.484255077033225,13.9618464187437,21.091160107469456,14.058815103368651,14.372433447451437,0.5451015004413062,0.765728476821192,0.7072776280323451,0.5411119812059515,0.120754716981132,0.7037582903463523,0.9213483146067416,0.8586278586278586,0.663003663003663,0.1336032388663967,0.495125348189415,0.7007042253521126,0.6542940320232896,0.5079681274900398,0.1178107606679035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657600275434,0.0041762964765032,0.0065750088782913,0.0087871676876034,0.0111538148690418,0.0133964472947523,0.0156156033718287,0.0178319893845054,0.0198967860610086,0.021933370861266,0.0239940143082631,0.0261610304305434,0.0282524211954845,0.0305454320835134,0.0328440423754164,0.0348839612308582,0.0369645575125027,0.0391475321387439,0.0411844827765474,0.0433767830535671,0.0581576281629541,0.0721275103869057,0.0853572814922836,0.0980189999263568,0.1102603046027929,0.1258369207662122,0.1395528959904934,0.1520832002725085,0.1642881558707913,0.1757601758996085,0.1894427331279753,0.2031718214173671,0.2154881788720447,0.2269208057214093,0.2377106896096466,0.2491662696522153,0.2603071767662664,0.2696927735936145,0.279281529588083,0.2877994569389228,0.295706331106815,0.3036967711745437,0.3120242450071622,0.3192756645334483,0.3262971239797901,0.33291856597265,0.3394851019668155,0.3453449635073621,0.3507871011137125,0.3562037635330265,0.3575728194562275,0.3590636353627656,0.3604284103720406,0.3611512872432745,0.3619881910257745,0.3618041932319764,0.3620815369008369,0.3627148161535176,0.3645045353414342,0.3666869496742788,0.3687409714274994,0.3698117688973339,0.3717800684399471,0.3728611847128037,0.3742000917630581,0.3753694838996573,0.3771215596330275,0.3800797569312571,0.3802463906244484,0.3815079713908978,0.3816442891300349,0.3842173350582147,0.3846499390361291,0.3868692349430276,0.3866092778574844,0.3838896952104499,0.3853038153556288,0.3913497701629753,0.3940761636107193,0.3992932862190813,0.0,1.7400683613011227,60.35810612035489,210.86473941567823,332.8430473021267,fqhc8_80Compliance_baseline,94 -100000,95619,41212,387.20338008136457,7119,73.19674959997491,5534,57.11208023509972,2280,23.2798920716594,77.26744378178137,79.68285564728578,63.28338998351626,65.06932126757552,76.98663380250976,79.40913662798869,63.1792687332986,64.97228203029141,0.2808099792716092,273.71901929709,0.1041212502176591,97.03923728410756,79.92688,55.95060915702848,83588.91015383972,58514.112422247126,216.41731,131.1763103744496,225595.46742802163,136448.95928052964,255.0453,121.53305949427892,262879.58460138674,123982.178320402,3989.39954,1794.0919571615627,4117749.223480689,1821858.6757459936,1351.37218,592.1270198184819,1391929.114506531,597897.426053903,2249.65904,938.8250415833736,2299317.75065625,934207.7935604457,0.38051,100000,0,363304,3799.4959160836233,0,0.0,0,0.0,18047,187.9542768696598,0,0.0,23898,246.0912580135747,2094901,0,75201,0,0,3229,0,0,34,0.3451196937847081,0,0.0,0,0.0,0,0.0,0.07119,0.187091009434706,0.3202697008006742,0.0228,0.3168872843963096,0.6831127156036904,25.23332230332076,4.604597117265034,0.3256234188651969,0.2103361040838453,0.2260571015540296,0.237983375496928,10.983735127735756,5.343007424828472,24.350052747707007,13097.297217479972,62.77427289743573,13.69801163330172,20.43847454310525,14.06315334286248,14.574633378166268,0.5411998554391038,0.7637457044673539,0.6809100998890122,0.5611510791366906,0.1343963553530751,0.7101556708673091,0.89501312335958,0.8482758620689655,0.7279411764705882,0.1915708812260536,0.4867383512544803,0.6998722860791826,0.6276517922457937,0.5148110316649642,0.1202651515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088475489898,0.0042993307645508,0.0066906270305393,0.0091049508170067,0.011332770424928,0.0134537825396178,0.0157839998368578,0.0180297910136908,0.020051329768198,0.0219250186890047,0.0242141428644684,0.0262768623905986,0.0281358338391268,0.0301291100371977,0.0323712787480903,0.0344692113642942,0.0364692843899862,0.0386671510873514,0.0409046459854774,0.0427710466498446,0.0569427750195975,0.0710499853354003,0.0843083709694359,0.0968784885312888,0.1086768308134133,0.1247445062218692,0.1386082873925836,0.151343977149191,0.1639798461719493,0.1753326960463143,0.1892918005910649,0.2019370355123177,0.2145391614785145,0.2261121751025991,0.2366276893263746,0.2482299365103987,0.2591368801768212,0.2694112748022014,0.2793058804824312,0.2887801075330452,0.2969748911331418,0.3047289153101705,0.3122394352851999,0.3190447617904716,0.3262331974940697,0.3325596898842003,0.3389552294911473,0.3452966198833389,0.3510432741561086,0.356484359500033,0.3573183904941939,0.358479637010578,0.359489308815637,0.3599965209323901,0.3609619286311015,0.3613531916201718,0.3604732523376375,0.361666035343138,0.3629895068925314,0.3633756363375636,0.3645625400173251,0.3645466308350751,0.3653963768268764,0.367131845659453,0.3681508922302123,0.3684528658905153,0.3699133329506973,0.3706391203777052,0.373227955769776,0.3746580852775543,0.3761535964383434,0.3766424150287762,0.3773669972948602,0.3761760360780655,0.3733614008228877,0.3721212121212121,0.3712406015037593,0.3772999793260285,0.3847695390781563,0.384739604360113,0.0,2.9807845986041106,58.82460571660121,220.0264951977529,310.67993428429804,fqhc8_80Compliance_baseline,95 -100000,95837,41370,387.8355958554629,7306,74.89800390245938,5607,57.91082775963354,2218,22.76782453540908,77.40182060844235,79.71491166358743,63.36325590393732,65.07552180629173,77.12633079811978,79.4399914245067,63.26212498991144,64.97706652261456,0.2754898103225685,274.9202390807284,0.1011309140258802,98.45528367716838,80.78708,56.57034249370818,84296.33648799524,59027.6641523714,219.93595,132.91200815949162,228815.49923307283,138018.2743783242,257.43184,122.03903657047168,265211.26496029715,124691.9358673104,4026.1128,1803.726727745032,4164776.182476497,1846714.0622612487,1325.33527,573.9821139348967,1372378.0377098615,588636.9329980328,2192.75904,909.839605065674,2254248.129636779,920941.6878369856,0.38114,100000,0,367214,3831.651658545238,0,0.0,0,0.0,18281,190.11446518567985,0,0.0,24106,248.04616171207363,2095612,0,75245,0,0,3234,0,0,51,0.5217191690057076,0,0.0,1,0.0104343833801141,0,0.0,0.07306,0.1916880936138951,0.3035860936216808,0.02218,0.3227740842132707,0.6772259157867292,25.427091704932224,4.590330675140906,0.3351168182628857,0.2065275548421616,0.2229356161940431,0.2354200107009095,11.191650035271673,5.483481818488788,23.388299008958302,13104.5728418723,63.03906179410581,13.53936637744054,21.147087216794933,13.912999173488233,14.439609026382108,0.5468164794007491,0.7711571675302246,0.6955827567855242,0.564,0.1219696969696969,0.7063609467455622,0.9213483146067416,0.8752834467120182,0.7052631578947368,0.1481481481481481,0.4961222091656874,0.7044887780548629,0.6404728789986092,0.522279792746114,0.1152380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022985479657344,0.0046417821200174,0.0070405388954266,0.009323867272007,0.0115187930175577,0.0136304409788672,0.015726443459206,0.0177689324351908,0.0201974773596091,0.0222818132503607,0.0244374967966787,0.0265118857002093,0.0286574773607984,0.0307647955191301,0.0329317848965531,0.0351098344733524,0.0371501324942033,0.0389054220802787,0.0409746673729473,0.0430746495436522,0.0580591333368097,0.0719968219785274,0.0855163886327437,0.0983634109960293,0.1102170638974607,0.125851525617059,0.1389692250648869,0.1517094017094017,0.1639379255875509,0.1752059387486208,0.1893016952069529,0.2018414056927964,0.2141747340743396,0.2261705731300879,0.2364711832354816,0.2477385209871895,0.2580591187953151,0.2677665688226098,0.2778723307690562,0.286976930562711,0.2954495493515058,0.3039375051163008,0.3120673947253215,0.3195057052449899,0.3260032317243558,0.3326020238374028,0.3386898951215238,0.3438879489104023,0.3498977134422663,0.3552175002968611,0.3565265382492697,0.3581697368240036,0.3583255892540339,0.3597274944791652,0.360678610125718,0.3603737458834342,0.3601304499255929,0.3618431848764318,0.362399589813707,0.3637451123926511,0.3652512835888019,0.3659322838383039,0.3675219050014673,0.3686626657112146,0.3681806159986535,0.3701686257134666,0.3719658119658119,0.3741880824625812,0.3761973264095997,0.3788282025819265,0.3780459927764824,0.3805678840703705,0.3848296821577814,0.3835270724992352,0.3853443422781009,0.3789661319073084,0.3807615230460922,0.3809328128210396,0.379243183082916,0.3785575048732943,0.0,2.2809998327629657,59.54363462110189,215.5634817285753,320.89867314958474,fqhc8_80Compliance_baseline,96 -100000,95691,41526,389.5873175115737,7286,74.55246574913001,5718,59.12781766310311,2349,24.20290309433489,77.32145341825886,79.70972300518736,63.3143933609397,65.08075523023929,77.03272608761512,79.41879448079321,63.20810493768692,64.97595857998368,0.2887273306437379,290.92852439414685,0.1062884232527778,104.79665025560791,81.52584,57.137337208430885,85196.97777220428,59710.25196562988,222.6661,134.58890297574493,232017.7028142668,139974.35806475522,263.36047,125.70906402136696,270843.63210751273,128049.41170504494,4166.75479,1873.995575136012,4316028.665182724,1920025.681763189,1378.8198,602.6283437058639,1428204.596043515,617060.9604935297,2321.96248,969.6443615957544,2395683.564807557,987242.8753924004,0.38308,100000,0,370572,3872.589898736558,0,0.0,0,0.0,18577,193.4978211117033,0,0.0,24568,252.38528179243607,2086930,0,74869,0,0,3280,0,0,47,0.4807139647406757,0,0.0,0,0.0,0,0.0,0.07286,0.1901952594758275,0.3223991216030744,0.02349,0.3199583116206357,0.6800416883793643,25.268393347739018,4.626410582464824,0.3214410633088492,0.2053165442462399,0.2318992654774396,0.2413431269674711,11.13988886203523,5.551774686514299,25.001733546466017,13207.666279839625,64.28470163471383,13.695419962230792,20.657866362311932,14.851590764723152,15.079824545447936,0.5389996502273522,0.7768313458262351,0.6849836779107725,0.5784313725490197,0.1043478260869565,0.7302357836338419,0.946524064171123,0.8917748917748918,0.754601226993865,0.1464285714285714,0.4745088868101029,0.6975,0.6155523255813954,0.521,0.0936363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024215773688903,0.0046851232126559,0.0070245249309728,0.0090547860285972,0.011334038743285,0.0134768967484312,0.0157867362860377,0.0181539718194813,0.0203539189727966,0.0223862263803304,0.024390243902439,0.026956807492452,0.0290090627603872,0.0310986542464398,0.0331344577716303,0.0354635593833683,0.0374962451964409,0.0394470562595348,0.0415470693456466,0.0434188996237584,0.0580819685828877,0.0719863501235188,0.0853202921669045,0.0978869385865218,0.1098837331982865,0.1248703456743083,0.1386857440056043,0.1525270277467114,0.1648924800136804,0.1762238812373965,0.1907085986403353,0.2041488025637694,0.2169050856676638,0.2287568111692233,0.2404330699997799,0.2519630970971636,0.2625107394307265,0.272265260459416,0.2815768576290414,0.2907616167170745,0.2990789382333202,0.3065729292173079,0.3138374089644147,0.321645281208778,0.3286084197473832,0.3346846735835572,0.341095170134455,0.3479644170686078,0.3536066061790554,0.3591137620247819,0.3596923657130542,0.3599290048293226,0.3603314169766655,0.3612448840875237,0.362797206961752,0.3625249577637843,0.3621020877986822,0.3631710608604062,0.36375783739336,0.3648556693646587,0.3661746733101438,0.3676981401718902,0.3685262737010459,0.3689147844866373,0.3712321138900322,0.3727418549002077,0.3727110445698491,0.3751190400609485,0.3767591903293275,0.3770885923788917,0.3808407994486561,0.3817496635262449,0.382430266110933,0.385517830782379,0.3886922414617813,0.3889360669659105,0.3941194870190804,0.3886354209871422,0.3909014321819714,0.3924794359576968,0.0,2.484359225601624,63.2874319793523,207.09311874457376,332.9686798444678,fqhc8_80Compliance_baseline,97 -100000,95711,41085,385.9848920186813,7358,75.70707651158175,5728,59.324424569798666,2355,24.291878676432177,77.3455376358958,79.7307967421503,63.32130932583449,65.08647439703755,77.05827753408613,79.439850842909,63.217990654509805,64.98364257418515,0.2872601018096645,290.94589924130787,0.1033186713246863,102.83182285239434,80.89884,56.66463955817628,84523.6179749454,59203.56194014422,220.36426,132.78373917502722,229719.4784298565,138219.5677372744,258.70034,123.08593998928156,266249.0413850028,125588.44294570356,4146.05289,1849.3130887643051,4301057.590036673,1901855.3263688749,1391.93719,603.3194809654991,1442139.3883670631,618182.1535304182,2322.41072,952.7407011277184,2398586.557448987,973627.4117264516,0.3798,100000,0,367722,3841.982635224792,0,0.0,0,0.0,18384,191.51403704903305,0,0.0,24230,249.1563143212379,2094726,0,75031,0,0,3289,0,0,46,0.480613513598228,0,0.0,0,0.0,0,0.0,0.07358,0.1937335439705108,0.3200597988583854,0.02355,0.3193798449612403,0.6806201550387597,25.344893068383257,4.565434150375342,0.3379888268156424,0.1972765363128491,0.2241620111731843,0.240572625698324,11.252926871184522,5.75904221172584,24.936830456700363,13087.396902207433,64.38647185249313,13.109963535397236,21.93437115450312,14.275993196826551,15.066143965766212,0.5480097765363129,0.7690265486725664,0.7024793388429752,0.5809968847352025,0.1190130624092888,0.728,0.9302325581395348,0.8822314049586777,0.7394366197183099,0.1673003802281368,0.4911555249253388,0.6984732824427481,0.6425619834710744,0.536,0.1076233183856502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0046148384806531,0.0066703893598659,0.0088721315473891,0.0108854887279238,0.0133530250560195,0.0155717811180681,0.018044790294415,0.0198482493455497,0.022180805308647,0.0242859340546638,0.0265404011873337,0.0283695238487095,0.0303667295228085,0.0325173887019875,0.034529458590495,0.0366276841483752,0.0387114183116424,0.0407225232157898,0.0425192748489268,0.0571243577425957,0.0716139565062687,0.0849215011334061,0.0978653115761344,0.1098923120734935,0.1248122686409307,0.138866194866789,0.1519014301992481,0.1643845866068088,0.1759131060093806,0.1903098895176502,0.2041757813346039,0.2168939583582755,0.2280803483512395,0.2384600145281648,0.2496371392166639,0.2602037969173763,0.2701100285759287,0.2796823596142938,0.2882424991700722,0.2962620174230942,0.3044388071217311,0.3116506806381796,0.317990228949133,0.3249159679161256,0.3312413088689531,0.3368002600195015,0.3426426884096624,0.3486175710594315,0.3542911282469668,0.3550029555591381,0.3560920045014135,0.3569408686109821,0.3581915031830583,0.3585854838470328,0.3589253201548371,0.3593445428757072,0.3605177780339586,0.3614148130376666,0.3619520769065212,0.3633092169718894,0.3637521391332033,0.3644863758205112,0.3654244306418219,0.3662347099430786,0.3670247695096005,0.368624863748494,0.3705580540951416,0.3739915074309978,0.3756864002565233,0.3759008492081707,0.3773019271948608,0.378901294087795,0.3757585067977571,0.3809115179252479,0.3819815444390481,0.379202501954652,0.3798256537982565,0.3829016986911723,0.3865777080062794,0.0,2.0171186064282165,60.85421453827105,218.5487291287145,331.37208490526666,fqhc8_80Compliance_baseline,98 -100000,95604,41460,389.5966695954144,7331,75.3838751516673,5680,58.75277185055019,2321,23.879753985188906,77.23812690061078,79.67055361302516,63.25655152000609,65.05503346408562,76.9529241071447,79.3851742830856,63.15149252037639,64.95258980610117,0.2852027934660839,285.37932993955906,0.1050589996297048,102.44365798445187,80.40758,56.30107068450545,84104.82824986403,58889.869340723664,221.31499,133.65388666433853,230855.696414376,139163.818108383,261.27118,124.64032880130593,269448.79921342205,127360.05345567327,4110.99113,1845.6876519936957,4257554.600225932,1888089.4334899108,1358.26761,591.7199102520445,1407107.694238735,605320.3216612856,2288.62742,951.593205261012,2357224.7395506464,964712.0378478874,0.38173,100000,0,365489,3822.946738630183,0,0.0,0,0.0,18412,191.9061963934564,0,0.0,24413,251.45391406217317,2087054,0,75036,0,0,3217,0,0,48,0.502071043052592,0,0.0,0,0.0,0,0.0,0.07331,0.1920467346029916,0.3166007365980084,0.02321,0.3055555555555556,0.6944444444444444,25.470397112301622,4.525383666685035,0.3318661971830985,0.205281690140845,0.2195422535211267,0.2433098591549296,11.051795268165456,5.6878252803015,24.78498842758175,13158.764540383228,64.11102951354854,13.535883056311606,21.540382526700597,13.772879618608318,15.261884311928013,0.535387323943662,0.7392795883361921,0.6970822281167108,0.5757818765036087,0.1063675832127351,0.7003484320557491,0.900804289544236,0.8588469184890656,0.7292418772563177,0.1241134751773049,0.47962308598351,0.6633039092055486,0.638205499276411,0.5319587628865979,0.1018181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0051930664448794,0.0074323775485338,0.0098187695028612,0.0120297997068881,0.0144666198029687,0.0164822275485746,0.0188779471254035,0.0208456927766299,0.0229737895998279,0.0251067060658294,0.0272494682654665,0.0292401272115354,0.0311333786932228,0.0331705100533908,0.035036164026365,0.0369894256686709,0.0390808418690656,0.0410680824484697,0.0431176581050347,0.0585344944748204,0.0717219986586183,0.0850800054632752,0.0980662692477829,0.1102322290397186,0.1258937556273502,0.1395697211155378,0.1526137381145269,0.1650421031232278,0.1768649020281884,0.190778328099878,0.2040309640487445,0.2168729840467265,0.2285169519384602,0.2395573875283796,0.2505243532975996,0.261211477151966,0.2706756741516009,0.2804704651189244,0.2892454715659135,0.2975987372770214,0.3053642857980739,0.3131929441371287,0.3194900475073666,0.3262650896232167,0.3324591786244433,0.338132207733474,0.3444404710209711,0.3495585003316124,0.3550131191858153,0.3561440047604879,0.3568939771030363,0.3575965932402416,0.3588801603090014,0.3598710428513858,0.3605507130316937,0.3603712607262828,0.361875030969724,0.3625245123335741,0.3633048289738431,0.3645697921965372,0.3662529339221068,0.3672995780590717,0.3691157259336006,0.3706815155550175,0.3709482532177567,0.3708188328683597,0.3737463501332995,0.3760493040059505,0.3781314823679591,0.3788902680090102,0.3812024434680098,0.3862799847696408,0.3862397297089764,0.3866805805900768,0.3840295132690706,0.3887190461632528,0.3907164480322906,0.3888735123166343,0.3841982958946553,0.0,2.56551650966228,63.17389089115156,207.76337474577463,329.6585620509681,fqhc8_80Compliance_baseline,99 -100000,95726,41315,389.3508555669306,7335,75.5071767335938,5738,59.4300399055638,2333,24.006017174017508,77.33641368994157,79.71186336265353,63.332022412709286,65.0894501810177,77.05649296759412,79.43129840813859,63.22979323259649,64.98982057955139,0.2799207223474411,280.5649545149436,0.1022291801127934,99.6296014663045,81.4539,57.07383843134021,85090.6754695694,59622.0864042582,224.04931,135.0048741147144,233539.6966341433,140519.58100695148,258.90567,122.93523907719288,267530.514175877,126109.83353625078,3328.26112,1481.2388069312096,3449010.8852349413,1519522.2269093124,1410.25383,609.1547761530888,1461246.317614859,624429.3371159624,2313.93892,951.0340174531634,2383455.612895138,964105.0109859176,0.38107,100000,0,370245,3867.757975889518,0,0.0,0,0.0,18639,194.16877337400496,0,0.0,24155,249.4933455905397,2090180,0,74998,0,0,3285,0,0,53,0.5327706161335478,0,0.0,1,0.0104464826692852,0,0.0,0.07335,0.1924843204660561,0.3180640763462849,0.02333,0.3135582267028564,0.6864417732971436,25.376876776627544,4.614724234303063,0.3337399790867898,0.1932729173928198,0.2283025444405716,0.2446845590798187,11.078899090001425,5.43303716077111,24.714083664952952,13039.06466026288,64.08021995731875,12.871787369711027,21.45126581965713,14.50355016203831,15.253616605912264,0.5402579295921924,0.7835888187556357,0.6939947780678851,0.5717557251908397,0.1089743589743589,0.7164068299925761,0.9047619047619048,0.8841870824053452,0.7777777777777778,0.1624548736462094,0.486221817353678,0.7355163727959698,0.635743519781719,0.5089641434262948,0.095829636202307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.0044016673597095,0.0066500837605969,0.008903162858769,0.0110678209210298,0.0132401768072841,0.0152153295464975,0.0173881968552174,0.0195883982701685,0.0217638327276449,0.0240994731123275,0.0259645592492967,0.0277452129738178,0.0297777228436643,0.0317820658342792,0.0337171562648584,0.0354236129807194,0.0373793962029256,0.0392662266798316,0.0413541666666666,0.0566195359328334,0.0703321998430552,0.0834137337975586,0.0952916565926268,0.1083075106979489,0.1244028746565208,0.138347379021572,0.1510314759676733,0.1631354801524192,0.1740672101468682,0.1878443526170798,0.201453240054929,0.2135568909124496,0.2258948955181491,0.2365616209563994,0.2480814737819846,0.2585163641226222,0.2684716883583968,0.2782381951136556,0.2866032922658064,0.2951871286899836,0.3025475103080139,0.3107534885919204,0.3172801819596576,0.3241511540421814,0.3307848568790397,0.3370598239295718,0.3431049612738303,0.3487351440925921,0.3542032506370562,0.3551838924003719,0.3562898198968475,0.3570430388323475,0.3577628051872781,0.3584689023753784,0.3589869682812884,0.3587319243604004,0.3599314447685437,0.3613970083710717,0.3628324933187452,0.3651289188121791,0.36544415336985,0.3662063602160708,0.3664536383002579,0.3678885347242345,0.3707077051926298,0.3717221726490314,0.3750278139801011,0.3755185986312542,0.3783056024435334,0.3827618164967563,0.3854369984818911,0.3872533160789388,0.3904130943102104,0.3873968923844235,0.3900328987449738,0.3881578947368421,0.3884654994850669,0.3933425797503467,0.3903474903474903,0.0,1.9051791655031127,59.774034877868736,209.45249750191005,345.172660635844,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,0 -100000,95599,41441,389.9203966568688,7203,74.13257460852101,5584,57.72026904047113,2243,22.981411939455437,77.26635035352784,79.70364971589669,63.26822878755484,65.0716679770671,76.98455606695697,79.42581277644612,63.16389421205468,64.97238655203004,0.2817942865708716,277.836939450566,0.104334575500161,99.28142503704862,81.14062,56.81648942371587,84876.01334741995,59432.09596723384,219.56706,133.29912032829895,228989.95805395456,138750.58350850845,258.32258,123.05167658914765,265907.3002855678,125378.78838483998,3211.03176,1452.193459360322,3320504.356740133,1480696.0944783138,1375.2187,603.8463395747171,1419921.6832812058,613038.3890780413,2215.3954,933.9253052851412,2272711.534639484,937069.224312912,0.38245,100000,0,368821,3858.0006067009062,0,0.0,0,0.0,18305,190.7655937823617,0,0.0,24260,249.46913670645088,2086257,0,74897,0,0,3219,0,0,29,0.3033504534566261,0,0.0,0,0.0,0,0.0,0.07203,0.1883383448816838,0.3113980285991948,0.02243,0.3101992347275366,0.6898007652724634,25.25420974833681,4.5165168298425,0.3409742120343839,0.2027220630372493,0.2220630372492836,0.2342406876790831,11.247363716226523,5.663973343982708,24.19614072196287,13146.38701693068,63.28422358865515,13.301918740782629,21.55016030661074,13.88917062944015,14.542973911821631,0.5492478510028653,0.7597173144876325,0.6953781512605042,0.5887096774193549,0.1169724770642201,0.7025862068965517,0.905027932960894,0.8791208791208791,0.7152542372881356,0.1514084507042253,0.4983301526717557,0.6925064599483204,0.6376811594202898,0.5492063492063493,0.107421875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021585795938222,0.0045447628709104,0.0070988249870515,0.0093134862534569,0.0113698825349646,0.0136062048370822,0.0155229425212279,0.0178719229943901,0.0202791192600474,0.0223486012911158,0.0245699741368693,0.0265608617889521,0.028782606905355,0.0307354442256338,0.0326702197983804,0.0346008588131822,0.0369399156310568,0.0387295784302524,0.0406839990841156,0.0426557089816862,0.056716605158336,0.0713162858939425,0.0855534078493991,0.0984188515869421,0.1106451749197228,0.1260725862836077,0.1396305429190935,0.1522583260438224,0.1646614287855109,0.176215856095936,0.1893393458185898,0.2022311119784044,0.2148132011763424,0.2260983893941054,0.2375881834215167,0.2483469423981539,0.2589687726942629,0.2695473946191876,0.2789632760658121,0.2887971089313371,0.2979573866598695,0.3069047116984138,0.314678105485182,0.3209817305039406,0.3273932611604427,0.3336338153394006,0.3395925842301999,0.345158246410446,0.3503711201079622,0.3560675152332236,0.3577652485904664,0.3588393410986284,0.3598831300813008,0.3601546436535287,0.3607353554615339,0.361279926335175,0.361105379279694,0.362042544777472,0.363547524345083,0.3648643800229621,0.3659391609182404,0.367395238758179,0.3685175815836073,0.3690944660565312,0.3710044556373498,0.3727807542809118,0.3734337280147143,0.3753135816582515,0.3760277856535299,0.3767244145011229,0.3780258141564466,0.3820441397043068,0.3841288096607245,0.3871904616325283,0.3880259813611974,0.3900557731102408,0.3905842662168379,0.3931484502446982,0.3971278652305993,0.4,0.0,2.7000468949080583,61.19718468121821,215.71061598279908,314.81068330274,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,1 -100000,95716,40991,384.4811734715199,7326,75.4105896610807,5718,59.25864014375863,2332,24.00852522044381,77.34534288058313,79.71321405113312,63.32656324425341,65.07397984290965,77.05883167086795,79.4238118661953,63.22376779823985,64.97217097541466,0.2865112097151865,289.40218493782766,0.1027954460135589,101.80886749499508,80.93184,56.650397274634095,84553.90948221824,59185.71869929364,219.62068,131.88101064462734,228971.352751891,137305.77622779904,256.36444,121.58714397790804,264595.37590371515,124501.6781218048,3292.74608,1464.1118133307812,3413525.93087885,1503142.608427827,1396.5569,601.0355235342124,1446719.670692465,615702.9445381933,2294.10374,943.1777902713544,2363730.2645325754,959593.5399032162,0.37842,100000,0,367872,3843.3595219190106,0,0.0,0,0.0,18216,189.82197333779095,0,0.0,23952,247.09557440762256,2092851,0,75097,0,0,3240,0,0,50,0.5119311295917088,0,0.0,1,0.0104475740733001,0,0.0,0.07326,0.1935944188996353,0.3183183183183183,0.02332,0.312258064516129,0.687741935483871,25.54844169992104,4.635050230709933,0.3352570828961175,0.1937740468695348,0.2359216509268975,0.2350472193074501,11.016006461906995,5.482719759783302,24.760490296203702,13067.5974612562,63.91416853434046,12.954522263241202,21.27041432998009,14.888708511890842,14.80052342922833,0.5360265827212312,0.7608303249097473,0.6744913928012519,0.5648628613787992,0.1242559523809523,0.7064492216456635,0.9027777777777778,0.852017937219731,0.7398648648648649,0.117408906882591,0.4834058136873426,0.6925133689839572,0.6206662134602311,0.5156695156695157,0.1257976298997265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0046115176453894,0.0067468852725132,0.0088970140158439,0.0109621916248042,0.012828475142284,0.0151779252418376,0.0175270255096311,0.0194835728742869,0.0218648596083569,0.0239886822627273,0.0262271513657835,0.0282446359877394,0.0306276978231979,0.0328376384144642,0.0349600471371422,0.0372104102155159,0.0390510683782858,0.0410272405905593,0.043026103266816,0.0576360750240193,0.0716274201988487,0.0844245781918912,0.0980367401047913,0.110305677777426,0.1247976126226229,0.138350158699829,0.1516865301253581,0.164062666980144,0.1754794285469132,0.1893618625898273,0.2026418362927674,0.214895816332082,0.2268259041947631,0.2378645053299268,0.2484869310749994,0.2595725684950616,0.2693285630709689,0.278255144780304,0.2877253671164463,0.2954808404294706,0.3034789218265801,0.3107378737305589,0.3180745125765437,0.3243624169228339,0.3306993429406181,0.3361881150927804,0.3420165608822295,0.3476338649034098,0.3525157981015838,0.353859649122807,0.3545080836506097,0.3559621611685355,0.3569988834268645,0.3582603767393995,0.3581362469841562,0.3589234992621273,0.360169770349411,0.3611044623012481,0.362146983598934,0.3638990524439441,0.3647993029564942,0.3663276883640795,0.3673116249803366,0.3674596637433984,0.368519052739241,0.370415892525368,0.3744798890429958,0.378652397380835,0.3785557986870897,0.3831758554261077,0.3836012861736334,0.3855146124523507,0.3868004631416442,0.3852591535901093,0.3844955667385574,0.3810994441012971,0.3749232971977909,0.3770217512548801,0.3767313019390582,0.0,1.818291801730479,59.9676758347072,211.1917623914421,339.89795609606705,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,2 -100000,95663,41163,385.499095784159,7168,73.6543909348442,5606,58.01616089815289,2311,23.78139928708069,77.2498286400838,79.64899608856335,63.26585613190741,65.03908850713388,76.96601781164395,79.36379750247308,63.16139573366998,64.9368257980988,0.2838108284398544,285.1985860902744,0.1044603982374354,102.26270903508804,80.83438,56.663891802911024,84499.10623752131,59232.81917032816,218.96794,132.69469701856556,228310.50667447184,138125.95989940263,258.92499,122.90574302793,267141.08903128695,125782.39917605255,3232.46788,1453.9267360761248,3346175.428326521,1487001.92977026,1398.62787,601.9514849194397,1446749.140210949,613954.4493894603,2274.74764,940.0386626677714,2341928.1017739354,952641.2505167264,0.37889,100000,0,367429,3840.868465341877,0,0.0,0,0.0,18245,190.10484722410965,0,0.0,24194,249.36495823881756,2085556,0,74891,0,0,3233,0,0,41,0.428587855283652,0,0.0,1,0.0104533623239915,0,0.0,0.07168,0.1891841959407743,0.3224051339285714,0.02311,0.3233182664185057,0.6766817335814943,25.307346278270245,4.547627865372983,0.3453442739921513,0.1949696753478416,0.2227970032108455,0.2368890474491616,11.151511439431482,5.682399211468831,24.53615983417669,13113.44824387958,63.41839457858681,12.862198019460912,21.98543670923566,14.06127469500628,14.50948515488395,0.550303246521584,0.7676120768526989,0.6993801652892562,0.5940752602081665,0.1129518072289156,0.7011747430249633,0.8972809667673716,0.8669438669438669,0.7030716723549488,0.1361867704280155,0.501885014137606,0.7112860892388452,0.6439862542955327,0.5606694560669456,0.107376283846872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026945986466226,0.0049996450556248,0.0071862851574791,0.0094492989229831,0.0118501490168953,0.0142790214490864,0.0162438308112738,0.0189002910093429,0.0209245244426263,0.0229823842687423,0.0251610388544701,0.0271808357644738,0.0292335079180515,0.0313746508487853,0.0332662227040421,0.0354546112714222,0.0374392505932458,0.0395257327366923,0.0417928150067105,0.0438445577486523,0.0583035546360729,0.0723224664621055,0.0853922206595436,0.0978512501052277,0.1105060418975251,0.1252778189361386,0.138735198853077,0.1514631599138941,0.1639816003423192,0.1752750085940185,0.1897476289638653,0.2025570399930597,0.2144929116684842,0.2261050784249204,0.2370939435080631,0.2488137702659154,0.2591045979199086,0.2697436707432646,0.279365223924774,0.288199871288039,0.2972213187119558,0.3050247949423018,0.312482161545048,0.3196051285138145,0.3263070579911684,0.3328712184977967,0.338201103417074,0.3440700722460201,0.3492468194708223,0.3543558672623861,0.3553240427547016,0.3568565663266716,0.3576999844287473,0.3582293376723374,0.3599563834077703,0.3601845444059977,0.3596553971357271,0.360001979936642,0.3608939891085877,0.3623388995739938,0.3633808131308367,0.363953025477707,0.3647634308847094,0.3660758580255265,0.3666723296847317,0.3668851599370739,0.3685700397449461,0.3707507639960933,0.371446664790318,0.3731759827764931,0.3737917198613897,0.375,0.3779418259827118,0.3805485522194209,0.3822808671065033,0.3794044370625222,0.3797235023041475,0.3789711006353761,0.3791285040244241,0.3832632785632403,0.0,2.231960283660149,60.24845352206936,215.14846798863616,323.9971106363199,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,3 -100000,95749,41110,385.2259553624581,7239,74.39242185296975,5661,58.60113421550095,2348,24.1777982015478,77.32698317968122,79.68728620349265,63.31555014592704,65.0615621303907,77.04424736825544,79.40163699890087,63.211860041828935,64.95878998105911,0.2827358114257805,285.6492045917776,0.1036901040981064,102.77214933158518,81.01104,56.74684822429666,84607.71391868322,59266.25680090305,220.93879,133.93087072016877,230220.26339700675,139355.86543390734,259.22619,123.67174045369752,267238.2479190383,126450.48387900268,3262.51452,1457.9446325419742,3379917.409059102,1495564.2333597,1376.36826,602.7755647209151,1422431.3987613448,614493.2529017687,2317.13032,957.2806878037972,2388318.938056794,973427.1409432092,0.37951,100000,0,368232,3845.805178121965,0,0.0,0,0.0,18381,191.4171427377832,0,0.0,24213,249.38119458166665,2088237,0,74920,0,0,3175,0,0,42,0.4386468788185778,0,0.0,0,0.0,0,0.0,0.07239,0.1907459618982372,0.3243541925680342,0.02348,0.3285340314136126,0.6714659685863874,25.40886538278389,4.590100828766113,0.3227344992050874,0.202791026320438,0.2317611729376435,0.2427133015368309,11.048735866637744,5.472235936241969,24.77676083614584,13070.858576038852,63.4581140065305,13.366181779653251,20.453513459815543,14.618937730040908,15.019481037020809,0.540893835011482,0.7674216027874564,0.6683087027914614,0.6021341463414634,0.12372634643377,0.7005150846210448,0.8967551622418879,0.8555304740406321,0.7391304347826086,0.1726618705035971,0.4904695490469549,0.7132262051915945,0.6083815028901735,0.5616979269496545,0.1113138686131386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023301757763031,0.0045020380848086,0.0068205346812009,0.0091230494148244,0.011390795830155,0.0134209052492235,0.0155810254109393,0.0177612641120388,0.0201034299497158,0.0222720340631109,0.0243617468305131,0.0265662050771425,0.0284527774351383,0.0306849540755385,0.0329272444063915,0.0350596209882411,0.0368874946941226,0.0389598265686101,0.0409698909756072,0.0432640220018334,0.0579687451066361,0.0716706768490427,0.0852107729564825,0.097959655632759,0.1101308119617578,0.1257507189984774,0.1390677202100015,0.1512760724438624,0.1633335827356584,0.1749546513250399,0.1890892628084207,0.2022268675468714,0.2146432768902624,0.226149183179963,0.2368606468943347,0.2477441525329786,0.2589596925551881,0.2692169054699468,0.2785270357788054,0.2874749211808541,0.2962164917402284,0.3042841407110548,0.3115506385400732,0.3179116485152676,0.3247061400306636,0.3306836836713282,0.3372999949842002,0.3433296357214805,0.3485680175445426,0.3539370390928554,0.3551013805004314,0.3560029766826525,0.3569252468265162,0.3586629219989576,0.3590697951405431,0.3590440645686464,0.3583869175200445,0.3590499078219647,0.3606113567047051,0.3612178856846584,0.3615871168753167,0.362422224864265,0.3633758297334317,0.3653993078962743,0.3659863616578807,0.3670258790214741,0.3671705026909424,0.3713418873648947,0.3726237082495679,0.3736842105263158,0.3750970984692712,0.3804904051172708,0.3785475001580178,0.3780646146795998,0.3806603773584905,0.3830673969992855,0.3842720837180671,0.3897822104620395,0.3973713646532438,0.4001563110590074,0.0,2.0218118924945068,60.128648783607,215.25640162616912,325.9536981071493,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,4 -100000,95752,41507,389.62110452001,7364,75.49711755368034,5689,58.745509232183146,2330,23.93683682847356,77.39144353273707,79.73181032702402,63.36142006586866,65.08775780846064,77.10366133062443,79.44357469523058,63.25554418497488,64.98449840290728,0.2877822021126377,288.2356317934409,0.1058758808937767,103.25940555335931,80.8313,56.62521150434401,84417.34898487761,59137.36684804913,218.82718,132.14975615842548,227905.02548249645,137382.1916601486,259.98661,124.1316385410994,267233.36327178543,126233.61888308285,3265.64872,1475.4396876453934,3374406.759127747,1505061.45554489,1393.67743,607.415812457521,1439859.9507059904,618840.1089629483,2292.32198,954.0722312572884,2357173.928481912,964802.086223693,0.38304,100000,0,367415,3837.1522265853455,0,0.0,0,0.0,18226,189.6775002088729,0,0.0,24304,249.53003592614252,2095630,0,75180,0,0,3282,0,0,43,0.4490767816860222,0,0.0,1,0.0104436460857214,0,0.0,0.07364,0.1922514619883041,0.3164041281912004,0.0233,0.310136351942372,0.689863648057628,25.21710436998921,4.640910751369237,0.3222007382668307,0.2005624890138864,0.2425733872385305,0.2346633854807523,11.252159693787826,5.593216709405361,24.76382845847445,13184.41205659826,64.06697008086199,13.25119795340881,20.81634566297256,15.442740046822296,14.556686417658344,0.5420987871330638,0.775635407537248,0.685215493726132,0.5702898550724638,0.1168539325842696,0.7232267037552156,0.9305555555555556,0.8675889328063241,0.7156549520766773,0.1621621621621621,0.480828040461068,0.704225352112676,0.6156744536548606,0.5276476101218369,0.1059479553903345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023691884011015,0.0048947576436251,0.0073862137537793,0.0096891154873503,0.011784323494423,0.0138832342643107,0.0160790707153046,0.0183137102862856,0.020370010930748,0.0224686911680445,0.0244979508196721,0.0265306959947472,0.0284830612098108,0.0305675058150305,0.0328433292786013,0.0349565109600644,0.0369580741645363,0.0389864962973718,0.0410698322280202,0.0428659228934237,0.0566272102878854,0.0711744516993135,0.0845572807385648,0.097889301376634,0.1098071468488701,0.1255194729662567,0.1388529492862748,0.1513745850710698,0.1640091845997757,0.1755303753095419,0.1895380507918052,0.2025828502206454,0.2149130434782608,0.2269315239125446,0.2381146099041252,0.2498948580029661,0.2611109872220859,0.2714248794903199,0.2814750138906213,0.2911831353429925,0.2998057713651498,0.3077561614366553,0.3150354324653661,0.3219134581970258,0.3285341426403642,0.3347496243749846,0.3404255319148936,0.347102703803656,0.3529663212435233,0.3583048566490309,0.3593211670973298,0.3603426465735342,0.3608604451452142,0.3613160288151987,0.3618872294308026,0.3619321396351626,0.361711554894452,0.3619322751670141,0.3634779042345945,0.3652763127313035,0.3661497979513203,0.3672096668584694,0.3690436100353595,0.3698987626546681,0.3700588933860061,0.3710660431881469,0.3730411115885976,0.3738314795449504,0.3781524511192972,0.3805497675909601,0.3834607238235565,0.3855557949159844,0.3887007094011631,0.3892741562644475,0.3873779967781673,0.3889679715302491,0.389444949954504,0.3862903225806451,0.3855191256830601,0.3850860420650095,0.0,2.6647607704854206,62.87763725193737,210.58820489875296,325.89353267171225,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,5 -100000,95732,41471,387.8849287594535,7409,76.22320645134333,5762,59.64567751639995,2305,23.680691931642503,77.37264048070351,79.73118516127168,63.34029949113111,65.08150527575832,77.0816624298628,79.43938488899937,63.23412539739788,64.97714426198891,0.2909780508407067,291.80027227231164,0.1061740937332302,104.361013769406,80.33784,56.359051874186406,83919.52534157857,58871.69585320103,221.50725,133.5336655079292,230808.07880332597,138931.54437711733,261.64864,124.00507982359706,270032.0686917645,126896.58545000949,3350.82856,1501.180297039553,3470030.251117704,1538965.8806386483,1426.53204,617.0599102867636,1476226.1626206494,631206.3329784368,2284.3782,954.2153454976828,2349576.0038440647,967630.4474546886,0.38241,100000,0,365172,3814.523879162663,0,0.0,0,0.0,18410,191.72272594325827,0,0.0,24440,252.0891655872645,2093793,0,75098,0,0,3198,0,0,43,0.4387247733255338,0,0.0,1,0.0104458279363222,0,0.0,0.07409,0.193744933448393,0.3111081117559724,0.02305,0.3219186866743619,0.678081313325638,25.450036175406076,4.64594095183104,0.3255813953488372,0.2023602915654286,0.2263103089205137,0.2457480041652204,11.022671747857087,5.354625660584378,24.68363338165264,13253.41339326471,64.82381974997371,13.72784409677139,21.10677184041413,14.37863510532215,15.610568707466037,0.5437348143005901,0.7787307032590052,0.6918976545842217,0.5973926380368099,0.1045197740112994,0.7015032211882606,0.9297297297297298,0.8603603603603603,0.7649122807017544,0.1208053691275167,0.493241695303551,0.7085427135678392,0.6396648044692738,0.55053974484789,0.1001788908765653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493670886075,0.004570652559464,0.006827150349473,0.0089880565485862,0.0112863374309855,0.0135391005150966,0.0158912990296012,0.0183826156185887,0.0206584959470095,0.0229399119664244,0.0252524734710616,0.0272789807086169,0.0294287006951013,0.0319052523171987,0.0340039203548952,0.0362867802846305,0.0385443627704731,0.04061650797602,0.042529309054627,0.0444201426860386,0.0589697007663555,0.0735532607217217,0.087200402608568,0.0988165556092741,0.1117834327760325,0.1278001543454589,0.1411753476088962,0.1540360509906574,0.1662502135656928,0.1778211493710523,0.1925930712154987,0.2059937249810667,0.2181025200395897,0.2299892809485266,0.2413998019148233,0.2524626857402462,0.2627319207841211,0.2730722457436267,0.2824763116635234,0.2915323829294308,0.300280202857606,0.3081677807564884,0.315521839625437,0.3225202295483468,0.3288567744446877,0.3350736873287417,0.3408273493991002,0.3468919934286769,0.3519027374533389,0.3566295934272052,0.3577002385476893,0.3592703827184305,0.3599740366027459,0.3610857631193963,0.3618523981940905,0.3616946133529881,0.3621504966834872,0.3630107668499555,0.3645696100740842,0.3654265394374754,0.3663362626243699,0.3675211985847844,0.3688374923919659,0.3693764268767626,0.3696003083817187,0.3703471678412947,0.3723012862561675,0.375196380317979,0.3778643365968347,0.3791108645693002,0.3814447075970122,0.3833697331273638,0.3873011849692668,0.3884303836160782,0.3910504003768252,0.3927765237020316,0.3922321154436598,0.3934025656689065,0.3966759002770083,0.3930769230769231,0.0,2.0349789894187764,62.000398975217706,219.0428107339918,331.72837156276444,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,6 -100000,95732,41003,384.333347261104,7143,73.23569966155517,5565,57.42071616596331,2261,23.18973801863536,77.33281654085012,79.69748681794748,63.319784280511655,65.07037412035865,77.04891729328445,79.41269268637,63.215871871590416,64.96826054396024,0.283899247565671,284.7941315774847,0.1039124089212393,102.11357639840912,80.65552,56.48543155217613,84251.13859524505,59003.5351829516,218.77942,132.41299887141372,227791.90866168053,137589.5255428444,254.60601,121.42651856365352,260649.1455312748,122862.05455736096,3219.06388,1457.429324497082,3325082.2713408265,1485797.8313881662,1365.66032,596.8199902824603,1407795.940751264,605656.879777364,2238.18422,939.6713805639422,2299205.40676054,951400.4530895506,0.37755,100000,0,366616,3829.5972088747753,0,0.0,0,0.0,18215,189.4977645928216,0,0.0,23822,243.53403250741653,2093447,0,75196,0,0,3115,0,0,49,0.5118455688797894,0,0.0,0,0.0,0,0.0,0.07143,0.1891934843067143,0.3165336693266135,0.02261,0.317885204421361,0.682114795578639,25.45449752108017,4.556957776468787,0.3292003593890386,0.2017969451931716,0.2267744833782569,0.2422282120395328,10.97273331956071,5.447564576349023,24.418296404649624,13030.099539832549,63.013996636104,13.224566785753876,20.815069782903247,14.039804356845284,14.93455571060158,0.5437556154537286,0.7693677649154052,0.6932314410480349,0.5768621236133122,0.1216617210682492,0.7114427860696517,0.9418282548476454,0.8721174004192872,0.7402135231316725,0.1284722222222222,0.487012987012987,0.6876640419947506,0.6302583025830258,0.5300713557594292,0.1198113207547169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022798893493702,0.0045033623076689,0.0069753274444106,0.0093920574094591,0.0116387905424653,0.0136591427640156,0.0160515607950315,0.0180602348136804,0.0199484673115069,0.0222094797309058,0.0244317541035709,0.0265227748798619,0.0287591511063584,0.0307209062821833,0.0328411799300461,0.0348334814876067,0.0369610919522374,0.0389053776384882,0.0410917598128411,0.0430756088922224,0.0576770502755971,0.072051054035675,0.0846423253570455,0.097570462884116,0.109896596430943,0.1253542274669035,0.1389377903153965,0.1519418457379439,0.1639538609420057,0.1753849783382662,0.1893093610378425,0.2025183630640084,0.2147074494112018,0.2263220615085222,0.2376647088585318,0.2487209585612722,0.2593824281043199,0.2694234037524339,0.2782123031864776,0.2863343793664246,0.2943430741443986,0.3023315728455494,0.3092566038183046,0.3154946135943761,0.3220823450708508,0.3285463795317593,0.3348170066577228,0.3405128466557912,0.3460191000155707,0.3518119153777966,0.3527045994385662,0.3533582552798201,0.3539909287440125,0.3545642943060447,0.3562489745387289,0.3564944938487767,0.3568558951965065,0.3587924478609405,0.3602144092613841,0.3612577625856792,0.3630008268811546,0.363926813779965,0.3645780803496386,0.3639156072733795,0.3642860592013134,0.3649480216816361,0.3660458452722063,0.3677484658695514,0.3711511299435028,0.3746851637148682,0.3762553308570642,0.3764661774945102,0.3808165335361988,0.3808611707018081,0.3816261082814563,0.387058403711193,0.3893913843323624,0.3844435418359058,0.3794247787610619,0.3824319140774836,0.0,2.6922901580357608,61.84692676116504,210.2190193495346,315.82503863472607,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,7 -100000,95784,41365,387.3820262256744,7296,74.99164787438403,5703,59.00776747682285,2223,22.843063559675937,77.34910350822409,79.67729187203231,63.34642956891118,65.06653044801335,77.07253435375448,79.40102896109929,63.24462208671837,64.96753616317737,0.2765691544696125,276.2629109330277,0.1018074821928038,98.99428483598172,80.52836,56.41289159859688,84072.87229599933,58895.94462394228,220.14781,133.46777282274826,229317.5686962332,138822.24883357165,265.71296,126.67257800839656,274154.5456443665,129728.41696846984,3270.42616,1474.291778574171,3384658.356301679,1509465.859197955,1364.32604,595.5242374302528,1409587.1961914306,606946.0425856645,2191.25498,918.081562898998,2253797.96208135,929375.5928568692,0.38023,100000,0,366038,3821.4941952726967,0,0.0,0,0.0,18332,190.83563016787767,0,0.0,24802,255.71076588991895,2092224,0,75181,0,0,3155,0,0,49,0.5011275369581558,0,0.0,0,0.0,0,0.0,0.07296,0.1918838597690871,0.3046875,0.02223,0.3137665054255458,0.6862334945744542,25.209211710309056,4.510119688258711,0.3412239172365421,0.2081360687357531,0.2200596177450464,0.2305803962826582,11.068969502097016,5.527437088621374,23.849761580488824,13126.146452220886,64.21031105200235,13.745074244036347,21.906997429119887,14.087901619358874,14.470337759487236,0.5425214799228476,0.7455770850884583,0.6932168550873586,0.5705179282868525,0.1095057034220532,0.7033356990773598,0.9316939890710384,0.8638297872340426,0.7304964539007093,0.1305841924398625,0.4897531439217513,0.6626065773447016,0.6388888888888888,0.5241521068859198,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025822261827608,0.0047740196028745,0.0070507552931389,0.0095174249118851,0.011591491438565,0.0138645710330225,0.0163476630179987,0.0185030209013716,0.0208444026648138,0.0229381733356523,0.0253050435922916,0.0274502560313599,0.0293204801447011,0.0314854460867059,0.0336835376478229,0.0356445665533945,0.0376759105960264,0.0396926618346968,0.0415835411471321,0.0436625291569476,0.0579917348472199,0.0718207775093345,0.0849357294134915,0.0978319128140993,0.1102996965098634,0.1258982162482035,0.1398092209856915,0.1518602400927196,0.1639919759277833,0.1758240581045324,0.1894378854246262,0.2016523206021021,0.214831646354059,0.226670311645708,0.2382545166472284,0.2499916931562683,0.2608089105153903,0.2709312523894123,0.279793040064448,0.28839989008976,0.2961180770832369,0.3040263037805834,0.3120760479679897,0.3186972573839662,0.3256424275560415,0.3319475456754789,0.3377217156027658,0.3431472469233317,0.3494538567314428,0.3546578512396694,0.3556122311283837,0.3564759264622726,0.3575449735449735,0.3587234966350676,0.3600838961116235,0.3601189563724438,0.3598433809425677,0.3606031704268894,0.3617683792708173,0.3628877790308433,0.3643566587183868,0.3655986509274873,0.3662560955103413,0.3675413371675053,0.3699634586065871,0.3708856107932174,0.3705650837427102,0.372971256153724,0.3739589609100897,0.3761486296697564,0.3780700947474933,0.3794693111766282,0.3819066521544273,0.3837308018831519,0.3859900611620795,0.3858181818181818,0.384156862745098,0.3892686969131966,0.3874051166713522,0.3856573705179283,0.0,2.072998813693318,62.27128793634031,212.02224690840572,331.4609716605326,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,8 -100000,95659,41016,384.9716179345383,7209,73.9501771919004,5591,57.778149468424296,2332,23.918293103628518,77.31532774038504,79.70488205783052,63.31028192710126,65.07530774611797,77.02990618492748,79.42353208919077,63.20440723315145,64.97376762330715,0.2854215554575603,281.34996863974493,0.1058746939498078,101.54012281081748,81.85848,57.30538260059147,85572.9832007443,59905.66763251913,218.5031,132.54454939242774,227737.74553361424,137878.40076984678,258.34664,123.2779187198864,266297.1806102928,125850.70171543804,3222.27804,1467.2966263706994,3331368.1723622447,1497247.492622774,1382.65593,604.7096254712966,1428781.73512163,615745.1771164823,2292.33072,957.7102533266664,2353789.774093394,965427.0255303842,0.37853,100000,0,372084,3889.6810545792864,0,0.0,0,0.0,18195,189.50647612874897,0,0.0,24161,248.78997271558347,2085862,0,74846,0,0,3309,0,0,45,0.4599671750697791,0,0.0,0,0.0,0,0.0,0.07209,0.1904472564922199,0.3234845332223609,0.02332,0.3179487179487179,0.6820512820512821,25.20610365689695,4.598339599037279,0.3235557145412269,0.2030048291897692,0.2405651940618851,0.2328742622071185,11.322689085707289,5.810940224522912,24.730744881175657,13051.557714952733,63.211730960619285,13.270037440995727,20.60778568376011,14.9885189261345,14.345388909728928,0.5446252906456805,0.7647577092511013,0.693200663349917,0.5769516728624535,0.1129032258064516,0.7112038970076549,0.922872340425532,0.8617021276595744,0.75,0.1290322580645161,0.4870004814636495,0.686429512516469,0.6340552651232263,0.5246853823814134,0.1085043988269794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.004592550538332,0.006779110596927,0.0091947249710442,0.0115458170572916,0.0136898395721925,0.0159928195504059,0.0181706756549716,0.0202689574065551,0.0222929936305732,0.0241626156339097,0.0261836036609793,0.028197847869473,0.0304382322332017,0.0324521836066927,0.034574055496375,0.0368954370259853,0.0391900447322809,0.0411595830992947,0.0430224075039082,0.0574425626612894,0.0716275076433387,0.0842700756740871,0.0970671493365043,0.1088631374535629,0.1241861893016313,0.1377010883992567,0.1502071859987004,0.16250507728157,0.1741286589882032,0.1888999073016146,0.2020532368802928,0.2140384112882153,0.2250985113835376,0.2364812020136372,0.247728508192902,0.2587196961233381,0.2691740495998018,0.2774591420686209,0.2858404035771612,0.2942301007994438,0.3026491462300611,0.3105719565938492,0.317543227665706,0.3248285255630685,0.3309522047030375,0.3373185953831115,0.3432162915982119,0.3484424402633079,0.3535489667565139,0.3544663925032023,0.3561088592935726,0.3573060648801128,0.358621488896293,0.3587608906098741,0.3583972981271108,0.3588686009803766,0.3604777237481929,0.3616595380667237,0.3629193790686029,0.3641188163372463,0.364367338046858,0.3645677739675594,0.365759978437142,0.3677863702271629,0.3680970344755318,0.3684392066685829,0.3688511558396133,0.3715402380529401,0.3742210428979214,0.3767761579627237,0.3776201225411157,0.3774897854954034,0.3826080223013783,0.3835341365461847,0.385439229843562,0.3885311254216498,0.3889112093210125,0.3971885336273429,0.4003038359285986,0.0,2.5627013665444216,63.1280147434569,209.8826992736085,314.02921447191613,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,9 -100000,95618,41275,387.3015541006924,7183,73.94005312807212,5527,57.13359409316238,2289,23.489301177602545,77.3146043072854,79.73308247344968,63.296484254502126,65.08263538124241,77.02986971064013,79.4513139611215,63.19180344880498,64.98228650878268,0.2847345966452792,281.7685123281848,0.1046808056971428,100.34887245973324,80.67466,56.48558860289048,84371.8337551507,59074.22096560322,219.66523,132.94564410038055,229080.4346461963,138386.64697063374,252.16969,120.10546285504734,259858.1229475621,122524.79003106237,3182.46564,1430.919887434267,3293356.8574954504,1461540.9310320923,1377.78484,595.2428663706988,1426788.2302495346,608383.77331747,2254.06652,935.6075241961344,2317355.602501621,944244.498406178,0.38063,100000,0,366703,3835.0833525068506,0,0.0,0,0.0,18284,190.52897989918216,0,0.0,23645,243.3642201259177,2091020,0,74961,0,0,3207,0,0,39,0.4078729946244431,0,0.0,0,0.0,0,0.0,0.07183,0.1887134487560097,0.3186690797716831,0.02289,0.3086076953589845,0.6913923046410154,25.687359092341364,4.528667698261615,0.3318255834991858,0.1972136783064954,0.2317713045051565,0.2391894336891623,11.132338511721484,5.565591585656748,24.337858985082097,13107.3947547567,62.04330811482946,12.581756271428285,20.63400519417202,14.319736734330426,14.507809914898733,0.5379048308304686,0.7522935779816514,0.693565976008724,0.570647931303669,0.113464447806354,0.6904937361827561,0.9186746987951808,0.8568376068376068,0.7025089605734767,0.1258992805755395,0.4882494004796163,0.679419525065963,0.637628111273792,0.5339321357285429,0.1101532567049808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0045126811410491,0.006913144110123,0.0090636589950718,0.01129150390625,0.0136280301487064,0.0160647076223212,0.0182143221983859,0.0202718597539147,0.0223756029124125,0.0245333333333333,0.0268723869788082,0.029175754084194,0.0312921805611366,0.0334344935794211,0.0354450797721092,0.0374883431768728,0.0394534656754848,0.0413813913803508,0.0433889253939943,0.0576786386252456,0.071780259381089,0.0848813886817814,0.0976326066590174,0.1096708818003335,0.1251945741605515,0.1386507759472292,0.1516220479154233,0.1638246432315625,0.1757034044884672,0.1892477990678405,0.2022090704127644,0.2151061418421167,0.2266218185403907,0.237810725899796,0.2492563487835198,0.2596070015424854,0.2695688431111812,0.2799222753769758,0.2885574992830513,0.2963048739534722,0.3038731570325298,0.3116112762103219,0.3189351241156014,0.325225969481971,0.331808824073275,0.3378396985742361,0.3442606261135149,0.35,0.3550845219228737,0.356112878011967,0.3563569766321036,0.3581535770212886,0.358488653314217,0.3592189596064987,0.3584282267607149,0.3587049810864935,0.3601848032340566,0.361822871883061,0.3625349989231101,0.363609016901991,0.364507254121885,0.3661794619078575,0.3679775910364146,0.3691908015010103,0.3708841979229027,0.3726249821962683,0.3746114477691607,0.3754122517718055,0.3780497496622427,0.379734158776402,0.3811804779392198,0.3813279063851437,0.3818474758324382,0.379649787032655,0.3779356858966639,0.3769772905246671,0.3805985552115583,0.3849372384937238,0.3873767258382643,0.0,2.617198211291886,59.59761786130253,203.56082789295704,321.7290686268814,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,10 -100000,95656,41372,387.8899389478966,7239,74.55883582838504,5630,58.386300911599896,2268,23.406791001087228,77.29129418892526,79.69089967130783,63.29829466637945,65.06983774364558,77.0112463990689,79.40804466575206,63.194893131822944,64.96752180626945,0.2800477898563684,282.85500555577414,0.1034015345565038,102.31593737613308,81.51506,57.12327075618186,85216.88132474701,59717.394367506335,221.20687,133.9037525958626,230784.44634941875,139516.65613851996,260.40575,123.7861971645826,269091.06590281846,127107.79528752224,3244.99392,1472.8457140738767,3367041.6910596304,1514415.3990067297,1352.88481,593.60270864114,1402532.8782303254,608769.7046093708,2246.88646,944.6732639979308,2320812.1602408634,963457.501628964,0.38085,100000,0,370523,3873.4946056703184,0,0.0,0,0.0,18439,192.26185498034624,0,0.0,24349,251.46357782052357,2084794,0,74886,0,0,3203,0,0,44,0.4495274734465166,0,0.0,0,0.0,0,0.0,0.07239,0.1900748326112643,0.3133029423953585,0.02268,0.3160519753248458,0.6839480246751543,25.141207625929063,4.6173094889280994,0.3179396092362344,0.2024866785079929,0.2383658969804618,0.2412078152753108,11.082913582911534,5.433902541099795,24.341948736734118,13092.697596540303,63.97693941565071,13.440659406486017,20.296849547423044,15.08351772793506,15.155912733806591,0.5438721136767318,0.7771929824561403,0.7022346368715083,0.5774962742175856,0.1060382916053019,0.6923620933521923,0.9178082191780822,0.8681318681318682,0.7368421052631579,0.1262135922330097,0.4940702087286527,0.7109677419354838,0.6456928838951311,0.5345316934720908,0.100095328884652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474225864286,0.0042279225387813,0.0064654953665641,0.0087186261558784,0.0110592233108486,0.0136477058613841,0.0160898913065644,0.018328670328997,0.0204277768689677,0.022454078184834,0.0245508245139059,0.02646714458846,0.0287019319795074,0.0308307400614141,0.0330453095481433,0.0352691730878626,0.0377643974174292,0.0397773878373186,0.0420039538029341,0.0439319856965627,0.0580920234499911,0.0721363331657449,0.0854682906341873,0.0979065141197149,0.1102562478892266,0.1259790017357436,0.1392993630573248,0.1514225152583534,0.1637498797293107,0.1754286143705246,0.1886570704620195,0.2026659736434612,0.2149147155188366,0.2265400871602829,0.2378884246960394,0.2495729529471792,0.2601747759426056,0.2704915263780192,0.2800881237366281,0.288147638697845,0.2964172398619699,0.3041457933423849,0.3113307029704143,0.3179199769579723,0.3252324392737185,0.3315467075038285,0.3378069889371096,0.3430412042352341,0.3490250045439202,0.3539124572002697,0.3548704803022126,0.3564441133049105,0.3573376669257401,0.3582033288870846,0.3589387974230494,0.3590043383280514,0.3588202559821925,0.3596705509523652,0.3607717815232892,0.3607190317135366,0.361633145463799,0.3634446257312269,0.3645277607911772,0.3663838692981074,0.3670054805765469,0.3682819613794547,0.3699243829362248,0.3717746514415494,0.3721710270804646,0.3721515951067402,0.374627891000687,0.3759786950732356,0.3752856054836253,0.3774967224492944,0.3762650372350582,0.3780384568871689,0.3795918367346939,0.3825250836120401,0.3866139508613386,0.3846749226006192,0.0,1.811042612856296,63.11255057961434,218.54077335858767,316.433833198141,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,11 -100000,95638,41315,387.9838557895397,7301,75.27342688052866,5675,58.815533574520586,2356,24.29996444927748,77.27514686010801,79.68944076685916,63.27600815666828,65.05778952739084,76.98516348870432,79.39685192871454,63.17035910067445,64.95377013100213,0.289983371403693,292.5888381446242,0.1056490559938296,104.01939638870772,80.24236,56.263236126130224,83902.17277651143,58829.37339355719,218.58352,131.90486021269697,228019.5738095736,137388.71789535307,259.56098,123.86802129574632,268786.2983332985,127386.59583658226,3277.26404,1477.788509877326,3398072.314352036,1516584.603909247,1371.66952,592.3900337826615,1422438.424057383,607660.5352707622,2324.36212,959.9380161559434,2399029.695309396,976306.3971630816,0.38093,100000,0,364738,3813.7351262050647,0,0.0,0,0.0,18163,189.3598778728121,0,0.0,24259,251.0403814383404,2090371,0,74995,0,0,3210,0,0,31,0.324138940588469,0,0.0,2,0.020912189715385,0,0.0,0.07301,0.1916625101724726,0.3226955211614847,0.02356,0.3159129414831226,0.6840870585168773,25.31046641267766,4.616497153077065,0.3284581497797357,0.1945374449339207,0.2336563876651982,0.2433480176211453,11.205293954613133,5.579678492638076,25.132705996445,13110.261762580109,64.20950116180227,13.09197038234439,20.978152645681853,14.867283967731266,15.272094166044758,0.5441409691629956,0.7907608695652174,0.6786480686695279,0.5965309200603318,0.1151339608979,0.6979241231209735,0.9030470914127424,0.847682119205298,0.7467532467532467,0.1272727272727272,0.4939223936418887,0.7362045760430687,0.6243798724309001,0.5510805500982319,0.1121157323688969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569183408943,0.0045204382595299,0.0070214600984222,0.0094464195022854,0.0116457653149442,0.0140235457063711,0.0162336338051148,0.0183050709027983,0.0205800864915706,0.0226695609436435,0.024884093053789,0.0271211514161555,0.0290141366751034,0.0309646030469829,0.0328793151519532,0.0350599505498484,0.0371291746999191,0.0391230293085183,0.0409074353504344,0.0430502252628066,0.0567122371336594,0.0704263724288244,0.0845641532029329,0.0970164977560523,0.1093471073507198,0.1246121095942639,0.1382696108643444,0.1508532932536002,0.1633367221360158,0.1742200346054229,0.1886354559094981,0.2024572475790798,0.2157027315733252,0.2275074837988091,0.2382828450035866,0.2491585109810151,0.2601674239541598,0.2704398257847584,0.2803241557495532,0.2891765543699245,0.2972223511393697,0.3059905455654479,0.3136103100857987,0.3203325883738255,0.3266344503548257,0.3327406309810459,0.339020901814167,0.344267101807705,0.3498272233625191,0.3554519938569083,0.3564605261380065,0.3571122802656835,0.3580937844484016,0.3582955155065172,0.3592927741916248,0.3590945414310302,0.3591254088729397,0.3599887951489586,0.3607859245567194,0.3626444388795478,0.3640639698965193,0.3656600928534582,0.3669388785990907,0.3662247191011236,0.3665417623594826,0.3665190387588773,0.3677397181807767,0.3687792832721286,0.3717390534848324,0.3730123763367645,0.3739389768295481,0.3756369682990935,0.3780526482714875,0.380741306839893,0.3842724340732308,0.3849584187055562,0.3872868217054263,0.3917504617278883,0.3872945110058512,0.3937038476486592,0.0,1.9421732144102704,62.15301360866256,219.9095741535446,321.48484780812163,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,12 -100000,95684,41640,391.1312236110531,7286,74.9341582709753,5675,58.72455164917855,2370,24.39279294343882,77.28391542799022,79.68194590010913,63.28504443165552,65.05963036159554,77.00214981662349,79.39906424673289,63.181905588327695,64.95885447628764,0.2817656113667368,282.8816533762364,0.1031388433278266,100.77588530789684,80.64606,56.52949613242033,84283.74649889219,59079.36136911117,221.62314,133.7335821513212,231033.1507880105,139187.19188499203,260.14079,123.95547923799649,268181.5873082229,126718.1098844505,3264.51768,1471.649993335884,3377886.250574809,1505110.705350908,1391.72184,605.5205866652884,1439417.164834246,618218.1814688909,2334.6095,963.4398037609202,2404796.141465658,976908.8325460084,0.38448,100000,0,366573,3831.079386313281,0,0.0,0,0.0,18396,191.6516868023912,0,0.0,24403,251.36908992098992,2088711,0,75020,0,0,3172,0,0,44,0.4598469963630283,0,0.0,0,0.0,0,0.0,0.07286,0.1895027049521431,0.3252813615152347,0.0237,0.32389403627822,0.67610596372178,25.362921276126364,4.5406110349813735,0.3238766519823788,0.2001762114537445,0.2375330396475771,0.2384140969162995,11.086432628926678,5.605925406815016,25.11074978286368,13240.543409262458,64.06001908588581,13.245122205887457,20.794699363357456,15.106108756510167,14.914088760130737,0.5453744493392071,0.7526408450704225,0.7023939064200218,0.5927299703264095,0.1108647450110864,0.7208333333333333,0.9331476323119776,0.8813559322033898,0.7685185185185185,0.1333333333333333,0.4857142857142857,0.6692406692406693,0.6405563689604685,0.537109375,0.1048689138576779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025029894002959,0.0047874066861408,0.007015442094683,0.009410473470798,0.0114872358393618,0.0134055904164289,0.0156662756897343,0.0176185807084201,0.0196062388136026,0.0219836505562498,0.0243244352340111,0.0264169166906415,0.0284829339068336,0.0304229532525352,0.032671304994116,0.0348311701742592,0.0367330867190981,0.0389881353996906,0.0410252142797703,0.0430754158502522,0.0576633795754638,0.0719490744618477,0.0852171357807023,0.0981943684498505,0.1101108179419525,0.1258679820475908,0.1401509922804931,0.1533456160342495,0.1660217628321611,0.1779580972007556,0.1915925626515764,0.2048682200773455,0.2181184668989547,0.2304381632407214,0.2415358843237524,0.2528030017095535,0.2638228881310449,0.2731330665614608,0.2828041696506724,0.2919807694514245,0.3008303567286728,0.3098898779157724,0.3173565291688422,0.3242853711265914,0.3305931068079406,0.3371291653286565,0.34278618821257,0.3486184747145187,0.3550228310502283,0.3600206133801979,0.3605400884860257,0.3613162826590232,0.3618263346400067,0.3620233395514294,0.3631881553860819,0.36321044546851,0.362660057827344,0.3633984561449709,0.3644189875154342,0.3645034062387953,0.3644364869958537,0.3656749113792966,0.3663839597301241,0.3683806600153492,0.3689998296961292,0.3686204356518994,0.3696032588427665,0.3719506392158107,0.3742056206750459,0.3761365449034933,0.3779285681536839,0.3779048026069768,0.3807752915222187,0.3848831050919271,0.3835411003842909,0.3822448737702975,0.3805866994317309,0.3829656862745098,0.3823033707865168,0.3852427184466019,0.0,2.19718248822659,63.93866770724408,209.9371690445231,324.2145747906204,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,13 -100000,95664,41250,387.0526007693594,7293,75.13798294029101,5654,58.60093661147349,2299,23.739337681886603,77.35161970545354,79.7577201152714,63.31721993396855,65.09442791411291,77.06835479161701,79.47076141599204,63.21447977011957,64.99245205763201,0.2832649138365326,286.9586992793529,0.1027401638489777,101.97585648090524,80.22982,56.18466894626587,83866.26108044824,58731.25621578219,219.87364,133.05879630600458,229286.77454423817,138538.91734216144,257.11375,122.78372401327036,265399.99372804817,125746.18272844584,3272.1608,1461.008966393334,3392603.570831243,1499524.8526906525,1355.30178,589.8884245689078,1400234.9682221103,600576.7994308928,2274.30992,940.116182619768,2349173.921224285,958373.3017907372,0.38025,100000,0,364681,3812.10277638401,0,0.0,0,0.0,18330,191.05410603779896,0,0.0,23944,246.97900986787087,2095224,0,75100,0,0,3200,0,0,47,0.4808496404080949,0,0.0,0,0.0,0,0.0,0.07293,0.1917948717948717,0.3152337858220211,0.02299,0.3195042400521852,0.6804957599478147,25.68301706293057,4.604469244649156,0.3257870534135125,0.1982667138309161,0.2350548284400424,0.2408914043155288,10.905147290293709,5.339527659522009,24.46996172863271,13093.27392568966,63.52872985641926,13.16839391842391,20.67049313375793,14.813981870668476,14.875860933568946,0.5291828793774319,0.7475468331846565,0.6742671009771987,0.5733634311512416,0.1101321585903083,0.7163958641063516,0.9219653179190752,0.8504672897196262,0.7601246105919003,0.166023166023166,0.4702325581395349,0.6696774193548387,0.620933521923621,0.5138888888888888,0.0970081595648232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809282580723,0.0047862901181361,0.0072157833844155,0.0094793952694464,0.0117079819752006,0.0140048889794255,0.0163361036047519,0.0182577529076594,0.0204089979550102,0.0223704022370402,0.0249504991125747,0.026933708754226,0.0287322610190073,0.0309181632610981,0.0329291218212242,0.034979360004966,0.0372596776701041,0.03926046651649,0.0413333194619282,0.0431446147429882,0.0577608275429705,0.0719520877832223,0.084965468018557,0.0977398514278499,0.11085313858753,0.1260055038103302,0.13939438982439,0.152306446111869,0.1645110561956417,0.1759728545657589,0.1904746501045912,0.2035378099374979,0.215883486268491,0.2272926289980078,0.2377323583825213,0.2494512316800071,0.2598377689884025,0.2695728535723131,0.278508174386921,0.2871738483036675,0.2952678468124494,0.3033250713183369,0.3107499024026688,0.3178708773106827,0.3238376258302672,0.33043071276373,0.33666212551088,0.3426218884610986,0.3486276487090977,0.3536124178097534,0.3550653440826929,0.3564306050311524,0.3575222236310102,0.35831960461285,0.3585416263958485,0.3590670875601459,0.3589443001077245,0.3596896421350254,0.3596659364731654,0.3608328563251288,0.3613345864661654,0.3625757635780216,0.3645001261246111,0.3652368686303057,0.3669810866740459,0.3687312557047855,0.3699189312628454,0.3712231123446666,0.3739648306727279,0.3767994576703752,0.3787629243297648,0.379209758684699,0.3842274475193847,0.3843685537474215,0.3867737364194615,0.3868718441933157,0.3880248833592535,0.3866095121453358,0.3909465020576131,0.3883384146341463,0.0,1.864855451414921,60.19500093410039,215.0945392886593,327.64691580611515,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,14 -100000,95788,41323,387.3345304213472,7275,74.63356579112207,5607,57.93001211007642,2227,22.82123021672861,77.3507064425629,79.68250195944448,63.34838135415546,65.07152334561582,77.07560968916181,79.40634333104738,63.24587105590047,64.97135500100013,0.2750967534010868,276.1586283970985,0.1025102982549839,100.1683446156818,81.38856,57.01642442668157,84967.38631143776,59523.55663202235,219.79112,132.93564670479424,228878.49208669143,138203.80079424797,253.83387,120.7130122635992,261640.8005178102,123357.25152359156,3225.5166,1458.5820671098577,3332081.5551008475,1487817.9808290787,1366.92383,596.4343912639696,1409938.3116883116,605697.1614907078,2203.58166,932.6365465582916,2260322.3577066017,938766.033009714,0.38145,100000,0,369948,3862.153923247171,0,0.0,0,0.0,18349,190.94249801645304,0,0.0,23724,244.27903286424188,2092728,0,75063,0,0,3127,0,0,42,0.4384682841274481,0,0.0,0,0.0,0,0.0,0.07275,0.1907196224931183,0.3061168384879725,0.02227,0.3095890410958904,0.6904109589041096,25.44385580054933,4.590054617901541,0.3190654538969146,0.2056358123773854,0.2359550561797752,0.2393436775459247,11.011721166345849,5.455845762391806,23.925587819736727,13129.702205150155,63.35294114931384,13.508350642380943,20.140112222803737,14.902283767864423,14.802194516264736,0.5478865703584804,0.7753686036426712,0.6975964225824483,0.5888133030990174,0.1125186289120715,0.6796322489391796,0.9305555555555556,0.8306264501160093,0.7275541795665634,0.11,0.503458144526592,0.7049180327868853,0.6553755522827688,0.544,0.1132437619961612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0044099756690997,0.0066770170578505,0.0090707784820412,0.0111639824304538,0.013336455353416,0.0156536627124862,0.0178485779306262,0.0200292263200384,0.022022103970528,0.0240383630141197,0.0263398216649394,0.0286316222187965,0.0307587782959142,0.032780968683296,0.0349077460278104,0.036981467876618,0.038958346291804,0.0410617483955386,0.0431623219788456,0.0579206577766647,0.0718318695106649,0.0848795521730926,0.0978918828029761,0.1103686684513395,0.1256659619450317,0.1393454792254342,0.1523094934014474,0.1634795050022956,0.1754024910497995,0.1897908436225066,0.2030157271793763,0.2159771351568697,0.2271729035782573,0.2379962837132082,0.2492642665899586,0.2600191690442225,0.2700847210049664,0.2794876154848948,0.2881194918164129,0.2965659086707339,0.3047375309680736,0.3117522454824089,0.3192231195034866,0.3260465624658432,0.3326555009181548,0.3389972597940466,0.3455473393491237,0.3514378652981351,0.3556602404233139,0.3569793742258603,0.3574850629147278,0.3582950283409943,0.3584818262090529,0.3600732110173653,0.3600208672169884,0.3609978259834648,0.3619223416177731,0.3628555264105333,0.3630988640842799,0.3643350978656067,0.3661739579608217,0.3681280445372303,0.3690076025898436,0.3707691191057992,0.372626769255009,0.3735846887752169,0.3761785340147932,0.3777368383759654,0.3812225329604474,0.3817429294090596,0.3808291552105234,0.3847137014314928,0.3878167867937689,0.3878735960403578,0.3913931962976319,0.3942741559047767,0.3948354852144939,0.3888103984176321,0.3848568065908199,0.0,2.318394865285008,62.42302078060984,209.3487711775105,321.11736009637394,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,15 -100000,95729,41291,387.5941459745741,7300,74.99294884517754,5654,58.414900395909285,2285,23.4098340105924,77.31652017658898,79.6783957558159,63.31665033110207,65.06288313096367,77.03637871881595,79.40064686684148,63.212968771154365,64.96354899644855,0.280141457773027,277.74888897441485,0.1036815599477023,99.33413451511797,81.59052,57.101878699348624,85230.72423194643,59649.50923894392,219.71392,133.06819608942817,228875.02219808,138363.55345760242,257.50695,122.77790657869782,265286.4753627427,125349.08051136648,3250.26716,1468.1857717565924,3359300.5672262325,1497710.6746718262,1421.27061,620.4001870143649,1463871.773443784,627270.0926724031,2258.27566,941.8000987282796,2316020.558033616,945928.4666509542,0.38046,100000,0,370866,3874.123828724838,0,0.0,0,0.0,18354,191.06018030064035,0,0.0,24082,247.87681893679036,2087049,0,74915,0,0,3181,0,0,47,0.4909692987495952,0,0.0,1,0.0104461552925445,0,0.0,0.073,0.1918729958471324,0.313013698630137,0.02285,0.3163451511991658,0.6836548488008342,25.66023544100194,4.596167496505547,0.3340997523876901,0.1915458082773257,0.2368234877962504,0.2375309515387336,11.20519621782111,5.581489851483661,24.48062504856636,13101.89887294819,63.80088671888558,12.753554714973047,21.326830077210143,14.834639610551466,14.885862316150918,0.5468694729395118,0.7746999076638966,0.6903123345685548,0.5817774458551157,0.1265822784810126,0.6941678520625889,0.8980169971671388,0.8704883227176221,0.6996587030716723,0.1522491349480969,0.4981167608286252,0.7150684931506849,0.6304654442877292,0.5487571701720841,0.1195445920303605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238632104618,0.0047242019038736,0.0071961431108855,0.0094191044230163,0.0119120279947916,0.0144827164768907,0.016531875618288,0.0186779408310611,0.0210938538460751,0.0229331968262093,0.0247621195964235,0.026932949994866,0.0287929580651132,0.0308921657467666,0.0329461762218142,0.0348194451619569,0.0369135853587843,0.0389299199203352,0.0409671618208089,0.0429663895313704,0.0581356498496491,0.0713897028045207,0.084165373159374,0.0968735869096568,0.1090700102289384,0.1240824183960567,0.1372827770587112,0.1502022567596338,0.1632655241676994,0.1753996352322712,0.1895420612093203,0.2029824580388931,0.2154749605785438,0.2269750150347165,0.2380884230921661,0.2496730432469576,0.2601505270680722,0.2704052928865585,0.2796522647055485,0.2883756100914277,0.2961201009329351,0.3040486777439738,0.311676930364756,0.3190524193548387,0.3252433090024331,0.331386374581692,0.3373577052304298,0.343306604795839,0.3490603965917491,0.3547022109383264,0.3551532972739658,0.3555153806875422,0.3565651423885071,0.3575625680087051,0.3585173031026253,0.3586735948837781,0.3594288527818808,0.3602178038115667,0.3614008557730311,0.362923812605616,0.3640460030165912,0.3662044578648337,0.3667621776504298,0.3674181065514759,0.3686132269374924,0.3704391980317227,0.3712950753884079,0.3731847455486803,0.3744889327505992,0.3776759019334264,0.3790783874067633,0.3782119914346895,0.3800557880055788,0.3840756558877364,0.3939193654990086,0.399039039039039,0.3991935483870967,0.3936300530828909,0.3888888888888889,0.3887596899224806,0.0,2.521345975606211,61.83054069070299,210.86407576480144,327.0597279759121,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,16 -100000,95672,41380,388.1386403545447,7348,75.48708085960365,5725,59.19182205870056,2282,23.423781252613097,77.40264542862671,79.7821956398966,63.35728834693722,65.11165751215745,77.1153778808119,79.49698575367495,63.25110126914626,65.00917479798831,0.2872675478148068,285.2098862216508,0.1061870777909561,102.4827141691418,82.10708,57.47079851246346,85821.43155782257,60070.656526949846,221.4066,133.5917069609376,230781.3153273685,138993.8612770064,258.48033,123.31025144383106,266282.40237478045,125804.2284044564,3300.30772,1481.507092790228,3413531.0226607574,1512664.384185113,1414.22477,608.5403400752632,1459992.976001338,617953.6626481428,2252.39952,938.9895978120924,2313967.514006188,947335.5201247592,0.38154,100000,0,373214,3900.974161719208,0,0.0,0,0.0,18519,192.89865373358975,0,0.0,24139,248.3171669872063,2089452,0,74862,0,0,3251,0,0,45,0.4703570532653232,0,0.0,0,0.0,0,0.0,0.07348,0.1925879331131729,0.3105606967882417,0.02282,0.3149035348957659,0.685096465104234,25.288384695687952,4.531359725336995,0.3292576419213974,0.2078602620087336,0.2279475982532751,0.2349344978165939,10.980300968854392,5.4924077682143135,24.26338111528244,13172.99159557889,64.018311867201,13.821857006596542,21.305837978637747,14.287697334111582,14.60291954785514,0.542707423580786,0.7512605042016807,0.6923076923076923,0.5685823754789272,0.1234200743494423,0.7072484166080225,0.9244791666666666,0.8640167364016736,0.6866197183098591,0.1527272727272727,0.4883828996282527,0.6687344913151365,0.6339729921819474,0.5357492654260528,0.1158878504672897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303551356441,0.0048445782277762,0.0072225603570703,0.0094959527944507,0.0117041722170813,0.0141233733173125,0.0162814644142445,0.0185546177320092,0.0208573910377599,0.0230566130418764,0.0250210131409007,0.0268766425755584,0.0293025981637038,0.0311743684280991,0.0333673816819884,0.0353163693490708,0.0373906290447838,0.0393611722219916,0.0413940862619476,0.0433794713582923,0.0581586067843002,0.0715377688425373,0.0854024556616643,0.0986250355050127,0.110968123035379,0.1263371742373742,0.1395292069960944,0.1522819942298069,0.1646539563117171,0.1766554409146485,0.1905567103576775,0.2041777152443314,0.2163826015075212,0.228549244329739,0.2398829302642871,0.2509052654891756,0.2610668807564505,0.2714146056431404,0.2811947604586864,0.2896828573715932,0.2980758125245432,0.3056547827508113,0.313515876015876,0.3208023649659497,0.3278408056785779,0.3334687896363614,0.3397177671579052,0.3453833638397396,0.3511161118439771,0.3566035498280429,0.3566626327820357,0.3583778513259266,0.3592465031278555,0.3605585447831167,0.3615155157829126,0.3612514158018796,0.3615514974896656,0.3622778608887208,0.3628132634060508,0.3634544967401982,0.3636295392699634,0.3640169016309284,0.3657383189303425,0.3676158096047598,0.3686214958902788,0.3696613050869622,0.36952102837184,0.3714330758316254,0.3728640022595678,0.3725271218889598,0.3740927882406982,0.3780009667543906,0.379899625182644,0.380700948882767,0.3845424371740161,0.3904773156899811,0.3939766441303011,0.3904220779220779,0.3922484881803189,0.4003044140030441,0.0,2.5432091301356667,62.32897017748194,205.8297772529828,334.93642404276824,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,17 -100000,95731,41343,387.6069402805779,7421,76.22400267415989,5793,59.97012462002904,2340,24.19279021424617,77.33907921770925,79.7054720965723,63.32552877917672,65.07517070034555,77.04686803260356,79.40889691181786,63.21875490257574,64.9686709907518,0.2922111851056996,296.5751847544311,0.1067738766009753,106.49970959374856,80.6377,56.47496798413298,84233.63382812255,58993.39606202064,221.7164,133.68742734336584,231088.25772215897,139133.74700292054,261.83473,124.88518596731711,268949.19096217526,127044.02184511782,3350.96524,1510.4274292286989,3472108.5541778523,1549494.3427193875,1442.70227,623.7394950612755,1494719.0878607766,639235.7283025094,2316.28536,968.917900476691,2396774.4826649674,991535.3871296732,0.38146,100000,0,366535,3828.8015376419344,0,0.0,0,0.0,18472,192.403714575216,0,0.0,24403,250.5353542739552,2092766,0,75060,0,0,3154,0,0,60,0.6163102861142159,0,0.0,0,0.0,0,0.0,0.07421,0.1945420227546793,0.3153213852580515,0.0234,0.3204525231981696,0.6795474768018305,25.36570751136744,4.572340846420485,0.3341964439841187,0.1981702054203349,0.2280338339375107,0.2395995166580355,10.943748769556652,5.393793981701987,25.119805579950384,13089.311163880602,65.33688609672312,13.382446130883343,21.800331073361207,14.753760498114255,15.400348394364318,0.5387536682202658,0.7456445993031359,0.6838842975206612,0.5821347464042392,0.1239193083573487,0.7021276595744681,0.9289772727272728,0.8509719222462203,0.749185667752443,0.1354166666666666,0.486196668948209,0.664572864321608,0.6313645621181263,0.5315581854043393,0.1209090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0044409295534736,0.0066278939942957,0.0087790603153958,0.0105795347039256,0.012954607949974,0.0152143986131647,0.0176316246209762,0.0198470316366387,0.0222556791413179,0.0246854072015342,0.0268377104238776,0.0290539220223586,0.0310622997434655,0.0330408753096614,0.0350757458249314,0.0372515098463737,0.0392897541536513,0.0414699581972838,0.0433804225528191,0.0575300701637153,0.0713762581347172,0.0846343381389252,0.097762308355591,0.1092703708781069,0.1251176713241593,0.1385620776355014,0.151667749044491,0.1638154871937341,0.1749211390313512,0.1892989924026079,0.2031642553928788,0.2155027963353861,0.2271563327569981,0.2372043342289565,0.2485088361161001,0.2596269823542551,0.2695805848848466,0.2787439832894378,0.2875663407420993,0.295930535455861,0.303642066334293,0.3116199266359011,0.3189029212298401,0.325887166288288,0.3321636994902859,0.3382253669025177,0.3442981341196807,0.3502276725654558,0.3549204338532182,0.3557571922833564,0.3565004200928336,0.3575855108061943,0.3588301788353961,0.3591680448159239,0.3586125357000276,0.3586939267913267,0.3599723174268389,0.3605819605957023,0.3618465960122148,0.3623382250437993,0.3621227474121317,0.3635235732009925,0.3644233579924898,0.3655460158209531,0.3674322594131327,0.3688146471447809,0.3698864175657291,0.3730071759341086,0.375821182502804,0.3790578809227793,0.3823687897402737,0.3827089337175792,0.3843231508761048,0.3891372586321697,0.3884944036586834,0.3923872180451128,0.3891768608749741,0.3926553672316384,0.3999218139171227,0.0,2.158705606191082,62.42566220742669,219.2944528309232,336.22009684947955,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,18 -100000,95687,41251,387.1685808939564,7244,74.54513152256838,5634,58.30468088664082,2299,23.650025604314067,77.30793472821749,79.6836241570301,63.31631099018998,65.07004214202726,77.02506345644575,79.40011442236901,63.21363080503108,64.96967162256985,0.2828712717717394,283.50973466108087,0.1026801851589027,100.37051945741382,81.84066,57.32572282735698,85529.54946857985,59909.624951515856,220.38856,133.0310665409716,229739.25402614777,138444.20510724714,258.20272,122.5312114241259,266358.0632687826,125388.29976056363,3245.90892,1457.0986487300995,3361346.347988755,1491907.1647455755,1364.67255,589.6342867171685,1413175.8650600396,603203.4933869478,2269.54624,932.028820153944,2337891.730329093,945575.1166882904,0.38098,100000,0,372003,3887.706794026357,0,0.0,0,0.0,18339,191.03953515106545,0,0.0,24205,249.45917418249084,2086058,0,74945,0,0,3274,0,0,40,0.4180296173983926,0,0.0,0,0.0,0,0.0,0.07244,0.1901412147619297,0.3173660960795141,0.02299,0.3194280467007739,0.680571953299226,25.45269967410656,4.566730508490121,0.3310259140930067,0.2005679801206957,0.2310969116080937,0.2373091941782037,11.038278510060108,5.476212967243956,24.419674622713494,13143.97269170193,63.5470202189313,13.220427368882532,21.10969876672976,14.55285314701852,14.664040936300491,0.5461483848065317,0.763716814159292,0.7040214477211796,0.5675883256528418,0.1211667913238594,0.7121551081282624,0.9127906976744186,0.8650442477876106,0.7167235494880546,0.1587301587301587,0.4942930351735383,0.6984732824427481,0.6525123849964615,0.5242814667988107,0.112442396313364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095862948788,0.0042965424992906,0.0065936964262165,0.0090700414398309,0.011217557562444,0.0134414076819681,0.0155805487860835,0.0177743746809596,0.0197305199452043,0.021977459540797,0.0239474304694147,0.0262220351338309,0.0286108025834053,0.0308334191820335,0.032949116162919,0.0349533232019353,0.0370316644562334,0.0389634659108605,0.041194216165609,0.0429810478910827,0.0574207161659633,0.0718569768780681,0.0854849708860095,0.0983328950828293,0.110969360858655,0.1266206984073267,0.1407823125643174,0.1541785976602833,0.1668714278083435,0.1779761010876794,0.1916105756286683,0.2046583078204615,0.2173114140952877,0.2283780533140895,0.2392435560347198,0.2504569573838774,0.2617695303346463,0.272084964673057,0.2816244553376906,0.2903813331195088,0.298376638414154,0.3056881463802705,0.3130320502954026,0.3197672325874378,0.3271853519070503,0.3329876927254996,0.3390774324629392,0.3442926219364386,0.3500012988025041,0.3551379606960894,0.3559209904545884,0.3574318260269244,0.3577173713300255,0.3584117032392894,0.3588614585510015,0.3594576312876645,0.3592773421969178,0.36084142394822,0.3615137291312048,0.3627663967538647,0.3631940253470127,0.3641664510736532,0.3643798081989672,0.3659342140738744,0.3670935102030936,0.3676219046867188,0.3683771740692827,0.3702057404114808,0.3715576745178965,0.3744034011149881,0.3770257167920957,0.3768419920404431,0.3801674014439972,0.3779357231149567,0.3766927331680336,0.3768046198267565,0.3781163434903047,0.3817849156332588,0.3747945205479452,0.3665399239543726,0.0,2.2723515660303204,59.1550441154813,216.4749627125597,328.6533804038775,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,19 -100000,95700,41316,388.36990595611286,7284,74.84848484848484,5727,59.195402298850574,2375,24.346917450365726,77.38171245272493,79.75522822207166,63.34258245905804,65.094716500596,77.08685955856822,79.4631912345969,63.23351537532432,64.99036257241967,0.2948528941567048,292.03698747475926,0.1090670837337199,104.35392817632304,81.8455,57.36543528584519,85522.75862068965,59942.77376989047,226.16087,137.33087454059174,235630.28213166143,142810.88435820694,264.70909,126.23614908876256,273318.275862069,129320.00219182228,3291.1094,1493.998083784703,3399702.737722048,1521955.9854917596,1392.83754,612.0866222607515,1435446.3218390804,619930.2110119035,2345.52392,986.6405913862366,2404606.687565308,989455.5877008204,0.38,100000,0,372025,3887.398119122257,0,0.0,0,0.0,18779,195.5276907001045,0,0.0,24737,255.16196447230928,2084053,0,74733,0,0,3266,0,0,51,0.5329153605015674,0,0.0,0,0.0,0,0.0,0.07284,0.1916842105263158,0.3260571114772103,0.02375,0.3207990599294947,0.6792009400705052,25.16970989600302,4.57394022912265,0.3272219312030731,0.1994063209359176,0.2315348349921424,0.2418369128688667,10.945093356357338,5.451961967878566,25.483641242608545,13082.231854852718,64.58912457507107,13.323537147398206,21.13841937529598,14.70906941411741,15.41809863825947,0.5385018334206391,0.7845884413309983,0.6840981856990395,0.5648567119155354,0.1133574007220216,0.6831476323119777,0.9307228915662652,0.8453815261044176,0.6970684039087948,0.1237458193979933,0.4900955488231182,0.7246913580246913,0.6257267441860465,0.5250245338567223,0.1104972375690607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0045514906385264,0.0069610748061858,0.0091115941734554,0.01137172732266,0.0135437881873727,0.0157940351771603,0.0181203805790354,0.0201179681669954,0.0223461971542634,0.0244405031627077,0.0264679007402388,0.0286504663670673,0.0307999752776118,0.0328785783575158,0.0347708309639264,0.0366231318163457,0.0385202096196751,0.0404788401335427,0.0423644909486936,0.0579867566269087,0.0721980840705648,0.0857571560480147,0.0982514833985607,0.1101078081816072,0.1256755470476875,0.1401740237691001,0.1530983816013628,0.1653774653304557,0.1776001716461943,0.1919027554770089,0.2051487463733599,0.2172253279098601,0.228566118999989,0.2384037486388085,0.2490256864481842,0.2593992928921159,0.2694306346028389,0.2783727367609021,0.2873292025059843,0.2959083280282423,0.3037853265955456,0.3113563958927958,0.3179583123455902,0.3249887536626585,0.3315572001233426,0.3376652644230769,0.343452229299363,0.3495086472891332,0.3546205165466675,0.3555621445321976,0.3557751868624995,0.3560239689813183,0.3565319155084231,0.3575394940016629,0.3575298438934802,0.3562277298281732,0.3575214558821116,0.3587262581272717,0.3590672927565213,0.3613361842598844,0.3635571745327843,0.363851584923844,0.364246860519777,0.3656317689530686,0.3667985836284107,0.3656082544749743,0.3667504714016342,0.3684321364641466,0.3696110823613709,0.3707752115252687,0.3701565923788146,0.3704978644737681,0.3782447466007416,0.3783474697417325,0.3737373737373737,0.3761439429191872,0.3798641136504014,0.3878753859107494,0.3879310344827586,0.0,2.3594196851881875,63.25333504925553,215.0619583129355,326.83859375086206,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,20 -100000,95852,41301,386.92985018570295,7445,76.35730083879314,5865,60.55168384592914,2450,25.174226933188663,77.44506122741345,79.72202420344523,63.40474875222951,65.08381907708619,77.1460391397003,79.42446158878866,63.2948971480708,64.97764144153813,0.2990220877131406,297.5626146565702,0.1098516041587061,106.1776355480646,80.94746,56.73755213968451,84450.46530067187,59192.87249059437,224.67728,135.12117275029684,233765.3361432208,140335.5215122024,259.68874,122.85633763022076,266981.92004340026,125078.08277858248,3392.80152,1514.8729343520602,3504984.6429912783,1546186.309826509,1437.24137,620.9764254011877,1480180.9351917538,628809.1526329131,2420.86566,1002.3784196450558,2489311.06288862,1012978.3863428364,0.38074,100000,0,367943,3838.657513666903,0,0.0,0,0.0,18735,194.78988440512452,0,0.0,24341,250.0,2093744,0,75198,0,0,3102,0,0,37,0.3860117681425531,0,0.0,0,0.0,0,0.0,0.07445,0.195540263697011,0.3290799194089993,0.0245,0.3200559938915754,0.6799440061084245,25.316064691651757,4.606570491306224,0.3242966751918159,0.2006820119352088,0.2277919863597613,0.2472293265132139,10.781948132020275,5.213615034762216,25.92762511110184,13081.958560040584,65.82173460744848,13.592828921784529,21.32115338609832,14.907826038405922,15.999926261159713,0.5316283034953112,0.7604078164825828,0.6787592008412198,0.5726047904191617,0.1151724137931034,0.6777697320782042,0.8955223880597015,0.8329571106094809,0.7305194805194806,0.1423728813559322,0.4866190900981266,0.7066508313539193,0.6319396847155586,0.5252918287937743,0.1082251082251082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025202939330755,0.0048318965953869,0.0070977358222726,0.0093073768827899,0.0115735566077997,0.0135007274318096,0.01568483663326,0.0178143514128096,0.0197183673886182,0.0217382413087934,0.0238992422690968,0.0260909696938618,0.0283777538129718,0.0305498981670061,0.0328253948629184,0.0349511757055265,0.0370347388125303,0.0390876778478979,0.0409057403004599,0.0430887372013651,0.0583733055265901,0.0726501530521631,0.0855539384547729,0.0984762624354615,0.1099338166436936,0.1253707710983269,0.1395636979773377,0.15193922006163,0.1652376077126525,0.1771253652427995,0.1912357449186882,0.2047280660071709,0.2168550427239069,0.227847963049911,0.2385090301885134,0.2495158630916153,0.2596432552954292,0.2696427166571136,0.2794067623647867,0.2878217379859688,0.2960559796437659,0.3044683588723827,0.3115256684935074,0.3187730561011833,0.3254602419002283,0.3321134604958352,0.3381827750836434,0.3434219912361153,0.3485636469749043,0.3537813127576366,0.3540371833416472,0.354412777089357,0.355351182344408,0.3571913112506314,0.3574502819827842,0.3571810828580603,0.357780763455307,0.3584673651074713,0.3597609901835254,0.3611517204492779,0.3618377871542428,0.3614875574576002,0.3639973944653401,0.3640562294016097,0.3644122965641953,0.3645743541519735,0.3645782788639931,0.3653222505588614,0.3674250403763781,0.3689811862244898,0.3691275167785235,0.3704977959359208,0.3717524197656648,0.3756974581525109,0.3779014003452906,0.3825096899224806,0.386929948283968,0.388713413350179,0.3890620572400113,0.3949780789159027,0.0,2.479824548510479,60.81109646629162,225.8707817009013,339.55187550707615,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,21 -100000,95684,41124,385.2159190669287,7347,75.60302662932152,5713,59.13214330504578,2324,23.91204381087747,77.29747507811412,79.70194994851512,63.28577397120039,65.06625268277286,76.99999221528653,79.40369758197114,63.17764086063029,64.96081740929554,0.2974828628275929,298.25236654397713,0.1081331105701011,105.43527347731184,80.61636,56.464330658152576,84252.70682663767,59011.25648818254,223.15578,134.99974592232692,232648.0289285565,140515.55737879573,262.00056,124.3816476251644,270507.4202583504,127453.10742139949,3286.18212,1477.1402059007792,3401775.5528615024,1511133.529012978,1352.08425,587.5843092359094,1396917.0812257011,597933.2118599217,2292.91426,957.8978619937697,2360142.092721876,968222.3049416528,0.37846,100000,0,366438,3829.668492119895,0,0.0,0,0.0,18551,193.27160235776097,0,0.0,24542,253.19802683834288,2086977,0,74973,0,0,3241,0,0,42,0.4284937920655491,0,0.0,0,0.0,0,0.0,0.07347,0.1941288379221053,0.3163195862256703,0.02324,0.3231644260599793,0.6768355739400207,25.39170352823757,4.51633489888386,0.3217223875371958,0.2100472606336425,0.2324523017678977,0.2357780500612638,10.615398418744643,5.185584140891868,24.9538135828411,13014.880383977374,64.6973095705563,14.211627082886288,20.716929256161407,14.840436127341391,14.928317104167226,0.5413968142832137,0.7891666666666667,0.6746463547334058,0.579066265060241,0.1017074981440237,0.6953068592057762,0.9267015706806284,0.8177676537585421,0.7281879194630873,0.1240601503759398,0.4921441774491682,0.7249388753056235,0.629735525375268,0.5359223300970873,0.0962072155411655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021180428878349,0.0043211003590773,0.0067516117569419,0.009033634793212,0.01141357421875,0.0137810914868911,0.0159520215413487,0.0180960356201874,0.020035386645121,0.0221707919017726,0.024165837547311,0.0263709395738735,0.0284664924590029,0.0305837498067906,0.0328738836404935,0.0351882498965659,0.0376335727537493,0.0397790399451753,0.041583869994486,0.0435838379206486,0.0584996918319805,0.072295210677833,0.0858423145942429,0.098952196599899,0.1112318420136508,0.1268224041981421,0.1403201494596947,0.1524624036126613,0.1644976741699192,0.1753349939872874,0.1892020146460888,0.2016563506086655,0.2135838779956427,0.225184065211675,0.2357357026323912,0.2463221425877027,0.2574018397022499,0.2673049845114052,0.2759901833799168,0.285724111052523,0.2944038929440389,0.3024579984534995,0.3098643284554772,0.3173408253190697,0.3237893506683222,0.330373791383164,0.3359585648177178,0.3416395534290271,0.3469589283162039,0.3520283868234297,0.3523679515597124,0.3530395598927376,0.353550086380243,0.3546386662019287,0.3559943919100319,0.3556539383877513,0.3558102980169252,0.3570970130831893,0.3586638616655549,0.3594856570570141,0.360594237695078,0.3617492826753735,0.361276229284379,0.3622022542407063,0.3622503136157483,0.3636006803611147,0.363917437233403,0.365459944402325,0.3651611991948868,0.3660846286011108,0.3690951659551026,0.3690011235353914,0.3697281504065041,0.372959300988733,0.3746792130025663,0.3792319655461179,0.3827699018538713,0.3803339517625232,0.3825746998045238,0.3865054602184087,0.0,2.236265274290989,61.40549318309255,224.9637217266348,323.2642474555042,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,22 -100000,95822,41393,387.0509903779925,7448,76.37077080419945,5784,59.70445200475882,2398,24.63943562021248,77.32864418348662,79.6379711952416,63.32870225298407,65.03784913454247,77.02343165500127,79.33412794883728,63.21696205941992,64.92993787981756,0.3052125284853417,303.8432464043268,0.1117401935641453,107.91125472491105,80.51912,56.418055135676354,84029.88875206112,58877.97701537889,221.08283,133.62775755530433,230049.27887124044,138788.02827313793,265.81474,127.03517892789417,272916.2509653315,129219.54472978854,3341.65984,1516.851160837935,3450994.761119576,1547406.86767903,1418.9719,626.1772774719725,1464189.6224249129,637840.8484043416,2366.94446,989.4984396021764,2433262.0692534074,999771.5577967296,0.38189,100000,0,365996,3819.54039782096,0,0.0,0,0.0,18380,191.1043392957776,0,0.0,24842,254.9101458955146,2089728,0,75143,0,0,3164,0,0,47,0.4800567719312892,0,0.0,1,0.0104360167811149,0,0.0,0.07448,0.1950299824556809,0.3219656283566058,0.02398,0.3213967121192813,0.6786032878807188,25.201090457762376,4.54098903342415,0.3303941908713693,0.201417704011065,0.2276970954356846,0.240491009681881,11.088703287765304,5.564152161072068,25.657680940286376,13165.743405671656,65.68934164825855,13.679964936175551,21.575189508688037,14.880619644709602,15.553567558685362,0.5489280774550485,0.7716738197424893,0.6944008372579801,0.6006074411541382,0.113587347232207,0.7013167013167013,0.9162162162162162,0.8629550321199143,0.7651006711409396,0.1363636363636363,0.4982722874913614,0.7044025157232704,0.6398891966759003,0.5525024533856723,0.1071098799630655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092115258013,0.0048655881279649,0.0072236595140262,0.0095481878758329,0.0116737848281472,0.0139890042761148,0.0161757211293446,0.0185126598426321,0.0207043145911255,0.0228495999017661,0.0250927273099858,0.0270309100611633,0.0293612866759159,0.0313886572572758,0.0335870148083983,0.0357438016528925,0.0376583326434307,0.0397727272727272,0.0418925937467539,0.0438728883245032,0.0588204614678516,0.0727206189878711,0.0862009328651538,0.0988871257579419,0.1118513287022884,0.1272596570607015,0.1403529237099408,0.1537814857775271,0.1660489805508977,0.1770615544619211,0.1908526013116943,0.2038106985198649,0.2162726462080515,0.2280876276263145,0.238418539140386,0.2498504287708568,0.2599144525971342,0.2693754363837023,0.2793793589131966,0.288529705298659,0.297009265594378,0.3053366174055829,0.3133904825227963,0.3200033645353937,0.3266210523752709,0.3330863740198802,0.3392673441224438,0.3450000637991093,0.3504762152258936,0.355631191396938,0.3561902960370756,0.3567696815568332,0.3580148995836048,0.3584815132525916,0.3595136378573776,0.3590462401035088,0.3589469996177857,0.3595945254329629,0.3613994749395151,0.3626503648195622,0.3639517345399698,0.3661254377586755,0.3670971411717614,0.3689311655310441,0.3710533330102498,0.3729786673689755,0.3742059728090598,0.3747463216641298,0.3771493132789605,0.3812774451097804,0.3833402213344354,0.3835792862892406,0.3861972369007448,0.3871988882025942,0.3897142857142857,0.3852567975830815,0.3873499538319483,0.3849774866966844,0.389334070185134,0.3842829076620825,0.0,2.430116025307154,63.5226598131017,225.75991468912656,325.9503322686554,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,23 -100000,95757,41332,387.6792297168875,7325,75.39918752676044,5671,58.75288490658646,2311,23.90425765218209,77.35098256499538,79.69651989108026,63.33757887846742,65.06969776242495,77.0705818040318,79.41132800314847,63.23545744017024,64.96758308765834,0.2804007609635732,285.19188793178785,0.102121438297182,102.11467476661085,80.9215,56.7110927608538,84507.13785937321,59223.96562220392,221.66514,133.8019609974771,231048.1740238312,139291.77083396213,261.56401,123.93871225841676,269380.2750712742,126719.84398929216,3263.09892,1462.812334266823,3383321.6161742746,1503264.1940190513,1369.88443,587.4459380502058,1418901.5946614868,601793.1932393516,2273.84736,938.2027834015656,2353093.5179673545,961680.724457419,0.38162,100000,0,367825,3841.233539062418,0,0.0,0,0.0,18427,191.96507827104023,0,0.0,24448,251.52208193656855,2090617,0,75072,0,0,3180,0,0,44,0.4594964336810885,0,0.0,1,0.0104431007654792,0,0.0,0.07325,0.1919448666212462,0.3154948805460751,0.02311,0.3096321331080203,0.6903678668919797,25.75633332181151,4.518967798145322,0.3362722623875859,0.2006700758243696,0.2297654734614706,0.2332921883265738,10.92409012597995,5.428025927858045,24.509654487260597,13169.007766464823,64.02472826513643,13.416820877788764,21.6215671068178,14.463491273960315,14.522849006569547,0.5501675189560924,0.7741652021089631,0.697954902988988,0.5763622409823485,0.1186696900982615,0.7055837563451777,0.9340974212034384,0.8630705394190872,0.6795774647887324,0.1439393939393939,0.500232991612302,0.7034220532319392,0.6421052631578947,0.5475956820412169,0.1123701605288007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391694429536,0.0045914799160762,0.0068694002212007,0.0090294141545461,0.0115504672041972,0.0137736559741833,0.0159121721491116,0.0180847698070073,0.0200533529574096,0.0222804449948315,0.0244787502306414,0.0265756518168753,0.0288181771449133,0.0309542688263945,0.0330936587680658,0.0352550851661981,0.0373070192695983,0.0394828319722738,0.0414609042802041,0.043234120576316,0.0581259395356606,0.0713770124802544,0.0848964613368283,0.0978594558223642,0.1106109799291617,0.126615997716726,0.1405073493541476,0.1532052100625718,0.1661503621253231,0.1777508420397743,0.1921887958983638,0.2051795415683643,0.2171562816092579,0.2288049364886598,0.238517165090861,0.2495123681177409,0.2603106887193862,0.2705405861506441,0.2803781808276394,0.2891209887300368,0.2974068071312803,0.3053412775521193,0.3129859524964792,0.320232460607513,0.3275941620729012,0.3337356222753134,0.3391174888341194,0.3453543988195186,0.3512060522838562,0.3567191195317558,0.3579350729956553,0.3585007173601148,0.3582650466233399,0.3589527884545652,0.3607004470938897,0.3605026268088113,0.3606586036458416,0.3624084702157134,0.3638406256967909,0.3649125320059446,0.3658664962309905,0.3667162255922291,0.3679261160432532,0.3696003592276605,0.3708404719963321,0.3709994495557128,0.3713402592942388,0.3730116062110623,0.3760822129935947,0.3781629806734409,0.3805334066538355,0.3818259613841793,0.3819277108433735,0.3825940396843637,0.386535552193646,0.3866491207082186,0.384735445606368,0.3834048640915594,0.3817114093959731,0.3820443062572872,0.0,1.854830071741239,61.451563942720966,216.886774431046,326.65274475625654,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,24 -100000,95834,41462,387.6912160611057,7332,75.19252039985808,5736,59.18567523008535,2326,23.84331239434856,77.51248185563044,79.80011153854095,63.42745123530996,65.11153996527503,77.229568131018,79.51654396283845,63.32360271553003,65.0103073175324,0.2829137246124418,283.5675757024916,0.1038485197799303,101.2326477426342,81.5518,57.077961688261816,85096.70889245988,59558.99464056976,223.58671,135.38691678196537,232618.4965669804,140585.661572655,264.41091,126.26236874608844,271685.5604482752,128586.7458423352,3292.21388,1477.3477597507372,3399807.083081161,1506142.6690973314,1400.18689,602.0179856869702,1445381.0651751987,612574.0925769437,2285.22088,948.557417592179,2344973.683661331,956480.2504506328,0.38187,100000,0,370690,3868.03222238454,0,0.0,0,0.0,18526,192.5934428282238,0,0.0,24657,253.05215268067695,2093607,0,75053,0,0,3212,0,0,55,0.5634743410480623,0,0.0,1,0.0104347100194085,0,0.0,0.07332,0.1920025139445361,0.3172394980905619,0.02326,0.307991192850667,0.692008807149333,25.52880959910347,4.52457921460115,0.3298465829846583,0.2058926080892608,0.2306485355648535,0.2336122733612273,11.263122309781874,5.762992823306367,24.523974256686905,13166.003863090604,63.96923158601004,13.80328678444274,21.04539491783952,14.68447275200318,14.43607713172462,0.5428870292887029,0.7510584250635055,0.6865750528541226,0.5842781557067271,0.1156716417910447,0.7139769452449568,0.8956743002544529,0.8939051918735892,0.7421602787456446,0.1132075471698113,0.4882704691812327,0.6789340101522843,0.6231884057971014,0.5405405405405406,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020945904923805,0.0043649547806888,0.0066390293840399,0.0091323274243792,0.0115097828074524,0.0137801281399369,0.0159332939667284,0.0182635829662261,0.0203710700172566,0.0226096737907761,0.0247711307268519,0.0269926570127579,0.0292023304322808,0.0312979220485164,0.0335470834450194,0.0358515121467526,0.0381109076045902,0.0402479990046862,0.0422072862886051,0.0440798309266758,0.0595198364690667,0.0737057833265368,0.0864280325257775,0.0992752862094317,0.1109157339454371,0.1272272155976384,0.1405786350148368,0.1529579381618679,0.1650980643233668,0.1762457030873518,0.1897413839453734,0.2032448313854263,0.2162980816206885,0.2276082730906152,0.2376458438619235,0.2496764988884833,0.2596352048490791,0.2695366916820204,0.27873810602628,0.2876136038868248,0.2963445872660559,0.3041512248560706,0.3123377542832869,0.3191832540801453,0.3257236284364781,0.3321249062957001,0.3379784420380258,0.3433424171367006,0.3503128830398039,0.3562212587045066,0.3576374909412996,0.3581575844006253,0.3595240767762936,0.3604691372255201,0.3617276633575344,0.3619551262456441,0.361787652914273,0.3630680885972108,0.3643981023243114,0.36553534127225,0.3663360767918409,0.3681389322942421,0.3700899691714028,0.3717014044189999,0.3731751168644373,0.3748733535967578,0.3752060010229016,0.3772717319903657,0.3789433277498604,0.3806715420303531,0.3803305264105912,0.3808973415992434,0.379265091863517,0.382183908045977,0.383855331841909,0.3862756598240469,0.3832072617246596,0.3877388535031847,0.3896598639455782,0.386303443057132,0.0,2.5218807032558823,60.75143767735908,210.25342474564235,335.14171662660283,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,25 -100000,95747,41576,390.3412117350935,7330,75.59505780859975,5739,59.45878199839159,2275,23.541207557416943,77.31288813594676,79.67209468638215,63.318020272784125,65.06220300420377,77.03230438781519,79.38676733462844,63.21633255463424,64.96066836996444,0.2805837481315762,285.3273517537076,0.1016877181498898,101.53463423932862,80.89444,56.650069320955,84487.70196455241,59166.41703756253,222.5457,134.004910601339,231963.40355311395,139489.70787736328,261.13727,123.74561151369603,269059.7825519337,126454.6930763795,3308.27072,1469.1124155918658,3432587.966202596,1511735.8200171953,1381.26544,586.9765242536612,1433618.0036972438,604047.4524044209,2248.54434,925.8477596916372,2329189.7396263066,949723.807588064,0.38282,100000,0,367702,3840.350089297837,0,0.0,0,0.0,18490,192.61177895913187,0,0.0,24356,250.75459283319583,2091060,0,75122,0,0,3203,0,0,51,0.5222095731458949,0,0.0,1,0.0104441914629178,0,0.0,0.0733,0.1914737996969855,0.3103683492496589,0.02275,0.3177691309987029,0.682230869001297,25.32256378059625,4.570315922800908,0.3251437532671197,0.2024742986583028,0.2343613870012197,0.2380205610733577,10.8413260346836,5.329710482908637,24.19930413489652,13199.38929828032,64.33613687261119,13.59474386302279,20.809975162700407,14.959069661744346,14.97234818514366,0.542080501829587,0.7788296041308089,0.6939978563772776,0.579182156133829,0.0966325036603221,0.6875,0.9154929577464788,0.858139534883721,0.7072368421052632,0.0959409594095941,0.4969171043617264,0.7187112763320942,0.6448467966573816,0.5417867435158501,0.0968036529680365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192691770139,0.0046929322210847,0.007122637202082,0.0093751269654247,0.0117268945596566,0.0139409368635437,0.0163454675231977,0.0186011373033455,0.02094792156542,0.0230286398869558,0.0252535091406834,0.0272321199363351,0.0294758927102188,0.0314466704434258,0.0333133872565203,0.0353056689576766,0.0371225614049621,0.0388590283686471,0.041024094506203,0.0430098564254308,0.0572630655836969,0.0715025581468344,0.0846755589111195,0.0976522662517216,0.1108545521640571,0.1266169548892061,0.1407349242898526,0.1540672301109147,0.1661966715802516,0.1779900920028308,0.1917204995693368,0.2046437686551023,0.2173601069786151,0.2289201426102933,0.2394406486890891,0.2513181798041561,0.2621346220381924,0.2721105273224351,0.2812691635058711,0.2908626300591282,0.2991525227499016,0.3071281523417395,0.3145426576736481,0.3212016591143398,0.3280790452346807,0.334118372379778,0.3396860003257778,0.3455749395135617,0.3518285647613985,0.3566015526841332,0.3580185240191181,0.3588127387832228,0.3590442817984005,0.3593079243531732,0.3601361031518624,0.3607657269481719,0.3606878433245761,0.3620066359629574,0.3629912194786673,0.3635906010103734,0.3654067301347912,0.3662061551936935,0.3663360080874455,0.369208646025255,0.3696657226538862,0.3698259796845061,0.3705395621444579,0.373192665798087,0.3755678591709256,0.3795003821553562,0.3827980804724991,0.3843267581475129,0.3872192344194875,0.3879873875259556,0.3896029705798343,0.3906530856800479,0.3925671455340412,0.3967112024665981,0.4050028105677347,0.4006127920337035,0.0,1.8824738583361504,60.4848773919281,211.25889026883013,343.22178985823143,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,26 -100000,95787,41471,388.6435528829591,7286,75.03105849436771,5670,58.682284652405855,2326,23.93853028072703,77.37208356525132,79.71005814449278,63.35007434272507,65.0793503183962,77.09127439172694,79.42821872377992,63.24736408912282,64.9787177432985,0.2808091735243749,281.8394207128563,0.1027102536022539,100.6325750976913,81.34852,56.97372374880159,84926.47227703134,59479.599265872814,220.34844,132.91082518971032,229518.98483092693,138235.60106247233,255.40517,120.7957228860471,263806.2471942957,123929.2775672026,3271.1186,1462.9373692286522,3387136.7930930085,1499426.3200942231,1383.82899,593.284236809242,1433661.0604779357,608347.2842803778,2299.6066,952.2653977563792,2369146.084541744,966358.8067453064,0.38214,100000,0,369766,3860.2941944105146,0,0.0,0,0.0,18295,190.45381941181995,0,0.0,23868,246.31734995354276,2092950,0,75131,0,0,3273,0,0,46,0.469792351780513,0,0.0,2,0.0208796600791339,0,0.0,0.07286,0.1906631077615533,0.3192423826516607,0.02326,0.3046133853151397,0.6953866146848603,25.243170179944293,4.537723716166219,0.326984126984127,0.2079365079365079,0.2202821869488536,0.2447971781305114,10.990111934934331,5.3956830502373645,24.781168210553147,13175.054095718888,63.573871624919946,13.687248576027663,20.72344705164923,13.969351872257304,15.193824124985758,0.5396825396825397,0.7675996607294318,0.6785329018338727,0.5868694955964772,0.1181556195965417,0.7116519174041298,0.9222222222222224,0.8747252747252747,0.7210144927536232,0.1358490566037735,0.485628187297172,0.6996336996336996,0.6147248034310222,0.5488180883864338,0.113980409617097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0045821337334252,0.0067585395059974,0.0088987312197153,0.0108918946404962,0.0129296302329369,0.0151566115239172,0.0172459538339081,0.0195389143230869,0.0217787329853648,0.0239905718384914,0.0259857550442332,0.0282266354179515,0.0304680903642991,0.0327936475198515,0.034903905765654,0.0370266857131027,0.0393566050650239,0.0415220598931814,0.043415792103948,0.0574067310200887,0.0722092646243633,0.0853102428899395,0.0982652278530224,0.1102566263537145,0.1251333734774295,0.139181484856834,0.1515486608044742,0.1637430644472898,0.1749437600428494,0.1886443340003012,0.202451467854209,0.2147817298601375,0.2264940914109557,0.2377673907066263,0.2494269039524247,0.2604718612304088,0.2711401398475616,0.2803731960866558,0.2892980226473854,0.297928689557866,0.3061491699789572,0.3146596054047025,0.321789529146908,0.3288940148112176,0.3353082465972778,0.3409967443025294,0.347390247935987,0.3522877340169347,0.3583078222316056,0.3587338330888389,0.3596502083075527,0.3609809787210024,0.3625253402838111,0.3636092912447886,0.3636698599852616,0.363949465130305,0.3647990255785627,0.3660692827960312,0.3662956390815723,0.3685901651665758,0.3687289311917509,0.3690969084298354,0.3699816085766833,0.3716204788711976,0.3725834797891036,0.3735376124637098,0.3758646950561655,0.378186317836309,0.3790810399391099,0.3817623326609206,0.3864109823193205,0.3862356885318489,0.3873342022540826,0.3849503076194983,0.3875074360499702,0.3861234492265278,0.3871351995235259,0.38218469081994,0.3742889647326507,0.0,1.946856456079588,60.07507885953396,213.170031836204,331.1481072081718,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,27 -100000,95648,41368,388.8006022080964,7397,76.20650719304115,5815,60.252174640347945,2289,23.638758782201407,77.25911226955019,79.65591878280789,63.27736057920528,65.04615060165031,76.98071081042468,79.3748703566633,63.17660867874813,64.94649675709123,0.2784014591255044,281.0484261445936,0.1007519004571477,99.65384455908575,80.94064,56.71277243451642,84623.45265975242,59293.21306720101,223.16258,135.05329941493434,232722.77517564403,140604.50758503508,270.08082,127.91705846498758,278596.1651053864,130816.78611236686,3322.9376,1496.318821986067,3444975.2843760457,1535465.672418448,1400.01901,612.9006146783028,1449954.0398126463,627155.4914591692,2247.0633,926.94369100217,2321976.0162261627,945883.4237060356,0.38032,100000,0,367912,3846.520575443292,0,0.0,0,0.0,18511,192.91569086651052,0,0.0,25251,260.2145366343259,2083051,0,74906,0,0,3167,0,0,54,0.5645700903312145,0,0.0,0,0.0,0,0.0,0.07397,0.1944941102229701,0.3094497769365959,0.02289,0.3209718670076726,0.6790281329923273,25.365880406573336,4.517302505152555,0.328804815133276,0.2204643164230438,0.2252794496990541,0.2254514187446259,11.27681489105114,5.703875940909199,24.31407513614701,13113.46549977322,66.03423384555205,15.21549610690553,21.6265281214766,14.596711569381227,14.59549804778869,0.5681857265692175,0.781591263650546,0.7055439330543933,0.6053435114503817,0.122044241037376,0.7231316725978648,0.9186602870813396,0.8604118993135011,0.7617328519855595,0.1648351648351648,0.5188208616780046,0.7152777777777778,0.6596610169491526,0.5634075508228461,0.1107899807321772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081986973653,0.0044717549356614,0.0066987394190365,0.0089822793041781,0.0114247927158044,0.0135049803434298,0.0157941962191814,0.0181712384005226,0.0206295171793377,0.0226523635023645,0.0246060469360345,0.0267170477764885,0.0286657615403604,0.0305961615724572,0.0327763960412388,0.0347419685047511,0.0369422660547607,0.0387905084182773,0.0408154774287497,0.0429193945206621,0.0571404685769222,0.0713769519999162,0.0852033476493998,0.0981878678754567,0.1104669581194956,0.1256579435095262,0.1396571501401988,0.1524717664606861,0.1643819503849444,0.1759494894179042,0.1897299279520255,0.2024573112594262,0.2156907593778591,0.2272777071738463,0.2382921477168723,0.2493115089059654,0.2605363556013023,0.2703455587134028,0.2795400520910342,0.287758127348571,0.2966530498560951,0.3047568772362015,0.3126157132684548,0.3195045695045695,0.3261092275044515,0.3331149081377809,0.3392442262046793,0.3444521037581699,0.3493414044841651,0.3543774164503999,0.3555588589034987,0.3565949330347887,0.3580533680811285,0.3585926928281461,0.3595638386980974,0.3599248166635854,0.3600942630129134,0.3613097105493453,0.3626950135025887,0.3630566383445005,0.3639995477330117,0.3648758770099179,0.3665626712761921,0.3668662943274342,0.3678199773040056,0.3679018160883446,0.3682809548342778,0.3698569439169515,0.3717458970005659,0.3727687505002801,0.3756829973827999,0.3797739568268252,0.3803407934893184,0.3834724668760052,0.3807278898736564,0.3841273641369404,0.3795282873439186,0.3791275988585406,0.3792717086834734,0.3821456538762725,0.0,2.108732095390492,62.54812713992715,228.0053657691712,333.60507938709,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,28 -100000,95616,41315,387.93716532797856,7269,74.78873828647924,5687,58.88135876840696,2301,23.625753012048197,77.28554750318864,79.71572902040363,63.27381344368565,65.07120741973897,76.99757087987994,79.42980016737378,63.16817441463896,64.96964688148812,0.287976623308694,285.9288530298443,0.1056390290466851,101.5605382508511,81.22488,56.891138969497646,84949.04618473897,59499.60149922361,220.35539,133.49911593942645,229839.80714524764,139001.16710532384,260.57515,124.28935110101972,269406.86705153954,127586.35245848994,3256.44356,1470.101719213601,3372517.3192771086,1504271.5855229257,1381.57973,597.5541511277067,1429529.8799364122,609582.316782208,2266.78324,942.4316642454712,2329536.374665328,948710.2615151306,0.38095,100000,0,369204,3861.320281124498,0,0.0,0,0.0,18315,190.90947121820616,0,0.0,24431,252.3322456492637,2085750,0,74829,0,0,3227,0,0,40,0.4183400267737617,0,0.0,0,0.0,0,0.0,0.07269,0.1908124425777661,0.3165497317375155,0.02301,0.3216856432404135,0.6783143567595864,25.521718324556364,4.522146292329221,0.3268858800773694,0.2039739757341304,0.2363284684367856,0.2328116757517144,11.01343222147126,5.533249330534112,24.586332016011568,13165.10614395814,64.11762949033456,13.696757064655982,20.987498305347888,14.966238549295907,14.4671355710348,0.5517847722876736,0.7517241379310344,0.7132867132867133,0.5833333333333334,0.1178247734138972,0.7170596393897365,0.8944591029023746,0.8668076109936576,0.7515337423312883,0.1515151515151515,0.4956419316843345,0.6824583866837388,0.6608946608946609,0.5294695481335953,0.1094339622641509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022699635184434,0.0046658349308746,0.0071680948706493,0.0094323321644559,0.0115980954706385,0.0137823549185588,0.0160051412308351,0.0183577149395227,0.0203741395710384,0.0224798500660569,0.0245070884881311,0.0266232365059956,0.0288516963109354,0.0307999958768412,0.0329272070211667,0.035012049937423,0.0370976767320884,0.0390059505883086,0.0412498829015436,0.0432669239595285,0.0577357307129416,0.0722587271145764,0.0855122115263357,0.0982509746075229,0.1106439618017409,0.1258274638563787,0.1397479223787965,0.1527160296391065,0.1648686829769473,0.1760527814491258,0.1898308011049723,0.2031487183935464,0.2160450770538614,0.2273494345577277,0.2386354866095547,0.2500610446402805,0.260351920583106,0.2702794089469472,0.2797867987998909,0.2894208830644699,0.2976175308956555,0.3055470964417063,0.3132648705056446,0.3205539341092254,0.3279399052802026,0.3342927377614171,0.3403967199137347,0.3463059339762233,0.3515552957984285,0.3570776618119766,0.3584197957283754,0.3595474651710785,0.3605966860194092,0.3614613222038663,0.3622564499791456,0.3618866068134301,0.3618878061962517,0.3625222669393679,0.3632823890632772,0.3642550593474474,0.3660882330798765,0.3671235050278665,0.3682014540090612,0.3682259369102184,0.3679099429896608,0.3675640355462624,0.3682184907489238,0.3713151927437642,0.3727584757635191,0.3761322103924996,0.3777473155129084,0.3800021342439441,0.3826120017742855,0.3827528261533761,0.3831052383199622,0.3856837606837607,0.3818964192408176,0.3824547119886016,0.3827567270730368,0.3873292867981791,0.0,2.224207808606242,63.89245566968729,207.77990909696848,328.1563669361578,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,29 -100000,95817,41400,389.01238819833645,7302,75.1119321206049,5726,59.26923197344939,2360,24.32762453426845,77.35864855579545,79.66385124931274,63.35358995694328,65.05430823355175,77.06396319098482,79.36535920454962,63.24637579365252,64.94787818926694,0.2946853648106327,298.4920447631225,0.1072141632907559,106.43004428480651,79.90598,56.02122599420375,83394.36634417692,58466.89626496734,218.82326,132.3253952596961,227825.7302983813,137551.70299601962,255.4869,121.66333042543668,263364.7160733482,124399.21508305764,3304.698,1479.4940719754336,3423962.261394116,1519076.982138277,1396.02232,599.8235555644889,1447174.4053769163,616216.6792578445,2328.13278,961.312446319082,2402502.812653287,980401.6148183736,0.38155,100000,0,363209,3790.653015644406,0,0.0,0,0.0,18249,189.95585334543972,0,0.0,23973,246.88729557385437,2097490,0,75286,0,0,3160,0,0,43,0.4278990158322636,0,0.0,1,0.0104365613617625,0,0.0,0.07302,0.191377276896868,0.3231991235278006,0.0236,0.3140096618357488,0.6859903381642513,25.245880152692408,4.5983508865755365,0.3332169053440447,0.1933286762137618,0.234544184421935,0.2389102340202584,11.130023605833149,5.604699530728396,25.10451514918264,13127.40691795471,64.56404421076672,12.99607857112152,21.53114580868806,14.97583959838863,15.06098023256852,0.5382465944813133,0.7606142728093948,0.6986373165618449,0.5502606105733433,0.1228070175438596,0.701867816091954,0.9104046242774566,0.8547008547008547,0.7202572347266881,0.1423220973782771,0.4856945085371481,0.6925098554533509,0.6479166666666667,0.499031007751938,0.1180744777475022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023581563872639,0.004527545098198,0.006721615620913,0.0089804864683856,0.0112673480584398,0.0133869080921621,0.0152996781159597,0.0174737078330766,0.0196146537809288,0.0217475807606538,0.023998279252704,0.0260016000984676,0.028160476704166,0.0302540724657069,0.0323648286385944,0.0342480608946221,0.0362246112140056,0.0382633755947876,0.0404258634121007,0.0422240498027254,0.0574298948422633,0.0719707266074229,0.0854558413516969,0.0982312696394228,0.109899143191375,0.1252708000887696,0.1389345348529022,0.1513994234226567,0.1634191392361815,0.1749745349273575,0.1883903479019285,0.2015016606982506,0.213759801629164,0.2258858536905556,0.2367157737112153,0.2481738070165715,0.2590810653926012,0.2690130860891384,0.2787184783348843,0.2871434628651318,0.2955047985089313,0.303477344573235,0.3116346279122102,0.3191900289104017,0.3264188819271245,0.3333703511759334,0.3399589188647579,0.3458066487567003,0.3519932585726324,0.3576922060417052,0.3584460416132903,0.3601554211389283,0.3612986903133943,0.3621901483816851,0.3632196225516461,0.36317904358762,0.3626307352917837,0.3636348657109903,0.365079365079365,0.3663104965430547,0.3676634070054453,0.3693371483071054,0.3691317649541091,0.3684636482172564,0.3698540622957961,0.3711204629142556,0.3739132937992976,0.3774857615577969,0.3789832676116381,0.3800522823245525,0.3810028086007643,0.3831564200657363,0.38573981871569,0.3871267933307483,0.3876249405045217,0.3927207637231503,0.3895096213531968,0.396023198011599,0.3999432302015328,0.4016096579476861,0.0,1.9606263918453493,61.87826091090776,216.74864020742797,332.1487425483752,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,30 -100000,95862,41411,389.0488410423317,7227,74.28386639127079,5601,57.853998456114,2304,23.659009826625777,77.41454581429173,79.70383284172574,63.37712166936033,65.06824597688804,77.13328716778285,79.42148243800231,63.27404317465668,64.96750175912484,0.2812586465088742,282.35040372342723,0.1030784947036451,100.74421776319298,80.11168,56.18310821897264,83569.79825165342,58608.32052218046,219.16948,132.6283341592113,228009.87878408545,137733.07896686002,256.80843,122.1527067079992,264496.9330913188,124841.29031194806,3238.402,1453.3828961103654,3348039.8072228828,1485968.1793728129,1377.76655,595.3014929965497,1423918.6434666498,607677.5291528968,2278.49084,947.5337630036722,2342550.770899835,958533.7269137818,0.38141,100000,0,364144,3798.627193256974,0,0.0,0,0.0,18219,189.45984853226517,0,0.0,23996,246.87571717677497,2097231,0,75301,0,0,3181,0,0,40,0.4068348250610252,0,0.0,0,0.0,0,0.0,0.07227,0.1894811357856375,0.3188044831880448,0.02304,0.3164340268633131,0.6835659731366869,25.252879043905757,4.593566522027822,0.3236921978218175,0.1978218175325834,0.2317443313693983,0.2467416532762006,10.88490976019364,5.405515294007301,24.507015732010927,13084.249456240936,62.91777874976041,13.054312747422768,20.36715204410085,14.278387552526532,15.21792640571026,0.5416889841099803,0.7734657039711191,0.6971869829012686,0.5924499229583975,0.1041968162083936,0.6958393113342898,0.9116022099447514,0.8777777777777778,0.7307692307692307,0.1216216216216216,0.4906108866175422,0.7064343163538874,0.6375641966250917,0.5533596837944664,0.0994475138121546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023282887077997,0.0045387771642773,0.0066519971201719,0.008537551012121,0.0107429616830978,0.0125052147457747,0.0146699266503667,0.016810151372965,0.018866960856419,0.0210600605515096,0.0232415213004599,0.0254182523156458,0.027557720168922,0.0294895680009881,0.0316108545034642,0.033743028299938,0.0356939630645077,0.0380848748639825,0.0400917688338921,0.0419930306340042,0.0563364127374721,0.0698415684307332,0.0829596882333221,0.0957685846283074,0.1076430572228891,0.1223595268272074,0.1362239925420568,0.1492240646258503,0.1616719831862844,0.1733440428380187,0.1873614906297738,0.2012909782890753,0.2141894681937713,0.2256961140009616,0.2369187484201387,0.2481990107008089,0.2591940052186712,0.269810048330898,0.2791003640735406,0.288329650450533,0.2976786685018332,0.3051033773037702,0.3124682054254853,0.319213712093971,0.326489929378016,0.3337197257435998,0.3404772342957349,0.3459510405787503,0.3515421245896534,0.3565300159961926,0.3575290928949959,0.3579872688693543,0.3588897351273589,0.3601435019095012,0.3618689197631868,0.3623295019157088,0.3620864334335918,0.3636050064058342,0.3653171874732755,0.3669613358335565,0.3679515769353297,0.3684960516159677,0.3692068951054817,0.3703040744635625,0.3693237936932379,0.3704370515329419,0.373324205602145,0.3774414369151542,0.3796925025507511,0.3811991707861585,0.3838894967177242,0.3857363186725522,0.3847408708746392,0.3828644888082275,0.3793911007025761,0.3766741732843428,0.3774307150512938,0.3787971457696228,0.385103448275862,0.3933613124761541,0.0,2.257199268420049,61.61058956390324,204.9226655880956,325.053089694144,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,31 -100000,95721,41143,386.5191546264665,7192,74.09032500705175,5643,58.5033587196122,2237,23.119273722589607,77.36002699221102,79.73158695174267,63.33690834044432,65.08852811247883,77.09020908958767,79.45838604429753,63.23999108366241,64.99244940928473,0.2698179026233447,273.200907445144,0.0969172567819143,96.07870319409528,80.6025,56.49120017804548,84205.66019995612,59016.516937814566,219.61882,132.70059840631993,228978.2179459053,138174.50549651583,261.28202,123.83282623170696,269882.7843419939,127057.59214359114,3242.61288,1450.2853415726856,3363104.021061209,1490654.361710267,1372.95193,597.9660067059193,1424231.1613961407,614601.1708046499,2205.85644,902.9979749571723,2280861.608215543,922194.5348158284,0.38003,100000,0,366375,3827.5300090889145,0,0.0,0,0.0,18261,190.2821742355387,0,0.0,24415,251.9927706563868,2095003,0,75105,0,0,3149,0,0,45,0.4701162754254552,0,0.0,0,0.0,0,0.0,0.07192,0.1892482172460069,0.3110400444938821,0.02237,0.3140637345272584,0.6859362654727417,25.1703741505094,4.574472305753861,0.3287258550416445,0.2062732589048378,0.2330320751373382,0.2319688109161793,11.229930008584194,5.6425611614118845,23.5774038635976,13081.453163762497,63.54297351662837,13.6961714934676,20.829191015884746,14.668919480970738,14.348691526305284,0.5511252879673932,0.781786941580756,0.693800539083558,0.5726235741444867,0.1222307104660045,0.7184115523465704,0.9302949061662198,0.8957871396895787,0.7562724014336918,0.1170212765957446,0.4967120713950211,0.7117572692793932,0.6289173789173789,0.5231660231660231,0.1236611489776046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877627087743,0.0042575190828087,0.0066671402331976,0.0089294784534427,0.0111578990194881,0.013125738259134,0.0152599388379204,0.0174835167078323,0.019657551750575,0.0218882450500624,0.0240419118702454,0.0263336207958605,0.0284541976882892,0.0306831875907672,0.0327170301892243,0.0346143109705033,0.0365689422977312,0.0387146326780561,0.0405533309064433,0.0424507658643326,0.0568534280194245,0.0715676218784669,0.0845834294945765,0.0973065070834341,0.1097464551157029,0.1245269456013869,0.1380356385235469,0.1513381218409151,0.1638971357782097,0.1756188596679394,0.1888302455838001,0.2018046869928375,0.2142756229827097,0.2257852973965506,0.2370354079612931,0.2485133055004928,0.2595120971789981,0.2701371711266022,0.2796521778563816,0.2884685839897417,0.2969713089634915,0.3046156363593861,0.3118243962438205,0.3187511975474228,0.3262778243287551,0.3325655301537248,0.3386723393605706,0.3447806738715829,0.3501055002524239,0.3556567055874398,0.3567925850083526,0.3573071783780805,0.3584884360844963,0.3591673663182884,0.359995237173858,0.3600417190711371,0.3601584158415841,0.3614946397202476,0.3612982660145696,0.3620914565500974,0.3631245073383131,0.3645039301482963,0.3643657693516288,0.3642994585402962,0.3646081617912604,0.3654172652474859,0.3660456197590223,0.3671422696067575,0.3708742667326313,0.3724806667468045,0.3755173365216591,0.3759104541559554,0.3772868266126479,0.3796914575178448,0.3795385779122541,0.3766451304139746,0.3739385517986722,0.377079482439926,0.377877596855699,0.3784421715184893,0.0,1.7452845825702348,61.920555107451584,213.20366264372387,323.38687077599377,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,32 -100000,95751,41492,389.5938423619597,7315,75.20548088270618,5657,58.485028876983,2251,23.101586406408288,77.33346816806463,79.69420411015274,63.32120940122799,65.06963887748371,77.05384350206764,79.41540888220757,63.21919482275497,64.97072257835697,0.279624665996991,278.7952279451673,0.1020145784730175,98.91629912674205,81.31948,56.96984108590375,84928.07385823647,59497.90716118239,221.53814,134.3116458813573,230809.8505498637,139712.63577545644,262.69598,125.40859051711162,270726.5198274692,128142.71581660978,3236.01916,1464.1692946668068,3347755.449029253,1497587.7193975796,1361.98131,593.9780652323045,1404979.7808900168,603006.2098079502,2211.68738,919.9859024494192,2272484.3395891427,929297.699929991,0.38266,100000,0,369634,3860.366993556203,0,0.0,0,0.0,18435,191.9353322680703,0,0.0,24662,253.82502532610624,2089005,0,74993,0,0,3193,0,0,43,0.4490814717339766,0,0.0,0,0.0,0,0.0,0.07315,0.1911618669314796,0.3077238550922761,0.02251,0.3235370611183355,0.6764629388816645,25.12049244514845,4.501953064962765,0.3316245359731306,0.2061163160685876,0.2361675799893936,0.2260915679688881,11.106268738358697,5.630529590272036,24.013100200515726,13140.003375091492,63.908295780699824,13.739830689979966,21.265775076698866,14.922915044401796,13.979774969619209,0.5529432561428319,0.7873070325900514,0.7020255863539445,0.562125748502994,0.1110242376856919,0.7114597544338336,0.9360613810741688,0.848421052631579,0.6929824561403509,0.1434108527131783,0.497494631352899,0.712258064516129,0.6523911491791577,0.5171026156941649,0.1028403525954946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365773342114,0.0042286942765586,0.0063942512636258,0.0088195248836594,0.0109944875002542,0.0131759818346587,0.0153733230028952,0.0172174481027127,0.0191631576795715,0.0213628407357743,0.0236203520498651,0.0257173656383142,0.0279300309533848,0.0299790939331211,0.0322517410368841,0.0343473182630986,0.0365423047849813,0.0385393643184011,0.040577630840247,0.0429737949422988,0.0579564908764457,0.0723712440737213,0.0857361705699655,0.0989440915401119,0.1111837595570788,0.1264195233362235,0.1402805185986801,0.1529267773520647,0.1647798876476493,0.1766806429819952,0.1906567424625957,0.2043514481385712,0.2165718698002196,0.2278698386655728,0.238944867338408,0.2497785356779022,0.2596313785904864,0.2696999707398321,0.2793403250703714,0.2885593220338983,0.2963027232132528,0.3045248233587572,0.312161234585434,0.3202305765612454,0.3273563832370222,0.3333620668423515,0.3396547410557918,0.3457444779307977,0.3503767770670948,0.3555599577390386,0.3567845971308381,0.3572451199030864,0.3584578517056667,0.3598842257597685,0.3608853561966003,0.3606673221088853,0.3606408994188078,0.3622381767883019,0.3636955776482687,0.3660512636673239,0.3669574700109051,0.3675303547337513,0.3687308193551099,0.3701084394153701,0.3708155959752321,0.3718009354143675,0.3727072423956277,0.374746963562753,0.3756591287114697,0.378731045490822,0.3795724030581879,0.3818522483940043,0.382035319527379,0.3826294697903822,0.3876987527373131,0.3893655589123867,0.3905619372865569,0.3954113269946259,0.3941276115189158,0.3982819211245607,0.0,2.365411707458426,64.86908908910424,201.72590544783048,328.6621915895269,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,33 -100000,95794,41379,388.7299830887112,7172,73.72069231893438,5556,57.38355220577489,2249,23.091216568887404,77.34149214859087,79.68031588286416,63.33904717832892,65.07235404440897,77.06330010136065,79.40232242089044,63.23760371068686,64.97383912821857,0.2781920472302204,277.9934619737219,0.1014434676420563,98.5149161903962,80.90038,56.66551197726718,84452.45004906361,59153.50854674321,220.67981,133.8590786559979,229691.8804935591,139059.36046010087,255.39876,121.75085076440212,262505.9607073512,124086.84894124696,3208.13924,1442.0160128060572,3313993.2772407457,1470345.0753737416,1346.24822,581.4719121582364,1389079.691838737,590730.3589865885,2219.26682,922.564190276084,2279210.973547404,930317.2530381908,0.38143,100000,0,367729,3838.747729502892,0,0.0,0,0.0,18455,191.97444516358016,0,0.0,23842,244.8483203540932,2093607,0,75107,0,0,3169,0,0,39,0.3966845522684093,0,0.0,0,0.0,0,0.0,0.07172,0.1880292583173845,0.3135805911879532,0.02249,0.3126820227693937,0.6873179772306063,25.397892803793848,4.637178578563398,0.3390928725701944,0.1976241900647948,0.2253419726421886,0.2379409647228221,11.323636514062589,5.711263693605013,23.93226296881744,13100.077841707842,62.46697079538488,12.761287876080042,21.148139197496825,13.93440904906105,14.62313467274696,0.543016558675306,0.7750455373406193,0.685244161358811,0.5782747603833865,0.1142208774583963,0.698948948948949,0.9203539823008848,0.876993166287016,0.7073170731707317,0.1161048689138576,0.4938446969696969,0.7101449275362319,0.6269896193771626,0.5398963730569948,0.1137440758293838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044301166833936,0.0066873002181744,0.0089115148559118,0.0111817673093554,0.0132625724501125,0.0154210182767624,0.0179621762927865,0.0201857002617801,0.0221692027278871,0.0239828562053974,0.0260728478861379,0.0280597813229652,0.0300395582660293,0.0322753724875149,0.0341505767561086,0.036272327206834,0.0385169970642849,0.0404426663895672,0.0424331386572555,0.057740865173932,0.0717063989962358,0.084725336910276,0.0967423287095418,0.108388660554326,0.1237607018285593,0.1375643988381707,0.1503296469587409,0.1616914095435286,0.1734312201918439,0.1881969259913032,0.201764343398307,0.2144106558890953,0.2250904361700965,0.2367087076520458,0.2482229455922407,0.2583604583760646,0.2691145921060019,0.2788253547605295,0.2883065207697321,0.2972195921760617,0.3048686514886164,0.3131662924004255,0.3201417319064378,0.3269027772722309,0.3328819735092816,0.3393674209276159,0.3453524419372872,0.3510280615543773,0.3563194160814745,0.3571168988491823,0.3588092879938373,0.3592454745389951,0.3598854199820607,0.3609990622627748,0.36059941408347,0.3612354378948036,0.3620042166293319,0.3631187184852331,0.3643914252399318,0.3658577941896831,0.3679031488549618,0.3672810865530622,0.369563259792886,0.3710553104852392,0.372410892650615,0.3733367968366669,0.3758933129147524,0.3780366175108641,0.3779011302843811,0.3793231339823829,0.3801122261789144,0.3795400679008391,0.3833592534992224,0.3830339129599385,0.3858715374380065,0.3834041883168005,0.3829385872982603,0.3786242183058556,0.3811379579111457,0.0,2.2221573898093325,58.662426609847074,209.97997640521652,324.80361073225623,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,34 -100000,95711,41065,384.3863296799741,7275,74.95481188160191,5662,58.67664113842714,2315,23.83216140255561,77.3419109081298,79.7099610216409,63.33255108723839,65.08057986137844,77.05975820047702,79.42566020019412,63.23022310940751,64.97940712454975,0.2821527076527843,284.30082144677726,0.1023279778308747,101.172736828687,81.16878,56.79671516748065,84806.11423974256,59341.88877713183,218.55596,131.8096602524658,227837.10336324977,137203.52963866826,255.0907,121.22826324314396,263220.6642914608,124085.707745449,3255.21328,1466.8318782734475,3375744.6479506013,1507222.323738595,1424.58547,617.7034852111027,1477000.825401469,634022.7121865108,2280.01652,940.702407514569,2350514.6534881047,957544.3315947108,0.37969,100000,0,368949,3854.823374533753,0,0.0,0,0.0,18189,189.5184461556143,0,0.0,23879,246.1994964006227,2093654,0,75162,0,0,3205,0,0,41,0.4283729142940728,0,0.0,2,0.020896239721662,0,0.0,0.07275,0.1916036766836103,0.3182130584192439,0.02315,0.311909758656873,0.688090241343127,25.44840026448446,4.55436052819281,0.3447545037089368,0.1990462734016248,0.220063581773225,0.2361356411162133,11.177320020406478,5.620766721454977,24.66953156223283,13096.102592304613,63.99869860236556,13.213943699230947,22.111027540923857,14.005366092007115,14.668361270203652,0.5473330978452844,0.7613132209405501,0.6869877049180327,0.5922953451043339,0.1211667913238594,0.7000715819613458,0.9116809116809116,0.8535031847133758,0.6923076923076923,0.1520912547528517,0.4973036342321219,0.6932989690721649,0.6340310600945307,0.5588865096359743,0.1135940409683426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0045707915273132,0.0068167985392574,0.0093747460794669,0.0118253548623256,0.0140812087643561,0.0164531025413621,0.0185045317220543,0.0205335241210139,0.0229563900232327,0.0251973347001537,0.027415827249484,0.0295956562872773,0.0317728509024973,0.0338152287197267,0.0359106884432499,0.0378302248273148,0.0397455454894513,0.0417355500795408,0.0437881661491006,0.0587246219400117,0.0726532406632055,0.0861897117916758,0.098215130893907,0.1105461910086285,0.1256599341917327,0.1396064286850899,0.1521019406623588,0.1639818830516803,0.1752711124459652,0.1892203316821021,0.2019174583937498,0.214324559495323,0.2255620188943317,0.236331841228292,0.2477196245129295,0.258879286311681,0.2691624508150646,0.279028086573801,0.2870191262147035,0.2951800259163273,0.3037030968376208,0.3113042242849024,0.318332753928961,0.3242855580001701,0.3310753285211919,0.337909676772236,0.3441213556990562,0.3498509397278029,0.354958306945324,0.3560299746617068,0.3565746373420683,0.3570724564219538,0.3584303417198648,0.3587647863044641,0.3582919654348225,0.3585996136428413,0.3590637122756263,0.3595957865890211,0.3614146988210843,0.3621279957861469,0.3635876255907231,0.3642477652217912,0.3641377757766771,0.3657863523032606,0.3670846230523057,0.3683651499928233,0.3723346956879891,0.3732132089525768,0.3741614108383883,0.3772196154200018,0.3779222873112269,0.3802789986623351,0.383307573415765,0.3828363914373088,0.3796218234373118,0.379020979020979,0.3815570358034971,0.3801817149346962,0.3776908023483366,0.0,1.8663712454837385,62.19521513169728,216.44534522689344,323.5283972707345,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,35 -100000,95708,41299,386.2895473732604,7362,75.66765578635015,5708,59.054624482801856,2328,23.98963514021816,77.33810060160408,79.72198081872583,63.31256206328344,65.07546306408736,77.05074414571251,79.43128959937873,63.20693815396741,64.97066777921863,0.2873564558915689,290.69121934709585,0.10562390931603,104.7952848687288,81.4264,57.00686740251919,85077.94541731098,59563.32532548919,220.65829,133.51864496484131,229975.00731391317,138927.85481874508,261.81658,124.85571681621704,269207.78827266267,127155.92711707874,3280.55484,1483.4264933926022,3396989.050027166,1519282.685632315,1366.56608,597.6113508733431,1413384.001337401,610073.5388735168,2294.1906,956.5275783393048,2366700.840055168,974212.072594524,0.38067,100000,0,370120,3867.1793371505,0,0.0,0,0.0,18392,191.5618339114808,0,0.0,24455,251.24336523592595,2087115,0,74937,0,0,3235,0,0,39,0.3970409997074435,0,0.0,1,0.0104484473607221,0,0.0,0.07362,0.1933958546772795,0.3162184189079055,0.02328,0.3231958762886598,0.6768041237113402,25.3591843958716,4.626932833123754,0.3326909600560617,0.1955150665732305,0.2393132445690259,0.2324807288016818,11.12554715761981,5.495368925973644,24.69933901851048,13165.220025161309,64.24548749544616,13.053940584179893,21.408372214843787,15.186467274724912,14.59670742169756,0.5495795374912403,0.775089605734767,0.6893101632438126,0.5944363103953147,0.1137905048982667,0.6984352773826458,0.9185393258426966,0.8295218295218295,0.7517241379310344,0.1362007168458781,0.50092980009298,0.7078947368421052,0.6417489421720733,0.5520446096654275,0.107824427480916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022095639658632,0.0044126597687157,0.0068125977216886,0.0092383681931825,0.0119453404015018,0.0142494830870145,0.0164922587356954,0.0188444135761487,0.020903001482845,0.0231608047918906,0.02556424901814,0.0278373910275498,0.0298175985523041,0.0320268572487796,0.0340334660696969,0.0362214000785399,0.0380091528442152,0.0402340588882202,0.0424273298124506,0.0444502317829053,0.0588057145244162,0.0735588146008018,0.086910445412098,0.0991354830567299,0.1112118783481672,0.1264201239765587,0.1392932937181663,0.1528329411263616,0.1649265295217739,0.176505300201708,0.1910996174775066,0.2036640031183005,0.2160664518376589,0.2276577582244402,0.2393632830990411,0.2507039443052568,0.260945826676647,0.2710742312845514,0.2793442697446151,0.2880195430773465,0.296469661333117,0.3045627599133134,0.3123666872067118,0.3194529422350189,0.326302986073101,0.3327322134387351,0.3391790857544282,0.3451843347365735,0.3499007511773634,0.3552471583399418,0.3563272624327639,0.3577985444922262,0.3587674247982392,0.3593019722467406,0.3597040918089397,0.3600528247416348,0.3598165690801478,0.3614428106187703,0.3628112477309312,0.363415114260661,0.3636346551400112,0.3641516538835048,0.36473038648461,0.3654404319946001,0.3665096049293222,0.367624810892587,0.3686013646615468,0.3712384076714403,0.3719482164215859,0.3757002662004847,0.3793306997230168,0.3833721916066129,0.386266633191062,0.3882361858561358,0.3888628919045391,0.3894686907020873,0.3967746843146204,0.3997979797979798,0.3941305540318157,0.3935926773455377,0.0,2.24951713124634,61.94330810592376,216.9074870430589,325.69614252385435,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,36 -100000,95649,41095,385.4196071051449,7218,74.4074689751069,5573,57.67964118809397,2254,23.272590408681744,77.27782633283482,79.6891573821084,63.2892740309558,65.07261664928605,77.0066208855396,79.41480323188745,63.1910481848849,64.97534429390848,0.2712054472952161,274.3541502209581,0.0982258460708962,97.2723553775694,80.73758,56.52902296723207,84410.27088626123,59100.485072747295,217.87446,131.3566086829959,227188.1880626039,136736.38252188684,250.69363,119.38094374724184,257799.8724503131,121664.29431533,3198.75912,1440.455415968192,3312111.156415645,1473996.1329550631,1379.12985,595.7665939155135,1427335.497496053,608618.9149378539,2226.7848,915.9302360406484,2300733.9752637246,934654.2135886448,0.38164,100000,0,366989,3836.830494830056,0,0.0,0,0.0,18134,188.95126974667795,0,0.0,23633,242.8044203284927,2093771,0,75178,0,0,3229,0,0,36,0.3763761252077909,0,0.0,0,0.0,0,0.0,0.07218,0.1891311183314118,0.312274868384594,0.02254,0.3177336663599316,0.6822663336400684,25.32701005890284,4.516419721103063,0.3177821640050242,0.2102996590705185,0.2312937376637358,0.2406244392607213,11.172434654660265,5.6543343218559,24.09491031051121,13147.957587887198,63.00469302895903,13.594224154637493,20.29907543190903,14.264100554750378,14.847292887662128,0.5490759016687601,0.7414675767918089,0.7154150197628458,0.5903801396431342,0.1215510812826249,0.703626220362622,0.8994565217391305,0.8487229862475442,0.7228070175438597,0.1470588235294117,0.4955303213336555,0.6691542288557214,0.661648177496038,0.5527888446215139,0.1150608044901777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024420890501185,0.0046750770728541,0.0068422228087629,0.0093092269073244,0.0115265272902996,0.0139566630331801,0.0162774094849566,0.0184767177014922,0.0209079192324215,0.0229766136384589,0.0251179487179487,0.0270453494941194,0.0291094304676647,0.0309195473378269,0.0329654446153687,0.0350113256725587,0.0372431373768147,0.0392395074034847,0.0412391516993069,0.0433962067419479,0.0578283540758853,0.0716844001340482,0.0851535030175806,0.0978733255464006,0.1090078397855929,0.1242392489336254,0.1373521354089239,0.1505960561219597,0.1632711989476723,0.1742528340776365,0.1876393961922617,0.2003161233747253,0.2129424056418963,0.2251898374072696,0.2368609322546915,0.2489752055128404,0.2602998135931866,0.2710419150898823,0.2811953981256666,0.2899290455481804,0.2979882067291016,0.3058724518421545,0.3131727743736544,0.3206323712724134,0.3272647723681972,0.3333744632545284,0.3397231096911608,0.3457236758299151,0.3515337104894379,0.3564593301435406,0.3576394983056339,0.3587162171493281,0.3602998373523796,0.361359778303324,0.3623255466825882,0.361885126090502,0.3618711104744624,0.3623229087546646,0.3642736863809753,0.3656232602410071,0.3679145794885315,0.370402749905621,0.3715404205164902,0.3716673030704611,0.3712835387962291,0.37192440582138,0.3715047750150563,0.3732143990857723,0.3747953591002918,0.3764634882317441,0.379265818114739,0.3812382739212007,0.3815940002542265,0.3829162805066419,0.3850618458610846,0.3837981407702523,0.3834762275915822,0.3869691923397169,0.3863829787234042,0.3935130910511918,0.0,2.236986073284202,63.67728325760564,205.5032438935745,316.3499752297043,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,37 -100000,95819,41407,388.06499754745926,7298,74.90163746229871,5684,58.72530500213945,2309,23.721808827059352,77.39792083527668,79.70161356062998,63.37134666233783,65.07148197943634,77.11152907421216,79.41510489705979,63.26577764641759,64.96831083991681,0.2863917610645217,286.50866357018856,0.1055690159202384,103.1711395195316,80.43552,56.33577202865943,83945.27181456705,58793.9469506668,219.18477,132.3582201340217,228182.0098310356,137566.8397019607,257.09658,122.32503676588772,264787.1090284808,124895.45931357155,3264.5436,1476.857835759571,3375079.556246673,1509389.281624284,1380.64703,599.9847420011472,1427644.6007576785,612918.619481676,2279.1446,955.6059308015192,2344319.978292405,968841.8528689664,0.38182,100000,0,365616,3815.6941733894114,0,0.0,0,0.0,18330,190.68243250294827,0,0.0,23993,246.7986516244169,2097563,0,75175,0,0,3131,0,0,39,0.4070173973846523,0,0.0,0,0.0,0,0.0,0.07298,0.1911371850610235,0.3163880515209646,0.02309,0.3122975249449268,0.6877024750550732,25.350461564042018,4.598347928709025,0.3296973961998592,0.2053131597466573,0.2306474313863476,0.2343420126671358,11.16861403654221,5.5505576446201,24.732778331697432,13120.6191506578,64.13871510150653,13.54238418809418,21.143664908186505,14.5580599748194,14.894606030406456,0.5531315974665728,0.7566409597257926,0.7017075773745998,0.5957284515636918,0.1238738738738738,0.6885245901639344,0.9014492753623188,0.8407079646017699,0.7574750830564784,0.1540983606557377,0.508759635599159,0.6958637469586375,0.6575246132208158,0.5475247524752476,0.1148977604673807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024803596015226,0.0047219041635845,0.0066129114052436,0.0088746281084044,0.011019843851659,0.0131485213001974,0.0153451121843858,0.0174649324152002,0.019617058667266,0.022006916167052,0.0240661434747863,0.0263759938445755,0.0286950089382949,0.03092327323619,0.032931014934911,0.0351353583744605,0.0368711269281302,0.0389399058891814,0.0411833729660128,0.0432538195745389,0.0578110656763748,0.0714450069028992,0.0849515581092983,0.0979204777224079,0.1103463541117693,0.1255272588880784,0.1386458830390753,0.1517067407478366,0.1639317992436382,0.1756503083936712,0.18911758053572,0.2023689761479798,0.2146732335257727,0.2256265581944626,0.2369063592969798,0.248668460507812,0.2593096525957731,0.2689275955516074,0.2779907018936387,0.2873115966078806,0.2964903151199768,0.3042111291623324,0.312272275587943,0.3200617875275409,0.326135219400939,0.3319464276921562,0.338282529089023,0.3446562460287203,0.3505597618585388,0.3561835220308154,0.3572878439596187,0.3582099808958341,0.358899635370472,0.35963557082834,0.3603725379519325,0.3607595905188903,0.3617031376085821,0.3622764815027668,0.3637949314272033,0.3646871477392689,0.3664501839477438,0.3669348446417247,0.3682728476264526,0.3692826624690802,0.3705084745762712,0.3728,0.3732451093210587,0.3745590898979948,0.3770387404917742,0.3811845575893214,0.3836411366462487,0.3853280189593881,0.3863665430361939,0.386463725565943,0.3894092907665838,0.3921921921921922,0.3977994731132806,0.3960154502947753,0.391602634467618,0.3858508604206501,0.0,2.313561661000998,61.93072601155758,214.7857765226003,326.9098242803938,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,38 -100000,95557,40960,384.3569806502925,7335,75.5465324361376,5720,59.31538244189332,2320,23.86010444028172,77.19945181010942,79.66985644133564,63.224607941291474,65.05342635511465,76.9146527712229,79.3861767733578,63.11987309265825,64.95197457797786,0.2847990388865185,283.67966797783595,0.1047348486332211,101.45177713678775,80.69622,56.53149801188233,84448.25601473467,59159.97573373204,219.82751,132.43357353319132,229496.782025388,138040.64301676367,257.94169,122.3912059747106,266970.2376591982,125680.1551654156,3299.72308,1485.7597264503777,3422496.980859592,1524287.8222641042,1425.90302,616.0103221037889,1477680.5466894105,630131.2327760283,2290.3752,954.5896526152414,2358361.710811348,965736.6885778584,0.37854,100000,0,366801,3838.557091578848,0,0.0,0,0.0,18345,191.4145483847337,0,0.0,24157,249.8404093891604,2086219,0,74905,0,0,3307,0,0,35,0.3662735330745,0,0.0,0,0.0,0,0.0,0.07335,0.1937708036138849,0.316291751874574,0.0232,0.3202385582782315,0.6797614417217684,25.3899957102174,4.515286625131335,0.3216783216783216,0.2019230769230769,0.2367132867132867,0.2396853146853146,11.05491097593725,5.551681232725444,24.8450974078746,13097.865344916094,64.6679716661831,13.563703282537206,20.72800288713743,15.207200659023508,15.16906483748495,0.541083916083916,0.7575757575757576,0.6782608695652174,0.5819793205317577,0.1342086068563092,0.7148997134670487,0.92,0.8694690265486725,0.7468354430379747,0.1690647482014388,0.4849676225716929,0.6869565217391305,0.6159942363112392,0.5317919075144508,0.1253430924062214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022604940649359,0.0044033197378299,0.0065602404744495,0.008601756954612,0.0109948283585128,0.0132520540683805,0.01555340103077,0.0175454731248722,0.0197707736389684,0.0220129331106078,0.0240412252607374,0.0264673220088018,0.0286917745440314,0.030874130923645,0.0331827999214608,0.0355046735743786,0.0376250972258231,0.0396794878456885,0.0413741380387908,0.0433039629181108,0.057387338382359,0.0714645246534259,0.0848417954378219,0.0974995521743253,0.1094564171942544,0.1254293711038548,0.1394713047178341,0.1530605711358688,0.1653239629756599,0.1769526083169339,0.1904484188698807,0.2031692624952515,0.2154524326506563,0.2267585389670949,0.2374370749801289,0.2493694654622623,0.2594636341250476,0.2703447030407007,0.2799435446236498,0.2887931529668562,0.2969232197136691,0.3049517262414509,0.3121261748789519,0.3194784907474164,0.3262901358679095,0.3325418908056637,0.3379963048150522,0.3436825502241408,0.3483314049479336,0.3538506379088777,0.3547676038243607,0.3562203897843893,0.3573165903048815,0.3581325170107505,0.3587154592979836,0.3582305572235823,0.358217270194986,0.3592624413455819,0.3605301661072381,0.3622961442920401,0.3618887397690112,0.3632650621613006,0.3640980068554018,0.3666711809317443,0.3662420382165605,0.3689904480447517,0.3702475047597069,0.3725676919658445,0.3730071370237546,0.3740058350985172,0.3739841110400876,0.373069960600575,0.3764757876128543,0.3766950126407722,0.3790406182263688,0.3837695709334289,0.3825740144193895,0.3818953323903818,0.3841916827320297,0.3829296424452134,0.0,2.0704849391515348,61.94345776582685,219.1799516361864,329.3905870576034,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,39 -100000,95683,41139,385.3976150413344,7354,75.63517030193451,5735,59.37313838403896,2344,24.11086608906493,77.33990302576841,79.73098383633759,63.32261558699434,65.08919403139512,77.05960445656682,79.44994729444213,63.21957809743447,64.98862860292095,0.2802985692015909,281.03654189546035,0.1030374895598669,100.5654284741695,80.58006,56.4004180051401,84215.64959292664,58945.07697829301,219.24201,132.1367921976629,228529.97920215715,137498.2320480164,257.17172,122.41643589300492,265580.730119248,125472.23475973507,3305.43748,1481.019530882708,3424014.33901529,1517455.9757792137,1399.99125,602.5672590312188,1449647.7117147248,616424.80789531,2310.14686,957.8011679373058,2378337.6775393747,970700.9226665476,0.38057,100000,0,366273,3827.984072405756,0,0.0,0,0.0,18223,189.8247337562576,0,0.0,24070,248.3095220676609,2095978,0,75219,0,0,3167,0,0,46,0.480754156955781,0,0.0,0,0.0,0,0.0,0.07354,0.1932364610978269,0.3187381017133532,0.02344,0.3096007236077012,0.6903992763922987,25.42839709702681,4.577101144854256,0.3297297297297297,0.1998256320836966,0.233129904097646,0.2373147340889276,10.971025392918383,5.437126142854364,24.930787893233337,13126.7646909492,64.32635519841998,13.426043355859855,21.12394410820606,14.991899365091635,14.784468369262411,0.5396687009590235,0.7652705061082025,0.6641988365943945,0.5961106955871354,0.121234386480529,0.7029411764705882,0.926027397260274,0.8372641509433962,0.7292993630573248,0.1322957198443579,0.4889142857142857,0.6901408450704225,0.6141785957736878,0.555229716520039,0.118659420289855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0044802594901424,0.0069101277511136,0.0093446552634786,0.0115819122865887,0.0136098047598688,0.0159314225139642,0.0181779211235404,0.0205471050049067,0.0223955454564064,0.0244710079553842,0.026597273548493,0.0285358780823889,0.0303866834222615,0.0328004211004345,0.0348546259150502,0.0369871529216742,0.0392779663480002,0.0413831845702515,0.0437724126428154,0.0580400513961578,0.0713702416349093,0.0849307020028747,0.0977223712587449,0.1092625804409747,0.1251322415471203,0.1391906803038662,0.1513577382029528,0.1629069469366829,0.1749769456775826,0.1891135068767568,0.2028458583563274,0.2159651984774334,0.2271718331419824,0.2383326729185928,0.2488840151087185,0.2593914915931227,0.2699327137295497,0.2794740007034503,0.2885879900107682,0.2975218085475623,0.3058372220857748,0.3133786150423628,0.3200345050679318,0.3264533048419212,0.3334483225941577,0.339527027027027,0.3442207858306189,0.3506039085583951,0.3551701821351683,0.3567450953954021,0.357445987654321,0.3585984025288589,0.3599408935504433,0.3608694356712949,0.3613177307792586,0.361256046308778,0.3621988943003817,0.363107858559606,0.363503127792672,0.3643565099864844,0.3657207403590821,0.3666274723890312,0.3676985981308411,0.3685826904940391,0.3692501244987288,0.3705848623853211,0.3732496990432744,0.3751326119244642,0.378035650197392,0.3789141182933528,0.3799796802310037,0.3803486529318542,0.3778579100813257,0.3791182856603417,0.3809467032311911,0.3831891223733004,0.3815599917678535,0.3765831691528286,0.3866822429906542,0.0,2.1226993978576782,60.021909368530416,219.00428664855653,333.079625212051,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,40 -100000,95790,41227,387.3577617705397,7235,74.39189894561018,5670,58.67000730765215,2249,23.15481783067126,77.331780499572,79.67294960125466,63.32970022966426,65.06300892023933,77.06253944508148,79.40169191516175,63.23225466851626,64.96689806128981,0.2692410544905215,271.257686092909,0.0974455611479996,96.11085894951545,82.02062,57.43065981414737,85625.4515085082,59954.75499963187,221.19918,133.73585171787303,230410.3037895396,139102.93529373946,263.94229,125.01942309906973,272129.2723666353,127940.05191532534,3279.91972,1466.79652367333,3395922.6641611857,1503112.1449768536,1384.98009,594.5679876930661,1433040.9124125692,607889.9547897127,2224.7667,913.2669714689474,2292053.617287817,928430.9075517476,0.37951,100000,0,372821,3892.065977659463,0,0.0,0,0.0,18456,192.12861467794133,0,0.0,24623,253.6381668232592,2086289,0,74921,0,0,3273,0,0,34,0.3549431047082159,0,0.0,0,0.0,0,0.0,0.07235,0.1906405628310189,0.3108500345542502,0.02249,0.3188348490839594,0.6811651509160406,25.211989635697343,4.623289362943225,0.3349206349206349,0.2040564373897707,0.2216931216931217,0.2393298059964726,11.379658624953692,5.635757547422842,23.778929961203485,13046.997000746658,63.89498641266477,13.434764830928543,21.54479249935983,13.969221502286306,14.946207580090068,0.5492063492063493,0.7882454624027658,0.6987888362295945,0.5767700875099443,0.1105379513633014,0.7138643067846607,0.927536231884058,0.8862144420131292,0.7328519855595668,0.1444043321299639,0.4974501622624014,0.729064039408867,0.6393897364771152,0.5326530612244897,0.1018518518518518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271207900734,0.0043996593812091,0.0066567221731762,0.0087772766061197,0.0107297228578693,0.0129023717145795,0.0152933259925368,0.0175180693372534,0.0196990452045552,0.0216923958887842,0.023691143756343,0.0258540141488608,0.0279682888959723,0.0302430984754841,0.0323033417961896,0.0341248591483774,0.0359883594486272,0.0380111803690144,0.0401205382657037,0.0421269639640577,0.0567648225055825,0.0707068594021295,0.0838364779874213,0.0968592714014017,0.1094416757104173,0.1253856883215689,0.138706942236354,0.1517954934549824,0.1638333066538605,0.1749247399376493,0.1890559579803894,0.2021522820679212,0.2141723208072373,0.2257810535064026,0.2368664304421506,0.2480696584652538,0.2588501746047684,0.2688492509784516,0.278131201451494,0.2864796794504865,0.2951765440377367,0.3027922905197704,0.3106173540616644,0.3179611941371748,0.3251454742033844,0.3317630809830931,0.3377345726956129,0.3431966241283035,0.349312402698495,0.354699725100444,0.3555378829745649,0.3567073590332925,0.3568609764347728,0.3572483279770694,0.3584040494268274,0.3579482610298636,0.3574662790143463,0.3574512259425257,0.3591733040373523,0.3614086626303156,0.3627622542101797,0.3641068348105407,0.3653595046543954,0.3653789972808378,0.3661194246694755,0.3667060522515426,0.3685539644732689,0.3709070201524882,0.3726057356520512,0.3748049765971916,0.37806392274086,0.3801395598497047,0.3803528058289658,0.38320351661911,0.3882330540746382,0.3866522885214474,0.3915065096094234,0.3968673718470301,0.4013377926421405,0.4086576648133439,0.0,2.0266168751450637,60.10394584386268,218.57694168222216,327.6072843350857,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,41 -100000,95695,41327,388.3379486911542,7221,74.39260149433095,5613,58.15350854276608,2243,23.104655415643453,77.34192318165195,79.7184011830031,63.32298576779221,65.0753363264265,77.06017140646,79.43537058282502,63.22009414525069,64.97462715526726,0.2817517751919496,283.0306001780798,0.1028916225415201,100.70917115923804,81.33048,56.95558544120824,84989.26798683318,59517.82793375646,219.98764,133.44931297726845,229285.4694602644,138854.0707218438,260.89384,123.9476625299974,270132.9118553738,127468.55233373884,3208.68028,1438.6947689649396,3326747.353571242,1477136.0770833774,1358.05152,588.500228208951,1405442.938502534,601290.9185748511,2203.50324,912.8350019800708,2272261.079471237,926713.2306189734,0.38046,100000,0,369684,3863.148544856053,0,0.0,0,0.0,18407,191.78640472333976,0,0.0,24335,251.81043941689745,2087018,0,74884,0,0,3176,0,0,39,0.386645070275354,0,0.0,1,0.0104498667641987,0,0.0,0.07221,0.1897965620564579,0.3106217975349674,0.02243,0.3198369922439858,0.6801630077560142,25.281506086235755,4.52688511468988,0.3254943880277926,0.2168181008373418,0.2294673080349189,0.2282202030999465,11.06054420218212,5.540723414516856,23.75943170711648,13115.065986047694,63.1140677404109,14.09811591965824,20.60746030806328,14.282453585873052,14.126037926816336,0.5530019597363264,0.76253081347576,0.6956759715380405,0.5822981366459627,0.1209992193598751,0.6921933085501859,0.8983957219251337,0.8387096774193549,0.7116104868913857,0.1518518518518518,0.5091377694470478,0.7022538552787663,0.6511127063890882,0.5484818805093046,0.1127596439169139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376801028725,0.0046522942196004,0.0067459955161954,0.0091413248826863,0.0111966481242309,0.01322514304331,0.0157616785270069,0.0178693596642602,0.0200008180293672,0.0221266574514923,0.0243107178377713,0.0263090335897146,0.0284700437130367,0.0303957631397277,0.0325154577453884,0.0344966651155576,0.0365862501165332,0.0385912832276345,0.0406085563944177,0.0426704734911637,0.0580548795136676,0.0726865327832806,0.0862555759643138,0.0993233929266675,0.1114734031888737,0.126509403011927,0.1398492248885113,0.1524015467047306,0.1642845689240472,0.1757785244265058,0.1899463026460503,0.202662161137646,0.215000272138464,0.2271458746019064,0.2383416266678409,0.2492797305083994,0.2598394426269776,0.2698625356045168,0.2793265030577396,0.2880969563673436,0.2962512875710334,0.3046846657070299,0.3124008241953437,0.3200830044740851,0.3269258826962358,0.3325851288186179,0.3383797874473631,0.3443857079166932,0.3501589567248426,0.3548404163855931,0.3562802258665874,0.3572780133419886,0.3583929429726596,0.3592209108681485,0.3606971833080515,0.3609658873131468,0.3609737542791936,0.3617385577872901,0.3621851477169459,0.3633988331722682,0.3646817865799808,0.3658812553347758,0.3672121492574986,0.3664808487682071,0.3668951865977888,0.3683302397322945,0.3674390696877053,0.369685883688659,0.3717380600689315,0.3719031307257229,0.3734939759036144,0.374993337952353,0.3768493237665883,0.3754485075196579,0.3729770417764396,0.3730692135361396,0.3764991650220131,0.3788368336025848,0.3876871880199667,0.3892897835169008,0.0,1.901252913948118,59.67775272556914,216.210795368029,322.27806255288937,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,42 -100000,95738,40893,383.4840920010863,7140,73.38778750339468,5567,57.5633499759761,2293,23.51208506549124,77.32392886815877,79.68810434762305,63.31606620966248,65.06509014468003,77.0362009533138,79.40199189060448,63.2089364411286,64.96188223638745,0.2877279148449787,286.1124570185751,0.1071297685338805,103.20790829257476,80.67774,56.49073594670514,84269.29745764483,59005.55259845113,217.23239,131.50279994659542,226334.2350999603,136789.5210339624,251.664,119.71377081513135,260004.87789592423,122777.79491033083,3191.57432,1438.5240627129594,3300648.7706031045,1469629.4920664334,1320.58338,567.9041840793036,1366465.342915039,580365.4957883178,2256.0526,947.8170256747286,2315428.607240594,953882.3927643816,0.3773,100000,0,366717,3830.422611711128,0,0.0,0,0.0,18066,188.0966805239299,0,0.0,23533,242.9442854456956,2093132,0,75207,0,0,3212,0,0,44,0.4491424512732666,0,0.0,0,0.0,0,0.0,0.0714,0.1892393320964749,0.3211484593837535,0.02293,0.3181213411389036,0.6818786588610963,25.419560463493436,4.577012722878617,0.3368061792707023,0.1979522184300341,0.2311837614514101,0.2340578408478534,11.078930073593678,5.407779835299543,24.487828509057863,12930.55761681584,62.71002383276224,12.77020589259651,21.252023898747307,14.359712203775034,14.3280818376434,0.5482306448715646,0.7667876588021778,0.7114666666666667,0.5726495726495726,0.1043745203376822,0.698295033358043,0.9118541033434652,0.8701298701298701,0.7033333333333334,0.1124031007751938,0.5002370791844476,0.705045278137128,0.659589525831564,0.5329280648429585,0.1023923444976076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359172262906,0.0043293554634032,0.0065358150486126,0.008656952996403,0.0106603735199576,0.0131771894093686,0.0151601655689904,0.0172404993518225,0.0192415830854011,0.0217469207220305,0.0239706364829396,0.0261096337669538,0.0282621211498128,0.0303757570763462,0.0325673067993024,0.0345048583832954,0.036544059000839,0.0388296105621522,0.0407129709549609,0.0427176778253576,0.0572266828152896,0.0713448701584046,0.084219467690178,0.0964499032556574,0.1088226609297224,0.1239500687612398,0.1376423273236627,0.1510414448183328,0.1626428800341844,0.1736552626218224,0.1875013456776832,0.2016763099551181,0.2141956247553603,0.2249838711441099,0.2351666483335166,0.2462312114398378,0.2565771115402216,0.2664242615273775,0.2759251266441017,0.2837180487357166,0.2919942484751501,0.3002767095019229,0.3070387773506099,0.3134850086488564,0.3196920978271461,0.3256713025863985,0.332559656738514,0.3382071499655515,0.3451190692601345,0.349962277137298,0.3515809662736199,0.3526611378658461,0.3532562609531347,0.3542473422384661,0.3553942032442748,0.3559551044849453,0.3560957034968585,0.3575330744421773,0.3582749344619022,0.3593797561281312,0.3590760440551817,0.3596578278818673,0.3597098096940385,0.3600880344951491,0.3613817109429766,0.3629049166579306,0.3634022093755366,0.3654376565323526,0.3675735111552513,0.3698191710673708,0.3725571153316818,0.3742521367521367,0.374176798378926,0.3720930232558139,0.3764247720364742,0.3792276325257855,0.3773498395231545,0.3767246550689862,0.374630475678581,0.3807706982067913,0.0,2.2767601953972147,59.402627448736894,211.0118513809786,323.2594942615828,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,43 -100000,95797,41195,386.4212866791236,7373,75.67042809273777,5701,58.95800494796288,2269,23.33058446506676,77.4066300966336,79.74576880562711,63.35719594835807,65.08769470434407,77.12316525101099,79.46210495388283,63.25190639731259,64.98495346983364,0.2834648456226176,283.6638517442793,0.1052895510454803,102.74123451043238,79.90004,56.04117692117797,83405.57637504305,58499.92893428601,219.16386,132.138001998465,228264.51767800664,137420.48498226976,256.16766,121.82323693333528,264159.4204411412,124601.89174508586,3261.60532,1467.862913400127,3376383.97862146,1503942.8723239014,1381.0972,602.7999510204893,1425248.765618965,612804.4834603268,2239.01774,939.475019869972,2305809.3677255027,952648.5863154776,0.38047,100000,0,363182,3791.162562501957,0,0.0,0,0.0,18248,189.93287890017436,0,0.0,23965,246.8970844598474,2099801,0,75301,0,0,3150,0,0,46,0.4801820516300093,0,0.0,0,0.0,0,0.0,0.07373,0.1937866323231792,0.3077444730774447,0.02269,0.3218170185540627,0.6781829814459372,25.45134490721971,4.5794793675924845,0.3264339589545694,0.2120680582353973,0.2271531310296439,0.2343448517803894,11.085054476423712,5.513841393457573,24.07953734157641,13080.708594147438,63.67999643317532,13.927569263669218,20.73112101093892,14.352591611307451,14.668714547259729,0.548149447465357,0.76095947063689,0.6899516389038152,0.5922779922779923,0.1152694610778443,0.6988847583643123,0.935754189944134,0.8513189448441247,0.7167832167832168,0.1584507042253521,0.5016069788797062,0.6874265569917744,0.6433518005540166,0.5569871159563925,0.1036121673003802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088475489898,0.0044614791831437,0.0065150546473041,0.0086260325330461,0.0108420378149123,0.0130038084764057,0.0151403927326114,0.0174756290511917,0.0197473322703299,0.02183879814974,0.0237153340029106,0.0260120055410189,0.0281098081133025,0.0303170681490632,0.0323471807030203,0.0342303085374416,0.0363734171977158,0.0383869797335821,0.040538153862137,0.0427884315072771,0.0570841289218601,0.0707339008219521,0.0837779198591298,0.0969616714485396,0.1088117841676588,0.1242404708816349,0.1379222623830067,0.1508910343654304,0.163479597063343,0.1752405030745827,0.1895317930893477,0.2026430765237704,0.2152491712406934,0.2266461309913925,0.2364155815614526,0.2474158347905,0.2580350070839701,0.2684673946045633,0.2780046740634855,0.2864618520342146,0.2951356353750939,0.3036493107117383,0.3112431498337022,0.3183572216097023,0.3254788061442737,0.3320259986926653,0.3384370575484582,0.3446892511462048,0.35025999455373,0.3559532621338691,0.3571100793607947,0.357731532524807,0.3587586966032091,0.3604528280035323,0.360885477104347,0.3604695713475656,0.3599101095144648,0.3613483956649341,0.3622998296422487,0.3636428367986328,0.3658002172366006,0.3676389327439217,0.3683043651042647,0.3696968342977145,0.3697238895558223,0.3707075962539022,0.3722372351016925,0.3752235153872698,0.3763237253664352,0.3783376911496712,0.3777110898922384,0.3771795007684562,0.3765719315895372,0.3781410838631547,0.38339074574062,0.3846784584748741,0.3869978534191965,0.3890559230306675,0.3944751381215469,0.3914053426248548,0.0,2.199083917289794,59.12231261415176,217.23796257350128,329.97618399198353,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,44 -100000,95689,41205,386.888775094316,7202,74.16735465936524,5624,58.19895703790405,2262,23.241960935948757,77.29491858535671,79.69841067663151,63.29396199958445,65.07437685608382,77.01339009525255,79.41599138352103,63.19267773500084,64.97527905783184,0.281528490104165,282.419293110479,0.1012842645836116,99.09779825197518,80.45774,56.37495853349402,84082.53822278422,58914.77446048556,220.13952,133.1561305817908,229484.5802547837,138582.3977487389,259.5895,123.24938653145126,267703.8740085067,125966.10656434017,3250.87048,1455.3059465616348,3367522.996373669,1491064.329820183,1377.80683,593.1384936605065,1426285.9785346277,606266.9198341859,2233.20802,919.2532173022134,2298149.170751079,931377.6818358792,0.38019,100000,0,365717,3821.9335555811017,0,0.0,0,0.0,18252,190.1263468110232,0,0.0,24345,250.84387965178863,2093873,0,75165,0,0,3285,0,0,39,0.4075703581393891,0,0.0,0,0.0,0,0.0,0.07202,0.1894315999894789,0.3140794223826715,0.02262,0.3242777630532732,0.6757222369467267,25.37960358955519,4.600382283965,0.3220128022759602,0.1980796586059744,0.2459103840682788,0.2339971550497866,11.04684532126522,5.361097935027784,24.058748117893217,13101.55195573994,63.461424391779,12.883928560775134,20.52725188924819,15.537403136824476,14.512840804931216,0.5567211948790897,0.7863554757630161,0.7023743787962452,0.6095444685466378,0.1063829787234042,0.723293768545994,0.9181818181818182,0.8864628820960698,0.7639344262295082,0.1294117647058823,0.5042095416276894,0.7308673469387755,0.6400591278640059,0.5658627087198516,0.1008482563619227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023214086591584,0.004343105320304,0.0064896155994515,0.0087641706064765,0.0110752567769781,0.0132500280289054,0.0157047226417404,0.0179399685335403,0.0200004092155338,0.0224856071626134,0.0248756218905472,0.02703868833597,0.0290391957110075,0.0308979789547454,0.0328144676810008,0.0350265775920908,0.0371491041729272,0.0390884551495016,0.0409350033288948,0.0429843030164057,0.0576591633154018,0.0724373671702419,0.0855982538250047,0.0982081794556148,0.1104980535716169,0.1257776461128274,0.1389755673013649,0.1517422734192847,0.1640382930529735,0.1756160885751376,0.1900945733428122,0.202801817395067,0.2154893135911986,0.2271410930311342,0.2372260767260052,0.2491585473870682,0.259820820921333,0.2703660773567707,0.279873285493687,0.2888310556727506,0.2974306126466195,0.3054700394479626,0.3137596210775606,0.3200441506400643,0.3256534954407294,0.3317694700972887,0.3372942754358916,0.3431613535922157,0.3493523316062176,0.3539064769096718,0.3552011207802354,0.3560378760769633,0.3570038636171352,0.357991290383252,0.3592235900031258,0.3582465517771019,0.3584701711996693,0.3594970501961043,0.3608691178488132,0.3615162441920959,0.3621713316369805,0.3637231693489029,0.3639430680021085,0.3648934732669699,0.3662012868762899,0.3676025576928137,0.3686681065514758,0.36831236497649,0.3705213169365985,0.371349486521181,0.3739784846945842,0.3761630721239176,0.3788332802040166,0.3857958050586058,0.386200973375322,0.3886815171583384,0.3910967344423906,0.3987679671457905,0.3997237569060773,0.4036697247706422,0.0,2.235191671153754,59.66538095993946,214.9940799509928,327.4170480372041,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,45 -100000,95718,41016,385.4760860026327,7227,74.41651518000793,5620,58.108192816398166,2337,24.070707703880142,77.3593554540744,79.73035036573835,63.33143217950936,65.08401135479552,77.07720728791132,79.44643024369671,63.22928234514484,64.98338537646097,0.2821481661630827,283.92012204163564,0.1021498343645248,100.62597833454844,80.90874,56.68772327308483,84528.2392026578,59223.68130663493,221.01691,133.69975076982095,230311.78043837103,139088.43767088838,259.45261,123.71558724950532,266792.01404124615,126179.5042257419,3260.70872,1463.2227972237267,3373974.174136526,1496076.6806909142,1389.93683,597.4268466016536,1436386.708873984,608423.333752955,2315.499,950.3918036556086,2387077.6447481145,966072.9934621726,0.37823,100000,0,367767,3842.1926910299,0,0.0,0,0.0,18327,190.84184792828933,0,0.0,24262,249.2216719948181,2092303,0,75025,0,0,3182,0,0,44,0.4596836540671556,0,0.0,0,0.0,0,0.0,0.07227,0.1910742141025302,0.3233706932337069,0.02337,0.3213020081375509,0.6786979918624492,25.11053938851655,4.604450130408838,0.3240213523131672,0.1983985765124555,0.2282918149466192,0.249288256227758,11.018021086982824,5.502058308335559,24.783931709655448,12995.97773234864,63.23613399867865,13.137681123006368,20.50903273230955,14.393464509438212,15.195955633924514,0.5403914590747331,0.7739910313901345,0.6908292147171884,0.5853468433359315,0.1177730192719486,0.7141833810888252,0.921832884097035,0.8685344827586207,0.7431506849315068,0.1301115241635687,0.4829545454545454,0.7002688172043011,0.630066322770818,0.5388496468213926,0.1148409893992932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0047441888754853,0.0069408505586167,0.0091304259511283,0.0112971945130817,0.0136215093609699,0.0158213976247515,0.017842925096462,0.0198932755412892,0.0221439613427655,0.0239860534276777,0.0257808728520218,0.027881805835631,0.0301359983515351,0.0323396175793785,0.0347533052853554,0.0366390243397417,0.038729217014303,0.0404391126265671,0.0422590960699144,0.057243100441697,0.0717754427094235,0.0846707365682757,0.0976656151419558,0.109569251858491,0.1252869307663828,0.1377773533250565,0.150301817291416,0.1615481609711269,0.1730243038789634,0.187213135949318,0.1997315697756226,0.2116346865074185,0.2238355235083649,0.2342459417193454,0.2453236053976737,0.2558518717055302,0.2661176920567423,0.2756229857927466,0.2850219406285446,0.2931531260486698,0.3012104555289164,0.3088748300124165,0.3157611168314935,0.3225986574574234,0.3290963061498478,0.3350147068026785,0.3417283573736294,0.3477190891899593,0.3527843758247558,0.3544354892964304,0.3549874093542306,0.3564947032258972,0.3576969662014073,0.3581192395030945,0.3585950527008215,0.3588219485590527,0.3598779907837124,0.3607173356105892,0.3619781906444647,0.3627846722865779,0.3638723741577487,0.3640919811320754,0.3647461597369251,0.3657893463641202,0.3678206136900078,0.3692373853211009,0.3709401167216442,0.3729341402130445,0.3760338834059216,0.3761370945511348,0.3801564341583628,0.3831488708335999,0.3811676371437327,0.3829425113464448,0.3848539057841383,0.3875288683602771,0.3866450172518774,0.3834254143646409,0.3735032831208961,0.0,2.3913722408395333,61.54349467009922,210.08225060266184,321.9892820359076,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,46 -100000,95875,41403,387.22294654498046,7472,76.63102998696219,5747,59.222946544980445,2332,23.864406779661017,77.4394230829848,79.72172241077021,63.39129033748679,65.07843379441388,77.15469224218035,79.43776102586229,63.28598817120532,64.97645711056242,0.2847308408044569,283.96138490792566,0.1053021662814686,101.9766838514613,81.21674,56.88470405535306,84711.07170795307,59332.15546842562,220.31416,133.36750218757047,228935.9478487614,138248.42992184663,261.71509,124.57755860944413,268603.01434159064,126580.30011000574,3311.38868,1490.3529968952196,3415034.7431551497,1515649.4152753262,1422.20034,616.4693314881117,1465568.4172099088,625171.0158937275,2302.64382,961.4695379074768,2358947.5462842244,966042.2385964209,0.3816,100000,0,369167,3850.503259452412,0,0.0,0,0.0,18345,190.59191655801823,0,0.0,24465,250.79530638852677,2094293,0,75164,0,0,3187,0,0,48,0.4797913950456323,0,0.0,0,0.0,0,0.0,0.07472,0.1958071278825995,0.3120985010706638,0.02332,0.3177368086458995,0.6822631913541004,25.373976375896145,4.6059531872891855,0.3316512963285192,0.198886375500261,0.2281190186184096,0.2413433095528101,11.065004528641252,5.490302326991433,24.76074969022092,13118.20289199984,64.64725454925318,13.433677606743124,21.448532820879343,14.720417255394672,15.044626866236024,0.5482860622933704,0.7681539807524059,0.7030430220356768,0.5873379099923722,0.1175198269646719,0.7110320284697509,0.907103825136612,0.8550106609808102,0.7266881028938906,0.1544401544401544,0.4956241363426992,0.7027027027027027,0.6534446764091858,0.544,0.1090425531914893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026827292974286,0.0049556123069439,0.0074356607391026,0.0097269745859943,0.0120849299196032,0.014326122789524,0.0163585434173669,0.0184618523051815,0.0206571043275714,0.0227909736287567,0.0246828828459599,0.0268922565486389,0.0291733031906694,0.0315408054022893,0.0335474293019371,0.0356243030027673,0.0377723520039727,0.0397173262043167,0.0419737962251614,0.0437663850859306,0.0573328746703359,0.0716173996635424,0.0850070158537351,0.0975684018226487,0.109671238933395,0.1252098444775268,0.1383145496144394,0.1511200374054238,0.1629724398955168,0.1742159905811837,0.187771470347912,0.2008299024216293,0.2139116451900302,0.2254158379051824,0.2369300811577627,0.2482177647892313,0.2587452344324794,0.2687873612297182,0.27819523307606,0.2876275218445491,0.295977907957526,0.3041588785046729,0.3119626278753474,0.3194254773712834,0.3261833331308984,0.3326474031174912,0.338760339886621,0.3445860034584477,0.3495367974329779,0.3544981216634811,0.3557706546761621,0.3564985424344095,0.3581526330611095,0.3591500433651344,0.3604017174013162,0.360634142605499,0.3613262994471112,0.3622962391450662,0.3635338153104651,0.3654069300390953,0.3672654316357909,0.3684356271139506,0.3704922844682992,0.3707121946859147,0.3717523891850358,0.3727464843851913,0.3725495774888326,0.3743018512707876,0.3763952552573568,0.3772485933909184,0.3791096357600836,0.3808865002926622,0.3835184250378596,0.3840208157955154,0.3828674652975851,0.3815805252428348,0.3801872074882995,0.3809130344970047,0.3867898124825077,0.3912045889101338,0.0,2.772992853336549,61.322249515952045,221.0567998474469,325.8581421973604,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,47 -100000,95742,41375,388.9202230995801,7304,75.07676881619352,5661,58.605418729502205,2257,23.239539595997577,77.34647984393533,79.69951451790844,63.33814763576003,65.07563931689434,77.07806361479541,79.42900797856343,63.2403750483717,64.97926856374218,0.2684162291399161,270.506539345007,0.0977725873883272,96.37075315215782,79.88882,56.00082467307367,83441.77059179879,58491.3879729624,220.21202,133.02354489243777,229499.09130789,138433.0230123015,258.61049,122.70020779177456,266688.78861941467,125556.96790033492,3268.059,1460.51482285487,3385289.423659418,1497513.9629908071,1362.64282,584.8489966419498,1412263.2178145433,599940.6707609739,2226.3927,916.8643245838562,2294728.917298573,931504.3687938928,0.38229,100000,0,363131,3792.807754172672,0,0.0,0,0.0,18309,190.7000062668421,0,0.0,24223,249.5665434187713,2097727,0,75260,0,0,3233,0,0,41,0.42823421278018,0,0.0,1,0.0104447368970775,0,0.0,0.07304,0.1910591435820973,0.3090087623220153,0.02257,0.3168638668573657,0.6831361331426342,25.45584088726697,4.605650990627058,0.3398692810457516,0.1953718424306659,0.2298180533474651,0.2349408231761172,11.204141386767796,5.656507555768579,23.840642289378923,13136.302217883596,63.51643664005807,12.976100259234414,21.64581866988093,14.36534524428824,14.529172466654488,0.5403638933050697,0.7549728752260397,0.682952182952183,0.5757109915449654,0.1210526315789473,0.706408345752608,0.9005847953216374,0.8706140350877193,0.7403508771929824,0.1235521235521235,0.4887705487381338,0.6897905759162304,0.6246594005449592,0.5295275590551181,0.1204481792717086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0044805319871463,0.0066063871890888,0.0090408565449706,0.0114507698252893,0.0137440951294999,0.0159836901121304,0.0184733463293154,0.0204536394394414,0.0221862746101788,0.0242929919330866,0.0261634471291031,0.0285402915715666,0.0302399835204449,0.0323658987030942,0.0344189604026915,0.0364442051643095,0.0384172467812717,0.0403326403326403,0.0424235480376635,0.0569817821161977,0.0717350804847926,0.0852829476069577,0.0984321931420279,0.1107467816588822,0.1261960394574078,0.1393491312557014,0.1519501942212525,0.1643803443895252,0.1763085694688558,0.1904700385418685,0.2040103394944895,0.2166456549145763,0.2292855113325902,0.2395844783994723,0.2510405596882749,0.2612593525941949,0.271107912374612,0.2805976583772009,0.2892009208250776,0.2979963907269446,0.3058807020826268,0.3136488997786537,0.3210881580682676,0.3272879667646559,0.3333990220590952,0.3386103671814381,0.3446493149289462,0.3502651952329698,0.3554941933438148,0.3573835908220766,0.3579398313956692,0.3587758268105211,0.359782309774349,0.3610664523043944,0.3607923161900085,0.3608448338694088,0.3617007294473287,0.3623538274521889,0.3625778063962224,0.3634247526796944,0.3645439239378033,0.3652995915617499,0.3650258485052821,0.365717462773158,0.367209668943773,0.3682425635867222,0.3700237154150197,0.3703847511471937,0.3723544182709554,0.3721697680814007,0.3756752420174359,0.3749289189359954,0.3761806035475696,0.3783063748810656,0.3819561551433389,0.3826262000619387,0.3824561403508772,0.3867497168742921,0.3856235107227959,0.0,2.0675310742483783,59.332985001592014,214.8550854587645,330.68588101115444,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,48 -100000,95739,41271,387.00007311544925,7244,74.44197244592068,5680,58.73259591180187,2335,23.97142230439006,77.41222784566315,79.77045315166511,63.350809200748486,65.0905787954518,77.12239330672475,79.47973227303139,63.24569060367633,64.9883735993851,0.2898345389384076,290.7208786337208,0.1051185970721562,102.20519606670564,80.76992,56.57973595734559,84364.69986108065,59097.89736402677,220.13967,132.64691209196576,229338.07539247329,137951.3281859699,255.49418,121.28088692670732,263547.0393465568,124062.31627456378,3274.48372,1466.194323781187,3388479.637347372,1499709.7565059038,1375.23842,593.9982860602875,1419986.7034332927,603992.5080425692,2311.12104,954.5979598497534,2375785.8552940805,964276.791864242,0.38028,100000,0,367136,3834.759084594575,0,0.0,0,0.0,18304,190.5806411180397,0,0.0,23958,246.9004272031252,2094602,0,75078,0,0,3138,0,0,40,0.4178025673967766,0,0.0,0,0.0,0,0.0,0.07244,0.1904912169980014,0.3223357261181667,0.02335,0.3118336185336317,0.6881663814663683,25.487593378785967,4.57818358054397,0.3163732394366197,0.2051056338028169,0.2376760563380281,0.2408450704225352,11.022118331475316,5.442019467221559,24.72521815207703,13105.515726224046,63.73293202715369,13.494535181998186,20.12602999897493,15.003825993667515,15.10854085251305,0.5369718309859155,0.7725321888412017,0.6789092932665554,0.5762962962962963,0.1111111111111111,0.7048940832724616,0.9423631123919308,0.852803738317757,0.7295597484276729,0.1485507246376811,0.4836464857341684,0.7004889975550123,0.6245434623813002,0.5290697674418605,0.1016483516483516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394774154344,0.0045304819338164,0.0069390902081727,0.0092412056219026,0.0113970251832572,0.0135898610474881,0.015726603746662,0.0176322932185057,0.0198671435871231,0.0222008413596863,0.0243607481424545,0.0266799433346336,0.0287858538089853,0.0309156256758287,0.0330812171741665,0.0353203849374114,0.0372571759930414,0.039156689008321,0.0410995934748027,0.0432119343278606,0.0577364794320317,0.0723292487678285,0.0856972011245856,0.0980474667564383,0.1100687995947999,0.1252817728672572,0.1391757501140959,0.1525634882606612,0.1645899677274573,0.1764630128459664,0.1909895535743162,0.2044002685203231,0.2170543479444003,0.228878597781938,0.2391967659143231,0.2501663561352142,0.2603846540683705,0.2703981080015766,0.2797788022619399,0.2887752645396494,0.296536069579719,0.3040134836195091,0.3110945414950528,0.3178942828389323,0.3252723761402145,0.3319737279885645,0.3385954817242501,0.3436185489712666,0.3483459803249867,0.3534097941877461,0.3551541199382177,0.3562172253795678,0.3575956929391754,0.3583738336626238,0.3590384985420582,0.3586488878039849,0.3587037124690365,0.3599293390254673,0.361620599805855,0.3624227969314561,0.3624768911878396,0.3628179113886645,0.3639904510616911,0.36417283233118,0.3647968400009634,0.365133209821778,0.3659726183685111,0.3674560493128282,0.3708367038300566,0.3728174603174603,0.3738496583143508,0.3768046454637472,0.378868258178603,0.3848973047262732,0.3856834599868655,0.3824649060195099,0.3857448761089018,0.3857056084227576,0.3871412803532009,0.3861271676300578,0.0,2.305591146131509,60.46644779288145,215.76035102483783,326.3069668242608,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,49 -100000,95734,41660,391.1358555998914,7282,74.79056552530972,5636,58.31783901226315,2303,23.66975160340109,77.32373385663094,79.69395025171559,63.321321634088775,65.07515447655881,77.04405089313066,79.41414070953603,63.21939859756228,64.97561888027633,0.279682963500278,279.80954217956366,0.1019230365265002,99.53559628247888,81.58876,57.14102115815857,85224.43437023419,59687.28054626212,221.00746,133.45732265874744,230281.61363778805,138830.17177325737,257.02394,122.34168082171364,265419.0778615748,125330.62417953764,3237.973,1450.014834896455,3352004.052896567,1484374.0173780464,1372.61654,593.741066029335,1419005.4212714396,605454.4305168289,2271.20684,937.282188576182,2336932.3542315164,948939.488543414,0.38516,100000,0,370858,3873.837925919736,0,0.0,0,0.0,18408,191.687383792592,0,0.0,24059,248.2399147638248,2089403,0,75002,0,0,3299,0,0,47,0.490943656381223,0,0.0,1,0.0104456097102387,0,0.0,0.07282,0.1890642849724789,0.3162592694314748,0.02303,0.3167213114754098,0.6832786885245902,25.43095622944531,4.605979251828852,0.3333924769339957,0.1965933286018452,0.2336763662171753,0.2363378282469836,11.1125416673682,5.527828848837296,24.45320570680709,13238.7332904027,63.28811431960391,12.976370284757454,21.10118658701977,14.741356096917093,14.469201350909596,0.5361958836053939,0.7644404332129964,0.6838744012772752,0.5649202733485194,0.1096096096096096,0.717741935483871,0.923512747875354,0.8772727272727273,0.7278688524590164,0.169172932330827,0.4782303370786517,0.6900662251655629,0.6247394023627519,0.5158102766798419,0.0947467166979362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0047359720912308,0.006973203410475,0.009155945775664,0.011506999837213,0.0135786246167323,0.0157773426345204,0.0177810913770388,0.019878723426012,0.0223360131087101,0.0244792895160546,0.0266919995891958,0.0289694051807501,0.0312026627371371,0.0332875736713355,0.035448089069914,0.0371490414988038,0.0392169068442839,0.0412871698897899,0.0432404271945819,0.0576443196174446,0.0720468032109179,0.0853264518294729,0.0983391010739568,0.1107349994727407,0.126122125297383,0.1400564384375464,0.1535244985902005,0.1657927057190153,0.1768370487127523,0.1902782563749138,0.204091568037735,0.217040017398869,0.2285261316422479,0.2401813021188585,0.2514728682170543,0.2614964317573595,0.2709929667662854,0.2804141012121418,0.2901656978074793,0.2991228779771879,0.3072446833372283,0.3151497954647561,0.323418782942022,0.3299897993879633,0.3364967462039046,0.3430621290661859,0.3485963929080904,0.3540342868999144,0.3590644356106129,0.3605220228384992,0.3612919240953222,0.3623335733547941,0.3635467551857596,0.3642379171075575,0.3648748272154815,0.3642058520339386,0.36514304505097,0.3662231950477102,0.3663148479427549,0.368088586414995,0.3694348464990666,0.3703961523857739,0.3714852198990627,0.372960259922896,0.3749309046879524,0.3751259826647853,0.376503149456003,0.3780635078496839,0.3798671230118784,0.3816112165101106,0.3834423836046071,0.3846548298186014,0.3867069486404834,0.3886674259681093,0.3915604712671315,0.3979387786494385,0.390462604442633,0.3977304179352339,0.3982886036561649,0.0,2.067061075213668,60.29976132694964,210.5667173333852,329.1533788554554,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,50 -100000,95773,41274,387.6144633665021,7300,74.95849560940975,5708,58.95189667233981,2335,23.99423637141992,77.38153749659537,79.72555142685927,63.350937847410606,65.08417766267056,77.09564867896138,79.43838908989004,63.24639288294829,64.98175540368688,0.2858888176339889,287.16233696923155,0.1045449644623133,102.42225898367964,81.2658,56.90400802729339,84852.51584475792,59415.5012657987,220.72119,133.3054247002172,229807.56580664695,138533.6521777716,259.1337,123.05382773004212,266772.1174026083,125558.92034469974,3284.02252,1476.668508400278,3393595.0215614,1506757.9922636724,1401.9196,604.1853771358775,1446141.7309680183,613322.9257434779,2305.89328,957.082223050824,2371558.706524804,967727.2219913604,0.38064,100000,0,369390,3856.932538398087,0,0.0,0,0.0,18411,191.55711943867271,0,0.0,24284,249.6945903333925,2092017,0,75110,0,0,3194,0,0,43,0.4489783133033319,0,0.0,0,0.0,0,0.0,0.073,0.1917822614543926,0.3198630136986301,0.02335,0.3097506852891267,0.6902493147108733,25.28662527226165,4.5762674661068505,0.3181499649614576,0.2105816398037841,0.2293272599859845,0.2419411352487736,10.85246062753336,5.296932003675064,24.7692084639383,13057.137065027551,64.22881840995736,14.177221978342496,20.26399997280741,14.635179668048506,15.15241679075893,0.5394183601962158,0.7770382695507487,0.6762114537444934,0.5798319327731093,0.114409847936278,0.6997167138810199,0.914572864321608,0.8628318584070797,0.7266187050359713,0.1126760563380281,0.486731843575419,0.7089552238805971,0.6143695014662757,0.5402521823472357,0.1148587055606198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205473070145,0.0048452166156466,0.0068889249624609,0.0091912698170886,0.0110722492221973,0.0132333031342569,0.0152790801973335,0.0176058134906459,0.0196611416542336,0.0218552397323347,0.0238148914803352,0.0258052595922892,0.0278945907319631,0.0299517107173378,0.0321918514698298,0.0343854936198791,0.0362908232956662,0.0381573355171091,0.0403785423418931,0.0423538230884557,0.0571863879699875,0.0706904846570585,0.0834818526827836,0.096559623386995,0.1090995310606459,0.1243209537297343,0.1373598423027194,0.1498787956111253,0.1624122254711544,0.1741698287135292,0.188034188034188,0.2013064967932425,0.2132531953743152,0.2250890651979105,0.2366024287222808,0.2472571877733125,0.2585191793041926,0.2691248384014389,0.2789131075778538,0.2872901623774159,0.2959737210405172,0.3040773611159832,0.3123735132256346,0.3189373150067706,0.3252918382469055,0.3323107628622117,0.3389277272670427,0.3442641725520137,0.3495926535158729,0.3551362406808735,0.3556707974137931,0.35598353546895,0.3572859077061943,0.3582022601976588,0.3596045912670647,0.3597171952640942,0.3596673267326732,0.3610390463367377,0.3622255608290368,0.3636022648114741,0.3647434093254527,0.3657971358963693,0.3658715981927077,0.367120762521356,0.3675380790305839,0.3679136539872157,0.3697250593654336,0.3711782134526886,0.3729720218194615,0.3739244741873805,0.374000091420213,0.3778371161548731,0.3788167938931298,0.3773279975373249,0.3765813754399315,0.3781070745697896,0.381354630625096,0.3857433808553971,0.3893087041701651,0.3895348837209302,0.0,2.486077583666358,62.133898536993165,214.22462760719725,327.2566568910274,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,51 -100000,95853,41391,388.2298936913816,7309,75.02112609933963,5679,58.631446068459,2314,23.7133944686134,77.37299817448195,79.67412688571021,63.35320242165369,65.05695654467598,77.09969971414856,79.40396372873562,63.253473237375424,64.96179592723293,0.2732984603333932,270.1631569745899,0.0997291842782672,95.1606174430566,80.9226,56.664860878839576,84423.64871209038,59116.41876502517,221.22784,134.04583231916058,230144.3355972166,139190.47115808644,262.58143,125.09480911052503,270580.13833682827,127831.31613462552,3250.31828,1458.2018920917662,3357012.633929037,1487361.8270599418,1405.86053,612.5341981938379,1446799.3385705194,619150.4055103519,2281.5474,932.1464806604243,2340109.5636026,936228.651945068,0.38163,100000,0,367830,3837.4385778222895,0,0.0,0,0.0,18399,191.272051996286,0,0.0,24529,252.511658477043,2091620,0,75092,0,0,3121,0,0,48,0.5007667991612157,0,0.0,0,0.0,0,0.0,0.07309,0.1915205827634095,0.31659597756191,0.02314,0.3088692946058091,0.6911307053941909,25.5430530630232,4.576382736864164,0.3282268004930445,0.1995069554499031,0.238950519457651,0.2333157245994013,11.077711793230256,5.555638411291603,24.38541040396101,13158.439224721023,63.77426408656038,13.364389761714667,20.93192780805137,14.932804551239506,14.545141965554842,0.5458707518929389,0.7678729037952339,0.6968884120171673,0.5740604274134119,0.1147169811320754,0.7324464153732446,0.925531914893617,0.8587443946188341,0.7801418439716312,0.1606425702811245,0.4875173370319001,0.6895640686922061,0.6459802538787024,0.52,0.104089219330855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0048445782277762,0.0073744966170637,0.0096968096988404,0.0118333570542667,0.0140268729641693,0.0161752265245176,0.0182775617671371,0.0203639559002339,0.022469150960771,0.0246196403872752,0.0268090738403767,0.0287549457890139,0.0305915533550864,0.0325869569699593,0.0345333250717723,0.0366147638508095,0.0386109988497528,0.0407908947412145,0.0428241463262375,0.0578611499238806,0.0713016762111775,0.0850069669254381,0.097696984972118,0.1107588937801461,0.1258490107638192,0.139676821192053,0.1530038378533536,0.1650265758746558,0.1761510355837949,0.1904392931706162,0.2033832351510565,0.2153834449178332,0.2273403161968905,0.2381706941326642,0.2493852595201701,0.2600386035769673,0.2698898477671388,0.2793338551770298,0.288629103358256,0.2972185277279824,0.3048799035952874,0.3122373358904239,0.3197099538562953,0.3260822037603847,0.3331566948055949,0.3398329388486055,0.3465131076609824,0.3520916979665846,0.3580333324529199,0.3597816564458521,0.3604971614396737,0.3608098949508641,0.3617825539125523,0.362833834519308,0.3627995458869013,0.3624648881976735,0.3630949443100867,0.3640673672679971,0.3651157378399183,0.3662048509424044,0.3668674221412156,0.3675599613559037,0.3683963108882521,0.3688059270662946,0.3687891440501044,0.3692298886758435,0.3728958089884092,0.3729931900779789,0.3748459183267724,0.377206551410373,0.3787451439518918,0.3801658122903614,0.3838888035632007,0.3854929175777165,0.3868058851447555,0.390032502708559,0.3889809444904722,0.3850914205344585,0.3881172839506173,0.0,2.416545959001535,59.30189352275987,221.1785233683194,323.92665745592296,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,52 -100000,95793,41346,388.69228440491474,7382,75.882371363252,5750,59.4615472946875,2361,24.21888864530811,77.39816222968327,79.72696420815802,63.35848721039546,65.0794593299779,77.10764205911588,79.43593821892605,63.2525981899206,64.9758659040909,0.2905201705673903,291.02598923196865,0.1058890204748621,103.5934258869986,80.9435,56.6684402638444,84498.34539058177,59157.18295057509,222.09186,133.68783079705202,231301.222427526,139015.65908645742,256.2561,121.47735420408628,264094.7355234725,124161.67362178644,3332.00436,1490.2093383068443,3446767.550864886,1524324.3097909575,1393.56087,602.3023011403351,1439498.3349514056,613601.9403210117,2335.96928,965.4299591210188,2399427.619972232,975469.5065293903,0.38105,100000,0,367925,3840.833881390081,0,0.0,0,0.0,18472,192.2583069744136,0,0.0,23968,246.7403672502166,2093909,0,75148,0,0,3188,0,0,39,0.4071278694685415,0,0.0,1,0.010439176140219,0,0.0,0.07382,0.1937278572365831,0.3198320238417773,0.02361,0.3168253151530743,0.6831746848469257,25.45955916297015,4.614269114770891,0.3375652173913043,0.1987826086956521,0.2198260869565217,0.2438260869565217,11.221547716863014,5.556726926213224,25.10027828662308,13094.80796676485,64.61587435330254,13.390155744576484,21.910637540576666,13.8818969248361,15.433184143313312,0.5328695652173913,0.7611548556430446,0.6883049974240082,0.5474683544303798,0.1184022824536376,0.6743682310469314,0.8885714285714286,0.8471615720524017,0.6655172413793103,0.1463414634146341,0.4879725085910653,0.7049180327868853,0.6392447741065408,0.5123203285420944,0.1112107623318385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0046821793416572,0.0068274966521933,0.0090177918596149,0.0114268286484013,0.0138823864677265,0.0161308401691547,0.0179773905236093,0.0201166746697453,0.0222222222222222,0.0243727525125756,0.0260438579388615,0.0281277619057406,0.0302493850286643,0.0324140419609258,0.0344022721404595,0.0366523560751047,0.0383347158855246,0.0403832564326391,0.0420593350064041,0.0562726295689556,0.0698739737488887,0.0836740684825229,0.0966033294097864,0.1095064409352533,0.1254386706693163,0.1385223994569828,0.1512578214787383,0.1629034669856663,0.1747447885390752,0.1893679120311036,0.20229932296511,0.2142282870863301,0.2254981211220833,0.2366116074862901,0.2483512592395874,0.2595367923371134,0.2697234499589505,0.2792425858274148,0.2880967653257583,0.2962217673385838,0.3043646014801997,0.312328345487262,0.319780891536516,0.3270183619935878,0.3332799487508007,0.3394253261780563,0.3456395903568475,0.3511404872991187,0.356804163199535,0.3578209277238403,0.3585617853698856,0.3588875248698303,0.3588860759493671,0.3599375650364204,0.3594655061448404,0.3592682424184778,0.3604838444597837,0.361315744389241,0.3615143649870223,0.3634468772298794,0.3652220502440766,0.3666372314032211,0.3671490009855748,0.368061568061568,0.3688363949933366,0.3694050024186893,0.3709641925241284,0.3717769058295964,0.3740185581727338,0.3776559287183002,0.3779652921509314,0.3803904337455276,0.3810397553516819,0.3838651642836853,0.3861147876308506,0.3888204496458269,0.3966011466011466,0.3999441808540329,0.3928984947896565,0.0,2.1852438292941607,61.28244137875466,220.44523437057072,329.2628838721861,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,53 -100000,95884,41490,389.0430103041175,7456,76.54040298694255,5748,59.43640231946936,2337,24.0811814275583,77.3584022892406,79.64018038572381,63.35300198276878,65.04141106856663,77.0726194723913,79.35312216332083,63.248330765664754,64.93847254935392,0.2857828168493057,287.05822240297607,0.1046712171040269,102.93851921271369,80.02742,56.10035449027207,83462.74665220475,58508.56711262783,221.71804,133.75943452558397,230710.00375453677,138978.1138519475,260.15615,123.45325103795102,267932.3453339452,126142.3138289617,3314.79552,1496.1351981027324,3430512.7028492764,1533920.2221788273,1386.43777,603.1137157152074,1433656.105293897,616748.9842857383,2310.31334,961.1393835387914,2382146.093195945,977968.9564428334,0.38226,100000,0,363761,3793.761211463852,0,0.0,0,0.0,18496,192.3574318968754,0,0.0,24376,250.82391222727463,2094708,0,75243,0,0,3232,0,0,33,0.3441658670893996,0,0.0,0,0.0,0,0.0,0.07456,0.1950504891958352,0.3134388412017167,0.02337,0.3157491378209222,0.6842508621790778,25.322539552649264,4.576782692435896,0.3227209464161447,0.2032011134307585,0.2345163535142658,0.2395615866388309,10.91113094476407,5.4048149590237085,24.94358305432369,13127.25162710928,65.02534525320173,13.78400808391062,20.980022548887565,14.973118223421457,15.288196396982096,0.546624913013222,0.7748287671232876,0.7040431266846361,0.5689910979228486,0.1190994916485112,0.6962649753347427,0.9093333333333332,0.8246753246753247,0.7541528239202658,0.1387900355871886,0.4975744975744975,0.7112232030264817,0.6640344580043073,0.5157593123209169,0.1140510948905109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464224604886,0.0043975641142556,0.0063798926879735,0.0088639340433957,0.0111506403740597,0.0131794542993517,0.0154957414727576,0.0177061553368351,0.019878909161451,0.02210204561486,0.0241383193260106,0.0262451046728588,0.0281920138033029,0.0302943022023803,0.0324721497985304,0.0343816466021021,0.0365056377366297,0.0386787857431571,0.0408440904323263,0.0428110694964627,0.0573879865729833,0.0719106523465251,0.0848849142354493,0.097296162125269,0.1092607807200488,0.1252852193019521,0.1392783341281195,0.1520809850917675,0.1646208692682093,0.1765304919227759,0.1913965758587272,0.2044717030114226,0.2165873067640727,0.2284265069196965,0.2386282422016734,0.2498644326645344,0.2608079771571339,0.2705568800323872,0.2801284451555071,0.2886349832109008,0.2970084975340943,0.3047274599997659,0.3125518450927879,0.3198243066473052,0.3263175823641053,0.3324198207540182,0.3386957230449011,0.3448741981968196,0.3513222152950956,0.3568809646719347,0.3577418004563928,0.3585356093118247,0.3594581997429414,0.3599675287023078,0.3612039136141272,0.3610935986345394,0.3602544731610338,0.3608636843494325,0.3609222634253536,0.3621959744053913,0.363287423797697,0.3645245849551195,0.3655150621445123,0.3659528571107566,0.36715992069249,0.3687705903885374,0.3685564799725534,0.3709321392532795,0.3727112676056338,0.3743573392850026,0.3760765988638446,0.3795950985615343,0.3836450079239302,0.3826100409994585,0.385219975079076,0.3922162948593598,0.3905511811023622,0.3900020656889073,0.388047138047138,0.4025771183131589,0.0,1.9565839838129888,63.13090867309768,217.5688442993589,332.0174995976348,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,54 -100000,95736,41381,389.2475139968246,7230,74.33985125762513,5611,58.06593131110554,2250,23.126096766106794,77.38965647392791,79.75594379274845,63.34469261111818,65.0935935320381,77.11581726974276,79.48132346967381,63.24501951900403,64.99581945011671,0.2738392041851512,274.6203230746431,0.0996730921141519,97.77408192138635,81.41452,57.01259514025134,85040.65346369182,59551.88762874085,221.32642,133.81622336439713,230621.20832288795,139213.8124351412,261.70499,125.02230515839685,269908.393916604,127831.01438464296,3201.32656,1443.249945982809,3314700.8439876325,1478358.753083562,1353.78245,587.6684325099725,1398307.1780730342,598179.3553791952,2208.92576,904.7014744513084,2273075.2277095346,917180.7932615532,0.3817,100000,0,370066,3865.484248349628,0,0.0,0,0.0,18523,192.87415392328904,0,0.0,24461,252.04729673268156,2089217,0,74965,0,0,3211,0,0,48,0.5013787916771121,0,0.0,1,0.0104453914932731,0,0.0,0.0723,0.1894157715483364,0.3112033195020747,0.0225,0.3217437113130515,0.6782562886869485,25.369666110069307,4.53630367063443,0.3275708429869898,0.2158260559615042,0.2266975583674924,0.2299055426840135,11.399992426778738,5.868943347400771,23.652413052229036,13135.816856030617,63.04189827600912,14.267477578582604,20.841475767454597,13.973701056543849,13.959243873428074,0.5619319194439494,0.7630057803468208,0.7334058759521219,0.5794025157232704,0.1116279069767441,0.7384083044982699,0.9312039312039312,0.8709677419354839,0.7672727272727272,0.1685393258426966,0.500720115218435,0.677860696517413,0.6825633383010432,0.5275827482447342,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498906085406,0.004450391816956,0.0066978556713585,0.0088993640408801,0.0109961650747149,0.0133090301820699,0.0154464167371866,0.0179152928206122,0.0198707989205985,0.0222431494579959,0.0242624900059451,0.0263638790218261,0.0285790653206406,0.0309430154251704,0.0329850546140913,0.0350554458924566,0.0370071239231278,0.0386442858328492,0.0403766407882019,0.0422175684264266,0.0574110228328617,0.0716722835074205,0.0853869637742737,0.0983178867861012,0.1108239538391755,0.1270213958604351,0.140823254827074,0.1536112204829149,0.1660010251591132,0.1773493045650985,0.1906797454588524,0.2034684957590445,0.2150142443946676,0.2264505828576427,0.2376210387323943,0.2494379782721846,0.2601606067365603,0.2706675657451112,0.2800235857079681,0.2890277253326925,0.2975760939957443,0.3052230431123164,0.3131849294825568,0.3194645657978233,0.326647564469914,0.3326597750150935,0.3387270360915052,0.344845137810806,0.3503845257515731,0.355518902157419,0.356899592122444,0.3577149620169547,0.3582856820934622,0.3600439395253375,0.3605569409808811,0.3602950177500306,0.3604174903139084,0.3615424939387982,0.3617238562091503,0.3629827371418402,0.3644947007015972,0.3660950128129312,0.3671674223271557,0.3685631414547077,0.3684551518932668,0.3692956866013753,0.3712528823981553,0.3735433070866141,0.373205910357231,0.3755551110222044,0.376840942562592,0.377566970301299,0.382313618132043,0.3812428516965307,0.3805193587700384,0.3827541216937493,0.3908799755985969,0.3954756614825288,0.3905309250136836,0.3909716908951798,0.0,1.993828053697016,64.06129855459325,204.42846052674145,317.8471945500808,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,55 -100000,95767,41002,384.7985214113421,7243,74.47241742980358,5605,57.99492518299624,2287,23.525849196487307,77.34687979821054,79.70584753414688,63.33382307926016,65.08116555319572,77.07326612597984,79.43179802665374,63.23426843070388,64.98378572580242,0.2736136722306952,274.04950749314594,0.0995546485562783,97.37982739329708,80.59326,56.37487360856746,84155.33534516065,58866.47823213365,216.68145,130.9897910370323,225708.41730449945,136229.54017253575,251.23159,119.16642095338872,259340.6810279115,122059.5136904498,3242.02668,1451.316771140737,3355835.0997734084,1486278.0873712765,1362.13807,588.7111353614328,1408177.3575448743,600898.8081142902,2248.54564,922.4904716154948,2315508.5572274374,936055.2261933254,0.37983,100000,0,366333,3825.24251568912,0,0.0,0,0.0,18102,188.4574018189982,0,0.0,23528,242.68276128520264,2099171,0,75365,0,0,3143,0,0,45,0.4594484530161747,0,0.0,0,0.0,0,0.0,0.07243,0.1906905720980438,0.315753140963689,0.02287,0.3081052769412072,0.6918947230587927,25.077300702306008,4.642213676727979,0.3329170383586083,0.1950044603033006,0.2383586083853702,0.2337198929527207,11.334625712829352,5.696402220329782,24.262240594631415,13058.520537162309,63.10449902777143,12.873507740411537,20.97829660425189,14.96393622934803,14.288758453759955,0.552720785013381,0.7758462946020128,0.7009646302250804,0.592814371257485,0.1145038167938931,0.7237128353879623,0.9131736526946108,0.8676789587852495,0.759375,0.1893939393939394,0.4969238050165641,0.7154150197628458,0.6462633451957296,0.5403543307086615,0.0956022944550669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989380244011,0.0045633391473654,0.0067918781725888,0.0089941766517271,0.0112720761780743,0.0132685688682511,0.0152411051075542,0.0173029808084932,0.0196274866594426,0.0217573821517794,0.0241446835559838,0.0261928475352438,0.0283522382534116,0.0303167653875869,0.0321688425615356,0.0344228741549339,0.0365434399917158,0.0385281699637955,0.0406340956340956,0.0425175203840426,0.0575102547777348,0.0719799991631449,0.0856094364351245,0.097546876313798,0.1089950993307688,0.1248071517636367,0.1380633399754101,0.1507213404067573,0.1624870665287096,0.1736587873659858,0.1878885662041518,0.2011389300109138,0.2139039756680426,0.2255440420165314,0.2360636650226825,0.2478510504131957,0.2585766687850509,0.2681775259678942,0.2777771473315101,0.2867156896433235,0.2953953687523868,0.3036802995728746,0.3112836782044604,0.3178188619523775,0.3244939836569167,0.3306909243097527,0.3369791014891753,0.3429516539440203,0.3486447635944521,0.3539281380256424,0.3548625977837918,0.3559172656917018,0.356965699952087,0.3582661232041164,0.3602770676021166,0.3598945319086965,0.3593353627600203,0.3606759691963404,0.3623352165725047,0.3627889501180849,0.3652293130000376,0.3669244497323022,0.3684487144448882,0.3685889515422461,0.3700435203094777,0.3711838579160317,0.3717190282005628,0.3731580284552845,0.3736601931444338,0.3756755674766804,0.3788688282977155,0.3785247131982416,0.3795035009548058,0.3798955613577023,0.3824167531364965,0.3858436606291706,0.3872511189998456,0.3889806025588114,0.3914027149321267,0.3895116092874299,0.0,1.947538952223571,61.37019155120532,209.30416917515387,324.1019909693502,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,56 -100000,95749,41216,386.8238832781544,7283,74.86240065170394,5646,58.350478856176046,2338,24.01069462866453,77.36211040614715,79.72313726474002,63.32787542470121,65.07524514808186,77.07674097802261,79.43850907173784,63.22357211856485,64.97404677637793,0.2853694281245396,284.62819300217745,0.1043033061363587,101.19837170392998,80.53518,56.40938216031469,84110.72700498177,58913.80814453905,217.86085,131.17131084910432,226876.65667526555,136341.4427596339,253.36758,119.8788351239726,260872.83418103584,122340.39948864172,3277.4658,1463.7845007849485,3388837.6484349705,1494832.9284817562,1409.65218,611.099151238614,1451154.4768091573,617647.9130503623,2315.10062,953.1077943523502,2379242.58216796,962157.101919398,0.38031,100000,0,366069,3823.214863862808,0,0.0,0,0.0,18163,189.004584904281,0,0.0,23686,243.5639014506679,2096479,0,75222,0,0,3233,0,0,34,0.3550950923769439,0,0.0,0,0.0,0,0.0,0.07283,0.1915016696905156,0.3210215570506659,0.02338,0.3148730034040324,0.6851269965959675,25.58253256352373,4.606960839283243,0.3289054197662062,0.1987247608926673,0.2233439603258944,0.249025859015232,10.972648877311723,5.385785350868174,24.614963975593152,13147.095550370384,63.119957558688526,12.85683786498811,20.84462318540763,14.157488177704929,15.261008330587838,0.5441020191285866,0.7513368983957219,0.7016693591814755,0.5971451229183188,0.1230440967283072,0.6979010494752623,0.9177215189873418,0.8669623059866962,0.7118055555555556,0.1612903225806451,0.4965213358070501,0.6861042183622829,0.6486486486486487,0.5632065775950668,0.1135758651286601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299828779267,0.0047761981057456,0.0070449700538016,0.0094699086539927,0.0114948374955495,0.0137695034016376,0.0159484428854037,0.0179898717634566,0.0199588961258064,0.0225382976980421,0.0244175075888095,0.0265217659264128,0.0286619616880311,0.0304095134065662,0.0324691408991454,0.0347479968984233,0.036770492482293,0.0386897968500342,0.0407792018793983,0.0427790219259413,0.0567008695107566,0.0707642412512423,0.0843269886214671,0.097068691691997,0.1095851397107686,0.1250330509460502,0.1386879124143345,0.1515187002949036,0.1637550619183468,0.1752595007291756,0.1895155209926541,0.2024047879306053,0.2151762402088773,0.2271230568956275,0.238382459770621,0.2506953910258541,0.2621661770783304,0.2721625119576839,0.2809942682027126,0.2903052105769671,0.298721600778156,0.3066192304091377,0.314073267186057,0.3203781008588839,0.3268529769137303,0.3336827565794342,0.3395850560024054,0.3451481844696053,0.350232624444358,0.354974181534845,0.356654484646609,0.3580927444360229,0.358445879268052,0.3599103009259259,0.3608764205390611,0.3611238919051562,0.3611031814000698,0.3628010191501603,0.3642470131779103,0.3653180016426811,0.3657983082953543,0.3667602514927439,0.3683514823440549,0.3698344793603154,0.3723468330643024,0.3721683693465367,0.3719310266072856,0.373007874015748,0.3749297160528535,0.3762812872467223,0.3793590737110817,0.3790630975143403,0.3817251831270523,0.3832080771274577,0.3847958704833411,0.3906771578445398,0.3867996930161166,0.3901652559451834,0.3887061403508772,0.3954669792887846,0.0,2.3167879136809204,58.72033630756399,209.89242822964735,333.5532607697703,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,57 -100000,95753,41347,387.1210301504914,7286,74.88016041272859,5673,58.58824266602613,2346,24.03057867638612,77.32840490063373,79.68929209652323,63.31625382636724,65.06498783255687,77.0375067708943,79.40033926592628,63.2088346957162,64.96142487550972,0.2908981297394319,288.95283059695487,0.1074191306510385,103.56295704714567,81.88686,57.37260118416904,85518.84536254738,59917.28842351575,221.41213,134.06079474967862,230586.85367560285,139362.065841347,257.06442,122.7423129141806,264777.6884275166,125280.7530188784,3272.72628,1472.7693155017948,3382262.404311092,1502520.16379835,1376.41614,596.5359196908145,1421857.0593088467,607451.9256365917,2310.99482,963.6507553140634,2370325.399726379,968234.5317670238,0.38184,100000,0,372213,3887.220243752154,0,0.0,0,0.0,18414,191.62846072707904,0,0.0,24072,247.7729157310998,2085214,0,74822,0,0,3239,0,0,37,0.3759673326162104,0,0.0,3,0.0313306110513508,0,0.0,0.07286,0.190812905929185,0.3219873730441943,0.02346,0.3051268637195919,0.694873136280408,25.42818280266036,4.544375791957427,0.3289264939185616,0.2037722545390446,0.228803102414948,0.2384981491274458,11.072307338338144,5.598704236070643,24.93093148022272,13177.085624943456,63.75886705840552,13.492388564584996,21.05820710951333,14.346876885557432,14.86139449874974,0.5457429931253305,0.777681660899654,0.687566988210075,0.5824345146379045,0.1167775314116777,0.7109826589595376,0.9361111111111112,0.8451612903225807,0.7517241379310344,0.1338289962825278,0.4924224761016554,0.7060301507537688,0.635260528194147,0.5337301587301587,0.1125461254612546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.004421996389379,0.007056410672948,0.0092278298339397,0.0115257064963072,0.0139850880052151,0.0163974547234459,0.0184587740433699,0.0207221574761291,0.0229799168833295,0.0250630420075035,0.0271066709106403,0.0292166723228334,0.0313327221976165,0.0333828658700183,0.0353502987203605,0.0372954340782759,0.0394495317701473,0.0415346087101098,0.0438364439260123,0.0583065425243204,0.0726896205497217,0.0854060062075329,0.0983139571551706,0.1103722983866718,0.1261878336240156,0.1392588978916557,0.1519647494571927,0.1650375498082449,0.1771002027005287,0.1908209437621202,0.2041600380940012,0.2168755985026551,0.2289305561633046,0.2396776111514831,0.2509030470914127,0.2619568615192247,0.2716177265357593,0.2808436211654874,0.2899080675852266,0.2988423246121787,0.3066715036335763,0.3145686734427938,0.3215636368002113,0.3284150346673154,0.335159411706643,0.3405109672238117,0.3462235033033186,0.3513625800085688,0.3556924541272275,0.3565759637188209,0.3575013789299504,0.3584452636187732,0.3590085133491631,0.3596935733873852,0.359489584134061,0.3596998791886564,0.3605978619506401,0.3618361218361218,0.3624517634389302,0.3642180942164003,0.3656953432053674,0.3663634644875323,0.3675557754587981,0.3679523786478246,0.3694227441933623,0.3703066781312697,0.3718823009408347,0.3747050329306519,0.3746958637469586,0.375177078097153,0.3777506112469437,0.3805209513023782,0.3812714122573277,0.3847967556351976,0.38698224852071,0.3927529556272071,0.3951430335459971,0.3917525773195876,0.3973196689002759,0.0,2.5123840352129454,60.58118482661518,212.08782119265328,330.35291625457387,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,58 -100000,95734,41121,386.44577683999415,7211,74.11160089414419,5600,57.96268828211503,2244,23.043015020786765,77.31464774318667,79.68036256572589,63.30648041847581,65.05585417779493,77.04503602801618,79.4115749555831,63.20645876790267,64.95890633149536,0.269611715170484,268.7876101427804,0.1000216505731401,96.94784629957098,80.0569,56.072536788350895,83624.31320116155,58571.18347541197,217.5936,131.41625531919593,226743.35136941943,136725.86052937928,254.4427,121.34148983656084,262748.4174901289,124337.89010526576,3200.95288,1436.9232043480276,3312109.59533708,1469783.6785535174,1346.87349,583.8286065280448,1391807.8843462092,594940.8749363228,2211.64878,922.9380781393864,2272800.3635072177,931823.3824409049,0.37962,100000,0,363895,3801.105145507344,0,0.0,0,0.0,18054,188.0314203940084,0,0.0,23777,245.31514404495792,2095840,0,75176,0,0,3140,0,0,54,0.5640629243528945,0,0.0,0,0.0,0,0.0,0.07211,0.1899531110057425,0.311191235612259,0.02244,0.3185584637643036,0.6814415362356965,25.400956189938213,4.595611120428377,0.3325,0.2007142857142857,0.2383928571428571,0.2283928571428571,11.02767094855682,5.491846071891823,23.877808738169374,13083.791761235374,62.84330181825851,13.073005493811625,20.95467279356693,14.78817589380558,14.027447637074376,0.5525,0.7775800711743772,0.6933404940923737,0.5827715355805243,0.1180609851446442,0.7205014749262537,0.9415384615384615,0.888402625820569,0.7348993288590604,0.1666666666666666,0.4988218661639962,0.7108886107634543,0.6298932384341637,0.5390549662487946,0.1046859421734795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488983437167,0.0044914884772536,0.0066992833796869,0.0090437963621583,0.0111297624497685,0.0134377929010962,0.0154150641189132,0.017520573400584,0.0197084619630773,0.0217231071618688,0.0237355561707319,0.0257310662066699,0.0277520623752802,0.0299942298973746,0.0321012376007679,0.0342489119535215,0.0362841846931273,0.0383936909826709,0.0401676163540323,0.0422973944388302,0.0567046368125959,0.0710682213058131,0.0839532077847138,0.0970971813209928,0.1098467671345559,0.1253636604072996,0.1389950324799388,0.1524201963414893,0.1636289779469144,0.1750496324515748,0.189351537308443,0.2029169240104454,0.2154444529181692,0.2263212117226715,0.2369773288637967,0.2478456891573757,0.2587790444014364,0.2693071317374726,0.2776886583159835,0.286480772986822,0.2951861732977612,0.3031826973799894,0.3111472182359429,0.3187358157518702,0.3258156338953361,0.332601021944657,0.3390316601542931,0.3450984886104639,0.3505393610546354,0.3551157728082327,0.356525136052589,0.3577504335618135,0.35790629884669,0.3587872306602887,0.3602940082429436,0.3602098577937319,0.3603147657501864,0.3613360990385881,0.3621079691516709,0.3627286067069897,0.3632401562969642,0.3641818829959995,0.365114622186832,0.3659022261997986,0.3678722789443267,0.3698333637572691,0.371028171028171,0.3744211686879823,0.3764056789429294,0.3761745500875935,0.3798892904524452,0.3841066666666666,0.3865828890581366,0.3872952395601015,0.3877551020408163,0.3894862604540023,0.3866728509585652,0.3932280847528043,0.3964014619061006,0.3994511956095649,0.0,2.116604571218825,59.9819666764157,207.65776874952712,328.07452915172775,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,59 -100000,95808,41382,388.8193052772211,7286,74.82673680694722,5671,58.53373413493654,2296,23.609719438877757,77.3504688262772,79.68215324986338,63.33176974345843,65.06000455461484,77.07416595914994,79.40609950005427,63.23104233282082,64.96172557679746,0.2763028671272565,276.05374980910824,0.1007274106376101,98.27897781737248,81.20926,56.91682298085721,84762.5041750167,59407.171614956176,222.75194,134.8866045556096,231799.9123246493,140090.10161532398,262.67822,125.04579507844936,269861.9113226453,127194.24759541557,3255.0528,1465.9669863347772,3361747.327989312,1494381.540513086,1382.17266,598.3609522610072,1425575.7452404809,607469.0028609382,2266.81694,938.6374452294136,2332857.4440547763,950936.7572498372,0.38059,100000,0,369133,3852.841098864395,0,0.0,0,0.0,18515,192.5830828323313,0,0.0,24554,251.93094522378087,2088240,0,75040,0,0,3179,0,0,46,0.469689378757515,0,0.0,0,0.0,0,0.0,0.07286,0.1914396069260884,0.3151248970628603,0.02296,0.3220582473553611,0.6779417526446389,25.288724641934618,4.582580020238039,0.3239287603597249,0.2063128196085346,0.2334685240698289,0.2362898959619114,11.275722809245764,5.657299856591551,24.438476187642337,13146.79511707634,63.86763628213106,13.737967267885892,20.61669099788677,14.658477552313894,14.854500464044492,0.5459354611179686,0.7735042735042735,0.7049537289058248,0.5634441087613293,0.1119402985074626,0.7046783625730995,0.9378378378378378,0.8902439024390244,0.7311475409836066,0.1024734982332155,0.4954682779456193,0.6975,0.6517168885774351,0.5132482826300294,0.1144749290444654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0046642263974934,0.0068608545620623,0.0091746847789642,0.0111276115304025,0.0132610865535434,0.0153995206771709,0.017788579364431,0.0199378348533802,0.0218966893925434,0.0239843317405303,0.0261336564528053,0.0282705498822488,0.0303922881242468,0.0323745088130034,0.0343666046703864,0.0362311339309745,0.0382106147511227,0.0403217425643796,0.042243990797514,0.0568734222110951,0.0709162763466042,0.0843463134509787,0.0968060516915318,0.1092393594605984,0.1244742682024727,0.1384860050890585,0.1517688102278287,0.1645831776499098,0.1763388551957654,0.1910520992489616,0.2041314899090899,0.2165823032304316,0.2282488715970317,0.2397012397012397,0.2509250847532738,0.2618191964285714,0.2713851693484865,0.2805382082434427,0.2894338931017893,0.2981621646644909,0.3066016214508826,0.3146868046020548,0.3221243181681951,0.3289961695141971,0.3343370891902898,0.3407760295869115,0.3464563917538916,0.3520185771366301,0.3568727522741696,0.3582964243275359,0.3588780918727915,0.3593692598977025,0.3598967996289425,0.3603408972391495,0.3602825986791583,0.3604239159794715,0.3610914303603499,0.3626797374419441,0.3639263188073394,0.3640666378678887,0.3645693002615104,0.3647170009450803,0.3658383421548398,0.3671527911918099,0.3686152396901821,0.3702730492402605,0.3705058660275009,0.3729266235591791,0.3749950197219012,0.3786421047831836,0.380530033459026,0.380640282329216,0.3820233285049935,0.3856048425234087,0.3852459016393442,0.3901200369344413,0.385456755114442,0.3837145969498911,0.3830275229357798,0.0,2.5672227706067416,60.025930148780674,221.04601967737847,321.49574113229835,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,60 -100000,95727,41270,386.6307311416841,7320,75.1825503776364,5715,59.21004523279744,2275,23.514786841747885,77.30949638025908,79.67086253790083,63.31695901961641,65.06008197109149,77.03438480477796,79.39143421150906,63.21643638787037,64.9600833301166,0.2751115754811195,279.4283263917663,0.1005226317460454,99.99864097488852,80.6047,56.45988364541166,84202.68053945072,58980.10346653677,218.42089,131.53679347749008,227672.6419923324,136912.05192635363,261.16302,124.4241356331313,269874.12119882583,127736.71454556832,3282.59092,1478.1739069880289,3403193.289249637,1518333.0896193422,1369.56221,596.1777817494946,1417695.0494635787,609839.0908722938,2240.49672,924.1953678258382,2317015.993397892,943999.5422820768,0.38066,100000,0,366385,3827.394569975033,0,0.0,0,0.0,18190,189.50766241499264,0,0.0,24500,252.9275961849844,2091968,0,75117,0,0,3147,0,0,46,0.4805331829055543,0,0.0,1,0.010446373541425,0,0.0,0.0732,0.1922975883990963,0.3107923497267759,0.02275,0.3113158577731638,0.6886841422268363,25.4920194049556,4.5370054787423895,0.3359580052493438,0.2031496062992126,0.2339457567804024,0.2269466316710411,11.101595344867532,5.615438197950778,24.128379594462555,13154.202392738054,64.25575434362224,13.557675753685936,21.62237831916312,14.833245405186045,14.242454865587137,0.5518810148731409,0.7820844099913867,0.6828125,0.5804038893044129,0.1225905936777178,0.7183823529411765,0.9342857142857144,0.8655097613882863,0.7385159010600707,0.1578947368421052,0.4998851894374282,0.7163995067817509,0.6250856751199452,0.5379506641366224,0.113482056256062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407287752807,0.0047745519422593,0.007223439655872,0.0096489802551393,0.0120368017079245,0.0141480146976498,0.0162564337766906,0.0186695519919973,0.0209314922886665,0.0228124040528093,0.0251235162672461,0.0270347971620136,0.0290799905397484,0.0311112941927643,0.0331882593180833,0.0352843932427545,0.0376733595528876,0.0396175146750741,0.041605171804519,0.0434071543157149,0.0582467498564193,0.0722060578150838,0.0856040106559268,0.0983470379171836,0.1103811883798175,0.1253040590562006,0.1387494827531326,0.1517131999957423,0.1637845401236875,0.1756235122557955,0.1900221920582595,0.2034731394669034,0.2160626836434867,0.2279582366589327,0.2385514044418018,0.2501801572079513,0.261112910973825,0.2708457733863608,0.2803836014907735,0.288583909469267,0.2973680249186554,0.3049609699579856,0.3124185638814527,0.3197715574645758,0.3269915753899269,0.3338145296614352,0.3395486876377479,0.3449901267596662,0.350203636929622,0.3551472339074529,0.356574915290846,0.3571684736130652,0.3580449215990959,0.3588900635780387,0.3597549158454956,0.360073795064955,0.3599058029818448,0.3610602536823527,0.3621637406809359,0.363170942013365,0.3648669029484956,0.3661893286064251,0.3679101958136394,0.3691167860199072,0.3713662262092375,0.3732749121057879,0.3732120758626644,0.3766427055954907,0.3764801526987381,0.3775217287297663,0.3772677295217152,0.3781557552417629,0.3796866078792108,0.384644943129419,0.3877162958737402,0.390311004784689,0.3920445751431667,0.3939771547248182,0.3929070092153029,0.3947981366459627,0.0,1.898593314108736,60.16138100817837,217.07595069349424,335.2387358818926,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,61 -100000,95739,41446,389.6113391616792,7325,75.29846770908406,5619,58.15811738163131,2300,23.668515443027395,77.40440741590693,79.76149725320262,63.3594678928421,65.09907591956596,77.1221036510862,79.47851005642475,63.25527124245137,64.99749050883912,0.2823037648207247,282.9871967778672,0.1041966503907261,101.58541072684102,80.43464,56.313499381896726,84014.49774908867,58819.81155213312,220.618,133.53415958835035,229895.2046710327,138935.62226102932,258.67067,123.34769590823788,266799.24586636585,126224.74867529988,3234.81632,1458.1953600901404,3348310.427307576,1492622.6285502587,1376.8263,598.5725210232844,1423605.7719424686,610826.2395454228,2269.13692,949.146600708754,2335666.008627623,960545.0271734636,0.38132,100000,0,365612,3818.840806776757,0,0.0,0,0.0,18395,191.572922215607,0,0.0,24078,248.1642799695004,2096585,0,75134,0,0,3136,0,0,50,0.5118081450610513,0,0.0,0,0.0,0,0.0,0.07325,0.1920958774782335,0.3139931740614334,0.023,0.3235561323815704,0.6764438676184296,25.40160909823815,4.637237149985772,0.3258586937177434,0.2057305570386189,0.2292222815447588,0.2391884676988788,10.87317763399692,5.279952005276787,24.448149135327352,13082.607347536732,62.992524413873454,13.485337799275344,20.431162664267,14.362976639319577,14.713047311011543,0.5321231535860473,0.7448096885813149,0.6777717094483888,0.5753105590062112,0.109375,0.6906841339155749,0.9175531914893617,0.8215962441314554,0.7301038062283737,0.1519434628975265,0.4808009422850412,0.6615384615384615,0.6341637010676157,0.5305305305305306,0.0980207351555136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021059665677807,0.0044590828477324,0.0068273581268894,0.0090590565175443,0.0113265482496721,0.0133550488599348,0.015164331210191,0.0175096680713855,0.0197400686611083,0.0218265541059094,0.0239825357944471,0.0261310452418096,0.0283749190389538,0.0305602191848548,0.0326368467213537,0.034610017056908,0.0364636192290963,0.0385485176040996,0.0405836563743881,0.0424964586284476,0.0580822318277683,0.0714487551150694,0.0849584072003272,0.097768946084616,0.1094456566423173,0.125335730146981,0.1386286720631451,0.1518242113892112,0.1643020448281019,0.1757337880298984,0.190000753928506,0.2030646365613738,0.2155661916675731,0.2264629651906693,0.2374606598146884,0.2493852867554216,0.2601669568322842,0.2698489466758146,0.2791278106777392,0.2878210192468428,0.296528765128134,0.304442264573991,0.3112804157807701,0.3181714941484465,0.3252217751708759,0.3310131952728212,0.3362955741372629,0.3424375619299271,0.3486670286763375,0.3542706618373394,0.3556561815567768,0.3560984994228549,0.3569096997495568,0.3574335440297861,0.3586316367250663,0.3592265683559988,0.3597056263353644,0.3604960141718334,0.3613814059885964,0.3622492683275037,0.3630395228001726,0.3645806489979583,0.3664966521839515,0.3676622039134912,0.3678047370069633,0.3673592212685786,0.3672584051601119,0.368945195550093,0.3717826837083201,0.3740637450199203,0.3754792769764469,0.3794685732579234,0.3832153690596562,0.3841864018334606,0.3873603155225842,0.3897884410826143,0.3922413793103448,0.3986623429266315,0.4009473390916689,0.423444976076555,0.0,2.050983414140833,60.681640035989325,209.7423462062121,324.46107134677743,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,62 -100000,95750,40968,385.2114882506528,7226,74.21409921671018,5610,58.03655352480418,2261,23.31070496083551,77.33232137485312,79.69808583083137,63.31916690730778,65.07123834108583,77.04723523730793,79.40881592949624,63.21497999188086,64.96734872871892,0.2850861375451927,289.26990133513186,0.1041869154269221,103.8896123669133,80.7521,56.58100927518849,84336.39686684073,59092.43788531436,220.84713,133.65693327149242,230090.40208877283,139030.14440886935,256.61159,122.19335676394708,263834.2872062663,124499.49194561932,3217.35016,1452.2569445096135,3331455.1644908614,1488015.7749447676,1376.1826,598.9319504621036,1422945.409921671,611208.9321927858,2223.90382,935.9425465554784,2294730.610966057,953994.0104938652,0.37811,100000,0,367055,3833.4725848563967,0,0.0,0,0.0,18436,191.95822454308092,0,0.0,24004,246.52741514360312,2092737,0,75076,0,0,3197,0,0,41,0.4281984334203655,0,0.0,0,0.0,0,0.0,0.07226,0.1911084076062521,0.3128978688070855,0.02261,0.3174142480211082,0.6825857519788918,25.368383754332594,4.492389242406011,0.3288770053475935,0.2023172905525846,0.2367201426024955,0.2320855614973262,10.984727998636808,5.612556526717018,24.24843284367237,12960.340307605398,63.13621235148443,13.26841636956063,20.72968921872037,14.788547313158697,14.349559450044753,0.5491978609625668,0.7674008810572687,0.6775067750677507,0.5978915662650602,0.1274961597542242,0.7045619116582187,0.9175824175824177,0.868421052631579,0.7197231833910035,0.1286764705882352,0.4984629936155119,0.6964980544747081,0.6148308135349172,0.5640038498556305,0.1271844660194174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0048179817220988,0.0067927057103403,0.0091470851288722,0.011322942947831,0.0136001059483909,0.0155727339479481,0.017754137357196,0.0196615714942998,0.0216420966420966,0.0237424010989574,0.0260661560889472,0.0280517023311293,0.0302384262835367,0.032282359738357,0.0341794654484569,0.0358984447803847,0.0379077101834177,0.0399255941556079,0.0418454488648198,0.0568076244558806,0.0707163707508971,0.0840482433141059,0.0962820431939099,0.1080405718864662,0.1231451024358255,0.1364576812486074,0.1491159909310568,0.1609847271173769,0.1717619052725264,0.1849976841629056,0.1985629105390167,0.2119435136428913,0.223284404873887,0.2343787828766369,0.2453793424214571,0.2566760777136735,0.2665428764348413,0.2758307608498275,0.2845082361566129,0.2932896549329197,0.3008988343242357,0.3088778409090909,0.3157459358365703,0.3226343550229698,0.3289506142384922,0.3357088285760805,0.3413169080404184,0.3480221303722515,0.3532416451084948,0.3542059600150886,0.3550097798837433,0.3554054625699742,0.3569496477803653,0.358110119047619,0.3581343272136075,0.3579223254705742,0.3590916570676321,0.3593586913745016,0.3597993550698674,0.3622942793657967,0.3630744156463666,0.364038599300493,0.3651150757047403,0.3656528477334366,0.366188314925099,0.3658347898341021,0.3672556546014021,0.3691322650252927,0.3695940248162871,0.3705422794117647,0.3716714185808811,0.371901354459494,0.373497688751926,0.3777756779741094,0.3832562551879521,0.3853658536585366,0.3858124494745352,0.3936140930360584,0.3937403400309119,0.0,2.1513228534504503,60.95980426939872,208.20020640748103,326.9678756416506,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,63 -100000,95719,41562,389.410670817706,7406,75.99327197317147,5802,59.97764289221576,2381,24.477898849758148,77.41699606751023,79.77024777540448,63.36600846061516,65.10071054714335,77.12416956073677,79.47886105791154,63.25879113415486,64.99727071916335,0.2928265067734514,291.3867174929408,0.1072173264603009,103.43982797999728,80.83592,56.631612019234296,84451.27926534961,59164.44177147097,222.81631,134.4160060336205,232155.4759243201,139801.4981702906,263.58811,125.43588237806956,271442.9110208005,128045.19065287108,3330.43592,1505.5614504028356,3442905.755388168,1536446.9637154944,1440.06406,625.6093739608011,1489749.8511267356,638873.0155547397,2343.75536,971.8948427772071,2410013.7276820694,981215.5913155292,0.38376,100000,0,367436,3838.6945120613454,0,0.0,0,0.0,18506,192.6785695629917,0,0.0,24712,254.22329944943013,2092669,0,75100,0,0,3102,0,0,47,0.4910205915231041,0,0.0,0,0.0,0,0.0,0.07406,0.19298519908276,0.3214960842560086,0.02381,0.3180819439059066,0.6819180560940933,25.48758440526795,4.568955708028327,0.333160978972768,0.1959669079627714,0.2380213719407101,0.2328507411237504,11.060810110910497,5.571403497766382,25.25690625712044,13229.402966489,65.40673408518053,13.25806661606326,21.6908404680678,15.587241321595435,14.87058567945404,0.552395725611858,0.7581354441512753,0.6880496637351268,0.6089790007241129,0.1273131014063656,0.70888733379986,0.9147727272727272,0.8340080971659919,0.7824675324675324,0.1381818181818181,0.5012577178138578,0.6878980891719745,0.6379430159833217,0.5591798695246971,0.1245353159851301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.0047817321622141,0.0071101103537812,0.0092710120939489,0.0115503497641125,0.0137421364441458,0.0162881722183715,0.0185549964788373,0.0210213279102326,0.0233769156794139,0.0254439628229169,0.0274128658811938,0.029668160697397,0.0317810137793248,0.0340334660696969,0.0362199028624573,0.0380900121134314,0.0401298593536074,0.0421144531980792,0.0438813993707415,0.0581847040641577,0.072735073143168,0.0856555313077052,0.0979206327502971,0.1106446713357522,0.1261727219842403,0.1398913712261048,0.1530731728087543,0.1651940725862455,0.177028258887876,0.1910602373312084,0.2045334054638896,0.2167211938741128,0.2288644704648724,0.2401256880431558,0.2514797809371024,0.2621834314250044,0.2719752739533577,0.2820443053760515,0.2904141253475838,0.2988101707850097,0.306466882502133,0.313708332840639,0.321598352312869,0.3280538867649736,0.334425542922605,0.3408164286250281,0.3465769626982411,0.3518365128258224,0.3576886026840501,0.3589684890923781,0.3601574218051217,0.3611291277741744,0.3616522079163468,0.3629637348895373,0.3631691977297131,0.3626786223503691,0.3634796315452441,0.3650340810085928,0.3656848227507092,0.3666092298471681,0.367973920774474,0.3692007470046373,0.3713008493518104,0.3724366997208048,0.3738503344481605,0.3762848332571951,0.3768526385348815,0.3805904500510222,0.3817899637868598,0.3820915926179084,0.3831691078561917,0.3858034419718842,0.386839481555334,0.3894203714124929,0.3881106533254855,0.3878048780487805,0.3825894652191395,0.3860604410563572,0.3793494704992435,0.0,2.4793786916861484,62.852810096212295,223.78113140048137,327.45244472866455,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,64 -100000,95700,41197,387.9832810867293,7276,74.98432601880877,5661,58.61024033437826,2296,23.67816091954023,77.3508434030137,79.7421969294324,63.31502979323547,65.08316316866429,77.06738243704561,79.45725820852465,63.21167082021462,64.9820102754977,0.2834609659680893,284.9387209077463,0.1033589730208461,101.15289316658505,81.76388,57.22050258234079,85437.7011494253,59791.53874852747,220.94386,133.22940767616475,230326.4158829676,138670.77082148878,256.47296,121.5457006865367,264802.20480668754,124507.17504591343,3273.52672,1465.8876171086822,3392604.6394984326,1503744.5528826348,1416.659,610.311785566423,1468073.6990595611,625497.3198652727,2273.49792,940.479308490032,2347413.521421108,957187.7594891776,0.37982,100000,0,371654,3883.531870428422,0,0.0,0,0.0,18384,191.52560083594565,0,0.0,23973,247.3458725182863,2088459,0,74935,0,0,3286,0,0,49,0.5015673981191222,0,0.0,0,0.0,0,0.0,0.07276,0.1915644252540677,0.3155579989004948,0.02296,0.3147760020958868,0.6852239979041131,25.3229644035667,4.4938306438962,0.3294470941529765,0.2057940293234411,0.2178060413354531,0.2469528351881293,10.868799140049925,5.415810852450708,24.3753602777673,13089.791924947162,63.67676610340969,13.666211285919363,21.023327180534924,13.578775544619042,15.408452092336352,0.5440734852499558,0.769098712446352,0.6954423592493297,0.5798864557988646,0.1230329041487839,0.6927044952100221,0.8935574229691877,0.852017937219731,0.7296296296296296,0.1549295774647887,0.4972118959107807,0.7141089108910891,0.6462297392529951,0.5379023883696781,0.1149012567324955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.004401131719585,0.0062735384584149,0.0086389137328238,0.0107021506032676,0.0129276094619099,0.0150261657264686,0.0170864227791735,0.0192061852507133,0.0213739988939186,0.0235975797354117,0.0256160064091371,0.0278849219818763,0.0297244946320756,0.0314770475561426,0.0334529064538471,0.0354108822676225,0.0375533250988655,0.0395585420654073,0.0415289837699227,0.0564033465985648,0.0708444584053191,0.0844337147055736,0.0978360352209726,0.1107208034009515,0.1258754575654345,0.1400231390572426,0.1526584246451351,0.1653039193681127,0.1766763598124322,0.1902370148417206,0.2028665454230536,0.2154095577994429,0.2267599006379742,0.2379783345810031,0.2493209007350903,0.2596045418513515,0.270260532774888,0.2793843707405725,0.2878664541796127,0.296320744884133,0.3046273848424159,0.312045979735735,0.3183596562815035,0.3250772487287414,0.3312444488305536,0.3383203545584295,0.3444403417410459,0.3496412010051553,0.3552645488662191,0.3568527987264412,0.3579539190827913,0.3587531193164996,0.359977439042027,0.3605994890380845,0.3608059449934881,0.3611379665583644,0.3617524773627384,0.3631119479630263,0.3633616450603487,0.3650647644077341,0.3659559318010997,0.3662222781201526,0.3664675481575944,0.3660510029619284,0.367952367273392,0.3686815531218887,0.3705320685972737,0.3727588505666467,0.3761757963797328,0.3769666742235321,0.3797898312281074,0.3810511756569847,0.3850087779558812,0.383511190858438,0.3823178016726404,0.3808206546795758,0.376983329985941,0.3735334242837653,0.378001549186677,0.0,2.113224161133896,60.18411104375736,216.44356875638584,326.721726068995,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,65 -100000,95719,41392,387.5719554111514,7284,74.71870788453704,5731,59.23588838161703,2293,23.495857666711935,77.26691653433518,79.62639431117088,63.2951211478972,65.03900072033119,76.97700552747784,79.33944013049961,63.18844761179204,64.93688417429058,0.2899110068573378,286.9541806712732,0.1066735361051556,102.11654604060529,80.63946,56.49589881742715,84245.80281866714,59022.42900304762,219.85224,132.93320076491105,229038.24736990567,138231.78341281365,261.37981,124.66220570167988,269748.5556681536,127593.6230661467,3266.99392,1474.107816025739,3376928.593069297,1503856.262628879,1394.60156,605.3807006784207,1435140.4423364222,610634.6585825287,2253.54018,941.4922980513552,2310575.6850781976,944730.593265788,0.38159,100000,0,366543,3829.35467357578,0,0.0,0,0.0,18335,190.88164314294968,0,0.0,24473,252.3427950563629,2088472,0,75017,0,0,3315,0,0,33,0.344759138728988,0,0.0,0,0.0,0,0.0,0.07284,0.1908855053853612,0.3147995606809445,0.02293,0.3223915592028136,0.6776084407971864,25.15498391135233,4.510673315112807,0.345489443378119,0.2010120397836328,0.231373233292619,0.222125283545629,11.251785685457538,5.722487036087567,24.43012289845232,13167.55840270346,64.79100163993375,13.513977449671325,22.332210700717496,14.802879289557549,14.14193419998739,0.5487698481940324,0.7638888888888888,0.6883838383838384,0.5739064856711915,0.1107619795758051,0.6984352773826458,0.9234828496042216,0.857451403887689,0.6745762711864407,0.1338289962825278,0.5001156069364162,0.685640362225097,0.6367831245880027,0.545101842870999,0.1045816733067729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079974071223,0.004521996573016,0.0070726955392296,0.0092441157647728,0.0117364684823952,0.0136947247309419,0.0157500382282481,0.0177927950919243,0.0202610837941997,0.0224267114313789,0.0246840179184648,0.0268880128126155,0.029410252455139,0.0314971984179301,0.0334475074281941,0.0354872388591984,0.0377159189760159,0.0401099756186128,0.0418914564297668,0.0438447512373013,0.0589875321095169,0.0732103042927574,0.0864755947820794,0.0994054821907718,0.1114112371405961,0.1269155871645076,0.1407230450708711,0.1539256308383839,0.1660214317797788,0.1774456755131838,0.1922716147882996,0.2053860742346247,0.2170171980002831,0.228302300109529,0.2388987468726924,0.2501526607378787,0.2610869395013813,0.2714383924445797,0.2807472047995636,0.2893674602082473,0.29778637089865,0.3054082218085168,0.3129582903917457,0.3195752594636751,0.3268306921421013,0.3327285518569259,0.3385591732303216,0.344299503972049,0.3502174900993313,0.3560395305089685,0.3567814039075607,0.3576111310890432,0.3583414758485917,0.3594044751429318,0.3605855318132983,0.3601797974200301,0.3604504834573172,0.3616588703945519,0.3619034511234215,0.3627049180327868,0.3628251806297043,0.3636273123718114,0.3650283393959901,0.3651520620882592,0.3653888227143447,0.3672883409725515,0.3685576673492343,0.3704436011098,0.3734560166123662,0.3753807415830727,0.3798255382331106,0.3804436249254297,0.3826282051282051,0.3833423555796149,0.3849456210646823,0.3852715040845747,0.3855925639039504,0.3910992616899097,0.3926174496644295,0.4017295597484276,0.0,2.479059718899791,61.88674608436109,219.02215742597127,329.66954598791114,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,66 -100000,95706,41326,387.1335130503834,7410,76.22301632081583,5842,60.48732576849936,2362,24.355839759262743,77.288290147924,79.6567826656004,63.294707477804174,65.04352204619619,76.99519972972828,79.36198169497952,63.18731840583445,64.93798361795687,0.2930904181957174,294.8009706208836,0.1073890719697203,105.53842823931348,80.9116,56.67816248093496,84541.82600881868,59221.11725590346,222.45761,134.75407478562337,231896.4432741939,140257.9512106068,265.99684,126.79202779482286,274276.90008985857,129726.31640047416,3340.31908,1513.1634122396547,3460933.6927674334,1551799.8163538924,1404.75363,611.8466721434537,1454711.334712557,626229.3609005226,2321.39196,963.0434256359472,2395721.062420329,980287.748149055,0.38154,100000,0,367780,3842.8102731281215,0,0.0,0,0.0,18538,193.14358556412344,0,0.0,24967,257.26704699809835,2083614,0,74896,0,0,3226,0,0,32,0.323908636867072,0,0.0,1,0.0104486657053894,0,0.0,0.0741,0.1942129265607799,0.3187584345479082,0.02362,0.3157355202460277,0.6842644797539723,25.22188479638005,4.454669792505725,0.3334474495035947,0.2084902430674426,0.2276617596713454,0.2304005477576172,11.040170600686256,5.631064100470362,25.15311976857581,13139.321747528544,66.13123238183915,14.315112101844631,22.07552949160903,14.934379177830872,14.806211610554612,0.5487846627867169,0.7660098522167488,0.6883983572895277,0.5849624060150376,0.1144130757800891,0.701010101010101,0.8886010362694301,0.8703703703703703,0.740625,0.1296928327645051,0.4969015377553362,0.7091346153846154,0.627906976744186,0.5356435643564357,0.1101614434947768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293733985557,0.0048255796271327,0.0070929902179648,0.0093053495601292,0.0115124888129525,0.0140211182274536,0.0161905344507656,0.0181901699586587,0.0205562767686473,0.0229545105664432,0.0251296451923668,0.0271704543121676,0.0293228599041763,0.0315029556548783,0.033605297630713,0.0354998398114943,0.0375858105799397,0.0397471953839288,0.0415847557233646,0.0437215991995664,0.0581747540367221,0.0718144696890377,0.0858180367956508,0.0983340875367016,0.1107838790719277,0.1262625193215745,0.1398628129711822,0.1527086773557769,0.1651430098904036,0.1759596284962688,0.1898569009953306,0.2028927410617551,0.2154667247576516,0.2275658924914862,0.2384907738914899,0.2500499389634891,0.2614073543884763,0.2709289605160766,0.2802603579922393,0.2897348711115196,0.2984752489034324,0.3061978671734769,0.3136039886039886,0.3199148977089694,0.3265704015109973,0.3325378670788253,0.3385148975206404,0.3439974457215836,0.3500676308396629,0.3548870187528991,0.3566495939024555,0.3568752678361603,0.3575182378355407,0.3587880549298844,0.359577776448777,0.3597394798835974,0.3590241418272674,0.3606065105842366,0.3619009982646346,0.3628072317276791,0.3630554036986069,0.3643840514929376,0.3657528469000422,0.3661712540972565,0.3672637847481736,0.3675867652051289,0.3680418560768505,0.3693762053811376,0.3703507470594468,0.3721302295816334,0.3748041655146991,0.3755775222950467,0.3758252920264093,0.3795940335229893,0.3784012804820638,0.3762046400951814,0.3703533731069298,0.3755839934998984,0.3799725651577503,0.3767727098505174,0.0,2.194572889491843,65.96056413552847,217.61528019241533,333.99727751000285,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,67 -100000,95835,41491,389.58626806490327,7364,75.68216204935567,5718,59.15375384775918,2333,24.02045181822925,77.36488025655099,79.67819940293649,63.35773544642036,65.07054126158563,77.07986223087202,79.39172428066794,63.25268744021783,64.96715259343159,0.2850180256789656,286.4751222685413,0.10504800620253,103.38866815403946,81.31046,56.95458604960658,84844.22183962018,59429.83883717492,222.26738,134.49720166976792,231435.7698126989,139851.0895495048,264.0652,126.2750453446145,272015.4745134867,129003.22374927728,3306.827,1491.2475470465547,3423813.6380236866,1529328.8955460468,1401.93034,608.6236062776961,1449218.218813586,621434.2842152613,2306.01798,959.9916257212428,2377132.4463922363,976533.159987582,0.3813,100000,0,369593,3856.555538164554,0,0.0,0,0.0,18434,191.8297073094381,0,0.0,24658,253.8529764699745,2091174,0,75072,0,0,3219,0,0,50,0.5112954557312047,0,0.0,0,0.0,0,0.0,0.07364,0.1931287699973773,0.316811515480717,0.02333,0.320360824742268,0.679639175257732,25.48419069792159,4.61823327789759,0.3356068555438964,0.2004197271773347,0.2226302903112976,0.2413431269674711,11.24587609585029,5.645684609285854,24.87164654657533,13151.910225459573,64.45543586900382,13.498460149619667,21.534621930304095,14.181472659789035,15.24088112929102,0.5416229450856943,0.7600349040139616,0.6909848879624805,0.5648075412411626,0.131159420289855,0.7077140835102619,0.906166219839142,0.8713080168776371,0.7132616487455197,0.1742160278745644,0.4871080139372822,0.6895213454075032,0.6318339100346021,0.5231388329979879,0.1198536139066788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.0045622288008435,0.0067274129393619,0.0092227684556941,0.0115516417364069,0.0137355923919683,0.0159942098717608,0.0181003328092778,0.0202302093555773,0.0223859972362966,0.0244639855696306,0.0265591166117627,0.0288081069692391,0.0309280472617614,0.0331288975931556,0.0350362853692023,0.0371634550739028,0.0388640225454846,0.0408676059847784,0.0427386885007126,0.0571872588080685,0.070874618504118,0.0839365212381501,0.0970787130376344,0.1093652916583295,0.1243994382437726,0.1391675582910473,0.1529401760278923,0.1651359510170992,0.1768857568195692,0.1904838744379182,0.2043439716312056,0.2168857981093122,0.2286023243621111,0.2400668256707297,0.2511669579452691,0.2611621817371441,0.2717437706428202,0.281106617272202,0.2894384644421821,0.2977317109809223,0.3053397661296917,0.312867260194611,0.3202633153800119,0.3268385121838633,0.3331649499778227,0.3397432689420478,0.3450613750556509,0.3506039538587019,0.3564035284344879,0.3574332875568839,0.3587466787813709,0.3586071645244578,0.3592650508209539,0.3602527043537861,0.3610552339419253,0.3610735908722529,0.3616452815252168,0.362125846249012,0.3637865106008653,0.3646303465206307,0.3656299840510367,0.3675067544748396,0.3691777272010275,0.3706692437786905,0.3718533668974197,0.3720970140716165,0.3732683914226073,0.3755438435145555,0.3756522437183913,0.3782723117410776,0.3782749326145552,0.3799025890797231,0.3818379048504571,0.3793070352241098,0.3825794032723772,0.3852140077821012,0.3810513193434448,0.3837111670864819,0.388235294117647,0.0,2.0268694595329344,62.624699556151,213.7531170696863,331.16970218562057,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,68 -100000,95632,41038,384.5679270537058,7286,74.87033628910824,5657,58.51597791534214,2277,23.34992471139368,77.2563444549925,79.6643843071954,63.27473565930678,65.05490371866883,76.97553166348676,79.38539880186738,63.17171074291647,64.95528991613878,0.2808127915057383,278.98550532802346,0.1030249163903107,99.61380253004393,80.84406,56.57521004698695,84536.61954157604,59159.28773526325,218.64104,132.23744419661878,227979.2328927556,137630.17653718128,258.8453,123.166394789182,266439.4344989125,125591.92008883048,3271.69508,1471.651889389197,3385864.187719592,1503914.0886295089,1406.10257,614.6835483907925,1450497.1662205118,623186.2314467636,2255.99774,939.8031547033876,2316503.3879872845,948581.3253568528,0.37794,100000,0,367473,3842.573615526184,0,0.0,0,0.0,18210,189.75865818972727,0,0.0,24179,248.64062238581224,2087826,0,75027,0,0,3262,0,0,43,0.4496402877697841,0,0.0,0,0.0,0,0.0,0.07286,0.1927819230565698,0.3125171561899533,0.02277,0.3157280041526084,0.6842719958473916,25.365931305676263,4.655041435063303,0.3264981438925225,0.1937422662188439,0.2375817571150786,0.2421778327735549,11.245343667461205,5.5260173943981,24.28667018957791,13076.138819630944,63.89879056356441,12.8506348225317,20.932221306330256,14.956448669962422,15.159485764740014,0.545872370514407,0.7655109489051095,0.697347049269085,0.5997023809523809,0.1131386861313868,0.7,0.9190751445086706,0.8410138248847926,0.7580645161290323,0.1655172413793103,0.4961421557166238,0.6946666666666667,0.6532200990799717,0.5522243713733076,0.099074074074074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408770952549,0.0047535550307612,0.0071139345842762,0.0093261406235713,0.0116085054430766,0.0137628230596049,0.0161069854741308,0.0182577955780783,0.0205592946423091,0.0228145841230164,0.0249038017546559,0.0266784506767241,0.028804974468786,0.0311159683272847,0.0332520711526145,0.0353159081972641,0.0373814336806095,0.0394228371977063,0.0414884650204476,0.0435698713869968,0.0581601939718239,0.0720144992823693,0.0854383202099737,0.0991515432228725,0.111231887881634,0.1267832197434703,0.140229470265451,0.1535659897125696,0.1655105334601695,0.176868266300382,0.189681008182318,0.2027062162806318,0.2141635716075065,0.2256021389905542,0.2360401892556606,0.2474578152753108,0.2583618587377229,0.2686649607142454,0.2777278773890601,0.2867274104335452,0.2957661524185129,0.3033768488217976,0.311101880970747,0.3178504077931126,0.3249424293007444,0.331231765811205,0.3368065581179306,0.3419829984938605,0.3474899963623136,0.3530462629684522,0.353928257785584,0.3547348641852497,0.3562863655024987,0.3564734769785113,0.3583856502242152,0.3581691487065643,0.3583884067202803,0.3589184546520654,0.3601544454786776,0.3617205230735977,0.3627921930554504,0.3637669592976855,0.3651944209636517,0.3661965494747733,0.3663970552622657,0.3663631353819508,0.3676673567977915,0.3717046894803549,0.3719864655293952,0.3729421612787499,0.3736032240337058,0.3734224598930481,0.3749046044263546,0.3725250363122085,0.373202614379085,0.3738583797888744,0.379226686884003,0.3868171739568635,0.3885714285714285,0.3836307214895267,0.0,2.463212457979865,60.8900817716704,214.6304719555489,327.6261501652323,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,69 -100000,95699,40958,384.8734051557488,7255,74.70297495271633,5587,57.86894324914576,2216,22.832004514153752,77.32722884548278,79.70586532668307,63.32110870231941,65.07680325627257,77.04890406199965,79.42634766708849,63.21863372715909,64.97675941525746,0.2783247834831286,279.51765959457475,0.1024749751603266,100.04384101510766,80.69996,56.472386698336095,84326.85816988684,59010.42508107305,219.7028,133.17725438063445,229083.9716193482,138669.70854516185,257.55233,122.1700852460747,266489.51399701147,125602.74819344551,3228.83572,1457.258642725253,3344858.943144652,1493661.8801923236,1388.22578,601.1711269870971,1434778.0959048686,612354.9919216482,2195.63664,917.9957284753846,2263009.7284193146,929806.1383817092,0.37713,100000,0,366818,3833.0390077221286,0,0.0,0,0.0,18302,190.7334454905485,0,0.0,24050,248.7277818994974,2091505,0,75121,0,0,3183,0,0,41,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07255,0.1923739824463712,0.3054445210199862,0.02216,0.3132940406024885,0.6867059593975114,25.33845145407704,4.574026047442065,0.3234293896545552,0.1968856273492035,0.2373366744227671,0.2423483085734741,11.078850945660427,5.507542585149778,23.589438491148535,13009.976044545194,63.0553876214271,12.88004620942401,20.49099906004404,14.827308001811383,14.857034350147677,0.5432253445498478,0.7427272727272727,0.7044825677919203,0.5965309200603318,0.1137370753323486,0.7023895727733527,0.8966480446927374,0.8724373576309795,0.7401315789473685,0.1464285714285714,0.4909652876842605,0.6684636118598383,0.6505847953216374,0.5538160469667319,0.1052141527001862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095693198615,0.0040842800822936,0.0065435730952622,0.0087855612094619,0.0112262433776349,0.0133892661867573,0.0154487793934697,0.017239794511454,0.0192563352627165,0.0215563588698528,0.0232696469043883,0.0253789901811757,0.0275969183612594,0.0295929933024214,0.0318695495123587,0.0338579908581356,0.0359699559699559,0.0380602360855888,0.0402442322494747,0.0422269476932057,0.0565832767535384,0.070667531869466,0.08345571266731,0.0961609275215941,0.1088364342066405,0.1237173384110864,0.1371537726838586,0.150083060016186,0.1620492547678829,0.1734983962152826,0.1873821859818822,0.2001428818843089,0.2131964235212217,0.224711235561778,0.2356942380716526,0.2466451691543942,0.2574238635348754,0.2679268635724331,0.2773217995436434,0.2870714154748808,0.2959633983899924,0.3036575656816372,0.3113058928042641,0.3175853962771061,0.3241901935264137,0.3311366160681229,0.3372350958104094,0.3429001096016109,0.3475434932084431,0.3528688524590164,0.3536710501444657,0.354365987482423,0.3552822916519603,0.356258955321089,0.3576897866762007,0.3578162245290273,0.3581370960053389,0.3594035151176364,0.3604406507124651,0.3617431684229327,0.3623506461838576,0.3635877847487482,0.366397313464162,0.3667458645268301,0.3678566252838027,0.3671184752117033,0.3683923549331344,0.369873417721519,0.3719847651290732,0.3727389146790459,0.3759377732774888,0.3781792762273485,0.380539989811513,0.3825052159802179,0.3899894726768111,0.3925233644859813,0.3986350240421901,0.402963572751595,0.4046355766545658,0.3968192397207137,0.0,1.9740411337144577,61.25681309725916,211.75194203959884,320.3282556973164,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,70 -100000,95771,41271,387.6538826993557,7434,76.26525775025843,5747,59.34990759206858,2354,24.140919485021563,77.38146625236273,79.70596988415902,63.35451413110488,65.06842246974618,77.09007421822822,79.41557136617281,63.246542692426935,64.9637729561013,0.2913920341345033,290.39851798620475,0.1079714386779429,104.64951364488684,81.29924,56.96713778741079,84889.20445646386,59482.65945579642,221.02272,133.70802344906025,230087.7614309133,138924.6288309177,260.4962,123.98812932443224,268343.183218302,126531.6029601312,3298.6288,1494.4226610845194,3407001.9108080734,1523754.3582087734,1403.97591,617.4548456813417,1444985.527978198,624887.8189510606,2313.47852,973.986856336435,2373974.8984556915,982040.9902482664,0.38137,100000,0,369542,3858.600202566539,0,0.0,0,0.0,18442,191.84304225705068,0,0.0,24379,250.90058577231105,2088878,0,75026,0,0,3228,0,0,44,0.4594292635557737,0,0.0,0,0.0,0,0.0,0.07434,0.1949288092928127,0.3166532149582997,0.02354,0.3171450538185545,0.6828549461814454,25.202947655019823,4.563030342893947,0.3389594571080563,0.2014964329215242,0.2274230033060727,0.2321211066643466,11.108096129600645,5.556718665608863,25.28541376428157,13100.823123882034,64.96250347303801,13.373157077881093,22.138562283187955,14.726591823587274,14.724192288381664,0.5448059857316861,0.7417962003454232,0.6909650924024641,0.5837796480489671,0.1221889055472263,0.7087988826815642,0.9196428571428572,0.8478260869565217,0.7184466019417476,0.195729537366548,0.4903823870220162,0.6690997566909975,0.6359223300970874,0.5420841683366734,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021262377741327,0.004337427540638,0.0067051460220529,0.0089467056625233,0.011266230795042,0.0133965836675692,0.0155842302674494,0.0178267125174746,0.0200449530036779,0.0220269274840399,0.0240953981067901,0.0258346500318059,0.0278605635829239,0.0299873379932263,0.0321562967163255,0.0340906743777754,0.0361666459704458,0.0383287543414027,0.0403490546436733,0.042470560061639,0.0566884431550165,0.0700241715236431,0.0836532209007194,0.0966307490144546,0.1090190290443308,0.1247091424461649,0.137856415478615,0.1508851488732049,0.1633232925292144,0.174625809495218,0.1892380737056296,0.2020895748385771,0.2145599286576546,0.2261886528236658,0.2379982831106513,0.2494209178867104,0.2602476634992239,0.2702632734149004,0.2797396608321312,0.2884352961412763,0.2965760964022942,0.3050074983597338,0.312794018319489,0.3201357737424137,0.3264088102299801,0.3330373877873138,0.3388500106410946,0.3443873004557374,0.3503857874602866,0.3557589444906692,0.3567740978877701,0.3584061045150271,0.3592356328327876,0.3603612746092957,0.3615129910807505,0.3609309189288898,0.3615373629338115,0.3622334824953935,0.3637001900782574,0.3648440852524675,0.3651034922779561,0.3672827291435808,0.3671750273086295,0.3672062686634186,0.367847148509119,0.3700070627010908,0.3687623182610186,0.370411183174863,0.3712283913671091,0.3721217925695358,0.3752858318851184,0.3762028815992344,0.3803179790108716,0.3836439710916698,0.3874976285334851,0.3882788254953449,0.386825615161241,0.3903916027452563,0.3908866318967883,0.3931591083781706,0.0,2.482515955871188,62.95911817218688,220.08519990841037,325.8205725098944,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,71 -100000,95764,41170,385.9070214276764,7286,74.81934756275845,5692,58.93655235787979,2318,23.78764462637317,77.31912755708531,79.66652054784528,63.32066847763053,65.0573638041922,77.03840232788261,79.3883518607514,63.21688756665158,64.95734911317918,0.2807252292027016,278.1686870938813,0.1037809109789549,100.01469101302972,80.74242,56.56907944827976,84313.95931665343,59071.3414730794,220.6021,132.91044706148,229846.2992356209,138277.9485696163,257.49942,122.31539773669536,266367.5598345933,125651.55957841437,3253.30552,1462.442800211613,3370224.5937930746,1500462.126553636,1357.13387,587.548262837473,1404340.7021427676,600996.1017802376,2274.88038,945.825328226443,2338260.703395848,955368.5016433496,0.3797,100000,0,367011,3832.45269621152,0,0.0,0,0.0,18326,190.84415855645128,0,0.0,24023,248.31878367653815,2092212,0,75154,0,0,3198,0,0,50,0.5221168706403242,0,0.0,0,0.0,0,0.0,0.07286,0.1918883328943903,0.3181443864946472,0.02318,0.3201828870019595,0.6798171129980405,25.424435531044228,4.537016088106606,0.3350316233309908,0.2027406886858749,0.2338369641602248,0.2283907238229093,11.052464194804395,5.565414425687474,24.502743789994277,13103.435039526265,64.15238005605778,13.603650721315198,21.61331829302951,14.685072499521215,14.250338542191855,0.539353478566409,0.7625649913344887,0.6743576297850026,0.560480841472577,0.1215384615384615,0.701098901098901,0.9173789173789174,0.8375,0.7052238805970149,0.1654135338345864,0.4883290963716201,0.6948941469489415,0.6194814295725298,0.5239887111947319,0.1102514506769826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886307709445,0.004246090860264,0.0063410575869485,0.0084807735277986,0.0107188984145386,0.0131170246351572,0.0154269691562579,0.0178695421312747,0.0199280178319461,0.0221125693577117,0.0242789619923513,0.026470890235137,0.028724224816167,0.030883973916537,0.0330998049917972,0.0350875379813555,0.0371033697396345,0.03900172188453,0.0411683413169297,0.0430453574962245,0.0577226182896151,0.0716415100260457,0.0846190151554879,0.0971944730698858,0.1089523287440173,0.1246629659000793,0.1383965976221536,0.1515486843365289,0.1640487351706905,0.1753612933659248,0.189181330633871,0.2025953504480713,0.2151792707336176,0.2262273209462045,0.2377027532627594,0.2490584012761432,0.2597836160021437,0.2697333618467702,0.2794404832190381,0.2887796718907524,0.2974312649109397,0.3056339512606419,0.312831879385549,0.31962675185243,0.3263177115033475,0.3328803340663685,0.3386046978266595,0.3446164834323904,0.3503018500486854,0.3555238170805893,0.3565557729941291,0.3570029788172992,0.3581068667768969,0.3590305175214667,0.3597859942474777,0.3600510078662733,0.3603311563458391,0.3618423220110038,0.3624355394130445,0.3629890046815304,0.3632906626506024,0.3632394673652041,0.3646349433914528,0.3654274841818468,0.3680439571079321,0.3686504082114824,0.3711760316822591,0.3724137931034483,0.373911812584047,0.3752345215759849,0.3761232349165597,0.3772968339851074,0.377076306243238,0.3749518601247785,0.37660485021398,0.380080817684811,0.3805282555282555,0.384928716904277,0.3895671476137625,0.389739663093415,0.0,1.9428338560613292,60.502794965358575,218.98186109006377,329.3381000317163,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,72 -100000,95683,41114,386.0873927447927,7277,74.83042964789983,5697,58.965542468359054,2335,24.048159025114177,77.34181859432726,79.72309361625345,63.3271521787835,65.08500198274152,77.0506968942303,79.43104177736137,63.22021639774343,64.98014903828029,0.2911217000969657,292.0518388920783,0.1069357810400717,104.8529444612285,81.09332,56.807965488385136,84752.06672031604,59371.01207987327,219.85805,132.7747556576201,229196.35671958447,138184.06159675185,260.86104,123.52991039850448,268909.99446087604,126289.28562675342,3300.34356,1489.9414612097787,3417175.381206693,1525092.044783064,1413.71111,614.333092815592,1461202.3765977237,625758.2358575631,2308.39982,966.9499533787624,2378427.4113478884,981938.745811003,0.38062,100000,0,368606,3852.3666691052745,0,0.0,0,0.0,18286,190.52496263704103,0,0.0,24463,251.9360805994795,2091752,0,75090,0,0,3223,0,0,36,0.3762423837045243,0,0.0,1,0.0104511773251256,0,0.0,0.07277,0.1911880615837318,0.3208739865329119,0.02335,0.3083355108440031,0.6916644891559969,25.182579621966205,4.530922514888397,0.3257855011409514,0.1929085483587853,0.2403019132876953,0.241004037212568,10.97514189750547,5.542443765468556,24.95192083667476,13137.912037985709,64.34401757717427,12.933090336178532,20.88715074300268,15.290924714718324,15.232851783274745,0.5462524135509917,0.7843494085532302,0.6923491379310345,0.5902118334550767,0.1143481427530954,0.6844380403458213,0.909375,0.8521739130434782,0.7266881028938906,0.138047138047138,0.5017405430494314,0.7329910141206675,0.6396848137535817,0.5500945179584121,0.1078066914498141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025012404937671,0.0048247970240327,0.0070310359871351,0.0092827689870203,0.0113881319396429,0.0138877575955037,0.0158904891498231,0.0177005604156671,0.01984893549607,0.0220905117259875,0.0242496949562685,0.0264155206589501,0.0283124659211325,0.0303882774823791,0.0326266462986664,0.0346714384716432,0.0365388601036269,0.0385721553684341,0.0405621905039324,0.0426492358374512,0.0565787411856881,0.0703859605034449,0.0840400520592804,0.0972568578553615,0.1096636040464561,0.1255222601834124,0.1392266717599372,0.1518751530248352,0.1641610838649015,0.1761671367745948,0.1908736483866799,0.2044522807662769,0.2168167580266249,0.2285355053845733,0.2385949858640529,0.251043893362278,0.2622002946823235,0.2717813150345913,0.2809442742027012,0.2896171733602144,0.2978304888631761,0.305319933076716,0.3130799091081234,0.3199002410043045,0.3267409775487133,0.333436120087821,0.3387949392458975,0.344820557247143,0.3498670471496206,0.3549520977865874,0.3561545930201197,0.3569479660456399,0.3575572777707195,0.3585648717911593,0.3593031047576502,0.3602298391433268,0.3602444056498968,0.3606195782785468,0.3616959264847071,0.3630356535286428,0.3640170506825906,0.365673269486249,0.3678651827228545,0.3692695100838635,0.370587097398201,0.3703596668680871,0.3720415900735294,0.3738904387522191,0.3767704376841432,0.378055143075009,0.3802181617342477,0.3846648104519169,0.3881877839475012,0.3903428221610039,0.3881312893821123,0.3907522759942501,0.3888545847483791,0.3847405900305188,0.3843793584379358,0.3860808709175738,0.0,2.2731676153515923,61.30092163157641,220.63817598985736,324.5999457436758,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,73 -100000,95683,41084,386.07694156746754,7157,73.68080014213601,5577,57.74275472131935,2264,23.27477190305488,77.38307130315455,79.75925806974348,63.34642469116329,65.09742316008527,77.10280922293886,79.4801211968966,63.24341348994275,64.997803620475,0.2802620802156923,279.1368728468768,0.1030112012205393,99.61953961027348,81.5683,57.10761102792896,85248.24681500372,59683.96060943842,219.97488,133.31797883440183,229359.15470877796,138793.36094541542,257.26815,122.57790025568492,266259.5549888695,126027.34056991522,3205.05692,1436.111321816025,3318696.9890158125,1469989.9896700827,1332.0542,575.700561573281,1374425.1538935862,584120.7047478423,2227.981,925.5244889226452,2291957.401001223,934309.2364054036,0.37832,100000,0,370765,3874.920309772896,0,0.0,0,0.0,18295,190.62947441029232,0,0.0,24061,248.74847151531617,2088355,0,75024,0,0,3257,0,0,48,0.5016565116060324,0,0.0,0,0.0,0,0.0,0.07157,0.1891784732501586,0.3163336593544781,0.02264,0.310866392463845,0.6891336075361549,25.439523100005264,4.516757529108225,0.3171956248879325,0.2103281334050565,0.2404518558364712,0.2320243858705397,10.94494148883786,5.4118198383899045,24.06079148506222,12984.963044268963,62.44341847575659,13.620902957045308,19.87385536137729,14.82379603938759,14.124864117946384,0.5416890801506186,0.7800511508951407,0.6851328434143584,0.5585384041759881,0.1120556414219474,0.7015250544662309,0.9137466307277629,0.8447488584474886,0.7293729372937293,0.1358490566037735,0.4892857142857142,0.7182044887780549,0.6326070623591284,0.5086705202312138,0.1059280855199222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0043665025429051,0.0068660561251914,0.0090478898411795,0.0114991612017691,0.0137219174038295,0.0158820771065669,0.0178219640906817,0.0199625893103554,0.0221016532732763,0.0242882188297774,0.0264006407623428,0.0281591640698116,0.0303754441983828,0.032321294089732,0.0344578114018768,0.0363510167718142,0.0384128367999335,0.0405062501299943,0.0424483074870768,0.0572577696526508,0.0715452261306532,0.0849157556809836,0.0975163508653866,0.1093713755509162,0.12494052716719,0.1389015508888724,0.1510443253360558,0.1626048357839475,0.1738399065710949,0.1886256536053192,0.2018056982213331,0.2137631930781856,0.2252888388514215,0.2357496425035749,0.2472187749313004,0.2579488725835092,0.2684973474651679,0.2775159286306488,0.2862006120834909,0.2936811151245716,0.3022692145566952,0.309613812226712,0.3163814004849125,0.3229479677368337,0.3297172547422464,0.3361691997343725,0.341650207072316,0.346696246707923,0.3516586675128581,0.3525201191647682,0.3537685811508947,0.3542586350365993,0.3541929039822816,0.355297619047619,0.3554436134105324,0.3556173084557364,0.3560917799651051,0.3569713187868807,0.3576739103172754,0.3577799430370259,0.3588112081571355,0.3602614598173133,0.3614827077088273,0.36252193351441,0.3635581958883764,0.3635768563053191,0.3645382055628806,0.366226375324949,0.3682376237623762,0.3691831345050542,0.3697803651759724,0.371776369454728,0.3739763421292084,0.3747317346272277,0.3805506736965436,0.3798040693293142,0.3802678219771563,0.3806070373354821,0.381838481577968,0.0,2.066386056238405,60.92638113641134,201.5965233943885,326.92588387235975,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,74 -100000,95706,41205,386.5588364365871,7354,75.7528263640733,5717,59.29617787808497,2377,24.54391574195975,77.3960056150407,79.78200640885429,63.35197710932333,65.11375996522303,77.10290572378243,79.48399969367667,63.24456031253568,65.00638184850614,0.2930998912582794,298.0067151776211,0.1074167967876533,107.37811671688746,81.34456,57.00205882732958,84994.21143919922,59559.54572057089,223.84894,135.4610841131379,233432.3030948948,141078.78723709894,259.45352,123.79795831576764,268062.88007021503,126977.5951168881,3279.16472,1483.22641004228,3403204.020646564,1526688.1178215374,1400.7285,615.4419798412281,1452027.7516561134,631508.118447357,2342.13468,980.9422454490156,2420288.3413788057,1001539.9573748058,0.38064,100000,0,369748,3863.373247236328,0,0.0,0,0.0,18600,193.8749921635007,0,0.0,24321,251.21726955467787,2090324,0,74953,0,0,3242,0,0,54,0.5537792823856393,0,0.0,0,0.0,0,0.0,0.07354,0.1932009247583018,0.323225455534403,0.02377,0.3026315789473684,0.6973684210526315,25.150541848729517,4.557021814592673,0.3195732027287039,0.2022039531222669,0.2410355081336365,0.2371873360153926,10.918306792087527,5.398281312325761,25.29581069782368,13024.50911107326,64.37277980845018,13.630168661786406,20.40278678365279,15.403169314706018,14.936655048304964,0.536295259751618,0.7750865051903114,0.6672140120415982,0.5878084179970973,0.1039823008849557,0.696636925188744,0.9477806788511748,0.8755980861244019,0.7126099706744868,0.1365079365079365,0.4814553990610328,0.6895213454075032,0.6053938963804116,0.5467695274831244,0.0941402497598463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0045527367118898,0.0065569111467489,0.0089103378206756,0.0111997233129208,0.0135523153993402,0.0156611641873222,0.0180297910136908,0.020211004109673,0.0224262523286044,0.0245335247078121,0.0268899452755218,0.0287759425715284,0.0307678045363713,0.0325732562938506,0.0345148385896362,0.0370193901226383,0.0392867151739098,0.0412762461391266,0.043093565666882,0.0573183213920163,0.0715257429886982,0.0843445520047825,0.0969417256278976,0.1094281949934123,0.1251810885403999,0.139744337771177,0.1528815652210938,0.1646121306642169,0.1752466752466752,0.1888186449257412,0.2020162686050536,0.2141646199656589,0.2256643456018189,0.2366065537717176,0.2480624446412754,0.2584974064364995,0.2679034958591318,0.2776644453511038,0.2865262989352333,0.2945246621231373,0.3024529844644317,0.3099788438582184,0.316405080870117,0.3237114152591729,0.3299498006791673,0.3360683376419017,0.3421523695870203,0.3477760835293205,0.3523840885142255,0.3537388452854532,0.3545981431632148,0.3550539026655783,0.3559118815456843,0.3571598371616201,0.3565891472868217,0.3555379496117889,0.3563696098562628,0.3568679768074298,0.3583853263492858,0.3601756954612006,0.3605626557986784,0.3618296926753595,0.3632928656069041,0.3644314868804664,0.3657982073326887,0.3684225536890739,0.3697107490210938,0.3724514991181658,0.3727789338882664,0.3715615352716214,0.3738132274848468,0.3734870684163587,0.37549042234018,0.375548768849017,0.3790400385914134,0.3836886005560704,0.3829438294382943,0.3828603227601558,0.3708171206225681,0.0,1.6913566730610097,65.00010316850577,209.19819319262237,327.41275917527247,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,75 -100000,95825,41577,389.52256717975473,7199,73.91599269501695,5635,58.252021914949125,2242,23.02113227237151,77.38566316619061,79.7055796861788,63.36611244363343,65.08362260349462,77.11357768463515,79.43406251935308,63.26659087698924,64.9870714876552,0.2720854815554645,271.517166825717,0.0995215666441851,96.55111583941788,81.17318,56.83342817697646,84709.81476650144,59309.60415024937,222.05035,134.92221825305495,231180.6626663188,140256.44482447684,259.99573,124.48770919567306,267853.6811896687,127175.96285763705,3225.174,1456.1211522314054,3333952.183668145,1487976.9861392714,1368.06199,593.579349182583,1413111.1714062092,605093.1279656648,2207.56522,909.6066269301944,2268750.138272893,920154.4131761632,0.38296,100000,0,368969,3850.446125750065,0,0.0,0,0.0,18501,192.49673884685623,0,0.0,24354,250.6444038612053,2093140,0,75098,0,0,3127,0,0,35,0.3652491521001826,0,0.0,0,0.0,0,0.0,0.07199,0.1879830791727595,0.3114321433532435,0.02242,0.3220472440944882,0.6779527559055119,25.234796929836143,4.469241190511784,0.3217391304347826,0.2138420585625554,0.2333629103815439,0.231055900621118,11.187802103069954,5.762744451997255,23.70016289126065,13123.541746649098,63.50416567982182,14.03003737981214,20.605269215721897,14.556479039433404,14.312380044854375,0.54924578527063,0.7883817427385892,0.6993932708218422,0.5551330798479087,0.1129032258064516,0.7164285714285714,0.9324324324324323,0.8720682302771855,0.7272727272727273,0.149090909090909,0.4939787485242031,0.7245508982035929,0.6391369047619048,0.5072886297376094,0.1032132424537487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024105415615852,0.0046024553186744,0.0069013812911672,0.0092760043078048,0.0115138939745311,0.0138173302107728,0.0157783689569764,0.0181242983977956,0.0202565281823291,0.0225035305675515,0.0247286813761157,0.0268503217727781,0.029044193216855,0.0311892042120865,0.033317521861079,0.0353774802970675,0.037580837084174,0.0397396297601525,0.0413378468184083,0.0436008699362116,0.0588848902101914,0.0729257048474268,0.0859065467580655,0.0977746958330706,0.1100542476431242,0.1255452404338688,0.1397743524551088,0.15238763298579,0.1648499328057339,0.1760289597412472,0.1897239577172475,0.2027307293466989,0.2159776803161231,0.227236011963237,0.2381689785070233,0.2495991862097942,0.260043672987366,0.2698412698412698,0.279706335538838,0.2887831982347628,0.2964109554228419,0.3045985060690943,0.3120889759967885,0.3192120110930477,0.3256650675970344,0.3319778370210204,0.3381501447539183,0.3442764359650903,0.3497662283987291,0.3549160040023171,0.3560466461323254,0.3572862249106406,0.3575400903881622,0.3585500166216196,0.3590010405827263,0.3589837940603774,0.3590504451038576,0.3599683935009136,0.3611411318683203,0.3620374354561101,0.3633784291619691,0.3639682539682539,0.365475914164539,0.3678272227727232,0.3694095949913853,0.3704425711275026,0.3706923852022455,0.3723019299136617,0.3736017897091722,0.3764295172745877,0.3762699397784214,0.3789822535813555,0.3807016430882446,0.3805661820964039,0.3795169265880563,0.3832493400527957,0.3875212881250968,0.3908868001634654,0.3906640733537093,0.397919876733436,0.0,2.16912036702227,61.86306058889706,212.5180639545936,322.02602658234485,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,76 -100000,95771,41508,388.60406594898245,7378,75.85803635756126,5706,59.05754351526036,2299,23.65016549895062,77.37657405990127,79.72069892481306,63.3458979718325,65.07884994011654,77.08479265231324,79.42765734885089,63.23952472955833,64.97433000419608,0.2917814075880329,293.04157596217806,0.1063732422741665,104.51993592046448,81.82988,57.31307876863028,85443.27614831213,59843.87629724058,222.17796,134.0249520059043,231458.11362521013,139414.23185573143,263.80562,125.47059028787363,272282.6429712544,128495.28550204296,3291.7326,1485.533216537572,3410392.2481753347,1524531.1927587546,1380.17656,602.2218623469414,1429772.6138392624,617589.8293902727,2260.73092,945.4677194679892,2328758.580363576,960332.8428153588,0.38235,100000,0,371954,3883.785279468733,0,0.0,0,0.0,18472,192.3233546689499,0,0.0,24668,254.35674682315107,2087476,0,74946,0,0,3276,0,0,43,0.4489876893840515,0,0.0,2,0.0208831483434442,0,0.0,0.07378,0.1929645612658559,0.3116020601789103,0.02299,0.3133771082786146,0.6866228917213854,25.30660912403401,4.635794746408526,0.3298282509638977,0.2029442691903259,0.2344900105152471,0.2327374693305292,11.119440510344225,5.52797074978622,24.61474471683407,13160.69196561218,64.53914364312718,13.735088215573647,21.19335074646262,14.997813800984146,14.612890880106772,0.5520504731861199,0.7823834196891192,0.6981934112646121,0.5874439461883408,0.108433734939759,0.711781206171108,0.912087912087912,0.8663793103448276,0.7554179566563467,0.1345454545454545,0.4988317757009345,0.7229219143576826,0.6431593794076164,0.5339901477832513,0.1016144349477682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.004521079787935,0.006848759106313,0.0092649030842374,0.0114718086404686,0.0136963982036842,0.0160394000265114,0.0183873075509454,0.0205890471176356,0.0229908589327573,0.0250389471958019,0.0273965572104577,0.0293812260339457,0.0314311902040143,0.0334973641587488,0.0354835708896216,0.0375559145129224,0.0398340248962655,0.0418221700123709,0.0438848621178038,0.0588216876271982,0.0731607843137255,0.0869515084173672,0.099905422446406,0.111477621220584,0.1272554304740764,0.1407518924535103,0.153446753274389,0.1660277015409916,0.1775933431984387,0.1915865203390378,0.2049875581521151,0.2172352275694021,0.2284926530924846,0.2392417186829155,0.2499057879452905,0.2608700506934054,0.2712150542475127,0.2801543612734805,0.2885939092689519,0.2967685205539679,0.303668962936106,0.3113518884328314,0.3186822401916741,0.3256701256409633,0.3327785175321793,0.3387996597618333,0.3440821931743044,0.3499656997890213,0.3556268313930466,0.3568236276014323,0.357733647110634,0.3586958053289372,0.3595978591060321,0.3607125332698913,0.3605398359021547,0.3604992308546236,0.361201979188927,0.3622771412423572,0.3632429726056791,0.3638140706351145,0.3646902619793111,0.3650122974080848,0.3671631761675439,0.367868773368713,0.3686360779384035,0.3688864722548149,0.371315067629347,0.3731622183831047,0.3744056894002956,0.3743342516069788,0.3753282246396227,0.3762690355329949,0.3801075268817204,0.3871670931665245,0.3898609779482263,0.3893094392090221,0.3891034763163244,0.3872035300606729,0.3854365230651925,0.0,1.9884955520937808,63.34605005194057,218.90964075541515,322.06168252927534,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,77 -100000,95748,41121,385.6581860717717,7223,74.27831390734009,5575,57.60955842419685,2290,23.52007352633997,77.3313489084019,79.69851779302681,63.31030609897547,65.06372690428145,77.0497459559745,79.41831564612588,63.208316641619454,64.96535081847352,0.2816029524274057,280.20214690093326,0.1019894573560122,98.3760858079279,80.77212,56.55005961823616,84359.06755232486,59061.34814119999,216.6892,130.6640778275405,225685.95688682792,135840.6105898196,255.23412,121.1511815428933,262677.37185110914,123514.28011496896,3230.06964,1452.7932550427618,3339742.992020721,1483540.8938492315,1382.63205,599.7932528322079,1430696.3278606343,613093.0388438482,2260.04464,931.7364922373836,2322847.0568575845,939889.8906481904,0.38071,100000,0,367146,3834.50307056022,0,0.0,0,0.0,18097,188.3485816936124,0,0.0,23878,245.57170906964112,2093616,0,75152,0,0,3105,0,0,33,0.3446547186364206,0,0.0,0,0.0,0,0.0,0.07223,0.1897244621890678,0.3170427800083068,0.0229,0.3077227200843437,0.6922772799156564,25.335671831526103,4.650894509266402,0.3257399103139013,0.1949775784753363,0.240896860986547,0.2383856502242152,11.184744235483333,5.575425214165032,24.44592877142181,13086.164519940232,63.02085976780219,12.698226054231244,20.57423167281349,15.047385728793726,14.701016311963746,0.5461883408071749,0.7690892364305428,0.691079295154185,0.5867460908413998,0.1249059443190368,0.7078402366863905,0.8895522388059701,0.8755555555555555,0.7084639498432602,0.157258064516129,0.494435235614492,0.7154255319148937,0.6303074670571011,0.548828125,0.1174838112858464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0045529675410933,0.0069626998223801,0.0092359276569802,0.0114651366253636,0.0134431872574879,0.0155091719264614,0.0175725211105098,0.0198120058505252,0.0222053792736137,0.024398999015425,0.026557764421842,0.0286502284608735,0.0306712426181863,0.0327411979645131,0.0344028870712564,0.036646612337037,0.0388618510485954,0.0411230885975945,0.042881843179735,0.0574989821803263,0.0710847407965509,0.0837660634670862,0.097082886407134,0.1095623200936303,0.1253027594741239,0.1383533007205238,0.1509793688157039,0.1627357734437617,0.1746459227467811,0.1885245018267251,0.2017866811044937,0.214882060325028,0.226497083000405,0.2370179552385041,0.2489137181874612,0.2600330526832972,0.2699225608932511,0.2791969767468252,0.2880483976305327,0.2963018693211413,0.3045036183517178,0.312649645591826,0.3193692124764295,0.3257231870124496,0.3318646870796154,0.3374506733479486,0.3436170483784679,0.3493993097900827,0.3550173101826158,0.3556443017310001,0.3564608792692503,0.3575609687292833,0.3581383232753006,0.3587253910664367,0.3588784473639834,0.3586928974212761,0.3597764444809731,0.3605397907283407,0.3616013159541562,0.3638821100056317,0.3652432378876449,0.3665217299976894,0.3668057612060842,0.3688198248196317,0.3703965264699728,0.3707406243751964,0.3727919102543846,0.3754423213021939,0.3756970353432021,0.3784814780770291,0.3826876836761955,0.383673728276037,0.3848099325567137,0.386829727187206,0.3801224682053697,0.3831139355424421,0.3872568479555379,0.3831521739130434,0.3820053373999237,0.0,2.4427398033964214,59.59156654379011,221.88580311110337,310.73761680936417,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,78 -100000,95500,40731,382.4188481675393,7228,74.56544502617801,5623,58.39790575916231,2280,23.612565445026178,77.22623088476638,79.71357680340381,63.24095407219974,65.07629485382986,76.94917361779858,79.4317593554878,63.13966659809386,64.97501824633085,0.2770572669678017,281.81744791601204,0.1012874741058809,101.2766074990168,80.95538,56.679428970024894,84770.03141361257,59350.18740316742,220.10694,133.1518266666743,229997.7277486911,138945.25305410926,258.41533,122.5948884647778,267213.86387434555,125794.02251567846,3243.7464,1459.4115320267836,3371358.7853403143,1502945.311022811,1369.82717,592.2712838005792,1423212.9109947644,609018.2657597696,2254.14706,936.831465193368,2336619.497382199,960519.439745408,0.37542,100000,0,367979,3853.1832460732985,0,0.0,0,0.0,18374,191.90575916230367,0,0.0,24168,249.67539267015707,2084867,0,74858,0,0,3291,0,0,42,0.4397905759162304,0,0.0,0,0.0,0,0.0,0.07228,0.1925310319109264,0.3154399557277255,0.0228,0.317614606593984,0.682385393406016,25.36855624773674,4.607054836949901,0.3366530321892228,0.1952694291303574,0.2281700160056909,0.2399075226747287,11.09296299279612,5.445122811824259,24.318000439487232,12936.037697463898,63.58951647852276,12.879479323957536,21.517519160594976,14.36833692410339,14.824181069866862,0.5433042859683443,0.7686703096539163,0.6920232435287903,0.5876851130163678,0.1089696071163825,0.6985185185185185,0.9156976744186046,0.8558951965065502,0.7228070175438597,0.1140684410646387,0.4942663234261643,0.7015915119363395,0.6397212543554007,0.5490981963927856,0.1077348066298342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0044630630813393,0.0068024448189737,0.0088967971530249,0.0109341912363577,0.0132293736941344,0.0156124042082062,0.0179122473586332,0.0202256846757445,0.0222741337267678,0.024470356380358,0.0268764137363767,0.0291404094073067,0.0312200253720721,0.0333002707003078,0.035501304509877,0.0374880710343969,0.0393430694870329,0.041483487863319,0.043186801712436,0.0575785804749892,0.0713940996265055,0.0842105263157894,0.0971165398478173,0.1089823523195604,0.1246210916799152,0.137792094575918,0.1502885856635336,0.1626024096385542,0.1740364152281863,0.1874399473155775,0.2004902439288929,0.2124463051394431,0.2236899802674852,0.2346242965905329,0.245451817605939,0.2563887397064088,0.2660765631166488,0.2751609893735636,0.2844646485518476,0.2921577726218097,0.2998369558842504,0.3072239103598898,0.3136189296750069,0.3203336503987707,0.3266543730894419,0.3319502074688796,0.3381542435518727,0.3439377780090003,0.3495931727226948,0.3499188311688311,0.350312051253728,0.3515534447177225,0.3534166799461096,0.3540976759449864,0.3541259559015863,0.354158376442499,0.3552275279043656,0.3569512279012176,0.3584614001977173,0.3605970374279145,0.3611796054724785,0.3620504392895519,0.3628163311213587,0.3649536321483771,0.3662484611959454,0.3667688253659095,0.3689136208422916,0.369938520245919,0.3731408923716616,0.3738699463081088,0.3730235042735043,0.3736118122160525,0.376092408237708,0.3731231931362492,0.3746766988008465,0.3755189912348147,0.3814814814814815,0.3820005572582892,0.3757739938080495,0.0,1.9014054587051488,59.91246104216897,223.1934088884234,318.18531938237487,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,79 -100000,95709,41167,386.086992863785,7372,75.90717696350396,5741,59.39880262044321,2337,24.03117784116436,77.36399481233721,79.74895007901448,63.33329461681414,65.0973246886352,77.08344470939358,79.46607460402997,63.23155889406375,64.99704195715157,0.2805501029436357,282.8754749845075,0.1017357227503978,100.28273148363098,81.02248,56.80933218769584,84655.02721792099,59356.31151479572,222.20131,133.91879719849453,231579.6111128525,139339.05609555478,261.2319,123.92012564581204,268724.1952167508,126323.1372987456,3288.38372,1479.2160417155,3403663.7306836345,1513434.3078660308,1383.77091,597.7091078710034,1435572.4644495293,614288.6721238369,2295.49048,949.3222736144525,2362749.0622616475,964199.3915748493,0.37939,100000,0,368284,3847.955782632772,0,0.0,0,0.0,18495,192.63601124241188,0,0.0,24464,251.4392585859219,2093231,0,75117,0,0,3368,0,0,36,0.3761401749051813,0,0.0,1,0.0104483381918105,0,0.0,0.07372,0.1943119217691557,0.3170103092783505,0.02337,0.3230511099638616,0.6769488900361383,25.397060600905355,4.613918983138295,0.3274690820414562,0.2074551471869012,0.2353248562968124,0.2297509144748301,11.32941817246441,5.671782928318116,24.826510099490637,13072.03972091325,64.79709437115783,14.021191730588097,21.040307762153915,15.165242152762808,14.57035272565302,0.5413690994600244,0.746431570109152,0.6920212765957446,0.5595854922279793,0.1228203184230477,0.6840974212034384,0.8773841961852861,0.8662131519274376,0.6918238993710691,0.1148148148148148,0.495512082853855,0.6881067961165048,0.6386379430159833,0.5188770571151985,0.1248808388941849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024923759637693,0.0043607451803624,0.0066494761634045,0.0089131451104742,0.0112130893994586,0.0131833649163559,0.0155963115590191,0.0178316107684137,0.0201487118120544,0.0223225713963894,0.024345222224501,0.0264355184915116,0.028636083110471,0.0309009603099369,0.0329218956406869,0.0350503525713931,0.037104944218279,0.0390901449666379,0.0411222336566148,0.0432295573893473,0.0573988783406961,0.0714681962339986,0.084659526032542,0.0970608339029391,0.1096179183135704,0.1252484458916564,0.1396897432906721,0.1528470678339308,0.1647399152442864,0.1761421482997717,0.1902020701973358,0.2028294234076381,0.2158600367523133,0.2273457917354649,0.2379066851448558,0.2499723237019816,0.2607992504935366,0.2702626726037871,0.279500357373813,0.2876359473382942,0.2958041311035551,0.3036971213432172,0.3110040483912971,0.3176935986573963,0.3240139972297149,0.3304669212763336,0.3373834699368078,0.342698771898599,0.3479627473806752,0.3533815756521281,0.3543874751170173,0.3553230396942157,0.3565918752287379,0.3570066454781855,0.3581311796668547,0.3583342251303297,0.3579759158001201,0.3589886352471096,0.359837700530201,0.360406363263047,0.3617528385098996,0.3626821926489227,0.364063811922754,0.3632442147831948,0.3641802566824278,0.3650918635170603,0.3654778641723811,0.3678295185477506,0.3702096125344061,0.3733466135458167,0.3753823677121855,0.3779799914857386,0.3780573025856045,0.3780929623063285,0.380743146432324,0.3833615068823955,0.3824588880187941,0.3792029887920299,0.3842015855039637,0.380990099009901,0.0,2.261172679282721,61.841050039977695,223.8037605938885,324.2630964606176,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,80 -100000,95691,41373,387.1837476878703,7378,76.09911067916522,5737,59.59808132426247,2349,24.244704308660165,77.31725194233033,79.72592932452251,63.30264576078415,65.08524106825567,77.03267816162773,79.43724384724794,63.20006341901414,64.98290332414227,0.2845737807026012,288.6854772745693,0.1025823417700095,102.3377441133988,81.16152,56.866145133871576,84816.25231212967,59426.84801483063,222.06547,134.0671065986763,231724.85395700744,139763.89273670074,258.58543,122.59596076858652,268612.1683334901,126719.972685461,3299.6032,1476.6697220571036,3428897.890083707,1523877.064778405,1403.091,601.276996321211,1457955.3354024934,620035.3599828734,2317.98198,952.1669950170296,2395282.837466428,972478.0481684444,0.38064,100000,0,368916,3855.284196005894,0,0.0,0,0.0,18449,192.44234044999007,0,0.0,24161,250.82818655881957,2089713,0,75024,0,0,3331,0,0,41,0.4284624468340805,0,0.0,0,0.0,0,0.0,0.07378,0.1938314417822614,0.3183789644890214,0.02349,0.3165938864628821,0.6834061135371179,25.429093644558424,4.5836858073523405,0.3280460170820987,0.1981872058567195,0.2344430887223287,0.239323688338853,10.945021662575122,5.401107074512388,24.96993126496168,13124.374068272107,64.72323744449122,13.413527792816511,21.163353274524123,15.090755111964624,15.055601265185969,0.5365173435593515,0.7590149516270889,0.6822529224229543,0.5724907063197026,0.1172614712308812,0.681915654038599,0.8970588235294118,0.8251599147121536,0.7084639498432602,0.1328413284132841,0.4896265560165975,0.7001254705144291,0.6348195329087049,0.530214424951267,0.1134301270417422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0048978350149571,0.0071445243918528,0.0094401934782387,0.0117922368621864,0.0141998573902414,0.0161385754799747,0.0184190094802222,0.0206768840416607,0.0226418187220178,0.0245511439417256,0.0268398446330586,0.0290384674771223,0.0312181040259807,0.0335963480883233,0.0359840254929956,0.0380847733468782,0.0403028163163578,0.0423849603096162,0.0443117143035837,0.0586397826995403,0.0718219895287958,0.0862532278042533,0.0984850078905839,0.1105590717299578,0.1266309006063299,0.1400191021967526,0.1530556827499547,0.1652489848258174,0.1761109502204202,0.1896822832525579,0.2028572974728069,0.2147396139365846,0.2262474143308999,0.2366513943345521,0.2486424186005275,0.2593534853100347,0.2697935999100163,0.2786650936975361,0.2874612134605036,0.2948112661713994,0.302556784954034,0.3104509773741727,0.3171965664412794,0.3242001361470388,0.3312399753238741,0.3373921104388239,0.3431048089407092,0.349192158691906,0.3550294296196584,0.3566120042006624,0.3572637575857656,0.3583268783888458,0.3591118692088639,0.3599273084772019,0.3595217237616611,0.3593023440351685,0.3605618033029819,0.3613997842798199,0.3629127463957357,0.364394993045897,0.3668649613325401,0.3676315678590991,0.3691196652343135,0.3703227683876131,0.3710736421893056,0.3727997247864228,0.3759636041956274,0.3770845110231769,0.3791794830823313,0.3815475096489616,0.3821621911346947,0.3862521500923743,0.3880965230128749,0.3890898705255141,0.3900395067640368,0.3901526955437831,0.3952292823360065,0.3885245901639344,0.3902624572080639,0.0,1.4032816131301469,62.87971365396261,217.9341769224229,330.95228760440995,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,81 -100000,95859,41109,387.24585067651446,7205,74.10884736957406,5567,57.52198541607987,2250,23.190310768941885,77.4717338221379,79.75909499308283,63.40399372213196,65.09096528219959,77.2044320824131,79.4882366631683,63.30788168668519,64.9953117358837,0.2673017397248003,270.85832991453174,0.0961120354467723,95.65354631588718,81.5254,57.01474099684665,85047.20474864123,59477.71309615857,218.92173,132.35534852267918,227857.74940276865,137551.79849850215,254.12745,120.33293997669132,260804.3167569033,122252.2223841532,3183.26384,1414.871330072487,3292426.710063739,1447831.1624409894,1315.01842,564.4740259685317,1358944.3557725411,576061.0304347359,2203.52128,899.4731176479277,2273478.838711024,917740.8860459558,0.38011,100000,0,370570,3865.7820340291473,0,0.0,0,0.0,18239,189.7161455888336,0,0.0,23774,243.7851427617647,2095791,0,75115,0,0,3228,0,0,40,0.4068475573498576,0,0.0,0,0.0,0,0.0,0.07205,0.1895503933072005,0.3122831367106176,0.0225,0.3252331538158413,0.6747668461841587,25.456289223135883,4.464557300588599,0.3254894916472067,0.2137596551104724,0.2308245015268547,0.2299263517154661,10.920587273216098,5.541327698515604,23.64231310004816,12997.860894543326,62.24268286337026,13.827085700515216,20.42939072585329,14.18335361747814,13.80285281952363,0.5417639662295671,0.7831932773109244,0.6876379690949227,0.5525291828793775,0.1,0.7188693659281895,0.9224137931034484,0.8562231759656652,0.6996336996336996,0.1351351351351351,0.4873179896665101,0.7256532066508313,0.6292719167904903,0.5128458498023716,0.0926275992438563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019333940682255,0.0040522332870703,0.0059522602364679,0.0081912302070645,0.0102430696691325,0.0122193168984708,0.0142918262570287,0.0162894358367588,0.0184424973959928,0.0205248302380757,0.0225831890945216,0.0249625664061698,0.0269764957264957,0.0289124395513941,0.0306869253288253,0.0324146263385619,0.0344866821825704,0.0366462845890765,0.038729506069007,0.040803371663458,0.0557420807874377,0.0700465164898343,0.0831613031678001,0.0959025005253204,0.1073382022827152,0.1228038647751538,0.1365347301008344,0.1497335304817726,0.1616866826794769,0.1732733215453035,0.1872390789756832,0.2013291549600173,0.2135303569877529,0.225506784416038,0.2363638360256086,0.247899902732337,0.2584758977100597,0.2686396245691639,0.277892901224083,0.2877573651298115,0.2964600748164226,0.3043518831721741,0.3114256705704571,0.319060657874284,0.3261452256491735,0.3319673139875458,0.3381101712914954,0.3439504197305089,0.349822910472842,0.3553598230507939,0.3555200043020004,0.3564109247040425,0.3568980050576004,0.3577345877335792,0.3586885634671251,0.3575334514572004,0.3571101460718515,0.3586531060122176,0.3593723378880294,0.360774818401937,0.3627505984440455,0.3634534587845434,0.3642848178052964,0.3648823608196794,0.3659168305434313,0.3662547157538702,0.3663135773719932,0.368452380952381,0.3716065710705833,0.3729902269861286,0.3747685916828464,0.3773824650571791,0.3795017344686219,0.3819923371647509,0.3821904761904762,0.3818968626036783,0.3807987711213517,0.3797775530839231,0.3771209633278599,0.3810975609756097,0.0,2.192413514094592,57.77799069068389,211.55123230892696,323.4712091501007,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,82 -100000,95748,41350,388.01854869031206,7251,74.46630739023269,5649,58.507749509128125,2217,22.87254041859882,77.34438518034166,79.69920372217254,63.33412346583962,65.07301661510719,77.07645714376372,79.42766859673486,63.23614715979806,64.97570519841199,0.2679280365779419,271.5351254376799,0.0979763060415592,97.31141669520582,81.10388,56.849951150256295,84705.56042946066,59374.55732783587,224.71836,135.52700254278886,234167.5648577516,141015.37634497733,260.23525,123.47781537676563,268730.70977983874,126579.0293807897,3249.05432,1453.6592107022343,3365697.915361156,1490804.482917817,1331.932,578.2110749932012,1378192.23378034,591112.9602979232,2192.92422,905.379117601,2264295.692860425,922958.6568381484,0.38101,100000,0,368654,3850.2527467936666,0,0.0,0,0.0,18650,194.280820487112,0,0.0,24380,251.5352801102895,2089477,0,75027,0,0,3237,0,0,42,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.07251,0.1903099656177003,0.3057509309060819,0.02217,0.3160383554446341,0.6839616445553658,25.594316597642905,4.565011659330877,0.3329792883696229,0.199150292087095,0.2370331032041069,0.230837316339175,11.042470731589969,5.531043010810933,23.447490978909588,13097.48650456565,63.297570312655495,13.129958074544566,21.25905094933921,14.619872331273807,14.2886889574979,0.5478845813418304,0.7591111111111111,0.7139819245082403,0.5728155339805825,0.1004601226993865,0.7212990936555891,0.9114285714285716,0.8881578947368421,0.7380073800738007,0.1255060728744939,0.4947976878612716,0.6903225806451613,0.6582456140350877,0.5308988764044944,0.0946073793755913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021879178315303,0.0045420903754321,0.006645765480575,0.0090389283284076,0.0111230859954856,0.0133763602862581,0.0154705366788283,0.0176539619368335,0.0199446209806786,0.0222858896961015,0.024561439462251,0.0270447804086994,0.0290978634148347,0.0312767118773236,0.0332790030741298,0.0353728983455445,0.0371071916532107,0.0392305299180752,0.0409469767828563,0.0428610115823681,0.0575210614775918,0.0712103137230279,0.0852806678972982,0.0982175719017824,0.1103214104943479,0.1256106587712805,0.1386116561489102,0.1515325609353888,0.164007262629499,0.1750396672241519,0.1895595818665288,0.2023559699716591,0.2155344872575454,0.226611431132292,0.2374437760499719,0.2483975600845778,0.2589162165781368,0.2688656964844013,0.2784610497174885,0.2875170336780148,0.2954971423282505,0.3036401717702398,0.3106958137553112,0.3176539744235706,0.3242185601088911,0.3310092920517788,0.3378127663841949,0.343821313377274,0.349979252035894,0.355288023152859,0.357039871720588,0.3577318594182349,0.3582878653301188,0.358607920849365,0.3597505618311976,0.3598955934285275,0.3594472242077675,0.3599874930059573,0.3612595942982456,0.3627930299611382,0.3649118193940988,0.3663121199516707,0.3674018063432052,0.3668215383924764,0.3677177721396641,0.3711108203584979,0.3722347823598432,0.3735850249794473,0.3763759525825571,0.3781764423845293,0.3797161172161172,0.3820224719101123,0.3849178664298852,0.3857697874609583,0.3878879351004622,0.3807546274323683,0.3834436067087244,0.3804213135068153,0.3832635983263598,0.381174640217814,0.0,1.942447835992336,58.56430891173311,218.77951876011,326.05348196337115,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,83 -100000,95650,41082,385.88604286461054,7345,75.45216936748562,5735,59.16361735493988,2303,23.565081024568737,77.28108161739658,79.66650578840908,63.29287913429015,65.05469176638752,76.99640490410958,79.384251431516,63.18800186456361,64.95372685504061,0.2846767132869985,282.2543568930769,0.1048772697265434,100.96491134690666,80.82338,56.57912902011317,84498.63042341871,59151.79887100176,220.73723,134.03628887313738,229980.491374804,139338.131748281,261.19167,125.03635936879124,267073.0162049137,126253.2166884475,3283.79424,1474.2870358529312,3392437.1353894407,1500741.7964119518,1404.83725,602.8202116078036,1451085.436487193,612710.6399300625,2269.75828,943.7434247220084,2326923.4082592786,948660.1517830878,0.37823,100000,0,367379,3840.8468374281233,0,0.0,0,0.0,18395,191.4898065865133,0,0.0,24435,249.4929430214323,2086654,0,74938,0,0,3178,0,0,38,0.3972817564035546,0,0.0,0,0.0,0,0.0,0.07345,0.1941940089363614,0.3135466303607896,0.02303,0.3106267029972752,0.6893732970027248,25.4569423243546,4.526332966984629,0.3251961639058413,0.2097646033129904,0.230514385353095,0.2345248474280732,11.021192198963854,5.416582785216847,24.638562248971265,13066.23114162383,64.67814531334973,14.057502087778706,21.113322587359693,14.731737158579856,14.77558347963148,0.5448997384481256,0.7655860349127181,0.6836461126005362,0.5816944024205749,0.1189591078066914,0.7005730659025788,0.9252873563218392,0.8354700854700855,0.7012987012987013,0.1801470588235294,0.4948144733809633,0.7005847953216374,0.6327845382963493,0.5453648915187377,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0047344356694613,0.0071343759197052,0.0093568083225813,0.011665276732502,0.0140625636430287,0.0160694985419173,0.0183158410585208,0.0204651162790697,0.0224567293421631,0.0247511047769427,0.0266540720358125,0.0287947346770876,0.0306830007109224,0.0327264846120502,0.0347194937860584,0.0365551745926516,0.0385789014821272,0.0407967961720497,0.0427758437389256,0.0566043649508446,0.0705841701307812,0.0840225879586867,0.0962396363789402,0.1084220409971831,0.1238825707484792,0.1378131634819533,0.1509671097477846,0.1626947215361751,0.1751403936390675,0.1887201501391375,0.2021804625354921,0.2144086255717708,0.2263409185483694,0.237455651292448,0.2487051803875032,0.2596401028277635,0.2696341861853742,0.2793512604277953,0.288123150336094,0.2962619530570849,0.3035546801725755,0.311254271070615,0.3180856943743542,0.3255420425355782,0.3316293140705069,0.3377603872731605,0.3433022442808477,0.3491226475134103,0.3547703554590242,0.3554915639195328,0.3566028608942022,0.3577269184439878,0.357992937791534,0.3587302536204809,0.3582183766473704,0.3584878653901205,0.3598844407758976,0.3605184892296584,0.3616077840011489,0.361793217909547,0.3623032261926138,0.3632437924684066,0.3631743019788561,0.3651271834989432,0.3651164622777763,0.3669885612461919,0.3689988894177375,0.3718704756523888,0.3727454110135674,0.3764124616862619,0.3779330204778157,0.3802192232148514,0.3825544222864971,0.3825105782792666,0.3798921959221936,0.3802170921877388,0.3804435483870967,0.3821932681867535,0.3833976833976834,0.0,3.028011193244452,60.97892707341085,217.3347014762672,331.8584358144411,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,84 -100000,95720,41244,388.0484747179273,7402,76.08650229837025,5736,59.28750522356874,2334,23.976180526535728,77.3612597271838,79.72587921995748,63.34108899169471,65.08857263098538,77.07656533025616,79.44180000977119,63.23662942288949,64.98726550007737,0.2846943969276481,284.0792101862917,0.1044595688052183,101.3071309080118,81.31574,56.98206401234504,84951.6715419975,59529.94568778211,220.98147,133.25004540490488,230256.08023401588,138601.85478991317,261.13611,124.72162698973383,268263.7484329294,126831.43460429134,3310.11008,1481.8712005331188,3423516.9243627246,1513530.6315640616,1380.90909,592.4636973784806,1428924.95821145,605225.2166511499,2304.05816,955.3780452602036,2369521.6673631426,965905.3933356416,0.37976,100000,0,369617,3861.439615545341,0,0.0,0,0.0,18374,191.30798161303804,0,0.0,24423,250.7730881738404,2091474,0,75046,0,0,3242,0,0,44,0.4387797743418303,0,0.0,0,0.0,0,0.0,0.07402,0.1949125763640193,0.3153201837341259,0.02334,0.3200205470656222,0.6799794529343778,25.277292069429663,4.563945740661685,0.3364714086471408,0.1966527196652719,0.2285564853556485,0.2383193863319386,11.067976328138576,5.476996871851688,24.862529440550453,13108.352121940028,64.39315517181092,13.152645847847394,21.636534072129265,14.622954101231068,14.981021150603166,0.5406206415620641,0.7588652482269503,0.6974093264248704,0.5758962623951183,0.1053401609363569,0.7060070671378091,0.9264305177111716,0.8611713665943601,0.7402597402597403,0.1218637992831541,0.4864614672529507,0.6780551905387647,0.6460176991150443,0.5254237288135594,0.1011029411764705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474660913078,0.0045218590315516,0.0067077997199163,0.0090317074905263,0.0111868198921997,0.0135231461681024,0.0155711459629229,0.0177668862000306,0.0199167748729641,0.0219287469287469,0.0237355561707319,0.0259025317105736,0.0281186041488825,0.0303486072193835,0.0324128536932697,0.0341266231080969,0.0363278620618236,0.0381162894471944,0.0399413514131813,0.0420109403490492,0.0567087814555706,0.0721380797370707,0.0856192764006755,0.0978654048370136,0.1098615005164744,0.1252867366462647,0.138611131729352,0.1511836995265202,0.1630529980988187,0.1750846803584444,0.1889689178859425,0.2019080996884735,0.2146763059194434,0.2267003344920312,0.2370156998988521,0.2489706924030458,0.2599424531037405,0.270026638492059,0.2792330022225246,0.2888397865958372,0.297135389561577,0.3048539604249699,0.3125332702430946,0.3195051556268787,0.3261800492521199,0.3329888027562446,0.3394573381825453,0.344917474123242,0.3503866129596291,0.3552852293590099,0.3565164679733279,0.3574445835683916,0.3584605194548965,0.3592556147256309,0.3604150847886611,0.3605593589782949,0.3601262209818597,0.3613152486642005,0.3625416916103652,0.3639114166532395,0.3647065460631476,0.3661969031386034,0.3665648372484989,0.3684778454690556,0.3703157130760856,0.3719090789646564,0.3728896430728523,0.3769289388454944,0.3792480883602379,0.3790325812527552,0.3808672533920059,0.3833865814696485,0.3825164224355735,0.3841332925710792,0.3793915418668174,0.383059719248156,0.386412542268675,0.3873009391588403,0.38568194680249,0.382711038961039,0.0,2.5208204593091663,62.202651013241926,211.0338691568008,333.63148649960624,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,85 -100000,95669,41252,387.45048030187417,7340,75.8030291944099,5679,58.9637186549457,2279,23.623117206200547,77.2430810454354,79.64788978385549,63.27207635196621,65.05036841637957,76.96052154798288,79.35809471782429,63.17038878384339,64.9470481794661,0.2825594974525245,289.7950660312034,0.1016875681228199,103.32023691347558,81.54036,57.1692052741981,85231.7469608755,59757.29366273098,222.4473,134.22745160941932,232130.2720839561,139917.09957718584,259.1171,122.69141381253148,267889.30583574617,126030.14949234642,3266.74404,1453.2601943923687,3395405.659095423,1499863.4584147856,1373.97821,591.1337148887816,1427935.3918197115,609676.7894328663,2252.62954,923.7307859537432,2336853.108112345,951966.3413749194,0.3796,100000,0,370638,3874.170316403433,0,0.0,0,0.0,18529,193.27054740825136,0,0.0,24238,250.35277885208376,2083444,0,74735,0,0,3167,0,0,44,0.4599190960499221,0,0.0,0,0.0,0,0.0,0.0734,0.1933614330874604,0.3104904632152588,0.02279,0.3157894736842105,0.6842105263157895,25.541759091929404,4.569267029681279,0.3282268004930445,0.2054939249867934,0.2271526677231907,0.2391266067969712,10.979246140940196,5.304003219583762,24.319919853222647,13077.477800925197,63.92515640235167,13.726205787475951,20.990511617882827,14.389090755432282,14.819348241560602,0.5370663849269237,0.7463581833761782,0.6915236051502146,0.5767441860465117,0.1075110456553755,0.7177777777777777,0.9166666666666666,0.8744493392070485,0.7440273037542662,0.1372549019607843,0.4807114807114807,0.673992673992674,0.6326241134751773,0.5275827482447342,0.1006346328195829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024221663693854,0.0043413872152232,0.0064668081175192,0.0086162224773671,0.0109344644146755,0.0132084118335964,0.0156003058883507,0.017756494036922,0.0200016361256544,0.0222110717430929,0.0240588241326619,0.0262690368362138,0.0283528213988214,0.0304522509529205,0.0326163246769332,0.0349801472412937,0.0368977697670323,0.0388068376423211,0.0408865867864869,0.0429284768626142,0.057604697818273,0.0717869225048964,0.0854311448907178,0.0985549345878985,0.1109457305422723,0.1269106999195494,0.140529401767505,0.1527342500799488,0.1645733481684354,0.1754314371932688,0.1891014230076275,0.202742250162584,0.2149391239953825,0.2263504265081085,0.2367339291814985,0.2484885462310721,0.2588870506170631,0.2692606740813359,0.2792008546037229,0.2881791188508145,0.2970113450685455,0.304607998126354,0.3118936782630326,0.3187152044538299,0.3249114608054328,0.3317402096995295,0.3376983380370022,0.3435549940660771,0.3493528096896605,0.3545960264900662,0.3553793792712244,0.3555138588043763,0.3559602414919338,0.3565904969169387,0.3571300582350306,0.3570065556615678,0.3565125983499506,0.3578369802340186,0.3590043319810218,0.3613688677888074,0.3624541639889616,0.3627092937396475,0.3642798284349975,0.3643792325056433,0.3651475441661813,0.3649625408884668,0.368119630925867,0.3705637075468695,0.3742843935568751,0.374282944170639,0.3768506056527591,0.3770854705469467,0.3802356859228897,0.3822937625754527,0.3818897637795275,0.3844396344396344,0.3894654088050314,0.3920796184947128,0.398658093374336,0.3998441153546375,0.0,1.5364190345649749,60.511019014612295,214.0559136826211,334.9417728653905,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,86 -100000,95811,41427,388.4627026124349,7391,75.87855256703301,5753,59.40862740186408,2321,23.838598908267315,77.44904619750217,79.77496431862407,63.38601454967061,65.10671303122841,77.16971069908735,79.49438502636464,63.284604886245525,65.00708434958284,0.2793354984148237,280.5792922594321,0.1014096634250876,99.62868164556936,80.48084,56.32930654791085,83999.58251140267,58792.10794993357,220.96583,133.1114529823637,230010.687708092,138315.18612932094,260.0079,123.70748474495272,266754.756760706,125607.64554691408,3308.37772,1489.377136521399,3420725.595182182,1522195.589777163,1425.62873,612.8887394602281,1473630.4390936324,625356.2424567413,2293.37236,946.0371813482636,2359108.3069793656,959529.8039387309,0.3833,100000,0,365822,3818.162841427393,0,0.0,0,0.0,18323,190.59398190186928,0,0.0,24381,249.88779993946412,2100815,0,75333,0,0,3184,0,0,43,0.4383630272098193,0,0.0,0,0.0,0,0.0,0.07391,0.1928254630837464,0.3140305777296712,0.02321,0.3182751540041068,0.6817248459958932,25.493655952791737,4.599779893780719,0.3210498870154702,0.2087606466191552,0.2324004867025899,0.2377889796627846,11.434927396966245,5.78666359698288,24.459222938359662,13230.723785093282,64.58409098178034,13.98588144318378,20.872721533685425,14.676441286936088,15.049046717975036,0.5520597948896228,0.7668609492089925,0.7033026529507309,0.5804038893044129,0.131578947368421,0.7037037037037037,0.9,0.8758169934640523,0.7556270096463023,0.127147766323024,0.501850994909764,0.7075812274368231,0.6462536023054755,0.5272904483430799,0.1327762302692665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799155383166,0.0045918522498048,0.0068592533966495,0.009254274133745,0.0116232954025443,0.0138474540030342,0.0161190012540399,0.0181059206564672,0.0205109862033725,0.0226335553713765,0.0247681508428549,0.0268370279146141,0.0289473684210526,0.031031536030146,0.0330339002279266,0.0352294563712626,0.0371459029797451,0.0391327340031729,0.0411644917296982,0.043098961044369,0.0576551954351522,0.0713464232691382,0.0853735222604175,0.0987371561849929,0.1110677933955703,0.1262549405026102,0.140668892775746,0.1540187591722143,0.1663394857569614,0.1783824883805607,0.19220304350164,0.2050628261503722,0.2178742440200219,0.2292689847859778,0.2405111933334065,0.2510142492344767,0.2617867525032578,0.2720405001908268,0.2822001856505694,0.2912468298032764,0.2999469079661134,0.3084568988648692,0.3158031363201926,0.3230671781817312,0.3295404973098735,0.3359889839677387,0.3418904752396166,0.34788676994912,0.3534091936504656,0.3587736035265478,0.3598093191889351,0.359935747823938,0.3607504215851602,0.3616631572874902,0.3624105383258998,0.3626076598863844,0.3628688653937194,0.3631407475319657,0.3639041667376164,0.3648747306754037,0.3658053176769754,0.3671605279251909,0.3686161191029587,0.3697428206907357,0.3711129296235679,0.3719416970327954,0.371778056569343,0.3725187958098713,0.3751586070774002,0.3770615586376823,0.379438140556369,0.380317868036603,0.3802772126144456,0.3796516534949743,0.3827113480578827,0.385709164774764,0.3890779702970297,0.3914115471543045,0.3845297718419588,0.3849404533230887,0.0,2.5234287868844034,62.84763764947098,216.88348957794224,325.2244195774145,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,87 -100000,95815,41473,389.4484162187549,7292,75.13437353232793,5641,58.372906121171006,2284,23.514063559985388,77.3497797498425,79.68281635940617,63.33168066437421,65.05972873377151,77.0742773638911,79.40555614181044,63.23287270769551,64.96261435014085,0.2755023859513983,277.2602175957388,0.0988079566786979,97.11438363065383,80.12642,56.14962920929114,83626.1754422585,58602.128277713455,219.52466,132.21999751032428,228631.0807284872,137513.13208821614,261.40771,123.882354505944,269324.2498564943,126598.48040587692,3248.02284,1446.8550156182962,3363519.8664092263,1483680.7760979978,1367.00547,583.6060613433008,1413485.9155664565,595869.2494320307,2250.42172,916.3016293406944,2319144.7476908625,930601.485820338,0.38177,100000,0,364211,3801.1897928299327,0,0.0,0,0.0,18210,189.54234723164436,0,0.0,24446,251.65162030997237,2097034,0,75221,0,0,3225,0,0,37,0.3861608307676251,0,0.0,0,0.0,0,0.0,0.07292,0.191005055399848,0.3132199670872189,0.02284,0.3133237635390839,0.6866762364609161,25.49637877682186,4.584820503094069,0.319092359510725,0.2084736748803403,0.2350647048395674,0.2373692607693671,11.10520222715695,5.503320685775075,24.080495349944574,13139.960092265095,63.53051010081965,13.773152062890778,20.38705304241663,14.90020118233471,14.47010381317754,0.5468888494947705,0.7551020408163265,0.6961111111111111,0.6033182503770739,0.1075429424943988,0.7204610951008645,0.9182058047493404,0.8632286995515696,0.7492063492063492,0.125,0.4902421819891841,0.6775407779171895,0.6410635155096012,0.5578635014836796,0.1035747021081576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020463156188585,0.004146937451205,0.0063734345505104,0.0083410377023031,0.0107822195097141,0.0129728628888549,0.0153038336052202,0.0173739064748935,0.0197573515132311,0.0216993009140318,0.0241412184395854,0.0263873915498742,0.0284509793840933,0.0305002368350598,0.0324207790064367,0.0344909536159704,0.0365812001200741,0.0386366700895126,0.0407484753088343,0.0426028110359187,0.0572212485394758,0.0706114852147726,0.084172684491306,0.0968494503877761,0.1091307693118458,0.1243272961799938,0.1378388697976326,0.1512716824518463,0.1626848934693223,0.174402642529278,0.1889186947200586,0.2029931177769121,0.2160001740095052,0.2276368564277986,0.238795464293963,0.2496316401706087,0.2605663661519236,0.2710067023525707,0.2805019173606226,0.2898096099465351,0.2985055636523469,0.306344121223459,0.3133524979001786,0.3205303248059787,0.3276188626098781,0.3337849321985885,0.3396068329039842,0.3449512809423258,0.3505281416662352,0.3557802743270538,0.3570302074487443,0.3583729748362633,0.3592768737916143,0.3605592133886359,0.361431423378326,0.3619000829060091,0.3619671818960865,0.363192021591732,0.3642158290639297,0.3653828921665263,0.3666422163290639,0.3677051686821151,0.3696137013970712,0.3720496754923758,0.3736016816062238,0.3742890839994758,0.3752576139226013,0.3775091528847368,0.3783308725304085,0.3792870752619879,0.3819736601426742,0.3844677789030435,0.386877971473851,0.3903586579251832,0.3884933067502136,0.3901013714967203,0.3851027661876062,0.3878960194963444,0.3829261597584408,0.3765625,0.0,1.989278143163204,61.729065247537214,210.9727833364632,326.04013485575643,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,88 -100000,95810,41612,390.3350380962321,7280,74.78342552969418,5719,59.22137563928609,2324,23.93278363427617,77.41775944651599,79.7450597890874,63.37436231324406,65.09471135151217,77.13808798568647,79.46339865493152,63.272254701762925,64.99406398692919,0.279671460829519,281.66113415588256,0.1021076114811379,100.64736458298285,81.48338,57.07990398097861,85046.84270952927,59576.14443270913,224.38964,135.90432631908686,233733.06544202063,141378.0777779844,261.98844,124.45635334740712,270485.30424799083,127635.27443371229,3274.57788,1471.9135427037668,3392327.898966705,1510828.7472119478,1399.34808,611.4435194740981,1447612.1699196326,625250.6622211646,2291.2455,945.5094045339732,2361500.6158021083,962542.9393857014,0.38425,100000,0,370379,3865.765577705876,0,0.0,0,0.0,18675,194.43690637720488,0,0.0,24491,252.65629892495565,2090622,0,75021,0,0,3248,0,0,44,0.4488049264168667,0,0.0,0,0.0,0,0.0,0.0728,0.1894599869876382,0.3192307692307692,0.02324,0.31522730233164,0.68477269766836,25.259042384205724,4.482983587044494,0.3283790872530163,0.2150725651337646,0.2194439587340444,0.2371043888791746,11.098743180607949,5.643106196009537,24.54858978291064,13226.448520387326,64.12821035544653,14.320173446820126,21.025511954682525,13.91249288006706,14.87003207387682,0.5490470361951391,0.759349593495935,0.7018104366347178,0.5936254980079682,0.105457227138643,0.6987600291757841,0.9245810055865922,0.8536585365853658,0.7366548042704626,0.1245551601423487,0.5018399264029438,0.6915137614678899,0.6538192011212334,0.5523613963039015,0.1004651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023592786480219,0.0045208964755253,0.0066970401112114,0.0089780829152363,0.0112564060847636,0.0134268496274278,0.015370502497197,0.0174940801829019,0.0197980334839224,0.0219943299865925,0.0244467450465871,0.0266072656723159,0.0287823029954153,0.0307001739882429,0.0331817572514203,0.0354586487910181,0.0373494225276317,0.0392510574769843,0.0412013422121567,0.0432365464899586,0.057268952277612,0.0712329339940203,0.0845570893997044,0.0972868502043002,0.10991638056322,0.1254476500353894,0.1398381390224783,0.1536188127232522,0.1655961932400136,0.1775247439907451,0.1920140233148363,0.2054143395737233,0.2169404662374184,0.2288038434241415,0.2404087013843111,0.2521185971899546,0.2628921142398501,0.273435920476244,0.2831875453226976,0.2922395845249262,0.3009614495701211,0.3083733370709088,0.3155886348868805,0.3223987453158858,0.3296396538540895,0.3365066072242269,0.3417170858542927,0.3484650098519036,0.3536831483350151,0.3582903910275841,0.3591909193609123,0.360320321422183,0.3607726011186092,0.3613415021818917,0.3626904496469714,0.3628237170149803,0.3628213454136505,0.3636139670860296,0.3650576909947429,0.3663090626729262,0.366267951554239,0.3668995185097482,0.3678071865315353,0.3680414442980595,0.369723400154202,0.3701247846290398,0.3724494163979338,0.3746022745172164,0.3778129395218003,0.377592039800995,0.3786465477823502,0.3836464560204953,0.3854536239229599,0.3894116746997169,0.392022792022792,0.391973083393415,0.3892627954296447,0.3897921383000617,0.388290527478597,0.3816556548775748,0.0,1.8184046659206847,60.79028528347544,218.884374562334,328.4424072415703,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,89 -100000,95728,41114,385.6029583820826,7247,74.42963396289487,5658,58.572204579642325,2255,23.18026073875982,77.3893283971574,79.74922176898738,63.35181630130408,65.0932448544143,77.12059905093176,79.4795659005694,63.254191895900135,64.99773597511509,0.2687293462256406,269.65586841798483,0.0976244054039412,95.50887929920292,81.0051,56.73174656501956,84620.06936319573,59263.482539089455,219.31608,132.29458349148908,228601.9242019054,137696.96796286257,258.1115,122.17956435431692,266683.0185525656,125354.95578494245,3255.71632,1453.516994437177,3372206.2092595687,1489581.1407709098,1388.06056,598.902713994307,1436889.8545879992,612518.4639939894,2223.93942,908.7159911812936,2289165.3016881165,921246.9305912316,0.38017,100000,0,368205,3846.3667892361696,0,0.0,0,0.0,18218,189.7772856426542,0,0.0,24212,249.8850910914257,2093972,0,75109,0,0,3177,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.07247,0.1906252466002051,0.3111632399613633,0.02255,0.3197011403853716,0.6802988596146284,25.54060594110438,4.548781211125552,0.3412866737363025,0.1952986921173559,0.2301166489925769,0.2332979851537645,11.164677702825491,5.625638256913087,23.6194496970579,13072.17909007284,63.27214406255278,12.892152882422046,21.61655368342248,14.480158124640065,14.283279372068206,0.5542594556380347,0.7819004524886878,0.6991196271361989,0.5837173579109063,0.1227272727272727,0.7060561299852289,0.9141104294478528,0.8769230769230769,0.7322033898305085,0.1546762589928057,0.5065055762081785,0.7265725288831836,0.6443089430894309,0.5402184707050646,0.1142034548944337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.004439174191979,0.0068165910958278,0.0092503274676847,0.0113456142491155,0.0135374468171732,0.0159689385292678,0.0181628946348033,0.0204154618001982,0.0225623919205148,0.0246234245312019,0.0265420445684737,0.0286683107274969,0.0307565620174987,0.0331143584930955,0.0350728531569701,0.0371033697396345,0.0389167211210339,0.0409001143332294,0.0429397364446064,0.0575047511642963,0.0710817654814473,0.0844232806452627,0.0969108802624384,0.1089992937183095,0.1241248757376425,0.1384310231443178,0.1511928715148031,0.1631501917591633,0.1747386479386694,0.1884583907649896,0.2021741481882098,0.2151779017056387,0.2277269944016794,0.2387695151335115,0.2489753417373773,0.2586478250678096,0.2687925313536921,0.2788166942786464,0.2869056210408147,0.2955523175131834,0.3033912769016751,0.310687302694586,0.3180773099583273,0.3245343500327837,0.3308908647570256,0.336374330480052,0.3423967646348132,0.3477562649744221,0.3531926121372031,0.3540938189251708,0.3550094881878936,0.3559474587235957,0.3571831067315889,0.3582751966750779,0.3589261416624623,0.3594889934624009,0.3600281514943206,0.3616295917497656,0.36318407960199,0.365103133305881,0.3664933884134169,0.3682311983557736,0.3682054267036805,0.3699392712550607,0.3706000364763815,0.369930987281127,0.3720762072434607,0.3726143699129947,0.3749503928883245,0.3778366284644537,0.3793342950259122,0.3802334432885054,0.3829868541730358,0.3824727617243013,0.3896119402985075,0.3898279041180086,0.3917022574740695,0.386523822948971,0.3817394726485635,0.0,2.0601659576165647,59.91614147796256,210.3208693306561,331.0168014901149,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,90 -100000,95671,41596,391.1007515339026,7269,74.7457432241745,5668,58.64891137335242,2371,24.3961074933888,77.35982293729873,79.73545388018877,63.33991942654043,65.08992407717557,77.06692001993407,79.44370605584479,63.23203346320239,64.98559123318437,0.2929029173646569,291.74782434398594,0.1078859633380417,104.33284399120168,79.7192,55.828016133836144,83326.39984948418,58354.168069567735,219.95089,132.94839555798404,229320.2015239728,138380.94674246534,257.34812,122.53411977968604,265994.10479664686,125689.79624649532,3268.04464,1466.567810621862,3382396.504687941,1499404.9718533957,1329.56686,576.8084591036982,1372963.9180106823,586144.0866131821,2326.3839,970.3784120213508,2394997.6063801986,981679.9262860228,0.38312,100000,0,362360,3787.563629522008,0,0.0,0,0.0,18313,190.79971987331584,0,0.0,24067,248.47654984269005,2097896,0,75244,0,0,3283,0,0,38,0.3971945521631424,0,0.0,2,0.020904976429639,0,0.0,0.07269,0.1897316767592399,0.3261796670793782,0.02371,0.3108143493061011,0.6891856506938989,25.270269864180623,4.613059018765495,0.3373323923782639,0.1910726887791108,0.2385321100917431,0.2330628087508821,10.909576473083854,5.403439865495763,25.35049707670601,13160.584691610617,63.678185697795776,12.66808391901736,21.41117493174825,15.091733995938975,14.507192851091174,0.5271700776287932,0.7368421052631579,0.678347280334728,0.5591715976331361,0.1037093111279333,0.6888726207906296,0.8734567901234568,0.8549450549450549,0.7204968944099379,0.1396226415094339,0.4758251975825197,0.6785243741765481,0.6231983527796843,0.5087378640776699,0.0946969696969697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987807347996,0.0043380869847254,0.0065946329833105,0.0087952712721659,0.0110623068163331,0.0131915110183724,0.0151621679454651,0.0173142064237032,0.0195713906310649,0.0215647761682625,0.023726347924969,0.0259453803065432,0.0279673560004933,0.0302412504247366,0.0323269415247506,0.0347172697487416,0.0367310599002008,0.0389051382579293,0.040795957831701,0.0428126270153095,0.0571906179804628,0.0716005947519423,0.0847564367659252,0.0981060606060606,0.1107419361643777,0.1257618725133327,0.1395923999575416,0.15244344084189,0.1651610558162905,0.1774827186466875,0.1915235242138839,0.2044076239982672,0.2171556677694584,0.2287224727463771,0.2393092739226677,0.2511965433192998,0.2620881328690062,0.2719075352476895,0.2810851886717553,0.2897342843077768,0.298535434163948,0.3063414063414063,0.3134734649434266,0.320018690021206,0.3266571986939053,0.3336042759673883,0.340266920161603,0.3457256638294082,0.3513513513513513,0.356709853797694,0.3580105586381512,0.3584180510786015,0.3592885375494071,0.3601875162774546,0.3617514947794271,0.360842615606493,0.3599822199644399,0.3611985043403778,0.3626081285184677,0.364676759704384,0.3650954934612851,0.366596513521026,0.3676340507981972,0.3687748724059626,0.3702477341389728,0.3725551802686356,0.3740490762454956,0.3768491591857377,0.37645400070497,0.3777254212922291,0.3794100105519108,0.3786756814767117,0.3806422779799527,0.3829377311960542,0.3842865285958579,0.3868049692437583,0.387542715128922,0.3805128205128205,0.3787547788093938,0.3859581070597362,0.0,2.321906996393838,60.13902872060133,215.19913891069476,327.69850042217394,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,91 -100000,95857,41597,390.5400753205295,7288,74.91367349280699,5627,58.14911795695672,2312,23.764565968056584,77.34109898624328,79.63300506830845,63.34986309044478,65.04453506593171,77.06042272442116,79.35005491141936,63.24703474345677,64.94270250562019,0.2806762618221228,282.9501568890862,0.1028283469880051,101.83256031152156,80.20782,56.23518623470208,83674.45256997402,58665.70645305202,219.02716,132.5557133562222,227963.6541932253,137755.20968933,261.11582,124.44153727784952,268562.6714793912,126810.9549198187,3237.88612,1464.0714338502407,3349083.90623533,1498622.9678126276,1409.88697,616.4505200460221,1456340.9662309482,628739.8316854812,2274.26482,947.0951469403346,2340524.719112845,962693.4464631596,0.38321,100000,0,364581,3803.384207726092,0,0.0,0,0.0,18195,189.2506546209458,0,0.0,24467,251.44746862513952,2094845,0,75248,0,0,3200,0,0,38,0.3964238396778535,0,0.0,0,0.0,0,0.0,0.07288,0.1901829284204483,0.3172338090010977,0.02312,0.32041242495432,0.67958757504568,25.376968229148503,4.571777000931,0.3447663053136662,0.1977963390794384,0.2242758130442509,0.2331615425626444,11.41087553261721,5.828153925255024,24.67551334079593,13166.833116123777,63.54986752590157,12.920489831474509,21.906289058823617,14.147477520344294,14.57561111525915,0.5590901012973165,0.7538185085354897,0.7103092783505155,0.6053882725832013,0.1257621951219512,0.6979388770433547,0.9006024096385542,0.8732106339468303,0.7162162162162162,0.1517241379310344,0.5127962085308057,0.6914212548015365,0.6554100620261888,0.5714285714285714,0.1183953033268101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0045799515659989,0.0069378936798222,0.0090766950271082,0.0115870144126196,0.0137181470324839,0.0158317796998685,0.0180260137719969,0.0204583988723878,0.0224229466943543,0.0244502033248998,0.0264607242854066,0.028491316002999,0.0306394361849889,0.0325090159711488,0.0346265391006388,0.0367069236495988,0.0386245195246531,0.0407370879833895,0.0426337636936777,0.0575575575575575,0.0714076706029888,0.0848730517848165,0.0981149908112365,0.1107250405374102,0.1256270792628188,0.1397428020592784,0.1522016456530521,0.1646909443988007,0.1763968366231595,0.1905591960145044,0.2037759923874609,0.216505603687237,0.2280145604005203,0.2391263684876492,0.2502022138258856,0.261408658192248,0.271890541665729,0.2816848652698009,0.2904670798629807,0.2992848546565451,0.3069930151747376,0.3148707024084265,0.3216468896080546,0.3278485319852226,0.3338514872250391,0.3396921227000012,0.3450497949619215,0.3507762486068994,0.3565225437193502,0.3574973031283711,0.3582106002783021,0.3588733587462939,0.3599501116686486,0.3607386304312158,0.3602077826274051,0.3601284129557229,0.362200956937799,0.363425169072981,0.3653537918490104,0.3657466918714556,0.3670558234051879,0.3678503487634749,0.3687444928944217,0.3697593498308879,0.3704318936877076,0.3706263498920086,0.3724467069678651,0.3744381127667858,0.377201408901697,0.3790933725256051,0.3822883760775285,0.3844785977391083,0.383140293012196,0.3834414345669591,0.385040885040885,0.3821062441752097,0.3876967095851216,0.3894736842105263,0.3955659276546091,0.0,2.1460107544336933,62.23077438555872,210.8343877329476,323.5224404648254,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,92 -100000,95646,41121,385.5153378081676,7180,73.83476569851327,5565,57.629174246701375,2301,23.722894841394307,77.31769350596971,79.74069612444967,63.289715480586615,65.0815771283324,77.03435512771024,79.45404866021286,63.18624538306269,64.97912252860613,0.2833383782594723,286.64746423680754,0.1034700975239246,102.45459972627202,81.37426,56.92832141005103,85078.35142086443,59519.6639546557,222.2815,135.42370417174,231815.98812286972,141008.68456181246,258.2262,123.5182636104609,266588.9321037994,126553.37691678532,3226.02224,1454.395179831608,3341321.498023963,1489336.7530368632,1384.33216,598.638786370234,1435408.861844719,613949.1315582814,2271.27538,942.0516105866022,2342368.9229032057,958136.8085358732,0.37912,100000,0,369883,3867.1977918574735,0,0.0,0,0.0,18544,193.27520230851263,0,0.0,24130,248.8237877172072,2083637,0,74771,0,0,3191,0,0,42,0.4391192522426447,0,0.0,0,0.0,0,0.0,0.0718,0.1893859464021945,0.3204735376044568,0.02301,0.3202752779248279,0.6797247220751721,25.4126147514878,4.643097095412295,0.3358490566037735,0.1883198562443845,0.2273135669362084,0.2485175202156334,11.103418299254024,5.562924488168596,24.45176203779181,13103.745715193698,62.652722440840265,12.22169683716895,21.198553899177675,14.078137546099326,15.154334158394322,0.5297394429469902,0.7423664122137404,0.7051899411449973,0.5430830039525691,0.1193058568329718,0.7108167770419426,0.903726708074534,0.8702127659574468,0.7407407407407407,0.1703703703703703,0.4712315739419876,0.6707988980716253,0.6497498213009293,0.4824380165289256,0.1069182389937107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172704433098,0.0044923538717397,0.0067106598984771,0.0092074106444171,0.011395199772096,0.013620619396903,0.0158427356007589,0.0183185361517792,0.0203964672049778,0.0223561610135613,0.0243707140804007,0.0266007218286325,0.0286794084936359,0.03078256204997,0.0328360059513969,0.0352456641417277,0.0371806569343065,0.0392425706065044,0.0411389441039036,0.0434564965741638,0.0581264108352144,0.0715034159017561,0.0858586389084377,0.0985107010448264,0.1110090289878029,0.1261822302714496,0.1393245770636742,0.1526982807320479,0.1651512558298746,0.1760150375939849,0.1904017086641353,0.2035869094061551,0.2158814879363869,0.2273279817769649,0.2380044521831125,0.2487632822378491,0.26034530926971,0.270471771423423,0.2801780422168981,0.2890001833684789,0.2972622411636633,0.3048522095405326,0.3125088858347946,0.3192771084337349,0.3255695093457944,0.3315899194493443,0.3374239274712615,0.3433879141307392,0.3491520149369846,0.3545418484728282,0.3549879921206724,0.3557751954013481,0.3563755452351039,0.3579542987800466,0.35862612679618,0.3578940903717124,0.3576986597217811,0.3580592105263158,0.3593937112943511,0.3601885579601457,0.3619133235944113,0.3633418921587991,0.3635737253100597,0.3639975891242717,0.365728285933897,0.3669968717413973,0.3681107408356832,0.3707050738962628,0.3731259436115305,0.3751690667515315,0.3751259734310582,0.3787457191780822,0.3802629072204229,0.3834113404434896,0.3828798938287989,0.3838987099856665,0.3858754442899088,0.3845218800648298,0.38208460049765,0.3884644766997708,0.0,2.079356314541347,60.219652195675366,209.2555869520656,322.214253144179,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,93 -100000,95723,41324,387.4617385581313,7316,75.42596868046343,5665,58.73196619412263,2276,23.526216269862,77.34880342590687,79.70568603744066,63.338894218876014,65.07671951949611,77.07849821603685,79.4317796693345,63.24108648926962,64.97940313912073,0.2703052098700169,273.90636810615376,0.0978077296063943,97.31638037537492,80.18318,56.178348880703695,83765.84519916844,58688.45406088787,219.84808,132.67175246807585,229226.8002465447,138155.3466440415,258.54236,122.75869275251146,266459.7014301683,125548.01102897408,3252.75692,1450.182968745921,3374211.88220177,1491097.1122362672,1361.55491,581.090195611574,1412951.0671416484,597614.4036559386,2239.27548,916.1528058689032,2316105.805292354,937570.1247795394,0.38083,100000,0,364469,3807.53841814402,0,0.0,0,0.0,18240,190.0797091608077,0,0.0,24135,248.54005829320016,2096720,0,75188,0,0,3200,0,0,54,0.5641277435934937,0,0.0,0,0.0,0,0.0,0.07316,0.192106714281963,0.3110989611809732,0.02276,0.3183171521035599,0.6816828478964402,25.684913831879943,4.537637007514087,0.3274492497793468,0.2132391879964695,0.2254192409532215,0.233892321270962,11.081403797314128,5.613762088548952,23.981080170523555,13150.336227242611,63.484255077033225,13.9618464187437,21.091160107469456,14.058815103368651,14.372433447451437,0.5451015004413062,0.765728476821192,0.7072776280323451,0.5411119812059515,0.120754716981132,0.7037582903463523,0.9213483146067416,0.8586278586278586,0.663003663003663,0.1336032388663967,0.495125348189415,0.7007042253521126,0.6542940320232896,0.5079681274900398,0.1178107606679035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657600275434,0.0041762964765032,0.0065750088782913,0.0087871676876034,0.0111538148690418,0.0133964472947523,0.0156156033718287,0.0178319893845054,0.0198967860610086,0.021933370861266,0.0239940143082631,0.0261610304305434,0.0282524211954845,0.0305454320835134,0.0328440423754164,0.0348839612308582,0.0369645575125027,0.0391475321387439,0.0411844827765474,0.0433767830535671,0.0581576281629541,0.0721275103869057,0.0853572814922836,0.0980189999263568,0.1102603046027929,0.1258369207662122,0.1395528959904934,0.1520832002725085,0.1642881558707913,0.1757601758996085,0.1894427331279753,0.2031718214173671,0.2154881788720447,0.2269208057214093,0.2377106896096466,0.2491662696522153,0.2603071767662664,0.2696927735936145,0.279281529588083,0.2877994569389228,0.295706331106815,0.3036967711745437,0.3120242450071622,0.3192756645334483,0.3262971239797901,0.33291856597265,0.3394851019668155,0.3453449635073621,0.3507871011137125,0.3562037635330265,0.3575728194562275,0.3590636353627656,0.3604284103720406,0.3611512872432745,0.3619881910257745,0.3618041932319764,0.3620815369008369,0.3627148161535176,0.3645045353414342,0.3666869496742788,0.3687409714274994,0.3698117688973339,0.3717800684399471,0.3728611847128037,0.3742000917630581,0.3753694838996573,0.3771215596330275,0.3800797569312571,0.3802463906244484,0.3815079713908978,0.3816442891300349,0.3842173350582147,0.3846499390361291,0.3868692349430276,0.3866092778574844,0.3838896952104499,0.3853038153556288,0.3913497701629753,0.3940761636107193,0.3992932862190813,0.0,1.7400683613011227,60.35810612035489,210.86473941567823,332.8430473021267,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,94 -100000,95619,41212,387.20338008136457,7119,73.19674959997491,5534,57.11208023509972,2280,23.2798920716594,77.26744378178137,79.68285564728578,63.28338998351626,65.06932126757552,76.98663380250976,79.40913662798869,63.1792687332986,64.97228203029141,0.2808099792716092,273.71901929709,0.1041212502176591,97.03923728410756,79.92688,55.95060915702848,83588.91015383972,58514.112422247126,216.41731,131.1763103744496,225595.46742802163,136448.95928052964,255.0453,121.53305949427892,262879.58460138674,123982.178320402,3174.62684,1435.9645867250065,3276988.9666279717,1458665.9834604077,1351.37218,592.1270198184819,1391929.114506531,597897.426053903,2249.65904,938.8250415833736,2299317.75065625,934207.7935604457,0.38051,100000,0,363304,3799.4959160836233,0,0.0,0,0.0,18047,187.9542768696598,0,0.0,23898,246.0912580135747,2094901,0,75201,0,0,3229,0,0,34,0.3451196937847081,0,0.0,0,0.0,0,0.0,0.07119,0.187091009434706,0.3202697008006742,0.0228,0.3168872843963096,0.6831127156036904,25.23332230332076,4.604597117265034,0.3256234188651969,0.2103361040838453,0.2260571015540296,0.237983375496928,10.983735127735756,5.343007424828472,24.350052747707007,13097.297217479972,62.77427289743573,13.69801163330172,20.43847454310525,14.06315334286248,14.574633378166268,0.5411998554391038,0.7637457044673539,0.6809100998890122,0.5611510791366906,0.1343963553530751,0.7101556708673091,0.89501312335958,0.8482758620689655,0.7279411764705882,0.1915708812260536,0.4867383512544803,0.6998722860791826,0.6276517922457937,0.5148110316649642,0.1202651515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088475489898,0.0042993307645508,0.0066906270305393,0.0091049508170067,0.011332770424928,0.0134537825396178,0.0157839998368578,0.0180297910136908,0.020051329768198,0.0219250186890047,0.0242141428644684,0.0262768623905986,0.0281358338391268,0.0301291100371977,0.0323712787480903,0.0344692113642942,0.0364692843899862,0.0386671510873514,0.0409046459854774,0.0427710466498446,0.0569427750195975,0.0710499853354003,0.0843083709694359,0.0968784885312888,0.1086768308134133,0.1247445062218692,0.1386082873925836,0.151343977149191,0.1639798461719493,0.1753326960463143,0.1892918005910649,0.2019370355123177,0.2145391614785145,0.2261121751025991,0.2366276893263746,0.2482299365103987,0.2591368801768212,0.2694112748022014,0.2793058804824312,0.2887801075330452,0.2969748911331418,0.3047289153101705,0.3122394352851999,0.3190447617904716,0.3262331974940697,0.3325596898842003,0.3389552294911473,0.3452966198833389,0.3510432741561086,0.356484359500033,0.3573183904941939,0.358479637010578,0.359489308815637,0.3599965209323901,0.3609619286311015,0.3613531916201718,0.3604732523376375,0.361666035343138,0.3629895068925314,0.3633756363375636,0.3645625400173251,0.3645466308350751,0.3653963768268764,0.367131845659453,0.3681508922302123,0.3684528658905153,0.3699133329506973,0.3706391203777052,0.373227955769776,0.3746580852775543,0.3761535964383434,0.3766424150287762,0.3773669972948602,0.3761760360780655,0.3733614008228877,0.3721212121212121,0.3712406015037593,0.3772999793260285,0.3847695390781563,0.384739604360113,0.0,2.9807845986041106,58.82460571660121,220.0264951977529,310.67993428429804,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,95 -100000,95837,41370,387.8355958554629,7306,74.89800390245938,5607,57.91082775963354,2218,22.76782453540908,77.40182060844235,79.71491166358743,63.36325590393732,65.07552180629173,77.12633079811978,79.4399914245067,63.26212498991144,64.97706652261456,0.2754898103225685,274.9202390807284,0.1011309140258802,98.45528367716838,80.78708,56.57034249370818,84296.33648799524,59027.6641523714,219.93595,132.91200815949162,228815.49923307283,138018.2743783242,257.43184,122.03903657047168,265211.26496029715,124691.9358673104,3211.2676,1445.7521719253143,3319790.3523691264,1478188.463673565,1325.33527,573.9821139348967,1372378.0377098615,588636.9329980328,2192.75904,909.839605065674,2254248.129636779,920941.6878369856,0.38114,100000,0,367214,3831.651658545238,0,0.0,0,0.0,18281,190.11446518567985,0,0.0,24106,248.04616171207363,2095612,0,75245,0,0,3234,0,0,51,0.5217191690057076,0,0.0,1,0.0104343833801141,0,0.0,0.07306,0.1916880936138951,0.3035860936216808,0.02218,0.3227740842132707,0.6772259157867292,25.427091704932224,4.590330675140906,0.3351168182628857,0.2065275548421616,0.2229356161940431,0.2354200107009095,11.191650035271673,5.483481818488788,23.388299008958302,13104.5728418723,63.03906179410581,13.53936637744054,21.147087216794933,13.912999173488233,14.439609026382108,0.5468164794007491,0.7711571675302246,0.6955827567855242,0.564,0.1219696969696969,0.7063609467455622,0.9213483146067416,0.8752834467120182,0.7052631578947368,0.1481481481481481,0.4961222091656874,0.7044887780548629,0.6404728789986092,0.522279792746114,0.1152380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022985479657344,0.0046417821200174,0.0070405388954266,0.009323867272007,0.0115187930175577,0.0136304409788672,0.015726443459206,0.0177689324351908,0.0201974773596091,0.0222818132503607,0.0244374967966787,0.0265118857002093,0.0286574773607984,0.0307647955191301,0.0329317848965531,0.0351098344733524,0.0371501324942033,0.0389054220802787,0.0409746673729473,0.0430746495436522,0.0580591333368097,0.0719968219785274,0.0855163886327437,0.0983634109960293,0.1102170638974607,0.125851525617059,0.1389692250648869,0.1517094017094017,0.1639379255875509,0.1752059387486208,0.1893016952069529,0.2018414056927964,0.2141747340743396,0.2261705731300879,0.2364711832354816,0.2477385209871895,0.2580591187953151,0.2677665688226098,0.2778723307690562,0.286976930562711,0.2954495493515058,0.3039375051163008,0.3120673947253215,0.3195057052449899,0.3260032317243558,0.3326020238374028,0.3386898951215238,0.3438879489104023,0.3498977134422663,0.3552175002968611,0.3565265382492697,0.3581697368240036,0.3583255892540339,0.3597274944791652,0.360678610125718,0.3603737458834342,0.3601304499255929,0.3618431848764318,0.362399589813707,0.3637451123926511,0.3652512835888019,0.3659322838383039,0.3675219050014673,0.3686626657112146,0.3681806159986535,0.3701686257134666,0.3719658119658119,0.3741880824625812,0.3761973264095997,0.3788282025819265,0.3780459927764824,0.3805678840703705,0.3848296821577814,0.3835270724992352,0.3853443422781009,0.3789661319073084,0.3807615230460922,0.3809328128210396,0.379243183082916,0.3785575048732943,0.0,2.2809998327629657,59.54363462110189,215.5634817285753,320.89867314958474,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,96 -100000,95691,41526,389.5873175115737,7286,74.55246574913001,5718,59.12781766310311,2349,24.20290309433489,77.32145341825886,79.70972300518736,63.3143933609397,65.08075523023929,77.03272608761512,79.41879448079321,63.20810493768692,64.97595857998368,0.2887273306437379,290.92852439414685,0.1062884232527778,104.79665025560791,81.52584,57.137337208430885,85196.97777220428,59710.25196562988,222.6661,134.58890297574493,232017.7028142668,139974.35806475522,263.36047,125.70906402136696,270843.63210751273,128049.41170504494,3302.44524,1492.9066284093883,3418821.247557241,1527798.4642331945,1378.8198,602.6283437058639,1428204.596043515,617060.9604935297,2321.96248,969.6443615957544,2395683.564807557,987242.8753924004,0.38308,100000,0,370572,3872.589898736558,0,0.0,0,0.0,18577,193.4978211117033,0,0.0,24568,252.38528179243607,2086930,0,74869,0,0,3280,0,0,47,0.4807139647406757,0,0.0,0,0.0,0,0.0,0.07286,0.1901952594758275,0.3223991216030744,0.02349,0.3199583116206357,0.6800416883793643,25.268393347739018,4.626410582464824,0.3214410633088492,0.2053165442462399,0.2318992654774396,0.2413431269674711,11.13988886203523,5.551774686514299,25.001733546466017,13207.666279839625,64.28470163471383,13.695419962230792,20.657866362311932,14.851590764723152,15.079824545447936,0.5389996502273522,0.7768313458262351,0.6849836779107725,0.5784313725490197,0.1043478260869565,0.7302357836338419,0.946524064171123,0.8917748917748918,0.754601226993865,0.1464285714285714,0.4745088868101029,0.6975,0.6155523255813954,0.521,0.0936363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024215773688903,0.0046851232126559,0.0070245249309728,0.0090547860285972,0.011334038743285,0.0134768967484312,0.0157867362860377,0.0181539718194813,0.0203539189727966,0.0223862263803304,0.024390243902439,0.026956807492452,0.0290090627603872,0.0310986542464398,0.0331344577716303,0.0354635593833683,0.0374962451964409,0.0394470562595348,0.0415470693456466,0.0434188996237584,0.0580819685828877,0.0719863501235188,0.0853202921669045,0.0978869385865218,0.1098837331982865,0.1248703456743083,0.1386857440056043,0.1525270277467114,0.1648924800136804,0.1762238812373965,0.1907085986403353,0.2041488025637694,0.2169050856676638,0.2287568111692233,0.2404330699997799,0.2519630970971636,0.2625107394307265,0.272265260459416,0.2815768576290414,0.2907616167170745,0.2990789382333202,0.3065729292173079,0.3138374089644147,0.321645281208778,0.3286084197473832,0.3346846735835572,0.341095170134455,0.3479644170686078,0.3536066061790554,0.3591137620247819,0.3596923657130542,0.3599290048293226,0.3603314169766655,0.3612448840875237,0.362797206961752,0.3625249577637843,0.3621020877986822,0.3631710608604062,0.36375783739336,0.3648556693646587,0.3661746733101438,0.3676981401718902,0.3685262737010459,0.3689147844866373,0.3712321138900322,0.3727418549002077,0.3727110445698491,0.3751190400609485,0.3767591903293275,0.3770885923788917,0.3808407994486561,0.3817496635262449,0.382430266110933,0.385517830782379,0.3886922414617813,0.3889360669659105,0.3941194870190804,0.3886354209871422,0.3909014321819714,0.3924794359576968,0.0,2.484359225601624,63.2874319793523,207.09311874457376,332.9686798444678,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,97 -100000,95711,41085,385.9848920186813,7358,75.70707651158175,5728,59.324424569798666,2355,24.291878676432177,77.3455376358958,79.7307967421503,63.32130932583449,65.08647439703755,77.05827753408613,79.439850842909,63.217990654509805,64.98364257418515,0.2872601018096645,290.94589924130787,0.1033186713246863,102.83182285239434,80.89884,56.66463955817628,84523.6179749454,59203.56194014422,220.36426,132.78373917502722,229719.4784298565,138219.5677372744,258.70034,123.08593998928156,266249.0413850028,125588.44294570356,3300.6048,1481.8355397614882,3422074.369717169,1522124.8726256315,1391.93719,603.3194809654991,1442139.3883670631,618182.1535304182,2322.41072,952.7407011277184,2398586.557448987,973627.4117264516,0.3798,100000,0,367722,3841.982635224792,0,0.0,0,0.0,18384,191.51403704903305,0,0.0,24230,249.1563143212379,2094726,0,75031,0,0,3289,0,0,46,0.480613513598228,0,0.0,0,0.0,0,0.0,0.07358,0.1937335439705108,0.3200597988583854,0.02355,0.3193798449612403,0.6806201550387597,25.344893068383257,4.565434150375342,0.3379888268156424,0.1972765363128491,0.2241620111731843,0.240572625698324,11.252926871184522,5.75904221172584,24.936830456700363,13087.396902207433,64.38647185249313,13.109963535397236,21.93437115450312,14.275993196826551,15.066143965766212,0.5480097765363129,0.7690265486725664,0.7024793388429752,0.5809968847352025,0.1190130624092888,0.728,0.9302325581395348,0.8822314049586777,0.7394366197183099,0.1673003802281368,0.4911555249253388,0.6984732824427481,0.6425619834710744,0.536,0.1076233183856502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0046148384806531,0.0066703893598659,0.0088721315473891,0.0108854887279238,0.0133530250560195,0.0155717811180681,0.018044790294415,0.0198482493455497,0.022180805308647,0.0242859340546638,0.0265404011873337,0.0283695238487095,0.0303667295228085,0.0325173887019875,0.034529458590495,0.0366276841483752,0.0387114183116424,0.0407225232157898,0.0425192748489268,0.0571243577425957,0.0716139565062687,0.0849215011334061,0.0978653115761344,0.1098923120734935,0.1248122686409307,0.138866194866789,0.1519014301992481,0.1643845866068088,0.1759131060093806,0.1903098895176502,0.2041757813346039,0.2168939583582755,0.2280803483512395,0.2384600145281648,0.2496371392166639,0.2602037969173763,0.2701100285759287,0.2796823596142938,0.2882424991700722,0.2962620174230942,0.3044388071217311,0.3116506806381796,0.317990228949133,0.3249159679161256,0.3312413088689531,0.3368002600195015,0.3426426884096624,0.3486175710594315,0.3542911282469668,0.3550029555591381,0.3560920045014135,0.3569408686109821,0.3581915031830583,0.3585854838470328,0.3589253201548371,0.3593445428757072,0.3605177780339586,0.3614148130376666,0.3619520769065212,0.3633092169718894,0.3637521391332033,0.3644863758205112,0.3654244306418219,0.3662347099430786,0.3670247695096005,0.368624863748494,0.3705580540951416,0.3739915074309978,0.3756864002565233,0.3759008492081707,0.3773019271948608,0.378901294087795,0.3757585067977571,0.3809115179252479,0.3819815444390481,0.379202501954652,0.3798256537982565,0.3829016986911723,0.3865777080062794,0.0,2.0171186064282165,60.85421453827105,218.5487291287145,331.37208490526666,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,98 -100000,95604,41460,389.5966695954144,7331,75.3838751516673,5680,58.75277185055019,2321,23.879753985188906,77.23812690061078,79.67055361302516,63.25655152000609,65.05503346408562,76.9529241071447,79.3851742830856,63.15149252037639,64.95258980610117,0.2852027934660839,285.37932993955906,0.1050589996297048,102.44365798445187,80.40758,56.30107068450545,84104.82824986403,58889.869340723664,221.31499,133.65388666433853,230855.696414376,139163.818108383,261.27118,124.64032880130593,269448.79921342205,127360.05345567327,3273.05252,1479.7314012739723,3388810.7610560227,1513030.334791402,1358.26761,591.7199102520445,1407107.694238735,605320.3216612856,2288.62742,951.593205261012,2357224.7395506464,964712.0378478874,0.38173,100000,0,365489,3822.946738630183,0,0.0,0,0.0,18412,191.9061963934564,0,0.0,24413,251.45391406217317,2087054,0,75036,0,0,3217,0,0,48,0.502071043052592,0,0.0,0,0.0,0,0.0,0.07331,0.1920467346029916,0.3166007365980084,0.02321,0.3055555555555556,0.6944444444444444,25.470397112301622,4.525383666685035,0.3318661971830985,0.205281690140845,0.2195422535211267,0.2433098591549296,11.051795268165456,5.6878252803015,24.78498842758175,13158.764540383228,64.11102951354854,13.535883056311606,21.540382526700597,13.772879618608318,15.261884311928013,0.535387323943662,0.7392795883361921,0.6970822281167108,0.5757818765036087,0.1063675832127351,0.7003484320557491,0.900804289544236,0.8588469184890656,0.7292418772563177,0.1241134751773049,0.47962308598351,0.6633039092055486,0.638205499276411,0.5319587628865979,0.1018181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0051930664448794,0.0074323775485338,0.0098187695028612,0.0120297997068881,0.0144666198029687,0.0164822275485746,0.0188779471254035,0.0208456927766299,0.0229737895998279,0.0251067060658294,0.0272494682654665,0.0292401272115354,0.0311333786932228,0.0331705100533908,0.035036164026365,0.0369894256686709,0.0390808418690656,0.0410680824484697,0.0431176581050347,0.0585344944748204,0.0717219986586183,0.0850800054632752,0.0980662692477829,0.1102322290397186,0.1258937556273502,0.1395697211155378,0.1526137381145269,0.1650421031232278,0.1768649020281884,0.190778328099878,0.2040309640487445,0.2168729840467265,0.2285169519384602,0.2395573875283796,0.2505243532975996,0.261211477151966,0.2706756741516009,0.2804704651189244,0.2892454715659135,0.2975987372770214,0.3053642857980739,0.3131929441371287,0.3194900475073666,0.3262650896232167,0.3324591786244433,0.338132207733474,0.3444404710209711,0.3495585003316124,0.3550131191858153,0.3561440047604879,0.3568939771030363,0.3575965932402416,0.3588801603090014,0.3598710428513858,0.3605507130316937,0.3603712607262828,0.361875030969724,0.3625245123335741,0.3633048289738431,0.3645697921965372,0.3662529339221068,0.3672995780590717,0.3691157259336006,0.3706815155550175,0.3709482532177567,0.3708188328683597,0.3737463501332995,0.3760493040059505,0.3781314823679591,0.3788902680090102,0.3812024434680098,0.3862799847696408,0.3862397297089764,0.3866805805900768,0.3840295132690706,0.3887190461632528,0.3907164480322906,0.3888735123166343,0.3841982958946553,0.0,2.56551650966228,63.17389089115156,207.76337474577463,329.6585620509681,fqhc8_80Compliance_baseline_extra_low_initial_treat_cost,99 -100000,95726,41315,389.3508555669306,7335,75.5071767335938,5738,59.4300399055638,2333,24.006017174017508,77.33641368994157,79.71186336265353,63.332022412709286,65.0894501810177,77.05649296759412,79.43129840813859,63.22979323259649,64.98982057955139,0.2799207223474411,280.5649545149436,0.1022291801127934,99.6296014663045,81.4539,57.07383843134021,85090.6754695694,59622.0864042582,224.04931,135.0048741147144,233539.6966341433,140519.58100695148,258.90567,122.93523907719288,267530.514175877,126109.83353625078,3829.29116,1700.1301068423911,3968188.475440319,1743964.0712475083,1410.25383,609.1547761530888,1461246.317614859,624429.3371159624,2313.93892,951.0340174531634,2383455.612895138,964105.0109859176,0.38107,100000,0,370245,3867.757975889518,0,0.0,0,0.0,18639,194.16877337400496,0,0.0,24155,249.4933455905397,2090180,0,74998,0,0,3285,0,0,53,0.5327706161335478,0,0.0,1,0.0104464826692852,0,0.0,0.07335,0.1924843204660561,0.3180640763462849,0.02333,0.3135582267028564,0.6864417732971436,25.376876776627544,4.614724234303063,0.3337399790867898,0.1932729173928198,0.2283025444405716,0.2446845590798187,11.078899090001425,5.43303716077111,24.714083664952952,13039.06466026288,64.08021995731875,12.871787369711027,21.45126581965713,14.50355016203831,15.253616605912264,0.5402579295921924,0.7835888187556357,0.6939947780678851,0.5717557251908397,0.1089743589743589,0.7164068299925761,0.9047619047619048,0.8841870824053452,0.7777777777777778,0.1624548736462094,0.486221817353678,0.7355163727959698,0.635743519781719,0.5089641434262948,0.095829636202307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022698715090592,0.0044016673597095,0.0066500837605969,0.008903162858769,0.0110678209210298,0.0132401768072841,0.0152153295464975,0.0173881968552174,0.0195883982701685,0.0217638327276449,0.0240994731123275,0.0259645592492967,0.0277452129738178,0.0297777228436643,0.0317820658342792,0.0337171562648584,0.0354236129807194,0.0373793962029256,0.0392662266798316,0.0413541666666666,0.0566195359328334,0.0703321998430552,0.0834137337975586,0.0952916565926268,0.1083075106979489,0.1244028746565208,0.138347379021572,0.1510314759676733,0.1631354801524192,0.1740672101468682,0.1878443526170798,0.201453240054929,0.2135568909124496,0.2258948955181491,0.2365616209563994,0.2480814737819846,0.2585163641226222,0.2684716883583968,0.2782381951136556,0.2866032922658064,0.2951871286899836,0.3025475103080139,0.3107534885919204,0.3172801819596576,0.3241511540421814,0.3307848568790397,0.3370598239295718,0.3431049612738303,0.3487351440925921,0.3542032506370562,0.3551838924003719,0.3562898198968475,0.3570430388323475,0.3577628051872781,0.3584689023753784,0.3589869682812884,0.3587319243604004,0.3599314447685437,0.3613970083710717,0.3628324933187452,0.3651289188121791,0.36544415336985,0.3662063602160708,0.3664536383002579,0.3678885347242345,0.3707077051926298,0.3717221726490314,0.3750278139801011,0.3755185986312542,0.3783056024435334,0.3827618164967563,0.3854369984818911,0.3872533160789388,0.3904130943102104,0.3873968923844235,0.3900328987449738,0.3881578947368421,0.3884654994850669,0.3933425797503467,0.3903474903474903,0.0,1.9051791655031127,59.774034877868736,209.45249750191005,345.172660635844,fqhc8_80Compliance_baseline_low_initial_treat_cost,0 -100000,95599,41441,389.9203966568688,7203,74.13257460852101,5584,57.72026904047113,2243,22.981411939455437,77.26635035352784,79.70364971589669,63.26822878755484,65.0716679770671,76.98455606695697,79.42581277644612,63.16389421205468,64.97238655203004,0.2817942865708716,277.836939450566,0.104334575500161,99.28142503704862,81.14062,56.81648942371587,84876.01334741995,59432.09596723384,219.56706,133.29912032829895,228989.95805395456,138750.58350850845,258.32258,123.05167658914765,265907.3002855678,125378.78838484,3680.47642,1660.037066157672,3807299.208150713,1693846.8144621518,1375.2187,603.8463395747171,1419921.6832812058,613038.3890780413,2215.3954,933.9253052851412,2272711.534639484,937069.224312912,0.38245,100000,0,368821,3858.0006067009062,0,0.0,0,0.0,18305,190.7655937823617,0,0.0,24260,249.46913670645088,2086257,0,74897,0,0,3219,0,0,29,0.3033504534566261,0,0.0,0,0.0,0,0.0,0.07203,0.1883383448816838,0.3113980285991948,0.02243,0.3101992347275366,0.6898007652724634,25.25420974833681,4.5165168298425,0.3409742120343839,0.2027220630372493,0.2220630372492836,0.2342406876790831,11.247363716226523,5.663973343982708,24.19614072196287,13146.38701693068,63.28422358865515,13.301918740782629,21.55016030661074,13.88917062944015,14.542973911821631,0.5492478510028653,0.7597173144876325,0.6953781512605042,0.5887096774193549,0.1169724770642201,0.7025862068965517,0.905027932960894,0.8791208791208791,0.7152542372881356,0.1514084507042253,0.4983301526717557,0.6925064599483204,0.6376811594202898,0.5492063492063493,0.107421875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021585795938222,0.0045447628709104,0.0070988249870515,0.0093134862534569,0.0113698825349646,0.0136062048370822,0.0155229425212279,0.0178719229943901,0.0202791192600474,0.0223486012911158,0.0245699741368693,0.0265608617889521,0.028782606905355,0.0307354442256338,0.0326702197983804,0.0346008588131822,0.0369399156310568,0.0387295784302524,0.0406839990841156,0.0426557089816862,0.056716605158336,0.0713162858939425,0.0855534078493991,0.0984188515869421,0.1106451749197228,0.1260725862836077,0.1396305429190935,0.1522583260438224,0.1646614287855109,0.176215856095936,0.1893393458185898,0.2022311119784044,0.2148132011763424,0.2260983893941054,0.2375881834215167,0.2483469423981539,0.2589687726942629,0.2695473946191876,0.2789632760658121,0.2887971089313371,0.2979573866598695,0.3069047116984138,0.314678105485182,0.3209817305039406,0.3273932611604427,0.3336338153394006,0.3395925842301999,0.345158246410446,0.3503711201079622,0.3560675152332236,0.3577652485904664,0.3588393410986284,0.3598831300813008,0.3601546436535287,0.3607353554615339,0.361279926335175,0.361105379279694,0.362042544777472,0.363547524345083,0.3648643800229621,0.3659391609182404,0.367395238758179,0.3685175815836073,0.3690944660565312,0.3710044556373498,0.3727807542809118,0.3734337280147143,0.3753135816582515,0.3760277856535299,0.3767244145011229,0.3780258141564466,0.3820441397043068,0.3841288096607245,0.3871904616325283,0.3880259813611974,0.3900557731102408,0.3905842662168379,0.3931484502446982,0.3971278652305993,0.4,0.0,2.7000468949080583,61.19718468121821,215.71061598279908,314.81068330274,fqhc8_80Compliance_baseline_low_initial_treat_cost,1 -100000,95716,40991,384.4811734715199,7326,75.4105896610807,5718,59.25864014375863,2332,24.00852522044381,77.34534288058313,79.71321405113312,63.32656324425341,65.07397984290965,77.05883167086795,79.4238118661953,63.22376779823985,64.97217097541466,0.2865112097151865,289.40218493782766,0.1027954460135589,101.80886749499508,80.93184,56.650397274634095,84553.90948221824,59185.71869929364,219.62068,131.88101064462734,228971.352751891,137305.77622779904,256.36444,121.58714397790804,264595.37590371515,124501.6781218048,3788.15704,1679.645909572157,3927054.745288144,1724289.485008145,1396.5569,601.0355235342124,1446719.670692465,615702.9445381933,2294.10374,943.1777902713544,2363730.2645325754,959593.5399032164,0.37842,100000,0,367872,3843.3595219190106,0,0.0,0,0.0,18216,189.82197333779095,0,0.0,23952,247.09557440762256,2092851,0,75097,0,0,3240,0,0,50,0.5119311295917088,0,0.0,1,0.0104475740733001,0,0.0,0.07326,0.1935944188996353,0.3183183183183183,0.02332,0.312258064516129,0.687741935483871,25.54844169992104,4.635050230709933,0.3352570828961175,0.1937740468695348,0.2359216509268975,0.2350472193074501,11.016006461906995,5.482719759783302,24.760490296203702,13067.5974612562,63.91416853434046,12.954522263241202,21.27041432998009,14.888708511890842,14.80052342922833,0.5360265827212312,0.7608303249097473,0.6744913928012519,0.5648628613787992,0.1242559523809523,0.7064492216456635,0.9027777777777778,0.852017937219731,0.7398648648648649,0.117408906882591,0.4834058136873426,0.6925133689839572,0.6206662134602311,0.5156695156695157,0.1257976298997265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278029812054,0.0046115176453894,0.0067468852725132,0.0088970140158439,0.0109621916248042,0.012828475142284,0.0151779252418376,0.0175270255096311,0.0194835728742869,0.0218648596083569,0.0239886822627273,0.0262271513657835,0.0282446359877394,0.0306276978231979,0.0328376384144642,0.0349600471371422,0.0372104102155159,0.0390510683782858,0.0410272405905593,0.043026103266816,0.0576360750240193,0.0716274201988487,0.0844245781918912,0.0980367401047913,0.110305677777426,0.1247976126226229,0.138350158699829,0.1516865301253581,0.164062666980144,0.1754794285469132,0.1893618625898273,0.2026418362927674,0.214895816332082,0.2268259041947631,0.2378645053299268,0.2484869310749994,0.2595725684950616,0.2693285630709689,0.278255144780304,0.2877253671164463,0.2954808404294706,0.3034789218265801,0.3107378737305589,0.3180745125765437,0.3243624169228339,0.3306993429406181,0.3361881150927804,0.3420165608822295,0.3476338649034098,0.3525157981015838,0.353859649122807,0.3545080836506097,0.3559621611685355,0.3569988834268645,0.3582603767393995,0.3581362469841562,0.3589234992621273,0.360169770349411,0.3611044623012481,0.362146983598934,0.3638990524439441,0.3647993029564942,0.3663276883640795,0.3673116249803366,0.3674596637433984,0.368519052739241,0.370415892525368,0.3744798890429958,0.378652397380835,0.3785557986870897,0.3831758554261077,0.3836012861736334,0.3855146124523507,0.3868004631416442,0.3852591535901093,0.3844955667385574,0.3810994441012971,0.3749232971977909,0.3770217512548801,0.3767313019390582,0.0,1.818291801730479,59.9676758347072,211.1917623914421,339.89795609606705,fqhc8_80Compliance_baseline_low_initial_treat_cost,2 -100000,95663,41163,385.499095784159,7168,73.6543909348442,5606,58.01616089815289,2311,23.78139928708069,77.2498286400838,79.64899608856335,63.26585613190741,65.03908850713388,76.96601781164395,79.36379750247308,63.16139573366998,64.9368257980988,0.2838108284398544,285.1985860902744,0.1044603982374354,102.26270903508804,80.83438,56.663891802911024,84499.10623752131,59232.81917032816,218.96794,132.69469701856556,228310.50667447184,138125.95989940263,258.92499,122.90574302793,267141.08903128695,125782.39917605255,3708.05588,1662.5060627100686,3838168.842708257,1699881.5035176273,1398.62787,601.9514849194397,1446749.140210949,613954.4493894603,2274.74764,940.0386626677714,2341928.1017739354,952641.2505167264,0.37889,100000,0,367429,3840.868465341877,0,0.0,0,0.0,18245,190.10484722410965,0,0.0,24194,249.36495823881756,2085556,0,74891,0,0,3233,0,0,41,0.428587855283652,0,0.0,1,0.0104533623239915,0,0.0,0.07168,0.1891841959407743,0.3224051339285714,0.02311,0.3233182664185057,0.6766817335814943,25.307346278270245,4.547627865372983,0.3453442739921513,0.1949696753478416,0.2227970032108455,0.2368890474491616,11.151511439431482,5.682399211468831,24.53615983417669,13113.44824387958,63.41839457858681,12.862198019460912,21.98543670923566,14.06127469500628,14.50948515488395,0.550303246521584,0.7676120768526989,0.6993801652892562,0.5940752602081665,0.1129518072289156,0.7011747430249633,0.8972809667673716,0.8669438669438669,0.7030716723549488,0.1361867704280155,0.501885014137606,0.7112860892388452,0.6439862542955327,0.5606694560669456,0.107376283846872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026945986466226,0.0049996450556248,0.0071862851574791,0.0094492989229831,0.0118501490168953,0.0142790214490864,0.0162438308112738,0.0189002910093429,0.0209245244426263,0.0229823842687423,0.0251610388544701,0.0271808357644738,0.0292335079180515,0.0313746508487853,0.0332662227040421,0.0354546112714222,0.0374392505932458,0.0395257327366923,0.0417928150067105,0.0438445577486523,0.0583035546360729,0.0723224664621055,0.0853922206595436,0.0978512501052277,0.1105060418975251,0.1252778189361386,0.138735198853077,0.1514631599138941,0.1639816003423192,0.1752750085940185,0.1897476289638653,0.2025570399930597,0.2144929116684842,0.2261050784249204,0.2370939435080631,0.2488137702659154,0.2591045979199086,0.2697436707432646,0.279365223924774,0.288199871288039,0.2972213187119558,0.3050247949423018,0.312482161545048,0.3196051285138145,0.3263070579911684,0.3328712184977967,0.338201103417074,0.3440700722460201,0.3492468194708223,0.3543558672623861,0.3553240427547016,0.3568565663266716,0.3576999844287473,0.3582293376723374,0.3599563834077703,0.3601845444059977,0.3596553971357271,0.360001979936642,0.3608939891085877,0.3623388995739938,0.3633808131308367,0.363953025477707,0.3647634308847094,0.3660758580255265,0.3666723296847317,0.3668851599370739,0.3685700397449461,0.3707507639960933,0.371446664790318,0.3731759827764931,0.3737917198613897,0.375,0.3779418259827118,0.3805485522194209,0.3822808671065033,0.3794044370625222,0.3797235023041475,0.3789711006353761,0.3791285040244241,0.3832632785632403,0.0,2.231960283660149,60.24845352206936,215.14846798863616,323.9971106363199,fqhc8_80Compliance_baseline_low_initial_treat_cost,3 -100000,95749,41110,385.2259553624581,7239,74.39242185296975,5661,58.60113421550095,2348,24.1777982015478,77.32698317968122,79.68728620349265,63.31555014592704,65.0615621303907,77.04424736825544,79.40163699890087,63.211860041828935,64.95878998105911,0.2827358114257805,285.6492045917776,0.1036901040981064,102.77214933158518,81.01104,56.74684822429666,84607.71391868322,59266.25680090305,220.93879,133.93087072016877,230220.26339700675,139355.86543390734,259.22619,123.67174045369752,267238.2479190383,126450.48387900268,3757.11464,1674.2542152005908,3892268.075906798,1717344.0465734622,1376.36826,602.7755647209151,1422431.3987613448,614493.2529017687,2317.13032,957.2806878037972,2388318.938056794,973427.1409432092,0.37951,100000,0,368232,3845.805178121965,0,0.0,0,0.0,18381,191.4171427377832,0,0.0,24213,249.38119458166665,2088237,0,74920,0,0,3175,0,0,42,0.4386468788185778,0,0.0,0,0.0,0,0.0,0.07239,0.1907459618982372,0.3243541925680342,0.02348,0.3285340314136126,0.6714659685863874,25.40886538278389,4.590100828766113,0.3227344992050874,0.202791026320438,0.2317611729376435,0.2427133015368309,11.048735866637744,5.472235936241969,24.77676083614584,13070.858576038852,63.4581140065305,13.366181779653251,20.453513459815543,14.618937730040908,15.019481037020809,0.540893835011482,0.7674216027874564,0.6683087027914614,0.6021341463414634,0.12372634643377,0.7005150846210448,0.8967551622418879,0.8555304740406321,0.7391304347826086,0.1726618705035971,0.4904695490469549,0.7132262051915945,0.6083815028901735,0.5616979269496545,0.1113138686131386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023301757763031,0.0045020380848086,0.0068205346812009,0.0091230494148244,0.011390795830155,0.0134209052492235,0.0155810254109393,0.0177612641120388,0.0201034299497158,0.0222720340631109,0.0243617468305131,0.0265662050771425,0.0284527774351383,0.0306849540755385,0.0329272444063915,0.0350596209882411,0.0368874946941226,0.0389598265686101,0.0409698909756072,0.0432640220018334,0.0579687451066361,0.0716706768490427,0.0852107729564825,0.097959655632759,0.1101308119617578,0.1257507189984774,0.1390677202100015,0.1512760724438624,0.1633335827356584,0.1749546513250399,0.1890892628084207,0.2022268675468714,0.2146432768902624,0.226149183179963,0.2368606468943347,0.2477441525329786,0.2589596925551881,0.2692169054699468,0.2785270357788054,0.2874749211808541,0.2962164917402284,0.3042841407110548,0.3115506385400732,0.3179116485152676,0.3247061400306636,0.3306836836713282,0.3372999949842002,0.3433296357214805,0.3485680175445426,0.3539370390928554,0.3551013805004314,0.3560029766826525,0.3569252468265162,0.3586629219989576,0.3590697951405431,0.3590440645686464,0.3583869175200445,0.3590499078219647,0.3606113567047051,0.3612178856846584,0.3615871168753167,0.362422224864265,0.3633758297334317,0.3653993078962743,0.3659863616578807,0.3670258790214741,0.3671705026909424,0.3713418873648947,0.3726237082495679,0.3736842105263158,0.3750970984692712,0.3804904051172708,0.3785475001580178,0.3780646146795998,0.3806603773584905,0.3830673969992855,0.3842720837180671,0.3897822104620395,0.3973713646532438,0.4001563110590074,0.0,2.0218118924945068,60.128648783607,215.25640162616912,325.9536981071493,fqhc8_80Compliance_baseline_low_initial_treat_cost,4 -100000,95752,41507,389.62110452001,7364,75.49711755368034,5689,58.745509232183146,2330,23.93683682847356,77.39144353273707,79.73181032702402,63.36142006586866,65.08775780846064,77.10366133062443,79.44357469523058,63.25554418497488,64.98449840290728,0.2877822021126377,288.2356317934409,0.1058758808937767,103.25940555335931,80.8313,56.62521150434401,84417.34898487761,59137.36684804913,218.82718,132.14975615842545,227905.02548249645,137382.1916601486,259.98661,124.13163854109936,267233.36327178543,126233.6188830828,3766.21182,1695.726988510222,3891684.403458936,1729727.8101270825,1393.67743,607.415812457521,1439859.9507059904,618840.1089629483,2292.32198,954.0722312572884,2357173.928481912,964802.0862236932,0.38304,100000,0,367415,3837.1522265853455,0,0.0,0,0.0,18226,189.6775002088729,0,0.0,24304,249.53003592614252,2095630,0,75180,0,0,3282,0,0,43,0.4490767816860222,0,0.0,1,0.0104436460857214,0,0.0,0.07364,0.1922514619883041,0.3164041281912004,0.0233,0.310136351942372,0.689863648057628,25.21710436998921,4.640910751369237,0.3222007382668307,0.2005624890138864,0.2425733872385305,0.2346633854807523,11.252159693787826,5.593216709405361,24.76382845847445,13184.41205659826,64.06697008086199,13.25119795340881,20.81634566297256,15.442740046822296,14.556686417658344,0.5420987871330638,0.775635407537248,0.685215493726132,0.5702898550724638,0.1168539325842696,0.7232267037552156,0.9305555555555556,0.8675889328063241,0.7156549520766773,0.1621621621621621,0.480828040461068,0.704225352112676,0.6156744536548606,0.5276476101218369,0.1059479553903345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023691884011015,0.0048947576436251,0.0073862137537793,0.0096891154873503,0.011784323494423,0.0138832342643107,0.0160790707153046,0.0183137102862856,0.020370010930748,0.0224686911680445,0.0244979508196721,0.0265306959947472,0.0284830612098108,0.0305675058150305,0.0328433292786013,0.0349565109600644,0.0369580741645363,0.0389864962973718,0.0410698322280202,0.0428659228934237,0.0566272102878854,0.0711744516993135,0.0845572807385648,0.097889301376634,0.1098071468488701,0.1255194729662567,0.1388529492862748,0.1513745850710698,0.1640091845997757,0.1755303753095419,0.1895380507918052,0.2025828502206454,0.2149130434782608,0.2269315239125446,0.2381146099041252,0.2498948580029661,0.2611109872220859,0.2714248794903199,0.2814750138906213,0.2911831353429925,0.2998057713651498,0.3077561614366553,0.3150354324653661,0.3219134581970258,0.3285341426403642,0.3347496243749846,0.3404255319148936,0.347102703803656,0.3529663212435233,0.3583048566490309,0.3593211670973298,0.3603426465735342,0.3608604451452142,0.3613160288151987,0.3618872294308026,0.3619321396351626,0.361711554894452,0.3619322751670141,0.3634779042345945,0.3652763127313035,0.3661497979513203,0.3672096668584694,0.3690436100353595,0.3698987626546681,0.3700588933860061,0.3710660431881469,0.3730411115885976,0.3738314795449504,0.3781524511192972,0.3805497675909601,0.3834607238235565,0.3855557949159844,0.3887007094011631,0.3892741562644475,0.3873779967781673,0.3889679715302491,0.389444949954504,0.3862903225806451,0.3855191256830601,0.3850860420650095,0.0,2.6647607704854206,62.87763725193737,210.58820489875296,325.89353267171225,fqhc8_80Compliance_baseline_low_initial_treat_cost,5 -100000,95732,41471,387.8849287594535,7409,76.22320645134333,5762,59.64567751639995,2305,23.680691931642503,77.37264048070351,79.73118516127168,63.34029949113111,65.08150527575832,77.0816624298628,79.43938488899937,63.23412539739788,64.97714426198891,0.2909780508407067,291.80027227231164,0.1061740937332302,104.361013769406,80.33784,56.359051874186406,83919.52534157857,58871.69585320103,221.50725,133.5336655079292,230808.07880332597,138931.54437711733,261.64864,124.00507982359706,270032.0686917645,126896.58545000949,3855.34121,1722.8144832641829,3992632.463544061,1766288.9324318962,1426.53204,617.0599102867636,1476226.1626206494,631206.3329784368,2284.3782,954.2153454976828,2349576.0038440647,967630.4474546886,0.38241,100000,0,365172,3814.523879162663,0,0.0,0,0.0,18410,191.72272594325827,0,0.0,24440,252.0891655872645,2093793,0,75098,0,0,3198,0,0,43,0.4387247733255338,0,0.0,1,0.0104458279363222,0,0.0,0.07409,0.193744933448393,0.3111081117559724,0.02305,0.3219186866743619,0.678081313325638,25.450036175406076,4.64594095183104,0.3255813953488372,0.2023602915654286,0.2263103089205137,0.2457480041652204,11.022671747857087,5.354625660584378,24.68363338165264,13253.41339326471,64.82381974997371,13.72784409677139,21.10677184041413,14.37863510532215,15.610568707466037,0.5437348143005901,0.7787307032590052,0.6918976545842217,0.5973926380368099,0.1045197740112994,0.7015032211882606,0.9297297297297298,0.8603603603603603,0.7649122807017544,0.1208053691275167,0.493241695303551,0.7085427135678392,0.6396648044692738,0.55053974484789,0.1001788908765653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493670886075,0.004570652559464,0.006827150349473,0.0089880565485862,0.0112863374309855,0.0135391005150966,0.0158912990296012,0.0183826156185887,0.0206584959470095,0.0229399119664244,0.0252524734710616,0.0272789807086169,0.0294287006951013,0.0319052523171987,0.0340039203548952,0.0362867802846305,0.0385443627704731,0.04061650797602,0.042529309054627,0.0444201426860386,0.0589697007663555,0.0735532607217217,0.087200402608568,0.0988165556092741,0.1117834327760325,0.1278001543454589,0.1411753476088962,0.1540360509906574,0.1662502135656928,0.1778211493710523,0.1925930712154987,0.2059937249810667,0.2181025200395897,0.2299892809485266,0.2413998019148233,0.2524626857402462,0.2627319207841211,0.2730722457436267,0.2824763116635234,0.2915323829294308,0.300280202857606,0.3081677807564884,0.315521839625437,0.3225202295483468,0.3288567744446877,0.3350736873287417,0.3408273493991002,0.3468919934286769,0.3519027374533389,0.3566295934272052,0.3577002385476893,0.3592703827184305,0.3599740366027459,0.3610857631193963,0.3618523981940905,0.3616946133529881,0.3621504966834872,0.3630107668499555,0.3645696100740842,0.3654265394374754,0.3663362626243699,0.3675211985847844,0.3688374923919659,0.3693764268767626,0.3696003083817187,0.3703471678412947,0.3723012862561675,0.375196380317979,0.3778643365968347,0.3791108645693002,0.3814447075970122,0.3833697331273638,0.3873011849692668,0.3884303836160782,0.3910504003768252,0.3927765237020316,0.3922321154436598,0.3934025656689065,0.3966759002770083,0.3930769230769231,0.0,2.0349789894187764,62.000398975217706,219.0428107339918,331.72837156276444,fqhc8_80Compliance_baseline_low_initial_treat_cost,6 -100000,95732,41003,384.333347261104,7143,73.23569966155517,5565,57.42071616596331,2261,23.18973801863536,77.33281654085012,79.69748681794748,63.319784280511655,65.07037412035865,77.04891729328445,79.41269268637,63.215871871590416,64.96826054396024,0.283899247565671,284.7941315774847,0.1039124089212393,102.11357639840912,80.65552,56.48543155217613,84251.13859524505,59003.5351829516,218.77942,132.41299887141372,227791.90866168053,137589.5255428444,254.60601,121.42651856365352,260649.1455312748,122862.05455736096,3700.8457,1669.7402292872214,3823585.415535035,1702999.8415637226,1365.66032,596.8199902824603,1407795.940751264,605656.879777364,2238.18422,939.6713805639422,2299205.40676054,951400.4530895506,0.37755,100000,0,366616,3829.5972088747753,0,0.0,0,0.0,18215,189.4977645928216,0,0.0,23822,243.53403250741653,2093447,0,75196,0,0,3115,0,0,49,0.5118455688797894,0,0.0,0,0.0,0,0.0,0.07143,0.1891934843067143,0.3165336693266135,0.02261,0.317885204421361,0.682114795578639,25.45449752108017,4.556957776468787,0.3292003593890386,0.2017969451931716,0.2267744833782569,0.2422282120395328,10.97273331956071,5.447564576349023,24.418296404649624,13030.099539832549,63.013996636104,13.224566785753876,20.815069782903247,14.039804356845284,14.93455571060158,0.5437556154537286,0.7693677649154052,0.6932314410480349,0.5768621236133122,0.1216617210682492,0.7114427860696517,0.9418282548476454,0.8721174004192872,0.7402135231316725,0.1284722222222222,0.487012987012987,0.6876640419947506,0.6302583025830258,0.5300713557594292,0.1198113207547169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022798893493702,0.0045033623076689,0.0069753274444106,0.0093920574094591,0.0116387905424653,0.0136591427640156,0.0160515607950315,0.0180602348136804,0.0199484673115069,0.0222094797309058,0.0244317541035709,0.0265227748798619,0.0287591511063584,0.0307209062821833,0.0328411799300461,0.0348334814876067,0.0369610919522374,0.0389053776384882,0.0410917598128411,0.0430756088922224,0.0576770502755971,0.072051054035675,0.0846423253570455,0.097570462884116,0.109896596430943,0.1253542274669035,0.1389377903153965,0.1519418457379439,0.1639538609420057,0.1753849783382662,0.1893093610378425,0.2025183630640084,0.2147074494112018,0.2263220615085222,0.2376647088585318,0.2487209585612722,0.2593824281043199,0.2694234037524339,0.2782123031864776,0.2863343793664246,0.2943430741443986,0.3023315728455494,0.3092566038183046,0.3154946135943761,0.3220823450708508,0.3285463795317593,0.3348170066577228,0.3405128466557912,0.3460191000155707,0.3518119153777966,0.3527045994385662,0.3533582552798201,0.3539909287440125,0.3545642943060447,0.3562489745387289,0.3564944938487767,0.3568558951965065,0.3587924478609405,0.3602144092613841,0.3612577625856792,0.3630008268811546,0.363926813779965,0.3645780803496386,0.3639156072733795,0.3642860592013134,0.3649480216816361,0.3660458452722063,0.3677484658695514,0.3711511299435028,0.3746851637148682,0.3762553308570642,0.3764661774945102,0.3808165335361988,0.3808611707018081,0.3816261082814563,0.387058403711193,0.3893913843323624,0.3844435418359058,0.3794247787610619,0.3824319140774836,0.0,2.6922901580357608,61.84692676116504,210.2190193495346,315.82503863472607,fqhc8_80Compliance_baseline_low_initial_treat_cost,7 -100000,95784,41365,387.3820262256744,7296,74.99164787438403,5703,59.00776747682285,2223,22.843063559675937,77.34910350822409,79.67729187203231,63.34642956891118,65.06653044801335,77.07253435375448,79.40102896109929,63.24462208671837,64.96753616317737,0.2765691544696125,276.2629109330277,0.1018074821928038,98.99428483598172,80.52836,56.41289159859688,84072.87229599933,58895.94462394228,220.14781,133.46777282274826,229317.5686962332,138822.24883357162,265.71296,126.67257800839656,274154.5456443665,129728.4169684698,3744.58599,1682.958947543916,3876365.134051616,1723994.1300675662,1364.32604,595.5242374302528,1409587.1961914306,606946.0425856645,2191.25498,918.0815628989978,2253797.96208135,929375.5928568692,0.38023,100000,0,366038,3821.4941952726967,0,0.0,0,0.0,18332,190.83563016787767,0,0.0,24802,255.71076588991895,2092224,0,75181,0,0,3155,0,0,49,0.5011275369581558,0,0.0,0,0.0,0,0.0,0.07296,0.1918838597690871,0.3046875,0.02223,0.3137665054255458,0.6862334945744542,25.209211710309056,4.510119688258711,0.3412239172365421,0.2081360687357531,0.2200596177450464,0.2305803962826582,11.068969502097016,5.527437088621374,23.849761580488824,13126.146452220886,64.21031105200235,13.745074244036347,21.906997429119887,14.087901619358874,14.470337759487236,0.5425214799228476,0.7455770850884583,0.6932168550873586,0.5705179282868525,0.1095057034220532,0.7033356990773598,0.9316939890710384,0.8638297872340426,0.7304964539007093,0.1305841924398625,0.4897531439217513,0.6626065773447016,0.6388888888888888,0.5241521068859198,0.103515625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025822261827608,0.0047740196028745,0.0070507552931389,0.0095174249118851,0.011591491438565,0.0138645710330225,0.0163476630179987,0.0185030209013716,0.0208444026648138,0.0229381733356523,0.0253050435922916,0.0274502560313599,0.0293204801447011,0.0314854460867059,0.0336835376478229,0.0356445665533945,0.0376759105960264,0.0396926618346968,0.0415835411471321,0.0436625291569476,0.0579917348472199,0.0718207775093345,0.0849357294134915,0.0978319128140993,0.1102996965098634,0.1258982162482035,0.1398092209856915,0.1518602400927196,0.1639919759277833,0.1758240581045324,0.1894378854246262,0.2016523206021021,0.214831646354059,0.226670311645708,0.2382545166472284,0.2499916931562683,0.2608089105153903,0.2709312523894123,0.279793040064448,0.28839989008976,0.2961180770832369,0.3040263037805834,0.3120760479679897,0.3186972573839662,0.3256424275560415,0.3319475456754789,0.3377217156027658,0.3431472469233317,0.3494538567314428,0.3546578512396694,0.3556122311283837,0.3564759264622726,0.3575449735449735,0.3587234966350676,0.3600838961116235,0.3601189563724438,0.3598433809425677,0.3606031704268894,0.3617683792708173,0.3628877790308433,0.3643566587183868,0.3655986509274873,0.3662560955103413,0.3675413371675053,0.3699634586065871,0.3708856107932174,0.3705650837427102,0.372971256153724,0.3739589609100897,0.3761486296697564,0.3780700947474933,0.3794693111766282,0.3819066521544273,0.3837308018831519,0.3859900611620795,0.3858181818181818,0.384156862745098,0.3892686969131966,0.3874051166713522,0.3856573705179283,0.0,2.072998813693318,62.27128793634031,212.02224690840572,331.4609716605326,fqhc8_80Compliance_baseline_low_initial_treat_cost,8 -100000,95659,41016,384.9716179345383,7209,73.9501771919004,5591,57.778149468424296,2332,23.918293103628518,77.31532774038504,79.70488205783052,63.31028192710126,65.07530774611797,77.02990618492748,79.42353208919077,63.20440723315145,64.97376762330715,0.2854215554575603,281.34996863974493,0.1058746939498078,101.54012281081748,81.85848,57.30538260059147,85572.9832007443,59905.66763251913,218.5031,132.54454939242774,227737.74553361424,137878.40076984678,258.34664,123.2779187198864,266297.1806102928,125850.70171543804,3710.45718,1684.654911724436,3836919.578920959,1719688.209495979,1382.65593,604.7096254712966,1428781.73512163,615745.1771164823,2292.33072,957.7102533266664,2353789.774093394,965427.0255303842,0.37853,100000,0,372084,3889.6810545792864,0,0.0,0,0.0,18195,189.50647612874897,0,0.0,24161,248.78997271558347,2085862,0,74846,0,0,3309,0,0,45,0.4599671750697791,0,0.0,0,0.0,0,0.0,0.07209,0.1904472564922199,0.3234845332223609,0.02332,0.3179487179487179,0.6820512820512821,25.20610365689695,4.598339599037279,0.3235557145412269,0.2030048291897692,0.2405651940618851,0.2328742622071185,11.322689085707289,5.810940224522912,24.730744881175657,13051.557714952733,63.211730960619285,13.270037440995727,20.60778568376011,14.9885189261345,14.345388909728928,0.5446252906456805,0.7647577092511013,0.693200663349917,0.5769516728624535,0.1129032258064516,0.7112038970076549,0.922872340425532,0.8617021276595744,0.75,0.1290322580645161,0.4870004814636495,0.686429512516469,0.6340552651232263,0.5246853823814134,0.1085043988269794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907449804485,0.004592550538332,0.006779110596927,0.0091947249710442,0.0115458170572916,0.0136898395721925,0.0159928195504059,0.0181706756549716,0.0202689574065551,0.0222929936305732,0.0241626156339097,0.0261836036609793,0.028197847869473,0.0304382322332017,0.0324521836066927,0.034574055496375,0.0368954370259853,0.0391900447322809,0.0411595830992947,0.0430224075039082,0.0574425626612894,0.0716275076433387,0.0842700756740871,0.0970671493365043,0.1088631374535629,0.1241861893016313,0.1377010883992567,0.1502071859987004,0.16250507728157,0.1741286589882032,0.1888999073016146,0.2020532368802928,0.2140384112882153,0.2250985113835376,0.2364812020136372,0.247728508192902,0.2587196961233381,0.2691740495998018,0.2774591420686209,0.2858404035771612,0.2942301007994438,0.3026491462300611,0.3105719565938492,0.317543227665706,0.3248285255630685,0.3309522047030375,0.3373185953831115,0.3432162915982119,0.3484424402633079,0.3535489667565139,0.3544663925032023,0.3561088592935726,0.3573060648801128,0.358621488896293,0.3587608906098741,0.3583972981271108,0.3588686009803766,0.3604777237481929,0.3616595380667237,0.3629193790686029,0.3641188163372463,0.364367338046858,0.3645677739675594,0.365759978437142,0.3677863702271629,0.3680970344755318,0.3684392066685829,0.3688511558396133,0.3715402380529401,0.3742210428979214,0.3767761579627237,0.3776201225411157,0.3774897854954034,0.3826080223013783,0.3835341365461847,0.385439229843562,0.3885311254216498,0.3889112093210125,0.3971885336273429,0.4003038359285986,0.0,2.5627013665444216,63.1280147434569,209.8826992736085,314.02921447191613,fqhc8_80Compliance_baseline_low_initial_treat_cost,9 -100000,95618,41275,387.3015541006924,7183,73.94005312807212,5527,57.13359409316238,2289,23.489301177602545,77.3146043072854,79.73308247344968,63.296484254502126,65.08263538124241,77.02986971064013,79.4513139611215,63.19180344880498,64.98228650878268,0.2847345966452792,281.7685123281848,0.1046808056971428,100.34887245973324,80.67466,56.48558860289048,84371.8337551507,59074.22096560322,219.66523,132.94564410038055,229080.4346461963,138386.64697063374,252.16969,120.10546285504734,259858.1229475621,122524.79003106237,3661.99478,1642.5351721180637,3791183.992553704,1679176.203348809,1377.78484,595.2428663706988,1426788.2302495346,608383.77331747,2254.06652,935.6075241961344,2317355.602501621,944244.498406178,0.38063,100000,0,366703,3835.0833525068506,0,0.0,0,0.0,18284,190.52897989918216,0,0.0,23645,243.3642201259177,2091020,0,74961,0,0,3207,0,0,39,0.4078729946244431,0,0.0,0,0.0,0,0.0,0.07183,0.1887134487560097,0.3186690797716831,0.02289,0.3086076953589845,0.6913923046410154,25.687359092341364,4.528667698261615,0.3318255834991858,0.1972136783064954,0.2317713045051565,0.2391894336891623,11.132338511721484,5.565591585656748,24.337858985082097,13107.3947547567,62.04330811482946,12.581756271428285,20.63400519417202,14.319736734330426,14.507809914898733,0.5379048308304686,0.7522935779816514,0.693565976008724,0.570647931303669,0.113464447806354,0.6904937361827561,0.9186746987951808,0.8568376068376068,0.7025089605734767,0.1258992805755395,0.4882494004796163,0.679419525065963,0.637628111273792,0.5339321357285429,0.1101532567049808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0045126811410491,0.006913144110123,0.0090636589950718,0.01129150390625,0.0136280301487064,0.0160647076223212,0.0182143221983859,0.0202718597539147,0.0223756029124125,0.0245333333333333,0.0268723869788082,0.029175754084194,0.0312921805611366,0.0334344935794211,0.0354450797721092,0.0374883431768728,0.0394534656754848,0.0413813913803508,0.0433889253939943,0.0576786386252456,0.071780259381089,0.0848813886817814,0.0976326066590174,0.1096708818003335,0.1251945741605515,0.1386507759472292,0.1516220479154233,0.1638246432315625,0.1757034044884672,0.1892477990678405,0.2022090704127644,0.2151061418421167,0.2266218185403907,0.237810725899796,0.2492563487835198,0.2596070015424854,0.2695688431111812,0.2799222753769758,0.2885574992830513,0.2963048739534722,0.3038731570325298,0.3116112762103219,0.3189351241156014,0.325225969481971,0.331808824073275,0.3378396985742361,0.3442606261135149,0.35,0.3550845219228737,0.356112878011967,0.3563569766321036,0.3581535770212886,0.358488653314217,0.3592189596064987,0.3584282267607149,0.3587049810864935,0.3601848032340566,0.361822871883061,0.3625349989231101,0.363609016901991,0.364507254121885,0.3661794619078575,0.3679775910364146,0.3691908015010103,0.3708841979229027,0.3726249821962683,0.3746114477691607,0.3754122517718055,0.3780497496622427,0.379734158776402,0.3811804779392198,0.3813279063851437,0.3818474758324382,0.379649787032655,0.3779356858966639,0.3769772905246671,0.3805985552115583,0.3849372384937238,0.3873767258382643,0.0,2.617198211291886,59.59761786130253,203.56082789295704,321.7290686268814,fqhc8_80Compliance_baseline_low_initial_treat_cost,10 -100000,95656,41372,387.8899389478966,7239,74.55883582838504,5630,58.386300911599896,2268,23.406791001087228,77.29129418892526,79.69089967130783,63.29829466637945,65.06983774364558,77.0112463990689,79.40804466575206,63.194893131822944,64.96752180626945,0.2800477898563684,282.85500555577414,0.1034015345565038,102.31593737613308,81.51506,57.12327075618186,85216.88132474701,59717.394367506335,221.20687,133.90375259586258,230784.44634941875,139516.65613851996,260.40575,123.7861971645826,269091.06590281846,127107.79528752224,3740.73563,1693.72256734215,3881807.340888183,1741833.828868185,1352.88481,593.60270864114,1402532.8782303254,608769.7046093708,2246.88646,944.6732639979308,2320812.1602408634,963457.501628964,0.38085,100000,0,370523,3873.4946056703184,0,0.0,0,0.0,18439,192.26185498034624,0,0.0,24349,251.46357782052357,2084794,0,74886,0,0,3203,0,0,44,0.4495274734465166,0,0.0,0,0.0,0,0.0,0.07239,0.1900748326112643,0.3133029423953585,0.02268,0.3160519753248458,0.6839480246751543,25.141207625929063,4.6173094889280994,0.3179396092362344,0.2024866785079929,0.2383658969804618,0.2412078152753108,11.082913582911534,5.433902541099795,24.341948736734118,13092.697596540303,63.97693941565071,13.440659406486017,20.296849547423044,15.08351772793506,15.155912733806591,0.5438721136767318,0.7771929824561403,0.7022346368715083,0.5774962742175856,0.1060382916053019,0.6923620933521923,0.9178082191780822,0.8681318681318682,0.7368421052631579,0.1262135922330097,0.4940702087286527,0.7109677419354838,0.6456928838951311,0.5345316934720908,0.100095328884652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474225864286,0.0042279225387813,0.0064654953665641,0.0087186261558784,0.0110592233108486,0.0136477058613841,0.0160898913065644,0.018328670328997,0.0204277768689677,0.022454078184834,0.0245508245139059,0.02646714458846,0.0287019319795074,0.0308307400614141,0.0330453095481433,0.0352691730878626,0.0377643974174292,0.0397773878373186,0.0420039538029341,0.0439319856965627,0.0580920234499911,0.0721363331657449,0.0854682906341873,0.0979065141197149,0.1102562478892266,0.1259790017357436,0.1392993630573248,0.1514225152583534,0.1637498797293107,0.1754286143705246,0.1886570704620195,0.2026659736434612,0.2149147155188366,0.2265400871602829,0.2378884246960394,0.2495729529471792,0.2601747759426056,0.2704915263780192,0.2800881237366281,0.288147638697845,0.2964172398619699,0.3041457933423849,0.3113307029704143,0.3179199769579723,0.3252324392737185,0.3315467075038285,0.3378069889371096,0.3430412042352341,0.3490250045439202,0.3539124572002697,0.3548704803022126,0.3564441133049105,0.3573376669257401,0.3582033288870846,0.3589387974230494,0.3590043383280514,0.3588202559821925,0.3596705509523652,0.3607717815232892,0.3607190317135366,0.361633145463799,0.3634446257312269,0.3645277607911772,0.3663838692981074,0.3670054805765469,0.3682819613794547,0.3699243829362248,0.3717746514415494,0.3721710270804646,0.3721515951067402,0.374627891000687,0.3759786950732356,0.3752856054836253,0.3774967224492944,0.3762650372350582,0.3780384568871689,0.3795918367346939,0.3825250836120401,0.3866139508613386,0.3846749226006192,0.0,1.811042612856296,63.11255057961434,218.54077335858767,316.433833198141,fqhc8_80Compliance_baseline_low_initial_treat_cost,11 -100000,95638,41315,387.9838557895397,7301,75.27342688052866,5675,58.815533574520586,2356,24.29996444927748,77.27514686010801,79.68944076685916,63.27600815666828,65.05778952739084,76.98516348870432,79.39685192871454,63.17035910067445,64.95377013100213,0.289983371403693,292.5888381446242,0.1056490559938296,104.01939638870772,80.24236,56.263236126130224,83902.17277651143,58829.37339355719,218.58352,131.90486021269697,228019.5738095736,137388.71789535307,259.56098,123.86802129574632,268786.2983332985,127386.59583658226,3773.63833,1696.2698492327445,3913395.595892846,1741354.0466224458,1371.66952,592.3900337826615,1422438.424057383,607660.5352707622,2324.36212,959.9380161559434,2399029.695309396,976306.3971630816,0.38093,100000,0,364738,3813.7351262050647,0,0.0,0,0.0,18163,189.3598778728121,0,0.0,24259,251.0403814383404,2090371,0,74995,0,0,3210,0,0,31,0.324138940588469,0,0.0,2,0.020912189715385,0,0.0,0.07301,0.1916625101724726,0.3226955211614847,0.02356,0.3159129414831226,0.6840870585168773,25.31046641267766,4.616497153077065,0.3284581497797357,0.1945374449339207,0.2336563876651982,0.2433480176211453,11.205293954613133,5.579678492638076,25.132705996445,13110.261762580109,64.20950116180227,13.09197038234439,20.978152645681853,14.867283967731266,15.272094166044758,0.5441409691629956,0.7907608695652174,0.6786480686695279,0.5965309200603318,0.1151339608979,0.6979241231209735,0.9030470914127424,0.847682119205298,0.7467532467532467,0.1272727272727272,0.4939223936418887,0.7362045760430687,0.6243798724309001,0.5510805500982319,0.1121157323688969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021569183408943,0.0045204382595299,0.0070214600984222,0.0094464195022854,0.0116457653149442,0.0140235457063711,0.0162336338051148,0.0183050709027983,0.0205800864915706,0.0226695609436435,0.024884093053789,0.0271211514161555,0.0290141366751034,0.0309646030469829,0.0328793151519532,0.0350599505498484,0.0371291746999191,0.0391230293085183,0.0409074353504344,0.0430502252628066,0.0567122371336594,0.0704263724288244,0.0845641532029329,0.0970164977560523,0.1093471073507198,0.1246121095942639,0.1382696108643444,0.1508532932536002,0.1633367221360158,0.1742200346054229,0.1886354559094981,0.2024572475790798,0.2157027315733252,0.2275074837988091,0.2382828450035866,0.2491585109810151,0.2601674239541598,0.2704398257847584,0.2803241557495532,0.2891765543699245,0.2972223511393697,0.3059905455654479,0.3136103100857987,0.3203325883738255,0.3266344503548257,0.3327406309810459,0.339020901814167,0.344267101807705,0.3498272233625191,0.3554519938569083,0.3564605261380065,0.3571122802656835,0.3580937844484016,0.3582955155065172,0.3592927741916248,0.3590945414310302,0.3591254088729397,0.3599887951489586,0.3607859245567194,0.3626444388795478,0.3640639698965193,0.3656600928534582,0.3669388785990907,0.3662247191011236,0.3665417623594826,0.3665190387588773,0.3677397181807767,0.3687792832721286,0.3717390534848324,0.3730123763367645,0.3739389768295481,0.3756369682990935,0.3780526482714875,0.380741306839893,0.3842724340732308,0.3849584187055562,0.3872868217054263,0.3917504617278883,0.3872945110058512,0.3937038476486592,0.0,1.9421732144102704,62.15301360866256,219.9095741535446,321.48484780812163,fqhc8_80Compliance_baseline_low_initial_treat_cost,12 -100000,95684,41640,391.1312236110531,7286,74.9341582709753,5675,58.72455164917855,2370,24.39279294343882,77.28391542799022,79.68194590010913,63.28504443165552,65.05963036159554,77.00214981662349,79.39906424673289,63.181905588327695,64.95885447628764,0.2817656113667368,282.8816533762364,0.1031388433278266,100.77588530789684,80.64606,56.52949613242033,84283.74649889219,59079.36136911117,221.62314,133.7335821513212,231033.1507880105,139187.19188499203,260.14079,123.95547923799649,268181.5873082229,126718.1098844505,3760.82519,1690.506851165734,3891452.16546131,1728991.3438506743,1391.72184,605.5205866652884,1439417.164834246,618218.1814688909,2334.6095,963.4398037609202,2404796.141465658,976908.8325460084,0.38448,100000,0,366573,3831.079386313281,0,0.0,0,0.0,18396,191.6516868023912,0,0.0,24403,251.36908992098992,2088711,0,75020,0,0,3172,0,0,44,0.4598469963630283,0,0.0,0,0.0,0,0.0,0.07286,0.1895027049521431,0.3252813615152347,0.0237,0.32389403627822,0.67610596372178,25.362921276126364,4.5406110349813735,0.3238766519823788,0.2001762114537445,0.2375330396475771,0.2384140969162995,11.086432628926678,5.605925406815016,25.11074978286368,13240.543409262458,64.06001908588581,13.245122205887457,20.794699363357456,15.106108756510167,14.914088760130737,0.5453744493392071,0.7526408450704225,0.7023939064200218,0.5927299703264095,0.1108647450110864,0.7208333333333333,0.9331476323119776,0.8813559322033898,0.7685185185185185,0.1333333333333333,0.4857142857142857,0.6692406692406693,0.6405563689604685,0.537109375,0.1048689138576779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025029894002959,0.0047874066861408,0.007015442094683,0.009410473470798,0.0114872358393618,0.0134055904164289,0.0156662756897343,0.0176185807084201,0.0196062388136026,0.0219836505562498,0.0243244352340111,0.0264169166906415,0.0284829339068336,0.0304229532525352,0.032671304994116,0.0348311701742592,0.0367330867190981,0.0389881353996906,0.0410252142797703,0.0430754158502522,0.0576633795754638,0.0719490744618477,0.0852171357807023,0.0981943684498505,0.1101108179419525,0.1258679820475908,0.1401509922804931,0.1533456160342495,0.1660217628321611,0.1779580972007556,0.1915925626515764,0.2048682200773455,0.2181184668989547,0.2304381632407214,0.2415358843237524,0.2528030017095535,0.2638228881310449,0.2731330665614608,0.2828041696506724,0.2919807694514245,0.3008303567286728,0.3098898779157724,0.3173565291688422,0.3242853711265914,0.3305931068079406,0.3371291653286565,0.34278618821257,0.3486184747145187,0.3550228310502283,0.3600206133801979,0.3605400884860257,0.3613162826590232,0.3618263346400067,0.3620233395514294,0.3631881553860819,0.36321044546851,0.362660057827344,0.3633984561449709,0.3644189875154342,0.3645034062387953,0.3644364869958537,0.3656749113792966,0.3663839597301241,0.3683806600153492,0.3689998296961292,0.3686204356518994,0.3696032588427665,0.3719506392158107,0.3742056206750459,0.3761365449034933,0.3779285681536839,0.3779048026069768,0.3807752915222187,0.3848831050919271,0.3835411003842909,0.3822448737702975,0.3805866994317309,0.3829656862745098,0.3823033707865168,0.3852427184466019,0.0,2.19718248822659,63.93866770724408,209.9371690445231,324.2145747906204,fqhc8_80Compliance_baseline_low_initial_treat_cost,13 -100000,95664,41250,387.0526007693594,7293,75.13798294029101,5654,58.60093661147349,2299,23.739337681886603,77.35161970545354,79.7577201152714,63.31721993396855,65.09442791411291,77.06835479161701,79.47076141599204,63.21447977011957,64.99245205763201,0.2832649138365326,286.9586992793529,0.1027401638489777,101.97585648090524,80.22982,56.18466894626587,83866.26108044824,58731.25621578219,219.87364,133.05879630600458,229286.77454423817,138538.91734216144,257.11375,122.78372401327036,265399.99372804817,125746.18272844584,3770.72099,1678.7223710476012,3910065.1760327816,1723446.9928774738,1355.30178,589.8884245689078,1400234.9682221103,600576.7994308928,2274.30992,940.116182619768,2349173.921224285,958373.3017907372,0.38025,100000,0,364681,3812.10277638401,0,0.0,0,0.0,18330,191.05410603779896,0,0.0,23944,246.97900986787087,2095224,0,75100,0,0,3200,0,0,47,0.4808496404080949,0,0.0,0,0.0,0,0.0,0.07293,0.1917948717948717,0.3152337858220211,0.02299,0.3195042400521852,0.6804957599478147,25.68301706293057,4.604469244649156,0.3257870534135125,0.1982667138309161,0.2350548284400424,0.2408914043155288,10.905147290293709,5.339527659522009,24.46996172863271,13093.27392568966,63.52872985641926,13.16839391842391,20.67049313375793,14.813981870668476,14.875860933568946,0.5291828793774319,0.7475468331846565,0.6742671009771987,0.5733634311512416,0.1101321585903083,0.7163958641063516,0.9219653179190752,0.8504672897196262,0.7601246105919003,0.166023166023166,0.4702325581395349,0.6696774193548387,0.620933521923621,0.5138888888888888,0.0970081595648232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809282580723,0.0047862901181361,0.0072157833844155,0.0094793952694464,0.0117079819752006,0.0140048889794255,0.0163361036047519,0.0182577529076594,0.0204089979550102,0.0223704022370402,0.0249504991125747,0.026933708754226,0.0287322610190073,0.0309181632610981,0.0329291218212242,0.034979360004966,0.0372596776701041,0.03926046651649,0.0413333194619282,0.0431446147429882,0.0577608275429705,0.0719520877832223,0.084965468018557,0.0977398514278499,0.11085313858753,0.1260055038103302,0.13939438982439,0.152306446111869,0.1645110561956417,0.1759728545657589,0.1904746501045912,0.2035378099374979,0.215883486268491,0.2272926289980078,0.2377323583825213,0.2494512316800071,0.2598377689884025,0.2695728535723131,0.278508174386921,0.2871738483036675,0.2952678468124494,0.3033250713183369,0.3107499024026688,0.3178708773106827,0.3238376258302672,0.33043071276373,0.33666212551088,0.3426218884610986,0.3486276487090977,0.3536124178097534,0.3550653440826929,0.3564306050311524,0.3575222236310102,0.35831960461285,0.3585416263958485,0.3590670875601459,0.3589443001077245,0.3596896421350254,0.3596659364731654,0.3608328563251288,0.3613345864661654,0.3625757635780216,0.3645001261246111,0.3652368686303057,0.3669810866740459,0.3687312557047855,0.3699189312628454,0.3712231123446666,0.3739648306727279,0.3767994576703752,0.3787629243297648,0.379209758684699,0.3842274475193847,0.3843685537474215,0.3867737364194615,0.3868718441933157,0.3880248833592535,0.3866095121453358,0.3909465020576131,0.3883384146341463,0.0,1.864855451414921,60.19500093410039,215.0945392886593,327.64691580611515,fqhc8_80Compliance_baseline_low_initial_treat_cost,14 -100000,95788,41323,387.3345304213472,7275,74.63356579112207,5607,57.93001211007642,2227,22.82123021672861,77.3507064425629,79.68250195944448,63.34838135415546,65.07152334561582,77.07560968916181,79.40634333104738,63.24587105590047,64.97135500100013,0.2750967534010868,276.1586283970985,0.1025102982549839,100.1683446156818,81.38856,57.01642442668157,84967.38631143776,59523.55663202235,219.79112,132.93564670479424,228878.49208669143,138203.80079424797,253.83387,120.7130122635992,261640.8005178102,123357.25152359156,3714.80946,1676.7701252872762,3837379.212427444,1710089.7875036288,1366.92383,596.4343912639696,1409938.3116883116,605697.1614907078,2203.58166,932.6365465582916,2260322.3577066017,938766.033009714,0.38145,100000,0,369948,3862.153923247171,0,0.0,0,0.0,18349,190.94249801645304,0,0.0,23724,244.27903286424188,2092728,0,75063,0,0,3127,0,0,42,0.4384682841274481,0,0.0,0,0.0,0,0.0,0.07275,0.1907196224931183,0.3061168384879725,0.02227,0.3095890410958904,0.6904109589041096,25.44385580054933,4.590054617901541,0.3190654538969146,0.2056358123773854,0.2359550561797752,0.2393436775459247,11.011721166345849,5.455845762391806,23.925587819736727,13129.702205150155,63.35294114931384,13.508350642380943,20.140112222803737,14.902283767864423,14.802194516264736,0.5478865703584804,0.7753686036426712,0.6975964225824483,0.5888133030990174,0.1125186289120715,0.6796322489391796,0.9305555555555556,0.8306264501160093,0.7275541795665634,0.11,0.503458144526592,0.7049180327868853,0.6553755522827688,0.544,0.1132437619961612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0044099756690997,0.0066770170578505,0.0090707784820412,0.0111639824304538,0.013336455353416,0.0156536627124862,0.0178485779306262,0.0200292263200384,0.022022103970528,0.0240383630141197,0.0263398216649394,0.0286316222187965,0.0307587782959142,0.032780968683296,0.0349077460278104,0.036981467876618,0.038958346291804,0.0410617483955386,0.0431623219788456,0.0579206577766647,0.0718318695106649,0.0848795521730926,0.0978918828029761,0.1103686684513395,0.1256659619450317,0.1393454792254342,0.1523094934014474,0.1634795050022956,0.1754024910497995,0.1897908436225066,0.2030157271793763,0.2159771351568697,0.2271729035782573,0.2379962837132082,0.2492642665899586,0.2600191690442225,0.2700847210049664,0.2794876154848948,0.2881194918164129,0.2965659086707339,0.3047375309680736,0.3117522454824089,0.3192231195034866,0.3260465624658432,0.3326555009181548,0.3389972597940466,0.3455473393491237,0.3514378652981351,0.3556602404233139,0.3569793742258603,0.3574850629147278,0.3582950283409943,0.3584818262090529,0.3600732110173653,0.3600208672169884,0.3609978259834648,0.3619223416177731,0.3628555264105333,0.3630988640842799,0.3643350978656067,0.3661739579608217,0.3681280445372303,0.3690076025898436,0.3707691191057992,0.372626769255009,0.3735846887752169,0.3761785340147932,0.3777368383759654,0.3812225329604474,0.3817429294090596,0.3808291552105234,0.3847137014314928,0.3878167867937689,0.3878735960403578,0.3913931962976319,0.3942741559047767,0.3948354852144939,0.3888103984176321,0.3848568065908199,0.0,2.318394865285008,62.42302078060984,209.3487711775105,321.11736009637394,fqhc8_80Compliance_baseline_low_initial_treat_cost,15 -100000,95729,41291,387.5941459745741,7300,74.99294884517754,5654,58.414900395909285,2285,23.4098340105924,77.31652017658898,79.6783957558159,63.31665033110207,65.06288313096367,77.03637871881595,79.40064686684148,63.212968771154365,64.96354899644855,0.280141457773027,277.74888897441485,0.1036815599477023,99.33413451511797,81.59052,57.10187869934863,85230.72423194643,59649.50923894393,219.71392,133.0681960894282,228875.02219808,138363.55345760242,257.50695,122.77790657869782,265286.4753627427,125349.08051136653,3743.08943,1685.498141496876,3869132.091633674,1719740.2788046207,1421.27061,620.4001870143649,1463871.773443784,627270.0926724031,2258.27566,941.8000987282796,2316020.558033616,945928.4666509542,0.38046,100000,0,370866,3874.123828724838,0,0.0,0,0.0,18354,191.06018030064035,0,0.0,24082,247.87681893679036,2087049,0,74915,0,0,3181,0,0,47,0.4909692987495952,0,0.0,1,0.0104461552925445,0,0.0,0.073,0.1918729958471324,0.313013698630137,0.02285,0.3163451511991658,0.6836548488008342,25.66023544100194,4.596167496505547,0.3340997523876901,0.1915458082773257,0.2368234877962504,0.2375309515387336,11.20519621782111,5.581489851483661,24.48062504856636,13101.89887294819,63.80088671888558,12.753554714973047,21.326830077210143,14.834639610551466,14.885862316150918,0.5468694729395118,0.7746999076638966,0.6903123345685548,0.5817774458551157,0.1265822784810126,0.6941678520625889,0.8980169971671388,0.8704883227176221,0.6996587030716723,0.1522491349480969,0.4981167608286252,0.7150684931506849,0.6304654442877292,0.5487571701720841,0.1195445920303605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238632104618,0.0047242019038736,0.0071961431108855,0.0094191044230163,0.0119120279947916,0.0144827164768907,0.016531875618288,0.0186779408310611,0.0210938538460751,0.0229331968262093,0.0247621195964235,0.026932949994866,0.0287929580651132,0.0308921657467666,0.0329461762218142,0.0348194451619569,0.0369135853587843,0.0389299199203352,0.0409671618208089,0.0429663895313704,0.0581356498496491,0.0713897028045207,0.084165373159374,0.0968735869096568,0.1090700102289384,0.1240824183960567,0.1372827770587112,0.1502022567596338,0.1632655241676994,0.1753996352322712,0.1895420612093203,0.2029824580388931,0.2154749605785438,0.2269750150347165,0.2380884230921661,0.2496730432469576,0.2601505270680722,0.2704052928865585,0.2796522647055485,0.2883756100914277,0.2961201009329351,0.3040486777439738,0.311676930364756,0.3190524193548387,0.3252433090024331,0.331386374581692,0.3373577052304298,0.343306604795839,0.3490603965917491,0.3547022109383264,0.3551532972739658,0.3555153806875422,0.3565651423885071,0.3575625680087051,0.3585173031026253,0.3586735948837781,0.3594288527818808,0.3602178038115667,0.3614008557730311,0.362923812605616,0.3640460030165912,0.3662044578648337,0.3667621776504298,0.3674181065514759,0.3686132269374924,0.3704391980317227,0.3712950753884079,0.3731847455486803,0.3744889327505992,0.3776759019334264,0.3790783874067633,0.3782119914346895,0.3800557880055788,0.3840756558877364,0.3939193654990086,0.399039039039039,0.3991935483870967,0.3936300530828909,0.3888888888888889,0.3887596899224806,0.0,2.521345975606211,61.83054069070299,210.86407576480144,327.0597279759121,fqhc8_80Compliance_baseline_low_initial_treat_cost,16 -100000,95672,41380,388.1386403545447,7348,75.48708085960365,5725,59.19182205870056,2282,23.423781252613097,77.40264542862671,79.7821956398966,63.35728834693722,65.11165751215745,77.1153778808119,79.49698575367495,63.25110126914626,65.00917479798831,0.2872675478148068,285.2098862216508,0.1061870777909561,102.4827141691418,82.10708,57.47079851246346,85821.43155782257,60070.656526949846,221.4066,133.5917069609376,230781.3153273685,138993.8612770064,258.48033,123.31025144383106,266282.40237478045,125804.2284044564,3789.5664,1693.5282723606151,3919948.0934860776,1729302.3133288426,1414.22477,608.5403400752632,1459992.976001338,617953.6626481428,2252.39952,938.9895978120924,2313967.514006188,947335.5201247592,0.38154,100000,0,373214,3900.974161719208,0,0.0,0,0.0,18519,192.89865373358975,0,0.0,24139,248.3171669872063,2089452,0,74862,0,0,3251,0,0,45,0.4703570532653232,0,0.0,0,0.0,0,0.0,0.07348,0.1925879331131729,0.3105606967882417,0.02282,0.3149035348957659,0.685096465104234,25.288384695687952,4.531359725336995,0.3292576419213974,0.2078602620087336,0.2279475982532751,0.2349344978165939,10.980300968854392,5.4924077682143135,24.26338111528244,13172.99159557889,64.018311867201,13.821857006596542,21.305837978637747,14.287697334111582,14.60291954785514,0.542707423580786,0.7512605042016807,0.6923076923076923,0.5685823754789272,0.1234200743494423,0.7072484166080225,0.9244791666666666,0.8640167364016736,0.6866197183098591,0.1527272727272727,0.4883828996282527,0.6687344913151365,0.6339729921819474,0.5357492654260528,0.1158878504672897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303551356441,0.0048445782277762,0.0072225603570703,0.0094959527944507,0.0117041722170813,0.0141233733173125,0.0162814644142445,0.0185546177320092,0.0208573910377599,0.0230566130418764,0.0250210131409007,0.0268766425755584,0.0293025981637038,0.0311743684280991,0.0333673816819884,0.0353163693490708,0.0373906290447838,0.0393611722219916,0.0413940862619476,0.0433794713582923,0.0581586067843002,0.0715377688425373,0.0854024556616643,0.0986250355050127,0.110968123035379,0.1263371742373742,0.1395292069960944,0.1522819942298069,0.1646539563117171,0.1766554409146485,0.1905567103576775,0.2041777152443314,0.2163826015075212,0.228549244329739,0.2398829302642871,0.2509052654891756,0.2610668807564505,0.2714146056431404,0.2811947604586864,0.2896828573715932,0.2980758125245432,0.3056547827508113,0.313515876015876,0.3208023649659497,0.3278408056785779,0.3334687896363614,0.3397177671579052,0.3453833638397396,0.3511161118439771,0.3566035498280429,0.3566626327820357,0.3583778513259266,0.3592465031278555,0.3605585447831167,0.3615155157829126,0.3612514158018796,0.3615514974896656,0.3622778608887208,0.3628132634060508,0.3634544967401982,0.3636295392699634,0.3640169016309284,0.3657383189303425,0.3676158096047598,0.3686214958902788,0.3696613050869622,0.36952102837184,0.3714330758316254,0.3728640022595678,0.3725271218889598,0.3740927882406982,0.3780009667543906,0.379899625182644,0.380700948882767,0.3845424371740161,0.3904773156899811,0.3939766441303011,0.3904220779220779,0.3922484881803189,0.4003044140030441,0.0,2.5432091301356667,62.32897017748194,205.8297772529828,334.93642404276824,fqhc8_80Compliance_baseline_low_initial_treat_cost,17 -100000,95731,41343,387.6069402805779,7421,76.22400267415989,5793,59.97012462002904,2340,24.19279021424617,77.33907921770925,79.7054720965723,63.32552877917672,65.07517070034555,77.04686803260356,79.40889691181786,63.21875490257574,64.9686709907518,0.2922111851056996,296.5751847544311,0.1067738766009753,106.49970959374856,80.6377,56.47496798413298,84233.63382812255,58993.39606202064,221.7164,133.68742734336584,231088.25772215897,139133.74700292054,261.83473,124.88518596731711,268949.19096217526,127044.02184511782,3851.93849,1731.81435488101,3992491.073946789,1777822.7479928243,1442.70227,623.7394950612755,1494719.0878607766,639235.7283025094,2316.28536,968.917900476691,2396774.4826649674,991535.3871296732,0.38146,100000,0,366535,3828.8015376419344,0,0.0,0,0.0,18472,192.403714575216,0,0.0,24403,250.5353542739552,2092766,0,75060,0,0,3154,0,0,60,0.6163102861142159,0,0.0,0,0.0,0,0.0,0.07421,0.1945420227546793,0.3153213852580515,0.0234,0.3204525231981696,0.6795474768018305,25.36570751136744,4.572340846420485,0.3341964439841187,0.1981702054203349,0.2280338339375107,0.2395995166580355,10.943748769556652,5.393793981701987,25.119805579950384,13089.311163880602,65.33688609672312,13.382446130883343,21.800331073361207,14.753760498114255,15.400348394364318,0.5387536682202658,0.7456445993031359,0.6838842975206612,0.5821347464042392,0.1239193083573487,0.7021276595744681,0.9289772727272728,0.8509719222462203,0.749185667752443,0.1354166666666666,0.486196668948209,0.664572864321608,0.6313645621181263,0.5315581854043393,0.1209090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021471398476746,0.0044409295534736,0.0066278939942957,0.0087790603153958,0.0105795347039256,0.012954607949974,0.0152143986131647,0.0176316246209762,0.0198470316366387,0.0222556791413179,0.0246854072015342,0.0268377104238776,0.0290539220223586,0.0310622997434655,0.0330408753096614,0.0350757458249314,0.0372515098463737,0.0392897541536513,0.0414699581972838,0.0433804225528191,0.0575300701637153,0.0713762581347172,0.0846343381389252,0.097762308355591,0.1092703708781069,0.1251176713241593,0.1385620776355014,0.151667749044491,0.1638154871937341,0.1749211390313512,0.1892989924026079,0.2031642553928788,0.2155027963353861,0.2271563327569981,0.2372043342289565,0.2485088361161001,0.2596269823542551,0.2695805848848466,0.2787439832894378,0.2875663407420993,0.295930535455861,0.303642066334293,0.3116199266359011,0.3189029212298401,0.325887166288288,0.3321636994902859,0.3382253669025177,0.3442981341196807,0.3502276725654558,0.3549204338532182,0.3557571922833564,0.3565004200928336,0.3575855108061943,0.3588301788353961,0.3591680448159239,0.3586125357000276,0.3586939267913267,0.3599723174268389,0.3605819605957023,0.3618465960122148,0.3623382250437993,0.3621227474121317,0.3635235732009925,0.3644233579924898,0.3655460158209531,0.3674322594131327,0.3688146471447809,0.3698864175657291,0.3730071759341086,0.375821182502804,0.3790578809227793,0.3823687897402737,0.3827089337175792,0.3843231508761048,0.3891372586321697,0.3884944036586834,0.3923872180451128,0.3891768608749741,0.3926553672316384,0.3999218139171227,0.0,2.158705606191082,62.42566220742669,219.2944528309232,336.22009684947955,fqhc8_80Compliance_baseline_low_initial_treat_cost,18 -100000,95687,41251,387.1685808939564,7244,74.54513152256838,5634,58.30468088664082,2299,23.650025604314067,77.30793472821749,79.6836241570301,63.31631099018998,65.07004214202726,77.02506345644575,79.40011442236901,63.21363080503108,64.96967162256985,0.2828712717717394,283.50973466108087,0.1026801851589027,100.37051945741382,81.84066,57.32572282735698,85529.54946857985,59909.624951515856,220.38856,133.0310665409716,229739.25402614777,138444.20510724714,258.20272,122.5312114241259,266358.0632687826,125388.29976056363,3733.16364,1670.9822757918275,3866352.503474871,1711220.286759775,1364.67255,589.6342867171685,1413175.8650600396,603203.4933869478,2269.54624,932.028820153944,2337891.730329093,945575.1166882904,0.38098,100000,0,372003,3887.706794026357,0,0.0,0,0.0,18339,191.03953515106545,0,0.0,24205,249.45917418249084,2086058,0,74945,0,0,3274,0,0,40,0.4180296173983926,0,0.0,0,0.0,0,0.0,0.07244,0.1901412147619297,0.3173660960795141,0.02299,0.3194280467007739,0.680571953299226,25.45269967410656,4.566730508490121,0.3310259140930067,0.2005679801206957,0.2310969116080937,0.2373091941782037,11.038278510060108,5.476212967243956,24.419674622713494,13143.97269170193,63.5470202189313,13.220427368882532,21.10969876672976,14.55285314701852,14.664040936300491,0.5461483848065317,0.763716814159292,0.7040214477211796,0.5675883256528418,0.1211667913238594,0.7121551081282624,0.9127906976744186,0.8650442477876106,0.7167235494880546,0.1587301587301587,0.4942930351735383,0.6984732824427481,0.6525123849964615,0.5242814667988107,0.112442396313364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095862948788,0.0042965424992906,0.0065936964262165,0.0090700414398309,0.011217557562444,0.0134414076819681,0.0155805487860835,0.0177743746809596,0.0197305199452043,0.021977459540797,0.0239474304694147,0.0262220351338309,0.0286108025834053,0.0308334191820335,0.032949116162919,0.0349533232019353,0.0370316644562334,0.0389634659108605,0.041194216165609,0.0429810478910827,0.0574207161659633,0.0718569768780681,0.0854849708860095,0.0983328950828293,0.110969360858655,0.1266206984073267,0.1407823125643174,0.1541785976602833,0.1668714278083435,0.1779761010876794,0.1916105756286683,0.2046583078204615,0.2173114140952877,0.2283780533140895,0.2392435560347198,0.2504569573838774,0.2617695303346463,0.272084964673057,0.2816244553376906,0.2903813331195088,0.298376638414154,0.3056881463802705,0.3130320502954026,0.3197672325874378,0.3271853519070503,0.3329876927254996,0.3390774324629392,0.3442926219364386,0.3500012988025041,0.3551379606960894,0.3559209904545884,0.3574318260269244,0.3577173713300255,0.3584117032392894,0.3588614585510015,0.3594576312876645,0.3592773421969178,0.36084142394822,0.3615137291312048,0.3627663967538647,0.3631940253470127,0.3641664510736532,0.3643798081989672,0.3659342140738744,0.3670935102030936,0.3676219046867188,0.3683771740692827,0.3702057404114808,0.3715576745178965,0.3744034011149881,0.3770257167920957,0.3768419920404431,0.3801674014439972,0.3779357231149567,0.3766927331680336,0.3768046198267565,0.3781163434903047,0.3817849156332588,0.3747945205479452,0.3665399239543726,0.0,2.2723515660303204,59.1550441154813,216.4749627125597,328.6533804038775,fqhc8_80Compliance_baseline_low_initial_treat_cost,19 -100000,95700,41316,388.36990595611286,7284,74.84848484848484,5727,59.195402298850574,2375,24.346917450365726,77.38171245272493,79.75522822207166,63.34258245905804,65.094716500596,77.08685955856822,79.4631912345969,63.23351537532432,64.99036257241967,0.2948528941567048,292.03698747475926,0.1090670837337199,104.35392817632304,81.8455,57.36543528584519,85522.75862068965,59942.77376989047,226.16087,137.33087454059174,235630.28213166143,142810.88435820694,264.70909,126.23614908876256,273318.275862069,129320.00219182228,3786.9079,1714.1149779603024,3911487.147335423,1745697.059714268,1392.83754,612.0866222607515,1435446.3218390804,619930.2110119035,2345.52392,986.6405913862366,2404606.687565308,989455.5877008204,0.38,100000,0,372025,3887.398119122257,0,0.0,0,0.0,18779,195.5276907001045,0,0.0,24737,255.16196447230928,2084053,0,74733,0,0,3266,0,0,51,0.5329153605015674,0,0.0,0,0.0,0,0.0,0.07284,0.1916842105263158,0.3260571114772103,0.02375,0.3207990599294947,0.6792009400705052,25.16970989600302,4.57394022912265,0.3272219312030731,0.1994063209359176,0.2315348349921424,0.2418369128688667,10.945093356357338,5.451961967878566,25.483641242608545,13082.231854852718,64.58912457507107,13.323537147398206,21.13841937529598,14.70906941411741,15.41809863825947,0.5385018334206391,0.7845884413309983,0.6840981856990395,0.5648567119155354,0.1133574007220216,0.6831476323119777,0.9307228915662652,0.8453815261044176,0.6970684039087948,0.1237458193979933,0.4900955488231182,0.7246913580246913,0.6257267441860465,0.5250245338567223,0.1104972375690607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021775239021228,0.0045514906385264,0.0069610748061858,0.0091115941734554,0.01137172732266,0.0135437881873727,0.0157940351771603,0.0181203805790354,0.0201179681669954,0.0223461971542634,0.0244405031627077,0.0264679007402388,0.0286504663670673,0.0307999752776118,0.0328785783575158,0.0347708309639264,0.0366231318163457,0.0385202096196751,0.0404788401335427,0.0423644909486936,0.0579867566269087,0.0721980840705648,0.0857571560480147,0.0982514833985607,0.1101078081816072,0.1256755470476875,0.1401740237691001,0.1530983816013628,0.1653774653304557,0.1776001716461943,0.1919027554770089,0.2051487463733599,0.2172253279098601,0.228566118999989,0.2384037486388085,0.2490256864481842,0.2593992928921159,0.2694306346028389,0.2783727367609021,0.2873292025059843,0.2959083280282423,0.3037853265955456,0.3113563958927958,0.3179583123455902,0.3249887536626585,0.3315572001233426,0.3376652644230769,0.343452229299363,0.3495086472891332,0.3546205165466675,0.3555621445321976,0.3557751868624995,0.3560239689813183,0.3565319155084231,0.3575394940016629,0.3575298438934802,0.3562277298281732,0.3575214558821116,0.3587262581272717,0.3590672927565213,0.3613361842598844,0.3635571745327843,0.363851584923844,0.364246860519777,0.3656317689530686,0.3667985836284107,0.3656082544749743,0.3667504714016342,0.3684321364641466,0.3696110823613709,0.3707752115252687,0.3701565923788146,0.3704978644737681,0.3782447466007416,0.3783474697417325,0.3737373737373737,0.3761439429191872,0.3798641136504014,0.3878753859107494,0.3879310344827586,0.0,2.3594196851881875,63.25333504925553,215.0619583129355,326.83859375086206,fqhc8_80Compliance_baseline_low_initial_treat_cost,20 -100000,95852,41301,386.92985018570295,7445,76.35730083879314,5865,60.55168384592914,2450,25.174226933188663,77.44506122741345,79.72202420344523,63.40474875222951,65.08381907708619,77.1460391397003,79.42446158878866,63.2948971480708,64.97764144153813,0.2990220877131406,297.5626146565702,0.1098516041587061,106.1776355480646,80.94746,56.73755213968451,84450.46530067187,59192.87249059437,224.67728,135.12117275029684,233765.3361432208,140335.5215122024,259.68874,122.85633763022076,266981.92004340026,125078.08277858248,3906.58413,1741.13357572659,4035868.5995075754,1777129.1551894236,1437.24137,620.9764254011877,1480180.9351917538,628809.1526329131,2420.86566,1002.3784196450558,2489311.06288862,1012978.3863428364,0.38074,100000,0,367943,3838.657513666903,0,0.0,0,0.0,18735,194.78988440512452,0,0.0,24341,250.0,2093744,0,75198,0,0,3102,0,0,37,0.3860117681425531,0,0.0,0,0.0,0,0.0,0.07445,0.195540263697011,0.3290799194089993,0.0245,0.3200559938915754,0.6799440061084245,25.316064691651757,4.606570491306224,0.3242966751918159,0.2006820119352088,0.2277919863597613,0.2472293265132139,10.781948132020275,5.213615034762216,25.92762511110184,13081.958560040584,65.82173460744848,13.592828921784529,21.32115338609832,14.907826038405922,15.999926261159713,0.5316283034953112,0.7604078164825828,0.6787592008412198,0.5726047904191617,0.1151724137931034,0.6777697320782042,0.8955223880597015,0.8329571106094809,0.7305194805194806,0.1423728813559322,0.4866190900981266,0.7066508313539193,0.6319396847155586,0.5252918287937743,0.1082251082251082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025202939330755,0.0048318965953869,0.0070977358222726,0.0093073768827899,0.0115735566077997,0.0135007274318096,0.01568483663326,0.0178143514128096,0.0197183673886182,0.0217382413087934,0.0238992422690968,0.0260909696938618,0.0283777538129718,0.0305498981670061,0.0328253948629184,0.0349511757055265,0.0370347388125303,0.0390876778478979,0.0409057403004599,0.0430887372013651,0.0583733055265901,0.0726501530521631,0.0855539384547729,0.0984762624354615,0.1099338166436936,0.1253707710983269,0.1395636979773377,0.15193922006163,0.1652376077126525,0.1771253652427995,0.1912357449186882,0.2047280660071709,0.2168550427239069,0.227847963049911,0.2385090301885134,0.2495158630916153,0.2596432552954292,0.2696427166571136,0.2794067623647867,0.2878217379859688,0.2960559796437659,0.3044683588723827,0.3115256684935074,0.3187730561011833,0.3254602419002283,0.3321134604958352,0.3381827750836434,0.3434219912361153,0.3485636469749043,0.3537813127576366,0.3540371833416472,0.354412777089357,0.355351182344408,0.3571913112506314,0.3574502819827842,0.3571810828580603,0.357780763455307,0.3584673651074713,0.3597609901835254,0.3611517204492779,0.3618377871542428,0.3614875574576002,0.3639973944653401,0.3640562294016097,0.3644122965641953,0.3645743541519735,0.3645782788639931,0.3653222505588614,0.3674250403763781,0.3689811862244898,0.3691275167785235,0.3704977959359208,0.3717524197656648,0.3756974581525109,0.3779014003452906,0.3825096899224806,0.386929948283968,0.388713413350179,0.3890620572400113,0.3949780789159027,0.0,2.479824548510479,60.81109646629162,225.8707817009013,339.55187550707615,fqhc8_80Compliance_baseline_low_initial_treat_cost,21 -100000,95684,41124,385.2159190669287,7347,75.60302662932152,5713,59.13214330504578,2324,23.91204381087747,77.29747507811412,79.70194994851512,63.28577397120039,65.06625268277286,76.99999221528653,79.40369758197114,63.17764086063029,64.96081740929554,0.2974828628275929,298.25236654397713,0.1081331105701011,105.43527347731184,80.61636,56.464330658152576,84252.70682663767,59011.25648818254,223.15578,134.99974592232692,232648.0289285565,140515.5573787957,262.00056,124.38164762516438,270507.4202583504,127453.10742139949,3781.34173,1694.4165144129745,3914296.214623134,1733236.4600277748,1352.08425,587.5843092359094,1396917.0812257011,597933.2118599216,2292.91426,957.8978619937697,2360142.092721876,968222.3049416528,0.37846,100000,0,366438,3829.668492119895,0,0.0,0,0.0,18551,193.27160235776097,0,0.0,24542,253.19802683834288,2086977,0,74973,0,0,3241,0,0,42,0.4284937920655491,0,0.0,0,0.0,0,0.0,0.07347,0.1941288379221053,0.3163195862256703,0.02324,0.3231644260599793,0.6768355739400207,25.39170352823757,4.51633489888386,0.3217223875371958,0.2100472606336425,0.2324523017678977,0.2357780500612638,10.615398418744643,5.185584140891868,24.9538135828411,13014.880383977374,64.6973095705563,14.211627082886288,20.716929256161407,14.840436127341391,14.928317104167226,0.5413968142832137,0.7891666666666667,0.6746463547334058,0.579066265060241,0.1017074981440237,0.6953068592057762,0.9267015706806284,0.8177676537585421,0.7281879194630873,0.1240601503759398,0.4921441774491682,0.7249388753056235,0.629735525375268,0.5359223300970873,0.0962072155411655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021180428878349,0.0043211003590773,0.0067516117569419,0.009033634793212,0.01141357421875,0.0137810914868911,0.0159520215413487,0.0180960356201874,0.020035386645121,0.0221707919017726,0.024165837547311,0.0263709395738735,0.0284664924590029,0.0305837498067906,0.0328738836404935,0.0351882498965659,0.0376335727537493,0.0397790399451753,0.041583869994486,0.0435838379206486,0.0584996918319805,0.072295210677833,0.0858423145942429,0.098952196599899,0.1112318420136508,0.1268224041981421,0.1403201494596947,0.1524624036126613,0.1644976741699192,0.1753349939872874,0.1892020146460888,0.2016563506086655,0.2135838779956427,0.225184065211675,0.2357357026323912,0.2463221425877027,0.2574018397022499,0.2673049845114052,0.2759901833799168,0.285724111052523,0.2944038929440389,0.3024579984534995,0.3098643284554772,0.3173408253190697,0.3237893506683222,0.330373791383164,0.3359585648177178,0.3416395534290271,0.3469589283162039,0.3520283868234297,0.3523679515597124,0.3530395598927376,0.353550086380243,0.3546386662019287,0.3559943919100319,0.3556539383877513,0.3558102980169252,0.3570970130831893,0.3586638616655549,0.3594856570570141,0.360594237695078,0.3617492826753735,0.361276229284379,0.3622022542407063,0.3622503136157483,0.3636006803611147,0.363917437233403,0.365459944402325,0.3651611991948868,0.3660846286011108,0.3690951659551026,0.3690011235353914,0.3697281504065041,0.372959300988733,0.3746792130025663,0.3792319655461179,0.3827699018538713,0.3803339517625232,0.3825746998045238,0.3865054602184087,0.0,2.236265274290989,61.40549318309255,224.9637217266348,323.2642474555042,fqhc8_80Compliance_baseline_low_initial_treat_cost,22 -100000,95822,41393,387.0509903779925,7448,76.37077080419945,5784,59.70445200475882,2398,24.63943562021248,77.32864418348662,79.6379711952416,63.32870225298407,65.03784913454247,77.02343165500127,79.33412794883728,63.21696205941992,64.92993787981756,0.3052125284853417,303.8432464043268,0.1117401935641453,107.91125472491105,80.51912,56.41805513567635,84029.88875206112,58877.97701537888,221.08283,133.62775755530433,230049.27887124044,138788.02827313793,265.81474,127.03517892789414,272916.2509653315,129219.54472978854,3840.54447,1738.3244778008882,3966477.614744004,1773579.662462455,1418.9719,626.1772774719725,1464189.6224249129,637840.8484043416,2366.94446,989.4984396021764,2433262.0692534074,999771.5577967296,0.38189,100000,0,365996,3819.54039782096,0,0.0,0,0.0,18380,191.1043392957776,0,0.0,24842,254.9101458955146,2089728,0,75143,0,0,3164,0,0,47,0.4800567719312892,0,0.0,1,0.0104360167811149,0,0.0,0.07448,0.1950299824556809,0.3219656283566058,0.02398,0.3213967121192813,0.6786032878807188,25.201090457762376,4.54098903342415,0.3303941908713693,0.201417704011065,0.2276970954356846,0.240491009681881,11.088703287765304,5.564152161072068,25.657680940286376,13165.743405671656,65.68934164825855,13.679964936175551,21.575189508688037,14.880619644709602,15.553567558685362,0.5489280774550485,0.7716738197424893,0.6944008372579801,0.6006074411541382,0.113587347232207,0.7013167013167013,0.9162162162162162,0.8629550321199143,0.7651006711409396,0.1363636363636363,0.4982722874913614,0.7044025157232704,0.6398891966759003,0.5525024533856723,0.1071098799630655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023092115258013,0.0048655881279649,0.0072236595140262,0.0095481878758329,0.0116737848281472,0.0139890042761148,0.0161757211293446,0.0185126598426321,0.0207043145911255,0.0228495999017661,0.0250927273099858,0.0270309100611633,0.0293612866759159,0.0313886572572758,0.0335870148083983,0.0357438016528925,0.0376583326434307,0.0397727272727272,0.0418925937467539,0.0438728883245032,0.0588204614678516,0.0727206189878711,0.0862009328651538,0.0988871257579419,0.1118513287022884,0.1272596570607015,0.1403529237099408,0.1537814857775271,0.1660489805508977,0.1770615544619211,0.1908526013116943,0.2038106985198649,0.2162726462080515,0.2280876276263145,0.238418539140386,0.2498504287708568,0.2599144525971342,0.2693754363837023,0.2793793589131966,0.288529705298659,0.297009265594378,0.3053366174055829,0.3133904825227963,0.3200033645353937,0.3266210523752709,0.3330863740198802,0.3392673441224438,0.3450000637991093,0.3504762152258936,0.355631191396938,0.3561902960370756,0.3567696815568332,0.3580148995836048,0.3584815132525916,0.3595136378573776,0.3590462401035088,0.3589469996177857,0.3595945254329629,0.3613994749395151,0.3626503648195622,0.3639517345399698,0.3661254377586755,0.3670971411717614,0.3689311655310441,0.3710533330102498,0.3729786673689755,0.3742059728090598,0.3747463216641298,0.3771493132789605,0.3812774451097804,0.3833402213344354,0.3835792862892406,0.3861972369007448,0.3871988882025942,0.3897142857142857,0.3852567975830815,0.3873499538319483,0.3849774866966844,0.389334070185134,0.3842829076620825,0.0,2.430116025307154,63.5226598131017,225.75991468912656,325.9503322686554,fqhc8_80Compliance_baseline_low_initial_treat_cost,23 -100000,95757,41332,387.6792297168875,7325,75.39918752676044,5671,58.75288490658646,2311,23.90425765218209,77.35098256499538,79.69651989108026,63.33757887846742,65.06969776242495,77.0705818040318,79.41132800314847,63.23545744017024,64.96758308765834,0.2804007609635732,285.19188793178785,0.102121438297182,102.11467476661085,80.9215,56.7110927608538,84507.13785937321,59223.96562220392,221.66514,133.8019609974771,231048.1740238312,139291.77083396213,261.56401,123.93871225841676,269380.2750712742,126719.84398929216,3746.90889,1672.7804355980625,3886355.128084631,1720321.8830979068,1369.88443,587.4459380502058,1418901.5946614868,601793.1932393516,2273.84736,938.2027834015656,2353093.5179673545,961680.724457419,0.38162,100000,0,367825,3841.233539062418,0,0.0,0,0.0,18427,191.96507827104023,0,0.0,24448,251.52208193656855,2090617,0,75072,0,0,3180,0,0,44,0.4594964336810885,0,0.0,1,0.0104431007654792,0,0.0,0.07325,0.1919448666212462,0.3154948805460751,0.02311,0.3096321331080203,0.6903678668919797,25.75633332181151,4.518967798145322,0.3362722623875859,0.2006700758243696,0.2297654734614706,0.2332921883265738,10.92409012597995,5.428025927858045,24.509654487260597,13169.007766464823,64.02472826513643,13.416820877788764,21.6215671068178,14.463491273960315,14.522849006569547,0.5501675189560924,0.7741652021089631,0.697954902988988,0.5763622409823485,0.1186696900982615,0.7055837563451777,0.9340974212034384,0.8630705394190872,0.6795774647887324,0.1439393939393939,0.500232991612302,0.7034220532319392,0.6421052631578947,0.5475956820412169,0.1123701605288007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023391694429536,0.0045914799160762,0.0068694002212007,0.0090294141545461,0.0115504672041972,0.0137736559741833,0.0159121721491116,0.0180847698070073,0.0200533529574096,0.0222804449948315,0.0244787502306414,0.0265756518168753,0.0288181771449133,0.0309542688263945,0.0330936587680658,0.0352550851661981,0.0373070192695983,0.0394828319722738,0.0414609042802041,0.043234120576316,0.0581259395356606,0.0713770124802544,0.0848964613368283,0.0978594558223642,0.1106109799291617,0.126615997716726,0.1405073493541476,0.1532052100625718,0.1661503621253231,0.1777508420397743,0.1921887958983638,0.2051795415683643,0.2171562816092579,0.2288049364886598,0.238517165090861,0.2495123681177409,0.2603106887193862,0.2705405861506441,0.2803781808276394,0.2891209887300368,0.2974068071312803,0.3053412775521193,0.3129859524964792,0.320232460607513,0.3275941620729012,0.3337356222753134,0.3391174888341194,0.3453543988195186,0.3512060522838562,0.3567191195317558,0.3579350729956553,0.3585007173601148,0.3582650466233399,0.3589527884545652,0.3607004470938897,0.3605026268088113,0.3606586036458416,0.3624084702157134,0.3638406256967909,0.3649125320059446,0.3658664962309905,0.3667162255922291,0.3679261160432532,0.3696003592276605,0.3708404719963321,0.3709994495557128,0.3713402592942388,0.3730116062110623,0.3760822129935947,0.3781629806734409,0.3805334066538355,0.3818259613841793,0.3819277108433735,0.3825940396843637,0.386535552193646,0.3866491207082186,0.384735445606368,0.3834048640915594,0.3817114093959731,0.3820443062572872,0.0,1.854830071741239,61.451563942720966,216.886774431046,326.65274475625654,fqhc8_80Compliance_baseline_low_initial_treat_cost,24 -100000,95834,41462,387.6912160611057,7332,75.19252039985808,5736,59.18567523008535,2326,23.84331239434856,77.51248185563044,79.80011153854095,63.42745123530996,65.11153996527503,77.229568131018,79.51654396283845,63.32360271553003,65.0103073175324,0.2829137246124418,283.5675757024916,0.1038485197799303,101.2326477426342,81.5518,57.077961688261816,85096.70889245988,59558.99464056976,223.58671,135.38691678196537,232618.4965669804,140585.661572655,264.41091,126.26236874608844,271685.5604482752,128586.7458423352,3784.00446,1693.29012052528,3907314.3143352047,1725831.7449167515,1400.18689,602.0179856869702,1445381.0651751987,612574.0925769437,2285.22088,948.557417592179,2344973.683661331,956480.2504506328,0.38187,100000,0,370690,3868.03222238454,0,0.0,0,0.0,18526,192.5934428282238,0,0.0,24657,253.05215268067695,2093607,0,75053,0,0,3212,0,0,55,0.5634743410480623,0,0.0,1,0.0104347100194085,0,0.0,0.07332,0.1920025139445361,0.3172394980905619,0.02326,0.307991192850667,0.692008807149333,25.52880959910347,4.52457921460115,0.3298465829846583,0.2058926080892608,0.2306485355648535,0.2336122733612273,11.263122309781874,5.762992823306367,24.523974256686905,13166.003863090604,63.96923158601004,13.80328678444274,21.04539491783952,14.68447275200318,14.43607713172462,0.5428870292887029,0.7510584250635055,0.6865750528541226,0.5842781557067271,0.1156716417910447,0.7139769452449568,0.8956743002544529,0.8939051918735892,0.7421602787456446,0.1132075471698113,0.4882704691812327,0.6789340101522843,0.6231884057971014,0.5405405405405406,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020945904923805,0.0043649547806888,0.0066390293840399,0.0091323274243792,0.0115097828074524,0.0137801281399369,0.0159332939667284,0.0182635829662261,0.0203710700172566,0.0226096737907761,0.0247711307268519,0.0269926570127579,0.0292023304322808,0.0312979220485164,0.0335470834450194,0.0358515121467526,0.0381109076045902,0.0402479990046862,0.0422072862886051,0.0440798309266758,0.0595198364690667,0.0737057833265368,0.0864280325257775,0.0992752862094317,0.1109157339454371,0.1272272155976384,0.1405786350148368,0.1529579381618679,0.1650980643233668,0.1762457030873518,0.1897413839453734,0.2032448313854263,0.2162980816206885,0.2276082730906152,0.2376458438619235,0.2496764988884833,0.2596352048490791,0.2695366916820204,0.27873810602628,0.2876136038868248,0.2963445872660559,0.3041512248560706,0.3123377542832869,0.3191832540801453,0.3257236284364781,0.3321249062957001,0.3379784420380258,0.3433424171367006,0.3503128830398039,0.3562212587045066,0.3576374909412996,0.3581575844006253,0.3595240767762936,0.3604691372255201,0.3617276633575344,0.3619551262456441,0.361787652914273,0.3630680885972108,0.3643981023243114,0.36553534127225,0.3663360767918409,0.3681389322942421,0.3700899691714028,0.3717014044189999,0.3731751168644373,0.3748733535967578,0.3752060010229016,0.3772717319903657,0.3789433277498604,0.3806715420303531,0.3803305264105912,0.3808973415992434,0.379265091863517,0.382183908045977,0.383855331841909,0.3862756598240469,0.3832072617246596,0.3877388535031847,0.3896598639455782,0.386303443057132,0.0,2.5218807032558823,60.75143767735908,210.25342474564235,335.14171662660283,fqhc8_80Compliance_baseline_low_initial_treat_cost,25 -100000,95747,41576,390.3412117350935,7330,75.59505780859975,5739,59.45878199839159,2275,23.541207557416943,77.31288813594676,79.67209468638215,63.318020272784125,65.06220300420377,77.03230438781519,79.38676733462844,63.21633255463424,64.96066836996444,0.2805837481315762,285.3273517537076,0.1016877181498898,101.53463423932862,80.89444,56.650069320955,84487.70196455241,59166.41703756253,222.5457,134.004910601339,231963.40355311395,139489.70787736328,261.13727,123.74561151369603,269059.7825519337,126454.6930763795,3808.63926,1686.9389832664606,3952633.095553908,1736688.7038408096,1381.26544,586.9765242536612,1433618.0036972438,604047.4524044209,2248.54434,925.8477596916372,2329189.7396263066,949723.807588064,0.38282,100000,0,367702,3840.350089297837,0,0.0,0,0.0,18490,192.61177895913187,0,0.0,24356,250.75459283319583,2091060,0,75122,0,0,3203,0,0,51,0.5222095731458949,0,0.0,1,0.0104441914629178,0,0.0,0.0733,0.1914737996969855,0.3103683492496589,0.02275,0.3177691309987029,0.682230869001297,25.32256378059625,4.570315922800908,0.3251437532671197,0.2024742986583028,0.2343613870012197,0.2380205610733577,10.8413260346836,5.329710482908637,24.19930413489652,13199.38929828032,64.33613687261119,13.59474386302279,20.809975162700407,14.959069661744346,14.97234818514366,0.542080501829587,0.7788296041308089,0.6939978563772776,0.579182156133829,0.0966325036603221,0.6875,0.9154929577464788,0.858139534883721,0.7072368421052632,0.0959409594095941,0.4969171043617264,0.7187112763320942,0.6448467966573816,0.5417867435158501,0.0968036529680365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023192691770139,0.0046929322210847,0.007122637202082,0.0093751269654247,0.0117268945596566,0.0139409368635437,0.0163454675231977,0.0186011373033455,0.02094792156542,0.0230286398869558,0.0252535091406834,0.0272321199363351,0.0294758927102188,0.0314466704434258,0.0333133872565203,0.0353056689576766,0.0371225614049621,0.0388590283686471,0.041024094506203,0.0430098564254308,0.0572630655836969,0.0715025581468344,0.0846755589111195,0.0976522662517216,0.1108545521640571,0.1266169548892061,0.1407349242898526,0.1540672301109147,0.1661966715802516,0.1779900920028308,0.1917204995693368,0.2046437686551023,0.2173601069786151,0.2289201426102933,0.2394406486890891,0.2513181798041561,0.2621346220381924,0.2721105273224351,0.2812691635058711,0.2908626300591282,0.2991525227499016,0.3071281523417395,0.3145426576736481,0.3212016591143398,0.3280790452346807,0.334118372379778,0.3396860003257778,0.3455749395135617,0.3518285647613985,0.3566015526841332,0.3580185240191181,0.3588127387832228,0.3590442817984005,0.3593079243531732,0.3601361031518624,0.3607657269481719,0.3606878433245761,0.3620066359629574,0.3629912194786673,0.3635906010103734,0.3654067301347912,0.3662061551936935,0.3663360080874455,0.369208646025255,0.3696657226538862,0.3698259796845061,0.3705395621444579,0.373192665798087,0.3755678591709256,0.3795003821553562,0.3827980804724991,0.3843267581475129,0.3872192344194875,0.3879873875259556,0.3896029705798343,0.3906530856800479,0.3925671455340412,0.3967112024665981,0.4050028105677347,0.4006127920337035,0.0,1.8824738583361504,60.4848773919281,211.25889026883013,343.22178985823143,fqhc8_80Compliance_baseline_low_initial_treat_cost,26 -100000,95787,41471,388.6435528829591,7286,75.03105849436771,5670,58.682284652405855,2326,23.93853028072703,77.37208356525132,79.71005814449278,63.35007434272507,65.0793503183962,77.09127439172694,79.42821872377992,63.24736408912282,64.9787177432985,0.2808091735243749,281.8394207128563,0.1027102536022539,100.6325750976913,81.34852,56.97372374880159,84926.47227703134,59479.599265872814,220.34844,132.91082518971032,229518.98483092693,138235.60106247233,255.40517,120.7957228860471,263806.2471942957,123929.2775672026,3758.73299,1676.4199216128904,3893068.2869282886,1719168.8346152308,1383.82899,593.284236809242,1433661.0604779357,608347.2842803778,2299.6066,952.2653977563792,2369146.084541744,966358.8067453064,0.38214,100000,0,369766,3860.2941944105146,0,0.0,0,0.0,18295,190.45381941181995,0,0.0,23868,246.31734995354276,2092950,0,75131,0,0,3273,0,0,46,0.469792351780513,0,0.0,2,0.0208796600791339,0,0.0,0.07286,0.1906631077615533,0.3192423826516607,0.02326,0.3046133853151397,0.6953866146848603,25.243170179944293,4.537723716166219,0.326984126984127,0.2079365079365079,0.2202821869488536,0.2447971781305114,10.990111934934331,5.3956830502373645,24.781168210553147,13175.054095718888,63.573871624919946,13.687248576027663,20.72344705164923,13.969351872257304,15.193824124985758,0.5396825396825397,0.7675996607294318,0.6785329018338727,0.5868694955964772,0.1181556195965417,0.7116519174041298,0.9222222222222224,0.8747252747252747,0.7210144927536232,0.1358490566037735,0.485628187297172,0.6996336996336996,0.6147248034310222,0.5488180883864338,0.113980409617097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0045821337334252,0.0067585395059974,0.0088987312197153,0.0108918946404962,0.0129296302329369,0.0151566115239172,0.0172459538339081,0.0195389143230869,0.0217787329853648,0.0239905718384914,0.0259857550442332,0.0282266354179515,0.0304680903642991,0.0327936475198515,0.034903905765654,0.0370266857131027,0.0393566050650239,0.0415220598931814,0.043415792103948,0.0574067310200887,0.0722092646243633,0.0853102428899395,0.0982652278530224,0.1102566263537145,0.1251333734774295,0.139181484856834,0.1515486608044742,0.1637430644472898,0.1749437600428494,0.1886443340003012,0.202451467854209,0.2147817298601375,0.2264940914109557,0.2377673907066263,0.2494269039524247,0.2604718612304088,0.2711401398475616,0.2803731960866558,0.2892980226473854,0.297928689557866,0.3061491699789572,0.3146596054047025,0.321789529146908,0.3288940148112176,0.3353082465972778,0.3409967443025294,0.347390247935987,0.3522877340169347,0.3583078222316056,0.3587338330888389,0.3596502083075527,0.3609809787210024,0.3625253402838111,0.3636092912447886,0.3636698599852616,0.363949465130305,0.3647990255785627,0.3660692827960312,0.3662956390815723,0.3685901651665758,0.3687289311917509,0.3690969084298354,0.3699816085766833,0.3716204788711976,0.3725834797891036,0.3735376124637098,0.3758646950561655,0.378186317836309,0.3790810399391099,0.3817623326609206,0.3864109823193205,0.3862356885318489,0.3873342022540826,0.3849503076194983,0.3875074360499702,0.3861234492265278,0.3871351995235259,0.38218469081994,0.3742889647326507,0.0,1.946856456079588,60.07507885953396,213.170031836204,331.1481072081718,fqhc8_80Compliance_baseline_low_initial_treat_cost,27 -100000,95648,41368,388.8006022080964,7397,76.20650719304115,5815,60.252174640347945,2289,23.638758782201407,77.25911226955019,79.65591878280789,63.27736057920528,65.04615060165031,76.98071081042468,79.3748703566633,63.17660867874813,64.94649675709123,0.2784014591255044,281.0484261445936,0.1007519004571477,99.65384455908575,80.94064,56.71277243451642,84623.45265975242,59293.21306720101,223.16258,135.05329941493434,232722.77517564403,140604.50758503508,270.08082,127.91705846498758,278596.1651053864,130816.78611236686,3807.46481,1709.842282342496,3947516.612997658,1754748.8720546197,1400.01901,612.9006146783028,1449954.0398126463,627155.4914591692,2247.0633,926.94369100217,2321976.0162261627,945883.4237060356,0.38032,100000,0,367912,3846.520575443292,0,0.0,0,0.0,18511,192.91569086651052,0,0.0,25251,260.2145366343259,2083051,0,74906,0,0,3167,0,0,54,0.5645700903312145,0,0.0,0,0.0,0,0.0,0.07397,0.1944941102229701,0.3094497769365959,0.02289,0.3209718670076726,0.6790281329923273,25.365880406573336,4.517302505152555,0.328804815133276,0.2204643164230438,0.2252794496990541,0.2254514187446259,11.27681489105114,5.703875940909199,24.31407513614701,13113.46549977322,66.03423384555205,15.21549610690553,21.6265281214766,14.596711569381227,14.59549804778869,0.5681857265692175,0.781591263650546,0.7055439330543933,0.6053435114503817,0.122044241037376,0.7231316725978648,0.9186602870813396,0.8604118993135011,0.7617328519855595,0.1648351648351648,0.5188208616780046,0.7152777777777778,0.6596610169491526,0.5634075508228461,0.1107899807321772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022081986973653,0.0044717549356614,0.0066987394190365,0.0089822793041781,0.0114247927158044,0.0135049803434298,0.0157941962191814,0.0181712384005226,0.0206295171793377,0.0226523635023645,0.0246060469360345,0.0267170477764885,0.0286657615403604,0.0305961615724572,0.0327763960412388,0.0347419685047511,0.0369422660547607,0.0387905084182773,0.0408154774287497,0.0429193945206621,0.0571404685769222,0.0713769519999162,0.0852033476493998,0.0981878678754567,0.1104669581194956,0.1256579435095262,0.1396571501401988,0.1524717664606861,0.1643819503849444,0.1759494894179042,0.1897299279520255,0.2024573112594262,0.2156907593778591,0.2272777071738463,0.2382921477168723,0.2493115089059654,0.2605363556013023,0.2703455587134028,0.2795400520910342,0.287758127348571,0.2966530498560951,0.3047568772362015,0.3126157132684548,0.3195045695045695,0.3261092275044515,0.3331149081377809,0.3392442262046793,0.3444521037581699,0.3493414044841651,0.3543774164503999,0.3555588589034987,0.3565949330347887,0.3580533680811285,0.3585926928281461,0.3595638386980974,0.3599248166635854,0.3600942630129134,0.3613097105493453,0.3626950135025887,0.3630566383445005,0.3639995477330117,0.3648758770099179,0.3665626712761921,0.3668662943274342,0.3678199773040056,0.3679018160883446,0.3682809548342778,0.3698569439169515,0.3717458970005659,0.3727687505002801,0.3756829973827999,0.3797739568268252,0.3803407934893184,0.3834724668760052,0.3807278898736564,0.3841273641369404,0.3795282873439186,0.3791275988585406,0.3792717086834734,0.3821456538762725,0.0,2.108732095390492,62.54812713992715,228.0053657691712,333.60507938709,fqhc8_80Compliance_baseline_low_initial_treat_cost,28 -100000,95616,41315,387.93716532797856,7269,74.78873828647924,5687,58.88135876840696,2301,23.625753012048197,77.28554750318864,79.71572902040363,63.27381344368565,65.07120741973897,76.99757087987994,79.42980016737378,63.16817441463896,64.96964688148812,0.287976623308694,285.9288530298443,0.1056390290466851,101.5605382508511,81.22488,56.891138969497646,84949.04618473897,59499.60149922361,220.35539,133.49911593942645,229839.80714524764,139001.16710532384,260.57515,124.28935110101972,269406.86705153954,127586.35245848994,3747.36546,1685.458225989234,3880253.336261714,1723807.517559022,1381.57973,597.5541511277067,1429529.8799364122,609582.316782208,2266.78324,942.4316642454712,2329536.374665328,948710.2615151306,0.38095,100000,0,369204,3861.320281124498,0,0.0,0,0.0,18315,190.90947121820616,0,0.0,24431,252.3322456492637,2085750,0,74829,0,0,3227,0,0,40,0.4183400267737617,0,0.0,0,0.0,0,0.0,0.07269,0.1908124425777661,0.3165497317375155,0.02301,0.3216856432404135,0.6783143567595864,25.521718324556364,4.522146292329221,0.3268858800773694,0.2039739757341304,0.2363284684367856,0.2328116757517144,11.01343222147126,5.533249330534112,24.586332016011568,13165.10614395814,64.11762949033456,13.696757064655982,20.987498305347888,14.966238549295907,14.4671355710348,0.5517847722876736,0.7517241379310344,0.7132867132867133,0.5833333333333334,0.1178247734138972,0.7170596393897365,0.8944591029023746,0.8668076109936576,0.7515337423312883,0.1515151515151515,0.4956419316843345,0.6824583866837388,0.6608946608946609,0.5294695481335953,0.1094339622641509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022699635184434,0.0046658349308746,0.0071680948706493,0.0094323321644559,0.0115980954706385,0.0137823549185588,0.0160051412308351,0.0183577149395227,0.0203741395710384,0.0224798500660569,0.0245070884881311,0.0266232365059956,0.0288516963109354,0.0307999958768412,0.0329272070211667,0.035012049937423,0.0370976767320884,0.0390059505883086,0.0412498829015436,0.0432669239595285,0.0577357307129416,0.0722587271145764,0.0855122115263357,0.0982509746075229,0.1106439618017409,0.1258274638563787,0.1397479223787965,0.1527160296391065,0.1648686829769473,0.1760527814491258,0.1898308011049723,0.2031487183935464,0.2160450770538614,0.2273494345577277,0.2386354866095547,0.2500610446402805,0.260351920583106,0.2702794089469472,0.2797867987998909,0.2894208830644699,0.2976175308956555,0.3055470964417063,0.3132648705056446,0.3205539341092254,0.3279399052802026,0.3342927377614171,0.3403967199137347,0.3463059339762233,0.3515552957984285,0.3570776618119766,0.3584197957283754,0.3595474651710785,0.3605966860194092,0.3614613222038663,0.3622564499791456,0.3618866068134301,0.3618878061962517,0.3625222669393679,0.3632823890632772,0.3642550593474474,0.3660882330798765,0.3671235050278665,0.3682014540090612,0.3682259369102184,0.3679099429896608,0.3675640355462624,0.3682184907489238,0.3713151927437642,0.3727584757635191,0.3761322103924996,0.3777473155129084,0.3800021342439441,0.3826120017742855,0.3827528261533761,0.3831052383199622,0.3856837606837607,0.3818964192408176,0.3824547119886016,0.3827567270730368,0.3873292867981791,0.0,2.224207808606242,63.89245566968729,207.77990909696848,328.1563669361578,fqhc8_80Compliance_baseline_low_initial_treat_cost,29 -100000,95817,41400,389.01238819833645,7302,75.1119321206049,5726,59.26923197344939,2360,24.32762453426845,77.35864855579545,79.66385124931274,63.35358995694328,65.05430823355175,77.06396319098482,79.36535920454962,63.24637579365252,64.94787818926694,0.2946853648106327,298.4920447631225,0.1072141632907559,106.43004428480651,79.90598,56.02122599420375,83394.36634417692,58466.89626496734,218.82326,132.3253952596961,227825.7302983813,137551.70299601962,255.4869,121.66333042543668,263364.7160733482,124399.21508305764,3803.73933,1697.2792169724346,3941687.487606584,1743267.465034841,1396.02232,599.8235555644889,1447174.4053769163,616216.6792578445,2328.13278,961.312446319082,2402502.812653287,980401.6148183736,0.38155,100000,0,363209,3790.653015644406,0,0.0,0,0.0,18249,189.95585334543972,0,0.0,23973,246.88729557385437,2097490,0,75286,0,0,3160,0,0,43,0.4278990158322636,0,0.0,1,0.0104365613617625,0,0.0,0.07302,0.191377276896868,0.3231991235278006,0.0236,0.3140096618357488,0.6859903381642513,25.245880152692408,4.5983508865755365,0.3332169053440447,0.1933286762137618,0.234544184421935,0.2389102340202584,11.130023605833149,5.604699530728396,25.10451514918264,13127.40691795471,64.56404421076672,12.99607857112152,21.53114580868806,14.97583959838863,15.06098023256852,0.5382465944813133,0.7606142728093948,0.6986373165618449,0.5502606105733433,0.1228070175438596,0.701867816091954,0.9104046242774566,0.8547008547008547,0.7202572347266881,0.1423220973782771,0.4856945085371481,0.6925098554533509,0.6479166666666667,0.499031007751938,0.1180744777475022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023581563872639,0.004527545098198,0.006721615620913,0.0089804864683856,0.0112673480584398,0.0133869080921621,0.0152996781159597,0.0174737078330766,0.0196146537809288,0.0217475807606538,0.023998279252704,0.0260016000984676,0.028160476704166,0.0302540724657069,0.0323648286385944,0.0342480608946221,0.0362246112140056,0.0382633755947876,0.0404258634121007,0.0422240498027254,0.0574298948422633,0.0719707266074229,0.0854558413516969,0.0982312696394228,0.109899143191375,0.1252708000887696,0.1389345348529022,0.1513994234226567,0.1634191392361815,0.1749745349273575,0.1883903479019285,0.2015016606982506,0.213759801629164,0.2258858536905556,0.2367157737112153,0.2481738070165715,0.2590810653926012,0.2690130860891384,0.2787184783348843,0.2871434628651318,0.2955047985089313,0.303477344573235,0.3116346279122102,0.3191900289104017,0.3264188819271245,0.3333703511759334,0.3399589188647579,0.3458066487567003,0.3519932585726324,0.3576922060417052,0.3584460416132903,0.3601554211389283,0.3612986903133943,0.3621901483816851,0.3632196225516461,0.36317904358762,0.3626307352917837,0.3636348657109903,0.365079365079365,0.3663104965430547,0.3676634070054453,0.3693371483071054,0.3691317649541091,0.3684636482172564,0.3698540622957961,0.3711204629142556,0.3739132937992976,0.3774857615577969,0.3789832676116381,0.3800522823245525,0.3810028086007643,0.3831564200657363,0.38573981871569,0.3871267933307483,0.3876249405045217,0.3927207637231503,0.3895096213531968,0.396023198011599,0.3999432302015328,0.4016096579476861,0.0,1.9606263918453493,61.87826091090776,216.74864020742797,332.1487425483752,fqhc8_80Compliance_baseline_low_initial_treat_cost,30 -100000,95862,41411,389.0488410423317,7227,74.28386639127079,5601,57.853998456114,2304,23.659009826625777,77.41454581429173,79.70383284172574,63.37712166936033,65.06824597688804,77.13328716778285,79.42148243800231,63.27404317465668,64.96750175912484,0.2812586465088742,282.35040372342723,0.1030784947036451,100.74421776319298,80.11168,56.18310821897263,83569.79825165342,58608.32052218045,219.16948,132.6283341592113,228009.87878408545,137733.07896686002,256.80843,122.1527067079992,264496.9330913188,124841.29031194806,3731.4325,1668.7346599693549,3858142.5695270286,1706405.8646485114,1377.76655,595.3014929965497,1423918.6434666498,607677.5291528968,2278.49084,947.5337630036722,2342550.770899835,958533.7269137818,0.38141,100000,0,364144,3798.627193256974,0,0.0,0,0.0,18219,189.45984853226517,0,0.0,23996,246.87571717677497,2097231,0,75301,0,0,3181,0,0,40,0.4068348250610252,0,0.0,0,0.0,0,0.0,0.07227,0.1894811357856375,0.3188044831880448,0.02304,0.3164340268633131,0.6835659731366869,25.252879043905757,4.593566522027822,0.3236921978218175,0.1978218175325834,0.2317443313693983,0.2467416532762006,10.88490976019364,5.405515294007301,24.507015732010927,13084.249456240936,62.91777874976041,13.054312747422768,20.36715204410085,14.278387552526532,15.21792640571026,0.5416889841099803,0.7734657039711191,0.6971869829012686,0.5924499229583975,0.1041968162083936,0.6958393113342898,0.9116022099447514,0.8777777777777778,0.7307692307692307,0.1216216216216216,0.4906108866175422,0.7064343163538874,0.6375641966250917,0.5533596837944664,0.0994475138121546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023282887077997,0.0045387771642773,0.0066519971201719,0.008537551012121,0.0107429616830978,0.0125052147457747,0.0146699266503667,0.016810151372965,0.018866960856419,0.0210600605515096,0.0232415213004599,0.0254182523156458,0.027557720168922,0.0294895680009881,0.0316108545034642,0.033743028299938,0.0356939630645077,0.0380848748639825,0.0400917688338921,0.0419930306340042,0.0563364127374721,0.0698415684307332,0.0829596882333221,0.0957685846283074,0.1076430572228891,0.1223595268272074,0.1362239925420568,0.1492240646258503,0.1616719831862844,0.1733440428380187,0.1873614906297738,0.2012909782890753,0.2141894681937713,0.2256961140009616,0.2369187484201387,0.2481990107008089,0.2591940052186712,0.269810048330898,0.2791003640735406,0.288329650450533,0.2976786685018332,0.3051033773037702,0.3124682054254853,0.319213712093971,0.326489929378016,0.3337197257435998,0.3404772342957349,0.3459510405787503,0.3515421245896534,0.3565300159961926,0.3575290928949959,0.3579872688693543,0.3588897351273589,0.3601435019095012,0.3618689197631868,0.3623295019157088,0.3620864334335918,0.3636050064058342,0.3653171874732755,0.3669613358335565,0.3679515769353297,0.3684960516159677,0.3692068951054817,0.3703040744635625,0.3693237936932379,0.3704370515329419,0.373324205602145,0.3774414369151542,0.3796925025507511,0.3811991707861585,0.3838894967177242,0.3857363186725522,0.3847408708746392,0.3828644888082275,0.3793911007025761,0.3766741732843428,0.3774307150512938,0.3787971457696228,0.385103448275862,0.3933613124761541,0.0,2.257199268420049,61.61058956390324,204.9226655880956,325.053089694144,fqhc8_80Compliance_baseline_low_initial_treat_cost,31 -100000,95721,41143,386.5191546264665,7192,74.09032500705175,5643,58.5033587196122,2237,23.119273722589607,77.36002699221102,79.73158695174267,63.33690834044432,65.08852811247883,77.09020908958767,79.45838604429753,63.23999108366242,64.99244940928473,0.2698179026233447,273.200907445144,0.0969172567819072,96.07870319409528,80.6025,56.49120017804548,84205.66019995612,59016.516937814566,219.61882,132.70059840631993,228978.2179459053,138174.50549651583,261.28202,123.83282623170696,269882.7843419939,127057.59214359114,3727.62754,1661.1662729462892,3867029.878501061,1708191.935882711,1372.95193,597.9660067059193,1424231.1613961407,614601.1708046499,2205.85644,902.9979749571722,2280861.608215543,922194.5348158284,0.38003,100000,0,366375,3827.5300090889145,0,0.0,0,0.0,18261,190.2821742355387,0,0.0,24415,251.9927706563868,2095003,0,75105,0,0,3149,0,0,45,0.4701162754254552,0,0.0,0,0.0,0,0.0,0.07192,0.1892482172460069,0.3110400444938821,0.02237,0.3140637345272584,0.6859362654727417,25.1703741505094,4.574472305753861,0.3287258550416445,0.2062732589048378,0.2330320751373382,0.2319688109161793,11.229930008584194,5.6425611614118845,23.5774038635976,13081.453163762497,63.54297351662837,13.6961714934676,20.829191015884746,14.668919480970738,14.348691526305284,0.5511252879673932,0.781786941580756,0.693800539083558,0.5726235741444867,0.1222307104660045,0.7184115523465704,0.9302949061662198,0.8957871396895787,0.7562724014336918,0.1170212765957446,0.4967120713950211,0.7117572692793932,0.6289173789173789,0.5231660231660231,0.1236611489776046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021877627087743,0.0042575190828087,0.0066671402331976,0.0089294784534427,0.0111578990194881,0.013125738259134,0.0152599388379204,0.0174835167078323,0.019657551750575,0.0218882450500624,0.0240419118702454,0.0263336207958605,0.0284541976882892,0.0306831875907672,0.0327170301892243,0.0346143109705033,0.0365689422977312,0.0387146326780561,0.0405533309064433,0.0424507658643326,0.0568534280194245,0.0715676218784669,0.0845834294945765,0.0973065070834341,0.1097464551157029,0.1245269456013869,0.1380356385235469,0.1513381218409151,0.1638971357782097,0.1756188596679394,0.1888302455838001,0.2018046869928375,0.2142756229827097,0.2257852973965506,0.2370354079612931,0.2485133055004928,0.2595120971789981,0.2701371711266022,0.2796521778563816,0.2884685839897417,0.2969713089634915,0.3046156363593861,0.3118243962438205,0.3187511975474228,0.3262778243287551,0.3325655301537248,0.3386723393605706,0.3447806738715829,0.3501055002524239,0.3556567055874398,0.3567925850083526,0.3573071783780805,0.3584884360844963,0.3591673663182884,0.359995237173858,0.3600417190711371,0.3601584158415841,0.3614946397202476,0.3612982660145696,0.3620914565500974,0.3631245073383131,0.3645039301482963,0.3643657693516288,0.3642994585402962,0.3646081617912604,0.3654172652474859,0.3660456197590223,0.3671422696067575,0.3708742667326313,0.3724806667468045,0.3755173365216591,0.3759104541559554,0.3772868266126479,0.3796914575178448,0.3795385779122541,0.3766451304139746,0.3739385517986722,0.377079482439926,0.377877596855699,0.3784421715184893,0.0,1.7452845825702348,61.920555107451584,213.20366264372387,323.38687077599377,fqhc8_80Compliance_baseline_low_initial_treat_cost,32 -100000,95751,41492,389.5938423619597,7315,75.20548088270618,5657,58.485028876983,2251,23.101586406408288,77.33346816806463,79.69420411015274,63.32120940122799,65.06963887748371,77.05384350206764,79.41540888220757,63.21919482275497,64.97072257835697,0.279624665996991,278.7952279451673,0.1020145784730175,98.91629912674205,81.31948,56.96984108590375,84928.07385823647,59497.90716118239,221.53814,134.3116458813573,230809.8505498637,139712.63577545644,262.69598,125.40859051711162,270726.5198274692,128142.71581660978,3717.75576,1676.527979117919,3845918.590928554,1714419.1618379822,1361.98131,593.9780652323045,1404979.7808900168,603006.2098079502,2211.68738,919.9859024494192,2272484.3395891427,929297.699929991,0.38266,100000,0,369634,3860.366993556203,0,0.0,0,0.0,18435,191.9353322680703,0,0.0,24662,253.82502532610624,2089005,0,74993,0,0,3193,0,0,43,0.4490814717339766,0,0.0,0,0.0,0,0.0,0.07315,0.1911618669314796,0.3077238550922761,0.02251,0.3235370611183355,0.6764629388816645,25.12049244514845,4.501953064962765,0.3316245359731306,0.2061163160685876,0.2361675799893936,0.2260915679688881,11.106268738358697,5.630529590272036,24.013100200515726,13140.003375091492,63.908295780699824,13.739830689979966,21.265775076698866,14.922915044401796,13.979774969619209,0.5529432561428319,0.7873070325900514,0.7020255863539445,0.562125748502994,0.1110242376856919,0.7114597544338336,0.9360613810741688,0.848421052631579,0.6929824561403509,0.1434108527131783,0.497494631352899,0.712258064516129,0.6523911491791577,0.5171026156941649,0.1028403525954946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020365773342114,0.0042286942765586,0.0063942512636258,0.0088195248836594,0.0109944875002542,0.0131759818346587,0.0153733230028952,0.0172174481027127,0.0191631576795715,0.0213628407357743,0.0236203520498651,0.0257173656383142,0.0279300309533848,0.0299790939331211,0.0322517410368841,0.0343473182630986,0.0365423047849813,0.0385393643184011,0.040577630840247,0.0429737949422988,0.0579564908764457,0.0723712440737213,0.0857361705699655,0.0989440915401119,0.1111837595570788,0.1264195233362235,0.1402805185986801,0.1529267773520647,0.1647798876476493,0.1766806429819952,0.1906567424625957,0.2043514481385712,0.2165718698002196,0.2278698386655728,0.238944867338408,0.2497785356779022,0.2596313785904864,0.2696999707398321,0.2793403250703714,0.2885593220338983,0.2963027232132528,0.3045248233587572,0.312161234585434,0.3202305765612454,0.3273563832370222,0.3333620668423515,0.3396547410557918,0.3457444779307977,0.3503767770670948,0.3555599577390386,0.3567845971308381,0.3572451199030864,0.3584578517056667,0.3598842257597685,0.3608853561966003,0.3606673221088853,0.3606408994188078,0.3622381767883019,0.3636955776482687,0.3660512636673239,0.3669574700109051,0.3675303547337513,0.3687308193551099,0.3701084394153701,0.3708155959752321,0.3718009354143675,0.3727072423956277,0.374746963562753,0.3756591287114697,0.378731045490822,0.3795724030581879,0.3818522483940043,0.382035319527379,0.3826294697903822,0.3876987527373131,0.3893655589123867,0.3905619372865569,0.3954113269946259,0.3941276115189158,0.3982819211245607,0.0,2.365411707458426,64.86908908910424,201.72590544783048,328.6621915895269,fqhc8_80Compliance_baseline_low_initial_treat_cost,33 -100000,95794,41379,388.7299830887112,7172,73.72069231893438,5556,57.38355220577489,2249,23.091216568887404,77.34149214859087,79.68031588286416,63.33904717832892,65.07235404440897,77.06330010136065,79.40232242089044,63.23760371068686,64.97383912821857,0.2781920472302204,277.9934619737219,0.1014434676420563,98.5149161903962,80.90038,56.66551197726718,84452.45004906361,59153.50854674321,220.67981,133.8590786559979,229691.8804935591,139059.36046010087,255.39876,121.75085076440212,262505.9607073512,124086.84894124696,3683.72724,1651.5764293163356,3804932.9289934654,1683581.160820596,1346.24822,581.4719121582364,1389079.691838737,590730.3589865885,2219.26682,922.564190276084,2279210.973547404,930317.2530381908,0.38143,100000,0,367729,3838.747729502892,0,0.0,0,0.0,18455,191.97444516358016,0,0.0,23842,244.8483203540932,2093607,0,75107,0,0,3169,0,0,39,0.3966845522684093,0,0.0,0,0.0,0,0.0,0.07172,0.1880292583173845,0.3135805911879532,0.02249,0.3126820227693937,0.6873179772306063,25.397892803793848,4.637178578563398,0.3390928725701944,0.1976241900647948,0.2253419726421886,0.2379409647228221,11.323636514062589,5.711263693605013,23.93226296881744,13100.077841707842,62.46697079538488,12.761287876080042,21.148139197496825,13.93440904906105,14.62313467274696,0.543016558675306,0.7750455373406193,0.685244161358811,0.5782747603833865,0.1142208774583963,0.698948948948949,0.9203539823008848,0.876993166287016,0.7073170731707317,0.1161048689138576,0.4938446969696969,0.7101449275362319,0.6269896193771626,0.5398963730569948,0.1137440758293838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083329112513,0.0044301166833936,0.0066873002181744,0.0089115148559118,0.0111817673093554,0.0132625724501125,0.0154210182767624,0.0179621762927865,0.0201857002617801,0.0221692027278871,0.0239828562053974,0.0260728478861379,0.0280597813229652,0.0300395582660293,0.0322753724875149,0.0341505767561086,0.036272327206834,0.0385169970642849,0.0404426663895672,0.0424331386572555,0.057740865173932,0.0717063989962358,0.084725336910276,0.0967423287095418,0.108388660554326,0.1237607018285593,0.1375643988381707,0.1503296469587409,0.1616914095435286,0.1734312201918439,0.1881969259913032,0.201764343398307,0.2144106558890953,0.2250904361700965,0.2367087076520458,0.2482229455922407,0.2583604583760646,0.2691145921060019,0.2788253547605295,0.2883065207697321,0.2972195921760617,0.3048686514886164,0.3131662924004255,0.3201417319064378,0.3269027772722309,0.3328819735092816,0.3393674209276159,0.3453524419372872,0.3510280615543773,0.3563194160814745,0.3571168988491823,0.3588092879938373,0.3592454745389951,0.3598854199820607,0.3609990622627748,0.36059941408347,0.3612354378948036,0.3620042166293319,0.3631187184852331,0.3643914252399318,0.3658577941896831,0.3679031488549618,0.3672810865530622,0.369563259792886,0.3710553104852392,0.372410892650615,0.3733367968366669,0.3758933129147524,0.3780366175108641,0.3779011302843811,0.3793231339823829,0.3801122261789144,0.3795400679008391,0.3833592534992224,0.3830339129599385,0.3858715374380065,0.3834041883168005,0.3829385872982603,0.3786242183058556,0.3811379579111457,0.0,2.2221573898093325,58.662426609847074,209.97997640521652,324.80361073225623,fqhc8_80Compliance_baseline_low_initial_treat_cost,34 -100000,95711,41065,384.3863296799741,7275,74.95481188160191,5662,58.67664113842714,2315,23.83216140255561,77.3419109081298,79.7099610216409,63.33255108723839,65.08057986137844,77.05975820047702,79.42566020019412,63.23022310940751,64.97940712454975,0.2821527076527843,284.30082144677726,0.1023279778308747,101.172736828687,81.16878,56.79671516748065,84806.11423974256,59341.88877713183,218.55596,131.8096602524658,227837.10336324977,137203.52963866826,255.0907,121.22826324314396,263220.6642914608,124085.707745449,3730.38324,1677.106634703257,3869457.073899552,1724169.0659414888,1424.58547,617.7034852111027,1477000.825401469,634022.7121865108,2280.01652,940.702407514569,2350514.6534881047,957544.3315947108,0.37969,100000,0,368949,3854.823374533753,0,0.0,0,0.0,18189,189.5184461556143,0,0.0,23879,246.1994964006227,2093654,0,75162,0,0,3205,0,0,41,0.4283729142940728,0,0.0,2,0.020896239721662,0,0.0,0.07275,0.1916036766836103,0.3182130584192439,0.02315,0.311909758656873,0.688090241343127,25.44840026448446,4.55436052819281,0.3447545037089368,0.1990462734016248,0.220063581773225,0.2361356411162133,11.177320020406478,5.620766721454977,24.66953156223283,13096.102592304613,63.99869860236556,13.213943699230947,22.111027540923857,14.005366092007115,14.668361270203652,0.5473330978452844,0.7613132209405501,0.6869877049180327,0.5922953451043339,0.1211667913238594,0.7000715819613458,0.9116809116809116,0.8535031847133758,0.6923076923076923,0.1520912547528517,0.4973036342321219,0.6932989690721649,0.6340310600945307,0.5588865096359743,0.1135940409683426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0045707915273132,0.0068167985392574,0.0093747460794669,0.0118253548623256,0.0140812087643561,0.0164531025413621,0.0185045317220543,0.0205335241210139,0.0229563900232327,0.0251973347001537,0.027415827249484,0.0295956562872773,0.0317728509024973,0.0338152287197267,0.0359106884432499,0.0378302248273148,0.0397455454894513,0.0417355500795408,0.0437881661491006,0.0587246219400117,0.0726532406632055,0.0861897117916758,0.098215130893907,0.1105461910086285,0.1256599341917327,0.1396064286850899,0.1521019406623588,0.1639818830516803,0.1752711124459652,0.1892203316821021,0.2019174583937498,0.214324559495323,0.2255620188943317,0.236331841228292,0.2477196245129295,0.258879286311681,0.2691624508150646,0.279028086573801,0.2870191262147035,0.2951800259163273,0.3037030968376208,0.3113042242849024,0.318332753928961,0.3242855580001701,0.3310753285211919,0.337909676772236,0.3441213556990562,0.3498509397278029,0.354958306945324,0.3560299746617068,0.3565746373420683,0.3570724564219538,0.3584303417198648,0.3587647863044641,0.3582919654348225,0.3585996136428413,0.3590637122756263,0.3595957865890211,0.3614146988210843,0.3621279957861469,0.3635876255907231,0.3642477652217912,0.3641377757766771,0.3657863523032606,0.3670846230523057,0.3683651499928233,0.3723346956879891,0.3732132089525768,0.3741614108383883,0.3772196154200018,0.3779222873112269,0.3802789986623351,0.383307573415765,0.3828363914373088,0.3796218234373118,0.379020979020979,0.3815570358034971,0.3801817149346962,0.3776908023483366,0.0,1.8663712454837385,62.19521513169728,216.44534522689344,323.5283972707345,fqhc8_80Compliance_baseline_low_initial_treat_cost,35 -100000,95708,41299,386.2895473732604,7362,75.66765578635015,5708,59.054624482801856,2328,23.98963514021816,77.33810060160408,79.72198081872583,63.31256206328344,65.07546306408736,77.05074414571251,79.43128959937873,63.20693815396741,64.97066777921863,0.2873564558915689,290.69121934709585,0.10562390931603,104.7952848687288,81.4264,57.00686740251919,85077.94541731098,59563.32532548919,220.65829,133.51864496484131,229975.00731391317,138927.85481874508,261.81658,124.85571681621704,269207.78827266267,127155.92711707874,3775.92163,1701.8072576621944,3910734.954235801,1743625.886868051,1366.56608,597.6113508733431,1413384.001337401,610073.5388735168,2294.1906,956.5275783393048,2366700.840055168,974212.072594524,0.38067,100000,0,370120,3867.1793371505,0,0.0,0,0.0,18392,191.5618339114808,0,0.0,24455,251.24336523592595,2087115,0,74937,0,0,3235,0,0,39,0.3970409997074435,0,0.0,1,0.0104484473607221,0,0.0,0.07362,0.1933958546772795,0.3162184189079055,0.02328,0.3231958762886598,0.6768041237113402,25.3591843958716,4.626932833123754,0.3326909600560617,0.1955150665732305,0.2393132445690259,0.2324807288016818,11.12554715761981,5.495368925973644,24.69933901851048,13165.220025161309,64.24548749544616,13.053940584179893,21.408372214843787,15.186467274724912,14.59670742169756,0.5495795374912403,0.775089605734767,0.6893101632438126,0.5944363103953147,0.1137905048982667,0.6984352773826458,0.9185393258426966,0.8295218295218295,0.7517241379310344,0.1362007168458781,0.50092980009298,0.7078947368421052,0.6417489421720733,0.5520446096654275,0.107824427480916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022095639658632,0.0044126597687157,0.0068125977216886,0.0092383681931825,0.0119453404015018,0.0142494830870145,0.0164922587356954,0.0188444135761487,0.020903001482845,0.0231608047918906,0.02556424901814,0.0278373910275498,0.0298175985523041,0.0320268572487796,0.0340334660696969,0.0362214000785399,0.0380091528442152,0.0402340588882202,0.0424273298124506,0.0444502317829053,0.0588057145244162,0.0735588146008018,0.086910445412098,0.0991354830567299,0.1112118783481672,0.1264201239765587,0.1392932937181663,0.1528329411263616,0.1649265295217739,0.176505300201708,0.1910996174775066,0.2036640031183005,0.2160664518376589,0.2276577582244402,0.2393632830990411,0.2507039443052568,0.260945826676647,0.2710742312845514,0.2793442697446151,0.2880195430773465,0.296469661333117,0.3045627599133134,0.3123666872067118,0.3194529422350189,0.326302986073101,0.3327322134387351,0.3391790857544282,0.3451843347365735,0.3499007511773634,0.3552471583399418,0.3563272624327639,0.3577985444922262,0.3587674247982392,0.3593019722467406,0.3597040918089397,0.3600528247416348,0.3598165690801478,0.3614428106187703,0.3628112477309312,0.363415114260661,0.3636346551400112,0.3641516538835048,0.36473038648461,0.3654404319946001,0.3665096049293222,0.367624810892587,0.3686013646615468,0.3712384076714403,0.3719482164215859,0.3757002662004847,0.3793306997230168,0.3833721916066129,0.386266633191062,0.3882361858561358,0.3888628919045391,0.3894686907020873,0.3967746843146204,0.3997979797979798,0.3941305540318157,0.3935926773455377,0.0,2.24951713124634,61.94330810592376,216.9074870430589,325.69614252385435,fqhc8_80Compliance_baseline_low_initial_treat_cost,36 -100000,95649,41095,385.4196071051449,7218,74.4074689751069,5573,57.67964118809397,2254,23.272590408681744,77.27782633283482,79.6891573821084,63.2892740309558,65.07261664928605,77.0066208855396,79.41480323188745,63.1910481848849,64.97534429390848,0.2712054472952161,274.3541502209581,0.0982258460708962,97.2723553775694,80.73758,56.52902296723207,84410.27088626123,59100.485072747295,217.87446,131.3566086829959,227188.1880626039,136736.38252188684,250.69363,119.38094374724184,257799.8724503131,121664.29431533,3681.88077,1650.760560401494,3814082.0813599727,1690761.6766797912,1379.12985,595.7665939155135,1427335.497496053,608618.9149378539,2226.7848,915.9302360406484,2300733.9752637246,934654.2135886448,0.38164,100000,0,366989,3836.830494830056,0,0.0,0,0.0,18134,188.95126974667795,0,0.0,23633,242.8044203284927,2093771,0,75178,0,0,3229,0,0,36,0.3763761252077909,0,0.0,0,0.0,0,0.0,0.07218,0.1891311183314118,0.312274868384594,0.02254,0.3177336663599316,0.6822663336400684,25.32701005890284,4.516419721103063,0.3177821640050242,0.2102996590705185,0.2312937376637358,0.2406244392607213,11.172434654660265,5.6543343218559,24.09491031051121,13147.957587887198,63.00469302895903,13.594224154637493,20.29907543190903,14.264100554750378,14.847292887662128,0.5490759016687601,0.7414675767918089,0.7154150197628458,0.5903801396431342,0.1215510812826249,0.703626220362622,0.8994565217391305,0.8487229862475442,0.7228070175438597,0.1470588235294117,0.4955303213336555,0.6691542288557214,0.661648177496038,0.5527888446215139,0.1150608044901777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024420890501185,0.0046750770728541,0.0068422228087629,0.0093092269073244,0.0115265272902996,0.0139566630331801,0.0162774094849566,0.0184767177014922,0.0209079192324215,0.0229766136384589,0.0251179487179487,0.0270453494941194,0.0291094304676647,0.0309195473378269,0.0329654446153687,0.0350113256725587,0.0372431373768147,0.0392395074034847,0.0412391516993069,0.0433962067419479,0.0578283540758853,0.0716844001340482,0.0851535030175806,0.0978733255464006,0.1090078397855929,0.1242392489336254,0.1373521354089239,0.1505960561219597,0.1632711989476723,0.1742528340776365,0.1876393961922617,0.2003161233747253,0.2129424056418963,0.2251898374072696,0.2368609322546915,0.2489752055128404,0.2602998135931866,0.2710419150898823,0.2811953981256666,0.2899290455481804,0.2979882067291016,0.3058724518421545,0.3131727743736544,0.3206323712724134,0.3272647723681972,0.3333744632545284,0.3397231096911608,0.3457236758299151,0.3515337104894379,0.3564593301435406,0.3576394983056339,0.3587162171493281,0.3602998373523796,0.361359778303324,0.3623255466825882,0.361885126090502,0.3618711104744624,0.3623229087546646,0.3642736863809753,0.3656232602410071,0.3679145794885315,0.370402749905621,0.3715404205164902,0.3716673030704611,0.3712835387962291,0.37192440582138,0.3715047750150563,0.3732143990857723,0.3747953591002918,0.3764634882317441,0.379265818114739,0.3812382739212007,0.3815940002542265,0.3829162805066419,0.3850618458610846,0.3837981407702523,0.3834762275915822,0.3869691923397169,0.3863829787234042,0.3935130910511918,0.0,2.236986073284202,63.67728325760564,205.5032438935745,316.3499752297043,fqhc8_80Compliance_baseline_low_initial_treat_cost,37 -100000,95819,41407,388.06499754745926,7298,74.90163746229871,5684,58.72530500213945,2309,23.721808827059352,77.39792083527668,79.70161356062998,63.37134666233783,65.07148197943634,77.11152907421216,79.41510489705979,63.26577764641759,64.96831083991681,0.2863917610645217,286.50866357018856,0.1055690159202384,103.1711395195316,80.43552,56.33577202865943,83945.27181456705,58793.9469506668,219.18477,132.3582201340217,228182.0098310356,137566.8397019607,257.09658,122.32503676588772,264787.1090284808,124895.45931357155,3752.32363,1693.2796113337552,3879764.284745197,1730875.214032453,1380.64703,599.9847420011472,1427644.6007576785,612918.619481676,2279.1446,955.6059308015192,2344319.978292405,968841.8528689664,0.38182,100000,0,365616,3815.6941733894114,0,0.0,0,0.0,18330,190.68243250294827,0,0.0,23993,246.7986516244169,2097563,0,75175,0,0,3131,0,0,39,0.4070173973846523,0,0.0,0,0.0,0,0.0,0.07298,0.1911371850610235,0.3163880515209646,0.02309,0.3122975249449268,0.6877024750550732,25.350461564042018,4.598347928709025,0.3296973961998592,0.2053131597466573,0.2306474313863476,0.2343420126671358,11.16861403654221,5.5505576446201,24.732778331697432,13120.6191506578,64.13871510150653,13.54238418809418,21.143664908186505,14.5580599748194,14.894606030406456,0.5531315974665728,0.7566409597257926,0.7017075773745998,0.5957284515636918,0.1238738738738738,0.6885245901639344,0.9014492753623188,0.8407079646017699,0.7574750830564784,0.1540983606557377,0.508759635599159,0.6958637469586375,0.6575246132208158,0.5475247524752476,0.1148977604673807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024803596015226,0.0047219041635845,0.0066129114052436,0.0088746281084044,0.011019843851659,0.0131485213001974,0.0153451121843858,0.0174649324152002,0.019617058667266,0.022006916167052,0.0240661434747863,0.0263759938445755,0.0286950089382949,0.03092327323619,0.032931014934911,0.0351353583744605,0.0368711269281302,0.0389399058891814,0.0411833729660128,0.0432538195745389,0.0578110656763748,0.0714450069028992,0.0849515581092983,0.0979204777224079,0.1103463541117693,0.1255272588880784,0.1386458830390753,0.1517067407478366,0.1639317992436382,0.1756503083936712,0.18911758053572,0.2023689761479798,0.2146732335257727,0.2256265581944626,0.2369063592969798,0.248668460507812,0.2593096525957731,0.2689275955516074,0.2779907018936387,0.2873115966078806,0.2964903151199768,0.3042111291623324,0.312272275587943,0.3200617875275409,0.326135219400939,0.3319464276921562,0.338282529089023,0.3446562460287203,0.3505597618585388,0.3561835220308154,0.3572878439596187,0.3582099808958341,0.358899635370472,0.35963557082834,0.3603725379519325,0.3607595905188903,0.3617031376085821,0.3622764815027668,0.3637949314272033,0.3646871477392689,0.3664501839477438,0.3669348446417247,0.3682728476264526,0.3692826624690802,0.3705084745762712,0.3728,0.3732451093210587,0.3745590898979948,0.3770387404917742,0.3811845575893214,0.3836411366462487,0.3853280189593881,0.3863665430361939,0.386463725565943,0.3894092907665838,0.3921921921921922,0.3977994731132806,0.3960154502947753,0.391602634467618,0.3858508604206501,0.0,2.313561661000998,61.93072601155758,214.7857765226003,326.9098242803938,fqhc8_80Compliance_baseline_low_initial_treat_cost,38 -100000,95557,40960,384.3569806502925,7335,75.5465324361376,5720,59.31538244189332,2320,23.86010444028172,77.19945181010942,79.66985644133564,63.224607941291474,65.05342635511465,76.9146527712229,79.3861767733578,63.11987309265825,64.95197457797786,0.2847990388865185,283.67966797783595,0.1047348486332211,101.45177713678775,80.69622,56.53149801188233,84448.25601473467,59159.97573373204,219.82751,132.43357353319132,229496.782025388,138040.64301676367,257.94169,122.3912059747106,266970.2376591982,125680.1551654156,3801.23058,1706.681430165303,3943085.833586237,1751266.3073115167,1425.90302,616.0103221037889,1477680.5466894105,630131.2327760283,2290.3752,954.5896526152414,2358361.710811348,965736.6885778584,0.37854,100000,0,366801,3838.557091578848,0,0.0,0,0.0,18345,191.4145483847337,0,0.0,24157,249.8404093891604,2086219,0,74905,0,0,3307,0,0,35,0.3662735330745,0,0.0,0,0.0,0,0.0,0.07335,0.1937708036138849,0.316291751874574,0.0232,0.3202385582782315,0.6797614417217684,25.3899957102174,4.515286625131335,0.3216783216783216,0.2019230769230769,0.2367132867132867,0.2396853146853146,11.05491097593725,5.551681232725444,24.8450974078746,13097.865344916094,64.6679716661831,13.563703282537206,20.72800288713743,15.207200659023508,15.16906483748495,0.541083916083916,0.7575757575757576,0.6782608695652174,0.5819793205317577,0.1342086068563092,0.7148997134670487,0.92,0.8694690265486725,0.7468354430379747,0.1690647482014388,0.4849676225716929,0.6869565217391305,0.6159942363112392,0.5317919075144508,0.1253430924062214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022604940649359,0.0044033197378299,0.0065602404744495,0.008601756954612,0.0109948283585128,0.0132520540683805,0.01555340103077,0.0175454731248722,0.0197707736389684,0.0220129331106078,0.0240412252607374,0.0264673220088018,0.0286917745440314,0.030874130923645,0.0331827999214608,0.0355046735743786,0.0376250972258231,0.0396794878456885,0.0413741380387908,0.0433039629181108,0.057387338382359,0.0714645246534259,0.0848417954378219,0.0974995521743253,0.1094564171942544,0.1254293711038548,0.1394713047178341,0.1530605711358688,0.1653239629756599,0.1769526083169339,0.1904484188698807,0.2031692624952515,0.2154524326506563,0.2267585389670949,0.2374370749801289,0.2493694654622623,0.2594636341250476,0.2703447030407007,0.2799435446236498,0.2887931529668562,0.2969232197136691,0.3049517262414509,0.3121261748789519,0.3194784907474164,0.3262901358679095,0.3325418908056637,0.3379963048150522,0.3436825502241408,0.3483314049479336,0.3538506379088777,0.3547676038243607,0.3562203897843893,0.3573165903048815,0.3581325170107505,0.3587154592979836,0.3582305572235823,0.358217270194986,0.3592624413455819,0.3605301661072381,0.3622961442920401,0.3618887397690112,0.3632650621613006,0.3640980068554018,0.3666711809317443,0.3662420382165605,0.3689904480447517,0.3702475047597069,0.3725676919658445,0.3730071370237546,0.3740058350985172,0.3739841110400876,0.373069960600575,0.3764757876128543,0.3766950126407722,0.3790406182263688,0.3837695709334289,0.3825740144193895,0.3818953323903818,0.3841916827320297,0.3829296424452134,0.0,2.0704849391515348,61.94345776582685,219.1799516361864,329.3905870576034,fqhc8_80Compliance_baseline_low_initial_treat_cost,39 -100000,95683,41139,385.3976150413344,7354,75.63517030193451,5735,59.37313838403896,2344,24.11086608906493,77.33990302576841,79.73098383633759,63.32261558699434,65.08919403139512,77.05960445656682,79.44994729444213,63.21957809743447,64.98862860292095,0.2802985692015909,281.03654189546035,0.1030374895598669,100.5654284741695,80.58006,56.4004180051401,84215.64959292664,58945.07697829301,219.24201,132.1367921976629,228529.97920215715,137498.2320480164,257.17172,122.41643589300492,265580.730119248,125472.23475973507,3803.8904,1700.1829057310397,3940531.264696968,1742124.6308837812,1399.99125,602.5672590312188,1449647.7117147248,616424.80789531,2310.14686,957.8011679373058,2378337.6775393747,970700.9226665476,0.38057,100000,0,366273,3827.984072405756,0,0.0,0,0.0,18223,189.8247337562576,0,0.0,24070,248.3095220676609,2095978,0,75219,0,0,3167,0,0,46,0.480754156955781,0,0.0,0,0.0,0,0.0,0.07354,0.1932364610978269,0.3187381017133532,0.02344,0.3096007236077012,0.6903992763922987,25.42839709702681,4.577101144854256,0.3297297297297297,0.1998256320836966,0.233129904097646,0.2373147340889276,10.971025392918383,5.437126142854364,24.930787893233337,13126.7646909492,64.32635519841998,13.426043355859855,21.12394410820606,14.991899365091635,14.784468369262411,0.5396687009590235,0.7652705061082025,0.6641988365943945,0.5961106955871354,0.121234386480529,0.7029411764705882,0.926027397260274,0.8372641509433962,0.7292993630573248,0.1322957198443579,0.4889142857142857,0.6901408450704225,0.6141785957736878,0.555229716520039,0.118659420289855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0044802594901424,0.0069101277511136,0.0093446552634786,0.0115819122865887,0.0136098047598688,0.0159314225139642,0.0181779211235404,0.0205471050049067,0.0223955454564064,0.0244710079553842,0.026597273548493,0.0285358780823889,0.0303866834222615,0.0328004211004345,0.0348546259150502,0.0369871529216742,0.0392779663480002,0.0413831845702515,0.0437724126428154,0.0580400513961578,0.0713702416349093,0.0849307020028747,0.0977223712587449,0.1092625804409747,0.1251322415471203,0.1391906803038662,0.1513577382029528,0.1629069469366829,0.1749769456775826,0.1891135068767568,0.2028458583563274,0.2159651984774334,0.2271718331419824,0.2383326729185928,0.2488840151087185,0.2593914915931227,0.2699327137295497,0.2794740007034503,0.2885879900107682,0.2975218085475623,0.3058372220857748,0.3133786150423628,0.3200345050679318,0.3264533048419212,0.3334483225941577,0.339527027027027,0.3442207858306189,0.3506039085583951,0.3551701821351683,0.3567450953954021,0.357445987654321,0.3585984025288589,0.3599408935504433,0.3608694356712949,0.3613177307792586,0.361256046308778,0.3621988943003817,0.363107858559606,0.363503127792672,0.3643565099864844,0.3657207403590821,0.3666274723890312,0.3676985981308411,0.3685826904940391,0.3692501244987288,0.3705848623853211,0.3732496990432744,0.3751326119244642,0.378035650197392,0.3789141182933528,0.3799796802310037,0.3803486529318542,0.3778579100813257,0.3791182856603417,0.3809467032311911,0.3831891223733004,0.3815599917678535,0.3765831691528286,0.3866822429906542,0.0,2.1226993978576782,60.021909368530416,219.00428664855653,333.079625212051,fqhc8_80Compliance_baseline_low_initial_treat_cost,40 -100000,95790,41227,387.3577617705397,7235,74.39189894561018,5670,58.67000730765215,2249,23.15481783067126,77.331780499572,79.67294960125466,63.32970022966426,65.06300892023933,77.06253944508148,79.40169191516175,63.23225466851626,64.96689806128981,0.2692410544905215,271.257686092909,0.0974455611479996,96.11085894951545,82.02062,57.43065981414737,85625.4515085082,59954.75499963187,221.19918,133.73585171787303,230410.3037895396,139102.93529373946,263.94229,125.01942309906973,272129.2723666353,127940.05191532534,3763.61453,1678.276701896095,3897365.4974423214,1720376.4295814747,1384.98009,594.5679876930661,1433040.9124125692,607889.9547897127,2224.7667,913.2669714689474,2292053.617287817,928430.9075517476,0.37951,100000,0,372821,3892.065977659463,0,0.0,0,0.0,18456,192.12861467794133,0,0.0,24623,253.6381668232592,2086289,0,74921,0,0,3273,0,0,34,0.3549431047082159,0,0.0,0,0.0,0,0.0,0.07235,0.1906405628310189,0.3108500345542502,0.02249,0.3188348490839594,0.6811651509160406,25.211989635697343,4.623289362943225,0.3349206349206349,0.2040564373897707,0.2216931216931217,0.2393298059964726,11.379658624953692,5.635757547422842,23.778929961203485,13046.997000746658,63.89498641266477,13.434764830928543,21.54479249935983,13.969221502286306,14.946207580090068,0.5492063492063493,0.7882454624027658,0.6987888362295945,0.5767700875099443,0.1105379513633014,0.7138643067846607,0.927536231884058,0.8862144420131292,0.7328519855595668,0.1444043321299639,0.4974501622624014,0.729064039408867,0.6393897364771152,0.5326530612244897,0.1018518518518518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271207900734,0.0043996593812091,0.0066567221731762,0.0087772766061197,0.0107297228578693,0.0129023717145795,0.0152933259925368,0.0175180693372534,0.0196990452045552,0.0216923958887842,0.023691143756343,0.0258540141488608,0.0279682888959723,0.0302430984754841,0.0323033417961896,0.0341248591483774,0.0359883594486272,0.0380111803690144,0.0401205382657037,0.0421269639640577,0.0567648225055825,0.0707068594021295,0.0838364779874213,0.0968592714014017,0.1094416757104173,0.1253856883215689,0.138706942236354,0.1517954934549824,0.1638333066538605,0.1749247399376493,0.1890559579803894,0.2021522820679212,0.2141723208072373,0.2257810535064026,0.2368664304421506,0.2480696584652538,0.2588501746047684,0.2688492509784516,0.278131201451494,0.2864796794504865,0.2951765440377367,0.3027922905197704,0.3106173540616644,0.3179611941371748,0.3251454742033844,0.3317630809830931,0.3377345726956129,0.3431966241283035,0.349312402698495,0.354699725100444,0.3555378829745649,0.3567073590332925,0.3568609764347728,0.3572483279770694,0.3584040494268274,0.3579482610298636,0.3574662790143463,0.3574512259425257,0.3591733040373523,0.3614086626303156,0.3627622542101797,0.3641068348105407,0.3653595046543954,0.3653789972808378,0.3661194246694755,0.3667060522515426,0.3685539644732689,0.3709070201524882,0.3726057356520512,0.3748049765971916,0.37806392274086,0.3801395598497047,0.3803528058289658,0.38320351661911,0.3882330540746382,0.3866522885214474,0.3915065096094234,0.3968673718470301,0.4013377926421405,0.4086576648133439,0.0,2.0266168751450637,60.10394584386268,218.57694168222216,327.6072843350857,fqhc8_80Compliance_baseline_low_initial_treat_cost,41 -100000,95695,41327,388.3379486911542,7221,74.39260149433095,5613,58.15350854276608,2243,23.104655415643453,77.34192318165195,79.7184011830031,63.32298576779221,65.0753363264265,77.06017140646,79.43537058282502,63.22009414525069,64.97462715526726,0.2817517751919496,283.0306001780798,0.1028916225415201,100.70917115923804,81.33048,56.95558544120824,84989.26798683318,59517.82793375646,219.98764,133.44931297726845,229285.4694602644,138854.0707218438,260.89384,123.9476625299974,270132.9118553738,127468.55233373884,3683.66988,1646.5232039506875,3819436.75218141,1690645.6177968434,1358.05152,588.500228208951,1405442.938502534,601290.9185748511,2203.50324,912.8350019800708,2272261.079471237,926713.2306189734,0.38046,100000,0,369684,3863.148544856053,0,0.0,0,0.0,18407,191.78640472333976,0,0.0,24335,251.81043941689745,2087018,0,74884,0,0,3176,0,0,39,0.386645070275354,0,0.0,1,0.0104498667641987,0,0.0,0.07221,0.1897965620564579,0.3106217975349674,0.02243,0.3198369922439858,0.6801630077560142,25.281506086235755,4.52688511468988,0.3254943880277926,0.2168181008373418,0.2294673080349189,0.2282202030999465,11.06054420218212,5.540723414516856,23.75943170711648,13115.065986047694,63.1140677404109,14.09811591965824,20.60746030806328,14.282453585873052,14.126037926816336,0.5530019597363264,0.76253081347576,0.6956759715380405,0.5822981366459627,0.1209992193598751,0.6921933085501859,0.8983957219251337,0.8387096774193549,0.7116104868913857,0.1518518518518518,0.5091377694470478,0.7022538552787663,0.6511127063890882,0.5484818805093046,0.1127596439169139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022376801028725,0.0046522942196004,0.0067459955161954,0.0091413248826863,0.0111966481242309,0.01322514304331,0.0157616785270069,0.0178693596642602,0.0200008180293672,0.0221266574514923,0.0243107178377713,0.0263090335897146,0.0284700437130367,0.0303957631397277,0.0325154577453884,0.0344966651155576,0.0365862501165332,0.0385912832276345,0.0406085563944177,0.0426704734911637,0.0580548795136676,0.0726865327832806,0.0862555759643138,0.0993233929266675,0.1114734031888737,0.126509403011927,0.1398492248885113,0.1524015467047306,0.1642845689240472,0.1757785244265058,0.1899463026460503,0.202662161137646,0.215000272138464,0.2271458746019064,0.2383416266678409,0.2492797305083994,0.2598394426269776,0.2698625356045168,0.2793265030577396,0.2880969563673436,0.2962512875710334,0.3046846657070299,0.3124008241953437,0.3200830044740851,0.3269258826962358,0.3325851288186179,0.3383797874473631,0.3443857079166932,0.3501589567248426,0.3548404163855931,0.3562802258665874,0.3572780133419886,0.3583929429726596,0.3592209108681485,0.3606971833080515,0.3609658873131468,0.3609737542791936,0.3617385577872901,0.3621851477169459,0.3633988331722682,0.3646817865799808,0.3658812553347758,0.3672121492574986,0.3664808487682071,0.3668951865977888,0.3683302397322945,0.3674390696877053,0.369685883688659,0.3717380600689315,0.3719031307257229,0.3734939759036144,0.374993337952353,0.3768493237665883,0.3754485075196579,0.3729770417764396,0.3730692135361396,0.3764991650220131,0.3788368336025848,0.3876871880199667,0.3892897835169008,0.0,1.901252913948118,59.67775272556914,216.210795368029,322.27806255288937,fqhc8_80Compliance_baseline_low_initial_treat_cost,42 -100000,95738,40893,383.4840920010863,7140,73.38778750339468,5567,57.5633499759761,2293,23.51208506549124,77.32392886815877,79.68810434762305,63.31606620966248,65.06509014468003,77.0362009533138,79.40199189060448,63.2089364411286,64.96188223638745,0.2877279148449787,286.1124570185751,0.1071297685338805,103.20790829257476,80.67774,56.49073594670514,84269.29745764483,59005.55259845113,217.23239,131.50279994659542,226334.2350999603,136789.5210339624,251.664,119.71377081513135,260004.87789592423,122777.79491033083,3666.73692,1647.0285782214432,3791993.127075978,1682461.0172379962,1320.58338,567.9041840793036,1366465.342915039,580365.4957883178,2256.0526,947.8170256747286,2315428.607240594,953882.3927643816,0.3773,100000,0,366717,3830.422611711128,0,0.0,0,0.0,18066,188.0966805239299,0,0.0,23533,242.9442854456956,2093132,0,75207,0,0,3212,0,0,44,0.4491424512732666,0,0.0,0,0.0,0,0.0,0.0714,0.1892393320964749,0.3211484593837535,0.02293,0.3181213411389036,0.6818786588610963,25.419560463493436,4.577012722878617,0.3368061792707023,0.1979522184300341,0.2311837614514101,0.2340578408478534,11.078930073593678,5.407779835299543,24.487828509057863,12930.55761681584,62.71002383276224,12.77020589259651,21.252023898747307,14.359712203775034,14.3280818376434,0.5482306448715646,0.7667876588021778,0.7114666666666667,0.5726495726495726,0.1043745203376822,0.698295033358043,0.9118541033434652,0.8701298701298701,0.7033333333333334,0.1124031007751938,0.5002370791844476,0.705045278137128,0.659589525831564,0.5329280648429585,0.1023923444976076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359172262906,0.0043293554634032,0.0065358150486126,0.008656952996403,0.0106603735199576,0.0131771894093686,0.0151601655689904,0.0172404993518225,0.0192415830854011,0.0217469207220305,0.0239706364829396,0.0261096337669538,0.0282621211498128,0.0303757570763462,0.0325673067993024,0.0345048583832954,0.036544059000839,0.0388296105621522,0.0407129709549609,0.0427176778253576,0.0572266828152896,0.0713448701584046,0.084219467690178,0.0964499032556574,0.1088226609297224,0.1239500687612398,0.1376423273236627,0.1510414448183328,0.1626428800341844,0.1736552626218224,0.1875013456776832,0.2016763099551181,0.2141956247553603,0.2249838711441099,0.2351666483335166,0.2462312114398378,0.2565771115402216,0.2664242615273775,0.2759251266441017,0.2837180487357166,0.2919942484751501,0.3002767095019229,0.3070387773506099,0.3134850086488564,0.3196920978271461,0.3256713025863985,0.332559656738514,0.3382071499655515,0.3451190692601345,0.349962277137298,0.3515809662736199,0.3526611378658461,0.3532562609531347,0.3542473422384661,0.3553942032442748,0.3559551044849453,0.3560957034968585,0.3575330744421773,0.3582749344619022,0.3593797561281312,0.3590760440551817,0.3596578278818673,0.3597098096940385,0.3600880344951491,0.3613817109429766,0.3629049166579306,0.3634022093755366,0.3654376565323526,0.3675735111552513,0.3698191710673708,0.3725571153316818,0.3742521367521367,0.374176798378926,0.3720930232558139,0.3764247720364742,0.3792276325257855,0.3773498395231545,0.3767246550689862,0.374630475678581,0.3807706982067913,0.0,2.2767601953972147,59.402627448736894,211.0118513809786,323.2594942615828,fqhc8_80Compliance_baseline_low_initial_treat_cost,43 -100000,95797,41195,386.4212866791236,7373,75.67042809273777,5701,58.95800494796288,2269,23.33058446506676,77.4066300966336,79.74576880562711,63.35719594835807,65.08769470434407,77.12316525101099,79.46210495388283,63.25190639731259,64.98495346983364,0.2834648456226176,283.6638517442793,0.1052895510454803,102.74123451043238,79.90004,56.04117692117797,83405.57637504305,58499.92893428601,219.16386,132.138001998465,228264.51767800664,137420.48498226976,256.16766,121.82323693333528,264159.4204411412,124601.89174508586,3744.28632,1681.6784483512572,3877306.5858012256,1724203.8042436163,1381.0972,602.7999510204893,1425248.765618965,612804.4834603268,2239.01774,939.475019869972,2305809.3677255027,952648.5863154776,0.38047,100000,0,363182,3791.162562501957,0,0.0,0,0.0,18248,189.93287890017436,0,0.0,23965,246.8970844598474,2099801,0,75301,0,0,3150,0,0,46,0.4801820516300093,0,0.0,0,0.0,0,0.0,0.07373,0.1937866323231792,0.3077444730774447,0.02269,0.3218170185540627,0.6781829814459372,25.45134490721971,4.5794793675924845,0.3264339589545694,0.2120680582353973,0.2271531310296439,0.2343448517803894,11.085054476423712,5.513841393457573,24.07953734157641,13080.708594147438,63.67999643317532,13.927569263669218,20.73112101093892,14.352591611307451,14.668714547259729,0.548149447465357,0.76095947063689,0.6899516389038152,0.5922779922779923,0.1152694610778443,0.6988847583643123,0.935754189944134,0.8513189448441247,0.7167832167832168,0.1584507042253521,0.5016069788797062,0.6874265569917744,0.6433518005540166,0.5569871159563925,0.1036121673003802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088475489898,0.0044614791831437,0.0065150546473041,0.0086260325330461,0.0108420378149123,0.0130038084764057,0.0151403927326114,0.0174756290511917,0.0197473322703299,0.02183879814974,0.0237153340029106,0.0260120055410189,0.0281098081133025,0.0303170681490632,0.0323471807030203,0.0342303085374416,0.0363734171977158,0.0383869797335821,0.040538153862137,0.0427884315072771,0.0570841289218601,0.0707339008219521,0.0837779198591298,0.0969616714485396,0.1088117841676588,0.1242404708816349,0.1379222623830067,0.1508910343654304,0.163479597063343,0.1752405030745827,0.1895317930893477,0.2026430765237704,0.2152491712406934,0.2266461309913925,0.2364155815614526,0.2474158347905,0.2580350070839701,0.2684673946045633,0.2780046740634855,0.2864618520342146,0.2951356353750939,0.3036493107117383,0.3112431498337022,0.3183572216097023,0.3254788061442737,0.3320259986926653,0.3384370575484582,0.3446892511462048,0.35025999455373,0.3559532621338691,0.3571100793607947,0.357731532524807,0.3587586966032091,0.3604528280035323,0.360885477104347,0.3604695713475656,0.3599101095144648,0.3613483956649341,0.3622998296422487,0.3636428367986328,0.3658002172366006,0.3676389327439217,0.3683043651042647,0.3696968342977145,0.3697238895558223,0.3707075962539022,0.3722372351016925,0.3752235153872698,0.3763237253664352,0.3783376911496712,0.3777110898922384,0.3771795007684562,0.3765719315895372,0.3781410838631547,0.38339074574062,0.3846784584748741,0.3869978534191965,0.3890559230306675,0.3944751381215469,0.3914053426248548,0.0,2.199083917289794,59.12231261415176,217.23796257350128,329.97618399198353,fqhc8_80Compliance_baseline_low_initial_treat_cost,44 -100000,95689,41205,386.888775094316,7202,74.16735465936524,5624,58.19895703790405,2262,23.241960935948757,77.29491858535671,79.69841067663151,63.29396199958445,65.07437685608382,77.01339009525255,79.41599138352103,63.19267773500084,64.97527905783184,0.281528490104165,282.419293110479,0.1012842645836116,99.09779825197518,80.45774,56.37495853349402,84082.53822278422,58914.77446048556,220.13952,133.1561305817908,229484.5802547837,138582.3977487389,259.5895,123.24938653145126,267703.8740085067,125966.10656434017,3750.17841,1673.8312643669,3884572.44824379,1714681.2949940949,1377.80683,593.1384936605065,1426285.9785346277,606266.9198341859,2233.20802,919.2532173022134,2298149.170751079,931377.6818358792,0.38019,100000,0,365717,3821.9335555811017,0,0.0,0,0.0,18252,190.1263468110232,0,0.0,24345,250.84387965178863,2093873,0,75165,0,0,3285,0,0,39,0.4075703581393891,0,0.0,0,0.0,0,0.0,0.07202,0.1894315999894789,0.3140794223826715,0.02262,0.3242777630532732,0.6757222369467267,25.37960358955519,4.600382283965,0.3220128022759602,0.1980796586059744,0.2459103840682788,0.2339971550497866,11.04684532126522,5.361097935027784,24.058748117893217,13101.55195573994,63.461424391779,12.883928560775134,20.52725188924819,15.537403136824476,14.512840804931216,0.5567211948790897,0.7863554757630161,0.7023743787962452,0.6095444685466378,0.1063829787234042,0.723293768545994,0.9181818181818182,0.8864628820960698,0.7639344262295082,0.1294117647058823,0.5042095416276894,0.7308673469387755,0.6400591278640059,0.5658627087198516,0.1008482563619227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023214086591584,0.004343105320304,0.0064896155994515,0.0087641706064765,0.0110752567769781,0.0132500280289054,0.0157047226417404,0.0179399685335403,0.0200004092155338,0.0224856071626134,0.0248756218905472,0.02703868833597,0.0290391957110075,0.0308979789547454,0.0328144676810008,0.0350265775920908,0.0371491041729272,0.0390884551495016,0.0409350033288948,0.0429843030164057,0.0576591633154018,0.0724373671702419,0.0855982538250047,0.0982081794556148,0.1104980535716169,0.1257776461128274,0.1389755673013649,0.1517422734192847,0.1640382930529735,0.1756160885751376,0.1900945733428122,0.202801817395067,0.2154893135911986,0.2271410930311342,0.2372260767260052,0.2491585473870682,0.259820820921333,0.2703660773567707,0.279873285493687,0.2888310556727506,0.2974306126466195,0.3054700394479626,0.3137596210775606,0.3200441506400643,0.3256534954407294,0.3317694700972887,0.3372942754358916,0.3431613535922157,0.3493523316062176,0.3539064769096718,0.3552011207802354,0.3560378760769633,0.3570038636171352,0.357991290383252,0.3592235900031258,0.3582465517771019,0.3584701711996693,0.3594970501961043,0.3608691178488132,0.3615162441920959,0.3621713316369805,0.3637231693489029,0.3639430680021085,0.3648934732669699,0.3662012868762899,0.3676025576928137,0.3686681065514758,0.36831236497649,0.3705213169365985,0.371349486521181,0.3739784846945842,0.3761630721239176,0.3788332802040166,0.3857958050586058,0.386200973375322,0.3886815171583384,0.3910967344423906,0.3987679671457905,0.3997237569060773,0.4036697247706422,0.0,2.235191671153754,59.66538095993946,214.9940799509928,327.4170480372041,fqhc8_80Compliance_baseline_low_initial_treat_cost,45 -100000,95718,41016,385.4760860026327,7227,74.41651518000793,5620,58.108192816398166,2337,24.070707703880142,77.3593554540744,79.73035036573835,63.33143217950936,65.08401135479552,77.07720728791132,79.44643024369671,63.22928234514484,64.98338537646097,0.2821481661630827,283.92012204163564,0.1021498343645248,100.62597833454844,80.90874,56.68772327308483,84528.2392026578,59223.68130663493,221.01691,133.69975076982095,230311.78043837103,139088.43767088838,259.45261,123.71558724950532,266792.01404124615,126179.5042257419,3754.82507,1678.5106496209814,3886695.135711152,1717495.59081989,1389.93683,597.4268466016536,1436386.708873984,608423.333752955,2315.499,950.3918036556086,2387077.6447481145,966072.9934621726,0.37823,100000,0,367767,3842.1926910299,0,0.0,0,0.0,18327,190.84184792828933,0,0.0,24262,249.2216719948181,2092303,0,75025,0,0,3182,0,0,44,0.4596836540671556,0,0.0,0,0.0,0,0.0,0.07227,0.1910742141025302,0.3233706932337069,0.02337,0.3213020081375509,0.6786979918624492,25.11053938851655,4.604450130408838,0.3240213523131672,0.1983985765124555,0.2282918149466192,0.249288256227758,11.018021086982824,5.502058308335559,24.783931709655448,12995.97773234864,63.23613399867865,13.137681123006368,20.50903273230955,14.393464509438212,15.195955633924514,0.5403914590747331,0.7739910313901345,0.6908292147171884,0.5853468433359315,0.1177730192719486,0.7141833810888252,0.921832884097035,0.8685344827586207,0.7431506849315068,0.1301115241635687,0.4829545454545454,0.7002688172043011,0.630066322770818,0.5388496468213926,0.1148409893992932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0047441888754853,0.0069408505586167,0.0091304259511283,0.0112971945130817,0.0136215093609699,0.0158213976247515,0.017842925096462,0.0198932755412892,0.0221439613427655,0.0239860534276777,0.0257808728520218,0.027881805835631,0.0301359983515351,0.0323396175793785,0.0347533052853554,0.0366390243397417,0.038729217014303,0.0404391126265671,0.0422590960699144,0.057243100441697,0.0717754427094235,0.0846707365682757,0.0976656151419558,0.109569251858491,0.1252869307663828,0.1377773533250565,0.150301817291416,0.1615481609711269,0.1730243038789634,0.187213135949318,0.1997315697756226,0.2116346865074185,0.2238355235083649,0.2342459417193454,0.2453236053976737,0.2558518717055302,0.2661176920567423,0.2756229857927466,0.2850219406285446,0.2931531260486698,0.3012104555289164,0.3088748300124165,0.3157611168314935,0.3225986574574234,0.3290963061498478,0.3350147068026785,0.3417283573736294,0.3477190891899593,0.3527843758247558,0.3544354892964304,0.3549874093542306,0.3564947032258972,0.3576969662014073,0.3581192395030945,0.3585950527008215,0.3588219485590527,0.3598779907837124,0.3607173356105892,0.3619781906444647,0.3627846722865779,0.3638723741577487,0.3640919811320754,0.3647461597369251,0.3657893463641202,0.3678206136900078,0.3692373853211009,0.3709401167216442,0.3729341402130445,0.3760338834059216,0.3761370945511348,0.3801564341583628,0.3831488708335999,0.3811676371437327,0.3829425113464448,0.3848539057841383,0.3875288683602771,0.3866450172518774,0.3834254143646409,0.3735032831208961,0.0,2.3913722408395333,61.54349467009922,210.08225060266184,321.9892820359076,fqhc8_80Compliance_baseline_low_initial_treat_cost,46 -100000,95875,41403,387.22294654498046,7472,76.63102998696219,5747,59.222946544980445,2332,23.864406779661017,77.4394230829848,79.72172241077021,63.39129033748679,65.07843379441388,77.15469224218035,79.43776102586229,63.28598817120532,64.97645711056242,0.2847308408044569,283.96138490792566,0.1053021662814686,101.9766838514613,81.21674,56.88470405535306,84711.07170795307,59332.15546842562,220.31416,133.36750218757047,228935.9478487614,138248.42992184663,261.71509,124.57755860944413,268603.01434159064,126580.30011000574,3806.00773,1707.040399592828,3925977.1368970014,1736702.216002951,1422.20034,616.4693314881117,1465568.4172099088,625171.0158937275,2302.64382,961.4695379074768,2358947.5462842244,966042.2385964209,0.3816,100000,0,369167,3850.503259452412,0,0.0,0,0.0,18345,190.59191655801823,0,0.0,24465,250.79530638852677,2094293,0,75164,0,0,3187,0,0,48,0.4797913950456323,0,0.0,0,0.0,0,0.0,0.07472,0.1958071278825995,0.3120985010706638,0.02332,0.3177368086458995,0.6822631913541004,25.373976375896145,4.6059531872891855,0.3316512963285192,0.198886375500261,0.2281190186184096,0.2413433095528101,11.065004528641252,5.490302326991433,24.76074969022092,13118.20289199984,64.64725454925318,13.433677606743124,21.448532820879343,14.720417255394672,15.044626866236024,0.5482860622933704,0.7681539807524059,0.7030430220356768,0.5873379099923722,0.1175198269646719,0.7110320284697509,0.907103825136612,0.8550106609808102,0.7266881028938906,0.1544401544401544,0.4956241363426992,0.7027027027027027,0.6534446764091858,0.544,0.1090425531914893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026827292974286,0.0049556123069439,0.0074356607391026,0.0097269745859943,0.0120849299196032,0.014326122789524,0.0163585434173669,0.0184618523051815,0.0206571043275714,0.0227909736287567,0.0246828828459599,0.0268922565486389,0.0291733031906694,0.0315408054022893,0.0335474293019371,0.0356243030027673,0.0377723520039727,0.0397173262043167,0.0419737962251614,0.0437663850859306,0.0573328746703359,0.0716173996635424,0.0850070158537351,0.0975684018226487,0.109671238933395,0.1252098444775268,0.1383145496144394,0.1511200374054238,0.1629724398955168,0.1742159905811837,0.187771470347912,0.2008299024216293,0.2139116451900302,0.2254158379051824,0.2369300811577627,0.2482177647892313,0.2587452344324794,0.2687873612297182,0.27819523307606,0.2876275218445491,0.295977907957526,0.3041588785046729,0.3119626278753474,0.3194254773712834,0.3261833331308984,0.3326474031174912,0.338760339886621,0.3445860034584477,0.3495367974329779,0.3544981216634811,0.3557706546761621,0.3564985424344095,0.3581526330611095,0.3591500433651344,0.3604017174013162,0.360634142605499,0.3613262994471112,0.3622962391450662,0.3635338153104651,0.3654069300390953,0.3672654316357909,0.3684356271139506,0.3704922844682992,0.3707121946859147,0.3717523891850358,0.3727464843851913,0.3725495774888326,0.3743018512707876,0.3763952552573568,0.3772485933909184,0.3791096357600836,0.3808865002926622,0.3835184250378596,0.3840208157955154,0.3828674652975851,0.3815805252428348,0.3801872074882995,0.3809130344970047,0.3867898124825077,0.3912045889101338,0.0,2.772992853336549,61.322249515952045,221.0567998474469,325.8581421973604,fqhc8_80Compliance_baseline_low_initial_treat_cost,47 -100000,95742,41375,388.9202230995801,7304,75.07676881619352,5661,58.605418729502205,2257,23.239539595997577,77.34647984393533,79.69951451790844,63.33814763576003,65.07563931689434,77.07806361479541,79.42900797856343,63.2403750483717,64.97926856374218,0.2684162291399161,270.506539345007,0.0977725873883272,96.37075315215782,79.88882,56.00082467307367,83441.77059179879,58491.3879729624,220.21202,133.02354489243777,229499.09130789,138433.0230123015,258.61049,122.7002077917746,266688.78861941467,125556.96790033492,3753.04579,1672.297098824521,3888359.455620313,1715229.0681376073,1362.64282,584.8489966419498,1412263.2178145433,599940.6707609739,2226.3927,916.8643245838562,2294728.917298573,931504.3687938928,0.38229,100000,0,363131,3792.807754172672,0,0.0,0,0.0,18309,190.7000062668421,0,0.0,24223,249.5665434187713,2097727,0,75260,0,0,3233,0,0,41,0.42823421278018,0,0.0,1,0.0104447368970775,0,0.0,0.07304,0.1910591435820973,0.3090087623220153,0.02257,0.3168638668573657,0.6831361331426342,25.45584088726697,4.605650990627058,0.3398692810457516,0.1953718424306659,0.2298180533474651,0.2349408231761172,11.204141386767796,5.656507555768579,23.840642289378923,13136.302217883596,63.51643664005807,12.976100259234414,21.64581866988093,14.36534524428824,14.529172466654488,0.5403638933050697,0.7549728752260397,0.682952182952183,0.5757109915449654,0.1210526315789473,0.706408345752608,0.9005847953216374,0.8706140350877193,0.7403508771929824,0.1235521235521235,0.4887705487381338,0.6897905759162304,0.6246594005449592,0.5295275590551181,0.1204481792717086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382013368442,0.0044805319871463,0.0066063871890888,0.0090408565449706,0.0114507698252893,0.0137440951294999,0.0159836901121304,0.0184733463293154,0.0204536394394414,0.0221862746101788,0.0242929919330866,0.0261634471291031,0.0285402915715666,0.0302399835204449,0.0323658987030942,0.0344189604026915,0.0364442051643095,0.0384172467812717,0.0403326403326403,0.0424235480376635,0.0569817821161977,0.0717350804847926,0.0852829476069577,0.0984321931420279,0.1107467816588822,0.1261960394574078,0.1393491312557014,0.1519501942212525,0.1643803443895252,0.1763085694688558,0.1904700385418685,0.2040103394944895,0.2166456549145763,0.2292855113325902,0.2395844783994723,0.2510405596882749,0.2612593525941949,0.271107912374612,0.2805976583772009,0.2892009208250776,0.2979963907269446,0.3058807020826268,0.3136488997786537,0.3210881580682676,0.3272879667646559,0.3333990220590952,0.3386103671814381,0.3446493149289462,0.3502651952329698,0.3554941933438148,0.3573835908220766,0.3579398313956692,0.3587758268105211,0.359782309774349,0.3610664523043944,0.3607923161900085,0.3608448338694088,0.3617007294473287,0.3623538274521889,0.3625778063962224,0.3634247526796944,0.3645439239378033,0.3652995915617499,0.3650258485052821,0.365717462773158,0.367209668943773,0.3682425635867222,0.3700237154150197,0.3703847511471937,0.3723544182709554,0.3721697680814007,0.3756752420174359,0.3749289189359954,0.3761806035475696,0.3783063748810656,0.3819561551433389,0.3826262000619387,0.3824561403508772,0.3867497168742921,0.3856235107227959,0.0,2.0675310742483783,59.332985001592014,214.8550854587645,330.68588101115444,fqhc8_80Compliance_baseline_low_initial_treat_cost,48 -100000,95739,41271,387.00007311544925,7244,74.44197244592068,5680,58.73259591180187,2335,23.97142230439006,77.41222784566315,79.77045315166511,63.350809200748486,65.0905787954518,77.12239330672475,79.47973227303139,63.24569060367633,64.9883735993851,0.2898345389384076,290.7208786337208,0.1051185970721562,102.20519606670564,80.76992,56.57973595734559,84364.69986108065,59097.89736402677,220.13967,132.64691209196576,229338.07539247329,137951.3281859699,255.49418,121.28088692670732,263547.0393465568,124062.31627456378,3774.04405,1685.7508708954288,3905870.9094517385,1724635.2801840708,1375.23842,593.9982860602875,1419986.7034332927,603992.5080425692,2311.12104,954.5979598497534,2375785.8552940805,964276.791864242,0.38028,100000,0,367136,3834.759084594575,0,0.0,0,0.0,18304,190.5806411180397,0,0.0,23958,246.9004272031252,2094602,0,75078,0,0,3138,0,0,40,0.4178025673967766,0,0.0,0,0.0,0,0.0,0.07244,0.1904912169980014,0.3223357261181667,0.02335,0.3118336185336317,0.6881663814663683,25.487593378785967,4.57818358054397,0.3163732394366197,0.2051056338028169,0.2376760563380281,0.2408450704225352,11.022118331475316,5.442019467221559,24.72521815207703,13105.515726224046,63.73293202715369,13.494535181998186,20.12602999897493,15.003825993667515,15.10854085251305,0.5369718309859155,0.7725321888412017,0.6789092932665554,0.5762962962962963,0.1111111111111111,0.7048940832724616,0.9423631123919308,0.852803738317757,0.7295597484276729,0.1485507246376811,0.4836464857341684,0.7004889975550123,0.6245434623813002,0.5290697674418605,0.1016483516483516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023394774154344,0.0045304819338164,0.0069390902081727,0.0092412056219026,0.0113970251832572,0.0135898610474881,0.015726603746662,0.0176322932185057,0.0198671435871231,0.0222008413596863,0.0243607481424545,0.0266799433346336,0.0287858538089853,0.0309156256758287,0.0330812171741665,0.0353203849374114,0.0372571759930414,0.039156689008321,0.0410995934748027,0.0432119343278606,0.0577364794320317,0.0723292487678285,0.0856972011245856,0.0980474667564383,0.1100687995947999,0.1252817728672572,0.1391757501140959,0.1525634882606612,0.1645899677274573,0.1764630128459664,0.1909895535743162,0.2044002685203231,0.2170543479444003,0.228878597781938,0.2391967659143231,0.2501663561352142,0.2603846540683705,0.2703981080015766,0.2797788022619399,0.2887752645396494,0.296536069579719,0.3040134836195091,0.3110945414950528,0.3178942828389323,0.3252723761402145,0.3319737279885645,0.3385954817242501,0.3436185489712666,0.3483459803249867,0.3534097941877461,0.3551541199382177,0.3562172253795678,0.3575956929391754,0.3583738336626238,0.3590384985420582,0.3586488878039849,0.3587037124690365,0.3599293390254673,0.361620599805855,0.3624227969314561,0.3624768911878396,0.3628179113886645,0.3639904510616911,0.36417283233118,0.3647968400009634,0.365133209821778,0.3659726183685111,0.3674560493128282,0.3708367038300566,0.3728174603174603,0.3738496583143508,0.3768046454637472,0.378868258178603,0.3848973047262732,0.3856834599868655,0.3824649060195099,0.3857448761089018,0.3857056084227576,0.3871412803532009,0.3861271676300578,0.0,2.305591146131509,60.46644779288145,215.76035102483783,326.3069668242608,fqhc8_80Compliance_baseline_low_initial_treat_cost,49 -100000,95734,41660,391.1358555998914,7282,74.79056552530972,5636,58.31783901226315,2303,23.66975160340109,77.32373385663094,79.69395025171559,63.321321634088775,65.07515447655881,77.04405089313066,79.41414070953603,63.21939859756228,64.97561888027633,0.279682963500278,279.80954217956366,0.1019230365265002,99.53559628247888,81.58876,57.14102115815857,85224.43437023419,59687.28054626212,221.00746,133.45732265874744,230281.61363778805,138830.17177325737,257.02394,122.34168082171364,265419.0778615748,125330.62417953764,3724.45369,1662.9165361190612,3856127.875154072,1702728.1927148746,1372.61654,593.741066029335,1419005.4212714396,605454.4305168289,2271.20684,937.282188576182,2336932.3542315164,948939.488543414,0.38516,100000,0,370858,3873.837925919736,0,0.0,0,0.0,18408,191.687383792592,0,0.0,24059,248.2399147638248,2089403,0,75002,0,0,3299,0,0,47,0.490943656381223,0,0.0,1,0.0104456097102387,0,0.0,0.07282,0.1890642849724789,0.3162592694314748,0.02303,0.3167213114754098,0.6832786885245902,25.43095622944531,4.605979251828852,0.3333924769339957,0.1965933286018452,0.2336763662171753,0.2363378282469836,11.1125416673682,5.527828848837296,24.45320570680709,13238.7332904027,63.28811431960391,12.976370284757454,21.10118658701977,14.741356096917093,14.469201350909596,0.5361958836053939,0.7644404332129964,0.6838744012772752,0.5649202733485194,0.1096096096096096,0.717741935483871,0.923512747875354,0.8772727272727273,0.7278688524590164,0.169172932330827,0.4782303370786517,0.6900662251655629,0.6247394023627519,0.5158102766798419,0.0947467166979362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024518743667679,0.0047359720912308,0.006973203410475,0.009155945775664,0.011506999837213,0.0135786246167323,0.0157773426345204,0.0177810913770388,0.019878723426012,0.0223360131087101,0.0244792895160546,0.0266919995891958,0.0289694051807501,0.0312026627371371,0.0332875736713355,0.035448089069914,0.0371490414988038,0.0392169068442839,0.0412871698897899,0.0432404271945819,0.0576443196174446,0.0720468032109179,0.0853264518294729,0.0983391010739568,0.1107349994727407,0.126122125297383,0.1400564384375464,0.1535244985902005,0.1657927057190153,0.1768370487127523,0.1902782563749138,0.204091568037735,0.217040017398869,0.2285261316422479,0.2401813021188585,0.2514728682170543,0.2614964317573595,0.2709929667662854,0.2804141012121418,0.2901656978074793,0.2991228779771879,0.3072446833372283,0.3151497954647561,0.323418782942022,0.3299897993879633,0.3364967462039046,0.3430621290661859,0.3485963929080904,0.3540342868999144,0.3590644356106129,0.3605220228384992,0.3612919240953222,0.3623335733547941,0.3635467551857596,0.3642379171075575,0.3648748272154815,0.3642058520339386,0.36514304505097,0.3662231950477102,0.3663148479427549,0.368088586414995,0.3694348464990666,0.3703961523857739,0.3714852198990627,0.372960259922896,0.3749309046879524,0.3751259826647853,0.376503149456003,0.3780635078496839,0.3798671230118784,0.3816112165101106,0.3834423836046071,0.3846548298186014,0.3867069486404834,0.3886674259681093,0.3915604712671315,0.3979387786494385,0.390462604442633,0.3977304179352339,0.3982886036561649,0.0,2.067061075213668,60.29976132694964,210.5667173333852,329.1533788554554,fqhc8_80Compliance_baseline_low_initial_treat_cost,50 -100000,95773,41274,387.6144633665021,7300,74.95849560940975,5708,58.95189667233981,2335,23.99423637141992,77.38153749659537,79.72555142685927,63.350937847410606,65.08417766267056,77.09564867896138,79.43838908989004,63.24639288294829,64.98175540368688,0.2858888176339889,287.16233696923155,0.1045449644623133,102.42225898367964,81.2658,56.904008027293386,84852.51584475792,59415.501265798695,220.72119,133.3054247002172,229807.56580664695,138533.6521777716,259.1337,123.05382773004212,266772.1174026083,125558.9203446997,3777.92433,1692.3040165806572,3904700.541906383,1727315.7571664928,1401.9196,604.1853771358775,1446141.7309680183,613322.925743478,2305.89328,957.082223050824,2371558.706524804,967727.2219913604,0.38064,100000,0,369390,3856.932538398087,0,0.0,0,0.0,18411,191.55711943867271,0,0.0,24284,249.6945903333925,2092017,0,75110,0,0,3194,0,0,43,0.4489783133033319,0,0.0,0,0.0,0,0.0,0.073,0.1917822614543926,0.3198630136986301,0.02335,0.3097506852891267,0.6902493147108733,25.28662527226165,4.5762674661068505,0.3181499649614576,0.2105816398037841,0.2293272599859845,0.2419411352487736,10.85246062753336,5.296932003675064,24.7692084639383,13057.137065027551,64.22881840995736,14.177221978342496,20.26399997280741,14.635179668048506,15.15241679075893,0.5394183601962158,0.7770382695507487,0.6762114537444934,0.5798319327731093,0.114409847936278,0.6997167138810199,0.914572864321608,0.8628318584070797,0.7266187050359713,0.1126760563380281,0.486731843575419,0.7089552238805971,0.6143695014662757,0.5402521823472357,0.1148587055606198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205473070145,0.0048452166156466,0.0068889249624609,0.0091912698170886,0.0110722492221973,0.0132333031342569,0.0152790801973335,0.0176058134906459,0.0196611416542336,0.0218552397323347,0.0238148914803352,0.0258052595922892,0.0278945907319631,0.0299517107173378,0.0321918514698298,0.0343854936198791,0.0362908232956662,0.0381573355171091,0.0403785423418931,0.0423538230884557,0.0571863879699875,0.0706904846570585,0.0834818526827836,0.096559623386995,0.1090995310606459,0.1243209537297343,0.1373598423027194,0.1498787956111253,0.1624122254711544,0.1741698287135292,0.188034188034188,0.2013064967932425,0.2132531953743152,0.2250890651979105,0.2366024287222808,0.2472571877733125,0.2585191793041926,0.2691248384014389,0.2789131075778538,0.2872901623774159,0.2959737210405172,0.3040773611159832,0.3123735132256346,0.3189373150067706,0.3252918382469055,0.3323107628622117,0.3389277272670427,0.3442641725520137,0.3495926535158729,0.3551362406808735,0.3556707974137931,0.35598353546895,0.3572859077061943,0.3582022601976588,0.3596045912670647,0.3597171952640942,0.3596673267326732,0.3610390463367377,0.3622255608290368,0.3636022648114741,0.3647434093254527,0.3657971358963693,0.3658715981927077,0.367120762521356,0.3675380790305839,0.3679136539872157,0.3697250593654336,0.3711782134526886,0.3729720218194615,0.3739244741873805,0.374000091420213,0.3778371161548731,0.3788167938931298,0.3773279975373249,0.3765813754399315,0.3781070745697896,0.381354630625096,0.3857433808553971,0.3893087041701651,0.3895348837209302,0.0,2.486077583666358,62.133898536993165,214.22462760719725,327.2566568910274,fqhc8_80Compliance_baseline_low_initial_treat_cost,51 -100000,95853,41391,388.2298936913816,7309,75.02112609933963,5679,58.631446068459,2314,23.7133944686134,77.37299817448195,79.67412688571021,63.35320242165369,65.05695654467598,77.09969971414856,79.40396372873562,63.253473237375424,64.96179592723293,0.2732984603333932,270.1631569745899,0.0997291842782672,95.1606174430566,80.9226,56.66486087883957,84423.64871209038,59116.41876502516,221.22784,134.04583231916058,230144.3355972166,139190.47115808638,262.58143,125.09480911052502,270580.13833682827,127831.31613462546,3739.6958,1670.3255181693512,3862410.347093988,1703510.4881113293,1405.86053,612.5341981938379,1446799.3385705194,619150.4055103519,2281.5474,932.1464806604243,2340109.5636026,936228.651945068,0.38163,100000,0,367830,3837.4385778222895,0,0.0,0,0.0,18399,191.272051996286,0,0.0,24529,252.511658477043,2091620,0,75092,0,0,3121,0,0,48,0.5007667991612157,0,0.0,0,0.0,0,0.0,0.07309,0.1915205827634095,0.31659597756191,0.02314,0.3088692946058091,0.6911307053941909,25.5430530630232,4.576382736864164,0.3282268004930445,0.1995069554499031,0.238950519457651,0.2333157245994013,11.077711793230256,5.555638411291603,24.38541040396101,13158.439224721023,63.77426408656038,13.364389761714667,20.93192780805137,14.932804551239506,14.545141965554842,0.5458707518929389,0.7678729037952339,0.6968884120171673,0.5740604274134119,0.1147169811320754,0.7324464153732446,0.925531914893617,0.8587443946188341,0.7801418439716312,0.1606425702811245,0.4875173370319001,0.6895640686922061,0.6459802538787024,0.52,0.104089219330855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0048445782277762,0.0073744966170637,0.0096968096988404,0.0118333570542667,0.0140268729641693,0.0161752265245176,0.0182775617671371,0.0203639559002339,0.022469150960771,0.0246196403872752,0.0268090738403767,0.0287549457890139,0.0305915533550864,0.0325869569699593,0.0345333250717723,0.0366147638508095,0.0386109988497528,0.0407908947412145,0.0428241463262375,0.0578611499238806,0.0713016762111775,0.0850069669254381,0.097696984972118,0.1107588937801461,0.1258490107638192,0.139676821192053,0.1530038378533536,0.1650265758746558,0.1761510355837949,0.1904392931706162,0.2033832351510565,0.2153834449178332,0.2273403161968905,0.2381706941326642,0.2493852595201701,0.2600386035769673,0.2698898477671388,0.2793338551770298,0.288629103358256,0.2972185277279824,0.3048799035952874,0.3122373358904239,0.3197099538562953,0.3260822037603847,0.3331566948055949,0.3398329388486055,0.3465131076609824,0.3520916979665846,0.3580333324529199,0.3597816564458521,0.3604971614396737,0.3608098949508641,0.3617825539125523,0.362833834519308,0.3627995458869013,0.3624648881976735,0.3630949443100867,0.3640673672679971,0.3651157378399183,0.3662048509424044,0.3668674221412156,0.3675599613559037,0.3683963108882521,0.3688059270662946,0.3687891440501044,0.3692298886758435,0.3728958089884092,0.3729931900779789,0.3748459183267724,0.377206551410373,0.3787451439518918,0.3801658122903614,0.3838888035632007,0.3854929175777165,0.3868058851447555,0.390032502708559,0.3889809444904722,0.3850914205344585,0.3881172839506173,0.0,2.416545959001535,59.30189352275987,221.1785233683194,323.92665745592296,fqhc8_80Compliance_baseline_low_initial_treat_cost,52 -100000,95793,41346,388.69228440491474,7382,75.882371363252,5750,59.4615472946875,2361,24.21888864530811,77.39816222968327,79.72696420815802,63.35848721039546,65.0794593299779,77.10764205911588,79.43593821892605,63.2525981899206,64.9758659040909,0.2905201705673903,291.02598923196865,0.1058890204748621,103.5934258869986,80.9435,56.6684402638444,84498.34539058177,59157.18295057509,222.09186,133.68783079705202,231301.222427526,139015.65908645742,256.2561,121.47735420408628,264094.7355234725,124161.67362178644,3825.26833,1705.1930464733014,3957829.486496926,1744884.578460337,1393.56087,602.3023011403351,1439498.3349514056,613601.9403210117,2335.96928,965.4299591210188,2399427.619972232,975469.5065293903,0.38105,100000,0,367925,3840.833881390081,0,0.0,0,0.0,18472,192.2583069744136,0,0.0,23968,246.7403672502166,2093909,0,75148,0,0,3188,0,0,39,0.4071278694685415,0,0.0,1,0.010439176140219,0,0.0,0.07382,0.1937278572365831,0.3198320238417773,0.02361,0.3168253151530743,0.6831746848469257,25.45955916297015,4.614269114770891,0.3375652173913043,0.1987826086956521,0.2198260869565217,0.2438260869565217,11.221547716863014,5.556726926213224,25.10027828662308,13094.80796676485,64.61587435330254,13.390155744576484,21.910637540576666,13.8818969248361,15.433184143313312,0.5328695652173913,0.7611548556430446,0.6883049974240082,0.5474683544303798,0.1184022824536376,0.6743682310469314,0.8885714285714286,0.8471615720524017,0.6655172413793103,0.1463414634146341,0.4879725085910653,0.7049180327868853,0.6392447741065408,0.5123203285420944,0.1112107623318385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0046821793416572,0.0068274966521933,0.0090177918596149,0.0114268286484013,0.0138823864677265,0.0161308401691547,0.0179773905236093,0.0201166746697453,0.0222222222222222,0.0243727525125756,0.0260438579388615,0.0281277619057406,0.0302493850286643,0.0324140419609258,0.0344022721404595,0.0366523560751047,0.0383347158855246,0.0403832564326391,0.0420593350064041,0.0562726295689556,0.0698739737488887,0.0836740684825229,0.0966033294097864,0.1095064409352533,0.1254386706693163,0.1385223994569828,0.1512578214787383,0.1629034669856663,0.1747447885390752,0.1893679120311036,0.20229932296511,0.2142282870863301,0.2254981211220833,0.2366116074862901,0.2483512592395874,0.2595367923371134,0.2697234499589505,0.2792425858274148,0.2880967653257583,0.2962217673385838,0.3043646014801997,0.312328345487262,0.319780891536516,0.3270183619935878,0.3332799487508007,0.3394253261780563,0.3456395903568475,0.3511404872991187,0.356804163199535,0.3578209277238403,0.3585617853698856,0.3588875248698303,0.3588860759493671,0.3599375650364204,0.3594655061448404,0.3592682424184778,0.3604838444597837,0.361315744389241,0.3615143649870223,0.3634468772298794,0.3652220502440766,0.3666372314032211,0.3671490009855748,0.368061568061568,0.3688363949933366,0.3694050024186893,0.3709641925241284,0.3717769058295964,0.3740185581727338,0.3776559287183002,0.3779652921509314,0.3803904337455276,0.3810397553516819,0.3838651642836853,0.3861147876308506,0.3888204496458269,0.3966011466011466,0.3999441808540329,0.3928984947896565,0.0,2.1852438292941607,61.28244137875466,220.44523437057072,329.2628838721861,fqhc8_80Compliance_baseline_low_initial_treat_cost,53 -100000,95884,41490,389.0430103041175,7456,76.54040298694255,5748,59.43640231946936,2337,24.0811814275583,77.3584022892406,79.64018038572381,63.35300198276878,65.04141106856663,77.0726194723913,79.35312216332083,63.248330765664754,64.93847254935392,0.2857828168493057,287.05822240297607,0.1046712171040269,102.93851921271369,80.02742,56.10035449027207,83462.74665220475,58508.56711262783,221.71804,133.75943452558397,230710.00375453677,138978.1138519475,260.15615,123.45325103795102,267932.3453339452,126142.3138289617,3816.92298,1716.8833584453928,3950346.7418964575,1760343.7127483303,1386.43777,603.1137157152074,1433656.105293897,616748.9842857383,2310.31334,961.1393835387914,2382146.093195945,977968.9564428334,0.38226,100000,0,363761,3793.761211463852,0,0.0,0,0.0,18496,192.3574318968754,0,0.0,24376,250.82391222727463,2094708,0,75243,0,0,3232,0,0,33,0.3441658670893996,0,0.0,0,0.0,0,0.0,0.07456,0.1950504891958352,0.3134388412017167,0.02337,0.3157491378209222,0.6842508621790778,25.322539552649264,4.576782692435896,0.3227209464161447,0.2032011134307585,0.2345163535142658,0.2395615866388309,10.91113094476407,5.4048149590237085,24.94358305432369,13127.25162710928,65.02534525320173,13.78400808391062,20.980022548887565,14.973118223421457,15.288196396982096,0.546624913013222,0.7748287671232876,0.7040431266846361,0.5689910979228486,0.1190994916485112,0.6962649753347427,0.9093333333333332,0.8246753246753247,0.7541528239202658,0.1387900355871886,0.4975744975744975,0.7112232030264817,0.6640344580043073,0.5157593123209169,0.1140510948905109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464224604886,0.0043975641142556,0.0063798926879735,0.0088639340433957,0.0111506403740597,0.0131794542993517,0.0154957414727576,0.0177061553368351,0.019878909161451,0.02210204561486,0.0241383193260106,0.0262451046728588,0.0281920138033029,0.0302943022023803,0.0324721497985304,0.0343816466021021,0.0365056377366297,0.0386787857431571,0.0408440904323263,0.0428110694964627,0.0573879865729833,0.0719106523465251,0.0848849142354493,0.097296162125269,0.1092607807200488,0.1252852193019521,0.1392783341281195,0.1520809850917675,0.1646208692682093,0.1765304919227759,0.1913965758587272,0.2044717030114226,0.2165873067640727,0.2284265069196965,0.2386282422016734,0.2498644326645344,0.2608079771571339,0.2705568800323872,0.2801284451555071,0.2886349832109008,0.2970084975340943,0.3047274599997659,0.3125518450927879,0.3198243066473052,0.3263175823641053,0.3324198207540182,0.3386957230449011,0.3448741981968196,0.3513222152950956,0.3568809646719347,0.3577418004563928,0.3585356093118247,0.3594581997429414,0.3599675287023078,0.3612039136141272,0.3610935986345394,0.3602544731610338,0.3608636843494325,0.3609222634253536,0.3621959744053913,0.363287423797697,0.3645245849551195,0.3655150621445123,0.3659528571107566,0.36715992069249,0.3687705903885374,0.3685564799725534,0.3709321392532795,0.3727112676056338,0.3743573392850026,0.3760765988638446,0.3795950985615343,0.3836450079239302,0.3826100409994585,0.385219975079076,0.3922162948593598,0.3905511811023622,0.3900020656889073,0.388047138047138,0.4025771183131589,0.0,1.9565839838129888,63.13090867309768,217.5688442993589,332.0174995976348,fqhc8_80Compliance_baseline_low_initial_treat_cost,54 -100000,95736,41381,389.2475139968246,7230,74.33985125762513,5611,58.06593131110554,2250,23.126096766106794,77.38965647392791,79.75594379274845,63.34469261111818,65.0935935320381,77.11581726974276,79.48132346967381,63.24501951900403,64.99581945011671,0.2738392041851512,274.6203230746431,0.0996730921141519,97.77408192138635,81.41452,57.01259514025134,85040.65346369182,59551.88762874085,221.32642,133.81622336439713,230621.20832288795,139213.8124351412,261.70499,125.02230515839685,269908.393916604,127831.01438464296,3671.27392,1646.9266277375248,3802454.541656221,1687990.7664286387,1353.78245,587.6684325099725,1398307.1780730342,598179.3553791952,2208.92576,904.7014744513084,2273075.2277095346,917180.7932615532,0.3817,100000,0,370066,3865.484248349628,0,0.0,0,0.0,18523,192.87415392328904,0,0.0,24461,252.04729673268156,2089217,0,74965,0,0,3211,0,0,48,0.5013787916771121,0,0.0,1,0.0104453914932731,0,0.0,0.0723,0.1894157715483364,0.3112033195020747,0.0225,0.3217437113130515,0.6782562886869485,25.369666110069307,4.53630367063443,0.3275708429869898,0.2158260559615042,0.2266975583674924,0.2299055426840135,11.399992426778738,5.868943347400771,23.652413052229036,13135.816856030617,63.04189827600912,14.267477578582604,20.841475767454597,13.973701056543849,13.959243873428074,0.5619319194439494,0.7630057803468208,0.7334058759521219,0.5794025157232704,0.1116279069767441,0.7384083044982699,0.9312039312039312,0.8709677419354839,0.7672727272727272,0.1685393258426966,0.500720115218435,0.677860696517413,0.6825633383010432,0.5275827482447342,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023498906085406,0.004450391816956,0.0066978556713585,0.0088993640408801,0.0109961650747149,0.0133090301820699,0.0154464167371866,0.0179152928206122,0.0198707989205985,0.0222431494579959,0.0242624900059451,0.0263638790218261,0.0285790653206406,0.0309430154251704,0.0329850546140913,0.0350554458924566,0.0370071239231278,0.0386442858328492,0.0403766407882019,0.0422175684264266,0.0574110228328617,0.0716722835074205,0.0853869637742737,0.0983178867861012,0.1108239538391755,0.1270213958604351,0.140823254827074,0.1536112204829149,0.1660010251591132,0.1773493045650985,0.1906797454588524,0.2034684957590445,0.2150142443946676,0.2264505828576427,0.2376210387323943,0.2494379782721846,0.2601606067365603,0.2706675657451112,0.2800235857079681,0.2890277253326925,0.2975760939957443,0.3052230431123164,0.3131849294825568,0.3194645657978233,0.326647564469914,0.3326597750150935,0.3387270360915052,0.344845137810806,0.3503845257515731,0.355518902157419,0.356899592122444,0.3577149620169547,0.3582856820934622,0.3600439395253375,0.3605569409808811,0.3602950177500306,0.3604174903139084,0.3615424939387982,0.3617238562091503,0.3629827371418402,0.3644947007015972,0.3660950128129312,0.3671674223271557,0.3685631414547077,0.3684551518932668,0.3692956866013753,0.3712528823981553,0.3735433070866141,0.373205910357231,0.3755551110222044,0.376840942562592,0.377566970301299,0.382313618132043,0.3812428516965307,0.3805193587700384,0.3827541216937493,0.3908799755985969,0.3954756614825288,0.3905309250136836,0.3909716908951798,0.0,1.993828053697016,64.06129855459325,204.42846052674145,317.8471945500808,fqhc8_80Compliance_baseline_low_initial_treat_cost,55 -100000,95767,41002,384.7985214113421,7243,74.47241742980358,5605,57.99492518299624,2287,23.525849196487307,77.34687979821054,79.70584753414688,63.33382307926016,65.08116555319572,77.07326612597984,79.43179802665374,63.23426843070388,64.98378572580242,0.2736136722306952,274.04950749314594,0.0995546485562783,97.37982739329708,80.59326,56.37487360856746,84155.33534516065,58866.47823213365,216.68145,130.9897910370323,225708.41730449945,136229.54017253575,251.23159,119.16642095338872,259340.6810279115,122059.5136904498,3733.67213,1666.7534812270403,3864462.257353786,1706555.9586274466,1362.13807,588.7111353614328,1408177.3575448743,600898.8081142902,2248.54564,922.4904716154948,2315508.5572274374,936055.2261933254,0.37983,100000,0,366333,3825.24251568912,0,0.0,0,0.0,18102,188.4574018189982,0,0.0,23528,242.68276128520264,2099171,0,75365,0,0,3143,0,0,45,0.4594484530161747,0,0.0,0,0.0,0,0.0,0.07243,0.1906905720980438,0.315753140963689,0.02287,0.3081052769412072,0.6918947230587927,25.077300702306008,4.642213676727979,0.3329170383586083,0.1950044603033006,0.2383586083853702,0.2337198929527207,11.334625712829352,5.696402220329782,24.262240594631415,13058.520537162309,63.10449902777143,12.873507740411537,20.97829660425189,14.96393622934803,14.288758453759955,0.552720785013381,0.7758462946020128,0.7009646302250804,0.592814371257485,0.1145038167938931,0.7237128353879623,0.9131736526946108,0.8676789587852495,0.759375,0.1893939393939394,0.4969238050165641,0.7154150197628458,0.6462633451957296,0.5403543307086615,0.0956022944550669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021989380244011,0.0045633391473654,0.0067918781725888,0.0089941766517271,0.0112720761780743,0.0132685688682511,0.0152411051075542,0.0173029808084932,0.0196274866594426,0.0217573821517794,0.0241446835559838,0.0261928475352438,0.0283522382534116,0.0303167653875869,0.0321688425615356,0.0344228741549339,0.0365434399917158,0.0385281699637955,0.0406340956340956,0.0425175203840426,0.0575102547777348,0.0719799991631449,0.0856094364351245,0.097546876313798,0.1089950993307688,0.1248071517636367,0.1380633399754101,0.1507213404067573,0.1624870665287096,0.1736587873659858,0.1878885662041518,0.2011389300109138,0.2139039756680426,0.2255440420165314,0.2360636650226825,0.2478510504131957,0.2585766687850509,0.2681775259678942,0.2777771473315101,0.2867156896433235,0.2953953687523868,0.3036802995728746,0.3112836782044604,0.3178188619523775,0.3244939836569167,0.3306909243097527,0.3369791014891753,0.3429516539440203,0.3486447635944521,0.3539281380256424,0.3548625977837918,0.3559172656917018,0.356965699952087,0.3582661232041164,0.3602770676021166,0.3598945319086965,0.3593353627600203,0.3606759691963404,0.3623352165725047,0.3627889501180849,0.3652293130000376,0.3669244497323022,0.3684487144448882,0.3685889515422461,0.3700435203094777,0.3711838579160317,0.3717190282005628,0.3731580284552845,0.3736601931444338,0.3756755674766804,0.3788688282977155,0.3785247131982416,0.3795035009548058,0.3798955613577023,0.3824167531364965,0.3858436606291706,0.3872511189998456,0.3889806025588114,0.3914027149321267,0.3895116092874299,0.0,1.947538952223571,61.37019155120532,209.30416917515387,324.1019909693502,fqhc8_80Compliance_baseline_low_initial_treat_cost,56 -100000,95749,41216,386.8238832781544,7283,74.86240065170394,5646,58.350478856176046,2338,24.01069462866453,77.36211040614715,79.72313726474002,63.32787542470121,65.07524514808186,77.07674097802261,79.43850907173784,63.22357211856485,64.97404677637793,0.2853694281245396,284.62819300217745,0.1043033061363587,101.19837170392998,80.53518,56.40938216031469,84110.72700498177,58913.80814453905,217.86085,131.17131084910432,226876.65667526555,136341.4427596339,253.36758,119.8788351239726,260872.83418103584,122340.39948864172,3769.49984,1679.889711112305,3897565.3636069302,1715425.9558872902,1409.65218,611.099151238614,1451154.4768091573,617647.9130503623,2315.10062,953.1077943523502,2379242.58216796,962157.101919398,0.38031,100000,0,366069,3823.214863862808,0,0.0,0,0.0,18163,189.004584904281,0,0.0,23686,243.5639014506679,2096479,0,75222,0,0,3233,0,0,34,0.3550950923769439,0,0.0,0,0.0,0,0.0,0.07283,0.1915016696905156,0.3210215570506659,0.02338,0.3148730034040324,0.6851269965959675,25.58253256352373,4.606960839283243,0.3289054197662062,0.1987247608926673,0.2233439603258944,0.249025859015232,10.972648877311723,5.385785350868174,24.614963975593152,13147.095550370384,63.119957558688526,12.85683786498811,20.84462318540763,14.157488177704929,15.261008330587838,0.5441020191285866,0.7513368983957219,0.7016693591814755,0.5971451229183188,0.1230440967283072,0.6979010494752623,0.9177215189873418,0.8669623059866962,0.7118055555555556,0.1612903225806451,0.4965213358070501,0.6861042183622829,0.6486486486486487,0.5632065775950668,0.1135758651286601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002299828779267,0.0047761981057456,0.0070449700538016,0.0094699086539927,0.0114948374955495,0.0137695034016376,0.0159484428854037,0.0179898717634566,0.0199588961258064,0.0225382976980421,0.0244175075888095,0.0265217659264128,0.0286619616880311,0.0304095134065662,0.0324691408991454,0.0347479968984233,0.036770492482293,0.0386897968500342,0.0407792018793983,0.0427790219259413,0.0567008695107566,0.0707642412512423,0.0843269886214671,0.097068691691997,0.1095851397107686,0.1250330509460502,0.1386879124143345,0.1515187002949036,0.1637550619183468,0.1752595007291756,0.1895155209926541,0.2024047879306053,0.2151762402088773,0.2271230568956275,0.238382459770621,0.2506953910258541,0.2621661770783304,0.2721625119576839,0.2809942682027126,0.2903052105769671,0.298721600778156,0.3066192304091377,0.314073267186057,0.3203781008588839,0.3268529769137303,0.3336827565794342,0.3395850560024054,0.3451481844696053,0.350232624444358,0.354974181534845,0.356654484646609,0.3580927444360229,0.358445879268052,0.3599103009259259,0.3608764205390611,0.3611238919051562,0.3611031814000698,0.3628010191501603,0.3642470131779103,0.3653180016426811,0.3657983082953543,0.3667602514927439,0.3683514823440549,0.3698344793603154,0.3723468330643024,0.3721683693465367,0.3719310266072856,0.373007874015748,0.3749297160528535,0.3762812872467223,0.3793590737110817,0.3790630975143403,0.3817251831270523,0.3832080771274577,0.3847958704833411,0.3906771578445398,0.3867996930161166,0.3901652559451834,0.3887061403508772,0.3954669792887846,0.0,2.3167879136809204,58.72033630756399,209.89242822964735,333.5532607697703,fqhc8_80Compliance_baseline_low_initial_treat_cost,57 -100000,95753,41347,387.1210301504914,7286,74.88016041272859,5673,58.58824266602613,2346,24.03057867638612,77.32840490063373,79.68929209652323,63.31625382636724,65.06498783255687,77.0375067708943,79.40033926592628,63.2088346957162,64.96142487550972,0.2908981297394319,288.95283059695487,0.1074191306510385,103.56295704714567,81.88686,57.37260118416904,85518.84536254738,59917.28842351575,221.41213,134.06079474967862,230586.85367560285,139362.065841347,257.06442,122.7423129141806,264777.6884275166,125280.7530188784,3761.13258,1686.0176385677182,3887561.3401146703,1720473.9673211435,1376.41614,596.5359196908145,1421857.0593088467,607451.9256365917,2310.99482,963.6507553140634,2370325.399726379,968234.5317670238,0.38184,100000,0,372213,3887.220243752154,0,0.0,0,0.0,18414,191.62846072707904,0,0.0,24072,247.7729157310998,2085214,0,74822,0,0,3239,0,0,37,0.3759673326162104,0,0.0,3,0.0313306110513508,0,0.0,0.07286,0.190812905929185,0.3219873730441943,0.02346,0.3051268637195919,0.694873136280408,25.42818280266036,4.544375791957427,0.3289264939185616,0.2037722545390446,0.228803102414948,0.2384981491274458,11.072307338338144,5.598704236070643,24.93093148022272,13177.085624943456,63.75886705840552,13.492388564584996,21.05820710951333,14.346876885557432,14.86139449874974,0.5457429931253305,0.777681660899654,0.687566988210075,0.5824345146379045,0.1167775314116777,0.7109826589595376,0.9361111111111112,0.8451612903225807,0.7517241379310344,0.1338289962825278,0.4924224761016554,0.7060301507537688,0.635260528194147,0.5337301587301587,0.1125461254612546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394941377947,0.004421996389379,0.007056410672948,0.0092278298339397,0.0115257064963072,0.0139850880052151,0.0163974547234459,0.0184587740433699,0.0207221574761291,0.0229799168833295,0.0250630420075035,0.0271066709106403,0.0292166723228334,0.0313327221976165,0.0333828658700183,0.0353502987203605,0.0372954340782759,0.0394495317701473,0.0415346087101098,0.0438364439260123,0.0583065425243204,0.0726896205497217,0.0854060062075329,0.0983139571551706,0.1103722983866718,0.1261878336240156,0.1392588978916557,0.1519647494571927,0.1650375498082449,0.1771002027005287,0.1908209437621202,0.2041600380940012,0.2168755985026551,0.2289305561633046,0.2396776111514831,0.2509030470914127,0.2619568615192247,0.2716177265357593,0.2808436211654874,0.2899080675852266,0.2988423246121787,0.3066715036335763,0.3145686734427938,0.3215636368002113,0.3284150346673154,0.335159411706643,0.3405109672238117,0.3462235033033186,0.3513625800085688,0.3556924541272275,0.3565759637188209,0.3575013789299504,0.3584452636187732,0.3590085133491631,0.3596935733873852,0.359489584134061,0.3596998791886564,0.3605978619506401,0.3618361218361218,0.3624517634389302,0.3642180942164003,0.3656953432053674,0.3663634644875323,0.3675557754587981,0.3679523786478246,0.3694227441933623,0.3703066781312697,0.3718823009408347,0.3747050329306519,0.3746958637469586,0.375177078097153,0.3777506112469437,0.3805209513023782,0.3812714122573277,0.3847967556351976,0.38698224852071,0.3927529556272071,0.3951430335459971,0.3917525773195876,0.3973196689002759,0.0,2.5123840352129454,60.58118482661518,212.08782119265328,330.35291625457387,fqhc8_80Compliance_baseline_low_initial_treat_cost,58 -100000,95734,41121,386.44577683999415,7211,74.11160089414419,5600,57.96268828211503,2244,23.043015020786765,77.31464774318667,79.68036256572589,63.30648041847581,65.05585417779493,77.04503602801618,79.4115749555831,63.20645876790267,64.95890633149536,0.269611715170484,268.7876101427804,0.1000216505731401,96.94784629957098,80.0569,56.072536788350895,83624.31320116155,58571.18347541197,217.5936,131.41625531919593,226743.35136941943,136725.86052937928,254.4427,121.34148983656084,262748.4174901289,124337.89010526576,3680.28904,1647.405460351591,3808563.44663338,1685510.714236854,1346.87349,583.8286065280448,1391807.8843462092,594940.8749363228,2211.64878,922.9380781393864,2272800.3635072177,931823.3824409049,0.37962,100000,0,363895,3801.105145507344,0,0.0,0,0.0,18054,188.0314203940084,0,0.0,23777,245.31514404495792,2095840,0,75176,0,0,3140,0,0,54,0.5640629243528945,0,0.0,0,0.0,0,0.0,0.07211,0.1899531110057425,0.311191235612259,0.02244,0.3185584637643036,0.6814415362356965,25.400956189938213,4.595611120428377,0.3325,0.2007142857142857,0.2383928571428571,0.2283928571428571,11.02767094855682,5.491846071891823,23.877808738169374,13083.791761235374,62.84330181825851,13.073005493811625,20.95467279356693,14.78817589380558,14.027447637074376,0.5525,0.7775800711743772,0.6933404940923737,0.5827715355805243,0.1180609851446442,0.7205014749262537,0.9415384615384615,0.888402625820569,0.7348993288590604,0.1666666666666666,0.4988218661639962,0.7108886107634543,0.6298932384341637,0.5390549662487946,0.1046859421734795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022488983437167,0.0044914884772536,0.0066992833796869,0.0090437963621583,0.0111297624497685,0.0134377929010962,0.0154150641189132,0.017520573400584,0.0197084619630773,0.0217231071618688,0.0237355561707319,0.0257310662066699,0.0277520623752802,0.0299942298973746,0.0321012376007679,0.0342489119535215,0.0362841846931273,0.0383936909826709,0.0401676163540323,0.0422973944388302,0.0567046368125959,0.0710682213058131,0.0839532077847138,0.0970971813209928,0.1098467671345559,0.1253636604072996,0.1389950324799388,0.1524201963414893,0.1636289779469144,0.1750496324515748,0.189351537308443,0.2029169240104454,0.2154444529181692,0.2263212117226715,0.2369773288637967,0.2478456891573757,0.2587790444014364,0.2693071317374726,0.2776886583159835,0.286480772986822,0.2951861732977612,0.3031826973799894,0.3111472182359429,0.3187358157518702,0.3258156338953361,0.332601021944657,0.3390316601542931,0.3450984886104639,0.3505393610546354,0.3551157728082327,0.356525136052589,0.3577504335618135,0.35790629884669,0.3587872306602887,0.3602940082429436,0.3602098577937319,0.3603147657501864,0.3613360990385881,0.3621079691516709,0.3627286067069897,0.3632401562969642,0.3641818829959995,0.365114622186832,0.3659022261997986,0.3678722789443267,0.3698333637572691,0.371028171028171,0.3744211686879823,0.3764056789429294,0.3761745500875935,0.3798892904524452,0.3841066666666666,0.3865828890581366,0.3872952395601015,0.3877551020408163,0.3894862604540023,0.3866728509585652,0.3932280847528043,0.3964014619061006,0.3994511956095649,0.0,2.116604571218825,59.9819666764157,207.65776874952712,328.07452915172775,fqhc8_80Compliance_baseline_low_initial_treat_cost,59 -100000,95808,41382,388.8193052772211,7286,74.82673680694722,5671,58.53373413493654,2296,23.609719438877757,77.3504688262772,79.68215324986338,63.33176974345843,65.06000455461484,77.07416595914994,79.40609950005427,63.23104233282082,64.96172557679746,0.2763028671272565,276.05374980910824,0.1007274106376101,98.27897781737248,81.20926,56.91682298085721,84762.5041750167,59407.171614956176,222.75194,134.8866045556096,231799.9123246493,140090.10161532398,262.67822,125.04579507844936,269861.9113226453,127194.24759541557,3743.83928,1680.8004250863642,3867881.867902472,1714576.4498646937,1382.17266,598.3609522610072,1425575.7452404809,607469.0028609382,2266.81694,938.6374452294136,2332857.4440547763,950936.7572498372,0.38059,100000,0,369133,3852.841098864395,0,0.0,0,0.0,18515,192.5830828323313,0,0.0,24554,251.93094522378087,2088240,0,75040,0,0,3179,0,0,46,0.469689378757515,0,0.0,0,0.0,0,0.0,0.07286,0.1914396069260884,0.3151248970628603,0.02296,0.3220582473553611,0.6779417526446389,25.288724641934618,4.582580020238039,0.3239287603597249,0.2063128196085346,0.2334685240698289,0.2362898959619114,11.275722809245764,5.657299856591551,24.438476187642337,13146.79511707634,63.86763628213106,13.737967267885892,20.61669099788677,14.658477552313894,14.854500464044492,0.5459354611179686,0.7735042735042735,0.7049537289058248,0.5634441087613293,0.1119402985074626,0.7046783625730995,0.9378378378378378,0.8902439024390244,0.7311475409836066,0.1024734982332155,0.4954682779456193,0.6975,0.6517168885774351,0.5132482826300294,0.1144749290444654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0046642263974934,0.0068608545620623,0.0091746847789642,0.0111276115304025,0.0132610865535434,0.0153995206771709,0.017788579364431,0.0199378348533802,0.0218966893925434,0.0239843317405303,0.0261336564528053,0.0282705498822488,0.0303922881242468,0.0323745088130034,0.0343666046703864,0.0362311339309745,0.0382106147511227,0.0403217425643796,0.042243990797514,0.0568734222110951,0.0709162763466042,0.0843463134509787,0.0968060516915318,0.1092393594605984,0.1244742682024727,0.1384860050890585,0.1517688102278287,0.1645831776499098,0.1763388551957654,0.1910520992489616,0.2041314899090899,0.2165823032304316,0.2282488715970317,0.2397012397012397,0.2509250847532738,0.2618191964285714,0.2713851693484865,0.2805382082434427,0.2894338931017893,0.2981621646644909,0.3066016214508826,0.3146868046020548,0.3221243181681951,0.3289961695141971,0.3343370891902898,0.3407760295869115,0.3464563917538916,0.3520185771366301,0.3568727522741696,0.3582964243275359,0.3588780918727915,0.3593692598977025,0.3598967996289425,0.3603408972391495,0.3602825986791583,0.3604239159794715,0.3610914303603499,0.3626797374419441,0.3639263188073394,0.3640666378678887,0.3645693002615104,0.3647170009450803,0.3658383421548398,0.3671527911918099,0.3686152396901821,0.3702730492402605,0.3705058660275009,0.3729266235591791,0.3749950197219012,0.3786421047831836,0.380530033459026,0.380640282329216,0.3820233285049935,0.3856048425234087,0.3852459016393442,0.3901200369344413,0.385456755114442,0.3837145969498911,0.3830275229357798,0.0,2.5672227706067416,60.025930148780674,221.04601967737847,321.49574113229835,fqhc8_80Compliance_baseline_low_initial_treat_cost,60 -100000,95727,41270,386.6307311416841,7320,75.1825503776364,5715,59.21004523279744,2275,23.514786841747885,77.30949638025908,79.67086253790083,63.31695901961641,65.06008197109149,77.03438480477796,79.39143421150906,63.21643638787037,64.9600833301166,0.2751115754811195,279.4283263917663,0.1005226317460454,99.99864097488852,80.6047,56.45988364541166,84202.68053945072,58980.10346653677,218.42089,131.53679347749008,227672.6419923324,136912.05192635363,261.16302,124.4241356331313,269874.12119882583,127736.71454556832,3769.29141,1691.9979748434196,3908138.936768101,1738244.5194909426,1369.56221,596.1777817494946,1417695.0494635787,609839.0908722938,2240.49672,924.1953678258382,2317015.993397892,943999.5422820768,0.38066,100000,0,366385,3827.394569975033,0,0.0,0,0.0,18190,189.50766241499264,0,0.0,24500,252.9275961849844,2091968,0,75117,0,0,3147,0,0,46,0.4805331829055543,0,0.0,1,0.010446373541425,0,0.0,0.0732,0.1922975883990963,0.3107923497267759,0.02275,0.3113158577731638,0.6886841422268363,25.4920194049556,4.5370054787423895,0.3359580052493438,0.2031496062992126,0.2339457567804024,0.2269466316710411,11.101595344867532,5.615438197950778,24.128379594462555,13154.202392738054,64.25575434362224,13.557675753685936,21.62237831916312,14.833245405186045,14.242454865587137,0.5518810148731409,0.7820844099913867,0.6828125,0.5804038893044129,0.1225905936777178,0.7183823529411765,0.9342857142857144,0.8655097613882863,0.7385159010600707,0.1578947368421052,0.4998851894374282,0.7163995067817509,0.6250856751199452,0.5379506641366224,0.113482056256062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024407287752807,0.0047745519422593,0.007223439655872,0.0096489802551393,0.0120368017079245,0.0141480146976498,0.0162564337766906,0.0186695519919973,0.0209314922886665,0.0228124040528093,0.0251235162672461,0.0270347971620136,0.0290799905397484,0.0311112941927643,0.0331882593180833,0.0352843932427545,0.0376733595528876,0.0396175146750741,0.041605171804519,0.0434071543157149,0.0582467498564193,0.0722060578150838,0.0856040106559268,0.0983470379171836,0.1103811883798175,0.1253040590562006,0.1387494827531326,0.1517131999957423,0.1637845401236875,0.1756235122557955,0.1900221920582595,0.2034731394669034,0.2160626836434867,0.2279582366589327,0.2385514044418018,0.2501801572079513,0.261112910973825,0.2708457733863608,0.2803836014907735,0.288583909469267,0.2973680249186554,0.3049609699579856,0.3124185638814527,0.3197715574645758,0.3269915753899269,0.3338145296614352,0.3395486876377479,0.3449901267596662,0.350203636929622,0.3551472339074529,0.356574915290846,0.3571684736130652,0.3580449215990959,0.3588900635780387,0.3597549158454956,0.360073795064955,0.3599058029818448,0.3610602536823527,0.3621637406809359,0.363170942013365,0.3648669029484956,0.3661893286064251,0.3679101958136394,0.3691167860199072,0.3713662262092375,0.3732749121057879,0.3732120758626644,0.3766427055954907,0.3764801526987381,0.3775217287297663,0.3772677295217152,0.3781557552417629,0.3796866078792108,0.384644943129419,0.3877162958737402,0.390311004784689,0.3920445751431667,0.3939771547248182,0.3929070092153029,0.3947981366459627,0.0,1.898593314108736,60.16138100817837,217.07595069349424,335.2387358818926,fqhc8_80Compliance_baseline_low_initial_treat_cost,61 -100000,95739,41446,389.6113391616792,7325,75.29846770908406,5619,58.15811738163131,2300,23.668515443027395,77.40440741590693,79.76149725320262,63.3594678928421,65.09907591956596,77.1221036510862,79.47851005642475,63.25527124245137,64.99749050883912,0.2823037648207247,282.9871967778672,0.1041966503907261,101.58541072684102,80.43464,56.313499381896726,84014.49774908867,58819.81155213312,220.618,133.53415958835035,229895.2046710327,138935.62226102932,258.67067,123.34769590823788,266799.24586636585,126224.74867529988,3720.88528,1672.5072143841096,3851570.331839689,1712031.4326281992,1376.8263,598.5725210232844,1423605.7719424686,610826.2395454228,2269.13692,949.146600708754,2335666.008627623,960545.0271734636,0.38132,100000,0,365612,3818.840806776757,0,0.0,0,0.0,18395,191.572922215607,0,0.0,24078,248.1642799695004,2096585,0,75134,0,0,3136,0,0,50,0.5118081450610513,0,0.0,0,0.0,0,0.0,0.07325,0.1920958774782335,0.3139931740614334,0.023,0.3235561323815704,0.6764438676184296,25.40160909823815,4.637237149985772,0.3258586937177434,0.2057305570386189,0.2292222815447588,0.2391884676988788,10.87317763399692,5.279952005276787,24.448149135327352,13082.607347536732,62.992524413873454,13.485337799275344,20.431162664267,14.362976639319577,14.713047311011543,0.5321231535860473,0.7448096885813149,0.6777717094483888,0.5753105590062112,0.109375,0.6906841339155749,0.9175531914893617,0.8215962441314554,0.7301038062283737,0.1519434628975265,0.4808009422850412,0.6615384615384615,0.6341637010676157,0.5305305305305306,0.0980207351555136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021059665677807,0.0044590828477324,0.0068273581268894,0.0090590565175443,0.0113265482496721,0.0133550488599348,0.015164331210191,0.0175096680713855,0.0197400686611083,0.0218265541059094,0.0239825357944471,0.0261310452418096,0.0283749190389538,0.0305602191848548,0.0326368467213537,0.034610017056908,0.0364636192290963,0.0385485176040996,0.0405836563743881,0.0424964586284476,0.0580822318277683,0.0714487551150694,0.0849584072003272,0.097768946084616,0.1094456566423173,0.125335730146981,0.1386286720631451,0.1518242113892112,0.1643020448281019,0.1757337880298984,0.190000753928506,0.2030646365613738,0.2155661916675731,0.2264629651906693,0.2374606598146884,0.2493852867554216,0.2601669568322842,0.2698489466758146,0.2791278106777392,0.2878210192468428,0.296528765128134,0.304442264573991,0.3112804157807701,0.3181714941484465,0.3252217751708759,0.3310131952728212,0.3362955741372629,0.3424375619299271,0.3486670286763375,0.3542706618373394,0.3556561815567768,0.3560984994228549,0.3569096997495568,0.3574335440297861,0.3586316367250663,0.3592265683559988,0.3597056263353644,0.3604960141718334,0.3613814059885964,0.3622492683275037,0.3630395228001726,0.3645806489979583,0.3664966521839515,0.3676622039134912,0.3678047370069633,0.3673592212685786,0.3672584051601119,0.368945195550093,0.3717826837083201,0.3740637450199203,0.3754792769764469,0.3794685732579234,0.3832153690596562,0.3841864018334606,0.3873603155225842,0.3897884410826143,0.3922413793103448,0.3986623429266315,0.4009473390916689,0.423444976076555,0.0,2.050983414140833,60.681640035989325,209.7423462062121,324.46107134677743,fqhc8_80Compliance_baseline_low_initial_treat_cost,62 -100000,95750,40968,385.2114882506528,7226,74.21409921671018,5610,58.03655352480418,2261,23.31070496083551,77.33232137485312,79.69808583083137,63.31916690730778,65.07123834108583,77.04723523730793,79.40881592949624,63.21497999188086,64.96734872871892,0.2850861375451927,289.26990133513186,0.1041869154269221,103.8896123669133,80.7521,56.58100927518849,84336.39686684073,59092.43788531436,220.84713,133.65693327149242,230090.40208877283,139030.14440886935,256.61159,122.19335676394708,263834.2872062663,124499.49194561932,3701.55924,1666.3768812700976,3833128.898172324,1707612.0744335211,1376.1826,598.9319504621036,1422945.409921671,611208.9321927858,2223.90382,935.9425465554784,2294730.610966057,953994.0104938652,0.37811,100000,0,367055,3833.4725848563967,0,0.0,0,0.0,18436,191.95822454308092,0,0.0,24004,246.52741514360312,2092737,0,75076,0,0,3197,0,0,41,0.4281984334203655,0,0.0,0,0.0,0,0.0,0.07226,0.1911084076062521,0.3128978688070855,0.02261,0.3174142480211082,0.6825857519788918,25.368383754332594,4.492389242406011,0.3288770053475935,0.2023172905525846,0.2367201426024955,0.2320855614973262,10.984727998636808,5.612556526717018,24.24843284367237,12960.340307605398,63.13621235148443,13.26841636956063,20.72968921872037,14.788547313158697,14.349559450044753,0.5491978609625668,0.7674008810572687,0.6775067750677507,0.5978915662650602,0.1274961597542242,0.7045619116582187,0.9175824175824177,0.868421052631579,0.7197231833910035,0.1286764705882352,0.4984629936155119,0.6964980544747081,0.6148308135349172,0.5640038498556305,0.1271844660194174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0048179817220988,0.0067927057103403,0.0091470851288722,0.011322942947831,0.0136001059483909,0.0155727339479481,0.017754137357196,0.0196615714942998,0.0216420966420966,0.0237424010989574,0.0260661560889472,0.0280517023311293,0.0302384262835367,0.032282359738357,0.0341794654484569,0.0358984447803847,0.0379077101834177,0.0399255941556079,0.0418454488648198,0.0568076244558806,0.0707163707508971,0.0840482433141059,0.0962820431939099,0.1080405718864662,0.1231451024358255,0.1364576812486074,0.1491159909310568,0.1609847271173769,0.1717619052725264,0.1849976841629056,0.1985629105390167,0.2119435136428913,0.223284404873887,0.2343787828766369,0.2453793424214571,0.2566760777136735,0.2665428764348413,0.2758307608498275,0.2845082361566129,0.2932896549329197,0.3008988343242357,0.3088778409090909,0.3157459358365703,0.3226343550229698,0.3289506142384922,0.3357088285760805,0.3413169080404184,0.3480221303722515,0.3532416451084948,0.3542059600150886,0.3550097798837433,0.3554054625699742,0.3569496477803653,0.358110119047619,0.3581343272136075,0.3579223254705742,0.3590916570676321,0.3593586913745016,0.3597993550698674,0.3622942793657967,0.3630744156463666,0.364038599300493,0.3651150757047403,0.3656528477334366,0.366188314925099,0.3658347898341021,0.3672556546014021,0.3691322650252927,0.3695940248162871,0.3705422794117647,0.3716714185808811,0.371901354459494,0.373497688751926,0.3777756779741094,0.3832562551879521,0.3853658536585366,0.3858124494745352,0.3936140930360584,0.3937403400309119,0.0,2.1513228534504503,60.95980426939872,208.20020640748103,326.9678756416506,fqhc8_80Compliance_baseline_low_initial_treat_cost,63 -100000,95719,41562,389.410670817706,7406,75.99327197317147,5802,59.97764289221576,2381,24.477898849758148,77.41699606751023,79.77024777540448,63.36600846061516,65.10071054714335,77.12416956073677,79.47886105791154,63.25879113415486,64.99727071916335,0.2928265067734514,291.3867174929408,0.1072173264603009,103.43982797999728,80.83592,56.631612019234296,84451.27926534961,59164.44177147097,222.81631,134.4160060336205,232155.4759243201,139801.4981702906,263.58811,125.43588237806956,271442.9110208005,128045.19065287108,3831.92081,1727.7657229984638,3961097.8698064126,1762867.7292851608,1440.06406,625.6093739608011,1489749.8511267356,638873.0155547397,2343.75536,971.8948427772071,2410013.7276820694,981215.5913155292,0.38376,100000,0,367436,3838.6945120613454,0,0.0,0,0.0,18506,192.6785695629917,0,0.0,24712,254.22329944943013,2092669,0,75100,0,0,3102,0,0,47,0.4910205915231041,0,0.0,0,0.0,0,0.0,0.07406,0.19298519908276,0.3214960842560086,0.02381,0.3180819439059066,0.6819180560940933,25.48758440526795,4.568955708028327,0.333160978972768,0.1959669079627714,0.2380213719407101,0.2328507411237504,11.060810110910497,5.571403497766382,25.25690625712044,13229.402966489,65.40673408518053,13.25806661606326,21.6908404680678,15.587241321595435,14.87058567945404,0.552395725611858,0.7581354441512753,0.6880496637351268,0.6089790007241129,0.1273131014063656,0.70888733379986,0.9147727272727272,0.8340080971659919,0.7824675324675324,0.1381818181818181,0.5012577178138578,0.6878980891719745,0.6379430159833217,0.5591798695246971,0.1245353159851301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.0047817321622141,0.0071101103537812,0.0092710120939489,0.0115503497641125,0.0137421364441458,0.0162881722183715,0.0185549964788373,0.0210213279102326,0.0233769156794139,0.0254439628229169,0.0274128658811938,0.029668160697397,0.0317810137793248,0.0340334660696969,0.0362199028624573,0.0380900121134314,0.0401298593536074,0.0421144531980792,0.0438813993707415,0.0581847040641577,0.072735073143168,0.0856555313077052,0.0979206327502971,0.1106446713357522,0.1261727219842403,0.1398913712261048,0.1530731728087543,0.1651940725862455,0.177028258887876,0.1910602373312084,0.2045334054638896,0.2167211938741128,0.2288644704648724,0.2401256880431558,0.2514797809371024,0.2621834314250044,0.2719752739533577,0.2820443053760515,0.2904141253475838,0.2988101707850097,0.306466882502133,0.313708332840639,0.321598352312869,0.3280538867649736,0.334425542922605,0.3408164286250281,0.3465769626982411,0.3518365128258224,0.3576886026840501,0.3589684890923781,0.3601574218051217,0.3611291277741744,0.3616522079163468,0.3629637348895373,0.3631691977297131,0.3626786223503691,0.3634796315452441,0.3650340810085928,0.3656848227507092,0.3666092298471681,0.367973920774474,0.3692007470046373,0.3713008493518104,0.3724366997208048,0.3738503344481605,0.3762848332571951,0.3768526385348815,0.3805904500510222,0.3817899637868598,0.3820915926179084,0.3831691078561917,0.3858034419718842,0.386839481555334,0.3894203714124929,0.3881106533254855,0.3878048780487805,0.3825894652191395,0.3860604410563572,0.3793494704992435,0.0,2.4793786916861484,62.852810096212295,223.78113140048137,327.45244472866455,fqhc8_80Compliance_baseline_low_initial_treat_cost,64 -100000,95700,41197,387.9832810867293,7276,74.98432601880877,5661,58.61024033437826,2296,23.67816091954023,77.3508434030137,79.7421969294324,63.31502979323547,65.08316316866429,77.06738243704561,79.45725820852465,63.21167082021462,64.9820102754977,0.2834609659680893,284.9387209077463,0.1033589730208461,101.15289316658505,81.76388,57.22050258234079,85437.7011494253,59791.53874852747,220.94386,133.22940767616475,230326.4158829676,138670.77082148878,256.47296,121.5457006865367,264802.20480668754,124507.17504591343,3757.74421,1677.0353526863894,3894917.4085684433,1720717.9756388585,1416.659,610.311785566423,1468073.6990595611,625497.3198652727,2273.49792,940.479308490032,2347413.521421108,957187.7594891776,0.37982,100000,0,371654,3883.531870428422,0,0.0,0,0.0,18384,191.52560083594565,0,0.0,23973,247.3458725182863,2088459,0,74935,0,0,3286,0,0,49,0.5015673981191222,0,0.0,0,0.0,0,0.0,0.07276,0.1915644252540677,0.3155579989004948,0.02296,0.3147760020958868,0.6852239979041131,25.3229644035667,4.4938306438962,0.3294470941529765,0.2057940293234411,0.2178060413354531,0.2469528351881293,10.868799140049925,5.415810852450708,24.3753602777673,13089.791924947162,63.67676610340969,13.666211285919363,21.023327180534924,13.578775544619042,15.408452092336352,0.5440734852499558,0.769098712446352,0.6954423592493297,0.5798864557988646,0.1230329041487839,0.6927044952100221,0.8935574229691877,0.852017937219731,0.7296296296296296,0.1549295774647887,0.4972118959107807,0.7141089108910891,0.6462297392529951,0.5379023883696781,0.1149012567324955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023906723259418,0.004401131719585,0.0062735384584149,0.0086389137328238,0.0107021506032676,0.0129276094619099,0.0150261657264686,0.0170864227791735,0.0192061852507133,0.0213739988939186,0.0235975797354117,0.0256160064091371,0.0278849219818763,0.0297244946320756,0.0314770475561426,0.0334529064538471,0.0354108822676225,0.0375533250988655,0.0395585420654073,0.0415289837699227,0.0564033465985648,0.0708444584053191,0.0844337147055736,0.0978360352209726,0.1107208034009515,0.1258754575654345,0.1400231390572426,0.1526584246451351,0.1653039193681127,0.1766763598124322,0.1902370148417206,0.2028665454230536,0.2154095577994429,0.2267599006379742,0.2379783345810031,0.2493209007350903,0.2596045418513515,0.270260532774888,0.2793843707405725,0.2878664541796127,0.296320744884133,0.3046273848424159,0.312045979735735,0.3183596562815035,0.3250772487287414,0.3312444488305536,0.3383203545584295,0.3444403417410459,0.3496412010051553,0.3552645488662191,0.3568527987264412,0.3579539190827913,0.3587531193164996,0.359977439042027,0.3605994890380845,0.3608059449934881,0.3611379665583644,0.3617524773627384,0.3631119479630263,0.3633616450603487,0.3650647644077341,0.3659559318010997,0.3662222781201526,0.3664675481575944,0.3660510029619284,0.367952367273392,0.3686815531218887,0.3705320685972737,0.3727588505666467,0.3761757963797328,0.3769666742235321,0.3797898312281074,0.3810511756569847,0.3850087779558812,0.383511190858438,0.3823178016726404,0.3808206546795758,0.376983329985941,0.3735334242837653,0.378001549186677,0.0,2.113224161133896,60.18411104375736,216.44356875638584,326.721726068995,fqhc8_80Compliance_baseline_low_initial_treat_cost,65 -100000,95719,41392,387.5719554111514,7284,74.71870788453704,5731,59.23588838161703,2293,23.495857666711935,77.26691653433518,79.62639431117088,63.2951211478972,65.03900072033119,76.97700552747784,79.33944013049961,63.18844761179204,64.93688417429058,0.2899110068573378,286.9541806712732,0.1066735361051556,102.11654604060529,80.63946,56.49589881742715,84245.80281866714,59022.42900304762,219.85224,132.93320076491105,229038.24736990567,138231.78341281365,261.37981,124.66220570167988,269748.5556681536,127593.6230661467,3743.07463,1684.5707322231683,3869122.546202948,1718552.7556944457,1394.60156,605.3807006784207,1435140.4423364222,610634.6585825287,2253.54018,941.4922980513552,2310575.6850781976,944730.593265788,0.38159,100000,0,366543,3829.35467357578,0,0.0,0,0.0,18335,190.88164314294968,0,0.0,24473,252.3427950563629,2088472,0,75017,0,0,3315,0,0,33,0.344759138728988,0,0.0,0,0.0,0,0.0,0.07284,0.1908855053853612,0.3147995606809445,0.02293,0.3223915592028136,0.6776084407971864,25.15498391135233,4.510673315112807,0.345489443378119,0.2010120397836328,0.231373233292619,0.222125283545629,11.251785685457538,5.722487036087567,24.43012289845232,13167.55840270346,64.79100163993375,13.513977449671325,22.332210700717496,14.802879289557549,14.14193419998739,0.5487698481940324,0.7638888888888888,0.6883838383838384,0.5739064856711915,0.1107619795758051,0.6984352773826458,0.9234828496042216,0.857451403887689,0.6745762711864407,0.1338289962825278,0.5001156069364162,0.685640362225097,0.6367831245880027,0.545101842870999,0.1045816733067729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022079974071223,0.004521996573016,0.0070726955392296,0.0092441157647728,0.0117364684823952,0.0136947247309419,0.0157500382282481,0.0177927950919243,0.0202610837941997,0.0224267114313789,0.0246840179184648,0.0268880128126155,0.029410252455139,0.0314971984179301,0.0334475074281941,0.0354872388591984,0.0377159189760159,0.0401099756186128,0.0418914564297668,0.0438447512373013,0.0589875321095169,0.0732103042927574,0.0864755947820794,0.0994054821907718,0.1114112371405961,0.1269155871645076,0.1407230450708711,0.1539256308383839,0.1660214317797788,0.1774456755131838,0.1922716147882996,0.2053860742346247,0.2170171980002831,0.228302300109529,0.2388987468726924,0.2501526607378787,0.2610869395013813,0.2714383924445797,0.2807472047995636,0.2893674602082473,0.29778637089865,0.3054082218085168,0.3129582903917457,0.3195752594636751,0.3268306921421013,0.3327285518569259,0.3385591732303216,0.344299503972049,0.3502174900993313,0.3560395305089685,0.3567814039075607,0.3576111310890432,0.3583414758485917,0.3594044751429318,0.3605855318132983,0.3601797974200301,0.3604504834573172,0.3616588703945519,0.3619034511234215,0.3627049180327868,0.3628251806297043,0.3636273123718114,0.3650283393959901,0.3651520620882592,0.3653888227143447,0.3672883409725515,0.3685576673492343,0.3704436011098,0.3734560166123662,0.3753807415830727,0.3798255382331106,0.3804436249254297,0.3826282051282051,0.3833423555796149,0.3849456210646823,0.3852715040845747,0.3855925639039504,0.3910992616899097,0.3926174496644295,0.4017295597484276,0.0,2.479059718899791,61.88674608436109,219.02215742597127,329.66954598791114,fqhc8_80Compliance_baseline_low_initial_treat_cost,66 -100000,95706,41326,387.1335130503834,7410,76.22301632081583,5842,60.48732576849936,2362,24.355839759262743,77.288290147924,79.6567826656004,63.294707477804174,65.04352204619619,76.99519972972828,79.36198169497952,63.18731840583445,64.93798361795687,0.2930904181957174,294.8009706208836,0.1073890719697203,105.53842823931348,80.9116,56.67816248093496,84541.82600881868,59221.11725590346,222.45761,134.75407478562337,231896.4432741939,140257.9512106068,265.99684,126.79202779482286,274276.90008985857,129726.31640047416,3831.92404,1730.4260287805048,3971288.822017428,1775503.8020401034,1404.75363,611.8466721434537,1454711.334712557,626229.3609005226,2321.39196,963.0434256359472,2395721.062420329,980287.748149055,0.38154,100000,0,367780,3842.8102731281215,0,0.0,0,0.0,18538,193.14358556412344,0,0.0,24967,257.26704699809835,2083614,0,74896,0,0,3226,0,0,32,0.323908636867072,0,0.0,1,0.0104486657053894,0,0.0,0.0741,0.1942129265607799,0.3187584345479082,0.02362,0.3157355202460277,0.6842644797539723,25.22188479638005,4.454669792505725,0.3334474495035947,0.2084902430674426,0.2276617596713454,0.2304005477576172,11.040170600686256,5.631064100470362,25.15311976857581,13139.321747528544,66.13123238183915,14.315112101844631,22.07552949160903,14.934379177830872,14.806211610554612,0.5487846627867169,0.7660098522167488,0.6883983572895277,0.5849624060150376,0.1144130757800891,0.701010101010101,0.8886010362694301,0.8703703703703703,0.740625,0.1296928327645051,0.4969015377553362,0.7091346153846154,0.627906976744186,0.5356435643564357,0.1101614434947768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293733985557,0.0048255796271327,0.0070929902179648,0.0093053495601292,0.0115124888129525,0.0140211182274536,0.0161905344507656,0.0181901699586587,0.0205562767686473,0.0229545105664432,0.0251296451923668,0.0271704543121676,0.0293228599041763,0.0315029556548783,0.033605297630713,0.0354998398114943,0.0375858105799397,0.0397471953839288,0.0415847557233646,0.0437215991995664,0.0581747540367221,0.0718144696890377,0.0858180367956508,0.0983340875367016,0.1107838790719277,0.1262625193215745,0.1398628129711822,0.1527086773557769,0.1651430098904036,0.1759596284962688,0.1898569009953306,0.2028927410617551,0.2154667247576516,0.2275658924914862,0.2384907738914899,0.2500499389634891,0.2614073543884763,0.2709289605160766,0.2802603579922393,0.2897348711115196,0.2984752489034324,0.3061978671734769,0.3136039886039886,0.3199148977089694,0.3265704015109973,0.3325378670788253,0.3385148975206404,0.3439974457215836,0.3500676308396629,0.3548870187528991,0.3566495939024555,0.3568752678361603,0.3575182378355407,0.3587880549298844,0.359577776448777,0.3597394798835974,0.3590241418272674,0.3606065105842366,0.3619009982646346,0.3628072317276791,0.3630554036986069,0.3643840514929376,0.3657528469000422,0.3661712540972565,0.3672637847481736,0.3675867652051289,0.3680418560768505,0.3693762053811376,0.3703507470594468,0.3721302295816334,0.3748041655146991,0.3755775222950467,0.3758252920264093,0.3795940335229893,0.3784012804820638,0.3762046400951814,0.3703533731069298,0.3755839934998984,0.3799725651577503,0.3767727098505174,0.0,2.194572889491843,65.96056413552847,217.61528019241533,333.99727751000285,fqhc8_80Compliance_baseline_low_initial_treat_cost,67 -100000,95835,41491,389.58626806490327,7364,75.68216204935567,5718,59.15375384775918,2333,24.02045181822925,77.36488025655099,79.67819940293649,63.35773544642036,65.07054126158563,77.07986223087202,79.39172428066794,63.25268744021783,64.96715259343159,0.2850180256789656,286.4751222685413,0.10504800620253,103.38866815403946,81.31046,56.95458604960658,84844.22183962018,59429.83883717492,222.26738,134.49720166976792,231435.7698126989,139851.0895495048,264.0652,126.2750453446145,272015.4745134867,129003.22374927728,3795.37212,1705.8419491446018,3930476.078676893,1750134.68893891,1401.93034,608.6236062776961,1449218.218813586,621434.2842152613,2306.01798,959.9916257212428,2377132.4463922363,976533.159987582,0.3813,100000,0,369593,3856.555538164554,0,0.0,0,0.0,18434,191.8297073094381,0,0.0,24658,253.8529764699745,2091174,0,75072,0,0,3219,0,0,50,0.5112954557312047,0,0.0,0,0.0,0,0.0,0.07364,0.1931287699973773,0.316811515480717,0.02333,0.320360824742268,0.679639175257732,25.48419069792159,4.61823327789759,0.3356068555438964,0.2004197271773347,0.2226302903112976,0.2413431269674711,11.24587609585029,5.645684609285854,24.87164654657533,13151.910225459573,64.45543586900382,13.498460149619667,21.534621930304095,14.181472659789035,15.24088112929102,0.5416229450856943,0.7600349040139616,0.6909848879624805,0.5648075412411626,0.131159420289855,0.7077140835102619,0.906166219839142,0.8713080168776371,0.7132616487455197,0.1742160278745644,0.4871080139372822,0.6895213454075032,0.6318339100346021,0.5231388329979879,0.1198536139066788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021067557986427,0.0045622288008435,0.0067274129393619,0.0092227684556941,0.0115516417364069,0.0137355923919683,0.0159942098717608,0.0181003328092778,0.0202302093555773,0.0223859972362966,0.0244639855696306,0.0265591166117627,0.0288081069692391,0.0309280472617614,0.0331288975931556,0.0350362853692023,0.0371634550739028,0.0388640225454846,0.0408676059847784,0.0427386885007126,0.0571872588080685,0.070874618504118,0.0839365212381501,0.0970787130376344,0.1093652916583295,0.1243994382437726,0.1391675582910473,0.1529401760278923,0.1651359510170992,0.1768857568195692,0.1904838744379182,0.2043439716312056,0.2168857981093122,0.2286023243621111,0.2400668256707297,0.2511669579452691,0.2611621817371441,0.2717437706428202,0.281106617272202,0.2894384644421821,0.2977317109809223,0.3053397661296917,0.312867260194611,0.3202633153800119,0.3268385121838633,0.3331649499778227,0.3397432689420478,0.3450613750556509,0.3506039538587019,0.3564035284344879,0.3574332875568839,0.3587466787813709,0.3586071645244578,0.3592650508209539,0.3602527043537861,0.3610552339419253,0.3610735908722529,0.3616452815252168,0.362125846249012,0.3637865106008653,0.3646303465206307,0.3656299840510367,0.3675067544748396,0.3691777272010275,0.3706692437786905,0.3718533668974197,0.3720970140716165,0.3732683914226073,0.3755438435145555,0.3756522437183913,0.3782723117410776,0.3782749326145552,0.3799025890797231,0.3818379048504571,0.3793070352241098,0.3825794032723772,0.3852140077821012,0.3810513193434448,0.3837111670864819,0.388235294117647,0.0,2.0268694595329344,62.624699556151,213.7531170696863,331.16970218562057,fqhc8_80Compliance_baseline_low_initial_treat_cost,68 -100000,95632,41038,384.5679270537058,7286,74.87033628910824,5657,58.51597791534214,2277,23.34992471139368,77.2563444549925,79.6643843071954,63.27473565930678,65.05490371866883,76.97553166348676,79.38539880186738,63.17171074291645,64.95528991613878,0.2808127915057383,278.98550532802346,0.1030249163903249,99.61380253004393,80.84406,56.57521004698694,84536.61954157604,59159.28773526324,218.64104,132.23744419661878,227979.2328927556,137630.17653718128,258.8453,123.166394789182,266439.4344989125,125591.92008883048,3770.39672,1691.612028330879,3902561.443868161,1729151.4252359355,1406.10257,614.6835483907925,1450497.1662205118,623186.2314467636,2255.99774,939.8031547033876,2316503.3879872845,948581.3253568528,0.37794,100000,0,367473,3842.573615526184,0,0.0,0,0.0,18210,189.75865818972727,0,0.0,24179,248.64062238581224,2087826,0,75027,0,0,3262,0,0,43,0.4496402877697841,0,0.0,0,0.0,0,0.0,0.07286,0.1927819230565698,0.3125171561899533,0.02277,0.3157280041526084,0.6842719958473916,25.365931305676263,4.655041435063303,0.3264981438925225,0.1937422662188439,0.2375817571150786,0.2421778327735549,11.245343667461205,5.5260173943981,24.28667018957791,13076.138819630944,63.89879056356441,12.8506348225317,20.932221306330256,14.956448669962422,15.159485764740014,0.545872370514407,0.7655109489051095,0.697347049269085,0.5997023809523809,0.1131386861313868,0.7,0.9190751445086706,0.8410138248847926,0.7580645161290323,0.1655172413793103,0.4961421557166238,0.6946666666666667,0.6532200990799717,0.5522243713733076,0.099074074074074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024408770952549,0.0047535550307612,0.0071139345842762,0.0093261406235713,0.0116085054430766,0.0137628230596049,0.0161069854741308,0.0182577955780783,0.0205592946423091,0.0228145841230164,0.0249038017546559,0.0266784506767241,0.028804974468786,0.0311159683272847,0.0332520711526145,0.0353159081972641,0.0373814336806095,0.0394228371977063,0.0414884650204476,0.0435698713869968,0.0581601939718239,0.0720144992823693,0.0854383202099737,0.0991515432228725,0.111231887881634,0.1267832197434703,0.140229470265451,0.1535659897125696,0.1655105334601695,0.176868266300382,0.189681008182318,0.2027062162806318,0.2141635716075065,0.2256021389905542,0.2360401892556606,0.2474578152753108,0.2583618587377229,0.2686649607142454,0.2777278773890601,0.2867274104335452,0.2957661524185129,0.3033768488217976,0.311101880970747,0.3178504077931126,0.3249424293007444,0.331231765811205,0.3368065581179306,0.3419829984938605,0.3474899963623136,0.3530462629684522,0.353928257785584,0.3547348641852497,0.3562863655024987,0.3564734769785113,0.3583856502242152,0.3581691487065643,0.3583884067202803,0.3589184546520654,0.3601544454786776,0.3617205230735977,0.3627921930554504,0.3637669592976855,0.3651944209636517,0.3661965494747733,0.3663970552622657,0.3663631353819508,0.3676673567977915,0.3717046894803549,0.3719864655293952,0.3729421612787499,0.3736032240337058,0.3734224598930481,0.3749046044263546,0.3725250363122085,0.373202614379085,0.3738583797888744,0.379226686884003,0.3868171739568635,0.3885714285714285,0.3836307214895267,0.0,2.463212457979865,60.8900817716704,214.6304719555489,327.6261501652323,fqhc8_80Compliance_baseline_low_initial_treat_cost,69 -100000,95699,40958,384.8734051557488,7255,74.70297495271633,5587,57.86894324914576,2216,22.832004514153752,77.32722884548278,79.70586532668307,63.32110870231941,65.07680325627257,77.04890406199965,79.42634766708849,63.21863372715909,64.97675941525746,0.2783247834831286,279.51765959457475,0.1024749751603266,100.04384101510766,80.69996,56.472386698336095,84326.85816988684,59010.42508107305,219.7028,133.17725438063445,229083.9716193482,138669.70854516185,257.55233,122.1700852460747,266489.51399701147,125602.74819344551,3724.19357,1675.61840422687,3857687.196313441,1717042.920225783,1388.22578,601.1711269870971,1434778.0959048686,612354.9919216482,2195.63664,917.9957284753846,2263009.7284193146,929806.1383817092,0.37713,100000,0,366818,3833.0390077221286,0,0.0,0,0.0,18302,190.7334454905485,0,0.0,24050,248.7277818994974,2091505,0,75121,0,0,3183,0,0,41,0.4179771993437758,0,0.0,0,0.0,0,0.0,0.07255,0.1923739824463712,0.3054445210199862,0.02216,0.3132940406024885,0.6867059593975114,25.33845145407704,4.574026047442065,0.3234293896545552,0.1968856273492035,0.2373366744227671,0.2423483085734741,11.078850945660427,5.507542585149778,23.589438491148535,13009.976044545194,63.0553876214271,12.88004620942401,20.49099906004404,14.827308001811383,14.857034350147677,0.5432253445498478,0.7427272727272727,0.7044825677919203,0.5965309200603318,0.1137370753323486,0.7023895727733527,0.8966480446927374,0.8724373576309795,0.7401315789473685,0.1464285714285714,0.4909652876842605,0.6684636118598383,0.6505847953216374,0.5538160469667319,0.1052141527001862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095693198615,0.0040842800822936,0.0065435730952622,0.0087855612094619,0.0112262433776349,0.0133892661867573,0.0154487793934697,0.017239794511454,0.0192563352627165,0.0215563588698528,0.0232696469043883,0.0253789901811757,0.0275969183612594,0.0295929933024214,0.0318695495123587,0.0338579908581356,0.0359699559699559,0.0380602360855888,0.0402442322494747,0.0422269476932057,0.0565832767535384,0.070667531869466,0.08345571266731,0.0961609275215941,0.1088364342066405,0.1237173384110864,0.1371537726838586,0.150083060016186,0.1620492547678829,0.1734983962152826,0.1873821859818822,0.2001428818843089,0.2131964235212217,0.224711235561778,0.2356942380716526,0.2466451691543942,0.2574238635348754,0.2679268635724331,0.2773217995436434,0.2870714154748808,0.2959633983899924,0.3036575656816372,0.3113058928042641,0.3175853962771061,0.3241901935264137,0.3311366160681229,0.3372350958104094,0.3429001096016109,0.3475434932084431,0.3528688524590164,0.3536710501444657,0.354365987482423,0.3552822916519603,0.356258955321089,0.3576897866762007,0.3578162245290273,0.3581370960053389,0.3594035151176364,0.3604406507124651,0.3617431684229327,0.3623506461838576,0.3635877847487482,0.366397313464162,0.3667458645268301,0.3678566252838027,0.3671184752117033,0.3683923549331344,0.369873417721519,0.3719847651290732,0.3727389146790459,0.3759377732774888,0.3781792762273485,0.380539989811513,0.3825052159802179,0.3899894726768111,0.3925233644859813,0.3986350240421901,0.402963572751595,0.4046355766545658,0.3968192397207137,0.0,1.9740411337144577,61.25681309725916,211.75194203959884,320.3282556973164,fqhc8_80Compliance_baseline_low_initial_treat_cost,70 -100000,95771,41271,387.6538826993557,7434,76.26525775025843,5747,59.34990759206858,2354,24.140919485021563,77.38146625236273,79.70596988415902,63.35451413110488,65.06842246974618,77.09007421822822,79.41557136617281,63.246542692426935,64.9637729561013,0.2913920341345033,290.39851798620475,0.1079714386779429,104.64951364488684,81.29924,56.96713778741079,84889.20445646386,59482.65945579642,221.02272,133.70802344906025,230087.7614309133,138924.6288309177,260.4962,123.98812932443224,268343.183218302,126531.6029601312,3785.87721,1710.5568056065083,3910602.635453321,1744409.7959168658,1403.97591,617.4548456813417,1444985.527978198,624887.8189510606,2313.47852,973.986856336435,2373974.8984556915,982040.9902482664,0.38137,100000,0,369542,3858.600202566539,0,0.0,0,0.0,18442,191.84304225705068,0,0.0,24379,250.90058577231105,2088878,0,75026,0,0,3228,0,0,44,0.4594292635557737,0,0.0,0,0.0,0,0.0,0.07434,0.1949288092928127,0.3166532149582997,0.02354,0.3171450538185545,0.6828549461814454,25.202947655019823,4.563030342893947,0.3389594571080563,0.2014964329215242,0.2274230033060727,0.2321211066643466,11.108096129600645,5.556718665608863,25.28541376428157,13100.823123882034,64.96250347303801,13.373157077881093,22.138562283187955,14.726591823587274,14.724192288381664,0.5448059857316861,0.7417962003454232,0.6909650924024641,0.5837796480489671,0.1221889055472263,0.7087988826815642,0.9196428571428572,0.8478260869565217,0.7184466019417476,0.195729537366548,0.4903823870220162,0.6690997566909975,0.6359223300970874,0.5420841683366734,0.1025641025641025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021262377741327,0.004337427540638,0.0067051460220529,0.0089467056625233,0.011266230795042,0.0133965836675692,0.0155842302674494,0.0178267125174746,0.0200449530036779,0.0220269274840399,0.0240953981067901,0.0258346500318059,0.0278605635829239,0.0299873379932263,0.0321562967163255,0.0340906743777754,0.0361666459704458,0.0383287543414027,0.0403490546436733,0.042470560061639,0.0566884431550165,0.0700241715236431,0.0836532209007194,0.0966307490144546,0.1090190290443308,0.1247091424461649,0.137856415478615,0.1508851488732049,0.1633232925292144,0.174625809495218,0.1892380737056296,0.2020895748385771,0.2145599286576546,0.2261886528236658,0.2379982831106513,0.2494209178867104,0.2602476634992239,0.2702632734149004,0.2797396608321312,0.2884352961412763,0.2965760964022942,0.3050074983597338,0.312794018319489,0.3201357737424137,0.3264088102299801,0.3330373877873138,0.3388500106410946,0.3443873004557374,0.3503857874602866,0.3557589444906692,0.3567740978877701,0.3584061045150271,0.3592356328327876,0.3603612746092957,0.3615129910807505,0.3609309189288898,0.3615373629338115,0.3622334824953935,0.3637001900782574,0.3648440852524675,0.3651034922779561,0.3672827291435808,0.3671750273086295,0.3672062686634186,0.367847148509119,0.3700070627010908,0.3687623182610186,0.370411183174863,0.3712283913671091,0.3721217925695358,0.3752858318851184,0.3762028815992344,0.3803179790108716,0.3836439710916698,0.3874976285334851,0.3882788254953449,0.386825615161241,0.3903916027452563,0.3908866318967883,0.3931591083781706,0.0,2.482515955871188,62.95911817218688,220.08519990841037,325.8205725098944,fqhc8_80Compliance_baseline_low_initial_treat_cost,71 -100000,95764,41170,385.9070214276764,7286,74.81934756275845,5692,58.93655235787979,2318,23.78764462637317,77.31912755708531,79.66652054784528,63.32066847763053,65.0573638041922,77.03840232788261,79.3883518607514,63.21688756665158,64.95734911317918,0.2807252292027016,278.1686870938813,0.1037809109789549,100.01469101302972,80.74242,56.56907944827976,84313.95931665343,59071.3414730794,220.6021,132.91044706148,229846.2992356209,138277.9485696163,257.49942,122.31539773669536,266367.5598345933,125651.55957841437,3736.34777,1673.3158157109842,3870974.4371580137,1717030.8258358988,1357.13387,587.548262837473,1404340.7021427676,600996.1017802376,2274.88038,945.825328226443,2338260.703395848,955368.5016433496,0.3797,100000,0,367011,3832.45269621152,0,0.0,0,0.0,18326,190.84415855645128,0,0.0,24023,248.31878367653815,2092212,0,75154,0,0,3198,0,0,50,0.5221168706403242,0,0.0,0,0.0,0,0.0,0.07286,0.1918883328943903,0.3181443864946472,0.02318,0.3201828870019595,0.6798171129980405,25.424435531044228,4.537016088106606,0.3350316233309908,0.2027406886858749,0.2338369641602248,0.2283907238229093,11.052464194804395,5.565414425687474,24.502743789994277,13103.435039526265,64.15238005605778,13.603650721315198,21.61331829302951,14.685072499521215,14.250338542191855,0.539353478566409,0.7625649913344887,0.6743576297850026,0.560480841472577,0.1215384615384615,0.701098901098901,0.9173789173789174,0.8375,0.7052238805970149,0.1654135338345864,0.4883290963716201,0.6948941469489415,0.6194814295725298,0.5239887111947319,0.1102514506769826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886307709445,0.004246090860264,0.0063410575869485,0.0084807735277986,0.0107188984145386,0.0131170246351572,0.0154269691562579,0.0178695421312747,0.0199280178319461,0.0221125693577117,0.0242789619923513,0.026470890235137,0.028724224816167,0.030883973916537,0.0330998049917972,0.0350875379813555,0.0371033697396345,0.03900172188453,0.0411683413169297,0.0430453574962245,0.0577226182896151,0.0716415100260457,0.0846190151554879,0.0971944730698858,0.1089523287440173,0.1246629659000793,0.1383965976221536,0.1515486843365289,0.1640487351706905,0.1753612933659248,0.189181330633871,0.2025953504480713,0.2151792707336176,0.2262273209462045,0.2377027532627594,0.2490584012761432,0.2597836160021437,0.2697333618467702,0.2794404832190381,0.2887796718907524,0.2974312649109397,0.3056339512606419,0.312831879385549,0.31962675185243,0.3263177115033475,0.3328803340663685,0.3386046978266595,0.3446164834323904,0.3503018500486854,0.3555238170805893,0.3565557729941291,0.3570029788172992,0.3581068667768969,0.3590305175214667,0.3597859942474777,0.3600510078662733,0.3603311563458391,0.3618423220110038,0.3624355394130445,0.3629890046815304,0.3632906626506024,0.3632394673652041,0.3646349433914528,0.3654274841818468,0.3680439571079321,0.3686504082114824,0.3711760316822591,0.3724137931034483,0.373911812584047,0.3752345215759849,0.3761232349165597,0.3772968339851074,0.377076306243238,0.3749518601247785,0.37660485021398,0.380080817684811,0.3805282555282555,0.384928716904277,0.3895671476137625,0.389739663093415,0.0,1.9428338560613292,60.502794965358575,218.98186109006377,329.3381000317163,fqhc8_80Compliance_baseline_low_initial_treat_cost,72 -100000,95683,41114,386.0873927447927,7277,74.83042964789983,5697,58.965542468359054,2335,24.048159025114177,77.34181859432726,79.72309361625345,63.3271521787835,65.08500198274152,77.0506968942303,79.43104177736137,63.22021639774343,64.98014903828029,0.2911217000969657,292.0518388920783,0.1069357810400717,104.8529444612285,81.09332,56.807965488385136,84752.06672031604,59371.01207987327,219.85805,132.7747556576201,229196.35671958447,138184.06159675185,260.86104,123.52991039850448,268909.99446087604,126289.28562675342,3806.06616,1713.8333765980035,3941283.3836731706,1754653.8011956208,1413.71111,614.333092815592,1461202.3765977237,625758.2358575631,2308.39982,966.9499533787624,2378427.4113478884,981938.745811003,0.38062,100000,0,368606,3852.3666691052745,0,0.0,0,0.0,18286,190.52496263704103,0,0.0,24463,251.9360805994795,2091752,0,75090,0,0,3223,0,0,36,0.3762423837045243,0,0.0,1,0.0104511773251256,0,0.0,0.07277,0.1911880615837318,0.3208739865329119,0.02335,0.3083355108440031,0.6916644891559969,25.182579621966205,4.530922514888397,0.3257855011409514,0.1929085483587853,0.2403019132876953,0.241004037212568,10.97514189750547,5.542443765468556,24.95192083667476,13137.912037985709,64.34401757717427,12.933090336178532,20.88715074300268,15.290924714718324,15.232851783274745,0.5462524135509917,0.7843494085532302,0.6923491379310345,0.5902118334550767,0.1143481427530954,0.6844380403458213,0.909375,0.8521739130434782,0.7266881028938906,0.138047138047138,0.5017405430494314,0.7329910141206675,0.6396848137535817,0.5500945179584121,0.1078066914498141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025012404937671,0.0048247970240327,0.0070310359871351,0.0092827689870203,0.0113881319396429,0.0138877575955037,0.0158904891498231,0.0177005604156671,0.01984893549607,0.0220905117259875,0.0242496949562685,0.0264155206589501,0.0283124659211325,0.0303882774823791,0.0326266462986664,0.0346714384716432,0.0365388601036269,0.0385721553684341,0.0405621905039324,0.0426492358374512,0.0565787411856881,0.0703859605034449,0.0840400520592804,0.0972568578553615,0.1096636040464561,0.1255222601834124,0.1392266717599372,0.1518751530248352,0.1641610838649015,0.1761671367745948,0.1908736483866799,0.2044522807662769,0.2168167580266249,0.2285355053845733,0.2385949858640529,0.251043893362278,0.2622002946823235,0.2717813150345913,0.2809442742027012,0.2896171733602144,0.2978304888631761,0.305319933076716,0.3130799091081234,0.3199002410043045,0.3267409775487133,0.333436120087821,0.3387949392458975,0.344820557247143,0.3498670471496206,0.3549520977865874,0.3561545930201197,0.3569479660456399,0.3575572777707195,0.3585648717911593,0.3593031047576502,0.3602298391433268,0.3602444056498968,0.3606195782785468,0.3616959264847071,0.3630356535286428,0.3640170506825906,0.365673269486249,0.3678651827228545,0.3692695100838635,0.370587097398201,0.3703596668680871,0.3720415900735294,0.3738904387522191,0.3767704376841432,0.378055143075009,0.3802181617342477,0.3846648104519169,0.3881877839475012,0.3903428221610039,0.3881312893821123,0.3907522759942501,0.3888545847483791,0.3847405900305188,0.3843793584379358,0.3860808709175738,0.0,2.2731676153515923,61.30092163157641,220.63817598985736,324.5999457436758,fqhc8_80Compliance_baseline_low_initial_treat_cost,73 -100000,95683,41084,386.07694156746754,7157,73.68080014213601,5577,57.74275472131935,2264,23.27477190305488,77.38307130315455,79.75925806974348,63.34642469116329,65.09742316008527,77.10280922293886,79.4801211968966,63.24341348994275,64.997803620475,0.2802620802156923,279.1368728468768,0.1030112012205393,99.61953961027348,81.5683,57.10761102792896,85248.24681500372,59683.96060943842,219.97488,133.31797883440183,229359.15470877796,138793.36094541542,257.26815,122.57790025568492,266259.5549888695,126027.34056991522,3692.60348,1648.6355496568674,3823092.262993426,1686965.6228147815,1332.0542,575.700561573281,1374425.1538935862,584120.7047478423,2227.981,925.5244889226452,2291957.401001223,934309.2364054036,0.37832,100000,0,370765,3874.920309772896,0,0.0,0,0.0,18295,190.62947441029232,0,0.0,24061,248.74847151531617,2088355,0,75024,0,0,3257,0,0,48,0.5016565116060324,0,0.0,0,0.0,0,0.0,0.07157,0.1891784732501586,0.3163336593544781,0.02264,0.310866392463845,0.6891336075361549,25.439523100005264,4.516757529108225,0.3171956248879325,0.2103281334050565,0.2404518558364712,0.2320243858705397,10.94494148883786,5.4118198383899045,24.06079148506222,12984.963044268963,62.44341847575659,13.620902957045308,19.87385536137729,14.82379603938759,14.124864117946384,0.5416890801506186,0.7800511508951407,0.6851328434143584,0.5585384041759881,0.1120556414219474,0.7015250544662309,0.9137466307277629,0.8447488584474886,0.7293729372937293,0.1358490566037735,0.4892857142857142,0.7182044887780549,0.6326070623591284,0.5086705202312138,0.1059280855199222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022979662492534,0.0043665025429051,0.0068660561251914,0.0090478898411795,0.0114991612017691,0.0137219174038295,0.0158820771065669,0.0178219640906817,0.0199625893103554,0.0221016532732763,0.0242882188297774,0.0264006407623428,0.0281591640698116,0.0303754441983828,0.032321294089732,0.0344578114018768,0.0363510167718142,0.0384128367999335,0.0405062501299943,0.0424483074870768,0.0572577696526508,0.0715452261306532,0.0849157556809836,0.0975163508653866,0.1093713755509162,0.12494052716719,0.1389015508888724,0.1510443253360558,0.1626048357839475,0.1738399065710949,0.1886256536053192,0.2018056982213331,0.2137631930781856,0.2252888388514215,0.2357496425035749,0.2472187749313004,0.2579488725835092,0.2684973474651679,0.2775159286306488,0.2862006120834909,0.2936811151245716,0.3022692145566952,0.309613812226712,0.3163814004849125,0.3229479677368337,0.3297172547422464,0.3361691997343725,0.341650207072316,0.346696246707923,0.3516586675128581,0.3525201191647682,0.3537685811508947,0.3542586350365993,0.3541929039822816,0.355297619047619,0.3554436134105324,0.3556173084557364,0.3560917799651051,0.3569713187868807,0.3576739103172754,0.3577799430370259,0.3588112081571355,0.3602614598173133,0.3614827077088273,0.36252193351441,0.3635581958883764,0.3635768563053191,0.3645382055628806,0.366226375324949,0.3682376237623762,0.3691831345050542,0.3697803651759724,0.371776369454728,0.3739763421292084,0.3747317346272277,0.3805506736965436,0.3798040693293142,0.3802678219771563,0.3806070373354821,0.381838481577968,0.0,2.066386056238405,60.92638113641134,201.5965233943885,326.92588387235975,fqhc8_80Compliance_baseline_low_initial_treat_cost,74 -100000,95706,41205,386.5588364365871,7354,75.7528263640733,5717,59.29617787808497,2377,24.54391574195975,77.3960056150407,79.78200640885429,63.35197710932333,65.11375996522303,77.10290572378243,79.48399969367667,63.24456031253568,65.00638184850614,0.2930998912582794,298.0067151776211,0.1074167967876533,107.37811671688746,81.34456,57.00205882732958,84994.21143919922,59559.54572057089,223.84894,135.4610841131379,233432.3030948948,141078.78723709894,259.45352,123.79795831576764,268062.88007021503,126977.5951168881,3781.77595,1707.0538487617823,3925420.75731929,1757612.990577167,1400.7285,615.4419798412281,1452027.7516561134,631508.118447357,2342.13468,980.9422454490156,2420288.3413788057,1001539.9573748058,0.38064,100000,0,369748,3863.373247236328,0,0.0,0,0.0,18600,193.8749921635007,0,0.0,24321,251.21726955467787,2090324,0,74953,0,0,3242,0,0,54,0.5537792823856393,0,0.0,0,0.0,0,0.0,0.07354,0.1932009247583018,0.323225455534403,0.02377,0.3026315789473684,0.6973684210526315,25.150541848729517,4.557021814592673,0.3195732027287039,0.2022039531222669,0.2410355081336365,0.2371873360153926,10.918306792087527,5.398281312325761,25.29581069782368,13024.50911107326,64.37277980845018,13.630168661786406,20.40278678365279,15.403169314706018,14.936655048304964,0.536295259751618,0.7750865051903114,0.6672140120415982,0.5878084179970973,0.1039823008849557,0.696636925188744,0.9477806788511748,0.8755980861244019,0.7126099706744868,0.1365079365079365,0.4814553990610328,0.6895213454075032,0.6053938963804116,0.5467695274831244,0.0941402497598463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0045527367118898,0.0065569111467489,0.0089103378206756,0.0111997233129208,0.0135523153993402,0.0156611641873222,0.0180297910136908,0.020211004109673,0.0224262523286044,0.0245335247078121,0.0268899452755218,0.0287759425715284,0.0307678045363713,0.0325732562938506,0.0345148385896362,0.0370193901226383,0.0392867151739098,0.0412762461391266,0.043093565666882,0.0573183213920163,0.0715257429886982,0.0843445520047825,0.0969417256278976,0.1094281949934123,0.1251810885403999,0.139744337771177,0.1528815652210938,0.1646121306642169,0.1752466752466752,0.1888186449257412,0.2020162686050536,0.2141646199656589,0.2256643456018189,0.2366065537717176,0.2480624446412754,0.2584974064364995,0.2679034958591318,0.2776644453511038,0.2865262989352333,0.2945246621231373,0.3024529844644317,0.3099788438582184,0.316405080870117,0.3237114152591729,0.3299498006791673,0.3360683376419017,0.3421523695870203,0.3477760835293205,0.3523840885142255,0.3537388452854532,0.3545981431632148,0.3550539026655783,0.3559118815456843,0.3571598371616201,0.3565891472868217,0.3555379496117889,0.3563696098562628,0.3568679768074298,0.3583853263492858,0.3601756954612006,0.3605626557986784,0.3618296926753595,0.3632928656069041,0.3644314868804664,0.3657982073326887,0.3684225536890739,0.3697107490210938,0.3724514991181658,0.3727789338882664,0.3715615352716214,0.3738132274848468,0.3734870684163587,0.37549042234018,0.375548768849017,0.3790400385914134,0.3836886005560704,0.3829438294382943,0.3828603227601558,0.3708171206225681,0.0,1.6913566730610097,65.00010316850577,209.19819319262237,327.41275917527247,fqhc8_80Compliance_baseline_low_initial_treat_cost,75 -100000,95825,41577,389.52256717975473,7199,73.91599269501695,5635,58.252021914949125,2242,23.02113227237151,77.38566316619061,79.7055796861788,63.36611244363343,65.08362260349462,77.11357768463515,79.43406251935308,63.26659087698924,64.9870714876552,0.2720854815554645,271.517166825717,0.0995215666441851,96.55111583941788,81.17318,56.83342817697646,84709.81476650144,59309.60415024937,222.05035,134.92221825305495,231180.6626663188,140256.44482447684,259.99573,124.48770919567306,267853.6811896687,127175.96285763705,3707.54949,1666.9869297239466,3833654.526480564,1704387.6129262156,1368.06199,593.579349182583,1413111.1714062092,605093.1279656648,2207.56522,909.6066269301944,2268750.138272893,920154.4131761632,0.38296,100000,0,368969,3850.446125750065,0,0.0,0,0.0,18501,192.49673884685623,0,0.0,24354,250.6444038612053,2093140,0,75098,0,0,3127,0,0,35,0.3652491521001826,0,0.0,0,0.0,0,0.0,0.07199,0.1879830791727595,0.3114321433532435,0.02242,0.3220472440944882,0.6779527559055119,25.234796929836143,4.469241190511784,0.3217391304347826,0.2138420585625554,0.2333629103815439,0.231055900621118,11.187802103069954,5.762744451997255,23.70016289126065,13123.541746649098,63.50416567982182,14.03003737981214,20.605269215721897,14.556479039433404,14.312380044854375,0.54924578527063,0.7883817427385892,0.6993932708218422,0.5551330798479087,0.1129032258064516,0.7164285714285714,0.9324324324324323,0.8720682302771855,0.7272727272727273,0.149090909090909,0.4939787485242031,0.7245508982035929,0.6391369047619048,0.5072886297376094,0.1032132424537487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024105415615852,0.0046024553186744,0.0069013812911672,0.0092760043078048,0.0115138939745311,0.0138173302107728,0.0157783689569764,0.0181242983977956,0.0202565281823291,0.0225035305675515,0.0247286813761157,0.0268503217727781,0.029044193216855,0.0311892042120865,0.033317521861079,0.0353774802970675,0.037580837084174,0.0397396297601525,0.0413378468184083,0.0436008699362116,0.0588848902101914,0.0729257048474268,0.0859065467580655,0.0977746958330706,0.1100542476431242,0.1255452404338688,0.1397743524551088,0.15238763298579,0.1648499328057339,0.1760289597412472,0.1897239577172475,0.2027307293466989,0.2159776803161231,0.227236011963237,0.2381689785070233,0.2495991862097942,0.260043672987366,0.2698412698412698,0.279706335538838,0.2887831982347628,0.2964109554228419,0.3045985060690943,0.3120889759967885,0.3192120110930477,0.3256650675970344,0.3319778370210204,0.3381501447539183,0.3442764359650903,0.3497662283987291,0.3549160040023171,0.3560466461323254,0.3572862249106406,0.3575400903881622,0.3585500166216196,0.3590010405827263,0.3589837940603774,0.3590504451038576,0.3599683935009136,0.3611411318683203,0.3620374354561101,0.3633784291619691,0.3639682539682539,0.365475914164539,0.3678272227727232,0.3694095949913853,0.3704425711275026,0.3706923852022455,0.3723019299136617,0.3736017897091722,0.3764295172745877,0.3762699397784214,0.3789822535813555,0.3807016430882446,0.3805661820964039,0.3795169265880563,0.3832493400527957,0.3875212881250968,0.3908868001634654,0.3906640733537093,0.397919876733436,0.0,2.16912036702227,61.86306058889706,212.5180639545936,322.02602658234485,fqhc8_80Compliance_baseline_low_initial_treat_cost,76 -100000,95771,41508,388.60406594898245,7378,75.85803635756126,5706,59.05754351526036,2299,23.65016549895062,77.37657405990127,79.72069892481306,63.3458979718325,65.07884994011654,77.08479265231324,79.42765734885089,63.23952472955833,64.97433000419608,0.2917814075880329,293.04157596217806,0.1063732422741665,104.51993592046448,81.82988,57.31307876863028,85443.27614831213,59843.87629724058,222.17796,134.0249520059043,231458.11362521013,139414.23185573143,263.80562,125.47059028787363,272282.6429712544,128495.28550204296,3784.84408,1703.099557375613,3921438.713180399,1747887.176119774,1380.17656,602.2218623469414,1429772.6138392624,617589.8293902727,2260.73092,945.4677194679892,2328758.580363576,960332.8428153588,0.38235,100000,0,371954,3883.785279468733,0,0.0,0,0.0,18472,192.3233546689499,0,0.0,24668,254.35674682315107,2087476,0,74946,0,0,3276,0,0,43,0.4489876893840515,0,0.0,2,0.0208831483434442,0,0.0,0.07378,0.1929645612658559,0.3116020601789103,0.02299,0.3133771082786146,0.6866228917213854,25.30660912403401,4.635794746408526,0.3298282509638977,0.2029442691903259,0.2344900105152471,0.2327374693305292,11.119440510344225,5.52797074978622,24.61474471683407,13160.69196561218,64.53914364312718,13.735088215573647,21.19335074646262,14.997813800984146,14.612890880106772,0.5520504731861199,0.7823834196891192,0.6981934112646121,0.5874439461883408,0.108433734939759,0.711781206171108,0.912087912087912,0.8663793103448276,0.7554179566563467,0.1345454545454545,0.4988317757009345,0.7229219143576826,0.6431593794076164,0.5339901477832513,0.1016144349477682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022080421351159,0.004521079787935,0.006848759106313,0.0092649030842374,0.0114718086404686,0.0136963982036842,0.0160394000265114,0.0183873075509454,0.0205890471176356,0.0229908589327573,0.0250389471958019,0.0273965572104577,0.0293812260339457,0.0314311902040143,0.0334973641587488,0.0354835708896216,0.0375559145129224,0.0398340248962655,0.0418221700123709,0.0438848621178038,0.0588216876271982,0.0731607843137255,0.0869515084173672,0.099905422446406,0.111477621220584,0.1272554304740764,0.1407518924535103,0.153446753274389,0.1660277015409916,0.1775933431984387,0.1915865203390378,0.2049875581521151,0.2172352275694021,0.2284926530924846,0.2392417186829155,0.2499057879452905,0.2608700506934054,0.2712150542475127,0.2801543612734805,0.2885939092689519,0.2967685205539679,0.303668962936106,0.3113518884328314,0.3186822401916741,0.3256701256409633,0.3327785175321793,0.3387996597618333,0.3440821931743044,0.3499656997890213,0.3556268313930466,0.3568236276014323,0.357733647110634,0.3586958053289372,0.3595978591060321,0.3607125332698913,0.3605398359021547,0.3604992308546236,0.361201979188927,0.3622771412423572,0.3632429726056791,0.3638140706351145,0.3646902619793111,0.3650122974080848,0.3671631761675439,0.367868773368713,0.3686360779384035,0.3688864722548149,0.371315067629347,0.3731622183831047,0.3744056894002956,0.3743342516069788,0.3753282246396227,0.3762690355329949,0.3801075268817204,0.3871670931665245,0.3898609779482263,0.3893094392090221,0.3891034763163244,0.3872035300606729,0.3854365230651925,0.0,1.9884955520937808,63.34605005194057,218.90964075541515,322.06168252927534,fqhc8_80Compliance_baseline_low_initial_treat_cost,77 -100000,95748,41121,385.6581860717717,7223,74.27831390734009,5575,57.60955842419685,2290,23.52007352633997,77.3313489084019,79.69851779302681,63.31030609897547,65.06372690428145,77.0497459559745,79.41831564612588,63.208316641619454,64.96535081847352,0.2816029524274057,280.20214690093326,0.1019894573560122,98.3760858079279,80.77212,56.55005961823616,84359.06755232486,59061.34814119999,216.6892,130.6640778275405,225685.95688682792,135840.6105898196,255.23412,121.1511815428933,262677.37185110914,123514.28011496896,3723.21898,1669.48454240974,3849286.0738605503,1704348.907976919,1382.63205,599.7932528322079,1430696.3278606343,613093.0388438482,2260.04464,931.7364922373836,2322847.0568575845,939889.8906481904,0.38071,100000,0,367146,3834.50307056022,0,0.0,0,0.0,18097,188.3485816936124,0,0.0,23878,245.57170906964112,2093616,0,75152,0,0,3105,0,0,33,0.3446547186364206,0,0.0,0,0.0,0,0.0,0.07223,0.1897244621890678,0.3170427800083068,0.0229,0.3077227200843437,0.6922772799156564,25.335671831526103,4.650894509266402,0.3257399103139013,0.1949775784753363,0.240896860986547,0.2383856502242152,11.184744235483333,5.575425214165032,24.44592877142181,13086.164519940232,63.02085976780219,12.698226054231244,20.57423167281349,15.047385728793726,14.701016311963746,0.5461883408071749,0.7690892364305428,0.691079295154185,0.5867460908413998,0.1249059443190368,0.7078402366863905,0.8895522388059701,0.8755555555555555,0.7084639498432602,0.157258064516129,0.494435235614492,0.7154255319148937,0.6303074670571011,0.548828125,0.1174838112858464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022796583552011,0.0045529675410933,0.0069626998223801,0.0092359276569802,0.0114651366253636,0.0134431872574879,0.0155091719264614,0.0175725211105098,0.0198120058505252,0.0222053792736137,0.024398999015425,0.026557764421842,0.0286502284608735,0.0306712426181863,0.0327411979645131,0.0344028870712564,0.036646612337037,0.0388618510485954,0.0411230885975945,0.042881843179735,0.0574989821803263,0.0710847407965509,0.0837660634670862,0.097082886407134,0.1095623200936303,0.1253027594741239,0.1383533007205238,0.1509793688157039,0.1627357734437617,0.1746459227467811,0.1885245018267251,0.2017866811044937,0.214882060325028,0.226497083000405,0.2370179552385041,0.2489137181874612,0.2600330526832972,0.2699225608932511,0.2791969767468252,0.2880483976305327,0.2963018693211413,0.3045036183517178,0.312649645591826,0.3193692124764295,0.3257231870124496,0.3318646870796154,0.3374506733479486,0.3436170483784679,0.3493993097900827,0.3550173101826158,0.3556443017310001,0.3564608792692503,0.3575609687292833,0.3581383232753006,0.3587253910664367,0.3588784473639834,0.3586928974212761,0.3597764444809731,0.3605397907283407,0.3616013159541562,0.3638821100056317,0.3652432378876449,0.3665217299976894,0.3668057612060842,0.3688198248196317,0.3703965264699728,0.3707406243751964,0.3727919102543846,0.3754423213021939,0.3756970353432021,0.3784814780770291,0.3826876836761955,0.383673728276037,0.3848099325567137,0.386829727187206,0.3801224682053697,0.3831139355424421,0.3872568479555379,0.3831521739130434,0.3820053373999237,0.0,2.4427398033964214,59.59156654379011,221.88580311110337,310.73761680936417,fqhc8_80Compliance_baseline_low_initial_treat_cost,78 -100000,95500,40731,382.4188481675393,7228,74.56544502617801,5623,58.39790575916231,2280,23.612565445026178,77.22623088476638,79.71357680340381,63.24095407219974,65.07629485382986,76.94917361779858,79.4317593554878,63.13966659809386,64.97501824633085,0.2770572669678017,281.81744791601204,0.1012874741058809,101.2766074990168,80.95538,56.679428970024894,84770.03141361257,59350.18740316742,220.10694,133.1518266666743,229997.7277486911,138945.25305410926,258.41533,122.5948884647778,267213.86387434555,125794.02251567846,3726.40584,1670.8004314994666,3874004.418848168,1721538.0225125323,1369.82717,592.2712838005792,1423212.9109947644,609018.2657597696,2254.14706,936.831465193368,2336619.497382199,960519.439745408,0.37542,100000,0,367979,3853.1832460732985,0,0.0,0,0.0,18374,191.90575916230367,0,0.0,24168,249.67539267015707,2084867,0,74858,0,0,3291,0,0,42,0.4397905759162304,0,0.0,0,0.0,0,0.0,0.07228,0.1925310319109264,0.3154399557277255,0.0228,0.317614606593984,0.682385393406016,25.36855624773674,4.607054836949901,0.3366530321892228,0.1952694291303574,0.2281700160056909,0.2399075226747287,11.09296299279612,5.445122811824259,24.318000439487232,12936.037697463898,63.58951647852276,12.879479323957536,21.517519160594976,14.36833692410339,14.824181069866862,0.5433042859683443,0.7686703096539163,0.6920232435287903,0.5876851130163678,0.1089696071163825,0.6985185185185185,0.9156976744186046,0.8558951965065502,0.7228070175438597,0.1140684410646387,0.4942663234261643,0.7015915119363395,0.6397212543554007,0.5490981963927856,0.1077348066298342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901150124132,0.0044630630813393,0.0068024448189737,0.0088967971530249,0.0109341912363577,0.0132293736941344,0.0156124042082062,0.0179122473586332,0.0202256846757445,0.0222741337267678,0.024470356380358,0.0268764137363767,0.0291404094073067,0.0312200253720721,0.0333002707003078,0.035501304509877,0.0374880710343969,0.0393430694870329,0.041483487863319,0.043186801712436,0.0575785804749892,0.0713940996265055,0.0842105263157894,0.0971165398478173,0.1089823523195604,0.1246210916799152,0.137792094575918,0.1502885856635336,0.1626024096385542,0.1740364152281863,0.1874399473155775,0.2004902439288929,0.2124463051394431,0.2236899802674852,0.2346242965905329,0.245451817605939,0.2563887397064088,0.2660765631166488,0.2751609893735636,0.2844646485518476,0.2921577726218097,0.2998369558842504,0.3072239103598898,0.3136189296750069,0.3203336503987707,0.3266543730894419,0.3319502074688796,0.3381542435518727,0.3439377780090003,0.3495931727226948,0.3499188311688311,0.350312051253728,0.3515534447177225,0.3534166799461096,0.3540976759449864,0.3541259559015863,0.354158376442499,0.3552275279043656,0.3569512279012176,0.3584614001977173,0.3605970374279145,0.3611796054724785,0.3620504392895519,0.3628163311213587,0.3649536321483771,0.3662484611959454,0.3667688253659095,0.3689136208422916,0.369938520245919,0.3731408923716616,0.3738699463081088,0.3730235042735043,0.3736118122160525,0.376092408237708,0.3731231931362492,0.3746766988008465,0.3755189912348147,0.3814814814814815,0.3820005572582892,0.3757739938080495,0.0,1.9014054587051488,59.91246104216897,223.1934088884234,318.18531938237487,fqhc8_80Compliance_baseline_low_initial_treat_cost,79 -100000,95709,41167,386.086992863785,7372,75.90717696350396,5741,59.39880262044321,2337,24.03117784116436,77.36399481233721,79.74895007901448,63.33329461681414,65.0973246886352,77.08344470939358,79.46607460402997,63.23155889406375,64.99704195715157,0.2805501029436357,282.8754749845075,0.1017357227503978,100.28273148363098,81.02248,56.80933218769584,84655.02721792099,59356.31151479572,222.20131,133.91879719849453,231579.6111128525,139339.05609555478,261.2319,123.92012564581204,268724.1952167508,126323.1372987456,3779.31193,1696.3728919309342,3911655.779498271,1735392.022203695,1383.77091,597.7091078710034,1435572.4644495293,614288.6721238369,2295.49048,949.3222736144525,2362749.0622616475,964199.3915748493,0.37939,100000,0,368284,3847.955782632772,0,0.0,0,0.0,18495,192.63601124241188,0,0.0,24464,251.4392585859219,2093231,0,75117,0,0,3368,0,0,36,0.3761401749051813,0,0.0,1,0.0104483381918105,0,0.0,0.07372,0.1943119217691557,0.3170103092783505,0.02337,0.3230511099638616,0.6769488900361383,25.397060600905355,4.613918983138295,0.3274690820414562,0.2074551471869012,0.2353248562968124,0.2297509144748301,11.32941817246441,5.671782928318116,24.826510099490637,13072.03972091325,64.79709437115783,14.021191730588097,21.040307762153915,15.165242152762808,14.57035272565302,0.5413690994600244,0.746431570109152,0.6920212765957446,0.5595854922279793,0.1228203184230477,0.6840974212034384,0.8773841961852861,0.8662131519274376,0.6918238993710691,0.1148148148148148,0.495512082853855,0.6881067961165048,0.6386379430159833,0.5188770571151985,0.1248808388941849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024923759637693,0.0043607451803624,0.0066494761634045,0.0089131451104742,0.0112130893994586,0.0131833649163559,0.0155963115590191,0.0178316107684137,0.0201487118120544,0.0223225713963894,0.024345222224501,0.0264355184915116,0.028636083110471,0.0309009603099369,0.0329218956406869,0.0350503525713931,0.037104944218279,0.0390901449666379,0.0411222336566148,0.0432295573893473,0.0573988783406961,0.0714681962339986,0.084659526032542,0.0970608339029391,0.1096179183135704,0.1252484458916564,0.1396897432906721,0.1528470678339308,0.1647399152442864,0.1761421482997717,0.1902020701973358,0.2028294234076381,0.2158600367523133,0.2273457917354649,0.2379066851448558,0.2499723237019816,0.2607992504935366,0.2702626726037871,0.279500357373813,0.2876359473382942,0.2958041311035551,0.3036971213432172,0.3110040483912971,0.3176935986573963,0.3240139972297149,0.3304669212763336,0.3373834699368078,0.342698771898599,0.3479627473806752,0.3533815756521281,0.3543874751170173,0.3553230396942157,0.3565918752287379,0.3570066454781855,0.3581311796668547,0.3583342251303297,0.3579759158001201,0.3589886352471096,0.359837700530201,0.360406363263047,0.3617528385098996,0.3626821926489227,0.364063811922754,0.3632442147831948,0.3641802566824278,0.3650918635170603,0.3654778641723811,0.3678295185477506,0.3702096125344061,0.3733466135458167,0.3753823677121855,0.3779799914857386,0.3780573025856045,0.3780929623063285,0.380743146432324,0.3833615068823955,0.3824588880187941,0.3792029887920299,0.3842015855039637,0.380990099009901,0.0,2.261172679282721,61.841050039977695,223.8037605938885,324.2630964606176,fqhc8_80Compliance_baseline_low_initial_treat_cost,80 -100000,95691,41373,387.1837476878703,7378,76.09911067916522,5737,59.59808132426247,2349,24.244704308660165,77.31725194233033,79.72592932452251,63.30264576078415,65.08524106825567,77.03267816162773,79.43724384724794,63.20006341901414,64.98290332414227,0.2845737807026012,288.6854772745693,0.1025823417700095,102.3377441133988,81.16152,56.866145133871576,84816.25231212967,59426.84801483063,222.06547,134.0671065986763,231724.85395700744,139763.89273670074,258.58543,122.59596076858652,268612.1683334901,126719.972685461,3798.46522,1694.9817213866395,3947840.601519474,1749636.487639004,1403.091,601.276996321211,1457955.3354024934,620035.3599828734,2317.98198,952.1669950170296,2395282.837466428,972478.0481684444,0.38064,100000,0,368916,3855.284196005894,0,0.0,0,0.0,18449,192.44234044999007,0,0.0,24161,250.82818655881957,2089713,0,75024,0,0,3331,0,0,41,0.4284624468340805,0,0.0,0,0.0,0,0.0,0.07378,0.1938314417822614,0.3183789644890214,0.02349,0.3165938864628821,0.6834061135371179,25.429093644558424,4.5836858073523405,0.3280460170820987,0.1981872058567195,0.2344430887223287,0.239323688338853,10.945021662575122,5.401107074512388,24.96993126496168,13124.374068272107,64.72323744449122,13.413527792816511,21.163353274524123,15.090755111964624,15.055601265185969,0.5365173435593515,0.7590149516270889,0.6822529224229543,0.5724907063197026,0.1172614712308812,0.681915654038599,0.8970588235294118,0.8251599147121536,0.7084639498432602,0.1328413284132841,0.4896265560165975,0.7001254705144291,0.6348195329087049,0.530214424951267,0.1134301270417422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022288186248189,0.0048978350149571,0.0071445243918528,0.0094401934782387,0.0117922368621864,0.0141998573902414,0.0161385754799747,0.0184190094802222,0.0206768840416607,0.0226418187220178,0.0245511439417256,0.0268398446330586,0.0290384674771223,0.0312181040259807,0.0335963480883233,0.0359840254929956,0.0380847733468782,0.0403028163163578,0.0423849603096162,0.0443117143035837,0.0586397826995403,0.0718219895287958,0.0862532278042533,0.0984850078905839,0.1105590717299578,0.1266309006063299,0.1400191021967526,0.1530556827499547,0.1652489848258174,0.1761109502204202,0.1896822832525579,0.2028572974728069,0.2147396139365846,0.2262474143308999,0.2366513943345521,0.2486424186005275,0.2593534853100347,0.2697935999100163,0.2786650936975361,0.2874612134605036,0.2948112661713994,0.302556784954034,0.3104509773741727,0.3171965664412794,0.3242001361470388,0.3312399753238741,0.3373921104388239,0.3431048089407092,0.349192158691906,0.3550294296196584,0.3566120042006624,0.3572637575857656,0.3583268783888458,0.3591118692088639,0.3599273084772019,0.3595217237616611,0.3593023440351685,0.3605618033029819,0.3613997842798199,0.3629127463957357,0.364394993045897,0.3668649613325401,0.3676315678590991,0.3691196652343135,0.3703227683876131,0.3710736421893056,0.3727997247864228,0.3759636041956274,0.3770845110231769,0.3791794830823313,0.3815475096489616,0.3821621911346947,0.3862521500923743,0.3880965230128749,0.3890898705255141,0.3900395067640368,0.3901526955437831,0.3952292823360065,0.3885245901639344,0.3902624572080639,0.0,1.4032816131301469,62.87971365396261,217.9341769224229,330.95228760440995,fqhc8_80Compliance_baseline_low_initial_treat_cost,81 -100000,95859,41109,387.24585067651446,7205,74.10884736957406,5567,57.52198541607987,2250,23.190310768941885,77.4717338221379,79.75909499308283,63.40399372213196,65.09096528219959,77.2044320824131,79.4882366631683,63.30788168668519,64.9953117358837,0.2673017397248003,270.85832991453174,0.0961120354467723,95.65354631588718,81.5254,57.01474099684665,85047.20474864123,59477.71309615857,218.92173,132.35534852267918,227857.74940276865,137551.79849850215,254.12745,120.33293997669132,260804.3167569033,122252.2223841532,3654.01941,1617.7105527268293,3779334.585171972,1655249.008083383,1315.01842,564.4740259685317,1358944.3557725411,576061.0304347359,2203.52128,899.4731176479277,2273478.838711024,917740.8860459558,0.38011,100000,0,370570,3865.7820340291473,0,0.0,0,0.0,18239,189.7161455888336,0,0.0,23774,243.7851427617647,2095791,0,75115,0,0,3228,0,0,40,0.4068475573498576,0,0.0,0,0.0,0,0.0,0.07205,0.1895503933072005,0.3122831367106176,0.0225,0.3252331538158413,0.6747668461841587,25.456289223135883,4.464557300588599,0.3254894916472067,0.2137596551104724,0.2308245015268547,0.2299263517154661,10.920587273216098,5.541327698515604,23.64231310004816,12997.860894543326,62.24268286337026,13.827085700515216,20.42939072585329,14.18335361747814,13.80285281952363,0.5417639662295671,0.7831932773109244,0.6876379690949227,0.5525291828793775,0.1,0.7188693659281895,0.9224137931034484,0.8562231759656652,0.6996336996336996,0.1351351351351351,0.4873179896665101,0.7256532066508313,0.6292719167904903,0.5128458498023716,0.0926275992438563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019333940682255,0.0040522332870703,0.0059522602364679,0.0081912302070645,0.0102430696691325,0.0122193168984708,0.0142918262570287,0.0162894358367588,0.0184424973959928,0.0205248302380757,0.0225831890945216,0.0249625664061698,0.0269764957264957,0.0289124395513941,0.0306869253288253,0.0324146263385619,0.0344866821825704,0.0366462845890765,0.038729506069007,0.040803371663458,0.0557420807874377,0.0700465164898343,0.0831613031678001,0.0959025005253204,0.1073382022827152,0.1228038647751538,0.1365347301008344,0.1497335304817726,0.1616866826794769,0.1732733215453035,0.1872390789756832,0.2013291549600173,0.2135303569877529,0.225506784416038,0.2363638360256086,0.247899902732337,0.2584758977100597,0.2686396245691639,0.277892901224083,0.2877573651298115,0.2964600748164226,0.3043518831721741,0.3114256705704571,0.319060657874284,0.3261452256491735,0.3319673139875458,0.3381101712914954,0.3439504197305089,0.349822910472842,0.3553598230507939,0.3555200043020004,0.3564109247040425,0.3568980050576004,0.3577345877335792,0.3586885634671251,0.3575334514572004,0.3571101460718515,0.3586531060122176,0.3593723378880294,0.360774818401937,0.3627505984440455,0.3634534587845434,0.3642848178052964,0.3648823608196794,0.3659168305434313,0.3662547157538702,0.3663135773719932,0.368452380952381,0.3716065710705833,0.3729902269861286,0.3747685916828464,0.3773824650571791,0.3795017344686219,0.3819923371647509,0.3821904761904762,0.3818968626036783,0.3807987711213517,0.3797775530839231,0.3771209633278599,0.3810975609756097,0.0,2.192413514094592,57.77799069068389,211.55123230892696,323.4712091501007,fqhc8_80Compliance_baseline_low_initial_treat_cost,82 -100000,95748,41350,388.01854869031206,7251,74.46630739023269,5649,58.507749509128125,2217,22.87254041859882,77.34438518034166,79.69920372217254,63.33412346583962,65.07301661510719,77.07645714376372,79.42766859673486,63.23614715979806,64.97570519841199,0.2679280365779419,271.5351254376799,0.0979763060415592,97.31141669520582,81.10388,56.849951150256295,84705.56042946066,59374.55732783587,224.71836,135.52700254278886,234167.5648577516,141015.37634497733,260.23525,123.47781537676563,268730.70977983874,126579.0293807897,3737.29919,1665.059227102632,3871965.095876676,1707942.975633843,1331.932,578.2110749932012,1378192.23378034,591112.9602979232,2192.92422,905.379117601,2264295.692860425,922958.6568381484,0.38101,100000,0,368654,3850.2527467936666,0,0.0,0,0.0,18650,194.280820487112,0,0.0,24380,251.5352801102895,2089477,0,75027,0,0,3237,0,0,42,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.07251,0.1903099656177003,0.3057509309060819,0.02217,0.3160383554446341,0.6839616445553658,25.594316597642905,4.565011659330877,0.3329792883696229,0.199150292087095,0.2370331032041069,0.230837316339175,11.042470731589969,5.531043010810933,23.447490978909588,13097.48650456565,63.297570312655495,13.129958074544566,21.25905094933921,14.619872331273807,14.2886889574979,0.5478845813418304,0.7591111111111111,0.7139819245082403,0.5728155339805825,0.1004601226993865,0.7212990936555891,0.9114285714285716,0.8881578947368421,0.7380073800738007,0.1255060728744939,0.4947976878612716,0.6903225806451613,0.6582456140350877,0.5308988764044944,0.0946073793755913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021879178315303,0.0045420903754321,0.006645765480575,0.0090389283284076,0.0111230859954856,0.0133763602862581,0.0154705366788283,0.0176539619368335,0.0199446209806786,0.0222858896961015,0.024561439462251,0.0270447804086994,0.0290978634148347,0.0312767118773236,0.0332790030741298,0.0353728983455445,0.0371071916532107,0.0392305299180752,0.0409469767828563,0.0428610115823681,0.0575210614775918,0.0712103137230279,0.0852806678972982,0.0982175719017824,0.1103214104943479,0.1256106587712805,0.1386116561489102,0.1515325609353888,0.164007262629499,0.1750396672241519,0.1895595818665288,0.2023559699716591,0.2155344872575454,0.226611431132292,0.2374437760499719,0.2483975600845778,0.2589162165781368,0.2688656964844013,0.2784610497174885,0.2875170336780148,0.2954971423282505,0.3036401717702398,0.3106958137553112,0.3176539744235706,0.3242185601088911,0.3310092920517788,0.3378127663841949,0.343821313377274,0.349979252035894,0.355288023152859,0.357039871720588,0.3577318594182349,0.3582878653301188,0.358607920849365,0.3597505618311976,0.3598955934285275,0.3594472242077675,0.3599874930059573,0.3612595942982456,0.3627930299611382,0.3649118193940988,0.3663121199516707,0.3674018063432052,0.3668215383924764,0.3677177721396641,0.3711108203584979,0.3722347823598432,0.3735850249794473,0.3763759525825571,0.3781764423845293,0.3797161172161172,0.3820224719101123,0.3849178664298852,0.3857697874609583,0.3878879351004622,0.3807546274323683,0.3834436067087244,0.3804213135068153,0.3832635983263598,0.381174640217814,0.0,1.942447835992336,58.56430891173311,218.77951876011,326.05348196337115,fqhc8_80Compliance_baseline_low_initial_treat_cost,83 -100000,95650,41082,385.88604286461054,7345,75.45216936748562,5735,59.16361735493988,2303,23.565081024568737,77.28108161739658,79.66650578840908,63.29287913429015,65.05469176638752,76.99640490410958,79.384251431516,63.18800186456361,64.95372685504061,0.2846767132869985,282.2543568930769,0.1048772697265434,100.96491134690666,80.82338,56.579129020113164,84498.63042341871,59151.79887100176,220.73723,134.03628887313738,229980.491374804,139338.131748281,261.19167,125.03635936879124,267073.0162049137,126253.2166884475,3772.60596,1687.6611919705642,3898529.785676947,1718897.9102809874,1404.83725,602.8202116078036,1451085.436487193,612710.6399300625,2269.75828,943.7434247220084,2326923.4082592786,948660.1517830878,0.37823,100000,0,367379,3840.8468374281233,0,0.0,0,0.0,18395,191.4898065865133,0,0.0,24435,249.4929430214323,2086654,0,74938,0,0,3178,0,0,38,0.3972817564035546,0,0.0,0,0.0,0,0.0,0.07345,0.1941940089363614,0.3135466303607896,0.02303,0.3106267029972752,0.6893732970027248,25.4569423243546,4.526332966984629,0.3251961639058413,0.2097646033129904,0.230514385353095,0.2345248474280732,11.021192198963854,5.416582785216847,24.638562248971265,13066.23114162383,64.67814531334973,14.057502087778706,21.113322587359693,14.731737158579856,14.77558347963148,0.5448997384481256,0.7655860349127181,0.6836461126005362,0.5816944024205749,0.1189591078066914,0.7005730659025788,0.9252873563218392,0.8354700854700855,0.7012987012987013,0.1801470588235294,0.4948144733809633,0.7005847953216374,0.6327845382963493,0.5453648915187377,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211112799473,0.0047344356694613,0.0071343759197052,0.0093568083225813,0.011665276732502,0.0140625636430287,0.0160694985419173,0.0183158410585208,0.0204651162790697,0.0224567293421631,0.0247511047769427,0.0266540720358125,0.0287947346770876,0.0306830007109224,0.0327264846120502,0.0347194937860584,0.0365551745926516,0.0385789014821272,0.0407967961720497,0.0427758437389256,0.0566043649508446,0.0705841701307812,0.0840225879586867,0.0962396363789402,0.1084220409971831,0.1238825707484792,0.1378131634819533,0.1509671097477846,0.1626947215361751,0.1751403936390675,0.1887201501391375,0.2021804625354921,0.2144086255717708,0.2263409185483694,0.237455651292448,0.2487051803875032,0.2596401028277635,0.2696341861853742,0.2793512604277953,0.288123150336094,0.2962619530570849,0.3035546801725755,0.311254271070615,0.3180856943743542,0.3255420425355782,0.3316293140705069,0.3377603872731605,0.3433022442808477,0.3491226475134103,0.3547703554590242,0.3554915639195328,0.3566028608942022,0.3577269184439878,0.357992937791534,0.3587302536204809,0.3582183766473704,0.3584878653901205,0.3598844407758976,0.3605184892296584,0.3616077840011489,0.361793217909547,0.3623032261926138,0.3632437924684066,0.3631743019788561,0.3651271834989432,0.3651164622777763,0.3669885612461919,0.3689988894177375,0.3718704756523888,0.3727454110135674,0.3764124616862619,0.3779330204778157,0.3802192232148514,0.3825544222864971,0.3825105782792666,0.3798921959221936,0.3802170921877388,0.3804435483870967,0.3821932681867535,0.3833976833976834,0.0,3.028011193244452,60.97892707341085,217.3347014762672,331.8584358144411,fqhc8_80Compliance_baseline_low_initial_treat_cost,84 -100000,95720,41244,388.0484747179273,7402,76.08650229837025,5736,59.28750522356874,2334,23.976180526535728,77.3612597271838,79.72587921995748,63.34108899169471,65.08857263098538,77.07656533025616,79.44180000977119,63.23662942288949,64.98726550007737,0.2846943969276481,284.0792101862917,0.1044595688052183,101.3071309080118,81.31574,56.98206401234504,84951.6715419975,59529.94568778211,220.98147,133.25004540490488,230256.08023401588,138601.85478991317,261.13611,124.72162698973383,268263.7484329294,126831.43460429134,3803.64696,1697.4839448655746,3934718.1153363977,1734380.6569845134,1380.90909,592.4636973784806,1428924.95821145,605225.2166511499,2304.05816,955.3780452602036,2369521.6673631426,965905.3933356416,0.37976,100000,0,369617,3861.439615545341,0,0.0,0,0.0,18374,191.30798161303804,0,0.0,24423,250.7730881738404,2091474,0,75046,0,0,3242,0,0,44,0.4387797743418303,0,0.0,0,0.0,0,0.0,0.07402,0.1949125763640193,0.3153201837341259,0.02334,0.3200205470656222,0.6799794529343778,25.277292069429663,4.563945740661685,0.3364714086471408,0.1966527196652719,0.2285564853556485,0.2383193863319386,11.067976328138576,5.476996871851688,24.862529440550453,13108.352121940028,64.39315517181092,13.152645847847394,21.636534072129265,14.622954101231068,14.981021150603166,0.5406206415620641,0.7588652482269503,0.6974093264248704,0.5758962623951183,0.1053401609363569,0.7060070671378091,0.9264305177111716,0.8611713665943601,0.7402597402597403,0.1218637992831541,0.4864614672529507,0.6780551905387647,0.6460176991150443,0.5254237288135594,0.1011029411764705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474660913078,0.0045218590315516,0.0067077997199163,0.0090317074905263,0.0111868198921997,0.0135231461681024,0.0155711459629229,0.0177668862000306,0.0199167748729641,0.0219287469287469,0.0237355561707319,0.0259025317105736,0.0281186041488825,0.0303486072193835,0.0324128536932697,0.0341266231080969,0.0363278620618236,0.0381162894471944,0.0399413514131813,0.0420109403490492,0.0567087814555706,0.0721380797370707,0.0856192764006755,0.0978654048370136,0.1098615005164744,0.1252867366462647,0.138611131729352,0.1511836995265202,0.1630529980988187,0.1750846803584444,0.1889689178859425,0.2019080996884735,0.2146763059194434,0.2267003344920312,0.2370156998988521,0.2489706924030458,0.2599424531037405,0.270026638492059,0.2792330022225246,0.2888397865958372,0.297135389561577,0.3048539604249699,0.3125332702430946,0.3195051556268787,0.3261800492521199,0.3329888027562446,0.3394573381825453,0.344917474123242,0.3503866129596291,0.3552852293590099,0.3565164679733279,0.3574445835683916,0.3584605194548965,0.3592556147256309,0.3604150847886611,0.3605593589782949,0.3601262209818597,0.3613152486642005,0.3625416916103652,0.3639114166532395,0.3647065460631476,0.3661969031386034,0.3665648372484989,0.3684778454690556,0.3703157130760856,0.3719090789646564,0.3728896430728523,0.3769289388454944,0.3792480883602379,0.3790325812527552,0.3808672533920059,0.3833865814696485,0.3825164224355735,0.3841332925710792,0.3793915418668174,0.383059719248156,0.386412542268675,0.3873009391588403,0.38568194680249,0.382711038961039,0.0,2.5208204593091663,62.202651013241926,211.0338691568008,333.63148649960624,fqhc8_80Compliance_baseline_low_initial_treat_cost,85 -100000,95669,41252,387.45048030187417,7340,75.8030291944099,5679,58.9637186549457,2279,23.623117206200547,77.2430810454354,79.64788978385549,63.27207635196621,65.05036841637957,76.96052154798288,79.35809471782429,63.17038878384339,64.9470481794661,0.2825594974525245,289.7950660312034,0.1016875681228199,103.32023691347558,81.54036,57.1692052741981,85231.7469608755,59757.29366273098,222.4473,134.22745160941932,232130.2720839561,139917.09957718584,259.1171,122.69141381253148,267889.30583574617,126030.14949234642,3753.93934,1664.66600260078,3903190.176546217,1719382.112070986,1373.97821,591.1337148887816,1427935.3918197115,609676.7894328663,2252.62954,923.7307859537432,2336853.108112345,951966.3413749194,0.3796,100000,0,370638,3874.170316403433,0,0.0,0,0.0,18529,193.27054740825136,0,0.0,24238,250.35277885208376,2083444,0,74735,0,0,3167,0,0,44,0.4599190960499221,0,0.0,0,0.0,0,0.0,0.0734,0.1933614330874604,0.3104904632152588,0.02279,0.3157894736842105,0.6842105263157895,25.541759091929404,4.569267029681279,0.3282268004930445,0.2054939249867934,0.2271526677231907,0.2391266067969712,10.979246140940196,5.304003219583762,24.319919853222647,13077.477800925197,63.92515640235167,13.726205787475951,20.990511617882827,14.389090755432282,14.819348241560602,0.5370663849269237,0.7463581833761782,0.6915236051502146,0.5767441860465117,0.1075110456553755,0.7177777777777777,0.9166666666666666,0.8744493392070485,0.7440273037542662,0.1372549019607843,0.4807114807114807,0.673992673992674,0.6326241134751773,0.5275827482447342,0.1006346328195829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024221663693854,0.0043413872152232,0.0064668081175192,0.0086162224773671,0.0109344644146755,0.0132084118335964,0.0156003058883507,0.017756494036922,0.0200016361256544,0.0222110717430929,0.0240588241326619,0.0262690368362138,0.0283528213988214,0.0304522509529205,0.0326163246769332,0.0349801472412937,0.0368977697670323,0.0388068376423211,0.0408865867864869,0.0429284768626142,0.057604697818273,0.0717869225048964,0.0854311448907178,0.0985549345878985,0.1109457305422723,0.1269106999195494,0.140529401767505,0.1527342500799488,0.1645733481684354,0.1754314371932688,0.1891014230076275,0.202742250162584,0.2149391239953825,0.2263504265081085,0.2367339291814985,0.2484885462310721,0.2588870506170631,0.2692606740813359,0.2792008546037229,0.2881791188508145,0.2970113450685455,0.304607998126354,0.3118936782630326,0.3187152044538299,0.3249114608054328,0.3317402096995295,0.3376983380370022,0.3435549940660771,0.3493528096896605,0.3545960264900662,0.3553793792712244,0.3555138588043763,0.3559602414919338,0.3565904969169387,0.3571300582350306,0.3570065556615678,0.3565125983499506,0.3578369802340186,0.3590043319810218,0.3613688677888074,0.3624541639889616,0.3627092937396475,0.3642798284349975,0.3643792325056433,0.3651475441661813,0.3649625408884668,0.368119630925867,0.3705637075468695,0.3742843935568751,0.374282944170639,0.3768506056527591,0.3770854705469467,0.3802356859228897,0.3822937625754527,0.3818897637795275,0.3844396344396344,0.3894654088050314,0.3920796184947128,0.398658093374336,0.3998441153546375,0.0,1.5364190345649749,60.511019014612295,214.0559136826211,334.9417728653905,fqhc8_80Compliance_baseline_low_initial_treat_cost,86 -100000,95811,41427,388.4627026124349,7391,75.87855256703301,5753,59.40862740186408,2321,23.838598908267315,77.44904619750217,79.77496431862407,63.38601454967061,65.10671303122841,77.16971069908735,79.49438502636464,63.284604886245525,65.00708434958284,0.2793354984148237,280.5792922594321,0.1014096634250876,99.62868164556936,80.48084,56.32930654791085,83999.58251140267,58792.10794993357,220.96583,133.1114529823637,230010.687708092,138315.18612932094,260.0079,123.70748474495272,266754.756760706,125607.64554691408,3806.73967,1707.75595996511,3937393.274258697,1746638.8618896692,1425.62873,612.8887394602281,1473630.4390936324,625356.2424567413,2293.37236,946.0371813482636,2359108.3069793656,959529.8039387309,0.3833,100000,0,365822,3818.162841427393,0,0.0,0,0.0,18323,190.59398190186928,0,0.0,24381,249.88779993946412,2100815,0,75333,0,0,3184,0,0,43,0.4383630272098193,0,0.0,0,0.0,0,0.0,0.07391,0.1928254630837464,0.3140305777296712,0.02321,0.3182751540041068,0.6817248459958932,25.493655952791737,4.599779893780719,0.3210498870154702,0.2087606466191552,0.2324004867025899,0.2377889796627846,11.434927396966245,5.78666359698288,24.459222938359662,13230.723785093282,64.58409098178034,13.98588144318378,20.872721533685425,14.676441286936088,15.049046717975036,0.5520597948896228,0.7668609492089925,0.7033026529507309,0.5804038893044129,0.131578947368421,0.7037037037037037,0.9,0.8758169934640523,0.7556270096463023,0.127147766323024,0.501850994909764,0.7075812274368231,0.6462536023054755,0.5272904483430799,0.1327762302692665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799155383166,0.0045918522498048,0.0068592533966495,0.009254274133745,0.0116232954025443,0.0138474540030342,0.0161190012540399,0.0181059206564672,0.0205109862033725,0.0226335553713765,0.0247681508428549,0.0268370279146141,0.0289473684210526,0.031031536030146,0.0330339002279266,0.0352294563712626,0.0371459029797451,0.0391327340031729,0.0411644917296982,0.043098961044369,0.0576551954351522,0.0713464232691382,0.0853735222604175,0.0987371561849929,0.1110677933955703,0.1262549405026102,0.140668892775746,0.1540187591722143,0.1663394857569614,0.1783824883805607,0.19220304350164,0.2050628261503722,0.2178742440200219,0.2292689847859778,0.2405111933334065,0.2510142492344767,0.2617867525032578,0.2720405001908268,0.2822001856505694,0.2912468298032764,0.2999469079661134,0.3084568988648692,0.3158031363201926,0.3230671781817312,0.3295404973098735,0.3359889839677387,0.3418904752396166,0.34788676994912,0.3534091936504656,0.3587736035265478,0.3598093191889351,0.359935747823938,0.3607504215851602,0.3616631572874902,0.3624105383258998,0.3626076598863844,0.3628688653937194,0.3631407475319657,0.3639041667376164,0.3648747306754037,0.3658053176769754,0.3671605279251909,0.3686161191029587,0.3697428206907357,0.3711129296235679,0.3719416970327954,0.371778056569343,0.3725187958098713,0.3751586070774002,0.3770615586376823,0.379438140556369,0.380317868036603,0.3802772126144456,0.3796516534949743,0.3827113480578827,0.385709164774764,0.3890779702970297,0.3914115471543045,0.3845297718419588,0.3849404533230887,0.0,2.5234287868844034,62.84763764947098,216.88348957794224,325.2244195774145,fqhc8_80Compliance_baseline_low_initial_treat_cost,87 -100000,95815,41473,389.4484162187549,7292,75.13437353232793,5641,58.372906121171006,2284,23.514063559985388,77.3497797498425,79.68281635940617,63.33168066437421,65.05972873377151,77.0742773638911,79.40555614181044,63.23287270769551,64.96261435014085,0.2755023859513983,277.2602175957388,0.0988079566786979,97.11438363065383,80.12642,56.14962920929114,83626.1754422585,58602.128277713455,219.52466,132.21999751032428,228631.0807284872,137513.13208821614,261.40771,123.88235450594402,269324.2498564943,126598.48040587697,3740.20359,1660.1592770129448,3873347.095966185,1702450.771813332,1367.00547,583.6060613433008,1413485.9155664565,595869.2494320307,2250.42172,916.3016293406944,2319144.7476908625,930601.4858203378,0.38177,100000,0,364211,3801.1897928299327,0,0.0,0,0.0,18210,189.54234723164436,0,0.0,24446,251.65162030997237,2097034,0,75221,0,0,3225,0,0,37,0.3861608307676251,0,0.0,0,0.0,0,0.0,0.07292,0.191005055399848,0.3132199670872189,0.02284,0.3133237635390839,0.6866762364609161,25.49637877682186,4.584820503094069,0.319092359510725,0.2084736748803403,0.2350647048395674,0.2373692607693671,11.10520222715695,5.503320685775075,24.080495349944574,13139.960092265095,63.53051010081965,13.773152062890778,20.38705304241663,14.90020118233471,14.47010381317754,0.5468888494947705,0.7551020408163265,0.6961111111111111,0.6033182503770739,0.1075429424943988,0.7204610951008645,0.9182058047493404,0.8632286995515696,0.7492063492063492,0.125,0.4902421819891841,0.6775407779171895,0.6410635155096012,0.5578635014836796,0.1035747021081576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020463156188585,0.004146937451205,0.0063734345505104,0.0083410377023031,0.0107822195097141,0.0129728628888549,0.0153038336052202,0.0173739064748935,0.0197573515132311,0.0216993009140318,0.0241412184395854,0.0263873915498742,0.0284509793840933,0.0305002368350598,0.0324207790064367,0.0344909536159704,0.0365812001200741,0.0386366700895126,0.0407484753088343,0.0426028110359187,0.0572212485394758,0.0706114852147726,0.084172684491306,0.0968494503877761,0.1091307693118458,0.1243272961799938,0.1378388697976326,0.1512716824518463,0.1626848934693223,0.174402642529278,0.1889186947200586,0.2029931177769121,0.2160001740095052,0.2276368564277986,0.238795464293963,0.2496316401706087,0.2605663661519236,0.2710067023525707,0.2805019173606226,0.2898096099465351,0.2985055636523469,0.306344121223459,0.3133524979001786,0.3205303248059787,0.3276188626098781,0.3337849321985885,0.3396068329039842,0.3449512809423258,0.3505281416662352,0.3557802743270538,0.3570302074487443,0.3583729748362633,0.3592768737916143,0.3605592133886359,0.361431423378326,0.3619000829060091,0.3619671818960865,0.363192021591732,0.3642158290639297,0.3653828921665263,0.3666422163290639,0.3677051686821151,0.3696137013970712,0.3720496754923758,0.3736016816062238,0.3742890839994758,0.3752576139226013,0.3775091528847368,0.3783308725304085,0.3792870752619879,0.3819736601426742,0.3844677789030435,0.386877971473851,0.3903586579251832,0.3884933067502136,0.3901013714967203,0.3851027661876062,0.3878960194963444,0.3829261597584408,0.3765625,0.0,1.989278143163204,61.729065247537214,210.9727833364632,326.04013485575643,fqhc8_80Compliance_baseline_low_initial_treat_cost,88 -100000,95810,41612,390.3350380962321,7280,74.78342552969418,5719,59.22137563928609,2324,23.93278363427617,77.41775944651599,79.7450597890874,63.37436231324406,65.09471135151217,77.13808798568647,79.46339865493152,63.272254701762925,64.99406398692919,0.279671460829519,281.66113415588256,0.1021076114811379,100.64736458298285,81.48338,57.07990398097861,85046.84270952927,59576.14443270913,224.38964,135.90432631908686,233733.06544202063,141378.0777779844,261.98844,124.45635334740712,270485.30424799083,127635.27443371229,3754.82163,1683.3527477356467,3890264.398288279,1728205.2371732022,1399.34808,611.4435194740981,1447612.1699196326,625250.6622211646,2291.2455,945.5094045339732,2361500.6158021083,962542.9393857014,0.38425,100000,0,370379,3865.765577705876,0,0.0,0,0.0,18675,194.43690637720488,0,0.0,24491,252.65629892495565,2090622,0,75021,0,0,3248,0,0,44,0.4488049264168667,0,0.0,0,0.0,0,0.0,0.0728,0.1894599869876382,0.3192307692307692,0.02324,0.31522730233164,0.68477269766836,25.259042384205724,4.482983587044494,0.3283790872530163,0.2150725651337646,0.2194439587340444,0.2371043888791746,11.098743180607949,5.643106196009537,24.54858978291064,13226.448520387326,64.12821035544653,14.320173446820126,21.025511954682525,13.91249288006706,14.87003207387682,0.5490470361951391,0.759349593495935,0.7018104366347178,0.5936254980079682,0.105457227138643,0.6987600291757841,0.9245810055865922,0.8536585365853658,0.7366548042704626,0.1245551601423487,0.5018399264029438,0.6915137614678899,0.6538192011212334,0.5523613963039015,0.1004651162790697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023592786480219,0.0045208964755253,0.0066970401112114,0.0089780829152363,0.0112564060847636,0.0134268496274278,0.015370502497197,0.0174940801829019,0.0197980334839224,0.0219943299865925,0.0244467450465871,0.0266072656723159,0.0287823029954153,0.0307001739882429,0.0331817572514203,0.0354586487910181,0.0373494225276317,0.0392510574769843,0.0412013422121567,0.0432365464899586,0.057268952277612,0.0712329339940203,0.0845570893997044,0.0972868502043002,0.10991638056322,0.1254476500353894,0.1398381390224783,0.1536188127232522,0.1655961932400136,0.1775247439907451,0.1920140233148363,0.2054143395737233,0.2169404662374184,0.2288038434241415,0.2404087013843111,0.2521185971899546,0.2628921142398501,0.273435920476244,0.2831875453226976,0.2922395845249262,0.3009614495701211,0.3083733370709088,0.3155886348868805,0.3223987453158858,0.3296396538540895,0.3365066072242269,0.3417170858542927,0.3484650098519036,0.3536831483350151,0.3582903910275841,0.3591909193609123,0.360320321422183,0.3607726011186092,0.3613415021818917,0.3626904496469714,0.3628237170149803,0.3628213454136505,0.3636139670860296,0.3650576909947429,0.3663090626729262,0.366267951554239,0.3668995185097482,0.3678071865315353,0.3680414442980595,0.369723400154202,0.3701247846290398,0.3724494163979338,0.3746022745172164,0.3778129395218003,0.377592039800995,0.3786465477823502,0.3836464560204953,0.3854536239229599,0.3894116746997169,0.392022792022792,0.391973083393415,0.3892627954296447,0.3897921383000617,0.388290527478597,0.3816556548775748,0.0,1.8184046659206847,60.79028528347544,218.884374562334,328.4424072415703,fqhc8_80Compliance_baseline_low_initial_treat_cost,89 -100000,95728,41114,385.6029583820826,7247,74.42963396289487,5658,58.572204579642325,2255,23.18026073875982,77.3893283971574,79.74922176898738,63.35181630130408,65.0932448544143,77.12059905093176,79.4795659005694,63.254191895900135,64.99773597511509,0.2687293462256406,269.65586841798483,0.0976244054039412,95.50887929920292,81.0051,56.73174656501956,84620.06936319573,59263.482539089455,219.31608,132.29458349148908,228601.9242019054,137696.96796286257,258.1115,122.17956435431692,266683.0185525656,125354.95578494245,3738.89108,1664.2870740621615,3873276.1992311543,1706089.998811384,1388.06056,598.902713994307,1436889.8545879992,612518.4639939894,2223.93942,908.7159911812936,2289165.3016881165,921246.9305912316,0.38017,100000,0,368205,3846.3667892361696,0,0.0,0,0.0,18218,189.7772856426542,0,0.0,24212,249.8850910914257,2093972,0,75109,0,0,3177,0,0,46,0.4805281631288651,0,0.0,0,0.0,0,0.0,0.07247,0.1906252466002051,0.3111632399613633,0.02255,0.3197011403853716,0.6802988596146284,25.54060594110438,4.548781211125552,0.3412866737363025,0.1952986921173559,0.2301166489925769,0.2332979851537645,11.164677702825491,5.625638256913087,23.6194496970579,13072.17909007284,63.27214406255278,12.892152882422046,21.61655368342248,14.480158124640065,14.283279372068206,0.5542594556380347,0.7819004524886878,0.6991196271361989,0.5837173579109063,0.1227272727272727,0.7060561299852289,0.9141104294478528,0.8769230769230769,0.7322033898305085,0.1546762589928057,0.5065055762081785,0.7265725288831836,0.6443089430894309,0.5402184707050646,0.1142034548944337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.004439174191979,0.0068165910958278,0.0092503274676847,0.0113456142491155,0.0135374468171732,0.0159689385292678,0.0181628946348033,0.0204154618001982,0.0225623919205148,0.0246234245312019,0.0265420445684737,0.0286683107274969,0.0307565620174987,0.0331143584930955,0.0350728531569701,0.0371033697396345,0.0389167211210339,0.0409001143332294,0.0429397364446064,0.0575047511642963,0.0710817654814473,0.0844232806452627,0.0969108802624384,0.1089992937183095,0.1241248757376425,0.1384310231443178,0.1511928715148031,0.1631501917591633,0.1747386479386694,0.1884583907649896,0.2021741481882098,0.2151779017056387,0.2277269944016794,0.2387695151335115,0.2489753417373773,0.2586478250678096,0.2687925313536921,0.2788166942786464,0.2869056210408147,0.2955523175131834,0.3033912769016751,0.310687302694586,0.3180773099583273,0.3245343500327837,0.3308908647570256,0.336374330480052,0.3423967646348132,0.3477562649744221,0.3531926121372031,0.3540938189251708,0.3550094881878936,0.3559474587235957,0.3571831067315889,0.3582751966750779,0.3589261416624623,0.3594889934624009,0.3600281514943206,0.3616295917497656,0.36318407960199,0.365103133305881,0.3664933884134169,0.3682311983557736,0.3682054267036805,0.3699392712550607,0.3706000364763815,0.369930987281127,0.3720762072434607,0.3726143699129947,0.3749503928883245,0.3778366284644537,0.3793342950259122,0.3802334432885054,0.3829868541730358,0.3824727617243013,0.3896119402985075,0.3898279041180086,0.3917022574740695,0.386523822948971,0.3817394726485635,0.0,2.0601659576165647,59.91614147796256,210.3208693306561,331.0168014901149,fqhc8_80Compliance_baseline_low_initial_treat_cost,90 -100000,95671,41596,391.1007515339026,7269,74.7457432241745,5668,58.64891137335242,2371,24.3961074933888,77.35982293729873,79.73545388018877,63.33991942654043,65.08992407717557,77.06692001993407,79.44370605584479,63.23203346320239,64.98559123318437,0.2929029173646569,291.74782434398594,0.1078859633380417,104.33284399120168,79.7192,55.828016133836144,83326.39984948418,58354.168069567735,219.95089,132.94839555798404,229320.2015239728,138380.94674246534,257.34812,122.53411977968604,265994.10479664686,125689.79624649532,3762.54643,1684.904819533176,3893408.274189671,1721755.829387355,1329.56686,576.8084591036982,1372963.9180106823,586144.0866131821,2326.3839,970.3784120213508,2394997.6063801986,981679.9262860228,0.38312,100000,0,362360,3787.563629522008,0,0.0,0,0.0,18313,190.79971987331584,0,0.0,24067,248.47654984269005,2097896,0,75244,0,0,3283,0,0,38,0.3971945521631424,0,0.0,2,0.020904976429639,0,0.0,0.07269,0.1897316767592399,0.3261796670793782,0.02371,0.3108143493061011,0.6891856506938989,25.270269864180623,4.613059018765495,0.3373323923782639,0.1910726887791108,0.2385321100917431,0.2330628087508821,10.909576473083854,5.403439865495763,25.35049707670601,13160.584691610617,63.678185697795776,12.66808391901736,21.41117493174825,15.091733995938975,14.507192851091174,0.5271700776287932,0.7368421052631579,0.678347280334728,0.5591715976331361,0.1037093111279333,0.6888726207906296,0.8734567901234568,0.8549450549450549,0.7204968944099379,0.1396226415094339,0.4758251975825197,0.6785243741765481,0.6231983527796843,0.5087378640776699,0.0946969696969697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022987807347996,0.0043380869847254,0.0065946329833105,0.0087952712721659,0.0110623068163331,0.0131915110183724,0.0151621679454651,0.0173142064237032,0.0195713906310649,0.0215647761682625,0.023726347924969,0.0259453803065432,0.0279673560004933,0.0302412504247366,0.0323269415247506,0.0347172697487416,0.0367310599002008,0.0389051382579293,0.040795957831701,0.0428126270153095,0.0571906179804628,0.0716005947519423,0.0847564367659252,0.0981060606060606,0.1107419361643777,0.1257618725133327,0.1395923999575416,0.15244344084189,0.1651610558162905,0.1774827186466875,0.1915235242138839,0.2044076239982672,0.2171556677694584,0.2287224727463771,0.2393092739226677,0.2511965433192998,0.2620881328690062,0.2719075352476895,0.2810851886717553,0.2897342843077768,0.298535434163948,0.3063414063414063,0.3134734649434266,0.320018690021206,0.3266571986939053,0.3336042759673883,0.340266920161603,0.3457256638294082,0.3513513513513513,0.356709853797694,0.3580105586381512,0.3584180510786015,0.3592885375494071,0.3601875162774546,0.3617514947794271,0.360842615606493,0.3599822199644399,0.3611985043403778,0.3626081285184677,0.364676759704384,0.3650954934612851,0.366596513521026,0.3676340507981972,0.3687748724059626,0.3702477341389728,0.3725551802686356,0.3740490762454956,0.3768491591857377,0.37645400070497,0.3777254212922291,0.3794100105519108,0.3786756814767117,0.3806422779799527,0.3829377311960542,0.3842865285958579,0.3868049692437583,0.387542715128922,0.3805128205128205,0.3787547788093938,0.3859581070597362,0.0,2.321906996393838,60.13902872060133,215.19913891069476,327.69850042217394,fqhc8_80Compliance_baseline_low_initial_treat_cost,91 -100000,95857,41597,390.5400753205295,7288,74.91367349280699,5627,58.14911795695672,2312,23.764565968056584,77.34109898624328,79.63300506830845,63.34986309044478,65.04453506593171,77.06042272442116,79.35005491141936,63.24703474345677,64.94270250562019,0.2806762618221228,282.9501568890862,0.1028283469880051,101.83256031152156,80.20782,56.23518623470208,83674.45256997402,58665.70645305202,219.02716,132.5557133562222,227963.6541932253,137755.20968933,261.11582,124.44153727784952,268562.6714793912,126810.9549198187,3713.59664,1674.6700289065918,3840990.569285498,1713963.6906869411,1409.88697,616.4505200460221,1456340.9662309482,628739.8316854812,2274.26482,947.0951469403346,2340524.719112845,962693.4464631596,0.38321,100000,0,364581,3803.384207726092,0,0.0,0,0.0,18195,189.2506546209458,0,0.0,24467,251.44746862513952,2094845,0,75248,0,0,3200,0,0,38,0.3964238396778535,0,0.0,0,0.0,0,0.0,0.07288,0.1901829284204483,0.3172338090010977,0.02312,0.32041242495432,0.67958757504568,25.376968229148503,4.571777000931,0.3447663053136662,0.1977963390794384,0.2242758130442509,0.2331615425626444,11.41087553261721,5.828153925255024,24.67551334079593,13166.833116123777,63.54986752590157,12.920489831474509,21.906289058823617,14.147477520344294,14.57561111525915,0.5590901012973165,0.7538185085354897,0.7103092783505155,0.6053882725832013,0.1257621951219512,0.6979388770433547,0.9006024096385542,0.8732106339468303,0.7162162162162162,0.1517241379310344,0.5127962085308057,0.6914212548015365,0.6554100620261888,0.5714285714285714,0.1183953033268101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023897524175991,0.0045799515659989,0.0069378936798222,0.0090766950271082,0.0115870144126196,0.0137181470324839,0.0158317796998685,0.0180260137719969,0.0204583988723878,0.0224229466943543,0.0244502033248998,0.0264607242854066,0.028491316002999,0.0306394361849889,0.0325090159711488,0.0346265391006388,0.0367069236495988,0.0386245195246531,0.0407370879833895,0.0426337636936777,0.0575575575575575,0.0714076706029888,0.0848730517848165,0.0981149908112365,0.1107250405374102,0.1256270792628188,0.1397428020592784,0.1522016456530521,0.1646909443988007,0.1763968366231595,0.1905591960145044,0.2037759923874609,0.216505603687237,0.2280145604005203,0.2391263684876492,0.2502022138258856,0.261408658192248,0.271890541665729,0.2816848652698009,0.2904670798629807,0.2992848546565451,0.3069930151747376,0.3148707024084265,0.3216468896080546,0.3278485319852226,0.3338514872250391,0.3396921227000012,0.3450497949619215,0.3507762486068994,0.3565225437193502,0.3574973031283711,0.3582106002783021,0.3588733587462939,0.3599501116686486,0.3607386304312158,0.3602077826274051,0.3601284129557229,0.362200956937799,0.363425169072981,0.3653537918490104,0.3657466918714556,0.3670558234051879,0.3678503487634749,0.3687444928944217,0.3697593498308879,0.3704318936877076,0.3706263498920086,0.3724467069678651,0.3744381127667858,0.377201408901697,0.3790933725256051,0.3822883760775285,0.3844785977391083,0.383140293012196,0.3834414345669591,0.385040885040885,0.3821062441752097,0.3876967095851216,0.3894736842105263,0.3955659276546091,0.0,2.1460107544336933,62.23077438555872,210.8343877329476,323.5224404648254,fqhc8_80Compliance_baseline_low_initial_treat_cost,92 -100000,95646,41121,385.5153378081676,7180,73.83476569851327,5565,57.629174246701375,2301,23.722894841394307,77.31769350596971,79.74069612444967,63.289715480586615,65.0815771283324,77.03435512771024,79.45404866021286,63.18624538306269,64.97912252860613,0.2833383782594723,286.64746423680754,0.1034700975239246,102.45459972627202,81.37426,56.92832141005103,85078.35142086443,59519.6639546557,222.2815,135.42370417174,231815.98812286972,141008.68456181246,258.2262,123.5182636104609,266588.9321037994,126553.37691678532,3713.2086,1668.3637633669755,3846794.826757,1709219.9613910643,1384.33216,598.638786370234,1435408.861844719,613949.1315582814,2271.27538,942.0516105866022,2342368.9229032057,958136.8085358732,0.37912,100000,0,369883,3867.1977918574735,0,0.0,0,0.0,18544,193.27520230851263,0,0.0,24130,248.8237877172072,2083637,0,74771,0,0,3191,0,0,42,0.4391192522426447,0,0.0,0,0.0,0,0.0,0.0718,0.1893859464021945,0.3204735376044568,0.02301,0.3202752779248279,0.6797247220751721,25.4126147514878,4.643097095412295,0.3358490566037735,0.1883198562443845,0.2273135669362084,0.2485175202156334,11.103418299254024,5.562924488168596,24.45176203779181,13103.745715193698,62.652722440840265,12.22169683716895,21.198553899177675,14.078137546099326,15.154334158394322,0.5297394429469902,0.7423664122137404,0.7051899411449973,0.5430830039525691,0.1193058568329718,0.7108167770419426,0.903726708074534,0.8702127659574468,0.7407407407407407,0.1703703703703703,0.4712315739419876,0.6707988980716253,0.6497498213009293,0.4824380165289256,0.1069182389937107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021172704433098,0.0044923538717397,0.0067106598984771,0.0092074106444171,0.011395199772096,0.013620619396903,0.0158427356007589,0.0183185361517792,0.0203964672049778,0.0223561610135613,0.0243707140804007,0.0266007218286325,0.0286794084936359,0.03078256204997,0.0328360059513969,0.0352456641417277,0.0371806569343065,0.0392425706065044,0.0411389441039036,0.0434564965741638,0.0581264108352144,0.0715034159017561,0.0858586389084377,0.0985107010448264,0.1110090289878029,0.1261822302714496,0.1393245770636742,0.1526982807320479,0.1651512558298746,0.1760150375939849,0.1904017086641353,0.2035869094061551,0.2158814879363869,0.2273279817769649,0.2380044521831125,0.2487632822378491,0.26034530926971,0.270471771423423,0.2801780422168981,0.2890001833684789,0.2972622411636633,0.3048522095405326,0.3125088858347946,0.3192771084337349,0.3255695093457944,0.3315899194493443,0.3374239274712615,0.3433879141307392,0.3491520149369846,0.3545418484728282,0.3549879921206724,0.3557751954013481,0.3563755452351039,0.3579542987800466,0.35862612679618,0.3578940903717124,0.3576986597217811,0.3580592105263158,0.3593937112943511,0.3601885579601457,0.3619133235944113,0.3633418921587991,0.3635737253100597,0.3639975891242717,0.365728285933897,0.3669968717413973,0.3681107408356832,0.3707050738962628,0.3731259436115305,0.3751690667515315,0.3751259734310582,0.3787457191780822,0.3802629072204229,0.3834113404434896,0.3828798938287989,0.3838987099856665,0.3858754442899088,0.3845218800648298,0.38208460049765,0.3884644766997708,0.0,2.079356314541347,60.219652195675366,209.2555869520656,322.214253144179,fqhc8_80Compliance_baseline_low_initial_treat_cost,93 -100000,95723,41324,387.4617385581313,7316,75.42596868046343,5665,58.73196619412263,2276,23.526216269862,77.34880342590687,79.70568603744066,63.338894218876014,65.07671951949611,77.07849821603685,79.4317796693345,63.24108648926962,64.97940313912073,0.2703052098700169,273.90636810615376,0.0978077296063943,97.31638037537492,80.18318,56.178348880703695,83765.84519916844,58688.45406088787,219.84808,132.67175246807585,229226.8002465447,138155.3466440415,258.54236,122.75869275251146,266459.7014301683,125548.01102897408,3732.83661,1657.087916893931,3873339.792944225,1704844.5586681708,1361.55491,581.090195611574,1412951.0671416484,597614.4036559386,2239.27548,916.1528058689032,2316105.805292354,937570.1247795394,0.38083,100000,0,364469,3807.53841814402,0,0.0,0,0.0,18240,190.0797091608077,0,0.0,24135,248.54005829320016,2096720,0,75188,0,0,3200,0,0,54,0.5641277435934937,0,0.0,0,0.0,0,0.0,0.07316,0.192106714281963,0.3110989611809732,0.02276,0.3183171521035599,0.6816828478964402,25.684913831879943,4.537637007514087,0.3274492497793468,0.2132391879964695,0.2254192409532215,0.233892321270962,11.081403797314128,5.613762088548952,23.981080170523555,13150.336227242611,63.484255077033225,13.9618464187437,21.091160107469456,14.058815103368651,14.372433447451437,0.5451015004413062,0.765728476821192,0.7072776280323451,0.5411119812059515,0.120754716981132,0.7037582903463523,0.9213483146067416,0.8586278586278586,0.663003663003663,0.1336032388663967,0.495125348189415,0.7007042253521126,0.6542940320232896,0.5079681274900398,0.1178107606679035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657600275434,0.0041762964765032,0.0065750088782913,0.0087871676876034,0.0111538148690418,0.0133964472947523,0.0156156033718287,0.0178319893845054,0.0198967860610086,0.021933370861266,0.0239940143082631,0.0261610304305434,0.0282524211954845,0.0305454320835134,0.0328440423754164,0.0348839612308582,0.0369645575125027,0.0391475321387439,0.0411844827765474,0.0433767830535671,0.0581576281629541,0.0721275103869057,0.0853572814922836,0.0980189999263568,0.1102603046027929,0.1258369207662122,0.1395528959904934,0.1520832002725085,0.1642881558707913,0.1757601758996085,0.1894427331279753,0.2031718214173671,0.2154881788720447,0.2269208057214093,0.2377106896096466,0.2491662696522153,0.2603071767662664,0.2696927735936145,0.279281529588083,0.2877994569389228,0.295706331106815,0.3036967711745437,0.3120242450071622,0.3192756645334483,0.3262971239797901,0.33291856597265,0.3394851019668155,0.3453449635073621,0.3507871011137125,0.3562037635330265,0.3575728194562275,0.3590636353627656,0.3604284103720406,0.3611512872432745,0.3619881910257745,0.3618041932319764,0.3620815369008369,0.3627148161535176,0.3645045353414342,0.3666869496742788,0.3687409714274994,0.3698117688973339,0.3717800684399471,0.3728611847128037,0.3742000917630581,0.3753694838996573,0.3771215596330275,0.3800797569312571,0.3802463906244484,0.3815079713908978,0.3816442891300349,0.3842173350582147,0.3846499390361291,0.3868692349430276,0.3866092778574844,0.3838896952104499,0.3853038153556288,0.3913497701629753,0.3940761636107193,0.3992932862190813,0.0,1.7400683613011227,60.35810612035489,210.86473941567823,332.8430473021267,fqhc8_80Compliance_baseline_low_initial_treat_cost,94 -100000,95619,41212,387.20338008136457,7119,73.19674959997491,5534,57.11208023509972,2280,23.2798920716594,77.26744378178137,79.68285564728578,63.28338998351626,65.06932126757552,76.98663380250976,79.40913662798869,63.1792687332986,64.97228203029141,0.2808099792716092,273.71901929709,0.1041212502176591,97.03923728410756,79.92688,55.95060915702848,83588.91015383972,58514.112422247126,216.41731,131.1763103744496,225595.46742802163,136448.95928052964,255.0453,121.53305949427892,262879.58460138674,123982.178320402,3647.04405,1643.659174927678,3764580.0311653535,1669405.5626263358,1351.37218,592.1270198184819,1391929.114506531,597897.426053903,2249.65904,938.8250415833736,2299317.75065625,934207.7935604457,0.38051,100000,0,363304,3799.4959160836233,0,0.0,0,0.0,18047,187.9542768696598,0,0.0,23898,246.0912580135747,2094901,0,75201,0,0,3229,0,0,34,0.3451196937847081,0,0.0,0,0.0,0,0.0,0.07119,0.187091009434706,0.3202697008006742,0.0228,0.3168872843963096,0.6831127156036904,25.23332230332076,4.604597117265034,0.3256234188651969,0.2103361040838453,0.2260571015540296,0.237983375496928,10.983735127735756,5.343007424828472,24.350052747707007,13097.297217479972,62.77427289743573,13.69801163330172,20.43847454310525,14.06315334286248,14.574633378166268,0.5411998554391038,0.7637457044673539,0.6809100998890122,0.5611510791366906,0.1343963553530751,0.7101556708673091,0.89501312335958,0.8482758620689655,0.7279411764705882,0.1915708812260536,0.4867383512544803,0.6998722860791826,0.6276517922457937,0.5148110316649642,0.1202651515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022088475489898,0.0042993307645508,0.0066906270305393,0.0091049508170067,0.011332770424928,0.0134537825396178,0.0157839998368578,0.0180297910136908,0.020051329768198,0.0219250186890047,0.0242141428644684,0.0262768623905986,0.0281358338391268,0.0301291100371977,0.0323712787480903,0.0344692113642942,0.0364692843899862,0.0386671510873514,0.0409046459854774,0.0427710466498446,0.0569427750195975,0.0710499853354003,0.0843083709694359,0.0968784885312888,0.1086768308134133,0.1247445062218692,0.1386082873925836,0.151343977149191,0.1639798461719493,0.1753326960463143,0.1892918005910649,0.2019370355123177,0.2145391614785145,0.2261121751025991,0.2366276893263746,0.2482299365103987,0.2591368801768212,0.2694112748022014,0.2793058804824312,0.2887801075330452,0.2969748911331418,0.3047289153101705,0.3122394352851999,0.3190447617904716,0.3262331974940697,0.3325596898842003,0.3389552294911473,0.3452966198833389,0.3510432741561086,0.356484359500033,0.3573183904941939,0.358479637010578,0.359489308815637,0.3599965209323901,0.3609619286311015,0.3613531916201718,0.3604732523376375,0.361666035343138,0.3629895068925314,0.3633756363375636,0.3645625400173251,0.3645466308350751,0.3653963768268764,0.367131845659453,0.3681508922302123,0.3684528658905153,0.3699133329506973,0.3706391203777052,0.373227955769776,0.3746580852775543,0.3761535964383434,0.3766424150287762,0.3773669972948602,0.3761760360780655,0.3733614008228877,0.3721212121212121,0.3712406015037593,0.3772999793260285,0.3847695390781563,0.384739604360113,0.0,2.9807845986041106,58.82460571660121,220.0264951977529,310.67993428429804,fqhc8_80Compliance_baseline_low_initial_treat_cost,95 -100000,95837,41370,387.8355958554629,7306,74.89800390245938,5607,57.91082775963354,2218,22.76782453540908,77.40182060844235,79.71491166358743,63.36325590393732,65.07552180629173,77.12633079811978,79.4399914245067,63.26212498991144,64.97706652261456,0.2754898103225685,274.9202390807284,0.1011309140258802,98.45528367716838,80.78708,56.57034249370818,84296.33648799524,59027.6641523714,219.93595,132.91200815949162,228815.49923307283,138018.2743783242,257.43184,122.03903657047168,265211.26496029715,124691.9358673104,3683.69112,1653.3926548459256,3809620.324091948,1691869.175733542,1325.33527,573.9821139348967,1372378.0377098615,588636.9329980328,2192.75904,909.839605065674,2254248.129636779,920941.6878369856,0.38114,100000,0,367214,3831.651658545238,0,0.0,0,0.0,18281,190.11446518567985,0,0.0,24106,248.04616171207363,2095612,0,75245,0,0,3234,0,0,51,0.5217191690057076,0,0.0,1,0.0104343833801141,0,0.0,0.07306,0.1916880936138951,0.3035860936216808,0.02218,0.3227740842132707,0.6772259157867292,25.427091704932224,4.590330675140906,0.3351168182628857,0.2065275548421616,0.2229356161940431,0.2354200107009095,11.191650035271673,5.483481818488788,23.388299008958302,13104.5728418723,63.03906179410581,13.53936637744054,21.147087216794933,13.912999173488233,14.439609026382108,0.5468164794007491,0.7711571675302246,0.6955827567855242,0.564,0.1219696969696969,0.7063609467455622,0.9213483146067416,0.8752834467120182,0.7052631578947368,0.1481481481481481,0.4961222091656874,0.7044887780548629,0.6404728789986092,0.522279792746114,0.1152380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022985479657344,0.0046417821200174,0.0070405388954266,0.009323867272007,0.0115187930175577,0.0136304409788672,0.015726443459206,0.0177689324351908,0.0201974773596091,0.0222818132503607,0.0244374967966787,0.0265118857002093,0.0286574773607984,0.0307647955191301,0.0329317848965531,0.0351098344733524,0.0371501324942033,0.0389054220802787,0.0409746673729473,0.0430746495436522,0.0580591333368097,0.0719968219785274,0.0855163886327437,0.0983634109960293,0.1102170638974607,0.125851525617059,0.1389692250648869,0.1517094017094017,0.1639379255875509,0.1752059387486208,0.1893016952069529,0.2018414056927964,0.2141747340743396,0.2261705731300879,0.2364711832354816,0.2477385209871895,0.2580591187953151,0.2677665688226098,0.2778723307690562,0.286976930562711,0.2954495493515058,0.3039375051163008,0.3120673947253215,0.3195057052449899,0.3260032317243558,0.3326020238374028,0.3386898951215238,0.3438879489104023,0.3498977134422663,0.3552175002968611,0.3565265382492697,0.3581697368240036,0.3583255892540339,0.3597274944791652,0.360678610125718,0.3603737458834342,0.3601304499255929,0.3618431848764318,0.362399589813707,0.3637451123926511,0.3652512835888019,0.3659322838383039,0.3675219050014673,0.3686626657112146,0.3681806159986535,0.3701686257134666,0.3719658119658119,0.3741880824625812,0.3761973264095997,0.3788282025819265,0.3780459927764824,0.3805678840703705,0.3848296821577814,0.3835270724992352,0.3853443422781009,0.3789661319073084,0.3807615230460922,0.3809328128210396,0.379243183082916,0.3785575048732943,0.0,2.2809998327629657,59.54363462110189,215.5634817285753,320.89867314958474,fqhc8_80Compliance_baseline_low_initial_treat_cost,96 -100000,95691,41526,389.5873175115737,7286,74.55246574913001,5718,59.12781766310311,2349,24.20290309433489,77.32145341825886,79.70972300518736,63.3143933609397,65.08075523023929,77.03272608761512,79.41879448079321,63.20810493768692,64.97595857998368,0.2887273306437379,290.92852439414685,0.1062884232527778,104.79665025560791,81.52584,57.137337208430885,85196.97777220428,59710.25196562988,222.6661,134.58890297574493,232017.7028142668,139974.35806475522,263.36047,125.70906402136696,270843.63210751273,128049.41170504494,3803.89332,1714.4178666491518,3939194.344295702,1755629.0629726432,1378.8198,602.6283437058639,1428204.596043515,617060.9604935297,2321.96248,969.6443615957544,2395683.564807557,987242.8753924004,0.38308,100000,0,370572,3872.589898736558,0,0.0,0,0.0,18577,193.4978211117033,0,0.0,24568,252.38528179243607,2086930,0,74869,0,0,3280,0,0,47,0.4807139647406757,0,0.0,0,0.0,0,0.0,0.07286,0.1901952594758275,0.3223991216030744,0.02349,0.3199583116206357,0.6800416883793643,25.268393347739018,4.626410582464824,0.3214410633088492,0.2053165442462399,0.2318992654774396,0.2413431269674711,11.13988886203523,5.551774686514299,25.001733546466017,13207.666279839625,64.28470163471383,13.695419962230792,20.657866362311932,14.851590764723152,15.079824545447936,0.5389996502273522,0.7768313458262351,0.6849836779107725,0.5784313725490197,0.1043478260869565,0.7302357836338419,0.946524064171123,0.8917748917748918,0.754601226993865,0.1464285714285714,0.4745088868101029,0.6975,0.6155523255813954,0.521,0.0936363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024215773688903,0.0046851232126559,0.0070245249309728,0.0090547860285972,0.011334038743285,0.0134768967484312,0.0157867362860377,0.0181539718194813,0.0203539189727966,0.0223862263803304,0.024390243902439,0.026956807492452,0.0290090627603872,0.0310986542464398,0.0331344577716303,0.0354635593833683,0.0374962451964409,0.0394470562595348,0.0415470693456466,0.0434188996237584,0.0580819685828877,0.0719863501235188,0.0853202921669045,0.0978869385865218,0.1098837331982865,0.1248703456743083,0.1386857440056043,0.1525270277467114,0.1648924800136804,0.1762238812373965,0.1907085986403353,0.2041488025637694,0.2169050856676638,0.2287568111692233,0.2404330699997799,0.2519630970971636,0.2625107394307265,0.272265260459416,0.2815768576290414,0.2907616167170745,0.2990789382333202,0.3065729292173079,0.3138374089644147,0.321645281208778,0.3286084197473832,0.3346846735835572,0.341095170134455,0.3479644170686078,0.3536066061790554,0.3591137620247819,0.3596923657130542,0.3599290048293226,0.3603314169766655,0.3612448840875237,0.362797206961752,0.3625249577637843,0.3621020877986822,0.3631710608604062,0.36375783739336,0.3648556693646587,0.3661746733101438,0.3676981401718902,0.3685262737010459,0.3689147844866373,0.3712321138900322,0.3727418549002077,0.3727110445698491,0.3751190400609485,0.3767591903293275,0.3770885923788917,0.3808407994486561,0.3817496635262449,0.382430266110933,0.385517830782379,0.3886922414617813,0.3889360669659105,0.3941194870190804,0.3886354209871422,0.3909014321819714,0.3924794359576968,0.0,2.484359225601624,63.2874319793523,207.09311874457376,332.9686798444678,fqhc8_80Compliance_baseline_low_initial_treat_cost,97 -100000,95711,41085,385.9848920186813,7358,75.70707651158175,5728,59.324424569798666,2355,24.291878676432177,77.3455376358958,79.7307967421503,63.32130932583449,65.08647439703755,77.05827753408613,79.439850842909,63.217990654509805,64.98364257418515,0.2872601018096645,290.94589924130787,0.1033186713246863,102.83182285239434,80.89884,56.66463955817628,84523.6179749454,59203.56194014422,220.36426,132.78373917502722,229719.4784298565,138219.5677372744,258.70034,123.08593998928156,266249.0413850028,125588.44294570356,3790.82313,1695.2905947164495,3931690.2654867256,1742647.4490613162,1391.93719,603.3194809654991,1442139.3883670631,618182.1535304182,2322.41072,952.7407011277184,2398586.557448987,973627.4117264516,0.3798,100000,0,367722,3841.982635224792,0,0.0,0,0.0,18384,191.51403704903305,0,0.0,24230,249.1563143212379,2094726,0,75031,0,0,3289,0,0,46,0.480613513598228,0,0.0,0,0.0,0,0.0,0.07358,0.1937335439705108,0.3200597988583854,0.02355,0.3193798449612403,0.6806201550387597,25.344893068383257,4.565434150375342,0.3379888268156424,0.1972765363128491,0.2241620111731843,0.240572625698324,11.252926871184522,5.75904221172584,24.936830456700363,13087.396902207433,64.38647185249313,13.109963535397236,21.93437115450312,14.275993196826551,15.066143965766212,0.5480097765363129,0.7690265486725664,0.7024793388429752,0.5809968847352025,0.1190130624092888,0.728,0.9302325581395348,0.8822314049586777,0.7394366197183099,0.1673003802281368,0.4911555249253388,0.6984732824427481,0.6425619834710744,0.536,0.1076233183856502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505810595852,0.0046148384806531,0.0066703893598659,0.0088721315473891,0.0108854887279238,0.0133530250560195,0.0155717811180681,0.018044790294415,0.0198482493455497,0.022180805308647,0.0242859340546638,0.0265404011873337,0.0283695238487095,0.0303667295228085,0.0325173887019875,0.034529458590495,0.0366276841483752,0.0387114183116424,0.0407225232157898,0.0425192748489268,0.0571243577425957,0.0716139565062687,0.0849215011334061,0.0978653115761344,0.1098923120734935,0.1248122686409307,0.138866194866789,0.1519014301992481,0.1643845866068088,0.1759131060093806,0.1903098895176502,0.2041757813346039,0.2168939583582755,0.2280803483512395,0.2384600145281648,0.2496371392166639,0.2602037969173763,0.2701100285759287,0.2796823596142938,0.2882424991700722,0.2962620174230942,0.3044388071217311,0.3116506806381796,0.317990228949133,0.3249159679161256,0.3312413088689531,0.3368002600195015,0.3426426884096624,0.3486175710594315,0.3542911282469668,0.3550029555591381,0.3560920045014135,0.3569408686109821,0.3581915031830583,0.3585854838470328,0.3589253201548371,0.3593445428757072,0.3605177780339586,0.3614148130376666,0.3619520769065212,0.3633092169718894,0.3637521391332033,0.3644863758205112,0.3654244306418219,0.3662347099430786,0.3670247695096005,0.368624863748494,0.3705580540951416,0.3739915074309978,0.3756864002565233,0.3759008492081707,0.3773019271948608,0.378901294087795,0.3757585067977571,0.3809115179252479,0.3819815444390481,0.379202501954652,0.3798256537982565,0.3829016986911723,0.3865777080062794,0.0,2.0171186064282165,60.85421453827105,218.5487291287145,331.37208490526666,fqhc8_80Compliance_baseline_low_initial_treat_cost,98 -100000,95604,41460,389.5966695954144,7331,75.3838751516673,5680,58.75277185055019,2321,23.879753985188906,77.23812690061078,79.67055361302516,63.25655152000609,65.05503346408562,76.9529241071447,79.3851742830856,63.15149252037639,64.95258980610117,0.2852027934660839,285.37932993955906,0.1050589996297048,102.44365798445187,80.40758,56.30107068450545,84104.82824986403,58889.869340723664,221.31499,133.65388666433853,230855.696414376,139163.818108383,261.27118,124.64032880130593,269448.79921342205,127360.05345567327,3757.82319,1691.6566016315885,3891281.965189741,1730110.2690594431,1358.26761,591.7199102520445,1407107.694238735,605320.3216612856,2288.62742,951.593205261012,2357224.7395506464,964712.0378478874,0.38173,100000,0,365489,3822.946738630183,0,0.0,0,0.0,18412,191.9061963934564,0,0.0,24413,251.45391406217317,2087054,0,75036,0,0,3217,0,0,48,0.502071043052592,0,0.0,0,0.0,0,0.0,0.07331,0.1920467346029916,0.3166007365980084,0.02321,0.3055555555555556,0.6944444444444444,25.470397112301622,4.525383666685035,0.3318661971830985,0.205281690140845,0.2195422535211267,0.2433098591549296,11.051795268165456,5.6878252803015,24.78498842758175,13158.764540383228,64.11102951354854,13.535883056311606,21.540382526700597,13.772879618608318,15.261884311928013,0.535387323943662,0.7392795883361921,0.6970822281167108,0.5757818765036087,0.1063675832127351,0.7003484320557491,0.900804289544236,0.8588469184890656,0.7292418772563177,0.1241134751773049,0.47962308598351,0.6633039092055486,0.638205499276411,0.5319587628865979,0.1018181818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025032430679422,0.0051930664448794,0.0074323775485338,0.0098187695028612,0.0120297997068881,0.0144666198029687,0.0164822275485746,0.0188779471254035,0.0208456927766299,0.0229737895998279,0.0251067060658294,0.0272494682654665,0.0292401272115354,0.0311333786932228,0.0331705100533908,0.035036164026365,0.0369894256686709,0.0390808418690656,0.0410680824484697,0.0431176581050347,0.0585344944748204,0.0717219986586183,0.0850800054632752,0.0980662692477829,0.1102322290397186,0.1258937556273502,0.1395697211155378,0.1526137381145269,0.1650421031232278,0.1768649020281884,0.190778328099878,0.2040309640487445,0.2168729840467265,0.2285169519384602,0.2395573875283796,0.2505243532975996,0.261211477151966,0.2706756741516009,0.2804704651189244,0.2892454715659135,0.2975987372770214,0.3053642857980739,0.3131929441371287,0.3194900475073666,0.3262650896232167,0.3324591786244433,0.338132207733474,0.3444404710209711,0.3495585003316124,0.3550131191858153,0.3561440047604879,0.3568939771030363,0.3575965932402416,0.3588801603090014,0.3598710428513858,0.3605507130316937,0.3603712607262828,0.361875030969724,0.3625245123335741,0.3633048289738431,0.3645697921965372,0.3662529339221068,0.3672995780590717,0.3691157259336006,0.3706815155550175,0.3709482532177567,0.3708188328683597,0.3737463501332995,0.3760493040059505,0.3781314823679591,0.3788902680090102,0.3812024434680098,0.3862799847696408,0.3862397297089764,0.3866805805900768,0.3840295132690706,0.3887190461632528,0.3907164480322906,0.3888735123166343,0.3841982958946553,0.0,2.56551650966228,63.17389089115156,207.76337474577463,329.6585620509681,fqhc8_80Compliance_baseline_low_initial_treat_cost,99 -100000,95731,44694,422.6948428408771,5889,60.36707022803481,4586,47.44544609374184,1707,17.590957996887113,77.33641368994157,79.71287474449254,63.332022412709286,65.08996550962154,77.12514821141649,79.49905344143787,63.25435876071411,65.01320052026067,0.2112654785250782,213.82130305467228,0.0776636519951736,76.76498936086773,167.94668,117.64125249007004,175436.04475039433,122887.31183218604,362.98117,236.03623689654543,378733.09586236434,246127.2178255167,367.17534,177.88027830963995,379612.0692356708,182887.0231268801,3239.96487,1465.2286524433534,3357772.779977228,1503894.49858808,1096.0762,480.6318149114863,1134173.3921091391,491284.0614967843,1665.7762,692.1497930993798,1718437.2669250297,704492.0663478188,0.3799,100000,0,763394,7974.36567047247,0,0.0,0,0.0,30919,322.51830650468503,0,0.0,33547,346.7633264041951,1565959,0,56162,0,0,6563,0,0,75,0.7625534048531823,0,0.0,0,0.0,0,0.0,0.05889,0.1550144774940774,0.2898624554253693,0.01707,0.3310155239327296,0.6689844760672704,24.631863545354623,4.34842305207173,0.3266463148713476,0.2394243349324029,0.2208896641953772,0.2130396860008722,11.318077524336898,5.961427925177735,18.157789721488665,12231.394402829475,51.88457522571549,13.147395270076604,16.86172634509587,11.382119998331175,10.493333612211842,0.5708678587003925,0.7768670309653917,0.6955941255006676,0.5942744323790721,0.1238485158648925,0.7647058823529411,0.9250645994832042,0.8712121212121212,0.7799227799227799,0.1703296703296703,0.5002974419988102,0.6962025316455697,0.632486388384755,0.5305039787798409,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0044625199038529,0.0068328341540179,0.0089336531425319,0.0110779935505528,0.0131281445419917,0.0153988925034927,0.0178068205023483,0.019997341866623,0.0224494809901111,0.0249090256778227,0.0269912322128909,0.0290098001912734,0.0309616018457481,0.033143470364867,0.0353805763426634,0.0375555256427513,0.0396920906299278,0.0415519087063616,0.043269481162047,0.0576073677285969,0.071498817769036,0.0848460062289615,0.0973584350330589,0.1093229627755996,0.1253236391304807,0.1385235041602628,0.1500239247168908,0.1604819688577252,0.1706227639838042,0.1828717154109368,0.1948144624167459,0.2055931595701915,0.2168889180127344,0.2269376544905245,0.2372144957658036,0.2467972283492636,0.2557468035862751,0.2636488309097709,0.2709371998353382,0.2779639085930821,0.2844717886454113,0.2913374667847653,0.2969125686328456,0.3027242637698379,0.3073129335366754,0.3125616717253094,0.3176611039142472,0.3222390317700453,0.3258659564088026,0.3246141632691505,0.3236508810572687,0.3231068289384719,0.3223410404624277,0.3213887443312765,0.319022446947062,0.3174462425182886,0.3187689782519491,0.3196297118652752,0.3206913791872009,0.3217375023403857,0.3227996762923633,0.3236498913225213,0.3236080773859938,0.325106138015399,0.3267926293629961,0.3266874232340255,0.3303185957835691,0.333286477368569,0.3362391529336836,0.339601008942903,0.3417001877178868,0.3461415305795709,0.34922471650081,0.3530360531309298,0.3586995785671282,0.3626679018063918,0.3721873099533752,0.3766693922049605,0.3821536144578313,0.0,1.8235937232566048,53.94547549374899,170.7726400035943,251.70687962702155,fqhc8_80Compliance_implementation,0 -100000,95613,44586,422.4530137115246,6057,62.198654994613705,4774,49.38658968968655,1864,19.19195088533986,77.26635035352784,79.70393151335128,63.26822878755484,65.07186008895698,77.03877073319867,79.47687648115671,63.18328710640738,64.9893965228052,0.2275796203291662,227.05503219457057,0.0849416811474554,82.4635661517874,166.02542,116.30156207121746,173643.1447606497,121637.81292420224,360.41773,233.7936729171692,376401.9118739084,243967.97811716932,370.4043,179.4953800487737,383390.8568918453,184712.2641683528,3421.37109,1564.9380969374065,3542321.242927217,1600709.7538382935,1157.69201,514.7961305239746,1196749.950320563,524376.6168716993,1825.03324,765.826692152779,1880089.5275747024,775935.7302385144,0.38033,100000,0,754661,7892.870216393168,0,0.0,0,0.0,30770,321.2533860458306,0,0.0,33889,350.5067302563459,1570990,0,56360,0,0,6601,0,0,69,0.7216591886040601,0,0.0,0,0.0,0,0.0,0.06057,0.1592564352010096,0.3077431071487535,0.01864,0.3313815477132458,0.6686184522867542,24.36306405755142,4.308198727482152,0.3160871386677838,0.2423544197737746,0.2218265605362379,0.2197318810222036,11.355561850353723,5.99396189457004,19.888850533472016,12304.722223971734,54.36887569219897,13.971487939745945,17.160583937594996,11.695244601941948,11.541559212916086,0.5603267700041894,0.7968885047536733,0.6918489065606361,0.5486307837582625,0.1220209723546234,0.7419106317411402,0.9035087719298246,0.86,0.7142857142857143,0.1813725490196078,0.4925201380897583,0.7275320970042796,0.6311992786293958,0.5006090133982948,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002776764360128,0.0051940147096119,0.0075761422608589,0.0096896860257035,0.0120824087457502,0.0145642447282326,0.0168598954931417,0.0190163800414865,0.0210464925922894,0.0229841478035434,0.0252273333743867,0.0271678796102133,0.0291534985227658,0.0312306677114694,0.0333422852066849,0.035191738581569,0.037065060790431,0.03899961571617,0.0411003101517453,0.0429681389164102,0.0569755893575871,0.071425577398667,0.0848379811984664,0.0968254971351533,0.1088274434422593,0.1248212526613492,0.1380428082555742,0.149774942935768,0.1608905062613721,0.1717828324612392,0.1839246610068931,0.1955053499994579,0.2078400191698162,0.2180148790936681,0.2286555122015739,0.2389377585996517,0.2489220045130588,0.2581073777137195,0.2660341987161279,0.2732986935526421,0.2808435730251196,0.2883406128877387,0.2943391757460919,0.2997110900655741,0.3051341890315052,0.3102405922270204,0.3152256981420464,0.3191925624044829,0.3235553252137859,0.3278736125226021,0.3270129415408648,0.325842542006688,0.3245748742585835,0.3238724222148359,0.3233116245873851,0.3211857659092301,0.3185596883758491,0.3186769852614975,0.3192922472006154,0.3193920429146178,0.3206480925202764,0.3223289434597485,0.3229251914804322,0.3242493399561462,0.3258183394753956,0.32659616137877,0.3282959577203256,0.3310736244679174,0.3351627088830255,0.3367172260042199,0.3404730437952878,0.3422829496517625,0.3451966309923374,0.3475919605612438,0.354366669773511,0.3597510860631678,0.3649202733485193,0.3693820224719101,0.3726826608505997,0.3749529898458067,0.0,2.124482345733473,56.949424249198245,180.10820600119578,259.2241025748627,fqhc8_80Compliance_implementation,1 -100000,95724,44812,424.7524131879152,6028,62.01161673143621,4730,49.01592077222013,1907,19.681584555597343,77.34534288058313,79.71225131935714,63.32656324425341,65.07371685743905,77.11123990476007,79.47620474283092,63.240249962567056,64.98852379168268,0.2341029758230632,236.0465765262205,0.0863132816863512,85.19306575637131,164.62094,115.32616678180403,171974.57272993188,120477.79739856676,357.61151,232.02593311118983,373194.5698048556,241999.07349378403,364.60408,176.71395807735234,378025.4063766662,182455.7602352977,3410.84641,1554.6727842308348,3537685.972169989,1598596.8975709698,1119.62553,500.2122734087984,1158014.103046258,510931.5985633679,1876.94452,785.793835332952,1938366.324014876,801925.2983890012,0.38138,100000,0,748277,7817.026033178722,0,0.0,0,0.0,30374,316.89022606660814,0,0.0,33382,345.87982115248,1581388,0,56804,0,0,6479,0,0,69,0.7208223642973549,0,0.0,0,0.0,0,0.0,0.06028,0.1580575803660391,0.31635700066357,0.01907,0.3259247499603112,0.6740752500396888,24.54758024683427,4.377584314769897,0.3160676532769556,0.2395348837209302,0.2133192389006342,0.2310782241014799,11.054071087489753,5.629452484558907,20.287083381597,12232.168349101152,53.65802985125303,13.569862777634684,16.900355702687072,11.127428824426456,12.06038254650482,0.554122621564482,0.8005295675198588,0.6775919732441471,0.5718533201189296,0.1134492223238792,0.7243844320889595,0.9268867924528302,0.8923076923076924,0.6893203883495146,0.1213389121338912,0.4923653125900317,0.7249647390691114,0.6018099547511312,0.5417185554171855,0.1112412177985948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0042365151115885,0.0065236800454527,0.0083079423115986,0.0104842482051699,0.0131339150266241,0.0151473451372537,0.0172207874401559,0.0193609060985831,0.0216498961009714,0.0240094315444154,0.0258269236693743,0.0279569228870305,0.0300201920303292,0.032373915107483,0.0345059284451657,0.036610499497706,0.0385333859150252,0.040623017977271,0.0425693771427975,0.0576378807974684,0.0718053375196232,0.0852535045748342,0.0975717532194259,0.1097347373752295,0.1255291229258381,0.1375279992356606,0.1492917243582916,0.1606394802086005,0.171564631687331,0.1848260555717163,0.1962278859271128,0.2073925769561385,0.2175055279462311,0.227170118815588,0.2374307248947018,0.2473243083378904,0.2561062046464533,0.2645629965947786,0.2720389461626575,0.2790364010830074,0.2858395799469087,0.2920074327443159,0.2982985861490534,0.3037367282975777,0.3089304641475018,0.3133455988185084,0.3182967905942167,0.3230047799784966,0.3269141868420705,0.3257663584157882,0.3245205554943238,0.3236801603998701,0.3224414749612728,0.3220674464981992,0.3206824138935299,0.3182285650997579,0.3172971288963221,0.3182251745869528,0.3192235775977206,0.3198714835431688,0.3217255922115801,0.3232046509682546,0.3242886542591267,0.3249451635452069,0.3252367658952751,0.326057919117856,0.327854996243426,0.331807220494181,0.3340175258545828,0.3392467248908297,0.3409380305602716,0.3431421759317354,0.3457268856447688,0.3465903761373229,0.3465627214741318,0.3501673258290234,0.3552551946741981,0.3484224965706447,0.3497267759562841,0.0,1.581904104267861,55.90724789536894,178.04712632026445,259.21349761923415,fqhc8_80Compliance_implementation,2 -100000,95660,44469,421.1373614886055,6049,62.05310474597533,4730,48.82918670290613,1911,19.621576416475012,77.2498286400838,79.64708175615641,63.26585613190741,65.0382056631289,77.0080014962059,79.40599653401138,63.17615932967021,64.95123721466672,0.2418271438778987,241.08522214503125,0.0896968022371993,86.9684484621871,165.02552,115.61422984422842,172512.56533556347,120859.5336025804,357.53017,231.75188727855505,373147.9406230399,241664.2515302287,365.72232,177.1578102898461,378115.4191929752,182032.12136709076,3401.6972,1561.4530218308362,3514690.246707088,1591084.6840520592,1135.64378,506.4870509757696,1170573.761237717,512872.8109719525,1871.9438,786.8982144711,1923418.3148651472,794421.8862573431,0.37909,100000,0,750116,7841.480242525612,0,0.0,0,0.0,30486,318.05352289358143,0,0.0,33527,346.24712523520805,1574037,0,56543,0,0,6469,0,0,55,0.5749529583943133,0,0.0,1,0.0104536901526238,0,0.0,0.06049,0.1595663298952755,0.3159199867746735,0.01911,0.3338068181818182,0.6661931818181818,24.685559877600515,4.310666998139035,0.3162790697674418,0.2325581395348837,0.2251585623678647,0.2260042283298097,11.293192214069322,5.955025574398629,20.49119680776968,12236.253833584462,54.07438924937709,13.257040101717358,17.121705580289728,11.998347755676663,11.697295811693351,0.5653276955602538,0.7854545454545454,0.7072192513368984,0.5943661971830986,0.1113189897100093,0.7170693686671863,0.89,0.8478802992518704,0.7441860465116279,0.1428571428571428,0.5088482738613287,0.7257142857142858,0.6557077625570776,0.5464684014869888,0.1029585798816568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096559828194,0.0046041356090338,0.0069731326316216,0.0092867303393619,0.0114534487493769,0.0138512618906972,0.0160704817065709,0.0181548986572726,0.0204233994681939,0.0223164449360412,0.0246068948539895,0.0266258513184521,0.0288524860059269,0.0308589804374265,0.0329447960437336,0.0347923216945225,0.0367553340310663,0.0388924073631861,0.0407632444130009,0.0428231810314266,0.057205249299954,0.0711248874274823,0.0852740840251466,0.0977334427678515,0.1098482450030604,0.1249351776397252,0.1377552645831342,0.1488794876439935,0.1600967041430879,0.1699663762635757,0.1830736696732985,0.1957101650437007,0.2071661450893587,0.2177584750874653,0.2274854317499558,0.2371297798120292,0.2472857110877303,0.2564805414551607,0.2647075560816271,0.2724734592582379,0.279902917131178,0.2867732575214689,0.2928960319535912,0.2986306644526267,0.3042131954942215,0.3080329531679078,0.3139426820385301,0.3186017095327532,0.3223315610903844,0.3252119766825649,0.3233512695022037,0.3223704194626239,0.3208382234414106,0.3208316406476699,0.3204879649237928,0.3191335850910319,0.3171254065201872,0.3179520948226191,0.3185400959561343,0.3192878019042154,0.3199066844768874,0.3225070433712947,0.3226429756579085,0.3230167999281286,0.3251527814681514,0.3255310265643755,0.3260949995730995,0.3289552051659822,0.3328087294092959,0.3362786274665187,0.3383192820233886,0.3432883073026593,0.3448427121193132,0.3473349002957009,0.3495889387144992,0.3528372969154697,0.3560121765601217,0.3612012987012987,0.3513291312688408,0.3484333710834277,0.0,2.397169059537481,56.16146192633136,181.96108919199705,254.61245952126575,fqhc8_80Compliance_implementation,3 -100000,95749,44790,424.1819757908699,6117,62.69517175114101,4803,49.61931717302531,1864,19.07069525530293,77.32698317968122,79.6859342841016,63.31555014592704,65.06088652381746,77.0864352470797,79.4466644389899,63.2256253770984,64.9737440726996,0.2405479326015154,239.269845111707,0.0899247688286379,87.14245111785601,164.71466,115.30702584497516,172027.5512015791,120426.34998274148,357.50423,232.04208237164244,372815.4027718305,241784.18573996564,369.15947,179.0606623667004,382292.9743391576,184488.9426794775,3386.88409,1574.577383939942,3500013.6293851635,1607452.550821877,1159.43395,521.678647800555,1197109.7661594376,531130.8420455174,1815.59768,774.9066797777658,1859978.819622137,779620.9329406617,0.38173,100000,0,748703,7819.434145526325,0,0.0,0,0.0,30433,317.2774650387994,0,0.0,33883,350.5519639891801,1580503,0,56775,0,0,6593,0,0,69,0.720634158059092,0,0.0,0,0.0,0,0.0,0.06117,0.1602441516254944,0.3047245381723067,0.01864,0.3509071173825399,0.6490928826174601,24.25613149412929,4.244989960340647,0.3108473870497605,0.2550489277534874,0.2238184468040807,0.2102852383926712,11.47370346800122,6.133070081711183,20.02052319025217,12340.831165429836,54.92985514739484,14.723453441163551,16.873623678823925,12.137267164665056,11.19551086274232,0.5808869456589631,0.7812244897959184,0.6992632283991963,0.6111627906976744,0.1306930693069307,0.7229182019159912,0.8809523809523809,0.8724489795918368,0.748062015503876,0.1591836734693877,0.5249564712710388,0.7208387942332897,0.6376021798365122,0.5679314565483476,0.1215686274509803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0046135750643872,0.0069626291537259,0.0092957574772431,0.0114924993643529,0.0136347436484904,0.0158461475710731,0.0176796031276157,0.0200116513189497,0.0225281473899692,0.0247104642820539,0.0266999260901699,0.0286686402697257,0.0308188146134519,0.0326280933763835,0.0347909648887143,0.0366800563193639,0.0387100789345393,0.0405437708513048,0.0427956787615505,0.0576475378174947,0.0719972381181541,0.0851523348220838,0.0981509318924828,0.1106976842238408,0.1259661031285353,0.1380634213596351,0.1498823554462508,0.1610606983679097,0.1721210299784258,0.1851919718886757,0.1972099471449614,0.2081746359936448,0.2190368854701228,0.2294760714718219,0.2403276943883998,0.2501480331147284,0.2595780153428484,0.2675233777595982,0.2750272253109417,0.2821436430813421,0.2893321931848797,0.2951015956564004,0.3006350768935256,0.305850578488266,0.3105750246791707,0.3143909959140701,0.3193226990113138,0.3244487081426552,0.3279422249214438,0.3280496673579874,0.327065236843192,0.3261613898634654,0.3251337671728127,0.3236531798783661,0.3218766295512407,0.3198554468941687,0.3206477998784554,0.3217245680889967,0.3226588688395977,0.3234506897261684,0.3239425489460062,0.3268120657444531,0.3283999195153033,0.3304966584931968,0.3315947320380754,0.3319951026451411,0.3351346256558484,0.3376350119231309,0.3407316396496374,0.343289001861014,0.345460314102903,0.3484715610122776,0.3519092627599244,0.3509247151130207,0.3541176470588235,0.3580021318714786,0.3647367359289893,0.3629300776914539,0.3651903651903652,0.0,2.0577808376469826,59.63324437824206,183.5156785509628,250.7831836048182,fqhc8_80Compliance_implementation,4 -100000,95764,44421,420.99327513470615,6099,62.507831753059605,4813,49.72641075978447,1860,19.057265778371832,77.39144353273707,79.73097648650037,63.36142006586866,65.08750669801694,77.16099351805164,79.50115879496839,63.275386359046514,65.00398598878361,0.2304500146854309,229.8176915319772,0.0860337068221426,83.52070923332633,165.03256,115.5420708042566,172332.56756192306,120652.92887124242,357.82972,231.59495560440496,373147.9365941272,241333.88335588208,362.92952,175.38355895524856,375782.3085919552,180639.5727912262,3422.92084,1561.8717887212435,3538946.1697506374,1596136.71672483,1125.76421,499.7303287389162,1163525.416649263,509825.5369865458,1813.9156,761.7513766550774,1860648.281191262,767995.5096761575,0.3785,100000,0,750148,7833.298525541958,0,0.0,0,0.0,30480,317.72900045946284,0,0.0,33231,343.82440165406626,1585754,0,56910,0,0,6482,0,0,61,0.6369825821811954,0,0.0,0,0.0,0,0.0,0.06099,0.1611360634081902,0.3049680275454993,0.0186,0.3242310106716886,0.6757689893283113,24.357274752826157,4.332752163103111,0.3149802617909827,0.2426760856014959,0.2302098483274465,0.2121338042800748,11.45734064136142,6.098021948375954,19.72329921962714,12202.58007771892,54.53166611886876,13.975243675518426,17.11472501921299,12.382686693932426,11.059010730204914,0.5705381259089964,0.788527397260274,0.683377308707124,0.6046931407942239,0.1165523996082272,0.7398311588641596,0.928735632183908,0.8724489795918368,0.7237354085603113,0.1461187214611872,0.5076923076923077,0.7053206002728513,0.6174377224199288,0.5687426556991775,0.1084788029925187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021160699821804,0.0041347021089007,0.0064020616464763,0.0086937975442053,0.0108488983335197,0.013201286540184,0.0151823925005094,0.0173240557471381,0.0197059935232763,0.0219264140132602,0.0240676229508196,0.0260895436638214,0.0282775557176765,0.0304333954283008,0.032420006597394,0.0341913891413932,0.0361086675291073,0.0382692746468648,0.0400931383249654,0.0420017500729197,0.056772159826312,0.0707327536595829,0.0840825404152198,0.0972813798180575,0.1097450389084544,0.1248360898439152,0.1366379264632581,0.1482375972167548,0.1593100870401025,0.1699023401906028,0.1833125215294523,0.1950834387809177,0.2069381500440155,0.21708068427607,0.2269010090351513,0.2368607404456836,0.2464359360196177,0.2555968682250654,0.2637580621393999,0.2706354836495114,0.2773893043307405,0.2844336921332819,0.2915760098382366,0.2969878435834481,0.3023388407695854,0.3075266435304831,0.3119610048743907,0.3170238473767885,0.3217885190120709,0.3267277159233151,0.3255923342606405,0.3242300668671307,0.3235223838639398,0.321630853041636,0.3213100177830468,0.3199456762241924,0.3186353446370497,0.3186541640073969,0.3200183889257803,0.3213662428322114,0.3220789429357489,0.3235137323039864,0.3235595953672482,0.325385286420471,0.3247169356781498,0.324368080217255,0.3264788812622824,0.3294506532346922,0.3313524157817005,0.3350154970992609,0.3397113891679605,0.3413592440339544,0.3431174089068826,0.3478625314333612,0.3491201797079745,0.3558289396602226,0.357580283793876,0.3514263074484944,0.3546745245111171,0.3585046728971963,0.0,2.0150336051604865,57.185836194273705,179.70314553628717,261.5917923487098,fqhc8_80Compliance_implementation,5 -100000,95717,44579,421.9835556902118,6251,64.16832955483352,4866,50.126936698810034,1975,20.27852941483749,77.37264048070351,79.73057411294495,63.34029949113111,65.08127132234401,77.13129600027143,79.4880551118156,63.251897710210095,64.99427317100167,0.2413444804320761,242.51900112935232,0.0884017809210178,86.99815134234257,164.7492,115.39884378675744,172121.1488032429,120562.53725749602,357.85369,232.4444862882696,373177.7949580535,242157.9259100513,371.12651,179.9089410314842,381657.803733924,183537.06976763284,3490.34979,1596.376562129033,3603008.263944754,1624405.8396794077,1181.31304,521.1226544696566,1218398.6648139828,528667.0753049679,1931.78618,806.6611987966508,1985574.1195398937,818368.7000965215,0.37959,100000,0,748860,7823.688581965586,0,0.0,0,0.0,30524,318.17754421889526,0,0.0,33997,349.1856201092805,1580998,0,56705,0,0,6460,0,0,67,0.699980149816647,0,0.0,0,0.0,0,0.0,0.06251,0.1646776785479069,0.3159494480883059,0.01975,0.3402925937214264,0.6597074062785736,24.113901803339328,4.39845483102316,0.3166872174270448,0.2398273736128236,0.2219482120838471,0.2215371968762844,11.27337004286874,5.849085717901096,21.053992791924323,12307.60390420646,55.46683129100568,14.060978243537711,17.46027750413788,12.055646534057722,11.88992900927234,0.5581586518701191,0.7900599828620394,0.6859182349123946,0.5685185185185185,0.1141001855287569,0.7351837959489872,0.9328859060402684,0.8850855745721271,0.691358024691358,0.141025641025641,0.4913671101047268,0.7013888888888888,0.6139575971731449,0.5328554360812425,0.1066350710900474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0046618629209611,0.0068068616411536,0.0092013324666883,0.0114591912474961,0.013844493759798,0.0161970969583299,0.0182703397874924,0.0204438356724488,0.0225816357866721,0.024729584251807,0.0269501652943471,0.0290787944844889,0.0314311902040143,0.0335706179717321,0.0355323129075932,0.0375405066829556,0.0393303877030306,0.0411361817558227,0.0430036973389574,0.0569552188938889,0.0702492309623956,0.084013965631127,0.0963646491292604,0.1093530943320648,0.1247396851908622,0.1370529843464981,0.1486316819884235,0.1593170752541214,0.1694419128290355,0.1832012575907662,0.1956947374114338,0.2079926054806437,0.2184031233254229,0.2279383450870804,0.2387689307911325,0.2477200424178154,0.2563784988853109,0.2653262906798432,0.2729034551563593,0.2802000602033019,0.2870686829907767,0.2941866527632951,0.3005939881202376,0.3060182370820669,0.3106183011211564,0.3153940547444341,0.3195287351934552,0.324710634661695,0.3295916213792011,0.328802519312034,0.3280388354855123,0.3277850534409193,0.3266521192502782,0.3250531448364031,0.3235158907720126,0.3217106408572197,0.3219334395061323,0.3218531975504495,0.322196894144465,0.3238111241808099,0.3247725213692047,0.3255439330543933,0.3263977163756383,0.3279710388147011,0.3290235480437209,0.3292606871527384,0.332416895776056,0.3357272346953005,0.3362187684438323,0.3383683068017366,0.3423194840892272,0.3464512478782925,0.3473843821076573,0.3490152151591524,0.3533914272256241,0.3559038344491783,0.3563797621447289,0.3626673954632413,0.366030534351145,0.0,2.7616485974952463,58.09726267092049,184.99113799884225,259.86801345986834,fqhc8_80Compliance_implementation,6 -100000,95740,44369,420.1692082724044,5957,60.89408815542094,4726,48.74660538959683,1845,18.88447879674117,77.33281654085012,79.69916136189197,63.319784280511655,65.0708846597049,77.10399201515393,79.47144906681847,63.23469072082824,64.98866163895443,0.2288245256961829,227.712295073502,0.0850935596834148,82.22302075047594,166.49578,116.63667080224512,173903.8646333821,121826.2690768593,357.92375,231.82117838451828,373189.0432421141,241478.78666818063,360.47476,174.34134887283665,372511.5312304157,179003.15725649227,3365.27073,1530.237864690517,3473706.622101525,1557237.2210048006,1118.32594,494.112315315141,1152115.1242949655,500223.70702514384,1808.48914,759.8855734714896,1853457.5308126172,762437.382136997,0.37844,100000,0,756799,7904.721119699186,0,0.0,0,0.0,30567,318.59202005431376,0,0.0,33011,340.7979945686234,1574517,0,56478,0,0,6452,0,0,60,0.6266973052015876,0,0.0,1,0.0104449550866931,0,0.0,0.05957,0.1574093647605961,0.3097196575457445,0.01845,0.3331737673528004,0.6668262326471996,24.532007924142377,4.339182602643,0.3186627168853153,0.2329665679221328,0.228311468472281,0.2200592467202708,10.992238440826725,5.6401705743,19.63302317687676,12144.426866895226,53.32492541345346,13.110795349084745,16.967597381537498,11.956228967020706,11.290303715810508,0.5636902242911553,0.7811080835603996,0.701859229747676,0.5801668211306765,0.1163461538461538,0.73868149324861,0.9072681704260652,0.8769230769230769,0.7346153846153847,0.1666666666666666,0.500144216902221,0.7094017094017094,0.6406810035842294,0.5311355311355311,0.1036144578313253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002290022190923,0.0044627914760682,0.0068027210884353,0.008995639401917,0.0112928824319374,0.0133841264667535,0.015409090445548,0.0175293517100561,0.0196928488169976,0.0219637316840908,0.0238676208247042,0.0259577570362155,0.0280699589746753,0.030020288153572,0.0322520737897734,0.0344706405234162,0.0365679370339685,0.038635561735954,0.0406138873292157,0.042502656416026,0.0562254026912196,0.0701238649202828,0.0828501022387668,0.0954909113846865,0.1070284172358546,0.1224621436426698,0.1347679450195146,0.1467482703565726,0.1575360755369941,0.167808843559302,0.1814755792919286,0.1934283272204009,0.2044587026262846,0.2137679178648356,0.2234480179506357,0.2339888386925325,0.2440439658539307,0.2533003207472849,0.2611434603466476,0.2684965703619728,0.2757187832770035,0.2828660071416027,0.2904781084154663,0.2956616624298527,0.3015182272357081,0.3068429947817076,0.3111417298177491,0.3160440399669064,0.3211536966493042,0.324396782841823,0.3244321090781709,0.3236593928546843,0.322471070769144,0.3214755496451338,0.3216469083282512,0.3202597362819119,0.3175723806056384,0.3185174246898996,0.3188294514119956,0.3212063956079214,0.3222136990402065,0.3229331331014859,0.3242807825086306,0.3245457386490468,0.3271124561656338,0.3281840206319847,0.3265718925386741,0.3311961782638758,0.3353329123693258,0.3398705784270912,0.3425255972696245,0.3481009296148738,0.3478178845428248,0.3489464908291648,0.3539121514501538,0.3572184962936816,0.3595931997571341,0.3649869504115639,0.3571233251298878,0.3537933663743804,0.0,2.310021489263643,54.930443716617646,171.77898595403835,264.160403136177,fqhc8_80Compliance_implementation,7 -100000,95786,44573,421.6691374522373,6066,62.23247656233688,4734,48.91111435909214,1790,18.33253293800764,77.34910350822409,79.67699574091611,63.34642956891118,65.06660120549843,77.1276300258796,79.45752855177012,63.2637511676756,64.98695987793435,0.2214734823444928,219.4671891459876,0.0826784012355759,79.64132756407594,165.3487,115.86312484109902,172623.03468147747,120960.39592539518,356.85309,231.10016950679105,372041.9581149646,240758.74273013807,366.11262,177.03854922060944,379220.48107239057,182570.61680879424,3349.4188,1532.9204538828608,3462046.238489968,1565776.9508743072,1152.79892,507.271656306978,1190387.8019752365,516461.2744106412,1757.30096,740.8707948770569,1801522.8530265384,746916.1333749339,0.38061,100000,0,751585,7846.501576430794,0,0.0,0,0.0,30430,317.13402793727687,0,0.0,33503,346.71037521140875,1581613,0,56794,0,0,6540,0,0,65,0.678596036999144,0,0.0,0,0.0,0,0.0,0.06066,0.1593757389453771,0.2950873722387075,0.0179,0.3282261885957984,0.6717738114042016,24.515851872122827,4.289183255705678,0.3231939163498099,0.239332488381918,0.2230671736375158,0.2144064216307562,11.143239115600927,5.72317284955156,19.14994050544251,12303.394559681105,53.79033226347102,13.5986823694781,17.255236698014816,11.87278903257758,11.06362416340054,0.5726658217152514,0.8058252427184466,0.6862745098039216,0.5861742424242424,0.1270935960591133,0.7251552795031055,0.9330143540669856,0.830423940149626,0.7098039215686275,0.1401869158878504,0.5156703424260012,0.7314685314685314,0.6350752878653676,0.5468164794007491,0.1235955056179775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0044902137666102,0.0068072759736636,0.0091009740886329,0.0112762842152356,0.0134675678977157,0.0155119346093479,0.0177784128020901,0.0198021825315731,0.0219969102014507,0.0240956449580477,0.0262593508532493,0.028497728814256,0.0304555466353774,0.0326009629759462,0.0347459640352417,0.0368067052980132,0.0388535758355022,0.0407734909963736,0.0428824325731542,0.0577099682751711,0.0718416951669752,0.0851217747769471,0.0972613392744545,0.1095702754536449,0.1248665955176094,0.1379346892918843,0.149291820849815,0.1608831124485135,0.1709018061834465,0.1836438188099312,0.1967346056117208,0.2083097795364612,0.2187694763659424,0.2284233803095811,0.2387375415282392,0.2484153200607088,0.2575810386894388,0.2674040043105893,0.2749124373326008,0.2820945750598466,0.2888491186206735,0.2955806661539372,0.3007594451498526,0.3062959140307206,0.3105284567878407,0.3153902954906697,0.3204708876869233,0.3245519690039004,0.3284423782984231,0.3279209841941439,0.3267514871116986,0.3253098591549296,0.3240225884255983,0.3235136980202427,0.3216475300808782,0.3207067115472747,0.3214958784680684,0.3216233721960864,0.3226479345326178,0.323008766846739,0.3236490756833623,0.3238069334895495,0.3227538079581292,0.3230732177263969,0.3245881953689926,0.3256717014533307,0.3279376498800959,0.3314317909711951,0.3358036496932026,0.3391903610058874,0.3419947924969446,0.342704829599543,0.3463832390273742,0.3495127258964897,0.3528003829583532,0.3523588553750966,0.3497547015535568,0.3484764542936288,0.3525009846396219,0.0,1.9367421193388,56.784073493728734,176.78100238488443,257.2780333221144,fqhc8_80Compliance_implementation,8 -100000,95665,44774,424.2721998641091,5981,61.39131343751633,4654,48.04264882663461,1844,18.96200282234882,77.31532774038504,79.70794907543052,63.31028192710126,65.07669353994599,77.08483228677169,79.47762616228748,63.22517221987268,64.99387601799378,0.2304954536133578,230.3229131430413,0.0851097072285753,82.81752195220804,166.7633,116.76001100064428,174319.84529347203,122050.6883401916,358.73194,232.91651970932804,374383.80808028014,242867.1402386746,364.67943,176.01092938894968,377367.1039565149,181066.2270487773,3341.33792,1519.6075750861237,3455593.8953640307,1551312.9724414616,1108.74948,490.80758355981146,1144854.2413630898,498924.24068776495,1810.21608,761.7160662797902,1863534.249725605,770724.2691250214,0.381,100000,0,758015,7923.629331521454,0,0.0,0,0.0,30553,318.74771337479746,0,0.0,33330,344.51471279987453,1571595,0,56343,0,0,6696,0,0,71,0.7421732085924841,0,0.0,1,0.0104531437829927,0,0.0,0.05981,0.1569816272965879,0.3083096472161846,0.01844,0.3376934120274366,0.6623065879725634,24.400522576297124,4.350874384373292,0.319295229909755,0.2363558229480017,0.2191663085517834,0.2251826385904598,11.045332644479682,5.6393998915299415,19.684019422287363,12258.344966464729,52.81528714260197,13.145343885034798,16.848360683823017,11.250094083216942,11.57148849052722,0.5623119896862914,0.7890909090909091,0.6944818304172274,0.5843137254901961,0.1154580152671755,0.7219950940310711,0.9205128205128204,0.8277634961439588,0.7847533632286996,0.1221719457013574,0.5053920139900904,0.7169014084507043,0.6472196900638104,0.5282308657465495,0.1136638452237001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0045722743770149,0.0071951937323672,0.0093166439761851,0.0115865071614583,0.0136389101094983,0.0157888295051201,0.0178642561666922,0.0201053331288029,0.0221598705634177,0.0245010563452505,0.0268410185822436,0.0287016367134054,0.0306443136972045,0.0325041288191577,0.0346992387886811,0.0366582740148995,0.0390663110151636,0.0409831802531803,0.0428674163861298,0.0571180809494953,0.0713328447283007,0.0843286245041036,0.0973841491645271,0.1093499366821443,0.125281820587457,0.1378274210844844,0.1493588104976141,0.1612961834834931,0.1716732670079526,0.1843597094389239,0.1962860700557631,0.2079002079002079,0.2185831217718638,0.2283234766136936,0.2380931254020719,0.2478080707672031,0.2572476816422076,0.2656108083560399,0.2731075583061143,0.2793210055231986,0.2870602279909178,0.2926837930626257,0.2986526856306463,0.3037493317781989,0.3097562178017698,0.3150002503379562,0.318299788809445,0.3228795899613,0.3265397713772803,0.3254814814814815,0.3239079858482124,0.3232963103734673,0.3225452074991689,0.3214397124140287,0.3190987847062785,0.3170855145581932,0.3179027002243364,0.3182779198635976,0.3189115985673301,0.3204766618726535,0.3221645926597906,0.3233723535694092,0.3237580414581844,0.3250072122319454,0.3244910709637111,0.3266837899543379,0.3286382011116726,0.333909607310447,0.3363817891373802,0.3385855624770978,0.3424686750199947,0.3441044161439524,0.3460798645841348,0.3487442922374429,0.352793396339275,0.3521234341582646,0.3531300160513643,0.3502762430939226,0.3551223241590214,0.0,2.354895220067821,53.39855628561939,180.5451685764544,251.1374054575356,fqhc8_80Compliance_implementation,9 -100000,95614,44476,420.5241910180517,6129,62.73139916748593,4818,49.67891731336415,1906,19.390465831363606,77.3146043072854,79.73357135864876,63.296484254502126,65.08300333398606,77.07043914185029,79.49678703118093,63.20405770806428,64.99714137423291,0.2441651654351204,236.78432746783076,0.0924265464378422,85.86195975314581,165.66616,116.03384328056352,173265.58872131695,121356.5411765678,359.25678,232.93056101225787,375035.49689376034,242917.21890385635,372.67172,180.69519808381588,385974.9932018324,185983.89947485548,3462.49352,1604.864969121245,3570021.2730353298,1627641.6029889514,1153.28997,519.6265570287145,1185924.2893300145,523254.0980174326,1869.06786,798.8511280614528,1904365.1348128936,791362.2229034337,0.37909,100000,0,753028,7875.70857824168,0,0.0,0,0.0,30621,319.5347961595582,0,0.0,34151,353.5047168824649,1573414,0,56460,0,0,6537,0,0,60,0.6170644466291547,0,0.0,1,0.0104587194343924,0,0.0,0.06129,0.1616766467065868,0.3109805841083374,0.01906,0.3330745341614907,0.6669254658385093,24.55051327101604,4.327962111656517,0.3198422581984226,0.2337069323370693,0.2233291822332918,0.2231216272312162,11.32980993500333,6.041423177975838,20.431229300744548,12293.058744867509,54.96339481978489,13.62540573469414,17.452106466282718,12.003287358366435,11.88259526044158,0.5709838107098381,0.7992895204262878,0.7008436080467229,0.6003717472118959,0.1162790697674418,0.7286135693215339,0.9127358490566038,0.8561151079136691,0.7709090909090909,0.1333333333333333,0.5092432120161756,0.7307692307692307,0.6432384341637011,0.5418227215980025,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190023608563,0.0048371885489448,0.0072887481219799,0.0095107453132144,0.0120646158854166,0.014259523324506,0.0163707020532226,0.0185105730922464,0.0205275592967239,0.0228773898884804,0.0249230769230769,0.0268621146596267,0.0289908747672396,0.0310655002936539,0.0334444708238281,0.0354868061874431,0.0376230442441197,0.0397857053864363,0.0415574145752694,0.0436392461174212,0.0581078114710401,0.0716253732125085,0.0851588918527231,0.0982408859786716,0.1110559819270113,0.1263979496738117,0.1389110225763612,0.1506608399062033,0.1621017268311471,0.1724793708096957,0.1853918035263396,0.1977452574525745,0.2094847877255688,0.2196084017224188,0.2291257854701797,0.2396164006482118,0.2497065891689487,0.2583560594108499,0.2666143915632529,0.2740370276904724,0.2804567352232722,0.2873208121233397,0.2936329410650439,0.298865734634661,0.3034697173947365,0.3085377724657146,0.3135125667746737,0.3170129969224508,0.3211253752976498,0.3251619542701832,0.324369091545692,0.3224106860357943,0.3210429880197322,0.3207951158820636,0.3199654638561391,0.3179056852698432,0.3162444680614818,0.3172097005219052,0.3189409787715628,0.3191082004759604,0.320570936200502,0.3220071741101344,0.3231266958881235,0.3251539216561078,0.3260286439622551,0.3281849279568777,0.3297992969724458,0.332251217380447,0.3344384728135688,0.3390586748795704,0.3426763110307414,0.3454267004647233,0.3450406709124156,0.3489555639954425,0.3507455687892713,0.3529832935560859,0.3591254458055512,0.3603843008994276,0.3634868421052631,0.3712179984484096,0.0,2.769021731273926,58.955347947255184,178.43298840496186,258.04865174528624,fqhc8_80Compliance_implementation,10 -100000,95622,44441,419.7465018510385,6131,62.66340381920479,4862,50.0198699044153,1956,19.953567170734768,77.29129418892526,79.69307663835029,63.29829466637945,65.07063351164358,77.04486738690797,79.45210716768787,63.20562268536187,64.98375612359358,0.2464268020172966,240.9694706624208,0.0926719810175811,86.87738804999867,166.01486,116.30735981021913,173615.7578799858,121632.42748553588,360.31628,234.0622580459726,375949.1330446969,243916.94261984623,369.66075,179.73273983004074,381554.1716341428,184090.4565688337,3443.92825,1590.9607309612052,3545887.7350400533,1608370.548978897,1167.96938,517.2353824761861,1203161.657359185,522724.3412362728,1902.23786,808.4222406655617,1942128.7151492331,804178.4635077406,0.37978,100000,0,754613,7891.625358181172,0,0.0,0,0.0,30799,321.20223379557007,0,0.0,33961,350.1600050197653,1570128,0,56348,0,0,6640,0,0,52,0.5438079103135262,0,0.0,0,0.0,0,0.0,0.06131,0.1614355679603981,0.3190344152666775,0.01956,0.328715953307393,0.671284046692607,24.38601876420313,4.363575278060362,0.3243521184697655,0.2354997943233237,0.2250102838338132,0.2151378033730974,11.313020005596348,6.0193125101313925,21.09933913741117,12299.69701615756,55.72828731696619,13.91349752230918,18.029558557894187,12.228887611275152,11.556343625487663,0.5726038667215138,0.8017467248908297,0.7070386810399493,0.5712979890310786,0.1204588910133843,0.7276688453159041,0.911504424778761,0.8454545454545455,0.7215686274509804,0.1478260869565217,0.5113342898134864,0.7301587301587301,0.6534740545294635,0.5256257449344458,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025222086038714,0.0047450065902869,0.0069526912497589,0.0094705822579006,0.0116696680198191,0.0137597392677089,0.0161510696005057,0.0187066668028141,0.0211436809226333,0.0234577381866584,0.025607629986668,0.0274639497144735,0.0295769721410641,0.0318615075480447,0.0340673294310756,0.0361176616606677,0.038190090267486,0.0401308275360814,0.0420377923915757,0.0441024678614994,0.0586507812091759,0.072762698903217,0.0864127524178559,0.098648335684359,0.111358574610245,0.1268431582178658,0.1394294571668206,0.1514370326181903,0.1624826258954346,0.1727847625591857,0.1855969119296127,0.1976804626080176,0.2093592841747763,0.2192136295452803,0.2298739088263821,0.2400869574862188,0.2492430421326659,0.2579228820714889,0.266020255234116,0.2742617484272405,0.2808372211481691,0.2873992253957853,0.2933728161089725,0.2992286560861794,0.3042473203314151,0.3087636121194163,0.3130797773654916,0.3173467956808302,0.3218650268545185,0.3258305263853114,0.3243017362234444,0.3229607375659771,0.320625555759432,0.3194896969170395,0.3191552735829386,0.31735450873178,0.3163257209058736,0.3170683491754938,0.3179698216735254,0.3182225407633041,0.3187125157457369,0.3199714240355612,0.3221736204576043,0.3231138422894052,0.3239287433798748,0.3249328219978607,0.3267853081646577,0.3302867552372876,0.3321265377855887,0.3332140158294555,0.3376138433515482,0.3410787063991954,0.3440080690915968,0.3484117872177573,0.3518063173822583,0.3581713462922966,0.3581532721902689,0.3632771886046995,0.366825708672467,0.3677494199535963,0.0,3.2048565825959128,59.502789320560446,181.83124200871924,259.6662811219459,fqhc8_80Compliance_implementation,11 -100000,95640,44790,423.19113341698034,6136,63.03847762442493,4826,49.96863237139272,1864,19.165621079046424,77.27514686010801,79.68672276185454,63.27600815666828,65.05689005300135,77.04238229891195,79.4535509920496,63.19082067696895,64.97339537635405,0.2327645611960633,233.17176980494023,0.0851874796993357,83.49467664730525,165.51084,115.92096979153838,173056.0853199498,121205.5309405462,358.27351,231.65951075623627,374083.1451275617,241698.99639778488,370.85828,179.0690162724034,384557.7582601422,184819.3085593019,3424.72395,1564.1917774189878,3546446.9364282726,1601222.8661964694,1150.3083,510.80777307333807,1189768.4127979924,521151.91190766345,1835.93142,763.8038671214775,1889122.8147218735,773479.6941092493,0.3819,100000,0,752322,7866.185696361355,0,0.0,0,0.0,30585,319.2492680886658,0,0.0,33897,351.24424926808865,1572724,0,56515,0,0,6464,0,0,61,0.6378084483479716,0,0.0,0,0.0,0,0.0,0.06136,0.1606703325477873,0.3037809647979139,0.01864,0.3305926155755507,0.6694073844244492,24.89463752666689,4.238158314320406,0.3253211769581434,0.2387070037297969,0.214048901782014,0.2219229175300456,11.306786939176112,5.901164935753047,19.877259505231624,12396.368496892625,54.98358691151949,13.84521971748672,17.80232569546652,11.607954780447615,11.728086718118618,0.5712805636137588,0.7786458333333334,0.7038216560509554,0.6030977734753146,0.1232492997198879,0.7370398196844478,0.911904761904762,0.8764845605700713,0.7265917602996255,0.1569506726457399,0.5081545064377683,0.7021857923497268,0.6405570060922542,0.5600522193211488,0.1143867924528301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047535550307612,0.0070924864288975,0.0094565769426104,0.0116152523927216,0.0137893107381456,0.015999102663458,0.0182948617165725,0.0205698629016592,0.0230484108781127,0.0253146379740083,0.0277783485032154,0.0299497921725173,0.0322314645886803,0.0342933261738313,0.0362899054476237,0.0382881248769162,0.0403884100114238,0.0420508231180669,0.0441225545405247,0.0584546566193915,0.0725512385263422,0.0857704105214504,0.0987200421385304,0.1107824911272604,0.1268150093729149,0.139256378377804,0.1509844261333958,0.1615920547094896,0.1723448616813189,0.1855062450746494,0.198225942874493,0.2103915071718184,0.2203168685927306,0.2308702320398097,0.2411039537983118,0.2497286531123767,0.258368023826446,0.2672841472850575,0.2748461467805639,0.2819037899522197,0.2887120030948501,0.2956901254773595,0.3024445298242244,0.3078859366449809,0.3124568157141447,0.317153280096278,0.3219080371927143,0.3264636029745759,0.3310939483707152,0.329937251197625,0.3282417491521685,0.3280013541534425,0.3268059874177453,0.3261286438435581,0.3237822349570201,0.3218181530326298,0.3215581941502028,0.3222951658282889,0.3218136774377528,0.3220570871675693,0.3233819057773565,0.3241409636283686,0.3249888243182834,0.3260660545166098,0.3275161491977495,0.3281081081081081,0.3313222724987431,0.3352761490116218,0.3374885862876652,0.3396200690783494,0.3437533227006911,0.3499591169255928,0.3508678844841961,0.3529079083796776,0.3570916905444126,0.3618886496462626,0.3624489795918367,0.367590027700831,0.3715277777777778,0.0,1.7295742841821962,59.101191336661216,181.65691463457117,258.1177583830841,fqhc8_80Compliance_implementation,12 -100000,95690,44993,425.7289162921936,6067,62.4307660152576,4710,48.6989236074825,1930,19.866234716271293,77.28391542799022,79.68044115010812,63.28504443165552,65.0590362200264,77.04385729084485,79.43931908238775,63.19700292493443,64.97243964053659,0.2400581371453682,241.1220677203687,0.0880415067210904,86.59657948980737,165.34012,115.89493201118692,172787.2504963946,121114.98799371607,363.03457,235.488011923464,378884.46023617935,245593.0420351803,371.15287,179.56770064098538,384219.981189257,184888.83249554076,3404.21309,1546.9301305491178,3526446.023617933,1585508.6639660548,1129.93923,496.4970453284671,1169218.7375901348,507245.5066657611,1901.39504,791.8846681155592,1959721.8727139723,805992.943477528,0.38162,100000,0,751546,7853.9659316543,0,0.0,0,0.0,30935,322.7505486466716,0,0.0,33894,350.5068450203783,1571647,0,56469,0,0,6566,0,0,66,0.689727244226147,0,0.0,1,0.0104504127913052,0,0.0,0.06067,0.1589801373093653,0.3181143893192681,0.0193,0.3300252047889099,0.6699747952110902,24.49240052346645,4.34705163627007,0.3276008492569002,0.2225053078556263,0.2140127388535032,0.2358811040339702,11.133204703353528,5.811141468841432,20.551612169904395,12302.308681028464,53.76910761769326,12.727534866593295,17.48649628919914,11.336611231555391,12.218465230345432,0.5560509554140127,0.7948473282442748,0.6973428386260532,0.5803571428571429,0.1125112511251125,0.7222653219550039,0.9106280193236715,0.8914141414141414,0.7336065573770492,0.0936170212765957,0.4934229757380883,0.7192429022082019,0.6303400174367916,0.5314136125654451,0.117579908675799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002036845625342,0.0045845504706264,0.0067311694772429,0.0091462485137346,0.0114567117405858,0.013711188982153,0.0158396654597378,0.018313110266781,0.0205676297622091,0.022854391608105,0.0249194657036748,0.027187538531092,0.0294399110937323,0.031535988127628,0.0336619354838709,0.0356995118722594,0.0378103369668835,0.0399738420976146,0.0418456609700537,0.0436160123396316,0.0586944940616088,0.0718286414221254,0.0857811499753381,0.0989404126813767,0.1109387367421244,0.1264315502021634,0.1388225301268779,0.1509243088980704,0.1620460423658166,0.1725995642888571,0.1852582341783066,0.1976992319941072,0.2088586921016528,0.2190271785550031,0.228923761874325,0.2399245241134358,0.2487618919855563,0.2571760224493706,0.2653128480192732,0.272855536947395,0.2798015164514109,0.2865819341525185,0.2927072334468317,0.2990356786876583,0.3042964802707671,0.3101915860161959,0.3148189931809065,0.3194141992995861,0.3232839070924927,0.3268877948338899,0.325801366263794,0.3248097328690769,0.3246630708783393,0.323171348111777,0.3220596109227199,0.3192376688489903,0.317698512050961,0.3183578367025466,0.3185501795178663,0.3196125042449373,0.320655848546315,0.3217544834153309,0.3228382963478114,0.3243218928523233,0.3260131859608299,0.3265798233428564,0.3269071487733128,0.3311346062805744,0.3338484231228489,0.3356975868764116,0.3372802623189725,0.3409573338993844,0.3427068328427382,0.34645195274287,0.3462433665394283,0.3498525073746312,0.3529142508391821,0.355708781180288,0.3570229434806939,0.3608762490392006,0.0,2.075101735430066,56.961772756549095,176.4546352429483,255.9791127513138,fqhc8_80Compliance_implementation,13 -100000,95665,44616,422.7774003031411,6084,62.46798724716458,4740,49.0566037735849,1797,18.376626770501225,77.35161970545354,79.75810245050323,63.31721993396855,65.09451343521857,77.1203361985528,79.53004200780674,63.23076949811224,65.0123258564662,0.2312835069007377,228.0604426964885,0.0864504358563138,82.18757875236804,166.4894,116.52068735374613,174033.3037160926,121800.3724911714,359.63089,232.97945037320557,375429.8959912194,243041.15566786303,367.25282,177.99726288228896,382039.78466523805,184487.4647536394,3336.70408,1533.6049212158357,3451454.366800816,1566877.4866813803,1114.47074,494.7427924808762,1151281.252286625,503470.7181109876,1756.11598,744.560327671635,1797119.8243871846,744307.199273765,0.38025,100000,0,756770,7910.604714367845,0,0.0,0,0.0,30741,320.81743584383,0,0.0,33633,349.647206397324,1573156,0,56397,0,0,6531,0,0,56,0.5853760518475931,0,0.0,0,0.0,0,0.0,0.06084,0.16,0.2953648915187377,0.01797,0.3250546704154952,0.6749453295845048,24.445449420219397,4.3353174049378,0.3265822784810127,0.2411392405063291,0.220675105485232,0.2116033755274261,11.44810821607624,5.937195813657364,19.22226701610601,12252.865974527793,53.98041277473629,13.660323909312613,17.62514873291834,11.734726266120148,10.960213866385184,0.5774261603375528,0.7944006999125109,0.7138242894056848,0.5783938814531548,0.1186440677966101,0.7419601837672282,0.9142857142857144,0.8629807692307693,0.7234848484848485,0.1699029126213592,0.5148514851485149,0.7247579529737206,0.6590106007067138,0.5294117647058824,0.1053952321204517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681644562871,0.0042488465243624,0.0065967077354009,0.0086869056327724,0.0112705856025389,0.0136891423915257,0.0157854484270636,0.0179412035004237,0.020040899795501,0.0221653180374884,0.0240576974372653,0.0261629998047537,0.0281871320956654,0.0302799113356358,0.0325789424755451,0.0348045605975955,0.0367426048382081,0.0386703624113696,0.040794032273167,0.0427211395084514,0.0582045414171813,0.0721548014198506,0.085598824393828,0.0980617055307685,0.1101635883905013,0.1257660594642082,0.1381096978319495,0.1492139621636024,0.1604240887548009,0.170967430172997,0.1834131297446515,0.1956493478355072,0.2064794957489195,0.2172865993826214,0.2274163886044027,0.2377383592017738,0.2467793655936805,0.2556798991240909,0.2646684831970936,0.2721483466767458,0.2796135601064445,0.2858044680328731,0.2924408908654358,0.298592730103599,0.3038755173627547,0.3091544787511695,0.3136140499893826,0.3174482241946338,0.3220231714090128,0.3268539843390143,0.3256229671245396,0.3246546373348713,0.3233329113746009,0.3231119829227485,0.3217469995697776,0.3207134778222725,0.3188559154729377,0.3193616045094055,0.3202845154027223,0.3205057331882947,0.3220973782771535,0.3222904046881474,0.3244663038928422,0.3248099516240497,0.3253225458984609,0.3272746130111235,0.3280851063829787,0.331475101785155,0.3333216954123315,0.3373360720492969,0.3404486743711761,0.343517060367454,0.3470507544581618,0.3495842781557067,0.3528257823446987,0.3569644343999048,0.3634135130994331,0.3677744209466264,0.3702196908055329,0.367370007535795,0.0,1.9022887169599847,57.614889386798254,179.9465371101472,251.99048587492925,fqhc8_80Compliance_implementation,14 -100000,95794,44810,423.5233939495167,6043,61.93498548969664,4774,49.29327515293234,1914,19.63588533728626,77.3507064425629,79.6794363444086,63.34838135415546,65.07026104566515,77.10996894891268,79.43784266255994,63.25891672271296,64.98222137302899,0.2407374936502151,241.5936818486557,0.089464631442496,88.03967263615675,166.02014,116.32589499076116,173309.53921957532,121433.38308324234,359.43121,233.187748664306,374682.9864083346,242896.58920632396,371.67511,180.00359661630242,384085.1932271333,184911.82169597823,3410.58747,1560.2545394987224,3525572.436687058,1593997.4627833911,1128.6762,501.7269258879834,1165177.568532476,510701.0103847669,1877.86606,795.2423828587958,1928812.034156628,804602.2750803095,0.38038,100000,0,754637,7877.706328162516,0,0.0,0,0.0,30568,318.5376954715327,0,0.0,33992,351.0031943545525,1576139,0,56558,0,0,6514,0,0,68,0.6994175000521954,0,0.0,1,0.0104390671649581,0,0.0,0.06043,0.1588674483411325,0.3167301009432401,0.01914,0.3281986796604841,0.6718013203395159,24.33743622051013,4.384834071752016,0.3190196899874319,0.2385839966485127,0.219941348973607,0.2224549643904482,11.116920062575131,5.709794792136883,20.589593033441155,12274.302204842865,54.31578968643539,13.538163326815424,17.349287653971913,11.7244285605904,11.703910145057646,0.5800167574361123,0.797190517998244,0.7071569271175312,0.6266666666666667,0.1186440677966101,0.7282868525896414,0.9393139841688656,0.86,0.7449392712550608,0.131004366812227,0.5271383915885195,0.7263157894736842,0.6527159394479074,0.5902864259028643,0.1152460984393757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339856569831,0.0043390105433901,0.006646574730839,0.0092942467089224,0.0117028631852936,0.0140389098720311,0.016295707472178,0.0185833392862609,0.0207649938175092,0.0228100695865738,0.0248683320695944,0.0271398961603973,0.0293404312169855,0.0314584534299596,0.0335227214139143,0.0354335182487784,0.0374666307969289,0.0394132586948634,0.0415805597383041,0.0435049657498594,0.058347245409015,0.0722366274936221,0.085503144654088,0.0983365383604972,0.1110654441985456,0.126823235953156,0.1394034503599868,0.1504793930171432,0.1610871514582177,0.1714591929692942,0.1837978062668862,0.1961801614838354,0.2071000130395097,0.2180801083845027,0.2277810153166129,0.2380372849477236,0.2467263264646554,0.2558949414156846,0.2649675320995909,0.2724099653250632,0.2793596155845356,0.2863465962838824,0.2924357625134505,0.2980149893446352,0.3030604567628571,0.3087835092169587,0.3135921601959951,0.3174679874365789,0.3225000647148663,0.325970054829186,0.3252958579881657,0.3237693080065472,0.3229850409893793,0.3221248409117204,0.321068593345821,0.3196530374547907,0.3175068540910604,0.3185041378062223,0.3186798137496576,0.3199763868267115,0.3205996313433397,0.3214505224339274,0.3228046547842007,0.3250146271209325,0.327557915057915,0.3289170506912442,0.32840313010577,0.3333016717325228,0.3371111817250997,0.3406217698974318,0.3429708586852097,0.3455870532125824,0.3453369682368604,0.3458403813624481,0.3470194933609568,0.3530182164543398,0.354424504950495,0.3655115511551155,0.3653954010095345,0.3634600465477114,0.0,2.0581985662549465,55.01117109611069,187.30099580778207,257.2936888768909,fqhc8_80Compliance_implementation,15 -100000,95719,44261,418.7465393495544,5995,61.2939959673628,4698,48.328962901827225,1904,19.41098423510484,77.31652017658898,79.67502152087165,63.31665033110207,65.06165662937018,77.0688225167113,79.43051732107388,63.22441686643321,64.97292739679371,0.2476976598776872,244.50419979777396,0.0922334646688582,88.72923257646903,167.18086,117.06145699547214,174657.73775321516,122296.7613488149,357.65424,232.12888539007383,372917.6443548303,241778.21058522747,361.22678,176.46356128957746,371356.25111002,179827.720332902,3376.64122,1568.9925386192504,3484239.3882092373,1595744.229065545,1117.89631,502.5153733351085,1152933.04359636,510061.1914741156,1863.18838,798.1317203109394,1904510.1390528523,801778.6318812392,0.37804,100000,0,759913,7938.988079691598,0,0.0,0,0.0,30551,318.4111827327908,0,0.0,33100,339.8384855671288,1568868,0,56368,0,0,6721,0,0,54,0.5641513179201622,0,0.0,1,0.0104472466281511,0,0.0,0.05995,0.1585811025288329,0.3175979983319433,0.01904,0.3368454661558109,0.663154533844189,24.15311833721847,4.399617404758072,0.3192848020434227,0.2294593444018731,0.2281822051936994,0.2230736483610046,11.373909073659954,5.929652544945589,20.74042666180528,12174.811035480212,53.877049869157226,13.056599980229391,17.09180893195984,11.99073323343324,11.73790772353476,0.5644955300127714,0.7968460111317254,0.7053333333333334,0.5764925373134329,0.1116412213740458,0.7261001517450683,0.9308641975308642,0.8349056603773585,0.7751004016064257,0.1375,0.5014792899408284,0.7161961367013373,0.654275092936803,0.5164034021871203,0.1039603960396039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.004349104327815,0.0065364120781527,0.0088602578822764,0.011322021484375,0.0135049803434298,0.0155528132744536,0.0181877597704318,0.0205417122524309,0.0226670079344765,0.0245570502829956,0.0266559878425694,0.0285972832066798,0.0306958831888296,0.0328426872414824,0.0349234886292014,0.0370485388652526,0.0388884278660636,0.0407380457380457,0.0427666534702977,0.0569418053496481,0.0706033779117222,0.0840683369865025,0.0969030969030969,0.1085031000885739,0.1238815441565309,0.1363240972546357,0.1478248837135041,0.1595162806597726,0.1700529940569418,0.1825721671693235,0.1951348836202698,0.2063093335073239,0.2157836041197437,0.2262130151461782,0.2359160783357531,0.2455221547257459,0.254537475666978,0.2627868964108152,0.2704721747997754,0.277214545286207,0.2844322237173112,0.2901109571684014,0.2963491739751173,0.3024559270516717,0.3076429426501623,0.3120747766598589,0.3161823717499586,0.3205493651204975,0.324368238200288,0.3231505187980056,0.3218810748211159,0.321010326463151,0.3201542073683295,0.3187878968460885,0.3171660117878193,0.3158662691112098,0.3165488955872906,0.3165394838377776,0.317197840629876,0.3178860259544856,0.3188198905543659,0.3219362435865085,0.3225748529873861,0.3230631891331098,0.3241571860974846,0.3265737461441791,0.3307762442229698,0.3341518170338151,0.3379896027620143,0.3405447258152669,0.3441409785444285,0.3456953642384106,0.349156919337688,0.3496148788277287,0.3533547848885711,0.3614605707272169,0.3632332191090506,0.367032967032967,0.3593570608495982,0.0,2.88833594155343,57.10216532025503,181.50763793280387,245.8797491610122,fqhc8_80Compliance_implementation,16 -100000,95682,44481,421.66760728245646,6168,63.25118622102381,4821,49.84218557304404,1926,19.784285445538345,77.40264542862671,79.78293968547524,63.35728834693722,65.1120846150571,77.16423401555738,79.54385421391486,63.27010645636005,65.02632671410598,0.2384114130693291,239.0854715603865,0.0871818905771633,85.75790095112268,167.05788,116.9023867105249,174596.97748792876,122178.03422851204,358.27516,232.16175506181511,373908.1540937689,242103.4207706937,367.55599,177.97647817768015,380152.0871219247,182926.68503778207,3457.93489,1568.3293644087312,3578956.1673041955,1604075.2852247355,1156.21705,508.5685444617827,1193959.3026901612,517088.6420564248,1887.79606,780.0690698771989,1941270.7928345976,790001.4959702299,0.37931,100000,0,759354,7936.226249451307,0,0.0,0,0.0,30645,319.71530695428606,0,0.0,33639,347.7352062038837,1573916,0,56425,0,0,6715,0,0,62,0.6270771932024832,0,0.0,1,0.0104512865533747,0,0.0,0.06168,0.1626110569191426,0.3122568093385214,0.01926,0.3334881560613098,0.6665118439386902,24.726427096521405,4.326943098162644,0.3171541174030284,0.2437253681808753,0.2113669363202655,0.2277535780958307,11.309656371123808,5.843816514423471,20.271008900150715,12234.864066140355,54.4773289111894,14.02660686319075,17.345716456862903,11.235799705698811,11.869205885436925,0.5538270068450529,0.7702127659574468,0.7024198822759974,0.563297350343474,0.1065573770491803,0.7260596546310832,0.9116945107398567,0.8557213930348259,0.6926229508196722,0.1435406698564593,0.4919650408796165,0.6917989417989417,0.64773735581189,0.5225806451612903,0.0978627671541057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0046418762098776,0.0067255021302495,0.0088053380457633,0.011114387691807,0.0133189418161823,0.0157819078980904,0.0178197813861871,0.0201522661080169,0.022053706660117,0.0245187478218085,0.0265173291721419,0.028613730066522,0.0306079362300332,0.0327067126142671,0.0346235336675107,0.0364364924051812,0.0386116011206807,0.0404039353537034,0.0423345492443981,0.0569118430536839,0.0703830125855967,0.0841273505708529,0.0970799234216228,0.109268868919546,0.1246733460997259,0.1378073498668194,0.1490999286756017,0.1601714023145724,0.1701002734731084,0.1829519142749448,0.1958810861119228,0.2068054286832833,0.2164662147386835,0.2269617440658204,0.2371232164008103,0.2466252744925371,0.2553690973626275,0.2639256993997055,0.2714987995884303,0.2782960055414454,0.2856226080462989,0.2914354530213228,0.2969727415168586,0.3025604344979754,0.3079667794524761,0.3133912391426607,0.3183941902391956,0.3227844013588746,0.3257665482300302,0.3251970301150629,0.3243758311967862,0.3238653905526397,0.3230937540485684,0.3220108092100392,0.320718987187123,0.3186299292214358,0.3192839226872572,0.3202410746207672,0.3209353644646925,0.3211221800646692,0.322068884170795,0.3230913446515988,0.3243748747522879,0.3275092401478424,0.3291495234623197,0.331196215877358,0.3337203099996862,0.3366913545578995,0.3422733584606229,0.3458749486933917,0.350534188034188,0.3513103883801705,0.3517756439567139,0.3560878621473206,0.3553113553113553,0.3552995391705069,0.3613682092555332,0.3665207877461707,0.3662878787878788,0.0,2.0947165186257117,55.80477588534793,182.43382875630493,262.7479933378768,fqhc8_80Compliance_implementation,17 -100000,95716,44677,422.8133227464583,6124,62.56007355092148,4867,50.14835555184087,1928,19.68322955409754,77.33907921770925,79.70807423852803,63.32552877917672,65.0763598701727,77.09048925697554,79.46344023777228,63.2312506438254,64.98692336450793,0.2485899607337103,244.6340007557524,0.0942781353513169,89.43650566476435,165.98406,116.24732805972867,173413.07618371013,121450.25707272415,360.89172,233.99178735303587,376361.747252288,243782.102629692,369.50169,179.40992421856723,382059.5720673659,184269.18576655936,3472.62418,1601.715506682974,3577972.501985039,1623554.785412202,1152.68445,519.3092057543146,1185506.5715240922,523851.255401255,1892.98516,813.3924249921076,1933891.4497053784,810899.2778049086,0.38024,100000,0,754473,7882.412553805007,0,0.0,0,0.0,30799,321.04350369844127,0,0.0,33729,348.3848050482678,1574737,0,56448,0,0,6362,0,0,75,0.7835680554975135,0,0.0,0,0.0,0,0.0,0.06124,0.1610561750473385,0.3148269105160026,0.01928,0.3312052320149486,0.6687947679850513,24.186660673552566,4.297109409312601,0.3184713375796178,0.2327922745017464,0.2262173823710704,0.2225190055475652,10.908161555115871,5.500318941283238,20.778140823179857,12258.743436783929,55.34338320357437,13.603806280919692,17.584942584513364,12.226052910440275,11.928581427701037,0.5549619889048695,0.7802294792586054,0.6845161290322581,0.5794732061762035,0.1089566020313942,0.7119883040935673,0.9053117782909932,0.851508120649652,0.7022900763358778,0.128099173553719,0.4935695913118034,0.7028571428571428,0.6201966041108132,0.5411203814064363,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497002106627,0.0048464938962566,0.0071049399632573,0.0093683953828645,0.011342481918151,0.0137693631669535,0.0157140672003263,0.0179685346455808,0.0201742366919568,0.0222556791413179,0.0247882181609336,0.0268996117581808,0.0291679522781034,0.0310014424067587,0.033062543224914,0.0348493309342102,0.0369422660547607,0.0388551028456381,0.0409833508386976,0.0430710244735937,0.0574525405676336,0.0717507089267215,0.085428769163014,0.0981447982836229,0.1100564256710436,0.1259626777251185,0.1384447250310354,0.1493371665868072,0.1608900573920292,0.1709842891483516,0.1834906880496637,0.1956349851069591,0.2071761274595159,0.2179547519236452,0.2279911446917714,0.2387917364353119,0.2484976431427741,0.2570167636760749,0.265123302602298,0.2720936364365879,0.2794211287988422,0.2863912941727123,0.2930932494143813,0.2989878421273282,0.3042702466498349,0.3083910833199985,0.3129568770539943,0.3178734756097561,0.3223292186389194,0.3267382851117116,0.3265662812584028,0.3241377413499092,0.3238017390814155,0.3225409776774735,0.3218824788548154,0.3202530288409992,0.3186056451740569,0.3190153805705271,0.3184946752046023,0.3196090365543661,0.3197605689302535,0.320640132932426,0.3209886887306242,0.3212790255043776,0.3233853541416566,0.3244600572469425,0.3246041934103552,0.3287787677486383,0.3310151036178433,0.3338906138046333,0.3377229080932785,0.3411846392138012,0.3427900482355928,0.3454461821527139,0.3511887980452965,0.3551880057115659,0.3596899224806201,0.3606221858370855,0.3661186960156032,0.36639753940792,0.0,2.700796017306213,59.56493874248591,174.65972065111688,266.4074614438575,fqhc8_80Compliance_implementation,18 -100000,95668,44491,421.3530125015679,5970,60.91901158172011,4703,48.37563239536731,1828,18.55374837981352,77.30793472821749,79.68338210411412,63.31631099018998,65.06976408870207,77.0787191096007,79.46079840343063,63.22922619711805,64.98849361812809,0.2292156186167915,222.5837006834865,0.0870847930719307,81.27047057398329,166.53846,116.68510667911684,174079.5877409374,121968.79487301588,360.86709,234.32552771711968,376423.45402851526,244152.88470661183,368.21463,178.62991686715708,379977.934105448,182843.2806841378,3308.62807,1534.6859551210514,3403782.7904837565,1550084.6113854875,1100.29534,506.4237390192324,1122031.7556549734,501693.3215011769,1785.79752,767.6157508279234,1815275.619851988,759149.2389415184,0.37908,100000,0,756993,7912.708533678972,0,0.0,0,0.0,30792,321.03733745871136,0,0.0,33679,347.27390559016595,1569378,0,56372,0,0,6725,0,0,73,0.7421499351925408,0,0.0,0,0.0,0,0.0,0.0597,0.1574865463754352,0.3061976549413735,0.01828,0.3361681643132221,0.663831835686778,24.29978739224881,4.274009445764453,0.3300021263023602,0.242185838826281,0.2158196895598554,0.2119923453115033,11.244325525051456,5.9046401250718255,19.817981518358643,12165.899145068845,53.91906698159973,13.708251951646782,17.70117072301755,11.453077267932455,11.05656703900294,0.5715500744205826,0.7945566286215979,0.6875,0.5802955665024631,0.1273821464393179,0.7306525037936267,0.9203747072599532,0.8317307692307693,0.7019607843137254,0.2045454545454545,0.5096011816838996,0.7191011235955056,0.6346830985915493,0.5394736842105263,0.1055341055341055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401109693619,0.0048437436666531,0.0073139309589263,0.0094966279353213,0.0115633390285574,0.0136450653741191,0.0157334991995595,0.0178764675855028,0.0199349812917867,0.0221719503331934,0.0241624636076598,0.0262528362714196,0.0282817063638981,0.0305658861222429,0.0324950725953749,0.0347365809279629,0.0368351794096009,0.0387873754152823,0.0409137721187154,0.0428251237946312,0.0575780050349416,0.0720461396750963,0.0850880782264748,0.0980099293167283,0.1102359714050737,0.125117661367939,0.1371791743148468,0.1491291572627006,0.159791005545405,0.1695633515717197,0.1829021348096766,0.1942743383896306,0.2057828862235078,0.2161509021323127,0.2254472636049556,0.2353788373973832,0.2451648903521009,0.2539239623299616,0.2621628062689379,0.2696216018054966,0.277211672070403,0.2838623626727194,0.2903859815297182,0.2959314672393727,0.3012907071518071,0.3068710581207341,0.3115267922068153,0.3167189452477494,0.3202274172821558,0.3238397461324871,0.3222874098051116,0.3214418688031772,0.3215228469389195,0.3203633150323767,0.3192592482233578,0.3182431810511459,0.317012803630075,0.3170028818443804,0.3173871310548147,0.3181940146324884,0.3186870962896199,0.3199952458301969,0.3193162751677852,0.3195484519950821,0.320948141017928,0.3221557199236821,0.323959729629524,0.3272075020454402,0.3305144467935165,0.3327777777777778,0.3355395289392003,0.3372853421234515,0.3410437413336695,0.3421032563105315,0.3435294117647058,0.3500413760491784,0.3524441762220881,0.3485908454927043,0.3474279558308645,0.3472535741158766,0.0,3.010498778938593,57.01366104234404,182.625615382472,244.71478988179527,fqhc8_80Compliance_implementation,19 -100000,95707,44793,425.2562508489452,6183,63.33914969646944,4813,49.714231978852126,1874,19.183549792596157,77.38171245272493,79.75490027974513,63.34258245905804,65.09483303150172,77.15147433580846,79.52688186819222,63.25706117531493,65.01255547241651,0.2302381169164675,228.0184115529096,0.0855212837431125,82.27755908521317,166.11958,116.27572521270744,173570.98226879956,121491.34881744016,357.52656,231.2600493825995,373003.1972582988,241072.91983094183,371.19929,179.5782493948439,384209.1696532124,184809.310700879,3414.14552,1559.1955519943947,3529767.018086452,1591612.0576283804,1146.25692,507.7265944202143,1183543.6801905816,516371.6597743264,1838.50368,769.403171750843,1884753.2364403857,773736.9152167459,0.38146,100000,0,755089,7889.590103127253,0,0.0,0,0.0,30495,318.05406083149614,0,0.0,33928,350.83118267211387,1577581,0,56608,0,0,6547,0,0,66,0.6896047311063978,0,0.0,0,0.0,0,0.0,0.06183,0.1620877680490746,0.3030891153161895,0.01874,0.3262279888785913,0.6737720111214087,24.47488934674097,4.2875670434201645,0.3207978391855391,0.2432993974651984,0.213795969249948,0.2221067940993143,11.250366878334129,5.9310884382061335,19.92171740918942,12344.638565606469,54.65968071025811,13.960016688195452,17.629802380650894,11.36248825560964,11.707373385802136,0.5638894660295034,0.7822374039282665,0.7130829015544041,0.5529640427599611,0.1197380729653882,0.7484894259818731,0.9002320185614849,0.91725768321513,0.728,0.15,0.4938377758670106,0.7135135135135136,0.6360392506690455,0.496790757381258,0.1118963486454652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.004338614684386,0.0065856232495839,0.0086849643459358,0.0107614378420163,0.0129837067209775,0.0151720621972979,0.0175078606721385,0.0195557282029788,0.0218855563517248,0.0238458936058968,0.0260469605034855,0.0280440148087206,0.0302334205484249,0.0322593960908959,0.0341807880398258,0.0361758979245204,0.0383521842897167,0.0401863715783343,0.0419350132349569,0.0568755025952189,0.0716394472361809,0.0854912494229235,0.0978981253550464,0.109656663678076,0.1253912859560067,0.138463007565067,0.150155968870104,0.161231051906293,0.1714218294147932,0.1852885402749644,0.1969473912102186,0.2085898244621843,0.2185819231273776,0.2285711143130547,0.2388522339813134,0.2473515177197404,0.2572925803477048,0.2664511738686628,0.2743791433380277,0.282349402468793,0.2891377536706256,0.2960854850543156,0.3022453332055306,0.3079109081635131,0.3129265948796294,0.3170188820807803,0.3221645550297664,0.3266547591312676,0.3303007528710626,0.3297700685760387,0.3289882146094887,0.3276124022283495,0.3261787727213757,0.325434673143568,0.3236308161708619,0.3209685566359389,0.321764446116354,0.3224396796517658,0.3231198762292604,0.3253525072369035,0.3272576799542848,0.3277277652746519,0.3274625935162095,0.329765581974475,0.3328755765144841,0.3338623289029954,0.3362370425877357,0.3383157381275913,0.3420419116776511,0.3444358962755125,0.3471979679314176,0.3501324586855052,0.3538931297709923,0.3560022543678376,0.3564732407737035,0.3556811240073305,0.3544072948328267,0.3509841973939562,0.3551004636785162,0.0,2.282015830338184,58.080375264971856,177.08053118155513,261.8487741906918,fqhc8_80Compliance_implementation,20 -100000,95853,44425,419.10008033134073,6067,62.04291988774478,4798,49.42985613387166,1862,19.00827308482781,77.44506122741345,79.72379793196062,63.40474875222951,65.08460871395317,77.21507369721431,79.49618154256909,63.32014197972148,65.00352138376786,0.2299875301991392,227.61638939152817,0.0846067725080317,81.08733018531211,165.99374,116.15947272392566,173175.09102479837,121184.80583379304,357.23685,231.37078360063435,372100.9671058809,240790.75334169436,366.28592,177.63760475460376,378206.68106371217,182227.52410264412,3402.7993,1552.059409575444,3508068.813704318,1577361.9661590897,1108.74621,490.96609412757874,1140482.1132358925,496183.76045367145,1821.95566,760.8762291887933,1862224.8860233896,761887.4436814676,0.37957,100000,0,754517,7871.595046581745,0,0.0,0,0.0,30539,317.96605218407353,0,0.0,33533,345.9046665206097,1580406,0,56830,0,0,6554,0,0,59,0.6155258573023276,0,0.0,0,0.0,0,0.0,0.06067,0.1598387649181969,0.3069062139442888,0.01862,0.3427230046948357,0.6572769953051644,24.548392368923924,4.268656164273014,0.3276365152146728,0.2363484785327219,0.2236348478532722,0.212380158399333,11.074664366174312,5.73115881768843,19.74278553723281,12249.780662144753,54.243132733172914,13.686340488498242,17.476509941724473,12.04793989454238,11.03234240840781,0.5619007919966653,0.7760141093474426,0.6800254452926209,0.5964585274930102,0.1050049067713444,0.7492401215805471,0.9295454545454546,0.8411910669975186,0.7904411764705882,0.1144278606965174,0.4910970706490523,0.6786743515850144,0.6244653550042771,0.5305867665418227,0.1026894865525672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048217668331324,0.0068746641250012,0.008891234623036,0.011197593838275,0.013582118403516,0.0156237268801434,0.0177633658621146,0.0199328084632744,0.022361963190184,0.0245645651795496,0.0266855373002687,0.0289834233716081,0.0310031270572745,0.0333508484530028,0.0356011106638177,0.0375407208232069,0.0394599131633213,0.0415381900104857,0.0434538303053006,0.05812365092441,0.0720867548423494,0.0849562340327511,0.0979348989485613,0.1100473435034192,0.1261728108410465,0.1382377231433835,0.1495776892430279,0.1606512629682152,0.1716248608851981,0.183681145092308,0.1953615927789414,0.2071705363248559,0.2176096235086072,0.2269078289899955,0.2368974137740315,0.2466095367574133,0.2554097476574613,0.2634770583968081,0.2709842010730915,0.2782145251913339,0.2845217635298657,0.2905000177437098,0.2970844504021447,0.3025276365445521,0.3073380940655011,0.3131187963901718,0.3187087251396506,0.3235724554155388,0.3277540360873694,0.3270322632726098,0.3257548699068605,0.3243691339290732,0.3239020878329733,0.322900017758835,0.3205323657651614,0.3181302580584176,0.3189025883889932,0.3197755483761265,0.3207115087607179,0.3207920422522068,0.3223962952014977,0.3236485921965076,0.3231245545260157,0.3229847885974368,0.3240298817181988,0.3259429153924567,0.3316762029828346,0.3347494515443814,0.3358229598893499,0.3386149433137549,0.3396447186469524,0.34112385032128,0.3477326785851301,0.3525732158089281,0.3553936208338311,0.356469315195548,0.3609846917666529,0.3639910813823857,0.3741176470588235,0.0,2.4336534457585204,57.46205593327666,174.79301585227844,261.1506673605664,fqhc8_80Compliance_implementation,21 -100000,95680,44688,423.6517558528428,6225,63.87959866220735,4854,50.10451505016722,1960,20.087792642140467,77.29747507811412,79.70076623303072,63.28577397120039,65.06580693278464,77.05885873017215,79.4645783938762,63.198230750230366,64.98163302125474,0.2386163479419707,236.18783915452468,0.0875432209700264,84.17391152990206,165.97108,116.26767918027744,173464.7575250836,121517.22322353414,362.40678,234.51090737137253,378076.212374582,244406.20293147312,366.26288,176.92563218360763,378903.741638796,181859.6170105587,3490.46556,1580.0765995769227,3608399.5714882943,1611808.7888285222,1160.56286,508.9025342790127,1196944.1680602003,516016.97177183256,1917.65358,791.0668728839603,1968305.3720735784,796971.4319962362,0.38123,100000,0,754414,7884.761705685618,0,0.0,0,0.0,30787,321.1015886287625,0,0.0,33641,347.66931438127085,1572184,0,56411,0,0,6653,0,0,66,0.6793478260869564,0,0.0,0,0.0,0,0.0,0.06225,0.1632872544133462,0.314859437751004,0.0196,0.3262040313894445,0.6737959686105555,24.561795439281248,4.335728074024695,0.3341573959620931,0.223114956736712,0.215286361763494,0.2274412855377008,11.22455513154948,5.88001619572952,20.58748512039711,12323.335169050402,54.89452122116783,13.097067971698412,18.16512274293214,11.622172172221632,12.010158334315644,0.557684384013185,0.8024007386888273,0.688039457459926,0.5732057416267943,0.1114130434782608,0.727130570758405,0.9307875894988068,0.8743961352657005,0.6926605504587156,0.1184210526315789,0.4970629370629371,0.7213855421686747,0.6241721854304636,0.5417170495767836,0.1095890410958904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0045138254924634,0.0065891669627899,0.0090031500863733,0.0112813313802083,0.0136181221862331,0.0159214230345559,0.0177283960703417,0.0199024310420651,0.0220581458459206,0.0240530089339747,0.0264842152844125,0.0288371518811534,0.0309344214995259,0.0328019493257893,0.0349920872164585,0.0368355047003099,0.0387926111289937,0.0406778955691264,0.0425933259686933,0.0573058120586637,0.0716536339750232,0.0851731374606505,0.0977646873192026,0.1104313245640868,0.1256942754673465,0.1385887447725391,0.1505505740026836,0.1625092219359115,0.1737697526623153,0.1872115591977571,0.199182806420497,0.2109865934807941,0.2212910929267036,0.2303554698263984,0.2406509656878515,0.2504274937133277,0.2586004911347917,0.2669136195259414,0.2746646795827123,0.2811717808473162,0.2875401232398491,0.2941490054849371,0.3000156045565305,0.3058066399834548,0.3107576112845701,0.3155869709616373,0.3196756839448255,0.3236721873215306,0.3278504277459704,0.3266217729855197,0.3257354158618025,0.3245415760178566,0.3237722729248153,0.3237853031722661,0.322046363399574,0.3189270454185789,0.3188510345279863,0.3198439203925845,0.3200804785983904,0.3211132473447445,0.3220038596353038,0.3221142797451164,0.3233943931898204,0.3256929126306703,0.3266393016730749,0.3267563187672362,0.330508208556989,0.3345603702145561,0.3384377355496489,0.3389104171415546,0.3414401019541206,0.3442416614222782,0.3454296993622836,0.3488284558200809,0.3516678495386799,0.3558461538461538,0.357856123904626,0.3571823204419889,0.351508120649652,0.0,2.395900412646212,56.001035730888354,181.99823237263837,267.0101046819203,fqhc8_80Compliance_implementation,22 -100000,95825,44595,421.4140360031307,6137,62.90633968171145,4786,49.30863553352465,1858,19.04513435950952,77.32864418348662,79.63922680744065,63.32870225298407,65.03838439636183,77.09991512973242,79.4116746471435,63.2433182759358,64.95582443845596,0.2287290537541935,227.5521602971509,0.0853839770482665,82.55995790587178,165.10516,115.68498650867332,172298.6277067571,120725.26638004,358.6057,231.5690266960724,373599.0816592747,241028.3521527524,366.52348,177.22003632948335,378311.20271327946,181765.5523645542,3385.96091,1535.683429842674,3493648.8390294807,1562857.1825722675,1109.31281,490.5799746415836,1141185.577876337,495606.4672513704,1807.28894,759.7733398014003,1853481.262718497,763431.8608966167,0.38042,100000,0,750478,7831.755804852595,0,0.0,0,0.0,30469,317.3075919645186,0,0.0,33521,345.5778763370728,1580084,0,56775,0,0,6814,0,0,66,0.6887555439603443,0,0.0,0,0.0,0,0.0,0.06137,0.1613216970716576,0.3027537884960078,0.01858,0.3256103249883377,0.6743896750116622,24.874747603384375,4.22624048607458,0.3274132887588801,0.2331801086502298,0.2306727956539908,0.2087338069368993,10.99917397523371,5.810682821256735,19.82165194793817,12265.528454857227,53.981794522353255,13.324514067039344,17.658920091900796,12.189224565805867,10.809135797607231,0.5651901379022148,0.7948028673835126,0.6809189534141672,0.582427536231884,0.1081081081081081,0.7286158631415242,0.9292682926829268,0.8341584158415841,0.7286821705426356,0.1448598130841121,0.5051428571428571,0.71671388101983,0.6276870163370594,0.5378250591016549,0.0980891719745223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026231832683445,0.0048858614118314,0.0070308933191295,0.0093551925889809,0.011653447223917,0.0137751985339034,0.0157680154928141,0.0178901282823231,0.0201626913565107,0.0223279611153747,0.0247343668350461,0.0266412158903153,0.0288676957227714,0.0309759110562075,0.0329363237947924,0.0348026404140367,0.0369423719693285,0.0389101427638331,0.0408616893099007,0.043068276436303,0.0571658027305249,0.0709894613583138,0.0844373637430823,0.0968979214392299,0.1092137579188143,0.1256329214278918,0.1378930067334711,0.1488338440585631,0.1607953271327431,0.171898115392037,0.1844797140149883,0.1960990069019234,0.2067956942481243,0.2170011367611052,0.2265130761021443,0.2366651527068493,0.2458963307054961,0.2549231548724877,0.2636761115212083,0.2715198366728985,0.2787292016928517,0.286040975243635,0.2933005662998184,0.2991073037690284,0.3039154830150558,0.3090440169305379,0.3144622557559502,0.3192576825522261,0.3236583973427444,0.3275073375816388,0.3267413488629164,0.326174755675631,0.3249901124357308,0.324282794311642,0.3231591961984776,0.3204139921992567,0.3184537505752416,0.3192779997040982,0.320843011340347,0.3218845852057921,0.3232236188906165,0.3240519336798214,0.3253148140400786,0.325110505871322,0.3262295475841522,0.3274858380974756,0.3296318441957803,0.3327894059685568,0.3361165455561766,0.3410247308010886,0.3439242170149118,0.3442692348396656,0.3457333165765992,0.347849298352654,0.3493647058823529,0.3502501786990707,0.3506690997566909,0.3497168284789644,0.357532751091703,0.3549382716049383,0.0,2.43520058684619,56.2217490533493,168.9363342481672,271.1981449618052,fqhc8_80Compliance_implementation,23 -100000,95731,44608,422.8201940855105,6019,61.69370423373829,4714,48.50048573607296,1898,19.34587542175471,77.35098256499538,79.69703881745104,63.33757887846742,65.06994056131751,77.11472042923346,79.46640664205718,63.25048232917965,64.98826707207395,0.236262135761919,230.6321753938647,0.0870965492877644,81.67348924355622,167.6455,117.48498184584582,175121.4340182386,122724.07250090963,362.02826,233.9552110017496,377427.6462170039,243646.6798639237,367.04296,176.99381410343378,379040.38399264606,181521.01292046884,3410.10459,1549.3322629780344,3510171.783434833,1566836.775876989,1128.99295,494.46455475516416,1160829.428293865,498026.2745466874,1869.4534,776.5563686590285,1906920.934702448,771689.4549489092,0.37977,100000,0,762025,7960.065182647209,0,0.0,0,0.0,30875,321.72441528867347,0,0.0,33587,346.43950235555883,1566705,0,56250,0,0,6751,0,0,62,0.6476480972725659,0,0.0,0,0.0,0,0.0,0.06019,0.1584906654027437,0.3153347732181425,0.01898,0.3271546261089987,0.6728453738910013,24.45999676176988,4.322120068055051,0.316079762409843,0.2316504030547305,0.2189223589308443,0.2333474756045821,11.038119563378247,5.6074532393188585,20.11049957809267,12273.625932226472,53.755027589633706,13.242845835892332,17.080898356309007,11.45477328192026,11.976510115512104,0.5644887568943572,0.8058608058608059,0.7167785234899329,0.5755813953488372,0.1081818181818181,0.7261345852895149,0.915841584158416,0.8842364532019704,0.7012448132780082,0.13215859030837,0.5043655413271245,0.7412790697674418,0.6540590405904059,0.5372945638432364,0.1019473081328751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0044090370055036,0.006524408186458,0.0086942390509466,0.010950574981444,0.0131933910883529,0.0154534612287336,0.0176357123174428,0.0197365058923333,0.0222292726360928,0.024468499497714,0.0264319441593102,0.0287050840487328,0.0307689139232424,0.0325781959230832,0.0343148908021622,0.0364172922599016,0.0384775029055288,0.0402574313014004,0.0421949720262963,0.0571470330312774,0.0715802688706387,0.0850372234455279,0.0979876779443615,0.1105184373089329,0.1260887949260042,0.1376468841471174,0.1493790505379433,0.1602183387455135,0.1707926633058028,0.1838491118842702,0.1966255046050282,0.2084357529747014,0.2185120350109409,0.2276855001155764,0.2377759553151875,0.2473675395008654,0.2560941314105088,0.2645613716568135,0.2727439450729571,0.2801083170356312,0.2863963489555907,0.293885951527625,0.3004059539918809,0.3055049879851452,0.3109470186450064,0.3154578864471611,0.3198637363196095,0.3242228465631757,0.3272832873529839,0.3268414313632994,0.3254887912148477,0.324535913784348,0.3240629478957045,0.3230609057782405,0.3206132617861249,0.3189060642092747,0.3184636894481454,0.3202599846061746,0.3213080206454378,0.3216159496327387,0.3221001896333755,0.3243141361256544,0.3252290502793296,0.3260097008116026,0.3276833211640763,0.3284677763551002,0.3312260174875763,0.3345822536592198,0.3354079124712598,0.3380685698675044,0.3392154778356543,0.3442715878314543,0.3460339189291961,0.348466372760529,0.3534093608933238,0.3558035022470169,0.3574329813160032,0.3583862945565073,0.354479046520569,0.0,2.8054061380239808,55.547696854898135,179.87162614866145,253.77620089691925,fqhc8_80Compliance_implementation,24 -100000,95835,44603,421.9126623884802,6112,62.586737621954406,4802,49.43914018886628,1907,19.450096520060523,77.51248185563044,79.79799866172296,63.42745123530996,65.11078363705562,77.28356311680257,79.57222313151318,63.34330235282509,65.03031640151696,0.2289187388278719,225.77553020977348,0.0841488824848752,80.46723553866286,166.6269,116.61539822451287,173868.52402566912,121683.51669485352,361.58524,234.12655165846596,376612.0310951114,243613.973661466,367.00857,177.9098143199414,378517.8379506443,182288.54396176455,3436.78989,1554.1168784013637,3540804.6747013093,1576310.4798887286,1156.87285,511.3090018383245,1189505.274690875,515896.6850725332,1873.81218,775.1698114277953,1913460.0511295456,776173.5045726954,0.38119,100000,0,757395,7903.114728439506,0,0.0,0,0.0,30791,320.571816142328,0,0.0,33649,346.720926592581,1579256,0,56621,0,0,6507,0,0,75,0.7721604841654929,0,0.0,0,0.0,0,0.0,0.06112,0.160339987932527,0.3120091623036649,0.01907,0.3281811085089773,0.6718188914910226,24.500663680528216,4.28323551619656,0.324448146605581,0.2346938775510204,0.2113702623906705,0.229487713452728,11.289194251541508,5.949525696505226,20.045732925854686,12266.408993488338,53.96746477856259,13.295056304219898,17.49590072398048,11.269085233873426,11.90742251648878,0.5705955851728447,0.7994676131322094,0.7034659820282413,0.6118226600985222,0.1107078039927404,0.7464342313787639,0.9375,0.8690176322418136,0.7603305785123967,0.1704035874439461,0.507909604519774,0.7235213204951857,0.6468561584840654,0.5653298835705045,0.0955631399317406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023374415639609,0.0044155923071469,0.0065478060795264,0.0089090927540055,0.0112354984863568,0.0135157123970304,0.0157194925780375,0.0178760809267417,0.0202179040772773,0.0223847019122609,0.0243612718242793,0.026530884328626,0.0286263267675677,0.0304530391289134,0.0326182204307172,0.0350554648928918,0.0369404606692742,0.0387745580840806,0.0406893399538777,0.0426426801590771,0.0570475048234864,0.0711948054663892,0.0844571584252826,0.0972912224684641,0.1096147163811349,0.1254053254750362,0.1379047215303905,0.1498686854724664,0.160930947274066,0.1710984268411527,0.1838398176226423,0.1965761192417778,0.2082813127639478,0.2191881032449666,0.2278603358704845,0.2385148657165286,0.2478919990643483,0.2571088450653609,0.2660756139814532,0.2732051238101767,0.2809083360243576,0.2872849672136875,0.294086439838721,0.2999164378655843,0.3055283313368906,0.3101348198718106,0.3147970438315532,0.3195244546294772,0.3233933426977152,0.3271312540184488,0.325724084344774,0.3242048502764548,0.3231176322347605,0.3217166271296097,0.3207117732257397,0.3190363650224899,0.3173465521596362,0.3177779595843901,0.3193451773194473,0.3212162210275216,0.3222406995646406,0.3225850956895362,0.3227005911721083,0.3235962060827358,0.3251896740945746,0.3259330094076295,0.3268627617190811,0.3290029835902536,0.3323747488046566,0.3341660486357781,0.3356580829756795,0.3384944218538213,0.3404294820224023,0.3440876350540216,0.3454897978026036,0.3470335539301056,0.3495058400718778,0.3529179810725552,0.3547863710113575,0.3557223264540338,0.0,2.5141604571045137,54.80993750160324,179.6363896915918,261.83277983040443,fqhc8_80Compliance_implementation,25 -100000,95738,44633,422.9459566734212,6131,62.85905283168648,4858,50.16816728989534,1918,19.626480603313208,77.31288813594676,79.67100920058327,63.318020272784125,65.06172248623743,77.07149042839826,79.43192173864047,63.22877106204034,64.97623668084957,0.2413977075485007,239.08746194280184,0.0892492107437874,85.48580538786155,165.2486,115.71062310568364,172605.02621738496,120861.7509303345,355.26704,229.611094668967,370495.4459044475,239245.7842276441,370.50799,178.9694259117665,383562.67103971256,184303.66023169752,3439.55266,1581.2677770588732,3549641.970795296,1608650.0228392372,1168.35566,526.4964654655408,1199595.3330965762,529286.3448202312,1870.6637,791.191335351013,1914471.453341411,791580.6676503224,0.37992,100000,0,751130,7845.683009881134,0,0.0,0,0.0,30314,316.00827257724205,0,0.0,33931,350.95782239027346,1581698,0,56838,0,0,6454,0,0,45,0.4700327978441162,0,0.0,0,0.0,0,0.0,0.06131,0.161376079174563,0.3128364051541347,0.01918,0.3292226038089291,0.6707773961910709,24.4063708338503,4.240570049262669,0.3198847262247838,0.2412515438452037,0.2256072457801564,0.2132564841498559,11.065896933438983,5.795009513534313,20.55993689404253,12266.866234666526,55.374937949398735,14.144522727392935,17.50601257606087,12.15924451269336,11.565158133251584,0.5617538081515027,0.7807167235494881,0.6904761904761905,0.5638686131386861,0.1187258687258687,0.7381845461365342,0.9027777777777778,0.8861985472154964,0.7083333333333334,0.1830357142857142,0.4950354609929078,0.7094594594594594,0.6196319018404908,0.5180288461538461,0.1009852216748768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0047740196028745,0.0069197130652705,0.0090907244139275,0.0111268192959794,0.0134419551934826,0.0156520852452329,0.0179171218262192,0.0199869139386999,0.0223118747504121,0.0244332571182495,0.0266570827129434,0.0285911161848343,0.0306841357147271,0.0326118355893034,0.0345608069700383,0.0366450944861506,0.0386195733377604,0.0404625479654336,0.042541442220532,0.0568890095319628,0.0704621791585137,0.0843671675912623,0.0970496078060269,0.1093876862406023,0.1245861408760591,0.1373770387427443,0.1490888188708166,0.160146986561839,0.1708899445594243,0.1836123822341857,0.1957346945396736,0.2078068935522453,0.2184051361135719,0.2276663402396487,0.2377070063694267,0.2470477933790209,0.2564134299473423,0.2646754869115894,0.2727126879354602,0.2797332345313079,0.2872631578947368,0.2936464742072882,0.2996811774858567,0.305362523082904,0.3097817379623125,0.3154401082110115,0.3202397312566804,0.3249387897866387,0.3285331149013753,0.3272376636862618,0.3264181612805466,0.3262645502645502,0.3249352040890201,0.3233335815893349,0.3209590219327886,0.3190042733006084,0.3193307754376142,0.3198937628512679,0.3211584644610918,0.3226164079822616,0.32322310606812,0.3234281154185392,0.3245700465782873,0.3261608973585816,0.3267953344840211,0.3271910498154454,0.3294951284322409,0.3313912429378531,0.3336263736263736,0.3339892911079584,0.3361156892976766,0.3351110553394403,0.3394817073170731,0.3430567355801001,0.3442875785976984,0.3455780212995832,0.3502548419979612,0.3532850779510022,0.3531202435312024,0.0,2.1547796757620925,58.5813500022029,184.5605177536505,259.90555633492687,fqhc8_80Compliance_implementation,26 -100000,95781,44619,420.9289942681742,6127,62.69510654513943,4776,49.26864409434021,1862,19.085204790094068,77.37208356525132,79.71214199676241,63.35007434272507,65.08004561683647,77.13926626654876,79.4806402907384,63.262192465135215,64.99551438137482,0.2328172987025567,231.5017060240052,0.0878818775898579,84.53123546165386,166.8821,116.82372345466716,174232.30076946368,121969.01157923104,359.62264,233.87106572773715,374860.1497165408,243571.49765122,371.34508,179.85212368155658,384327.6954719621,185221.5641521498,3368.3666,1554.3063605407046,3475635.6062267045,1581836.885129803,1131.65907,504.8254490011352,1166658.8571846192,512493.3660274409,1820.65892,771.3597101156925,1866547.4363391488,773814.3532313744,0.37972,100000,0,758555,7919.650034975621,0,0.0,0,0.0,30715,320.0634781428467,0,0.0,33963,351.25964439711424,1571176,0,56443,0,0,6446,0,0,65,0.6681909773337091,0,0.0,0,0.0,0,0.0,0.06127,0.1613557358053302,0.3039007670964583,0.01862,0.3405179097534501,0.6594820902465498,24.242342219588707,4.271625549576727,0.3205611390284757,0.2470686767169179,0.224036850921273,0.2083333333333333,11.1155227683144,5.763266086935345,19.827357856041395,12246.784876896603,54.195903086670064,14.024303541066468,17.16829888825556,12.023028220992998,10.980272436355024,0.5860552763819096,0.8016949152542373,0.6930111038536904,0.6224299065420561,0.1266331658291457,0.7332820906994619,0.935251798561151,0.8403141361256544,0.7572463768115942,0.1504424778761062,0.5309352517985612,0.72870249017038,0.6440382941688425,0.575566750629723,0.1196358907672301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024916438772409,0.0047747455496532,0.0072354934951594,0.0096098170477748,0.0120207464659818,0.014324401368301,0.0167262942237715,0.0186337939057493,0.0208878351863963,0.0234059973390645,0.0253635441325667,0.0275557015158201,0.0295523461993113,0.0319707578253706,0.0339063450651212,0.0359146561967247,0.0378950201326998,0.039998755548181,0.0420316510281908,0.0439997501197342,0.0589413925530138,0.0724745308871828,0.0855863883676315,0.0984026902059689,0.1106112170605527,0.1255322520999524,0.137975622681505,0.1498277108946271,0.160192517021322,0.1704667209531565,0.1827395874802294,0.1951997405265149,0.2062848509222926,0.2170371423260696,0.2267687434002112,0.2374955697324118,0.2470434666190646,0.2554954630806076,0.2635081513729225,0.2714604683116734,0.2782268789970972,0.2843465045592705,0.2906520402855927,0.2956156314352761,0.3011662196764681,0.3059902727328695,0.3107923753739096,0.3169342638851811,0.3224337748344371,0.3265881856651331,0.3255416957900962,0.3239914316315601,0.3230147100264893,0.3220216502146233,0.321335195198764,0.3203599687782182,0.3189022461246441,0.3199049024430234,0.3208308402427557,0.3212571163421555,0.3217915364315259,0.3225831918841037,0.3230840026773762,0.3236160057099522,0.3237884933874181,0.324488466049785,0.3249964311206281,0.3284742774384485,0.3322692671975304,0.3359033463158731,0.3396852828815718,0.3419628647214854,0.3433239082626453,0.3468595355919299,0.3513793428114113,0.3503079109426812,0.3488868557487039,0.3435643564356436,0.3420195439739413,0.3388804841149773,0.0,2.262490482703954,56.8910360366561,176.1953445237142,261.86646527765475,fqhc8_80Compliance_implementation,27 -100000,95641,44408,420.8237053146663,6006,61.5321880783346,4733,48.8493428550517,1905,19.510460994761655,77.25911226955019,79.65467664158436,63.27736057920528,65.04548701970425,77.01344372155712,79.41204068587663,63.18592346189512,64.95791774166521,0.2456685479930627,242.63595570772625,0.0914371173101571,87.56927803904091,165.26422,115.80733282876255,172796.41576311414,121085.44748461702,354.4091,229.35892606581425,369843.0693949248,239093.89035065327,360.64309,174.58233176166266,372815.7902991395,179208.53793114962,3411.10184,1551.5237080742284,3524398.5842891647,1580225.1113249457,1175.51506,518.3404740724446,1212231.5534132852,525196.4657851809,1866.77842,787.0857480062695,1914524.691293483,791321.3495826861,0.37934,100000,0,751201,7854.382534687006,0,0.0,0,0.0,30245,315.5550443847304,0,0.0,33015,341.00438096632195,1576264,0,56556,0,0,6316,0,0,61,0.6168902458150792,0,0.0,0,0.0,0,0.0,0.06006,0.1583276216586703,0.3171828171828171,0.01905,0.3367735789139409,0.6632264210860591,24.412976186598858,4.406398617634617,0.3228396365941263,0.2250158461863511,0.2218466089161208,0.2302979083034016,11.32537089273213,5.900418936029051,20.334554674975426,12232.233570800585,53.74117136425328,12.841699432807214,17.238035429059035,11.702341033940336,11.959095468446687,0.5588421719839425,0.780281690140845,0.6819371727748691,0.6028571428571429,0.1275229357798165,0.7279236276849642,0.9300518134715026,0.8560606060606061,0.7398373983739838,0.1528384279475982,0.4976985040276179,0.695139911634757,0.6210247349823321,0.5609452736318408,0.1207897793263647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023905270301753,0.0048672162565022,0.0070539756003491,0.0093277515851081,0.011475660003052,0.0135355345976004,0.0156514468666517,0.0179058158171442,0.020149047750483,0.0220996171719859,0.0241959461537672,0.0265633021870828,0.0286143339093228,0.0304207186418328,0.0324661252205859,0.0345761730463014,0.0366518180876411,0.0386248274287137,0.040784697157241,0.0426696412747724,0.0565866198507743,0.0703617587297597,0.0838820107320249,0.0964450434892487,0.1088242127273111,0.1249139455818337,0.1376204284970736,0.1496766081684408,0.1605672363270806,0.1710572947430596,0.1834942553535789,0.1955871515887121,0.2074187047224794,0.2178524857822242,0.2278252045970926,0.238460684140382,0.2474935099812013,0.2556119571347998,0.2648276646570356,0.272208048909421,0.2798147567812249,0.2865590388586446,0.2928922441421551,0.2980757666867107,0.3033869571050481,0.3078454404945904,0.3126546194321307,0.3175454046534186,0.3217801210295302,0.3259664121329222,0.3251006022632133,0.3236524837386585,0.3228969185931354,0.3217861346430491,0.3211122892429922,0.3192748854515821,0.3170588328752323,0.3171221931168553,0.318550809205897,0.319096332658509,0.3208287936281324,0.3226272747074315,0.3235973458760289,0.3242108085163424,0.325384042118422,0.3269000364640308,0.327105465523625,0.3308976377952756,0.3334622823984526,0.3352948192914795,0.3371232876712329,0.3419358271696908,0.3412618296529968,0.3433153454434902,0.3458625525946704,0.3502375296912114,0.3547100337526849,0.3612522870502134,0.3634317862165963,0.3679431504145282,0.0,2.4902189561464474,54.952435559002566,178.09957267959896,260.24182329291256,fqhc8_80Compliance_implementation,28 -100000,95627,44695,423.2277494849781,5918,60.81964298785908,4622,47.87350852792621,1843,18.99045248726824,77.28554750318864,79.71743986784942,63.27381344368565,65.07220108299177,77.04913690474118,79.48102439077819,63.1867164196592,64.98707689858807,0.2364105984474633,236.41547707123323,0.0870970240264483,85.12418440369629,165.67518,116.0182884049549,173251.46663599194,121323.77718108369,359.85569,233.3504918245993,375853.1690840453,243562.9182391996,362.97667,175.4934554693655,376975.8750143788,181491.7382679477,3312.87931,1514.225472220707,3434181.465485689,1553275.614858468,1084.84494,478.66423836268586,1126034.3522226985,492149.8374258214,1796.32166,757.1469982127494,1852396.9381032556,769335.6216792669,0.38099,100000,0,753069,7875.06666527236,0,0.0,0,0.0,30490,318.3515116023717,0,0.0,33179,344.34835349848896,1574373,0,56472,0,0,6606,0,0,92,0.9620713815135892,0,0.0,0,0.0,0,0.0,0.05918,0.1553321609491062,0.3114227779655289,0.01843,0.3396712858524009,0.6603287141475991,24.27093280976116,4.341142834542756,0.329943747295543,0.2271743833838165,0.223929035049762,0.2189528342708784,11.177765573619045,5.903936532378581,19.799622559007645,12207.82677347026,52.6349037018455,12.508148583040583,17.417450520303085,11.516270937132902,11.193033661368924,0.5670705322371268,0.7819047619047619,0.7147540983606557,0.5845410628019324,0.1037549407114624,0.7189952904238619,0.9226666666666666,0.8564593301435407,0.7153846153846154,0.1176470588235294,0.5092592592592593,0.7037037037037037,0.6612466124661247,0.5406451612903226,0.0998735777496839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047165505279493,0.0067518174064898,0.0089952736697667,0.0113844463435477,0.0136906762827369,0.0158725301180238,0.0179388689114089,0.0199957042476808,0.0221726083795049,0.0243429556225764,0.0267054387028493,0.0288311100131752,0.0309752301237978,0.0329378723580006,0.0350231177401503,0.0371920952548731,0.0391841227969965,0.0413739266198282,0.0432247499243775,0.0573575990717414,0.0713020696882368,0.084707291699505,0.0974199053930193,0.1091781010024189,0.1242864858567994,0.1366684022059058,0.1482997548235795,0.1596439042136574,0.1696728796261481,0.1822517127906349,0.1941240242844752,0.2058387638123052,0.2162227311076292,0.2265671510153683,0.2371376570337816,0.2466326108583628,0.2553867652362063,0.2635819233435224,0.2713912325752017,0.2782268337309215,0.2850668665245802,0.2909317211948791,0.2973531000540184,0.3023524686925726,0.3072346413538568,0.3122588081992682,0.3171878583989602,0.3222416812609457,0.3259212282162062,0.3242977433479286,0.3230187121629059,0.3222167383487273,0.320421210981572,0.3200225975261656,0.3186971663521578,0.3173714430733115,0.3183313593893933,0.3196546122937505,0.3201209691850685,0.3213348331458567,0.321556235805273,0.3222722985012053,0.3234413407821229,0.3236988669099289,0.3259932485068813,0.3275476399467678,0.3314040795895382,0.3333797569722502,0.3379397480949184,0.3383868185738278,0.3410331125827814,0.3432723155312323,0.346261646844936,0.3490742472414438,0.3521938595459358,0.3522692659153214,0.3515751211631664,0.3549180327868853,0.3536308623298033,0.0,1.7802733805968642,56.47837362770627,170.37641299932434,251.89739470999575,fqhc8_80Compliance_implementation,29 -100000,95811,44823,424.3562847689722,6032,61.73612633204955,4648,47.948565404807376,1824,18.734800805752997,77.35864855579545,79.6654940531191,63.35358995694328,65.05537896385044,77.13100124356956,79.43723951234145,63.26864965234417,64.97219977718451,0.2276473122258977,228.25454077765528,0.084940304599101,83.17918666593016,165.24222,115.75734655349306,172466.85662397847,120818.4306118223,357.16065,231.7628913010413,372129.6615211197,241249.32554825777,364.09224,176.2581113620163,376266.8900230663,181099.9518077043,3328.50656,1519.3725463414446,3437538.487230068,1549812.332100198,1110.47981,489.1182843868066,1144957.3013537067,496593.11883147137,1787.60604,752.5930602891705,1837796.5160576552,761068.7725196272,0.38142,100000,0,751101,7839.402573817202,0,0.0,0,0.0,30449,317.2078362609721,0,0.0,33232,343.1130037260857,1580777,0,56713,0,0,6550,0,0,62,0.6366701109475947,0,0.0,1,0.0104372149335671,0,0.0,0.06032,0.158145875937287,0.3023872679045092,0.01824,0.3241498740554156,0.6758501259445844,24.493953113407784,4.2943147444835,0.330249569707401,0.2342943201376936,0.2134251290877797,0.2220309810671256,11.081862266569487,5.727370389628157,19.3775808436063,12276.677865247148,52.80342128107755,13.17808360704482,17.362216534394403,10.977340137499397,11.285781002138918,0.5524956970740104,0.7667584940312213,0.6859934853420195,0.561491935483871,0.1191860465116279,0.7095015576323987,0.8985849056603774,0.8249400479616307,0.7142857142857143,0.0990566037735849,0.4925683709869203,0.6827067669172933,0.6341681574239714,0.5151116951379764,0.124390243902439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022468271157622,0.0043047129009713,0.0067013392540324,0.0092138776421402,0.011429906731961,0.0135801841208483,0.0158191745100435,0.0179735395224057,0.0199619966082994,0.0222385891691728,0.0244182235332677,0.0261657127618109,0.0283251484578872,0.030439301480803,0.032467934177424,0.0346302015017093,0.0368258764124001,0.0389069157483335,0.040665607179583,0.0426626134754726,0.0572114130718272,0.0716160127131491,0.0849422468188583,0.0971803306254138,0.1088535025134631,0.1242404708816349,0.1375095411754728,0.1499095840867992,0.161469398212894,0.1717161970924997,0.184445425473496,0.1966418556344123,0.2081198951569926,0.2184734210727843,0.2283222673669606,0.2378429307764784,0.247195401015795,0.2557974683544304,0.2637468647501447,0.2717845889429963,0.2792624914640216,0.2862862159789289,0.2926889920424403,0.2983657270296519,0.3045349544072948,0.3088021308604829,0.313964691015102,0.3184188436395085,0.3237685813435541,0.3278614974532211,0.327595257002113,0.3266316455348056,0.3254888169925446,0.3246584630476493,0.3239697873540192,0.3218926769607094,0.3196217045436574,0.3196113190204189,0.3203719213085613,0.3220620842572062,0.3226732190419027,0.3229360338620989,0.3232005370591814,0.3254732795422543,0.325160452873729,0.3254393065093083,0.3272649450706235,0.3314948469854076,0.3376952300548754,0.3414517669531996,0.3432862994993172,0.3465878845949111,0.3489882115614953,0.3545475407328081,0.3600300103160461,0.3619473189087488,0.3682360134515439,0.3735995111020574,0.3824433883142298,0.3824921135646688,0.0,2.246131442797089,56.305229735368094,167.5629108354949,256.81601319614145,fqhc8_80Compliance_implementation,30 -100000,95853,44697,422.7097743419612,6140,62.85666593638175,4876,50.191438974262674,1883,19.185627992864077,77.41454581429173,79.70276721687327,63.37712166936033,65.06773140649908,77.174311043367,79.46767564560447,63.28642816559421,64.98249503153419,0.2402347709247294,235.09157126879643,0.0906935037661185,85.236374964893,166.80928,116.843225443556,174026.14419997286,121898.35001883715,364.91864,236.40462497968085,380056.3049669807,245982.23840639408,370.01419,178.68787758407282,382221.8918552367,183490.08470488,3439.65158,1575.9130592775757,3539160.17234724,1594788.5608980155,1162.50906,512.0639259328158,1196826.025267858,518239.9256495,1838.5303,781.169791374414,1874911.854610706,776691.7269443444,0.37992,100000,0,758224,7910.279281816949,0,0.0,0,0.0,31146,324.2569350985363,0,0.0,33866,349.4934952479318,1569511,0,56400,0,0,6541,0,0,60,0.6259584989515196,0,0.0,1,0.0104326416491919,0,0.0,0.0614,0.1616129711518214,0.3066775244299674,0.01883,0.3376380893107204,0.6623619106892796,24.40580028327818,4.258892614939974,0.3267022149302707,0.239540607054963,0.2200574241181296,0.2136997538966366,10.991533846471247,5.824870649758837,20.1225949325841,12248.140531697043,55.09953042566649,13.856776306821462,17.94104300423096,11.865791662439072,11.435919452174984,0.5740360951599672,0.7876712328767124,0.7156308851224106,0.5750232991612302,0.1170825335892514,0.7318352059925094,0.9232558139534884,0.8852459016393442,0.6935483870967742,0.1304347826086956,0.5145439141485456,0.7086720867208672,0.6535162950257289,0.5393939393939394,0.1133004926108374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023991496684719,0.0045995643584418,0.0066114361621221,0.0088522526546606,0.0113324524850086,0.0134107998656885,0.0155969845150774,0.0180647925251948,0.0202766200866225,0.0225329351116929,0.0248394399090415,0.0268543117685072,0.0289756789248173,0.0309000329380764,0.0328374212572041,0.0348382032452307,0.0367392968733834,0.0385424547367111,0.0406947169537097,0.0426921876625403,0.0578641667622553,0.0715614548494983,0.0852619778515825,0.0977328334855978,0.1096215009372959,0.1255703904005408,0.1379032685278381,0.1500919537786093,0.1609065397624814,0.1713260497000857,0.1834007574453434,0.1957114124440407,0.2066226173140037,0.2165892574176274,0.2260106839016026,0.2358090684728355,0.2464031585286966,0.2559799469448316,0.2654869264363904,0.2729479662880176,0.2797834561417714,0.2858880351775836,0.2928119268768858,0.2982273201251303,0.3043251060313294,0.3099622808963834,0.3140050062578223,0.3178839963868144,0.3228252556807134,0.3269941891178024,0.3260295741643548,0.3252012383900929,0.3237104110630747,0.322573190635065,0.3218395925216435,0.31958447439683,0.3175074652805207,0.3179777122254998,0.3187889125799573,0.3189076602638278,0.3199648821309822,0.3206445632236051,0.3216739407354814,0.3233499599180547,0.3227530985544075,0.3245677794507035,0.3252424431463733,0.3275065551254838,0.3323556114253789,0.3354688179697077,0.3375819209039548,0.3422677148736348,0.3456605653094259,0.3533428378479777,0.3546343735444807,0.360626767200754,0.3640939597315436,0.3696094385679414,0.3745865490628445,0.3758082921262837,0.0,2.681352179163849,58.06704693732584,174.71944361849177,269.61482503444495,fqhc8_80Compliance_implementation,31 -100000,95713,44846,423.97584445164193,6016,61.61127537534087,4687,48.426023633153285,1844,18.92114968708535,77.36002699221102,79.73084516857183,63.33690834044432,65.08810855400081,77.12827955832395,79.50054766047256,63.25009346430909,65.00421478841348,0.2317474338870653,230.29750809926952,0.0868148761352358,83.89376558733375,167.01476,116.99875743705029,174495.376803569,122239.14978848254,359.89201,233.7934017644909,375448.3194550375,243701.735150388,367.01354,177.76456153026905,379867.6877749104,182997.4105978574,3338.9169,1520.851436817543,3453263.297566684,1553911.131554915,1083.63041,479.4637638167216,1119576.348040496,488407.8247460823,1801.62792,760.4686930073856,1850650.1311211644,767619.907117167,0.38253,100000,0,759158,7931.608036525864,0,0.0,0,0.0,30693,320.1132552526825,0,0.0,33493,346.3897276232069,1569796,0,56269,0,0,6601,0,0,74,0.7626968123452406,0,0.0,0,0.0,0,0.0,0.06016,0.1572687109507751,0.3065159574468085,0.01844,0.3330163258836582,0.6669836741163417,24.694221523163204,4.35051418269167,0.3251546831662044,0.2398122466396415,0.2182632814166844,0.2167697887774696,11.057145825977726,5.642420755393448,19.592619572769284,12316.95836652502,53.15077635937815,13.540302899295664,17.232521677727277,11.365306301512677,11.012645480842544,0.5532323447834435,0.7740213523131673,0.6902887139107612,0.5562072336265884,0.1003937007874015,0.7246835443037974,0.9019607843137256,0.8610421836228288,0.7096774193548387,0.1219512195121951,0.4899211218229623,0.7011173184357542,0.6289027653880463,0.5070967741935484,0.094944512946979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030324821991,0.0050684750985818,0.0073977857382056,0.0096710619882565,0.0122157126001871,0.0143884159504704,0.0164424057084607,0.0186266304680642,0.0207513416815742,0.022983681074551,0.0251696774590416,0.0272576074904521,0.0292048866768129,0.0311370214343835,0.0333986793231531,0.0355558772138418,0.0375849494447207,0.0397226575879929,0.0417199737884981,0.0435978659553184,0.0585249702362303,0.0723645650171648,0.0853396275898242,0.097780816154817,0.1101341093117408,0.125095145466847,0.1371895917090091,0.1493992316124432,0.1608544726301735,0.1712670435650149,0.1844245956924138,0.1970520118612151,0.208633171728591,0.2194087291174669,0.2294230874993125,0.2401993907504846,0.2485969003492407,0.2570066129830402,0.2650337358961274,0.2728095085421151,0.2800217393818152,0.2869882306190904,0.294207389185865,0.2998682792479942,0.3052199570164042,0.3109737324975678,0.3162740658268386,0.3206777334316292,0.324953095684803,0.3293504780745137,0.3276788238620299,0.3269929530940321,0.326012489603744,0.3241534923412933,0.3227590307715177,0.3202291070033845,0.3189070381556269,0.3195190669637007,0.3204924881908562,0.3217682470701385,0.3227887150148634,0.3233769050294749,0.3246541903986981,0.3246452360266435,0.3259447413194028,0.3264887063655031,0.3269575612671846,0.3295568982880161,0.332126665026535,0.3342762659866927,0.3345534407027818,0.335676625659051,0.3379227964290205,0.3420652999240698,0.3455258001306335,0.3490998941051888,0.350879854368932,0.3490433031218529,0.3521667580910587,0.3495592180912227,0.0,2.152468970415169,55.29155213755972,174.5345655291043,256.92803659542443,fqhc8_80Compliance_implementation,32 -100000,95758,44464,420.75857891768834,6032,61.89561185488419,4720,48.77921426930387,1977,20.353390839407677,77.33346816806463,79.69584121047308,63.32120940122799,65.07061004551414,77.08966214277693,79.45308870011411,63.230995008633045,64.98319125498877,0.2438060252876965,242.75251035896872,0.0902143925949445,87.41879052537627,167.60084,117.39865517987016,175025.4182418179,122599.31826047972,359.55428,232.37560250675511,374921.8655360388,242109.2780830375,363.1919,175.47921715131153,376384.1350069968,180998.48463995103,3390.32058,1551.9306962549786,3506399.266901982,1586570.2356513075,1152.66014,509.97293873716,1191361.9749785918,520204.2635990308,1932.2856,806.3938339274016,1990265.4190772572,816179.2987605777,0.37938,100000,0,761822,7955.700829173542,0,0.0,0,0.0,30667,319.74352012364506,0,0.0,33275,344.5769544058982,1570362,0,56341,0,0,6469,0,0,65,0.6683514693289334,0,0.0,0,0.0,0,0.0,0.06032,0.1589962570509779,0.3277519893899204,0.01977,0.3321706040906929,0.6678293959093071,24.51034866696121,4.393700424877833,0.3010593220338983,0.2402542372881355,0.2315677966101695,0.2271186440677966,11.297553874202393,5.886534591009738,21.108308527240776,12244.45215813557,53.790100195778045,13.672586250974511,16.233999399207363,12.149742617850908,11.733771927745256,0.5612288135593221,0.7892416225749559,0.7086558761435608,0.5617566331198536,0.1240671641791044,0.7370007535795027,0.9114219114219114,0.8668280871670703,0.75,0.1511111111111111,0.4924845269672855,0.7148936170212766,0.6438492063492064,0.503001200480192,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024925274836617,0.0047154504522776,0.0068002354708401,0.009256436830661,0.0113402900673297,0.013430540989115,0.0155874077396729,0.0176869220877304,0.0198683618821797,0.0220384264993397,0.0242047097177654,0.0261177557620245,0.0283516551319889,0.0304119464469618,0.0324990198708292,0.0345330136023483,0.0366761584260937,0.0386012244474421,0.0407439752146882,0.0426613339999166,0.0574757038320615,0.0721409957194737,0.0852448007387043,0.0983266898749487,0.1109634691639247,0.1262966448488437,0.1387571484652682,0.1511574690011175,0.1617574812568084,0.1719767080245788,0.1850850451886721,0.1967259232009348,0.2079001174576935,0.2183029268932931,0.2281572086986173,0.2381906765585206,0.2478568558289056,0.2565946432590592,0.264930200885257,0.2725399042755398,0.2794064925002024,0.2864744751768902,0.2925392205579612,0.297846087498203,0.3038650567319944,0.3092374915379408,0.3142767845980747,0.3185931819915092,0.3226315721365995,0.3264444268482593,0.32498484338161,0.3233194404324681,0.322567013649233,0.3207064132604356,0.3200178465199286,0.3185187458756004,0.3168453438213651,0.3171662035743057,0.3172096365751831,0.3169366663090512,0.3173832336452102,0.3188279720832757,0.3195002511300854,0.321048632218845,0.3229136586774473,0.3245680529053507,0.3250540571298509,0.3281009154109912,0.3306596306068601,0.3348545577205444,0.3379012064648304,0.3432700993676603,0.3432666203674474,0.3462067910676047,0.3464046111688557,0.345548480115343,0.3471278567016677,0.3523731251284158,0.360337552742616,0.373105324523902,0.0,2.025307556627137,58.44104008761745,174.11771645424813,253.20958193678004,fqhc8_80Compliance_implementation,33 -100000,95805,44567,421.4393820781796,5892,60.257815354104686,4625,47.78456239235948,1791,18.349772976358228,77.34149214859087,79.6801408445379,63.33904717832892,65.07237422532904,77.1236857986711,79.46520388043444,63.25741938256461,64.99446206640526,0.2178063499197691,214.9369641034582,0.0816277957643052,77.91215892378034,165.98032,116.24299136338264,173248.07682271278,121332.90680380214,356.21291,230.83419395625296,371206.13746672927,240337.70581848975,362.77865,175.52753471107238,376039.19419654505,181150.4806452249,3277.40451,1490.9007559626946,3388452.919993737,1523751.816373122,1090.81343,479.70823694323065,1127313.2299984342,489449.6601881228,1753.48406,738.0356525123715,1798388.7897291372,741950.9369460567,0.38078,100000,0,754456,7874.912582850581,0,0.0,0,0.0,30388,316.6431814623453,0,0.0,33207,343.9903971608997,1581345,0,56712,0,0,6505,0,0,61,0.6262721152340691,0,0.0,1,0.0104378685872344,0,0.0,0.05892,0.1547350175954619,0.3039714867617108,0.01791,0.3425896028414594,0.6574103971585405,24.349078973148803,4.308013755340312,0.328,0.2384864864864865,0.2118918918918919,0.2216216216216216,11.142801141628654,5.7312398971437375,19.13537856807182,12271.782652211214,52.60530640258192,13.447292182995865,17.18036934849371,10.789517531180438,11.18812733991191,0.5558918918918919,0.7706255666364461,0.6888595912986157,0.5897959183673469,0.0956097560975609,0.7254746835443038,0.9,0.8459595959595959,0.7477064220183486,0.1095238095238095,0.4921154418327879,0.6847662141779789,0.6333630686886709,0.5446194225721784,0.0920245398773006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0047646563871739,0.0066873002181744,0.0090029671178311,0.0113649081752047,0.0134051807560277,0.0156759954308094,0.0179517813926416,0.0198991747875614,0.0222099345682425,0.0243517312799269,0.0263703764556078,0.0282652074633313,0.030276183902836,0.0323585859628123,0.0345650938032973,0.0367601375139792,0.0389850201253164,0.040941870856454,0.0428907535030918,0.0580655258764607,0.0714681556301431,0.0845603261268247,0.0970586071732573,0.1093909726101023,0.1253342634577374,0.1373596666984702,0.1488669353552325,0.16003543298683,0.1704679428093717,0.183340688200282,0.1959222062464189,0.2077004975772983,0.2176787490028521,0.2276495162708883,0.2372254693588381,0.2477849476746129,0.2566232599910193,0.265655959511328,0.2738058498782704,0.2814000738825268,0.2882707258422244,0.2944944045944956,0.299948540587116,0.305261753432633,0.3107895254971451,0.3159439843096103,0.3200548404295834,0.3239545789249312,0.3278069448282214,0.3264098944679707,0.3249120782503572,0.3240166068538456,0.3235774001183996,0.3223928475955683,0.3210586705423391,0.3183026811433636,0.3190885061811495,0.3197867177085826,0.320132897486737,0.3201770011062569,0.3215798013376073,0.3224953851317335,0.3226557428424328,0.3242168674698795,0.3258564863171088,0.3285595623406754,0.3307913805651362,0.3347804602569533,0.3370236151487396,0.3400532696546657,0.3437783590455346,0.3453474377652499,0.3452197971103596,0.3472747918243755,0.3468999166964179,0.3504643962848297,0.3527601067104453,0.3521872387851769,0.3577981651376147,0.0,1.9111498230092472,55.68800316433566,171.75311101934315,252.43457091940252,fqhc8_80Compliance_implementation,34 -100000,95702,44848,425.372510501348,6077,62.37069235752649,4785,49.41380535412008,1854,18.975569998537125,77.3419109081298,79.70950836561575,63.33255108723839,65.0803757122666,77.11541164453853,79.48621063332425,63.24824947537232,64.99985390105765,0.226499263591279,223.29773229149907,0.0843016118660671,80.52181120895341,166.07118,116.33108683437436,173529.47691793274,121555.54412068124,363.68819,235.33808303287145,379472.2785312742,245357.9371725476,371.85524,179.63868579486092,384736.9856429333,184732.43780626432,3425.81482,1558.785023579091,3542039.926020355,1591161.3692285323,1118.45706,495.8338711255092,1151925.090384736,501339.74329220847,1816.69182,758.5136767525642,1861583.624166684,761197.217356305,0.38246,100000,0,754869,7887.703496269671,0,0.0,0,0.0,30951,322.8250193308395,0,0.0,34023,351.76903304006186,1573699,0,56508,0,0,6558,0,0,74,0.7523353743913398,0,0.0,1,0.0104491024221019,0,0.0,0.06077,0.1588924331956283,0.3050847457627119,0.01854,0.3342705404561075,0.6657294595438925,24.535592189115988,4.317359761300176,0.3260188087774294,0.2298850574712643,0.2307210031347962,0.2133751306165099,10.941396986671377,5.611836045848354,19.687623117617285,12295.990708017003,54.29839932014225,13.305137572396044,17.607873856230974,12.214791554776106,11.170596336739138,0.5703239289446186,0.8163636363636364,0.6942307692307692,0.572463768115942,0.1136141038197845,0.748811410459588,0.9322429906542056,0.8670212765957447,0.74,0.1682692307692307,0.5063866023275617,0.7425595238095238,0.6393581081081081,0.5234192037470726,0.0996309963099631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022176766040181,0.0045099827708523,0.0067052140393588,0.0090598846185097,0.0112051083906129,0.0136433982243219,0.0156783591751021,0.017769657875398,0.0200940310711365,0.0220557380740376,0.024274730907227,0.0264198215404203,0.0282385364499244,0.0302690005460371,0.0322367606389565,0.0342161301660154,0.0362361615973322,0.0383150510071711,0.0403552006322072,0.042384009337613,0.0574006767765384,0.0716618515261901,0.085135404534819,0.0981035625256381,0.1109892196367165,0.1273844916787456,0.1397139947381821,0.1511986884687446,0.1622424235950135,0.1720120996288589,0.1853104302406978,0.1969570722100183,0.2083482876004654,0.218383012224725,0.228575513615767,0.2390625691892131,0.2489768152468468,0.2574842894562297,0.266039747719951,0.2740737349342429,0.280656693623963,0.2878892490608872,0.294808361544471,0.3001162498052516,0.3059548254620123,0.3115035081445676,0.3161672596081575,0.3199653926408468,0.3241515002459419,0.3279747002240084,0.3267445302618477,0.3253142817888301,0.3247565379913155,0.3226015744398627,0.321593285186778,0.3202438614451388,0.3179305770506301,0.3178057052973079,0.3186168307204148,0.3199386174654723,0.3206515633776446,0.3222224417616723,0.3240946666107171,0.32417053117369,0.3255965136156791,0.3268372857478281,0.3281004709576138,0.3304889952454422,0.3327937502199388,0.3356587602152681,0.3380281690140845,0.341158309379325,0.3442095298201325,0.3470323122756092,0.3491269466729589,0.3500654216724158,0.3508021390374332,0.3522424738890026,0.3526623919710064,0.3465232424126008,0.0,2.3183638785523497,55.12439920604018,183.9050607793137,260.08139958108507,fqhc8_80Compliance_implementation,35 -100000,95706,44577,420.2348860050572,6127,62.86962154932815,4812,49.67295676342131,1858,19.13150690656803,77.33810060160408,79.72098411383945,63.31256206328344,65.07485894961228,77.1119307181234,79.4948533116087,63.22899740430183,64.9938623289963,0.2261698834806793,226.130802230756,0.0835646589816079,80.99662061597712,165.53438,115.9091422582444,172961.33993689006,121109.5879654822,357.56321,231.5411226406628,373037.57340187655,241361.3071705669,370.46612,178.989568779653,382659.3734980043,183687.668134876,3438.85156,1560.3368895194071,3555537.4584665536,1592740.277014406,1173.61502,516.2418934534314,1213404.1857354816,526536.9814363063,1820.15994,753.8213922551878,1875019.2464422293,763188.4669409352,0.38052,100000,0,752429,7861.879088040457,0,0.0,0,0.0,30416,317.20059348421205,0,0.0,33854,349.29889453116834,1578496,0,56672,0,0,6571,0,0,68,0.7105092679664806,0,0.0,0,0.0,0,0.0,0.06127,0.1610165037317355,0.3032479190468418,0.01858,0.3375875486381323,0.6624124513618677,24.596516591458823,4.3634782449466165,0.3260598503740648,0.2333748960931005,0.2236076475477971,0.2169576059850374,11.299370797506722,5.866775459549257,19.541602358302004,12355.802576499866,54.46368730059893,13.662228643247357,17.386774783365333,11.973232153976175,11.441451720010066,0.5746051537822111,0.7978628673196795,0.7023581899298916,0.5762081784386617,0.1408045977011494,0.7339743589743589,0.9186602870813396,0.8838526912181303,0.7061068702290076,0.1627906976744186,0.5187991021324355,0.7262411347517731,0.649671052631579,0.5343980343980343,0.1351025331724969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025440392450994,0.0049705822682085,0.007574065425305,0.0099396304652722,0.0125049602669895,0.0148606117397814,0.0170838177998082,0.0195593777768698,0.0218236112247402,0.0240006553079947,0.0259336737833015,0.0280738504507834,0.0299515716092414,0.0321195394723292,0.0344347359625323,0.0364066633597883,0.0385268476527717,0.0404316024277636,0.0424490050527103,0.0446277892368273,0.0591202456294254,0.0732164354880921,0.0863693599160545,0.0995487962641592,0.1120626015059796,0.1274329356012524,0.1392281491070765,0.1506639264835855,0.161583345801184,0.1713387617606986,0.1841385106016204,0.1965963711947343,0.2080435374149659,0.2181553578658263,0.2275878766535337,0.2378287322819811,0.2475348141199593,0.2566405546551413,0.2652827146053124,0.2734264852534932,0.2805692911653329,0.288002247822422,0.2935101847465656,0.2991992903890873,0.3047472084178807,0.3099006847202517,0.3152006414512835,0.3201273885350318,0.324497648567764,0.3289833080424886,0.3288655631812676,0.3276108726752503,0.3265886593728438,0.325155943167379,0.3237110952720361,0.3221745788667687,0.3197304735693271,0.3199868830955894,0.3217498165184591,0.322564541434888,0.3228722209746238,0.3237302182406567,0.3243780886171371,0.3266068592138527,0.3277419975007209,0.3286118245259034,0.3292855926913692,0.3326335578881403,0.3362538397095783,0.3404951509895135,0.343879574544799,0.3451918024172359,0.3466799303655807,0.3467276407526801,0.3500277726346972,0.3563164660511861,0.3605330139242401,0.3601905139908712,0.3606911447084233,0.3561695685087055,0.0,2.4006751045924344,54.60560942711106,185.090621030963,262.69522465626005,fqhc8_80Compliance_implementation,36 -100000,95650,44604,422.5196027182436,6156,63.2932566649242,4802,49.61840041819132,1872,19.174072138003137,77.27782633283482,79.68882885826092,63.2892740309558,65.07230787925859,77.04362718951288,79.45702552014826,63.202235576177024,64.98886760012502,0.2341991433219448,231.8033381126554,0.0870384547787708,83.4402791335691,165.19052,115.68477507559972,172703.1050705698,120945.9227136432,358.14312,231.8034365370578,373857.0622059592,241771.66391746773,366.15168,176.9879596317699,379497.76267642446,182411.8777039936,3412.99602,1562.2327958576411,3530001.338212232,1595354.562873025,1115.90223,495.622341468353,1152417.7626764243,504037.50871666847,1823.02648,766.2349820715721,1869678.515420805,769749.3419995856,0.38106,100000,0,750866,7850.141139571353,0,0.0,0,0.0,30550,318.7872451646628,0,0.0,33605,347.9560899111343,1578866,0,56720,0,0,6471,0,0,66,0.6900156821745949,0,0.0,0,0.0,0,0.0,0.06156,0.1615493623051488,0.3040935672514619,0.01872,0.3391667957255691,0.6608332042744308,24.628053282404327,4.339176756079527,0.3313202832153269,0.2346938775510204,0.2169929196168263,0.2169929196168263,11.394471732754235,6.0721108213848085,20.01642898289337,12277.611408966157,54.80903983861157,13.641995152633012,18.167863075805485,11.573780280649167,11.4254013295239,0.5610162432319866,0.7737355811889973,0.6907605279698303,0.5777351247600768,0.1161228406909788,0.7282127031019202,0.9055299539170508,0.8616071428571429,0.7217741935483871,0.125,0.4953596287703016,0.6911976911976911,0.6237970253718286,0.5327455919395466,0.1136919315403423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024116896013618,0.0048170533830926,0.0069234361358698,0.0089535250058436,0.011455313088153,0.0136001059483909,0.0158490566037735,0.0181396631497237,0.0203146416808166,0.0221061257938946,0.0241951199499482,0.0264190480103539,0.0283585775436285,0.030435141096201,0.0325934338220111,0.0346903313888544,0.0367238663682334,0.0385741579100386,0.0406663961123424,0.0427384291359517,0.0578498578832971,0.0718340245486154,0.0855235536149131,0.0981762310177535,0.1107394236147019,0.1259645817234918,0.1388157335825333,0.1503909995525345,0.1614724818720455,0.172012882447665,0.1852614111460712,0.1970961769578068,0.2079301675065576,0.2180250372056377,0.2277580854670747,0.2379770400248216,0.2474488086997298,0.2557812412085748,0.2643196804103821,0.2724254773570218,0.2799306157849089,0.2876614647261675,0.294892116967919,0.3006172469587104,0.305211611601881,0.3101487529910945,0.3161915735684585,0.3201049106858663,0.324143475892834,0.3271706833938593,0.3261529330833457,0.3239761080380174,0.3225856565827755,0.3223213509834023,0.3217877094972067,0.3195259004513772,0.3176883273546871,0.3182267145161821,0.3189011440706994,0.3201911375187916,0.3211604864134514,0.3232841438050906,0.3239811978008142,0.3262908171258477,0.3277078267568674,0.3286603955494176,0.3281651533321912,0.330921842421179,0.3337111685735539,0.334120377781335,0.3368522513425437,0.3387328821868173,0.3382826814936501,0.3419780557047495,0.3408897704732219,0.3432568149210904,0.3437306979617047,0.3477094510936855,0.3466068424004487,0.3533256439830834,0.0,2.2848333333532387,59.51129957897143,177.90236296995707,256.4259175952805,fqhc8_80Compliance_implementation,37 -100000,95822,44926,424.6310868067876,6062,62.15691594832085,4739,48.93448268664816,1872,19.212706894032685,77.39792083527668,79.70329191524618,63.37134666233783,65.0722871480451,77.16838731289613,79.47382465375772,63.28741557971308,64.99055324820945,0.2295335223805494,229.46726148846608,0.0839310826247512,81.73389983565471,166.4234,116.53077938573644,173679.73951702114,121611.71691859535,360.64216,233.9327172380262,375801.2982404876,243573.65520310687,369.35216,178.60582968522877,382139.57128843066,183844.295823175,3393.64864,1540.5773986055572,3505322.128529982,1571938.1446645549,1122.23158,491.5178730282036,1157253.7204399826,499063.4458648592,1841.91582,764.0544448116158,1892093.089269688,770941.1503008392,0.38198,100000,0,756470,7894.533614410052,0,0.0,0,0.0,30779,320.62574356619564,0,0.0,33767,349.10563336185845,1575246,0,56479,0,0,6525,0,0,64,0.667905073991359,0,0.0,1,0.0104360167811149,0,0.0,0.06062,0.1586994083459867,0.3088089739359947,0.01872,0.3302911093627065,0.6697088906372934,24.40488819578264,4.360494499308325,0.3112470985439966,0.2435112893015404,0.2186115214180206,0.2266300907364422,11.18848180738642,5.666356098131782,19.892050069845656,12279.100667609013,53.8479221880896,13.747835806499696,16.802111188703485,11.63235760747431,11.66561758541211,0.5562354927199831,0.7772963604852686,0.6908474576271186,0.581081081081081,0.1098696461824953,0.7445956765412329,0.9373493975903614,0.8523316062176166,0.7389558232931727,0.1407035175879397,0.4888252148997135,0.6874154262516915,0.6336088154269972,0.531130876747141,0.1028571428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791204341135,0.0046307085896097,0.0067751914397281,0.0090675548064132,0.0113756506180871,0.0134436506482668,0.0155896558048541,0.0178321856669217,0.0202709606228416,0.0223547707229236,0.0243017847263487,0.0264785842523724,0.0285714285714285,0.0307274355042859,0.0329715634437195,0.0350110990656135,0.0369734337498965,0.0391559397218249,0.041306266548985,0.0432931969320109,0.0579221862939397,0.0719776599416397,0.0857169819234156,0.098363068641778,0.1104552497602007,0.1262566997557958,0.138583729216152,0.1506024096385542,0.1616742158789847,0.1722122109237568,0.184896394261836,0.1968523526230395,0.2088950252217777,0.2189570350934732,0.2288626692031097,0.2396745447500968,0.2491359511227061,0.2582613973563528,0.2664823021387041,0.2739417369125367,0.2810723364917957,0.2878214560997827,0.2943137092675547,0.2996028423092566,0.3045643455186536,0.3094834157016056,0.3145670568854055,0.3188306497659016,0.3231918523496872,0.3268937200610622,0.3260382422006038,0.3247494069411877,0.3224397505758103,0.3222995260936577,0.3207941328987332,0.3190570643881599,0.3171212670968149,0.317754103457869,0.3183235900669814,0.3186924887652471,0.3195270700041157,0.3206213852865123,0.3220608546436194,0.3230500582072177,0.3236945468565507,0.3241330687278044,0.3238106143012538,0.3271802003982678,0.329074269623372,0.3311884334286622,0.3343087051938551,0.3375187005770463,0.3395808269486481,0.3386097728836889,0.3441134751773049,0.345430747263208,0.3482403565391117,0.347165991902834,0.3518973518973519,0.3591495823842065,0.0,1.9468831104268625,54.83546237143947,181.95637156507277,259.4546046754388,fqhc8_80Compliance_implementation,38 -100000,95563,44440,421.6485459853709,6038,62.095162353630585,4724,48.952000251143225,1812,18.668313050029823,77.19945181010942,79.67141062623627,63.224607941291474,65.05418662312542,76.97468126537757,79.44561338782366,63.14115373584641,64.97219302686143,0.2247705447318537,225.79723841261057,0.0834542054450651,81.99359626398461,165.08404,115.62099514253686,172748.9090966169,120989.28993704346,358.28949,231.75647047813828,374443.1212917133,242035.16055182263,365.46968,176.28889954910193,379424.662264684,182114.63570012985,3358.46419,1530.3350170529368,3485009.229513515,1571999.8294872856,1120.28895,494.6123855032957,1160815.1585864823,506088.3663167708,1776.4412,744.3570521098293,1832550.5478061596,757012.2902113515,0.37971,100000,0,750382,7852.223140755313,0,0.0,0,0.0,30556,319.2553603382062,0,0.0,33476,347.27875851532497,1574704,0,56550,0,0,6558,0,0,61,0.6383223632577462,0,0.0,0,0.0,0,0.0,0.06038,0.1590160912275157,0.3000993706525339,0.01812,0.3321782957946133,0.6678217042053867,24.44193929472486,4.376790476683399,0.3204911092294665,0.237510584250635,0.2305249788314987,0.2114733276883996,11.30249912370066,5.779911054325604,19.268624516470755,12262.443959081753,53.62804428330483,13.542045166174235,17.01980856105149,12.076645639052424,10.989544917026675,0.5690093141405589,0.7932263814616756,0.702774108322325,0.5757575757575758,0.1071071071071071,0.7328185328185328,0.9063231850117096,0.8877805486284289,0.725,0.1409691629955947,0.5071449402158064,0.7237410071942446,0.6361185983827493,0.5335689045936396,0.0971502590673575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021895368521353,0.0044946328199508,0.0065399301324234,0.008469578656255,0.010760679236063,0.0126913902424106,0.0147675664642547,0.0168914776210913,0.0191056078591895,0.0214697834575062,0.0235484930606881,0.0257681075967589,0.0275795305918579,0.029852901735058,0.0322733989893248,0.0344495626520366,0.0363813612934673,0.0384119725628767,0.0405091507557055,0.0424683418764158,0.0569444153887994,0.0703066017951514,0.0840673547898841,0.0968486266080854,0.1083668875431977,0.1235423822244837,0.1363974811726162,0.1486880155367985,0.1597981767346195,0.1700125807804385,0.1833270341774202,0.196202050892518,0.2081415388642858,0.2187074979160268,0.2285153016741896,0.2389558455984448,0.2479829911038997,0.256898127771947,0.2655195566328679,0.2735428584556711,0.2807827489009268,0.2872893184297259,0.2932312985703268,0.2988816413804702,0.3043684768179659,0.309516453912979,0.3137816286808564,0.3191380784098593,0.3236814085750643,0.3290203082622213,0.3272707632897206,0.3258498241743087,0.3250328023815234,0.3236000926515722,0.3228555254297887,0.3216851931462261,0.3199378083800034,0.3202126959041222,0.3213765196070026,0.3221608832807571,0.3232870527147533,0.3244460314626356,0.324886248736097,0.3253401589653779,0.3263175700166735,0.3275509669304544,0.3280220095145297,0.3324601546473094,0.3365777965862604,0.3404128622469234,0.3420635280257375,0.3460523538104285,0.3480842552659541,0.3515252441147528,0.3534883720930232,0.36023598820059,0.3644042232277526,0.3660714285714285,0.370330265295073,0.3607738998482549,0.0,1.858220821025637,57.26412151965525,169.1512399519791,263.9462441851733,fqhc8_80Compliance_implementation,39 -100000,95685,44767,423.8699900715891,6074,62.381773527721165,4778,49.40168260437895,1862,19.07299994774521,77.33990302576841,79.7299058091731,63.32261558699434,65.08855093299375,77.10656998233708,79.49968757330234,63.23617960843783,65.00636896040731,0.2333330434313296,230.2182358707654,0.0864359785565085,82.18197258644011,166.08592,116.4030744868252,173575.7119715734,121652.3744440876,360.52461,233.70466364416052,376271.57861733815,243732.57422183265,371.26699,179.34633718400858,385278.2045252652,185254.5283926793,3412.61785,1546.5030297195506,3529532.256884569,1579263.3325176905,1151.05546,503.5818065020866,1190064.1375346188,513392.0849684769,1826.2785,760.4327582999106,1872892.929926321,762309.3388585798,0.3806,100000,0,754936,7889.8050896169725,0,0.0,0,0.0,30805,321.3983382975388,0,0.0,33961,352.1346083503161,1572661,0,56477,0,0,6492,0,0,68,0.7106652035324241,0,0.0,0,0.0,0,0.0,0.06074,0.1595901208617971,0.3065525189331577,0.01862,0.3204186845805343,0.6795813154194658,24.59860945657392,4.334899535643187,0.3292172457095019,0.2329426538300544,0.2176642946839682,0.2201758057764755,11.071039018883235,5.709027877160251,19.71906076847916,12301.00174651271,54.1910383268081,13.39616642151814,17.804491214651595,11.513442124868824,11.476938565769538,0.5692758476349937,0.793351302785265,0.6961220597584233,0.5740384615384615,0.1378326996197718,0.7410926365795725,0.924170616113744,0.8556962025316456,0.7024793388429752,0.1862745098039215,0.5075391180654338,0.7134587554269175,0.6426146010186757,0.5350877192982456,0.1261792452830188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021371416995847,0.0048046221681617,0.0072145386652596,0.009436070369317,0.0119378095034725,0.0142714631812536,0.0164820043421978,0.0184945139066088,0.0206597630414115,0.0227949681157046,0.0248503239563684,0.0269870761776691,0.0289366252943535,0.0309113757158749,0.0332228999597485,0.0351537459418102,0.0372346487365705,0.0391525933922213,0.0412886984021304,0.0430644455100806,0.0585427004439801,0.0726063969010103,0.0852034874571149,0.097658222521461,0.1101980104016119,0.125330596872818,0.1369823772187622,0.1489318672896997,0.1604447720062806,0.1713397308743901,0.1842314982338244,0.1961501422867592,0.2079862545944888,0.2190479314265722,0.2289541167277489,0.2391843696697162,0.2489206225246834,0.2579596336880949,0.2667324621108993,0.2742306767296174,0.2813143346209896,0.2872942386831276,0.293866445850831,0.2987460927675781,0.3039689282679937,0.3095176524191264,0.314934537133139,0.3190867254837151,0.3233885581154543,0.3268736065854913,0.3262016965127238,0.3241811904205125,0.3231751130647956,0.3223292266759211,0.3223106088766634,0.3208782801621911,0.3192946386209078,0.3200026245858075,0.3203382029558665,0.3212917935837831,0.3214552936775159,0.3229187226147712,0.3246221070017352,0.3259756233925975,0.3262826066031379,0.3268488578283092,0.3278089967766779,0.331474304439613,0.334646223097482,0.337797147385103,0.3422165628268679,0.3451463790446841,0.3494173228346456,0.3520012174707046,0.3569487395745478,0.3561967833491012,0.3562989105416603,0.360122699386503,0.3583216783216783,0.363355237727097,0.0,2.1020721042611923,55.55114188380292,181.0152945792369,261.7505720587849,fqhc8_80Compliance_implementation,40 -100000,95789,44934,426.6043073839376,6110,62.64811199615822,4750,49.0661767008738,1900,19.469876499389283,77.331780499572,79.67250264376251,63.32970022966426,65.06263678717164,77.09818450468434,79.44034706270148,63.24379356413642,64.97965858672241,0.2335959948876649,232.1555810610363,0.0859066655278439,82.97820044923299,167.47654,117.29724321450438,174839.0107423608,122453.77153379236,362.87481,235.24250518435483,378310.025159465,245066.8502483113,373.37253,180.7628282737813,386821.3364791364,186346.37036698655,3369.77277,1533.1814670208294,3483292.392654689,1565962.3203299225,1130.39124,500.9633080664151,1168551.4725072817,511453.129343051,1849.29454,763.8368439369747,1897872.4070613536,769588.768159993,0.38132,100000,0,761257,7947.2277610164,0,0.0,0,0.0,30929,322.3439017006128,0,0.0,34155,353.5165833237637,1565127,0,56277,0,0,6673,0,0,60,0.626376723840942,0,0.0,0,0.0,0,0.0,0.0611,0.1602328752753593,0.3109656301145663,0.019,0.3410123805046231,0.6589876194953769,24.2675194036431,4.281180092632948,0.311578947368421,0.2543157894736842,0.2191578947368421,0.2149473684210526,11.278513503200688,6.007712988508029,20.032667629656306,12251.203132282044,53.8926239211036,14.395797553421025,16.872926989265224,11.532986480675904,11.090912897741434,0.5669473684210526,0.765728476821192,0.6912162162162162,0.5917387127761767,0.1263467189030362,0.7612179487179487,0.9372093023255814,0.8721227621483376,0.7531914893617021,0.1510416666666666,0.4977155910908052,0.6709511568123393,0.6262626262626263,0.5446650124069479,0.120627261761158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026031906811851,0.0047544706216292,0.0071437994053598,0.0092344264293551,0.0114111365369946,0.0136355767370339,0.0154870414551089,0.0174976520070235,0.0195354828157265,0.0214976710856323,0.0235883872555049,0.0255354539294001,0.0277212248339399,0.0296453476993438,0.0316634672941565,0.0338254145474093,0.0358851674641148,0.0380638269184894,0.039789259290049,0.0417113524432273,0.0565787688743726,0.070479697077467,0.0838181494176965,0.0969338433086751,0.1091805662385282,0.1245733608073123,0.1370202753547922,0.1484502100058482,0.1605698431330701,0.1704466323130818,0.1836381052835509,0.1953406374717442,0.2063479981732379,0.2170869879043723,0.2270046001804855,0.2369012929745061,0.2463121247963578,0.2558602537568613,0.2647999455634186,0.2729666605605422,0.2798071252645089,0.2872771901116241,0.2937773571513072,0.2990438075153374,0.3049297399710944,0.3105790687066191,0.3142052213109622,0.3192473310061915,0.3237070641607258,0.3282320784862609,0.3277233988124891,0.3270417772156771,0.3253263119359063,0.3241762213900496,0.323631282424819,0.3214285714285714,0.3196587431217392,0.3203214884454817,0.321433461117196,0.3222851224172723,0.3229909206873265,0.3242260092523032,0.3248457114068601,0.3253106459196239,0.3258703466911143,0.3267862747149283,0.327343370568237,0.3297879035810938,0.3334853374491371,0.337069273876237,0.3413564740808403,0.3420322339630697,0.3427444995548773,0.3458381281166091,0.3499007842766701,0.352387757532452,0.353848526916551,0.3545123431808984,0.3557531962201223,0.3598260181890075,0.0,2.037314696098668,54.70039810845385,183.16320226075277,258.56249597905065,fqhc8_80Compliance_implementation,41 -100000,95688,44368,420.2825850681381,5964,61.03168631385336,4678,48.27146559652203,1806,18.48716662486414,77.34192318165195,79.71723324495878,63.32298576779221,65.07494002646662,77.10404331334648,79.48183194253446,63.23382003081405,64.9899218747913,0.2378798683054697,235.4013024243216,0.0891657369781597,85.0181516753139,166.86098,116.79354654627107,174380.0267536159,122056.41203523029,357.15053,230.61080429964088,372642.0031769919,240400.56568393204,356.11896,171.8314684910922,368841.6206838893,177059.20402095915,3322.01709,1518.3045951008564,3432330.553465429,1547407.4842193965,1105.09154,487.72624889881456,1144134.499623777,499065.9468987344,1771.20112,758.8516003215449,1815221.553381824,760603.4091364297,0.37978,100000,0,758459,7926.364852437087,0,0.0,0,0.0,30493,318.03360922999747,0,0.0,32624,337.6076415015467,1573683,0,56449,0,0,6651,0,0,72,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.05964,0.1570382853230817,0.3028169014084507,0.01806,0.3252589641434263,0.6747410358565737,24.652354506627788,4.410781851831074,0.3221462163317657,0.2400598546387345,0.2167592988456605,0.2210346301838392,11.225391980983984,5.785624265095917,19.40502469903918,12248.165574702663,52.8756386550555,13.398319516380116,16.79904363128717,11.271960933795228,11.406314573592992,0.5583582727661394,0.8032056990204809,0.6808228268082283,0.5650887573964497,0.1073500967117988,0.7155519742143432,0.938095238095238,0.8498583569405099,0.6923076923076923,0.1367521367521367,0.5016002327611289,0.7226173541963016,0.6291161178509532,0.5269230769230769,0.09875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019946741188501,0.0044901227435359,0.0068778721202714,0.00932415138034,0.0114203776961955,0.01367310785771,0.0158228493362967,0.0177774601002726,0.0195817782095199,0.0216558813892529,0.0239415968583703,0.0261239243392002,0.0280791977372075,0.030014837406751,0.0321548387096774,0.03396105440594,0.0364116641632568,0.0383860821906432,0.0404351353037835,0.042507737679634,0.0570888350325923,0.0712168968658701,0.0839841289834991,0.0962999600109443,0.1085784236130897,0.1239680792515134,0.1365103635745837,0.1484223533672795,0.1598392200461814,0.1712574336074196,0.1846883761052404,0.1965728645393297,0.2082952318745917,0.2187917259494363,0.2283226175797076,0.2388994160211872,0.2486825652018578,0.257517929318517,0.2652628234947072,0.2723815632731604,0.2795713855909648,0.2866102666713471,0.2936008997809743,0.2989207339009473,0.3047874861747511,0.3092971639950678,0.3147023086269744,0.3189896623720528,0.3225015884542071,0.3265688994583168,0.3260030760098216,0.3251230847733447,0.3239802399435427,0.3222850204535927,0.3209552221084346,0.3204969324214746,0.3181199987348578,0.3193299392346855,0.3193955348900817,0.3203260152306896,0.3209892722745399,0.3217153934406773,0.3229928153997612,0.3234622616169755,0.3248083070932385,0.3267558702556359,0.3262409330109515,0.3294217313545229,0.3341492412056787,0.3359050445103858,0.3386300873738059,0.3395179194418015,0.3421550094517958,0.3438516836927733,0.3436509416371434,0.3460910151691949,0.3506161707243763,0.3564199245882119,0.3588490770901194,0.3536221060492905,0.0,2.367082119903953,54.14495489424223,172.63390385490186,259.7631490085535,fqhc8_80Compliance_implementation,42 -100000,95730,45199,427.7238065392249,6259,64.14916953932936,4911,50.61109370103416,1921,19.628120756293743,77.32392886815877,79.69004022073787,63.31606620966248,65.06595475440784,77.08829635762876,79.45687124549889,63.22873486331599,64.98266846349301,0.2356325105300101,233.16897523898209,0.0873313463464953,83.28629091482753,164.95446,115.59127993352756,172311.96072286638,120747.02526711392,358.83747,231.95992866804653,374170.3541209652,241637.0253108124,372.3653,179.4626576661574,384971.1271283819,184355.2259444405,3509.53397,1585.1702642401588,3617304.920087747,1607750.1854602948,1134.50004,498.1881468512968,1167256.7951530346,502797.0439910835,1881.93494,786.8426800235416,1924437.4804136637,785851.1100533146,0.38505,100000,0,749793,7832.361851039382,0,0.0,0,0.0,30472,317.5911417528465,0,0.0,34043,351.68703645670115,1580950,0,56771,0,0,6790,0,0,69,0.6998850934921133,0,0.0,2,0.0208920923430481,0,0.0,0.06259,0.1625503181405012,0.3069180380252436,0.01921,0.3330279431974347,0.6669720568025653,24.59641438583123,4.302815228288896,0.3145998778252901,0.2443494196701282,0.2180818570555895,0.222968845448992,11.08081012448931,5.751879709901358,20.41982467115586,12458.381163036474,55.41718500971327,14.251914601824812,17.29587285574229,11.84473511347993,12.024662438666224,0.5650580329871716,0.8041666666666667,0.6912621359223301,0.5929038281979458,0.0977168949771689,0.7269108280254777,0.9182692307692308,0.8641025641025641,0.7990867579908676,0.0822510822510822,0.5094391244870041,0.7436224489795918,0.6329004329004329,0.539906103286385,0.1018518518518518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397854690206,0.0044611625384014,0.0070229565429191,0.0093682050031498,0.0115046588273589,0.0136252545824847,0.015812654201415,0.0181387610113609,0.0204275680152133,0.0226272140882563,0.0246573095338179,0.0267767305283476,0.0289715014187605,0.0309322950465065,0.032835605271033,0.0348555952947013,0.036967600265164,0.0389218138603173,0.0412944687665734,0.0435706695005313,0.0585103050804986,0.0725674827369742,0.0862539063319281,0.0994741823535597,0.1120954219002119,0.1281354139116635,0.1406772286893683,0.1518597791478985,0.1631859503690805,0.1738375272056695,0.1873223667212126,0.1996171814170776,0.211367441455937,0.2221335403387162,0.2320660720766295,0.2421544526388058,0.2510014393947847,0.2601998334721065,0.2687570243055161,0.2768033200348512,0.28318522552166,0.2899265489732085,0.2966571834992887,0.3019605960980058,0.3083230932074507,0.3141330898862542,0.3196345315084975,0.3242265151129007,0.3294129851268818,0.3334699218801634,0.3326005152205872,0.3312666198211604,0.3307557712931083,0.3289027886369559,0.3278032377097964,0.3259760748694227,0.3239659482895028,0.324198891403457,0.3244212251587789,0.3253585955898094,0.3262338342909547,0.3276615086658366,0.3278698819392112,0.3283935716041932,0.3287068218993553,0.3300826575578212,0.3316634407377889,0.3358759377166992,0.3390715394384083,0.3435621890547263,0.3480345158197507,0.3504278046447361,0.3513138824122503,0.3546029087032666,0.3539714096374136,0.3539379474940334,0.3536381588941212,0.3537576839183026,0.3534574468085106,0.3540958852397131,0.0,2.660937876380556,54.60332508100669,180.9016559717607,280.99968206574226,fqhc8_80Compliance_implementation,43 -100000,95793,44817,424.3838276283236,6017,61.55982169887152,4682,48.27075047237272,1841,18.80095622853444,77.4066300966336,79.74542209234697,63.35719594835807,65.08757757874034,77.18441397470299,79.52637328820516,63.27427868812245,65.00850516654971,0.2222161219306144,219.0488041418064,0.082917260235618,79.07241219062655,166.94876,116.83055137958848,174280.75120311504,121961.47044104316,357.24018,231.96813526702405,372345.9960539914,241572.3020126983,366.1095,177.483615603302,378512.72013612685,182376.89367604785,3332.39709,1519.8609290625363,3438285.2296096794,1546146.805155427,1106.87761,494.3752710658996,1141467.5498209682,502065.5695780479,1801.9566,750.9811259877685,1842917.958514714,751962.366489017,0.38093,100000,0,758858,7921.85232741432,0,0.0,0,0.0,30411,316.8603133840677,0,0.0,33437,345.36970342300583,1574447,0,56534,0,0,6512,0,0,75,0.782938210516426,0,0.0,1,0.010439176140219,0,0.0,0.06017,0.1579555298873808,0.3059664284527173,0.01841,0.332435003170577,0.6675649968294229,24.578382706697216,4.360770434645211,0.3334045279794959,0.231524989320803,0.2161469457496796,0.2189235369500213,11.451230476686694,6.0328348909428176,19.451700365404637,12265.62534123378,52.81564632475813,12.981559361736338,17.515800503129775,11.160722982606874,11.157563477285132,0.5645023494233233,0.790590405904059,0.6912235746316464,0.591897233201581,0.1053658536585365,0.7388178913738019,0.9102244389027432,0.8746987951807229,0.7379912663755459,0.1352657004830917,0.5008746355685131,0.7203513909224012,0.62478184991274,0.5491698595146871,0.097799511002445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0048772079252093,0.0070630498980119,0.0088800382024526,0.0109742577882649,0.0129630761084295,0.0154768459044473,0.0178226917776757,0.0200539678645897,0.0223607188177985,0.0243405005431774,0.0264734854703661,0.0287881435193274,0.0307391393864525,0.0327076310933811,0.0346429862150859,0.0364458329884962,0.0384695125743785,0.0406112992706796,0.0424973712429596,0.0566673622704507,0.0707869281045751,0.0841150883077406,0.0964582238570677,0.1088937824653088,0.1243012479790348,0.136975992368435,0.1490952006294256,0.1601510819000469,0.1698388046912654,0.1825302047359304,0.1948492842624227,0.2057740158421435,0.2163268871684556,0.2263344648408748,0.2366042286713209,0.2463477194156351,0.2548810233007744,0.2639862122139828,0.2717118890402023,0.2798413854495428,0.2866841158187469,0.2929849669414645,0.2982552778742411,0.3046778228450684,0.3094812605528784,0.3147135041750648,0.3199964378403134,0.3238913066003523,0.3272568871523423,0.3265369377139315,0.3257887422776868,0.3249619696884331,0.3239233136368233,0.3230938177069421,0.321704833827621,0.3204052007068922,0.3209813985419595,0.3213837118511728,0.3219458577836084,0.3240386945257311,0.3260412780079728,0.3270971635485817,0.3273394087575016,0.3286860198624904,0.3297453943282964,0.330393985642417,0.3353369876666251,0.338275214032157,0.3442474745489564,0.3487239606817567,0.3533088235294118,0.3593633424521263,0.3579081441522439,0.3634438305709024,0.3653333333333333,0.3657758882477984,0.3673956262425447,0.3699153699153699,0.3801904761904762,0.0,2.402119808666173,54.46599991547688,173.64423131479515,255.88034405519505,fqhc8_80Compliance_implementation,44 -100000,95684,44610,422.0872873207642,6151,62.9676852974374,4824,49.79933949249614,1862,19.062748212867355,77.29491858535671,79.69736864105414,63.29396199958445,65.07414609588713,77.06952625342363,79.47172352266365,63.21014436241264,64.9920109248718,0.2253923319330795,225.64511839048865,0.083817637171812,82.13517101532375,166.83876,116.86117175026276,174364.32423393673,122132.4064109598,360.56994,233.35891572672523,376237.9603695498,243288.85260516405,370.05218,179.2224846458574,382261.74700054346,183940.3393687454,3445.25091,1566.764409989364,3560604.761506626,1597385.728010289,1166.04711,513.0836262299936,1201998.839931441,519582.2564169493,1819.35312,762.7321871615992,1864895.1966891016,769417.7034357998,0.38071,100000,0,758358,7925.651101542578,0,0.0,0,0.0,30775,320.9836545294929,0,0.0,33893,349.70318966598387,1571060,0,56363,0,0,6676,0,0,70,0.7315747669411814,0,0.0,0,0.0,0,0.0,0.06151,0.1615665467153476,0.3027150056901317,0.01862,0.3346761698171676,0.6653238301828324,24.45876276809804,4.319055746758949,0.3246268656716418,0.2415008291873963,0.2166252072968491,0.2172470978441127,11.311818912275935,5.966494210834365,19.778990488242,12342.453996224694,54.54745388301372,14.021665692813794,17.794207628290174,11.333450813152922,11.398129748756824,0.5733830845771144,0.7991416309012875,0.7005108556832694,0.570334928229665,0.1354961832061068,0.7565543071161048,0.9211087420042644,0.8741258741258742,0.7445887445887446,0.1504854368932038,0.5032960733734595,0.7169540229885057,0.635004397537379,0.5208845208845209,0.1318289786223277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0048098876678133,0.0069974102472959,0.0091911951603883,0.0114009996233598,0.0134029129677005,0.0155312461733131,0.0176845589587462,0.0198469533903506,0.0221165961544371,0.0241573148964979,0.0262473932383427,0.0284626466351101,0.0305678656085746,0.0329689612815986,0.0349434844207282,0.0370140097819779,0.0391092192691029,0.0411838135857692,0.0433894418677367,0.057291775470555,0.0716708542713567,0.0850402955003358,0.0982197344331979,0.110414820441406,0.1250965496079821,0.1378805247739141,0.150209748514725,0.1610338821870091,0.1714714875811383,0.1847012312697267,0.197680456984594,0.2093475826529392,0.2201394657456389,0.2304443466783985,0.2406006711037774,0.2505885897278539,0.258651930717027,0.2668332292317302,0.2735257358421336,0.2812123598628741,0.2878516489305658,0.2944324721149975,0.3006717850287908,0.3056747329144232,0.3110337763627164,0.3164744047395383,0.3209004606652923,0.3249417852522639,0.328452048294406,0.3275277725475428,0.3272200241784812,0.3267106614698392,0.3261578886578886,0.3243965837356108,0.3230769230769231,0.3208067738559604,0.3209748722246873,0.3220938578801654,0.3240823474748919,0.3249995307543593,0.3262092461276393,0.3263918045175917,0.3261716999731158,0.326282747796692,0.3295665594182427,0.3310934461855198,0.3351939451277199,0.3383582823810527,0.3401541640178004,0.3433545026728195,0.3471197239182373,0.351184863913508,0.3506572448902059,0.3526261392464531,0.3528922674902007,0.3565243809813155,0.3600810536980749,0.3567934782608695,0.3588876362269823,0.0,2.4383610303705456,58.3187062912034,169.77121427344653,268.7356334933476,fqhc8_80Compliance_implementation,45 -100000,95722,44690,423.6330206222185,6102,62.58749294832954,4764,49.19454252940808,1884,19.30590668811768,77.3593554540744,79.73078820458012,63.33143217950936,65.08406387368643,77.12510827623473,79.49691207767829,63.24402390991682,64.99892782308576,0.234247177839677,233.87612690183343,0.0874082695925437,85.13605060066709,167.09154,116.98680974258788,174559.18179728798,122215.17492591866,358.91149,233.0643366227297,374408.00442949374,242936.500096874,370.78235,180.02297561248176,383690.2383986962,185234.1940759853,3396.34122,1569.4446758390625,3509975.2303545685,1601431.171349389,1126.3527,504.264806237893,1163053.7493993023,513163.55303680745,1841.28766,782.8402689020097,1889017.8224441612,789394.4749576224,0.38086,100000,0,759507,7934.50826351309,0,0.0,0,0.0,30653,319.644386870312,0,0.0,33877,350.21207245983163,1569852,0,56292,0,0,6554,0,0,71,0.7417312634504085,0,0.0,0,0.0,0,0.0,0.06102,0.1602163524654729,0.3087512291052114,0.01884,0.3410549381749883,0.6589450618250118,24.242933417536506,4.345940789213842,0.3096137699412258,0.248320738874895,0.2187237615449202,0.2233417296389588,11.336656776159854,5.920054204757719,20.185662757187128,12268.978057922575,54.09208933967195,14.169031404826269,16.625641704886913,11.584589003590237,11.71282722636852,0.552896725440806,0.7776838546069316,0.6894915254237288,0.572936660268714,0.093984962406015,0.7279521674140508,0.9301801801801802,0.8777506112469438,0.7148760330578512,0.1193415637860082,0.4845300642148278,0.6860622462787551,0.6172607879924953,0.53,0.0864799025578562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0047543260312021,0.0069915877703024,0.0093233937965915,0.0115412383189449,0.0136011483604304,0.0156480962332432,0.0178020946042504,0.0195559281143301,0.021703743895822,0.023750192278111,0.025893856756951,0.0281184410881106,0.0303008448382443,0.0321751782636961,0.0342998914560397,0.0363502712552283,0.0384814853230992,0.0404715617885249,0.0423537254820262,0.0569727979950921,0.0711280430368618,0.0841244034195206,0.0978707744072341,0.1099242919504839,0.1251626278545816,0.1379321321703699,0.1493953072435379,0.1603816932562538,0.1704903959652323,0.1836558769018576,0.1963431268538766,0.2082336045955002,0.2186036331801269,0.2283231264043706,0.2383714482177317,0.2481654808841432,0.2573608001530101,0.2659312473755291,0.2734563869888518,0.2802490279577856,0.2863524733949246,0.2933525669827606,0.299384711149417,0.3050026700325258,0.3098612359481389,0.3137127344150726,0.3185030762190471,0.3221644147641973,0.3269405670449603,0.3257786560202175,0.3244695470536499,0.3240892934912406,0.3238554563777713,0.3226881545229666,0.3214645462592717,0.3201109919909188,0.3199587972727719,0.3203146281667121,0.3210399032648126,0.3219609823616333,0.3230289391606459,0.3233806836064541,0.3250723304999215,0.3257823784304285,0.3274666249478515,0.3285539180753114,0.3322419166955262,0.336352148272957,0.3379528806176994,0.3419052387237722,0.3466355338569306,0.3482961370677119,0.3495830174374526,0.3484678624813154,0.3457690949746969,0.3534338358458961,0.3585057240409721,0.3709369024856596,0.3670597185241536,0.0,2.2801953283102177,58.60463471668945,170.71192401748203,260.3787829572005,fqhc8_80Compliance_implementation,46 -100000,95889,44626,421.3934862184401,6110,62.54106310421425,4765,49.11929418390014,1876,19.167996329088844,77.4394230829848,79.7178194996512,63.39129033748679,65.07643223204443,77.20627130378556,79.48711603230882,63.30630483832068,64.99475895112342,0.2331517791992468,230.70346734238,0.0849854991661089,81.67328092100945,165.70928,116.10486188844686,172813.41968317534,121082.33675233534,358.29694,231.79820350141625,373079.7901740554,241159.1723663663,368.06508,178.4979276783094,379904.3998790268,183111.24701565696,3391.74673,1542.9703764192002,3500304.696054813,1572445.8072908828,1107.51351,491.8966827044539,1140847.0627496378,499137.0127452067,1828.11804,755.5069077354811,1870372.597482506,758659.5986347212,0.38034,100000,0,753224,7855.155440144334,0,0.0,0,0.0,30396,316.38665540364383,0,0.0,33747,348.01697796410434,1582831,0,56786,0,0,6648,0,0,79,0.8238692655049068,0,0.0,2,0.0208574497596178,0,0.0,0.0611,0.1606457380238733,0.307037643207856,0.01876,0.328827412763282,0.671172587236718,24.57664267901398,4.375204262534156,0.3202518363064008,0.2438614900314795,0.2209863588667366,0.214900314795383,11.316304197508284,5.830373118151766,19.898618336880684,12262.461248318132,54.0448077222059,13.90356664955851,17.250880254414948,11.822534300018267,11.067826518214186,0.566211962224554,0.7788296041308089,0.7110091743119266,0.5679012345679012,0.107421875,0.7530959752321982,0.902097902097902,0.8571428571428571,0.7715355805243446,0.1684210526315789,0.4966887417218543,0.7066848567530696,0.6580357142857143,0.4987277353689567,0.0935251798561151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023891476007288,0.0044590376585998,0.0068574442832651,0.0090568489882118,0.0114649293097665,0.0137563338149406,0.0159714795008912,0.0182986536107711,0.0205140778881124,0.0226273041592503,0.0247341134039631,0.0269538183721001,0.0291016708798322,0.0312319855060528,0.0332377987174993,0.0350147142340853,0.0371719136345296,0.0390939892861953,0.0411627303399948,0.0432864855867758,0.0578823382254836,0.0716666492524057,0.0843751963309668,0.0974183455994288,0.1096233604917998,0.1253536590515603,0.137113685949713,0.1485581929067766,0.1605658124760158,0.1709934937077305,0.1845211222186391,0.1969556198954237,0.2082740493749389,0.2181798317491532,0.2283126106219012,0.2385836791147994,0.2478547707669333,0.2570645581562514,0.2657598477812762,0.2726410350187437,0.2800161625490648,0.2861728078058801,0.2926108840000945,0.2973192915270464,0.3032204047954181,0.3086146194943004,0.3136892111513939,0.3185195534274065,0.32292501357045,0.3265448513730549,0.3249677384665018,0.3242857338989799,0.3231301121511089,0.3225485244245616,0.3215562378557973,0.3191339714381823,0.3176695591698674,0.3175050367725344,0.3183212873312423,0.3199743735763098,0.3202078155076716,0.3213194266448471,0.3232922498433256,0.3242804033748135,0.3255636041980444,0.3265671641791045,0.327883690671494,0.3316695782380833,0.3336349714603926,0.3369976359338061,0.3390160079587591,0.3441912114642271,0.345821325648415,0.3515589353612167,0.353789592760181,0.3549268988470224,0.3545398394070413,0.3526165167620605,0.3537396121883656,0.3532526475037821,0.0,2.1917810629967427,56.59409343470889,180.5861293583499,255.17998142083536,fqhc8_80Compliance_implementation,47 -100000,95745,44723,423.9803645098961,6010,61.55935035772103,4768,49.2976134523996,1883,19.33260222465925,77.34647984393533,79.6964650047656,63.33814763576003,65.07426774527191,77.10856861022717,79.4593739364003,63.24949850221349,64.98796436211275,0.2379112337081608,237.09106836530225,0.0886491335465393,86.3033831591622,166.05534,116.3136121126456,173434.99921666927,121482.70104198193,357.49834,232.00300263271737,372898.4072275314,241825.93621882852,367.92912,178.61279544881708,380507.5251971383,183708.9774791833,3356.47166,1539.6097059488663,3472299.744111964,1574694.695230943,1109.37762,492.2147695539799,1145902.7416575276,501312.5798255575,1829.43512,774.5786555936209,1880058.2589169147,783152.720381913,0.38088,100000,0,754797,7883.409055303148,0,0.0,0,0.0,30488,317.9173847198287,0,0.0,33677,348.007728863126,1575831,0,56588,0,0,6508,0,0,61,0.6371089874144864,0,0.0,0,0.0,0,0.0,0.0601,0.1577924805713085,0.3133111480865224,0.01883,0.3316415543219667,0.6683584456780333,24.135307264387404,4.30226584765036,0.3303271812080537,0.2388842281879194,0.2195889261744966,0.2111996644295302,11.4027240543369,6.2213541135381005,20.174321370084808,12267.3053387057,54.38381015971639,13.726187960358816,17.899843829142345,11.719199913629888,11.038578456585348,0.5776006711409396,0.797190517998244,0.7066666666666667,0.5998089780324737,0.1042701092353525,0.7298720842738902,0.9221698113207548,0.8534278959810875,0.75390625,0.1106194690265486,0.5187554521663275,0.7230769230769231,0.6527777777777778,0.549936788874842,0.1024327784891165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0047136818416811,0.0069006809348393,0.0090713313423132,0.0109829763866007,0.0129398110441439,0.0150764525993883,0.0171567376682758,0.019339473173125,0.0216129329497404,0.0239239844606853,0.0260505409233674,0.0281907346863241,0.0301469755178131,0.0322211217036028,0.0342838833707145,0.036257467361032,0.0384691199203228,0.0406120391255989,0.0423384576927884,0.0567184123437973,0.0707393142713609,0.0838342827767811,0.0967613038906414,0.1088595316667896,0.1244502241393893,0.1372305668703326,0.1490788339346722,0.1608801486131574,0.1710127219917901,0.1831854786615563,0.1966518146818358,0.2081535501961764,0.2183705808425769,0.2279737498763342,0.2382322986317141,0.247240002676361,0.2560763010201212,0.2650873072602879,0.2731926882902694,0.2803049584673407,0.2877726448745687,0.2944351717035406,0.2999328553272103,0.3056962717300193,0.3106348913110413,0.31504004004004,0.3191841515583622,0.3227483727081766,0.3267107001321004,0.3260274711202771,0.3262554908359841,0.325046157315406,0.3236221155514429,0.3230593098116181,0.3210650561039916,0.3200145583441466,0.321420370674102,0.3219632237336797,0.3221125528762918,0.3231382978723404,0.3241476038086207,0.3259433269710762,0.3263127266216035,0.3276886440718736,0.3287316652286454,0.329619472060336,0.3335534383548721,0.3351482366165519,0.3371936225906242,0.3378199571109184,0.3400404556584691,0.3447690857681432,0.3460892147876566,0.34960808386061,0.350095328884652,0.3467729572282692,0.3409508263619669,0.3379252178802361,0.3361012257809411,0.0,1.9489693832904968,58.68788879491219,177.49097266602126,256.208061535648,fqhc8_80Compliance_implementation,48 -100000,95745,44777,423.1343673298867,6237,64.14956394589795,4918,50.83294166797221,1895,19.489268369105435,77.41222784566315,79.76819205107951,63.350809200748486,65.0896735345523,77.17823662783996,79.53390626656008,63.26504655211604,65.00630599798063,0.2339912178231884,234.28578451942883,0.0857626486324463,83.36753657167151,167.0394,116.96857154672269,174462.56201368218,122166.57018668028,360.98919,232.5782527772854,376504.2560969241,242388.78796568653,369.18815,177.7402651526701,381964.9172280537,182930.84837150451,3488.89436,1570.518900064383,3607386.73559977,1603924.8592300944,1183.57495,516.6041019681725,1225046.1851793828,528434.5103850568,1860.83844,767.376113474592,1914273.288422372,775393.0633763038,0.38136,100000,0,759270,7930.116455167371,0,0.0,0,0.0,30759,320.7060420909708,0,0.0,33844,349.85638936759096,1573453,0,56396,0,0,6483,0,0,55,0.5744425296360123,0,0.0,0,0.0,0,0.0,0.06237,0.1635462555066079,0.3038319704986371,0.01895,0.3305772469759608,0.6694227530240392,24.74506687662396,4.402919289339173,0.3163887759251728,0.2482716551443676,0.211468076453843,0.2238714924766165,11.162894534454711,5.680391729781142,19.95670424964031,12345.122887569392,55.35663330623366,14.464613339408482,17.435303148519086,11.497901313631017,11.958815504675082,0.5662871085807238,0.7813267813267813,0.7005141388174807,0.5711538461538461,0.1335149863760218,0.7476340694006309,0.914691943127962,0.8779220779220779,0.7330677290836654,0.1904761904761904,0.5032876712328768,0.7108886107634543,0.6421861656703672,0.5196451204055766,0.1200897867564534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025521571804739,0.0047230527542694,0.0072738708761108,0.0094747745552035,0.0116613629662765,0.0142413600040718,0.0164400595225961,0.0185912676142567,0.0206538512636559,0.0228761514841351,0.0248831679921292,0.0271108145562798,0.0296388440542402,0.0318321782025272,0.0338967310549777,0.0357652312335903,0.0377745332546363,0.0395600975255485,0.0417216821749753,0.0436059835826492,0.0584016286474917,0.0723979533112201,0.0861629480441829,0.0988691947614789,0.1110513210095382,0.1271164917033525,0.1396748243584573,0.1515177326107556,0.1626773807488459,0.1731301641807061,0.1863553557761752,0.1982828621850741,0.2089795918367347,0.219416349227199,0.2288493099384286,0.2393225903046569,0.2486282310606483,0.25735683315502,0.2659059945504087,0.2732097010819732,0.2809623600514061,0.2876132082094966,0.2945575011831519,0.2994587085648592,0.3055457778533021,0.3107871863688967,0.3149173341997726,0.3196734838963578,0.324475091035872,0.3280109429048677,0.3270997947493393,0.3263476747214189,0.3259100221717044,0.3253206281577016,0.3233282618650202,0.3217378071977478,0.3192081949929977,0.3191871085594989,0.3196644762535445,0.3206258537191109,0.3222096074745482,0.3234918827663375,0.3246541903986981,0.3257562277580071,0.3260089042079563,0.3282498184458969,0.3294030950626381,0.3307305493956335,0.3352520495377638,0.3388663808362506,0.3425925925925926,0.3464297015082797,0.3479238214174212,0.3513574660633484,0.3561554875220336,0.3573104904951889,0.3550233468895918,0.3557328015952143,0.3559183673469387,0.3552182163187856,0.0,2.064871028058356,55.73030979736379,185.21976276120955,271.86998320059126,fqhc8_80Compliance_implementation,49 -100000,95725,44928,423.6824236092975,6154,63.09741446852965,4832,49.85113606685819,1885,19.294855053538782,77.32373385663094,79.69333187501464,63.321321634088775,65.07507599605206,77.08500365678022,79.45596710649026,63.23247296226375,64.98909685016054,0.2387301998507212,237.3647685243725,0.0888486718250263,85.97914589152822,165.95634,116.25889036935774,173367.81405066597,121450.91707428337,361.11406,234.4304635490559,376614.9386262732,244273.75664565773,370.74726,179.735740674616,382920.2402716114,184363.8562574777,3463.11462,1580.8228785008178,3577655.2624706198,1611366.824669607,1133.88224,504.7914705391183,1169664.068947506,512516.9472441584,1849.7745,788.6784347912463,1896328.231914338,793974.4641445182,0.38237,100000,0,754347,7880.355184121181,0,0.0,0,0.0,30773,320.8148341603552,0,0.0,33961,350.39958213632804,1574234,0,56523,0,0,6502,0,0,63,0.6581352833638026,0,0.0,1,0.0104465917994254,0,0.0,0.06154,0.1609435886706593,0.3063048423789405,0.01885,0.3218657988532465,0.6781342011467535,24.16626197442602,4.354073042124193,0.3168460264900662,0.2338576158940397,0.2259933774834437,0.2233029801324503,10.928126710604076,5.585042323787821,20.451771058942377,12347.006756253591,55.09790691607724,13.664493435729456,17.49823513075338,11.97621710998113,11.958961239613268,0.5581539735099338,0.7991150442477876,0.6890920966688439,0.576007326007326,0.1019462465245597,0.7267175572519083,0.9285714285714286,0.8607888631090487,0.7345132743362832,0.1072961373390558,0.4954571266325951,0.7225352112676057,0.6218181818181818,0.5346420323325635,0.1004728132387706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113475177304,0.0051314815378218,0.0074299634591961,0.0099384183891226,0.0121683216669379,0.0143018671882162,0.0163178721494717,0.0184960117655469,0.0208808401419324,0.0232577192892621,0.0255050764024202,0.0277706456880526,0.0301527699192428,0.0323880381690402,0.0345368592721042,0.0364615639085307,0.0385376210450002,0.0407009316705745,0.0427228680155544,0.0448667854500745,0.0591373711851488,0.0723921757422893,0.0858833279133928,0.0982159762691183,0.1108381137168888,0.1264591439688716,0.1386516734737177,0.1501351322593688,0.1609048092018839,0.1703802191675066,0.1832100520042637,0.1957097887346797,0.2076614437787467,0.2182340979161655,0.2278237338848066,0.2386509588555737,0.2481353059882042,0.2572060838893756,0.2652873823829498,0.2727553542009884,0.2799186531550789,0.287516794205269,0.2937804359131956,0.2996382973626847,0.3055309331552425,0.311045114542385,0.3159554893542451,0.3205954260683543,0.3252301309477505,0.3291832800823849,0.3285904846598488,0.3279377324700372,0.3273058098368055,0.3259616498667593,0.3251548356360171,0.322755299242308,0.3210712928960365,0.321111457598188,0.3220599276499897,0.3215693971131372,0.3222057693389065,0.3232529142834524,0.3233631108775617,0.325181728439379,0.325481488632524,0.3265818809860261,0.3267386262776648,0.3301618409407004,0.3349802371541502,0.3364515871112177,0.3409924784443221,0.3460796915167095,0.3525608519269776,0.3563703305975301,0.3586025049439683,0.3619580752739399,0.3641205112598904,0.3702582728006456,0.3681768558951965,0.3747602608362102,0.0,2.4370768317520985,57.24090731279132,183.77261180177197,261.6861238842337,fqhc8_80Compliance_implementation,50 -100000,95773,44928,425.2868762594886,5988,61.2385536633498,4673,48.12421037244317,1867,19.08679899345327,77.38153749659537,79.72236278611942,63.350937847410606,65.08258817664793,77.14732254682613,79.49128681224286,63.26276957246847,64.99843828656316,0.2342149497692389,231.07597387655687,0.0881682749421344,84.14989008477392,166.21484,116.42584914383968,173550.83374228646,121564.37528723093,358.58707,232.61495893514,373783.3314190848,242251.3640954549,364.81747,176.41915535280026,376643.0517995677,180911.4632657985,3358.58133,1530.826820203317,3464081.191985215,1555657.6177036532,1115.33474,490.3170372999423,1147042.7677946812,494439.5260667852,1840.49894,779.2170138928007,1883657.126747622,779729.220592726,0.38232,100000,0,755522,7888.67426101302,0,0.0,0,0.0,30605,318.8894573627223,0,0.0,33258,342.92545915863553,1575713,0,56555,0,0,6631,0,0,63,0.6578054357699978,0,0.0,0,0.0,0,0.0,0.05988,0.1566227244193345,0.3117902471609886,0.01867,0.3297804645243398,0.6702195354756602,24.38843576330277,4.339562884357195,0.3175690134817034,0.2341108495613096,0.2184891932377487,0.2298309437192381,10.988260916164894,5.566390364783425,19.8880656066358,12292.703203120303,52.84470074688565,12.988793019309387,16.750488889704204,11.37338801248498,11.732030825387076,0.5518938583351166,0.783363802559415,0.694743935309973,0.5514201762977473,0.1191806331471136,0.7174629324546952,0.8968253968253969,0.8634020618556701,0.7391304347826086,0.1238532110091743,0.4937843307314252,0.723463687150838,0.635036496350365,0.4968394437420986,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281188600133,0.0042268939931477,0.006726593888235,0.0089779917329352,0.0109400736116477,0.0130907906389649,0.0153606229869123,0.0172894191612488,0.0194874205481411,0.0216403708023819,0.0236511758979351,0.0259079058118289,0.02799769684756,0.0298905489029149,0.0320481082642241,0.0342212394866814,0.0363847093155618,0.03862500777476,0.0405464367338458,0.0427824746990962,0.0578259689841581,0.0727531350995178,0.086323845468365,0.0988724609354476,0.1104846613482838,0.1263092256148472,0.1385146951277676,0.1500281768014545,0.1612414352494183,0.1711654731786801,0.1853394912207042,0.1978950328833506,0.2094370590984684,0.2194498180268205,0.228501336618959,0.2387922539499762,0.2480484432152734,0.2571052749921302,0.2655975320683671,0.2732786341217801,0.2808322153860387,0.2876015666101595,0.2944913750266202,0.2998933914689218,0.3055491483860003,0.3111234225915666,0.3154876433693995,0.3200061021344758,0.3241058146303602,0.3279907207254705,0.3262270165574939,0.3244394957867678,0.323251950099969,0.3225615393505143,0.3224617761994621,0.3208809035536102,0.3187817098421027,0.31947490751956,0.3201170744988599,0.3210263162577178,0.322200833535799,0.323347270432313,0.3239121338912133,0.3253607786105828,0.3269036994386066,0.3279644037365668,0.3291196773002301,0.3325198673424692,0.3359958144401814,0.3374141063107179,0.3387279568430119,0.3427481320544751,0.3458632414053645,0.3451826989091464,0.349005936116084,0.3547433167731251,0.3580134064594759,0.3604275917708753,0.3658469190384084,0.3657230298393267,0.0,2.6582031798313825,52.547941997288135,180.18542988939265,254.4097059013813,fqhc8_80Compliance_implementation,51 -100000,95859,44941,425.3226092490012,6104,62.49804400212813,4752,49.019914666332845,1865,19.111403206793312,77.37299817448195,79.67363866449367,63.35320242165369,65.05661650007617,77.14079904988905,79.44342816556767,63.26788054748088,64.9746317731283,0.2321991245928956,230.2104989259988,0.0853218741728127,81.98472694787995,164.41964,115.25810141100756,171522.38183164858,120237.12057397592,360.57281,233.7700915352739,375600.8095223192,243321.12884914436,368.57878,178.21953386017702,381112.0708540669,183322.3650601512,3393.77134,1531.4367410345628,3503088.8909752867,1560354.0950515764,1143.26155,497.25915080636673,1180841.2981566675,506959.535600172,1832.14668,759.2518798534495,1879372.4324267933,763655.8800782147,0.38236,100000,0,747362,7796.471901438572,0,0.0,0,0.0,30691,319.5839722926382,0,0.0,33651,347.61472579517834,1583169,0,56807,0,0,6621,0,0,78,0.8136951146997152,0,0.0,0,0.0,0,0.0,0.06104,0.1596401297206821,0.3055373525557012,0.01865,0.3276184538653366,0.6723815461346634,24.661682413612755,4.251399471873652,0.3188131313131313,0.2462121212121212,0.2066498316498316,0.2283249158249158,10.958331772086654,5.662367537184647,19.66183668976645,12326.348936506003,53.68107374818111,13.924515520115689,17.11617672423457,10.87146810694889,11.768913396881969,0.5660774410774411,0.7666666666666667,0.7089108910891089,0.6059063136456212,0.1142857142857142,0.7452282157676349,0.9113300492610836,0.8837837837837837,0.7777777777777778,0.1549295774647887,0.5052156752184945,0.6897905759162304,0.6524017467248908,0.5574412532637075,0.1043577981651376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0046216060080878,0.0070600407778217,0.0093109680563734,0.0115588719679564,0.0138029315960912,0.0157777256836504,0.0178999683637959,0.0199756817787041,0.0219984856856365,0.0243327698376107,0.0265628366524054,0.0286418991829813,0.0306941699604743,0.0329161684054265,0.0348627074362072,0.0369033085724927,0.0388062794673851,0.040790047560697,0.0426468293190448,0.0576409743076409,0.0720809212313736,0.0860920214549111,0.098458436594279,0.110589226475699,0.1264775788306132,0.1398340556750628,0.1512928468146636,0.1620787926010524,0.1712849856414212,0.1832074212780611,0.1959012495135976,0.2074561165154067,0.2180311379340505,0.2280360051058585,0.2379132746303372,0.2476431671371035,0.2572058591904237,0.2656790571580893,0.2739887569696484,0.2810707678075855,0.2876826087465057,0.2939979172583546,0.3004730822204922,0.3061843782241913,0.3115155843995911,0.3159179076461019,0.3195350552566988,0.3246534743163317,0.3288112331081081,0.3275785447836568,0.3261764179638576,0.3260305644842948,0.3261369387607548,0.3257413680394604,0.3236617390505922,0.3221988385524629,0.3225536660161695,0.3225789940626493,0.3239471805852962,0.324727320349479,0.3249175862137033,0.3250203987697972,0.3260855021074463,0.3265188735769922,0.3282204601585857,0.3297793488796396,0.3342034911149552,0.335533476108556,0.3411592366774883,0.3434471515261298,0.3466116489446119,0.3494687873263343,0.3479289038065451,0.349811320754717,0.3495042492917847,0.358195211786372,0.3593589480172591,0.3653363103544516,0.3670110983543819,0.0,2.108561416980097,52.74698200804079,185.6713011219248,260.3793186567946,fqhc8_80Compliance_implementation,52 -100000,95791,44453,421.2086730486163,6027,61.81165245169171,4700,48.48054618909919,1892,19.29200029230304,77.39816222968327,79.72562183552613,63.35848721039546,65.0787403211537,77.16289652296699,79.49566798085318,63.27111173690012,64.99638323780583,0.2352657067162766,229.95385467294227,0.0873754734953422,82.35708334787262,166.11364,116.29789541032304,173412.57529412993,121407.95629059416,356.56505,231.21346148276564,371652.62916140346,240793.1658326624,364.37854,175.81131150712866,376875.7190132685,180868.06390084288,3358.40317,1533.5931719080806,3467325.4063534155,1562334.334027288,1141.54001,505.56106758764327,1179025.0858640166,515101.6041043974,1853.82342,774.4359758943236,1893294.69365598,773166.7652179964,0.37805,100000,0,755062,7882.389786096815,0,0.0,0,0.0,30476,317.5559290538777,0,0.0,33379,344.95933855999,1578526,0,56616,0,0,6460,0,0,60,0.6263636458539946,0,0.0,1,0.0104393940975665,0,0.0,0.06027,0.1594233566988493,0.3139206902273104,0.01892,0.3311790668348045,0.6688209331651954,24.35506745383531,4.397195430832933,0.3182978723404255,0.2395744680851063,0.2197872340425531,0.2223404255319148,11.371676089849116,5.796570717982993,20.03056693157384,12120.36857935043,53.48043068046155,13.39740440862314,17.043522862900836,11.562763588037384,11.47673982090018,0.5606382978723404,0.7904085257548845,0.6931818181818182,0.5682478218780251,0.1157894736842105,0.7207425343018563,0.9230769230769232,0.855036855036855,0.7111111111111111,0.1608695652173913,0.5033227390927477,0.7236315086782377,0.6326905417814509,0.5284653465346535,0.1030674846625766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381560025115,0.004428814658667,0.0061173558414154,0.0082053781785685,0.0103085447059421,0.0123964418751399,0.0146532837417842,0.016936701628372,0.0189008878308932,0.0211581747493349,0.0232458072513805,0.0256744415141968,0.0277680718557951,0.0296621072240919,0.0317944699890719,0.0337619416473018,0.0358764806289763,0.0379717959352965,0.0398852700933219,0.0417907650011455,0.0563903497787795,0.0696370672523794,0.0828388097884208,0.0955574006537252,0.1073100278316606,0.1230364278314552,0.1350769459204344,0.1466272227129069,0.1575316131237183,0.1681553522984376,0.1805669237065437,0.1925198468493802,0.2043785310734463,0.214853010258147,0.2247354017606911,0.2353149445126741,0.2445475224120244,0.2529010929699096,0.2616881791166663,0.2693567224677674,0.2766518295855252,0.283284430052722,0.2898449520653332,0.295755745680255,0.3012927110517691,0.3062840117209623,0.311576447055882,0.3164482964582089,0.3205187946567256,0.3254777322062062,0.3251033238647837,0.3242035501656836,0.322959061527412,0.3230849175074698,0.3216323989386145,0.3195851091456242,0.3175879555759174,0.3175578271410785,0.3181383759429293,0.3186429195414594,0.3196574164111003,0.3197137717685663,0.3203273815753668,0.3208695652173913,0.3218960112937573,0.3246263807667316,0.3256511891279728,0.3271568290472768,0.3301535354942032,0.3334776789229194,0.3373395618848927,0.3411733754275191,0.3425943191000062,0.346897176506115,0.3488936607226216,0.3524804177545692,0.357685297691373,0.3565938511326861,0.3587555066079295,0.3657424990505127,0.0,2.311655187920772,54.25929476662135,182.8957258781303,253.7006454108017,fqhc8_80Compliance_implementation,53 -100000,95868,44634,423.5302707890016,5931,60.63545708682773,4661,47.94091876329954,1818,18.494179496808112,77.3584022892406,79.6409269305436,63.35300198276878,65.04188266940841,77.1330586377663,79.42039504029196,63.26920855958655,64.9626452371515,0.2253436514743043,220.53189025163533,0.0837934231822359,79.23743225690316,167.35246,117.30067800610244,174565.27725622733,122356.21688791092,362.05271,235.1357497067016,377003.2336128844,244616.03424156297,371.50919,179.66740319435883,383352.6724245838,184178.6203274758,3319.01498,1529.15951287165,3417743.1259648683,1550743.2228393734,1130.77927,505.0445918072929,1164108.1382734594,511403.7132382997,1783.41748,754.1378542798274,1817127.070555347,749856.0340817462,0.37896,100000,0,760693,7934.785329828514,0,0.0,0,0.0,30819,320.7743981307632,0,0.0,33930,349.7934660157717,1566309,0,56190,0,0,6550,0,0,76,0.7823256978345225,0,0.0,1,0.0104310093044603,0,0.0,0.05931,0.1565072830905636,0.306525037936267,0.01818,0.3372410470531556,0.6627589529468444,24.434266200876024,4.303488635783385,0.3151684187942501,0.2458699849817635,0.2188371594078524,0.2201244368161339,11.416951641926849,6.0054376185140566,19.439648699887776,12142.817065564186,53.15301413270672,13.6718991278016,16.604872358733637,11.423133915137264,11.4531087310342,0.5745548165629694,0.7905759162303665,0.7052416609938734,0.5950980392156863,0.1257309941520467,0.732751784298176,0.9265402843601896,0.8798882681564246,0.7611336032388664,0.1282051282051282,0.5158823529411765,0.7113259668508287,0.648964896489649,0.5420439844760673,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021261731919934,0.00427597247976,0.0062886064650931,0.008417183644874,0.0106729009961374,0.012711303799143,0.014752027384979,0.0167168137079912,0.0189906374115557,0.021008188593218,0.0231453519915648,0.0252916692296651,0.0274114698874373,0.0290598993961712,0.0310699821721163,0.0330800363426117,0.0352221946375372,0.0372063136730611,0.0394105551747772,0.041240974635344,0.0555225436538962,0.0696748714948389,0.0827800699520388,0.0958136018564213,0.1075333375466093,0.1228081294629653,0.1358222241061399,0.1486735073634962,0.1595879810001601,0.1710098941974766,0.1833941704084159,0.1956519387810286,0.2072612641991412,0.2176303421138922,0.2275810512197535,0.2380025007469045,0.2471479073502024,0.2559023249539056,0.2638928275689962,0.2715516253923163,0.2786352276934469,0.2852748538011695,0.2912748975676764,0.2968075410150628,0.3026438947304443,0.3074921057825143,0.3124060338779192,0.3163661846212652,0.3210962743800366,0.3249318981248842,0.3230926917423026,0.3222695269981675,0.3205064933233689,0.3190806127319804,0.318794442295677,0.3164972323167272,0.3151620829040183,0.3143646136397258,0.3154329119121345,0.3166729165550615,0.3167559869579882,0.3179059330578676,0.3194767624677693,0.3205472103004292,0.3218692128237812,0.32232070910556,0.3234759388671098,0.3259590712810564,0.3285030901916966,0.3316207564320436,0.334589367594316,0.3370087048272224,0.3424425179042593,0.3443865829376627,0.3493416690347636,0.3512381863859313,0.3492800743149094,0.3519156699777012,0.3605032822757111,0.3663141993957703,0.0,2.648297434127802,54.75905560777238,179.51945359142655,249.93592777553243,fqhc8_80Compliance_implementation,54 -100000,95735,44649,422.9801013213559,6085,62.38052958688045,4788,49.459445343918105,1819,18.666109573301306,77.38965647392791,79.75752404796032,63.34469261111818,65.09421570219138,77.16851619210559,79.53700314459864,63.26286534005518,65.01492743106282,0.2211402818223291,220.520903361674,0.0818272710630054,79.2882711285614,167.51284,117.32840805079918,174975.54708309396,122555.39567639754,362.31812,234.36542576103977,377895.64944899984,244242.73007827983,371.90229,179.51205959768825,384946.2161174074,184755.2924343449,3372.59814,1527.2553425540805,3488637.8858306785,1561094.3319901547,1115.83021,489.8785817796644,1153926.0563012485,500101.08491903485,1771.11412,739.1133021059926,1819800.9296495533,746628.3560788523,0.37973,100000,0,761422,7953.433958322453,0,0.0,0,0.0,30870,321.8572100067896,0,0.0,34028,351.98203373896695,1568817,0,56294,0,0,6613,0,0,66,0.6789575390400585,0,0.0,0,0.0,0,0.0,0.06085,0.1602454375477313,0.2989317995069844,0.01819,0.3412448915435397,0.6587551084564602,24.514519741340106,4.308276564951047,0.3310359231411863,0.2424812030075188,0.2203425229741019,0.2061403508771929,11.28668640957562,5.932997783790805,19.290148114177907,12217.777201642755,54.25675350930613,13.93502656022164,17.908547316355538,11.682493134855182,10.730686497873776,0.570593149540518,0.7803617571059431,0.6914826498422713,0.5971563981042654,0.1013171225937183,0.7384855581576893,0.9207459207459208,0.8762376237623762,0.7372881355932204,0.1084905660377358,0.5092671799258626,0.6980874316939891,0.628281117696867,0.5567765567765568,0.0993548387096774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024511789968398,0.004450391816956,0.0065557799449963,0.0086961822134628,0.0107723763312887,0.0130442751822736,0.0153546558456785,0.0174355100499178,0.0194414915365115,0.0215573275464977,0.0236884724984112,0.0258194996252836,0.0276741197635569,0.0297585336971631,0.0320461249664789,0.0344350054773568,0.036665424121935,0.0387173076324553,0.0405749503725952,0.0425314661998833,0.0568913853767527,0.070880564365037,0.0842103054276091,0.0970742022703601,0.1092568173426868,0.1252987837123215,0.1378951835349034,0.1493668191976162,0.1600687732937495,0.170870329858877,0.1840351424972275,0.1967917099342333,0.2083668543845535,0.2196868644901707,0.2291503943851002,0.2392604074402125,0.2492585241843766,0.2586596258637155,0.2665820230578259,0.2734333890045528,0.280754690805674,0.2881248977493164,0.2939174417093088,0.299351317710702,0.3039352497906782,0.3084405590100351,0.3126070807748584,0.3162706132153437,0.3205675410005691,0.3246256853648249,0.3232905810545562,0.3220858474098712,0.3208629855700262,0.3194506556643922,0.3185575868914634,0.3170657219643293,0.3155860545827417,0.3165462923624955,0.317759864234196,0.3186310168018026,0.3198296226029053,0.3217952997074588,0.3222686716166469,0.3222977173816502,0.3218132747378729,0.3237100577914841,0.3235552283602798,0.3248481432776003,0.326271186440678,0.3290345621205507,0.3299594218757124,0.3308980375426621,0.3353044791142426,0.3394564480915455,0.3423973362930078,0.3456054230949041,0.3462118925445215,0.3563035251941844,0.3528776006484734,0.3561436672967863,0.0,2.16087872421978,56.4020150941538,180.87169482031155,258.81349223831666,fqhc8_80Compliance_implementation,55 -100000,95765,44671,422.0539863206809,6104,62.48629457526236,4791,49.48572025270192,1902,19.44342922779721,77.34687979821054,79.70427359718612,63.33382307926016,65.08061353052616,77.11000995878979,79.47051756272823,63.24584559857456,64.99643323000379,0.2368698394207484,233.7560344578833,0.0879774806855948,84.18030052237668,166.59632,116.72809797582173,173963.6819297238,121890.14564383827,360.14689,233.2333014208547,375532.04197775805,243005.97443831744,371.51604,179.5586537274149,384670.61034824833,184933.2168115785,3399.85864,1560.9893775456185,3513226.053359787,1593036.7749654043,1117.42543,496.4703897618097,1152389.766616196,503974.3327539385,1851.25254,776.7368648048283,1894694.575262361,778772.7391844871,0.3809,100000,0,757256,7907.440087714718,0,0.0,0,0.0,30673,319.7305905080144,0,0.0,34017,351.9866339476844,1573872,0,56577,0,0,6675,0,0,76,0.7831671278650864,0,0.0,0,0.0,0,0.0,0.06104,0.160252034654765,0.3115989515072084,0.01902,0.3415129728040012,0.6584870271959987,24.552236762973862,4.236687385556255,0.3243581715716969,0.2421206428720517,0.2231266958881235,0.2103944896681277,11.243915358076716,6.087617306285184,20.33559332728064,12326.975503692733,54.64713402808114,13.941522581174963,17.666531813277025,12.03998079179946,10.999098841829683,0.5689835107493216,0.7767241379310345,0.7014157014157014,0.5837231057062675,0.1101190476190476,0.7541478129713424,0.9223529411764706,0.8671171171171171,0.7300380228136882,0.1597938144329896,0.4981240981240981,0.6925170068027211,0.6351351351351351,0.5359801488833746,0.0982800982800982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584046045964,0.004583620654687,0.0071776649746192,0.009339715641737,0.0115874501505656,0.01381845583593,0.0162911611785095,0.0183952633728052,0.0206804195375273,0.0228836466396363,0.0253032182658888,0.0274660396537738,0.0293288908084983,0.0312435617454365,0.033356038557599,0.0354776352378097,0.0375486703669952,0.0395352456040251,0.0416432774070147,0.0434764498224494,0.0573554892177942,0.0710086407096679,0.0847942792433838,0.0975614883329829,0.1103077571669477,0.1261425959780621,0.1391306191238353,0.1512806064407752,0.1623515857522322,0.1731916580083334,0.1862716623100009,0.1985929039997406,0.209588579747303,0.2200331993709592,0.230049217788715,0.2401996038902842,0.2498912934408134,0.2584594284686467,0.2669473254204207,0.2738517924636353,0.2806664352655328,0.2873337310918471,0.2940410675187881,0.299337097373563,0.3049610953982107,0.3098038733174201,0.3139758855313188,0.3197045399646567,0.3246978441471052,0.328149300155521,0.3271861506799564,0.3257080759866294,0.3248381649310441,0.3238715077349341,0.3231483817353495,0.32139305005126,0.3193556554212292,0.319705104838842,0.321039324882982,0.3213106562204415,0.3222494895187426,0.3225372721161071,0.3244002095337873,0.3252445658257035,0.3253757949508576,0.3257024750143896,0.3275127890028864,0.3298158036081008,0.3321957569573937,0.3342628371111023,0.3387680329745821,0.3390633315593401,0.3413832342900493,0.3445070851744629,0.3468796711509716,0.3499822464196946,0.3520954420312022,0.3503067484662576,0.3575842696629213,0.3517268757443429,0.0,2.1451258533626616,58.366730961661965,178.27343670678428,259.3649476310909,fqhc8_80Compliance_implementation,56 -100000,95756,44862,424.9655374075776,5983,61.37474414135929,4710,48.63402815489369,1871,19.205062868123147,77.36211040614715,79.72417688247438,63.32787542470121,65.07558491473341,77.13679912562293,79.49909079502734,63.2447380409188,64.99468382482699,0.2253112805242239,225.08608744703903,0.0831373837824074,80.90108990641909,166.94326,116.90481731918382,174342.34930448222,122086.15368142344,360.38596,233.1929320908025,375804.0018380049,242975.71224964887,369.55872,178.61252790696702,382191.85220769455,183666.2499766743,3378.78642,1543.6186471802462,3490127.7831154186,1573775.888627441,1143.33939,504.8076106217516,1180134.3101215588,513563.4129705711,1828.53044,763.0521173119904,1877565.270061406,770482.3237243139,0.38067,100000,0,758833,7924.652241112828,0,0.0,0,0.0,30690,319.90684656836123,0,0.0,33859,349.8788587660303,1570835,0,56443,0,0,6635,0,0,62,0.6474790091482518,0,0.0,0,0.0,0,0.0,0.05983,0.1571702524496283,0.3127193715527327,0.01871,0.3330143540669856,0.6669856459330143,24.446498979961053,4.405245987960136,0.3167728237791932,0.2358811040339702,0.227176220806794,0.2201698513800424,11.283599634141408,5.839540809819404,19.74360190944036,12253.148865745425,53.35745816557901,13.351365123766598,16.87220159857543,11.74844854154623,11.385442901690745,0.5673036093418259,0.801980198019802,0.7097855227882037,0.5560747663551402,0.1224686595949855,0.7323506594259116,0.9237875288683602,0.8686868686868687,0.7041666666666667,0.1409090909090909,0.5051154633148203,0.724188790560472,0.6523722627737226,0.5132530120481927,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002309960183581,0.0047356359137647,0.0070348188001218,0.0090939573447676,0.0115558720309241,0.0137593188577015,0.0158770623865559,0.0179081924364943,0.0201736178566681,0.0222208568853936,0.0245918451062433,0.0263060583026891,0.0282298718133371,0.0301725026277282,0.0322317632002642,0.0342727761465613,0.0363984674329501,0.0385337663280869,0.04047732895366,0.0427160802449846,0.0575875242688044,0.07141213148369,0.0846197407609379,0.0976830768907165,0.1106001476637485,0.1258301958627691,0.13818964877107,0.1501048530460608,0.1610880225638615,0.170964456119659,0.183891706781249,0.1953924730019261,0.2066617352710817,0.217219615178464,0.2261611270085846,0.2367852513322771,0.2461196596466936,0.2552487679740768,0.2633555311014555,0.2718902452990083,0.2789814814814815,0.2861788617886179,0.292798390437304,0.298721853192969,0.3040305050578649,0.310069016514666,0.3147763398332874,0.3197501335843871,0.3234704047424895,0.3275950769717836,0.3267120059255269,0.3252002311947816,0.3240142460971043,0.3220970537261698,0.3211783912140101,0.318922392032677,0.3176771989752348,0.3177683444511825,0.3193907280254885,0.3211337271368585,0.3220813651724202,0.3232835762188526,0.3243716758786109,0.3253038870831292,0.3260146055309469,0.3275450345221409,0.3279469297499575,0.3318217357310399,0.333821887213847,0.3386034775066041,0.3430765755590693,0.3467199327165685,0.347125,0.3468190705369228,0.3517676533358077,0.3524416135881104,0.3547752383835326,0.3560365369340746,0.3586281393464758,0.3661160199769496,0.0,2.025271794842224,56.69011792187631,171.93232085365824,257.9186347960819,fqhc8_80Compliance_implementation,57 -100000,95758,44739,423.3588838530462,6109,62.56396332421313,4799,49.51022368888239,1912,19.559723469579566,77.32840490063373,79.68804510839489,63.31625382636724,65.06424548595457,77.08995805372567,79.4542598327537,63.226832497604704,64.97983721679888,0.2384468469080616,233.785275641182,0.0894213287625333,84.40826915568778,166.74834,116.81221336994498,174134.4639612356,121986.3055099313,358.70452,231.94494757308468,373996.7626725704,241624.41734970655,364.02081,175.83042706261256,377042.72227907856,181155.59070444223,3421.47349,1561.2339808244312,3530706.228200255,1588258.304619704,1132.14211,502.4346865473601,1164489.5570082918,507197.1237243594,1868.09578,787.6263125074732,1912090.5825100772,786731.6402577796,0.38088,100000,0,757947,7915.202907328892,0,0.0,0,0.0,30648,319.4302303723971,0,0.0,33253,344.06524781219326,1572361,0,56412,0,0,6572,0,0,66,0.6892374527454626,0,0.0,1,0.0104429917082645,0,0.0,0.06109,0.1603917244276412,0.3129808479292846,0.01912,0.3405751797436699,0.6594248202563301,24.160167085225968,4.30289975969052,0.3094394665555324,0.2448426755574078,0.2292144196707647,0.216503438216295,11.203680226892535,5.850007683334771,20.27991033248944,12297.807199683746,54.35637624281357,13.999553571220874,16.746163853362443,12.272519673595356,11.338139144634892,0.5678266305480308,0.7974468085106383,0.7003367003367004,0.5790909090909091,0.1068334937439846,0.7384615384615385,0.936768149882904,0.8707124010554089,0.7276119402985075,0.1548672566371681,0.5044298370963133,0.7179144385026738,0.6419529837251357,0.53125,0.093480934809348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888268496093,0.0047161200024341,0.0068025829508995,0.0090347364783837,0.0111187971760493,0.0133739406779661,0.0158773861967694,0.0177951566137134,0.0199043120897994,0.0219563125678137,0.0241404760440371,0.0260696353947408,0.0280957229095321,0.0301276174977082,0.0323203137093029,0.034471709424679,0.0365919301078608,0.0388500549667088,0.0407261919607598,0.0429321334833145,0.0571368926465215,0.0709758393473486,0.0846186916083842,0.0972428074380078,0.1088314945362964,0.1250251043813751,0.1370877081344787,0.1490319627899056,0.1597641353230854,0.170186068958121,0.1834564922334489,0.1961802737650814,0.2079583909121573,0.2178858942947147,0.228794433986151,0.2392236365449167,0.2484707090551884,0.2580242048972699,0.2662707110167278,0.2740016505433038,0.2811302626552606,0.2874474980403168,0.2942527918901955,0.3002052008208032,0.3042442220952427,0.308868501529052,0.3140417100362423,0.3189805670595731,0.3238861145340165,0.3284646469982303,0.3279676440849343,0.3268152962723254,0.3261979298869052,0.3249819390261523,0.3247353710751665,0.3220505273485406,0.320376503398989,0.3216158892487792,0.3221707229472028,0.3233527582138643,0.3244949968144511,0.3252005215535975,0.326490509239903,0.3265721441989444,0.3287157287157287,0.3308323563892145,0.33339031826082,0.3364600326264274,0.3364701766660836,0.340228245363766,0.3416261860444,0.3451570335180786,0.3491597426126069,0.3509262759924386,0.3515887850467289,0.3526439482961222,0.3526187576126675,0.3559528646891507,0.3660689655172414,0.3684210526315789,0.0,2.3236263559593926,56.97915262426412,177.2644329484616,261.96818147410795,fqhc8_80Compliance_implementation,58 -100000,95722,44733,422.1913457721318,6179,63.22475501974469,4876,50.28102212657488,1919,19.56707966820585,77.31464774318667,79.68115636288495,63.30648041847581,65.05658947384391,77.07373211937364,79.44375999254414,63.21670889028383,64.97105816050842,0.2409156238130236,237.3963703408037,0.0897715281919744,85.53131333549402,165.45474,115.9270249903225,172849.23006205467,121108.02635791406,362.53968,234.58435668816327,378068.4377677023,244394.5497616708,373.34293,180.8631287623688,386272.1840329287,186007.32852716272,3463.97238,1585.1001612817013,3574281.032573494,1611438.7780663949,1155.53923,513.3467911102957,1190119.0008566473,519238.55509209033,1880.17438,794.4979232506521,1919837.738450931,791524.9469748873,0.38115,100000,0,752067,7856.783184638851,0,0.0,0,0.0,30825,321.31589394287624,0,0.0,34154,353.0431875639874,1574325,0,56507,0,0,6630,0,0,80,0.8357535362821504,0,0.0,0,0.0,0,0.0,0.06179,0.1621146530237439,0.3105680530830231,0.01919,0.3462372251471043,0.6537627748528956,24.29198377086613,4.392705747690168,0.3373666940114848,0.2305168170631665,0.2141099261689909,0.2180065627563576,11.180135974340692,5.735828846366061,20.57147231630052,12352.319616779652,55.438801194740144,13.50331282219698,18.591399710949336,11.612714633586434,11.731374028007398,0.5631665299425759,0.7998220640569395,0.6911854103343466,0.5574712643678161,0.1204139228598306,0.71781033153431,0.9176755447941888,0.8397129186602871,0.7063829787234043,0.1515151515151515,0.5071248952221291,0.7313642756680732,0.6405867970660146,0.5142150803461063,0.1117788461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0046739868803925,0.0072575569946608,0.0096331673610405,0.011872424843583,0.0143139492236847,0.0165372726252537,0.0189091503134508,0.0210271298018931,0.0232689079071291,0.0250376795546122,0.0271996385702991,0.0291307075922935,0.0314164717519654,0.0337328007101642,0.0359036916810536,0.0380652576860548,0.0401672685012244,0.0422667013257083,0.0442346960036671,0.0580723973396535,0.0723369514020452,0.0862340278214892,0.0990040699569867,0.1111907875311089,0.1272375269772756,0.1395817853731026,0.1509343555342597,0.1618527387009877,0.1722343245302456,0.1854248218002221,0.1979717430874577,0.208501737605264,0.2193037246457806,0.2291163662422137,0.2395687606866076,0.2493624446333497,0.2585040151583506,0.267778333864143,0.2754953195888129,0.2822237426507253,0.2886524240897212,0.2938749377534324,0.2997971017972698,0.3051663747810858,0.3104218331667715,0.3153664125004695,0.3196975868037878,0.3235678684704511,0.3277153558052434,0.327072224915172,0.3258814951368157,0.3251860919976923,0.3239902381261823,0.3230293663060278,0.3216736094094584,0.3189289333671142,0.3195261411061089,0.3201436388508892,0.3214929904455755,0.3222522218472269,0.3230614140855092,0.3242881632311745,0.3246814113866137,0.3254479081608146,0.3279225846730139,0.3283760683760683,0.3314820044557406,0.335118485071231,0.3377585796940636,0.3404866047020229,0.3438346703501036,0.3491842671050967,0.3560878549016606,0.362176459474778,0.3647940966436562,0.3670106268288926,0.3696457990115321,0.3671766342141864,0.3604060913705584,0.0,2.56034542937967,56.57537964029528,187.64411781553912,263.4836225906178,fqhc8_80Compliance_implementation,59 -100000,95804,44539,421.0784518391716,6143,62.79487286543359,4832,49.74740094359317,1870,19.080622938499435,77.3504688262772,79.68308191220724,63.33176974345843,65.06000655546173,77.1154798537972,79.45029287880028,63.24468439278705,64.9766644770465,0.2349889724799965,232.78903340695933,0.08708535067138,83.34207841522812,165.8646,116.21799644668393,173129.09690618346,121308.0836360527,360.38392,233.6597634533842,375480.13652874617,243205.74657987585,371.97215,180.7206064923384,383295.540895996,184975.83495442785,3427.01236,1567.0214993919988,3530560.863847021,1589106.5815540033,1126.47466,504.402542797198,1156805.874493758,507493.12098896416,1828.87064,766.8952163433294,1867158.6363826145,765951.849843604,0.38074,100000,0,753930,7869.504404826521,0,0.0,0,0.0,30785,320.6024800634629,0,0.0,34064,350.77867312429544,1574064,0,56572,0,0,6565,0,0,67,0.6680305623982297,0,0.0,0,0.0,0,0.0,0.06143,0.161343699112255,0.3044115253133648,0.0187,0.3470560820257884,0.6529439179742116,24.394313608951645,4.327618622014061,0.322226821192053,0.2425496688741721,0.2214403973509933,0.2137831125827814,11.327652892036786,5.992766398567394,19.929398433246835,12275.390042581184,54.88982805138542,14.090411670785697,17.616040544681248,11.903081160858278,11.280294675060212,0.5709850993377483,0.7841296928327645,0.6929993577392421,0.5990654205607476,0.1161665053242981,0.7413394919168591,0.9225512528473804,0.8476658476658476,0.725,0.1830985915492957,0.5083498443249364,0.7012278308321964,0.6382608695652174,0.5626506024096386,0.098780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603541544259,0.004603388661874,0.0069318989140363,0.0090527620576491,0.0114022417966922,0.0134036788820761,0.0155117026158788,0.0179111183726819,0.0203263670197537,0.0224290072272382,0.0247226266893624,0.0268732735693088,0.0291344008062608,0.0311547334596687,0.033117090729071,0.0352242198801405,0.0371627916606281,0.039010880726903,0.040905831367373,0.0429857893914944,0.0577121694225653,0.0716018402342116,0.084968142186452,0.0974615449272926,0.1094031501870094,0.1249114946051338,0.1371815126228621,0.1487761549671833,0.159633184229911,0.169436675560699,0.1823024276859504,0.1949816758737743,0.205698952765828,0.2162203519510329,0.2262911831032396,0.2360214041190742,0.2460940987411838,0.2552798874824191,0.2633210332103321,0.272155668048652,0.2795589443358132,0.2865328172686771,0.2933806566104702,0.3000071883835721,0.30548163270266,0.3106667982337124,0.3160974265166512,0.3202191361956937,0.3245159283548044,0.3282742223102833,0.32742992797216,0.3267725217774837,0.3264822468930299,0.3254246115563786,0.3246394052044609,0.3228812260536398,0.3212304668927699,0.3213616489693941,0.3229086559001965,0.3229403041077778,0.323601565572389,0.3246830193150847,0.3259367804061126,0.3258231073559981,0.3271590089006495,0.3272528274352426,0.328054813214306,0.3313678135683593,0.3351955307262569,0.338586418530984,0.3395909853534666,0.3412106793550092,0.3430057658561042,0.3432091300733126,0.3445566778900112,0.3485861785756189,0.3517702476827229,0.3491776975531488,0.3539295392953929,0.3482074752097635,0.0,2.702594650634478,56.35822254614069,183.8214411195198,261.3103725658348,fqhc8_80Compliance_implementation,60 -100000,95729,44321,420.3637351272864,5954,60.984654597875256,4737,49.03425294320425,1956,20.129741248733403,77.30949638025908,79.6691157251291,63.31695901961641,65.05935816670663,77.06698053488131,79.42512737180492,63.22775461730952,64.9711623724003,0.2425158453777669,243.988353324184,0.0892044023068976,88.19579430632984,167.4552,117.31227320907102,174926.3023744111,122546.22236633729,363.27824,235.9973636198683,379009.2970782104,246059.7754856465,369.80347,178.76433031565506,383311.13873538846,184393.40887601263,3415.37471,1570.9652664657574,3537979.724012577,1612058.145889416,1163.70524,512.9209137644651,1205442.1544150675,525622.7410340284,1921.4553,802.3873388678547,1979651.4744748196,816482.4536142343,0.3776,100000,0,761160,7951.195562473232,0,0.0,0,0.0,30964,322.98467549018585,0,0.0,33777,349.85218690261047,1563217,0,56168,0,0,6608,0,0,80,0.8356924234035663,0,0.0,0,0.0,0,0.0,0.05954,0.1576800847457627,0.3285186429291233,0.01956,0.3449606172641054,0.6550393827358946,24.09952351890505,4.339175032300707,0.3107451973823095,0.2332700021110407,0.2237703187671522,0.2322144817394975,11.39282970277294,5.892328623282634,20.81362004748438,12119.096535496908,54.2092246774036,13.123263308757542,16.895893129539292,12.02157899894021,12.16848924016655,0.5651256069242137,0.7728506787330317,0.7167119565217391,0.5830188679245283,0.1363636363636363,0.7313432835820896,0.9175824175824177,0.8699763593380615,0.7410358565737052,0.1829787234042553,0.504041570438799,0.7017543859649122,0.6549094375595805,0.5339925834363412,0.1236994219653179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888161959064,0.0047035925715675,0.0068785001217433,0.0091208255464369,0.0112235042952269,0.0135576658829277,0.0154512561789736,0.0173527820592648,0.01940844609787,0.0213793738678347,0.0233704732520833,0.0255559890753023,0.0277634961439588,0.029617729444719,0.0317537255710823,0.0338471711369178,0.0359752437333112,0.038050298159191,0.0398781932694506,0.041832461823712,0.0561037496475895,0.0701936159079016,0.083430345362825,0.0967772462015666,0.1092810898584955,0.1245558375634517,0.1373763951958579,0.148869587431345,0.1600440086308188,0.1702960318226168,0.1832792924777283,0.194835985709646,0.2053363511719515,0.2154613902994221,0.2252562733288556,0.2357329726853494,0.2458976106165034,0.2547851067425224,0.2627327569557264,0.2694494760736478,0.2761372058551047,0.2834907371648585,0.289074435956653,0.2952672305200647,0.3006855309218203,0.3058420091774806,0.3106944374906123,0.3148131644280348,0.3190320030071679,0.3231243060328874,0.3222234211875152,0.3206041646569188,0.3195477578443688,0.3187065972222222,0.3179382609472211,0.3170795346410044,0.3148918601327532,0.3159930858506873,0.316462421801354,0.3173507797096254,0.3175922096477046,0.3182170311661998,0.3198257905699678,0.3205441932514649,0.3222007255139056,0.3229738921153142,0.3222298731852872,0.3248626807247932,0.3268052131032053,0.3304220096073683,0.3321033210332103,0.3361697601446577,0.3373288751498328,0.3388871904616325,0.340702947845805,0.3405771286070538,0.3429973922380733,0.3471481329503488,0.3511724137931034,0.3558023745691306,0.0,1.7012925763057956,56.39434551974549,187.9137191800877,250.44108967878864,fqhc8_80Compliance_implementation,61 -100000,95738,44640,424.0740353882471,6061,62.14878104827759,4772,49.30121790720508,1878,19.24000919175249,77.40440741590693,79.7611049709451,63.3594678928421,65.0992320373492,77.1715114516703,79.52864501643597,63.273161760427726,65.01557976687661,0.2328959642366328,232.4599545091246,0.0863061324143714,83.65227047258372,166.947,116.89767377149462,174379.0344481815,122101.64592063196,359.71218,232.3827770087738,375172.8258371807,242175.05797987612,365.7802,176.6867431936176,378301.5521527502,181672.16687282608,3434.95762,1562.2003104662608,3551812.080887422,1595684.618924837,1123.42533,498.6422774980505,1157480.0288286784,504883.3039107252,1841.46178,770.9125055604857,1888565.6479140988,776564.4078705771,0.38117,100000,0,758850,7926.319747644613,0,0.0,0,0.0,30724,320.3534646639788,0,0.0,33556,346.7693079028181,1574782,0,56485,0,0,6473,0,0,59,0.6058200505546387,0,0.0,0,0.0,0,0.0,0.06061,0.1590104153002597,0.3098498597591156,0.01878,0.3364280094413847,0.6635719905586153,24.27135223648713,4.392995093879886,0.316848281642917,0.2376362112321877,0.2229673093042749,0.2225481978206203,11.279215216360958,5.901886235463252,19.89510946110418,12257.417514044037,53.990102523395706,13.670422044329442,17.129565247049,11.788502037751597,11.40161319426566,0.5699916177703269,0.791005291005291,0.7123015873015873,0.5864661654135338,0.1148775894538606,0.764484574868322,0.9342105263157896,0.8867469879518072,0.7169811320754716,0.1658031088082901,0.4949172233517281,0.6946902654867256,0.6463081130355515,0.5431789737171464,0.1035673187571921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043780086141373,0.0064925842514253,0.0086426649063118,0.0106148261873049,0.0128562703583061,0.0149910828025477,0.0171831474546697,0.019280481450072,0.0213767485648209,0.0233578288185796,0.0254744383204524,0.0275835835012542,0.0296956275428748,0.0315540742728013,0.0334422230032873,0.0355219552609776,0.037595310960112,0.0395036323387272,0.0413094878498442,0.0559406974316141,0.0705338175120608,0.0835719755378628,0.0962519055879724,0.1085661884835516,0.1244951043627212,0.1365907475574697,0.1488077496274217,0.1598935965643228,0.1704285913423905,0.1828548661512286,0.1954708243619012,0.207628639483158,0.2180464282199599,0.2277793057923978,0.2382207359340915,0.2482678597328989,0.2575360640438952,0.2649850857991856,0.2734140701907007,0.280746561886051,0.2883394041281404,0.2941718226042601,0.2999450365626344,0.305508454047769,0.3108880232972488,0.3149318215873333,0.319388402486994,0.3233733197319319,0.3277651360700803,0.3267264285139161,0.3262265393480408,0.3254030672434133,0.3234226447709594,0.3228323143199751,0.320441398678246,0.3186886074350147,0.3195026178010471,0.3208035410282601,0.3224647348666773,0.323620663875598,0.3245163837347019,0.3252483010977522,0.3265174151540828,0.3268613068699362,0.3281030444964871,0.3297772733721095,0.333176706449895,0.337134860941053,0.3405754086034271,0.3446507194407879,0.3480057206419831,0.350307287093942,0.352107337780473,0.354015278554127,0.3534381600563248,0.3552912473315035,0.3608599557966646,0.3735473159933591,0.3795677799607073,0.0,2.1691738011566684,58.29461863620577,171.20498941239777,260.1404831256364,fqhc8_80Compliance_implementation,62 -100000,95749,44937,424.9861617353706,6040,61.74477018036743,4801,49.556653333194085,1908,19.58244994725793,77.33232137485312,79.69786684248916,63.31916690730778,65.070965521559,77.09501618825803,79.46039296074288,63.23026279131887,64.98397276755384,0.2373051865950941,237.4738817462827,0.0889041159889103,86.99275400516626,166.67618,116.71705920445297,174076.15745334156,121898.98505932488,362.44269,235.2214766242688,377955.7802170258,245086.2845818429,372.9197,180.67124596517007,385658.8162800656,185773.40192037783,3429.14482,1571.4598626529864,3543496.4542710627,1603335.2438698946,1151.55939,514.2164631784209,1188956.3964114506,523322.5956540956,1863.41246,791.759330104952,1914861.43980616,801551.6215974642,0.38056,100000,0,757619,7912.552611515525,0,0.0,0,0.0,30844,321.5281621740175,0,0.0,34072,352.00367627860345,1570099,0,56336,0,0,6529,0,0,67,0.6997462114486835,0,0.0,1,0.0104439733052042,0,0.0,0.0604,0.1587134748791255,0.3158940397350993,0.01908,0.3331212217626471,0.6668787782373529,24.50238978704919,4.272648810876299,0.3290981045615497,0.2334930222870235,0.2162049573005623,0.2212039158508644,11.168749707619217,5.946078337373578,20.44651797817401,12303.245568686916,54.48303167201343,13.372998848399892,17.874527742621638,11.60781255986191,11.627692521129992,0.5665486357008956,0.7743086529884032,0.709493670886076,0.5761078998073218,0.1252354048964218,0.7388932190179267,0.9238578680203046,0.85785536159601,0.7677165354330708,0.1923076923076923,0.503695281409892,0.6932599724896836,0.6590330788804071,0.514030612244898,0.1062801932367149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0046962642891194,0.0072293071237105,0.0097568908041304,0.0120350777244241,0.0142215340104522,0.0166231541160153,0.018713820457585,0.0208373805020193,0.023013923013923,0.0250750920069299,0.0270725322108721,0.0290902734218346,0.0312377695841143,0.0333041011091049,0.0353374055584839,0.037565880074966,0.0395057629861709,0.0417134306023194,0.0434922982388535,0.0574769038050002,0.0713149744705783,0.0852264384452415,0.0983765141318977,0.1111439145517234,0.1270069595752332,0.1394571537710623,0.151486444773228,0.1622663676172167,0.171826243606378,0.1842867760316246,0.1960436325859233,0.2077372469239221,0.2186553206383234,0.2286843031957038,0.2392380530483415,0.2487249595446682,0.2571971999009611,0.2656035412292151,0.2742258829459407,0.2815538475784795,0.287558067422567,0.2936484455437342,0.2992317556959142,0.3047592439628784,0.3101225254542317,0.3141112279120989,0.3187817904374364,0.3235636796727338,0.3269235841840099,0.3265556034018732,0.3248232413546452,0.3240446084091357,0.3230078271669122,0.3213993909232712,0.318866538072931,0.3166862142200526,0.3176783340717767,0.3187889125799573,0.3199721468361662,0.3211329466749253,0.3221309040499059,0.3229164480449976,0.3235853915224255,0.3248752981999566,0.3259599332220367,0.3274477416415105,0.331915295897145,0.3362226277372263,0.3376194267515923,0.3398597577634095,0.3426330950602795,0.3438647587691528,0.3457986720598336,0.3470055124731384,0.3493905297702766,0.3493975903614458,0.3539752297243308,0.3588907014681892,0.3686618375905451,0.0,2.2511516828102724,56.06655298605746,179.54106099933497,264.99018034944,fqhc8_80Compliance_implementation,63 -100000,95720,45092,427.5595486836607,6137,62.703719180944425,4806,49.56122022565817,1856,18.96155453405767,77.41699606751023,79.77086489427053,63.36600846061516,65.10087021220534,77.17557151548444,79.53309741881039,63.27428597034961,65.01376717685837,0.2414245520257907,237.76747546014576,0.0917224902655533,87.10303534697061,166.24102,116.42663006588604,173673.81947346427,121632.04833460724,362.33934,234.81671954483383,377890.6080234016,244666.25903137677,371.02577,179.63731040727936,384122.9314667781,184981.394612978,3450.105,1579.9644651398708,3558688.8111157543,1604962.9772668914,1158.81937,511.367742242031,1193263.4872544922,516939.9816189748,1825.0596,782.9690406310333,1865824.3836188884,780877.2697298744,0.38268,100000,0,755641,7894.264521521103,0,0.0,0,0.0,30895,322.0748015043878,0,0.0,33929,350.9611366485583,1573818,0,56497,0,0,6592,0,0,66,0.6790639364814041,0,0.0,0,0.0,0,0.0,0.06137,0.1603689766907076,0.3024278963663027,0.01856,0.3357287923761912,0.6642712076238088,24.40770458246188,4.342392070800156,0.3183520599250936,0.2392842280482729,0.2134831460674157,0.2288805659592176,11.029017703760164,5.599359065946032,19.781707304323486,12308.990032985152,54.27015875834413,13.813172653807866,17.153739228424506,11.255992995935582,12.047253880176177,0.55638784852268,0.7852173913043479,0.7052287581699347,0.550682261208577,0.1154545454545454,0.7116704805491991,0.9334916864608076,0.8670076726342711,0.6733067729083665,0.1290322580645161,0.498140200286123,0.6995884773662552,0.6496927129060579,0.5109677419354839,0.1115023474178403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020648191258932,0.0041131001225825,0.0064305420318078,0.0087734440845256,0.0108792907109158,0.0127852765732201,0.0151261874668732,0.0175239844866299,0.0195290943650745,0.0216272622177662,0.0236606959872115,0.025924177425645,0.0278894291559155,0.0299787851949496,0.0319499035416215,0.0342465045624115,0.0363402942424964,0.0381683348026759,0.0405866090173987,0.0426611382554251,0.0578585748893158,0.0716684978810233,0.0849831607440747,0.0978270015566494,0.1098137248697339,0.1257919509228409,0.1386001018416362,0.150626457031541,0.1610766222526151,0.171067590467406,0.183549074931616,0.1952974528771451,0.2066157926776241,0.2178026371849634,0.2279381058091742,0.238407737765875,0.2482996989630951,0.2574675945183303,0.26619488296135,0.2738157924860917,0.2816883492338826,0.288482893244965,0.2951825749692555,0.30083218583488,0.306279735896689,0.3110758012465203,0.3163811429285982,0.3216578729896382,0.3265390584583549,0.33004127164124,0.3286067911532045,0.3268279274326553,0.3259758724081139,0.3256549950143788,0.3245362600804954,0.323297688436061,0.3208605139707159,0.32116501677166,0.3217318787548717,0.3227939216209011,0.3245496251538547,0.3256390090444357,0.3259889834752128,0.3260594209017577,0.325238072450591,0.3275110303659486,0.3289108124964563,0.3318147778332501,0.3361315266989446,0.3391808254819253,0.3418332806787922,0.3415932936152264,0.3449887808526552,0.347911771393921,0.3544091628643263,0.3573352066502751,0.3593939393939394,0.36,0.3679676985195155,0.3685981308411215,0.0,2.44660147394854,57.14194438200923,174.62796243810527,263.1365903796544,fqhc8_80Compliance_implementation,64 -100000,95699,44718,423.7348352647363,5953,61.22321027387956,4686,48.41220911399283,1839,18.8298728304371,77.3508434030137,79.74061334309339,63.31502979323547,65.08243031799863,77.12358046057193,79.5183175974167,63.22964961668681,65.0022769783604,0.2272629424417687,222.2957456766892,0.0853801765486608,80.15333963822968,166.51404,116.62978902325968,173997.450339084,121871.27162791645,357.18556,231.98491658408992,372677.5514895663,241851.36081262064,367.82579,177.8936703937742,381669.70396764856,183805.99167166583,3342.03918,1517.2769773312502,3453505.041849967,1546766.5001465518,1117.33622,490.0225582153721,1155189.6153564823,499708.1582012281,1802.16204,755.3869220145294,1846051.9754647384,755221.6246019292,0.38091,100000,0,756882,7908.97501541291,0,0.0,0,0.0,30435,317.4432334716141,0,0.0,33643,348.8437705723153,1572234,0,56366,0,0,6350,0,0,62,0.6478646589828525,0,0.0,0,0.0,0,0.0,0.05953,0.1562836365545667,0.3089198723332773,0.01839,0.33263429585417,0.66736570414583,24.494024924117365,4.282042619236159,0.3137003841229193,0.2479726845924029,0.2148954332052923,0.2234314980793854,11.187673648843043,5.85630682476098,19.56701447683835,12227.198138904514,53.15067253047859,13.983347581320327,16.687424084154205,11.094730556101926,11.385170308902122,0.5529236022193769,0.7685025817555938,0.6877551020408164,0.5551142005958292,0.1222540592168099,0.716441620333598,0.9170506912442395,0.8337801608579088,0.6810344827586207,0.1590909090909091,0.492850889991246,0.679945054945055,0.6381039197812215,0.5174193548387097,0.1124546553808948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0044721177150622,0.0065577764468221,0.0089133262866899,0.0111701153634865,0.0135795929178297,0.0156994358812188,0.0178932532630675,0.0199629784927542,0.0222035599434669,0.0241308583735001,0.026180645426347,0.0284403575359233,0.0304453991901832,0.0323236493111099,0.0342186062379175,0.036168294982439,0.0380108157482276,0.0402463254033474,0.0424285386652211,0.0566993617665799,0.070514565750068,0.084669969768223,0.0972099482388587,0.1094994461733213,0.1253160673289533,0.1379669040770186,0.1492907650366331,0.1609175743711986,0.1715371159356521,0.1835135339075317,0.1961089999675208,0.2075956254420806,0.2179175695493247,0.2281174993944465,0.2375999379026624,0.2470075926753014,0.2558521838019209,0.2651575384475591,0.27264389953113,0.2792835558231351,0.2861525132011849,0.2922338724009241,0.2979103689842138,0.3033003099738649,0.3095605005239474,0.3140429685056119,0.3187924585909472,0.3234121848956985,0.3267352863552388,0.3263288342897169,0.3249549438001293,0.3245925175238577,0.3228363510352595,0.3219067388242271,0.3196185119520695,0.3175024488893102,0.3177345144335467,0.3177732676138011,0.3192633753651065,0.320109132360361,0.3213294763563374,0.3213548723293382,0.3218495618522308,0.3216413446584519,0.3216248444628785,0.3223338790718681,0.3258986979004423,0.3290452680620263,0.3323546682325308,0.3340518209169698,0.3356808745466968,0.336905058559681,0.3373439273552781,0.3375796178343949,0.3413621262458471,0.3413373860182371,0.3461844197138314,0.3451160280626011,0.3504208110175975,0.0,2.068556545836856,55.30934117243242,179.31657868677507,250.50767856351905,fqhc8_80Compliance_implementation,65 -100000,95724,44342,420.4170323011992,6017,61.60419539509423,4697,48.50403242655969,1844,18.898081985708917,77.26691653433518,79.62637078062646,63.2951211478972,65.03928587444447,77.03710996099746,79.39896892424446,63.2106457210462,64.95789138525359,0.2298065733377257,227.40185638200217,0.0844754268510001,81.39448919088466,165.92048,116.12384089568488,173332.16330282897,121311.10368944558,354.14013,229.73855040968903,369403.76499101584,239445.1552480977,363.39804,176.5470441506794,376126.3528477707,181689.83392414107,3332.07451,1528.8061151253555,3443780.170072291,1559959.607961802,1139.33471,507.94521970377366,1174641.4692240192,515047.7515605005,1809.45842,754.7264137954987,1856727.9888011368,760663.927489878,0.37828,100000,0,754184,7878.734695583134,0,0.0,0,0.0,30169,314.59195186160207,0,0.0,33341,344.8247043583636,1576814,0,56640,0,0,6521,0,0,58,0.605908654047052,0,0.0,0,0.0,0,0.0,0.06017,0.1590620704240245,0.3064650157885989,0.01844,0.333755942947702,0.6662440570522979,24.426024995051687,4.315610157082264,0.3159463487332339,0.2476048541622312,0.2103470300191611,0.2261017670853736,11.45983818726571,6.020440323437953,19.75452818897533,12200.296642248535,53.64923214674921,14.001591695267068,16.833869097211814,11.212930622106551,11.60084073216378,0.5703640621673408,0.7996560619088564,0.6994609164420486,0.5657894736842105,0.1431261770244821,0.7595129375951294,0.9260869565217392,0.8822055137844611,0.726530612244898,0.2,0.4968962459355601,0.716927453769559,0.632258064516129,0.5127860026917901,0.1291079812206572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0045524135903233,0.006768275358201,0.0090815818612163,0.011187274983219,0.0132772647205563,0.0156379020337428,0.0178642521003256,0.0200259652637927,0.0223652964297412,0.0245815095384047,0.0268264136996427,0.0286595711861792,0.0306423038892551,0.0324567466908768,0.0341526947964689,0.0362235546304638,0.0380341747331071,0.0401438609621221,0.0419254011252344,0.056124047196408,0.0703362954124407,0.0832546328359462,0.0956263743200732,0.1082181664732566,0.1235185812240751,0.13574021782977,0.1478578502891343,0.1588918944926172,0.1691997252275459,0.1820759089782147,0.1941278439869989,0.2057318321392016,0.2162082256580964,0.2252253244893012,0.2363771557942867,0.2457901916497081,0.2548191210103536,0.2628481846685145,0.2706680728139758,0.2781043860664275,0.2859299658255699,0.292067250769595,0.2977815085741696,0.3032708178867915,0.3080101128445458,0.312893968444929,0.317364888102001,0.321769016276506,0.3261761126104672,0.3255345877966742,0.3240582191780822,0.3231195409446816,0.3221377362589615,0.3217291564254964,0.3199060138829166,0.3189126497410314,0.3194490212878139,0.3211254565094388,0.321358858186637,0.3217546496336652,0.3222378620566603,0.3232100012627857,0.3225835409232703,0.3244647431250302,0.3260590836538713,0.3281684089932694,0.3316455696202531,0.3354414638479304,0.3368785754572556,0.3409781707654048,0.3465857196583033,0.3513667787150377,0.3506265281173594,0.3528134441087613,0.3558718861209964,0.3549670901576611,0.3560866923232732,0.3604298704877376,0.3677893921796361,0.0,2.225113868202104,57.49455092874208,175.1969436483524,252.9417537016679,fqhc8_80Compliance_implementation,66 -100000,95701,45087,426.4009780462064,6045,61.94292640620266,4739,48.91275953229329,1831,18.73543641132277,77.288290147924,79.6581523547608,63.294707477804174,65.04425726896368,77.06003155382544,79.43196268430222,63.20964677339117,64.96271020691776,0.2282585940985626,226.18967045858085,0.0850607044130029,81.54706204591378,165.22902,115.83396148846212,172651.29935946333,121037.35748682052,359.90287,233.49922724984103,375487.1004482712,243405.259349266,370.10319,179.42196544192947,383340.4457633672,184838.59802812335,3373.11281,1528.9929625628483,3483587.966687913,1556628.1152368833,1106.14929,492.0812500367303,1136358.7005360443,494736.0523619597,1791.107,751.2762068467641,1833812.8964169647,752424.4147457704,0.38282,100000,0,751041,7847.786334521061,0,0.0,0,0.0,30673,319.892164136216,0,0.0,33866,350.4770065098589,1571556,0,56409,0,0,6619,0,0,62,0.6478511196330238,0,0.0,2,0.0208984232139685,0,0.0,0.06045,0.1579071103913066,0.3028949545078577,0.01831,0.3421135646687697,0.6578864353312303,24.50586741666065,4.31035262815143,0.327917282127031,0.2357037349651825,0.2190335513821481,0.2173454315256383,11.248892728068146,5.942143975829568,19.39833798762289,12336.292060758657,53.45788508751146,13.436940144192702,17.350574137340917,11.413971500589865,11.256399305387996,0.5604557923612576,0.7726051924798567,0.6808236808236808,0.5924855491329479,0.116504854368932,0.7375201288244766,0.8788598574821853,0.8606965174129353,0.7718446601941747,0.1924882629107981,0.4975693451529883,0.7083333333333334,0.6180555555555556,0.5480769230769231,0.0966952264381885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179685838422,0.0047039263592218,0.0067175386613629,0.0092037627745382,0.0117260597184932,0.0141636713539492,0.0162619033053975,0.0183534935946511,0.0206993836183544,0.0228828736632042,0.0250476561379055,0.0270988801182496,0.0290764026691068,0.0310707407750692,0.0332439401753481,0.0353857919431181,0.0373879190739475,0.0395591623253979,0.0414491065299244,0.0435969858359302,0.0584358615503519,0.0727672495026698,0.0867977203790971,0.0999884236116226,0.1119192644279998,0.1277978950934925,0.1401219097782686,0.1513546916118859,0.1628028828674693,0.1728266471952581,0.1856936416184971,0.1976359952763242,0.2090090286324181,0.2188499102176674,0.2286340555365856,0.2384101551230554,0.2490076148091825,0.2580146818371466,0.2665726214718831,0.2746503135120237,0.2820426578211804,0.2880475565143983,0.2951037501927891,0.3007027449096042,0.3059134416327723,0.3113411485676874,0.3161997288748305,0.320167327730235,0.3233640247782554,0.3275471997671434,0.3257300870034397,0.3250337959003503,0.3242005906374079,0.3222814746116392,0.3221581511778641,0.3205862042507481,0.3185025449125533,0.3187615040757297,0.3195858646359202,0.3209318124932956,0.3211926743226,0.3222802230395065,0.3240243390684011,0.3238329238329238,0.3260546500479386,0.3274609516890664,0.3291667850345161,0.3323287499215169,0.3342919267728133,0.3378850428707526,0.3410211910851297,0.3417021276595745,0.3450461190939323,0.3493135098232572,0.3473899312650938,0.3493030338526414,0.3520084566596194,0.3556845476381104,0.366657660091867,0.3744824990590892,0.0,2.350344460257458,54.11983268947745,175.1722952138037,264.70317791126286,fqhc8_80Compliance_implementation,67 -100000,95830,44681,422.341646665971,5981,61.11864760513409,4714,48.627778357508085,1840,18.86674319106752,77.36488025655099,79.67951531315013,63.35773544642036,65.07110896544847,77.13478725386153,79.45031951855539,63.27193554909495,64.98798337854068,0.2300930026894576,229.19579459474448,0.0857998973254083,83.12558690779781,166.16908,116.42953238592352,173399.853907962,121495.91191268236,357.66747,231.5493008706562,372693.08149848686,241086.93610628837,361.99988,175.08516804378726,374143.1180214964,179904.51446029698,3393.47339,1540.5923596318237,3506314.2961494317,1572805.968519068,1134.19389,501.1036436250026,1170821.9972868622,510183.1092820648,1810.52578,769.0274363280789,1859162.0995512889,775799.0102875452,0.38012,100000,0,755314,7881.811541271001,0,0.0,0,0.0,30498,317.6667014504852,0,0.0,33079,341.57361995199835,1580215,0,56656,0,0,6467,0,0,62,0.636543879787123,0,0.0,0,0.0,0,0.0,0.05981,0.1573450489319162,0.3076408627319846,0.0184,0.3384321223709369,0.6615678776290631,24.42035607829955,4.36364934171057,0.3235044548154434,0.231862537123462,0.2165888841747984,0.2280441238862961,10.733770592271943,5.445847650893314,19.81524278975803,12272.945384960369,53.36531324476434,12.9720997276893,17.20798600090525,11.279489474125516,11.905738042044266,0.5589732711073399,0.7932296431838975,0.6924590163934427,0.5710088148873653,0.12,0.7058346839546191,0.9224806201550388,0.8377659574468085,0.7081545064377682,0.1428571428571428,0.506896551724138,0.7223796033994334,0.6449086161879896,0.5304568527918782,0.1135005973715651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020358553631115,0.0042276653554483,0.0064940336066239,0.008714906756592,0.011114387691807,0.01339958457215,0.0153927704948113,0.0179063642117728,0.020097317631665,0.0223245816060187,0.0243307506251793,0.0264154428742957,0.0284586686399654,0.0306813503499382,0.0328615752528011,0.0348419466066524,0.0367094892322969,0.0387823402028742,0.0410458222143769,0.0429793166590369,0.0575424762977565,0.0707499346746799,0.0839697055403664,0.0973622311827957,0.1097643168558731,0.1250633552965027,0.1383956947328276,0.1499824600567656,0.1609720192441035,0.1719166711294382,0.1848556890672232,0.1970229279946382,0.208083441981747,0.2182431768290685,0.2278976229985604,0.2378240290188445,0.2469391620155298,0.2558761103686817,0.2647688283452797,0.2724404047333219,0.280004619204342,0.2870884893766052,0.2934414026962203,0.2992082665582318,0.3043087753368127,0.3098978210020928,0.3154308717448649,0.3204365835683972,0.3243124426227388,0.3277967307261686,0.3265564071534221,0.3254103544032333,0.3242862575529233,0.3228846014885468,0.3219560076741177,0.3202384966739217,0.3191202587847266,0.3199894740304595,0.3200520521206102,0.321360855722105,0.3220074461283893,0.32249042981534,0.323355809019682,0.3239850247718968,0.3261951113995241,0.3280940465019289,0.3304330518354232,0.3335009270024824,0.3355683493646001,0.33762352566146,0.3412792825768667,0.3410620792819746,0.3410029873514269,0.3421477438696287,0.3445529534464777,0.3482652091254752,0.3524527141319391,0.3507264170247595,0.3504013285358427,0.3493788819875776,0.0,2.2321321354762174,54.04920102318681,176.94671333711847,261.75916982183253,fqhc8_80Compliance_implementation,68 -100000,95638,44798,425.3748510006483,6189,63.52077626048223,4851,50.14743093749346,1857,19.051004830715826,77.2563444549925,79.66710224625265,63.27473565930678,65.05578036060234,77.01777881226569,79.42949010285854,63.18559501873579,64.96945187799197,0.2385656427268117,237.6121433941165,0.0891406405709887,86.3284826103694,164.96128,115.62157697082198,172484.8491185512,120894.81399276832,357.25822,231.03365179484223,372978.71139086975,240998.9736849855,368.7623,178.42168278876323,381648.5288274535,183488.45935095425,3433.72258,1566.038345102324,3553812.3026412097,1601147.47215107,1123.29307,496.07654907734207,1161353.5519354232,505679.811830712,1817.79136,769.579340004134,1867653.861435831,776793.0058606808,0.38142,100000,0,749824,7840.2204144796,0,0.0,0,0.0,30370,316.9451473263765,0,0.0,33802,349.5577071875196,1577754,0,56646,0,0,6323,0,0,68,0.7110144503230933,0,0.0,2,0.020912189715385,0,0.0,0.06189,0.1622620733050181,0.3000484730974309,0.01857,0.3381440099317194,0.6618559900682806,24.405355344588017,4.356072878252636,0.3217893217893218,0.2428365285508142,0.2209853638425067,0.2143887858173572,11.15522773871098,5.799151260706785,19.88280524668564,12312.082614942585,55.02739900780844,14.08903275918368,17.661653069091262,11.874488886226985,11.402224293306526,0.5666872809729953,0.7741935483870968,0.6931454196028187,0.5932835820895522,0.1144230769230769,0.7330210772833724,0.9011764705882352,0.8724489795918368,0.7591836734693878,0.1278538812785388,0.5070028011204482,0.702523240371846,0.6330196749358425,0.5441354292623942,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018230617308958,0.0041251532996158,0.0064137042186342,0.0087369073379862,0.0110998066944755,0.0132534661736092,0.0156479516892443,0.0173791327802525,0.0193523310762432,0.0214518409244575,0.0236722213101297,0.0255891148632678,0.0275592983034096,0.0297140971842748,0.031713237952585,0.033971088875322,0.0362929559944021,0.0382074295686861,0.0403642039542143,0.0421716908313341,0.0570320746632108,0.0712392486354541,0.0847139107611548,0.0975925555543859,0.1101120749699233,0.1261534879783271,0.1392255927993716,0.1501677405612652,0.1614147978707484,0.172048549628151,0.1844077152806977,0.1967516848332502,0.2084944608446531,0.2193715957784913,0.2296230119339112,0.240297513321492,0.2505285294018948,0.2590484349110091,0.2669735720375106,0.2749541073887104,0.282109267183894,0.2880630445744843,0.2944017276567469,0.300552353506244,0.3059276216453168,0.3109263423191915,0.3157353402320477,0.3213197127953986,0.3255273576945544,0.3293052158392279,0.3289965584722316,0.3281200392032356,0.3265868974881195,0.3245918293302373,0.3240479496021616,0.3212839658224924,0.3188963237280862,0.3191016049830273,0.321473383867031,0.322468843156269,0.3224572117922039,0.3234604222160378,0.3248010777585989,0.3268654044134103,0.3282758952869494,0.3293322547817238,0.3301889489180459,0.3309890248517724,0.3342330342120022,0.3364519326065411,0.3385708430113403,0.3417963562968077,0.3439454235361001,0.341831701950072,0.3436343449296817,0.3466416157820573,0.3469724220623501,0.3552500498107193,0.3478143550998381,0.3476577622919086,0.0,2.2008627817841835,56.17548977938371,183.0869153007644,267.53059050564787,fqhc8_80Compliance_implementation,69 -100000,95683,44657,423.11591400771295,6062,62.11134684322188,4784,49.31910579726806,1844,18.843472717201596,77.32722884548278,79.70469992319168,63.32110870231941,65.07598671001246,77.1000014679488,79.48035849862794,63.237173555091545,64.99598989517723,0.2272273775339783,224.34142456374676,0.0839351472278693,79.99681483522636,164.90034,115.5627177843504,172340.26943135142,120776.64557377006,361.12353,234.0327008633828,376752.8819121474,243928.33171664097,369.52705,179.06859217360392,381932.5376503663,183818.55372881464,3393.78972,1544.7102503828894,3501093.579841769,1568628.919142422,1118.47999,492.4237912629801,1152333.9046643605,498084.3822534074,1806.78698,751.994902943121,1847487.474263976,750738.362518077,0.38043,100000,0,749547,7833.648610515974,0,0.0,0,0.0,30779,320.9661068319346,0,0.0,33851,349.51872328417795,1578149,0,56650,0,0,6454,0,0,68,0.7002288807834202,0,0.0,0,0.0,0,0.0,0.06062,0.1593460032068974,0.3041900362916529,0.01844,0.335486920895052,0.664513079104948,24.531022918668405,4.395838020096452,0.3139632107023411,0.2418478260869565,0.2309782608695652,0.2132107023411371,11.274380859614556,5.845240993462885,19.63513764859537,12287.23446964147,54.329687569203664,13.815217127622184,16.98792669830912,12.403874367556975,11.122669375715388,0.5710702341137124,0.8098530682800346,0.699733688415446,0.571945701357466,0.1098039215686274,0.746031746031746,0.9338235294117648,0.8560606060606061,0.7396226415094339,0.1256544502617801,0.5085130533484676,0.7423230974632844,0.64376130198915,0.5190476190476191,0.106151990349819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023690444853908,0.0046112839638799,0.0071015521964086,0.0092730836812009,0.0113075929673279,0.0134910857014855,0.0155201598923174,0.0177810913770388,0.0196653917738735,0.0217406887794287,0.0237616654702081,0.0256971190879679,0.0280286354940239,0.0302109200317358,0.032374583320433,0.0342092472517813,0.0363218200277645,0.0385070598006644,0.0405970459746203,0.042715086826909,0.057709582401972,0.0716177040052747,0.0853027871311535,0.0976317976665158,0.109838417078007,0.1258899573666783,0.1387818778057244,0.1513651077604565,0.1627012531917394,0.1735478680611424,0.185763215716686,0.1982054140644449,0.2089795740793108,0.2193836260635621,0.2290245190826253,0.2392173807070606,0.2485324643439055,0.2568443074708119,0.2651257262164125,0.2727637154965067,0.2806495671095884,0.2868324071365896,0.2930114207941298,0.2988533291795971,0.3039066771978856,0.3097495715219294,0.3142084371595647,0.3184526841193847,0.3222412273881719,0.3266071522898949,0.3253624654393418,0.3241914832101111,0.3234838018439676,0.3219415623825901,0.321509838040423,0.3199889479016363,0.3180759172676123,0.3190216233053001,0.3198703735289101,0.3213853276353276,0.3222309446375836,0.3233327415823421,0.3243322386998264,0.3256452621237831,0.3263813716292608,0.3280344557556773,0.3290532443074816,0.3315408805031447,0.3358655697531945,0.3396054146322099,0.3448810990916974,0.3505407277182888,0.3524404086265607,0.3536930730960582,0.3610163064087979,0.3655172413793103,0.3628685503685503,0.3651148607440537,0.3681454946266189,0.3715490797546012,0.0,2.569574555311613,54.93238756784538,182.7561182917624,261.802890697042,fqhc8_80Compliance_implementation,70 -100000,95770,44697,422.8777278897359,6143,62.68142424558839,4876,50.2453795551843,1891,19.29623055236504,77.38146625236273,79.7036481455766,63.35451413110488,65.06736797319643,77.14609209744175,79.47215567628311,63.26631011150029,64.98327795964134,0.2353741549209758,231.4924692934852,0.0882040196045892,84.09001355508394,164.99824,115.5667563617452,172285.7053357001,120670.9815134557,357.59855,231.49487435795427,372647.50965855696,240977.1707984124,368.34369,178.29841512810228,380580.6097942988,183030.94012254348,3476.0945,1590.5204712851269,3583319.6094810483,1614801.5053463122,1158.22013,517.7301442107856,1190999.9686749503,522327.6229920824,1850.82594,778.9486932172586,1890322.418293829,778895.1339339186,0.38178,100000,0,749992,7831.168424350006,0,0.0,0,0.0,30373,316.42476767254885,0,0.0,33724,348.031742716926,1582449,0,56788,0,0,6580,0,0,71,0.7309178239532212,0,0.0,0,0.0,0,0.0,0.06143,0.1609041856566609,0.3078300504639427,0.01891,0.3287245611309616,0.6712754388690384,24.27886685342416,4.338249527580016,0.3189089417555373,0.2434372436423297,0.2202625102543068,0.217391304347826,11.146091634468412,5.827904275388529,20.02397463703192,12322.97491544805,55.27088424833048,14.208691014133116,17.541491130218215,11.949378232038535,11.5713238719406,0.5621410992616899,0.785172704296546,0.6893890675241158,0.5810055865921788,0.1066037735849056,0.7132188200149365,0.908256880733945,0.803921568627451,0.749034749034749,0.1567796610169491,0.5049476957873904,0.7137150466045273,0.6486486486486487,0.5276073619631901,0.0922330097087378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023692363768908,0.0048340021889821,0.0072427749769225,0.0095966366073604,0.0118458112601299,0.0137935948856811,0.0160021200260926,0.0179287543750446,0.019861054352268,0.0218427729579309,0.0240544195385813,0.0260906143554807,0.0282813334977596,0.0305220139382147,0.0326195655535738,0.0345237111698612,0.0366319318687459,0.038804453751892,0.0407325839895285,0.0428449460663862,0.0571998079772912,0.0707880335262172,0.084429341556017,0.0974686737868976,0.1094571943621585,0.1252868822117164,0.1378187449616021,0.1499994677850277,0.1616093648199771,0.1719734980059179,0.1849830453738091,0.1968984200110307,0.2085449266536901,0.2189975057979258,0.2291194401038801,0.2393980696563722,0.2488138166635035,0.2582039162727886,0.2663812487224329,0.2748389167870491,0.2820982148028869,0.2882225475841874,0.2944019331453886,0.2998801102985253,0.305085775380279,0.3097453084761635,0.314137370198924,0.3187305221649812,0.3239349020420856,0.3286977173769627,0.3281550784142155,0.3269484626808206,0.3260101116791302,0.3249407068895702,0.3249260146037506,0.3226167307721777,0.3211727311542293,0.3221633850845123,0.3231094658910629,0.3239195854627041,0.3246622189830128,0.3260946605764687,0.3264683766396524,0.3270153818677025,0.3291439810040055,0.3298231929277171,0.3298491777203397,0.3340322984476715,0.3366184385265954,0.3399992080148893,0.3439629326792041,0.3465393542941549,0.3477312390924956,0.3506630500301386,0.3560705573278289,0.3581120943952802,0.3570563294972744,0.3480529907667603,0.3470780993992354,0.3584256782575468,0.0,2.5621807145841258,58.450126851624525,176.30200384979565,268.6949503513119,fqhc8_80Compliance_implementation,71 -100000,95755,44443,420.28092527805336,5976,61.15607540076237,4706,48.55098950446452,1871,19.153046838285206,77.31912755708531,79.66770242996229,63.32066847763053,65.057941756121,77.09210921351912,79.4429521526293,63.23614294332926,64.9767199838806,0.2270183435661863,224.75027733298705,0.0845255343012709,81.22177224039717,166.94414,116.95675399255546,174345.0890292935,122141.66779025164,359.90019,233.87814731815783,375277.0612500653,243668.2234015538,369.37742,179.1542416373582,381500.3811811393,183885.6172924354,3327.88117,1518.667228636372,3435165.140201556,1545879.3423282525,1099.51999,491.0347092275466,1134677.4998694584,499383.9596933629,1825.26078,761.6921931103775,1870624.050963396,764844.4015010071,0.37709,100000,0,758837,7924.776774058796,0,0.0,0,0.0,30696,319.951960733121,0,0.0,33802,348.83818077385,1568279,0,56297,0,0,6542,0,0,58,0.605712495431048,0,0.0,2,0.0208866377734844,0,0.0,0.05976,0.1584767562120448,0.3130856760374833,0.01871,0.3377409590568743,0.6622590409431257,24.405504910116587,4.281336361660131,0.3159796005099872,0.241606459838504,0.2311942201444964,0.2112197195070123,11.328376041349117,6.033076628849703,19.80778819207214,12162.979226589528,53.3544349741241,13.761030436476874,16.707025286128953,12.03269351708282,10.853685734435436,0.5720356991075223,0.8091468777484608,0.6805648957632818,0.5799632352941176,0.1297786720321931,0.7517842981760507,0.9045454545454544,0.8746736292428199,0.7606837606837606,0.1813725490196078,0.5062409288824383,0.7489239598278336,0.6132246376811594,0.5304449648711944,0.1164556962025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019848302261288,0.0042258231234609,0.0068077594253479,0.0090597005829897,0.0110239903997721,0.0131170246351572,0.0154065765995411,0.0176551076256994,0.0197541972556798,0.0219999590507974,0.024032891431618,0.0263474037642081,0.0286827923814225,0.030554639854953,0.032810565414775,0.034921094242515,0.0368230897439879,0.0386274997925483,0.0407622530937957,0.0430553241126478,0.0581210855949895,0.0720524702658033,0.08509366281387,0.0972490956507108,0.1093318433869573,0.1246709030736859,0.1366162526780222,0.1478080442647371,0.1593682929173207,0.1694771711280968,0.1826992451245383,0.1951016255763111,0.2067288865683331,0.2170062001771479,0.2269921776154379,0.236899805102764,0.2459034692146269,0.2546524449245032,0.2629900347308923,0.2708354807306877,0.2784459905305442,0.2851742621070617,0.2916039936991461,0.2970456236350109,0.301571088087942,0.306337550138846,0.3112040992746088,0.315072681640401,0.3188526078273724,0.3236770494835011,0.322227164287736,0.3207082180276183,0.3194520857138826,0.3188653303422823,0.3188584685394762,0.3169045392528092,0.3159529620590193,0.3162916735096074,0.3176834266976363,0.3185206370770248,0.3190447604397253,0.3196071844928768,0.3200755588204428,0.3215222214751563,0.3228526683532104,0.3244217012166466,0.3250178393035536,0.3279426108296888,0.3312941672819323,0.3332540814709145,0.3344387407441057,0.3354043863841537,0.3377024387169954,0.337447619047619,0.3355269342859829,0.3355681016231475,0.3329275715155204,0.3369741100323624,0.3384700055035773,0.3440122044241037,0.0,2.2270431936059776,55.14637146565874,174.6582095184259,259.95704229962496,fqhc8_80Compliance_implementation,72 -100000,95679,44366,421.28366726240864,6008,61.62271762873776,4726,48.76723209899769,1889,19.37729282287649,77.34181859432726,79.72529776186096,63.3271521787835,65.08612923682126,77.10556577773025,79.49012307524178,63.240778537103004,65.00256353527953,0.2362528165970161,235.17468661917465,0.0863736416804954,83.56570154172971,167.21122,117.0958731131254,174762.48706612736,122383.88606560188,360.82014,233.75774226381455,376508.7323237074,243709.1089929739,365.3116,176.31503232115966,378203.9632521243,181460.40046584173,3393.73152,1545.6325546759942,3507142.141953825,1575672.2740824404,1114.57458,499.7387787402949,1148711.9221563772,506160.91349100217,1850.89684,771.6677715113876,1900758.68267854,777535.5071104869,0.37815,100000,0,760051,7943.749412096698,0,0.0,0,0.0,30722,320.4464929608378,0,0.0,33477,346.23062532008066,1571428,0,56390,0,0,6492,0,0,70,0.7316129976274836,0,0.0,0,0.0,0,0.0,0.06008,0.1588787518180616,0.3144141145139814,0.01889,0.3428072403937758,0.6571927596062243,24.304414383558328,4.257252927607861,0.3051206093948371,0.248836225137537,0.2204824375793483,0.2255607278882776,11.001879791449303,5.658543858889424,20.00096729137476,12128.542393776428,53.59359098999575,14.037346432443083,16.346728696415603,11.617219766317868,11.592296094819194,0.558611933982226,0.798469387755102,0.688626907073509,0.5585412667946257,0.1181988742964352,0.7326416600159616,0.931924882629108,0.8743169398907104,0.6864406779661016,0.1733333333333333,0.4958249352145119,0.7226666666666667,0.6254646840148699,0.5210918114143921,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873196220797,0.0043078544857435,0.0064222882826212,0.0087343340578091,0.0109102371171757,0.0127270505823898,0.014983334862245,0.0170370445984708,0.0191028117621807,0.0213332241421668,0.0234499164333979,0.0254190288390436,0.0273759799181086,0.0294293427858953,0.0312738682575397,0.0332743765579586,0.0351598930592112,0.0372631469656855,0.0394898362565799,0.0415320142609928,0.0563041888645147,0.0696904971311303,0.082988727723084,0.0962161707142556,0.1091584210637355,0.1247487888980558,0.1368575187810364,0.1475772800817508,0.1585487024434021,0.1687184986595174,0.1817232207277543,0.1940706930864411,0.2059399264849816,0.2171365479847393,0.2265842417309236,0.2362015503875969,0.2458399830362822,0.2549290863897605,0.2626938831084838,0.2697058857201735,0.2773460987003376,0.2844114999240041,0.2907418137956316,0.296605093557584,0.3019491165219503,0.306441279384949,0.3106943106317488,0.3159435042626288,0.3200150284374312,0.3243107703271614,0.3229389667568768,0.3218009739455801,0.3206441341805323,0.3195937355524734,0.3185517405251277,0.3163443562475099,0.3147061150225457,0.3155874198152675,0.3156365873246416,0.3178784309526359,0.3185857263118511,0.319713247491903,0.3214240837696335,0.3214852924728777,0.3235265816694732,0.3242600768005015,0.3263377305693564,0.3304569646962492,0.3331219391889511,0.3345269356250497,0.3379754349116479,0.3383298782756604,0.3401744806376702,0.3402603334094542,0.3422234699606962,0.3438914027149321,0.3460356484326982,0.3456314615852423,0.3484175458078845,0.3588756257219869,0.0,2.3895156072025143,54.69247748441456,173.22048141274595,266.6518192488001,fqhc8_80Compliance_implementation,73 -100000,95673,44441,422.3030531079824,6049,61.8878889550866,4714,48.6239586926301,1860,19.03358314257941,77.38307130315455,79.75871784723593,63.34642469116329,65.0971838117852,77.14399774828141,79.52255119148332,63.2564367796321,65.01120077930806,0.2390735548731442,236.1666557526121,0.089987911531189,85.98303247714512,165.65582,115.97952077375297,173147.93097321084,121224.92320064487,357.48642,232.13604544696372,373011.4870444117,241991.89473201815,367.25718,178.0180955291643,379839.23363958485,183004.44587181535,3354.31695,1553.6336996478892,3465114.828635038,1582992.1290728715,1102.49955,495.9800384102474,1138150.1154975805,504199.563523928,1811.74458,774.8089380699532,1856427.7486856272,777896.8146232719,0.37893,100000,0,752981,7870.36049878231,0,0.0,0,0.0,30548,318.64789439026686,0,0.0,33635,347.4648019817503,1577109,0,56707,0,0,6674,0,0,49,0.5121612158080127,0,0.0,0,0.0,0,0.0,0.06049,0.1596337054337212,0.3074888411307654,0.0186,0.3383375474083439,0.6616624525916561,24.03454035601212,4.390780384164242,0.3256257955027577,0.2327110733983877,0.2248621128553245,0.2168010182435299,11.302818704957696,6.00903360950531,20.04183543813516,12166.45561639142,53.81630215624206,13.143441572771216,17.400515995687645,11.958706981990565,11.313637605792634,0.5717013152312261,0.7857793983591613,0.7042345276872964,0.5971698113207548,0.1164383561643835,0.7364400305576776,0.9051094890510948,0.8807106598984772,0.7749077490774908,0.1502145922746781,0.5083700440528635,0.7142857142857143,0.6432953549517967,0.5361216730038023,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023283358472611,0.0043766336392924,0.0064299550714495,0.0086213899833461,0.0106146103400945,0.0126428942251901,0.0149646272095251,0.0171380742888056,0.0193086106795322,0.0211907784284017,0.0233964895013123,0.0256307569082899,0.0277174975059394,0.0295117428924598,0.0316104405240895,0.0337974016309571,0.0357205755902493,0.0375114174209084,0.0392495372007404,0.0412723558594238,0.0556002465550204,0.0695478291822398,0.0823978681885897,0.0952195675948515,0.1069824332018811,0.1226144785950666,0.1350890026822726,0.1471314003701418,0.158782161418037,0.1697884743147382,0.1826662362814719,0.1957527788590458,0.2071019423279675,0.217790505754916,0.2270987328405491,0.2372257921559938,0.2466831948539265,0.2556934651859527,0.2637687084099839,0.2719386702725002,0.2790240062967336,0.2862829578981876,0.2930840412801099,0.2984073260600823,0.303080796409589,0.3086680239373188,0.3130503400678883,0.3176469089890216,0.3217970653808265,0.3259577278731836,0.3246438477903751,0.3227120136481206,0.3215975664713835,0.3208752456931437,0.3205276762634816,0.3193690793709188,0.3173459205170038,0.3171108155591678,0.3170435496561869,0.3177294573781915,0.3191660283595195,0.3197147584902687,0.3205671685426107,0.3215940479372717,0.3221932489653357,0.3235713360114034,0.3251266378017375,0.3284108648142366,0.3303178484107579,0.3327826292187869,0.3361838830822135,0.3382553862322648,0.3390052356020942,0.3432633716993906,0.3449454814267233,0.3434848308729513,0.3507986266606956,0.3480210567362058,0.3481717011128776,0.3433934486566065,0.0,2.5613464238581787,56.90608482672061,180.169004350876,249.3386610739548,fqhc8_80Compliance_implementation,74 -100000,95689,44780,422.2428910324071,6152,63.13160342359101,4858,50.14160457314844,1999,20.47257260500162,77.3960056150407,79.78030833867537,63.35197710932333,65.11307577570828,77.13912812048751,79.52653829949918,63.25677122431348,65.02241809391852,0.2568774945531942,253.7700391761888,0.0952058850098467,90.6576817897644,165.1551,115.7023442306797,172595.70065524773,120914.98942478203,360.51676,233.63885985102348,376136.7555309388,243542.7268035233,368.15894,178.6536942215354,381184.9742394633,183914.8340031346,3461.71766,1594.8152142072097,3574520.509149432,1623510.0003210488,1149.59028,515.4336381334637,1185925.6340854226,523198.8401315347,1949.66114,824.374083153454,1997805.3276761172,825598.749244247,0.3813,100000,0,750705,7845.259120693079,0,0.0,0,0.0,30654,319.7023691333382,0,0.0,33671,348.2636457691062,1583153,0,56680,0,0,6480,0,0,69,0.7210860182466114,0,0.0,3,0.0313515660107222,0,0.0,0.06152,0.1613427747180697,0.3249349804941482,0.01999,0.3291119691119691,0.6708880308880308,24.448517544325696,4.358938197469361,0.3217373404693289,0.2313709345409633,0.2268423219431865,0.2200494030465212,11.140408187166686,5.819435352065007,21.34403974235528,12352.816354964169,55.372064708521584,13.509079701502449,17.645139854332843,12.477534175804204,11.740310976882077,0.5613421160971593,0.802491103202847,0.6871401151631478,0.5671506352087115,0.117867165575304,0.7143933685003768,0.9330024813895782,0.8604060913705583,0.678082191780822,0.1470588235294117,0.5038232795242141,0.7295423023578363,0.6287425149700598,0.5271604938271605,0.1095066185318893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023602824234934,0.0048873476506256,0.0072166622683258,0.0097434594869189,0.0120338534779158,0.0142956054249989,0.0167011633716365,0.0189792647193947,0.0214991105931423,0.0239311340163976,0.0261433887983268,0.0283276520596328,0.0302880709224234,0.0323235236555041,0.0344621226191213,0.0364072400996495,0.0387404184793867,0.0407938715771554,0.0426833073322932,0.0446813832780939,0.0592757392494176,0.0734162907766533,0.0865036659429182,0.0990684078817319,0.1111263374268697,0.1263364954471905,0.1388906571604388,0.1509299379331637,0.1625375255066611,0.1735474252126438,0.1856144243507857,0.1976158023409273,0.2094835456244837,0.219499130967086,0.229220500753219,0.2391816943973963,0.2489488183268087,0.2583837952612598,0.2661636588156657,0.2734413409098704,0.2800115473441109,0.2869369264180463,0.2931669974482563,0.2993227396735748,0.3047279517867753,0.3105012725461989,0.315035501703333,0.3195494444162565,0.3241592977473698,0.3280879953686648,0.3274723504778267,0.3264894667544437,0.3250699158199474,0.3233771290941344,0.3219290830626863,0.3205400694200217,0.3184830225680441,0.3193897637795275,0.3210468808686448,0.3217095053778784,0.3227177413315359,0.3233877969847659,0.3237458193979933,0.3241417744092733,0.3258243473666514,0.3268104816674907,0.3277585325685729,0.3315949860199177,0.3356586973287527,0.3380259285771096,0.3392840794653483,0.3429165777682952,0.3450088674942995,0.3474239412933802,0.3513436520748267,0.3543648404575557,0.3550478542760111,0.3625,0.3662952646239554,0.3662135922330097,0.0,2.4965543188406567,58.00113037600629,185.15894127927945,259.9744312159707,fqhc8_80Compliance_implementation,75 -100000,95814,44540,421.170183897969,6166,63.09098879078215,4806,49.50216043584445,1911,19.52741770513704,77.38566316619061,79.70565456094467,63.36611244363343,65.0838806068962,77.1429214265375,79.46646594119342,63.27596604247061,64.99754649218876,0.2427417396531126,239.18861975124628,0.0901464011628192,86.33411470744079,166.80664,116.78450433639456,174094.22422610476,121886.68079445024,361.59422,235.1678736308834,376737.68969044194,244789.11908865775,367.57788,178.89496418922673,379529.8912476256,183438.49150698807,3428.30792,1578.392862903843,3533921.911202956,1603383.3058002102,1159.9359,515.9314341037016,1192350.5959463126,520519.2092041973,1875.1686,792.4527432592853,1918055.357254681,795417.8670017943,0.38003,100000,0,758212,7913.373828459307,0,0.0,0,0.0,30948,322.31197946020416,0,0.0,33639,346.9325985764085,1574863,0,56422,0,0,6605,0,0,68,0.7097083933454402,0,0.0,1,0.0104368881374329,0,0.0,0.06166,0.162250348656685,0.309925397340253,0.01911,0.3399814471243043,0.6600185528756958,24.22683753846005,4.3346516339743095,0.3160632542655014,0.243237619642114,0.2184769038701623,0.2222222222222222,11.252354236933993,5.831920010626868,20.431620345390726,12222.214987660993,54.80051297063196,13.965902737584384,17.405592509280563,11.667876216923062,11.76114150684396,0.5607573866000832,0.7604790419161677,0.7030941408821593,0.5628571428571428,0.1376404494382022,0.7230081906180194,0.9078947368421052,0.8341232227488151,0.7345132743362832,0.1631799163179916,0.497834247762056,0.6661991584852734,0.6526891522333638,0.5157766990291263,0.1302774427020506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193866285841,0.0044199791166124,0.0066781013082177,0.0088289679556214,0.0111172138817689,0.013287852560839,0.0153706591648064,0.0174507602816613,0.0199090398078593,0.0222783929265846,0.0244622306028961,0.0268711253438436,0.0289108829484372,0.0310348022110366,0.0329253328108726,0.0348400024789803,0.0367319909773813,0.0388171396587823,0.0407355873068616,0.0427683950925608,0.057673652038762,0.0722230352700131,0.0859475719810915,0.0984176683197444,0.1098985600370787,0.1245762085318068,0.1367974998675777,0.1486831196989987,0.1595260188355251,0.1696298517693428,0.1824516878340449,0.1944495457442556,0.2060579741613288,0.2168440587304186,0.2267475067000571,0.2373475458053672,0.2466606508249501,0.2558136922281888,0.2646958846990573,0.2725495352320409,0.2796215647995194,0.2864278795093542,0.2921280664887965,0.2977398496420333,0.3027961781125495,0.307936975770303,0.313133833123355,0.3174838652414825,0.3219398226433116,0.3255820074486425,0.3241746424346703,0.3232703538302988,0.3230059234871189,0.3218716152790815,0.3211368833714472,0.3198450609345336,0.3180507588479452,0.3175933228180862,0.3178214939990069,0.3186671674625744,0.3197398751850672,0.3203895024343902,0.3222336820391925,0.3236384053902302,0.3252980004352136,0.3260327868852459,0.3248201335741107,0.3282681493650091,0.3304129720563818,0.3348506628334132,0.3402269399707174,0.3418004038686364,0.346316253860213,0.3500342648290566,0.3488592255987882,0.3541269083969465,0.3565472513897467,0.3574190922043558,0.3571625724537676,0.3597397627248374,0.0,2.5193358639255368,58.42794495573311,178.63517897942916,258.9836805389686,fqhc8_80Compliance_implementation,76 -100000,95770,44485,420.87292471546414,6187,63.31836692074763,4874,50.360238070376944,1902,19.50506421635168,77.37657405990127,79.72114032384704,63.3458979718325,65.07878478791181,77.13516881709393,79.4798279113113,63.25541095108815,64.99038705306953,0.2414052428073461,241.3124125357342,0.090487020744348,88.39773484228886,166.3574,116.45615382158698,173705.12686645088,121599.82648176567,358.70083,232.1742094928481,374033.2880860395,241918.19932426448,371.54655,179.2358265011409,384404.9284744701,184360.52207699767,3496.40797,1602.7892136539476,3615150.903205597,1637894.1877977948,1151.96442,509.9893858037681,1189627.336326616,519297.3434308955,1868.39764,793.212831444501,1918511.4127597369,801068.4138343369,0.37893,100000,0,756170,7895.687584838676,0,0.0,0,0.0,30563,318.5861960948105,0,0.0,34042,351.93693223347606,1575964,0,56543,0,0,6544,0,0,65,0.6682677247572308,0,0.0,1,0.0104416831993317,0,0.0,0.06187,0.1632755390177605,0.3074187813156618,0.01902,0.345216049382716,0.654783950617284,24.39428204595762,4.371083621475578,0.3077554370127205,0.2439474764054165,0.2240459581452605,0.2242511284366024,11.156035239083169,5.702226766483665,20.247987063936083,12239.42976012647,55.27269452342335,14.234466961700836,16.94080000233388,12.085867507379849,12.011560052008788,0.5697578990562167,0.7939444911690496,0.706,0.5906593406593407,0.1180237877401646,0.7311178247734139,0.925925925925926,0.8630490956072352,0.7462121212121212,0.1535269709543568,0.5095774647887324,0.7186261558784677,0.651392632524708,0.5410628019323671,0.107981220657277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024511293426516,0.0046021753895123,0.0067777349378031,0.0091531553496688,0.0113701082092588,0.0133196199631368,0.0155295653149249,0.0176420141299465,0.0197200952780134,0.0218239141783787,0.0240140209904886,0.0262674372055306,0.0285279573982502,0.0306069905872175,0.0324547377108371,0.0345009353908486,0.0364779092763437,0.0383913196821642,0.0406561535183009,0.0428312575498812,0.0578289865055261,0.0717878467828796,0.0850035640907375,0.0972152164775115,0.110148593107809,0.1250317097919837,0.1384453915145347,0.1502867417834381,0.1608641790725987,0.1705985802217599,0.1836659952389672,0.1956797004361424,0.2068357653510919,0.2173703679383632,0.2271761272917469,0.2375250828704781,0.2468365033449858,0.2555014013799935,0.2641293120083544,0.2713341655881713,0.2786365529689452,0.2853233539936849,0.2920491105223315,0.2969204786373926,0.3029993804438937,0.3080326333431923,0.3131016377047131,0.3181644942449881,0.3228004395888551,0.3267818773809994,0.3250497285092199,0.3240034626324251,0.3239248445982055,0.3223622479176591,0.3214646015073289,0.3201866442285627,0.3186166764180331,0.31971027792344,0.3199215084037198,0.3206377482853834,0.3214439513939598,0.32175989893806,0.323293635012663,0.3241646791342532,0.3249969998799952,0.3270998827972392,0.3278627908299675,0.3316313745144719,0.3351317264573991,0.3375381808084414,0.3391221113086284,0.3418004038686364,0.3474352527030425,0.3510170006071645,0.3571294910179641,0.3587714116952156,0.360317702764625,0.3634726945389078,0.3631421581951617,0.3667676003028009,0.0,2.1075828712712537,58.17632380685558,180.9195741594866,265.6097983464882,fqhc8_80Compliance_implementation,77 -100000,95733,44773,424.5871329635549,5951,60.66873491899345,4673,48.03986086302529,1852,18.906751068074747,77.3313489084019,79.69789719182828,63.31030609897547,65.06302284309928,77.08973190212967,79.45906659778463,63.21986209559126,64.97641120092791,0.2416170062722358,238.83059404364812,0.0904440033842064,86.61164217136275,167.35994,117.38683515534782,174819.2577272205,122618.75753956084,363.31533,235.5289475913181,378738.240732036,245256.17873807155,375.96797,182.76496072757288,386965.7693794199,186560.41596791084,3327.98323,1543.1468828287475,3425735.1383535457,1561345.2757447753,1128.32212,508.76580210623257,1158616.892816479,511456.01590489456,1809.46062,772.2027917399745,1848921.772011741,771791.7082762147,0.38078,100000,0,760727,7946.32989669184,0,0.0,0,0.0,30928,322.27131710068625,0,0.0,34379,353.3891134718436,1563522,0,56065,0,0,6563,0,0,74,0.7729831928384151,0,0.0,1,0.0104457188221407,0,0.0,0.05951,0.1562844687220967,0.3112082003024701,0.01852,0.3349951752975233,0.6650048247024767,24.45825007898931,4.342508899018752,0.3184249946501177,0.2356088166060346,0.2285469719666167,0.2174192167772309,11.345404135917727,5.904348101167215,19.88263157695024,12259.824673640182,53.44377511723551,13.28471756602536,16.871934616077098,11.958912003093532,11.328210932039523,0.5762893216349241,0.7901907356948229,0.717741935483871,0.5814606741573034,0.1318897637795275,0.7384615384615385,0.9255583126550868,0.8975,0.7358490566037735,0.1422413793103448,0.513785947227987,0.7120343839541547,0.6516544117647058,0.5305105853051059,0.1288265306122449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.0046949308942677,0.0070337477797513,0.0092156065840276,0.0114956560662475,0.0140644254565082,0.0161515636630604,0.0181647385564189,0.0201904489153003,0.0222258639408402,0.0246348867738759,0.0267221451687471,0.0285987733091837,0.030516335154076,0.0323692739621395,0.034630020267196,0.036655828690952,0.0385285877347722,0.0405293029250951,0.0423384576927884,0.0570354906054279,0.0707252503479234,0.0840982282411438,0.0970292865029707,0.1092483050221955,0.1249709123987222,0.1371417049590899,0.1490232003238245,0.1608507454710629,0.171544165781312,0.1839132496874057,0.1958539570449154,0.207543471869862,0.2187161267011923,0.2282923498772148,0.2386591707971569,0.2487378814278693,0.2576642911023294,0.2657564098198781,0.2741295927021018,0.281262300016207,0.2882838573686984,0.2944718376635691,0.2999075286120885,0.3057181449797388,0.3108519958047998,0.3151764131210781,0.3188782332938524,0.3238170592508042,0.3277512909573555,0.325928721626139,0.3246442236230009,0.3229891534018876,0.3216901408450704,0.3204551861248349,0.3182833195680768,0.3164912945934843,0.3164872261278534,0.3173787617568236,0.3184061870734359,0.3186751497005988,0.3193098138313624,0.3197824040171566,0.3201564245810055,0.3209538232254032,0.3227109281359112,0.3242444059025902,0.328628905513296,0.3293052423900789,0.3337319620505461,0.3373153383184388,0.3406104281475201,0.3430006277463904,0.3485779294653015,0.3525581395348837,0.3533178114086147,0.3579970104633782,0.362406899255194,0.365219721329046,0.3682835820895522,0.0,3.004763321070163,56.0157779095894,180.6422393290817,245.19539462375144,fqhc8_80Compliance_implementation,78 -100000,95493,44770,424.7222309488654,6012,61.826521315698535,4746,49.1449635051784,1869,19.16370833464233,77.22623088476638,79.71338929790134,63.24095407219974,65.07622433746167,76.99215760175689,79.4818817644846,63.15406018880056,64.99336857675985,0.2340732830094936,231.507533416746,0.0868938833991777,82.85576070181833,166.02278,116.3301548477466,173858.5864932508,121820.60972819642,360.5513,233.6329637515057,377026.5569204025,244118.03352235843,366.08494,176.98858826632954,380193.4173185469,182905.90439092225,3375.82353,1543.295641737055,3495322.5995622715,1576520.7139227702,1092.04794,483.58663910839294,1129674.9081084477,492516.9864923661,1828.26238,771.3132755043558,1876130.2713287885,774095.0976969358,0.38182,100000,0,754649,7902.663022420492,0,0.0,0,0.0,30669,320.5994156639754,0,0.0,33478,347.4495512760098,1568232,0,56302,0,0,6643,0,0,73,0.7644539390321804,0,0.0,1,0.0104719717675641,0,0.0,0.06012,0.1574563930647949,0.310878243512974,0.01869,0.3328035600762873,0.6671964399237127,24.40113422565907,4.293291947453568,0.314369995785925,0.2439949431099873,0.2214496418036241,0.2201854193004635,11.15506823022502,5.809353903749138,20.11887093328611,12315.627601393711,54.15031429261364,13.889624863501393,17.149029769044503,11.606511086374791,11.50514857369296,0.5611040876527602,0.7910189982728842,0.717828418230563,0.560418648905804,0.0832535885167464,0.7327117327117327,0.9268867924528302,0.8798076923076923,0.7181818181818181,0.1145374449339207,0.4972535414859786,0.7125340599455041,0.6552044609665427,0.5186522262334536,0.0745721271393643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021279829761361,0.0041993366265329,0.0064064816130931,0.008703609557702,0.0111988923277406,0.0134434082454262,0.0157756711803181,0.0181472625835325,0.0202461456617594,0.0224073277186942,0.0246448513713253,0.0268250051408595,0.0288932822603896,0.0308590406056293,0.0330626330254375,0.0351910712621781,0.0375103734439834,0.0391995841995842,0.0414027337889648,0.0431704260651629,0.0577102241204241,0.072198264555594,0.085154491723282,0.0978761528326745,0.1100518923260655,0.1253895567003752,0.1379358007889336,0.1494569276401425,0.1607471830684203,0.1714605099101423,0.1847009285251565,0.1969695326312135,0.2089615699100572,0.2196731374203943,0.2293919068002294,0.2388004977556553,0.2481431767337807,0.2575209368906322,0.2659002262932259,0.2730777615862124,0.2800473103816139,0.2865802185433569,0.2929598519362186,0.2990685655910101,0.3044548723261625,0.3098624647504081,0.3156631653013017,0.3204728434504792,0.3251884585391213,0.328924372418176,0.3279355510198564,0.3272273335448363,0.3262232135294616,0.3257671108024825,0.3245155428452269,0.3227709085323708,0.3212362816257167,0.3218068895075863,0.3224467391677244,0.3227159475882342,0.3232355482101942,0.325053482291419,0.3269614117548314,0.3276163181227889,0.3283187542055176,0.3276010318142734,0.3283114515991228,0.3313001100455903,0.3330404217926186,0.33595737913486,0.3384917374235369,0.3405666383701188,0.3445573112616002,0.3470437017994858,0.3526467043663669,0.3531264582361176,0.3580865603644647,0.3607556368068251,0.3604172385396651,0.3576057948913458,0.0,2.185660820428009,56.587014199673405,184.50096655013667,251.23089468388997,fqhc8_80Compliance_implementation,79 -100000,95716,44734,423.5133102093694,6136,62.90484349534039,4791,49.53194868151616,1896,19.484725646704835,77.36399481233721,79.75100375955982,63.33329461681414,65.09834269406562,77.12775818661002,79.51312167613692,63.24630779554269,65.01287257910154,0.2362366257271873,237.8820834229032,0.0869868212714592,85.47011496408174,166.71116,116.71750246830716,174172.7192945798,121941.47526882356,360.2935,233.462942716639,375928.172928246,243421.00873066048,370.36657,179.61156738328174,383745.5075431485,185086.31948111567,3419.64111,1562.8564738985908,3539569.236073384,1599679.733689864,1155.47114,514.6662575532812,1195081.0000417903,525595.352452339,1857.24128,779.4276912543711,1910665.4477830247,789160.2926304988,0.38113,100000,0,757778,7916.941786117264,0,0.0,0,0.0,30704,320.24948806887045,0,0.0,33776,349.7116469555769,1574100,0,56497,0,0,6679,0,0,74,0.7731204814242133,0,0.0,1,0.0104475740733001,0,0.0,0.06136,0.1609949361110382,0.3089960886571056,0.01896,0.3360086433091526,0.6639913566908473,24.55019836579108,4.327237384882596,0.3180964308077645,0.2377374243372991,0.2181173032769776,0.2260488415779586,11.162010671528105,5.861407856165132,20.20499290057204,12291.904046956704,54.28896874955892,13.593132372406668,17.23065930162491,11.62431306744698,11.840864008080349,0.5631392193696514,0.7664618086040387,0.69750656167979,0.600956937799043,0.123730378578024,0.7361769352290679,0.905940594059406,0.8546365914786967,0.7698744769874477,0.1830357142857142,0.5009929078014185,0.689795918367347,0.6417777777777778,0.5508684863523573,0.1082654249126891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188225043312,0.0047968196983986,0.0071570697636644,0.0096855499319064,0.011905004171839,0.013896529942743,0.0159839242727161,0.01799501613628,0.0202203062195084,0.0225273656293838,0.0246733802325819,0.0269182183241072,0.0290169617050165,0.031097372488408,0.0331489431968295,0.0350603294078722,0.0370842267731543,0.03902788298899,0.040997068668011,0.0430714732235882,0.0572183466310205,0.0706390906616985,0.083977633939343,0.0967043136265169,0.1090288171680333,0.1243590150241591,0.1373565778032279,0.1498585136486457,0.1610709596148303,0.1710393758172036,0.1846307814820394,0.1965494862087615,0.2082594843802668,0.2192406945720159,0.2287172604969914,0.2391723130065099,0.2484133269383066,0.2568225518086649,0.2649891658252691,0.2728792023900825,0.2808297584496375,0.2879204124338037,0.2943981634874805,0.2999053472796329,0.3062671490663623,0.3117714398256995,0.3165864332603939,0.3211867098659551,0.3254617601819897,0.329694495654464,0.3278963844737938,0.3249306642502128,0.3235595912458007,0.3228388473852721,0.32158048404547,0.3199218809600098,0.3184741488020176,0.3183094911489973,0.3188548696938272,0.3190293196697979,0.3199985045051781,0.3209143623525699,0.3220076897358743,0.322690992018244,0.3235188251385789,0.324321503131524,0.3254280821917808,0.3288833045390293,0.3319289375746085,0.3350646261200539,0.3377125193199382,0.3427254912345744,0.3457117595048629,0.3484211331141524,0.3582994034655809,0.3624417632301995,0.3665067327039158,0.360706220488606,0.3655133928571428,0.3634585289514867,0.0,2.0364998964417547,55.45152585407977,182.96782346704296,261.1570340665039,fqhc8_80Compliance_implementation,80 -100000,95673,44701,423.6200390914887,6188,63.62296572700762,4900,50.67260355586215,1868,19.200819457945293,77.31725194233033,79.7270062328113,63.30264576078415,65.08565655112115,77.09448240640336,79.50355644905986,63.221612457407424,65.00647914302412,0.2227695359269716,223.4497837514482,0.0810333033767278,79.17740809702423,166.66958,116.76536010572946,174207.54026736907,122046.3036653282,362.6322,234.3591184077539,378516.4884554681,244442.00391725343,375.55317,181.05920696615465,389214.1565540957,186612.69185935208,3493.5624,1579.0490279134224,3614558.098941185,1613457.086025758,1173.04655,514.9918347637072,1211197.5060884473,523380.9693055582,1832.41606,756.3700054154102,1885431.8773321623,765300.0902107372,0.38075,100000,0,757589,7918.524557607684,0,0.0,0,0.0,30898,322.4107114859992,0,0.0,34331,355.4398837707608,1571398,0,56381,0,0,6584,0,0,63,0.6584929917531592,0,0.0,0,0.0,0,0.0,0.06188,0.1625213394615889,0.301874595992243,0.01868,0.3322070342497312,0.6677929657502688,24.53817075785243,4.440584473353348,0.3185714285714285,0.2355102040816326,0.2306122448979591,0.2153061224489796,11.619359539711644,6.057657057274444,19.70790818420276,12294.770445926322,55.458942958259335,13.6943491137912,17.686257384077223,12.609180542498622,11.469155917892287,0.5704081632653061,0.7686308492201039,0.7033952594490711,0.6026548672566372,0.1222748815165876,0.751170046801872,0.8931297709923665,0.8875878220140515,0.7692307692307693,0.1633663366336633,0.5063571033720288,0.7043363994743759,0.6340388007054674,0.5528735632183908,0.1125439624853458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0045733407696597,0.0069212580046074,0.0090642116066619,0.0110189754286005,0.0129978608536212,0.0151082365902923,0.0172646289637136,0.019326389883571,0.0214841148688106,0.0237098594439314,0.0260897264637579,0.0282149731849671,0.0303623898139079,0.0322847169148782,0.0343503947191441,0.036509894575347,0.0385797661328847,0.0407212043655128,0.0428424004252968,0.0575655317237272,0.071550487439659,0.0848274269398723,0.0978517022261499,0.1098710997658277,0.1256758901645415,0.1384334574936593,0.1501969971249068,0.1622389877962769,0.1723712578704051,0.1859606043961961,0.1985324357670079,0.210297813999543,0.2201939282509247,0.229996696399075,0.2398275785647799,0.2494923801236138,0.2574275240087263,0.2653716177904788,0.2727824195948266,0.2799708532367943,0.2860934120535453,0.2929349112426035,0.2991121176174557,0.3046937635140059,0.3092379379206627,0.3145677961859953,0.3191548866063256,0.323225789759644,0.327500790555497,0.3263709677419354,0.3257104399302264,0.324724595323741,0.3239544274588982,0.3232864909830951,0.3219741660665308,0.3193145678074714,0.3201240523776705,0.3212787723785166,0.3210470085470085,0.3214365881032547,0.3225761909458526,0.3235337258764117,0.3255236860342939,0.3273546925098238,0.327656462229652,0.328668737709123,0.3298363539278198,0.3323626412181601,0.3382865747345062,0.3417767653758542,0.3459944751381215,0.3482097831568331,0.3544400366188587,0.3547020615645297,0.3581384360973305,0.3604294478527607,0.3615166261151663,0.3674844971690482,0.3724681170292573,0.0,2.126837777964987,56.44170400609995,184.7374136401561,270.5411494966321,fqhc8_80Compliance_implementation,81 -100000,95855,44396,418.8513901204945,6066,62.05205779562881,4798,49.44968963538678,1864,19.101768295863543,77.4717338221379,79.75796836056055,63.40399372213196,65.09056680372191,77.23302756347141,79.52193813491253,63.31401960427176,65.0041858602344,0.2387062586664967,236.03022564802245,0.0899741178601942,86.38094348751224,167.85142,117.53888283839667,175109.25877627666,122621.0937753865,359.35413,232.78236355608655,374301.8621876793,242257.11455436496,368.16638,178.35989581986576,380436.7116999635,183183.7009201205,3438.90233,1578.911971651038,3545519.336497836,1605134.180116881,1154.87652,515.1307369080953,1188579.594178707,521258.62233979866,1830.72254,783.6079059025099,1876723.1547650096,787652.9160715119,0.37899,100000,0,762961,7959.51176255803,0,0.0,0,0.0,30620,318.8148766365865,0,0.0,33717,348.1299880027124,1571960,0,56397,0,0,6584,0,0,78,0.8032966459756924,0,0.0,0,0.0,0,0.0,0.06066,0.1600569935882213,0.3072865150016485,0.01864,0.3471502590673575,0.6528497409326425,24.234807407263,4.286610206003642,0.3199249687369737,0.235931638182576,0.2215506461025427,0.2225927469779074,11.087759870790258,5.762856992394405,20.0327527262462,12188.49364409407,54.60649083216777,13.74335465770089,17.35647165839589,11.715614773147507,11.791049742923486,0.5698207586494373,0.784452296819788,0.70814332247557,0.5917215428033866,0.1217228464419475,0.7074102368220015,0.8977272727272727,0.8402061855670103,0.7226890756302521,0.1358024691358024,0.5182000573230152,0.7124277456647399,0.6634699215344376,0.553939393939394,0.1175757575757575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368660795627,0.0046904600297839,0.0070169745888174,0.0090133982947624,0.0113811885212584,0.0134504054452776,0.0157994458479341,0.0181254398759677,0.0204746441190286,0.0228769532847909,0.0249595444396648,0.0271575816624788,0.0291854576086621,0.0314130199919744,0.0334810844242861,0.0351924328008343,0.0372902745308976,0.0392583610567007,0.0413465132699256,0.0433321192569852,0.0576624297467232,0.0709910098264687,0.084266895821762,0.096654548511148,0.1086752600680867,0.1245057617084258,0.136719329869579,0.1491745032126292,0.1604176453004227,0.169717690939101,0.1824002927186242,0.1946561172541262,0.2051671897568445,0.2157434402332361,0.2257664129348315,0.2367138008424451,0.2465910610044115,0.2554128110681879,0.2633987224210574,0.2707613841685154,0.2785989791440516,0.2852726021164145,0.2920898483631726,0.2975229346825027,0.3025214162642269,0.3064839777917297,0.3109503099380123,0.3153956578629775,0.3202115006722515,0.3240581007940793,0.3235638133394281,0.3221899091881807,0.3211742397640283,0.3193376529877609,0.3188965884861407,0.3173772392956328,0.315671618254644,0.3160614136921794,0.3169458379389507,0.3176119615015804,0.3185538754125259,0.3203530429312785,0.3204751484839012,0.3212245170182966,0.3229729084046061,0.3239119170984456,0.3250791497060153,0.3285037701751106,0.3316492490829815,0.3333594208569752,0.3391729020117389,0.3434460276565539,0.3464064552448864,0.3466970387243736,0.3501413760603205,0.3505815333491573,0.3513390830685429,0.349402390438247,0.3462887989203779,0.356282919488337,0.0,2.351866801784601,57.02588886152899,184.67481969626647,254.75464358381183,fqhc8_80Compliance_implementation,82 -100000,95739,44637,421.4374497331286,6048,61.99145593749673,4720,48.70533429427923,1838,18.801115532854947,77.34438518034166,79.69639151936927,63.33412346583962,65.07199130734514,77.10641446325836,79.46268331920352,63.244725606955576,64.98727449517324,0.2379707170833001,233.70820016575067,0.0893978588840411,84.71681217190508,165.97042,116.23102519886376,173357.16896980332,121404.0518481118,359.39183,233.91389887910145,374799.0891904031,243736.5847555348,367.44444,178.42558358284,380574.63520613336,183895.70710221876,3406.3292,1573.5923081133735,3513551.7605155683,1599276.3840888285,1116.99235,501.9762801903736,1149614.9531538873,507342.000229592,1807.0312,774.7583282484208,1849272.1879275949,775290.1234876427,0.38066,100000,0,754411,7879.871316809242,0,0.0,0,0.0,30761,320.6843606053959,0,0.0,33611,347.7788571010769,1573023,0,56519,0,0,6633,0,0,51,0.5326982734308902,0,0.0,0,0.0,0,0.0,0.06048,0.1588819418904009,0.3039021164021164,0.01838,0.3285488958990536,0.6714511041009463,24.38248871259438,4.380470996197792,0.3186440677966101,0.2298728813559322,0.2288135593220339,0.2226694915254237,11.172256891646436,5.683852464031371,19.914688502050204,12267.027769780543,53.95366028793203,13.18788883622472,16.998601554938396,12.010496567161107,11.75667332960781,0.5548728813559322,0.808294930875576,0.6735372340425532,0.5648148148148148,0.1132254995242626,0.7268656716417911,0.9225512528473804,0.8629441624365483,0.7218045112781954,0.1535269709543568,0.4866863905325443,0.7306501547987616,0.6063063063063063,0.5135135135135135,0.1012345679012345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0046840306996644,0.0067370813421402,0.0092115820155794,0.0113264330886389,0.0136512170044689,0.0157151301441063,0.0181335782437879,0.0203533222302827,0.0226849483270234,0.0246946471022214,0.0271268897989346,0.0293857574698225,0.0315547728653669,0.0335269298616627,0.0357043206878378,0.0376672980778188,0.0398120877753349,0.0420499069830283,0.0438849595316715,0.0580380447265665,0.0718449446903812,0.0848892338675841,0.0979103347460746,0.1101374081221593,0.125212812080324,0.1373385095144148,0.15001329999468,0.1609078771695594,0.1712496917848604,0.1848646321115237,0.19647995499881,0.2078376791422917,0.2179540435951813,0.2281795785491179,0.2393246609465817,0.2498939803138182,0.2586090555343125,0.267125774318713,0.2739129936903821,0.280576122165664,0.2869610997367651,0.2928569737994367,0.2978769341489744,0.3029540787187245,0.3075281023654109,0.3131102949471652,0.3179408090953121,0.3224614666649382,0.3270277410832232,0.3253357761582088,0.3236808059676842,0.322932961287504,0.3216288886318955,0.3204948993248669,0.3183136189994017,0.3161601421229617,0.3170335085413929,0.3180334034223977,0.3187411813034703,0.3196515548894717,0.3221410231088287,0.3235725357127896,0.324390243902439,0.3245052246352386,0.3248488953730721,0.3247836483716693,0.327608442640999,0.3305010357782381,0.3343002463641421,0.3366966639396418,0.3397367862449586,0.3426507537688442,0.3447312801932367,0.3453149864270336,0.3427224513847967,0.3395419847328244,0.3436665982344488,0.3461965574680733,0.3503875968992248,0.0,2.307740514730848,58.69072482599328,176.4515514303418,249.79200662267223,fqhc8_80Compliance_implementation,83 -100000,95667,44705,421.4828519761255,6079,62.28898157149278,4763,49.16010745607158,1890,19.34836463984446,77.28108161739658,79.6686010058942,63.29287913429015,65.05573697930161,77.04808790635636,79.43813261698122,63.20743946370782,64.97382871109637,0.2329937110402227,230.46838891298196,0.0854396705823319,81.90826820523966,165.39754,115.86544493589544,172888.35230539265,121112.84407151418,360.19093,234.2048496265081,375843.1747624573,244152.2394979544,370.6832,179.96342622664872,383574.5450364284,185089.47892729903,3384.16184,1542.555627664549,3493991.1150135365,1569307.099846305,1136.31432,506.7246292263719,1169760.209894739,512054.93090555526,1846.85306,764.1371666886917,1892721.544524235,767447.4193596254,0.37953,100000,0,751807,7858.561468426939,0,0.0,0,0.0,30721,320.434423573437,0,0.0,33943,350.9047006804854,1571976,0,56422,0,0,6505,0,0,52,0.5435521130588395,0,0.0,1,0.0104529252511315,0,0.0,0.06079,0.1601717914262377,0.3109063990787958,0.0189,0.3325482807348092,0.6674517192651908,24.67529086296722,4.373017163838678,0.3298341381482259,0.2359857232836447,0.2162502624396388,0.2179298761284904,11.43031874804624,6.012536836399063,20.046640561243507,12316.584790783752,54.27289510439371,13.606768752954904,17.754002295663362,11.633962477116327,11.278161578659123,0.5719084610539575,0.802491103202847,0.6906429026098027,0.6009708737864078,0.1136801541425818,0.7587786259541984,0.9303944315545244,0.8728606356968215,0.7293233082706767,0.2058823529411764,0.5010136113524472,0.7229437229437229,0.6265060240963856,0.556282722513089,0.0911270983213429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0047445736473403,0.00699229730964,0.0092653737135658,0.0115940849826088,0.014011649219991,0.0162224442767706,0.01855065953363,0.020833120368004,0.0229889763457149,0.0250586992853554,0.0272598464002628,0.0297614150555327,0.0321872713972201,0.0341816830763514,0.0362803585645012,0.0385232911051492,0.0407277860234361,0.0427329089169059,0.0448713271698231,0.0590914789585858,0.0725759162303665,0.0856531049250535,0.0990614675617095,0.1112553016395518,0.1263567695660453,0.1387355638586956,0.1507257798272612,0.161921765252996,0.1723712181400442,0.1854691729485479,0.1976249038367771,0.2090397325754853,0.2194534466146973,0.2288701361653373,0.2383011754269239,0.2485527815650074,0.2577716705712741,0.2663273190019543,0.2746399743166391,0.2818534607587605,0.2879336402938385,0.2935847266690383,0.2991822471991066,0.3040035035217693,0.3087068635797214,0.3126895030946952,0.3171726440824858,0.3221701967600098,0.3263684092201489,0.3248498751771135,0.3236421813367169,0.3228880907265476,0.3216331028083453,0.3209221180084398,0.3201240576683914,0.3187426650172867,0.3190008392160735,0.3197164771949048,0.3202981179961037,0.3220669971458615,0.3228610554309643,0.3236731255265375,0.325401105568289,0.3257191201353638,0.3268079767909882,0.3272025171624714,0.3302297689685646,0.3334972428084717,0.3362712402731459,0.3400264080499021,0.3428541091526863,0.3461732442314966,0.3527941844616084,0.355578435043055,0.3581514762516046,0.3613266392819108,0.3622346816179415,0.360043313481321,0.3587962962962963,0.0,2.307523849455235,57.55823098037709,173.83386857666062,263.1029247451606,fqhc8_80Compliance_implementation,84 -100000,95734,44806,424.2275471619279,6072,62.26627948273341,4780,49.42862514884994,1906,19.564626987277247,77.3612597271838,79.7286684213483,63.34108899169471,65.09001705526354,77.11901075475089,79.48607995843317,63.25028373924447,65.00174822021732,0.2422489724329182,242.5884629151369,0.0908052524502451,88.26883504622174,166.11914,116.3726739063644,173521.57018405164,121558.3532562772,362.1612,235.09712210315027,377676.5516953225,244950.37510513532,372.92734,181.02229120452975,386908.1726450373,187045.7038984052,3396.41648,1562.4707391756317,3511393.151858274,1595725.0080176652,1116.23374,495.4357135876441,1149025.1008001338,500563.7115211351,1862.90134,790.958884436164,1913048.8645622248,796667.568677048,0.38214,100000,0,755087,7887.344099275075,0,0.0,0,0.0,30789,321.0875968830301,0,0.0,34005,352.59155576911024,1573884,0,56476,0,0,6550,0,0,90,0.9087680447907744,0,0.0,1,0.0104456097102387,0,0.0,0.06072,0.158894645941278,0.3138998682476943,0.01906,0.3301352626612142,0.6698647373387858,24.49790296453412,4.315402518972953,0.3173640167364017,0.2368200836820083,0.2238493723849372,0.2219665271966527,11.079691183151173,5.76546920642455,20.4102450704028,12301.509146245511,54.28314596082107,13.43894998708373,17.2707311742243,11.980825743591652,11.592639055921392,0.5625523012552301,0.7941696113074205,0.7040210942649967,0.5700934579439252,0.1055607917059378,0.7155688622754491,0.923809523809524,0.8543689320388349,0.6776556776556777,0.1341991341991342,0.5031939605110337,0.7176966292134831,0.6479638009049774,0.533249686323714,0.0975903614457831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026134257148934,0.0049578230188985,0.0072862332812404,0.0094177647285916,0.0115325943252313,0.0136555263640251,0.0158056818877082,0.0180936335324449,0.0200803623462533,0.0221846846846846,0.0243814913926568,0.0265598521029117,0.0287257019438444,0.0306164496456238,0.0327430706045033,0.0346952278554296,0.0367213793817635,0.0386862450059668,0.0408560108977092,0.0428648828873885,0.0575551587674508,0.071596796985398,0.0852041458604338,0.0986697513013302,0.110974080047223,0.1270470572065928,0.1397529031231772,0.1510311362717347,0.1613185780208511,0.1714426612635212,0.1843054493771063,0.1961791845609632,0.2078626643038084,0.2179506799003104,0.2277704485488126,0.2387866446807804,0.248893398298565,0.2578129389686134,0.2664301019193488,0.2742714557150378,0.2815914530507475,0.2877911393144713,0.2932945365080491,0.298522474197179,0.3042945678143912,0.3098629665165941,0.3149510875676216,0.3191854478892575,0.3238457655418786,0.3277686866554054,0.3270206608789286,0.3253800269386184,0.32442511750964,0.3235281369645308,0.3221439610080837,0.3206610810728016,0.3195171726440018,0.3197487536079769,0.319982259220088,0.3203233750936931,0.3217503699679673,0.3232039277017797,0.3255053258408119,0.326677994902294,0.3275430661149071,0.3291086314579141,0.3295951938206265,0.3325114588272483,0.3347312775330396,0.3393675983890905,0.3422023782404665,0.3425107216604013,0.3460548615906095,0.3487684729064039,0.350196005226806,0.3503004595263344,0.3461421164989326,0.3448484848484848,0.3517222066647997,0.3492573263749498,0.0,1.9820448298405744,58.78518496939759,174.7496566260607,258.0403793835249,fqhc8_80Compliance_implementation,85 -100000,95650,44598,423.1991636173549,6035,61.91322530057501,4718,48.72974385781495,1863,19.10088865656037,77.2430810454354,79.64684892763123,63.27207635196621,65.0496518395209,77.0100181267764,79.41470128868453,63.185672960197145,64.9662019038736,0.2330629186590016,232.14763894669943,0.0864033917690676,83.44993564730885,166.441,116.6077044450076,174010.45478306324,121910.82534762946,364.17575,236.4119607791636,380147.7783585991,246573.5083943164,367.33816,177.39930081519793,379628.1547307893,182209.6685453845,3382.15311,1535.3165025238904,3493247.5274438057,1562736.402489755,1132.49021,503.51079421295566,1164287.820177731,506816.0913875938,1824.11256,763.212638639538,1870800.669106116,767858.5162353456,0.37994,100000,0,756550,7909.566126502875,0,0.0,0,0.0,31102,324.5582854155776,0,0.0,33559,346.48196549921585,1564697,0,56181,0,0,6649,0,0,69,0.7213800313643491,0,0.0,2,0.0209095661265028,0,0.0,0.06035,0.1588408696109912,0.3086992543496272,0.01863,0.3301367709479642,0.6698632290520359,24.86576004753177,4.349334781229558,0.3291649003815176,0.2225519287833827,0.228486646884273,0.2197965239508266,11.145895734806864,5.806654325344427,19.925699085677834,12240.912789307567,53.518402533125474,12.501046995594534,17.656462753246032,12.027869183072143,11.333023601212762,0.5635862653666808,0.7676190476190476,0.7173213135866066,0.5769944341372912,0.1128254580520733,0.7380015735641228,0.93646408839779,0.8744075829383886,0.7083333333333334,0.1928251121076233,0.4992747316507108,0.6787790697674418,0.6587091069849691,0.5343980343980343,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021992054483541,0.0045239689205363,0.0067916713196552,0.0092157002204858,0.0113718429912626,0.0133611691022964,0.0154065765995411,0.0174707714300301,0.0194087390455154,0.0217709645376998,0.0239462619218541,0.0260331087742359,0.0280445916205598,0.0301953269872666,0.0321112280919056,0.0340192327577292,0.0359455119904697,0.0378746989952669,0.0400045767066435,0.0421184320266889,0.0569093797023909,0.0708704305017283,0.0846920242307167,0.0980148622192282,0.110477698601214,0.1259911707725044,0.1376365104321591,0.149046405765274,0.1601348098218584,0.1706491972292326,0.1835748271062824,0.1958333784970246,0.207118119840561,0.2166704992170647,0.2274250071631659,0.2379003183688863,0.2469454598298623,0.2564943480857873,0.2643585401061617,0.2720226561335519,0.279597181662263,0.2872167242489898,0.2940995297155786,0.2992705108823459,0.3040251143774944,0.309711350897553,0.314862408324453,0.3192930104441639,0.3241488560521464,0.3270615010056102,0.3257893530070269,0.3238450834240366,0.3228055320349985,0.3221696132516687,0.3211853926724973,0.3196051944862309,0.3178354868408521,0.3186279353160096,0.319274221157138,0.3196727181580549,0.3192674709679848,0.3208559337187817,0.3230167574273039,0.3237143498764878,0.3259747153059255,0.3258821986094713,0.3265370679243112,0.3312031383466734,0.3337335357886931,0.3366074650202462,0.3399944746293397,0.3426749544528989,0.3470707583058585,0.3512498083116086,0.3506036695503375,0.3466571496550083,0.3477047146401985,0.3504308576118178,0.3570637119113573,0.3623356535189482,0.0,2.319922237974889,55.80001779785951,173.04497097753463,261.21389062613093,fqhc8_80Compliance_implementation,86 -100000,95825,44632,422.08192016697103,6009,61.52882859379076,4719,48.74510827028437,1876,19.27471954082964,77.44904619750217,79.7756095815526,63.38601454967061,65.1069818468207,77.21284429265641,79.53893828180743,63.29835540318757,65.02114413858601,0.2362019048457568,236.6712997451685,0.0876591464830482,85.83770823469195,167.0383,117.0440391975222,174315.99269501693,122143.53164364435,360.67741,233.66642167531236,375898.1267936342,243363.28973389423,372.31819,180.16016629747568,385352.5489172972,185552.60338719588,3379.02307,1547.2959289692778,3491386.8197234543,1580585.3067074274,1122.24933,498.53915869455966,1159455.3926428384,508784.6243074471,1835.16438,775.6186556036481,1886638.0172188885,785348.8093923669,0.37888,100000,0,759265,7923.454213409861,0,0.0,0,0.0,30676,319.6138794677798,0,0.0,34057,352.2254109052961,1574946,0,56479,0,0,6769,0,0,75,0.7826767545003913,0,0.0,0,0.0,0,0.0,0.06009,0.1585990287162162,0.3121983691129972,0.01876,0.3366132359942866,0.6633867640057134,24.5328502442084,4.307155736298963,0.3151091332909514,0.2441195168467895,0.2208094935367662,0.2199618563254927,10.965665201669836,5.6612810236471685,20.11314841899705,12217.184219783125,53.76076869775035,13.965348851343348,16.75348460049147,11.771579671665206,11.270355574250315,0.56728120364484,0.7881944444444444,0.7020847343644923,0.5950095969289827,0.1011560693641618,0.7107692307692308,0.8914549653579676,0.860655737704918,0.7472118959107806,0.0948275862068965,0.5127230184264405,0.7260083449235049,0.6503122212310437,0.5420439844760673,0.1029776674937965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090244371752,0.0047134907199983,0.0070926303613284,0.0094269664062738,0.0116843100765734,0.0138983637603983,0.0158029424059215,0.0179120015513528,0.0201124169647419,0.0219582322906754,0.0241123123430855,0.0261494252873563,0.0285773026315789,0.0307229783991928,0.032859249785992,0.0351674690579994,0.0372390523603018,0.0391115903859314,0.0411523916386153,0.0428790039662297,0.0576220975111092,0.0712605463726751,0.0840625884276386,0.0967724990019121,0.1081374398094977,0.1231017975462067,0.1360610557557769,0.1483533427620455,0.158910510818077,0.1695884513648679,0.1829630266921902,0.1957151191685213,0.2068358993290047,0.2181044360779178,0.2282028762762103,0.23750939558739,0.2471961419804648,0.2561874936862309,0.2650940619835646,0.2727999725817691,0.2799367504991863,0.2866508790144772,0.2932751297781972,0.2989733844848398,0.3042593153589821,0.308599176347655,0.313459091249345,0.3175372282401887,0.3218292856128391,0.3262696815437433,0.3255586123599275,0.3240273281018493,0.323206940603372,0.3217475224706153,0.3202509915349553,0.3179690478005642,0.314698195787021,0.3155102040816326,0.3167778853174401,0.3174992011928852,0.3191814522141046,0.3192078741085636,0.3203343198966192,0.3206807448988684,0.3214627837915509,0.3229657637126431,0.3249985825253728,0.3287589871834948,0.3318864423985718,0.3335306420425397,0.3346508563899868,0.3368029739776951,0.3397923875432526,0.3437736993781283,0.346679227508243,0.3465580351871531,0.349709213345577,0.3473127035830619,0.353638368246968,0.3477272727272727,0.0,1.93490961370091,57.0759551142859,183.42484890737617,246.19548535409143,fqhc8_80Compliance_implementation,87 -100000,95815,44297,419.3393518760111,6071,62.21364087042739,4781,49.386839221416274,1840,18.859260032354012,77.3497797498425,79.68243318470888,63.33168066437421,65.05976730896391,77.123337656039,79.45750009060981,63.24754887124941,64.97872193553499,0.2264420938034987,224.9330940990717,0.0841317931247971,81.04537342892115,165.67364,116.109098984256,172909.92015863903,121180.50303632628,360.41215,233.9995498689954,375583.9691071336,243649.92941501373,369.34937,178.05235948243651,382575.9536607003,183568.8204742032,3445.5807,1571.8178408400204,3561388.884830141,1605783.959547064,1168.39999,512.895538815317,1206796.6080467568,522669.2828318713,1811.08002,754.6397773246737,1858057.9032510568,759874.158006511,0.37796,100000,0,753062,7859.541825392684,0,0.0,0,0.0,30693,319.81422533006315,0,0.0,33922,351.05150550540105,1576259,0,56545,0,0,6527,0,0,57,0.5844596357564056,0,0.0,0,0.0,0,0.0,0.06071,0.1606254630119589,0.3030802174271125,0.0184,0.3398394459310562,0.6601605540689438,24.29839138546461,4.422066613056446,0.3147877013177159,0.2380255176741267,0.2202468102907341,0.2269399707174231,11.355612460009556,5.8406680904402375,19.570972232910727,12143.852516343451,54.50781854248271,13.764006123284558,17.185997200375745,11.7169314839639,11.840883734858512,0.5768667642752562,0.7952548330404218,0.7169435215946844,0.5916429249762583,0.1391705069124424,0.7572298325722984,0.9280898876404494,0.8697674418604651,0.7364016736401674,0.16,0.5085087972310355,0.70995670995671,0.6558139534883721,0.5491400491400491,0.1344632768361582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0043395824672756,0.0067083443278462,0.0090115717928659,0.0111484080968365,0.0134820019347283,0.0155689233278955,0.0175678572522278,0.0196551406931937,0.0218425981842188,0.0237926828018164,0.0258842856409466,0.0278443267698318,0.0300577677550894,0.0320184848984981,0.0339946269890473,0.036249961182937,0.0383163222969048,0.0400756418648629,0.0422093810193138,0.0567657798643714,0.0710954492220177,0.0845745071116375,0.0972908215809495,0.1090217242360679,0.1237179893844234,0.1362170647884933,0.1481071531199778,0.1593710611207246,0.1693768100396868,0.1818034888857761,0.194556277056277,0.206147888702765,0.2163438415460627,0.2260111982575599,0.237428403664846,0.2464211195786795,0.2556483991048032,0.2645563875652371,0.2724483370542103,0.2793008513788635,0.285624086524408,0.2920536147357712,0.2972341954022988,0.3020255591829799,0.3069622590413353,0.3114604551191532,0.3154649921187776,0.3191225165562913,0.3225917083272876,0.3222653094199386,0.3216041646582473,0.3202954318012037,0.3189326924469025,0.3186286904142187,0.3170499992338456,0.3146001583531275,0.3156978939247197,0.3160691705683333,0.316516548716849,0.3163223217968428,0.3165483277625047,0.3173403141361257,0.3185147144196847,0.3187511998464196,0.3194411925388277,0.3215625,0.3244605893589703,0.3260778568438677,0.3264968704483722,0.3309183119000181,0.3336850991979738,0.335738939441481,0.3358516483516483,0.3396173325830051,0.3416127133608004,0.3457129756992205,0.3484299516908212,0.3483941208492107,0.3442812982998454,0.0,1.9645245262530453,57.9244843196095,178.97734677555258,259.2189014136778,fqhc8_80Compliance_implementation,88 -100000,95803,44639,421.7195703683601,6042,61.96048140454892,4737,48.90243520557812,1847,18.9138127198522,77.41775944651599,79.74308424476409,63.37436231324406,65.09421664511413,77.19111213625531,79.51992233055775,63.290657922508046,65.01422338044341,0.2266473102606738,223.16191420634368,0.0837043907360168,79.9932646707191,166.58026,116.62604343759428,173877.68650251036,121735.04320072888,359.7828,233.5665561718232,374998.5386678914,243252.9317159413,366.75695,177.53411790609178,379034.8840850496,182497.60527990083,3382.89225,1541.1058267262133,3491118.660167218,1568769.738778337,1127.20942,501.6198672975254,1163596.860223584,510711.26438681054,1808.97154,754.5926792729065,1853830.3602183647,758295.6988108308,0.38065,100000,0,757183,7903.531204659562,0,0.0,0,0.0,30697,319.8542843125998,0,0.0,33594,346.98287110007,1576668,0,56544,0,0,6631,0,0,68,0.6993517948289719,0,0.0,1,0.0104380864899846,0,0.0,0.06042,0.1587284907395245,0.30569347898047,0.01847,0.3396077190762417,0.6603922809237583,24.580623574091764,4.315941335813553,0.3156005910914081,0.2434029976778551,0.2206037576525227,0.220392653578214,11.394510455634588,6.0022617372338605,19.64168728096438,12273.227854641907,53.7727188315318,13.785813226002675,17.052503692194946,11.609266389320988,11.325135524013184,0.5704032087819295,0.7875108412836079,0.7163879598662207,0.5712918660287082,0.1206896551724138,0.7434885556432518,0.9275,0.8621553884711779,0.7312252964426877,0.1953488372093023,0.5072046109510087,0.7131474103585658,0.6633211678832117,0.5202020202020202,0.1013268998793727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0046019887889876,0.0069101277511136,0.0089476143080579,0.0112767428617912,0.0137220570870149,0.0158597492610335,0.0180554421490977,0.0203295243157055,0.0224034879436688,0.0244464944649446,0.0266172575909996,0.0288231242868743,0.031018366002306,0.033149797904809,0.0352100310889391,0.0372463183168265,0.0391888529484946,0.0411277672162142,0.0433515179277891,0.0584080214517492,0.0723321067157313,0.0856927221459344,0.0981417872036471,0.1106933341759086,0.1253776754209892,0.1390180604840845,0.1505251743493791,0.1614083755668178,0.1711016840210824,0.1838448798743897,0.1958689381745114,0.2066404638335758,0.2162790697674418,0.2262919669537704,0.2372377022886408,0.2473419075853153,0.2566388573866762,0.2652088240623301,0.2724518378780083,0.279350964314586,0.2859877220419691,0.2929760358871444,0.2992271987750023,0.3045719136551055,0.308707156482678,0.3138210163393794,0.317857914057439,0.3224976734567263,0.3266590313705356,0.3255564062269143,0.3244881132334753,0.3237726825151217,0.3230533998788333,0.3221608949820469,0.3204381013568292,0.3188955233311218,0.3203425633300037,0.3215835048740239,0.3218180201013964,0.322285329945445,0.3232750147434637,0.324384087448109,0.3248598879103282,0.3261396062633384,0.3261711138247291,0.3283294077584494,0.3315482901164975,0.3355451561081232,0.3363991631468835,0.3416866814700684,0.3429039763113367,0.3473380573148554,0.3510855586655571,0.3510977669356352,0.355946299156469,0.3599938118811881,0.3615899411883999,0.3653637350705754,0.3610260336906585,0.0,2.062796719157865,55.65863419307775,179.0681192745371,258.22176850324627,fqhc8_80Compliance_implementation,89 -100000,95720,44595,423.7254492269119,6080,62.233597994149605,4758,49.11199331383201,1853,18.96155453405767,77.3893283971574,79.74898377748386,63.35181630130408,65.09320161716155,77.15547230994346,79.51836238191535,63.26438598780632,65.00967213807675,0.2338560872139368,230.62139556850525,0.0874303134977623,83.52947908480246,165.23804,115.68686266085616,172626.45215211032,120859.65593486853,357.4197,230.90306642936676,372822.87923109066,240649.21273439904,364.20662,175.5005321774135,377005.3175929795,180626.96523795888,3372.012,1548.135963958695,3482693.679481822,1577265.309192119,1132.40939,509.4989910505585,1165122.8374425408,514396.1965328991,1816.83708,772.4594212866144,1861457.5219389887,775533.8921349262,0.38193,100000,0,751082,7846.656916005015,0,0.0,0,0.0,30495,317.9690764730464,0,0.0,33376,345.1002925198496,1583444,0,56828,0,0,6427,0,0,69,0.7208524864187212,0,0.0,1,0.0104471374843292,0,0.0,0.0608,0.1591914748775953,0.3047697368421053,0.01853,0.3298388358629322,0.6701611641370677,24.233980380328678,4.309765726275862,0.3238755779739386,0.2385456073980664,0.2173182009247583,0.2202606137032366,11.155213929407276,5.782517661982078,19.95374715399494,12290.227081528725,54.0574075198096,13.498781765698949,17.392414684755238,11.481461352946432,11.684749716408962,0.5741908364859184,0.7947136563876652,0.7222582738481506,0.5754352030947776,0.116412213740458,0.7417582417582418,0.949748743718593,0.8929503916449086,0.7322834645669292,0.1631799163179916,0.5129161882893226,0.7109905020352781,0.6658031088082902,0.5243589743589744,0.1025957972805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020762226926076,0.0043783635866095,0.006532566466835,0.0085192368225988,0.0108372981985279,0.0129979846507745,0.0151332952877873,0.0173261770167955,0.0193017053756628,0.0212935771367761,0.0235167537657546,0.0254239896580381,0.0275380189066995,0.0294804887338006,0.0316502691665119,0.0337298101664789,0.0353552608421074,0.0372798373545215,0.0391555620231586,0.0411279989165876,0.056325379836057,0.0709868469241474,0.0839512906304737,0.0967646966048766,0.1087252142563486,0.1247567681895093,0.1372415914466636,0.1489647096396444,0.1603709084693615,0.1716329090850605,0.1838084059313181,0.1966986132444886,0.2072118102361177,0.2177160102346534,0.2278538109487766,0.2388241548890168,0.247871260057808,0.2567980927104653,0.2656569094622192,0.273746664070464,0.2812424112769869,0.2879221857207992,0.2944675014484528,0.3007017291756478,0.3056358206055897,0.3111239718268236,0.3170969678775142,0.3204851135236836,0.3247948432524787,0.3295978905735003,0.328390912757091,0.3273691732629727,0.3254918493535694,0.3242708634132255,0.3237846578350072,0.3222493887530562,0.3198289195416811,0.3194587607781541,0.3209150994821477,0.3223835396811259,0.3248864719403487,0.3264831177027453,0.3280122183400631,0.3287793552995803,0.3301623906985683,0.3318200684860434,0.3336358222499503,0.3373452544704264,0.3418842145620578,0.3437955342023392,0.3476942571389781,0.3498545358370801,0.3497521490870302,0.3517610679538426,0.3529576675077095,0.3550469483568075,0.3575858417788534,0.3655268946210758,0.3725381414701803,0.3797761482053261,0.0,2.281675161428938,55.69028350218649,180.8541865905761,258.5859305765275,fqhc8_80Compliance_implementation,90 -100000,95673,44383,421.1951125186834,6067,62.15964796755616,4728,48.84345635654783,1837,18.77227639982022,77.35982293729873,79.73400212362758,63.33991942654043,65.08937081311203,77.12852262412817,79.50725792915958,63.2530580612878,65.0070736834975,0.2313003131705642,226.7441944679973,0.0868613652526306,82.29712961453117,166.35608,116.43084566905792,173879.86161194902,121696.66015391795,357.84689,231.4564597970713,373456.0220751936,241349.33554615345,360.2593,174.31237948001962,373409.1122887336,179736.95569414887,3367.07059,1531.2927946121108,3480922.4232542096,1562262.7482567984,1101.12927,483.201972798736,1136994.2407993898,491163.37832746113,1793.52692,757.367421692147,1834984.9800884265,757687.0596985767,0.37944,100000,0,756164,7903.63007327041,0,0.0,0,0.0,30570,318.9301056724468,0,0.0,33061,342.38499890251165,1576919,0,56544,0,0,6533,0,0,53,0.5539702946494831,0,0.0,0,0.0,0,0.0,0.06067,0.1598935273033944,0.3027855612328993,0.01837,0.3458457672373174,0.6541542327626826,24.410514528502947,4.315680217686051,0.3238155668358714,0.2347715736040609,0.2246192893401015,0.2167935702199661,11.225423198803789,5.888528578062817,19.503327723388544,12179.581061668348,53.25416741311136,13.260153579104465,17.24086688552012,11.71292291243765,11.040224036049118,0.5653553299492385,0.7981981981981981,0.6956237753102548,0.5743879472693032,0.1092682926829268,0.7345340642129993,0.9074550128534704,0.8723897911832946,0.7032520325203252,0.1706161137440758,0.5027528252680382,0.739251040221914,0.6263636363636363,0.5355392156862745,0.0933660933660933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.0041252369223908,0.006543905037285,0.0085718348195242,0.0108182853424434,0.0128861519670212,0.0150500820265134,0.0172427865975594,0.019407955218697,0.0214624764710696,0.0236031716761939,0.0257912285201333,0.0277406623224453,0.0296228416099504,0.0317692807558613,0.0335800070281332,0.0355297893265697,0.0376493528045137,0.0398186846318591,0.0418651186543131,0.0564488324713994,0.0702527801629353,0.0834899075250081,0.0960362806065006,0.1079396221638555,0.1236706489878414,0.1361045357563663,0.1480128252926702,0.1591365891207663,0.1701246149387658,0.182976109656354,0.1950382258029584,0.2066076131194637,0.2159523705292649,0.2258650690513425,0.2354563885534493,0.2450161848420582,0.2544606217325313,0.2629406160685932,0.2705035312432036,0.2776486370838104,0.2844694488631047,0.2910874220607896,0.2970875646675608,0.3031869078380706,0.3086561065366958,0.3130038117852902,0.3176654467825556,0.3221993767053316,0.3273168352077208,0.3266611999085886,0.3248058285792838,0.3242558224675434,0.3230778111290695,0.3212077172897543,0.3197687755195669,0.3177546435464987,0.3180423115429434,0.3185898203080921,0.3196106447579925,0.3201715773502913,0.3211823049414182,0.3221589004358028,0.3222778473091364,0.3231493490896863,0.3242659870491249,0.3267675190872193,0.3305430147980938,0.3340795410822344,0.3371498752030427,0.3407882176462566,0.3421794394511514,0.3447751741608613,0.3453501722158438,0.3454545454545454,0.345837799214005,0.3543451652386781,0.3577464788732394,0.3625605164066702,0.3687428353076041,0.0,2.235277822211793,55.791949187377256,166.57270078036342,267.0004780963406,fqhc8_80Compliance_implementation,91 -100000,95866,44647,421.3276865624935,6059,62.19097490246803,4692,48.4739115014708,1855,19.04742035758246,77.34109898624328,79.63243123934646,63.34986309044478,65.04432431484618,77.11429377819306,79.40519439531683,63.26563028770957,64.96163736595801,0.2268052080502229,227.2368440296333,0.0842328027352081,82.68694888816697,166.41526,116.51035370374824,173591.534016231,121534.5938119336,358.4537,232.627042435605,373428.6295454072,242176.58721124227,364.45288,176.77364377732425,377033.0878517932,181971.99976715972,3350.18227,1521.228395882216,3463071.4330419544,1555323.0013566485,1073.41666,473.9049762776344,1107946.466943442,482653.5838969415,1813.84954,762.2353788846422,1864197.3379508895,771926.1669098844,0.38081,100000,0,756433,7890.524273465045,0,0.0,0,0.0,30560,318.27759581081926,0,0.0,33304,344.44954415538353,1574598,0,56565,0,0,6667,0,0,69,0.6988922037009994,0,0.0,0,0.0,0,0.0,0.06059,0.1591082166959901,0.3061561313748143,0.01855,0.3277681524649551,0.6722318475350448,24.662868515846057,4.409583590310949,0.3243819266837169,0.2261295822676896,0.2282608695652173,0.2212276214833759,11.334488335334276,5.861729964384617,19.72467159681828,12299.168223256838,53.16382797733736,12.816526493473036,17.294368213100416,11.780495014508016,11.272438256255889,0.5620204603580563,0.8011310084825636,0.7043363994743759,0.5723622782446312,0.0982658959537572,0.7362637362637363,0.9225,0.8710462287104623,0.7407407407407407,0.1409090909090909,0.4970743124634289,0.7276853252647504,0.6426642664266426,0.5229468599033816,0.0867970660146699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026732823654498,0.0047826042901581,0.0065828845002992,0.0091071537352529,0.011210944646596,0.0134535536920947,0.0158215919394439,0.017923998979852,0.0202336935427859,0.022597078440198,0.0247884784790936,0.0269635494656519,0.028840820854132,0.0311953412762104,0.0331997238508382,0.0353490004231559,0.0371718383257679,0.0394322420223787,0.0414118868414222,0.0435696302615426,0.0579844637922944,0.0717525342251018,0.0857711442786069,0.0988049733271726,0.1109344564359041,0.1262079526852194,0.1388000254231902,0.1497884464099674,0.1606965651909472,0.1711392133747722,0.1843725114607322,0.197119127952245,0.2086508462784402,0.2186065322897993,0.2282133937706974,0.2390480622216313,0.2486191544203796,0.2573819728005939,0.2656680851063829,0.2736445472661887,0.2806607593179557,0.2877924993860583,0.2946256402976422,0.3003738049025951,0.3053072625698324,0.3102980695742215,0.3148970781455296,0.3185992673247176,0.3224892270662681,0.3270197853833665,0.326313521665365,0.3250034383166001,0.3236881031203775,0.3229814563022536,0.3228244536027256,0.3209342958296933,0.3191620846471977,0.3193459773329166,0.3199087494211077,0.3202692998204668,0.3214083870238499,0.3219157681539286,0.3232823061211598,0.3232666471633998,0.3231674821956301,0.3269699750885014,0.3279729884399679,0.331606544949144,0.3360036541231861,0.3384279475982533,0.3402822030040965,0.3431663837011884,0.3452838510490832,0.3483513143899103,0.3505524601001039,0.3534236804564907,0.3530223995090518,0.3548972188633615,0.3496312482928161,0.3390804597701149,0.0,1.812664038324178,56.17668241557481,168.52847947446867,263.25752631324525,fqhc8_80Compliance_implementation,92 -100000,95640,44856,424.92680886658303,6063,61.930154746967794,4761,49.173985780008366,1891,19.312003345880385,77.31769350596971,79.73728946722072,63.289715480586615,65.08023491088962,77.07011018082909,79.49383785151605,63.19657238937506,64.99138211685516,0.2475833251406243,243.45161570467155,0.0931430912115516,88.85279403445168,164.82664,115.43352778560616,172340.69427017984,120695.86761355728,356.95164,231.52926074916147,372595.4412379758,241465.251096712,365.34606,177.2982022162311,378460.3199498118,182669.0142660116,3397.06568,1554.5641126199512,3508740.1087411125,1582945.9907012426,1111.82183,498.38756479391054,1147269.0715181932,506090.5010032825,1848.46348,787.0177440050203,1889240.025094103,786284.4554232821,0.38245,100000,0,749212,7833.667921371811,0,0.0,0,0.0,30458,317.80635717273105,0,0.0,33497,346.70639899623586,1579348,0,56659,0,0,6514,0,0,47,0.4914261815140108,0,0.0,0,0.0,0,0.0,0.06063,0.158530526866257,0.3118918027379185,0.01891,0.3380436489244779,0.6619563510755221,24.43209045592098,4.285285446217712,0.3282923755513547,0.2247427011132115,0.2325141776937618,0.2144507456416719,11.156620954561706,5.739007248948103,20.327994390619946,12305.907534052163,53.92959278786343,12.888547414188846,17.66446489262562,12.138772713093632,11.237807767955337,0.5555555555555556,0.788785046728972,0.6826615483045425,0.5537488708220416,0.118511263467189,0.7295839753466872,0.905940594059406,0.852803738317757,0.7109375,0.1619047619047619,0.4903263066705169,0.7177177177177178,0.6185022026431718,0.5064629847238543,0.1072749691738594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025326201474997,0.0049791100474587,0.0068527918781725,0.0088110651531011,0.0111103197777936,0.0134678076609616,0.0156183053475608,0.01774640116879,0.0197517218793814,0.0220281476470166,0.0244728683762087,0.0265076345689167,0.0286376274328081,0.0308025582834743,0.0327836670592854,0.0349869613808518,0.0371188321046792,0.0392118165198603,0.0410240399625351,0.0431014704348732,0.0577071794335876,0.0715251218106564,0.0851233679610936,0.0977217909693184,0.1096971105103075,0.1257996864805321,0.1378998830906578,0.149955757401307,0.1618021526544412,0.1721919044345135,0.1858109201540602,0.197425032241284,0.2092683777070896,0.2204076714969496,0.2291820516494538,0.2399600621255824,0.2492650921568846,0.2575728560002703,0.2667007382169222,0.2731972352448963,0.2801547406703885,0.2869986654491817,0.2934785184483044,0.2991180176396472,0.3044081324751487,0.3096512430939226,0.3144044668118881,0.3197220914400601,0.3237892882128883,0.3285865257595772,0.3271830397455422,0.3266480377716905,0.3257295925560411,0.3248677401636263,0.3241299372901001,0.3216635230252564,0.3198902997733073,0.3205751050420168,0.3204206716405169,0.3213191277080958,0.3225541295372602,0.3230926779313876,0.3242506244796003,0.3246969865450906,0.3254190278076656,0.3263813229571984,0.3279956920984015,0.3310441704385828,0.3328794861052925,0.3351917754052985,0.3401165437494309,0.3404955170035545,0.342583852495123,0.3441341629989376,0.3471935423315186,0.3507153837058058,0.3518801589727912,0.3552974163829361,0.3605255954010402,0.3653404743687835,0.0,2.197700673695327,56.820896493602014,172.2886461032434,264.18869708121906,fqhc8_80Compliance_implementation,93 -100000,95714,44722,423.2923083352488,6191,63.5434732640993,4867,50.31656810915854,1920,19.767223185740853,77.34880342590687,79.70481917130628,63.338894218876014,65.07659447988166,77.11643336541474,79.47272691248135,63.2529335332172,64.99285515676524,0.2323700604921299,232.09225882493456,0.0859606856588115,83.73932311641852,166.42472,116.61628977624925,173877.09217042438,121838.27838795708,363.84882,235.15774964530985,379629.9600894331,245176.2016479406,371.76775,179.7832357757525,384790.041164302,185123.27903379177,3461.23379,1559.5815571588382,3579244.384311595,1592629.5982591864,1165.53077,510.8415311275582,1203716.6872139918,519796.0211272216,1879.49952,781.5241302702401,1935792.2560962867,791792.4778601946,0.38036,100000,0,756476,7903.5041895647455,0,0.0,0,0.0,30927,322.57558977787994,0,0.0,34002,351.55776584407715,1572423,0,56389,0,0,6532,0,0,69,0.7208976743214159,0,0.0,2,0.0208955847629395,0,0.0,0.06191,0.1627668524555684,0.3101276045873041,0.0192,0.3325126942606555,0.6674873057393446,24.70860901503492,4.3631004023364905,0.323813437435792,0.2401890281487569,0.2151222519005547,0.2208752825148962,11.079820935271105,5.6636344020725495,20.39932753887224,12302.683689000549,54.85401709994508,13.982265325649957,17.693326442490786,11.49874552550214,11.679679806302206,0.5580439695911239,0.7827202737382378,0.6928934010152284,0.5663801337153773,0.107906976744186,0.7442958300550747,0.9451073985680192,0.8832116788321168,0.6652542372881356,0.1463414634146341,0.4922135706340378,0.692,0.6257510729613734,0.5376078914919852,0.0988505747126436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0045918987957669,0.0067982344883567,0.0090208149209154,0.01119448511469,0.0134473456507354,0.015727725850347,0.017872818209656,0.0200500740892136,0.0221073640038892,0.0242912490006764,0.026376558731462,0.0283346698743651,0.0305248419708855,0.0327302360125433,0.0348825194767622,0.0370358866041291,0.0391977838415488,0.0410471813852903,0.0431249153443012,0.058513304649317,0.0730813910895752,0.0862691202081453,0.0988911566057188,0.1110302493355271,0.1264530732697983,0.1390539450787318,0.1510331832263421,0.162480636718124,0.173058150885511,0.1857489093553078,0.1974659438872117,0.2082050835843946,0.2183190244435938,0.2277933652417891,0.2379005451402739,0.2470510701041061,0.255963705546612,0.2650735085428847,0.2730793025227413,0.2796369824163358,0.286417760310665,0.2938176051504177,0.2995675973504857,0.3053923472856171,0.3102259434833467,0.3147648323086919,0.3198653198653198,0.3244235342777375,0.3278833232325894,0.326091343243425,0.3249398335969194,0.3236590483432611,0.3230835922259952,0.3216732298090497,0.3196772761371117,0.3176660494706357,0.3185277522634824,0.3199385193407907,0.3203706679522202,0.321313622754491,0.322791927242597,0.3242168699910021,0.325677609804097,0.3275443196305294,0.3294678688695471,0.3304596060519554,0.3343932000629623,0.339577632779064,0.3443280146066523,0.346069669888747,0.3474521952782822,0.3513977128335451,0.3528508940219476,0.3561955286093217,0.3589037817137386,0.3627039627039627,0.3624174917491749,0.3589815332960268,0.3625389408099688,0.0,2.092016635024128,55.73802454640157,181.20180807951047,270.1822712589311,fqhc8_80Compliance_implementation,94 -100000,95641,44679,424.0545372800368,6009,61.574011145847486,4678,48.37883334553173,1871,19.21769952217145,77.26744378178137,79.68202373083315,63.28338998351626,65.06921856507306,77.03785639509547,79.4530712859551,63.19855564876707,64.98699670124012,0.2295873866858926,228.9524448780469,0.0848343347491891,82.22186383294172,166.23992,116.42828032163264,173816.58493742225,121734.69570752356,359.26843,232.9848458491977,375126.9120983679,243087.74045565995,367.0957,177.92382915645626,380207.954747441,183321.3968622342,3351.86788,1534.5467709094878,3466597.202036784,1566520.0638946565,1125.55329,501.2692794031907,1161959.557093715,509222.74903356377,1834.24448,769.5937568177229,1884984.786859192,776681.2240129967,0.38018,100000,0,755636,7900.75386079192,0,0.0,0,0.0,30607,319.4655011971853,0,0.0,33530,346.9328007862737,1571918,0,56381,0,0,6690,0,0,67,0.7005363808408527,0,0.0,0,0.0,0,0.0,0.06009,0.1580567099794834,0.3113662839074721,0.01871,0.3391124542707173,0.6608875457292827,24.239039651028097,4.436173412452388,0.3319794784095767,0.2263787943565626,0.2167592988456605,0.2248824283882,11.339365070470006,5.880432976148146,20.11745405473734,12253.280596641453,53.45932514298964,12.58927485441463,17.8499566277631,11.377640996015566,11.642452664796346,0.5709705002137666,0.777148253068933,0.71216999356085,0.591715976331361,0.1349809885931558,0.7507836990595611,0.9311224489795918,0.8802816901408451,0.7404255319148936,0.1973094170403587,0.5035273368606702,0.6866566716641679,0.6486246672582077,0.5468549422336328,0.1182147165259348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0043500304197931,0.0066804743339831,0.0088712299813023,0.0111903478163562,0.0135658125229152,0.0157941962191814,0.0179891370931514,0.0200721903534873,0.0222634128357689,0.0243172004963949,0.0266985803217389,0.0287430817027755,0.0307473544292058,0.0327315517294769,0.0347166222111945,0.0366231318163457,0.0386224219714976,0.0406715486394274,0.0424016848075399,0.0561948058734388,0.0703624956795877,0.0831635546407342,0.0963091665350392,0.1088459792443069,0.1239781439281629,0.1368806754819181,0.1476831919519161,0.1589423807129945,0.1694372852233677,0.182772044471763,0.195086814769884,0.2073453397899776,0.2185154386502396,0.2285591625111456,0.2388559021623537,0.2490821234474216,0.2586005174935313,0.2673976458837017,0.2743428741664184,0.2818551140638202,0.2872712389639245,0.2936080570907843,0.2990071466257374,0.3043377857724516,0.3100057979596116,0.315672847002266,0.3204178755026212,0.3251357269652876,0.3283515031384209,0.3272413374516125,0.3258252052680884,0.3248120088599201,0.3234680875709487,0.3224379124890127,0.3198729164748135,0.3171173173713542,0.317838246409675,0.3175677986388974,0.3184945583215683,0.3183788347875035,0.3193788918415103,0.3204974685405768,0.3215892557358701,0.3220085778998602,0.3234717612314768,0.324891626739676,0.3272018363047511,0.3291370701174484,0.3302236574572419,0.336211251435132,0.3378813923506661,0.3373869858652744,0.3418500846544559,0.3471787577050735,0.352495490078172,0.3546033224654557,0.3629431162407254,0.3643898256644756,0.3658733360225897,0.0,2.02355690017789,56.245441168471466,180.2052334724908,249.7059915100189,fqhc8_80Compliance_implementation,95 -100000,95840,44670,422.2558430717863,6121,62.65651085141903,4819,49.70784641068448,1881,19.303005008347245,77.40182060844235,79.71699419234564,63.36325590393732,65.07639422500823,77.16757260769812,79.48250817468015,63.27723044491432,64.99234990075414,0.2342480007442304,234.48601766548904,0.0860254590229985,84.04432425409425,165.8657,116.19336922218372,173065.21285475793,121236.8209747326,359.05002,232.60924083167305,374060.6323038397,242131.6056257023,369.43447,178.45738875350702,381741.0475792989,183257.75326629129,3461.05663,1576.3809513367385,3574691.579716193,1608210.2789406716,1163.5195,510.1281832654957,1201519.9081803004,519767.69956750434,1847.35854,770.1029178235553,1897878.777128548,779181.2682160096,0.38066,100000,0,753935,7866.600584307178,0,0.0,0,0.0,30649,319.19866444073455,0,0.0,33891,349.9269616026711,1578862,0,56720,0,0,6571,0,0,56,0.5738731218697829,0,0.0,0,0.0,0,0.0,0.06121,0.1607996637419219,0.3073027283123672,0.01881,0.335,0.665,24.505674864113573,4.410619404443331,0.3224735422286781,0.2384312097945632,0.2162274330774019,0.2228678148993567,11.29541182209997,5.74403808814984,19.91406897041623,12274.557610798009,54.795574753904816,13.911742334877578,17.57253208307875,11.66483856595156,11.646461769996929,0.5665075741855157,0.7859007832898173,0.7007722007722008,0.5738963531669866,0.1303538175046555,0.731990704879938,0.918918918918919,0.8358585858585859,0.7254098360655737,0.1400966183574879,0.5059523809523809,0.7021276595744681,0.6545768566493955,0.5275689223057645,0.1280276816608996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0044188144199292,0.0066347441464107,0.0089988522908477,0.0112951271337216,0.0133759517895679,0.0157570198236762,0.0181261481935088,0.0200748206145102,0.0221385218468214,0.0242427348675106,0.026481093730755,0.0288219392107886,0.0309913100778386,0.0331280877089843,0.0351718294724225,0.0371501324942033,0.0391542840552058,0.041120505203681,0.042961066533454,0.0575376753402513,0.0719228919693073,0.0855906361664448,0.0984894640643711,0.1108489820851193,0.1262660935140102,0.1382174106480795,0.150124900345469,0.1612469450699565,0.1709422765882239,0.1834667010841507,0.1961705944006829,0.2080630968288629,0.2183389415723463,0.2283974366020687,0.2387119627182058,0.2484890385601819,0.2567253105502782,0.2648052802286285,0.2731756439745042,0.2803066214981906,0.2869181052114865,0.2945906000591191,0.3001880442203351,0.3050851572647705,0.310137181981627,0.3142546300348894,0.3183730537019383,0.3224395797753972,0.3259591298615689,0.3250255554957766,0.3237655339271967,0.3231877127345354,0.322234559533938,0.3216922119118911,0.3195527821112844,0.3181918760866129,0.3187693517471863,0.3190995907230559,0.3194300979519145,0.3207109881688877,0.3211786734995565,0.3214405080213903,0.3232834556118011,0.3245139354467963,0.3247656878780798,0.3276874627627883,0.3313657515849964,0.3341242149337055,0.3380270548216122,0.3407673751763688,0.3439310968153543,0.3451377531765002,0.3484365513054037,0.3505490415038154,0.3544020715630885,0.358970453853183,0.3659229208924949,0.3631115997800989,0.3664620107444359,0.0,2.291270138630564,56.486920135758695,188.83471753501527,254.29003692579224,fqhc8_80Compliance_implementation,96 -100000,95697,44644,422.6673772427558,6019,61.72607291764632,4713,48.67446210435018,1799,18.401830778394302,77.32145341825886,79.70838480693139,63.3143933609397,65.07999392647062,77.09650044915409,79.48725190667106,63.23001904270439,65.0001651083684,0.2249529691047627,221.13290026032928,0.0843743182353051,79.82881810221443,167.01784,116.91648738389918,174527.7699405415,122173.6181739231,360.91614,233.87133576977757,376568.7639110944,243811.41077544497,365.17451,176.49481184065613,378613.28986279614,182052.4460961073,3329.23476,1520.0752091175984,3437859.159639278,1547758.5745673347,1081.27283,477.70902100941913,1113283.8751476014,482751.410877628,1751.02594,738.8760692704283,1791923.1950844852,738183.5209745521,0.38185,100000,0,759172,7933.080451842795,0,0.0,0,0.0,30732,320.55341337763986,0,0.0,33471,346.7193328944481,1571446,0,56401,0,0,6721,0,0,67,0.7001264407452689,0,0.0,0,0.0,0,0.0,0.06019,0.1576273405787613,0.2988868582821066,0.01799,0.3369668246445497,0.6630331753554503,24.414143031347827,4.289991279213789,0.3123276044981964,0.2497347761510715,0.2306386590282198,0.2072989603225122,11.345237225960004,6.047508943903929,19.14950940415653,12272.169770486538,53.67697628614204,14.33216923022036,16.637724275953413,12.013267400745551,10.693815379222704,0.5709739019732655,0.7969413763806287,0.6949728260869565,0.5804967801287948,0.1013306038894575,0.7397572078907435,0.9177489177489178,0.8756476683937824,0.7098039215686275,0.1488372093023255,0.5054491899852724,0.7188811188811188,0.6307550644567219,0.5408653846153846,0.0879265091863517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022493312798897,0.0045837136193083,0.0066590872178008,0.0087702360748366,0.0109779423734331,0.0129879390432727,0.015195243582814,0.017694506840923,0.0202107974933295,0.0223043380350891,0.0243492346651083,0.0265868411053717,0.0287518902181851,0.0306761741854378,0.0328554175827578,0.0350289495450785,0.0371333278090818,0.0391572829640392,0.041038334338665,0.0428479112815809,0.0572088116402226,0.0711025501444663,0.0849181360201511,0.0980309615769145,0.1100770285955471,0.1257303751376069,0.1381532157907586,0.1502417928889457,0.1611606904291134,0.171192912456829,0.1836985327386723,0.1964861763623373,0.2078071806919655,0.2178892559452186,0.2284356644741184,0.2384353063619655,0.2476742889012827,0.2562661571316174,0.2651267746178618,0.2724472738097964,0.2790189412336085,0.2862036311771514,0.2926021042167177,0.297844037246983,0.3035070030733349,0.3090297873388417,0.3140534117205579,0.3186301927085981,0.3234100310237849,0.3280850615299481,0.3266620936394571,0.3256593406593406,0.3252366418655677,0.324588366018731,0.3242966372206963,0.3230710349050826,0.3206221617430655,0.3209048259571536,0.3216010924298028,0.3210398601149056,0.3211002303068886,0.3220071118135124,0.3223564385454393,0.3226809891462459,0.3251390460597597,0.3258658998823683,0.3266199399227578,0.3290174211637211,0.3334973292100084,0.3350673073104872,0.3384720327421555,0.3443722713236077,0.3471896584500348,0.3495860165593376,0.3490414581169138,0.3510218716385801,0.3536754507628294,0.3582028867656027,0.3599670510708402,0.3644003055767761,0.0,2.2763894853846574,58.08664164600996,169.1918127486511,258.9157426970563,fqhc8_80Compliance_implementation,97 -100000,95706,44424,420.93494660731824,6084,62.23225294129939,4726,48.816166175579376,1868,19.15240423797881,77.3455376358958,79.73160350548628,63.32130932583449,65.08694974079913,77.11284912288578,79.50028593152486,63.23450398749132,65.00306431440704,0.232688513010018,231.3175739614195,0.0868053383431757,83.88542639208652,165.62062,115.98506747904936,173050.9894886423,121188.46684539045,357.27862,231.38111695867755,372726.3494451759,241180.543078467,366.01909,177.35571861634511,378856.21591122815,182569.41859207492,3394.87774,1549.7857634875393,3509682.517292542,1581843.291107705,1106.92419,492.3207979291449,1141558.794641924,499389.352327825,1843.1312,776.4426899021563,1891601.2371220195,781162.4949731256,0.3783,100000,0,752821,7865.954067665559,0,0.0,0,0.0,30572,318.80968800284205,0,0.0,33361,344.9313522663156,1580589,0,56618,0,0,6507,0,0,54,0.5642279480910287,0,0.0,0,0.0,0,0.0,0.06084,0.1608247422680412,0.3070348454963839,0.01868,0.3298173803526448,0.6701826196473551,24.498750263458472,4.372645040553595,0.3114684722809987,0.2475666525603047,0.2096910706728734,0.2312738044858231,11.197009476262162,5.662583488681261,19.800499573698456,12238.892324262912,53.730122375239496,14.1220320348426,16.648564640629335,11.025480625929172,11.93404507383841,0.5575539568345323,0.7743589743589744,0.7126358695652174,0.5751765893037336,0.1006404391582799,0.7324940991345398,0.9398148148148148,0.8590078328981723,0.7644444444444445,0.1038961038961039,0.4931982633863965,0.6775067750677507,0.6611570247933884,0.5195822454308094,0.099767981438515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025937446174733,0.0048481160302246,0.0072389461393979,0.0094514116140571,0.0116993570440302,0.0137298838867386,0.0160306744712528,0.0182796687192998,0.0204515706806282,0.0224470568959161,0.0245628429311317,0.0266841959306087,0.0286372613561553,0.0307380005358283,0.0328276573787409,0.0347989702978485,0.0368152813458191,0.038701843241448,0.0407237936772046,0.0424168542135533,0.0567832898172323,0.0710936682365253,0.0846932885553864,0.0966900237779601,0.1089160083116225,0.1245835052200679,0.1366747673271004,0.1482925374406169,0.1591365891207663,0.1688244766505636,0.1816770521141033,0.1939365712057536,0.2055890613773432,0.2159325928762926,0.2254705558613098,0.2356538985717609,0.2457728322860746,0.2549361534567137,0.2642874968804592,0.2727366384688469,0.2805454987102819,0.2864122494301911,0.2932161903297898,0.2984293820480283,0.3043330583725557,0.3093881869517611,0.3143053473263368,0.3190160688447186,0.3234709420907237,0.327465390531533,0.3265790850901088,0.3257264254385965,0.3243129379713238,0.3244021895707289,0.3236134341834544,0.3215114149676474,0.319192972477644,0.3187808761016921,0.3202110043191014,0.3213258800207169,0.3217052082747238,0.3227473419526006,0.3243016349402901,0.3253785421931963,0.3261795346822895,0.3260795825179386,0.3278562478642214,0.3312171972720701,0.3354732337051849,0.3374364675984752,0.3385321935249181,0.3401739314879626,0.3389521353544248,0.340211680499505,0.3436439079592606,0.3464444177958988,0.343403205918619,0.3460830435671916,0.3457330415754923,0.3471522665633475,0.0,2.1554772847678723,55.82391105880282,179.62038743886694,255.65274318919955,fqhc8_80Compliance_implementation,98 -100000,95619,44648,423.733776759849,6106,62.67582802581077,4811,49.8122758029262,1875,19.29532833432686,77.23812690061078,79.66885304842172,63.25655152000609,65.05418946266762,77.00487712094599,79.43566753035249,63.17043700719292,64.97026783624048,0.2332497796647885,233.1855180692344,0.0861145128131752,83.9216264271414,166.86538,116.86338225957648,174510.69348142104,122217.7415153646,361.42335,234.0809683912757,377514.5630052605,244337.70316702305,368.03624,177.49649817934875,381768.37239460775,183200.70009503985,3396.25673,1545.5907868056363,3520330.112216192,1584871.7376312627,1132.4146,498.1297892234228,1172236.7939426266,508890.7949501909,1824.42796,767.6681560586032,1878938.4954872984,776865.3034036533,0.37981,100000,0,758479,7932.3042491555025,0,0.0,0,0.0,30839,322.01759064621046,0,0.0,33722,349.6585406666039,1566000,0,56234,0,0,6759,0,0,57,0.5751994896411801,0,0.0,0,0.0,0,0.0,0.06106,0.1607645928227271,0.3070750081886669,0.01875,0.3348931523943222,0.6651068476056777,24.352772766540248,4.234003476079981,0.3250883392226148,0.2463105383496154,0.2205362710455206,0.208064851382249,10.940240213585156,5.675986623931568,20.078286935089864,12272.054830352532,54.76688798499186,14.315402700107024,17.703630275299393,11.729218816466632,11.018636193118803,0.5695281646227396,0.7974683544303798,0.7014066496163683,0.5447690857681433,0.1198801198801198,0.748811410459588,0.93006993006993,0.8678756476683938,0.7258064516129032,0.1557788944723618,0.5057762750070443,0.7222222222222222,0.6468590831918506,0.4895448954489544,0.1109725685785536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020269174639208,0.0044222206444676,0.0066099423279993,0.0090869357510952,0.0111341801009607,0.0133052151145613,0.0154622877250242,0.0177133984390961,0.0198432993065073,0.0220007579404504,0.0241525075925469,0.02604728584199,0.0281079857144327,0.0300818539823921,0.0322923766445669,0.0343939158776967,0.0363555315972798,0.0384447583828478,0.0402327566464722,0.0422391220438352,0.05714106504422,0.071256418317091,0.0850002101105181,0.0975977082916451,0.1095282849509488,0.1247696316224288,0.1371690817150384,0.1487683468880906,0.1602756141402037,0.1709881847475832,0.1835748271062824,0.1957982828896019,0.207973327812946,0.2189441163904074,0.2283831583123051,0.2387249952847459,0.2480148522602724,0.2561786857890227,0.2647617314973791,0.2725508657511596,0.2799183228336407,0.2868316135084428,0.2934127473779128,0.2993063986825181,0.3060117945218832,0.3105327549771994,0.3150146833663814,0.3200928915032346,0.3235737296061519,0.3274045841935313,0.3267976503949767,0.3263438336876397,0.3259180790960452,0.3249467383585269,0.3240764179460071,0.3212952579916742,0.318559468776311,0.3192036390005933,0.3203438690414907,0.3206999695509663,0.3213896713615023,0.3218235877106045,0.3235621677278362,0.3252136464571697,0.3252279635258359,0.3268204645323289,0.3289541473467285,0.3316920746141464,0.3356205355571977,0.3379069675219098,0.3398767404702122,0.3453791784025083,0.3476646103487347,0.3507757833891086,0.3510907218425241,0.3552060100950815,0.357508275654529,0.3573275004971167,0.3560709413369713,0.3559001512859304,0.0,1.981343171460965,55.58665975166153,188.83053550281304,259.3875489764901,fqhc8_80Compliance_implementation,99 -100000,95731,44694,422.6948428408771,5889,60.36707022803481,4586,47.44544609374184,1707,17.590957996887113,77.33641368994157,79.71287474449254,63.332022412709286,65.08996550962154,77.12514821141649,79.49905344143787,63.25435876071411,65.01320052026067,0.2112654785250782,213.82130305467228,0.0776636519951736,76.76498936086773,167.94668,117.64125249007004,175436.04475039433,122887.31183218604,362.98117,236.03623689654543,378733.09586236434,246127.2178255167,367.17534,177.88027830963995,379612.0692356708,182887.0231268801,2607.47088,1188.810707354766,2701069.705737953,1219146.2194636697,1096.0762,480.6318149114863,1134173.3921091391,491284.0614967843,1665.7762,692.1497930993798,1718437.2669250297,704492.0663478188,0.3799,100000,0,763394,7974.36567047247,0,0.0,0,0.0,30919,322.51830650468503,0,0.0,33547,346.7633264041951,1565959,0,56162,0,0,6563,0,0,75,0.7625534048531823,0,0.0,0,0.0,0,0.0,0.05889,0.1550144774940774,0.2898624554253693,0.01707,0.3310155239327296,0.6689844760672704,24.631863545354623,4.34842305207173,0.3266463148713476,0.2394243349324029,0.2208896641953772,0.2130396860008722,11.318077524336898,5.961427925177735,18.157789721488665,12231.394402829475,51.88457522571549,13.147395270076604,16.86172634509587,11.382119998331175,10.493333612211842,0.5708678587003925,0.7768670309653917,0.6955941255006676,0.5942744323790721,0.1238485158648925,0.7647058823529411,0.9250645994832042,0.8712121212121212,0.7799227799227799,0.1703296703296703,0.5002974419988102,0.6962025316455697,0.632486388384755,0.5305039787798409,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0044625199038529,0.0068328341540179,0.0089336531425319,0.0110779935505528,0.0131281445419917,0.0153988925034927,0.0178068205023483,0.019997341866623,0.0224494809901111,0.0249090256778227,0.0269912322128909,0.0290098001912734,0.0309616018457481,0.033143470364867,0.0353805763426634,0.0375555256427513,0.0396920906299278,0.0415519087063616,0.043269481162047,0.0576073677285969,0.071498817769036,0.0848460062289615,0.0973584350330589,0.1093229627755996,0.1253236391304807,0.1385235041602628,0.1500239247168908,0.1604819688577252,0.1706227639838042,0.1828717154109368,0.1948144624167459,0.2055931595701915,0.2168889180127344,0.2269376544905245,0.2372144957658036,0.2467972283492636,0.2557468035862751,0.2636488309097709,0.2709371998353382,0.2779639085930821,0.2844717886454113,0.2913374667847653,0.2969125686328456,0.3027242637698379,0.3073129335366754,0.3125616717253094,0.3176611039142472,0.3222390317700453,0.3258659564088026,0.3246141632691505,0.3236508810572687,0.3231068289384719,0.3223410404624277,0.3213887443312765,0.319022446947062,0.3174462425182886,0.3187689782519491,0.3196297118652752,0.3206913791872009,0.3217375023403857,0.3227996762923633,0.3236498913225213,0.3236080773859938,0.325106138015399,0.3267926293629961,0.3266874232340255,0.3303185957835691,0.333286477368569,0.3362391529336836,0.339601008942903,0.3417001877178868,0.3461415305795709,0.34922471650081,0.3530360531309298,0.3586995785671282,0.3626679018063918,0.3721873099533752,0.3766693922049605,0.3821536144578313,0.0,1.8235937232566048,53.94547549374899,170.7726400035943,251.70687962702155,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,0 -100000,95613,44586,422.4530137115246,6057,62.198654994613705,4774,49.38658968968655,1864,19.19195088533986,77.26635035352784,79.70393151335128,63.26822878755484,65.07186008895698,77.03877073319867,79.47687648115671,63.18328710640738,64.9893965228052,0.2275796203291662,227.05503219457057,0.0849416811474554,82.4635661517874,166.02542,116.30156207121746,173643.1447606497,121637.81292420224,360.41773,233.7936729171692,376401.9118739084,243967.97811716932,370.4043,179.4953800487737,383390.8568918453,184712.2641683528,2744.49944,1266.768766905232,2841356.3427567384,1295823.1275090545,1157.69201,514.7961305239746,1196749.950320563,524376.6168716993,1825.03324,765.826692152779,1880089.5275747024,775935.7302385144,0.38033,100000,0,754661,7892.870216393168,0,0.0,0,0.0,30770,321.2533860458306,0,0.0,33889,350.5067302563459,1570990,0,56360,0,0,6601,0,0,69,0.7216591886040601,0,0.0,0,0.0,0,0.0,0.06057,0.1592564352010096,0.3077431071487535,0.01864,0.3313815477132458,0.6686184522867542,24.36306405755142,4.308198727482152,0.3160871386677838,0.2423544197737746,0.2218265605362379,0.2197318810222036,11.355561850353723,5.99396189457004,19.888850533472016,12304.722223971734,54.36887569219897,13.971487939745945,17.160583937594996,11.695244601941948,11.541559212916086,0.5603267700041894,0.7968885047536733,0.6918489065606361,0.5486307837582625,0.1220209723546234,0.7419106317411402,0.9035087719298246,0.86,0.7142857142857143,0.1813725490196078,0.4925201380897583,0.7275320970042796,0.6311992786293958,0.5006090133982948,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002776764360128,0.0051940147096119,0.0075761422608589,0.0096896860257035,0.0120824087457502,0.0145642447282326,0.0168598954931417,0.0190163800414865,0.0210464925922894,0.0229841478035434,0.0252273333743867,0.0271678796102133,0.0291534985227658,0.0312306677114694,0.0333422852066849,0.035191738581569,0.037065060790431,0.03899961571617,0.0411003101517453,0.0429681389164102,0.0569755893575871,0.071425577398667,0.0848379811984664,0.0968254971351533,0.1088274434422593,0.1248212526613492,0.1380428082555742,0.149774942935768,0.1608905062613721,0.1717828324612392,0.1839246610068931,0.1955053499994579,0.2078400191698162,0.2180148790936681,0.2286555122015739,0.2389377585996517,0.2489220045130588,0.2581073777137195,0.2660341987161279,0.2732986935526421,0.2808435730251196,0.2883406128877387,0.2943391757460919,0.2997110900655741,0.3051341890315052,0.3102405922270204,0.3152256981420464,0.3191925624044829,0.3235553252137859,0.3278736125226021,0.3270129415408648,0.325842542006688,0.3245748742585835,0.3238724222148359,0.3233116245873851,0.3211857659092301,0.3185596883758491,0.3186769852614975,0.3192922472006154,0.3193920429146178,0.3206480925202764,0.3223289434597485,0.3229251914804322,0.3242493399561462,0.3258183394753956,0.32659616137877,0.3282959577203256,0.3310736244679174,0.3351627088830255,0.3367172260042199,0.3404730437952878,0.3422829496517625,0.3451966309923374,0.3475919605612438,0.354366669773511,0.3597510860631678,0.3649202733485193,0.3693820224719101,0.3726826608505997,0.3749529898458067,0.0,2.124482345733473,56.949424249198245,180.10820600119578,259.2241025748627,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,1 -100000,95724,44812,424.7524131879152,6028,62.01161673143621,4730,49.01592077222013,1907,19.681584555597343,77.34534288058313,79.71225131935714,63.32656324425341,65.07371685743905,77.11123990476007,79.47620474283092,63.240249962567056,64.98852379168268,0.2341029758230632,236.0465765262205,0.0863132816863512,85.19306575637131,164.62094,115.32616678180402,171974.57272993188,120477.79739856672,357.61151,232.02593311118983,373194.5698048556,241999.073493784,364.60408,176.71395807735234,378025.4063766662,182455.7602352977,2732.77088,1255.9973278431385,2834100.998704609,1291359.8343603888,1119.62553,500.2122734087984,1158014.103046258,510931.5985633679,1876.94452,785.793835332952,1938366.324014876,801925.298389001,0.38138,100000,0,748277,7817.026033178722,0,0.0,0,0.0,30374,316.89022606660814,0,0.0,33382,345.87982115248,1581388,0,56804,0,0,6479,0,0,69,0.7208223642973549,0,0.0,0,0.0,0,0.0,0.06028,0.1580575803660391,0.31635700066357,0.01907,0.3259247499603112,0.6740752500396888,24.54758024683427,4.377584314769897,0.3160676532769556,0.2395348837209302,0.2133192389006342,0.2310782241014799,11.054071087489753,5.629452484558907,20.287083381597,12232.168349101152,53.65802985125303,13.569862777634684,16.900355702687072,11.127428824426456,12.06038254650482,0.554122621564482,0.8005295675198588,0.6775919732441471,0.5718533201189296,0.1134492223238792,0.7243844320889595,0.9268867924528302,0.8923076923076924,0.6893203883495146,0.1213389121338912,0.4923653125900317,0.7249647390691114,0.6018099547511312,0.5417185554171855,0.1112412177985948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0042365151115885,0.0065236800454527,0.0083079423115986,0.0104842482051699,0.0131339150266241,0.0151473451372537,0.0172207874401559,0.0193609060985831,0.0216498961009714,0.0240094315444154,0.0258269236693743,0.0279569228870305,0.0300201920303292,0.032373915107483,0.0345059284451657,0.036610499497706,0.0385333859150252,0.040623017977271,0.0425693771427975,0.0576378807974684,0.0718053375196232,0.0852535045748342,0.0975717532194259,0.1097347373752295,0.1255291229258381,0.1375279992356606,0.1492917243582916,0.1606394802086005,0.171564631687331,0.1848260555717163,0.1962278859271128,0.2073925769561385,0.2175055279462311,0.227170118815588,0.2374307248947018,0.2473243083378904,0.2561062046464533,0.2645629965947786,0.2720389461626575,0.2790364010830074,0.2858395799469087,0.2920074327443159,0.2982985861490534,0.3037367282975777,0.3089304641475018,0.3133455988185084,0.3182967905942167,0.3230047799784966,0.3269141868420705,0.3257663584157882,0.3245205554943238,0.3236801603998701,0.3224414749612728,0.3220674464981992,0.3206824138935299,0.3182285650997579,0.3172971288963221,0.3182251745869528,0.3192235775977206,0.3198714835431688,0.3217255922115801,0.3232046509682546,0.3242886542591267,0.3249451635452069,0.3252367658952751,0.326057919117856,0.327854996243426,0.331807220494181,0.3340175258545828,0.3392467248908297,0.3409380305602716,0.3431421759317354,0.3457268856447688,0.3465903761373229,0.3465627214741318,0.3501673258290234,0.3552551946741981,0.3484224965706447,0.3497267759562841,0.0,1.581904104267861,55.90724789536894,178.04712632026445,259.21349761923415,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,2 -100000,95660,44469,421.1373614886055,6049,62.05310474597533,4730,48.82918670290613,1911,19.621576416475012,77.2498286400838,79.64708175615641,63.26585613190741,65.0382056631289,77.0080014962059,79.40599653401138,63.17615932967021,64.95123721466672,0.2418271438778987,241.08522214503125,0.0896968022371993,86.9684484621871,165.02552,115.61422984422842,172512.56533556347,120859.5336025804,357.53017,231.75188727855505,373147.9406230399,241664.2515302287,365.72232,177.1578102898461,378115.4191929752,182032.12136709076,2720.20248,1259.0149100992462,2810148.1496968432,1282758.3296097275,1135.64378,506.4870509757696,1170573.761237717,512872.8109719525,1871.9438,786.8982144711,1923418.3148651472,794421.8862573431,0.37909,100000,0,750116,7841.480242525612,0,0.0,0,0.0,30486,318.05352289358143,0,0.0,33527,346.24712523520805,1574037,0,56543,0,0,6469,0,0,55,0.5749529583943133,0,0.0,1,0.0104536901526238,0,0.0,0.06049,0.1595663298952755,0.3159199867746735,0.01911,0.3338068181818182,0.6661931818181818,24.685559877600515,4.310666998139035,0.3162790697674418,0.2325581395348837,0.2251585623678647,0.2260042283298097,11.293192214069322,5.955025574398629,20.49119680776968,12236.253833584462,54.07438924937709,13.257040101717358,17.121705580289728,11.998347755676663,11.697295811693351,0.5653276955602538,0.7854545454545454,0.7072192513368984,0.5943661971830986,0.1113189897100093,0.7170693686671863,0.89,0.8478802992518704,0.7441860465116279,0.1428571428571428,0.5088482738613287,0.7257142857142858,0.6557077625570776,0.5464684014869888,0.1029585798816568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096559828194,0.0046041356090338,0.0069731326316216,0.0092867303393619,0.0114534487493769,0.0138512618906972,0.0160704817065709,0.0181548986572726,0.0204233994681939,0.0223164449360412,0.0246068948539895,0.0266258513184521,0.0288524860059269,0.0308589804374265,0.0329447960437336,0.0347923216945225,0.0367553340310663,0.0388924073631861,0.0407632444130009,0.0428231810314266,0.057205249299954,0.0711248874274823,0.0852740840251466,0.0977334427678515,0.1098482450030604,0.1249351776397252,0.1377552645831342,0.1488794876439935,0.1600967041430879,0.1699663762635757,0.1830736696732985,0.1957101650437007,0.2071661450893587,0.2177584750874653,0.2274854317499558,0.2371297798120292,0.2472857110877303,0.2564805414551607,0.2647075560816271,0.2724734592582379,0.279902917131178,0.2867732575214689,0.2928960319535912,0.2986306644526267,0.3042131954942215,0.3080329531679078,0.3139426820385301,0.3186017095327532,0.3223315610903844,0.3252119766825649,0.3233512695022037,0.3223704194626239,0.3208382234414106,0.3208316406476699,0.3204879649237928,0.3191335850910319,0.3171254065201872,0.3179520948226191,0.3185400959561343,0.3192878019042154,0.3199066844768874,0.3225070433712947,0.3226429756579085,0.3230167999281286,0.3251527814681514,0.3255310265643755,0.3260949995730995,0.3289552051659822,0.3328087294092959,0.3362786274665187,0.3383192820233886,0.3432883073026593,0.3448427121193132,0.3473349002957009,0.3495889387144992,0.3528372969154697,0.3560121765601217,0.3612012987012987,0.3513291312688408,0.3484333710834277,0.0,2.397169059537481,56.16146192633136,181.96108919199705,254.61245952126575,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,3 -100000,95749,44790,424.1819757908699,6117,62.69517175114101,4803,49.61931717302531,1864,19.07069525530293,77.32698317968122,79.6859342841016,63.31555014592704,65.06088652381746,77.0864352470797,79.4466644389899,63.2256253770984,64.9737440726996,0.2405479326015154,239.269845111707,0.0899247688286379,87.14245111785601,164.71466,115.30702584497516,172027.5512015791,120426.34998274148,357.50423,232.04208237164244,372815.4027718305,241784.18573996564,369.15947,179.0606623667004,382292.9743391576,184488.9426794775,2725.81888,1275.0971333017626,2817514.000146216,1302573.8993739495,1159.43395,521.678647800555,1197109.7661594376,531130.8420455174,1815.59768,774.9066797777658,1859978.819622137,779620.9329406617,0.38173,100000,0,748703,7819.434145526325,0,0.0,0,0.0,30433,317.2774650387994,0,0.0,33883,350.5519639891801,1580503,0,56775,0,0,6593,0,0,69,0.720634158059092,0,0.0,0,0.0,0,0.0,0.06117,0.1602441516254944,0.3047245381723067,0.01864,0.3509071173825399,0.6490928826174601,24.25613149412929,4.244989960340647,0.3108473870497605,0.2550489277534874,0.2238184468040807,0.2102852383926712,11.47370346800122,6.133070081711183,20.02052319025217,12340.831165429836,54.92985514739484,14.723453441163551,16.873623678823925,12.137267164665056,11.19551086274232,0.5808869456589631,0.7812244897959184,0.6992632283991963,0.6111627906976744,0.1306930693069307,0.7229182019159912,0.8809523809523809,0.8724489795918368,0.748062015503876,0.1591836734693877,0.5249564712710388,0.7208387942332897,0.6376021798365122,0.5679314565483476,0.1215686274509803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0046135750643872,0.0069626291537259,0.0092957574772431,0.0114924993643529,0.0136347436484904,0.0158461475710731,0.0176796031276157,0.0200116513189497,0.0225281473899692,0.0247104642820539,0.0266999260901699,0.0286686402697257,0.0308188146134519,0.0326280933763835,0.0347909648887143,0.0366800563193639,0.0387100789345393,0.0405437708513048,0.0427956787615505,0.0576475378174947,0.0719972381181541,0.0851523348220838,0.0981509318924828,0.1106976842238408,0.1259661031285353,0.1380634213596351,0.1498823554462508,0.1610606983679097,0.1721210299784258,0.1851919718886757,0.1972099471449614,0.2081746359936448,0.2190368854701228,0.2294760714718219,0.2403276943883998,0.2501480331147284,0.2595780153428484,0.2675233777595982,0.2750272253109417,0.2821436430813421,0.2893321931848797,0.2951015956564004,0.3006350768935256,0.305850578488266,0.3105750246791707,0.3143909959140701,0.3193226990113138,0.3244487081426552,0.3279422249214438,0.3280496673579874,0.327065236843192,0.3261613898634654,0.3251337671728127,0.3236531798783661,0.3218766295512407,0.3198554468941687,0.3206477998784554,0.3217245680889967,0.3226588688395977,0.3234506897261684,0.3239425489460062,0.3268120657444531,0.3283999195153033,0.3304966584931968,0.3315947320380754,0.3319951026451411,0.3351346256558484,0.3376350119231309,0.3407316396496374,0.343289001861014,0.345460314102903,0.3484715610122776,0.3519092627599244,0.3509247151130207,0.3541176470588235,0.3580021318714786,0.3647367359289893,0.3629300776914539,0.3651903651903652,0.0,2.0577808376469826,59.63324437824206,183.5156785509628,250.7831836048182,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,4 -100000,95764,44421,420.99327513470615,6099,62.507831753059605,4813,49.72641075978447,1860,19.057265778371832,77.39144353273707,79.73097648650037,63.36142006586866,65.08750669801694,77.16099351805164,79.50115879496839,63.275386359046514,65.00398598878361,0.2304500146854309,229.8176915319772,0.0860337068221426,83.52070923332633,165.03256,115.5420708042566,172332.56756192306,120652.92887124242,357.82972,231.59495560440496,373147.9365941272,241333.88335588208,362.92952,175.38355895524856,375782.3085919552,180639.5727912262,2746.26168,1262.4237974842465,2839435.194854016,1290354.783358812,1125.76421,499.7303287389162,1163525.416649263,509825.5369865458,1813.9156,761.7513766550774,1860648.281191262,767995.5096761575,0.3785,100000,0,750148,7833.298525541958,0,0.0,0,0.0,30480,317.72900045946284,0,0.0,33231,343.82440165406626,1585754,0,56910,0,0,6482,0,0,61,0.6369825821811954,0,0.0,0,0.0,0,0.0,0.06099,0.1611360634081902,0.3049680275454993,0.0186,0.3242310106716886,0.6757689893283113,24.357274752826157,4.332752163103111,0.3149802617909827,0.2426760856014959,0.2302098483274465,0.2121338042800748,11.45734064136142,6.098021948375954,19.72329921962714,12202.58007771892,54.53166611886876,13.975243675518426,17.11472501921299,12.382686693932426,11.059010730204914,0.5705381259089964,0.788527397260274,0.683377308707124,0.6046931407942239,0.1165523996082272,0.7398311588641596,0.928735632183908,0.8724489795918368,0.7237354085603113,0.1461187214611872,0.5076923076923077,0.7053206002728513,0.6174377224199288,0.5687426556991775,0.1084788029925187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021160699821804,0.0041347021089007,0.0064020616464763,0.0086937975442053,0.0108488983335197,0.013201286540184,0.0151823925005094,0.0173240557471381,0.0197059935232763,0.0219264140132602,0.0240676229508196,0.0260895436638214,0.0282775557176765,0.0304333954283008,0.032420006597394,0.0341913891413932,0.0361086675291073,0.0382692746468648,0.0400931383249654,0.0420017500729197,0.056772159826312,0.0707327536595829,0.0840825404152198,0.0972813798180575,0.1097450389084544,0.1248360898439152,0.1366379264632581,0.1482375972167548,0.1593100870401025,0.1699023401906028,0.1833125215294523,0.1950834387809177,0.2069381500440155,0.21708068427607,0.2269010090351513,0.2368607404456836,0.2464359360196177,0.2555968682250654,0.2637580621393999,0.2706354836495114,0.2773893043307405,0.2844336921332819,0.2915760098382366,0.2969878435834481,0.3023388407695854,0.3075266435304831,0.3119610048743907,0.3170238473767885,0.3217885190120709,0.3267277159233151,0.3255923342606405,0.3242300668671307,0.3235223838639398,0.321630853041636,0.3213100177830468,0.3199456762241924,0.3186353446370497,0.3186541640073969,0.3200183889257803,0.3213662428322114,0.3220789429357489,0.3235137323039864,0.3235595953672482,0.325385286420471,0.3247169356781498,0.324368080217255,0.3264788812622824,0.3294506532346922,0.3313524157817005,0.3350154970992609,0.3397113891679605,0.3413592440339544,0.3431174089068826,0.3478625314333612,0.3491201797079745,0.3558289396602226,0.357580283793876,0.3514263074484944,0.3546745245111171,0.3585046728971963,0.0,2.0150336051604865,57.185836194273705,179.70314553628717,261.5917923487098,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,5 -100000,95717,44579,421.9835556902118,6251,64.16832955483352,4866,50.126936698810034,1975,20.27852941483749,77.37264048070351,79.73057411294495,63.34029949113111,65.08127132234401,77.13129600027143,79.4880551118156,63.251897710210095,64.99427317100167,0.2413444804320761,242.51900112935232,0.0884017809210178,86.99815134234257,164.7492,115.39884378675744,172121.1488032429,120562.53725749602,357.85369,232.4444862882696,373177.7949580535,242157.9259100513,371.12651,179.9089410314842,381657.803733924,183537.06976763284,2797.25864,1290.9507630708415,2885429.923629031,1311803.9676229132,1181.31304,521.1226544696566,1218398.6648139828,528667.0753049679,1931.78618,806.6611987966508,1985574.1195398937,818368.7000965215,0.37959,100000,0,748860,7823.688581965586,0,0.0,0,0.0,30524,318.17754421889526,0,0.0,33997,349.1856201092805,1580998,0,56705,0,0,6460,0,0,67,0.699980149816647,0,0.0,0,0.0,0,0.0,0.06251,0.1646776785479069,0.3159494480883059,0.01975,0.3402925937214264,0.6597074062785736,24.113901803339328,4.39845483102316,0.3166872174270448,0.2398273736128236,0.2219482120838471,0.2215371968762844,11.27337004286874,5.849085717901096,21.053992791924323,12307.60390420646,55.46683129100568,14.060978243537711,17.46027750413788,12.055646534057722,11.88992900927234,0.5581586518701191,0.7900599828620394,0.6859182349123946,0.5685185185185185,0.1141001855287569,0.7351837959489872,0.9328859060402684,0.8850855745721271,0.691358024691358,0.141025641025641,0.4913671101047268,0.7013888888888888,0.6139575971731449,0.5328554360812425,0.1066350710900474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0046618629209611,0.0068068616411536,0.0092013324666883,0.0114591912474961,0.013844493759798,0.0161970969583299,0.0182703397874924,0.0204438356724488,0.0225816357866721,0.024729584251807,0.0269501652943471,0.0290787944844889,0.0314311902040143,0.0335706179717321,0.0355323129075932,0.0375405066829556,0.0393303877030306,0.0411361817558227,0.0430036973389574,0.0569552188938889,0.0702492309623956,0.084013965631127,0.0963646491292604,0.1093530943320648,0.1247396851908622,0.1370529843464981,0.1486316819884235,0.1593170752541214,0.1694419128290355,0.1832012575907662,0.1956947374114338,0.2079926054806437,0.2184031233254229,0.2279383450870804,0.2387689307911325,0.2477200424178154,0.2563784988853109,0.2653262906798432,0.2729034551563593,0.2802000602033019,0.2870686829907767,0.2941866527632951,0.3005939881202376,0.3060182370820669,0.3106183011211564,0.3153940547444341,0.3195287351934552,0.324710634661695,0.3295916213792011,0.328802519312034,0.3280388354855123,0.3277850534409193,0.3266521192502782,0.3250531448364031,0.3235158907720126,0.3217106408572197,0.3219334395061323,0.3218531975504495,0.322196894144465,0.3238111241808099,0.3247725213692047,0.3255439330543933,0.3263977163756383,0.3279710388147011,0.3290235480437209,0.3292606871527384,0.332416895776056,0.3357272346953005,0.3362187684438323,0.3383683068017366,0.3423194840892272,0.3464512478782925,0.3473843821076573,0.3490152151591524,0.3533914272256241,0.3559038344491783,0.3563797621447289,0.3626673954632413,0.366030534351145,0.0,2.7616485974952463,58.09726267092049,184.99113799884225,259.86801345986834,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,6 -100000,95740,44369,420.1692082724044,5957,60.89408815542094,4726,48.74660538959683,1845,18.88447879674117,77.33281654085012,79.69916136189197,63.319784280511655,65.0708846597049,77.10399201515393,79.47144906681847,63.23469072082824,64.98866163895443,0.2288245256961829,227.712295073502,0.0850935596834148,82.22302075047594,166.49578,116.63667080224512,173903.8646333821,121826.2690768593,357.92375,231.82117838451828,373189.0432421141,241478.78666818063,360.47476,174.34134887283665,372511.5312304157,179003.15725649227,2696.79716,1235.380276903372,2783278.044704408,1256979.6073702462,1118.32594,494.112315315141,1152115.1242949655,500223.70702514384,1808.48914,759.8855734714896,1853457.5308126172,762437.382136997,0.37844,100000,0,756799,7904.721119699186,0,0.0,0,0.0,30567,318.59202005431376,0,0.0,33011,340.7979945686234,1574517,0,56478,0,0,6452,0,0,60,0.6266973052015876,0,0.0,1,0.0104449550866931,0,0.0,0.05957,0.1574093647605961,0.3097196575457445,0.01845,0.3331737673528004,0.6668262326471996,24.532007924142377,4.339182602643,0.3186627168853153,0.2329665679221328,0.228311468472281,0.2200592467202708,10.992238440826725,5.6401705743,19.63302317687676,12144.426866895226,53.32492541345346,13.110795349084745,16.967597381537498,11.956228967020706,11.290303715810508,0.5636902242911553,0.7811080835603996,0.701859229747676,0.5801668211306765,0.1163461538461538,0.73868149324861,0.9072681704260652,0.8769230769230769,0.7346153846153847,0.1666666666666666,0.500144216902221,0.7094017094017094,0.6406810035842294,0.5311355311355311,0.1036144578313253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002290022190923,0.0044627914760682,0.0068027210884353,0.008995639401917,0.0112928824319374,0.0133841264667535,0.015409090445548,0.0175293517100561,0.0196928488169976,0.0219637316840908,0.0238676208247042,0.0259577570362155,0.0280699589746753,0.030020288153572,0.0322520737897734,0.0344706405234162,0.0365679370339685,0.038635561735954,0.0406138873292157,0.042502656416026,0.0562254026912196,0.0701238649202828,0.0828501022387668,0.0954909113846865,0.1070284172358546,0.1224621436426698,0.1347679450195146,0.1467482703565726,0.1575360755369941,0.167808843559302,0.1814755792919286,0.1934283272204009,0.2044587026262846,0.2137679178648356,0.2234480179506357,0.2339888386925325,0.2440439658539307,0.2533003207472849,0.2611434603466476,0.2684965703619728,0.2757187832770035,0.2828660071416027,0.2904781084154663,0.2956616624298527,0.3015182272357081,0.3068429947817076,0.3111417298177491,0.3160440399669064,0.3211536966493042,0.324396782841823,0.3244321090781709,0.3236593928546843,0.322471070769144,0.3214755496451338,0.3216469083282512,0.3202597362819119,0.3175723806056384,0.3185174246898996,0.3188294514119956,0.3212063956079214,0.3222136990402065,0.3229331331014859,0.3242807825086306,0.3245457386490468,0.3271124561656338,0.3281840206319847,0.3265718925386741,0.3311961782638758,0.3353329123693258,0.3398705784270912,0.3425255972696245,0.3481009296148738,0.3478178845428248,0.3489464908291648,0.3539121514501538,0.3572184962936816,0.3595931997571341,0.3649869504115639,0.3571233251298878,0.3537933663743804,0.0,2.310021489263643,54.930443716617646,171.77898595403835,264.160403136177,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,7 -100000,95786,44573,421.6691374522373,6066,62.23247656233688,4734,48.91111435909214,1790,18.33253293800764,77.34910350822409,79.67699574091611,63.34642956891118,65.06660120549843,77.1276300258796,79.45752855177012,63.2637511676756,64.98695987793435,0.2214734823444928,219.4671891459876,0.0826784012355759,79.64132756407594,165.3487,115.86312484109902,172623.03468147747,120960.39592539518,356.85309,231.10016950679105,372041.9581149646,240758.74273013807,366.11262,177.03854922060944,379220.48107239057,182570.61680879424,2692.80972,1239.6579588918876,2783779.4667279143,1266798.9762647853,1152.79892,507.271656306978,1190387.8019752365,516461.2744106412,1757.30096,740.8707948770569,1801522.8530265384,746916.1333749339,0.38061,100000,0,751585,7846.501576430794,0,0.0,0,0.0,30430,317.13402793727687,0,0.0,33503,346.71037521140875,1581613,0,56794,0,0,6540,0,0,65,0.678596036999144,0,0.0,0,0.0,0,0.0,0.06066,0.1593757389453771,0.2950873722387075,0.0179,0.3282261885957984,0.6717738114042016,24.515851872122827,4.289183255705678,0.3231939163498099,0.239332488381918,0.2230671736375158,0.2144064216307562,11.143239115600927,5.72317284955156,19.14994050544251,12303.394559681105,53.79033226347102,13.5986823694781,17.255236698014816,11.87278903257758,11.06362416340054,0.5726658217152514,0.8058252427184466,0.6862745098039216,0.5861742424242424,0.1270935960591133,0.7251552795031055,0.9330143540669856,0.830423940149626,0.7098039215686275,0.1401869158878504,0.5156703424260012,0.7314685314685314,0.6350752878653676,0.5468164794007491,0.1235955056179775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0044902137666102,0.0068072759736636,0.0091009740886329,0.0112762842152356,0.0134675678977157,0.0155119346093479,0.0177784128020901,0.0198021825315731,0.0219969102014507,0.0240956449580477,0.0262593508532493,0.028497728814256,0.0304555466353774,0.0326009629759462,0.0347459640352417,0.0368067052980132,0.0388535758355022,0.0407734909963736,0.0428824325731542,0.0577099682751711,0.0718416951669752,0.0851217747769471,0.0972613392744545,0.1095702754536449,0.1248665955176094,0.1379346892918843,0.149291820849815,0.1608831124485135,0.1709018061834465,0.1836438188099312,0.1967346056117208,0.2083097795364612,0.2187694763659424,0.2284233803095811,0.2387375415282392,0.2484153200607088,0.2575810386894388,0.2674040043105893,0.2749124373326008,0.2820945750598466,0.2888491186206735,0.2955806661539372,0.3007594451498526,0.3062959140307206,0.3105284567878407,0.3153902954906697,0.3204708876869233,0.3245519690039004,0.3284423782984231,0.3279209841941439,0.3267514871116986,0.3253098591549296,0.3240225884255983,0.3235136980202427,0.3216475300808782,0.3207067115472747,0.3214958784680684,0.3216233721960864,0.3226479345326178,0.323008766846739,0.3236490756833623,0.3238069334895495,0.3227538079581292,0.3230732177263969,0.3245881953689926,0.3256717014533307,0.3279376498800959,0.3314317909711951,0.3358036496932026,0.3391903610058874,0.3419947924969446,0.342704829599543,0.3463832390273742,0.3495127258964897,0.3528003829583532,0.3523588553750966,0.3497547015535568,0.3484764542936288,0.3525009846396219,0.0,1.9367421193388,56.784073493728734,176.78100238488443,257.2780333221144,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,8 -100000,95665,44774,424.2721998641091,5981,61.39131343751633,4654,48.04264882663461,1844,18.96200282234882,77.31532774038504,79.70794907543052,63.31028192710126,65.07669353994599,77.08483228677169,79.47762616228748,63.22517221987268,64.99387601799378,0.2304954536133578,230.3229131430413,0.0851097072285753,82.81752195220804,166.7633,116.76001100064428,174319.84529347203,122050.6883401916,358.73194,232.91651970932804,374383.80808028014,242867.1402386746,364.67943,176.01092938894968,377367.1039565149,181066.2270487773,2677.2766,1227.5294329521134,2767059.6351852817,1251618.0765714883,1108.74948,490.80758355981146,1144854.2413630898,498924.24068776495,1810.21608,761.7160662797902,1863534.249725605,770724.2691250214,0.381,100000,0,758015,7923.629331521454,0,0.0,0,0.0,30553,318.74771337479746,0,0.0,33330,344.51471279987453,1571595,0,56343,0,0,6696,0,0,71,0.7421732085924841,0,0.0,1,0.0104531437829927,0,0.0,0.05981,0.1569816272965879,0.3083096472161846,0.01844,0.3376934120274366,0.6623065879725634,24.400522576297124,4.350874384373292,0.319295229909755,0.2363558229480017,0.2191663085517834,0.2251826385904598,11.045332644479682,5.6393998915299415,19.684019422287363,12258.344966464729,52.81528714260197,13.145343885034798,16.848360683823017,11.250094083216942,11.57148849052722,0.5623119896862914,0.7890909090909091,0.6944818304172274,0.5843137254901961,0.1154580152671755,0.7219950940310711,0.9205128205128204,0.8277634961439588,0.7847533632286996,0.1221719457013574,0.5053920139900904,0.7169014084507043,0.6472196900638104,0.5282308657465495,0.1136638452237001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0045722743770149,0.0071951937323672,0.0093166439761851,0.0115865071614583,0.0136389101094983,0.0157888295051201,0.0178642561666922,0.0201053331288029,0.0221598705634177,0.0245010563452505,0.0268410185822436,0.0287016367134054,0.0306443136972045,0.0325041288191577,0.0346992387886811,0.0366582740148995,0.0390663110151636,0.0409831802531803,0.0428674163861298,0.0571180809494953,0.0713328447283007,0.0843286245041036,0.0973841491645271,0.1093499366821443,0.125281820587457,0.1378274210844844,0.1493588104976141,0.1612961834834931,0.1716732670079526,0.1843597094389239,0.1962860700557631,0.2079002079002079,0.2185831217718638,0.2283234766136936,0.2380931254020719,0.2478080707672031,0.2572476816422076,0.2656108083560399,0.2731075583061143,0.2793210055231986,0.2870602279909178,0.2926837930626257,0.2986526856306463,0.3037493317781989,0.3097562178017698,0.3150002503379562,0.318299788809445,0.3228795899613,0.3265397713772803,0.3254814814814815,0.3239079858482124,0.3232963103734673,0.3225452074991689,0.3214397124140287,0.3190987847062785,0.3170855145581932,0.3179027002243364,0.3182779198635976,0.3189115985673301,0.3204766618726535,0.3221645926597906,0.3233723535694092,0.3237580414581844,0.3250072122319454,0.3244910709637111,0.3266837899543379,0.3286382011116726,0.333909607310447,0.3363817891373802,0.3385855624770978,0.3424686750199947,0.3441044161439524,0.3460798645841348,0.3487442922374429,0.352793396339275,0.3521234341582646,0.3531300160513643,0.3502762430939226,0.3551223241590214,0.0,2.354895220067821,53.39855628561939,180.5451685764544,251.1374054575356,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,9 -100000,95614,44476,420.5241910180517,6129,62.73139916748593,4818,49.67891731336415,1906,19.390465831363606,77.3146043072854,79.73357135864876,63.296484254502126,65.08300333398606,77.07043914185029,79.49678703118093,63.20405770806428,64.99714137423291,0.2441651654351204,236.78432746783076,0.0924265464378422,85.86195975314581,165.66616,116.03384328056354,173265.58872131695,121356.5411765678,359.25678,232.93056101225787,375035.49689376034,242917.21890385635,372.67172,180.69519808381588,385974.9932018324,185983.89947485548,2772.52488,1293.749314669078,2860684.209425398,1314375.691132588,1153.28997,519.6265570287145,1185924.2893300145,523254.0980174326,1869.06786,798.8511280614528,1904365.1348128936,791362.2229034337,0.37909,100000,0,753028,7875.70857824168,0,0.0,0,0.0,30621,319.5347961595582,0,0.0,34151,353.5047168824649,1573414,0,56460,0,0,6537,0,0,60,0.6170644466291547,0,0.0,1,0.0104587194343924,0,0.0,0.06129,0.1616766467065868,0.3109805841083374,0.01906,0.3330745341614907,0.6669254658385093,24.55051327101604,4.327962111656517,0.3198422581984226,0.2337069323370693,0.2233291822332918,0.2231216272312162,11.32980993500333,6.041423177975838,20.431229300744548,12293.058744867509,54.96339481978489,13.62540573469414,17.452106466282718,12.003287358366435,11.88259526044158,0.5709838107098381,0.7992895204262878,0.7008436080467229,0.6003717472118959,0.1162790697674418,0.7286135693215339,0.9127358490566038,0.8561151079136691,0.7709090909090909,0.1333333333333333,0.5092432120161756,0.7307692307692307,0.6432384341637011,0.5418227215980025,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190023608563,0.0048371885489448,0.0072887481219799,0.0095107453132144,0.0120646158854166,0.014259523324506,0.0163707020532226,0.0185105730922464,0.0205275592967239,0.0228773898884804,0.0249230769230769,0.0268621146596267,0.0289908747672396,0.0310655002936539,0.0334444708238281,0.0354868061874431,0.0376230442441197,0.0397857053864363,0.0415574145752694,0.0436392461174212,0.0581078114710401,0.0716253732125085,0.0851588918527231,0.0982408859786716,0.1110559819270113,0.1263979496738117,0.1389110225763612,0.1506608399062033,0.1621017268311471,0.1724793708096957,0.1853918035263396,0.1977452574525745,0.2094847877255688,0.2196084017224188,0.2291257854701797,0.2396164006482118,0.2497065891689487,0.2583560594108499,0.2666143915632529,0.2740370276904724,0.2804567352232722,0.2873208121233397,0.2936329410650439,0.298865734634661,0.3034697173947365,0.3085377724657146,0.3135125667746737,0.3170129969224508,0.3211253752976498,0.3251619542701832,0.324369091545692,0.3224106860357943,0.3210429880197322,0.3207951158820636,0.3199654638561391,0.3179056852698432,0.3162444680614818,0.3172097005219052,0.3189409787715628,0.3191082004759604,0.320570936200502,0.3220071741101344,0.3231266958881235,0.3251539216561078,0.3260286439622551,0.3281849279568777,0.3297992969724458,0.332251217380447,0.3344384728135688,0.3390586748795704,0.3426763110307414,0.3454267004647233,0.3450406709124156,0.3489555639954425,0.3507455687892713,0.3529832935560859,0.3591254458055512,0.3603843008994276,0.3634868421052631,0.3712179984484096,0.0,2.769021731273926,58.955347947255184,178.43298840496186,258.04865174528624,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,10 -100000,95622,44441,419.7465018510385,6131,62.66340381920479,4862,50.0198699044153,1956,19.953567170734768,77.29129418892526,79.69307663835029,63.29829466637945,65.07063351164358,77.04486738690797,79.45210716768787,63.20562268536187,64.98375612359358,0.2464268020172966,240.9694706624208,0.0926719810175811,86.87738804999867,166.01486,116.30735981021913,173615.7578799858,121632.42748553588,360.31628,234.0622580459726,375949.1330446969,243916.94261984623,369.66075,179.73273983004074,381554.1716341428,184090.4565688337,2764.55964,1288.381154694918,2846656.8362929034,1303094.2352232256,1167.96938,517.2353824761861,1203161.657359185,522724.3412362728,1902.23786,808.4222406655617,1942128.7151492331,804178.4635077406,0.37978,100000,0,754613,7891.625358181172,0,0.0,0,0.0,30799,321.20223379557007,0,0.0,33961,350.1600050197653,1570128,0,56348,0,0,6640,0,0,52,0.5438079103135262,0,0.0,0,0.0,0,0.0,0.06131,0.1614355679603981,0.3190344152666775,0.01956,0.328715953307393,0.671284046692607,24.38601876420313,4.363575278060362,0.3243521184697655,0.2354997943233237,0.2250102838338132,0.2151378033730974,11.313020005596348,6.0193125101313925,21.09933913741117,12299.69701615756,55.72828731696619,13.91349752230918,18.029558557894187,12.228887611275152,11.556343625487663,0.5726038667215138,0.8017467248908297,0.7070386810399493,0.5712979890310786,0.1204588910133843,0.7276688453159041,0.911504424778761,0.8454545454545455,0.7215686274509804,0.1478260869565217,0.5113342898134864,0.7301587301587301,0.6534740545294635,0.5256257449344458,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025222086038714,0.0047450065902869,0.0069526912497589,0.0094705822579006,0.0116696680198191,0.0137597392677089,0.0161510696005057,0.0187066668028141,0.0211436809226333,0.0234577381866584,0.025607629986668,0.0274639497144735,0.0295769721410641,0.0318615075480447,0.0340673294310756,0.0361176616606677,0.038190090267486,0.0401308275360814,0.0420377923915757,0.0441024678614994,0.0586507812091759,0.072762698903217,0.0864127524178559,0.098648335684359,0.111358574610245,0.1268431582178658,0.1394294571668206,0.1514370326181903,0.1624826258954346,0.1727847625591857,0.1855969119296127,0.1976804626080176,0.2093592841747763,0.2192136295452803,0.2298739088263821,0.2400869574862188,0.2492430421326659,0.2579228820714889,0.266020255234116,0.2742617484272405,0.2808372211481691,0.2873992253957853,0.2933728161089725,0.2992286560861794,0.3042473203314151,0.3087636121194163,0.3130797773654916,0.3173467956808302,0.3218650268545185,0.3258305263853114,0.3243017362234444,0.3229607375659771,0.320625555759432,0.3194896969170395,0.3191552735829386,0.31735450873178,0.3163257209058736,0.3170683491754938,0.3179698216735254,0.3182225407633041,0.3187125157457369,0.3199714240355612,0.3221736204576043,0.3231138422894052,0.3239287433798748,0.3249328219978607,0.3267853081646577,0.3302867552372876,0.3321265377855887,0.3332140158294555,0.3376138433515482,0.3410787063991954,0.3440080690915968,0.3484117872177573,0.3518063173822583,0.3581713462922966,0.3581532721902689,0.3632771886046995,0.366825708672467,0.3677494199535963,0.0,3.2048565825959128,59.502789320560446,181.83124200871924,259.6662811219459,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,11 -100000,95640,44790,423.19113341698034,6136,63.03847762442493,4826,49.96863237139272,1864,19.165621079046424,77.27514686010801,79.68672276185454,63.27600815666828,65.05689005300135,77.04238229891195,79.4535509920496,63.19082067696895,64.97339537635405,0.2327645611960633,233.17176980494023,0.0851874796993357,83.49467664730525,165.51084,115.92096979153838,173056.0853199498,121205.5309405462,358.27351,231.65951075623627,374083.1451275617,241698.99639778488,370.85828,179.0690162724034,384557.7582601422,184819.3085593019,2757.51484,1268.832153038462,2855707.1518193223,1299245.0770959875,1150.3083,510.80777307333807,1189768.4127979924,521151.91190766345,1835.93142,763.8038671214775,1889122.8147218735,773479.6941092493,0.3819,100000,0,752322,7866.185696361355,0,0.0,0,0.0,30585,319.2492680886658,0,0.0,33897,351.24424926808865,1572724,0,56515,0,0,6464,0,0,61,0.6378084483479716,0,0.0,0,0.0,0,0.0,0.06136,0.1606703325477873,0.3037809647979139,0.01864,0.3305926155755507,0.6694073844244492,24.89463752666689,4.238158314320406,0.3253211769581434,0.2387070037297969,0.214048901782014,0.2219229175300456,11.306786939176112,5.901164935753047,19.877259505231624,12396.368496892625,54.98358691151949,13.84521971748672,17.80232569546652,11.607954780447615,11.728086718118618,0.5712805636137588,0.7786458333333334,0.7038216560509554,0.6030977734753146,0.1232492997198879,0.7370398196844478,0.911904761904762,0.8764845605700713,0.7265917602996255,0.1569506726457399,0.5081545064377683,0.7021857923497268,0.6405570060922542,0.5600522193211488,0.1143867924528301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047535550307612,0.0070924864288975,0.0094565769426104,0.0116152523927216,0.0137893107381456,0.015999102663458,0.0182948617165725,0.0205698629016592,0.0230484108781127,0.0253146379740083,0.0277783485032154,0.0299497921725173,0.0322314645886803,0.0342933261738313,0.0362899054476237,0.0382881248769162,0.0403884100114238,0.0420508231180669,0.0441225545405247,0.0584546566193915,0.0725512385263422,0.0857704105214504,0.0987200421385304,0.1107824911272604,0.1268150093729149,0.139256378377804,0.1509844261333958,0.1615920547094896,0.1723448616813189,0.1855062450746494,0.198225942874493,0.2103915071718184,0.2203168685927306,0.2308702320398097,0.2411039537983118,0.2497286531123767,0.258368023826446,0.2672841472850575,0.2748461467805639,0.2819037899522197,0.2887120030948501,0.2956901254773595,0.3024445298242244,0.3078859366449809,0.3124568157141447,0.317153280096278,0.3219080371927143,0.3264636029745759,0.3310939483707152,0.329937251197625,0.3282417491521685,0.3280013541534425,0.3268059874177453,0.3261286438435581,0.3237822349570201,0.3218181530326298,0.3215581941502028,0.3222951658282889,0.3218136774377528,0.3220570871675693,0.3233819057773565,0.3241409636283686,0.3249888243182834,0.3260660545166098,0.3275161491977495,0.3281081081081081,0.3313222724987431,0.3352761490116218,0.3374885862876652,0.3396200690783494,0.3437533227006911,0.3499591169255928,0.3508678844841961,0.3529079083796776,0.3570916905444126,0.3618886496462626,0.3624489795918367,0.367590027700831,0.3715277777777778,0.0,1.7295742841821962,59.101191336661216,181.65691463457117,258.1177583830841,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,12 -100000,95690,44993,425.7289162921936,6067,62.4307660152576,4710,48.6989236074825,1930,19.866234716271293,77.28391542799022,79.68044115010812,63.28504443165552,65.0590362200264,77.04385729084485,79.43931908238775,63.19700292493443,64.97243964053659,0.2400581371453682,241.1220677203687,0.0880415067210904,86.59657948980737,165.34012,115.89493201118692,172787.2504963946,121114.98799371607,363.03457,235.488011923464,378884.46023617935,245593.0420351803,371.15287,179.56770064098538,384219.981189257,184888.83249554076,2725.84756,1248.1354504022163,2821675.451980353,1277405.2987796182,1129.93923,496.4970453284671,1169218.7375901348,507245.5066657611,1901.39504,791.8846681155592,1959721.8727139723,805992.943477528,0.38162,100000,0,751546,7853.9659316543,0,0.0,0,0.0,30935,322.7505486466716,0,0.0,33894,350.5068450203783,1571647,0,56469,0,0,6566,0,0,66,0.689727244226147,0,0.0,1,0.0104504127913052,0,0.0,0.06067,0.1589801373093653,0.3181143893192681,0.0193,0.3300252047889099,0.6699747952110902,24.49240052346645,4.34705163627007,0.3276008492569002,0.2225053078556263,0.2140127388535032,0.2358811040339702,11.133204703353528,5.811141468841432,20.551612169904395,12302.308681028464,53.76910761769326,12.727534866593295,17.48649628919914,11.336611231555391,12.218465230345432,0.5560509554140127,0.7948473282442748,0.6973428386260532,0.5803571428571429,0.1125112511251125,0.7222653219550039,0.9106280193236715,0.8914141414141414,0.7336065573770492,0.0936170212765957,0.4934229757380883,0.7192429022082019,0.6303400174367916,0.5314136125654451,0.117579908675799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002036845625342,0.0045845504706264,0.0067311694772429,0.0091462485137346,0.0114567117405858,0.013711188982153,0.0158396654597378,0.018313110266781,0.0205676297622091,0.022854391608105,0.0249194657036748,0.027187538531092,0.0294399110937323,0.031535988127628,0.0336619354838709,0.0356995118722594,0.0378103369668835,0.0399738420976146,0.0418456609700537,0.0436160123396316,0.0586944940616088,0.0718286414221254,0.0857811499753381,0.0989404126813767,0.1109387367421244,0.1264315502021634,0.1388225301268779,0.1509243088980704,0.1620460423658166,0.1725995642888571,0.1852582341783066,0.1976992319941072,0.2088586921016528,0.2190271785550031,0.228923761874325,0.2399245241134358,0.2487618919855563,0.2571760224493706,0.2653128480192732,0.272855536947395,0.2798015164514109,0.2865819341525185,0.2927072334468317,0.2990356786876583,0.3042964802707671,0.3101915860161959,0.3148189931809065,0.3194141992995861,0.3232839070924927,0.3268877948338899,0.325801366263794,0.3248097328690769,0.3246630708783393,0.323171348111777,0.3220596109227199,0.3192376688489903,0.317698512050961,0.3183578367025466,0.3185501795178663,0.3196125042449373,0.320655848546315,0.3217544834153309,0.3228382963478114,0.3243218928523233,0.3260131859608299,0.3265798233428564,0.3269071487733128,0.3311346062805744,0.3338484231228489,0.3356975868764116,0.3372802623189725,0.3409573338993844,0.3427068328427382,0.34645195274287,0.3462433665394283,0.3498525073746312,0.3529142508391821,0.355708781180288,0.3570229434806939,0.3608762490392006,0.0,2.075101735430066,56.961772756549095,176.4546352429483,255.9791127513138,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,13 -100000,95665,44616,422.7774003031411,6084,62.46798724716458,4740,49.0566037735849,1797,18.376626770501225,77.35161970545354,79.75810245050323,63.31721993396855,65.09451343521857,77.1203361985528,79.53004200780674,63.23076949811224,65.0123258564662,0.2312835069007377,228.0604426964885,0.0864504358563138,82.18757875236804,166.4894,116.52068735374613,174033.3037160926,121800.3724911714,359.63089,232.97945037320557,375429.8959912194,243041.15566786303,367.25282,177.99726288228896,382039.78466523805,184487.4647536394,2684.33196,1244.0148685638787,2777340.26028328,1271916.669929498,1114.47074,494.7427924808762,1151281.252286625,503470.7181109876,1756.11598,744.560327671635,1797119.8243871846,744307.199273765,0.38025,100000,0,756770,7910.604714367845,0,0.0,0,0.0,30741,320.81743584383,0,0.0,33633,349.647206397324,1573156,0,56397,0,0,6531,0,0,56,0.5853760518475931,0,0.0,0,0.0,0,0.0,0.06084,0.16,0.2953648915187377,0.01797,0.3250546704154952,0.6749453295845048,24.445449420219397,4.3353174049378,0.3265822784810127,0.2411392405063291,0.220675105485232,0.2116033755274261,11.44810821607624,5.937195813657364,19.22226701610601,12252.865974527793,53.98041277473629,13.660323909312613,17.62514873291834,11.734726266120148,10.960213866385184,0.5774261603375528,0.7944006999125109,0.7138242894056848,0.5783938814531548,0.1186440677966101,0.7419601837672282,0.9142857142857144,0.8629807692307693,0.7234848484848485,0.1699029126213592,0.5148514851485149,0.7247579529737206,0.6590106007067138,0.5294117647058824,0.1053952321204517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681644562871,0.0042488465243624,0.0065967077354009,0.0086869056327724,0.0112705856025389,0.0136891423915257,0.0157854484270636,0.0179412035004237,0.020040899795501,0.0221653180374884,0.0240576974372653,0.0261629998047537,0.0281871320956654,0.0302799113356358,0.0325789424755451,0.0348045605975955,0.0367426048382081,0.0386703624113696,0.040794032273167,0.0427211395084514,0.0582045414171813,0.0721548014198506,0.085598824393828,0.0980617055307685,0.1101635883905013,0.1257660594642082,0.1381096978319495,0.1492139621636024,0.1604240887548009,0.170967430172997,0.1834131297446515,0.1956493478355072,0.2064794957489195,0.2172865993826214,0.2274163886044027,0.2377383592017738,0.2467793655936805,0.2556798991240909,0.2646684831970936,0.2721483466767458,0.2796135601064445,0.2858044680328731,0.2924408908654358,0.298592730103599,0.3038755173627547,0.3091544787511695,0.3136140499893826,0.3174482241946338,0.3220231714090128,0.3268539843390143,0.3256229671245396,0.3246546373348713,0.3233329113746009,0.3231119829227485,0.3217469995697776,0.3207134778222725,0.3188559154729377,0.3193616045094055,0.3202845154027223,0.3205057331882947,0.3220973782771535,0.3222904046881474,0.3244663038928422,0.3248099516240497,0.3253225458984609,0.3272746130111235,0.3280851063829787,0.331475101785155,0.3333216954123315,0.3373360720492969,0.3404486743711761,0.343517060367454,0.3470507544581618,0.3495842781557067,0.3528257823446987,0.3569644343999048,0.3634135130994331,0.3677744209466264,0.3702196908055329,0.367370007535795,0.0,1.9022887169599847,57.614889386798254,179.9465371101472,251.99048587492925,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,14 -100000,95794,44810,423.5233939495167,6043,61.93498548969664,4774,49.29327515293234,1914,19.63588533728626,77.3507064425629,79.6794363444086,63.34838135415546,65.07026104566515,77.10996894891268,79.43784266255994,63.25891672271296,64.98222137302899,0.2407374936502151,241.5936818486557,0.089464631442496,88.03967263615675,166.02014,116.32589499076116,173309.53921957532,121433.38308324234,359.43121,233.187748664306,374682.9864083346,242896.58920632396,371.67511,180.00359661630242,384085.1932271333,184911.82169597823,2737.44528,1260.5918189513334,2828763.889178863,1287066.6419100706,1128.6762,501.7269258879834,1165177.568532476,510701.0103847669,1877.86606,795.2423828587958,1928812.034156628,804602.2750803095,0.38038,100000,0,754637,7877.706328162516,0,0.0,0,0.0,30568,318.5376954715327,0,0.0,33992,351.0031943545525,1576139,0,56558,0,0,6514,0,0,68,0.6994175000521954,0,0.0,1,0.0104390671649581,0,0.0,0.06043,0.1588674483411325,0.3167301009432401,0.01914,0.3281986796604841,0.6718013203395159,24.33743622051013,4.384834071752016,0.3190196899874319,0.2385839966485127,0.219941348973607,0.2224549643904482,11.116920062575131,5.709794792136883,20.589593033441155,12274.302204842865,54.31578968643539,13.538163326815424,17.349287653971913,11.7244285605904,11.703910145057646,0.5800167574361123,0.797190517998244,0.7071569271175312,0.6266666666666667,0.1186440677966101,0.7282868525896414,0.9393139841688656,0.86,0.7449392712550608,0.131004366812227,0.5271383915885195,0.7263157894736842,0.6527159394479074,0.5902864259028643,0.1152460984393757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339856569831,0.0043390105433901,0.006646574730839,0.0092942467089224,0.0117028631852936,0.0140389098720311,0.016295707472178,0.0185833392862609,0.0207649938175092,0.0228100695865738,0.0248683320695944,0.0271398961603973,0.0293404312169855,0.0314584534299596,0.0335227214139143,0.0354335182487784,0.0374666307969289,0.0394132586948634,0.0415805597383041,0.0435049657498594,0.058347245409015,0.0722366274936221,0.085503144654088,0.0983365383604972,0.1110654441985456,0.126823235953156,0.1394034503599868,0.1504793930171432,0.1610871514582177,0.1714591929692942,0.1837978062668862,0.1961801614838354,0.2071000130395097,0.2180801083845027,0.2277810153166129,0.2380372849477236,0.2467263264646554,0.2558949414156846,0.2649675320995909,0.2724099653250632,0.2793596155845356,0.2863465962838824,0.2924357625134505,0.2980149893446352,0.3030604567628571,0.3087835092169587,0.3135921601959951,0.3174679874365789,0.3225000647148663,0.325970054829186,0.3252958579881657,0.3237693080065472,0.3229850409893793,0.3221248409117204,0.321068593345821,0.3196530374547907,0.3175068540910604,0.3185041378062223,0.3186798137496576,0.3199763868267115,0.3205996313433397,0.3214505224339274,0.3228046547842007,0.3250146271209325,0.327557915057915,0.3289170506912442,0.32840313010577,0.3333016717325228,0.3371111817250997,0.3406217698974318,0.3429708586852097,0.3455870532125824,0.3453369682368604,0.3458403813624481,0.3470194933609568,0.3530182164543398,0.354424504950495,0.3655115511551155,0.3653954010095345,0.3634600465477114,0.0,2.0581985662549465,55.01117109611069,187.30099580778207,257.2936888768909,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,15 -100000,95719,44261,418.7465393495544,5995,61.2939959673628,4698,48.328962901827225,1904,19.41098423510484,77.31652017658898,79.67502152087165,63.31665033110207,65.06165662937018,77.0688225167113,79.43051732107388,63.22441686643321,64.97292739679371,0.2476976598776872,244.50419979777396,0.0922334646688582,88.72923257646903,167.18086,117.06145699547214,174657.73775321516,122296.7613488149,357.65424,232.12888539007383,372917.6443548303,241778.21058522747,361.22678,176.46356128957746,371356.25111002,179827.720332902,2701.82652,1265.4121548636135,2784632.0166320167,1283974.503352118,1117.89631,502.5153733351085,1152933.04359636,510061.1914741156,1863.18838,798.1317203109394,1904510.1390528523,801778.6318812392,0.37804,100000,0,759913,7938.988079691598,0,0.0,0,0.0,30551,318.4111827327908,0,0.0,33100,339.8384855671288,1568868,0,56368,0,0,6721,0,0,54,0.5641513179201622,0,0.0,1,0.0104472466281511,0,0.0,0.05995,0.1585811025288329,0.3175979983319433,0.01904,0.3368454661558109,0.663154533844189,24.15311833721847,4.399617404758072,0.3192848020434227,0.2294593444018731,0.2281822051936994,0.2230736483610046,11.373909073659954,5.929652544945589,20.74042666180528,12174.811035480212,53.877049869157226,13.056599980229391,17.09180893195984,11.99073323343324,11.73790772353476,0.5644955300127714,0.7968460111317254,0.7053333333333334,0.5764925373134329,0.1116412213740458,0.7261001517450683,0.9308641975308642,0.8349056603773585,0.7751004016064257,0.1375,0.5014792899408284,0.7161961367013373,0.654275092936803,0.5164034021871203,0.1039603960396039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.004349104327815,0.0065364120781527,0.0088602578822764,0.011322021484375,0.0135049803434298,0.0155528132744536,0.0181877597704318,0.0205417122524309,0.0226670079344765,0.0245570502829956,0.0266559878425694,0.0285972832066798,0.0306958831888296,0.0328426872414824,0.0349234886292014,0.0370485388652526,0.0388884278660636,0.0407380457380457,0.0427666534702977,0.0569418053496481,0.0706033779117222,0.0840683369865025,0.0969030969030969,0.1085031000885739,0.1238815441565309,0.1363240972546357,0.1478248837135041,0.1595162806597726,0.1700529940569418,0.1825721671693235,0.1951348836202698,0.2063093335073239,0.2157836041197437,0.2262130151461782,0.2359160783357531,0.2455221547257459,0.254537475666978,0.2627868964108152,0.2704721747997754,0.277214545286207,0.2844322237173112,0.2901109571684014,0.2963491739751173,0.3024559270516717,0.3076429426501623,0.3120747766598589,0.3161823717499586,0.3205493651204975,0.324368238200288,0.3231505187980056,0.3218810748211159,0.321010326463151,0.3201542073683295,0.3187878968460885,0.3171660117878193,0.3158662691112098,0.3165488955872906,0.3165394838377776,0.317197840629876,0.3178860259544856,0.3188198905543659,0.3219362435865085,0.3225748529873861,0.3230631891331098,0.3241571860974846,0.3265737461441791,0.3307762442229698,0.3341518170338151,0.3379896027620143,0.3405447258152669,0.3441409785444285,0.3456953642384106,0.349156919337688,0.3496148788277287,0.3533547848885711,0.3614605707272169,0.3632332191090506,0.367032967032967,0.3593570608495982,0.0,2.88833594155343,57.10216532025503,181.50763793280387,245.8797491610122,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,16 -100000,95682,44481,421.66760728245646,6168,63.25118622102381,4821,49.84218557304404,1926,19.784285445538345,77.40264542862671,79.78293968547524,63.35728834693722,65.1120846150571,77.16423401555738,79.54385421391486,63.27010645636005,65.02632671410598,0.2384114130693291,239.0854715603865,0.0871818905771633,85.75790095112268,167.05788,116.9023867105249,174596.97748792876,122178.03422851204,358.27516,232.16175506181511,373908.1540937689,242103.4207706937,367.55599,177.97647817768015,380152.0871219247,182926.68503778207,2777.26796,1270.8371517689254,2873619.1969231414,1299205.191957657,1156.21705,508.5685444617827,1193959.3026901612,517088.6420564248,1887.79606,780.0690698771989,1941270.7928345976,790001.4959702299,0.37931,100000,0,759354,7936.226249451307,0,0.0,0,0.0,30645,319.71530695428606,0,0.0,33639,347.7352062038837,1573916,0,56425,0,0,6715,0,0,62,0.6270771932024832,0,0.0,1,0.0104512865533747,0,0.0,0.06168,0.1626110569191426,0.3122568093385214,0.01926,0.3334881560613098,0.6665118439386902,24.726427096521405,4.326943098162644,0.3171541174030284,0.2437253681808753,0.2113669363202655,0.2277535780958307,11.309656371123808,5.843816514423471,20.271008900150715,12234.864066140355,54.4773289111894,14.02660686319075,17.345716456862903,11.235799705698811,11.869205885436925,0.5538270068450529,0.7702127659574468,0.7024198822759974,0.563297350343474,0.1065573770491803,0.7260596546310832,0.9116945107398567,0.8557213930348259,0.6926229508196722,0.1435406698564593,0.4919650408796165,0.6917989417989417,0.64773735581189,0.5225806451612903,0.0978627671541057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0046418762098776,0.0067255021302495,0.0088053380457633,0.011114387691807,0.0133189418161823,0.0157819078980904,0.0178197813861871,0.0201522661080169,0.022053706660117,0.0245187478218085,0.0265173291721419,0.028613730066522,0.0306079362300332,0.0327067126142671,0.0346235336675107,0.0364364924051812,0.0386116011206807,0.0404039353537034,0.0423345492443981,0.0569118430536839,0.0703830125855967,0.0841273505708529,0.0970799234216228,0.109268868919546,0.1246733460997259,0.1378073498668194,0.1490999286756017,0.1601714023145724,0.1701002734731084,0.1829519142749448,0.1958810861119228,0.2068054286832833,0.2164662147386835,0.2269617440658204,0.2371232164008103,0.2466252744925371,0.2553690973626275,0.2639256993997055,0.2714987995884303,0.2782960055414454,0.2856226080462989,0.2914354530213228,0.2969727415168586,0.3025604344979754,0.3079667794524761,0.3133912391426607,0.3183941902391956,0.3227844013588746,0.3257665482300302,0.3251970301150629,0.3243758311967862,0.3238653905526397,0.3230937540485684,0.3220108092100392,0.320718987187123,0.3186299292214358,0.3192839226872572,0.3202410746207672,0.3209353644646925,0.3211221800646692,0.322068884170795,0.3230913446515988,0.3243748747522879,0.3275092401478424,0.3291495234623197,0.331196215877358,0.3337203099996862,0.3366913545578995,0.3422733584606229,0.3458749486933917,0.350534188034188,0.3513103883801705,0.3517756439567139,0.3560878621473206,0.3553113553113553,0.3552995391705069,0.3613682092555332,0.3665207877461707,0.3662878787878788,0.0,2.0947165186257117,55.80477588534793,182.43382875630493,262.7479933378768,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,17 -100000,95716,44677,422.8133227464583,6124,62.56007355092148,4867,50.14835555184087,1928,19.68322955409754,77.33907921770925,79.70807423852803,63.32552877917672,65.0763598701727,77.09048925697554,79.46344023777228,63.2312506438254,64.98692336450793,0.2485899607337103,244.6340007557524,0.0942781353513169,89.43650566476435,165.98406,116.24732805972867,173413.07618371013,121450.25707272415,360.89172,233.99178735303587,376361.747252288,243782.102629692,369.50169,179.40992421856723,382059.5720673659,184269.18576655936,2781.17692,1292.2611664717554,2866252.413389611,1310924.6293137225,1152.68445,519.3092057543146,1185506.5715240922,523851.255401255,1892.98516,813.3924249921076,1933891.4497053784,810899.2778049086,0.38024,100000,0,754473,7882.412553805007,0,0.0,0,0.0,30799,321.04350369844127,0,0.0,33729,348.3848050482678,1574737,0,56448,0,0,6362,0,0,75,0.7835680554975135,0,0.0,0,0.0,0,0.0,0.06124,0.1610561750473385,0.3148269105160026,0.01928,0.3312052320149486,0.6687947679850513,24.186660673552566,4.297109409312601,0.3184713375796178,0.2327922745017464,0.2262173823710704,0.2225190055475652,10.908161555115871,5.500318941283238,20.778140823179857,12258.743436783929,55.34338320357437,13.603806280919692,17.584942584513364,12.226052910440275,11.928581427701037,0.5549619889048695,0.7802294792586054,0.6845161290322581,0.5794732061762035,0.1089566020313942,0.7119883040935673,0.9053117782909932,0.851508120649652,0.7022900763358778,0.128099173553719,0.4935695913118034,0.7028571428571428,0.6201966041108132,0.5411203814064363,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497002106627,0.0048464938962566,0.0071049399632573,0.0093683953828645,0.011342481918151,0.0137693631669535,0.0157140672003263,0.0179685346455808,0.0201742366919568,0.0222556791413179,0.0247882181609336,0.0268996117581808,0.0291679522781034,0.0310014424067587,0.033062543224914,0.0348493309342102,0.0369422660547607,0.0388551028456381,0.0409833508386976,0.0430710244735937,0.0574525405676336,0.0717507089267215,0.085428769163014,0.0981447982836229,0.1100564256710436,0.1259626777251185,0.1384447250310354,0.1493371665868072,0.1608900573920292,0.1709842891483516,0.1834906880496637,0.1956349851069591,0.2071761274595159,0.2179547519236452,0.2279911446917714,0.2387917364353119,0.2484976431427741,0.2570167636760749,0.265123302602298,0.2720936364365879,0.2794211287988422,0.2863912941727123,0.2930932494143813,0.2989878421273282,0.3042702466498349,0.3083910833199985,0.3129568770539943,0.3178734756097561,0.3223292186389194,0.3267382851117116,0.3265662812584028,0.3241377413499092,0.3238017390814155,0.3225409776774735,0.3218824788548154,0.3202530288409992,0.3186056451740569,0.3190153805705271,0.3184946752046023,0.3196090365543661,0.3197605689302535,0.320640132932426,0.3209886887306242,0.3212790255043776,0.3233853541416566,0.3244600572469425,0.3246041934103552,0.3287787677486383,0.3310151036178433,0.3338906138046333,0.3377229080932785,0.3411846392138012,0.3427900482355928,0.3454461821527139,0.3511887980452965,0.3551880057115659,0.3596899224806201,0.3606221858370855,0.3661186960156032,0.36639753940792,0.0,2.700796017306213,59.56493874248591,174.65972065111688,266.4074614438575,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,18 -100000,95668,44491,421.3530125015679,5970,60.91901158172011,4703,48.37563239536731,1828,18.55374837981352,77.30793472821749,79.68338210411412,63.31631099018998,65.06976408870207,77.0787191096007,79.46079840343063,63.22922619711805,64.98849361812809,0.2292156186167915,222.5837006834865,0.0870847930719307,81.27047057398329,166.53846,116.68510667911684,174079.5877409374,121968.79487301588,360.86709,234.32552771711968,376423.45402851526,244152.88470661183,368.21463,178.6299168671571,379977.934105448,182843.2806841378,2671.00184,1246.7946711536283,2748317.9746623742,1260021.4297986592,1100.29534,506.4237390192324,1122031.7556549734,501693.3215011769,1785.79752,767.6157508279235,1815275.619851988,759149.2389415186,0.37908,100000,0,756993,7912.708533678972,0,0.0,0,0.0,30792,321.03733745871136,0,0.0,33679,347.27390559016595,1569378,0,56372,0,0,6725,0,0,73,0.7421499351925408,0,0.0,0,0.0,0,0.0,0.0597,0.1574865463754352,0.3061976549413735,0.01828,0.3361681643132221,0.663831835686778,24.29978739224881,4.274009445764453,0.3300021263023602,0.242185838826281,0.2158196895598554,0.2119923453115033,11.244325525051456,5.9046401250718255,19.817981518358643,12165.899145068845,53.91906698159973,13.708251951646782,17.70117072301755,11.453077267932455,11.05656703900294,0.5715500744205826,0.7945566286215979,0.6875,0.5802955665024631,0.1273821464393179,0.7306525037936267,0.9203747072599532,0.8317307692307693,0.7019607843137254,0.2045454545454545,0.5096011816838996,0.7191011235955056,0.6346830985915493,0.5394736842105263,0.1055341055341055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401109693619,0.0048437436666531,0.0073139309589263,0.0094966279353213,0.0115633390285574,0.0136450653741191,0.0157334991995595,0.0178764675855028,0.0199349812917867,0.0221719503331934,0.0241624636076598,0.0262528362714196,0.0282817063638981,0.0305658861222429,0.0324950725953749,0.0347365809279629,0.0368351794096009,0.0387873754152823,0.0409137721187154,0.0428251237946312,0.0575780050349416,0.0720461396750963,0.0850880782264748,0.0980099293167283,0.1102359714050737,0.125117661367939,0.1371791743148468,0.1491291572627006,0.159791005545405,0.1695633515717197,0.1829021348096766,0.1942743383896306,0.2057828862235078,0.2161509021323127,0.2254472636049556,0.2353788373973832,0.2451648903521009,0.2539239623299616,0.2621628062689379,0.2696216018054966,0.277211672070403,0.2838623626727194,0.2903859815297182,0.2959314672393727,0.3012907071518071,0.3068710581207341,0.3115267922068153,0.3167189452477494,0.3202274172821558,0.3238397461324871,0.3222874098051116,0.3214418688031772,0.3215228469389195,0.3203633150323767,0.3192592482233578,0.3182431810511459,0.317012803630075,0.3170028818443804,0.3173871310548147,0.3181940146324884,0.3186870962896199,0.3199952458301969,0.3193162751677852,0.3195484519950821,0.320948141017928,0.3221557199236821,0.323959729629524,0.3272075020454402,0.3305144467935165,0.3327777777777778,0.3355395289392003,0.3372853421234515,0.3410437413336695,0.3421032563105315,0.3435294117647058,0.3500413760491784,0.3524441762220881,0.3485908454927043,0.3474279558308645,0.3472535741158766,0.0,3.010498778938593,57.01366104234404,182.625615382472,244.71478988179527,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,19 -100000,95707,44793,425.2562508489452,6183,63.33914969646944,4813,49.714231978852126,1874,19.183549792596157,77.38171245272493,79.75490027974513,63.34258245905804,65.09483303150172,77.15147433580846,79.52688186819222,63.25706117531493,65.01255547241651,0.2302381169164675,228.0184115529096,0.0855212837431125,82.27755908521317,166.11958,116.27572521270744,173570.98226879956,121491.34881744016,357.52656,231.2600493825995,373003.1972582988,241072.91983094183,371.19929,179.5782493948439,384209.1696532124,184809.310700879,2745.12224,1265.020875535411,2837539.490319412,1291047.212362117,1146.25692,507.7265944202143,1183543.6801905816,516371.6597743264,1838.50368,769.403171750843,1884753.2364403857,773736.9152167459,0.38146,100000,0,755089,7889.590103127253,0,0.0,0,0.0,30495,318.05406083149614,0,0.0,33928,350.83118267211387,1577581,0,56608,0,0,6547,0,0,66,0.6896047311063978,0,0.0,0,0.0,0,0.0,0.06183,0.1620877680490746,0.3030891153161895,0.01874,0.3262279888785913,0.6737720111214087,24.47488934674097,4.2875670434201645,0.3207978391855391,0.2432993974651984,0.213795969249948,0.2221067940993143,11.250366878334129,5.9310884382061335,19.92171740918942,12344.638565606469,54.65968071025811,13.960016688195452,17.629802380650894,11.36248825560964,11.707373385802136,0.5638894660295034,0.7822374039282665,0.7130829015544041,0.5529640427599611,0.1197380729653882,0.7484894259818731,0.9002320185614849,0.91725768321513,0.728,0.15,0.4938377758670106,0.7135135135135136,0.6360392506690455,0.496790757381258,0.1118963486454652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.004338614684386,0.0065856232495839,0.0086849643459358,0.0107614378420163,0.0129837067209775,0.0151720621972979,0.0175078606721385,0.0195557282029788,0.0218855563517248,0.0238458936058968,0.0260469605034855,0.0280440148087206,0.0302334205484249,0.0322593960908959,0.0341807880398258,0.0361758979245204,0.0383521842897167,0.0401863715783343,0.0419350132349569,0.0568755025952189,0.0716394472361809,0.0854912494229235,0.0978981253550464,0.109656663678076,0.1253912859560067,0.138463007565067,0.150155968870104,0.161231051906293,0.1714218294147932,0.1852885402749644,0.1969473912102186,0.2085898244621843,0.2185819231273776,0.2285711143130547,0.2388522339813134,0.2473515177197404,0.2572925803477048,0.2664511738686628,0.2743791433380277,0.282349402468793,0.2891377536706256,0.2960854850543156,0.3022453332055306,0.3079109081635131,0.3129265948796294,0.3170188820807803,0.3221645550297664,0.3266547591312676,0.3303007528710626,0.3297700685760387,0.3289882146094887,0.3276124022283495,0.3261787727213757,0.325434673143568,0.3236308161708619,0.3209685566359389,0.321764446116354,0.3224396796517658,0.3231198762292604,0.3253525072369035,0.3272576799542848,0.3277277652746519,0.3274625935162095,0.329765581974475,0.3328755765144841,0.3338623289029954,0.3362370425877357,0.3383157381275913,0.3420419116776511,0.3444358962755125,0.3471979679314176,0.3501324586855052,0.3538931297709923,0.3560022543678376,0.3564732407737035,0.3556811240073305,0.3544072948328267,0.3509841973939562,0.3551004636785162,0.0,2.282015830338184,58.080375264971856,177.08053118155513,261.8487741906918,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,20 -100000,95853,44425,419.10008033134073,6067,62.04291988774478,4798,49.42985613387166,1862,19.00827308482781,77.44506122741345,79.72379793196062,63.40474875222951,65.08460871395317,77.21507369721431,79.49618154256909,63.32014197972148,65.00352138376786,0.2299875301991392,227.61638939152817,0.0846067725080317,81.08733018531211,165.99374,116.15947272392566,173175.09102479837,121184.80583379306,357.23685,231.37078360063435,372100.9671058809,240790.7533416944,366.28592,177.6376047546038,378206.68106371217,182227.52410264412,2737.30324,1256.435821577844,2822874.443157752,1278011.416625295,1108.74621,490.96609412757874,1140482.1132358925,496183.76045367145,1821.95566,760.8762291887933,1862224.8860233896,761887.4436814676,0.37957,100000,0,754517,7871.595046581745,0,0.0,0,0.0,30539,317.96605218407353,0,0.0,33533,345.9046665206097,1580406,0,56830,0,0,6554,0,0,59,0.6155258573023276,0,0.0,0,0.0,0,0.0,0.06067,0.1598387649181969,0.3069062139442888,0.01862,0.3427230046948357,0.6572769953051644,24.548392368923924,4.268656164273014,0.3276365152146728,0.2363484785327219,0.2236348478532722,0.212380158399333,11.074664366174312,5.73115881768843,19.74278553723281,12249.780662144753,54.243132733172914,13.686340488498242,17.476509941724473,12.04793989454238,11.03234240840781,0.5619007919966653,0.7760141093474426,0.6800254452926209,0.5964585274930102,0.1050049067713444,0.7492401215805471,0.9295454545454546,0.8411910669975186,0.7904411764705882,0.1144278606965174,0.4910970706490523,0.6786743515850144,0.6244653550042771,0.5305867665418227,0.1026894865525672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048217668331324,0.0068746641250012,0.008891234623036,0.011197593838275,0.013582118403516,0.0156237268801434,0.0177633658621146,0.0199328084632744,0.022361963190184,0.0245645651795496,0.0266855373002687,0.0289834233716081,0.0310031270572745,0.0333508484530028,0.0356011106638177,0.0375407208232069,0.0394599131633213,0.0415381900104857,0.0434538303053006,0.05812365092441,0.0720867548423494,0.0849562340327511,0.0979348989485613,0.1100473435034192,0.1261728108410465,0.1382377231433835,0.1495776892430279,0.1606512629682152,0.1716248608851981,0.183681145092308,0.1953615927789414,0.2071705363248559,0.2176096235086072,0.2269078289899955,0.2368974137740315,0.2466095367574133,0.2554097476574613,0.2634770583968081,0.2709842010730915,0.2782145251913339,0.2845217635298657,0.2905000177437098,0.2970844504021447,0.3025276365445521,0.3073380940655011,0.3131187963901718,0.3187087251396506,0.3235724554155388,0.3277540360873694,0.3270322632726098,0.3257548699068605,0.3243691339290732,0.3239020878329733,0.322900017758835,0.3205323657651614,0.3181302580584176,0.3189025883889932,0.3197755483761265,0.3207115087607179,0.3207920422522068,0.3223962952014977,0.3236485921965076,0.3231245545260157,0.3229847885974368,0.3240298817181988,0.3259429153924567,0.3316762029828346,0.3347494515443814,0.3358229598893499,0.3386149433137549,0.3396447186469524,0.34112385032128,0.3477326785851301,0.3525732158089281,0.3553936208338311,0.356469315195548,0.3609846917666529,0.3639910813823857,0.3741176470588235,0.0,2.4336534457585204,57.46205593327666,174.79301585227844,261.1506673605664,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,21 -100000,95680,44688,423.6517558528428,6225,63.87959866220735,4854,50.10451505016722,1960,20.087792642140467,77.29747507811412,79.70076623303072,63.28577397120039,65.06580693278464,77.05885873017215,79.4645783938762,63.198230750230366,64.98163302125474,0.2386163479419707,236.18783915452468,0.0875432209700264,84.17391152990206,165.97108,116.26767918027744,173464.7575250836,121517.22322353414,362.40678,234.51090737137253,378076.212374582,244406.20293147312,366.26288,176.92563218360763,378903.741638796,181859.61701055864,2800.57276,1278.343644766471,2894367.558528428,1303446.403196945,1160.56286,508.9025342790127,1196944.1680602003,516016.97177183256,1917.65358,791.0668728839602,1968305.3720735784,796971.431996236,0.38123,100000,0,754414,7884.761705685618,0,0.0,0,0.0,30787,321.1015886287625,0,0.0,33641,347.66931438127085,1572184,0,56411,0,0,6653,0,0,66,0.6793478260869564,0,0.0,0,0.0,0,0.0,0.06225,0.1632872544133462,0.314859437751004,0.0196,0.3262040313894445,0.6737959686105555,24.561795439281248,4.335728074024695,0.3341573959620931,0.223114956736712,0.215286361763494,0.2274412855377008,11.22455513154948,5.88001619572952,20.58748512039711,12323.335169050402,54.89452122116783,13.097067971698412,18.16512274293214,11.622172172221632,12.010158334315644,0.557684384013185,0.8024007386888273,0.688039457459926,0.5732057416267943,0.1114130434782608,0.727130570758405,0.9307875894988068,0.8743961352657005,0.6926605504587156,0.1184210526315789,0.4970629370629371,0.7213855421686747,0.6241721854304636,0.5417170495767836,0.1095890410958904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0045138254924634,0.0065891669627899,0.0090031500863733,0.0112813313802083,0.0136181221862331,0.0159214230345559,0.0177283960703417,0.0199024310420651,0.0220581458459206,0.0240530089339747,0.0264842152844125,0.0288371518811534,0.0309344214995259,0.0328019493257893,0.0349920872164585,0.0368355047003099,0.0387926111289937,0.0406778955691264,0.0425933259686933,0.0573058120586637,0.0716536339750232,0.0851731374606505,0.0977646873192026,0.1104313245640868,0.1256942754673465,0.1385887447725391,0.1505505740026836,0.1625092219359115,0.1737697526623153,0.1872115591977571,0.199182806420497,0.2109865934807941,0.2212910929267036,0.2303554698263984,0.2406509656878515,0.2504274937133277,0.2586004911347917,0.2669136195259414,0.2746646795827123,0.2811717808473162,0.2875401232398491,0.2941490054849371,0.3000156045565305,0.3058066399834548,0.3107576112845701,0.3155869709616373,0.3196756839448255,0.3236721873215306,0.3278504277459704,0.3266217729855197,0.3257354158618025,0.3245415760178566,0.3237722729248153,0.3237853031722661,0.322046363399574,0.3189270454185789,0.3188510345279863,0.3198439203925845,0.3200804785983904,0.3211132473447445,0.3220038596353038,0.3221142797451164,0.3233943931898204,0.3256929126306703,0.3266393016730749,0.3267563187672362,0.330508208556989,0.3345603702145561,0.3384377355496489,0.3389104171415546,0.3414401019541206,0.3442416614222782,0.3454296993622836,0.3488284558200809,0.3516678495386799,0.3558461538461538,0.357856123904626,0.3571823204419889,0.351508120649652,0.0,2.395900412646212,56.001035730888354,181.99823237263837,267.0101046819203,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,22 -100000,95825,44595,421.4140360031307,6137,62.90633968171145,4786,49.30863553352465,1858,19.04513435950952,77.32864418348662,79.63922680744065,63.32870225298407,65.03838439636183,77.09991512973242,79.4116746471435,63.2433182759358,64.95582443845596,0.2287290537541935,227.5521602971509,0.0853839770482665,82.55995790587178,165.10516,115.68498650867332,172298.6277067571,120725.26638004,358.6057,231.5690266960724,373599.0816592747,241028.3521527524,366.52348,177.22003632948335,378311.20271327946,181765.5523645542,2721.11568,1242.8395488672516,2805951.140099139,1263338.634607975,1109.31281,490.5799746415836,1141185.577876337,495606.4672513704,1807.28894,759.7733398014003,1853481.262718497,763431.8608966167,0.38042,100000,0,750478,7831.755804852595,0,0.0,0,0.0,30469,317.3075919645186,0,0.0,33521,345.5778763370728,1580084,0,56775,0,0,6814,0,0,66,0.6887555439603443,0,0.0,0,0.0,0,0.0,0.06137,0.1613216970716576,0.3027537884960078,0.01858,0.3256103249883377,0.6743896750116622,24.874747603384375,4.22624048607458,0.3274132887588801,0.2331801086502298,0.2306727956539908,0.2087338069368993,10.99917397523371,5.810682821256735,19.82165194793817,12265.528454857227,53.981794522353255,13.324514067039344,17.658920091900796,12.189224565805867,10.809135797607231,0.5651901379022148,0.7948028673835126,0.6809189534141672,0.582427536231884,0.1081081081081081,0.7286158631415242,0.9292682926829268,0.8341584158415841,0.7286821705426356,0.1448598130841121,0.5051428571428571,0.71671388101983,0.6276870163370594,0.5378250591016549,0.0980891719745223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026231832683445,0.0048858614118314,0.0070308933191295,0.0093551925889809,0.011653447223917,0.0137751985339034,0.0157680154928141,0.0178901282823231,0.0201626913565107,0.0223279611153747,0.0247343668350461,0.0266412158903153,0.0288676957227714,0.0309759110562075,0.0329363237947924,0.0348026404140367,0.0369423719693285,0.0389101427638331,0.0408616893099007,0.043068276436303,0.0571658027305249,0.0709894613583138,0.0844373637430823,0.0968979214392299,0.1092137579188143,0.1256329214278918,0.1378930067334711,0.1488338440585631,0.1607953271327431,0.171898115392037,0.1844797140149883,0.1960990069019234,0.2067956942481243,0.2170011367611052,0.2265130761021443,0.2366651527068493,0.2458963307054961,0.2549231548724877,0.2636761115212083,0.2715198366728985,0.2787292016928517,0.286040975243635,0.2933005662998184,0.2991073037690284,0.3039154830150558,0.3090440169305379,0.3144622557559502,0.3192576825522261,0.3236583973427444,0.3275073375816388,0.3267413488629164,0.326174755675631,0.3249901124357308,0.324282794311642,0.3231591961984776,0.3204139921992567,0.3184537505752416,0.3192779997040982,0.320843011340347,0.3218845852057921,0.3232236188906165,0.3240519336798214,0.3253148140400786,0.325110505871322,0.3262295475841522,0.3274858380974756,0.3296318441957803,0.3327894059685568,0.3361165455561766,0.3410247308010886,0.3439242170149118,0.3442692348396656,0.3457333165765992,0.347849298352654,0.3493647058823529,0.3502501786990707,0.3506690997566909,0.3497168284789644,0.357532751091703,0.3549382716049383,0.0,2.43520058684619,56.2217490533493,168.9363342481672,271.1981449618052,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,23 -100000,95731,44608,422.8201940855105,6019,61.69370423373829,4714,48.50048573607296,1898,19.34587542175471,77.35098256499538,79.69703881745104,63.33757887846742,65.06994056131751,77.11472042923346,79.46640664205718,63.25048232917965,64.98826707207395,0.236262135761919,230.6321753938647,0.0870965492877644,81.67348924355622,167.6455,117.48498184584582,175121.4340182386,122724.07250090963,362.02826,233.9552110017496,377427.6462170039,243646.6798639237,367.04296,176.99381410343378,379040.38399264606,181521.01292046884,2724.93264,1249.8040238778517,2804713.2903657123,1264095.4387151268,1128.99295,494.46455475516416,1160829.428293865,498026.2745466874,1869.4534,776.5563686590285,1906920.934702448,771689.4549489092,0.37977,100000,0,762025,7960.065182647209,0,0.0,0,0.0,30875,321.72441528867347,0,0.0,33587,346.43950235555883,1566705,0,56250,0,0,6751,0,0,62,0.6476480972725659,0,0.0,0,0.0,0,0.0,0.06019,0.1584906654027437,0.3153347732181425,0.01898,0.3271546261089987,0.6728453738910013,24.45999676176988,4.322120068055051,0.316079762409843,0.2316504030547305,0.2189223589308443,0.2333474756045821,11.038119563378247,5.6074532393188585,20.11049957809267,12273.625932226472,53.755027589633706,13.242845835892332,17.080898356309007,11.45477328192026,11.976510115512104,0.5644887568943572,0.8058608058608059,0.7167785234899329,0.5755813953488372,0.1081818181818181,0.7261345852895149,0.915841584158416,0.8842364532019704,0.7012448132780082,0.13215859030837,0.5043655413271245,0.7412790697674418,0.6540590405904059,0.5372945638432364,0.1019473081328751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0044090370055036,0.006524408186458,0.0086942390509466,0.010950574981444,0.0131933910883529,0.0154534612287336,0.0176357123174428,0.0197365058923333,0.0222292726360928,0.024468499497714,0.0264319441593102,0.0287050840487328,0.0307689139232424,0.0325781959230832,0.0343148908021622,0.0364172922599016,0.0384775029055288,0.0402574313014004,0.0421949720262963,0.0571470330312774,0.0715802688706387,0.0850372234455279,0.0979876779443615,0.1105184373089329,0.1260887949260042,0.1376468841471174,0.1493790505379433,0.1602183387455135,0.1707926633058028,0.1838491118842702,0.1966255046050282,0.2084357529747014,0.2185120350109409,0.2276855001155764,0.2377759553151875,0.2473675395008654,0.2560941314105088,0.2645613716568135,0.2727439450729571,0.2801083170356312,0.2863963489555907,0.293885951527625,0.3004059539918809,0.3055049879851452,0.3109470186450064,0.3154578864471611,0.3198637363196095,0.3242228465631757,0.3272832873529839,0.3268414313632994,0.3254887912148477,0.324535913784348,0.3240629478957045,0.3230609057782405,0.3206132617861249,0.3189060642092747,0.3184636894481454,0.3202599846061746,0.3213080206454378,0.3216159496327387,0.3221001896333755,0.3243141361256544,0.3252290502793296,0.3260097008116026,0.3276833211640763,0.3284677763551002,0.3312260174875763,0.3345822536592198,0.3354079124712598,0.3380685698675044,0.3392154778356543,0.3442715878314543,0.3460339189291961,0.348466372760529,0.3534093608933238,0.3558035022470169,0.3574329813160032,0.3583862945565073,0.354479046520569,0.0,2.8054061380239808,55.547696854898135,179.87162614866145,253.77620089691925,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,24 -100000,95835,44603,421.9126623884802,6112,62.586737621954406,4802,49.43914018886628,1907,19.450096520060523,77.51248185563044,79.79799866172296,63.42745123530996,65.11078363705562,77.28356311680257,79.57222313151318,63.34330235282509,65.03031640151696,0.2289187388278719,225.77553020977348,0.0841488824848752,80.46723553866286,166.6269,116.61539822451287,173868.52402566912,121683.51669485352,361.58524,234.12655165846596,376612.0310951114,243613.973661466,367.00857,177.9098143199414,378517.8379506443,182288.54396176455,2760.6752,1257.5570771237358,2844830.7612041533,1276386.953747312,1156.87285,511.3090018383245,1189505.274690875,515896.6850725332,1873.81218,775.1698114277953,1913460.0511295456,776173.5045726954,0.38119,100000,0,757395,7903.114728439506,0,0.0,0,0.0,30791,320.571816142328,0,0.0,33649,346.720926592581,1579256,0,56621,0,0,6507,0,0,75,0.7721604841654929,0,0.0,0,0.0,0,0.0,0.06112,0.160339987932527,0.3120091623036649,0.01907,0.3281811085089773,0.6718188914910226,24.500663680528216,4.28323551619656,0.324448146605581,0.2346938775510204,0.2113702623906705,0.229487713452728,11.289194251541508,5.949525696505226,20.045732925854686,12266.408993488338,53.96746477856259,13.295056304219898,17.49590072398048,11.269085233873426,11.90742251648878,0.5705955851728447,0.7994676131322094,0.7034659820282413,0.6118226600985222,0.1107078039927404,0.7464342313787639,0.9375,0.8690176322418136,0.7603305785123967,0.1704035874439461,0.507909604519774,0.7235213204951857,0.6468561584840654,0.5653298835705045,0.0955631399317406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023374415639609,0.0044155923071469,0.0065478060795264,0.0089090927540055,0.0112354984863568,0.0135157123970304,0.0157194925780375,0.0178760809267417,0.0202179040772773,0.0223847019122609,0.0243612718242793,0.026530884328626,0.0286263267675677,0.0304530391289134,0.0326182204307172,0.0350554648928918,0.0369404606692742,0.0387745580840806,0.0406893399538777,0.0426426801590771,0.0570475048234864,0.0711948054663892,0.0844571584252826,0.0972912224684641,0.1096147163811349,0.1254053254750362,0.1379047215303905,0.1498686854724664,0.160930947274066,0.1710984268411527,0.1838398176226423,0.1965761192417778,0.2082813127639478,0.2191881032449666,0.2278603358704845,0.2385148657165286,0.2478919990643483,0.2571088450653609,0.2660756139814532,0.2732051238101767,0.2809083360243576,0.2872849672136875,0.294086439838721,0.2999164378655843,0.3055283313368906,0.3101348198718106,0.3147970438315532,0.3195244546294772,0.3233933426977152,0.3271312540184488,0.325724084344774,0.3242048502764548,0.3231176322347605,0.3217166271296097,0.3207117732257397,0.3190363650224899,0.3173465521596362,0.3177779595843901,0.3193451773194473,0.3212162210275216,0.3222406995646406,0.3225850956895362,0.3227005911721083,0.3235962060827358,0.3251896740945746,0.3259330094076295,0.3268627617190811,0.3290029835902536,0.3323747488046566,0.3341660486357781,0.3356580829756795,0.3384944218538213,0.3404294820224023,0.3440876350540216,0.3454897978026036,0.3470335539301056,0.3495058400718778,0.3529179810725552,0.3547863710113575,0.3557223264540338,0.0,2.5141604571045137,54.80993750160324,179.6363896915918,261.83277983040443,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,25 -100000,95738,44633,422.9459566734212,6131,62.85905283168648,4858,50.16816728989534,1918,19.626480603313208,77.31288813594676,79.67100920058327,63.318020272784125,65.06172248623743,77.07149042839826,79.43192173864047,63.22877106204034,64.97623668084957,0.2413977075485007,239.08746194280184,0.0892492107437874,85.48580538786155,165.2486,115.71062310568364,172605.02621738496,120861.7509303345,355.26704,229.611094668967,370495.4459044475,239245.7842276441,370.50799,178.9694259117665,383562.67103971256,184303.66023169752,2763.62184,1278.469985588201,2853533.60212246,1302279.9700975192,1168.35566,526.4964654655408,1199595.3330965762,529286.3448202312,1870.6637,791.191335351013,1914471.453341411,791580.6676503224,0.37992,100000,0,751130,7845.683009881134,0,0.0,0,0.0,30314,316.00827257724205,0,0.0,33931,350.95782239027346,1581698,0,56838,0,0,6454,0,0,45,0.4700327978441162,0,0.0,0,0.0,0,0.0,0.06131,0.161376079174563,0.3128364051541347,0.01918,0.3292226038089291,0.6707773961910709,24.4063708338503,4.240570049262669,0.3198847262247838,0.2412515438452037,0.2256072457801564,0.2132564841498559,11.065896933438983,5.795009513534313,20.55993689404253,12266.866234666526,55.374937949398735,14.144522727392935,17.50601257606087,12.15924451269336,11.565158133251584,0.5617538081515027,0.7807167235494881,0.6904761904761905,0.5638686131386861,0.1187258687258687,0.7381845461365342,0.9027777777777778,0.8861985472154964,0.7083333333333334,0.1830357142857142,0.4950354609929078,0.7094594594594594,0.6196319018404908,0.5180288461538461,0.1009852216748768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0047740196028745,0.0069197130652705,0.0090907244139275,0.0111268192959794,0.0134419551934826,0.0156520852452329,0.0179171218262192,0.0199869139386999,0.0223118747504121,0.0244332571182495,0.0266570827129434,0.0285911161848343,0.0306841357147271,0.0326118355893034,0.0345608069700383,0.0366450944861506,0.0386195733377604,0.0404625479654336,0.042541442220532,0.0568890095319628,0.0704621791585137,0.0843671675912623,0.0970496078060269,0.1093876862406023,0.1245861408760591,0.1373770387427443,0.1490888188708166,0.160146986561839,0.1708899445594243,0.1836123822341857,0.1957346945396736,0.2078068935522453,0.2184051361135719,0.2276663402396487,0.2377070063694267,0.2470477933790209,0.2564134299473423,0.2646754869115894,0.2727126879354602,0.2797332345313079,0.2872631578947368,0.2936464742072882,0.2996811774858567,0.305362523082904,0.3097817379623125,0.3154401082110115,0.3202397312566804,0.3249387897866387,0.3285331149013753,0.3272376636862618,0.3264181612805466,0.3262645502645502,0.3249352040890201,0.3233335815893349,0.3209590219327886,0.3190042733006084,0.3193307754376142,0.3198937628512679,0.3211584644610918,0.3226164079822616,0.32322310606812,0.3234281154185392,0.3245700465782873,0.3261608973585816,0.3267953344840211,0.3271910498154454,0.3294951284322409,0.3313912429378531,0.3336263736263736,0.3339892911079584,0.3361156892976766,0.3351110553394403,0.3394817073170731,0.3430567355801001,0.3442875785976984,0.3455780212995832,0.3502548419979612,0.3532850779510022,0.3531202435312024,0.0,2.1547796757620925,58.5813500022029,184.5605177536505,259.90555633492687,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,26 -100000,95781,44619,420.9289942681742,6127,62.69510654513943,4776,49.26864409434021,1862,19.085204790094068,77.37208356525132,79.71214199676241,63.35007434272507,65.08004561683647,77.13926626654876,79.4806402907384,63.262192465135215,64.99551438137482,0.2328172987025567,231.5017060240052,0.0878818775898579,84.53123546165386,166.8821,116.8237234546671,174232.30076946368,121969.01157923102,359.62264,233.87106572773715,374860.1497165408,243571.49765122,371.34508,179.85212368155658,384327.6954719621,185221.5641521498,2713.2328,1256.5002185920523,2799454.589114751,1278673.2560439885,1131.65907,504.8254490011352,1166658.8571846192,512493.3660274409,1820.65892,771.3597101156925,1866547.4363391488,773814.3532313744,0.37972,100000,0,758555,7919.650034975621,0,0.0,0,0.0,30715,320.0634781428467,0,0.0,33963,351.25964439711424,1571176,0,56443,0,0,6446,0,0,65,0.6681909773337091,0,0.0,0,0.0,0,0.0,0.06127,0.1613557358053302,0.3039007670964583,0.01862,0.3405179097534501,0.6594820902465498,24.242342219588707,4.271625549576727,0.3205611390284757,0.2470686767169179,0.224036850921273,0.2083333333333333,11.1155227683144,5.763266086935345,19.827357856041395,12246.784876896603,54.195903086670064,14.024303541066468,17.16829888825556,12.023028220992998,10.980272436355024,0.5860552763819096,0.8016949152542373,0.6930111038536904,0.6224299065420561,0.1266331658291457,0.7332820906994619,0.935251798561151,0.8403141361256544,0.7572463768115942,0.1504424778761062,0.5309352517985612,0.72870249017038,0.6440382941688425,0.575566750629723,0.1196358907672301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024916438772409,0.0047747455496532,0.0072354934951594,0.0096098170477748,0.0120207464659818,0.014324401368301,0.0167262942237715,0.0186337939057493,0.0208878351863963,0.0234059973390645,0.0253635441325667,0.0275557015158201,0.0295523461993113,0.0319707578253706,0.0339063450651212,0.0359146561967247,0.0378950201326998,0.039998755548181,0.0420316510281908,0.0439997501197342,0.0589413925530138,0.0724745308871828,0.0855863883676315,0.0984026902059689,0.1106112170605527,0.1255322520999524,0.137975622681505,0.1498277108946271,0.160192517021322,0.1704667209531565,0.1827395874802294,0.1951997405265149,0.2062848509222926,0.2170371423260696,0.2267687434002112,0.2374955697324118,0.2470434666190646,0.2554954630806076,0.2635081513729225,0.2714604683116734,0.2782268789970972,0.2843465045592705,0.2906520402855927,0.2956156314352761,0.3011662196764681,0.3059902727328695,0.3107923753739096,0.3169342638851811,0.3224337748344371,0.3265881856651331,0.3255416957900962,0.3239914316315601,0.3230147100264893,0.3220216502146233,0.321335195198764,0.3203599687782182,0.3189022461246441,0.3199049024430234,0.3208308402427557,0.3212571163421555,0.3217915364315259,0.3225831918841037,0.3230840026773762,0.3236160057099522,0.3237884933874181,0.324488466049785,0.3249964311206281,0.3284742774384485,0.3322692671975304,0.3359033463158731,0.3396852828815718,0.3419628647214854,0.3433239082626453,0.3468595355919299,0.3513793428114113,0.3503079109426812,0.3488868557487039,0.3435643564356436,0.3420195439739413,0.3388804841149773,0.0,2.262490482703954,56.8910360366561,176.1953445237142,261.86646527765475,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,27 -100000,95641,44408,420.8237053146663,6006,61.5321880783346,4733,48.8493428550517,1905,19.510460994761655,77.25911226955019,79.65467664158436,63.27736057920528,65.04548701970425,77.01344372155712,79.41204068587663,63.18592346189512,64.95791774166521,0.2456685479930627,242.63595570772625,0.0914371173101571,87.56927803904091,165.26422,115.80733282876255,172796.41576311414,121085.447484617,354.4091,229.3589260658142,369843.0693949248,239093.89035065327,360.64309,174.58233176166263,372815.7902991395,179208.5379311496,2729.0524,1249.628993377098,2819466.1703662653,1272762.8776984096,1175.51506,518.3404740724446,1212231.5534132852,525196.4657851809,1866.77842,787.0857480062695,1914524.691293483,791321.3495826861,0.37934,100000,0,751201,7854.382534687006,0,0.0,0,0.0,30245,315.5550443847304,0,0.0,33015,341.00438096632195,1576264,0,56556,0,0,6316,0,0,61,0.6168902458150792,0,0.0,0,0.0,0,0.0,0.06006,0.1583276216586703,0.3171828171828171,0.01905,0.3367735789139409,0.6632264210860591,24.412976186598858,4.406398617634617,0.3228396365941263,0.2250158461863511,0.2218466089161208,0.2302979083034016,11.32537089273213,5.900418936029051,20.334554674975426,12232.233570800585,53.74117136425328,12.841699432807214,17.238035429059035,11.702341033940336,11.959095468446687,0.5588421719839425,0.780281690140845,0.6819371727748691,0.6028571428571429,0.1275229357798165,0.7279236276849642,0.9300518134715026,0.8560606060606061,0.7398373983739838,0.1528384279475982,0.4976985040276179,0.695139911634757,0.6210247349823321,0.5609452736318408,0.1207897793263647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023905270301753,0.0048672162565022,0.0070539756003491,0.0093277515851081,0.011475660003052,0.0135355345976004,0.0156514468666517,0.0179058158171442,0.020149047750483,0.0220996171719859,0.0241959461537672,0.0265633021870828,0.0286143339093228,0.0304207186418328,0.0324661252205859,0.0345761730463014,0.0366518180876411,0.0386248274287137,0.040784697157241,0.0426696412747724,0.0565866198507743,0.0703617587297597,0.0838820107320249,0.0964450434892487,0.1088242127273111,0.1249139455818337,0.1376204284970736,0.1496766081684408,0.1605672363270806,0.1710572947430596,0.1834942553535789,0.1955871515887121,0.2074187047224794,0.2178524857822242,0.2278252045970926,0.238460684140382,0.2474935099812013,0.2556119571347998,0.2648276646570356,0.272208048909421,0.2798147567812249,0.2865590388586446,0.2928922441421551,0.2980757666867107,0.3033869571050481,0.3078454404945904,0.3126546194321307,0.3175454046534186,0.3217801210295302,0.3259664121329222,0.3251006022632133,0.3236524837386585,0.3228969185931354,0.3217861346430491,0.3211122892429922,0.3192748854515821,0.3170588328752323,0.3171221931168553,0.318550809205897,0.319096332658509,0.3208287936281324,0.3226272747074315,0.3235973458760289,0.3242108085163424,0.325384042118422,0.3269000364640308,0.327105465523625,0.3308976377952756,0.3334622823984526,0.3352948192914795,0.3371232876712329,0.3419358271696908,0.3412618296529968,0.3433153454434902,0.3458625525946704,0.3502375296912114,0.3547100337526849,0.3612522870502134,0.3634317862165963,0.3679431504145282,0.0,2.4902189561464474,54.952435559002566,178.09957267959896,260.24182329291256,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,28 -100000,95627,44695,423.2277494849781,5918,60.81964298785908,4622,47.87350852792621,1843,18.99045248726824,77.28554750318864,79.71743986784942,63.27381344368565,65.07220108299177,77.04913690474118,79.48102439077819,63.1867164196592,64.98707689858807,0.2364105984474633,236.41547707123323,0.0870970240264483,85.12418440369629,165.67518,116.0182884049549,173251.46663599194,121323.77718108369,359.85569,233.3504918245993,375853.1690840453,243562.9182391996,362.97667,175.4934554693655,376975.8750143788,181491.7382679477,2661.76664,1226.6823458118258,2758838.5706965607,1258128.2125464831,1084.84494,478.66423836268586,1126034.3522226985,492149.8374258214,1796.32166,757.1469982127494,1852396.9381032556,769335.6216792669,0.38099,100000,0,753069,7875.06666527236,0,0.0,0,0.0,30490,318.3515116023717,0,0.0,33179,344.34835349848896,1574373,0,56472,0,0,6606,0,0,92,0.9620713815135892,0,0.0,0,0.0,0,0.0,0.05918,0.1553321609491062,0.3114227779655289,0.01843,0.3396712858524009,0.6603287141475991,24.27093280976116,4.341142834542756,0.329943747295543,0.2271743833838165,0.223929035049762,0.2189528342708784,11.177765573619045,5.903936532378581,19.799622559007645,12207.82677347026,52.6349037018455,12.508148583040583,17.417450520303085,11.516270937132902,11.193033661368924,0.5670705322371268,0.7819047619047619,0.7147540983606557,0.5845410628019324,0.1037549407114624,0.7189952904238619,0.9226666666666666,0.8564593301435407,0.7153846153846154,0.1176470588235294,0.5092592592592593,0.7037037037037037,0.6612466124661247,0.5406451612903226,0.0998735777496839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047165505279493,0.0067518174064898,0.0089952736697667,0.0113844463435477,0.0136906762827369,0.0158725301180238,0.0179388689114089,0.0199957042476808,0.0221726083795049,0.0243429556225764,0.0267054387028493,0.0288311100131752,0.0309752301237978,0.0329378723580006,0.0350231177401503,0.0371920952548731,0.0391841227969965,0.0413739266198282,0.0432247499243775,0.0573575990717414,0.0713020696882368,0.084707291699505,0.0974199053930193,0.1091781010024189,0.1242864858567994,0.1366684022059058,0.1482997548235795,0.1596439042136574,0.1696728796261481,0.1822517127906349,0.1941240242844752,0.2058387638123052,0.2162227311076292,0.2265671510153683,0.2371376570337816,0.2466326108583628,0.2553867652362063,0.2635819233435224,0.2713912325752017,0.2782268337309215,0.2850668665245802,0.2909317211948791,0.2973531000540184,0.3023524686925726,0.3072346413538568,0.3122588081992682,0.3171878583989602,0.3222416812609457,0.3259212282162062,0.3242977433479286,0.3230187121629059,0.3222167383487273,0.320421210981572,0.3200225975261656,0.3186971663521578,0.3173714430733115,0.3183313593893933,0.3196546122937505,0.3201209691850685,0.3213348331458567,0.321556235805273,0.3222722985012053,0.3234413407821229,0.3236988669099289,0.3259932485068813,0.3275476399467678,0.3314040795895382,0.3333797569722502,0.3379397480949184,0.3383868185738278,0.3410331125827814,0.3432723155312323,0.346261646844936,0.3490742472414438,0.3521938595459358,0.3522692659153214,0.3515751211631664,0.3549180327868853,0.3536308623298033,0.0,1.7802733805968642,56.47837362770627,170.37641299932434,251.89739470999575,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,29 -100000,95811,44823,424.3562847689722,6032,61.73612633204955,4648,47.948565404807376,1824,18.734800805752997,77.35864855579545,79.6654940531191,63.35358995694328,65.05537896385044,77.13100124356956,79.43723951234145,63.26864965234417,64.97219977718451,0.2276473122258977,228.25454077765528,0.084940304599101,83.17918666593016,165.24222,115.75734655349306,172466.85662397847,120818.4306118223,357.16065,231.7628913010413,372129.6615211197,241249.32554825777,364.09224,176.2581113620163,376266.8900230663,181099.9518077043,2678.39196,1232.5129949530365,2765166.0039035184,1256576.9505799045,1110.47981,489.1182843868066,1144957.3013537067,496593.11883147137,1787.60604,752.5930602891705,1837796.5160576552,761068.7725196272,0.38142,100000,0,751101,7839.402573817202,0,0.0,0,0.0,30449,317.2078362609721,0,0.0,33232,343.1130037260857,1580777,0,56713,0,0,6550,0,0,62,0.6366701109475947,0,0.0,1,0.0104372149335671,0,0.0,0.06032,0.158145875937287,0.3023872679045092,0.01824,0.3241498740554156,0.6758501259445844,24.493953113407784,4.2943147444835,0.330249569707401,0.2342943201376936,0.2134251290877797,0.2220309810671256,11.081862266569487,5.727370389628157,19.3775808436063,12276.677865247148,52.80342128107755,13.17808360704482,17.362216534394403,10.977340137499397,11.285781002138918,0.5524956970740104,0.7667584940312213,0.6859934853420195,0.561491935483871,0.1191860465116279,0.7095015576323987,0.8985849056603774,0.8249400479616307,0.7142857142857143,0.0990566037735849,0.4925683709869203,0.6827067669172933,0.6341681574239714,0.5151116951379764,0.124390243902439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022468271157622,0.0043047129009713,0.0067013392540324,0.0092138776421402,0.011429906731961,0.0135801841208483,0.0158191745100435,0.0179735395224057,0.0199619966082994,0.0222385891691728,0.0244182235332677,0.0261657127618109,0.0283251484578872,0.030439301480803,0.032467934177424,0.0346302015017093,0.0368258764124001,0.0389069157483335,0.040665607179583,0.0426626134754726,0.0572114130718272,0.0716160127131491,0.0849422468188583,0.0971803306254138,0.1088535025134631,0.1242404708816349,0.1375095411754728,0.1499095840867992,0.161469398212894,0.1717161970924997,0.184445425473496,0.1966418556344123,0.2081198951569926,0.2184734210727843,0.2283222673669606,0.2378429307764784,0.247195401015795,0.2557974683544304,0.2637468647501447,0.2717845889429963,0.2792624914640216,0.2862862159789289,0.2926889920424403,0.2983657270296519,0.3045349544072948,0.3088021308604829,0.313964691015102,0.3184188436395085,0.3237685813435541,0.3278614974532211,0.327595257002113,0.3266316455348056,0.3254888169925446,0.3246584630476493,0.3239697873540192,0.3218926769607094,0.3196217045436574,0.3196113190204189,0.3203719213085613,0.3220620842572062,0.3226732190419027,0.3229360338620989,0.3232005370591814,0.3254732795422543,0.325160452873729,0.3254393065093083,0.3272649450706235,0.3314948469854076,0.3376952300548754,0.3414517669531996,0.3432862994993172,0.3465878845949111,0.3489882115614953,0.3545475407328081,0.3600300103160461,0.3619473189087488,0.3682360134515439,0.3735995111020574,0.3824433883142298,0.3824921135646688,0.0,2.246131442797089,56.305229735368094,167.5629108354949,256.81601319614145,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,30 -100000,95853,44697,422.7097743419612,6140,62.85666593638175,4876,50.191438974262674,1883,19.185627992864077,77.41454581429173,79.70276721687327,63.37712166936033,65.06773140649908,77.174311043367,79.46767564560447,63.28642816559421,64.98249503153419,0.2402347709247294,235.09157126879643,0.0906935037661185,85.236374964893,166.80928,116.843225443556,174026.14419997286,121898.35001883715,364.91864,236.40462497968085,380056.3049669807,245982.23840639408,370.01419,178.68787758407282,382221.8918552367,183490.08470488,2769.19356,1276.3468656045168,2850986.114153965,1293552.6541730743,1162.50906,512.0639259328158,1196826.025267858,518239.9256495,1838.5303,781.169791374414,1874911.854610706,776691.7269443444,0.37992,100000,0,758224,7910.279281816949,0,0.0,0,0.0,31146,324.2569350985363,0,0.0,33866,349.4934952479318,1569511,0,56400,0,0,6541,0,0,60,0.6259584989515196,0,0.0,1,0.0104326416491919,0,0.0,0.0614,0.1616129711518214,0.3066775244299674,0.01883,0.3376380893107204,0.6623619106892796,24.40580028327818,4.258892614939974,0.3267022149302707,0.239540607054963,0.2200574241181296,0.2136997538966366,10.991533846471247,5.824870649758837,20.1225949325841,12248.140531697043,55.09953042566649,13.856776306821462,17.94104300423096,11.865791662439072,11.435919452174984,0.5740360951599672,0.7876712328767124,0.7156308851224106,0.5750232991612302,0.1170825335892514,0.7318352059925094,0.9232558139534884,0.8852459016393442,0.6935483870967742,0.1304347826086956,0.5145439141485456,0.7086720867208672,0.6535162950257289,0.5393939393939394,0.1133004926108374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023991496684719,0.0045995643584418,0.0066114361621221,0.0088522526546606,0.0113324524850086,0.0134107998656885,0.0155969845150774,0.0180647925251948,0.0202766200866225,0.0225329351116929,0.0248394399090415,0.0268543117685072,0.0289756789248173,0.0309000329380764,0.0328374212572041,0.0348382032452307,0.0367392968733834,0.0385424547367111,0.0406947169537097,0.0426921876625403,0.0578641667622553,0.0715614548494983,0.0852619778515825,0.0977328334855978,0.1096215009372959,0.1255703904005408,0.1379032685278381,0.1500919537786093,0.1609065397624814,0.1713260497000857,0.1834007574453434,0.1957114124440407,0.2066226173140037,0.2165892574176274,0.2260106839016026,0.2358090684728355,0.2464031585286966,0.2559799469448316,0.2654869264363904,0.2729479662880176,0.2797834561417714,0.2858880351775836,0.2928119268768858,0.2982273201251303,0.3043251060313294,0.3099622808963834,0.3140050062578223,0.3178839963868144,0.3228252556807134,0.3269941891178024,0.3260295741643548,0.3252012383900929,0.3237104110630747,0.322573190635065,0.3218395925216435,0.31958447439683,0.3175074652805207,0.3179777122254998,0.3187889125799573,0.3189076602638278,0.3199648821309822,0.3206445632236051,0.3216739407354814,0.3233499599180547,0.3227530985544075,0.3245677794507035,0.3252424431463733,0.3275065551254838,0.3323556114253789,0.3354688179697077,0.3375819209039548,0.3422677148736348,0.3456605653094259,0.3533428378479777,0.3546343735444807,0.360626767200754,0.3640939597315436,0.3696094385679414,0.3745865490628445,0.3758082921262837,0.0,2.681352179163849,58.06704693732584,174.71944361849177,269.61482503444495,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,31 -100000,95713,44846,423.97584445164193,6016,61.61127537534087,4687,48.426023633153285,1844,18.92114968708535,77.36002699221102,79.73084516857183,63.33690834044432,65.08810855400081,77.12827955832395,79.50054766047256,63.25009346430909,65.00421478841348,0.2317474338870653,230.29750809926952,0.0868148761352358,83.89376558733375,167.01476,116.99875743705029,174495.376803569,122239.14978848254,359.89201,233.7934017644909,375448.3194550375,243701.735150388,367.01354,177.76456153026905,379867.6877749104,182997.4105978574,2686.23284,1233.9471337306427,2777517.8293439765,1260328.7518500714,1083.63041,479.4637638167216,1119576.348040496,488407.8247460823,1801.62792,760.4686930073856,1850650.1311211644,767619.907117167,0.38253,100000,0,759158,7931.608036525864,0,0.0,0,0.0,30693,320.1132552526825,0,0.0,33493,346.3897276232069,1569796,0,56269,0,0,6601,0,0,74,0.7626968123452406,0,0.0,0,0.0,0,0.0,0.06016,0.1572687109507751,0.3065159574468085,0.01844,0.3330163258836582,0.6669836741163417,24.694221523163204,4.35051418269167,0.3251546831662044,0.2398122466396415,0.2182632814166844,0.2167697887774696,11.057145825977726,5.642420755393448,19.592619572769284,12316.95836652502,53.15077635937815,13.540302899295664,17.232521677727277,11.365306301512677,11.012645480842544,0.5532323447834435,0.7740213523131673,0.6902887139107612,0.5562072336265884,0.1003937007874015,0.7246835443037974,0.9019607843137256,0.8610421836228288,0.7096774193548387,0.1219512195121951,0.4899211218229623,0.7011173184357542,0.6289027653880463,0.5070967741935484,0.094944512946979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030324821991,0.0050684750985818,0.0073977857382056,0.0096710619882565,0.0122157126001871,0.0143884159504704,0.0164424057084607,0.0186266304680642,0.0207513416815742,0.022983681074551,0.0251696774590416,0.0272576074904521,0.0292048866768129,0.0311370214343835,0.0333986793231531,0.0355558772138418,0.0375849494447207,0.0397226575879929,0.0417199737884981,0.0435978659553184,0.0585249702362303,0.0723645650171648,0.0853396275898242,0.097780816154817,0.1101341093117408,0.125095145466847,0.1371895917090091,0.1493992316124432,0.1608544726301735,0.1712670435650149,0.1844245956924138,0.1970520118612151,0.208633171728591,0.2194087291174669,0.2294230874993125,0.2401993907504846,0.2485969003492407,0.2570066129830402,0.2650337358961274,0.2728095085421151,0.2800217393818152,0.2869882306190904,0.294207389185865,0.2998682792479942,0.3052199570164042,0.3109737324975678,0.3162740658268386,0.3206777334316292,0.324953095684803,0.3293504780745137,0.3276788238620299,0.3269929530940321,0.326012489603744,0.3241534923412933,0.3227590307715177,0.3202291070033845,0.3189070381556269,0.3195190669637007,0.3204924881908562,0.3217682470701385,0.3227887150148634,0.3233769050294749,0.3246541903986981,0.3246452360266435,0.3259447413194028,0.3264887063655031,0.3269575612671846,0.3295568982880161,0.332126665026535,0.3342762659866927,0.3345534407027818,0.335676625659051,0.3379227964290205,0.3420652999240698,0.3455258001306335,0.3490998941051888,0.350879854368932,0.3490433031218529,0.3521667580910587,0.3495592180912227,0.0,2.152468970415169,55.29155213755972,174.5345655291043,256.92803659542443,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,32 -100000,95758,44464,420.75857891768834,6032,61.89561185488419,4720,48.77921426930387,1977,20.353390839407677,77.33346816806463,79.69584121047308,63.32120940122799,65.07061004551414,77.08966214277693,79.45308870011411,63.230995008633045,64.98319125498877,0.2438060252876965,242.75251035896872,0.0902143925949445,87.41879052537627,167.60084,117.39865517987016,175025.4182418179,122599.31826047972,359.55428,232.37560250675511,374921.8655360388,242109.2780830375,363.1919,175.47921715131153,376384.1350069968,180998.48463995103,2702.04472,1249.2677610420103,2794156.7701915246,1277022.9965559123,1152.66014,509.97293873716,1191361.9749785918,520204.2635990308,1932.2856,806.3938339274016,1990265.4190772572,816179.2987605777,0.37938,100000,0,761822,7955.700829173542,0,0.0,0,0.0,30667,319.74352012364506,0,0.0,33275,344.5769544058982,1570362,0,56341,0,0,6469,0,0,65,0.6683514693289334,0,0.0,0,0.0,0,0.0,0.06032,0.1589962570509779,0.3277519893899204,0.01977,0.3321706040906929,0.6678293959093071,24.51034866696121,4.393700424877833,0.3010593220338983,0.2402542372881355,0.2315677966101695,0.2271186440677966,11.297553874202393,5.886534591009738,21.108308527240776,12244.45215813557,53.790100195778045,13.672586250974511,16.233999399207363,12.149742617850908,11.733771927745256,0.5612288135593221,0.7892416225749559,0.7086558761435608,0.5617566331198536,0.1240671641791044,0.7370007535795027,0.9114219114219114,0.8668280871670703,0.75,0.1511111111111111,0.4924845269672855,0.7148936170212766,0.6438492063492064,0.503001200480192,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024925274836617,0.0047154504522776,0.0068002354708401,0.009256436830661,0.0113402900673297,0.013430540989115,0.0155874077396729,0.0176869220877304,0.0198683618821797,0.0220384264993397,0.0242047097177654,0.0261177557620245,0.0283516551319889,0.0304119464469618,0.0324990198708292,0.0345330136023483,0.0366761584260937,0.0386012244474421,0.0407439752146882,0.0426613339999166,0.0574757038320615,0.0721409957194737,0.0852448007387043,0.0983266898749487,0.1109634691639247,0.1262966448488437,0.1387571484652682,0.1511574690011175,0.1617574812568084,0.1719767080245788,0.1850850451886721,0.1967259232009348,0.2079001174576935,0.2183029268932931,0.2281572086986173,0.2381906765585206,0.2478568558289056,0.2565946432590592,0.264930200885257,0.2725399042755398,0.2794064925002024,0.2864744751768902,0.2925392205579612,0.297846087498203,0.3038650567319944,0.3092374915379408,0.3142767845980747,0.3185931819915092,0.3226315721365995,0.3264444268482593,0.32498484338161,0.3233194404324681,0.322567013649233,0.3207064132604356,0.3200178465199286,0.3185187458756004,0.3168453438213651,0.3171662035743057,0.3172096365751831,0.3169366663090512,0.3173832336452102,0.3188279720832757,0.3195002511300854,0.321048632218845,0.3229136586774473,0.3245680529053507,0.3250540571298509,0.3281009154109912,0.3306596306068601,0.3348545577205444,0.3379012064648304,0.3432700993676603,0.3432666203674474,0.3462067910676047,0.3464046111688557,0.345548480115343,0.3471278567016677,0.3523731251284158,0.360337552742616,0.373105324523902,0.0,2.025307556627137,58.44104008761745,174.11771645424813,253.20958193678004,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,33 -100000,95805,44567,421.4393820781796,5892,60.257815354104686,4625,47.78456239235948,1791,18.349772976358228,77.34149214859087,79.6801408445379,63.33904717832892,65.07237422532904,77.1236857986711,79.46520388043444,63.25741938256461,64.99446206640526,0.2178063499197691,214.9369641034582,0.0816277957643052,77.91215892378034,165.98032,116.24299136338264,173248.07682271278,121332.90680380214,356.21291,230.83419395625296,371206.13746672927,240337.70581848975,362.77865,175.52753471107238,376039.19419654505,181150.48064522483,2639.8794,1211.486509265747,2729128.0413339594,1238210.0077900055,1090.81343,479.70823694323065,1127313.2299984342,489449.6601881228,1753.48406,738.0356525123715,1798388.7897291372,741950.9369460567,0.38078,100000,0,754456,7874.912582850581,0,0.0,0,0.0,30388,316.6431814623453,0,0.0,33207,343.9903971608997,1581345,0,56712,0,0,6505,0,0,61,0.6262721152340691,0,0.0,1,0.0104378685872344,0,0.0,0.05892,0.1547350175954619,0.3039714867617108,0.01791,0.3425896028414594,0.6574103971585405,24.349078973148803,4.308013755340312,0.328,0.2384864864864865,0.2118918918918919,0.2216216216216216,11.142801141628654,5.7312398971437375,19.13537856807182,12271.782652211214,52.60530640258192,13.447292182995865,17.18036934849371,10.789517531180438,11.18812733991191,0.5558918918918919,0.7706255666364461,0.6888595912986157,0.5897959183673469,0.0956097560975609,0.7254746835443038,0.9,0.8459595959595959,0.7477064220183486,0.1095238095238095,0.4921154418327879,0.6847662141779789,0.6333630686886709,0.5446194225721784,0.0920245398773006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0047646563871739,0.0066873002181744,0.0090029671178311,0.0113649081752047,0.0134051807560277,0.0156759954308094,0.0179517813926416,0.0198991747875614,0.0222099345682425,0.0243517312799269,0.0263703764556078,0.0282652074633313,0.030276183902836,0.0323585859628123,0.0345650938032973,0.0367601375139792,0.0389850201253164,0.040941870856454,0.0428907535030918,0.0580655258764607,0.0714681556301431,0.0845603261268247,0.0970586071732573,0.1093909726101023,0.1253342634577374,0.1373596666984702,0.1488669353552325,0.16003543298683,0.1704679428093717,0.183340688200282,0.1959222062464189,0.2077004975772983,0.2176787490028521,0.2276495162708883,0.2372254693588381,0.2477849476746129,0.2566232599910193,0.265655959511328,0.2738058498782704,0.2814000738825268,0.2882707258422244,0.2944944045944956,0.299948540587116,0.305261753432633,0.3107895254971451,0.3159439843096103,0.3200548404295834,0.3239545789249312,0.3278069448282214,0.3264098944679707,0.3249120782503572,0.3240166068538456,0.3235774001183996,0.3223928475955683,0.3210586705423391,0.3183026811433636,0.3190885061811495,0.3197867177085826,0.320132897486737,0.3201770011062569,0.3215798013376073,0.3224953851317335,0.3226557428424328,0.3242168674698795,0.3258564863171088,0.3285595623406754,0.3307913805651362,0.3347804602569533,0.3370236151487396,0.3400532696546657,0.3437783590455346,0.3453474377652499,0.3452197971103596,0.3472747918243755,0.3468999166964179,0.3504643962848297,0.3527601067104453,0.3521872387851769,0.3577981651376147,0.0,1.9111498230092472,55.68800316433566,171.75311101934315,252.43457091940252,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,34 -100000,95702,44848,425.372510501348,6077,62.37069235752649,4785,49.41380535412008,1854,18.975569998537125,77.3419109081298,79.70950836561575,63.33255108723839,65.0803757122666,77.11541164453853,79.48621063332425,63.24824947537232,64.99985390105765,0.226499263591279,223.29773229149907,0.0843016118660671,80.52181120895341,166.07118,116.33108683437436,173529.47691793274,121555.54412068124,363.68819,235.33808303287145,379472.2785312742,245357.9371725476,371.85524,179.63868579486092,384736.9856429333,184732.43780626432,2746.54232,1260.207173006454,2838939.875864663,1285853.0574141126,1118.45706,495.8338711255092,1151925.090384736,501339.74329220847,1816.69182,758.5136767525642,1861583.624166684,761197.217356305,0.38246,100000,0,754869,7887.703496269671,0,0.0,0,0.0,30951,322.8250193308395,0,0.0,34023,351.76903304006186,1573699,0,56508,0,0,6558,0,0,74,0.7523353743913398,0,0.0,1,0.0104491024221019,0,0.0,0.06077,0.1588924331956283,0.3050847457627119,0.01854,0.3342705404561075,0.6657294595438925,24.535592189115988,4.317359761300176,0.3260188087774294,0.2298850574712643,0.2307210031347962,0.2133751306165099,10.941396986671377,5.611836045848354,19.687623117617285,12295.990708017003,54.29839932014225,13.305137572396044,17.607873856230974,12.214791554776106,11.170596336739138,0.5703239289446186,0.8163636363636364,0.6942307692307692,0.572463768115942,0.1136141038197845,0.748811410459588,0.9322429906542056,0.8670212765957447,0.74,0.1682692307692307,0.5063866023275617,0.7425595238095238,0.6393581081081081,0.5234192037470726,0.0996309963099631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022176766040181,0.0045099827708523,0.0067052140393588,0.0090598846185097,0.0112051083906129,0.0136433982243219,0.0156783591751021,0.017769657875398,0.0200940310711365,0.0220557380740376,0.024274730907227,0.0264198215404203,0.0282385364499244,0.0302690005460371,0.0322367606389565,0.0342161301660154,0.0362361615973322,0.0383150510071711,0.0403552006322072,0.042384009337613,0.0574006767765384,0.0716618515261901,0.085135404534819,0.0981035625256381,0.1109892196367165,0.1273844916787456,0.1397139947381821,0.1511986884687446,0.1622424235950135,0.1720120996288589,0.1853104302406978,0.1969570722100183,0.2083482876004654,0.218383012224725,0.228575513615767,0.2390625691892131,0.2489768152468468,0.2574842894562297,0.266039747719951,0.2740737349342429,0.280656693623963,0.2878892490608872,0.294808361544471,0.3001162498052516,0.3059548254620123,0.3115035081445676,0.3161672596081575,0.3199653926408468,0.3241515002459419,0.3279747002240084,0.3267445302618477,0.3253142817888301,0.3247565379913155,0.3226015744398627,0.321593285186778,0.3202438614451388,0.3179305770506301,0.3178057052973079,0.3186168307204148,0.3199386174654723,0.3206515633776446,0.3222224417616723,0.3240946666107171,0.32417053117369,0.3255965136156791,0.3268372857478281,0.3281004709576138,0.3304889952454422,0.3327937502199388,0.3356587602152681,0.3380281690140845,0.341158309379325,0.3442095298201325,0.3470323122756092,0.3491269466729589,0.3500654216724158,0.3508021390374332,0.3522424738890026,0.3526623919710064,0.3465232424126008,0.0,2.3183638785523497,55.12439920604018,183.9050607793137,260.08139958108507,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,35 -100000,95706,44577,420.2348860050572,6127,62.86962154932815,4812,49.67295676342131,1858,19.13150690656803,77.33810060160408,79.72098411383945,63.31256206328344,65.07485894961228,77.1119307181234,79.4948533116087,63.22899740430183,64.9938623289963,0.2261698834806793,226.130802230756,0.0835646589816079,80.99662061597712,165.53438,115.9091422582444,172961.33993689006,121109.5879654822,357.56321,231.5411226406628,373037.57340187655,241361.3071705669,370.46612,178.989568779653,382659.3734980043,183687.668134876,2760.76768,1260.132608732416,2853354.6486113723,1285391.2280655506,1173.61502,516.2418934534314,1213404.1857354816,526536.9814363063,1820.15994,753.8213922551878,1875019.2464422293,763188.4669409352,0.38052,100000,0,752429,7861.879088040457,0,0.0,0,0.0,30416,317.20059348421205,0,0.0,33854,349.29889453116834,1578496,0,56672,0,0,6571,0,0,68,0.7105092679664806,0,0.0,0,0.0,0,0.0,0.06127,0.1610165037317355,0.3032479190468418,0.01858,0.3375875486381323,0.6624124513618677,24.596516591458823,4.3634782449466165,0.3260598503740648,0.2333748960931005,0.2236076475477971,0.2169576059850374,11.299370797506722,5.866775459549257,19.541602358302004,12355.802576499866,54.46368730059893,13.662228643247357,17.386774783365333,11.973232153976175,11.441451720010066,0.5746051537822111,0.7978628673196795,0.7023581899298916,0.5762081784386617,0.1408045977011494,0.7339743589743589,0.9186602870813396,0.8838526912181303,0.7061068702290076,0.1627906976744186,0.5187991021324355,0.7262411347517731,0.649671052631579,0.5343980343980343,0.1351025331724969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025440392450994,0.0049705822682085,0.007574065425305,0.0099396304652722,0.0125049602669895,0.0148606117397814,0.0170838177998082,0.0195593777768698,0.0218236112247402,0.0240006553079947,0.0259336737833015,0.0280738504507834,0.0299515716092414,0.0321195394723292,0.0344347359625323,0.0364066633597883,0.0385268476527717,0.0404316024277636,0.0424490050527103,0.0446277892368273,0.0591202456294254,0.0732164354880921,0.0863693599160545,0.0995487962641592,0.1120626015059796,0.1274329356012524,0.1392281491070765,0.1506639264835855,0.161583345801184,0.1713387617606986,0.1841385106016204,0.1965963711947343,0.2080435374149659,0.2181553578658263,0.2275878766535337,0.2378287322819811,0.2475348141199593,0.2566405546551413,0.2652827146053124,0.2734264852534932,0.2805692911653329,0.288002247822422,0.2935101847465656,0.2991992903890873,0.3047472084178807,0.3099006847202517,0.3152006414512835,0.3201273885350318,0.324497648567764,0.3289833080424886,0.3288655631812676,0.3276108726752503,0.3265886593728438,0.325155943167379,0.3237110952720361,0.3221745788667687,0.3197304735693271,0.3199868830955894,0.3217498165184591,0.322564541434888,0.3228722209746238,0.3237302182406567,0.3243780886171371,0.3266068592138527,0.3277419975007209,0.3286118245259034,0.3292855926913692,0.3326335578881403,0.3362538397095783,0.3404951509895135,0.343879574544799,0.3451918024172359,0.3466799303655807,0.3467276407526801,0.3500277726346972,0.3563164660511861,0.3605330139242401,0.3601905139908712,0.3606911447084233,0.3561695685087055,0.0,2.4006751045924344,54.60560942711106,185.090621030963,262.69522465626005,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,36 -100000,95650,44604,422.5196027182436,6156,63.2932566649242,4802,49.61840041819132,1872,19.174072138003137,77.27782633283482,79.68882885826092,63.2892740309558,65.07230787925859,77.04362718951288,79.45702552014826,63.20223557617702,64.98886760012502,0.2341991433219448,231.8033381126554,0.0870384547787779,83.4402791335691,165.19052,115.6847750755997,172703.1050705698,120945.9227136432,358.14312,231.8034365370578,373857.0622059592,241771.66391746767,366.15168,176.9879596317699,379497.76267642446,182411.8777039936,2747.60108,1268.1983432863756,2840597.637219028,1294200.195312895,1115.90223,495.6223414683528,1152417.7626764243,504037.50871666847,1823.02648,766.2349820715721,1869678.515420805,769749.3419995856,0.38106,100000,0,750866,7850.141139571353,0,0.0,0,0.0,30550,318.7872451646628,0,0.0,33605,347.9560899111343,1578866,0,56720,0,0,6471,0,0,66,0.6900156821745949,0,0.0,0,0.0,0,0.0,0.06156,0.1615493623051488,0.3040935672514619,0.01872,0.3391667957255691,0.6608332042744308,24.628053282404327,4.339176756079527,0.3313202832153269,0.2346938775510204,0.2169929196168263,0.2169929196168263,11.394471732754235,6.0721108213848085,20.01642898289337,12277.611408966157,54.80903983861157,13.641995152633012,18.167863075805485,11.573780280649167,11.4254013295239,0.5610162432319866,0.7737355811889973,0.6907605279698303,0.5777351247600768,0.1161228406909788,0.7282127031019202,0.9055299539170508,0.8616071428571429,0.7217741935483871,0.125,0.4953596287703016,0.6911976911976911,0.6237970253718286,0.5327455919395466,0.1136919315403423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024116896013618,0.0048170533830926,0.0069234361358698,0.0089535250058436,0.011455313088153,0.0136001059483909,0.0158490566037735,0.0181396631497237,0.0203146416808166,0.0221061257938946,0.0241951199499482,0.0264190480103539,0.0283585775436285,0.030435141096201,0.0325934338220111,0.0346903313888544,0.0367238663682334,0.0385741579100386,0.0406663961123424,0.0427384291359517,0.0578498578832971,0.0718340245486154,0.0855235536149131,0.0981762310177535,0.1107394236147019,0.1259645817234918,0.1388157335825333,0.1503909995525345,0.1614724818720455,0.172012882447665,0.1852614111460712,0.1970961769578068,0.2079301675065576,0.2180250372056377,0.2277580854670747,0.2379770400248216,0.2474488086997298,0.2557812412085748,0.2643196804103821,0.2724254773570218,0.2799306157849089,0.2876614647261675,0.294892116967919,0.3006172469587104,0.305211611601881,0.3101487529910945,0.3161915735684585,0.3201049106858663,0.324143475892834,0.3271706833938593,0.3261529330833457,0.3239761080380174,0.3225856565827755,0.3223213509834023,0.3217877094972067,0.3195259004513772,0.3176883273546871,0.3182267145161821,0.3189011440706994,0.3201911375187916,0.3211604864134514,0.3232841438050906,0.3239811978008142,0.3262908171258477,0.3277078267568674,0.3286603955494176,0.3281651533321912,0.330921842421179,0.3337111685735539,0.334120377781335,0.3368522513425437,0.3387328821868173,0.3382826814936501,0.3419780557047495,0.3408897704732219,0.3432568149210904,0.3437306979617047,0.3477094510936855,0.3466068424004487,0.3533256439830834,0.0,2.2848333333532387,59.51129957897143,177.90236296995707,256.4259175952805,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,37 -100000,95822,44926,424.6310868067876,6062,62.15691594832085,4739,48.93448268664816,1872,19.212706894032685,77.39792083527668,79.70329191524618,63.37134666233784,65.0722871480451,77.16838731289613,79.47382465375772,63.28741557971308,64.99055324820945,0.2295335223805494,229.46726148846608,0.0839310826247583,81.73389983565471,166.4234,116.53077938573648,173679.73951702114,121611.7169185954,360.64216,233.9327172380262,375801.2982404876,243573.6552031069,369.35216,178.60582968522877,382139.57128843066,183844.29582317505,2719.90284,1245.2277140412305,2810386.967502244,1271753.703524714,1122.23158,491.5178730282036,1157253.7204399826,499063.4458648592,1841.91582,764.0544448116158,1892093.089269688,770941.1503008392,0.38198,100000,0,756470,7894.533614410052,0,0.0,0,0.0,30779,320.62574356619564,0,0.0,33767,349.10563336185845,1575246,0,56479,0,0,6525,0,0,64,0.667905073991359,0,0.0,1,0.0104360167811149,0,0.0,0.06062,0.1586994083459867,0.3088089739359947,0.01872,0.3302911093627065,0.6697088906372934,24.40488819578264,4.360494499308325,0.3112470985439966,0.2435112893015404,0.2186115214180206,0.2266300907364422,11.18848180738642,5.666356098131782,19.892050069845656,12279.100667609013,53.8479221880896,13.747835806499696,16.802111188703485,11.63235760747431,11.66561758541211,0.5562354927199831,0.7772963604852686,0.6908474576271186,0.581081081081081,0.1098696461824953,0.7445956765412329,0.9373493975903614,0.8523316062176166,0.7389558232931727,0.1407035175879397,0.4888252148997135,0.6874154262516915,0.6336088154269972,0.531130876747141,0.1028571428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791204341135,0.0046307085896097,0.0067751914397281,0.0090675548064132,0.0113756506180871,0.0134436506482668,0.0155896558048541,0.0178321856669217,0.0202709606228416,0.0223547707229236,0.0243017847263487,0.0264785842523724,0.0285714285714285,0.0307274355042859,0.0329715634437195,0.0350110990656135,0.0369734337498965,0.0391559397218249,0.041306266548985,0.0432931969320109,0.0579221862939397,0.0719776599416397,0.0857169819234156,0.098363068641778,0.1104552497602007,0.1262566997557958,0.138583729216152,0.1506024096385542,0.1616742158789847,0.1722122109237568,0.184896394261836,0.1968523526230395,0.2088950252217777,0.2189570350934732,0.2288626692031097,0.2396745447500968,0.2491359511227061,0.2582613973563528,0.2664823021387041,0.2739417369125367,0.2810723364917957,0.2878214560997827,0.2943137092675547,0.2996028423092566,0.3045643455186536,0.3094834157016056,0.3145670568854055,0.3188306497659016,0.3231918523496872,0.3268937200610622,0.3260382422006038,0.3247494069411877,0.3224397505758103,0.3222995260936577,0.3207941328987332,0.3190570643881599,0.3171212670968149,0.317754103457869,0.3183235900669814,0.3186924887652471,0.3195270700041157,0.3206213852865123,0.3220608546436194,0.3230500582072177,0.3236945468565507,0.3241330687278044,0.3238106143012538,0.3271802003982678,0.329074269623372,0.3311884334286622,0.3343087051938551,0.3375187005770463,0.3395808269486481,0.3386097728836889,0.3441134751773049,0.345430747263208,0.3482403565391117,0.347165991902834,0.3518973518973519,0.3591495823842065,0.0,1.9468831104268625,54.83546237143947,181.95637156507277,259.4546046754388,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,38 -100000,95563,44440,421.6485459853709,6038,62.095162353630585,4724,48.952000251143225,1812,18.668313050029823,77.19945181010942,79.67141062623627,63.224607941291474,65.05418662312542,76.97468126537757,79.44561338782366,63.14115373584641,64.97219302686143,0.2247705447318537,225.79723841261057,0.0834542054450651,81.99359626398461,165.08404,115.62099514253686,172748.9090966169,120989.28993704346,358.28949,231.75647047813823,374443.1212917133,242035.16055182263,365.46968,176.28889954910193,379424.662264684,182114.63570012985,2693.03896,1237.2911410118527,2793527.7042369954,1270189.363050399,1120.28895,494.6123855032957,1160815.1585864823,506088.3663167708,1776.4412,744.3570521098293,1832550.5478061596,757012.2902113515,0.37971,100000,0,750382,7852.223140755313,0,0.0,0,0.0,30556,319.2553603382062,0,0.0,33476,347.27875851532497,1574704,0,56550,0,0,6558,0,0,61,0.6383223632577462,0,0.0,0,0.0,0,0.0,0.06038,0.1590160912275157,0.3000993706525339,0.01812,0.3321782957946133,0.6678217042053867,24.44193929472486,4.376790476683399,0.3204911092294665,0.237510584250635,0.2305249788314987,0.2114733276883996,11.30249912370066,5.779911054325604,19.268624516470755,12262.443959081753,53.62804428330483,13.542045166174235,17.01980856105149,12.076645639052424,10.989544917026675,0.5690093141405589,0.7932263814616756,0.702774108322325,0.5757575757575758,0.1071071071071071,0.7328185328185328,0.9063231850117096,0.8877805486284289,0.725,0.1409691629955947,0.5071449402158064,0.7237410071942446,0.6361185983827493,0.5335689045936396,0.0971502590673575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021895368521353,0.0044946328199508,0.0065399301324234,0.008469578656255,0.010760679236063,0.0126913902424106,0.0147675664642547,0.0168914776210913,0.0191056078591895,0.0214697834575062,0.0235484930606881,0.0257681075967589,0.0275795305918579,0.029852901735058,0.0322733989893248,0.0344495626520366,0.0363813612934673,0.0384119725628767,0.0405091507557055,0.0424683418764158,0.0569444153887994,0.0703066017951514,0.0840673547898841,0.0968486266080854,0.1083668875431977,0.1235423822244837,0.1363974811726162,0.1486880155367985,0.1597981767346195,0.1700125807804385,0.1833270341774202,0.196202050892518,0.2081415388642858,0.2187074979160268,0.2285153016741896,0.2389558455984448,0.2479829911038997,0.256898127771947,0.2655195566328679,0.2735428584556711,0.2807827489009268,0.2872893184297259,0.2932312985703268,0.2988816413804702,0.3043684768179659,0.309516453912979,0.3137816286808564,0.3191380784098593,0.3236814085750643,0.3290203082622213,0.3272707632897206,0.3258498241743087,0.3250328023815234,0.3236000926515722,0.3228555254297887,0.3216851931462261,0.3199378083800034,0.3202126959041222,0.3213765196070026,0.3221608832807571,0.3232870527147533,0.3244460314626356,0.324886248736097,0.3253401589653779,0.3263175700166735,0.3275509669304544,0.3280220095145297,0.3324601546473094,0.3365777965862604,0.3404128622469234,0.3420635280257375,0.3460523538104285,0.3480842552659541,0.3515252441147528,0.3534883720930232,0.36023598820059,0.3644042232277526,0.3660714285714285,0.370330265295073,0.3607738998482549,0.0,1.858220821025637,57.26412151965525,169.1512399519791,263.9462441851733,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,39 -100000,95685,44767,423.8699900715891,6074,62.381773527721165,4778,49.40168260437895,1862,19.07299994774521,77.33990302576841,79.7299058091731,63.32261558699434,65.08855093299375,77.10656998233708,79.49968757330234,63.23617960843783,65.00636896040731,0.2333330434313296,230.2182358707654,0.0864359785565085,82.18197258644011,166.08592,116.4030744868252,173575.7119715734,121652.3744440876,360.52461,233.70466364416052,376271.57861733815,243732.57422183265,371.26699,179.34633718400858,385278.2045252652,185254.5283926793,2743.64012,1252.75167207312,2838255.6931598475,1280134.3074391182,1151.05546,503.5818065020866,1190064.1375346188,513392.0849684769,1826.2785,760.4327582999106,1872892.929926321,762309.3388585798,0.3806,100000,0,754936,7889.8050896169725,0,0.0,0,0.0,30805,321.3983382975388,0,0.0,33961,352.1346083503161,1572661,0,56477,0,0,6492,0,0,68,0.7106652035324241,0,0.0,0,0.0,0,0.0,0.06074,0.1595901208617971,0.3065525189331577,0.01862,0.3204186845805343,0.6795813154194658,24.59860945657392,4.334899535643187,0.3292172457095019,0.2329426538300544,0.2176642946839682,0.2201758057764755,11.071039018883235,5.709027877160251,19.71906076847916,12301.00174651271,54.1910383268081,13.39616642151814,17.804491214651595,11.513442124868824,11.476938565769538,0.5692758476349937,0.793351302785265,0.6961220597584233,0.5740384615384615,0.1378326996197718,0.7410926365795725,0.924170616113744,0.8556962025316456,0.7024793388429752,0.1862745098039215,0.5075391180654338,0.7134587554269175,0.6426146010186757,0.5350877192982456,0.1261792452830188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021371416995847,0.0048046221681617,0.0072145386652596,0.009436070369317,0.0119378095034725,0.0142714631812536,0.0164820043421978,0.0184945139066088,0.0206597630414115,0.0227949681157046,0.0248503239563684,0.0269870761776691,0.0289366252943535,0.0309113757158749,0.0332228999597485,0.0351537459418102,0.0372346487365705,0.0391525933922213,0.0412886984021304,0.0430644455100806,0.0585427004439801,0.0726063969010103,0.0852034874571149,0.097658222521461,0.1101980104016119,0.125330596872818,0.1369823772187622,0.1489318672896997,0.1604447720062806,0.1713397308743901,0.1842314982338244,0.1961501422867592,0.2079862545944888,0.2190479314265722,0.2289541167277489,0.2391843696697162,0.2489206225246834,0.2579596336880949,0.2667324621108993,0.2742306767296174,0.2813143346209896,0.2872942386831276,0.293866445850831,0.2987460927675781,0.3039689282679937,0.3095176524191264,0.314934537133139,0.3190867254837151,0.3233885581154543,0.3268736065854913,0.3262016965127238,0.3241811904205125,0.3231751130647956,0.3223292266759211,0.3223106088766634,0.3208782801621911,0.3192946386209078,0.3200026245858075,0.3203382029558665,0.3212917935837831,0.3214552936775159,0.3229187226147712,0.3246221070017352,0.3259756233925975,0.3262826066031379,0.3268488578283092,0.3278089967766779,0.331474304439613,0.334646223097482,0.337797147385103,0.3422165628268679,0.3451463790446841,0.3494173228346456,0.3520012174707046,0.3569487395745478,0.3561967833491012,0.3562989105416603,0.360122699386503,0.3583216783216783,0.363355237727097,0.0,2.1020721042611923,55.55114188380292,181.0152945792369,261.7505720587849,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,40 -100000,95789,44934,426.6043073839376,6110,62.64811199615822,4750,49.0661767008738,1900,19.469876499389283,77.331780499572,79.67250264376251,63.32970022966426,65.06263678717164,77.09818450468434,79.44034706270148,63.24379356413642,64.97965858672241,0.2335959948876649,232.1555810610363,0.0859066655278439,82.97820044923299,167.47654,117.29724321450438,174839.0107423608,122453.77153379236,362.87481,235.24250518435483,378310.025159465,245066.8502483113,373.37253,180.7628282737813,386821.3364791364,186346.37036698655,2708.46812,1243.283452739414,2800120.222572529,1270524.2697380842,1130.39124,500.9633080664151,1168551.4725072817,511453.1293430511,1849.29454,763.8368439369747,1897872.4070613536,769588.768159993,0.38132,100000,0,761257,7947.2277610164,0,0.0,0,0.0,30929,322.3439017006128,0,0.0,34155,353.5165833237637,1565127,0,56277,0,0,6673,0,0,60,0.626376723840942,0,0.0,0,0.0,0,0.0,0.0611,0.1602328752753593,0.3109656301145663,0.019,0.3410123805046231,0.6589876194953769,24.2675194036431,4.281180092632948,0.311578947368421,0.2543157894736842,0.2191578947368421,0.2149473684210526,11.278513503200688,6.007712988508029,20.032667629656306,12251.203132282044,53.8926239211036,14.395797553421025,16.872926989265224,11.532986480675904,11.090912897741434,0.5669473684210526,0.765728476821192,0.6912162162162162,0.5917387127761767,0.1263467189030362,0.7612179487179487,0.9372093023255814,0.8721227621483376,0.7531914893617021,0.1510416666666666,0.4977155910908052,0.6709511568123393,0.6262626262626263,0.5446650124069479,0.120627261761158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026031906811851,0.0047544706216292,0.0071437994053598,0.0092344264293551,0.0114111365369946,0.0136355767370339,0.0154870414551089,0.0174976520070235,0.0195354828157265,0.0214976710856323,0.0235883872555049,0.0255354539294001,0.0277212248339399,0.0296453476993438,0.0316634672941565,0.0338254145474093,0.0358851674641148,0.0380638269184894,0.039789259290049,0.0417113524432273,0.0565787688743726,0.070479697077467,0.0838181494176965,0.0969338433086751,0.1091805662385282,0.1245733608073123,0.1370202753547922,0.1484502100058482,0.1605698431330701,0.1704466323130818,0.1836381052835509,0.1953406374717442,0.2063479981732379,0.2170869879043723,0.2270046001804855,0.2369012929745061,0.2463121247963578,0.2558602537568613,0.2647999455634186,0.2729666605605422,0.2798071252645089,0.2872771901116241,0.2937773571513072,0.2990438075153374,0.3049297399710944,0.3105790687066191,0.3142052213109622,0.3192473310061915,0.3237070641607258,0.3282320784862609,0.3277233988124891,0.3270417772156771,0.3253263119359063,0.3241762213900496,0.323631282424819,0.3214285714285714,0.3196587431217392,0.3203214884454817,0.321433461117196,0.3222851224172723,0.3229909206873265,0.3242260092523032,0.3248457114068601,0.3253106459196239,0.3258703466911143,0.3267862747149283,0.327343370568237,0.3297879035810938,0.3334853374491371,0.337069273876237,0.3413564740808403,0.3420322339630697,0.3427444995548773,0.3458381281166091,0.3499007842766701,0.352387757532452,0.353848526916551,0.3545123431808984,0.3557531962201223,0.3598260181890075,0.0,2.037314696098668,54.70039810845385,183.16320226075277,258.56249597905065,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,41 -100000,95688,44368,420.2825850681381,5964,61.03168631385336,4678,48.27146559652203,1806,18.48716662486414,77.34192318165195,79.71723324495878,63.32298576779221,65.07494002646662,77.10404331334648,79.48183194253446,63.23382003081405,64.9899218747913,0.2378798683054697,235.4013024243216,0.0891657369781597,85.0181516753139,166.86098,116.79354654627107,174380.0267536159,122056.41203523029,357.15053,230.61080429964088,372642.0031769919,240400.56568393204,356.11896,171.8314684910922,368841.6206838893,177059.20402095915,2668.94692,1227.4312597768044,2756434.9552712985,1250009.5098411555,1105.09154,487.72624889881456,1144134.499623777,499065.9468987344,1771.20112,758.8516003215449,1815221.553381824,760603.4091364297,0.37978,100000,0,758459,7926.364852437087,0,0.0,0,0.0,30493,318.03360922999747,0,0.0,32624,337.6076415015467,1573683,0,56449,0,0,6651,0,0,72,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.05964,0.1570382853230817,0.3028169014084507,0.01806,0.3252589641434263,0.6747410358565737,24.652354506627788,4.410781851831074,0.3221462163317657,0.2400598546387345,0.2167592988456605,0.2210346301838392,11.225391980983984,5.785624265095917,19.40502469903918,12248.165574702663,52.8756386550555,13.398319516380116,16.79904363128717,11.271960933795228,11.406314573592992,0.5583582727661394,0.8032056990204809,0.6808228268082283,0.5650887573964497,0.1073500967117988,0.7155519742143432,0.938095238095238,0.8498583569405099,0.6923076923076923,0.1367521367521367,0.5016002327611289,0.7226173541963016,0.6291161178509532,0.5269230769230769,0.09875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019946741188501,0.0044901227435359,0.0068778721202714,0.00932415138034,0.0114203776961955,0.01367310785771,0.0158228493362967,0.0177774601002726,0.0195817782095199,0.0216558813892529,0.0239415968583703,0.0261239243392002,0.0280791977372075,0.030014837406751,0.0321548387096774,0.03396105440594,0.0364116641632568,0.0383860821906432,0.0404351353037835,0.042507737679634,0.0570888350325923,0.0712168968658701,0.0839841289834991,0.0962999600109443,0.1085784236130897,0.1239680792515134,0.1365103635745837,0.1484223533672795,0.1598392200461814,0.1712574336074196,0.1846883761052404,0.1965728645393297,0.2082952318745917,0.2187917259494363,0.2283226175797076,0.2388994160211872,0.2486825652018578,0.257517929318517,0.2652628234947072,0.2723815632731604,0.2795713855909648,0.2866102666713471,0.2936008997809743,0.2989207339009473,0.3047874861747511,0.3092971639950678,0.3147023086269744,0.3189896623720528,0.3225015884542071,0.3265688994583168,0.3260030760098216,0.3251230847733447,0.3239802399435427,0.3222850204535927,0.3209552221084346,0.3204969324214746,0.3181199987348578,0.3193299392346855,0.3193955348900817,0.3203260152306896,0.3209892722745399,0.3217153934406773,0.3229928153997612,0.3234622616169755,0.3248083070932385,0.3267558702556359,0.3262409330109515,0.3294217313545229,0.3341492412056787,0.3359050445103858,0.3386300873738059,0.3395179194418015,0.3421550094517958,0.3438516836927733,0.3436509416371434,0.3460910151691949,0.3506161707243763,0.3564199245882119,0.3588490770901194,0.3536221060492905,0.0,2.367082119903953,54.14495489424223,172.63390385490186,259.7631490085535,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,42 -100000,95730,45199,427.7238065392249,6259,64.14916953932936,4911,50.61109370103416,1921,19.628120756293743,77.32392886815877,79.69004022073787,63.31606620966248,65.06595475440784,77.08829635762876,79.45687124549889,63.22873486331599,64.98266846349301,0.2356325105300101,233.16897523898209,0.0873313463464953,83.28629091482753,164.95446,115.59127993352756,172311.96072286638,120747.02526711392,358.83747,231.95992866804653,374170.3541209652,241637.0253108124,372.3653,179.4626576661574,384971.1271283819,184355.2259444405,2816.9756,1282.074187805683,2903693.429436958,1300864.423215691,1134.50004,498.1881468512968,1167256.7951530346,502797.0439910835,1881.93494,786.8426800235416,1924437.4804136637,785851.1100533146,0.38505,100000,0,749793,7832.361851039382,0,0.0,0,0.0,30472,317.5911417528465,0,0.0,34043,351.68703645670115,1580950,0,56771,0,0,6790,0,0,69,0.6998850934921133,0,0.0,2,0.0208920923430481,0,0.0,0.06259,0.1625503181405012,0.3069180380252436,0.01921,0.3330279431974347,0.6669720568025653,24.59641438583123,4.302815228288896,0.3145998778252901,0.2443494196701282,0.2180818570555895,0.222968845448992,11.08081012448931,5.751879709901358,20.41982467115586,12458.381163036474,55.41718500971327,14.251914601824812,17.29587285574229,11.84473511347993,12.024662438666224,0.5650580329871716,0.8041666666666667,0.6912621359223301,0.5929038281979458,0.0977168949771689,0.7269108280254777,0.9182692307692308,0.8641025641025641,0.7990867579908676,0.0822510822510822,0.5094391244870041,0.7436224489795918,0.6329004329004329,0.539906103286385,0.1018518518518518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397854690206,0.0044611625384014,0.0070229565429191,0.0093682050031498,0.0115046588273589,0.0136252545824847,0.015812654201415,0.0181387610113609,0.0204275680152133,0.0226272140882563,0.0246573095338179,0.0267767305283476,0.0289715014187605,0.0309322950465065,0.032835605271033,0.0348555952947013,0.036967600265164,0.0389218138603173,0.0412944687665734,0.0435706695005313,0.0585103050804986,0.0725674827369742,0.0862539063319281,0.0994741823535597,0.1120954219002119,0.1281354139116635,0.1406772286893683,0.1518597791478985,0.1631859503690805,0.1738375272056695,0.1873223667212126,0.1996171814170776,0.211367441455937,0.2221335403387162,0.2320660720766295,0.2421544526388058,0.2510014393947847,0.2601998334721065,0.2687570243055161,0.2768033200348512,0.28318522552166,0.2899265489732085,0.2966571834992887,0.3019605960980058,0.3083230932074507,0.3141330898862542,0.3196345315084975,0.3242265151129007,0.3294129851268818,0.3334699218801634,0.3326005152205872,0.3312666198211604,0.3307557712931083,0.3289027886369559,0.3278032377097964,0.3259760748694227,0.3239659482895028,0.324198891403457,0.3244212251587789,0.3253585955898094,0.3262338342909547,0.3276615086658366,0.3278698819392112,0.3283935716041932,0.3287068218993553,0.3300826575578212,0.3316634407377889,0.3358759377166992,0.3390715394384083,0.3435621890547263,0.3480345158197507,0.3504278046447361,0.3513138824122503,0.3546029087032666,0.3539714096374136,0.3539379474940334,0.3536381588941212,0.3537576839183026,0.3534574468085106,0.3540958852397131,0.0,2.660937876380556,54.60332508100669,180.9016559717607,280.99968206574226,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,43 -100000,95793,44817,424.3838276283236,6017,61.55982169887152,4682,48.27075047237272,1841,18.80095622853444,77.4066300966336,79.74542209234697,63.35719594835807,65.08757757874034,77.18441397470299,79.52637328820516,63.27427868812245,65.00850516654971,0.2222161219306144,219.0488041418064,0.082917260235618,79.07241219062655,166.94876,116.83055137958848,174280.75120311504,121961.47044104316,357.24018,231.96813526702405,372345.9960539914,241572.3020126983,366.1095,177.483615603302,378512.72013612685,182376.89367604785,2679.61692,1232.416378695175,2764747.9878487987,1253989.8517586614,1106.87761,494.3752710658996,1141467.5498209682,502065.5695780479,1801.9566,750.9811259877685,1842917.958514714,751962.366489017,0.38093,100000,0,758858,7921.85232741432,0,0.0,0,0.0,30411,316.8603133840677,0,0.0,33437,345.36970342300583,1574447,0,56534,0,0,6512,0,0,75,0.782938210516426,0,0.0,1,0.010439176140219,0,0.0,0.06017,0.1579555298873808,0.3059664284527173,0.01841,0.332435003170577,0.6675649968294229,24.578382706697216,4.360770434645211,0.3334045279794959,0.231524989320803,0.2161469457496796,0.2189235369500213,11.451230476686694,6.0328348909428176,19.451700365404637,12265.62534123378,52.81564632475813,12.981559361736338,17.515800503129775,11.160722982606874,11.157563477285132,0.5645023494233233,0.790590405904059,0.6912235746316464,0.591897233201581,0.1053658536585365,0.7388178913738019,0.9102244389027432,0.8746987951807229,0.7379912663755459,0.1352657004830917,0.5008746355685131,0.7203513909224012,0.62478184991274,0.5491698595146871,0.097799511002445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0048772079252093,0.0070630498980119,0.0088800382024526,0.0109742577882649,0.0129630761084295,0.0154768459044473,0.0178226917776757,0.0200539678645897,0.0223607188177985,0.0243405005431774,0.0264734854703661,0.0287881435193274,0.0307391393864525,0.0327076310933811,0.0346429862150859,0.0364458329884962,0.0384695125743785,0.0406112992706796,0.0424973712429596,0.0566673622704507,0.0707869281045751,0.0841150883077406,0.0964582238570677,0.1088937824653088,0.1243012479790348,0.136975992368435,0.1490952006294256,0.1601510819000469,0.1698388046912654,0.1825302047359304,0.1948492842624227,0.2057740158421435,0.2163268871684556,0.2263344648408748,0.2366042286713209,0.2463477194156351,0.2548810233007744,0.2639862122139828,0.2717118890402023,0.2798413854495428,0.2866841158187469,0.2929849669414645,0.2982552778742411,0.3046778228450684,0.3094812605528784,0.3147135041750648,0.3199964378403134,0.3238913066003523,0.3272568871523423,0.3265369377139315,0.3257887422776868,0.3249619696884331,0.3239233136368233,0.3230938177069421,0.321704833827621,0.3204052007068922,0.3209813985419595,0.3213837118511728,0.3219458577836084,0.3240386945257311,0.3260412780079728,0.3270971635485817,0.3273394087575016,0.3286860198624904,0.3297453943282964,0.330393985642417,0.3353369876666251,0.338275214032157,0.3442474745489564,0.3487239606817567,0.3533088235294118,0.3593633424521263,0.3579081441522439,0.3634438305709024,0.3653333333333333,0.3657758882477984,0.3673956262425447,0.3699153699153699,0.3801904761904762,0.0,2.402119808666173,54.46599991547688,173.64423131479515,255.88034405519505,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,44 -100000,95684,44610,422.0872873207642,6151,62.9676852974374,4824,49.79933949249614,1862,19.062748212867355,77.29491858535671,79.69736864105414,63.29396199958445,65.07414609588713,77.06952625342363,79.47172352266365,63.21014436241264,64.9920109248718,0.2253923319330795,225.64511839048865,0.083817637171812,82.13517101532375,166.83876,116.86117175026276,174364.32423393673,122132.4064109598,360.56994,233.35891572672523,376237.9603695498,243288.85260516405,370.05218,179.2224846458574,382261.74700054346,183940.3393687454,2771.21344,1273.6595829806536,2863324.6519794324,1298220.9177925808,1166.04711,513.0836262299936,1201998.839931441,519582.2564169492,1819.35312,762.7321871615991,1864895.1966891016,769417.7034357998,0.38071,100000,0,758358,7925.651101542578,0,0.0,0,0.0,30775,320.9836545294929,0,0.0,33893,349.70318966598387,1571060,0,56363,0,0,6676,0,0,70,0.7315747669411814,0,0.0,0,0.0,0,0.0,0.06151,0.1615665467153476,0.3027150056901317,0.01862,0.3346761698171676,0.6653238301828324,24.45876276809804,4.319055746758949,0.3246268656716418,0.2415008291873963,0.2166252072968491,0.2172470978441127,11.311818912275935,5.966494210834365,19.778990488242,12342.453996224694,54.54745388301372,14.021665692813794,17.794207628290174,11.333450813152922,11.398129748756824,0.5733830845771144,0.7991416309012875,0.7005108556832694,0.570334928229665,0.1354961832061068,0.7565543071161048,0.9211087420042644,0.8741258741258742,0.7445887445887446,0.1504854368932038,0.5032960733734595,0.7169540229885057,0.635004397537379,0.5208845208845209,0.1318289786223277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0048098876678133,0.0069974102472959,0.0091911951603883,0.0114009996233598,0.0134029129677005,0.0155312461733131,0.0176845589587462,0.0198469533903506,0.0221165961544371,0.0241573148964979,0.0262473932383427,0.0284626466351101,0.0305678656085746,0.0329689612815986,0.0349434844207282,0.0370140097819779,0.0391092192691029,0.0411838135857692,0.0433894418677367,0.057291775470555,0.0716708542713567,0.0850402955003358,0.0982197344331979,0.110414820441406,0.1250965496079821,0.1378805247739141,0.150209748514725,0.1610338821870091,0.1714714875811383,0.1847012312697267,0.197680456984594,0.2093475826529392,0.2201394657456389,0.2304443466783985,0.2406006711037774,0.2505885897278539,0.258651930717027,0.2668332292317302,0.2735257358421336,0.2812123598628741,0.2878516489305658,0.2944324721149975,0.3006717850287908,0.3056747329144232,0.3110337763627164,0.3164744047395383,0.3209004606652923,0.3249417852522639,0.328452048294406,0.3275277725475428,0.3272200241784812,0.3267106614698392,0.3261578886578886,0.3243965837356108,0.3230769230769231,0.3208067738559604,0.3209748722246873,0.3220938578801654,0.3240823474748919,0.3249995307543593,0.3262092461276393,0.3263918045175917,0.3261716999731158,0.326282747796692,0.3295665594182427,0.3310934461855198,0.3351939451277199,0.3383582823810527,0.3401541640178004,0.3433545026728195,0.3471197239182373,0.351184863913508,0.3506572448902059,0.3526261392464531,0.3528922674902007,0.3565243809813155,0.3600810536980749,0.3567934782608695,0.3588876362269823,0.0,2.4383610303705456,58.3187062912034,169.77121427344653,268.7356334933476,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,45 -100000,95722,44690,423.6330206222185,6102,62.58749294832954,4764,49.19454252940808,1884,19.30590668811768,77.3593554540744,79.73078820458012,63.33143217950936,65.08406387368643,77.12510827623473,79.49691207767829,63.24402390991682,64.99892782308576,0.234247177839677,233.87612690183343,0.0874082695925437,85.13605060066709,167.09154,116.98680974258788,174559.18179728798,122215.17492591866,358.91149,233.0643366227297,374408.00442949374,242936.500096874,370.78235,180.02297561248176,383690.2383986962,185234.1940759853,2724.31348,1268.6195768513396,2815071.4778211904,1294319.8186951168,1126.3527,504.264806237893,1163053.7493993023,513163.55303680745,1841.28766,782.8402689020097,1889017.8224441612,789394.4749576224,0.38086,100000,0,759507,7934.50826351309,0,0.0,0,0.0,30653,319.644386870312,0,0.0,33877,350.21207245983163,1569852,0,56292,0,0,6554,0,0,71,0.7417312634504085,0,0.0,0,0.0,0,0.0,0.06102,0.1602163524654729,0.3087512291052114,0.01884,0.3410549381749883,0.6589450618250118,24.242933417536506,4.345940789213842,0.3096137699412258,0.248320738874895,0.2187237615449202,0.2233417296389588,11.336656776159854,5.920054204757719,20.185662757187128,12268.978057922575,54.09208933967195,14.169031404826269,16.625641704886913,11.584589003590237,11.71282722636852,0.552896725440806,0.7776838546069316,0.6894915254237288,0.572936660268714,0.093984962406015,0.7279521674140508,0.9301801801801802,0.8777506112469438,0.7148760330578512,0.1193415637860082,0.4845300642148278,0.6860622462787551,0.6172607879924953,0.53,0.0864799025578562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0047543260312021,0.0069915877703024,0.0093233937965915,0.0115412383189449,0.0136011483604304,0.0156480962332432,0.0178020946042504,0.0195559281143301,0.021703743895822,0.023750192278111,0.025893856756951,0.0281184410881106,0.0303008448382443,0.0321751782636961,0.0342998914560397,0.0363502712552283,0.0384814853230992,0.0404715617885249,0.0423537254820262,0.0569727979950921,0.0711280430368618,0.0841244034195206,0.0978707744072341,0.1099242919504839,0.1251626278545816,0.1379321321703699,0.1493953072435379,0.1603816932562538,0.1704903959652323,0.1836558769018576,0.1963431268538766,0.2082336045955002,0.2186036331801269,0.2283231264043706,0.2383714482177317,0.2481654808841432,0.2573608001530101,0.2659312473755291,0.2734563869888518,0.2802490279577856,0.2863524733949246,0.2933525669827606,0.299384711149417,0.3050026700325258,0.3098612359481389,0.3137127344150726,0.3185030762190471,0.3221644147641973,0.3269405670449603,0.3257786560202175,0.3244695470536499,0.3240892934912406,0.3238554563777713,0.3226881545229666,0.3214645462592717,0.3201109919909188,0.3199587972727719,0.3203146281667121,0.3210399032648126,0.3219609823616333,0.3230289391606459,0.3233806836064541,0.3250723304999215,0.3257823784304285,0.3274666249478515,0.3285539180753114,0.3322419166955262,0.336352148272957,0.3379528806176994,0.3419052387237722,0.3466355338569306,0.3482961370677119,0.3495830174374526,0.3484678624813154,0.3457690949746969,0.3534338358458961,0.3585057240409721,0.3709369024856596,0.3670597185241536,0.0,2.2801953283102177,58.60463471668945,170.71192401748203,260.3787829572005,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,46 -100000,95889,44626,421.3934862184401,6110,62.54106310421425,4765,49.11929418390014,1876,19.167996329088844,77.4394230829848,79.7178194996512,63.39129033748679,65.07643223204443,77.20627130378556,79.48711603230882,63.30630483832068,64.99475895112342,0.2331517791992468,230.70346734238,0.0849854991661089,81.67328092100945,165.70928,116.10486188844686,172813.41968317534,121082.33675233534,358.29694,231.79820350141625,373079.7901740554,241159.1723663663,368.06508,178.4979276783094,379904.3998790268,183111.24701565696,2727.1004,1251.3957197089717,2813475.622855593,1274629.622889172,1107.51351,491.8966827044539,1140847.0627496378,499137.0127452067,1828.11804,755.5069077354811,1870372.597482506,758659.5986347212,0.38034,100000,0,753224,7855.155440144334,0,0.0,0,0.0,30396,316.38665540364383,0,0.0,33747,348.01697796410434,1582831,0,56786,0,0,6648,0,0,79,0.8238692655049068,0,0.0,2,0.0208574497596178,0,0.0,0.0611,0.1606457380238733,0.307037643207856,0.01876,0.328827412763282,0.671172587236718,24.57664267901398,4.375204262534156,0.3202518363064008,0.2438614900314795,0.2209863588667366,0.214900314795383,11.316304197508284,5.830373118151766,19.898618336880684,12262.461248318132,54.0448077222059,13.90356664955851,17.250880254414948,11.822534300018267,11.067826518214186,0.566211962224554,0.7788296041308089,0.7110091743119266,0.5679012345679012,0.107421875,0.7530959752321982,0.902097902097902,0.8571428571428571,0.7715355805243446,0.1684210526315789,0.4966887417218543,0.7066848567530696,0.6580357142857143,0.4987277353689567,0.0935251798561151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023891476007288,0.0044590376585998,0.0068574442832651,0.0090568489882118,0.0114649293097665,0.0137563338149406,0.0159714795008912,0.0182986536107711,0.0205140778881124,0.0226273041592503,0.0247341134039631,0.0269538183721001,0.0291016708798322,0.0312319855060528,0.0332377987174993,0.0350147142340853,0.0371719136345296,0.0390939892861953,0.0411627303399948,0.0432864855867758,0.0578823382254836,0.0716666492524057,0.0843751963309668,0.0974183455994288,0.1096233604917998,0.1253536590515603,0.137113685949713,0.1485581929067766,0.1605658124760158,0.1709934937077305,0.1845211222186391,0.1969556198954237,0.2082740493749389,0.2181798317491532,0.2283126106219012,0.2385836791147994,0.2478547707669333,0.2570645581562514,0.2657598477812762,0.2726410350187437,0.2800161625490648,0.2861728078058801,0.2926108840000945,0.2973192915270464,0.3032204047954181,0.3086146194943004,0.3136892111513939,0.3185195534274065,0.32292501357045,0.3265448513730549,0.3249677384665018,0.3242857338989799,0.3231301121511089,0.3225485244245616,0.3215562378557973,0.3191339714381823,0.3176695591698674,0.3175050367725344,0.3183212873312423,0.3199743735763098,0.3202078155076716,0.3213194266448471,0.3232922498433256,0.3242804033748135,0.3255636041980444,0.3265671641791045,0.327883690671494,0.3316695782380833,0.3336349714603926,0.3369976359338061,0.3390160079587591,0.3441912114642271,0.345821325648415,0.3515589353612167,0.353789592760181,0.3549268988470224,0.3545398394070413,0.3526165167620605,0.3537396121883656,0.3532526475037821,0.0,2.1917810629967427,56.59409343470889,180.5861293583499,255.17998142083536,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,47 -100000,95745,44723,423.9803645098961,6010,61.55935035772103,4768,49.2976134523996,1883,19.33260222465925,77.34647984393533,79.6964650047656,63.33814763576003,65.07426774527191,77.10856861022717,79.4593739364003,63.24949850221349,64.98796436211275,0.2379112337081608,237.09106836530225,0.0886491335465393,86.3033831591622,166.05534,116.3136121126456,173434.99921666927,121482.70104198193,357.49834,232.00300263271737,372898.4072275314,241825.93621882852,367.92912,178.61279544881708,380507.5251971383,183708.9774791833,2706.2526,1251.1672689883617,2799632.8998903334,1279882.17555837,1109.37762,492.2147695539799,1145902.7416575276,501312.5798255575,1829.43512,774.5786555936209,1880058.2589169147,783152.720381913,0.38088,100000,0,754797,7883.409055303148,0,0.0,0,0.0,30488,317.9173847198287,0,0.0,33677,348.007728863126,1575831,0,56588,0,0,6508,0,0,61,0.6371089874144864,0,0.0,0,0.0,0,0.0,0.0601,0.1577924805713085,0.3133111480865224,0.01883,0.3316415543219667,0.6683584456780333,24.135307264387404,4.30226584765036,0.3303271812080537,0.2388842281879194,0.2195889261744966,0.2111996644295302,11.4027240543369,6.2213541135381005,20.174321370084808,12267.3053387057,54.38381015971639,13.726187960358816,17.899843829142345,11.719199913629888,11.038578456585348,0.5776006711409396,0.797190517998244,0.7066666666666667,0.5998089780324737,0.1042701092353525,0.7298720842738902,0.9221698113207548,0.8534278959810875,0.75390625,0.1106194690265486,0.5187554521663275,0.7230769230769231,0.6527777777777778,0.549936788874842,0.1024327784891165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0047136818416811,0.0069006809348393,0.0090713313423132,0.0109829763866007,0.0129398110441439,0.0150764525993883,0.0171567376682758,0.019339473173125,0.0216129329497404,0.0239239844606853,0.0260505409233674,0.0281907346863241,0.0301469755178131,0.0322211217036028,0.0342838833707145,0.036257467361032,0.0384691199203228,0.0406120391255989,0.0423384576927884,0.0567184123437973,0.0707393142713609,0.0838342827767811,0.0967613038906414,0.1088595316667896,0.1244502241393893,0.1372305668703326,0.1490788339346722,0.1608801486131574,0.1710127219917901,0.1831854786615563,0.1966518146818358,0.2081535501961764,0.2183705808425769,0.2279737498763342,0.2382322986317141,0.247240002676361,0.2560763010201212,0.2650873072602879,0.2731926882902694,0.2803049584673407,0.2877726448745687,0.2944351717035406,0.2999328553272103,0.3056962717300193,0.3106348913110413,0.31504004004004,0.3191841515583622,0.3227483727081766,0.3267107001321004,0.3260274711202771,0.3262554908359841,0.325046157315406,0.3236221155514429,0.3230593098116181,0.3210650561039916,0.3200145583441466,0.321420370674102,0.3219632237336797,0.3221125528762918,0.3231382978723404,0.3241476038086207,0.3259433269710762,0.3263127266216035,0.3276886440718736,0.3287316652286454,0.329619472060336,0.3335534383548721,0.3351482366165519,0.3371936225906242,0.3378199571109184,0.3400404556584691,0.3447690857681432,0.3460892147876566,0.34960808386061,0.350095328884652,0.3467729572282692,0.3409508263619669,0.3379252178802361,0.3361012257809411,0.0,1.9489693832904968,58.68788879491219,177.49097266602126,256.208061535648,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,48 -100000,95745,44777,423.1343673298867,6237,64.14956394589795,4918,50.83294166797221,1895,19.489268369105435,77.41222784566315,79.76819205107951,63.350809200748486,65.0896735345523,77.17823662783996,79.53390626656008,63.26504655211604,65.00630599798063,0.2339912178231884,234.28578451942883,0.0857626486324463,83.36753657167151,167.0394,116.96857154672269,174462.56201368218,122166.57018668028,360.98919,232.5782527772854,376504.2560969241,242388.78796568653,369.18815,177.7402651526701,381964.9172280537,182930.84837150451,2806.26492,1273.0064421347267,2901728.508016085,1300448.582081745,1183.57495,516.6041019681725,1225046.1851793828,528434.5103850568,1860.83844,767.376113474592,1914273.288422372,775393.0633763038,0.38136,100000,0,759270,7930.116455167371,0,0.0,0,0.0,30759,320.7060420909708,0,0.0,33844,349.85638936759096,1573453,0,56396,0,0,6483,0,0,55,0.5744425296360123,0,0.0,0,0.0,0,0.0,0.06237,0.1635462555066079,0.3038319704986371,0.01895,0.3305772469759608,0.6694227530240392,24.74506687662396,4.402919289339173,0.3163887759251728,0.2482716551443676,0.211468076453843,0.2238714924766165,11.162894534454711,5.680391729781142,19.95670424964031,12345.122887569392,55.35663330623366,14.464613339408482,17.435303148519086,11.497901313631017,11.958815504675082,0.5662871085807238,0.7813267813267813,0.7005141388174807,0.5711538461538461,0.1335149863760218,0.7476340694006309,0.914691943127962,0.8779220779220779,0.7330677290836654,0.1904761904761904,0.5032876712328768,0.7108886107634543,0.6421861656703672,0.5196451204055766,0.1200897867564534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025521571804739,0.0047230527542694,0.0072738708761108,0.0094747745552035,0.0116613629662765,0.0142413600040718,0.0164400595225961,0.0185912676142567,0.0206538512636559,0.0228761514841351,0.0248831679921292,0.0271108145562798,0.0296388440542402,0.0318321782025272,0.0338967310549777,0.0357652312335903,0.0377745332546363,0.0395600975255485,0.0417216821749753,0.0436059835826492,0.0584016286474917,0.0723979533112201,0.0861629480441829,0.0988691947614789,0.1110513210095382,0.1271164917033525,0.1396748243584573,0.1515177326107556,0.1626773807488459,0.1731301641807061,0.1863553557761752,0.1982828621850741,0.2089795918367347,0.219416349227199,0.2288493099384286,0.2393225903046569,0.2486282310606483,0.25735683315502,0.2659059945504087,0.2732097010819732,0.2809623600514061,0.2876132082094966,0.2945575011831519,0.2994587085648592,0.3055457778533021,0.3107871863688967,0.3149173341997726,0.3196734838963578,0.324475091035872,0.3280109429048677,0.3270997947493393,0.3263476747214189,0.3259100221717044,0.3253206281577016,0.3233282618650202,0.3217378071977478,0.3192081949929977,0.3191871085594989,0.3196644762535445,0.3206258537191109,0.3222096074745482,0.3234918827663375,0.3246541903986981,0.3257562277580071,0.3260089042079563,0.3282498184458969,0.3294030950626381,0.3307305493956335,0.3352520495377638,0.3388663808362506,0.3425925925925926,0.3464297015082797,0.3479238214174212,0.3513574660633484,0.3561554875220336,0.3573104904951889,0.3550233468895918,0.3557328015952143,0.3559183673469387,0.3552182163187856,0.0,2.064871028058356,55.73030979736379,185.21976276120955,271.86998320059126,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,49 -100000,95725,44928,423.6824236092975,6154,63.09741446852965,4832,49.85113606685819,1885,19.294855053538782,77.32373385663094,79.69333187501464,63.321321634088775,65.07507599605206,77.08500365678022,79.45596710649026,63.23247296226375,64.98909685016054,0.2387301998507212,237.3647685243725,0.0888486718250263,85.97914589152822,165.95634,116.25889036935774,173367.81405066597,121450.91707428337,361.11406,234.4304635490559,376614.9386262732,244273.75664565773,370.74726,179.735740674616,382920.2402716114,184363.8562574777,2772.56264,1277.7680647334407,2863548.581875163,1302062.6159807856,1133.88224,504.7914705391183,1169664.068947506,512516.9472441584,1849.7745,788.6784347912463,1896328.231914338,793974.4641445182,0.38237,100000,0,754347,7880.355184121181,0,0.0,0,0.0,30773,320.8148341603552,0,0.0,33961,350.39958213632804,1574234,0,56523,0,0,6502,0,0,63,0.6581352833638026,0,0.0,1,0.0104465917994254,0,0.0,0.06154,0.1609435886706593,0.3063048423789405,0.01885,0.3218657988532465,0.6781342011467535,24.16626197442602,4.354073042124193,0.3168460264900662,0.2338576158940397,0.2259933774834437,0.2233029801324503,10.928126710604076,5.585042323787821,20.451771058942377,12347.006756253591,55.09790691607724,13.664493435729456,17.49823513075338,11.97621710998113,11.958961239613268,0.5581539735099338,0.7991150442477876,0.6890920966688439,0.576007326007326,0.1019462465245597,0.7267175572519083,0.9285714285714286,0.8607888631090487,0.7345132743362832,0.1072961373390558,0.4954571266325951,0.7225352112676057,0.6218181818181818,0.5346420323325635,0.1004728132387706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113475177304,0.0051314815378218,0.0074299634591961,0.0099384183891226,0.0121683216669379,0.0143018671882162,0.0163178721494717,0.0184960117655469,0.0208808401419324,0.0232577192892621,0.0255050764024202,0.0277706456880526,0.0301527699192428,0.0323880381690402,0.0345368592721042,0.0364615639085307,0.0385376210450002,0.0407009316705745,0.0427228680155544,0.0448667854500745,0.0591373711851488,0.0723921757422893,0.0858833279133928,0.0982159762691183,0.1108381137168888,0.1264591439688716,0.1386516734737177,0.1501351322593688,0.1609048092018839,0.1703802191675066,0.1832100520042637,0.1957097887346797,0.2076614437787467,0.2182340979161655,0.2278237338848066,0.2386509588555737,0.2481353059882042,0.2572060838893756,0.2652873823829498,0.2727553542009884,0.2799186531550789,0.287516794205269,0.2937804359131956,0.2996382973626847,0.3055309331552425,0.311045114542385,0.3159554893542451,0.3205954260683543,0.3252301309477505,0.3291832800823849,0.3285904846598488,0.3279377324700372,0.3273058098368055,0.3259616498667593,0.3251548356360171,0.322755299242308,0.3210712928960365,0.321111457598188,0.3220599276499897,0.3215693971131372,0.3222057693389065,0.3232529142834524,0.3233631108775617,0.325181728439379,0.325481488632524,0.3265818809860261,0.3267386262776648,0.3301618409407004,0.3349802371541502,0.3364515871112177,0.3409924784443221,0.3460796915167095,0.3525608519269776,0.3563703305975301,0.3586025049439683,0.3619580752739399,0.3641205112598904,0.3702582728006456,0.3681768558951965,0.3747602608362102,0.0,2.4370768317520985,57.24090731279132,183.77261180177197,261.6861238842337,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,50 -100000,95773,44928,425.2868762594886,5988,61.2385536633498,4673,48.12421037244317,1867,19.08679899345327,77.38153749659537,79.72236278611942,63.350937847410606,65.08258817664793,77.14732254682613,79.49128681224286,63.26276957246847,64.99843828656316,0.2342149497692389,231.07597387655687,0.0881682749421344,84.14989008477392,166.21484,116.42584914383968,173550.83374228646,121564.37528723093,358.58707,232.61495893514,373783.3314190848,242251.3640954549,364.81747,176.41915535280026,376643.0517995677,180911.4632657985,2688.78416,1234.2555249823415,2772027.899303561,1253302.7523230363,1115.33474,490.3170372999423,1147042.7677946812,494439.5260667852,1840.49894,779.2170138928007,1883657.126747622,779729.220592726,0.38232,100000,0,755522,7888.67426101302,0,0.0,0,0.0,30605,318.8894573627223,0,0.0,33258,342.92545915863553,1575713,0,56555,0,0,6631,0,0,63,0.6578054357699978,0,0.0,0,0.0,0,0.0,0.05988,0.1566227244193345,0.3117902471609886,0.01867,0.3297804645243398,0.6702195354756602,24.38843576330277,4.339562884357195,0.3175690134817034,0.2341108495613096,0.2184891932377487,0.2298309437192381,10.988260916164894,5.566390364783425,19.8880656066358,12292.703203120303,52.84470074688565,12.988793019309387,16.750488889704204,11.37338801248498,11.732030825387076,0.5518938583351166,0.783363802559415,0.694743935309973,0.5514201762977473,0.1191806331471136,0.7174629324546952,0.8968253968253969,0.8634020618556701,0.7391304347826086,0.1238532110091743,0.4937843307314252,0.723463687150838,0.635036496350365,0.4968394437420986,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281188600133,0.0042268939931477,0.006726593888235,0.0089779917329352,0.0109400736116477,0.0130907906389649,0.0153606229869123,0.0172894191612488,0.0194874205481411,0.0216403708023819,0.0236511758979351,0.0259079058118289,0.02799769684756,0.0298905489029149,0.0320481082642241,0.0342212394866814,0.0363847093155618,0.03862500777476,0.0405464367338458,0.0427824746990962,0.0578259689841581,0.0727531350995178,0.086323845468365,0.0988724609354476,0.1104846613482838,0.1263092256148472,0.1385146951277676,0.1500281768014545,0.1612414352494183,0.1711654731786801,0.1853394912207042,0.1978950328833506,0.2094370590984684,0.2194498180268205,0.228501336618959,0.2387922539499762,0.2480484432152734,0.2571052749921302,0.2655975320683671,0.2732786341217801,0.2808322153860387,0.2876015666101595,0.2944913750266202,0.2998933914689218,0.3055491483860003,0.3111234225915666,0.3154876433693995,0.3200061021344758,0.3241058146303602,0.3279907207254705,0.3262270165574939,0.3244394957867678,0.323251950099969,0.3225615393505143,0.3224617761994621,0.3208809035536102,0.3187817098421027,0.31947490751956,0.3201170744988599,0.3210263162577178,0.322200833535799,0.323347270432313,0.3239121338912133,0.3253607786105828,0.3269036994386066,0.3279644037365668,0.3291196773002301,0.3325198673424692,0.3359958144401814,0.3374141063107179,0.3387279568430119,0.3427481320544751,0.3458632414053645,0.3451826989091464,0.349005936116084,0.3547433167731251,0.3580134064594759,0.3604275917708753,0.3658469190384084,0.3657230298393267,0.0,2.6582031798313825,52.547941997288135,180.18542988939265,254.4097059013813,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,51 -100000,95859,44941,425.3226092490012,6104,62.49804400212813,4752,49.019914666332845,1865,19.111403206793312,77.37299817448195,79.67363866449367,63.35320242165369,65.05661650007617,77.14079904988905,79.44342816556767,63.26788054748088,64.9746317731283,0.2321991245928956,230.2104989259988,0.0853218741728127,81.98472694787995,164.41964,115.25810141100756,171522.38183164858,120237.12057397592,360.57281,233.7700915352739,375600.8095223192,243321.12884914436,368.57878,178.21953386017702,381112.0708540669,183322.3650601512,2730.9492,1242.481649373393,2817947.8609207277,1265224.1350915667,1143.26155,497.25915080636673,1180841.2981566675,506959.535600172,1832.14668,759.2518798534495,1879372.4324267933,763655.8800782147,0.38236,100000,0,747362,7796.471901438572,0,0.0,0,0.0,30691,319.5839722926382,0,0.0,33651,347.61472579517834,1583169,0,56807,0,0,6621,0,0,78,0.8136951146997152,0,0.0,0,0.0,0,0.0,0.06104,0.1596401297206821,0.3055373525557012,0.01865,0.3276184538653366,0.6723815461346634,24.661682413612755,4.251399471873652,0.3188131313131313,0.2462121212121212,0.2066498316498316,0.2283249158249158,10.958331772086654,5.662367537184647,19.66183668976645,12326.348936506003,53.68107374818111,13.924515520115689,17.11617672423457,10.87146810694889,11.768913396881969,0.5660774410774411,0.7666666666666667,0.7089108910891089,0.6059063136456212,0.1142857142857142,0.7452282157676349,0.9113300492610836,0.8837837837837837,0.7777777777777778,0.1549295774647887,0.5052156752184945,0.6897905759162304,0.6524017467248908,0.5574412532637075,0.1043577981651376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0046216060080878,0.0070600407778217,0.0093109680563734,0.0115588719679564,0.0138029315960912,0.0157777256836504,0.0178999683637959,0.0199756817787041,0.0219984856856365,0.0243327698376107,0.0265628366524054,0.0286418991829813,0.0306941699604743,0.0329161684054265,0.0348627074362072,0.0369033085724927,0.0388062794673851,0.040790047560697,0.0426468293190448,0.0576409743076409,0.0720809212313736,0.0860920214549111,0.098458436594279,0.110589226475699,0.1264775788306132,0.1398340556750628,0.1512928468146636,0.1620787926010524,0.1712849856414212,0.1832074212780611,0.1959012495135976,0.2074561165154067,0.2180311379340505,0.2280360051058585,0.2379132746303372,0.2476431671371035,0.2572058591904237,0.2656790571580893,0.2739887569696484,0.2810707678075855,0.2876826087465057,0.2939979172583546,0.3004730822204922,0.3061843782241913,0.3115155843995911,0.3159179076461019,0.3195350552566988,0.3246534743163317,0.3288112331081081,0.3275785447836568,0.3261764179638576,0.3260305644842948,0.3261369387607548,0.3257413680394604,0.3236617390505922,0.3221988385524629,0.3225536660161695,0.3225789940626493,0.3239471805852962,0.324727320349479,0.3249175862137033,0.3250203987697972,0.3260855021074463,0.3265188735769922,0.3282204601585857,0.3297793488796396,0.3342034911149552,0.335533476108556,0.3411592366774883,0.3434471515261298,0.3466116489446119,0.3494687873263343,0.3479289038065451,0.349811320754717,0.3495042492917847,0.358195211786372,0.3593589480172591,0.3653363103544516,0.3670110983543819,0.0,2.108561416980097,52.74698200804079,185.6713011219248,260.3793186567946,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,52 -100000,95791,44453,421.2086730486163,6027,61.81165245169171,4700,48.48054618909919,1892,19.29200029230304,77.39816222968327,79.72562183552613,63.35848721039546,65.0787403211537,77.16289652296699,79.49566798085318,63.27111173690012,64.99638323780583,0.2352657067162766,229.95385467294227,0.0873754734953422,82.35708334787262,166.11364,116.29789541032304,173412.57529412993,121407.95629059416,356.56505,231.21346148276564,371652.62916140346,240793.1658326624,364.37854,175.81131150712866,376875.7190132685,180868.06390084288,2695.18824,1239.209407499614,2782273.616519297,1262319.933500657,1141.54001,505.56106758764327,1179025.0858640166,515101.6041043974,1853.82342,774.4359758943236,1893294.69365598,773166.7652179964,0.37805,100000,0,755062,7882.389786096815,0,0.0,0,0.0,30476,317.5559290538777,0,0.0,33379,344.95933855999,1578526,0,56616,0,0,6460,0,0,60,0.6263636458539946,0,0.0,1,0.0104393940975665,0,0.0,0.06027,0.1594233566988493,0.3139206902273104,0.01892,0.3311790668348045,0.6688209331651954,24.35506745383531,4.397195430832933,0.3182978723404255,0.2395744680851063,0.2197872340425531,0.2223404255319148,11.371676089849116,5.796570717982993,20.03056693157384,12120.36857935043,53.48043068046155,13.39740440862314,17.043522862900836,11.562763588037384,11.47673982090018,0.5606382978723404,0.7904085257548845,0.6931818181818182,0.5682478218780251,0.1157894736842105,0.7207425343018563,0.9230769230769232,0.855036855036855,0.7111111111111111,0.1608695652173913,0.5033227390927477,0.7236315086782377,0.6326905417814509,0.5284653465346535,0.1030674846625766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381560025115,0.004428814658667,0.0061173558414154,0.0082053781785685,0.0103085447059421,0.0123964418751399,0.0146532837417842,0.016936701628372,0.0189008878308932,0.0211581747493349,0.0232458072513805,0.0256744415141968,0.0277680718557951,0.0296621072240919,0.0317944699890719,0.0337619416473018,0.0358764806289763,0.0379717959352965,0.0398852700933219,0.0417907650011455,0.0563903497787795,0.0696370672523794,0.0828388097884208,0.0955574006537252,0.1073100278316606,0.1230364278314552,0.1350769459204344,0.1466272227129069,0.1575316131237183,0.1681553522984376,0.1805669237065437,0.1925198468493802,0.2043785310734463,0.214853010258147,0.2247354017606911,0.2353149445126741,0.2445475224120244,0.2529010929699096,0.2616881791166663,0.2693567224677674,0.2766518295855252,0.283284430052722,0.2898449520653332,0.295755745680255,0.3012927110517691,0.3062840117209623,0.311576447055882,0.3164482964582089,0.3205187946567256,0.3254777322062062,0.3251033238647837,0.3242035501656836,0.322959061527412,0.3230849175074698,0.3216323989386145,0.3195851091456242,0.3175879555759174,0.3175578271410785,0.3181383759429293,0.3186429195414594,0.3196574164111003,0.3197137717685663,0.3203273815753668,0.3208695652173913,0.3218960112937573,0.3246263807667316,0.3256511891279728,0.3271568290472768,0.3301535354942032,0.3334776789229194,0.3373395618848927,0.3411733754275191,0.3425943191000062,0.346897176506115,0.3488936607226216,0.3524804177545692,0.357685297691373,0.3565938511326861,0.3587555066079295,0.3657424990505127,0.0,2.311655187920772,54.25929476662135,182.8957258781303,253.7006454108017,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,53 -100000,95868,44634,423.5302707890016,5931,60.63545708682773,4661,47.94091876329954,1818,18.494179496808112,77.3584022892406,79.6409269305436,63.35300198276878,65.04188266940841,77.1330586377663,79.42039504029196,63.26920855958655,64.9626452371515,0.2253436514743043,220.53189025163533,0.0837934231822359,79.23743225690316,167.35246,117.30067800610244,174565.27725622733,122356.21688791097,362.05271,235.1357497067016,377003.2336128844,244616.03424156303,371.50919,179.66740319435888,383352.6724245838,184178.6203274758,2663.30452,1233.542246273862,2742458.839237285,1251072.4811969188,1130.77927,505.0445918072929,1164108.1382734594,511403.7132382997,1783.41748,754.1378542798274,1817127.070555347,749856.0340817462,0.37896,100000,0,760693,7934.785329828514,0,0.0,0,0.0,30819,320.7743981307632,0,0.0,33930,349.7934660157717,1566309,0,56190,0,0,6550,0,0,76,0.7823256978345225,0,0.0,1,0.0104310093044603,0,0.0,0.05931,0.1565072830905636,0.306525037936267,0.01818,0.3372410470531556,0.6627589529468444,24.434266200876024,4.303488635783385,0.3151684187942501,0.2458699849817635,0.2188371594078524,0.2201244368161339,11.416951641926849,6.0054376185140566,19.439648699887776,12142.817065564186,53.15301413270672,13.6718991278016,16.604872358733637,11.423133915137264,11.4531087310342,0.5745548165629694,0.7905759162303665,0.7052416609938734,0.5950980392156863,0.1257309941520467,0.732751784298176,0.9265402843601896,0.8798882681564246,0.7611336032388664,0.1282051282051282,0.5158823529411765,0.7113259668508287,0.648964896489649,0.5420439844760673,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021261731919934,0.00427597247976,0.0062886064650931,0.008417183644874,0.0106729009961374,0.012711303799143,0.014752027384979,0.0167168137079912,0.0189906374115557,0.021008188593218,0.0231453519915648,0.0252916692296651,0.0274114698874373,0.0290598993961712,0.0310699821721163,0.0330800363426117,0.0352221946375372,0.0372063136730611,0.0394105551747772,0.041240974635344,0.0555225436538962,0.0696748714948389,0.0827800699520388,0.0958136018564213,0.1075333375466093,0.1228081294629653,0.1358222241061399,0.1486735073634962,0.1595879810001601,0.1710098941974766,0.1833941704084159,0.1956519387810286,0.2072612641991412,0.2176303421138922,0.2275810512197535,0.2380025007469045,0.2471479073502024,0.2559023249539056,0.2638928275689962,0.2715516253923163,0.2786352276934469,0.2852748538011695,0.2912748975676764,0.2968075410150628,0.3026438947304443,0.3074921057825143,0.3124060338779192,0.3163661846212652,0.3210962743800366,0.3249318981248842,0.3230926917423026,0.3222695269981675,0.3205064933233689,0.3190806127319804,0.318794442295677,0.3164972323167272,0.3151620829040183,0.3143646136397258,0.3154329119121345,0.3166729165550615,0.3167559869579882,0.3179059330578676,0.3194767624677693,0.3205472103004292,0.3218692128237812,0.32232070910556,0.3234759388671098,0.3259590712810564,0.3285030901916966,0.3316207564320436,0.334589367594316,0.3370087048272224,0.3424425179042593,0.3443865829376627,0.3493416690347636,0.3512381863859313,0.3492800743149094,0.3519156699777012,0.3605032822757111,0.3663141993957703,0.0,2.648297434127802,54.75905560777238,179.51945359142655,249.93592777553243,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,54 -100000,95735,44649,422.9801013213559,6085,62.38052958688045,4788,49.459445343918105,1819,18.666109573301306,77.38965647392791,79.75752404796032,63.34469261111818,65.09421570219138,77.16851619210559,79.53700314459864,63.26286534005518,65.01492743106282,0.2211402818223291,220.520903361674,0.0818272710630054,79.2882711285614,167.51284,117.32840805079918,174975.54708309396,122555.39567639754,362.31812,234.36542576103977,377895.64944899984,244242.73007827983,371.90229,179.51205959768825,384946.2161174074,184755.2924343449,2722.08908,1243.2226088311577,2814763.085600877,1270019.6104264956,1115.83021,489.8785817796645,1153926.0563012485,500101.08491903485,1771.11412,739.1133021059926,1819800.9296495533,746628.3560788523,0.37973,100000,0,761422,7953.433958322453,0,0.0,0,0.0,30870,321.8572100067896,0,0.0,34028,351.98203373896695,1568817,0,56294,0,0,6613,0,0,66,0.6789575390400585,0,0.0,0,0.0,0,0.0,0.06085,0.1602454375477313,0.2989317995069844,0.01819,0.3412448915435397,0.6587551084564602,24.514519741340106,4.308276564951047,0.3310359231411863,0.2424812030075188,0.2203425229741019,0.2061403508771929,11.28668640957562,5.932997783790805,19.290148114177907,12217.777201642755,54.25675350930613,13.93502656022164,17.908547316355538,11.682493134855182,10.730686497873776,0.570593149540518,0.7803617571059431,0.6914826498422713,0.5971563981042654,0.1013171225937183,0.7384855581576893,0.9207459207459208,0.8762376237623762,0.7372881355932204,0.1084905660377358,0.5092671799258626,0.6980874316939891,0.628281117696867,0.5567765567765568,0.0993548387096774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024511789968398,0.004450391816956,0.0065557799449963,0.0086961822134628,0.0107723763312887,0.0130442751822736,0.0153546558456785,0.0174355100499178,0.0194414915365115,0.0215573275464977,0.0236884724984112,0.0258194996252836,0.0276741197635569,0.0297585336971631,0.0320461249664789,0.0344350054773568,0.036665424121935,0.0387173076324553,0.0405749503725952,0.0425314661998833,0.0568913853767527,0.070880564365037,0.0842103054276091,0.0970742022703601,0.1092568173426868,0.1252987837123215,0.1378951835349034,0.1493668191976162,0.1600687732937495,0.170870329858877,0.1840351424972275,0.1967917099342333,0.2083668543845535,0.2196868644901707,0.2291503943851002,0.2392604074402125,0.2492585241843766,0.2586596258637155,0.2665820230578259,0.2734333890045528,0.280754690805674,0.2881248977493164,0.2939174417093088,0.299351317710702,0.3039352497906782,0.3084405590100351,0.3126070807748584,0.3162706132153437,0.3205675410005691,0.3246256853648249,0.3232905810545562,0.3220858474098712,0.3208629855700262,0.3194506556643922,0.3185575868914634,0.3170657219643293,0.3155860545827417,0.3165462923624955,0.317759864234196,0.3186310168018026,0.3198296226029053,0.3217952997074588,0.3222686716166469,0.3222977173816502,0.3218132747378729,0.3237100577914841,0.3235552283602798,0.3248481432776003,0.326271186440678,0.3290345621205507,0.3299594218757124,0.3308980375426621,0.3353044791142426,0.3394564480915455,0.3423973362930078,0.3456054230949041,0.3462118925445215,0.3563035251941844,0.3528776006484734,0.3561436672967863,0.0,2.16087872421978,56.4020150941538,180.87169482031155,258.81349223831666,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,55 -100000,95765,44671,422.0539863206809,6104,62.48629457526236,4791,49.48572025270192,1902,19.44342922779721,77.34687979821054,79.70427359718612,63.33382307926016,65.08061353052616,77.11000995878979,79.47051756272823,63.24584559857456,64.99643323000379,0.2368698394207484,233.7560344578833,0.0879774806855948,84.18030052237668,166.59632,116.72809797582173,173963.6819297238,121890.14564383827,360.14689,233.2333014208547,375532.04197775805,243005.97443831744,371.51604,179.55865372741488,384670.61034824833,184933.2168115785,2733.2498,1264.3847119262773,2824849.2037800867,1291026.7341160944,1117.42543,496.47038976180966,1152389.766616196,503974.3327539385,1851.25254,776.7368648048283,1894694.575262361,778772.7391844871,0.3809,100000,0,757256,7907.440087714718,0,0.0,0,0.0,30673,319.7305905080144,0,0.0,34017,351.9866339476844,1573872,0,56577,0,0,6675,0,0,76,0.7831671278650864,0,0.0,0,0.0,0,0.0,0.06104,0.160252034654765,0.3115989515072084,0.01902,0.3415129728040012,0.6584870271959987,24.552236762973862,4.236687385556255,0.3243581715716969,0.2421206428720517,0.2231266958881235,0.2103944896681277,11.243915358076716,6.087617306285184,20.33559332728064,12326.975503692733,54.64713402808114,13.941522581174963,17.666531813277025,12.03998079179946,10.999098841829683,0.5689835107493216,0.7767241379310345,0.7014157014157014,0.5837231057062675,0.1101190476190476,0.7541478129713424,0.9223529411764706,0.8671171171171171,0.7300380228136882,0.1597938144329896,0.4981240981240981,0.6925170068027211,0.6351351351351351,0.5359801488833746,0.0982800982800982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584046045964,0.004583620654687,0.0071776649746192,0.009339715641737,0.0115874501505656,0.01381845583593,0.0162911611785095,0.0183952633728052,0.0206804195375273,0.0228836466396363,0.0253032182658888,0.0274660396537738,0.0293288908084983,0.0312435617454365,0.033356038557599,0.0354776352378097,0.0375486703669952,0.0395352456040251,0.0416432774070147,0.0434764498224494,0.0573554892177942,0.0710086407096679,0.0847942792433838,0.0975614883329829,0.1103077571669477,0.1261425959780621,0.1391306191238353,0.1512806064407752,0.1623515857522322,0.1731916580083334,0.1862716623100009,0.1985929039997406,0.209588579747303,0.2200331993709592,0.230049217788715,0.2401996038902842,0.2498912934408134,0.2584594284686467,0.2669473254204207,0.2738517924636353,0.2806664352655328,0.2873337310918471,0.2940410675187881,0.299337097373563,0.3049610953982107,0.3098038733174201,0.3139758855313188,0.3197045399646567,0.3246978441471052,0.328149300155521,0.3271861506799564,0.3257080759866294,0.3248381649310441,0.3238715077349341,0.3231483817353495,0.32139305005126,0.3193556554212292,0.319705104838842,0.321039324882982,0.3213106562204415,0.3222494895187426,0.3225372721161071,0.3244002095337873,0.3252445658257035,0.3253757949508576,0.3257024750143896,0.3275127890028864,0.3298158036081008,0.3321957569573937,0.3342628371111023,0.3387680329745821,0.3390633315593401,0.3413832342900493,0.3445070851744629,0.3468796711509716,0.3499822464196946,0.3520954420312022,0.3503067484662576,0.3575842696629213,0.3517268757443429,0.0,2.1451258533626616,58.366730961661965,178.27343670678428,259.3649476310909,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,56 -100000,95756,44862,424.9655374075776,5983,61.37474414135929,4710,48.63402815489369,1871,19.205062868123147,77.36211040614715,79.72417688247438,63.32787542470121,65.07558491473341,77.13679912562293,79.49909079502734,63.2447380409188,64.99468382482699,0.2253112805242239,225.08608744703903,0.0831373837824074,80.90108990641909,166.94326,116.90481731918382,174342.34930448222,122086.15368142344,360.38596,233.1929320908025,375804.0018380049,242975.71224964887,369.55872,178.61252790696702,382191.85220769455,183666.2499766743,2704.722,1245.449386832232,2793368.4782154644,1269526.4624507558,1143.33939,504.8076106217516,1180134.3101215588,513563.4129705711,1828.53044,763.0521173119904,1877565.270061406,770482.3237243139,0.38067,100000,0,758833,7924.652241112828,0,0.0,0,0.0,30690,319.90684656836123,0,0.0,33859,349.8788587660303,1570835,0,56443,0,0,6635,0,0,62,0.6474790091482518,0,0.0,0,0.0,0,0.0,0.05983,0.1571702524496283,0.3127193715527327,0.01871,0.3330143540669856,0.6669856459330143,24.446498979961053,4.405245987960136,0.3167728237791932,0.2358811040339702,0.227176220806794,0.2201698513800424,11.283599634141408,5.839540809819404,19.74360190944036,12253.148865745425,53.35745816557901,13.351365123766598,16.87220159857543,11.74844854154623,11.385442901690745,0.5673036093418259,0.801980198019802,0.7097855227882037,0.5560747663551402,0.1224686595949855,0.7323506594259116,0.9237875288683602,0.8686868686868687,0.7041666666666667,0.1409090909090909,0.5051154633148203,0.724188790560472,0.6523722627737226,0.5132530120481927,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002309960183581,0.0047356359137647,0.0070348188001218,0.0090939573447676,0.0115558720309241,0.0137593188577015,0.0158770623865559,0.0179081924364943,0.0201736178566681,0.0222208568853936,0.0245918451062433,0.0263060583026891,0.0282298718133371,0.0301725026277282,0.0322317632002642,0.0342727761465613,0.0363984674329501,0.0385337663280869,0.04047732895366,0.0427160802449846,0.0575875242688044,0.07141213148369,0.0846197407609379,0.0976830768907165,0.1106001476637485,0.1258301958627691,0.13818964877107,0.1501048530460608,0.1610880225638615,0.170964456119659,0.183891706781249,0.1953924730019261,0.2066617352710817,0.217219615178464,0.2261611270085846,0.2367852513322771,0.2461196596466936,0.2552487679740768,0.2633555311014555,0.2718902452990083,0.2789814814814815,0.2861788617886179,0.292798390437304,0.298721853192969,0.3040305050578649,0.310069016514666,0.3147763398332874,0.3197501335843871,0.3234704047424895,0.3275950769717836,0.3267120059255269,0.3252002311947816,0.3240142460971043,0.3220970537261698,0.3211783912140101,0.318922392032677,0.3176771989752348,0.3177683444511825,0.3193907280254885,0.3211337271368585,0.3220813651724202,0.3232835762188526,0.3243716758786109,0.3253038870831292,0.3260146055309469,0.3275450345221409,0.3279469297499575,0.3318217357310399,0.333821887213847,0.3386034775066041,0.3430765755590693,0.3467199327165685,0.347125,0.3468190705369228,0.3517676533358077,0.3524416135881104,0.3547752383835326,0.3560365369340746,0.3586281393464758,0.3661160199769496,0.0,2.025271794842224,56.69011792187631,171.93232085365824,257.9186347960819,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,57 -100000,95758,44739,423.3588838530462,6109,62.56396332421313,4799,49.51022368888239,1912,19.559723469579566,77.32840490063373,79.68804510839489,63.31625382636724,65.06424548595457,77.08995805372567,79.4542598327537,63.226832497604704,64.97983721679888,0.2384468469080616,233.785275641182,0.0894213287625333,84.40826915568778,166.74834,116.812213369945,174134.4639612356,121986.30550993134,358.70452,231.94494757308468,373996.7626725704,241624.41734970655,364.02081,175.83042706261256,377042.72227907856,181155.59070444223,2739.51348,1257.5514534731176,2827460.9745399863,1279988.8007990706,1132.14211,502.4346865473601,1164489.5570082918,507197.1237243594,1868.09578,787.6263125074732,1912090.5825100772,786731.6402577796,0.38088,100000,0,757947,7915.202907328892,0,0.0,0,0.0,30648,319.4302303723971,0,0.0,33253,344.06524781219326,1572361,0,56412,0,0,6572,0,0,66,0.6892374527454626,0,0.0,1,0.0104429917082645,0,0.0,0.06109,0.1603917244276412,0.3129808479292846,0.01912,0.3405751797436699,0.6594248202563301,24.160167085225968,4.30289975969052,0.3094394665555324,0.2448426755574078,0.2292144196707647,0.216503438216295,11.203680226892535,5.850007683334771,20.27991033248944,12297.807199683746,54.35637624281357,13.999553571220874,16.746163853362443,12.272519673595356,11.338139144634892,0.5678266305480308,0.7974468085106383,0.7003367003367004,0.5790909090909091,0.1068334937439846,0.7384615384615385,0.936768149882904,0.8707124010554089,0.7276119402985075,0.1548672566371681,0.5044298370963133,0.7179144385026738,0.6419529837251357,0.53125,0.093480934809348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888268496093,0.0047161200024341,0.0068025829508995,0.0090347364783837,0.0111187971760493,0.0133739406779661,0.0158773861967694,0.0177951566137134,0.0199043120897994,0.0219563125678137,0.0241404760440371,0.0260696353947408,0.0280957229095321,0.0301276174977082,0.0323203137093029,0.034471709424679,0.0365919301078608,0.0388500549667088,0.0407261919607598,0.0429321334833145,0.0571368926465215,0.0709758393473486,0.0846186916083842,0.0972428074380078,0.1088314945362964,0.1250251043813751,0.1370877081344787,0.1490319627899056,0.1597641353230854,0.170186068958121,0.1834564922334489,0.1961802737650814,0.2079583909121573,0.2178858942947147,0.228794433986151,0.2392236365449167,0.2484707090551884,0.2580242048972699,0.2662707110167278,0.2740016505433038,0.2811302626552606,0.2874474980403168,0.2942527918901955,0.3002052008208032,0.3042442220952427,0.308868501529052,0.3140417100362423,0.3189805670595731,0.3238861145340165,0.3284646469982303,0.3279676440849343,0.3268152962723254,0.3261979298869052,0.3249819390261523,0.3247353710751665,0.3220505273485406,0.320376503398989,0.3216158892487792,0.3221707229472028,0.3233527582138643,0.3244949968144511,0.3252005215535975,0.326490509239903,0.3265721441989444,0.3287157287157287,0.3308323563892145,0.33339031826082,0.3364600326264274,0.3364701766660836,0.340228245363766,0.3416261860444,0.3451570335180786,0.3491597426126069,0.3509262759924386,0.3515887850467289,0.3526439482961222,0.3526187576126675,0.3559528646891507,0.3660689655172414,0.3684210526315789,0.0,2.3236263559593926,56.97915262426412,177.2644329484616,261.96818147410795,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,58 -100000,95722,44733,422.1913457721318,6179,63.22475501974469,4876,50.28102212657488,1919,19.56707966820585,77.31464774318667,79.68115636288495,63.30648041847581,65.05658947384391,77.07373211937364,79.44375999254414,63.21670889028383,64.97105816050842,0.2409156238130236,237.3963703408037,0.0897715281919744,85.53131333549402,165.45474,115.9270249903225,172849.23006205467,121108.02635791406,362.53968,234.58435668816327,378068.4377677023,244394.5497616708,373.34293,180.86312876236877,386272.1840329287,186007.3285271627,2788.16796,1285.2201132507166,2876696.475209461,1306579.2455406964,1155.53923,513.3467911102957,1190119.0008566473,519238.55509209033,1880.17438,794.4979232506521,1919837.738450931,791524.9469748872,0.38115,100000,0,752067,7856.783184638851,0,0.0,0,0.0,30825,321.31589394287624,0,0.0,34154,353.0431875639874,1574325,0,56507,0,0,6630,0,0,80,0.8357535362821504,0,0.0,0,0.0,0,0.0,0.06179,0.1621146530237439,0.3105680530830231,0.01919,0.3462372251471043,0.6537627748528956,24.29198377086613,4.392705747690168,0.3373666940114848,0.2305168170631665,0.2141099261689909,0.2180065627563576,11.180135974340692,5.735828846366061,20.57147231630052,12352.319616779652,55.438801194740144,13.50331282219698,18.591399710949336,11.612714633586434,11.731374028007398,0.5631665299425759,0.7998220640569395,0.6911854103343466,0.5574712643678161,0.1204139228598306,0.71781033153431,0.9176755447941888,0.8397129186602871,0.7063829787234043,0.1515151515151515,0.5071248952221291,0.7313642756680732,0.6405867970660146,0.5142150803461063,0.1117788461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0046739868803925,0.0072575569946608,0.0096331673610405,0.011872424843583,0.0143139492236847,0.0165372726252537,0.0189091503134508,0.0210271298018931,0.0232689079071291,0.0250376795546122,0.0271996385702991,0.0291307075922935,0.0314164717519654,0.0337328007101642,0.0359036916810536,0.0380652576860548,0.0401672685012244,0.0422667013257083,0.0442346960036671,0.0580723973396535,0.0723369514020452,0.0862340278214892,0.0990040699569867,0.1111907875311089,0.1272375269772756,0.1395817853731026,0.1509343555342597,0.1618527387009877,0.1722343245302456,0.1854248218002221,0.1979717430874577,0.208501737605264,0.2193037246457806,0.2291163662422137,0.2395687606866076,0.2493624446333497,0.2585040151583506,0.267778333864143,0.2754953195888129,0.2822237426507253,0.2886524240897212,0.2938749377534324,0.2997971017972698,0.3051663747810858,0.3104218331667715,0.3153664125004695,0.3196975868037878,0.3235678684704511,0.3277153558052434,0.327072224915172,0.3258814951368157,0.3251860919976923,0.3239902381261823,0.3230293663060278,0.3216736094094584,0.3189289333671142,0.3195261411061089,0.3201436388508892,0.3214929904455755,0.3222522218472269,0.3230614140855092,0.3242881632311745,0.3246814113866137,0.3254479081608146,0.3279225846730139,0.3283760683760683,0.3314820044557406,0.335118485071231,0.3377585796940636,0.3404866047020229,0.3438346703501036,0.3491842671050967,0.3560878549016606,0.362176459474778,0.3647940966436562,0.3670106268288926,0.3696457990115321,0.3671766342141864,0.3604060913705584,0.0,2.56034542937967,56.57537964029528,187.64411781553912,263.4836225906178,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,59 -100000,95804,44539,421.0784518391716,6143,62.79487286543359,4832,49.74740094359317,1870,19.080622938499435,77.3504688262772,79.68308191220724,63.33176974345843,65.06000655546173,77.1154798537972,79.45029287880028,63.24468439278705,64.9766644770465,0.2349889724799965,232.78903340695933,0.08708535067138,83.34207841522812,165.8646,116.21799644668393,173129.09690618346,121308.0836360527,360.38392,233.6597634533842,375480.13652874617,243205.74657987585,371.97215,180.72060649233845,383295.540895996,184975.83495442785,2758.00768,1272.1194181804683,2841529.748235982,1290562.9182293736,1126.47466,504.40254279719807,1156805.874493758,507493.1209889642,1828.87064,766.8952163433294,1867158.6363826145,765951.849843604,0.38074,100000,0,753930,7869.504404826521,0,0.0,0,0.0,30785,320.6024800634629,0,0.0,34064,350.77867312429544,1574064,0,56572,0,0,6565,0,0,67,0.6680305623982297,0,0.0,0,0.0,0,0.0,0.06143,0.161343699112255,0.3044115253133648,0.0187,0.3470560820257884,0.6529439179742116,24.394313608951645,4.327618622014061,0.322226821192053,0.2425496688741721,0.2214403973509933,0.2137831125827814,11.327652892036786,5.992766398567394,19.929398433246835,12275.390042581184,54.88982805138542,14.090411670785697,17.616040544681248,11.903081160858278,11.280294675060212,0.5709850993377483,0.7841296928327645,0.6929993577392421,0.5990654205607476,0.1161665053242981,0.7413394919168591,0.9225512528473804,0.8476658476658476,0.725,0.1830985915492957,0.5083498443249364,0.7012278308321964,0.6382608695652174,0.5626506024096386,0.098780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603541544259,0.004603388661874,0.0069318989140363,0.0090527620576491,0.0114022417966922,0.0134036788820761,0.0155117026158788,0.0179111183726819,0.0203263670197537,0.0224290072272382,0.0247226266893624,0.0268732735693088,0.0291344008062608,0.0311547334596687,0.033117090729071,0.0352242198801405,0.0371627916606281,0.039010880726903,0.040905831367373,0.0429857893914944,0.0577121694225653,0.0716018402342116,0.084968142186452,0.0974615449272926,0.1094031501870094,0.1249114946051338,0.1371815126228621,0.1487761549671833,0.159633184229911,0.169436675560699,0.1823024276859504,0.1949816758737743,0.205698952765828,0.2162203519510329,0.2262911831032396,0.2360214041190742,0.2460940987411838,0.2552798874824191,0.2633210332103321,0.272155668048652,0.2795589443358132,0.2865328172686771,0.2933806566104702,0.3000071883835721,0.30548163270266,0.3106667982337124,0.3160974265166512,0.3202191361956937,0.3245159283548044,0.3282742223102833,0.32742992797216,0.3267725217774837,0.3264822468930299,0.3254246115563786,0.3246394052044609,0.3228812260536398,0.3212304668927699,0.3213616489693941,0.3229086559001965,0.3229403041077778,0.323601565572389,0.3246830193150847,0.3259367804061126,0.3258231073559981,0.3271590089006495,0.3272528274352426,0.328054813214306,0.3313678135683593,0.3351955307262569,0.338586418530984,0.3395909853534666,0.3412106793550092,0.3430057658561042,0.3432091300733126,0.3445566778900112,0.3485861785756189,0.3517702476827229,0.3491776975531488,0.3539295392953929,0.3482074752097635,0.0,2.702594650634478,56.35822254614069,183.8214411195198,261.3103725658348,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,60 -100000,95729,44321,420.3637351272864,5954,60.984654597875256,4737,49.03425294320425,1956,20.129741248733403,77.30949638025908,79.6691157251291,63.31695901961641,65.05935816670663,77.06698053488131,79.42512737180492,63.22775461730952,64.9711623724003,0.2425158453777669,243.988353324184,0.0892044023068976,88.19579430632984,167.4552,117.31227320907102,174926.3023744111,122546.22236633729,363.27824,235.9973636198683,379009.2970782104,246059.7754856465,369.80347,178.76433031565506,383311.13873538846,184393.40887601263,2727.46636,1262.9027468833822,2824843.3390090778,1295483.358395134,1163.70524,512.9209137644651,1205442.1544150675,525622.7410340284,1921.4553,802.3873388678547,1979651.4744748196,816482.4536142343,0.3776,100000,0,761160,7951.195562473232,0,0.0,0,0.0,30964,322.98467549018585,0,0.0,33777,349.85218690261047,1563217,0,56168,0,0,6608,0,0,80,0.8356924234035663,0,0.0,0,0.0,0,0.0,0.05954,0.1576800847457627,0.3285186429291233,0.01956,0.3449606172641054,0.6550393827358946,24.09952351890505,4.339175032300707,0.3107451973823095,0.2332700021110407,0.2237703187671522,0.2322144817394975,11.39282970277294,5.892328623282634,20.81362004748438,12119.096535496908,54.2092246774036,13.123263308757542,16.895893129539292,12.02157899894021,12.16848924016655,0.5651256069242137,0.7728506787330317,0.7167119565217391,0.5830188679245283,0.1363636363636363,0.7313432835820896,0.9175824175824177,0.8699763593380615,0.7410358565737052,0.1829787234042553,0.504041570438799,0.7017543859649122,0.6549094375595805,0.5339925834363412,0.1236994219653179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888161959064,0.0047035925715675,0.0068785001217433,0.0091208255464369,0.0112235042952269,0.0135576658829277,0.0154512561789736,0.0173527820592648,0.01940844609787,0.0213793738678347,0.0233704732520833,0.0255559890753023,0.0277634961439588,0.029617729444719,0.0317537255710823,0.0338471711369178,0.0359752437333112,0.038050298159191,0.0398781932694506,0.041832461823712,0.0561037496475895,0.0701936159079016,0.083430345362825,0.0967772462015666,0.1092810898584955,0.1245558375634517,0.1373763951958579,0.148869587431345,0.1600440086308188,0.1702960318226168,0.1832792924777283,0.194835985709646,0.2053363511719515,0.2154613902994221,0.2252562733288556,0.2357329726853494,0.2458976106165034,0.2547851067425224,0.2627327569557264,0.2694494760736478,0.2761372058551047,0.2834907371648585,0.289074435956653,0.2952672305200647,0.3006855309218203,0.3058420091774806,0.3106944374906123,0.3148131644280348,0.3190320030071679,0.3231243060328874,0.3222234211875152,0.3206041646569188,0.3195477578443688,0.3187065972222222,0.3179382609472211,0.3170795346410044,0.3148918601327532,0.3159930858506873,0.316462421801354,0.3173507797096254,0.3175922096477046,0.3182170311661998,0.3198257905699678,0.3205441932514649,0.3222007255139056,0.3229738921153142,0.3222298731852872,0.3248626807247932,0.3268052131032053,0.3304220096073683,0.3321033210332103,0.3361697601446577,0.3373288751498328,0.3388871904616325,0.340702947845805,0.3405771286070538,0.3429973922380733,0.3471481329503488,0.3511724137931034,0.3558023745691306,0.0,1.7012925763057956,56.39434551974549,187.9137191800877,250.44108967878864,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,61 -100000,95738,44640,424.0740353882471,6061,62.14878104827759,4772,49.30121790720508,1878,19.24000919175249,77.40440741590693,79.7611049709451,63.3594678928421,65.0992320373492,77.1715114516703,79.52864501643597,63.273161760427726,65.01557976687661,0.2328959642366328,232.4599545091246,0.0863061324143714,83.65227047258372,166.947,116.89767377149462,174379.0344481815,122101.64592063196,359.71218,232.3827770087738,375172.8258371807,242175.05797987612,365.7802,176.6867431936176,378301.5521527502,181672.16687282608,2749.46872,1262.03655241315,2842483.2772775698,1288834.6032016026,1123.42533,498.6422774980505,1157480.0288286784,504883.3039107252,1841.46178,770.9125055604857,1888565.6479140988,776564.4078705771,0.38117,100000,0,758850,7926.319747644613,0,0.0,0,0.0,30724,320.3534646639788,0,0.0,33556,346.7693079028181,1574782,0,56485,0,0,6473,0,0,59,0.6058200505546387,0,0.0,0,0.0,0,0.0,0.06061,0.1590104153002597,0.3098498597591156,0.01878,0.3364280094413847,0.6635719905586153,24.27135223648713,4.392995093879886,0.316848281642917,0.2376362112321877,0.2229673093042749,0.2225481978206203,11.279215216360958,5.901886235463252,19.89510946110418,12257.417514044037,53.990102523395706,13.670422044329442,17.129565247049,11.788502037751597,11.40161319426566,0.5699916177703269,0.791005291005291,0.7123015873015873,0.5864661654135338,0.1148775894538606,0.764484574868322,0.9342105263157896,0.8867469879518072,0.7169811320754716,0.1658031088082901,0.4949172233517281,0.6946902654867256,0.6463081130355515,0.5431789737171464,0.1035673187571921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043780086141373,0.0064925842514253,0.0086426649063118,0.0106148261873049,0.0128562703583061,0.0149910828025477,0.0171831474546697,0.019280481450072,0.0213767485648209,0.0233578288185796,0.0254744383204524,0.0275835835012542,0.0296956275428748,0.0315540742728013,0.0334422230032873,0.0355219552609776,0.037595310960112,0.0395036323387272,0.0413094878498442,0.0559406974316141,0.0705338175120608,0.0835719755378628,0.0962519055879724,0.1085661884835516,0.1244951043627212,0.1365907475574697,0.1488077496274217,0.1598935965643228,0.1704285913423905,0.1828548661512286,0.1954708243619012,0.207628639483158,0.2180464282199599,0.2277793057923978,0.2382207359340915,0.2482678597328989,0.2575360640438952,0.2649850857991856,0.2734140701907007,0.280746561886051,0.2883394041281404,0.2941718226042601,0.2999450365626344,0.305508454047769,0.3108880232972488,0.3149318215873333,0.319388402486994,0.3233733197319319,0.3277651360700803,0.3267264285139161,0.3262265393480408,0.3254030672434133,0.3234226447709594,0.3228323143199751,0.320441398678246,0.3186886074350147,0.3195026178010471,0.3208035410282601,0.3224647348666773,0.323620663875598,0.3245163837347019,0.3252483010977522,0.3265174151540828,0.3268613068699362,0.3281030444964871,0.3297772733721095,0.333176706449895,0.337134860941053,0.3405754086034271,0.3446507194407879,0.3480057206419831,0.350307287093942,0.352107337780473,0.354015278554127,0.3534381600563248,0.3552912473315035,0.3608599557966646,0.3735473159933591,0.3795677799607073,0.0,2.1691738011566684,58.29461863620577,171.20498941239777,260.1404831256364,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,62 -100000,95749,44937,424.9861617353706,6040,61.74477018036743,4801,49.556653333194085,1908,19.58244994725793,77.33232137485312,79.69786684248916,63.31916690730778,65.070965521559,77.09501618825803,79.46039296074288,63.23026279131887,64.98397276755384,0.2373051865950941,237.4738817462827,0.0889041159889103,86.99275400516626,166.67618,116.71705920445297,174076.15745334156,121898.98505932488,362.44269,235.2214766242688,377955.7802170258,245086.2845818429,372.9197,180.67124596517007,385658.8162800656,185773.40192037783,2757.89264,1271.189908585494,2849093.2751255888,1296384.9111588572,1151.55939,514.2164631784209,1188956.3964114506,523322.5956540956,1863.41246,791.759330104952,1914861.43980616,801551.6215974642,0.38056,100000,0,757619,7912.552611515525,0,0.0,0,0.0,30844,321.5281621740175,0,0.0,34072,352.00367627860345,1570099,0,56336,0,0,6529,0,0,67,0.6997462114486835,0,0.0,1,0.0104439733052042,0,0.0,0.0604,0.1587134748791255,0.3158940397350993,0.01908,0.3331212217626471,0.6668787782373529,24.50238978704919,4.272648810876299,0.3290981045615497,0.2334930222870235,0.2162049573005623,0.2212039158508644,11.168749707619217,5.946078337373578,20.44651797817401,12303.245568686916,54.48303167201343,13.372998848399892,17.874527742621638,11.60781255986191,11.627692521129992,0.5665486357008956,0.7743086529884032,0.709493670886076,0.5761078998073218,0.1252354048964218,0.7388932190179267,0.9238578680203046,0.85785536159601,0.7677165354330708,0.1923076923076923,0.503695281409892,0.6932599724896836,0.6590330788804071,0.514030612244898,0.1062801932367149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0046962642891194,0.0072293071237105,0.0097568908041304,0.0120350777244241,0.0142215340104522,0.0166231541160153,0.018713820457585,0.0208373805020193,0.023013923013923,0.0250750920069299,0.0270725322108721,0.0290902734218346,0.0312377695841143,0.0333041011091049,0.0353374055584839,0.037565880074966,0.0395057629861709,0.0417134306023194,0.0434922982388535,0.0574769038050002,0.0713149744705783,0.0852264384452415,0.0983765141318977,0.1111439145517234,0.1270069595752332,0.1394571537710623,0.151486444773228,0.1622663676172167,0.171826243606378,0.1842867760316246,0.1960436325859233,0.2077372469239221,0.2186553206383234,0.2286843031957038,0.2392380530483415,0.2487249595446682,0.2571971999009611,0.2656035412292151,0.2742258829459407,0.2815538475784795,0.287558067422567,0.2936484455437342,0.2992317556959142,0.3047592439628784,0.3101225254542317,0.3141112279120989,0.3187817904374364,0.3235636796727338,0.3269235841840099,0.3265556034018732,0.3248232413546452,0.3240446084091357,0.3230078271669122,0.3213993909232712,0.318866538072931,0.3166862142200526,0.3176783340717767,0.3187889125799573,0.3199721468361662,0.3211329466749253,0.3221309040499059,0.3229164480449976,0.3235853915224255,0.3248752981999566,0.3259599332220367,0.3274477416415105,0.331915295897145,0.3362226277372263,0.3376194267515923,0.3398597577634095,0.3426330950602795,0.3438647587691528,0.3457986720598336,0.3470055124731384,0.3493905297702766,0.3493975903614458,0.3539752297243308,0.3588907014681892,0.3686618375905451,0.0,2.2511516828102724,56.06655298605746,179.54106099933497,264.99018034944,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,63 -100000,95720,45092,427.5595486836607,6137,62.703719180944425,4806,49.56122022565817,1856,18.96155453405767,77.41699606751023,79.77086489427053,63.36600846061516,65.10087021220534,77.17557151548444,79.53309741881039,63.27428597034961,65.01376717685837,0.2414245520257907,237.76747546014576,0.0917224902655533,87.10303534697061,166.24102,116.42663006588604,173673.81947346427,121632.04833460724,362.33934,234.81671954483383,377890.6080234016,244666.25903137677,371.02577,179.63731040727936,384122.9314667781,184981.394612978,2769.05196,1277.218521391139,2856465.942331801,1297952.1117751135,1158.81937,511.367742242031,1193263.4872544922,516939.9816189748,1825.0596,782.9690406310333,1865824.3836188884,780877.2697298744,0.38268,100000,0,755641,7894.264521521103,0,0.0,0,0.0,30895,322.0748015043878,0,0.0,33929,350.9611366485583,1573818,0,56497,0,0,6592,0,0,66,0.6790639364814041,0,0.0,0,0.0,0,0.0,0.06137,0.1603689766907076,0.3024278963663027,0.01856,0.3357287923761912,0.6642712076238088,24.40770458246188,4.342392070800156,0.3183520599250936,0.2392842280482729,0.2134831460674157,0.2288805659592176,11.029017703760164,5.599359065946032,19.781707304323486,12308.990032985152,54.27015875834413,13.813172653807866,17.153739228424506,11.255992995935582,12.047253880176177,0.55638784852268,0.7852173913043479,0.7052287581699347,0.550682261208577,0.1154545454545454,0.7116704805491991,0.9334916864608076,0.8670076726342711,0.6733067729083665,0.1290322580645161,0.498140200286123,0.6995884773662552,0.6496927129060579,0.5109677419354839,0.1115023474178403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020648191258932,0.0041131001225825,0.0064305420318078,0.0087734440845256,0.0108792907109158,0.0127852765732201,0.0151261874668732,0.0175239844866299,0.0195290943650745,0.0216272622177662,0.0236606959872115,0.025924177425645,0.0278894291559155,0.0299787851949496,0.0319499035416215,0.0342465045624115,0.0363402942424964,0.0381683348026759,0.0405866090173987,0.0426611382554251,0.0578585748893158,0.0716684978810233,0.0849831607440747,0.0978270015566494,0.1098137248697339,0.1257919509228409,0.1386001018416362,0.150626457031541,0.1610766222526151,0.171067590467406,0.183549074931616,0.1952974528771451,0.2066157926776241,0.2178026371849634,0.2279381058091742,0.238407737765875,0.2482996989630951,0.2574675945183303,0.26619488296135,0.2738157924860917,0.2816883492338826,0.288482893244965,0.2951825749692555,0.30083218583488,0.306279735896689,0.3110758012465203,0.3163811429285982,0.3216578729896382,0.3265390584583549,0.33004127164124,0.3286067911532045,0.3268279274326553,0.3259758724081139,0.3256549950143788,0.3245362600804954,0.323297688436061,0.3208605139707159,0.32116501677166,0.3217318787548717,0.3227939216209011,0.3245496251538547,0.3256390090444357,0.3259889834752128,0.3260594209017577,0.325238072450591,0.3275110303659486,0.3289108124964563,0.3318147778332501,0.3361315266989446,0.3391808254819253,0.3418332806787922,0.3415932936152264,0.3449887808526552,0.347911771393921,0.3544091628643263,0.3573352066502751,0.3593939393939394,0.36,0.3679676985195155,0.3685981308411215,0.0,2.44660147394854,57.14194438200923,174.62796243810527,263.1365903796544,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,64 -100000,95699,44718,423.7348352647363,5953,61.22321027387956,4686,48.41220911399283,1839,18.8298728304371,77.3508434030137,79.74061334309339,63.31502979323547,65.08243031799863,77.12358046057193,79.5183175974167,63.22964961668681,65.0022769783604,0.2272629424417687,222.2957456766892,0.0853801765486608,80.15333963822968,166.51404,116.62978902325968,173997.450339084,121871.27162791645,357.18556,231.98491658408992,372677.5514895663,241851.36081262064,367.82579,177.8936703937742,381669.70396764856,183805.99167166583,2683.49788,1230.1881278135254,2772424.6648345334,1253832.760486029,1117.33622,490.0225582153721,1155189.6153564823,499708.1582012281,1802.16204,755.3869220145294,1846051.9754647384,755221.6246019292,0.38091,100000,0,756882,7908.97501541291,0,0.0,0,0.0,30435,317.4432334716141,0,0.0,33643,348.8437705723153,1572234,0,56366,0,0,6350,0,0,62,0.6478646589828525,0,0.0,0,0.0,0,0.0,0.05953,0.1562836365545667,0.3089198723332773,0.01839,0.33263429585417,0.66736570414583,24.494024924117365,4.282042619236159,0.3137003841229193,0.2479726845924029,0.2148954332052923,0.2234314980793854,11.187673648843043,5.85630682476098,19.56701447683835,12227.198138904514,53.15067253047859,13.983347581320327,16.687424084154205,11.094730556101926,11.385170308902122,0.5529236022193769,0.7685025817555938,0.6877551020408164,0.5551142005958292,0.1222540592168099,0.716441620333598,0.9170506912442395,0.8337801608579088,0.6810344827586207,0.1590909090909091,0.492850889991246,0.679945054945055,0.6381039197812215,0.5174193548387097,0.1124546553808948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0044721177150622,0.0065577764468221,0.0089133262866899,0.0111701153634865,0.0135795929178297,0.0156994358812188,0.0178932532630675,0.0199629784927542,0.0222035599434669,0.0241308583735001,0.026180645426347,0.0284403575359233,0.0304453991901832,0.0323236493111099,0.0342186062379175,0.036168294982439,0.0380108157482276,0.0402463254033474,0.0424285386652211,0.0566993617665799,0.070514565750068,0.084669969768223,0.0972099482388587,0.1094994461733213,0.1253160673289533,0.1379669040770186,0.1492907650366331,0.1609175743711986,0.1715371159356521,0.1835135339075317,0.1961089999675208,0.2075956254420806,0.2179175695493247,0.2281174993944465,0.2375999379026624,0.2470075926753014,0.2558521838019209,0.2651575384475591,0.27264389953113,0.2792835558231351,0.2861525132011849,0.2922338724009241,0.2979103689842138,0.3033003099738649,0.3095605005239474,0.3140429685056119,0.3187924585909472,0.3234121848956985,0.3267352863552388,0.3263288342897169,0.3249549438001293,0.3245925175238577,0.3228363510352595,0.3219067388242271,0.3196185119520695,0.3175024488893102,0.3177345144335467,0.3177732676138011,0.3192633753651065,0.320109132360361,0.3213294763563374,0.3213548723293382,0.3218495618522308,0.3216413446584519,0.3216248444628785,0.3223338790718681,0.3258986979004423,0.3290452680620263,0.3323546682325308,0.3340518209169698,0.3356808745466968,0.336905058559681,0.3373439273552781,0.3375796178343949,0.3413621262458471,0.3413373860182371,0.3461844197138314,0.3451160280626011,0.3504208110175975,0.0,2.068556545836856,55.30934117243242,179.31657868677507,250.50767856351905,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,65 -100000,95724,44342,420.4170323011992,6017,61.60419539509423,4697,48.50403242655969,1844,18.898081985708917,77.26691653433518,79.62637078062646,63.2951211478972,65.03928587444447,77.03710996099746,79.39896892424446,63.2106457210462,64.95789138525359,0.2298065733377257,227.40185638200217,0.0844754268510001,81.39448919088466,165.92048,116.12384089568488,173332.16330282897,121311.10368944558,354.14013,229.73855040968903,369403.76499101584,239445.1552480977,363.39804,176.5470441506794,376126.3528477707,181689.83392414107,2680.53352,1241.1347101066592,2770495.3825581884,1266798.4936971492,1139.33471,507.94521970377366,1174641.4692240192,515047.7515605005,1809.45842,754.7264137954987,1856727.9888011368,760663.927489878,0.37828,100000,0,754184,7878.734695583134,0,0.0,0,0.0,30169,314.59195186160207,0,0.0,33341,344.8247043583636,1576814,0,56640,0,0,6521,0,0,58,0.605908654047052,0,0.0,0,0.0,0,0.0,0.06017,0.1590620704240245,0.3064650157885989,0.01844,0.333755942947702,0.6662440570522979,24.426024995051687,4.315610157082264,0.3159463487332339,0.2476048541622312,0.2103470300191611,0.2261017670853736,11.45983818726571,6.020440323437953,19.75452818897533,12200.296642248535,53.64923214674921,14.001591695267068,16.833869097211814,11.212930622106551,11.60084073216378,0.5703640621673408,0.7996560619088564,0.6994609164420486,0.5657894736842105,0.1431261770244821,0.7595129375951294,0.9260869565217392,0.8822055137844611,0.726530612244898,0.2,0.4968962459355601,0.716927453769559,0.632258064516129,0.5127860026917901,0.1291079812206572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0045524135903233,0.006768275358201,0.0090815818612163,0.011187274983219,0.0132772647205563,0.0156379020337428,0.0178642521003256,0.0200259652637927,0.0223652964297412,0.0245815095384047,0.0268264136996427,0.0286595711861792,0.0306423038892551,0.0324567466908768,0.0341526947964689,0.0362235546304638,0.0380341747331071,0.0401438609621221,0.0419254011252344,0.056124047196408,0.0703362954124407,0.0832546328359462,0.0956263743200732,0.1082181664732566,0.1235185812240751,0.13574021782977,0.1478578502891343,0.1588918944926172,0.1691997252275459,0.1820759089782147,0.1941278439869989,0.2057318321392016,0.2162082256580964,0.2252253244893012,0.2363771557942867,0.2457901916497081,0.2548191210103536,0.2628481846685145,0.2706680728139758,0.2781043860664275,0.2859299658255699,0.292067250769595,0.2977815085741696,0.3032708178867915,0.3080101128445458,0.312893968444929,0.317364888102001,0.321769016276506,0.3261761126104672,0.3255345877966742,0.3240582191780822,0.3231195409446816,0.3221377362589615,0.3217291564254964,0.3199060138829166,0.3189126497410314,0.3194490212878139,0.3211254565094388,0.321358858186637,0.3217546496336652,0.3222378620566603,0.3232100012627857,0.3225835409232703,0.3244647431250302,0.3260590836538713,0.3281684089932694,0.3316455696202531,0.3354414638479304,0.3368785754572556,0.3409781707654048,0.3465857196583033,0.3513667787150377,0.3506265281173594,0.3528134441087613,0.3558718861209964,0.3549670901576611,0.3560866923232732,0.3604298704877376,0.3677893921796361,0.0,2.225113868202104,57.49455092874208,175.1969436483524,252.9417537016679,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,66 -100000,95701,45087,426.4009780462064,6045,61.94292640620266,4739,48.91275953229329,1831,18.73543641132277,77.288290147924,79.6581523547608,63.294707477804174,65.04425726896368,77.06003155382544,79.43196268430222,63.20964677339117,64.96271020691776,0.2282585940985626,226.18967045858085,0.0850607044130029,81.54706204591378,165.22902,115.83396148846212,172651.29935946333,121037.35748682052,359.90287,233.49922724984103,375487.1004482712,243405.259349266,370.10319,179.42196544192947,383340.4457633672,184838.59802812335,2715.32012,1241.617752542276,2803709.261136248,1263806.4728083045,1106.14929,492.0812500367303,1136358.7005360443,494736.0523619597,1791.107,751.2762068467641,1833812.8964169647,752424.4147457704,0.38282,100000,0,751041,7847.786334521061,0,0.0,0,0.0,30673,319.892164136216,0,0.0,33866,350.4770065098589,1571556,0,56409,0,0,6619,0,0,62,0.6478511196330238,0,0.0,2,0.0208984232139685,0,0.0,0.06045,0.1579071103913066,0.3028949545078577,0.01831,0.3421135646687697,0.6578864353312303,24.50586741666065,4.31035262815143,0.327917282127031,0.2357037349651825,0.2190335513821481,0.2173454315256383,11.248892728068146,5.942143975829568,19.39833798762289,12336.292060758657,53.45788508751146,13.436940144192702,17.350574137340917,11.413971500589865,11.256399305387996,0.5604557923612576,0.7726051924798567,0.6808236808236808,0.5924855491329479,0.116504854368932,0.7375201288244766,0.8788598574821853,0.8606965174129353,0.7718446601941747,0.1924882629107981,0.4975693451529883,0.7083333333333334,0.6180555555555556,0.5480769230769231,0.0966952264381885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179685838422,0.0047039263592218,0.0067175386613629,0.0092037627745382,0.0117260597184932,0.0141636713539492,0.0162619033053975,0.0183534935946511,0.0206993836183544,0.0228828736632042,0.0250476561379055,0.0270988801182496,0.0290764026691068,0.0310707407750692,0.0332439401753481,0.0353857919431181,0.0373879190739475,0.0395591623253979,0.0414491065299244,0.0435969858359302,0.0584358615503519,0.0727672495026698,0.0867977203790971,0.0999884236116226,0.1119192644279998,0.1277978950934925,0.1401219097782686,0.1513546916118859,0.1628028828674693,0.1728266471952581,0.1856936416184971,0.1976359952763242,0.2090090286324181,0.2188499102176674,0.2286340555365856,0.2384101551230554,0.2490076148091825,0.2580146818371466,0.2665726214718831,0.2746503135120237,0.2820426578211804,0.2880475565143983,0.2951037501927891,0.3007027449096042,0.3059134416327723,0.3113411485676874,0.3161997288748305,0.320167327730235,0.3233640247782554,0.3275471997671434,0.3257300870034397,0.3250337959003503,0.3242005906374079,0.3222814746116392,0.3221581511778641,0.3205862042507481,0.3185025449125533,0.3187615040757297,0.3195858646359202,0.3209318124932956,0.3211926743226,0.3222802230395065,0.3240243390684011,0.3238329238329238,0.3260546500479386,0.3274609516890664,0.3291667850345161,0.3323287499215169,0.3342919267728133,0.3378850428707526,0.3410211910851297,0.3417021276595745,0.3450461190939323,0.3493135098232572,0.3473899312650938,0.3493030338526414,0.3520084566596194,0.3556845476381104,0.366657660091867,0.3744824990590892,0.0,2.350344460257458,54.11983268947745,175.1722952138037,264.70317791126286,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,67 -100000,95830,44681,422.341646665971,5981,61.11864760513409,4714,48.627778357508085,1840,18.86674319106752,77.36488025655099,79.67951531315013,63.35773544642036,65.07110896544847,77.13478725386153,79.45031951855539,63.27193554909495,64.98798337854068,0.2300930026894576,229.19579459474448,0.0857998973254083,83.12558690779781,166.16908,116.42953238592352,173399.853907962,121495.91191268236,357.66747,231.5493008706562,372693.08149848686,241086.93610628837,361.99988,175.08516804378726,374143.1180214964,179904.51446029698,2720.40704,1243.3359477186866,2809493.018887613,1268147.8323267112,1134.19389,501.1036436250026,1170821.9972868622,510183.1092820648,1810.52578,769.0274363280789,1859162.0995512889,775799.0102875452,0.38012,100000,0,755314,7881.811541271001,0,0.0,0,0.0,30498,317.6667014504852,0,0.0,33079,341.57361995199835,1580215,0,56656,0,0,6467,0,0,62,0.636543879787123,0,0.0,0,0.0,0,0.0,0.05981,0.1573450489319162,0.3076408627319846,0.0184,0.3384321223709369,0.6615678776290631,24.42035607829955,4.36364934171057,0.3235044548154434,0.231862537123462,0.2165888841747984,0.2280441238862961,10.733770592271943,5.445847650893314,19.81524278975803,12272.945384960369,53.36531324476434,12.9720997276893,17.20798600090525,11.279489474125516,11.905738042044266,0.5589732711073399,0.7932296431838975,0.6924590163934427,0.5710088148873653,0.12,0.7058346839546191,0.9224806201550388,0.8377659574468085,0.7081545064377682,0.1428571428571428,0.506896551724138,0.7223796033994334,0.6449086161879896,0.5304568527918782,0.1135005973715651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020358553631115,0.0042276653554483,0.0064940336066239,0.008714906756592,0.011114387691807,0.01339958457215,0.0153927704948113,0.0179063642117728,0.020097317631665,0.0223245816060187,0.0243307506251793,0.0264154428742957,0.0284586686399654,0.0306813503499382,0.0328615752528011,0.0348419466066524,0.0367094892322969,0.0387823402028742,0.0410458222143769,0.0429793166590369,0.0575424762977565,0.0707499346746799,0.0839697055403664,0.0973622311827957,0.1097643168558731,0.1250633552965027,0.1383956947328276,0.1499824600567656,0.1609720192441035,0.1719166711294382,0.1848556890672232,0.1970229279946382,0.208083441981747,0.2182431768290685,0.2278976229985604,0.2378240290188445,0.2469391620155298,0.2558761103686817,0.2647688283452797,0.2724404047333219,0.280004619204342,0.2870884893766052,0.2934414026962203,0.2992082665582318,0.3043087753368127,0.3098978210020928,0.3154308717448649,0.3204365835683972,0.3243124426227388,0.3277967307261686,0.3265564071534221,0.3254103544032333,0.3242862575529233,0.3228846014885468,0.3219560076741177,0.3202384966739217,0.3191202587847266,0.3199894740304595,0.3200520521206102,0.321360855722105,0.3220074461283893,0.32249042981534,0.323355809019682,0.3239850247718968,0.3261951113995241,0.3280940465019289,0.3304330518354232,0.3335009270024824,0.3355683493646001,0.33762352566146,0.3412792825768667,0.3410620792819746,0.3410029873514269,0.3421477438696287,0.3445529534464777,0.3482652091254752,0.3524527141319391,0.3507264170247595,0.3504013285358427,0.3493788819875776,0.0,2.2321321354762174,54.04920102318681,176.94671333711847,261.75916982183253,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,68 -100000,95638,44798,425.3748510006483,6189,63.52077626048223,4851,50.14743093749346,1857,19.051004830715826,77.2563444549925,79.66710224625265,63.27473565930678,65.05578036060234,77.01777881226569,79.42949010285854,63.18559501873579,64.96945187799197,0.2385656427268117,237.6121433941165,0.0891406405709887,86.3284826103694,164.96128,115.62157697082198,172484.8491185512,120894.81399276832,357.25822,231.03365179484223,372978.71139086975,240998.9736849855,368.7623,178.42168278876323,381648.5288274535,183488.45935095425,2761.15872,1268.0067658240766,2856953.135782848,1295839.186268247,1123.29307,496.07654907734207,1161353.5519354232,505679.811830712,1817.79136,769.579340004134,1867653.861435831,776793.0058606808,0.38142,100000,0,749824,7840.2204144796,0,0.0,0,0.0,30370,316.9451473263765,0,0.0,33802,349.5577071875196,1577754,0,56646,0,0,6323,0,0,68,0.7110144503230933,0,0.0,2,0.020912189715385,0,0.0,0.06189,0.1622620733050181,0.3000484730974309,0.01857,0.3381440099317194,0.6618559900682806,24.405355344588017,4.356072878252636,0.3217893217893218,0.2428365285508142,0.2209853638425067,0.2143887858173572,11.15522773871098,5.799151260706785,19.88280524668564,12312.082614942585,55.02739900780844,14.08903275918368,17.661653069091262,11.874488886226985,11.402224293306526,0.5666872809729953,0.7741935483870968,0.6931454196028187,0.5932835820895522,0.1144230769230769,0.7330210772833724,0.9011764705882352,0.8724489795918368,0.7591836734693878,0.1278538812785388,0.5070028011204482,0.702523240371846,0.6330196749358425,0.5441354292623942,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018230617308958,0.0041251532996158,0.0064137042186342,0.0087369073379862,0.0110998066944755,0.0132534661736092,0.0156479516892443,0.0173791327802525,0.0193523310762432,0.0214518409244575,0.0236722213101297,0.0255891148632678,0.0275592983034096,0.0297140971842748,0.031713237952585,0.033971088875322,0.0362929559944021,0.0382074295686861,0.0403642039542143,0.0421716908313341,0.0570320746632108,0.0712392486354541,0.0847139107611548,0.0975925555543859,0.1101120749699233,0.1261534879783271,0.1392255927993716,0.1501677405612652,0.1614147978707484,0.172048549628151,0.1844077152806977,0.1967516848332502,0.2084944608446531,0.2193715957784913,0.2296230119339112,0.240297513321492,0.2505285294018948,0.2590484349110091,0.2669735720375106,0.2749541073887104,0.282109267183894,0.2880630445744843,0.2944017276567469,0.300552353506244,0.3059276216453168,0.3109263423191915,0.3157353402320477,0.3213197127953986,0.3255273576945544,0.3293052158392279,0.3289965584722316,0.3281200392032356,0.3265868974881195,0.3245918293302373,0.3240479496021616,0.3212839658224924,0.3188963237280862,0.3191016049830273,0.321473383867031,0.322468843156269,0.3224572117922039,0.3234604222160378,0.3248010777585989,0.3268654044134103,0.3282758952869494,0.3293322547817238,0.3301889489180459,0.3309890248517724,0.3342330342120022,0.3364519326065411,0.3385708430113403,0.3417963562968077,0.3439454235361001,0.341831701950072,0.3436343449296817,0.3466416157820573,0.3469724220623501,0.3552500498107193,0.3478143550998381,0.3476577622919086,0.0,2.2008627817841835,56.17548977938371,183.0869153007644,267.53059050564787,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,69 -100000,95683,44657,423.11591400771295,6062,62.11134684322188,4784,49.31910579726806,1844,18.843472717201596,77.32722884548278,79.70469992319168,63.32110870231941,65.07598671001246,77.1000014679488,79.48035849862794,63.237173555091545,64.99598989517723,0.2272273775339783,224.34142456374676,0.0839351472278693,79.99681483522636,164.90034,115.5627177843504,172340.26943135142,120776.64557377006,361.12353,234.0327008633828,376752.8819121474,243928.33171664097,369.52705,179.06859217360392,381932.5376503663,183818.55372881464,2718.14556,1246.534939098915,2803619.4935359466,1265641.995725506,1118.47999,492.4237912629801,1152333.9046643605,498084.3822534074,1806.78698,751.994902943121,1847487.474263976,750738.362518077,0.38043,100000,0,749547,7833.648610515974,0,0.0,0,0.0,30779,320.9661068319346,0,0.0,33851,349.51872328417795,1578149,0,56650,0,0,6454,0,0,68,0.7002288807834202,0,0.0,0,0.0,0,0.0,0.06062,0.1593460032068974,0.3041900362916529,0.01844,0.335486920895052,0.664513079104948,24.531022918668405,4.395838020096452,0.3139632107023411,0.2418478260869565,0.2309782608695652,0.2132107023411371,11.274380859614556,5.845240993462885,19.63513764859537,12287.23446964147,54.329687569203664,13.815217127622184,16.98792669830912,12.403874367556975,11.122669375715388,0.5710702341137124,0.8098530682800346,0.699733688415446,0.571945701357466,0.1098039215686274,0.746031746031746,0.9338235294117648,0.8560606060606061,0.7396226415094339,0.1256544502617801,0.5085130533484676,0.7423230974632844,0.64376130198915,0.5190476190476191,0.106151990349819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023690444853908,0.0046112839638799,0.0071015521964086,0.0092730836812009,0.0113075929673279,0.0134910857014855,0.0155201598923174,0.0177810913770388,0.0196653917738735,0.0217406887794287,0.0237616654702081,0.0256971190879679,0.0280286354940239,0.0302109200317358,0.032374583320433,0.0342092472517813,0.0363218200277645,0.0385070598006644,0.0405970459746203,0.042715086826909,0.057709582401972,0.0716177040052747,0.0853027871311535,0.0976317976665158,0.109838417078007,0.1258899573666783,0.1387818778057244,0.1513651077604565,0.1627012531917394,0.1735478680611424,0.185763215716686,0.1982054140644449,0.2089795740793108,0.2193836260635621,0.2290245190826253,0.2392173807070606,0.2485324643439055,0.2568443074708119,0.2651257262164125,0.2727637154965067,0.2806495671095884,0.2868324071365896,0.2930114207941298,0.2988533291795971,0.3039066771978856,0.3097495715219294,0.3142084371595647,0.3184526841193847,0.3222412273881719,0.3266071522898949,0.3253624654393418,0.3241914832101111,0.3234838018439676,0.3219415623825901,0.321509838040423,0.3199889479016363,0.3180759172676123,0.3190216233053001,0.3198703735289101,0.3213853276353276,0.3222309446375836,0.3233327415823421,0.3243322386998264,0.3256452621237831,0.3263813716292608,0.3280344557556773,0.3290532443074816,0.3315408805031447,0.3358655697531945,0.3396054146322099,0.3448810990916974,0.3505407277182888,0.3524404086265607,0.3536930730960582,0.3610163064087979,0.3655172413793103,0.3628685503685503,0.3651148607440537,0.3681454946266189,0.3715490797546012,0.0,2.569574555311613,54.93238756784538,182.7561182917624,261.802890697042,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,70 -100000,95770,44697,422.8777278897359,6143,62.68142424558839,4876,50.2453795551843,1891,19.29623055236504,77.38146625236273,79.7036481455766,63.35451413110488,65.06736797319643,77.14609209744175,79.47215567628311,63.26631011150029,64.98327795964134,0.2353741549209758,231.4924692934852,0.0882040196045892,84.09001355508394,164.99824,115.5667563617452,172285.7053357001,120670.9815134557,357.59855,231.49487435795427,372647.50965855696,240977.1707984124,368.34369,178.29841512810228,380580.6097942988,183030.94012254348,2794.96228,1288.1396933426752,2881229.278479691,1308090.6883368536,1158.22013,517.7301442107856,1190999.9686749503,522327.6229920824,1850.82594,778.9486932172586,1890322.418293829,778895.1339339186,0.38178,100000,0,749992,7831.168424350006,0,0.0,0,0.0,30373,316.42476767254885,0,0.0,33724,348.031742716926,1582449,0,56788,0,0,6580,0,0,71,0.7309178239532212,0,0.0,0,0.0,0,0.0,0.06143,0.1609041856566609,0.3078300504639427,0.01891,0.3287245611309616,0.6712754388690384,24.27886685342416,4.338249527580016,0.3189089417555373,0.2434372436423297,0.2202625102543068,0.217391304347826,11.146091634468412,5.827904275388529,20.02397463703192,12322.97491544805,55.27088424833048,14.208691014133116,17.541491130218215,11.949378232038535,11.5713238719406,0.5621410992616899,0.785172704296546,0.6893890675241158,0.5810055865921788,0.1066037735849056,0.7132188200149365,0.908256880733945,0.803921568627451,0.749034749034749,0.1567796610169491,0.5049476957873904,0.7137150466045273,0.6486486486486487,0.5276073619631901,0.0922330097087378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023692363768908,0.0048340021889821,0.0072427749769225,0.0095966366073604,0.0118458112601299,0.0137935948856811,0.0160021200260926,0.0179287543750446,0.019861054352268,0.0218427729579309,0.0240544195385813,0.0260906143554807,0.0282813334977596,0.0305220139382147,0.0326195655535738,0.0345237111698612,0.0366319318687459,0.038804453751892,0.0407325839895285,0.0428449460663862,0.0571998079772912,0.0707880335262172,0.084429341556017,0.0974686737868976,0.1094571943621585,0.1252868822117164,0.1378187449616021,0.1499994677850277,0.1616093648199771,0.1719734980059179,0.1849830453738091,0.1968984200110307,0.2085449266536901,0.2189975057979258,0.2291194401038801,0.2393980696563722,0.2488138166635035,0.2582039162727886,0.2663812487224329,0.2748389167870491,0.2820982148028869,0.2882225475841874,0.2944019331453886,0.2998801102985253,0.305085775380279,0.3097453084761635,0.314137370198924,0.3187305221649812,0.3239349020420856,0.3286977173769627,0.3281550784142155,0.3269484626808206,0.3260101116791302,0.3249407068895702,0.3249260146037506,0.3226167307721777,0.3211727311542293,0.3221633850845123,0.3231094658910629,0.3239195854627041,0.3246622189830128,0.3260946605764687,0.3264683766396524,0.3270153818677025,0.3291439810040055,0.3298231929277171,0.3298491777203397,0.3340322984476715,0.3366184385265954,0.3399992080148893,0.3439629326792041,0.3465393542941549,0.3477312390924956,0.3506630500301386,0.3560705573278289,0.3581120943952802,0.3570563294972744,0.3480529907667603,0.3470780993992354,0.3584256782575468,0.0,2.5621807145841258,58.450126851624525,176.30200384979565,268.6949503513119,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,71 -100000,95755,44443,420.28092527805336,5976,61.15607540076237,4706,48.55098950446452,1871,19.153046838285206,77.31912755708531,79.66770242996229,63.32066847763053,65.057941756121,77.09210921351912,79.4429521526293,63.23614294332926,64.9767199838806,0.2270183435661863,224.75027733298705,0.0845255343012709,81.22177224039717,166.94414,116.95675399255546,174345.0890292935,122141.66779025164,359.90019,233.87814731815783,375277.0612500653,243668.2234015538,369.37742,179.1542416373582,381500.3811811393,183885.6172924354,2670.97708,1229.0422541343407,2756370.696047204,1250629.4722214066,1099.51999,491.0347092275466,1134677.4998694584,499383.9596933629,1825.26078,761.6921931103775,1870624.050963396,764844.4015010071,0.37709,100000,0,758837,7924.776774058796,0,0.0,0,0.0,30696,319.951960733121,0,0.0,33802,348.83818077385,1568279,0,56297,0,0,6542,0,0,58,0.605712495431048,0,0.0,2,0.0208866377734844,0,0.0,0.05976,0.1584767562120448,0.3130856760374833,0.01871,0.3377409590568743,0.6622590409431257,24.405504910116587,4.281336361660131,0.3159796005099872,0.241606459838504,0.2311942201444964,0.2112197195070123,11.328376041349117,6.033076628849703,19.80778819207214,12162.979226589528,53.3544349741241,13.761030436476874,16.707025286128953,12.03269351708282,10.853685734435436,0.5720356991075223,0.8091468777484608,0.6805648957632818,0.5799632352941176,0.1297786720321931,0.7517842981760507,0.9045454545454544,0.8746736292428199,0.7606837606837606,0.1813725490196078,0.5062409288824383,0.7489239598278336,0.6132246376811594,0.5304449648711944,0.1164556962025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019848302261288,0.0042258231234609,0.0068077594253479,0.0090597005829897,0.0110239903997721,0.0131170246351572,0.0154065765995411,0.0176551076256994,0.0197541972556798,0.0219999590507974,0.024032891431618,0.0263474037642081,0.0286827923814225,0.030554639854953,0.032810565414775,0.034921094242515,0.0368230897439879,0.0386274997925483,0.0407622530937957,0.0430553241126478,0.0581210855949895,0.0720524702658033,0.08509366281387,0.0972490956507108,0.1093318433869573,0.1246709030736859,0.1366162526780222,0.1478080442647371,0.1593682929173207,0.1694771711280968,0.1826992451245383,0.1951016255763111,0.2067288865683331,0.2170062001771479,0.2269921776154379,0.236899805102764,0.2459034692146269,0.2546524449245032,0.2629900347308923,0.2708354807306877,0.2784459905305442,0.2851742621070617,0.2916039936991461,0.2970456236350109,0.301571088087942,0.306337550138846,0.3112040992746088,0.315072681640401,0.3188526078273724,0.3236770494835011,0.322227164287736,0.3207082180276183,0.3194520857138826,0.3188653303422823,0.3188584685394762,0.3169045392528092,0.3159529620590193,0.3162916735096074,0.3176834266976363,0.3185206370770248,0.3190447604397253,0.3196071844928768,0.3200755588204428,0.3215222214751563,0.3228526683532104,0.3244217012166466,0.3250178393035536,0.3279426108296888,0.3312941672819323,0.3332540814709145,0.3344387407441057,0.3354043863841537,0.3377024387169954,0.337447619047619,0.3355269342859829,0.3355681016231475,0.3329275715155204,0.3369741100323624,0.3384700055035773,0.3440122044241037,0.0,2.2270431936059776,55.14637146565874,174.6582095184259,259.95704229962496,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,72 -100000,95679,44366,421.28366726240864,6008,61.62271762873776,4726,48.76723209899769,1889,19.37729282287649,77.34181859432726,79.72529776186096,63.3271521787835,65.08612923682125,77.10556577773025,79.49012307524178,63.240778537103004,65.00256353527953,0.2362528165970161,235.17468661917465,0.0863736416804954,83.5657015417155,167.21122,117.0958731131254,174762.48706612736,122383.88606560184,360.82014,233.75774226381455,376508.7323237074,243709.10899297387,365.3116,176.31503232115966,378203.9632521243,181460.40046584173,2718.02488,1247.6501861304716,2808156.816020234,1271437.849188925,1114.57458,499.7387787402947,1148711.9221563772,506160.913491002,1850.89684,771.6677715113876,1900758.68267854,777535.5071104869,0.37815,100000,0,760051,7943.749412096698,0,0.0,0,0.0,30722,320.4464929608378,0,0.0,33477,346.23062532008066,1571428,0,56390,0,0,6492,0,0,70,0.7316129976274836,0,0.0,0,0.0,0,0.0,0.06008,0.1588787518180616,0.3144141145139814,0.01889,0.3428072403937758,0.6571927596062243,24.304414383558328,4.257252927607861,0.3051206093948371,0.248836225137537,0.2204824375793483,0.2255607278882776,11.001879791449303,5.658543858889424,20.00096729137476,12128.542393776428,53.59359098999575,14.037346432443083,16.346728696415603,11.617219766317868,11.592296094819194,0.558611933982226,0.798469387755102,0.688626907073509,0.5585412667946257,0.1181988742964352,0.7326416600159616,0.931924882629108,0.8743169398907104,0.6864406779661016,0.1733333333333333,0.4958249352145119,0.7226666666666667,0.6254646840148699,0.5210918114143921,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873196220797,0.0043078544857435,0.0064222882826212,0.0087343340578091,0.0109102371171757,0.0127270505823898,0.014983334862245,0.0170370445984708,0.0191028117621807,0.0213332241421668,0.0234499164333979,0.0254190288390436,0.0273759799181086,0.0294293427858953,0.0312738682575397,0.0332743765579586,0.0351598930592112,0.0372631469656855,0.0394898362565799,0.0415320142609928,0.0563041888645147,0.0696904971311303,0.082988727723084,0.0962161707142556,0.1091584210637355,0.1247487888980558,0.1368575187810364,0.1475772800817508,0.1585487024434021,0.1687184986595174,0.1817232207277543,0.1940706930864411,0.2059399264849816,0.2171365479847393,0.2265842417309236,0.2362015503875969,0.2458399830362822,0.2549290863897605,0.2626938831084838,0.2697058857201735,0.2773460987003376,0.2844114999240041,0.2907418137956316,0.296605093557584,0.3019491165219503,0.306441279384949,0.3106943106317488,0.3159435042626288,0.3200150284374312,0.3243107703271614,0.3229389667568768,0.3218009739455801,0.3206441341805323,0.3195937355524734,0.3185517405251277,0.3163443562475099,0.3147061150225457,0.3155874198152675,0.3156365873246416,0.3178784309526359,0.3185857263118511,0.319713247491903,0.3214240837696335,0.3214852924728777,0.3235265816694732,0.3242600768005015,0.3263377305693564,0.3304569646962492,0.3331219391889511,0.3345269356250497,0.3379754349116479,0.3383298782756604,0.3401744806376702,0.3402603334094542,0.3422234699606962,0.3438914027149321,0.3460356484326982,0.3456314615852423,0.3484175458078845,0.3588756257219869,0.0,2.3895156072025143,54.69247748441456,173.22048141274595,266.6518192488001,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,73 -100000,95673,44441,422.3030531079824,6049,61.8878889550866,4714,48.6239586926301,1860,19.03358314257941,77.38307130315455,79.75871784723593,63.34642469116329,65.0971838117852,77.14399774828141,79.52255119148332,63.2564367796321,65.01120077930806,0.2390735548731442,236.1666557526121,0.089987911531189,85.98303247714512,165.65582,115.97952077375297,173147.93097321084,121224.92320064487,357.48642,232.13604544696372,373011.4870444117,241991.89473201815,367.25718,178.0180955291642,379839.23363958485,183004.44587181535,2688.82256,1253.2929452274643,2776329.7900139014,1275875.518931636,1102.49955,495.98003841024735,1138150.1154975805,504199.563523928,1811.74458,774.8089380699532,1856427.7486856272,777896.8146232719,0.37893,100000,0,752981,7870.36049878231,0,0.0,0,0.0,30548,318.64789439026686,0,0.0,33635,347.4648019817503,1577109,0,56707,0,0,6674,0,0,49,0.5121612158080127,0,0.0,0,0.0,0,0.0,0.06049,0.1596337054337212,0.3074888411307654,0.0186,0.3383375474083439,0.6616624525916561,24.03454035601212,4.390780384164242,0.3256257955027577,0.2327110733983877,0.2248621128553245,0.2168010182435299,11.302818704957696,6.00903360950531,20.04183543813516,12166.45561639142,53.81630215624206,13.143441572771216,17.400515995687645,11.958706981990565,11.313637605792634,0.5717013152312261,0.7857793983591613,0.7042345276872964,0.5971698113207548,0.1164383561643835,0.7364400305576776,0.9051094890510948,0.8807106598984772,0.7749077490774908,0.1502145922746781,0.5083700440528635,0.7142857142857143,0.6432953549517967,0.5361216730038023,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023283358472611,0.0043766336392924,0.0064299550714495,0.0086213899833461,0.0106146103400945,0.0126428942251901,0.0149646272095251,0.0171380742888056,0.0193086106795322,0.0211907784284017,0.0233964895013123,0.0256307569082899,0.0277174975059394,0.0295117428924598,0.0316104405240895,0.0337974016309571,0.0357205755902493,0.0375114174209084,0.0392495372007404,0.0412723558594238,0.0556002465550204,0.0695478291822398,0.0823978681885897,0.0952195675948515,0.1069824332018811,0.1226144785950666,0.1350890026822726,0.1471314003701418,0.158782161418037,0.1697884743147382,0.1826662362814719,0.1957527788590458,0.2071019423279675,0.217790505754916,0.2270987328405491,0.2372257921559938,0.2466831948539265,0.2556934651859527,0.2637687084099839,0.2719386702725002,0.2790240062967336,0.2862829578981876,0.2930840412801099,0.2984073260600823,0.303080796409589,0.3086680239373188,0.3130503400678883,0.3176469089890216,0.3217970653808265,0.3259577278731836,0.3246438477903751,0.3227120136481206,0.3215975664713835,0.3208752456931437,0.3205276762634816,0.3193690793709188,0.3173459205170038,0.3171108155591678,0.3170435496561869,0.3177294573781915,0.3191660283595195,0.3197147584902687,0.3205671685426107,0.3215940479372717,0.3221932489653357,0.3235713360114034,0.3251266378017375,0.3284108648142366,0.3303178484107579,0.3327826292187869,0.3361838830822135,0.3382553862322648,0.3390052356020942,0.3432633716993906,0.3449454814267233,0.3434848308729513,0.3507986266606956,0.3480210567362058,0.3481717011128776,0.3433934486566065,0.0,2.5613464238581787,56.90608482672061,180.169004350876,249.3386610739548,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,74 -100000,95689,44780,422.2428910324071,6152,63.13160342359101,4858,50.14160457314844,1999,20.47257260500162,77.3960056150407,79.78030833867537,63.35197710932333,65.11307577570828,77.13912812048751,79.52653829949918,63.25677122431348,65.02241809391852,0.2568774945531942,253.7700391761888,0.0952058850098467,90.6576817897644,165.1551,115.7023442306797,172595.70065524773,120914.98942478203,360.51676,233.63885985102348,376136.7555309388,243542.7268035233,368.15894,178.6536942215354,381184.9742394633,183914.8340031346,2773.41652,1283.5834452006566,2863787.185569919,1306833.8525856223,1149.59028,515.4336381334637,1185925.6340854226,523198.8401315347,1949.66114,824.374083153454,1997805.3276761172,825598.749244247,0.3813,100000,0,750705,7845.259120693079,0,0.0,0,0.0,30654,319.7023691333382,0,0.0,33671,348.2636457691062,1583153,0,56680,0,0,6480,0,0,69,0.7210860182466114,0,0.0,3,0.0313515660107222,0,0.0,0.06152,0.1613427747180697,0.3249349804941482,0.01999,0.3291119691119691,0.6708880308880308,24.448517544325696,4.358938197469361,0.3217373404693289,0.2313709345409633,0.2268423219431865,0.2200494030465212,11.140408187166686,5.819435352065007,21.34403974235528,12352.816354964169,55.372064708521584,13.509079701502449,17.645139854332843,12.477534175804204,11.740310976882077,0.5613421160971593,0.802491103202847,0.6871401151631478,0.5671506352087115,0.117867165575304,0.7143933685003768,0.9330024813895782,0.8604060913705583,0.678082191780822,0.1470588235294117,0.5038232795242141,0.7295423023578363,0.6287425149700598,0.5271604938271605,0.1095066185318893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023602824234934,0.0048873476506256,0.0072166622683258,0.0097434594869189,0.0120338534779158,0.0142956054249989,0.0167011633716365,0.0189792647193947,0.0214991105931423,0.0239311340163976,0.0261433887983268,0.0283276520596328,0.0302880709224234,0.0323235236555041,0.0344621226191213,0.0364072400996495,0.0387404184793867,0.0407938715771554,0.0426833073322932,0.0446813832780939,0.0592757392494176,0.0734162907766533,0.0865036659429182,0.0990684078817319,0.1111263374268697,0.1263364954471905,0.1388906571604388,0.1509299379331637,0.1625375255066611,0.1735474252126438,0.1856144243507857,0.1976158023409273,0.2094835456244837,0.219499130967086,0.229220500753219,0.2391816943973963,0.2489488183268087,0.2583837952612598,0.2661636588156657,0.2734413409098704,0.2800115473441109,0.2869369264180463,0.2931669974482563,0.2993227396735748,0.3047279517867753,0.3105012725461989,0.315035501703333,0.3195494444162565,0.3241592977473698,0.3280879953686648,0.3274723504778267,0.3264894667544437,0.3250699158199474,0.3233771290941344,0.3219290830626863,0.3205400694200217,0.3184830225680441,0.3193897637795275,0.3210468808686448,0.3217095053778784,0.3227177413315359,0.3233877969847659,0.3237458193979933,0.3241417744092733,0.3258243473666514,0.3268104816674907,0.3277585325685729,0.3315949860199177,0.3356586973287527,0.3380259285771096,0.3392840794653483,0.3429165777682952,0.3450088674942995,0.3474239412933802,0.3513436520748267,0.3543648404575557,0.3550478542760111,0.3625,0.3662952646239554,0.3662135922330097,0.0,2.4965543188406567,58.00113037600629,185.15894127927945,259.9744312159707,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,75 -100000,95814,44540,421.170183897969,6166,63.09098879078215,4806,49.50216043584445,1911,19.52741770513704,77.38566316619061,79.70565456094467,63.36611244363343,65.0838806068962,77.1429214265375,79.46646594119342,63.27596604247061,64.99754649218876,0.2427417396531126,239.18861975124628,0.0901464011628192,86.33411470744079,166.80664,116.78450433639456,174094.22422610476,121886.68079445024,361.59422,235.1678736308834,376737.68969044194,244789.11908865775,367.57788,178.89496418922673,379529.8912476256,183438.49150698807,2750.87988,1279.3581361892773,2834554.198760098,1298896.1359277498,1159.9359,515.9314341037016,1192350.5959463126,520519.2092041973,1875.1686,792.4527432592853,1918055.357254681,795417.8670017943,0.38003,100000,0,758212,7913.373828459307,0,0.0,0,0.0,30948,322.31197946020416,0,0.0,33639,346.9325985764085,1574863,0,56422,0,0,6605,0,0,68,0.7097083933454402,0,0.0,1,0.0104368881374329,0,0.0,0.06166,0.162250348656685,0.309925397340253,0.01911,0.3399814471243043,0.6600185528756958,24.22683753846005,4.3346516339743095,0.3160632542655014,0.243237619642114,0.2184769038701623,0.2222222222222222,11.252354236933993,5.831920010626868,20.431620345390726,12222.214987660993,54.80051297063196,13.965902737584384,17.405592509280563,11.667876216923062,11.76114150684396,0.5607573866000832,0.7604790419161677,0.7030941408821593,0.5628571428571428,0.1376404494382022,0.7230081906180194,0.9078947368421052,0.8341232227488151,0.7345132743362832,0.1631799163179916,0.497834247762056,0.6661991584852734,0.6526891522333638,0.5157766990291263,0.1302774427020506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193866285841,0.0044199791166124,0.0066781013082177,0.0088289679556214,0.0111172138817689,0.013287852560839,0.0153706591648064,0.0174507602816613,0.0199090398078593,0.0222783929265846,0.0244622306028961,0.0268711253438436,0.0289108829484372,0.0310348022110366,0.0329253328108726,0.0348400024789803,0.0367319909773813,0.0388171396587823,0.0407355873068616,0.0427683950925608,0.057673652038762,0.0722230352700131,0.0859475719810915,0.0984176683197444,0.1098985600370787,0.1245762085318068,0.1367974998675777,0.1486831196989987,0.1595260188355251,0.1696298517693428,0.1824516878340449,0.1944495457442556,0.2060579741613288,0.2168440587304186,0.2267475067000571,0.2373475458053672,0.2466606508249501,0.2558136922281888,0.2646958846990573,0.2725495352320409,0.2796215647995194,0.2864278795093542,0.2921280664887965,0.2977398496420333,0.3027961781125495,0.307936975770303,0.313133833123355,0.3174838652414825,0.3219398226433116,0.3255820074486425,0.3241746424346703,0.3232703538302988,0.3230059234871189,0.3218716152790815,0.3211368833714472,0.3198450609345336,0.3180507588479452,0.3175933228180862,0.3178214939990069,0.3186671674625744,0.3197398751850672,0.3203895024343902,0.3222336820391925,0.3236384053902302,0.3252980004352136,0.3260327868852459,0.3248201335741107,0.3282681493650091,0.3304129720563818,0.3348506628334132,0.3402269399707174,0.3418004038686364,0.346316253860213,0.3500342648290566,0.3488592255987882,0.3541269083969465,0.3565472513897467,0.3574190922043558,0.3571625724537676,0.3597397627248374,0.0,2.5193358639255368,58.42794495573311,178.63517897942916,258.9836805389686,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,76 -100000,95770,44485,420.87292471546414,6187,63.31836692074763,4874,50.360238070376944,1902,19.50506421635168,77.37657405990127,79.72114032384704,63.3458979718325,65.07878478791181,77.13516881709393,79.4798279113113,63.25541095108815,64.99038705306953,0.2414052428073461,241.3124125357342,0.090487020744348,88.39773484228886,166.3574,116.45615382158698,173705.12686645088,121599.82648176567,358.70083,232.1742094928481,374033.2880860395,241918.19932426448,371.54655,179.2358265011409,384404.9284744701,184360.52207699767,2796.70596,1291.24805128306,2891952.3441578783,1320000.888882803,1151.96442,509.9893858037681,1189627.336326616,519297.3434308955,1868.39764,793.212831444501,1918511.4127597369,801068.4138343369,0.37893,100000,0,756170,7895.687584838676,0,0.0,0,0.0,30563,318.5861960948105,0,0.0,34042,351.93693223347606,1575964,0,56543,0,0,6544,0,0,65,0.6682677247572308,0,0.0,1,0.0104416831993317,0,0.0,0.06187,0.1632755390177605,0.3074187813156618,0.01902,0.345216049382716,0.654783950617284,24.39428204595762,4.371083621475578,0.3077554370127205,0.2439474764054165,0.2240459581452605,0.2242511284366024,11.156035239083169,5.702226766483665,20.247987063936083,12239.42976012647,55.27269452342335,14.234466961700836,16.94080000233388,12.085867507379849,12.011560052008788,0.5697578990562167,0.7939444911690496,0.706,0.5906593406593407,0.1180237877401646,0.7311178247734139,0.925925925925926,0.8630490956072352,0.7462121212121212,0.1535269709543568,0.5095774647887324,0.7186261558784677,0.651392632524708,0.5410628019323671,0.107981220657277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024511293426516,0.0046021753895123,0.0067777349378031,0.0091531553496688,0.0113701082092588,0.0133196199631368,0.0155295653149249,0.0176420141299465,0.0197200952780134,0.0218239141783787,0.0240140209904886,0.0262674372055306,0.0285279573982502,0.0306069905872175,0.0324547377108371,0.0345009353908486,0.0364779092763437,0.0383913196821642,0.0406561535183009,0.0428312575498812,0.0578289865055261,0.0717878467828796,0.0850035640907375,0.0972152164775115,0.110148593107809,0.1250317097919837,0.1384453915145347,0.1502867417834381,0.1608641790725987,0.1705985802217599,0.1836659952389672,0.1956797004361424,0.2068357653510919,0.2173703679383632,0.2271761272917469,0.2375250828704781,0.2468365033449858,0.2555014013799935,0.2641293120083544,0.2713341655881713,0.2786365529689452,0.2853233539936849,0.2920491105223315,0.2969204786373926,0.3029993804438937,0.3080326333431923,0.3131016377047131,0.3181644942449881,0.3228004395888551,0.3267818773809994,0.3250497285092199,0.3240034626324251,0.3239248445982055,0.3223622479176591,0.3214646015073289,0.3201866442285627,0.3186166764180331,0.31971027792344,0.3199215084037198,0.3206377482853834,0.3214439513939598,0.32175989893806,0.323293635012663,0.3241646791342532,0.3249969998799952,0.3270998827972392,0.3278627908299675,0.3316313745144719,0.3351317264573991,0.3375381808084414,0.3391221113086284,0.3418004038686364,0.3474352527030425,0.3510170006071645,0.3571294910179641,0.3587714116952156,0.360317702764625,0.3634726945389078,0.3631421581951617,0.3667676003028009,0.0,2.1075828712712537,58.17632380685558,180.9195741594866,265.6097983464882,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,77 -100000,95733,44773,424.5871329635549,5951,60.66873491899345,4673,48.03986086302529,1852,18.906751068074747,77.3313489084019,79.69789719182828,63.31030609897547,65.06302284309928,77.08973190212967,79.45906659778463,63.21986209559126,64.97641120092791,0.2416170062722358,238.83059404364812,0.0904440033842064,86.61164217136275,167.35994,117.38683515534782,174819.2577272205,122618.75753956084,363.31533,235.5289475913181,378738.240732036,245256.17873807155,375.96797,182.76496072757288,386965.7693794199,186560.41596791084,2668.20108,1246.256212443632,2746080.2022291166,1260756.575521119,1128.32212,508.76580210623257,1158616.892816479,511456.01590489456,1809.46062,772.2027917399745,1848921.772011741,771791.7082762147,0.38078,100000,0,760727,7946.32989669184,0,0.0,0,0.0,30928,322.27131710068625,0,0.0,34379,353.3891134718436,1563522,0,56065,0,0,6563,0,0,74,0.7729831928384151,0,0.0,1,0.0104457188221407,0,0.0,0.05951,0.1562844687220967,0.3112082003024701,0.01852,0.3349951752975233,0.6650048247024767,24.45825007898931,4.342508899018752,0.3184249946501177,0.2356088166060346,0.2285469719666167,0.2174192167772309,11.345404135917727,5.904348101167215,19.88263157695024,12259.824673640182,53.44377511723551,13.28471756602536,16.871934616077098,11.958912003093532,11.328210932039523,0.5762893216349241,0.7901907356948229,0.717741935483871,0.5814606741573034,0.1318897637795275,0.7384615384615385,0.9255583126550868,0.8975,0.7358490566037735,0.1422413793103448,0.513785947227987,0.7120343839541547,0.6516544117647058,0.5305105853051059,0.1288265306122449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.0046949308942677,0.0070337477797513,0.0092156065840276,0.0114956560662475,0.0140644254565082,0.0161515636630604,0.0181647385564189,0.0201904489153003,0.0222258639408402,0.0246348867738759,0.0267221451687471,0.0285987733091837,0.030516335154076,0.0323692739621395,0.034630020267196,0.036655828690952,0.0385285877347722,0.0405293029250951,0.0423384576927884,0.0570354906054279,0.0707252503479234,0.0840982282411438,0.0970292865029707,0.1092483050221955,0.1249709123987222,0.1371417049590899,0.1490232003238245,0.1608507454710629,0.171544165781312,0.1839132496874057,0.1958539570449154,0.207543471869862,0.2187161267011923,0.2282923498772148,0.2386591707971569,0.2487378814278693,0.2576642911023294,0.2657564098198781,0.2741295927021018,0.281262300016207,0.2882838573686984,0.2944718376635691,0.2999075286120885,0.3057181449797388,0.3108519958047998,0.3151764131210781,0.3188782332938524,0.3238170592508042,0.3277512909573555,0.325928721626139,0.3246442236230009,0.3229891534018876,0.3216901408450704,0.3204551861248349,0.3182833195680768,0.3164912945934843,0.3164872261278534,0.3173787617568236,0.3184061870734359,0.3186751497005988,0.3193098138313624,0.3197824040171566,0.3201564245810055,0.3209538232254032,0.3227109281359112,0.3242444059025902,0.328628905513296,0.3293052423900789,0.3337319620505461,0.3373153383184388,0.3406104281475201,0.3430006277463904,0.3485779294653015,0.3525581395348837,0.3533178114086147,0.3579970104633782,0.362406899255194,0.365219721329046,0.3682835820895522,0.0,3.004763321070163,56.0157779095894,180.6422393290817,245.19539462375144,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,78 -100000,95493,44770,424.7222309488654,6012,61.826521315698535,4746,49.1449635051784,1869,19.16370833464233,77.22623088476638,79.71338929790134,63.24095407219974,65.07622433746167,76.99215760175689,79.4818817644846,63.15406018880056,64.99336857675985,0.2340732830094936,231.507533416746,0.0868938833991777,82.85576070181833,166.02278,116.3301548477466,173858.5864932508,121820.60972819642,360.5513,233.6329637515057,377026.5569204025,244118.0335223584,366.08494,176.98858826632954,380193.4173185469,182905.90439092225,2710.4522,1250.2664217051024,2806305.6349680084,1277344.2255968065,1092.04794,483.58663910839294,1129674.9081084477,492516.9864923661,1828.26238,771.3132755043558,1876130.2713287885,774095.0976969358,0.38182,100000,0,754649,7902.663022420492,0,0.0,0,0.0,30669,320.5994156639754,0,0.0,33478,347.4495512760098,1568232,0,56302,0,0,6643,0,0,73,0.7644539390321804,0,0.0,1,0.0104719717675641,0,0.0,0.06012,0.1574563930647949,0.310878243512974,0.01869,0.3328035600762873,0.6671964399237127,24.40113422565907,4.293291947453568,0.314369995785925,0.2439949431099873,0.2214496418036241,0.2201854193004635,11.15506823022502,5.809353903749138,20.11887093328611,12315.627601393711,54.15031429261364,13.889624863501393,17.149029769044503,11.606511086374791,11.50514857369296,0.5611040876527602,0.7910189982728842,0.717828418230563,0.560418648905804,0.0832535885167464,0.7327117327117327,0.9268867924528302,0.8798076923076923,0.7181818181818181,0.1145374449339207,0.4972535414859786,0.7125340599455041,0.6552044609665427,0.5186522262334536,0.0745721271393643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021279829761361,0.0041993366265329,0.0064064816130931,0.008703609557702,0.0111988923277406,0.0134434082454262,0.0157756711803181,0.0181472625835325,0.0202461456617594,0.0224073277186942,0.0246448513713253,0.0268250051408595,0.0288932822603896,0.0308590406056293,0.0330626330254375,0.0351910712621781,0.0375103734439834,0.0391995841995842,0.0414027337889648,0.0431704260651629,0.0577102241204241,0.072198264555594,0.085154491723282,0.0978761528326745,0.1100518923260655,0.1253895567003752,0.1379358007889336,0.1494569276401425,0.1607471830684203,0.1714605099101423,0.1847009285251565,0.1969695326312135,0.2089615699100572,0.2196731374203943,0.2293919068002294,0.2388004977556553,0.2481431767337807,0.2575209368906322,0.2659002262932259,0.2730777615862124,0.2800473103816139,0.2865802185433569,0.2929598519362186,0.2990685655910101,0.3044548723261625,0.3098624647504081,0.3156631653013017,0.3204728434504792,0.3251884585391213,0.328924372418176,0.3279355510198564,0.3272273335448363,0.3262232135294616,0.3257671108024825,0.3245155428452269,0.3227709085323708,0.3212362816257167,0.3218068895075863,0.3224467391677244,0.3227159475882342,0.3232355482101942,0.325053482291419,0.3269614117548314,0.3276163181227889,0.3283187542055176,0.3276010318142734,0.3283114515991228,0.3313001100455903,0.3330404217926186,0.33595737913486,0.3384917374235369,0.3405666383701188,0.3445573112616002,0.3470437017994858,0.3526467043663669,0.3531264582361176,0.3580865603644647,0.3607556368068251,0.3604172385396651,0.3576057948913458,0.0,2.185660820428009,56.587014199673405,184.50096655013667,251.23089468388997,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,79 -100000,95716,44734,423.5133102093694,6136,62.90484349534039,4791,49.53194868151616,1896,19.484725646704835,77.36399481233721,79.75100375955982,63.33329461681414,65.09834269406562,77.12775818661002,79.51312167613692,63.24630779554269,65.01287257910154,0.2362366257271873,237.8820834229032,0.0869868212714592,85.47011496408174,166.71116,116.71750246830716,174172.7192945798,121941.47526882356,360.2935,233.462942716639,375928.172928246,243421.00873066048,370.36657,179.61156738328174,383745.5075431485,185086.31948111567,2744.12836,1263.6742303794977,2840070.2494880687,1293354.8313547352,1155.47114,514.6662575532812,1195081.0000417903,525595.352452339,1857.24128,779.4276912543711,1910665.4477830247,789160.2926304988,0.38113,100000,0,757778,7916.941786117264,0,0.0,0,0.0,30704,320.24948806887045,0,0.0,33776,349.7116469555769,1574100,0,56497,0,0,6679,0,0,74,0.7731204814242133,0,0.0,1,0.0104475740733001,0,0.0,0.06136,0.1609949361110382,0.3089960886571056,0.01896,0.3360086433091526,0.6639913566908473,24.55019836579108,4.327237384882596,0.3180964308077645,0.2377374243372991,0.2181173032769776,0.2260488415779586,11.162010671528105,5.861407856165132,20.20499290057204,12291.904046956704,54.28896874955892,13.593132372406668,17.23065930162491,11.62431306744698,11.840864008080349,0.5631392193696514,0.7664618086040387,0.69750656167979,0.600956937799043,0.123730378578024,0.7361769352290679,0.905940594059406,0.8546365914786967,0.7698744769874477,0.1830357142857142,0.5009929078014185,0.689795918367347,0.6417777777777778,0.5508684863523573,0.1082654249126891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188225043312,0.0047968196983986,0.0071570697636644,0.0096855499319064,0.011905004171839,0.013896529942743,0.0159839242727161,0.01799501613628,0.0202203062195084,0.0225273656293838,0.0246733802325819,0.0269182183241072,0.0290169617050165,0.031097372488408,0.0331489431968295,0.0350603294078722,0.0370842267731543,0.03902788298899,0.040997068668011,0.0430714732235882,0.0572183466310205,0.0706390906616985,0.083977633939343,0.0967043136265169,0.1090288171680333,0.1243590150241591,0.1373565778032279,0.1498585136486457,0.1610709596148303,0.1710393758172036,0.1846307814820394,0.1965494862087615,0.2082594843802668,0.2192406945720159,0.2287172604969914,0.2391723130065099,0.2484133269383066,0.2568225518086649,0.2649891658252691,0.2728792023900825,0.2808297584496375,0.2879204124338037,0.2943981634874805,0.2999053472796329,0.3062671490663623,0.3117714398256995,0.3165864332603939,0.3211867098659551,0.3254617601819897,0.329694495654464,0.3278963844737938,0.3249306642502128,0.3235595912458007,0.3228388473852721,0.32158048404547,0.3199218809600098,0.3184741488020176,0.3183094911489973,0.3188548696938272,0.3190293196697979,0.3199985045051781,0.3209143623525699,0.3220076897358743,0.322690992018244,0.3235188251385789,0.324321503131524,0.3254280821917808,0.3288833045390293,0.3319289375746085,0.3350646261200539,0.3377125193199382,0.3427254912345744,0.3457117595048629,0.3484211331141524,0.3582994034655809,0.3624417632301995,0.3665067327039158,0.360706220488606,0.3655133928571428,0.3634585289514867,0.0,2.0364998964417547,55.45152585407977,182.96782346704296,261.1570340665039,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,80 -100000,95673,44701,423.6200390914887,6188,63.62296572700762,4900,50.67260355586215,1868,19.200819457945293,77.31725194233033,79.7270062328113,63.30264576078415,65.08565655112115,77.09448240640336,79.50355644905986,63.221612457407424,65.00647914302412,0.2227695359269716,223.4497837514482,0.0810333033767278,79.17740809702423,166.66958,116.76536010572946,174207.54026736907,122046.3036653282,362.6322,234.3591184077539,378516.4884554681,244442.00391725343,375.55317,181.05920696615465,389214.1565540957,186612.69185935208,2799.0854,1275.471685715566,2895758.092669823,1303235.945058236,1173.04655,514.9918347637072,1211197.5060884473,523380.9693055582,1832.41606,756.3700054154102,1885431.8773321623,765300.0902107372,0.38075,100000,0,757589,7918.524557607684,0,0.0,0,0.0,30898,322.4107114859992,0,0.0,34331,355.4398837707608,1571398,0,56381,0,0,6584,0,0,63,0.6584929917531592,0,0.0,0,0.0,0,0.0,0.06188,0.1625213394615889,0.301874595992243,0.01868,0.3322070342497312,0.6677929657502688,24.53817075785243,4.440584473353348,0.3185714285714285,0.2355102040816326,0.2306122448979591,0.2153061224489796,11.619359539711644,6.057657057274444,19.70790818420276,12294.770445926322,55.458942958259335,13.6943491137912,17.686257384077223,12.609180542498622,11.469155917892287,0.5704081632653061,0.7686308492201039,0.7033952594490711,0.6026548672566372,0.1222748815165876,0.751170046801872,0.8931297709923665,0.8875878220140515,0.7692307692307693,0.1633663366336633,0.5063571033720288,0.7043363994743759,0.6340388007054674,0.5528735632183908,0.1125439624853458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0045733407696597,0.0069212580046074,0.0090642116066619,0.0110189754286005,0.0129978608536212,0.0151082365902923,0.0172646289637136,0.019326389883571,0.0214841148688106,0.0237098594439314,0.0260897264637579,0.0282149731849671,0.0303623898139079,0.0322847169148782,0.0343503947191441,0.036509894575347,0.0385797661328847,0.0407212043655128,0.0428424004252968,0.0575655317237272,0.071550487439659,0.0848274269398723,0.0978517022261499,0.1098710997658277,0.1256758901645415,0.1384334574936593,0.1501969971249068,0.1622389877962769,0.1723712578704051,0.1859606043961961,0.1985324357670079,0.210297813999543,0.2201939282509247,0.229996696399075,0.2398275785647799,0.2494923801236138,0.2574275240087263,0.2653716177904788,0.2727824195948266,0.2799708532367943,0.2860934120535453,0.2929349112426035,0.2991121176174557,0.3046937635140059,0.3092379379206627,0.3145677961859953,0.3191548866063256,0.323225789759644,0.327500790555497,0.3263709677419354,0.3257104399302264,0.324724595323741,0.3239544274588982,0.3232864909830951,0.3219741660665308,0.3193145678074714,0.3201240523776705,0.3212787723785166,0.3210470085470085,0.3214365881032547,0.3225761909458526,0.3235337258764117,0.3255236860342939,0.3273546925098238,0.327656462229652,0.328668737709123,0.3298363539278198,0.3323626412181601,0.3382865747345062,0.3417767653758542,0.3459944751381215,0.3482097831568331,0.3544400366188587,0.3547020615645297,0.3581384360973305,0.3604294478527607,0.3615166261151663,0.3674844971690482,0.3724681170292573,0.0,2.126837777964987,56.44170400609995,184.7374136401561,270.5411494966321,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,81 -100000,95855,44396,418.8513901204945,6066,62.05205779562881,4798,49.44968963538678,1864,19.101768295863543,77.4717338221379,79.75796836056055,63.40399372213196,65.09056680372191,77.23302756347141,79.52193813491253,63.31401960427176,65.0041858602344,0.2387062586664967,236.03022564802245,0.0899741178601942,86.38094348751224,167.85142,117.53888283839667,175109.25877627666,122621.0937753865,359.35413,232.78236355608655,374301.8621876793,242257.11455436496,368.16638,178.35989581986576,380436.7116999635,183183.7009201205,2755.85816,1275.8144235811462,2841981.325961087,1297961.9879830433,1154.87652,515.1307369080953,1188579.594178707,521258.62233979866,1830.72254,783.6079059025099,1876723.1547650096,787652.9160715119,0.37899,100000,0,762961,7959.51176255803,0,0.0,0,0.0,30620,318.8148766365865,0,0.0,33717,348.1299880027124,1571960,0,56397,0,0,6584,0,0,78,0.8032966459756924,0,0.0,0,0.0,0,0.0,0.06066,0.1600569935882213,0.3072865150016485,0.01864,0.3471502590673575,0.6528497409326425,24.234807407263,4.286610206003642,0.3199249687369737,0.235931638182576,0.2215506461025427,0.2225927469779074,11.087759870790258,5.762856992394405,20.0327527262462,12188.49364409407,54.60649083216777,13.74335465770089,17.35647165839589,11.715614773147507,11.791049742923486,0.5698207586494373,0.784452296819788,0.70814332247557,0.5917215428033866,0.1217228464419475,0.7074102368220015,0.8977272727272727,0.8402061855670103,0.7226890756302521,0.1358024691358024,0.5182000573230152,0.7124277456647399,0.6634699215344376,0.553939393939394,0.1175757575757575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368660795627,0.0046904600297839,0.0070169745888174,0.0090133982947624,0.0113811885212584,0.0134504054452776,0.0157994458479341,0.0181254398759677,0.0204746441190286,0.0228769532847909,0.0249595444396648,0.0271575816624788,0.0291854576086621,0.0314130199919744,0.0334810844242861,0.0351924328008343,0.0372902745308976,0.0392583610567007,0.0413465132699256,0.0433321192569852,0.0576624297467232,0.0709910098264687,0.084266895821762,0.096654548511148,0.1086752600680867,0.1245057617084258,0.136719329869579,0.1491745032126292,0.1604176453004227,0.169717690939101,0.1824002927186242,0.1946561172541262,0.2051671897568445,0.2157434402332361,0.2257664129348315,0.2367138008424451,0.2465910610044115,0.2554128110681879,0.2633987224210574,0.2707613841685154,0.2785989791440516,0.2852726021164145,0.2920898483631726,0.2975229346825027,0.3025214162642269,0.3064839777917297,0.3109503099380123,0.3153956578629775,0.3202115006722515,0.3240581007940793,0.3235638133394281,0.3221899091881807,0.3211742397640283,0.3193376529877609,0.3188965884861407,0.3173772392956328,0.315671618254644,0.3160614136921794,0.3169458379389507,0.3176119615015804,0.3185538754125259,0.3203530429312785,0.3204751484839012,0.3212245170182966,0.3229729084046061,0.3239119170984456,0.3250791497060153,0.3285037701751106,0.3316492490829815,0.3333594208569752,0.3391729020117389,0.3434460276565539,0.3464064552448864,0.3466970387243736,0.3501413760603205,0.3505815333491573,0.3513390830685429,0.349402390438247,0.3462887989203779,0.356282919488337,0.0,2.351866801784601,57.02588886152899,184.67481969626647,254.75464358381183,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,82 -100000,95739,44637,421.4374497331286,6048,61.99145593749673,4720,48.70533429427923,1838,18.801115532854947,77.34438518034166,79.69639151936927,63.33412346583962,65.07199130734514,77.10641446325836,79.46268331920352,63.244725606955576,64.98727449517324,0.2379707170833001,233.70820016575067,0.0893978588840411,84.71681217190508,165.97042,116.23102519886376,173357.16896980332,121404.0518481118,359.39183,233.91389887910145,374799.0891904031,243736.5847555348,367.44444,178.42558358284,380574.63520613336,183895.70710221876,2722.5078,1266.5443946314028,2809411.42063318,1288669.421347577,1116.99235,501.9762801903736,1149614.9531538873,507342.000229592,1807.0312,774.7583282484208,1849272.1879275949,775290.1234876427,0.38066,100000,0,754411,7879.871316809242,0,0.0,0,0.0,30761,320.6843606053959,0,0.0,33611,347.7788571010769,1573023,0,56519,0,0,6633,0,0,51,0.5326982734308902,0,0.0,0,0.0,0,0.0,0.06048,0.1588819418904009,0.3039021164021164,0.01838,0.3285488958990536,0.6714511041009463,24.38248871259438,4.380470996197792,0.3186440677966101,0.2298728813559322,0.2288135593220339,0.2226694915254237,11.172256891646436,5.683852464031371,19.914688502050204,12267.027769780543,53.95366028793203,13.18788883622472,16.998601554938396,12.010496567161107,11.75667332960781,0.5548728813559322,0.808294930875576,0.6735372340425532,0.5648148148148148,0.1132254995242626,0.7268656716417911,0.9225512528473804,0.8629441624365483,0.7218045112781954,0.1535269709543568,0.4866863905325443,0.7306501547987616,0.6063063063063063,0.5135135135135135,0.1012345679012345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0046840306996644,0.0067370813421402,0.0092115820155794,0.0113264330886389,0.0136512170044689,0.0157151301441063,0.0181335782437879,0.0203533222302827,0.0226849483270234,0.0246946471022214,0.0271268897989346,0.0293857574698225,0.0315547728653669,0.0335269298616627,0.0357043206878378,0.0376672980778188,0.0398120877753349,0.0420499069830283,0.0438849595316715,0.0580380447265665,0.0718449446903812,0.0848892338675841,0.0979103347460746,0.1101374081221593,0.125212812080324,0.1373385095144148,0.15001329999468,0.1609078771695594,0.1712496917848604,0.1848646321115237,0.19647995499881,0.2078376791422917,0.2179540435951813,0.2281795785491179,0.2393246609465817,0.2498939803138182,0.2586090555343125,0.267125774318713,0.2739129936903821,0.280576122165664,0.2869610997367651,0.2928569737994367,0.2978769341489744,0.3029540787187245,0.3075281023654109,0.3131102949471652,0.3179408090953121,0.3224614666649382,0.3270277410832232,0.3253357761582088,0.3236808059676842,0.322932961287504,0.3216288886318955,0.3204948993248669,0.3183136189994017,0.3161601421229617,0.3170335085413929,0.3180334034223977,0.3187411813034703,0.3196515548894717,0.3221410231088287,0.3235725357127896,0.324390243902439,0.3245052246352386,0.3248488953730721,0.3247836483716693,0.327608442640999,0.3305010357782381,0.3343002463641421,0.3366966639396418,0.3397367862449586,0.3426507537688442,0.3447312801932367,0.3453149864270336,0.3427224513847967,0.3395419847328244,0.3436665982344488,0.3461965574680733,0.3503875968992248,0.0,2.307740514730848,58.69072482599328,176.4515514303418,249.79200662267223,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,83 -100000,95667,44705,421.4828519761255,6079,62.28898157149278,4763,49.16010745607158,1890,19.34836463984446,77.28108161739658,79.6686010058942,63.29287913429015,65.05573697930161,77.04808790635636,79.43813261698122,63.20743946370782,64.97382871109637,0.2329937110402227,230.46838891298196,0.0854396705823319,81.90826820523966,165.39754,115.86544493589544,172888.35230539265,121112.84407151418,360.19093,234.2048496265081,375843.1747624573,244152.2394979544,370.6832,179.96342622664872,383574.5450364284,185089.47892729903,2724.91748,1251.9305250830066,2813442.503684656,1274041.8801984186,1136.31432,506.7246292263719,1169760.209894739,512054.93090555526,1846.85306,764.1371666886917,1892721.544524235,767447.4193596254,0.37953,100000,0,751807,7858.561468426939,0,0.0,0,0.0,30721,320.434423573437,0,0.0,33943,350.9047006804854,1571976,0,56422,0,0,6505,0,0,52,0.5435521130588395,0,0.0,1,0.0104529252511315,0,0.0,0.06079,0.1601717914262377,0.3109063990787958,0.0189,0.3325482807348092,0.6674517192651908,24.67529086296722,4.373017163838678,0.3298341381482259,0.2359857232836447,0.2162502624396388,0.2179298761284904,11.43031874804624,6.012536836399063,20.046640561243507,12316.584790783752,54.27289510439371,13.606768752954904,17.754002295663362,11.633962477116327,11.278161578659123,0.5719084610539575,0.802491103202847,0.6906429026098027,0.6009708737864078,0.1136801541425818,0.7587786259541984,0.9303944315545244,0.8728606356968215,0.7293233082706767,0.2058823529411764,0.5010136113524472,0.7229437229437229,0.6265060240963856,0.556282722513089,0.0911270983213429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0047445736473403,0.00699229730964,0.0092653737135658,0.0115940849826088,0.014011649219991,0.0162224442767706,0.01855065953363,0.020833120368004,0.0229889763457149,0.0250586992853554,0.0272598464002628,0.0297614150555327,0.0321872713972201,0.0341816830763514,0.0362803585645012,0.0385232911051492,0.0407277860234361,0.0427329089169059,0.0448713271698231,0.0590914789585858,0.0725759162303665,0.0856531049250535,0.0990614675617095,0.1112553016395518,0.1263567695660453,0.1387355638586956,0.1507257798272612,0.161921765252996,0.1723712181400442,0.1854691729485479,0.1976249038367771,0.2090397325754853,0.2194534466146973,0.2288701361653373,0.2383011754269239,0.2485527815650074,0.2577716705712741,0.2663273190019543,0.2746399743166391,0.2818534607587605,0.2879336402938385,0.2935847266690383,0.2991822471991066,0.3040035035217693,0.3087068635797214,0.3126895030946952,0.3171726440824858,0.3221701967600098,0.3263684092201489,0.3248498751771135,0.3236421813367169,0.3228880907265476,0.3216331028083453,0.3209221180084398,0.3201240576683914,0.3187426650172867,0.3190008392160735,0.3197164771949048,0.3202981179961037,0.3220669971458615,0.3228610554309643,0.3236731255265375,0.325401105568289,0.3257191201353638,0.3268079767909882,0.3272025171624714,0.3302297689685646,0.3334972428084717,0.3362712402731459,0.3400264080499021,0.3428541091526863,0.3461732442314966,0.3527941844616084,0.355578435043055,0.3581514762516046,0.3613266392819108,0.3622346816179415,0.360043313481321,0.3587962962962963,0.0,2.307523849455235,57.55823098037709,173.83386857666062,263.1029247451606,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,84 -100000,95734,44806,424.2275471619279,6072,62.26627948273341,4780,49.42862514884994,1906,19.564626987277247,77.3612597271838,79.7286684213483,63.34108899169471,65.09001705526354,77.11901075475089,79.48607995843317,63.25028373924447,65.00174822021732,0.2422489724329182,242.5884629151369,0.0908052524502451,88.26883504622174,166.11914,116.3726739063644,173521.57018405164,121558.3532562772,362.1612,235.09712210315027,377676.5516953225,244950.37510513532,372.92734,181.02229120452975,386908.1726450373,187045.7038984052,2720.02872,1260.3511229221033,2813084.170723045,1288361.9225375552,1116.23374,495.4357135876441,1149025.1008001338,500563.7115211351,1862.90134,790.958884436164,1913048.8645622248,796667.568677048,0.38214,100000,0,755087,7887.344099275075,0,0.0,0,0.0,30789,321.0875968830301,0,0.0,34005,352.59155576911024,1573884,0,56476,0,0,6550,0,0,90,0.9087680447907744,0,0.0,1,0.0104456097102387,0,0.0,0.06072,0.158894645941278,0.3138998682476943,0.01906,0.3301352626612142,0.6698647373387858,24.49790296453412,4.315402518972953,0.3173640167364017,0.2368200836820083,0.2238493723849372,0.2219665271966527,11.079691183151173,5.76546920642455,20.4102450704028,12301.509146245511,54.28314596082107,13.43894998708373,17.2707311742243,11.980825743591652,11.592639055921392,0.5625523012552301,0.7941696113074205,0.7040210942649967,0.5700934579439252,0.1055607917059378,0.7155688622754491,0.923809523809524,0.8543689320388349,0.6776556776556777,0.1341991341991342,0.5031939605110337,0.7176966292134831,0.6479638009049774,0.533249686323714,0.0975903614457831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026134257148934,0.0049578230188985,0.0072862332812404,0.0094177647285916,0.0115325943252313,0.0136555263640251,0.0158056818877082,0.0180936335324449,0.0200803623462533,0.0221846846846846,0.0243814913926568,0.0265598521029117,0.0287257019438444,0.0306164496456238,0.0327430706045033,0.0346952278554296,0.0367213793817635,0.0386862450059668,0.0408560108977092,0.0428648828873885,0.0575551587674508,0.071596796985398,0.0852041458604338,0.0986697513013302,0.110974080047223,0.1270470572065928,0.1397529031231772,0.1510311362717347,0.1613185780208511,0.1714426612635212,0.1843054493771063,0.1961791845609632,0.2078626643038084,0.2179506799003104,0.2277704485488126,0.2387866446807804,0.248893398298565,0.2578129389686134,0.2664301019193488,0.2742714557150378,0.2815914530507475,0.2877911393144713,0.2932945365080491,0.298522474197179,0.3042945678143912,0.3098629665165941,0.3149510875676216,0.3191854478892575,0.3238457655418786,0.3277686866554054,0.3270206608789286,0.3253800269386184,0.32442511750964,0.3235281369645308,0.3221439610080837,0.3206610810728016,0.3195171726440018,0.3197487536079769,0.319982259220088,0.3203233750936931,0.3217503699679673,0.3232039277017797,0.3255053258408119,0.326677994902294,0.3275430661149071,0.3291086314579141,0.3295951938206265,0.3325114588272483,0.3347312775330396,0.3393675983890905,0.3422023782404665,0.3425107216604013,0.3460548615906095,0.3487684729064039,0.350196005226806,0.3503004595263344,0.3461421164989326,0.3448484848484848,0.3517222066647997,0.3492573263749498,0.0,1.9820448298405744,58.78518496939759,174.7496566260607,258.0403793835249,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,85 -100000,95650,44598,423.1991636173549,6035,61.91322530057501,4718,48.72974385781495,1863,19.10088865656037,77.2430810454354,79.64684892763123,63.27207635196621,65.0496518395209,77.0100181267764,79.41470128868453,63.185672960197145,64.9662019038736,0.2330629186590016,232.14763894669943,0.0864033917690676,83.44993564730885,166.441,116.6077044450076,174010.45478306324,121910.82534762946,364.17575,236.4119607791636,380147.7783585991,246573.5083943164,367.33816,177.39930081519793,379628.1547307893,182209.6685453845,2708.3298,1238.478680662973,2797360.669106116,1260979.6938008713,1132.49021,503.51079421295566,1164287.820177731,506816.0913875938,1824.11256,763.212638639538,1870800.669106116,767858.5162353456,0.37994,100000,0,756550,7909.566126502875,0,0.0,0,0.0,31102,324.5582854155776,0,0.0,33559,346.48196549921585,1564697,0,56181,0,0,6649,0,0,69,0.7213800313643491,0,0.0,2,0.0209095661265028,0,0.0,0.06035,0.1588408696109912,0.3086992543496272,0.01863,0.3301367709479642,0.6698632290520359,24.86576004753177,4.349334781229558,0.3291649003815176,0.2225519287833827,0.228486646884273,0.2197965239508266,11.145895734806864,5.806654325344427,19.925699085677834,12240.912789307567,53.518402533125474,12.501046995594534,17.656462753246032,12.027869183072143,11.333023601212762,0.5635862653666808,0.7676190476190476,0.7173213135866066,0.5769944341372912,0.1128254580520733,0.7380015735641228,0.93646408839779,0.8744075829383886,0.7083333333333334,0.1928251121076233,0.4992747316507108,0.6787790697674418,0.6587091069849691,0.5343980343980343,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021992054483541,0.0045239689205363,0.0067916713196552,0.0092157002204858,0.0113718429912626,0.0133611691022964,0.0154065765995411,0.0174707714300301,0.0194087390455154,0.0217709645376998,0.0239462619218541,0.0260331087742359,0.0280445916205598,0.0301953269872666,0.0321112280919056,0.0340192327577292,0.0359455119904697,0.0378746989952669,0.0400045767066435,0.0421184320266889,0.0569093797023909,0.0708704305017283,0.0846920242307167,0.0980148622192282,0.110477698601214,0.1259911707725044,0.1376365104321591,0.149046405765274,0.1601348098218584,0.1706491972292326,0.1835748271062824,0.1958333784970246,0.207118119840561,0.2166704992170647,0.2274250071631659,0.2379003183688863,0.2469454598298623,0.2564943480857873,0.2643585401061617,0.2720226561335519,0.279597181662263,0.2872167242489898,0.2940995297155786,0.2992705108823459,0.3040251143774944,0.309711350897553,0.314862408324453,0.3192930104441639,0.3241488560521464,0.3270615010056102,0.3257893530070269,0.3238450834240366,0.3228055320349985,0.3221696132516687,0.3211853926724973,0.3196051944862309,0.3178354868408521,0.3186279353160096,0.319274221157138,0.3196727181580549,0.3192674709679848,0.3208559337187817,0.3230167574273039,0.3237143498764878,0.3259747153059255,0.3258821986094713,0.3265370679243112,0.3312031383466734,0.3337335357886931,0.3366074650202462,0.3399944746293397,0.3426749544528989,0.3470707583058585,0.3512498083116086,0.3506036695503375,0.3466571496550083,0.3477047146401985,0.3504308576118178,0.3570637119113573,0.3623356535189482,0.0,2.319922237974889,55.80001779785951,173.04497097753463,261.21389062613093,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,86 -100000,95825,44632,422.08192016697103,6009,61.52882859379076,4719,48.74510827028437,1876,19.27471954082964,77.44904619750217,79.7756095815526,63.38601454967061,65.1069818468207,77.21284429265641,79.53893828180743,63.29835540318757,65.02114413858601,0.2362019048457568,236.6712997451685,0.0876591464830482,85.83770823469195,167.0383,117.0440391975222,174315.99269501693,122143.53164364435,360.67741,233.66642167531236,375898.1267936342,243363.28973389423,372.31819,180.16016629747568,385352.5489172972,185552.60338719588,2711.78868,1250.97303255705,2802712.5280459174,1278764.891314827,1122.24933,498.53915869455966,1159455.3926428384,508784.6243074471,1835.16438,775.6186556036481,1886638.0172188885,785348.8093923669,0.37888,100000,0,759265,7923.454213409861,0,0.0,0,0.0,30676,319.6138794677798,0,0.0,34057,352.2254109052961,1574946,0,56479,0,0,6769,0,0,75,0.7826767545003913,0,0.0,0,0.0,0,0.0,0.06009,0.1585990287162162,0.3121983691129972,0.01876,0.3366132359942866,0.6633867640057134,24.5328502442084,4.307155736298963,0.3151091332909514,0.2441195168467895,0.2208094935367662,0.2199618563254927,10.965665201669836,5.6612810236471685,20.11314841899705,12217.184219783125,53.76076869775035,13.965348851343348,16.75348460049147,11.771579671665206,11.270355574250315,0.56728120364484,0.7881944444444444,0.7020847343644923,0.5950095969289827,0.1011560693641618,0.7107692307692308,0.8914549653579676,0.860655737704918,0.7472118959107806,0.0948275862068965,0.5127230184264405,0.7260083449235049,0.6503122212310437,0.5420439844760673,0.1029776674937965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090244371752,0.0047134907199983,0.0070926303613284,0.0094269664062738,0.0116843100765734,0.0138983637603983,0.0158029424059215,0.0179120015513528,0.0201124169647419,0.0219582322906754,0.0241123123430855,0.0261494252873563,0.0285773026315789,0.0307229783991928,0.032859249785992,0.0351674690579994,0.0372390523603018,0.0391115903859314,0.0411523916386153,0.0428790039662297,0.0576220975111092,0.0712605463726751,0.0840625884276386,0.0967724990019121,0.1081374398094977,0.1231017975462067,0.1360610557557769,0.1483533427620455,0.158910510818077,0.1695884513648679,0.1829630266921902,0.1957151191685213,0.2068358993290047,0.2181044360779178,0.2282028762762103,0.23750939558739,0.2471961419804648,0.2561874936862309,0.2650940619835646,0.2727999725817691,0.2799367504991863,0.2866508790144772,0.2932751297781972,0.2989733844848398,0.3042593153589821,0.308599176347655,0.313459091249345,0.3175372282401887,0.3218292856128391,0.3262696815437433,0.3255586123599275,0.3240273281018493,0.323206940603372,0.3217475224706153,0.3202509915349553,0.3179690478005642,0.314698195787021,0.3155102040816326,0.3167778853174401,0.3174992011928852,0.3191814522141046,0.3192078741085636,0.3203343198966192,0.3206807448988684,0.3214627837915509,0.3229657637126431,0.3249985825253728,0.3287589871834948,0.3318864423985718,0.3335306420425397,0.3346508563899868,0.3368029739776951,0.3397923875432526,0.3437736993781283,0.346679227508243,0.3465580351871531,0.349709213345577,0.3473127035830619,0.353638368246968,0.3477272727272727,0.0,1.93490961370091,57.0759551142859,183.42484890737617,246.19548535409143,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,87 -100000,95815,44297,419.3393518760111,6071,62.21364087042739,4781,49.386839221416274,1840,18.859260032354012,77.3497797498425,79.68243318470888,63.33168066437421,65.05976730896391,77.123337656039,79.45750009060981,63.24754887124941,64.97872193553499,0.2264420938034987,224.9330940990717,0.0841317931247971,81.04537342892115,165.67364,116.109098984256,172909.92015863903,121180.50303632628,360.41215,233.9995498689954,375583.9691071336,243649.92941501373,369.34937,178.05235948243651,382575.9536607003,183568.8204742032,2756.02512,1270.3121547536964,2847147.0229087304,1296541.204147259,1168.39999,512.895538815317,1206796.6080467568,522669.2828318713,1811.08002,754.6397773246737,1858057.9032510568,759874.158006511,0.37796,100000,0,753062,7859.541825392684,0,0.0,0,0.0,30693,319.81422533006315,0,0.0,33922,351.05150550540105,1576259,0,56545,0,0,6527,0,0,57,0.5844596357564056,0,0.0,0,0.0,0,0.0,0.06071,0.1606254630119589,0.3030802174271125,0.0184,0.3398394459310562,0.6601605540689438,24.29839138546461,4.422066613056446,0.3147877013177159,0.2380255176741267,0.2202468102907341,0.2269399707174231,11.355612460009556,5.8406680904402375,19.570972232910727,12143.852516343451,54.50781854248271,13.764006123284558,17.185997200375745,11.7169314839639,11.840883734858512,0.5768667642752562,0.7952548330404218,0.7169435215946844,0.5916429249762583,0.1391705069124424,0.7572298325722984,0.9280898876404494,0.8697674418604651,0.7364016736401674,0.16,0.5085087972310355,0.70995670995671,0.6558139534883721,0.5491400491400491,0.1344632768361582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0043395824672756,0.0067083443278462,0.0090115717928659,0.0111484080968365,0.0134820019347283,0.0155689233278955,0.0175678572522278,0.0196551406931937,0.0218425981842188,0.0237926828018164,0.0258842856409466,0.0278443267698318,0.0300577677550894,0.0320184848984981,0.0339946269890473,0.036249961182937,0.0383163222969048,0.0400756418648629,0.0422093810193138,0.0567657798643714,0.0710954492220177,0.0845745071116375,0.0972908215809495,0.1090217242360679,0.1237179893844234,0.1362170647884933,0.1481071531199778,0.1593710611207246,0.1693768100396868,0.1818034888857761,0.194556277056277,0.206147888702765,0.2163438415460627,0.2260111982575599,0.237428403664846,0.2464211195786795,0.2556483991048032,0.2645563875652371,0.2724483370542103,0.2793008513788635,0.285624086524408,0.2920536147357712,0.2972341954022988,0.3020255591829799,0.3069622590413353,0.3114604551191532,0.3154649921187776,0.3191225165562913,0.3225917083272876,0.3222653094199386,0.3216041646582473,0.3202954318012037,0.3189326924469025,0.3186286904142187,0.3170499992338456,0.3146001583531275,0.3156978939247197,0.3160691705683333,0.316516548716849,0.3163223217968428,0.3165483277625047,0.3173403141361257,0.3185147144196847,0.3187511998464196,0.3194411925388277,0.3215625,0.3244605893589703,0.3260778568438677,0.3264968704483722,0.3309183119000181,0.3336850991979738,0.335738939441481,0.3358516483516483,0.3396173325830051,0.3416127133608004,0.3457129756992205,0.3484299516908212,0.3483941208492107,0.3442812982998454,0.0,1.9645245262530453,57.9244843196095,178.97734677555258,259.2189014136778,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,88 -100000,95803,44639,421.7195703683601,6042,61.96048140454892,4737,48.90243520557812,1847,18.9138127198522,77.41775944651599,79.74308424476409,63.37436231324406,65.09421664511413,77.19111213625531,79.51992233055775,63.290657922508046,65.01422338044341,0.2266473102606738,223.16191420634368,0.0837043907360168,79.9932646707191,166.58026,116.62604343759428,173877.68650251036,121735.04320072888,359.7828,233.5665561718232,374998.5386678914,243252.9317159413,366.75695,177.53411790609178,379034.8840850496,182497.60527990083,2712.2184,1246.0299792417356,2799276.849367974,1268943.570067721,1127.20942,501.6198672975254,1163596.860223584,510711.26438681054,1808.97154,754.5926792729065,1853830.3602183647,758295.6988108308,0.38065,100000,0,757183,7903.531204659562,0,0.0,0,0.0,30697,319.8542843125998,0,0.0,33594,346.98287110007,1576668,0,56544,0,0,6631,0,0,68,0.6993517948289719,0,0.0,1,0.0104380864899846,0,0.0,0.06042,0.1587284907395245,0.30569347898047,0.01847,0.3396077190762417,0.6603922809237583,24.580623574091764,4.315941335813553,0.3156005910914081,0.2434029976778551,0.2206037576525227,0.220392653578214,11.394510455634588,6.0022617372338605,19.64168728096438,12273.227854641907,53.7727188315318,13.785813226002675,17.052503692194946,11.609266389320988,11.325135524013184,0.5704032087819295,0.7875108412836079,0.7163879598662207,0.5712918660287082,0.1206896551724138,0.7434885556432518,0.9275,0.8621553884711779,0.7312252964426877,0.1953488372093023,0.5072046109510087,0.7131474103585658,0.6633211678832117,0.5202020202020202,0.1013268998793727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0046019887889876,0.0069101277511136,0.0089476143080579,0.0112767428617912,0.0137220570870149,0.0158597492610335,0.0180554421490977,0.0203295243157055,0.0224034879436688,0.0244464944649446,0.0266172575909996,0.0288231242868743,0.031018366002306,0.033149797904809,0.0352100310889391,0.0372463183168265,0.0391888529484946,0.0411277672162142,0.0433515179277891,0.0584080214517492,0.0723321067157313,0.0856927221459344,0.0981417872036471,0.1106933341759086,0.1253776754209892,0.1390180604840845,0.1505251743493791,0.1614083755668178,0.1711016840210824,0.1838448798743897,0.1958689381745114,0.2066404638335758,0.2162790697674418,0.2262919669537704,0.2372377022886408,0.2473419075853153,0.2566388573866762,0.2652088240623301,0.2724518378780083,0.279350964314586,0.2859877220419691,0.2929760358871444,0.2992271987750023,0.3045719136551055,0.308707156482678,0.3138210163393794,0.317857914057439,0.3224976734567263,0.3266590313705356,0.3255564062269143,0.3244881132334753,0.3237726825151217,0.3230533998788333,0.3221608949820469,0.3204381013568292,0.3188955233311218,0.3203425633300037,0.3215835048740239,0.3218180201013964,0.322285329945445,0.3232750147434637,0.324384087448109,0.3248598879103282,0.3261396062633384,0.3261711138247291,0.3283294077584494,0.3315482901164975,0.3355451561081232,0.3363991631468835,0.3416866814700684,0.3429039763113367,0.3473380573148554,0.3510855586655571,0.3510977669356352,0.355946299156469,0.3599938118811881,0.3615899411883999,0.3653637350705754,0.3610260336906585,0.0,2.062796719157865,55.65863419307775,179.0681192745371,258.22176850324627,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,89 -100000,95720,44595,423.7254492269119,6080,62.233597994149605,4758,49.11199331383201,1853,18.96155453405767,77.3893283971574,79.74898377748386,63.35181630130408,65.09320161716155,77.15547230994346,79.51836238191535,63.26438598780632,65.00967213807675,0.2338560872139368,230.62139556850525,0.0874303134977623,83.52947908480246,165.23804,115.68686266085616,172626.45215211032,120859.65593486853,357.4197,230.90306642936676,372822.87923109066,240649.21273439904,364.20662,175.5005321774135,377005.3175929795,180626.96523795888,2710.49152,1251.5503803392292,2799865.691600501,1275689.8248424889,1132.40939,509.4989910505585,1165122.8374425408,514396.1965328991,1816.83708,772.4594212866144,1861457.5219389887,775533.8921349262,0.38193,100000,0,751082,7846.656916005015,0,0.0,0,0.0,30495,317.9690764730464,0,0.0,33376,345.1002925198496,1583444,0,56828,0,0,6427,0,0,69,0.7208524864187212,0,0.0,1,0.0104471374843292,0,0.0,0.0608,0.1591914748775953,0.3047697368421053,0.01853,0.3298388358629322,0.6701611641370677,24.233980380328678,4.309765726275862,0.3238755779739386,0.2385456073980664,0.2173182009247583,0.2202606137032366,11.155213929407276,5.782517661982078,19.95374715399494,12290.227081528725,54.0574075198096,13.498781765698949,17.392414684755238,11.481461352946432,11.684749716408962,0.5741908364859184,0.7947136563876652,0.7222582738481506,0.5754352030947776,0.116412213740458,0.7417582417582418,0.949748743718593,0.8929503916449086,0.7322834645669292,0.1631799163179916,0.5129161882893226,0.7109905020352781,0.6658031088082902,0.5243589743589744,0.1025957972805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020762226926076,0.0043783635866095,0.006532566466835,0.0085192368225988,0.0108372981985279,0.0129979846507745,0.0151332952877873,0.0173261770167955,0.0193017053756628,0.0212935771367761,0.0235167537657546,0.0254239896580381,0.0275380189066995,0.0294804887338006,0.0316502691665119,0.0337298101664789,0.0353552608421074,0.0372798373545215,0.0391555620231586,0.0411279989165876,0.056325379836057,0.0709868469241474,0.0839512906304737,0.0967646966048766,0.1087252142563486,0.1247567681895093,0.1372415914466636,0.1489647096396444,0.1603709084693615,0.1716329090850605,0.1838084059313181,0.1966986132444886,0.2072118102361177,0.2177160102346534,0.2278538109487766,0.2388241548890168,0.247871260057808,0.2567980927104653,0.2656569094622192,0.273746664070464,0.2812424112769869,0.2879221857207992,0.2944675014484528,0.3007017291756478,0.3056358206055897,0.3111239718268236,0.3170969678775142,0.3204851135236836,0.3247948432524787,0.3295978905735003,0.328390912757091,0.3273691732629727,0.3254918493535694,0.3242708634132255,0.3237846578350072,0.3222493887530562,0.3198289195416811,0.3194587607781541,0.3209150994821477,0.3223835396811259,0.3248864719403487,0.3264831177027453,0.3280122183400631,0.3287793552995803,0.3301623906985683,0.3318200684860434,0.3336358222499503,0.3373452544704264,0.3418842145620578,0.3437955342023392,0.3476942571389781,0.3498545358370801,0.3497521490870302,0.3517610679538426,0.3529576675077095,0.3550469483568075,0.3575858417788534,0.3655268946210758,0.3725381414701803,0.3797761482053261,0.0,2.281675161428938,55.69028350218649,180.8541865905761,258.5859305765275,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,90 -100000,95673,44383,421.1951125186834,6067,62.15964796755616,4728,48.84345635654783,1837,18.77227639982022,77.35982293729873,79.73400212362758,63.33991942654043,65.08937081311203,77.12852262412817,79.50725792915958,63.2530580612878,65.0070736834975,0.2313003131705642,226.7441944679973,0.0868613652526306,82.29712961453117,166.35608,116.43084566905792,173879.86161194902,121696.66015391795,357.84689,231.4564597970713,373456.0220751936,241349.33554615345,360.2593,174.31237948001962,373409.1122887336,179736.95569414887,2704.57732,1240.8156273121524,2794944.6970409625,1265126.286245616,1101.12927,483.201972798736,1136994.2407993898,491163.37832746113,1793.52692,757.367421692147,1834984.9800884265,757687.0596985767,0.37944,100000,0,756164,7903.63007327041,0,0.0,0,0.0,30570,318.9301056724468,0,0.0,33061,342.38499890251165,1576919,0,56544,0,0,6533,0,0,53,0.5539702946494831,0,0.0,0,0.0,0,0.0,0.06067,0.1598935273033944,0.3027855612328993,0.01837,0.3458457672373174,0.6541542327626826,24.410514528502947,4.315680217686051,0.3238155668358714,0.2347715736040609,0.2246192893401015,0.2167935702199661,11.225423198803789,5.888528578062817,19.503327723388544,12179.581061668348,53.25416741311136,13.260153579104465,17.24086688552012,11.71292291243765,11.040224036049118,0.5653553299492385,0.7981981981981981,0.6956237753102548,0.5743879472693032,0.1092682926829268,0.7345340642129993,0.9074550128534704,0.8723897911832946,0.7032520325203252,0.1706161137440758,0.5027528252680382,0.739251040221914,0.6263636363636363,0.5355392156862745,0.0933660933660933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.0041252369223908,0.006543905037285,0.0085718348195242,0.0108182853424434,0.0128861519670212,0.0150500820265134,0.0172427865975594,0.019407955218697,0.0214624764710696,0.0236031716761939,0.0257912285201333,0.0277406623224453,0.0296228416099504,0.0317692807558613,0.0335800070281332,0.0355297893265697,0.0376493528045137,0.0398186846318591,0.0418651186543131,0.0564488324713994,0.0702527801629353,0.0834899075250081,0.0960362806065006,0.1079396221638555,0.1236706489878414,0.1361045357563663,0.1480128252926702,0.1591365891207663,0.1701246149387658,0.182976109656354,0.1950382258029584,0.2066076131194637,0.2159523705292649,0.2258650690513425,0.2354563885534493,0.2450161848420582,0.2544606217325313,0.2629406160685932,0.2705035312432036,0.2776486370838104,0.2844694488631047,0.2910874220607896,0.2970875646675608,0.3031869078380706,0.3086561065366958,0.3130038117852902,0.3176654467825556,0.3221993767053316,0.3273168352077208,0.3266611999085886,0.3248058285792838,0.3242558224675434,0.3230778111290695,0.3212077172897543,0.3197687755195669,0.3177546435464987,0.3180423115429434,0.3185898203080921,0.3196106447579925,0.3201715773502913,0.3211823049414182,0.3221589004358028,0.3222778473091364,0.3231493490896863,0.3242659870491249,0.3267675190872193,0.3305430147980938,0.3340795410822344,0.3371498752030427,0.3407882176462566,0.3421794394511514,0.3447751741608613,0.3453501722158438,0.3454545454545454,0.345837799214005,0.3543451652386781,0.3577464788732394,0.3625605164066702,0.3687428353076041,0.0,2.235277822211793,55.791949187377256,166.57270078036342,267.0004780963406,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,91 -100000,95866,44647,421.3276865624935,6059,62.19097490246803,4692,48.4739115014708,1855,19.04742035758246,77.34109898624328,79.63243123934646,63.34986309044478,65.04432431484618,77.11429377819306,79.40519439531683,63.26563028770957,64.96163736595801,0.2268052080502229,227.2368440296333,0.0842328027352081,82.68694888816697,166.41526,116.51035370374824,173591.534016231,121534.5938119336,358.4537,232.627042435605,373428.6295454072,242176.58721124227,364.45288,176.77364377732425,377033.0878517932,181971.99976715972,2684.0826,1229.6084385312272,2774612.5633697035,1257470.1430451048,1073.41666,473.9049762776344,1107946.466943442,482653.5838969415,1813.84954,762.2353788846422,1864197.3379508895,771926.1669098844,0.38081,100000,0,756433,7890.524273465045,0,0.0,0,0.0,30560,318.27759581081926,0,0.0,33304,344.44954415538353,1574598,0,56565,0,0,6667,0,0,69,0.6988922037009994,0,0.0,0,0.0,0,0.0,0.06059,0.1591082166959901,0.3061561313748143,0.01855,0.3277681524649551,0.6722318475350448,24.662868515846057,4.409583590310949,0.3243819266837169,0.2261295822676896,0.2282608695652173,0.2212276214833759,11.334488335334276,5.861729964384617,19.72467159681828,12299.168223256838,53.16382797733736,12.816526493473036,17.294368213100416,11.780495014508016,11.272438256255889,0.5620204603580563,0.8011310084825636,0.7043363994743759,0.5723622782446312,0.0982658959537572,0.7362637362637363,0.9225,0.8710462287104623,0.7407407407407407,0.1409090909090909,0.4970743124634289,0.7276853252647504,0.6426642664266426,0.5229468599033816,0.0867970660146699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026732823654498,0.0047826042901581,0.0065828845002992,0.0091071537352529,0.011210944646596,0.0134535536920947,0.0158215919394439,0.017923998979852,0.0202336935427859,0.022597078440198,0.0247884784790936,0.0269635494656519,0.028840820854132,0.0311953412762104,0.0331997238508382,0.0353490004231559,0.0371718383257679,0.0394322420223787,0.0414118868414222,0.0435696302615426,0.0579844637922944,0.0717525342251018,0.0857711442786069,0.0988049733271726,0.1109344564359041,0.1262079526852194,0.1388000254231902,0.1497884464099674,0.1606965651909472,0.1711392133747722,0.1843725114607322,0.197119127952245,0.2086508462784402,0.2186065322897993,0.2282133937706974,0.2390480622216313,0.2486191544203796,0.2573819728005939,0.2656680851063829,0.2736445472661887,0.2806607593179557,0.2877924993860583,0.2946256402976422,0.3003738049025951,0.3053072625698324,0.3102980695742215,0.3148970781455296,0.3185992673247176,0.3224892270662681,0.3270197853833665,0.326313521665365,0.3250034383166001,0.3236881031203775,0.3229814563022536,0.3228244536027256,0.3209342958296933,0.3191620846471977,0.3193459773329166,0.3199087494211077,0.3202692998204668,0.3214083870238499,0.3219157681539286,0.3232823061211598,0.3232666471633998,0.3231674821956301,0.3269699750885014,0.3279729884399679,0.331606544949144,0.3360036541231861,0.3384279475982533,0.3402822030040965,0.3431663837011884,0.3452838510490832,0.3483513143899103,0.3505524601001039,0.3534236804564907,0.3530223995090518,0.3548972188633615,0.3496312482928161,0.3390804597701149,0.0,1.812664038324178,56.17668241557481,168.52847947446867,263.25752631324525,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,92 -100000,95640,44856,424.92680886658303,6063,61.930154746967794,4761,49.173985780008366,1891,19.312003345880385,77.31769350596971,79.73728946722072,63.289715480586615,65.08023491088962,77.07011018082909,79.49383785151605,63.19657238937506,64.99138211685516,0.2475833251406243,243.45161570467155,0.0931430912115516,88.85279403445168,164.82664,115.43352778560616,172340.69427017984,120695.86761355728,356.95164,231.52926074916147,372595.4412379758,241465.251096712,365.34606,177.2982022162311,378460.3199498118,182669.0142660116,2720.89208,1256.0894319575764,2810120.3262233376,1279034.4225427285,1111.82183,498.38756479391054,1147269.0715181932,506090.5010032825,1848.46348,787.0177440050203,1889240.025094103,786284.4554232821,0.38245,100000,0,749212,7833.667921371811,0,0.0,0,0.0,30458,317.80635717273105,0,0.0,33497,346.70639899623586,1579348,0,56659,0,0,6514,0,0,47,0.4914261815140108,0,0.0,0,0.0,0,0.0,0.06063,0.158530526866257,0.3118918027379185,0.01891,0.3380436489244779,0.6619563510755221,24.43209045592098,4.285285446217712,0.3282923755513547,0.2247427011132115,0.2325141776937618,0.2144507456416719,11.156620954561706,5.739007248948103,20.327994390619946,12305.907534052163,53.92959278786343,12.888547414188846,17.66446489262562,12.138772713093632,11.237807767955337,0.5555555555555556,0.788785046728972,0.6826615483045425,0.5537488708220416,0.118511263467189,0.7295839753466872,0.905940594059406,0.852803738317757,0.7109375,0.1619047619047619,0.4903263066705169,0.7177177177177178,0.6185022026431718,0.5064629847238543,0.1072749691738594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025326201474997,0.0049791100474587,0.0068527918781725,0.0088110651531011,0.0111103197777936,0.0134678076609616,0.0156183053475608,0.01774640116879,0.0197517218793814,0.0220281476470166,0.0244728683762087,0.0265076345689167,0.0286376274328081,0.0308025582834743,0.0327836670592854,0.0349869613808518,0.0371188321046792,0.0392118165198603,0.0410240399625351,0.0431014704348732,0.0577071794335876,0.0715251218106564,0.0851233679610936,0.0977217909693184,0.1096971105103075,0.1257996864805321,0.1378998830906578,0.149955757401307,0.1618021526544412,0.1721919044345135,0.1858109201540602,0.197425032241284,0.2092683777070896,0.2204076714969496,0.2291820516494538,0.2399600621255824,0.2492650921568846,0.2575728560002703,0.2667007382169222,0.2731972352448963,0.2801547406703885,0.2869986654491817,0.2934785184483044,0.2991180176396472,0.3044081324751487,0.3096512430939226,0.3144044668118881,0.3197220914400601,0.3237892882128883,0.3285865257595772,0.3271830397455422,0.3266480377716905,0.3257295925560411,0.3248677401636263,0.3241299372901001,0.3216635230252564,0.3198902997733073,0.3205751050420168,0.3204206716405169,0.3213191277080958,0.3225541295372602,0.3230926779313876,0.3242506244796003,0.3246969865450906,0.3254190278076656,0.3263813229571984,0.3279956920984015,0.3310441704385828,0.3328794861052925,0.3351917754052985,0.3401165437494309,0.3404955170035545,0.342583852495123,0.3441341629989376,0.3471935423315186,0.3507153837058058,0.3518801589727912,0.3552974163829361,0.3605255954010402,0.3653404743687835,0.0,2.197700673695327,56.820896493602014,172.2886461032434,264.18869708121906,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,93 -100000,95714,44722,423.2923083352488,6191,63.5434732640993,4867,50.31656810915854,1920,19.767223185740853,77.34880342590687,79.70481917130628,63.338894218876014,65.07659447988166,77.11643336541474,79.47272691248135,63.2529335332172,64.99285515676524,0.2323700604921299,232.09225882493456,0.0859606856588115,83.73932311641852,166.42472,116.61628977624925,173877.09217042438,121838.27838795708,363.84882,235.15774964530985,379629.9600894331,245176.2016479406,371.76775,179.7832357757525,384790.041164302,185123.27903379177,2783.58992,1265.1364537771597,2878768.999310446,1292445.5965144418,1165.53077,510.8415311275582,1203716.6872139918,519796.0211272216,1879.49952,781.5241302702401,1935792.2560962867,791792.4778601946,0.38036,100000,0,756476,7903.5041895647455,0,0.0,0,0.0,30927,322.57558977787994,0,0.0,34002,351.55776584407715,1572423,0,56389,0,0,6532,0,0,69,0.7208976743214159,0,0.0,2,0.0208955847629395,0,0.0,0.06191,0.1627668524555684,0.3101276045873041,0.0192,0.3325126942606555,0.6674873057393446,24.70860901503492,4.3631004023364905,0.323813437435792,0.2401890281487569,0.2151222519005547,0.2208752825148962,11.079820935271105,5.6636344020725495,20.39932753887224,12302.683689000549,54.85401709994508,13.982265325649957,17.693326442490786,11.49874552550214,11.679679806302206,0.5580439695911239,0.7827202737382378,0.6928934010152284,0.5663801337153773,0.107906976744186,0.7442958300550747,0.9451073985680192,0.8832116788321168,0.6652542372881356,0.1463414634146341,0.4922135706340378,0.692,0.6257510729613734,0.5376078914919852,0.0988505747126436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0045918987957669,0.0067982344883567,0.0090208149209154,0.01119448511469,0.0134473456507354,0.015727725850347,0.017872818209656,0.0200500740892136,0.0221073640038892,0.0242912490006764,0.026376558731462,0.0283346698743651,0.0305248419708855,0.0327302360125433,0.0348825194767622,0.0370358866041291,0.0391977838415488,0.0410471813852903,0.0431249153443012,0.058513304649317,0.0730813910895752,0.0862691202081453,0.0988911566057188,0.1110302493355271,0.1264530732697983,0.1390539450787318,0.1510331832263421,0.162480636718124,0.173058150885511,0.1857489093553078,0.1974659438872117,0.2082050835843946,0.2183190244435938,0.2277933652417891,0.2379005451402739,0.2470510701041061,0.255963705546612,0.2650735085428847,0.2730793025227413,0.2796369824163358,0.286417760310665,0.2938176051504177,0.2995675973504857,0.3053923472856171,0.3102259434833467,0.3147648323086919,0.3198653198653198,0.3244235342777375,0.3278833232325894,0.326091343243425,0.3249398335969194,0.3236590483432611,0.3230835922259952,0.3216732298090497,0.3196772761371117,0.3176660494706357,0.3185277522634824,0.3199385193407907,0.3203706679522202,0.321313622754491,0.322791927242597,0.3242168699910021,0.325677609804097,0.3275443196305294,0.3294678688695471,0.3304596060519554,0.3343932000629623,0.339577632779064,0.3443280146066523,0.346069669888747,0.3474521952782822,0.3513977128335451,0.3528508940219476,0.3561955286093217,0.3589037817137386,0.3627039627039627,0.3624174917491749,0.3589815332960268,0.3625389408099688,0.0,2.092016635024128,55.73802454640157,181.20180807951047,270.1822712589311,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,94 -100000,95641,44679,424.0545372800368,6009,61.574011145847486,4678,48.37883334553173,1871,19.21769952217145,77.26744378178137,79.68202373083315,63.28338998351626,65.06921856507306,77.03785639509547,79.4530712859551,63.19855564876707,64.98699670124012,0.2295873866858926,228.9524448780469,0.0848343347491891,82.22186383294172,166.23992,116.42828032163264,173816.58493742225,121734.69570752356,359.26843,232.9848458491977,375126.9120983679,243087.74045565995,367.0957,177.92382915645626,380207.954747441,183321.3968622342,2692.2138,1243.0843289153702,2784827.009337,1269701.2044158566,1125.55329,501.2692794031907,1161959.557093715,509222.74903356377,1834.24448,769.5937568177229,1884984.786859192,776681.2240129967,0.38018,100000,0,755636,7900.75386079192,0,0.0,0,0.0,30607,319.4655011971853,0,0.0,33530,346.9328007862737,1571918,0,56381,0,0,6690,0,0,67,0.7005363808408527,0,0.0,0,0.0,0,0.0,0.06009,0.1580567099794834,0.3113662839074721,0.01871,0.3391124542707173,0.6608875457292827,24.239039651028097,4.436173412452388,0.3319794784095767,0.2263787943565626,0.2167592988456605,0.2248824283882,11.339365070470006,5.880432976148146,20.11745405473734,12253.280596641453,53.45932514298964,12.58927485441463,17.8499566277631,11.377640996015566,11.642452664796346,0.5709705002137666,0.777148253068933,0.71216999356085,0.591715976331361,0.1349809885931558,0.7507836990595611,0.9311224489795918,0.8802816901408451,0.7404255319148936,0.1973094170403587,0.5035273368606702,0.6866566716641679,0.6486246672582077,0.5468549422336328,0.1182147165259348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0043500304197931,0.0066804743339831,0.0088712299813023,0.0111903478163562,0.0135658125229152,0.0157941962191814,0.0179891370931514,0.0200721903534873,0.0222634128357689,0.0243172004963949,0.0266985803217389,0.0287430817027755,0.0307473544292058,0.0327315517294769,0.0347166222111945,0.0366231318163457,0.0386224219714976,0.0406715486394274,0.0424016848075399,0.0561948058734388,0.0703624956795877,0.0831635546407342,0.0963091665350392,0.1088459792443069,0.1239781439281629,0.1368806754819181,0.1476831919519161,0.1589423807129945,0.1694372852233677,0.182772044471763,0.195086814769884,0.2073453397899776,0.2185154386502396,0.2285591625111456,0.2388559021623537,0.2490821234474216,0.2586005174935313,0.2673976458837017,0.2743428741664184,0.2818551140638202,0.2872712389639245,0.2936080570907843,0.2990071466257374,0.3043377857724516,0.3100057979596116,0.315672847002266,0.3204178755026212,0.3251357269652876,0.3283515031384209,0.3272413374516125,0.3258252052680884,0.3248120088599201,0.3234680875709487,0.3224379124890127,0.3198729164748135,0.3171173173713542,0.317838246409675,0.3175677986388974,0.3184945583215683,0.3183788347875035,0.3193788918415103,0.3204974685405768,0.3215892557358701,0.3220085778998602,0.3234717612314768,0.324891626739676,0.3272018363047511,0.3291370701174484,0.3302236574572419,0.336211251435132,0.3378813923506661,0.3373869858652744,0.3418500846544559,0.3471787577050735,0.352495490078172,0.3546033224654557,0.3629431162407254,0.3643898256644756,0.3658733360225897,0.0,2.02355690017789,56.245441168471466,180.2052334724908,249.7059915100189,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,95 -100000,95840,44670,422.2558430717863,6121,62.65651085141903,4819,49.70784641068448,1881,19.303005008347245,77.40182060844235,79.71699419234564,63.36325590393732,65.07639422500823,77.16757260769812,79.48250817468015,63.27723044491432,64.99234990075414,0.2342480007442304,234.48601766548904,0.0860254590229985,84.04432425409425,165.8657,116.19336922218372,173065.21285475793,121236.8209747326,359.05002,232.60924083167308,374060.6323038397,242131.6056257023,369.43447,178.45738875350702,381741.0475792989,183257.75326629129,2777.50496,1275.4973402774413,2868190.025041736,1300986.7490373978,1163.5195,510.1281832654957,1201519.9081803004,519767.69956750434,1847.35854,770.1029178235555,1897878.777128548,779181.2682160096,0.38066,100000,0,753935,7866.600584307178,0,0.0,0,0.0,30649,319.19866444073455,0,0.0,33891,349.9269616026711,1578862,0,56720,0,0,6571,0,0,56,0.5738731218697829,0,0.0,0,0.0,0,0.0,0.06121,0.1607996637419219,0.3073027283123672,0.01881,0.335,0.665,24.505674864113573,4.410619404443331,0.3224735422286781,0.2384312097945632,0.2162274330774019,0.2228678148993567,11.29541182209997,5.74403808814984,19.91406897041623,12274.557610798009,54.795574753904816,13.911742334877578,17.57253208307875,11.66483856595156,11.646461769996929,0.5665075741855157,0.7859007832898173,0.7007722007722008,0.5738963531669866,0.1303538175046555,0.731990704879938,0.918918918918919,0.8358585858585859,0.7254098360655737,0.1400966183574879,0.5059523809523809,0.7021276595744681,0.6545768566493955,0.5275689223057645,0.1280276816608996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0044188144199292,0.0066347441464107,0.0089988522908477,0.0112951271337216,0.0133759517895679,0.0157570198236762,0.0181261481935088,0.0200748206145102,0.0221385218468214,0.0242427348675106,0.026481093730755,0.0288219392107886,0.0309913100778386,0.0331280877089843,0.0351718294724225,0.0371501324942033,0.0391542840552058,0.041120505203681,0.042961066533454,0.0575376753402513,0.0719228919693073,0.0855906361664448,0.0984894640643711,0.1108489820851193,0.1262660935140102,0.1382174106480795,0.150124900345469,0.1612469450699565,0.1709422765882239,0.1834667010841507,0.1961705944006829,0.2080630968288629,0.2183389415723463,0.2283974366020687,0.2387119627182058,0.2484890385601819,0.2567253105502782,0.2648052802286285,0.2731756439745042,0.2803066214981906,0.2869181052114865,0.2945906000591191,0.3001880442203351,0.3050851572647705,0.310137181981627,0.3142546300348894,0.3183730537019383,0.3224395797753972,0.3259591298615689,0.3250255554957766,0.3237655339271967,0.3231877127345354,0.322234559533938,0.3216922119118911,0.3195527821112844,0.3181918760866129,0.3187693517471863,0.3190995907230559,0.3194300979519145,0.3207109881688877,0.3211786734995565,0.3214405080213903,0.3232834556118011,0.3245139354467963,0.3247656878780798,0.3276874627627883,0.3313657515849964,0.3341242149337055,0.3380270548216122,0.3407673751763688,0.3439310968153543,0.3451377531765002,0.3484365513054037,0.3505490415038154,0.3544020715630885,0.358970453853183,0.3659229208924949,0.3631115997800989,0.3664620107444359,0.0,2.291270138630564,56.486920135758695,188.83471753501527,254.29003692579224,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,96 -100000,95697,44644,422.6673772427558,6019,61.72607291764632,4713,48.67446210435018,1799,18.401830778394302,77.32145341825886,79.70838480693139,63.3143933609397,65.07999392647062,77.09650044915409,79.48725190667106,63.23001904270439,65.0001651083684,0.2249529691047627,221.13290026032928,0.0843743182353051,79.82881810221443,167.01784,116.91648738389918,174527.7699405415,122173.6181739231,360.91614,233.87133576977757,376568.7639110944,243811.41077544497,365.17451,176.49481184065613,378613.28986279614,182052.4460961073,2672.329,1229.6847681926558,2759157.2149597164,1252052.2505185744,1081.27283,477.70902100941913,1113283.8751476014,482751.410877628,1751.02594,738.8760692704283,1791923.1950844852,738183.5209745521,0.38185,100000,0,759172,7933.080451842795,0,0.0,0,0.0,30732,320.55341337763986,0,0.0,33471,346.7193328944481,1571446,0,56401,0,0,6721,0,0,67,0.7001264407452689,0,0.0,0,0.0,0,0.0,0.06019,0.1576273405787613,0.2988868582821066,0.01799,0.3369668246445497,0.6630331753554503,24.414143031347827,4.289991279213789,0.3123276044981964,0.2497347761510715,0.2306386590282198,0.2072989603225122,11.345237225960004,6.047508943903929,19.14950940415653,12272.169770486538,53.67697628614204,14.33216923022036,16.637724275953413,12.013267400745551,10.693815379222704,0.5709739019732655,0.7969413763806287,0.6949728260869565,0.5804967801287948,0.1013306038894575,0.7397572078907435,0.9177489177489178,0.8756476683937824,0.7098039215686275,0.1488372093023255,0.5054491899852724,0.7188811188811188,0.6307550644567219,0.5408653846153846,0.0879265091863517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022493312798897,0.0045837136193083,0.0066590872178008,0.0087702360748366,0.0109779423734331,0.0129879390432727,0.015195243582814,0.017694506840923,0.0202107974933295,0.0223043380350891,0.0243492346651083,0.0265868411053717,0.0287518902181851,0.0306761741854378,0.0328554175827578,0.0350289495450785,0.0371333278090818,0.0391572829640392,0.041038334338665,0.0428479112815809,0.0572088116402226,0.0711025501444663,0.0849181360201511,0.0980309615769145,0.1100770285955471,0.1257303751376069,0.1381532157907586,0.1502417928889457,0.1611606904291134,0.171192912456829,0.1836985327386723,0.1964861763623373,0.2078071806919655,0.2178892559452186,0.2284356644741184,0.2384353063619655,0.2476742889012827,0.2562661571316174,0.2651267746178618,0.2724472738097964,0.2790189412336085,0.2862036311771514,0.2926021042167177,0.297844037246983,0.3035070030733349,0.3090297873388417,0.3140534117205579,0.3186301927085981,0.3234100310237849,0.3280850615299481,0.3266620936394571,0.3256593406593406,0.3252366418655677,0.324588366018731,0.3242966372206963,0.3230710349050826,0.3206221617430655,0.3209048259571536,0.3216010924298028,0.3210398601149056,0.3211002303068886,0.3220071118135124,0.3223564385454393,0.3226809891462459,0.3251390460597597,0.3258658998823683,0.3266199399227578,0.3290174211637211,0.3334973292100084,0.3350673073104872,0.3384720327421555,0.3443722713236077,0.3471896584500348,0.3495860165593376,0.3490414581169138,0.3510218716385801,0.3536754507628294,0.3582028867656027,0.3599670510708402,0.3644003055767761,0.0,2.2763894853846574,58.08664164600996,169.1918127486511,258.9157426970563,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,97 -100000,95706,44424,420.93494660731824,6084,62.23225294129939,4726,48.816166175579376,1868,19.15240423797881,77.3455376358958,79.73160350548628,63.32130932583449,65.08694974079913,77.11284912288578,79.50028593152486,63.23450398749132,65.00306431440704,0.232688513010018,231.3175739614195,0.0868053383431757,83.88542639208652,165.62062,115.98506747904936,173050.9894886423,121188.46684539045,357.27862,231.38111695867755,372726.3494451759,241180.543078467,366.01909,177.35571861634511,378856.21591122815,182569.41859207492,2721.93612,1252.6849135618272,2813783.4618519214,1278637.0693183572,1106.92419,492.3207979291449,1141558.794641924,499389.352327825,1843.1312,776.4426899021563,1891601.2371220195,781162.4949731256,0.3783,100000,0,752821,7865.954067665559,0,0.0,0,0.0,30572,318.80968800284205,0,0.0,33361,344.9313522663156,1580589,0,56618,0,0,6507,0,0,54,0.5642279480910287,0,0.0,0,0.0,0,0.0,0.06084,0.1608247422680412,0.3070348454963839,0.01868,0.3298173803526448,0.6701826196473551,24.498750263458472,4.372645040553595,0.3114684722809987,0.2475666525603047,0.2096910706728734,0.2312738044858231,11.197009476262162,5.662583488681261,19.800499573698456,12238.892324262912,53.730122375239496,14.1220320348426,16.648564640629335,11.025480625929172,11.93404507383841,0.5575539568345323,0.7743589743589744,0.7126358695652174,0.5751765893037336,0.1006404391582799,0.7324940991345398,0.9398148148148148,0.8590078328981723,0.7644444444444445,0.1038961038961039,0.4931982633863965,0.6775067750677507,0.6611570247933884,0.5195822454308094,0.099767981438515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025937446174733,0.0048481160302246,0.0072389461393979,0.0094514116140571,0.0116993570440302,0.0137298838867386,0.0160306744712528,0.0182796687192998,0.0204515706806282,0.0224470568959161,0.0245628429311317,0.0266841959306087,0.0286372613561553,0.0307380005358283,0.0328276573787409,0.0347989702978485,0.0368152813458191,0.038701843241448,0.0407237936772046,0.0424168542135533,0.0567832898172323,0.0710936682365253,0.0846932885553864,0.0966900237779601,0.1089160083116225,0.1245835052200679,0.1366747673271004,0.1482925374406169,0.1591365891207663,0.1688244766505636,0.1816770521141033,0.1939365712057536,0.2055890613773432,0.2159325928762926,0.2254705558613098,0.2356538985717609,0.2457728322860746,0.2549361534567137,0.2642874968804592,0.2727366384688469,0.2805454987102819,0.2864122494301911,0.2932161903297898,0.2984293820480283,0.3043330583725557,0.3093881869517611,0.3143053473263368,0.3190160688447186,0.3234709420907237,0.327465390531533,0.3265790850901088,0.3257264254385965,0.3243129379713238,0.3244021895707289,0.3236134341834544,0.3215114149676474,0.319192972477644,0.3187808761016921,0.3202110043191014,0.3213258800207169,0.3217052082747238,0.3227473419526006,0.3243016349402901,0.3253785421931963,0.3261795346822895,0.3260795825179386,0.3278562478642214,0.3312171972720701,0.3354732337051849,0.3374364675984752,0.3385321935249181,0.3401739314879626,0.3389521353544248,0.340211680499505,0.3436439079592606,0.3464444177958988,0.343403205918619,0.3460830435671916,0.3457330415754923,0.3471522665633475,0.0,2.1554772847678723,55.82391105880282,179.62038743886694,255.65274318919955,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,98 -100000,95619,44648,423.733776759849,6106,62.67582802581077,4811,49.8122758029262,1875,19.29532833432686,77.23812690061078,79.66885304842172,63.25655152000609,65.05418946266762,77.00487712094599,79.43566753035249,63.17043700719292,64.97026783624048,0.2332497796647885,233.1855180692344,0.0861145128131752,83.9216264271414,166.86538,116.86338225957648,174510.69348142104,122217.7415153646,361.42335,234.0809683912757,377514.5630052605,244337.70316702305,368.03624,177.49649817934875,381768.37239460775,183200.70009503985,2738.04764,1256.4277199113892,2836546.418598814,1287042.7424584958,1132.4146,498.1297892234228,1172236.7939426266,508890.7949501909,1824.42796,767.6681560586032,1878938.4954872984,776865.3034036533,0.37981,100000,0,758479,7932.3042491555025,0,0.0,0,0.0,30839,322.01759064621046,0,0.0,33722,349.6585406666039,1566000,0,56234,0,0,6759,0,0,57,0.5751994896411801,0,0.0,0,0.0,0,0.0,0.06106,0.1607645928227271,0.3070750081886669,0.01875,0.3348931523943222,0.6651068476056777,24.352772766540248,4.234003476079981,0.3250883392226148,0.2463105383496154,0.2205362710455206,0.208064851382249,10.940240213585156,5.675986623931568,20.078286935089864,12272.054830352532,54.76688798499186,14.315402700107024,17.703630275299393,11.729218816466632,11.018636193118803,0.5695281646227396,0.7974683544303798,0.7014066496163683,0.5447690857681433,0.1198801198801198,0.748811410459588,0.93006993006993,0.8678756476683938,0.7258064516129032,0.1557788944723618,0.5057762750070443,0.7222222222222222,0.6468590831918506,0.4895448954489544,0.1109725685785536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020269174639208,0.0044222206444676,0.0066099423279993,0.0090869357510952,0.0111341801009607,0.0133052151145613,0.0154622877250242,0.0177133984390961,0.0198432993065073,0.0220007579404504,0.0241525075925469,0.02604728584199,0.0281079857144327,0.0300818539823921,0.0322923766445669,0.0343939158776967,0.0363555315972798,0.0384447583828478,0.0402327566464722,0.0422391220438352,0.05714106504422,0.071256418317091,0.0850002101105181,0.0975977082916451,0.1095282849509488,0.1247696316224288,0.1371690817150384,0.1487683468880906,0.1602756141402037,0.1709881847475832,0.1835748271062824,0.1957982828896019,0.207973327812946,0.2189441163904074,0.2283831583123051,0.2387249952847459,0.2480148522602724,0.2561786857890227,0.2647617314973791,0.2725508657511596,0.2799183228336407,0.2868316135084428,0.2934127473779128,0.2993063986825181,0.3060117945218832,0.3105327549771994,0.3150146833663814,0.3200928915032346,0.3235737296061519,0.3274045841935313,0.3267976503949767,0.3263438336876397,0.3259180790960452,0.3249467383585269,0.3240764179460071,0.3212952579916742,0.318559468776311,0.3192036390005933,0.3203438690414907,0.3206999695509663,0.3213896713615023,0.3218235877106045,0.3235621677278362,0.3252136464571697,0.3252279635258359,0.3268204645323289,0.3289541473467285,0.3316920746141464,0.3356205355571977,0.3379069675219098,0.3398767404702122,0.3453791784025083,0.3476646103487347,0.3507757833891086,0.3510907218425241,0.3552060100950815,0.357508275654529,0.3573275004971167,0.3560709413369713,0.3559001512859304,0.0,1.981343171460965,55.58665975166153,188.83053550281304,259.3875489764901,fqhc8_80Compliance_implementation_extra_low_initial_treat_cost,99 -100000,95731,44694,422.6948428408771,5889,60.36707022803481,4586,47.44544609374184,1707,17.590957996887113,77.33641368994157,79.71287474449254,63.332022412709286,65.08996550962154,77.12514821141649,79.49905344143787,63.25435876071411,65.01320052026067,0.2112654785250782,213.82130305467228,0.0776636519951736,76.76498936086773,167.94668,117.64125249007004,175436.04475039433,122887.31183218604,362.98117,236.03623689654543,378733.09586236434,246127.2178255167,367.17534,177.88027830963995,379612.0692356708,182887.0231268801,2975.78259,1350.320335555655,3083423.551409679,1385475.9122495896,1096.0762,480.6318149114863,1134173.3921091391,491284.0614967843,1665.7762,692.1497930993798,1718437.2669250297,704492.0663478188,0.3799,100000,0,763394,7974.36567047247,0,0.0,0,0.0,30919,322.51830650468503,0,0.0,33547,346.7633264041951,1565959,0,56162,0,0,6563,0,0,75,0.7625534048531823,0,0.0,0,0.0,0,0.0,0.05889,0.1550144774940774,0.2898624554253693,0.01707,0.3310155239327296,0.6689844760672704,24.631863545354623,4.34842305207173,0.3266463148713476,0.2394243349324029,0.2208896641953772,0.2130396860008722,11.318077524336898,5.961427925177735,18.157789721488665,12231.394402829475,51.88457522571549,13.147395270076604,16.86172634509587,11.382119998331175,10.493333612211842,0.5708678587003925,0.7768670309653917,0.6955941255006676,0.5942744323790721,0.1238485158648925,0.7647058823529411,0.9250645994832042,0.8712121212121212,0.7799227799227799,0.1703296703296703,0.5002974419988102,0.6962025316455697,0.632486388384755,0.5305039787798409,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002259738154108,0.0044625199038529,0.0068328341540179,0.0089336531425319,0.0110779935505528,0.0131281445419917,0.0153988925034927,0.0178068205023483,0.019997341866623,0.0224494809901111,0.0249090256778227,0.0269912322128909,0.0290098001912734,0.0309616018457481,0.033143470364867,0.0353805763426634,0.0375555256427513,0.0396920906299278,0.0415519087063616,0.043269481162047,0.0576073677285969,0.071498817769036,0.0848460062289615,0.0973584350330589,0.1093229627755996,0.1253236391304807,0.1385235041602628,0.1500239247168908,0.1604819688577252,0.1706227639838042,0.1828717154109368,0.1948144624167459,0.2055931595701915,0.2168889180127344,0.2269376544905245,0.2372144957658036,0.2467972283492636,0.2557468035862751,0.2636488309097709,0.2709371998353382,0.2779639085930821,0.2844717886454113,0.2913374667847653,0.2969125686328456,0.3027242637698379,0.3073129335366754,0.3125616717253094,0.3176611039142472,0.3222390317700453,0.3258659564088026,0.3246141632691505,0.3236508810572687,0.3231068289384719,0.3223410404624277,0.3213887443312765,0.319022446947062,0.3174462425182886,0.3187689782519491,0.3196297118652752,0.3206913791872009,0.3217375023403857,0.3227996762923633,0.3236498913225213,0.3236080773859938,0.325106138015399,0.3267926293629961,0.3266874232340255,0.3303185957835691,0.333286477368569,0.3362391529336836,0.339601008942903,0.3417001877178868,0.3461415305795709,0.34922471650081,0.3530360531309298,0.3586995785671282,0.3626679018063918,0.3721873099533752,0.3766693922049605,0.3821536144578313,0.0,1.8235937232566048,53.94547549374899,170.7726400035943,251.70687962702155,fqhc8_80Compliance_implementation_low_initial_treat_cost,0 -100000,95613,44586,422.4530137115246,6057,62.198654994613705,4774,49.38658968968655,1864,19.19195088533986,77.26635035352784,79.70393151335128,63.26822878755484,65.07186008895698,77.03877073319867,79.47687648115671,63.18328710640738,64.9893965228052,0.2275796203291662,227.05503219457057,0.0849416811474554,82.4635661517874,166.02542,116.30156207121746,173643.1447606497,121637.81292420224,360.41773,233.7936729171692,376401.9118739084,243967.97811716932,370.4043,179.4953800487737,383390.8568918453,184712.2641683528,3138.24688,1440.3775399354738,3249116.825117924,1473344.3464125944,1157.69201,514.7961305239746,1196749.950320563,524376.6168716993,1825.03324,765.826692152779,1880089.5275747024,775935.7302385144,0.38033,100000,0,754661,7892.870216393168,0,0.0,0,0.0,30770,321.2533860458306,0,0.0,33889,350.5067302563459,1570990,0,56360,0,0,6601,0,0,69,0.7216591886040601,0,0.0,0,0.0,0,0.0,0.06057,0.1592564352010096,0.3077431071487535,0.01864,0.3313815477132458,0.6686184522867542,24.36306405755142,4.308198727482152,0.3160871386677838,0.2423544197737746,0.2218265605362379,0.2197318810222036,11.355561850353723,5.99396189457004,19.888850533472016,12304.722223971734,54.36887569219897,13.971487939745945,17.160583937594996,11.695244601941948,11.541559212916086,0.5603267700041894,0.7968885047536733,0.6918489065606361,0.5486307837582625,0.1220209723546234,0.7419106317411402,0.9035087719298246,0.86,0.7142857142857143,0.1813725490196078,0.4925201380897583,0.7275320970042796,0.6311992786293958,0.5006090133982948,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002776764360128,0.0051940147096119,0.0075761422608589,0.0096896860257035,0.0120824087457502,0.0145642447282326,0.0168598954931417,0.0190163800414865,0.0210464925922894,0.0229841478035434,0.0252273333743867,0.0271678796102133,0.0291534985227658,0.0312306677114694,0.0333422852066849,0.035191738581569,0.037065060790431,0.03899961571617,0.0411003101517453,0.0429681389164102,0.0569755893575871,0.071425577398667,0.0848379811984664,0.0968254971351533,0.1088274434422593,0.1248212526613492,0.1380428082555742,0.149774942935768,0.1608905062613721,0.1717828324612392,0.1839246610068931,0.1955053499994579,0.2078400191698162,0.2180148790936681,0.2286555122015739,0.2389377585996517,0.2489220045130588,0.2581073777137195,0.2660341987161279,0.2732986935526421,0.2808435730251196,0.2883406128877387,0.2943391757460919,0.2997110900655741,0.3051341890315052,0.3102405922270204,0.3152256981420464,0.3191925624044829,0.3235553252137859,0.3278736125226021,0.3270129415408648,0.325842542006688,0.3245748742585835,0.3238724222148359,0.3233116245873851,0.3211857659092301,0.3185596883758491,0.3186769852614975,0.3192922472006154,0.3193920429146178,0.3206480925202764,0.3223289434597485,0.3229251914804322,0.3242493399561462,0.3258183394753956,0.32659616137877,0.3282959577203256,0.3310736244679174,0.3351627088830255,0.3367172260042199,0.3404730437952878,0.3422829496517625,0.3451966309923374,0.3475919605612438,0.354366669773511,0.3597510860631678,0.3649202733485193,0.3693820224719101,0.3726826608505997,0.3749529898458067,0.0,2.124482345733473,56.949424249198245,180.10820600119578,259.2241025748627,fqhc8_80Compliance_implementation_low_initial_treat_cost,1 -100000,95724,44812,424.7524131879152,6028,62.01161673143621,4730,49.01592077222013,1907,19.681584555597343,77.34534288058313,79.71225131935714,63.32656324425341,65.07371685743905,77.11123990476007,79.47620474283092,63.240249962567056,64.98852379168268,0.2341029758230632,236.0465765262205,0.0863132816863512,85.19306575637131,164.62094,115.32616678180402,171974.57272993188,120477.79739856672,357.61151,232.02593311118983,373194.5698048556,241999.073493784,364.60408,176.71395807735234,378025.4063766662,182455.7602352977,3125.42458,1428.87236433745,3241530.9222347583,1469193.561006068,1119.62553,500.2122734087984,1158014.103046258,510931.5985633679,1876.94452,785.793835332952,1938366.324014876,801925.298389001,0.38138,100000,0,748277,7817.026033178722,0,0.0,0,0.0,30374,316.89022606660814,0,0.0,33382,345.87982115248,1581388,0,56804,0,0,6479,0,0,69,0.7208223642973549,0,0.0,0,0.0,0,0.0,0.06028,0.1580575803660391,0.31635700066357,0.01907,0.3259247499603112,0.6740752500396888,24.54758024683427,4.377584314769897,0.3160676532769556,0.2395348837209302,0.2133192389006342,0.2310782241014799,11.054071087489753,5.629452484558907,20.287083381597,12232.168349101152,53.65802985125303,13.569862777634684,16.900355702687072,11.127428824426456,12.06038254650482,0.554122621564482,0.8005295675198588,0.6775919732441471,0.5718533201189296,0.1134492223238792,0.7243844320889595,0.9268867924528302,0.8923076923076924,0.6893203883495146,0.1213389121338912,0.4923653125900317,0.7249647390691114,0.6018099547511312,0.5417185554171855,0.1112412177985948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021062864549578,0.0042365151115885,0.0065236800454527,0.0083079423115986,0.0104842482051699,0.0131339150266241,0.0151473451372537,0.0172207874401559,0.0193609060985831,0.0216498961009714,0.0240094315444154,0.0258269236693743,0.0279569228870305,0.0300201920303292,0.032373915107483,0.0345059284451657,0.036610499497706,0.0385333859150252,0.040623017977271,0.0425693771427975,0.0576378807974684,0.0718053375196232,0.0852535045748342,0.0975717532194259,0.1097347373752295,0.1255291229258381,0.1375279992356606,0.1492917243582916,0.1606394802086005,0.171564631687331,0.1848260555717163,0.1962278859271128,0.2073925769561385,0.2175055279462311,0.227170118815588,0.2374307248947018,0.2473243083378904,0.2561062046464533,0.2645629965947786,0.2720389461626575,0.2790364010830074,0.2858395799469087,0.2920074327443159,0.2982985861490534,0.3037367282975777,0.3089304641475018,0.3133455988185084,0.3182967905942167,0.3230047799784966,0.3269141868420705,0.3257663584157882,0.3245205554943238,0.3236801603998701,0.3224414749612728,0.3220674464981992,0.3206824138935299,0.3182285650997579,0.3172971288963221,0.3182251745869528,0.3192235775977206,0.3198714835431688,0.3217255922115801,0.3232046509682546,0.3242886542591267,0.3249451635452069,0.3252367658952751,0.326057919117856,0.327854996243426,0.331807220494181,0.3340175258545828,0.3392467248908297,0.3409380305602716,0.3431421759317354,0.3457268856447688,0.3465903761373229,0.3465627214741318,0.3501673258290234,0.3552551946741981,0.3484224965706447,0.3497267759562841,0.0,1.581904104267861,55.90724789536894,178.04712632026445,259.21349761923415,fqhc8_80Compliance_implementation_low_initial_treat_cost,2 -100000,95660,44469,421.1373614886055,6049,62.05310474597533,4730,48.82918670290613,1911,19.621576416475012,77.2498286400838,79.64708175615641,63.26585613190741,65.0382056631289,77.0080014962059,79.40599653401138,63.17615932967021,64.95123721466672,0.2418271438778987,241.08522214503125,0.0896968022371993,86.9684484621871,165.02552,115.61422984422842,172512.56533556347,120859.5336025804,357.53017,231.75188727855505,373147.9406230399,241664.2515302287,365.72232,177.1578102898461,378115.4191929752,182032.12136709076,3116.29988,1435.1423407635648,3219615.7223499897,1462296.3720379968,1135.64378,506.4870509757696,1170573.761237717,512872.8109719525,1871.9438,786.8982144711,1923418.3148651472,794421.8862573431,0.37909,100000,0,750116,7841.480242525612,0,0.0,0,0.0,30486,318.05352289358143,0,0.0,33527,346.24712523520805,1574037,0,56543,0,0,6469,0,0,55,0.5749529583943133,0,0.0,1,0.0104536901526238,0,0.0,0.06049,0.1595663298952755,0.3159199867746735,0.01911,0.3338068181818182,0.6661931818181818,24.685559877600515,4.310666998139035,0.3162790697674418,0.2325581395348837,0.2251585623678647,0.2260042283298097,11.293192214069322,5.955025574398629,20.49119680776968,12236.253833584462,54.07438924937709,13.257040101717358,17.121705580289728,11.998347755676663,11.697295811693351,0.5653276955602538,0.7854545454545454,0.7072192513368984,0.5943661971830986,0.1113189897100093,0.7170693686671863,0.89,0.8478802992518704,0.7441860465116279,0.1428571428571428,0.5088482738613287,0.7257142857142858,0.6557077625570776,0.5464684014869888,0.1029585798816568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023096559828194,0.0046041356090338,0.0069731326316216,0.0092867303393619,0.0114534487493769,0.0138512618906972,0.0160704817065709,0.0181548986572726,0.0204233994681939,0.0223164449360412,0.0246068948539895,0.0266258513184521,0.0288524860059269,0.0308589804374265,0.0329447960437336,0.0347923216945225,0.0367553340310663,0.0388924073631861,0.0407632444130009,0.0428231810314266,0.057205249299954,0.0711248874274823,0.0852740840251466,0.0977334427678515,0.1098482450030604,0.1249351776397252,0.1377552645831342,0.1488794876439935,0.1600967041430879,0.1699663762635757,0.1830736696732985,0.1957101650437007,0.2071661450893587,0.2177584750874653,0.2274854317499558,0.2371297798120292,0.2472857110877303,0.2564805414551607,0.2647075560816271,0.2724734592582379,0.279902917131178,0.2867732575214689,0.2928960319535912,0.2986306644526267,0.3042131954942215,0.3080329531679078,0.3139426820385301,0.3186017095327532,0.3223315610903844,0.3252119766825649,0.3233512695022037,0.3223704194626239,0.3208382234414106,0.3208316406476699,0.3204879649237928,0.3191335850910319,0.3171254065201872,0.3179520948226191,0.3185400959561343,0.3192878019042154,0.3199066844768874,0.3225070433712947,0.3226429756579085,0.3230167999281286,0.3251527814681514,0.3255310265643755,0.3260949995730995,0.3289552051659822,0.3328087294092959,0.3362786274665187,0.3383192820233886,0.3432883073026593,0.3448427121193132,0.3473349002957009,0.3495889387144992,0.3528372969154697,0.3560121765601217,0.3612012987012987,0.3513291312688408,0.3484333710834277,0.0,2.397169059537481,56.16146192633136,181.96108919199705,254.61245952126575,fqhc8_80Compliance_implementation_low_initial_treat_cost,3 -100000,95749,44790,424.1819757908699,6117,62.69517175114101,4803,49.61931717302531,1864,19.07069525530293,77.32698317968122,79.6859342841016,63.31555014592704,65.06088652381746,77.0864352470797,79.4466644389899,63.2256253770984,64.9737440726996,0.2405479326015154,239.269845111707,0.0899247688286379,87.14245111785601,164.71466,115.30702584497516,172027.5512015791,120426.34998274148,357.50423,232.04208237164244,372815.4027718305,241784.18573996564,369.15947,179.0606623667004,382292.9743391576,184488.9426794775,3111.29913,1450.0077153071738,3215351.53369748,1480504.3263032502,1159.43395,521.678647800555,1197109.7661594376,531130.8420455174,1815.59768,774.9066797777658,1859978.819622137,779620.9329406617,0.38173,100000,0,748703,7819.434145526325,0,0.0,0,0.0,30433,317.2774650387994,0,0.0,33883,350.5519639891801,1580503,0,56775,0,0,6593,0,0,69,0.720634158059092,0,0.0,0,0.0,0,0.0,0.06117,0.1602441516254944,0.3047245381723067,0.01864,0.3509071173825399,0.6490928826174601,24.25613149412929,4.244989960340647,0.3108473870497605,0.2550489277534874,0.2238184468040807,0.2102852383926712,11.47370346800122,6.133070081711183,20.02052319025217,12340.831165429836,54.92985514739484,14.723453441163551,16.873623678823925,12.137267164665056,11.19551086274232,0.5808869456589631,0.7812244897959184,0.6992632283991963,0.6111627906976744,0.1306930693069307,0.7229182019159912,0.8809523809523809,0.8724489795918368,0.748062015503876,0.1591836734693877,0.5249564712710388,0.7208387942332897,0.6376021798365122,0.5679314565483476,0.1215686274509803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022997821792209,0.0046135750643872,0.0069626291537259,0.0092957574772431,0.0114924993643529,0.0136347436484904,0.0158461475710731,0.0176796031276157,0.0200116513189497,0.0225281473899692,0.0247104642820539,0.0266999260901699,0.0286686402697257,0.0308188146134519,0.0326280933763835,0.0347909648887143,0.0366800563193639,0.0387100789345393,0.0405437708513048,0.0427956787615505,0.0576475378174947,0.0719972381181541,0.0851523348220838,0.0981509318924828,0.1106976842238408,0.1259661031285353,0.1380634213596351,0.1498823554462508,0.1610606983679097,0.1721210299784258,0.1851919718886757,0.1972099471449614,0.2081746359936448,0.2190368854701228,0.2294760714718219,0.2403276943883998,0.2501480331147284,0.2595780153428484,0.2675233777595982,0.2750272253109417,0.2821436430813421,0.2893321931848797,0.2951015956564004,0.3006350768935256,0.305850578488266,0.3105750246791707,0.3143909959140701,0.3193226990113138,0.3244487081426552,0.3279422249214438,0.3280496673579874,0.327065236843192,0.3261613898634654,0.3251337671728127,0.3236531798783661,0.3218766295512407,0.3198554468941687,0.3206477998784554,0.3217245680889967,0.3226588688395977,0.3234506897261684,0.3239425489460062,0.3268120657444531,0.3283999195153033,0.3304966584931968,0.3315947320380754,0.3319951026451411,0.3351346256558484,0.3376350119231309,0.3407316396496374,0.343289001861014,0.345460314102903,0.3484715610122776,0.3519092627599244,0.3509247151130207,0.3541176470588235,0.3580021318714786,0.3647367359289893,0.3629300776914539,0.3651903651903652,0.0,2.0577808376469826,59.63324437824206,183.5156785509628,250.7831836048182,fqhc8_80Compliance_implementation_low_initial_treat_cost,4 -100000,95764,44421,420.99327513470615,6099,62.507831753059605,4813,49.72641075978447,1860,19.057265778371832,77.39144353273707,79.73097648650037,63.36142006586866,65.08750669801694,77.16099351805164,79.50115879496839,63.275386359046514,65.00398598878361,0.2304500146854309,229.8176915319772,0.0860337068221426,83.52070923332633,165.03256,115.5420708042566,172332.56756192306,120652.92887124242,357.82972,231.59495560440496,373147.9365941272,241333.88335588208,362.92952,175.38355895524856,375782.3085919552,180639.5727912262,3141.33896,1437.5058087513164,3247773.9129526755,1469056.2998794971,1125.76421,499.7303287389162,1163525.416649263,509825.5369865458,1813.9156,761.7513766550774,1860648.281191262,767995.5096761575,0.3785,100000,0,750148,7833.298525541958,0,0.0,0,0.0,30480,317.72900045946284,0,0.0,33231,343.82440165406626,1585754,0,56910,0,0,6482,0,0,61,0.6369825821811954,0,0.0,0,0.0,0,0.0,0.06099,0.1611360634081902,0.3049680275454993,0.0186,0.3242310106716886,0.6757689893283113,24.357274752826157,4.332752163103111,0.3149802617909827,0.2426760856014959,0.2302098483274465,0.2121338042800748,11.45734064136142,6.098021948375954,19.72329921962714,12202.58007771892,54.53166611886876,13.975243675518426,17.11472501921299,12.382686693932426,11.059010730204914,0.5705381259089964,0.788527397260274,0.683377308707124,0.6046931407942239,0.1165523996082272,0.7398311588641596,0.928735632183908,0.8724489795918368,0.7237354085603113,0.1461187214611872,0.5076923076923077,0.7053206002728513,0.6174377224199288,0.5687426556991775,0.1084788029925187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021160699821804,0.0041347021089007,0.0064020616464763,0.0086937975442053,0.0108488983335197,0.013201286540184,0.0151823925005094,0.0173240557471381,0.0197059935232763,0.0219264140132602,0.0240676229508196,0.0260895436638214,0.0282775557176765,0.0304333954283008,0.032420006597394,0.0341913891413932,0.0361086675291073,0.0382692746468648,0.0400931383249654,0.0420017500729197,0.056772159826312,0.0707327536595829,0.0840825404152198,0.0972813798180575,0.1097450389084544,0.1248360898439152,0.1366379264632581,0.1482375972167548,0.1593100870401025,0.1699023401906028,0.1833125215294523,0.1950834387809177,0.2069381500440155,0.21708068427607,0.2269010090351513,0.2368607404456836,0.2464359360196177,0.2555968682250654,0.2637580621393999,0.2706354836495114,0.2773893043307405,0.2844336921332819,0.2915760098382366,0.2969878435834481,0.3023388407695854,0.3075266435304831,0.3119610048743907,0.3170238473767885,0.3217885190120709,0.3267277159233151,0.3255923342606405,0.3242300668671307,0.3235223838639398,0.321630853041636,0.3213100177830468,0.3199456762241924,0.3186353446370497,0.3186541640073969,0.3200183889257803,0.3213662428322114,0.3220789429357489,0.3235137323039864,0.3235595953672482,0.325385286420471,0.3247169356781498,0.324368080217255,0.3264788812622824,0.3294506532346922,0.3313524157817005,0.3350154970992609,0.3397113891679605,0.3413592440339544,0.3431174089068826,0.3478625314333612,0.3491201797079745,0.3558289396602226,0.357580283793876,0.3514263074484944,0.3546745245111171,0.3585046728971963,0.0,2.0150336051604865,57.185836194273705,179.70314553628717,261.5917923487098,fqhc8_80Compliance_implementation_low_initial_treat_cost,5 -100000,95717,44579,421.9835556902118,6251,64.16832955483352,4866,50.126936698810034,1975,20.27852941483749,77.37264048070351,79.73057411294495,63.34029949113111,65.08127132234401,77.13129600027143,79.4880551118156,63.251897710210095,64.99427317100167,0.2413444804320761,242.51900112935232,0.0884017809210178,86.99815134234257,164.7492,115.39884378675744,172121.1488032429,120562.53725749602,357.85369,232.4444862882696,373177.7949580535,242157.9259100513,371.12651,179.9089410314842,381657.803733924,183537.06976763284,3199.90848,1468.4822518893811,3302242.036419863,1493443.2811003844,1181.31304,521.1226544696566,1218398.6648139828,528667.0753049679,1931.78618,806.6611987966508,1985574.1195398937,818368.7000965215,0.37959,100000,0,748860,7823.688581965586,0,0.0,0,0.0,30524,318.17754421889526,0,0.0,33997,349.1856201092805,1580998,0,56705,0,0,6460,0,0,67,0.699980149816647,0,0.0,0,0.0,0,0.0,0.06251,0.1646776785479069,0.3159494480883059,0.01975,0.3402925937214264,0.6597074062785736,24.113901803339328,4.39845483102316,0.3166872174270448,0.2398273736128236,0.2219482120838471,0.2215371968762844,11.27337004286874,5.849085717901096,21.053992791924323,12307.60390420646,55.46683129100568,14.060978243537711,17.46027750413788,12.055646534057722,11.88992900927234,0.5581586518701191,0.7900599828620394,0.6859182349123946,0.5685185185185185,0.1141001855287569,0.7351837959489872,0.9328859060402684,0.8850855745721271,0.691358024691358,0.141025641025641,0.4913671101047268,0.7013888888888888,0.6139575971731449,0.5328554360812425,0.1066350710900474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023898734177215,0.0046618629209611,0.0068068616411536,0.0092013324666883,0.0114591912474961,0.013844493759798,0.0161970969583299,0.0182703397874924,0.0204438356724488,0.0225816357866721,0.024729584251807,0.0269501652943471,0.0290787944844889,0.0314311902040143,0.0335706179717321,0.0355323129075932,0.0375405066829556,0.0393303877030306,0.0411361817558227,0.0430036973389574,0.0569552188938889,0.0702492309623956,0.084013965631127,0.0963646491292604,0.1093530943320648,0.1247396851908622,0.1370529843464981,0.1486316819884235,0.1593170752541214,0.1694419128290355,0.1832012575907662,0.1956947374114338,0.2079926054806437,0.2184031233254229,0.2279383450870804,0.2387689307911325,0.2477200424178154,0.2563784988853109,0.2653262906798432,0.2729034551563593,0.2802000602033019,0.2870686829907767,0.2941866527632951,0.3005939881202376,0.3060182370820669,0.3106183011211564,0.3153940547444341,0.3195287351934552,0.324710634661695,0.3295916213792011,0.328802519312034,0.3280388354855123,0.3277850534409193,0.3266521192502782,0.3250531448364031,0.3235158907720126,0.3217106408572197,0.3219334395061323,0.3218531975504495,0.322196894144465,0.3238111241808099,0.3247725213692047,0.3255439330543933,0.3263977163756383,0.3279710388147011,0.3290235480437209,0.3292606871527384,0.332416895776056,0.3357272346953005,0.3362187684438323,0.3383683068017366,0.3423194840892272,0.3464512478782925,0.3473843821076573,0.3490152151591524,0.3533914272256241,0.3559038344491783,0.3563797621447289,0.3626673954632413,0.366030534351145,0.0,2.7616485974952463,58.09726267092049,184.99113799884225,259.86801345986834,fqhc8_80Compliance_implementation_low_initial_treat_cost,6 -100000,95740,44369,420.1692082724044,5957,60.89408815542094,4726,48.74660538959683,1845,18.88447879674117,77.33281654085012,79.69916136189197,63.319784280511655,65.0708846597049,77.10399201515393,79.47144906681847,63.23469072082824,64.98866163895443,0.2288245256961829,227.712295073502,0.0850935596834148,82.22302075047594,166.49578,116.63667080224512,173903.8646333821,121826.2690768593,357.92375,231.82117838451828,373189.0432421141,241478.78666818063,360.47476,174.34134887283665,372511.5312304157,179003.15725649227,3086.51775,1407.4985048919618,3185749.509087111,1432207.6365744476,1118.32594,494.112315315141,1152115.1242949655,500223.70702514384,1808.48914,759.8855734714896,1853457.5308126172,762437.382136997,0.37844,100000,0,756799,7904.721119699186,0,0.0,0,0.0,30567,318.59202005431376,0,0.0,33011,340.7979945686234,1574517,0,56478,0,0,6452,0,0,60,0.6266973052015876,0,0.0,1,0.0104449550866931,0,0.0,0.05957,0.1574093647605961,0.3097196575457445,0.01845,0.3331737673528004,0.6668262326471996,24.532007924142377,4.339182602643,0.3186627168853153,0.2329665679221328,0.228311468472281,0.2200592467202708,10.992238440826725,5.6401705743,19.63302317687676,12144.426866895226,53.32492541345346,13.110795349084745,16.967597381537498,11.956228967020706,11.290303715810508,0.5636902242911553,0.7811080835603996,0.701859229747676,0.5801668211306765,0.1163461538461538,0.73868149324861,0.9072681704260652,0.8769230769230769,0.7346153846153847,0.1666666666666666,0.500144216902221,0.7094017094017094,0.6406810035842294,0.5311355311355311,0.1036144578313253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002290022190923,0.0044627914760682,0.0068027210884353,0.008995639401917,0.0112928824319374,0.0133841264667535,0.015409090445548,0.0175293517100561,0.0196928488169976,0.0219637316840908,0.0238676208247042,0.0259577570362155,0.0280699589746753,0.030020288153572,0.0322520737897734,0.0344706405234162,0.0365679370339685,0.038635561735954,0.0406138873292157,0.042502656416026,0.0562254026912196,0.0701238649202828,0.0828501022387668,0.0954909113846865,0.1070284172358546,0.1224621436426698,0.1347679450195146,0.1467482703565726,0.1575360755369941,0.167808843559302,0.1814755792919286,0.1934283272204009,0.2044587026262846,0.2137679178648356,0.2234480179506357,0.2339888386925325,0.2440439658539307,0.2533003207472849,0.2611434603466476,0.2684965703619728,0.2757187832770035,0.2828660071416027,0.2904781084154663,0.2956616624298527,0.3015182272357081,0.3068429947817076,0.3111417298177491,0.3160440399669064,0.3211536966493042,0.324396782841823,0.3244321090781709,0.3236593928546843,0.322471070769144,0.3214755496451338,0.3216469083282512,0.3202597362819119,0.3175723806056384,0.3185174246898996,0.3188294514119956,0.3212063956079214,0.3222136990402065,0.3229331331014859,0.3242807825086306,0.3245457386490468,0.3271124561656338,0.3281840206319847,0.3265718925386741,0.3311961782638758,0.3353329123693258,0.3398705784270912,0.3425255972696245,0.3481009296148738,0.3478178845428248,0.3489464908291648,0.3539121514501538,0.3572184962936816,0.3595931997571341,0.3649869504115639,0.3571233251298878,0.3537933663743804,0.0,2.310021489263643,54.930443716617646,171.77898595403835,264.160403136177,fqhc8_80Compliance_implementation_low_initial_treat_cost,7 -100000,95786,44573,421.6691374522373,6066,62.23247656233688,4734,48.91111435909214,1790,18.33253293800764,77.34910350822409,79.67699574091611,63.34642956891118,65.06660120549843,77.1276300258796,79.45752855177012,63.2637511676756,64.98695987793435,0.2214734823444928,219.4671891459876,0.0826784012355759,79.64132756407594,165.3487,115.86312484109902,172623.03468147747,120960.39592539518,356.85309,231.10016950679105,372041.9581149646,240758.74273013807,366.11262,177.03854922060944,379220.48107239057,182570.61680879424,3075.35528,1410.9372415479695,3178928.183659408,1441409.6454199196,1152.79892,507.271656306978,1190387.8019752365,516461.2744106412,1757.30096,740.8707948770569,1801522.8530265384,746916.1333749339,0.38061,100000,0,751585,7846.501576430794,0,0.0,0,0.0,30430,317.13402793727687,0,0.0,33503,346.71037521140875,1581613,0,56794,0,0,6540,0,0,65,0.678596036999144,0,0.0,0,0.0,0,0.0,0.06066,0.1593757389453771,0.2950873722387075,0.0179,0.3282261885957984,0.6717738114042016,24.515851872122827,4.289183255705678,0.3231939163498099,0.239332488381918,0.2230671736375158,0.2144064216307562,11.143239115600927,5.72317284955156,19.14994050544251,12303.394559681105,53.79033226347102,13.5986823694781,17.255236698014816,11.87278903257758,11.06362416340054,0.5726658217152514,0.8058252427184466,0.6862745098039216,0.5861742424242424,0.1270935960591133,0.7251552795031055,0.9330143540669856,0.830423940149626,0.7098039215686275,0.1401869158878504,0.5156703424260012,0.7314685314685314,0.6350752878653676,0.5468164794007491,0.1235955056179775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0044902137666102,0.0068072759736636,0.0091009740886329,0.0112762842152356,0.0134675678977157,0.0155119346093479,0.0177784128020901,0.0198021825315731,0.0219969102014507,0.0240956449580477,0.0262593508532493,0.028497728814256,0.0304555466353774,0.0326009629759462,0.0347459640352417,0.0368067052980132,0.0388535758355022,0.0407734909963736,0.0428824325731542,0.0577099682751711,0.0718416951669752,0.0851217747769471,0.0972613392744545,0.1095702754536449,0.1248665955176094,0.1379346892918843,0.149291820849815,0.1608831124485135,0.1709018061834465,0.1836438188099312,0.1967346056117208,0.2083097795364612,0.2187694763659424,0.2284233803095811,0.2387375415282392,0.2484153200607088,0.2575810386894388,0.2674040043105893,0.2749124373326008,0.2820945750598466,0.2888491186206735,0.2955806661539372,0.3007594451498526,0.3062959140307206,0.3105284567878407,0.3153902954906697,0.3204708876869233,0.3245519690039004,0.3284423782984231,0.3279209841941439,0.3267514871116986,0.3253098591549296,0.3240225884255983,0.3235136980202427,0.3216475300808782,0.3207067115472747,0.3214958784680684,0.3216233721960864,0.3226479345326178,0.323008766846739,0.3236490756833623,0.3238069334895495,0.3227538079581292,0.3230732177263969,0.3245881953689926,0.3256717014533307,0.3279376498800959,0.3314317909711951,0.3358036496932026,0.3391903610058874,0.3419947924969446,0.342704829599543,0.3463832390273742,0.3495127258964897,0.3528003829583532,0.3523588553750966,0.3497547015535568,0.3484764542936288,0.3525009846396219,0.0,1.9367421193388,56.784073493728734,176.78100238488443,257.2780333221144,fqhc8_80Compliance_implementation_low_initial_treat_cost,8 -100000,95665,44774,424.2721998641091,5981,61.39131343751633,4654,48.04264882663461,1844,18.96200282234882,77.31532774038504,79.70794907543052,63.31028192710126,65.07669353994599,77.08483228677169,79.47762616228748,63.22517221987268,64.99387601799378,0.2304954536133578,230.3229131430413,0.0851097072285753,82.81752195220804,166.7633,116.76001100064428,174319.84529347203,122050.68834019166,358.73194,232.91651970932804,374383.80808028014,242867.14023867465,364.67943,176.01092938894968,377367.1039565149,181066.2270487774,3062.8678,1397.1742994790875,3166815.7842471125,1425642.4183129517,1108.74948,490.80758355981146,1144854.2413630898,498924.24068776495,1810.21608,761.7160662797902,1863534.249725605,770724.2691250214,0.381,100000,0,758015,7923.629331521454,0,0.0,0,0.0,30553,318.74771337479746,0,0.0,33330,344.51471279987453,1571595,0,56343,0,0,6696,0,0,71,0.7421732085924841,0,0.0,1,0.0104531437829927,0,0.0,0.05981,0.1569816272965879,0.3083096472161846,0.01844,0.3376934120274366,0.6623065879725634,24.400522576297124,4.350874384373292,0.319295229909755,0.2363558229480017,0.2191663085517834,0.2251826385904598,11.045332644479682,5.6393998915299415,19.684019422287363,12258.344966464729,52.81528714260197,13.145343885034798,16.848360683823017,11.250094083216942,11.57148849052722,0.5623119896862914,0.7890909090909091,0.6944818304172274,0.5843137254901961,0.1154580152671755,0.7219950940310711,0.9205128205128204,0.8277634961439588,0.7847533632286996,0.1221719457013574,0.5053920139900904,0.7169014084507043,0.6472196900638104,0.5282308657465495,0.1136638452237001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022894422270397,0.0045722743770149,0.0071951937323672,0.0093166439761851,0.0115865071614583,0.0136389101094983,0.0157888295051201,0.0178642561666922,0.0201053331288029,0.0221598705634177,0.0245010563452505,0.0268410185822436,0.0287016367134054,0.0306443136972045,0.0325041288191577,0.0346992387886811,0.0366582740148995,0.0390663110151636,0.0409831802531803,0.0428674163861298,0.0571180809494953,0.0713328447283007,0.0843286245041036,0.0973841491645271,0.1093499366821443,0.125281820587457,0.1378274210844844,0.1493588104976141,0.1612961834834931,0.1716732670079526,0.1843597094389239,0.1962860700557631,0.2079002079002079,0.2185831217718638,0.2283234766136936,0.2380931254020719,0.2478080707672031,0.2572476816422076,0.2656108083560399,0.2731075583061143,0.2793210055231986,0.2870602279909178,0.2926837930626257,0.2986526856306463,0.3037493317781989,0.3097562178017698,0.3150002503379562,0.318299788809445,0.3228795899613,0.3265397713772803,0.3254814814814815,0.3239079858482124,0.3232963103734673,0.3225452074991689,0.3214397124140287,0.3190987847062785,0.3170855145581932,0.3179027002243364,0.3182779198635976,0.3189115985673301,0.3204766618726535,0.3221645926597906,0.3233723535694092,0.3237580414581844,0.3250072122319454,0.3244910709637111,0.3266837899543379,0.3286382011116726,0.333909607310447,0.3363817891373802,0.3385855624770978,0.3424686750199947,0.3441044161439524,0.3460798645841348,0.3487442922374429,0.352793396339275,0.3521234341582646,0.3531300160513643,0.3502762430939226,0.3551223241590214,0.0,2.354895220067821,53.39855628561939,180.5451685764544,251.1374054575356,fqhc8_80Compliance_implementation_low_initial_treat_cost,9 -100000,95614,44476,420.5241910180517,6129,62.73139916748593,4818,49.67891731336415,1906,19.390465831363606,77.3146043072854,79.73357135864876,63.296484254502126,65.08300333398606,77.07043914185029,79.49678703118093,63.20405770806428,64.99714137423291,0.2441651654351204,236.78432746783076,0.0924265464378422,85.86195975314581,165.66616,116.03384328056354,173265.58872131695,121356.5411765678,359.25678,232.93056101225787,375035.49689376034,242917.21890385635,372.67172,180.69519808381588,385974.9932018324,185983.89947485548,3173.55462,1474.9214960266086,3272773.5373480874,1496626.4361391552,1153.28997,519.6265570287145,1185924.2893300145,523254.0980174326,1869.06786,798.8511280614528,1904365.1348128936,791362.2229034337,0.37909,100000,0,753028,7875.70857824168,0,0.0,0,0.0,30621,319.5347961595582,0,0.0,34151,353.5047168824649,1573414,0,56460,0,0,6537,0,0,60,0.6170644466291547,0,0.0,1,0.0104587194343924,0,0.0,0.06129,0.1616766467065868,0.3109805841083374,0.01906,0.3330745341614907,0.6669254658385093,24.55051327101604,4.327962111656517,0.3198422581984226,0.2337069323370693,0.2233291822332918,0.2231216272312162,11.32980993500333,6.041423177975838,20.431229300744548,12293.058744867509,54.96339481978489,13.62540573469414,17.452106466282718,12.003287358366435,11.88259526044158,0.5709838107098381,0.7992895204262878,0.7008436080467229,0.6003717472118959,0.1162790697674418,0.7286135693215339,0.9127358490566038,0.8561151079136691,0.7709090909090909,0.1333333333333333,0.5092432120161756,0.7307692307692307,0.6432384341637011,0.5418227215980025,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022190023608563,0.0048371885489448,0.0072887481219799,0.0095107453132144,0.0120646158854166,0.014259523324506,0.0163707020532226,0.0185105730922464,0.0205275592967239,0.0228773898884804,0.0249230769230769,0.0268621146596267,0.0289908747672396,0.0310655002936539,0.0334444708238281,0.0354868061874431,0.0376230442441197,0.0397857053864363,0.0415574145752694,0.0436392461174212,0.0581078114710401,0.0716253732125085,0.0851588918527231,0.0982408859786716,0.1110559819270113,0.1263979496738117,0.1389110225763612,0.1506608399062033,0.1621017268311471,0.1724793708096957,0.1853918035263396,0.1977452574525745,0.2094847877255688,0.2196084017224188,0.2291257854701797,0.2396164006482118,0.2497065891689487,0.2583560594108499,0.2666143915632529,0.2740370276904724,0.2804567352232722,0.2873208121233397,0.2936329410650439,0.298865734634661,0.3034697173947365,0.3085377724657146,0.3135125667746737,0.3170129969224508,0.3211253752976498,0.3251619542701832,0.324369091545692,0.3224106860357943,0.3210429880197322,0.3207951158820636,0.3199654638561391,0.3179056852698432,0.3162444680614818,0.3172097005219052,0.3189409787715628,0.3191082004759604,0.320570936200502,0.3220071741101344,0.3231266958881235,0.3251539216561078,0.3260286439622551,0.3281849279568777,0.3297992969724458,0.332251217380447,0.3344384728135688,0.3390586748795704,0.3426763110307414,0.3454267004647233,0.3450406709124156,0.3489555639954425,0.3507455687892713,0.3529832935560859,0.3591254458055512,0.3603843008994276,0.3634868421052631,0.3712179984484096,0.0,2.769021731273926,58.955347947255184,178.43298840496186,258.04865174528624,fqhc8_80Compliance_implementation_low_initial_treat_cost,10 -100000,95622,44441,419.7465018510385,6131,62.66340381920479,4862,50.0198699044153,1956,19.953567170734768,77.29129418892526,79.69307663835029,63.29829466637945,65.07063351164358,77.04486738690797,79.45210716768787,63.20562268536187,64.98375612359358,0.2464268020172966,240.9694706624208,0.0926719810175811,86.87738804999867,166.01486,116.30735981021913,173615.7578799858,121632.42748553588,360.31628,234.0622580459726,375949.1330446969,243916.94261984623,369.66075,179.73273983004074,381554.1716341428,184090.4565688337,3160.62181,1464.9627785314108,3254233.7641965235,1481187.0744039945,1167.96938,517.2353824761861,1203161.657359185,522724.3412362728,1902.23786,808.4222406655617,1942128.7151492331,804178.4635077406,0.37978,100000,0,754613,7891.625358181172,0,0.0,0,0.0,30799,321.20223379557007,0,0.0,33961,350.1600050197653,1570128,0,56348,0,0,6640,0,0,52,0.5438079103135262,0,0.0,0,0.0,0,0.0,0.06131,0.1614355679603981,0.3190344152666775,0.01956,0.328715953307393,0.671284046692607,24.38601876420313,4.363575278060362,0.3243521184697655,0.2354997943233237,0.2250102838338132,0.2151378033730974,11.313020005596348,6.0193125101313925,21.09933913741117,12299.69701615756,55.72828731696619,13.91349752230918,18.029558557894187,12.228887611275152,11.556343625487663,0.5726038667215138,0.8017467248908297,0.7070386810399493,0.5712979890310786,0.1204588910133843,0.7276688453159041,0.911504424778761,0.8454545454545455,0.7215686274509804,0.1478260869565217,0.5113342898134864,0.7301587301587301,0.6534740545294635,0.5256257449344458,0.1127450980392156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025222086038714,0.0047450065902869,0.0069526912497589,0.0094705822579006,0.0116696680198191,0.0137597392677089,0.0161510696005057,0.0187066668028141,0.0211436809226333,0.0234577381866584,0.025607629986668,0.0274639497144735,0.0295769721410641,0.0318615075480447,0.0340673294310756,0.0361176616606677,0.038190090267486,0.0401308275360814,0.0420377923915757,0.0441024678614994,0.0586507812091759,0.072762698903217,0.0864127524178559,0.098648335684359,0.111358574610245,0.1268431582178658,0.1394294571668206,0.1514370326181903,0.1624826258954346,0.1727847625591857,0.1855969119296127,0.1976804626080176,0.2093592841747763,0.2192136295452803,0.2298739088263821,0.2400869574862188,0.2492430421326659,0.2579228820714889,0.266020255234116,0.2742617484272405,0.2808372211481691,0.2873992253957853,0.2933728161089725,0.2992286560861794,0.3042473203314151,0.3087636121194163,0.3130797773654916,0.3173467956808302,0.3218650268545185,0.3258305263853114,0.3243017362234444,0.3229607375659771,0.320625555759432,0.3194896969170395,0.3191552735829386,0.31735450873178,0.3163257209058736,0.3170683491754938,0.3179698216735254,0.3182225407633041,0.3187125157457369,0.3199714240355612,0.3221736204576043,0.3231138422894052,0.3239287433798748,0.3249328219978607,0.3267853081646577,0.3302867552372876,0.3321265377855887,0.3332140158294555,0.3376138433515482,0.3410787063991954,0.3440080690915968,0.3484117872177573,0.3518063173822583,0.3581713462922966,0.3581532721902689,0.3632771886046995,0.366825708672467,0.3677494199535963,0.0,3.2048565825959128,59.502789320560446,181.83124200871924,259.6662811219459,fqhc8_80Compliance_implementation_low_initial_treat_cost,11 -100000,95640,44790,423.19113341698034,6136,63.03847762442493,4826,49.96863237139272,1864,19.165621079046424,77.27514686010801,79.68672276185454,63.27600815666828,65.05689005300135,77.04238229891195,79.4535509920496,63.19082067696895,64.97339537635405,0.2327645611960633,233.17176980494023,0.0851874796993357,83.49467664730525,165.51084,115.92096979153838,173056.0853199498,121205.5309405462,358.27351,231.65951075623627,374083.1451275617,241698.99639778488,370.85828,179.0690162724034,384557.7582601422,184819.3085593019,3145.02797,1440.8207404106554,3256840.600167294,1475051.0967936362,1150.3083,510.80777307333807,1189768.4127979924,521151.91190766345,1835.93142,763.8038671214775,1889122.8147218735,773479.6941092493,0.3819,100000,0,752322,7866.185696361355,0,0.0,0,0.0,30585,319.2492680886658,0,0.0,33897,351.24424926808865,1572724,0,56515,0,0,6464,0,0,61,0.6378084483479716,0,0.0,0,0.0,0,0.0,0.06136,0.1606703325477873,0.3037809647979139,0.01864,0.3305926155755507,0.6694073844244492,24.89463752666689,4.238158314320406,0.3253211769581434,0.2387070037297969,0.214048901782014,0.2219229175300456,11.306786939176112,5.901164935753047,19.877259505231624,12396.368496892625,54.98358691151949,13.84521971748672,17.80232569546652,11.607954780447615,11.728086718118618,0.5712805636137588,0.7786458333333334,0.7038216560509554,0.6030977734753146,0.1232492997198879,0.7370398196844478,0.911904761904762,0.8764845605700713,0.7265917602996255,0.1569506726457399,0.5081545064377683,0.7021857923497268,0.6405570060922542,0.5600522193211488,0.1143867924528301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047535550307612,0.0070924864288975,0.0094565769426104,0.0116152523927216,0.0137893107381456,0.015999102663458,0.0182948617165725,0.0205698629016592,0.0230484108781127,0.0253146379740083,0.0277783485032154,0.0299497921725173,0.0322314645886803,0.0342933261738313,0.0362899054476237,0.0382881248769162,0.0403884100114238,0.0420508231180669,0.0441225545405247,0.0584546566193915,0.0725512385263422,0.0857704105214504,0.0987200421385304,0.1107824911272604,0.1268150093729149,0.139256378377804,0.1509844261333958,0.1615920547094896,0.1723448616813189,0.1855062450746494,0.198225942874493,0.2103915071718184,0.2203168685927306,0.2308702320398097,0.2411039537983118,0.2497286531123767,0.258368023826446,0.2672841472850575,0.2748461467805639,0.2819037899522197,0.2887120030948501,0.2956901254773595,0.3024445298242244,0.3078859366449809,0.3124568157141447,0.317153280096278,0.3219080371927143,0.3264636029745759,0.3310939483707152,0.329937251197625,0.3282417491521685,0.3280013541534425,0.3268059874177453,0.3261286438435581,0.3237822349570201,0.3218181530326298,0.3215581941502028,0.3222951658282889,0.3218136774377528,0.3220570871675693,0.3233819057773565,0.3241409636283686,0.3249888243182834,0.3260660545166098,0.3275161491977495,0.3281081081081081,0.3313222724987431,0.3352761490116218,0.3374885862876652,0.3396200690783494,0.3437533227006911,0.3499591169255928,0.3508678844841961,0.3529079083796776,0.3570916905444126,0.3618886496462626,0.3624489795918367,0.367590027700831,0.3715277777777778,0.0,1.7295742841821962,59.101191336661216,181.65691463457117,258.1177583830841,fqhc8_80Compliance_implementation_low_initial_treat_cost,12 -100000,95690,44993,425.7289162921936,6067,62.4307660152576,4710,48.6989236074825,1930,19.866234716271293,77.28391542799022,79.68044115010812,63.28504443165552,65.0590362200264,77.04385729084485,79.43931908238775,63.19700292493443,64.97243964053659,0.2400581371453682,241.1220677203687,0.0880415067210904,86.59657948980737,165.34012,115.89493201118692,172787.2504963946,121114.98799371607,363.03457,235.488011923464,378884.46023617935,245593.0420351803,371.15287,179.5677006409854,384219.981189257,184888.83249554076,3118.5265,1421.398148702849,3229644.6964155086,1456075.513327255,1129.93923,496.4970453284671,1169218.7375901348,507245.5066657612,1901.39504,791.8846681155594,1959721.8727139723,805992.943477528,0.38162,100000,0,751546,7853.9659316543,0,0.0,0,0.0,30935,322.7505486466716,0,0.0,33894,350.5068450203783,1571647,0,56469,0,0,6566,0,0,66,0.689727244226147,0,0.0,1,0.0104504127913052,0,0.0,0.06067,0.1589801373093653,0.3181143893192681,0.0193,0.3300252047889099,0.6699747952110902,24.49240052346645,4.34705163627007,0.3276008492569002,0.2225053078556263,0.2140127388535032,0.2358811040339702,11.133204703353528,5.811141468841432,20.551612169904395,12302.308681028464,53.76910761769326,12.727534866593295,17.48649628919914,11.336611231555391,12.218465230345432,0.5560509554140127,0.7948473282442748,0.6973428386260532,0.5803571428571429,0.1125112511251125,0.7222653219550039,0.9106280193236715,0.8914141414141414,0.7336065573770492,0.0936170212765957,0.4934229757380883,0.7192429022082019,0.6303400174367916,0.5314136125654451,0.117579908675799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002036845625342,0.0045845504706264,0.0067311694772429,0.0091462485137346,0.0114567117405858,0.013711188982153,0.0158396654597378,0.018313110266781,0.0205676297622091,0.022854391608105,0.0249194657036748,0.027187538531092,0.0294399110937323,0.031535988127628,0.0336619354838709,0.0356995118722594,0.0378103369668835,0.0399738420976146,0.0418456609700537,0.0436160123396316,0.0586944940616088,0.0718286414221254,0.0857811499753381,0.0989404126813767,0.1109387367421244,0.1264315502021634,0.1388225301268779,0.1509243088980704,0.1620460423658166,0.1725995642888571,0.1852582341783066,0.1976992319941072,0.2088586921016528,0.2190271785550031,0.228923761874325,0.2399245241134358,0.2487618919855563,0.2571760224493706,0.2653128480192732,0.272855536947395,0.2798015164514109,0.2865819341525185,0.2927072334468317,0.2990356786876583,0.3042964802707671,0.3101915860161959,0.3148189931809065,0.3194141992995861,0.3232839070924927,0.3268877948338899,0.325801366263794,0.3248097328690769,0.3246630708783393,0.323171348111777,0.3220596109227199,0.3192376688489903,0.317698512050961,0.3183578367025466,0.3185501795178663,0.3196125042449373,0.320655848546315,0.3217544834153309,0.3228382963478114,0.3243218928523233,0.3260131859608299,0.3265798233428564,0.3269071487733128,0.3311346062805744,0.3338484231228489,0.3356975868764116,0.3372802623189725,0.3409573338993844,0.3427068328427382,0.34645195274287,0.3462433665394283,0.3498525073746312,0.3529142508391821,0.355708781180288,0.3570229434806939,0.3608762490392006,0.0,2.075101735430066,56.961772756549095,176.4546352429483,255.9791127513138,fqhc8_80Compliance_implementation_low_initial_treat_cost,13 -100000,95665,44616,422.7774003031411,6084,62.46798724716458,4740,49.0566037735849,1797,18.376626770501225,77.35161970545354,79.75810245050323,63.31721993396855,65.09451343521857,77.1203361985528,79.53004200780674,63.23076949811224,65.0123258564662,0.2312835069007377,228.0604426964885,0.0864504358563138,82.18757875236804,166.4894,116.52068735374613,174033.3037160926,121800.3724911714,359.63089,232.97945037320557,375429.8959912194,243041.15566786303,367.25282,177.99726288228896,382039.78466523805,184487.4647536394,3064.41135,1413.0379576823814,3170203.6272408925,1444195.8417421817,1114.47074,494.7427924808762,1151281.252286625,503470.7181109876,1756.11598,744.560327671635,1797119.8243871846,744307.199273765,0.38025,100000,0,756770,7910.604714367845,0,0.0,0,0.0,30741,320.81743584383,0,0.0,33633,349.647206397324,1573156,0,56397,0,0,6531,0,0,56,0.5853760518475931,0,0.0,0,0.0,0,0.0,0.06084,0.16,0.2953648915187377,0.01797,0.3250546704154952,0.6749453295845048,24.445449420219397,4.3353174049378,0.3265822784810127,0.2411392405063291,0.220675105485232,0.2116033755274261,11.44810821607624,5.937195813657364,19.22226701610601,12252.865974527793,53.98041277473629,13.660323909312613,17.62514873291834,11.734726266120148,10.960213866385184,0.5774261603375528,0.7944006999125109,0.7138242894056848,0.5783938814531548,0.1186440677966101,0.7419601837672282,0.9142857142857144,0.8629807692307693,0.7234848484848485,0.1699029126213592,0.5148514851485149,0.7247579529737206,0.6590106007067138,0.5294117647058824,0.1053952321204517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021681644562871,0.0042488465243624,0.0065967077354009,0.0086869056327724,0.0112705856025389,0.0136891423915257,0.0157854484270636,0.0179412035004237,0.020040899795501,0.0221653180374884,0.0240576974372653,0.0261629998047537,0.0281871320956654,0.0302799113356358,0.0325789424755451,0.0348045605975955,0.0367426048382081,0.0386703624113696,0.040794032273167,0.0427211395084514,0.0582045414171813,0.0721548014198506,0.085598824393828,0.0980617055307685,0.1101635883905013,0.1257660594642082,0.1381096978319495,0.1492139621636024,0.1604240887548009,0.170967430172997,0.1834131297446515,0.1956493478355072,0.2064794957489195,0.2172865993826214,0.2274163886044027,0.2377383592017738,0.2467793655936805,0.2556798991240909,0.2646684831970936,0.2721483466767458,0.2796135601064445,0.2858044680328731,0.2924408908654358,0.298592730103599,0.3038755173627547,0.3091544787511695,0.3136140499893826,0.3174482241946338,0.3220231714090128,0.3268539843390143,0.3256229671245396,0.3246546373348713,0.3233329113746009,0.3231119829227485,0.3217469995697776,0.3207134778222725,0.3188559154729377,0.3193616045094055,0.3202845154027223,0.3205057331882947,0.3220973782771535,0.3222904046881474,0.3244663038928422,0.3248099516240497,0.3253225458984609,0.3272746130111235,0.3280851063829787,0.331475101785155,0.3333216954123315,0.3373360720492969,0.3404486743711761,0.343517060367454,0.3470507544581618,0.3495842781557067,0.3528257823446987,0.3569644343999048,0.3634135130994331,0.3677744209466264,0.3702196908055329,0.367370007535795,0.0,1.9022887169599847,57.614889386798254,179.9465371101472,251.99048587492925,fqhc8_80Compliance_implementation_low_initial_treat_cost,14 -100000,95794,44810,423.5233939495167,6043,61.93498548969664,4774,49.29327515293234,1914,19.63588533728626,77.3507064425629,79.6794363444086,63.34838135415546,65.07026104566515,77.10996894891268,79.43784266255994,63.25891672271296,64.98222137302899,0.2407374936502151,241.5936818486557,0.089464631442496,88.03967263615675,166.02014,116.32589499076116,173309.53921957532,121433.38308324234,359.43121,233.187748664306,374682.9864083346,242896.58920632396,371.67511,180.00359661630242,384085.1932271333,184911.82169597823,3128.77072,1434.9241396627622,3233787.126542372,1465569.3046148631,1128.6762,501.7269258879834,1165177.568532476,510701.0103847669,1877.86606,795.2423828587958,1928812.034156628,804602.2750803095,0.38038,100000,0,754637,7877.706328162516,0,0.0,0,0.0,30568,318.5376954715327,0,0.0,33992,351.0031943545525,1576139,0,56558,0,0,6514,0,0,68,0.6994175000521954,0,0.0,1,0.0104390671649581,0,0.0,0.06043,0.1588674483411325,0.3167301009432401,0.01914,0.3281986796604841,0.6718013203395159,24.33743622051013,4.384834071752016,0.3190196899874319,0.2385839966485127,0.219941348973607,0.2224549643904482,11.116920062575131,5.709794792136883,20.589593033441155,12274.302204842865,54.31578968643539,13.538163326815424,17.349287653971913,11.7244285605904,11.703910145057646,0.5800167574361123,0.797190517998244,0.7071569271175312,0.6266666666666667,0.1186440677966101,0.7282868525896414,0.9393139841688656,0.86,0.7449392712550608,0.131004366812227,0.5271383915885195,0.7263157894736842,0.6527159394479074,0.5902864259028643,0.1152460984393757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339856569831,0.0043390105433901,0.006646574730839,0.0092942467089224,0.0117028631852936,0.0140389098720311,0.016295707472178,0.0185833392862609,0.0207649938175092,0.0228100695865738,0.0248683320695944,0.0271398961603973,0.0293404312169855,0.0314584534299596,0.0335227214139143,0.0354335182487784,0.0374666307969289,0.0394132586948634,0.0415805597383041,0.0435049657498594,0.058347245409015,0.0722366274936221,0.085503144654088,0.0983365383604972,0.1110654441985456,0.126823235953156,0.1394034503599868,0.1504793930171432,0.1610871514582177,0.1714591929692942,0.1837978062668862,0.1961801614838354,0.2071000130395097,0.2180801083845027,0.2277810153166129,0.2380372849477236,0.2467263264646554,0.2558949414156846,0.2649675320995909,0.2724099653250632,0.2793596155845356,0.2863465962838824,0.2924357625134505,0.2980149893446352,0.3030604567628571,0.3087835092169587,0.3135921601959951,0.3174679874365789,0.3225000647148663,0.325970054829186,0.3252958579881657,0.3237693080065472,0.3229850409893793,0.3221248409117204,0.321068593345821,0.3196530374547907,0.3175068540910604,0.3185041378062223,0.3186798137496576,0.3199763868267115,0.3205996313433397,0.3214505224339274,0.3228046547842007,0.3250146271209325,0.327557915057915,0.3289170506912442,0.32840313010577,0.3333016717325228,0.3371111817250997,0.3406217698974318,0.3429708586852097,0.3455870532125824,0.3453369682368604,0.3458403813624481,0.3470194933609568,0.3530182164543398,0.354424504950495,0.3655115511551155,0.3653954010095345,0.3634600465477114,0.0,2.0581985662549465,55.01117109611069,187.30099580778207,257.2936888768909,fqhc8_80Compliance_implementation_low_initial_treat_cost,15 -100000,95719,44261,418.7465393495544,5995,61.2939959673628,4698,48.328962901827225,1904,19.41098423510484,77.31652017658898,79.67502152087165,63.31665033110207,65.06165662937018,77.0688225167113,79.43051732107388,63.22441686643321,64.97292739679371,0.2476976598776872,244.50419979777396,0.0922334646688582,88.72923257646903,167.18086,117.06145699547214,174657.73775321516,122296.7613488149,357.65424,232.12888539007383,372917.6443548303,241778.21058522747,361.22678,176.46356128957746,371356.25111002,179827.720332902,3094.64586,1442.216992334662,3191733.8354976545,1465400.6439000224,1117.89631,502.5153733351085,1152933.04359636,510061.1914741156,1863.18838,798.1317203109394,1904510.1390528523,801778.6318812392,0.37804,100000,0,759913,7938.988079691598,0,0.0,0,0.0,30551,318.4111827327908,0,0.0,33100,339.8384855671288,1568868,0,56368,0,0,6721,0,0,54,0.5641513179201622,0,0.0,1,0.0104472466281511,0,0.0,0.05995,0.1585811025288329,0.3175979983319433,0.01904,0.3368454661558109,0.663154533844189,24.15311833721847,4.399617404758072,0.3192848020434227,0.2294593444018731,0.2281822051936994,0.2230736483610046,11.373909073659954,5.929652544945589,20.74042666180528,12174.811035480212,53.877049869157226,13.056599980229391,17.09180893195984,11.99073323343324,11.73790772353476,0.5644955300127714,0.7968460111317254,0.7053333333333334,0.5764925373134329,0.1116412213740458,0.7261001517450683,0.9308641975308642,0.8349056603773585,0.7751004016064257,0.1375,0.5014792899408284,0.7161961367013373,0.654275092936803,0.5164034021871203,0.1039603960396039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024007050171695,0.004349104327815,0.0065364120781527,0.0088602578822764,0.011322021484375,0.0135049803434298,0.0155528132744536,0.0181877597704318,0.0205417122524309,0.0226670079344765,0.0245570502829956,0.0266559878425694,0.0285972832066798,0.0306958831888296,0.0328426872414824,0.0349234886292014,0.0370485388652526,0.0388884278660636,0.0407380457380457,0.0427666534702977,0.0569418053496481,0.0706033779117222,0.0840683369865025,0.0969030969030969,0.1085031000885739,0.1238815441565309,0.1363240972546357,0.1478248837135041,0.1595162806597726,0.1700529940569418,0.1825721671693235,0.1951348836202698,0.2063093335073239,0.2157836041197437,0.2262130151461782,0.2359160783357531,0.2455221547257459,0.254537475666978,0.2627868964108152,0.2704721747997754,0.277214545286207,0.2844322237173112,0.2901109571684014,0.2963491739751173,0.3024559270516717,0.3076429426501623,0.3120747766598589,0.3161823717499586,0.3205493651204975,0.324368238200288,0.3231505187980056,0.3218810748211159,0.321010326463151,0.3201542073683295,0.3187878968460885,0.3171660117878193,0.3158662691112098,0.3165488955872906,0.3165394838377776,0.317197840629876,0.3178860259544856,0.3188198905543659,0.3219362435865085,0.3225748529873861,0.3230631891331098,0.3241571860974846,0.3265737461441791,0.3307762442229698,0.3341518170338151,0.3379896027620143,0.3405447258152669,0.3441409785444285,0.3456953642384106,0.349156919337688,0.3496148788277287,0.3533547848885711,0.3614605707272169,0.3632332191090506,0.367032967032967,0.3593570608495982,0.0,2.88833594155343,57.10216532025503,181.50763793280387,245.8797491610122,fqhc8_80Compliance_implementation_low_initial_treat_cost,16 -100000,95682,44481,421.66760728245646,6168,63.25118622102381,4821,49.84218557304404,1926,19.784285445538345,77.40264542862671,79.78293968547524,63.35728834693722,65.1120846150571,77.16423401555738,79.54385421391486,63.27010645636005,65.02632671410598,0.2384114130693291,239.0854715603865,0.0871818905771633,85.75790095112268,167.05788,116.9023867105249,174596.97748792876,122178.03422851204,358.27516,232.16175506181511,373908.1540937689,242103.4207706937,367.55599,177.97647817768015,380152.0871219247,182926.68503778207,3171.64535,1443.5370932029646,3282293.022721097,1476197.5640172276,1156.21705,508.5685444617827,1193959.3026901612,517088.6420564248,1887.79606,780.0690698771989,1941270.7928345976,790001.4959702299,0.37931,100000,0,759354,7936.226249451307,0,0.0,0,0.0,30645,319.71530695428606,0,0.0,33639,347.7352062038837,1573916,0,56425,0,0,6715,0,0,62,0.6270771932024832,0,0.0,1,0.0104512865533747,0,0.0,0.06168,0.1626110569191426,0.3122568093385214,0.01926,0.3334881560613098,0.6665118439386902,24.726427096521405,4.326943098162644,0.3171541174030284,0.2437253681808753,0.2113669363202655,0.2277535780958307,11.309656371123808,5.843816514423471,20.271008900150715,12234.864066140355,54.4773289111894,14.02660686319075,17.345716456862903,11.235799705698811,11.869205885436925,0.5538270068450529,0.7702127659574468,0.7024198822759974,0.563297350343474,0.1065573770491803,0.7260596546310832,0.9116945107398567,0.8557213930348259,0.6926229508196722,0.1435406698564593,0.4919650408796165,0.6917989417989417,0.64773735581189,0.5225806451612903,0.0978627671541057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0046418762098776,0.0067255021302495,0.0088053380457633,0.011114387691807,0.0133189418161823,0.0157819078980904,0.0178197813861871,0.0201522661080169,0.022053706660117,0.0245187478218085,0.0265173291721419,0.028613730066522,0.0306079362300332,0.0327067126142671,0.0346235336675107,0.0364364924051812,0.0386116011206807,0.0404039353537034,0.0423345492443981,0.0569118430536839,0.0703830125855967,0.0841273505708529,0.0970799234216228,0.109268868919546,0.1246733460997259,0.1378073498668194,0.1490999286756017,0.1601714023145724,0.1701002734731084,0.1829519142749448,0.1958810861119228,0.2068054286832833,0.2164662147386835,0.2269617440658204,0.2371232164008103,0.2466252744925371,0.2553690973626275,0.2639256993997055,0.2714987995884303,0.2782960055414454,0.2856226080462989,0.2914354530213228,0.2969727415168586,0.3025604344979754,0.3079667794524761,0.3133912391426607,0.3183941902391956,0.3227844013588746,0.3257665482300302,0.3251970301150629,0.3243758311967862,0.3238653905526397,0.3230937540485684,0.3220108092100392,0.320718987187123,0.3186299292214358,0.3192839226872572,0.3202410746207672,0.3209353644646925,0.3211221800646692,0.322068884170795,0.3230913446515988,0.3243748747522879,0.3275092401478424,0.3291495234623197,0.331196215877358,0.3337203099996862,0.3366913545578995,0.3422733584606229,0.3458749486933917,0.350534188034188,0.3513103883801705,0.3517756439567139,0.3560878621473206,0.3553113553113553,0.3552995391705069,0.3613682092555332,0.3665207877461707,0.3662878787878788,0.0,2.0947165186257117,55.80477588534793,182.43382875630493,262.7479933378768,fqhc8_80Compliance_implementation_low_initial_treat_cost,17 -100000,95716,44677,422.8133227464583,6124,62.56007355092148,4867,50.14835555184087,1928,19.68322955409754,77.33907921770925,79.70807423852803,63.32552877917672,65.0763598701727,77.09048925697554,79.46344023777228,63.2312506438254,64.98692336450793,0.2485899607337103,244.6340007557524,0.0942781353513169,89.43650566476435,165.98406,116.24732805972867,173413.07618371013,121450.25707272415,360.89172,233.99178735303587,376361.747252288,243782.102629692,369.50169,179.40992421856723,382059.5720673659,184269.18576655936,3183.53387,1472.595786755633,3280367.075515066,1493079.8178755892,1152.68445,519.3092057543146,1185506.5715240922,523851.255401255,1892.98516,813.3924249921076,1933891.4497053784,810899.2778049086,0.38024,100000,0,754473,7882.412553805007,0,0.0,0,0.0,30799,321.04350369844127,0,0.0,33729,348.3848050482678,1574737,0,56448,0,0,6362,0,0,75,0.7835680554975135,0,0.0,0,0.0,0,0.0,0.06124,0.1610561750473385,0.3148269105160026,0.01928,0.3312052320149486,0.6687947679850513,24.186660673552566,4.297109409312601,0.3184713375796178,0.2327922745017464,0.2262173823710704,0.2225190055475652,10.908161555115871,5.500318941283238,20.778140823179857,12258.743436783929,55.34338320357437,13.603806280919692,17.584942584513364,12.226052910440275,11.928581427701037,0.5549619889048695,0.7802294792586054,0.6845161290322581,0.5794732061762035,0.1089566020313942,0.7119883040935673,0.9053117782909932,0.851508120649652,0.7022900763358778,0.128099173553719,0.4935695913118034,0.7028571428571428,0.6201966041108132,0.5411203814064363,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497002106627,0.0048464938962566,0.0071049399632573,0.0093683953828645,0.011342481918151,0.0137693631669535,0.0157140672003263,0.0179685346455808,0.0201742366919568,0.0222556791413179,0.0247882181609336,0.0268996117581808,0.0291679522781034,0.0310014424067587,0.033062543224914,0.0348493309342102,0.0369422660547607,0.0388551028456381,0.0409833508386976,0.0430710244735937,0.0574525405676336,0.0717507089267215,0.085428769163014,0.0981447982836229,0.1100564256710436,0.1259626777251185,0.1384447250310354,0.1493371665868072,0.1608900573920292,0.1709842891483516,0.1834906880496637,0.1956349851069591,0.2071761274595159,0.2179547519236452,0.2279911446917714,0.2387917364353119,0.2484976431427741,0.2570167636760749,0.265123302602298,0.2720936364365879,0.2794211287988422,0.2863912941727123,0.2930932494143813,0.2989878421273282,0.3042702466498349,0.3083910833199985,0.3129568770539943,0.3178734756097561,0.3223292186389194,0.3267382851117116,0.3265662812584028,0.3241377413499092,0.3238017390814155,0.3225409776774735,0.3218824788548154,0.3202530288409992,0.3186056451740569,0.3190153805705271,0.3184946752046023,0.3196090365543661,0.3197605689302535,0.320640132932426,0.3209886887306242,0.3212790255043776,0.3233853541416566,0.3244600572469425,0.3246041934103552,0.3287787677486383,0.3310151036178433,0.3338906138046333,0.3377229080932785,0.3411846392138012,0.3427900482355928,0.3454461821527139,0.3511887980452965,0.3551880057115659,0.3596899224806201,0.3606221858370855,0.3661186960156032,0.36639753940792,0.0,2.700796017306213,59.56493874248591,174.65972065111688,266.4074614438575,fqhc8_80Compliance_implementation_low_initial_treat_cost,18 -100000,95668,44491,421.3530125015679,5970,60.91901158172011,4703,48.37563239536731,1828,18.55374837981352,77.30793472821749,79.68338210411412,63.31631099018998,65.06976408870207,77.0787191096007,79.46079840343063,63.22922619711805,64.98849361812809,0.2292156186167915,222.5837006834865,0.0870847930719307,81.27047057398329,166.53846,116.68510667911684,174079.5877409374,121968.79487301588,360.86709,234.32552771711968,376423.45402851526,244152.88470661183,368.21463,178.62991686715708,379977.934105448,182843.2806841378,3042.15727,1414.6955027599213,3129838.6085211355,1429173.651590728,1100.29534,506.4237390192324,1122031.7556549734,501693.3215011769,1785.79752,767.6157508279234,1815275.619851988,759149.2389415184,0.37908,100000,0,756993,7912.708533678972,0,0.0,0,0.0,30792,321.03733745871136,0,0.0,33679,347.27390559016595,1569378,0,56372,0,0,6725,0,0,73,0.7421499351925408,0,0.0,0,0.0,0,0.0,0.0597,0.1574865463754352,0.3061976549413735,0.01828,0.3361681643132221,0.663831835686778,24.29978739224881,4.274009445764453,0.3300021263023602,0.242185838826281,0.2158196895598554,0.2119923453115033,11.244325525051456,5.9046401250718255,19.817981518358643,12165.899145068845,53.91906698159973,13.708251951646782,17.70117072301755,11.453077267932455,11.05656703900294,0.5715500744205826,0.7945566286215979,0.6875,0.5802955665024631,0.1273821464393179,0.7306525037936267,0.9203747072599532,0.8317307692307693,0.7019607843137254,0.2045454545454545,0.5096011816838996,0.7191011235955056,0.6346830985915493,0.5394736842105263,0.1055341055341055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024401109693619,0.0048437436666531,0.0073139309589263,0.0094966279353213,0.0115633390285574,0.0136450653741191,0.0157334991995595,0.0178764675855028,0.0199349812917867,0.0221719503331934,0.0241624636076598,0.0262528362714196,0.0282817063638981,0.0305658861222429,0.0324950725953749,0.0347365809279629,0.0368351794096009,0.0387873754152823,0.0409137721187154,0.0428251237946312,0.0575780050349416,0.0720461396750963,0.0850880782264748,0.0980099293167283,0.1102359714050737,0.125117661367939,0.1371791743148468,0.1491291572627006,0.159791005545405,0.1695633515717197,0.1829021348096766,0.1942743383896306,0.2057828862235078,0.2161509021323127,0.2254472636049556,0.2353788373973832,0.2451648903521009,0.2539239623299616,0.2621628062689379,0.2696216018054966,0.277211672070403,0.2838623626727194,0.2903859815297182,0.2959314672393727,0.3012907071518071,0.3068710581207341,0.3115267922068153,0.3167189452477494,0.3202274172821558,0.3238397461324871,0.3222874098051116,0.3214418688031772,0.3215228469389195,0.3203633150323767,0.3192592482233578,0.3182431810511459,0.317012803630075,0.3170028818443804,0.3173871310548147,0.3181940146324884,0.3186870962896199,0.3199952458301969,0.3193162751677852,0.3195484519950821,0.320948141017928,0.3221557199236821,0.323959729629524,0.3272075020454402,0.3305144467935165,0.3327777777777778,0.3355395289392003,0.3372853421234515,0.3410437413336695,0.3421032563105315,0.3435294117647058,0.3500413760491784,0.3524441762220881,0.3485908454927043,0.3474279558308645,0.3472535741158766,0.0,3.010498778938593,57.01366104234404,182.625615382472,244.71478988179527,fqhc8_80Compliance_implementation_low_initial_treat_cost,19 -100000,95707,44793,425.2562508489452,6183,63.33914969646944,4813,49.714231978852126,1874,19.183549792596157,77.38171245272493,79.75490027974513,63.34258245905804,65.09483303150172,77.15147433580846,79.52688186819222,63.25706117531493,65.01255547241651,0.2302381169164675,228.0184115529096,0.0855212837431125,82.27755908521317,166.11958,116.27572521270744,173570.98226879956,121491.34881744016,357.52656,231.2600493825995,373003.1972582988,241072.91983094183,371.19929,179.5782493948439,384209.1696532124,184809.310700879,3133.24271,1436.0409292242643,3239033.299549667,1465702.4242994385,1146.25692,507.7265944202143,1183543.6801905816,516371.6597743264,1838.50368,769.403171750843,1884753.2364403857,773736.9152167459,0.38146,100000,0,755089,7889.590103127253,0,0.0,0,0.0,30495,318.05406083149614,0,0.0,33928,350.83118267211387,1577581,0,56608,0,0,6547,0,0,66,0.6896047311063978,0,0.0,0,0.0,0,0.0,0.06183,0.1620877680490746,0.3030891153161895,0.01874,0.3262279888785913,0.6737720111214087,24.47488934674097,4.2875670434201645,0.3207978391855391,0.2432993974651984,0.213795969249948,0.2221067940993143,11.250366878334129,5.9310884382061335,19.92171740918942,12344.638565606469,54.65968071025811,13.960016688195452,17.629802380650894,11.36248825560964,11.707373385802136,0.5638894660295034,0.7822374039282665,0.7130829015544041,0.5529640427599611,0.1197380729653882,0.7484894259818731,0.9002320185614849,0.91725768321513,0.728,0.15,0.4938377758670106,0.7135135135135136,0.6360392506690455,0.496790757381258,0.1118963486454652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022382920110192,0.004338614684386,0.0065856232495839,0.0086849643459358,0.0107614378420163,0.0129837067209775,0.0151720621972979,0.0175078606721385,0.0195557282029788,0.0218855563517248,0.0238458936058968,0.0260469605034855,0.0280440148087206,0.0302334205484249,0.0322593960908959,0.0341807880398258,0.0361758979245204,0.0383521842897167,0.0401863715783343,0.0419350132349569,0.0568755025952189,0.0716394472361809,0.0854912494229235,0.0978981253550464,0.109656663678076,0.1253912859560067,0.138463007565067,0.150155968870104,0.161231051906293,0.1714218294147932,0.1852885402749644,0.1969473912102186,0.2085898244621843,0.2185819231273776,0.2285711143130547,0.2388522339813134,0.2473515177197404,0.2572925803477048,0.2664511738686628,0.2743791433380277,0.282349402468793,0.2891377536706256,0.2960854850543156,0.3022453332055306,0.3079109081635131,0.3129265948796294,0.3170188820807803,0.3221645550297664,0.3266547591312676,0.3303007528710626,0.3297700685760387,0.3289882146094887,0.3276124022283495,0.3261787727213757,0.325434673143568,0.3236308161708619,0.3209685566359389,0.321764446116354,0.3224396796517658,0.3231198762292604,0.3253525072369035,0.3272576799542848,0.3277277652746519,0.3274625935162095,0.329765581974475,0.3328755765144841,0.3338623289029954,0.3362370425877357,0.3383157381275913,0.3420419116776511,0.3444358962755125,0.3471979679314176,0.3501324586855052,0.3538931297709923,0.3560022543678376,0.3564732407737035,0.3556811240073305,0.3544072948328267,0.3509841973939562,0.3551004636785162,0.0,2.282015830338184,58.080375264971856,177.08053118155513,261.8487741906918,fqhc8_80Compliance_implementation_low_initial_treat_cost,20 -100000,95853,44425,419.10008033134073,6067,62.04291988774478,4798,49.42985613387166,1862,19.00827308482781,77.44506122741345,79.72379793196062,63.40474875222951,65.08460871395317,77.21507369721431,79.49618154256909,63.32014197972148,65.00352138376786,0.2299875301991392,227.61638939152817,0.0846067725080317,81.08733018531211,165.99374,116.15947272392566,173175.09102479837,121184.80583379304,357.23685,231.37078360063435,372100.9671058809,240790.75334169436,366.28592,177.63760475460376,378206.68106371217,182227.52410264412,3125.41635,1429.3127717116863,3222298.571771358,1452903.708716531,1108.74621,490.96609412757874,1140482.1132358925,496183.76045367145,1821.95566,760.8762291887933,1862224.8860233896,761887.4436814676,0.37957,100000,0,754517,7871.595046581745,0,0.0,0,0.0,30539,317.96605218407353,0,0.0,33533,345.9046665206097,1580406,0,56830,0,0,6554,0,0,59,0.6155258573023276,0,0.0,0,0.0,0,0.0,0.06067,0.1598387649181969,0.3069062139442888,0.01862,0.3427230046948357,0.6572769953051644,24.548392368923924,4.268656164273014,0.3276365152146728,0.2363484785327219,0.2236348478532722,0.212380158399333,11.074664366174312,5.73115881768843,19.74278553723281,12249.780662144753,54.243132733172914,13.686340488498242,17.476509941724473,12.04793989454238,11.03234240840781,0.5619007919966653,0.7760141093474426,0.6800254452926209,0.5964585274930102,0.1050049067713444,0.7492401215805471,0.9295454545454546,0.8411910669975186,0.7904411764705882,0.1144278606965174,0.4910970706490523,0.6786743515850144,0.6244653550042771,0.5305867665418227,0.1026894865525672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024494422964027,0.0048217668331324,0.0068746641250012,0.008891234623036,0.011197593838275,0.013582118403516,0.0156237268801434,0.0177633658621146,0.0199328084632744,0.022361963190184,0.0245645651795496,0.0266855373002687,0.0289834233716081,0.0310031270572745,0.0333508484530028,0.0356011106638177,0.0375407208232069,0.0394599131633213,0.0415381900104857,0.0434538303053006,0.05812365092441,0.0720867548423494,0.0849562340327511,0.0979348989485613,0.1100473435034192,0.1261728108410465,0.1382377231433835,0.1495776892430279,0.1606512629682152,0.1716248608851981,0.183681145092308,0.1953615927789414,0.2071705363248559,0.2176096235086072,0.2269078289899955,0.2368974137740315,0.2466095367574133,0.2554097476574613,0.2634770583968081,0.2709842010730915,0.2782145251913339,0.2845217635298657,0.2905000177437098,0.2970844504021447,0.3025276365445521,0.3073380940655011,0.3131187963901718,0.3187087251396506,0.3235724554155388,0.3277540360873694,0.3270322632726098,0.3257548699068605,0.3243691339290732,0.3239020878329733,0.322900017758835,0.3205323657651614,0.3181302580584176,0.3189025883889932,0.3197755483761265,0.3207115087607179,0.3207920422522068,0.3223962952014977,0.3236485921965076,0.3231245545260157,0.3229847885974368,0.3240298817181988,0.3259429153924567,0.3316762029828346,0.3347494515443814,0.3358229598893499,0.3386149433137549,0.3396447186469524,0.34112385032128,0.3477326785851301,0.3525732158089281,0.3553936208338311,0.356469315195548,0.3609846917666529,0.3639910813823857,0.3741176470588235,0.0,2.4336534457585204,57.46205593327666,174.79301585227844,261.1506673605664,fqhc8_80Compliance_implementation_low_initial_treat_cost,21 -100000,95680,44688,423.6517558528428,6225,63.87959866220735,4854,50.10451505016722,1960,20.087792642140467,77.29747507811412,79.70076623303072,63.28577397120039,65.06580693278464,77.05885873017215,79.4645783938762,63.198230750230366,64.98163302125474,0.2386163479419707,236.18783915452468,0.0875432209700264,84.17391152990206,165.97108,116.26767918027744,173464.7575250836,121517.22322353414,362.40678,234.51090737137253,378076.212374582,244406.20293147312,366.26288,176.92563218360763,378903.741638796,181859.61701055864,3200.69701,1453.4804294527785,3308346.206103679,1482287.6641254837,1160.56286,508.9025342790127,1196944.1680602003,516016.97177183256,1917.65358,791.0668728839602,1968305.3720735784,796971.431996236,0.38123,100000,0,754414,7884.761705685618,0,0.0,0,0.0,30787,321.1015886287625,0,0.0,33641,347.66931438127085,1572184,0,56411,0,0,6653,0,0,66,0.6793478260869564,0,0.0,0,0.0,0,0.0,0.06225,0.1632872544133462,0.314859437751004,0.0196,0.3262040313894445,0.6737959686105555,24.561795439281248,4.335728074024695,0.3341573959620931,0.223114956736712,0.215286361763494,0.2274412855377008,11.22455513154948,5.88001619572952,20.58748512039711,12323.335169050402,54.89452122116783,13.097067971698412,18.16512274293214,11.622172172221632,12.010158334315644,0.557684384013185,0.8024007386888273,0.688039457459926,0.5732057416267943,0.1114130434782608,0.727130570758405,0.9307875894988068,0.8743961352657005,0.6926605504587156,0.1184210526315789,0.4970629370629371,0.7213855421686747,0.6241721854304636,0.5417170495767836,0.1095890410958904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024828732417203,0.0045138254924634,0.0065891669627899,0.0090031500863733,0.0112813313802083,0.0136181221862331,0.0159214230345559,0.0177283960703417,0.0199024310420651,0.0220581458459206,0.0240530089339747,0.0264842152844125,0.0288371518811534,0.0309344214995259,0.0328019493257893,0.0349920872164585,0.0368355047003099,0.0387926111289937,0.0406778955691264,0.0425933259686933,0.0573058120586637,0.0716536339750232,0.0851731374606505,0.0977646873192026,0.1104313245640868,0.1256942754673465,0.1385887447725391,0.1505505740026836,0.1625092219359115,0.1737697526623153,0.1872115591977571,0.199182806420497,0.2109865934807941,0.2212910929267036,0.2303554698263984,0.2406509656878515,0.2504274937133277,0.2586004911347917,0.2669136195259414,0.2746646795827123,0.2811717808473162,0.2875401232398491,0.2941490054849371,0.3000156045565305,0.3058066399834548,0.3107576112845701,0.3155869709616373,0.3196756839448255,0.3236721873215306,0.3278504277459704,0.3266217729855197,0.3257354158618025,0.3245415760178566,0.3237722729248153,0.3237853031722661,0.322046363399574,0.3189270454185789,0.3188510345279863,0.3198439203925845,0.3200804785983904,0.3211132473447445,0.3220038596353038,0.3221142797451164,0.3233943931898204,0.3256929126306703,0.3266393016730749,0.3267563187672362,0.330508208556989,0.3345603702145561,0.3384377355496489,0.3389104171415546,0.3414401019541206,0.3442416614222782,0.3454296993622836,0.3488284558200809,0.3516678495386799,0.3558461538461538,0.357856123904626,0.3571823204419889,0.351508120649652,0.0,2.395900412646212,56.001035730888354,181.99823237263837,267.0101046819203,fqhc8_80Compliance_implementation_low_initial_treat_cost,22 -100000,95825,44595,421.4140360031307,6137,62.90633968171145,4786,49.30863553352465,1858,19.04513435950952,77.32864418348662,79.63922680744065,63.32870225298407,65.03838439636183,77.09991512973242,79.4116746471435,63.2433182759358,64.95582443845596,0.2287290537541935,227.5521602971509,0.0853839770482665,82.55995790587178,165.10516,115.68498650867332,172298.6277067571,120725.26638004,358.6057,231.5690266960724,373599.0816592747,241028.3521527524,366.52348,177.22003632948335,378311.20271327946,181765.5523645542,3109.62159,1414.2025984330178,3207881.220975737,1438680.9911634391,1109.31281,490.5799746415836,1141185.577876337,495606.4672513704,1807.28894,759.7733398014003,1853481.262718497,763431.8608966167,0.38042,100000,0,750478,7831.755804852595,0,0.0,0,0.0,30469,317.3075919645186,0,0.0,33521,345.5778763370728,1580084,0,56775,0,0,6814,0,0,66,0.6887555439603443,0,0.0,0,0.0,0,0.0,0.06137,0.1613216970716576,0.3027537884960078,0.01858,0.3256103249883377,0.6743896750116622,24.874747603384375,4.22624048607458,0.3274132887588801,0.2331801086502298,0.2306727956539908,0.2087338069368993,10.99917397523371,5.810682821256735,19.82165194793817,12265.528454857227,53.981794522353255,13.324514067039344,17.658920091900796,12.189224565805867,10.809135797607231,0.5651901379022148,0.7948028673835126,0.6809189534141672,0.582427536231884,0.1081081081081081,0.7286158631415242,0.9292682926829268,0.8341584158415841,0.7286821705426356,0.1448598130841121,0.5051428571428571,0.71671388101983,0.6276870163370594,0.5378250591016549,0.0980891719745223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026231832683445,0.0048858614118314,0.0070308933191295,0.0093551925889809,0.011653447223917,0.0137751985339034,0.0157680154928141,0.0178901282823231,0.0201626913565107,0.0223279611153747,0.0247343668350461,0.0266412158903153,0.0288676957227714,0.0309759110562075,0.0329363237947924,0.0348026404140367,0.0369423719693285,0.0389101427638331,0.0408616893099007,0.043068276436303,0.0571658027305249,0.0709894613583138,0.0844373637430823,0.0968979214392299,0.1092137579188143,0.1256329214278918,0.1378930067334711,0.1488338440585631,0.1607953271327431,0.171898115392037,0.1844797140149883,0.1960990069019234,0.2067956942481243,0.2170011367611052,0.2265130761021443,0.2366651527068493,0.2458963307054961,0.2549231548724877,0.2636761115212083,0.2715198366728985,0.2787292016928517,0.286040975243635,0.2933005662998184,0.2991073037690284,0.3039154830150558,0.3090440169305379,0.3144622557559502,0.3192576825522261,0.3236583973427444,0.3275073375816388,0.3267413488629164,0.326174755675631,0.3249901124357308,0.324282794311642,0.3231591961984776,0.3204139921992567,0.3184537505752416,0.3192779997040982,0.320843011340347,0.3218845852057921,0.3232236188906165,0.3240519336798214,0.3253148140400786,0.325110505871322,0.3262295475841522,0.3274858380974756,0.3296318441957803,0.3327894059685568,0.3361165455561766,0.3410247308010886,0.3439242170149118,0.3442692348396656,0.3457333165765992,0.347849298352654,0.3493647058823529,0.3502501786990707,0.3506690997566909,0.3497168284789644,0.357532751091703,0.3549382716049383,0.0,2.43520058684619,56.2217490533493,168.9363342481672,271.1981449618052,fqhc8_80Compliance_implementation_low_initial_treat_cost,23 -100000,95731,44608,422.8201940855105,6019,61.69370423373829,4714,48.50048573607296,1898,19.34587542175471,77.35098256499538,79.69703881745104,63.33757887846742,65.06994056131751,77.11472042923346,79.46640664205718,63.25048232917965,64.98826707207395,0.236262135761919,230.6321753938647,0.0870965492877644,81.67348924355622,167.6455,117.48498184584582,175121.4340182386,122724.07250090963,362.02826,233.9552110017496,377427.6462170039,243646.6798639237,367.04296,176.99381410343378,379040.38399264606,181521.01292046884,3122.39879,1423.9963258271166,3214002.413011459,1440219.6584060132,1128.99295,494.46455475516416,1160829.428293865,498026.2745466874,1869.4534,776.5563686590285,1906920.934702448,771689.4549489092,0.37977,100000,0,762025,7960.065182647209,0,0.0,0,0.0,30875,321.72441528867347,0,0.0,33587,346.43950235555883,1566705,0,56250,0,0,6751,0,0,62,0.6476480972725659,0,0.0,0,0.0,0,0.0,0.06019,0.1584906654027437,0.3153347732181425,0.01898,0.3271546261089987,0.6728453738910013,24.45999676176988,4.322120068055051,0.316079762409843,0.2316504030547305,0.2189223589308443,0.2333474756045821,11.038119563378247,5.6074532393188585,20.11049957809267,12273.625932226472,53.755027589633706,13.242845835892332,17.080898356309007,11.45477328192026,11.976510115512104,0.5644887568943572,0.8058608058608059,0.7167785234899329,0.5755813953488372,0.1081818181818181,0.7261345852895149,0.915841584158416,0.8842364532019704,0.7012448132780082,0.13215859030837,0.5043655413271245,0.7412790697674418,0.6540590405904059,0.5372945638432364,0.1019473081328751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023492957175984,0.0044090370055036,0.006524408186458,0.0086942390509466,0.010950574981444,0.0131933910883529,0.0154534612287336,0.0176357123174428,0.0197365058923333,0.0222292726360928,0.024468499497714,0.0264319441593102,0.0287050840487328,0.0307689139232424,0.0325781959230832,0.0343148908021622,0.0364172922599016,0.0384775029055288,0.0402574313014004,0.0421949720262963,0.0571470330312774,0.0715802688706387,0.0850372234455279,0.0979876779443615,0.1105184373089329,0.1260887949260042,0.1376468841471174,0.1493790505379433,0.1602183387455135,0.1707926633058028,0.1838491118842702,0.1966255046050282,0.2084357529747014,0.2185120350109409,0.2276855001155764,0.2377759553151875,0.2473675395008654,0.2560941314105088,0.2645613716568135,0.2727439450729571,0.2801083170356312,0.2863963489555907,0.293885951527625,0.3004059539918809,0.3055049879851452,0.3109470186450064,0.3154578864471611,0.3198637363196095,0.3242228465631757,0.3272832873529839,0.3268414313632994,0.3254887912148477,0.324535913784348,0.3240629478957045,0.3230609057782405,0.3206132617861249,0.3189060642092747,0.3184636894481454,0.3202599846061746,0.3213080206454378,0.3216159496327387,0.3221001896333755,0.3243141361256544,0.3252290502793296,0.3260097008116026,0.3276833211640763,0.3284677763551002,0.3312260174875763,0.3345822536592198,0.3354079124712598,0.3380685698675044,0.3392154778356543,0.3442715878314543,0.3460339189291961,0.348466372760529,0.3534093608933238,0.3558035022470169,0.3574329813160032,0.3583862945565073,0.354479046520569,0.0,2.8054061380239808,55.547696854898135,179.87162614866145,253.77620089691925,fqhc8_80Compliance_implementation_low_initial_treat_cost,24 -100000,95835,44603,421.9126623884802,6112,62.586737621954406,4802,49.43914018886628,1907,19.450096520060523,77.51248185563044,79.79799866172296,63.42745123530996,65.11078363705562,77.28356311680257,79.57222313151318,63.34330235282509,65.03031640151696,0.2289187388278719,225.77553020977348,0.0841488824848752,80.46723553866286,166.6269,116.61539822451287,173868.52402566912,121683.51669485352,361.58524,234.12655165846596,376612.0310951114,243613.973661466,367.00857,177.9098143199414,378517.8379506443,182288.54396176455,3152.25935,1429.7845952999398,3247758.1155110346,1450424.4120623372,1156.87285,511.3090018383245,1189505.274690875,515896.6850725332,1873.81218,775.1698114277953,1913460.0511295456,776173.5045726954,0.38119,100000,0,757395,7903.114728439506,0,0.0,0,0.0,30791,320.571816142328,0,0.0,33649,346.720926592581,1579256,0,56621,0,0,6507,0,0,75,0.7721604841654929,0,0.0,0,0.0,0,0.0,0.06112,0.160339987932527,0.3120091623036649,0.01907,0.3281811085089773,0.6718188914910226,24.500663680528216,4.28323551619656,0.324448146605581,0.2346938775510204,0.2113702623906705,0.229487713452728,11.289194251541508,5.949525696505226,20.045732925854686,12266.408993488338,53.96746477856259,13.295056304219898,17.49590072398048,11.269085233873426,11.90742251648878,0.5705955851728447,0.7994676131322094,0.7034659820282413,0.6118226600985222,0.1107078039927404,0.7464342313787639,0.9375,0.8690176322418136,0.7603305785123967,0.1704035874439461,0.507909604519774,0.7235213204951857,0.6468561584840654,0.5653298835705045,0.0955631399317406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023374415639609,0.0044155923071469,0.0065478060795264,0.0089090927540055,0.0112354984863568,0.0135157123970304,0.0157194925780375,0.0178760809267417,0.0202179040772773,0.0223847019122609,0.0243612718242793,0.026530884328626,0.0286263267675677,0.0304530391289134,0.0326182204307172,0.0350554648928918,0.0369404606692742,0.0387745580840806,0.0406893399538777,0.0426426801590771,0.0570475048234864,0.0711948054663892,0.0844571584252826,0.0972912224684641,0.1096147163811349,0.1254053254750362,0.1379047215303905,0.1498686854724664,0.160930947274066,0.1710984268411527,0.1838398176226423,0.1965761192417778,0.2082813127639478,0.2191881032449666,0.2278603358704845,0.2385148657165286,0.2478919990643483,0.2571088450653609,0.2660756139814532,0.2732051238101767,0.2809083360243576,0.2872849672136875,0.294086439838721,0.2999164378655843,0.3055283313368906,0.3101348198718106,0.3147970438315532,0.3195244546294772,0.3233933426977152,0.3271312540184488,0.325724084344774,0.3242048502764548,0.3231176322347605,0.3217166271296097,0.3207117732257397,0.3190363650224899,0.3173465521596362,0.3177779595843901,0.3193451773194473,0.3212162210275216,0.3222406995646406,0.3225850956895362,0.3227005911721083,0.3235962060827358,0.3251896740945746,0.3259330094076295,0.3268627617190811,0.3290029835902536,0.3323747488046566,0.3341660486357781,0.3356580829756795,0.3384944218538213,0.3404294820224023,0.3440876350540216,0.3454897978026036,0.3470335539301056,0.3495058400718778,0.3529179810725552,0.3547863710113575,0.3557223264540338,0.0,2.5141604571045137,54.80993750160324,179.6363896915918,261.83277983040443,fqhc8_80Compliance_implementation_low_initial_treat_cost,25 -100000,95738,44633,422.9459566734212,6131,62.85905283168648,4858,50.16816728989534,1918,19.626480603313208,77.31288813594676,79.67100920058327,63.318020272784125,65.06172248623743,77.07149042839826,79.43192173864047,63.22877106204034,64.97623668084957,0.2413977075485007,239.08746194280184,0.0892492107437874,85.48580538786155,165.2486,115.71062310568364,172605.02621738496,120861.7509303345,355.26704,229.611094668967,370495.4459044475,239245.7842276441,370.50799,178.9694259117665,383562.67103971256,184303.66023169752,3157.73684,1455.1235847635462,3259479.757254173,1481086.8858511192,1168.35566,526.4964654655408,1199595.3330965762,529286.3448202312,1870.6637,791.191335351013,1914471.453341411,791580.6676503224,0.37992,100000,0,751130,7845.683009881134,0,0.0,0,0.0,30314,316.00827257724205,0,0.0,33931,350.95782239027346,1581698,0,56838,0,0,6454,0,0,45,0.4700327978441162,0,0.0,0,0.0,0,0.0,0.06131,0.161376079174563,0.3128364051541347,0.01918,0.3292226038089291,0.6707773961910709,24.4063708338503,4.240570049262669,0.3198847262247838,0.2412515438452037,0.2256072457801564,0.2132564841498559,11.065896933438983,5.795009513534313,20.55993689404253,12266.866234666526,55.374937949398735,14.144522727392935,17.50601257606087,12.15924451269336,11.565158133251584,0.5617538081515027,0.7807167235494881,0.6904761904761905,0.5638686131386861,0.1187258687258687,0.7381845461365342,0.9027777777777778,0.8861985472154964,0.7083333333333334,0.1830357142857142,0.4950354609929078,0.7094594594594594,0.6196319018404908,0.5180288461538461,0.1009852216748768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0047740196028745,0.0069197130652705,0.0090907244139275,0.0111268192959794,0.0134419551934826,0.0156520852452329,0.0179171218262192,0.0199869139386999,0.0223118747504121,0.0244332571182495,0.0266570827129434,0.0285911161848343,0.0306841357147271,0.0326118355893034,0.0345608069700383,0.0366450944861506,0.0386195733377604,0.0404625479654336,0.042541442220532,0.0568890095319628,0.0704621791585137,0.0843671675912623,0.0970496078060269,0.1093876862406023,0.1245861408760591,0.1373770387427443,0.1490888188708166,0.160146986561839,0.1708899445594243,0.1836123822341857,0.1957346945396736,0.2078068935522453,0.2184051361135719,0.2276663402396487,0.2377070063694267,0.2470477933790209,0.2564134299473423,0.2646754869115894,0.2727126879354602,0.2797332345313079,0.2872631578947368,0.2936464742072882,0.2996811774858567,0.305362523082904,0.3097817379623125,0.3154401082110115,0.3202397312566804,0.3249387897866387,0.3285331149013753,0.3272376636862618,0.3264181612805466,0.3262645502645502,0.3249352040890201,0.3233335815893349,0.3209590219327886,0.3190042733006084,0.3193307754376142,0.3198937628512679,0.3211584644610918,0.3226164079822616,0.32322310606812,0.3234281154185392,0.3245700465782873,0.3261608973585816,0.3267953344840211,0.3271910498154454,0.3294951284322409,0.3313912429378531,0.3336263736263736,0.3339892911079584,0.3361156892976766,0.3351110553394403,0.3394817073170731,0.3430567355801001,0.3442875785976984,0.3455780212995832,0.3502548419979612,0.3532850779510022,0.3531202435312024,0.0,2.1547796757620925,58.5813500022029,184.5605177536505,259.90555633492687,fqhc8_80Compliance_implementation_low_initial_treat_cost,26 -100000,95781,44619,420.9289942681742,6127,62.69510654513943,4776,49.26864409434021,1862,19.085204790094068,77.37208356525132,79.71214199676241,63.35007434272507,65.08004561683647,77.13926626654876,79.4806402907384,63.262192465135215,64.99551438137482,0.2328172987025567,231.5017060240052,0.0878818775898579,84.53123546165386,166.8821,116.8237234546671,174232.30076946368,121969.01157923102,359.62264,233.87106572773715,374860.1497165408,243571.49765122,371.34508,179.85212368155658,384327.6954719621,185221.5641521498,3095.35033,1430.349796994314,3193970.077572796,1455773.3685967028,1131.65907,504.8254490011352,1166658.8571846192,512493.3660274409,1820.65892,771.3597101156925,1866547.4363391488,773814.3532313744,0.37972,100000,0,758555,7919.650034975621,0,0.0,0,0.0,30715,320.0634781428467,0,0.0,33963,351.25964439711424,1571176,0,56443,0,0,6446,0,0,65,0.6681909773337091,0,0.0,0,0.0,0,0.0,0.06127,0.1613557358053302,0.3039007670964583,0.01862,0.3405179097534501,0.6594820902465498,24.242342219588707,4.271625549576727,0.3205611390284757,0.2470686767169179,0.224036850921273,0.2083333333333333,11.1155227683144,5.763266086935345,19.827357856041395,12246.784876896603,54.195903086670064,14.024303541066468,17.16829888825556,12.023028220992998,10.980272436355024,0.5860552763819096,0.8016949152542373,0.6930111038536904,0.6224299065420561,0.1266331658291457,0.7332820906994619,0.935251798561151,0.8403141361256544,0.7572463768115942,0.1504424778761062,0.5309352517985612,0.72870249017038,0.6440382941688425,0.575566750629723,0.1196358907672301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024916438772409,0.0047747455496532,0.0072354934951594,0.0096098170477748,0.0120207464659818,0.014324401368301,0.0167262942237715,0.0186337939057493,0.0208878351863963,0.0234059973390645,0.0253635441325667,0.0275557015158201,0.0295523461993113,0.0319707578253706,0.0339063450651212,0.0359146561967247,0.0378950201326998,0.039998755548181,0.0420316510281908,0.0439997501197342,0.0589413925530138,0.0724745308871828,0.0855863883676315,0.0984026902059689,0.1106112170605527,0.1255322520999524,0.137975622681505,0.1498277108946271,0.160192517021322,0.1704667209531565,0.1827395874802294,0.1951997405265149,0.2062848509222926,0.2170371423260696,0.2267687434002112,0.2374955697324118,0.2470434666190646,0.2554954630806076,0.2635081513729225,0.2714604683116734,0.2782268789970972,0.2843465045592705,0.2906520402855927,0.2956156314352761,0.3011662196764681,0.3059902727328695,0.3107923753739096,0.3169342638851811,0.3224337748344371,0.3265881856651331,0.3255416957900962,0.3239914316315601,0.3230147100264893,0.3220216502146233,0.321335195198764,0.3203599687782182,0.3189022461246441,0.3199049024430234,0.3208308402427557,0.3212571163421555,0.3217915364315259,0.3225831918841037,0.3230840026773762,0.3236160057099522,0.3237884933874181,0.324488466049785,0.3249964311206281,0.3284742774384485,0.3322692671975304,0.3359033463158731,0.3396852828815718,0.3419628647214854,0.3433239082626453,0.3468595355919299,0.3513793428114113,0.3503079109426812,0.3488868557487039,0.3435643564356436,0.3420195439739413,0.3388804841149773,0.0,2.262490482703954,56.8910360366561,176.1953445237142,261.86646527765475,fqhc8_80Compliance_implementation_low_initial_treat_cost,27 -100000,95641,44408,420.8237053146663,6006,61.5321880783346,4733,48.8493428550517,1905,19.510460994761655,77.25911226955019,79.65467664158436,63.27736057920528,65.04548701970425,77.01344372155712,79.41204068587663,63.18592346189512,64.95791774166521,0.2456685479930627,242.63595570772625,0.0914371173101571,87.56927803904091,165.26422,115.80733282876255,172796.41576311414,121085.447484617,354.4091,229.3589260658142,369843.0693949248,239093.89035065327,360.64309,174.58233176166263,372815.7902991395,179208.5379311496,3124.89845,1425.1133467519116,3228410.3052038355,1451308.933327862,1175.51506,518.3404740724446,1212231.5534132852,525196.4657851809,1866.77842,787.0857480062695,1914524.691293483,791321.3495826861,0.37934,100000,0,751201,7854.382534687006,0,0.0,0,0.0,30245,315.5550443847304,0,0.0,33015,341.00438096632195,1576264,0,56556,0,0,6316,0,0,61,0.6168902458150792,0,0.0,0,0.0,0,0.0,0.06006,0.1583276216586703,0.3171828171828171,0.01905,0.3367735789139409,0.6632264210860591,24.412976186598858,4.406398617634617,0.3228396365941263,0.2250158461863511,0.2218466089161208,0.2302979083034016,11.32537089273213,5.900418936029051,20.334554674975426,12232.233570800585,53.74117136425328,12.841699432807214,17.238035429059035,11.702341033940336,11.959095468446687,0.5588421719839425,0.780281690140845,0.6819371727748691,0.6028571428571429,0.1275229357798165,0.7279236276849642,0.9300518134715026,0.8560606060606061,0.7398373983739838,0.1528384279475982,0.4976985040276179,0.695139911634757,0.6210247349823321,0.5609452736318408,0.1207897793263647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023905270301753,0.0048672162565022,0.0070539756003491,0.0093277515851081,0.011475660003052,0.0135355345976004,0.0156514468666517,0.0179058158171442,0.020149047750483,0.0220996171719859,0.0241959461537672,0.0265633021870828,0.0286143339093228,0.0304207186418328,0.0324661252205859,0.0345761730463014,0.0366518180876411,0.0386248274287137,0.040784697157241,0.0426696412747724,0.0565866198507743,0.0703617587297597,0.0838820107320249,0.0964450434892487,0.1088242127273111,0.1249139455818337,0.1376204284970736,0.1496766081684408,0.1605672363270806,0.1710572947430596,0.1834942553535789,0.1955871515887121,0.2074187047224794,0.2178524857822242,0.2278252045970926,0.238460684140382,0.2474935099812013,0.2556119571347998,0.2648276646570356,0.272208048909421,0.2798147567812249,0.2865590388586446,0.2928922441421551,0.2980757666867107,0.3033869571050481,0.3078454404945904,0.3126546194321307,0.3175454046534186,0.3217801210295302,0.3259664121329222,0.3251006022632133,0.3236524837386585,0.3228969185931354,0.3217861346430491,0.3211122892429922,0.3192748854515821,0.3170588328752323,0.3171221931168553,0.318550809205897,0.319096332658509,0.3208287936281324,0.3226272747074315,0.3235973458760289,0.3242108085163424,0.325384042118422,0.3269000364640308,0.327105465523625,0.3308976377952756,0.3334622823984526,0.3352948192914795,0.3371232876712329,0.3419358271696908,0.3412618296529968,0.3433153454434902,0.3458625525946704,0.3502375296912114,0.3547100337526849,0.3612522870502134,0.3634317862165963,0.3679431504145282,0.0,2.4902189561464474,54.952435559002566,178.09957267959896,260.24182329291256,fqhc8_80Compliance_implementation_low_initial_treat_cost,28 -100000,95627,44695,423.2277494849781,5918,60.81964298785908,4622,47.87350852792621,1843,18.99045248726824,77.28554750318864,79.71743986784942,63.27381344368565,65.07220108299177,77.04913690474118,79.48102439077819,63.1867164196592,64.98707689858807,0.2364105984474633,236.41547707123323,0.0870970240264483,85.12418440369629,165.67518,116.0182884049549,173251.46663599194,121323.77718108369,359.85569,233.3504918245993,375853.1690840453,243562.9182391996,362.97667,175.4934554693655,376975.8750143788,181491.7382679477,3040.98734,1394.3451977855716,3152098.3508841647,1430155.6545594565,1084.84494,478.66423836268586,1126034.3522226985,492149.8374258214,1796.32166,757.1469982127494,1852396.9381032556,769335.6216792669,0.38099,100000,0,753069,7875.06666527236,0,0.0,0,0.0,30490,318.3515116023717,0,0.0,33179,344.34835349848896,1574373,0,56472,0,0,6606,0,0,92,0.9620713815135892,0,0.0,0,0.0,0,0.0,0.05918,0.1553321609491062,0.3114227779655289,0.01843,0.3396712858524009,0.6603287141475991,24.27093280976116,4.341142834542756,0.329943747295543,0.2271743833838165,0.223929035049762,0.2189528342708784,11.177765573619045,5.903936532378581,19.799622559007645,12207.82677347026,52.6349037018455,12.508148583040583,17.417450520303085,11.516270937132902,11.193033661368924,0.5670705322371268,0.7819047619047619,0.7147540983606557,0.5845410628019324,0.1037549407114624,0.7189952904238619,0.9226666666666666,0.8564593301435407,0.7153846153846154,0.1176470588235294,0.5092592592592593,0.7037037037037037,0.6612466124661247,0.5406451612903226,0.0998735777496839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024625050668828,0.0047165505279493,0.0067518174064898,0.0089952736697667,0.0113844463435477,0.0136906762827369,0.0158725301180238,0.0179388689114089,0.0199957042476808,0.0221726083795049,0.0243429556225764,0.0267054387028493,0.0288311100131752,0.0309752301237978,0.0329378723580006,0.0350231177401503,0.0371920952548731,0.0391841227969965,0.0413739266198282,0.0432247499243775,0.0573575990717414,0.0713020696882368,0.084707291699505,0.0974199053930193,0.1091781010024189,0.1242864858567994,0.1366684022059058,0.1482997548235795,0.1596439042136574,0.1696728796261481,0.1822517127906349,0.1941240242844752,0.2058387638123052,0.2162227311076292,0.2265671510153683,0.2371376570337816,0.2466326108583628,0.2553867652362063,0.2635819233435224,0.2713912325752017,0.2782268337309215,0.2850668665245802,0.2909317211948791,0.2973531000540184,0.3023524686925726,0.3072346413538568,0.3122588081992682,0.3171878583989602,0.3222416812609457,0.3259212282162062,0.3242977433479286,0.3230187121629059,0.3222167383487273,0.320421210981572,0.3200225975261656,0.3186971663521578,0.3173714430733115,0.3183313593893933,0.3196546122937505,0.3201209691850685,0.3213348331458567,0.321556235805273,0.3222722985012053,0.3234413407821229,0.3236988669099289,0.3259932485068813,0.3275476399467678,0.3314040795895382,0.3333797569722502,0.3379397480949184,0.3383868185738278,0.3410331125827814,0.3432723155312323,0.346261646844936,0.3490742472414438,0.3521938595459358,0.3522692659153214,0.3515751211631664,0.3549180327868853,0.3536308623298033,0.0,1.7802733805968642,56.47837362770627,170.37641299932434,251.89739470999575,fqhc8_80Compliance_implementation_low_initial_treat_cost,29 -100000,95811,44823,424.3562847689722,6032,61.73612633204955,4648,47.948565404807376,1824,18.734800805752997,77.35864855579545,79.6654940531191,63.35358995694328,65.05537896385044,77.13100124356956,79.43723951234145,63.26864965234417,64.97219977718451,0.2276473122258977,228.25454077765528,0.084940304599101,83.17918666593016,165.24222,115.75734655349306,172466.85662397847,120818.4306118223,357.16065,231.7628913010413,372129.6615211197,241249.32554825777,364.09224,176.2581113620163,376266.8900230663,181099.9518077043,3055.5782,1399.2947797004028,3155179.426161923,1426986.7205931232,1110.47981,489.1182843868066,1144957.3013537067,496593.11883147137,1787.60604,752.5930602891705,1837796.5160576552,761068.7725196272,0.38142,100000,0,751101,7839.402573817202,0,0.0,0,0.0,30449,317.2078362609721,0,0.0,33232,343.1130037260857,1580777,0,56713,0,0,6550,0,0,62,0.6366701109475947,0,0.0,1,0.0104372149335671,0,0.0,0.06032,0.158145875937287,0.3023872679045092,0.01824,0.3241498740554156,0.6758501259445844,24.493953113407784,4.2943147444835,0.330249569707401,0.2342943201376936,0.2134251290877797,0.2220309810671256,11.081862266569487,5.727370389628157,19.3775808436063,12276.677865247148,52.80342128107755,13.17808360704482,17.362216534394403,10.977340137499397,11.285781002138918,0.5524956970740104,0.7667584940312213,0.6859934853420195,0.561491935483871,0.1191860465116279,0.7095015576323987,0.8985849056603774,0.8249400479616307,0.7142857142857143,0.0990566037735849,0.4925683709869203,0.6827067669172933,0.6341681574239714,0.5151116951379764,0.124390243902439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022468271157622,0.0043047129009713,0.0067013392540324,0.0092138776421402,0.011429906731961,0.0135801841208483,0.0158191745100435,0.0179735395224057,0.0199619966082994,0.0222385891691728,0.0244182235332677,0.0261657127618109,0.0283251484578872,0.030439301480803,0.032467934177424,0.0346302015017093,0.0368258764124001,0.0389069157483335,0.040665607179583,0.0426626134754726,0.0572114130718272,0.0716160127131491,0.0849422468188583,0.0971803306254138,0.1088535025134631,0.1242404708816349,0.1375095411754728,0.1499095840867992,0.161469398212894,0.1717161970924997,0.184445425473496,0.1966418556344123,0.2081198951569926,0.2184734210727843,0.2283222673669606,0.2378429307764784,0.247195401015795,0.2557974683544304,0.2637468647501447,0.2717845889429963,0.2792624914640216,0.2862862159789289,0.2926889920424403,0.2983657270296519,0.3045349544072948,0.3088021308604829,0.313964691015102,0.3184188436395085,0.3237685813435541,0.3278614974532211,0.327595257002113,0.3266316455348056,0.3254888169925446,0.3246584630476493,0.3239697873540192,0.3218926769607094,0.3196217045436574,0.3196113190204189,0.3203719213085613,0.3220620842572062,0.3226732190419027,0.3229360338620989,0.3232005370591814,0.3254732795422543,0.325160452873729,0.3254393065093083,0.3272649450706235,0.3314948469854076,0.3376952300548754,0.3414517669531996,0.3432862994993172,0.3465878845949111,0.3489882115614953,0.3545475407328081,0.3600300103160461,0.3619473189087488,0.3682360134515439,0.3735995111020574,0.3824433883142298,0.3824921135646688,0.0,2.246131442797089,56.305229735368094,167.5629108354949,256.81601319614145,fqhc8_80Compliance_implementation_low_initial_treat_cost,30 -100000,95853,44697,422.7097743419612,6140,62.85666593638175,4876,50.191438974262674,1883,19.185627992864077,77.41454581429173,79.70276721687327,63.37712166936033,65.06773140649908,77.174311043367,79.46767564560447,63.28642816559421,64.98249503153419,0.2402347709247294,235.09157126879643,0.0906935037661185,85.236374964893,166.80928,116.843225443556,174026.14419997286,121898.35001883715,364.91864,236.40462497968085,380056.3049669807,245982.23840639408,370.01419,178.68787758407282,382221.8918552367,183490.08470488,3159.83594,1450.9968748696742,3251919.950340626,1469149.390076134,1162.50906,512.0639259328158,1196826.025267858,518239.9256495,1838.5303,781.169791374414,1874911.854610706,776691.7269443444,0.37992,100000,0,758224,7910.279281816949,0,0.0,0,0.0,31146,324.2569350985363,0,0.0,33866,349.4934952479318,1569511,0,56400,0,0,6541,0,0,60,0.6259584989515196,0,0.0,1,0.0104326416491919,0,0.0,0.0614,0.1616129711518214,0.3066775244299674,0.01883,0.3376380893107204,0.6623619106892796,24.40580028327818,4.258892614939974,0.3267022149302707,0.239540607054963,0.2200574241181296,0.2136997538966366,10.991533846471247,5.824870649758837,20.1225949325841,12248.140531697043,55.09953042566649,13.856776306821462,17.94104300423096,11.865791662439072,11.435919452174984,0.5740360951599672,0.7876712328767124,0.7156308851224106,0.5750232991612302,0.1170825335892514,0.7318352059925094,0.9232558139534884,0.8852459016393442,0.6935483870967742,0.1304347826086956,0.5145439141485456,0.7086720867208672,0.6535162950257289,0.5393939393939394,0.1133004926108374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023991496684719,0.0045995643584418,0.0066114361621221,0.0088522526546606,0.0113324524850086,0.0134107998656885,0.0155969845150774,0.0180647925251948,0.0202766200866225,0.0225329351116929,0.0248394399090415,0.0268543117685072,0.0289756789248173,0.0309000329380764,0.0328374212572041,0.0348382032452307,0.0367392968733834,0.0385424547367111,0.0406947169537097,0.0426921876625403,0.0578641667622553,0.0715614548494983,0.0852619778515825,0.0977328334855978,0.1096215009372959,0.1255703904005408,0.1379032685278381,0.1500919537786093,0.1609065397624814,0.1713260497000857,0.1834007574453434,0.1957114124440407,0.2066226173140037,0.2165892574176274,0.2260106839016026,0.2358090684728355,0.2464031585286966,0.2559799469448316,0.2654869264363904,0.2729479662880176,0.2797834561417714,0.2858880351775836,0.2928119268768858,0.2982273201251303,0.3043251060313294,0.3099622808963834,0.3140050062578223,0.3178839963868144,0.3228252556807134,0.3269941891178024,0.3260295741643548,0.3252012383900929,0.3237104110630747,0.322573190635065,0.3218395925216435,0.31958447439683,0.3175074652805207,0.3179777122254998,0.3187889125799573,0.3189076602638278,0.3199648821309822,0.3206445632236051,0.3216739407354814,0.3233499599180547,0.3227530985544075,0.3245677794507035,0.3252424431463733,0.3275065551254838,0.3323556114253789,0.3354688179697077,0.3375819209039548,0.3422677148736348,0.3456605653094259,0.3533428378479777,0.3546343735444807,0.360626767200754,0.3640939597315436,0.3696094385679414,0.3745865490628445,0.3758082921262837,0.0,2.681352179163849,58.06704693732584,174.71944361849177,269.61482503444495,fqhc8_80Compliance_implementation_low_initial_treat_cost,31 -100000,95713,44846,423.97584445164193,6016,61.61127537534087,4687,48.426023633153285,1844,18.92114968708535,77.36002699221102,79.73084516857183,63.33690834044432,65.08810855400081,77.12827955832395,79.50054766047256,63.25009346430909,65.00421478841348,0.2317474338870653,230.29750809926952,0.0868148761352358,83.89376558733375,167.01476,116.99875743705029,174495.376803569,122239.14978848254,359.89201,233.7934017644909,375448.3194550375,243701.735150388,367.01354,177.76456153026905,379867.6877749104,182997.4105978574,3065.74012,1401.0556313261518,3170355.5838809777,1431254.3498310242,1083.63041,479.4637638167216,1119576.348040496,488407.8247460823,1801.62792,760.4686930073856,1850650.1311211644,767619.907117167,0.38253,100000,0,759158,7931.608036525864,0,0.0,0,0.0,30693,320.1132552526825,0,0.0,33493,346.3897276232069,1569796,0,56269,0,0,6601,0,0,74,0.7626968123452406,0,0.0,0,0.0,0,0.0,0.06016,0.1572687109507751,0.3065159574468085,0.01844,0.3330163258836582,0.6669836741163417,24.694221523163204,4.35051418269167,0.3251546831662044,0.2398122466396415,0.2182632814166844,0.2167697887774696,11.057145825977726,5.642420755393448,19.592619572769284,12316.95836652502,53.15077635937815,13.540302899295664,17.232521677727277,11.365306301512677,11.012645480842544,0.5532323447834435,0.7740213523131673,0.6902887139107612,0.5562072336265884,0.1003937007874015,0.7246835443037974,0.9019607843137256,0.8610421836228288,0.7096774193548387,0.1219512195121951,0.4899211218229623,0.7011173184357542,0.6289027653880463,0.5070967741935484,0.094944512946979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030324821991,0.0050684750985818,0.0073977857382056,0.0096710619882565,0.0122157126001871,0.0143884159504704,0.0164424057084607,0.0186266304680642,0.0207513416815742,0.022983681074551,0.0251696774590416,0.0272576074904521,0.0292048866768129,0.0311370214343835,0.0333986793231531,0.0355558772138418,0.0375849494447207,0.0397226575879929,0.0417199737884981,0.0435978659553184,0.0585249702362303,0.0723645650171648,0.0853396275898242,0.097780816154817,0.1101341093117408,0.125095145466847,0.1371895917090091,0.1493992316124432,0.1608544726301735,0.1712670435650149,0.1844245956924138,0.1970520118612151,0.208633171728591,0.2194087291174669,0.2294230874993125,0.2401993907504846,0.2485969003492407,0.2570066129830402,0.2650337358961274,0.2728095085421151,0.2800217393818152,0.2869882306190904,0.294207389185865,0.2998682792479942,0.3052199570164042,0.3109737324975678,0.3162740658268386,0.3206777334316292,0.324953095684803,0.3293504780745137,0.3276788238620299,0.3269929530940321,0.326012489603744,0.3241534923412933,0.3227590307715177,0.3202291070033845,0.3189070381556269,0.3195190669637007,0.3204924881908562,0.3217682470701385,0.3227887150148634,0.3233769050294749,0.3246541903986981,0.3246452360266435,0.3259447413194028,0.3264887063655031,0.3269575612671846,0.3295568982880161,0.332126665026535,0.3342762659866927,0.3345534407027818,0.335676625659051,0.3379227964290205,0.3420652999240698,0.3455258001306335,0.3490998941051888,0.350879854368932,0.3490433031218529,0.3521667580910587,0.3495592180912227,0.0,2.152468970415169,55.29155213755972,174.5345655291043,256.92803659542443,fqhc8_80Compliance_implementation_low_initial_treat_cost,32 -100000,95758,44464,420.75857891768834,6032,61.89561185488419,4720,48.77921426930387,1977,20.353390839407677,77.33346816806463,79.69584121047308,63.32120940122799,65.07061004551414,77.08966214277693,79.45308870011411,63.230995008633045,64.98319125498877,0.2438060252876965,242.75251035896872,0.0902143925949445,87.41879052537627,167.60084,117.39865517987016,175025.4182418179,122599.31826047972,359.55428,232.37560250675511,374921.8655360388,242109.2780830375,363.1919,175.47921715131153,376384.1350069968,180998.48463995103,3102.6275,1425.6924800619456,3208631.7905553584,1457409.9397041968,1152.66014,509.97293873716,1191361.9749785918,520204.2635990308,1932.2856,806.3938339274016,1990265.4190772572,816179.2987605777,0.37938,100000,0,761822,7955.700829173542,0,0.0,0,0.0,30667,319.74352012364506,0,0.0,33275,344.5769544058982,1570362,0,56341,0,0,6469,0,0,65,0.6683514693289334,0,0.0,0,0.0,0,0.0,0.06032,0.1589962570509779,0.3277519893899204,0.01977,0.3321706040906929,0.6678293959093071,24.51034866696121,4.393700424877833,0.3010593220338983,0.2402542372881355,0.2315677966101695,0.2271186440677966,11.297553874202393,5.886534591009738,21.108308527240776,12244.45215813557,53.790100195778045,13.672586250974511,16.233999399207363,12.149742617850908,11.733771927745256,0.5612288135593221,0.7892416225749559,0.7086558761435608,0.5617566331198536,0.1240671641791044,0.7370007535795027,0.9114219114219114,0.8668280871670703,0.75,0.1511111111111111,0.4924845269672855,0.7148936170212766,0.6438492063492064,0.503001200480192,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024925274836617,0.0047154504522776,0.0068002354708401,0.009256436830661,0.0113402900673297,0.013430540989115,0.0155874077396729,0.0176869220877304,0.0198683618821797,0.0220384264993397,0.0242047097177654,0.0261177557620245,0.0283516551319889,0.0304119464469618,0.0324990198708292,0.0345330136023483,0.0366761584260937,0.0386012244474421,0.0407439752146882,0.0426613339999166,0.0574757038320615,0.0721409957194737,0.0852448007387043,0.0983266898749487,0.1109634691639247,0.1262966448488437,0.1387571484652682,0.1511574690011175,0.1617574812568084,0.1719767080245788,0.1850850451886721,0.1967259232009348,0.2079001174576935,0.2183029268932931,0.2281572086986173,0.2381906765585206,0.2478568558289056,0.2565946432590592,0.264930200885257,0.2725399042755398,0.2794064925002024,0.2864744751768902,0.2925392205579612,0.297846087498203,0.3038650567319944,0.3092374915379408,0.3142767845980747,0.3185931819915092,0.3226315721365995,0.3264444268482593,0.32498484338161,0.3233194404324681,0.322567013649233,0.3207064132604356,0.3200178465199286,0.3185187458756004,0.3168453438213651,0.3171662035743057,0.3172096365751831,0.3169366663090512,0.3173832336452102,0.3188279720832757,0.3195002511300854,0.321048632218845,0.3229136586774473,0.3245680529053507,0.3250540571298509,0.3281009154109912,0.3306596306068601,0.3348545577205444,0.3379012064648304,0.3432700993676603,0.3432666203674474,0.3462067910676047,0.3464046111688557,0.345548480115343,0.3471278567016677,0.3523731251284158,0.360337552742616,0.373105324523902,0.0,2.025307556627137,58.44104008761745,174.11771645424813,253.20958193678004,fqhc8_80Compliance_implementation_low_initial_treat_cost,33 -100000,95805,44567,421.4393820781796,5892,60.257815354104686,4625,47.78456239235948,1791,18.349772976358228,77.34149214859087,79.6801408445379,63.33904717832892,65.07237422532904,77.1236857986711,79.46520388043444,63.25741938256461,64.99446206640526,0.2178063499197691,214.9369641034582,0.0816277957643052,77.91215892378034,165.98032,116.24299136338264,173248.07682271278,121332.90680380214,356.21291,230.83419395625296,371206.13746672927,240337.70581848975,362.77865,175.52753471107238,376039.19419654505,181150.4806452249,3009.82751,1373.889394318963,3111771.6403110484,1404225.0427421418,1090.81343,479.70823694323065,1127313.2299984342,489449.6601881228,1753.48406,738.0356525123715,1798388.7897291372,741950.9369460567,0.38078,100000,0,754456,7874.912582850581,0,0.0,0,0.0,30388,316.6431814623453,0,0.0,33207,343.9903971608997,1581345,0,56712,0,0,6505,0,0,61,0.6262721152340691,0,0.0,1,0.0104378685872344,0,0.0,0.05892,0.1547350175954619,0.3039714867617108,0.01791,0.3425896028414594,0.6574103971585405,24.349078973148803,4.308013755340312,0.328,0.2384864864864865,0.2118918918918919,0.2216216216216216,11.142801141628654,5.7312398971437375,19.13537856807182,12271.782652211214,52.60530640258192,13.447292182995865,17.18036934849371,10.789517531180438,11.18812733991191,0.5558918918918919,0.7706255666364461,0.6888595912986157,0.5897959183673469,0.0956097560975609,0.7254746835443038,0.9,0.8459595959595959,0.7477064220183486,0.1095238095238095,0.4921154418327879,0.6847662141779789,0.6333630686886709,0.5446194225721784,0.0920245398773006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021779430088029,0.0047646563871739,0.0066873002181744,0.0090029671178311,0.0113649081752047,0.0134051807560277,0.0156759954308094,0.0179517813926416,0.0198991747875614,0.0222099345682425,0.0243517312799269,0.0263703764556078,0.0282652074633313,0.030276183902836,0.0323585859628123,0.0345650938032973,0.0367601375139792,0.0389850201253164,0.040941870856454,0.0428907535030918,0.0580655258764607,0.0714681556301431,0.0845603261268247,0.0970586071732573,0.1093909726101023,0.1253342634577374,0.1373596666984702,0.1488669353552325,0.16003543298683,0.1704679428093717,0.183340688200282,0.1959222062464189,0.2077004975772983,0.2176787490028521,0.2276495162708883,0.2372254693588381,0.2477849476746129,0.2566232599910193,0.265655959511328,0.2738058498782704,0.2814000738825268,0.2882707258422244,0.2944944045944956,0.299948540587116,0.305261753432633,0.3107895254971451,0.3159439843096103,0.3200548404295834,0.3239545789249312,0.3278069448282214,0.3264098944679707,0.3249120782503572,0.3240166068538456,0.3235774001183996,0.3223928475955683,0.3210586705423391,0.3183026811433636,0.3190885061811495,0.3197867177085826,0.320132897486737,0.3201770011062569,0.3215798013376073,0.3224953851317335,0.3226557428424328,0.3242168674698795,0.3258564863171088,0.3285595623406754,0.3307913805651362,0.3347804602569533,0.3370236151487396,0.3400532696546657,0.3437783590455346,0.3453474377652499,0.3452197971103596,0.3472747918243755,0.3468999166964179,0.3504643962848297,0.3527601067104453,0.3521872387851769,0.3577981651376147,0.0,1.9111498230092472,55.68800316433566,171.75311101934315,252.43457091940252,fqhc8_80Compliance_implementation_low_initial_treat_cost,34 -100000,95702,44848,425.372510501348,6077,62.37069235752649,4785,49.41380535412008,1854,18.975569998537125,77.3419109081298,79.70950836561575,63.33255108723839,65.0803757122666,77.11541164453853,79.48621063332425,63.24824947537232,64.99985390105765,0.226499263591279,223.29773229149907,0.0843016118660671,80.52181120895341,166.07118,116.33108683437436,173529.47691793274,121555.54412068124,363.68819,235.33808303287145,379472.2785312742,245357.9371725476,371.85524,179.63868579486092,384736.9856429333,184732.43780626432,3142.74594,1434.5195198911342,3249068.410273557,1464125.127887751,1118.45706,495.8338711255092,1151925.090384736,501339.74329220847,1816.69182,758.5136767525642,1861583.624166684,761197.217356305,0.38246,100000,0,754869,7887.703496269671,0,0.0,0,0.0,30951,322.8250193308395,0,0.0,34023,351.76903304006186,1573699,0,56508,0,0,6558,0,0,74,0.7523353743913398,0,0.0,1,0.0104491024221019,0,0.0,0.06077,0.1588924331956283,0.3050847457627119,0.01854,0.3342705404561075,0.6657294595438925,24.535592189115988,4.317359761300176,0.3260188087774294,0.2298850574712643,0.2307210031347962,0.2133751306165099,10.941396986671377,5.611836045848354,19.687623117617285,12295.990708017003,54.29839932014225,13.305137572396044,17.607873856230974,12.214791554776106,11.170596336739138,0.5703239289446186,0.8163636363636364,0.6942307692307692,0.572463768115942,0.1136141038197845,0.748811410459588,0.9322429906542056,0.8670212765957447,0.74,0.1682692307692307,0.5063866023275617,0.7425595238095238,0.6393581081081081,0.5234192037470726,0.0996309963099631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022176766040181,0.0045099827708523,0.0067052140393588,0.0090598846185097,0.0112051083906129,0.0136433982243219,0.0156783591751021,0.017769657875398,0.0200940310711365,0.0220557380740376,0.024274730907227,0.0264198215404203,0.0282385364499244,0.0302690005460371,0.0322367606389565,0.0342161301660154,0.0362361615973322,0.0383150510071711,0.0403552006322072,0.042384009337613,0.0574006767765384,0.0716618515261901,0.085135404534819,0.0981035625256381,0.1109892196367165,0.1273844916787456,0.1397139947381821,0.1511986884687446,0.1622424235950135,0.1720120996288589,0.1853104302406978,0.1969570722100183,0.2083482876004654,0.218383012224725,0.228575513615767,0.2390625691892131,0.2489768152468468,0.2574842894562297,0.266039747719951,0.2740737349342429,0.280656693623963,0.2878892490608872,0.294808361544471,0.3001162498052516,0.3059548254620123,0.3115035081445676,0.3161672596081575,0.3199653926408468,0.3241515002459419,0.3279747002240084,0.3267445302618477,0.3253142817888301,0.3247565379913155,0.3226015744398627,0.321593285186778,0.3202438614451388,0.3179305770506301,0.3178057052973079,0.3186168307204148,0.3199386174654723,0.3206515633776446,0.3222224417616723,0.3240946666107171,0.32417053117369,0.3255965136156791,0.3268372857478281,0.3281004709576138,0.3304889952454422,0.3327937502199388,0.3356587602152681,0.3380281690140845,0.341158309379325,0.3442095298201325,0.3470323122756092,0.3491269466729589,0.3500654216724158,0.3508021390374332,0.3522424738890026,0.3526623919710064,0.3465232424126008,0.0,2.3183638785523497,55.12439920604018,183.9050607793137,260.08139958108507,fqhc8_80Compliance_implementation_low_initial_treat_cost,35 -100000,95706,44577,420.2348860050572,6127,62.86962154932815,4812,49.67295676342131,1858,19.13150690656803,77.33810060160408,79.72098411383945,63.31256206328344,65.07485894961228,77.1119307181234,79.4948533116087,63.22899740430183,64.9938623289963,0.2261698834806793,226.130802230756,0.0835646589816079,80.99662061597712,165.53438,115.9091422582444,172961.33993689006,121109.5879654822,357.56321,231.5411226406628,373037.57340187655,241361.3071705669,370.46612,178.989568779653,382659.3734980043,183687.668134876,3155.66933,1435.186979890855,3262293.0119323763,1464618.5191010528,1173.61502,516.2418934534314,1213404.1857354816,526536.9814363063,1820.15994,753.8213922551878,1875019.2464422293,763188.4669409352,0.38052,100000,0,752429,7861.879088040457,0,0.0,0,0.0,30416,317.20059348421205,0,0.0,33854,349.29889453116834,1578496,0,56672,0,0,6571,0,0,68,0.7105092679664806,0,0.0,0,0.0,0,0.0,0.06127,0.1610165037317355,0.3032479190468418,0.01858,0.3375875486381323,0.6624124513618677,24.596516591458823,4.3634782449466165,0.3260598503740648,0.2333748960931005,0.2236076475477971,0.2169576059850374,11.299370797506722,5.866775459549257,19.541602358302004,12355.802576499866,54.46368730059893,13.662228643247357,17.386774783365333,11.973232153976175,11.441451720010066,0.5746051537822111,0.7978628673196795,0.7023581899298916,0.5762081784386617,0.1408045977011494,0.7339743589743589,0.9186602870813396,0.8838526912181303,0.7061068702290076,0.1627906976744186,0.5187991021324355,0.7262411347517731,0.649671052631579,0.5343980343980343,0.1351025331724969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025440392450994,0.0049705822682085,0.007574065425305,0.0099396304652722,0.0125049602669895,0.0148606117397814,0.0170838177998082,0.0195593777768698,0.0218236112247402,0.0240006553079947,0.0259336737833015,0.0280738504507834,0.0299515716092414,0.0321195394723292,0.0344347359625323,0.0364066633597883,0.0385268476527717,0.0404316024277636,0.0424490050527103,0.0446277892368273,0.0591202456294254,0.0732164354880921,0.0863693599160545,0.0995487962641592,0.1120626015059796,0.1274329356012524,0.1392281491070765,0.1506639264835855,0.161583345801184,0.1713387617606986,0.1841385106016204,0.1965963711947343,0.2080435374149659,0.2181553578658263,0.2275878766535337,0.2378287322819811,0.2475348141199593,0.2566405546551413,0.2652827146053124,0.2734264852534932,0.2805692911653329,0.288002247822422,0.2935101847465656,0.2991992903890873,0.3047472084178807,0.3099006847202517,0.3152006414512835,0.3201273885350318,0.324497648567764,0.3289833080424886,0.3288655631812676,0.3276108726752503,0.3265886593728438,0.325155943167379,0.3237110952720361,0.3221745788667687,0.3197304735693271,0.3199868830955894,0.3217498165184591,0.322564541434888,0.3228722209746238,0.3237302182406567,0.3243780886171371,0.3266068592138527,0.3277419975007209,0.3286118245259034,0.3292855926913692,0.3326335578881403,0.3362538397095783,0.3404951509895135,0.343879574544799,0.3451918024172359,0.3466799303655807,0.3467276407526801,0.3500277726346972,0.3563164660511861,0.3605330139242401,0.3601905139908712,0.3606911447084233,0.3561695685087055,0.0,2.4006751045924344,54.60560942711106,185.090621030963,262.69522465626005,fqhc8_80Compliance_implementation_low_initial_treat_cost,36 -100000,95650,44604,422.5196027182436,6156,63.2932566649242,4802,49.61840041819132,1872,19.174072138003137,77.27782633283482,79.68882885826092,63.2892740309558,65.07230787925859,77.04362718951288,79.45702552014826,63.20223557617702,64.98886760012502,0.2341991433219448,231.8033381126554,0.0870384547787779,83.4402791335691,165.19052,115.6847750755997,172703.1050705698,120945.9227136432,358.14312,231.8034365370578,373857.0622059592,241771.66391746767,366.15168,176.9879596317699,379497.76267642446,182411.8777039936,3134.50687,1439.4804972847762,3241422.5196027183,1469595.2439259645,1115.90223,495.6223414683528,1152417.7626764243,504037.50871666847,1823.02648,766.2349820715721,1869678.515420805,769749.3419995856,0.38106,100000,0,750866,7850.141139571353,0,0.0,0,0.0,30550,318.7872451646628,0,0.0,33605,347.9560899111343,1578866,0,56720,0,0,6471,0,0,66,0.6900156821745949,0,0.0,0,0.0,0,0.0,0.06156,0.1615493623051488,0.3040935672514619,0.01872,0.3391667957255691,0.6608332042744308,24.628053282404327,4.339176756079527,0.3313202832153269,0.2346938775510204,0.2169929196168263,0.2169929196168263,11.394471732754235,6.0721108213848085,20.01642898289337,12277.611408966157,54.80903983861157,13.641995152633012,18.167863075805485,11.573780280649167,11.4254013295239,0.5610162432319866,0.7737355811889973,0.6907605279698303,0.5777351247600768,0.1161228406909788,0.7282127031019202,0.9055299539170508,0.8616071428571429,0.7217741935483871,0.125,0.4953596287703016,0.6911976911976911,0.6237970253718286,0.5327455919395466,0.1136919315403423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024116896013618,0.0048170533830926,0.0069234361358698,0.0089535250058436,0.011455313088153,0.0136001059483909,0.0158490566037735,0.0181396631497237,0.0203146416808166,0.0221061257938946,0.0241951199499482,0.0264190480103539,0.0283585775436285,0.030435141096201,0.0325934338220111,0.0346903313888544,0.0367238663682334,0.0385741579100386,0.0406663961123424,0.0427384291359517,0.0578498578832971,0.0718340245486154,0.0855235536149131,0.0981762310177535,0.1107394236147019,0.1259645817234918,0.1388157335825333,0.1503909995525345,0.1614724818720455,0.172012882447665,0.1852614111460712,0.1970961769578068,0.2079301675065576,0.2180250372056377,0.2277580854670747,0.2379770400248216,0.2474488086997298,0.2557812412085748,0.2643196804103821,0.2724254773570218,0.2799306157849089,0.2876614647261675,0.294892116967919,0.3006172469587104,0.305211611601881,0.3101487529910945,0.3161915735684585,0.3201049106858663,0.324143475892834,0.3271706833938593,0.3261529330833457,0.3239761080380174,0.3225856565827755,0.3223213509834023,0.3217877094972067,0.3195259004513772,0.3176883273546871,0.3182267145161821,0.3189011440706994,0.3201911375187916,0.3211604864134514,0.3232841438050906,0.3239811978008142,0.3262908171258477,0.3277078267568674,0.3286603955494176,0.3281651533321912,0.330921842421179,0.3337111685735539,0.334120377781335,0.3368522513425437,0.3387328821868173,0.3382826814936501,0.3419780557047495,0.3408897704732219,0.3432568149210904,0.3437306979617047,0.3477094510936855,0.3466068424004487,0.3533256439830834,0.0,2.2848333333532387,59.51129957897143,177.90236296995707,256.4259175952805,fqhc8_80Compliance_implementation_low_initial_treat_cost,37 -100000,95822,44926,424.6310868067876,6062,62.15691594832085,4739,48.93448268664816,1872,19.212706894032685,77.39792083527668,79.70329191524618,63.37134666233783,65.0722871480451,77.16838731289613,79.47382465375772,63.28741557971308,64.99055324820945,0.2295335223805494,229.46726148846608,0.0839310826247512,81.73389983565471,166.4234,116.53077938573644,173679.73951702114,121611.71691859535,360.64216,233.9327172380262,375801.2982404876,243573.65520310687,369.35216,178.60582968522877,382139.57128843066,183844.295823175,3111.131,1417.3198425242138,3213739.402224959,1446491.6533551258,1122.23158,491.5178730282036,1157253.7204399826,499063.4458648592,1841.91582,764.0544448116158,1892093.089269688,770941.1503008392,0.38198,100000,0,756470,7894.533614410052,0,0.0,0,0.0,30779,320.62574356619564,0,0.0,33767,349.10563336185845,1575246,0,56479,0,0,6525,0,0,64,0.667905073991359,0,0.0,1,0.0104360167811149,0,0.0,0.06062,0.1586994083459867,0.3088089739359947,0.01872,0.3302911093627065,0.6697088906372934,24.40488819578264,4.360494499308325,0.3112470985439966,0.2435112893015404,0.2186115214180206,0.2266300907364422,11.18848180738642,5.666356098131782,19.892050069845656,12279.100667609013,53.8479221880896,13.747835806499696,16.802111188703485,11.63235760747431,11.66561758541211,0.5562354927199831,0.7772963604852686,0.6908474576271186,0.581081081081081,0.1098696461824953,0.7445956765412329,0.9373493975903614,0.8523316062176166,0.7389558232931727,0.1407035175879397,0.4888252148997135,0.6874154262516915,0.6336088154269972,0.531130876747141,0.1028571428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023791204341135,0.0046307085896097,0.0067751914397281,0.0090675548064132,0.0113756506180871,0.0134436506482668,0.0155896558048541,0.0178321856669217,0.0202709606228416,0.0223547707229236,0.0243017847263487,0.0264785842523724,0.0285714285714285,0.0307274355042859,0.0329715634437195,0.0350110990656135,0.0369734337498965,0.0391559397218249,0.041306266548985,0.0432931969320109,0.0579221862939397,0.0719776599416397,0.0857169819234156,0.098363068641778,0.1104552497602007,0.1262566997557958,0.138583729216152,0.1506024096385542,0.1616742158789847,0.1722122109237568,0.184896394261836,0.1968523526230395,0.2088950252217777,0.2189570350934732,0.2288626692031097,0.2396745447500968,0.2491359511227061,0.2582613973563528,0.2664823021387041,0.2739417369125367,0.2810723364917957,0.2878214560997827,0.2943137092675547,0.2996028423092566,0.3045643455186536,0.3094834157016056,0.3145670568854055,0.3188306497659016,0.3231918523496872,0.3268937200610622,0.3260382422006038,0.3247494069411877,0.3224397505758103,0.3222995260936577,0.3207941328987332,0.3190570643881599,0.3171212670968149,0.317754103457869,0.3183235900669814,0.3186924887652471,0.3195270700041157,0.3206213852865123,0.3220608546436194,0.3230500582072177,0.3236945468565507,0.3241330687278044,0.3238106143012538,0.3271802003982678,0.329074269623372,0.3311884334286622,0.3343087051938551,0.3375187005770463,0.3395808269486481,0.3386097728836889,0.3441134751773049,0.345430747263208,0.3482403565391117,0.347165991902834,0.3518973518973519,0.3591495823842065,0.0,1.9468831104268625,54.83546237143947,181.95637156507277,259.4546046754388,fqhc8_80Compliance_implementation_low_initial_treat_cost,38 -100000,95563,44440,421.6485459853709,6038,62.095162353630585,4724,48.952000251143225,1812,18.668313050029823,77.19945181010942,79.67141062623627,63.224607941291474,65.05418662312542,76.97468126537757,79.44561338782366,63.14115373584641,64.97219302686143,0.2247705447318537,225.79723841261057,0.0834542054450651,81.99359626398461,165.08404,115.62099514253686,172748.9090966169,120989.28993704346,358.28949,231.75647047813823,374443.1212917133,242035.16055182263,365.46968,176.28889954910193,379424.662264684,182114.63570012985,3081.59535,1408.497502927215,3197195.274321652,1446415.3207069847,1120.28895,494.6123855032957,1160815.1585864823,506088.3663167708,1776.4412,744.3570521098293,1832550.5478061596,757012.2902113515,0.37971,100000,0,750382,7852.223140755313,0,0.0,0,0.0,30556,319.2553603382062,0,0.0,33476,347.27875851532497,1574704,0,56550,0,0,6558,0,0,61,0.6383223632577462,0,0.0,0,0.0,0,0.0,0.06038,0.1590160912275157,0.3000993706525339,0.01812,0.3321782957946133,0.6678217042053867,24.44193929472486,4.376790476683399,0.3204911092294665,0.237510584250635,0.2305249788314987,0.2114733276883996,11.30249912370066,5.779911054325604,19.268624516470755,12262.443959081753,53.62804428330483,13.542045166174235,17.01980856105149,12.076645639052424,10.989544917026675,0.5690093141405589,0.7932263814616756,0.702774108322325,0.5757575757575758,0.1071071071071071,0.7328185328185328,0.9063231850117096,0.8877805486284289,0.725,0.1409691629955947,0.5071449402158064,0.7237410071942446,0.6361185983827493,0.5335689045936396,0.0971502590673575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021895368521353,0.0044946328199508,0.0065399301324234,0.008469578656255,0.010760679236063,0.0126913902424106,0.0147675664642547,0.0168914776210913,0.0191056078591895,0.0214697834575062,0.0235484930606881,0.0257681075967589,0.0275795305918579,0.029852901735058,0.0322733989893248,0.0344495626520366,0.0363813612934673,0.0384119725628767,0.0405091507557055,0.0424683418764158,0.0569444153887994,0.0703066017951514,0.0840673547898841,0.0968486266080854,0.1083668875431977,0.1235423822244837,0.1363974811726162,0.1486880155367985,0.1597981767346195,0.1700125807804385,0.1833270341774202,0.196202050892518,0.2081415388642858,0.2187074979160268,0.2285153016741896,0.2389558455984448,0.2479829911038997,0.256898127771947,0.2655195566328679,0.2735428584556711,0.2807827489009268,0.2872893184297259,0.2932312985703268,0.2988816413804702,0.3043684768179659,0.309516453912979,0.3137816286808564,0.3191380784098593,0.3236814085750643,0.3290203082622213,0.3272707632897206,0.3258498241743087,0.3250328023815234,0.3236000926515722,0.3228555254297887,0.3216851931462261,0.3199378083800034,0.3202126959041222,0.3213765196070026,0.3221608832807571,0.3232870527147533,0.3244460314626356,0.324886248736097,0.3253401589653779,0.3263175700166735,0.3275509669304544,0.3280220095145297,0.3324601546473094,0.3365777965862604,0.3404128622469234,0.3420635280257375,0.3460523538104285,0.3480842552659541,0.3515252441147528,0.3534883720930232,0.36023598820059,0.3644042232277526,0.3660714285714285,0.370330265295073,0.3607738998482549,0.0,1.858220821025637,57.26412151965525,169.1512399519791,263.9462441851733,fqhc8_80Compliance_implementation_low_initial_treat_cost,39 -100000,95685,44767,423.8699900715891,6074,62.381773527721165,4778,49.40168260437895,1862,19.07299994774521,77.33990302576841,79.7299058091731,63.32261558699434,65.08855093299375,77.10656998233708,79.49968757330234,63.23617960843783,65.00636896040731,0.2333330434313296,230.2182358707654,0.0864359785565085,82.18197258644011,166.08592,116.4030744868252,173575.7119715734,121652.3744440876,360.52461,233.70466364416052,376271.57861733815,243732.57422183268,371.26699,179.34633718400858,385278.2045252652,185254.5283926793,3132.5057,1423.8661603038518,3240058.3372524427,1454366.1810146342,1151.05546,503.5818065020866,1190064.1375346188,513392.0849684769,1826.2785,760.4327582999106,1872892.929926321,762309.3388585798,0.3806,100000,0,754936,7889.8050896169725,0,0.0,0,0.0,30805,321.3983382975388,0,0.0,33961,352.1346083503161,1572661,0,56477,0,0,6492,0,0,68,0.7106652035324241,0,0.0,0,0.0,0,0.0,0.06074,0.1595901208617971,0.3065525189331577,0.01862,0.3204186845805343,0.6795813154194658,24.59860945657392,4.334899535643187,0.3292172457095019,0.2329426538300544,0.2176642946839682,0.2201758057764755,11.071039018883235,5.709027877160251,19.71906076847916,12301.00174651271,54.1910383268081,13.39616642151814,17.804491214651595,11.513442124868824,11.476938565769538,0.5692758476349937,0.793351302785265,0.6961220597584233,0.5740384615384615,0.1378326996197718,0.7410926365795725,0.924170616113744,0.8556962025316456,0.7024793388429752,0.1862745098039215,0.5075391180654338,0.7134587554269175,0.6426146010186757,0.5350877192982456,0.1261792452830188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021371416995847,0.0048046221681617,0.0072145386652596,0.009436070369317,0.0119378095034725,0.0142714631812536,0.0164820043421978,0.0184945139066088,0.0206597630414115,0.0227949681157046,0.0248503239563684,0.0269870761776691,0.0289366252943535,0.0309113757158749,0.0332228999597485,0.0351537459418102,0.0372346487365705,0.0391525933922213,0.0412886984021304,0.0430644455100806,0.0585427004439801,0.0726063969010103,0.0852034874571149,0.097658222521461,0.1101980104016119,0.125330596872818,0.1369823772187622,0.1489318672896997,0.1604447720062806,0.1713397308743901,0.1842314982338244,0.1961501422867592,0.2079862545944888,0.2190479314265722,0.2289541167277489,0.2391843696697162,0.2489206225246834,0.2579596336880949,0.2667324621108993,0.2742306767296174,0.2813143346209896,0.2872942386831276,0.293866445850831,0.2987460927675781,0.3039689282679937,0.3095176524191264,0.314934537133139,0.3190867254837151,0.3233885581154543,0.3268736065854913,0.3262016965127238,0.3241811904205125,0.3231751130647956,0.3223292266759211,0.3223106088766634,0.3208782801621911,0.3192946386209078,0.3200026245858075,0.3203382029558665,0.3212917935837831,0.3214552936775159,0.3229187226147712,0.3246221070017352,0.3259756233925975,0.3262826066031379,0.3268488578283092,0.3278089967766779,0.331474304439613,0.334646223097482,0.337797147385103,0.3422165628268679,0.3451463790446841,0.3494173228346456,0.3520012174707046,0.3569487395745478,0.3561967833491012,0.3562989105416603,0.360122699386503,0.3583216783216783,0.363355237727097,0.0,2.1020721042611923,55.55114188380292,181.0152945792369,261.7505720587849,fqhc8_80Compliance_implementation_low_initial_treat_cost,40 -100000,95789,44934,426.6043073839376,6110,62.64811199615822,4750,49.0661767008738,1900,19.469876499389283,77.331780499572,79.67250264376251,63.32970022966426,65.06263678717164,77.09818450468434,79.44034706270148,63.24379356413642,64.97965858672241,0.2335959948876649,232.1555810610363,0.0859066655278439,82.97820044923299,167.47654,117.29724321450438,174839.0107423608,122453.77153379236,362.87481,235.24250518435483,378310.025159465,245066.8502483113,373.37253,180.7628282737813,386821.3364791364,186346.37036698655,3093.36995,1412.3645752015475,3197562.1626700354,1442657.7636279198,1130.39124,500.9633080664151,1168551.4725072817,511453.129343051,1849.29454,763.8368439369747,1897872.4070613536,769588.768159993,0.38132,100000,0,761257,7947.2277610164,0,0.0,0,0.0,30929,322.3439017006128,0,0.0,34155,353.5165833237637,1565127,0,56277,0,0,6673,0,0,60,0.626376723840942,0,0.0,0,0.0,0,0.0,0.0611,0.1602328752753593,0.3109656301145663,0.019,0.3410123805046231,0.6589876194953769,24.2675194036431,4.281180092632948,0.311578947368421,0.2543157894736842,0.2191578947368421,0.2149473684210526,11.278513503200688,6.007712988508029,20.032667629656306,12251.203132282044,53.8926239211036,14.395797553421025,16.872926989265224,11.532986480675904,11.090912897741434,0.5669473684210526,0.765728476821192,0.6912162162162162,0.5917387127761767,0.1263467189030362,0.7612179487179487,0.9372093023255814,0.8721227621483376,0.7531914893617021,0.1510416666666666,0.4977155910908052,0.6709511568123393,0.6262626262626263,0.5446650124069479,0.120627261761158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026031906811851,0.0047544706216292,0.0071437994053598,0.0092344264293551,0.0114111365369946,0.0136355767370339,0.0154870414551089,0.0174976520070235,0.0195354828157265,0.0214976710856323,0.0235883872555049,0.0255354539294001,0.0277212248339399,0.0296453476993438,0.0316634672941565,0.0338254145474093,0.0358851674641148,0.0380638269184894,0.039789259290049,0.0417113524432273,0.0565787688743726,0.070479697077467,0.0838181494176965,0.0969338433086751,0.1091805662385282,0.1245733608073123,0.1370202753547922,0.1484502100058482,0.1605698431330701,0.1704466323130818,0.1836381052835509,0.1953406374717442,0.2063479981732379,0.2170869879043723,0.2270046001804855,0.2369012929745061,0.2463121247963578,0.2558602537568613,0.2647999455634186,0.2729666605605422,0.2798071252645089,0.2872771901116241,0.2937773571513072,0.2990438075153374,0.3049297399710944,0.3105790687066191,0.3142052213109622,0.3192473310061915,0.3237070641607258,0.3282320784862609,0.3277233988124891,0.3270417772156771,0.3253263119359063,0.3241762213900496,0.323631282424819,0.3214285714285714,0.3196587431217392,0.3203214884454817,0.321433461117196,0.3222851224172723,0.3229909206873265,0.3242260092523032,0.3248457114068601,0.3253106459196239,0.3258703466911143,0.3267862747149283,0.327343370568237,0.3297879035810938,0.3334853374491371,0.337069273876237,0.3413564740808403,0.3420322339630697,0.3427444995548773,0.3458381281166091,0.3499007842766701,0.352387757532452,0.353848526916551,0.3545123431808984,0.3557531962201223,0.3598260181890075,0.0,2.037314696098668,54.70039810845385,183.16320226075277,258.56249597905065,fqhc8_80Compliance_implementation_low_initial_treat_cost,41 -100000,95688,44368,420.2825850681381,5964,61.03168631385336,4678,48.27146559652203,1806,18.48716662486414,77.34192318165195,79.71723324495878,63.32298576779221,65.07494002646662,77.10404331334648,79.48183194253446,63.23382003081405,64.9899218747913,0.2378798683054697,235.4013024243216,0.0891657369781597,85.0181516753139,166.86098,116.79354654627107,174380.0267536159,122056.41203523029,357.15053,230.61080429964088,372642.0031769919,240400.56568393204,356.11896,171.8314684910922,368841.6206838893,177059.20402095915,3048.33799,1396.5168148577868,3149059.913468773,1422863.0048478253,1105.09154,487.72624889881456,1144134.499623777,499065.9468987344,1771.20112,758.8516003215449,1815221.553381824,760603.4091364297,0.37978,100000,0,758459,7926.364852437087,0,0.0,0,0.0,30493,318.03360922999747,0,0.0,32624,337.6076415015467,1573683,0,56449,0,0,6651,0,0,72,0.7524454477050414,0,0.0,0,0.0,0,0.0,0.05964,0.1570382853230817,0.3028169014084507,0.01806,0.3252589641434263,0.6747410358565737,24.652354506627788,4.410781851831074,0.3221462163317657,0.2400598546387345,0.2167592988456605,0.2210346301838392,11.225391980983984,5.785624265095917,19.40502469903918,12248.165574702663,52.8756386550555,13.398319516380116,16.79904363128717,11.271960933795228,11.406314573592992,0.5583582727661394,0.8032056990204809,0.6808228268082283,0.5650887573964497,0.1073500967117988,0.7155519742143432,0.938095238095238,0.8498583569405099,0.6923076923076923,0.1367521367521367,0.5016002327611289,0.7226173541963016,0.6291161178509532,0.5269230769230769,0.09875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019946741188501,0.0044901227435359,0.0068778721202714,0.00932415138034,0.0114203776961955,0.01367310785771,0.0158228493362967,0.0177774601002726,0.0195817782095199,0.0216558813892529,0.0239415968583703,0.0261239243392002,0.0280791977372075,0.030014837406751,0.0321548387096774,0.03396105440594,0.0364116641632568,0.0383860821906432,0.0404351353037835,0.042507737679634,0.0570888350325923,0.0712168968658701,0.0839841289834991,0.0962999600109443,0.1085784236130897,0.1239680792515134,0.1365103635745837,0.1484223533672795,0.1598392200461814,0.1712574336074196,0.1846883761052404,0.1965728645393297,0.2082952318745917,0.2187917259494363,0.2283226175797076,0.2388994160211872,0.2486825652018578,0.257517929318517,0.2652628234947072,0.2723815632731604,0.2795713855909648,0.2866102666713471,0.2936008997809743,0.2989207339009473,0.3047874861747511,0.3092971639950678,0.3147023086269744,0.3189896623720528,0.3225015884542071,0.3265688994583168,0.3260030760098216,0.3251230847733447,0.3239802399435427,0.3222850204535927,0.3209552221084346,0.3204969324214746,0.3181199987348578,0.3193299392346855,0.3193955348900817,0.3203260152306896,0.3209892722745399,0.3217153934406773,0.3229928153997612,0.3234622616169755,0.3248083070932385,0.3267558702556359,0.3262409330109515,0.3294217313545229,0.3341492412056787,0.3359050445103858,0.3386300873738059,0.3395179194418015,0.3421550094517958,0.3438516836927733,0.3436509416371434,0.3460910151691949,0.3506161707243763,0.3564199245882119,0.3588490770901194,0.3536221060492905,0.0,2.367082119903953,54.14495489424223,172.63390385490186,259.7631490085535,fqhc8_80Compliance_implementation_low_initial_treat_cost,42 -100000,95730,45199,427.7238065392249,6259,64.14916953932936,4911,50.61109370103416,1921,19.628120756293743,77.32392886815877,79.69004022073787,63.31606620966248,65.06595475440784,77.08829635762876,79.45687124549889,63.22873486331599,64.98266846349301,0.2356325105300101,233.16897523898209,0.0873313463464953,83.28629091482753,164.95446,115.59127993352756,172311.96072286638,120747.02526711392,358.83747,231.95992866804653,374170.3541209652,241637.0253108124,372.3653,179.4626576661574,384971.1271283819,184355.2259444405,3219.27944,1458.2169801004811,3318234.2003551656,1479213.6652725695,1134.50004,498.1881468512968,1167256.7951530346,502797.0439910835,1881.93494,786.8426800235416,1924437.4804136637,785851.1100533146,0.38505,100000,0,749793,7832.361851039382,0,0.0,0,0.0,30472,317.5911417528465,0,0.0,34043,351.68703645670115,1580950,0,56771,0,0,6790,0,0,69,0.6998850934921133,0,0.0,2,0.0208920923430481,0,0.0,0.06259,0.1625503181405012,0.3069180380252436,0.01921,0.3330279431974347,0.6669720568025653,24.59641438583123,4.302815228288896,0.3145998778252901,0.2443494196701282,0.2180818570555895,0.222968845448992,11.08081012448931,5.751879709901358,20.41982467115586,12458.381163036474,55.41718500971327,14.251914601824812,17.29587285574229,11.84473511347993,12.024662438666224,0.5650580329871716,0.8041666666666667,0.6912621359223301,0.5929038281979458,0.0977168949771689,0.7269108280254777,0.9182692307692308,0.8641025641025641,0.7990867579908676,0.0822510822510822,0.5094391244870041,0.7436224489795918,0.6329004329004329,0.539906103286385,0.1018518518518518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023397854690206,0.0044611625384014,0.0070229565429191,0.0093682050031498,0.0115046588273589,0.0136252545824847,0.015812654201415,0.0181387610113609,0.0204275680152133,0.0226272140882563,0.0246573095338179,0.0267767305283476,0.0289715014187605,0.0309322950465065,0.032835605271033,0.0348555952947013,0.036967600265164,0.0389218138603173,0.0412944687665734,0.0435706695005313,0.0585103050804986,0.0725674827369742,0.0862539063319281,0.0994741823535597,0.1120954219002119,0.1281354139116635,0.1406772286893683,0.1518597791478985,0.1631859503690805,0.1738375272056695,0.1873223667212126,0.1996171814170776,0.211367441455937,0.2221335403387162,0.2320660720766295,0.2421544526388058,0.2510014393947847,0.2601998334721065,0.2687570243055161,0.2768033200348512,0.28318522552166,0.2899265489732085,0.2966571834992887,0.3019605960980058,0.3083230932074507,0.3141330898862542,0.3196345315084975,0.3242265151129007,0.3294129851268818,0.3334699218801634,0.3326005152205872,0.3312666198211604,0.3307557712931083,0.3289027886369559,0.3278032377097964,0.3259760748694227,0.3239659482895028,0.324198891403457,0.3244212251587789,0.3253585955898094,0.3262338342909547,0.3276615086658366,0.3278698819392112,0.3283935716041932,0.3287068218993553,0.3300826575578212,0.3316634407377889,0.3358759377166992,0.3390715394384083,0.3435621890547263,0.3480345158197507,0.3504278046447361,0.3513138824122503,0.3546029087032666,0.3539714096374136,0.3539379474940334,0.3536381588941212,0.3537576839183026,0.3534574468085106,0.3540958852397131,0.0,2.660937876380556,54.60332508100669,180.9016559717607,280.99968206574226,fqhc8_80Compliance_implementation_low_initial_treat_cost,43 -100000,95793,44817,424.3838276283236,6017,61.55982169887152,4682,48.27075047237272,1841,18.80095622853444,77.4066300966336,79.74542209234697,63.35719594835807,65.08757757874034,77.18441397470299,79.52637328820516,63.27427868812245,65.00850516654971,0.2222161219306144,219.0488041418064,0.082917260235618,79.07241219062655,166.94876,116.83055137958848,174280.75120311504,121961.47044104316,357.24018,231.96813526702405,372345.9960539914,241572.3020126983,366.1095,177.483615603302,378512.72013612685,182376.89367604785,3058.98275,1399.6877839312665,3156019.834434666,1423852.5924976422,1106.87761,494.3752710658996,1141467.5498209682,502065.5695780479,1801.9566,750.9811259877685,1842917.958514714,751962.366489017,0.38093,100000,0,758858,7921.85232741432,0,0.0,0,0.0,30411,316.8603133840677,0,0.0,33437,345.36970342300583,1574447,0,56534,0,0,6512,0,0,75,0.782938210516426,0,0.0,1,0.010439176140219,0,0.0,0.06017,0.1579555298873808,0.3059664284527173,0.01841,0.332435003170577,0.6675649968294229,24.578382706697216,4.360770434645211,0.3334045279794959,0.231524989320803,0.2161469457496796,0.2189235369500213,11.451230476686694,6.0328348909428176,19.451700365404637,12265.62534123378,52.81564632475813,12.981559361736338,17.515800503129775,11.160722982606874,11.157563477285132,0.5645023494233233,0.790590405904059,0.6912235746316464,0.591897233201581,0.1053658536585365,0.7388178913738019,0.9102244389027432,0.8746987951807229,0.7379912663755459,0.1352657004830917,0.5008746355685131,0.7203513909224012,0.62478184991274,0.5491698595146871,0.097799511002445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023608324720854,0.0048772079252093,0.0070630498980119,0.0088800382024526,0.0109742577882649,0.0129630761084295,0.0154768459044473,0.0178226917776757,0.0200539678645897,0.0223607188177985,0.0243405005431774,0.0264734854703661,0.0287881435193274,0.0307391393864525,0.0327076310933811,0.0346429862150859,0.0364458329884962,0.0384695125743785,0.0406112992706796,0.0424973712429596,0.0566673622704507,0.0707869281045751,0.0841150883077406,0.0964582238570677,0.1088937824653088,0.1243012479790348,0.136975992368435,0.1490952006294256,0.1601510819000469,0.1698388046912654,0.1825302047359304,0.1948492842624227,0.2057740158421435,0.2163268871684556,0.2263344648408748,0.2366042286713209,0.2463477194156351,0.2548810233007744,0.2639862122139828,0.2717118890402023,0.2798413854495428,0.2866841158187469,0.2929849669414645,0.2982552778742411,0.3046778228450684,0.3094812605528784,0.3147135041750648,0.3199964378403134,0.3238913066003523,0.3272568871523423,0.3265369377139315,0.3257887422776868,0.3249619696884331,0.3239233136368233,0.3230938177069421,0.321704833827621,0.3204052007068922,0.3209813985419595,0.3213837118511728,0.3219458577836084,0.3240386945257311,0.3260412780079728,0.3270971635485817,0.3273394087575016,0.3286860198624904,0.3297453943282964,0.330393985642417,0.3353369876666251,0.338275214032157,0.3442474745489564,0.3487239606817567,0.3533088235294118,0.3593633424521263,0.3579081441522439,0.3634438305709024,0.3653333333333333,0.3657758882477984,0.3673956262425447,0.3699153699153699,0.3801904761904762,0.0,2.402119808666173,54.46599991547688,173.64423131479515,255.88034405519505,fqhc8_80Compliance_implementation_low_initial_treat_cost,44 -100000,95684,44610,422.0872873207642,6151,62.9676852974374,4824,49.79933949249614,1862,19.062748212867355,77.29491858535671,79.69736864105414,63.29396199958445,65.07414609588713,77.06952625342363,79.47172352266365,63.21014436241264,64.9920109248718,0.2253923319330795,225.64511839048865,0.083817637171812,82.13517101532375,166.83876,116.86117175026276,174364.32423393673,122132.4064109598,360.56994,233.35891572672523,376237.9603695498,243288.85260516405,370.05218,179.2224846458574,382261.74700054346,183940.3393687454,3162.91643,1444.0646699246104,3268471.6880565197,1472088.008365675,1166.04711,513.0836262299936,1201998.839931441,519582.2564169492,1819.35312,762.7321871615991,1864895.1966891016,769417.7034357998,0.38071,100000,0,758358,7925.651101542578,0,0.0,0,0.0,30775,320.9836545294929,0,0.0,33893,349.70318966598387,1571060,0,56363,0,0,6676,0,0,70,0.7315747669411814,0,0.0,0,0.0,0,0.0,0.06151,0.1615665467153476,0.3027150056901317,0.01862,0.3346761698171676,0.6653238301828324,24.45876276809804,4.319055746758949,0.3246268656716418,0.2415008291873963,0.2166252072968491,0.2172470978441127,11.311818912275935,5.966494210834365,19.778990488242,12342.453996224694,54.54745388301372,14.021665692813794,17.794207628290174,11.333450813152922,11.398129748756824,0.5733830845771144,0.7991416309012875,0.7005108556832694,0.570334928229665,0.1354961832061068,0.7565543071161048,0.9211087420042644,0.8741258741258742,0.7445887445887446,0.1504854368932038,0.5032960733734595,0.7169540229885057,0.635004397537379,0.5208845208845209,0.1318289786223277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619572820258,0.0048098876678133,0.0069974102472959,0.0091911951603883,0.0114009996233598,0.0134029129677005,0.0155312461733131,0.0176845589587462,0.0198469533903506,0.0221165961544371,0.0241573148964979,0.0262473932383427,0.0284626466351101,0.0305678656085746,0.0329689612815986,0.0349434844207282,0.0370140097819779,0.0391092192691029,0.0411838135857692,0.0433894418677367,0.057291775470555,0.0716708542713567,0.0850402955003358,0.0982197344331979,0.110414820441406,0.1250965496079821,0.1378805247739141,0.150209748514725,0.1610338821870091,0.1714714875811383,0.1847012312697267,0.197680456984594,0.2093475826529392,0.2201394657456389,0.2304443466783985,0.2406006711037774,0.2505885897278539,0.258651930717027,0.2668332292317302,0.2735257358421336,0.2812123598628741,0.2878516489305658,0.2944324721149975,0.3006717850287908,0.3056747329144232,0.3110337763627164,0.3164744047395383,0.3209004606652923,0.3249417852522639,0.328452048294406,0.3275277725475428,0.3272200241784812,0.3267106614698392,0.3261578886578886,0.3243965837356108,0.3230769230769231,0.3208067738559604,0.3209748722246873,0.3220938578801654,0.3240823474748919,0.3249995307543593,0.3262092461276393,0.3263918045175917,0.3261716999731158,0.326282747796692,0.3295665594182427,0.3310934461855198,0.3351939451277199,0.3383582823810527,0.3401541640178004,0.3433545026728195,0.3471197239182373,0.351184863913508,0.3506572448902059,0.3526261392464531,0.3528922674902007,0.3565243809813155,0.3600810536980749,0.3567934782608695,0.3588876362269823,0.0,2.4383610303705456,58.3187062912034,169.77121427344653,268.7356334933476,fqhc8_80Compliance_implementation_low_initial_treat_cost,45 -100000,95722,44690,423.6330206222185,6102,62.58749294832954,4764,49.19454252940808,1884,19.30590668811768,77.3593554540744,79.73078820458012,63.33143217950936,65.08406387368643,77.12510827623473,79.49691207767829,63.24402390991682,64.99892782308576,0.234247177839677,233.87612690183343,0.0874082695925437,85.13605060066709,167.09154,116.98680974258788,174559.18179728798,122215.17492591866,358.91149,233.0643366227297,374408.00442949374,242936.500096874,370.78235,180.02297561248176,383690.2383986962,185234.1940759853,3114.79285,1443.4511755924452,3218779.3715133406,1472742.2281110368,1126.3527,504.264806237893,1163053.7493993023,513163.55303680745,1841.28766,782.8402689020097,1889017.8224441612,789394.4749576224,0.38086,100000,0,759507,7934.50826351309,0,0.0,0,0.0,30653,319.644386870312,0,0.0,33877,350.21207245983163,1569852,0,56292,0,0,6554,0,0,71,0.7417312634504085,0,0.0,0,0.0,0,0.0,0.06102,0.1602163524654729,0.3087512291052114,0.01884,0.3410549381749883,0.6589450618250118,24.242933417536506,4.345940789213842,0.3096137699412258,0.248320738874895,0.2187237615449202,0.2233417296389588,11.336656776159854,5.920054204757719,20.185662757187128,12268.978057922575,54.09208933967195,14.169031404826269,16.625641704886913,11.584589003590237,11.71282722636852,0.552896725440806,0.7776838546069316,0.6894915254237288,0.572936660268714,0.093984962406015,0.7279521674140508,0.9301801801801802,0.8777506112469438,0.7148760330578512,0.1193415637860082,0.4845300642148278,0.6860622462787551,0.6172607879924953,0.53,0.0864799025578562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0047543260312021,0.0069915877703024,0.0093233937965915,0.0115412383189449,0.0136011483604304,0.0156480962332432,0.0178020946042504,0.0195559281143301,0.021703743895822,0.023750192278111,0.025893856756951,0.0281184410881106,0.0303008448382443,0.0321751782636961,0.0342998914560397,0.0363502712552283,0.0384814853230992,0.0404715617885249,0.0423537254820262,0.0569727979950921,0.0711280430368618,0.0841244034195206,0.0978707744072341,0.1099242919504839,0.1251626278545816,0.1379321321703699,0.1493953072435379,0.1603816932562538,0.1704903959652323,0.1836558769018576,0.1963431268538766,0.2082336045955002,0.2186036331801269,0.2283231264043706,0.2383714482177317,0.2481654808841432,0.2573608001530101,0.2659312473755291,0.2734563869888518,0.2802490279577856,0.2863524733949246,0.2933525669827606,0.299384711149417,0.3050026700325258,0.3098612359481389,0.3137127344150726,0.3185030762190471,0.3221644147641973,0.3269405670449603,0.3257786560202175,0.3244695470536499,0.3240892934912406,0.3238554563777713,0.3226881545229666,0.3214645462592717,0.3201109919909188,0.3199587972727719,0.3203146281667121,0.3210399032648126,0.3219609823616333,0.3230289391606459,0.3233806836064541,0.3250723304999215,0.3257823784304285,0.3274666249478515,0.3285539180753114,0.3322419166955262,0.336352148272957,0.3379528806176994,0.3419052387237722,0.3466355338569306,0.3482961370677119,0.3495830174374526,0.3484678624813154,0.3457690949746969,0.3534338358458961,0.3585057240409721,0.3709369024856596,0.3670597185241536,0.0,2.2801953283102177,58.60463471668945,170.71192401748203,260.3787829572005,fqhc8_80Compliance_implementation_low_initial_treat_cost,46 -100000,95889,44626,421.3934862184401,6110,62.54106310421425,4765,49.11929418390014,1876,19.167996329088844,77.4394230829848,79.7178194996512,63.39129033748679,65.07643223204443,77.20627130378556,79.48711603230882,63.30630483832068,64.99475895112342,0.2331517791992468,230.70346734238,0.0849854991661089,81.67328092100945,165.70928,116.10486188844686,172813.41968317534,121082.33675233534,358.29694,231.79820350141625,373079.7901740554,241159.1723663663,368.06508,178.4979276783094,379904.3998790268,183111.24701565696,3114.09085,1421.8539329548564,3213383.172209534,1448749.8588449557,1107.51351,491.8966827044539,1140847.0627496378,499137.0127452067,1828.11804,755.5069077354811,1870372.597482506,758659.5986347212,0.38034,100000,0,753224,7855.155440144334,0,0.0,0,0.0,30396,316.38665540364383,0,0.0,33747,348.01697796410434,1582831,0,56786,0,0,6648,0,0,79,0.8238692655049068,0,0.0,2,0.0208574497596178,0,0.0,0.0611,0.1606457380238733,0.307037643207856,0.01876,0.328827412763282,0.671172587236718,24.57664267901398,4.375204262534156,0.3202518363064008,0.2438614900314795,0.2209863588667366,0.214900314795383,11.316304197508284,5.830373118151766,19.898618336880684,12262.461248318132,54.0448077222059,13.90356664955851,17.250880254414948,11.822534300018267,11.067826518214186,0.566211962224554,0.7788296041308089,0.7110091743119266,0.5679012345679012,0.107421875,0.7530959752321982,0.902097902097902,0.8571428571428571,0.7715355805243446,0.1684210526315789,0.4966887417218543,0.7066848567530696,0.6580357142857143,0.4987277353689567,0.0935251798561151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023891476007288,0.0044590376585998,0.0068574442832651,0.0090568489882118,0.0114649293097665,0.0137563338149406,0.0159714795008912,0.0182986536107711,0.0205140778881124,0.0226273041592503,0.0247341134039631,0.0269538183721001,0.0291016708798322,0.0312319855060528,0.0332377987174993,0.0350147142340853,0.0371719136345296,0.0390939892861953,0.0411627303399948,0.0432864855867758,0.0578823382254836,0.0716666492524057,0.0843751963309668,0.0974183455994288,0.1096233604917998,0.1253536590515603,0.137113685949713,0.1485581929067766,0.1605658124760158,0.1709934937077305,0.1845211222186391,0.1969556198954237,0.2082740493749389,0.2181798317491532,0.2283126106219012,0.2385836791147994,0.2478547707669333,0.2570645581562514,0.2657598477812762,0.2726410350187437,0.2800161625490648,0.2861728078058801,0.2926108840000945,0.2973192915270464,0.3032204047954181,0.3086146194943004,0.3136892111513939,0.3185195534274065,0.32292501357045,0.3265448513730549,0.3249677384665018,0.3242857338989799,0.3231301121511089,0.3225485244245616,0.3215562378557973,0.3191339714381823,0.3176695591698674,0.3175050367725344,0.3183212873312423,0.3199743735763098,0.3202078155076716,0.3213194266448471,0.3232922498433256,0.3242804033748135,0.3255636041980444,0.3265671641791045,0.327883690671494,0.3316695782380833,0.3336349714603926,0.3369976359338061,0.3390160079587591,0.3441912114642271,0.345821325648415,0.3515589353612167,0.353789592760181,0.3549268988470224,0.3545398394070413,0.3526165167620605,0.3537396121883656,0.3532526475037821,0.0,2.1917810629967427,56.59409343470889,180.5861293583499,255.17998142083536,fqhc8_80Compliance_implementation_low_initial_treat_cost,47 -100000,95745,44723,423.9803645098961,6010,61.55935035772103,4768,49.2976134523996,1883,19.33260222465925,77.34647984393533,79.6964650047656,63.33814763576003,65.07426774527191,77.10856861022717,79.4593739364003,63.24949850221349,64.98796436211275,0.2379112337081608,237.09106836530225,0.0886491335465393,86.3033831591622,166.05534,116.3136121126456,173434.99921666927,121482.70104198193,357.49834,232.00300263271737,372898.4072275314,241825.93621882852,367.92912,178.61279544881708,380507.5251971383,183708.9774791833,3085.54534,1419.6040673501727,3191934.597106898,1451957.2900414353,1109.37762,492.2147695539799,1145902.7416575276,501312.5798255575,1829.43512,774.5786555936209,1880058.2589169147,783152.720381913,0.38088,100000,0,754797,7883.409055303148,0,0.0,0,0.0,30488,317.9173847198287,0,0.0,33677,348.007728863126,1575831,0,56588,0,0,6508,0,0,61,0.6371089874144864,0,0.0,0,0.0,0,0.0,0.0601,0.1577924805713085,0.3133111480865224,0.01883,0.3316415543219667,0.6683584456780333,24.135307264387404,4.30226584765036,0.3303271812080537,0.2388842281879194,0.2195889261744966,0.2111996644295302,11.4027240543369,6.2213541135381005,20.174321370084808,12267.3053387057,54.38381015971639,13.726187960358816,17.899843829142345,11.719199913629888,11.038578456585348,0.5776006711409396,0.797190517998244,0.7066666666666667,0.5998089780324737,0.1042701092353525,0.7298720842738902,0.9221698113207548,0.8534278959810875,0.75390625,0.1106194690265486,0.5187554521663275,0.7230769230769231,0.6527777777777778,0.549936788874842,0.1024327784891165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0047136818416811,0.0069006809348393,0.0090713313423132,0.0109829763866007,0.0129398110441439,0.0150764525993883,0.0171567376682758,0.019339473173125,0.0216129329497404,0.0239239844606853,0.0260505409233674,0.0281907346863241,0.0301469755178131,0.0322211217036028,0.0342838833707145,0.036257467361032,0.0384691199203228,0.0406120391255989,0.0423384576927884,0.0567184123437973,0.0707393142713609,0.0838342827767811,0.0967613038906414,0.1088595316667896,0.1244502241393893,0.1372305668703326,0.1490788339346722,0.1608801486131574,0.1710127219917901,0.1831854786615563,0.1966518146818358,0.2081535501961764,0.2183705808425769,0.2279737498763342,0.2382322986317141,0.247240002676361,0.2560763010201212,0.2650873072602879,0.2731926882902694,0.2803049584673407,0.2877726448745687,0.2944351717035406,0.2999328553272103,0.3056962717300193,0.3106348913110413,0.31504004004004,0.3191841515583622,0.3227483727081766,0.3267107001321004,0.3260274711202771,0.3262554908359841,0.325046157315406,0.3236221155514429,0.3230593098116181,0.3210650561039916,0.3200145583441466,0.321420370674102,0.3219632237336797,0.3221125528762918,0.3231382978723404,0.3241476038086207,0.3259433269710762,0.3263127266216035,0.3276886440718736,0.3287316652286454,0.329619472060336,0.3335534383548721,0.3351482366165519,0.3371936225906242,0.3378199571109184,0.3400404556584691,0.3447690857681432,0.3460892147876566,0.34960808386061,0.350095328884652,0.3467729572282692,0.3409508263619669,0.3379252178802361,0.3361012257809411,0.0,1.9489693832904968,58.68788879491219,177.49097266602126,256.208061535648,fqhc8_80Compliance_implementation_low_initial_treat_cost,48 -100000,95745,44777,423.1343673298867,6237,64.14956394589795,4918,50.83294166797221,1895,19.489268369105435,77.41222784566315,79.76819205107951,63.350809200748486,65.0896735345523,77.17823662783996,79.53390626656008,63.26504655211604,65.00630599798063,0.2339912178231884,234.28578451942883,0.0857626486324463,83.36753657167151,167.0394,116.96857154672269,174462.56201368218,122166.57018668028,360.98919,232.5782527772854,376504.2560969241,242388.78796568653,369.18815,177.7402651526701,381964.9172280537,182930.84837150451,3202.16145,1445.9182428938818,3310984.1453861822,1476836.2902242113,1183.57495,516.6041019681725,1225046.1851793828,528434.5103850568,1860.83844,767.376113474592,1914273.288422372,775393.0633763038,0.38136,100000,0,759270,7930.116455167371,0,0.0,0,0.0,30759,320.7060420909708,0,0.0,33844,349.85638936759096,1573453,0,56396,0,0,6483,0,0,55,0.5744425296360123,0,0.0,0,0.0,0,0.0,0.06237,0.1635462555066079,0.3038319704986371,0.01895,0.3305772469759608,0.6694227530240392,24.74506687662396,4.402919289339173,0.3163887759251728,0.2482716551443676,0.211468076453843,0.2238714924766165,11.162894534454711,5.680391729781142,19.95670424964031,12345.122887569392,55.35663330623366,14.464613339408482,17.435303148519086,11.497901313631017,11.958815504675082,0.5662871085807238,0.7813267813267813,0.7005141388174807,0.5711538461538461,0.1335149863760218,0.7476340694006309,0.914691943127962,0.8779220779220779,0.7330677290836654,0.1904761904761904,0.5032876712328768,0.7108886107634543,0.6421861656703672,0.5196451204055766,0.1200897867564534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025521571804739,0.0047230527542694,0.0072738708761108,0.0094747745552035,0.0116613629662765,0.0142413600040718,0.0164400595225961,0.0185912676142567,0.0206538512636559,0.0228761514841351,0.0248831679921292,0.0271108145562798,0.0296388440542402,0.0318321782025272,0.0338967310549777,0.0357652312335903,0.0377745332546363,0.0395600975255485,0.0417216821749753,0.0436059835826492,0.0584016286474917,0.0723979533112201,0.0861629480441829,0.0988691947614789,0.1110513210095382,0.1271164917033525,0.1396748243584573,0.1515177326107556,0.1626773807488459,0.1731301641807061,0.1863553557761752,0.1982828621850741,0.2089795918367347,0.219416349227199,0.2288493099384286,0.2393225903046569,0.2486282310606483,0.25735683315502,0.2659059945504087,0.2732097010819732,0.2809623600514061,0.2876132082094966,0.2945575011831519,0.2994587085648592,0.3055457778533021,0.3107871863688967,0.3149173341997726,0.3196734838963578,0.324475091035872,0.3280109429048677,0.3270997947493393,0.3263476747214189,0.3259100221717044,0.3253206281577016,0.3233282618650202,0.3217378071977478,0.3192081949929977,0.3191871085594989,0.3196644762535445,0.3206258537191109,0.3222096074745482,0.3234918827663375,0.3246541903986981,0.3257562277580071,0.3260089042079563,0.3282498184458969,0.3294030950626381,0.3307305493956335,0.3352520495377638,0.3388663808362506,0.3425925925925926,0.3464297015082797,0.3479238214174212,0.3513574660633484,0.3561554875220336,0.3573104904951889,0.3550233468895918,0.3557328015952143,0.3559183673469387,0.3552182163187856,0.0,2.064871028058356,55.73030979736379,185.21976276120955,271.86998320059126,fqhc8_80Compliance_implementation_low_initial_treat_cost,49 -100000,95725,44928,423.6824236092975,6154,63.09741446852965,4832,49.85113606685819,1885,19.294855053538782,77.32373385663094,79.69333187501464,63.321321634088775,65.07507599605206,77.08500365678022,79.45596710649026,63.23247296226375,64.98909685016054,0.2387301998507212,237.3647685243725,0.0888486718250263,85.97914589152822,165.95634,116.25889036935774,173367.81405066597,121450.91707428337,361.11406,234.4304635490559,376614.9386262732,244273.75664565773,370.74726,179.735740674616,382920.2402716114,184363.8562574777,3174.54204,1454.0211290708908,3279089.892922434,1481796.83832338,1133.88224,504.7914705391183,1169664.068947506,512516.9472441584,1849.7745,788.6784347912463,1896328.231914338,793974.4641445182,0.38237,100000,0,754347,7880.355184121181,0,0.0,0,0.0,30773,320.8148341603552,0,0.0,33961,350.39958213632804,1574234,0,56523,0,0,6502,0,0,63,0.6581352833638026,0,0.0,1,0.0104465917994254,0,0.0,0.06154,0.1609435886706593,0.3063048423789405,0.01885,0.3218657988532465,0.6781342011467535,24.16626197442602,4.354073042124193,0.3168460264900662,0.2338576158940397,0.2259933774834437,0.2233029801324503,10.928126710604076,5.585042323787821,20.451771058942377,12347.006756253591,55.09790691607724,13.664493435729456,17.49823513075338,11.97621710998113,11.958961239613268,0.5581539735099338,0.7991150442477876,0.6890920966688439,0.576007326007326,0.1019462465245597,0.7267175572519083,0.9285714285714286,0.8607888631090487,0.7345132743362832,0.1072961373390558,0.4954571266325951,0.7225352112676057,0.6218181818181818,0.5346420323325635,0.1004728132387706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024113475177304,0.0051314815378218,0.0074299634591961,0.0099384183891226,0.0121683216669379,0.0143018671882162,0.0163178721494717,0.0184960117655469,0.0208808401419324,0.0232577192892621,0.0255050764024202,0.0277706456880526,0.0301527699192428,0.0323880381690402,0.0345368592721042,0.0364615639085307,0.0385376210450002,0.0407009316705745,0.0427228680155544,0.0448667854500745,0.0591373711851488,0.0723921757422893,0.0858833279133928,0.0982159762691183,0.1108381137168888,0.1264591439688716,0.1386516734737177,0.1501351322593688,0.1609048092018839,0.1703802191675066,0.1832100520042637,0.1957097887346797,0.2076614437787467,0.2182340979161655,0.2278237338848066,0.2386509588555737,0.2481353059882042,0.2572060838893756,0.2652873823829498,0.2727553542009884,0.2799186531550789,0.287516794205269,0.2937804359131956,0.2996382973626847,0.3055309331552425,0.311045114542385,0.3159554893542451,0.3205954260683543,0.3252301309477505,0.3291832800823849,0.3285904846598488,0.3279377324700372,0.3273058098368055,0.3259616498667593,0.3251548356360171,0.322755299242308,0.3210712928960365,0.321111457598188,0.3220599276499897,0.3215693971131372,0.3222057693389065,0.3232529142834524,0.3233631108775617,0.325181728439379,0.325481488632524,0.3265818809860261,0.3267386262776648,0.3301618409407004,0.3349802371541502,0.3364515871112177,0.3409924784443221,0.3460796915167095,0.3525608519269776,0.3563703305975301,0.3586025049439683,0.3619580752739399,0.3641205112598904,0.3702582728006456,0.3681768558951965,0.3747602608362102,0.0,2.4370768317520985,57.24090731279132,183.77261180177197,261.6861238842337,fqhc8_80Compliance_implementation_low_initial_treat_cost,50 -100000,95773,44928,425.2868762594886,5988,61.2385536633498,4673,48.12421037244317,1867,19.08679899345327,77.38153749659537,79.72236278611942,63.350937847410606,65.08258817664793,77.14732254682613,79.49128681224286,63.26276957246847,64.99843828656316,0.2342149497692389,231.07597387655687,0.0881682749421344,84.14989008477392,166.21484,116.42584914383968,173550.83374228646,121564.37528723093,358.58707,232.61495893514,373783.3314190848,242251.3640954549,364.81747,176.41915535280026,376643.0517995677,180911.4632657985,3077.1218,1406.3539872814483,3173271.381287001,1428763.208087298,1115.33474,490.3170372999423,1147042.7677946812,494439.5260667852,1840.49894,779.2170138928007,1883657.126747622,779729.220592726,0.38232,100000,0,755522,7888.67426101302,0,0.0,0,0.0,30605,318.8894573627223,0,0.0,33258,342.92545915863553,1575713,0,56555,0,0,6631,0,0,63,0.6578054357699978,0,0.0,0,0.0,0,0.0,0.05988,0.1566227244193345,0.3117902471609886,0.01867,0.3297804645243398,0.6702195354756602,24.38843576330277,4.339562884357195,0.3175690134817034,0.2341108495613096,0.2184891932377487,0.2298309437192381,10.988260916164894,5.566390364783425,19.8880656066358,12292.703203120303,52.84470074688565,12.988793019309387,16.750488889704204,11.37338801248498,11.732030825387076,0.5518938583351166,0.783363802559415,0.694743935309973,0.5514201762977473,0.1191806331471136,0.7174629324546952,0.8968253968253969,0.8634020618556701,0.7391304347826086,0.1238532110091743,0.4937843307314252,0.723463687150838,0.635036496350365,0.4968394437420986,0.1179906542056074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022281188600133,0.0042268939931477,0.006726593888235,0.0089779917329352,0.0109400736116477,0.0130907906389649,0.0153606229869123,0.0172894191612488,0.0194874205481411,0.0216403708023819,0.0236511758979351,0.0259079058118289,0.02799769684756,0.0298905489029149,0.0320481082642241,0.0342212394866814,0.0363847093155618,0.03862500777476,0.0405464367338458,0.0427824746990962,0.0578259689841581,0.0727531350995178,0.086323845468365,0.0988724609354476,0.1104846613482838,0.1263092256148472,0.1385146951277676,0.1500281768014545,0.1612414352494183,0.1711654731786801,0.1853394912207042,0.1978950328833506,0.2094370590984684,0.2194498180268205,0.228501336618959,0.2387922539499762,0.2480484432152734,0.2571052749921302,0.2655975320683671,0.2732786341217801,0.2808322153860387,0.2876015666101595,0.2944913750266202,0.2998933914689218,0.3055491483860003,0.3111234225915666,0.3154876433693995,0.3200061021344758,0.3241058146303602,0.3279907207254705,0.3262270165574939,0.3244394957867678,0.323251950099969,0.3225615393505143,0.3224617761994621,0.3208809035536102,0.3187817098421027,0.31947490751956,0.3201170744988599,0.3210263162577178,0.322200833535799,0.323347270432313,0.3239121338912133,0.3253607786105828,0.3269036994386066,0.3279644037365668,0.3291196773002301,0.3325198673424692,0.3359958144401814,0.3374141063107179,0.3387279568430119,0.3427481320544751,0.3458632414053645,0.3451826989091464,0.349005936116084,0.3547433167731251,0.3580134064594759,0.3604275917708753,0.3658469190384084,0.3657230298393267,0.0,2.6582031798313825,52.547941997288135,180.18542988939265,254.4097059013813,fqhc8_80Compliance_implementation_low_initial_treat_cost,51 -100000,95859,44941,425.3226092490012,6104,62.49804400212813,4752,49.019914666332845,1865,19.111403206793312,77.37299817448195,79.67363866449367,63.35320242165369,65.05661650007617,77.14079904988905,79.44342816556767,63.26788054748088,64.9746317731283,0.2321991245928956,230.2104989259988,0.0853218741728127,81.98472694787995,164.41964,115.25810141100756,171522.38183164858,120237.12057397592,360.57281,233.7700915352739,375600.8095223192,243321.12884914436,368.57878,178.21953386017702,381112.0708540669,183322.3650601512,3114.63477,1410.0988921145542,3214532.918140185,1436411.2514988054,1143.26155,497.25915080636673,1180841.2981566675,506959.535600172,1832.14668,759.2518798534495,1879372.4324267933,763655.8800782147,0.38236,100000,0,747362,7796.471901438572,0,0.0,0,0.0,30691,319.5839722926382,0,0.0,33651,347.61472579517834,1583169,0,56807,0,0,6621,0,0,78,0.8136951146997152,0,0.0,0,0.0,0,0.0,0.06104,0.1596401297206821,0.3055373525557012,0.01865,0.3276184538653366,0.6723815461346634,24.661682413612755,4.251399471873652,0.3188131313131313,0.2462121212121212,0.2066498316498316,0.2283249158249158,10.958331772086654,5.662367537184647,19.66183668976645,12326.348936506003,53.68107374818111,13.924515520115689,17.11617672423457,10.87146810694889,11.768913396881969,0.5660774410774411,0.7666666666666667,0.7089108910891089,0.6059063136456212,0.1142857142857142,0.7452282157676349,0.9113300492610836,0.8837837837837837,0.7777777777777778,0.1549295774647887,0.5052156752184945,0.6897905759162304,0.6524017467248908,0.5574412532637075,0.1043577981651376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022989669839983,0.0046216060080878,0.0070600407778217,0.0093109680563734,0.0115588719679564,0.0138029315960912,0.0157777256836504,0.0178999683637959,0.0199756817787041,0.0219984856856365,0.0243327698376107,0.0265628366524054,0.0286418991829813,0.0306941699604743,0.0329161684054265,0.0348627074362072,0.0369033085724927,0.0388062794673851,0.040790047560697,0.0426468293190448,0.0576409743076409,0.0720809212313736,0.0860920214549111,0.098458436594279,0.110589226475699,0.1264775788306132,0.1398340556750628,0.1512928468146636,0.1620787926010524,0.1712849856414212,0.1832074212780611,0.1959012495135976,0.2074561165154067,0.2180311379340505,0.2280360051058585,0.2379132746303372,0.2476431671371035,0.2572058591904237,0.2656790571580893,0.2739887569696484,0.2810707678075855,0.2876826087465057,0.2939979172583546,0.3004730822204922,0.3061843782241913,0.3115155843995911,0.3159179076461019,0.3195350552566988,0.3246534743163317,0.3288112331081081,0.3275785447836568,0.3261764179638576,0.3260305644842948,0.3261369387607548,0.3257413680394604,0.3236617390505922,0.3221988385524629,0.3225536660161695,0.3225789940626493,0.3239471805852962,0.324727320349479,0.3249175862137033,0.3250203987697972,0.3260855021074463,0.3265188735769922,0.3282204601585857,0.3297793488796396,0.3342034911149552,0.335533476108556,0.3411592366774883,0.3434471515261298,0.3466116489446119,0.3494687873263343,0.3479289038065451,0.349811320754717,0.3495042492917847,0.358195211786372,0.3593589480172591,0.3653363103544516,0.3670110983543819,0.0,2.108561416980097,52.74698200804079,185.6713011219248,260.3793186567946,fqhc8_80Compliance_implementation_low_initial_treat_cost,52 -100000,95791,44453,421.2086730486163,6027,61.81165245169171,4700,48.48054618909919,1892,19.29200029230304,77.39816222968327,79.72562183552613,63.35848721039546,65.0787403211537,77.16289652296699,79.49566798085318,63.27111173690012,64.99638323780583,0.2352657067162766,229.95385467294227,0.0873754734953422,82.35708334787262,166.11364,116.29789541032304,173412.57529412993,121407.95629059416,356.56505,231.21346148276564,371652.62916140346,240793.1658326624,364.37854,175.81131150712866,376875.7190132685,180868.06390084288,3080.55596,1410.4120452092975,3180341.284671837,1436812.2320565607,1141.54001,505.56106758764327,1179025.0858640166,515101.6041043974,1853.82342,774.4359758943236,1893294.69365598,773166.7652179964,0.37805,100000,0,755062,7882.389786096815,0,0.0,0,0.0,30476,317.5559290538777,0,0.0,33379,344.95933855999,1578526,0,56616,0,0,6460,0,0,60,0.6263636458539946,0,0.0,1,0.0104393940975665,0,0.0,0.06027,0.1594233566988493,0.3139206902273104,0.01892,0.3311790668348045,0.6688209331651954,24.35506745383531,4.397195430832933,0.3182978723404255,0.2395744680851063,0.2197872340425531,0.2223404255319148,11.371676089849116,5.796570717982993,20.03056693157384,12120.36857935043,53.48043068046155,13.39740440862314,17.043522862900836,11.562763588037384,11.47673982090018,0.5606382978723404,0.7904085257548845,0.6931818181818182,0.5682478218780251,0.1157894736842105,0.7207425343018563,0.9230769230769232,0.855036855036855,0.7111111111111111,0.1608695652173913,0.5033227390927477,0.7236315086782377,0.6326905417814509,0.5284653465346535,0.1030674846625766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381560025115,0.004428814658667,0.0061173558414154,0.0082053781785685,0.0103085447059421,0.0123964418751399,0.0146532837417842,0.016936701628372,0.0189008878308932,0.0211581747493349,0.0232458072513805,0.0256744415141968,0.0277680718557951,0.0296621072240919,0.0317944699890719,0.0337619416473018,0.0358764806289763,0.0379717959352965,0.0398852700933219,0.0417907650011455,0.0563903497787795,0.0696370672523794,0.0828388097884208,0.0955574006537252,0.1073100278316606,0.1230364278314552,0.1350769459204344,0.1466272227129069,0.1575316131237183,0.1681553522984376,0.1805669237065437,0.1925198468493802,0.2043785310734463,0.214853010258147,0.2247354017606911,0.2353149445126741,0.2445475224120244,0.2529010929699096,0.2616881791166663,0.2693567224677674,0.2766518295855252,0.283284430052722,0.2898449520653332,0.295755745680255,0.3012927110517691,0.3062840117209623,0.311576447055882,0.3164482964582089,0.3205187946567256,0.3254777322062062,0.3251033238647837,0.3242035501656836,0.322959061527412,0.3230849175074698,0.3216323989386145,0.3195851091456242,0.3175879555759174,0.3175578271410785,0.3181383759429293,0.3186429195414594,0.3196574164111003,0.3197137717685663,0.3203273815753668,0.3208695652173913,0.3218960112937573,0.3246263807667316,0.3256511891279728,0.3271568290472768,0.3301535354942032,0.3334776789229194,0.3373395618848927,0.3411733754275191,0.3425943191000062,0.346897176506115,0.3488936607226216,0.3524804177545692,0.357685297691373,0.3565938511326861,0.3587555066079295,0.3657424990505127,0.0,2.311655187920772,54.25929476662135,182.8957258781303,253.7006454108017,fqhc8_80Compliance_implementation_low_initial_treat_cost,53 -100000,95868,44634,423.5302707890016,5931,60.63545708682773,4661,47.94091876329954,1818,18.494179496808112,77.3584022892406,79.6409269305436,63.35300198276878,65.04188266940841,77.1330586377663,79.42039504029196,63.26920855958655,64.9626452371515,0.2253436514743043,220.53189025163533,0.0837934231822359,79.23743225690316,167.35246,117.30067800610244,174565.27725622733,122356.21688791092,362.05271,235.1357497067016,377003.2336128844,244616.03424156297,371.50919,179.66740319435883,383352.6724245838,184178.6203274758,3044.57335,1405.6517102563469,3135028.94605082,1425468.2587060786,1130.77927,505.0445918072929,1164108.1382734594,511403.7132382997,1783.41748,754.1378542798274,1817127.070555347,749856.0340817462,0.37896,100000,0,760693,7934.785329828514,0,0.0,0,0.0,30819,320.7743981307632,0,0.0,33930,349.7934660157717,1566309,0,56190,0,0,6550,0,0,76,0.7823256978345225,0,0.0,1,0.0104310093044603,0,0.0,0.05931,0.1565072830905636,0.306525037936267,0.01818,0.3372410470531556,0.6627589529468444,24.434266200876024,4.303488635783385,0.3151684187942501,0.2458699849817635,0.2188371594078524,0.2201244368161339,11.416951641926849,6.0054376185140566,19.439648699887776,12142.817065564186,53.15301413270672,13.6718991278016,16.604872358733637,11.423133915137264,11.4531087310342,0.5745548165629694,0.7905759162303665,0.7052416609938734,0.5950980392156863,0.1257309941520467,0.732751784298176,0.9265402843601896,0.8798882681564246,0.7611336032388664,0.1282051282051282,0.5158823529411765,0.7113259668508287,0.648964896489649,0.5420439844760673,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021261731919934,0.00427597247976,0.0062886064650931,0.008417183644874,0.0106729009961374,0.012711303799143,0.014752027384979,0.0167168137079912,0.0189906374115557,0.021008188593218,0.0231453519915648,0.0252916692296651,0.0274114698874373,0.0290598993961712,0.0310699821721163,0.0330800363426117,0.0352221946375372,0.0372063136730611,0.0394105551747772,0.041240974635344,0.0555225436538962,0.0696748714948389,0.0827800699520388,0.0958136018564213,0.1075333375466093,0.1228081294629653,0.1358222241061399,0.1486735073634962,0.1595879810001601,0.1710098941974766,0.1833941704084159,0.1956519387810286,0.2072612641991412,0.2176303421138922,0.2275810512197535,0.2380025007469045,0.2471479073502024,0.2559023249539056,0.2638928275689962,0.2715516253923163,0.2786352276934469,0.2852748538011695,0.2912748975676764,0.2968075410150628,0.3026438947304443,0.3074921057825143,0.3124060338779192,0.3163661846212652,0.3210962743800366,0.3249318981248842,0.3230926917423026,0.3222695269981675,0.3205064933233689,0.3190806127319804,0.318794442295677,0.3164972323167272,0.3151620829040183,0.3143646136397258,0.3154329119121345,0.3166729165550615,0.3167559869579882,0.3179059330578676,0.3194767624677693,0.3205472103004292,0.3218692128237812,0.32232070910556,0.3234759388671098,0.3259590712810564,0.3285030901916966,0.3316207564320436,0.334589367594316,0.3370087048272224,0.3424425179042593,0.3443865829376627,0.3493416690347636,0.3512381863859313,0.3492800743149094,0.3519156699777012,0.3605032822757111,0.3663141993957703,0.0,2.648297434127802,54.75905560777238,179.51945359142655,249.93592777553243,fqhc8_80Compliance_implementation_low_initial_treat_cost,54 -100000,95735,44649,422.9801013213559,6085,62.38052958688045,4788,49.459445343918105,1819,18.666109573301306,77.38965647392791,79.75752404796032,63.34469261111818,65.09421570219138,77.16851619210559,79.53700314459864,63.26286534005518,65.01492743106282,0.2211402818223291,220.520903361674,0.0818272710630054,79.2882711285614,167.51284,117.32840805079918,174975.54708309396,122555.39567639754,362.31812,234.36542576103977,377895.64944899984,244242.73007827983,371.90229,179.51205959768825,384946.2161174074,184755.2924343449,3101.40706,1409.0937788974286,3207674.246618269,1439976.3695014657,1115.83021,489.8785817796644,1153926.0563012485,500101.08491903485,1771.11412,739.1133021059926,1819800.9296495533,746628.3560788523,0.37973,100000,0,761422,7953.433958322453,0,0.0,0,0.0,30870,321.8572100067896,0,0.0,34028,351.98203373896695,1568817,0,56294,0,0,6613,0,0,66,0.6789575390400585,0,0.0,0,0.0,0,0.0,0.06085,0.1602454375477313,0.2989317995069844,0.01819,0.3412448915435397,0.6587551084564602,24.514519741340106,4.308276564951047,0.3310359231411863,0.2424812030075188,0.2203425229741019,0.2061403508771929,11.28668640957562,5.932997783790805,19.290148114177907,12217.777201642755,54.25675350930613,13.93502656022164,17.908547316355538,11.682493134855182,10.730686497873776,0.570593149540518,0.7803617571059431,0.6914826498422713,0.5971563981042654,0.1013171225937183,0.7384855581576893,0.9207459207459208,0.8762376237623762,0.7372881355932204,0.1084905660377358,0.5092671799258626,0.6980874316939891,0.628281117696867,0.5567765567765568,0.0993548387096774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024511789968398,0.004450391816956,0.0065557799449963,0.0086961822134628,0.0107723763312887,0.0130442751822736,0.0153546558456785,0.0174355100499178,0.0194414915365115,0.0215573275464977,0.0236884724984112,0.0258194996252836,0.0276741197635569,0.0297585336971631,0.0320461249664789,0.0344350054773568,0.036665424121935,0.0387173076324553,0.0405749503725952,0.0425314661998833,0.0568913853767527,0.070880564365037,0.0842103054276091,0.0970742022703601,0.1092568173426868,0.1252987837123215,0.1378951835349034,0.1493668191976162,0.1600687732937495,0.170870329858877,0.1840351424972275,0.1967917099342333,0.2083668543845535,0.2196868644901707,0.2291503943851002,0.2392604074402125,0.2492585241843766,0.2586596258637155,0.2665820230578259,0.2734333890045528,0.280754690805674,0.2881248977493164,0.2939174417093088,0.299351317710702,0.3039352497906782,0.3084405590100351,0.3126070807748584,0.3162706132153437,0.3205675410005691,0.3246256853648249,0.3232905810545562,0.3220858474098712,0.3208629855700262,0.3194506556643922,0.3185575868914634,0.3170657219643293,0.3155860545827417,0.3165462923624955,0.317759864234196,0.3186310168018026,0.3198296226029053,0.3217952997074588,0.3222686716166469,0.3222977173816502,0.3218132747378729,0.3237100577914841,0.3235552283602798,0.3248481432776003,0.326271186440678,0.3290345621205507,0.3299594218757124,0.3308980375426621,0.3353044791142426,0.3394564480915455,0.3423973362930078,0.3456054230949041,0.3462118925445215,0.3563035251941844,0.3528776006484734,0.3561436672967863,0.0,2.16087872421978,56.4020150941538,180.87169482031155,258.81349223831666,fqhc8_80Compliance_implementation_low_initial_treat_cost,55 -100000,95765,44671,422.0539863206809,6104,62.48629457526236,4791,49.48572025270192,1902,19.44342922779721,77.34687979821054,79.70427359718612,63.33382307926016,65.08061353052616,77.11000995878979,79.47051756272823,63.24584559857456,64.99643323000379,0.2368698394207484,233.7560344578833,0.0879774806855948,84.18030052237668,166.59632,116.72809797582173,173963.6819297238,121890.14564383827,360.14689,233.2333014208547,375532.04197775805,243005.97443831744,371.51604,179.55865372741488,384670.61034824833,184933.2168115785,3121.75939,1437.7139623630142,3225957.6358794966,1467438.9415371106,1117.42543,496.47038976180966,1152389.766616196,503974.3327539385,1851.25254,776.7368648048283,1894694.575262361,778772.7391844871,0.3809,100000,0,757256,7907.440087714718,0,0.0,0,0.0,30673,319.7305905080144,0,0.0,34017,351.9866339476844,1573872,0,56577,0,0,6675,0,0,76,0.7831671278650864,0,0.0,0,0.0,0,0.0,0.06104,0.160252034654765,0.3115989515072084,0.01902,0.3415129728040012,0.6584870271959987,24.552236762973862,4.236687385556255,0.3243581715716969,0.2421206428720517,0.2231266958881235,0.2103944896681277,11.243915358076716,6.087617306285184,20.33559332728064,12326.975503692733,54.64713402808114,13.941522581174963,17.666531813277025,12.03998079179946,10.999098841829683,0.5689835107493216,0.7767241379310345,0.7014157014157014,0.5837231057062675,0.1101190476190476,0.7541478129713424,0.9223529411764706,0.8671171171171171,0.7300380228136882,0.1597938144329896,0.4981240981240981,0.6925170068027211,0.6351351351351351,0.5359801488833746,0.0982800982800982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021584046045964,0.004583620654687,0.0071776649746192,0.009339715641737,0.0115874501505656,0.01381845583593,0.0162911611785095,0.0183952633728052,0.0206804195375273,0.0228836466396363,0.0253032182658888,0.0274660396537738,0.0293288908084983,0.0312435617454365,0.033356038557599,0.0354776352378097,0.0375486703669952,0.0395352456040251,0.0416432774070147,0.0434764498224494,0.0573554892177942,0.0710086407096679,0.0847942792433838,0.0975614883329829,0.1103077571669477,0.1261425959780621,0.1391306191238353,0.1512806064407752,0.1623515857522322,0.1731916580083334,0.1862716623100009,0.1985929039997406,0.209588579747303,0.2200331993709592,0.230049217788715,0.2401996038902842,0.2498912934408134,0.2584594284686467,0.2669473254204207,0.2738517924636353,0.2806664352655328,0.2873337310918471,0.2940410675187881,0.299337097373563,0.3049610953982107,0.3098038733174201,0.3139758855313188,0.3197045399646567,0.3246978441471052,0.328149300155521,0.3271861506799564,0.3257080759866294,0.3248381649310441,0.3238715077349341,0.3231483817353495,0.32139305005126,0.3193556554212292,0.319705104838842,0.321039324882982,0.3213106562204415,0.3222494895187426,0.3225372721161071,0.3244002095337873,0.3252445658257035,0.3253757949508576,0.3257024750143896,0.3275127890028864,0.3298158036081008,0.3321957569573937,0.3342628371111023,0.3387680329745821,0.3390633315593401,0.3413832342900493,0.3445070851744629,0.3468796711509716,0.3499822464196946,0.3520954420312022,0.3503067484662576,0.3575842696629213,0.3517268757443429,0.0,2.1451258533626616,58.366730961661965,178.27343670678428,259.3649476310909,fqhc8_80Compliance_implementation_low_initial_treat_cost,56 -100000,95756,44862,424.9655374075776,5983,61.37474414135929,4710,48.63402815489369,1871,19.205062868123147,77.36211040614715,79.72417688247438,63.32787542470121,65.07558491473341,77.13679912562293,79.49909079502734,63.2447380409188,64.99468382482699,0.2253112805242239,225.08608744703903,0.0831373837824074,80.90108990641909,166.94326,116.90481731918382,174342.34930448222,122086.15368142344,360.38596,233.1929320908025,375804.0018380049,242975.71224964887,369.55872,178.61252790696702,382191.85220769455,183666.2499766743,3097.17641,1419.0275842520025,3199149.9122770373,1446754.8563672411,1143.33939,504.8076106217516,1180134.3101215588,513563.4129705711,1828.53044,763.0521173119904,1877565.270061406,770482.3237243139,0.38067,100000,0,758833,7924.652241112828,0,0.0,0,0.0,30690,319.90684656836123,0,0.0,33859,349.8788587660303,1570835,0,56443,0,0,6635,0,0,62,0.6474790091482518,0,0.0,0,0.0,0,0.0,0.05983,0.1571702524496283,0.3127193715527327,0.01871,0.3330143540669856,0.6669856459330143,24.446498979961053,4.405245987960136,0.3167728237791932,0.2358811040339702,0.227176220806794,0.2201698513800424,11.283599634141408,5.839540809819404,19.74360190944036,12253.148865745425,53.35745816557901,13.351365123766598,16.87220159857543,11.74844854154623,11.385442901690745,0.5673036093418259,0.801980198019802,0.7097855227882037,0.5560747663551402,0.1224686595949855,0.7323506594259116,0.9237875288683602,0.8686868686868687,0.7041666666666667,0.1409090909090909,0.5051154633148203,0.724188790560472,0.6523722627737226,0.5132530120481927,0.1175030599755202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002309960183581,0.0047356359137647,0.0070348188001218,0.0090939573447676,0.0115558720309241,0.0137593188577015,0.0158770623865559,0.0179081924364943,0.0201736178566681,0.0222208568853936,0.0245918451062433,0.0263060583026891,0.0282298718133371,0.0301725026277282,0.0322317632002642,0.0342727761465613,0.0363984674329501,0.0385337663280869,0.04047732895366,0.0427160802449846,0.0575875242688044,0.07141213148369,0.0846197407609379,0.0976830768907165,0.1106001476637485,0.1258301958627691,0.13818964877107,0.1501048530460608,0.1610880225638615,0.170964456119659,0.183891706781249,0.1953924730019261,0.2066617352710817,0.217219615178464,0.2261611270085846,0.2367852513322771,0.2461196596466936,0.2552487679740768,0.2633555311014555,0.2718902452990083,0.2789814814814815,0.2861788617886179,0.292798390437304,0.298721853192969,0.3040305050578649,0.310069016514666,0.3147763398332874,0.3197501335843871,0.3234704047424895,0.3275950769717836,0.3267120059255269,0.3252002311947816,0.3240142460971043,0.3220970537261698,0.3211783912140101,0.318922392032677,0.3176771989752348,0.3177683444511825,0.3193907280254885,0.3211337271368585,0.3220813651724202,0.3232835762188526,0.3243716758786109,0.3253038870831292,0.3260146055309469,0.3275450345221409,0.3279469297499575,0.3318217357310399,0.333821887213847,0.3386034775066041,0.3430765755590693,0.3467199327165685,0.347125,0.3468190705369228,0.3517676533358077,0.3524416135881104,0.3547752383835326,0.3560365369340746,0.3586281393464758,0.3661160199769496,0.0,2.025271794842224,56.69011792187631,171.93232085365824,257.9186347960819,fqhc8_80Compliance_implementation_low_initial_treat_cost,57 -100000,95758,44739,423.3588838530462,6109,62.56396332421313,4799,49.51022368888239,1912,19.559723469579566,77.32840490063373,79.68804510839489,63.31625382636724,65.06424548595457,77.08995805372567,79.4542598327537,63.226832497604704,64.97983721679888,0.2384468469080616,233.785275641182,0.0894213287625333,84.40826915568778,166.74834,116.812213369945,174134.4639612356,121986.30550993134,358.70452,231.94494757308468,373996.7626725704,241624.41734970655,364.02081,175.83042706261256,377042.72227907856,181155.59070444223,3137.29934,1434.8578548929029,3237710.990204474,1460023.577224623,1132.14211,502.4346865473601,1164489.5570082918,507197.1237243594,1868.09578,787.6263125074732,1912090.5825100772,786731.6402577796,0.38088,100000,0,757947,7915.202907328892,0,0.0,0,0.0,30648,319.4302303723971,0,0.0,33253,344.06524781219326,1572361,0,56412,0,0,6572,0,0,66,0.6892374527454626,0,0.0,1,0.0104429917082645,0,0.0,0.06109,0.1603917244276412,0.3129808479292846,0.01912,0.3405751797436699,0.6594248202563301,24.160167085225968,4.30289975969052,0.3094394665555324,0.2448426755574078,0.2292144196707647,0.216503438216295,11.203680226892535,5.850007683334771,20.27991033248944,12297.807199683746,54.35637624281357,13.999553571220874,16.746163853362443,12.272519673595356,11.338139144634892,0.5678266305480308,0.7974468085106383,0.7003367003367004,0.5790909090909091,0.1068334937439846,0.7384615384615385,0.936768149882904,0.8707124010554089,0.7276119402985075,0.1548672566371681,0.5044298370963133,0.7179144385026738,0.6419529837251357,0.53125,0.093480934809348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021888268496093,0.0047161200024341,0.0068025829508995,0.0090347364783837,0.0111187971760493,0.0133739406779661,0.0158773861967694,0.0177951566137134,0.0199043120897994,0.0219563125678137,0.0241404760440371,0.0260696353947408,0.0280957229095321,0.0301276174977082,0.0323203137093029,0.034471709424679,0.0365919301078608,0.0388500549667088,0.0407261919607598,0.0429321334833145,0.0571368926465215,0.0709758393473486,0.0846186916083842,0.0972428074380078,0.1088314945362964,0.1250251043813751,0.1370877081344787,0.1490319627899056,0.1597641353230854,0.170186068958121,0.1834564922334489,0.1961802737650814,0.2079583909121573,0.2178858942947147,0.228794433986151,0.2392236365449167,0.2484707090551884,0.2580242048972699,0.2662707110167278,0.2740016505433038,0.2811302626552606,0.2874474980403168,0.2942527918901955,0.3002052008208032,0.3042442220952427,0.308868501529052,0.3140417100362423,0.3189805670595731,0.3238861145340165,0.3284646469982303,0.3279676440849343,0.3268152962723254,0.3261979298869052,0.3249819390261523,0.3247353710751665,0.3220505273485406,0.320376503398989,0.3216158892487792,0.3221707229472028,0.3233527582138643,0.3244949968144511,0.3252005215535975,0.326490509239903,0.3265721441989444,0.3287157287157287,0.3308323563892145,0.33339031826082,0.3364600326264274,0.3364701766660836,0.340228245363766,0.3416261860444,0.3451570335180786,0.3491597426126069,0.3509262759924386,0.3515887850467289,0.3526439482961222,0.3526187576126675,0.3559528646891507,0.3660689655172414,0.3684210526315789,0.0,2.3236263559593926,56.97915262426412,177.2644329484616,261.96818147410795,fqhc8_80Compliance_implementation_low_initial_treat_cost,58 -100000,95722,44733,422.1913457721318,6179,63.22475501974469,4876,50.28102212657488,1919,19.56707966820585,77.31464774318667,79.68115636288495,63.30648041847581,65.05658947384391,77.07373211937364,79.44375999254414,63.21670889028383,64.97105816050842,0.2409156238130236,237.3963703408037,0.0897715281919744,85.53131333549402,165.45474,115.9270249903225,172849.23006205467,121108.02635791406,362.53968,234.58435668816327,378068.4377677023,244394.5497616708,373.34293,180.86312876236877,386272.1840329287,186007.3285271627,3180.77381,1459.6268990540532,3281889.774555484,1483821.8294113723,1155.53923,513.3467911102957,1190119.0008566473,519238.55509209033,1880.17438,794.4979232506521,1919837.738450931,791524.9469748872,0.38115,100000,0,752067,7856.783184638851,0,0.0,0,0.0,30825,321.31589394287624,0,0.0,34154,353.0431875639874,1574325,0,56507,0,0,6630,0,0,80,0.8357535362821504,0,0.0,0,0.0,0,0.0,0.06179,0.1621146530237439,0.3105680530830231,0.01919,0.3462372251471043,0.6537627748528956,24.29198377086613,4.392705747690168,0.3373666940114848,0.2305168170631665,0.2141099261689909,0.2180065627563576,11.180135974340692,5.735828846366061,20.57147231630052,12352.319616779652,55.438801194740144,13.50331282219698,18.591399710949336,11.612714633586434,11.731374028007398,0.5631665299425759,0.7998220640569395,0.6911854103343466,0.5574712643678161,0.1204139228598306,0.71781033153431,0.9176755447941888,0.8397129186602871,0.7063829787234043,0.1515151515151515,0.5071248952221291,0.7313642756680732,0.6405867970660146,0.5142150803461063,0.1117788461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023299397254723,0.0046739868803925,0.0072575569946608,0.0096331673610405,0.011872424843583,0.0143139492236847,0.0165372726252537,0.0189091503134508,0.0210271298018931,0.0232689079071291,0.0250376795546122,0.0271996385702991,0.0291307075922935,0.0314164717519654,0.0337328007101642,0.0359036916810536,0.0380652576860548,0.0401672685012244,0.0422667013257083,0.0442346960036671,0.0580723973396535,0.0723369514020452,0.0862340278214892,0.0990040699569867,0.1111907875311089,0.1272375269772756,0.1395817853731026,0.1509343555342597,0.1618527387009877,0.1722343245302456,0.1854248218002221,0.1979717430874577,0.208501737605264,0.2193037246457806,0.2291163662422137,0.2395687606866076,0.2493624446333497,0.2585040151583506,0.267778333864143,0.2754953195888129,0.2822237426507253,0.2886524240897212,0.2938749377534324,0.2997971017972698,0.3051663747810858,0.3104218331667715,0.3153664125004695,0.3196975868037878,0.3235678684704511,0.3277153558052434,0.327072224915172,0.3258814951368157,0.3251860919976923,0.3239902381261823,0.3230293663060278,0.3216736094094584,0.3189289333671142,0.3195261411061089,0.3201436388508892,0.3214929904455755,0.3222522218472269,0.3230614140855092,0.3242881632311745,0.3246814113866137,0.3254479081608146,0.3279225846730139,0.3283760683760683,0.3314820044557406,0.335118485071231,0.3377585796940636,0.3404866047020229,0.3438346703501036,0.3491842671050967,0.3560878549016606,0.362176459474778,0.3647940966436562,0.3670106268288926,0.3696457990115321,0.3671766342141864,0.3604060913705584,0.0,2.56034542937967,56.57537964029528,187.64411781553912,263.4836225906178,fqhc8_80Compliance_implementation_low_initial_treat_cost,59 -100000,95804,44539,421.0784518391716,6143,62.79487286543359,4832,49.74740094359317,1870,19.080622938499435,77.3504688262772,79.68308191220724,63.33176974345843,65.06000655546173,77.1154798537972,79.45029287880028,63.24468439278705,64.9766644770465,0.2349889724799965,232.78903340695933,0.08708535067138,83.34207841522812,165.8646,116.21799644668393,173129.09690618346,121308.0836360527,360.38392,233.6597634533842,375480.13652874617,243205.74657987585,371.97215,180.7206064923384,383295.540895996,184975.83495442785,3147.62468,1444.1132224362077,3242868.9825059497,1464747.5496181834,1126.47466,504.402542797198,1156805.874493758,507493.12098896416,1828.87064,766.8952163433294,1867158.6363826145,765951.849843604,0.38074,100000,0,753930,7869.504404826521,0,0.0,0,0.0,30785,320.6024800634629,0,0.0,34064,350.77867312429544,1574064,0,56572,0,0,6565,0,0,67,0.6680305623982297,0,0.0,0,0.0,0,0.0,0.06143,0.161343699112255,0.3044115253133648,0.0187,0.3470560820257884,0.6529439179742116,24.394313608951645,4.327618622014061,0.322226821192053,0.2425496688741721,0.2214403973509933,0.2137831125827814,11.327652892036786,5.992766398567394,19.929398433246835,12275.390042581184,54.88982805138542,14.090411670785697,17.616040544681248,11.903081160858278,11.280294675060212,0.5709850993377483,0.7841296928327645,0.6929993577392421,0.5990654205607476,0.1161665053242981,0.7413394919168591,0.9225512528473804,0.8476658476658476,0.725,0.1830985915492957,0.5083498443249364,0.7012278308321964,0.6382608695652174,0.5626506024096386,0.098780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603541544259,0.004603388661874,0.0069318989140363,0.0090527620576491,0.0114022417966922,0.0134036788820761,0.0155117026158788,0.0179111183726819,0.0203263670197537,0.0224290072272382,0.0247226266893624,0.0268732735693088,0.0291344008062608,0.0311547334596687,0.033117090729071,0.0352242198801405,0.0371627916606281,0.039010880726903,0.040905831367373,0.0429857893914944,0.0577121694225653,0.0716018402342116,0.084968142186452,0.0974615449272926,0.1094031501870094,0.1249114946051338,0.1371815126228621,0.1487761549671833,0.159633184229911,0.169436675560699,0.1823024276859504,0.1949816758737743,0.205698952765828,0.2162203519510329,0.2262911831032396,0.2360214041190742,0.2460940987411838,0.2552798874824191,0.2633210332103321,0.272155668048652,0.2795589443358132,0.2865328172686771,0.2933806566104702,0.3000071883835721,0.30548163270266,0.3106667982337124,0.3160974265166512,0.3202191361956937,0.3245159283548044,0.3282742223102833,0.32742992797216,0.3267725217774837,0.3264822468930299,0.3254246115563786,0.3246394052044609,0.3228812260536398,0.3212304668927699,0.3213616489693941,0.3229086559001965,0.3229403041077778,0.323601565572389,0.3246830193150847,0.3259367804061126,0.3258231073559981,0.3271590089006495,0.3272528274352426,0.328054813214306,0.3313678135683593,0.3351955307262569,0.338586418530984,0.3395909853534666,0.3412106793550092,0.3430057658561042,0.3432091300733126,0.3445566778900112,0.3485861785756189,0.3517702476827229,0.3491776975531488,0.3539295392953929,0.3482074752097635,0.0,2.702594650634478,56.35822254614069,183.8214411195198,261.3103725658348,fqhc8_80Compliance_implementation_low_initial_treat_cost,60 -100000,95729,44321,420.3637351272864,5954,60.984654597875256,4737,49.03425294320425,1956,20.129741248733403,77.30949638025908,79.6691157251291,63.31695901961641,65.05935816670663,77.06698053488131,79.42512737180492,63.22775461730952,64.9711623724003,0.2425158453777669,243.988353324184,0.0892044023068976,88.19579430632984,167.4552,117.31227320907102,174926.3023744111,122546.22236633729,363.27824,235.9973636198683,379009.2970782104,246059.7754856465,369.80347,178.76433031565506,383311.13873538846,184393.40887601263,3126.66882,1442.012389741987,3238563.946139623,1479413.9504887103,1163.70524,512.9209137644651,1205442.1544150675,525622.7410340284,1921.4553,802.3873388678547,1979651.4744748196,816482.4536142343,0.3776,100000,0,761160,7951.195562473232,0,0.0,0,0.0,30964,322.98467549018585,0,0.0,33777,349.85218690261047,1563217,0,56168,0,0,6608,0,0,80,0.8356924234035663,0,0.0,0,0.0,0,0.0,0.05954,0.1576800847457627,0.3285186429291233,0.01956,0.3449606172641054,0.6550393827358946,24.09952351890505,4.339175032300707,0.3107451973823095,0.2332700021110407,0.2237703187671522,0.2322144817394975,11.39282970277294,5.892328623282634,20.81362004748438,12119.096535496908,54.2092246774036,13.123263308757542,16.895893129539292,12.02157899894021,12.16848924016655,0.5651256069242137,0.7728506787330317,0.7167119565217391,0.5830188679245283,0.1363636363636363,0.7313432835820896,0.9175824175824177,0.8699763593380615,0.7410358565737052,0.1829787234042553,0.504041570438799,0.7017543859649122,0.6549094375595805,0.5339925834363412,0.1236994219653179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022888161959064,0.0047035925715675,0.0068785001217433,0.0091208255464369,0.0112235042952269,0.0135576658829277,0.0154512561789736,0.0173527820592648,0.01940844609787,0.0213793738678347,0.0233704732520833,0.0255559890753023,0.0277634961439588,0.029617729444719,0.0317537255710823,0.0338471711369178,0.0359752437333112,0.038050298159191,0.0398781932694506,0.041832461823712,0.0561037496475895,0.0701936159079016,0.083430345362825,0.0967772462015666,0.1092810898584955,0.1245558375634517,0.1373763951958579,0.148869587431345,0.1600440086308188,0.1702960318226168,0.1832792924777283,0.194835985709646,0.2053363511719515,0.2154613902994221,0.2252562733288556,0.2357329726853494,0.2458976106165034,0.2547851067425224,0.2627327569557264,0.2694494760736478,0.2761372058551047,0.2834907371648585,0.289074435956653,0.2952672305200647,0.3006855309218203,0.3058420091774806,0.3106944374906123,0.3148131644280348,0.3190320030071679,0.3231243060328874,0.3222234211875152,0.3206041646569188,0.3195477578443688,0.3187065972222222,0.3179382609472211,0.3170795346410044,0.3148918601327532,0.3159930858506873,0.316462421801354,0.3173507797096254,0.3175922096477046,0.3182170311661998,0.3198257905699678,0.3205441932514649,0.3222007255139056,0.3229738921153142,0.3222298731852872,0.3248626807247932,0.3268052131032053,0.3304220096073683,0.3321033210332103,0.3361697601446577,0.3373288751498328,0.3388871904616325,0.340702947845805,0.3405771286070538,0.3429973922380733,0.3471481329503488,0.3511724137931034,0.3558023745691306,0.0,1.7012925763057956,56.39434551974549,187.9137191800877,250.44108967878864,fqhc8_80Compliance_implementation_low_initial_treat_cost,61 -100000,95738,44640,424.0740353882471,6061,62.14878104827759,4772,49.30121790720508,1878,19.24000919175249,77.40440741590693,79.7611049709451,63.3594678928421,65.0992320373492,77.1715114516703,79.52864501643597,63.273161760427726,65.01557976687661,0.2328959642366328,232.4599545091246,0.0863061324143714,83.65227047258372,166.947,116.89767377149462,174379.0344481815,122101.64592063196,359.71218,232.3827770087738,375172.8258371807,242175.05797987612,365.7802,176.6867431936176,378301.5521527502,181672.16687282608,3147.71153,1436.9102559791445,3254587.561887652,1467625.985480315,1123.42533,498.6422774980505,1157480.0288286784,504883.3039107252,1841.46178,770.9125055604857,1888565.6479140988,776564.4078705771,0.38117,100000,0,758850,7926.319747644613,0,0.0,0,0.0,30724,320.3534646639788,0,0.0,33556,346.7693079028181,1574782,0,56485,0,0,6473,0,0,59,0.6058200505546387,0,0.0,0,0.0,0,0.0,0.06061,0.1590104153002597,0.3098498597591156,0.01878,0.3364280094413847,0.6635719905586153,24.27135223648713,4.392995093879886,0.316848281642917,0.2376362112321877,0.2229673093042749,0.2225481978206203,11.279215216360958,5.901886235463252,19.89510946110418,12257.417514044037,53.990102523395706,13.670422044329442,17.129565247049,11.788502037751597,11.40161319426566,0.5699916177703269,0.791005291005291,0.7123015873015873,0.5864661654135338,0.1148775894538606,0.764484574868322,0.9342105263157896,0.8867469879518072,0.7169811320754716,0.1658031088082901,0.4949172233517281,0.6946902654867256,0.6463081130355515,0.5431789737171464,0.1035673187571921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464659248534,0.0043780086141373,0.0064925842514253,0.0086426649063118,0.0106148261873049,0.0128562703583061,0.0149910828025477,0.0171831474546697,0.019280481450072,0.0213767485648209,0.0233578288185796,0.0254744383204524,0.0275835835012542,0.0296956275428748,0.0315540742728013,0.0334422230032873,0.0355219552609776,0.037595310960112,0.0395036323387272,0.0413094878498442,0.0559406974316141,0.0705338175120608,0.0835719755378628,0.0962519055879724,0.1085661884835516,0.1244951043627212,0.1365907475574697,0.1488077496274217,0.1598935965643228,0.1704285913423905,0.1828548661512286,0.1954708243619012,0.207628639483158,0.2180464282199599,0.2277793057923978,0.2382207359340915,0.2482678597328989,0.2575360640438952,0.2649850857991856,0.2734140701907007,0.280746561886051,0.2883394041281404,0.2941718226042601,0.2999450365626344,0.305508454047769,0.3108880232972488,0.3149318215873333,0.319388402486994,0.3233733197319319,0.3277651360700803,0.3267264285139161,0.3262265393480408,0.3254030672434133,0.3234226447709594,0.3228323143199751,0.320441398678246,0.3186886074350147,0.3195026178010471,0.3208035410282601,0.3224647348666773,0.323620663875598,0.3245163837347019,0.3252483010977522,0.3265174151540828,0.3268613068699362,0.3281030444964871,0.3297772733721095,0.333176706449895,0.337134860941053,0.3405754086034271,0.3446507194407879,0.3480057206419831,0.350307287093942,0.352107337780473,0.354015278554127,0.3534381600563248,0.3552912473315035,0.3608599557966646,0.3735473159933591,0.3795677799607073,0.0,2.1691738011566684,58.29461863620577,171.20498941239777,260.1404831256364,fqhc8_80Compliance_implementation_low_initial_treat_cost,62 -100000,95749,44937,424.9861617353706,6040,61.74477018036743,4801,49.556653333194085,1908,19.58244994725793,77.33232137485312,79.69786684248916,63.31916690730778,65.070965521559,77.09501618825803,79.46039296074288,63.23026279131887,64.98397276755384,0.2373051865950941,237.4738817462827,0.0889041159889103,86.99275400516626,166.67618,116.71705920445297,174076.15745334156,121898.98505932488,362.44269,235.2214766242688,377955.7802170258,245086.2845818429,372.9197,180.67124596517007,385658.8162800656,185773.40192037783,3147.70525,1445.9120010204254,3252191.417142738,1474843.0908107914,1151.55939,514.2164631784209,1188956.3964114506,523322.5956540956,1863.41246,791.759330104952,1914861.43980616,801551.6215974642,0.38056,100000,0,757619,7912.552611515525,0,0.0,0,0.0,30844,321.5281621740175,0,0.0,34072,352.00367627860345,1570099,0,56336,0,0,6529,0,0,67,0.6997462114486835,0,0.0,1,0.0104439733052042,0,0.0,0.0604,0.1587134748791255,0.3158940397350993,0.01908,0.3331212217626471,0.6668787782373529,24.50238978704919,4.272648810876299,0.3290981045615497,0.2334930222870235,0.2162049573005623,0.2212039158508644,11.168749707619217,5.946078337373578,20.44651797817401,12303.245568686916,54.48303167201343,13.372998848399892,17.874527742621638,11.60781255986191,11.627692521129992,0.5665486357008956,0.7743086529884032,0.709493670886076,0.5761078998073218,0.1252354048964218,0.7388932190179267,0.9238578680203046,0.85785536159601,0.7677165354330708,0.1923076923076923,0.503695281409892,0.6932599724896836,0.6590330788804071,0.514030612244898,0.1062801932367149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0046962642891194,0.0072293071237105,0.0097568908041304,0.0120350777244241,0.0142215340104522,0.0166231541160153,0.018713820457585,0.0208373805020193,0.023013923013923,0.0250750920069299,0.0270725322108721,0.0290902734218346,0.0312377695841143,0.0333041011091049,0.0353374055584839,0.037565880074966,0.0395057629861709,0.0417134306023194,0.0434922982388535,0.0574769038050002,0.0713149744705783,0.0852264384452415,0.0983765141318977,0.1111439145517234,0.1270069595752332,0.1394571537710623,0.151486444773228,0.1622663676172167,0.171826243606378,0.1842867760316246,0.1960436325859233,0.2077372469239221,0.2186553206383234,0.2286843031957038,0.2392380530483415,0.2487249595446682,0.2571971999009611,0.2656035412292151,0.2742258829459407,0.2815538475784795,0.287558067422567,0.2936484455437342,0.2992317556959142,0.3047592439628784,0.3101225254542317,0.3141112279120989,0.3187817904374364,0.3235636796727338,0.3269235841840099,0.3265556034018732,0.3248232413546452,0.3240446084091357,0.3230078271669122,0.3213993909232712,0.318866538072931,0.3166862142200526,0.3176783340717767,0.3187889125799573,0.3199721468361662,0.3211329466749253,0.3221309040499059,0.3229164480449976,0.3235853915224255,0.3248752981999566,0.3259599332220367,0.3274477416415105,0.331915295897145,0.3362226277372263,0.3376194267515923,0.3398597577634095,0.3426330950602795,0.3438647587691528,0.3457986720598336,0.3470055124731384,0.3493905297702766,0.3493975903614458,0.3539752297243308,0.3588907014681892,0.3686618375905451,0.0,2.2511516828102724,56.06655298605746,179.54106099933497,264.99018034944,fqhc8_80Compliance_implementation_low_initial_treat_cost,63 -100000,95720,45092,427.5595486836607,6137,62.703719180944425,4806,49.56122022565817,1856,18.96155453405767,77.41699606751023,79.77086489427053,63.36600846061516,65.10087021220534,77.17557151548444,79.53309741881039,63.27428597034961,65.01376717685837,0.2414245520257907,237.76747546014576,0.0917224902655533,87.10303534697061,166.24102,116.42663006588604,173673.81947346427,121632.04833460724,362.33934,234.81671954483383,377890.6080234016,244666.25903137677,371.02577,179.63731040727936,384122.9314667781,184981.394612978,3163.31314,1452.6449879851366,3263009.214375261,1475881.36991761,1158.81937,511.367742242031,1193263.4872544922,516939.9816189748,1825.0596,782.9690406310333,1865824.3836188884,780877.2697298744,0.38268,100000,0,755641,7894.264521521103,0,0.0,0,0.0,30895,322.0748015043878,0,0.0,33929,350.9611366485583,1573818,0,56497,0,0,6592,0,0,66,0.6790639364814041,0,0.0,0,0.0,0,0.0,0.06137,0.1603689766907076,0.3024278963663027,0.01856,0.3357287923761912,0.6642712076238088,24.40770458246188,4.342392070800156,0.3183520599250936,0.2392842280482729,0.2134831460674157,0.2288805659592176,11.029017703760164,5.599359065946032,19.781707304323486,12308.990032985152,54.27015875834413,13.813172653807866,17.153739228424506,11.255992995935582,12.047253880176177,0.55638784852268,0.7852173913043479,0.7052287581699347,0.550682261208577,0.1154545454545454,0.7116704805491991,0.9334916864608076,0.8670076726342711,0.6733067729083665,0.1290322580645161,0.498140200286123,0.6995884773662552,0.6496927129060579,0.5109677419354839,0.1115023474178403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020648191258932,0.0041131001225825,0.0064305420318078,0.0087734440845256,0.0108792907109158,0.0127852765732201,0.0151261874668732,0.0175239844866299,0.0195290943650745,0.0216272622177662,0.0236606959872115,0.025924177425645,0.0278894291559155,0.0299787851949496,0.0319499035416215,0.0342465045624115,0.0363402942424964,0.0381683348026759,0.0405866090173987,0.0426611382554251,0.0578585748893158,0.0716684978810233,0.0849831607440747,0.0978270015566494,0.1098137248697339,0.1257919509228409,0.1386001018416362,0.150626457031541,0.1610766222526151,0.171067590467406,0.183549074931616,0.1952974528771451,0.2066157926776241,0.2178026371849634,0.2279381058091742,0.238407737765875,0.2482996989630951,0.2574675945183303,0.26619488296135,0.2738157924860917,0.2816883492338826,0.288482893244965,0.2951825749692555,0.30083218583488,0.306279735896689,0.3110758012465203,0.3163811429285982,0.3216578729896382,0.3265390584583549,0.33004127164124,0.3286067911532045,0.3268279274326553,0.3259758724081139,0.3256549950143788,0.3245362600804954,0.323297688436061,0.3208605139707159,0.32116501677166,0.3217318787548717,0.3227939216209011,0.3245496251538547,0.3256390090444357,0.3259889834752128,0.3260594209017577,0.325238072450591,0.3275110303659486,0.3289108124964563,0.3318147778332501,0.3361315266989446,0.3391808254819253,0.3418332806787922,0.3415932936152264,0.3449887808526552,0.347911771393921,0.3544091628643263,0.3573352066502751,0.3593939393939394,0.36,0.3679676985195155,0.3685981308411215,0.0,2.44660147394854,57.14194438200923,174.62796243810527,263.1365903796544,fqhc8_80Compliance_implementation_low_initial_treat_cost,64 -100000,95699,44718,423.7348352647363,5953,61.22321027387956,4686,48.41220911399283,1839,18.8298728304371,77.3508434030137,79.74061334309339,63.31502979323547,65.08243031799863,77.12358046057193,79.5183175974167,63.22964961668681,65.0022769783604,0.2272629424417687,222.2957456766892,0.0853801765486608,80.15333963822968,166.51404,116.62978902325968,173997.450339084,121871.27162791645,357.18556,231.98491658408992,372677.5514895663,241851.36081262064,367.82579,177.8936703937742,381669.70396764856,183805.99167166583,3065.91198,1397.1851862999165,3168123.825745305,1424433.3921398509,1117.33622,490.0225582153721,1155189.6153564823,499708.1582012281,1802.16204,755.3869220145294,1846051.9754647384,755221.6246019292,0.38091,100000,0,756882,7908.97501541291,0,0.0,0,0.0,30435,317.4432334716141,0,0.0,33643,348.8437705723153,1572234,0,56366,0,0,6350,0,0,62,0.6478646589828525,0,0.0,0,0.0,0,0.0,0.05953,0.1562836365545667,0.3089198723332773,0.01839,0.33263429585417,0.66736570414583,24.494024924117365,4.282042619236159,0.3137003841229193,0.2479726845924029,0.2148954332052923,0.2234314980793854,11.187673648843043,5.85630682476098,19.56701447683835,12227.198138904514,53.15067253047859,13.983347581320327,16.687424084154205,11.094730556101926,11.385170308902122,0.5529236022193769,0.7685025817555938,0.6877551020408164,0.5551142005958292,0.1222540592168099,0.716441620333598,0.9170506912442395,0.8337801608579088,0.6810344827586207,0.1590909090909091,0.492850889991246,0.679945054945055,0.6381039197812215,0.5174193548387097,0.1124546553808948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171632039061,0.0044721177150622,0.0065577764468221,0.0089133262866899,0.0111701153634865,0.0135795929178297,0.0156994358812188,0.0178932532630675,0.0199629784927542,0.0222035599434669,0.0241308583735001,0.026180645426347,0.0284403575359233,0.0304453991901832,0.0323236493111099,0.0342186062379175,0.036168294982439,0.0380108157482276,0.0402463254033474,0.0424285386652211,0.0566993617665799,0.070514565750068,0.084669969768223,0.0972099482388587,0.1094994461733213,0.1253160673289533,0.1379669040770186,0.1492907650366331,0.1609175743711986,0.1715371159356521,0.1835135339075317,0.1961089999675208,0.2075956254420806,0.2179175695493247,0.2281174993944465,0.2375999379026624,0.2470075926753014,0.2558521838019209,0.2651575384475591,0.27264389953113,0.2792835558231351,0.2861525132011849,0.2922338724009241,0.2979103689842138,0.3033003099738649,0.3095605005239474,0.3140429685056119,0.3187924585909472,0.3234121848956985,0.3267352863552388,0.3263288342897169,0.3249549438001293,0.3245925175238577,0.3228363510352595,0.3219067388242271,0.3196185119520695,0.3175024488893102,0.3177345144335467,0.3177732676138011,0.3192633753651065,0.320109132360361,0.3213294763563374,0.3213548723293382,0.3218495618522308,0.3216413446584519,0.3216248444628785,0.3223338790718681,0.3258986979004423,0.3290452680620263,0.3323546682325308,0.3340518209169698,0.3356808745466968,0.336905058559681,0.3373439273552781,0.3375796178343949,0.3413621262458471,0.3413373860182371,0.3461844197138314,0.3451160280626011,0.3504208110175975,0.0,2.068556545836856,55.30934117243242,179.31657868677507,250.50767856351905,fqhc8_80Compliance_implementation_low_initial_treat_cost,65 -100000,95724,44342,420.4170323011992,6017,61.60419539509423,4697,48.50403242655969,1844,18.898081985708917,77.26691653433518,79.62637078062646,63.2951211478972,65.03928587444447,77.03710996099746,79.39896892424446,63.2106457210462,64.95789138525359,0.2298065733377257,227.40185638200217,0.0844754268510001,81.39448919088466,165.92048,116.12384089568488,173332.16330282897,121311.10368944558,354.14013,229.73855040968903,369403.76499101584,239445.1552480977,363.39804,176.5470441506794,376126.3528477707,181689.83392414107,3057.99372,1408.4110241178348,3160419.967824161,1437150.259201282,1139.33471,507.94521970377366,1174641.4692240192,515047.7515605005,1809.45842,754.7264137954987,1856727.9888011368,760663.927489878,0.37828,100000,0,754184,7878.734695583134,0,0.0,0,0.0,30169,314.59195186160207,0,0.0,33341,344.8247043583636,1576814,0,56640,0,0,6521,0,0,58,0.605908654047052,0,0.0,0,0.0,0,0.0,0.06017,0.1590620704240245,0.3064650157885989,0.01844,0.333755942947702,0.6662440570522979,24.426024995051687,4.315610157082264,0.3159463487332339,0.2476048541622312,0.2103470300191611,0.2261017670853736,11.45983818726571,6.020440323437953,19.75452818897533,12200.296642248535,53.64923214674921,14.001591695267068,16.833869097211814,11.212930622106551,11.60084073216378,0.5703640621673408,0.7996560619088564,0.6994609164420486,0.5657894736842105,0.1431261770244821,0.7595129375951294,0.9260869565217392,0.8822055137844611,0.726530612244898,0.2,0.4968962459355601,0.716927453769559,0.632258064516129,0.5127860026917901,0.1291079812206572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022687679779605,0.0045524135903233,0.006768275358201,0.0090815818612163,0.011187274983219,0.0132772647205563,0.0156379020337428,0.0178642521003256,0.0200259652637927,0.0223652964297412,0.0245815095384047,0.0268264136996427,0.0286595711861792,0.0306423038892551,0.0324567466908768,0.0341526947964689,0.0362235546304638,0.0380341747331071,0.0401438609621221,0.0419254011252344,0.056124047196408,0.0703362954124407,0.0832546328359462,0.0956263743200732,0.1082181664732566,0.1235185812240751,0.13574021782977,0.1478578502891343,0.1588918944926172,0.1691997252275459,0.1820759089782147,0.1941278439869989,0.2057318321392016,0.2162082256580964,0.2252253244893012,0.2363771557942867,0.2457901916497081,0.2548191210103536,0.2628481846685145,0.2706680728139758,0.2781043860664275,0.2859299658255699,0.292067250769595,0.2977815085741696,0.3032708178867915,0.3080101128445458,0.312893968444929,0.317364888102001,0.321769016276506,0.3261761126104672,0.3255345877966742,0.3240582191780822,0.3231195409446816,0.3221377362589615,0.3217291564254964,0.3199060138829166,0.3189126497410314,0.3194490212878139,0.3211254565094388,0.321358858186637,0.3217546496336652,0.3222378620566603,0.3232100012627857,0.3225835409232703,0.3244647431250302,0.3260590836538713,0.3281684089932694,0.3316455696202531,0.3354414638479304,0.3368785754572556,0.3409781707654048,0.3465857196583033,0.3513667787150377,0.3506265281173594,0.3528134441087613,0.3558718861209964,0.3549670901576611,0.3560866923232732,0.3604298704877376,0.3677893921796361,0.0,2.225113868202104,57.49455092874208,175.1969436483524,252.9417537016679,fqhc8_80Compliance_implementation_low_initial_treat_cost,66 -100000,95701,45087,426.4009780462064,6045,61.94292640620266,4739,48.91275953229329,1831,18.73543641132277,77.288290147924,79.6581523547608,63.294707477804174,65.04425726896368,77.06003155382544,79.43196268430222,63.20964677339117,64.96271020691776,0.2282585940985626,226.18967045858085,0.0850607044130029,81.54706204591378,165.22902,115.83396148846212,172651.29935946333,121037.35748682052,359.90287,233.49922724984103,375487.1004482712,243405.259349266,370.10319,179.4219654419295,383340.4457633672,184838.59802812335,3097.81888,1408.687256586634,3199140.259767401,1434130.8832578913,1106.14929,492.08125003673047,1136358.7005360443,494736.0523619597,1791.107,751.2762068467641,1833812.8964169647,752424.4147457704,0.38282,100000,0,751041,7847.786334521061,0,0.0,0,0.0,30673,319.892164136216,0,0.0,33866,350.4770065098589,1571556,0,56409,0,0,6619,0,0,62,0.6478511196330238,0,0.0,2,0.0208984232139685,0,0.0,0.06045,0.1579071103913066,0.3028949545078577,0.01831,0.3421135646687697,0.6578864353312303,24.50586741666065,4.31035262815143,0.327917282127031,0.2357037349651825,0.2190335513821481,0.2173454315256383,11.248892728068146,5.942143975829568,19.39833798762289,12336.292060758657,53.45788508751146,13.436940144192702,17.350574137340917,11.413971500589865,11.256399305387996,0.5604557923612576,0.7726051924798567,0.6808236808236808,0.5924855491329479,0.116504854368932,0.7375201288244766,0.8788598574821853,0.8606965174129353,0.7718446601941747,0.1924882629107981,0.4975693451529883,0.7083333333333334,0.6180555555555556,0.5480769230769231,0.0966952264381885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179685838422,0.0047039263592218,0.0067175386613629,0.0092037627745382,0.0117260597184932,0.0141636713539492,0.0162619033053975,0.0183534935946511,0.0206993836183544,0.0228828736632042,0.0250476561379055,0.0270988801182496,0.0290764026691068,0.0310707407750692,0.0332439401753481,0.0353857919431181,0.0373879190739475,0.0395591623253979,0.0414491065299244,0.0435969858359302,0.0584358615503519,0.0727672495026698,0.0867977203790971,0.0999884236116226,0.1119192644279998,0.1277978950934925,0.1401219097782686,0.1513546916118859,0.1628028828674693,0.1728266471952581,0.1856936416184971,0.1976359952763242,0.2090090286324181,0.2188499102176674,0.2286340555365856,0.2384101551230554,0.2490076148091825,0.2580146818371466,0.2665726214718831,0.2746503135120237,0.2820426578211804,0.2880475565143983,0.2951037501927891,0.3007027449096042,0.3059134416327723,0.3113411485676874,0.3161997288748305,0.320167327730235,0.3233640247782554,0.3275471997671434,0.3257300870034397,0.3250337959003503,0.3242005906374079,0.3222814746116392,0.3221581511778641,0.3205862042507481,0.3185025449125533,0.3187615040757297,0.3195858646359202,0.3209318124932956,0.3211926743226,0.3222802230395065,0.3240243390684011,0.3238329238329238,0.3260546500479386,0.3274609516890664,0.3291667850345161,0.3323287499215169,0.3342919267728133,0.3378850428707526,0.3410211910851297,0.3417021276595745,0.3450461190939323,0.3493135098232572,0.3473899312650938,0.3493030338526414,0.3520084566596194,0.3556845476381104,0.366657660091867,0.3744824990590892,0.0,2.350344460257458,54.11983268947745,175.1722952138037,264.70317791126286,fqhc8_80Compliance_implementation_low_initial_treat_cost,67 -100000,95830,44681,422.341646665971,5981,61.11864760513409,4714,48.627778357508085,1840,18.86674319106752,77.36488025655099,79.67951531315013,63.35773544642036,65.07110896544847,77.13478725386153,79.45031951855539,63.27193554909495,64.98798337854068,0.2300930026894576,229.19579459474448,0.0857998973254083,83.12558690779781,166.16908,116.42953238592357,173399.853907962,121495.9119126824,357.66747,231.54930087065625,372693.08149848686,241086.93610628843,361.99988,175.08516804378726,374143.1180214964,179904.51446029698,3110.82699,1415.7887392035225,3213606.323698215,1444809.234272695,1134.19389,501.1036436250026,1170821.9972868622,510183.1092820648,1810.52578,769.0274363280789,1859162.0995512889,775799.0102875452,0.38012,100000,0,755314,7881.811541271001,0,0.0,0,0.0,30498,317.6667014504852,0,0.0,33079,341.57361995199835,1580215,0,56656,0,0,6467,0,0,62,0.636543879787123,0,0.0,0,0.0,0,0.0,0.05981,0.1573450489319162,0.3076408627319846,0.0184,0.3384321223709369,0.6615678776290631,24.42035607829955,4.36364934171057,0.3235044548154434,0.231862537123462,0.2165888841747984,0.2280441238862961,10.733770592271943,5.445847650893314,19.81524278975803,12272.945384960369,53.36531324476434,12.9720997276893,17.20798600090525,11.279489474125516,11.905738042044266,0.5589732711073399,0.7932296431838975,0.6924590163934427,0.5710088148873653,0.12,0.7058346839546191,0.9224806201550388,0.8377659574468085,0.7081545064377682,0.1428571428571428,0.506896551724138,0.7223796033994334,0.6449086161879896,0.5304568527918782,0.1135005973715651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020358553631115,0.0042276653554483,0.0064940336066239,0.008714906756592,0.011114387691807,0.01339958457215,0.0153927704948113,0.0179063642117728,0.020097317631665,0.0223245816060187,0.0243307506251793,0.0264154428742957,0.0284586686399654,0.0306813503499382,0.0328615752528011,0.0348419466066524,0.0367094892322969,0.0387823402028742,0.0410458222143769,0.0429793166590369,0.0575424762977565,0.0707499346746799,0.0839697055403664,0.0973622311827957,0.1097643168558731,0.1250633552965027,0.1383956947328276,0.1499824600567656,0.1609720192441035,0.1719166711294382,0.1848556890672232,0.1970229279946382,0.208083441981747,0.2182431768290685,0.2278976229985604,0.2378240290188445,0.2469391620155298,0.2558761103686817,0.2647688283452797,0.2724404047333219,0.280004619204342,0.2870884893766052,0.2934414026962203,0.2992082665582318,0.3043087753368127,0.3098978210020928,0.3154308717448649,0.3204365835683972,0.3243124426227388,0.3277967307261686,0.3265564071534221,0.3254103544032333,0.3242862575529233,0.3228846014885468,0.3219560076741177,0.3202384966739217,0.3191202587847266,0.3199894740304595,0.3200520521206102,0.321360855722105,0.3220074461283893,0.32249042981534,0.323355809019682,0.3239850247718968,0.3261951113995241,0.3280940465019289,0.3304330518354232,0.3335009270024824,0.3355683493646001,0.33762352566146,0.3412792825768667,0.3410620792819746,0.3410029873514269,0.3421477438696287,0.3445529534464777,0.3482652091254752,0.3524527141319391,0.3507264170247595,0.3504013285358427,0.3493788819875776,0.0,2.2321321354762174,54.04920102318681,176.94671333711847,261.75916982183253,fqhc8_80Compliance_implementation_low_initial_treat_cost,68 -100000,95638,44798,425.3748510006483,6189,63.52077626048223,4851,50.14743093749346,1857,19.051004830715826,77.2563444549925,79.66710224625265,63.27473565930678,65.05578036060234,77.01777881226569,79.42949010285854,63.18559501873579,64.96945187799197,0.2385656427268117,237.6121433941165,0.0891406405709887,86.3284826103694,164.96128,115.62157697082198,172484.8491185512,120894.81399276832,357.25822,231.03365179484223,372978.71139086975,240998.9736849855,368.7623,178.42168278876323,381648.5288274535,183488.45935095428,3152.88327,1441.8245859822136,3262699.1572387544,1473776.089687158,1123.29307,496.076549077342,1161353.5519354232,505679.8118307119,1817.79136,769.579340004134,1867653.861435831,776793.0058606808,0.38142,100000,0,749824,7840.2204144796,0,0.0,0,0.0,30370,316.9451473263765,0,0.0,33802,349.5577071875196,1577754,0,56646,0,0,6323,0,0,68,0.7110144503230933,0,0.0,2,0.020912189715385,0,0.0,0.06189,0.1622620733050181,0.3000484730974309,0.01857,0.3381440099317194,0.6618559900682806,24.405355344588017,4.356072878252636,0.3217893217893218,0.2428365285508142,0.2209853638425067,0.2143887858173572,11.15522773871098,5.799151260706785,19.88280524668564,12312.082614942585,55.02739900780844,14.08903275918368,17.661653069091262,11.874488886226985,11.402224293306526,0.5666872809729953,0.7741935483870968,0.6931454196028187,0.5932835820895522,0.1144230769230769,0.7330210772833724,0.9011764705882352,0.8724489795918368,0.7591836734693878,0.1278538812785388,0.5070028011204482,0.702523240371846,0.6330196749358425,0.5441354292623942,0.1108404384896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018230617308958,0.0041251532996158,0.0064137042186342,0.0087369073379862,0.0110998066944755,0.0132534661736092,0.0156479516892443,0.0173791327802525,0.0193523310762432,0.0214518409244575,0.0236722213101297,0.0255891148632678,0.0275592983034096,0.0297140971842748,0.031713237952585,0.033971088875322,0.0362929559944021,0.0382074295686861,0.0403642039542143,0.0421716908313341,0.0570320746632108,0.0712392486354541,0.0847139107611548,0.0975925555543859,0.1101120749699233,0.1261534879783271,0.1392255927993716,0.1501677405612652,0.1614147978707484,0.172048549628151,0.1844077152806977,0.1967516848332502,0.2084944608446531,0.2193715957784913,0.2296230119339112,0.240297513321492,0.2505285294018948,0.2590484349110091,0.2669735720375106,0.2749541073887104,0.282109267183894,0.2880630445744843,0.2944017276567469,0.300552353506244,0.3059276216453168,0.3109263423191915,0.3157353402320477,0.3213197127953986,0.3255273576945544,0.3293052158392279,0.3289965584722316,0.3281200392032356,0.3265868974881195,0.3245918293302373,0.3240479496021616,0.3212839658224924,0.3188963237280862,0.3191016049830273,0.321473383867031,0.322468843156269,0.3224572117922039,0.3234604222160378,0.3248010777585989,0.3268654044134103,0.3282758952869494,0.3293322547817238,0.3301889489180459,0.3309890248517724,0.3342330342120022,0.3364519326065411,0.3385708430113403,0.3417963562968077,0.3439454235361001,0.341831701950072,0.3436343449296817,0.3466416157820573,0.3469724220623501,0.3552500498107193,0.3478143550998381,0.3476577622919086,0.0,2.2008627817841835,56.17548977938371,183.0869153007644,267.53059050564787,fqhc8_80Compliance_implementation_low_initial_treat_cost,69 -100000,95683,44657,423.11591400771295,6062,62.11134684322188,4784,49.31910579726806,1844,18.843472717201596,77.32722884548278,79.70469992319168,63.32110870231941,65.07598671001246,77.1000014679488,79.48035849862794,63.237173555091545,64.99598989517723,0.2272273775339783,224.34142456374676,0.0839351472278693,79.99681483522636,164.90034,115.5627177843504,172340.26943135142,120776.64557377006,361.12353,234.0327008633828,376752.8819121474,243928.33171664097,369.52705,179.06859217360392,381932.5376503663,183818.55372881464,3113.1345,1421.2502829708774,3211448.773554341,1443265.9024622326,1118.47999,492.4237912629801,1152333.9046643605,498084.3822534074,1806.78698,751.994902943121,1847487.474263976,750738.362518077,0.38043,100000,0,749547,7833.648610515974,0,0.0,0,0.0,30779,320.9661068319346,0,0.0,33851,349.51872328417795,1578149,0,56650,0,0,6454,0,0,68,0.7002288807834202,0,0.0,0,0.0,0,0.0,0.06062,0.1593460032068974,0.3041900362916529,0.01844,0.335486920895052,0.664513079104948,24.531022918668405,4.395838020096452,0.3139632107023411,0.2418478260869565,0.2309782608695652,0.2132107023411371,11.274380859614556,5.845240993462885,19.63513764859537,12287.23446964147,54.329687569203664,13.815217127622184,16.98792669830912,12.403874367556975,11.122669375715388,0.5710702341137124,0.8098530682800346,0.699733688415446,0.571945701357466,0.1098039215686274,0.746031746031746,0.9338235294117648,0.8560606060606061,0.7396226415094339,0.1256544502617801,0.5085130533484676,0.7423230974632844,0.64376130198915,0.5190476190476191,0.106151990349819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023690444853908,0.0046112839638799,0.0071015521964086,0.0092730836812009,0.0113075929673279,0.0134910857014855,0.0155201598923174,0.0177810913770388,0.0196653917738735,0.0217406887794287,0.0237616654702081,0.0256971190879679,0.0280286354940239,0.0302109200317358,0.032374583320433,0.0342092472517813,0.0363218200277645,0.0385070598006644,0.0405970459746203,0.042715086826909,0.057709582401972,0.0716177040052747,0.0853027871311535,0.0976317976665158,0.109838417078007,0.1258899573666783,0.1387818778057244,0.1513651077604565,0.1627012531917394,0.1735478680611424,0.185763215716686,0.1982054140644449,0.2089795740793108,0.2193836260635621,0.2290245190826253,0.2392173807070606,0.2485324643439055,0.2568443074708119,0.2651257262164125,0.2727637154965067,0.2806495671095884,0.2868324071365896,0.2930114207941298,0.2988533291795971,0.3039066771978856,0.3097495715219294,0.3142084371595647,0.3184526841193847,0.3222412273881719,0.3266071522898949,0.3253624654393418,0.3241914832101111,0.3234838018439676,0.3219415623825901,0.321509838040423,0.3199889479016363,0.3180759172676123,0.3190216233053001,0.3198703735289101,0.3213853276353276,0.3222309446375836,0.3233327415823421,0.3243322386998264,0.3256452621237831,0.3263813716292608,0.3280344557556773,0.3290532443074816,0.3315408805031447,0.3358655697531945,0.3396054146322099,0.3448810990916974,0.3505407277182888,0.3524404086265607,0.3536930730960582,0.3610163064087979,0.3655172413793103,0.3628685503685503,0.3651148607440537,0.3681454946266189,0.3715490797546012,0.0,2.569574555311613,54.93238756784538,182.7561182917624,261.802890697042,fqhc8_80Compliance_implementation_low_initial_treat_cost,70 -100000,95770,44697,422.8777278897359,6143,62.68142424558839,4876,50.2453795551843,1891,19.29623055236504,77.38146625236273,79.7036481455766,63.35451413110488,65.06736797319643,77.14609209744175,79.47215567628311,63.26631011150029,64.98327795964134,0.2353741549209758,231.4924692934852,0.0882040196045892,84.09001355508394,164.99824,115.5667563617452,172285.7053357001,120670.9815134557,357.59855,231.49487435795427,372647.50965855696,240977.1707984124,368.34369,178.29841512810228,380580.6097942988,183030.94012254348,3191.02813,1464.2739242909363,3289457.8573666075,1486726.9421258,1158.22013,517.7301442107856,1190999.9686749503,522327.6229920824,1850.82594,778.9486932172586,1890322.418293829,778895.1339339186,0.38178,100000,0,749992,7831.168424350006,0,0.0,0,0.0,30373,316.42476767254885,0,0.0,33724,348.031742716926,1582449,0,56788,0,0,6580,0,0,71,0.7309178239532212,0,0.0,0,0.0,0,0.0,0.06143,0.1609041856566609,0.3078300504639427,0.01891,0.3287245611309616,0.6712754388690384,24.27886685342416,4.338249527580016,0.3189089417555373,0.2434372436423297,0.2202625102543068,0.217391304347826,11.146091634468412,5.827904275388529,20.02397463703192,12322.97491544805,55.27088424833048,14.208691014133116,17.541491130218215,11.949378232038535,11.5713238719406,0.5621410992616899,0.785172704296546,0.6893890675241158,0.5810055865921788,0.1066037735849056,0.7132188200149365,0.908256880733945,0.803921568627451,0.749034749034749,0.1567796610169491,0.5049476957873904,0.7137150466045273,0.6486486486486487,0.5276073619631901,0.0922330097087378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023692363768908,0.0048340021889821,0.0072427749769225,0.0095966366073604,0.0118458112601299,0.0137935948856811,0.0160021200260926,0.0179287543750446,0.019861054352268,0.0218427729579309,0.0240544195385813,0.0260906143554807,0.0282813334977596,0.0305220139382147,0.0326195655535738,0.0345237111698612,0.0366319318687459,0.038804453751892,0.0407325839895285,0.0428449460663862,0.0571998079772912,0.0707880335262172,0.084429341556017,0.0974686737868976,0.1094571943621585,0.1252868822117164,0.1378187449616021,0.1499994677850277,0.1616093648199771,0.1719734980059179,0.1849830453738091,0.1968984200110307,0.2085449266536901,0.2189975057979258,0.2291194401038801,0.2393980696563722,0.2488138166635035,0.2582039162727886,0.2663812487224329,0.2748389167870491,0.2820982148028869,0.2882225475841874,0.2944019331453886,0.2998801102985253,0.305085775380279,0.3097453084761635,0.314137370198924,0.3187305221649812,0.3239349020420856,0.3286977173769627,0.3281550784142155,0.3269484626808206,0.3260101116791302,0.3249407068895702,0.3249260146037506,0.3226167307721777,0.3211727311542293,0.3221633850845123,0.3231094658910629,0.3239195854627041,0.3246622189830128,0.3260946605764687,0.3264683766396524,0.3270153818677025,0.3291439810040055,0.3298231929277171,0.3298491777203397,0.3340322984476715,0.3366184385265954,0.3399992080148893,0.3439629326792041,0.3465393542941549,0.3477312390924956,0.3506630500301386,0.3560705573278289,0.3581120943952802,0.3570563294972744,0.3480529907667603,0.3470780993992354,0.3584256782575468,0.0,2.5621807145841258,58.450126851624525,176.30200384979565,268.6949503513119,fqhc8_80Compliance_implementation_low_initial_treat_cost,71 -100000,95755,44443,420.28092527805336,5976,61.15607540076237,4706,48.55098950446452,1871,19.153046838285206,77.31912755708531,79.66770242996229,63.32066847763053,65.057941756121,77.09210921351912,79.4429521526293,63.23614294332926,64.9767199838806,0.2270183435661863,224.75027733298705,0.0845255343012709,81.22177224039717,166.94414,116.95675399255546,174345.0890292935,122141.66779025164,359.90019,233.87814731815783,375277.0612500653,243668.2234015538,369.37742,179.1542416373582,381500.3811811393,183885.6172924354,3054.89665,1398.4026199406308,3153082.262022871,1423278.8650702585,1099.51999,491.0347092275466,1134677.4998694584,499383.9596933629,1825.26078,761.6921931103775,1870624.050963396,764844.4015010073,0.37709,100000,0,758837,7924.776774058796,0,0.0,0,0.0,30696,319.951960733121,0,0.0,33802,348.83818077385,1568279,0,56297,0,0,6542,0,0,58,0.605712495431048,0,0.0,2,0.0208866377734844,0,0.0,0.05976,0.1584767562120448,0.3130856760374833,0.01871,0.3377409590568743,0.6622590409431257,24.405504910116587,4.281336361660131,0.3159796005099872,0.241606459838504,0.2311942201444964,0.2112197195070123,11.328376041349117,6.033076628849703,19.80778819207214,12162.979226589528,53.3544349741241,13.761030436476874,16.707025286128953,12.03269351708282,10.853685734435436,0.5720356991075223,0.8091468777484608,0.6805648957632818,0.5799632352941176,0.1297786720321931,0.7517842981760507,0.9045454545454544,0.8746736292428199,0.7606837606837606,0.1813725490196078,0.5062409288824383,0.7489239598278336,0.6132246376811594,0.5304449648711944,0.1164556962025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019848302261288,0.0042258231234609,0.0068077594253479,0.0090597005829897,0.0110239903997721,0.0131170246351572,0.0154065765995411,0.0176551076256994,0.0197541972556798,0.0219999590507974,0.024032891431618,0.0263474037642081,0.0286827923814225,0.030554639854953,0.032810565414775,0.034921094242515,0.0368230897439879,0.0386274997925483,0.0407622530937957,0.0430553241126478,0.0581210855949895,0.0720524702658033,0.08509366281387,0.0972490956507108,0.1093318433869573,0.1246709030736859,0.1366162526780222,0.1478080442647371,0.1593682929173207,0.1694771711280968,0.1826992451245383,0.1951016255763111,0.2067288865683331,0.2170062001771479,0.2269921776154379,0.236899805102764,0.2459034692146269,0.2546524449245032,0.2629900347308923,0.2708354807306877,0.2784459905305442,0.2851742621070617,0.2916039936991461,0.2970456236350109,0.301571088087942,0.306337550138846,0.3112040992746088,0.315072681640401,0.3188526078273724,0.3236770494835011,0.322227164287736,0.3207082180276183,0.3194520857138826,0.3188653303422823,0.3188584685394762,0.3169045392528092,0.3159529620590193,0.3162916735096074,0.3176834266976363,0.3185206370770248,0.3190447604397253,0.3196071844928768,0.3200755588204428,0.3215222214751563,0.3228526683532104,0.3244217012166466,0.3250178393035536,0.3279426108296888,0.3312941672819323,0.3332540814709145,0.3344387407441057,0.3354043863841537,0.3377024387169954,0.337447619047619,0.3355269342859829,0.3355681016231475,0.3329275715155204,0.3369741100323624,0.3384700055035773,0.3440122044241037,0.0,2.2270431936059776,55.14637146565874,174.6582095184259,259.95704229962496,fqhc8_80Compliance_implementation_low_initial_treat_cost,72 -100000,95679,44366,421.28366726240864,6008,61.62271762873776,4726,48.76723209899769,1889,19.37729282287649,77.34181859432726,79.72529776186096,63.3271521787835,65.08612923682125,77.10556577773025,79.49012307524178,63.240778537103004,65.00256353527953,0.2362528165970161,235.17468661917465,0.0863736416804954,83.5657015417155,167.21122,117.0958731131254,174762.48706612736,122383.88606560184,360.82014,233.75774226381455,376508.7323237074,243709.10899297387,365.3116,176.31503232115966,378203.9632521243,181460.40046584173,3110.32259,1420.9108148815512,3213940.007734195,1448312.6734397544,1114.57458,499.7387787402947,1148711.9221563772,506160.913491002,1850.89684,771.6677715113876,1900758.68267854,777535.5071104869,0.37815,100000,0,760051,7943.749412096698,0,0.0,0,0.0,30722,320.4464929608378,0,0.0,33477,346.23062532008066,1571428,0,56390,0,0,6492,0,0,70,0.7316129976274836,0,0.0,0,0.0,0,0.0,0.06008,0.1588787518180616,0.3144141145139814,0.01889,0.3428072403937758,0.6571927596062243,24.304414383558328,4.257252927607861,0.3051206093948371,0.248836225137537,0.2204824375793483,0.2255607278882776,11.001879791449303,5.658543858889424,20.00096729137476,12128.542393776428,53.59359098999575,14.037346432443083,16.346728696415603,11.617219766317868,11.592296094819194,0.558611933982226,0.798469387755102,0.688626907073509,0.5585412667946257,0.1181988742964352,0.7326416600159616,0.931924882629108,0.8743169398907104,0.6864406779661016,0.1733333333333333,0.4958249352145119,0.7226666666666667,0.6254646840148699,0.5210918114143921,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021873196220797,0.0043078544857435,0.0064222882826212,0.0087343340578091,0.0109102371171757,0.0127270505823898,0.014983334862245,0.0170370445984708,0.0191028117621807,0.0213332241421668,0.0234499164333979,0.0254190288390436,0.0273759799181086,0.0294293427858953,0.0312738682575397,0.0332743765579586,0.0351598930592112,0.0372631469656855,0.0394898362565799,0.0415320142609928,0.0563041888645147,0.0696904971311303,0.082988727723084,0.0962161707142556,0.1091584210637355,0.1247487888980558,0.1368575187810364,0.1475772800817508,0.1585487024434021,0.1687184986595174,0.1817232207277543,0.1940706930864411,0.2059399264849816,0.2171365479847393,0.2265842417309236,0.2362015503875969,0.2458399830362822,0.2549290863897605,0.2626938831084838,0.2697058857201735,0.2773460987003376,0.2844114999240041,0.2907418137956316,0.296605093557584,0.3019491165219503,0.306441279384949,0.3106943106317488,0.3159435042626288,0.3200150284374312,0.3243107703271614,0.3229389667568768,0.3218009739455801,0.3206441341805323,0.3195937355524734,0.3185517405251277,0.3163443562475099,0.3147061150225457,0.3155874198152675,0.3156365873246416,0.3178784309526359,0.3185857263118511,0.319713247491903,0.3214240837696335,0.3214852924728777,0.3235265816694732,0.3242600768005015,0.3263377305693564,0.3304569646962492,0.3331219391889511,0.3345269356250497,0.3379754349116479,0.3383298782756604,0.3401744806376702,0.3402603334094542,0.3422234699606962,0.3438914027149321,0.3460356484326982,0.3456314615852423,0.3484175458078845,0.3588756257219869,0.0,2.3895156072025143,54.69247748441456,173.22048141274595,266.6518192488001,fqhc8_80Compliance_implementation_low_initial_treat_cost,73 -100000,95673,44441,422.3030531079824,6049,61.8878889550866,4714,48.6239586926301,1860,19.03358314257941,77.38307130315455,79.75871784723593,63.34642469116329,65.0971838117852,77.14399774828141,79.52255119148332,63.2564367796321,65.01120077930806,0.2390735548731442,236.1666557526121,0.089987911531189,85.98303247714512,165.65582,115.97952077375297,173147.93097321084,121224.92320064487,357.48642,232.13604544696372,373011.4870444117,241991.89473201815,367.25718,178.0180955291643,379839.23363958485,183004.44587181535,3076.48608,1428.47457045614,3177488.6645134995,1454942.5861592512,1102.49955,495.9800384102474,1138150.1154975805,504199.563523928,1811.74458,774.8089380699532,1856427.7486856272,777896.8146232719,0.37893,100000,0,752981,7870.36049878231,0,0.0,0,0.0,30548,318.64789439026686,0,0.0,33635,347.4648019817503,1577109,0,56707,0,0,6674,0,0,49,0.5121612158080127,0,0.0,0,0.0,0,0.0,0.06049,0.1596337054337212,0.3074888411307654,0.0186,0.3383375474083439,0.6616624525916561,24.03454035601212,4.390780384164242,0.3256257955027577,0.2327110733983877,0.2248621128553245,0.2168010182435299,11.302818704957696,6.00903360950531,20.04183543813516,12166.45561639142,53.81630215624206,13.143441572771216,17.400515995687645,11.958706981990565,11.313637605792634,0.5717013152312261,0.7857793983591613,0.7042345276872964,0.5971698113207548,0.1164383561643835,0.7364400305576776,0.9051094890510948,0.8807106598984772,0.7749077490774908,0.1502145922746781,0.5083700440528635,0.7142857142857143,0.6432953549517967,0.5361216730038023,0.1064638783269961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023283358472611,0.0043766336392924,0.0064299550714495,0.0086213899833461,0.0106146103400945,0.0126428942251901,0.0149646272095251,0.0171380742888056,0.0193086106795322,0.0211907784284017,0.0233964895013123,0.0256307569082899,0.0277174975059394,0.0295117428924598,0.0316104405240895,0.0337974016309571,0.0357205755902493,0.0375114174209084,0.0392495372007404,0.0412723558594238,0.0556002465550204,0.0695478291822398,0.0823978681885897,0.0952195675948515,0.1069824332018811,0.1226144785950666,0.1350890026822726,0.1471314003701418,0.158782161418037,0.1697884743147382,0.1826662362814719,0.1957527788590458,0.2071019423279675,0.217790505754916,0.2270987328405491,0.2372257921559938,0.2466831948539265,0.2556934651859527,0.2637687084099839,0.2719386702725002,0.2790240062967336,0.2862829578981876,0.2930840412801099,0.2984073260600823,0.303080796409589,0.3086680239373188,0.3130503400678883,0.3176469089890216,0.3217970653808265,0.3259577278731836,0.3246438477903751,0.3227120136481206,0.3215975664713835,0.3208752456931437,0.3205276762634816,0.3193690793709188,0.3173459205170038,0.3171108155591678,0.3170435496561869,0.3177294573781915,0.3191660283595195,0.3197147584902687,0.3205671685426107,0.3215940479372717,0.3221932489653357,0.3235713360114034,0.3251266378017375,0.3284108648142366,0.3303178484107579,0.3327826292187869,0.3361838830822135,0.3382553862322648,0.3390052356020942,0.3432633716993906,0.3449454814267233,0.3434848308729513,0.3507986266606956,0.3480210567362058,0.3481717011128776,0.3433934486566065,0.0,2.5613464238581787,56.90608482672061,180.169004350876,249.3386610739548,fqhc8_80Compliance_implementation_low_initial_treat_cost,74 -100000,95689,44780,422.2428910324071,6152,63.13160342359101,4858,50.14160457314844,1999,20.47257260500162,77.3960056150407,79.78030833867537,63.35197710932333,65.11307577570828,77.13912812048751,79.52653829949918,63.25677122431348,65.02241809391852,0.2568774945531942,253.7700391761888,0.0952058850098467,90.6576817897644,165.1551,115.7023442306797,172595.70065524773,120914.98942478203,360.51676,233.63885985102348,376136.7555309388,243542.7268035233,368.15894,178.6536942215354,381184.9742394633,183914.8340031346,3174.30113,1465.280915719664,3277758.770600592,1491743.4352116382,1149.59028,515.4336381334637,1185925.6340854226,523198.8401315347,1949.66114,824.374083153454,1997805.3276761172,825598.749244247,0.3813,100000,0,750705,7845.259120693079,0,0.0,0,0.0,30654,319.7023691333382,0,0.0,33671,348.2636457691062,1583153,0,56680,0,0,6480,0,0,69,0.7210860182466114,0,0.0,3,0.0313515660107222,0,0.0,0.06152,0.1613427747180697,0.3249349804941482,0.01999,0.3291119691119691,0.6708880308880308,24.448517544325696,4.358938197469361,0.3217373404693289,0.2313709345409633,0.2268423219431865,0.2200494030465212,11.140408187166686,5.819435352065007,21.34403974235528,12352.816354964169,55.372064708521584,13.509079701502449,17.645139854332843,12.477534175804204,11.740310976882077,0.5613421160971593,0.802491103202847,0.6871401151631478,0.5671506352087115,0.117867165575304,0.7143933685003768,0.9330024813895782,0.8604060913705583,0.678082191780822,0.1470588235294117,0.5038232795242141,0.7295423023578363,0.6287425149700598,0.5271604938271605,0.1095066185318893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023602824234934,0.0048873476506256,0.0072166622683258,0.0097434594869189,0.0120338534779158,0.0142956054249989,0.0167011633716365,0.0189792647193947,0.0214991105931423,0.0239311340163976,0.0261433887983268,0.0283276520596328,0.0302880709224234,0.0323235236555041,0.0344621226191213,0.0364072400996495,0.0387404184793867,0.0407938715771554,0.0426833073322932,0.0446813832780939,0.0592757392494176,0.0734162907766533,0.0865036659429182,0.0990684078817319,0.1111263374268697,0.1263364954471905,0.1388906571604388,0.1509299379331637,0.1625375255066611,0.1735474252126438,0.1856144243507857,0.1976158023409273,0.2094835456244837,0.219499130967086,0.229220500753219,0.2391816943973963,0.2489488183268087,0.2583837952612598,0.2661636588156657,0.2734413409098704,0.2800115473441109,0.2869369264180463,0.2931669974482563,0.2993227396735748,0.3047279517867753,0.3105012725461989,0.315035501703333,0.3195494444162565,0.3241592977473698,0.3280879953686648,0.3274723504778267,0.3264894667544437,0.3250699158199474,0.3233771290941344,0.3219290830626863,0.3205400694200217,0.3184830225680441,0.3193897637795275,0.3210468808686448,0.3217095053778784,0.3227177413315359,0.3233877969847659,0.3237458193979933,0.3241417744092733,0.3258243473666514,0.3268104816674907,0.3277585325685729,0.3315949860199177,0.3356586973287527,0.3380259285771096,0.3392840794653483,0.3429165777682952,0.3450088674942995,0.3474239412933802,0.3513436520748267,0.3543648404575557,0.3550478542760111,0.3625,0.3662952646239554,0.3662135922330097,0.0,2.4965543188406567,58.00113037600629,185.15894127927945,259.9744312159707,fqhc8_80Compliance_implementation_low_initial_treat_cost,75 -100000,95814,44540,421.170183897969,6166,63.09098879078215,4806,49.50216043584445,1911,19.52741770513704,77.38566316619061,79.70565456094467,63.36611244363343,65.0838806068962,77.1429214265375,79.46646594119342,63.27596604247061,64.99754649218876,0.2427417396531126,239.18861975124628,0.0901464011628192,86.33411470744079,166.80664,116.78450433639456,174094.22422610476,121886.68079445024,361.59422,235.1678736308834,376737.68969044194,244789.11908865775,367.57788,178.89496418922673,379529.8912476256,183438.49150698807,3144.82556,1453.4184290226826,3241291.88845054,1476165.3598868975,1159.9359,515.9314341037016,1192350.5959463126,520519.2092041973,1875.1686,792.4527432592853,1918055.357254681,795417.8670017943,0.38003,100000,0,758212,7913.373828459307,0,0.0,0,0.0,30948,322.31197946020416,0,0.0,33639,346.9325985764085,1574863,0,56422,0,0,6605,0,0,68,0.7097083933454402,0,0.0,1,0.0104368881374329,0,0.0,0.06166,0.162250348656685,0.309925397340253,0.01911,0.3399814471243043,0.6600185528756958,24.22683753846005,4.3346516339743095,0.3160632542655014,0.243237619642114,0.2184769038701623,0.2222222222222222,11.252354236933993,5.831920010626868,20.431620345390726,12222.214987660993,54.80051297063196,13.965902737584384,17.405592509280563,11.667876216923062,11.76114150684396,0.5607573866000832,0.7604790419161677,0.7030941408821593,0.5628571428571428,0.1376404494382022,0.7230081906180194,0.9078947368421052,0.8341232227488151,0.7345132743362832,0.1631799163179916,0.497834247762056,0.6661991584852734,0.6526891522333638,0.5157766990291263,0.1302774427020506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023193866285841,0.0044199791166124,0.0066781013082177,0.0088289679556214,0.0111172138817689,0.013287852560839,0.0153706591648064,0.0174507602816613,0.0199090398078593,0.0222783929265846,0.0244622306028961,0.0268711253438436,0.0289108829484372,0.0310348022110366,0.0329253328108726,0.0348400024789803,0.0367319909773813,0.0388171396587823,0.0407355873068616,0.0427683950925608,0.057673652038762,0.0722230352700131,0.0859475719810915,0.0984176683197444,0.1098985600370787,0.1245762085318068,0.1367974998675777,0.1486831196989987,0.1595260188355251,0.1696298517693428,0.1824516878340449,0.1944495457442556,0.2060579741613288,0.2168440587304186,0.2267475067000571,0.2373475458053672,0.2466606508249501,0.2558136922281888,0.2646958846990573,0.2725495352320409,0.2796215647995194,0.2864278795093542,0.2921280664887965,0.2977398496420333,0.3027961781125495,0.307936975770303,0.313133833123355,0.3174838652414825,0.3219398226433116,0.3255820074486425,0.3241746424346703,0.3232703538302988,0.3230059234871189,0.3218716152790815,0.3211368833714472,0.3198450609345336,0.3180507588479452,0.3175933228180862,0.3178214939990069,0.3186671674625744,0.3197398751850672,0.3203895024343902,0.3222336820391925,0.3236384053902302,0.3252980004352136,0.3260327868852459,0.3248201335741107,0.3282681493650091,0.3304129720563818,0.3348506628334132,0.3402269399707174,0.3418004038686364,0.346316253860213,0.3500342648290566,0.3488592255987882,0.3541269083969465,0.3565472513897467,0.3574190922043558,0.3571625724537676,0.3597397627248374,0.0,2.5193358639255368,58.42794495573311,178.63517897942916,258.9836805389686,fqhc8_80Compliance_implementation_low_initial_treat_cost,76 -100000,95770,44485,420.87292471546414,6187,63.31836692074763,4874,50.360238070376944,1902,19.50506421635168,77.37657405990127,79.72114032384704,63.3458979718325,65.07878478791181,77.13516881709393,79.4798279113113,63.25541095108815,64.99038705306953,0.2414052428073461,241.3124125357342,0.090487020744348,88.39773484228886,166.3574,116.45615382158698,173705.12686645088,121599.82648176567,358.70083,232.1742094928481,374033.2880860395,241918.19932426448,371.54655,179.2358265011409,384404.9284744701,184360.52207699767,3203.52673,1472.584919250578,3312186.1438863943,1504791.541454084,1151.96442,509.9893858037681,1189627.336326616,519297.3434308955,1868.39764,793.212831444501,1918511.4127597369,801068.4138343369,0.37893,100000,0,756170,7895.687584838676,0,0.0,0,0.0,30563,318.5861960948105,0,0.0,34042,351.93693223347606,1575964,0,56543,0,0,6544,0,0,65,0.6682677247572308,0,0.0,1,0.0104416831993317,0,0.0,0.06187,0.1632755390177605,0.3074187813156618,0.01902,0.345216049382716,0.654783950617284,24.39428204595762,4.371083621475578,0.3077554370127205,0.2439474764054165,0.2240459581452605,0.2242511284366024,11.156035239083169,5.702226766483665,20.247987063936083,12239.42976012647,55.27269452342335,14.234466961700836,16.94080000233388,12.085867507379849,12.011560052008788,0.5697578990562167,0.7939444911690496,0.706,0.5906593406593407,0.1180237877401646,0.7311178247734139,0.925925925925926,0.8630490956072352,0.7462121212121212,0.1535269709543568,0.5095774647887324,0.7186261558784677,0.651392632524708,0.5410628019323671,0.107981220657277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024511293426516,0.0046021753895123,0.0067777349378031,0.0091531553496688,0.0113701082092588,0.0133196199631368,0.0155295653149249,0.0176420141299465,0.0197200952780134,0.0218239141783787,0.0240140209904886,0.0262674372055306,0.0285279573982502,0.0306069905872175,0.0324547377108371,0.0345009353908486,0.0364779092763437,0.0383913196821642,0.0406561535183009,0.0428312575498812,0.0578289865055261,0.0717878467828796,0.0850035640907375,0.0972152164775115,0.110148593107809,0.1250317097919837,0.1384453915145347,0.1502867417834381,0.1608641790725987,0.1705985802217599,0.1836659952389672,0.1956797004361424,0.2068357653510919,0.2173703679383632,0.2271761272917469,0.2375250828704781,0.2468365033449858,0.2555014013799935,0.2641293120083544,0.2713341655881713,0.2786365529689452,0.2853233539936849,0.2920491105223315,0.2969204786373926,0.3029993804438937,0.3080326333431923,0.3131016377047131,0.3181644942449881,0.3228004395888551,0.3267818773809994,0.3250497285092199,0.3240034626324251,0.3239248445982055,0.3223622479176591,0.3214646015073289,0.3201866442285627,0.3186166764180331,0.31971027792344,0.3199215084037198,0.3206377482853834,0.3214439513939598,0.32175989893806,0.323293635012663,0.3241646791342532,0.3249969998799952,0.3270998827972392,0.3278627908299675,0.3316313745144719,0.3351317264573991,0.3375381808084414,0.3391221113086284,0.3418004038686364,0.3474352527030425,0.3510170006071645,0.3571294910179641,0.3587714116952156,0.360317702764625,0.3634726945389078,0.3631421581951617,0.3667676003028009,0.0,2.1075828712712537,58.17632380685558,180.9195741594866,265.6097983464882,fqhc8_80Compliance_implementation_low_initial_treat_cost,77 -100000,95733,44773,424.5871329635549,5951,60.66873491899345,4673,48.03986086302529,1852,18.906751068074747,77.3313489084019,79.69789719182828,63.31030609897547,65.06302284309928,77.08973190212967,79.45906659778463,63.21986209559126,64.97641120092791,0.2416170062722358,238.83059404364812,0.0904440033842064,86.61164217136275,167.35994,117.38683515534782,174819.2577272205,122618.75753956084,363.31533,235.5289475913181,378738.240732036,245256.17873807155,375.96797,182.76496072757288,386965.7693794199,186560.41596791084,3052.9704,1419.6500445573472,3142318.2810525103,1436197.7631092195,1128.32212,508.76580210623257,1158616.892816479,511456.01590489456,1809.46062,772.2027917399745,1848921.772011741,771791.7082762147,0.38078,100000,0,760727,7946.32989669184,0,0.0,0,0.0,30928,322.27131710068625,0,0.0,34379,353.3891134718436,1563522,0,56065,0,0,6563,0,0,74,0.7729831928384151,0,0.0,1,0.0104457188221407,0,0.0,0.05951,0.1562844687220967,0.3112082003024701,0.01852,0.3349951752975233,0.6650048247024767,24.45825007898931,4.342508899018752,0.3184249946501177,0.2356088166060346,0.2285469719666167,0.2174192167772309,11.345404135917727,5.904348101167215,19.88263157695024,12259.824673640182,53.44377511723551,13.28471756602536,16.871934616077098,11.958912003093532,11.328210932039523,0.5762893216349241,0.7901907356948229,0.717741935483871,0.5814606741573034,0.1318897637795275,0.7384615384615385,0.9255583126550868,0.8975,0.7358490566037735,0.1422413793103448,0.513785947227987,0.7120343839541547,0.6516544117647058,0.5305105853051059,0.1288265306122449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022897901701131,0.0046949308942677,0.0070337477797513,0.0092156065840276,0.0114956560662475,0.0140644254565082,0.0161515636630604,0.0181647385564189,0.0201904489153003,0.0222258639408402,0.0246348867738759,0.0267221451687471,0.0285987733091837,0.030516335154076,0.0323692739621395,0.034630020267196,0.036655828690952,0.0385285877347722,0.0405293029250951,0.0423384576927884,0.0570354906054279,0.0707252503479234,0.0840982282411438,0.0970292865029707,0.1092483050221955,0.1249709123987222,0.1371417049590899,0.1490232003238245,0.1608507454710629,0.171544165781312,0.1839132496874057,0.1958539570449154,0.207543471869862,0.2187161267011923,0.2282923498772148,0.2386591707971569,0.2487378814278693,0.2576642911023294,0.2657564098198781,0.2741295927021018,0.281262300016207,0.2882838573686984,0.2944718376635691,0.2999075286120885,0.3057181449797388,0.3108519958047998,0.3151764131210781,0.3188782332938524,0.3238170592508042,0.3277512909573555,0.325928721626139,0.3246442236230009,0.3229891534018876,0.3216901408450704,0.3204551861248349,0.3182833195680768,0.3164912945934843,0.3164872261278534,0.3173787617568236,0.3184061870734359,0.3186751497005988,0.3193098138313624,0.3197824040171566,0.3201564245810055,0.3209538232254032,0.3227109281359112,0.3242444059025902,0.328628905513296,0.3293052423900789,0.3337319620505461,0.3373153383184388,0.3406104281475201,0.3430006277463904,0.3485779294653015,0.3525581395348837,0.3533178114086147,0.3579970104633782,0.362406899255194,0.365219721329046,0.3682835820895522,0.0,3.004763321070163,56.0157779095894,180.6422393290817,245.19539462375144,fqhc8_80Compliance_implementation_low_initial_treat_cost,78 -100000,95493,44770,424.7222309488654,6012,61.826521315698535,4746,49.1449635051784,1869,19.16370833464233,77.22623088476638,79.71338929790134,63.24095407219974,65.07622433746167,76.99215760175689,79.4818817644846,63.15406018880056,64.99336857675985,0.2340732830094936,231.507533416746,0.0868938833991777,82.85576070181833,166.02278,116.3301548477466,173858.5864932508,121820.60972819642,360.5513,233.6329637515057,377026.5569204025,244118.0335223584,366.08494,176.98858826632954,380193.4173185469,182905.90439092225,3097.50575,1420.7087859069095,3207186.547705068,1451439.30737102,1092.04794,483.58663910839294,1129674.9081084477,492516.9864923661,1828.26238,771.3132755043558,1876130.2713287885,774095.0976969358,0.38182,100000,0,754649,7902.663022420492,0,0.0,0,0.0,30669,320.5994156639754,0,0.0,33478,347.4495512760098,1568232,0,56302,0,0,6643,0,0,73,0.7644539390321804,0,0.0,1,0.0104719717675641,0,0.0,0.06012,0.1574563930647949,0.310878243512974,0.01869,0.3328035600762873,0.6671964399237127,24.40113422565907,4.293291947453568,0.314369995785925,0.2439949431099873,0.2214496418036241,0.2201854193004635,11.15506823022502,5.809353903749138,20.11887093328611,12315.627601393711,54.15031429261364,13.889624863501393,17.149029769044503,11.606511086374791,11.50514857369296,0.5611040876527602,0.7910189982728842,0.717828418230563,0.560418648905804,0.0832535885167464,0.7327117327117327,0.9268867924528302,0.8798076923076923,0.7181818181818181,0.1145374449339207,0.4972535414859786,0.7125340599455041,0.6552044609665427,0.5186522262334536,0.0745721271393643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021279829761361,0.0041993366265329,0.0064064816130931,0.008703609557702,0.0111988923277406,0.0134434082454262,0.0157756711803181,0.0181472625835325,0.0202461456617594,0.0224073277186942,0.0246448513713253,0.0268250051408595,0.0288932822603896,0.0308590406056293,0.0330626330254375,0.0351910712621781,0.0375103734439834,0.0391995841995842,0.0414027337889648,0.0431704260651629,0.0577102241204241,0.072198264555594,0.085154491723282,0.0978761528326745,0.1100518923260655,0.1253895567003752,0.1379358007889336,0.1494569276401425,0.1607471830684203,0.1714605099101423,0.1847009285251565,0.1969695326312135,0.2089615699100572,0.2196731374203943,0.2293919068002294,0.2388004977556553,0.2481431767337807,0.2575209368906322,0.2659002262932259,0.2730777615862124,0.2800473103816139,0.2865802185433569,0.2929598519362186,0.2990685655910101,0.3044548723261625,0.3098624647504081,0.3156631653013017,0.3204728434504792,0.3251884585391213,0.328924372418176,0.3279355510198564,0.3272273335448363,0.3262232135294616,0.3257671108024825,0.3245155428452269,0.3227709085323708,0.3212362816257167,0.3218068895075863,0.3224467391677244,0.3227159475882342,0.3232355482101942,0.325053482291419,0.3269614117548314,0.3276163181227889,0.3283187542055176,0.3276010318142734,0.3283114515991228,0.3313001100455903,0.3330404217926186,0.33595737913486,0.3384917374235369,0.3405666383701188,0.3445573112616002,0.3470437017994858,0.3526467043663669,0.3531264582361176,0.3580865603644647,0.3607556368068251,0.3604172385396651,0.3576057948913458,0.0,2.185660820428009,56.587014199673405,184.50096655013667,251.23089468388997,fqhc8_80Compliance_implementation_low_initial_treat_cost,79 -100000,95716,44734,423.5133102093694,6136,62.90484349534039,4791,49.53194868151616,1896,19.484725646704835,77.36399481233721,79.75100375955982,63.33329461681414,65.09834269406562,77.12775818661002,79.51312167613692,63.24630779554269,65.01287257910154,0.2362366257271873,237.8820834229032,0.0869868212714592,85.47011496408174,166.71116,116.71750246830716,174172.7192945798,121941.47526882356,360.2935,233.462942716639,375928.172928246,243421.00873066048,370.36657,179.61156738328177,383745.5075431485,185086.31948111567,3136.25938,1437.554638850857,3246077.84487442,1471343.4836922337,1155.47114,514.6662575532813,1195081.0000417903,525595.3524523391,1857.24128,779.4276912543711,1910665.4477830247,789160.2926304988,0.38113,100000,0,757778,7916.941786117264,0,0.0,0,0.0,30704,320.24948806887045,0,0.0,33776,349.7116469555769,1574100,0,56497,0,0,6679,0,0,74,0.7731204814242133,0,0.0,1,0.0104475740733001,0,0.0,0.06136,0.1609949361110382,0.3089960886571056,0.01896,0.3360086433091526,0.6639913566908473,24.55019836579108,4.327237384882596,0.3180964308077645,0.2377374243372991,0.2181173032769776,0.2260488415779586,11.162010671528105,5.861407856165132,20.20499290057204,12291.904046956704,54.28896874955892,13.593132372406668,17.23065930162491,11.62431306744698,11.840864008080349,0.5631392193696514,0.7664618086040387,0.69750656167979,0.600956937799043,0.123730378578024,0.7361769352290679,0.905940594059406,0.8546365914786967,0.7698744769874477,0.1830357142857142,0.5009929078014185,0.689795918367347,0.6417777777777778,0.5508684863523573,0.1082654249126891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022188225043312,0.0047968196983986,0.0071570697636644,0.0096855499319064,0.011905004171839,0.013896529942743,0.0159839242727161,0.01799501613628,0.0202203062195084,0.0225273656293838,0.0246733802325819,0.0269182183241072,0.0290169617050165,0.031097372488408,0.0331489431968295,0.0350603294078722,0.0370842267731543,0.03902788298899,0.040997068668011,0.0430714732235882,0.0572183466310205,0.0706390906616985,0.083977633939343,0.0967043136265169,0.1090288171680333,0.1243590150241591,0.1373565778032279,0.1498585136486457,0.1610709596148303,0.1710393758172036,0.1846307814820394,0.1965494862087615,0.2082594843802668,0.2192406945720159,0.2287172604969914,0.2391723130065099,0.2484133269383066,0.2568225518086649,0.2649891658252691,0.2728792023900825,0.2808297584496375,0.2879204124338037,0.2943981634874805,0.2999053472796329,0.3062671490663623,0.3117714398256995,0.3165864332603939,0.3211867098659551,0.3254617601819897,0.329694495654464,0.3278963844737938,0.3249306642502128,0.3235595912458007,0.3228388473852721,0.32158048404547,0.3199218809600098,0.3184741488020176,0.3183094911489973,0.3188548696938272,0.3190293196697979,0.3199985045051781,0.3209143623525699,0.3220076897358743,0.322690992018244,0.3235188251385789,0.324321503131524,0.3254280821917808,0.3288833045390293,0.3319289375746085,0.3350646261200539,0.3377125193199382,0.3427254912345744,0.3457117595048629,0.3484211331141524,0.3582994034655809,0.3624417632301995,0.3665067327039158,0.360706220488606,0.3655133928571428,0.3634585289514867,0.0,2.0364998964417547,55.45152585407977,182.96782346704296,261.1570340665039,fqhc8_80Compliance_implementation_low_initial_treat_cost,80 -100000,95673,44701,423.6200390914887,6188,63.62296572700762,4900,50.67260355586215,1868,19.200819457945293,77.31725194233033,79.7270062328113,63.30264576078415,65.08565655112115,77.09448240640336,79.50355644905986,63.221612457407424,65.00647914302412,0.2227695359269716,223.4497837514482,0.0810333033767278,79.17740809702423,166.66958,116.76536010572946,174207.54026736907,122046.3036653282,362.6322,234.35911840775387,378516.4884554681,244442.0039172534,375.55317,181.05920696615465,389214.1565540957,186612.691859352,3204.10308,1452.8946613088772,3314875.178995119,1484464.9078725206,1173.04655,514.9918347637072,1211197.5060884473,523380.9693055582,1832.41606,756.3700054154101,1885431.8773321623,765300.0902107372,0.38075,100000,0,757589,7918.524557607684,0,0.0,0,0.0,30898,322.4107114859992,0,0.0,34331,355.4398837707608,1571398,0,56381,0,0,6584,0,0,63,0.6584929917531592,0,0.0,0,0.0,0,0.0,0.06188,0.1625213394615889,0.301874595992243,0.01868,0.3322070342497312,0.6677929657502688,24.53817075785243,4.440584473353348,0.3185714285714285,0.2355102040816326,0.2306122448979591,0.2153061224489796,11.619359539711644,6.057657057274444,19.70790818420276,12294.770445926322,55.458942958259335,13.6943491137912,17.686257384077223,12.609180542498622,11.469155917892287,0.5704081632653061,0.7686308492201039,0.7033952594490711,0.6026548672566372,0.1222748815165876,0.751170046801872,0.8931297709923665,0.8875878220140515,0.7692307692307693,0.1633663366336633,0.5063571033720288,0.7043363994743759,0.6340388007054674,0.5528735632183908,0.1125439624853458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023605215435582,0.0045733407696597,0.0069212580046074,0.0090642116066619,0.0110189754286005,0.0129978608536212,0.0151082365902923,0.0172646289637136,0.019326389883571,0.0214841148688106,0.0237098594439314,0.0260897264637579,0.0282149731849671,0.0303623898139079,0.0322847169148782,0.0343503947191441,0.036509894575347,0.0385797661328847,0.0407212043655128,0.0428424004252968,0.0575655317237272,0.071550487439659,0.0848274269398723,0.0978517022261499,0.1098710997658277,0.1256758901645415,0.1384334574936593,0.1501969971249068,0.1622389877962769,0.1723712578704051,0.1859606043961961,0.1985324357670079,0.210297813999543,0.2201939282509247,0.229996696399075,0.2398275785647799,0.2494923801236138,0.2574275240087263,0.2653716177904788,0.2727824195948266,0.2799708532367943,0.2860934120535453,0.2929349112426035,0.2991121176174557,0.3046937635140059,0.3092379379206627,0.3145677961859953,0.3191548866063256,0.323225789759644,0.327500790555497,0.3263709677419354,0.3257104399302264,0.324724595323741,0.3239544274588982,0.3232864909830951,0.3219741660665308,0.3193145678074714,0.3201240523776705,0.3212787723785166,0.3210470085470085,0.3214365881032547,0.3225761909458526,0.3235337258764117,0.3255236860342939,0.3273546925098238,0.327656462229652,0.328668737709123,0.3298363539278198,0.3323626412181601,0.3382865747345062,0.3417767653758542,0.3459944751381215,0.3482097831568331,0.3544400366188587,0.3547020615645297,0.3581384360973305,0.3604294478527607,0.3615166261151663,0.3674844971690482,0.3724681170292573,0.0,2.126837777964987,56.44170400609995,184.7374136401561,270.5411494966321,fqhc8_80Compliance_implementation_low_initial_treat_cost,81 -100000,95855,44396,418.8513901204945,6066,62.05205779562881,4798,49.44968963538678,1864,19.101768295863543,77.4717338221379,79.75796836056055,63.40399372213196,65.09056680372191,77.23302756347141,79.52193813491253,63.31401960427176,65.0041858602344,0.2387062586664967,236.03022564802245,0.0899741178601942,86.38094348751224,167.85142,117.53888283839667,175109.25877627666,122621.09377538649,359.35413,232.78236355608655,374301.8621876793,242257.11455436496,368.16638,178.35989581986576,380436.7116999635,183183.7009201205,3152.83949,1452.10407566694,3250809.55610036,1476560.9148890923,1154.87652,515.1307369080953,1188579.594178707,521258.62233979866,1830.72254,783.6079059025099,1876723.1547650096,787652.9160715119,0.37899,100000,0,762961,7959.51176255803,0,0.0,0,0.0,30620,318.8148766365865,0,0.0,33717,348.1299880027124,1571960,0,56397,0,0,6584,0,0,78,0.8032966459756924,0,0.0,0,0.0,0,0.0,0.06066,0.1600569935882213,0.3072865150016485,0.01864,0.3471502590673575,0.6528497409326425,24.234807407263,4.286610206003642,0.3199249687369737,0.235931638182576,0.2215506461025427,0.2225927469779074,11.087759870790258,5.762856992394405,20.0327527262462,12188.49364409407,54.60649083216777,13.74335465770089,17.35647165839589,11.715614773147507,11.791049742923486,0.5698207586494373,0.784452296819788,0.70814332247557,0.5917215428033866,0.1217228464419475,0.7074102368220015,0.8977272727272727,0.8402061855670103,0.7226890756302521,0.1358024691358024,0.5182000573230152,0.7124277456647399,0.6634699215344376,0.553939393939394,0.1175757575757575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368660795627,0.0046904600297839,0.0070169745888174,0.0090133982947624,0.0113811885212584,0.0134504054452776,0.0157994458479341,0.0181254398759677,0.0204746441190286,0.0228769532847909,0.0249595444396648,0.0271575816624788,0.0291854576086621,0.0314130199919744,0.0334810844242861,0.0351924328008343,0.0372902745308976,0.0392583610567007,0.0413465132699256,0.0433321192569852,0.0576624297467232,0.0709910098264687,0.084266895821762,0.096654548511148,0.1086752600680867,0.1245057617084258,0.136719329869579,0.1491745032126292,0.1604176453004227,0.169717690939101,0.1824002927186242,0.1946561172541262,0.2051671897568445,0.2157434402332361,0.2257664129348315,0.2367138008424451,0.2465910610044115,0.2554128110681879,0.2633987224210574,0.2707613841685154,0.2785989791440516,0.2852726021164145,0.2920898483631726,0.2975229346825027,0.3025214162642269,0.3064839777917297,0.3109503099380123,0.3153956578629775,0.3202115006722515,0.3240581007940793,0.3235638133394281,0.3221899091881807,0.3211742397640283,0.3193376529877609,0.3188965884861407,0.3173772392956328,0.315671618254644,0.3160614136921794,0.3169458379389507,0.3176119615015804,0.3185538754125259,0.3203530429312785,0.3204751484839012,0.3212245170182966,0.3229729084046061,0.3239119170984456,0.3250791497060153,0.3285037701751106,0.3316492490829815,0.3333594208569752,0.3391729020117389,0.3434460276565539,0.3464064552448864,0.3466970387243736,0.3501413760603205,0.3505815333491573,0.3513390830685429,0.349402390438247,0.3462887989203779,0.356282919488337,0.0,2.351866801784601,57.02588886152899,184.67481969626647,254.75464358381183,fqhc8_80Compliance_implementation_low_initial_treat_cost,82 -100000,95739,44637,421.4374497331286,6048,61.99145593749673,4720,48.70533429427923,1838,18.801115532854947,77.34438518034166,79.69639151936927,63.33412346583962,65.07199130734514,77.10641446325836,79.46268331920352,63.244725606955576,64.98727449517324,0.2379707170833001,233.70820016575067,0.0893978588840411,84.71681217190508,165.97042,116.23102519886376,173357.16896980332,121404.0518481118,359.39183,233.91389887910145,374799.0891904031,243736.5847555348,367.44444,178.42558358284,380574.63520613336,183895.70710221876,3120.60548,1445.4779688189385,3219339.1616791487,1469683.5815610783,1116.99235,501.9762801903736,1149614.9531538873,507342.000229592,1807.0312,774.7583282484208,1849272.1879275949,775290.1234876427,0.38066,100000,0,754411,7879.871316809242,0,0.0,0,0.0,30761,320.6843606053959,0,0.0,33611,347.7788571010769,1573023,0,56519,0,0,6633,0,0,51,0.5326982734308902,0,0.0,0,0.0,0,0.0,0.06048,0.1588819418904009,0.3039021164021164,0.01838,0.3285488958990536,0.6714511041009463,24.38248871259438,4.380470996197792,0.3186440677966101,0.2298728813559322,0.2288135593220339,0.2226694915254237,11.172256891646436,5.683852464031371,19.914688502050204,12267.027769780543,53.95366028793203,13.18788883622472,16.998601554938396,12.010496567161107,11.75667332960781,0.5548728813559322,0.808294930875576,0.6735372340425532,0.5648148148148148,0.1132254995242626,0.7268656716417911,0.9225512528473804,0.8629441624365483,0.7218045112781954,0.1535269709543568,0.4866863905325443,0.7306501547987616,0.6063063063063063,0.5135135135135135,0.1012345679012345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474008346501,0.0046840306996644,0.0067370813421402,0.0092115820155794,0.0113264330886389,0.0136512170044689,0.0157151301441063,0.0181335782437879,0.0203533222302827,0.0226849483270234,0.0246946471022214,0.0271268897989346,0.0293857574698225,0.0315547728653669,0.0335269298616627,0.0357043206878378,0.0376672980778188,0.0398120877753349,0.0420499069830283,0.0438849595316715,0.0580380447265665,0.0718449446903812,0.0848892338675841,0.0979103347460746,0.1101374081221593,0.125212812080324,0.1373385095144148,0.15001329999468,0.1609078771695594,0.1712496917848604,0.1848646321115237,0.19647995499881,0.2078376791422917,0.2179540435951813,0.2281795785491179,0.2393246609465817,0.2498939803138182,0.2586090555343125,0.267125774318713,0.2739129936903821,0.280576122165664,0.2869610997367651,0.2928569737994367,0.2978769341489744,0.3029540787187245,0.3075281023654109,0.3131102949471652,0.3179408090953121,0.3224614666649382,0.3270277410832232,0.3253357761582088,0.3236808059676842,0.322932961287504,0.3216288886318955,0.3204948993248669,0.3183136189994017,0.3161601421229617,0.3170335085413929,0.3180334034223977,0.3187411813034703,0.3196515548894717,0.3221410231088287,0.3235725357127896,0.324390243902439,0.3245052246352386,0.3248488953730721,0.3247836483716693,0.327608442640999,0.3305010357782381,0.3343002463641421,0.3366966639396418,0.3397367862449586,0.3426507537688442,0.3447312801932367,0.3453149864270336,0.3427224513847967,0.3395419847328244,0.3436665982344488,0.3461965574680733,0.3503875968992248,0.0,2.307740514730848,58.69072482599328,176.4515514303418,249.79200662267223,fqhc8_80Compliance_implementation_low_initial_treat_cost,83 -100000,95667,44705,421.4828519761255,6079,62.28898157149278,4763,49.16010745607158,1890,19.34836463984446,77.28108161739658,79.6686010058942,63.29287913429015,65.05573697930161,77.04808790635636,79.43813261698122,63.20743946370782,64.97382871109637,0.2329937110402227,230.46838891298196,0.0854396705823319,81.90826820523966,165.39754,115.86544493589544,172888.35230539265,121112.84407151418,360.19093,234.2048496265081,375843.1747624573,244152.2394979544,370.6832,179.96342622664872,383574.5450364284,185089.47892729903,3107.99203,1421.3112674102665,3208738.112410758,1445981.6492392148,1136.31432,506.7246292263719,1169760.209894739,512054.93090555526,1846.85306,764.1371666886917,1892721.544524235,767447.4193596254,0.37953,100000,0,751807,7858.561468426939,0,0.0,0,0.0,30721,320.434423573437,0,0.0,33943,350.9047006804854,1571976,0,56422,0,0,6505,0,0,52,0.5435521130588395,0,0.0,1,0.0104529252511315,0,0.0,0.06079,0.1601717914262377,0.3109063990787958,0.0189,0.3325482807348092,0.6674517192651908,24.67529086296722,4.373017163838678,0.3298341381482259,0.2359857232836447,0.2162502624396388,0.2179298761284904,11.43031874804624,6.012536836399063,20.046640561243507,12316.584790783752,54.27289510439371,13.606768752954904,17.754002295663362,11.633962477116327,11.278161578659123,0.5719084610539575,0.802491103202847,0.6906429026098027,0.6009708737864078,0.1136801541425818,0.7587786259541984,0.9303944315545244,0.8728606356968215,0.7293233082706767,0.2058823529411764,0.5010136113524472,0.7229437229437229,0.6265060240963856,0.556282722513089,0.0911270983213429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00237046041635,0.0047445736473403,0.00699229730964,0.0092653737135658,0.0115940849826088,0.014011649219991,0.0162224442767706,0.01855065953363,0.020833120368004,0.0229889763457149,0.0250586992853554,0.0272598464002628,0.0297614150555327,0.0321872713972201,0.0341816830763514,0.0362803585645012,0.0385232911051492,0.0407277860234361,0.0427329089169059,0.0448713271698231,0.0590914789585858,0.0725759162303665,0.0856531049250535,0.0990614675617095,0.1112553016395518,0.1263567695660453,0.1387355638586956,0.1507257798272612,0.161921765252996,0.1723712181400442,0.1854691729485479,0.1976249038367771,0.2090397325754853,0.2194534466146973,0.2288701361653373,0.2383011754269239,0.2485527815650074,0.2577716705712741,0.2663273190019543,0.2746399743166391,0.2818534607587605,0.2879336402938385,0.2935847266690383,0.2991822471991066,0.3040035035217693,0.3087068635797214,0.3126895030946952,0.3171726440824858,0.3221701967600098,0.3263684092201489,0.3248498751771135,0.3236421813367169,0.3228880907265476,0.3216331028083453,0.3209221180084398,0.3201240576683914,0.3187426650172867,0.3190008392160735,0.3197164771949048,0.3202981179961037,0.3220669971458615,0.3228610554309643,0.3236731255265375,0.325401105568289,0.3257191201353638,0.3268079767909882,0.3272025171624714,0.3302297689685646,0.3334972428084717,0.3362712402731459,0.3400264080499021,0.3428541091526863,0.3461732442314966,0.3527941844616084,0.355578435043055,0.3581514762516046,0.3613266392819108,0.3622346816179415,0.360043313481321,0.3587962962962963,0.0,2.307523849455235,57.55823098037709,173.83386857666062,263.1029247451606,fqhc8_80Compliance_implementation_low_initial_treat_cost,84 -100000,95734,44806,424.2275471619279,6072,62.26627948273341,4780,49.42862514884994,1906,19.564626987277247,77.3612597271838,79.7286684213483,63.34108899169471,65.09001705526354,77.11901075475089,79.48607995843317,63.25028373924447,65.00174822021732,0.2422489724329182,242.5884629151369,0.0908052524502451,88.26883504622174,166.11914,116.3726739063644,173521.57018405164,121558.3532562772,362.1612,235.09712210315027,377676.5516953225,244950.37510513532,372.92734,181.02229120452975,386908.1726450373,187045.7038984052,3113.58423,1436.524414765949,3219392.7758163246,1467601.5467503185,1116.23374,495.4357135876441,1149025.1008001338,500563.7115211351,1862.90134,790.958884436164,1913048.8645622248,796667.568677048,0.38214,100000,0,755087,7887.344099275075,0,0.0,0,0.0,30789,321.0875968830301,0,0.0,34005,352.59155576911024,1573884,0,56476,0,0,6550,0,0,90,0.9087680447907744,0,0.0,1,0.0104456097102387,0,0.0,0.06072,0.158894645941278,0.3138998682476943,0.01906,0.3301352626612142,0.6698647373387858,24.49790296453412,4.315402518972953,0.3173640167364017,0.2368200836820083,0.2238493723849372,0.2219665271966527,11.079691183151173,5.76546920642455,20.4102450704028,12301.509146245511,54.28314596082107,13.43894998708373,17.2707311742243,11.980825743591652,11.592639055921392,0.5625523012552301,0.7941696113074205,0.7040210942649967,0.5700934579439252,0.1055607917059378,0.7155688622754491,0.923809523809524,0.8543689320388349,0.6776556776556777,0.1341991341991342,0.5031939605110337,0.7176966292134831,0.6479638009049774,0.533249686323714,0.0975903614457831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026134257148934,0.0049578230188985,0.0072862332812404,0.0094177647285916,0.0115325943252313,0.0136555263640251,0.0158056818877082,0.0180936335324449,0.0200803623462533,0.0221846846846846,0.0243814913926568,0.0265598521029117,0.0287257019438444,0.0306164496456238,0.0327430706045033,0.0346952278554296,0.0367213793817635,0.0386862450059668,0.0408560108977092,0.0428648828873885,0.0575551587674508,0.071596796985398,0.0852041458604338,0.0986697513013302,0.110974080047223,0.1270470572065928,0.1397529031231772,0.1510311362717347,0.1613185780208511,0.1714426612635212,0.1843054493771063,0.1961791845609632,0.2078626643038084,0.2179506799003104,0.2277704485488126,0.2387866446807804,0.248893398298565,0.2578129389686134,0.2664301019193488,0.2742714557150378,0.2815914530507475,0.2877911393144713,0.2932945365080491,0.298522474197179,0.3042945678143912,0.3098629665165941,0.3149510875676216,0.3191854478892575,0.3238457655418786,0.3277686866554054,0.3270206608789286,0.3253800269386184,0.32442511750964,0.3235281369645308,0.3221439610080837,0.3206610810728016,0.3195171726440018,0.3197487536079769,0.319982259220088,0.3203233750936931,0.3217503699679673,0.3232039277017797,0.3255053258408119,0.326677994902294,0.3275430661149071,0.3291086314579141,0.3295951938206265,0.3325114588272483,0.3347312775330396,0.3393675983890905,0.3422023782404665,0.3425107216604013,0.3460548615906095,0.3487684729064039,0.350196005226806,0.3503004595263344,0.3461421164989326,0.3448484848484848,0.3517222066647997,0.3492573263749498,0.0,1.9820448298405744,58.78518496939759,174.7496566260607,258.0403793835249,fqhc8_80Compliance_implementation_low_initial_treat_cost,85 -100000,95650,44598,423.1991636173549,6035,61.91322530057501,4718,48.72974385781495,1863,19.10088865656037,77.2430810454354,79.64684892763123,63.27207635196621,65.0496518395209,77.0100181267764,79.41470128868453,63.185672960197145,64.9662019038736,0.2330629186590016,232.14763894669943,0.0864033917690676,83.44993564730885,166.441,116.6077044450076,174010.45478306324,121910.82534762946,364.17575,236.4119607791636,380147.7783585991,246573.5083943164,367.33816,177.39930081519793,379628.1547307893,182209.6685453845,3100.91304,1411.7882441919187,3202822.143230528,1437195.296026635,1132.49021,503.51079421295566,1164287.820177731,506816.0913875938,1824.11256,763.212638639538,1870800.669106116,767858.5162353456,0.37994,100000,0,756550,7909.566126502875,0,0.0,0,0.0,31102,324.5582854155776,0,0.0,33559,346.48196549921585,1564697,0,56181,0,0,6649,0,0,69,0.7213800313643491,0,0.0,2,0.0209095661265028,0,0.0,0.06035,0.1588408696109912,0.3086992543496272,0.01863,0.3301367709479642,0.6698632290520359,24.86576004753177,4.349334781229558,0.3291649003815176,0.2225519287833827,0.228486646884273,0.2197965239508266,11.145895734806864,5.806654325344427,19.925699085677834,12240.912789307567,53.518402533125474,12.501046995594534,17.656462753246032,12.027869183072143,11.333023601212762,0.5635862653666808,0.7676190476190476,0.7173213135866066,0.5769944341372912,0.1128254580520733,0.7380015735641228,0.93646408839779,0.8744075829383886,0.7083333333333334,0.1928251121076233,0.4992747316507108,0.6787790697674418,0.6587091069849691,0.5343980343980343,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021992054483541,0.0045239689205363,0.0067916713196552,0.0092157002204858,0.0113718429912626,0.0133611691022964,0.0154065765995411,0.0174707714300301,0.0194087390455154,0.0217709645376998,0.0239462619218541,0.0260331087742359,0.0280445916205598,0.0301953269872666,0.0321112280919056,0.0340192327577292,0.0359455119904697,0.0378746989952669,0.0400045767066435,0.0421184320266889,0.0569093797023909,0.0708704305017283,0.0846920242307167,0.0980148622192282,0.110477698601214,0.1259911707725044,0.1376365104321591,0.149046405765274,0.1601348098218584,0.1706491972292326,0.1835748271062824,0.1958333784970246,0.207118119840561,0.2166704992170647,0.2274250071631659,0.2379003183688863,0.2469454598298623,0.2564943480857873,0.2643585401061617,0.2720226561335519,0.279597181662263,0.2872167242489898,0.2940995297155786,0.2992705108823459,0.3040251143774944,0.309711350897553,0.314862408324453,0.3192930104441639,0.3241488560521464,0.3270615010056102,0.3257893530070269,0.3238450834240366,0.3228055320349985,0.3221696132516687,0.3211853926724973,0.3196051944862309,0.3178354868408521,0.3186279353160096,0.319274221157138,0.3196727181580549,0.3192674709679848,0.3208559337187817,0.3230167574273039,0.3237143498764878,0.3259747153059255,0.3258821986094713,0.3265370679243112,0.3312031383466734,0.3337335357886931,0.3366074650202462,0.3399944746293397,0.3426749544528989,0.3470707583058585,0.3512498083116086,0.3506036695503375,0.3466571496550083,0.3477047146401985,0.3504308576118178,0.3570637119113573,0.3623356535189482,0.0,2.319922237974889,55.80001779785951,173.04497097753463,261.21389062613093,fqhc8_80Compliance_implementation_low_initial_treat_cost,86 -100000,95825,44632,422.08192016697103,6009,61.52882859379076,4719,48.74510827028437,1876,19.27471954082964,77.44904619750217,79.7756095815526,63.38601454967061,65.1069818468207,77.21284429265641,79.53893828180743,63.29835540318757,65.02114413858601,0.2362019048457568,236.6712997451685,0.0876591464830482,85.83770823469195,167.0383,117.0440391975222,174315.99269501693,122143.53164364435,360.67741,233.66642167531236,375898.1267936342,243363.28973389423,372.31819,180.16016629747568,385352.5489172972,185552.60338719588,3099.60364,1423.753034977208,3202851.500130446,1454615.319576449,1122.24933,498.53915869455966,1159455.3926428384,508784.6243074471,1835.16438,775.6186556036481,1886638.0172188885,785348.8093923669,0.37888,100000,0,759265,7923.454213409861,0,0.0,0,0.0,30676,319.6138794677798,0,0.0,34057,352.2254109052961,1574946,0,56479,0,0,6769,0,0,75,0.7826767545003913,0,0.0,0,0.0,0,0.0,0.06009,0.1585990287162162,0.3121983691129972,0.01876,0.3366132359942866,0.6633867640057134,24.5328502442084,4.307155736298963,0.3151091332909514,0.2441195168467895,0.2208094935367662,0.2199618563254927,10.965665201669836,5.6612810236471685,20.11314841899705,12217.184219783125,53.76076869775035,13.965348851343348,16.75348460049147,11.771579671665206,11.270355574250315,0.56728120364484,0.7881944444444444,0.7020847343644923,0.5950095969289827,0.1011560693641618,0.7107692307692308,0.8914549653579676,0.860655737704918,0.7472118959107806,0.0948275862068965,0.5127230184264405,0.7260083449235049,0.6503122212310437,0.5420439844760673,0.1029776674937965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090244371752,0.0047134907199983,0.0070926303613284,0.0094269664062738,0.0116843100765734,0.0138983637603983,0.0158029424059215,0.0179120015513528,0.0201124169647419,0.0219582322906754,0.0241123123430855,0.0261494252873563,0.0285773026315789,0.0307229783991928,0.032859249785992,0.0351674690579994,0.0372390523603018,0.0391115903859314,0.0411523916386153,0.0428790039662297,0.0576220975111092,0.0712605463726751,0.0840625884276386,0.0967724990019121,0.1081374398094977,0.1231017975462067,0.1360610557557769,0.1483533427620455,0.158910510818077,0.1695884513648679,0.1829630266921902,0.1957151191685213,0.2068358993290047,0.2181044360779178,0.2282028762762103,0.23750939558739,0.2471961419804648,0.2561874936862309,0.2650940619835646,0.2727999725817691,0.2799367504991863,0.2866508790144772,0.2932751297781972,0.2989733844848398,0.3042593153589821,0.308599176347655,0.313459091249345,0.3175372282401887,0.3218292856128391,0.3262696815437433,0.3255586123599275,0.3240273281018493,0.323206940603372,0.3217475224706153,0.3202509915349553,0.3179690478005642,0.314698195787021,0.3155102040816326,0.3167778853174401,0.3174992011928852,0.3191814522141046,0.3192078741085636,0.3203343198966192,0.3206807448988684,0.3214627837915509,0.3229657637126431,0.3249985825253728,0.3287589871834948,0.3318864423985718,0.3335306420425397,0.3346508563899868,0.3368029739776951,0.3397923875432526,0.3437736993781283,0.346679227508243,0.3465580351871531,0.349709213345577,0.3473127035830619,0.353638368246968,0.3477272727272727,0.0,1.93490961370091,57.0759551142859,183.42484890737617,246.19548535409143,fqhc8_80Compliance_implementation_low_initial_treat_cost,87 -100000,95815,44297,419.3393518760111,6071,62.21364087042739,4781,49.386839221416274,1840,18.859260032354012,77.3497797498425,79.68243318470888,63.33168066437421,65.05976730896391,77.123337656039,79.45750009060981,63.24754887124941,64.97872193553499,0.2264420938034987,224.9330940990717,0.0841317931247971,81.04537342892115,165.67364,116.109098984256,172909.92015863903,121180.50303632628,360.41215,233.9995498689954,375583.9691071336,243649.92941501373,369.34937,178.05235948243651,382575.9536607003,183568.8204742032,3156.41965,1445.6256699723458,3262055.4401711635,1476537.5358475666,1168.39999,512.895538815317,1206796.6080467568,522669.2828318713,1811.08002,754.6397773246737,1858057.9032510568,759874.158006511,0.37796,100000,0,753062,7859.541825392684,0,0.0,0,0.0,30693,319.81422533006315,0,0.0,33922,351.05150550540105,1576259,0,56545,0,0,6527,0,0,57,0.5844596357564056,0,0.0,0,0.0,0,0.0,0.06071,0.1606254630119589,0.3030802174271125,0.0184,0.3398394459310562,0.6601605540689438,24.29839138546461,4.422066613056446,0.3147877013177159,0.2380255176741267,0.2202468102907341,0.2269399707174231,11.355612460009556,5.8406680904402375,19.570972232910727,12143.852516343451,54.50781854248271,13.764006123284558,17.185997200375745,11.7169314839639,11.840883734858512,0.5768667642752562,0.7952548330404218,0.7169435215946844,0.5916429249762583,0.1391705069124424,0.7572298325722984,0.9280898876404494,0.8697674418604651,0.7364016736401674,0.16,0.5085087972310355,0.70995670995671,0.6558139534883721,0.5491400491400491,0.1344632768361582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0043395824672756,0.0067083443278462,0.0090115717928659,0.0111484080968365,0.0134820019347283,0.0155689233278955,0.0175678572522278,0.0196551406931937,0.0218425981842188,0.0237926828018164,0.0258842856409466,0.0278443267698318,0.0300577677550894,0.0320184848984981,0.0339946269890473,0.036249961182937,0.0383163222969048,0.0400756418648629,0.0422093810193138,0.0567657798643714,0.0710954492220177,0.0845745071116375,0.0972908215809495,0.1090217242360679,0.1237179893844234,0.1362170647884933,0.1481071531199778,0.1593710611207246,0.1693768100396868,0.1818034888857761,0.194556277056277,0.206147888702765,0.2163438415460627,0.2260111982575599,0.237428403664846,0.2464211195786795,0.2556483991048032,0.2645563875652371,0.2724483370542103,0.2793008513788635,0.285624086524408,0.2920536147357712,0.2972341954022988,0.3020255591829799,0.3069622590413353,0.3114604551191532,0.3154649921187776,0.3191225165562913,0.3225917083272876,0.3222653094199386,0.3216041646582473,0.3202954318012037,0.3189326924469025,0.3186286904142187,0.3170499992338456,0.3146001583531275,0.3156978939247197,0.3160691705683333,0.316516548716849,0.3163223217968428,0.3165483277625047,0.3173403141361257,0.3185147144196847,0.3187511998464196,0.3194411925388277,0.3215625,0.3244605893589703,0.3260778568438677,0.3264968704483722,0.3309183119000181,0.3336850991979738,0.335738939441481,0.3358516483516483,0.3396173325830051,0.3416127133608004,0.3457129756992205,0.3484299516908212,0.3483941208492107,0.3442812982998454,0.0,1.9645245262530453,57.9244843196095,178.97734677555258,259.2189014136778,fqhc8_80Compliance_implementation_low_initial_treat_cost,88 -100000,95803,44639,421.7195703683601,6042,61.96048140454892,4737,48.90243520557812,1847,18.9138127198522,77.41775944651599,79.74308424476409,63.37436231324406,65.09421664511413,77.19111213625531,79.51992233055775,63.290657922508046,65.01422338044341,0.2266473102606738,223.16191420634368,0.0837043907360168,79.9932646707191,166.58026,116.6260434375943,173877.68650251036,121735.04320072888,359.7828,233.5665561718232,374998.5386678914,243252.93171594132,366.75695,177.5341179060918,379034.8840850496,182497.60527990083,3102.43012,1418.100192062855,3201802.542717869,1443790.7435421909,1127.20942,501.6198672975255,1163596.860223584,510711.26438681054,1808.97154,754.5926792729065,1853830.3602183647,758295.6988108308,0.38065,100000,0,757183,7903.531204659562,0,0.0,0,0.0,30697,319.8542843125998,0,0.0,33594,346.98287110007,1576668,0,56544,0,0,6631,0,0,68,0.6993517948289719,0,0.0,1,0.0104380864899846,0,0.0,0.06042,0.1587284907395245,0.30569347898047,0.01847,0.3396077190762417,0.6603922809237583,24.580623574091764,4.315941335813553,0.3156005910914081,0.2434029976778551,0.2206037576525227,0.220392653578214,11.394510455634588,6.0022617372338605,19.64168728096438,12273.227854641907,53.7727188315318,13.785813226002675,17.052503692194946,11.609266389320988,11.325135524013184,0.5704032087819295,0.7875108412836079,0.7163879598662207,0.5712918660287082,0.1206896551724138,0.7434885556432518,0.9275,0.8621553884711779,0.7312252964426877,0.1953488372093023,0.5072046109510087,0.7131474103585658,0.6633211678832117,0.5202020202020202,0.1013268998793727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023289016697212,0.0046019887889876,0.0069101277511136,0.0089476143080579,0.0112767428617912,0.0137220570870149,0.0158597492610335,0.0180554421490977,0.0203295243157055,0.0224034879436688,0.0244464944649446,0.0266172575909996,0.0288231242868743,0.031018366002306,0.033149797904809,0.0352100310889391,0.0372463183168265,0.0391888529484946,0.0411277672162142,0.0433515179277891,0.0584080214517492,0.0723321067157313,0.0856927221459344,0.0981417872036471,0.1106933341759086,0.1253776754209892,0.1390180604840845,0.1505251743493791,0.1614083755668178,0.1711016840210824,0.1838448798743897,0.1958689381745114,0.2066404638335758,0.2162790697674418,0.2262919669537704,0.2372377022886408,0.2473419075853153,0.2566388573866762,0.2652088240623301,0.2724518378780083,0.279350964314586,0.2859877220419691,0.2929760358871444,0.2992271987750023,0.3045719136551055,0.308707156482678,0.3138210163393794,0.317857914057439,0.3224976734567263,0.3266590313705356,0.3255564062269143,0.3244881132334753,0.3237726825151217,0.3230533998788333,0.3221608949820469,0.3204381013568292,0.3188955233311218,0.3203425633300037,0.3215835048740239,0.3218180201013964,0.322285329945445,0.3232750147434637,0.324384087448109,0.3248598879103282,0.3261396062633384,0.3261711138247291,0.3283294077584494,0.3315482901164975,0.3355451561081232,0.3363991631468835,0.3416866814700684,0.3429039763113367,0.3473380573148554,0.3510855586655571,0.3510977669356352,0.355946299156469,0.3599938118811881,0.3615899411883999,0.3653637350705754,0.3610260336906585,0.0,2.062796719157865,55.65863419307775,179.0681192745371,258.22176850324627,fqhc8_80Compliance_implementation_low_initial_treat_cost,89 -100000,95720,44595,423.7254492269119,6080,62.233597994149605,4758,49.11199331383201,1853,18.96155453405767,77.3893283971574,79.74898377748386,63.35181630130408,65.09320161716155,77.15547230994346,79.51836238191535,63.26438598780632,65.00967213807675,0.2338560872139368,230.62139556850525,0.0874303134977623,83.52947908480246,165.23804,115.68686266085616,172626.45215211032,120859.65593486853,357.4197,230.90306642936676,372822.87923109066,240649.21273439904,364.20662,175.50053217741356,377005.3175929795,180626.96523795897,3094.96269,1424.0857314006682,3196582.229419139,1450994.0988306166,1132.40939,509.4989910505586,1165122.8374425408,514396.1965328991,1816.83708,772.4594212866145,1861457.5219389887,775533.8921349262,0.38193,100000,0,751082,7846.656916005015,0,0.0,0,0.0,30495,317.9690764730464,0,0.0,33376,345.1002925198496,1583444,0,56828,0,0,6427,0,0,69,0.7208524864187212,0,0.0,1,0.0104471374843292,0,0.0,0.0608,0.1591914748775953,0.3047697368421053,0.01853,0.3298388358629322,0.6701611641370677,24.233980380328678,4.309765726275862,0.3238755779739386,0.2385456073980664,0.2173182009247583,0.2202606137032366,11.155213929407276,5.782517661982078,19.95374715399494,12290.227081528725,54.0574075198096,13.498781765698949,17.392414684755238,11.481461352946432,11.684749716408962,0.5741908364859184,0.7947136563876652,0.7222582738481506,0.5754352030947776,0.116412213740458,0.7417582417582418,0.949748743718593,0.8929503916449086,0.7322834645669292,0.1631799163179916,0.5129161882893226,0.7109905020352781,0.6658031088082902,0.5243589743589744,0.1025957972805933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020762226926076,0.0043783635866095,0.006532566466835,0.0085192368225988,0.0108372981985279,0.0129979846507745,0.0151332952877873,0.0173261770167955,0.0193017053756628,0.0212935771367761,0.0235167537657546,0.0254239896580381,0.0275380189066995,0.0294804887338006,0.0316502691665119,0.0337298101664789,0.0353552608421074,0.0372798373545215,0.0391555620231586,0.0411279989165876,0.056325379836057,0.0709868469241474,0.0839512906304737,0.0967646966048766,0.1087252142563486,0.1247567681895093,0.1372415914466636,0.1489647096396444,0.1603709084693615,0.1716329090850605,0.1838084059313181,0.1966986132444886,0.2072118102361177,0.2177160102346534,0.2278538109487766,0.2388241548890168,0.247871260057808,0.2567980927104653,0.2656569094622192,0.273746664070464,0.2812424112769869,0.2879221857207992,0.2944675014484528,0.3007017291756478,0.3056358206055897,0.3111239718268236,0.3170969678775142,0.3204851135236836,0.3247948432524787,0.3295978905735003,0.328390912757091,0.3273691732629727,0.3254918493535694,0.3242708634132255,0.3237846578350072,0.3222493887530562,0.3198289195416811,0.3194587607781541,0.3209150994821477,0.3223835396811259,0.3248864719403487,0.3264831177027453,0.3280122183400631,0.3287793552995803,0.3301623906985683,0.3318200684860434,0.3336358222499503,0.3373452544704264,0.3418842145620578,0.3437955342023392,0.3476942571389781,0.3498545358370801,0.3497521490870302,0.3517610679538426,0.3529576675077095,0.3550469483568075,0.3575858417788534,0.3655268946210758,0.3725381414701803,0.3797761482053261,0.0,2.281675161428938,55.69028350218649,180.8541865905761,258.5859305765275,fqhc8_80Compliance_implementation_low_initial_treat_cost,90 -100000,95673,44383,421.1951125186834,6067,62.15964796755616,4728,48.84345635654783,1837,18.77227639982022,77.35982293729873,79.73400212362758,63.33991942654043,65.08937081311203,77.12852262412817,79.50725792915958,63.2530580612878,65.0070736834975,0.2313003131705642,226.7441944679973,0.0868613652526306,82.29712961453117,166.35608,116.43084566905792,173879.86161194902,121696.66015391795,357.84689,231.4564597970713,373456.0220751936,241349.33554615348,360.2593,174.31237948001962,373409.1122887336,179736.9556941489,3090.78112,1410.4213539129453,3194919.695211816,1438707.1362250184,1101.12927,483.201972798736,1136994.2407993898,491163.37832746113,1793.52692,757.367421692147,1834984.9800884265,757687.0596985767,0.37944,100000,0,756164,7903.63007327041,0,0.0,0,0.0,30570,318.9301056724468,0,0.0,33061,342.38499890251165,1576919,0,56544,0,0,6533,0,0,53,0.5539702946494831,0,0.0,0,0.0,0,0.0,0.06067,0.1598935273033944,0.3027855612328993,0.01837,0.3458457672373174,0.6541542327626826,24.410514528502947,4.315680217686051,0.3238155668358714,0.2347715736040609,0.2246192893401015,0.2167935702199661,11.225423198803789,5.888528578062817,19.503327723388544,12179.581061668348,53.25416741311136,13.260153579104465,17.24086688552012,11.71292291243765,11.040224036049118,0.5653553299492385,0.7981981981981981,0.6956237753102548,0.5743879472693032,0.1092682926829268,0.7345340642129993,0.9074550128534704,0.8723897911832946,0.7032520325203252,0.1706161137440758,0.5027528252680382,0.739251040221914,0.6263636363636363,0.5355392156862745,0.0933660933660933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022076396483979,0.0041252369223908,0.006543905037285,0.0085718348195242,0.0108182853424434,0.0128861519670212,0.0150500820265134,0.0172427865975594,0.019407955218697,0.0214624764710696,0.0236031716761939,0.0257912285201333,0.0277406623224453,0.0296228416099504,0.0317692807558613,0.0335800070281332,0.0355297893265697,0.0376493528045137,0.0398186846318591,0.0418651186543131,0.0564488324713994,0.0702527801629353,0.0834899075250081,0.0960362806065006,0.1079396221638555,0.1236706489878414,0.1361045357563663,0.1480128252926702,0.1591365891207663,0.1701246149387658,0.182976109656354,0.1950382258029584,0.2066076131194637,0.2159523705292649,0.2258650690513425,0.2354563885534493,0.2450161848420582,0.2544606217325313,0.2629406160685932,0.2705035312432036,0.2776486370838104,0.2844694488631047,0.2910874220607896,0.2970875646675608,0.3031869078380706,0.3086561065366958,0.3130038117852902,0.3176654467825556,0.3221993767053316,0.3273168352077208,0.3266611999085886,0.3248058285792838,0.3242558224675434,0.3230778111290695,0.3212077172897543,0.3197687755195669,0.3177546435464987,0.3180423115429434,0.3185898203080921,0.3196106447579925,0.3201715773502913,0.3211823049414182,0.3221589004358028,0.3222778473091364,0.3231493490896863,0.3242659870491249,0.3267675190872193,0.3305430147980938,0.3340795410822344,0.3371498752030427,0.3407882176462566,0.3421794394511514,0.3447751741608613,0.3453501722158438,0.3454545454545454,0.345837799214005,0.3543451652386781,0.3577464788732394,0.3625605164066702,0.3687428353076041,0.0,2.235277822211793,55.791949187377256,166.57270078036342,267.0004780963406,fqhc8_80Compliance_implementation_low_initial_treat_cost,91 -100000,95866,44647,421.3276865624935,6059,62.19097490246803,4692,48.4739115014708,1855,19.04742035758246,77.34109898624328,79.63243123934646,63.34986309044478,65.04432431484618,77.11429377819306,79.40519439531683,63.26563028770957,64.96163736595801,0.2268052080502229,227.2368440296333,0.0842328027352081,82.68694888816697,166.41526,116.51035370374824,173591.534016231,121534.5938119336,358.4537,232.627042435605,373428.6295454072,242176.58721124227,364.45288,176.77364377732425,377033.0878517932,181971.99976715972,3072.09843,1399.7228688181292,3175524.941063568,1431096.4117841795,1073.41666,473.9049762776344,1107946.466943442,482653.5838969415,1813.84954,762.2353788846422,1864197.3379508895,771926.1669098844,0.38081,100000,0,756433,7890.524273465045,0,0.0,0,0.0,30560,318.27759581081926,0,0.0,33304,344.44954415538353,1574598,0,56565,0,0,6667,0,0,69,0.6988922037009994,0,0.0,0,0.0,0,0.0,0.06059,0.1591082166959901,0.3061561313748143,0.01855,0.3277681524649551,0.6722318475350448,24.662868515846057,4.409583590310949,0.3243819266837169,0.2261295822676896,0.2282608695652173,0.2212276214833759,11.334488335334276,5.861729964384617,19.72467159681828,12299.168223256838,53.16382797733736,12.816526493473036,17.294368213100416,11.780495014508016,11.272438256255889,0.5620204603580563,0.8011310084825636,0.7043363994743759,0.5723622782446312,0.0982658959537572,0.7362637362637363,0.9225,0.8710462287104623,0.7407407407407407,0.1409090909090909,0.4970743124634289,0.7276853252647504,0.6426642664266426,0.5229468599033816,0.0867970660146699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026732823654498,0.0047826042901581,0.0065828845002992,0.0091071537352529,0.011210944646596,0.0134535536920947,0.0158215919394439,0.017923998979852,0.0202336935427859,0.022597078440198,0.0247884784790936,0.0269635494656519,0.028840820854132,0.0311953412762104,0.0331997238508382,0.0353490004231559,0.0371718383257679,0.0394322420223787,0.0414118868414222,0.0435696302615426,0.0579844637922944,0.0717525342251018,0.0857711442786069,0.0988049733271726,0.1109344564359041,0.1262079526852194,0.1388000254231902,0.1497884464099674,0.1606965651909472,0.1711392133747722,0.1843725114607322,0.197119127952245,0.2086508462784402,0.2186065322897993,0.2282133937706974,0.2390480622216313,0.2486191544203796,0.2573819728005939,0.2656680851063829,0.2736445472661887,0.2806607593179557,0.2877924993860583,0.2946256402976422,0.3003738049025951,0.3053072625698324,0.3102980695742215,0.3148970781455296,0.3185992673247176,0.3224892270662681,0.3270197853833665,0.326313521665365,0.3250034383166001,0.3236881031203775,0.3229814563022536,0.3228244536027256,0.3209342958296933,0.3191620846471977,0.3193459773329166,0.3199087494211077,0.3202692998204668,0.3214083870238499,0.3219157681539286,0.3232823061211598,0.3232666471633998,0.3231674821956301,0.3269699750885014,0.3279729884399679,0.331606544949144,0.3360036541231861,0.3384279475982533,0.3402822030040965,0.3431663837011884,0.3452838510490832,0.3483513143899103,0.3505524601001039,0.3534236804564907,0.3530223995090518,0.3548972188633615,0.3496312482928161,0.3390804597701149,0.0,1.812664038324178,56.17668241557481,168.52847947446867,263.25752631324525,fqhc8_80Compliance_implementation_low_initial_treat_cost,92 -100000,95640,44856,424.92680886658303,6063,61.930154746967794,4761,49.173985780008366,1891,19.312003345880385,77.31769350596971,79.73728946722072,63.289715480586615,65.08023491088962,77.07011018082909,79.49383785151605,63.19657238937506,64.99138211685516,0.2475833251406243,243.45161570467155,0.0931430912115516,88.85279403445168,164.82664,115.43352778560616,172340.69427017984,120695.86761355728,356.95164,231.52926074916147,372595.4412379758,241465.251096712,365.34606,177.2982022162311,378460.3199498118,182669.0142660116,3115.32784,1430.3295704466202,3217735.455876203,1456526.3730949445,1111.82183,498.38756479391054,1147269.0715181932,506090.5010032825,1848.46348,787.0177440050203,1889240.025094103,786284.4554232821,0.38245,100000,0,749212,7833.667921371811,0,0.0,0,0.0,30458,317.80635717273105,0,0.0,33497,346.70639899623586,1579348,0,56659,0,0,6514,0,0,47,0.4914261815140108,0,0.0,0,0.0,0,0.0,0.06063,0.158530526866257,0.3118918027379185,0.01891,0.3380436489244779,0.6619563510755221,24.43209045592098,4.285285446217712,0.3282923755513547,0.2247427011132115,0.2325141776937618,0.2144507456416719,11.156620954561706,5.739007248948103,20.327994390619946,12305.907534052163,53.92959278786343,12.888547414188846,17.66446489262562,12.138772713093632,11.237807767955337,0.5555555555555556,0.788785046728972,0.6826615483045425,0.5537488708220416,0.118511263467189,0.7295839753466872,0.905940594059406,0.852803738317757,0.7109375,0.1619047619047619,0.4903263066705169,0.7177177177177178,0.6185022026431718,0.5064629847238543,0.1072749691738594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025326201474997,0.0049791100474587,0.0068527918781725,0.0088110651531011,0.0111103197777936,0.0134678076609616,0.0156183053475608,0.01774640116879,0.0197517218793814,0.0220281476470166,0.0244728683762087,0.0265076345689167,0.0286376274328081,0.0308025582834743,0.0327836670592854,0.0349869613808518,0.0371188321046792,0.0392118165198603,0.0410240399625351,0.0431014704348732,0.0577071794335876,0.0715251218106564,0.0851233679610936,0.0977217909693184,0.1096971105103075,0.1257996864805321,0.1378998830906578,0.149955757401307,0.1618021526544412,0.1721919044345135,0.1858109201540602,0.197425032241284,0.2092683777070896,0.2204076714969496,0.2291820516494538,0.2399600621255824,0.2492650921568846,0.2575728560002703,0.2667007382169222,0.2731972352448963,0.2801547406703885,0.2869986654491817,0.2934785184483044,0.2991180176396472,0.3044081324751487,0.3096512430939226,0.3144044668118881,0.3197220914400601,0.3237892882128883,0.3285865257595772,0.3271830397455422,0.3266480377716905,0.3257295925560411,0.3248677401636263,0.3241299372901001,0.3216635230252564,0.3198902997733073,0.3205751050420168,0.3204206716405169,0.3213191277080958,0.3225541295372602,0.3230926779313876,0.3242506244796003,0.3246969865450906,0.3254190278076656,0.3263813229571984,0.3279956920984015,0.3310441704385828,0.3328794861052925,0.3351917754052985,0.3401165437494309,0.3404955170035545,0.342583852495123,0.3441341629989376,0.3471935423315186,0.3507153837058058,0.3518801589727912,0.3552974163829361,0.3605255954010402,0.3653404743687835,0.0,2.197700673695327,56.820896493602014,172.2886461032434,264.18869708121906,fqhc8_80Compliance_implementation_low_initial_treat_cost,93 -100000,95714,44722,423.2923083352488,6191,63.5434732640993,4867,50.31656810915854,1920,19.767223185740853,77.34880342590687,79.70481917130628,63.338894218876014,65.07659447988166,77.11643336541474,79.47272691248135,63.2529335332172,64.99285515676524,0.2323700604921299,232.09225882493456,0.0859606856588115,83.73932311641852,166.42472,116.61628977624925,173877.09217042438,121838.27838795708,363.84882,235.15774964530985,379629.9600894331,245176.2016479406,371.76775,179.7832357757525,384790.041164302,185123.27903379177,3177.10494,1436.3639589318784,3285494.880581733,1466973.4348469437,1165.53077,510.8415311275582,1203716.6872139918,519796.0211272216,1879.49952,781.5241302702401,1935792.2560962867,791792.4778601946,0.38036,100000,0,756476,7903.5041895647455,0,0.0,0,0.0,30927,322.57558977787994,0,0.0,34002,351.55776584407715,1572423,0,56389,0,0,6532,0,0,69,0.7208976743214159,0,0.0,2,0.0208955847629395,0,0.0,0.06191,0.1627668524555684,0.3101276045873041,0.0192,0.3325126942606555,0.6674873057393446,24.70860901503492,4.3631004023364905,0.323813437435792,0.2401890281487569,0.2151222519005547,0.2208752825148962,11.079820935271105,5.6636344020725495,20.39932753887224,12302.683689000549,54.85401709994508,13.982265325649957,17.693326442490786,11.49874552550214,11.679679806302206,0.5580439695911239,0.7827202737382378,0.6928934010152284,0.5663801337153773,0.107906976744186,0.7442958300550747,0.9451073985680192,0.8832116788321168,0.6652542372881356,0.1463414634146341,0.4922135706340378,0.692,0.6257510729613734,0.5376078914919852,0.0988505747126436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258159245795,0.0045918987957669,0.0067982344883567,0.0090208149209154,0.01119448511469,0.0134473456507354,0.015727725850347,0.017872818209656,0.0200500740892136,0.0221073640038892,0.0242912490006764,0.026376558731462,0.0283346698743651,0.0305248419708855,0.0327302360125433,0.0348825194767622,0.0370358866041291,0.0391977838415488,0.0410471813852903,0.0431249153443012,0.058513304649317,0.0730813910895752,0.0862691202081453,0.0988911566057188,0.1110302493355271,0.1264530732697983,0.1390539450787318,0.1510331832263421,0.162480636718124,0.173058150885511,0.1857489093553078,0.1974659438872117,0.2082050835843946,0.2183190244435938,0.2277933652417891,0.2379005451402739,0.2470510701041061,0.255963705546612,0.2650735085428847,0.2730793025227413,0.2796369824163358,0.286417760310665,0.2938176051504177,0.2995675973504857,0.3053923472856171,0.3102259434833467,0.3147648323086919,0.3198653198653198,0.3244235342777375,0.3278833232325894,0.326091343243425,0.3249398335969194,0.3236590483432611,0.3230835922259952,0.3216732298090497,0.3196772761371117,0.3176660494706357,0.3185277522634824,0.3199385193407907,0.3203706679522202,0.321313622754491,0.322791927242597,0.3242168699910021,0.325677609804097,0.3275443196305294,0.3294678688695471,0.3304596060519554,0.3343932000629623,0.339577632779064,0.3443280146066523,0.346069669888747,0.3474521952782822,0.3513977128335451,0.3528508940219476,0.3561955286093217,0.3589037817137386,0.3627039627039627,0.3624174917491749,0.3589815332960268,0.3625389408099688,0.0,2.092016635024128,55.73802454640157,181.20180807951047,270.1822712589311,fqhc8_80Compliance_implementation_low_initial_treat_cost,94 -100000,95641,44679,424.0545372800368,6009,61.574011145847486,4678,48.37883334553173,1871,19.21769952217145,77.26744378178137,79.68202373083315,63.28338998351626,65.06921856507306,77.03785639509547,79.4530712859551,63.19855564876707,64.98699670124012,0.2295873866858926,228.9524448780469,0.0848343347491891,82.22186383294172,166.23992,116.42828032163264,173816.58493742225,121734.69570752356,359.26843,232.9848458491977,375126.9120983679,243087.74045565995,367.0957,177.92382915645626,380207.954747441,183321.3968622342,3075.02438,1412.3937629868694,3180476.93980615,1442130.5628202008,1125.55329,501.2692794031907,1161959.557093715,509222.74903356377,1834.24448,769.5937568177229,1884984.786859192,776681.2240129967,0.38018,100000,0,755636,7900.75386079192,0,0.0,0,0.0,30607,319.4655011971853,0,0.0,33530,346.9328007862737,1571918,0,56381,0,0,6690,0,0,67,0.7005363808408527,0,0.0,0,0.0,0,0.0,0.06009,0.1580567099794834,0.3113662839074721,0.01871,0.3391124542707173,0.6608875457292827,24.239039651028097,4.436173412452388,0.3319794784095767,0.2263787943565626,0.2167592988456605,0.2248824283882,11.339365070470006,5.880432976148146,20.11745405473734,12253.280596641453,53.45932514298964,12.58927485441463,17.8499566277631,11.377640996015566,11.642452664796346,0.5709705002137666,0.777148253068933,0.71216999356085,0.591715976331361,0.1349809885931558,0.7507836990595611,0.9311224489795918,0.8802816901408451,0.7404255319148936,0.1973094170403587,0.5035273368606702,0.6866566716641679,0.6486246672582077,0.5468549422336328,0.1182147165259348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023101708310535,0.0043500304197931,0.0066804743339831,0.0088712299813023,0.0111903478163562,0.0135658125229152,0.0157941962191814,0.0179891370931514,0.0200721903534873,0.0222634128357689,0.0243172004963949,0.0266985803217389,0.0287430817027755,0.0307473544292058,0.0327315517294769,0.0347166222111945,0.0366231318163457,0.0386224219714976,0.0406715486394274,0.0424016848075399,0.0561948058734388,0.0703624956795877,0.0831635546407342,0.0963091665350392,0.1088459792443069,0.1239781439281629,0.1368806754819181,0.1476831919519161,0.1589423807129945,0.1694372852233677,0.182772044471763,0.195086814769884,0.2073453397899776,0.2185154386502396,0.2285591625111456,0.2388559021623537,0.2490821234474216,0.2586005174935313,0.2673976458837017,0.2743428741664184,0.2818551140638202,0.2872712389639245,0.2936080570907843,0.2990071466257374,0.3043377857724516,0.3100057979596116,0.315672847002266,0.3204178755026212,0.3251357269652876,0.3283515031384209,0.3272413374516125,0.3258252052680884,0.3248120088599201,0.3234680875709487,0.3224379124890127,0.3198729164748135,0.3171173173713542,0.317838246409675,0.3175677986388974,0.3184945583215683,0.3183788347875035,0.3193788918415103,0.3204974685405768,0.3215892557358701,0.3220085778998602,0.3234717612314768,0.324891626739676,0.3272018363047511,0.3291370701174484,0.3302236574572419,0.336211251435132,0.3378813923506661,0.3373869858652744,0.3418500846544559,0.3471787577050735,0.352495490078172,0.3546033224654557,0.3629431162407254,0.3643898256644756,0.3658733360225897,0.0,2.02355690017789,56.245441168471466,180.2052334724908,249.7059915100189,fqhc8_80Compliance_implementation_low_initial_treat_cost,95 -100000,95840,44670,422.2558430717863,6121,62.65651085141903,4819,49.70784641068448,1881,19.303005008347245,77.40182060844235,79.71699419234564,63.36325590393732,65.07639422500823,77.16757260769812,79.48250817468015,63.27723044491432,64.99234990075414,0.2342480007442304,234.48601766548904,0.0860254590229985,84.04432425409425,165.8657,116.19336922218372,173065.21285475793,121236.8209747326,359.05002,232.60924083167305,374060.6323038397,242131.6056257023,369.43447,178.45738875350702,381741.0475792989,183257.75326629129,3174.53046,1450.670612769097,3278424.8121869783,1479739.6627390403,1163.5195,510.1281832654957,1201519.9081803004,519767.69956750434,1847.35854,770.1029178235553,1897878.777128548,779181.2682160096,0.38066,100000,0,753935,7866.600584307178,0,0.0,0,0.0,30649,319.19866444073455,0,0.0,33891,349.9269616026711,1578862,0,56720,0,0,6571,0,0,56,0.5738731218697829,0,0.0,0,0.0,0,0.0,0.06121,0.1607996637419219,0.3073027283123672,0.01881,0.335,0.665,24.505674864113573,4.410619404443331,0.3224735422286781,0.2384312097945632,0.2162274330774019,0.2228678148993567,11.29541182209997,5.74403808814984,19.91406897041623,12274.557610798009,54.795574753904816,13.911742334877578,17.57253208307875,11.66483856595156,11.646461769996929,0.5665075741855157,0.7859007832898173,0.7007722007722008,0.5738963531669866,0.1303538175046555,0.731990704879938,0.918918918918919,0.8358585858585859,0.7254098360655737,0.1400966183574879,0.5059523809523809,0.7021276595744681,0.6545768566493955,0.5275689223057645,0.1280276816608996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022479191559164,0.0044188144199292,0.0066347441464107,0.0089988522908477,0.0112951271337216,0.0133759517895679,0.0157570198236762,0.0181261481935088,0.0200748206145102,0.0221385218468214,0.0242427348675106,0.026481093730755,0.0288219392107886,0.0309913100778386,0.0331280877089843,0.0351718294724225,0.0371501324942033,0.0391542840552058,0.041120505203681,0.042961066533454,0.0575376753402513,0.0719228919693073,0.0855906361664448,0.0984894640643711,0.1108489820851193,0.1262660935140102,0.1382174106480795,0.150124900345469,0.1612469450699565,0.1709422765882239,0.1834667010841507,0.1961705944006829,0.2080630968288629,0.2183389415723463,0.2283974366020687,0.2387119627182058,0.2484890385601819,0.2567253105502782,0.2648052802286285,0.2731756439745042,0.2803066214981906,0.2869181052114865,0.2945906000591191,0.3001880442203351,0.3050851572647705,0.310137181981627,0.3142546300348894,0.3183730537019383,0.3224395797753972,0.3259591298615689,0.3250255554957766,0.3237655339271967,0.3231877127345354,0.322234559533938,0.3216922119118911,0.3195527821112844,0.3181918760866129,0.3187693517471863,0.3190995907230559,0.3194300979519145,0.3207109881688877,0.3211786734995565,0.3214405080213903,0.3232834556118011,0.3245139354467963,0.3247656878780798,0.3276874627627883,0.3313657515849964,0.3341242149337055,0.3380270548216122,0.3407673751763688,0.3439310968153543,0.3451377531765002,0.3484365513054037,0.3505490415038154,0.3544020715630885,0.358970453853183,0.3659229208924949,0.3631115997800989,0.3664620107444359,0.0,2.291270138630564,56.486920135758695,188.83471753501527,254.29003692579224,fqhc8_80Compliance_implementation_low_initial_treat_cost,96 -100000,95697,44644,422.6673772427558,6019,61.72607291764632,4713,48.67446210435018,1799,18.401830778394302,77.32145341825886,79.70838480693139,63.3143933609397,65.07999392647062,77.09650044915409,79.48725190667106,63.23001904270439,65.0001651083684,0.2249529691047627,221.13290026032928,0.0843743182353051,79.82881810221443,167.01784,116.91648738389918,174527.7699405415,122173.6181739231,360.91614,233.87133576977757,376568.7639110944,243811.41077544497,365.17451,176.49481184065613,378613.28986279614,182052.4460961073,3056.69816,1399.680829677516,3156378.46536464,1425261.1509907525,1081.27283,477.70902100941913,1113283.8751476014,482751.410877628,1751.02594,738.8760692704283,1791923.1950844852,738183.5209745521,0.38185,100000,0,759172,7933.080451842795,0,0.0,0,0.0,30732,320.55341337763986,0,0.0,33471,346.7193328944481,1571446,0,56401,0,0,6721,0,0,67,0.7001264407452689,0,0.0,0,0.0,0,0.0,0.06019,0.1576273405787613,0.2988868582821066,0.01799,0.3369668246445497,0.6630331753554503,24.414143031347827,4.289991279213789,0.3123276044981964,0.2497347761510715,0.2306386590282198,0.2072989603225122,11.345237225960004,6.047508943903929,19.14950940415653,12272.169770486538,53.67697628614204,14.33216923022036,16.637724275953413,12.013267400745551,10.693815379222704,0.5709739019732655,0.7969413763806287,0.6949728260869565,0.5804967801287948,0.1013306038894575,0.7397572078907435,0.9177489177489178,0.8756476683937824,0.7098039215686275,0.1488372093023255,0.5054491899852724,0.7188811188811188,0.6307550644567219,0.5408653846153846,0.0879265091863517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022493312798897,0.0045837136193083,0.0066590872178008,0.0087702360748366,0.0109779423734331,0.0129879390432727,0.015195243582814,0.017694506840923,0.0202107974933295,0.0223043380350891,0.0243492346651083,0.0265868411053717,0.0287518902181851,0.0306761741854378,0.0328554175827578,0.0350289495450785,0.0371333278090818,0.0391572829640392,0.041038334338665,0.0428479112815809,0.0572088116402226,0.0711025501444663,0.0849181360201511,0.0980309615769145,0.1100770285955471,0.1257303751376069,0.1381532157907586,0.1502417928889457,0.1611606904291134,0.171192912456829,0.1836985327386723,0.1964861763623373,0.2078071806919655,0.2178892559452186,0.2284356644741184,0.2384353063619655,0.2476742889012827,0.2562661571316174,0.2651267746178618,0.2724472738097964,0.2790189412336085,0.2862036311771514,0.2926021042167177,0.297844037246983,0.3035070030733349,0.3090297873388417,0.3140534117205579,0.3186301927085981,0.3234100310237849,0.3280850615299481,0.3266620936394571,0.3256593406593406,0.3252366418655677,0.324588366018731,0.3242966372206963,0.3230710349050826,0.3206221617430655,0.3209048259571536,0.3216010924298028,0.3210398601149056,0.3211002303068886,0.3220071118135124,0.3223564385454393,0.3226809891462459,0.3251390460597597,0.3258658998823683,0.3266199399227578,0.3290174211637211,0.3334973292100084,0.3350673073104872,0.3384720327421555,0.3443722713236077,0.3471896584500348,0.3495860165593376,0.3490414581169138,0.3510218716385801,0.3536754507628294,0.3582028867656027,0.3599670510708402,0.3644003055767761,0.0,2.2763894853846574,58.08664164600996,169.1918127486511,258.9157426970563,fqhc8_80Compliance_implementation_low_initial_treat_cost,97 -100000,95706,44424,420.93494660731824,6084,62.23225294129939,4726,48.816166175579376,1868,19.15240423797881,77.3455376358958,79.73160350548628,63.32130932583449,65.08694974079913,77.11284912288578,79.50028593152486,63.23450398749132,65.00306431440704,0.232688513010018,231.3175739614195,0.0868053383431757,83.88542639208652,165.62062,115.98506747904936,173050.9894886423,121188.46684539045,357.27862,231.38111695867755,372726.3494451759,241180.543078467,366.01909,177.35571861634511,378856.21591122815,182569.41859207492,3111.29651,1424.7883195782542,3216383.0689820917,1454237.73731872,1106.92419,492.3207979291449,1141558.794641924,499389.352327825,1843.1312,776.4426899021563,1891601.2371220195,781162.4949731256,0.3783,100000,0,752821,7865.954067665559,0,0.0,0,0.0,30572,318.80968800284205,0,0.0,33361,344.9313522663156,1580589,0,56618,0,0,6507,0,0,54,0.5642279480910287,0,0.0,0,0.0,0,0.0,0.06084,0.1608247422680412,0.3070348454963839,0.01868,0.3298173803526448,0.6701826196473551,24.498750263458472,4.372645040553595,0.3114684722809987,0.2475666525603047,0.2096910706728734,0.2312738044858231,11.197009476262162,5.662583488681261,19.800499573698456,12238.892324262912,53.730122375239496,14.1220320348426,16.648564640629335,11.025480625929172,11.93404507383841,0.5575539568345323,0.7743589743589744,0.7126358695652174,0.5751765893037336,0.1006404391582799,0.7324940991345398,0.9398148148148148,0.8590078328981723,0.7644444444444445,0.1038961038961039,0.4931982633863965,0.6775067750677507,0.6611570247933884,0.5195822454308094,0.099767981438515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025937446174733,0.0048481160302246,0.0072389461393979,0.0094514116140571,0.0116993570440302,0.0137298838867386,0.0160306744712528,0.0182796687192998,0.0204515706806282,0.0224470568959161,0.0245628429311317,0.0266841959306087,0.0286372613561553,0.0307380005358283,0.0328276573787409,0.0347989702978485,0.0368152813458191,0.038701843241448,0.0407237936772046,0.0424168542135533,0.0567832898172323,0.0710936682365253,0.0846932885553864,0.0966900237779601,0.1089160083116225,0.1245835052200679,0.1366747673271004,0.1482925374406169,0.1591365891207663,0.1688244766505636,0.1816770521141033,0.1939365712057536,0.2055890613773432,0.2159325928762926,0.2254705558613098,0.2356538985717609,0.2457728322860746,0.2549361534567137,0.2642874968804592,0.2727366384688469,0.2805454987102819,0.2864122494301911,0.2932161903297898,0.2984293820480283,0.3043330583725557,0.3093881869517611,0.3143053473263368,0.3190160688447186,0.3234709420907237,0.327465390531533,0.3265790850901088,0.3257264254385965,0.3243129379713238,0.3244021895707289,0.3236134341834544,0.3215114149676474,0.319192972477644,0.3187808761016921,0.3202110043191014,0.3213258800207169,0.3217052082747238,0.3227473419526006,0.3243016349402901,0.3253785421931963,0.3261795346822895,0.3260795825179386,0.3278562478642214,0.3312171972720701,0.3354732337051849,0.3374364675984752,0.3385321935249181,0.3401739314879626,0.3389521353544248,0.340211680499505,0.3436439079592606,0.3464444177958988,0.343403205918619,0.3460830435671916,0.3457330415754923,0.3471522665633475,0.0,2.1554772847678723,55.82391105880282,179.62038743886694,255.65274318919955,fqhc8_80Compliance_implementation_low_initial_treat_cost,98 -100000,95619,44648,423.733776759849,6106,62.67582802581077,4811,49.8122758029262,1875,19.29532833432686,77.23812690061078,79.66885304842172,63.25655152000609,65.05418946266762,77.00487712094599,79.43566753035249,63.17043700719292,64.97026783624048,0.2332497796647885,233.1855180692344,0.0861145128131752,83.9216264271414,166.86538,116.86338225957648,174510.69348142104,122217.7415153646,361.42335,234.0809683912757,377514.5630052605,244337.70316702305,368.03624,177.49649817934875,381768.37239460775,183200.70009503985,3122.08079,1425.2261663125523,3235582.551584936,1460982.708784398,1132.4146,498.1297892234228,1172236.7939426266,508890.7949501909,1824.42796,767.6681560586032,1878938.4954872984,776865.3034036533,0.37981,100000,0,758479,7932.3042491555025,0,0.0,0,0.0,30839,322.01759064621046,0,0.0,33722,349.6585406666039,1566000,0,56234,0,0,6759,0,0,57,0.5751994896411801,0,0.0,0,0.0,0,0.0,0.06106,0.1607645928227271,0.3070750081886669,0.01875,0.3348931523943222,0.6651068476056777,24.352772766540248,4.234003476079981,0.3250883392226148,0.2463105383496154,0.2205362710455206,0.208064851382249,10.940240213585156,5.675986623931568,20.078286935089864,12272.054830352532,54.76688798499186,14.315402700107024,17.703630275299393,11.729218816466632,11.018636193118803,0.5695281646227396,0.7974683544303798,0.7014066496163683,0.5447690857681433,0.1198801198801198,0.748811410459588,0.93006993006993,0.8678756476683938,0.7258064516129032,0.1557788944723618,0.5057762750070443,0.7222222222222222,0.6468590831918506,0.4895448954489544,0.1109725685785536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020269174639208,0.0044222206444676,0.0066099423279993,0.0090869357510952,0.0111341801009607,0.0133052151145613,0.0154622877250242,0.0177133984390961,0.0198432993065073,0.0220007579404504,0.0241525075925469,0.02604728584199,0.0281079857144327,0.0300818539823921,0.0322923766445669,0.0343939158776967,0.0363555315972798,0.0384447583828478,0.0402327566464722,0.0422391220438352,0.05714106504422,0.071256418317091,0.0850002101105181,0.0975977082916451,0.1095282849509488,0.1247696316224288,0.1371690817150384,0.1487683468880906,0.1602756141402037,0.1709881847475832,0.1835748271062824,0.1957982828896019,0.207973327812946,0.2189441163904074,0.2283831583123051,0.2387249952847459,0.2480148522602724,0.2561786857890227,0.2647617314973791,0.2725508657511596,0.2799183228336407,0.2868316135084428,0.2934127473779128,0.2993063986825181,0.3060117945218832,0.3105327549771994,0.3150146833663814,0.3200928915032346,0.3235737296061519,0.3274045841935313,0.3267976503949767,0.3263438336876397,0.3259180790960452,0.3249467383585269,0.3240764179460071,0.3212952579916742,0.318559468776311,0.3192036390005933,0.3203438690414907,0.3206999695509663,0.3213896713615023,0.3218235877106045,0.3235621677278362,0.3252136464571697,0.3252279635258359,0.3268204645323289,0.3289541473467285,0.3316920746141464,0.3356205355571977,0.3379069675219098,0.3398767404702122,0.3453791784025083,0.3476646103487347,0.3507757833891086,0.3510907218425241,0.3552060100950815,0.357508275654529,0.3573275004971167,0.3560709413369713,0.3559001512859304,0.0,1.981343171460965,55.58665975166153,188.83053550281304,259.3875489764901,fqhc8_80Compliance_implementation_low_initial_treat_cost,99 +n,n_unscreened_undiagnosed_40yos,polyp,polyp_per_1k_40yo,crc,crc_per_1k_40yo,clin_crc,clin_crc_per_1k_40yo,deadcrc,deadcrc_per_1k_40yo,lifeexp,lifeexp_if_unscreened_undiagnosed_at_40,discounted_lifeexp,discounted_lifeexp_if_unscreened_undiagnosed_at_40,lifeobs,lifeobs_if_unscreened_undiagnosed_at_40,discounted_lifeobs,discounted_lifeobs_if_unscreened_undiagnosed_at_40,lifelost,lifelost_per_1k_40yo,discounted_lifelost,discounted_lifelost_per_1k_40yo,cost_routine,discounted_cost_routine,cost_routine_per_1k_40yo,discounted_cost_routine_per_1k_40yo,cost_diagnostic,discounted_cost_diagnostic,cost_diagnostic_per_1k_40yo,discounted_cost_diagnostic_per_1k_40yo,cost_surveillance,discounted_cost_surveillance,cost_surveillance_per_1k_40yo,discounted_cost_surveillance_per_1k_40yo,cost_treatment_initial,discounted_cost_treatment_initial,cost_treatment_initial_per_1k_40yo,discounted_cost_treatment_initial_per_1k_40yo,cost_treatment_ongoing,discounted_cost_treatment_ongoing,cost_treatment_ongoing_per_1k_40yo,discounted_cost_treatment_ongoing_per_1k_40yo,cost_treatment_terminal,discounted_cost_treatment_terminal,cost_treatment_terminal_per_1k_40yo,discounted_cost_treatment_terminal_per_1k_40yo,prob_polyp,FIT_adopted,Colonoscopy_adopted,FIT_performed_routine,FIT_performed_routine_per_1k_40yo,Colonoscopy_performed_routine,Colonoscopy_performed_routine_per_1k_40yo,FIT_performed_diagnostic,FIT_performed_diagnostic_per_1k_40yo,Colonoscopy_performed_diagnostic,Colonoscopy_performed_diagnostic_per_1k_40yo,FIT_performed_surveillance,FIT_performed_surveillance_per_1k_40yo,Colonoscopy_performed_surveillance,Colonoscopy_performed_surveillance_per_1k_40yo,FIT_noncompliant_routine,Colonoscopy_noncompliant_routine,FIT_noncompliant_routine_50,Colonoscopy_noncompliant_routine_50,FIT_noncompliant_diagnostic,Colonoscopy_noncompliant_diagnostic,FIT_noncompliant_surveillance,Colonoscopy_noncompliant_surveillance,FIT_perforations,FIT_perforations_per_1k_40yo,Colonoscopy_perforations,Colonoscopy_perforations_per_1k_40yo,FIT_test_fatalities,FIT_test_fatalities_per_1k_40yo,Colonoscopy_test_fatalities,Colonoscopy_test_fatalities_per_1k_40yo,prob_crc,prob_crc_given_polyp,prob_dead_crc_given_crc,prob_dead_crc,prob_crc_from_medium_polyp,prob_crc_from_large_polyp,time_polyp_to_pre,time_pre_to_clin,crc_onset_proportion_stage2,crc_onset_proportion_stage1,crc_onset_proportion_stage4,crc_onset_proportion_stage3,time_pre_to_dead,time_clin_to_dead,crc_mortality_rate,polyp_prevalence_rate,crc_incidence_rate,crc_incidence_stage1_rate,crc_incidence_stage2_rate,crc_incidence_stage3_rate,crc_incidence_stage4_rate,crc_survival_rate,crc_survival_stage1_rate,crc_survival_stage2_rate,crc_survival_stage3_rate,crc_survival_stage4_rate,crc_survival_rate_20_64,crc_survival_stage1_rate_20_64,crc_survival_stage2_rate_20_64,crc_survival_stage3_rate_20_64,crc_survival_stage4_rate_20_64,crc_survival_rate_65_100,crc_survival_stage1_rate_65_100,crc_survival_stage2_rate_65_100,crc_survival_stage3_rate_65_100,crc_survival_stage4_rate_65_100,polyp_prevalence_rate_0,polyp_prevalence_rate_1,polyp_prevalence_rate_2,polyp_prevalence_rate_3,polyp_prevalence_rate_4,polyp_prevalence_rate_5,polyp_prevalence_rate_6,polyp_prevalence_rate_7,polyp_prevalence_rate_8,polyp_prevalence_rate_9,polyp_prevalence_rate_10,polyp_prevalence_rate_11,polyp_prevalence_rate_12,polyp_prevalence_rate_13,polyp_prevalence_rate_14,polyp_prevalence_rate_15,polyp_prevalence_rate_16,polyp_prevalence_rate_17,polyp_prevalence_rate_18,polyp_prevalence_rate_19,polyp_prevalence_rate_20,polyp_prevalence_rate_21,polyp_prevalence_rate_22,polyp_prevalence_rate_23,polyp_prevalence_rate_24,polyp_prevalence_rate_25,polyp_prevalence_rate_26,polyp_prevalence_rate_27,polyp_prevalence_rate_28,polyp_prevalence_rate_29,polyp_prevalence_rate_30,polyp_prevalence_rate_31,polyp_prevalence_rate_32,polyp_prevalence_rate_33,polyp_prevalence_rate_34,polyp_prevalence_rate_35,polyp_prevalence_rate_36,polyp_prevalence_rate_37,polyp_prevalence_rate_38,polyp_prevalence_rate_39,polyp_prevalence_rate_40,polyp_prevalence_rate_41,polyp_prevalence_rate_42,polyp_prevalence_rate_43,polyp_prevalence_rate_44,polyp_prevalence_rate_45,polyp_prevalence_rate_46,polyp_prevalence_rate_47,polyp_prevalence_rate_48,polyp_prevalence_rate_49,polyp_prevalence_rate_50,polyp_prevalence_rate_51,polyp_prevalence_rate_52,polyp_prevalence_rate_53,polyp_prevalence_rate_54,polyp_prevalence_rate_55,polyp_prevalence_rate_56,polyp_prevalence_rate_57,polyp_prevalence_rate_58,polyp_prevalence_rate_59,polyp_prevalence_rate_60,polyp_prevalence_rate_61,polyp_prevalence_rate_62,polyp_prevalence_rate_63,polyp_prevalence_rate_64,polyp_prevalence_rate_65,polyp_prevalence_rate_66,polyp_prevalence_rate_67,polyp_prevalence_rate_68,polyp_prevalence_rate_69,polyp_prevalence_rate_70,polyp_prevalence_rate_71,polyp_prevalence_rate_72,polyp_prevalence_rate_73,polyp_prevalence_rate_74,polyp_prevalence_rate_75,polyp_prevalence_rate_76,polyp_prevalence_rate_77,polyp_prevalence_rate_78,polyp_prevalence_rate_79,polyp_prevalence_rate_80,polyp_prevalence_rate_81,polyp_prevalence_rate_82,polyp_prevalence_rate_83,polyp_prevalence_rate_84,polyp_prevalence_rate_85,polyp_prevalence_rate_86,polyp_prevalence_rate_87,polyp_prevalence_rate_88,polyp_prevalence_rate_89,polyp_prevalence_rate_90,polyp_prevalence_rate_91,polyp_prevalence_rate_92,polyp_prevalence_rate_93,polyp_prevalence_rate_94,polyp_prevalence_rate_95,polyp_prevalence_rate_96,polyp_prevalence_rate_97,polyp_prevalence_rate_98,polyp_prevalence_rate_99,polyp_prevalence_rate_100,crc_incidence_15_39,crc_incidence_40_64,crc_incidence_65_74,crc_incidence_75_100,scenario,iteration +100000,95709,51115,482.2639459194015,6851,70.1292459434327,5446,56.201611133749175,2109,21.628060057047925,77.33641368994157,79.71282027992355,63.332022412709286,65.09005617442267,77.069866281991,79.4448902111574,63.233043663077474,64.9928048635814,0.2665474079505685,267.9300687661481,0.0989787496318115,97.2513108412727,193.1237,135.18051200270446,201782.17304537716,141241.1706346367,370.18743,236.20590152427707,386114.0749563782,246125.6428593728,436.51324,210.80181080691293,450480.8011785726,216090.4349296039,3868.05349,1786.2175877659106,3999869.113667471,1824696.5570279805,1287.06144,577.9727506386798,1329126.7174455903,588246.8740021102,2062.1754,874.044068488783,2118624.0165501675,884124.823451001,0.43022,100000,0,877835,9171.91695660805,0,0.0,0,0.0,30568,318.6847631884149,0,0.0,39700,409.5121670898244,1447663,0,52053,0,0,17368,0,0,72,0.7209353352349308,0,0.0,0,0.0,0,0.0,0.06851,0.1592441076658453,0.3078382717851408,0.02109,0.3416805787423483,0.6583194212576516,24.411871360667305,4.219837282717664,0.3213367609254499,0.2484392214469335,0.2164891663606316,0.2137348512669849,11.254670779272915,5.865841775644633,22.7764897113252,14101.770680504304,62.4815497113817,16.38084830334187,20.177085021412044,13.010620507544015,12.912995879083784,0.5670216672787367,0.7819660014781966,0.7022857142857143,0.5592783505154639,0.1272264631043257,0.7445400397088021,0.9276859504132232,0.8676171079429735,0.7103448275862069,0.1788617886178861,0.498856416772554,0.7008055235903338,0.6378077839555203,0.5091533180778032,0.1136120042872454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029386729358355,0.0054361606101481,0.0081425453068683,0.0109765021546467,0.0135804604132122,0.0165502210091051,0.0188457969181819,0.0217480089850929,0.0242708024495721,0.0269025244149622,0.0295628107221567,0.0317649353716004,0.0342434058306339,0.0365743124935626,0.0390242895763254,0.0412919896640826,0.0434562021122385,0.0456657952612141,0.0483163583454583,0.0506869720107082,0.0678946599001733,0.083689931888804,0.0990393892361256,0.1137601177336276,0.1286191595434088,0.1463056321802636,0.161161405219751,0.1756016632812583,0.1892872773075157,0.2013456614204442,0.2161423297564335,0.2301377863338452,0.2427917794224729,0.2537443875154309,0.265032967032967,0.2765061040339703,0.2868906345757424,0.2970139021566886,0.3058670143415906,0.3144553368183846,0.3222703889948557,0.3307084774277969,0.3373560908725562,0.3435958231546678,0.3503101217425079,0.3549388036545423,0.3595522481395785,0.3635658125747436,0.3679582480768733,0.3723006617093498,0.3704058115557233,0.3682062031967563,0.3652621921095349,0.3634243499674078,0.3620522604975628,0.3599956987925896,0.3581205538617886,0.3584566996558367,0.3593008311198697,0.3595600222138622,0.3606822194672978,0.361611919007806,0.3624921334172435,0.363929218585714,0.3655680832610581,0.3668642142913088,0.3683546119638502,0.3730445246690734,0.3790778138680977,0.3827837361933728,0.3861948045955797,0.3887448693022251,0.3902265831773288,0.3945424862007308,0.3957955088389871,0.3986872493010818,0.3991872460143795,0.3956701030927835,0.4018899388549194,0.4026871401151631,0.0,2.7666307910866204,65.96835712558823,212.91239264336477,285.6630548924374,APP_public_baseline,0 +100000,95601,51093,483.78155040219247,6970,71.49506804322131,5518,57.028692168491965,2125,21.830315582472988,77.26635035352784,79.70444486039584,63.26822878755484,65.07203831554428,77.00638632502287,79.44546679517056,63.17177830688168,64.97863538985744,0.2599640285049673,258.97806522527844,0.0964504806731554,93.4029256868314,193.37318,135.29971372305133,202271.0850304913,141525.41680845528,371.80868,236.54616163946983,388218.1776341252,246734.35425735463,441.75627,212.74017323164617,457459.2315979959,219022.1886420983,3886.85983,1781.1547311368242,4020158.481605841,1817778.2784268972,1293.54913,577.2429335138999,1333502.9863704357,584313.6242966325,2068.74576,866.9366816174376,2126697.5240844763,874293.9216577032,0.4302,100000,0,878969,9194.140228658696,0,0.0,0,0.0,30690,320.2895367203272,0,0.0,40178,415.70694867208505,1441278,0,51868,0,0,17282,0,0,65,0.6694490643403311,0,0.0,0,0.0,0,0.0,0.0697,0.1620176662017666,0.3048780487804878,0.02125,0.341794731064764,0.658205268935236,24.135295768050103,4.237235754476172,0.3265675969554186,0.2495469372961218,0.2055092424791591,0.2183762232693004,11.14726057289515,5.884828496107503,22.67328782934624,14081.273124560408,63.10391792134353,16.7848762490079,20.491731479528298,13.447725285979775,12.379584906827562,0.5793765857194636,0.8061002178649237,0.6853496115427303,0.5883817427385892,0.1261022927689594,0.7343649258542876,0.8970588235294118,0.8502024291497976,0.7191011235955056,0.1585365853658536,0.5187799344592892,0.7466986794717887,0.6230886850152905,0.5511727078891258,0.1171171171171171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025132757712108,0.0052853157494293,0.0078300344277778,0.010472588254433,0.0132631664664807,0.0157668905490383,0.0184009634225996,0.0209067778424941,0.0236657935663419,0.0259250530285175,0.0282547339251808,0.0306727655856504,0.03319882234255,0.0355607336914495,0.0376384068748967,0.0400335251024378,0.0422885572139303,0.0448361098417182,0.0470317638732775,0.0496308192891707,0.066822083067627,0.0838241150210634,0.1000525210084033,0.1151978597234071,0.1284591659977185,0.1459412506223451,0.1613540947015996,0.1754402807556508,0.1890520637095393,0.200229939399149,0.2148913676670478,0.2287386850235785,0.2419813324329917,0.2543552098170264,0.2661478770777302,0.2775035221814228,0.2883925678468878,0.2984930056540446,0.30733215146143,0.3157453936348409,0.3234595646583181,0.3302134339198275,0.3367339684345229,0.3425415027348623,0.3488878348960804,0.3538860423482931,0.358361646377393,0.3630953139536365,0.3671188111108229,0.370285729382703,0.3685508652757561,0.3670886075949367,0.3654931166779508,0.364420266790127,0.36313705644201,0.3606615167678254,0.358701166920345,0.3589878582475075,0.3601520105448756,0.3602751504729148,0.3609386172895262,0.3623444415775162,0.3644374342797056,0.3653479343850279,0.3665901678946732,0.3683369568064542,0.3700042973785991,0.3744500364004685,0.3797450474946149,0.3831368631368631,0.3842594713454579,0.3853225720241595,0.3895863871008858,0.3938353551537346,0.3975213594967609,0.402320625147999,0.405140758873929,0.4121113594797805,0.4114396242055816,0.4137142857142857,0.0,2.6475091481461424,68.35931614040612,205.7125822852824,294.6111135191185,APP_public_baseline,1 +100000,95693,51558,486.9321684971733,6974,71.56218323179334,5480,56.54541084509839,2190,22.44678294128097,77.34534288058313,79.71422886004001,63.32656324425341,65.07470685452374,77.06578513471642,79.43708595102375,63.22312879477571,64.97521655113357,0.2795577458667111,277.1429090162627,0.1034344494776959,99.49030339016927,192.84936,135.0174519087176,201529.22366317283,141094.38716386526,369.71901,236.27968036855253,385614.8307608707,246169.59481733516,446.54386,215.9635911156307,462247.5729677197,222299.25075151943,3873.84159,1791.1629094464406,4000251.847052553,1823834.8880758705,1294.35404,575.7726195217074,1334707.9096694638,583792.8287775716,2123.53076,891.6314043594865,2178563.113289373,895733.9338477007,0.43296,100000,0,876588,9160.419257416948,0,0.0,0,0.0,30524,318.2259935418474,0,0.0,40568,419.62316992883495,1443379,0,51925,0,0,17286,0,0,68,0.7001557062690061,0,0.0,1,0.0104500851681941,0,0.0,0.06974,0.1610772357723577,0.3140235159162604,0.0219,0.3404080514856908,0.6595919485143091,24.281265545644324,4.190352126433629,0.3217153284671533,0.2452554744525547,0.2091240875912408,0.2239051094890511,11.343932904942266,6.163900130254026,23.445594538134596,14162.44450835421,62.95167531825567,16.538181379937434,20.099559501412944,13.808111631101989,12.505822805803293,0.5843065693430657,0.8266369047619048,0.711287577992059,0.5688671556642216,0.1212914485165794,0.7510729613733905,0.9354275741710296,0.8510204081632653,0.7327044025157232,0.156,0.5136399064692128,0.7457846952010376,0.6575019638648861,0.5115511551155115,0.1116071428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026733635774465,0.0054020635274562,0.0079948054056247,0.0106845419459679,0.0134535988122597,0.0160355939278551,0.0187048306371874,0.0214468727989138,0.0241144901610017,0.0267990582454703,0.0293300527961453,0.0319062631573542,0.0342518591662295,0.0367886430131454,0.0391128907419065,0.0416688202276227,0.0442838057560662,0.0466277151070476,0.0486914750927976,0.0507914673669511,0.0674478840289092,0.0845046836569155,0.0998961164335407,0.1154461279461279,0.1293478260869565,0.1469788215869521,0.1618996050452286,0.1756585464577497,0.1892648724909685,0.2013815888271512,0.2170211848882567,0.2312065492820479,0.2443385241530911,0.2565334968304192,0.2669669801969293,0.2781805684892022,0.2884922362501814,0.2984538866633658,0.3074503837594805,0.315770777710298,0.3245404879855549,0.3321009897746683,0.3392072571381201,0.3447130489004005,0.3503981520880189,0.3556194259069658,0.3613460117011814,0.3661814109742441,0.3713051711391551,0.375494280235403,0.3728532080362929,0.3710015731515469,0.3689481054016209,0.3669397520481404,0.3641839107877631,0.3614089526559956,0.3586234239949251,0.3590881448975231,0.3586152716342459,0.3591021107896711,0.3598680758563826,0.3610962804769532,0.3628489335374678,0.3641012987595612,0.3663186892851964,0.3684485961744773,0.3693421502679284,0.3731413661940838,0.3769001228716868,0.3816660719241901,0.3853580416380691,0.3850384451089278,0.385730564699924,0.388829215896885,0.3899962034927866,0.3983526322072341,0.4002157497303128,0.4040465971796443,0.4108183079056865,0.4179873217115689,0.0,2.767270692601716,71.7575675392654,199.04006199352372,286.099453979927,APP_public_baseline,2 +100000,95650,51345,485.3423941453215,6944,70.935703084161,5479,56.57083115525352,2134,21.840041819132253,77.2498286400838,79.64735242550019,63.26585613190741,65.0383166794635,76.97603427617,79.37713129247425,63.16208010109574,64.93951151528563,0.273794363913808,270.22113302594164,0.103776030811673,98.80516417787533,192.39088,134.7277526524992,201140.491374804,140854.94265812775,368.87476,235.12303938455025,384967.5378985886,245133.0155614744,435.80683,210.35076331790128,450961.64140094095,216399.38163400308,3908.0041,1803.601844037367,4040739.163617355,1840632.2572267277,1296.86581,580.5599880044076,1339639.2263460534,590771.5576633847,2091.62286,895.0189086648555,2143815.054887611,897416.5501696803,0.43177,100000,0,874504,9142.749607945634,0,0.0,0,0.0,30526,318.41087297438577,0,0.0,39616,409.6602195504443,1442271,0,51888,0,0,17053,0,0,69,0.7004704652378463,0,0.0,2,0.0209095661265028,0,0.0,0.06944,0.1608263658892466,0.3073156682027649,0.02134,0.3417808219178082,0.6582191780821918,24.293950490159894,4.264523464203119,0.3110056579667822,0.2531483847417412,0.219200584048184,0.2166453732432925,11.28341550130155,5.922698100721786,22.9886978891032,14120.04026242793,62.55874197869801,16.816320323889492,19.2718804747429,13.267728873007034,13.202812307058585,0.5641540427085234,0.7880317231434751,0.687206572769953,0.5745577085088458,0.1207327227310574,0.728161668839635,0.929657794676806,0.8558758314855875,0.7340425531914894,0.1272727272727272,0.5003802281368821,0.7015098722415796,0.6264964086193137,0.5248618784530387,0.1187904967602591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030491511001256,0.0058717940916973,0.0084550501923447,0.010881934566145,0.0136302143198624,0.0160817224451551,0.0189664314557246,0.0215959565017613,0.0241767232562896,0.0265667086572239,0.0290174679207738,0.0310737655240423,0.0337713386086043,0.0359925788497217,0.0386862971834475,0.0409780112942928,0.0433665274654673,0.0456201916587933,0.0479534719187631,0.050269019019019,0.0677916514288699,0.0839285340259305,0.0993975271322711,0.1141477069433628,0.1279526312456462,0.1459402817616986,0.1606304564861822,0.1748329265303077,0.1877039620804399,0.1997550073067996,0.2158267945992034,0.2295743480713325,0.2434499007395449,0.2553985252808989,0.2661101541451349,0.2775962115653972,0.288141287670926,0.2987111191368335,0.3083974855372842,0.3161930381202005,0.3240024169745985,0.3308922925017338,0.3366676975045793,0.3427033924830857,0.3489223112672448,0.3545444418313921,0.3593585038459604,0.3640257780732936,0.3693946844631776,0.3731568897846611,0.372059042387672,0.3697683419030242,0.3685179155400144,0.3662401417553848,0.364776493774075,0.3626304384576372,0.3602191519771319,0.3601582461056622,0.3604950563032134,0.3614583333333333,0.3611776014474999,0.3615159770137798,0.3623984509828682,0.3639206334923063,0.3648158009391489,0.3649839219889676,0.3658355679808295,0.3687649202161076,0.3742548565818079,0.3799380017486686,0.3842900027290094,0.3870933559393875,0.3912769840770344,0.3950513894175866,0.399437148217636,0.403071470761961,0.407627765064836,0.4130257247856267,0.4136313465783664,0.4269919939001144,0.0,2.785583335049531,67.18750696463754,201.72403414365945,297.0068966958223,APP_public_baseline,3 +100000,95745,51354,485.132382892057,6913,70.87576374745417,5423,56.05514648284505,2129,21.84970494542796,77.32698317968122,79.68643834676605,63.31555014592704,65.06097492281134,77.06782031896114,79.42871368808835,63.21986489685325,64.96862440856546,0.2591628607200817,257.7246586777022,0.0956852490737887,92.35051424587937,194.26066,135.86322232016903,202893.79079847512,141901.11475290512,371.53128,236.62617285360813,387463.2095670792,246562.78954891444,436.85052,210.21317077629175,452590.0360332132,216703.76707317613,3844.7296,1745.6334356262523,3977168.5518826046,1784786.5325878651,1238.75799,545.8564767849946,1277076.703744321,553381.9800355041,2080.82892,864.7880592118075,2137648.3576165857,873029.8603261645,0.43222,100000,0,883003,9222.445036294324,0,0.0,0,0.0,30707,320.121155151705,0,0.0,39714,411.1128518460494,1439586,0,51820,0,0,17319,0,0,68,0.7102198548227061,0,0.0,0,0.0,0,0.0,0.06913,0.159941696358336,0.3079704903804426,0.02129,0.3351708930540242,0.6648291069459757,24.61820798159023,4.300346674278966,0.3136640236031717,0.2498617001659598,0.2137193435367877,0.2227549326940807,11.212964555315368,5.894112947312249,22.64917639238776,14154.229264475354,61.82927887275465,16.393934496187494,19.44749045917817,13.315220036889324,12.672633880499667,0.5648165222201733,0.7749077490774908,0.7160493827160493,0.5554635761589404,0.1069887834339948,0.7489823609226595,0.9384920634920636,0.8818380743982495,0.6879432624113475,0.1471861471861472,0.4960749556849835,0.6780258519388954,0.655144694533762,0.5151187904967602,0.0969827586206896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025631933539334,0.0050090243556204,0.0077136999370724,0.0101491384915474,0.0129773709636409,0.0155287408991395,0.0181200799445282,0.0207418900434844,0.0233535014921712,0.0259672466734902,0.0283796248846981,0.0308984150447565,0.0335725005653666,0.0357937227119202,0.0379211454744269,0.0404339963833634,0.0429448487923055,0.045392307373138,0.0478625549561909,0.0501510574018126,0.0676584194592337,0.0843524747089039,0.1004193751310547,0.1156712887524573,0.1296024961261555,0.1465637555508564,0.1614254653444344,0.1752730989544515,0.1891146573746486,0.2009917568263781,0.2158893715172614,0.229455466990123,0.2420569289693593,0.2545046769870357,0.2652782669954209,0.2771607811841901,0.2878559379782611,0.2979197873610469,0.3075131770265358,0.3165314262137257,0.3246241864128042,0.3316893736162037,0.3388737403675163,0.3450664489717517,0.3504276623961261,0.3556622165190139,0.3611612515042118,0.3656556645851918,0.3700230851036236,0.3747738228884633,0.3730110612613341,0.3711378531695765,0.3698672603782093,0.3683251110371667,0.3676654368007617,0.3653831397044153,0.3620336723845189,0.3620394736842105,0.362689864205353,0.3635373128996534,0.3645282311011067,0.3660154007561811,0.3663083040541962,0.3672120125504258,0.3683500060262745,0.3714196111227263,0.3725299828669332,0.3765439879001764,0.3786510140241116,0.3821473951715375,0.3855822214126326,0.3877713497160448,0.3912661011624254,0.396482450155409,0.3989506230675536,0.3992924528301886,0.404213097237063,0.4059967585089141,0.4109090909090909,0.4177115987460815,0.0,2.3118605838889112,65.03069712106576,206.0939513288596,292.3096581961981,APP_public_baseline,4 +100000,95745,51402,485.2472713979842,6910,70.60420909708078,5421,55.87759151913938,2058,21.0350409943078,77.39144353273707,79.73062301635841,63.36142006586866,65.08738236673096,77.1249449270111,79.46735494361006,63.261865128846665,64.99188834040619,0.266498605725971,263.26807274834607,0.0995549370219919,95.49402632477212,193.1996,135.21971793066268,201785.57627030133,141229.01240865077,371.57995,236.97840306872877,387356.6243668077,246773.25507204427,442.87113,213.62374859592884,457863.4393440911,219401.8316604687,3827.39791,1759.302350417705,3950373.606976866,1790369.889203302,1254.20847,561.398860347295,1292459.1362473236,568860.4003836178,2013.07432,854.6543523967348,2061102.9087680816,857556.7059721638,0.4319,100000,0,878180,9172.07164865006,0,0.0,0,0.0,30635,319.19160269465766,0,0.0,40208,415.29061569794766,1446621,0,52047,0,0,16982,0,0,66,0.6893310355632147,0,0.0,0,0.0,0,0.0,0.0691,0.1599907385968974,0.2978292329956584,0.02058,0.3303472987872106,0.6696527012127894,24.306210250821938,4.2567229974717895,0.3080612433130418,0.2565947242206235,0.2137981922154584,0.2215458402508762,11.222565482646788,5.844584894473381,22.079557648130606,14150.365851181616,61.83608035701762,16.816085372950145,18.93930446364549,13.450682062803576,12.630008457618414,0.5794133923630327,0.787922358015816,0.7239520958083833,0.5903413821815154,0.1095772217428818,0.7392739273927392,0.918095238095238,0.8822222222222222,0.6966666666666667,0.1333333333333333,0.5174091141833077,0.7090069284064665,0.6655737704918033,0.5549389567147613,0.103373231773667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026324315567795,0.0052697183740892,0.0077210283882226,0.010400056875311,0.0128620959624203,0.0155219444670629,0.0183105767271245,0.0208235558185565,0.0232508249139331,0.0258144388966194,0.0283811475409836,0.0308191070256073,0.0333740919226066,0.0358061793705358,0.0383885865083292,0.0406883657511181,0.0431263777775477,0.0455295008348803,0.0481066079020404,0.0504599102055272,0.0686707374354156,0.0852132423722429,0.1006357265746296,0.115419400975938,0.1299689997680254,0.1480208542633855,0.1629616273890079,0.1770069691972123,0.1899604827512549,0.2014515748622397,0.2174647947978123,0.2312135602020617,0.2450401678461555,0.2570014314280407,0.2680894107816297,0.2787289852024835,0.2890769608171093,0.2993865306397609,0.308455511333356,0.3164478729126846,0.32420307784805,0.3308353305664347,0.3374309343240141,0.3436960690316395,0.3495787914835765,0.3548136837179518,0.3603262161181783,0.3645438109546485,0.3684026473597637,0.3718559162193176,0.3709772898503928,0.3688594441542733,0.367315350303235,0.365629869005713,0.364274374230307,0.3618653261417636,0.3589200467895419,0.3592781984462582,0.3600341296928327,0.3603470127273701,0.3616402364642958,0.3629413978175193,0.3644247527455221,0.365394539050055,0.3672127978348074,0.3697012541565208,0.3708420181023898,0.3749289548468582,0.3795756998129125,0.3830407023144453,0.3879598662207358,0.3921820615796519,0.3930544092438575,0.3980411661182952,0.3990773865562041,0.4038529724618839,0.4110892884121468,0.4131266357962553,0.4210382513661202,0.4226487523992322,0.0,2.9022974281733576,66.08109010393214,201.61611834512817,291.2045110437006,APP_public_baseline,5 +100000,95720,51598,487.4007521938989,6953,71.24947764312579,5423,56.01755119097368,2138,21.928541579607188,77.37264048070351,79.73320003287266,63.34029949113111,65.08242935698206,77.1097580124192,79.4706372685409,63.24342952417456,64.98836848871798,0.2628824682843032,262.5627643317614,0.0968699669565538,94.06086826408,191.84572,134.3405865930363,200423.86126201425,140347.4577862895,370.52529,236.1932992674305,386417.4780610113,246079.00048833105,438.95659,211.96328787011305,454568.80484747177,218308.557807638,3845.27402,1748.1993088568709,3977588.863351442,1786974.0273867068,1302.67242,568.9698589415875,1347172.5762641036,580734.0574984163,2089.17556,868.2237816120372,2146352.611784371,876208.5965930047,0.43314,100000,0,872026,9110.175511909736,0,0.0,0,0.0,30614,319.12870873380695,0,0.0,39790,411.67989970748016,1450939,0,52133,0,0,17041,0,0,61,0.6372753865440869,0,0.0,1,0.0104471374843292,0,0.0,0.06953,0.1605254652075541,0.3074931684165108,0.02138,0.3307787053510332,0.6692212946489667,24.800772250230203,4.31828652855384,0.322884012539185,0.2445141065830721,0.2181449382260741,0.2144569426516688,11.43469649772832,6.035630371090659,22.716682311093777,14185.286042252004,61.35100301666719,15.918645809664296,19.791461166941936,12.94259657434473,12.698299465716223,0.5651853217776138,0.7684766214177979,0.6956025128498001,0.587274290627687,0.1225697379543533,0.7490013315579228,0.9109848484848484,0.8479166666666667,0.73992673992674,0.1583710407239819,0.4947717419025759,0.6741854636591479,0.6380802517702596,0.5404494382022472,0.1143451143451143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028658227848101,0.0056449079282073,0.0083183704109477,0.0109684757881052,0.013482597687826,0.0160738644461184,0.0187861860882328,0.021260959652149,0.0236637397908595,0.0262565257447026,0.0287486543292151,0.0312214453650373,0.0334803755231308,0.0358809050556648,0.0381619535948993,0.0408859307336936,0.0433085540347462,0.0456487916191266,0.0481011079468684,0.0506728605949504,0.0679350096065491,0.0842436798928511,0.0997231950007339,0.1145304535183141,0.1284786641929499,0.1471340676998541,0.1620122397462957,0.1758452255531079,0.1889750325708549,0.2012503753270707,0.2154926392194449,0.2299095551324216,0.2429992931325104,0.254883090181325,0.267070835992342,0.2793596277420784,0.2900074795985576,0.3005844133908363,0.3101289552917116,0.3183648188293589,0.3257481007967389,0.3329001440061817,0.3397534668721109,0.3453565555568892,0.3512754078020654,0.3569084223774152,0.3619499730701304,0.3665563756681089,0.3704073042802564,0.3749950507463474,0.373695619976033,0.3713979027330526,0.3694298035457594,0.368518491734043,0.3668466538741874,0.3639290971540726,0.3616215702426969,0.3617469087082346,0.3624201209718757,0.3633947997289296,0.3635496718460762,0.3645021986472896,0.3652448855665138,0.365898843801616,0.3659262816664665,0.3677380766630259,0.3678869876641464,0.3726116644740963,0.3775549421753258,0.3817365269461077,0.3848661866594213,0.3893922534838128,0.3926341678753862,0.3948370392933292,0.401557077197261,0.4031990521327014,0.4078220858895705,0.4086479902557856,0.4135546334716459,0.4160892994611239,0.0,2.5234790829028007,65.94862111875392,190.9090402575609,301.76635366663777,APP_public_baseline,6 +100000,95734,51171,483.3601437315896,7070,72.32540163369336,5582,57.63887438109763,2166,22.186475024547185,77.33281654085012,79.69945371975669,63.319784280511655,65.07123532869572,77.05495898252995,79.42491094119306,63.21513904624449,64.97135734814277,0.2778575583201643,274.5427785636281,0.1046452342671671,99.8779805529466,193.96872,135.70297596697006,202612.15451145885,141750.0323468883,368.44078,234.7869838356119,384187.7284977124,244581.0840205493,436.96122,210.8127817563689,452766.185472246,217297.0471569568,3948.89776,1825.8096708443225,4076884.596903921,1859423.6125267053,1330.28742,594.8832213882258,1370388.461779514,602289.2373993573,2117.13018,900.2720615423489,2169587.0432657152,902397.64842948,0.43276,100000,0,881676,9209.643386884492,0,0.0,0,0.0,30420,317.0764827542984,0,0.0,39792,412.0166294106587,1442781,0,51918,0,0,17259,0,0,76,0.7938663379781479,0,0.0,1,0.0104456097102387,0,0.0,0.0707,0.1633699972271004,0.3063649222065063,0.02166,0.340419769803656,0.6595802301963439,24.280934254125597,4.312321252275162,0.3317807237549265,0.2432819777857398,0.2158724471515586,0.209064851307775,11.203884406812335,5.879968391419205,23.285209083371605,14102.803676729252,64.11869983657591,16.43804450242457,21.12018372435249,13.300170252762076,13.260301357036772,0.5687925474740236,0.7820324005891016,0.693304535637149,0.5826906598114824,0.1236514522821576,0.7329876863253403,0.922,0.83,0.7297297297297297,0.1578947368421052,0.5060658578856152,0.7004662004662005,0.6427514792899408,0.5327210103329506,0.1148225469728601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028473284763246,0.005558203929285,0.0082038785663519,0.0107439444608206,0.0136023277581084,0.0163074478487614,0.0186622339611866,0.0210005104645227,0.023547575714198,0.0260390534604396,0.028399188008776,0.0309997124902452,0.0335506292670889,0.0361074779348911,0.0385980479148181,0.0410464731662945,0.0434057625784535,0.0455399304654662,0.0476888680913014,0.0500593836601171,0.067236015117663,0.0830996526179215,0.0986355675346876,0.1134067228127727,0.1275669407547965,0.1459375429616861,0.1607390986136597,0.1750729204368839,0.1881129938673903,0.2002488763020414,0.2151065731795319,0.2290417541505227,0.242029001272749,0.253696736372386,0.2644227066163444,0.2763746732243343,0.2872277481942909,0.2962721100690183,0.3052739142776043,0.3133856463714989,0.3222907958269166,0.3292341566822435,0.3366239245336683,0.343339812348523,0.349956212902598,0.3556570582062835,0.3604576842580176,0.3646345502254605,0.3687923945890562,0.3733969697770962,0.3716447705630041,0.3705077128796129,0.3682932339320005,0.3665440217863661,0.3652197253247043,0.3642604822607894,0.3612390054932842,0.3617451984002897,0.3621920528667545,0.3629225541048113,0.364471410323841,0.3653098468618583,0.3662324017650767,0.3669072812051649,0.3680846958954324,0.3683109274467751,0.3687961531856431,0.3731003759754826,0.3751984476980067,0.3788271925272444,0.3830458849901642,0.3856837606837607,0.3902485296907608,0.3930150983681562,0.3959095599962473,0.3937817708949048,0.3975041850555471,0.3992740471869328,0.4097145993413831,0.4156142365097588,0.0,2.6097212261862373,67.78012878734448,218.8958025742781,293.3041819935257,APP_public_baseline,7 +100000,95767,51433,484.3526475717105,6893,70.49401150709535,5519,56.91939812252655,2226,22.721814403709004,77.34910350822409,79.67945415675766,63.34642956891118,65.06744480892874,77.0706550976966,79.40330780531488,63.24190748000848,64.96702097729546,0.2784484105274885,276.146351442776,0.1045220889026978,100.42383163327884,193.083,135.17250822019136,201617.4673948229,141147.27225473424,371.20131,236.27009986901044,386900.6547140456,246005.34617249208,442.13967,213.11252339715531,457577.4744953899,219387.621126887,3948.91491,1810.3668739614773,4074854.5636806,1841851.8564447844,1320.53611,588.5221331451265,1360874.4661522238,596645.7700460943,2169.49876,916.522041609163,2217239.9260705668,916516.0285727936,0.43188,100000,0,877650,9164.430336128313,0,0.0,0,0.0,30629,319.0973926300292,0,0.0,40083,414.4433886411812,1445779,0,52017,0,0,17081,0,0,70,0.7309407207075507,0,0.0,0,0.0,0,0.0,0.06893,0.1596045197740113,0.3229363122007834,0.02226,0.3369324473975637,0.6630675526024363,24.284922800319908,4.291520625368972,0.3292263091139699,0.2373618409132089,0.222141692335568,0.2112701576372531,11.33312453337246,6.024269888623588,23.78294202602973,14148.474672075045,62.876693509611,15.881391048761596,20.558160279795807,12.97037153567376,13.466770645379842,0.5633266896176844,0.7748091603053435,0.6967528893780958,0.5763293310463122,0.1272430668841762,0.7307171853856563,0.909278350515464,0.8565488565488566,0.6985294117647058,0.1541666666666666,0.5021034397426379,0.6957575757575758,0.6392215568862275,0.5391498881431768,0.1206896551724138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027442482177576,0.0055038060389827,0.0083594566353187,0.0110511828219114,0.0135742465530564,0.0162465898448633,0.019058684441183,0.021482880032658,0.0241240842350488,0.0266313355568742,0.0292589974490579,0.0319853054355522,0.034540521653341,0.0373412379834908,0.0397451362469456,0.0420264408180128,0.0447316411949132,0.0470428435154079,0.0496565912656767,0.0518072665548948,0.068771915177826,0.0848847425009413,0.0997043157320806,0.1149880713407392,0.1294327175390711,0.1474134742404227,0.1618983007727615,0.1759244488402514,0.1887201272294506,0.2013415627277013,0.2163733247214597,0.230401488275504,0.2435456858864214,0.254873006497342,0.2661391499570796,0.2773881928057872,0.288538608379196,0.2982925786786043,0.3075054761715602,0.316699689622393,0.3235899928255688,0.3311992321917648,0.3379674584941856,0.3439931892034485,0.3502388157654865,0.3556567451503035,0.3599548928705676,0.363978131491417,0.3680235651350194,0.3724470899470899,0.3706538170823885,0.3693109725823357,0.3679354420022008,0.3673495963191249,0.3655939563381119,0.3621871024112084,0.3588861770579099,0.3591109357532715,0.3594137465154858,0.359647239812529,0.3608541459478731,0.3625441135651691,0.3629833441851673,0.3636384048859349,0.3647619277924213,0.3665005246589716,0.3677949543129705,0.3707540275173969,0.3742159537899996,0.3777037601829929,0.3812106448499333,0.3845865667647846,0.3900223856731691,0.3933009184224743,0.3952353616532721,0.4024730270335798,0.4076103977450673,0.4122734761120263,0.4120771596309757,0.4167327517842982,0.0,2.6750449682925,64.4110587004858,212.16559598293517,299.7555357068832,APP_public_baseline,8 +100000,95664,51200,482.94029101856495,7068,72.5769359424653,5639,58.360511791269445,2145,22.04591068740592,77.31532774038504,79.70882958645873,63.31028192710126,65.07686918417677,77.04007986003757,79.43228850077296,63.207811660079656,64.97639030844883,0.2752478803474787,276.5410856857784,0.1024702670216015,100.47887572794424,192.00808,134.39968179320238,200710.9048335842,140491.38839396468,368.6163,235.32389449362813,384708.84554273286,245374.92107127872,445.04968,215.31986528095945,461570.2563137648,222202.67417076373,3964.64972,1833.9885478630283,4107082.643418632,1879848.6033022103,1325.77128,595.6244244603281,1373234.0796956012,610002.0454666922,2091.2465,885.7693927132531,2151792.6283659474,897004.4889048636,0.43174,100000,0,872764,9123.2229469811,0,0.0,0,0.0,30497,318.176116407426,0,0.0,40532,420.0117076434186,1449231,0,52112,0,0,17124,0,0,53,0.5540224117745443,0,0.0,2,0.0209065061046997,0,0.0,0.07068,0.1637096400611479,0.3034804753820034,0.02145,0.3382313291992451,0.661768670800755,24.085446929838827,4.202756714435168,0.3124667494236566,0.2649405923035999,0.2122716793757758,0.2103209788969675,11.232644464296026,5.925946682707818,23.094887209823227,14183.632225454216,64.99041078283506,18.25990481340802,20.22316732561325,13.277947074179837,13.229391569633965,0.58077673346338,0.7938420348058902,0.7048808172531215,0.5826306913996627,0.1303258145363408,0.7298780487804878,0.8973509933774835,0.8253638253638254,0.7142857142857143,0.1692913385826771,0.5196299074768692,0.7235955056179775,0.6596409055425448,0.5378531073446328,0.11983032873807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027453046173795,0.0053224923457491,0.0080070632649333,0.010769512120781,0.0130615234375,0.0157473898650369,0.0184203010893068,0.0211020887595117,0.0236232551004755,0.0262047637577569,0.028798227801366,0.0311553040030405,0.0337424259569784,0.0362390520350334,0.0388720298920336,0.0414835193248456,0.0438904603524913,0.0462900497150982,0.0490440824647901,0.0514966440155084,0.0684344700768973,0.0847608477131847,0.1004975019942063,0.115219884874825,0.1293945054829074,0.1474196792462817,0.1627022894278554,0.1773384322038411,0.1904034033820039,0.2023270291737329,0.2161320225930237,0.2307325789160214,0.2432120539116423,0.2550783644164259,0.2663215288869306,0.2782973341764569,0.290278615635543,0.2998322695394729,0.3091609122296929,0.3174761511649239,0.3255326297253148,0.3327048738787268,0.3388099835345123,0.3442522596055743,0.3501507488815406,0.3552230705660331,0.36031328320802,0.3653498382618884,0.3704677983672411,0.3745639073897875,0.3734609938642033,0.3714982905040256,0.3700736310548142,0.3680063726555145,0.3660965480284017,0.3633546090585491,0.3603736479842674,0.3614240204932838,0.361537277438555,0.3617903617903618,0.3631065049944714,0.3643755935422602,0.3656415427275019,0.366390134529148,0.367875147743445,0.3698272030951821,0.3694442851407926,0.3731471195048405,0.3781494737588149,0.3826927706009789,0.3872555785599263,0.3925874350597182,0.3944532993305706,0.3962994503367655,0.3953332695801855,0.3946480231436837,0.3975755715820163,0.401286690792119,0.4037767286864759,0.4020618556701031,0.0,2.2778337170262644,72.5743439332872,216.1246306113123,289.8668679431633,APP_public_baseline,9 +100000,95634,51300,486.0614425831817,6864,70.63387498170107,5437,56.35025200242592,2107,21.645021645021647,77.3146043072854,79.73426825657677,63.296484254502126,65.0830772652385,77.04093390898227,79.45894446582865,63.19555229339056,64.98367843747938,0.273670398303139,275.32379074811786,0.1009319611115699,99.39882775911713,193.05462,135.19079109333668,201868.18495514148,141362.6859624576,371.33133,236.445419258698,387789.85507246375,246745.96823169373,438.25879,210.90144081853825,454962.6283539327,217886.6357279156,3838.71445,1764.9019151439118,3982000.010456532,1813511.25660739,1265.18977,558.436399886666,1310643.1290126943,571624.1921143793,2056.25636,876.6652150036628,2115116.945856076,888007.9992428211,0.43066,100000,0,877521,9175.826588870066,0,0.0,0,0.0,30689,320.388146475103,0,0.0,39794,412.9807390676956,1443041,0,51849,0,0,17383,0,0,73,0.7424137858920468,0,0.0,0,0.0,0,0.0,0.06864,0.1593832721868759,0.3069638694638694,0.02107,0.3397328881469115,0.6602671118530885,24.24335955622832,4.247513398626559,0.3141438293176384,0.25915026669119,0.2089387529887806,0.217767151002391,11.069585703415353,5.7255384272048975,22.748521479270128,14055.933872367512,62.214521055990005,17.064962438516876,19.374010020590852,13.16607790710203,12.609470689780224,0.5736619459260621,0.7885024840312278,0.702576112412178,0.5675675675675675,0.1197183098591549,0.7242744063324539,0.9131238447319778,0.8671171171171171,0.6594982078853047,0.1388888888888889,0.5154297373119102,0.7108294930875576,0.6447784810126582,0.5392265193370166,0.1142533936651583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025128428561296,0.0050602873918731,0.0075526860762577,0.0100696032108926,0.012451171875,0.0152271338358117,0.017890474393366,0.0205128205128205,0.023053870779679,0.0256833007342474,0.0283076923076923,0.0304982023626091,0.0327863793014762,0.0350522899386945,0.0376861858607128,0.0400450804417056,0.0423768326166917,0.0447773590390465,0.047371323338154,0.0494868799799758,0.0664213969919625,0.0822186141517833,0.0981487509581762,0.1129203726119677,0.1268484215192679,0.1448492741653695,0.1596294998034904,0.1737397420867526,0.1863853733163587,0.1976364417705199,0.2131805528581601,0.2274855829683909,0.2407484090314706,0.2531143517656211,0.2653173710783341,0.2766531264566824,0.2875074047994277,0.2972866382710206,0.3064833229160748,0.314435828018171,0.3224050676888513,0.3305674862780437,0.3378882428864075,0.3439644005181596,0.3497254482725108,0.3559568567026194,0.3610582699239087,0.3653941560341428,0.3693206095997721,0.3734518182058256,0.3718752105653258,0.3693386028449855,0.3670936071771145,0.365483189018563,0.363988556442961,0.3610317387163179,0.3589336214292523,0.3592213790828109,0.3603643863870746,0.3598134194474345,0.3606286497549618,0.3622352197281062,0.364458398744113,0.364974278684858,0.3660896497082903,0.3662846599620592,0.3653178532809743,0.3713318284424379,0.3774179983179142,0.3793664655446173,0.3830909090909091,0.3851139563300217,0.3898025271445806,0.3919736539787087,0.3925631564007947,0.3901588065447546,0.3890278211941231,0.3882377133456714,0.3895637769188294,0.388715953307393,0.0,1.983981694410638,67.32154062138797,204.9171724545635,290.82238502550626,APP_public_baseline,10 +100000,95635,51345,484.25785538767184,6887,70.6645056726094,5491,56.726094003241485,2130,21.812098081246404,77.29129418892526,79.69451392079777,63.29829466637945,65.07136633668937,77.02079645595035,79.42682201103766,63.19735635175424,64.97508296879262,0.2704977329749169,267.69190976011714,0.1009383146252034,96.28336789674564,193.3723,135.30230889493305,202198.25377738275,141477.8155434026,370.38863,235.8772072371825,386609.3480420349,245959.86542286305,438.689,211.82836538951807,455179.8922988445,218627.2336947666,3912.75727,1804.4604095696968,4043024.47848591,1838668.5837323144,1319.98831,597.2294058032952,1358995.7965180113,603527.8338998321,2087.46636,880.8828921167948,2138931.625450933,882008.8722765113,0.43142,100000,0,878965,9190.829717153762,0,0.0,0,0.0,30542,318.63857374392217,0,0.0,39862,413.2378313378993,1442560,0,51900,0,0,17127,0,0,71,0.742406022899566,0,0.0,1,0.0104564228577403,0,0.0,0.06887,0.1596356218997728,0.3092783505154639,0.0213,0.3396904367053621,0.660309563294638,24.71220734731373,4.210085620451884,0.3241668184301584,0.245674740484429,0.2152613367328355,0.2148971043525769,11.443055059693616,5.99982483935856,22.884160975380617,14157.695769808544,62.81648918758908,16.32683506606602,20.24590220737449,13.17618221474365,13.067569699404924,0.5685667455836824,0.7753891771682728,0.6921348314606741,0.5788135593220339,0.1362098138747885,0.7490297542043984,0.9099804305283756,0.8627858627858628,0.7809187279151943,0.2103321033210332,0.4978453738910012,0.6933174224343676,0.6289453425712086,0.5150501672240803,0.1141602634467618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029273826767825,0.0052418128358511,0.0080793317296468,0.0107204552382887,0.013470479911282,0.0162550287722157,0.01868996879907,0.0214123797659648,0.0237710616718468,0.0261708271046218,0.0287762406292623,0.0313771003656382,0.0339084184644506,0.0365813445447425,0.039064274358392,0.0416619260883505,0.0440257438671765,0.0464244551278723,0.0489776806617761,0.0514935098785382,0.0678267231018446,0.0836999790488162,0.0995610534716679,0.1144947368421052,0.1289965061906923,0.1474012914152641,0.1619050652397787,0.1760338325841021,0.1886112625760443,0.2010113372842051,0.2157613266340327,0.2300203586589274,0.2434903770791605,0.2561564488048441,0.2669253323339433,0.2785783220739459,0.2892404992569251,0.2988074727205162,0.3076608598878012,0.316813185553658,0.3251198443759987,0.3318742026475029,0.3389969075462979,0.3454168016607269,0.3520909124092032,0.3566956843859974,0.3616938568222002,0.3665782628653032,0.3708164086325707,0.3748943140984992,0.3726114220214416,0.370335627871046,0.36896454301455,0.3665058040954741,0.3649158379675875,0.3612803002337886,0.3591793274426292,0.3595288761320334,0.3592658093095929,0.3601751961083487,0.3604445281597287,0.3606831149724646,0.3625368731563422,0.3628537391265256,0.3644868827160494,0.3667686194546833,0.3675754209041962,0.371088585279859,0.3740662438336857,0.3783902361199744,0.3808892747795092,0.3846563098531602,0.3887197056211141,0.3927965448095017,0.3956085918854415,0.3973198116624411,0.4044855708908406,0.4040910039657691,0.4085537422622397,0.4192678227360308,0.0,2.6608285388299286,67.85951518144243,202.71071313305677,296.89960873096584,APP_public_baseline,11 +100000,95631,51122,482.96054626637806,6855,70.44786732335749,5424,56.13242567786597,2078,21.35290857567107,77.27514686010801,79.68578545023678,63.27600815666828,65.05606979453114,77.01543297223051,79.42610089592318,63.17898185886607,64.9614050749436,0.2597138878774956,259.68455431359416,0.0970262978022162,94.6647195875414,193.39672,135.34841317401307,202232.2468655561,141531.94379857273,365.59704,233.03485714306535,381730.1398082212,243113.7901788843,437.39767,210.94437482570785,453761.0921144817,217809.0887536764,3846.71283,1764.2381682437494,3984977.9046543487,1807537.3834872767,1267.79961,563.8586879439051,1309560.0485198316,573537.9807533403,2023.78182,854.9774488800409,2081760.7888655355,864656.0008669063,0.42961,100000,0,879076,9192.37485752528,0,0.0,0,0.0,30198,315.180223985946,0,0.0,39808,412.57542010435947,1441618,0,51838,0,0,17416,0,0,60,0.6274116133889638,0,0.0,0,0.0,0,0.0,0.06855,0.1595633248760503,0.3031363967906637,0.02078,0.3337984928830589,0.6662015071169411,24.30714230057244,4.189121113784012,0.3266961651917404,0.254240412979351,0.2120206489675516,0.2070427728613569,11.24265930145563,6.096498462775223,22.315157040736704,14071.101864816415,62.1044288921439,16.706288871565537,20.32793476116899,12.571023908718328,12.499181350691062,0.5730088495575221,0.7897026831036983,0.6952595936794582,0.5894924309884239,0.108695652173913,0.7351804123711341,0.9120458891013384,0.8636363636363636,0.6736842105263158,0.1470588235294117,0.5080061983471075,0.7149532710280374,0.6279620853080569,0.5608591885441527,0.0986842105263157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027645009721322,0.0053312792029433,0.0080158287250773,0.0105637379380396,0.0131815824001464,0.0154493237738308,0.0178039727535995,0.0203060714030484,0.0231768783290564,0.0259665792922673,0.0285764106140953,0.0310349078506708,0.0333861475780896,0.0356638527268416,0.0380937629078893,0.0405524233176434,0.0430672595540906,0.0457476970370447,0.0482533273671394,0.0504833512352309,0.0676428474377867,0.0839000366741761,0.0996270812542675,0.1139976612622862,0.1287920398850769,0.1466245842953674,0.1608998746041529,0.1744683119236714,0.1870886265612123,0.1992949496469374,0.2149326884668948,0.2284759952717137,0.2412845836876185,0.2527828041892855,0.2640170411902344,0.2758390827583908,0.2860069405574835,0.2962369353710016,0.3053357771427921,0.3138038783200073,0.3217915989788814,0.3290274893527155,0.3366485870610157,0.3436384827039302,0.3498277939368862,0.3553170996740097,0.3600521996637137,0.3642586714597116,0.368788154305754,0.3732809170207415,0.3723323788427252,0.3696240269419754,0.3677646261193819,0.3660303021524378,0.3637635849337501,0.3605629047604432,0.3578460123963667,0.358028548875148,0.3588259399651675,0.3586209359210127,0.3591283620188066,0.3597102367191829,0.3614624630293877,0.3640414716617775,0.3660621824049322,0.3684045799535745,0.369192178325067,0.3742163132856558,0.3771034288530592,0.3817140128909047,0.3839777747415402,0.3864726574992005,0.3902838084450318,0.3911691070480236,0.389683734939759,0.3909980897803247,0.3970429693516094,0.4024464831804281,0.4068219633943428,0.4057915057915058,0.0,2.265392802949868,68.6261192146582,199.64219207202768,289.51425310683214,APP_public_baseline,12 +100000,95674,51171,482.0745448084119,6881,70.28032694357923,5442,56.16991032046324,2146,21.94953696929155,77.28391542799022,79.68033586691512,63.28504443165552,65.05897098445138,77.00762725505669,79.40737372481514,63.18048856114979,64.95871489718834,0.2762881729335333,272.9621420999706,0.1045558705057345,100.25608726303405,193.60682,135.52082071061193,202360.95490937977,141648.53639506234,370.65186,237.09943468292929,386676.4742772331,247090.947922622,441.94426,214.02412114250956,457342.820410979,220187.2818410096,3834.82723,1794.3934085034148,3961946.516294918,1829953.1106988296,1278.20138,581.4607363151598,1321245.4585362796,593208.2413187441,2091.37368,901.596905287667,2142722.871417522,906119.8412711693,0.43051,100000,0,880031,9198.225223153626,0,0.0,0,0.0,30629,319.4075715450384,0,0.0,40162,415.3270481008424,1438119,0,51734,0,0,17170,0,0,67,0.6898425904634488,0,0.0,0,0.0,0,0.0,0.06881,0.1598336856286729,0.3118732742333963,0.02146,0.3328712047691667,0.6671287952308332,24.328534932366217,4.2561382990614085,0.3235942668136714,0.2467842704887909,0.2104005880191106,0.219220874678427,11.396322982364492,6.046166341519659,23.212204542369527,14106.039632813052,62.74500132822314,16.38382002740131,20.22234120511517,13.357493394755064,12.7813467009516,0.5679897096655642,0.7900223380491437,0.6729131175468483,0.5993294216261525,0.1135371179039301,0.7175525339925835,0.9217557251908396,0.8227091633466136,0.7263843648208469,0.1473684210526315,0.5047071129707112,0.7057387057387058,0.6131850675138999,0.5553047404063205,0.1023255813953488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026651263654972,0.0054872606296656,0.0084774155558037,0.0110059857115273,0.0134814769593927,0.0162374704588053,0.0189402825233311,0.0214282796094292,0.0239427256456149,0.026460283964023,0.0293411576420378,0.0316263203320866,0.0340292855599345,0.0365858685794377,0.0392254015442421,0.0418739335022493,0.0443603958344127,0.046711509715994,0.0492843471748356,0.0517072458934378,0.0688228657389996,0.0849954455507742,0.1009099209722615,0.1160265179417026,0.1302773790424723,0.1474529979674796,0.1620367420622278,0.1756015466058818,0.1894076267653064,0.2023510466988728,0.2172952109882053,0.230934269553345,0.2443144686969023,0.2558715274734905,0.2666335924149716,0.2774002265307482,0.2881175825773761,0.2977379851604609,0.3075698479662501,0.3153647477472306,0.3226412686627765,0.3300678133139357,0.3364359491867505,0.3420106964725677,0.3474605186196139,0.3526031561646544,0.3582533408620365,0.3629062073713331,0.3669944986506124,0.3711397423191278,0.36903685510317,0.3672507203021822,0.3661532819948661,0.3644409735780294,0.3632924213536702,0.360654730829469,0.3576553125297609,0.357283755794457,0.358252410556783,0.3590951425705688,0.3594261832147294,0.3600748124713981,0.3610647159559398,0.3632467063706912,0.3631945963019656,0.3643506595890051,0.3657154306322809,0.3670032604222721,0.3728425501937302,0.3769227711753249,0.3813350378960825,0.3832828524363675,0.3835728179707598,0.3834501469590775,0.3840126853838261,0.3910838542280929,0.3911849931371053,0.3971991069616399,0.3906820095425203,0.3856812933025404,0.0,2.740443124943714,71.12041419313006,201.4462206118913,282.7243111312131,APP_public_baseline,13 +100000,95648,51823,489.3045332887253,7122,72.91318166610907,5626,58.15071930411509,2207,22.561893609902977,77.35161970545354,79.75598235696017,63.31721993396855,65.09366250430662,77.0687004050115,79.47774469478233,63.21033219854217,64.99198641093025,0.282919300442046,278.237662177844,0.1068877354263833,101.67609337636918,192.907,134.95181375526647,201683.8407494145,141091.7303056921,374.15513,238.84446057438248,390515.28521244565,249049.6474559736,451.91731,218.7328892578922,468745.462529274,225755.1730123254,3982.37769,1849.949645023912,4112939.235530278,1883621.940757285,1290.495,585.3157018928295,1330029.1067246571,592782.5723727591,2143.47354,915.49513418684,2191921.754767481,913854.2205379576,0.43409,100000,0,876850,9167.44730679157,0,0.0,0,0.0,30839,321.71085647373707,0,0.0,41049,425.4767480762797,1441657,0,51869,0,0,17132,0,0,78,0.8050351288056207,0,0.0,0,0.0,0,0.0,0.07122,0.1640673593033702,0.3098848638023027,0.02207,0.3327077747989276,0.6672922252010723,24.32563008626811,4.188060935763986,0.319232136509065,0.2532883043014575,0.2047635975826519,0.2227159616068254,11.155334830352878,5.869046571629573,23.675860185869197,14216.502909635828,64.42459611487945,17.381971110401764,20.25013784432545,14.130921229096936,12.661565931055316,0.5723426946320654,0.7943859649122808,0.6848552338530067,0.5778132482043097,0.1163194444444444,0.7339563862928349,0.9124343257443084,0.8547008547008547,0.7293729372937293,0.1368821292775665,0.5078338721711018,0.7154566744730679,0.625,0.5294736842105263,0.1102362204724409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027963242520339,0.0054961212797241,0.0082103639352913,0.011023734048606,0.0141492640551729,0.0170503157465879,0.0194666802630908,0.0220869796080914,0.0248773006134969,0.0274403359623066,0.0301618893243326,0.0326780594576264,0.035164088790096,0.0376296418482855,0.0400458611357861,0.042811177669491,0.0451685789206388,0.0473807694703403,0.0494298555911606,0.0516058394160584,0.0686242750404932,0.0850471204188481,0.1007368686232523,0.1158302377219106,0.1305651136771442,0.1487323347271476,0.1627410585336844,0.1765934991418185,0.1893204922418405,0.2016756176154672,0.2166619921900282,0.2297038072633871,0.2436347004116481,0.2564119412138336,0.2670309934883926,0.2780242695831577,0.2892483455553568,0.3000551944760467,0.3096154938376781,0.3171911168152545,0.3252685682533802,0.3327602339181286,0.3392347838435958,0.3455643566729379,0.3520052469210775,0.3575107190379971,0.3619859716682712,0.3667704824254751,0.3720608396492408,0.3756145137268857,0.3737764073839691,0.3712202503783189,0.3690818397024011,0.3664011795146066,0.3650977767863781,0.363515190513398,0.3600551007805944,0.3601248665078452,0.3607348111658456,0.3609640966957517,0.362191708773973,0.3632441418619379,0.36501869198135,0.3662138877078345,0.36675239766363,0.3679783327690825,0.3695633573852779,0.3740590254811175,0.3778456998313659,0.3808256188167984,0.3842997811816193,0.3865448592702117,0.3929199096158674,0.3939693900860428,0.3921347257503058,0.3978662191321026,0.4070919789408486,0.4052460349735665,0.3987428259087182,0.4026465028355387,0.0,2.5327470500998315,70.51305910482648,212.37022957745216,295.048121626968,APP_public_baseline,14 +100000,95791,51443,486.0477497886023,6944,71.1235919867211,5461,56.43536449144492,2103,21.58866699376768,77.3507064425629,79.67841920596011,63.34838135415546,65.06972632761327,77.09191960862637,79.42176484748707,63.25289414504838,64.97783262429344,0.2587868339365258,256.6543584730425,0.0954872091070768,91.89370331982616,194.83574,136.3817269720002,203396.7074151016,142374.25955674355,371.00145,236.1038456774602,386734.58884446346,245909.6634104041,440.10231,212.27303592660024,455913.8436805128,218866.04375792824,3889.81909,1784.8637536248928,4023042.4987733713,1825596.667353816,1291.86423,575.3440310228804,1337124.3749412782,589120.7013423814,2060.42272,863.2749578234451,2117127.371047384,870798.3162097828,0.43332,100000,0,885617,9245.30488250462,0,0.0,0,0.0,30636,319.2157927153908,0,0.0,40040,414.4335062792956,1440914,0,51801,0,0,17242,0,0,64,0.668121222244261,0,0.0,0,0.0,0,0.0,0.06944,0.1602510846487584,0.3028513824884792,0.02103,0.3438100466648366,0.6561899533351633,24.245796007942594,4.223059710252117,0.3166086797289874,0.2519685039370078,0.2162607581029115,0.2151620582310932,11.2270248954204,6.027931592359957,22.58547839143567,14106.373919224465,62.66628251574531,16.88273947423439,19.68136862474601,12.953218811367565,13.148955605397331,0.5718732832814503,0.809593023255814,0.6905725853094274,0.5702127659574469,0.1227773073666384,0.7522996057818659,0.9162011173184358,0.8586278586278586,0.7817460317460317,0.1706349206349206,0.5021579080985021,0.7413587604290822,0.625801282051282,0.5124593716143012,0.1097954790096878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024816660589117,0.0051703163017031,0.0080367743310298,0.010523321956769,0.0132178298356922,0.0154743604100705,0.0180791651379886,0.0206957781837107,0.0232584281144935,0.0257984629396534,0.0283934298566495,0.0308854161322429,0.0334515184214583,0.0359370817977805,0.0382358703610134,0.0406409157119391,0.0427130218842154,0.0450125437996309,0.0476675113197358,0.0500452874975274,0.0676795291858839,0.0835328683905101,0.0993259463482645,0.1137010919256355,0.12752547874751,0.1452748414376321,0.1599787910922587,0.1751327650245309,0.1882526261849859,0.2001950613049815,0.2155957378107846,0.2299229447428429,0.2427475607901084,0.2547464551790435,0.2654456708148278,0.276607747273411,0.2877788425110868,0.297212891919521,0.3064605691102977,0.3155419784444292,0.3229301423027166,0.3303511988881232,0.3373898645851812,0.3441073973390177,0.3505170906972227,0.3556146768650925,0.3604091380841034,0.365036761899916,0.3699391270560808,0.374619168831854,0.3733213122695589,0.371086923616749,0.3694141852566903,0.3664129868626656,0.3645800800130876,0.3616185786817603,0.3592493297587131,0.3599512444202862,0.3600815641117908,0.3599641737572772,0.3608971582456074,0.3612120490061754,0.3627587369841069,0.3650232096984993,0.3663976416006186,0.36844037659647,0.371091394607632,0.3746906136955004,0.377095564829879,0.3817362882653061,0.3855648343580802,0.389298198440441,0.3899471236542014,0.3935135135135135,0.3953774746613621,0.3935329341317365,0.3962381470542515,0.3968023255813953,0.3972873693133653,0.3996078431372549,0.0,2.159855230437152,67.23093785377212,211.9086465742607,286.9891760051749,APP_public_baseline,15 +100000,95730,51478,487.642327379087,7113,72.98652460043873,5578,57.630836728298334,2207,22.615689961349627,77.31652017658898,79.67644557077547,63.31665033110207,65.06212071946221,77.03253998296543,79.39570449401596,63.21000014707407,64.96002553317686,0.2839801936235488,280.74107675951154,0.1066501840279983,102.09518628535363,193.95794,135.8012507054597,202609.35965736967,141858.6135019948,374.35048,238.4826570469669,390391.1208607542,248464.5514775505,443.50188,214.0892298699445,459349.0337407291,220585.43054770463,3926.3622,1816.4398123200035,4055654.5179149695,1851753.1106767296,1294.55448,579.2505642847864,1334305.8602319022,587161.5412509416,2152.16886,914.8271445750324,2206124.0363522405,917921.2804199331,0.43297,100000,0,881627,9209.516348062258,0,0.0,0,0.0,30873,321.8322364984853,0,0.0,40402,418.238796615481,1437725,0,51777,0,0,17454,0,0,70,0.7207771858351614,0,0.0,0,0.0,0,0.0,0.07113,0.1642838995773379,0.3102769576831154,0.02207,0.346555883141249,0.653444116858751,24.14816409850344,4.213826820893575,0.3114019361778415,0.2621011115095016,0.2117246324847615,0.2147723198278953,11.320662242984096,6.041369952508424,23.759015917221127,14118.887466085407,64.18342716253449,17.845171068814274,19.8936939172672,13.407407490273032,13.037154686179994,0.5783434922911438,0.8002735978112175,0.7017846862406448,0.5868113522537562,0.11346316680779,0.7303582652419862,0.9211908931698776,0.8369098712446352,0.7050847457627119,0.1467181467181467,0.5176824680210684,0.7227833894500562,0.6522423288749016,0.5481727574750831,0.1041214750542299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026944621711692,0.0054946726006427,0.0078964729764019,0.0106180842740583,0.0132853190104166,0.0157150713951072,0.0180514619644477,0.0206590892844377,0.0230161245795032,0.0256974660865113,0.0283713395127553,0.0306910360406612,0.0328849950641658,0.0349383199126799,0.037422509206061,0.0400173584203837,0.0423999006252329,0.0446355403877472,0.0469646569646569,0.0491436072678779,0.0667599398596725,0.0834562940173086,0.0993203842765448,0.1139528036007235,0.1280923758304334,0.1463280481484223,0.1617383369937719,0.1750577563904651,0.1879975636079973,0.1998326054531992,0.2144996552318565,0.2286011170281854,0.241711264847931,0.2538962104227046,0.265074436222692,0.2769321167640439,0.2883698068523297,0.2982416642276606,0.3075237316618976,0.3159378760960513,0.3242101119562826,0.3324594154894135,0.3389045509464358,0.3454032645223235,0.3508795406437799,0.3561011151314571,0.3607917862828918,0.3655576800509879,0.369504888865835,0.3733768809668632,0.3726424003669625,0.3711966425534265,0.3695483031306144,0.3677755522656681,0.3662539161569446,0.3633917175414046,0.3602541699761715,0.3605378206714509,0.3611693174401429,0.3627102199223803,0.3631874552376644,0.3644778135303698,0.3644124963109743,0.3646833876954223,0.3663644057550477,0.3676385907972569,0.3683305633560662,0.3737297229060152,0.3766778227937291,0.3811857518527373,0.3847245103423027,0.3863721452639461,0.3927735240144276,0.3955599633811413,0.3992438563327032,0.40467300975551,0.407011012874205,0.4076420106252554,0.4120909595119246,0.4134316770186335,0.0,2.4283102968725725,70.10723261888283,216.28501125537832,288.3920473314681,APP_public_baseline,16 +100000,95673,51163,484.4208919966971,7084,72.70598810531706,5606,57.94738327427801,2195,22.44102306815925,77.40264542862671,79.78249554245834,63.35728834693722,65.11181794946047,77.12907492577155,79.51228998076111,63.25622883057798,65.01529171597298,0.2735705028551649,270.20556169722454,0.1010595163592356,96.526233487495,192.50616,134.65169676390806,201212.630522718,140741.58515350003,369.80624,235.1073736026232,385893.6899647758,245102.80183816035,439.5265,211.86940282019705,455697.2813646484,218521.99768638003,3941.27127,1804.8249637780807,4077575.5855884105,1844504.284153398,1307.81532,583.4693358429255,1352754.267139109,595648.3081359689,2131.68116,887.4349367677822,2182717.966406405,890423.4903222249,0.43193,100000,0,875028,9146.028660123546,0,0.0,0,0.0,30484,317.9789491288033,0,0.0,39993,414.2652577007097,1453504,0,52201,0,0,17005,0,0,84,0.8779906556708789,0,0.0,1,0.0104522697103676,0,0.0,0.07084,0.1640080568610654,0.3098531902879729,0.02195,0.3394037501686227,0.6605962498313773,24.270465749678458,4.189235262200657,0.3210845522654299,0.2550838387442026,0.2122725651088119,0.2115590438815554,11.553903381833043,6.360089647586198,23.21701479862138,14134.64103660653,63.86824668200224,17.247336567166215,20.36966738799721,13.263159839527107,12.988082887311704,0.5758116303960042,0.8,0.685,0.5994940978077572,0.1176470588235294,0.7564526803441429,0.9305019305019304,0.8556263269639066,0.7551724137931034,0.168103448275862,0.5091575091575091,0.7258771929824561,0.6245297215951844,0.5491071428571429,0.1054279749478079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026328847302812,0.0051283610528342,0.0078920673564617,0.0103185968333282,0.0131989709276903,0.0156915056106551,0.0183204706026282,0.0206776893243519,0.0234430886831401,0.0262600419587576,0.0286191662310239,0.0309628671450717,0.0333127698951264,0.0357374584178707,0.0378567448771126,0.0401339521038542,0.0423004835820277,0.0446134847085439,0.0469385420241921,0.0491875045601892,0.0673958920997095,0.0838255005445254,0.0994899565518544,0.1146692476014139,0.1289516154552071,0.1464575926866429,0.1617459778409814,0.1759639747056444,0.1886381123364965,0.2004761751552395,0.2151503403118807,0.2289217914583198,0.2422449423537089,0.2542537835709911,0.2653009582696137,0.2764489624166722,0.2874089930985272,0.2972405114491809,0.3060380479735318,0.3152242288380817,0.3233619385315485,0.33086612886279,0.3377123549842875,0.3440158922010938,0.3504311860953097,0.3558575191394038,0.3603821003013291,0.3654642448875905,0.3700482092773778,0.374540810280583,0.3731708300299655,0.3715348301037492,0.3702871270438838,0.3688549398284932,0.3677912063468525,0.3649543501200508,0.3614879303521963,0.3623590889670358,0.3635370620061101,0.3645822179391084,0.3644167869393263,0.3645864142758552,0.3656370172212004,0.3670314943042215,0.3689061071273882,0.3695425109672028,0.3710202915118605,0.3755513547574039,0.3800810858452318,0.3852619000199163,0.3871307533776048,0.3881444956586987,0.3932805071315372,0.3970396502799294,0.3958174904942966,0.4023465276131784,0.4076472402096824,0.4075723830734966,0.41602634467618,0.4151515151515151,0.0,2.5694100988147244,66.21573119263012,217.4601434683598,298.9219262157502,APP_public_baseline,17 +100000,95714,51419,484.9969701402094,6870,70.50170299015818,5363,55.30016507511963,2105,21.57469126773513,77.33907921770925,79.70633706465456,63.32552877917672,65.07565936971578,77.06994067900506,79.44031803530808,63.225264393016175,64.979880756693,0.2691385387041975,266.0190293464808,0.1002643861605392,95.77861302277311,194.76534,136.2752844703106,203486.78354263745,142377.58788715402,372.68603,238.3945298336527,388651.5556762856,248346.58444287436,437.41198,211.0573948262812,452398.2489499968,216956.2308215233,3788.56359,1753.3059021057838,3908343.586100257,1781948.6095093554,1247.23273,560.8342593112723,1284813.1412332575,567678.2699618369,2046.38484,871.2421833769146,2098579.62262574,875039.618888253,0.43295,100000,0,885297,9249.399251938066,0,0.0,0,0.0,30790,320.9352863739892,0,0.0,39799,411.21466034226967,1436840,0,51596,0,0,17274,0,0,61,0.6373153352696576,0,0.0,2,0.0208955847629395,0,0.0,0.0687,0.1586788312738191,0.3064046579330422,0.02105,0.3518055555555555,0.6481944444444444,24.37580660474029,4.202807633760378,0.3255640499720306,0.2478090620921126,0.2110758903598732,0.2155509975759836,11.05236814999839,5.855879859153737,22.849351292030587,14129.90619661733,61.83312702793273,16.23197520221176,20.081333105892902,13.002052899945893,12.517765819882175,0.5629311952265523,0.7863054928517682,0.6758304696449027,0.5769896193771626,0.112190812720848,0.7275114904793172,0.9071146245059288,0.8237704918032787,0.7262773722627737,0.188235294117647,0.49765625,0.7120291616038882,0.6184419713831478,0.5306122448979592,0.0900798175598631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027953330092367,0.0056677616903921,0.0083939790708768,0.0108010892537798,0.01333631730466,0.0160201244538593,0.0184061591801356,0.0208986309201727,0.0234258369291805,0.0261680902927139,0.0288492108258894,0.0314294224586846,0.0338887174740306,0.0362566712687259,0.0386270967741935,0.0410345505124148,0.0438021238021238,0.0464230485817774,0.0487218952141267,0.0512096522119652,0.0683011893449726,0.0850816704510971,0.0999811257444845,0.1147111714042338,0.1291880661864737,0.14811445496377,0.1631566103996689,0.1773618253638696,0.1898202568979888,0.2019378306168653,0.2169982111683441,0.2309874711685274,0.2448999575676469,0.2572225869993434,0.2680109243882563,0.2791772923827475,0.289245030154121,0.2995238684841458,0.3091286778060297,0.3174977937215619,0.3244579247751241,0.3311686792099597,0.3382944489139179,0.3431494704557435,0.349354732969928,0.3545047152389629,0.3592,0.362949032364639,0.3678759826230864,0.3724693686445707,0.3706424487050118,0.3684609030837004,0.3665100926748762,0.3658024333719583,0.3642846508858121,0.3609811471260489,0.3577828879549599,0.3578860717813631,0.3579808582895955,0.3575604332544294,0.3584132355705959,0.3599088386841062,0.3601762484263533,0.3616501043092039,0.3616023096355106,0.3619062516293863,0.3613294087388906,0.3670028364323983,0.3691939289361552,0.3742568726808443,0.3789816215225262,0.3823356021223002,0.3867870541107649,0.3888077484818202,0.3942824794791961,0.3989012301445121,0.4030548628428927,0.4083780437474205,0.4095909732016925,0.4122944400939702,0.0,2.908014584349924,66.54780698595943,210.52099751809888,276.49863483108913,APP_public_baseline,18 +100000,95675,51139,483.30284818395614,6987,71.70107133524955,5499,56.76509014894173,2071,21.196759864123337,77.30793472821749,79.68335023526966,63.31631099018998,65.07003112674738,77.04241329658981,79.42152619819622,63.21683643599224,64.97544557513028,0.2655214316276755,261.8240370734384,0.0994745541977408,94.5855516171008,192.78204,134.96609425704236,201496.77554220016,141067.25294700012,369.23096,235.58736534016828,385218.468774497,245533.49917968997,442.11455,213.63756549857624,457665.6075254769,219965.9816967672,3855.80438,1790.9340490834584,3982383.088581134,1824421.5991010235,1295.69801,585.5552141643476,1336558.8084661616,594406.430158477,2028.96476,863.3280364989616,2078629.401620068,864976.3452159786,0.432,100000,0,876282,9158.94434282728,0,0.0,0,0.0,30503,318.0872746276457,0,0.0,40274,416.5560491246407,1446722,0,52039,0,0,16873,0,0,61,0.6271230729030572,0,0.0,0,0.0,0,0.0,0.06987,0.1617361111111111,0.2964076141405467,0.02071,0.3374744027303754,0.6625255972696246,24.243193410455486,4.187206360924507,0.3113293326059284,0.2647754137115839,0.2133115111838516,0.2105837424986361,11.331991620848248,5.959625203542839,22.36817516753541,14156.858448404571,63.22289544415218,17.51780678472179,19.655026799469702,13.108736505149771,12.941325354810932,0.5817421349336243,0.7870879120879121,0.7026869158878505,0.6113989637305699,0.1210571184995737,0.7625944584382871,0.9198606271777005,0.8577154308617234,0.7821428571428571,0.1531914893617021,0.5083098951674764,0.7006802721088435,0.638911788953009,0.5569476082004556,0.1130063965884861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029564830002227,0.0056848121275992,0.0083384899420769,0.0110201511335012,0.0135159873077861,0.0158852999877805,0.0184968033363583,0.0213169984686064,0.023829969944182,0.0264305456034394,0.0289398956400504,0.0312121398796689,0.0334142378180471,0.0359232702847488,0.0383051617030937,0.0406082974082229,0.0430020620265887,0.0453611030358403,0.04787466450284,0.0501464777572743,0.0671082046674884,0.0831571234167277,0.0987860283085187,0.1138201975365779,0.128925114405618,0.14607549684284,0.1609863757905012,0.1755030341743851,0.1884282508815044,0.2007574538393039,0.2161291712445334,0.229769646083767,0.2428144200967864,0.2553068165662354,0.2664158084675644,0.2770490350313532,0.2878076000223202,0.2976537444438192,0.3073046143367955,0.3166874835279423,0.3250900582627732,0.3324673500912793,0.3398820520108001,0.3462946294629463,0.3521695748460733,0.3572971571761859,0.3625227258479092,0.3666683672167946,0.3713558507668134,0.37561678991441,0.373230598998745,0.371458537460497,0.3697058740428898,0.3687790023201856,0.3666472807527699,0.3638053681994868,0.3605390287312484,0.3595861591010346,0.3599347135125848,0.3610871905274488,0.3616323762152385,0.3620771890774673,0.3635158173896571,0.3640953150242326,0.3658742812968063,0.3680785178187162,0.3688888888888889,0.3735832330779459,0.3775690999291283,0.3815532042323817,0.3859439595774001,0.3876251137397634,0.3924468422722945,0.3966270601763128,0.4000946521533365,0.4014520352297072,0.4093949528732137,0.4110910186859554,0.4155633612537152,0.4255479969765684,0.0,2.739480526690638,69.41190496113644,206.84212712273887,289.5818515658867,APP_public_baseline,19 +100000,95697,51157,483.3484853234689,7058,72.26976812230268,5567,57.49396532806671,2155,22.05920770766064,77.38171245272493,79.75628799798304,63.34258245905804,65.09534787586811,77.11044339463218,79.48790264030123,63.241470251427145,64.99847276366123,0.2712690580927415,268.38535768180805,0.1011122076308979,96.87511220688803,191.34984,133.9042594635623,199953.85435280105,139925.24265500729,370.9345,236.08469911580477,386928.4303583184,246016.90916156684,442.55219,213.54216303828596,458645.42253153183,220073.7190183079,3952.59261,1816.258635300228,4086015.089292245,1853843.36359792,1303.17187,585.4931281885994,1344532.3782354724,594583.328828071,2103.34628,888.4840451219378,2155955.3591021663,892052.3395415819,0.43081,100000,0,869772,9088.811561490957,0,0.0,0,0.0,30636,319.42485135375193,0,0.0,40207,416.3035413858324,1455855,0,52304,0,0,17048,0,0,59,0.61652925379061,0,0.0,0,0.0,0,0.0,0.07058,0.1638309231447738,0.3053272881836214,0.02155,0.3390920048212133,0.6609079951787866,24.57290125983113,4.281654008495461,0.3172265133824322,0.249685647566014,0.2128615052990838,0.2202263337524699,11.22405520663978,5.846971897530618,23.050558609291425,14099.293021125854,63.506286857352144,16.811369828398462,20.006723773471418,13.768990615147343,12.919202640334904,0.5667325309861685,0.7762589928057554,0.7072480181200453,0.5546492659053833,0.1240506329113924,0.7476038338658147,0.914338919925512,0.8655804480651731,0.7340425531914894,0.1843137254901961,0.4960019990004997,0.6893317702227433,0.6462745098039215,0.5010593220338984,0.1075268817204301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027548209366391,0.0054840900566655,0.0083208182814466,0.0110619019564024,0.0136094554183534,0.0162729124236252,0.018801937292888,0.0213156927600147,0.0239309773775083,0.0260927423482444,0.0287155408383994,0.0311803780248662,0.033628136569313,0.0361358907270442,0.0385647355059751,0.0409838607954839,0.043301745119362,0.0456583098123858,0.0479360159752051,0.0501068209056328,0.0667070508736566,0.0839344605559336,0.0998499522575364,0.1145361009121227,0.1289029535864979,0.1461931403551447,0.1618386706563952,0.1760171215008997,0.1880595739225197,0.2004419699846597,0.2146551724137931,0.2289280533483447,0.2423345914138722,0.2545124577725787,0.2656172656172656,0.2766779600965477,0.2867691346732995,0.2970483025489887,0.3075203920723337,0.3154669873446716,0.3235889779999769,0.3304758674728384,0.3367322769369241,0.3436105914520075,0.3490925005166608,0.3545487057430724,0.3588264009713234,0.3633376633300221,0.3674580136844287,0.3714127306808881,0.3691141422165969,0.3674373186263048,0.3662009520858567,0.3647503716640445,0.3641081914704312,0.3627361085640931,0.3601422924901186,0.3598538232113008,0.36007974508835,0.3614097010535322,0.3622558840601419,0.3638411826320678,0.3634444560560142,0.3642595569846373,0.3660130718954248,0.3677808390081613,0.368750355497412,0.3721630094043887,0.3764223941738734,0.3801531563702733,0.3833826542226269,0.3861022364217252,0.3892945583846593,0.3939766441303011,0.3987689393939393,0.402389486260454,0.4040684234858992,0.4064990803188228,0.4139183901621017,0.414319248826291,0.0,2.659199370109338,68.60684705508845,210.30729753153813,292.7270726544742,APP_public_baseline,20 +100000,95869,51769,488.2808832886543,6825,69.8348788450907,5378,55.65928506607976,2119,21.79015114374824,77.44506122741345,79.72205659160186,63.40474875222951,65.08389752692626,77.17428584079197,79.45109886093383,63.30409371340434,64.9854010188814,0.2707753866214801,270.9577306680302,0.1006550388251668,98.49650804486032,194.07234,135.78989576567375,202434.926827233,141641.0891588248,369.34512,236.03142411390516,384815.72771177336,245757.5380090593,441.47383,213.2130211302977,458190.9897881484,220536.0144237501,3826.38375,1767.1333459464713,3963519.9386663055,1815536.3318136933,1286.76296,572.9303154788803,1333217.7346170295,588626.005777551,2075.46094,879.6185621856454,2136940.0536148287,892409.5438809189,0.43508,100000,0,882147,9201.587583056044,0,0.0,0,0.0,30548,318.18418884102266,0,0.0,40099,415.9530192241496,1443947,0,52008,0,0,17123,0,0,51,0.5319759254816468,0,0.0,0,0.0,0,0.0,0.06825,0.1568677024914958,0.3104761904761904,0.02119,0.3292169520067359,0.6707830479932642,24.18273428573237,4.288828401895511,0.316846411305318,0.2460022313127556,0.2218296764596504,0.2153216809222759,11.195410602656851,5.876417814565634,22.857240693311823,14189.362554711335,61.73792892943077,16.241699717564114,19.45041964901545,12.898808790147925,13.147000772703295,0.5680550390479733,0.7845804988662132,0.6995305164319249,0.5967184801381693,0.1123218776194467,0.744653272845107,0.9177570093457944,0.864406779661017,0.7315436241610739,0.134453781512605,0.4970013037809648,0.6941624365482234,0.6363636363636364,0.55,0.1068062827225131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00248992894593,0.0052168275610571,0.0079089056305324,0.0107993991311761,0.0135244985469547,0.0161968033695862,0.0187606942067954,0.0211488064282582,0.0235374608134464,0.0263292433537832,0.0290392275319728,0.031433963038172,0.0339543577840313,0.0364949238317612,0.0388617584636624,0.0412456261676455,0.0435578444451338,0.0462552327268205,0.0484174028589521,0.0507127250026011,0.0680457948407816,0.0838234525985897,0.0998450391590233,0.1153539423702491,0.1294398619644811,0.1463718402026492,0.1605904340367856,0.1751174107996685,0.1885144502506132,0.2009226257371908,0.2159501289767841,0.2306936360003887,0.2451603096533229,0.2570077639581991,0.268181218965593,0.2799539680431992,0.2903704033975009,0.3001000146088755,0.3094984354451045,0.3174223524295621,0.3253339501532412,0.3325105865287883,0.3387858487104525,0.3448593877257701,0.3505682922090538,0.3564194184327254,0.3621262042268519,0.3663372640908743,0.370757823235073,0.375473766226906,0.3739944755103416,0.3731386419311332,0.3710138398073971,0.3692161191187291,0.3674771179777781,0.3642793852546671,0.3619880916657453,0.3621576464421439,0.3620063123773778,0.3618116406639595,0.3628447840008988,0.3648068669527897,0.3647852786452329,0.3660199383074791,0.3671071600192215,0.3698797689064695,0.3697746454858052,0.373961045071041,0.3765843779461573,0.3783623182664501,0.3823811481024798,0.3860350989491652,0.3869705195379079,0.3902851433402505,0.3914117423522705,0.3914453922864351,0.396583850931677,0.4027545909849749,0.4055806087936865,0.4101547005156684,0.0,1.7331071237599824,68.71835689212102,206.79103751738543,276.3320838835545,APP_public_baseline,21 +100000,95665,51269,484.87952751790095,6945,71.05001829300161,5505,56.77102388543354,2160,22.05613338211467,77.29747507811412,79.70125377820742,63.28577397120039,65.06605165373428,77.02128713320779,79.43068193183842,63.182354056738745,64.96845478161931,0.2761879449063258,270.5718463689948,0.1034199144616465,97.59687211496272,191.88994,134.3510977375551,200584.6234254952,140438.5491696891,371.06963,235.8491989795312,387061.1299848429,245717.39137942428,434.82822,209.38898546148368,450285.5798881513,215584.09087497488,3894.94877,1794.62504013949,4016528.2914336487,1821362.891969942,1280.53602,574.3698641494502,1318074.0396174148,580060.281853929,2109.71224,892.5747087581872,2155436.63826896,889651.634920309,0.43291,100000,0,872227,9117.482882977054,0,0.0,0,0.0,30613,319.1449328385512,0,0.0,39649,410.2231746197669,1449054,0,52109,0,0,17185,0,0,75,0.7735326399414624,0,0.0,2,0.0209062875659854,0,0.0,0.06945,0.1604259545864036,0.3110151187904967,0.0216,0.3403234649122807,0.6596765350877193,24.265107879144185,4.247782254210871,0.3184377838328792,0.2430517711171662,0.2145322434150772,0.2239782016348774,11.354548547126605,6.184658272604518,23.0582859229199,14139.12792411868,62.96902895138936,16.30958760564148,19.9383571601348,13.766221665941924,12.95486251967115,0.5662125340599455,0.7862481315396114,0.6919566457501426,0.583941605839416,0.1117696867061812,0.7387033398821218,0.9182879377431906,0.8688172043010752,0.7275747508305648,0.1336032388663967,0.5,0.7038834951456311,0.6281055900621118,0.5375536480686696,0.1059957173447537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025639466536949,0.0050007100399651,0.0078582669171023,0.0101615689462453,0.0127360026041666,0.0154718979812177,0.0184203010893068,0.0209758787606462,0.0234206408460067,0.0260007578007393,0.028289210507421,0.0308503097358769,0.0331378600823045,0.0355203363457436,0.0383678189402387,0.0407753734122222,0.0431073797678275,0.0455631009490582,0.0478365359606321,0.0501511203751954,0.0677565944110733,0.0844107578438249,0.0996495057401305,0.1141315210873475,0.1277282557096893,0.1462790156372331,0.1607719089673913,0.174422444001832,0.1875775334730718,0.2005648200844008,0.2148119384310045,0.2294616335291949,0.2421971174272548,0.2542957962565204,0.2653720612235896,0.2767709500926676,0.2883163932776492,0.2990544667710998,0.3082020505126281,0.3164546799555,0.3244574793656681,0.3316886221930523,0.3391762962962963,0.3455519390831241,0.3506544104218664,0.3558892909632081,0.361471019855256,0.3659504427488708,0.3711542459203825,0.3759400487236521,0.3736706260726206,0.3716338514680483,0.3702970016838113,0.3682079414838035,0.367454889514699,0.3646410535848593,0.3616545644798173,0.3610303418592808,0.3614184251860957,0.3619701971981797,0.3627652805329939,0.363080081324885,0.3639049534825245,0.3643296432964329,0.3646404851285013,0.3658135712608593,0.3670214283676206,0.3711246104938466,0.3742613956105796,0.3775311294108286,0.3837650175871362,0.3881708419764906,0.3920777090954964,0.3974105102817974,0.3990384615384615,0.4053475935828877,0.4069264069264069,0.4092577487765089,0.4149584487534626,0.4277411855869817,0.0,2.902019300985045,66.71347629787616,210.99169251938932,291.3677774823976,APP_public_baseline,22 +100000,95810,51695,487.715269804822,6991,71.48523118672372,5522,56.86254044462999,2070,21.114706189333056,77.32864418348662,79.63841869427306,63.32870225298407,65.03826676760919,77.06040299725622,79.37534955240399,63.22664237875912,64.94162173974581,0.2682411862303979,263.0691418690674,0.102059874224949,96.64502786337437,191.2867,133.88636005659328,199652.1239954076,139741.53017074757,368.18753,235.14785730719572,383500.09393591486,244642.2787884311,443.83646,214.0138174233998,458483.3942177225,219757.01029635707,3871.04609,1794.6685302142405,3985698.820582403,1818516.313760817,1250.32701,568.813465026978,1285800.5844901367,574500.0059604321,2014.00124,865.229204162953,2055713.850328776,863073.080103542,0.4352,100000,0,869485,9075.0965452458,0,0.0,0,0.0,30339,315.8438576349024,0,0.0,40374,416.5744703058136,1452076,0,52333,0,0,17068,0,0,59,0.6158021083394217,0,0.0,0,0.0,0,0.0,0.06991,0.1606387867647059,0.2960949792590473,0.0207,0.3319247546346783,0.6680752453653217,24.1924582831066,4.266769964970268,0.3243390076059398,0.2482796088373777,0.2042738138355668,0.2231075697211155,11.36189398515526,6.043429731038971,22.287105934300172,14173.399405019589,63.32982214774314,16.745916573225372,20.328080488165718,13.83231018329147,12.423514903060571,0.5735240854762768,0.8030634573304157,0.6867671691792295,0.5819805194805194,0.1054964539007092,0.7312379730596537,0.9255725190839694,0.8361702127659575,0.724025974025974,0.1517509727626459,0.51148120111027,0.7272727272727273,0.6336109008327026,0.5346320346320347,0.0918484500574052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028460019243429,0.005412966792361,0.0081874904885101,0.0111226231106777,0.0137888956680902,0.0164426796986357,0.0188360004077056,0.0214212089358792,0.0239032017413875,0.0264620107444359,0.0289868437231034,0.0314135588349992,0.033893776206528,0.036258068501189,0.0388668894113764,0.04125,0.0437117754804259,0.0462010617120106,0.0486216423956623,0.0508347558183105,0.0676005507343124,0.0840443329150982,0.0991708682298927,0.1138785547638564,0.1280332258132523,0.1460573192519531,0.1614473419090745,0.1755222355833182,0.1887449401360689,0.2012073513328043,0.2169731045550995,0.231635789109168,0.2444584629440299,0.2564040889957907,0.2674018070366579,0.278826228127528,0.2896303660593604,0.2996777900452896,0.3083889147700803,0.3163463193528028,0.3233482220546435,0.3302041774231401,0.3383664983664983,0.3446629956476784,0.3500042631457143,0.3563691159941206,0.3617667356797792,0.3659299150098262,0.370584031702722,0.374960279631395,0.3729660387549794,0.3712269752285217,0.3704321991936054,0.3684004181913225,0.3666159446234634,0.364255724897344,0.3617504927831118,0.3622849617252449,0.3632833216430294,0.3636249910644077,0.3640461255305562,0.3646576319543509,0.3662072293200747,0.3679462786793508,0.3683081447200327,0.3685616276938385,0.3699154478976234,0.3733858267716535,0.3759862538135147,0.3790412044374009,0.3813061112883379,0.3845621506521161,0.3863952459223669,0.3875191424196018,0.3920513546681771,0.3934720229555237,0.3951145038167939,0.4012532848190823,0.4051254089422028,0.4133539174064068,0.0,2.9341634098937432,68.09084870139786,207.96944159374004,294.48604338655514,APP_public_baseline,23 +100000,95733,50839,478.6855107434218,6999,71.74119687046264,5568,57.44100780295196,2213,22.67765556286756,77.35098256499538,79.69757449519592,63.33757887846742,65.07017695450757,77.06994277717658,79.41944159660514,63.2317503113624,64.96867538690172,0.2810397878187984,278.1328985907834,0.1058285671050214,101.50156760585104,192.76444,134.89326351128446,201356.31391474203,140905.71016398157,366.48691,233.2648594877697,382109.1995445666,242949.1914885878,432.60976,209.35361455552936,447416.23055790586,215232.0442318615,3976.95931,1832.900965455023,4106148.203858648,1866618.3129132115,1305.19855,582.5900157649015,1345581.7952012366,590813.0797966119,2159.09086,915.2509840639,2214344.040195126,919559.3622665508,0.43207,100000,0,876202,9152.559723397366,0,0.0,0,0.0,30247,315.2100111769191,0,0.0,39448,407.5397198458212,1451148,0,52163,0,0,17300,0,0,77,0.8043203493048374,0,0.0,2,0.0208914376442814,0,0.0,0.06999,0.1619876408915222,0.3161880268609801,0.02213,0.3440054495912806,0.6559945504087193,24.161326016200874,4.213862686094342,0.3157327586206896,0.2460488505747126,0.2167744252873563,0.2214439655172413,10.897443521494472,5.654932220119221,23.72783288135724,14142.587200839962,63.91779274678117,16.775482993971725,20.11862835058384,13.85442999177232,13.169251410453288,0.5691451149425287,0.8,0.7036405005688282,0.570154095701541,0.1101905550952775,0.7529855436832181,0.9247706422018348,0.8831967213114754,0.737012987012987,0.144,0.4955996982650238,0.7175757575757575,0.6346456692913386,0.5145945945945946,0.1013584117032393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028454831751946,0.0055746444897173,0.008066725518249,0.0109287397416104,0.0137873534585311,0.016613899889037,0.019265858655875,0.0218303175040568,0.0242546275948771,0.0266002087896342,0.0292769935725927,0.0319143475984684,0.0344224877135983,0.0365579881778674,0.0389341091269227,0.0416955214007379,0.0442971783587885,0.0464884608998837,0.0490221561431051,0.0513939823303883,0.0684741303712364,0.0844797823926348,0.1000754970220619,0.115411304567247,0.1295726243437559,0.147747214411062,0.1624665903016418,0.1755659383348056,0.1894077801638941,0.2011652110469732,0.2163035748917189,0.2310248887637895,0.2433523370180172,0.2548787829037378,0.2650126091600868,0.276909770350739,0.2874462260461478,0.2977533148735958,0.3061611482036608,0.3142978391521769,0.3229003832748578,0.3301604027631425,0.3369668134261231,0.3436919500005992,0.3498694199817795,0.3556951888129119,0.3614257286960439,0.3662471847205079,0.3697751279891128,0.3732106744914548,0.3712600709861132,0.3684653601987303,0.3670821673874332,0.3657690856860981,0.3643370404603596,0.3615576113347881,0.3588268023209602,0.3596740134617923,0.360369169540082,0.361135981090857,0.3624664174197305,0.3631664422086667,0.365204782818837,0.3665126917212306,0.3674157574005829,0.368331589958159,0.371324998572815,0.3751025301280838,0.377907385285644,0.3809751243781094,0.3830886724287739,0.3867662753468516,0.3891840607210626,0.3909229595728452,0.3933747412008281,0.3963320233416696,0.3983486524380745,0.3917673561335245,0.3901483347327176,0.3920343615775087,0.0,2.8302306744296617,69.70723804928812,210.74839958410053,292.2596318169299,APP_public_baseline,24 +100000,95839,51310,484.7400327632801,7132,73.11219858304031,5626,58.08700007303917,2181,22.41258777741838,77.51248185563044,79.7992323427313,63.42745123530996,65.11132616633081,77.23786559394871,79.52354842712252,63.32543289596019,65.01125222089638,0.2746162616817287,275.6839156087807,0.1020183393497689,100.07394543443128,193.58658,135.41340677959514,201991.44398418185,141292.59151242723,373.67397,237.293601594589,389305.0532664156,247003.51797763864,443.4558,213.8036627970574,458607.2580056136,219958.55120432915,3971.4008,1821.6861167415009,4102934.8073331313,1860013.815528083,1316.38459,586.1179696186787,1359892.131595697,597979.7534994734,2120.564,892.6367043752244,2180026.544517368,904318.940388774,0.43186,100000,0,879939,9181.429272008265,0,0.0,0,0.0,30866,321.4453406233371,0,0.0,40345,416.8240486649485,1450084,0,52104,0,0,17201,0,0,80,0.8347332505556193,0,0.0,0,0.0,0,0.0,0.07132,0.1651461121659797,0.3058048233314638,0.02181,0.3466327486946043,0.6533672513053956,24.35750266242687,4.173448186701742,0.3160327052968361,0.2628865979381443,0.2068965517241379,0.2141841450408816,11.058676138379424,5.895046015855959,23.331735822237665,14128.499740860225,64.07320293373584,17.810566447614143,20.019401350888486,13.574538097730972,12.668697037502232,0.5737646640597227,0.7883705206220419,0.6833520809898763,0.5867219917012448,0.120274914089347,0.7397959183673469,0.9158878504672896,0.8333333333333334,0.7483660130718954,0.1493775933609958,0.5096106456382454,0.7161016949152542,0.6269349845201239,0.5317018909899889,0.1126760563380281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025499362515937,0.0052561752463515,0.0077843886518209,0.0105732057513368,0.0131554887340254,0.0160785111359707,0.0184581865569831,0.0211188611519008,0.0236079768821541,0.0258615400347683,0.0282218012390558,0.0306228143043206,0.033065154177327,0.0355988720334273,0.038020618556701,0.0401784792084116,0.0424686452253818,0.0448833592534992,0.0474434356236105,0.0496704944145419,0.066675010168643,0.0832618833518057,0.0992099251838967,0.1143028189723984,0.1290275028429431,0.1475120673447616,0.1620845345090724,0.1754322536738904,0.1886285055704955,0.2009788172803015,0.2165103673750322,0.2308789214415348,0.2447716463613264,0.2560560057665844,0.2665003900541681,0.2784395704062559,0.2884746102673248,0.2981204570221658,0.306688565441468,0.3158484311596273,0.3242220401758414,0.3314183165720811,0.3383196092773046,0.3445474529293701,0.3501392757660167,0.3555266036553139,0.3605994808824997,0.3652383367139959,0.3690397842385763,0.3734985675611743,0.3725224439404715,0.3704394323712895,0.3691712025138881,0.3665802362431576,0.3644767054292274,0.3618165703982152,0.3599449523869784,0.3598222047269924,0.3605262259836876,0.3610595459088961,0.3612547785023611,0.3620386295791076,0.3639735932096825,0.3647752394988946,0.3657520471196667,0.3679213468572466,0.3703031506111221,0.374535577133223,0.3780215952629746,0.3804893350062735,0.384034859170747,0.3874043801739495,0.3886397608370702,0.3947408077154912,0.3992010405053883,0.3973099415204678,0.397375961393455,0.4024268947682514,0.4013586956521739,0.400526513726965,0.0,2.435488292630358,68.89053352656467,211.3747299829393,299.1339955953444,APP_public_baseline,25 +100000,95717,51802,489.2129924673778,6950,71.24126330745844,5438,56.0088594502544,2164,22.12773070614416,77.31288813594676,79.67194150008321,63.318020272784125,65.06204768779348,77.03545293105252,79.39684426133934,63.21459727514068,64.96276806217568,0.2774352048942461,275.09723874386793,0.1034229976434488,99.2796256177968,193.77182,135.58712526618754,202442.4292445438,141654.17351796184,367.61271,234.5683511154108,383298.9855511561,244301.3582910149,437.80693,211.48759576034925,451877.95271477377,216744.8305102011,3867.48515,1771.323572504731,3992621.697295152,1802958.027653632,1283.37367,563.7132658229266,1325049.3329293646,573292.1420060437,2112.16828,893.366713146473,2163692.949005924,898029.2184072396,0.43558,100000,0,880781,9201.928602024718,0,0.0,0,0.0,30284,315.56567798823613,0,0.0,39687,409.0809365107557,1443551,0,51931,0,0,17281,0,0,67,0.699980149816647,0,0.0,1,0.0104474649226365,0,0.0,0.0695,0.1595573717801552,0.3113669064748201,0.02164,0.33415671744202,0.66584328255798,24.528552064040287,4.297217934820566,0.3131666053696212,0.2480691430673041,0.2180948878264067,0.2206693637366679,11.12172152225331,5.750719161018069,23.3111085418758,14276.030951745302,62.278470550642645,16.26581758559698,19.399020467516507,13.505678062669826,13.107954434859312,0.570062522986392,0.787991104521868,0.7028772753963594,0.5825,0.1188870151770657,0.7307171853856563,0.9136546184738956,0.8738738738738738,0.71280276816609,0.1255060728744939,0.51010101010101,0.7144535840188014,0.6425734710087371,0.5411635565312843,0.1171458998935037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027750207620166,0.0054632623480878,0.0080357958177335,0.0103299069597367,0.0128660204839251,0.0157331975560081,0.0187417151014581,0.0215515921225919,0.0240867778311676,0.0266536964980544,0.0293960832564339,0.0317711328349626,0.0342490409240041,0.0365876269545332,0.0390099459370228,0.0412597025415232,0.0437087738555052,0.0462992746931194,0.0484504991680532,0.0510242357305103,0.0677079526827383,0.0848069477869624,0.1009081947270172,0.1158755862126979,0.1302353536631658,0.1487369890835237,0.1633573528319307,0.1786341619204769,0.191652333692993,0.2036677569842887,0.2187920619367065,0.2324507322560408,0.2450770385029412,0.2573394294714736,0.2678610732050887,0.2795891913450992,0.2904079308727979,0.3007033931686455,0.3100271495268712,0.3194969851204805,0.3269625047781214,0.3340472094465704,0.3416127008180709,0.3474109702414508,0.3532343751899534,0.3586343845973581,0.3646640098253002,0.3699788583509514,0.3744571065562081,0.3786540038623316,0.3769830018766792,0.3745035304501324,0.3724728387561634,0.3717463493858848,0.3693760912061838,0.3660161900951091,0.3637376631645972,0.3640324816795405,0.3630711095843353,0.3628555513629095,0.3638333961552959,0.364754343024297,0.3661233257518322,0.3679764552582508,0.3686769722040787,0.3708395625147533,0.37160242243334,0.3738104301484583,0.3763235242041148,0.3812943867110701,0.3860439459409763,0.391478669945472,0.394562543367186,0.3974143206854345,0.4004918653045781,0.4035986653956149,0.4070164545172307,0.4113315606463489,0.4101846670397314,0.4024436807941962,0.0,3.192502923052829,64.28482480577996,210.00387736013985,292.3345430938023,APP_public_baseline,26 +100000,95761,51675,487.2338425872746,6998,71.32339887845784,5515,56.78720982445881,2165,22.107120852956843,77.37208356525132,79.71002755912902,63.35007434272507,65.0791701470808,77.09441054152533,79.43508138321585,63.2461588800538,64.97948336132575,0.2776730237259812,274.94617591317194,0.1039154626712743,99.68678575505407,192.29034,134.61297205621497,200801.6624721964,140571.1423838671,372.4491,237.16687541587447,388137.8745000574,246867.748256466,442.99141,213.994364983788,456950.4182287153,219279.4794072296,3907.20186,1815.1880056627288,4025617.892461441,1841329.9174539028,1290.43653,583.9184309397791,1327953.5510280803,590264.0235804531,2110.85252,901.5360471977076,2157100.6568436,901663.8358447484,0.43449,100000,0,874047,9127.348294190746,0,0.0,0,0.0,30601,318.7205647392989,0,0.0,40317,415.4196384749533,1452332,0,52211,0,0,17316,0,0,72,0.7414291830703522,0,0.0,0,0.0,0,0.0,0.06998,0.1610623949918295,0.3093741068876822,0.02165,0.3371918834263925,0.6628081165736075,24.44863969556604,4.293030605952692,0.3234814143245693,0.2456935630099728,0.2117860380779691,0.2190389845874886,11.402125892894176,6.052757165319151,23.13297197634864,14230.095036298571,63.00679142674013,16.46233760429667,20.139003678949848,13.535205641719784,12.870244501773833,0.5724388032638259,0.7726937269372693,0.7040358744394619,0.5910596026490066,0.1198630136986301,0.7408136482939632,0.9110671936758892,0.8954248366013072,0.7832167832167832,0.1208791208791208,0.50814332247557,0.690223792697291,0.6377358490566037,0.5314533622559653,0.1195530726256983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028866605894864,0.0055451928145655,0.0084532483611049,0.0111132556556719,0.0137699583036713,0.0164521909105717,0.0189992763151189,0.0216850011225177,0.024433862001308,0.0268450193943239,0.0291453166632506,0.03172273650937,0.0346305661773775,0.0367590275847156,0.0392793796147341,0.0416184493304678,0.0440538666169818,0.0464076824158957,0.0487645212909661,0.0512676349627778,0.068981351032633,0.0855899672618113,0.1013974650633734,0.1169362041970093,0.1321287467734288,0.1495118755811005,0.1659477505166657,0.1794312816368199,0.1925088037562693,0.2035402022972741,0.2184766352123436,0.2324183487032012,0.245383101990239,0.2575202563065181,0.268582995060669,0.2797057943883824,0.2898524849918543,0.2996659881465153,0.3082218970816745,0.3159588970478733,0.3240416102567663,0.3312513158818163,0.3382384253235231,0.3448106482646252,0.3507953855494839,0.3570222884812045,0.3620683176130171,0.3662394848365298,0.3711732711732711,0.3753811227116138,0.3736556606948165,0.3721966311447233,0.370370892879816,0.3683547967009116,0.3675092936802974,0.3646995708154506,0.3618090452261306,0.3621959237343852,0.3636877828054298,0.3632929972791064,0.3636363636363636,0.3650765361690331,0.3661439637256754,0.3668913320943147,0.36745128304071,0.3676682471904225,0.3672830643771894,0.3714032196729623,0.3740770834069311,0.3783881170677023,0.380770995869665,0.3821499277649954,0.3847177342710511,0.3878192835775101,0.3920174440652256,0.3975243989526303,0.3992970660146699,0.4049177077136625,0.4054712892741062,0.4076720571643475,0.0,3.107683571326052,66.00827800358506,210.1272886687087,295.2892942961108,APP_public_baseline,27 +100000,95644,51302,485.54012797457233,6947,71.34791518547948,5474,56.63711262598804,2124,21.810045585713688,77.25911226955019,79.65534133803231,63.27736057920528,65.04566637659171,76.98895459101993,79.38531889395149,63.17702128202874,64.9482145614843,0.2701576785302535,270.0224440808228,0.1003392971765393,97.45181510740508,192.36514,134.66194668038136,201126.19714775623,140794.97582742394,369.847,235.8320293870069,385997.9402785329,245891.62093389808,440.47851,212.427965202052,457027.1841411903,219426.72907006837,3860.33149,1772.1373449768653,3995328.666722429,1812784.081920336,1279.37694,568.6833609571497,1321269.8757893858,578316.0912579296,2072.87796,869.2794228560766,2130061.791644013,877688.0930518014,0.43221,100000,0,874387,9142.099870352557,0,0.0,0,0.0,30442,317.6466898080381,0,0.0,40024,414.9868261469616,1443964,0,51953,0,0,16867,0,0,88,0.8991677470620216,0,0.0,0,0.0,0,0.0,0.06947,0.1607320515490155,0.3057434863970059,0.02124,0.343481228668942,0.6565187713310581,24.39415952703292,4.216948656506038,0.32572159298502,0.2468030690537084,0.2084398976982097,0.2190354402630617,10.987194569129066,5.691443982214432,22.726187754400694,14083.614265947135,62.52392867354638,16.37402422877203,20.188868203679203,13.424014119755428,12.53702212133972,0.5732553891121666,0.7934863064396743,0.6898485698261357,0.5771476230191827,0.1262050832602979,0.7524622455679579,0.9281553398058252,0.8347639484978541,0.7792642140468228,0.1893004115226337,0.5041761579347,0.7105263157894737,0.6385725132877752,0.51,0.1091314031180401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002674148881213,0.0052829576450785,0.0079877392769421,0.0105978702649975,0.0133272292588636,0.0155623001242539,0.0181699533005689,0.0206315015772226,0.0232056511383036,0.0258255368804634,0.0283994791720065,0.0310090254746331,0.0333967600925687,0.035839746165178,0.0381320949432404,0.0404082181299308,0.0428985807520977,0.0451856003986048,0.0476819538783194,0.0497492728391071,0.0669244435155188,0.0830706063494391,0.0980320087372931,0.1133494097701209,0.128378164306308,0.1466292432346555,0.1612139109005544,0.1754683204398695,0.1893079810499524,0.2009514911348089,0.2159809273123476,0.2294962937275131,0.2425351591010599,0.2542352451291941,0.2652129314053142,0.277145903678692,0.2876790510295434,0.2969335258811318,0.3070149491456005,0.3149904032916135,0.3229333519047287,0.3305992654392696,0.3371285424260053,0.3429334488234445,0.3484780089062405,0.3550377818177321,0.3597151219022019,0.3646669815777043,0.3693234957913333,0.3733494033349668,0.3706041356940127,0.3694651423199745,0.3669494766363083,0.3658337820335579,0.3638634222215575,0.3610392410521776,0.3572371875447501,0.3582931819681869,0.3601787402251439,0.3599992823696155,0.3615496058251331,0.3617426496845614,0.3629132383577786,0.3626508992362651,0.3642191001759163,0.3658122781373982,0.3658940397350993,0.370106087395807,0.3742015175577907,0.3797165102814933,0.3812603192074849,0.3844550168386165,0.3866937274053402,0.3855025970058051,0.3901660880172656,0.3932437254668728,0.3972707758356332,0.4047909053999188,0.4021799888205701,0.410958904109589,0.0,2.2735706438155985,67.33306328301288,198.54305527756307,302.7947279845571,APP_public_baseline,28 +100000,95609,51355,485.82246441234616,6880,70.53729251430305,5428,56.11396416655336,2078,21.28460709765817,77.28554750318864,79.7174334296926,63.27381344368565,65.0718624852962,77.02631089459223,79.45975705369266,63.176679225554444,64.97795493306371,0.2592366085964102,257.6763759999494,0.0971342181312024,93.90755223247992,191.95792,134.31321077109757,200773.6719346505,140481.5418748209,368.14851,235.09897153907733,384370.8019119539,245222.0842712518,442.85323,213.754213113546,459287.8076331726,220624.3008850593,3819.4096,1766.1838714971086,3949116.23382736,1802562.871847118,1295.84445,582.2814795267429,1335408.2670041523,590235.1563741069,2027.53872,855.5768435403481,2078931.0002196445,859911.0634706503,0.43189,100000,0,872536,9126.07599702957,0,0.0,0,0.0,30400,317.2400087857838,0,0.0,40240,416.9481952535849,1446792,0,52050,0,0,17137,0,0,73,0.7635264462550597,0,0.0,0,0.0,0,0.0,0.0688,0.1592998217138623,0.3020348837209302,0.02078,0.34009942004971,0.65990057995029,24.442930258811035,4.189254930616352,0.3100589535740604,0.2597641857037583,0.2109432571849668,0.2192336035372144,11.30291083706248,6.054197373445097,22.16657560310798,14107.418565198974,62.37367518860129,17.186952868618945,19.24907972298263,13.387469581247336,12.550173015752378,0.5845615327929256,0.7929078014184398,0.70291146761735,0.6109243697478992,0.1266375545851528,0.7441860465116279,0.9182156133828996,0.8505263157894737,0.726027397260274,0.1728395061728395,0.5208762886597939,0.7155963302752294,0.6448675496688742,0.5734966592427617,0.114190687361419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028070531009323,0.0054569982452403,0.0079904966900865,0.0103775982111094,0.0132157245757538,0.0159215230877364,0.0185961583580704,0.021248774109186,0.0238005134446819,0.0264739919912333,0.0287642846884553,0.031349862825084,0.0338644598155467,0.036314720707534,0.0386783686112545,0.0410003930411038,0.0432849740932642,0.0455286579223395,0.0479828469128606,0.0503061341566447,0.0670882767992473,0.0842205641949951,0.0993968307343113,0.1144169581524716,0.1283129284756039,0.1460903824361106,0.1611854339117406,0.1755519310925624,0.1883874971910412,0.2009648547882799,0.2166866293310888,0.2303438404736345,0.2435634714743519,0.254712638639253,0.2667298954519387,0.2774952814477628,0.2880736201806959,0.2984317395176838,0.3084050523539376,0.3166043535105626,0.3240609866302106,0.3322515640743257,0.3386038787735009,0.3433682111408767,0.3489258573655495,0.3543267211778365,0.3597181827299167,0.3646820285900101,0.3693504200262273,0.3725503160455952,0.3713653773534013,0.3694903581267217,0.367132916484354,0.3650421336113283,0.3635660298756174,0.3615695184292534,0.3587700220659438,0.3588599466526163,0.3594926742434616,0.3592554773293205,0.3596515927990839,0.3609238131018528,0.360671231150502,0.3621063939305776,0.3628448421001996,0.3635653871177619,0.3652427955525301,0.3688958496476116,0.3723589707830695,0.3745995332832338,0.3796064888444586,0.3828195468774871,0.3831758034026465,0.3865207810956614,0.3895616258330986,0.3920387432081266,0.3916158536585366,0.393412810668822,0.401037401037401,0.4027098231087693,0.0,2.43012217289827,68.12784740135692,207.56282266554416,283.63415414699364,APP_public_baseline,29 +100000,95810,50973,480.784886755036,6912,70.81724245903351,5421,55.99624256340674,2094,21.438263229308006,77.35864855579545,79.66153491666279,63.35358995694328,65.05349857799884,77.08385718021546,79.38903154143495,63.24997325012751,64.95343105212768,0.2747913755799942,272.50337522784207,0.1036167068157638,100.06752587115386,192.24172,134.49075782415784,200648.45005740528,140371.90734177842,368.29512,235.52802352082625,383828.7026406429,245255.6696804365,436.20354,211.16792221797104,451639.5678947918,217617.73660645285,3863.80464,1787.966199649138,3993510.604321052,1826926.4548054845,1272.22896,570.1868114261267,1314735.0067842605,582128.0170418263,2050.89484,878.9742863917555,2102316.125665379,885018.1288483277,0.4309,100000,0,873826,9120.384093518422,0,0.0,0,0.0,30438,317.0858991754514,0,0.0,39692,410.6669449953032,1450205,0,52221,0,0,17101,0,0,79,0.8245485857426156,0,0.0,0,0.0,0,0.0,0.06912,0.1604084474355999,0.3029513888888889,0.02094,0.3405636916275214,0.6594363083724786,24.15909298708923,4.304141798381651,0.3030806124331304,0.2621287585316362,0.221176904630142,0.2136137244050913,11.16835600996669,5.777329155405883,22.66415332801747,14054.36407848916,62.17681586289022,17.229109165269563,18.80773692409584,13.074403936175232,13.065565837349585,0.5742482936727541,0.7923997185080929,0.6950699939135727,0.6053540587219344,0.1201000834028356,0.7337201805286911,0.9232209737827716,0.8535031847133758,0.7049180327868853,0.1161825726141078,0.5103359173126615,0.713641488162345,0.6313993174061433,0.5697538100820633,0.1210855949895615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025403315588122,0.0052568141073038,0.0077861248821436,0.010411275837925,0.0129640542133176,0.0155332892528355,0.0180193945320457,0.0207991186641233,0.0231289459166785,0.0256551893451175,0.0284537856440511,0.0310378074548177,0.0335953151487132,0.0360678342834798,0.0384885039694813,0.0411563009935347,0.0432596302082794,0.0454884723834798,0.0479247164402343,0.0501566745437699,0.0671444816541996,0.0837463145348472,0.0995366973438712,0.1150220185607533,0.1288969456798971,0.1462105118530496,0.1614606527132769,0.1749667535507207,0.1876374741068187,0.1996740191084851,0.2151579763520062,0.2290088725384116,0.2425949897205513,0.2542678923177938,0.2645879683679538,0.2764096024837833,0.2868836897649227,0.2965927126599804,0.3068259230664426,0.3147324499060021,0.3221622623155847,0.3290620314842579,0.3358887164235695,0.3415400859069421,0.347296573875803,0.3528046899105214,0.3572538016383997,0.3615238677311331,0.3664959481361426,0.3704668005920913,0.3692322213532537,0.3679112703224028,0.3660774695534506,0.3636284747331578,0.3618724518644168,0.359700760363012,0.3570918780035209,0.3579974655629248,0.359038952581701,0.3595981341944743,0.3604613966091489,0.3606993312297831,0.3614105263157894,0.3625072860153343,0.3640551883834242,0.3654108153426954,0.3673253150057274,0.3710100914238714,0.375419507542304,0.3791903352268181,0.3834858188472095,0.3875508456433312,0.392587899904973,0.39787675975075,0.4007738039067661,0.4034838250977604,0.4058796367554256,0.4133333333333333,0.4092057255122088,0.4075396825396825,0.0,2.271903868246908,68.1854682318912,203.97791691502425,286.37293308874905,APP_public_baseline,30 +100000,95852,51657,486.625213871385,6924,70.86967408087467,5507,56.77502816842632,2150,21.908776029712477,77.41454581429173,79.70080436919069,63.37712166936033,65.0670135629123,77.13922917239609,79.43154529903718,63.27461460089794,64.97016128435047,0.2753166418956425,269.2590701535096,0.102507068462387,96.8522785618262,193.09092,135.2873259621795,201446.93903100613,141141.8916268617,371.35605,236.29210713387985,386758.7635104119,245850.3409341971,439.5639,211.61560647826337,455020.552518466,217953.4325446506,3888.79592,1787.005156652786,4011887.827066728,1819194.294394045,1289.88534,576.8326986380514,1328004.6634394692,584119.4062218644,2089.82388,884.2674312877342,2132444.1847848766,881617.9632198258,0.4357,100000,0,877686,9156.679046863916,0,0.0,0,0.0,30666,319.22129950340104,0,0.0,39983,413.4812001836164,1447492,0,52003,0,0,17095,0,0,67,0.6989942828527312,0,0.0,1,0.0104327504903392,0,0.0,0.06924,0.1589166857929768,0.3105141536683998,0.0215,0.3426602343211578,0.6573397656788422,24.143400389162792,4.276003420907887,0.318685309605956,0.2538587252587616,0.2097330670056292,0.2177228981296531,11.377459394696071,6.09612333002395,23.1371290054684,14178.94670792658,62.853948369396335,16.857322050857952,20.013562509536,13.348924143785387,12.63413966521701,0.5689122934447067,0.7782546494992847,0.6905982905982906,0.5888240200166805,0.1099567099567099,0.7481776010603048,0.9213483146067416,0.8565488565488566,0.7330827067669173,0.131578947368421,0.5012506253126563,0.6898148148148148,0.6279434850863422,0.5476956055734191,0.104638619201726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025914865617249,0.0051365179068942,0.0077877039455671,0.0103851542038048,0.013029779449131,0.0155373986304296,0.018103096984515,0.0212064955730547,0.0238620576938792,0.026583340152197,0.0293156606266709,0.0320138682312876,0.034616688758053,0.0369108519551635,0.0393842854638994,0.042087542087542,0.0446113576874928,0.0469972537437172,0.0493408076404027,0.0514474135868604,0.0687749590749371,0.085288492689707,0.1005521041769247,0.1157044752924375,0.1301417468775669,0.1470277578266931,0.1620599421555021,0.1754969703412352,0.1888711054204012,0.2009640102827763,0.2164098812187984,0.2309713556591226,0.2436667934575884,0.2555740141645536,0.2663588898048915,0.2770233628827871,0.2871959583793368,0.2978981679217714,0.307074556776806,0.315219880897847,0.3231336981293599,0.3307210031347962,0.3377863498674744,0.3437904579237593,0.3501817341939875,0.3558391910223208,0.3602003757044458,0.3654881790520325,0.3702809994551257,0.3756329072088626,0.3746966510273418,0.3723874736508549,0.3716522107044637,0.3703296544342065,0.3685870260460827,0.3646593487459373,0.3632561897067908,0.3634959496541185,0.3637141341728404,0.3645197013539099,0.3655140099334645,0.3654135338345864,0.36550871605766,0.3669281834640917,0.3676916414032048,0.3692319724698889,0.3708354689902614,0.3736167277971096,0.376965188096575,0.3810942901418524,0.385886090310869,0.385373086903564,0.3882566283141571,0.3924479951763642,0.3901139973836666,0.3905087947113682,0.3907325279094663,0.3859470468431772,0.3945634266886326,0.3877239801753717,0.0,2.6321174051839207,65.80323144063243,215.6881595749896,288.4563285787252,APP_public_baseline,31 +100000,95705,51190,483.558852724518,6987,71.74128833394285,5531,57.16524737474531,2158,22.067812548978637,77.36002699221102,79.7315215810376,63.33690834044432,65.08837762632517,77.0920145266657,79.46657969364881,63.23689230130977,64.99252437139907,0.2680124655453255,264.9418873887868,0.1000160391345517,95.85325492609796,192.71384,134.86737158334105,201362.35306410328,140919.88044860878,370.48657,235.94686783891487,386465.13766260905,245887.63161685897,439.43224,211.18781922649492,455346.2515020114,217686.93460382108,3900.12127,1793.0977482830745,4029876.923880675,1828295.4791108863,1291.25168,574.4536268712752,1332589.2900057468,583623.1407672272,2104.48998,883.9696421504264,2154115.14549919,886557.2584019817,0.43203,100000,0,875972,9152.83423018651,0,0.0,0,0.0,30587,318.9488532469568,0,0.0,40063,414.826811556345,1448391,0,52047,0,0,17269,0,0,75,0.783658116085889,0,0.0,0,0.0,0,0.0,0.06987,0.1617248802166516,0.3088593101474166,0.02158,0.3365161642340745,0.6634838357659255,24.35162009815477,4.227803176838069,0.3169408786837823,0.2549267763514735,0.2079190019887904,0.2202133429759537,11.235175805247298,6.066968593016401,23.017047882976968,14122.376387258068,63.3545969285771,17.059884784437553,19.92930525737141,13.751926628898222,12.613480257869906,0.5718676550352558,0.7843971631205674,0.688533941814033,0.5886699507389163,0.1156521739130434,0.745345744680851,0.896414342629482,0.8571428571428571,0.738255033557047,0.167420814479638,0.507077228706233,0.7224669603524229,0.6244094488188976,0.5402173913043479,0.1033369214208826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025220042337259,0.0054131314052854,0.0081385790974498,0.0107986753083158,0.013426095447333,0.0160176774876787,0.0185117227319062,0.0209638898528241,0.0231844946025515,0.0257686046868761,0.0282046813004295,0.0307283218003737,0.0331033206157896,0.0358651092845518,0.0381143016333226,0.0403432588916459,0.0429309934008101,0.0453375404799468,0.0476997805352443,0.0504225322760474,0.0675376485577626,0.0846111175073003,0.1001363827108686,0.1147118529971706,0.1296696576375196,0.1468324452338661,0.1616383425625358,0.1749542338967176,0.1868985185264304,0.1989014290005578,0.2144049991919409,0.2282108726473803,0.241985454782637,0.25434347631179,0.2666211994543934,0.2785735650902323,0.2886329907720461,0.2987324117918321,0.3074349611014085,0.3156984468777202,0.3235709163254447,0.3314978488589599,0.3380260029102438,0.3441605883127926,0.3506425673541773,0.3558764461638924,0.360579811736431,0.3651811151811152,0.3688401481212937,0.3727925454689438,0.3715383060440671,0.3696002645612004,0.3678823047707795,0.3671230891835108,0.3656919845679472,0.3625444839857651,0.3596673267326732,0.3599028265651161,0.3615009829899991,0.3620517216745249,0.3637420976607199,0.3656639620027706,0.3650301608579088,0.3659305288569002,0.3675702980299714,0.3683537365247579,0.3699131229995427,0.3724684844080755,0.3775668619010655,0.380617022127966,0.3831848654605565,0.3866516926038825,0.3898914689550732,0.3902308923264497,0.3953357684742905,0.3989355410999408,0.3988721231519585,0.3948967193195625,0.3969086392492409,0.413713405238829,0.0,2.3638236234889853,66.13651419355237,216.6243084934997,294.0927577972388,APP_public_baseline,32 +100000,95751,51010,481.21690635084747,6973,71.41439776085889,5483,56.66781547973389,2126,21.848335787615795,77.33346816806463,79.6950683940111,63.32120940122799,65.0701141813333,77.0681383909107,79.43016618141269,63.22232398286225,64.97368065344574,0.2653297771539229,264.9022125984146,0.0988854183657395,96.4335278875552,192.77016,134.8672426919327,201324.43525393988,140852.04613208494,366.55333,234.0121088497981,382261.69961671415,243838.8934317116,441.87626,213.3865943339064,457468.7366189387,219832.2438422753,3895.63461,1802.2330264844072,4030223.4023665553,1843926.0440981367,1273.1745,573.4861076283937,1316639.6382283214,585902.2126436214,2082.03476,879.7980416089782,2141701.997890361,890803.3376828849,0.42982,100000,0,876228,9151.110693360904,0,0.0,0,0.0,30336,316.2160186316592,0,0.0,40138,415.26459253689256,1448539,0,52126,0,0,17111,0,0,82,0.8459441676849327,0,0.0,1,0.0104437551566041,0,0.0,0.06973,0.1622307012237681,0.3048902911229026,0.02126,0.3331504594705801,0.6668495405294198,24.309991053703587,4.260004682702292,0.3268283786248404,0.2391026810140434,0.2117453948568302,0.2223235455042859,11.436129210771576,5.99428172762762,22.72043963474274,14087.093366896524,62.97533090979697,16.030047674718954,20.408405110523287,13.756441128614243,12.78043699594048,0.5657486777311691,0.778794813119756,0.69921875,0.5849056603773585,0.099052540913006,0.7435897435897436,0.9056603773584906,0.8645418326693227,0.7181208053691275,0.1391304347826087,0.4950293143002804,0.6927016645326505,0.6348837209302326,0.5418023887079262,0.0891514500537056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027660975733319,0.0054557254695168,0.0080892353287457,0.0107907090166432,0.0136286894082707,0.0160677738292824,0.0185438160094605,0.0211365352819905,0.0236090102612321,0.0259895796014044,0.0285617625047415,0.031035367794261,0.0335143250858682,0.036158971771079,0.0386381222594789,0.0410650239278959,0.0434886153017799,0.0459044970635233,0.0482690508368853,0.0506077302032016,0.066974258335247,0.0834746206174777,0.0995309893292203,0.1148644385082977,0.1283984729282234,0.1471487030907995,0.1613598022260183,0.1752283226534392,0.1880494344096818,0.2002037861318174,0.2142911014620796,0.2277956343408763,0.2416152649500125,0.2534081708571303,0.2649677043101267,0.2760763377380016,0.2870558545681935,0.2972014589337176,0.3073316379819263,0.3154778266446765,0.3233647238483074,0.3306698799691148,0.3369706724737851,0.3437001881614113,0.3491059614707631,0.3543831568579167,0.3590506677337068,0.3635392694121985,0.3673472029827945,0.3723276419865573,0.3715830053377905,0.3699122106943336,0.3681659339420584,0.3659090580286743,0.3639976186932579,0.3620853808353808,0.3603066033992985,0.3603725154666315,0.3622446358545815,0.3615551219861456,0.3605984943773819,0.360981886568346,0.3619670481700415,0.3623357141257864,0.3632767271323813,0.3640841564702491,0.3656705768187915,0.3692016408961817,0.3715445719329214,0.373919968146526,0.3759192435938427,0.3807263612607328,0.3844009377177976,0.3880757146141467,0.3895993179880648,0.3935825021031126,0.3921356977640709,0.3921891058581706,0.4027072758037225,0.411375146084924,0.0,2.3102225297375614,68.79180189300742,210.6751319492039,285.4609752483729,APP_public_baseline,33 +100000,95786,51123,481.92846553776127,6928,70.68882717724928,5509,56.84546802246675,2109,21.53759422044975,77.34149214859087,79.68039246089808,63.33904717832892,65.07212678052153,77.07398562630368,79.4163972729662,63.2379664307282,64.97546885013003,0.2675065222871922,263.9951879318829,0.1010807476007187,96.65793039150115,193.39914,135.4080806999778,201906.83398408952,141364.58043354348,373.73692,238.45740675550715,389476.4370576076,248246.79504436217,444.17298,214.1379481139801,459911.7825151901,220540.50701779567,3896.83003,1800.7037194886684,4022627.4612156255,1834452.3373918328,1290.74901,574.6910765215073,1330309.7007913473,582848.8272369932,2058.66544,875.0173756992932,2104821.393523062,876475.2873515986,0.43109,100000,0,879087,9177.58336291316,0,0.0,0,0.0,30864,321.4770425740714,0,0.0,40420,418.12999812081097,1443926,0,51915,0,0,17093,0,0,81,0.8456350614912409,0,0.0,2,0.0208798780615121,0,0.0,0.06928,0.1607089006935906,0.3044168591224018,0.02109,0.331728123280132,0.6682718767198679,24.21369655637161,4.2420488923744175,0.3189326556543837,0.2535850426574696,0.2109275730622617,0.2165547286258849,11.325910614319303,5.971285349699628,22.59666277887912,14077.13005466535,63.26784716531781,17.107607130448557,20.11789087731752,13.313896614220337,12.728452543331391,0.5868578689417318,0.816034359341446,0.7125782583949914,0.5892707460184409,0.1187607573149741,0.74185303514377,0.9222222222222224,0.8551307847082495,0.7330960854092526,0.1295546558704453,0.5253549695740365,0.7491248541423571,0.6563492063492063,0.5449561403508771,0.1158469945355191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027452211878399,0.0055148363289843,0.0082398904053985,0.0109539487054424,0.0135117261026606,0.016135111183547,0.0187561194516971,0.0211071286340103,0.0237954024869109,0.0265211247414446,0.0289253232438196,0.0314335592524132,0.033974490845505,0.0365917730321105,0.0390445235515658,0.041480179854256,0.0437488350901899,0.0460491509071859,0.048402851383087,0.0507089466780486,0.0678818484396356,0.0840757005437055,0.0995535807851109,0.1143325522010067,0.1287636873333544,0.1469027484143763,0.1616237648954666,0.1748758256134268,0.1879970537058189,0.2001629520042024,0.21529318030104,0.2294257597058505,0.2419579203616762,0.2537631587577477,0.2651070195120878,0.276137420812475,0.2868309545049063,0.2961527660769447,0.3049424401740391,0.3128209820764752,0.3208390606771164,0.3278868501886219,0.3348034810575604,0.3419158593104439,0.3470413303392607,0.3527875959063535,0.3579164582291145,0.3618611746758199,0.3664411471741071,0.3711601059553775,0.3706496129249411,0.3686947907207132,0.367027049885119,0.3642502855986002,0.3634443155107263,0.3611826374839065,0.3593440230924172,0.3598539065199151,0.3605015673981191,0.360404091063784,0.3615556767532394,0.3626783623409871,0.3646291425565491,0.366057394350384,0.3674298285907695,0.3689727463312369,0.3694914279139339,0.373167085467095,0.3763139204545455,0.3812101527727655,0.3844944028124711,0.3860442577935713,0.3900274532337355,0.391311093871218,0.3956064947468959,0.4003603603603604,0.4049367286361506,0.40997920997921,0.4113335212855935,0.4168600154679041,0.0,2.489941754886454,68.8279008756811,210.6191500740848,288.7014032377177,APP_public_baseline,34 +100000,95696,51536,486.0182243771945,7018,71.90478180906203,5537,57.22287242935964,2194,22.50877779635513,77.3419109081298,79.71093186937927,63.33255108723839,65.08100526158636,77.0687482517758,79.4384692124082,63.232390418611885,64.98364216439836,0.2731626563540033,272.4626569710722,0.1001606686265006,97.3630971879942,192.78908,134.91102066435826,201459.91472997828,140978.74588734985,370.6965,236.48910906523403,386758.0672128407,246514.5973345113,446.3196,215.5177569338803,462179.3073900686,221962.0444456403,3911.89709,1792.3119523014518,4045790.367413476,1830875.284548417,1276.23739,567.7081151291378,1317741.1072563117,577345.192201489,2131.43444,885.3533206111472,2189065.540879451,894051.9472995675,0.43358,100000,0,876314,9157.268851362647,0,0.0,0,0.0,30581,318.9057013877278,0,0.0,40456,418.6277378364822,1447733,0,52056,0,0,17217,0,0,75,0.7732820598562113,0,0.0,1,0.0104497575656244,0,0.0,0.07018,0.161861709488445,0.3126246793958392,0.02194,0.3348786473956913,0.6651213526043087,24.47368347217647,4.2862411560358575,0.3267112154596351,0.2483294202636806,0.2102221419541267,0.2147372223225573,11.339477853288694,5.93860171517219,23.333256760293654,14227.889549451078,63.42225920125822,16.77885345029079,20.70124136025491,13.33109714694301,12.611067243769496,0.5705255553548854,0.7738181818181818,0.6987285793255943,0.5828427249789739,0.1185567010309278,0.7434420985284709,0.8795411089866156,0.8664122137404581,0.7010309278350515,0.1955555555555555,0.5025163563160544,0.7089201877934272,0.6303501945525292,0.544543429844098,0.1001064962726304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028151328580686,0.0055031924597141,0.0081761006289308,0.010857641992362,0.0138792858014397,0.016402622790584,0.0189914064650295,0.0215460929207152,0.0240394934535308,0.0268560784393998,0.0294928702498231,0.0317492914938185,0.0342338265993439,0.0368214458650567,0.0393160452805266,0.0419070065537844,0.044118103957166,0.046513558671219,0.0491193045937571,0.051417257190496,0.0688146214099216,0.0852584970638418,0.101362906694925,0.1163478023076033,0.1308383612505801,0.1496328741615353,0.1644246886338079,0.1776654069303241,0.1904660156834255,0.2023879764420653,0.2171253163875276,0.2308025326045781,0.2438209825508028,0.2558648220047028,0.2672782672782672,0.2785238986259812,0.2885027215133399,0.2988014661239909,0.3080727866769524,0.3164955415908336,0.3239309514994447,0.3314803328378995,0.3386289110129864,0.3451317887065648,0.3505712202236266,0.3566062639545068,0.3623021294195796,0.3676202844301847,0.371878118641212,0.3755475222966911,0.3741579089194287,0.3726852488787386,0.3707368569216693,0.3685783160356251,0.3675948615133289,0.3645477783049913,0.3617492563761787,0.362903093325448,0.3630653911317235,0.3638235030878009,0.3641743377794477,0.3659310372176947,0.367257942192635,0.3679141256160407,0.3698729582577132,0.3715124816446402,0.3726255380200861,0.3769910383482694,0.3824061270077651,0.3851253616200578,0.3889527664075795,0.3907558514064849,0.3943885990584044,0.39884437596302,0.4080700418728588,0.4096414438182036,0.41273767197403,0.4108767576509512,0.4060827935792734,0.4135922330097087,0.0,2.506649925929689,68.82546684222528,208.8174953911781,293.38016014724764,APP_public_baseline,35 +100000,95701,51340,484.20601665604335,7006,71.75473610516087,5528,57.10494143216895,2180,22.371762050553286,77.33810060160408,79.72051796436287,63.31256206328344,65.07479987883444,77.06148161662531,79.44379841450129,63.210340776016125,64.97501112224674,0.2766189849787679,276.719549861582,0.1022212872673122,99.78875658769935,192.79832,134.858220171965,201459.04431510644,140916.20795181347,369.52557,235.6792112888443,385484.0283800587,245625.13588034015,438.18433,211.45375569352933,452954.9012027043,217220.75825756404,3905.46135,1801.2726631293467,4037146.5919896346,1838435.306976256,1298.64069,580.5300997762223,1340767.6722291303,590398.7207826689,2124.93158,890.0555835572806,2182445.052820765,898927.8300595047,0.43259,100000,0,876356,9157.229287050292,0,0.0,0,0.0,30529,318.33523160677527,0,0.0,39948,412.6289171482012,1446489,0,52046,0,0,17159,0,0,60,0.616503484812071,0,0.0,1,0.0104492116069842,0,0.0,0.07006,0.1619547377424351,0.3111618612617756,0.0218,0.3405301995080623,0.6594698004919377,24.17921177203055,4.323026465494028,0.3279667149059334,0.2454775687409551,0.2143632416787264,0.2121924746743849,11.392477993402585,6.02935474533703,23.258566498761148,14199.528571918763,63.67610669904053,16.783012869799265,20.770580323375523,13.11812393064383,13.004389575221897,0.5781476121562952,0.8054532056005895,0.6999448428019857,0.5839727195225917,0.1257383966244726,0.7543075941289088,0.9052823315118396,0.8701825557809331,0.7985611510791367,0.1376518218623481,0.5084574602373139,0.7376237623762376,0.6363636363636364,0.5173184357541899,0.1226012793176972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002990006284081,0.0057415297220531,0.0085893556967937,0.0111388905827591,0.0138989224773862,0.0164088043267908,0.0192052709952471,0.0217655530248092,0.0240936748990131,0.0262632468130855,0.0292455829120479,0.0319447154137615,0.0344958769458553,0.0368871451079736,0.0391177866265035,0.0414901312390203,0.044126934824248,0.0467060898433447,0.0489032123921405,0.0513870225111201,0.0688005848258576,0.08448315571282,0.1001080831505713,0.1154691657989124,0.1295653732980372,0.1473500476039352,0.1628094525621027,0.1767988158749427,0.1891958322201442,0.2014676379397281,0.2165452743179761,0.2308308611766744,0.2433759334654155,0.255018278134098,0.2664259291879514,0.2780567842928571,0.2883012713095158,0.298468813330331,0.3084175849142337,0.3160990712074303,0.323976459139461,0.3318222815710253,0.339439323206711,0.345933823441229,0.3518482490272374,0.3569885037600484,0.3617517589074081,0.3666233004260095,0.3716342412451361,0.3754872296288466,0.3736288909850424,0.3710541907215784,0.3693980900255321,0.3675530221926449,0.3664478873658675,0.363439572586588,0.3617247339792892,0.3619995067006495,0.3635024998287788,0.3647328298915572,0.3657335163285641,0.3662946295819043,0.3668566860893161,0.3671680043164497,0.3694880892042574,0.3702217474007869,0.371377276224673,0.3748898401107893,0.3777387640449438,0.3818383782282699,0.3854913347246166,0.3883223249669749,0.3885382163614774,0.3906450396076952,0.3930436404326743,0.392604804521903,0.3970009088155105,0.4038577456298975,0.4166893177493884,0.415648854961832,0.0,2.6138393361962677,68.97794029531553,213.587723571637,289.0919375060236,APP_public_baseline,36 +100000,95636,51253,484.07503450583465,7045,72.23221381069891,5605,57.87569534484922,2184,22.355598310259737,77.27782633283482,79.68947788845436,63.2892740309558,65.07260219288945,76.99372026188837,79.40891159045515,63.18248227629886,64.9705908392869,0.28410607094645,280.5662979992149,0.1067917546569319,102.0113536025491,192.08442,134.3687562745656,200849.49182316285,140500.1843182124,368.99755,235.0027488939327,385088.3349366348,244979.1698669253,439.32235,211.9016825537624,455432.0757873604,218444.4353533353,3994.67719,1839.0607220970692,4128329.467982768,1874613.480498632,1327.37575,596.3539626915516,1367745.3469404827,603507.2014017825,2139.45074,907.8325546433476,2192746.810824376,909991.910592687,0.42989,100000,0,873111,9129.52235559831,0,0.0,0,0.0,30398,317.0667949307792,0,0.0,39900,413.23351039357567,1451007,0,52206,0,0,17172,0,0,72,0.7528545735915346,0,0.0,1,0.0104563135221046,0,0.0,0.07045,0.1638791318709437,0.3100070972320795,0.02184,0.3405230520355891,0.6594769479644109,24.40496975986629,4.276732063259677,0.3214986619090098,0.2453166815343443,0.2162355040142729,0.2169491525423728,11.123485383536767,5.78048081278961,23.37765265545049,14103.761246226124,64.05874284552486,16.61939757020449,20.5772215019902,13.624932029922796,13.237191743407372,0.575735950044603,0.8058181818181818,0.7158712541620422,0.5633223684210527,0.1188118811881188,0.7381416504223521,0.9349112426035504,0.8451882845188284,0.7157190635451505,0.1725490196078431,0.514264633546483,0.7304147465437788,0.6691842900302115,0.5136314067611778,0.1044932079414838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025738199947307,0.0051719941586889,0.0076442044139443,0.0102340518511743,0.0128490767587364,0.015657949694889,0.0183579806221315,0.020999519952608,0.0236594996010719,0.0262545968592823,0.0284923076923076,0.0311848389913204,0.0336986160415702,0.036300296833773,0.038613626273785,0.0410827136104589,0.0434814147003657,0.0461964986605195,0.0486690669941101,0.0508200652715651,0.0678920749038622,0.0845909743095629,0.1001627040361098,0.1149243835443437,0.1293046130465526,0.1482065723723215,0.162876655585177,0.1764862589644406,0.1892470127619516,0.2011791110490652,0.2158578912195227,0.229802766254725,0.2427700348432055,0.2541573156713558,0.2648539113005363,0.2760612410061973,0.2864196427574034,0.2967858148043906,0.3054388554558873,0.3139538879153352,0.3221129368201805,0.3295745651487325,0.336288737896257,0.3424202446629887,0.348060318618509,0.3538415958917638,0.3593918427715525,0.3637533771728602,0.3682905616781546,0.3727543129089827,0.3720782640398611,0.3699375656113597,0.3682930278602743,0.3670858535311779,0.3656753167295898,0.3624028920852242,0.3591706183762452,0.3592934962033674,0.3594523089609676,0.3598980031604654,0.3615077421542403,0.3622263318021834,0.3622345803842265,0.3640060207130501,0.3647201063958409,0.3662746536053851,0.3676099184938583,0.3714612525021447,0.3761921708185053,0.3804063568698451,0.3846082864261327,0.3879291845493562,0.3907760814249363,0.3931656896019747,0.3960216998191682,0.3985752233759961,0.4024009978172747,0.4084858569051581,0.4144271570014144,0.4186407766990291,0.0,2.8104307850938706,67.19342619611656,215.13850831946556,299.4012383402567,APP_public_baseline,37 +100000,95794,51449,484.98862141679024,6899,70.52633776645719,5459,56.14130321314487,2146,21.901162912082174,77.39792083527668,79.70118981968888,63.37134666233783,65.07142550605221,77.12950539764275,79.43958334046368,63.27044218644871,64.97660409864127,0.2684154376339336,261.6064792251933,0.1009044758891235,94.82140741093303,193.43522,135.3006090270413,201928.3253648454,141241.21450930255,369.03008,235.35787053008352,384377.0486669311,244835.73139244996,440.64276,212.90329074322,454447.1887592125,218018.2429270064,3868.60176,1785.3437060573265,3980753.303964758,1806026.229260002,1294.58853,580.3892698698756,1329463.4423867883,583907.4669492921,2087.35562,885.9628834088155,2131804.288368792,883647.4450983272,0.43225,100000,0,879251,9178.56024385661,0,0.0,0,0.0,30484,317.3372027475625,0,0.0,40071,412.8964235755893,1447584,0,51977,0,0,17288,0,0,69,0.7098565672171535,0,0.0,1,0.0104390671649581,0,0.0,0.06899,0.1596067090803933,0.3110595738512828,0.02146,0.3314878892733564,0.6685121107266436,24.193401936276764,4.239938427285475,0.3123282652500458,0.2487635098003297,0.2113940282102949,0.2275141967393295,11.204658933841998,5.978563047004955,22.97758969223522,14146.048579788976,62.48413218018224,16.55338346516541,19.3792340814898,13.908126503058616,12.643388130468429,0.5682359406484704,0.788659793814433,0.6826979472140763,0.5917874396135265,0.1143847487001733,0.7293428757319453,0.9177570093457944,0.835214446952596,0.7322580645161291,0.1325301204819277,0.5050994390617032,0.7047387606318347,0.6291600633914421,0.5450643776824035,0.1093922651933701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028853162711589,0.0057959853681767,0.0084791318018155,0.0109765137130266,0.0136731457384515,0.0161099916549632,0.0185547472030323,0.021596531497067,0.0242250240104624,0.0267131836876675,0.0291375530192816,0.0315776514762911,0.0342840117533441,0.0370256030295546,0.0394549689761085,0.0417552916881775,0.0440315338616565,0.0462804606279216,0.0486313034809337,0.0510309224700506,0.0675373990694569,0.0839914230427278,0.0993551093168353,0.1137128317281406,0.1279318596291494,0.1454943381863165,0.1611534749546606,0.1747767120516942,0.187674291880803,0.1999957087070334,0.215263639791027,0.2295683219733852,0.2422627721351051,0.2541368185049488,0.2654852654852654,0.2774590799353252,0.2874368384067104,0.2978677942466431,0.3069622406168499,0.3148137552211478,0.3230185711972987,0.3305634444795063,0.3379423732021196,0.343868596535335,0.3491437857766566,0.3552063206862178,0.3605922408946086,0.3650499250489087,0.3698628364389233,0.3749209444503004,0.3734313277618036,0.3717629926776662,0.3696294420528404,0.367858379501385,0.3669629475746019,0.3641420624732563,0.3610887192375172,0.3607826414970561,0.3615247984697363,0.3626697641172265,0.3633432679150499,0.3644510385756676,0.3665694686274098,0.3675319139389316,0.3676467035489092,0.3703752192925034,0.3717378197582613,0.3743498668019789,0.3793456755228943,0.3816477159385597,0.3831076428735368,0.3875831723545825,0.3926005975462462,0.3957165886236278,0.3990686181334347,0.399427002506864,0.4012640665947279,0.4072498987444309,0.414207650273224,0.4210326499620349,0.0,3.2514471079682488,66.64226204405398,207.56356541573317,287.9114274842645,APP_public_baseline,38 +100000,95550,51579,487.1794871794872,6924,71.1250654107797,5395,55.85557299843014,2068,21.22448979591837,77.19945181010942,79.66985285863092,63.224607941291474,65.05329585971526,76.94067655681016,79.41177699902916,63.12875114190594,64.96038369584511,0.2587752532992624,258.07585960176027,0.0958567993855368,92.91216387015312,194.42324,136.11955668710672,203478.01151229723,142458.9813575162,369.52138,234.9768364355976,386137.4149659864,245326.79899068296,438.79363,211.81763712577413,455420.6802721088,218715.0875673611,3814.81183,1745.1195871598918,3950560.596546311,1784477.6631710026,1264.72554,559.896587290005,1302506.0596546312,564860.2942684866,2022.16486,843.8862632647706,2076736.5149136577,849712.7635415962,0.43239,100000,0,883742,9249.00052328624,0,0.0,0,0.0,30482,318.3882783882784,0,0.0,39746,412.0879120879121,1433799,0,51548,0,0,17336,0,0,82,0.858189429618001,0,0.0,0,0.0,0,0.0,0.06924,0.1601332130715326,0.2986712882726747,0.02068,0.3287145013033338,0.6712854986966662,24.660851957727093,4.3179652893505125,0.318628359592215,0.2509731232622799,0.215755329008341,0.214643188137164,11.453394045581216,6.0105661012256135,21.943391426473596,14202.018374320263,61.50378829070672,16.40851090421531,19.546600346833905,12.888746782120084,12.65993025753742,0.5684893419833179,0.7880354505169868,0.6893542757417103,0.5975820379965457,0.1056701030927835,0.7474679270762998,0.921875,0.8783185840707964,0.7490909090909091,0.1322314049586777,0.5007664793050588,0.7066508313539193,0.6219415943172849,0.5503963759909399,0.0986984815618221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027369210651691,0.0056208274994419,0.008398326427817,0.0109504636408003,0.0135195667223195,0.0160961487492099,0.0187987957340409,0.0213876967095851,0.0239459680720425,0.0264401151887188,0.0289477195971955,0.0319167532106978,0.0345821919218965,0.0367951971281797,0.0392493231093565,0.0414471300657315,0.0439936529666158,0.0467678237372687,0.0492896129327944,0.0515706068419788,0.0683054393305439,0.0843181460703612,0.100101962515636,0.1152695241707759,0.1293319382352008,0.1483487940630797,0.1632448992617492,0.1768528893869057,0.1898094085128721,0.2017702350992665,0.2164295974683817,0.2308652426847269,0.2443021264060573,0.2565804632382791,0.2678007639149537,0.2797191142320641,0.2901243549993844,0.2999785536103304,0.3093910073989755,0.3178966959239006,0.3256143119010604,0.3325394218134034,0.3392950391644909,0.3453699920690235,0.349826378312519,0.3554341241485034,0.3604578119503492,0.3649383472466876,0.3691144371686934,0.3732657276000847,0.3720443183353601,0.3699660492975241,0.3673832594141077,0.3653570238112491,0.3640607289864582,0.3625757063362745,0.3605682143197635,0.3617877463511173,0.3621231641329554,0.3634959685384381,0.3656126854837189,0.3659152353689567,0.3665034197416195,0.3673359142882866,0.3681532982872647,0.370427790624343,0.3732693743896134,0.3785836339472185,0.3815319299486998,0.3868781887755102,0.3932262029407748,0.3952636329846546,0.3981516408902301,0.3996489621489622,0.4047417442845046,0.4096658711217184,0.409216166564605,0.4182769726247987,0.4192751235584843,0.4182655410590944,0.0,2.351635514412937,65.2858515521121,203.34529981715644,290.20065246855694,APP_public_baseline,39 +100000,95665,51196,482.76799247373646,6990,71.53086290701928,5504,56.79193017299953,2136,21.76344535619087,77.33990302576841,79.73156576557054,63.32261558699434,65.08953398596888,77.07455945537497,79.46936133019337,63.22377896695061,64.9949190484778,0.2653435703934406,262.2044353771713,0.098836620043734,94.6149374910874,193.60132,135.45228829070115,202374.24345371872,141590.22452380825,370.27248,236.09480836563935,386304.9809230126,246047.13151689683,442.76215,213.75558443535533,458425.1293576543,219991.3339364692,3871.3686,1791.5288837477174,3993458.955730936,1819372.5957745467,1308.89834,586.4356463539706,1347466.252025297,592274.8894076562,2076.23866,876.4144821856457,2117770.2817122247,873705.7298502772,0.43227,100000,0,880006,9198.829247896305,0,0.0,0,0.0,30496,317.995087022422,0,0.0,40262,416.5159671771285,1444255,0,51963,0,0,17049,0,0,86,0.8885172215543824,0,0.0,0,0.0,0,0.0,0.0699,0.1617044902491498,0.3055793991416309,0.02136,0.3410704533042054,0.6589295466957946,24.04703771393302,4.190121730670316,0.3212209302325581,0.2565406976744186,0.2056686046511628,0.2165697674418604,11.25830979996352,5.968775684838368,22.876808677965062,14133.95716845128,62.89852183258225,17.180754881760574,19.981203825199607,13.386518506779392,12.350044618842675,0.576671511627907,0.7868271954674221,0.6985294117647058,0.5788590604026845,0.1219081272084805,0.7509578544061303,0.9236363636363636,0.8562367864693446,0.7549668874172185,0.1452282157676348,0.5073641442356526,0.6995359628770301,0.640926640926641,0.5191011235955056,0.1156004489337822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027043451838347,0.0055445745273934,0.0085235055960873,0.0110713850404257,0.0137071270959803,0.0161444654817891,0.0187446487544338,0.0211990691597942,0.0238387307818122,0.0265716800753341,0.0292480393664462,0.0318318996489355,0.0343554623231326,0.0366589757323554,0.0389509861597052,0.0415533659363723,0.0441759995027092,0.04657463151339,0.0490913062927169,0.0512692207453739,0.0682587438886799,0.0842511935673004,0.0996212399408252,0.1138907591314593,0.1285024052662672,0.1464178409716051,0.1616342726192497,0.1745045025865923,0.187959966246889,0.1997104868110658,0.2151188463236798,0.2293026023913866,0.2411850433950362,0.2531793677350217,0.264577347731801,0.2768041122903418,0.2871937949891189,0.2973566051112386,0.3059665925287095,0.3149007343254172,0.3231867458031076,0.3301873552733141,0.3377479524688728,0.3435185850887914,0.3496059358568011,0.354608967803147,0.3596096096096096,0.3638306805603267,0.3686195233837421,0.3723697940745241,0.3709840508001564,0.3698601832082099,0.3686646348346314,0.3676779378756064,0.3662164778057388,0.3640586197381733,0.3618659779112329,0.3619042922194276,0.3622772395646453,0.3630214003962375,0.3649568004198137,0.3660673668387428,0.367577421112182,0.3683844791643316,0.3703408844177462,0.3712822121164602,0.3723714285714286,0.3766020582107456,0.3806267404561317,0.3855536572768088,0.3883007848147472,0.3906808124966679,0.3922151898734177,0.3922393999693861,0.3922677982083922,0.3925723128199024,0.3918480778138027,0.3983172583624051,0.3931671800616074,0.4003109211037699,0.0,2.884836857978865,68.25003857606202,203.6803466150666,293.8903816382513,APP_public_baseline,40 +100000,95772,51285,483.2414484400451,6983,71.36741427557115,5536,57.07304849016413,2136,21.83310362110011,77.331780499572,79.67167182921567,63.32970022966426,65.0622304843887,77.05889793004604,79.40152279807094,63.22654205503152,64.96295041281971,0.2728825695259615,270.1490311447259,0.1031581746327461,99.2800715689981,194.30752,136.04447840265672,202885.06035166857,142049.95494526436,372.62532,237.9873473560636,388342.7724178257,247765.9926614938,447.23483,216.56061975251413,462158.919099528,222529.45342024288,3852.19286,1799.1871683654508,3973801.914964708,1830560.2343864045,1270.39028,577.842095362161,1311028.244163221,587989.185762162,2072.29374,887.039889516987,2120502.589483356,889897.100668371,0.43139,100000,0,883216,9222.048197803117,0,0.0,0,0.0,30793,320.75136783193415,0,0.0,40687,420.0183769786576,1436755,0,51746,0,0,17240,0,0,75,0.7831098859792005,0,0.0,1,0.0104414651463893,0,0.0,0.06983,0.1618720879018985,0.3058857224688529,0.02136,0.3470893686799672,0.6529106313200328,24.03747431938436,4.165811564995952,0.3204479768786127,0.2646315028901734,0.2059248554913294,0.2089956647398844,11.501160312895868,6.2858012215514165,23.003994883070938,14070.6049507421,63.79531524943008,17.842361122417795,20.38553643100714,13.04704763013268,12.52037006587246,0.5852601156069365,0.8027303754266212,0.7102593010146562,0.57476231633535,0.1219298245614035,0.7410768300060496,0.9047619047619048,0.8705440900562852,0.7181208053691275,0.1333333333333333,0.5189286634045841,0.7383073496659243,0.6414182111200645,0.5250291036088475,0.1186440677966101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027449987338566,0.0053829933903734,0.0081281013120642,0.0108598480230809,0.0136181032290872,0.0162934449434311,0.0191268530413327,0.0216219527134631,0.0243912412340782,0.0269539847468905,0.0291753803255833,0.0315009138139926,0.0340448721903469,0.0366292065388696,0.0387433690424587,0.0412488369688824,0.0436228056548081,0.0460301820256184,0.0484677176318989,0.0509907639763841,0.0676949085330856,0.0843715023901423,0.0994936735399872,0.1144073139974779,0.1291570073761854,0.1471160146260013,0.1618206680164089,0.1753326172269667,0.1881370947943685,0.2002828884626512,0.214900947459087,0.2285395884274987,0.2422933843844497,0.2546083075341042,0.2656817631387745,0.2774298666607552,0.2884061530218124,0.2986124396529411,0.3071624719152123,0.3151690799120235,0.3226545416681128,0.3296369081040614,0.3363247812651693,0.3418524603926554,0.3477399275415177,0.3525069741032414,0.3573550983563395,0.3611529333707607,0.3656731917545044,0.368336837650917,0.3663232835337899,0.3650570724386247,0.3642836999435984,0.3638890497423128,0.3625197272429503,0.3599956987925896,0.3577636198979997,0.3581184611582502,0.3583646439171685,0.3596018546697936,0.3611962757453211,0.3627587027198477,0.3631080227416298,0.3629501493945589,0.363783796867814,0.364436988886559,0.3665444756286156,0.3699334447844052,0.3735452339931788,0.3754880867001354,0.3792582417582417,0.3829935249103655,0.3850076491585925,0.3881755977550549,0.3931729580678901,0.3968918111177525,0.3990719257540603,0.4005272764145204,0.4037232564601278,0.4072469476171721,0.0,2.768997732195372,72.5026426387498,203.58366722499207,288.424640972068,APP_public_baseline,41 +100000,95676,51559,485.8271666875705,6918,70.92687821397216,5425,56.01195702161461,2178,22.29399222375517,77.34192318165195,79.71734235397172,63.32298576779221,65.07512691371461,77.06772849095854,79.4462866501233,63.220711689165,64.97711463961112,0.2741946906934061,271.05570384841826,0.1022740786272038,98.01227410349613,193.53532,135.40930741615216,202281.99339437264,141529.02234223016,372.60383,237.44982073907136,388779.5894477194,247517.40325585465,437.91285,211.23686316317435,453598.154187048,217507.04875736564,3885.53273,1789.0728912437169,4014674.275680421,1823657.760686447,1312.82717,579.6736520591412,1354926.7005309586,588778.6929332878,2128.52524,901.076760706866,2181788.8916760734,905157.1689346356,0.43367,100000,0,879706,9194.636063380576,0,0.0,0,0.0,30695,320.1116267402483,0,0.0,39749,411.32572431957857,1442141,0,51859,0,0,17238,0,0,83,0.8675111835779088,0,0.0,1,0.0104519419708181,0,0.0,0.06918,0.1595222173542094,0.3148308759757155,0.02178,0.3354570637119113,0.6645429362880887,24.482181207915065,4.270691711577995,0.3188940092165898,0.2438709677419354,0.2228571428571428,0.2143778801843318,11.381574987647378,6.046035141999878,23.44973203915677,14176.23464309998,62.08786928389163,16.04639635855414,19.738894823043644,12.99631063473808,13.30626746755575,0.5714285714285714,0.782312925170068,0.7040462427745665,0.6061908856405847,0.1174524400330851,0.7364548494983277,0.8860759493670886,0.8805668016194332,0.7517482517482518,0.1286307053941908,0.5086513994910942,0.7243816254416962,0.633495145631068,0.5587229190421893,0.1146694214876033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028451950629284,0.0055442373379552,0.0081256276819136,0.0108781766103967,0.0136068257858501,0.016330353688583,0.0192586097914075,0.0219639957930421,0.0247760644607141,0.0271642860799672,0.0298372791682473,0.0323468402784908,0.0347437928126221,0.0373602596465921,0.0398340163299854,0.0422940105890139,0.0450901180857675,0.0475696210414871,0.0497410511865887,0.0519048809970405,0.0691834411005839,0.0852661228678233,0.101069580459951,0.1155505513932149,0.1293896673982779,0.1468938512011853,0.160695703879887,0.1749472697445512,0.1887133327631916,0.2010004401077727,0.2155850037199573,0.2300051990814956,0.2432582495944607,0.2549472439910687,0.2664508813070427,0.2783182996830744,0.2895168763886873,0.2986286254728877,0.3074374163092077,0.3165022514006805,0.3241419227875209,0.3313664887140582,0.3390238123445089,0.3460190585919685,0.3504147712068504,0.3564121864241557,0.3613513852325435,0.3657651000726179,0.3702973123791479,0.3737087835782401,0.3737016276085635,0.3716199419969617,0.3694847225755391,0.3673791525472818,0.3657724109214205,0.3633910777249732,0.3602434269956734,0.3601731886801771,0.3599753124517821,0.3600529621213477,0.3604290732843643,0.3610207159298357,0.3620689655172414,0.3621576688908359,0.363439044977692,0.3653976708966526,0.3680230567286839,0.3714582546278806,0.3754473370289804,0.3807463279079,0.3820786900159199,0.3880454400679478,0.390213061895429,0.3939784620051569,0.3962581852198316,0.3962993324745286,0.4012979172955025,0.4081388390185517,0.406608410704533,0.4124441132637854,0.0,2.6783057504377648,65.60197488910315,210.79454785814613,285.077047584365,APP_public_baseline,42 +100000,95732,51585,485.34450340534,6963,71.40767977269878,5455,56.334350060585805,2112,21.601972172314376,77.32392886815877,79.68813528551945,63.31606620966248,65.0652435037507,77.04913559899767,79.41664640375323,63.213691663142974,64.96752024193624,0.2747932691611083,271.4888817662171,0.1023745465195062,97.72326181445123,193.51442,135.41871805014986,202141.37383529017,141455.61008873716,370.60812,236.39436963042985,386489.334809677,246292.5253792556,439.37286,212.1651985971357,455444.9609326035,218865.39838811767,3844.20369,1784.7312607618294,3968507.082271341,1817266.1661411568,1276.65195,573.3235554126785,1317164.511344169,582529.7149926028,2051.43298,873.7496273264267,2099720.532319392,874728.2414780016,0.43466,100000,0,879611,9188.244265240462,0,0.0,0,0.0,30635,319.339405841307,0,0.0,39905,413.3727489240797,1442607,0,51979,0,0,17461,0,0,76,0.7834370952241675,0,0.0,0,0.0,0,0.0,0.06963,0.1601941747572815,0.3033175355450237,0.02112,0.3457622454595487,0.6542377545404513,24.131314797072637,4.2290687425468425,0.3160403299725023,0.2533455545371219,0.2084326306141155,0.2221814848762603,11.499482817688843,6.281843630665906,22.72713134087058,14241.539609230602,62.77479745901887,16.93051163489626,19.58195302692852,13.571239940911502,12.691092856282586,0.5748854262144821,0.7894356005788712,0.6960556844547564,0.5808580858085809,0.1240105540897097,0.7315689981096408,0.9027522935779816,0.8357289527720739,0.7641196013289037,0.1259842519685039,0.5105997931747673,0.7156511350059738,0.6410670978172999,0.5203073545554336,0.1234428086070215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026942984188722,0.0052925610114672,0.0081190249051088,0.0108110305025503,0.013518737030557,0.0162525458248472,0.0189017800705503,0.0217113926117978,0.0242308989970248,0.0271117026722637,0.0298040743512718,0.0322491221585658,0.0347901181260216,0.0372663130246691,0.0397804080200604,0.0423398559039083,0.0446955729112717,0.0472676319476879,0.0498741706703271,0.0524056593944698,0.069252453539361,0.0859271194065766,0.1015646301306655,0.1163189332435956,0.1299014954966356,0.1478248910329651,0.1630426708265681,0.1763183676946668,0.1897548207894877,0.2021251501115114,0.2174371783553325,0.2311843656381471,0.2440010872519706,0.2567413887370147,0.2686164947092857,0.2802822205484914,0.2906923531972364,0.3000731611233046,0.3094456621730588,0.3181348933241569,0.3252104152658304,0.3333177044261065,0.3403238242097147,0.3463907869297371,0.3526840079886989,0.3583001951243609,0.3626168224299065,0.3679611155053198,0.3719245400605029,0.376037159077375,0.3742808524430759,0.3725582165323916,0.3710101124230269,0.3688086161160798,0.3676479351647697,0.3653530503612572,0.3613938298614413,0.3611357586512866,0.362569297104921,0.3630446832478052,0.362561243453286,0.363061491495857,0.3641595429627607,0.3653147292386379,0.3672853660302672,0.3688646894060365,0.3687399954264806,0.3725856500538281,0.3752302678191866,0.3789633415861353,0.3834913654894416,0.3886369698586289,0.3927169094363521,0.395732966276669,0.400437845040929,0.4000479673821801,0.4015615431720759,0.3995607028753993,0.4,0.4025229357798165,0.0,2.411943452198233,69.94403965431933,203.9883275344811,286.3899351390128,APP_public_baseline,43 +100000,95798,51363,484.6343347460281,6905,70.79479738616672,5425,56.086765903254765,2117,21.670598551117976,77.4066300966336,79.74454894933866,63.35719594835807,65.08731424336871,77.14371169903771,79.4827254908786,63.25980827972382,64.99275748659396,0.2629183975958966,261.8234584600714,0.0973876686342478,94.55675677475028,194.23294,136.02854174413434,202752.604438506,141995.17917298307,369.94685,235.57223365224647,385623.6560262218,245354.948592086,438.33006,211.2567830474966,454261.633854569,217939.4376279841,3899.88227,1790.2878796157563,4031148.447775528,1829455.7388703732,1268.59967,570.3779052609293,1311074.5422660182,582347.6913084259,2075.08352,876.8449244577629,2126707.6765694483,883637.1431824906,0.43256,100000,0,882877,9216.027474477549,0,0.0,0,0.0,30500,317.804129522537,0,0.0,39761,411.7831269963882,1442842,0,51881,0,0,17173,0,0,70,0.7202655587799328,0,0.0,0,0.0,0,0.0,0.06905,0.1596310338450157,0.3065894279507603,0.02117,0.3397506925207756,0.6602493074792244,24.49191939523426,4.283188630860698,0.3220276497695852,0.2449769585253456,0.2200921658986175,0.2129032258064516,11.157557243849292,5.831001311672724,22.636700881963147,14166.22778340196,61.65676055510797,16.017433303415913,19.76120938248527,12.728222811830957,13.149895057375836,0.5581566820276498,0.7915726109857035,0.680022896393818,0.5670995670995671,0.1113902847571189,0.7331571994715984,0.915057915057915,0.8657024793388429,0.6980392156862745,0.1517509727626459,0.4904116594221426,0.7127003699136868,0.6088677751385589,0.53,0.1003201707577374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026546699900703,0.0054247530976861,0.0077734141118925,0.0105056744866545,0.0130490942931825,0.0158245249587584,0.0183112089883974,0.0209768794977798,0.023794922114559,0.026229340428798,0.0289834277925245,0.031594393252201,0.0341123992764348,0.0364529179835081,0.0391402948149675,0.0414795080697623,0.0439671849621882,0.0460058466195343,0.0481943982712766,0.0506173610677327,0.0681566810659654,0.0858798184518207,0.1017755696706706,0.1176816772634123,0.131759995785703,0.1502324598478444,0.1647606227940942,0.1775682054989686,0.1895972259269138,0.2027675434838488,0.2186182115500473,0.232107334371216,0.2450505270020645,0.2567403767403767,0.2673594709494568,0.2791196875311196,0.2895494088779834,0.2992736839738256,0.3085474448414724,0.315788268431478,0.3233239254152593,0.3305743578952291,0.3372390285470814,0.3440465918895599,0.3498693565048307,0.3544854799926012,0.3600751644221735,0.3651108904336312,0.3698706483137621,0.3738473326815864,0.3724403075677863,0.3701923076923077,0.368477478875425,0.365954244866656,0.3641160557686019,0.3605874515689367,0.3585609509357612,0.3589537816502342,0.3592356904648472,0.3596458477785482,0.3599611055013276,0.361041572214228,0.3623012805782448,0.362995673312815,0.364818896128785,0.3662253374870197,0.3682029742309002,0.3717066149320984,0.3746807989645643,0.3774897249446727,0.3824155903013823,0.3856350673356218,0.3880821231847771,0.3903157576673213,0.3930662700994516,0.3989498249708285,0.4045440683135102,0.4027555910543131,0.4094033544129777,0.4156093810073049,0.0,2.036423347213015,66.99599546449542,199.6560688848048,291.4649182914215,APP_public_baseline,44 +100000,95673,50924,481.48380420808377,6891,70.61553416324355,5483,56.56768367250948,2114,21.61529376104021,77.29491858535671,79.69796599056245,63.29396199958445,65.07419969632623,77.03320887953814,79.43881533854666,63.19637094639387,64.98074322919712,0.2617097058185749,259.1506520157907,0.0975910531905839,93.4564671291156,192.37746,134.66231440292938,201077.4199617447,140752.09041546145,368.81627,235.2592311776532,384735.5575763277,245141.42694807323,436.41593,210.7706909791249,451340.169117724,216661.2205856846,3905.40117,1785.779295946165,4028980.7782760025,1813754.625417629,1311.93545,580.6328228654422,1352678.592706406,588365.1734322563,2074.88306,872.108456976471,2123218.9436936234,872218.3785096777,0.42948,100000,0,874443,9139.88272553385,0,0.0,0,0.0,30392,316.8501040000836,0,0.0,39552,408.6837456753734,1450060,0,52127,0,0,17174,0,0,83,0.8675383859605114,0,0.0,1,0.0104522697103676,0,0.0,0.06891,0.1604498463257893,0.3067769554491366,0.02114,0.3421016198255572,0.6578983801744428,24.276836083381955,4.246751374182748,0.3146087908079518,0.2509575050155024,0.2219587816888564,0.2124749224876892,11.087076687324146,5.779059170385948,22.65308824746746,14043.410894658526,62.507471230651056,16.624790835507753,19.48187605181126,13.189375528683112,13.211428814648936,0.5590005471457231,0.779796511627907,0.6857971014492754,0.5785407725321888,0.1109285127362366,0.7485029940119761,0.9158699808795412,0.8584070796460177,0.7440273037542662,0.1702127659574468,0.4874371859296482,0.6963657678780774,0.624509033778476,0.5229357798165137,0.0967413441955193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027268948878323,0.0053071123423341,0.0080333113288985,0.0108281226170504,0.0129482781436729,0.0154923404645663,0.0179599167312951,0.0205757953454159,0.023366206981217,0.0256814759421833,0.0283014997025213,0.030736673412572,0.0331553113326953,0.0353705039678449,0.037995850493915,0.0403420960102587,0.0427871213769805,0.045172811179518,0.0475516764280587,0.0497706900145924,0.0671248903188066,0.0835898402328454,0.0986682618140603,0.1135148785723304,0.1279700358725469,0.1457517722992276,0.1613344938858695,0.1749417038448843,0.1883755970890905,0.2011202558132048,0.2156909220194358,0.2297912857189227,0.243505963966119,0.2557389593353738,0.2664114748328053,0.2772984527461817,0.2878108120173206,0.2978531785790676,0.3068429661941112,0.3145200137630462,0.3217674386273851,0.3290390583826199,0.3353668648866355,0.3403581201094522,0.3465149083126611,0.3520638095590868,0.3581169156723152,0.3628039073345305,0.3678506221917205,0.3716385612118333,0.3702756197067417,0.3674741055585359,0.3650469291693678,0.3634694084132286,0.3620133009983188,0.3593639684439942,0.356768517342142,0.3562550417332038,0.3571538659131775,0.3579822298652909,0.3589309241483154,0.3607397548717745,0.3613595706618962,0.3624926989261805,0.3621107182641546,0.3622286959032097,0.3632163457399489,0.3678997500079111,0.3715956734665116,0.3752940707364727,0.3810594932060228,0.3837811848923553,0.3850821744627054,0.3850099525340683,0.3898834896277351,0.3949509452022015,0.3971891231286282,0.4043504777393779,0.4044298605414274,0.4029624003038359,0.0,2.774834695947232,65.67930572016616,209.98785804160272,291.4072911821727,APP_public_baseline,45 +100000,95714,50961,480.7342708485697,6975,71.45245209687194,5546,57.29569341998036,2106,21.54334789059072,77.3593554540744,79.73047540731626,63.33143217950936,65.08374767233815,77.09671152766386,79.46996878788063,63.23408961116135,64.98973242118936,0.2626439264105471,260.50661943563114,0.0973425683480186,94.0152511487895,193.69174,135.48408814177157,202365.1085525629,141550.9623897983,370.43605,235.63442022319245,386408.0280836659,245573.99420545748,440.96835,212.4623280634153,456868.7234887269,218914.76110639764,3916.59354,1792.1519394963584,4048054.422550515,1828798.0043125164,1277.33031,568.3023974228547,1317055.75986794,576278.1175406466,2061.86328,865.7692684159895,2111613.912280335,869534.5851253623,0.42908,100000,0,880417,9198.414025116494,0,0.0,0,0.0,30596,319.0024447834173,0,0.0,40102,415.069895731032,1445385,0,51905,0,0,17093,0,0,83,0.8671667676619931,0,0.0,0,0.0,0,0.0,0.06975,0.1625570989092943,0.3019354838709677,0.02106,0.3354645626445381,0.6645354373554618,24.53045296018001,4.252431075845649,0.3218535881716552,0.2565813198701767,0.212946267580238,0.20861882437793,11.360564471714984,6.100470324713163,22.37104210331952,14069.521911158494,63.124964724933896,17.312749313281156,20.164943330604466,12.801082155159325,12.846189925888954,0.574468085106383,0.8046380885453268,0.684593837535014,0.5963699222126189,0.1092294665537679,0.7517594369801663,0.9270833333333334,0.8646288209606987,0.76,0.1417322834645669,0.5048958071805172,0.7213695395513577,0.6224566691785983,0.5453514739229025,0.1003236245954692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027245472592472,0.0053422810627794,0.0079961845616812,0.0111210416201174,0.0136562846364255,0.0159833854235597,0.0188082980783933,0.021272686442235,0.0238801087689885,0.0262901954360712,0.0288981182382197,0.0313273554576361,0.0338594180830486,0.0363799338546657,0.03895447228299,0.0412346623388705,0.0438027994036773,0.0461659734683082,0.0484848484848484,0.0506228907128869,0.0675382173586166,0.0846781789638932,0.0997755260452724,0.1145612079661836,0.1286737179554777,0.1469888184828257,0.1614436862603601,0.1747005270723526,0.1883757468229962,0.2002618784411793,0.2155096234670345,0.2294567265010934,0.2426609796966465,0.2540521609701108,0.2637834741515108,0.2752861325525685,0.2854063351650806,0.2954803721914062,0.3043088378850825,0.3132012331388886,0.3210949707737716,0.328350352668702,0.3355097406053724,0.3416833307389268,0.3472048558421851,0.35280785386103,0.3576408446296922,0.362699835934221,0.3669260347751783,0.3719884483008716,0.3710063468158348,0.3686504771595941,0.3674459142218536,0.3652120042069472,0.3633425737877462,0.3604869628973376,0.3574404949807437,0.3584760470218409,0.3595607169045548,0.3603435066901848,0.3605073821479427,0.3609974095825671,0.361232554229023,0.3623351234748219,0.3652727843061554,0.3671074639347689,0.3682691208414314,0.3729258194001074,0.3760671699710717,0.3784181825418938,0.3826962691691462,0.3857242005231968,0.3896608873023967,0.3963633585453434,0.4010932051644519,0.4034400948991696,0.4047253758821724,0.4108370400323494,0.4129777288974429,0.4165712103856434,0.0,2.523867901933897,68.7115945155816,201.0961395941107,300.43942722740906,APP_public_baseline,46 +100000,95882,51608,485.9097640850212,7161,73.08983959450157,5699,58.78058446840908,2195,22.558978744707037,77.4394230829848,79.72026379604294,63.39129033748679,65.07740535302644,77.16286472728838,79.44246606021551,63.288001889036295,64.97614280868662,0.276558355696423,277.79773582743417,0.1032884484504919,101.26254433981784,193.1996,135.23147047238297,201497.25704511796,141039.47609810287,371.30402,236.91350730501577,386608.55009282246,246446.14975179464,447.58457,216.79684236400252,462212.5007822115,222637.49865065268,4074.43139,1886.3675639852545,4206842.692058989,1924804.5347252404,1366.60757,616.6940929944992,1408593.635927494,626472.4067025087,2140.02518,907.9302575609968,2200726.017396383,919910.6064445344,0.43457,100000,0,878180,9158.966229323543,0,0.0,0,0.0,30675,319.225714941282,0,0.0,40787,420.8297699255335,1447220,0,52047,0,0,17541,0,0,62,0.646628147097474,0,0.0,1,0.0104294862435076,0,0.0,0.07161,0.1647835791702142,0.3065214355536936,0.02195,0.3440531561461794,0.6559468438538206,24.210652911918597,4.238358813994538,0.320582558343569,0.2493419898227759,0.2160028075100895,0.2140726443235655,11.240873655986144,5.993990271013953,23.517576840282008,14252.732923154832,65.23425233344662,17.302092622922395,20.782737390140685,13.681427007391424,13.467995312992114,0.5704509563081243,0.7783251231527094,0.7038861521620142,0.5918032786885246,0.1112916328188464,0.7441300421432872,0.9087779690189328,0.8692307692307693,0.7337662337662337,0.119047619047619,0.4990094105993066,0.6880952380952381,0.6381025248661056,0.543859649122807,0.1092951991828396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028548289127353,0.0055332603672625,0.0083283457937288,0.0109250779274842,0.0140465711933487,0.0168087747502085,0.0192513368983957,0.021797225622195,0.0242021167913039,0.0265144540600257,0.0289042808254267,0.0314378937432024,0.033880017263703,0.0364102405731756,0.0389191306858014,0.0414278781119957,0.0439177305551532,0.0463583707219015,0.048701736900572,0.0512468399862676,0.0692566687167085,0.0862537353979896,0.1017696335078534,0.1168238036242991,0.1314861407922855,0.1500232283132021,0.1651130272663714,0.179271649150399,0.1921362928847097,0.2034272014042749,0.2171566202877357,0.2310302715905283,0.2446105702364395,0.2573533430248445,0.2688496100839227,0.280327269909104,0.2907203621322095,0.3005158056794813,0.3098289871825383,0.3188705785483114,0.3267548674100179,0.3333021821410215,0.3400579435936853,0.3454673949499305,0.3515144890573003,0.3570214129068822,0.3612053107754683,0.3666543757708299,0.3722079871625643,0.3761633578528303,0.3747021525786519,0.3731181169482903,0.3713425189647165,0.3697147481286668,0.3679660110523501,0.3661546942713198,0.3636766755352844,0.3634797164237889,0.3638848552148287,0.3636785465707708,0.3643842290682857,0.3654389814759899,0.3673790069138906,0.3666919778452742,0.3669737978692773,0.3677513558614935,0.3677151706305231,0.3722607141737467,0.3765153897215526,0.381294964028777,0.3831051056497687,0.3853332626332255,0.3890040841972981,0.391105347471203,0.3937440758293838,0.3914081145584726,0.3934782608695652,0.3935577121618831,0.3937954164337618,0.3952779893373953,0.0,2.5655766057081064,72.98339665612652,209.70828756881653,299.19567425010104,APP_public_baseline,47 +100000,95712,51382,484.18171180207287,6946,71.14050484787697,5501,56.628217987295216,2077,21.17811768639251,77.34647984393533,79.69953211129256,63.33814763576003,65.07557196896886,77.08528693659797,79.44226072301954,63.23908817261203,64.98125764390859,0.2611929073373602,257.2713882730113,0.0990594631480021,94.31432506026738,192.88214,135.00512706982946,201523.46623202943,141053.50120134305,370.65442,236.4997252243148,386430.29087261786,246265.32224205404,436.30429,210.97605618685685,450221.6754429957,216144.8207332499,3878.1453,1785.725263122668,3997264.324222668,1811101.631062634,1302.60113,580.9942328942036,1340295.4488465397,586360.7059295112,2044.12702,875.7862593156865,2088032.8067535944,874572.9964841978,0.43333,100000,0,876737,9160.157556001335,0,0.0,0,0.0,30675,319.59419926446003,0,0.0,39723,409.3844032096289,1446762,0,51997,0,0,16993,0,0,60,0.6268806419257773,0,0.0,0,0.0,0,0.0,0.06946,0.160293540719544,0.2990210192916787,0.02077,0.3405777166437414,0.6594222833562586,24.367312111316625,4.213673832650493,0.3132157789492819,0.2579530994364661,0.2203235775313579,0.208507544082894,10.934136892363838,5.612296691274434,22.47380793164385,14198.291705390777,62.71133461881223,17.04228624610017,19.526014164623756,12.842263057798686,13.300771150289622,0.5686238865660789,0.7949260042283298,0.6877539175856066,0.6041848299912816,0.1006600660066006,0.7330703484549639,0.9181286549707602,0.8634453781512605,0.7408759124087592,0.1162790697674418,0.5057788944723618,0.7251655629139073,0.6206896551724138,0.561282932416953,0.0964360587002096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027344541219363,0.0053624466542995,0.0080778559178413,0.0108083947908413,0.0135049931864868,0.0162892979312591,0.0188277268093781,0.0216270833545963,0.0243787756437121,0.0270699169678416,0.0293360940559046,0.0319527841929689,0.0344728319539402,0.0369866823224052,0.0394548137142621,0.042006036300492,0.0444182145741442,0.0468433884940602,0.0490347931848186,0.0516212359515452,0.0683844563696728,0.0848745564731371,0.10108693371383,0.1159892738840107,0.1296380257483577,0.1476363174979117,0.1625222778579309,0.1763716672875312,0.1898508482538462,0.2023666609500943,0.2177255256613158,0.2318216723088071,0.2444702890123148,0.2554591357188135,0.2671144776332714,0.2782077257780582,0.2888705486097944,0.2992350095623804,0.3089749265048069,0.3171681983819586,0.3246524763591328,0.3316171910651393,0.3379689406413248,0.3440695051120818,0.3497434525691219,0.3555854112484747,0.3610599742019511,0.3661582374453662,0.3701675383157922,0.3740496370439911,0.3728783831188105,0.3704469343035514,0.3696023248268371,0.3688201921963644,0.3675781075569712,0.3635442727119242,0.3602427392137911,0.3609336246119479,0.362079583946351,0.3633146880640492,0.3654452029105093,0.3660210884488318,0.3667583860194501,0.3668990562442556,0.3682536622976098,0.3694467728415758,0.3684978958518222,0.3718607216007563,0.3756591436405821,0.3799285997619992,0.383937942048825,0.3870675409136948,0.3911866540761725,0.3954270857230251,0.401819560272934,0.4067837095425773,0.4083665338645418,0.4049079754601227,0.4166197183098591,0.4221782178217821,0.0,3.3197013754024733,65.8629633019985,204.69214262612093,298.35976924733257,APP_public_baseline,48 +100000,95721,51527,485.9330763364361,6991,71.58303820478265,5561,57.31239748853439,2142,21.896971406483424,77.41222784566315,79.76995626105868,63.350809200748486,65.09053074672259,77.14309940210022,79.50362599002109,63.250603232536726,64.99481912012583,0.2691284435629342,266.3302710375888,0.1002059682117604,95.71162659676702,193.06474,135.09102675258112,201695.05124267403,141129.7486994298,372.91318,237.9685550024804,388749.4071311415,247772.46047709373,445.38955,214.79525805171903,460305.9307779902,220568.8634494873,3975.24403,1822.0504358409892,4098998.119534898,1849561.3524971849,1295.22026,569.2400144527727,1335560.6606700723,577140.8806435406,2100.85942,883.3486040788093,2149208.783861431,882463.2014730237,0.43243,100000,0,877567,9167.956874667,0,0.0,0,0.0,30796,320.88047554873015,0,0.0,40486,418.0273921083148,1445225,0,51875,0,0,17280,0,0,71,0.7312919839951526,0,0.0,0,0.0,0,0.0,0.06991,0.1616677843812871,0.306393935059362,0.02142,0.3431547211182678,0.6568452788817322,24.258056338325773,4.29381054350027,0.3200863154108973,0.2427620931487142,0.2184858838338428,0.2186657076065455,11.139852089664927,5.761988142033876,22.7612094517536,14163.944903451697,63.48068106419521,16.3463303605215,20.19516204152921,13.732446826914972,13.206741835229533,0.5574536953785291,0.7859259259259259,0.6769662921348315,0.5838815789473685,0.1020576131687242,0.7282184655396619,0.9147286821705426,0.84,0.7275641025641025,0.0936170212765957,0.4921700223713646,0.7062350119904077,0.617624521072797,0.5342920353982301,0.1040816326530612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027547093376544,0.0052602239902701,0.0079637219494379,0.0109168088390608,0.0135320611230289,0.0161245991754466,0.0186008113011394,0.0211218023938042,0.0236277605747514,0.0263664278403275,0.0291055177502664,0.0318428184281842,0.034398388025331,0.0370526749394984,0.0395814846152258,0.0419763295260737,0.0444007248252653,0.0465642281315169,0.0490216464619159,0.051368864072006,0.0687102600778876,0.0849282672163912,0.1004049347488565,0.1151402301752614,0.1294924554183813,0.1476844600601109,0.1624458690668251,0.1761761761761761,0.1894231694152603,0.2015112809393985,0.2164391537814582,0.2309633400119131,0.2433394667218308,0.2543770324869428,0.2656874951794352,0.2770690037719103,0.2880793221399986,0.2986740866744021,0.3080383003373428,0.3166681955783873,0.3239893432178848,0.3313313664887141,0.3379109495791355,0.343644753400851,0.3498286880664836,0.355848252239376,0.361677380624828,0.3670139771283354,0.3717903986560703,0.375279715677241,0.3743538794087241,0.3727722976032048,0.3699728890699406,0.3679257519203332,0.3658536585365853,0.3627745347578912,0.3602716415088394,0.360188799425109,0.3601265392203551,0.3599694233093934,0.3610629370629371,0.3618586717028643,0.3633283841151007,0.363843118018239,0.3655826233049322,0.3666033859516813,0.3666704571298613,0.3690991160428813,0.3730511859300003,0.376985695092073,0.3792384406165004,0.3817392225399851,0.3850596359070935,0.3892256402485225,0.3889199776161164,0.3988439306358382,0.401333737496211,0.4036494886705434,0.408296943231441,0.4126620900076277,0.0,2.8567296829880195,67.41362373969511,213.0958701136442,292.8099892862094,APP_public_baseline,49 +100000,95719,51458,485.0552136984298,6967,71.36514171690051,5515,56.91659963016748,2132,21.855639946092207,77.32373385663094,79.69330801556117,63.321321634088775,65.07487570153197,77.06093974198609,79.43221598674346,63.22352943828021,64.98034720169277,0.2627941146448478,261.0920288177141,0.0977921958085659,94.52849983919975,193.50166,135.39155246655088,202155.95649766503,141446.89399863232,370.46828,236.62262305796884,386329.71510358446,246497.85628555337,442.78147,213.6232336072592,457777.35872710746,219424.46771825125,3940.56191,1819.3427178085944,4068472.508070498,1852382.5027513816,1325.31502,600.4865043347004,1363760.319267857,606514.092640647,2095.68878,885.4064143925624,2149122.8491731,891605.8343132273,0.43315,100000,0,879553,9188.90711353023,0,0.0,0,0.0,30642,319.38277666920885,0,0.0,40276,415.94667725320994,1442957,0,51914,0,0,17248,0,0,60,0.6268347976890691,0,0.0,1,0.0104472466281511,0,0.0,0.06967,0.1608449728731386,0.3060140663126166,0.02132,0.3460587750617962,0.6539412249382038,24.158758514470502,4.279983813684559,0.3218495013599274,0.2411604714415231,0.2197642792384406,0.2172257479601088,11.352585105009124,5.922279728282541,22.72759762864129,14153.989586317966,63.34830032216891,16.19200130177754,20.247762271561623,13.464399639396488,13.444137109433246,0.5771532184950136,0.8007518796992481,0.6963380281690141,0.6018363939899833,0.1328382838283828,0.7406451612903225,0.9154929577464788,0.8736842105263158,0.7483221476510067,0.1964285714285714,0.5132408575031526,0.7322929171668667,0.6315384615384615,0.5533333333333333,0.1137339055793991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029381965552178,0.005597979859442,0.0084754364596021,0.0110155884803772,0.0135011395083835,0.0159215230877364,0.0187655529718924,0.0213761196163941,0.0239894470974405,0.026381279123355,0.0290941534801201,0.0316524596898428,0.0339588091270086,0.036479050308114,0.0390891918952116,0.0417549699682625,0.0440587035099893,0.0466674966799468,0.0490148167403171,0.0515369386266541,0.0691649873134873,0.0856795964078625,0.1010343670009651,0.1157722003660614,0.1299455879871773,0.1479672217816547,0.1620606613551734,0.1755873840129394,0.1883003834364019,0.2005211684467893,0.2155486163454291,0.2298096999989181,0.2426051589890817,0.253474614265875,0.2650492380480827,0.2767821540915334,0.2872804327217978,0.2976660036633741,0.3076574124478316,0.3152666514076447,0.32288006288145,0.3306021786899808,0.337456394489446,0.3433261442607237,0.3494814311044181,0.3547623742851508,0.360383594571586,0.3653277978707147,0.3698123970906639,0.3746138206015156,0.3738830410933056,0.3715935876052765,0.3704435444038328,0.3688678971921996,0.367008681925809,0.3638706905810331,0.3613034042485782,0.3622040776092921,0.3628181041844577,0.3629867809932118,0.3629740893728877,0.3634993654822335,0.364354308819813,0.3639286758257819,0.3646350020566672,0.3667811901702116,0.366600591800971,0.3700707464864693,0.3745041088126948,0.3786290808336345,0.3812485602395761,0.3833279517812937,0.3892146863844977,0.3913445961582967,0.3970324165957849,0.4035633146000239,0.4074130567419158,0.4111922141119221,0.4122662266226622,0.4161514683153013,0.0,2.7010347246373385,68.06539988464303,212.63183924078012,289.4073445309762,APP_public_baseline,50 +100000,95770,51118,481.9567714315548,6894,70.63798684347917,5491,56.63568967317532,2179,22.313876996971917,77.38153749659537,79.72266071831304,63.350937847410606,65.08262554138948,77.10763179760482,79.45095147854136,63.24868944079161,64.98397263609823,0.2739056989905464,271.70923977168115,0.1022484066189974,98.65290529124592,192.36932,134.6324700360438,200865.94967108697,140578.96004598914,371.50083,236.6680756478459,387202.1405450559,246414.0499612048,438.52081,211.3978825210428,453056.1449305628,217078.8292198152,3922.30408,1809.7593463865117,4048339.98120497,1842487.6959241023,1329.76552,592.3090620096133,1370954.5577947164,600925.8870310246,2132.41014,904.280193931581,2186099.885141485,909792.865744866,0.4315,100000,0,874406,9130.270439594862,0,0.0,0,0.0,30726,320.08979847551427,0,0.0,39855,411.4545264696669,1451248,0,52225,0,0,17129,0,0,72,0.741359507152553,0,0.0,1,0.0104416831993317,0,0.0,0.06894,0.1597682502896871,0.3160719466202495,0.02179,0.335354927636113,0.6646450723638869,24.119849039647143,4.21297466544094,0.3097796394099435,0.2500455290475323,0.2179930795847751,0.222181751957749,11.277756801915034,6.03014839671251,23.46380546708365,14047.932048997818,63.02687932259405,16.824042415182905,19.38198545408405,13.683026619117964,13.137824834209122,0.5762156255691131,0.7982520029133284,0.6990005878894768,0.6024590163934426,0.1203007518796992,0.7365384615384616,0.9210526315789472,0.8347107438016529,0.7331081081081081,0.1532258064516129,0.5125922157211905,0.7205707491082045,0.6450287592440427,0.5606060606060606,0.1116965226554267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026028479410156,0.0053013562551949,0.0079948054056247,0.0105521871159724,0.0135530837586676,0.0156967334100186,0.0183267419578423,0.0208309943967584,0.0236669459829548,0.0262756694258848,0.0287749141773838,0.0310200059535418,0.0337045148421193,0.036150780984545,0.0385460396703421,0.0410200243846996,0.0437842145022921,0.0462433138450055,0.0484505988801512,0.050609057782405,0.0668600707525019,0.0832914993306559,0.0984610223508198,0.1136342142594441,0.1281494673171965,0.1469304503133487,0.1624754940920892,0.1764105508244825,0.1893983052656293,0.2016722049522993,0.21631950051133,0.2297708024617914,0.2425543478260869,0.2550549762825977,0.2657726537661852,0.2764970325095225,0.2873968324782511,0.2962992117129781,0.3056579798277759,0.3136404221708372,0.3213496407206415,0.3283541934729208,0.3347104992127662,0.3406244381854137,0.3465388633768253,0.3509217271293375,0.3567372870757147,0.3617622356264793,0.3667046573071543,0.3708204681603462,0.3702830823928677,0.3671786825226416,0.3658443701603689,0.364545349308329,0.362942235849197,0.3603421318863239,0.3573871192451396,0.3570784046724525,0.3568601358037329,0.3578261645547028,0.3580746738641475,0.3601535599794198,0.360809166072103,0.3629448458466095,0.363454589255601,0.3647317111418938,0.3646746423778659,0.3683614753325158,0.3725049987722313,0.376052088296014,0.3785151087006062,0.38166231830041,0.3839336582895487,0.384391291015026,0.3852715382428205,0.3910508151850529,0.3967283290016817,0.3978168587022437,0.4014376555156206,0.3955538520505941,0.0,2.689642275886949,68.37382341262888,209.14261042152708,288.4077145572928,APP_public_baseline,51 +100000,95859,51836,489.2289717188788,7048,72.11633753742477,5601,57.86624104152975,2212,22.68957531374206,77.37299817448195,79.67366538838867,63.35320242165369,65.05676258077486,77.09514737693908,79.3959854430514,63.24974956095849,64.95603962469991,0.2778507975428681,277.6799453372689,0.1034528606951994,100.72295607494652,193.45172,135.48309312339666,201808.1557287266,141335.39633307088,374.0764,238.4584433255101,389570.1081797223,248095.29574668757,448.9561,216.73232704816695,464935.7598138933,223489.2079665776,3975.05043,1827.4304310745065,4108214.481686644,1867956.0186796517,1322.02264,591.9889200799481,1366816.6160715218,605294.3868034055,2161.07914,911.8630587672571,2217923.8047549007,920138.2175670489,0.43439,100000,0,879326,9173.09798766939,0,0.0,0,0.0,30783,320.5124192824878,0,0.0,40760,421.7965970853024,1441391,0,51877,0,0,17027,0,0,70,0.7198072168497481,0,0.0,1,0.0104319886499963,0,0.0,0.07048,0.1622505122125279,0.3138479001135074,0.02212,0.3471074380165289,0.6528925619834711,24.08464930742936,4.325627433271774,0.3163720764149259,0.2556686306016782,0.2208534190323156,0.2071058739510801,11.184183903073098,5.78521694857483,23.70203929812414,14187.624555273753,64.12399423116526,17.337537408953025,20.124901767956032,12.972996140467574,13.68855891378862,0.56971969291198,0.7905027932960894,0.6952595936794582,0.596551724137931,0.1091350040420371,0.7244701348747592,0.9045871559633027,0.8400852878464818,0.7666666666666667,0.1245421245421245,0.5101384767556875,0.7204058624577226,0.6431312356101304,0.5449438202247191,0.1047717842323651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116467490378,0.005300657768048,0.0080034082955479,0.0107121824421745,0.0135209320293597,0.0159100162866449,0.0184379236186845,0.0209819469532294,0.0233679714720698,0.0258763582785929,0.0284104297935556,0.0309643263873926,0.0337289964544473,0.0360877799736495,0.0386066553956537,0.0411412992967564,0.043225012156388,0.0459156710154088,0.048060147877378,0.0504510315982229,0.0667473070626388,0.0835162079127218,0.0991545931676042,0.1145764420502157,0.1289388322520852,0.1472697886185732,0.1615501181557112,0.1762623201811744,0.1895073917916422,0.2020232328861074,0.2172209665267463,0.2309164225251619,0.2436401982953557,0.2555746328233506,0.2668559730568579,0.2784308077506841,0.288630225654532,0.2985706246482836,0.3090061054495109,0.317444497903636,0.3255235450653708,0.3320616493663035,0.3394747436474293,0.3460316699231627,0.3521036070513054,0.3575118036464946,0.362138731944427,0.36726976406626,0.3719140002332724,0.3749917405611132,0.3730306463796266,0.3711570555701143,0.3693022861502811,0.3673058248909372,0.3656793101907697,0.3633811459691647,0.3609145432043918,0.3615625,0.3611938255125441,0.3619927322198951,0.3628428225488539,0.3644952365861871,0.3653959190528172,0.3667562122229684,0.3692426100969286,0.3710489912040299,0.3742341826510163,0.3782828282828283,0.3838618745595489,0.3878693994280267,0.3920410666424385,0.395097830710336,0.3984073816596094,0.4030549585508136,0.4042896460093005,0.406827880512091,0.4085027726432532,0.4128780086401974,0.4112227805695142,0.4175613496932515,0.0,2.1327575607331477,68.90150160639442,212.5562299104818,299.59504013435566,APP_public_baseline,52 +100000,95775,51666,487.4654137300965,6912,70.86400417645523,5456,56.21508744453145,2090,21.341686243800574,77.39816222968327,79.7277064467718,63.35848721039546,65.07982503106679,77.14013824007196,79.47343994429315,63.2606183111012,64.98619074231176,0.2580239896113028,254.26650247865723,0.0978688992942622,93.63428875502676,192.61308,134.8305228305546,201109.9765074393,140778.41068186334,371.55956,237.1057960633756,387205.1579222135,246820.12640394212,439.56597,211.9949581767065,454389.8512137823,217790.0203468943,3855.92177,1787.0027005435788,3974183.586530932,1814393.8538973548,1267.92633,570.490465344985,1301592.7120856172,573626.451000193,2037.93382,867.7954726931832,2082788.5982772124,867506.2529860632,0.43465,100000,0,875514,9141.362568519968,0,0.0,0,0.0,30697,319.72853040981465,0,0.0,40008,413.0931871574001,1448478,0,52070,0,0,17212,0,0,69,0.7204385277995301,0,0.0,0,0.0,0,0.0,0.06912,0.1590245024732543,0.3023726851851852,0.0209,0.3347181830771361,0.6652818169228639,24.35423742719663,4.18156928906722,0.3229472140762463,0.251099706744868,0.2060117302052786,0.219941348973607,11.157378969317838,5.886698790357179,22.26799205039193,14202.995967754008,62.35743602732919,16.633447814277186,19.93487391518035,13.56237394224818,12.22674035562347,0.5762463343108505,0.7824817518248175,0.7116912599318955,0.5766666666666667,0.1120996441281138,0.7251275510204082,0.9061913696060038,0.8648068669527897,0.6955128205128205,0.1322957198443579,0.5162037037037037,0.7037037037037037,0.6566358024691358,0.5349099099099099,0.1061130334486736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025824876952056,0.0054524079779471,0.0080854603741427,0.0105106019985376,0.0131957505210186,0.0157347283571152,0.0182401793447801,0.0208239807370526,0.0232838504684355,0.0257622263147125,0.0283990205821184,0.0308565330268545,0.0336053275234826,0.0358892548373816,0.0383723207934266,0.0408981058806518,0.0434071959116959,0.0460503121176299,0.0484499547925132,0.0510377289720599,0.0683354897950665,0.0845256024096385,0.1001142785250731,0.1149274280849632,0.1291325799106013,0.147615674915695,0.1622349734310533,0.1763297362875933,0.18926770913441,0.2018959582202872,0.2161661424447412,0.2303173882001687,0.2434878995012008,0.2547560509206141,0.2662459735491034,0.2784455660335591,0.2893380630479887,0.2985014175779668,0.3078826400317803,0.3159890915757631,0.324841795948588,0.3326704877763481,0.3403723618447545,0.346727582320071,0.3520034991373654,0.3571076498422713,0.3624454148471616,0.3667056788113169,0.3717002150203362,0.3755972020588623,0.3748215007409403,0.372906776745786,0.3709456887924108,0.3696066815016039,0.3686326878848579,0.3660793490563152,0.3640260685247872,0.3648260819653312,0.364865095774311,0.3644703026841804,0.3656509695290859,0.3667794062382563,0.3672058330539725,0.3696972403322318,0.370023250796999,0.3712835199166883,0.371014410529899,0.3747455450815821,0.3788603133614823,0.3833234772324068,0.3866026105873821,0.3897217400452369,0.3931171821519696,0.3981229185588859,0.3987081070960494,0.4035879767137935,0.4052535681749165,0.4101270929997982,0.4090909090909091,0.4234713254842385,0.0,2.884127908686129,68.5615163923401,200.22714899340733,289.63397230360414,APP_public_baseline,53 +100000,95862,51345,484.63416160731055,6949,71.08134610168784,5460,56.21622749368885,2104,21.478792430785923,77.3584022892406,79.64352945212899,63.35300198276878,65.04278280096152,77.09293371318572,79.37999658766499,63.25532339156413,64.94870872574647,0.2654685760548858,263.53286446399693,0.097678591204648,94.07407521504751,192.9114,135.06295764197085,201238.65556737813,140893.11472947657,369.86254,235.9466711201056,385081.7633681751,245385.2528844649,436.37234,210.44000692584493,450810.6653314139,215991.02980640857,3843.34198,1775.513255739028,3961396.455321191,1804616.5726373184,1269.71993,570.3727256467666,1307201.258058459,577665.8797508562,2060.97378,867.5225535125786,2107726.961674073,868715.9733687761,0.43301,100000,0,876870,9147.211616699004,0,0.0,0,0.0,30583,318.27001314389435,0,0.0,39754,410.2459785942292,1447562,0,52049,0,0,17155,0,0,62,0.6467630552252196,0,0.0,1,0.0104316621810519,0,0.0,0.06949,0.1604812821874783,0.3027773780400057,0.02104,0.3394596077355644,0.6605403922644356,24.342073037349696,4.209690298273967,0.3225274725274725,0.2562271062271062,0.2137362637362637,0.2075091575091575,11.558906523291355,6.169401947990101,22.58608355492199,14151.054134321486,62.66150714172311,16.95536283378171,20.019803685431683,12.795952333171815,12.890388289337892,0.5787545787545788,0.7869907076483202,0.7058489494605338,0.6063548102383054,0.1105398457583547,0.7496798975672215,0.9197761194029852,0.8776371308016878,0.7448979591836735,0.1666666666666666,0.5102616726526423,0.7045191193511008,0.6425796425796426,0.5578069129916567,0.0946094609460946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026931527098583,0.0050359201953572,0.0077390431175259,0.0104884809471108,0.0132547265704411,0.0158458767135834,0.0185724764660336,0.0212351471263195,0.023799556885127,0.0261298929655792,0.0287243952624197,0.0311045498349428,0.0333887930326185,0.0359001789865657,0.0383140972794723,0.040482778557859,0.0431351049414003,0.0454248670832944,0.0477901470466063,0.0500296495115633,0.0673108998415478,0.0836537256049145,0.0987318176582086,0.1137537802419354,0.1273160095642373,0.1455267633605527,0.1607973633174722,0.1745783619387907,0.1887662517879635,0.2018074226538882,0.216641719522307,0.2305154416139326,0.2431947645345045,0.25545498272771,0.2665405803635244,0.2785364881914163,0.2892973045311088,0.2982876288775705,0.3080649369802716,0.3166403152998327,0.3245135826475456,0.3324323375574823,0.3392529232664763,0.3450154174715347,0.3503132031867664,0.3559616950909495,0.361705595466456,0.3665004908773316,0.3705555411266654,0.3736633139227104,0.3722747951455917,0.3697154443509565,0.3686810937477943,0.3672591369345095,0.3657457081545064,0.3633346649048951,0.3610210954377938,0.3620445410819002,0.3629041931559196,0.3638639981399009,0.3644573788959819,0.365950786543567,0.3665272494167595,0.3681767212379457,0.3689074413666634,0.3694535020216512,0.3713959463317157,0.3749606695613869,0.3780659217091854,0.3814010814249364,0.3840745137430371,0.3852202093183871,0.3893771735693961,0.3903644224830142,0.391982395713739,0.3962241316713058,0.396078431372549,0.4004106776180698,0.3993876983022544,0.4063944530046225,0.0,2.8859450143676133,68.36742860864106,204.04313941968064,289.4603864999583,APP_public_baseline,54 +100000,95731,51316,483.9811555295568,6936,71.1472772665072,5445,56.272262903343744,2118,21.748440943894877,77.38965647392791,79.75384814038789,63.34469261111818,65.09286725876021,77.1213219739995,79.48437655553967,63.24532470957429,64.99478603011573,0.2683344999284145,269.471584848219,0.0993679015438928,98.08122864447456,194.66348,136.1628263580252,203344.2458555745,142234.83130649963,369.90575,236.02123375907223,385793.4524866553,245938.52958714752,441.41456,213.32426628659385,456326.5608841441,219214.6348821043,3818.8279,1767.0410021814137,3952152.468897222,1808868.7908633729,1250.83149,563.2825079925301,1291861.9360499734,573652.5973744447,2061.27084,866.3032978838419,2119661.384504497,880534.2664122104,0.43219,100000,0,884834,9242.920266162477,0,0.0,0,0.0,30635,319.37407945179723,0,0.0,40185,414.9752953588702,1439893,0,51778,0,0,17247,0,0,61,0.6372021602197826,0,0.0,0,0.0,0,0.0,0.06936,0.1604849718873643,0.305363321799308,0.02118,0.3490683229813665,0.6509316770186335,24.16148881638807,4.276483824902366,0.3162534435261708,0.256198347107438,0.2102846648301193,0.2172635445362718,11.376099149444972,6.061280339670922,22.65255198355548,14142.935023271277,62.26163995629657,17.055608789840633,19.51739443123923,13.080591066230664,12.608045668986051,0.5797979797979798,0.814336917562724,0.705574912891986,0.5832628909551987,0.1013100436681222,0.7509702457956016,0.936247723132969,0.8731182795698925,0.7446808510638298,0.124,0.5119261349063863,0.735224586288416,0.6435958631662689,0.532741398446171,0.0949720670391061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026233692569483,0.0051904341919852,0.0077938684175808,0.0107889550358615,0.0136104244865574,0.0161500549875768,0.018760004486088,0.0214881432406774,0.0238061166080628,0.026491150850112,0.0288956313167551,0.031373515250444,0.0337291184785402,0.0364520048602673,0.0388641919280476,0.0411740388590326,0.0435728042744424,0.0459591243904969,0.0484005071816084,0.0509694829077193,0.0691458818370692,0.0852268564550735,0.1005067301740508,0.1152349092133224,0.1292088607594936,0.1466494627295033,0.1610120942075111,0.1748550146315509,0.1876007730830423,0.1993222956163678,0.2148317219698111,0.2291741035210125,0.2434709809293931,0.2539366634590149,0.2653764056070242,0.2770184959574703,0.2872869635049522,0.2973474204788131,0.3069132890290095,0.3153147997665182,0.3234732714042779,0.3309126204509308,0.3378039549626265,0.3437339050653379,0.3492111687333762,0.3542244407469033,0.3591887831747621,0.3642531632679039,0.3695640912740552,0.3737476404820676,0.3720319465582028,0.3707625368325393,0.3692509299966182,0.367632815323455,0.3657392285536122,0.3633831272192971,0.3606207289293849,0.3606785772824127,0.361344251689678,0.3632707536257674,0.3637092862739245,0.3642631993695823,0.3668711912513565,0.3678486260001337,0.3690667305618785,0.3715496179237927,0.3744003179379453,0.3787417156139083,0.383909420162453,0.3865321744677458,0.388593190786455,0.3903840988450174,0.3914586237485743,0.3948465327775672,0.3954312354312354,0.4009906828635452,0.4074468085106383,0.4112093210124548,0.4106214070626882,0.4170815779394868,0.0,2.40625943412279,67.7368620378217,207.0887944418072,284.55961318771665,APP_public_baseline,55 +100000,95747,51318,484.6209280708534,6913,70.60273428932499,5430,55.98086624123994,2157,22.026799795293847,77.34687979821054,79.70563644009486,63.33382307926016,65.08106399281428,77.08097385543319,79.44141641567118,63.233891609852016,64.98420295978059,0.2659059427773513,264.220024423679,0.0999314694081405,96.86103303369008,193.5945,135.4751464361378,202193.8024167859,141492.83678458628,370.47517,236.44978808139408,386171.1176329284,246200.83010552177,432.91243,209.6340995444137,446829.6447930484,214937.84067283277,3845.99214,1779.053847862614,3964951.2569584423,1807276.636643442,1280.86134,578.1210596448146,1315480.6521353151,582659.3879161606,2105.1192,894.4731710221533,2151259.1517227693,897123.5263697902,0.4332,100000,0,879975,9190.627382581177,0,0.0,0,0.0,30649,319.3102655957889,0,0.0,39381,406.1432734184883,1445516,0,51988,0,0,17000,0,0,73,0.7415375938671708,0,0.0,0,0.0,0,0.0,0.06913,0.1595798707294552,0.3120208303196875,0.02157,0.3438276719138359,0.656172328086164,24.240655051784486,4.243802721822824,0.3147329650092081,0.2552486187845303,0.2186003683241252,0.2114180478821362,11.367318670608029,6.088788276547257,23.163302694916023,14105.810336126746,61.81245447429665,16.656534337054996,19.30542687103323,12.918682624000946,12.93181064220747,0.5756906077348066,0.7929292929292929,0.7056758338209479,0.578397212543554,0.1322662173546756,0.7584605175846052,0.9262135922330096,0.8687089715536105,0.7482993197278912,0.2033195020746888,0.5054804996176395,0.7141216991963261,0.6461661341853036,0.5199063231850117,0.1141649048625792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028677394511774,0.0058106518476453,0.008,0.0104373100805918,0.0130625864735085,0.0158143418667644,0.018350494443878,0.0211821151490404,0.0238289955224796,0.0264262603923495,0.0290863979823041,0.0318606059983777,0.0341930441578741,0.0365280810911038,0.0386500851437122,0.0410192794748539,0.0434521467183066,0.0455314072306654,0.047942784673278,0.0503483250200456,0.0666235243771331,0.0832444193393167,0.0985646735654599,0.1136217931875269,0.127646569076902,0.1454687632090624,0.1599872807249986,0.1740239857106404,0.187437995370321,0.1996315022709743,0.213579489827755,0.2276996573750824,0.2405141689847009,0.2522336544552941,0.2638264672593211,0.2751452764403121,0.2858083084199723,0.2963087927660436,0.3056548936798247,0.3143341698465628,0.3220132922677906,0.3298553779495287,0.3374908203633951,0.3434609986925596,0.3491186082392817,0.3549245129670221,0.3601497545827907,0.3654969643743556,0.3704615225191383,0.3748548812664907,0.3728035331977863,0.37049582111336,0.3679901933156738,0.3669975293658706,0.3660406513728753,0.3634288340738471,0.3609707415210607,0.3611563049516015,0.3616256991840714,0.3625462408635202,0.3639177578508986,0.3647005228965299,0.3647641638153613,0.367377604341878,0.3677095403630745,0.3684941922965993,0.3715006160634975,0.3768299638760378,0.3813792616644314,0.386749151865895,0.3911826773098449,0.396050173472111,0.3991756499682942,0.3998470363288719,0.4040015029118918,0.4047703809184763,0.40914671577655,0.4088386433710175,0.4087570621468926,0.4058144165671047,0.0,2.724360673233131,65.595907656803,203.6042344006617,291.081368892604,APP_public_baseline,56 +100000,95734,51288,484.8329747007333,6888,70.39296383729919,5398,55.59153487789082,2090,21.319489418597364,77.36211040614715,79.72267379295677,63.32787542470121,65.0753663597536,77.0963359903313,79.4618299036818,63.22822773283299,64.98119085269519,0.265774415815855,260.84388927496605,0.0996476918682205,94.17550705840938,192.71098,134.86864803931758,201298.13859234963,140878.32861661678,371.49185,237.47004963182863,387247.4356028162,247254.839427491,440.13916,212.2637645102619,454597.8440261558,217807.9457909394,3797.51992,1759.9495557711844,3914105.2813002695,1786193.1028701123,1290.00317,578.8509988867374,1330280.2243716966,587560.134881604,2034.80484,858.815662132344,2078419.6001420603,857196.2946019022,0.43292,100000,0,875959,9149.915390561348,0,0.0,0,0.0,30629,319.1029310380847,0,0.0,40046,413.1447552593645,1446967,0,52005,0,0,16953,0,0,80,0.835648776819103,0,0.0,0,0.0,0,0.0,0.06888,0.1591056084264991,0.3034262485481998,0.0209,0.3430788416239435,0.6569211583760566,24.369384669479462,4.17566771240975,0.3130789181178214,0.2534271952575028,0.2041496850685439,0.2293442015561319,11.432164816011856,6.171209701651619,22.367744733709348,14165.063220194355,62.02730881094144,16.741570282453285,19.38356523769201,13.720200416424982,12.18197287437115,0.5802148944053354,0.8026315789473685,0.6958579881656805,0.5920840064620355,0.1134301270417422,0.7504749841671944,0.9254545454545454,0.8690228690228691,0.7272727272727273,0.1416666666666666,0.5098193244304792,0.7200488997555012,0.6269644334160464,0.5473118279569893,0.105568445475638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027760047820228,0.0054353337254345,0.0078367678408283,0.010496154119715,0.0130715629927267,0.0158165967327983,0.0181102522790773,0.0204606714040676,0.0230268203151361,0.0256313105453949,0.0280278945749153,0.0305287054062105,0.0329739295047223,0.0353576470830714,0.0380554265366155,0.0404057113907298,0.0426858314520638,0.04506261867458,0.0474235163258729,0.0497630084900255,0.0671468838083307,0.0834754585500088,0.099931826524726,0.1145528746029408,0.1282397493644447,0.1465878321204941,0.1614891675684851,0.176229464561396,0.1893252123737778,0.2016171408349508,0.2164022360810417,0.2291732057623413,0.2423480768184538,0.2541710884763082,0.2656305036984854,0.2774668956728904,0.2881282108554835,0.2985978258423173,0.3081540486564996,0.3173955875277784,0.3250315514027348,0.3327559976594499,0.3383456866134647,0.3446906530058906,0.3511391943617474,0.3566547428148514,0.3624243487413385,0.3667562644110116,0.3714207940684667,0.3759674564809678,0.3740879111986296,0.3727638578792138,0.3703860361503538,0.3693271414724476,0.3673396568642026,0.3653000229902675,0.3629750546768518,0.3638095863858865,0.3637279683016806,0.363774190671542,0.3632143458809876,0.3645005423528251,0.3658250883761792,0.3665609930344704,0.3683250096043027,0.3715929503032827,0.3725456718456548,0.376644581907244,0.3792680791455086,0.3825508669147336,0.3855235673417491,0.3896755785691641,0.392890786912014,0.3940745219560124,0.3948153674002237,0.3986038807382868,0.4034687357371063,0.4074147897149691,0.4197396963123644,0.4269096549050019,0.0,3.077506853226263,68.97847517575092,200.6926220258204,281.4702057847293,APP_public_baseline,57 +100000,95752,51376,484.98203692873255,7038,72.02982705322083,5553,57.3147297184393,2139,21.93165678001504,77.32840490063373,79.6887027587791,63.31625382636724,65.0646490517119,77.05166873741216,79.41380484817233,63.21361575730542,64.96594300194226,0.276736163221571,274.89791060676794,0.1026380690618182,98.70604976963192,193.402,135.43009238743076,201982.20402706997,141438.39542508853,369.35828,235.31092599612157,385090.1391093659,245095.8267149736,442.52522,213.7867749995519,457795.53429693374,219939.3013215331,3946.3029,1818.8247153798457,4076460.878101763,1854597.9565751576,1317.56731,590.4608295736032,1354536.1036845185,595173.4371188432,2101.20064,888.4232367314379,2156357.569554683,894227.5558800902,0.43279,100000,0,879100,9181.009273957725,0,0.0,0,0.0,30471,317.53905923636063,0,0.0,40250,416.1375219316568,1443504,0,51949,0,0,17043,0,0,73,0.7414988720862228,0,0.0,0,0.0,0,0.0,0.07038,0.1626192841793941,0.3039215686274509,0.02139,0.3341923233419232,0.6658076766580767,24.297065851190744,4.299659705401861,0.3167657122276247,0.2454529083378354,0.2195209796506393,0.2182603997839006,11.18113278318638,5.775085781574881,23.100104650122145,14152.942982675346,63.78068571921681,16.64963821743463,20.145887807792647,13.54752498809374,13.437634705895798,0.5757248334233748,0.7872340425531915,0.7106310403638431,0.5981848184818482,0.1222313371616078,0.7386075949367089,0.9248554913294798,0.8722109533468559,0.705685618729097,0.1710037174721189,0.5109489051094891,0.70260663507109,0.6477093206951027,0.5629791894852135,0.1084210526315789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003029903833487,0.0056390596158137,0.0083357023920724,0.0110876237321896,0.01358059856361,0.0160935462842242,0.0183757546092347,0.0210113632883089,0.0237793408031405,0.0263788232403881,0.0289381156909577,0.0312551338919007,0.0338348571017205,0.0363701910696812,0.0387496904152563,0.0410981559579922,0.0435390205273128,0.0458085726434564,0.0479901899654986,0.0503473487965171,0.0680862167945305,0.0843217236690722,0.0998636887910244,0.1149968990781327,0.1293296943001359,0.1475065006447794,0.1627482794091135,0.176896305835524,0.189399927367499,0.2014755715695105,0.2163507109004739,0.2299635356366115,0.2438581220759438,0.2562669524892816,0.2672038926869007,0.2789200806505218,0.2898091304833128,0.2994033547225037,0.3091633828088624,0.3173267610477446,0.3248080953097683,0.3314101138717568,0.3392095535968155,0.3451268998967512,0.3507547100964521,0.3556463155816593,0.3604306796506374,0.3656060702671683,0.3703896036454749,0.3741341018454867,0.3729753806284419,0.3705077640179827,0.3678367116321774,0.3656254977771985,0.3643083893467666,0.3621235402581438,0.3595628762488683,0.3602855117616999,0.3600487085377148,0.3607964728654383,0.3612055844717112,0.3612597613667895,0.3616195927952863,0.3626740822138997,0.3636429398148148,0.3650860040780049,0.3672786547700755,0.3713448449710108,0.3746793632945641,0.3786268656716418,0.3808806753365275,0.3820552228522974,0.3846588058203713,0.388724485924577,0.3890403233386596,0.3891520606347702,0.3911642890013805,0.3907597535934292,0.3900868104172501,0.3981042654028436,0.0,2.635219082184931,69.40175334153149,213.7286033018934,288.394858581643,APP_public_baseline,58 +100000,95726,51297,484.96751143889855,6921,71.01518918580115,5455,56.358774000793936,2134,21.90627415749117,77.31464774318667,79.68017862426935,63.30648041847581,65.05584991302557,77.04363848088924,79.40882237892967,63.205731984173525,64.95758054739399,0.2710092622974258,271.3562453396748,0.1007484343022824,98.26936563158029,191.60548,134.17714134311677,200160.33261600815,140167.9181655107,369.0385,234.64103743077445,384903.119319725,244505.04296719225,439.07762,211.63460169583493,453954.3175312872,217549.89958026467,3913.76573,1800.3507346296844,4047355.117731859,1839579.805517504,1293.38281,578.4119469440896,1336581.2631886844,589688.1901929355,2095.24092,883.3834442862739,2152551.7623216263,891612.3737622877,0.43159,100000,0,870934,9098.19693709128,0,0.0,0,0.0,30441,317.36414349288594,0,0.0,39884,412.145080751311,1451850,0,52190,0,0,17185,0,0,59,0.5954495121492593,0,0.0,0,0.0,0,0.0,0.06921,0.1603605273523483,0.3083369455281028,0.02134,0.3375103277334068,0.6624896722665933,24.46671012905396,4.292214045664078,0.3162236480293309,0.2438130155820348,0.2203483043079743,0.2196150320806599,11.295676149414712,5.9628776270628965,22.84365308474802,14129.13276342534,62.38548062714453,16.25273834680659,19.501811542854387,13.306520298021296,13.324410439462254,0.5682859761686526,0.8090225563909774,0.6904347826086956,0.5742904841402338,0.1206322795341098,0.7506596306068601,0.9198473282442748,0.8652173913043478,0.75,0.1814516129032258,0.498095963442498,0.7369727047146402,0.6268774703557313,0.5196936542669585,0.1048218029350104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002755406979689,0.0058196713000983,0.008394405083335,0.0108423940656437,0.0136019126100005,0.0162394555605362,0.0189755256526662,0.0214412611545608,0.0239713774597495,0.0260229517930448,0.0284829594389533,0.0311322401453933,0.0333686495160311,0.0360638845955692,0.0383988108755341,0.0406082974082229,0.0430780063995692,0.0453564387257445,0.0476012227837045,0.0498926926843498,0.0675952221850985,0.084122714284219,0.0999905580209612,0.1153890647512278,0.1292367072321937,0.1475090718661066,0.1622898267663043,0.1761968651503535,0.1892738409569521,0.2013050430900329,0.216642398748854,0.2302532482309467,0.2428303695955369,0.2548499528705145,0.2660469527054594,0.2774291711553625,0.2878306404690507,0.2972765630993479,0.3067925816361361,0.3148673644060981,0.3229821590144537,0.3304451817894033,0.3368045259924329,0.3434133570321976,0.3496879524081801,0.35514883743891,0.3598306973715516,0.3647265505652307,0.3692980979633058,0.3740073345117801,0.3727761242272831,0.3711843879882194,0.3689213739490473,0.3665279343333622,0.3646509136360931,0.3612001656670399,0.3592949277316791,0.3608335665256539,0.3610901740441277,0.3612701252236135,0.3620149071588157,0.3639225469232597,0.3654559553999958,0.365670306067657,0.3664780252859723,0.3669528456981811,0.3687809343976196,0.3715762599678507,0.3740374811012271,0.3785537946961854,0.3821889000640029,0.386225306994127,0.3877161749745677,0.3883756735950731,0.3946892547825259,0.4011753418085872,0.4059882097424759,0.408515057113188,0.4130008405715887,0.4172888015717092,0.0,2.4412874610950674,66.75505577622475,209.7637854309315,286.77404328810576,APP_public_baseline,59 +100000,95806,51533,485.8463979291485,7008,71.61346888503851,5542,57.15717178464814,2190,22.420307705154165,77.3504688262772,79.68241168926866,63.33176974345843,65.05994567499985,77.0704464162956,79.40273881929784,63.22821752542214,64.9591467937845,0.2800224099815978,279.672869970824,0.1035522180362917,100.7988812153542,193.2502,135.204220146346,201709.91378410536,141122.91521026447,371.74488,237.23005705698665,387358.9754295138,246955.63644968643,440.94386,213.3732249934576,455434.951881928,219091.8420643621,3946.3684,1826.31750837378,4072000.01043776,1859141.8474560876,1328.66505,591.3183485188724,1371619.1365885227,601994.3725015888,2147.31956,912.3389476187132,2200478.02851596,919717.3961574452,0.43346,100000,0,878410,9168.632444732062,0,0.0,0,0.0,30652,319.2493163267436,0,0.0,40205,414.9218211803019,1443637,0,52017,0,0,17060,0,0,70,0.7202054151097008,0,0.0,1,0.010437759639271,0,0.0,0.07008,0.1616758178378627,0.3125,0.0219,0.3381069285324604,0.6618930714675395,24.06273938029446,4.211204738655975,0.3231685312161674,0.2441356910862504,0.2206784554312522,0.2120173222663298,11.21308568835802,5.9098814995081,23.6204895247874,14160.49880749084,63.671889163460655,16.407014558571756,20.65796019682423,13.113249367980153,13.49366504008451,0.567304222302418,0.7930524759793053,0.7040759352317141,0.5608510638297872,0.1234668847097301,0.7424812030075187,0.9182509505703422,0.8609523809523809,0.7508896797153025,0.1477272727272727,0.4964521033958439,0.713422007255139,0.6390205371248026,0.5011185682326622,0.1167883211678832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028871284721518,0.0056579094126116,0.0081092053181772,0.0107291994757322,0.0131822527819028,0.0160110814609602,0.0186120034674417,0.0213728453557715,0.0243037094597357,0.0269537088221444,0.0294187012294535,0.0318426862453149,0.0343476517106981,0.0369210805466585,0.0392421773478269,0.04139199437912,0.0435799759844312,0.0458977284514054,0.0485850576265549,0.0510530206023506,0.0689151548661026,0.0855177172969751,0.1013707530758106,0.1166309418736603,0.1313757098755676,0.1495983935742972,0.1637345040774557,0.1774775254002872,0.189884365290368,0.2016353737997256,0.2177394186584591,0.2314420394836421,0.244866027772345,0.2558294616015305,0.2664708212305254,0.2782425619147875,0.2886676192177174,0.2985706246482836,0.3077019183807912,0.3155645189013281,0.3231695317474098,0.3309349151193944,0.3378149669203366,0.3437455051061993,0.3493452967137178,0.3553359000937854,0.3602868354081261,0.3653149706707472,0.3700249078926885,0.3734512806272892,0.3721360389917237,0.3703989952661579,0.3683489219814067,0.3666743956872065,0.364291993860917,0.3619635671059503,0.3587759576733027,0.3586376219351437,0.3593672339623288,0.3601863465328794,0.3615059618815134,0.3622763389937979,0.3630595995882439,0.3636628885646953,0.3655820470082373,0.3664589769097858,0.3659421324726514,0.3708410861269671,0.374126242579648,0.3765985418907613,0.3812975881092418,0.3841948837703003,0.3843681058934762,0.3861612240237497,0.3924792139077853,0.3951641578760222,0.3923584471382538,0.3967193195625759,0.4019661387220098,0.3979946008484381,0.0,2.7174362554473777,69.9702155835816,209.1948403745912,290.2994705584132,APP_public_baseline,60 +100000,95712,51187,483.33542293547305,6847,70.17928786359077,5394,55.70879304580408,2098,21.5751420929455,77.30949638025908,79.67027742990732,63.31695901961641,65.05973539447493,77.04228226358879,79.4029751170752,63.216914058661935,64.96237980588346,0.2672141166702886,267.3023128321148,0.1000449609544773,97.3555885914692,193.09532,135.15897111391038,201746.19692410564,141214.2376231929,370.73189,236.71452058202848,386694.2180708793,246672.72712097596,441.14314,213.3925115137976,456590.176780341,219658.4102361744,3822.89562,1771.9045321962572,3954446.433049148,1811568.7502050477,1282.49161,571.5132461452366,1326290.7994817789,583459.8442674235,2046.60666,865.4474721712301,2106388.1227014377,875626.2144310046,0.4314,100000,0,877706,9170.281678368436,0,0.0,0,0.0,30604,319.0822467402206,0,0.0,40096,414.6084085590104,1442851,0,51902,0,0,17233,0,0,79,0.8253928452022734,0,0.0,1,0.0104480106987629,0,0.0,0.06847,0.1587158089939731,0.3064115671096831,0.02098,0.3376912378303199,0.6623087621696802,24.23452611865033,4.216858082554327,0.310715609936967,0.2586206896551724,0.2167222840192806,0.2139414163885799,11.350038770505408,6.085692264510397,22.532967465028243,14071.877030222988,62.019311935978486,16.96551892485693,19.24578649437369,12.884429201588947,12.92357731515893,0.5752688172043011,0.8007168458781362,0.6867541766109785,0.5918544194107452,0.1300256629597947,0.73046875,0.907235621521336,0.8365591397849462,0.7508896797153025,0.1314741035856573,0.5134784862623121,0.7336448598130841,0.629232039636664,0.5406643757159221,0.1296296296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025825138493634,0.0053118157489254,0.0078423017612206,0.0109693670268952,0.0137345600569308,0.0166620863741386,0.0191000356724252,0.0216195249420723,0.0241711295531662,0.0268854069654388,0.0294795969618384,0.0316857301271125,0.0340462724935732,0.0365484429065743,0.0389938533888866,0.0415039365197445,0.0438103517868786,0.0459740313614867,0.0482555057838012,0.0503968832684014,0.0678028048411181,0.0840468066400117,0.0994682022719405,0.1146165252232072,0.1289060440197846,0.1469020371036321,0.1623637772047666,0.1758343535423431,0.1887872831381933,0.2013469602239214,0.215938109450592,0.2296505647056275,0.2424898776611955,0.2543456368492491,0.2649582062266665,0.2768137314690587,0.2868555721915573,0.2965545991256929,0.30525,0.314654925297834,0.3215973316038173,0.3289006988422864,0.3352288208882729,0.3414107226442948,0.3478245008147481,0.3529012429490107,0.3578934184983405,0.3619281774290118,0.3661513320017639,0.3695094199830652,0.3674488941697497,0.3664340101522843,0.3654164017800381,0.3631887625805517,0.361728450267555,0.3591989795134246,0.3568337999490965,0.3577636678486023,0.3589655527698595,0.3599619334913452,0.3609127395376005,0.362099856665074,0.3627008561427186,0.3639063906390639,0.3651758891365442,0.3663594470046083,0.3662655446738849,0.3720224932078094,0.3739777213761985,0.3768582558231974,0.3802482657904344,0.3844023012998082,0.3889310083396513,0.3914141414141414,0.3957466918714555,0.4008543965824137,0.4073163233937903,0.4169240271772699,0.4140321686078758,0.417377812257564,0.0,2.517236184757349,67.44714104443095,207.0331733880294,281.9345757618695,APP_public_baseline,61 +100000,95724,51665,487.3490451715348,7059,72.23893694371317,5595,57.759809452175,2207,22.58576741465045,77.40440741590693,79.7609199121638,63.3594678928421,65.09911493560831,77.13579227093835,79.49459592773975,63.25884362440946,65.00215010546862,0.2686151449685781,266.3239844240479,0.1006242684326395,96.96483013969726,194.14032,135.82523174007318,202811.43704818017,141891.68712422674,374.64068,238.6233531842086,390625.6529188082,248537.86150391088,446.72937,215.904786304372,462382.51640132046,222231.12252601105,3988.8901,1831.7681550290465,4117529.82533116,1864529.9138209384,1348.92891,602.2860188031026,1391762.3897873051,612218.5076481822,2171.12236,912.7168186470136,2224083.5736074545,916854.7207091892,0.43513,100000,0,882456,9218.70168400819,0,0.0,0,0.0,30961,322.7090384856462,0,0.0,40613,419.9155906564706,1441207,0,51795,0,0,17240,0,0,56,0.5745685512515147,0,0.0,0,0.0,0,0.0,0.07059,0.1622273803231218,0.3126505170704066,0.02207,0.343973063973064,0.6560269360269361,24.561955842353708,4.323332638274526,0.3133154602323503,0.2498659517426273,0.2309204647006255,0.2058981233243967,11.284614107857468,5.870796234276701,23.560963164980496,14250.514931265,63.755443566822464,16.92804565972908,19.845909716118925,12.95029855650616,14.031189634468308,0.5694369973190349,0.8032904148783977,0.6976611523103251,0.5868055555555556,0.1269349845201238,0.7392421323057161,0.908411214953271,0.8602620087336245,0.7533333333333333,0.1704545454545454,0.5039623576027736,0.7381228273464658,0.6401544401544401,0.528169014084507,0.1157587548638132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029564530663075,0.0060298961236382,0.0089678819972812,0.0117402122581627,0.0141937714152084,0.0166938110749185,0.0191286624203821,0.0217646398579635,0.0243685630210887,0.0270043489383474,0.0295989587069928,0.031929633697002,0.0345019019224838,0.0370179630850362,0.0394671674439721,0.0418350786152144,0.0441784120211675,0.0464952228803801,0.0489815007274994,0.0512884611378455,0.0687109774687297,0.0851952237931287,0.1012577230911246,0.1156753687796364,0.130837180865642,0.148840996573749,0.1638144143952977,0.1775484997551055,0.1906680058124626,0.202981552981553,0.2181185644737409,0.2327529299728375,0.2458691844970684,0.2580768641861889,0.2689658208068314,0.2807460570618465,0.2916131912281681,0.3019097105067818,0.3114506761049097,0.319197169714109,0.3266398464775381,0.333376154717554,0.3400817367886419,0.3455406019171467,0.3514008046144152,0.3569399525326184,0.3623864105096059,0.3668174425696279,0.3707573151967313,0.3738443303042276,0.3725018479940864,0.3703795311512353,0.3689874931416271,0.3672058759866665,0.3653974516813266,0.363864376710967,0.3605265656150122,0.3602537413739407,0.3598894537514074,0.3623847484529096,0.3628937063199116,0.3650652255676307,0.3656502148171434,0.3664439428814052,0.3683691863958658,0.370207105221973,0.3714976532498933,0.3755221255613831,0.3796828960291848,0.3835377227447712,0.3884241156679094,0.3927604691895334,0.396681749622926,0.4030724769944482,0.4046280682031103,0.4069396907824855,0.4094609123022577,0.4127659574468085,0.4163641440938285,0.4166998011928429,0.0,2.5741252703330746,68.1235181428508,213.91271116046877,293.7720020181247,APP_public_baseline,62 +100000,95737,51220,481.7155331794396,6957,71.25771645236429,5510,56.85367203902358,2187,22.39468544032088,77.33232137485312,79.69979024105253,63.31916690730778,65.07203729684603,77.05853710934427,79.42799680005483,63.21697401403751,64.97378774174561,0.2737842655088514,271.79344099769764,0.1021928932702707,98.24955510042344,191.96122,134.28253184370496,200508.91504851836,140261.8964911215,369.06021,235.3307472745968,384801.027815787,245116.82763675152,437.68251,211.0607568577004,453255.5856147571,217407.18630213288,3899.81997,1795.6044405848816,4023277.5833794666,1825509.7351206916,1304.61951,585.8722005934529,1345882.7621504748,595191.737317086,2132.7971,901.1053242882645,2184603.298620178,903503.8973871904,0.43309,100000,0,872551,9114.04159311447,0,0.0,0,0.0,30488,317.7245996845525,0,0.0,39759,411.35611101246127,1454087,0,52266,0,0,17108,0,0,70,0.7311697671746556,0,0.0,1,0.0104452823882093,0,0.0,0.06957,0.1606363573391212,0.314359637774903,0.02187,0.3370817334064728,0.6629182665935272,24.55489667238884,4.2460395410994325,0.3117967332123412,0.2506352087114337,0.2123411978221415,0.2252268602540834,11.042390342740296,5.865404431212811,23.413618381001207,14240.120480268532,62.93750241220075,16.7850510871745,19.33962078315193,13.891595511454849,12.921235030419467,0.5698729582577132,0.7929036929761043,0.670547147846333,0.5954875100725222,0.1316239316239316,0.7411461687057308,0.9159049360146252,0.8506787330316742,0.7918088737201365,0.1549815498154981,0.5026535253980288,0.7122302158273381,0.6081504702194357,0.5348101265822784,0.1245828698553948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031618630670071,0.0059134386189128,0.0089249451709852,0.0116269615415887,0.0144461626108895,0.0170434286529273,0.0194684669984498,0.0219501985727266,0.0245283983436429,0.0269451269451269,0.0294934749402851,0.0321130115187976,0.0345611220796314,0.037211745439939,0.040207174767599,0.042820820241442,0.0452606291548449,0.047558774095823,0.0496871817255929,0.0521393159188434,0.0692571094500354,0.0855507539055551,0.101283880171184,0.1165373209666225,0.1304742120192764,0.14895169991749,0.1633540965862665,0.177104291082511,0.1898317757009345,0.2016879718599862,0.2170278771166358,0.2312853756993972,0.244549133954217,0.2574688501635435,0.2682038300682368,0.2791148423395984,0.2895071648587116,0.2989781219051048,0.3083209425331714,0.3159239317218467,0.3237943089995601,0.3311838024460179,0.3384282060996401,0.3440887290167865,0.3497769837508052,0.3557221598826097,0.361083978260325,0.3666200050903538,0.371038378812615,0.3758614316267525,0.3748433942692406,0.3734163269802798,0.3712787550744248,0.369513041466659,0.3680977945659771,0.3657381145844512,0.3622797269407842,0.3626781985300162,0.3638648135801836,0.364634953575326,0.3650366748166259,0.3660347394540943,0.3667796039478945,0.3671827599379789,0.3678544645233084,0.3693408090547055,0.3718509622258443,0.3748931184089685,0.379438130867509,0.381513076214506,0.3854333776412889,0.3884776311554554,0.3939548202354438,0.4004764832462342,0.4068211795741474,0.4072061429415239,0.4132544737640279,0.4191544780605089,0.4250681198910082,0.4274779946421737,0.0,2.671095464384278,68.1888690518499,207.07777829464632,290.9547060037065,APP_public_baseline,63 +100000,95714,51097,481.7268111248093,7022,71.84946820736778,5575,57.53599264475417,2204,22.56723154397476,77.41699606751023,79.76902969280194,63.36600846061516,65.10012544036788,77.13620784423799,79.49094814483826,63.26220598926327,64.99995732918956,0.2807882232722392,278.08154796368,0.1038024713518979,100.16811117831992,193.05264,135.04986009591903,201696.4707357335,141096.48783679924,371.75542,236.8089820439046,387685.145328792,246698.3322831139,439.60391,212.34577685568985,454685.0930898301,218307.97466536213,3964.63699,1819.3847050635272,4094553.461353616,1853721.289730003,1315.37134,591.0109915610972,1355929.4982970098,599416.4803665945,2150.0488,906.8160444789572,2203606.9540506094,912560.1551744234,0.43112,100000,0,877512,9168.021397078795,0,0.0,0,0.0,30696,319.95319389013105,0,0.0,39937,412.6355601061496,1448821,0,52045,0,0,17249,0,0,72,0.7522410514658253,0,0.0,2,0.0208955847629395,0,0.0,0.07022,0.1628780849879384,0.3138706921105098,0.02204,0.3322038492816481,0.6677961507183519,24.416764995161227,4.266061390866653,0.3198206278026906,0.2412556053811659,0.2134529147982062,0.2254708520179372,11.32632302196419,5.986161966875559,23.61632384409098,14156.316538186018,63.39444435233696,16.150262747606597,20.263483163760817,13.930685698782412,13.050012742187134,0.5702242152466368,0.7769516728624535,0.7134043746494672,0.5704057279236276,0.1218487394957983,0.7289156626506024,0.8987603305785123,0.872651356993737,0.7279411764705882,0.1467181467181467,0.5121293800539084,0.7084785133565621,0.6549079754601227,0.5269035532994923,0.1149301825993555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026417538816575,0.005308533163136,0.0082258195391106,0.0109769595548289,0.013766878151944,0.016276797166066,0.0190504342153545,0.0215350071443151,0.0241686594313977,0.0266299732984132,0.0292146575398614,0.0317637882550955,0.0340978011698311,0.0366716440965964,0.0391185937113146,0.041551275162237,0.0441768731429044,0.0463408562894125,0.0485049419541245,0.0510990728200854,0.0681222525034196,0.0856003850500146,0.1005665127989928,0.1153097819799543,0.1296089267634154,0.1475316214729895,0.1628429906343802,0.1766214691670746,0.1899563085534819,0.2020889856409046,0.2173276335483315,0.2310538844405972,0.2443528925799508,0.256281681524209,0.2669523652546563,0.2787066647486472,0.2890699904122722,0.2982552780088585,0.3069054288533291,0.3151490871630515,0.3228902843793729,0.3309836103902177,0.3386478686663197,0.34481106653093,0.3505517584645454,0.3549285362247412,0.3596902715752867,0.3649430770209247,0.3686547073593746,0.3733702823964107,0.3725693509291677,0.3708652099730309,0.3689826757446328,0.3670845759620117,0.3656318828501697,0.3616776568011041,0.359673153969184,0.3603031645258133,0.3607209298356403,0.3617662263579158,0.362423516643901,0.3625848728880467,0.3636211302417159,0.3629647815024773,0.3640755696567638,0.3643380531434979,0.3646619754422951,0.3683450073813487,0.372777329639112,0.3757532508721852,0.3787465940054496,0.3822186836518046,0.3874897946366891,0.391533180778032,0.39178929609148,0.3937220785328004,0.3992412746585736,0.4001602243140396,0.4104578704958005,0.4128716597666541,0.0,2.679682340672458,65.16200551793693,212.0480621653641,303.9511506453592,APP_public_baseline,64 +100000,95696,51199,483.51028256144457,6930,71.25689683999332,5420,56.062949339575326,2102,21.578749373014546,77.3508434030137,79.7421711096347,63.31502979323547,65.08328558232952,77.09068984653352,79.48346188622398,63.2187335047519,64.99050925445096,0.2601535564801764,258.7092234107189,0.0962962884835647,92.7763278785676,193.6,135.43200272158177,202307.07657582345,141522.9847336867,368.42558,234.8426249434248,384383.2971075071,244794.63262432057,434.84272,209.762955928438,451344.2254639692,216811.4502914708,3827.96126,1754.479865252685,3959062.5417990303,1792610.1046044694,1263.28721,567.0194098896992,1301967.114612941,574429.8477619446,2046.24406,858.0827387387069,2100806.721284066,861705.0231056795,0.43112,100000,0,880000,9195.776207991974,0,0.0,0,0.0,30371,316.7321518140779,0,0.0,39508,409.8499414813576,1444972,0,51924,0,0,17211,0,0,72,0.741932787159338,0,0.0,0,0.0,0,0.0,0.0693,0.1607441083688996,0.3033189033189033,0.02102,0.3332874449339207,0.6667125550660793,24.62387220847975,4.226823335020158,0.318450184501845,0.2577490774907749,0.2119926199261992,0.2118081180811808,11.36272126205355,5.969748204655138,22.403625843693703,14128.47690157947,61.83487802715333,16.79264985515306,19.72001607250466,12.714370378499066,12.60784172099652,0.570479704797048,0.788117394416607,0.6929316338354577,0.5696864111498258,0.1227154046997389,0.7452145214521452,0.9224952741020794,0.8605150214592274,0.7323420074349443,0.1713147410358565,0.5026888604353393,0.706221198156682,0.6309523809523809,0.5199089874857793,0.1091314031180401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122319357354,0.0052529636653111,0.0079282096052137,0.0104683307585982,0.0128588577590591,0.0153827346631079,0.0179844739821889,0.0205486447290479,0.0231435554964665,0.0259724298969705,0.0286739821556763,0.0309874489020357,0.0333155047211536,0.0359571399134555,0.0385663274783793,0.0410709670749987,0.0433989826259026,0.0459711655231828,0.0484100814462693,0.0505347426355619,0.0673804052642573,0.0843324293477691,0.1005909706404106,0.1160150660718794,0.130532023758031,0.1479659313336507,0.162689482399898,0.1765852307823383,0.1892891501870657,0.2018737524414586,0.2159065184817877,0.2301063161769482,0.2430873695550453,0.2553571037713135,0.2662938171569491,0.2767632416370067,0.2872200263504611,0.2969080754852948,0.3062121607960289,0.3150315857056052,0.3231652943288283,0.3306666041957059,0.3377699291250859,0.3437053748214992,0.3491791317037577,0.3535316168491664,0.3579636491087523,0.3625140006109357,0.3672803542297833,0.3717613501307344,0.3703918448801273,0.3690248302645532,0.3677104766199723,0.3666546216665462,0.3654902193594348,0.3637476473918565,0.361076394931262,0.3608208526763012,0.3616668659980522,0.362414550127617,0.3633586928006596,0.3647451204831166,0.3663364267201739,0.3668801463860933,0.3680103718998343,0.3691598520756289,0.3713524090406375,0.3745500078259508,0.380369813694991,0.3833733706139487,0.3863143631436314,0.3921827894430634,0.3971906941744528,0.3984327449786975,0.4007712565838977,0.4070901736854627,0.4108941104668904,0.4109069117059528,0.4129785500950312,0.4183359013867488,0.0,2.099611831666487,67.10684722157377,202.247618913485,289.56144068321686,APP_public_baseline,65 +100000,95728,51257,483.39043957880665,6931,71.11816814307204,5485,56.76500083570116,2076,21.414842052482037,77.26691653433518,79.6263556676031,63.2951211478972,65.03891910695387,77.0008520199996,79.3579048532409,63.19616160592789,64.9410612305477,0.2660645143355822,268.45081436219687,0.0989595419693074,97.8578764061666,192.69954,134.85561956027755,201298.8049473508,140873.52306564173,366.88171,234.4845631176935,382738.1643824169,244433.0455224109,442.30113,213.58740617627748,458124.3732241351,220149.83041599533,3881.89058,1799.3072024439966,4021690.539862945,1846192.8946013676,1276.86125,577.154373843107,1320364.9193548388,589461.6072438976,2026.4779,859.7680736758385,2091856.5727895703,877048.88328441,0.43106,100000,0,875907,9149.945679425038,0,0.0,0,0.0,30263,315.5920942670901,0,0.0,40176,415.77177001504265,1445869,0,51979,0,0,17153,0,0,78,0.8148086244359017,0,0.0,2,0.0208925288316897,0,0.0,0.06931,0.1607896812508699,0.2995238782282499,0.02076,0.3378490461708598,0.6621509538291401,24.36777715889321,4.156859447387742,0.3039197812215132,0.2656335460346399,0.211485870556062,0.2189608021877848,11.28553114931256,6.01729533514623,22.459318672490408,14080.051320339571,63.31521388493415,17.749233500276674,19.23892507058439,13.40644553871147,12.920609775361628,0.5784867821330902,0.790665751544269,0.713257348530294,0.5778517901748543,0.1189655172413793,0.7439949431099874,0.9076376554174068,0.879746835443038,0.7589928057553957,0.1423220973782771,0.5114014860363822,0.7170022371364653,0.647108130762783,0.52329360780065,0.1119820828667413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027650609731394,0.0052621439941599,0.0081483135121971,0.0104021698276124,0.0127636637308545,0.0155885677048863,0.0183495591008716,0.0213146047917028,0.0237265264815023,0.0263060923681624,0.0289176140149457,0.0315387458420598,0.0343153889660136,0.0368016644693474,0.0393908755132781,0.0419268141409964,0.0444156785584839,0.0466457784325524,0.0490831982038168,0.0511372516332037,0.0682057868412534,0.0843006520897225,0.0999129002130271,0.1152017003009196,0.129332081403568,0.1470535326920838,0.1612403265358117,0.1754161740741924,0.1882686343706555,0.2000386465132257,0.2150288394156649,0.2280426089877656,0.2407048419768682,0.2528887963987251,0.2642368267333825,0.2762334029042142,0.2865690671378882,0.2964770319614119,0.3050394863928186,0.3134496084029952,0.3207228274081706,0.328130854252529,0.3360224607292629,0.341928439442298,0.3481476075798487,0.3533919954584161,0.358115564026684,0.363133405570782,0.3679181596302643,0.3717733070209131,0.3711356936142591,0.369024909457853,0.3666624209230246,0.3652269792679211,0.3639130953802077,0.3616346878798603,0.3588890127566052,0.3593809358637662,0.3609654627035019,0.3609813923414038,0.361952322623198,0.3637448297804645,0.3649393139841688,0.3647836944050752,0.3648828702245694,0.3656833928196514,0.3657415388151468,0.3683642367284734,0.3732805929727033,0.3779886914378029,0.380640096060592,0.3852163137761974,0.3868892144995859,0.3904125374510256,0.3948742287612719,0.403314258464473,0.4032877554155784,0.4027213647441104,0.4025400331308669,0.3975106962271489,0.0,2.070511502607915,70.08842233374581,212.0855299682917,283.6933909069521,APP_public_baseline,66 +100000,95684,51280,484.6682830985327,6955,71.27628443626939,5506,56.77020191463568,2189,22.39663893649931,77.288290147924,79.65785185848807,63.294707477804174,65.04421151890857,77.00689348175673,79.3791633415148,63.18925523538455,64.9435391703659,0.281396666167268,278.6885169732756,0.1054522424196235,100.67234854267326,193.26318,135.3081502630211,201980.66552401657,141411.46927701717,373.73552,238.2690782177972,389829.3131558045,248252.41233413864,442.18823,213.84791451553312,457366.0486601731,219954.5624580823,3908.74918,1812.981513201909,4032081.748254672,1841780.6876822768,1309.56979,589.4321101110053,1350436.7396847955,597850.4111189747,2138.81092,912.2809334987812,2189703.2314702566,912396.5434893336,0.43079,100000,0,878469,9180.939342000753,0,0.0,0,0.0,30909,322.2168805651938,0,0.0,40082,414.16537770160113,1436921,0,51752,0,0,17202,0,0,72,0.7420258350403411,0,0.0,0,0.0,0,0.0,0.06955,0.1614475730634416,0.3147375988497484,0.02189,0.3363062568605927,0.6636937431394072,24.341461681230957,4.257881248846131,0.314021067925899,0.2459135488557936,0.219397021431166,0.2206683617871413,11.05544942165672,5.809081206725891,23.627062774329865,14094.054451559883,63.09963264121299,16.41042465036663,19.61867117670256,13.635645294389384,13.434891519754425,0.5657464584090084,0.8035450516986706,0.681897050318103,0.5761316872427984,0.1225165562913907,0.7271573604060914,0.9190207156308852,0.8662280701754386,0.7207792207792207,0.1459074733096085,0.5010178117048346,0.7290400972053463,0.6158680282796544,0.5270121278941565,0.1154261057173678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023800119506983,0.0054439837390131,0.0083817023176523,0.0111745464150023,0.0136888780408428,0.0161085032939954,0.0187496176668501,0.0215280967692543,0.0241035286421065,0.026434287819555,0.0290859151609564,0.0316156846643399,0.033919391322229,0.0362928557451673,0.038670613840552,0.0409268484259699,0.0431680748840291,0.0452710346330679,0.0474323101407366,0.0499880137164774,0.0674117401295174,0.0833891774166527,0.0991015575800831,0.1139176559737307,0.127991554499868,0.1454075689870602,0.1592009685230024,0.1736851078339442,0.1870194312846891,0.19881652991967,0.2129490816139435,0.2272387453274825,0.2409541444287114,0.2527430411072907,0.2636988565007601,0.2761567574166768,0.286834451901566,0.2972546188725213,0.3065891164050673,0.314637985912418,0.3228648027575641,0.3310336735891118,0.3376429105673683,0.3440681837306309,0.3498543695236238,0.3549954861926963,0.3599537473448713,0.3644968449020259,0.3686722855210447,0.3727124551104515,0.3714146750070929,0.3701088758704542,0.368116311333843,0.3671774017863626,0.3664883922435686,0.3637622300166143,0.3608660403452716,0.3612122810197927,0.3622506780184695,0.3634912091855041,0.3638829757172729,0.3644772623513765,0.3638891229252675,0.3643209323173464,0.3641374993981994,0.3650677789363921,0.3662385844748858,0.371198738170347,0.37516316810725,0.3794947519655186,0.3828282828282828,0.3852042181896044,0.3871294013528036,0.3917667763409595,0.3950917946796553,0.3994793515560288,0.4009772484348755,0.4000809061488673,0.4057655697579548,0.4200757575757576,0.0,2.9886808997863525,68.80401166174978,205.4182663839424,291.3466483111272,APP_public_baseline,67 +100000,95813,51395,484.9237577364241,6917,70.66890714203709,5460,56.224103201027,2113,21.5628359408431,77.36488025655099,79.67778758699045,63.35773544642036,65.07022991879447,77.09759850591574,79.41539924207197,63.257371064342976,64.97505484330816,0.2672817506352487,262.3883449184774,0.1003643820773803,95.17507548630988,193.60264,135.52481657610014,202063.01858829177,141447.2113138093,370.01629,235.5802698653113,385430.0042791688,245119.16949193864,440.47303,212.69056516004812,454334.672747957,217897.7585604388,3794.14848,1758.3658495281177,3908830.430108649,1784186.6424732693,1285.95668,579.6281421694379,1319905.0650746766,582760.5853038201,2054.4872,870.7269830217534,2098829.094173025,869169.3766083261,0.433,100000,0,880012,9184.682663104171,0,0.0,0,0.0,30496,317.4934507843403,0,0.0,40129,413.5242607996827,1448203,0,52037,0,0,17549,0,0,65,0.6784048093682485,0,0.0,0,0.0,0,0.0,0.06917,0.1597459584295612,0.3054792540118548,0.02113,0.3470960638590696,0.6529039361409303,24.045997033749487,4.231534461141731,0.3331501831501831,0.2503663003663003,0.2023809523809523,0.2141025641025641,11.286090428105632,6.08798862266358,22.52487938273711,14147.200960690556,62.59007343745323,16.770933166163516,20.686721608091418,12.942306883785813,12.190111779412494,0.5871794871794872,0.8119970738844184,0.7075316107751511,0.5774165953806673,0.1212669683257918,0.7369439071566731,0.905027932960894,0.8714285714285714,0.6977611940298507,0.16796875,0.5277564594525455,0.7518072289156627,0.6471030850263356,0.5416204217536071,0.1071849234393404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026131874810088,0.0050083133947037,0.0075797548502313,0.0101064478121318,0.0126701985946858,0.015303628884454,0.0179820179820179,0.0204585825999959,0.0228164867517173,0.0254158349966733,0.0280818267535768,0.0308488039161355,0.0332586486875372,0.0360127624536846,0.038406827880512,0.0408489816143451,0.0432875805500677,0.0456514080858735,0.0481278425020247,0.0504286487161346,0.0680497752187835,0.0843211037942928,0.0999622862889708,0.1150526116816835,0.1294365455502896,0.1470221752903907,0.1610234134971924,0.1753824564387697,0.1886442196901805,0.2004970381241095,0.216377603718368,0.2303118107512001,0.2437463325581901,0.255453721202058,0.2663288412073779,0.2778490674572446,0.2887853696047074,0.2981990989877655,0.3083564670556909,0.3166925963210396,0.3235297516554378,0.3307516179528516,0.3376612626674707,0.3436198228393584,0.3503188581840267,0.3553327009079821,0.3614787939447016,0.3657854245349,0.3715642631606191,0.3756194643610291,0.3745425188374596,0.3722392701352671,0.3710841674890737,0.3690255757435482,0.3672655284819076,0.3641203455100569,0.3605430295331851,0.3611715095209857,0.3629656320241588,0.362834555330477,0.3630382324108287,0.3634157500049728,0.3640576291178701,0.3641122419177282,0.3655509771319791,0.3670267018856081,0.367852151840972,0.3711177676178464,0.3745327597150716,0.3759551910382076,0.3810071280754196,0.3862439548629769,0.3890062072054777,0.3944294003868472,0.3959050899349406,0.402757793764988,0.4029503105590062,0.4087530966143683,0.4175027870680045,0.4135778384705423,0.0,2.9757428773186207,67.55182574404711,206.07039458489663,288.79148641501763,APP_public_baseline,68 +100000,95630,51367,484.9315068493151,7010,71.95440761267385,5563,57.502875666631816,2222,22.827564571787097,77.2563444549925,79.66939776610471,63.27473565930678,65.0571903494554,76.98534871162686,79.39713485333903,63.17453264742085,64.95861198716474,0.2709957433656456,272.26291276568304,0.1002030118859238,98.57836229065242,192.29276,134.70554972898182,201079.95398933388,140861.18344555248,371.03129,236.57266452063783,387330.8794311408,246727.9039220306,443.92829,214.50559641242432,459906.36829446827,220841.7832280262,3941.16351,1817.5996033750612,4077803.973648437,1857199.6584492936,1301.13631,583.0295558002333,1344010.5510822963,593088.5033987586,2162.09178,911.2837878710756,2223239.506431036,922276.4391940382,0.43125,100000,0,874058,9139.997908606088,0,0.0,0,0.0,30573,319.01077067865737,0,0.0,40307,417.1808010038691,1443761,0,51955,0,0,17164,0,0,82,0.8574715047579212,0,0.0,0,0.0,0,0.0,0.0701,0.1625507246376811,0.3169757489300998,0.02222,0.3259329882865704,0.6740670117134295,24.47010340851702,4.240089260788252,0.323746180118641,0.2442926478518784,0.2121157648750674,0.219845407154413,11.49874855643843,6.289279352070166,23.904363101191503,14148.935725485002,63.842872019427794,16.56074270833422,20.621252544767184,13.551991813609783,13.108884952716595,0.5718137695488046,0.7991169977924945,0.7062742920599667,0.5715453802125919,0.1050847457627118,0.7186700767263428,0.903660886319846,0.87,0.7174721189591078,0.0978260869565217,0.5143785946486622,0.7345238095238096,0.6433512682551883,0.5303983228511531,0.1073008849557522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028662581657973,0.0055643959741747,0.0084230609200418,0.0112665467881706,0.0139383457116695,0.0166763444475005,0.0192998204667863,0.0221504761126323,0.0247734386187427,0.027270678386297,0.0299930224922016,0.0323097792576149,0.0346006156253538,0.0370748404524037,0.0392946791037838,0.0418865503611266,0.044399062882259,0.0462468576652192,0.0486675476842072,0.0512146530233334,0.0682231465418138,0.084426332551123,0.0997637919269329,0.1146595370672505,0.1292630423771737,0.1473874674623833,0.1619404410672213,0.176245088330192,0.189258230012826,0.2012449023395578,0.2160061238571675,0.2295657449943659,0.2425351591010599,0.2547427256288015,0.265449732531848,0.2771949689723693,0.2880730250352372,0.2985446469838907,0.3079013187812642,0.3164803892318638,0.3247155433383207,0.3319883644552876,0.3386306182275657,0.3447140797693416,0.3501456198286682,0.355670676673137,0.3611728232355562,0.3649126389544752,0.3691881990724502,0.3733508012756891,0.3707766505005201,0.3693053847535615,0.3665217945269476,0.3650655275622584,0.3638307096619874,0.3612289279269552,0.3589698668535389,0.358766019289206,0.3603535310028772,0.3600446388393902,0.3610407769925551,0.3626800549877473,0.3631029023746702,0.3631198347107438,0.3648269862748888,0.3672496857980729,0.3678065293476389,0.3707655290318495,0.3751892139261449,0.3791854122705737,0.3828317936522455,0.3858440170940171,0.3881979695431472,0.3914533820840951,0.3935309973045822,0.3967749529190207,0.404188008436276,0.4052536595147383,0.4067934782608696,0.4125438254772107,0.0,2.66200356848017,68.81135397137909,211.882183216452,294.3939319574287,APP_public_baseline,69 +100000,95678,51339,484.40602855410856,6867,70.27738874140346,5449,56.21982064842493,2110,21.561905558226552,77.32722884548278,79.70412928027548,63.32110870231941,65.07580817409486,77.06163764849212,79.44140481646846,63.2217555546193,64.98058322889443,0.2655911969906555,262.7244638070181,0.0993531477001141,95.22494520042812,191.21058,133.84559466582493,199848.01103702,139891.71456951956,368.71941,235.7058988479235,384643.314032484,245621.2701435267,444.45836,215.4264246985886,460062.982085746,221700.19467701312,3855.71566,1788.4041241043235,3981330.723886369,1820633.8699641745,1291.56257,581.344553263472,1334897.531302912,592611.2073337592,2055.2558,872.2547722262149,2102940.174334748,874139.9077592073,0.43212,100000,0,869139,9084.000501682727,0,0.0,0,0.0,30448,317.4606492610632,0,0.0,40397,417.6613223520559,1451587,0,52246,0,0,16937,0,0,75,0.7838792616902528,0,0.0,2,0.0209034469784067,0,0.0,0.06867,0.1589141905026381,0.3072666375418669,0.0211,0.3429763560500695,0.6570236439499305,24.24371363876717,4.264685037739147,0.3244632042576619,0.2459166819599926,0.2141677371994861,0.2154523765828592,11.423243431552322,6.134675838639622,22.66747259787473,14092.86938322856,62.54758375254484,16.347041440540604,20.26890292106928,13.17828284991413,12.753356541020825,0.5696458065700128,0.7843283582089552,0.6940045248868778,0.5885860306643952,0.1156812339331619,0.730719794344473,0.902390438247012,0.8537074148296593,0.7425742574257426,0.1309523809523809,0.5052658618032366,0.7136038186157518,0.6312056737588653,0.5350172215843858,0.1114754098360655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028347540850831,0.0054727326164729,0.0083291062189307,0.0109590988959647,0.0135548753825972,0.016280940405038,0.0189158321946444,0.0214782511004667,0.0241547869838218,0.0266254313831911,0.0288893446825966,0.0316951676680532,0.0343543642385468,0.0369805566145634,0.0395368277655654,0.0420178495713414,0.0442169823049189,0.0465116279069767,0.0486914371307314,0.0511695296864576,0.0674354474805715,0.0834353773535537,0.0995468468090462,0.1140569600942671,0.1280839618163599,0.145603233041344,0.1604525530401927,0.174429748897834,0.1876182029939416,0.1997639864828622,0.2142149258876249,0.2284610138667879,0.2412735361622051,0.2539074890349678,0.2647440836543753,0.2770279255319149,0.2875514920124585,0.2973635944233777,0.3064016256655352,0.3151242207554088,0.3238547518387676,0.3316511720488022,0.3380441864597524,0.3439059500959693,0.3496259351620948,0.3542103833905251,0.3596740833594484,0.3647037825571463,0.3684866099231887,0.3724038550521542,0.3696532728451069,0.367161545566078,0.3655561829474873,0.364005960906868,0.3624882720002383,0.3602859778597786,0.3576124237804878,0.3583656436879806,0.3582196697774587,0.3594433044874654,0.3601206647804987,0.361830008501552,0.3637888732778325,0.3639517446675172,0.3648182541788273,0.3675189071781854,0.3675321329401998,0.371320397539044,0.3752284549416561,0.3785162164315881,0.3812883716668194,0.3850679217028559,0.3856880268745642,0.3889487455748807,0.3906994473032208,0.3944537413339708,0.3966290397402195,0.3984454898752301,0.4022765130483064,0.4011673151750973,0.0,2.762631379149669,68.18713417127078,206.4495652674721,285.83399376723094,APP_public_baseline,70 +100000,95778,51365,484.7772975004698,7004,71.65528618263066,5512,56.933742613126185,2124,21.81085426715947,77.38146625236273,79.70371777316728,63.35451413110488,65.06754343197753,77.1119675716224,79.43377559855053,63.25443725430562,64.96963496296112,0.2694986807403268,269.94217461675873,0.1000768767992568,97.90846901640292,192.56886,134.75954183605273,201057.0485915346,140699.45190752856,369.60431,235.4446813094677,385271.0434546556,245198.4610803434,442.11198,213.1412539280622,457212.1468395665,219306.83710445729,3861.56039,1781.0733221855944,3991329.5015556808,1819245.754377297,1310.43845,582.338977987685,1355108.866336737,594924.1930168557,2071.60214,870.643436142909,2128344.9435152123,880083.8822634482,0.43353,100000,0,875313,9138.956754160665,0,0.0,0,0.0,30410,316.8472926976968,0,0.0,40153,415.0326797385621,1450095,0,52144,0,0,17305,0,0,90,0.9187913717137548,0,0.0,0,0.0,0,0.0,0.07004,0.1615574470048209,0.3032552826956025,0.02124,0.3370038064165307,0.6629961935834693,24.41475079520201,4.241421222600974,0.3256531204644412,0.2558055152394775,0.2124455732946299,0.2060957910014513,11.429259519940466,6.093119690806799,22.73823180452653,14164.052244770586,63.19844184211722,17.261159957466962,20.49092513233501,12.52575212461988,12.920604627695374,0.5767416545718432,0.7893617021276595,0.7025069637883008,0.5880281690140845,0.116994022203245,0.7255902999361837,0.8998242530755711,0.844488188976378,0.7106382978723405,0.1137254901960784,0.517617237008872,0.7146254458977408,0.6464646464646465,0.5560488346281909,0.1179039301310043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025717352125225,0.0055028578377721,0.0081861616335805,0.0108761881550085,0.0131371572086591,0.0157073925524767,0.0182852250489236,0.0209798059163869,0.023273395995096,0.0256690947781961,0.0281215424333073,0.0306151762629786,0.0329674846877954,0.0357003150027794,0.0383207728074064,0.0407716457369464,0.0432546540145079,0.0458433116660964,0.0482833844076247,0.0503722213545733,0.0676135414927366,0.0847755571832164,0.1003995846836359,0.1152200649630509,0.12960288428088,0.1471767157044197,0.1624184566428003,0.1759633808814136,0.1894192666331991,0.2010614914490966,0.2161152442372498,0.2291019997620618,0.2420475677791915,0.2541898219052203,0.2660863440777383,0.2782733972405385,0.2895597708977637,0.2991637685563471,0.3081492418649554,0.3167073716074438,0.3249380198799786,0.3323805395780373,0.3386370637158495,0.3452572250869409,0.3509857306074823,0.356008483144682,0.3611698864418875,0.3659924388039562,0.3707012811867835,0.374783745592372,0.3731910421214326,0.371290127195639,0.3699812435656969,0.3689019534021633,0.3670529702675326,0.3644707760314342,0.3621727831653673,0.3621460017083908,0.3630782385634887,0.3623687781189745,0.3624320779464118,0.3633886255924171,0.3649662572829777,0.3649574563367667,0.3669960806944143,0.3667943606181429,0.3676478961453054,0.3725207130303791,0.3766739115193157,0.3805225275380761,0.384015683413878,0.3877453580901857,0.3907916196211266,0.3956452469463621,0.398506192682235,0.4055337845861537,0.4127081105850008,0.4134927066450567,0.4256850262939385,0.4226444358278402,0.0,2.277080505064843,69.13822570984665,210.76112542021735,287.1426976827442,APP_public_baseline,71 +100000,95753,51598,487.5774127181394,6895,70.73407621693315,5439,56.17578561507212,2090,21.40925088508976,77.31912755708531,79.6690652913281,63.32066847763053,65.05851142209477,77.05399975965999,79.40489477810783,63.2216620788031,64.96246470626869,0.2651277974253219,264.1705132202645,0.0990063988274343,96.04671582607692,191.76256,134.25162230440847,200267.9393857112,140206.17871440944,369.31328,235.48749183875296,385076.36314266914,245324.87181390665,437.18782,210.57741052984773,452743.5693920817,216905.74918554976,3828.64617,1749.4137908063394,3956245.224692699,1785596.734907527,1243.5882,553.1901689612024,1281324.3553726778,560538.8667014199,2039.23676,867.5481511683479,2090680.751516924,872415.5906191877,0.4335,100000,0,871648,9103.088153895962,0,0.0,0,0.0,30443,317.2955416540474,0,0.0,39652,410.2743517174397,1452062,0,52259,0,0,17022,0,0,82,0.8563700354035905,0,0.0,1,0.0104435370171169,0,0.0,0.06895,0.1590542099192618,0.3031182015953589,0.0209,0.347399003873824,0.652600996126176,24.210439752308357,4.218072968752297,0.3188086045228902,0.2575841147269718,0.2119874977017834,0.2116197830483544,10.930807688781664,5.718042659394144,22.6040297396584,14210.546077667948,62.27671588255141,17.133751025622644,19.653478038366316,12.851521431346397,12.63796538721606,0.5690384261812833,0.7880085653104925,0.7029988465974625,0.5647263249348393,0.1058109280138768,0.7299270072992701,0.9109461966604824,0.8653421633554084,0.6595744680851063,0.1330472103004291,0.5073753814852492,0.7111368909512761,0.6455893832943014,0.5339470655926352,0.0989130434782608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026430647398961,0.0052594777004225,0.0079846597134856,0.0105222531434723,0.0129765791052669,0.0155713747415803,0.0182003568697425,0.0206571907037536,0.023189709821885,0.0255318277676542,0.0282058380240534,0.0305883560940548,0.033125932020363,0.0356123741926179,0.0380309736795947,0.0405948677669722,0.0429619967493814,0.0455677032549841,0.047974313947568,0.0502306883156107,0.0682003214829968,0.0849790794979079,0.1002297018071973,0.1152741994847258,0.1295780884306407,0.1466442491725618,0.1613915994908782,0.1759667156142927,0.1898217851384395,0.2018674156339779,0.2167016637053787,0.2315642518560204,0.2443627424319885,0.2559467174119886,0.2671904400356518,0.2787235692212266,0.2898803143979993,0.2997951696040696,0.3089325657707986,0.3176798111953807,0.325507864075421,0.3328610737076283,0.340360482064773,0.3464166076338444,0.3517193546031977,0.3573872127057835,0.3623677215507297,0.3674010607915137,0.3722110454928937,0.376735514241134,0.3750657903615433,0.3726093131644627,0.37144996750219,0.3695841308508787,0.3687833368097977,0.3658188185420699,0.3637851061125937,0.3644401271053888,0.3649583775821314,0.3652669907266237,0.365415403160492,0.3659412383200746,0.3672648384514933,0.3683807981284024,0.3702289153714134,0.3707691501624227,0.3733172939222088,0.3786392454972715,0.3807323267955411,0.3845083856609173,0.3866204885162231,0.3884064148329693,0.3899044847871465,0.3946198651134273,0.3999622320838448,0.4017699115044247,0.4019219035997559,0.4061930783242258,0.4051747866776768,0.4019120458891013,0.0,2.4401435990530924,66.38878796413968,205.2347301040452,293.24354092481553,APP_public_baseline,72 +100000,95657,51628,487.6485777308509,6978,71.51593715044378,5552,57.204386505953565,2107,21.472552975736225,77.34181859432726,79.72252359896841,63.3271521787835,65.08510778195068,77.06815014906977,79.45537767516123,63.225224957229,64.98887240699612,0.2736684452574991,267.1459238071776,0.1019272215545044,96.23537495455992,193.29948,135.30743392872637,202075.39437782916,141450.44918040556,373.98181,238.7689307429957,390104.10111126216,248755.14208548545,444.07716,214.5956392924885,458718.191036725,220170.3343373853,3896.5571,1799.2298007171712,4016840.419415202,1824842.8122342469,1313.10451,587.7730462870315,1349103.860668848,590956.3681961228,2055.7193,875.9489093964307,2097478.093605277,873340.4859190087,0.43402,100000,0,878634,9185.245198992234,0,0.0,0,0.0,30867,321.79558213199243,0,0.0,40351,416.4148990664562,1441643,0,51856,0,0,17278,0,0,76,0.784051350136425,0,0.0,0,0.0,0,0.0,0.06978,0.1607760011059398,0.3019489825164804,0.02107,0.3509249183895538,0.6490750816104461,24.317086900217276,4.221448868385007,0.3263688760806916,0.2476585014409222,0.2096541786743515,0.2163184438040346,11.132197352042438,5.923794026876237,22.725331062935144,14204.647712506618,63.7420289544433,16.67555193530039,20.78118665486248,13.45450688918045,12.830783475099985,0.5707853025936599,0.7716363636363637,0.7052980132450332,0.5886761032472939,0.1056701030927835,0.734008866371121,0.9248554913294798,0.8521400778210116,0.7194244604316546,0.1529850746268656,0.5059149257488045,0.6787383177570093,0.6471494607087828,0.5492957746478874,0.0915178571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026227582505493,0.0052403782803044,0.0079644491340563,0.0106640125124413,0.0134115589539187,0.0161379001384703,0.0186425302469702,0.0209977236303502,0.0237226463884545,0.0262056116860649,0.0288122385366253,0.0313960295371216,0.0340215836959764,0.0363951115965624,0.0388605047220932,0.0415390980554406,0.044072082154589,0.0463578221686947,0.0486553966189856,0.0510195571494099,0.0682803505949458,0.0850043455042355,0.100333781173902,0.1158978028453573,0.1297288743538348,0.1481250330565399,0.1633893988433172,0.177582132135329,0.1907875757284354,0.2029193792297214,0.2182397794339378,0.2322927483558324,0.2452522352019839,0.2569048087646788,0.2677052733493965,0.2792312804607886,0.2898461744546896,0.2993384785005513,0.3081411187795133,0.3166191245374666,0.3255429186287327,0.3324714223870643,0.3389028257679746,0.3452169743466795,0.3510646055126148,0.3568160799062828,0.3620456424259125,0.3668237992100904,0.3711165017058205,0.3752510836240617,0.3741134273617216,0.3718065316246383,0.3700509548745889,0.3688933921980169,0.3666830364450794,0.3628489818483368,0.3603146409540725,0.3611257319560497,0.3615545354891751,0.3620476863362369,0.3617420334977587,0.3632314514213318,0.3652259703184365,0.3660998698909776,0.3668081207503496,0.3684031324480762,0.3694632024722444,0.3720790703549324,0.3749072011878248,0.380150111785372,0.3847845005267256,0.3883500319761245,0.3934302435340759,0.3950278349729276,0.39823590128554,0.398471094123268,0.4021253657785307,0.4069554606467358,0.4091163310961969,0.4186770428015564,0.0,3.181819002154021,68.95121151182482,208.81255582049417,294.16641666290724,APP_public_baseline,73 +100000,95668,51684,488.67960028431656,6918,70.90145085085922,5448,56.246602834803696,2116,21.720951624367604,77.38307130315455,79.76237694623877,63.34642469116329,65.09870105812345,77.1185261530049,79.49785972011233,63.24691454125059,65.00210890772001,0.264545150149658,264.51722612644346,0.0995101499127031,96.59215040343838,193.62882,135.52420232188587,202396.64255550448,141660.95488761747,370.66162,236.7870241701214,386742.2753689844,246805.62379282663,443.23068,214.3001240123032,458483.7563239537,220274.5479694986,3856.30029,1774.970971465643,3984167.42275369,1808592.184916211,1278.11172,565.8895014589239,1316660.6911401933,572189.7171568495,2073.40056,877.4272435939679,2129236.7562821424,882809.4539040098,0.43343,100000,0,880131,9199.847388886565,0,0.0,0,0.0,30603,319.1453777647698,0,0.0,40246,415.9698122674248,1441316,0,51893,0,0,17296,0,0,66,0.6898858552494042,0,0.0,0,0.0,0,0.0,0.06918,0.1596105484161225,0.3058687481931194,0.02116,0.3384339674662255,0.6615660325337744,24.29275806383983,4.213744251749264,0.3113069016152716,0.2562408223201174,0.2198972099853157,0.2125550660792951,10.874583995666988,5.5430250949932045,22.50572707719765,14189.333876833987,62.25144149789725,17.015642307454684,19.413389788448555,12.765607311871763,13.056802090122224,0.5662628487518355,0.7994269340974212,0.7010613207547169,0.5526770293609672,0.1168614357262103,0.7289659601798331,0.9048473967684022,0.8729166666666667,0.6964980544747081,0.1254752851711026,0.5011565150346955,0.7294398092967819,0.6332236842105263,0.51165371809101,0.1144385026737968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002713017422026,0.0052783012177577,0.0080830823216803,0.0103781632072789,0.0128920746276244,0.015421887883384,0.0181247324104466,0.0208841572334105,0.0234890067768544,0.0260326559860777,0.0286455396413668,0.031247753714714,0.033950426822997,0.0361965781151821,0.038656363805181,0.0411455857122186,0.0433962850542324,0.0459282170510451,0.0482856162317876,0.050557055163573,0.0674662042163765,0.084321834266869,0.1000786864606829,0.1147342741172264,0.128599597203623,0.1470019137845353,0.1613994169096209,0.1755796639012976,0.1886665599487754,0.2012623096623482,0.216063531006876,0.230463089135466,0.2434118977213428,0.2558792980921664,0.2672747678359227,0.278106574455823,0.2894151818131039,0.2999233940923326,0.31000874671998,0.3186205947767867,0.3269070446019174,0.3334153082255949,0.3403450972956318,0.3466543420326042,0.351572005645593,0.3565838846647576,0.3621782823346615,0.3666993743070865,0.3702781237027812,0.3745025714247941,0.3728994003099521,0.3717353892751428,0.3696997026619505,0.3684583562357161,0.3667876156202599,0.3644704943689201,0.3617696027907714,0.3625486876920801,0.363013698630137,0.3644316433503882,0.3656223697746189,0.3668901597318083,0.3666520256844659,0.3676716731013859,0.3694062941923731,0.3704396632366697,0.3717650397275823,0.3753914568457973,0.3769071586405247,0.3782811511701455,0.3795550702879759,0.3839167854691377,0.3871250547936627,0.3907145010551703,0.3946051167964405,0.3987644247581303,0.4047262937481304,0.4073347715238282,0.4094931617055511,0.4177497215001857,0.0,2.704525806620438,68.29092392836293,204.56604052410125,284.0692684431341,APP_public_baseline,74 +100000,95669,51478,487.04387001013913,7113,72.79264965662858,5669,58.42017790506852,2220,22.63011006700185,77.3960056150407,79.7815488173416,63.35197710932333,65.11409462230654,77.11466192017811,79.50714077023167,63.24508281914066,65.01387966373346,0.2813436948625991,274.4080471099295,0.1068942901826659,100.21495857307627,192.57172,134.7422005154361,201289.57133449704,140842.07059281075,373.72017,238.01263127852323,389826.0460546259,247975.4838538987,446.89128,215.29436356188464,462634.56292006816,221564.4118284629,4016.29739,1857.7824744118363,4141061.8695711256,1884897.97823581,1322.91929,590.4590061151931,1364471.7306546532,598968.1007360301,2171.04654,924.0144025264289,2216069.1969185425,919776.60316822,0.43302,100000,0,875326,9149.525969749868,0,0.0,0,0.0,30807,321.14896152358654,0,0.0,40626,420.12564153487546,1449589,0,52130,0,0,17447,0,0,74,0.7735002979021418,0,0.0,0,0.0,0,0.0,0.07113,0.1642649300263267,0.3121045972163644,0.0222,0.3433734939759036,0.6566265060240963,24.08366382302348,4.278841172283955,0.3162815311342388,0.2531310636796613,0.218557064738049,0.2120303404480508,11.14392838445941,5.861614013019022,23.840920975198443,14189.256447633472,64.93304400751397,17.461306297608143,20.45980754764784,13.464816842428249,13.547113319829744,0.5671194214147116,0.8013937282229965,0.6887897378694925,0.5806988352745425,0.1065375302663438,0.7260024301336574,0.9148211243611584,0.847870182555781,0.7235494880546075,0.1025641025641025,0.5021128511061397,0.722877358490566,0.6284615384615385,0.5346534653465347,0.1076604554865424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029376905700132,0.005637687331427,0.0083534642008891,0.0108001016002032,0.0134579781498586,0.0163727446747851,0.0188729263741753,0.0214397288384771,0.0243206771759798,0.0267047431881921,0.0288705030808189,0.0312435828986816,0.0335177719269376,0.0357646864924443,0.0380845268067192,0.0402638080568965,0.042863949947171,0.0449992214667566,0.0475729871966884,0.0499473634838077,0.0678254692837221,0.0838906856742131,0.1000115389860378,0.1144491529879388,0.1284473306907312,0.1469004833574835,0.1617661102916989,0.1757546717776713,0.1892550326964995,0.201594215337081,0.2168282697694462,0.2311695900104959,0.2447493151280601,0.257016651906277,0.2671564314622558,0.278681445228156,0.2894484358962916,0.3002978030005057,0.3095014111006585,0.3179884255552759,0.3254621072088725,0.3329478283217681,0.3396025675883347,0.345626975763962,0.351491396257554,0.3559211497760496,0.3610122281760158,0.3654532295541983,0.3702172199465026,0.3755960064276494,0.3736008277456026,0.3723893610886072,0.3697610268246685,0.3679223480471458,0.3666731029156208,0.3640943965451232,0.3610750372176998,0.3620273531777956,0.3623081917911213,0.3620227849005392,0.362729845738599,0.3642233719047431,0.3662393073013615,0.3678835046718551,0.3695202845606614,0.3700674602141015,0.3706948039020505,0.375,0.3772105614738248,0.3801218492414287,0.385857844261919,0.3889037504681397,0.3959352175293744,0.3969652846961453,0.4027540360873694,0.4053080341059205,0.4123536660505237,0.4107799101674153,0.4126280808640266,0.4073929961089494,0.0,3.226354795942035,71.70493171769631,209.9601962847543,297.0761872586588,APP_public_baseline,75 +100000,95818,51539,485.97340791918015,6990,71.61493665073368,5552,57.31699680644555,2154,22.14615207998497,77.38566316619061,79.70628477878358,63.36611244363343,65.08400075485059,77.11734662481818,79.4357247292968,63.26689974585436,64.98611779730156,0.2683165413724282,270.56004948678947,0.0992126977790661,97.88295754903233,193.78282,135.52026423177296,202240.2888810036,141434.88207882363,372.10328,237.59013285859544,387688.837170469,247306.37663977875,444.16894,214.92849083961275,458604.8132918658,220613.49978837068,3915.52742,1810.8010230200327,4046862.645849423,1850467.9825469304,1290.30171,579.6244769817623,1331400.8537018097,589849.0851541217,2107.29248,885.9593424640605,2168330.919034002,899108.8652614647,0.43339,100000,0,880831,9192.74040368198,0,0.0,0,0.0,30702,319.7415934375587,0,0.0,40253,415.2142603686155,1446551,0,52016,0,0,17329,0,0,82,0.8453526477279844,0,0.0,1,0.0104364524410862,0,0.0,0.0699,0.1612866009829484,0.3081545064377682,0.02154,0.3378783746932097,0.6621216253067903,24.400353620259224,4.24363042811607,0.3242074927953891,0.2518011527377521,0.2136167146974063,0.2103746397694524,11.256418165755898,5.922496910709878,23.07647727069549,14140.860987412898,63.58366968099466,16.837642760379328,20.59192096837853,13.02184936672136,13.132256585515435,0.5713256484149856,0.7875536480686696,0.7066666666666667,0.5667808219178082,0.1155143338954468,0.7490445859872611,0.9263565891472868,0.8737864077669902,0.735191637630662,0.1468253968253968,0.5012556504269211,0.7063492063492064,0.6396887159533073,0.5119182746878547,0.1070663811563169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027447763159227,0.005504698762203,0.0083121048198029,0.010891431125922,0.013629521135929,0.0163425313104571,0.0188259996534466,0.0212776813960608,0.0239258411348677,0.0266790834757514,0.0293816229068027,0.0316647335954098,0.0341627354854623,0.0365315134484142,0.0388751972117099,0.0413778856582141,0.0437049913086665,0.0460604050496465,0.0483864268804253,0.0506956078374244,0.0680699265687583,0.0845545961992766,0.1007011770131326,0.1152262077370821,0.1297849031959045,0.1479118697057394,0.1623371119822015,0.1760498262246644,0.1896325529305103,0.2012745675574358,0.2162031360908562,0.2302872513962859,0.2427963433435389,0.2544622875296121,0.2654495924778663,0.2782231756809059,0.2884964625926132,0.298101336928435,0.3081960526613945,0.3159182646678787,0.3232201862421147,0.3306755699793371,0.3376480731301154,0.3433917149859525,0.3497752958705316,0.3550447783196767,0.3603989315225803,0.3641577424757651,0.3689581234338268,0.373217647755849,0.3722240903894007,0.3704742653630901,0.3687953249313525,0.3662615079995953,0.3644297098001903,0.3617898641812552,0.3582690904476381,0.3594279695882565,0.3599471725297155,0.3607979495635653,0.362082245308185,0.3628609965090447,0.3637955403666434,0.364633048176497,0.3669626825835881,0.3670342975967992,0.3678412196174313,0.3719786842606103,0.3763658294309635,0.3785920693530262,0.3824571086886528,0.3855762558052634,0.3894477130385272,0.3919847328244275,0.3970087088224157,0.3951073985680191,0.3971424181901982,0.3977687626774848,0.4032524807056229,0.3928299008390541,0.0,2.451549839603062,68.97533836737983,212.5701165857457,289.99313080139177,APP_public_baseline,76 +100000,95762,51310,484.92094985484846,6885,70.40370919571437,5431,56.08696560222218,2139,21.89803888807669,77.37657405990127,79.72179729326989,63.3458979718325,65.07905034345382,77.10476072147752,79.45234026047463,63.24401825450371,64.98120230558466,0.2718133384237546,269.457032795259,0.1018797173287922,97.84803786915576,193.64224,135.53483633587732,202211.98387669428,141533.00509166197,370.68206,235.8166568932216,386471.241202147,245637.55192990944,435.30718,209.6677725681474,451171.83225078846,216256.4966940282,3867.81951,1781.0791538364062,3999386.552077024,1820317.0824154045,1302.12094,579.5877290292702,1346452.4550447986,591943.139271601,2094.2969,884.3724847998345,2147648.5453520184,889692.5001237808,0.43259,100000,0,880192,9191.453812577014,0,0.0,0,0.0,30552,318.38307470604207,0,0.0,39647,410.507299346296,1445407,0,51949,0,0,17445,0,0,70,0.7309788851527745,0,0.0,1,0.0104425555021824,0,0.0,0.06885,0.1591576319378626,0.3106753812636165,0.02139,0.3385979495705181,0.6614020504294819,24.49472514410252,4.273101752905874,0.322224268090591,0.2482047505063524,0.2216902964463266,0.2078806849567298,11.28581815522696,5.954366146974859,22.816474210878702,14055.863541979234,61.83771995946896,16.30287195680954,19.788059537180565,12.593314324341502,13.153474141137345,0.5672988399926349,0.7967359050445104,0.7017142857142857,0.5651018600531443,0.117109634551495,0.7342019543973941,0.9115384615384616,0.854122621564482,0.7535714285714286,0.1450381679389313,0.5015400410677618,0.7246376811594203,0.6452623335943618,0.502944640753828,0.1093418259023354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024207434417097,0.0052306663017364,0.0078938290143874,0.0104331748547279,0.013017655194858,0.0153868086883025,0.018129722344016,0.0207661207987911,0.023431030781341,0.0256727845963292,0.0281034765496884,0.0305786226788885,0.0328868236818027,0.0350356844934655,0.0374898125509372,0.04003266284911,0.0421964958787226,0.044577463327593,0.0472512163679461,0.0497615030515111,0.0668830694402404,0.0830893118594436,0.0981329475527041,0.1135305554095948,0.1278889626608492,0.1459315476819652,0.1608672603901611,0.1744381544224057,0.187860469090443,0.2006091740757821,0.2151282410349768,0.2288447387785136,0.2424789737675309,0.2543035051817157,0.2656301614217446,0.2774149916294333,0.2880231428220393,0.2970222347312131,0.3062181401210249,0.314516129032258,0.3227908160903578,0.3301709111753214,0.3369180715764566,0.3425072788488036,0.3473383568303354,0.3530260432080497,0.3586709034953836,0.3638605993566515,0.3681411119163474,0.3720875003298414,0.3705921132293783,0.3687794008417925,0.366839334478196,0.364419394464918,0.3631678992545071,0.3599203614365571,0.3577852370246049,0.3580563079701223,0.3588893068426632,0.3584770884674452,0.3595720720720721,0.3603719457908794,0.361273131635265,0.3625759742581337,0.364040997016649,0.3675360956632986,0.3691675465882823,0.3736951326877122,0.3766434648105182,0.3800517618952817,0.3821212676314343,0.3848990060916961,0.3883832638098849,0.3914072039072039,0.3939109190001879,0.3955808980755524,0.3971869744687357,0.3964307198716663,0.3966221737946063,0.3996971990915973,0.0,2.438330952672891,67.43734288527664,197.2687625576175,293.52412172401216,APP_public_baseline,77 +100000,95733,51368,482.9369183040331,7084,72.45150575036821,5611,57.82749939937116,2193,22.39562115466976,77.3313489084019,79.70014405286595,63.31030609897547,65.06409136471989,77.05122855464506,79.4245871612501,63.20523708007068,64.96487983439388,0.2801203537568426,275.5568916158495,0.1050690189047856,99.21153032600216,193.14306,135.1334361419243,201751.57991497184,141156.35793501127,369.82232,235.77905440864257,385501.6660921521,245485.0888295576,445.63892,215.00128565316956,461212.5912694682,221282.30791191937,3972.20554,1832.532313297854,4093053.200045961,1858078.6451119368,1335.02026,596.3796097612235,1374272.215432505,602762.8426686075,2139.20278,902.378232628552,2185852.527341669,898566.2278199745,0.43245,100000,0,877923,9170.526359771447,0,0.0,0,0.0,30524,318.00946382125284,0,0.0,40540,419.2702620830853,1444455,0,51928,0,0,17193,0,0,61,0.6267431293284447,0,0.0,2,0.0208914376442814,0,0.0,0.07084,0.1638108451844143,0.30957086391869,0.02193,0.3340954942837928,0.6659045057162071,24.66010153562261,4.18999786103412,0.3256104081268936,0.2509356620923186,0.2163607200142577,0.20709320976653,11.099304464158967,5.925980333564099,23.34218869130295,14216.07672722149,64.17950519130495,17.18521985986104,20.644702709274338,13.022406473126487,13.327176149043096,0.580110497237569,0.7997159090909091,0.6940339354132458,0.6222030981067126,0.1136738056013179,0.7326860841423948,0.9246323529411764,0.8533916849015317,0.7163120567375887,0.1412213740458015,0.5221347761928185,0.7210648148148148,0.6408759124087591,0.5920454545454545,0.1060924369747899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029483581393935,0.0057697962825881,0.0085460543009388,0.0114204429993903,0.0141305011292193,0.0169465633306514,0.019302342180665,0.0221264690566384,0.0247726784563614,0.0274392117500051,0.0300192812602559,0.0326302487337285,0.0351861190297317,0.0375882504509147,0.0400408769973987,0.0425835539377895,0.0451283538195487,0.0475172521143568,0.0500951173113506,0.0525915586850547,0.0695814672137137,0.0859086390037151,0.1011057954593142,0.1164480811097906,0.1309450994452998,0.1489003839928913,0.1644146773799794,0.1784272152910216,0.1922197040964679,0.2041217195298663,0.2182810074176298,0.2317300400823312,0.2442772199594886,0.2556313582058498,0.2667276111594506,0.2781369559190463,0.2885038596020867,0.2983639414036549,0.3081315487745348,0.3157339691418877,0.3232974744375094,0.331115042588839,0.3378391197116296,0.3447903026225687,0.3504163217607245,0.3563713569762131,0.3603999849629713,0.3649535509028583,0.3698016717719745,0.3740780882391816,0.3723389903677522,0.3703168044077135,0.3689323125942844,0.3670291217212759,0.3651029442348257,0.3619752178774372,0.359862029682605,0.3600387367868163,0.3605293303014242,0.3612743084697941,0.3621055000281283,0.3636831479355528,0.3647562485572181,0.3662795911047345,0.3678560227738776,0.3690105461492162,0.3699597062269597,0.3743520040460235,0.3774346625115093,0.381126173096976,0.386463683052091,0.3907041202494536,0.3967601088400936,0.401559156221339,0.4060101104662048,0.4064516129032258,0.4101868595539482,0.4139433551198257,0.4163961038961039,0.4233825198637911,0.0,3.019108343498283,67.28520468211245,214.1684455023172,301.08701341559663,APP_public_baseline,78 +100000,95474,51399,486.7398454029369,7062,72.36525127259777,5591,57.81678781657833,2180,22.372583111632487,77.22623088476638,79.71371458482373,63.24095407219974,65.076374513946,76.94997036165687,79.43794047402561,63.13705945773446,64.97540539529292,0.2762605231095136,275.77411079812464,0.1038946144652825,100.969118653083,192.5374,134.717592992262,201664.05513542955,141103.33983635926,371.8794,237.51654856194864,388746.9991830237,248017.387891812,443.80604,214.81761905085892,459770.3458533213,221206.27865845288,3988.97465,1846.2690347431403,4129016.706118943,1884935.1116952412,1335.82125,600.5409001252101,1376571.118838637,606713.5791643996,2139.42568,913.9244599100144,2197341.642750906,921916.8635523936,0.43237,100000,0,875170,9166.547960701342,0,0.0,0,0.0,30655,320.2756771477051,0,0.0,40372,417.81008442088944,1439627,0,51838,0,0,17264,0,0,84,0.8798206841653224,0,0.0,1,0.0104740557638728,0,0.0,0.07062,0.1633323311053033,0.3086944208439535,0.0218,0.3414964145582465,0.6585035854417535,24.094436671817025,4.317180088833802,0.3144339116437131,0.2521910212842068,0.2198175639420497,0.2135575031300304,11.274713756888788,5.836572095981631,23.53958529242884,14204.022036424722,64.14121163410826,17.259828605713984,19.907127875601923,13.365611836544362,13.60864331624799,0.5712752638168485,0.8184397163120567,0.699089874857793,0.5636515912897823,0.1122864117168429,0.7407407407407407,0.9381818181818182,0.8623655913978494,0.730909090909091,0.1521739130434782,0.5053416149068323,0.7418604651162791,0.6403712296983759,0.5136017410228509,0.1007345225603357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027967776257789,0.0052542424457585,0.0078684996040367,0.010574478901881,0.0132146929467339,0.0161748968047699,0.0189185603934734,0.0215294382114319,0.0241439634976009,0.0265875699268457,0.0291817211364756,0.0318733292206456,0.0342580007413814,0.0364904029621378,0.0390449031884776,0.0410105088781901,0.0435161460980695,0.0459454683423249,0.0481012658227848,0.0505195008614838,0.0677155298748063,0.0851624139667617,0.1009475333634805,0.1157417654808959,0.1304651089058685,0.1488716703941998,0.1636346237679556,0.1772890724201585,0.1904879224465749,0.2020339930551822,0.2175274541351272,0.2317614258903678,0.2448421006717264,0.256677045873169,0.2680983490774256,0.2793797243219209,0.289741695765064,0.2995352719561441,0.3085064011379801,0.3177814778664523,0.3244664183001984,0.3317608402276594,0.3382773812775356,0.3447288649376894,0.3506484000439179,0.3554864988671676,0.3599084253691916,0.3646806006804983,0.3691729225484966,0.3737407211028632,0.3722226732700062,0.371959725425742,0.3705159566194873,0.3685690269847251,0.3667651711889197,0.3637580794090489,0.3621661201489924,0.362669485227329,0.3636238610967853,0.3640690385962392,0.3647165157135594,0.3661448607413882,0.3665572528721121,0.3676067723537072,0.3695274831243973,0.3705271962152696,0.3720052604494253,0.375493571721894,0.3800698930424653,0.3832954228021868,0.3860686935387719,0.391971853510315,0.39229752690202,0.3948865791669828,0.3995903547155758,0.4033731553056922,0.4056994024819979,0.4022185702547247,0.3958448753462604,0.4047894940131324,0.0,2.816633363135048,68.59069160006051,216.1111961798975,292.94321323475407,APP_public_baseline,79 +100000,95682,51373,483.5810288246483,7036,71.92575406032482,5525,56.87590142346523,2149,21.905896615873413,77.36399481233721,79.74463846079144,63.33329461681414,65.0956583744063,77.0875000564356,79.47636714888402,63.22944767408434,64.99890954432438,0.2764947559016093,268.27131190741227,0.1038469427298025,96.74883008192126,193.30212,135.31528713884293,202025.3548211785,141421.65416571873,372.06645,237.2711444182191,388026.3476934011,247147.91122491067,443.51806,215.38216651846025,457614.4938441922,220629.37602500684,3898.82675,1811.4636817717617,4016519.742480299,1834956.7857818175,1286.4801,577.2169899405507,1323095.712882256,581824.5123853496,2097.35826,893.1103058646949,2139771.6393888085,887634.4663213794,0.43318,100000,0,878646,9182.970673689932,0,0.0,0,0.0,30757,320.5618611651094,0,0.0,40280,415.2087121924709,1444912,0,51941,0,0,17381,0,0,86,0.8883593570368512,0,0.0,0,0.0,0,0.0,0.07036,0.1624267048340182,0.3054292211483798,0.02149,0.3402033898305084,0.6597966101694915,24.28798067928608,4.310036977516382,0.3143891402714932,0.2532126696832579,0.2121266968325791,0.2202714932126696,11.606420473523071,6.227214716906905,23.18123458930758,14239.632334338328,63.42750793351363,17.184776913246925,19.7698887974058,13.42895817713742,13.043884045723487,0.5795475113122172,0.8148677626876341,0.6966033390903857,0.5875102711585867,0.1168941979522184,0.7550644567219152,0.9265734265734266,0.8781925343811395,0.7482517482517482,0.148854961832061,0.5061601642710473,0.7376058041112454,0.6213355048859935,0.5381310418904404,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032218518556043,0.0057500988773616,0.0087610655404856,0.0117385206415025,0.0144182828303384,0.01729934592579,0.0199110530825411,0.0225295150945708,0.0248330316140447,0.02742194779795,0.0299033984863711,0.0327208865244585,0.0351992429385504,0.0377026038392976,0.0401572852808223,0.0427122429355749,0.0451866201195446,0.0475399798673737,0.0499615360625402,0.0522954133411132,0.0699440197184275,0.0861386760457229,0.101496107602241,0.1168978681783284,0.131095696907086,0.1497800617518927,0.1644325195664623,0.1784494590022661,0.1911340778544126,0.2041374135805777,0.2188044858686527,0.2326990274457198,0.2451740600972257,0.2563468711374599,0.2675109477807363,0.2784686769803213,0.2891063478425815,0.2986310307202556,0.3076146049689582,0.3157297965915338,0.3232748646272042,0.330717226536914,0.3377421493866338,0.3449230879902166,0.3508117435473679,0.3555426853312303,0.3606329573479888,0.3646862797471413,0.3687690874268854,0.3744314511344609,0.3729278794402583,0.3711999340015675,0.3690337110282215,0.3674728386500231,0.3667141838916607,0.3635126040137053,0.3616439654899978,0.3620661427635887,0.3628400027268389,0.3632274990630187,0.3645040315019688,0.3649723101265822,0.3670936497620495,0.3682628686778064,0.369167429094236,0.3696130282243284,0.3719031934698553,0.3751615037973088,0.3801289050117987,0.3835229532977962,0.3879223973039439,0.3909216247746314,0.3952811689543931,0.3995557938270659,0.4053977002755868,0.409205321826681,0.4109226699859966,0.4141852770885029,0.4202695115103874,0.4223186119873817,0.0,3.387555511107911,70.77764813112684,202.8496576164599,288.9377547911069,APP_public_baseline,80 +100000,95650,51130,482.5300575013068,6873,70.2247778358599,5462,56.29900679560899,2126,21.67276529012023,77.31725194233033,79.72700912810211,63.30264576078415,65.08564994394341,77.0436293623504,79.4572329555004,63.19943122755358,64.98725765090578,0.2736225799799285,269.7761726017092,0.1032145332305702,98.39229303763376,193.0522,135.09301882918942,201831.8870883429,141236.8205218917,368.7133,235.0861738779384,384697.3340303189,244998.308211456,439.83715,212.2898399297493,455413.382122321,218452.1625734665,3892.58978,1794.3730279284212,4014508.9911134345,1821638.381569023,1293.53737,579.3615475624248,1333227.893361213,586904.5631780904,2075.69404,888.0700509365357,2119205.373758495,885380.4196469273,0.43082,100000,0,877510,9174.176685833769,0,0.0,0,0.0,30483,317.8672242550967,0,0.0,39936,413.0998431782541,1446713,0,52053,0,0,17151,0,0,70,0.7213800313643491,0,0.0,0,0.0,0,0.0,0.06873,0.1595329836126456,0.3093263494834861,0.02126,0.3451720310765815,0.6548279689234184,24.0906350515297,4.290806006186945,0.3200292932991578,0.2464298791651409,0.2193335774441596,0.2142072500915415,11.213512954329891,5.98115409788561,22.889347475673787,14118.913276053538,62.59695283884607,16.31183373417888,20.20985563851752,13.08885578913285,12.986407677016832,0.5684730867813987,0.787518573551263,0.700228832951945,0.5743589743589743,0.1243739565943238,0.7276214833759591,0.9221789883268484,0.8255813953488372,0.6914893617021277,0.1706349206349206,0.504617752693689,0.7043269230769231,0.6477272727272727,0.5371621621621622,0.1120507399577167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029379881872612,0.0058915986411803,0.00842323188244,0.0109441209645459,0.0135219005952078,0.0161352755424264,0.0184134821373921,0.0210342432167374,0.0238075750445049,0.0262071367832225,0.0289422386375294,0.0315563410674284,0.0339897269087053,0.0366517516547415,0.0392353293536859,0.041509316834449,0.044003773232852,0.046595912602808,0.0488591553692008,0.0510388107623505,0.0678403510604952,0.0832469341376313,0.0992514671453917,0.1150640823284298,0.1295604650672068,0.147823970196012,0.1631037044899692,0.1771867410847428,0.1897803196322625,0.2017748114128743,0.2169022582313394,0.2305101996621767,0.243133797067372,0.2551518735080919,0.2665579514527805,0.2780260108877629,0.2878067296313662,0.2969685376063375,0.3067058569855987,0.315724970506374,0.3240659289781934,0.3310089038130784,0.3378613640939398,0.3433759504905371,0.3492515170308757,0.3545918996964237,0.3596872611544774,0.36460163471087,0.3684237806458301,0.372401504652544,0.370833726113363,0.368560105680317,0.3674041318706079,0.3657059435707678,0.3636011731951702,0.3608914008385679,0.358104572053856,0.3582624714222273,0.3601818772328678,0.3605008394955882,0.3601043073690529,0.3609720380741297,0.3611426409383276,0.3629574811625403,0.3641661830141227,0.3642248722316865,0.3648327754413069,0.3682916837361737,0.3709995770477935,0.3738053520229372,0.378025302530253,0.3806803011694345,0.3820901197794537,0.386747542997543,0.3889571712205729,0.3909640697260761,0.3956247111384994,0.3990237949969493,0.4021650879566982,0.4014323407463249,0.0,3.1453149242143,68.12737583054036,205.0822551545626,286.9021951137111,APP_public_baseline,81 +100000,95855,51848,489.38500860674975,7002,71.83767148296907,5541,57.23227791977466,2075,21.25084763444786,77.4717338221379,79.75778558105884,63.40399372213196,65.09049990705498,77.21699621435499,79.50374295538698,63.30985669522179,64.99923266464687,0.2547376077829142,254.04262567185756,0.0941370269101682,91.26724240810802,194.5438,136.19097896450597,202956.34030567,142080.2033952386,371.8291,236.98618507099545,387329.44551666576,246655.59967763335,448.72709,216.6209255044091,464459.6838975536,223194.2388049946,3884.84299,1779.1450200744607,4013293.557978196,1816564.5073187468,1257.64259,558.794122545723,1299459.068384539,570411.8600271005,2024.7301,843.5730620729273,2075522.215846852,850348.4135543224,0.43597,100000,0,884290,9225.288195712274,0,0.0,0,0.0,30648,319.1278493557978,0,0.0,40709,421.0213343070262,1442826,0,51817,0,0,17285,0,0,82,0.8554587658442439,0,0.0,2,0.0208648479474205,0,0.0,0.07002,0.1606073812418285,0.2963439017423593,0.02075,0.3395355154149124,0.6604644845850876,24.418133611424416,4.219493575390341,0.3308067135896048,0.2461649521746977,0.203212416531312,0.2198159177043855,11.341499296317917,6.094803485516286,22.00830016003161,14193.456227031798,63.00808350096099,16.608532293034315,20.69761041849368,13.50328265074363,12.198658138689364,0.5809420682187331,0.7932551319648093,0.7124931805782869,0.5911330049261084,0.0985790408525754,0.7656149388280747,0.9237918215613384,0.8912621359223301,0.7427536231884058,0.125,0.5090270812437312,0.7082324455205811,0.6426403641881638,0.5467091295116773,0.0920177383592017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028646624152242,0.0057541712676398,0.0084061733152162,0.0106374340235485,0.0134033818388748,0.0158006653982724,0.0182646076114416,0.0210630463387019,0.0236096644404958,0.0262619651476724,0.0287897254170976,0.031280447156556,0.0339627293460171,0.0363933818989998,0.038729563119807,0.0411731295502659,0.0433437813570017,0.045903984080262,0.0482124129051016,0.0504220045999021,0.0685401459854014,0.0843639252746793,0.1000817421558969,0.114890352951066,0.1294875308303645,0.1475482629564629,0.1624498971433418,0.1764574468085106,0.1892962377759747,0.2015604402670753,0.2161103578883939,0.2304234119350725,0.2433010509858421,0.255089898802441,0.2656035495810132,0.2776414406048949,0.2878450330830753,0.2976477853253242,0.3070397970508958,0.3159772243945942,0.3239994457402831,0.3311595893607092,0.3381948298869849,0.3448148015260784,0.3506290261922382,0.3561731510086526,0.3617699247744483,0.3664401397268974,0.371729576008273,0.375467474321833,0.3738168226309562,0.371853641129807,0.3704244944988548,0.3683437067773167,0.3669783223932789,0.3645690207932582,0.3626755008676447,0.3635426720541805,0.3654880206915328,0.365644716964365,0.3661122622314312,0.3675715044979429,0.3691880493559095,0.36950225034535,0.3705911931614108,0.3720555771977665,0.3735503445147021,0.3784180755648614,0.3822957198443579,0.3880597014925373,0.3906784236098614,0.3935221817798174,0.4016326530612245,0.4026231508311728,0.4061669829222011,0.4124462494027711,0.4139875057138503,0.4178535606820461,0.4177765697200326,0.4181818181818181,0.0,2.276952986103791,68.41043741117625,203.0845918149864,298.4911077349539,APP_public_baseline,82 +100000,95733,51635,487.8568518692614,6930,70.96821367762422,5474,56.52178454660357,2092,21.403277866566388,77.34438518034166,79.69768869538473,63.33412346583962,65.07240545725364,77.08304708180476,79.43764191551006,63.23775047333463,64.97907531292084,0.2613380985368962,260.0467798746706,0.0963729925049889,93.3301443327963,193.4306,135.43402871495667,202052.1659197978,141470.5782906173,368.82495,235.5924630185814,384611.5863913176,245443.3097104939,449.98962,218.00341353718616,465633.58507515694,224272.43719806627,3855.10916,1778.5900580122263,3986719.041500841,1817849.01547153,1278.95346,569.3629519090555,1321938.182236011,581035.5130091358,2036.7677,845.0594407580255,2087723.146668338,851274.9652329595,0.43246,100000,0,879230,9184.189359990807,0,0.0,0,0.0,30520,318.1348124471185,0,0.0,40904,422.87403507672377,1441418,0,51890,0,0,17172,0,0,53,0.5536230975734595,0,0.0,0,0.0,0,0.0,0.0693,0.1602460343153124,0.3018759018759018,0.02092,0.3514144465806097,0.6485855534193903,24.222087282610847,4.227609444247911,0.3202411399342346,0.2563025210084033,0.2086225794665692,0.2148337595907928,11.450009533370348,6.188453142689368,22.268535258705896,14122.158834667687,62.83192638519995,17.16204384904137,20.18675510889846,13.152987018339555,12.330140408920556,0.5750822067957618,0.7840342124019958,0.6936679977181974,0.5994897959183674,0.1112084063047285,0.7574812967581047,0.9184027777777778,0.8378378378378378,0.7655172413793103,0.1363636363636363,0.4994832041343669,0.6904474002418379,0.6331983805668017,0.5451467268623025,0.1052060737527115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023702443174911,0.0049273569697768,0.0077517020261975,0.0102170358408742,0.012902373060577,0.0158297109932507,0.01841584965655,0.0210827083014439,0.0237251075395163,0.0262969405504962,0.0286703828182637,0.03105819562763,0.033704168294639,0.0361067342251882,0.0385817592869595,0.0412429728835978,0.0437631325625446,0.0462620166132594,0.0484088877803412,0.0504234066266001,0.0680990113480952,0.0848716982711708,0.1000828604692629,0.1149295952383456,0.1289791958834632,0.1470473169442241,0.1619629429295661,0.1753071971913399,0.1890506349392829,0.2008490657061074,0.2157966692861679,0.2301018973238431,0.2427912843039185,0.2548670244744925,0.2659994500962331,0.2776830591413325,0.286905094013279,0.2975158283008895,0.3071180594949059,0.3156984666826983,0.3233674272226593,0.3304079196798427,0.3372592653969531,0.3440687321509995,0.3496098023484793,0.3550365972573657,0.3600426278836509,0.3649937520720169,0.3689548290038518,0.3730591857499636,0.3716160676988587,0.3698594302865088,0.3678510998307953,0.3665325964292948,0.3657716122886401,0.3636112348162594,0.3587638361733551,0.3595189523558831,0.3599698583685842,0.3615582743077913,0.3629744994652206,0.3634871023896186,0.3647806658694694,0.3662243342598404,0.3681455212178234,0.3690025334970094,0.3681580675556063,0.3696304011615062,0.3728461186088305,0.3771460512656712,0.381385360504432,0.3817425172064237,0.385110816442508,0.3893818733409177,0.3906176553539532,0.3946963418965313,0.3965118073776817,0.4021964359718193,0.4088490618874265,0.4133175728920409,0.0,2.5618767148089963,70.35525961737754,205.59894852884807,282.38322521998583,APP_public_baseline,83 +100000,95656,51282,485.13423099439655,7059,72.1439324245212,5601,57.81132391067993,2168,22.204566362800037,77.28108161739658,79.66816644047749,63.29287913429015,65.05581677850019,77.00387549075364,79.3915441158333,63.1896016459221,64.9551518332762,0.2772061266429375,276.6223246441939,0.1032774883680502,100.66494522398273,191.54212,134.1223705530534,200240.11039558417,140212.78033061532,369.24896,235.45477189337117,385286.05628502136,245416.2331643755,445.74425,215.358769395854,460493.8111566447,221019.23078370732,3958.38084,1830.176506259604,4089085.93292632,1864274.5162978447,1302.19739,584.4885381286546,1344622.5328259598,594320.5634028756,2118.93446,898.5837849486268,2172568.2027264363,904376.1270239168,0.43181,100000,0,870646,9101.82319979928,0,0.0,0,0.0,30497,318.0459145270553,0,0.0,40578,418.7818850882328,1449126,0,52121,0,0,17167,0,0,57,0.595885255498871,0,0.0,2,0.0209082545789077,0,0.0,0.07059,0.1634746763622889,0.3071256551919535,0.02168,0.3325232887808829,0.667476711219117,24.314821878403016,4.216151744859504,0.3179789323335119,0.2526334583110159,0.2094268880557043,0.2199607212997679,11.344528827751647,6.012366713745097,23.361575840600704,14100.185816944364,64.48489122194854,17.347382994576808,20.47653127547738,13.731588307992052,12.929388643902302,0.578111051597929,0.8049469964664311,0.6973610331274565,0.586038961038961,0.1150895140664961,0.7329942784488239,0.9187725631768952,0.8550420168067226,0.730909090909091,0.1343283582089552,0.5176266137040715,0.7317073170731707,0.6398467432950191,0.5444096133751306,0.1093922651933701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023907207617889,0.0049777471385557,0.007286603001918,0.0100273287886946,0.0126517909810223,0.0153863386420105,0.017894650977833,0.0205313023236819,0.0230922565806286,0.0259368059038475,0.0283602136756518,0.0310074335701671,0.033628136569313,0.0360101384767556,0.0382487718284275,0.040458662475702,0.0427918829050001,0.0449308755760368,0.0473302612006283,0.0498738821371245,0.0676682303039167,0.0843324293477691,0.1005048861644396,0.1158657842404856,0.1293232606723079,0.1477178950041262,0.1622235670074635,0.1758878544493917,0.1887851666506271,0.2002727721815331,0.2154191342243508,0.2291443125779006,0.2426127019049589,0.2544656058000854,0.2654345478189953,0.2773371199094772,0.2877251433874087,0.2976889359640325,0.3067942844801127,0.3149609912804038,0.3230524937121133,0.3310320576686397,0.338050724809604,0.3435607880826525,0.3480256110624208,0.3539166296241418,0.359060234314242,0.3635714103447396,0.3685686829597693,0.3733331567726472,0.3709914998851336,0.3696526003177015,0.3678322074464318,0.3664332820080764,0.3651495681797806,0.3611329177249288,0.3588646843695341,0.3602039637617782,0.3612074590473574,0.3616185883070082,0.3617317909491691,0.3629319788865651,0.3643084982783751,0.3646507224488876,0.3659778812572759,0.3653291371623394,0.3665211647808856,0.3699277200101445,0.3735620015526854,0.377125748502994,0.3814211152824833,0.3858133333333333,0.3895536562203229,0.3930393724773437,0.3958470356102602,0.3976806840810589,0.4004272852128796,0.4069767441860465,0.4145218098076402,0.4211136890951276,0.0,2.890860801899252,68.85291710132229,218.84285009887887,292.4812970525458,APP_public_baseline,84 +100000,95710,51009,481.329014732003,6968,71.28826663880473,5462,56.32640267474663,2081,21.262146066241773,77.3612597271838,79.72732913539535,63.34108899169471,65.08921478748645,77.088767425053,79.4587390271084,63.2379388173917,64.99087820185385,0.2724923021308001,268.59010828695773,0.1031501743030105,98.33658563260884,193.18838,135.1710952074225,201847.64392435484,141229.85603115923,369.81201,236.5298427879807,385582.27980357327,246326.0190032189,436.20405,210.4495946106965,451434.5836380733,216427.5930628948,3870.06767,1807.185129891683,3992603.0299864174,1837424.8630401369,1268.62479,578.2498350949832,1304367.3701807542,583114.1664844452,2043.00862,881.315382841673,2089543.9765959668,881117.1461630168,0.4303,100000,0,878129,9174.892905652492,0,0.0,0,0.0,30582,318.7754675582489,0,0.0,39736,410.82436527008673,1446716,0,52007,0,0,17362,0,0,73,0.7522724898129768,0,0.0,0,0.0,0,0.0,0.06968,0.1619335347432024,0.2986509758897818,0.02081,0.3457752255947497,0.6542247744052502,24.396520607897543,4.216921831829335,0.3284511168070304,0.2456975466861955,0.2173196631270597,0.2085316733797144,11.087637958106637,5.826423687880822,22.45920367896625,14054.50314947798,62.54399785097479,16.276596661959665,20.3280569818067,12.756961189465375,13.182383017743062,0.574697912852435,0.7980625931445604,0.7023411371237458,0.591747146619842,0.1128896377422072,0.7323232323232324,0.9115384615384616,0.8662674650698603,0.7191780821917808,0.1549815498154981,0.5103145951521403,0.7262773722627737,0.6388244392884764,0.5478158205430933,0.1004366812227074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027653690704105,0.0053329548219644,0.0077733352276186,0.0106876898538062,0.0132411268178582,0.0154375674629844,0.0179165052107764,0.0208097207331393,0.0234441297657631,0.0259725634725634,0.028421149764695,0.0310278953206523,0.0334464671397716,0.0360457809232417,0.0384293896083793,0.040743957157331,0.0433184209436228,0.0456512489492637,0.0480944210471585,0.0505761977202158,0.0680588910932442,0.0843774532893704,0.0994052052409076,0.1140123034859876,0.1285062245037789,0.1466539803361877,0.1620303104219915,0.1756092369905288,0.1892359627382275,0.2011515203499592,0.2156303172586099,0.2295340936140745,0.2413084376393314,0.2535425322545375,0.2644723529670523,0.2763865825307207,0.286668823273506,0.2968317855777663,0.3060231397459165,0.3135400084746733,0.3221615493185867,0.3287304445431798,0.3348560337992166,0.3418836186756442,0.3468837976895447,0.3530019939443172,0.358531614548819,0.3636803134780285,0.367535984038763,0.3717923319730047,0.370915604881071,0.3692572214580468,0.3677131308009746,0.3655503499334837,0.3637553545930509,0.3607042620738309,0.3577040040547389,0.3578490950300562,0.3579593022262468,0.3583316945849795,0.3592996415636084,0.3596921062550836,0.3610562166253206,0.3618648248643315,0.3637943519188993,0.3634576057888941,0.3644427857840041,0.3666402661175352,0.3709432496380266,0.3732518181091664,0.37501714599241,0.3786454183266932,0.381639468212463,0.3861250570515746,0.3882176641378664,0.3900047258979206,0.3914503816793893,0.3854441959747916,0.3820382882882883,0.3878127522195319,0.0,2.9333754190035437,68.98905540579558,200.53949208527084,289.7174983402267,APP_public_baseline,85 +100000,95639,51140,483.2861071320277,6948,71.22617342297599,5511,56.91192923388994,2168,22.260793191062223,77.2430810454354,79.64871571221549,63.27207635196621,65.05054164037435,76.9703049673639,79.37532192372281,63.170918266121234,64.95146716761609,0.2727760780715016,273.39378849268314,0.1011580858449789,99.07447275826088,192.5814,134.8112881343282,201362.37309047565,140958.03462429368,369.45923,235.34538910582165,385601.29235981137,245372.49637263216,439.93485,212.42777713915652,454856.617070442,218190.27656796743,3906.14921,1801.5758233960016,4039649.442173172,1839146.2793379289,1290.68347,573.7894626893217,1332852.1941885634,583358.011088616,2110.97242,892.8729535445499,2170295.402503163,903704.8849002204,0.43084,100000,0,875370,9152.835140476163,0,0.0,0,0.0,30483,318.0083438764521,0,0.0,40011,413.2519160593482,1445010,0,51941,0,0,17187,0,0,73,0.7632869436108701,0,0.0,0,0.0,0,0.0,0.06948,0.1612663633831584,0.3120322394933794,0.02168,0.3412894375857339,0.6587105624142661,24.22839004395337,4.187878852175058,0.3170023589185265,0.2538559245146071,0.2108510252222827,0.2182906913445835,11.253784070368315,6.035073081158598,23.41228926143376,14123.816293478683,63.29515918630115,17.02887239576484,19.844663740349297,13.650117341524489,12.771505708662524,0.57267283614589,0.7862759113652609,0.6977676016027475,0.5885286783042394,0.1110154905335628,0.7330703484549639,0.907843137254902,0.8477801268498943,0.735973597359736,0.1191489361702127,0.5115288220551378,0.7165354330708661,0.6420722135007849,0.5388888888888889,0.1089536138079827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00281741527485,0.0054165905909561,0.0079693004273981,0.0107194748981395,0.013131528892415,0.015927491216457,0.0183940861585521,0.0212077274955072,0.0239181119109947,0.0264710098920679,0.028919814174811,0.0316501843351099,0.0340501239214718,0.0363449057381271,0.0386544733908591,0.0409674183908759,0.0434755585941141,0.0460310540955702,0.0482926474106279,0.0504571374956996,0.0679220046395954,0.0842655438243673,0.1000283455639192,0.1149061131694173,0.1294534936503077,0.1470236393855665,0.1620987103490768,0.1762699216459677,0.1895876575439197,0.2014476566862837,0.2157577850190984,0.2294774501300954,0.2426064507695827,0.2544880992803706,0.2656597949509425,0.2772204713924275,0.2877894948726837,0.2982988174018917,0.3075786002615271,0.3157592860256498,0.3231068906744582,0.3309277505066954,0.3368883832817851,0.3432893157262905,0.3497175278819461,0.3555852082483907,0.3604000401545952,0.3650021699726838,0.3697369788959351,0.3738445239041186,0.3720380746641463,0.371168859830616,0.3690824533876143,0.3666690840525056,0.3649350649350649,0.362320401193736,0.3584272165998345,0.3585070734082768,0.3590113285272914,0.3588205717569315,0.3604530438886267,0.3619765193645478,0.3623188405797101,0.3627905928996215,0.3648115422789222,0.365279861056288,0.3666330209084354,0.3706182787171271,0.3732179587204766,0.3769679887255889,0.3826006478482184,0.3850500484339683,0.3911159263271939,0.3926040061633282,0.3921981068935845,0.3941317365269461,0.3963710308149538,0.3984698097601323,0.395978776877967,0.391643889105818,0.0,2.760864123983833,66.53426816763952,213.4542717238764,294.0355615113928,APP_public_baseline,86 +100000,95811,51707,486.9378255106407,7092,72.56995543309223,5633,58.14572439490246,2191,22.39826324743505,77.44904619750217,79.77398319099743,63.38601454967061,65.10616226669723,77.17476373360131,79.50304988328212,63.284568153358045,65.00920002904249,0.2742824639008603,270.93330771531043,0.1014463963125678,96.96223765473631,192.8993,134.9958839505561,201333.1454634645,140898.1055938839,372.42845,237.4181802384564,388086.8167538174,247173.69637980644,445.34321,214.91693113524676,460918.7462817422,221330.21370134735,3991.0706,1834.722071773056,4120466.000772354,1869838.694693779,1311.51228,586.2231975430662,1354298.024235213,597298.2199779425,2144.14852,897.354091503827,2193894.0622684243,899336.3718724463,0.43661,100000,0,876815,9151.50661197566,0,0.0,0,0.0,30720,319.96326100343384,0,0.0,40528,419.0646167976537,1452298,0,52171,0,0,17644,0,0,66,0.6888561856154304,0,0.0,2,0.0208744298671342,0,0.0,0.07092,0.1624332928700671,0.3089396503102087,0.02191,0.3448924731182796,0.6551075268817205,23.95320604835455,4.193246336504164,0.3101366944789632,0.257411681164566,0.2169359133676549,0.2155157109888159,11.169595948172567,5.88732449621972,23.270586119024003,14267.0843397997,64.39448986055628,17.713570603155695,19.92495446561759,13.411756508734692,13.3442082830483,0.5764246405112728,0.8048275862068965,0.7195191757298226,0.57166392092257,0.1055646481178396,0.7529780564263323,0.919210053859964,0.8875255623721882,0.7525773195876289,0.1395348837209302,0.5066864784546805,0.7334826427771557,0.6542130365659777,0.514626218851571,0.0964730290456431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025622069412515,0.0052507272966863,0.008066725518249,0.0110624638108105,0.0135147502974465,0.0160365735696903,0.0184945403382849,0.0212494514130579,0.0238937148696985,0.0262557428042279,0.0288876364195316,0.0311678981937602,0.0337171052631578,0.0363441679450616,0.0387173960127476,0.0413773865608728,0.0441019696326733,0.0466621041498164,0.0491755587187133,0.051637082921243,0.0693831565111257,0.0858609621195487,0.1014463892673723,0.1157891418784739,0.1307220536165907,0.1486503625103045,0.1634952773684712,0.1778155907689035,0.1910914328390056,0.2033457209257494,0.2184031661361094,0.2325644211549889,0.2453905791908267,0.2572089672786012,0.2684769360842401,0.2805531910189371,0.2911594025328863,0.3011550506807952,0.3106376234036772,0.3196577095329495,0.3271339844381335,0.3337728407738442,0.3398361893971581,0.3461805140466228,0.3522523396208117,0.3580380533041435,0.3628397018987104,0.3674464061329915,0.3725723294008192,0.3770817699487868,0.376076645032988,0.3749690925574878,0.3734623008899324,0.3710431395181071,0.369444403278154,0.3662242856488339,0.3634470682882968,0.3636244641513138,0.3638947028093998,0.3643446705564252,0.3654481947064646,0.3656441476052564,0.3668527695878552,0.3681033711884109,0.3692167183406638,0.3709421702404158,0.36955531515117,0.3725699569737131,0.3768835375299253,0.3800436421344971,0.3841905892017708,0.3884826813257191,0.3925198098256735,0.3929309157677301,0.3957462969996202,0.4007615421227987,0.3980283425754775,0.3963576836505013,0.3961794019933555,0.4011472275334608,0.0,2.506105062797244,70.03427109760828,211.92641324777813,297.5077728547429,APP_public_baseline,87 +100000,95810,51555,486.54628953136415,6966,71.33910865254148,5501,56.86254044462999,2155,22.137563928608703,77.3497797498425,79.6834490889955,63.33168066437421,65.06033997275368,77.08740129237157,79.4210738833087,63.23370182872771,64.96460806817988,0.2623784574709304,262.3752056868085,0.0979788356465007,95.7319045737961,193.82286,135.57521316319813,202299.196326062,141504.2408550236,370.18015,235.62221224717248,385834.244859618,245391.76729691325,436.9138,211.22590582479444,452545.9555370003,217811.7862601186,3887.58788,1790.1774175485432,4021330.508297673,1832195.2797709445,1289.57717,573.9449293790439,1333274.0006262397,586345.4538973422,2101.38416,882.5434595051399,2160340.674251122,893213.6631834481,0.4352,100000,0,881013,9195.418014821,0,0.0,0,0.0,30630,319.1316146540027,0,0.0,39710,411.0009393591483,1444364,0,51948,0,0,17238,0,0,69,0.7201753470410187,0,0.0,0,0.0,0,0.0,0.06966,0.1600643382352941,0.3093597473442435,0.02155,0.3403177211722815,0.6596822788277185,24.463442319211115,4.272823112894533,0.3210325395382657,0.2512270496273405,0.2130521723323032,0.2146882385020905,11.380990024030185,5.994537337129315,22.933671161329688,14177.463531124982,62.78866805476572,16.794633002091974,20.03081422214065,13.266401088962676,12.696819741570412,0.5704417378658426,0.796671490593343,0.7066817667044167,0.5596951735817104,0.1092150170648464,0.7467783505154639,0.9085714285714286,0.8861788617886179,0.708904109589041,0.1604938271604938,0.5011395289946822,0.7281213535589265,0.6373626373626373,0.5106861642294713,0.0958019375672766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629596612435,0.0053332251817453,0.0080885785617147,0.0107082262341383,0.0133557115247685,0.0158953210121684,0.0185256933115823,0.0212937537641762,0.02390711080675,0.0264076397916048,0.0287541901159393,0.0312031541984105,0.0337261192341703,0.0362567318484651,0.0386202343621059,0.0410936256832577,0.0434967134206304,0.0458779354410422,0.0482409658583213,0.0506106385415473,0.0678859074406376,0.0846674265159516,0.100149884180406,0.1145709631653617,0.1291121628316345,0.1468632033075678,0.1619391110639652,0.1758094386614726,0.1888820048283376,0.2009353814468377,0.2150923471476908,0.2296677129559476,0.2437281054853238,0.2560186298733956,0.2670554577464789,0.2782999002549041,0.2892478039088748,0.2998920037798677,0.309631361510873,0.3177595784892045,0.3257724800370327,0.3333957209868167,0.3399772748792728,0.3452419461117301,0.351614980017735,0.3565495995070856,0.3619977985690699,0.3667145965617723,0.3702092396933913,0.3752591751297526,0.3739417632785117,0.372601455668284,0.3705371002794163,0.3672865902271442,0.3657901006611472,0.3636684465721475,0.3617024651797328,0.3624942445569953,0.3630512188441523,0.3638772039738656,0.364235550381192,0.3654703632508274,0.3672959932871827,0.3668315834247465,0.3672958397534668,0.3676693299911222,0.3677213203617586,0.3709946228106034,0.3750612788010365,0.3762207900043494,0.3776745879996358,0.3809700503578054,0.3834069400630915,0.3836005215923909,0.3849787435049598,0.38780834914611,0.3897104128157732,0.3929731925264013,0.4030584380120153,0.4038684719535783,0.0,2.146488391759773,68.39707139158368,206.69020824844333,290.9548617758279,APP_public_baseline,88 +100000,95796,51458,486.1476470833855,6995,71.61050565785628,5534,57.152699486408615,2120,21.650173284897072,77.41775944651599,79.74664361427662,63.37436231324406,65.0955672196217,77.14242851219379,79.4738585373688,63.270994778195,64.995972656487,0.2753309343221986,272.78507690782305,0.1033675350490668,99.59456313470127,192.86366,134.95069679445,201327.2370453881,140872.78153205774,372.66817,237.7110924830427,388415.1530335296,247536.0573249851,440.4654,212.6526037440156,456295.9413754228,219166.4761440058,3940.59292,1820.923400082097,4068904.943838991,1856284.1543290904,1301.06981,585.9765256287261,1341092.6239091402,594791.4714386025,2074.17064,883.8862806387979,2121066.89214581,886785.6898921066,0.43309,100000,0,876653,9151.23804751764,0,0.0,0,0.0,30777,320.6501315295002,0,0.0,39981,413.8586162261472,1449276,0,52168,0,0,17127,0,0,66,0.688964048603282,0,0.0,2,0.0208776984425236,0,0.0,0.06995,0.1615137731187512,0.3030736240171551,0.0212,0.3343796915517947,0.6656203084482053,24.205309009921294,4.225921394187978,0.311890133718829,0.251716660643296,0.2157571376942537,0.2206360679436212,11.288170197819309,5.952375199400655,22.83913767766285,14127.05084520105,63.077319726481605,16.626777978032695,19.56669396390649,13.628083052769286,13.25576473177314,0.5643295988435129,0.7846374730796841,0.6969872537659328,0.5651105651105651,0.1147403685092127,0.7267515923566878,0.905811623246493,0.8672199170124482,0.7508196721311475,0.1478873239436619,0.5,0.7170022371364653,0.6310289389067524,0.5032751091703057,0.1043956043956044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027035510687633,0.0055649600113529,0.0083713001390143,0.0108671365602973,0.0134222728382006,0.0158495867095565,0.0183569462847823,0.0210153506981301,0.0235187096906078,0.0265592696456717,0.0288648803788515,0.0311447811447811,0.0334906096771209,0.0360018119299112,0.038481367676476,0.0406953324312878,0.0431146896280504,0.0453056315833126,0.0476526870214733,0.0500879740970942,0.0680063436417511,0.0844206080374691,0.1003197232559358,0.1145450343509044,0.12949738793394,0.1483269765132225,0.1630594840828433,0.1767639178326883,0.1897282127346259,0.2025476478717819,0.2167403439708302,0.2300735794625782,0.2433864732201033,0.2553481921527087,0.2657736852515219,0.2777255275125308,0.2878328352883457,0.2981778147257735,0.3073052996566611,0.3152584254238451,0.3230868791457693,0.3307948373532675,0.3376344086021505,0.3443370810733144,0.3499471837398769,0.354937282831021,0.3607164298579147,0.3654090770326651,0.3687385906083714,0.3726459882892863,0.3714424124984861,0.3697268421632338,0.3674455970233397,0.3650715628162498,0.36356607588914,0.3616558068225374,0.3584899684882266,0.3595363575169515,0.3595816199430102,0.3612231062903628,0.3618321182930714,0.3616479962133165,0.362704274863468,0.3637215319756418,0.3639142258910736,0.3648930620761607,0.3663493330293011,0.3710610730234606,0.3756535775695687,0.3804442681475605,0.3831210191082803,0.3867934551636209,0.3899287830087603,0.3948729651605051,0.3954786227771472,0.3971766957770068,0.401244167962675,0.3998776508972267,0.405146454968519,0.4075355632449058,0.0,2.344956770247264,69.0708139170519,203.00558605722333,296.3195400428231,APP_public_baseline,89 +100000,95708,51421,485.79011158941785,6942,71.08078739499311,5492,56.65148158983576,2139,21.87904877335228,77.3893283971574,79.75072008413296,63.35181630130408,65.0936967429029,77.11765846970785,79.4826915839628,63.25061981291244,64.99740529608724,0.2716699274495511,268.02850017016056,0.1011964883916363,96.2914468156697,192.09806,134.3880521300666,200712.6468006854,140414.64885909914,368.20289,234.8351343427192,383935.6480127053,244587.05055242943,438.43135,212.05960881443016,453521.7327705103,218066.20516740627,3895.5789,1793.125655025404,4019190.0781543865,1822660.049771232,1310.18545,584.4401028327526,1346627.4397124588,588455.2923138151,2094.0062,881.5325958343667,2143379.6338864043,881634.5744032626,0.43449,100000,0,873173,9123.302127303885,0,0.0,0,0.0,30324,316.0655326618465,0,0.0,39845,411.8882434070297,1453595,0,52244,0,0,16986,0,0,81,0.8358757888577758,0,0.0,3,0.0313453420821665,0,0.0,0.06942,0.159773527584064,0.3081244598098531,0.02139,0.3503219619125907,0.6496780380874092,24.32170165474069,4.285185871067346,0.312272396212673,0.2527312454479242,0.218135469774217,0.2168608885651857,11.323722376734231,5.958350474399914,22.914551967810837,14171.61839172925,62.72776372912737,16.832230319503633,19.285639839669447,13.39993043772206,13.209963132232224,0.5706482155863074,0.7845821325648416,0.6967930029154519,0.5961376994122586,0.1168614357262103,0.7511490479317138,0.9108159392789372,0.8631090487238979,0.7446153846153846,0.2083333333333333,0.5013857394809775,0.7073170731707317,0.6409657320872274,0.5404157043879908,0.0939457202505219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002694025542603,0.0054324140796821,0.0082570017142915,0.0108648193089162,0.0135212069456305,0.0162551147120493,0.0188834991032121,0.0213771147527601,0.0238282567157468,0.026133491594102,0.0285275130648632,0.0311281651413797,0.0335182901767365,0.0362635100360267,0.0389513958356966,0.0415418001446729,0.0435538807159939,0.0458373960126963,0.0479887745556594,0.0504719044940308,0.067250759703846,0.083371703641691,0.0996307640666303,0.1147330676452959,0.1287214303786792,0.1468927151197225,0.161733817070842,0.1755568331842766,0.1883113414178107,0.2006370451401177,0.2157373800471733,0.2295167101234461,0.2429079363698637,0.2541505348119955,0.2653541834028458,0.2780061380280754,0.2885961484789283,0.2982191672947767,0.3079987289193545,0.3166565467939097,0.3244115435775837,0.3324214365881032,0.3383672938421693,0.3448387367210798,0.3510162947133247,0.3566537770005665,0.362291820468224,0.3665284420474203,0.3707983057214284,0.3740680627581383,0.3729919543632107,0.3712690159830541,0.3699904311606439,0.3687398797131621,0.3674967312492571,0.3646743705517716,0.3614400683036349,0.3619313058447413,0.3628898714512522,0.3636785714285714,0.3651659078560321,0.366602079955712,0.3683879357355594,0.3691233097519477,0.3679506636795066,0.368123714560933,0.3696995585931938,0.3760909147987694,0.3810357505514899,0.3855927171977043,0.3880896011655436,0.3925929867503858,0.3942842690945877,0.3954974140553696,0.3978301886792453,0.3971790920943463,0.4029850746268656,0.4063255439161966,0.4094091290954915,0.4127108670066692,0.0,2.804162682649821,66.54863934966804,209.96476794913988,290.5695130789659,APP_public_baseline,90 +100000,95670,51595,487.6554823873733,7006,71.8093446221386,5556,57.45792829518136,2168,22.27448520957458,77.35982293729873,79.73601170864728,63.33991942654043,65.09017342813968,77.08571624877732,79.46184968102943,63.23759224483681,64.99052427534566,0.2741066885214138,274.162027617848,0.1023271817036217,99.6491527940151,192.73364,134.84946329664757,201456.7157938748,140952.7158948966,369.8236,236.02585665267412,385936.0405560782,246082.64518937413,445.03002,214.92498665155048,461257.12344517617,221665.60349336645,3967.13056,1826.4550349954843,4102001.933730532,1864439.9759543051,1296.89093,584.0394798151124,1338738.8627573953,593643.1903086186,2126.13436,897.6195262626892,2185238.862757395,905635.5205963558,0.43384,100000,0,876062,9157.123445176128,0,0.0,0,0.0,30534,318.49064492526395,0,0.0,40360,418.0307306365632,1447231,0,52026,0,0,17429,0,0,74,0.7734922128148845,0,0.0,1,0.0104525974704714,0,0.0,0.07006,0.1614881062142725,0.3094490436768484,0.02168,0.3430279967382441,0.6569720032617559,24.133594002343838,4.261667715683488,0.3156947444204463,0.2501799856011519,0.2219222462203023,0.2122030237580993,11.13202773951116,5.74301986328922,23.216545816469456,14158.35265969924,63.577006005201255,16.955504405151107,19.92492671538203,13.141718619546424,13.554856265121687,0.5667746580273578,0.7906474820143885,0.6921322690992018,0.5877862595419847,0.1159772911597729,0.7307692307692307,0.920754716981132,0.8530701754385965,0.7285714285714285,0.1492537313432835,0.504226752859274,0.7104651162790697,0.635593220338983,0.5439377085650723,0.1067357512953367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023190343095556,0.0046725656541085,0.0075178816009739,0.0099429221425524,0.0129433056775662,0.0156445620642271,0.0183209529341036,0.0209566175570338,0.0233201904022554,0.0257795236926098,0.0283360993300141,0.0310643754808925,0.0333422410426131,0.0359238895409896,0.0384532073564451,0.0411137293811236,0.0436556000703955,0.0457605144427734,0.0482081778202875,0.0505351578376913,0.0681286305319904,0.0847015706806282,0.1004670690107583,0.1153947326886856,0.1290016349348663,0.1461752536956498,0.1608992866847826,0.1749944079332786,0.1882917651083482,0.2005860758678431,0.2158868030260577,0.2299461765884404,0.2431517657941992,0.2542116843453417,0.2652070002312852,0.2765184249595603,0.2872005536826594,0.2980895730493742,0.3070544596572025,0.3151977284696938,0.3233419326477019,0.3308097355487948,0.3374014536328985,0.343263907197469,0.3495538153341832,0.3561054926645397,0.3617979214347353,0.3664123108228411,0.3713871523058802,0.3764255543822598,0.3742613705194298,0.3721961362102915,0.3711343115124153,0.3698352784647201,0.3685000520144451,0.3658158963746455,0.3629817605075337,0.3630302730999061,0.3638998456525467,0.3647830293474755,0.3650390918658848,0.3659431063534543,0.3662700248076357,0.3665874012921751,0.3680468524052829,0.3698765947454929,0.3699059561128526,0.3747283550124405,0.379432748743542,0.3839601990049751,0.3865131578947368,0.3900288554023725,0.394288258491286,0.3987224873018316,0.4033421952145841,0.4036057692307692,0.4112380364309972,0.4098860862489829,0.4122116689280868,0.4113584036838066,0.0,2.2658188850674787,67.6340007550534,213.358783481976,295.66201380990606,APP_public_baseline,91 +100000,95850,51160,482.0344287949922,6851,69.90088680229526,5430,56.03547209181012,2067,21.21022430881586,77.34109898624328,79.63222058910915,63.34986309044478,65.04416524870646,77.07726042444416,79.36889101311903,63.24988860239672,64.94704385122763,0.263838561799119,263.3295759901273,0.0999744880480548,97.12139747882986,193.31444,135.32096116279183,201684.34011476263,141179.92818235976,366.3425,233.94432445851865,381607.323943662,243476.72869954997,438.70106,212.0229153462142,453136.4632237872,217812.6207138371,3836.4171,1786.2926177195684,3963016.713615024,1824128.364861312,1277.16279,580.2504795465453,1315779.7496087635,588693.7953722699,2022.59876,870.1091047747119,2077842.8586332807,879471.7620579997,0.43114,100000,0,878702,9167.470005216484,0,0.0,0,0.0,30284,315.3155972874283,0,0.0,40000,412.8429838288993,1447429,0,52043,0,0,17266,0,0,59,0.6155451225873761,0,0.0,0,0.0,0,0.0,0.06851,0.1589043002273043,0.301707779886148,0.02067,0.3403752605976372,0.6596247394023628,24.057546584423942,4.202940052170562,0.3267034990791896,0.2458563535911602,0.2125230202578268,0.2149171270718232,11.273823560009337,6.073663489025488,22.42725435915833,14105.740440551268,62.456933738926274,16.24676345404328,20.39839375859324,13.001326257595892,12.810450268693854,0.5810313075506446,0.7940074906367042,0.713641488162345,0.5929734361610969,0.1187175043327556,0.7369093231162197,0.9140625,0.857429718875502,0.7580071174377224,0.1672727272727272,0.5178571428571429,0.7193195625759417,0.6575235109717869,0.5406320541760722,0.1035267349260523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027644169915447,0.0055729499143792,0.0084897909503088,0.0109143704185026,0.0133860508608948,0.0158247170886591,0.0181749645975325,0.0209640397857689,0.0236451290012869,0.0264635780557914,0.0286601042744322,0.0311887839348532,0.0335959245298522,0.0361442064324958,0.0386917948665107,0.0410671895964495,0.0436882160731273,0.0460244109662846,0.048443193970037,0.05074182741328,0.0682078875471855,0.0842800556014255,0.0993568256096539,0.1138698090616926,0.128743839251864,0.1468348279832261,0.1614065198275222,0.1749082983360799,0.1881349782293178,0.2000192934316584,0.2150607078274347,0.2291292590589508,0.2419454804440723,0.2540178864277436,0.2648156096272574,0.2767975884386914,0.2876755139853115,0.297314937768675,0.3067579379945283,0.3151182509854249,0.3225571220223626,0.3296356104753212,0.3369477721483024,0.3432962869714299,0.3488465371806403,0.3542563824142739,0.3590931863727455,0.3637660121730715,0.368573094112313,0.3733698021960597,0.3715722490360503,0.3705780251267357,0.3684299666911308,0.3668029222473473,0.3653969437197167,0.3625963576057246,0.3604748980207292,0.3601252265612127,0.3605354503900745,0.3614993075415025,0.3626977235833742,0.3630938171401289,0.363768758310644,0.3652701361955443,0.3661578781334174,0.3671302016245629,0.3677669345579793,0.3706508650738323,0.3710620903516808,0.3751593371574251,0.3797705562411445,0.3844637434066812,0.3886111989876621,0.3937476172321769,0.3987863847539584,0.3995938358619041,0.4049089225069466,0.4058059277304101,0.4046179219351292,0.4068646355572696,0.0,2.3610965137612605,68.94219678193961,202.09347414776508,289.2306065772735,APP_public_baseline,92 +100000,95629,50955,481.7262545880433,6938,70.91990923255497,5482,56.593711112737765,2142,21.95986573110667,77.31769350596971,79.74176836414348,63.289715480586615,65.0822118753513,77.05180073330438,79.47759259297614,63.190476610846176,64.98665289913076,0.2658927726653388,264.1757711673449,0.0992388697404393,95.55897622054488,191.24446,133.76799743208883,199985.8411151429,139882.2506060806,366.67379,233.53008175162728,382628.2508444092,243399.65856328935,433.36245,208.59890485846608,449137.3223603719,214948.23469765144,3928.04094,1790.4731653745744,4055118.530989553,1820852.3142015268,1333.46056,595.973528492444,1369009.902853737,598293.7526586454,2096.71538,883.4725890009041,2150033.378995911,885834.6483635822,0.43016,100000,0,869293,9090.265505233769,0,0.0,0,0.0,30240,315.4482426878876,0,0.0,39453,408.4430455196645,1456461,0,52301,0,0,16953,0,0,72,0.742452603289797,0,0.0,0,0.0,0,0.0,0.06938,0.1612888227636228,0.3087345056212165,0.02142,0.3308692676249144,0.6691307323750856,24.483776508402126,4.345510781263934,0.3205034658883619,0.2384166362641371,0.2198102882159795,0.2212696096315213,11.25604162637292,5.855572501165148,22.67613888193697,14134.179790288614,62.21076073315861,15.79442637932617,20.00461385923192,13.187274770205864,13.224445724394643,0.5689529368843488,0.7857689364957919,0.7148548662492885,0.5779060181368508,0.1120331950207468,0.7356797791580401,0.9142857142857144,0.8653421633554084,0.75,0.1550387596899224,0.5090503347384081,0.7086903304773562,0.6625766871165644,0.533678756476684,0.1003167898627244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026744468757597,0.0053238956719263,0.0078071065989847,0.0107013282655311,0.013277442591594,0.0158312958435207,0.0184746903882643,0.0207092430449841,0.0234155127772149,0.0260870456548924,0.0289175178360622,0.0316278687176112,0.0341258971692187,0.0363722638278558,0.0387035448975585,0.0410190608249342,0.0434115439247685,0.0455891059798697,0.0477568138535346,0.0501418321374937,0.0670310491498322,0.0829578556908439,0.0983287990672366,0.1130503475879502,0.1271928434882714,0.1464223293257772,0.1618484822719156,0.1757644249221715,0.1889170652371628,0.2013622543805932,0.2157554570075205,0.2307600589663545,0.243778601002397,0.2557482281545422,0.2668959511447689,0.2780539221125042,0.2883746926000447,0.2979619886664488,0.3078993696405247,0.3161376116288934,0.3245027742705232,0.3324865668496775,0.3394701923988247,0.3455520625854911,0.3508637469586375,0.3563659234411996,0.360424647587571,0.3650688593030063,0.3696767839091781,0.3735858532459293,0.3718393052202878,0.370121464180461,0.3687157140641085,0.3674372208006245,0.3662936709613184,0.3628180159180481,0.3594436426498342,0.3599316699791396,0.3602138598978529,0.3613789907128469,0.3615967093577638,0.363283329062272,0.3637121654298341,0.3641102176285835,0.3660207430118086,0.3671346853874155,0.3675012077637898,0.3702103681442524,0.3742249623428031,0.3754663068497499,0.380390542827091,0.3825743419998932,0.385156547090886,0.3893345557338223,0.3929784824462061,0.3935399596247476,0.3978824612551788,0.4061934446008445,0.4043490228461326,0.4025974025974026,0.0,2.8623095188101217,63.06265275014168,210.67969560254843,297.4492464846716,APP_public_baseline,93 +100000,95712,51365,484.2966399197593,7088,72.65546639919759,5598,57.90287529254429,2168,22.327398863256438,77.34880342590687,79.70634746452477,63.338894218876014,65.0770169528902,77.07733918883797,79.43423711976321,63.23842528559178,64.97902475231628,0.2714642370688978,272.1103447615576,0.1004689332842332,97.99220057392688,192.7475,134.84669198720903,201382.79421598127,140887.9680575153,367.93133,233.872333042344,383781.3753761284,243717.46960318083,441.52774,213.34219254181312,457380.4643095954,219929.32620325,4006.93372,1834.2469497751224,4144904.7872785022,1874966.4333485689,1324.57556,592.6769735044984,1366714.0379471749,602084.0073431866,2124.35212,890.8186154560594,2187686.392510866,901858.150944064,0.43358,100000,0,876125,9153.763373453694,0,0.0,0,0.0,30302,315.94784353059174,0,0.0,40049,414.55616850551655,1452182,0,52158,0,0,17309,0,0,68,0.710464727515881,0,0.0,0,0.0,0,0.0,0.07088,0.1634761751003275,0.3058690744920993,0.02168,0.3476510067114094,0.6523489932885906,24.444444122403876,4.245172211388342,0.3160057163272597,0.2463379778492318,0.2220435869953554,0.2156127188281529,11.10724625307214,5.746226257962217,23.15027535382424,14254.161625948414,63.85453627542626,16.808138957152742,19.939862053852973,13.370106701244572,13.736428563175965,0.570918185066095,0.8085569253081943,0.7003957037874505,0.5733222866611434,0.1206757843925985,0.7562091503267974,0.9328214971209212,0.8842975206611571,0.7715355805243446,0.1434108527131783,0.5012291052114061,0.7331002331002331,0.6311284046692607,0.5170212765957447,0.1147208121827411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027745992526809,0.0052507805214288,0.0080158287250773,0.0105242840744014,0.0131263217829835,0.0157784903547615,0.0185307878133058,0.0213738899663162,0.0242195084563895,0.026754004401003,0.0291087992620304,0.0314879816080629,0.0339903149193424,0.0364250342321195,0.0390757169383123,0.0415284623412587,0.0442755521500978,0.0466086306898948,0.0487959574114124,0.0514108281582128,0.0697076976095742,0.0862594061685627,0.1015674178521969,0.1155707522356654,0.1295263008005737,0.1479526534584342,0.1627087710362683,0.1770649234503758,0.189907904015043,0.202802154182848,0.2176929374757616,0.2320543617044298,0.2449612234464905,0.2566175183759188,0.2682953670078133,0.2797393443713012,0.291437189297883,0.3016089262190797,0.3105703612022664,0.3194802516242137,0.3272857787914925,0.3348583062270376,0.3413998863421102,0.3471887622403605,0.3525460376075021,0.3577379045177827,0.3622164419878448,0.3673775641270204,0.372575908508739,0.3759726728390177,0.3745184666361358,0.3726143592850651,0.3707004752570195,0.36999782907591,0.3679792838646307,0.3654904847341706,0.3629747086339491,0.3628024723829563,0.3627276461728057,0.3635387588576336,0.3655696202531646,0.3664721590347146,0.3675032526125824,0.3680775183365857,0.3692419121197489,0.3701184902304412,0.3701920321008885,0.3749012170064801,0.3779422128259337,0.3795978616452565,0.3819791714456118,0.3870447086673481,0.3894858019953952,0.3963518318132633,0.3972733339689198,0.4008911368015414,0.4030668127053669,0.4044453676776069,0.4125105663567202,0.4203921568627451,0.0,2.1656098421965475,67.57903711617975,211.2813648489301,303.28427080000785,APP_public_baseline,94 +100000,95627,51104,481.8095307810556,6964,71.2351114225062,5512,56.93998556892928,2110,21.61523419118032,77.26744378178137,79.68340621790252,63.28338998351626,65.06950380417206,76.9991233452059,79.41808888358752,63.18312071283545,64.97383523728881,0.2683204365754648,265.3173343150001,0.1002692706808048,95.66856688324776,193.10522,135.11282174210612,201935.64579041483,141291.2758343419,371.2127,236.70072413184687,387442.7933533416,246779.90288500828,441.36619,213.35422500637532,457448.0638313447,219926.8073558176,3877.82087,1786.4903806440327,4006602.86320809,1820014.2160381384,1278.53421,573.1673879801423,1317247.0222845012,579683.2671198988,2059.83038,872.7436654741676,2111175.9649471384,874884.3602350702,0.43142,100000,0,877751,9178.892990473403,0,0.0,0,0.0,30596,319.2090100076338,0,0.0,40121,415.4579773494934,1443249,0,51868,0,0,17049,0,0,78,0.8156692147615213,0,0.0,2,0.0209145952502954,0,0.0,0.06964,0.1614204255713689,0.3029867892016082,0.0211,0.3375119226052596,0.6624880773947405,24.298997719417446,4.2477594500994735,0.3247460087082728,0.249455732946299,0.2093613933236574,0.2164368650217706,11.25968079047227,5.835175091535815,22.75528951599301,14132.674837857863,63.109444444536,16.772215957446853,20.39368548046225,13.306817411015782,12.636725595611118,0.5723875181422351,0.7992727272727272,0.6927374301675978,0.5741827326068735,0.1135181975736568,0.7580645161290323,0.9194139194139194,0.8588709677419355,0.718213058419244,0.1751152073732718,0.4997476022211004,0.7201447527141134,0.6290571870170015,0.5277161862527716,0.0992529348986125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027965225849595,0.0052626242141553,0.007766812865497,0.0103243638728558,0.0130621878147285,0.0155925367662036,0.018190346065216,0.0210724057663249,0.0237019161946052,0.0263492063492063,0.029014194289465,0.0317732623836624,0.0341542703125321,0.0366313576786744,0.039028468795805,0.0415818040837425,0.0441839028078424,0.0465316629127181,0.048920788474541,0.0515461767833684,0.067977299093845,0.0842437128821761,0.1003077181595723,0.1154089176267402,0.1292008488803015,0.146705920975992,0.1612228206027001,0.1747865661937904,0.187757416262824,0.2001374850968303,0.2149244393627234,0.229151543387109,0.2418931716503205,0.2534312545148086,0.2640678339389935,0.2756599215408143,0.286870603996874,0.2972401062536581,0.3064430033276925,0.3151782643585922,0.3232392245871645,0.3306695995039137,0.3378924058877166,0.3437567496220212,0.3485512006422889,0.3541970217074556,0.3596827544730115,0.3651794127384317,0.3698200300814273,0.3740295467470804,0.3728687716835185,0.370496007942746,0.3694058832667241,0.3680060300342088,0.3665040941429147,0.3640498471088984,0.36168285201138,0.3619937797232141,0.362582015657924,0.3631301919220853,0.3638055842812823,0.3657033827562905,0.3658043313390073,0.3673011312623451,0.3688449259940021,0.3676323938487377,0.3690302248961467,0.3740793425003951,0.378751988686583,0.3817219392870032,0.3843131817341468,0.3874371043661743,0.3910671886029647,0.3933803581117743,0.3977468016039717,0.3987655815079269,0.3971896955503513,0.4008683068017366,0.3997142857142857,0.4005647438483259,0.0,2.7265537600392884,67.86296903706078,206.30640575131565,295.6899852348855,APP_public_baseline,95 +100000,95829,51422,484.7488756013316,7098,72.54588903150403,5637,58.145237871625504,2238,22.87407778438677,77.40182060844235,79.71328602453809,63.36325590393732,65.07493930372445,77.1229259633178,79.43921409229257,63.25997511894423,64.9767169818277,0.2788946451245522,274.0719322455192,0.103280784993089,98.22232189674196,192.85112,134.97119982348573,201245.05108057056,140845.88154262878,374.26615,238.0776637143069,389902.2007951664,247786.22491406076,443.53436,214.1752901981298,458755.4185058802,220322.39138500503,3994.52361,1834.6963947185664,4122844.139039331,1869031.341372779,1303.47854,580.1285079877514,1343742.739671707,588924.8761864523,2180.67288,912.0221087222712,2231308.393075165,914031.048007534,0.43241,100000,0,876596,9147.502321844118,0,0.0,0,0.0,30792,320.63362865103466,0,0.0,40373,417.2223439668576,1448618,0,52097,0,0,17245,0,0,72,0.751338321384967,0,0.0,1,0.01043525446368,0,0.0,0.07098,0.1641497652690733,0.3153000845308538,0.02238,0.3402740462117141,0.6597259537882859,24.346703755604704,4.261356727431366,0.3173673940039028,0.2485364555614688,0.2125243924073088,0.2215717580273195,11.248798800449949,6.009973838711478,23.7626387115996,14178.901897826026,64.24052805749076,17.0615847177723,20.21616459018395,13.79263557964939,13.170143169885105,0.564129856306546,0.7822983583154889,0.6903297931805478,0.5748598879103283,0.1093489148580968,0.7342019543973941,0.8996212121212122,0.8678038379530917,0.7563636363636363,0.1406844106463878,0.500487567040468,0.711340206185567,0.6272727272727273,0.5236139630390144,0.1005347593582887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027238299682051,0.0055640576067457,0.0086434281540396,0.0113044273134464,0.0139486178465042,0.016704670385602,0.0191815726443459,0.0216472749540722,0.0242556192695716,0.0269492947943747,0.029440406753252,0.0318299392346855,0.0342711470657771,0.0368825873413029,0.0393081112302995,0.0417355542696536,0.0438806248253159,0.0463006169959039,0.0486829531762848,0.050871094644381,0.0681163954943679,0.0851524275498682,0.100423364701444,0.1150072483559888,0.1295184529828109,0.1477640000844969,0.1624009491927624,0.1757946210268948,0.1889728483606557,0.2016989459251006,0.2160289989136163,0.2297983618249011,0.2424923946110387,0.2545565802701167,0.2654609422241767,0.2773170650693652,0.2882862784030698,0.298226475781329,0.3077132548165294,0.3165764136146634,0.3253898477627134,0.3321055647150992,0.3383264707274362,0.3446415727643251,0.350520099159092,0.3561267258382643,0.3616254178089909,0.367355508614766,0.3717264603030695,0.3764684142446081,0.3739426755023975,0.3720984662830079,0.3704778541643187,0.3686954763417875,0.3664538164538164,0.3630193651182743,0.3598613177975493,0.3602481414012111,0.3610422896198206,0.3620406414056641,0.3628613718546831,0.3635015423554536,0.3645545218338781,0.3656265389264449,0.3666682696931807,0.3677828195900485,0.3685935807536628,0.3735242401406681,0.3766981430126022,0.3800876144962166,0.3826923076923076,0.3838297417250414,0.3851411213770409,0.3881166946693142,0.3939110070257611,0.3959270660667772,0.4045754644557039,0.4031797798613942,0.4034701184246764,0.3987706492508643,0.0,2.6533128439018894,67.1832111498111,216.9036496495168,300.31020835420134,APP_public_baseline,96 +100000,95677,51598,485.5294375868808,6994,71.46963220000626,5504,56.73254805230097,2189,22.366922039779677,77.32145341825886,79.70918036633894,63.3143933609397,65.08054196210138,77.04938963819582,79.44179115631127,63.21131920803519,64.98286981546848,0.2720637800630356,267.3892100276732,0.1030741529045045,97.67214663290248,193.52432,135.4206784265129,202268.38216081192,141539.42789438725,372.04446,237.74067679545783,388093.8470060725,247721.77931525637,446.15516,216.2250324596189,461588.7830931154,222344.05869556,3902.51577,1806.9893348851888,4025333.695663535,1835124.5177892165,1279.88155,577.1412992362317,1317759.492877076,583267.1375944379,2133.2405,902.0840930228934,2181645.933714477,901598.8658977224,0.43328,100000,0,879656,9194.017370945994,0,0.0,0,0.0,30729,320.38002863802166,0,0.0,40584,419.42159557678434,1441003,0,51802,0,0,17446,0,0,59,0.6166581310032714,0,0.0,0,0.0,0,0.0,0.06994,0.1614198670605613,0.3129825564769802,0.02189,0.3385772913816689,0.6614227086183311,24.499018831318164,4.160730053839817,0.3268531976744186,0.2423691860465116,0.2149345930232558,0.2158430232558139,11.275031740883112,6.082404366632354,23.340765481296565,14200.400089398132,62.865732534190826,16.213618765865824,20.450203742779685,13.263086597992585,12.938823427552723,0.5761264534883721,0.782608695652174,0.7087270705947749,0.5984848484848485,0.1191885038038884,0.7379480840543882,0.9185185185185184,0.8605108055009824,0.7350993377483444,0.1423220973782771,0.5087493566649511,0.690176322418136,0.6488372093023256,0.5519187358916479,0.1124454148471615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029180513901272,0.0056485143494574,0.0082426506415462,0.0110771231999674,0.0137147973302946,0.016471762692527,0.0192847017551016,0.0218705329793751,0.0245149154552331,0.0270953609302706,0.0298245793903851,0.0322149994351849,0.034903816479786,0.0375701993920346,0.039926093374209,0.0424636572302983,0.0450901180857675,0.0475350285417747,0.0499438365852643,0.0526376134835676,0.0701959637320854,0.0864094135382425,0.1015796378903175,0.1166856108444893,0.1304659800776633,0.1486158894828772,0.1636039364310965,0.1772520027271177,0.1907021988476627,0.2025639650270879,0.21740442222318,0.2310165986335632,0.2438748422472692,0.255799702354898,0.2663174459936832,0.2783150012738289,0.288496306050934,0.2981075215616601,0.306922605676945,0.3152136556306564,0.3238105155975192,0.3314071821265645,0.3385087282976858,0.3440318556898867,0.3495440729483283,0.3548538184686683,0.3600546030632819,0.3653557337406135,0.3701699654373406,0.374844958171694,0.3733719442386692,0.371109491259679,0.3696650421162352,0.3688364629862526,0.3673624231965128,0.3640324634479372,0.3609996669891058,0.3608516935218678,0.3614476386036961,0.3624279938459336,0.3635271368764901,0.3647778812065516,0.3650693701068362,0.3647560291643297,0.36405118300338,0.3652046247017801,0.3666829254296617,0.371752270641476,0.3744616253618583,0.3762557805772604,0.3805431105421962,0.3861980282897557,0.3894138679606691,0.3925782759953614,0.3995425085779641,0.4045663203672384,0.4067135050741608,0.4072923140667081,0.4137447405329593,0.4248927038626609,0.0,3.1496993896016248,70.47501816149027,194.9766325444112,294.492328968132,APP_public_baseline,97 +100000,95702,50872,480.7005078263777,6925,71.0538964702932,5460,56.43560218177259,2112,21.62964201375102,77.3455376358958,79.73070682448918,63.32130932583449,65.08642913054139,77.07359151316089,79.45974578596226,63.21912145158991,64.9871391776345,0.2719461227349029,270.9610385269201,0.1021878742445849,99.28995290688648,193.15208,135.0898561438045,201826.5866962028,141156.77430336302,367.15077,234.22951554768,383033.1863492926,244142.4061646361,439.02853,212.12487455580103,454215.3977973292,218265.7398521119,3873.72101,1787.0164153823694,4006045.202817078,1825626.1994340448,1265.047,560.7816787931589,1306699.2121376777,570850.0717162811,2055.83514,875.4995515479627,2107508.641407703,882600.8614996459,0.42847,100000,0,877964,9173.93575891831,0,0.0,0,0.0,30378,316.77498902844246,0,0.0,39919,412.65595285364986,1447979,0,52028,0,0,17073,0,0,63,0.6582934525924223,0,0.0,1,0.0104491024221019,0,0.0,0.06925,0.1616215837748267,0.3049819494584838,0.02112,0.3415705656232839,0.6584294343767161,24.180335505502004,4.297764128850013,0.3135531135531135,0.2538461538461538,0.2065934065934065,0.226007326007326,11.468766598001004,6.095299439692124,22.67715033201216,13994.619642503949,62.4547096306629,16.766144952633766,19.46793401357433,13.838796772609214,12.381833891845584,0.580952380952381,0.7914862914862915,0.6927570093457944,0.6012965964343598,0.1303191489361702,0.7454427083333334,0.9089219330855018,0.8459915611814346,0.7344262295081967,0.1415525114155251,0.5165647298674821,0.7169811320754716,0.6340872374798061,0.5575888051668461,0.1276127612761276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028571718051854,0.0052436736142806,0.0078379613178333,0.0105185064737088,0.0129201595181899,0.0155021389284986,0.018121188635761,0.0206999377061568,0.0231205006544502,0.0256318354974808,0.0279270594026911,0.0303204601479046,0.0329986833443054,0.0355295426910949,0.0379769042631139,0.0401852636802547,0.0425743497311911,0.0450544888427607,0.047327863226531,0.0497947360743534,0.0669667568329695,0.0829208050319731,0.0978579150092883,0.1128647033448018,0.1267812127540634,0.1443832168128021,0.1587631710189832,0.1721589093620193,0.1848874254313754,0.1972987771491148,0.2114070080862533,0.2253588257596273,0.2388319705597352,0.2513160630834729,0.2627795087472063,0.2748462177888612,0.2851449113562274,0.2946161291048639,0.3036431733060946,0.3127769952245164,0.3203513807550751,0.3276920737769149,0.3348675959012708,0.3408998346949043,0.347144157814871,0.3523054577681495,0.3571357123208882,0.362128989632039,0.3666054903582691,0.3699993418021457,0.3681926286228719,0.3671374260578361,0.3663966472590217,0.3649873037857802,0.3634799632189363,0.3622683061112131,0.3600696919299913,0.3604561236075231,0.3608667374114264,0.3610917100950948,0.3621925747511431,0.3633618720327367,0.364737862440998,0.3650982594048287,0.3661195581232324,0.3662639867927989,0.3677720236903093,0.3710711690937233,0.3746609841146842,0.3782598293324826,0.3816912335143522,0.3849710368283998,0.3884552436107264,0.3926016136398234,0.4010387157695939,0.4049359051156104,0.4074188086809296,0.4127243066884176,0.4112482853223594,0.4076803723816912,0.0,2.3208848929679524,67.66763754379431,203.37939428733088,293.26731411454097,APP_public_baseline,98 +100000,95603,51226,483.3425729318118,6963,71.38897314937816,5504,56.92289990899867,2105,21.59974059391442,77.23812690061078,79.668385765749,63.25655152000609,65.05392245449701,76.9777008486061,79.40990840624289,63.16004664363985,64.96104329232655,0.260426052004675,258.4773595061023,0.0965048763662395,92.87916217046188,191.85496,134.30593473907706,200678.34691379976,140482.61567597784,369.97664,236.2609500917252,386341.6315387593,246478.3393664114,437.05487,211.9003142788659,453070.40574040567,218556.86930770573,3873.7352,1774.0948207778854,4009483.4576320825,1813561.458560394,1287.37487,572.039864781531,1332238.318881207,584190.3400954787,2043.03042,851.5939646553351,2098841.8564271,858293.5836417784,0.43322,100000,0,872068,9121.743041536354,0,0.0,0,0.0,30595,319.330983337343,0,0.0,39857,412.77993368408943,1444728,0,51966,0,0,16871,0,0,69,0.7217346735981088,0,0.0,2,0.0209198456115393,0,0.0,0.06963,0.1607266515857993,0.3023122217435013,0.02105,0.333972602739726,0.6660273972602739,24.38029502425622,4.233958759365847,0.323219476744186,0.2463662790697674,0.2043968023255813,0.2260174418604651,11.738215684801206,6.449825818508312,22.330439338008176,14216.883068977788,62.84558764366577,16.513254184090158,20.28335515378496,13.811456200484566,12.237522105306082,0.5686773255813954,0.7927728613569321,0.6953344575604272,0.5506430868167203,0.1182222222222222,0.7585301837270341,0.9133709981167608,0.8699186991869918,0.7168458781362007,0.1936936936936936,0.4959798994974874,0.7151515151515152,0.6285936285936286,0.5025906735751295,0.0996677740863787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026349927030971,0.0054162060186828,0.0079603606530744,0.0105810963276175,0.013597134017261,0.0163717310023737,0.0190320771074506,0.0219427730843489,0.0245384339998977,0.0269378892166502,0.0298061828591362,0.0323154065884383,0.0348082049381953,0.0373703634976598,0.0398628552544613,0.0423107965480846,0.0444428318180404,0.04682062309762,0.04930200601701,0.0513170935266809,0.0693541305120538,0.0856562015341409,0.1008909247546805,0.1154773816420032,0.1301905123980906,0.1491595080977449,0.1636937329352895,0.1773509284328565,0.1901414478611628,0.2022063957547828,0.2173509576476935,0.2312296032873266,0.2442899485659489,0.2558238916526046,0.2664014370887931,0.2779688852393528,0.2880618386021433,0.2985091458601168,0.307075509252414,0.3153282491845454,0.3232058304707084,0.330760659198874,0.3384093148018468,0.3444647538420837,0.350104233971741,0.3561051004636785,0.3606629418042564,0.3664509045412182,0.370779068860641,0.374698699441104,0.3733646880743864,0.3720785678766782,0.3710062599799341,0.3699712852046292,0.3688877628578667,0.3657141099387861,0.3626401590457256,0.363218049576963,0.3639798704979132,0.3651866728831187,0.3657637321294206,0.3666547519758529,0.3680675453741525,0.3680541500820796,0.3689428377986266,0.3708286365900333,0.3715589746533858,0.3751463561279706,0.3791484253636492,0.3818029917250159,0.3861417900187892,0.3901658578209162,0.3919499557689877,0.3981064365885317,0.3996050032916392,0.4035980589418866,0.4075649399969618,0.4158137668071442,0.4142109611677224,0.419800460475825,0.0,2.524898014559985,66.87909474862559,207.64023356505663,295.3932540761792,APP_public_baseline,99 +100000,95703,52733,499.3573869157706,6218,63.540327889407855,5007,51.56578163693928,1918,19.62320930378358,77.33641368994157,79.71066817947859,63.332022412709286,65.08913435832528,77.09476457055048,79.47089036617248,63.24156422396223,65.0020499894006,0.2416491193910843,239.7778133061053,0.090458188747057,87.0843689246783,232.38468,162.6942702423212,242818.595028369,169999.1329867624,425.97072,276.60652729159733,444345.6317983763,288275.0878150081,496.55861,241.33802097032356,513014.5763455692,247854.6389863375,3490.75754,1639.8202754145088,3597337.690563514,1663294.594124019,1147.61284,524.3403871354482,1179731.6698536098,528512.2217285705,1859.10818,788.7988747900207,1903315.5700448265,791476.5520985735,0.43118,100000,0,1056294,11037.208864925864,0,0.0,0,0.0,35338,368.45239961129744,0,0.0,44935,463.7785649352685,1215117,0,43676,0,0,20740,0,0,83,0.8568174456391127,0,0.0,1,0.0104489932395013,0,0.0,0.06218,0.1442089150702722,0.30845931167578,0.01918,0.3651407361583668,0.6348592638416332,23.5549568397966,4.054496811137262,0.3135610145795885,0.2806071499900139,0.1997203914519672,0.2061114439784302,11.419872241528113,6.329609204063009,20.61172133169121,13736.497509243653,57.93145559693024,17.362748433714728,18.11329934767512,11.47303887027139,10.982368945269004,0.5939684441781505,0.801423487544484,0.7063694267515923,0.6094961240310077,0.11,0.765685019206146,0.9261168384879724,0.8760504201680672,0.73992673992674,0.1645021645021645,0.5161103047895501,0.7132442284325637,0.6325411334552102,0.5625823451910409,0.0936280884265279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025536054476916,0.0053955922473858,0.0083049901010203,0.0107529067403853,0.0134278709703671,0.0159289511743018,0.0182441183369196,0.0208188686951194,0.0233200085878155,0.0261859427144114,0.0286402542155707,0.0310571760043531,0.0335859650566107,0.0359261700725115,0.0384369324748225,0.0409211655141761,0.0431167486409526,0.0455535729106149,0.0482248274715224,0.0506041666666666,0.0684912910905977,0.0849394186703496,0.1001552143636211,0.1150696452036793,0.1293267001138328,0.146843095394111,0.1617003233158424,0.1755479226262003,0.1882651808682101,0.1998842989372643,0.2149629262938131,0.2280125009462221,0.2403799132806642,0.2522039304792388,0.2625159333655663,0.2740481903729833,0.2841081297914066,0.2936720242778464,0.3016600145137881,0.3089877356763683,0.3152547074938447,0.3231534920672009,0.3293227750856872,0.3348577722440379,0.3393554805988983,0.3443004320372216,0.3492398859828974,0.3540037883121671,0.3583814280907891,0.3603193454737398,0.3579249323259666,0.3538578120694406,0.351011774659804,0.3472529698600801,0.3449513146532472,0.3414645372117642,0.338408106950854,0.3381900705487674,0.3379635965512522,0.3379589063142648,0.3389522238055951,0.3395469281252471,0.340762131960575,0.3411129456914633,0.3425565643464476,0.3438167143972924,0.3444368131868132,0.3484480090940667,0.3542539336125875,0.3585929087065768,0.3628843237281125,0.3685625201591226,0.3730326973726472,0.3779222789905558,0.3819239202974545,0.3854558698555299,0.3874941525027288,0.3953201970443349,0.3969086392492409,0.3990034495975469,0.0,2.857404497927869,68.10880865744112,182.23621776446484,253.85263245785,APP_public_implementation,0 +100000,95608,52679,499.539787465484,6419,65.90452681783951,5111,52.86168521462639,1950,19.987867124090037,77.26635035352784,79.70418946979952,63.26822878755484,65.07207993386086,77.02017391852027,79.46099436519248,63.17636612169239,64.98457409114346,0.2461764350075697,243.19510460703955,0.0918626658624504,87.50584271740536,232.10352,162.3801450941609,242765.5635511673,169839.27924039925,423.88526,274.3791934982283,442761.9969040248,286387.98374427704,492.69583,238.01366775244404,511605.7965860597,246131.43013143216,3583.96638,1673.8179907698247,3706081.5935904942,1708185.6128878577,1178.65165,539.4732124682125,1218938.237385993,550397.4902395329,1904.33736,809.1250309328664,1953837.2730315456,812320.8445001586,0.43098,100000,0,1055016,11034.798343234876,0,0.0,0,0.0,35197,367.5320056899004,0,0.0,44560,462.4194628064597,1214985,0,43697,0,0,20771,0,0,84,0.8785875658940674,0,0.0,0,0.0,0,0.0,0.06419,0.1489396259687224,0.3037856363919614,0.0195,0.3538484576220425,0.6461515423779575,23.605236150796937,4.02145490680904,0.3071805908824105,0.2803756603404422,0.2079827822343964,0.2044609665427509,11.235952087078092,6.043001163243046,21.05558923215745,13793.411792561094,58.95424311421249,17.434597513520952,17.937084437280163,11.681001986637815,11.90155917677358,0.5914693797691254,0.8080949057920447,0.710828025477707,0.6028708133971292,0.1119473189087488,0.7546791443850267,0.9168141592920354,0.8775510204081632,0.7479674796747967,0.1639344262295081,0.5239280774550484,0.7373271889400922,0.645704162976085,0.55819774718398,0.0964590964590964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027970327131217,0.0055795079888409,0.0083073517015853,0.0109097933951521,0.0135888927342684,0.0162561024083492,0.0190541312867406,0.0215709716644697,0.0238601948105099,0.0262526898247771,0.028942074797816,0.031268630635446,0.0334764213582038,0.0358604761462876,0.0381973495295053,0.0406663907284768,0.043223633065561,0.0456079852924374,0.0482316451216719,0.0503759947433744,0.0676020408163265,0.0843725765546729,0.1006996239258776,0.115596098342006,0.1297927625324798,0.1478570369271837,0.1622115701425276,0.176430430515851,0.1890995108480417,0.2001289282836422,0.2148119384310045,0.2276348736626451,0.2404247209365641,0.2521143733567046,0.2621590345511654,0.2733252726042441,0.2831590472360012,0.2916699512381896,0.3018224787528973,0.3095593127021633,0.3171952095253538,0.3245848265523622,0.3310549073032044,0.3364512879551014,0.3419779204357552,0.3459971858105606,0.350397994359135,0.3535873582260737,0.3576068775041817,0.3610446913351916,0.3586014476149398,0.356054762822985,0.3531418742686348,0.3500303670069699,0.3482562637624233,0.3440904702799613,0.3418808837047133,0.3414325404001381,0.3409557364712321,0.3414874199205469,0.3430032525522194,0.3446730898854129,0.3459008469411344,0.3465004707886831,0.3471501339835357,0.3495734993981893,0.3513629472841166,0.3554376657824933,0.3599661805115197,0.3634698104189899,0.3665265850539009,0.3692718058148839,0.3733061899611934,0.3784957707841195,0.3845145585619324,0.3961352657004831,0.4022252705380277,0.4057385330369771,0.4062927496580027,0.4101017715793441,0.0,2.356955368759493,65.7234791162954,196.4665695016156,261.4602951832618,APP_public_implementation,1 +100000,95709,52995,500.5380894168782,6346,65.1035952731718,5017,51.8864474605314,1946,19.95632594635823,77.34534288058313,79.71208069342323,63.32656324425341,65.07374730840993,77.09314479624518,79.46168784469744,63.23298473968215,64.98289666338792,0.2521980843379481,250.39284872579515,0.0935785045712549,90.8506450220159,230.52502,161.41138364829587,240860.3370633901,168648.07243654816,421.81805,273.25535995195185,440198.0900437786,284974.7672130644,489.23258,237.1576327133174,507876.5424359256,245165.2471731304,3510.02869,1629.0063450891382,3633520.097378512,1668164.3367803835,1174.16294,532.7971699771945,1213233.9173954383,543113.2704105091,1896.14546,801.2341399340756,1947309.511122256,809770.4548622395,0.43276,100000,0,1047841,10948.197139245003,0,0.0,0,0.0,35009,365.2321098329311,0,0.0,44280,459.4134302939117,1224021,0,43983,0,0,20478,0,0,65,0.6686936442758779,0,0.0,0,0.0,0,0.0,0.06346,0.146640170071171,0.3066498581783801,0.01946,0.3436743341404358,0.6563256658595642,23.858220054650108,4.101445570421498,0.3171217859278453,0.2678891767988838,0.2102850308949571,0.2047040063783137,11.110874489340691,5.919793059921044,20.8279641801084,13812.778924703063,57.71362849516504,16.51234496441858,18.210858037743428,11.446716532373244,11.543708960629791,0.585210285030895,0.7991071428571429,0.7177875549968573,0.5686465433300877,0.128909952606635,0.7465940054495913,0.9230769230769232,0.8471910112359551,0.7119341563786008,0.1794871794871795,0.5184559030712876,0.7142857142857143,0.6675392670157068,0.5242346938775511,0.1144945188794153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027543745949449,0.0054121987310725,0.0082585934012418,0.0111111111111111,0.0136366409729707,0.0161577698815911,0.0189188913692751,0.0214774966058613,0.0242880215893525,0.0270956382880715,0.0294220162794989,0.0318648593140275,0.0344572216165065,0.0371076244733128,0.0393803985510985,0.0419784990696712,0.0447597348798674,0.0471866503393453,0.0496459799752549,0.0521023289741051,0.0693749673646284,0.0862061747776033,0.1025444625150831,0.1176810984270608,0.1315078611374907,0.1486337756894617,0.1630341313233186,0.1762669620603711,0.1887718023255813,0.2012098979953019,0.2150784415136626,0.2284334322410171,0.2406212248185192,0.2516260429669535,0.2626123545999295,0.2740234829753972,0.2838453295231291,0.2935523798807246,0.3014247601748311,0.3092892168094954,0.3165306949025053,0.3232239350628085,0.3295412844036697,0.3349593106175917,0.3400731496895391,0.344220454965785,0.3485404430641303,0.353791945455008,0.3573845296275651,0.3609612944162436,0.358637436762226,0.3568829092112155,0.3543641990136924,0.3512237509051412,0.34867686259326,0.3451783659378596,0.341961032789482,0.3422521339461589,0.3424872499019223,0.3421911505056089,0.3420737637465399,0.3430492831364506,0.3438781487990627,0.3442564240307995,0.3449539514923574,0.3472508546227917,0.3476048329779673,0.3519348268839103,0.3574052692348063,0.3611352676100877,0.3648088228592261,0.3677268375704712,0.3739530197115687,0.3782565513026205,0.381746256004521,0.3863231627686098,0.3894930310920508,0.3930964467005076,0.3897790055248619,0.3949645948072384,0.0,2.102269524167529,64.83072357200722,189.83094050461065,258.2775943131713,APP_public_implementation,2 +100000,95642,52969,502.2270550594927,6213,63.225361242968575,4966,51.14907676543778,1971,20.127140795884653,77.2498286400838,79.64743824522024,63.26585613190741,65.03853560389467,77.00095008897088,79.40349146386522,63.1718965913373,64.94920196541624,0.2488785511129236,243.9467813550209,0.0939595405701112,89.33363847843623,232.02212,162.39682613215967,242594.3832207608,169796.5602268456,425.34416,275.5091199266108,443945.9965287217,287283.8932002404,486.07195,235.64187314326443,503342.25549444807,242568.60140959243,3522.61096,1638.510130396514,3632676.230108112,1662760.333726848,1185.52299,531.7316682184933,1218268.720854855,534686.9034717933,1923.78978,815.622440125864,1966924.6147090192,815428.7236366404,0.43185,100000,0,1054646,11027.01741912549,0,0.0,0,0.0,35342,368.69785240793794,0,0.0,43953,454.6747244934234,1210735,0,43567,0,0,20196,0,0,62,0.6377951109345267,0,0.0,0,0.0,0,0.0,0.06213,0.1438693990969086,0.3172380492515693,0.01971,0.3393435043920481,0.6606564956079519,23.71158441282598,4.161767741572361,0.3008457511075312,0.2639951671365284,0.2142569472412404,0.2209021345146999,11.245357779625705,5.956670106610979,21.13345479101533,13794.752644291666,57.130272184621376,16.166922714803892,17.157903958742164,12.217492597544762,11.58795291353058,0.576318968989126,0.8032036613272311,0.7028112449799196,0.5670009115770283,0.1287593984962406,0.739972337482711,0.9120458891013384,0.852803738317757,0.7092198581560284,0.1314553990610328,0.509090909090909,0.7309644670050761,0.6425891181988743,0.5177914110429448,0.1280846063454759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028262895579237,0.0053850132343545,0.0079170938175617,0.0105567973989026,0.0132029986471503,0.0158983969201311,0.0182934290492311,0.0209833052534844,0.0236244630803845,0.026167286283426,0.0290072107741068,0.0313610683102208,0.0337912229253485,0.0360533069478371,0.0386330786702457,0.0409552078269952,0.0435611555518713,0.046074624696331,0.0484493502980618,0.050577612811744,0.067212052825142,0.08329493570142,0.0984687076900471,0.1135313739727036,0.1275499973616168,0.1451720451731036,0.1590221212153393,0.1736030438350616,0.1862221699172987,0.1981863893246234,0.2126061573989144,0.2262882181321243,0.2389303319809798,0.2515660482924314,0.2617686023404725,0.2730071577824212,0.2837691058731314,0.2935135867112033,0.3026038642392777,0.3113570796409319,0.3185942492012779,0.3256166492355782,0.3318388849909024,0.3369765398365372,0.3422355552303602,0.3467193030220528,0.350775802500157,0.3540620327416325,0.3584903207353381,0.3627679588754339,0.3601097920441332,0.3579941719951939,0.3562771358667213,0.353289416407905,0.3506966198275605,0.3465300919882673,0.3431966744938757,0.3431309588499728,0.3435775256247643,0.3436098855769575,0.3446718844069837,0.3457485861692628,0.3468688948175535,0.3479794235909877,0.3497657118013622,0.3517601043024772,0.3510384068278805,0.3549650612603014,0.3583123425692695,0.3632471856667195,0.3677603552977431,0.372118782636215,0.3763319543688103,0.3827591440279253,0.3834860669534318,0.3909774436090225,0.39506548888212,0.4004056795131845,0.4002195992314027,0.39568345323741,0.0,2.997895315090312,62.77537224234342,191.0171139473239,253.14958519635604,APP_public_implementation,3 +100000,95742,53161,504.4181237074638,6198,63.42044243905496,4931,50.89720289945896,1829,18.68563430887176,77.32698317968122,79.68798291591497,63.31555014592704,65.06161350054542,77.09663565564067,79.45893393135192,63.22979347553382,64.97880218856517,0.2303475240405532,229.04898456305037,0.0857566703932235,82.81131198025093,233.14852,163.26348058050638,243517.4949343026,170524.40995645212,424.12972,274.68877835131315,442380.98222305777,286293.8505058524,493.11518,239.1859790777449,511172.7768377515,246860.0000894041,3435.05744,1596.7376522455977,3547248.8876355207,1627172.236056902,1155.66297,519.6141914608684,1189581.9494056946,525248.66978374,1779.34576,754.967123611671,1819709.8660984728,755890.9604068733,0.43477,100000,0,1059766,11068.9770424683,0,0.0,0,0.0,35237,367.3936203547033,0,0.0,44552,461.51114453426914,1209459,0,43444,0,0,20703,0,0,79,0.8146894779720498,0,0.0,2,0.0208894737941551,0,0.0,0.06198,0.1425581341858914,0.2950951919974185,0.01829,0.3503469545104086,0.6496530454895914,23.6116720192326,4.119054642045641,0.3149462583654431,0.2747921314135064,0.2068545933887649,0.2034070168322855,11.298725657025,6.096119875950866,19.574091288491385,13785.273889140768,56.6656570739972,16.751936723466713,17.635221574571222,11.26582328691302,11.012675489046238,0.585682417359562,0.8140221402214022,0.690920798454604,0.6011964107676969,0.1068627450980392,0.7539195637355146,0.915371329879102,0.8418604651162791,0.7410358565737052,0.1352657004830917,0.5144341801385681,0.7384020618556701,0.6331255565449688,0.5545212765957447,0.0996309963099631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022389949850564,0.0049988846302042,0.0077948967785153,0.0105047139141742,0.0132214594457157,0.0159055037930858,0.0186809152832728,0.02107874160423,0.0236805527165692,0.0260079221297632,0.0284613255987947,0.0309596887606885,0.0333864418975176,0.0356889113131583,0.0379191896268941,0.0401942550113659,0.0427981323698404,0.0452140901170027,0.047548769967885,0.0498171703597212,0.0677092032737598,0.0835556392471937,0.0993971798500812,0.114686373240547,0.1289013502545561,0.1467223514485092,0.1617436495731028,0.175115256438922,0.1879255609119964,0.1992658344692863,0.2137090254497634,0.2276173558910816,0.2403604427176858,0.2513759861690138,0.2627042141882073,0.2738981998758535,0.285109472743521,0.2934704265957926,0.3025673066000227,0.309773763953515,0.3163763953865394,0.3233823271066346,0.3299713181785858,0.3357377757507381,0.3415568774862231,0.346735590209238,0.3510425020048116,0.3548912974260351,0.3582807294974659,0.362719738161854,0.360407047960049,0.3577590358130512,0.3546306986174077,0.3526393385753931,0.3500713309160078,0.3460636618595883,0.3419285352255448,0.3416932015888126,0.3422921931562052,0.3415577012149499,0.3428165273179582,0.3436839923406439,0.3443118169040676,0.3459320518551632,0.3468730471566601,0.3481014307680279,0.349402390438247,0.3540620291310899,0.3605770914311727,0.3643196202531645,0.3683828861493836,0.3710844646347261,0.3748356807511737,0.3783702137300808,0.3829051844932274,0.3898963730569948,0.3946044810242341,0.399959661153691,0.4069444444444444,0.4121306376360809,0.0,2.3100548268623813,64.43710972402303,185.273232316852,250.47867997642115,APP_public_implementation,4 +100000,95752,53269,504.32366947948873,6394,65.33544991227338,5083,52.42710335032167,1913,19.56094911855627,77.39144353273707,79.73176334753887,63.36142006586866,65.08774701928901,77.15726843183599,79.50074395972723,63.27319407018766,65.00376712806323,0.2341751009010835,231.01938781164225,0.0882259956810003,83.97989122578053,232.88628,162.9981437995143,243218.1886540229,170229.49264716593,425.96155,275.52955743991686,444189.01955050544,287083.1705237665,494.58266,239.45277599496328,512564.62528197846,246954.75653675443,3578.87417,1655.6743517427765,3693531.706909517,1685009.8815092912,1168.14564,522.6205836484338,1206492.8356587852,532329.3128586694,1855.48956,780.1301041654255,1899141.5114044612,780770.1942022864,0.43338,100000,0,1058574,11055.372211546495,0,0.0,0,0.0,35288,367.8461024312808,0,0.0,44649,462.42376138357423,1216314,0,43706,0,0,20801,0,0,87,0.8981535633720444,0,0.0,3,0.0313309382571643,0,0.0,0.06394,0.147537957450736,0.2991867375664686,0.01913,0.3422898940140319,0.657710105985968,23.64705982559909,4.115894476257276,0.3153649419634074,0.2697226047609679,0.1971276805036395,0.217784772771985,11.352082685907888,6.171745623828872,20.264874833194455,13768.163502558324,58.09534693075396,16.810907296314607,18.0533465739416,12.324146827798677,10.906946232699076,0.5931536494196341,0.7986870897155361,0.7036805988771054,0.6043360433604336,0.122754491017964,0.7543624161073825,0.925217391304348,0.8561320754716981,0.73992673992674,0.1238532110091743,0.5263011411077094,0.707286432160804,0.648854961832061,0.5599520383693045,0.1224489795918367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028653005021869,0.0056345450307569,0.0081877396968405,0.0105219325418185,0.0131569582414006,0.0158476508427652,0.0184532300794782,0.020884771563246,0.0238024701447557,0.0260702300073667,0.0286168032786885,0.0308806631648063,0.0334357435702469,0.0357337669689079,0.0383984991083301,0.0407813323141443,0.0431574262856669,0.0456746974206863,0.048200160078168,0.0507416975707321,0.0684662679151139,0.0851985559566787,0.1005056757380557,0.1146868591260451,0.1291281791724661,0.147067532412597,0.1610758184768429,0.1745930418129588,0.1878484311254458,0.1985227114355857,0.2126131751482984,0.2277033896471911,0.2410299888044695,0.2517454247473368,0.2621759493392555,0.2729797923906066,0.2831374997212994,0.2926810088187384,0.3006563360803473,0.3081808506986165,0.3161052412549418,0.3231515576597112,0.3295958556576659,0.3357012794096506,0.3400475658884628,0.345889652116109,0.3503988197934639,0.354316981612267,0.3579224007353417,0.3613029951487028,0.3589023045688009,0.3566690016069883,0.3542583247824803,0.3513466776187799,0.3495777152170692,0.3456151592823142,0.3415322962355243,0.3412109119455711,0.3405852612226137,0.3413170453736021,0.3424790851752727,0.3438363736871199,0.3460056941885781,0.3468935903743794,0.3483378667886286,0.3494001043296817,0.3516120770609829,0.3544885308832321,0.3601350638387675,0.364037353467117,0.3663867847038423,0.3676572587099184,0.370225145459145,0.3753911915120983,0.3766879219804951,0.3790104595134563,0.381812707015959,0.3829107606308644,0.388273439610916,0.3906131718395155,0.0,2.6068848783738434,65.13323343418703,183.68925935983208,268.6281720699277,APP_public_implementation,5 +100000,95711,53248,505.4486945074234,6486,66.22018367794715,5148,53.04510453343921,1885,19.1827480644858,77.37264048070351,79.7314222040558,63.34029949113111,65.0817510129264,77.13191868187009,79.49794355431303,63.24893046810559,64.99668087702746,0.2407217988334196,233.47864974277852,0.0913690230255213,85.07013589894541,231.63536,162.25636943625554,242015.4005286749,169527.39960532807,428.37869,276.64125297463386,446852.2740332877,288315.1810916549,497.2214,239.98871136889667,515182.80030508514,247366.26418483187,3595.50951,1671.8385572654045,3706942.242793409,1697067.7740963993,1191.91742,542.1583536026994,1226022.3380802623,547146.2774421957,1837.82842,782.7245820706075,1872971.46618466,777481.2647561566,0.43443,100000,0,1052888,11000.700024030675,0,0.0,0,0.0,35490,370.04106111105307,0,0.0,45052,466.3413818683328,1217692,0,43787,0,0,20680,0,0,82,0.8567458285881456,0,0.0,1,0.010448119860831,0,0.0,0.06486,0.1492990815551412,0.2906259636139377,0.01885,0.3526541475676475,0.6473458524323525,23.513935509110198,3.985500623337328,0.3133255633255633,0.2841880341880342,0.2008547008547008,0.2016317016317016,11.35686836943104,6.15838688863355,20.18310258942408,13829.169804446596,59.375635241956346,17.913739352470863,18.54963017004909,11.534217218231092,11.3780485012053,0.5936285936285937,0.7949419002050581,0.7290762554246745,0.5809248554913294,0.1102514506769826,0.7617161716171618,0.9049235993208828,0.8901345291479821,0.7045454545454546,0.1759259259259259,0.523534269199009,0.7208237986270023,0.6675235646958012,0.5387596899224806,0.0929095354523227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024506329113924,0.0050267043669494,0.0073749454740963,0.0098614722131946,0.0125369856327974,0.0151780442616609,0.0179707249449563,0.0204239943657946,0.0228970959531427,0.0253659535264612,0.027774644999231,0.0302252520482125,0.0327085025654735,0.0350981987456101,0.0374810428251606,0.0399247599656872,0.0425725763034745,0.044839281824688,0.0471043113125181,0.0497057444924743,0.0668191216089217,0.0830438240341551,0.0981251572854626,0.113108189070728,0.1275631226609034,0.1458793677644446,0.1607548210535248,0.1749962750899299,0.1881702054940829,0.199912051139045,0.2149542776515192,0.2293434037396121,0.2419239052404881,0.2538750150406371,0.2649250035764985,0.2761987079330252,0.2860268834010628,0.295105966081845,0.3043888251400266,0.3126569937489247,0.3202649190653729,0.326766860968701,0.3329817742279525,0.3380381425605204,0.3430610780773112,0.3472741404197046,0.3521218497920737,0.3569001285461557,0.360747034139771,0.364233865646034,0.3617880705533863,0.3584342322509631,0.3557825045781096,0.3532830254141729,0.3505634347218506,0.3470679272459815,0.3430511371729737,0.3426657252171628,0.3425515217688003,0.3430097951914514,0.3435714552447813,0.3437641544733059,0.3444655889918233,0.3461255599384903,0.3484710506134969,0.3491202574349925,0.3509119746233148,0.3566882954829049,0.3614881325259275,0.3674710614086717,0.371316572046499,0.3783570300157978,0.3835891011587848,0.3875594474220578,0.3925285754112071,0.3966427984505223,0.4005746257371843,0.4035192961407718,0.4094488188976378,0.4131419939577039,0.0,2.9367687084314347,66.09584995027498,197.20699597191052,262.00473090295986,APP_public_implementation,6 +100000,95732,52680,498.95541720636777,6383,65.28642460201395,5115,52.70964776668199,1975,20.2022312288472,77.33281654085012,79.69813460958125,63.319784280511655,65.07077255609317,77.07992432252101,79.44795588353955,63.22501361233539,64.979822446091,0.2528922183291087,250.1787260416961,0.0947706681762667,90.95011000216856,232.54352,162.64332704178685,242910.7299544562,169894.2111871964,423.05464,273.9852565536612,441177.9446788952,285463.91696725355,485.3294,235.5745450643555,502445.20118664607,242591.6652148084,3630.82401,1687.0535796553838,3744990.358500815,1714609.336363498,1218.18512,545.6725514282934,1253114.016211925,550647.5599001991,1921.62932,815.8559776275212,1967618.2049889276,817210.9257806515,0.43282,100000,0,1057016,11041.396816111645,0,0.0,0,0.0,35119,366.084485856349,0,0.0,43967,454.78001086366106,1216972,0,43778,0,0,20332,0,0,80,0.8252204069694564,0,0.0,1,0.0104458279363222,0,0.0,0.06383,0.1474747007994085,0.3094156352812157,0.01975,0.3554921968787515,0.6445078031212484,23.63363196686917,4.186070659869756,0.313782991202346,0.2631476050830889,0.209188660801564,0.2138807429130009,11.18030646194521,5.957913671253865,21.18427932361365,13780.324154029278,58.74664313719451,16.562563097992875,18.346101700018824,12.239538244144592,11.598440095038235,0.5781036168132943,0.8090638930163447,0.6897196261682244,0.576782449725777,0.1214953271028037,0.7435043304463691,0.9095744680851064,0.835214446952596,0.7228464419475655,0.1762114537444934,0.5094078583287216,0.7365728900255755,0.6342512908777969,0.5296251511487303,0.1067615658362989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025940074375057,0.0051220674895783,0.0078180525941719,0.0102255516817271,0.0126765148740487,0.0155231421121251,0.0182135245107537,0.0206738131699846,0.023629373632441,0.0259571374448346,0.0285324693965428,0.0310610027826551,0.0333960537544855,0.035931658788272,0.038504792464121,0.0409315017519923,0.0433314691687897,0.0457658779576587,0.0479770408959041,0.0504630642456063,0.0673779596609178,0.0845138205938356,0.1000713072292946,0.1149927984945173,0.129218931168968,0.1472109131285359,0.1618815294055258,0.1747775365095585,0.1876735740226447,0.199051929388044,0.2135073437567299,0.2267356301939058,0.2398229414771553,0.2514078269712311,0.2615961800818553,0.2725329257080827,0.2822748074561893,0.2924303147656144,0.3006721467823243,0.3091021558340397,0.3161392661548971,0.3229807118012859,0.3299914675767918,0.3359965450226733,0.341427824458577,0.3460294734763398,0.3497305426745206,0.3547976260220586,0.3595155978528641,0.3626751255617235,0.3602141113972521,0.3572334150979798,0.3550203183203522,0.3519408342258373,0.3489657021162524,0.3460246875718776,0.3426941362916006,0.3422042613309677,0.3434371048764651,0.3438793718772305,0.3438483440731305,0.3453221754011118,0.3466292370218293,0.348566448412255,0.3491857304370835,0.350662908445558,0.35246931201827,0.3570798689846309,0.3620022513015337,0.3664079601990049,0.3689856660275724,0.3709445421128336,0.3746688532862369,0.3763145861911294,0.3797955163680705,0.3877333963601985,0.3916552459266027,0.3912344189786891,0.3842986549547076,0.3855559801299197,0.0,2.778673472853796,65.36012102739586,193.95118083091063,261.64047243393804,APP_public_implementation,7 +100000,95759,53530,507.2421391200827,6462,65.90503242515064,5180,53.29003017993087,1983,20.227863699495607,77.34910350822409,79.67771696262986,63.34642956891118,65.06679760682306,77.0890449559077,79.42261962203648,63.247280114928586,64.97254222624314,0.2600585523163943,255.0973405933803,0.0991494539825907,94.25538057992355,231.37334,161.95972189557042,241620.46387284747,169132.63703210186,426.95424,276.5737630893825,445110.0575402834,288069.4901673812,497.95406,241.7586652357152,514652.0953644044,248409.2515193958,3644.91177,1693.957900333873,3758579.350243841,1721313.1377969198,1197.50475,543.7642246407811,1234979.4692927036,552328.2463071967,1930.6748,828.4990261583704,1973350.8286427383,828313.999845187,0.4348,100000,0,1051697,10982.748357856704,0,0.0,0,0.0,35412,368.9888156726783,0,0.0,44912,463.6848755730532,1218449,0,43885,0,0,20725,0,0,83,0.8667592602261929,0,0.0,1,0.0104428826533276,0,0.0,0.06462,0.1486200551977921,0.3068709377901578,0.01983,0.3586186540731995,0.6413813459268005,23.68049859201968,4.102330651132367,0.3102316602316602,0.2749034749034749,0.2073359073359073,0.2075289575289575,10.931111101010938,5.799091122691585,21.32763533583423,13861.07249201634,59.66298250903062,17.592451912677383,18.32926486031275,12.048963229945036,11.692302506095452,0.577992277992278,0.7900280898876404,0.6963285625388923,0.5841860465116279,0.1135940409683426,0.7302204928664072,0.8822525597269625,0.8314350797266514,0.7301038062283737,0.1447368421052631,0.5134689389774602,0.7255369928400954,0.6455479452054794,0.5305343511450382,0.1052009456264775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028758911211924,0.0055848934207725,0.0083290217203842,0.0110511828219114,0.0138792858014397,0.0164400016287308,0.0189669581524287,0.0215032913201,0.0238482052539619,0.0260890916903685,0.0284499538981661,0.0309697280656747,0.0336878885977082,0.0361995141833751,0.0387767937231289,0.0411084830143466,0.0434598151923096,0.0458103918457917,0.0482860378848491,0.0507034333378458,0.0679287421337702,0.0849911097165568,0.1013147961751384,0.1166918905284399,0.1312650170720398,0.1496882595371446,0.1638770815887384,0.1772925949952675,0.1901133380290708,0.2011721470433823,0.2153428845139554,0.2286900937733216,0.2418409404804628,0.2529590653510403,0.2637528342175358,0.2748789433443771,0.2854431157114304,0.2946629466294663,0.3043986605369204,0.3118284496781141,0.318499571769172,0.3251580426129712,0.3315768283440697,0.3371303868198278,0.3420192272633357,0.346766034104089,0.3514806834694593,0.3556351036318934,0.3593219019948637,0.3625090885055192,0.3594820609657405,0.356752881486792,0.3537715228519453,0.3514346040377162,0.3493691203352802,0.3458599408891135,0.3430529831726583,0.3437756542869339,0.3444087601216304,0.344194026916409,0.3455625960781373,0.3470863209602662,0.3480412717053938,0.3483589111683656,0.3492592056367936,0.3514694721415299,0.3529327528926567,0.357954725344309,0.362199992930614,0.3651276306313515,0.370606296686678,0.3756266666666666,0.3806525472238122,0.3836236666410866,0.3889258239149017,0.3872985325956218,0.3956454121306376,0.3928865131578947,0.3910863509749304,0.3939873417721519,0.0,3.1877229926583444,66.91997420156721,192.66031360786693,267.6435352426956,APP_public_implementation,8 +100000,95644,53052,503.2307306260717,6346,64.83417673873949,5042,51.90079879553343,1908,19.44711638994605,77.31532774038504,79.70699418533073,63.31028192710126,65.07590249168634,77.07540044166983,79.46924777518903,63.219868091768014,64.98887729403414,0.2399272987152159,237.74641014169617,0.0904138353332442,87.02519765219563,231.5643,162.05404974937224,242109.94939567565,169434.02911800772,422.51957,273.8003893472796,440954.0169796328,285463.17870707466,489.97306,237.9719330839693,506377.9745723725,244341.8085827708,3544.64081,1656.3355626123846,3653718.612772364,1679611.485431068,1154.96875,525.0592762228987,1187629.3024131153,529117.4606985489,1846.22584,783.7147479426627,1885032.516415039,784307.0171383917,0.4332,100000,0,1052565,11004.997699803436,0,0.0,0,0.0,35061,365.7312533980176,0,0.0,44335,457.5718288653757,1219844,0,43859,0,0,20604,0,0,64,0.6691480908368533,0,0.0,0,0.0,0,0.0,0.06346,0.1464912280701754,0.3006618342262843,0.01908,0.3521254145312029,0.6478745854687971,23.704589185917133,4.127086976095065,0.3129710432368108,0.275089250297501,0.1975406584688615,0.2143990479968266,11.562941286984527,6.401071037053019,20.418130711172,13843.824090216587,57.92309213889106,17.032092560406358,17.993988564006802,12.040220906053964,10.856790108423954,0.5916303054343515,0.7995674116798847,0.7243346007604563,0.5735430157261795,0.1114457831325301,0.7531519575315195,0.9126559714795008,0.8683035714285714,0.7316176470588235,0.1548672566371681,0.5227722772277228,0.7227602905569007,0.6672566371681415,0.5203955500618047,0.0987012987012987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655651680612,0.005464425474969,0.008108546956504,0.0105256741104992,0.013214111328125,0.0159918512859689,0.0187874831708212,0.021153158674225,0.0238482384823848,0.0266758146107686,0.0291674358501015,0.0314329738058551,0.0338662222496553,0.0362088863242931,0.0386044591246903,0.0408832350811873,0.0431129162608533,0.0458116677564322,0.0480455179013501,0.0502558650949983,0.0673562137595988,0.0837085121976756,0.0986450604002896,0.1132133048519987,0.1276620443656472,0.1461083295402822,0.1614444527027744,0.1752375271611776,0.187706416134928,0.2,0.2146714234902294,0.2284210640302338,0.2405482195926454,0.2522764085277765,0.2629393428719338,0.2748216920124677,0.2848461151762274,0.2946573306916426,0.3036057009823406,0.3119037791230967,0.3192965790479721,0.3252391378159722,0.331517362262542,0.3376824467063568,0.3424098025867937,0.3474448774231737,0.352489509613578,0.3563990936632806,0.3611791066039813,0.3654829038946631,0.3629357155368716,0.3595669660073825,0.3573300273308726,0.35384303856056,0.3509134422428017,0.3471200980392157,0.3428774928774928,0.3436399088957708,0.3445687772925764,0.3451392107233254,0.3462206857890311,0.3466190485586314,0.3484743774999476,0.350387804823532,0.350732094342798,0.3505796535104858,0.351002456160393,0.3551077136900625,0.3587382237747433,0.3628848688151431,0.3668314113124656,0.3707589880159787,0.3746678476527901,0.3792149934710807,0.3862062422920027,0.38853806743715,0.3905037285040328,0.3896985426232781,0.3959879087661445,0.3935483870967742,0.0,3.1067431927924187,65.28553671555066,184.524100482196,261.9153464185241,APP_public_implementation,9 +100000,95616,53000,502.1230756358768,6335,64.85316265060241,5003,51.63361780455154,1950,19.94436077643909,77.3146043072854,79.73266119210425,63.296484254502126,65.08247422520542,77.06928750755473,79.49015807580963,63.20474637954361,64.99476971404135,0.2453167997306735,242.50311629461407,0.0917378749585182,87.70451116406264,232.14488,162.40900310300825,242788.7382864793,169855.46676603105,424.44185,275.02749290715457,443242.6895080321,286977.6741415187,488.71987,236.59775960503285,506189.8636211513,243753.3956814648,3511.44392,1628.672711899755,3630119.268741633,1661273.5150039054,1171.28411,528.7570059912443,1209648.8662985277,537780.5099016782,1889.9192,795.487002634593,1936613.140060241,799448.7470315862,0.43348,100000,0,1055204,11035.85174029451,0,0.0,0,0.0,35244,367.8986780455154,0,0.0,44278,458.1764558232932,1214915,0,43646,0,0,20390,0,0,71,0.7425535475234271,0,0.0,1,0.010458500669344,0,0.0,0.06335,0.1461428439605056,0.3078137332280978,0.0195,0.3469387755102041,0.6530612244897959,23.69519789553333,4.103389867449564,0.3102138716769938,0.2712372576454127,0.2096741954827103,0.208874675194883,11.436038573089444,6.318272750117973,20.768065706240854,13816.517043607138,57.6955588452524,17.042280877031764,17.68369656704465,11.696570865864986,11.273010535310997,0.5904457325604637,0.815033161385409,0.7164948453608248,0.5827751196172248,0.1210676835081029,0.7633898305084745,0.9123711340206184,0.8542141230068337,0.7104247104247104,0.1846153846153846,0.518140589569161,0.7419354838709677,0.6621743036837376,0.5407124681933843,0.1065573770491803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023203266695712,0.0050501465353763,0.0076948065131765,0.0104455621602398,0.0130716959635416,0.0157771440211855,0.0185432625126222,0.0211870466850546,0.0237493735361201,0.0263284554177632,0.0291487179487179,0.0317205957883924,0.0342990000411505,0.0368569102842835,0.0391122580645161,0.0415361230883767,0.0440891523070387,0.0465442237611221,0.0490599019842467,0.0511494013100254,0.0675976544126101,0.0838047349675256,0.0995316405183458,0.1148364141648069,0.128232735870965,0.1464135199813634,0.1605094323589395,0.174332850200358,0.187082762752482,0.199123268831992,0.2142325330455894,0.2275737964378245,0.2406656640292944,0.25208739672591,0.2629559810827794,0.2731702444113925,0.2837454171510328,0.2926620391237717,0.3018726421526294,0.3096316858030993,0.3166712982261127,0.3238284677938337,0.3303108501621724,0.3359667210127553,0.3408699031012458,0.3458747582264602,0.3505228136882129,0.3547099284197678,0.3588316747117363,0.362335092348285,0.3595982172911982,0.3570573751323989,0.3550601068252603,0.3532960118040186,0.35153761424191,0.3483256377609719,0.3450983502538071,0.3458973472311416,0.3465225966898207,0.3461407684461067,0.3468332615252046,0.34763237787328,0.3489309279211559,0.3498918159309406,0.3496540330883233,0.3515040029017799,0.3539120324419363,0.3596677491881089,0.3631573437554524,0.3670471150428498,0.3728974498100922,0.3757867456497593,0.3753556300183347,0.3758665346232955,0.3799077299689294,0.3842841765339074,0.3886292834890966,0.3898583453089714,0.4000553709856035,0.4053522235340417,0.0,2.73771911825344,64.45964658545337,193.3097986331965,251.72926890494023,APP_public_implementation,10 +100000,95638,53027,503.1995650264539,6361,65.08919048913612,5101,52.67780589305506,1937,19.751563186181222,77.29129418892526,79.69054559034394,63.29829466637945,65.06958139576936,77.04158242270515,79.44752850958224,63.203047816353376,64.98061684823875,0.2497117662201162,243.01708076170317,0.0952468500260721,88.96454753060823,231.07964,161.77952863894242,241619.06355214457,169158.209748157,421.36971,273.32467489424675,439929.3272548568,285133.3831261835,493.55392,239.3721030213755,512626.2155210272,247618.4740721584,3555.00143,1658.0161821527145,3671882.368932851,1688638.309753023,1166.30697,524.1799863660867,1204896.0455049248,533819.0124828276,1880.48014,800.6830920145039,1920540.0782115897,796901.4659057853,0.43346,100000,0,1050362,10982.68470691566,0,0.0,0,0.0,34989,365.1372885254815,0,0.0,44674,463.64415817980296,1219190,0,43837,0,0,20229,0,0,74,0.7737510194692486,0,0.0,0,0.0,0,0.0,0.06361,0.1467494117104231,0.3045118692029555,0.01937,0.3506766917293233,0.6493233082706767,23.59285837283367,4.012598064001442,0.3109194275632229,0.2754361889825524,0.2009409919623603,0.2127033914918643,11.177868171548443,6.122056175933976,20.742883286329832,13804.169409937853,58.832639540769286,17.32669023511255,18.16894214970167,12.246608646432472,11.09039850952258,0.5908645363654186,0.80711743772242,0.712484237074401,0.5852534562211982,0.1121951219512195,0.7677852348993288,0.9192439862542956,0.8600917431192661,0.7314487632508834,0.1428571428571428,0.5178620880642482,0.7278250303766707,0.6565217391304348,0.5336658354114713,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026640195293903,0.0054851465071479,0.007998132415781,0.0105172238593638,0.0131449093998311,0.015562458624026,0.0181087750066276,0.0205955030939203,0.0234643382954359,0.0256281612843773,0.0283250094861092,0.0307813976418388,0.0333319616476688,0.0357153897676335,0.0381558028616852,0.0405965888522284,0.0430713745323398,0.0455715917350223,0.0477612561522533,0.0502236448374013,0.0674100937470606,0.0844865334855802,0.1001596169193934,0.1148024168929872,0.1295045282779877,0.1465030856683144,0.1614023166679053,0.1749371457791792,0.1873289136013687,0.1996714199811012,0.2136224913457494,0.227477526264486,0.23994773803691,0.2518181818181818,0.2622665225924537,0.2725517608681179,0.2828638497652582,0.2927419990762749,0.3017824076703738,0.3103203173365739,0.3176564599064251,0.3243559581914159,0.3303399007191346,0.3358610097907468,0.3412248473198861,0.3464933397528487,0.3513862428557104,0.3546084828711256,0.359328188833409,0.3630601006299275,0.360332672840255,0.3573456449834619,0.3547244372309646,0.3522819413876983,0.3503499627699181,0.3473244326998417,0.3436805687805497,0.3439785229593517,0.344478911378087,0.3452073930797335,0.3461314389881791,0.3467237993215497,0.3476734161778002,0.3494551325171532,0.3503224564443161,0.3530899608865711,0.3537683588534416,0.3599008036162732,0.3615257630571458,0.3668867324212536,0.3700834054965589,0.3740725037099852,0.3787553648068669,0.3833831532152985,0.3871243007490281,0.3917117117117117,0.3992525692930551,0.3994169096209912,0.4024698287959584,0.4060208413739868,0.0,2.479021325238968,65.13490419302796,199.19143049582271,257.9227807337756,APP_public_implementation,11 +100000,95628,52875,500.146400635797,6341,64.91822478771908,5064,52.327770109173045,1940,19.826828962228635,77.27514686010801,79.68667297852288,63.27600815666828,65.05675207602721,77.02842437034003,79.44297171498393,63.18366315873004,64.96836508333955,0.2467224897679756,243.70126353895216,0.0923449979382482,88.38699268765993,230.17236,161.0894876578623,240695.5703350483,168454.31009522558,422.10362,274.30626055148736,440673.2442380893,286120.0111399004,496.23298,241.02932511192668,515276.3834860083,249225.0768286944,3594.05811,1680.9067442938483,3713100.1589492615,1712961.5557767034,1218.55093,555.7149928101941,1257465.188020245,564454.2814083818,1887.62228,805.0754937018377,1930626.0509474208,804679.3316169044,0.43088,100000,0,1046238,10940.707742502196,0,0.0,0,0.0,34998,365.2905006901744,0,0.0,44817,465.0311624210482,1220450,0,43826,0,0,20733,0,0,80,0.8261178734261931,0,0.0,0,0.0,0,0.0,0.06341,0.1471639435573709,0.3059454344740577,0.0194,0.3533132530120482,0.6466867469879518,23.534203496979195,4.077442629660652,0.3054897314375987,0.2740916271721959,0.2059636650868878,0.2144549763033175,11.469764064885984,6.282309639324122,20.807518259810895,13846.563674243336,58.55504859960786,17.19980485282377,17.803982483240077,12.033491768895798,11.517769494648196,0.5985387045813586,0.8141210374639769,0.7297996121525533,0.5773480662983426,0.1390220517737296,0.760898282694848,0.9204946996466432,0.8913525498891353,0.7192307692307692,0.1772151898734177,0.5292957746478874,0.7408759124087592,0.6633211678832117,0.5326876513317191,0.1277915632754342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027847537265068,0.0051691110142606,0.0077520166404545,0.010675469781615,0.0133544889594076,0.0159381619683884,0.0187420973202267,0.0213678267705281,0.0241481193706358,0.0269290629095674,0.029663668160791,0.0323601323169854,0.0350841092648798,0.0374165086171353,0.0400764147046674,0.042455904412145,0.0448604330565834,0.0469009637753406,0.0494604410127267,0.0517369041287321,0.0689932689493707,0.0852229860005029,0.1011219430204218,0.1163363989760121,0.1310010457267801,0.1479951706170172,0.1628233193768464,0.1763552049464314,0.1888151557315637,0.2001461862584917,0.2140142517814726,0.2275078905411121,0.2393894794221858,0.2505648540153991,0.2616335540838852,0.2720272882824826,0.2823127728646591,0.2921491614184781,0.3012738055938165,0.3091608753087129,0.3167055383437184,0.3240158588654812,0.3309324346773619,0.3367011052378664,0.3416889754198102,0.346393610586478,0.3511344110970363,0.3554836325641254,0.3601625594016983,0.3619295854778317,0.3603326313515848,0.3575910526388371,0.3549201958764341,0.354149179426322,0.3512970785982031,0.348743102391171,0.3461508018173471,0.3455820753322273,0.3457156501569109,0.3459351549827995,0.3462136686468152,0.3474911102331094,0.3485702314863307,0.3488158865755753,0.3505496884697731,0.3520164759248155,0.3525122479207018,0.3574395770392749,0.361741025911472,0.3656063618290258,0.3693742889647327,0.373714772787811,0.3766356316054353,0.3813745548230658,0.3857815442561205,0.3882381066220416,0.39509788808386,0.4005722460658083,0.4052631578947368,0.3992292870905587,0.0,2.4409250697824314,66.43497294073116,194.44867342341345,255.0188207300968,APP_public_implementation,12 +100000,95668,53494,506.7211606806873,6479,66.29175899987456,5140,52.95396579838608,1966,20.02759543420997,77.28391542799022,79.68251436077973,63.28504443165552,65.05997029621716,77.03527500709181,79.4383827560144,63.19217401902202,64.97229256634469,0.2486404208984112,244.1316047653288,0.092870412633502,87.67772987246758,232.28282,162.6324155372798,242800.03763013755,169995.8688479688,431.08546,279.11972286941693,449830.09992892086,290987.2042411852,496.33277,240.4876727083501,514109.4514362169,247723.48833159904,3610.24362,1675.633817506509,3720484.0803612494,1698582.636241129,1187.0014,536.1960847995679,1220878.2142409163,540603.3938198433,1911.98718,808.0003438048307,1949577.873479115,803276.4009299582,0.43644,100000,0,1055831,11036.365346824434,0,0.0,0,0.0,35779,373.1864364259731,0,0.0,44840,464.1050298950537,1209513,0,43470,0,0,20672,0,0,82,0.8466780950788142,0,0.0,0,0.0,0,0.0,0.06479,0.148451104390065,0.3034418891804291,0.01966,0.3489091981132075,0.6510908018867925,23.919188344229145,4.054002857256051,0.3130350194552529,0.2667315175097276,0.2054474708171206,0.2147859922178988,11.248841670832258,6.221421942187094,21.11157116258884,13954.284883383216,59.136989503598045,16.91397499781756,18.332454557396144,12.266744320606476,11.623815627777864,0.5785992217898833,0.8103574033552152,0.689869484151647,0.5715579710144928,0.115530303030303,0.7583001328021248,0.927433628318584,0.8650963597430407,0.736,0.1339285714285714,0.5041276829939461,0.728287841191067,0.6182136602451839,0.5234192037470726,0.110576923076923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026955270464725,0.0053858325219084,0.0079697858818035,0.0103454233188687,0.012952392580609,0.0158300057045065,0.0185017083992044,0.02115251052008,0.0240657025385071,0.0267166579591669,0.0292799031526679,0.0318424216269535,0.0344107265973101,0.0370507786331921,0.0395259773104993,0.0418429081131392,0.0441526951692122,0.0466081901697202,0.0491491220770575,0.0514132655188226,0.0682983902138372,0.0845234106709104,0.1002865329512893,0.1162257161499442,0.1300758943179539,0.1481308955397694,0.1627939083706803,0.1766435175322738,0.1893114102139214,0.2015114431705955,0.2154260766452864,0.2296208017334778,0.2427776507355743,0.2546270945131968,0.2654712177487794,0.2768576693381879,0.2875845491642909,0.2972726248168601,0.3063407094229829,0.3149930592999644,0.3227007096145818,0.3292681496769352,0.3360226854763119,0.3414710297208045,0.3463753119483839,0.3496932515337423,0.3540308833851399,0.3578550599141718,0.3615838247683235,0.3661285851933001,0.3638666558870294,0.3611420862071339,0.3585647267655636,0.3562099057966826,0.3545294870649876,0.3497100070580293,0.3458567916897946,0.3457704498053963,0.3464907778119974,0.3468982541499714,0.34777378916308,0.3493636201179437,0.3487410906330395,0.3496939418489513,0.3506002182611858,0.3518907012115173,0.3527932561794542,0.3584214680347277,0.3616154521510096,0.3666719543147208,0.373832627215161,0.3757556474705695,0.3776499280845475,0.3781670551086384,0.3807262569832402,0.3828078875900342,0.3841221374045802,0.3906628940986257,0.3880846325167038,0.3933922397233961,0.0,3.0221295426564216,65.61277133399759,194.94249694987505,263.5318412486335,APP_public_implementation,13 +100000,95647,53051,502.3785377481782,6327,64.91578408104802,5060,52.223279350110296,1959,20.05290286156388,77.35161970545354,79.75767163799239,63.31721993396855,65.094318687997,77.10881779020606,79.5171601343311,63.226665029850594,65.00722854624097,0.2428019152474831,240.51150366128127,0.0905549041179583,87.09014175603613,232.37148,162.65463321304122,242946.5011971102,170056.8106271634,427.19005,276.60873772428045,445944.2847135823,288512.4137187371,498.22992,241.84793359562863,516493.13621964096,249489.7899064816,3533.52913,1645.9289245547554,3649179.4724351,1675850.5385050566,1175.19976,531.4190663141875,1209368.4903865256,536559.7754471481,1900.88604,801.3906844160492,1947701.2974792728,804552.9102655783,0.43263,100000,0,1056234,11043.022781686826,0,0.0,0,0.0,35471,370.1527491714325,0,0.0,45039,466.46523152843264,1212828,0,43582,0,0,20827,0,0,79,0.825953767499242,0,0.0,1,0.010455110981003,0,0.0,0.06327,0.1462450592885375,0.3096254148885727,0.01959,0.3560857746904258,0.6439142253095741,23.812318537261337,4.071742474710706,0.3061264822134387,0.2754940711462451,0.2055335968379446,0.2128458498023715,11.763996326290266,6.557815467156435,20.956281144144278,13791.524465181645,58.25429627449062,17.31585489943499,17.516813867404696,12.116083560376476,11.305543947274444,0.5796442687747035,0.8213773314203731,0.6759199483537767,0.5840297121634169,0.1076923076923077,0.7604438642297651,0.9173553719008264,0.8502304147465438,0.7570422535211268,0.124401913875598,0.5011337868480725,0.7477820025348543,0.6080717488789238,0.5220680958385876,0.1034897713598074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227707925958,0.005100643918268,0.0077638175655103,0.0104750873770625,0.0131524072058509,0.0157160317783662,0.0184979350430836,0.0211475426575854,0.0234560327198364,0.0260268360135204,0.0286230174200299,0.0309410773372793,0.0335789408689567,0.0360622274456437,0.038692751048402,0.0410006517893168,0.0438730138988215,0.0464449957956586,0.0487312602086996,0.0513117283950617,0.0684632344489608,0.0846552536516412,0.1007336965078565,0.1154335862279418,0.1295606378824498,0.147103029276657,0.1610889323027265,0.1744417799094058,0.1866468398305447,0.1990464327133714,0.2142294876909971,0.2278941780599311,0.2415718717683557,0.252665455261948,0.2630095045099616,0.2737391767092761,0.2840190403825954,0.293507019894392,0.3018835791409789,0.3102113281026287,0.3175323097571417,0.3238797769490653,0.3307230055834201,0.3357806735974704,0.3414634146341463,0.3461822660098522,0.349891279898028,0.3534978848816677,0.3574003954459105,0.3618346545866364,0.36000484202881,0.3575845012366034,0.3551768778318745,0.3520947886449899,0.3489083163878705,0.345242647171283,0.3417567482141728,0.3422368701526554,0.3422543865638014,0.3425124480217015,0.3427147354219757,0.3431860364095881,0.3451879777987224,0.3463983759787628,0.3478187919463087,0.3467936573845794,0.3483647316227659,0.3537525863690513,0.3581619806966009,0.3621255885727852,0.3665137822987148,0.3707232340246342,0.3763192406169987,0.3788199697428139,0.3784566517189835,0.3756544502617801,0.3800460475825019,0.3827983040581466,0.3814432989690721,0.3975225225225225,0.0,2.589805810821942,67.092877691685,186.4211536592017,258.3852519712416,APP_public_implementation,14 +100000,95778,53200,504.11367955062747,6331,64.67038359539768,4967,51.14953329574641,1934,19.78533692497233,77.3507064425629,79.67727447731569,63.34838135415546,65.06931368700012,77.09854409899872,79.42880358205105,63.25324631765738,64.9781909282645,0.25216234356418,248.4708952646457,0.0951350364980783,91.12275873562226,231.94908,162.348297361778,242173.19217356807,169504.35064814257,424.67404,275.66911469913816,442662.03094656393,287089.3667555578,491.40199,239.01775049155535,507924.6382258974,245657.39330725803,3497.4513,1634.3344398375557,3607836.9876171984,1662662.154395117,1134.0447,515.1089853531081,1165723.0157238615,519533.7022752072,1880.09618,804.7060497187493,1925566.3513541727,807831.122931707,0.43389,100000,0,1054314,11007.87237152582,0,0.0,0,0.0,35265,367.4330221971642,0,0.0,44435,458.8318820605985,1217915,0,43765,0,0,20611,0,0,69,0.7204159619119213,0,0.0,2,0.0208816220844035,0,0.0,0.06331,0.1459125584825647,0.3054809666719317,0.01934,0.3576477665814408,0.6423522334185592,23.617194633028927,4.042395934550362,0.3086370042279042,0.2752164284276223,0.2089792631367022,0.2071673042077713,11.076050384441352,5.9689191651057785,20.89250836293744,13792.862946942943,57.20833805680673,16.76783293187838,17.51932281803545,11.530853980716849,11.39032832617606,0.5812361586470707,0.8002926115581566,0.715590345727332,0.5665694849368319,0.1088631984585741,0.7596594629993452,0.9222972972972971,0.8904109589041096,0.7019607843137254,0.1859504132231405,0.5020348837209302,0.7070967741935484,0.645662100456621,0.5219638242894057,0.0854271356783919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026741217940926,0.0053426601784266,0.0081078064273899,0.0108178937103851,0.0134923539938181,0.0160342879249086,0.0184460478578125,0.0209509036544172,0.0234321509958408,0.0261051985264019,0.0285570834272598,0.0311621416405015,0.0334408977863646,0.0359367118577766,0.0385142868927683,0.0410132440752908,0.0433342990770249,0.0457999440199869,0.0481338401146488,0.0503242866214851,0.0675716566324773,0.0837376103048806,0.0999245298840695,0.1148078479176956,0.128746680156823,0.1468710359408034,0.1606642911682362,0.1747320696884877,0.1876134349710674,0.1995048019207683,0.2139020162983217,0.2272629007501567,0.2392414692458161,0.2507976747235456,0.2612176667253211,0.272804736347037,0.2835388285656953,0.2929435959677691,0.3018183467101981,0.3098941344778255,0.31782157628411,0.3248595161045364,0.3315824342229794,0.3361444195546185,0.34127331002331,0.3460633461865398,0.3499624812406203,0.3545133058566122,0.3586682034214377,0.362388406102884,0.3594214598049108,0.3568518977238323,0.3549019055135866,0.3522747004688314,0.3497947283869816,0.3468533398760964,0.3431276163896993,0.3426031118794764,0.3423409538487884,0.3429512422137896,0.3439175335302195,0.3454642814644401,0.3473385230380812,0.3468850541093887,0.3486105750675415,0.3495326123955906,0.3511345404538162,0.3562363515523625,0.3619922288943836,0.3658313444709626,0.3705992766561369,0.3737601201007989,0.379082475536917,0.382214687524081,0.3840332954975406,0.3844134144886024,0.3913715787845987,0.3985941699400455,0.3958391903289289,0.4068128425998434,0.0,2.6567832539124003,66.72742531593691,181.3399325898576,251.90150411234225,APP_public_implementation,15 +100000,95726,52910,501.7027766750935,6325,64.72640661889142,5077,52.35777113845768,2005,20.44376658379124,77.31652017658898,79.67636287220338,63.31665033110207,65.06207989297873,77.06017658374422,79.42566073855545,63.22031694639845,64.97104959262784,0.2563435928447575,250.70213364793403,0.0963333847036196,91.03030035089432,229.5931,160.75195096612225,239842.4252554165,167927.75118166264,421.75331,273.4038386461077,439865.8985019744,284897.37491894705,491.03638,237.9925730292312,509453.2310970896,245891.80962893247,3574.21937,1668.7996720457852,3685400.8315400206,1695965.5093812607,1180.41305,539.1389707825971,1212138.196519232,542742.62901785,1945.20028,824.2365574414251,1985420.2828907508,820303.7233283732,0.4319,100000,0,1043605,10901.92842070075,0,0.0,0,0.0,34949,364.35242253933103,0,0.0,44478,461.06595909157386,1228363,0,44199,0,0,20600,0,0,70,0.7312537868499677,0,0.0,2,0.0208929653385705,0,0.0,0.06325,0.1464459365593887,0.31699604743083,0.02005,0.3488089819450766,0.6511910180549234,23.51817681220036,4.013606132397679,0.3072680716958834,0.2777230648020484,0.2103604490841047,0.2046484144179633,11.296760757802122,6.210931440288209,21.419920508103207,13770.397918306606,58.69197462489511,17.441099703607776,18.14471532931228,11.488932463798784,11.617227128176278,0.5782942682686626,0.7978723404255319,0.7147435897435898,0.5649663137632339,0.1020599250936329,0.7474358974358974,0.8950930626057529,0.8665254237288136,0.7403100775193798,0.1548117154811715,0.5032698322433893,0.7277167277167277,0.6488970588235294,0.5070422535211268,0.0868516284680337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0051094372522581,0.0077848261862471,0.0103030980420049,0.01300048828125,0.0156539628867659,0.0180412633983661,0.0206795134952973,0.0233126450649788,0.0260148451497312,0.0285353949634976,0.0310504158537837,0.0334094274432379,0.0360813065057561,0.0386606977080023,0.0410910781629384,0.0433630425556142,0.0456935987469269,0.0481600831600831,0.0502052382639134,0.0677580338685765,0.0839620371048583,0.0994588699190402,0.1146384294261769,0.1290887234536137,0.1474128448129971,0.1613337859916399,0.1748674601315817,0.1879627749938563,0.2002167405229669,0.2138678503323673,0.2274139255988137,0.2399738945994452,0.2523868371263902,0.2623407511809463,0.2732211357236302,0.2824190431509221,0.2920108952569615,0.3012000317889216,0.3094632379904657,0.3162901583186742,0.3232293689604342,0.3287627437746439,0.3352729454109178,0.3411401332749647,0.3460869135924367,0.350788161291131,0.3545464969613576,0.3585854657644344,0.3618413227072677,0.3597459855195566,0.3565850831930686,0.3548792898739187,0.3521635138073494,0.3496029440247918,0.3465045592705167,0.342934179222839,0.3434217026181459,0.3438089359805232,0.343020648332526,0.3435441989989839,0.3439501814648077,0.3446774498874703,0.345333752300579,0.3465499360875961,0.3481040736971215,0.3492630255941499,0.3531077891424075,0.3565785315495628,0.360735124836264,0.3625723004053377,0.3672599381860812,0.3671500630517024,0.3673593204914303,0.3695202257761054,0.3735343383584589,0.3816358024691358,0.3861928934010152,0.396776882467352,0.4091962905718702,0.0,2.4263960898228216,68.68743469923146,185.610052174445,259.4527233551296,APP_public_implementation,16 +100000,95669,53300,504.3849104725669,6343,65.1099102112492,5031,51.90814161327076,1833,18.793966697676364,77.40264542862671,79.78331860043923,63.35728834693722,65.11219129908625,77.17407668194899,79.55663503945499,63.27279189482973,65.03071796110324,0.2285687466777233,226.6835609842417,0.0844964521074871,81.47333798301304,232.6775,162.78743388803633,243210.96697989944,170156.93055016393,426.80995,275.68900728161054,445465.7098955775,287503.4204200008,493.3922,238.609771247373,510968.3596567331,245827.3398775035,3508.25882,1612.622531807372,3622233.847954928,1641091.6466428514,1169.92935,524.8228543302423,1206314.0724790683,532138.1871795927,1783.62888,743.3882637954985,1830122.882020299,748345.5666049903,0.43552,100000,0,1057625,11055.043953631794,0,0.0,0,0.0,35353,368.8446623253092,0,0.0,44647,461.9469211552332,1217767,0,43751,0,0,20604,0,0,79,0.8153111248157711,0,0.0,0,0.0,0,0.0,0.06343,0.1456419911829537,0.288979977928425,0.01833,0.3405479037384592,0.6594520962615408,23.894774492009063,4.021358859622855,0.3257801629894653,0.2731067382230173,0.1991651759093619,0.2019479228781554,11.416410156726684,6.331057473580073,19.3632392180177,13829.959268995854,57.192828350214285,16.82520222724819,18.467430919914936,11.10963704394409,10.790558159107064,0.5841780958060028,0.8020378457059679,0.6784624771201953,0.5875984251968503,0.1277445109780439,0.7713310580204779,0.9285714285714286,0.8600451467268623,0.7416666666666667,0.1826923076923076,0.5072910824453168,0.71125,0.6112040133779264,0.5399484536082474,0.1133501259445843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708610545715,0.0048547133286711,0.0075674579022114,0.0102271919401196,0.0129345847611881,0.0155794961611306,0.0183816407882797,0.0211367510027454,0.0237803257914852,0.0265977587883129,0.0293264450526358,0.0319792212058681,0.0346908769368387,0.0373646971585115,0.0397131654973173,0.0421998056927878,0.0445650148066847,0.0470389241130262,0.0493182598204906,0.0517994309358291,0.0689586728511136,0.084646555605583,0.1005519759900938,0.115352653447641,0.1294048158968896,0.1470196153113692,0.1608583071568045,0.1747942813953736,0.1871019448600128,0.1990305837944494,0.2140549620951068,0.2275919533388882,0.2399852116045409,0.2509784628840056,0.2615381231026442,0.2729788670806903,0.2835709428956784,0.2932645862820426,0.3026201021760554,0.3115181450229814,0.3185853990832573,0.3247800415412261,0.3311880778904857,0.3371450443769287,0.3420149624725668,0.3478560442940633,0.3518678214790096,0.3556258013736019,0.3598248537218584,0.3629222206139716,0.3606568382609629,0.3579106114614752,0.3554401964223079,0.3528632903012247,0.3502619970987892,0.3466182284432097,0.3426531450415442,0.3421125952634598,0.3436484025260004,0.344459469076934,0.3447837863080228,0.3460722702278083,0.3458368026644463,0.3474529161941609,0.3480051726615259,0.3502247862581534,0.3519413336365187,0.3571450921493163,0.3623310219233732,0.366199413954225,0.370360237118103,0.37525311733987,0.3770326484306063,0.3793313532861168,0.3792584227366836,0.3872710192578675,0.3865751334858886,0.3875125881168177,0.3885854724194429,0.3977358490566037,0.0,2.6390107419502624,63.82602607914882,179.7025497294691,267.0228816241468,APP_public_implementation,17 +100000,95709,53358,505.678671807249,6474,66.06484238681837,5140,52.93128127971246,1952,19.93542926997461,77.33907921770925,79.70519109073892,63.32552877917672,65.07498826312938,77.0891950022957,79.46029460849529,63.230376055190526,64.98504505325533,0.2498842154135587,244.8964822436324,0.0951527239861889,89.94320987405047,232.63856,162.84882565683918,243068.635133582,170149.96046018574,428.26298,277.77444695835806,446697.9071978602,289462.3984770064,500.44411,242.480498140347,517570.9703371679,249355.391689672,3579.41112,1673.5995054725631,3688731.331431736,1697474.903585413,1171.86547,531.6790696086279,1209450.3442727434,540561.9425640504,1875.8181,804.7640407174365,1917069.0948604625,803496.7858662971,0.43562,100000,0,1057448,11048.574324253726,0,0.0,0,0.0,35537,370.5085206197954,0,0.0,45339,468.4407944916361,1210447,0,43470,0,0,20531,0,0,76,0.794073702577605,0,0.0,0,0.0,0,0.0,0.06474,0.1486157660346173,0.3015137472968798,0.01952,0.3535398230088495,0.6464601769911504,23.628632073725072,4.073446986445065,0.3036964980544747,0.2877431906614786,0.1926070038910506,0.2159533073929961,11.250012808022175,6.178016424463031,20.956903632796102,13874.99571601708,59.51295638748302,18.318310613877912,17.838303165423827,12.4262728158116,10.93006979236968,0.5861867704280156,0.7937795807978364,0.6982703395259449,0.572972972972973,0.1141414141414141,0.7561290322580645,0.9046849757673668,0.8571428571428571,0.7132075471698113,0.1788990825688073,0.5128133704735376,0.713953488372093,0.6343216531895777,0.5289940828402366,0.0958549222797927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026029006643979,0.0056170661475443,0.00840412898511,0.0110347910908795,0.0139670203350864,0.0165191620242593,0.0191709580380359,0.0218174764418217,0.0245403791488578,0.0274688133718429,0.0297722214815346,0.0320552982139005,0.0343717538645082,0.0368634157900701,0.039255558537542,0.0416326277364714,0.043789949134457,0.0462135599904521,0.0486980574851295,0.0509147357892982,0.0687055580499316,0.0847459400636196,0.1001268756094747,0.1156273004522031,0.1301032515266249,0.1480470568321273,0.1628183361629881,0.1762507188039103,0.1893350719866608,0.2010688759631688,0.2151718637162227,0.2295319895588506,0.2417969897809265,0.2540061295971978,0.2639932154107099,0.2753251937855551,0.2853185286133979,0.2946627632023421,0.3038516567120114,0.3113964686998395,0.3190750240276057,0.3252586247249918,0.3318070493025237,0.3377379511937992,0.3435899303279683,0.3481765929426824,0.3526368407898025,0.356226338389613,0.3604037949486854,0.3640042177408725,0.3611749680715198,0.3595687924538679,0.3565288464248471,0.3544029159916686,0.3512155230094417,0.3483090973169274,0.3436415772880657,0.3442752359964477,0.343977523855207,0.3434746794642218,0.3444696784849566,0.3441753719531497,0.3453821989528796,0.345423607379545,0.3475231826262432,0.3491658641959243,0.3502496077592354,0.3555310778914241,0.3609696118039698,0.3639113304413579,0.3657210725869078,0.3669582844340125,0.3685645447628709,0.3717301514456173,0.3766416510318949,0.3797032640949555,0.3859839108910891,0.3896924017111428,0.3914008321775312,0.3982266769468003,0.0,3.056189905750927,67.5429655184508,196.9600208112022,257.28594942868,APP_public_implementation,18 +100000,95680,52870,499.5610367892977,6327,64.66346153846153,5023,51.83946488294314,1814,18.54096989966555,77.30793472821749,79.68624856520461,63.31631099018998,65.07126131219705,77.0703102481845,79.45085031853738,63.22629481821127,64.98470085401635,0.2376244800329914,235.39824666723064,0.0900161719787107,86.56045818069913,232.74174,162.81990578034612,243249.4565217391,170170.69534529906,425.26675,276.39806883194285,443792.94523411366,288206.2306958968,489.43954,237.2889323031896,507722.12583612045,244981.39078604116,3504.63297,1643.6679339969382,3617643.3632943146,1672926.9191570228,1141.85614,522.8761544218079,1171409.6153846153,524700.6094713542,1763.62958,760.3620844674732,1803620.610367893,760440.2368213943,0.43236,100000,0,1057917,11056.793478260868,0,0.0,0,0.0,35330,368.5409698996655,0,0.0,44321,459.4063545150501,1210985,0,43591,0,0,20548,0,0,70,0.7316053511705685,0,0.0,1,0.0104515050167224,0,0.0,0.06327,0.1463363863447127,0.2867077603919709,0.01814,0.349538088747539,0.650461911252461,23.77384430507394,4.056036051048305,0.3177384033446148,0.2797133187338244,0.2000796336850487,0.202468644236512,11.139561342999874,5.969820155363482,19.68776425067904,13803.732093465527,58.033585161493455,17.33390020659502,18.22270425140316,11.42334284793111,11.053637855564183,0.5857057535337448,0.799288256227758,0.7017543859649122,0.5614552605703048,0.1273631840796019,0.7563081009296149,0.9060283687943262,0.8714596949891068,0.732824427480916,0.1628959276018099,0.5126528291157236,0.727705112960761,0.633245382585752,0.5019867549668874,0.1173469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029868578255675,0.0058773458716711,0.0089572829913064,0.0117108149833428,0.014207550240013,0.0171377947945093,0.0195572595364582,0.0223277182235834,0.0248727228117524,0.0273310745104462,0.0298519703120515,0.0325667351129363,0.0351409442907535,0.0375094005295202,0.0400487064917911,0.0423550087873462,0.044761737004072,0.0471142765186515,0.0496411109955268,0.0518014261290188,0.069244670071971,0.0857773870083108,0.1018549605506127,0.1168656323954772,0.1309610416996151,0.1487478319725876,0.1632165858523697,0.1755349728521239,0.1883762181569499,0.1994828659099199,0.2138733304610081,0.2273765081426175,0.239986514556666,0.2510252064082235,0.2615167952117418,0.2728632360272531,0.2828255775025108,0.2926521885900754,0.3025412282792513,0.3093931513283765,0.316296519302471,0.3231195816222666,0.32868474014443,0.3338452125298429,0.3392937512924375,0.3442509656798015,0.348055562520372,0.3526966721917633,0.3566931893407406,0.3607892927048616,0.3583666091085689,0.3559329047921207,0.352569895509743,0.3499529087879446,0.3488697828969915,0.3462960973588496,0.3420860454040323,0.3419903432592324,0.342219934808715,0.3423013541592032,0.3431719055497067,0.3444384952505602,0.3454285834278274,0.3455294565485121,0.3469732022363601,0.3495813710099424,0.3511158099265651,0.356773624156843,0.3596639841874912,0.3632026715432933,0.3676463866160808,0.3705910517635793,0.3730354099602348,0.3745523809523809,0.3731679819616685,0.3733490566037736,0.372909447039325,0.3756708407871199,0.3789219629927594,0.3753251579338535,0.0,2.5035470148490746,66.00100965706785,189.6300213254155,255.9918502918484,APP_public_implementation,19 +100000,95700,53302,505.1097178683385,6282,64.35736677115987,4994,51.52560083594566,1887,19.362591431556947,77.38171245272493,79.756390380794,63.34258245905804,65.09551231603261,77.1440665860759,79.51970120312919,63.25400997105997,65.00966633832134,0.2376458666490322,236.68917766481457,0.0885724879980713,85.84597771127278,233.10628,163.1580846820415,243580.22988505743,170489.11670014786,424.34376,275.0631095715341,442661.9017763845,286673.76130776806,494.34091,239.64623003350428,512142.0062695925,247032.20573243528,3533.21328,1627.5351247909691,3649318.401253919,1658014.163835914,1185.93114,529.7125413067843,1222180.4806687564,536476.6157855627,1852.12532,778.7790011792385,1902382.0689655168,785794.8234848061,0.43275,100000,0,1059574,11071.828631138977,0,0.0,0,0.0,35197,367.0846394984326,0,0.0,44527,460.91954022988506,1213468,0,43508,0,0,20414,0,0,78,0.7941483803552769,0,0.0,0,0.0,0,0.0,0.06282,0.1451646447140381,0.3003820439350525,0.01887,0.3580752884031573,0.6419247115968427,23.58829587015573,4.093424720247073,0.3109731678013616,0.2715258309971966,0.2174609531437725,0.2000400480576692,11.203292704483363,5.896348576521124,19.9022601090153,13768.073540905689,56.982964030513855,16.66481760504601,17.648780357772203,10.874514583674916,11.794851484020723,0.5764917901481779,0.7839233038348082,0.7102382485511912,0.5825825825825826,0.1206261510128913,0.7508532423208191,0.9120287253141832,0.8812785388127854,0.7339055793991416,0.1476793248945147,0.5041088126948144,0.6946182728410513,0.6430493273542601,0.5365535248041775,0.1130742049469964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002653540755145,0.005392857504891,0.0078134513130657,0.0103610100969059,0.0129381369896454,0.0157026476578411,0.0181289829212337,0.0207746335089223,0.0235731883094977,0.0259187224895076,0.0287770521718626,0.0313035800453794,0.0338022665103556,0.0364235681911825,0.0387294511005851,0.0407973366969252,0.04352914370935,0.0460200682778014,0.0484119225409239,0.0507299992705217,0.0681015936671052,0.0835645264292967,0.0993096067486464,0.1141432418784716,0.1284269153278973,0.1465253762280952,0.1609897922370068,0.1745222251796646,0.1869491362456331,0.1987856162032269,0.2126208256554488,0.2258864288420938,0.2382770435633871,0.2500382672585336,0.2609843567798288,0.2722541496417854,0.282771159594878,0.2926115910727141,0.3017709857844639,0.3105924390439433,0.3184989759433471,0.3244902254232532,0.3314709816408423,0.3368925639642878,0.3420550757382505,0.3469435543505053,0.3506378189094547,0.3552027276312609,0.3588070829450139,0.3616446301691295,0.3593008403361344,0.3569898379566053,0.3544853768278965,0.3513334389903035,0.3488203427962464,0.3445320482515669,0.3420803484078644,0.3417940960013084,0.3419083891590437,0.341443460320848,0.3420325051373062,0.3425891255936779,0.3426815293259714,0.3446878617864458,0.3453669988501341,0.3467934106920845,0.3495393338058115,0.3547117966652095,0.3575512480825547,0.3614557812376511,0.3662413151083057,0.3703998725505815,0.3740264674222757,0.3804339492448056,0.3770182230195449,0.380872883377057,0.3844259772237611,0.3857463753318358,0.3906380607411535,0.3992233009708738,0.0,2.566393117341598,64.17976146318854,178.18433028825248,264.9308476893331,APP_public_implementation,20 +100000,95860,53677,506.05049029835175,6472,66.0859586897559,5227,53.95368245357813,1952,19.987481744210307,77.44506122741345,79.72217420300214,63.40474875222951,65.083909098064,77.1937911510566,79.47310659466326,63.30897048206519,64.99177706429627,0.251270076356846,249.0676083388763,0.0957782701643239,92.13203376772584,232.83392,163.0325624157905,242889.5472564156,170073.60986416705,427.20038,276.74639874750426,445090.9242645525,288139.13910651393,502.91087,243.3420459491612,521463.10244105983,251369.2010224793,3641.70817,1703.162789474707,3758746.6200709366,1736479.3756256066,1209.71149,549.6201907535944,1244883.809722512,556284.49901272,1907.43374,819.9617286186486,1954103.630294179,822854.6352301968,0.43683,100000,0,1058336,11040.43396620071,0,0.0,0,0.0,35488,369.62236595034426,0,0.0,45520,471.6357187565199,1213932,0,43676,0,0,20967,0,0,64,0.6676403087836428,0,0.0,1,0.0104318798247444,0,0.0,0.06472,0.148158322459538,0.3016069221260816,0.01952,0.3446235763940246,0.6553764236059755,23.694126045340628,4.108573177052705,0.3078247560742299,0.2829538932466042,0.2052802754926344,0.2039410751865314,11.16417153641023,5.913448544669509,20.91691189020281,13959.1762379004,60.13074238034434,18.0509310879074,18.43812002383929,11.906375996163971,11.735315272433697,0.5856131624258657,0.7991886409736308,0.7004350528278434,0.5816135084427767,0.1230195712954333,0.7520766773162939,0.9282136894824708,0.8498942917547568,0.7074074074074074,0.1255605381165919,0.5144729655925724,0.7113636363636363,0.6382042253521126,0.5389447236180904,0.1223529411764706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002965647077876,0.0056625371002542,0.0086693773257759,0.01159108440583,0.0144898083605991,0.0173566247164033,0.0199828892691273,0.0225458105172993,0.0252223549714589,0.0278323108384458,0.0301962912523934,0.03295181834964,0.0356181829386028,0.0379555436694473,0.0405316299196373,0.0430532617671346,0.0455457422384015,0.048008870190564,0.0501437870498219,0.0526091254357213,0.0698540145985401,0.0864336833307214,0.1022188249337703,0.1169587574771749,0.1310107535932995,0.149001973885599,0.1642026560481223,0.1783289234594663,0.1902796442055417,0.2019266791544019,0.2161467850463271,0.2303837388890689,0.2436373507057546,0.2547940418468527,0.2659590832179664,0.2773805834698304,0.2874822999475967,0.2958362373254794,0.3047147021129396,0.3127504178400531,0.3211777636374154,0.3278613717735708,0.3343553198541598,0.3398648972356633,0.3440323520839405,0.349163525266711,0.3537118450882401,0.3574184184056734,0.3620106519457295,0.3650271925656053,0.3616972569720311,0.358980706024726,0.3564043047056341,0.3533769565593381,0.3510747033640956,0.3481279179762594,0.3450336660516896,0.3445592466649228,0.3449485062558515,0.3450990846885275,0.3471949784229109,0.3470668324157935,0.3480424962355697,0.348622420524261,0.3475558541911641,0.3491588882244351,0.3495955725840783,0.35366884845448,0.3566026556999965,0.3610737724361508,0.3656937297937252,0.3702265716413147,0.3728610971313538,0.3768836533312935,0.3800075585789871,0.3863039847291816,0.3941819301215946,0.3921810699588477,0.3962368566685113,0.4060179757717858,0.0,2.239069358117204,68.89695046187765,194.43192027869983,267.5526133575284,APP_public_implementation,21 +100000,95681,53196,504.2484923861582,6402,65.59295993979997,5082,52.49736102256456,1885,19.2723738255244,77.29747507811412,79.70195042212494,63.28577397120039,65.06636138809282,77.057333418525,79.46520096835746,63.19536097823697,64.97985854992955,0.2401416595891135,236.74945376747303,0.0904129929634223,86.50283816326976,230.51028,161.37504188277305,240914.95699250637,168658.99027264866,426.85211,276.72941294329013,445469.3094762806,288570.57894805673,493.83547,238.7423789844898,512836.90596879215,246869.83047587305,3580.25172,1652.4476388739602,3699482.122887512,1684693.4872900138,1187.93171,536.4944471225385,1220471.5460749783,539683.2524993847,1842.58856,779.949309205845,1885678.5777740616,779832.3672271293,0.43455,100000,0,1047774,10950.679863295743,0,0.0,0,0.0,35348,368.7565974435886,0,0.0,44703,463.8956532644935,1218636,0,43817,0,0,20909,0,0,70,0.7315977048734859,0,0.0,2,0.0209027915678138,0,0.0,0.06402,0.1473248187780462,0.2944392377382068,0.01885,0.3504971063956076,0.6495028936043924,23.877650749060024,4.104985596519869,0.3089334907516726,0.2774498229043683,0.2083825265643447,0.2052341597796143,11.275506372470865,6.043750940777541,20.179993896695507,13918.89715903292,58.39528397231627,17.387387385401688,17.94453116296341,11.618709609293496,11.444655814657684,0.5832349468713105,0.7921985815602837,0.7114649681528662,0.5953978906999041,0.1029272898961284,0.7531519575315195,0.9155629139072848,0.8703703703703703,0.6865079365079365,0.1506849315068493,0.5116083916083916,0.6997518610421837,0.6511423550087874,0.5663716814159292,0.0904761904761904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025538124771981,0.0053252997382995,0.0082542261028478,0.0109440097551061,0.0133870442708333,0.0159506203019006,0.0187262861572355,0.0211903351647229,0.0236456426357936,0.0262772526651032,0.0288430964274358,0.0311479114873333,0.0338881916009958,0.0364989077119657,0.0389555413302496,0.0416326192865048,0.0438941978814701,0.0463300418444797,0.0486782284828497,0.0509301234953884,0.0687252556696507,0.0851687463361527,0.101511017838405,0.1167974585007679,0.1317868708925388,0.1496085484553533,0.1638237573107174,0.1769642876162276,0.1895218642055844,0.200996445866575,0.2160051768766177,0.2292698791262399,0.242012266196063,0.2535144907686408,0.2650255754475703,0.276353307962854,0.2866212138146864,0.2954793795270978,0.3040529024780993,0.3124039894531698,0.3202938518226692,0.3270071111423517,0.3338704708642385,0.3400012006964039,0.3447776452547282,0.34936724489166,0.3541442006269592,0.3584421879783651,0.3619502818401434,0.3645495572995937,0.3626860430566435,0.3606473618073104,0.3579316488271142,0.3562326950118145,0.3531933260898686,0.3494978919126102,0.3453440141848463,0.3455216535433071,0.3460745386070448,0.3459415179684439,0.3462910061801004,0.3469460087425668,0.3492491175303381,0.3503742314889067,0.3506241464408079,0.3514495574761868,0.3514111473549851,0.3551416497104398,0.3590532461629899,0.3626977848101266,0.368401909524892,0.3702526616875894,0.3721441124780316,0.375453995157385,0.3803318646292303,0.3818010149887879,0.3819966262843122,0.3768732280275415,0.3791495198902606,0.3806600153491942,0.0,2.312810808533307,66.48598264421867,188.26924345920088,261.8309362908912,APP_public_implementation,22 +100000,95832,53113,502.1287252692212,6459,65.89656899574256,5128,52.94682360798063,1964,20.128975707488102,77.32864418348662,79.63922505579181,63.32870225298407,65.03836119238589,77.08116207402185,79.39267087401718,63.23467953035664,64.94715922015396,0.2474821094647694,246.55418177462707,0.0940227226274288,91.2019722319286,232.40096,162.69536076635364,242508.7235996327,169771.43414136578,425.67062,275.4798472918332,443626.21045162366,286903.3509307903,496.61623,240.4308669348268,515017.46806912095,248388.5043319355,3584.92503,1686.0199954609425,3703044.849319643,1721561.8533146672,1171.78888,533.0513013205084,1209574.8601719677,543145.6752531952,1896.08398,811.6069131542891,1944328.5332665497,817872.2157788142,0.43303,100000,0,1056368,11023.123799983305,0,0.0,0,0.0,35247,367.2051089406461,0,0.0,44967,465.9925703314133,1211796,0,43688,0,0,20540,0,0,79,0.8243592954336757,0,0.0,0,0.0,0,0.0,0.06459,0.1491582569336997,0.304071837745781,0.01964,0.3596256684491978,0.6403743315508021,23.67953480830125,4.074987782864448,0.3174726989079563,0.2693057722308892,0.1914976599063962,0.2217238689547581,11.720538303001764,6.462492700415494,21.190301700672357,13848.254871254345,59.37891675229464,17.0233965676216,18.68020132934041,12.84900271319889,10.826316142133727,0.5900936037441498,0.8066618392469225,0.7076167076167076,0.5743183817062445,0.1089613034623217,0.7468193384223919,0.9,0.8739316239316239,0.7055016181229773,0.1511111111111111,0.5208098987626547,0.7410604192355117,0.6405172413793103,0.5253623188405797,0.0964332892998679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028865144072517,0.0054028301504277,0.0081976360777152,0.0106147407768568,0.0131787675411836,0.0160965180207697,0.0186525328712669,0.0212068947921663,0.0235761805974267,0.0264620107444359,0.0291299937498078,0.0315979598329279,0.0340677861591268,0.0363595186378563,0.0388652862563933,0.0412590518888877,0.0435241524897553,0.0458584329542037,0.0485073851714897,0.0509810044236273,0.0675595331226335,0.0843231148843628,0.1003920088883298,0.1157326159375361,0.1297143459470854,0.1480443974630021,0.1621174524400331,0.1756368511779352,0.1883030192991637,0.2002659061179851,0.2151589242053789,0.2301557241334531,0.2427890890107021,0.2540125076532843,0.2648722406849044,0.2759514708326409,0.285200531623798,0.293895708976236,0.3024093237763111,0.3111649037468738,0.318264056411208,0.3250272762467884,0.3310254735467015,0.336770378916249,0.3422010641276953,0.3467820590377659,0.350834723493923,0.3547103390219637,0.3590602719445202,0.3625473221613322,0.3603002727297275,0.357831092460175,0.3547730165464574,0.3522735519078097,0.3488763961169681,0.3450210594275525,0.3415292734839099,0.3423650182607837,0.3436036775009399,0.344593147751606,0.344851494425185,0.3452086751942429,0.3459027370888089,0.3476124536561397,0.3491323366822093,0.3500666022409695,0.3521772562868453,0.357250518118445,0.3639289212256891,0.3699154885080167,0.3752838586610955,0.3792884034148152,0.3803012162077005,0.3860479316134941,0.3902553953444538,0.3942215854823305,0.3977411477411477,0.4101784266017843,0.4159340659340659,0.4240898528272657,0.0,2.1446703377190506,69.45384175942033,191.61226451079023,258.7426760748241,APP_public_implementation,23 +100000,95742,53094,502.9454158049758,6348,64.91403981533705,5080,52.43257922332936,1927,19.688329050991204,77.35098256499538,79.6973457558621,63.33757887846742,65.07012714597697,77.10555167430557,79.45675065947205,63.24441196481199,64.98200327329768,0.2454308906898035,240.59509639005228,0.0931669136554305,88.12387267929012,232.0307,162.45945064601193,242349.9613544735,169684.62184413522,423.99376,274.9300833603859,442227.7370433039,286534.6487021222,499.25155,241.77512164087815,517906.6031626663,249797.0165494139,3574.3358,1681.5227724964273,3686436.297549665,1709442.890786099,1217.97967,559.6562416914016,1252246.182448664,564644.682262122,1876.33312,804.9649410851883,1917168.0975956211,803378.7225648857,0.43364,100000,0,1054685,11015.907334294248,0,0.0,0,0.0,35164,366.6415992981137,0,0.0,45117,467.7675419356186,1214433,0,43710,0,0,20461,0,0,80,0.8251342148691274,0,0.0,0,0.0,0,0.0,0.06348,0.1463887095286412,0.3035601764335223,0.01927,0.3567233850323746,0.6432766149676253,23.46933677037097,4.117888550023872,0.3025590551181102,0.2785433070866142,0.2100393700787401,0.2088582677165354,11.391369186988806,6.138021932225679,20.651498795253307,13781.96447520988,58.91968420607102,17.51320680690993,17.83339915494098,11.765290779412831,11.80778746480727,0.5927165354330709,0.8,0.7091737150292778,0.6022620169651273,0.1405810684161199,0.7548262548262549,0.9183673469387756,0.8625792811839323,0.7705627705627706,0.1793893129770992,0.5212705615428247,0.7158403869407497,0.6409774436090225,0.555421686746988,0.1279503105590062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028961145484187,0.0055543730552092,0.0082290747110691,0.0108982692776468,0.0136246708218523,0.0161456159460862,0.0186848248233962,0.0215753913984201,0.0242339377338048,0.026599664305891,0.029348149211198,0.0319136924008663,0.0341955913801612,0.0366285655442281,0.0391598580506726,0.0414677002583979,0.0437479290921139,0.0461243125453979,0.048407219495966,0.0506631106295644,0.0678268676660959,0.0841040341479745,0.0991474680955926,0.1146837705693707,0.1295216607449736,0.1479151689432063,0.162462876537972,0.1763165737153561,0.1886131262086133,0.1997725590327322,0.2141579763854175,0.2279266114628998,0.2410386954298706,0.252640218878249,0.263075025874788,0.2740626593645374,0.283652449786635,0.2924647205779748,0.3019345609772711,0.309981763754602,0.3165537606392218,0.3231188965129622,0.3290252331581688,0.3352786099460755,0.3407446085098115,0.3452568585923262,0.3490524735755832,0.3533720797141076,0.356902313291713,0.3608029582673006,0.3583196268234152,0.3554339737052451,0.3514207511498631,0.348441844300278,0.3468227872584172,0.3435909230297455,0.3409649442691569,0.340752072641137,0.3421575002566823,0.3430663452093937,0.3443132846168259,0.3449195220697146,0.3455680556428466,0.345923475773288,0.3472635621699472,0.3481751824817518,0.3486241142824621,0.3522587946807507,0.3564456882980584,0.3612772869537657,0.3652795483518485,0.3704470638207497,0.3761248505443332,0.3794517427291366,0.3841611996251171,0.3864149150932193,0.3932166640854886,0.3979301948051948,0.3945615982241953,0.3911696359411309,0.0,2.4334917108439065,68.45373711868884,193.44001666183317,252.6802075507383,APP_public_implementation,24 +100000,95837,53257,504.022454793034,6518,66.51919404822772,5139,52.97536442083955,1956,19.950541022778257,77.51248185563044,79.79827451992495,63.42745123530996,65.1108014086033,77.2650692957798,79.55270688261247,63.33433691534668,65.02082662130148,0.2474125598506447,245.567637312476,0.0931143199632771,89.97478730181285,234.56752,164.13702217995603,244755.824994522,171266.0845852701,428.99848,277.5235029601229,446977.9312791511,288924.9602518635,498.05326,241.35836915357197,515334.2967747321,248616.0784247812,3606.37744,1690.4649648724694,3720966.244769765,1722353.4426484548,1173.85034,534.8388694825449,1209324.0189071028,542663.86836815,1898.119,804.7771334291682,1939363.9825954488,807114.0644194409,0.43532,100000,0,1066216,11125.26477247827,0,0.0,0,0.0,35619,370.98406669657857,0,0.0,44974,464.9352546511264,1210494,0,43470,0,0,20882,0,0,88,0.9182257374500452,0,0.0,1,0.0104343833801141,0,0.0,0.06518,0.1497289350362951,0.3000920527769254,0.01956,0.3593155893536122,0.6406844106463878,23.53415418342576,4.078552033420197,0.3134851138353765,0.2749562171628721,0.2019848219497956,0.2095738470519556,11.509123489309006,6.425327790581397,20.85250144390396,13848.289988655994,58.91625743515146,17.188986618049523,18.45921974723722,11.96920434996655,11.29884671989816,0.5913601868067717,0.8145789101203114,0.7082557417752948,0.5923862581244197,0.105009633911368,0.7657713928794504,0.9235880398671096,0.8522267206477733,0.7491289198606271,0.1559633027522936,0.5124364047484454,0.7336621454993835,0.6445837063563116,0.5354430379746835,0.0914634146341463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027017181713314,0.0052460477410599,0.0078452041881632,0.0105427646599222,0.01343993173368,0.0160378317909081,0.0189366944269104,0.0214655735030184,0.0239959972634352,0.0267205235709172,0.0292765347396446,0.0318640521803339,0.0343399677356377,0.0367522950887159,0.0389702774312607,0.0413778856582141,0.0437090615589979,0.0461981877371596,0.0486978923203174,0.0508021112024901,0.0687148682330611,0.0842107464371974,0.1006779625496421,0.1158350225284362,0.1306119440700808,0.1478046874174843,0.1623529411764706,0.1754891535516801,0.1875520266376384,0.2004091074603208,0.2149117618591846,0.229176343505266,0.2421929291174426,0.2536395705688979,0.2651585897759858,0.2765046782720254,0.2865053985091423,0.2957062933920507,0.3040429556962742,0.3121127597796017,0.3196713745038309,0.3263413042464923,0.3323384375811056,0.337347238648174,0.3426263458114834,0.3472377557918024,0.3514059732029242,0.3551874477199564,0.3593209844693256,0.3628792854328123,0.3594829089056067,0.3565704579389323,0.3533954727030626,0.3503756801105449,0.3480455278776845,0.3440362770245511,0.3414603315056804,0.3424318836782813,0.3419663533578531,0.3419272131614557,0.3443171410948918,0.3444897798277255,0.3445760976323324,0.3454849125932524,0.346454061537727,0.3495617550482198,0.3518371961560203,0.3558652440352132,0.3603068805110047,0.3636789872626397,0.3680443728752907,0.3731498853450073,0.3745202426643556,0.3807845196129903,0.3829374249006377,0.3870030225528946,0.3899909828674481,0.3949347051840127,0.3963282937365011,0.3940978707508405,0.0,2.4796370585631298,70.14442894108,182.6259087440716,260.1087958240498,APP_public_implementation,25 +100000,95735,52720,498.7830991800282,6355,65.06502324123883,5028,51.914137985062936,1938,19.804669138768475,77.31288813594676,79.67122122982046,63.318020272784125,65.06210733438596,77.06037511412026,79.42357545645083,63.22277193206955,64.97173524333273,0.2525130218265019,247.64577336962645,0.0952483407145763,90.37209105322574,232.84206,162.92476473919413,243215.1877578733,170183.0727938519,422.6165,273.8787872905123,440856.938423774,285492.9516796493,484.99775,235.24232827581864,503751.616441218,243381.6144118065,3543.8826,1662.7531058116945,3660497.21627409,1695563.290135994,1179.97725,531.4220734152187,1217724.416357654,540276.06770274,1879.19654,807.9712068420463,1922407.7296704445,808046.962873933,0.43367,100000,0,1058373,11055.23580717606,0,0.0,0,0.0,35057,365.5611845197681,0,0.0,43890,455.5491721940774,1215257,0,43716,0,0,21013,0,0,82,0.8565310492505354,0,0.0,1,0.0104455006006162,0,0.0,0.06355,0.1465399958493785,0.3049567269866247,0.01938,0.352905751279735,0.647094248720265,23.7283418543933,4.073148673773544,0.3122513922036595,0.2653142402545744,0.2038583929992044,0.2185759745425616,11.402802374425963,6.256775786496072,20.966730046835416,13800.888067688966,58.19015492409122,16.36470581155363,18.132518679010296,12.28086915290537,11.41206128062193,0.5825377883850438,0.8133433283358321,0.6853503184713375,0.5841674249317561,0.1229268292682926,0.739501312335958,0.9274047186932848,0.8484848484848485,0.6782006920415224,0.1261261261261261,0.514269406392694,0.7330779054916986,0.6173285198555957,0.5506172839506173,0.1220423412204234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025927201280155,0.0052808157390608,0.0080459420245741,0.010898712062731,0.0136593403240406,0.0166089613034623,0.0193229325991638,0.0217966125920102,0.0243932361420655,0.0271653986750084,0.0296316043104243,0.0319967140730091,0.0343611156820799,0.0366902547304883,0.0389777874070176,0.0412894290793335,0.0436758995599275,0.0460799369137544,0.0482093090969593,0.0508257358687158,0.0681046993599849,0.0841721951321599,0.0993969901945362,0.1136193971001083,0.1277730915225643,0.1458309093409208,0.1602695389186608,0.174186130687504,0.1873163748250552,0.1993586374800244,0.2144841697178548,0.2278553580893249,0.2410388028536627,0.2524040302377228,0.2627935641494068,0.2735905504831132,0.2838881818384799,0.2940951394906537,0.3021105481972874,0.3107527251470032,0.3180117893664084,0.3246680315881837,0.3308911430160853,0.3361753666462808,0.3424695829737581,0.3470706472815162,0.3512629679747406,0.3557895541011994,0.3597780716082031,0.3621938964404718,0.3596210679729565,0.3572324443525601,0.3539984187044671,0.3513411682872752,0.3498248490720727,0.3468123693593999,0.3425909734034942,0.3436923279725811,0.3431927297668038,0.3421109277462869,0.3427066679206245,0.3428123200349504,0.3439443603967053,0.3445572059054148,0.3444050461924403,0.3461850330883315,0.3471785489680407,0.3508344923504868,0.3546431718061674,0.3612619808306709,0.3644141464976895,0.3678728944152186,0.3707583265382926,0.3729252322217146,0.3744102660879411,0.3761130238632316,0.3809670940831144,0.382779024688839,0.3833054159687326,0.3874524714828897,0.0,2.402649187851102,66.90973423899688,189.87945931520076,254.3062591949966,APP_public_implementation,26 +100000,95768,53617,507.5808203157631,6358,64.79199732687327,5035,51.854481664021385,1863,18.941608888146355,77.37208356525132,79.71180596199719,63.35007434272507,65.08003845843265,77.126405506798,79.47129930963325,63.25640420915661,64.99151879546825,0.245678058453322,240.50665236393343,0.0936701335684588,88.51966296440139,232.59588,162.76351772215455,242874.321276418,169956.0581009884,428.60783,278.3872209483922,446846.838192298,289987.9614781474,499.12804,242.14175503048384,517187.9020131986,249615.82670949888,3503.50132,1642.230250036979,3609066.253863503,1665923.121485263,1144.31445,525.9071465152023,1174153.464622839,528551.9964676716,1807.32518,782.5239389243627,1839559.7067914128,776172.1089460693,0.436,100000,0,1057254,11039.741876200818,0,0.0,0,0.0,35520,370.1445159134575,0,0.0,45148,467.3690585581823,1211836,0,43645,0,0,20654,0,0,76,0.7935844958650071,0,0.0,4,0.0417676050455266,0,0.0,0.06358,0.1458256880733945,0.2930166719094054,0.01863,0.3439193257074052,0.6560806742925949,23.67229365215036,4.202664642948242,0.3241310824230387,0.2659384309831181,0.1982125124131082,0.2117179741807348,11.654964131934529,6.410017176378871,19.963383564824383,13863.198847148791,57.72879455270548,16.407597012110383,18.525678430164056,11.86425134522915,10.931267765201888,0.5862959285004965,0.8005974607916355,0.6930147058823529,0.5891181988742964,0.1212424849699398,0.7486263736263736,0.9247706422018348,0.8474178403755869,0.7215686274509804,0.1782608695652174,0.5202570550433082,0.7153652392947103,0.6384742951907131,0.5474722564734895,0.1041666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00268408791654,0.0054742305664814,0.0083720647033752,0.0110218303349214,0.0136580901047493,0.0163198403648802,0.0190910110183571,0.0216952058289283,0.0241783845650752,0.0267424009824992,0.0290835306053432,0.0316403082954463,0.0342810739689979,0.0368619940485383,0.0391861652212471,0.0415564556124979,0.0440849196244656,0.0465326101610544,0.049002493765586,0.0511822090807816,0.068145056091834,0.0848273120933832,0.1007789321395997,0.1160725545420152,0.1308031104461256,0.1493628621542232,0.1628949683601327,0.176748984323485,0.1891115949453552,0.2002078801581603,0.2155339387939568,0.2293220888744729,0.2421294081836761,0.2529033527983728,0.2632210083941164,0.2734251248933837,0.2833199428673451,0.2930175545134554,0.3021805440587828,0.3096402515147003,0.3179577953630432,0.3245354507501783,0.3313662649747513,0.3377332726445152,0.3419419856967666,0.3471416429548058,0.3524683552227967,0.3567804046750009,0.3603059164553031,0.3635344395494236,0.3608630151727106,0.3583990547113297,0.3563586136911389,0.3532575691853908,0.3514204207773683,0.3471331240909439,0.3435606120543696,0.344012992765392,0.344304923529613,0.3444321389017898,0.3452247191011236,0.3467646361697085,0.3480445523825475,0.3493335714764127,0.3506140793616459,0.3516644057184597,0.3528772762356708,0.3568680625630676,0.3615519662921348,0.3646090207620714,0.3690996901767814,0.373108172693962,0.3753302302176374,0.3797227300426569,0.3841727975853612,0.3840682788051209,0.3918217882209338,0.3942879809599365,0.3988079111351937,0.3997747747747748,0.0,2.7931465064334104,63.162398087450335,193.88206606119763,256.9225101298283,APP_public_implementation,27 +100000,95633,53005,502.6612152708793,6350,64.8520908054751,4995,51.509416205703054,1944,19.87807555969174,77.25911226955019,79.65594337325903,63.27736057920528,65.04592417729484,77.00402154890038,79.40370150238147,63.180051614389086,64.95262186691414,0.2550907206498038,252.24187087756889,0.0973089648161931,93.30231038069314,231.24332,161.9484530459042,241802.3903882551,169343.23888814967,420.00484,271.94138969801537,438429.9980132381,283605.6416697326,490.29348,237.98465947539404,508156.1385714136,245278.37200374957,3514.54579,1659.4947055325556,3628697.5730134994,1688972.877806359,1152.7584,532.1689457371698,1187528.5309464308,538737.7761220676,1895.31566,821.1019045255542,1940927.232231552,823710.5041088283,0.43249,100000,0,1051106,10991.017744920688,0,0.0,0,0.0,34854,363.6924492591469,0,0.0,44324,458.9315403678647,1216646,0,43763,0,0,20356,0,0,73,0.7633348321186202,0,0.0,0,0.0,0,0.0,0.0635,0.1468242040278388,0.3061417322834646,0.01944,0.3436369119420989,0.6563630880579011,23.58824386027505,4.061120831584929,0.3129129129129129,0.2652652652652653,0.2108108108108108,0.211011011011011,11.25855240804738,6.130193766870372,20.99313258943829,13799.13338594924,57.75100872373669,16.45850680175418,17.775369030053994,11.790877405196811,11.726255486731702,0.574974974974975,0.8,0.7063339731285988,0.573055028462998,0.0987654320987654,0.7383606557377049,0.9032815198618308,0.8811188811188811,0.7192307692307692,0.1478599221789883,0.5031700288184437,0.7198391420911529,0.6402116402116402,0.5251889168765743,0.0829145728643216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026640195293903,0.0051612772386659,0.0078354951992367,0.0105978702649975,0.0133272292588636,0.0158271036603996,0.0186593796520994,0.0213256837183662,0.0239928031813209,0.0265318238581693,0.0289531152280673,0.0316456346068938,0.0341064541013113,0.0365704160786212,0.0389267285861713,0.0412965930827689,0.0434683518077281,0.0457447139787624,0.0482728492526601,0.0504785137924563,0.0675298617424836,0.0838753600418957,0.0994234949437671,0.1136325344341013,0.1282647037080063,0.1465522720050842,0.1618385969385045,0.1753535310478585,0.1875501363709289,0.1989065990720055,0.214125415389927,0.2273510572577411,0.2402488451146169,0.2519316550310709,0.2625267524215078,0.2734160621243598,0.2836452363896848,0.293222901762542,0.3017820159766949,0.30939925265881,0.316654861296578,0.3228714289067818,0.330150586670467,0.3362697667701639,0.3417166983941035,0.3462328343436843,0.3513306360415148,0.3553239853906469,0.3590193327096975,0.3628285771038866,0.3605135135135135,0.3585030817279788,0.3556169038012317,0.3530036209228263,0.3503945244784506,0.3478662337062743,0.34406499411746,0.3444057961457938,0.3444558874013045,0.3441089508108592,0.3448431420462021,0.3459632991161666,0.3464269209763475,0.3473053892215569,0.3478292225587768,0.3474388687794588,0.3492682649051876,0.353005980484734,0.3570725534308211,0.3620929585304759,0.3657646146123305,0.3688241238100303,0.3744954591321897,0.3763097949886105,0.3758282781147923,0.3799266185347378,0.3803568705200549,0.3765893037336024,0.3802345058626465,0.3749509226541028,0.0,2.7774988358488697,66.4557938477222,185.24571552338375,254.79022488793547,APP_public_implementation,28 +100000,95606,52760,501.52710080957263,6224,63.7721481915361,4884,50.37340752672426,1832,18.67037633621321,77.28554750318864,79.71716077003127,63.27381344368565,65.07184682500537,77.04829334436785,79.48595626524316,63.18432338083773,64.98861656262503,0.2372541588207894,231.20450478810997,0.0894900628479149,83.23026238034004,231.96734,162.3035289293942,242628.4333619229,169762.9112497063,421.64881,273.57182063816606,440313.8924335293,285431.3648078217,486.87252,236.5423605801443,505178.09551701776,244300.02260270136,3401.37424,1582.6112271496454,3506895.3622157606,1604542.9859523952,1099.28524,494.9110375298284,1132617.722737067,500466.8091226775,1780.70036,757.6539691798325,1815641.424178399,751397.5847942539,0.43056,100000,0,1054397,11028.565152814675,0,0.0,0,0.0,34966,364.98755308244256,0,0.0,43881,454.90868773926326,1215149,0,43684,0,0,20742,0,0,93,0.9727422965085872,0,0.0,0,0.0,0,0.0,0.06224,0.1445559271646228,0.2943444730077121,0.01832,0.3457454993075858,0.6542545006924142,23.733907303551437,4.143043623087061,0.317977067977068,0.2737510237510237,0.2029074529074529,0.2053644553644553,11.274343826608828,6.078739601015668,19.67209987388856,13663.625675569512,56.17508413755355,16.369431359268123,17.79312348300611,11.186283506841074,10.82624578843824,0.5782145782145782,0.7958115183246073,0.6992916934964585,0.5613160518444666,0.1120080726538849,0.7637102234258633,0.936283185840708,0.8810572687224669,0.6958333333333333,0.146788990825688,0.4977986498385676,0.6930051813471503,0.6242038216560509,0.5190039318479686,0.1021992238033635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031211998378597,0.005690289991784,0.0081630995410794,0.0108959699141129,0.0136328490619785,0.0159011500575538,0.0181779233099733,0.0204519450800915,0.0230027308711172,0.0255420255420255,0.0279439070177778,0.0304665022605836,0.0327222571049191,0.0352441526043975,0.0373892571711789,0.0397724334109128,0.0423968578031567,0.0448054173633974,0.0470405762704807,0.0492061505080219,0.0665955756283193,0.0837088896807596,0.0986809606390246,0.1137173083812775,0.1282882920954212,0.1466067853700388,0.1608302424197336,0.1737266901941551,0.1853147975727999,0.197008606702698,0.211086292663451,0.2254038816003469,0.2382135617602825,0.2494219748189219,0.2604855781952898,0.2713397713397713,0.2811483381963309,0.2899135511648614,0.2990840076370579,0.3078422156752605,0.3148819380913228,0.3221031676327653,0.3275510446062273,0.3340697604610674,0.3389731479903595,0.3432345679012346,0.3480004009221208,0.3517701934595876,0.3557351739169921,0.3591745603952809,0.3563103787439874,0.3529541233922553,0.3506874427131072,0.347108513900541,0.345042366582429,0.3421787281038132,0.3383127180463051,0.3389696690571748,0.3392585502589433,0.3394332939787485,0.3416760404949381,0.3423375392453053,0.3432297563634838,0.3436257205415791,0.3453598348456479,0.3465922367908607,0.3475024762982878,0.353457704446736,0.3573738568000834,0.3616358402019166,0.3647122840429873,0.3686689600423392,0.3702446079356096,0.3738154802516867,0.3775243081525804,0.3843077285025291,0.3872489348752282,0.39120790481952,0.3926630434782608,0.4003004130679684,0.0,2.8262211947273777,64.50077369755746,181.60651034374865,245.8772886032644,APP_public_implementation,29 +100000,95801,53461,505.6105886159852,6443,65.90745399317335,5119,52.765628751265645,1938,19.759710232669804,77.35864855579545,79.66215049170908,63.35358995694328,65.05355871550567,77.10368453864604,79.41166694887461,63.25724986393399,64.96226555386333,0.2549640171494189,250.48354283447335,0.0963400930092888,91.29316164234068,231.8041,162.32462329034234,241963.7164538992,169438.94415751644,426.96194,276.7209137700794,445007.77653677936,288182.5716769689,500.09462,242.51272160763935,517875.2309474848,249996.1688325117,3586.91638,1689.7722322379325,3697874.103610609,1717989.6654188775,1185.44965,545.7305429894581,1215007.0980469931,547630.4725219823,1887.61152,811.4878051136329,1926261.8761808327,809738.9295383019,0.43383,100000,0,1053655,10998.35074790451,0,0.0,0,0.0,35396,368.764417907955,0,0.0,45189,467.5942839845096,1215253,0,43721,0,0,20755,0,0,75,0.7724345257356395,0,0.0,1,0.0104383044018329,0,0.0,0.06443,0.1485143950395316,0.3007915567282322,0.01938,0.3563252564293147,0.6436747435706853,23.50149785100364,4.085427874435929,0.3096307872631373,0.2770072279742137,0.2055088884547763,0.2078530963078726,11.138673855438393,6.050648048887938,20.967909546540604,13807.504988151082,59.30397845571054,17.455608436237497,18.29026920165361,11.97602452430333,11.582076293516096,0.5825356514944325,0.7856135401974612,0.7167192429022082,0.5742481203007519,0.1150190114068441,0.7477707006369426,0.9086206896551724,0.8731501057082452,0.7018181818181818,0.1694214876033057,0.5094392786700479,0.7004773269689738,0.6501798561151079,0.5297845373891001,0.0987654320987654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0049529520201764,0.0075022557458154,0.0104315707225993,0.0130554934671733,0.0157265652815217,0.0184268426842684,0.0211663419460793,0.0238644954334634,0.0265249547346993,0.0291915477665905,0.0316330403208435,0.0341412294130338,0.0364092906465787,0.0389029231324431,0.04144761983454,0.0441724266379702,0.0467664683074498,0.048967465824573,0.0514825302960896,0.0689090358994689,0.085449622047738,0.1005628753812773,0.1159048630014609,0.1307688254202455,0.1492221846466012,0.1631467345207803,0.1764361702127659,0.1889234120247285,0.2005275347400926,0.2158486421295199,0.229559101974574,0.2414535724774034,0.2534710445409687,0.2640399947143549,0.2739205143839033,0.2844478188537677,0.2939077781904536,0.3023612214780338,0.3106246418338109,0.3171460330693344,0.3236513550865522,0.3304030519157406,0.3361044133347728,0.3412853858225569,0.3451714010711024,0.3500507156542319,0.3545024058657298,0.3585998652221243,0.3621750845308538,0.3588292367399741,0.3561653265778169,0.3535774647887324,0.3509682080924855,0.3485292150363422,0.3445546676464284,0.3409940446021287,0.3409494378328621,0.3419296324183722,0.3414931146249306,0.342143823264202,0.3429024269440317,0.3433827394092295,0.3446384598164316,0.3464373464373464,0.3479739451173254,0.3496383544412361,0.3533162862644821,0.3557160472080324,0.3596554199569275,0.3614661310936644,0.3643828312450013,0.3685741384761302,0.3708167024869512,0.3751413494157557,0.377806665090995,0.3771875959471906,0.3795143848194246,0.3839887640449438,0.3906497622820919,0.0,2.579657032125651,68.97416141265603,192.56048763631716,256.39294351150426,APP_public_implementation,30 +100000,95864,53103,501.3873821246766,6253,63.934323625135605,4920,50.76984060752733,1860,19.026954852708,77.41454581429173,79.70275964669672,63.37712166936033,65.06789506411863,77.1823729149583,79.47425573981793,63.2895172908276,64.98476919213302,0.2321728993334346,228.5039068787853,0.087604378532724,83.12587198561516,233.17272,163.18352539335524,243232.82984227655,170223.98960334976,425.39097,276.63984551983947,443176.8964366186,288007.985813068,492.39565,239.0953961890036,510622.5381790871,247092.6786044369,3450.86845,1608.887241351135,3560443.378119002,1638990.8947583376,1111.87217,508.8175093475194,1145969.4567303678,516896.3316234661,1798.95144,762.6745184632542,1840897.9387465576,762969.6025535506,0.43085,100000,0,1059876,11056.03772010348,0,0.0,0,0.0,35240,366.9990820328799,0,0.0,44504,461.2158891763331,1211195,0,43577,0,0,20647,0,0,70,0.7302011182508553,0,0.0,0,0.0,0,0.0,0.06253,0.1451317163746083,0.2974572205341436,0.0186,0.35296817625459,0.64703182374541,23.678810107980397,4.08242291889506,0.3172764227642276,0.2686991869918699,0.1926829268292683,0.2213414634146341,11.45392296990686,6.218822306966618,19.796443219637226,13709.52992372991,56.364228836522685,16.17764364879374,17.741810749268634,12.080849334146931,10.363925104313395,0.5878048780487805,0.800302571860817,0.6976297245355542,0.5895316804407713,0.1086497890295358,0.7687585266030014,0.9244935543278084,0.8422222222222222,0.7678571428571429,0.160621761658031,0.5110017371163867,0.7137355584082157,0.639063906390639,0.5278121137206427,0.095364238410596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030672672976666,0.0058760954358948,0.0088118681363253,0.0114612307879723,0.0142900701290781,0.0168194629574985,0.0194070904645476,0.0218695173201681,0.0249959140312168,0.0275038867523115,0.0301866306106979,0.0327117183653372,0.0350897022256016,0.0375391139657444,0.0397451362469456,0.0423874985798535,0.0446635490812779,0.0469567740665125,0.0492889027301982,0.0514588859416445,0.068579710749403,0.0847608198074852,0.1004316486463833,0.1145332353250026,0.128976883787057,0.1475801170331875,0.1610958671907279,0.174090058678459,0.1869164861663874,0.1979284933913155,0.2125281086257168,0.2259431871019366,0.2385806661957289,0.2502459177650993,0.2604810165541803,0.2716175087156217,0.2813364260861807,0.2901329616850056,0.2994691831318195,0.3075751677391284,0.3144192179132788,0.3212226808704702,0.3280102203768764,0.3332055214723926,0.3379219011979685,0.3435516276547227,0.3471975367361754,0.351176994528566,0.355210102555459,0.3586059349453916,0.3567822282059912,0.353950046762392,0.3517413215462147,0.349235677064538,0.345652625641939,0.3426111425469115,0.3382034717505647,0.338111229420919,0.3372265511773432,0.3384530504734107,0.3382127786698532,0.3391734494787253,0.3403660343496317,0.3414916340334639,0.3417466893364305,0.3426096428664056,0.3440421553629101,0.3479047143926166,0.3532287919533405,0.3592156242587175,0.3622684139177587,0.3666895133653187,0.3710550887021475,0.3729360552386671,0.3741983455711497,0.3754406580493537,0.3776223776223776,0.3843977364591754,0.383397050791917,0.3839726547664261,0.0,2.146662555175533,64.38369475708076,180.7097413955616,253.62198625156688,APP_public_implementation,31 +100000,95703,52724,499.8798365777457,6234,63.69706278800037,4994,51.52398566398127,1906,19.53961735786757,77.36002699221102,79.73210234089163,63.33690834044432,65.08867348793208,77.11870881241234,79.49109338836739,63.24632416694182,65.00034112261628,0.2413181797986823,241.00895252423985,0.0905841735025063,88.33236531580724,232.94546,163.03814669857246,243404.5536712538,170358.44926342167,423.44275,274.56130646847595,441803.1096203881,286242.666352625,489.50767,237.2885579554448,506637.8692412986,244334.7257105158,3478.78886,1619.4079593001895,3592325.089077668,1650087.654127863,1135.37864,508.1599071402119,1170138.1147926396,514973.7631194157,1852.72948,787.8629201260571,1901448.2513609813,794808.7256668219,0.42977,100000,0,1058843,11063.843348693354,0,0.0,0,0.0,35111,366.1954170715652,0,0.0,44305,458.1674555656562,1214913,0,43640,0,0,20848,0,0,74,0.7732254997231016,0,0.0,0,0.0,0,0.0,0.06234,0.1450543313865556,0.3057427013153673,0.01906,0.349342306515754,0.650657693484246,23.598014775292537,4.035911823213296,0.3145774929915899,0.2789347216659992,0.2074489387264717,0.1990388466159391,10.949374015515238,5.8488794543395874,20.39091722992481,13678.150852345258,57.38526159350826,17.10885301592929,17.80139556365618,11.162482244683709,11.312530769239082,0.5873047657188626,0.8169418521177315,0.7097390197326544,0.5714285714285714,0.1081081081081081,0.7610921501706485,0.931338028169014,0.9,0.708171206225681,0.1181818181818181,0.5151601020119014,0.7381818181818182,0.6403127715030409,0.5237449118046132,0.1053921568627451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002815731634441,0.0056158704092286,0.0083922754533553,0.0110628009508523,0.0137414052646568,0.0162620667182599,0.018756371049949,0.0213721447671926,0.0237467288191036,0.0263316850435619,0.0286968022391502,0.0310154718027165,0.0332983690175027,0.0355557386673808,0.0381035905901774,0.0404147970472074,0.0427954293528369,0.045254504691522,0.0477413852282537,0.0499942691021246,0.0675974853275966,0.0832879809101184,0.0983751009661278,0.1135546160156496,0.1277095985155195,0.1454804947668886,0.1601884070270729,0.1733966240234998,0.185803088885566,0.1969381624683517,0.2110502952204456,0.2249242424242424,0.2382458772244507,0.2502815284535068,0.2609795532286981,0.272778626968831,0.2823734184276883,0.291668541094966,0.2999671138428041,0.3084683653020326,0.3155770409520395,0.3222714467731943,0.328534759105265,0.3334730589122962,0.3388191855027753,0.3429954666403863,0.347149740316626,0.35160014749075,0.3553438769963503,0.3586357039187228,0.3559673552939909,0.3535722154896992,0.3509541473321956,0.3488792741690422,0.3466297816645844,0.3425278901556945,0.3393207571057796,0.338655737704918,0.3384998805093714,0.3387295191570539,0.3396960850363051,0.3414725621792341,0.3424812030075188,0.3441840761632962,0.3446067496581996,0.34695364755485,0.3478186581615218,0.351309658733157,0.3552751809938849,0.357475797776981,0.3616369455875629,0.3627268373157362,0.3667587592615848,0.370862435469177,0.3739252336448598,0.3772405660377358,0.3791844187461959,0.3834207341670028,0.3845733041575492,0.3903274942878903,0.0,2.5515627431145487,64.07989131765889,190.64586250922756,253.63349248918144,APP_public_implementation,32 +100000,95725,52990,501.3319404544268,6228,63.463045181509536,5000,51.37633846957431,1911,19.37842778793419,77.33346816806463,79.69533487497672,63.32120940122799,65.07010004006906,77.07692730473134,79.44847816810727,63.22196473687006,64.97912278074922,0.2565408633332851,246.8567068694512,0.0992446643579256,90.97725931984256,233.9645,163.78484995322404,244412.9328806477,171099.1435767103,423.30681,274.81505780546786,441355.6542178114,286233.9826037522,492.42233,238.97570412624145,509602.4758422565,245933.19303256847,3479.29052,1638.335943093547,3576605.641159572,1653614.672367324,1158.04003,529.6755631720009,1185500.1932619482,529353.1213574714,1862.59736,813.1499833811251,1891650.5615043093,800187.9783419119,0.43284,100000,0,1063475,11109.678767302168,0,0.0,0,0.0,35191,366.72760511883,0,0.0,44508,460.2141551318883,1206877,0,43388,0,0,20871,0,0,73,0.7521546095586316,0,0.0,1,0.0104465917994254,0,0.0,0.06228,0.1438868866093706,0.3068400770712909,0.01911,0.3506313520172467,0.6493686479827533,23.5982947993708,4.09871397458994,0.3128,0.2812,0.2094,0.1966,10.914519069148945,5.757158010738748,20.731440229761887,13764.218500540812,57.91604954265348,17.28597030676561,18.00206067281057,11.028143753075373,11.59987481000192,0.583,0.8143669985775249,0.7014066496163683,0.5696846388606307,0.10792741165234,0.744970798182998,0.921875,0.8593073593073594,0.7109375,0.1538461538461538,0.5108412836079792,0.7397590361445783,0.6352087114337568,0.5199449793672627,0.09375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026951719945285,0.0057295258183588,0.0086880620343868,0.0111768172488772,0.0141168812676715,0.016576892138195,0.0187069281898625,0.0213916841868914,0.0240280446424921,0.0266446930691042,0.0292896466173892,0.031692418253683,0.0340178727517661,0.0366536900863045,0.0390623387878912,0.0416253204333085,0.0438226796864483,0.046302637859826,0.0484825169735597,0.0508848866157644,0.0681623619318063,0.0854651649639926,0.1014775636989464,0.1172492137455165,0.1309896739760993,0.148949222096479,0.1629646923983062,0.1762532869172708,0.188641753733735,0.19973611662358,0.2137669446779164,0.2266803766641411,0.2388532259819388,0.2502762975040213,0.2603752820117757,0.271820890892776,0.2820209284924561,0.2911103105086577,0.2995378623579239,0.3078817733990148,0.3151079636186905,0.3220767367571173,0.3275798794852671,0.3334292393454414,0.3383202992179531,0.3428170263080106,0.3482775011883615,0.3528050160886209,0.3571780062676439,0.3611158809621303,0.3588533520306348,0.3566335379786912,0.3538290256207897,0.3508911521323997,0.3487711259223994,0.3452452221966383,0.3413020717662362,0.3414963077479729,0.3417075967347218,0.3421499722803441,0.3428367783321454,0.3439620215606765,0.3445573598742797,0.3455326383606997,0.3459861750042149,0.3491170699803793,0.3503161132311898,0.3534279331718214,0.3565446868402533,0.3617679733375654,0.3669532778308539,0.3704804884523494,0.3745117802696233,0.377620245445537,0.3821122919213768,0.3817986641221374,0.3850152905198776,0.3901098901098901,0.3934243521872388,0.3961538461538461,0.0,3.3020105241489057,66.76624682792227,186.72050094084452,251.17471095101644,APP_public_implementation,33 +100000,95787,53410,505.70536711662334,6392,65.34289621764957,5028,51.7815569962521,1932,19.69995928466285,77.34149214859087,79.68114380670718,63.33904717832892,65.07254171659149,77.10030069731714,79.44376799548844,63.24795485018841,64.98583811400384,0.2411914512737354,237.3758112187403,0.0910923281405118,86.70360258764731,233.53308,163.4530633153334,243804.5663816593,170642.22004586575,427.53932,277.411369131977,445675.5927213505,288944.56359628856,498.1665,242.3209171627753,515753.0875797343,249648.34309672003,3532.39908,1654.2041405718885,3641599.4028417217,1680795.8079612963,1179.38743,534.8245409293472,1212878.146303778,539965.4451327911,1879.63248,799.3432217085831,1919052.230469688,797541.1719677316,0.43557,100000,0,1061514,11082.025744620876,0,0.0,0,0.0,35439,369.2672283295228,0,0.0,45066,466.1906104168624,1209723,0,43469,0,0,20866,0,0,82,0.8456262332049234,0,0.0,0,0.0,0,0.0,0.06392,0.1467502353238285,0.302252816020025,0.01932,0.3456882379315498,0.6543117620684502,23.785331620790924,4.1360346496969775,0.3204057279236277,0.2665075576770087,0.2066428003182179,0.2064439140811456,11.326549425103654,6.14743471304507,20.74820721051003,13841.26125587896,58.26486916344589,16.627076012827793,18.58067972431164,11.719227255422142,11.3378861708843,0.5918854415274463,0.8111940298507463,0.7014276846679082,0.6059730250481695,0.1251203079884504,0.7747035573122529,0.9293286219081272,0.88,0.7509578544061303,0.1666666666666666,0.5128205128205128,0.7248062015503876,0.6267605633802817,0.5572715572715573,0.1142162818955042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026641814479775,0.0050282331234857,0.007773098584403,0.0103544283217493,0.0129724779976598,0.0154424422691018,0.0182971605744125,0.0210560712352827,0.0237031280357489,0.0261829426883338,0.0287094095089665,0.0310940420200858,0.0336864842624974,0.0362724191571118,0.0386214724242893,0.0409629338680668,0.0437177708285874,0.0459133393499932,0.0483389964358822,0.0507615270100044,0.068081510000939,0.0847902463507465,0.1006057303347236,0.115084703013998,0.1295133107096937,0.1473541785585928,0.1626309316822866,0.1765200097842155,0.1887988728425502,0.2003215606409775,0.2148132199375605,0.2284444540559244,0.2412088150917152,0.252929217855113,0.2642702411453579,0.2749083823252621,0.2850804338859098,0.294796065043572,0.3040370630479599,0.3122205577980812,0.3195560790835181,0.3260902562905015,0.3318362329803328,0.3371477819539872,0.3422224379117479,0.3469900283146621,0.352361072919531,0.3558764510147578,0.360292121760486,0.3629900734616498,0.3593279164873009,0.3565703916528051,0.3538658741002634,0.3516107120662495,0.349190539194553,0.3450330010260179,0.342127780946948,0.3427772753432541,0.3437034755377586,0.3437035976886058,0.3446138822115384,0.3465683943572674,0.347991347991348,0.3488445072064196,0.3504487983785349,0.3509661898909604,0.3520888327786067,0.3568801521876981,0.3611691022964509,0.3657610866959648,0.3701418309080862,0.3732904263877715,0.3776107997962302,0.3823234272481667,0.3804688241434943,0.3822896749521988,0.3876474239602731,0.3915724563206577,0.3911098686049762,0.3878880797240322,0.0,2.804239788232525,66.11408955519688,195.8048151481847,248.65044330420665,APP_public_implementation,34 +100000,95681,53081,503.3601237445261,6421,65.4988973777448,5107,52.58097218883582,1948,19.826297802071466,77.3419109081298,79.71133973238568,63.33255108723839,65.08113541632456,77.08734057059753,79.46214852397861,63.23577665576134,64.98993435200909,0.2545703375322716,249.1912084070691,0.0967744314770442,91.20106431547016,232.44342,162.58800667034222,242935.3581170765,169926.8661513559,422.18383,273.450465001761,440428.2668450372,284990.6462770999,489.99399,237.02708426423752,507381.4863975084,244134.10556907655,3621.6732,1689.0805118229523,3733487.4740021527,1714328.5122502844,1200.3199,544.7134860193455,1234887.9192316134,550441.7567238613,1896.42066,813.0285059441866,1933254.2511052352,809492.9548434659,0.43337,100000,0,1056561,11042.516278048934,0,0.0,0,0.0,34916,364.0639207366144,0,0.0,44366,458.9207888713538,1218466,0,43822,0,0,20553,0,0,75,0.7838546837930206,0,0.0,3,0.0313541873517208,0,0.0,0.06421,0.1481643860904077,0.3033795358978352,0.01948,0.3473871733966746,0.6526128266033254,23.76689276108176,4.137602545874071,0.3101625220285882,0.2690424906990405,0.2093205404346974,0.2114744468376737,11.221033793450632,6.100645695766809,20.925224858344134,13772.248361427051,58.63056702003895,16.721249554600902,18.18378966095409,11.97274745842136,11.752780346062591,0.5803798707656158,0.7947598253275109,0.7007575757575758,0.5916666666666667,0.1150608044901777,0.7426820966643976,0.9053254437869822,0.8656387665198237,0.7286245353159851,0.1799163179916318,0.5148433205057724,0.7301038062283737,0.6345132743362832,0.5462392108508015,0.0963855421686747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027847537265068,0.0053917097395358,0.0077601947656725,0.0102990168196961,0.0130150079310204,0.0157000895984361,0.0182982150320601,0.0206070874499877,0.0232320444812395,0.0257816897804615,0.0284987903391151,0.0310821772926571,0.0335040414635651,0.0359052554579079,0.0383365151436974,0.0408435416343619,0.0431567500388379,0.0455205911657256,0.0479904331097592,0.0502449192287649,0.0663561065792084,0.0834441245747186,0.0990514563921766,0.1139932889435871,0.1280752837911972,0.1464111490883694,0.160721106913968,0.1743347849697073,0.1878385742218803,0.2002274580490107,0.2150674307380757,0.2285120523005985,0.2408289817232376,0.2522995482932484,0.2627381528578343,0.2731500448440424,0.2831870252423286,0.2927761784814681,0.3017337236480813,0.3090467794747327,0.3152589060438416,0.3229670394005035,0.3294842186297151,0.3347442892259727,0.3405827933721538,0.3462520821765685,0.3511846558856713,0.3553028663109775,0.3584480211492108,0.3619286326759449,0.3591425953869368,0.3567114694107774,0.3547642505277973,0.3521787451467171,0.3492770404679196,0.3464333246645963,0.3425580365614523,0.3431745823349854,0.3426818430407438,0.3429597726825956,0.3425962385854381,0.3435508766375114,0.3443211899659649,0.3453734221205802,0.3465198641193052,0.3471903070816795,0.3492984311147943,0.3536831483350151,0.3595105437619014,0.3639014258896832,0.3679495383490264,0.3713889037218988,0.3753322364257689,0.3812480834099969,0.3843311860553239,0.3885243946081355,0.3890086206896552,0.3955885384456813,0.3965178320696433,0.3953488372093023,0.0,3.048918297942403,63.67311613955227,195.00613105843848,264.7293469500765,APP_public_implementation,35 +100000,95691,53222,503.3284216906501,6402,65.3248476868253,5048,52.00071062064353,1850,18.820996749955587,77.33810060160408,79.72062719509462,63.31256206328344,65.07485837433825,77.1022710422276,79.4907165972456,63.22330854276688,64.99109787478257,0.2358295593764836,229.91059784902745,0.0892535205165572,83.76049955568021,230.91706,161.61178187229325,241315.3379105663,168889.2182883377,423.89896,275.3121009110709,442229.3946139136,286951.61604651524,505.55718,245.80865804563348,523668.7149261686,253229.8585589422,3483.73545,1652.6754910289585,3590613.526872956,1677327.181407106,1162.54026,542.1220684091779,1194007.430165846,545699.4909138306,1800.80946,771.2178851463804,1834765.8609482604,766040.4249108996,0.43307,100000,0,1049623,10968.878995934832,0,0.0,0,0.0,35108,366.1159356679311,0,0.0,45661,472.4895758221776,1218518,0,43918,0,0,20682,0,0,86,0.8987261079934372,0,0.0,1,0.010450303581319,0,0.0,0.06402,0.1478282956565913,0.288972196188691,0.0185,0.3561232156273478,0.6438767843726522,23.460032526186676,4.088852313567048,0.3268621236133122,0.2755546751188589,0.1943343898573692,0.2032488114104595,11.719149673224424,6.408231250704666,19.940438134087355,13805.80767936002,58.43147849313249,17.284677634634463,18.779049068161605,11.52337541366426,10.844376376672155,0.6117274167987322,0.8296189791516895,0.7272727272727273,0.5906432748538012,0.1304791029561672,0.7801374141161774,0.9236883942766296,0.8930817610062893,0.7518518518518519,0.1733333333333333,0.5335073977371627,0.7519685039370079,0.659846547314578,0.533068783068783,0.1177248677248677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029697350550363,0.0057415297220531,0.008558896988649,0.010945789377401,0.0137768235976434,0.016429175281883,0.0189502886400261,0.0215306362160009,0.024370040088358,0.0265911697247706,0.0291741011915748,0.0317088698580904,0.0346093340325118,0.0367845447243218,0.0390463811174383,0.0417493386243386,0.0445212925670149,0.0469975515624351,0.0493294521260006,0.0518047814990364,0.0688221901957098,0.0849333137915872,0.0998667324259945,0.1143238808481992,0.1286505299794336,0.1464962762356127,0.160683397888258,0.1743237486687966,0.1872962602738262,0.1997467892664399,0.2138146551724138,0.227729955064696,0.2406240134121515,0.252489767329875,0.2626718473104313,0.273739982486671,0.2846276708626062,0.2937620318146509,0.3026317283992685,0.310658350340526,0.3174709820911429,0.3237915646704693,0.3303751273726865,0.3366713038472608,0.3411870547329005,0.3455968592204842,0.3501479586718828,0.3544171458442237,0.3585654271044033,0.3620204688015846,0.3599649878804201,0.3567455947136564,0.3536307024711883,0.3517913897717423,0.3492124814264487,0.3454801783716689,0.3425854129413068,0.3422736220472441,0.3423263438289734,0.3425778950935454,0.3426201576513322,0.3435525900189513,0.3444716621652743,0.3443261141936639,0.3450413223140496,0.3465667461881547,0.3471777280072576,0.3527164552998277,0.3582897033158813,0.3630236865959879,0.3659041786743516,0.3691194209891435,0.3710098124456589,0.37684305066986,0.3795687980012954,0.384129213483146,0.3906062424969988,0.3980543974588048,0.3997308209959623,0.3962976955043445,0.0,2.980279648220616,69.75410686486985,181.1228935979856,254.6406919740465,APP_public_implementation,36 +100000,95634,53398,506.3366585105716,6341,64.75730388773867,5017,51.70755170755171,1904,19.43869335173683,77.27782633283482,79.68969495956802,63.2892740309558,65.07257587831074,77.04180299422168,79.45723906456787,63.20050432098704,64.98821636231149,0.2360233386131369,232.4558950001432,0.0887697099687514,84.35951599925318,232.00452,162.42492779036616,242596.0432482172,169839.93223368906,426.37399,276.7025002932688,445061.92358366266,288558.26044919185,497.72524,241.5566117292103,515670.1277788235,248853.7139773621,3535.19885,1643.1149227461472,3645776.0629064976,1667528.3479450855,1154.42083,520.8623998007985,1186861.70190518,524539.222023462,1859.59896,784.358320457466,1900714.139322835,783025.8941999957,0.43345,100000,0,1054566,11027.092874918962,0,0.0,0,0.0,35273,368.0385636907376,0,0.0,44930,465.0647259342912,1212457,0,43608,0,0,20555,0,0,92,0.9515444298052994,0,0.0,0,0.0,0,0.0,0.06341,0.1462913830891683,0.3002680965147453,0.01904,0.3393180446590223,0.6606819553409776,23.76790007978456,4.071213498427117,0.3143312736695236,0.2647000199322304,0.2080924855491329,0.212876220849113,11.260616299393826,6.120845914968753,20.3894080775101,13807.282704886364,57.73998866053394,16.182592578123586,18.186251296177268,11.940832275745214,11.430312510487882,0.5856089296392266,0.7944277108433735,0.7114774889029803,0.598314606741573,0.1168582375478927,0.7532646048109966,0.8992395437262357,0.86,0.7859922178988327,0.1531531531531531,0.5171252105558675,0.7256857855361596,0.6521739130434783,0.5388409371146733,0.1070559610705596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027055509393429,0.0054559467791659,0.0081923943719164,0.0110165960344319,0.0134696576631568,0.0160756308513564,0.0186945436002039,0.0211935816642323,0.0235981260612507,0.0263470600286826,0.0288823475112565,0.0314727694804527,0.0340803852565289,0.0367747853601723,0.0391608247209804,0.0417347593140398,0.04412389508917,0.046445704317488,0.0490749027034901,0.0511547885928783,0.0683958074258305,0.085021260551727,0.1000608783273154,0.1152388970743001,0.1297199181071782,0.1473486973735748,0.1612591467623912,0.174638522764808,0.1878235570957943,0.1990251130031458,0.213770732075309,0.2282044895881837,0.2414791591826959,0.2526867599098212,0.2628166316229813,0.274229294563507,0.2842723476474397,0.293716523382995,0.302157212078572,0.3105520390994311,0.3174412285063426,0.32368138034228,0.3299779991010385,0.3360859091290434,0.3404009720534629,0.3461320242735211,0.3509048782015154,0.3549639701576146,0.3593055069306674,0.3635847387118501,0.3612122683499231,0.3581945383543308,0.3555847531858382,0.3531141793315271,0.3500462038334277,0.3456958933153067,0.3407996949911833,0.3402123030263071,0.3404707616876103,0.3416014470691477,0.3425899847913028,0.3442782126226097,0.3451004260499087,0.3447751174759454,0.3475342795285061,0.348357027547779,0.3499785989442145,0.3542501814967962,0.3580246913580246,0.3622950819672131,0.3650597445405851,0.3665956313265849,0.3699659133947733,0.3748179937159935,0.3780418788907753,0.382986360373295,0.3828474471695203,0.3816464791623896,0.3811247216035635,0.374378585086042,0.0,2.787787573883057,63.37645526678432,193.0908262142408,257.2682417897403,APP_public_implementation,37 +100000,95797,52951,501.2683069407184,6370,64.99159681409648,5066,52.08931386160318,1955,19.88580018163408,77.39792083527668,79.7008699377858,63.37134666233783,65.0711162877779,77.14518862540851,79.45511521163571,63.27495459049252,64.98071279494589,0.2527322098681708,245.7547261500821,0.0963920718453081,90.4034928320101,234.15304,163.8867804219649,244426.2763969644,171077.15316968682,428.03282,276.86403004065926,446008.5493282671,288212.81504707073,490.7296,237.71716552424024,507521.6864828752,244441.3866066735,3586.60183,1668.9922751085887,3694213.2947795857,1692890.7348551915,1181.71294,529.6973371131389,1217524.4214328215,536906.7182650403,1902.58226,816.5463982700422,1938898.4832510413,812166.8029036619,0.4321,100000,0,1064332,11110.28529077111,0,0.0,0,0.0,35567,370.4395753520465,0,0.0,44316,457.8535862292139,1208519,0,43373,0,0,20797,0,0,75,0.7724667787091454,0,0.0,0,0.0,0,0.0,0.0637,0.1474195788012034,0.3069073783359498,0.01955,0.3319340329835082,0.6680659670164918,24.01624660196104,4.161155952333534,0.3193841294907225,0.2625345440189499,0.2058823529411764,0.2121989735491512,11.287301520559982,6.138438856114776,21.00909030268522,13764.83715119514,58.091891637806654,16.212835078054415,18.49311938754945,12.043799758004637,11.342137414198168,0.5710619818397158,0.7992481203007519,0.6847960444993819,0.5655813953488372,0.109300095877277,0.737508327781479,0.9087523277467412,0.8240343347639485,0.7352941176470589,0.1548672566371681,0.5009817671809257,0.725094577553594,0.6284722222222222,0.5080946450809465,0.0966952264381885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024702356847817,0.0054008045476192,0.0079517216897408,0.0105195820598478,0.0130428594664931,0.0156113248254666,0.0181573638197713,0.0209742412649834,0.0236732942354455,0.0262732499846534,0.0287994590496485,0.0314952551936393,0.0339857194226126,0.0363563394630416,0.0388670727559444,0.0410816056826629,0.0434814094473526,0.0456769138284861,0.0480799185860557,0.0503637555812283,0.068213350580528,0.0846050058048928,0.1000660605869955,0.1148997466065251,0.1288068056038708,0.1463976823362727,0.1610648565519435,0.174777230094431,0.187716373894089,0.1995923184207703,0.2139371546142991,0.2279828623360886,0.2407894736842105,0.2521436696123895,0.2630380498751471,0.2748385810638698,0.2845669027832004,0.29389733669246,0.3028763270120678,0.3103602211462518,0.3174994216978949,0.3243912987574663,0.3305491801339233,0.3355683804688809,0.3398670612779583,0.344610726856524,0.3495208705538412,0.3530569987678002,0.3575503551053673,0.3613013698630137,0.3584408955985655,0.3562170474516696,0.3538684365947633,0.350770917167871,0.3481479283796413,0.3432582724800636,0.3399257562593792,0.339816165025478,0.3402360807860262,0.3395916619074814,0.340015348044996,0.3407367922293295,0.3422610951852859,0.3427503301918471,0.3439097309287299,0.3456206761519383,0.3463784712281706,0.3511906644318649,0.3570422039033326,0.3606589995622587,0.364510809820447,0.3673960729762987,0.3705512909979065,0.3738303420770056,0.3759348669885449,0.3781242561294929,0.3811714198098743,0.3879935535858179,0.3901843817787419,0.3969033232628399,0.0,3.013208276889463,65.09928340824091,189.2266650877844,258.97907795250165,APP_public_implementation,38 +100000,95517,52548,498.3510788655423,6398,65.21352220023661,5059,51.99074510296597,1916,19.368279992043306,77.19945181010942,79.66801657265638,63.224607941291474,65.05282176397873,76.9488215589174,79.42748529908545,63.12911275612962,64.96512662394123,0.2506302511920211,240.5312735709373,0.0954951851618517,87.69514003749634,233.10056,163.10217002907862,244040.9141828156,170757.21602340796,421.4335,272.82286218082254,440161.9921061173,284579.48865900125,492.35032,239.1310905864922,509327.2820545034,245703.3004131669,3521.52374,1666.0196068756595,3618886.658919355,1676543.1752685213,1146.87885,528.999423827048,1172091.2403027732,525305.2741735139,1859.80442,802.3147814533515,1882761.5398306064,786042.8359055456,0.42899,100000,0,1059548,11092.76882649162,0,0.0,0,0.0,34933,364.64713087722606,0,0.0,44579,460.546290189181,1207093,0,43426,0,0,20653,0,0,75,0.7852005402179717,0,0.0,2,0.0209386810724792,0,0.0,0.06398,0.1491410056178465,0.2994685839324789,0.01916,0.3541169451073985,0.6458830548926014,23.584013877188383,4.126671043310109,0.317256374777624,0.2706068392963036,0.1968768531330302,0.2152599327930421,11.364130651802316,6.188724461852487,20.73363025438805,13751.094182869108,58.68527700415638,16.845404726693328,18.43591917905957,12.479947500788493,10.924005597614984,0.5837121960861831,0.799853907962016,0.6940809968847352,0.5895316804407713,0.1024096385542168,0.7567917205692108,0.9147424511545292,0.8623655913978494,0.7508532423208191,0.1511111111111111,0.5075434101907201,0.7196029776674938,0.625438596491228,0.5301507537688442,0.0881971465629053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027267843204833,0.005691848785536,0.0084694126249086,0.0109809663250366,0.0135908294987172,0.0160961487492099,0.0187885900903199,0.0213263846311056,0.0238641015145313,0.0264913557220303,0.0289271892996089,0.0313512179572866,0.0336350809981359,0.0359080687421344,0.0385147982804232,0.0412185452399929,0.044013938438563,0.0461768710311067,0.0484057457734815,0.0506342329174714,0.0675125788466165,0.0827670819177048,0.0987227332457293,0.1138509526218175,0.1287802712387556,0.1463106888764009,0.1607387941398644,0.1739195405979484,0.1866789533463343,0.197896163402278,0.2127680259249257,0.2270551328115671,0.2399227428471661,0.2508723035396871,0.2614489489489489,0.2728808285549184,0.2822326956015538,0.2914620516815118,0.2997711670480549,0.308247434527298,0.3157418366636496,0.3222990178246635,0.3285142850360241,0.3339702453914004,0.3393934224475124,0.3448433597903221,0.3492272898605352,0.3536057600245107,0.3573238722757222,0.3607697197647931,0.3594907282261988,0.3561390430437063,0.3531813878566079,0.3497854699368006,0.347236518236742,0.3444951801116184,0.3415707838026826,0.3424562676207277,0.3421021000394938,0.3424802584350323,0.3437994424772094,0.34386849576145,0.3452069808616474,0.3464501493610044,0.3470768784590473,0.349260851331516,0.3504613973749068,0.3557133838383838,0.363135398636476,0.368259779537586,0.3724723951469987,0.3759728914067877,0.3776508972267536,0.3833231985405898,0.3875794986906098,0.392561004501303,0.3921955663528697,0.3945265681182581,0.3974358974358974,0.3942748091603053,0.0,3.6449603601816714,66.75137474598779,194.02985438219105,250.2953166547155,APP_public_implementation,39 +100000,95668,52866,499.9895471840113,6319,64.65066688966007,5006,51.616005351841785,1879,19.254087051051552,77.33990302576841,79.73217652840721,63.32261558699434,65.08958369560398,77.09696537981588,79.49111116497713,63.22967944463932,65.00039302448857,0.2429376459525229,241.06536343008145,0.0929361423550219,89.19067111540357,232.11584,162.37901556224386,242626.41635656648,169731.797008659,423.24023,274.9667134768337,441726.6693147134,286739.0908943782,492.93604,239.5286135329942,510432.66295940126,246667.81988373227,3512.77885,1652.2920138208651,3625232.66923109,1681093.3071825292,1146.5006,523.4820122157887,1182546.1909938538,531468.6997041046,1826.4509,793.2565071093278,1873527.658151106,796288.8937724886,0.43069,100000,0,1055072,11028.47347075302,0,0.0,0,0.0,35081,365.97399339382025,0,0.0,44612,461.51273152987415,1217248,0,43830,0,0,20721,0,0,82,0.8571309110674415,0,0.0,1,0.0104528159886273,0,0.0,0.06319,0.1467180570712113,0.297357176768476,0.01879,0.3514454366580899,0.6485545633419101,23.69969230040423,4.071321395079874,0.3222133439872153,0.2702756691969636,0.2017578905313623,0.2057530962844586,11.19906277462488,6.1299692195629385,20.40875585983415,13782.829317140757,57.89062945032331,16.685536460518687,18.477447496036543,11.499333909354329,11.22831158441376,0.5852976428286056,0.8181818181818182,0.703657780533168,0.5640776699029126,0.1059405940594059,0.7521480502313285,0.9360146252285192,0.8704883227176221,0.7530364372469636,0.1209677419354838,0.5130260521042084,0.7382133995037221,0.6348511383537653,0.5044699872286079,0.1010498687664042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025524156791248,0.0053418478536313,0.0079349778287384,0.0108072969568927,0.0135545997173159,0.016358232048698,0.0189281200309862,0.0217502245447864,0.0241556264311416,0.0268792990501146,0.0294536768399577,0.0321918370698858,0.0347777800629331,0.0373284990317663,0.0402006419717408,0.0424123990611784,0.0449643082852436,0.0473432358650183,0.0494762137588814,0.0516006629903366,0.069300518134715,0.0859018384354453,0.1012967664771177,0.116534985744795,0.1308737577279345,0.1481579448547305,0.1626628750901914,0.1756033170461682,0.188997489718528,0.2006713352708398,0.2149981688532712,0.2275865800865801,0.2397050185994909,0.2508475688444629,0.2612434080875472,0.2725298588490771,0.2823709292203299,0.2923076923076923,0.3013232256746635,0.3101634911723932,0.3168394741714497,0.3229387201291334,0.3288558038250331,0.3345993482219879,0.3404213977776428,0.3447358044164038,0.3490528265058432,0.3525625532672713,0.3560220278587626,0.3606522743777646,0.3582688835592444,0.3552135246014483,0.3521583443764626,0.3493843415855193,0.3471765493638866,0.3435901363149027,0.3402184235517569,0.3402977235799044,0.3401337336244541,0.3406708969057465,0.3416487321044259,0.3418043954742017,0.3425230614763528,0.3431907659269864,0.3459909519684281,0.3479349186483104,0.3496421748923674,0.3533413113308559,0.3574014834604703,0.3617787985585871,0.3667634779451806,0.3687165633772975,0.372450580483213,0.3754364657659025,0.3766585684918707,0.3828834138865967,0.3885496183206107,0.3880991064175467,0.3935698447893569,0.3998465080583269,0.0,2.802038990127875,65.9424841512412,188.9780693833111,253.6989078293435,APP_public_implementation,40 +100000,95769,53076,501.5401643538096,6256,63.9455356117324,5002,51.48847748227505,1897,19.306873831824493,77.331780499572,79.67263951980337,63.32970022966426,65.0626592835488,77.09013401556072,79.43605828926265,63.23844914812626,64.9764010401791,0.2416464840112837,236.58123054072175,0.0912510815379974,86.25824336969856,232.29338,162.54078648986294,242555.9210182836,169721.71213008693,425.28196,276.093499679048,443330.42007330136,287550.9295064666,492.31863,238.63223946715797,509534.4631352525,245543.6364613748,3499.7589,1634.33806279408,3608788.929611879,1660955.249396026,1145.07572,521.1360665777164,1175493.5939604675,523988.77149987617,1845.52972,787.0553280680509,1882191.1056813796,784711.5348218206,0.43236,100000,0,1055879,11025.269137194708,0,0.0,0,0.0,35366,368.5012895613403,0,0.0,44520,460.2219925027932,1214479,0,43711,0,0,20671,0,0,77,0.8040180016498031,0,0.0,3,0.0313253766876546,0,0.0,0.06256,0.1446942362845776,0.3032289002557545,0.01897,0.3524927580423845,0.6475072419576154,23.672230175487314,4.058035787588421,0.3104758096761295,0.2784886045581767,0.2065173930427828,0.2045181927229108,11.442470533028931,6.351382817307869,20.35671627212901,13772.913504110304,57.73193599308404,17.141500511495565,17.89451637011171,11.38133058396531,11.31458852751146,0.5913634546181528,0.8169418521177315,0.7160334835801674,0.5806451612903226,0.1103581800580832,0.7580751483190508,0.9120135363790186,0.868995633187773,0.7261410788381742,0.1674008810572687,0.5187948350071736,0.7468827930174564,0.6520547945205479,0.5358056265984654,0.0942928039702233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002805773613573,0.0054843680304934,0.0079555947923325,0.0105042870494534,0.0131095855580981,0.0159573926414729,0.0187802043188352,0.0213973620809342,0.0239823352620065,0.0265342683114091,0.0293294514439193,0.0318503383200024,0.0341171994694251,0.0365990584987484,0.0391466787763695,0.0415585489656883,0.0441721730844915,0.0464978789167435,0.0489883296787803,0.0515431713107584,0.0685916433610218,0.0849154297549188,0.100132083778854,0.114843848514144,0.1289540789445954,0.1470510530821013,0.1611087555649777,0.1751212353241449,0.1878481931311234,0.1998178408786498,0.2135951596580755,0.2266383954650684,0.23939005024907,0.251320870297647,0.2623091571543364,0.2744248415266634,0.284370291836393,0.2929496338129577,0.3017399786756198,0.3098662513741297,0.3163567397539087,0.3231580424158814,0.3298977611587069,0.335502972765631,0.3405956474719613,0.346165231763574,0.3510442375875418,0.3544319934728012,0.3587245579669724,0.3619315703921024,0.3595973479948253,0.3556332214211019,0.3526129654939202,0.3492933705573476,0.3471123535359543,0.3435884851923991,0.3398084424851733,0.3387600723565203,0.3395596493631009,0.3404369339597363,0.3420993397358943,0.341905514923898,0.342306965414418,0.34300241913807,0.3440507489326805,0.3459145799571331,0.3484532548773172,0.3526080664443465,0.3573832562053008,0.3615989827545101,0.3657056837879756,0.3664410934086428,0.3708899327155008,0.3743487588109102,0.3817752596789424,0.3860442962610145,0.3853168469860896,0.3841784989858012,0.3841059602649007,0.3881939014855355,0.0,2.9419170915809727,66.0829516048325,184.7594505386188,256.079978826514,APP_public_implementation,41 +100000,95683,52888,501.8655351525349,6371,65.14218826750833,5136,53.05017610233792,1953,19.96174869099004,77.34192318165195,79.71863454178973,63.32298576779221,65.07566508973053,77.09857297202285,79.47683650894541,63.23086022236289,64.9868439832398,0.2433502096290993,241.798032844315,0.0921255454293188,88.82110649074093,232.94172,163.0562744923299,243450.83243627395,170412.37413318112,428.15561,276.9276965620047,446826.64632170816,288776.7656653508,496.77753,241.20704522013423,514856.0663858784,248734.7583787765,3606.72514,1674.4785507258073,3726034.060386903,1706856.1055521632,1189.69548,537.3840324346387,1228703.5314528183,547000.386766635,1902.60122,805.8295871794506,1946712.2686370616,805657.4185541224,0.43113,100000,0,1058826,11065.946928921545,0,0.0,0,0.0,35475,370.08664026002526,0,0.0,44905,465.21325627331913,1209097,0,43461,0,0,20578,0,0,96,0.9824106685618136,0,0.0,0,0.0,0,0.0,0.06371,0.147774453181175,0.3065452833150212,0.01953,0.3525621816002397,0.6474378183997602,23.66012497908812,4.081028491990246,0.3134735202492212,0.2757009345794392,0.204828660436137,0.2059968847352025,11.28559888616047,6.121562217000695,20.78308548416737,13771.52125016612,58.829331061316026,17.380429422225454,18.22562224194249,11.798557025484914,11.42472237166315,0.5794392523364486,0.7888418079096046,0.6931677018633541,0.5888468809073724,0.1140684410646387,0.7585078534031413,0.9230769230769232,0.8552631578947368,0.7338709677419355,0.1548672566371681,0.5036031042128604,0.6907090464547677,0.6291161178509532,0.5444444444444444,0.1029055690072639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027945688162571,0.005503694468939,0.0079836067236779,0.0106344079468584,0.0133322485838935,0.0158213027631284,0.0186061211589829,0.0211471107798188,0.0235490204098327,0.0259355961705831,0.0283813019717212,0.0307554861831363,0.0333967600925687,0.0356605601005625,0.0379549536530481,0.0405869335925382,0.0426860848128275,0.04504691522046,0.0473783823131798,0.0499228909636545,0.0668087239909751,0.0833708547554475,0.099372297098711,0.1146164369146585,0.1285376611865014,0.1470255167377522,0.1616685073485685,0.1751137344314343,0.1876022366437514,0.1985571193919288,0.2138551293526436,0.2274086270771497,0.2397905303154021,0.2513024253567988,0.261937529589219,0.2734183667815468,0.283902232048147,0.2927757510246363,0.3014729245154555,0.3095033510912527,0.3172163122619778,0.3241917737668844,0.33094504973946,0.3364802130441562,0.3414432488297161,0.3461362935553499,0.3512693917445678,0.3552680174730327,0.3585798970075104,0.3632398424489148,0.3606322808817375,0.357542130760631,0.3541092891544143,0.3519678319857673,0.3499116384751325,0.3460049278423091,0.342205563726653,0.3413364426124513,0.3411523337322619,0.3414864768429315,0.3416621401412276,0.342362485160269,0.3440067057837385,0.3447225829564282,0.3446676599221416,0.3468193053206713,0.3470860682522092,0.3514505253253881,0.3562146300565919,0.3613186291948298,0.365515058334087,0.3709004489041457,0.3743463743463743,0.3753306628372761,0.3804905343653828,0.3863583274935763,0.3864799759108702,0.390472393860873,0.3886165577342048,0.3934181002243829,0.0,2.4026618778471565,67.03495926171325,187.8131437906112,265.80038245137587,APP_public_implementation,42 +100000,95719,52715,499.2948108525998,6300,64.22967226987328,5040,51.86013226214232,1934,19.713954387321223,77.32392886815877,79.68766845692338,63.31606620966248,65.06494723850393,77.08037107175095,79.44813408882113,63.22440306319231,64.97743014525832,0.2435577964078277,239.53436810224105,0.091663146470168,87.51709324560863,231.5291,162.05931631732307,241884.16092938703,169307.3645956634,421.43619,273.3525877403428,439485.347736604,284779.4847884658,491.07611,239.1643890739705,507565.6557214346,245632.47124963487,3530.94345,1648.8160876934996,3640138.143942164,1673884.5591806914,1179.36651,531.7907730581343,1214519.1341321997,538086.5436252782,1870.93448,795.3270782829793,1910837.6602346448,795005.9485319393,0.4306,100000,0,1052405,10994.734587699411,0,0.0,0,0.0,35046,365.3088728465613,0,0.0,44343,457.9132669584931,1219618,0,43827,0,0,20274,0,0,81,0.8357797302520921,0,0.0,0,0.0,0,0.0,0.063,0.1463074779377612,0.3069841269841269,0.01934,0.3546820458339657,0.6453179541660343,23.51793398796115,4.037513215004278,0.3125,0.2837301587301587,0.2031746031746031,0.2005952380952381,11.279688099759204,6.195324310383711,20.805155736360323,13724.905128576476,57.92962364088752,17.66639019048522,17.840360941244096,11.26936096862241,11.153511540535796,0.582936507936508,0.8076923076923077,0.6895238095238095,0.5816023738872403,0.1064453125,0.7534976682211859,0.9323432343234324,0.8491879350348028,0.6980392156862745,0.1052631578947368,0.5105962136196666,0.7160194174757282,0.6293706293706294,0.5423280423280423,0.1067484662576687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025930090046289,0.0052215879710835,0.0080378346560578,0.0105570119287122,0.0130101314236888,0.0157026476578411,0.0182187060334808,0.0207620933579674,0.0234027543477594,0.0259854612470564,0.0286352871218101,0.0314277500564693,0.0340807451500478,0.0366070968738734,0.0392425962232999,0.041531432824096,0.0437295438538343,0.0459362123901153,0.0481751065820942,0.0503818225384687,0.067838015597106,0.0841214378373854,0.0995040005033398,0.1137854889589905,0.127631079428017,0.1456603374411593,0.1599571325495522,0.1734741684058094,0.1857133700807589,0.1977462312096584,0.2128752314914509,0.2267216111273348,0.2387869825702138,0.25039912520503,0.2605042016806723,0.2712613380882239,0.2816039999553576,0.2910781213069365,0.2996355047861287,0.307162107919032,0.3146804515635504,0.3213457076566125,0.3284120151315711,0.3337454981992797,0.3397083171016751,0.3447986370033828,0.3490492675095324,0.3532524835176046,0.3571391491681158,0.3605919930167043,0.358273614316369,0.3556919258084534,0.3530408506191841,0.3514132151187216,0.3487070313081538,0.3450146335483673,0.3420198533951838,0.3431206814488995,0.3428571428571428,0.3438470600835386,0.3446099091505104,0.3440003164494373,0.3446108725254006,0.3449956406071852,0.3467022529995912,0.3471606612087396,0.3478545413157295,0.3529337579216193,0.3578311977125913,0.3620113066326937,0.3651698199224983,0.3673913043478261,0.3732168667127505,0.3779330245272989,0.3805752003771805,0.3796219236713827,0.3806500377928949,0.3834779179810725,0.3953797132235794,0.4096567333081856,0.0,3.011487435611375,64.90972045389695,185.38622328519887,262.9268147081751,APP_public_implementation,43 +100000,95785,53144,502.08278958083207,6397,65.39646082371979,5101,52.57608184997651,1961,20.024012110455708,77.4066300966336,79.74479454582757,63.35719594835807,65.08740339957525,77.16443192763582,79.50775873228966,63.26618676831534,65.00168519895865,0.2421981689977883,237.0358135379149,0.0910091800427252,85.71820061659707,232.29162,162.55479178219895,242513.56684240748,169707.98327733876,423.28952,274.23823221538765,441252.4194811296,285642.1592267972,495.27429,239.99054543258288,512975.40324685496,247390.75231075383,3591.16137,1666.0084352715876,3702326.5855822936,1692457.6763288465,1157.51936,522.7354604186627,1189027.3633658714,526309.9237027322,1909.74318,803.2285542155201,1951395.0200970925,800713.9287839343,0.43377,100000,0,1055871,11023.343947382158,0,0.0,0,0.0,35018,364.8901184945451,0,0.0,44734,462.9326094900037,1220035,0,43897,0,0,20898,0,0,93,0.9709244662525448,0,0.0,0,0.0,0,0.0,0.06397,0.1474744680360559,0.3065499452868532,0.01961,0.351173568545373,0.648826431454627,23.972756868482534,4.095565137062504,0.3154283473828661,0.2699470692021172,0.2085865516565379,0.2060380317584787,11.398166458874528,6.201632447894121,20.73450736718557,13844.532404952892,58.66039561769443,16.92196031579319,18.56412261379574,11.636936815214648,11.53737587289085,0.5751813369927465,0.7785039941902687,0.704164077066501,0.5861084681255947,0.106203007518797,0.7685185185185185,0.9059233449477352,0.8755364806866953,0.7803921568627451,0.1612903225806451,0.4937308442463081,0.6874221668742216,0.6342957130358705,0.5238693467336684,0.0920897284533648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027154639593085,0.0055362900772647,0.0082503729412122,0.0112270505877691,0.0140356587097364,0.0165984399503065,0.0193919373585367,0.0219772367682335,0.0247148288973384,0.0269659011830201,0.0294856158978405,0.0319025581562394,0.0346472069479418,0.0369474356070744,0.0393781956127329,0.0415315668821379,0.0440926960480033,0.0467956293670046,0.0492665087478701,0.0516298972399504,0.0692022747430479,0.0860803179251202,0.1026823618201067,0.1174826056796922,0.1317858046025457,0.149489057265743,0.1635519467441195,0.1769121978711413,0.1891006487963121,0.2004777871811627,0.2154647384165106,0.2286106665513214,0.2411776852767604,0.2522307045422277,0.262835232204265,0.2740079233339973,0.2843408431853669,0.2926832010433297,0.3018236668405652,0.3102433775213499,0.3171845906530815,0.3235538204387923,0.3296062284064556,0.3350304889006026,0.3401071337471303,0.3447510815841047,0.3499780880235397,0.3549216205211726,0.3596963887881457,0.3625897760878749,0.3612762343806866,0.3585991382277226,0.35622771286417,0.3532608695652174,0.3510519829544611,0.3477542781116667,0.3436355022109917,0.3432479303687706,0.3437983113330955,0.3430087113886769,0.3425846429504647,0.3437641366559801,0.3441225510629428,0.3448030269307812,0.3453897826970428,0.3462156141532404,0.3475269669601653,0.3541751209614484,0.3581272023165753,0.36156210592686,0.3660334690185436,0.3707196291223264,0.3740706029365823,0.3789624275280476,0.3823066234367763,0.3910712204219606,0.3979280926264473,0.3958874026751847,0.3949027130720745,0.3976317799847211,0.0,2.6121596600647403,66.06141493395826,194.59663000879155,257.1642830379068,APP_public_implementation,44 +100000,95667,52999,502.4093992703858,6250,63.74193818140007,4957,51.01027522552186,1892,19.222929536830883,77.29491858535671,79.69846170591026,63.29396199958445,65.07455164568678,77.04968975231154,79.45923933721838,63.200126971000095,64.98704147451033,0.245228833045175,239.222368691884,0.0938350285843583,87.51017117644722,231.77748,162.21431611376815,242275.2673335633,169561.4121000639,423.92276,274.9066755603113,442318.584255804,286564.10623605514,490.3755,237.7029631463637,507875.589283661,244910.42281530672,3425.95402,1609.897393793306,3522625.8375406354,1625270.4264863958,1146.16282,523.5779359938595,1175928.2929327772,525905.7304894212,1834.35936,788.0371458466572,1865130.0866547504,778067.0176696322,0.43184,100000,0,1053534,11012.512151525603,0,0.0,0,0.0,35247,367.58756938129136,0,0.0,44305,458.4234898136243,1217583,0,43750,0,0,20570,0,0,83,0.8571398705927854,0,0.0,1,0.0104529252511315,0,0.0,0.0625,0.1447295294553538,0.30272,0.01892,0.3577770973668095,0.6422229026331905,23.61837263641185,4.083112078331839,0.3149082106112568,0.2773855154327214,0.1995158361912447,0.208190437764777,11.40654214640682,6.163165199395375,20.374827363081916,13754.135081334573,57.26099210835248,16.841295144750568,18.047865644103943,11.58171143212806,10.790119887369896,0.593100665725237,0.8109090909090909,0.7174887892376681,0.5591085271317829,0.1294236602628918,0.747843397478434,0.9193548387096774,0.8586956521739131,0.6988416988416989,0.1652173913043478,0.5255072463768116,0.7368421052631579,0.6584922797456857,0.5122897800776197,0.1185770750988142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027370320435492,0.0054187342080428,0.0080536231148123,0.0107772863606324,0.0132027647424086,0.0159000336346865,0.0184599371402914,0.0210968308779959,0.0238265744567663,0.0265832121125202,0.0290201468959008,0.031354016848161,0.0342059767843912,0.0366297346044833,0.0390094349361025,0.0413676132955509,0.0436909301939976,0.046121419152537,0.0483572275744397,0.0504842021869885,0.0671402454949072,0.0834301869012093,0.0989609571788413,0.1140809647581264,0.1287616595618959,0.1460167626142905,0.1602670941305109,0.1731023172601806,0.18608528374479,0.1981069305230623,0.2119106111542108,0.2265088142673174,0.2385214346303586,0.2501940633029027,0.2604615858488075,0.2718301435406698,0.282361475364098,0.291419951820249,0.3000511160333958,0.3083681240537688,0.315673621650428,0.3225874445238123,0.3285722745307041,0.3340373445975135,0.3393849483808991,0.3448995468184681,0.349748076103577,0.353648287278747,0.3580398757120663,0.3606438419420806,0.3588014376287202,0.3558296549922308,0.3527381824328131,0.3512849420402971,0.3493882769180454,0.3456706802668916,0.3417978669375317,0.3419143651407234,0.3423497407996715,0.3424348697394789,0.3436025638615815,0.3449472515269295,0.3465109439986556,0.3483669946874089,0.3502392113275021,0.353435194390665,0.3541779901021255,0.3591216003028964,0.3635596498013431,0.3672552294599538,0.3710732086515158,0.3767723434761829,0.3827354400954953,0.3881368821292775,0.3894439208294062,0.3935637663885578,0.3955758962623951,0.3967479674796748,0.4050736497545008,0.4084930477264186,0.0,3.037398349915401,65.57358556606928,186.6733420079244,248.46384499826328,APP_public_implementation,45 +100000,95716,53152,503.3850139997493,6412,65.60031760625183,5064,52.2692130887208,1912,19.56830623929124,77.3593554540744,79.72907030398521,63.33143217950936,65.08334993751765,77.11255213258971,79.48397686047922,63.23931515396671,64.99392152029144,0.2468033214846912,245.0934435059935,0.092117025542656,89.42841722621608,232.9437,163.0215293352613,243369.4262192319,170317.7468457135,427.30301,277.10463685042987,445818.1808684024,288898.65534531407,500.38317,242.64155346597093,518651.8554891554,250316.59401848837,3547.80009,1654.252802279041,3666391.9093986377,1688178.1192944297,1156.42381,525.1859227420152,1193184.4101299678,533727.281059509,1852.85006,790.0024488731101,1898818.8181704208,795965.3906349188,0.43275,100000,0,1058835,11062.246646328724,0,0.0,0,0.0,35398,369.1545823059886,0,0.0,45162,467.6543106690627,1210620,0,43490,0,0,20885,0,0,89,0.919386518450416,0,0.0,0,0.0,0,0.0,0.06412,0.1481686886192952,0.2981908920773549,0.01912,0.344115004492363,0.655884995507637,23.88201176567558,4.070595696927981,0.3157582938388625,0.2652053712480253,0.1988546603475513,0.2201816745655608,11.251021026973246,6.192708409544552,20.502359996015997,13864.35643553958,58.13953946059287,16.5685502209671,18.18706814864965,12.394404969389276,10.989516121586837,0.5868878357030016,0.8227848101265823,0.6823014383989994,0.5883408071748879,0.1191658391261171,0.7657894736842106,0.925925925925926,0.8484848484848485,0.7794117647058824,0.1598173515981735,0.510158013544018,0.7474226804123711,0.6147757255936676,0.5266903914590747,0.1078680203045685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025928776890977,0.0050381663912739,0.0075801394258577,0.0102069834047652,0.012954658694569,0.0154947214106101,0.0179927621183546,0.0209256272584366,0.0235018707448222,0.0260345215913511,0.0286215312673052,0.0313174058628977,0.0337671690930603,0.0364833398586412,0.0387072141331379,0.0412247513903533,0.0436277047313386,0.0459274164272452,0.0485170438597403,0.0510494245091401,0.0685824074847548,0.0851186302316089,0.101190538626947,0.1164632030535314,0.1309959403173933,0.1492024202420242,0.1631366723259762,0.1776661095082456,0.1897469328431582,0.2016119511907189,0.2152425290700807,0.2292668139101814,0.242130460801915,0.2532505910165484,0.2643193160660578,0.27508679303881,0.2855419398800281,0.2956353448178861,0.3041588159179133,0.3121146838402127,0.3188625526595991,0.3257704227822934,0.3312562077283261,0.3369291923086133,0.3434314011069035,0.3480375857440179,0.3521962207483419,0.3555843759536161,0.3589770138745082,0.3628932310207526,0.360390396042266,0.3584075662597603,0.355920053972002,0.3531597977498956,0.3506306787021803,0.3466713502451242,0.3426479637723464,0.342835168791216,0.3434763348894265,0.344128690143602,0.3456730049408594,0.3462730773027939,0.3478160533713758,0.3482725377216779,0.3491165567377594,0.3493297167596891,0.349607871096535,0.3555303316937823,0.3598438214499279,0.3651379789557276,0.3705141083006118,0.3745334328676549,0.3788918541110687,0.3801325512302887,0.3818779342723005,0.3860333215171925,0.3886429552740039,0.396097364715349,0.3990712919967222,0.3946768060836502,0.0,2.402869124190066,66.58258933884058,190.34530158452168,254.3848612790888,APP_public_implementation,46 +100000,95880,53247,504.03629536921153,6252,63.8715060492282,4963,51.08468919482687,1852,18.97163120567376,77.4394230829848,79.71764064930964,63.39129033748679,65.07655541306107,77.20392522841261,79.4835698265474,63.30268567857698,64.99093163359025,0.2354978545721877,234.07082276224853,0.0886046589098086,85.62377947082211,233.41054,163.34460531965266,243440.2795160617,170363.5850225831,423.50345,274.71105580959926,441038.3395911556,285852.2797346676,494.32704,240.78661866470603,510002.8890279516,247082.55464016748,3505.11595,1638.7160809473205,3613708.614935336,1667492.64169941,1165.87159,528.1256023921145,1201087.8285356697,536072.0226301104,1802.40196,767.091096015356,1848419.5035460996,773412.8401293152,0.43369,100000,0,1060957,11065.46725073008,0,0.0,0,0.0,35141,365.8114309553609,0,0.0,44667,460.5652899457656,1213781,0,43673,0,0,20898,0,0,71,0.7092198581560284,0,0.0,0,0.0,0,0.0,0.06252,0.1441582697318361,0.2962252079334613,0.01852,0.3523634131368938,0.6476365868631062,23.62949723900446,4.079182501585391,0.312109611122305,0.2706024581906105,0.2035059439854926,0.2137819867015918,11.302047444624812,6.201852254984414,19.942216332533416,13732.889033352116,57.09208197367177,16.479126343373398,17.703936048182136,11.88455085050749,11.024468731608742,0.5962119685673988,0.8190618019359642,0.7049709489993544,0.6163996229971724,0.1118811881188118,0.7509829619921363,0.9169675090252708,0.8660907127429806,0.7335640138408305,0.1136363636363636,0.5274949083503055,0.7503168567807351,0.6362799263351749,0.572538860103627,0.1113924050632911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024701356549908,0.0051582958368802,0.0077907059312835,0.0105494014560001,0.0132436195838881,0.0157912944384526,0.0185790679908327,0.0210120462265017,0.0236813338373364,0.0264022013768834,0.0287204393622689,0.0310281140980915,0.033120272936534,0.0358341397129974,0.0383215629671632,0.0407265517704278,0.0431840754841913,0.0454780950802006,0.0481099656357388,0.050320942958501,0.0669217057738213,0.0839358856474128,0.0995350493224705,0.1145071028842014,0.1288003200269496,0.1464514221762358,0.1600694849008039,0.1735097226649665,0.186002132196162,0.1969455354945043,0.2114559704140103,0.2255129715069855,0.2382349107026463,0.2499836090652796,0.2611200914898998,0.2716918479163208,0.2822507830700806,0.291869361525239,0.3012098692706799,0.3094984967477165,0.3170021828765462,0.32369665479596,0.3300200921876847,0.3346461405860946,0.3399247390143238,0.3452225533906446,0.3493451420422561,0.3533127438644654,0.3574079582045545,0.3612991597081368,0.3589595297978507,0.3556605457966516,0.3540319406174436,0.3514442022604905,0.3488734295504101,0.3454445361959812,0.3426249466377852,0.3420367245982735,0.3423646160141863,0.3428021870380594,0.3432032301480484,0.3431561933296538,0.3433141234444166,0.3441558441558441,0.3457535685300997,0.3482082663485972,0.3486098553345388,0.3532855808159452,0.3586032142733173,0.3634541309645468,0.3658778453910299,0.3661674752161991,0.3694251579408269,0.3720488878767175,0.3740235294117647,0.3742142094650694,0.3790980452516546,0.3777732546305719,0.3753454947484798,0.3775009437523594,0.0,2.6480010127994285,66.62107914901898,182.7948075680169,248.70480938896011,APP_public_implementation,47 +100000,95734,53199,503.25903022959454,6389,65.36862556667433,5073,52.37428708713728,1862,19.04234650176531,77.34647984393533,79.69746923284531,63.33814763576003,65.07482240582692,77.1045720465292,79.45937014355223,63.24634092410548,64.9876324650211,0.2419077974061281,238.09908929307252,0.0918067116545557,87.18994080582831,231.79926,162.23852076893866,242128.46010821653,169468.0267918803,425.16587,275.12330355549994,443498.0571165939,286769.4482164121,495.25976,239.767642059389,513460.8707460254,247513.8567169772,3571.74896,1664.539121134735,3687233.9816575097,1695037.0204261132,1191.97647,541.6347615972702,1224772.1185785616,545480.129143688,1819.40416,780.617343065049,1861032.44406376,779830.8483983702,0.43191,100000,0,1053633,11005.839095828023,0,0.0,0,0.0,35246,367.5287776547517,0,0.0,44688,462.91808552865234,1218379,0,43857,0,0,20539,0,0,73,0.7625295088474314,0,0.0,2,0.0208912194204775,0,0.0,0.06389,0.1479243360885369,0.2914384097667866,0.01862,0.3567899386135649,0.6432100613864351,23.75544206402981,4.1403078873750685,0.3106643012024443,0.2741967277744924,0.2061896313818253,0.2089493396412379,11.342639712752293,6.005696334354005,20.024518718626005,13804.32750890335,58.36604438067235,17.180726689515282,17.766470176055748,11.956489201237734,11.462358313863582,0.5777646363098758,0.803019410496046,0.6802030456852792,0.5773584905660377,0.124282982791587,0.7538054268696228,0.9368600682593856,0.864321608040201,0.7044673539518901,0.173728813559322,0.5030881527231892,0.7055900621118012,0.6179966044142614,0.52925877763329,0.1098765432098765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002582540004051,0.0054131314052854,0.0080474117372464,0.0106153877410048,0.0133931295381048,0.0161060433295324,0.0186850152905198,0.0215046081303136,0.0238983553270435,0.0264965753074032,0.029254092395371,0.0319017901133191,0.0343189669353512,0.0369363244958078,0.0394040384238384,0.0418527247167783,0.0443151344467338,0.046823609972713,0.04912886190694,0.051384346159455,0.0689712776287077,0.0843721543630483,0.0998090481786134,0.1150452714710862,0.1287798911897431,0.1459626344114444,0.1607595608126027,0.1737145168328845,0.1863628598274536,0.197808912281454,0.212742131728274,0.2263144801029734,0.2392360620455015,0.2507241149402673,0.2619277956114507,0.2730010407209761,0.2833307309674109,0.2930165586753059,0.3027283457417832,0.3107327803492049,0.3174880523958852,0.3250593643626665,0.3319124751349815,0.3368674814397255,0.342313113638573,0.3464603786600312,0.3517294889122491,0.3557448650851256,0.3604331474516924,0.3644361081023961,0.3613619820451298,0.3576129760691763,0.3555965837021169,0.3520770376368184,0.3502527505203687,0.3450919069738919,0.3420269671456605,0.341618269514716,0.3413174676445949,0.3420146016672319,0.3423384603855593,0.342941246197005,0.3442705492384509,0.347217870092663,0.3476189330317395,0.3484444444444444,0.3498885523232554,0.3554199817604327,0.3598834556113315,0.3635787806809184,0.3663537774537501,0.3690368558208796,0.3738294261831437,0.3743797236430262,0.3769470404984423,0.3786326822296331,0.3835889570552147,0.386859824525607,0.3904090267983074,0.3882306477093207,0.0,2.403431585991405,66.39027623418274,188.98554245085617,260.39639347363766,APP_public_implementation,48 +100000,95711,52931,501.6142345184984,6428,65.60374460615812,5140,52.815245896500926,1930,19.6215690986407,77.41222784566315,79.76689851954296,63.350809200748486,65.08908977505062,77.165773232246,79.5271773976484,63.25812568188434,65.00239404689785,0.246454613417157,239.7211218945614,0.0926835188641419,86.69572815277604,232.71138,162.77431971944375,243138.2599701184,170067.28050848903,424.37591,274.5697991222654,442488.7212546103,285970.8471000732,496.51861,240.41139482223144,512395.3359592941,246384.4642033466,3575.78808,1670.6803394847354,3672279.2573476406,1682039.3468777954,1181.29155,539.8561009155663,1208997.8790316682,539079.7995251378,1878.1283,798.7463522921116,1909850.9053295855,790167.7200213027,0.43117,100000,0,1057779,11051.739089550836,0,0.0,0,0.0,35281,367.67978602250525,0,0.0,44879,462.6636436773203,1215178,0,43635,0,0,20790,0,0,71,0.731368390258173,0,0.0,1,0.010448119860831,0,0.0,0.06428,0.1490827283901941,0.3002489110143124,0.0193,0.3571005917159763,0.6428994082840237,23.916507827952955,4.0464641820125005,0.3142023346303502,0.2776264591439689,0.2038910505836575,0.2042801556420233,11.455304068191015,6.299353047253935,20.530909295650787,13811.03005193146,58.9722097245152,17.46368484698988,18.3055937848772,11.71144973548662,11.491481357161508,0.5863813229571985,0.8023826208829713,0.708359133126935,0.5847619047619048,0.1059160305343511,0.7567385444743935,0.9194395796847636,0.8744186046511628,0.7619047619047619,0.1298701298701298,0.5172319474835886,0.7242990654205608,0.6481012658227848,0.5288220551378446,0.0991432068543451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027547093376544,0.0055440125677798,0.0081057501115935,0.0110183605491916,0.0139285677975579,0.0164198096401486,0.0192123448233687,0.0218360662428701,0.0242307181326711,0.0268372569089048,0.029412970402558,0.032017327749035,0.0346146333439565,0.0370530565167243,0.0392719318158367,0.041790273399142,0.0439968936060056,0.0462303007667009,0.0483557385400746,0.0504724302813746,0.0679661317770376,0.0845384341711487,0.100402828189581,0.114676148497249,0.1291956400164607,0.1477554130420979,0.1621400749302172,0.1754320580123734,0.1876416021886889,0.1995084201826787,0.2139414523693999,0.2275336264593125,0.2407020294399442,0.2517548374379921,0.2619144692620467,0.2719869526144697,0.2829849077697037,0.2924130782577345,0.3016163291268642,0.3105741774938935,0.3172788453741993,0.3240940162936604,0.3307134148506764,0.3356656762196875,0.3408963925665006,0.3465461174615687,0.3511290040259058,0.3553811374431659,0.3588074200382369,0.3622071070531121,0.3600252291423433,0.3582447720260541,0.3554279456363023,0.3525362214477057,0.3504153486859609,0.3475785210785134,0.3442651342202629,0.3445474123866083,0.3442436389577742,0.344926713276786,0.3454866927228736,0.3451749734888653,0.346608808128012,0.3459220213073553,0.346651026954565,0.3467842323651452,0.347936975742462,0.3532756412259052,0.3570256589282597,0.3591774021983217,0.364671849575122,0.3677177415095336,0.3712140175219023,0.3734148550724637,0.3738395841069439,0.3748973607038123,0.3792274162032166,0.3802424965215663,0.3819068255687974,0.3785930408472012,0.0,3.3440823094203025,64.08353087787806,196.76762655709732,263.886844075341,APP_public_implementation,49 +100000,95717,53033,502.5230627788167,6346,64.83696730988225,4993,51.45376474398487,1921,19.59944419486612,77.32373385663094,79.69470341318613,63.321321634088775,65.07544603862377,77.07506279794596,79.45085711080863,63.22620796852788,64.98569313216574,0.2486710586849767,243.8463023775057,0.0951136655608948,89.75290645803113,233.55332,163.4224714496372,244003.781982302,170734.84403144382,426.51033,276.2553802905612,444867.6097245004,287890.11012965423,486.12612,235.3928780944329,503813.5231985959,242700.96698802165,3517.37185,1638.5494526474415,3625202.5136600607,1662413.310586907,1144.81647,522.8613116970503,1178013.4876772151,528390.5899320329,1867.20426,803.2569387847664,1906725.9525476145,799502.909025805,0.43389,100000,0,1061606,11091.080999195545,0,0.0,0,0.0,35352,368.5865624706165,0,0.0,43979,455.43633837249394,1210172,0,43553,0,0,20710,0,0,78,0.8149022639656488,0,0.0,0,0.0,0,0.0,0.06346,0.1462582682246652,0.3027103687362117,0.01921,0.3486871717929482,0.6513128282070517,24.164377585164235,4.139340390548171,0.3016222711796515,0.2775886240737031,0.2014820749048668,0.2193070298417785,11.083262856589196,5.79778076649834,20.72978154701379,13745.884086079694,57.39057000559428,16.787128440480842,17.360035509531873,12.136690077221706,11.106715978359864,0.5776086521129581,0.7763347763347763,0.7058432934926959,0.5662100456621004,0.1242544731610338,0.7243986254295532,0.9049429657794676,0.8408071748878924,0.6525096525096525,0.1517857142857142,0.5172413793103449,0.6976744186046512,0.6490566037735849,0.5394736842105263,0.1163682864450127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027659574468085,0.0055472735201354,0.0083130328867235,0.0110460744263561,0.0137046231482988,0.0162169320253847,0.0186737649410516,0.0212229223902852,0.0237849334819465,0.0260228378309181,0.0286531775902205,0.0311081441922563,0.0334242065737359,0.0361699058139774,0.0385520530129435,0.0406798234278566,0.0430536280216252,0.0454550170676793,0.0480295310387854,0.0504355800091701,0.0682079234801495,0.0843015344679603,0.0998562690810663,0.1151147254689489,0.1290999599232213,0.147517580500185,0.16228805466545,0.1753956512947136,0.1877557124696884,0.199191351536861,0.2141418710087336,0.2281117458668744,0.2409135399673735,0.2524768715963519,0.2630965086979963,0.2738832338313968,0.2836015658982166,0.2930017195068499,0.3022514603300629,0.3099489503926012,0.3170331321819148,0.3225817765203769,0.3292134831460674,0.334415895690523,0.3394431892719189,0.3436883629191321,0.3479230065997921,0.3511286049118516,0.3546194947346578,0.3591385639210922,0.3557556235427308,0.353098430459287,0.3507970094512625,0.3485570309445546,0.3460095853302771,0.3429167241670117,0.3401861171778558,0.3405033799304325,0.3404262580413972,0.3404744916161256,0.3411557421604094,0.3417603737725689,0.3434222418395443,0.3436931983932859,0.3440457794089241,0.3463261296660118,0.3490065655552051,0.354205577891038,0.3601272534464475,0.3638182909745847,0.3693395793147791,0.3701162977651535,0.3747305692912387,0.3777282508453735,0.381835294117647,0.3854476281060516,0.3915022761760243,0.4003619545545948,0.3992942453854506,0.4028941355674029,0.0,2.689963945997934,63.27696508361781,190.519889992984,256.8081464033377,APP_public_implementation,50 +100000,95762,53401,504.9602138635367,6415,65.56880599820389,5162,53.14216495060671,1984,20.216787452225308,77.38153749659537,79.72309096258151,63.350937847410606,65.0828688782829,77.13065913548532,79.4765297441846,63.25549022646877,64.9922836614448,0.250878361110054,246.5612183969057,0.0954476209418331,90.58521683809316,232.02542,162.40306224467545,242293.6028904993,169590.06938522114,427.22054,277.0771124673991,445233.9236858044,288445.8161560943,499.42079,241.92022119488857,516763.6431987636,249027.96501631648,3639.19288,1692.1319399382123,3747659.6249034074,1714587.438284391,1210.13273,545.2532381967657,1242245.0345648588,548084.8404436655,1930.55248,821.2079124943459,1968414.339717216,816888.5924386746,0.43425,100000,0,1054661,11013.34558593179,0,0.0,0,0.0,35386,368.6326517825442,0,0.0,45165,466.8344437250684,1216883,0,43758,0,0,20568,0,0,85,0.8771746621833295,0,0.0,1,0.0104425555021824,0,0.0,0.06415,0.1477259643062752,0.3092751363990647,0.01984,0.3520392974099434,0.6479607025900566,23.53828657125824,4.128317133366795,0.3126695079426579,0.2735373886090662,0.2051530414567997,0.2086400619914761,11.2416506571055,5.97747208734896,21.231507817899963,13854.832400893622,59.214966770539256,17.166268545592434,18.55096398289292,11.94413537666154,11.553598865392352,0.5825261526540101,0.806657223796034,0.6988847583643123,0.5719591457753017,0.1170915958451369,0.7283621837549934,0.9230769230769232,0.8168421052631579,0.7049180327868853,0.1265822784810126,0.5226775956284153,0.733256351039261,0.6496927129060579,0.5330132052821128,0.1143552311435523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026534870060159,0.0055547671660551,0.0084919443204415,0.0112935823608868,0.0142342965207312,0.0167553976607591,0.019295062584091,0.0219028761558717,0.0246175541862104,0.0272067776493098,0.0299431265050981,0.0324673325053119,0.034742643278702,0.0372933012087889,0.0399690562145435,0.0423834764369775,0.0447047622989837,0.0470943130222047,0.0493351340120506,0.0516429969597267,0.0687218876864153,0.085815588001506,0.1013933592644237,0.1165034259531716,0.1303614711771525,0.1486413646596277,0.1633369015696707,0.1772567783094099,0.1905885115375584,0.20152861599151,0.2153069353831578,0.2286864053828928,0.2411993650931704,0.2523584132224177,0.2627241720761359,0.2736716206339011,0.2838752858497406,0.2928859000022492,0.3019717734616082,0.3104746860799194,0.3171442784918495,0.3240041168627634,0.3306345655338944,0.3364813039309683,0.3420227885619883,0.3467594874322326,0.3509498142891087,0.3555623417439656,0.3604179885273285,0.3634456830024404,0.361900018844052,0.3585429935210531,0.3557396916659621,0.3527251698713315,0.3499144917837757,0.3462309941968182,0.3425770750988142,0.3422302276076633,0.3419726176690961,0.3419970448436081,0.3430441286462229,0.3436908143939394,0.3453396921017403,0.3447111190641286,0.34660550899354,0.3477921062915201,0.3492844746649975,0.354391902478769,0.358721499510421,0.3625207822025176,0.3672162419948221,0.3701071390686326,0.3742664226667508,0.3777506112469437,0.3860592341067723,0.3827014218009478,0.386058572300183,0.3845687739850535,0.3920265780730897,0.3962191358024691,0.0,2.8147190664470134,65.35979207575082,195.64151321506756,265.78356346689645,APP_public_implementation,51 +100000,95857,52785,497.710130715545,6363,64.75270454948517,5068,52.26535359963279,1972,20.196751410955905,77.37299817448195,79.67387989228628,63.35320242165369,65.05669277855446,77.11458309647932,79.41638263489355,63.25488308596417,64.96106593619912,0.2584150780026277,257.4972573927284,0.0983193356895242,95.62684235534392,233.5806,163.47128017289037,243676.10085857057,170536.61200839825,426.94568,277.2797897857483,444788.7791188958,288654.2347306386,490.93547,238.0895918138292,508534.9844038516,245554.57393916303,3530.20837,1662.5131870824064,3641120.5963049126,1692702.4495680062,1175.31369,539.4939303224088,1208987.2831405115,545692.6417169607,1910.8562,828.6005756095481,1958053.120794517,834445.845489761,0.43203,100000,0,1061730,11076.1864026623,0,0.0,0,0.0,35420,368.851518407628,0,0.0,44582,461.4790782102507,1207889,0,43465,0,0,20806,0,0,88,0.91803415504345,0,0.0,2,0.0208644126146238,0,0.0,0.06363,0.1472814387889729,0.3099167059563099,0.01972,0.3583571536031292,0.6416428463968707,23.619078250649743,4.0590719924468885,0.3202446724546172,0.2756511444356748,0.2032359905288082,0.2008681925808997,11.293109738024032,6.226948932476104,21.295315211061887,13728.894385158184,58.45907652091539,17.215799816506653,18.53554528265996,11.327338592741718,11.380392829007068,0.5826756116811366,0.8246241947029349,0.6814540973505854,0.5648330058939096,0.116504854368932,0.7455242966751918,0.9258010118043845,0.8516949152542372,0.7047244094488189,0.1469387755102041,0.5099885844748858,0.75,0.6116420503909644,0.518324607329843,0.1070063694267516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306258861656,0.005442549180577,0.0079425458750494,0.0106614138050078,0.0134802675721285,0.0161746742671009,0.0186927318500096,0.0214105664921572,0.0239095116942034,0.0263470235537274,0.0290353977767532,0.0315799193573209,0.0340064744874364,0.0365307613920597,0.0392771357586878,0.0417101254711622,0.0440733728545268,0.0468482845092898,0.0495233545868034,0.0520412834491655,0.0693491543803307,0.0852168824519054,0.1003069444880941,0.1150934083820765,0.1290927281343794,0.1469755551329995,0.1611734034210135,0.1744738773036145,0.1870222487936114,0.198552977115601,0.2132261120440942,0.2269606306023809,0.2394698501750494,0.2505796911230695,0.2616746295603162,0.2724764542936288,0.281953125,0.2921267375766785,0.2997219227058623,0.3070621663114961,0.3139950699579905,0.3218416370106761,0.3277902142628717,0.3334851826987628,0.3386020969760293,0.3439718934911243,0.3471724587206534,0.3509325864154306,0.3550991317869638,0.3587480678019843,0.3565535093159328,0.354692904488266,0.3521822596126701,0.3493550301854559,0.346884436312791,0.344780556577173,0.3414255379837099,0.3408277221218591,0.341044610364093,0.3413278527388079,0.342076175131611,0.3429661402225692,0.3446253116292712,0.3436892770196323,0.3422543324852383,0.3442729615074304,0.3455645276343196,0.3513530522341095,0.3558370469139268,0.3614638971315529,0.3645291216002172,0.3690482495630528,0.3735986900113364,0.3770391828022564,0.3785011355034065,0.3845516915069789,0.3939067548853669,0.3978296478296478,0.3957115009746588,0.4028309104820199,0.0,2.2744204918822013,68.61628383513019,183.6285378661101,259.96071785193794,APP_public_implementation,52 +100000,95769,52743,500.5690776764924,6331,64.62425210663157,5022,51.61377898902568,1913,19.400849961887456,77.39816222968327,79.72764216979897,63.35848721039546,65.07962739159719,77.150928980118,79.48986254115303,63.26535482098516,64.99439080763217,0.2472332495652693,237.7796286459386,0.0931323894103002,85.23658396501332,233.47698,163.3133177958341,243791.81154653383,170528.37326883865,421.81888,273.2109746081288,439647.683488394,284474.39631627017,483.29317,234.27035700919555,500248.84879240673,241145.90173096012,3529.07568,1643.270174100665,3627027.942236005,1657909.014504345,1133.8457,515.854336859273,1161576.6166504817,516298.0985968276,1866.84358,791.6821967288349,1895616.807108772,779345.0999605778,0.43025,100000,0,1061259,11081.4459793879,0,0.0,0,0.0,35122,365.8803997118065,0,0.0,43783,452.7456692666729,1215609,0,43641,0,0,20443,0,0,57,0.5951821570654386,0,0.0,0,0.0,0,0.0,0.06331,0.1471470075537478,0.3021639551413678,0.01913,0.3628571428571429,0.6371428571428571,23.796631550054684,4.117407793993591,0.3162086818000796,0.2664277180406212,0.2096774193548387,0.2076861808044603,11.259593273758334,6.041485661745483,20.404800872612437,13634.4562408989,57.4972207747747,16.135098393273353,18.18487599124443,11.580535104004449,11.596711286252482,0.5698924731182796,0.7765321375186846,0.7040302267002518,0.5656759348034516,0.1092117758784425,0.7600545330606681,0.9213051823416508,0.874468085106383,0.732,0.1814159292035398,0.4914205344585091,0.6842105263157895,0.6323792486583184,0.5132408575031526,0.0894800483675937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024710862652164,0.005199043294957,0.0077811143123807,0.0103684296043545,0.012890763991257,0.0156940175463594,0.0182401793447801,0.0204974901032526,0.0227525822699455,0.0252302025782688,0.0275179542870022,0.0300458692060625,0.0325159805150761,0.0348607422960538,0.0372703466193785,0.0397422126745435,0.0420235878336437,0.0445481412350287,0.0468405736853045,0.049240254532957,0.066047482389773,0.0816484493488834,0.0977980497011638,0.1126807938109653,0.1268820378727173,0.1456362002431675,0.1593435736411083,0.1730402852429354,0.185250069434059,0.1965530554900152,0.2118058921742877,0.225187412784094,0.2370794575328175,0.2485140509593112,0.259367958230283,0.2704144303657389,0.2807878476946756,0.2901244981274672,0.2994384253219128,0.3072429906542056,0.3138529139685476,0.3201309328968903,0.3266342364094734,0.3320669694754377,0.3376796814296814,0.3431966506587858,0.3475047828642166,0.3505682829464263,0.3548817276693812,0.358875595245947,0.3569072081655737,0.3533829415567445,0.3504373424229193,0.3469081246570199,0.3442455167094353,0.3419366676350514,0.3392670819236728,0.3394364581113642,0.3396303761145082,0.3410950844224151,0.3415377709615276,0.3423840012647222,0.3442791067579163,0.3446453655599902,0.3464107044546042,0.3473446151446619,0.3498258234444475,0.3549224418313735,0.3578275874089309,0.3606072555205047,0.3654946852003271,0.3712824298671166,0.3766841317365269,0.3823529411764705,0.3849835757860159,0.3882535144150584,0.3908675799086758,0.3940558026688233,0.3995037220843672,0.4006069802731411,0.0,3.180301508231236,63.55416859462268,186.1337582560813,260.9317638813958,APP_public_implementation,53 +100000,95876,52955,501.97129625766615,6380,65.19879844799533,5050,52.07768367474655,1858,18.94113229588218,77.3584022892406,79.64103380970737,63.35300198276878,65.04183267354324,77.115618327227,79.40138848055967,63.26207251174144,64.9550955212529,0.242783962013604,239.64532914769163,0.0909294710273442,86.73715229033974,231.7249,162.21892445362545,241692.29004130332,169196.5919037355,425.74286,276.4656439004407,443437.1479828112,287738.9376908097,496.06712,240.86247766566183,513905.7949851892,248495.6276736845,3547.4741,1664.4130256203312,3656708.842671784,1692649.9808297483,1155.06648,526.3863702875891,1187681.557428345,531959.4687800802,1808.12892,774.6382714720179,1844022.8837248115,772054.9769572667,0.43253,100000,0,1053295,10986.013183695606,0,0.0,0,0.0,35242,366.94271767699945,0,0.0,44826,464.08903166590176,1216466,0,43790,0,0,20584,0,0,102,1.0534440318745044,0,0.0,0,0.0,0,0.0,0.0638,0.1475042193605067,0.2912225705329153,0.01858,0.3407595693779904,0.6592404306220095,23.762038879283388,4.075456308990483,0.3205940594059406,0.2677227722772277,0.1976237623762376,0.214059405940594,11.411691842055406,6.181444698784753,20.133621590415416,13748.531534795971,58.13415850193075,16.5377387574383,18.38329004588103,12.227189592508417,10.985940106103,0.5867326732673267,0.8047337278106509,0.6979617047560223,0.5892691951896393,0.1082164328657314,0.7715036112934996,0.9425087108013938,0.8468271334792122,0.7370242214532872,0.167487684729064,0.506946413382478,0.7030848329048843,0.6394148020654045,0.5353535353535354,0.0930817610062893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028146483208294,0.0054614909160916,0.0081244738363542,0.0107118561463716,0.0132750559056718,0.0159476485614549,0.0184400342312237,0.021204548931613,0.023564726422511,0.0259867714861121,0.0284991861762568,0.0308892579606733,0.0332350796471083,0.0356433810292862,0.0378301507641257,0.0402044293015332,0.0427127621057422,0.0448260851540151,0.0473356803854981,0.0494511782760235,0.0664108926374611,0.0825305610698986,0.0978059381054615,0.1130642976404246,0.1275082951493127,0.146082014662075,0.1614793620516081,0.1756887513689963,0.1879496210908314,0.1992410274001972,0.2136619612150186,0.2266851288930236,0.2392911502500543,0.2504045130537455,0.2606553771717616,0.2713971068388839,0.2823378506497128,0.2919585727619283,0.3005264232715391,0.3090469534132313,0.3159070391889076,0.3230600018721333,0.3298899458614194,0.3350089982003599,0.3396253952809535,0.344484618137394,0.3484081223364251,0.3520593521740793,0.3555904653095139,0.3595475891262649,0.3586394851522551,0.3549498876435474,0.3528946959969522,0.3511021696024084,0.3489403500416716,0.3455666876352087,0.3420155137132977,0.3421381578947368,0.3439676861724887,0.344913816200768,0.3456498509645127,0.3467426130295479,0.3478999706289598,0.3484126451439694,0.3502671222986956,0.3510081956550019,0.3547404962440246,0.3587140439932318,0.3636840816040872,0.3703014219511229,0.3748520440681052,0.3783612110946432,0.3834917836680728,0.3892777478655488,0.3891583452211127,0.3918789043728976,0.3914396887159533,0.3954767726161369,0.3987882126136051,0.4051262433052792,0.0,2.350068356102186,66.8986449724989,189.14102189039383,254.84769214338667,APP_public_implementation,54 +100000,95726,53206,504.3352903077534,6377,65.26962371769426,5090,52.51446837849696,1935,19.84831707164198,77.38965647392791,79.75934934497137,63.34469261111818,65.09510820852664,77.14862622853981,79.51677384198187,63.25511649861764,65.00690845175234,0.241030245388103,242.57550298949585,0.0895761125005449,88.19975677430136,233.94074,163.6513957411727,244385.7886049767,170958.1469414503,426.71028,276.29882033011705,445120.76133965695,287993.690669324,491.15165,238.09574827940355,508863.8509913712,245410.7867448247,3581.13039,1656.7144279411882,3699812.099116228,1689474.2995018992,1176.9768,527.4804949510528,1214135.1043603618,535639.9149144987,1888.48914,794.9271969815487,1939345.423395943,803113.5611311715,0.43324,100000,0,1063367,11108.44493658985,0,0.0,0,0.0,35393,369.0533397405094,0,0.0,44409,459.6138980005432,1209816,0,43507,0,0,20954,0,0,83,0.8670580615506759,0,0.0,0,0.0,0,0.0,0.06377,0.1471932416212722,0.3034342167163243,0.01935,0.3451394122079879,0.6548605877920121,23.6627370885839,4.130517799063095,0.3137524557956778,0.2732809430255403,0.2117878192534381,0.2011787819253438,11.392394505223193,6.041757235350253,20.5305192805372,13760.41736743948,58.22480372575081,17.137700085674716,18.19541660534292,11.190812709415347,11.700874325317828,0.5862475442043222,0.8173975557153127,0.7175954915466499,0.5888671875,0.0909090909090909,0.755868544600939,0.9327433628318584,0.8657718120805369,0.7630522088353414,0.1,0.5159766601833843,0.738498789346247,0.66,0.5329032258064517,0.088443396226415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029171055830159,0.0055756617296716,0.0082911334598483,0.0106162504825568,0.0132035358621461,0.0162417009490448,0.018729417522252,0.0213248129357601,0.0239696622781911,0.0264706785542464,0.0289878841304659,0.0314864434794213,0.0339141608840914,0.0362662822427019,0.0386162510056315,0.0413600661430343,0.043561998446803,0.0458445290535423,0.0479333173971335,0.0503235082674335,0.067392620742937,0.0841366029284017,0.1000660952400935,0.1146061269146608,0.1281632050294828,0.146646360809696,0.1608847867600254,0.1745067154807262,0.187079479676186,0.1987366479344515,0.2128896785656598,0.2273164926705252,0.2398216615919965,0.2511647745915086,0.2615437098336121,0.2728480928542949,0.2828747030150249,0.2923808346352264,0.3007110375250904,0.3087775908825649,0.3156933040360818,0.3235954268078838,0.3296016077550538,0.3344427151921465,0.340356583690362,0.3455351644291168,0.3497973784270562,0.3536144884773872,0.3573508288365231,0.3612133201450709,0.3592219950500376,0.3573304729293012,0.35521501744906,0.3518558620988349,0.3494995922603603,0.3462149689801656,0.3420475175625542,0.3414119609478487,0.3422992019018509,0.342120211595129,0.3426130971211641,0.344481999685584,0.3440656434179561,0.3443085815918186,0.3463138267355135,0.3472359200622891,0.3484539007092198,0.3516449020592667,0.3549157303370786,0.3586939230034998,0.3621723017797502,0.3680830568339933,0.3687101458425406,0.3739616372149222,0.3779819920170797,0.3844165001762839,0.3860951226900939,0.3910346207724635,0.3965658217497956,0.4035823170731707,0.0,2.56482871054154,65.28219603316465,188.12437452671617,263.76370873170004,APP_public_implementation,55 +100000,95759,52956,501.43589636483256,6426,65.82148936392402,5091,52.55902839419793,1920,19.6952766841759,77.34687979821054,79.70570232272212,63.33382307926016,65.08116941148853,77.09674368297617,79.45617903617257,63.240076041499165,64.98973160163973,0.250136115234369,249.5232865495467,0.0937470377609912,91.43780984879868,231.98186,162.37827726871177,242255.93416806776,169569.72949666533,424.00845,275.1023783701903,442169.08071304,286668.78439229366,492.76728,239.14040270974075,510516.8182625132,246615.64402467935,3586.99266,1678.908418494091,3708324.8049791674,1715805.6181911186,1165.67302,536.4554936301504,1202487.1395900124,545434.738905792,1870.71098,803.40849501019,1921499.2846625384,812574.2006468533,0.43212,100000,0,1054463,11011.633371275808,0,0.0,0,0.0,35237,367.3388402134525,0,0.0,44622,461.8573711087208,1218747,0,43823,0,0,20834,0,0,55,0.5743585459330194,0,0.0,1,0.0104428826533276,0,0.0,0.06426,0.1487086920299916,0.2987861811391223,0.0192,0.351961950059453,0.6480380499405469,24.01213304552717,4.082093336322409,0.3077980750343744,0.27224513847967,0.2056570418385385,0.214299744647417,11.07435681751102,5.903219622601911,20.78126105466648,13768.23736225918,58.64855549863668,17.05702360370841,17.70916700360155,12.30981177806872,11.572553113258005,0.5786682380671774,0.8008658008658008,0.7000638162093171,0.5811182401466545,0.1002865329512893,0.7401055408970977,0.931095406360424,0.8477272727272728,0.7076923076923077,0.152,0.5102097902097902,0.7109756097560975,0.642413487133984,0.5415162454873647,0.0840652446675031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002644805642252,0.0054557254695168,0.0080710659898477,0.0106405683100094,0.0131337999511679,0.0156106800268833,0.0181466000611683,0.0208146182115149,0.0234405348490114,0.0261805299586353,0.0288813475911705,0.0316039140389966,0.0339668044672055,0.0364250690180889,0.0389390577429175,0.0413384605842585,0.0437821661195621,0.0460590468681922,0.0483046090517868,0.050658614046962,0.0689795534959451,0.0854306575451369,0.1011050998154672,0.115990162487125,0.1307239137078841,0.1479172390472768,0.1622237532460649,0.1756807042538035,0.1877560163850486,0.199357292057201,0.2136817418993932,0.2282635714208518,0.240900497620548,0.251226038992955,0.2621030655971871,0.2733037482984916,0.2840493397573162,0.292889993365643,0.3016458569807037,0.3084793144140325,0.3160002314680863,0.3226523733732797,0.3282419247892393,0.3332134076872339,0.3389486724803848,0.3433914413748953,0.3475833406356797,0.3524666301899757,0.3575118799445818,0.3613078515939276,0.3591945513769618,0.35681649280229,0.3539548897586799,0.3514649184872857,0.3487622696425654,0.3445730736248928,0.3405424233308529,0.3403692631163967,0.3405295454933935,0.3419018547278601,0.3435022955120397,0.3450301651666502,0.3465973416076146,0.3461564313400398,0.3468123070987654,0.3469115104521402,0.3476070528967254,0.3521715715779136,0.3568002257336343,0.3599297853666321,0.3657977919281689,0.37057757885763,0.3721783117293708,0.3761328154748306,0.381264023934181,0.3862615275478837,0.3854262144821265,0.3904781364936657,0.3939563514269726,0.3975619347227684,0.0,2.281160220935341,66.62640388237669,191.1198241670548,260.9590454070996,APP_public_implementation,56 +100000,95744,52792,500.9191176470589,6284,64.13978943850267,5018,51.742145721925134,1878,19.176136363636363,77.36211040614715,79.72257502138528,63.32787542470121,65.07501856676984,77.1096958210646,79.47534443692433,63.23074538995249,64.98320216055996,0.2524145850825476,247.2305844609508,0.0971300347487229,91.81640620988674,234.71888,164.18862674465774,245152.11397058825,171486.7541471401,422.92501,273.5904094285325,441010.8205213904,285044.3639757967,484.82353,235.14337456899003,502576.0465407754,242686.93781090772,3504.17645,1655.005572362518,3612263.431651069,1681477.913569688,1143.8662,524.583972469167,1176765.1967747326,530269.6361715749,1824.3744,795.7934331124538,1862945.5840574864,793724.6776797426,0.43115,100000,0,1066904,11143.27790775401,0,0.0,0,0.0,35147,366.3519385026738,0,0.0,43720,452.8429979946524,1207560,0,43423,0,0,20643,0,0,89,0.9191176470588236,0,0.0,0,0.0,0,0.0,0.06284,0.1457497390699292,0.2988542329726289,0.01878,0.3570016724950585,0.6429983275049415,23.530918879632505,4.073736008713834,0.3264248704663212,0.266839378238342,0.2018732562774013,0.2048624950179354,11.316404926018416,6.22623054106145,20.195664326680483,13675.44371337799,57.6682840224161,16.388759782317955,18.75294791583552,11.39553943731142,11.131036886951204,0.5813072937425269,0.7931292008961912,0.7051282051282052,0.5710116731517509,0.1115498519249753,0.72400513478819,0.8870370370370371,0.836,0.7713178294573644,0.123076923076923,0.5170520231213873,0.7296620775969962,0.6476274165202109,0.5038961038961038,0.1075697211155378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00251258826986,0.0049080252296834,0.0074611714546746,0.0101913287338569,0.0129596663445399,0.0157045667495009,0.018283604919136,0.0209303275341011,0.0234455680412265,0.0258970262963873,0.0285913528591352,0.0308978665269688,0.0334156378600823,0.036109193210977,0.0385290232020477,0.0409325889164598,0.0430176565008025,0.0452281641038411,0.0473606519886068,0.0494895833333333,0.0669881932917854,0.0841712091568231,0.0989438576987215,0.1136903885394534,0.1272665900148732,0.1449922257597072,0.1588507405678394,0.1729593901062629,0.1849318728292813,0.1968811334312895,0.2116726990692864,0.2249983761664537,0.2372101122005898,0.2484897566100507,0.2590402572233967,0.2707046968706005,0.2803749804464904,0.290225259200054,0.2989442615506868,0.3074348718066269,0.3148755256420653,0.3216012739002657,0.3276870957807206,0.3334893657880839,0.3394522179943836,0.3445076435242877,0.3501541314754016,0.3533622918869342,0.3571048981866729,0.3606910306024065,0.3581898353537669,0.3551333627245674,0.3520948126435648,0.3493226930360989,0.3480456969678962,0.3441696654161243,0.341578830753648,0.3410962049398104,0.3407026096442634,0.340666381888082,0.341073830518607,0.3424253158578345,0.3432293623950895,0.3439582729643581,0.3446333101579919,0.3460469224973369,0.3459803059110644,0.3495242864296444,0.3540233897713388,0.3578897525944047,0.3615335868187579,0.3659435551811289,0.3697421131697546,0.3723171925596807,0.3741989412092505,0.3784931022285108,0.3811986613933678,0.3812849162011173,0.3820498915401301,0.3890612878200155,0.0,2.535942236475976,68.27965761139536,176.7440917295409,258.6078556205372,APP_public_implementation,57 +100000,95735,52864,500.9244268031545,6368,64.80388572622343,5111,52.54086802109991,1952,19.74199613516478,77.32840490063373,79.68722803259789,63.31625382636724,65.06393067801469,77.06718497522431,79.43593113125236,63.21518828631284,64.97098269782275,0.2612199254094207,251.29690134552615,0.1010655400543996,92.94798019193706,233.11486,163.1478893609171,243500.1410142581,170416.13763087388,428.21783,277.6885499242302,446426.7613725388,289191.3928283598,497.63899,241.2477289904501,514448.3313312791,247875.04374044508,3583.286,1688.0906277276413,3683007.907243955,1703381.46730834,1209.80198,552.1126525624765,1236855.810309709,549956.2583305888,1900.83136,825.7016784234528,1924987.2251527652,812094.2404256751,0.43092,100000,0,1059613,11068.188227920824,0,0.0,0,0.0,35556,370.51235180446025,0,0.0,45057,465.4097247610592,1207318,0,43490,0,0,20792,0,0,72,0.7520760432443725,0,0.0,0,0.0,0,0.0,0.06368,0.1477768495312355,0.3065326633165829,0.01952,0.3569170555471925,0.6430829444528074,23.65131749179575,4.063592202589492,0.3071805908824105,0.2731363725298376,0.2019174329876736,0.2177656036000782,11.562847074339372,6.373566496985804,21.137294300767515,13720.051824362805,59.09059088270163,17.199772350169688,17.897351343426983,12.530217146509845,11.463250042595112,0.5949911954607708,0.8087392550143266,0.7127388535031847,0.5920934411500449,0.1298449612403101,0.7525839793281653,0.9431616341030196,0.8568281938325991,0.7447552447552448,0.1306122448979592,0.5265225933202358,0.7178871548619448,0.6541218637992832,0.5392986698911729,0.1296060991105463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002654965900915,0.0055173532931702,0.0081834057588433,0.0106404601719547,0.0133161075054424,0.0158389015645371,0.0183553597650513,0.0210215728914617,0.023390617172884,0.0257439120510169,0.0283432765442729,0.0307520124856251,0.0333100228305806,0.0356079723953236,0.0383996202348764,0.040830671587021,0.0429809215225515,0.0452098696287999,0.047587375159785,0.0501432217072027,0.0671858362736705,0.0836724233517087,0.0991043899574218,0.1140478142938245,0.1284186120040048,0.1466630017654956,0.1607743304163351,0.1740389426506126,0.1862259070900465,0.1978932011756881,0.2123785100101286,0.2265445728882539,0.2400792355079562,0.2513649244504743,0.2618913888613561,0.2723474521798879,0.2822079038760036,0.2917858510326809,0.3003589766892352,0.3077372898846515,0.3157157249892881,0.3215623390608174,0.3277288023129058,0.3329730768307035,0.3384791309319611,0.3438672260612043,0.3481785440901505,0.3529936874322514,0.3575693074447097,0.3616970658207771,0.3586003076840031,0.3560567418905692,0.3533673195599678,0.3510419681620839,0.347762616933802,0.3440273981017907,0.3412110149988096,0.3413497175048181,0.3406907652528296,0.3414367805803691,0.3411179891202401,0.3417320965923699,0.3435211915819421,0.3454903452442217,0.3467035611164581,0.3479099846149834,0.3492344101964586,0.354156202913109,0.3593460070720862,0.3621167709736196,0.3661338661338661,0.3682877940711045,0.3683980521912848,0.3744995845607674,0.3820203719278572,0.3860885912348725,0.3881368821292775,0.3875763747454175,0.3899336283185841,0.3968688845401174,0.0,3.3103210534050302,67.06932971782014,191.1346217191019,260.3555627492941,APP_public_implementation,58 +100000,95719,53175,503.1393976117595,6320,64.46995894232076,5067,52.2257858941276,1924,19.609481921039716,77.31464774318667,79.68066328316326,63.30648041847581,65.05610825313926,77.06605816409,79.4350243086329,63.21283346127452,64.96619330598804,0.2485895790966736,245.6389745303511,0.0936469572012868,89.91494715121462,234.04326,163.76824781092594,244510.7658876503,171092.7274740918,427.11385,277.6355555233976,445519.1236849529,289355.4628897058,497.19384,241.57262436870764,515198.1738212894,249053.3823747884,3535.59058,1654.6067388900194,3645838.746748294,1680728.5375839905,1143.10096,521.85709150521,1175777.3482798608,526753.4948895131,1870.7441,795.8497578910578,1909910.1954679843,795188.0270930995,0.43413,100000,0,1063833,11114.125722165923,0,0.0,0,0.0,35479,369.916108609576,0,0.0,44971,465.5293097504153,1201345,0,43140,0,0,20828,0,0,72,0.7522017572268829,0,0.0,1,0.0104472466281511,0,0.0,0.0632,0.1455785133485361,0.3044303797468354,0.01924,0.3535552193645991,0.6464447806354009,23.68451022220264,4.022650719389494,0.3155713439905269,0.272547858693507,0.1981448588908624,0.2137359384251036,11.210500940195358,6.138816617928759,20.59643863875592,13822.865868487894,58.0853302951175,16.911115203017484,18.118139441407283,12.130114710342868,10.925960940349857,0.5954213538582988,0.8124547429398986,0.7035647279549718,0.6038781163434903,0.1155378486055776,0.7663798808735937,0.9344262295081968,0.8565121412803532,0.7889273356401384,0.1318181818181818,0.5227784026996626,0.7319711538461539,0.6431064572425829,0.5365239294710328,0.110969387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026541052524945,0.0055966176962618,0.0083538033658823,0.0107509399451275,0.0133882700035607,0.0161375769183748,0.0184348251905204,0.0210941169263441,0.0238177989491546,0.0266471479464395,0.0291901202669865,0.0318403975685887,0.0342426299656442,0.0368359230103449,0.0393063583815028,0.041847578877724,0.0443503292879923,0.0466011559494038,0.0492341925488442,0.0514653025930594,0.0681367328614086,0.084646060770994,0.0993915232899706,0.1147965085708276,0.1294605196558123,0.1479244245091401,0.1621380657213212,0.1757584147029697,0.1884527398285335,0.1999399032012277,0.2147964410892424,0.2283327192735311,0.240841233518579,0.2523568359203718,0.2625228841784855,0.2739853832996423,0.2832990198272389,0.2929382961199553,0.3021448483814075,0.3096745286812265,0.3171130624412764,0.3234825217452465,0.3299892086757504,0.3358588890756706,0.3420389991119977,0.3470936690114772,0.3513889236780803,0.355593185811413,0.3589215648187716,0.3622211374820248,0.3599466745667308,0.3576941597303432,0.3550098508302842,0.351702625422407,0.3485298926777061,0.3455957834740374,0.3427394438722966,0.3432929033954573,0.3433144655163568,0.3436104462148547,0.3441959012243826,0.3453959720932071,0.3457123141584593,0.3463821809579074,0.3472195543603534,0.3485002211295819,0.3492986657543619,0.3558960190882833,0.3607648129990194,0.3670805728567461,0.3698842402698022,0.3727480469787957,0.3776046614731775,0.3840973444554986,0.3862088535754824,0.3901713469776297,0.3996611735715386,0.4051599587203302,0.4052616848586622,0.403680501174628,0.0,2.761048830113044,65.81776832006847,183.88126825397364,264.4209453127993,APP_public_implementation,59 +100000,95809,53175,501.9048314876473,6473,66.03763738270935,5198,53.61709233996806,1962,20.081620724566587,77.3504688262772,79.68176940548823,63.33176974345843,65.05971734742374,77.0976649552391,79.43151205494813,63.23685688563621,64.96847613274583,0.2528038710380969,250.257350540096,0.0949128578222229,91.24121467790758,231.4906,162.0884724777039,241616.75834211815,169178.7540603742,425.70587,276.0513415539106,443672.5046707512,287480.3938123275,500.21691,242.5562630263906,517992.6624847352,250011.6467032872,3651.18579,1712.67103585301,3766814.412007223,1744127.3239920028,1211.94355,544.8517642101414,1248241.574382365,552534.807457227,1913.03706,814.5423691107183,1958998.6118214368,819190.7713358649,0.43351,100000,0,1052230,10982.579924641735,0,0.0,0,0.0,35306,367.85688192132267,0,0.0,45280,468.5781085284264,1216862,0,43829,0,0,20417,0,0,68,0.6993079982047615,0,0.0,0,0.0,0,0.0,0.06473,0.1493160480727088,0.30310520624131,0.01962,0.3615952732644018,0.6384047267355982,23.40849785051667,4.108575514345982,0.3051173528280108,0.2766448634090034,0.2004617160446325,0.2177760677183532,11.433142405949791,6.1558405117315695,21.068831186138816,13865.150970416667,60.026417104174215,17.68430110514863,18.0854201430472,12.670149278147246,11.586546577831143,0.5815698345517507,0.8094575799721836,0.6866330390920555,0.5618374558303887,0.128598848368522,0.75,0.912751677852349,0.8763796909492274,0.7454545454545455,0.1330645161290322,0.5085493656922229,0.7363420427553444,0.6107678729037952,0.5029171528588098,0.1272040302267002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030188220515833,0.0056579094126116,0.0084035319192124,0.0109730449183625,0.0137620277885143,0.0167036727709763,0.0194278721125898,0.0220468099011518,0.0245899963191689,0.0271379726880003,0.0298801308409298,0.0325412798817054,0.0350065303016279,0.037756836088367,0.0401823469956063,0.0425195548621085,0.044896015569197,0.0475889180470702,0.049948035751403,0.0521685718450038,0.0693630161280227,0.0852049351735675,0.101143378153198,0.1164418106165679,0.130136553293716,0.1489024403132563,0.1628686256004581,0.1763460535974552,0.1883915606047664,0.2004415436881758,0.2144340769917885,0.2278251091986333,0.2409147699494812,0.2532218396458436,0.2641642280358203,0.2759384833577095,0.2855101904145367,0.2944029892741781,0.3033448804588562,0.3115956142662374,0.3188127293564706,0.3245738220875405,0.332342949135288,0.3376246643651707,0.34261364327137,0.3469498574584408,0.3509394231853904,0.3547100063734863,0.3591545643153527,0.3620468632296774,0.3604037623308098,0.358383336781847,0.3562715310329248,0.352467562557924,0.3499092072753252,0.3462889396751384,0.3432468871441034,0.3434934943167799,0.3435286872626501,0.3428131931029548,0.3436134910665742,0.3442807711319822,0.3445075321083617,0.3456290264853257,0.3474943436191209,0.34849868259724,0.3478743699991458,0.352464423711243,0.3578847969782814,0.3616894705532421,0.3651715997820955,0.3655573164289487,0.368018554503855,0.3726632861575721,0.3790549409338083,0.3801224682053697,0.3855311355311355,0.3878457500504744,0.3924291938997821,0.4023691249522353,0.0,2.478926386667576,68.94150078235279,196.6533070958889,261.58219190631814,APP_public_implementation,60 +100000,95703,52922,501.2591036853599,6549,67.00939364492231,5216,53.76007021723457,1923,19.55006635110707,77.30949638025908,79.66846712338256,63.31695901961641,65.05892789954768,77.06229013837843,79.42663190236055,63.22352218298157,64.97055372718766,0.2472062418806473,241.83522102200072,0.0934368366348437,88.37417236001954,231.82962,162.2893207480846,242238.61320961727,169576.0015340006,427.03361,276.2968615310721,445444.32253952336,287940.2699860574,496.70099,240.472448741464,514237.16079955694,247502.8127039155,3651.30274,1711.060499939256,3766734.052224069,1739376.2472850955,1209.96679,550.8814572991605,1245391.6282666165,556743.8687350226,1866.21208,799.7369825824559,1900360.6574506543,795676.2084043998,0.43361,100000,0,1053771,11010.8460549826,0,0.0,0,0.0,35441,369.5390949082056,0,0.0,45056,466.0459964682403,1215206,0,43735,0,0,20863,0,0,77,0.8045724794416058,0,0.0,0,0.0,0,0.0,0.06549,0.1510343396139388,0.293632615666514,0.01923,0.3530878685638844,0.6469121314361156,23.361492246955432,4.092562553093517,0.3176763803680981,0.2726226993865031,0.2005368098159509,0.2091641104294478,11.524960533972598,6.36005949780819,20.70819975769605,13887.972544467642,60.27654739904321,17.582378143862172,18.93421499199661,12.194499264179129,11.56545499900528,0.5960506134969326,0.8094233473980309,0.7036813518406759,0.6104491292392301,0.1204588910133843,0.7633289986996099,0.9237435008665512,0.862144420131291,0.7977099236641222,0.1570247933884297,0.5261011419249593,0.7313609467455622,0.6433333333333333,0.5512665862484921,0.1094527363184079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028863390081121,0.005717297867164,0.0083597110624137,0.0109388965629316,0.0135922330097087,0.0157969200077356,0.0181215920093767,0.0208335459899762,0.0232717386860717,0.0259336205749608,0.0286803747514299,0.0312137422607374,0.0338718135919135,0.0366312060389483,0.0391588630832061,0.04154483556676,0.0437684999275527,0.0457779344962767,0.0483183670075663,0.0507296951009906,0.0684098954689278,0.084750730068349,0.1011475203490811,0.1165583527877679,0.1310638656880114,0.1491306003299911,0.1638175277751249,0.1775295971382335,0.1898544840701724,0.2013019744109477,0.216183015269232,0.2305060152248535,0.2428216905762239,0.254126713078506,0.2644694533762058,0.2758880659896226,0.2862409509339529,0.2947386210004507,0.3035523534625787,0.3116507860066733,0.3192309919508946,0.3258296751536435,0.3324210326769508,0.3384500906134108,0.3444187743190661,0.3493706811451135,0.3533735724303746,0.3567343091170813,0.3603999688740176,0.363082091230112,0.3615582873412768,0.358207309171618,0.3566033740382579,0.3539592498263487,0.3515871597879816,0.3481738489644902,0.3444310311963911,0.3449666639229566,0.345475427258858,0.3461400552189035,0.3462037576874612,0.3459926507101003,0.3461239086988534,0.3467046781000269,0.3479710950528071,0.3490139741413086,0.350393813547186,0.3550256717170126,0.359666701824702,0.3644359919172709,0.3664587790777074,0.372275964707133,0.3761745601311723,0.3739601617950088,0.3791509433962264,0.3822727811352056,0.3852408714329549,0.3903192584963955,0.3904525386313466,0.39745566692367,0.0,2.899847830542051,67.04210616502421,203.1732398687321,262.43050448056147,APP_public_implementation,61 +100000,95736,53179,502.8724826606501,6288,64.40628394752235,4987,51.50622545332999,1911,19.55377287540737,77.40440741590693,79.76236896616774,63.3594678928421,65.0994940950079,77.16672903976142,79.52618312316658,63.27019273317195,65.01345520089578,0.2376783761455101,236.1858430011665,0.0892751596701444,86.03889411212151,232.98176,163.04918541609374,243358.56939918108,170311.25743303853,425.38819,275.61033326345125,443700.88576919865,287252.0507055353,499.00899,241.99383410586785,517944.1902732515,250174.57337621035,3486.74765,1624.6707725473705,3601521.8204228296,1656991.111067565,1158.18934,522.6512649922042,1196872.7124592632,533224.4409275799,1858.07458,789.8253819939792,1903550.0125344696,793455.8569505761,0.43184,100000,0,1059008,11061.753154508231,0,0.0,0,0.0,35214,367.239074120498,0,0.0,45044,467.191025319629,1214440,0,43598,0,0,20772,0,0,77,0.7938497534887607,0,0.0,0,0.0,0,0.0,0.06288,0.1456094849944423,0.303912213740458,0.01911,0.3497641868248897,0.6502358131751103,23.747738504452244,4.075213097830548,0.3037898536194104,0.2843392821335472,0.2059354321235211,0.2059354321235211,11.390120994329406,6.258337733325347,20.47255717670544,13728.226201169722,57.422528174229406,17.48685382290861,17.46109480163925,11.394294773009568,11.080284776671997,0.5875275716863846,0.7898448519040903,0.7273927392739274,0.5803310613437196,0.1090555014605647,0.7526737967914439,0.9133448873483536,0.8721461187214612,0.7269230769230769,0.1266968325791855,0.5167573761099972,0.7051129607609988,0.6685236768802229,0.530638852672751,0.1042183622828784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002814705316553,0.0054421079300734,0.0082780449205672,0.0109277408216117,0.013553221559078,0.0161135993485342,0.0189452229299363,0.02144832301052,0.02424595389897,0.0269941161422358,0.0296809502823584,0.0322888549054221,0.0346043527875728,0.0369042836984622,0.0395493050754769,0.0422278962547939,0.0446646783480386,0.0471784232365145,0.0491368828010517,0.0514430938766157,0.0683448355067394,0.0845777912659459,0.0997902024546312,0.1158528892253343,0.1297051723956192,0.1476339026066726,0.1613847835082172,0.1748328435756569,0.1871701177425903,0.1991720824485768,0.2141995519558849,0.2266037572504545,0.2391472235818785,0.2509185949870959,0.2608867862251072,0.2716742522396819,0.2818378595496842,0.2905717658964412,0.2991278509294228,0.3071375422128098,0.3142705239190485,0.3218468652568399,0.3282506761784402,0.333703849785459,0.3383209954323515,0.3434696034809115,0.3475979914561942,0.3512439705509012,0.3555937326427012,0.3590600494710804,0.3565446150542253,0.3534707545357231,0.3503336845802599,0.3478561549100968,0.3449241021843761,0.3414920906370243,0.3380984725227858,0.3393184496530051,0.3405998262854028,0.3417933292991136,0.3426284389085264,0.342515561703389,0.3431655579264466,0.3447452939602105,0.3454593415026019,0.346135831381733,0.3477397765299756,0.3538418185233891,0.3568955265643034,0.3621255885727852,0.3652686465654047,0.3688108336859924,0.3737721328911969,0.3786767485822306,0.3844151013576343,0.3861212050169968,0.3932704019488429,0.3976338480048125,0.3945990631027831,0.4003145890680299,0.0,2.272809477246414,65.64311452749526,188.5391127509591,251.49356648391628,APP_public_implementation,62 +100000,95732,53200,504.58571846404544,6309,64.39852922742656,4990,51.37258179083274,1903,19.387456649814062,77.33232137485312,79.69857440022167,63.31916690730778,65.07133979897391,77.09263981703006,79.4631077584711,63.2292699884496,64.98650777618903,0.2396815578230615,235.46664175057683,0.0898969188581872,84.83202278488022,231.55066,162.011670628207,241873.8352901851,169234.6035058361,423.02614,274.60545376828065,441114.22512848367,286079.4677479104,493.05076,239.8080836716068,510042.639869636,246726.79284781608,3486.21778,1619.5348120846338,3591157.867797602,1641744.9198883437,1134.30433,509.0393666056666,1168340.6593406594,515405.79016929166,1840.61694,775.2747135983576,1877030.794300756,771454.6753545953,0.43251,100000,0,1052503,10994.26524046296,0,0.0,0,0.0,35098,365.8442318138136,0,0.0,44612,461.0475076254544,1218773,0,43835,0,0,20335,0,0,68,0.7103162996699118,0,0.0,0,0.0,0,0.0,0.06309,0.1458694596656724,0.3016325883658265,0.01903,0.3549664838513102,0.6450335161486899,23.73685724982724,4.035928293817443,0.3238476953907815,0.2745490981963928,0.2,0.2016032064128256,11.631013886886926,6.558082472581157,20.23039712355257,13717.992237439124,57.14958912999269,16.773989330494064,18.35408190708533,11.126945167993377,10.894572724419913,0.5771543086172345,0.7766423357664234,0.7029702970297029,0.5685884691848907,0.1082164328657314,0.7673778389538886,0.9092465753424658,0.884090909090909,0.76,0.1176470588235294,0.4990104608425219,0.678117048346056,0.6352040816326531,0.5134443021766966,0.105793450881612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027666301836312,0.0055280000811449,0.0083055803752741,0.0107833970241483,0.0136424676487344,0.0161163802324752,0.0186424084196785,0.0212865879182023,0.0236593221205459,0.0262796887796887,0.0288786828778217,0.0312102172395384,0.0335431062849621,0.0360173855724467,0.0384742370153319,0.0410133438071711,0.043294122519985,0.0456922310756972,0.0479016400257748,0.0499552111326375,0.0676104568612711,0.0840475069324543,0.1000597904188476,0.1143115541954548,0.128419276600232,0.1466064401472517,0.1604074919085265,0.1732118334628527,0.1860634025463556,0.1972826320078926,0.2125569522086147,0.2267454443145911,0.2387189417344763,0.2494777482473121,0.2600825309491059,0.2707712751231936,0.2802606764643522,0.2905193270691498,0.2992725580761941,0.3066341374017822,0.3138310185185185,0.320097339541849,0.3268850790946414,0.3329458711308704,0.3381872502702243,0.3438485804416404,0.348810149388184,0.3525462521457181,0.3555903636293026,0.3599367005143083,0.3578080422027238,0.355194188782038,0.3538920806578799,0.3517756307496786,0.3488213187564059,0.346299272866437,0.3423133606960049,0.3425167779728599,0.342647560559536,0.3435681388125245,0.3434656159114363,0.3436200958074349,0.344915129770672,0.3456626937897661,0.3476028635476173,0.3492287213217446,0.351592320401071,0.3559444970040996,0.3611481975967957,0.3642418441413416,0.3701692749920153,0.3745454545454545,0.3766480730223123,0.3815126050420168,0.3834487923609811,0.3918918918918919,0.394049237275336,0.3974845278498702,0.3950516585100598,0.3962623951182303,0.0,2.9389024611557963,62.92436146211185,187.7511806733639,257.6472138243528,APP_public_implementation,63 +100000,95734,53203,504.53339461424366,6305,64.59565044811666,4948,51.1939331898803,1819,18.76031503958886,77.41699606751023,79.76958513728378,63.36600846061516,65.10020114622102,77.19181826363703,79.54264722593501,63.28172982808951,65.01702417696212,0.2251778038731942,226.93791134877017,0.0842786325256526,83.17696925890061,231.69828,162.16435844316587,242022.52073453527,169390.14654217692,424.15564,275.1278373935574,442568.0113648233,286900.4779108052,493.57046,239.1845786207744,511505.6719660727,246847.48475749083,3440.50137,1582.100227040709,3564988.0084400526,1623911.1662651997,1122.038,501.3342277384911,1160350.084609439,511987.149537773,1768.56666,744.4605575429662,1825272.0245680744,758598.7839266006,0.43148,100000,0,1053174,11001.023669751605,0,0.0,0,0.0,35264,367.8525915557692,0,0.0,44553,461.330352852696,1219472,0,43783,0,0,20702,0,0,70,0.7311926797167151,0,0.0,1,0.0104456097102387,0,0.0,0.06305,0.1461249652359321,0.2885011895321173,0.01819,0.3565270004537891,0.6434729995462108,23.71477562232728,4.13935367850469,0.3100242522231204,0.2809215844785772,0.1992724333063864,0.2097817299919159,11.26053000054512,5.930215258518668,19.45538171520328,13768.949353869664,56.6494020951292,17.11760069638711,17.343824577543263,11.55418474605927,10.633792075139544,0.5828617623282134,0.797841726618705,0.7027379400260756,0.5722543352601156,0.1044624746450304,0.755524861878453,0.8938053097345132,0.8803827751196173,0.7307692307692307,0.1512195121951219,0.5114285714285715,0.7321212121212122,0.6362007168458781,0.519280205655527,0.0921895006402048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027227271807121,0.0050856558165922,0.0074143946770529,0.0101239858243889,0.0126687815194403,0.0153708340967853,0.0178374852203693,0.0202592365788936,0.0229934392053467,0.025463697095563,0.0281182112554822,0.0307583361556698,0.0332247088212013,0.0356734601402634,0.0379016866972713,0.040528670779469,0.0429344956465021,0.045324427480916,0.0477868196510044,0.0501505349459845,0.0678590819863843,0.0839532523515071,0.0996086988449797,0.114000862368147,0.1285593756591436,0.1464815245669324,0.1608010352362163,0.1748834536049556,0.187843828446296,0.1995818142826506,0.2141049798115747,0.2280546119393297,0.2406020757485192,0.2517147225862822,0.262784949189783,0.2739624478596165,0.2851951757808146,0.2948468670974993,0.3034171560735584,0.3117262054603291,0.3184361416813095,0.3245469522240527,0.3306934906206782,0.3374073763721464,0.3426592092013151,0.3476076731758969,0.3514506794004775,0.3547317048371927,0.3577422900368526,0.3609543896651727,0.3583908324254529,0.3552593610443146,0.35334440628343,0.3505787823171525,0.3474431522820775,0.3440559226627508,0.3404127650839268,0.3405824353712576,0.3403962248108154,0.3413508476080589,0.3415638626961351,0.3420075809651001,0.342029589497812,0.3433809819763828,0.3441823786651373,0.3456553297386976,0.347083805209513,0.3517501715854496,0.3566180311313855,0.3597560975609756,0.3645490972941335,0.3667945551059021,0.3712775878147342,0.3763887839165596,0.3784184666728469,0.3849737914967967,0.387490580256217,0.3926514399205561,0.4006987368986831,0.4014925373134328,0.0,1.9049451112780784,64.00170866563738,183.80427066180465,256.1997041279448,APP_public_implementation,64 +100000,95682,53561,506.7828849731402,6449,65.99987458456135,5110,52.67448422900859,1955,19.920152170732216,77.3508434030137,79.74128723324341,63.31502979323547,65.0828674303221,77.10037439778596,79.49672116055066,63.22044426638909,64.99340714873904,0.2504690052277425,244.56607269274852,0.0945855268463802,89.46028158305808,232.20076,162.56441232988666,242679.43813883487,169900.55086542273,427.11502,276.3386662509704,445615.29859325686,288036.89611809485,496.59384,241.05475745950704,514944.78585313854,248610.77108875127,3566.20133,1661.673837029662,3679733.575803181,1689542.7117736563,1169.96845,533.1154742351833,1204344.6102715244,538751.3160627738,1900.91882,814.5365291682016,1940308.3547584708,811490.1761549701,0.4349,100000,0,1055458,11030.883551765222,0,0.0,0,0.0,35346,368.6586818837399,0,0.0,44919,465.3435337890094,1213904,0,43632,0,0,20476,0,0,68,0.7002361990761062,0,0.0,0,0.0,0,0.0,0.06449,0.1482869625201195,0.3031477748488138,0.01955,0.3485925925925925,0.6514074074074074,23.83578117071048,4.039019386179755,0.2984344422700587,0.286105675146771,0.2070450097847358,0.2084148727984344,11.174769459281396,6.106060331950611,21.05261407623825,13886.632220914677,58.660251375968905,18.031032757785297,17.25009638244763,11.780040536821025,11.599081698914969,0.5900195694716243,0.8235294117647058,0.718688524590164,0.564319248826291,0.107750472589792,0.7571989528795812,0.9376026272577996,0.8657407407407407,0.7246963562753036,0.1375,0.5187046342825238,0.7420867526377491,0.6605672461116194,0.5158924205378973,0.0990220048899755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026337915455291,0.0054253582257557,0.0082225989503497,0.0109460118708838,0.0136320169281165,0.0165135184694688,0.0195656387395566,0.0223155013583348,0.0248207729518004,0.0271502017574404,0.0295456876217823,0.0319631889238101,0.0344469358787105,0.0370908416530151,0.0394749063438496,0.0417743502801496,0.0443728437781668,0.046977009704707,0.0493036124777665,0.0519617244829886,0.0689457082576089,0.0852425029318143,0.1009394845956017,0.1156184905422181,0.1300252117683049,0.1477735577584291,0.162263429960408,0.1755572358121852,0.1886691608765366,0.2007855425824175,0.2153020307851507,0.2282097923298469,0.2420034173895062,0.2525259159524044,0.2627359425588617,0.2740622435172245,0.2839575119232445,0.2932197852950784,0.3028966896598747,0.3111473040705609,0.3187621651682269,0.3255846651356798,0.3322781808697301,0.3380864931043174,0.3439271205818677,0.349190295884261,0.3529735751749346,0.3573592302209551,0.3610010616535902,0.3647731474145672,0.3618971863076861,0.3605397218780118,0.3576359537897999,0.3543996532293021,0.3529219767666127,0.3485622514530437,0.3438602040009488,0.3441322097255467,0.3447110048663878,0.3441295546558704,0.3454021267036094,0.3457057814748379,0.3472123616621424,0.3477398359486447,0.3491599357668432,0.350607855361596,0.3519010976575761,0.3575105287786617,0.3625178627444146,0.3672411762396451,0.3706202491791481,0.3727277517255914,0.3754683987009742,0.3759757483895415,0.379892987890735,0.3845330160618679,0.3899495952344585,0.3906717161650389,0.3962008141112618,0.4032196243771559,0.0,2.8658700309941185,66.65936114793146,185.9815782262032,265.42342746548746,APP_public_implementation,65 +100000,95698,53081,502.3720453927982,6452,65.89479403958286,5155,53.01051223641038,1969,19.97951890321637,77.26691653433518,79.62469638334314,63.2951211478972,65.03816941291845,77.0173885715975,79.38338163817353,63.20038098507517,64.95030643159218,0.2495279627376874,241.31474516960336,0.0947401628220347,87.86298132626769,232.0076,162.4475507978981,242437.2505172522,169750.20459978067,425.2711,275.4606335683027,443484.90041589167,286939.86663075787,496.80601,241.42846601585188,513612.3847938306,248024.57008654185,3612.64603,1694.255864559305,3715949.037597442,1711621.2858148185,1199.04895,550.2302465261286,1226497.2204225794,548641.0973105609,1907.4473,814.3698395920078,1937991.0969926228,804152.2001605504,0.43428,100000,0,1054580,11019.875023511464,0,0.0,0,0.0,35291,367.8864762063993,0,0.0,44988,464.6596585090598,1212931,0,43626,0,0,20596,0,0,69,0.7001191247465988,0,0.0,1,0.0104495391753223,0,0.0,0.06452,0.1485677443124251,0.305176689398636,0.01969,0.3497924080664294,0.6502075919335706,23.588195277329948,4.077554241350949,0.3053346265761397,0.2729388942774006,0.2009699321047526,0.220756547041707,11.579852438112225,6.39664056432183,21.13704138368163,13856.77056092698,59.655162664478944,17.352069016047682,18.130058624363954,12.759475272968704,11.413559751098596,0.5916585838991271,0.8109452736318408,0.7229987293519695,0.5659050966608085,0.1225868725868725,0.756066411238825,0.919732441471572,0.8539823008849557,0.7250859106529209,0.1644444444444444,0.5199219838395096,0.73053152039555,0.6702317290552585,0.5112160566706021,0.1109741060419235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026131345460438,0.0054649241095418,0.0080062507610504,0.0108085045865035,0.0136077944795883,0.0160773013755816,0.0187267444823895,0.0212839803595308,0.0239105322879077,0.0266336390435637,0.0291123799370598,0.0318159418504373,0.0342224873002488,0.0366574653922214,0.0389678723974991,0.0413694721825962,0.0440640404291454,0.0463868859262333,0.0490025883844946,0.0512951424344093,0.0691700430224301,0.0853012603106812,0.1014524694078878,0.1165453091460078,0.1307742629835186,0.1487082879126229,0.1625380915471273,0.1752556455048998,0.1889498508037347,0.2011101209967469,0.2159539367276962,0.2291684730772565,0.2423308205150551,0.2532810411691242,0.2639637554151923,0.2750771690613133,0.2852221377119592,0.2948217949006966,0.3033013239388601,0.3112206868872197,0.3183012816801935,0.3257259953161592,0.3323896279273623,0.3371920059499532,0.3422297338375302,0.3468974792404407,0.3500037611895388,0.3547326571180998,0.3583977785851456,0.3615579120166276,0.3589733192766199,0.3564334553491263,0.3544719126548623,0.3517509276437848,0.3492420741977314,0.3459534240258243,0.3418725948541806,0.3425206591122767,0.3432981901851025,0.34539161002206,0.3459034285499228,0.3467143140758388,0.3484261093084994,0.3487337363205321,0.3500024193158175,0.3504206305527164,0.3510250896057347,0.3548775464943129,0.3612178119220373,0.3659382307878397,0.3703976775263812,0.3735542525149282,0.3772074704611866,0.3798544618919954,0.3858356940509915,0.387745445942749,0.3966753088302577,0.4052801289802499,0.4056939501779359,0.4111538461538461,0.0,3.356480721772612,67.88492772181827,192.9671989944628,261.98431997487575,APP_public_implementation,66 +100000,95692,52923,499.83279689002217,6281,64.2686953977344,5008,51.634410400033445,1871,19.0611545374744,77.288290147924,79.65804209568891,63.294707477804174,65.04415566005083,77.04453914693121,79.41745254613633,63.20289221002324,64.95621332975742,0.2437510009927876,240.5895495525812,0.0918152677809374,87.9423302934157,232.8546,163.01589748884277,243337.12327049283,170354.3285633519,426.35398,276.38895420208326,444835.3467374493,288119.4215839185,494.77036,240.26910644270524,512740.573924675,247785.3439068981,3456.39399,1630.7809201986563,3564823.3708146974,1657057.932636643,1146.05789,526.7096561491529,1173966.8101826694,526873.1741951253,1814.28344,780.7154435545372,1850504.033775028,778975.7215071239,0.43151,100000,0,1058430,11060.778330476947,0,0.0,0,0.0,35435,369.5502236341597,0,0.0,44755,463.37206872047824,1206517,0,43409,0,0,21221,0,0,79,0.8255653555156126,0,0.0,1,0.0104501943736153,0,0.0,0.06281,0.145558619730713,0.2978825027861805,0.01871,0.3520012174707046,0.6479987825292954,23.672914351845773,4.087310091846952,0.318091054313099,0.2755591054313099,0.194888178913738,0.211461661341853,11.465930575265956,6.3183632577932505,20.31857464387024,13780.43960236228,57.90453827088941,16.970797575303855,18.15960705640813,11.893065414465775,10.881068224711647,0.5906549520766773,0.7949275362318841,0.704331450094162,0.5901794145420207,0.1168032786885246,0.7701822916666666,0.9358752166377816,0.8635394456289979,0.7427536231884058,0.1542056074766355,0.5112327188940092,0.6936488169364882,0.6379003558718861,0.5363984674329502,0.1062992125984252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024914167654118,0.0054743970559909,0.0083411129601818,0.0111339117007659,0.0139024489463835,0.0165667097720168,0.0195652617197854,0.0222528454039708,0.0249108137668789,0.0273652970373023,0.0300489884600405,0.03244646999651,0.0348954370668914,0.0373833700644682,0.0397829831564398,0.0421343089229242,0.0446266786775593,0.0470843408503616,0.049540788200909,0.0522053612373368,0.0697052618386146,0.0856036017170976,0.1007252385100599,0.1155206162783355,0.1294020775272358,0.1472662205658139,0.1616650738026972,0.1757159904534606,0.1883253670377142,0.1998131583751221,0.2145360813623666,0.2278504328605636,0.2405424541146996,0.2516151639254506,0.2628308932879474,0.2732740730876363,0.2824056988850493,0.2913109670143783,0.2999021526418787,0.3088513971356709,0.3162919653836338,0.3227649142562225,0.3294402506765418,0.3339342370925872,0.3389491892945461,0.3436708156681458,0.3491214187924689,0.3536078000969907,0.3573915755008705,0.3612920307122054,0.3591632928475033,0.3558435464281771,0.3528072408428793,0.350130548302872,0.3483962404893331,0.344912350781238,0.3405633713360221,0.3402455482044699,0.3398337760260475,0.3409912974966873,0.3421804511278195,0.3434733527419642,0.3433023900533457,0.3441340782122905,0.3456769396810169,0.3466815654072033,0.3478199038652976,0.3512952716297787,0.3541864139020537,0.3575141870709155,0.3616332116788321,0.3666666666666666,0.3687284144427001,0.3729225165060332,0.3782301543037739,0.3794877792071103,0.3835740072202166,0.3813795853269537,0.3815789473684211,0.3877474785207321,0.0,2.7285773561501694,67.24292340095954,186.13616756151603,252.45141969468423,APP_public_implementation,67 +100000,95825,53247,504.1899295590921,6342,64.77432820245238,5039,51.94886511870597,1881,19.18079833028959,77.36488025655099,79.67965000303217,63.35773544642036,65.07091381351171,77.12431104552113,79.44274975451286,63.266623359596046,64.98423172560652,0.2405692110298645,236.90024851930505,0.0911120868243102,86.68208790518861,233.31858,163.29494981028282,243483.80902687192,170409.3188732406,422.39989,273.70549573196774,440147.6441429689,284974.7829188288,491.56781,238.9355347683928,509049.047743282,246264.5752032536,3525.36932,1651.153129548693,3634725.4787372816,1678922.8624562412,1154.47314,524.7127950462419,1188939.1703626402,531877.9094681863,1832.50306,786.3686916844085,1870813.5246543176,784014.3641746811,0.43373,100000,0,1060539,11067.445864857811,0,0.0,0,0.0,35027,364.8630315679624,0,0.0,44422,459.72345421340987,1216951,0,43706,0,0,20905,0,0,73,0.7618053743803809,0,0.0,0,0.0,0,0.0,0.06342,0.1462199986166509,0.2965941343424787,0.01881,0.3486901535682023,0.6513098464317977,23.48776363483451,4.017913652335451,0.3187140305616193,0.27545147846795,0.2028180194483032,0.2030164715221274,11.202203776475052,6.0189445851944745,20.22880156542824,13809.645697647798,58.164052169501694,17.098165989821553,18.35712630189892,11.512761657913458,11.195998219867771,0.5860289740027783,0.8040345821325648,0.6967621419676214,0.581622678396872,0.1203522504892367,0.7545811518324608,0.9176672384219554,0.8506493506493507,0.764,0.1459227467811159,0.5126744517231558,0.7217391304347827,0.6346153846153846,0.5226390685640362,0.1128010139416983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026131874810088,0.005454397988564,0.0081987174283626,0.0106650956811441,0.0133413327096531,0.0156498187594184,0.0184611307060286,0.0209281907834289,0.0232356068040562,0.0254465428118122,0.0281535686467429,0.0306846053590304,0.0332586486875372,0.0357249457075515,0.0382216816302969,0.0406528404339881,0.0432970283716552,0.0455878239066692,0.0480131246949858,0.0505633758856393,0.0684947223497016,0.0853523423291594,0.100523779593547,0.1152670873980111,0.1296220235274293,0.1481763078417707,0.1628367712339361,0.1763661492664257,0.1889856185720991,0.2002635187248264,0.2154738337063177,0.2290193534436155,0.2415078347423554,0.2534735876261633,0.2632533497477384,0.2735669564832636,0.2830478822388874,0.2920401698456561,0.3014465173706687,0.3095951509606587,0.3173222434009126,0.3243921806758997,0.3305082742316785,0.3355910298446736,0.3407133921956788,0.3458852222755996,0.3499599759855913,0.3543043831994305,0.3578432640811363,0.3620194461279017,0.3592485004975927,0.3570770605623152,0.3544724609099873,0.3525578034682081,0.3504216303038415,0.3462021824423737,0.3425821693012637,0.3428435098803823,0.3426363760964912,0.3435312651044557,0.3449924698795181,0.3464776427607021,0.3474093536521282,0.3479956954533226,0.3487667676330593,0.3499778363015306,0.3510378163207279,0.3569475437659113,0.3616468191238978,0.3656903765690376,0.3685536319501694,0.3756483610502112,0.3779898218829516,0.380250326345696,0.3847762045044189,0.390377515779445,0.3936071649166152,0.3991803278688524,0.4054726368159204,0.4066615027110767,0.0,2.355024782174444,67.06979371370245,187.33406095911064,257.0348173874334,APP_public_implementation,68 +100000,95623,52496,497.67315394831786,6298,64.45102119782896,5072,52.30959078882695,1976,20.21480187820921,77.2563444549925,79.66888107502875,63.27473565930678,65.05671415252085,77.01446227761055,79.42792840812153,63.184786225989534,64.96985825794533,0.241882177381953,240.95266690721928,0.0899494333172441,86.85589457552112,232.64274,162.8199175271624,243291.6139422524,170272.75605990444,423.55027,274.31743398131306,442213.8920552587,286150.7768039758,485.0797,235.02022644590303,502522.8030913065,242068.21699922255,3575.73468,1661.9420114408615,3692404.567938676,1691089.6889391942,1195.84786,538.9875328744986,1232827.6878993546,545900.5604033531,1923.48732,807.8246545794111,1970691.319034124,812201.5753968587,0.42941,100000,0,1057467,11058.709724647835,0,0.0,0,0.0,35149,366.8259728308043,0,0.0,43905,454.3676730493709,1211783,0,43602,0,0,20779,0,0,71,0.7320414544617926,0,0.0,1,0.0104577350637398,0,0.0,0.06298,0.1466663561631075,0.3137503969514131,0.01976,0.3565388100271821,0.6434611899728179,23.607224361051397,4.179253574785169,0.3170347003154574,0.2667586750788643,0.2107649842271293,0.2054416403785489,11.35063610610543,6.117719655479068,21.139885284355497,13697.542402745465,58.48091121825786,16.725730691048042,18.349929257156557,11.678095946961392,11.72715532309186,0.5725552050473186,0.8033998521803399,0.6828358208955224,0.5748560460652591,0.1122544434050514,0.7538983050847458,0.8998242530755711,0.8863109048723898,0.7380952380952381,0.1434977578475336,0.498192938559911,0.7334183673469388,0.6083262531860663,0.5227848101265823,0.1040189125295508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024915176988909,0.00543263432087,0.0077837201514121,0.0105757215567949,0.0132770373384881,0.0157696891904281,0.0184225559001142,0.0207916138787854,0.0232596199087617,0.0257032802671747,0.0282076013790838,0.0306044848210798,0.0330570854995624,0.0357043437019929,0.0383244667114301,0.0409768211920529,0.0432281138236666,0.0452930543724418,0.0477439227439227,0.0502884204157843,0.0670986622073578,0.0834468308014667,0.0992335958005249,0.1137837382626636,0.1276645139504453,0.1456719576719576,0.160054763117677,0.1734180989500138,0.1867124122230416,0.1977893437785051,0.2117291936179387,0.2256771397616468,0.2379500027231632,0.2492575098359398,0.2599819112326833,0.2711337573961213,0.2808993791599082,0.2901004271818397,0.2981971536397945,0.3070639391470956,0.3143953890222546,0.3211190975927207,0.3269301503304422,0.332400691675873,0.3384482359675081,0.3442631052247933,0.3499134622620212,0.35467540582242,0.358609323089701,0.3615642930801978,0.3592847503373819,0.3555396040970707,0.3526134178074442,0.350253217825374,0.3486979633279579,0.3441951429847391,0.3411530815109344,0.3407988917109212,0.3416811434665199,0.3423137022468883,0.3428242792223709,0.3436866176178166,0.3445502021563342,0.3447464539404396,0.3458016003084932,0.3475569947509989,0.3490797896662094,0.3535916824196597,0.3583271987941249,0.3611243260386933,0.3653076082999636,0.366813618739045,0.3687634204875584,0.3749239659367396,0.3779797792412577,0.3853038153556288,0.3861788617886179,0.3843537414965986,0.3883495145631068,0.3923611111111111,0.0,2.864878987858352,64.3050704331163,193.5934374641369,262.6411558800747,APP_public_implementation,69 +100000,95674,52729,499.299705249075,6363,64.84520350356418,5060,52.10401990091352,1986,20.22493049313293,77.32722884548278,79.70429334386876,63.32110870231941,65.07585814908596,77.07197393032556,79.45441509861845,63.22522171680089,64.9854718209959,0.2552549151572236,249.8782452503008,0.0958869855185255,90.3863280900623,231.99924,162.4310117037203,242488.178606518,169774.51159112147,427.52403,277.0238096321464,446093.4736710078,288791.05624711345,493.13897,239.17417805122227,510589.2719025022,246143.71908694325,3557.74899,1661.1326221671573,3668525.158350231,1686379.871840901,1185.71964,537.4685458160404,1220508.497606455,542946.0520267149,1922.15644,822.4857658260471,1960453.3729121808,817795.5766149294,0.43154,100000,0,1054542,11022.189936659906,0,0.0,0,0.0,35458,369.818341451178,0,0.0,44645,461.776449192048,1213907,0,43664,0,0,20708,0,0,82,0.8570771578485272,0,0.0,0,0.0,0,0.0,0.06363,0.147448672197247,0.3121169259783121,0.01986,0.3565844858689116,0.6434155141310884,23.44280139737432,4.141108590122741,0.3079051383399209,0.2727272727272727,0.2037549407114624,0.2156126482213438,11.56215127338218,6.416079947966791,21.43464619515637,13779.207587809096,58.40404602849747,16.973785447696134,17.792660883545064,12.241208908985676,11.396390788270605,0.5897233201581028,0.8340579710144927,0.6803594351732991,0.5976168652612283,0.1173617846750727,0.7592838196286472,0.9346642468239564,0.8724373576309795,0.7201365187713311,0.16,0.5177364864864865,0.767189384800965,0.6050044682752458,0.5526315789473685,0.1054590570719603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026423957721667,0.0053207122660153,0.008136349802171,0.010573143605838,0.0132396457225368,0.0159245721034893,0.0185895213427691,0.0211105777578054,0.0233775796126234,0.0262260499124432,0.0286534714388267,0.0312641222628486,0.03389220325036,0.0363119281180446,0.0388676168557068,0.0412120585345674,0.0434823149126624,0.0459208040034053,0.0483887744700326,0.0507015239643921,0.0685440909185869,0.085173633642434,0.1006818420224483,0.1150471340796229,0.1291506687481541,0.14675948456444,0.1600950975917808,0.1747816826411075,0.1873310323456183,0.1991158988004549,0.213764719825032,0.2279651383099659,0.2403045961381561,0.2514985779916867,0.2624134552939493,0.2732450551277079,0.2830877427997321,0.2930923902647598,0.3019332720316952,0.3098943411794366,0.3181339108882223,0.3242056709358683,0.3303567198825146,0.3346802234958394,0.340491506256308,0.3463636139285802,0.3511031484520841,0.3550614767152959,0.3590378630705394,0.3622945187377768,0.3596388225290521,0.3563367278038832,0.3536724758343328,0.3502733346831342,0.3480933527818295,0.34472531694199,0.3407882414564848,0.3403070859676492,0.3403837282807401,0.3410444832875539,0.341994421460529,0.3425315055505076,0.3438501665514424,0.3448514940060834,0.3470134874759152,0.3474762253108998,0.350215671151484,0.353943555499559,0.3584918907533525,0.3624930351030804,0.3669153659541356,0.3702020742007912,0.3732742241925269,0.3770277542861536,0.3834729626808835,0.3848731450454763,0.3861631326420058,0.3852592895059208,0.3850638534147695,0.3842879256965944,0.0,3.0752106799743872,65.64035856026806,192.2536894260712,256.46389720734294,APP_public_implementation,70 +100000,95778,53115,503.570757376433,6317,64.69126521748208,5010,51.72377790306751,1958,20.07767963415398,77.38146625236273,79.70351528295895,63.35451413110488,65.06741927022222,77.13241183154523,79.45561593245189,63.262105847158274,64.97759949175439,0.2490544208175009,247.8993505070548,0.0924082839466038,89.8197784678274,233.58698,163.50551926301728,243883.06291632733,170712.38769748516,424.23076,275.1704026780736,442338.5641796655,286709.5348450306,491.21696,237.76491946913688,509114.35820334527,245327.12562544327,3532.90152,1642.3650793418362,3649359.64417716,1675727.0957864688,1158.37099,523.994389464825,1193635.8975965255,531382.9159377137,1901.80102,807.2855314302914,1950983.7332163963,813354.3897643137,0.43165,100000,0,1061759,11085.593768923967,0,0.0,0,0.0,35222,367.1197978658982,0,0.0,44419,459.95948965315625,1209256,0,43472,0,0,20680,0,0,71,0.7412975839963248,0,0.0,1,0.0104408110422017,0,0.0,0.06317,0.1463454187420363,0.3099572581921798,0.01958,0.3525212636695018,0.6474787363304981,23.59581091585392,4.164869123138412,0.3085828343313373,0.2676646706586826,0.2085828343313373,0.2151696606786427,11.481224336184132,6.176117696426021,20.97101517308729,13729.490224800547,57.56049879517121,16.441539507554474,17.635891568402233,11.987356762241896,11.495710956972625,0.5822355289421157,0.7949291573452647,0.7005174644243208,0.5964749536178108,0.1196172248803827,0.7468706536856745,0.9210526315789472,0.8534278959810875,0.78,0.1201716738197424,0.5159574468085106,0.7119901112484549,0.6429207479964381,0.5410628019323671,0.1194581280788177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025514853289593,0.0051886983663707,0.0079021312423286,0.0105207571695507,0.0130151402686406,0.0153103813343648,0.0178775277234181,0.0200818375697711,0.0227727829995913,0.0254542478310689,0.027906404950211,0.0303179537689679,0.032957546733534,0.0354326655823433,0.0378362217388166,0.0402350486930838,0.0427062098368119,0.0453353238163364,0.0478357069400729,0.0500791271031151,0.0673721119529146,0.0830264094086134,0.0998122686131999,0.1147061915273835,0.1291757587257413,0.1472656704421671,0.1627458051377781,0.1759308538947906,0.1892443257676902,0.2000321629589922,0.2141857561143644,0.2271154178923689,0.240060031320689,0.2515562946511602,0.262472073341184,0.2739261492087415,0.2836615755627009,0.2932318980845844,0.3015182657476067,0.3091596927662501,0.3157047384087934,0.3214260616991872,0.3276832142899447,0.3336330935251798,0.3384981831881099,0.3429553942292285,0.3482939402660127,0.3533474958975207,0.3573696145124717,0.3608882672718636,0.3581882565200415,0.3556747833264548,0.3538014991827763,0.3505824470009406,0.3480746044268469,0.3447303057250621,0.3414429530201342,0.3410932834596581,0.3410224013112963,0.3408293091466348,0.3415669409124906,0.342701722574796,0.3432005853454583,0.3430927742887155,0.3433093939903442,0.3456703365347076,0.3468714448236633,0.3518443072487386,0.3553290602780988,0.3580565707929445,0.361805840280625,0.3661844963704763,0.3718413810357768,0.3712425229045203,0.3737983034872761,0.3791390728476821,0.3828493233997263,0.386459802538787,0.3932491767288694,0.390318862850557,0.0,2.1593266518094336,63.26997985345917,194.00063489370507,256.90279296813753,APP_public_implementation,71 +100000,95746,52748,498.3915777160404,6316,64.50400016710881,5081,52.378167234140335,1914,19.530842019509954,77.31912755708531,79.6700227821312,63.32066847763053,65.05879236794705,77.07788823499219,79.43289682595598,63.22855232113592,64.97165249659875,0.2412393220931221,237.1259561752197,0.0921161564946118,87.13987134829893,232.85328,162.98853244702616,243198.27460154996,170229.47304426937,426.21081,276.54300691172654,444385.3738015165,288068.6538695784,492.56428,238.57810784385103,510167.3072504334,245884.2238539231,3568.91516,1658.1810569075749,3681645.092223174,1686312.1304786296,1155.44971,524.6921034334775,1189272.5544670273,530563.7603160479,1861.50312,792.470284857379,1902308.1486432853,790650.9400401082,0.43055,100000,0,1058424,11054.46702734318,0,0.0,0,0.0,35302,367.984041108767,0,0.0,44564,461.2516449773359,1210806,0,43594,0,0,20640,0,0,77,0.7937668414346292,0,0.0,2,0.0208886010903849,0,0.0,0.06316,0.1466960864011148,0.3030398986700443,0.01914,0.3527008624602814,0.6472991375397186,23.600859926024636,4.06099916380494,0.3129305254871088,0.2731745719346585,0.2042904939972446,0.209604408580988,11.219861821767878,6.055689018671359,20.46160929324848,13742.143830136894,58.53865765698388,17.13021411674274,18.07670134126957,12.030622827783132,11.301119371188442,0.5809879944892737,0.803314121037464,0.7050314465408805,0.571830985915493,0.1030828516377649,0.7425675675675676,0.911190053285968,0.8445945945945946,0.7011494252873564,0.1320754716981132,0.5145792835323522,0.7296969696969697,0.6509598603839442,0.5298507462686567,0.0956416464891041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025620512612785,0.0055634937524701,0.0085020900125806,0.0110402405086432,0.0138104971982386,0.016294440540568,0.0191791995921488,0.0217497855654944,0.0244678022944316,0.0273131180770254,0.0300308613494919,0.032795638200655,0.035367559340162,0.0374155266194165,0.0398060255881139,0.0422803046745005,0.0446611590782036,0.0470949471478511,0.0492559647518497,0.0512467970751828,0.0687106573549215,0.0855424207553091,0.1020590117163326,0.1162502103314824,0.1307341142236607,0.1488347009559259,0.1630161541806765,0.1765807563794241,0.1890391063838875,0.2010592788755347,0.2154734212113379,0.2292338666031649,0.2410026545976761,0.2521602170061033,0.2623017576297861,0.2733385769200944,0.2828589613318892,0.2912295709333213,0.2999137069670269,0.3072199436335724,0.3135379270411118,0.3201269127650357,0.3263628070092295,0.3313125007503091,0.3373842803790616,0.3421081875316401,0.3460058411361386,0.3506455436458878,0.3551032058018397,0.3588720334055711,0.3566448654844582,0.3536876041939351,0.3510896567299006,0.348907266065144,0.346418261361269,0.3428659097882786,0.3393253791965475,0.3392748499547809,0.3396094124085094,0.3396695842059102,0.339126023897197,0.3393992198174294,0.3412875283828105,0.3407688337335338,0.3413740752343543,0.3434586151957584,0.3447429272888178,0.3503002483729996,0.3554064497997611,0.3604324238704312,0.3645861724357227,0.3675658453695837,0.3725823725823726,0.377631980469942,0.3771046938199605,0.3802535806527354,0.3819696969696969,0.3869670152855993,0.3856673960612691,0.3865959863687997,0.0,2.6536651002739244,64.61352232350315,195.0158831686251,261.09612242228394,APP_public_implementation,72 +100000,95664,52904,501.3484696437531,6309,64.40249205552767,5013,51.63907007860846,1967,20.09115236661649,77.34181859432726,79.72469269870194,63.3271521787835,65.08550134725597,77.0854773044377,79.47222357589334,63.230617790541935,64.99373557388172,0.256341289889562,252.4691228086056,0.0965343882415652,91.76577337424874,232.9866,163.03625132563783,243546.5587890952,170425.69610892062,426.11988,276.3382590421756,444697.2528850978,288127.02023977216,489.80442,237.4425551763919,506840.83876902494,244206.0756908976,3530.80935,1655.8788381262857,3637895.4047499583,1678018.8104472812,1184.04823,541.9918325644792,1213790.725873892,542722.0564686786,1912.25898,817.5862787707835,1954463.5808663657,815273.3718474255,0.43185,100000,0,1059030,11070.298126777052,0,0.0,0,0.0,35427,369.5538551597257,0,0.0,44339,458.3960528516474,1211534,0,43585,0,0,20560,0,0,69,0.7212744606121425,0,0.0,0,0.0,0,0.0,0.06309,0.1460923931920806,0.3117768267554287,0.01967,0.3580078716318498,0.6419921283681501,23.605981851443897,4.098230597666669,0.3165769000598444,0.2691003391182924,0.2062637143427089,0.2080590464791541,11.326147515726738,6.134511862526212,21.075874167904104,13727.85488331139,57.769380386657744,16.705521694230047,17.997129842078746,11.677852089435952,11.388876760913,0.5888689407540395,0.8265381764269829,0.6855702583490864,0.6011505273250239,0.1179883945841392,0.7716216216216216,0.9250457038391224,0.8926174496644296,0.803088803088803,0.1277533039647577,0.5123124823096519,0.7593516209476309,0.6043859649122807,0.5344387755102041,0.1152416356877323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026025052910856,0.0051795615110939,0.0078021164128526,0.0104913570717637,0.0130760157806971,0.0156491813961065,0.0183673261372555,0.0210283474372977,0.023456903688713,0.0259292243753134,0.0285559018948404,0.0308003574032803,0.0334660452866681,0.0362508501123178,0.0388299409603236,0.0412499094943058,0.0434814147003657,0.0457136331073434,0.0481664499349804,0.0505196876661488,0.0674835730776061,0.0838167235566351,0.0995675539507935,0.1140704416546527,0.1278377922187526,0.1460411487808748,0.1610229744786968,0.1753627662858907,0.1875300528930918,0.1984919502751171,0.2131908614022426,0.2271158568909372,0.2393612392307023,0.250270654491771,0.2613676379963024,0.2723656950399397,0.2821749567353319,0.2907018609779698,0.2988603600535767,0.3073107587976539,0.314819527996298,0.3219825468497765,0.328368274099664,0.3342401725790987,0.3391325476855789,0.3440212031558185,0.3490930939952683,0.3535793414317366,0.3575411026399046,0.3610065385377451,0.3586640069010136,0.3553177128531482,0.3523094508968262,0.3503913653659736,0.3490710577595311,0.3460517228148261,0.3426339639382704,0.3424243419971741,0.3420345883439675,0.342281519584204,0.3421826147192631,0.3426639781757798,0.3442306886290289,0.3443947191765495,0.3464934440033682,0.3480442110214,0.3491048228205933,0.3534455582876237,0.355901124863359,0.3588251703662376,0.3635449057984269,0.3677848775292864,0.3700658926890492,0.3725490196078431,0.3757133501730751,0.3810939357907253,0.3899005355776587,0.3933830946136776,0.3985024958402662,0.4063222821896685,0.0,2.974306894262801,64.22100195052118,192.2028366811155,254.27794793142203,APP_public_implementation,73 +100000,95680,53295,504.7867892976588,6310,64.54849498327759,4988,51.54682274247492,1838,18.79180602006689,77.38307130315455,79.7615696670362,63.34642469116329,65.09829402948664,77.15220415620844,79.53266115403702,63.25964291158345,65.0150852878729,0.2308671469461103,228.90851299918324,0.0867817795798444,83.20874161373126,233.4849,163.43386662846655,244026.86036789295,170812.98769697594,429.54529,278.4083282408497,448371.9063545151,290411.0349507209,496.0205,240.0559026078608,515545.8925585284,248553.151245891,3472.95366,1606.1040902251166,3588457.525083612,1637318.7606867838,1177.05588,529.6524153390376,1212923.181438127,536294.3854491067,1791.2192,757.2479041927338,1833176.860367893,757770.678185281,0.43443,100000,0,1061295,11092.130016722407,0,0.0,0,0.0,35629,371.760033444816,0,0.0,44819,465.48913043478257,1205946,0,43483,0,0,20849,0,0,93,0.971989966555184,0,0.0,0,0.0,0,0.0,0.0631,0.1452477959625256,0.291283676703645,0.01838,0.3464161236550993,0.6535838763449008,23.756846915124157,4.099210028248836,0.3045308740978348,0.2760625501202887,0.2044907778668805,0.214915797914996,11.187839461413354,6.018212722794935,19.43845632262228,13819.055716631548,57.02937236936448,16.883703508796046,17.24673358930882,11.87274912864168,11.026186142617917,0.5892141138732959,0.8155410312273057,0.7004608294930875,0.5830223880597015,0.1245098039215686,0.7673611111111112,0.9316987740805605,0.8674698795180723,0.7584745762711864,0.1559633027522936,0.5169109357384442,0.7332506203473945,0.6376811594202898,0.5334928229665071,0.1159600997506234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027636334187056,0.0053188256033067,0.0076469812679384,0.0103172346561598,0.0130039143917441,0.0155338619868277,0.0182470590633855,0.0209556084067409,0.0232028047795733,0.0257664943440651,0.0285942770435834,0.0314117308798159,0.0338876718809457,0.0362263606773515,0.0386654837311985,0.0412997643556988,0.0439759660209261,0.0462697720762236,0.0488981790576025,0.0512339503084875,0.0693145847915339,0.0854402881162515,0.1012012799664271,0.115500688755928,0.1297053923532761,0.1479139794041149,0.1626698895320484,0.1757091651687425,0.1889887304704174,0.2017381240690534,0.2161019228906847,0.2302068801436157,0.2420012393594468,0.2531349418928817,0.2635632474776925,0.2746132364023228,0.2846579993745253,0.2939341030695578,0.3025339890735209,0.3101397118657665,0.3178692964789221,0.3241908106526192,0.3310116086235489,0.3359253125974992,0.3411650249300741,0.3462829085346295,0.3507418769172979,0.3551787351054079,0.3583350611652498,0.3624082193228038,0.3599935390952041,0.3575180113292636,0.3549430914897508,0.3515526874269132,0.3481700258244531,0.345270539241204,0.3420144932122401,0.3413825912923652,0.3414113103071112,0.3424251619928241,0.3427227417819342,0.3435402932205058,0.3457099325861457,0.3458310141378158,0.3469168260038241,0.3487871877267544,0.349591427036503,0.3537410722639802,0.3576764644278433,0.3592034318548546,0.3638214140317546,0.3676061512622684,0.3719538797133063,0.3764104107115992,0.3770249004906044,0.3846243447874199,0.388455772113943,0.393808777429467,0.3989333333333333,0.4019970414201183,0.0,2.192978433444895,63.32686322693284,185.8356001190676,260.40290246063427,APP_public_implementation,74 +100000,95674,52712,500.4494428998474,6283,64.06129146894662,5011,51.59186403829671,1897,19.29468821205343,77.3960056150407,79.7798053319323,63.35197710932333,65.11270076386693,77.15139376516662,79.5423784576974,63.25922667724164,65.02637330607378,0.2446118498740901,237.42687423489883,0.0927504320816865,86.32745779314632,232.87506,162.8800422435207,243404.7494617137,170244.8337516156,426.14509,276.7480675786091,444614.9110521145,288465.22296048974,487.27761,236.7464685605794,504545.9790538704,243717.7402194915,3511.55325,1646.8773457126454,3616697.7757802536,1668017.9221678087,1157.53939,528.8725036737135,1188272.6550578005,531622.5975120463,1847.16106,789.251515988202,1880810.8786086084,782626.3815549345,0.43012,100000,0,1058523,11063.852248259716,0,0.0,0,0.0,35367,368.81493404686745,0,0.0,44026,455.46334427326127,1216642,0,43641,0,0,20934,0,0,98,1.0138595647720383,0,0.0,1,0.0104521604615674,0,0.0,0.06283,0.1460755138100995,0.3019258316091039,0.01897,0.3520268210911307,0.6479731789088693,23.907602893349328,4.021333192907007,0.3129115944921173,0.2749950109758531,0.2057473558172021,0.2063460387148273,11.342121595556216,6.125690792061309,20.261893436362,13632.439284094076,57.85607216248225,17.041712391190188,17.886627040470028,11.681934525287224,11.245798205534811,0.5891039712632209,0.8251088534107403,0.7040816326530612,0.5773694390715667,0.110572259941804,0.7736351531291611,0.9365351629502572,0.8738317757009346,0.7601476014760148,0.1636363636363636,0.5101168424052437,0.7433962264150943,0.6403508771929824,0.5124508519003932,0.096177558569667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021019682526,0.0051408407860315,0.0078459633381376,0.0103429006858013,0.0129697068337639,0.0155174520425202,0.0179348878942055,0.0207250712105279,0.0231143552311435,0.0255788245409322,0.0281115439819561,0.0307607010482869,0.0327460841483858,0.0350837436393976,0.0373205939102531,0.0396749917300694,0.0423775340025068,0.0446887359471832,0.0471683394872328,0.0493845175680887,0.0662161032883466,0.0822003830575528,0.0980951581773936,0.1129651242258882,0.1273283086491329,0.1452322531517048,0.1599185128596893,0.1734626522442722,0.186147879875645,0.1980327587501475,0.2124952873377497,0.2259833830974945,0.2389565217391304,0.2497840751309215,0.2607003035235121,0.2715304382487765,0.2811119539511847,0.2899829190452645,0.2990231630479126,0.3065065751858205,0.3134462807054013,0.3207183642966405,0.3259611067791403,0.3319371477124496,0.3371253926479328,0.3428466031355672,0.3467159205780679,0.3504623698197455,0.3549115786756163,0.3581840187333912,0.3554747268676348,0.3534647083830446,0.351133345512289,0.348599114623138,0.3466567828020756,0.3427558055984467,0.3386028423731761,0.3385344106993591,0.3389561657854341,0.3398838369441277,0.3398395871894105,0.340708923610427,0.3425614920826987,0.3430439423590108,0.3438518305539582,0.3448257957318656,0.3464970679056064,0.3503622165772885,0.3545734481069354,0.3565934501625565,0.3595290251916758,0.3640954760512466,0.3660522661280141,0.3680597925564368,0.3687346321165122,0.3693154619435136,0.3738117141980987,0.3726606997558991,0.3779679734953065,0.3809891808346213,0.0,2.937951964410849,65.31407288021033,193.1960403396942,249.4128399728032,APP_public_implementation,75 +100000,95824,52736,498.47637335114376,6385,65.3698447153114,5053,52.17899482384372,1898,19.441893471364168,77.38566316619061,79.70498509193834,63.36611244363343,65.08343400634075,77.13988553169891,79.46109149250962,63.27380405313163,64.99433689632822,0.2457776344917022,243.8935994287164,0.0923083905017989,89.09711001253129,233.12124,163.0923304134783,243280.1803306061,170199.43857016848,424.52686,275.0993950869611,442382.05460010015,286443.2383342843,492.64729,238.47032821046383,510601.7594757055,246155.5776197608,3533.30374,1645.9225234049811,3651669.059943229,1682075.4223466602,1174.12334,530.5638474329093,1212850.340207046,541296.2614616248,1841.14916,784.2680806636448,1888324.323760227,790639.8065900983,0.43131,100000,0,1059642,11058.19001502755,0,0.0,0,0.0,35189,366.6200534312907,0,0.0,44573,461.6275672065453,1217133,0,43794,0,0,20701,0,0,69,0.7096343296042745,0,0.0,0,0.0,0,0.0,0.06385,0.148037374510213,0.2972592012529366,0.01898,0.3553108026554013,0.6446891973445986,23.78425374968479,4.067569539633531,0.3207995250346329,0.2687512368889768,0.2002770631308133,0.2101721749455768,11.253383923141188,6.062216116918055,20.531653820493226,13708.909922485836,58.09137392391453,16.636424899014475,18.57089136314588,11.77584134633707,11.10821631541712,0.5842074015436375,0.7982326951399117,0.690314620604565,0.5894538606403014,0.1215415019762845,0.7523427041499331,0.9302325581395348,0.8492239467849224,0.6966292134831461,0.1612903225806451,0.5136274234335487,0.7058823529411765,0.629059829059829,0.5534591194968553,0.110691823899371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028359312489238,0.0052107093255476,0.0077640539525631,0.0105764736959746,0.0131921559054477,0.0156806842480399,0.0181532784963662,0.0209715277069088,0.0235065665082528,0.0260443316482122,0.0285515177601508,0.0310591519804571,0.0335871900019527,0.0360480915716226,0.0387831915442124,0.041151498249202,0.0435817312666846,0.0459162520729684,0.0483661623765666,0.0508012486992715,0.068241086516596,0.0846844586613144,0.1002316343321908,0.115063772562039,0.1290618186414434,0.1463453272360514,0.1599453395620809,0.1728151005962439,0.1854601305516447,0.1979436649887544,0.2120987256009033,0.2254558810820154,0.2376909463992964,0.2498335243709404,0.2592812266596371,0.2706746132666939,0.2810456059812584,0.2908567961710446,0.2996838634380701,0.3073299028016009,0.3150013864497643,0.3216987299215539,0.328944727178264,0.334365621226071,0.3396381877885349,0.3451665622196827,0.3492653942654566,0.3534785753257794,0.3570155499302578,0.3605402772475349,0.3577700385913485,0.3545953077969735,0.3522872782022598,0.3494929650709271,0.346669836128898,0.3434569414649095,0.3406558572266337,0.3408844320236725,0.3420322613788143,0.3423025315323374,0.3418822647169104,0.3428328286726434,0.3429545167669457,0.3444245007852816,0.3453614472381228,0.346729192318776,0.3468090588942651,0.3507026685615032,0.3554118976967642,0.3586058210564139,0.3634907559948746,0.3686199371972963,0.3732398812906485,0.377492010348501,0.3844702330408529,0.3863501483679525,0.3866074164878946,0.3891815235008103,0.3870967741935484,0.3855559801299197,0.0,2.0281392088924424,65.63792530447319,191.69124469201,257.80897487749303,APP_public_implementation,76 +100000,95745,52834,500.0365554337041,6260,63.77356519922711,4974,51.13582954723484,1936,19.687712152070603,77.37657405990127,79.71949827939198,63.3458979718325,65.0784209298651,77.12816459755697,79.47775184127177,63.25170409941588,64.98978725948189,0.2484094623442985,241.74643812021657,0.0941938724166178,88.63367038321712,234.50372,163.9666042255066,244925.2911379184,171253.43801295795,427.6594,277.03667087685506,445851.2402736436,288546.2707168693,490.30534,238.41380592000957,507093.1954671263,245138.36974956072,3475.41367,1630.8480579141433,3576015.3532821555,1650370.1000165057,1119.78294,516.4114471676558,1147017.3063867565,517091.3862688011,1867.86344,797.7403877395734,1901362.703013212,793007.1314964883,0.43195,100000,0,1065926,11132.967778996292,0,0.0,0,0.0,35528,370.222988145595,0,0.0,44364,458.32158337249984,1204130,0,43359,0,0,20712,0,0,73,0.7519974933416889,0,0.0,0,0.0,0,0.0,0.0626,0.1449241810394721,0.3092651757188498,0.01936,0.3494214372716199,0.65057856272838,23.86627542137682,4.104506809504464,0.3226779252110977,0.2635705669481303,0.1966224366706875,0.2171290711700844,11.354424926412849,6.218968889808386,20.783496581631077,13707.29860247092,57.29352712309882,16.088815182437262,18.53174292832865,12.009855065342922,10.66311394698998,0.5840369923602734,0.7856598016781083,0.7133956386292835,0.5638888888888889,0.123721881390593,0.7666009204470743,0.8943533697632058,0.8971774193548387,0.736,0.2035398230088495,0.5036200405444541,0.7073490813648294,0.6311992786293958,0.5120481927710844,0.0997340425531914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028157601539552,0.0055854595586371,0.0083808518841697,0.0109208013328457,0.0136685379546009,0.0163440290832068,0.0187517206921516,0.0214807857230367,0.0238808411453807,0.026266493331013,0.0288414234175139,0.0312355652272097,0.0336372888674143,0.0360655400047373,0.0387174646405249,0.041137801298218,0.0437997017892644,0.0464117512811469,0.0486220124543876,0.0508748177463028,0.0675712347354138,0.0845979271468462,0.1006332166145975,0.1156594850236468,0.1295833728565255,0.1475581395348837,0.161079304495335,0.1742229977761935,0.1869359507000886,0.1983270777479892,0.2128869643895818,0.2261925374426456,0.2379548224233983,0.2491026482818997,0.2595161805349101,0.2696038758744554,0.279614448142605,0.2896896423626355,0.2990906717222745,0.3071821305841924,0.314699313808306,0.3215229851444613,0.3289288460401017,0.3341878294202204,0.3392138995200777,0.3440739599383667,0.348293671139345,0.3524866232000102,0.3572860746394153,0.3602247694925538,0.3575914892472395,0.3548537883058141,0.353151429013692,0.3499299446779622,0.3471574884963633,0.3439446578613079,0.3393453256759536,0.3396897750377123,0.3400604415305024,0.3406538557524332,0.3422876625079615,0.3426044730452634,0.3432867074294329,0.3433584518660543,0.344971564322223,0.345313069276011,0.345796252594467,0.351088829703901,0.3549167397020157,0.3580413475655728,0.3591542877973206,0.3624880585925061,0.3660434182457021,0.3711770509220611,0.3728575442540039,0.3753551136363636,0.3840867440439829,0.3862455017992803,0.3810429114611624,0.380772142316427,0.0,3.097558175919973,65.88224261744188,184.3954141712956,250.4746471869556,APP_public_implementation,77 +100000,95747,52882,501.6345159639466,6219,63.64690277502167,4921,50.769214701243904,1862,18.997984271047656,77.3313489084019,79.69843818272695,63.31030609897547,65.06347463565957,77.09524726121316,79.46562303033755,63.221628108213125,64.9790231658986,0.2361016471887467,232.8151523893922,0.088677990762342,84.45146976097817,233.49304,163.43425052248372,243864.37172966253,170693.65069863672,425.32358,275.8340514466146,443574.6603026727,287446.2788876879,493.0396,238.88913016199243,511052.0225176768,246526.727554266,3475.14002,1609.9194047494711,3583263.830720545,1635295.581685585,1125.69008,504.74825001414223,1155908.3626641042,507622.7534638165,1816.5144,770.012238633658,1854312.323101507,766960.0229084519,0.42993,100000,0,1061332,11084.744169530117,0,0.0,0,0.0,35297,367.9801978129863,0,0.0,44448,460.3904038768839,1207174,0,43383,0,0,20853,0,0,86,0.8982004658109393,0,0.0,3,0.0313325743887537,0,0.0,0.06219,0.144651454888005,0.2994050490432545,0.01862,0.3470985569542524,0.6529014430457476,23.83629593036918,4.09461678133403,0.315179841495631,0.2686445844340581,0.2070717333875228,0.209103840682788,11.058129380739638,5.833827497294578,19.803605747740857,13636.506706458516,56.50290935254323,16.253870129283264,17.620460331187754,11.45017297185048,11.17840592022174,0.5860597439544808,0.8237518910741302,0.716956802063185,0.5665694849368319,0.0981354268891069,0.750514050719671,0.9285714285714286,0.8680555555555556,0.7208333333333333,0.118942731277533,0.5167533217793183,0.7467191601049868,0.6586237712243074,0.5196451204055766,0.0921717171717171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028267763604494,0.0053033452650151,0.0080081197665567,0.0107396870554765,0.013214917902704,0.0157448238636942,0.0182316892863333,0.0209522448104393,0.0234941545888778,0.0254214720281869,0.0279680833606826,0.0301025335442907,0.0328081423469965,0.035339949911882,0.037603220478943,0.0399975182511943,0.0422896905935467,0.0448390009027986,0.0473903597675699,0.0499010519737527,0.0665984676089271,0.0830935364717946,0.0991618500141614,0.1134853200975855,0.1278798806398211,0.1460878579210696,0.1606796064989228,0.1740376216953196,0.1863830696879008,0.197722711711615,0.2117040885621584,0.2250454899922017,0.2376120118027503,0.2481605570884246,0.2583526043387292,0.2697796653397057,0.2813805428348039,0.2910155370412069,0.2994597171460352,0.3070954580358268,0.3140376266280753,0.3211805352228143,0.3276395490807363,0.3323124594653023,0.3376694492443233,0.3423520122387544,0.3467550033815094,0.3505317455263325,0.3538437593224296,0.3569042242733959,0.3536141655886158,0.3514045175667868,0.3488080654472746,0.3463010296177562,0.3453353699227381,0.3415991438617948,0.3377757425508061,0.3374056302507247,0.3377792938768548,0.3385029023182935,0.3398501018634469,0.3404469339855229,0.3416352990380594,0.34198776621869,0.3442961398117918,0.3458294283036551,0.3461604047064173,0.3515475255302435,0.3560462004366505,0.3608432294572408,0.3651749463984307,0.3693220967827423,0.3758326002262159,0.3784929950776221,0.3829055059523809,0.3932231020027946,0.4011071214841412,0.4078869923484403,0.4113399304626906,0.4133283414451516,0.0,2.3504483124797777,64.16606727501663,181.52855361359784,254.4466185881268,APP_public_implementation,78 +100000,95474,52752,499.916207553889,6299,64.4782872824015,5012,51.73136141776818,1928,19.71217294760877,77.22623088476638,79.71132988953634,63.24095407219974,65.07548774470685,76.97157475592059,79.46094282585027,63.14498306483002,64.98435224533154,0.2546561288457951,250.3870636860768,0.0959710073697195,91.13549937531218,231.53394,161.97006839111296,242509.93987891992,169648.35284068223,423.69234,274.6866518153644,443028.0180991684,286958.62938115554,489.27813,237.97377159237905,507297.107065798,245446.5080370912,3493.3759,1646.8661761649576,3609337.4112323774,1675292.8296342,1167.89519,534.4895869568602,1206918.1662023168,543485.6054599781,1872.67736,802.6859247331621,1916708.5489243143,803277.1641116975,0.43252,100000,0,1052427,11023.17908540545,0,0.0,0,0.0,35136,367.2308691371473,0,0.0,44251,458.44942078471627,1213178,0,43696,0,0,20623,0,0,94,0.9740871860401784,0,0.0,1,0.0104740557638728,0,0.0,0.06299,0.1456348839360029,0.3060803302111446,0.01928,0.3413417951042611,0.6586582048957389,23.727003928425365,4.139236508984624,0.3138467677573823,0.2769353551476456,0.2067039106145251,0.2025139664804469,11.541251309080256,6.367491000298131,20.948887510076585,13803.581580918057,58.08520541739632,17.073898785770023,17.98585930741175,11.567858872168296,11.457588452046268,0.5824022346368715,0.7853025936599424,0.6891290527654164,0.5832512315270936,0.1476833976833977,0.7651268705270007,0.9196581196581196,0.8708971553610503,0.7372262773722628,0.171945701357466,0.5015827338129496,0.6874221668742216,0.6146953405017921,0.5263157894736842,0.1411042944785276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029183766529867,0.0055078255753801,0.0082136982963429,0.0110930350788002,0.0137644567519139,0.0165010446924527,0.0192042775946693,0.0220301228210001,0.0246247966689514,0.0271305915862379,0.0295310142368845,0.0321307025570898,0.0348349894455027,0.0373575370017018,0.0397383838070735,0.0420769270590671,0.0444912397174303,0.0468300086279483,0.0490810968494749,0.0514598387703103,0.0686171883178059,0.0851126336442518,0.1009485949856974,0.1156760858796125,0.1294123863876559,0.1471093302804808,0.1611695906432748,0.1740415497391137,0.1863344723058302,0.1982112719963021,0.2123028084610151,0.2261707182140649,0.23890215577873,0.2497779824359438,0.2614515399300383,0.2718583638040833,0.2829696766252657,0.2919246253256199,0.3013891891276893,0.3092050881704629,0.3164288200487296,0.3236353398012693,0.3297519974356843,0.3350570634853824,0.341898896274163,0.3470855459417976,0.3514529656594615,0.3557058996559706,0.3589990375360924,0.3629352838289076,0.3603688879273042,0.3578546388053109,0.3551062507064542,0.352159179772352,0.3506172103285825,0.3474384789191349,0.3431473856572818,0.3433800494641385,0.3432044085080084,0.3420915759456212,0.343379270149843,0.3453301606186794,0.34580008399832,0.3456798422515013,0.3469068693477006,0.3482820693433513,0.3514816188004449,0.356251968503937,0.3600422089342244,0.3638135390979238,0.3647839012119826,0.368393037738862,0.3733115536847395,0.375662577616235,0.3771237582397178,0.3796047245936148,0.3851444291609353,0.3854657113613101,0.3887199336466685,0.4003846153846154,0.0,3.017257874426044,66.86231700879041,192.3482650975476,246.5945894562394,APP_public_implementation,79 +100000,95672,53171,503.93009448950585,6430,65.56777322518606,5094,52.272347186219584,1998,20.18354377456309,77.36399481233721,79.74947011183507,63.33329461681414,65.09761362890843,77.09991236225476,79.49575984078503,63.23174932001984,65.00433307854597,0.264082450082455,253.7102710500392,0.1015452967943062,93.28055036246496,233.35686,163.3229120030489,243912.7435404298,170710.64074858787,427.37756,277.92803294252644,445693.8602725981,289484.4024951542,500.35078,243.52708828887816,517416.44368258223,250085.1884457348,3615.77158,1707.319609810772,3712331.5494606574,1717651.556613757,1196.82334,549.9521204674345,1225102.767789949,549115.3296543341,1941.15484,841.1549334303021,1964068.0031775231,824622.1554188426,0.4324,100000,0,1060713,11086.942888201354,0,0.0,0,0.0,35515,370.1291914039636,0,0.0,45243,467.3363157454637,1208058,0,43473,0,0,21083,0,0,76,0.7943808010703236,0,0.0,1,0.0104523789614516,0,0.0,0.0643,0.148704902867715,0.3107309486780715,0.01998,0.3595220313666916,0.6404779686333084,23.369191680408463,4.07052588664224,0.3182175107970161,0.2654102866117,0.2055359246171967,0.2108362779740871,11.32486232763885,6.263822577423415,21.53407812932893,13738.32670678807,58.75243991873909,16.58132668645114,18.694915413228262,12.025905096556173,11.450292722503512,0.5891244601491952,0.8039940828402367,0.7069710055521283,0.5940409683426443,0.1241642788920725,0.7578222778473092,0.9224137931034484,0.8637274549098196,0.7272727272727273,0.1587982832618025,0.5120137299771167,0.7150259067357513,0.6372549019607843,0.5456852791878173,0.1142506142506142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029482983961661,0.0055269909844128,0.0082331681962153,0.0111388905827591,0.0135533893648629,0.0160665892373209,0.0189216206291566,0.0214163160259814,0.0241170875395047,0.0265925311543226,0.029411463086973,0.0317455426834278,0.0340780513896603,0.0366206761532833,0.0389815464641043,0.0413805939283646,0.0436552745806959,0.0460460772104607,0.0484432662820312,0.050774697050212,0.0679722178703848,0.084287658327227,0.0996296412871276,0.1146168570286699,0.1294012228547333,0.1475113409256733,0.1616166972457604,0.175561797752809,0.1877008830847099,0.1986513577546929,0.2126425026643557,0.2253928061290741,0.2395700749540376,0.2516492533231224,0.2611073814423913,0.2724251755687986,0.2828506055025392,0.2918598370617095,0.3006709580736351,0.3090009279307145,0.3162785853161744,0.3232875109681193,0.3295513761902506,0.3352522817496012,0.3403347554972104,0.3443014887114266,0.3489941287665402,0.3529112507313102,0.3566899585921325,0.3603912367193061,0.3585763477886581,0.3556542300184213,0.3531307615441994,0.3495126001877391,0.346584754188369,0.3434215350769983,0.3399463383838383,0.339550774864317,0.3401167242347416,0.3401310868093898,0.3409358804048871,0.34226836682326,0.3434434287865793,0.3430508322892429,0.3440839557167215,0.3438765116096847,0.3446187251792806,0.3478042028438404,0.3520720467177936,0.3554408260524225,0.3605259565949315,0.3630630630630631,0.3662078545270867,0.3723029839326702,0.3759127548601232,0.3761511780887454,0.3761226385877981,0.3806491372226787,0.3837111670864819,0.3824794681267109,0.0,3.5470603409861905,69.07647995025006,183.6557503364084,255.97105302662575,APP_public_implementation,80 +100000,95661,53415,506.5596219985156,6267,64.2268008906451,5063,52.26790437064216,1892,19.3391246171376,77.31725194233033,79.72569207089815,63.30264576078415,65.08494644725755,77.07338363939007,79.48586144694858,63.21106891617747,64.99834754520431,0.2438683029402568,239.83062394957244,0.0915768446066849,86.59890205323961,231.84238,162.30151725983788,242358.30693804164,169663.20366694668,426.58828,276.80778477190694,445247.655784489,288679.3240931591,498.48843,241.697892552857,517284.7032751069,249771.72614748136,3520.08157,1640.5499369120223,3633947.721642049,1669672.8514841744,1144.28098,515.4230529791823,1182116.285633644,525030.8409050801,1837.20038,780.3411061255808,1879037.2042943311,778512.5020161552,0.43453,100000,0,1053829,11016.286679001892,0,0.0,0,0.0,35386,369.199569312468,0,0.0,45015,466.8464682577016,1214688,0,43726,0,0,20894,0,0,92,0.9512758595456874,0,0.0,2,0.0209071617482568,0,0.0,0.06267,0.1442247946056659,0.3018988351683421,0.01892,0.3406978515922596,0.6593021484077404,23.606972891829077,4.098665125725262,0.3122654552636776,0.2850088880110606,0.198498913687537,0.2042267430377246,11.244675831235565,6.054148067460705,20.21424430421725,13893.490556171431,58.199878065616495,17.70521013496056,18.00728274085935,11.575761016279674,10.9116241735169,0.5868062413588782,0.7914067914067914,0.698292220113852,0.6034816247582205,0.1004975124378109,0.7440206851971558,0.8944723618090452,0.8561946902654868,0.7611940298507462,0.1130434782608695,0.5176336746302617,0.7186761229314421,0.6350752878653676,0.5483028720626631,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028772022247662,0.005587385286214,0.008128926190162,0.0105681390929691,0.0131759678486035,0.0160334114291535,0.0186481137657356,0.02138179737861,0.0239612854380454,0.0266172161547445,0.0291374693492289,0.0316080438155717,0.0339283140839561,0.0364043136688867,0.0389779393538792,0.0414386077455534,0.0436540435192768,0.0461008007145156,0.0485173238996982,0.0508220134899867,0.068186567476073,0.0853405663538874,0.1009721376530119,0.1165824915824915,0.1309342954804405,0.1491617983235966,0.1642855626552317,0.1782028479226353,0.1908660474760322,0.2023602617744877,0.2161693418076053,0.2297050067658998,0.2424681091906482,0.253995708718308,0.2638855229240565,0.2744454667390895,0.2845934061028148,0.2943949417217947,0.3030701853910912,0.3108182380287173,0.3180261086936394,0.3253482741277063,0.3320702435789648,0.3371783496007098,0.3423826486571918,0.3483882110561443,0.3521124996869443,0.3563622021196738,0.3597524662748246,0.3638473201924979,0.3611637948428231,0.3582787009167251,0.3554852320675105,0.3530838180742194,0.3516571751446032,0.3493713584789942,0.3464345073209339,0.345046612394958,0.3459123788726627,0.3459742666714189,0.3469666622990098,0.3482706885660139,0.3489834416264934,0.3493000581421351,0.3507219824988549,0.3514982105070665,0.3549527965545763,0.3597750620464327,0.3639300512676452,0.3677275974283673,0.3727978092195345,0.3788281582305401,0.3821133076485821,0.3858629130966952,0.3876356772062294,0.393479549496147,0.3994133086305388,0.3983292583537082,0.4073569482288828,0.4127044503613541,0.0,2.485085838212718,67.95611443839536,181.74031540464756,260.85404187696105,APP_public_implementation,81 +100000,95860,52622,497.85103275610265,6372,65.18881702482787,5061,52.23242228249531,1893,19.413728353849365,77.4717338221379,79.75904392723595,63.40399372213196,65.09094171529627,77.23452467121469,79.52097424664102,63.31500656704912,65.00388406234289,0.2372091509232206,238.06968059493272,0.0889871550828402,87.05765295337642,233.18746,163.166965298998,243258.3559357396,170213.817336739,424.75648,275.0580304422324,442543.0106405174,286379.3870667978,493.7625,239.09579973017293,510844.9718339245,246246.6865639098,3553.44704,1650.488263802304,3670783.4237429583,1685773.2706753656,1162.70395,523.122313171942,1202724.8904652616,535597.8361830474,1846.8665,782.0161954470532,1896371.896515752,790993.265341923,0.42899,100000,0,1059943,11057.197997079074,0,0.0,0,0.0,35299,367.6403087836428,0,0.0,44682,461.96536615898185,1216932,0,43696,0,0,20669,0,0,67,0.6989359482578761,0,0.0,0,0.0,0,0.0,0.06372,0.1485349308841698,0.2970809792843691,0.01893,0.352879424115177,0.6471205758848231,23.648427783220036,4.087338210719141,0.3046828689982216,0.2817624975301324,0.2033195020746888,0.2102351313969571,11.42052442899,6.188880602641476,20.22820005171668,13688.445684179447,58.25287092398747,17.62481034793344,17.49442296737539,11.788443730520738,11.345193878157906,0.5905947441217151,0.8218793828892006,0.7075226977950714,0.5723684210526315,0.1137026239067055,0.7526595744680851,0.924006908462867,0.8898876404494382,0.6882591093117408,0.1330472103004291,0.5220691594039921,0.7520661157024794,0.6335460346399271,0.5373317013463892,0.1080402010050251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024800080979856,0.0053590785221505,0.0080208481210326,0.0105460820138043,0.0134643524916673,0.0163907739578988,0.0187841251731725,0.0214812472587439,0.0239366862394689,0.0264156346195146,0.0289026813330875,0.0313833278634722,0.0335411894024223,0.0360020166891314,0.0382339600857661,0.0408315003562687,0.0431872724263488,0.0454988288456356,0.0477228833094511,0.0497757334193628,0.0674438489291151,0.0830798180962835,0.0990976828999905,0.114215464794948,0.1282397209017991,0.1461132665898447,0.1601844979323507,0.173389927873875,0.1870068862435274,0.1985616445697259,0.2124277612165172,0.2258646779074794,0.2387276834194865,0.2502484031227821,0.2611078768439899,0.2720337858753814,0.283057966332067,0.2919305574271212,0.2996466351054432,0.3080186144364788,0.3149234428766079,0.3218689844251298,0.3280506382928471,0.3334369991148537,0.3376845527666234,0.3431008171704243,0.3475251730255103,0.3519372166558726,0.3549095891119182,0.3573563294055691,0.3544654257106377,0.3521296728010751,0.3500126358352287,0.3473272002188341,0.3451406062580521,0.3420968307978699,0.3387470631829578,0.3397796377427581,0.3402309013313383,0.3415573581355721,0.3423970777344987,0.3438955831187467,0.3452328852766489,0.3458639930640464,0.3463365722061737,0.3476324850493178,0.3480801806888763,0.3513858611024603,0.3542473713337022,0.3601786203924948,0.3637383345297918,0.364908220691106,0.3680551205762605,0.3732035586647403,0.3765461240676045,0.3838732729871367,0.3853183064270484,0.3929718875502008,0.3909610672474816,0.3951551854655564,0.0,2.206187597021997,66.202178331053,193.6723446712221,253.9548386065361,APP_public_implementation,82 +100000,95739,52678,498.3235671983204,6370,65.13542025715748,5137,53.05048099520571,1883,19.271143421176323,77.34438518034166,79.69759707107264,63.33412346583962,65.07249869134608,77.10401108192347,79.45973181518649,63.242943003430405,64.98518930396096,0.2403740984181865,237.86525588614893,0.0911804624092127,87.30938738511895,231.38808,161.897041837084,241686.33472252687,169102.49933369263,425.72625,276.2346840189191,444065.9083550068,287921.00817735627,494.49916,239.48136440273825,512659.06265994,247252.7957662365,3546.04949,1661.6274569845111,3660877.4167267256,1692586.5080944134,1135.57875,519.046506038533,1167232.2146669591,523278.5235508795,1823.11058,783.5121618560108,1866391.3556648807,784327.9036222564,0.43003,100000,0,1051764,10985.742487387584,0,0.0,0,0.0,35327,368.366078609553,0,0.0,44722,463.3117120504705,1218621,0,43882,0,0,20501,0,0,88,0.9191656482729086,0,0.0,0,0.0,0,0.0,0.0637,0.1481292002883519,0.2956043956043956,0.01883,0.3570250412355675,0.6429749587644324,23.57124610862901,4.094178570017104,0.3287911232236714,0.271559275841931,0.18765816624489,0.2119914346895074,11.346409903495928,6.166951518509363,20.39590185960331,13719.477231049568,59.22112271795618,17.084600601516417,19.258495280569807,12.197607388762412,10.68041944710755,0.5917850885730971,0.8078853046594983,0.7027827116637063,0.588613406795225,0.0881742738589211,0.7572627501613944,0.9329896907216496,0.8623655913978494,0.7269503546099291,0.109090909090909,0.520345596432553,0.7183271832718328,0.6421568627450981,0.540272614622057,0.0819892473118279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028767067784935,0.0056674743747021,0.0083300358161101,0.0109888993835247,0.0137055940785326,0.0162979854020543,0.018996759136585,0.0214092555742639,0.0241644613828406,0.0266141410007162,0.0290802524797114,0.0317051391269539,0.0341055142560432,0.0365602471678681,0.0390055191623252,0.0414298410598764,0.0439926713385158,0.0462120819289603,0.048587582365046,0.0509671572763351,0.0679348109789837,0.0839656309196136,0.0995730933425637,0.1146937573616018,0.1292747999029832,0.1467984983873526,0.1609957361956683,0.1750667645525445,0.1877489986648865,0.1997105333690699,0.213170700198088,0.2259927954046364,0.2391727467461154,0.2503798769089498,0.2607863623865823,0.27222702008459,0.2821889370061163,0.291443098347563,0.2996629557757124,0.3076473754738807,0.314822315053751,0.3221767115272089,0.3283656293279987,0.3342411844457509,0.3387253591307941,0.3437203045747923,0.3481640277307659,0.3521590025370033,0.3556201047772187,0.3592430589510129,0.3569744094222917,0.3538766574414474,0.3516787230142279,0.3494510898650506,0.3475195239866121,0.3434344984196152,0.3404987784370339,0.3401721475738362,0.3404848194748359,0.3411628114673573,0.3408903544929926,0.3411671768539547,0.3420281359906213,0.3427862143000917,0.3440958521797709,0.3439802160614343,0.3462741751990899,0.351011052499372,0.3539885041357072,0.3570152808096845,0.3604455558081382,0.3640560331104743,0.3663627790003144,0.3710359408033826,0.3747541904672722,0.3836537327515037,0.3841687041564792,0.3877131703307993,0.3870339454646633,0.3885647607934656,0.0,2.356834147392754,68.12391678424449,191.38111771764957,261.7322731178209,APP_public_implementation,83 +100000,95648,53442,506.5552860488458,6297,64.28780528604885,4963,51.08313817330211,1885,19.13265306122449,77.28108161739658,79.66868817346347,63.29287913429015,65.05602024016915,77.04547019061071,79.44023139657347,63.20366789810927,64.97296370747787,0.2356114267858657,228.456776889999,0.0892112361808799,83.05653269127333,232.54044,162.81763552166407,243119.918869187,170224.7893835146,424.73747,275.60912181567375,443244.856139177,287333.26224839385,493.69349,240.0281541693004,511430.65197390434,247255.41174164828,3469.16572,1622.4231799092515,3574353.159501505,1643791.4871228952,1134.36658,516.194674200634,1166029.8072097693,519952.378774154,1824.7162,778.9437737667179,1855156.9923051188,770348.8410215189,0.43467,100000,0,1057002,11050.905403144863,0,0.0,0,0.0,35234,367.514218802275,0,0.0,44581,461.36876881900304,1209210,0,43499,0,0,20712,0,0,81,0.8468551354968217,0,0.0,0,0.0,0,0.0,0.06297,0.1448685209469252,0.2993488962998253,0.01885,0.3547553934974172,0.6452446065025828,23.82466824054734,4.10123965194096,0.3233931090066492,0.2762442071327826,0.1982671771106186,0.2020955067499496,11.603690646084978,6.49632117982645,20.29461374764317,13863.787034727671,57.000428071226935,16.664042201775658,18.34272653385339,11.1259695257383,10.86768980985958,0.5873463630868426,0.8045222465353756,0.7065420560747664,0.5613160518444666,0.1168699186991869,0.762126245847176,0.9172932330827068,0.8673267326732673,0.7450199203187251,0.1566820276497695,0.5112781954887218,0.733015494636472,0.6327272727272727,0.5,0.105606258148631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027047561160917,0.0051095408509818,0.0079564021636542,0.0109416748788491,0.013617964729573,0.0160889576799315,0.01868996879907,0.0214297382284477,0.0240327114745719,0.0267351764091751,0.029211225148927,0.0319010216130191,0.0342870071371274,0.0368042533022853,0.0391264410523165,0.0417200876793912,0.0439939504433579,0.0463429063696845,0.0487355795737067,0.0511569731081926,0.0681613974967089,0.0853193717277486,0.1010864430798299,0.1158459595959596,0.1300155094375455,0.1482570748479238,0.1632503582612388,0.1767938736167176,0.189823477210277,0.2013851605282937,0.2151971094213449,0.2286017729804712,0.2414367709683392,0.2534743897230345,0.2632535895712349,0.2744012690101942,0.2845276690888764,0.2939665370965016,0.3023107787085554,0.3096680202812765,0.3171771959713964,0.324128230674559,0.3297465951691738,0.3354478284375563,0.3415204108955478,0.3473216489755616,0.3516803088609499,0.3568659951549152,0.3609442115781414,0.3643291876157714,0.362297118474709,0.359610873464882,0.3565225999886858,0.3530742459396752,0.3498486181747677,0.3453316953316953,0.3419399860432658,0.3420727793413321,0.3429691915126813,0.3447086163746871,0.3458396710044504,0.3472685405748769,0.3482197376455477,0.3507258100759516,0.3517986132921025,0.3533665770305198,0.3545428571428571,0.3604163381170162,0.3656936355343484,0.3699770151383054,0.3753461975028377,0.3769919000476467,0.3808685814845076,0.3810243239159994,0.3849668935932108,0.387306753458096,0.395,0.3990843949044586,0.3987121008854306,0.3925982449446776,0.0,3.064335558906896,65.2242981898952,177.58586569937435,258.97837644068704,APP_public_implementation,84 +100000,95722,52875,500.8357535362822,6336,64.86492133469841,5027,51.88984768391801,1940,19.87004032510813,77.3612597271838,79.728633929906,63.34108899169471,65.08990858501478,77.10907345764424,79.4785839806698,63.24444124536736,64.99731454673969,0.252186269539564,250.0499492361996,0.0966477463273491,92.59403827509516,233.91324,163.592004907764,244367.2718915192,170903.2457614383,428.12275,277.4159254014234,446610.2672321932,289168.0819607832,490.12152,237.2350512378877,508461.0643321285,245088.01083949188,3553.24092,1669.2381448552314,3668988.72777418,1700788.3397139064,1156.29111,528.9573877726929,1192882.0020475965,537528.7171057784,1891.89688,815.7115229967949,1938924.3225172895,818776.078565986,0.43144,100000,0,1063242,11107.603267796329,0,0.0,0,0.0,35526,370.46864879547024,0,0.0,44370,459.9778525312885,1208437,0,43512,0,0,20839,0,0,66,0.6894966674327742,0,0.0,2,0.0208938384070537,0,0.0,0.06336,0.1468570368996847,0.3061868686868687,0.0194,0.3505651846269781,0.6494348153730218,23.55374531429599,4.194780713744475,0.3073403620449572,0.2691466083150984,0.2090710165108414,0.2144420131291028,11.506685788957562,6.164530761870388,20.910333362464705,13718.491051459245,57.94557164397767,16.408357350725446,17.769225768556357,12.179747805069333,11.58824071962654,0.5735030833499105,0.7738359201773836,0.6944983818770226,0.601113172541744,0.1094196003805899,0.7203728362183754,0.8865384615384615,0.8480725623582767,0.7166666666666667,0.1327800829875518,0.5109219858156029,0.7034813925570228,0.6331521739130435,0.5565552699228792,0.1024691358024691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026843326141347,0.0052924000324438,0.0078037790992673,0.0105454582397821,0.0132919759991864,0.0156717785788476,0.018375379846226,0.021269209169347,0.0236383898902941,0.026085176085176,0.0286262085653061,0.0311405535870179,0.0335386862214725,0.0357779357377589,0.0382547495949557,0.040672008270871,0.0430613090306545,0.0456932337069323,0.047981032205734,0.0503792772892093,0.0679357189846189,0.0842553726015638,0.0995058801313456,0.1149389025595726,0.1294640974828182,0.1479465088006765,0.1618944599983032,0.1753269556149106,0.1880634961329744,0.1993459847753833,0.213604987993065,0.2271748655754022,0.2394523944152059,0.2511015142404198,0.261650795047175,0.2724233736620139,0.282590027546366,0.2925803949779131,0.3008471212619498,0.3082983133137145,0.3153285515964831,0.3217241863075196,0.3283119342050766,0.3343796801054334,0.3391260026940766,0.3435899960614415,0.3473564454223811,0.3525648363668739,0.3561187882869465,0.3597560170576819,0.3573332615310051,0.3535857669251498,0.3517767640930337,0.3484432366800613,0.3462996269155878,0.3431671545263674,0.3389913704378117,0.3397508493771234,0.3397927301907087,0.3406432487454685,0.3409005698860228,0.3417157125022294,0.3426682061509394,0.344592930853088,0.3442662428358137,0.3468880753138075,0.3467356801738683,0.3520477438504531,0.3570473106167277,0.3583147499203568,0.360607991262401,0.3640496960084589,0.370775969962453,0.3721969696969697,0.376794035414725,0.3781878011517217,0.3859569305429178,0.3863085621970921,0.3882845188284519,0.3976864778619864,0.0,2.3648883882996548,65.82740123012442,191.4484848148927,253.60843490959584,APP_public_implementation,85 +100000,95644,53083,503.5443937936514,6268,64.0709296976287,4947,51.064363681987366,1922,19.603947973735934,77.2430810454354,79.64936256121086,63.27207635196621,65.05081374663384,77.00036469567132,79.41167481969939,63.17967311570305,64.96426347597342,0.2427163497640805,237.6877415114791,0.0924032362631663,86.55027066041043,230.9175,161.603745413553,241433.2315670612,168962.77777714335,423.61327,275.2742127409417,442231.2011208231,287139.5594156584,488.14557,237.11830721194983,507290.5252812513,245430.8562049403,3463.47856,1623.7419915821415,3570966.981723893,1648031.331382463,1135.12887,522.4786416725734,1165724.3318974532,525613.6993370707,1874.49938,801.2614346657575,1912336.9160637364,795181.7080990645,0.43167,100000,0,1049625,10974.23779850278,0,0.0,0,0.0,35172,367.0277278240141,0,0.0,44057,457.4777299151018,1217364,0,43769,0,0,20100,0,0,81,0.8468905524653925,0,0.0,0,0.0,0,0.0,0.06268,0.1452035119419927,0.3066368857689853,0.01922,0.3456903127383676,0.6543096872616323,23.538171071525568,4.147769000384901,0.3102890640792399,0.2797655144532039,0.213866990095007,0.196078431372549,11.411676252513072,6.046915382529478,20.737387145084316,13757.025099836152,57.06973795659224,16.917271623929555,17.51520287862323,10.876128757001704,11.761134697037736,0.5759045886395795,0.8013005780346821,0.6938110749185668,0.5835051546391753,0.1030245746691871,0.7416038382453736,0.9240506329113924,0.8720379146919431,0.7136929460580913,0.1275720164609053,0.5065940366972477,0.7196149217809867,0.6262353998203055,0.5404663923182441,0.0957055214723926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026958002270147,0.0055383117278315,0.0080911241281991,0.0108922057732754,0.0135892506586107,0.0163755792046438,0.0188325261279632,0.021268991994772,0.0238772087696335,0.0261128690362815,0.0287457696646497,0.0312708600770218,0.033773152195152,0.0361304280636686,0.0383777702081978,0.0407420428928918,0.0431571205105095,0.0455975005968259,0.0479747019784883,0.0503174818321151,0.0672623713225688,0.0838588698694713,0.0994140994140994,0.1145112900678983,0.1283442785649428,0.1459881837240327,0.1599252010752345,0.1740715862201324,0.1855898467596952,0.197452229299363,0.2123926274442094,0.2257337077311708,0.2379676231561975,0.2495399579390115,0.2607641261932582,0.2718395969952176,0.282167976830782,0.2923585043905628,0.3011072963325072,0.309462915601023,0.3167027948114574,0.3235418130709768,0.3289737119569724,0.3346294162826421,0.339375494552316,0.3444378566664196,0.3491496086694762,0.3543258864207612,0.3575678062974124,0.3615754158891491,0.3591466623487025,0.3568405233624243,0.3542240490416261,0.3525763635309801,0.3501379258927906,0.34643504438915,0.3428494264925492,0.3431603579256134,0.3434641082747987,0.3442208804400408,0.3445379733725024,0.3452771318984876,0.3467328231435539,0.3470555243970836,0.3486572489272455,0.3501820181756279,0.3520160711723346,0.3564253222137983,0.3602484472049689,0.3641245541618242,0.3683168316831683,0.3743905705866595,0.3775620280474649,0.3793288796744222,0.3839566086211818,0.3881861575178997,0.390031152647975,0.3921769404054884,0.392,0.4029275808936826,0.0,2.48860358808664,63.75089215939105,185.935149654394,257.5319979935529,APP_public_implementation,86 +100000,95807,52783,500.224409489912,6394,65.38144394459695,5128,52.82495016021794,1963,20.01941403029006,77.44904619750217,79.77445225941885,63.38601454967061,65.1065511219436,77.20189845636021,79.53369919912755,63.2925504366943,65.01907156661144,0.2471477411419584,240.75306029129703,0.0934641129763136,87.4795553321519,233.01322,163.00465454250943,243209.68196478332,170137.43272638394,425.3991,275.339958768754,443323.5880468024,286699.38048524543,489.75245,237.2798579831301,507480.1006189527,244717.85564198217,3571.04313,1664.369838807216,3678210.5274144895,1688495.443859565,1194.37614,543.0019022010646,1226799.6492949366,546974.8254332123,1912.26484,813.4906924947344,1951153.527404052,808932.6719749498,0.43249,100000,0,1059151,11054.985543853789,0,0.0,0,0.0,35332,368.0628764077781,0,0.0,44410,459.7680754015886,1218620,0,43799,0,0,20495,0,0,56,0.5845084388405858,0,0.0,1,0.0104376506935818,0,0.0,0.06394,0.1478415685911813,0.307006568658117,0.01963,0.3509191451203108,0.6490808548796891,23.520871204663745,4.064447350582818,0.3067472698907956,0.2812012480499219,0.2070982839313572,0.2049531981279251,11.311424921229891,6.202773674361949,21.037984714361407,13695.580513515388,58.90534269007771,17.55321926579362,18.00430872550773,11.72721328031766,11.620601418458698,0.5842433697347894,0.7891816920943134,0.7164653528289892,0.5861084681255947,0.1082862523540489,0.7712800519818064,0.9101899827288428,0.8864628820960698,0.7758007117437722,0.1628959276018099,0.5040401225968236,0.7079953650057937,0.6466367713004484,0.5168831168831168,0.093935790725327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026432253425559,0.0050885426697616,0.0076608525361987,0.0103107445068619,0.0128842653324791,0.0152423813548104,0.0177502727281995,0.0204533624552199,0.0228410832907511,0.0252427581831762,0.0276684702410231,0.0299982553187122,0.0324530474203065,0.0352638352638352,0.0377479140667704,0.0401070347449659,0.042456735944357,0.0449417230080053,0.0475146502639125,0.0495788607898052,0.0664239364032799,0.0824794010623614,0.0978156052157142,0.1118104444677944,0.1255150755092792,0.1444833162461818,0.1593092042490935,0.1728476469024195,0.1860408041316317,0.1983099315618674,0.2134867713486771,0.226482982171799,0.2391030513627972,0.2506412285393086,0.2609559784339347,0.272037767974615,0.2826939357483402,0.2918804234348514,0.3004653374545701,0.3078724862888483,0.3157250709948514,0.3218944715409209,0.3282549947485809,0.3340943046674237,0.3401713337129978,0.3450357094565525,0.3494735003493363,0.35343734145104,0.3569851659630504,0.3596668947008367,0.3564293961281314,0.3545005488474204,0.351581816138458,0.3494067955426775,0.3480360210912969,0.3449828309805418,0.3414142051007219,0.3416488205195272,0.3417523582901334,0.3417887911892708,0.3421057539867574,0.3441775436389369,0.3451002482735599,0.3455433183216658,0.3479281999664486,0.3486630738936677,0.351004084411164,0.3539443627374284,0.3588369241548432,0.3633241215949467,0.3669695592912312,0.3704333050127442,0.3740400352511645,0.3793443618151464,0.383204814745157,0.3885087305332704,0.3908203720646538,0.3885389148547043,0.3952341824157765,0.394168875425975,0.0,2.6961182325301083,67.19393797527172,192.8605450214056,257.6576396442389,APP_public_implementation,87 +100000,95809,53179,503.0633865294493,6372,65.30701708607751,5077,52.41678756693004,1886,19.27793839827156,77.3497797498425,79.68302912544064,63.33168066437421,65.06000090761283,77.1131069018728,79.44671708948103,63.244021351638,64.97442170414847,0.2366728479697002,236.3120359596138,0.0876593127362141,85.57920346436276,233.87122,163.71704178531462,244101.5144715006,170878.56233267713,425.18606,274.36483512234105,443231.2830736152,285812.6429900543,491.22392,236.9528908715397,508745.9841977267,244263.99632669665,3535.98252,1633.2457977168244,3657102.443403021,1671133.774193265,1185.53813,526.5738069882955,1227165.704683276,539376.1201852603,1831.37192,774.356177170797,1875958.5842666137,780274.3431339745,0.43425,100000,0,1063051,11095.523385068209,0,0.0,0,0.0,35292,367.7733824588505,0,0.0,44395,459.4557922533374,1210801,0,43516,0,0,20830,0,0,69,0.7201828638228142,0,0.0,0,0.0,0,0.0,0.06372,0.1467357512953367,0.2959824231010671,0.01886,0.337872213077959,0.662127786922041,24.02468018545193,4.062979705068486,0.3159346070514083,0.2696474295844002,0.196178845775064,0.2182391175891274,11.516126809320555,6.357464859353869,20.286008170500438,13860.310216840644,58.519451557726526,16.716391198932737,18.417762752930688,12.40162892012112,10.983668685741977,0.594445538703959,0.8005843681519357,0.7175810473815462,0.5875451263537906,0.1204819277108433,0.7660148347943359,0.9243243243243244,0.8823529411764706,0.7063197026022305,0.14,0.523650528658876,0.7162162162162162,0.651528384279476,0.5494636471990465,0.1155778894472361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123082845391,0.0053028075476289,0.0079464956258753,0.0107590242713021,0.0132539924727901,0.0161091594114352,0.0185970636215334,0.020987515694701,0.0235187096906078,0.0263462266758103,0.0287849432604483,0.0311210136148017,0.0337367484807666,0.0363600790839443,0.038620632742952,0.0412072867047603,0.0437653975943523,0.0465092157533891,0.0488005070182547,0.0509723899554408,0.0676410144065763,0.0842020514643607,0.1001708290975402,0.115285191879282,0.1291617921396275,0.1478188238776934,0.1621286209786056,0.1758338832244194,0.1883592005896239,0.2008838546359462,0.2157557863885177,0.2291932725816576,0.242360952474192,0.2538613731512958,0.2647825656483427,0.2752736781456366,0.2858354443092923,0.295434098065677,0.3039744040663044,0.3122059008735674,0.3196451086767921,0.3268482035333045,0.3329035005737676,0.3389934019087763,0.3438364810409283,0.3494668669506759,0.353246266325064,0.3571228801708576,0.3609971926465451,0.3648466775742862,0.3625390667097747,0.3592912550462255,0.3568286286342743,0.3527750010865313,0.3498586099121893,0.3461007697261492,0.3412163768644296,0.3413315364767367,0.3417100041056521,0.3420332373302803,0.342585815363249,0.3432253721887868,0.3435232943347172,0.3446371887155184,0.3456057292542837,0.3471929138986583,0.3476912572192665,0.3531882876669384,0.357776381032195,0.362458144573567,0.3661697403597806,0.3724796790879341,0.3747172656446343,0.3778404758273601,0.3780133195760247,0.3841542259315857,0.3936851738865162,0.3986323411102172,0.397989676718283,0.3980694980694981,0.0,2.286385299807123,65.53185880342616,193.4749729975613,260.65310657922373,APP_public_implementation,88 +100000,95792,53186,503.3196926674461,6433,65.6422248204443,5070,52.26950058459997,1961,20.06430599632537,77.41775944651599,79.74678086746651,63.37436231324406,65.09549944379404,77.17324458858297,79.50466341102631,63.2815532084341,65.0063608184251,0.2445148579330123,242.117456440198,0.0928091048099588,89.13862536894612,232.8436,162.9567067815135,243072.07282445295,170115.15239426412,425.73128,275.8708207202309,443773.7076165024,287330.1013865781,495.18247,240.14214778361637,512994.6133288793,247623.6865579796,3570.38728,1674.8336829446234,3684805.787539669,1705983.3419749287,1159.12766,531.9213385013599,1193925.8706363789,539167.3088581085,1907.06482,808.3982553325833,1952931.560046768,812016.072476061,0.4342,100000,0,1058380,11048.73058292968,0,0.0,0,0.0,35231,367.0870218807416,0,0.0,44723,462.8465842659095,1217525,0,43784,0,0,20683,0,0,75,0.7829463838316352,0,0.0,1,0.0104392851177551,0,0.0,0.06433,0.1481575310916628,0.3048344473806933,0.01961,0.3591873053537001,0.6408126946462999,23.679735115270542,4.113777015234591,0.3142011834319526,0.2670611439842209,0.2035502958579881,0.2151873767258382,11.437779307543462,6.177299525215415,20.969679136905544,13825.772266568612,58.39219576171929,16.725893084287947,18.20088530498602,12.26869879849837,11.19671857394697,0.5848126232741617,0.7968980797636632,0.7037037037037037,0.5957836846929423,0.1114341085271317,0.7469492614001284,0.9124343257443084,0.8504273504273504,0.74822695035461,0.1398305084745762,0.5129518929689724,0.7126436781609196,0.6426666666666667,0.5426452410383189,0.1030150753768844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027136767281969,0.005412911923611,0.0079349778287384,0.0106843249172269,0.0133612625071178,0.0160022802231361,0.0187952298440525,0.0215869192455295,0.0243157055540791,0.0269581503884061,0.0292748928842329,0.0317812269031781,0.0340868206535705,0.0365886301398068,0.0391000391825287,0.0412324281892642,0.043507958520481,0.0458136352326449,0.0483902803893661,0.050609057782405,0.068635225375626,0.0851515373276321,0.1008952157323158,0.1160007984115811,0.130140305047611,0.147776380714897,0.1618231324228972,0.1749306168454855,0.1879495443194672,0.1998157195508699,0.2140652059332881,0.2282299804423698,0.2400225883170617,0.2515997990696049,0.2628305846417544,0.2739956406766909,0.2846758459222922,0.2943389868583623,0.3028401173658392,0.310686385524254,0.3167637271214642,0.323231261532712,0.3298166438259061,0.3354163673801656,0.3406039861141456,0.3456692816413995,0.3502418780234753,0.3544725368315347,0.3584188128161016,0.3625643930910001,0.3604812151354257,0.3576978615141305,0.3549268018018018,0.3530074210967052,0.3510050773479022,0.3475466038140133,0.3437282670544351,0.3438810959622443,0.3442416399918273,0.3440220778064631,0.3444575317366837,0.3450406312102788,0.3459627588510354,0.3462993457652766,0.3482768551406355,0.3509615384615384,0.3529862609288066,0.3587344307441947,0.364030033176183,0.3680530868586325,0.3731295910038995,0.3761705729855563,0.378314008147916,0.3795896737073208,0.3797968397291196,0.3878766226033107,0.3899643797429146,0.3953204476093591,0.3943623426382047,0.3986095017381228,0.0,2.521237564089058,68.1740922924457,185.98355231638192,256.47654495527127,APP_public_implementation,89 +100000,95706,52559,498.4744948070131,6279,64.12346143397488,4994,51.42833260192673,1924,19.591248197605164,77.3893283971574,79.75034980536243,63.35181630130408,65.09385307146621,77.1373494344023,79.50310073942049,63.25704245884171,65.00388133603175,0.2519789627551034,247.2490659419435,0.0947738424623665,89.97173543446024,233.06976,163.01947273420197,243526.80082753432,170333.59740685223,420.38947,272.50948541101604,438495.5279710781,283980.6756222348,485.38174,234.9397381080014,502657.70171149145,242001.97235944896,3509.28747,1643.8823293882697,3618479.039976595,1669379.5680399009,1167.2914,532.9861115714446,1202570.3090715315,539806.126194458,1865.95474,798.46428706252,1903264.2676530208,795378.3674305055,0.43056,100000,0,1059408,11069.400037615196,0,0.0,0,0.0,34872,363.5717718847303,0,0.0,43938,454.5587528472614,1217667,0,43723,0,0,20488,0,0,66,0.6896119365557019,0,0.0,0,0.0,0,0.0,0.06279,0.1458333333333333,0.3064182194616977,0.01924,0.355064737242955,0.6449352627570449,24.017237585137625,4.140014604577472,0.3253904685622747,0.2591109331197437,0.2044453344012815,0.2110532639167,11.51882269499205,6.324491928558415,20.54655330811234,13703.213099277948,57.44461049765384,15.73623865064936,18.551401253537,11.827068015329576,11.329902578137906,0.5841009211053264,0.8083462132921174,0.692923076923077,0.5853889943074004,0.1253672869735553,0.747275204359673,0.9292929292929292,0.8608695652173913,0.7279411764705882,0.1784232365145228,0.5161656267725468,0.7334167709637046,0.6266094420600858,0.5358056265984654,0.1089743589743589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025218509778502,0.0052803875662582,0.0078208210340525,0.0103672715087883,0.0130637225001016,0.0155527960425869,0.0181293820316321,0.0207852900961204,0.02340932081294,0.0258572174073202,0.028425043549544,0.0307588131489309,0.0330969995889847,0.0355120946989191,0.0382810646921117,0.0407460989976232,0.0429750183764532,0.0452786739001898,0.047387896804773,0.0496077839009094,0.0665072469821645,0.0831894522053052,0.0991829157008149,0.1136136609780974,0.127801556010036,0.1457218402961396,0.1601990155308495,0.173381601362862,0.1862718909273525,0.1978379074032367,0.2131587166535632,0.2273681249729542,0.2403483403820437,0.2518316820856024,0.2623592971182729,0.2731251177167927,0.2838356776066086,0.2930991809918099,0.3016979161937622,0.3094138543516874,0.3168324849606663,0.32348332475794,0.3292492549316429,0.3347425656011593,0.3392180670228266,0.3431935174010492,0.3464714714714714,0.3509791454730417,0.3539130885171181,0.3570137835520675,0.3548686368892355,0.3531570915989607,0.3508197182306459,0.3489997833465733,0.3477506083447089,0.3440327708486182,0.3400959929268369,0.3397702353287729,0.3404846295412719,0.3409868796349116,0.3417349650087946,0.3428605266274525,0.344565445026178,0.3464014304872597,0.3467478110266525,0.34675679188873,0.3484826938938028,0.3529301159511125,0.3574975521051895,0.3605533596837945,0.3646027347476491,0.3675159235668789,0.3719408619062598,0.373318216175359,0.3764749953174752,0.3755299105040037,0.3766489764973464,0.3758523866827116,0.3757643135075041,0.3733539891556932,0.0,2.8080907467715712,63.92294112145835,189.2713955991806,255.89222647447892,APP_public_implementation,90 +100000,95654,53448,506.16806406423154,6360,64.97375959186233,5084,52.37627281660987,1954,19.884165847742903,77.35982293729873,79.73371149687596,63.33991942654043,65.08915866757602,77.11084515400275,79.49124716769556,63.244615876370986,64.99961610253285,0.2489777832959845,242.4643291803932,0.0953035501694472,89.5425650431605,232.1517,162.4819036957365,242699.1866518912,169863.97191516968,426.53044,276.4787731088904,445133.4601793966,288264.2577507373,498.84924,242.02882480598663,516415.3302527861,249064.06526416444,3581.91446,1671.633450234255,3690773.297509775,1693699.4587097804,1172.95663,529.3703478531183,1204237.1150187133,531427.8532473368,1910.11266,821.3815503496937,1945809.6681790624,815243.8081966972,0.43456,100000,0,1055235,11031.7812114496,0,0.0,0,0.0,35310,368.3275137474648,0,0.0,44986,465.2602086687436,1214204,0,43659,0,0,20801,0,0,93,0.97225416605683,0,0.0,0,0.0,0,0.0,0.0636,0.1463549337260677,0.3072327044025157,0.01954,0.3475911751463305,0.6524088248536695,23.651332610409657,4.091838334571366,0.3176632572777341,0.2667191188040912,0.2110542879622344,0.2045633359559402,11.337515411864883,6.116675299802742,21.017964184389925,13846.223488312726,58.47232377185577,16.689895631112353,18.40766466982739,11.690716918950788,11.68404655196525,0.5841856805664831,0.8185840707964602,0.6996904024767802,0.5875,0.1109040074557315,0.7491727332892124,0.924953095684803,0.8509719222462203,0.7473684210526316,0.1391304347826087,0.5144136579904842,0.7496962332928311,0.6388888888888888,0.5271523178807948,0.1032028469750889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027443593794304,0.0053111158411124,0.0080454522396388,0.0110194795961893,0.0137567105905319,0.0164588528678304,0.0191666921407391,0.0216810186507774,0.0240862938977302,0.0267718307553809,0.0290122318519884,0.0315670684790972,0.0339897629864123,0.0367990774489816,0.0393295513151108,0.0416929357655935,0.0441642338033418,0.0466011160204949,0.0489052460857089,0.0515674503918626,0.068880855865268,0.0860173395878706,0.1019574914720545,0.1171191077441077,0.1308580771056378,0.1491824964283824,0.1628413096097498,0.1759278987514382,0.1881976818784483,0.2001588818155468,0.2150317427810772,0.2282180148173822,0.2411102040816326,0.2525125353068687,0.2636228451836757,0.2753363029940385,0.2845947756195579,0.2952534101004194,0.3041722440274973,0.3117678716606932,0.3186440677966101,0.3254499496805298,0.3313878464288673,0.3367246668584028,0.342199184228416,0.3471647452951029,0.351266178953292,0.355191882200351,0.3581235846004529,0.3617599704384089,0.3592231703049716,0.356638544433587,0.3542183622828784,0.3503684438664933,0.3482650591676441,0.3454595562904781,0.3425336500395883,0.3430989155438712,0.3431783569191807,0.3438114300010722,0.3455189342127452,0.3463370289124721,0.3477841599932917,0.3486946600747186,0.3477268358323722,0.3484489976338438,0.3494478666931614,0.354549445036684,0.3593482289590545,0.3629843886203344,0.364823069225871,0.3693290734824281,0.3719442685243825,0.3761580277161013,0.376569432644199,0.3753735803945009,0.3793103448275862,0.380654281098546,0.3804259908331086,0.3726016884113584,0.0,2.940699237051186,65.74459442928924,189.9317486090777,260.8921964409483,APP_public_implementation,91 +100000,95839,53274,504.199751666858,6537,66.78909421008149,5240,53.9446363171569,2021,20.638779619987687,77.34109898624328,79.631711079067,63.34986309044478,65.04401740288708,77.08437809182227,79.37758208308715,63.25291397848208,64.95061196185247,0.256720894421008,254.12899597985472,0.0969491119626937,93.40544103460502,233.04094,163.16669677821832,243158.7766984213,170250.8339801316,428.53329,277.60456433113086,446432.84049291,288951.3082681694,498.86831,242.0039392037999,515140.14127860265,248391.55891869616,3657.46798,1705.7688932364122,3767851.615730548,1731449.4901203185,1191.7819,545.0976534803309,1225719.1018270224,550976.7405081914,1958.0526,836.0764479397459,2001978.109120504,838812.5917812584,0.4344,100000,0,1059277,11052.67166811006,0,0.0,0,0.0,35449,369.1294775613269,0,0.0,45093,465.1864063690147,1210017,0,43559,0,0,20697,0,0,95,0.991245735034798,0,0.0,1,0.0104341656319452,0,0.0,0.06537,0.1504834254143646,0.30916322472082,0.02021,0.3617177194782354,0.6382822805217646,23.649121393146373,4.101604939321682,0.3068702290076336,0.2784351145038168,0.2005725190839694,0.2141221374045801,11.353928686794704,6.2375877198766405,21.80057791508187,13778.632547854231,60.4259744765366,17.85744190897095,18.34497980067946,12.6742606849545,11.549292081931704,0.5761450381679389,0.7895819054146676,0.6809701492537313,0.5766488413547237,0.1189343482397716,0.7330779054916986,0.9150442477876106,0.8410596026490066,0.718213058419244,0.159533073929961,0.5092542188350572,0.7102908277404921,0.6181818181818182,0.5270758122743683,0.105793450881612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002693534504582,0.0052081750108925,0.0080637799348811,0.0105590188234816,0.0134063789563555,0.0159977204266058,0.0184805974102713,0.021219076766131,0.0239719731170714,0.0264431191628221,0.0289673963145441,0.0315374911541183,0.0340478415825313,0.0362055661299449,0.038382277176713,0.0408814119104138,0.0433245098850194,0.0457945668165523,0.0485553813730884,0.0505628498304167,0.0680180602913421,0.084330549836439,0.0993086109365179,0.1143658362391295,0.1291362133243465,0.146729199015538,0.1611522529108264,0.1735404505970038,0.1867389517944996,0.198394409372019,0.2135784398140175,0.2271567015661504,0.2408836895779425,0.2520142996140853,0.2621455373746932,0.2731564075572054,0.2823806441532933,0.2920075165126982,0.3004585593970625,0.3083637863288007,0.3160666134314712,0.322970537991716,0.3292695917715151,0.3353592021193704,0.3416652489853452,0.3466975894993955,0.3506117797342484,0.3547590246386961,0.3592310980427715,0.3630392260520194,0.359789644012945,0.356622356911633,0.3535573122529644,0.3512220579281552,0.3490892287511552,0.3451236369221317,0.3420852117594768,0.342623247846354,0.3429459654426162,0.3431800621709521,0.3448035296779546,0.3463028833734078,0.3464795853874352,0.3479445269935611,0.3487892963618295,0.3507196134047694,0.3513591008143135,0.3550522648083624,0.3590113720381649,0.3619824840764331,0.3653293167191565,0.3700841948204199,0.3738701725554642,0.3790814769606347,0.3827242524916943,0.3843296992931592,0.3845916319283619,0.3807488807488807,0.3928374655647383,0.4090208172706245,0.0,2.857569804225084,68.47090408530941,196.9751699312066,267.12991560490565,APP_public_implementation,92 +100000,95642,53128,503.25170950001046,6368,65.15965789088476,5057,52.288743439074885,1910,19.531168315175343,77.31769350596971,79.73943370396115,63.289715480586615,65.08104417208808,77.07053318086396,79.49368314378374,63.19683087297671,64.99119012756812,0.247160325105753,245.75056017741304,0.0928846076099105,89.85404451996715,232.1462,162.43780662600557,242723.88699525315,169839.2221720371,426.43326,276.3690493630173,445266.755191234,288367.5842043605,491.89862,238.10722375204176,510542.7531837477,246066.5390178773,3550.00824,1654.9367183866125,3671232.9311390393,1690637.837948327,1166.99141,538.3326839781513,1203624.025009933,546337.9252078433,1852.3313,792.8736015189847,1896237.134313377,797015.4954780404,0.43268,100000,0,1055210,11032.903954329688,0,0.0,0,0.0,35442,369.9316199995818,0,0.0,44537,461.8682168921604,1212513,0,43595,0,0,20757,0,0,78,0.8155412893916899,0,0.0,1,0.0104556575563037,0,0.0,0.06368,0.1471757418877692,0.2999371859296482,0.0191,0.3652604714006905,0.6347395285993094,23.719238964485896,4.071834676764231,0.3116472216729286,0.270516116274471,0.1971524619339529,0.2206842001186474,11.420548514208054,6.256110701259816,20.586415816407595,13818.473036631232,58.0773575196342,16.770639285481966,17.881074095869636,12.36913768845103,11.056506449831586,0.5815701008503065,0.7989766081871345,0.7068527918781726,0.5591397849462365,0.1103309929789368,0.7524687294272547,0.9097472924187726,0.8755555555555555,0.7455830388692579,0.146551724137931,0.5081967213114754,0.7235872235872236,0.6394316163410302,0.4957983193277311,0.0993464052287581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026035335116297,0.0054861477304993,0.0080812182741116,0.0107318163802477,0.0133486625901696,0.0160044824775876,0.0187603288923346,0.021455061862095,0.0239067473110026,0.0264765575350048,0.028958579274239,0.031473636587974,0.0342082771261752,0.0370427678405644,0.0397259990907963,0.0421987210000206,0.044479465831683,0.0467742103021678,0.0491830575502133,0.0512988976837802,0.0689129026189829,0.0857861371614187,0.1008571068442502,0.1152995449949444,0.1296624846871963,0.1483281966553342,0.1635281615302869,0.1765978766042723,0.1885958812516715,0.1994973093158895,0.2142286947141316,0.2285469696477141,0.2408496732026143,0.2519276263909576,0.2625371982806128,0.2742550972866239,0.2842612359864531,0.294026202250735,0.3030698815432316,0.3102582619759964,0.3176342491775935,0.3240455647002353,0.3300156405516849,0.3353535595986751,0.3401401937399601,0.345130887468851,0.3490940509134621,0.353504238690461,0.3583853991133695,0.3618880194564872,0.3599314929942147,0.3566145582260175,0.3551839370567251,0.3521002572923593,0.349205877546169,0.3458054231364674,0.3419334389857369,0.3422119377020662,0.3420639524963314,0.3432126455195984,0.3438736653475696,0.3438490150158424,0.3449617240805459,0.345886223684503,0.3477782823816239,0.3476535138921316,0.3494713568978712,0.3536189346156248,0.3589134836952726,0.3652036378015025,0.3692405754871608,0.3730828424348564,0.3755112313597181,0.3790353209266995,0.3794366197183099,0.385715974932009,0.3915837796480489,0.3913130504403523,0.3986357435197817,0.4073226544622426,0.0,2.2482262669405704,66.87683245746442,185.2419601514108,260.1168230216023,APP_public_implementation,93 +100000,95700,53191,503.94984326018806,6468,66.17554858934169,5163,53.239289446186,1962,20.0,77.34880342590687,79.70842003847952,63.338894218876014,65.07809797057719,77.09823837536352,79.46292325222956,63.24241319388753,64.98724216108474,0.2505650505433436,245.49678624995863,0.0964810249884848,90.85580949245298,231.80388,162.20302394554355,242219.3103448276,169491.1430987916,426.12031,276.24544156397,444554.67084639496,287946.06247130275,491.10767,237.8736749139035,509718.526645768,245777.32071257997,3675.0709,1706.2913967523148,3790450.3448275854,1733233.936825245,1237.41321,558.4539051834781,1273901.421107628,564464.2061294889,1924.0488,828.3319272150078,1963195.3605015676,821954.5888261242,0.43453,100000,0,1053654,11009.968652037618,0,0.0,0,0.0,35370,368.8401253918496,0,0.0,44337,459.82236154649945,1217392,0,43775,0,0,20751,0,0,90,0.9404388714733544,0,0.0,2,0.0208986415882967,0,0.0,0.06468,0.1488504821301176,0.3033395176252319,0.01962,0.345646046580626,0.654353953419374,23.822163049862944,4.084943382913243,0.3098973465039705,0.2688359480921944,0.2182839434437342,0.2029827619601007,10.856900608881746,5.745445168319624,21.07790458898237,13873.243424254812,59.22029370986213,17.098933936551333,18.208937012581583,11.547095625332,12.36532713539722,0.5735037768739105,0.8054755043227666,0.695625,0.5601145038167938,0.126885536823425,0.7396449704142012,0.9225352112676056,0.8564814814814815,0.7540322580645161,0.1611721611721611,0.5041186161449753,0.724390243902439,0.6361301369863014,0.5,0.1159250585480093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030277561188014,0.0057880225438916,0.0083100806656181,0.0109611028149412,0.0141430779241906,0.0167862778032269,0.0192442944947863,0.0220169439624374,0.0246282765316028,0.0270408581020224,0.0295395842728875,0.0322686591674193,0.0346997316554085,0.0369504787398332,0.0394780276459665,0.0419000185992684,0.0443056979260501,0.046587395463695,0.0486929939484684,0.0507247131886338,0.0684357833615305,0.0845823738748168,0.1001227663347428,0.1156051726133482,0.1299728871493527,0.1474216551344717,0.1616429632774358,0.1743746472573929,0.1871613751242292,0.1987081129220897,0.2129126799413843,0.2271728660945227,0.2397162657615022,0.2503555720881381,0.2612270505877691,0.2726698297268535,0.2830003129051003,0.2930795652908384,0.3035665606542481,0.3110807991655299,0.3183497608265094,0.3251673767498478,0.3318016556330606,0.3381797696244711,0.3434804790942883,0.3480821597111842,0.3521843506964415,0.3571283276971191,0.3607522083834504,0.3647344269212511,0.3624587625395543,0.3598684029402857,0.3578074775841651,0.3545713583175434,0.3522813490233416,0.3490015172646324,0.3460600107727892,0.3455521447215063,0.34630828904875,0.3468614911935979,0.3485367634668314,0.3497996011767261,0.3510836561616585,0.3511820886175043,0.3520723581342763,0.3530576617420985,0.354482404315438,0.3580821745422513,0.3628197480613355,0.3652204977573135,0.3712460063897763,0.3766566908935442,0.3776561903550069,0.3795833653624413,0.3842075364514296,0.3919064104094544,0.3977061376317421,0.4041237113402062,0.410958904109589,0.4253007372914241,0.0,2.696631500002805,66.5553065934712,191.5307737917298,266.88397552213974,APP_public_implementation,94 +100000,95625,53238,505.2758169934641,6362,65.00392156862745,5061,52.20392156862745,1904,19.492810457516335,77.26744378178137,79.68231754077851,63.28338998351626,65.06929293973053,77.02870310968922,79.44535264850944,63.193410057463794,64.98232587357364,0.238740672092149,236.96489226907147,0.0899799260524645,86.96706615688754,234.13016,163.85805239188136,244841.76732026145,171354.59596536614,428.28604,277.30422825857664,447188.0888888889,289298.6125579886,500.13669,242.4914484719073,517991.8849673203,249790.86686011017,3532.59324,1657.7472141828302,3649738.896732026,1689115.601759822,1184.57833,537.7212191508141,1220846.1281045752,544394.2474779753,1854.04124,789.3834507152507,1900906.2901960784,793767.2326872252,0.43318,100000,0,1064228,11129.171241830065,0,0.0,0,0.0,35427,369.7359477124183,0,0.0,45146,467.0640522875817,1203807,0,43305,0,0,20921,0,0,98,1.0143790849673202,0,0.0,1,0.0104575163398692,0,0.0,0.06362,0.1468673530633916,0.2992769569317824,0.01904,0.3616380608250527,0.6383619391749473,23.381566737280743,4.066093873420362,0.312784034775736,0.278403477573602,0.2049002173483501,0.2039122703023118,11.342280573291596,6.214366042361024,20.477929439480164,13819.61268340498,58.540191606204615,17.353508614766927,18.24522734219864,11.617514501714258,11.323941147524794,0.600671803991306,0.8161816891412349,0.7188881869867341,0.6056201550387597,0.1224686595949855,0.7644012944983819,0.9277310924369748,0.8577494692144374,0.7164179104477612,0.1563981042654028,0.5287258248009101,0.7346437346437347,0.6600719424460432,0.5667539267015707,0.1138014527845036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030498307901189,0.0057087811802879,0.0082744476933073,0.0110153646045036,0.0136420512924851,0.0161221330508819,0.0187511470930114,0.0214091006544222,0.0240902258714301,0.0266561530347871,0.02931131736834,0.0316287956609278,0.034184429265081,0.0364962751543003,0.0387584897091306,0.0411979985112893,0.0438303954263935,0.0461150436966765,0.0483778695430574,0.0506375303647945,0.06770060405911,0.0838613726578619,0.0997332605225573,0.1148411010256302,0.1293653139647819,0.1470927708419369,0.1620639843650422,0.175537697439942,0.1880008130690146,0.199862511949645,0.2155238434240473,0.2295907864657255,0.2421108776818661,0.2534095138022372,0.2631428256799912,0.2744085544905535,0.2850652467544065,0.2938753460733337,0.302223382994186,0.3099716863257563,0.3172313178797212,0.3245671502105756,0.3306417238929671,0.3361285059622352,0.3409594006178695,0.3468279437176006,0.3514654308617234,0.3555798826359806,0.359500758194331,0.3629766704117375,0.3604225979247905,0.357068048397321,0.3541463827625619,0.351293821225329,0.3491812804505564,0.3460706228994982,0.342299879388053,0.342069804127777,0.3428581200088921,0.3428734871914049,0.3429402929027412,0.3431582708110039,0.3449805529275728,0.3459358971487446,0.3468949716628481,0.3474713665603263,0.3491012838801712,0.3530355962609763,0.3588823198198198,0.3614924181963288,0.366360294117647,0.3714854040105371,0.3751835067338993,0.3788322292404868,0.3840978013646702,0.3874954998199928,0.3883900928792569,0.3927034228325476,0.3974431818181818,0.4011231448054553,0.0,2.805436932339453,67.39422950363439,186.7400276563622,259.6467416749146,APP_public_implementation,95 +100000,95816,53415,506.6064122902229,6335,64.66560908407781,5052,51.90156132587459,1928,19.61050346497453,77.40182060844235,79.71723828918134,63.36325590393732,65.0762654405689,77.16016292771387,79.47985514637173,63.27218433533958,64.98996029886612,0.2416576807284798,237.38314280960537,0.0910715685977407,86.30514170278047,232.39986,162.6957466061247,242548.0713033314,169800.18640532342,426.08555,276.2660295629544,443869.6251148034,287507.93141328625,497.54944,242.11723292775088,513816.5963930868,248415.69053016795,3569.04632,1663.5015007945035,3670218.429072389,1681464.1299934278,1172.88517,530.808025731001,1202983.2700175336,532868.524809009,1874.2362,795.5665934297366,1908819.7378308424,790798.5864582502,0.43453,100000,0,1056363,11024.912331969608,0,0.0,0,0.0,35302,367.5690907572848,0,0.0,44876,463.0124405109794,1216257,0,43713,0,0,20749,0,0,90,0.9288636553394004,0,0.0,0,0.0,0,0.0,0.06335,0.1457897038179182,0.3043409629044988,0.01928,0.3664605640174936,0.6335394359825064,23.63744100696172,4.052296700770817,0.3113618368962787,0.2755344418052256,0.2080364212193191,0.2050673000791765,11.42800644712653,6.312261400887246,20.55642150048328,13867.406671709818,57.94005198841842,17.23188769174823,17.705077892160602,11.587884108828082,11.4152022956815,0.5855106888361045,0.7988505747126436,0.6923076923076923,0.611969111969112,0.1170313986679353,0.7639344262295082,0.90359477124183,0.8708133971291866,0.7906137184115524,0.1330275229357798,0.5083640487666572,0.7166666666666667,0.6277056277056277,0.546772068511199,0.112845138055222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024099313473338,0.0051181222065694,0.0075680720691474,0.0099942106706481,0.0126269558056546,0.0150861191416588,0.0176221780563624,0.0203306797305572,0.02274260482041,0.0257822175368207,0.0283942391471477,0.0309459293016381,0.0332726880261494,0.0356760429965816,0.0380898354906915,0.040700557966522,0.0431227227558794,0.0454163685569415,0.0480997933090289,0.049965135762382,0.0667494081204826,0.0834474611355629,0.0995598868280415,0.1148016260675007,0.1297131061212453,0.1477549985740993,0.1628261767790738,0.1768107929960345,0.1896461546672359,0.2014484058964689,0.2162449980637666,0.2302363532221633,0.2422470933391285,0.2538081605000328,0.264350502995987,0.2748460959298463,0.2853828306264501,0.2947493899216176,0.3035467108398194,0.3131247209150551,0.3202489616955309,0.3271551522522101,0.3325327149246314,0.3376726121979286,0.3433031646722954,0.3484245419033653,0.3521713563626809,0.3577159277295325,0.3615669323946578,0.3640452105561637,0.3620144504392987,0.3592669480456988,0.3564584886812893,0.3537387491345488,0.3500622701933341,0.3461556109573117,0.3437593842360639,0.3435001965666361,0.3443394617457448,0.3453311724162496,0.3464931957529535,0.3475723944883597,0.3496031746031746,0.3497870822464495,0.3511430281268701,0.3542720738953322,0.3551004198343356,0.3588870846864851,0.3630208696866057,0.3676441489572203,0.3726168266824407,0.3750531914893617,0.3780533870561571,0.3804892873423492,0.384128756163364,0.3878510163318059,0.3918590522478736,0.3943064809206541,0.4003281378178835,0.3985451761102603,0.0,3.226077936147977,66.04701634049793,183.425997136601,259.7358549951638,APP_public_implementation,96 +100000,95687,53487,505.9412459372747,6288,64.1361940493484,5050,52.10739180870965,1992,20.389394588606603,77.32145341825886,79.7084454910577,63.3143933609397,65.08013108929275,77.07255809106418,79.46162228269742,63.22094468113451,64.99012427498191,0.2488953271946741,246.8232083602828,0.093448679805185,90.0068143108399,233.36742,163.3064547269405,243886.00332333543,170667.15120205947,426.58504,276.01258127962944,445045.1053957173,287688.5645922084,490.36105,237.16714315470807,508167.1386917763,244561.68276989085,3566.13553,1654.7226725198486,3680656.107935248,1683713.1925884297,1191.10765,538.5410451061152,1227617.9313804382,545645.8007486111,1945.65262,824.5348179978464,1993646.7649732984,829197.598168002,0.43509,100000,0,1060761,11085.727423787976,0,0.0,0,0.0,35347,368.69167180494736,0,0.0,44317,458.7979558351709,1211139,0,43511,0,0,20957,0,0,88,0.909214417841504,0,0.0,1,0.0104507404349598,0,0.0,0.06288,0.1445218230710887,0.3167938931297709,0.01992,0.3458794961299135,0.6541205038700865,23.64935527323433,4.176263789323449,0.3100990099009901,0.2695049504950495,0.216039603960396,0.2043564356435643,11.387746113756124,6.114821005455469,21.351527974173777,13824.708735018865,57.81314823232655,16.654721651728842,17.63437167147955,11.487564471224973,12.036490437893187,0.574059405940594,0.7927994121969141,0.6947637292464879,0.5571705426356589,0.1439046746104491,0.7524752475247525,0.9297597042513864,0.8692307692307693,0.6732283464566929,0.222707423580786,0.5046754675467546,0.7024390243902439,0.6369047619047619,0.519280205655527,0.1229698375870069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026850125638323,0.0057499239428049,0.008780656163716,0.011412485645471,0.0140098486081719,0.016665308450819,0.0192643054549904,0.0219522156422299,0.0242693137325059,0.0269822097569963,0.029608972913121,0.0323378997309453,0.0346668586888315,0.0373335806438316,0.0398026383699085,0.0424227385051231,0.0448410519882744,0.0471703008728321,0.049483635455992,0.0520188439330456,0.0690397108896826,0.0846636170457757,0.1002476806179421,0.1150984498489839,0.1298021630176734,0.1477729793810068,0.1618758491847826,0.1754242072410818,0.1880691778186327,0.1996095342301173,0.2147744292040642,0.2285154346719793,0.241214995974673,0.251999606096747,0.2628793380427367,0.2740461819591339,0.2841984289922342,0.2931699364775985,0.301768235280774,0.3099151309686064,0.3169425454881956,0.3245591468263249,0.3303975187631697,0.3358386976900301,0.3407011361565101,0.346244796413528,0.3507520584628475,0.3539727351340353,0.3579317658622384,0.3612238979118329,0.357967543127809,0.3563340021438584,0.3537599752290608,0.3517807111290835,0.3498847840630342,0.3468255063397881,0.3436371126180366,0.3431862245736256,0.3434049970947124,0.3432358563032566,0.3432010348900429,0.3428028804304819,0.3435232943347172,0.34431043758967,0.3454089385205374,0.3472364045767549,0.3489838621836214,0.3536208093945325,0.3588985139798577,0.3624139714365278,0.367578659370725,0.3732927870251813,0.3770752496660517,0.3814703386561752,0.3872469827995818,0.389230213227322,0.3943727654282605,0.397493837304848,0.4043852345267832,0.4105141090065713,0.0,2.56754690130415,61.62825021460712,193.06249604543848,267.21150062969326,APP_public_implementation,97 +100000,95697,52819,500.30826462689527,6288,64.35938430671808,5015,51.7466587249339,1847,18.840716009906263,77.3455376358958,79.73221542960577,63.32130932583449,65.08728075070482,77.11580477676615,79.50909542399886,63.23443631109934,65.00664488643966,0.2297328591296406,223.1200056069156,0.0868730147351541,80.63586426516167,233.7676,163.51764627488103,244278.92201427423,170870.1905753378,426.50017,276.2439193284212,444986.5513025487,287974.05282132264,495.89351,240.6805989989889,514599.66352132254,248686.01265263333,3495.21325,1633.422896496265,3604160.767840162,1658655.3146872553,1172.29431,526.4228517113444,1204105.8026897395,529210.3974823784,1797.15998,758.0516065774483,1833747.849984848,751598.2785614347,0.43043,100000,0,1062580,11103.587364285191,0,0.0,0,0.0,35341,368.6008965798301,0,0.0,44852,465.0824999738759,1211117,0,43460,0,0,20714,0,0,80,0.8359718695465898,0,0.0,0,0.0,0,0.0,0.06288,0.146086471667867,0.293734096692112,0.01847,0.3594106030685098,0.6405893969314902,23.686643858413007,4.124397445561352,0.3186440677966101,0.2775672981056829,0.2023928215353938,0.201395812562313,11.61934040863437,6.394379195090559,19.465389404485265,13739.09331652,57.595878479023845,17.169121107323324,18.209492092849743,11.116408349049346,11.100856929801422,0.5918245264207378,0.798132183908046,0.7058823529411765,0.595049504950495,0.1261083743842364,0.7731543624161074,0.9250871080139372,0.869198312236287,0.7777777777777778,0.1298076923076923,0.5151773049645391,0.7090464547677262,0.6370106761565836,0.5399484536082474,0.1251548946716233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026849309516813,0.0054059536487651,0.0080308645108888,0.0107014370210776,0.0134491739236591,0.0157364025259727,0.0182843507168933,0.0208633313930333,0.0233045647905759,0.025642075943145,0.0282555408551531,0.0306186382358076,0.0332973306588489,0.0360554381987737,0.0387318492832595,0.0409933521499539,0.0434674512078896,0.0457928114004587,0.0480484228261208,0.0506116749682179,0.0682675133955149,0.084520457614168,0.0995959065861978,0.1147063156344045,0.129433110403173,0.1474586132120378,0.1612581446187151,0.1741547900556017,0.1872494199908053,0.1981662801683414,0.2126253369272237,0.2260856378426976,0.2382227738402412,0.2506784854453928,0.2613807757092686,0.2726416348967107,0.2826890230969312,0.2920094073165517,0.2998604350342104,0.3078966350282227,0.3159100374843815,0.3225482174167153,0.328619401220262,0.3347218232308723,0.3393539465544221,0.3439817946983209,0.3480612601808824,0.3529889579895925,0.3575992255566311,0.3616492731526511,0.3591587080158815,0.356691737563876,0.3539370797242851,0.3505795953632371,0.3480467593962711,0.3440912695991703,0.3415146489773355,0.3412913282467799,0.3423248195731176,0.3419901829540384,0.3426868357420007,0.3435069176414702,0.3439670913173966,0.3447643744970043,0.3463286755333221,0.3471580979210684,0.3483347566182749,0.3527914794684093,0.3577016171466657,0.3620080225584813,0.3655332302936631,0.3696285699146929,0.3752432364572218,0.3813868613138686,0.3844484288006039,0.3869111830276879,0.3927469135802469,0.3945160630243503,0.3985229759299781,0.3809340023157082,0.0,2.527454020026308,65.13860503410348,189.1082364787922,254.202936385184,APP_public_implementation,98 +100000,95584,52811,499.2676598593907,6370,64.94810847003683,5117,52.67618011382658,1925,19.574405758285906,77.23812690061078,79.67095019090134,63.25655152000609,65.05476698802329,76.98713879131932,79.42531494979883,63.16116429926074,64.96514768120164,0.2509881092914554,245.63524110250512,0.0953872207453514,89.6193068216462,231.48708,162.06825575566788,242180.67877469037,169554.81603847755,425.63511,275.7298917670792,444423.5018413124,287595.32814953395,496.70614,241.01394143363063,514651.3537830599,248205.2811916052,3539.9595,1672.826261745691,3642341.919149649,1689315.5556115273,1157.41588,529.9455953935927,1188823.254938065,532642.149616117,1864.24284,803.8392301344645,1896975.853699364,795957.8132952526,0.43037,100000,0,1052214,11008.212671576832,0,0.0,0,0.0,35337,368.7751088048209,0,0.0,44957,465.3080013391362,1212023,0,43621,0,0,20438,0,0,78,0.8055741546702376,0,0.0,0,0.0,0,0.0,0.0637,0.1480121755698585,0.3021978021978022,0.01925,0.3499250374812593,0.6500749625187406,23.77128283439754,4.023453633108997,0.3222591362126246,0.2820011725620481,0.1958178620285323,0.199921829196795,11.32110686369682,6.311213318075164,20.872031140381,13802.610792389827,59.4104808376468,17.83468296151173,18.7855033966804,11.719264707828051,11.071029771626602,0.5944889583740472,0.8108108108108109,0.6828380836870831,0.6168132942326491,0.1147704590818363,0.7643312101910829,0.9233278955954324,0.8741865509761388,0.7537878787878788,0.1379310344827586,0.5193120947279392,0.727710843373494,0.6085858585858586,0.5691699604743083,0.1077922077922077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031315874817577,0.0060856247400931,0.0090569409471204,0.0118719697508715,0.0146555935515388,0.0169422455861527,0.0198378295680554,0.0228825939054662,0.0253058385499774,0.0281058270426401,0.0306581026451334,0.0331480358812589,0.0355701934952655,0.0378965165307574,0.040202821323089,0.0425690427656426,0.0449300753672468,0.0475260484298224,0.0498323999083925,0.0521319103210123,0.0698177712260452,0.0860834844213416,0.1016664215016706,0.1159611110525927,0.1304696824072411,0.1482509481534843,0.1633036881196009,0.1771836121150094,0.1890437053208338,0.2005414813382324,0.2138417042584878,0.2272884994903602,0.2402628539046664,0.2518108596789217,0.2623527207397855,0.2737795336758814,0.2828054551760401,0.2920543619240963,0.2999943126883922,0.3072054583673141,0.3145364426749004,0.3214327615740197,0.3281296373241527,0.3339226226984642,0.3396566858480445,0.3452919789270609,0.3496929433483617,0.3534038098156376,0.3574733558617104,0.3606546523483534,0.3578328717151928,0.35521773948582,0.3524143192156641,0.3501551669131935,0.3475215356642523,0.3432032715309165,0.340164390530851,0.3404409703326242,0.3413871859598509,0.3416956568518452,0.342300678660726,0.3438733609728036,0.3451967775183526,0.344592166726554,0.3457776919176064,0.3470397319792703,0.3483281281338644,0.3539409256041699,0.3578094734988554,0.3609469802117619,0.363802392475573,0.3681330358091595,0.3720754716981132,0.3769207363456565,0.3832301631963984,0.382522671063479,0.38570781084756,0.3849222177901875,0.3932461873638344,0.3971201212580523,0.0,3.224305714910911,68.25408415426723,194.62326946292768,255.13589823510296,APP_public_implementation,99 +100000,95705,50646,477.80157776500704,7115,72.86975602110653,5659,58.40865158560159,2207,22.60070006791704,77.33641368994157,79.71196096958141,63.332022412709286,65.08971124826517,77.05688857726116,79.4353645251122,63.22785808935739,64.98981996757882,0.2795251126804032,276.59644446920595,0.1041643233518954,99.89128068635011,177.28282,124.04070776390304,185238.13802831617,129606.75076971744,347.02635,220.15614020279585,361855.2844678961,229302.83419219012,421.51763,203.03536990186757,436170.41951831145,208879.23914791667,4048.76341,1859.9380401524024,4182428.222140954,1896158.286870248,1365.38867,610.4916040073764,1407981.192205214,619690.0265342537,2171.20892,911.166005671346,2225624.366543023,914805.3200642768,0.43274,100000,0,805831,8419.915364923463,0,0.0,0,0.0,28602,298.0722010344287,0,0.0,38421,397.1997283318531,1540834,0,55386,0,0,15629,0,0,60,0.6269264928687112,0,0.0,0,0.0,0,0.0,0.07115,0.1644174331007071,0.3101897399859452,0.02207,0.3416465540359346,0.6583534459640654,24.31397664499988,4.313295099391741,0.3200212051599223,0.2383813394592684,0.223537727513695,0.2180597278671143,11.23838812139835,5.827267631304292,23.48017261935315,14239.753105547104,64.79082252619142,16.41002970780886,20.64194558753411,13.926709230378064,13.812138000470393,0.5672380279201272,0.7976278724981468,0.6996134732192159,0.5834683954619124,0.1162055335968379,0.7390753641545282,0.9242424242424242,0.868,0.7098976109215017,0.1434108527131783,0.5007352941176471,0.7161997563946407,0.635392829900839,0.5441020191285866,0.109235352532274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025232053828381,0.0052637450684084,0.0078582669171023,0.0106715993170176,0.013275281527522,0.0159187664229116,0.0184786710041913,0.0209413926894016,0.0236267162851563,0.0263190221730851,0.0284352416585515,0.0309439231227284,0.0333902348731027,0.0358846007271678,0.0382095281334805,0.0407872160089306,0.0430231113320079,0.045408332641713,0.0478719534376136,0.050375,0.0677074087610296,0.0838521339708913,0.1000828517792157,0.1145197068934702,0.1284732470379896,0.1460279879930664,0.1615502035278154,0.1750023927770038,0.1878315632171639,0.1999635709081558,0.2149592060792629,0.2301968418775686,0.2428754646436102,0.2549088167484347,0.2660584743899758,0.2776008140332249,0.2885500607438615,0.2982842751456005,0.3078580826641259,0.3170893609229079,0.3259627616514398,0.3333489171215185,0.3405498078628436,0.346780375622844,0.3521535398659803,0.3574225966156802,0.3631326145147975,0.3685937798130128,0.373358543344816,0.3777898100948205,0.3771576408445959,0.375798022696248,0.3752011745771804,0.3737123484156995,0.3726372905610876,0.3703367955257821,0.3679210814760686,0.3689082135151605,0.3688370019886169,0.369715975271033,0.3712519726459758,0.3728007608178792,0.374294289252209,0.3757974615539587,0.3763194678748734,0.3770598835235434,0.3772045728729821,0.378856581158639,0.3803155734805066,0.3846833105884242,0.3891846844761331,0.3916508538899431,0.3892452218982831,0.3926087975623095,0.3945368856400885,0.3959098701934851,0.39817437834435,0.4044361525704809,0.4113871057772816,0.4177897574123989,0.0,2.714756660964316,69.13386505288621,213.7937433186435,303.5629095115356,CHI_public_baseline,0 +100000,95593,50674,477.1479083196468,7113,72.8714445618403,5611,57.93311225717364,2215,22.689945916542005,77.26635035352784,79.70337391600867,63.26822878755484,65.07167074528064,76.99197214089362,79.43308320708475,63.16541548099212,64.9737148473556,0.2743782126342182,270.29070892392326,0.102813306562723,97.955897925047,176.34254,123.40563486154694,184472.2312303202,129094.84466597652,347.6231,220.48202810035528,362883.4851924304,229891.42492664343,419.94851,203.01108134611044,434788.3736256839,208900.8277943053,3982.04945,1842.957959555101,4113639.78533993,1876738.5246767488,1336.24719,602.5947995290376,1375287.385059575,607814.0720202241,2168.51952,917.2014759975764,2223346.039982007,919621.3659084208,0.43243,100000,0,801557,8385.10141956001,0,0.0,0,0.0,28663,299.02817151883505,0,0.0,38253,395.5938196311445,1538608,0,55324,0,0,15693,0,0,70,0.7322711914052283,0,0.0,0,0.0,0,0.0,0.07113,0.1644890502509076,0.3114016589343455,0.02215,0.3278403001071811,0.6721596998928189,24.545661674352456,4.269297527678658,0.3154517911245767,0.2448761361611121,0.2206380324362858,0.2190340402780253,11.214686276756265,5.865660865589752,23.75624221686869,14345.671670854195,64.32513532932632,16.80558838547372,20.302163188517227,13.639616982258682,13.577766773076693,0.5751202994118696,0.8165938864628821,0.7146892655367232,0.548413344182262,0.1340872374798061,0.7535870243293824,0.9196428571428572,0.8747433264887063,0.7380952380952381,0.1908396946564885,0.5037425149700598,0.7457002457002457,0.6539360872954014,0.4887700534759358,0.1188524590163934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002614617536179,0.0054171950291656,0.0081550164014339,0.0111029770619814,0.01407748213595,0.0167656980951313,0.0194113324624428,0.0219899246906389,0.0245457149873127,0.0270929398503945,0.0294552321523872,0.0320909483378903,0.0346499490441925,0.0372306423342612,0.0395806434953261,0.042176279464415,0.0444759999585402,0.0471526645409885,0.0496029474516824,0.051875723538062,0.06950194454899,0.0854807440398218,0.1010094643851301,0.1164375625427924,0.1303989606109579,0.1479555084745762,0.1624468537414966,0.1770039898440333,0.1906398193048374,0.2033656067656003,0.2183524842207476,0.2324814867018681,0.245958605664488,0.2585445500071227,0.2705715041672178,0.2818307905686546,0.2922258601615841,0.3027869147929527,0.3120780195048762,0.3210322787933032,0.3287410926365796,0.336153161175423,0.342206314591827,0.3486184597295708,0.3536911771862377,0.3591912854461022,0.3642041891383419,0.3689572946022111,0.3734752141188684,0.3769200264375413,0.3755496209975452,0.3732507961893207,0.3715487550110101,0.3713350804291485,0.3703234649939657,0.3682635649398478,0.3662371870140586,0.3670227650573653,0.368397623572517,0.369499417927823,0.3705647740527524,0.3721391849778677,0.3726909320429202,0.373375530267322,0.374459031454752,0.377569211409396,0.3783783783783784,0.381833740056413,0.3856713249601981,0.3892668480870818,0.3910388835330303,0.3967446592065107,0.3972025292201571,0.4022188217291507,0.4045578679725021,0.4075127384761227,0.4083922533046418,0.4100061012812691,0.415975677169707,0.4186046511627907,0.0,2.848881853603985,70.1739016776149,208.372903666273,299.2612057222501,CHI_public_baseline,1 +100000,95690,50687,477.37485630682414,7322,75.05486466715435,5808,59.95401818371826,2300,23.59703208276727,77.34534288058313,79.71371684050897,63.32656324425341,65.07418125782408,77.04614806000355,79.41661750061303,63.21410307869019,64.96604212175889,0.2991948205795864,297.0993398959365,0.1124601655632204,108.13913606519066,178.3342,124.8518047092258,186366.600480719,130475.28969508392,351.5354,222.0426011755908,366616.124986937,231290.8048652846,427.21747,205.66572567011704,441476.5388232835,211152.77942938067,4134.32273,1918.8366947616933,4270963.674365137,1955689.314203881,1378.5661,619.9077896448113,1422193.1340787965,629363.8830022061,2247.11034,962.3057666775708,2306529.9822342983,968180.4486175668,0.43361,100000,0,810610,8471.209112759954,0,0.0,0,0.0,28889,301.1390949942523,0,0.0,38985,402.5499007210785,1531608,0,55073,0,0,15988,0,0,63,0.6479255930609259,0,0.0,0,0.0,0,0.0,0.07322,0.1688614192477111,0.314121824638077,0.023,0.3364181438998957,0.6635818561001042,24.21504301891264,4.241211783332563,0.3205922865013774,0.2432851239669421,0.2164256198347107,0.2196969696969697,11.179511578961156,5.837583074582366,24.850478141723904,14380.623852181085,66.88186492503685,17.17763194285904,21.39373055998743,14.435502416912396,13.87500000527799,0.5700757575757576,0.7961783439490446,0.7019334049409237,0.5760188087774295,0.1145584725536992,0.7183942480527262,0.9341637010676156,0.8423153692614771,0.6891025641025641,0.1258503401360544,0.5102681807199807,0.7050528789659224,0.6502571638501102,0.5394190871369294,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025417206740116,0.00539192832384,0.00827888478552,0.0109079829372333,0.0134841058390449,0.015893055315163,0.0183990295913478,0.020926268080806,0.0237666877926113,0.0263998362166035,0.0287764621456763,0.0312798447303833,0.0339638555456125,0.0367474347879836,0.0391132943920411,0.0415874131657294,0.0441609014457931,0.0465876541159865,0.0489846422592619,0.0512531916002292,0.0683197376254687,0.0861332663442818,0.1024325231918734,0.1171976935056189,0.1304531352229797,0.1481987130640928,0.1629138932237757,0.1771365882753919,0.19074440228718,0.2034861893268973,0.2187776125514536,0.2339181286549707,0.247167161937106,0.2593825632713852,0.2705007436787308,0.2820035048024666,0.2929561420163281,0.3036498322563213,0.3119370264775037,0.3200577796120512,0.3278633468442385,0.3352180936995153,0.3428642525357854,0.3489125349392387,0.3553695887511707,0.3610339591897196,0.3656548939958124,0.3714809580197868,0.3768815529949133,0.3809296971140486,0.3798446470786896,0.379481727941684,0.3771282994834052,0.3739389102517594,0.3719358448340171,0.3699428184948352,0.3680751769897457,0.3683465784754101,0.3694209788296453,0.3708546488748971,0.3711953462188028,0.3728689384789022,0.373799768883286,0.3765848394928514,0.3785944426948327,0.3791430669183973,0.3801045923470408,0.3830886522588368,0.3861333896158717,0.3894142891202416,0.3929617426322533,0.3938617560715239,0.3937974683544303,0.3960874568469505,0.3988455715367146,0.4038874314333412,0.4045168228606545,0.41764945099634,0.4202377661045064,0.4279544562230075,0.0,2.937215298591914,73.24729217641915,220.557286921249,304.5058083901983,CHI_public_baseline,2 +100000,95658,51073,481.68475192874615,7257,74.55727696585754,5737,59.35729369211148,2289,23.47947897718957,77.2498286400838,79.64903263720322,63.26585613190741,65.03923036805224,76.95284853018215,79.3541103068385,63.15539585148902,64.93289908206116,0.2969801099016536,294.92233036471305,0.110460280418394,106.33128599108944,176.94732,123.90695385333484,184978.88310439276,129530.98209803138,351.55109,222.5673232164001,366866.9531037655,232029.37123439767,423.71825,203.7683762498224,439930.4710531268,210581.48315787988,4044.34409,1853.2641147667275,4182741.966171151,1892277.3245998533,1342.56883,594.6427798686339,1388688.4526124315,606813.3871381728,2232.80136,947.5327512650298,2291683.1211189865,952397.8079350566,0.43386,100000,0,804306,8408.13105019967,0,0.0,0,0.0,28928,301.74162119216373,0,0.0,38532,399.8097388613602,1531199,0,55083,0,0,15923,0,0,67,0.6899579752869598,0,0.0,2,0.0209078174329381,0,0.0,0.07257,0.1672659383211174,0.3154195948739148,0.02289,0.3351308693936604,0.6648691306063396,24.417913976828423,4.314281878242422,0.3215966533031201,0.24559874498867,0.2161408401603625,0.2166637615478473,11.03346781284907,5.63782480728019,24.698319128890148,14354.716670215412,65.96576967357608,17.20483224545033,21.22319141808288,13.909115111780224,13.628630898262646,0.5600488059961652,0.7821149751596878,0.6878048780487804,0.5679806918744972,0.1096774193548387,0.7219759341355289,0.8980392156862745,0.8313953488372093,0.7344827586206897,0.1520912547528517,0.4985569985569985,0.7163515016685206,0.6320541760722348,0.5173137460650578,0.0982599795291709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655091373232,0.0054255783057997,0.0077749921336567,0.010445031497663,0.0129080163969443,0.0156234086325952,0.0185279601908879,0.0214019502731403,0.0240028635712824,0.026576950256552,0.029151109834653,0.031731519907959,0.0344714041694964,0.0366110080395794,0.038944010241903,0.0415253185503888,0.0438422879643541,0.0463360950185842,0.0486495484622747,0.0511235076377665,0.0677797862225333,0.0839896112600536,0.0999254835696518,0.1149260798653127,0.1286816306286341,0.1470435712093471,0.1625536252814,0.1769238146999584,0.1905296830032844,0.2029201942498603,0.217735234127969,0.232421175934663,0.2454875614836788,0.2576741634668129,0.2684073971846536,0.2794464206313917,0.2898915916319491,0.3008013544018059,0.3105164265786027,0.319437099036538,0.3279757339097692,0.3355432521070635,0.3439247222288311,0.3513015628386351,0.3578077913204738,0.3627460690850563,0.367865225044003,0.3723744467470002,0.3766884418187023,0.3806011726315231,0.3789948157071889,0.3769616857707783,0.3755753515840757,0.3747492659670339,0.3729021266420576,0.3720450627924156,0.3697789088595514,0.3700853712908073,0.3706008768159546,0.372546550328326,0.3736454596941665,0.3741858380639378,0.3742036201004177,0.3755330430270075,0.3757927733093578,0.3769028871391076,0.3779838571183239,0.380740600555135,0.3838785787231045,0.3868752993772952,0.3895914174845926,0.3940344534240748,0.3982815264088956,0.4002448917119461,0.4039005087620124,0.4044518115084063,0.404418533292421,0.4084391642769356,0.4068219633943428,0.4153670597185241,0.0,2.361397906470747,70.07083050963008,222.9280232418372,304.9977455538511,CHI_public_baseline,3 +100000,95733,50837,478.7899679316432,7225,73.79900347842437,5695,58.78850553100811,2247,22.99102712753178,77.32698317968122,79.68590978517582,63.31555014592704,65.06094207925305,77.04412599591559,79.40622385997435,63.20931313902604,64.95894568214476,0.2828571837656284,279.68592520147695,0.1062370069010043,101.99639710829445,176.86988,123.81964660589624,184753.30345857752,129338.5213102026,349.2923,221.0742109766803,364130.5819309956,230207.41981420675,425.9747,205.8974774398133,440372.8703790752,211585.6424680825,4062.48881,1879.4696823162533,4198537.129307553,1918945.536037613,1371.01357,615.7378353653613,1416748.9162566722,627809.1205387498,2194.6408,930.454341990564,2249075.5121013653,936173.5475216524,0.43307,100000,0,803954,8397.87742993534,0,0.0,0,0.0,28765,299.72945588250656,0,0.0,38816,400.9066883937618,1536352,0,55285,0,0,15763,0,0,58,0.6058516916841632,0,0.0,0,0.0,0,0.0,0.07225,0.1668321518461218,0.3110034602076124,0.02247,0.3314045239347711,0.6685954760652288,24.374905380821243,4.287502398966814,0.3164179104477612,0.2409130816505706,0.2194907813871817,0.2231782265144864,11.396567800465716,6.127595540638765,23.994714586115258,14300.096402398549,65.12286150074519,16.615474142956028,20.58224756150044,14.303757245023464,13.621382551265262,0.5694468832309043,0.7864431486880467,0.6886792452830188,0.6113296616837136,0.1168,0.7501527183872938,0.9383177570093458,0.8661417322834646,0.7692307692307693,0.1631205673758865,0.4965500246426811,0.6893667861409797,0.6190108191653787,0.5599582898852972,0.1033057851239669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028975229218377,0.0054957311755997,0.0083429754582546,0.0110939531859557,0.0136587846427663,0.0163739117152894,0.0191091895419504,0.0216503684951922,0.0240791463963043,0.0264378051401725,0.0291275071486404,0.0316683091073334,0.0342193988734015,0.0366987592030067,0.0391681538255227,0.0414763685961685,0.0440202087129368,0.0463866731668862,0.0487860646877858,0.0512548051379816,0.0686724850711989,0.0852470679319111,0.1011050998154672,0.1162203929731605,0.1292060212514758,0.1469537082073297,0.1623247130704117,0.1767881672683129,0.1899528538898213,0.2020997938852628,0.2169085146294659,0.230815061963775,0.2439701336584091,0.2560740708313269,0.2669250759811478,0.2789137521900157,0.2898813116073224,0.2993948545735246,0.3090737562372839,0.3175145648882976,0.3258015550225374,0.3336263478668542,0.3411182805902168,0.3474918316355948,0.3535906894074966,0.3600488955290225,0.3653228638803873,0.369846593300093,0.3742748497787237,0.3779554615740434,0.3774248776607934,0.3766452128612577,0.3753491127598951,0.3742435210655856,0.3723388417448265,0.3699993854851595,0.3667180032707238,0.3674997120810779,0.3674252153216554,0.3685009826692871,0.3702487711530524,0.3712214254585793,0.3722640038762139,0.3735148125687846,0.3758459010054137,0.3764554704709955,0.3784836593818921,0.3806588265048052,0.3861969248130907,0.3885304659498207,0.3918659850283001,0.392667092379736,0.3961860406570583,0.3987235982373499,0.4017446768595816,0.4028845017141506,0.4023287881109239,0.4035728786033293,0.4107490949596212,0.4105549088086923,0.0,2.690123705986708,71.89422166422067,205.4604696808049,307.8560163123368,CHI_public_baseline,4 +100000,95761,50517,475.9139942147639,7393,75.94949927423481,5822,60.21240379695284,2274,23.412453921742674,77.39144353273707,79.7300099149067,63.36142006586866,65.08713382997031,77.11380684977931,79.44980449974643,63.26008045861289,64.98703035715343,0.2776366829577625,280.20541516026753,0.1013396072557668,100.10347281688324,176.82214,123.74423692131548,184649.42930838236,129221.95562004935,347.68401,219.719117820232,362511.1371017429,228881.69277705124,423.98515,204.26868481022316,438666.11668633367,210219.38677084213,4111.84803,1879.3919576543,4258377.940915404,1927098.952239744,1383.67365,614.8810863393317,1431928.5617318114,629104.2766254859,2226.43324,925.157959050968,2295398.961999144,942527.3948832712,0.43254,100000,0,803737,8393.155877653742,0,0.0,0,0.0,28693,299.03614206200854,0,0.0,38640,399.4214763839141,1543526,0,55494,0,0,16150,0,0,72,0.751871847620639,0,0.0,0,0.0,0,0.0,0.07393,0.1709206084986359,0.3075882591640741,0.02274,0.3320428442379662,0.6679571557620338,24.557650080014685,4.218982243545225,0.3148402610786671,0.2598763311576778,0.2186533837169357,0.2066300240467193,11.158014025045471,5.868257036726209,24.156620695963195,14293.391967713878,66.47369767817354,18.17000669063821,21.01249889954021,13.152737938722508,14.1384541492726,0.5714531088972862,0.8056840713813616,0.6863066012002182,0.5702410640066501,0.1288295365278868,0.7449042618900555,0.9219600725952812,0.8627819548872181,0.784,0.1503496503496503,0.5046395431834404,0.739085239085239,0.6141429669485011,0.5141657922350472,0.1225937183383991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027438036611048,0.0055332042927936,0.0083297822690286,0.0112125613186947,0.0136755091458144,0.0161530005699861,0.0191155492154065,0.0218336156059338,0.0241600179795482,0.0266432020954407,0.0293135245901639,0.03169180260593,0.0344023263699791,0.0367431376786982,0.0392239735276835,0.0416602105219663,0.0438197944588762,0.046514763381421,0.0488851930772828,0.050792195752039,0.0680437550884078,0.08466826404947,0.1007290847102019,0.1160244815547049,0.1302229954135695,0.1474494543608831,0.1616717570204462,0.1760869796487196,0.1886312911803338,0.2002293971357516,0.215748963883955,0.2296819405842084,0.2431231048461597,0.2555225380732842,0.2661236245314338,0.2780039831821199,0.2893560576505077,0.2990260506184073,0.3086279800029474,0.3171114060783596,0.3253418719439596,0.3335709944363925,0.3404889472376964,0.3473348748607234,0.3539034720452422,0.3595931735907602,0.365622459826174,0.3710252297665419,0.375356236074408,0.3792584773716849,0.3779578431636471,0.3768530487637174,0.3752288152299417,0.3744152468957551,0.3734467554447067,0.3704960635939769,0.3687290440943885,0.3690183344812883,0.3700795466184152,0.3713606973171864,0.3714387665032772,0.3722059289790742,0.3726821679350797,0.3733899790950165,0.3739772452190752,0.3756922027136971,0.3759125132403882,0.3797195936323068,0.3827278521351179,0.3870903197406859,0.390882771931437,0.3961970242251705,0.3984703632887189,0.3992769786939466,0.4017992424242424,0.4006421691045309,0.4025224130071417,0.3991103922361504,0.400878638110928,0.4068833652007648,0.0,2.314259676850224,71.67081705314304,218.01215856498249,312.2754033489405,CHI_public_baseline,5 +100000,95715,50906,480.8546204879068,7246,74.2203416392415,5731,59.16523011022306,2174,22.2640129551272,77.37264048070351,79.73021187963732,63.34029949113111,65.08121253464226,77.09899302074236,79.45863456736839,63.23935841338773,64.98370559957775,0.273647459961154,271.57731226893134,0.1009410777433785,97.50693506451567,176.33726,123.43299614095648,184231.58334639293,128958.88433469828,350.2931,221.80086128675225,365272.66363683855,231028.0429261372,427.49433,206.22567479871287,441121.2767068902,211408.18389219063,4024.22249,1837.852997049824,4157152.379459855,1872902.791673012,1324.91652,583.4089228812128,1363275.2546622788,588586.2379038567,2108.69062,880.408688438076,2161158.522697592,884926.5088985978,0.4333,100000,0,801533,8374.162879381496,0,0.0,0,0.0,28864,300.8201431332602,0,0.0,38881,400.898500757457,1539812,0,55427,0,0,15806,0,0,64,0.6582040432534085,0,0.0,1,0.0104476832262445,0,0.0,0.07246,0.1672282483267943,0.3000276014352746,0.02174,0.3388852459016393,0.6611147540983606,24.307079748577603,4.271512906016647,0.3379863898098063,0.2458558715756412,0.2018844878729715,0.2142732507415808,11.373324195322578,6.133032714301579,23.04245183108924,14386.671400064964,65.29112031433063,17.0005834439126,21.967423434811725,13.819170437985402,12.503942997620909,0.5807014482638283,0.7799858055358411,0.7036654620547238,0.5846905537459284,0.1279170267934312,0.7476099426386233,0.9021526418786692,0.8709055876685935,0.7062706270627063,0.1949152542372881,0.5177799135031235,0.7104677060133631,0.6424541607898449,0.5448648648648649,0.1107491856677524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025620253164556,0.0051584526668896,0.0077705752863243,0.0103489600259993,0.012709839449308,0.0154019993077753,0.018052271059284,0.0205362701968909,0.0231015343098672,0.0256321015457058,0.0281129850822781,0.0308313056334123,0.0332229671369226,0.0357058260126262,0.0380587852964541,0.0405345349690461,0.0429245869052056,0.0452744471642534,0.0476858636566784,0.0500151024361791,0.0679829598847286,0.0843456697115233,0.1007832405397754,0.1153631901453601,0.1291982037064367,0.1475392504096844,0.1632813245791745,0.1775836197814126,0.1908281179913279,0.2031487956071298,0.2185305647697411,0.2331703200398156,0.2471178108413817,0.2593167871714376,0.27034135176178,0.2825812314375637,0.2932684255775264,0.3040373894926516,0.3133144733403774,0.3222183987153016,0.3298515413298747,0.3371304805947433,0.3448308560320508,0.351280296755141,0.3562941612852226,0.3616895292608309,0.3670182118790551,0.3719817216755979,0.3767473797401117,0.3806587893590336,0.3799307772076549,0.3791964322583309,0.3779951513784744,0.3759998842810235,0.374536851033436,0.3731361600294532,0.3698808165335362,0.3711475841199881,0.3717249747910649,0.371745221565863,0.3725769029264276,0.3735638990880019,0.373699446215808,0.3748881731973519,0.3761368557817237,0.377691465512747,0.3804669703872437,0.3847699165044886,0.3883831664449268,0.3919292426755113,0.3946544447973862,0.3971149766652524,0.4017907812598524,0.4046713329275715,0.4081785781279309,0.4099739398246861,0.413835322926232,0.4173754556500607,0.4193370165745856,0.4248265227447957,0.0,2.760113381712674,68.86648201753121,216.04777079065445,308.51596661919234,CHI_public_baseline,6 +100000,95718,50471,475.5427401324724,7267,74.32248897803966,5703,58.74548151862764,2226,22.670762030130174,77.33281654085012,79.69899220386607,63.319784280511655,65.07111188980426,77.03902705232862,79.41276772074934,63.2100912159259,64.96888048318804,0.2937894885214973,286.224483116726,0.1096930645857554,102.23140661621244,176.34078,123.354587403142,184229.48661693727,128872.9260986878,347.59121,219.62328395283663,362246.81878016674,228554.1736693586,418.34651,201.04052400798284,432758.143713826,206660.40563333928,4030.62922,1841.882062199326,4150680.895965231,1864018.8702222416,1321.26623,583.5154905273027,1360087.810025283,589333.3652262914,2173.80628,917.9020320807088,2215759.209344115,908519.9277272546,0.43114,100000,0,801549,8374.067573497148,0,0.0,0,0.0,28556,297.4571136045467,0,0.0,38206,394.82646942058966,1544244,0,55599,0,0,15622,0,0,61,0.6268413464552122,0,0.0,1,0.0104473557742535,0,0.0,0.07267,0.1685531381917706,0.3063162240264208,0.02226,0.3248399320527897,0.6751600679472103,24.909553760797777,4.31389083348617,0.3275469051376468,0.2381202875679467,0.210766263370156,0.2235665439242504,11.129901869779898,5.762507201189362,23.72223537073937,14339.681698430872,64.87005370570792,16.363474411919473,21.22056707804613,14.147192285885406,13.138819929856904,0.5661932316324741,0.7827687776141384,0.7012847965738758,0.5709803921568627,0.1064891846921797,0.730844793713163,0.9132947976878611,0.8739837398373984,0.7061068702290076,0.1062992125984252,0.5059865900383141,0.7020262216924911,0.6395348837209303,0.5360315893385982,0.1065400843881856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028169299516663,0.0052133518606797,0.0077875926489998,0.0107337798965247,0.0132665934155373,0.0159611310299869,0.0180709376083542,0.0205515115008831,0.0230365742681567,0.0254863813229571,0.0280098834288526,0.0305684478580523,0.0332832935757176,0.0359015025901399,0.0382992333962711,0.0409732702127219,0.0432080864990264,0.0456121051102162,0.0481469156857035,0.0505928194869871,0.0680233043768793,0.0849979595467054,0.1001845947306595,0.1150380130180128,0.1288758157531286,0.1470379811099241,0.1613943521524197,0.1753308279481747,0.1880982905982905,0.2007702540336423,0.215317343213174,0.2302364590660678,0.2441481030281935,0.2566626204302134,0.2684542343789541,0.2801377981102606,0.2908339845930557,0.3008906353799556,0.3108817116380485,0.3205917064842505,0.3276039796615666,0.3345869066029336,0.3423626341058621,0.3488533954135817,0.3546758476380491,0.3610912144639019,0.3669341692789968,0.3718275405157476,0.3762112937330548,0.3803668002168537,0.3788731064438239,0.3773348221055098,0.3776077689636676,0.3768170498639022,0.3755235894760378,0.373516542565441,0.3710639918740477,0.3718611156820799,0.3730336693997022,0.373595907562424,0.3749859133766575,0.3759052399753973,0.3770757136250893,0.3781916087054072,0.3785331207421365,0.3799528301886792,0.3811477761836442,0.3859343306288032,0.3889911504424779,0.3915604712671315,0.3945675153966357,0.3978638900815801,0.4008524715312679,0.4057692307692307,0.411463275763902,0.4159482758620689,0.4178598922247883,0.4203990228013029,0.4236303265080243,0.4262610704659222,0.0,3.175666587728984,66.28016278843826,215.7699706119803,312.44055040293887,CHI_public_baseline,7 +100000,95776,50665,476.7895923822253,7215,73.92248580020048,5673,58.6054961577013,2230,22.865853658536587,77.34910350822409,79.67691463864998,63.34642956891118,65.06639076055319,77.06113349594885,79.39115360292628,63.23865096027946,64.96284972426777,0.2879700122752382,285.76103572369504,0.1077786086317189,103.54103628542076,178.02312,124.66966326987226,185874.45706648848,130167.95780766816,350.52566,221.97431920634543,365362.6691446709,231141.8405512294,417.90709,201.21173564279496,432382.2043100568,207094.2043772074,4065.4985,1873.259598374272,4201324.214834615,1912678.6532767296,1346.35893,602.6744804801996,1388843.614266622,612460.8889568903,2187.84132,933.221414381887,2245367.816572001,938905.0614499904,0.43286,100000,0,809196,8448.838957567657,0,0.0,0,0.0,28880,300.8895756765787,0,0.0,38111,394.1070831941197,1534250,0,55146,0,0,15538,0,0,72,0.7413130638155697,0,0.0,0,0.0,0,0.0,0.07215,0.166682068105161,0.3090783090783091,0.0223,0.3410657476139979,0.6589342523860021,24.469996012322085,4.358007123269851,0.322933192314472,0.2307421117574475,0.2205182443151771,0.2258064516129032,10.86949650983228,5.495665422179018,24.07166541254464,14344.430961061724,64.91365666641451,15.96195439304153,20.86400018581173,14.257730867318797,13.829971220242454,0.5633703507844174,0.8036669213139801,0.6894104803493449,0.5893832943013271,0.1007194244604316,0.7148387096774194,0.909456740442656,0.8662551440329218,0.6815068493150684,0.1309090909090909,0.506427358719379,0.7389162561576355,0.62555720653789,0.5621840242669363,0.0922131147540983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030885450421257,0.0058484274115894,0.0085319211532803,0.011518420330926,0.0140419734005775,0.0165417973044505,0.0191300271102142,0.0218094606317293,0.0240832132748878,0.0264167544837887,0.0290541025089385,0.0318519050599788,0.0342322158962448,0.0364457893328392,0.0390444572748267,0.0414080171870642,0.0438224337748344,0.046287847366238,0.0487956940086036,0.051099147132637,0.0688060947610102,0.0854130493902056,0.1009310908862139,0.1158171308460325,0.1299321305117612,0.1478350014267747,0.1631047788661324,0.1772476361663883,0.1903765690376569,0.2031954907360773,0.2181289697491656,0.232890936820586,0.2468816268827143,0.2587257314738857,0.2691558548743851,0.2802436998061479,0.2913834097987341,0.3011090115625141,0.3107713958212749,0.3186852201798087,0.3269075004049894,0.3349681618129038,0.3418827708703374,0.3487081110245189,0.3541659070191431,0.3596001974333662,0.3645020234798842,0.3696738022426096,0.374338281087814,0.3797727843832246,0.3788222276198958,0.3772122215325195,0.3761996161228407,0.3746525767226404,0.3736051182859694,0.3702868538119343,0.3681181022453381,0.3684565635953725,0.3700273878808627,0.3701083549744783,0.3706570961498713,0.3711493773461241,0.3724429665796784,0.3723509561304837,0.3740613342376823,0.3759682798098889,0.378070855960693,0.3828097703522536,0.3858510638297872,0.3862359550561798,0.3878330495605356,0.3934083601286173,0.4003964954914625,0.3986872586872587,0.3995215311004784,0.4025737525798227,0.4107955436999843,0.4136645962732919,0.4198817234581808,0.4319904268049461,0.0,2.4454148735960746,68.03471177820762,217.2654965876179,306.620595386232,CHI_public_baseline,8 +100000,95656,50430,475.6209751609935,7173,73.69114326336037,5672,58.59538345738898,2239,22.96771765493017,77.31532774038504,79.70641040130805,63.31028192710126,65.07564633564783,77.03297945504924,79.42469939675831,63.20384417100245,64.9723349089327,0.2823482853358001,281.7110045497344,0.1064377560988134,103.3114267151376,177.52988,124.19655257635968,185591.9963201472,129836.65695446148,346.11158,219.40012081187743,361127.8121602408,228662.03982173355,419.94158,202.7964236851151,433924.9393660617,208183.20415940537,4010.69024,1858.7112342789344,4146631.972902902,1896925.72789886,1376.24807,618.7274204328328,1416367.0025926237,624454.2242491443,2187.52964,930.7928299290412,2245656.9791753786,938084.16471294,0.43066,100000,0,806954,8435.999832733964,0,0.0,0,0.0,28543,297.6812745671991,0,0.0,38309,395.4900894873296,1536241,0,55243,0,0,15887,0,0,56,0.585431128209417,0,0.0,1,0.0104541272894538,0,0.0,0.07173,0.1665583058561278,0.3121427575630838,0.02239,0.3413793103448276,0.6586206896551724,24.36027849333413,4.287174969135699,0.3168194640338505,0.2494710860366713,0.2175599435825105,0.2161495063469675,11.14841228076735,5.79498007683117,24.00303479951192,14275.56642043189,65.18291794368535,17.2921708156872,20.3880438222178,13.886473070744495,13.616230235035864,0.5742242595204513,0.8098939929328622,0.6905954368391765,0.5872756933115824,0.1215559157212317,0.7303582652419862,0.9216417910447762,0.8598726114649682,0.7416107382550335,0.1468531468531468,0.5133545699583435,0.7417519908987485,0.6304675716440422,0.5377155172413793,0.1139240506329113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426991105618,0.0052413877004805,0.0080679534798757,0.0106069534472598,0.013214111328125,0.0156455309396485,0.018287707559871,0.0206731014759205,0.0234391777880042,0.0260306797468613,0.0289725760466022,0.0315353720043964,0.0340719708659959,0.0363630743232799,0.038882753068197,0.0414727479573895,0.0436719680878619,0.0459683027327735,0.0483679710416276,0.0504862059261884,0.0681336133487968,0.0850941302117144,0.100469178046246,0.115484183276156,0.1293178963810408,0.1470856005589549,0.1619041551187707,0.1760250551276725,0.1895023785343952,0.2018250134192163,0.2164726175075463,0.2304543239291709,0.244180222556129,0.255946842399098,0.2679565011403576,0.2788898999090082,0.2896636495697843,0.3004064720254917,0.3096330796319436,0.3188741569940818,0.3269208483022366,0.3350163419748603,0.34196866630324,0.347932603970265,0.3534820364379363,0.3593214065391733,0.3648917906239426,0.3693595017639492,0.3741479849682519,0.3783919531570112,0.3762862267535165,0.3752395659547479,0.3739667672863712,0.3729461879509693,0.3714728174278184,0.3696832995765052,0.3676158163427085,0.3681928660579386,0.3685066046129628,0.3687524596615505,0.3699953117674636,0.3702442693693337,0.3714688078022532,0.3721926813398847,0.3723525007848914,0.3722579969635097,0.3726745521359669,0.3767116759332803,0.3803800609799333,0.3838720025663646,0.3859342679843714,0.3895339504521376,0.3902718533138091,0.3953919901036029,0.3989488772097467,0.4023057523718025,0.4044634668297157,0.4007618283881315,0.3974536396346526,0.3907386146192116,0.0,2.7240242452032564,69.72756885560243,217.6764010713745,301.00225851983305,CHI_public_baseline,9 +100000,95616,50581,477.9848560910308,7149,73.29317269076306,5578,57.66817269076305,2175,22.276606425702813,77.3146043072854,79.73538990687749,63.296484254502126,65.08366279198145,77.04501265425681,79.46679595214567,63.196680048123326,64.98746019510924,0.2695916530285984,268.5939547318128,0.0998042063787991,96.20259687221731,177.24234,123.96604746146724,185368.91315261045,129649.89903516906,345.74131,217.98615913486069,360929.3842034806,227316.6511199597,413.45345,199.06105799815688,428485.1803045516,205094.1921330121,3978.36268,1817.148416830648,4113650.738370148,1853344.656574892,1297.23218,575.3390573609303,1337569.7895749663,582577.8189434086,2127.60544,896.0201272421807,2181400.184069612,899457.9782575003,0.43176,100000,0,805647,8425.85968875502,0,0.0,0,0.0,28456,296.8959170013387,0,0.0,37658,389.924280455154,1540773,0,55357,0,0,15617,0,0,67,0.6902610441767069,0,0.0,1,0.010458500669344,0,0.0,0.07149,0.1655780989438577,0.3042383550146874,0.02175,0.3300789086532031,0.6699210913467969,24.717083212642123,4.330051803751629,0.3196486195769092,0.239870921477232,0.2205091430620294,0.2199713158838293,11.14710543485452,5.784912316164149,23.21499010771972,14282.164251028664,63.28806069286029,16.210702828334558,19.9363034274926,13.662337718759568,13.47871671827357,0.5568304051631409,0.7937219730941704,0.6797532249018509,0.5802770986145069,0.0975609756097561,0.7474332648870636,0.918,0.8717948717948718,0.7781569965870307,0.1297071129707113,0.4891911586106388,0.7195704057279236,0.6189069423929099,0.5182012847965739,0.089808274470232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026952266118164,0.0052833862348013,0.0079587444674544,0.0106284611085708,0.0132649739583333,0.0157364025259727,0.0179924725369998,0.0201961385228317,0.0227572593100203,0.0254377880184331,0.0281236538185398,0.0307453671364588,0.033229427075296,0.0357742676681813,0.0383884886145461,0.040884274960708,0.0433012123096052,0.0455055129882265,0.047758771382195,0.0499066531774424,0.0670450625607576,0.082999853338641,0.0981580273880534,0.1131427969893152,0.1273698433475488,0.1462019887536931,0.1606717940001699,0.175119627423188,0.1890905978882957,0.2011495487752471,0.2160497157098622,0.2300880159556018,0.2434072879435097,0.2551851080847147,0.2662521634641884,0.2784838226316666,0.2897590092104086,0.2999943652448301,0.3090935951634165,0.3177511127426238,0.325805480277025,0.3333918477688445,0.3405396445780992,0.3471127900701565,0.3543551933144654,0.3605403606512923,0.3651459031983582,0.3707104881585307,0.375603567683724,0.3797182577927993,0.3790330185502014,0.3783095723014256,0.3770570401184516,0.3760475921663989,0.3755567140835629,0.3738982217990848,0.3710678840809845,0.3717578775537125,0.3721293735722015,0.3726094671374545,0.373076056761018,0.3727333781061114,0.372984166161183,0.3740633876848062,0.3755462709503914,0.3776547349814136,0.3791279119378786,0.3836629784032849,0.3859630680822734,0.388531746031746,0.3911444141689373,0.3952562878064311,0.3969795037756203,0.3984548305668171,0.4005483078086594,0.4070817776707214,0.4095253015823281,0.4098969072164948,0.4166435506241331,0.4141572154868987,0.0,2.6506683704010263,63.85619461586838,212.5042615452302,307.7539092788146,CHI_public_baseline,10 +100000,95639,50673,478.6018256150734,7106,72.92004307866038,5571,57.6020242787984,2182,22.396721002938133,77.29129418892526,79.69248397887702,63.29829466637945,65.0701686799759,77.02115799027041,79.42421262601479,63.19747681358376,64.9731905209362,0.2701361986548534,268.2713528622287,0.1008178527956857,96.97815903969342,177.1077,124.01777147271892,185183.5548259601,129672.8023847164,348.40869,221.07843691345371,363609.092525016,230472.76415840164,422.47118,203.9124218823009,437949.351206098,210214.6808271949,3952.16327,1814.1620905631355,4089316.4085780894,1853825.4692783663,1306.81579,585.5887299719585,1347971.5806313325,593869.0057087626,2127.9879,893.2150740812202,2186503.288407449,899486.7093938151,0.43173,100000,0,805035,8417.434310270915,0,0.0,0,0.0,28651,298.8843463440647,0,0.0,38410,397.839793389726,1535001,0,55158,0,0,15539,0,0,81,0.8469348278421983,0,0.0,2,0.020911971057832,0,0.0,0.07106,0.1645936117480833,0.3070644525752884,0.02182,0.3340915172598341,0.6659084827401659,24.40440121627634,4.275423522030798,0.3159217375695566,0.2448393466164063,0.2103751570633638,0.2288637587506731,11.307037949170406,5.947421109928854,23.350816755262887,14252.791010882836,63.94994102938288,16.70630536485254,20.098801918811464,14.255037876917164,12.889795868801718,0.5803266917968048,0.8086510263929618,0.7130681818181818,0.5803921568627451,0.1151877133105802,0.7338501291989664,0.9155206286836935,0.8720173535791758,0.739938080495356,0.1137254901960784,0.5212527964205816,0.7450292397660818,0.6566589684372595,0.5262605042016807,0.1155943293347873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025019499002258,0.0050694514853492,0.007724084731484,0.0105070622904176,0.0129516019086571,0.0153893160869786,0.0182515243591573,0.0208405660955337,0.0234029936201537,0.0259865255052935,0.0285503322667979,0.0312018569110367,0.0338353599572042,0.035858913722217,0.0381546211894414,0.0405845666945918,0.0431633054904968,0.045362515963577,0.047767685280561,0.0502820087782399,0.0667983404917912,0.083862317474284,0.099259725941093,0.1146093199018957,0.1292457410652086,0.1471394548822439,0.1617796934052401,0.1762412518508261,0.1893189351010371,0.2016706572039039,0.2170963950265816,0.2314081807253706,0.2448068632147367,0.2564445125824043,0.2680931750283868,0.2793006667184363,0.290176575771122,0.3011643881894552,0.309508397778762,0.3187892541145188,0.3265596776434625,0.3343905065068814,0.341029984954211,0.3466735467767484,0.352986990860745,0.3583160442600276,0.3636523266022827,0.3687580515554648,0.3733840402886662,0.3766290412117687,0.3759409653832663,0.3743930029798035,0.3725925193234325,0.3709791983764586,0.3701975400670891,0.3678001814854119,0.3654435951628025,0.3669036269771891,0.3675175527440646,0.3681330510603179,0.3686211764705882,0.3700222557825292,0.371021387672617,0.3722470421839571,0.3723968376397994,0.3751567725752508,0.3762359310443083,0.3806794924273434,0.384645197660489,0.3873978065802592,0.3909265526387999,0.3922090362407535,0.3944162436548223,0.3960853818293904,0.4006666666666666,0.3999758687258687,0.40609375,0.4069743161411568,0.4057643402090986,0.4116959064327485,0.0,2.514006586210684,68.13741806851345,215.3080024504526,294.81214407846534,CHI_public_baseline,11 +100000,95637,50589,476.70880516954736,7311,75.05463366688625,5739,59.48534562982946,2270,23.390528770245822,77.27514686010801,79.68409977175081,63.27600815666828,65.05569885024079,76.98796621229532,79.39729998746648,63.1701690134716,64.95260131270703,0.2871806478126899,286.7997842843266,0.1058391431966825,103.09753753375615,175.83808,123.09396837455532,183859.8868638707,128709.56677285496,348.12449,220.2005935537816,363489.41309325886,229729.5749069728,419.6264,202.1671089453797,435522.1723809823,208965.0209447953,4127.92745,1890.801293300436,4279524.608676558,1940339.819630934,1397.65608,624.1897273643469,1445896.995932537,637144.7843035089,2228.45094,935.0808283127756,2297334.14891726,949025.239014772,0.43189,100000,0,799264,8357.267584721394,0,0.0,0,0.0,28728,299.84211131674977,0,0.0,38267,396.8652299842111,1539678,0,55367,0,0,15832,0,0,54,0.5646350261927915,0,0.0,0,0.0,0,0.0,0.07311,0.1692792146148324,0.3104910408972781,0.0227,0.3353745928338762,0.6646254071661237,24.47244742306475,4.363082652953451,0.3152117093570308,0.2397630249172329,0.2249520822442934,0.2200731834814427,11.300392399320998,5.912952135775804,24.353083125943144,14340.730365774576,65.70496555325464,16.67396299326347,20.50152496209843,14.199025916233056,14.330451681659676,0.5624673288029274,0.7834302325581395,0.6904367053620785,0.5882818685669042,0.1223857474825716,0.7325870646766169,0.9326923076923076,0.8630705394190872,0.7412140575079872,0.1535836177474402,0.4962478818687969,0.6927570093457944,0.627731725697061,0.5378947368421053,0.1132264529058116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028657647440051,0.0055339894387967,0.0082694941910608,0.0110309801929913,0.013812182792746,0.0163047906143066,0.0189868254680425,0.0214086635154311,0.0240356598816108,0.0263147116644823,0.0286482106407639,0.0313739187606583,0.0337054375225063,0.0361078183786012,0.0386720363486162,0.0410800186210107,0.0435336919680338,0.046216480069792,0.0488906464638055,0.0514876886334956,0.0679174287954011,0.0847619247212674,0.1001974955878645,0.1151297422012452,0.1295212541198343,0.1480500773190416,0.1628514952496333,0.1777003112873651,0.1909052965036012,0.2030158423077749,0.2175189731299457,0.2314832888715379,0.2457299194488952,0.2571851526947749,0.2679688793246151,0.2798107045257615,0.2906493826331284,0.3011320669533516,0.3104508196721312,0.319586444572085,0.3282114962804786,0.3353436037029649,0.3428724035608309,0.349440011536243,0.3560768369284706,0.3618971160377941,0.3672690763052209,0.3713731842007933,0.375677467150154,0.3794236066963339,0.3791071404435914,0.3778815209734672,0.3760829929472955,0.3749673865777649,0.3735731529222424,0.3717231629736623,0.3686808564671524,0.3683941918277304,0.3691734208816388,0.3698128050633816,0.3701649147219767,0.3710281670598029,0.3725247004414547,0.3732693041312299,0.3743665234808629,0.3748594146418015,0.3760764455125454,0.3796799898811029,0.3823030131560334,0.3872180451127819,0.3897947966288017,0.3923134648370497,0.3930540591925978,0.3968618446230386,0.398820844427539,0.4042938125678446,0.4092322039166925,0.4125514403292181,0.4189679218967922,0.4243485025281991,0.0,2.031481830117376,71.61724734591711,218.51686024591515,302.16386466947324,CHI_public_baseline,12 +100000,95672,50790,479.3460991721716,7165,73.46977172004348,5664,58.50196504724475,2220,22.786186135964545,77.28391542799022,79.68237102135217,63.28504443165552,65.06000491279131,77.00878230170447,79.40795966196623,63.18298778071331,64.96086221998884,0.2751331262857519,274.41135938593675,0.1020566509422096,99.14269280247368,177.04434,123.87945254442712,185052.53365666023,129482.69589495588,349.59516,220.93109832596775,364662.8167070825,230187.4928114813,415.08582,199.775932490803,429087.3714357388,205095.108826017,4028.71428,1827.268361717517,4162762.511497617,1862418.4866640065,1306.1177,574.4320880640927,1347765.678568442,583000.1430193086,2173.65834,907.239518262013,2231733.715193578,914396.3445588906,0.43356,100000,0,804747,8411.478802575466,0,0.0,0,0.0,28834,300.58951417342587,0,0.0,37750,389.9782590517602,1537398,0,55267,0,0,15730,0,0,71,0.7212141483401623,0,0.0,0,0.0,0,0.0,0.07165,0.1652597103053787,0.3098394975575715,0.0222,0.3318254390633315,0.6681745609366685,24.542287532486803,4.264804512745056,0.3139124293785311,0.2406426553672316,0.2196327683615819,0.2258121468926553,10.841433910148956,5.571265377929054,23.72780107856268,14335.07488860199,64.46466435161773,16.533137072452636,20.103051871946487,14.273625814117686,13.554849593100924,0.5580861581920904,0.7879677182685253,0.6749156355455568,0.5777951524628616,0.1189710610932476,0.7403462050599201,0.912109375,0.8710407239819005,0.7296416938110749,0.1493775933609958,0.492311388755406,0.7132784958871915,0.6100299401197605,0.529835390946502,0.1116650049850448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002756328408423,0.0054264037650113,0.0078987177274434,0.0103250983221715,0.0126776756916252,0.0153206747616331,0.0180427354786067,0.0207439637210442,0.0229199693173101,0.0255997869245426,0.0280074686583088,0.0304447001767292,0.0326401251273397,0.0352873278918295,0.037666707956563,0.0402184142217442,0.0427529323993865,0.0455064460545163,0.0477329699705634,0.0504314657328664,0.0679187732419671,0.0839135214364236,0.0992327956255706,0.114103211684977,0.128686327077748,0.1459497798102981,0.1613906912041117,0.1754055234261004,0.1888910268744788,0.2017410158430295,0.2170421472458769,0.2313692352692645,0.2453475330218984,0.2576197308041923,0.2694796247919491,0.2817096863724674,0.2921628481656659,0.3030063915410715,0.3123841789924851,0.3206105118200597,0.3286053928674978,0.3357692488152771,0.3431406292652242,0.3494017874303287,0.3552472932321669,0.361182820934053,0.3663853109753803,0.3713299011112244,0.3768678011829408,0.3809605602166875,0.3799336336903445,0.3786141506573688,0.3766589098088992,0.3750632893080851,0.3743109151047409,0.3717954625746893,0.3693377578076623,0.3696778331442104,0.3709384425555251,0.3721392856502805,0.3730390402832445,0.3735174719414152,0.3747384881976289,0.3752650336085171,0.3763791008505467,0.3774190155658393,0.3792145292045031,0.3828102733001868,0.3863964757709251,0.3891143470995464,0.3926349496797804,0.3974113135186961,0.3987807177424423,0.403257427235711,0.4046997389033943,0.4108893350655486,0.4149587029672683,0.4178891605541972,0.425,0.4254742547425474,0.0,2.597425039640124,66.05688166727938,214.6680450480096,311.9615985167078,CHI_public_baseline,13 +100000,95646,50799,478.93273111264455,7377,75.57033226690086,5859,60.57754636890199,2249,23.12694728477929,77.35161970545354,79.75714257092856,63.31721993396855,65.09413525450229,77.0691087288995,79.47453105967939,63.21251630914137,64.99168655907803,0.2825109765540503,282.61151124917205,0.1047036248271808,102.4486954242576,177.03972,123.90905243228478,185098.46726470528,129549.23037012167,351.48143,221.9643528418433,366709.9199130126,231298.2271556289,427.14545,205.78891773786648,442070.52046086616,211694.08641843763,4170.34831,1911.191112553819,4317930.838717772,1956090.1378763383,1386.93919,615.0814398962451,1433315.4549066348,626438.1064614888,2193.72686,927.47599292292,2258150.617903519,939656.1922053836,0.43276,100000,0,804726,8413.56669385024,0,0.0,0,0.0,28862,301.02670263262445,0,0.0,38959,402.7873617297116,1537971,0,55235,0,0,15755,0,0,77,0.7841415218618656,0,0.0,1,0.0104552202914915,0,0.0,0.07377,0.1704639985211202,0.3048664768876237,0.02249,0.3268292682926829,0.6731707317073171,24.68578259168374,4.294586290265727,0.3198498037207715,0.2377538829151732,0.2095920805598225,0.2328042328042328,11.308322603855457,5.953888034375309,24.04507851645776,14282.876986326346,66.76038774318877,16.868139756028402,21.20970967607796,15.13809884200363,13.544439469078783,0.5649428230073391,0.7903804737975593,0.6953041622198506,0.5601173020527859,0.1156351791530944,0.7339108910891089,0.9115523465703972,0.8625,0.7387096774193549,0.1397058823529411,0.5005892057506481,0.7103694874851013,0.6377331420373027,0.5075901328273245,0.1087866108786611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025936920598575,0.0051107843634335,0.0077739663466417,0.010525887994798,0.0133355033618488,0.0160419637400692,0.0188956304491918,0.0213109229968038,0.0239877300613496,0.026661886715149,0.0293924533721813,0.0320200587787985,0.0346286043591907,0.0368148125238404,0.0392397872230542,0.0418903959361453,0.0442555837694978,0.046703553373265,0.0489908447773616,0.051424281603203,0.0688559875453206,0.0849230447073604,0.1001395929762691,0.114057239057239,0.1283071435355699,0.1460822810935532,0.1601134034849273,0.1745349890742418,0.1882884135968244,0.2008183956438153,0.215593856508046,0.2308209084604715,0.2437744313418046,0.2557867075440709,0.266986120290813,0.2788546841731724,0.2901084162289035,0.3002027255321545,0.3100021578403425,0.3179797424263257,0.3262379331898049,0.3334035063097201,0.341293697190599,0.3469783939891431,0.3531333495263541,0.3592750927078071,0.3649936229274514,0.3711350691619202,0.3754300644126548,0.3785999551859125,0.3768322722194554,0.3754692850365114,0.373949047277029,0.3727481544617962,0.3715296355745794,0.3693488115657927,0.3670771860951054,0.3680865738307934,0.3692139327302884,0.3695562749271189,0.3708359168028859,0.3720055434567412,0.3732531994031983,0.3732105652261577,0.3736673645705484,0.3749217935349322,0.3756740563211503,0.3785878572103721,0.3823643206359255,0.386562649259672,0.3887797523870437,0.3924090836906463,0.3953093561368209,0.399862721171446,0.4043093714715844,0.4106222275506534,0.4146985705407085,0.4192825112107623,0.4220334338174842,0.4191707873716241,0.0,2.5604978051746192,71.16883018558077,220.94014531710027,313.3092390972007,CHI_public_baseline,14 +100000,95792,50177,472.0227158844162,7290,74.87055286453983,5671,58.64790379154835,2190,22.475780858526807,77.3507064425629,79.67912527077262,63.34838135415546,65.06999668547354,77.07638781324201,79.404964525918,63.24653840704736,64.97090173214654,0.2743186293208879,274.16074485461195,0.1018429471080963,99.09495332699692,176.02442,123.19384538020158,183756.91080674797,128605.56766765658,345.10242,218.016843347422,359691.42517120426,227023.1682681455,409.75767,197.05378916292173,424514.7089527309,203224.1165190917,3990.98218,1830.7039152037569,4127284.4183230335,1872108.3443333027,1323.74081,588.4952377862395,1367511.7441957574,599967.9282051098,2146.12284,906.119615538092,2203820.298145983,914372.4725800948,0.43126,100000,0,800111,8352.58685485218,0,0.0,0,0.0,28467,296.5905294805412,0,0.0,37544,388.6650242191415,1549793,0,55679,0,0,15625,0,0,59,0.6159178219475531,0,0.0,2,0.0208785702355102,0,0.0,0.0729,0.1690395585029912,0.3004115226337449,0.0219,0.3372502937720329,0.6627497062279671,24.320833985129426,4.30414875462443,0.3230470816434491,0.2442250044083936,0.2142479280550167,0.2184799858931405,11.094236631736068,5.6847692960145135,23.52809752756771,14220.597007438231,64.5820477365433,16.5135110895288,20.769894526845277,13.75657795511084,13.542064165058404,0.5729148298360077,0.7963898916967509,0.6965065502183406,0.5972558514931396,0.1069958847736625,0.7337662337662337,0.9377593360995852,0.8505263157894737,0.7453416149068323,0.1302681992337164,0.5129508593560881,0.7209302325581395,0.6425939572586588,0.5452562704471101,0.10062893081761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024411490620315,0.0052615571776155,0.0080266268886927,0.0110108889972371,0.0135330242394664,0.0159324829222108,0.0186396804043862,0.0213182843322345,0.0239839766189439,0.0263610315186246,0.0287107814004959,0.0313057932647909,0.033893079563439,0.0362863378077904,0.0388743954876829,0.0413636363636363,0.0437684308551916,0.046265964504893,0.0485185839053721,0.0507625839362865,0.0672405697292221,0.0837419881010884,0.098832211669497,0.113750052545294,0.1277770751654652,0.1455721624421284,0.1608275189277458,0.1749888257454824,0.1879150208177644,0.2003151024082826,0.2149192680301399,0.2293258682000453,0.2424090938729379,0.2548158346171917,0.2657935539207601,0.2773634593254846,0.287687265917603,0.2979694119497915,0.3078257320681563,0.3166039074750203,0.3250219531358321,0.332472751486548,0.3394221896221281,0.3458308877256447,0.3514100836459433,0.357322392252532,0.3623023418734988,0.3675334427940483,0.3729668079370634,0.3779507818169823,0.376607116412445,0.3751376803612732,0.3737291123175633,0.3726708074534161,0.3720307197713877,0.3692059838895282,0.3664386279582863,0.3671182306602063,0.3680511510705041,0.36843142524411,0.3700710262062209,0.3706058859765912,0.3721876647337901,0.3721606929375409,0.3740927126681506,0.3740944881889764,0.3751616704509528,0.3802593110461421,0.3840942144656096,0.3857462448066475,0.3879793985100708,0.3926512580141156,0.3948695041796949,0.3965156794425087,0.3974895397489539,0.4000240038406145,0.4038940809968847,0.4076313594662218,0.4035633484162896,0.4023529411764706,0.0,2.1865338066244195,67.96283160468668,210.5208856914845,312.9465737477235,CHI_public_baseline,15 +100000,95721,50511,477.073996301752,7228,74.04853689368059,5723,59.046604193437176,2273,23.223744006017487,77.31652017658898,79.67635120458661,63.31665033110207,65.06240251623491,77.04248319757023,79.40678764349295,63.21537087359151,64.96626111627344,0.2740369790187458,269.563561093662,0.1012794575105573,96.14139996146776,175.92564,123.20889575189965,183790.01473030995,128716.68260036947,347.6001,219.43755038756535,362384.4088549012,228493.5610829794,422.0164,203.3303949773874,436119.6707096666,208771.73306825903,4063.55528,1849.263342375096,4194187.879357717,1881543.0426411564,1328.84496,592.9844596239345,1368273.6912485242,599797.9857344952,2220.83362,920.8880194873047,2271530.7821690124,921724.3902473288,0.43119,100000,0,799662,8354.091578650452,0,0.0,0,0.0,28655,298.5551759801924,0,0.0,38472,397.2169116494813,1544414,0,55538,0,0,15612,0,0,62,0.6372687289100615,0,0.0,1,0.0104470283427878,0,0.0,0.07228,0.1676291194137155,0.3144714997232983,0.02273,0.3341658998291048,0.6658341001708953,24.617683387483265,4.268526850586785,0.3162676917700506,0.2489952821946531,0.2161453782980954,0.2185916477372007,11.33140704052214,5.930450237657296,24.15875284820456,14298.420365376216,65.38490547095762,17.377178329753605,20.549725858204887,13.994592805777865,13.463408477221254,0.5624672374628691,0.7894736842105263,0.6955801104972376,0.5579536370903277,0.110751818916734,0.7371428571428571,0.8904347826086957,0.8516949152542372,0.6955017301038062,0.1924686192468619,0.4961427193828351,0.7211764705882353,0.64050822122571,0.5166320166320166,0.0911823647294589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025020005875143,0.0052615038371468,0.0079878203501649,0.010719692736011,0.0133870442708333,0.0163465259813007,0.0189489357796293,0.0214352092971007,0.0242533307430394,0.0266089235620533,0.0289253232438196,0.0312153448063416,0.0336466281389465,0.0359279587276415,0.0384238485739336,0.0404926485023196,0.0426492205130328,0.0449368270367834,0.0472146280106861,0.0495311523234007,0.0671894251049345,0.0833952510020197,0.0986376364723279,0.1138440506861559,0.127794415387211,0.1460530351910811,0.1616233421750663,0.1759996593280245,0.1899795916186731,0.2030750413081264,0.2176746891900627,0.2317824171780469,0.2450977193383144,0.2575093217281007,0.2688619524171263,0.2806500243869995,0.2922296920018761,0.302068329132157,0.3120232473665092,0.3202520767688341,0.328321933266206,0.3354589598081086,0.3422856939855767,0.347870949164337,0.3536020426773664,0.3597126741789368,0.3657445688942344,0.3702024126466504,0.3748007826165827,0.3789021731950591,0.3782250020219448,0.3765105115047177,0.375084803256445,0.3739559164733179,0.3717906664678694,0.3688416264560347,0.3671826625386997,0.3673129554522373,0.3684933388270842,0.3685884191803956,0.3691945360339143,0.3703990470518165,0.3719896335938981,0.371481923102882,0.3724935297390127,0.3729443804336441,0.3744375985098152,0.3787735253252494,0.3819725853624158,0.3867713898413205,0.3903175620023794,0.3928055243295327,0.3959786883166307,0.3976795664453095,0.4017021276595744,0.4026877849772018,0.407057731001393,0.4107325035706998,0.4081803005008347,0.4107560405300078,0.0,2.742469395792343,69.08392693595158,214.55378962783143,311.07709330140665,CHI_public_baseline,16 +100000,95664,50833,479.0725873891955,7230,74.08220438200368,5723,59.092239504933936,2226,22.86126442548921,77.40264542862671,79.78148593838,63.35728834693722,65.11122930771764,77.12312089553765,79.50408030816328,63.25193002811277,65.00970078595805,0.2795245330890594,277.4056302167196,0.1053583188244431,101.52852175959026,176.84172,123.82314302643508,184857.1249372805,129435.46477926396,349.91469,221.79911919652537,365071.83475497575,231149.3865994788,428.86378,207.95099533383797,443034.3598427831,213442.0594017371,4068.84205,1881.4987629981515,4204118.508529855,1917653.874699216,1347.58613,606.661117844426,1392508.6552935275,618021.0043894588,2185.10154,927.4406568091224,2246125.0836260244,935499.1601690158,0.43347,100000,0,803826,8402.596588058204,0,0.0,0,0.0,28785,300.1547081451748,0,0.0,39076,403.3596755310252,1540798,0,55307,0,0,15869,0,0,76,0.7630874728215421,0,0.0,0,0.0,0,0.0,0.0723,0.1667935497266247,0.3078838174273859,0.02226,0.3401639344262295,0.6598360655737705,24.480503871111758,4.2986753015973855,0.3113751528918399,0.2491700157260178,0.2164948453608247,0.2229599860213175,11.22638248042818,5.786324413898088,23.748786971068466,14373.239839728294,65.33576560042087,17.34829663615126,20.29537871326568,14.162289584710832,13.52980066629311,0.5733007164074786,0.8071528751753155,0.7031425364758698,0.572884012539185,0.1178369652945924,0.7528910529519173,0.9203539823008848,0.8987854251012146,0.75,0.1343283582089552,0.5009803921568627,0.7328687572590011,0.6281055900621118,0.5145833333333333,0.1132852729145211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028556672843819,0.0057770075101097,0.0081152363562588,0.0107045286046535,0.0135447066838856,0.0161089953770645,0.0188098320878403,0.021830763107133,0.0243217004751928,0.0268533300585369,0.029141638819984,0.0314758541392904,0.0341349564573672,0.0367768978053327,0.0394651313956727,0.0419203141956488,0.0444817196284906,0.0467058908985254,0.0488299531981279,0.0513111815225548,0.0679161312564641,0.0845863874345549,0.1003274284275039,0.1152769887857939,0.1299078039621089,0.1475810547701684,0.1629447227647108,0.1777276163502592,0.1911393758016246,0.2032094739552046,0.218129914898201,0.2326578332034294,0.2461247266912508,0.2577106483506868,0.2693230335842246,0.2817113555060859,0.2925564538611653,0.3031501815035008,0.3121281153309986,0.3211151914518768,0.3298864253445945,0.3370938733562236,0.3445806199992909,0.3501885888762497,0.3554870500279146,0.3614002241738209,0.3666078512344984,0.371914482548237,0.3754655975168132,0.3799633636878797,0.3779534971288713,0.3764558839687946,0.3758751581611134,0.374372728845821,0.373140305857573,0.3709704563883662,0.3685485403077702,0.3697680530915303,0.3702641818554167,0.3703624391027357,0.3704946301051487,0.371111461577889,0.3718015665796345,0.3735488480085729,0.3756464843280171,0.3761518181106267,0.3782664572326146,0.3800490751226878,0.3843363735605873,0.3877883850437549,0.3935280405868641,0.3965019255455712,0.3992785266755269,0.3989284347493302,0.3986692015209125,0.4070470993000356,0.4089225069465884,0.4115384615384615,0.4196379594075699,0.4189137865552602,0.0,2.835158805341774,71.67228313977171,210.9257979309716,303.4923682759315,CHI_public_baseline,17 +100000,95716,51019,481.5809269087718,7217,73.92703414267207,5671,58.54820510677421,2200,22.60855029462159,77.33907921770925,79.70785317255469,63.32552877917672,65.07638550295285,77.0590907086909,79.42862941725758,63.22100262310691,64.97510538558761,0.2799885090183522,279.2237552971102,0.1045261560698023,101.2801173652349,176.8162,123.75387377521386,184730.03468594592,129292.77631243874,349.83397,221.33115615541595,364794.36039951525,230540.0937726357,422.6707,203.11707327676223,437573.4255505872,209079.846406403,4018.8849,1840.5109442991868,4152182.028083079,1876309.7019298612,1327.57558,590.8160370103357,1370082.1492749385,600388.5967312746,2161.60894,912.097934517371,2222073.9061389947,920487.3030903584,0.43458,100000,0,803710,8396.819758452088,0,0.0,0,0.0,28803,300.1796982740608,0,0.0,38595,399.1495674704334,1539607,0,55320,0,0,15498,0,0,57,0.5955117221781103,0,0.0,0,0.0,0,0.0,0.07217,0.1660683878687468,0.3048358043508383,0.022,0.3360537054100302,0.6639462945899697,24.45394988227457,4.272817514174214,0.3186386880620702,0.2444013401516487,0.2184799858931405,0.2184799858931405,10.96763907674431,5.674762271156099,23.566333649272213,14348.143761005642,64.75124531048988,16.798333105463303,20.48801195583917,13.814267896005733,13.650632353181674,0.5605713278081467,0.7828282828282829,0.6939679026009962,0.5633575464083939,0.1146085552865213,0.726159793814433,0.9132947976878611,0.8518518518518519,0.7028985507246377,0.1660516605166051,0.4981791697013838,0.7047289504036909,0.6358819076457229,0.5233644859813084,0.1002066115702479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003403014098,0.0052115018047613,0.0080691818154136,0.0110449520403186,0.0135906330427352,0.0161830754972552,0.0188548411767705,0.0214601476278471,0.0237837174584347,0.0264855896269894,0.0289728731859904,0.0315834882550507,0.0337344441016147,0.0360601689676488,0.0385024309175552,0.0410643006349403,0.043551227597638,0.045974387181137,0.0481578153759762,0.0503729788298049,0.0677233429394812,0.0846560292963641,0.1003690965523026,0.1151156309484997,0.12988040245523,0.1474104007108704,0.1634093031151854,0.177085662567215,0.189767760000855,0.202034618562675,0.2166813959002435,0.2308741985791024,0.2449481484705703,0.2570183983276237,0.2688787815380549,0.2802510339627662,0.2907517033396626,0.3014016324233042,0.3118571331259508,0.3209069858082857,0.3287599861062869,0.3364888426028856,0.3429565299699472,0.3497178728451116,0.3557980602323351,0.361530318323937,0.3666875,0.3714463634399583,0.3760525669050976,0.3808795007454514,0.3800756382821227,0.3789931703018286,0.3774961543346646,0.3758947459935665,0.3756162220931445,0.3736415546141094,0.3706312566433455,0.3699975286267402,0.37070993218302,0.3705930925540317,0.3715210477785514,0.3718259006506904,0.3731230442909045,0.374595759971254,0.3744336257591825,0.3751305346700083,0.3749570692615913,0.3790424456796362,0.379901269393512,0.3838529176658673,0.3867738231917336,0.389547673981864,0.3940513343099165,0.3989844591475611,0.3998868244836367,0.4028888623612272,0.401966906025601,0.4090441932168551,0.4094972067039106,0.4093184443588756,0.0,2.6953981889997327,68.20827852666775,213.34254745975247,307.8568659578505,CHI_public_baseline,18 +100000,95669,50333,474.8351085513594,7109,72.85536589699903,5598,57.75120467445045,2195,22.379245105520077,77.30793472821749,79.68424607173193,63.31631099018998,65.07022094337673,77.0383402788494,79.41882692234391,63.21492138824875,64.97398788121585,0.2695944493680855,265.41914938802336,0.1013896019412357,96.23306216087713,177.42076,124.115810673453,185451.797342922,129733.78963038095,347.01603,219.9061291543582,361975.2061796402,229112.30126795903,414.97713,199.8688808229932,429147.8012731397,205421.91680798776,3992.48661,1829.8146376828693,4118812.562062946,1858403.1442665248,1375.26487,608.4507830841889,1416497.0784684694,615165.1534195376,2161.27894,911.1944183234696,2205898.169731052,908564.249712928,0.42907,100000,0,806458,8429.627151950997,0,0.0,0,0.0,28616,298.32025002874497,0,0.0,37769,390.1681840512601,1536686,0,55358,0,0,15754,0,0,78,0.8153111248157711,0,0.0,1,0.0104527067284073,0,0.0,0.07109,0.1656839210385252,0.3087635391756927,0.02195,0.3356970832218357,0.6643029167781643,24.49200373346552,4.339288233504093,0.3219006788138621,0.2365130403715612,0.2265094676670239,0.2150768131475527,11.218594711674216,5.791364496534554,23.59538524845082,14175.051600235562,64.02419332120492,16.070722108581332,20.57561041611532,13.40351135364996,13.97434944285832,0.5682386566630939,0.7983383685800605,0.7086570477247502,0.5689368770764119,0.1277602523659306,0.7221860767729343,0.9195171026156942,0.8627049180327869,0.6950354609929078,0.1333333333333333,0.5099729130755971,0.7255139056831923,0.6514459665144596,0.5303687635574837,0.12625250501002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026729846303383,0.005674678772648,0.0083080574970328,0.010806857885756,0.0135464974371491,0.015987128833856,0.0187823107748467,0.0214599285349668,0.0237993007421946,0.0267271294182678,0.0290318612375445,0.0313247569276892,0.0338263123251604,0.0363670080151649,0.0384198631621312,0.0405578644831792,0.0431881294814937,0.0454540735280376,0.0476145891850279,0.050010425354462,0.066522506711795,0.0827375406935968,0.0981889912492393,0.1131283594021184,0.1273275553025031,0.1449557391092826,0.1602317216793455,0.1746026676886064,0.1879781187230223,0.2003390121443591,0.2144680576051013,0.2291937159179433,0.2419965202261852,0.2538656693567788,0.2658297483743907,0.277841790383337,0.2887118016027143,0.2979101722954343,0.3069823936067565,0.3160572482783119,0.3239245755055711,0.3318858560794044,0.3389081691875821,0.3452133725466658,0.3511039703985004,0.3567291900769297,0.3619701170478353,0.3672987596345261,0.3724206039814959,0.3767423390032431,0.375421966566745,0.3738140941543645,0.372257717969015,0.3701925169377185,0.3689314594336526,0.3665708532517638,0.3646712775260354,0.3644913785991255,0.3647014361300075,0.3655308464849354,0.36640114494473,0.3671542711770084,0.3673645449763282,0.3691568860662911,0.3703086509201565,0.3720289626947898,0.3732117771852871,0.3775506975861305,0.3811260623229461,0.3831298380017556,0.3868452435556371,0.3913740580407247,0.3941568751984757,0.3984968172405859,0.3967442740866931,0.3985455412494039,0.4052776082977425,0.4004839685420447,0.4072766766223187,0.4100719424460431,0.0,2.901138908258993,67.13672377448425,211.4887413924253,303.8710810514763,CHI_public_baseline,19 +100000,95694,50465,475.2753568666792,7220,74.01717976048654,5700,58.854264635191335,2257,23.094446882772168,77.38171245272493,79.75658216349896,63.34258245905804,65.09548264255838,77.0907271150423,79.46917713975505,63.23312298357268,64.9911181887979,0.2909853376826277,287.40502374391497,0.1094594754853659,104.36445376048198,178.5377,124.89209093497674,186570.54778774007,130511.13257588955,347.6614,219.4111368853453,362571.71818504814,228552.0933189754,414.11304,198.89259277510024,429278.5023094447,205036.23508702684,4073.02167,1872.5400528997704,4205094.415532844,1905795.200757704,1374.91214,608.7304464588494,1419950.5820636612,619362.627184464,2211.66252,943.3229140824184,2264858.298325914,944959.0209303309,0.43192,100000,0,811535,8480.479444897277,0,0.0,0,0.0,28677,298.9215624804063,0,0.0,37772,391.2262001797396,1535691,0,55156,0,0,16013,0,0,63,0.6478985098334273,0,0.0,1,0.0104499759650552,0,0.0,0.0722,0.1671605852935729,0.3126038781163435,0.02257,0.3336401893740137,0.6663598106259864,24.82620647666269,4.267712385684059,0.313859649122807,0.2385964912280701,0.2224561403508771,0.2250877192982456,11.07221971843788,5.776587759359066,24.26089788142052,14297.544018398385,64.85915008330443,16.416583746736823,20.066345930345136,14.296260039629589,14.079960366592871,0.5607017543859649,0.7867647058823529,0.6975964225824483,0.5619641465315667,0.1238170347003154,0.7124435847840103,0.9098196392785572,0.8741573033707866,0.714765100671141,0.1585760517799352,0.5039768618944324,0.7154471544715447,0.6391369047619048,0.515736040609137,0.1126173096976016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026636687732944,0.0053421727539052,0.0078743353492714,0.0102899051256526,0.0128567650588929,0.0156517311608961,0.0182921233749681,0.0209277634856466,0.0236038559438986,0.0262462892824239,0.0290948607280891,0.0316221765913757,0.0339366515837104,0.0365795871276113,0.0388140106090941,0.041203536162953,0.043801592973516,0.0461583163837117,0.0486769845232151,0.0510682647212089,0.0678141351687259,0.0846786858471009,0.0993137748677914,0.1137155060860782,0.1275884257940652,0.1458260621252022,0.1602024682449568,0.1740408267578187,0.1867527166654201,0.2002338905220693,0.2153126549263897,0.2300037897244329,0.2430894751155833,0.2550464734827775,0.2667920916262336,0.2790777510769537,0.2906180276662204,0.3013342633426334,0.3113347782177993,0.3198102723325275,0.3274402880529795,0.3344019093972295,0.3413293530923866,0.3479684744664771,0.3542386070716405,0.3604387198657685,0.3658732046931544,0.3713211874124092,0.3759722078191434,0.3800985039546829,0.3786943987930059,0.3771624392727873,0.3754634263240248,0.3737970696182412,0.3736655332670121,0.3707443959911254,0.3692967735807238,0.3701497924562353,0.3705201030312334,0.3705078334106563,0.3700106863645737,0.3706524749732917,0.3717167911931521,0.3738453624387735,0.3751172918220533,0.377206226896444,0.3778227069510493,0.3805756976488684,0.3843860695121524,0.3877169983712708,0.3908999726452083,0.3966620454303082,0.4023529411764706,0.4084148878785543,0.4115804461319411,0.4168966758670346,0.4187848729076255,0.4233216998562923,0.4333333333333333,0.4307992202729044,0.0,2.7388818833728434,67.97942090138639,213.0406804619344,310.6387453672169,CHI_public_baseline,20 +100000,95847,50724,477.6570993353992,7164,73.19999582668211,5670,58.45775037299029,2265,23.10974782726637,77.44506122741345,79.72240171675799,63.40474875222951,65.08387805344906,77.16021667536246,79.44238142903072,63.296653307644135,64.98130245805447,0.2848445520509841,280.02028772726817,0.1080954445853734,102.57559539458327,178.8193,125.0493732330254,186567.446033783,130467.6966759788,350.47325,221.87766309079964,364970.5572422716,230802.99132033315,417.22411,201.260997540478,431460.30653019913,206967.3782197503,4089.02457,1880.92308739694,4218133.640072199,1914356.283865892,1337.76411,596.1882890548161,1377708.9528102078,604002.2397537255,2216.8241,941.7775691249684,2265188.8530679103,939941.1728411508,0.43244,100000,0,812815,8480.338456081046,0,0.0,0,0.0,28823,300.0093899652571,0,0.0,38040,393.0222124844805,1534797,0,55233,0,0,15933,0,0,62,0.6468642732688556,0,0.0,0,0.0,0,0.0,0.07164,0.1656646008694847,0.3161641541038526,0.02265,0.3346656008526512,0.6653343991473488,24.639312765693,4.338899879212504,0.319400352733686,0.2296296296296296,0.2209876543209876,0.2299823633156966,11.027945826664237,5.626472034583084,24.176880071721637,14247.491734244775,64.57624526378314,15.80946251866376,20.49458021979187,14.55553186145456,13.71667066387294,0.5597883597883598,0.7926267281105991,0.688017669795693,0.5766871165644172,0.1149241819632881,0.7287602265575834,0.9075975359342916,0.8807531380753139,0.7402985074626866,0.1626297577854671,0.4939965694682676,0.7239263803680982,0.6189047261815454,0.5201238390092879,0.1006224066390041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027834571550031,0.0051864382742937,0.0079798829887551,0.0107283504526815,0.0135143373910216,0.01599332594032,0.0188116190010592,0.0214343255121498,0.0238335937260668,0.0262576687116564,0.0287937743190661,0.031280447156556,0.0335541519026344,0.0361249974284597,0.038255081960457,0.0407617671345995,0.043321336973608,0.0457602354330953,0.0480471751001847,0.0504968524010197,0.0674966892941679,0.084042041916543,0.099958115183246,0.1145405887600356,0.12954311088663,0.1476539821607642,0.162280655307162,0.176289306171029,0.1896645512239347,0.2020510185512272,0.2168879333512496,0.2311805308013869,0.2439646840350553,0.2560968950340203,0.2675435704709786,0.2793642360649931,0.2907481127131212,0.3006555054587976,0.3097158414156882,0.3181729701258401,0.3267752985834645,0.334144828474116,0.3409720741846088,0.3475431447746884,0.3530305239622825,0.3590378972803708,0.3635896471767876,0.3681467796394215,0.3724335611730068,0.3773662170909235,0.3757800390861918,0.3737611496531219,0.3722135383662146,0.3700304486485706,0.3688762944719741,0.3664720625993398,0.3645341212532983,0.3645118495831764,0.3658557390473591,0.3665805647100739,0.3687197931887153,0.3693579651093793,0.370321471981223,0.3703736813874486,0.371119394012264,0.3718756509060612,0.3721181453790829,0.3762584287282421,0.378585152838428,0.3822386165318102,0.3845028571428571,0.3873897942826609,0.3894903450459006,0.3960166743862899,0.4006489788127505,0.4016423137302258,0.4073147858705845,0.4202383441354798,0.4270042194092827,0.4382911392405063,0.0,2.7372103248231907,69.62612968023016,209.5648597647377,304.1512640060172,CHI_public_baseline,21 +100000,95687,50626,477.9437123120173,7165,73.61501562385695,5712,59.15119086187256,2235,22.98117821647664,77.29747507811412,79.70028047338178,63.28577397120039,65.06548195606082,77.01880840272857,79.42339604528635,63.18149066738625,64.96478323764326,0.2786666753855513,276.88442809542835,0.1042833038141424,100.6987184175614,177.52922,124.19665615535462,185531.1797840877,129794.70163695654,347.36329,220.0884179977112,362465.8417548884,229454.17663602284,417.94889,201.60017746437117,433631.5904981868,208141.5164420693,4068.44736,1871.064334125171,4213053.6018476905,1916625.6378872483,1350.77764,607.2654407668745,1394109.7223238267,617093.4111807114,2191.92962,926.4245747644666,2254720.411341144,935730.8768088825,0.43108,100000,0,806951,8433.23544473126,0,0.0,0,0.0,28592,298.2223290520133,0,0.0,38212,396.18756988932665,1532954,0,55203,0,0,15525,0,0,61,0.6374951665325489,0,0.0,0,0.0,0,0.0,0.07165,0.1662104481766725,0.3119330076762037,0.02235,0.3426629348260696,0.6573370651739304,24.1409036390645,4.310599492347532,0.314250700280112,0.2515756302521008,0.2225140056022408,0.2116596638655462,11.135375382473702,5.731267303876884,23.899146457642605,14233.361125055582,65.3808508361668,17.36190345977762,20.47679614372361,13.493727990810465,14.048423241855106,0.5651260504201681,0.7988865692414753,0.6885793871866295,0.5707196029776674,0.1211644374508261,0.7297633872976339,0.9304029304029304,0.8609406952965235,0.7117437722419929,0.1482758620689655,0.5007306380905991,0.7182940516273849,0.6240428790199081,0.5280172413793104,0.1131498470948012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025639466536949,0.0051325746049134,0.0077770445200263,0.0104562544456864,0.0131022135416666,0.0158080221638248,0.0182673085553425,0.020669512469108,0.023083374243168,0.0256835637480798,0.0281971854100849,0.0307989439188009,0.0333638542813345,0.0358188038415564,0.0384289755714787,0.0408680451400022,0.0434075102869995,0.045624454873946,0.0478573435012848,0.050024491157129,0.0670336787564766,0.0837459566405309,0.1001689419616155,0.1150289807811661,0.1294436591489272,0.147398935663729,0.1623004415760869,0.1760357865587389,0.1898166962547857,0.2024246719498314,0.2169560996656239,0.2312796105768709,0.2444466233072959,0.256427115523703,0.2671371078890788,0.2786372211741205,0.2891577040896183,0.2998670362607892,0.3096279963174704,0.318447670818138,0.3260378145902646,0.33342709798406,0.3398648648648649,0.3465160980297934,0.3512605042016806,0.3566945865144664,0.362317931475743,0.3672091390643947,0.372130806623515,0.3764699650386693,0.3757518415895114,0.3751226726747481,0.3739508287214618,0.3727212029725963,0.3706076952880517,0.3685075153915834,0.3656157822956643,0.3662372235185854,0.3663951363628601,0.3664458767027905,0.3678457795246116,0.3681997631267272,0.3695424453197016,0.3703952074391988,0.3714065770165267,0.3740613266583229,0.3747007182761372,0.379028454645496,0.3817504655493482,0.3829634931997137,0.3869229715538103,0.3916999201915403,0.3924625970582665,0.3955918242830994,0.3987903987903988,0.4028588445503275,0.4026254826254826,0.4019226835753733,0.4024458032240133,0.4,0.0,2.116213864545682,71.26259363810601,217.71066448625973,299.84281266054194,CHI_public_baseline,22 +100000,95812,50568,475.222310357784,7252,74.27044629065253,5779,59.5541268317121,2269,23.191249530330232,77.32864418348662,79.63965345426507,63.32870225298407,65.03866118183728,77.04152692047178,79.3539461975525,63.2213275700615,64.93493360943718,0.2871172630148351,285.7072567125698,0.1073746829225683,103.72757240010344,177.73756,124.42943791356062,185506.5753767795,129868.3232930746,351.24417,222.3910006108356,365796.2155053647,231322.3600914555,418.5955,202.3065611189586,431983.7076775352,207443.80233096264,4127.50248,1896.2646648076025,4252991.389387551,1925172.0349937312,1356.29298,605.2460908521222,1394380.6830042163,610529.6116234994,2226.32436,940.9332449577072,2277122.6359954914,943588.417576068,0.4322,100000,0,807898,8432.117062580888,0,0.0,0,0.0,28984,301.7054231202772,0,0.0,38244,394.2512420156139,1531367,0,55129,0,0,15851,0,0,65,0.6784118899511543,0,0.0,0,0.0,0,0.0,0.07252,0.1677926885701064,0.3128792057363486,0.02269,0.351433079148041,0.648566920851959,24.28212562910035,4.322423227840701,0.3116456134279287,0.246755494030109,0.2213185672261637,0.2202803253157985,11.056075206126923,5.777583558921852,24.33915829347468,14239.22206198506,66.01549237985454,17.20008764643008,20.59115167081537,14.25815293382486,13.966100128784214,0.5585741477764319,0.7875175315568023,0.6990560799555803,0.5648075412411626,0.0992963252541047,0.7297794117647058,0.911190053285968,0.8672032193158954,0.7324414715719063,0.1025641025641025,0.4911984567156981,0.7068366164542295,0.6349693251533742,0.5133470225872689,0.0984095427435387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027649769585253,0.0057373393342253,0.0084512758078425,0.0111429384040305,0.0135753508236729,0.0165139482793728,0.0191213943532769,0.0216865502566667,0.0242401945755922,0.0265336403172166,0.0291197475332233,0.0318545200784048,0.0342428446636863,0.0367617537755175,0.0394538742343308,0.0418689696493874,0.0441041030682465,0.0466059079079701,0.0492038266180549,0.0515737541113285,0.0679433423034399,0.083843041309871,0.0993962643858876,0.1142112508801244,0.1282362118401079,0.1473380412719891,0.1626296476976265,0.1761200383100989,0.1897361956637829,0.2016812128750026,0.2162042820833153,0.2296763582457772,0.2421886045525237,0.2536898956989482,0.2652205493924987,0.2770526315789474,0.2882272133308018,0.2988601549828798,0.3079011952915511,0.3169212057233996,0.3252592747268045,0.3330947491933118,0.3398120537464507,0.3462578899909829,0.3523729474248404,0.3572681456593705,0.3619694269434473,0.3677172387393135,0.3722259757808845,0.3766388557806913,0.3762122153488749,0.3744663802274015,0.373398275447067,0.371448089417305,0.3701856304416003,0.3685101667000169,0.3658264909935714,0.3669688478655019,0.3667477474391037,0.3678241113436734,0.3693432852657504,0.3705584763416327,0.3717814088293359,0.3712280859077254,0.3720430626629333,0.3735170603674541,0.3746457098685906,0.3779994948219247,0.3801449377330613,0.3826031645066391,0.387102675508804,0.3917972300946473,0.394984126984127,0.3991383289736883,0.4010816965556504,0.4051578693661123,0.4091607746695358,0.4145892930118512,0.4165284687672747,0.418359375,0.0,2.804289100269534,71.60016591789888,211.59512906636851,312.7385801244112,CHI_public_baseline,23 +100000,95743,50898,480.0455385772328,7221,74.10463428135739,5641,58.301912411351225,2309,23.64663735207796,77.35098256499538,79.69564410621196,63.33757887846742,65.06928934091525,77.05428370437244,79.40223354510688,63.22744254028216,64.96379003452253,0.2966988606229392,293.4105611050768,0.1101363381852564,105.49930639271564,175.57232,122.89643804833094,183378.7535381177,128360.75540596276,347.86835,220.0489443635805,362728.5336787024,229225.92185703435,414.16388,199.5770985113645,428859.6659808028,205548.08905303525,4065.47677,1860.357320741415,4204698.944048128,1901533.752589135,1317.82545,588.2211153610082,1362032.6081280094,599988.800658196,2267.0334,953.9528081835164,2325022.5499514327,959828.5049062704,0.43556,100000,0,798056,8335.397888096259,0,0.0,0,0.0,28592,297.99567592408846,0,0.0,37662,389.6368402911962,1547296,0,55624,0,0,15700,0,0,85,0.8877933634834924,0,0.0,1,0.0104446278056881,0,0.0,0.07221,0.1657865736063917,0.3197618058440659,0.02309,0.3334651377356004,0.6665348622643996,24.72127586941516,4.374662451437093,0.3143059741180641,0.2354192519056905,0.236660166637121,0.2136146073391242,11.10289033278764,5.723324453183836,24.60645203646567,14380.11570913337,64.31865423447215,16.070368753117663,20.1009429154582,13.552462078640245,14.594880487256043,0.5516752348874313,0.7899096385542169,0.6892272983643543,0.5842323651452282,0.1026217228464419,0.7385409941897999,0.8992094861660079,0.875,0.7533783783783784,0.1505791505791505,0.4809384164222874,0.7226277372262774,0.6186770428015564,0.5291529152915292,0.0910780669144981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027644729780361,0.0056151873587334,0.0078942295008777,0.0105935646380108,0.0131569582414006,0.0159216540603271,0.0183790175431443,0.0212077605298878,0.0239477503628447,0.0263437998935604,0.0289996207189937,0.0314312403124647,0.0340622847331462,0.036227332173125,0.0385107392658922,0.040703683797081,0.0432418999099127,0.0457635033466507,0.048377538183217,0.0506428020753026,0.0677851087818933,0.0839880734424857,0.1006280735233981,0.1156110690554294,0.1306029938857263,0.1484825100161738,0.1638843518656004,0.1776888529405504,0.1911177111600179,0.2032483693786474,0.2184099967682861,0.2327275482481301,0.2456512515910055,0.2577817178881009,0.2690003743916136,0.281443699063037,0.2935517391644412,0.3033308193658048,0.311995366742752,0.3210181000665275,0.3292408904537978,0.3368469133199817,0.3444789125956096,0.3501450595823243,0.3564286668853494,0.3625318826472146,0.3675397649767855,0.3717947086445833,0.3764419213521009,0.3804393803204145,0.3798102231160662,0.3779964394639875,0.3773280954130514,0.3757669824047346,0.3747913188647746,0.3720265535681357,0.3695880221247377,0.3705555280568892,0.371340312339111,0.3723715110338275,0.3739722676901657,0.3745263366729491,0.3752210526315789,0.3753343372816974,0.3764248454404946,0.3782096676895638,0.3781207054512139,0.3811016144349478,0.3837373167981961,0.3857644991212653,0.3901643860776931,0.3918216410311378,0.3932063492063492,0.3938999157023526,0.3991672186997255,0.4036367986601268,0.4022538738456722,0.411159151739757,0.4124087591240876,0.4087363494539781,0.0,2.407656341805662,68.05083029344821,209.6902235890134,308.89969581481284,CHI_public_baseline,24 +100000,95833,50910,478.29035927081486,7261,74.46286769693113,5683,58.62281260108731,2244,22.96703640708316,77.51248185563044,79.7972154700325,63.42745123530996,65.11053030164382,77.23003433437138,79.51919620197144,63.32254872037638,65.01063226578127,0.2824475212590585,278.01926806105826,0.1049025149335776,99.89803586255164,176.63184,123.55541552899876,184311.66717101625,128927.38631682062,349.47609,221.1431738831137,363967.9755407845,230058.36373159627,422.62468,203.613505317386,436950.5598280341,209317.36590291577,4028.5512,1831.4138463390327,4158202.0702680703,1865798.1031195552,1346.81149,593.5347724326424,1387533.21924598,601717.8205664955,2195.92944,914.1666784598966,2249130.737846045,917141.0169139252,0.43428,100000,0,802872,8377.803053228012,0,0.0,0,0.0,28725,299.0201705049409,0,0.0,38546,398.2552982792984,1547534,0,55613,0,0,15826,0,0,75,0.7721765988751266,0,0.0,0,0.0,0,0.0,0.07261,0.1671962788984065,0.3090483404489739,0.02244,0.3337710084033613,0.6662289915966386,24.68485467942637,4.305560212272696,0.3211332042935069,0.2379025162766144,0.2173147985219074,0.2236494809079711,11.212205977887656,5.809139942058494,23.842242638275724,14354.905016306677,64.5814456000415,16.263000571552922,20.74217460590696,14.19009075509997,13.38617966748165,0.5764560971317966,0.7943786982248521,0.703013698630137,0.5940204563335956,0.1327935222672064,0.7422419252691577,0.9229287090558768,0.8529980657640233,0.7080536912751678,0.1673469387755102,0.5126705653021443,0.7142857142857143,0.6437308868501529,0.5590955806783144,0.1242424242424242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027017181713314,0.0053878328151426,0.0080276507971903,0.0110196750920843,0.0136024705906255,0.0165463236041899,0.0191504958156013,0.0218530755425028,0.0244554950833733,0.0272113713058594,0.0298090215554759,0.0323354767252253,0.0347608968167526,0.037081635173521,0.0396503020680838,0.0422554123285407,0.0444235186986485,0.0468528060880654,0.0493133323637572,0.0518901810534206,0.0686684536039465,0.0850429763473241,0.1005805545658416,0.1151515151515151,0.1297778245761819,0.1479028697571744,0.1632592498383729,0.1774119798811156,0.1912232396320249,0.2028659555327078,0.2175357845720369,0.232101192533702,0.2451193294099763,0.2568308397946925,0.2679571971611258,0.2795682275653078,0.2902064784997158,0.300271861238429,0.3099315844320601,0.3191897947053175,0.3271030193947365,0.3351163007504777,0.342020197253551,0.3495842691260095,0.3561142801777907,0.3618663651113624,0.3671167236517008,0.3722375077660424,0.3772586473928755,0.3819933746976549,0.38023252691781,0.376942809717821,0.3757719514933753,0.37354225829237,0.3717348118717941,0.370110407682662,0.3674286799860684,0.3672417472381359,0.3686097735887716,0.3700575061613744,0.3709629018342774,0.372525364396891,0.3729794326687213,0.3738048431775534,0.3751826916165512,0.3773756360992834,0.3779746691656727,0.3807722369860872,0.3832153690596562,0.3846425488503492,0.3891311188025351,0.3953683328093891,0.3988673139158576,0.4031235853327297,0.4033503955328059,0.4072816670568953,0.413975249019016,0.4129875272223322,0.4108443485298084,0.4146525679758308,0.0,2.560155775961243,69.42658663311501,209.0109143104217,306.74474615006045,CHI_public_baseline,25 +100000,95725,50743,478.6837294332725,7188,73.64847218594934,5675,58.584486811177854,2264,23.18098720292505,77.31288813594676,79.67081939013471,63.318020272784125,65.06174657026467,77.01424954571002,79.37437126126531,63.20546701433296,64.95322295130686,0.2986385902367487,296.4481288694003,0.1125532584511646,108.52361895781826,176.65186,123.63284541932944,184540.98720292503,129154.18690971998,346.87183,219.91501989974387,361635.3408200575,229008.74369260267,414.88691,200.2045146415098,429220.43353355967,205947.3196298364,4049.51606,1859.749897831961,4181962.38182293,1894403.058586537,1332.58223,592.458782300357,1373044.5651606163,599867.8112304586,2209.35246,944.9679089406168,2263862.2303473493,947211.919197376,0.43244,100000,0,802963,8388.226691042048,0,0.0,0,0.0,28512,297.1010707756595,0,0.0,37872,391.44424131627056,1540885,0,55413,0,0,15751,0,0,63,0.6581352833638026,0,0.0,2,0.0208931835988508,0,0.0,0.07188,0.1662195911571547,0.3149693934335003,0.02264,0.333245382585752,0.666754617414248,24.46860161253012,4.273323771264367,0.3147136563876652,0.2408810572687224,0.2193832599118942,0.225022026431718,11.136443333165976,5.863543909564228,24.46707184979852,14304.087331593932,64.90877174382076,16.54886239209064,20.25859468527829,14.436544689149008,13.664769977302834,0.561057268722467,0.7951719092904169,0.6847704367301232,0.5638214565387627,0.1236947791164658,0.7178502879078695,0.9080234833659492,0.8391304347826087,0.6805970149253732,0.1712062256809338,0.5014591439688716,0.727803738317757,0.6312217194570136,0.5222929936305732,0.1113360323886639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029775770220178,0.0056558448798386,0.0085329599529216,0.0112034290821923,0.0136695110912216,0.0162423625254582,0.0187826938176182,0.0213272077590607,0.023759622954004,0.0264796231824697,0.0291294986158105,0.0317916700895424,0.0340426407215805,0.036452968563306,0.0387091449323208,0.0410409582769205,0.0434372929092113,0.0459139204781273,0.0481068208525285,0.0502943474863245,0.0675506368761745,0.0839367178671577,0.1001814234927692,0.115049365451544,0.1297016861219196,0.147944017179913,0.1633482626138269,0.1770348682459409,0.1897104391494817,0.2029176722982032,0.2174592062038882,0.2307617409366784,0.2443359183806654,0.2561984375341926,0.2670438908398375,0.2788960319219685,0.2899580094702046,0.3003433717984801,0.3101022727272727,0.3191091640959185,0.3261567341452392,0.3334777314663045,0.3407720644847968,0.3468780376579582,0.3533969953165866,0.3591430228683557,0.3645472786556308,0.3700749273663286,0.3748556450880402,0.3803845797546418,0.3778789393345851,0.376497047298416,0.3756290641786825,0.373648697671044,0.3723451922215252,0.3694634386743054,0.3682340381459233,0.3691286252229636,0.368901495616297,0.3699221349062202,0.3708530582222138,0.3718155562195001,0.3719870943252989,0.3726923163409862,0.3738163853437629,0.3744681968590787,0.3767628895590981,0.3807980683695514,0.3853841791891125,0.388486894999196,0.3932832726770166,0.3955555555555555,0.4014792338327327,0.4021989850838074,0.4052947338348728,0.4098537520978182,0.4130502653762098,0.416992388397449,0.4192459200900394,0.4167306216423638,0.0,2.6912354735799893,68.52479380081219,214.55411076176725,307.0087796986396,CHI_public_baseline,26 +100000,95770,50889,479.2837005325258,7236,74.05241724966065,5697,58.78667641223765,2219,22.679335908948524,77.37208356525132,79.7117224703504,63.35007434272507,65.07977574538195,77.08981650916175,79.43244269252864,63.24474204645784,64.97913566644257,0.2822670560895659,279.27977782175617,0.1053322962672353,100.640078939378,177.47906,124.2035188402655,185318.01190351884,129689.37959722824,350.1135,221.513684134246,364892.8683303749,230613.01465411516,421.17347,202.90746858240848,435911.3396679544,208830.1619309938,4037.66488,1854.7784434861148,4162134.6559465374,1882833.7929269213,1351.44656,602.5548805351153,1389385.1832515402,607416.216492759,2172.23206,920.5758579698684,2220629.069646027,918823.6072984652,0.43317,100000,0,806723,8423.545995614493,0,0.0,0,0.0,28833,300.3550172287773,0,0.0,38423,397.3269291009711,1537773,0,55385,0,0,15905,0,0,69,0.7204761407538895,0,0.0,0,0.0,0,0.0,0.07236,0.1670475794722626,0.306661138750691,0.02219,0.3377526909950118,0.6622473090049882,24.645663126968223,4.299560900165902,0.325434439178515,0.242934878005968,0.2185360716166403,0.2130946111988766,11.004953408640567,5.738569608606901,23.78393804127912,14332.080959977158,65.1047476809794,16.693169893994497,21.039224854071083,13.712167050024975,13.660185882888838,0.5639810426540285,0.791907514450867,0.6731391585760518,0.5996705107084019,0.1132530120481927,0.7323327079424641,0.9282945736434108,0.8446969696969697,0.7620689655172413,0.0943396226415094,0.498291849682772,0.7108294930875576,0.6048265460030166,0.5487012987012987,0.1183673469387755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023701002734731,0.0051295567900733,0.0078646668425645,0.0107475543726699,0.0133326553442489,0.0158820654829776,0.0184794463301022,0.021144151682756,0.0236163342053629,0.0262204482652747,0.0287658458101474,0.0313529490245179,0.0337462095903787,0.0364291598023064,0.0388763998597562,0.0412559667720538,0.0438873420210949,0.0462407964326454,0.0484730722472178,0.0509333971909585,0.0685326069941454,0.0853807775581285,0.1007799886775837,0.116004623791509,0.130668408631153,0.1481309299917587,0.1628883024387142,0.1770066782934195,0.1898684196484787,0.2022049370017999,0.2175409906614451,0.2321272202462676,0.2457637250959208,0.2571153656909805,0.2683028789562271,0.2795458321794516,0.2912249771251311,0.3020669335612433,0.3113283509305147,0.3197443328255117,0.3280300838877639,0.3355206213301518,0.3427959736465467,0.3495351511956678,0.3556030556601367,0.3609961062644783,0.3659868717743147,0.3706423653094732,0.3759242712663325,0.3805274690461733,0.3789000457641263,0.3776683538732394,0.3757427768916992,0.3746904013557162,0.3731614363127493,0.3704334484081319,0.3683935029503204,0.3692520228932307,0.3697497727545578,0.369339850674115,0.3697917644628875,0.3707840690788822,0.3713547899477231,0.3708849696344934,0.3724117959360973,0.3731003039513678,0.3745981630309988,0.3789093444025476,0.3822562979189485,0.3844831033793241,0.3881663308298223,0.3928857554879025,0.3942868001013428,0.3946762810678122,0.3998669328010645,0.4008821075217547,0.401076923076923,0.4055888223552894,0.4044759825327511,0.4069855732725892,0.0,2.7537908707183814,70.18068081818096,214.8697071804617,301.67612298539177,CHI_public_baseline,27 +100000,95633,50422,475.81901644829713,7172,73.63566969560716,5645,58.29577656248367,2171,22.199449980655213,77.25911226955019,79.65492982872054,63.27736057920528,65.04553518770969,76.9892943748964,79.38810707217577,63.17639771952935,64.94902928575333,0.2698178946537837,266.8227565447694,0.1009628596759313,96.50590195636256,177.50216,124.22612143541431,185607.645896291,129898.80212417712,347.22161,219.22943745129743,362324.0408645551,228487.97927423788,420.52116,202.44896934919367,435162.4752961844,208203.1200279825,3990.79876,1829.5089451126803,4122374.7660326455,1862453.3306273029,1348.45802,599.1246053801265,1392021.969403867,608470.8786508068,2122.45434,893.6255108749991,2172333.190425899,894040.96701704,0.43095,100000,0,806828,8436.711177104138,0,0.0,0,0.0,28571,297.9829138477304,0,0.0,38316,396.0557548126693,1533085,0,55180,0,0,16005,0,0,63,0.658768416759905,0,0.0,0,0.0,0,0.0,0.07172,0.1664230189117067,0.3027049637479085,0.02171,0.3223920265780731,0.6776079734219269,24.62224991742092,4.294314601240347,0.3326837909654561,0.2377325066430469,0.2116917626217891,0.2178919397697077,11.25458338172755,5.930990508848062,23.22419173494937,14277.269148711064,64.67905707427519,16.424440878329097,21.234257909309925,13.88978765827452,13.130570628361646,0.5721877767936226,0.797317436661699,0.691160809371672,0.5910569105691057,0.1129707112970711,0.7491961414790996,0.9383429672447012,0.8689516129032258,0.7535714285714286,0.1384615384615384,0.5048899755501223,0.7083839611178615,0.6273516642547033,0.5431578947368421,0.1058823529411764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027045369366814,0.0055263184579036,0.0082617786168118,0.0109535034953666,0.0136426064397985,0.0161937547104475,0.018577808593511,0.0209990097695927,0.023471682682478,0.0258360373824122,0.0283382545931758,0.030824836480506,0.0332843051541301,0.0356134748119913,0.0380193605647175,0.0402539524976476,0.0428683905188131,0.045653189391187,0.0482228486430822,0.0503972142872036,0.0684314483681168,0.0841922238981062,0.1000147018671371,0.1155620142793959,0.1293736204547614,0.1470061751278982,0.1612721613783873,0.1746145075180358,0.1882078649882891,0.2002534582008763,0.2159447650898106,0.2300631779711527,0.2432241056255174,0.25610397580327,0.2661526072519884,0.2784967617947322,0.2891102406267487,0.300168101357221,0.3096167191890692,0.3182601898894227,0.326326175275682,0.3340765601896402,0.3415210371355304,0.3480446994574958,0.3540009758477677,0.360075180532199,0.3652131320489312,0.3693018624660122,0.374171841305308,0.3788573093528991,0.3774383237580264,0.3768805309734513,0.3755489446097181,0.373863189907309,0.3728017705467161,0.3703367117464033,0.3690048057031921,0.3692538692538692,0.3694560957161521,0.3704554839404657,0.3705049516135105,0.3722172574719491,0.3725948381120795,0.3728278394840559,0.3743222728258512,0.3750750358867284,0.3761415525114155,0.3796509609619086,0.3841895560805331,0.387621630244058,0.3892144295916498,0.3943955164131305,0.3961930057547587,0.4004111466423024,0.4045944678856071,0.4078351988568707,0.4125574272588055,0.4178651002633178,0.4227005870841487,0.4220219435736677,0.0,2.824302625732544,68.32711050120929,214.45642173357237,304.1068711586685,CHI_public_baseline,28 +100000,95616,50423,476.37424698795184,7110,73.16767068273093,5632,58.31659973226238,2186,22.40210843373494,77.28554750318864,79.71638865188166,63.27381344368565,65.07143463112418,77.01471115282199,79.44799059058734,63.1735807342345,64.97515596362778,0.2708363503666504,268.3980612943202,0.1002327094511486,96.27866749639225,175.37828,122.72911993508043,183419.38587684068,128356.2582989044,346.41965,219.60978477620668,361718.79183400265,229094.6858017556,416.39537,200.1397826796645,432130.8358433735,206683.50439597285,3991.17362,1812.865031820944,4132246.768323293,1854062.585572442,1308.55327,575.6919039864036,1349913.7905789826,583450.6818800233,2131.09836,887.151379101646,2185946.2433065595,891769.8815960201,0.431,100000,0,797174,8337.244812583667,0,0.0,0,0.0,28618,298.68432061579654,0,0.0,37920,393.2187081659973,1543586,0,55459,0,0,15315,0,0,69,0.7216365461847389,0,0.0,1,0.010458500669344,0,0.0,0.0711,0.1649651972157772,0.3074542897327707,0.02186,0.334851326011251,0.665148673988749,24.52226652737838,4.2570269842831285,0.3196022727272727,0.244140625,0.2118252840909091,0.2244318181818181,11.37880054257415,6.006835017915184,23.245837826026285,14247.134645079886,64.18410640784431,16.573894295503507,20.615428823948974,13.970537223811574,13.024246064580264,0.5688920454545454,0.7716363636363637,0.7166666666666667,0.5712025316455697,0.1098072087175188,0.7418725617685306,0.8941176470588236,0.8686274509803922,0.7167832167832168,0.1594827586206896,0.5039081582804104,0.6994219653179191,0.6565891472868217,0.5286298568507157,0.0978147762747138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025233076611268,0.0053657101705058,0.0079600373634406,0.0108858057630736,0.0135107638464981,0.0161354399046542,0.0187389703257132,0.0211057535142203,0.0235959538104345,0.0259109809303373,0.0285183779403165,0.0311857788738183,0.0332993648931023,0.0356148850633955,0.0378328704038328,0.0403711289021287,0.0427672825625136,0.0454663468029203,0.047559071510357,0.0500902291716649,0.0670395149487769,0.0836713092505842,0.0991813701278912,0.1148760417654434,0.1296415630513094,0.1473843644413375,0.162371270976587,0.1761488431602516,0.1886685431136891,0.2003094744307497,0.2160231368570997,0.2298692286005508,0.243545170185171,0.2546213607126812,0.2655104358468306,0.2771944234782222,0.2876692418635332,0.29804646548906,0.3079222550579677,0.3166036005045293,0.3247156392614729,0.3331576358141823,0.3398878070185842,0.3467941480289235,0.3531940283967755,0.3585029141558826,0.3640339883697613,0.3688169301376848,0.3731728847002622,0.377783360660073,0.3765121579522313,0.3757214286698164,0.3744318663015555,0.3729623302545096,0.3717538507329414,0.3698015848639351,0.367847498014297,0.3685667671923666,0.3692175997260743,0.3689095959143446,0.3701714521793018,0.3711707432913797,0.3728763666947014,0.3739574926015604,0.3744604923685289,0.3762616383694546,0.3764187171099417,0.3816318833291425,0.3855758805218425,0.3904682605765037,0.3942211284294959,0.3997657830299159,0.4024613442726412,0.4047092890345195,0.410695791356746,0.4110966520761859,0.4109630990659929,0.4153250458528633,0.4214009928295643,0.4261168384879725,0.0,2.285838329098289,68.04927357408283,207.8927969035809,310.0996013687165,CHI_public_baseline,29 +100000,95804,50784,477.06776335017327,7175,73.43117197611791,5655,58.390046344620266,2221,22.744353054152228,77.35864855579545,79.66376463415965,63.35358995694328,65.05425545046899,77.0839629865881,79.39071401062945,63.25132621376819,64.95537780534497,0.2746855692073495,273.05062353019594,0.1022637431750865,98.87764512401986,177.31516,124.12565692645096,185080.4768068139,129561.4529413937,350.82926,222.09576989744275,365544.2257108262,231185.44179228437,424.58666,204.1744274413388,439612.83453718,210284.1704185264,4020.22639,1839.7390265160727,4151796.699511503,1877298.5945226136,1336.4455,598.0455419591184,1375220.75278694,604818.0710269745,2177.47486,912.5362733071864,2231276.919544069,918131.9250122856,0.43309,100000,0,805978,8412.748945764268,0,0.0,0,0.0,28821,300.15448206755457,0,0.0,38774,401.1210387875245,1536185,0,55281,0,0,15694,0,0,68,0.7097824725481191,0,0.0,0,0.0,0,0.0,0.07175,0.1656699531275254,0.3095470383275261,0.02221,0.3369132856006364,0.6630867143993636,24.43913511498045,4.442485328895433,0.3266136162687887,0.2399646330680813,0.2215738284703802,0.2118479221927497,11.36797137826436,5.763037452528271,23.63199348666352,14341.840277773912,64.52196912902743,16.414451904933795,21.1353480047801,13.332049871509858,13.640119347803672,0.5658709106984969,0.7848194546794399,0.7016783974011911,0.5784641068447413,0.1165203511572226,0.7284345047923323,0.9190751445086706,0.8383838383838383,0.7192982456140351,0.1616541353383458,0.5036674816625917,0.7016706443914081,0.6516272189349113,0.5345016429353778,0.1043566362715298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026516608303139,0.0055100325132433,0.0083031722375984,0.0111317442438633,0.0138276471663991,0.0166522557347032,0.0194250906572138,0.0222170085583425,0.0248145802259771,0.0272509666728042,0.0298365290068829,0.0323096805957289,0.0349309087173164,0.0373129720718681,0.0396849127220612,0.0423242171362472,0.044512964840759,0.0472305443537936,0.0496800864182143,0.051968061295662,0.0690320696058589,0.085614218504966,0.1008741588579334,0.1161707986085567,0.1304169125706095,0.1489426907753601,0.1645303902547628,0.1781257646195253,0.1906531279028796,0.2030732277469787,0.217680188669086,0.231973598788141,0.24512150020667,0.256969975490196,0.2684191978150261,0.279747649458932,0.2899793446100597,0.3002521046234187,0.3102571379917125,0.3189216450414928,0.3273659954376498,0.3345865101952379,0.3418202928771148,0.3491002879078694,0.3542249580302182,0.359495514173238,0.3649193548387097,0.3699997453721386,0.3752333298765944,0.3796948279278684,0.3791909228115567,0.3785942492012779,0.3772473651580905,0.3758275752406834,0.3746876115672974,0.3712450956351152,0.3691936966929833,0.3695001151808339,0.3688187519276241,0.3688164524052857,0.3694257932253756,0.3709421382649416,0.3708532552604419,0.370927205816354,0.37200202883849,0.3725680678446714,0.3721197164911475,0.3752932225955747,0.377405887347863,0.3805575582792598,0.3836143695014662,0.3856461381786997,0.3885540257597868,0.3890427823945829,0.3911195087387813,0.3941761363636363,0.4013846153846154,0.404346934590937,0.4101551480959097,0.4091633466135458,0.0,2.3918563739851173,69.0854277038055,209.20056981907135,307.9552624486287,CHI_public_baseline,30 +100000,95853,51023,481.0804043691904,7319,74.90636704119851,5780,59.64341230843062,2225,22.764024078536927,77.41454581429173,79.70140597180742,63.37712166936033,65.06717760140457,77.1352349374005,79.42382563956953,63.2737514750739,64.96702540438217,0.2793108768912304,277.58033223788914,0.1033701942864269,100.1521970223962,176.55924,123.61719445355148,184197.92807736847,128965.38914123866,351.4708,222.01719395704177,366028.1889977361,230973.8807935503,424.96632,204.3636555355525,438632.34327564086,209601.58554022384,4125.06874,1875.1123677906007,4261558.459307481,1914259.603549812,1365.66401,602.3521115954031,1410958.1025111368,614622.1522491764,2178.53104,914.425871977924,2232239.992488498,920515.7756960331,0.43482,100000,0,802542,8372.63309442584,0,0.0,0,0.0,28849,300.2827245886931,0,0.0,38659,398.63123741562606,1542696,0,55515,0,0,15875,0,0,88,0.9180724651288952,0,0.0,0,0.0,0,0.0,0.07319,0.1683225242629134,0.304003279136494,0.02225,0.3325976892119953,0.6674023107880047,24.42969855853351,4.363718211792755,0.3237024221453287,0.2333910034602076,0.2166089965397923,0.2262975778546712,11.338625011209608,5.928035672699254,23.792739276642138,14341.116884261046,65.5371418122036,16.120151455601356,21.226333460693134,14.4600052426752,13.730651653233924,0.5643598615916955,0.8065233506300964,0.6916087653661144,0.5435779816513762,0.1349840255591054,0.7357750163505559,0.9302325581395348,0.8455445544554455,0.7315436241610739,0.1581027667984189,0.5027052458245119,0.7397260273972602,0.6346998535871157,0.4881188118811881,0.1291291291291291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028445614212684,0.0055822906641,0.0083454171187523,0.0109841024912188,0.0134871430023376,0.0158731773827572,0.0183475957620211,0.0208392835284997,0.0233513115959794,0.0261844366254807,0.0288035072264844,0.0312342930997343,0.0337741335552747,0.0360977015635132,0.038497623539843,0.0409312029415106,0.0433284707781122,0.0456905396022674,0.0479275014792438,0.0502600374453921,0.0679998331804153,0.0841144935260369,0.1002943672152442,0.1148874959313741,0.1289843626599273,0.1466910289178513,0.1604343220338983,0.1749505729288462,0.1882548760189492,0.2011289268768141,0.2165052722186357,0.2312650042174016,0.2449571794983263,0.2575712864902674,0.2687631902919451,0.2809376763953913,0.2914993754461099,0.3024447816557073,0.3118002699667646,0.3214473834879194,0.3294467386149379,0.3365339633233533,0.3436512725852827,0.3501995900312871,0.3567164723475131,0.3616055458930047,0.3668854759101044,0.3725292919001528,0.3766789955226786,0.3809164947908403,0.3796330003101026,0.3778001267462045,0.3764790500232699,0.3747142733138509,0.3731292213395221,0.3707207138148313,0.3683910412772832,0.3684677578386905,0.3693818542661123,0.3712019720272225,0.3720598984200761,0.3720543716982252,0.3732763317825558,0.3740666219539459,0.3754694270582571,0.3762389149713093,0.3764357169321971,0.3822459222082811,0.3861521716231874,0.3887717343731349,0.3938292361521334,0.395246432171468,0.3984472827448034,0.4004376367614879,0.4045195629844056,0.4070096766580127,0.4059724349157733,0.4090259342454564,0.4162520729684908,0.4163139669103501,0.0,2.595354719381582,67.06099024367954,219.13832042985047,316.5245675670572,CHI_public_baseline,31 +100000,95704,50764,478.2454233887821,7019,71.77338460252446,5502,56.83148039789351,2221,22.75766948089944,77.36002699221102,79.73124267246041,63.33690834044432,65.0883041466189,77.07663166173855,79.44948857902368,63.23152004892788,64.9865740846572,0.283395330472473,281.7540934367315,0.1053882915164479,101.730061961689,176.78694,123.7856639363114,184722.6239237649,129342.20506594436,347.29342,220.3887430770623,362220.3774136922,229619.1518401136,420.81217,202.53536414403308,435767.3138008861,208601.43326000217,3916.28612,1807.7813438900744,4047779.476301931,1844638.9428760265,1326.64227,592.4752398178781,1371261.263897016,604159.1724821555,2171.5269,919.112546196912,2227285.3381258883,924830.858785086,0.43138,100000,0,803577,8396.48290562568,0,0.0,0,0.0,28625,298.43057761431083,0,0.0,38214,395.3544261472875,1540613,0,55318,0,0,15779,0,0,65,0.6791774638468612,0,0.0,0,0.0,0,0.0,0.07019,0.1627103713663127,0.3164268414304031,0.02221,0.3306188925081433,0.6693811074918566,24.72798438517357,4.276161277713981,0.3260632497273719,0.2399127589967284,0.2253725917848055,0.2086513994910941,11.232902904735072,5.952041937397742,23.848664315383424,14253.103742354047,63.02191188699621,16.05075330329203,20.512211396336564,12.807716804031156,13.651230383336474,0.564521992002908,0.8022727272727272,0.6889632107023411,0.5801393728222997,0.1169354838709677,0.7237604636188023,0.9133858267716536,0.8472505091649695,0.7408759124087592,0.1464285714285714,0.501899214991137,0.7327586206896551,0.6293169608595549,0.5297482837528604,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026638036685539,0.0052408032519336,0.0079762134296702,0.0104329628801885,0.0133854103096138,0.016078774795324,0.0187971457696228,0.0214537957500663,0.0239815997955532,0.026607833903233,0.0291988763353769,0.0318676016139133,0.0341313424240554,0.0366479204004696,0.0390738658054664,0.0413043703022094,0.0438422012265871,0.0460664943584633,0.0485864070398801,0.0511957484499557,0.0686781339098286,0.0847794687153293,0.0996317705437416,0.1146871976103327,0.1293744266720089,0.1469381713609067,0.162900488011882,0.1770196913251729,0.1893866564122284,0.2017165540178092,0.217039479355228,0.231216312747581,0.2451650776740191,0.2570032145903037,0.267909585876918,0.2785913683091102,0.2899388474757844,0.2995478268694322,0.3086442158275013,0.3172606568832984,0.3252302494561948,0.3335594330355054,0.3406398314613391,0.3467622106120884,0.3525823307813829,0.3576403012486287,0.362846265591344,0.36734070576857,0.3723488332923053,0.375969043436918,0.3749713592560145,0.3734444980362433,0.3719117937713527,0.3719629688654506,0.3708581644815256,0.368357246988414,0.3663628437821986,0.3676543047662845,0.3684678674672003,0.3681991173370021,0.3695835757314166,0.3696271669437188,0.3703408995728285,0.371065104632445,0.3717634035999615,0.3726114649681528,0.3731979405034324,0.3769325618894052,0.3826471107969606,0.3862204566429918,0.3854944244770067,0.3863904690350971,0.3888818377966747,0.3923195084485407,0.3926780815438463,0.3982078853046595,0.4001234949058351,0.4037241661551053,0.4049748462828396,0.4080996884735202,0.0,2.559594135262404,68.2106190820091,206.93772001524,292.7959057822877,CHI_public_baseline,32 +100000,95749,50546,476.3705103969755,7112,72.95115353685156,5610,57.96405184388349,2199,22.52765041932553,77.33346816806463,79.69475769321306,63.32120940122799,65.07010973686137,77.05059722720404,79.41387573357441,63.21455288608146,64.96688883754676,0.2828709408605903,280.8819596386485,0.1066565151465326,103.2208993146071,178.5993,124.9287617620796,186528.63215281625,130475.26528953784,348.37988,221.24125926417224,363240.0442824469,230456.80817989985,421.08307,203.13786970108015,435858.5259376077,209137.7947550192,4024.75682,1855.3825333602476,4162848.196848009,1897159.482981804,1334.80478,592.9754618010626,1378926.3699881984,604161.8103594419,2154.84852,923.5187828137882,2210639.568037264,930448.47803868,0.43077,100000,0,811815,8478.574188764374,0,0.0,0,0.0,28667,298.7603003686723,0,0.0,38349,396.63077421174114,1530536,0,55061,0,0,15869,0,0,67,0.6997462114486835,0,0.0,1,0.0104439733052042,0,0.0,0.07112,0.1650997051790979,0.3091957255343082,0.02199,0.3426883308714918,0.6573116691285081,24.444586109143355,4.348327503064385,0.3103386809269162,0.2434937611408199,0.2242424242424242,0.2219251336898395,11.09531631493471,5.707797810493188,23.864959056031072,14209.421723229643,64.22839384092886,16.60993925191281,19.770102205421704,14.06153588856461,13.78681649502973,0.5650623885918004,0.7898975109809663,0.7122343480758185,0.5726907630522088,0.1096979332273449,0.7175141242937854,0.8972868217054264,0.8629550321199143,0.7177914110429447,0.1514084507042253,0.504605426935524,0.7247058823529412,0.6569858712715856,0.5212187159956474,0.0975359342915811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026749075434419,0.0053238956719263,0.0082313298012707,0.010668780101201,0.0132727161774577,0.0159557678013216,0.0186559556334869,0.0212998305811271,0.0239667225379175,0.0264297339625152,0.0290128456168048,0.0316821518402546,0.0340795738510741,0.0366628562012749,0.0390603237488006,0.0413242787890063,0.0436241263266891,0.046051675832728,0.0482933574540199,0.0505270394133822,0.068085017537999,0.0840668599478768,0.0993924385355565,0.1143235767398323,0.1284447209947373,0.1461459556063153,0.1610924833411145,0.1752402848293259,0.1883384602238742,0.2008601089614345,0.2157547159647932,0.2298202517125326,0.2429833340585701,0.2554297281032879,0.2671471801925722,0.2786701821243408,0.2896758918001295,0.2991161402916174,0.3083482842413644,0.3171455411969572,0.3244841513233268,0.3317493943188867,0.3393641584275649,0.3454292532588231,0.3518149569949949,0.3566227654095876,0.361509868462222,0.3663027434213874,0.3706530189168178,0.3758441592768314,0.3741329518771423,0.3737116243179187,0.3723702961635601,0.3712841165903691,0.3699979142457018,0.3675270172633779,0.3654304509486128,0.3654479578392622,0.3664033178523075,0.3670464316423044,0.3676824227850003,0.3677257061363546,0.3690593591976331,0.3694979829672792,0.3715816659023436,0.3726719479565605,0.3751820232418696,0.3778844029167587,0.3804443816454131,0.3848912263925412,0.387609649122807,0.3909493569560809,0.3918576674686589,0.3930759803921568,0.3951903048665025,0.3976164680390032,0.3994430693069307,0.4025598678777869,0.4090780141843971,0.4047993705743509,0.0,2.443837008469821,70.16494744008297,209.24515457209037,298.62719566549464,CHI_public_baseline,33 +100000,95792,50824,478.4115583764824,7234,74.2963921830633,5664,58.491314514782026,2183,22.392266577584767,77.34149214859087,79.68152921302516,63.33904717832892,65.07279503974371,77.05932651195027,79.39972745585959,63.233730248429104,64.97021183417324,0.2821656366405989,281.8017571655673,0.1053169298998142,102.5832055704683,177.3134,124.11446315318406,185102.28411558372,129566.39714504764,349.08947,220.17611009852007,363753.0482712544,229176.71632132123,417.56601,200.8972984774069,431645.5549523969,206353.01461217023,3986.06049,1835.805587966044,4117861.815182896,1873149.4153645865,1323.03141,589.2079190650654,1363067.6048104223,597107.5770427427,2122.0787,907.570244461735,2177401.787205612,914850.386877405,0.43459,100000,0,805970,8413.74018707199,0,0.0,0,0.0,28785,299.8162685819275,0,0.0,38068,393.22699181560046,1542102,0,55446,0,0,15545,0,0,75,0.7829463838316352,0,0.0,1,0.0104392851177551,0,0.0,0.07234,0.1664557398927725,0.3017694221730716,0.02183,0.3262879788639365,0.6737120211360634,24.538014402993834,4.234689306584422,0.330861581920904,0.2457627118644068,0.204978813559322,0.2183968926553672,11.157863520588824,5.999399076589189,23.649203553955825,14386.7452282882,64.91958862247454,16.77732085897867,21.37924985375302,13.923003499168704,12.840014410574142,0.5801553672316384,0.8010057471264368,0.7006403415154749,0.5715440582053355,0.1300602928509905,0.7406704617330804,0.9272030651340996,0.8603238866396761,0.7377049180327869,0.1423076923076923,0.5180014695077149,0.725287356321839,0.6434782608695652,0.5171673819742489,0.1265260821309655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026540514804947,0.0054033230943908,0.0080064944949008,0.0107812055440393,0.013643994505774,0.0163388373348544,0.0191130874673629,0.0217504518579787,0.0242859918399067,0.0266232502892718,0.029263090978068,0.0317721116028794,0.0343032883841968,0.0367459205538157,0.039282250242483,0.0417183494583643,0.0441535848900302,0.0466517972923906,0.0489333180925462,0.0511467149713191,0.0685600409002222,0.0847361927267404,0.1012093140234317,0.116463331336759,0.1311174809256839,0.1490540112038896,0.1639935123445665,0.1776986068276082,0.1898901708808743,0.2026859016955692,0.2182968966964833,0.2328060634237585,0.2459851793902253,0.2576833959954533,0.26909034925662,0.2809655630605691,0.2919244963262757,0.3024846674005347,0.3121466526177447,0.3212047035139092,0.329355498307591,0.3366744938609096,0.3439813610237245,0.3505935055757184,0.3566380922314772,0.3618916222175686,0.3668026121550279,0.3717881889263238,0.3758523866827116,0.3808230734755213,0.3794849692921021,0.3774743275610495,0.3760559606244799,0.374600141850131,0.3732741543915044,0.3708466980770116,0.3683333068703259,0.3689750601258524,0.3695033271592234,0.3706406555378243,0.3720693746116039,0.3731933758772191,0.3737405674297036,0.375171544916646,0.3771825733175114,0.3781483913328956,0.379156341842909,0.3825881903062362,0.3864299437842453,0.3898509381654546,0.3941359025429617,0.3961592404790161,0.3976088485390959,0.3997201492537313,0.4043428352783623,0.4042373901528831,0.4178168130489335,0.426133999167707,0.432447710570944,0.434816247582205,0.0,2.492697056390662,69.4709591360313,217.09859596845672,300.3039192449316,CHI_public_baseline,34 +100000,95688,50986,481.021653707884,7220,74.0009196555472,5768,59.547696680879525,2242,22.960036786221888,77.3419109081298,79.71227966393208,63.33255108723839,65.0816062967225,77.05782467754061,79.43084810770817,63.226254536067934,64.97995339429677,0.284086230589196,281.43155622390736,0.1062965511704518,101.65290242572668,177.05314,123.94004301739088,185031.7072151158,129525.16827333716,354.00701,224.33424123339609,369242.2769835298,233727.14531756847,426.06484,205.52194249789355,440944.1204748767,211475.2987491649,4064.65642,1884.8703296871884,4194420.9723267285,1916543.8918175031,1359.67642,614.8385845410371,1398461.0400468188,620303.4823227704,2188.51486,932.4269740628416,2241960.224897584,934739.8878626795,0.4359,100000,0,804787,8410.532146141626,0,0.0,0,0.0,29117,303.53858373045733,0,0.0,38899,402.18209179834463,1536308,0,55243,0,0,15754,0,0,68,0.710642922832539,0,0.0,1,0.0104506312181255,0,0.0,0.0722,0.1656343197981188,0.3105263157894737,0.02242,0.3377343543702139,0.6622656456297861,24.34843462034128,4.25786697779962,0.3278432732316227,0.2482662968099861,0.2120319001386962,0.2118585298196948,11.174873623670331,5.882270967965894,24.306924422785148,14393.965267761942,66.16027729381848,17.290280015683205,21.394189227987997,13.675160419611023,13.80064763053624,0.5794036061026352,0.8086592178770949,0.7001586462189318,0.5932896890343698,0.1103843008994276,0.7335766423357665,0.9392857142857144,0.8701825557809331,0.7016949152542373,0.1486486486486486,0.5179437439379243,0.7247706422018348,0.6402002861230329,0.5587918015102481,0.0981661272923408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026531108230719,0.0052700922266139,0.0080949482653682,0.0108271715283984,0.0134522308537031,0.0160055388124134,0.018522482848609,0.0212398954846084,0.0236715420231196,0.0262829304239248,0.0286423094271538,0.031041104048795,0.0334320561074432,0.0359777457242942,0.0386361760092462,0.0408753992949665,0.0434255768673101,0.0459234505375897,0.0484870541748986,0.0509311850593519,0.0680258608984468,0.0850039256739073,0.1008583240645526,0.1159967600433396,0.1304701017006372,0.1489899791541009,0.1643412662203312,0.1790315368071378,0.1923557759090472,0.2055020868874797,0.2204089107204412,0.2345058989068081,0.2470328427053077,0.2596185393381308,0.2708062919370806,0.2822454741737253,0.2933513278383171,0.3034909213558941,0.3127729814968178,0.3218369753093485,0.3297925272792492,0.3359866087628323,0.3428500378931413,0.3489693873880355,0.3549846187517478,0.3604473190480892,0.3660224978367464,0.3712272744645883,0.3759565251225649,0.3798484408417606,0.3784607500707995,0.3769706315659034,0.3757482710537065,0.3747164304188882,0.3734891396458677,0.3720830460430552,0.3692756102583598,0.3698026315789474,0.3707079706668494,0.3714823445061839,0.3724534903406633,0.3739800273978042,0.3750105422956903,0.3764859510086455,0.3766947511136936,0.3804917689000734,0.3815042166255522,0.3851774530271398,0.3888869226685542,0.3900797307584438,0.3949202273977627,0.397503883443141,0.4012181195279787,0.4044157242864836,0.4071924650366283,0.4121807936698237,0.412553979025293,0.4104848736013261,0.4210674950578932,0.4309672386895475,0.0,2.844693286154785,72.2241388604887,215.4229815669841,306.4344856056542,CHI_public_baseline,35 +100000,95695,50879,479.7533831443649,7174,73.47301321908147,5643,58.25800721040808,2219,22.728460212132298,77.33810060160408,79.72188979140779,63.31256206328344,65.0756166677357,77.06248358734773,79.44760603810217,63.2107640053142,64.97704064821394,0.2756170142563547,274.2837533056246,0.1017980579692334,98.57601952175798,178.0713,124.63756459960806,186082.1359527666,130244.59438801196,347.82204,220.04788029406555,362707.2051831339,229187.56555844657,422.08457,203.140683967908,436433.1156277757,208649.07054846417,4026.06294,1835.4484960457469,4158477.3290140554,1869578.0470618955,1368.7608,605.8149220422232,1408354.0310361043,611286.9285895622,2166.86188,904.6744280367056,2221880.0564292804,909289.4033142398,0.43397,100000,0,809415,8458.278906943937,0,0.0,0,0.0,28579,297.8630022467213,0,0.0,38451,397.2516850410158,1533380,0,55177,0,0,15777,0,0,68,0.7001410732013167,0,0.0,1,0.0104498667641987,0,0.0,0.07174,0.1653109661958199,0.3093114022860329,0.02219,0.3341751960653994,0.6658248039346005,24.46634699989702,4.330464160061198,0.3225234804182172,0.2337409179514442,0.2174375332270069,0.2262980684033315,11.595860337179008,6.251586792696192,23.66290041721682,14387.564616036774,64.14509140483494,15.924017579451125,20.68728055533366,14.220656283114453,13.313136986935705,0.5752259436469963,0.7748294162244125,0.7060439560439561,0.615505090054816,0.1246943765281173,0.7433398310591293,0.9066390041493776,0.8819875776397516,0.7360248447204969,0.1746031746031746,0.5121832358674464,0.6989247311827957,0.6424831712789828,0.574869109947644,0.1117948717948718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026048529322332,0.0053256238587948,0.0078380408958921,0.0105189340813464,0.0134817513049317,0.0159300868821234,0.0186239112253432,0.0213774296015606,0.0243084317635629,0.0266625710336353,0.0290610034967544,0.0314624278643747,0.0336633866971014,0.0360018948365703,0.0382103840638765,0.0406225134082195,0.0432986488585184,0.045814831721791,0.0483532249345032,0.0507521146714446,0.068486570032165,0.0847918934762582,0.1003000923361034,0.1155274146218328,0.1299698382231971,0.1484032031142564,0.164142995087064,0.1784436493738819,0.1915678101955755,0.2041435989871679,0.2191321775297122,0.233336942399307,0.2463832798127687,0.2578491776009805,0.2695254028352558,0.2809084661597464,0.2915721865400726,0.3016945335810392,0.3118652155143032,0.321296285678245,0.3299658228581359,0.337741750325067,0.3448484273897276,0.3505638195777351,0.356278504104591,0.361763107179918,0.3665972448749153,0.3720048993339968,0.3767077965046125,0.3807056957843266,0.379324752341802,0.3782618280014329,0.3772073342736248,0.3748046761965392,0.3749404691034647,0.3732731626450543,0.3714548423405571,0.3724049509344642,0.372969827659975,0.3727040223203906,0.3732414207629745,0.3746757746757747,0.3757905574349169,0.3766163793103448,0.3779594001639423,0.3790715234202098,0.3788219872909127,0.3813511301391424,0.3857659492293108,0.3877891062006585,0.3899120021772657,0.3911158117398202,0.3923606762680025,0.3959371696118411,0.3978333955920807,0.4022009229676961,0.4006973923590055,0.397508038585209,0.3976464148877942,0.3954198473282442,0.0,2.727833894434139,67.54967827008363,209.06016377614088,308.00998034155225,CHI_public_baseline,36 +100000,95639,50996,481.1739980551867,7132,73.20235468794111,5604,57.89479187360805,2162,22.177145306830894,77.27782633283482,79.68624907424838,63.2892740309558,65.07106166407232,77.01001743489034,79.41977040659657,63.18998555963419,64.97480834461703,0.2678088979444766,266.4786676518105,0.0992884713216071,96.25331945528616,177.48302,124.24549695100146,185575.9888748314,129910.91181526516,347.56051,220.14502119748724,362734.3447756668,229508.8940677833,423.42785,204.34789544398848,437613.9231903303,209807.3882606424,3975.99868,1827.7335701291383,4114094.6057570656,1867871.7156485748,1287.89196,576.0353988614982,1330057.842511946,585741.6523191351,2113.00906,891.4667946687624,2170236.6189525197,899953.9641914574,0.43411,100000,0,806741,8435.272221583245,0,0.0,0,0.0,28615,298.48701889396585,0,0.0,38606,398.582168362279,1535055,0,55234,0,0,15720,0,0,61,0.6273591317349617,0,0.0,0,0.0,0,0.0,0.07132,0.164290156872682,0.3031407739764442,0.02162,0.3305807139051678,0.6694192860948321,24.47103938785135,4.348291106863151,0.3149536045681655,0.2475017844396859,0.2153818700927908,0.2221627408993576,11.403407964271183,5.995456003635127,23.239822732429875,14326.05749539285,64.30227622856576,16.58247119398372,20.3990567365963,14.028936136305306,13.291812161680443,0.5687009279086367,0.7923576063446287,0.6974504249291785,0.5887550200803213,0.1027340513670256,0.7370441458733206,0.9291497975708504,0.8638211382113821,0.7411003236245954,0.1455223880597015,0.5035882207374413,0.7166853303471444,0.6331500392772977,0.5384615384615384,0.0905218317358892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027866161360274,0.0055066526042511,0.0080705743812559,0.010925129831194,0.0134289638333587,0.0161571296135939,0.0186333503314635,0.0213467882786726,0.0238640780671426,0.026357033834933,0.0289230769230769,0.0318216835293513,0.0344188918042907,0.0369897038968534,0.0393656889769876,0.0416399478724944,0.0439247300685967,0.0461941003623677,0.048594201993715,0.0509754037681552,0.0675047284658871,0.083963469554471,0.0992851969644487,0.1147042419522872,0.1287949938267045,0.1468900838343636,0.1622614660875659,0.1768798073849956,0.1903274796261042,0.202836468264193,0.2173299281242254,0.2319510610653962,0.2450745618809187,0.2569411764705882,0.2682072906230389,0.2806871709614851,0.2912092207690675,0.301670381126044,0.310216823703031,0.3194966104800293,0.3270512286547272,0.3344716683234898,0.3407299581055173,0.3472248872685407,0.353230140684087,0.3590835586169438,0.3645557881017132,0.3692638927816138,0.3746221213104119,0.3791234933389723,0.378847192224622,0.3772508837825895,0.3762108806018695,0.3744379659443622,0.3739070752887111,0.3712269155659434,0.3686353083357186,0.368842994292501,0.370730786393437,0.3716801463335903,0.3729616882017717,0.3738854135636977,0.3740114420326434,0.3751121679827709,0.3771203822117124,0.3788436920343809,0.3797645980698187,0.3839277223014741,0.3875795385873236,0.3909774436090225,0.3940623271252074,0.395069667738478,0.397308107421751,0.4008334619540052,0.4028742742933283,0.4029202365150235,0.4004362729822374,0.3997096038166355,0.3994918125352908,0.4138330757341577,0.0,2.77695081471068,68.60849694513132,214.653145746782,297.41234420267284,CHI_public_baseline,37 +100000,95829,50720,476.9537405169625,7174,73.51636769662629,5655,58.54177754124535,2237,22.94712456563253,77.39792083527668,79.70095387812697,63.37134666233783,65.07127351906114,77.11699178534533,79.42154847000958,63.266379153343976,64.96971027442021,0.2809290499313448,279.405408117384,0.1049675089938517,101.56324464092847,177.01442,123.87288779040864,184719.05164407435,129264.51052438054,351.47095,222.9267369523968,366295.651629465,232156.49433094024,424.9811,204.56011316406335,441221.5613227729,211653.41568715053,4011.65129,1839.822356402241,4153838.2744263215,1887479.5170587625,1347.63094,600.3359668180676,1393484.1227603336,613703.6852508829,2181.00366,917.8642199090316,2239406.693172213,925198.4075778564,0.43189,100000,0,804611,8396.320529276107,0,0.0,0,0.0,28933,301.4327604378633,0,0.0,38782,402.5086351730688,1538272,0,55294,0,0,15405,0,0,65,0.6678562856755262,0,0.0,2,0.0208705089273601,0,0.0,0.07174,0.1661071106068675,0.3118204627822693,0.02237,0.3379007582812292,0.6620992417187708,24.42120502412377,4.319064872396039,0.3126436781609195,0.2491600353669319,0.2145004420866489,0.2236958443854995,11.014490948923056,5.692489339765498,23.874376930360405,14251.69787976817,64.64871943296087,16.99961211527194,20.295954174373257,14.047332161689065,13.305820981626592,0.5725906277630416,0.7743080198722498,0.7115384615384616,0.5865612648221344,0.1211871393239901,0.7313144329896907,0.9054054054054054,0.8559670781893004,0.6990291262135923,0.1422594142259414,0.5125517913721667,0.6980920314253648,0.656786271450858,0.5502092050209205,0.1160164271047227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002429740017818,0.00503602225172,0.0074750240884426,0.0100118802229826,0.0127683799609629,0.0155502635810384,0.0182490676774469,0.0207498087222647,0.0233463432576578,0.0261709398211618,0.0288404401368768,0.0312900743780456,0.0337905172856629,0.0363975014663963,0.0387747108903135,0.0412781993701925,0.0437188996824017,0.0463911114796235,0.0489190255654088,0.0513826587429618,0.0686090421647785,0.0848987532424064,0.1008220959251725,0.1156147157471953,0.1306149126598425,0.1484034679636287,0.1630962733577958,0.1769903026303184,0.1896769092696269,0.2013066426364572,0.2167370416648714,0.2304870923766039,0.2442934043825784,0.2557063642229829,0.2678319985919211,0.2786447661346595,0.2895183061511345,0.2992272998234149,0.3086502364723095,0.3177598974488102,0.3256120549085821,0.3321683634705972,0.3399510180901787,0.3463062976756439,0.3528155858019749,0.3583992909809328,0.3628206890518975,0.3683515031384208,0.3739389233954451,0.3781914473164177,0.3774434069993954,0.3758292471877704,0.3740187389212459,0.3717081054560672,0.3705913786961168,0.3673818954838118,0.3647712170115815,0.3649602679450975,0.3652251235486243,0.3660046519949901,0.3676694128023721,0.3686774666296986,0.3703579230381448,0.3717150372052245,0.373208752904725,0.3744787978915899,0.3754636151922026,0.3787792174796748,0.3824319547543302,0.3835375833300067,0.387648194099807,0.3900553079525318,0.3925935352506999,0.394195981833577,0.3972145378231422,0.3976699495556089,0.3977114581722591,0.4055702378532222,0.4057692307692307,0.401378782075833,0.0,1.7714054677622562,69.05261294608519,213.04728173493615,307.46179663028687,CHI_public_baseline,38 +100000,95553,50326,475.4952748736304,7219,74.19965882808494,5675,58.7841302732515,2216,22.804098249139223,77.19945181010942,79.67073474189495,63.224607941291474,65.05393036193804,76.92205240929987,79.3924347268265,63.12154355490718,64.95302458453506,0.277399400809557,278.3000150684529,0.1030643863842968,100.90577740298556,175.9362,123.13175948780084,184124.20332171675,128862.26438500188,347.43111,219.38328502210643,362995.688256779,228991.5599323669,418.09535,201.51168750600104,433624.8155473925,207829.48380682024,4033.83635,1840.9101242742968,4182679.015834145,1887936.7958357288,1326.89793,587.9183939522667,1374170.878988624,600877.0566414853,2156.135,912.3347828105616,2221415.0262158173,925500.0855473592,0.42729,100000,0,799710,8369.281969168944,0,0.0,0,0.0,28572,298.39984092597825,0,0.0,37942,393.2267956003475,1539273,0,55364,0,0,15910,0,0,81,0.8372316934057539,0,0.0,0,0.0,0,0.0,0.07219,0.1689484893163893,0.3069677240615043,0.02216,0.3384432403858861,0.6615567596141139,24.508016210714988,4.297103439064188,0.3323348017621145,0.2364757709251101,0.2137444933920705,0.2174449339207048,11.271022825105938,5.964278873889064,23.862882704760477,14160.171898356006,64.91553205654505,16.271079239744303,21.489167576832205,13.817283034807048,13.338002205161493,0.5670484581497798,0.7928464977645305,0.6951219512195121,0.5761750405186385,0.1088211046990931,0.7285622179239201,0.8962075848303394,0.8508946322067594,0.7222222222222222,0.1327800829875518,0.5063045586808923,0.7312722948870393,0.6384671005061461,0.5280172413793104,0.102880658436214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026152801289393,0.0055092226212942,0.0082866195466731,0.0107776150967951,0.0132752372032414,0.0155049032600053,0.0179823442363627,0.0204884528918863,0.0233217355710192,0.0257534920423451,0.0280546516521757,0.0305800335208168,0.0331095137072356,0.0355057663345092,0.0377715313229853,0.0402463640598312,0.0429570015141772,0.045147946828523,0.0475307548879699,0.0501002213220862,0.066894005167418,0.0825241700396367,0.0974720134545645,0.1129983983815223,0.1271205250975045,0.1452970611933336,0.1610250627632866,0.1753212105690015,0.1882331515742337,0.2007528095929451,0.2152646528355275,0.2295903970131758,0.2418714267009994,0.2532392728230221,0.2651831247102457,0.277267878572381,0.288500291075187,0.2986136199421965,0.3078525805239608,0.3165709032406343,0.3246022259101512,0.3327778429761765,0.3402065527065527,0.3475559187990529,0.3520802359306831,0.3571896758555015,0.3618278015860049,0.366027761106358,0.370846981750117,0.3752434193967173,0.3739433857639405,0.3720284550037986,0.3713619337055622,0.3692316616875018,0.3676659401033113,0.364922271817762,0.3625672363856265,0.3636183493510354,0.3653644354991313,0.3659839234656261,0.3665112239696415,0.367337593820303,0.3681094453724652,0.3689716591887809,0.3709861411130797,0.3721285563751317,0.3744275138980902,0.378193126646146,0.3821077648895037,0.3831070287539936,0.3856438806242585,0.3877692103164052,0.3890357502517623,0.3896401558560623,0.3948655256723716,0.3952324195470799,0.3986868224156359,0.404012036108325,0.4063526834611172,0.4162495186753946,0.0,2.366755834539148,68.4775034956896,214.8934929305478,308.3914526190237,CHI_public_baseline,39 +100000,95669,50809,479.34022515130295,7382,75.79257648768149,5820,60.113516395070505,2223,22.74508984101433,77.33990302576841,79.73104862852257,63.32261558699434,65.0892353828374,77.06006109690261,79.45420835772552,63.21949020643499,64.99052540522426,0.2798419288657925,276.8402707970523,0.1031253805593479,98.70997761314015,176.59532,123.61320717443948,184589.9089569244,129209.26023522716,350.49193,221.16442258366465,365601.3128599651,230429.32991029925,425.49297,204.76939363353208,440548.1922043713,210729.2748390143,4091.07148,1871.0936715279188,4225094.576090478,1905249.804676249,1353.52399,601.0021200647183,1395072.81355507,608497.046782047,2170.82338,908.4433098389626,2222243.84074256,908355.398056041,0.43404,100000,0,802706,8390.450407132927,0,0.0,0,0.0,28747,299.7104600236231,0,0.0,38828,401.7288776928786,1542391,0,55444,0,0,15768,0,0,81,0.8362165382725857,0,0.0,0,0.0,0,0.0,0.07382,0.1700764906460234,0.3011379030073151,0.02223,0.34328165374677,0.65671834625323,24.67263270454648,4.359264983628316,0.324914089347079,0.2469072164948453,0.2123711340206185,0.215807560137457,11.412269133199754,5.974333293830788,23.737490337017395,14451.297629537816,66.45824753692912,17.335801504163403,21.570746227237844,14.096645512307544,13.455054293220323,0.5678694158075601,0.7940153096729298,0.6911686938127974,0.5828025477707006,0.1011326860841424,0.7406483790523691,0.925,0.858252427184466,0.7115384615384616,0.1673151750972762,0.502134724857685,0.7197382769901853,0.6286337209302325,0.5402542372881356,0.0837589376915219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028360174212498,0.0056560741979625,0.0087061521445748,0.0111729573802462,0.0139003284422887,0.016429487571001,0.0192542911893015,0.0216481587327508,0.0239716225057245,0.0266842719400601,0.0289917473986365,0.0313186474778788,0.0337179170779861,0.0362362877890508,0.038527432605375,0.0409842845326716,0.0431291699473706,0.0457126249468035,0.048060418812221,0.050662469117785,0.0676305288009527,0.0846027408733523,0.100561296752872,0.1159385223913569,0.1300623463757872,0.1487045480994043,0.1634201201010036,0.1778130222359415,0.1907096470990344,0.2032553451566554,0.2193477511631914,0.2344558183824961,0.2477677843152182,0.2598630975812448,0.2711330786759283,0.2834007200221545,0.294102549796351,0.3041947026126876,0.3138600830515782,0.3223330775134305,0.3299739658663581,0.337645173740658,0.3455556870635578,0.3521629718394248,0.3588778236580034,0.3638783785449301,0.3680020030045067,0.3724289787190714,0.3771403388248713,0.3822491774685852,0.3815695424078544,0.3807496210555326,0.380436930198425,0.3793588016283483,0.3787705003500514,0.3768591493146064,0.3743346007604562,0.3742909288215854,0.3743716874679432,0.3748481383548917,0.3748827436118719,0.3754431833937449,0.3763411510277784,0.3770918974773682,0.3782614998067259,0.3801256873527101,0.380734076387496,0.383370288248337,0.3868891874690616,0.3888645330995177,0.3907157557740681,0.395572666025024,0.3964249492900608,0.3971919594905631,0.3979591836734694,0.4028175740210124,0.4091261834549123,0.4149927521225927,0.423283413393614,0.427843137254902,0.0,2.730211321817479,70.46870320318155,220.6410121489237,311.72275234243307,CHI_public_baseline,40 +100000,95784,50513,476.4470057629666,7140,73.17506055291071,5594,57.81758957654723,2143,22.039171469138893,77.331780499572,79.6724521488166,63.32970022966426,65.06273480577244,77.05818046253746,79.39733289874451,63.228556100086735,64.96326119587891,0.2736000370345408,275.1192500720947,0.101144129577527,99.47360989352204,177.6214,124.29280325005874,185439.30092708595,129763.408554726,350.47232,222.3168111626761,365325.6076171386,231529.24409366504,420.61805,202.98902676114375,434566.46203958907,208564.65455289665,4005.43113,1842.680797553668,4141462.530276456,1883517.223705074,1299.19096,579.2601800610805,1343825.1691305437,592206.1305239709,2096.86856,883.3446386673501,2157700.137810073,896252.5794575884,0.4311,100000,0,807370,8429.05913304936,0,0.0,0,0.0,28810,300.1753946379353,0,0.0,38323,395.7028313705838,1535422,0,55300,0,0,15625,0,0,91,0.9396141317965422,0,0.0,2,0.0208803140399231,0,0.0,0.0714,0.1656228253305497,0.3001400560224089,0.02143,0.3252517223105458,0.6747482776894541,24.362424519732336,4.355325135994951,0.3196281730425456,0.2475867000357526,0.2168394708616374,0.2159456560600643,11.2022981484075,5.818118085641289,23.073220920060063,14249.294274387148,64.0190999589498,16.589751201430147,20.494831661643268,13.53394956352279,13.400567532353596,0.5729352878083661,0.787725631768953,0.7041387024608501,0.5968543046357616,0.110469909315746,0.7414790996784566,0.9358490566037736,0.8628691983122363,0.7517241379310344,0.1149425287356321,0.5080465461747957,0.695906432748538,0.6468797564687976,0.5479302832244008,0.1092436974789916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026234489744239,0.0050991443980373,0.0076714664068921,0.0101182494209435,0.0128451563691838,0.0156009735333353,0.0180359291205318,0.0204683735554738,0.0230929647727505,0.02547985872959,0.0280169762578422,0.0304125510811754,0.0327801427190655,0.0351771734651833,0.0373298380687975,0.0397076458669313,0.0420787721242374,0.0448888151344175,0.047356770968647,0.0500442546988077,0.0676636021163137,0.0840367778579722,0.0995219925363746,0.1145589239741501,0.1290947980654746,0.1468891330994547,0.161338873108068,0.1749218434316582,0.1878641709175506,0.2000599976429497,0.2152829355981098,0.2296651235235581,0.2432661671795652,0.2553698761975589,0.2667143564628845,0.2777999379515135,0.2887209990067962,0.2995972369101995,0.3099086835687142,0.318675278274014,0.3269911402068056,0.3353095254800159,0.3422849770981525,0.3487351636494425,0.3541965435939816,0.359958544620054,0.3653306261593222,0.3707227486640564,0.3750778654485049,0.3790577439274333,0.3776782945213792,0.3763788853235646,0.3739421123899797,0.3728091775543903,0.3716336987607245,0.3695161116830831,0.366555396598315,0.3670012030124751,0.3668658356512482,0.3689614392201835,0.3706589869557852,0.3716263113014853,0.3726667509375131,0.3731202373727156,0.3740890492216062,0.374721209099735,0.3767779307180546,0.3791283461331816,0.3807326523423741,0.3848640881331577,0.388086394277067,0.3900739629113517,0.3934813113917591,0.3972149561470995,0.3974784339747843,0.4012875536480687,0.4055392232709268,0.4144162436548223,0.4094334356684342,0.4132592298531163,0.0,2.2746504611916034,68.69847148993617,211.41046039300227,299.93715311133474,CHI_public_baseline,41 +100000,95671,50551,476.89477480114135,7214,74.00361656092232,5667,58.48167156191531,2191,22.472849661862004,77.34192318165195,79.71794831684872,63.32298576779221,65.07538969261539,77.07484570576699,79.45387385255361,63.22348621538662,64.98029289973336,0.2670774758849603,264.0744642951063,0.0994995524055823,95.09679288203188,177.14136,123.90205698005995,185156.79777571053,129508.47903759754,347.20913,218.9160249854187,362178.1522091334,228079.9353883817,409.50294,196.72314005573705,423017.5288227363,201831.00414647505,4034.84158,1834.8314694502908,4166820.415799981,1867262.440499516,1342.92452,591.9093867045931,1383262.3888116565,598264.7058195197,2151.5548,899.4497179061775,2208567.0683906307,904222.0866506456,0.43316,100000,0,805188,8416.218080714114,0,0.0,0,0.0,28541,297.55098201126776,0,0.0,37404,386.0208422615003,1542456,0,55396,0,0,15766,0,0,75,0.7839366161114653,0,0.0,0,0.0,0,0.0,0.07214,0.1665435404931203,0.3037149986138064,0.02191,0.3341260404280618,0.6658739595719382,24.68635684289794,4.338298441306062,0.3216869595906123,0.2399858831833421,0.2218104817363684,0.216516675489677,11.005019432643229,5.596240980736023,23.28879259152845,14389.214288085672,64.4701286675682,16.32742611577528,20.86101258420822,13.46014542887842,13.821544538706291,0.5632609846479619,0.7794117647058824,0.7136588041689522,0.5647921760391198,0.1097852028639618,0.7382992748846408,0.9078156312625252,0.8574257425742574,0.7310606060606061,0.1646586345381526,0.4992771084337349,0.7049941927990708,0.6585735963581184,0.5192107995846313,0.0962301587301587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028046940655913,0.0057064088140197,0.0085516905566207,0.0110711601356978,0.0134847914738694,0.0162896296145466,0.018993536284485,0.0219435736677116,0.0242443453719988,0.0266216147033225,0.0290272636856729,0.0315975395611053,0.033911379906196,0.0361967172575809,0.0388847598992526,0.0416123761659531,0.0437966789935465,0.0460976343952085,0.0484005158284454,0.0504678935411933,0.0676381489606184,0.0849450768086955,0.1005920265362248,0.1159063404367271,0.1301737056501825,0.1480266291290496,0.163160633315989,0.1778097368701395,0.1906839004885767,0.2031800223310143,0.2182933799186913,0.2318382201618231,0.2453867508573295,0.2568977027722143,0.2679605451463044,0.2795598843200478,0.2911628426282588,0.3021606224033687,0.3119461747052883,0.3201709166723944,0.3285148835702051,0.3360330520476118,0.3428821808794098,0.3496808867987907,0.3554050603669434,0.3615431101463932,0.3666345057451101,0.3721350718141998,0.3775684931506849,0.3811305785123967,0.3796270037407662,0.3783298578984436,0.3781587427214653,0.3758450469752023,0.3753642581028843,0.372469387442338,0.3699179262921063,0.3718756684711961,0.3723256650507888,0.3736303022719554,0.3743171963283464,0.3762050224144087,0.3780018909549322,0.3775084175084175,0.3786765591501457,0.3786455887723692,0.3806674075973896,0.3859025571666719,0.3910299119823263,0.3949332909783989,0.3981544615664348,0.4016998671978751,0.4028594926298475,0.4060601458080194,0.4139578454332552,0.4118821181167078,0.4168554599003172,0.4149170165966807,0.4098853085745494,0.4092100336952452,0.0,2.8973103823057174,66.34985279719808,214.64063998752815,309.3351312148108,CHI_public_baseline,42 +100000,95726,50922,480.9142761632159,7130,72.97912792762676,5657,58.3644986732967,2212,22.61663497900257,77.32392886815877,79.68636633814599,63.31606620966248,65.06442536799092,77.04226842745729,79.4065379225421,63.21223922771176,64.96413071241966,0.2816604407014864,279.8284156038875,0.1038269819507178,100.29465557126116,177.98308,124.59499856743923,185929.71606460103,130157.94932143748,351.63824,222.97203390074893,366625.0026116207,232214.07339776965,419.90081,202.1201274284797,433631.7719323904,207354.65161426243,4048.39606,1848.6743841256932,4179664.845496522,1881729.409069316,1358.30668,599.785958825014,1403241.7629484152,610854.4061435908,2171.45248,912.174506691001,2222796.732340221,916525.0856542236,0.43373,100000,0,809014,8451.350730209138,0,0.0,0,0.0,28934,301.50638280091096,0,0.0,38355,395.6605310991789,1531365,0,55142,0,0,15915,0,0,57,0.5954495121492593,0,0.0,0,0.0,0,0.0,0.0713,0.1643879833075876,0.3102384291725105,0.02212,0.3359667916443492,0.6640332083556508,24.540284549279757,4.299683424420208,0.3201343468269401,0.2386423899593424,0.2202580873254375,0.22096517588828,11.323364349844868,5.978679201882136,23.53286940612555,14310.565532327511,64.48408510912111,16.404245023693573,20.63152232324685,13.786974588022304,13.661343174158384,0.5707972423546049,0.8044444444444444,0.7101049144119271,0.5712,0.1147672552166934,0.7255663430420712,0.923809523809524,0.8601694915254238,0.7364341085271318,0.1379310344827586,0.5126459143968871,0.7284848484848485,0.6572068707991038,0.5282258064516129,0.1077405857740585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025626221803559,0.0052925610114672,0.0078450078145614,0.0104249222703164,0.0130101314236888,0.015234215885947,0.0175968028057011,0.0202619249339063,0.0230551380752282,0.0258216443124808,0.0283789741328931,0.0309143924926589,0.0334025578813175,0.0359283904328299,0.0380364679538113,0.0403646775477295,0.0429333471438189,0.0453257496341349,0.0477512608537409,0.0500192742464811,0.0681137177519549,0.0842086541680616,0.1005012478765126,0.1151524710830704,0.1291309024189636,0.1465790809850216,0.1611208963775651,0.1757602862254025,0.1886016451233842,0.2004910685566015,0.2164527798113776,0.2308832118367258,0.2442071612643665,0.2558480331579926,0.2671499603977822,0.2790264869116327,0.2898238485410015,0.3002915451895043,0.3094910903907962,0.3181359392563026,0.3268535262206148,0.3345483954148011,0.3424820011623631,0.3486244040685456,0.3543264898565549,0.3607276050285262,0.3651168042556394,0.3706685378923194,0.3759348706762231,0.3804028479923771,0.3799049393718436,0.3784555537162721,0.3772828067400178,0.3771484884496101,0.3759123000387262,0.3745802989651207,0.3714367205945269,0.3713342205135788,0.3715591618734593,0.3710799835417449,0.3719537381247418,0.3722064685002677,0.3732764419034807,0.3750056131842471,0.3764868001160429,0.3771570941515866,0.3793103448275862,0.3834612700628053,0.3874942300181088,0.3913113177300417,0.3949811563562827,0.3990590248075278,0.401737035628249,0.4035706076162746,0.4071428571428571,0.4084676449362521,0.4065327403772427,0.4044426655993596,0.4076072295656865,0.4127594158339738,0.0,2.855916173109028,67.71062079292257,208.1383426736911,312.8255865750026,CHI_public_baseline,43 +100000,95790,50601,476.2918885061071,7136,73.0660820544942,5646,58.30462469986429,2186,22.46581062741413,77.4066300966336,79.7433720466964,63.35719594835807,65.08656564942653,77.1341837665405,79.47118843100358,63.25637194872986,64.98845355616058,0.2724463300931035,272.1836156928106,0.1008239996282043,98.1120932659536,178.98232,125.24651610792408,186848.6480843512,130751.13906245337,350.56079,221.3539671866745,365307.0049065664,230432.58585204964,417.34192,200.8547772368823,431069.0468733689,206233.49295012685,3967.8407,1812.0914836859572,4100906.3576573753,1851267.6622033364,1313.01739,580.0790476415561,1353931.903121411,589535.6119312075,2135.99052,891.3848971089037,2196639.461321641,901555.0534028544,0.43208,100000,0,813556,8493.120367470508,0,0.0,0,0.0,28915,301.1796638480008,0,0.0,38098,393.1099279674288,1531536,0,55122,0,0,15894,0,0,68,0.7098862094164318,0,0.0,1,0.0104395030796534,0,0.0,0.07136,0.1651546009998148,0.3063340807174888,0.02186,0.3424347362812999,0.6575652637187,24.42807983842135,4.265879212319453,0.3248317392844492,0.2525681898689337,0.2128940843074743,0.2097059865391427,11.2259681866029,5.824530464466961,23.248557866359548,14271.820829056403,64.27223496226182,17.210171074348008,20.78049746082094,13.175808793644656,13.105757633448205,0.5683669854764435,0.773492286115007,0.7050163576881134,0.566722972972973,0.1181364392678868,0.7295719844357976,0.9120458891013384,0.8483033932135728,0.73046875,0.1374045801526717,0.5077972709551657,0.6932447397563677,0.6511627906976745,0.521551724137931,0.1127659574468085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002837051897785,0.0056985256839244,0.0083721496635918,0.0110035255986913,0.0137407064614883,0.0162012993625384,0.0188107909708203,0.0215383044965038,0.0242139907600474,0.0264439805149617,0.0291266115973517,0.0314914575958134,0.0342970492409837,0.0368952028000823,0.0392429724464236,0.0417471216892973,0.0441628303936274,0.0463370893673484,0.0489413866899374,0.0509707979803237,0.0684578464106844,0.0850414121977746,0.100819637766225,0.1156113709211286,0.1297820108941873,0.1479532534499884,0.1631212439187255,0.1767195092128906,0.1898400571910244,0.2021231013132806,0.2167335564187262,0.2305171984991187,0.2426182118521577,0.2544966091144383,0.265713061533898,0.2769011154390934,0.2881427774679308,0.2988194288284236,0.3090717299578059,0.317694201156334,0.3257651113835619,0.3339528468398967,0.3407606380461021,0.3475812153239626,0.3528804083616917,0.3585689797629764,0.3639472827040164,0.3689986631867082,0.3741023048404241,0.3777519359357243,0.3762600704424922,0.3747484770804046,0.3744760721997205,0.3732067113511009,0.3718833680452246,0.3685937236505235,0.3661459075296389,0.3666409697049223,0.3674035972203297,0.3685315307302321,0.3694086393654238,0.3701776174423877,0.3712882666388047,0.3723214285714286,0.3725744165407402,0.3741229665817785,0.374009373668513,0.3802398021475753,0.3835122940785562,0.3860044254781097,0.3896875425150787,0.3911068863540346,0.3955933900851276,0.4006347287290313,0.4010237319683574,0.4020135799578553,0.4047546012269938,0.4053075995174909,0.4044260027662517,0.416182733255904,0.0,2.3998316992811923,68.01558862211039,214.18252852515195,302.0978710360485,CHI_public_baseline,44 +100000,95681,50670,476.7090644955634,7316,75.08282731158747,5828,60.25229669422352,2290,23.43202934751936,77.29491858535671,79.69713434220918,63.29396199958445,65.07393123270374,77.00907304219832,79.41497500656166,63.186886712038216,64.9720699906713,0.2858455431583877,282.1593356475205,0.1070752875462375,101.86124203244162,178.07086,124.537105190902,186108.9035440683,130158.65761321686,351.32541,221.90466927109216,366557.8014443829,231295.06304396075,425.15113,204.7903301469441,440698.5817455922,211228.3167479886,4137.94424,1904.4682874219016,4276177.339283661,1942030.0202561857,1394.87573,623.3349143107616,1441860.1916785988,635535.5361584787,2235.97804,943.528592241177,2289528.537536188,944787.770909194,0.43285,100000,0,809413,8459.49561563947,0,0.0,0,0.0,28878,301.1465181174946,0,0.0,38752,401.41720926829777,1533334,0,55231,0,0,15799,0,0,78,0.8047574753608344,0,0.0,0,0.0,0,0.0,0.07316,0.169019290747372,0.3130125751776927,0.0229,0.3326830537130966,0.6673169462869034,24.607818559217566,4.291447343400781,0.3152024708304736,0.2460535346602608,0.2155113246396705,0.223232669869595,11.4460052207012,6.142207033723571,24.598480531376065,14368.207915343555,66.609517422541,17.481356848283017,20.76187322175387,14.523026850685486,13.84326050181864,0.5778997940974605,0.798465829846583,0.7082199237887861,0.5780169100691775,0.1353503184713375,0.7406947890818859,0.9115523465703972,0.8650963597430407,0.7413249211356467,0.1824817518248175,0.5156546489563567,0.7272727272727273,0.6547445255474452,0.5254065040650406,0.1221995926680244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027167577321155,0.0054085867657057,0.0083786116894327,0.0112348126683951,0.01371173793988,0.0162363805000356,0.018898730560431,0.0215054861976665,0.0244097065924622,0.0270541595386144,0.0294404267323177,0.0321652746530239,0.0346683405709111,0.0371641468014717,0.0395970106115033,0.0420195877674702,0.0447475051037856,0.0471073178835451,0.0493024417140895,0.0518163339761296,0.0687893697702842,0.0853226954810068,0.100520549095336,0.1152466037398322,0.1301847572620894,0.1478095238095238,0.1630148619957537,0.1776488126930039,0.1911026095877236,0.2040006009486403,0.2189372063957247,0.2328727099587711,0.2466234585354183,0.2579259226867238,0.2690302283627404,0.2800691091126567,0.2917117700231003,0.3016378679574492,0.3109500494166562,0.3200779950679589,0.3274326030793471,0.3348482008995502,0.3421573390527426,0.3485688901695241,0.354706054117189,0.3596792527429079,0.3651962321421852,0.3698719174154081,0.3750178184975443,0.3792028736694752,0.3782068556645467,0.3765709959391561,0.3750440805157067,0.3749258224660231,0.3740601223888152,0.3726670865270887,0.3702161474888747,0.3709233532736771,0.3724699828473413,0.3741138888390373,0.375285264329228,0.375577229299363,0.3763497553568415,0.3770100445925859,0.3764665873150825,0.376822272511973,0.3768821073844825,0.3804078521059653,0.383325669413887,0.3871948779511804,0.3895260467044355,0.3926239160689433,0.3951086612177659,0.3984057637771135,0.4024990533888679,0.4006452383797347,0.4,0.4022778116737848,0.4086551629690496,0.4089007227082541,0.0,2.5676481493026717,70.93398437634492,218.0767127889435,316.2023209111987,CHI_public_baseline,45 +100000,95708,50722,479.2598319889664,7229,74.03769799807749,5693,58.78296485142308,2321,23.72842395620011,77.3593554540744,79.73002360953221,63.33143217950936,65.083548209977,77.0676949482095,79.44324229132454,63.22254232211669,64.9801534532145,0.2916605058648969,286.78131820767305,0.1088898573926755,103.39475676249776,178.23652,124.69182168286407,186229.4896978309,130283.5935165964,348.98354,220.55393409617903,363918.84690934926,229735.2778601276,416.49006,200.4729464281848,431448.18614953815,206450.75072113491,4061.44604,1857.4964808484751,4196511.79629707,1894241.8759601444,1325.43424,589.642208674189,1367452.4804614035,598777.3032156161,2266.21964,952.983845094157,2319961.6959919757,954597.58932076,0.43193,100000,0,810166,8464.97680444686,0,0.0,0,0.0,28801,300.173444226188,0,0.0,37964,392.8929661052368,1535650,0,55180,0,0,16020,0,0,61,0.637355289004054,0,0.0,0,0.0,0,0.0,0.07229,0.1673650823050031,0.3210679208742564,0.02321,0.3382605252738551,0.6617394747261449,24.38079632966467,4.282996489367105,0.3293518355875637,0.2320393465659582,0.2181626558932022,0.2204461619532759,10.900260788196206,5.661680835553059,24.86769646062771,14227.16198709288,65.13434714046447,16.043734022338757,21.530711495760023,13.976571864123509,13.58332975824217,0.5622694537150887,0.7925813777441333,0.7024,0.5649402390438247,0.1030595813204508,0.7187104930467763,0.918032786885246,0.8385214007782101,0.737012987012987,0.1139705882352941,0.5020676234492825,0.7190876350540216,0.6509919177075679,0.5089757127771911,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023700522626909,0.0050077549241233,0.0077627933879265,0.0103593264406573,0.0130868490894115,0.0155863459130381,0.0180131505173556,0.0204764918441091,0.0230418515262415,0.0254304961199041,0.0279447053756383,0.0305778672528194,0.0332633701668827,0.0355251499103628,0.0379435954059046,0.0403258318947248,0.0428426480028161,0.0450269165741787,0.0473437987316768,0.0496567672579922,0.0669061517736865,0.0834938245760937,0.0990411648692879,0.1135835445300915,0.1273476963312136,0.1453235583484084,0.1600976334500689,0.1745408081776074,0.1883650588373609,0.200528044304205,0.2151239856454689,0.2290536663527017,0.2424456752374838,0.2548901562004006,0.2667518674393495,0.2783662965469046,0.2893213862757804,0.2994991840639244,0.3096100357609127,0.3178785933703177,0.3266612641815235,0.3343044683913089,0.3412631753279784,0.3469343747753791,0.3526975490077003,0.3583903370925002,0.363107987924793,0.3678153603299683,0.3732747560359239,0.3772822686046972,0.3765586706525545,0.3753218322754746,0.3743806306306306,0.3731046124103703,0.3733796605639449,0.3703403317622574,0.3678866289184829,0.367740665397992,0.3687852383393131,0.3697336475292773,0.3702396816757071,0.3706358793591698,0.3719902340461357,0.3718621248621023,0.3728305535412134,0.374283095456331,0.3741225682606079,0.3780750697438498,0.3807787610619469,0.384612311748492,0.3901823024291684,0.3934162556294231,0.3966783775151709,0.4006741745192676,0.4042190899631066,0.4104273300797524,0.4116743471582181,0.4099756690997567,0.4094661529994496,0.4008438818565401,0.0,2.740797033307972,69.60690866120389,217.2828708356953,301.3207032647812,CHI_public_baseline,46 +100000,95891,50889,477.3753532656871,7231,74.02154529622175,5697,58.85849558352712,2201,22.609003973261306,77.4394230829848,79.72146370160972,63.39129033748679,65.0783053910811,77.16451559093797,79.44537748415789,63.29060764225029,64.97943329269992,0.2749074920468359,276.0862174518337,0.1006826952364932,98.87209838117884,178.35026,124.81693527167822,185992.2411905184,130165.02040775468,347.59194,219.9444331926434,361903.9638756505,228788.9963036393,425.33973,205.28189653898656,440259.6698334567,211450.9003296531,4007.82023,1840.8113914097985,4141933.3305523978,1882302.869990193,1356.10693,603.3251970809918,1398575.6536066993,613745.6381702002,2138.12984,891.9145218483294,2197536.056564224,902160.6774687712,0.43428,100000,0,810683,8454.192781387199,0,0.0,0,0.0,28639,298.0467405700222,0,0.0,38831,401.6748182832591,1536636,0,55294,0,0,15775,0,0,59,0.6152819346966868,0,0.0,1,0.0104285073677404,0,0.0,0.07231,0.1665054803352675,0.3043839026414051,0.02201,0.3357914142744271,0.6642085857255728,24.81493633266016,4.314535261963519,0.327365279971915,0.2473231525364226,0.2055467790064946,0.2197647884851676,11.41736651326055,6.122077094054452,23.345386423648115,14370.48277965508,64.85979082327425,17.05097706105131,21.084502461890533,13.96115221222173,12.763159088110672,0.5781990521327014,0.7778566359119943,0.696514745308311,0.5958466453674122,0.1306575576430401,0.7552533992583437,0.9219600725952812,0.8780487804878049,0.7578616352201258,0.159533073929961,0.5079676391272371,0.6853146853146853,0.6314639475600874,0.5406852248394004,0.1225382932166301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024701356549908,0.0051076249543962,0.0081153186784203,0.010590015128593,0.0133046032504294,0.0158523432571579,0.0184568372803666,0.0210832313341493,0.0238956315638919,0.0267088115550645,0.0291501875038422,0.0316632978668828,0.034013255921492,0.0368113316313925,0.0396296830862492,0.0422117817130466,0.0450341402855369,0.047735985908196,0.0498951433732688,0.0523167509310696,0.0692031062698702,0.0851775228303345,0.1007015706806282,0.1157096811448129,0.1294672463340947,0.1479143131644794,0.1631165859910391,0.1765155942829817,0.1901218511135038,0.2029751712328767,0.2184536991249382,0.233192868719611,0.2467735627688697,0.2575971152270119,0.2686188051856657,0.2798592126088833,0.2910485192326983,0.3018649589933715,0.3111390569415176,0.3203407271895723,0.3281847483277688,0.3352839488868643,0.3429584959205392,0.3490909526433037,0.3550287234171757,0.3614981827142241,0.3670716600558065,0.3724440488301119,0.3769458714527879,0.3808055248036269,0.3791975665890523,0.3781513760206746,0.377594820913377,0.3757603779855221,0.374632407544928,0.3718021342070211,0.369581737010417,0.3695951709205433,0.369910023731881,0.3699746727071665,0.370520837233684,0.3715527459502173,0.3727798257372654,0.3743301178992497,0.375446846284878,0.3768346411533147,0.3781364553436958,0.3827346247884145,0.3868666736599181,0.3899386017033076,0.3931526780030917,0.3953203935123637,0.3974634023220595,0.3967403779937256,0.402284626368396,0.4018994950709305,0.4066604127579737,0.4083747927031509,0.4034202410989627,0.4000765696784073,0.0,2.079371165883295,71.70293537762825,209.09637143778056,302.74616404504155,CHI_public_baseline,47 +100000,95723,50577,477.9937945948205,7134,73.20079813628908,5583,57.60371070693564,2203,22.48153526320738,77.34647984393533,79.69943101755456,63.33814763576003,65.07552983268378,77.06984956165711,79.42668452394638,63.23360862133697,64.97613854401628,0.2766302822782194,272.7464936081816,0.1045390144230609,99.3912886675048,177.7083,124.2937069456841,185648.02607523795,129846.82212810298,346.05705,218.90739710636475,360789.0893515665,227958.54779558175,413.85054,199.9342565165836,427965.8180374623,205544.93219697152,3974.16867,1824.5874884835928,4101873.624938625,1856282.6856487915,1304.64866,578.6275278957195,1346973.29795347,588512.8108142436,2156.96822,910.6533810190156,2203376.116502826,908492.6247890722,0.43208,100000,0,807765,8438.546639783543,0,0.0,0,0.0,28531,297.2744272536381,0,0.0,37771,390.2719304660322,1539570,0,55385,0,0,15681,0,0,55,0.57457455366004,0,0.0,0,0.0,0,0.0,0.07134,0.1651083132753193,0.308802915615363,0.02203,0.3353796877085279,0.664620312291472,24.15671873457197,4.381568997835935,0.3186458893068243,0.2423428264373992,0.2176249328318108,0.2213863514239656,11.33605081468064,5.812344689006299,23.598699422462847,14215.18924504896,63.90605833729084,16.417366741107777,20.33658844624592,13.862869110032618,13.289234039904532,0.5668995163890381,0.7760532150776053,0.7088251826869028,0.5833333333333334,0.1094650205761317,0.7432950191570882,0.9094488188976378,0.87279843444227,0.72,0.1619433198380566,0.4981329350261389,0.6958579881656805,0.6427444794952681,0.5395299145299145,0.0960743801652892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027749645533724,0.0050887489989761,0.0077023776905044,0.0100566831230572,0.0127524559155531,0.0153730249226258,0.0177064220183486,0.0202696496187958,0.0224979812124991,0.0249506004730068,0.0272863322331331,0.0298797011003448,0.032725366014147,0.035143013111681,0.0376488310187573,0.0400318352834167,0.0424928298526625,0.0445099239492441,0.046935911429908,0.0492177246307368,0.0660896438676536,0.0818941154305093,0.0975658377924666,0.1129642872165902,0.1275832981864192,0.1457286963509669,0.1605805342782575,0.1746197324023119,0.1873385012919896,0.2001715173929356,0.2152840590946289,0.229104243512499,0.2427602400208713,0.2545742704120668,0.2664123228480644,0.2777814686863318,0.2888740170654174,0.2993013601539033,0.3088544090439599,0.3173526446053717,0.3265981576632875,0.3342146826557473,0.341710982932809,0.3475918504475535,0.3534360146363404,0.3594660882211568,0.3655409043665552,0.3700995069247136,0.3736146798515404,0.3778926767342837,0.3764980565752537,0.3755033371945501,0.37392175963181,0.3722705999971021,0.3714745452107451,0.3694543443529556,0.3673048554161445,0.3678863793273498,0.3681678082191781,0.3691988406626829,0.3688875535191167,0.3695208667577792,0.37014598847238,0.3705125614602276,0.3722418038723383,0.3741473396998636,0.3759605459341668,0.3807584225316535,0.3844364559103405,0.389065606361829,0.3919549697968149,0.394553819815964,0.3961059485428914,0.3966682020574236,0.4017475543736347,0.404599353215954,0.4125884887657741,0.4187423438138015,0.4200618151166058,0.4269397400551398,0.0,2.78444052968961,68.68324111435162,209.858962630441,298.1352985620813,CHI_public_baseline,48 +100000,95728,50964,480.2565602540532,7306,74.92060839043958,5731,59.15719538692964,2260,23.2220457964232,77.41222784566315,79.76912061806777,63.350809200748486,65.0902523329878,77.13195452599807,79.48732348492956,63.24824778356693,64.98981998180531,0.2802733196650848,281.79713313821253,0.1025614171815618,100.43235118249072,177.22804,123.926796070056,185137.09677419355,129457.20799562926,349.5327,221.01840141477007,364388.90397793753,230139.4695541222,423.81432,204.20723026374927,437439.6937155273,209384.46201339064,4098.74388,1864.4302391654253,4236478.846314558,1902455.7383058495,1380.97313,610.4399603910016,1424730.3192378406,619811.9764319004,2214.98514,919.4097080289622,2278082.27477854,930476.5766478884,0.4333,100000,0,805582,8415.322580645161,0,0.0,0,0.0,28848,300.5912585659368,0,0.0,38621,398.2742771185024,1539751,0,55306,0,0,15775,0,0,60,0.6163296005348488,0,0.0,1,0.0104462644158448,0,0.0,0.07306,0.1686129702284791,0.3093347933205584,0.0226,0.3395784543325527,0.6604215456674473,24.69216258368712,4.360733208318227,0.3240272203803874,0.2369569010643866,0.2247426278136451,0.2142732507415808,11.201696922449887,5.793547467355094,24.01961486856992,14340.381140952408,65.20894970672379,16.31325275305015,21.11902441070902,13.793185611785132,13.983486931179502,0.5697086023381609,0.788659793814433,0.7097469036079699,0.5895765472312704,0.1180124223602484,0.7581365666879387,0.9275929549902152,0.876984126984127,0.7623762376237624,0.1646586345381526,0.4987992315081652,0.704840613931523,0.647450110864745,0.532972972972973,0.1068334937439846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027243265140773,0.0053210358283079,0.0079028527370855,0.0109472743521,0.0139387346353663,0.0166946607624573,0.0195181115844833,0.0222952358601267,0.0248336756905907,0.0274002047082906,0.0300384319754035,0.0323358825642868,0.0347482805769448,0.0371049298167924,0.0393961594419737,0.0415421985632332,0.0441414015904572,0.0463760297138588,0.0485205747198136,0.0508880670868274,0.068987117115236,0.0851731714973317,0.1005255483640864,0.1157046528018851,0.1304590970002004,0.149171913857876,0.1630246749801008,0.1769453554239959,0.189659962811772,0.201680582086669,0.2172703751617076,0.2314705532034693,0.2451207697917687,0.257118460376367,0.2682177203476651,0.2792098316289181,0.2903636810693609,0.3012311470054855,0.3101854480620507,0.3185039099227188,0.3263138385979544,0.3337430782378627,0.3401716484166913,0.346180118641021,0.3526846452866861,0.3597515895312731,0.3648498192326457,0.3702846975088968,0.3745055456449236,0.3795941479345264,0.3783235479840389,0.3768396485447556,0.3759612005341955,0.373656805757886,0.371726353502006,0.3700065587773218,0.3685198328207554,0.3696050222338478,0.3707914893617021,0.3711617149973314,0.3720161997723073,0.3737083472749818,0.375562015098601,0.3777738129753116,0.3790477563178629,0.3802369483140216,0.3808968303647641,0.38416643132825,0.388218793828892,0.3916881060755987,0.3965564237688533,0.4002231431303793,0.4023415371058098,0.4023110840808879,0.4081288630829743,0.4073854191403467,0.4085086916742909,0.4107287449392712,0.4177704194260486,0.4146153846153846,0.0,2.7446986961906115,68.89015938029813,215.96893802928892,307.4201697053353,CHI_public_baseline,49 +100000,95728,50659,478.7418519137557,7113,72.80001671402307,5592,57.82007354170149,2207,22.75196389771018,77.32373385663094,79.69457164648017,63.321321634088775,65.07541338591639,77.04852622505277,79.4165272210978,63.21911525883944,64.97406149741629,0.2752076315781693,278.04442538237595,0.1022063752493309,101.3518885001048,175.60488,122.98853669250084,183440.58164800267,128476.25064822932,347.54774,220.50193153022968,362460.83695470495,229748.9720896271,422.20905,203.9081985983343,436765.1888684607,209777.01588608284,3976.55783,1832.4096259082864,4115371.3960387767,1875904.871684546,1326.5173,594.4690908536628,1368739.1149924789,604409.6952399404,2155.11444,909.3302826432752,2222204.57964232,925755.9545103406,0.43109,100000,0,798204,8338.208256727396,0,0.0,0,0.0,28643,298.5751295336788,0,0.0,38424,397.1042955039278,1544821,0,55548,0,0,15754,0,0,62,0.6476683937823835,0,0.0,1,0.0104462644158448,0,0.0,0.07113,0.1650003479551833,0.3102769576831154,0.02207,0.3286825865307217,0.6713174134692782,24.31261504041276,4.312928376315337,0.3217095851216023,0.2491058655221745,0.2187052932761087,0.2104792560801144,11.295254798447388,5.921474876553266,23.80933313251999,14179.422474350304,64.20993256142009,16.97622580348364,20.34332340495661,13.286323645528029,13.604059707451812,0.5629470672389127,0.7925340990667624,0.6625903279599777,0.6142735768903993,0.1054783319705642,0.7375478927203065,0.9322344322344324,0.8362445414847162,0.7679180887372014,0.1412639405204461,0.4950322901142573,0.7024793388429752,0.6032811334824758,0.5633484162895928,0.0953878406708595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024924012158054,0.0049692212520409,0.0074096630125862,0.0100806861370241,0.0123311085788702,0.0147602603673257,0.0175723085709623,0.02036522591715,0.0227421465968586,0.025336938265536,0.0276689570300482,0.0300403619221723,0.0324266491090901,0.0350882616625962,0.0376544420474602,0.039790759942521,0.0423390020092383,0.0449131616624821,0.0471615720524017,0.0495644744519463,0.0665072719489658,0.0825946353256376,0.0977226715339186,0.1127485011044493,0.1264815049137458,0.1447209828508595,0.1608054061508757,0.1747943689547665,0.1875854408749145,0.2000300232680327,0.2149563906536018,0.228653028549174,0.2417786767584497,0.2537943402003236,0.2647230320699708,0.2767048348873779,0.2874077213016036,0.2974998595426709,0.3073346638846049,0.3165598535133898,0.3245255103220288,0.332339808775744,0.3392829684302662,0.3457154158725592,0.3515743677616148,0.3575595377576064,0.3626386017665852,0.3678884584013051,0.373681547503211,0.378697599450397,0.3766908065973486,0.3757034870889428,0.3742215192554829,0.3727201554208832,0.3711759794859562,0.3685560675883256,0.3663325509103597,0.3670505017272578,0.3678557991586004,0.3684474004147894,0.3692614020587572,0.3699412791620378,0.3709711396671582,0.371825155789521,0.3730913490623109,0.374937646039539,0.3765991088112692,0.3791262907069102,0.3835509508941243,0.3873276243316045,0.3920365414782689,0.3939002047634443,0.3968911256928075,0.4039632970930681,0.4019876952200663,0.4024171353356467,0.4072883172561629,0.4062627084180561,0.4105523495465787,0.4133281972265023,0.0,2.244763131500497,69.24008397002909,217.34487008097756,292.0260389901247,CHI_public_baseline,50 +100000,95764,50755,477.5698592372917,7208,73.71245979700096,5699,58.74859028444927,2232,22.83739192180778,77.38153749659537,79.72347206592997,63.350937847410606,65.0830119083725,77.09724328700676,79.44318723534808,63.24476076040188,64.98165918269869,0.2842942095886087,280.28483058189124,0.1061770870087244,101.35272567380582,177.59324,124.22770872591366,185448.8534313521,129722.76505358344,348.82705,220.7562323726194,363492.7112484859,229756.8422085746,419.19794,202.30464176876157,433301.50160812,207747.44286868055,4055.45561,1857.7894268711937,4182229.0839981614,1887351.9035036075,1346.28334,597.4892219903169,1384556.2424293056,602682.3100687431,2189.13324,929.8636289104508,2241812.956852262,931237.8787962762,0.43223,100000,0,807242,8429.493337788732,0,0.0,0,0.0,28770,299.6115450482436,0,0.0,38123,393.73877448728126,1538569,0,55346,0,0,15655,0,0,83,0.8458293304373251,0,0.0,0,0.0,0,0.0,0.07208,0.1667630659602526,0.3096559378468368,0.02232,0.3306036190727777,0.6693963809272223,24.7294260180552,4.2763227076350105,0.3091770486050184,0.251623091770486,0.221266888927882,0.2179329706966134,11.000672984716935,5.594829526076498,23.85732822227629,14298.826956844732,64.62132997577716,17.07408732262477,19.88173129562576,13.79837910189277,13.86713225563386,0.5651868748903316,0.7880055788005579,0.6969353007945517,0.5756843800322061,0.1173671689135606,0.7360570687418937,0.9284294234592444,0.8538135593220338,0.7533783783783784,0.1549815498154981,0.5018041857108492,0.7121374865735768,0.6395348837209303,0.5200845665961945,0.107070707070707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027243816970163,0.0054027206195389,0.0081571364798506,0.0107654652001259,0.013359904020172,0.0161751682156417,0.0186834916622497,0.0214739893242429,0.0244333626274806,0.0270120940512001,0.0295534195478859,0.0321388612311513,0.0348043348619136,0.0374786351187166,0.0400103145951521,0.0422599243661011,0.04471511062359,0.0470726043869469,0.0493761751903678,0.0515695767608933,0.0687197361830021,0.0855340912656493,0.1013262043298212,0.1166925890117281,0.1308847552300152,0.1481810302915002,0.1625119236883943,0.1769059011164274,0.1903003394027365,0.2026801029159519,0.2173585393161657,0.2315455843537709,0.2443197877937947,0.2569195452557936,0.2680822972824293,0.2784668541938913,0.2892171080520291,0.2993949345449638,0.3094246718326318,0.3185616814726623,0.3261744966442953,0.3340819764177428,0.3413915164143058,0.3472168951960878,0.3535715587524148,0.3593266706921835,0.3646380509280104,0.3692951867029806,0.3735899395179568,0.3783252401562335,0.376666576884747,0.3749208534067447,0.3740445096324711,0.3730645674760512,0.3718250305213947,0.3681224314543335,0.3665103902686265,0.3664440323612912,0.366890151321289,0.3671371723264155,0.3687377003092493,0.3692377728955129,0.3695816532258064,0.3705709214280899,0.3721687531659309,0.3735248711306486,0.3754858253315043,0.3783732720345121,0.3814393140768852,0.3845908946195479,0.3880133388150381,0.3927866403457291,0.3959020553159096,0.3990639146781247,0.4005884027711872,0.4039703420234393,0.4048352325223283,0.4063964147484212,0.4001677852348993,0.3936335403726708,0.0,2.926083675111937,67.16536336552598,211.45714019687856,312.2074481567807,CHI_public_baseline,51 +100000,95849,50744,477.5219355444501,7242,74.06441381756721,5726,59.07208212918236,2191,22.483280994063577,77.37299817448195,79.67559510294595,63.35320242165369,65.05753553898484,77.09898640979124,79.40095013300383,63.25126273571301,64.95802801499023,0.2740117646907123,274.6449699421163,0.1019396859406782,99.50752399460328,178.08208,124.6164814004534,185794.4057840979,130013.33493354486,351.76027,223.02217157526263,366324.05137247127,232010.60164974348,423.28996,204.0339475887941,436993.7401537836,209423.13768904743,4050.78611,1859.7064328764063,4182856.409560872,1896886.1050990685,1343.01656,600.5039751671405,1383673.5698859666,609008.6580102392,2146.42714,906.9889948584344,2204230.3832069198,915537.8779119408,0.43489,100000,0,809464,8445.20026291354,0,0.0,0,0.0,29059,302.48620225563127,0,0.0,38532,397.44806935909605,1532959,0,55203,0,0,15891,0,0,70,0.7198823148911309,0,0.0,1,0.0104330770274076,0,0.0,0.07242,0.1665248683575157,0.3025407346037006,0.02191,0.3452412338518323,0.6547587661481676,24.45743291477793,4.336029472553332,0.3269297939224589,0.2464198393293747,0.214984282221446,0.2116660845267202,11.136553868588797,5.726335997923982,23.485864013525266,14335.630454967357,65.45581320259518,17.11393615981042,21.288055800027976,13.522095322092412,13.531725920664393,0.5619979042961928,0.7732104890148831,0.6885683760683761,0.5825082508250825,0.1072298943948009,0.7455108359133127,0.9180633147113594,0.8626692456479691,0.7516778523489933,0.155893536121673,0.4899051325711506,0.6842105263157895,0.622140221402214,0.5273522975929978,0.0940082644628099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026534332590642,0.0054222789787872,0.0079019709280504,0.0106512600775744,0.0130634568855092,0.0155435667752443,0.0178977301682753,0.0205125065058322,0.0228366489899763,0.0256105921234383,0.0281648293102741,0.0305439845689779,0.0333388144372276,0.0360058053957241,0.0384421100378338,0.0409971498203147,0.0431836287076983,0.0459043572871871,0.0483696780893042,0.0509285751443583,0.0682884611374111,0.0854058685838488,0.1011586732876568,0.1159476602537175,0.129734170282681,0.1480878935136277,0.1632702802946007,0.1777026452326273,0.1905834382938752,0.2032750342935528,0.218200408997955,0.2330111781366889,0.2456899363001934,0.2574659099607431,0.2685230024213075,0.2810201187627404,0.291340252203995,0.3015880161615252,0.3104763201797691,0.3192274206112817,0.3274669073405535,0.334749531835206,0.3415156897572528,0.3487588843742883,0.355012694209254,0.3604472000690276,0.3657726948178026,0.3715067795531224,0.3758324911244137,0.3794342638956783,0.3779815276747792,0.3760940579730121,0.3753159998305252,0.3745291765660312,0.3729083546715893,0.3711637613552664,0.3695552135070375,0.3699531288545349,0.3712628138209573,0.3723507088643849,0.372264554633835,0.3731588533417802,0.3743336831059811,0.3750475465956637,0.3765746706414078,0.3769623950346842,0.3785313965458081,0.3811748366528834,0.3872901678657074,0.3910780964487169,0.3940839694656488,0.3969619715317612,0.3995328577741304,0.3991275065054339,0.3997537645610379,0.4030328160170596,0.4037065637065637,0.3988486842105263,0.3970794720584105,0.4035631293570875,0.0,2.599831510582044,71.11226387068086,214.07537411421472,304.3952156199263,CHI_public_baseline,52 +100000,95777,50778,478.5282479092057,7106,72.71056725518653,5586,57.59211501717531,2198,22.479300875993196,77.39816222968327,79.72710449947384,63.35848721039546,65.07946389901048,77.11051856333711,79.44396114010463,63.25082598433549,64.97712335839654,0.2876436663461561,283.1433593692054,0.1076612260599674,102.34054061393748,175.54152,122.8777490025204,183281.0382450901,128295.22286407006,346.79473,220.12999664288685,361328.3982584545,229080.35857780516,418.80845,201.56136284708757,433085.29187592014,207182.3679517003,3954.79177,1824.4942294560656,4080931.611973647,1856904.2593282685,1284.42043,574.5033617236157,1321074.809192186,580185.8473295107,2142.49036,908.6835140816742,2193058.16636562,909882.8358370622,0.43261,100000,0,797916,8330.956283867734,0,0.0,0,0.0,28627,298.11959029829706,0,0.0,38159,394.2491412343256,1547467,0,55620,0,0,15583,0,0,60,0.6160142831786337,0,0.0,1,0.0104409200538751,0,0.0,0.07106,0.164258801229745,0.309316070925978,0.02198,0.3382689460223448,0.6617310539776551,24.290065293300252,4.313905017059454,0.3197278911564626,0.2474042248478338,0.2128535624776226,0.2200143215180809,11.325146086107342,5.887157539435038,23.56556415129489,14252.350685134094,64.17734020183988,16.841319958448217,20.388213002678143,13.733314955571393,13.214492285142134,0.5746509129967776,0.7995658465991317,0.7038073908174692,0.597233523189585,0.095878889823381,0.7337164750957854,0.9158878504672896,0.8836734693877552,0.725925925925926,0.1107011070110701,0.5126865671641792,0.7260920897284534,0.6358024691358025,0.5610010427528676,0.0915032679738562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027040165279212,0.0051889087076374,0.007608651544049,0.0100637744739621,0.0122299598434402,0.0148899790339324,0.0176083965965251,0.0201914051340652,0.022834315838944,0.0251790464497646,0.0277228534254013,0.0302308876346844,0.0329791169941626,0.0354264658961084,0.0380848299894838,0.0407659495357412,0.0433172286077861,0.0456383773021403,0.047942714016982,0.0504472979868987,0.0676712128643132,0.0845413659659031,0.1008010400939439,0.1158478905215362,0.128865272901709,0.147513426650315,0.162552902616757,0.1767284955676872,0.1903078336288479,0.201921839474926,0.2161492556606415,0.2306876818727621,0.2432570472278368,0.2558208139852499,0.2669627544962842,0.278646611548295,0.2894604753884421,0.299437570303712,0.3092863060179984,0.3175792573242131,0.3258749349221959,0.3338558543804031,0.3416289592760181,0.3477369216377635,0.3538553133581201,0.3595691185170578,0.3646272635122451,0.3690639792334708,0.373425268287625,0.3771957630028792,0.3762860880001079,0.3761638477218886,0.3748765414679572,0.3731919694515158,0.371868406193349,0.3700157779445781,0.3672712871287129,0.3671303976479477,0.3679245283018867,0.3683193818415969,0.3684911464585834,0.3688269463333399,0.3703439297862512,0.3715774874731568,0.372012586169625,0.3736361263377708,0.3743100995732574,0.3787026857232605,0.3827583793996221,0.3864688427299703,0.3904328018223235,0.3900439083743321,0.3926937778056269,0.3979241395100358,0.3986958986958987,0.4037192561487702,0.4058706008913478,0.4068246832856559,0.4119452972369523,0.41415313225058,0.0,2.811286054445334,68.77187575553357,218.04786497322308,289.94665493373014,CHI_public_baseline,53 +100000,95860,50569,476.61172543292304,7196,73.59691216357187,5715,58.84623409138327,2241,22.908408095138743,77.3584022892406,79.64202281313429,63.35300198276878,65.04227192347003,77.07931033315396,79.36597142354094,63.24870097841691,64.942287894616,0.2790919560866456,276.0513895933485,0.1043010043518677,99.98402885402412,177.04456,123.88130753168814,184690.298351763,129231.09101375368,348.22411,220.2926422612061,362518.5583142082,229064.0649893429,418.3551,201.13509753505232,431307.4170665554,205936.39752825827,4059.62712,1850.4553862099765,4185643.1984143546,1881229.6292671077,1367.13734,600.3831279549803,1404218.4957229292,604627.3470169592,2191.0486,916.3464636879374,2242561.8610473606,918171.8424572746,0.43242,100000,0,804748,8395.013561443771,0,0.0,0,0.0,28681,298.41435426663884,0,0.0,38155,393.021072397246,1539651,0,55463,0,0,15840,0,0,71,0.7406634675568537,0,0.0,0,0.0,0,0.0,0.07196,0.1664122843531751,0.3114230127848805,0.02241,0.327118868174005,0.672881131825995,24.661487887736453,4.386217603571032,0.3205599300087489,0.2391951006124234,0.2153980752405949,0.2248468941382327,11.345822168044942,5.898689095827559,23.753527684693484,14275.90601304648,65.27284439558815,16.529836537228043,21.042333066268867,14.274547387477956,13.426127404613297,0.5664041994750656,0.7812728602779809,0.7106986899563319,0.5501945525291829,0.1299756295694557,0.729746835443038,0.9278557114228456,0.866,0.6976744186046512,0.1678571428571428,0.5039903264812575,0.6970046082949308,0.6524024024024024,0.5050813008130082,0.1188222923238696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024400368536686,0.0051473791936448,0.0075970423263786,0.0101331113119231,0.0126245171782882,0.0152148912567805,0.0177676351929581,0.0202152073027691,0.0226151945519332,0.0255062922336151,0.0281204254404373,0.0308072420085706,0.0333579820885711,0.0356533009648816,0.0379855106814926,0.0401841947673818,0.0424748368142837,0.0451162887110816,0.0473989759993353,0.0499921968475264,0.0671921100094871,0.0836998882051174,0.0988616251426895,0.1140909997794835,0.1282812960856191,0.1471448946172943,0.1620051931535159,0.1759063307562239,0.1894549181202895,0.2020134875792046,0.217440470420988,0.2320758187188281,0.2458790013917884,0.257372155829388,0.2680523479599692,0.279441228235242,0.2895884695619192,0.2995658628756523,0.3093222262574904,0.3176311476349299,0.3254220019913399,0.3336103665031781,0.3407760316670222,0.3469483286322991,0.3524602131698058,0.3586878688362676,0.3653091173630012,0.3699806112556763,0.3746362502598212,0.3791304808303326,0.3783473552011451,0.3765746374711977,0.3758702989732944,0.3735886249329642,0.371528243660271,0.3695615423627226,0.3682713695583095,0.3687679177513428,0.3702090442954401,0.3716879117731309,0.3722464476355161,0.3735427075898168,0.3744346033282141,0.3742000673627484,0.3750966183574879,0.3775019597596028,0.3794010059442158,0.3826892185580648,0.3859248056835367,0.3890415322741209,0.3921721217669947,0.3955652451345315,0.4007841153408372,0.4048445575869783,0.4075313007741565,0.4099153567110036,0.4079235828374569,0.4110655737704918,0.4097995545657015,0.4153132250580046,0.0,3.013382744286256,69.34036175177744,211.1136112742936,311.8827505348035,CHI_public_baseline,54 +100000,95720,50639,476.9013790221479,7215,74.09109903886335,5728,59.10990388633515,2309,23.610530714584204,77.38965647392791,79.75665937774707,63.34469261111818,65.09401146235957,77.10115238451267,79.47066655864744,63.23767126951009,64.99150530815707,0.2885040894152411,285.9928190996328,0.107021341608096,102.50615420250142,177.44386,124.12099691654716,185378.04011700797,129670.91194791804,348.63814,220.9346195661779,363458.51441704977,230066.49112395672,424.17152,204.72678293670225,438969.49435854575,210684.35035150743,4121.15076,1892.011200135808,4252777.256581697,1925946.7462556832,1347.16231,607.3727204825663,1386617.4780610113,614298.7375997725,2264.98776,956.2029222529048,2318849.7492687004,958932.702791489,0.43287,100000,0,806563,8426.274550773089,0,0.0,0,0.0,28670,298.7358963643962,0,0.0,38636,399.44630171333057,1538185,0,55343,0,0,15777,0,0,70,0.7312996239030506,0,0.0,0,0.0,0,0.0,0.07215,0.1666782174786887,0.32002772002772,0.02309,0.3322809786898185,0.6677190213101816,24.50952309840052,4.407464676552684,0.3317039106145251,0.231145251396648,0.2259078212290503,0.2112430167597765,11.23107395156238,5.796551884420304,24.73373061742604,14318.805389164452,65.32876521964157,15.994852348489498,21.67071157988732,13.294748534585668,14.36845275667908,0.5623254189944135,0.7892749244712991,0.6947368421052632,0.5851239669421487,0.1143740340030912,0.7311350665821179,0.9216867469879518,0.8649706457925636,0.75177304964539,0.1398601398601398,0.4981932064562756,0.7094430992736077,0.6321094312455003,0.5344827586206896,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027145288064176,0.0053830479608284,0.0083215782583545,0.010829591401345,0.0134273246055723,0.0160380432568938,0.018749808831476,0.0213758536560467,0.0240718783220214,0.0266242207732386,0.0293056438221365,0.0319278901926966,0.0343051586240927,0.0369882197874619,0.0393394601396581,0.0415577167543433,0.0441130785958372,0.0465528868599885,0.0486119050836183,0.0510987694199289,0.0682349747316543,0.0845135290731145,0.1001510922712106,0.1155019674683837,0.1305558779157479,0.148389075754691,0.1632696368131226,0.1770597188075396,0.1903363274199233,0.2028057530808584,0.2176946933149552,0.2323012679042797,0.2458053782499483,0.2576796474306398,0.268544704264099,0.2801103075542954,0.2904740658114891,0.2998707356825718,0.3096310243526196,0.3191209294339838,0.3270705831993243,0.3354032908816616,0.3428939773856271,0.3491645205725579,0.355085136874833,0.3609371918753697,0.3665085305861883,0.3710681416041855,0.3753318913598155,0.3791359687343209,0.3773592531220951,0.3759347757226866,0.3747938950661649,0.3726031755213003,0.3713623601764784,0.3687821612349914,0.3665527173741018,0.3661352752082923,0.3658623862590737,0.3667919955808193,0.3675475647590924,0.3685218455706698,0.3694432817078275,0.3701883335939769,0.3719913523901033,0.3743057547391202,0.3752066115702479,0.379050561089396,0.3838447971781305,0.3882531807633832,0.3912223397892994,0.3941287368704551,0.3976210164747789,0.4011720831113479,0.4049200261902534,0.4070179584120983,0.4104010980631386,0.4076535750251762,0.402358749314317,0.4129106187929717,0.0,2.734192760213185,69.09815651787441,217.0371206606441,306.7496574033997,CHI_public_baseline,55 +100000,95742,50753,478.4420630444319,7287,74.53364249754549,5760,59.36788452298887,2212,22.654634329761237,77.34687979821054,79.70713921735887,63.33382307926016,65.08144372745758,77.07068294579955,79.43142447646392,63.2310161581192,64.9815159263271,0.2761968524109903,275.71474089495496,0.1028069211409601,99.92780113047672,176.96954,123.92949871342594,184840.02840968437,129441.10078484462,348.78867,220.7124681770215,363482.4737314867,229710.25064968504,427.3794,206.49260645733557,440578.8682083098,211214.02050925267,4079.22157,1879.126367329275,4206603.005995279,1908661.4519534528,1341.10192,600.4057203102026,1377511.0191974265,603873.3265549107,2163.6947,913.3236991332589,2217761.149756638,920217.085432566,0.43264,100000,0,804407,8401.81947316747,0,0.0,0,0.0,28758,299.5132752605962,0,0.0,38988,401.5374652712498,1539714,0,55403,0,0,15733,0,0,69,0.6997973721041967,0,0.0,0,0.0,0,0.0,0.07287,0.1684310281065088,0.3035542747358309,0.02212,0.3420639078051335,0.6579360921948664,24.325605513078862,4.225770524817317,0.3227430555555555,0.2541666666666666,0.2163194444444444,0.2067708333333333,11.30386776628901,5.992092941116296,23.73254060124242,14294.569331491122,66.04865288242193,17.693287863317813,21.18943429864098,13.514063479023736,13.651867241439424,0.5744791666666667,0.7950819672131147,0.6960731576116191,0.5978169605373636,0.1115569823434992,0.7414841849148418,0.9306569343065694,0.8807692307692307,0.7029702970297029,0.1391941391941392,0.5077745383867833,0.7139737991266376,0.6243465272591486,0.5619369369369369,0.1038026721479958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024826719630335,0.0051717843670141,0.0079289340101522,0.0104881246379462,0.0132457068446325,0.0158550742347406,0.0186563360179427,0.0212331563903634,0.0236143198871419,0.0260986198140639,0.0289018526302838,0.0311932069039869,0.0335352371941876,0.0360030903940252,0.0384547903357311,0.0409262417945934,0.0435764140587784,0.046039732351263,0.0483689889602694,0.0507237321670311,0.0673437222749903,0.0839138894119123,0.100164616820274,0.1147313545783233,0.1285569748324269,0.1471912249556175,0.1620418459712123,0.1756682047247443,0.188654691300081,0.2007069408740359,0.2161598123904086,0.2307002280415446,0.2441027869832129,0.256900676140646,0.2689222451760362,0.2805600132809474,0.2909900062460961,0.3008637559889331,0.3102109398060897,0.3187161976349802,0.3268736542335209,0.3337235026277902,0.3407503019681216,0.3475179006200751,0.3532984318631798,0.3583925339505793,0.3629660231853576,0.368071376751645,0.3729386618304294,0.3782721131517838,0.3771668709507967,0.3755734023941702,0.3746723044397463,0.373680862751901,0.3735151127696585,0.3705276389612779,0.3682007704868653,0.3691737985516787,0.3702885521020635,0.3707447093969696,0.371864203094487,0.3721838806917341,0.3747161718947103,0.3758705908784542,0.376603919483846,0.3773579955398137,0.3797860441104769,0.3831319186728835,0.3883196721311475,0.3923504256424603,0.3970209635895549,0.4006322670524567,0.4048255665902724,0.4091779667509385,0.4077103902209685,0.4125890736342043,0.4091398676719495,0.4097179328803788,0.41340467473951,0.4124900556881464,0.0,3.0130682064158028,71.942908322623,217.96501928147612,301.7039309671831,CHI_public_baseline,56 +100000,95735,50618,477.3280409463624,7285,74.53909228599781,5782,59.62291742831776,2283,23.29346633937432,77.36211040614715,79.7252137909181,63.32787542470121,65.07610348752925,77.07709471521488,79.444081778476,63.2220738468904,64.97539477154966,0.2850156909322692,281.1320124421002,0.1058015778108156,100.70871597959297,176.78958,123.75151137719772,184663.26839713796,129262.96107574686,350.57347,221.1332007894326,365410.2888180916,230222.04652892743,418.91973,201.69214185610377,433592.3121115579,207541.3607966152,4124.77839,1880.8125529895203,4256267.436151878,1914418.1372852095,1378.0346,609.3342667556616,1421438.7945892306,618721.0259767425,2240.39402,935.9907761248242,2289845.5737191206,934942.5513968536,0.43229,100000,0,803589,8393.784927142633,0,0.0,0,0.0,28921,301.2691283229749,0,0.0,38267,395.6651172507442,1540072,0,55409,0,0,15462,0,0,73,0.7625215438449888,0,0.0,0,0.0,0,0.0,0.07285,0.1685211316477364,0.3133836650652025,0.02283,0.3397728756037071,0.6602271243962929,24.39521058246252,4.360274591720267,0.3168453822206848,0.2390176409546869,0.2251815980629539,0.2189553787616741,11.495793460249814,6.078864473675094,24.31473152339814,14364.85052156879,65.92674366439462,16.67913646688451,20.910837867831585,14.176475270683785,14.160294058994728,0.5693531649948115,0.7988422575976846,0.7057860262008734,0.5924170616113744,0.1113671274961597,0.7472808701215611,0.9295774647887324,0.8686274509803922,0.7483660130718954,0.136,0.5034368333728372,0.7254237288135593,0.642965204236006,0.5427083333333333,0.1055133079847908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028367932079065,0.0056685663293244,0.0080296416607451,0.0105063149659103,0.0133157011342251,0.0158267812767344,0.0182632104908938,0.0208792779547496,0.0237625382153556,0.0261018268206766,0.0287759455246533,0.0310824413994288,0.033404662455505,0.0358092372374848,0.0382904500934039,0.0405892995606099,0.0429105443550474,0.0454955749457891,0.0478571354323669,0.0503109277835067,0.0679248828251406,0.0841162561988659,0.0994525547445255,0.1147094399158559,0.1288158477669247,0.147949146447232,0.1628385618349441,0.176650945907102,0.1899429401833607,0.2027476298743082,0.2177842408574352,0.2316685068519841,0.2454706695248147,0.2575057989408726,0.2688573315719947,0.2809947580153602,0.2920952987300204,0.302273494653911,0.3121290190782081,0.3212763519706691,0.3289251221715265,0.3368289228824569,0.3438136516507981,0.349586667786483,0.3557097546452138,0.3615181567002171,0.3663270804355726,0.3704604802241895,0.375162026235288,0.3799104134459111,0.3786285914789673,0.3780398648182633,0.3767177403425604,0.3756660488821962,0.3746446167815305,0.3724963548461361,0.3701999365280863,0.3700542673902319,0.3710603678129486,0.3707756850843524,0.3727305090779637,0.3737238097118821,0.37465957179369,0.3764155588380108,0.377997111218103,0.3798271495339304,0.3814197671764437,0.3856153604028958,0.3901745268111107,0.3931223444387086,0.3973045576651641,0.402543720190779,0.4083469721767594,0.4116979418886198,0.4159498878085265,0.422209026128266,0.4254245066544286,0.4334539605950945,0.4431725265739983,0.4398291925465838,0.0,2.959628965014919,68.34108256602005,223.81912859846125,308.0400441589313,CHI_public_baseline,57 +100000,95752,50598,477.7028156069848,7225,73.99323251733645,5705,58.91260756955469,2162,22.15097334781519,77.32840490063373,79.68791473911394,63.31625382636724,65.06451988143449,77.05302896180173,79.41213729643037,63.21511631734317,64.96522468569997,0.2753759388319992,275.7774426835624,0.1011375090240633,99.29519573452694,177.83766,124.53532018294808,185727.35817528612,130060.28091627128,348.14032,219.73447962138675,362940.5547664801,228838.03954109235,424.92279,204.5596063023464,439047.4768151057,209999.66842118296,4020.52567,1844.040466299883,4156397.631381068,1883353.5135557293,1331.34719,589.42929140613,1374497.4204194169,599676.3057456401,2103.63536,884.4100595934804,2158362.2900827136,893605.1551521138,0.43201,100000,0,808353,8442.152644331189,0,0.0,0,0.0,28666,298.6882780516334,0,0.0,38748,399.8663213301028,1534535,0,55210,0,0,15887,0,0,77,0.8041607486005514,0,0.0,2,0.0208872921714428,0,0.0,0.07225,0.167241499039374,0.2992387543252595,0.02162,0.3330260732156966,0.6669739267843035,24.44835906104443,4.36369745088337,0.3248028045574058,0.2445223488168273,0.2077125328659071,0.2229623137598597,11.609638016803734,6.226761947432495,23.194220016039772,14246.253998568278,65.10739946915494,16.794744425290947,20.90919158548513,14.323687722222225,13.079775736156623,0.5812445223488168,0.7992831541218638,0.6945493793847815,0.6139937106918238,0.1122362869198312,0.7585987261146497,0.9294117647058824,0.875751503006012,0.7721518987341772,0.1469387755102041,0.5139056831922612,0.7242937853107345,0.6277695716395865,0.5617154811715481,0.1031914893617021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026042986127296,0.005334793809205,0.0078889656012671,0.0104473668163987,0.0130007527822424,0.0153601694915254,0.0178862783488334,0.0204394168334218,0.0232165859044347,0.0256105799742051,0.0282507303572343,0.0307000431238063,0.0331139448786507,0.0353905735003296,0.0377784886540703,0.039949146235581,0.0421605059674764,0.0447385068497412,0.0472909782405386,0.049823991334958,0.0669888421514085,0.0831459499032578,0.0987344957379661,0.1136616846398015,0.1278566235736637,0.146486852118035,0.1615482502651113,0.1747477757439019,0.1881722152797804,0.2007720351704911,0.2156243941319661,0.2307400995455529,0.2436155511789604,0.2554936941469871,0.2660178783742128,0.2780399716387485,0.2886405751155366,0.2988595039461388,0.3087939669956501,0.3178202159609344,0.3258501117273158,0.3336648840937548,0.3409621284812301,0.3476240785650827,0.3550992604126119,0.3608746082278324,0.3650863367131814,0.3694243962153477,0.3738075150885846,0.3791581312363708,0.3780971659919028,0.3766955227172475,0.3748181625591413,0.3733424054664427,0.3720746622175215,0.3690218309750964,0.3674055959602376,0.3678996472488708,0.36843097920203,0.3692351813016436,0.3697163253804246,0.3713436973957817,0.3720998470018653,0.3728273789499652,0.3745115067303517,0.37490198128496,0.3759901627155481,0.3795797498661122,0.3844532649548632,0.3878751739216855,0.3912349507479022,0.3924648447864154,0.3974367028962744,0.4016137626550963,0.4055277803980756,0.4060159315182499,0.4108491292957312,0.4162531017369727,0.4146272855133615,0.4151696606786427,0.0,2.573370147737201,68.94288678819538,214.9850302850844,307.93985749981084,CHI_public_baseline,58 +100000,95726,50489,475.59701648454967,7147,73.26118295969746,5663,58.53164239600527,2234,22.90913649374256,77.31464774318667,79.68002067437257,63.30648041847581,65.0558640722943,77.03768614387386,79.40557839384624,63.20318586786618,64.95654419059315,0.2769615993128127,274.4422805263298,0.1032945506096254,99.31988170114892,178.23564,124.70624356801552,186193.55243089653,130274.16121849396,346.7424,218.9975544740125,361623.6341223909,228175.202634616,414.45515,199.579741050075,428959.4989866912,205370.6806072338,4051.15542,1853.6553789587997,4189457.127635125,1893842.518186072,1385.38607,613.8154338893598,1431836.4916532603,625816.5638273403,2185.7557,918.5814245311274,2243588.492154692,925226.292634622,0.4318,100000,0,810162,8463.343292313479,0,0.0,0,0.0,28604,298.1530618640704,0,0.0,37818,391.1267576207091,1534094,0,55133,0,0,15915,0,0,67,0.6999143388421118,0,0.0,0,0.0,0,0.0,0.07147,0.1655164427975914,0.3125787043514761,0.02234,0.3366191554549087,0.6633808445450913,24.591578168001977,4.298462885482874,0.3219141797633763,0.2390958855730178,0.2233798340102419,0.2156101006533639,11.163714700895316,5.8502174327544925,23.827081445129064,14346.03607738145,64.50710993781676,16.217803822772957,20.693265868757276,13.630919935301016,13.965120310985526,0.5719583259756313,0.7909896602658789,0.7059791552386177,0.6027846027846028,0.1146245059288537,0.7336387434554974,0.9302325581395348,0.845841784989858,0.7731958762886598,0.1439114391143911,0.5122128174123337,0.7162315550510783,0.6541353383458647,0.5494623655913978,0.1066398390342052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024818923162639,0.0055155072948667,0.008272599930977,0.0110761101514073,0.0137646879291927,0.0164024613879946,0.0190673427122759,0.0216760940148251,0.0243697994398217,0.0266167091510293,0.0292009719986465,0.031410118185832,0.0337605694653033,0.0362294946830434,0.038471860935629,0.0408576804582015,0.0432968125427168,0.0457837826619347,0.048436070210465,0.050863173687007,0.0682976235225326,0.0848257743073364,0.1008403361344537,0.1159779990955651,0.1304930134458212,0.1490626719140112,0.1641545483494321,0.1786296118830857,0.1912428110234537,0.2039898697229197,0.2193896257953197,0.2323736875751698,0.245078279059126,0.2569540343262971,0.2682649786609909,0.2800293212790297,0.2912349795251628,0.3012591957394954,0.3103691565387592,0.3189203474743761,0.3267122254580051,0.3341698819059234,0.3413294420519391,0.3481499279192696,0.3547558779146181,0.360140248645045,0.3652523582246608,0.3705288357463931,0.3752606966591966,0.3792939623886506,0.3777502324140068,0.3762700663601068,0.3752500070424519,0.3743134647626756,0.3735771571413692,0.3708838821490468,0.3687834129162238,0.3691955687972214,0.3697048596241799,0.3704452354972005,0.3713775941402948,0.3729310208283836,0.373661154079943,0.374823703239383,0.375722961249277,0.3773240025067892,0.379658007046086,0.3833801306117298,0.386517091011394,0.3912956837112909,0.3947802197802197,0.3984946351358565,0.4022754719379648,0.4076467420570813,0.4073335233209841,0.4099736274274754,0.4120384734719206,0.413125,0.4201515576761156,0.4202044025157233,0.0,2.493181397137528,67.29453157209689,215.8876357132695,305.824328308309,CHI_public_baseline,59 +100000,95824,51064,480.7146435131074,7260,74.5533478043079,5691,58.91008515611956,2257,23.219652696610453,77.3504688262772,79.68419955963405,63.33176974345843,65.06070642220678,77.06881573321348,79.40119271591942,63.22781762243155,64.95879289461634,0.28165309306371,283.0068437146309,0.1039521210268787,101.91352759044037,177.52856,124.3363326205399,185265.23626648856,129754.89712445725,350.66676,221.8264160557561,365480.71464351314,231025.5218481342,423.03314,203.2709066523572,438921.02187343466,210084.1803742131,4054.73778,1848.647001057538,4197686.644264485,1895454.6575571236,1350.73154,595.8032298589113,1397825.7847720822,609997.777027583,2212.22242,924.6196472695958,2277515.2571380865,937349.0296136532,0.43437,100000,0,806948,8421.147103022207,0,0.0,0,0.0,28872,300.811905159459,0,0.0,38465,398.9084154282852,1535455,0,55282,0,0,15843,0,0,70,0.7200701285690433,0,0.0,0,0.0,0,0.0,0.0726,0.1671386145452034,0.3108815426997245,0.02257,0.345125786163522,0.654874213836478,24.67842785945277,4.352374342756676,0.3178703215603584,0.2403795466526093,0.2205236338077666,0.2212264979792655,11.216925365180764,5.793311540724488,24.054202969214845,14424.33437303875,65.05504122169245,16.574324508124125,20.72325388838315,14.0095891329585,13.747873692226658,0.5586013002987172,0.7909356725146199,0.6976229961304589,0.5631453534551231,0.100398406374502,0.7315823190262652,0.9022988505747126,0.8667992047713717,0.6941580756013745,0.1346938775510204,0.4932203389830508,0.7222222222222222,0.6324655436447167,0.5237603305785123,0.092079207920792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025021780091982,0.0052421848858785,0.0080584593524814,0.0109324040112575,0.0134772260308806,0.0163370067833207,0.0189179542093722,0.0217200392124826,0.0244059547666762,0.0267489711934156,0.0292241750579356,0.0319251622443111,0.0341628959276018,0.036581221227819,0.039076761238823,0.0412985751629935,0.0437771083713756,0.0463640041074151,0.0486889828835101,0.051179012024361,0.0687176598230679,0.0849304183264849,0.1006549646319098,0.1151514514756406,0.1304640994574092,0.1488507265521796,0.1633425581321373,0.1774855854130763,0.1901950526866452,0.2026963305898491,0.2182929585346692,0.2339802151467647,0.247862505024607,0.2598677378805268,0.2712330575602887,0.2822524349300269,0.2927131471435268,0.3031145529654101,0.3133221255424041,0.3219925285907455,0.3302302962937233,0.337791350744173,0.3449463740322466,0.3509865503104696,0.356844101840819,0.362571583728278,0.3683610010532123,0.3734234521456354,0.3783019357517255,0.3823447728625272,0.3805021677764421,0.3787847409186928,0.3778814218076461,0.3767666371925145,0.3759237187127532,0.3738923443139061,0.371574716843259,0.3716748524903583,0.3718561950316309,0.3717006168411992,0.3718307741462589,0.3726461843409316,0.3729628696236559,0.3743749579568132,0.3759474726017477,0.3774562390434077,0.3786610280881218,0.3832035068907881,0.3861288735858337,0.3905122583217062,0.3947896705903823,0.3990009034383802,0.403052857323073,0.4070581076969881,0.4110452535516041,0.4145764316138192,0.4142966948501153,0.4124213517353359,0.4141995614035088,0.4183712852180625,0.0,1.8999088006316949,69.43912439177743,215.6867818011299,307.2110152636637,CHI_public_baseline,60 +100000,95709,50719,477.6457804386212,7334,75.24893165741989,5783,59.743597780772966,2222,22.84006728729796,77.30949638025908,79.66984421021634,63.31695901961641,65.05958012353243,77.03317284531548,79.39341313168453,63.21408174554207,64.95906265613888,0.2763235349436002,276.4310785318145,0.1028772740743448,100.51746739354428,176.14608,123.37776366732297,184043.3815001724,128909.26001454718,350.97204,221.89934343538607,366032.6719535258,231174.10161012644,427.13927,205.97106753928617,441479.3802045785,211531.6555147423,4118.56788,1886.706903013856,4262049.441536324,1930205.2907569967,1372.13062,607.6581225179399,1419839.0537984932,621125.294632774,2176.33198,914.3019308811374,2240454.335537933,926979.0516947448,0.43261,100000,0,800664,8365.608250007836,0,0.0,0,0.0,28893,301.1837967171321,0,0.0,38995,402.6476088978048,1538876,0,55400,0,0,15714,0,0,66,0.6895903206594991,0,0.0,0,0.0,0,0.0,0.07334,0.1695291370980791,0.3029724570493591,0.02222,0.3315125503966705,0.6684874496033294,24.56109106845431,4.244102676080122,0.313159259899706,0.2469306588275981,0.2173612311948815,0.2225488500778142,10.99437393137312,5.705518755263864,23.672480371301905,14307.068090455705,66.02785263327411,17.220183808788132,20.724865120052144,14.391063584291093,13.691740120142756,0.5675255057928411,0.7850140056022409,0.695196024295969,0.5858585858585859,0.1177406523468576,0.743894802755166,0.914018691588785,0.8674698795180723,0.7328990228013029,0.1634241245136186,0.5002388915432394,0.7077267637178052,0.6298552932216298,0.539795918367347,0.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027141714181545,0.005707160814208,0.0081770960149338,0.011314698951816,0.0138667208864941,0.0164483393894979,0.0191815726443459,0.0215480723100635,0.0240689260455418,0.0268137671295964,0.0296025994526389,0.032024560034499,0.0346632390745501,0.0371049298167924,0.0394892897290719,0.0419684461756227,0.0442958715833704,0.0469385215299095,0.0489637682665724,0.0513552365674284,0.0686263248577246,0.0846712578234567,0.0996811545561335,0.1146699754992166,0.1287764549567124,0.1467023436838988,0.1619485177089744,0.1759671272541463,0.1901907997350597,0.2023999742630106,0.2176311508086151,0.2312190051324252,0.2449417168232131,0.2570111872496005,0.2686733187955681,0.2795267295771836,0.289721297186152,0.3000495875219763,0.3105172825333318,0.3194063743649146,0.3271429729948909,0.334695311128022,0.3410273120445524,0.3471872073759274,0.3528953865988786,0.3588872975108653,0.3645201703833625,0.3696076057450903,0.3751816671857158,0.3796046363925056,0.3780090998690374,0.3762568792154591,0.3755209289841355,0.3733489746263468,0.3716580727847158,0.3698882758832659,0.3680418601692219,0.3675777257591243,0.3671798568559806,0.3676650147238383,0.3690803601702897,0.3709285657402246,0.3711416334367154,0.3722045807715695,0.3733048688775139,0.37501312335958,0.3777752181299853,0.3799461428797719,0.38520011313817,0.3879722620755619,0.391709702481605,0.3932686153189673,0.3924322956213616,0.3927860315515393,0.3952584163110479,0.3964200477326969,0.3976554064476322,0.4025678194243114,0.405352662391971,0.4060795011691348,0.0,2.648707791298017,70.1314931818177,215.4191433476641,314.8245949214875,CHI_public_baseline,61 +100000,95731,50690,477.7971607943091,7154,73.35136998464448,5658,58.47635562148103,2252,23.07507494959836,77.40440741590693,79.76131216341442,63.3594678928421,65.09907696414653,77.12085077730471,79.47910484326715,63.253645914233225,64.9968272351413,0.2835566386022208,282.2073201472648,0.1058219786088727,102.2497290052371,177.90894,124.5519023662764,185842.55883674044,130106.1331922537,351.15678,222.53772726127295,366213.5880749183,231858.93520518224,421.18339,203.4851677885378,436538.9894600495,209894.1218167577,4097.94324,1881.170842112276,4235372.773709666,1919746.2808413955,1358.2902,607.0646382684314,1401290.8880091088,616574.0386901681,2207.67664,929.2861683256124,2263574.6414432107,933895.9356080192,0.43206,100000,0,808677,8447.389038033658,0,0.0,0,0.0,28860,300.83254118310685,0,0.0,38357,397.2172023691385,1535690,0,55088,0,0,15890,0,0,76,0.783445278958749,0,0.0,2,0.0208918741055666,0,0.0,0.07154,0.1655788547886867,0.3147889292703382,0.02252,0.3375583722481654,0.6624416277518346,24.699930248670075,4.359200935125438,0.3034641215977377,0.2371862849063273,0.2301166489925769,0.229232944503358,11.40624342591607,6.053715303225916,23.887984568631577,14239.108921254963,64.03737558984915,16.02758156530383,19.38522232668022,14.336652922323356,14.287918775541751,0.5537292329445034,0.7801788375558867,0.6942341292952825,0.5844255975327679,0.1044546850998463,0.7283311772315654,0.9018036072144288,0.8783185840707964,0.7682539682539683,0.1321428571428571,0.4880836575875486,0.708185053380783,0.6284584980237155,0.5254582484725051,0.0968688845401174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027337066024076,0.0053711679756777,0.0080852963256031,0.0108261818920428,0.0135633890171118,0.0161237785016286,0.0186394904458598,0.0210707835474424,0.0236226908615334,0.026083397288309,0.0289020303163849,0.0319094342721077,0.0342654466947671,0.0366780652603823,0.0389718931858516,0.0413388879125877,0.0437015865125719,0.0459237129015861,0.0483252444841669,0.0507254679346297,0.0677295412307628,0.0834702527340275,0.0991209298422289,0.1138693499037945,0.1272715773495804,0.1448496832933264,0.1598625021218808,0.1735978024785997,0.1879607667158151,0.1998048068982529,0.2147958249404871,0.2284263959390862,0.241513991035293,0.2534069780159685,0.26520528649874,0.2768135045026085,0.2879912493163528,0.2991383770893793,0.3090380993442102,0.3177887973980462,0.3253358925143954,0.3339018492342558,0.3410014650975944,0.3478578005237417,0.354079282337253,0.3586961869618696,0.363255610426955,0.3680485852592526,0.3732221360227566,0.3774678309428793,0.3773686332482193,0.3764566842568161,0.3746271596600821,0.3737171066876452,0.3715413260537364,0.3698189996786976,0.3676554387742181,0.3682319354203583,0.3683680265022797,0.3691041525332952,0.369690829956476,0.3718289202473442,0.3735652684810206,0.3739369796795273,0.3742357868386848,0.3752513776802737,0.3767620674925245,0.3815068924277711,0.3835457297753996,0.3880816846463119,0.3899063713176524,0.3924246465724193,0.3966900385319942,0.3979397176650133,0.3992302637754623,0.3992197659297789,0.3990465938797478,0.4012971220105391,0.4024560424225509,0.4061135371179039,0.0,2.4364159530135523,67.89209674485787,205.41896211281505,311.4693851018511,CHI_public_baseline,62 +100000,95730,50730,477.676799331453,7273,74.48030920296668,5718,58.9574845920819,2237,22.814164838608587,77.33232137485312,79.69631007065142,63.31916690730778,65.07022696486824,77.04674514278678,79.41721700471945,63.21181482113986,64.96937050206921,0.2855762320663473,279.09306593197414,0.1073520861679213,100.8564627990296,177.70302,124.42045113501489,185629.39517392663,129970.17772382213,352.10839,222.39006571060224,367040.6664577457,231536.30597576755,418.56983,200.88874910698368,432345.3462864306,206109.238044537,4079.58645,1870.3291197266988,4207562.550924474,1899762.1432431787,1395.0746,624.0364683929353,1439623.9214457327,634193.9291684269,2193.27792,927.7280640171148,2239054.987987047,924245.1261763292,0.43254,100000,0,807741,8437.69978063303,0,0.0,0,0.0,28996,302.06831714196176,0,0.0,38214,394.359135067377,1535452,0,55175,0,0,15882,0,0,78,0.8147916013788781,0,0.0,0,0.0,0,0.0,0.07273,0.1681462986082212,0.3075759659012787,0.02237,0.3306303949777661,0.6693696050222339,24.685703043182937,4.349502693869368,0.3081497026932493,0.2422175585869185,0.2207065407485134,0.2289261979713186,11.37847643181844,5.998954835563075,23.980731062487155,14288.438834400791,65.13661049382416,16.491961947292662,19.99620402903837,14.682881508018824,13.965563009474309,0.5682056663168941,0.7631768953068592,0.7105561861520999,0.586707410236822,0.1362916006339144,0.7195523370638578,0.9123931623931624,0.8634361233480177,0.6869009584664537,0.2077464788732394,0.513455584663015,0.6870229007633588,0.6574923547400612,0.5552208835341366,0.1155419222903885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0051831340210368,0.0077369831857688,0.010854541019595,0.0135407341092211,0.0161978789947127,0.0187035979440319,0.0211947033660374,0.0236388732682378,0.0259725634725634,0.0287348662695931,0.0314052810972855,0.0337282000658111,0.0365934043298247,0.0389682744389992,0.0415602939504501,0.0442872822912999,0.0466358873268662,0.0489186352251587,0.0511108565000468,0.068123446994216,0.0850119816246873,0.1010699674813804,0.1156321645668132,0.1300858450570542,0.1477900260245858,0.1630407097677972,0.1772558872375761,0.1903480099980773,0.2017287975633821,0.216148666846216,0.2304386885884683,0.2429785520746052,0.2552216107397236,0.265804392096428,0.2768830305715551,0.2876723031419164,0.2977736757985728,0.307777878677806,0.3172064568607009,0.3257504717581819,0.3341722071354995,0.3420790906938195,0.3478823924408845,0.3536668368215075,0.359438593029279,0.3644343710085401,0.3697547441167861,0.374384427971593,0.3798676860911936,0.379108661374877,0.377237340682053,0.375708764704223,0.3743744033326583,0.3733051541174895,0.3717201166180758,0.3689746115471386,0.3691009017310603,0.3701498665571751,0.3699584497456838,0.3712526363362458,0.3720236912191438,0.3725849609169248,0.373254166385534,0.3738261206312324,0.374990167029394,0.3753401116998425,0.3790153963124881,0.3820236623697686,0.3860457660401555,0.3878673941950571,0.3928283858500188,0.3949853260176088,0.3954328771336306,0.3989832423272453,0.400424979341282,0.4022779043280182,0.4060120240480961,0.4126637554585153,0.4134762633996937,0.0,3.013956365794729,66.31096112060254,216.8893639431448,315.31099154539373,CHI_public_baseline,63 +100000,95703,50798,479.39980982832304,7127,72.88172784552208,5607,57.77248362120309,2187,22.245906606898423,77.41699606751023,79.76951881432292,63.36600846061516,65.10037796802332,77.13671427276654,79.49705917664426,63.25999896180801,65.00150907288793,0.2802817947436864,272.459637678665,0.106009498807154,98.86889513539644,177.66958,124.33457532635202,185645.90451709976,129916.30501510622,348.00022,220.69023279674627,362806.5682371504,229782.91047413484,418.80713,202.20582115950367,432806.82946198137,207613.0655054819,3989.57076,1840.5127910981844,4113474.0185783114,1868193.897798909,1295.66537,578.7277145373453,1332278.8418335891,583220.1004577327,2133.0341,911.5937999068024,2172441.2400865178,903387.473754218,0.43217,100000,0,807589,8438.450205322717,0,0.0,0,0.0,28610,298.0993281297347,0,0.0,38228,394.6898216356854,1537902,0,55254,0,0,15680,0,0,73,0.7627765064836003,0,0.0,0,0.0,0,0.0,0.07127,0.164911955943263,0.3068612319348954,0.02187,0.3417602996254681,0.6582397003745318,24.334395031178104,4.307288391022233,0.3212056358123774,0.2457642232923131,0.2102728731942215,0.2227572677010879,11.241071021101645,5.951645479726413,23.47393639589349,14246.166655048832,63.93286150500343,16.482674612325983,20.45391756265216,13.930483214297,13.0657861157283,0.5671482075976458,0.7982583454281568,0.6985008328706275,0.5644515612489992,0.099236641221374,0.719309462915601,0.91869918699187,0.8755186721991701,0.7095709570957096,0.1254355400696864,0.5082859262923571,0.7313769751693002,0.6338134950720242,0.5179704016913319,0.0908071748878923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027328488430939,0.0053693178940116,0.0081548198636806,0.0108246428172503,0.013339840572637,0.0159306989148801,0.0182859705630529,0.0209634619310063,0.0234328693768267,0.0259036082948837,0.0284871090707873,0.0310351197684681,0.0334405871891608,0.0358794270001956,0.0382123550530268,0.0407155183994874,0.0430501630687995,0.0455747668882827,0.0477071467176651,0.050184924727822,0.0666750206238317,0.0837013163677458,0.0994690785469959,0.1139557388084819,0.1282264955011023,0.1466802060525285,0.1613231768125782,0.1751141771262495,0.1883227902205505,0.2007744786750193,0.2155751831107281,0.2297619047619047,0.2430472504294505,0.2552663782177352,0.2672176005802389,0.2792882515021744,0.2905290149952617,0.3001798763350197,0.3091911264346958,0.3179024004945224,0.3259119613240498,0.3337580809202604,0.3404529596120868,0.3460925803940355,0.3523241838952083,0.3582175997239645,0.3642017017017017,0.3695970276494764,0.3736407415078707,0.3773293564905242,0.376666576884747,0.3755710904387075,0.3746439951498745,0.372985418265541,0.3720843690924517,0.3702170078981673,0.3679360304013934,0.3685643970467596,0.3679969956641972,0.3695156288983141,0.3705256067211795,0.3707510505237822,0.37187971184453,0.3726684515841142,0.3733816924074652,0.3743093922651934,0.3750142287990893,0.3781259793168285,0.383000314938587,0.3850442897817146,0.38688049288756,0.3896832962609893,0.393481667188969,0.3938862631498704,0.4010835045768728,0.401619148187258,0.4013667425968109,0.4032064128256513,0.4010840108401084,0.4094988780852655,0.0,3.1417519453505154,68.1826622580289,211.4940852555674,296.73727638765376,CHI_public_baseline,64 +100000,95692,50633,476.8841700455629,7285,74.8233917150859,5740,59.3675542365088,2268,23.251682481294157,77.3508434030137,79.74095074978813,63.31502979323547,65.08272131827425,77.06300426650353,79.4565540830439,63.20740801184293,64.98016009896531,0.287839136510172,284.3966667442288,0.1076217813925382,102.56121930893867,176.44616,123.47607907652744,184388.7472306985,129034.0500000514,349.73308,221.45713492380307,364838.1891903189,230789.1001418966,422.24313,202.84528822913464,438014.20181415376,209472.1448279851,4105.61118,1885.879205980955,4243683.285959119,1924156.7475364464,1398.47656,625.6556686427813,1440829.9544371525,633265.3041097578,2221.69536,942.8281598908262,2278509.2170714373,945710.9759821688,0.43032,100000,0,802028,8381.306692304477,0,0.0,0,0.0,28768,299.98327968900225,0,0.0,38426,398.3300589390963,1540626,0,55363,0,0,15543,0,0,82,0.8569159386364587,0,0.0,0,0.0,0,0.0,0.07285,0.1692926194459937,0.3113246396705559,0.02268,0.3344674169065689,0.665532583093431,24.290067308798797,4.318687640423361,0.3182926829268293,0.2425087108013937,0.2233449477351916,0.2158536585365853,11.207620048075537,5.902628293287519,24.38291294495088,14232.62430744968,65.50708808904398,16.69751515199747,20.74190364850815,13.747051485137066,14.320617803401293,0.5682926829268292,0.7859195402298851,0.7011494252873564,0.5851493139628733,0.126365054602184,0.7281491002570694,0.9134808853118712,0.8568507157464212,0.7598566308243727,0.1649484536082474,0.5088432122370937,0.7150837988826816,0.6442451420029895,0.534375,0.1150353178607467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024919720007698,0.0051819776698339,0.0077962419677389,0.0104073501910724,0.0128385114651366,0.0156374157005766,0.01840271756317,0.0211818534632432,0.0237162638958488,0.0264230556522807,0.0286637267972515,0.0312134097491834,0.0336864842624974,0.0363295417078799,0.0387751310737728,0.0413935697301767,0.0437318690426854,0.0463358937097778,0.0489228240629973,0.0512368780426782,0.0685239154732433,0.0850575916230366,0.0997333725226738,0.1152223543150519,0.1283836529738169,0.1458710257631064,0.1612122498805795,0.1750359444059854,0.1879843925383505,0.2005709440968458,0.2164886220315414,0.2311173668254655,0.243905624238203,0.2556589316987741,0.2671085809925455,0.2786163452260805,0.2896635689393262,0.2992903807163775,0.30965476488102,0.3183220729762901,0.3263894520976468,0.3341262494287488,0.339634724857685,0.3457211128588753,0.3513944320062299,0.3577951084676324,0.3630260521042084,0.3679866515520118,0.3726028817248886,0.3773078702174057,0.3758231674403541,0.3739542704356575,0.372599069242702,0.3711243254192167,0.3697990965287684,0.3666692207493678,0.3646780993438361,0.3659474471266823,0.3664766404738671,0.3673848904783192,0.3685079865608048,0.3696013289036545,0.3696922722416574,0.3698029655804799,0.3722311743909185,0.3733924611973392,0.3733128747194044,0.377655068553321,0.3809440375652661,0.3833734654403347,0.384402880304334,0.3869461395595648,0.3900169736593952,0.396122729354297,0.4018488821809263,0.4051827083830905,0.4076863950807071,0.4073553054662379,0.4076985632962862,0.4121258633921719,0.0,2.415356835804803,68.70361532315115,219.2894651409813,309.41185746978016,CHI_public_baseline,65 +100000,95714,50749,478.64471237227576,7256,74.34649058653906,5701,58.883757861963765,2278,23.392607142110872,77.26691653433518,79.62659281915104,63.2951211478972,65.03885410050634,76.98622360407334,79.34395709683213,63.1925430502653,64.93765916752058,0.2806929302618357,282.6357223189149,0.1025780976318984,101.19493298576288,176.25542,123.37251099927364,184148.0034268759,128897.03805010098,348.97958,221.13892332831335,363951.10433165473,230385.84045000048,423.55829,204.1886601433576,437347.45178343815,209412.31211225217,4051.67408,1855.5572066267212,4193528.010531375,1899070.6966867105,1331.5133,594.5020848097445,1375187.005035836,605172.9891235811,2228.01028,922.9240972764884,2291436.0490628327,936781.7663904468,0.43225,100000,0,801161,8370.363792130724,0,0.0,0,0.0,28658,298.7232797709844,0,0.0,38625,398.3534279206804,1539550,0,55384,0,0,15465,0,0,63,0.6582109200325971,0,0.0,1,0.0104477923814697,0,0.0,0.07256,0.1678658183921342,0.3139470782800441,0.02278,0.3293035479632063,0.6706964520367937,24.470318709398917,4.217893308978972,0.3208209086125241,0.2439922820557797,0.2152253990527977,0.2199614102788984,11.29370550372569,5.998728630710868,24.303754404504275,14343.512516636958,65.28728984849451,16.782314940425962,20.982514308554244,14.134056084510918,13.388404515003376,0.5653394141378706,0.7864845434938893,0.6861673045379989,0.5893141945773525,0.1100244498777506,0.745136186770428,0.903353057199211,0.8785425101214575,0.7433333333333333,0.1410788381742738,0.4986775667227699,0.7194570135746606,0.6149812734082397,0.5408805031446541,0.1024340770791075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027954462585585,0.0058400673229983,0.0085542070869018,0.0113773732489511,0.0140654557289018,0.0167900379786789,0.0191854834599113,0.0219577178673145,0.0242376537215174,0.0269407140517523,0.0295121626192941,0.0318570079257525,0.0342841864961026,0.0366261883426546,0.0387702465696894,0.0412118580997271,0.0436682579295633,0.0460006224712107,0.0483847497089639,0.0506662777007949,0.0678061666649264,0.0843712712733666,0.1004333819532619,0.1149678043853373,0.1294852452444003,0.1476676261429055,0.1635170715135043,0.177946063394683,0.1905836309587459,0.2030699871189351,0.2181533983722309,0.2320370149641878,0.2450695329260457,0.2565821176676742,0.2683864853547263,0.2798423798423798,0.2898839211827067,0.2998985801217038,0.3093398477445744,0.3184038527691778,0.3258010742730135,0.3342192768827276,0.3416335959248948,0.348587197792309,0.3551996302917533,0.3611796643632774,0.3665638401926115,0.3705304218134537,0.3746300046736251,0.3786676557470427,0.3779407188950067,0.3763745763884086,0.3762463176977113,0.3745300956500283,0.3741192978266061,0.3719262610408396,0.3695125836253584,0.3699064741068772,0.3706831315354981,0.3707523944724972,0.3724636041336652,0.3741839171974522,0.3743235244376797,0.3757864117076691,0.3783698450478457,0.3794963555508776,0.3800178669202617,0.3847574175474341,0.3866757259333429,0.3916764693952054,0.3950164725534777,0.3966068621605507,0.402458544080927,0.4056494558925677,0.4050319260459354,0.4083363191209841,0.4104224483502929,0.40702184119208,0.4044382801664355,0.410236525785188,0.0,2.6842828648380377,67.5631719907491,221.8867224876584,306.41015485838267,CHI_public_baseline,66 +100000,95699,50838,479.6079373870156,7202,73.95061599389753,5661,58.52725733811221,2224,22.832004514153752,77.288290147924,79.65605957082961,63.294707477804174,65.04333130536703,77.01047293007649,79.38019773889721,63.19179014855504,64.94398906800585,0.2778172178475131,275.8618319324029,0.1029173292491307,99.34223736118496,176.74756,123.79487120078116,184690.66552419565,129358.18296416607,350.76719,222.5525487742215,365903.1546829121,231927.86431495857,420.85272,202.89655551943923,435924.99399157776,209061.66338446556,4023.90108,1829.087745518163,4159465.511656339,1866207.498377964,1343.81446,593.0740322482911,1386642.1801690718,602457.5407160918,2176.35526,904.8563339321502,2235011.2122383723,911543.664980226,0.43382,100000,0,803398,8395.030251099803,0,0.0,0,0.0,28846,300.77639264778105,0,0.0,38382,397.2873279762589,1533649,0,55134,0,0,15788,0,0,73,0.7523589588187964,0,0.0,0,0.0,0,0.0,0.07202,0.1660135540085749,0.3088031102471535,0.02224,0.3433527542372881,0.6566472457627118,24.628192379051885,4.326958280320783,0.3283872107401519,0.2358240593534711,0.2156862745098039,0.220102455396573,11.328201492797136,5.945935901716804,23.627164253759048,14313.113450223374,64.48939640714232,16.05000714604953,21.18959068018683,13.961234448590524,13.288564132315454,0.5680975092739798,0.7797752808988764,0.699838622915546,0.5834670947030498,0.1203931203931203,0.7395902181097158,0.9144050104384134,0.8648111332007953,0.735593220338983,0.1228813559322034,0.5055448408871746,0.7044392523364486,0.6386430678466076,0.5362776025236593,0.1197969543147208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028357589199809,0.0055453614622722,0.0081280188334618,0.0108494687011113,0.0133939467903343,0.0157826675762913,0.0184743377989845,0.0210687490430255,0.0235819644481697,0.0259837281891214,0.0283682128435853,0.030875982837552,0.0334046184532499,0.0357047228687359,0.0381838435514481,0.0406047828693082,0.0432797341091933,0.0455380400377754,0.0481485333888079,0.0505289488769607,0.06792141462039,0.0844353698759227,0.0997533455785883,0.1148976477398305,0.129359851363905,0.1476685583601558,0.1624385426511346,0.1772408135434312,0.1903163027438568,0.2024333669809497,0.2169008616506163,0.230745896755322,0.2437404023132467,0.2558521470646199,0.2675361297144871,0.2791668053844702,0.289969020164853,0.3002650425759883,0.3100489359280756,0.3180382109991613,0.3267612825362933,0.3344518884417276,0.341402030035021,0.3479577854172176,0.3545576407506702,0.3601023776846322,0.3651852689509593,0.3711090115165598,0.3752908904171921,0.3792601030504523,0.3781396856263166,0.3769008715349236,0.376084464384279,0.3750526147727767,0.373848244552962,0.3722235894911708,0.3710302953237753,0.3707946659633738,0.3714692903380896,0.3712274906192211,0.3722692401937685,0.3742377594597278,0.3742018418224348,0.3741838497610447,0.3760420180214908,0.3772147274482686,0.3787428571428571,0.3816454097739614,0.3838479977439368,0.3880549345257106,0.3911186627479794,0.3939540118990191,0.4001010675257406,0.4037565854775903,0.4085217716314707,0.4078792167964142,0.4109963547995139,0.4174228675136116,0.4182262001627339,0.4220877458396369,0.0,2.3671748679110927,66.7239064199472,215.6510714664929,309.05461146361984,CHI_public_baseline,67 +100000,95817,50937,479.8104720456705,7251,74.141331913961,5716,58.94569857123475,2167,22.156819771021844,77.36488025655099,79.67996020543505,63.35773544642036,65.07113099488227,77.09061353330355,79.40855221235358,63.254627538418255,64.97231439388854,0.274266723247436,271.4079930814677,0.1031079080021015,98.8166009937288,177.14862,123.95670333508173,184880.4074433556,129366.548543131,349.34211,220.83252723221204,363844.6622206915,229740.10202290563,420.5976,202.4265638347881,434903.9731989104,208151.35953088247,4014.09052,1842.2591764233684,4141125.896239707,1875584.0861459344,1340.66774,600.3540588163157,1377264.8590542388,605052.977066988,2116.94626,902.2163895888566,2165915.213375497,903542.0022953316,0.43488,100000,0,805221,8403.65488378889,0,0.0,0,0.0,28744,299.2057776803699,0,0.0,38308,395.8065896448438,1542460,0,55473,0,0,15972,0,0,70,0.7201227339616144,0,0.0,0,0.0,0,0.0,0.07251,0.166735651214128,0.2988553302992691,0.02167,0.3332896633040744,0.6667103366959256,24.34936510116349,4.270776345463625,0.3287263820853744,0.2456263121063681,0.2071378586424072,0.2185094471658502,10.926339275957025,5.550309729868665,23.37312072411327,14352.144541120331,65.24743810989762,16.91378850939881,21.320982707296864,13.868212146324591,13.14445474687735,0.5741777466759972,0.7884615384615384,0.7051623203831825,0.5652522017614091,0.1216216216216216,0.7346809854706254,0.9254302103250478,0.8481262327416174,0.6912280701754386,0.1940298507462686,0.5127026373094604,0.7071509648127128,0.652332361516035,0.5280082987551867,0.1004366812227074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030588473614,0.0052921854089784,0.0077623995454176,0.0104822654694673,0.0131379587354206,0.0155479982079582,0.0182776407266203,0.020540253588419,0.0230825061590832,0.0254877474563432,0.0277848951020282,0.0304283573818271,0.0331455939484881,0.0356014368200578,0.0379227526207827,0.0406631636540069,0.0432043856019859,0.0458487457648192,0.0483869292990125,0.050740771567689,0.0679649119147205,0.0839648378296453,0.0996448737154171,0.1144201285336245,0.1285688709150843,0.1470644139387539,0.1623543123543123,0.1767689118069214,0.1906789155276719,0.2032503776394587,0.2179920370171096,0.2323878934677062,0.24588952521707,0.2579993226930598,0.2692117441438668,0.2806588641341622,0.291140086927449,0.3010032693323147,0.3101526120798069,0.3191535601944524,0.326925298643684,0.3344039429579192,0.3418523553401501,0.3485925606778687,0.3553998080824031,0.3615432942828633,0.3663205304641561,0.371402774775233,0.3767776498143091,0.3809831397724726,0.3799921928632001,0.3788860905825523,0.3771617999717873,0.3760277938621887,0.3747523056064601,0.3729573657697506,0.3711189500111228,0.3709321111807181,0.3721856806745779,0.3730952167279907,0.3744904121999094,0.3751518894045935,0.3755959664149192,0.3773665608608541,0.378919166807463,0.3795593699303993,0.3817351598173516,0.3846178112874223,0.3894670005996684,0.3936885049196064,0.3966968762938768,0.4000644572165225,0.404436205574022,0.4074760580784677,0.4113495469718645,0.4196556671449067,0.4199597086626375,0.429600658707287,0.4267073847862299,0.4234514998052201,0.0,2.633583767127969,69.34631129347116,217.28954869569077,304.60487460084045,CHI_public_baseline,68 +100000,95622,50495,476.3234402125034,7229,74.05199640250152,5776,59.66200246805128,2268,23.164125410470398,77.2563444549925,79.66472444151641,63.27473565930678,65.05484827448164,76.96830992144405,79.37964921907268,63.16776518738995,64.95193232446161,0.2880345335484549,285.0752224437372,0.1069704719168243,102.91595002003362,177.65352,124.43076844812332,185786.36715400225,130126.88846259756,351.21811,221.78318743309163,366571.8663069168,231212.49561258333,420.00586,202.21352301529728,434283.51216247305,207695.0834793252,4092.16551,1886.240547264624,4231274.7694045305,1924444.7532872197,1354.33555,605.4460704832748,1400031.8545941312,616920.3074331217,2214.73668,937.2848843125544,2266068.812616344,941216.8506701628,0.43064,100000,0,807516,8444.834870636465,0,0.0,0,0.0,28850,300.9349312919621,0,0.0,38480,397.4399196837548,1531372,0,55080,0,0,15739,0,0,65,0.6797598878919077,0,0.0,0,0.0,0,0.0,0.07229,0.1678664313579788,0.313736339742703,0.02268,0.3425233031377183,0.6574766968622817,24.35347556909133,4.344260352354786,0.3240997229916897,0.2418628808864266,0.2119113573407202,0.2221260387811634,11.407325701880977,5.955669875540025,24.404273301690186,14264.62398889511,66.29406961788266,16.911392459219016,21.476281248971823,14.328574958263914,13.577820951427912,0.5678670360110804,0.7716535433070866,0.6939102564102564,0.5900233826968043,0.119281045751634,0.7372353673723536,0.9090909090909092,0.8674698795180723,0.7721088435374149,0.1272727272727272,0.5026378896882494,0.6853146853146853,0.631004366812227,0.5358948432760364,0.1169652265542676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026940801134349,0.0050880269199193,0.0078141649499183,0.0103826968597929,0.0129718180893275,0.0157085663641086,0.018136934878407,0.0207813968695083,0.0235255610334881,0.0263896572213002,0.0287616975866031,0.031518801319535,0.0339215121067369,0.0366009567799406,0.0391711257566679,0.041390300183152,0.043870379200962,0.0462161741027372,0.0485020655782058,0.0506639406678001,0.0678818156164755,0.0844220473760856,0.1000346467605279,0.1142165377125111,0.1288096243140565,0.1464219950473046,0.1612023307895602,0.1752752987284074,0.1878807961177502,0.2005494800330546,0.2146053241614284,0.2295097954230235,0.2425427606493082,0.2542937623990267,0.2654083332414036,0.2774273785200319,0.2886603706024527,0.2990438175134745,0.3086527855169041,0.3169656692262663,0.3254710413959532,0.3336109905322806,0.3414637041257181,0.3484941314976995,0.3547762085227203,0.3602428408922301,0.3650331391845752,0.3690982194141298,0.3745144148943081,0.3791829926930001,0.3785124413748361,0.3775823446444868,0.375540220764315,0.3734298674110258,0.3724402028391497,0.3690084749687399,0.3669828616978876,0.3671576650300054,0.368610747051114,0.3686960595304589,0.3698842575081322,0.3707486385669545,0.3719814928274143,0.3730631704410012,0.3739898378901524,0.3743375832939818,0.3757830009769553,0.3810459587955626,0.3837090344657283,0.3882573491284751,0.3905648267008986,0.395525583386855,0.4010933129926265,0.4042634474327628,0.4016767582673498,0.408274231678487,0.4143051977572359,0.4253012048192771,0.4264665757162346,0.4207245812232177,0.0,2.841156731353912,70.38626660880912,220.6346227720012,309.22083415017784,CHI_public_baseline,69 +100000,95697,50481,476.2009258388456,7199,73.8581146744412,5649,58.497131571522615,2226,22.90562922557656,77.32722884548278,79.70426271586354,63.32110870231941,65.0758868276699,77.04628531094963,79.42158859194532,63.21728987231764,64.97354793031492,0.2809435345331508,282.6741239182127,0.1038188300017708,102.3388973549828,176.8822,123.8514124741469,184835.6792793923,129420.371039998,347.86836,220.99930883757563,362911.5332769053,230338.0475884772,419.07244,202.37323643247865,434717.30566266447,208963.65141172265,4027.22036,1851.9762939658317,4173197.864091873,1900170.736499516,1352.3838,605.8499738131039,1401105.7817904428,621012.8193964618,2184.65934,918.784788944254,2250546.119523078,933443.4601197798,0.42923,100000,0,804010,8401.62178542692,0,0.0,0,0.0,28676,299.0898356270312,0,0.0,38176,395.6863851531396,1538102,0,55256,0,0,15767,0,0,69,0.7105760891146012,0,0.0,0,0.0,0,0.0,0.07199,0.167718938564406,0.309209612446173,0.02226,0.327996824556761,0.672003175443239,24.43362546372759,4.318436152777518,0.3149229952203929,0.2460612497787219,0.2205700123915737,0.2184457426093113,11.317448824017571,5.940420552712572,23.914140815643812,14261.418128994555,64.65356498950486,16.912774905305376,20.16035684430941,13.861966414647693,13.718466825242368,0.5634625597450876,0.7848920863309352,0.6897133220910624,0.5810372771474879,0.1187800963081862,0.7448320413436692,0.9248554913294798,0.8832599118942731,0.7516339869281046,0.1561338289962825,0.4950012192148256,0.7014925373134329,0.6233962264150943,0.5247844827586207,0.1084953940634595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002925871180675,0.005797042697449,0.008339251293497,0.0109489421778035,0.0134328509980577,0.0158736623461252,0.0183957742744682,0.0209880199769182,0.0235207493915284,0.0258369089922274,0.0284278535534816,0.0307297283418066,0.0332949332455617,0.0358162203377605,0.0380403934074326,0.0405381648207323,0.0430967501320873,0.0454408604383169,0.0479915125543466,0.0503116466198328,0.0681324420304992,0.0845307741415579,0.1000755207787031,0.1147230550733785,0.1291989664082687,0.147227452556752,0.1614916060020799,0.1747806457108782,0.1874993322292857,0.1997983135580492,0.2148713142216907,0.2293809410389104,0.2429315840431665,0.2544110086524683,0.2650124943582743,0.2777051287734385,0.2885437717016312,0.2991639567462952,0.3079106307615458,0.3167707557439981,0.3247246574866527,0.3322562139252807,0.3396304631055312,0.3463904913825155,0.3530964516403712,0.3590920872366424,0.364501328787043,0.3701527165183693,0.3757217932913774,0.3811242908715833,0.3798478933362151,0.3780257368660607,0.3763401370153259,0.3746217441035516,0.3737683902991637,0.3718783178691778,0.3694332305540544,0.3698977074630793,0.3704242465729981,0.3714265294453974,0.3719398953233159,0.3727458083417463,0.3735172471709601,0.3741818344839953,0.374861090979369,0.3737749593836801,0.3757485458869373,0.3794030228293176,0.3823664256744842,0.3857760345793644,0.3894717467329284,0.3916827852998066,0.3972541791139642,0.3988421458896179,0.3997895341050416,0.4047019311502938,0.4027863777089783,0.4047179487179487,0.4089768608865347,0.4091793076623882,0.0,2.011352395083348,68.49730492076024,218.67176318439715,300.9321224312488,CHI_public_baseline,70 +100000,95768,50653,477.7169827082115,7275,74.49252359869685,5721,59.05939353437474,2268,23.212346504051457,77.38146625236273,79.70426387519161,63.35451413110488,65.06754854242251,77.09429894242042,79.42049421184124,63.24697128336891,64.9647159792895,0.2871673099423049,283.7696633503697,0.1075428477359707,102.83256313302049,176.22748,123.35624937138752,184014.99457021133,128807.37759104036,346.88219,219.23868214418923,361512.3527691922,228228.96508747104,414.48945,199.81341445996583,428800.9460362543,205570.23451575215,4042.28518,1859.4425717529664,4171953.9616573374,1892720.973422056,1330.49,592.8983403900914,1372641.132737449,602554.152872475,2215.1664,937.7585979496804,2268434.4875114863,940281.015985302,0.43296,100000,0,801034,8364.317935009607,0,0.0,0,0.0,28549,297.38534792415004,0,0.0,37933,392.072508562359,1544427,0,55558,0,0,15752,0,0,50,0.5220950630690836,0,0.0,0,0.0,0,0.0,0.07275,0.1680293791574279,0.3117525773195876,0.02268,0.3455188679245283,0.6544811320754716,24.42549017234328,4.267733388366739,0.3293130571578395,0.2422653382275826,0.2176192973256423,0.2108023072889355,11.02625810923816,5.698257441874563,24.34076942588996,14273.235538156614,65.37135031096741,16.670073202890553,21.394717958382344,13.57743519350734,13.7291239561872,0.5672085299772767,0.7727272727272727,0.7080679405520169,0.582089552238806,0.1108433734939759,0.7226048841577959,0.9044834307992202,0.8709055876685935,0.7104377104377104,0.1007462686567164,0.5070320077594569,0.695303550973654,0.6461538461538462,0.5401540154015402,0.1136131013306038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026628596885567,0.0052393692488548,0.0078615554721498,0.0103684296043545,0.0129337956419616,0.0153612802084817,0.0177042563600782,0.020285921284911,0.0226501838986514,0.0252598624979538,0.0279473835184198,0.0305638773751385,0.0331935709294199,0.0356179613349529,0.0383838175557251,0.0408865112724493,0.0430076370635594,0.0451604876835033,0.0476002493247454,0.0499167013744273,0.0675141154492417,0.0836411581888387,0.0994891804860652,0.1140724386269253,0.1281683606764792,0.1466409977046024,0.1618416167188245,0.1769822006472491,0.1899934842286288,0.201970707438938,0.2175865113374534,0.231914939644356,0.2438873178159669,0.2566389110763406,0.2683646289651529,0.2796657134623484,0.2902303663752191,0.3003534364377209,0.3097812507098562,0.3190110885594046,0.3271151484253702,0.33470406298327,0.3412720982037063,0.3472592059493822,0.3534425113372482,0.3596423065063213,0.3654171311198226,0.3698849959882321,0.3746399937728653,0.3788793615981186,0.3772463162435795,0.3761071089133459,0.3749312188721306,0.3732141304662822,0.3714387942215663,0.3685213063381363,0.3664366722182568,0.3666661186103484,0.366943902522504,0.3680994747561368,0.370049504950495,0.3719656835613188,0.373238255033557,0.3753645295885863,0.3763166140422763,0.3782795024563604,0.377252863385793,0.3813212418918068,0.3838195446387725,0.3854806541683286,0.3895973307738014,0.3938443546672336,0.3960128293817999,0.3991174680462568,0.4011941996019335,0.4002618424184718,0.407864654778235,0.4055308841340331,0.4058565955117679,0.4111578142911731,0.0,2.613648212204994,70.22886475530592,215.8124063260737,304.61545854307343,CHI_public_baseline,71 +100000,95760,50909,480.8688387635756,7194,73.90350877192982,5664,58.59440267335004,2250,23.151629072681704,77.31912755708531,79.66996324639759,63.32066847763053,65.0588050125057,77.04380099527643,79.39332656083548,63.21821226658296,64.95840399771295,0.2753265618088818,276.6366855621101,0.1024562110475741,100.40101479275164,176.6391,123.6457148088224,184459.98329156224,129120.2172560613,348.36991,220.62944508763516,363156.90267335,229762.2707093664,419.07196,201.9977216444649,434277.4749373433,208342.088521488,4010.56033,1832.344194807567,4153381.182121972,1878855.810024212,1372.14222,609.0589562927576,1419943.9954051794,623317.7527145311,2198.98846,914.597493708029,2265907.01754386,929401.30298113,0.43521,100000,0,802905,8384.54469507101,0,0.0,0,0.0,28752,299.6553884711779,0,0.0,38237,395.93776106934,1539874,0,55362,0,0,15642,0,0,59,0.6056808688387636,0,0.0,2,0.0208855472013366,0,0.0,0.07194,0.1652995105810988,0.3127606338615513,0.0225,0.3394204049225883,0.6605795950774117,24.493362321202166,4.269464877485071,0.3186793785310734,0.2508827683615819,0.21875,0.2116878531073446,11.430698437201183,6.099720362402056,23.92422919480541,14370.98975392934,64.65491931165622,17.274707327173335,20.437239935086755,13.44187184496084,13.501100204435268,0.5732697740112994,0.7790288529204785,0.6991689750692521,0.5946622185154296,0.1331719128329297,0.7491961414790996,0.90990990990991,0.8509719222462203,0.7552447552447552,0.199203187250996,0.5066926259430519,0.6951501154734411,0.646795827123696,0.5443592552026287,0.1163967611336032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027139515336864,0.0052493438320209,0.0078730570999553,0.0102988076133986,0.012986748838108,0.0154389824121882,0.0181901605913841,0.0208205693746681,0.0232101593014457,0.025869658688397,0.0283083674243589,0.0305784020782634,0.0328801217706105,0.035325023179149,0.0380321508904434,0.0404923573000961,0.0427972462342771,0.0452150281102835,0.0474453692446772,0.049878662264485,0.0675246863322268,0.0850131280270301,0.1004908644668666,0.114758925285241,0.1294515782149408,0.1473660837016516,0.161991027014414,0.1762928282613322,0.1903150026695141,0.2022363497968416,0.2177340325863387,0.2313628295597212,0.2456541130909644,0.2585333843714114,0.2705144429160935,0.2816868644349425,0.2918811483189477,0.3024999155814189,0.3118839987282554,0.3209015078601219,0.3291406069029418,0.3372444319539099,0.3442599637359121,0.3514792046873499,0.3588386327407245,0.3639743114733852,0.3681353127037464,0.3730108130164235,0.3774483716462662,0.3817967840897069,0.3807004521222754,0.3790183558356663,0.3770223107682308,0.3746918414107137,0.3733102821288582,0.371256472902165,0.3691955630423036,0.3698359359557224,0.3710448323711305,0.3724530061701822,0.3735196098736608,0.3747271067359981,0.3763409134017577,0.3763598279240523,0.3782436096049574,0.3792741491064634,0.3806149962710114,0.3839392981346822,0.3865771812080537,0.3888225459756388,0.3920797512346808,0.3958077108176033,0.4022601739572091,0.4036274208422994,0.4071157495256167,0.4069038893486227,0.4059300015283509,0.4080471448892501,0.4139740403203535,0.4135424636572303,0.0,2.1501744964131184,68.82001206254489,214.82314982663172,304.27194509682687,CHI_public_baseline,72 +100000,95689,50432,475.28974072254914,7169,73.57167490516152,5612,58.13625390588261,2161,22.270062389616363,77.34181859432726,79.72385767227398,63.3271521787835,65.08523709105106,77.06940487901319,79.45080933178544,63.22570343994986,64.98602771924666,0.2724137153140731,273.0483404885433,0.1014487388336391,99.20937180439182,176.96228,123.77014426836966,184934.8200942637,129346.26160621352,346.17725,219.2960909956566,361251.7217235001,228654.2873221129,414.68838,199.80844206149072,430258.44140914833,206408.21053676747,3965.26517,1812.3541060472733,4109026.021799789,1859121.577242182,1296.78984,577.7898039750673,1341390.6196114498,589998.0499065372,2118.31694,891.2219213709725,2184261.200346957,904636.478552166,0.43138,100000,0,804374,8406.128186102897,0,0.0,0,0.0,28549,297.8085255358505,0,0.0,37829,392.2185413161388,1541751,0,55421,0,0,15645,0,0,64,0.668833408228741,0,0.0,1,0.010450522003574,0,0.0,0.07169,0.1661875840326394,0.3014367415260148,0.02161,0.3376346946920314,0.6623653053079686,24.83124581655468,4.367760949454115,0.324839629365645,0.2435851746258018,0.2179258731290092,0.2136493228795438,11.011457024992474,5.640366559277158,23.143171414898504,14307.36166135651,63.99982510986933,16.65440856863551,20.46953614802443,13.485409693325831,13.390470699883554,0.5734141126158232,0.8127286027798098,0.6972024136039495,0.5863219349457881,0.1087489779231398,0.7343441001977588,0.9474708171206224,0.8458149779735683,0.6918032786885245,0.1311475409836065,0.5137973137973137,0.731535756154748,0.647918188458729,0.5503355704697986,0.1031664964249233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029062996830411,0.0056255511519709,0.0081775108306362,0.0109382299770469,0.0136149184528409,0.0162906247454589,0.0188973488670764,0.0215795759623531,0.0239781682151289,0.0265434183992056,0.0288224920022967,0.0313754891187133,0.033856979722848,0.0363019980009686,0.0388597025400724,0.0414356640463384,0.0440297192833383,0.0463568595693432,0.0485919668771521,0.0507380843167507,0.0681096439913087,0.0839205503261541,0.1000451315637562,0.1148184391342319,0.129111547144334,0.1467330942785517,0.1610763892573296,0.1751599476244717,0.188620579121701,0.2009330759330759,0.2160374818245463,0.2306202808247333,0.2437756289633118,0.2551718859342197,0.2665859830564419,0.2790185000553893,0.2889933350451587,0.2996590947446585,0.3097835340590485,0.3186051573436587,0.3266923513010077,0.3341834048875215,0.341390979222869,0.3476963275481829,0.3542005881066368,0.3608182591647246,0.3660378776491808,0.3710026755000637,0.3760345588044522,0.3800417613786541,0.3785653598737711,0.3774060652823897,0.3768228468173412,0.3760078748136246,0.3744398957945664,0.3726902695645496,0.3710836492853404,0.3704227669024511,0.3708157741460239,0.3714515696270459,0.3724578733294596,0.3725408700471044,0.3729635539133356,0.3731266265817105,0.3727149954179327,0.3749574150265992,0.3759805324935585,0.3783391221976634,0.3823207153712932,0.3844956910309607,0.3888787185354691,0.3926135152419526,0.3964932126696832,0.4007915366466245,0.4046080359651587,0.4074427480916031,0.4063653136531365,0.4104900769542325,0.4225509349706949,0.4255732607850758,0.0,1.9501958100939103,67.20088593566958,215.6588720821001,301.9099947151375,CHI_public_baseline,73 +100000,95664,50776,478.4872052182639,7221,73.97767185148018,5670,58.52776384010704,2165,22.17134972403412,77.38307130315455,79.76049590641195,63.34642469116329,65.09783940123586,77.11555082125096,79.49526893570538,63.24637381235878,65.00161697384219,0.2675204819035883,265.2269707065642,0.1000508788045095,96.22242739366982,177.94986,124.58863670596918,186015.4917210236,130235.6546934784,350.08623,222.04373473810688,365235.7417628366,231389.6813201485,424.84451,205.21352242988385,439383.29988292354,210859.5428123896,4029.15076,1837.9479934001347,4163372.606205051,1872852.905377292,1317.34857,586.576351307656,1358239.5885599598,594344.8959981336,2126.48096,893.8176386144903,2180693.5524335173,898904.4874770358,0.43253,100000,0,808863,8455.24962368289,0,0.0,0,0.0,28897,301.3150192339856,0,0.0,38729,400.0878073256397,1530888,0,55120,0,0,15673,0,0,62,0.6481016892456932,0,0.0,0,0.0,0,0.0,0.07221,0.166947957367119,0.2998199695333056,0.02165,0.3424294608557425,0.6575705391442576,24.72989853111652,4.270741104756681,0.3216931216931217,0.2511463844797178,0.2176366843033509,0.2095238095238095,11.291000517586706,5.910889183663096,23.156469600306117,14320.863910711474,64.35154702429816,17.056004765532595,20.71867855607045,13.22113773503254,13.355725967662588,0.5707231040564373,0.7914325842696629,0.6935307017543859,0.6060606060606061,0.1004862236628849,0.7544987146529563,0.9206049149338374,0.8458498023715415,0.8,0.1452282157676348,0.5012153621779291,0.7150837988826816,0.6350531107738998,0.5462555066079295,0.0896273917421953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027838798173774,0.0052276457358215,0.0078802446222654,0.0105812583776757,0.0133394336841035,0.0159410405448049,0.0185834573589675,0.0211189253743531,0.0238365377735528,0.0263192916005527,0.0288300849933871,0.0312169475165069,0.0338160276452196,0.0362778624696139,0.0389757768332439,0.0410831481577179,0.0436854481979882,0.0463938390642352,0.048939776827962,0.0511938634066014,0.069000459654841,0.0852509474653991,0.102048952442901,0.1166116380307459,0.131070622719892,0.1489031030290215,0.1636471573501818,0.1776123371443765,0.1905991570186203,0.2030151722955597,0.2186380313969377,0.2332565508440666,0.2454585974105036,0.2569691934320134,0.2680756028868157,0.2793470672325713,0.2905449183404455,0.3006759801712483,0.3105916030534351,0.3192594290954946,0.3274278899040076,0.3345202398800599,0.341694425016892,0.3479858317824338,0.3545631540520808,0.3601575133627128,0.3653988345134407,0.3702849423998369,0.3758285662398983,0.3791466687821453,0.3776232259108002,0.3759777459513055,0.3749030666196686,0.373006916109616,0.3721255391938123,0.3693580318912199,0.366890841607715,0.3674328368024728,0.3670669247503383,0.3673389044968953,0.3681669317862824,0.3699173358060252,0.3710419542393441,0.3716790470454393,0.3728642975246219,0.3744059830169571,0.3764635840444533,0.3814529754082973,0.3854206785476699,0.3864192656928543,0.3899613899613899,0.3933213568635739,0.3966231483806176,0.3996060009092286,0.4013440358409557,0.4042278332354668,0.4056176381757777,0.4036227603859027,0.4077149745512992,0.4074211502782931,0.0,2.8457205052856542,67.91970651871844,210.32946069778268,306.9570733095076,CHI_public_baseline,74 +100000,95683,51248,483.8895101533187,7105,72.80290124682546,5634,58.22350887827513,2134,21.832509432187532,77.3960056150407,79.78070295556293,63.35197710932333,65.11324703075597,77.1284206885634,79.51567044280416,63.25278301227836,65.01802101997312,0.267584926477312,265.03251275876494,0.0991940970449718,95.2260107828522,178.45828,124.89714953421714,186509.9129416929,130532.22571848409,353.35642,223.75007104183427,368620.6118119207,233166.71826952996,428.49848,206.47630501177352,444037.8541642716,212803.90244274205,3993.3955,1831.2819915421069,4132136.5237293984,1872473.3563350912,1351.1482,601.3995442488264,1397863.413563538,614287.798510526,2086.11044,874.0093642287044,2137874.355946197,877955.8086326547,0.43563,100000,0,811174,8477.723315531493,0,0.0,0,0.0,29062,303.0109841873687,0,0.0,39060,404.3769530637626,1532723,0,55062,0,0,15917,0,0,75,0.7838382993844256,0,0.0,1,0.0104511773251256,0,0.0,0.07105,0.1630971237058972,0.3003518648838846,0.02134,0.3372046455746896,0.6627953544253103,24.46812845996103,4.314044436136523,0.3292509762158324,0.2374866879659212,0.2115725949591764,0.2216897408590699,11.52008225065601,6.120269224359146,22.61345048771223,14326.58049247495,64.10085011087968,16.161348607199002,21.062048569854,13.912346780072284,12.9651061537544,0.5782747603833865,0.7959641255605381,0.7072776280323451,0.588470776621297,0.12248322147651,0.744140625,0.929718875502008,0.8565737051792829,0.734006734006734,0.1338912133891213,0.5161054172767203,0.7166666666666667,0.6518847006651884,0.5430672268907563,0.1196222455403987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026034016430807,0.0051915394131126,0.0079982135969631,0.0102311404622809,0.0128883282810815,0.0154359956013521,0.0181082210915913,0.0206944430264729,0.023237032039093,0.0255174107965362,0.0279782653270453,0.0306374939679866,0.0330337124874015,0.0356087059526384,0.0384539986174306,0.0409443772547317,0.0432760531576603,0.0458697502543129,0.0481638256492392,0.0506529646575713,0.0678128982388702,0.0842795993762493,0.1005685036396819,0.1154161584724734,0.1296024961261555,0.1479468279734774,0.1628437446952979,0.1762407647923009,0.1891559829059829,0.2013837489943684,0.2162715296702823,0.2301267904279718,0.2436739130434782,0.2555208151128214,0.2677018155426284,0.2802369353410097,0.2908756274400446,0.3015066907857038,0.3114852539626789,0.3201038236370289,0.3281361882983392,0.3368094075881961,0.3437271073091192,0.3505588932238684,0.3568760158164131,0.3625195223630975,0.3679599655564013,0.3741294668341134,0.3769784915696248,0.3815107250954073,0.3802932252087753,0.3782549046508437,0.3763093145869947,0.3748701073779009,0.3734083286337598,0.370147061073959,0.3679021333164525,0.3683770080238912,0.369462754875508,0.3709156450202545,0.3717026378896882,0.3721811934757711,0.3730812664686938,0.375523945420494,0.3761355443403028,0.3775310765381909,0.3778479392439628,0.3808339106884172,0.3834985586725726,0.3857894317366701,0.3882800678618919,0.3881171190425304,0.390347539320142,0.3950815904389795,0.3938847212990219,0.3903640514237654,0.3914854234150856,0.3954248366013072,0.3900138696255201,0.3947061113273647,0.0,2.5055627312943947,67.38496231101587,209.66319316722613,308.32648157278464,CHI_public_baseline,75 +100000,95814,50601,477.0805936501973,7319,74.99947815559314,5748,59.32327217316885,2238,22.919406349802745,77.38566316619061,79.70642829795906,63.36611244363343,65.08413030013696,77.10070198036578,79.42421937773906,63.25928232933269,64.9813016076785,0.2849611858248266,282.20892022000044,0.1068301143007346,102.82869245845916,176.83886,123.72792049281476,184564.74001711648,129133.44656607046,351.63633,223.1082414022852,366335.2328469744,232192.59110320863,422.73875,204.21513558875813,437162.22055232007,209940.26431878196,4057.76207,1877.1038716603884,4189223.224163484,1913350.151787212,1360.71159,616.173617582623,1399385.7369486713,622319.7837295411,2181.67394,934.7330428261264,2235883.7748137014,939533.6053280174,0.43243,100000,0,803813,8389.306364414388,0,0.0,0,0.0,28962,301.5738827311249,0,0.0,38535,398.1881562193417,1543085,0,55481,0,0,15665,0,0,77,0.7932034984449037,0,0.0,1,0.0104368881374329,0,0.0,0.07319,0.1692528270471521,0.3057794780707747,0.02238,0.3346821563764521,0.6653178436235478,24.432618140916052,4.275126536080073,0.3324634655532359,0.2393876130828114,0.2125956854558107,0.2155532359081419,11.20078914552075,5.948768718040929,24.254099682298698,14281.475737531937,65.74748017110096,16.67193975268047,21.60483789506675,13.879774709236404,13.590927814117348,0.5815935977731385,0.8037790697674418,0.706436420722135,0.5996771589991929,0.1178396072013093,0.7580157289776165,0.9393382352941176,0.8811320754716981,0.7305194805194806,0.1845018450184501,0.5103785103785103,0.7151442307692307,0.6393917451122375,0.556390977443609,0.0988433228180862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026637497088106,0.0055553865961092,0.0082410611888644,0.0107999918720663,0.0134057528784734,0.0161083392729864,0.0186221447573617,0.0211041943055413,0.0236905309417957,0.025982930473403,0.0283052706012564,0.0309456116761949,0.0334018499486125,0.0358620689655172,0.0383282806409701,0.0405201619567013,0.042815607313212,0.0453461857379767,0.0479715908500939,0.0500098854330339,0.0680428932050987,0.0838891095732893,0.099844876739896,0.1149518276090314,0.1287842079760675,0.1475828853283199,0.1624253083019027,0.1767431972789115,0.1903014528619887,0.2023544282102918,0.217450227485399,0.2318156279713026,0.2452246245398373,0.2568461740041928,0.2674481197886341,0.2790311877903119,0.2892771970490561,0.2999325766940106,0.3099301872251688,0.3181475042320538,0.326487923263608,0.3340845662505692,0.341515563168153,0.3474059368048413,0.3543222146805003,0.3600732510692689,0.3652494224886058,0.3692696365321383,0.3744070316034382,0.3799043188317935,0.3783561791398486,0.3764124585380624,0.3747939183000549,0.3737629492447479,0.3722490886094785,0.3699599404478688,0.3675491955592967,0.3673284455062196,0.3684725680432729,0.368680796080613,0.3692790793877628,0.3707983401830563,0.3708372927885123,0.3709590152847288,0.3722144001553624,0.3739923072870014,0.3743380151968685,0.3780449124587668,0.3798133229229513,0.3821630508882384,0.3863229008686061,0.3900603213580312,0.3936439604963281,0.3967453586981435,0.3986909504837791,0.3991636798088411,0.4082010174194543,0.4095257480154691,0.4192477876106195,0.4275334608030592,0.0,2.6057069905815617,72.55265301663333,207.91410806934252,310.7945203608836,CHI_public_baseline,76 +100000,95747,50711,478.2813038528622,7191,73.62110562210826,5665,58.38303027771105,2216,22.67433966599476,77.37657405990127,79.7216790485029,63.3458979718325,65.07924023859755,77.09040658114728,79.4379271615064,63.23840246326087,64.97593748415183,0.2861674787539954,283.7518869965123,0.1074955085716311,103.30275444572123,178.95658,125.22947040598514,186905.6785068984,130792.05657199195,348.86227,221.2398571440289,363586.80689734407,230295.5154146123,422.26249,203.9373508020827,436153.0491816976,209242.18607541325,4026.90438,1864.2436218473083,4151915.078279215,1893190.7755306235,1328.20388,598.732816730767,1365085.349932635,603211.8047884182,2173.83754,928.0287333656228,2225551.7561907945,930957.2625521248,0.43217,100000,0,813439,8495.712659404473,0,0.0,0,0.0,28800,299.9780671979279,0,0.0,38468,396.9106081652689,1529854,0,55032,0,0,15947,0,0,70,0.7102050194784171,0,0.0,0,0.0,0,0.0,0.07191,0.166392854663674,0.3081629815046586,0.02216,0.3414021164021164,0.6585978835978836,24.38287687967288,4.290535020886149,0.3163283318623124,0.2481906443071491,0.2190644307149161,0.2164165931156222,11.12962920606749,5.76329938456544,23.810381492000268,14277.039270794285,64.84714371431677,17.062099304923176,20.38325620348462,13.634847444399014,13.766940761509938,0.5712268314210062,0.7844950213371266,0.69921875,0.5897226753670473,0.1265108783239323,0.7457627118644068,0.9158878504672896,0.8832997987927566,0.7933579335793358,0.1517241379310344,0.5029469548133595,0.703788748564868,0.6285714285714286,0.5319371727748691,0.1188222923238696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025625443127722,0.005332035803708,0.0080561699709815,0.0107582591734731,0.013607517695875,0.0160588996038736,0.0184662132536631,0.0212255482500918,0.0236866048518181,0.0263381478334749,0.0289541653000983,0.0313385341818928,0.033658195575294,0.0359938208032955,0.0385420857705838,0.0407764581847499,0.0432621616584173,0.0454691633383474,0.0479997504886264,0.0503863858859797,0.0673631913494556,0.0839372927974565,0.0998857310591368,0.1151643177685993,0.1289207419898819,0.1472065119720915,0.161902237302513,0.1761538379678404,0.1897376741006579,0.2019348334370106,0.2171079561367602,0.2315250679046413,0.2453591869600226,0.2571194046185838,0.2678787745303174,0.2788724897705725,0.2892011751695171,0.2996149255747967,0.3093526813593578,0.3182380570512086,0.3261156374409777,0.3329589855174188,0.3405662498077401,0.3465474678235026,0.352121064786678,0.3581215237954296,0.3632121500237696,0.3687891852021416,0.3740194174757281,0.3788146779303062,0.3771182448347803,0.3757722525695887,0.3744154600259169,0.3727095234651819,0.3716162982563066,0.3696412143514259,0.3657488864583829,0.3660136090200848,0.3680345128652868,0.3682017347759992,0.3700856949560249,0.3715632675699231,0.3727738575268817,0.3745890456914096,0.3765348870804642,0.378239289446186,0.380145001998059,0.3831996224634261,0.3878427369680757,0.3905764171250896,0.3932218914586672,0.3959312259718069,0.3991272451302808,0.4060944797488707,0.4081594107092265,0.4080076263107721,0.4094741683274567,0.4092835519677094,0.4115384615384615,0.4181678804139517,0.0,3.017597704532595,69.51699145516513,218.5613263459482,294.4876820620716,CHI_public_baseline,77 +100000,95744,50751,478.45295788770056,7269,74.61564171122994,5692,58.79219585561497,2184,22.309491978609625,77.3313489084019,79.69879411112113,63.31030609897547,65.06352661186536,77.05803595435275,79.42849077329846,63.208669855806086,64.96630171035619,0.2733129540491603,270.3033378226678,0.1016362431693806,97.22490150916484,178.87562,125.13022596963224,186826.9761029412,130692.49871494008,350.39122,221.4088097492608,365326.8507687165,230610.9309714037,415.00455,199.71346320434373,429832.1461397058,205690.78363113964,4038.94948,1836.8510732990849,4174936.236213235,1874950.4337599075,1318.92053,580.8685104312874,1359898.562834225,589047.143374901,2136.62862,894.8970123183884,2185976.186497326,895105.2052318995,0.43382,100000,0,813071,8492.135277406418,0,0.0,0,0.0,28891,301.0736965240642,0,0.0,38002,393.246574197861,1529657,0,54968,0,0,15957,0,0,60,0.6266711229946524,0,0.0,2,0.020889037433155,0,0.0,0.07269,0.1675579733530035,0.3004539826661164,0.02184,0.3257090576395242,0.6742909423604757,24.63322598731958,4.271902101799898,0.3229093464511595,0.2482431482782853,0.2182009838369641,0.210646521433591,11.178692002861816,5.857797065335511,23.16811517311657,14314.919017143218,64.66629975304078,17.10219526283304,20.733345444046535,13.416397247653329,13.414361798507867,0.5627196064652144,0.7975937721160651,0.691512513601741,0.5504587155963303,0.1167471819645732,0.7341526520051747,0.9017857142857144,0.8665207877461707,0.7046263345195729,0.1451612903225806,0.4987940183309213,0.7291910902696366,0.6335988414192614,0.5032679738562091,0.1096579476861167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025532173578253,0.0050295587981788,0.0079269221009895,0.0106076000812842,0.0134285539888909,0.0162540355022354,0.0189352611883227,0.0212687748246321,0.024026020517751,0.0264252207222893,0.0287783065310141,0.0312323419119535,0.0334973037500514,0.0361129146956064,0.0387898555960405,0.0411543910080757,0.0434174829664298,0.0458747963599008,0.0482932102615275,0.0505342970816755,0.0674648740057203,0.0842777167372992,0.0989477880469561,0.1136700634129413,0.1274329938213028,0.1458624190887168,0.1602640292045165,0.174089500090544,0.1879716124067463,0.2007555026131376,0.2158788336118148,0.2296802564880204,0.2426829268292683,0.2548452795479929,0.2667577152675286,0.2787130689379824,0.2891455894181786,0.2994098966192932,0.3091569684927618,0.3182547688921496,0.3276858403492722,0.3360315824000749,0.343878954607978,0.3500006006944027,0.3559123945410939,0.3614625896527461,0.3673254546138132,0.3725340266095733,0.3767278863002141,0.381218609569125,0.3805592651046093,0.379076685764654,0.3783410398105334,0.3769211861833639,0.3753786753786753,0.3732316737093514,0.3702315429872841,0.3711773198582491,0.3724638919750448,0.3732190680235672,0.3743698345171386,0.3737661464205883,0.3751074761455384,0.3763551653077681,0.3761268861784698,0.3769745789308505,0.377644539614561,0.3811223039757476,0.3849230224738984,0.3882324668562502,0.3909733052013576,0.39248,0.3941098401061745,0.3927563858177659,0.3919146546883773,0.3912788653147345,0.3942727957799548,0.3897131552917903,0.3930792105974587,0.3964541682384006,0.0,2.566207508253198,67.94445683572643,213.0567824720867,308.840969281247,CHI_public_baseline,78 +100000,95484,50756,477.8078002597294,7149,73.47827908340665,5641,58.4286372585983,2220,22.946252775334088,77.22623088476638,79.71507567765543,63.24095407219974,65.07702133095958,76.94477623723378,79.42965327791097,63.13653671259543,64.97330425871725,0.2814546475325983,285.42239974446204,0.1044173596043123,103.71707224233262,176.93434,123.81895060290135,185302.1448619664,129674.66282353386,348.22154,221.0297406419202,364067.7495706087,230861.9945396373,423.7719,204.94531056332903,439030.3192157848,211024.8191961822,4007.98316,1845.0184315063443,4158510.65099912,1893309.9748978864,1353.64191,603.9243787497795,1403603.2214821333,618460.5487272042,2164.90042,910.8757276936994,2240076.473545306,931182.0567933972,0.43307,100000,0,804247,8422.824766453019,0,0.0,0,0.0,28721,300.1340538729002,0,0.0,38510,398.54844790750286,1531593,0,55123,0,0,15973,0,0,77,0.8064178291650957,0,0.0,1,0.0104729588203259,0,0.0,0.07149,0.1650772392453875,0.3105329416701636,0.0222,0.3379753615425817,0.6620246384574183,24.240764319548035,4.361986567055907,0.3208650948413402,0.2437511079595816,0.2214146427938308,0.2139691544052473,11.282644501772946,5.898867464699113,23.789635003924605,14372.602229939532,64.89154522135696,16.802415239073806,20.711805027894336,13.782235758793036,13.595089195595774,0.5761389824499202,0.7963636363636364,0.7154696132596685,0.5923777961888981,0.1160928742994395,0.743605739238927,0.914855072463768,0.8881856540084389,0.7281553398058253,0.1529850746268656,0.5096582466567607,0.7168894289185905,0.6541916167664671,0.5456570155902004,0.1060142711518858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031007751937984,0.005659975453153,0.0084370621560704,0.0110726995424504,0.0138357224303632,0.0167354634867247,0.0192450943376973,0.0220607769807696,0.0246043356829365,0.0270691174361181,0.029746263754311,0.0324388237713345,0.0346908304587344,0.0372436981723668,0.0397685591775585,0.042325412848786,0.0448236514522821,0.0473072005488508,0.0498937322887147,0.0524397757056188,0.0692423639751292,0.0861792200434358,0.101733058511757,0.1167053119730185,0.1310316403525458,0.1485807559408984,0.1639659755449229,0.1784193847828174,0.1919109692484013,0.2040482870564459,0.2186842020018788,0.2318131522423032,0.2453410392017883,0.2570582753138534,0.2670874622056454,0.2787409975993598,0.2899922785107597,0.3001184099238793,0.3097895970595933,0.3191875351635608,0.3271678715232249,0.3356915748595028,0.3424311136965322,0.3480488244843966,0.3545664133497603,0.3603996187033437,0.365496855345912,0.3714950880065493,0.3764554360128533,0.3805218221350162,0.3795539435933525,0.3776712574767581,0.3762952910075349,0.3749800773722416,0.3733906219695952,0.3728153846153846,0.3708460656990068,0.3718012217269275,0.3730806925841228,0.3738186783571094,0.3735779401793114,0.3745205207194673,0.3752106504887091,0.3752108494703461,0.3742331288343558,0.3741583924969217,0.3752326413743737,0.3786168295228156,0.3837131248895954,0.3870025994801039,0.3904052936311001,0.3906700865662071,0.3922323965898326,0.393531202435312,0.395858595280291,0.3961420842154787,0.4015023762072666,0.4011890118901189,0.3980582524271844,0.3804557744302819,0.0,2.531744322771238,70.80461173983645,214.4860626151849,297.44632783612377,CHI_public_baseline,79 +100000,95690,50587,477.4480091963633,7269,74.54279444038039,5728,59.06573309645732,2228,22.771449472254155,77.36399481233721,79.74792930409983,63.33329461681414,65.09691488497721,77.08359793562181,79.47192835118008,63.22820152718892,64.99730946973085,0.2803968767154003,276.0009529197447,0.1050930896252211,99.60541524635858,177.33892,123.999840136387,185325.57216010036,129584.05239668414,350.51615,221.79732929858469,365491.1589507786,230975.5481425276,416.94965,200.84206445996688,430845.218936148,206230.876834545,4071.76348,1847.037111339768,4203063.695265964,1878203.1453012505,1332.60389,589.7695071825967,1376258.428257916,600030.0969696431,2182.35308,922.864182598126,2233369.568397952,922866.082648978,0.43157,100000,0,806086,8423.889643640923,0,0.0,0,0.0,28826,300.3866652732783,0,0.0,37978,392.08903751698193,1540300,0,55410,0,0,15626,0,0,80,0.8255826105131153,0,0.0,0,0.0,0,0.0,0.07269,0.1684315406538916,0.3065070848810015,0.02228,0.3295737704918032,0.6704262295081967,24.757656977904784,4.2806198873641685,0.3219273743016759,0.2424930167597765,0.2215432960893854,0.214036312849162,10.965181106866831,5.583582281312305,23.87574373730777,14261.109957716975,64.78610813934289,16.62943421404868,20.751910538201532,13.54542182826207,13.859341558830597,0.5567388268156425,0.7739380849532037,0.6952277657266811,0.5611745513866232,0.1134751773049645,0.727088948787062,0.893223819301848,0.8406708595387841,0.7164179104477612,0.2023809523809523,0.4971724787935909,0.7095343680709535,0.6444769568397952,0.5177453027139874,0.0914454277286135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025835604502487,0.0052734592878801,0.0079286120360594,0.0106307295160274,0.013268483282118,0.0159343066437093,0.0185749987249451,0.0209467395189705,0.0235548009655116,0.0258145774027729,0.0284679991385763,0.0307290971273634,0.0334505955687218,0.0358272625168729,0.038598881251677,0.0408106291681745,0.0432701770379041,0.0454738852049022,0.0478601203779743,0.0501797343058088,0.0680529300567107,0.0844638445756395,0.1003944855949808,0.1156685808039376,0.1302459439800124,0.1483044126510801,0.1623837351122612,0.1761501468272545,0.1886345192841583,0.2010334144485061,0.21520295361829,0.2291479578036245,0.2419133801744578,0.2545802570412906,0.2661077369949828,0.2786440452723205,0.2893086673212532,0.300220502205022,0.3095538075617757,0.3179235773847704,0.3255117035185764,0.3328810545892646,0.3400312596206218,0.3466933627469787,0.3530233801584601,0.3583715313716792,0.3646843824711169,0.3683782099385675,0.3733207361582067,0.3774067626734187,0.3768217356784325,0.3767631774313288,0.3755682218000141,0.3736693868708023,0.3724654890900994,0.369615725596894,0.3671116025590396,0.3678413015369003,0.3686094069529652,0.3691478732514987,0.3704495182394181,0.372018983587107,0.3725235329881129,0.3732334335322356,0.374045617669019,0.3760444223264098,0.3770914508365803,0.3817150063051702,0.3863957098504093,0.3898852223816356,0.3931850363129767,0.3960006381960325,0.3986546516055337,0.3999384946567233,0.3999046711153479,0.4029330448371198,0.403125,0.4041847938678268,0.4022566995768688,0.4074220292143703,0.0,2.9689652596972875,64.45235352031206,214.7967695462547,321.7596670488264,CHI_public_baseline,80 +100000,95657,50866,480.37258120158486,7216,74.00399343487669,5678,58.64704099020459,2179,22.350690487889025,77.31725194233033,79.72590390527138,63.30264576078415,65.0849996167848,77.03725295517407,79.44854051670902,63.19694590262384,64.98406231345692,0.2799989871562616,277.36338856236387,0.1056998581603139,100.93730332788198,176.83842,123.7913456652513,184867.2026093229,129411.69560539351,348.30811,220.6711248375125,363420.4710580512,229988.5369993963,425.45571,204.8070201720929,440548.5745946455,210870.68145819436,4007.75113,1851.941169002471,4140995.138881629,1887307.5248047395,1365.73389,609.8946835383248,1408674.9741263054,618519.3070432115,2134.32882,907.4959204970154,2190166.929759453,910357.0793304692,0.43289,100000,0,803811,8403.054664060131,0,0.0,0,0.0,28718,299.4971617341125,0,0.0,38792,401.3192970718296,1538449,0,55348,0,0,15778,0,0,61,0.6376950981109589,0,0.0,0,0.0,0,0.0,0.07216,0.1666936173161773,0.3019678492239467,0.02179,0.3373366767850073,0.6626633232149928,24.19815022956707,4.218459448914928,0.3089115885875308,0.2585417400493131,0.216273335681578,0.216273335681578,11.001771080597663,5.694812337347461,23.31661525376665,14295.886373780988,65.27146901869943,17.885230509411375,20.17159298791849,13.698366750354465,13.51627877101511,0.5792532581895034,0.8017711171662125,0.709806157354618,0.5871335504885994,0.1188925081433224,0.7419154228855721,0.9206349206349206,0.858252427184466,0.7297297297297297,0.149812734082397,0.514987714987715,0.7269700332963374,0.6481033091202583,0.5490196078431373,0.1103017689906347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028772022247662,0.0053947168280687,0.008108629245867,0.01052749240415,0.0129928269827542,0.0157583783233166,0.0184848917634097,0.0211366167111056,0.023572502839136,0.0260332356617421,0.0286450050785377,0.0310737075742162,0.0333209807917979,0.0357547889560179,0.0380170410534469,0.0406721089279986,0.0431028227269428,0.0455791638108293,0.0476938603518774,0.0502157913391572,0.068230499973878,0.084985390681454,0.1009806186086554,0.1156476902030937,0.1300209966553066,0.1481614767459091,0.1628558690529265,0.1767500319543266,0.1898770710849812,0.2019678533874117,0.2171547395867002,0.2314738620122136,0.2452836350573148,0.2565453052285792,0.2669443434376825,0.2797046170222202,0.2906902749712525,0.3015035224740597,0.3113572652676737,0.3193722075839156,0.3276177464919186,0.3351240007958522,0.3417208657639407,0.3478839786958399,0.3535642191794148,0.3582730616375799,0.3639165956593654,0.3688103999286978,0.3744801046916907,0.3789476462592216,0.3779842456069481,0.3762917096663227,0.3747589216583374,0.3746568414968935,0.373457203686334,0.3715957789963596,0.3689077096318853,0.3694886812319031,0.3697849848617027,0.3698355968548963,0.3700887912748024,0.3706336633663366,0.3713311872751373,0.3724323717588955,0.3738503243295575,0.3732567893467547,0.3747818374295442,0.3776537017759692,0.3794794018058691,0.3829209896249002,0.3857660716743908,0.3873054916849366,0.3897842639593908,0.3935875749654006,0.3952362877206301,0.3982859183430544,0.4034055727554179,0.4103504482477587,0.4172077922077922,0.4353869271224643,0.0,2.7663168630551174,70.51450398343866,221.1273273177328,293.6889777228872,CHI_public_baseline,81 +100000,95852,50801,477.6634812001836,7336,75.0219087760297,5831,60.1969703292576,2231,22.816425322371988,77.4717338221379,79.758240763227,63.40399372213196,65.09085100149218,77.19421257410892,79.48201929762268,63.30016960189887,64.9903387001963,0.2775212480289895,276.2214656043085,0.1038241202330922,100.51230129587908,178.24466,124.770808479889,185958.2064015357,130170.27133485892,353.01271,222.84374330531375,367661.9684513625,231870.76242498212,427.27582,205.98805311478003,441683.6581396319,211794.7935337781,4134.61114,1907.040802932616,4269383.320118516,1946183.666259221,1390.95551,618.7336871212982,1434295.5389558903,628879.8284666919,2186.30304,923.2698949566472,2237972.3114801985,928133.4297754624,0.43457,100000,0,810203,8452.645745524349,0,0.0,0,0.0,29056,302.4767349664065,0,0.0,38957,402.4642156658181,1536731,0,55209,0,0,15902,0,0,82,0.8450527897174811,0,0.0,1,0.0104327504903392,0,0.0,0.07336,0.1688105483581471,0.3041166848418757,0.02231,0.3335066961383435,0.6664933038616565,24.50538926631452,4.310970667614903,0.3239581546904476,0.2466129308866403,0.2148859543817527,0.2145429600411593,11.46908062218202,6.036443194860221,23.747453963685835,14335.66995646778,66.40514953471674,17.38745954971596,21.442006401979867,13.8457274495541,13.729956133466828,0.5734865374721317,0.778164116828929,0.7035468501852832,0.5979216626698641,0.1181165203511572,0.7404718693284936,0.9082397003745318,0.8799283154121864,0.7474048442906575,0.1176470588235294,0.5074198180947822,0.7013274336283186,0.6296018031555222,0.553014553014553,0.1182466870540265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026824577386375,0.005592081936157,0.0084974345454176,0.0113073487616727,0.0139521177140069,0.0163500768158556,0.0186924456034553,0.0213282469221432,0.0240283479361967,0.0267119365131309,0.0290867378813793,0.031444541305574,0.0339928500986193,0.0365469698528655,0.0393048211027615,0.0416365476362584,0.0439424031777557,0.0466601026066227,0.0489076258514703,0.051285253408263,0.0688446979571832,0.0851088297405231,0.1012167388046405,0.115956496611149,0.1303862045703685,0.1488761075045991,0.1641374775978536,0.1770526338188511,0.1909241364582777,0.2034194447422017,0.2185855280860178,0.2322326109279576,0.2454330212655038,0.2580292887486213,0.2686793447809894,0.2803781721678554,0.2915051031777867,0.3013534003481777,0.3107702416422154,0.3193608893565432,0.3272964575705425,0.334453781512605,0.3419187145557656,0.3478364924372966,0.3539259007477906,0.3599492560843433,0.3648072426254517,0.3695710200190658,0.3748188780790726,0.3796997930970862,0.3782791185729276,0.3768227378827406,0.3751370960938159,0.3734503834400046,0.3718899202277512,0.3700200192551614,0.3679506009064923,0.368753787444519,0.3689977166615547,0.3695748883392352,0.370763622768483,0.3716859513906684,0.3717828095925066,0.3722865493161992,0.3737598849748382,0.3747724790680742,0.3759082652134423,0.3786237555569469,0.3817593430301343,0.384866866236017,0.3905883414546111,0.3948593188068542,0.3975964260995406,0.4003209291663482,0.3998100664767331,0.4005980861244019,0.4074187614960147,0.4069202751922298,0.4100383982446516,0.4116743471582181,0.0,2.482660377737712,72.68618661080474,214.11893692873315,311.44533036840545,CHI_public_baseline,82 +100000,95737,50816,479.14599371194,7232,74.31818419210964,5729,59.2143058587589,2272,23.313870290483305,77.34438518034166,79.6946585176189,63.33412346583962,65.07136475476398,77.05931175196967,79.41214063581765,63.22862244777614,64.96974408182565,0.2850734283719873,282.5178818012546,0.1055010180634781,101.62067293832422,176.58366,123.6003510137495,184446.15979193,129103.60426350257,349.1281,221.27083104879677,364025.7580663693,230475.69199870137,422.21164,203.59022229026303,436914.1084429218,209582.87744946583,4058.03632,1860.794362983129,4196548.1161933215,1901502.5326499983,1376.4727,607.1875704553382,1423515.2657802105,620026.3479113807,2223.37824,931.293103732502,2284592.9995717434,940512.092019052,0.43214,100000,0,802653,8383.916354178637,0,0.0,0,0.0,28767,299.83183095354985,0,0.0,38462,397.6623458015188,1539927,0,55415,0,0,15674,0,0,66,0.6789433552336088,0,0.0,1,0.0104452823882093,0,0.0,0.07232,0.1673531725829592,0.3141592920353982,0.02272,0.3324110671936759,0.6675889328063241,24.688600051179183,4.253795540209821,0.3176819689300052,0.2455925990574271,0.2232501309128992,0.2134753010996683,11.22502390437408,5.972610179916244,24.23096746659394,14258.806766645694,65.4442772734052,17.045600677738886,20.735119561247554,13.705253500456324,13.958303533962432,0.5761913073834876,0.7796730632551528,0.7137362637362638,0.6075224856909239,0.1266614542611415,0.7432598039215687,0.9035916824196596,0.8544061302681992,0.7753164556962026,0.1660377358490566,0.5096412008786917,0.7050113895216401,0.6571648690292758,0.5490628445424476,0.1163708086785009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728293018921,0.0052619305911814,0.0077821406467192,0.0105217188182362,0.0130650507350997,0.0157889914794417,0.0181916389800452,0.0208173886422776,0.0234594517272736,0.0258467205566356,0.0283834740552504,0.0310476131826626,0.0336112853309205,0.0361681530761467,0.0385500159894366,0.0407882771164021,0.0433599006314046,0.0457651902475447,0.0483277557213827,0.0505926959855003,0.0684463840138646,0.084539470241646,0.1001793599681137,0.1150933871781928,0.129028176143074,0.1465098818826863,0.1618795078489605,0.175389689844124,0.1889172532390545,0.202300921011719,0.2170673672197159,0.2309157001904102,0.2441440657691554,0.2560620968623592,0.267513611615245,0.2790216139604925,0.290164519945532,0.3005174353205849,0.3089536995006809,0.3173894119533594,0.3254640559181595,0.3338132359482173,0.3408595784986976,0.3464312718282306,0.3523382213467571,0.358686257562662,0.3643718095046971,0.3696409209771031,0.3737608345876368,0.3783769488118694,0.3766314313450544,0.3750223850784511,0.3738291389233721,0.3730623941643871,0.3706852905262531,0.3684760397621645,0.3661036340234853,0.3661162603098299,0.3667666466706659,0.36772794868579,0.3688367369965023,0.3700904546536538,0.3703228250347237,0.3728440036879624,0.3748305248886306,0.37583857442348,0.3768838461979256,0.3779916423958465,0.3834716581317323,0.3866437259923175,0.390690855781565,0.3923216962947098,0.3943947752203411,0.3990710424122439,0.3982626758568596,0.3985024958402662,0.4052136356625019,0.418272218769422,0.4125070106561974,0.4112998814697748,0.0,2.407640807405892,72.07571208364118,205.75104736253752,312.58489712233506,CHI_public_baseline,83 +100000,95673,50755,480.4699340461781,7142,73.3749333667806,5643,58.40728314153418,2139,22.012480010034174,77.28108161739658,79.66782501251096,63.29287913429015,65.05543812223013,77.01630858492496,79.40175394609068,63.19455674964556,64.95840146070925,0.2647730324716235,266.071066420281,0.0983223846445966,97.03666152087465,177.68256,124.40386709664529,185718.6039948575,130030.27719068628,349.27537,221.15076274213905,364502.7123639898,230584.2890768033,423.98898,204.32340972077023,439056.2854723904,210395.3757603785,3947.01189,1816.6718104098668,4089927.46124821,1863347.4304917343,1318.34482,584.7733045771508,1364095.8368609743,597387.6212423727,2089.2049,880.9933584595477,2152548.0334054544,896269.1433610719,0.4321,100000,0,807648,8441.754727038977,0,0.0,0,0.0,28663,298.99762733477576,0,0.0,38599,399.3707733634359,1531698,0,55111,0,0,15824,0,0,79,0.8257293071190409,0,0.0,2,0.0209045394207352,0,0.0,0.07142,0.1652858134691043,0.2994959395127415,0.02139,0.3367578385590393,0.6632421614409606,24.322697487195025,4.282656035649868,0.328194222931065,0.2498670919723551,0.2096402622718412,0.2122984228247386,11.357664256043035,5.99557713458596,22.93338603566765,14174.520919472225,64.91036152397665,17.064782103861372,21.167539851062543,13.53496807791757,13.143071491135151,0.5777068934963672,0.7836879432624113,0.7057235421166307,0.6018363939899833,0.1073541842772612,0.7253655435473617,0.9048507462686568,0.8752598752598753,0.6996587030716723,0.1140684410646387,0.5206388206388206,0.7093821510297483,0.6462436177972283,0.5701657458563536,0.1054347826086956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028668388796028,0.0054339561431076,0.0078244720257365,0.0101390821997135,0.0129568984805646,0.0157020080648446,0.0180170075657156,0.0204598358312574,0.02304114490161,0.0257423310371651,0.0282576821728476,0.0307610168795433,0.0328568490333196,0.0350721740832706,0.0376390694986273,0.0399301068042473,0.0424068530468919,0.0445553802723347,0.0467457898623838,0.049100535718008,0.0666102527136156,0.0833664900634515,0.0997774792173986,0.1146380211895167,0.1289917606473325,0.146215038293911,0.1615043308423913,0.1755809742901569,0.1891004736600126,0.2005862961332374,0.215748031496063,0.2296028959119088,0.2424384346443314,0.2535866827291644,0.265211210174236,0.2762801739439119,0.2879135130300625,0.2983559266646383,0.3072122762148337,0.3166353124713223,0.3233900033607991,0.3310320576686397,0.3379919087899963,0.344963894796285,0.3514227295961833,0.3565724019601792,0.3623175685841817,0.366614366078604,0.3714048277563528,0.3755526726853935,0.3744392801167378,0.3729955941052166,0.3717914230295479,0.3712452271374439,0.3703582040523793,0.3683393052116813,0.3653131255361738,0.3649390696370562,0.3659348770147101,0.3674522806703109,0.3679414035285921,0.3689248895434462,0.3698956969722562,0.3710691823899371,0.3718793930874012,0.3742667085690341,0.3763869376989019,0.3799126637554585,0.3835968588231151,0.3852067234923922,0.3885970121979076,0.3917136474843102,0.395372360601846,0.3974933535890619,0.4032106646639128,0.4052379282123232,0.4099908620164483,0.4063001605136436,0.4079655543595263,0.4076628352490421,0.0,2.226624266505306,69.64697971701172,219.6637370875229,297.0440155429279,CHI_public_baseline,84 +100000,95713,50897,479.3810663128311,7126,73.02038385590255,5596,57.74555180591978,2225,22.81821696112336,77.3612597271838,79.72668466506491,63.34108899169471,65.08940490063121,77.07376213265374,79.44087885535058,63.233793485538456,64.98574919625449,0.2874975945300662,285.8058097143328,0.1072955061562552,103.65570437672034,177.60512,124.30650516975658,185560.08065779987,129874.21266678152,349.61252,221.2149468613225,364534.5982259463,230386.0780263105,418.74976,202.36489990830887,432756.0937385726,207813.7105010328,3987.72849,1842.5270253543383,4120887.601475244,1879602.233086766,1330.49048,601.2516015793298,1372644.269848401,610831.3711527085,2180.33882,927.3989955562774,2238430.495335012,934289.307112496,0.43346,100000,0,807296,8434.549120809086,0,0.0,0,0.0,28803,300.1682112147776,0,0.0,38183,394.2411166717165,1537769,0,55297,0,0,15730,0,0,60,0.6164261907995779,0,0.0,1,0.0104479015389758,0,0.0,0.07126,0.1643980990172103,0.3122368790345214,0.02225,0.327381745502998,0.672618254497002,24.870419461101367,4.319139743549425,0.3289849892780557,0.2376697641172266,0.2251608291636883,0.2081844174410293,11.291464586881244,5.931975033807063,23.808759932080516,14354.41294517825,64.12967517504188,16.117276966317043,21.03630401802269,13.148538897361464,13.827555293340687,0.5679056468906362,0.8075187969924812,0.6979902227050516,0.5665236051502146,0.1261904761904762,0.7335811648079306,0.921104536489152,0.8465909090909091,0.7096774193548387,0.1858736059479553,0.5007533902561527,0.7375455650060754,0.6382330540746383,0.5146198830409356,0.1099899091826438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029375715399965,0.0058905831778733,0.0085344320188346,0.0112870945129075,0.0140750533916403,0.016710453962241,0.0192931291171252,0.0216980650431408,0.0241393765272424,0.0268529893529893,0.0296002378682087,0.0321474056119304,0.0342798959158275,0.0369420321208187,0.0394101378684058,0.0419854431164964,0.0444067024295271,0.04673100871731,0.0490828168545401,0.0512967458919882,0.0688740615439233,0.0858401892440704,0.1012776402467167,0.1157809509789489,0.130210693845716,0.1480005496770647,0.1626898277763638,0.1772111485947194,0.1903637626195181,0.2029356893187228,0.2181634125590962,0.2318320007789762,0.2449816228442182,0.2565955632332199,0.2682787362957587,0.2798631789853548,0.2905071550464548,0.3004744451689789,0.3100757610125663,0.3202670514406119,0.3284243405830634,0.3359210587850161,0.3421021490106977,0.3486756196614474,0.354944001553153,0.3601649535298824,0.3652242407571798,0.3701583667239077,0.375139252312236,0.3799416185658244,0.3785833602758918,0.3781690625214939,0.3769196088928964,0.3757666049525572,0.37409418942043,0.3710444737730579,0.370062007390139,0.3708234675085504,0.3709316047820212,0.3712526622876881,0.3717609034706954,0.372698198287678,0.3728214195503915,0.3729441898085737,0.3740563298490127,0.374220866317755,0.3756004947789316,0.3810416600463949,0.3841054907660132,0.3854266923323708,0.3874369555249885,0.3912510656436487,0.3924690422036896,0.3982273838630807,0.3990782543265613,0.4046263345195729,0.4083256810529538,0.4114891016500305,0.4132091447925486,0.4184168012924071,0.0,2.827748149042743,70.76827986917365,206.6176224124192,296.3888059059641,CHI_public_baseline,85 +100000,95641,50666,479.532836335881,7085,72.67803557051892,5585,57.70537740090547,2228,22.887673696427264,77.2430810454354,79.64753823642134,63.27207635196621,65.04994496874711,76.96948029719817,79.37293318591286,63.17051697778764,64.95031360236204,0.2736007482372287,274.6050505084838,0.1015593741785778,99.63136638506852,177.12684,123.93029723689358,185199.2346378645,129578.20293856756,348.66722,221.20767830742665,363842.6929873172,230575.3474315402,422.87311,203.8096677316264,436577.0642297759,209018.3710420964,3967.32312,1819.6908777688184,4105519.097458203,1860177.207829735,1314.42829,583.1741459793609,1358573.3001537,594146.2568043821,2173.14796,907.943265056314,2235556.1526960195,920348.9300493114,0.43166,100000,0,805122,8418.14702899384,0,0.0,0,0.0,28707,299.42179609163435,0,0.0,38424,396.28402045148,1533475,0,55180,0,0,15778,0,0,80,0.8364613502577346,0,0.0,3,0.031367300634665,0,0.0,0.07085,0.1641338090163554,0.3144671841919548,0.02228,0.3305985205110961,0.6694014794889038,24.39148731009616,4.306988700610165,0.3398388540734109,0.2320501342882721,0.2134288272157564,0.2146821844225604,11.210686439880384,5.953284011955563,23.847337001101515,14180.679202770409,64.11355004413336,15.78286937388804,21.765384241319406,13.425229748737484,13.140066680188424,0.5760071620411817,0.8009259259259259,0.7086406743940991,0.5738115095913261,0.12248322147651,0.738471673254282,0.9307535641547862,0.8630952380952381,0.6736842105263158,0.1554621848739495,0.5153675928202607,0.7217391304347827,0.6527977044476327,0.5426695842450766,0.1142557651991614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023410896708286,0.0048587020469437,0.0074109417987269,0.0100996758755931,0.0130196413495671,0.015744182494017,0.0182309457048177,0.0211056199967325,0.0236420157068062,0.0260716406906015,0.0285608803109392,0.030736210809534,0.0328057672333117,0.0351292881425775,0.0374579385231518,0.0398308327042984,0.0422748226032009,0.044443521853301,0.046732957500364,0.0491634089132134,0.0666046667154306,0.0828096195743254,0.0991685213958762,0.1144793903414593,0.1288044338875693,0.1463355247139031,0.1614260219257244,0.1749642864757681,0.1883980442295141,0.2005649414114943,0.2154410574588616,0.229803564459477,0.2419746631373702,0.2531326673676831,0.2652901490431255,0.2767291410055816,0.2878821766455682,0.2984904681916057,0.3080719069439548,0.3169257241181531,0.3247843428253408,0.3312401883830455,0.3379944540563601,0.3441408782080522,0.3513720811317539,0.3569822602164352,0.3627067178599212,0.3674993298699309,0.3723780313466587,0.3767893322033449,0.3756295146155404,0.374437853497034,0.3725334991801888,0.3711948718692442,0.3697573061882444,0.3678624169333005,0.3654865144402896,0.3659253388809087,0.366686700437881,0.367276908427804,0.3680066464001812,0.3690756168533503,0.3698514517218096,0.3709960805514258,0.3714264965747622,0.3728813559322034,0.3720534348942554,0.374702276985614,0.3796224004542551,0.3861302404252749,0.3914250034688497,0.3949534620971647,0.3988520408163265,0.4024362038393339,0.4048621745788667,0.4092488319156583,0.4120861961274203,0.4131822863027806,0.4152990264255911,0.4165378670788253,0.0,2.6588758212752173,66.6914306922227,214.5662613228873,303.9577691488382,CHI_public_baseline,86 +100000,95808,50762,477.8932865731463,7325,75.07723780895122,5863,60.5064295257181,2322,23.73496993987976,77.44904619750217,79.77363880687548,63.38601454967061,65.10605739687931,77.16010634322575,79.48685648878546,63.278593422665885,65.0022865264851,0.2889398542764212,286.78231809001886,0.1074211270047271,103.7708703942144,177.40646,124.10415329354704,185168.7332999332,129534.22813705224,350.55287,221.4819106103401,365208.2707080828,230489.91797171443,425.49347,205.35811893150213,439451.0583667335,210770.9914651401,4149.70923,1898.169773298637,4286373.517869071,1936319.8097221905,1362.5513,605.0131081283694,1408076.6741816967,617393.0236810796,2262.2416,956.629846496367,2315890.6771877087,962820.4269524736,0.43209,100000,0,806393,8416.760604542418,0,0.0,0,0.0,28902,300.94564128256513,0,0.0,38763,399.95616232464926,1541823,0,55442,0,0,15925,0,0,59,0.615814963259853,0,0.0,1,0.010437541750167,0,0.0,0.07325,0.169524867504455,0.3169965870307167,0.02322,0.3347177157689812,0.6652822842310189,24.257649327891613,4.358178538306636,0.3314003070100631,0.2334982091079652,0.2150776053215077,0.2200238785604639,11.120920264571495,5.799433808424979,24.982056517487607,14233.286365421987,66.68827394763825,16.509253963024733,21.99295387911204,14.347487306926512,13.838578798574952,0.56899198362613,0.7962016070124178,0.7040658775090067,0.5720930232558139,0.1110229976209357,0.7256857855361596,0.9274509803921568,0.8548707753479126,0.7032258064516129,0.1530249110320284,0.5099788682789387,0.7182770663562281,0.6513888888888889,0.5306122448979592,0.0989795918367346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028457713458169,0.0057981004125571,0.0085639199212606,0.0110929389177273,0.0137994854429156,0.0162096667447282,0.0189431399936788,0.0216679084293573,0.02408788962698,0.0268287442060349,0.0289593687554439,0.031537356321839,0.0338507401315789,0.0363750553399157,0.0388308460277024,0.0414290437226217,0.0440821818558194,0.0462888073166179,0.048489319258582,0.0509603872781219,0.0677029000625912,0.0842630252715885,0.0995692320591965,0.1153070230740133,0.1291716281863494,0.1466031115244778,0.1611737143947505,0.1748184070871752,0.1879134479962443,0.2004626555572215,0.2161662221457455,0.2300229050520766,0.2435801383324104,0.2558799454297408,0.2669352890801695,0.2781020606703812,0.2898802561960457,0.3008195801055349,0.3099109913256177,0.3186052093214624,0.3260734000046192,0.3335045408913688,0.3411723038781654,0.3479435999856488,0.3533149037295698,0.3589932836371688,0.3636045800192291,0.3680355442716598,0.3721020392339303,0.3761751770995181,0.3746438746438746,0.373366316223459,0.3718325712275765,0.3705794862168055,0.3682929724596391,0.3662980129411224,0.3639193010727207,0.3640639082343302,0.3643537693238567,0.3655377598831305,0.3661160271640507,0.3675426136363636,0.3689015452908413,0.370036464508624,0.3703258097117282,0.3711831315892229,0.3716899923039649,0.3756647053270822,0.3785260930888575,0.3817279046673287,0.3880263037720339,0.3898178321491533,0.3916212447712004,0.3962220862649128,0.396074340982363,0.3978162829337764,0.401104802823385,0.4045333877884419,0.4031500414479138,0.4086226631056848,0.0,2.721121127750728,70.31570324642593,218.17634237285347,319.21297153311554,CHI_public_baseline,87 +100000,95805,51197,482.1877772558843,7228,73.96273680914356,5732,59.22446636396848,2195,22.514482542664787,77.3497797498425,79.68385930362808,63.33168066437421,65.06030324372942,77.07707557316982,79.41262398690156,63.22966572719351,64.96198669708193,0.2727041766726756,271.2353167265178,0.102014937180705,98.31654664749578,176.51568,123.57461511173722,184244.74714263348,128985.5593254394,350.29294,221.9400600474359,365023.871405459,231050.82203166423,426.09204,205.39224474657084,441466.0090809457,211831.7420268271,4067.89692,1868.1245097871445,4200618.255832159,1904524.7218695723,1338.13908,603.3320734580909,1378292.5317050258,611334.7446653038,2141.88428,899.4772232768826,2197951.0255205887,905015.9997010552,0.43638,100000,0,802344,8374.761233756066,0,0.0,0,0.0,28806,300.0365325400553,0,0.0,38898,402.672094358332,1539588,0,55374,0,0,15663,0,0,57,0.5949585094723657,0,0.0,0,0.0,0,0.0,0.07228,0.1656354553370915,0.3036801328168235,0.02195,0.3391488236849062,0.6608511763150938,24.440028827663856,4.269881412180767,0.325191905094208,0.2424982554082344,0.2119678995115143,0.2203419399860432,11.509153839913646,6.128169078172065,23.33898084895903,14422.496582740512,65.30212169511127,16.927962427581498,21.223147020237544,14.00163755128881,13.149374696003417,0.571877180739707,0.7841726618705036,0.7129828326180258,0.569279493269992,0.1152263374485596,0.7455108359133127,0.9236499068901304,0.8810916179337231,0.708904109589041,0.1794871794871795,0.5037648773378673,0.6963657678780774,0.6491487786824575,0.5272914521112255,0.0966029723991507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024413963571529,0.0052926683362568,0.0079160492824811,0.0104847148706173,0.0130810700844268,0.0157629448602413,0.0183625611745513,0.0209670998234027,0.0236007195715278,0.0263260250977502,0.0286827268067657,0.0310286054582417,0.0336952721738951,0.0363703764725265,0.0387959935219665,0.0412382851651701,0.043630830383206,0.0462409758526263,0.0487407007190058,0.051133878927969,0.0681607144720231,0.0844531356206929,0.1004203398358473,0.1163802617058174,0.1307478231536337,0.1484285774713421,0.163201222099635,0.1777841640855339,0.1907961501073568,0.2037350896764781,0.2179657108374012,0.2321239148788777,0.2449656763019615,0.2570491444814956,0.2681021488221637,0.2803612989028039,0.2915141096624397,0.3007425742574257,0.3095408365968556,0.3192457066917181,0.3276692286322807,0.3361101685991412,0.3434584970879303,0.3508425013782028,0.3563661105913515,0.362752347851808,0.3689965345977256,0.3732739420935412,0.3774523134299367,0.3827230592491846,0.382069876529897,0.3809504115141238,0.3810780301961338,0.3796587565052259,0.3785200518235022,0.3766783801617383,0.3742108435646077,0.3749876648794447,0.374929350711631,0.3754792704339413,0.3769875577942337,0.3785032826229248,0.3792023869557909,0.3801197121528011,0.3812037505724684,0.3829442367519803,0.3845143607605779,0.389784100207717,0.3947617544966866,0.3971827642147746,0.4006562158220926,0.4028183993618718,0.4070393112616319,0.4084582852748942,0.4128275470627187,0.4128473046782237,0.4197568856747192,0.4250101337657073,0.4305251641137855,0.4357281553398058,0.0,2.274326160991051,71.40908086138201,207.11209107163245,312.24700800658087,CHI_public_baseline,88 +100000,95789,50824,478.59357546273577,7358,75.28004259361722,5803,59.89205441125808,2320,23.78143628182777,77.41775944651599,79.7471702245711,63.37436231324406,65.09562577471463,77.12510491784116,79.45330644718028,63.26609355571259,64.98943387396201,0.2926545286748307,293.86377739081126,0.1082687575314764,106.19190075261996,176.97086,123.83717127206047,184750.71250352336,129281.20271853812,348.19727,219.6543075232574,362826.0656234015,228632.28830972363,421.05381,202.83412319030856,434583.87706312834,207989.08916075225,4165.81957,1911.9740775180744,4301033.615550846,1948635.649474796,1407.84348,626.8546541559904,1451678.6165426092,636584.0285419256,2273.10304,954.2283516359907,2333003.622545386,964040.8770014676,0.43512,100000,0,804413,8397.759659251062,0,0.0,0,0.0,28590,297.74817567779183,0,0.0,38565,397.70746119074215,1544667,0,55606,0,0,15687,0,0,66,0.6785747841610206,0,0.0,0,0.0,0,0.0,0.07358,0.1691027762456333,0.3153030714868171,0.0232,0.338860103626943,0.661139896373057,24.47059060171304,4.342179968006758,0.3153541271755988,0.2384973289677752,0.2224711356195071,0.2236774082371187,11.190213356330691,5.80511475101641,24.74594957234269,14338.636270825406,66.23613721341373,16.666577749135552,20.934093053677856,14.558572319949576,14.076894090650738,0.5660865069791488,0.7752890173410405,0.719672131147541,0.5624036979969184,0.1278079008520526,0.7152690863579474,0.8995901639344263,0.8725099601593626,0.6904024767801857,0.1508771929824561,0.5093935790725327,0.7075892857142857,0.6618975903614458,0.52,0.1212723658051689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029161899168683,0.0058285100301055,0.0086046818398595,0.011090573012939,0.0137273244936142,0.0164807198990186,0.0188971562531852,0.0214440271086796,0.0240397391606533,0.0268046301697933,0.0291618405272706,0.0315961279858751,0.0343849261417954,0.0369180719418535,0.0394609308943927,0.0417492976367542,0.0442112453041075,0.0467363357385751,0.0490749109192715,0.0509411568733602,0.0686949626476357,0.0852743163000752,0.1003501195018659,0.1148601802634619,0.1292418848608683,0.1472626619054662,0.162468220338983,0.1764124263752153,0.1891718861703603,0.2024254630770384,0.2175844267584426,0.2311930768482805,0.2448638318203535,0.2564040968749317,0.2692962698456298,0.2806943783676134,0.2906585197243717,0.3003493871681664,0.3101818799932007,0.3189093946293521,0.3258663337725686,0.3329400357472459,0.3395813882027584,0.3469646878443773,0.3530090483998299,0.3578629529208775,0.3642424697288102,0.3692499491145939,0.3745775660032888,0.3797897458219567,0.3795405299920595,0.3786570842454532,0.377898371978293,0.3770780929250875,0.3752639562204443,0.3730771000444778,0.3713701820255691,0.371183990010187,0.3708149084017688,0.3710071955291303,0.37250267319489,0.3736864975902662,0.3742193721446833,0.3752822048863357,0.3762896538424453,0.3783960292580982,0.3799313893653516,0.3840497380546613,0.3863572334131568,0.3910067648229208,0.3928081878826647,0.3958155422715628,0.3995949623441554,0.404173992814005,0.4089268755935422,0.4120898930417017,0.4143706950532247,0.4183610597658657,0.4126589275843007,0.4180967238689547,0.0,2.6545819900345795,70.08674222511007,220.2701704169968,311.1362136079072,CHI_public_baseline,89 +100000,95698,50804,478.62024284729046,7304,74.67240694685366,5692,58.66371293025978,2292,23.50101360530001,77.3893283971574,79.74984940727947,63.35181630130408,65.09349147405145,77.0998333637317,79.46312684109003,63.24493067003319,64.99082679674211,0.2894950334256947,286.7225661894395,0.1068856312708845,102.6646773093347,177.96504,124.56131844848797,185965.26573178123,130160.83768572797,348.83486,220.81339815729945,363651.8004555999,229875.2723748661,420.8212,203.3514580575101,434086.6789274593,208185.78943336027,4121.30221,1901.0633066666144,4250345.012434952,1930297.6725392544,1366.80348,609.8598188618511,1409161.466279337,618190.2222218338,2251.82172,943.0435899059714,2310728.1238897364,949042.0271714304,0.4337,100000,0,808932,8452.966624171875,0,0.0,0,0.0,28727,299.32704967710924,0,0.0,38353,395.2851679240946,1536363,0,55198,0,0,15617,0,0,78,0.7941649773245001,0,0.0,0,0.0,0,0.0,0.07304,0.1684113442471754,0.3138006571741512,0.02292,0.3359895493141737,0.6640104506858262,24.57346395665277,4.3692253731099,0.3137737174982431,0.2385804638088545,0.2319044272663387,0.2157413914265636,11.272367764618162,5.76494661211798,24.36305225069417,14330.981458048083,65.0665199333276,16.597208060907917,20.157908732727936,13.92758188740859,14.383821252283155,0.5657062543921293,0.8114874815905744,0.6926091825307951,0.5871335504885994,0.1212121212121212,0.7268722466960352,0.9123134328358208,0.8704103671706264,0.7097791798107256,0.1391941391941392,0.5032902754082379,0.745742092457421,0.6303854875283447,0.544456641053787,0.1165234001910219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026433859647345,0.0053310630707328,0.0082874329245407,0.0107125087578566,0.0135923711927127,0.0162144005862834,0.0188223544757867,0.0215811922205669,0.0244617695443816,0.0270544055500414,0.0295727021211189,0.0320618049000697,0.0345355528154541,0.0368193515182707,0.0392203372350848,0.0418432093917285,0.0442484289426551,0.0465842374955915,0.0489455248469477,0.0511792158006583,0.0683109180519589,0.0842603154006341,0.1002464991870771,0.1148766587453471,0.1289295578654409,0.1465390513457775,0.161595909447733,0.1757553818963865,0.1889931193640754,0.2017459193960062,0.217092084006462,0.2321115606811346,0.2451695680066109,0.2577215854405459,0.268065062839786,0.2798054336746,0.2908051623275131,0.301989109401017,0.3111421371654294,0.3199757064607063,0.3283278187834054,0.3353020981965334,0.34213483810673,0.348229796920865,0.3539750986941998,0.3591616973042235,0.3644194053208138,0.3688797842019544,0.3743506030808297,0.3790636590420126,0.3781976235651905,0.3773475874024848,0.3758108773657919,0.3745643339551969,0.3733969357882692,0.371429883368537,0.3691842995856659,0.3693644936449364,0.3700915113023287,0.3699958913163865,0.3708882349633572,0.3716766893495806,0.3731337015182377,0.3739183069542214,0.3749818884327457,0.3764583061464178,0.3784902643750357,0.3838040363968389,0.3864690178445974,0.3881361992927808,0.3924536931168534,0.3951634476486009,0.3977258289925041,0.4013001912045889,0.4025198938992042,0.4100848368980762,0.4106510697244882,0.4104340737721622,0.4123973959807529,0.4222746950019677,0.0,3.1275627663817147,69.18124682679782,214.9201189680745,303.7298678474628,CHI_public_baseline,90 +100000,95656,50543,477.6281676005687,7166,73.40888182654511,5643,58.22948900225808,2148,21.964121435142594,77.35982293729873,79.73725188697664,63.33991942654043,65.09073382736152,77.09197337813197,79.47365481064618,63.24060923266075,64.99688227540668,0.2678495591667627,263.5970763304556,0.0993101938796812,93.85155195484174,177.22628,123.96769802306508,185274.60901563935,129597.4094913702,348.28982,219.80634807389532,363330.9149452204,229013.17925856367,418.7446,200.926175478264,433947.6457305344,207048.75012254048,3989.25402,1817.3382950554096,4118126.045412729,1847644.8429067635,1332.03427,587.932194530773,1370799.542109225,592954.0554425137,2099.81054,879.4462342503606,2149064.9828552315,877548.7647829239,0.43165,100000,0,805574,8421.573137074516,0,0.0,0,0.0,28672,298.9357698419336,0,0.0,38195,395.406456469014,1541751,0,55396,0,0,15625,0,0,67,0.7004265283934097,0,0.0,0,0.0,0,0.0,0.07166,0.1660141318197613,0.2997488138431482,0.02148,0.3343940599310527,0.6656059400689472,24.62272840646582,4.268450207984661,0.3312068048910154,0.2374623427255006,0.213893319156477,0.2174375332270069,11.33248122102789,5.969614222863078,22.79348863085472,14243.769883398549,64.26400298322658,16.093586066519673,21.265695797332214,13.754315551887206,13.150405567487482,0.5709728867623605,0.7888059701492537,0.6976993044408775,0.5835370823145885,0.12013256006628,0.7386363636363636,0.915032679738562,0.8613861386138614,0.7290969899665551,0.1373390557939914,0.5104895104895105,0.7230419977298524,0.6370967741935484,0.5366379310344828,0.1160164271047227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026329647182727,0.0053212515583665,0.0079439963475878,0.0105726066909061,0.0132178298356922,0.0158481347651279,0.0184228492240597,0.0207321552462963,0.0231873991297064,0.0257283738440134,0.0281414551191427,0.0306851057717955,0.0331270813633186,0.0355131333724605,0.0380211664225445,0.0403605056173968,0.0426009897095057,0.0449934656792582,0.0474502261267349,0.0496816083209138,0.0674307565325504,0.08376003937214,0.0996735627840581,0.1140187505918747,0.1276436399691992,0.1448950220115137,0.1609269835877619,0.1752135841660097,0.1888938781619518,0.2014834852241866,0.2172718160949271,0.2321813436149589,0.2440139312146277,0.2555497175883357,0.2669008965350133,0.2797079612683078,0.2895571033127957,0.2996458485580977,0.3096658575868248,0.3177259822328052,0.3255488467855738,0.3334425040646602,0.3404494514987634,0.3473370229281966,0.3534765198398252,0.3595690981840566,0.3647900178787992,0.3700803417064985,0.3748738647830474,0.3783872925407003,0.3768732007856009,0.3748280226734907,0.3734812392523891,0.3719293682446101,0.3710242627624506,0.368328382888814,0.365949088374598,0.3662578502614014,0.3660178871260665,0.3678714715575297,0.3681817327746566,0.3693902632413574,0.3704490036155722,0.3716593739481656,0.3729557624583916,0.375173026195513,0.3752852578731173,0.3787635171348403,0.3814095800801857,0.383849249033903,0.3883677298311445,0.391511453650182,0.396914446002805,0.3992146596858639,0.4016315689622463,0.4085285285285285,0.4154343807763401,0.4199309924903592,0.4249322493224932,0.4271472392638036,0.0,2.8194989759751805,65.30540533469953,216.7042802997296,308.51263043079643,CHI_public_baseline,91 +100000,95844,50652,476.33654688869416,7127,72.94144651725722,5613,57.88573097950837,2205,22.526188389466217,77.34109898624328,79.63319057076076,63.34986309044478,65.04464479387593,77.05764524293377,79.35180381100753,63.24353660786343,64.94198253694603,0.2834537433095079,281.38675975323224,0.1063264825813519,102.6622569299036,177.10286,124.01233356836768,184782.41726138303,129389.77251405166,348.69017,221.16394209042383,363122.43854597054,230072.61405968515,424.93124,205.25920333427072,439151.7987563124,210852.32077439237,3972.26734,1847.1498584410645,4096890.864321189,1880592.7897713429,1308.48921,593.315607097833,1347686.9287592338,601631.8396165966,2147.00336,915.915559367894,2195796.1270397734,918578.0032609756,0.43064,100000,0,805013,8399.200784608322,0,0.0,0,0.0,28616,297.8485872876758,0,0.0,38735,400.0041734485205,1537908,0,55353,0,0,15699,0,0,76,0.792955218897375,0,0.0,1,0.0104336213012812,0,0.0,0.07127,0.1654978636448077,0.3093868387820963,0.02205,0.335029459025174,0.6649705409748259,24.18242067100425,4.280402286413359,0.3144486014608944,0.2504899340815963,0.2121859967931587,0.2228754676643506,11.510543510767883,6.20556778500282,23.647416618039586,14203.745226734229,64.62148521493766,17.076463003389165,20.26419762548491,14.110216822870475,13.17060776319312,0.5765187956529485,0.7823613086770982,0.7223796033994334,0.5811350919264588,0.1125104953820319,0.7394278606965174,0.9122486288848264,0.875751503006012,0.7413793103448276,0.1397058823529411,0.5111111111111111,0.69965075669383,0.6619273301737757,0.5327783558792925,0.1044613710554951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030479469393954,0.0058161331833703,0.0085303634279686,0.0110158994456515,0.0136096599109629,0.0162826671008711,0.0188982955876809,0.0214843152257077,0.0240230425101628,0.0267602320038462,0.0292029868786298,0.0315990277222239,0.0344384872948378,0.0367203736856184,0.0393100392585188,0.0419027567059892,0.044317606063426,0.0467891999419797,0.0490225595133042,0.0510096859101738,0.0682057538503248,0.0850908178834939,0.1001770356480657,0.1145326793610116,0.128310709057784,0.1457272631245378,0.161409939928168,0.1758889077917659,0.1885012326968846,0.2005488321238302,0.2160725049513476,0.2297192056418465,0.242214683368128,0.2539335425391167,0.26554915966849,0.2776663304775732,0.2884460817146684,0.2979549572870826,0.306664396003633,0.3149162408048216,0.3234054867461511,0.3310279455132706,0.3379661418255001,0.3438211947528717,0.3495393441427425,0.3549007995262067,0.3601097276849462,0.3656868488754171,0.3707907386532955,0.3757137570053928,0.3744166599228507,0.3734722279635677,0.3724036655794185,0.3711181700825319,0.3709078435174275,0.3684987089634821,0.366432477110885,0.3669856459330143,0.3676703372333104,0.3681917211328976,0.368610034961731,0.3687923475488242,0.3702678137352301,0.3720100286856549,0.3736226314125173,0.3741132413829479,0.3743377102050219,0.3784763055017004,0.3825401315324234,0.3840924541128484,0.3863021239506399,0.3893668180603793,0.3927210365853658,0.3962582426008281,0.4004006868918145,0.4035572647518327,0.4066955982641042,0.4027692934229281,0.4131093362709997,0.4179566563467492,0.0,2.608619129451711,70.65508878625684,210.982011548862,298.8234631562679,CHI_public_baseline,92 +100000,95636,50807,479.9238780375591,7158,73.42423355221884,5593,57.84432640428291,2228,22.888870299887078,77.31769350596971,79.73879698344996,63.289715480586615,65.0809130656888,77.0393751010632,79.4624950518123,63.18616685790917,64.98080632349006,0.2783184049065141,276.30193163766137,0.1035486226774438,100.10674219874716,177.34354,124.10696862845508,185435.04538040067,129769.33466545034,349.84106,221.63852711114575,365154.6070517378,231103.61203569872,421.86125,203.40059662624623,437343.406248693,209700.888035878,3996.98754,1839.6322558399413,4136109.948136685,1880510.5319683463,1376.97056,608.9416003498108,1424816.0943577732,621740.9347419498,2186.45004,919.3522187065709,2247951.336316868,928248.076239076,0.43241,100000,0,806107,8428.865699109123,0,0.0,0,0.0,28926,301.7692082479401,0,0.0,38430,398.0091179053913,1532640,0,55121,0,0,15866,0,0,69,0.7214856330252206,0,0.0,1,0.0104563135221046,0,0.0,0.07158,0.1655373372493698,0.3112601285275216,0.02228,0.3316904222725456,0.6683095777274544,24.548958834165013,4.354533118886914,0.3100303951367781,0.2460218129805113,0.2259967816913999,0.2179510101913105,11.422853266163392,5.918007347742762,23.787269414772577,14284.943026503735,63.791856944100985,16.594944553653292,19.807683179448453,13.58484618493131,13.804383026067953,0.5687466475952083,0.8117732558139535,0.6955017301038062,0.571780147662018,0.127373417721519,0.735479797979798,0.9329501915708812,0.8523206751054853,0.7539936102236422,0.1381818181818181,0.502868545772013,0.7377049180327869,0.6365079365079365,0.5088300220750552,0.1243680485338726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028669260069697,0.0058309333549669,0.0086091370558375,0.0110875110519415,0.0138777254367312,0.0163712306438467,0.0188623426437883,0.0214244117737206,0.0235792576218108,0.0261485475306996,0.0291638864651234,0.0318849222670066,0.034002327233784,0.0363310020424583,0.0388581229077984,0.0413493377483443,0.0439294971487817,0.0459838168541543,0.0480695181600582,0.0502669781411646,0.0672191624776615,0.083962026908085,0.0996470810663193,0.1142673576002696,0.1284336814979881,0.1467504130830826,0.1614308791021935,0.1748113086861967,0.1881265446297703,0.2008873419489295,0.2161721868594238,0.2300431324099963,0.2434611152869919,0.2552191723805559,0.2663874345549738,0.2780052144006213,0.2897622480802119,0.3003188049882279,0.3098353208404316,0.3184235865926911,0.3264989342970994,0.3337197320968573,0.340996622622504,0.3476011571101055,0.3537474588856833,0.3592145537124802,0.3639974439613587,0.3699028013095708,0.3746319571448954,0.3790011110523252,0.3777714802369674,0.3770997836482147,0.3755996388058016,0.3742063319882558,0.3734979179060083,0.3715079511266654,0.3694268526895544,0.3693572250534276,0.3691003265013077,0.3695299259655695,0.370441063642658,0.3719613259668508,0.3727608283110545,0.3748190060368448,0.3761355737194084,0.3765672961864627,0.3775989078187661,0.3814539640741089,0.3847772711329358,0.3871558172847366,0.3883775243852178,0.392156862745098,0.397055090124397,0.39860621841017,0.4013817906492523,0.4056502562879961,0.403721931713319,0.4053510360088513,0.406463982470556,0.4128860083873427,0.0,2.440315259960979,69.89491502827777,202.19695435147912,303.54262785541243,CHI_public_baseline,93 +100000,95701,51041,480.5592418052058,7183,73.5311020783482,5607,57.89908151429975,2242,22.956917900544404,77.34880342590687,79.7064033416027,63.338894218876014,65.07702756983126,77.0680545792241,79.42759339088038,63.23416171291116,64.97638502359798,0.2807488466827692,278.8099507223194,0.1047325059648542,100.64254623327427,179.0987,125.28549671211024,187144.02148357904,130913.466643097,348.23315,220.61102473735951,363162.5479357583,229808.02835365164,421.69007,204.00695137120803,436400.4137887797,209902.4577878107,4000.10394,1840.8533236234875,4133097.804620641,1876918.538399624,1373.75113,610.8082610133171,1414598.7920711385,617563.3419703475,2197.47862,924.7710096870688,2252202.735603599,928722.9494571493,0.43529,100000,0,814085,8506.546431071776,0,0.0,0,0.0,28752,299.6938380999153,0,0.0,38329,396.2445533484498,1529030,0,54971,0,0,16003,0,0,75,0.783690870523819,0,0.0,0,0.0,0,0.0,0.07183,0.1650164258310551,0.3121258527077822,0.02242,0.3483324510322922,0.6516675489677077,24.34212441078153,4.340052062021852,0.3147850900659889,0.2416622079543428,0.2256108435883717,0.2179418583912966,11.33886040076103,5.9439956179387865,23.930867870091244,14387.978754220843,64.04645673514536,16.394173428065994,20.19515337975296,13.630789178372115,13.826340748954284,0.5766006777242733,0.7955719557195572,0.7195467422096318,0.5941080196399345,0.125691699604743,0.7525510204081632,0.9314285714285714,0.8792079207920792,0.7683823529411765,0.1428571428571428,0.5082941322109433,0.7096385542168675,0.6555555555555556,0.5442105263157895,0.1211211211211211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315686612052,0.0055244698536268,0.0084115468520115,0.0109712613903026,0.0134110135025215,0.0161551381890364,0.0186734891496019,0.0212616106971521,0.0239027131980992,0.0266107159306074,0.0292625429201045,0.0318680529184157,0.0342884755765296,0.0368059630807878,0.0396633003579496,0.0419107845872469,0.0443579283066536,0.0465977712756023,0.0490865799515476,0.0517234193306381,0.0686662558875439,0.0853515584116551,0.1007785285600369,0.1151899666466757,0.1291074612065782,0.147856629004274,0.1632936781670186,0.1768514081882553,0.189778604094542,0.2027401081452235,0.2183782968453715,0.2320754104392809,0.2454254694197254,0.2580564002712813,0.2697149774402993,0.2809092118095576,0.2922616254385377,0.3027747122812549,0.3127931406507296,0.3211441275225468,0.3293267560619746,0.3372927174638097,0.3439990526378116,0.3513017836593786,0.3570369830393157,0.3622457783803772,0.3667692384669268,0.3713809596499262,0.3749045591603794,0.3797788976544154,0.3776187974078115,0.3764373751979618,0.3754283538520117,0.3740992620460136,0.374170411594893,0.3719250352739096,0.3704067877250019,0.3704970322750366,0.3718444939201918,0.3731867187220172,0.3745612882641091,0.3756932340358105,0.3763605799537718,0.3781410702656576,0.3799009542215243,0.3818748200308892,0.3817811675650877,0.3855299772324816,0.3894354525900067,0.3912557396685965,0.3937738188162909,0.3964997307485191,0.3982828218107259,0.3978328173374613,0.3970602271642646,0.3980956972399662,0.4006897632857815,0.3945889698231009,0.3979131415679639,0.3965381589299764,0.0,2.662831263131157,68.57952877992354,210.0643095655153,300.8985922126226,CHI_public_baseline,94 +100000,95629,50871,479.9485511717157,7247,74.21388909222098,5695,58.89426847504418,2232,22.942831149546684,77.26744378178137,79.6841214985121,63.28338998351626,65.07012122809526,76.99321806304505,79.40919627983298,63.18071506846308,64.9696261048792,0.2742257187363179,274.92521867911535,0.1026749150531785,100.49512321606358,176.29282,123.37020624261916,184349.18277928245,129007.85440004224,348.76883,220.33321159323808,364029.771303684,229725.918169157,419.12904,201.87655817301376,433613.96647460497,207593.8783076326,4020.3653,1843.717643806267,4158564.65089042,1882920.574250424,1328.31297,594.7440510840715,1369769.8292359011,602962.421165451,2174.47406,917.615309086722,2236355.6870823703,927518.2617228224,0.43336,100000,0,801331,8379.508308149201,0,0.0,0,0.0,28729,299.72079599284734,0,0.0,38053,393.38485187547707,1541050,0,55433,0,0,15681,0,0,77,0.79473799788767,0,0.0,0,0.0,0,0.0,0.07247,0.1672281705741185,0.3079895129018904,0.02232,0.3338161706610482,0.6661838293389518,24.75172330740228,4.331688736376369,0.3204565408252853,0.2416154521510096,0.2096575943810359,0.228270412642669,11.343966340726675,5.979185702312381,23.89450586608068,14364.96195041544,64.86094107562167,16.530760060297116,20.708476169342216,14.607570917253655,13.014133928728674,0.561369622475856,0.7768895348837209,0.6936986301369863,0.5615384615384615,0.1105527638190954,0.7301587301587301,0.9129554655870444,0.8846153846153846,0.6827794561933535,0.140625,0.4968446601941748,0.7006802721088435,0.622839969947408,0.5201238390092879,0.1023454157782516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027458609439276,0.0054147231798823,0.0080307829759584,0.0105885700349565,0.013123226075545,0.0156943822055648,0.0180475967126863,0.020633186658363,0.0232826847174788,0.025847414234511,0.028398834919593,0.0310744039364335,0.0335987490484126,0.0360436480540757,0.0385838150289017,0.0412294395566904,0.0436448753003562,0.0460018267873453,0.0485770158941499,0.0508987030318195,0.0692285986016324,0.0860949348527378,0.1014030076451314,0.1166076994355993,0.1305279604742248,0.1488780405154977,0.1635386461884884,0.1774912075029308,0.1906998138679104,0.2037999699267501,0.2194372243013837,0.2333401947932353,0.2464648443878384,0.257957530647986,0.2688669375708921,0.2803094108781417,0.2920318413736895,0.3023651120642103,0.3116061387465779,0.3195944861120668,0.3268417577070565,0.3344727477055628,0.3421601383853463,0.3489050569082265,0.354749589241161,0.3608390053487826,0.3660086482421508,0.3708011158809217,0.3755090923240551,0.3800251339374297,0.3793745949449125,0.3790145758925493,0.3771690787151429,0.3759238327101991,0.3741442825396351,0.3710259838042994,0.3694024512375411,0.3697448559670782,0.3702503984780708,0.3716706371240753,0.3728523306799149,0.3742065150339283,0.3757431378336214,0.3757748629952385,0.3766148933081724,0.3775992438563327,0.3775650578929267,0.3814175518462316,0.3849335407239819,0.3882829416954046,0.3941062176165803,0.4007904282388609,0.4027099922938608,0.4079100426521908,0.4092424964268699,0.4108199492814877,0.4119021654463312,0.4129219300062124,0.4147597254004577,0.4194590230117077,0.0,2.4768211016677983,69.44503063951193,208.0764000374925,312.3755354857122,CHI_public_baseline,95 +100000,95838,50428,475.3125065214216,7185,73.63467518103467,5651,58.37976585488011,2197,22.611072852104595,77.40182060844235,79.71576920678012,63.36325590393732,65.07560491391916,77.12514565445939,79.43666161627189,63.26090924505159,64.97433605468348,0.2766749539829618,279.1075905082323,0.102346658885736,101.26885923568808,176.0297,123.2342320639874,183674.2210814082,128585.9805755414,345.09937,218.16252438223705,359492.7377449446,227043.34854883977,420.75795,202.75094012143677,434639.3184331893,208244.9571691488,3991.11053,1835.5360665063583,4125989.899622279,1876804.3328391227,1314.49275,589.0281123554935,1356216.6572758197,599246.9399982195,2138.40662,901.5722121190678,2202106.888708028,916436.1026626128,0.42924,100000,0,800135,8348.8282309731,0,0.0,0,0.0,28472,296.4794757820489,0,0.0,38344,395.8346376176465,1548689,0,55674,0,0,15678,0,0,60,0.6156221957887269,0,0.0,0,0.0,0,0.0,0.07185,0.1673888733575622,0.3057759220598469,0.02197,0.3359936153232242,0.6640063846767758,24.470462922936424,4.291926440563063,0.3218899309856662,0.2532295168996638,0.2093434790302601,0.2155370730844098,11.280484325437396,5.913605928338942,23.460739059605345,14232.925042845913,64.31787224820522,17.283641195211132,20.60581484453293,13.475135932417947,12.953280276043213,0.5754733675455671,0.8015373864430468,0.6959868059373282,0.5804597701149425,0.1115807269653423,0.7438640654499685,0.9055258467023172,0.8744939271255061,0.7357142857142858,0.1417322834645669,0.5096011816838996,0.7344827586206897,0.6294339622641509,0.5341151385927505,0.1033369214208826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028352133498045,0.0056248669794971,0.0083593718297285,0.011060666077577,0.0132979534571629,0.0158495867095565,0.0185496611119604,0.0212900591957542,0.0239180652942739,0.0264782043540116,0.028794013633335,0.0312230570267274,0.0336118905917543,0.0361599604629133,0.0383778375981105,0.0407823768882643,0.0432253389918227,0.0452603637419381,0.0476106396900738,0.0499734626551914,0.0672659769731353,0.0835363112723319,0.0986241656450074,0.1134102916924886,0.1275408109531332,0.145492950308919,0.1602966101694915,0.1742513633319514,0.1873632531084903,0.1992844058318782,0.2153260331734182,0.2293112018846311,0.2425276241593237,0.254583998076797,0.2668711656441718,0.2780662806019067,0.2891087783491929,0.2992442135096835,0.3083067636413148,0.3166861303840076,0.3243233861356352,0.3318674635384381,0.3386737978038622,0.34569366518007,0.3520527805790797,0.3580514742135884,0.3637422068654698,0.3688905289678954,0.3731134458680416,0.3773420479302832,0.3768539598291864,0.3756556936929495,0.3749929557621865,0.373568116486342,0.3721375746235409,0.3701207181812611,0.3686002502098278,0.3686465017807027,0.3697602488080794,0.3710883807279673,0.3716068116675097,0.3719909877860785,0.3724681091724094,0.3736831510434141,0.3753934122960863,0.3755699731624065,0.377948046029395,0.380224676791766,0.3837845420115023,0.3873301009458708,0.3895059189176836,0.3925078822209159,0.3938204381410662,0.3966809421841542,0.4000375445841937,0.4064164792233929,0.411286612482748,0.4117887007954314,0.4213296398891967,0.4271882261812548,0.0,2.307118366905199,70.01171585491046,206.17151629174077,305.5780552529945,CHI_public_baseline,96 +100000,95691,50901,480.4318065439801,7083,72.74456322956182,5565,57.51847091157998,2182,22.374099967604057,77.32145341825886,79.71014724095743,63.3143933609397,65.08073909232327,77.05372826585801,79.44357428854126,63.2158112721857,64.98560692907168,0.2677251524008426,266.5729524161691,0.0985820887539929,95.13216325159136,177.77144,124.46898158292817,185776.55160882423,130073.86439992076,351.45029,222.79782361213944,366649.8207772936,232204.08775343496,420.2159,202.93655817126808,435423.6762077938,209188.3726786269,3973.94768,1813.0698484364443,4107402.639746685,1849421.3052741548,1310.77253,579.980004546059,1351182.3891484048,587499.470029981,2135.56496,894.9063776100902,2191112.8110271604,899972.5304408534,0.43207,100000,0,808052,8444.38870949201,0,0.0,0,0.0,28829,300.6134328202234,0,0.0,38218,395.7425463209706,1534531,0,55127,0,0,15874,0,0,82,0.846474590086842,0,0.0,0,0.0,0,0.0,0.07083,0.1639317703149952,0.3080615558379218,0.02182,0.3321275455519829,0.6678724544480171,24.77165490472767,4.267802329857197,0.3286612758310872,0.2366576819407008,0.219047619047619,0.215633423180593,11.366908955622367,6.07013974305091,23.339836122775147,14272.600956101867,63.17709428712889,15.769853205961526,20.72266818324268,13.277564771689793,13.407008126234896,0.5566936208445642,0.7722095671981777,0.6856205576817933,0.5725,0.1148482362592288,0.7364953886693018,0.9227557411273486,0.8745019920318725,0.710801393728223,0.132,0.4892512972572276,0.6861575178997613,0.6141672946495855,0.5290251916757941,0.110423116615067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025735592121261,0.0053747084474191,0.0079381192139028,0.0104673732990518,0.0130534755005697,0.0157586993725042,0.0184892460507663,0.0209311823565448,0.0234514767069792,0.026122382131963,0.0287372230594941,0.031567705231161,0.0342862433263725,0.0366634035756607,0.0390796767101229,0.0415020988854194,0.0439704998860599,0.0461626277826786,0.0484738183141802,0.0506019073427484,0.067902653018592,0.0841228134454133,0.0992831879768689,0.1142400134697141,0.1288879510445241,0.1468820117691884,0.1619435776603197,0.1751230110550194,0.1880543740782696,0.2014736480833994,0.2164372050934005,0.2308175283623452,0.2445232449365849,0.2559678795702689,0.2670275146594497,0.2787738513161829,0.2902966673732832,0.3002956750497476,0.3091746345004367,0.317505956744868,0.3250725995858063,0.3330682137176008,0.340772664306603,0.3469732756243481,0.3531756641792858,0.3591825170000985,0.3647730259452559,0.3693160860329937,0.3743968539383983,0.3793581067711425,0.3780494372340998,0.3772409810822701,0.3765242614548424,0.3744362858464385,0.3720528954140449,0.3693114713867202,0.3676183832971353,0.3675133579942458,0.3673326263213711,0.3672549755914382,0.3692853389385181,0.3702962845599303,0.371172987274789,0.3720502054471563,0.3727461690917001,0.3735955056179775,0.3749856404365307,0.3788987049175137,0.3840200720899003,0.3880239520958083,0.3908903639276722,0.3932722695377363,0.3961902326770647,0.3985585864848109,0.400745484086782,0.405762014283985,0.4075814536340852,0.4096962130669996,0.4144829529444914,0.419709462112289,0.0,2.465032022418961,66.79917249510268,203.06697102938637,307.22402107443634,CHI_public_baseline,97 +100000,95692,50678,477.8142373448146,7221,74.05007733143837,5735,59.21080132090457,2273,23.314383647535845,77.3455376358958,79.7323155345507,63.32130932583449,65.08705065646002,77.06308763937032,79.45112991911203,63.217108333470506,64.98654330350148,0.2824499965254716,281.18561543865894,0.1042009923639852,100.50735295854452,176.83864,123.700963354275,184799.816076579,129269.91112556432,349.50612,220.91197030193135,364531.3192325377,230147.93326707705,423.56204,204.8010718364293,437650.1065919826,210276.1387793957,4069.38497,1851.6257802323223,4204731.785311207,1887130.324616813,1360.58317,599.7099629499527,1404535.718764369,609408.4280294625,2214.86166,923.0749237710056,2273033.5242235507,928848.608707856,0.43235,100000,0,803812,8399.991639844502,0,0.0,0,0.0,28790,300.12958241023284,0,0.0,38607,398.49726204907415,1542019,0,55359,0,0,15936,0,0,63,0.658362245537767,0,0.0,0,0.0,0,0.0,0.07221,0.1670174627038279,0.3147763467663758,0.02273,0.3319272343791194,0.6680727656208806,24.61181044491112,4.354430749564857,0.3264167393199651,0.2381865736704446,0.2132519616390584,0.2221447253705318,11.529561932742393,6.154108949114992,24.135425271635143,14347.52740317836,65.07508024072507,16.5832968889584,21.12028458212371,14.07063333892831,13.30086543071464,0.5621621621621622,0.7913616398243045,0.6832264957264957,0.5627943485086342,0.1201962387571545,0.7564018384766907,0.9305019305019304,0.860655737704918,0.7491289198606271,0.1521739130434782,0.4919278252611586,0.7063679245283019,0.6206647398843931,0.5086119554204661,0.1127895266868076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027761172858894,0.0055580911810943,0.0081526981065028,0.0109555072257566,0.0135610808171237,0.0162762273375432,0.018967591931635,0.0216190271948367,0.024286240183246,0.026891685697023,0.0293731539218903,0.031912817510451,0.0340691669924085,0.0365092123160628,0.0388239300715177,0.0411880860566336,0.0438597399906769,0.046320705760249,0.0487213885335746,0.0507955362445687,0.0681476375485649,0.0842735436334331,0.1001154492023509,0.1154238696983407,0.1301105438589089,0.1479933994795743,0.1624607352067238,0.1758127050402624,0.1893327916697847,0.2021363392377885,0.2166928998037905,0.2308875457637399,0.2440014805782964,0.2560272278582137,0.2674380201682152,0.2794728850565795,0.2914382682281491,0.3018816962276042,0.3120439405803515,0.3213643701981978,0.3296190872905674,0.3377956530380797,0.3445217144479137,0.3501640364951268,0.3556858033904886,0.36062265427921,0.3660612727022737,0.3707923684678505,0.3748869421402175,0.3784480943356496,0.3775204524388442,0.3763910042673472,0.3754500450045004,0.3742533114016102,0.3731051054614495,0.3704275988678956,0.3685211301082254,0.368607369842263,0.3692766234433615,0.3716636492372775,0.3721701133838098,0.3732476983953391,0.3733834047131796,0.3743084603967076,0.3762855414398064,0.3791293852168665,0.3809169054441261,0.3839926635676564,0.3885006353240152,0.3921004237626929,0.3941545650281735,0.3969873404198493,0.4001645465476868,0.3980850248946763,0.4021264476931839,0.4038136615978759,0.4045991298943443,0.4079056291390728,0.4071091363510136,0.4122944400939702,0.0,2.8538294306610115,66.33665654959627,217.27238087755188,314.5430460897128,CHI_public_baseline,98 +100000,95597,50022,471.2700189336486,7128,72.89977718966077,5593,57.794700670523135,2222,22.83544462692344,77.23812690061078,79.66945902820659,63.25655152000609,65.05448941601502,76.95734013164488,79.38954728211885,63.15130082968057,64.95235548414804,0.2807867689658962,279.91174608773406,0.1052506903255192,102.13393186697316,177.01112,123.90269580355486,185163.88589600087,129609.3975789563,347.08606,220.11219986440025,362373.1288638765,229551.1534068428,416.72431,201.02459606321776,431229.4632676758,206746.39840221655,3968.37392,1826.5000328233932,4105251.8907497097,1864727.7245346536,1319.38006,591.2515883811998,1360208.6048725378,598544.042575812,2165.03704,920.5153207642868,2226996.6421540426,930315.7895477898,0.42737,100000,0,804596,8416.540268000042,0,0.0,0,0.0,28563,298.0532861909893,0,0.0,37976,392.5750808079752,1533986,0,55197,0,0,15617,0,0,79,0.8159251859367972,0,0.0,0,0.0,0,0.0,0.07128,0.1667875611297002,0.3117283950617284,0.02222,0.3467094703049759,0.6532905296950241,24.656744993322675,4.270478821936792,0.3354192740926158,0.238870016091543,0.2147327015912748,0.2109780082245664,11.354121343357178,6.064490279358799,23.89331571686,14163.611461397635,64.23297685364645,16.331677837045262,21.439210686759083,13.189855687086377,13.27223264275572,0.5705345968174503,0.7986526946107785,0.6908315565031983,0.5864406779661017,0.1132389675270607,0.7305764411027569,0.9034749034749034,0.8483685220729367,0.7335640138408305,0.1641791044776119,0.5066299724793595,0.7322738386308069,0.6302583025830258,0.5387205387205387,0.0986066452304394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024525701313442,0.00523363727648,0.0078283648769393,0.0105404388969639,0.0135462465396515,0.0162189145960043,0.0190932734968636,0.0218403955379397,0.0240983573021295,0.0269376133069761,0.0294775506853812,0.0319246221345416,0.034056524155534,0.0363597002154572,0.0387769011524639,0.041129908427751,0.0433750427633966,0.0457076373306739,0.0482704058794749,0.0508674379544529,0.0674911402197434,0.084076499869007,0.0996732541158424,0.1143925430512401,0.1286381109280615,0.1464796788441779,0.1604797926139985,0.1746921805873887,0.1880383952744277,0.2001804879620975,0.2148969923270345,0.2289199739752765,0.2427086058069578,0.2544689339222498,0.2652064639873013,0.2771544309416791,0.2882812325180693,0.2988630211153221,0.3078463271180077,0.3155034752139697,0.3235150698927228,0.3315848148800094,0.3385870727130199,0.3436413298518777,0.3485554633741642,0.3541488769259328,0.3588647846962117,0.3642636273031612,0.3692555834493164,0.3727620890261194,0.3718172352710505,0.3704092775097792,0.3703593703593703,0.3693868958608574,0.3681414608669701,0.3661130693099786,0.363624785072916,0.3642083360856067,0.3651948141270332,0.3660376003303945,0.3675410021277798,0.3689187310037943,0.3696156115653713,0.3705487777427632,0.3706241224035249,0.372865324996059,0.3731845503436772,0.3776396727756991,0.3809810305775764,0.3849651046859422,0.3899573139945839,0.3940881442748906,0.3981534180737368,0.3973996175908222,0.400301261532668,0.4032429873357794,0.4059270516717325,0.4058291457286432,0.4069060773480663,0.410246533127889,0.0,2.8314461693772475,70.19816913192096,206.75594141807687,300.1979174184875,CHI_public_baseline,99 +100000,95701,52161,493.7774944880409,6608,67.60639909718812,5269,54.2836542982832,2063,21.09695823450121,77.33641368994157,79.71126930005154,63.332022412709286,65.08927182979994,77.07554648000269,79.45151966843059,63.234630250356815,64.99515968449153,0.2608672099388798,259.74963162094866,0.0973921623524702,94.11214530841504,213.5474,149.43045439769818,223139.96718947557,156142.82086676013,400.75337,258.0767445826099,417973.79337728966,268889.3944182235,468.60182,226.67216572688207,483673.0964148755,232399.28638718152,3721.72403,1728.4970859827886,3835376.8299181834,1752814.7369590872,1232.06456,555.9750130473399,1268871.9971578144,562553.7805845168,2011.5908,847.9185094861107,2058984.46202234,851300.2599222946,0.43337,100000,0,970670,10142.7257813398,0,0.0,0,0.0,33212,346.23462659742324,0,0.0,42553,438.79374301208975,1326561,0,47743,0,0,18709,0,0,72,0.741894024095882,0,0.0,0,0.0,0,0.0,0.06608,0.1524794055887579,0.3121973365617433,0.02063,0.3440844663002603,0.6559155336997397,23.99136687949541,4.24514239712484,0.336496488897324,0.2507117100018979,0.211804896564813,0.200986904535965,11.331301266550586,5.972755487655228,22.03345312283195,13929.269359432032,60.40746489729493,16.170958827509256,20.158680319839604,11.767309988591176,12.310515761354884,0.5739229455304612,0.7948523845571537,0.6988155668358714,0.5684608120868744,0.1191756272401433,0.7485380116959064,0.906934306569343,0.8764940239043825,0.7510548523206751,0.1468253968253968,0.5018766756032171,0.7153945666235446,0.6286388670338316,0.5158150851581509,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028880061610798,0.0054970131542916,0.0083049901010203,0.0110273192942515,0.0137635677446263,0.0161632004562768,0.0185602545406337,0.0213906473351031,0.0241481193706358,0.0266059272150278,0.0288663598249156,0.0313241137154649,0.0336990837386752,0.0361115688859591,0.0385710747894997,0.0409319248341016,0.0431784294234592,0.0457299360942816,0.0479758873356545,0.050271356993302,0.0683144847174796,0.0845854434353157,0.1002401652840557,0.1157064760302775,0.1303018804283666,0.1478216754391527,0.1627566759601827,0.1762735297245559,0.1884119850986838,0.2003106920934219,0.2155218804485868,0.2293216819518947,0.2419984132676904,0.2533267781055391,0.2641857806987658,0.2752861803904219,0.2848402447314752,0.2940740074636931,0.3031646502556892,0.3113373755863173,0.3191681213368322,0.3266743770371149,0.3329354762467502,0.3382657520142705,0.3440124265812339,0.3486542392080573,0.3533957757575,0.3579185635443424,0.3622948273183866,0.3658939085892324,0.3650877051168054,0.3632040360598793,0.3611891022475556,0.3593548667313344,0.3565959601978192,0.3528111278287837,0.3501436120411952,0.3499135873590651,0.3500188375518032,0.3517862256586483,0.3521681997371879,0.3524801076758639,0.3531693610953849,0.353660991924118,0.3550818882466281,0.3549675095905426,0.3558616731238341,0.3596449516563639,0.3647645311837081,0.3668335669937913,0.369230059084195,0.3712108931755551,0.3725818932164044,0.3744270954711411,0.3774196624392104,0.3825202759956422,0.383356708742403,0.3885363357215967,0.3942573163997791,0.3985507246376811,0.0,2.922043735492501,67.01661050397806,191.32628377416827,281.01076492213576,CHI_public_implementation,0 +100000,95596,52225,494.45583497217456,6736,68.81041047742583,5278,54.47926691493368,2020,20.61801749027156,77.26635035352784,79.70480016730949,63.26822878755484,65.07226613577133,77.00812320008703,79.45132713401527,63.17099421326563,64.98000051963554,0.2582271534408136,253.4730332942132,0.0972345742892102,92.26561613579064,212.36644,148.64878503582852,222149.92259090336,155496.867061204,397.20495,255.4443017268301,414759.6552156994,266468.2536160823,467.08867,226.2527611681753,484098.2049458136,233039.58752721892,3721.20229,1737.0575106439248,3839483.493033181,1763931.3994768865,1252.87071,574.270648604812,1288160.5297292774,578298.1281693918,1972.37836,840.1473792190449,2015201.8703711452,837854.380497841,0.43271,100000,0,965302,10097.723754131972,0,0.0,0,0.0,32999,344.43909787020374,0,0.0,42305,438.0936440855266,1328359,0,47745,0,0,18559,0,0,73,0.7636302774174651,0,0.0,0,0.0,0,0.0,0.06736,0.1556700792678699,0.2998812351543943,0.0202,0.3374595583063722,0.6625404416936278,24.15493539290235,4.1771051926360165,0.3124289503599848,0.2631678666161425,0.2125805229253505,0.2118226600985221,11.497603852134198,6.194149857262109,21.63560274811297,14007.961006704085,60.63860458777598,16.931168903555438,18.974733684068514,12.39100000032712,12.34170199982489,0.5803334596438045,0.7919366450683946,0.7107337780473014,0.5769230769230769,0.1301247771836007,0.7610738255033557,0.9110251450676984,0.9035087719298246,0.7490636704119851,0.204,0.5092397043294614,0.7213302752293578,0.6370494551550713,0.5229142185663925,0.1089449541284403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026450200656694,0.0052345929495308,0.008236261894848,0.0108691231495038,0.0134056717086378,0.0163274458044987,0.0191153657740039,0.0214687879995503,0.0241159859212572,0.0266215800799262,0.0288804959152674,0.0315975577164237,0.0341253011055979,0.0364684290840103,0.038692751048402,0.0411514543215752,0.0434187750702225,0.0460314492843937,0.0484893269360865,0.0507915980058822,0.0687268697597591,0.0851977993188367,0.100213242013929,0.115571378914438,0.1301638270679074,0.1479284299289172,0.162641637789919,0.1760601696271403,0.189054939408213,0.2008876280129383,0.215202028375681,0.229170281054823,0.2428263285182038,0.2542876242452137,0.2653421244128867,0.2774461285812565,0.2872181123304204,0.2970363945616545,0.3055713408951424,0.313719190342865,0.3208749449683713,0.3277061855670103,0.3349288532398137,0.3398745336995766,0.3453030947893233,0.350381453225687,0.3544735423535459,0.359412829073116,0.3643376680625964,0.368491956573421,0.3665961432209899,0.3635662438191259,0.3611244322829981,0.3592782311743937,0.3573704111709888,0.3546072102188214,0.3519972091400662,0.352207672566954,0.3536236844356978,0.3545078666165494,0.3563611748335903,0.3587088070154554,0.3593092714117449,0.3585993404966464,0.3596395874097157,0.3601037627083115,0.3597753195391758,0.3634607467460493,0.3673108857718263,0.3725372657155417,0.3774240761068423,0.3797887098495358,0.3858723296032553,0.3900784881505753,0.3940443861784811,0.3984678845020624,0.4017666768199817,0.3980249899234179,0.4039989044097508,0.4137277208949564,0.0,2.9039721361857467,64.88641953955357,206.39086544328032,272.6738317411845,CHI_public_implementation,1 +100000,95697,52344,494.6445552107172,6705,68.83183380879233,5331,55.0382979612736,2046,20.99334357398873,77.34534288058313,79.7133483003179,63.32656324425341,65.07425560665509,77.09307699432765,79.46341744803452,63.23317775840589,64.98477330190845,0.2522658862554863,249.9308522833843,0.09338548584752,89.48230474663887,212.77542,148.89951886796013,222342.83206370103,155594.76145329545,398.24631,255.8804782261205,415482.8573518501,266716.90767548257,468.17122,226.40340918723265,484624.16794674855,233165.6950630473,3773.0995,1731.1624808203408,3897452.825062437,1763777.8687838593,1232.43786,548.6353560569654,1270912.3796984232,556402.0853755543,2000.43114,834.5478555115102,2054062.02911272,839991.4261952529,0.43353,100000,0,967161,10106.492366531866,0,0.0,0,0.0,32974,343.8770285379897,0,0.0,42351,438.080608587521,1329035,0,47827,0,0,19294,0,0,70,0.7210257374839336,0,0.0,1,0.0104496483693323,0,0.0,0.06705,0.1546605771226904,0.3051454138702461,0.02046,0.3366869774691795,0.6633130225308205,24.128917913482848,4.219311959245765,0.3200150065653723,0.2524854623897955,0.2093415869442881,0.2181579441005439,11.21058087427378,5.890073817857128,21.699883290686973,14054.20924634124,60.97546663990387,16.383542533227487,19.51528715900804,12.81711210099698,12.259524846671374,0.5663102607390733,0.7800891530460624,0.716295427901524,0.5434221840068788,0.1030465949820788,0.7481967213114754,0.9337121212121212,0.8737270875763747,0.7185185185185186,0.1059322033898305,0.4934314240672622,0.6809290953545232,0.6526748971193416,0.4904815229563269,0.1022727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027746273493195,0.0054831451563861,0.0080455338663203,0.01084704448507,0.0137078240354695,0.0163206711532391,0.019010631683027,0.0214979124771597,0.0242471326641179,0.0267476021332569,0.0294220162794989,0.0318237831176833,0.0344777930920984,0.0368294718190153,0.0390712074303405,0.0415762161715148,0.0439636691280797,0.0464310176632972,0.0486820899402131,0.051355801496488,0.0687735642147698,0.0852172820899271,0.1012099016758135,0.1161276067422823,0.129996623190241,0.1478949262324577,0.1621351905130954,0.1749906800873409,0.1886395212140643,0.2012528021795325,0.2165784908465956,0.2294615109744344,0.2427170731176477,0.2544120867089993,0.2649426743174334,0.2769795339142775,0.2872547049762239,0.2978036321083782,0.305412400390492,0.3142320338186942,0.3225026324620173,0.3297777777777778,0.336032196969697,0.3411117503236013,0.3456458609251406,0.3508925489422555,0.3557172192727637,0.3608479468952274,0.3658233098299461,0.370314565159926,0.3685197426108541,0.3658728189861903,0.3642066003616636,0.3615101662515206,0.3599726064106954,0.3569708404276532,0.3546813632332447,0.3544347426470588,0.3550367502856461,0.3563150763086578,0.3578226967594757,0.3580648981525343,0.359463986599665,0.3599122001478262,0.3602721219724018,0.3617443530487009,0.3638872293818099,0.3677158188721875,0.3712644080860456,0.374960468058191,0.3767766034985422,0.3812380547887025,0.3872388623206645,0.3911219586606666,0.3935337920633424,0.3985033852001425,0.4014095296460855,0.4039048200122025,0.4054954204829309,0.4035573122529644,0.0,2.5232873813821084,67.0390216980454,197.2090986000485,282.64912528030703,CHI_public_implementation,2 +100000,95652,52068,491.8977125412955,6801,69.60649019361853,5417,55.9423744406808,2148,21.933676243047717,77.2498286400838,79.64852790087645,63.26585613190741,65.03889549832624,76.97466809549667,79.37820278603311,63.162692898880856,64.94117681531078,0.2751605445871377,270.325114843331,0.1031632330265566,97.71868301545794,211.35048,147.90491648348373,220957.72174131227,154628.14837482094,396.88856,255.1144020114618,414250.3554551917,266031.6480695247,467.90724,226.13402963328124,485774.3904988918,233658.4601736165,3856.70229,1795.4223645409406,3984866.6938485354,1829888.3081806349,1296.37854,583.5390496196801,1335270.1982185422,590042.0864386536,2097.14908,893.2606265134496,2144868.920670765,892488.7106909585,0.43115,100000,0,960684,10043.532806423284,0,0.0,0,0.0,32881,343.035169154853,0,0.0,42370,439.48898088905617,1330335,0,47945,0,0,18719,0,0,73,0.7631832057876469,0,0.0,0,0.0,0,0.0,0.06801,0.1577409254319842,0.3158359064843405,0.02148,0.3428571428571428,0.6571428571428571,24.02445340299932,4.232112700927719,0.3125346132545689,0.2501384530182758,0.2200479970463356,0.2172789366808196,11.37915659661691,6.109673756574789,23.194432063784756,13992.17792800351,62.625122111874646,16.618417209427097,19.33613653735589,13.440128760994392,13.230439604097263,0.5809488646852501,0.8103321033210332,0.7028942705256941,0.6049277824978759,0.1233221476510067,0.7389100126742713,0.9146567717996288,0.8893805309734514,0.7272727272727273,0.1455223880597015,0.5160197968220891,0.741421568627451,0.6349717969379532,0.5594405594405595,0.1168831168831168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002623688155922,0.0054864259129676,0.0080693456217456,0.0106177606177606,0.0134369500869689,0.0161122766993257,0.0189052494187706,0.0214019502731403,0.0238290038862753,0.0264950174619268,0.0289661821874391,0.0313918849512069,0.0339253375041159,0.036321659005174,0.0389126349914307,0.0413076978766974,0.0438521957184009,0.0462001661129568,0.0488056098880519,0.0515301600542203,0.0686156707450865,0.0844835892172674,0.0997418027625005,0.1147171796895553,0.1289447575623245,0.1469034791536564,0.1617226913068875,0.1757865791268758,0.1890821938327876,0.1998001461297116,0.2145562858160391,0.2291831621419352,0.2421717364511872,0.2538505419281232,0.2653617716544126,0.2769955660262038,0.2870753935376968,0.2965223867124029,0.3062778941615812,0.313928095259988,0.3215796077702388,0.3283704861396726,0.3355732635585157,0.3408940417283683,0.3457025055502696,0.3514667656888228,0.3554784707035668,0.3600583090379008,0.3649689150170382,0.36862058909303,0.3659708035122374,0.3637368711995578,0.361573523583036,0.3595665562721515,0.3576793847532293,0.3549170625220987,0.3515373003892905,0.3516933075996766,0.3524300188906062,0.352849238286864,0.3525985409715546,0.353047592541052,0.3545582756225398,0.3568984149855908,0.3576568064539574,0.3582831719445171,0.3588638310019983,0.3635019504215427,0.3667428370539637,0.3697729988052569,0.375,0.3788385043754972,0.3805504818290609,0.3817155067155067,0.3841744196973968,0.3877551020408163,0.3945080091533181,0.3957740755790329,0.4013679890560875,0.4095665171898355,0.0,2.650450507942764,69.5554686844351,211.6781087095188,274.00185832919203,CHI_public_implementation,3 +100000,95733,51933,491.00101323472575,6408,65.4528741395339,5036,51.89433110839522,1973,20.17068304555378,77.32698317968122,79.68508280739366,63.31555014592704,65.06059454636456,77.07390610721382,79.43565824951763,63.21960436215402,64.96887582817054,0.2530770724674056,249.4245578760257,0.0959457837730184,91.71871819401645,212.98508,149.0178600824395,222477.3066758589,155658.98791052145,395.30932,254.70443578715697,412225.8051037782,265355.01426822203,461.51906,223.16985228623017,477333.2811047392,229517.28513144384,3559.78828,1650.3792039225475,3672535.7713641054,1678160.317204702,1142.44189,517.1360145239184,1173384.6635956254,520227.885740464,1923.29046,823.016911327552,1968013.871914596,823602.1017685717,0.43109,100000,0,968114,10112.604848902676,0,0.0,0,0.0,32753,341.397428264026,0,0.0,41840,432.2751820166504,1327877,0,47752,0,0,18769,0,0,65,0.6789717234391485,0,0.0,0,0.0,0,0.0,0.06408,0.1486464543366814,0.307896379525593,0.01973,0.345440956651719,0.654559043348281,23.920261548585103,4.24792757866279,0.3077839555202541,0.2700555996822875,0.2158459094519459,0.2063145353455123,11.073507193388703,5.742854266328095,21.17465775014004,13875.143888826338,57.69718585387258,16.70627900752613,17.60736080807798,11.626156512545338,11.757389525723124,0.5671167593328038,0.7875,0.7038709677419355,0.5582290664100096,0.1048758049678012,0.7305808257522743,0.8874538745387454,0.8634146341463415,0.6875,0.1493212669683258,0.5023565289714444,0.7212713936430318,0.6464912280701754,0.5159642401021711,0.0935334872979214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027050301403171,0.0054551722739348,0.0082313298012707,0.0109110858257477,0.0135062293414696,0.0161295249732702,0.0188134763633397,0.0216401608721393,0.0244777400760394,0.026775570362637,0.0291275071486404,0.0314318856051818,0.0340343735866123,0.0363688784546315,0.0386527749123168,0.0410944749268937,0.0433792318045346,0.0457232952305873,0.0480070675050667,0.0502755466658332,0.0672512788391272,0.0836096958791467,0.0984651513880734,0.1133816882161253,0.1269499957837929,0.1454189796457837,0.1599893927340228,0.1729866147014663,0.1857280307889673,0.1970606233024509,0.2115266443148373,0.2253720995731958,0.2386503401360544,0.2506648572335372,0.2616336688175832,0.2739871831829168,0.2844643595445352,0.2947068367208977,0.3033739786583633,0.3104175743539177,0.3185077912297978,0.3254783862009163,0.3318946607064515,0.3376642090347991,0.3432962967470275,0.3491027128434252,0.3535548589341692,0.3578794406699723,0.3617189628111502,0.3663214625383071,0.3649373399811346,0.3629464347203283,0.3609732716815157,0.3589391133233013,0.3566720723669528,0.3533175791799656,0.3499706679773589,0.3501215985276719,0.351172456257376,0.3515408911650814,0.3521852344467132,0.3530841749510841,0.353494623655914,0.3531464620478289,0.3533984788678155,0.3541911400005221,0.3556144399806251,0.3592129251273024,0.362459206232235,0.3665701938706736,0.3696688922196484,0.3722407495632841,0.3753761283851554,0.3779426235712663,0.3818742985409652,0.3880263467419431,0.3864638783269962,0.3877016129032258,0.3835085777531821,0.3832752613240418,0.0,2.733899707362173,62.21760734865696,191.7656720277472,263.9545072884429,CHI_public_implementation,4 +100000,95763,52199,493.8441778139782,6646,68.21006025291605,5184,53.580192767561584,2011,20.571619519020917,77.39144353273707,79.72904255374797,63.36142006586866,65.08661421404051,77.13554715448957,79.47645827987564,63.26486214773976,64.99452762173738,0.255896378247499,252.58427387232985,0.0965579181288944,92.08659230313287,212.07274,148.36856981555803,221455.8232302664,154933.08461050512,397.54897,255.33661199350385,414576.9033969278,266072.4100054341,463.69986,223.19234990022343,480970.6671679041,230535.4984894037,3644.35315,1689.3070406076592,3763249.814646576,1721703.3829429518,1203.68715,541.1977021930907,1242405.8456815262,550604.7870190899,1954.9561,834.5458012868814,2000851.6859329804,835981.7906518881,0.43225,100000,0,963967,10066.173783193926,0,0.0,0,0.0,32837,342.32427973225566,0,0.0,41945,434.88612512139343,1337950,0,48084,0,0,19004,0,0,89,0.91893528815931,0,0.0,0,0.0,0,0.0,0.06646,0.1537536148062463,0.3025880228708998,0.02011,0.3450997273640407,0.6549002726359593,24.301648883221954,4.159389272363084,0.3107638888888889,0.2598379629629629,0.2073688271604938,0.2220293209876543,11.300476066825986,6.10704243467096,21.599468826451112,13980.583207015923,59.49697942585594,16.435452413158696,18.280153211575115,12.881752738069869,11.899621063052267,0.5783179012345679,0.791388270230141,0.7014276846679082,0.5716768027801912,0.133953488372093,0.746401644962303,0.9193857965451055,0.8574766355140186,0.753731343283582,0.1694214876033057,0.51248322147651,0.7106537530266344,0.6449704142011834,0.5164212910532276,0.1236494597839135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026020573465089,0.0053203887430708,0.0079138004504778,0.0103188064309726,0.0130146109343067,0.0155423011155443,0.0180456490727532,0.0205786928397983,0.0230975901275935,0.02576328067447,0.0281659836065573,0.0309422193040052,0.0333439513352993,0.0359712230215827,0.0382343542218602,0.0407404346748202,0.043292417875846,0.0455521329226173,0.0477348801430383,0.0502854404533711,0.0672964509394572,0.0840771395983969,0.099904533103933,0.1144729093050647,0.1280788696752425,0.1460734756033078,0.1610049952804675,0.1750186190020214,0.1881367879189183,0.2007075471698113,0.2148809267473407,0.2284212348029247,0.2423448590714914,0.2535429801461991,0.2645218748969202,0.2758685570718642,0.2873055694932263,0.297121154235117,0.306396199244838,0.314035870846639,0.3210383303463028,0.3287733698130415,0.335186806426425,0.3412576687116564,0.3473712316131851,0.3517107223323443,0.3559360188091695,0.3602820450813934,0.3645652568054081,0.3689458689458689,0.3673955459866783,0.3651072955473379,0.3634815648747537,0.3611968722047494,0.3588511067592427,0.3552758215065919,0.3514931268762837,0.3514031552563031,0.3529792967017974,0.3534836431094146,0.3534099645596205,0.3541246290801187,0.3549537454636991,0.3560051078701525,0.3579234313559935,0.3589073323748529,0.3596453718749109,0.365604613784627,0.3675683291067906,0.3693808480987458,0.372495196266813,0.3769185517942136,0.3814263074484944,0.3828632576626156,0.3873272539249788,0.3915300224135897,0.3966270140039151,0.3947631421147312,0.4067567567567567,0.4203172205438066,0.0,2.1511262505542863,64.20214379983803,203.22368469505705,267.4715133835794,CHI_public_implementation,5 +100000,95707,52176,492.492712131819,6731,68.87688465838445,5351,55.105687149320325,2029,20.70903904625576,77.37264048070351,79.73133796126083,63.34029949113111,65.08142503193197,77.10664760116579,79.470484372791,63.240449809891935,64.98725555839437,0.2659928795377198,260.8535884698284,0.0998496812391778,94.16947353760465,212.4474,148.66223871399737,221976.86689583832,155330.58053642613,399.17337,257.02590215641743,416237.2031303875,267714.67897154624,469.75718,227.1183530684971,485835.4456831789,233473.73041695872,3743.25379,1736.1451671928944,3859182.316862925,1762132.70299343,1223.51624,554.6577129201472,1260738.3472473277,561928.4792243784,1972.93472,842.273523821567,2016095.4371153624,839604.5043008497,0.43219,100000,0,965670,10089.85758617447,0,0.0,0,0.0,33062,344.6247400921563,0,0.0,42618,440.2394809157115,1329170,0,47847,0,0,18819,0,0,72,0.7418475137659732,0,0.0,1,0.0104485565319151,0,0.0,0.06731,0.1557416876836576,0.3014410934482246,0.02029,0.3399344635988032,0.6600655364011968,23.857391677759207,4.130378081117093,0.3330218650719491,0.2558400299009531,0.2014576714632779,0.2096804335638198,11.196689127587412,5.904067337216116,21.753486243237344,14000.414650186734,61.3576922728514,16.677440752936963,20.229342370558683,12.478286644573608,11.972622504782157,0.5782096804335638,0.7940102264426588,0.6891133557800224,0.5766488413547237,0.1224489795918367,0.7335058214747736,0.9236363636363636,0.8401639344262295,0.6964980544747081,0.147410358565737,0.5151116951379764,0.706959706959707,0.6321483771251932,0.5410404624277456,0.1148730350665054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024101265822784,0.0048645526131768,0.0077908639946437,0.0103591160220994,0.0132487366419587,0.0156972127776533,0.0186027073309956,0.0213222010145652,0.0239397315724376,0.0267376394717985,0.0293330599272056,0.0317245202821326,0.0344877226175297,0.0369313793138961,0.03959680997039,0.0418380635425925,0.0443349243655715,0.0466775926809534,0.0492152582891591,0.0515894508790934,0.0684995875405933,0.0848018082122975,0.1006459460593096,0.1160715224269691,0.1303504406865432,0.1485319151185781,0.1622733974732956,0.1763460085352745,0.1884331944889458,0.2001029634158113,0.2145711485227431,0.229088666219404,0.2426381802952342,0.2542363610506394,0.2645741390885179,0.2756912506233723,0.2857063105712116,0.2957135777998018,0.3050419881592254,0.3144050200181253,0.3217912936734954,0.3285172349194455,0.3350521574205785,0.3411298553160833,0.3469628584289346,0.3518479669278707,0.356349922317446,0.3597428225857788,0.3637824250434061,0.3689317824749482,0.3662554211674703,0.3644110965787843,0.3623190448670059,0.3603315588473556,0.3582000743770918,0.3543515920832758,0.3515632424213627,0.3523872134111266,0.3525393626831517,0.352267864783911,0.3531412976428584,0.3542143026097926,0.3551730636346504,0.3546126202540122,0.3561124312906555,0.3581534460338101,0.3584884216508027,0.3626772688852017,0.3664815396975095,0.3709201149651561,0.3739480589991856,0.3774624020334675,0.3798791236464366,0.382901042062828,0.3847526053891653,0.3888295980078264,0.3916704945643852,0.3912867274569402,0.3941323000276778,0.3983833718244803,0.0,3.15711661656579,67.39405233258901,199.07282680768725,280.8687753807261,CHI_public_implementation,6 +100000,95736,52079,492.8762430015877,6669,68.34419654048634,5199,53.66842149243753,2016,20.640093590707774,77.33281654085012,79.69864214010853,63.319784280511655,65.07071945180923,77.08591507033945,79.45281739400988,63.22834118063035,64.98216995926344,0.2469014705106644,245.8247460986485,0.0914430998813031,88.5494925457806,214.01226,149.75733095381142,223544.18400601653,156427.39508002365,396.01653,253.71513338057065,413033.8535138297,264394.47374088183,458.17027,220.9652435670175,474096.0453747807,227357.54816502388,3673.63927,1669.5288692976114,3796564.594300994,1703501.756738511,1228.66431,543.0075451672705,1267759.2128352972,551674.1099358397,1959.95842,817.3410957149871,2009281.5450823095,822341.162064693,0.43225,100000,0,972783,10161.099273000753,0,0.0,0,0.0,32790,341.84632740035096,0,0.0,41489,428.91911088827607,1328978,0,47746,0,0,19026,0,0,77,0.8042951449820339,0,0.0,2,0.0208907829865463,0,0.0,0.06669,0.1542857142857142,0.3022941970310391,0.02016,0.341104118993135,0.658895881006865,24.36512635227816,4.22667854197363,0.3271783035199077,0.2471629159453741,0.2104250817464897,0.2152336987882285,11.286823191865016,6.156997013949785,21.46394144874143,14000.504569948822,59.25425641854556,15.688592421710036,19.34325031252486,12.324359964885636,11.898053719425029,0.5756876322369686,0.8,0.6972369194591417,0.5817694369973191,0.1170018281535649,0.7434069850320741,0.9083665338645418,0.8640552995391705,0.7272727272727273,0.16,0.5136986301369864,0.7305236270753512,0.6400947119179163,0.5416191562143672,0.1058688147295742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026345388037167,0.0053350643554816,0.0081632653061224,0.0105406531749016,0.0131445082000569,0.015900016297262,0.0186112442509101,0.0212149055640633,0.0234760025357354,0.0260185744565384,0.028450450080994,0.0311636837835895,0.0335605663345568,0.036333302437668,0.0388242334199991,0.041023679831316,0.0432783421878398,0.045567282048089,0.0477467922723397,0.050138550326062,0.0673445313234019,0.0840639450942646,0.09959837672892,0.1141703724729555,0.1282821575013966,0.1465792534630432,0.161144578313253,0.1751250665247472,0.1881088702785848,0.2003861210918646,0.2143303254151142,0.2276332161211793,0.2413028111576314,0.2526513743412564,0.2648165258711721,0.2765658221119773,0.287233686372108,0.2966943916082342,0.306049943246311,0.3146600096191283,0.3226993865030675,0.3289193302891933,0.3351814993839446,0.3420086833457267,0.3474687545591596,0.3525136355783706,0.3561065450536233,0.3597300910306193,0.364647328719185,0.3686817977646841,0.3677322838890536,0.3651840934448133,0.3626271317938807,0.3608767995370035,0.3591744348810197,0.355696260750916,0.3530595430490857,0.3535585814950477,0.3529743397000034,0.3540172038405254,0.3552703082544739,0.3563980292447417,0.3573927800708165,0.3583577319357218,0.3596189468113257,0.3608798893614801,0.3632316429325647,0.3681393078691312,0.3709773854324201,0.3760738148265988,0.3788321167883212,0.3827817388528253,0.3860257056451613,0.3886565802478522,0.3881911902530459,0.3912168560606061,0.3926445902640012,0.393167576308874,0.3952721275426058,0.3931034482758621,0.0,2.477713198806089,61.55843304708835,199.4124555444576,279.6095292542741,CHI_public_implementation,7 +100000,95764,52389,494.23582974813087,6692,68.38686771646965,5280,54.38369324589616,2039,20.769809114072096,77.34910350822409,79.67760774867504,63.34642956891118,65.06670969946376,77.08740249499516,79.4224597568017,63.24712301355562,64.97365838095583,0.2617010132289294,255.14799187334347,0.0993065553555538,93.05131850793202,212.77234,148.88746875677987,222184.0566392381,155473.31852969786,396.71327,255.49628080131336,413541.080155382,266077.5351920486,465.0372,225.83610487930255,481139.0501649889,232310.92331297215,3762.15262,1745.3792220269022,3877772.931372959,1771790.100692223,1236.14648,556.2388973157181,1272752.934296813,562833.0479891149,1998.71034,856.3236516474801,2038576.0828703896,851617.0528169863,0.43307,100000,0,967147,10099.275301783551,0,0.0,0,0.0,32894,342.7175138883088,0,0.0,42147,435.6856438745249,1329692,0,47858,0,0,18705,0,0,77,0.8040599807860992,0,0.0,1,0.0104423374128064,0,0.0,0.06692,0.154524672685709,0.3046921697549312,0.02039,0.3410719403840642,0.6589280596159358,23.98300066398069,4.160501452511358,0.3083333333333333,0.2609848484848485,0.2204545454545454,0.2102272727272727,11.084053247481124,5.797398637848945,22.035607243864877,13997.559905882084,60.492154781919616,16.837296224517992,18.573789184417304,12.289151991891687,12.791917381092636,0.5700757575757576,0.7989840348330914,0.7002457002457002,0.5927927927927928,0.095360824742268,0.740473061760841,0.9194139194139194,0.8486842105263158,0.7669172932330827,0.1338582677165354,0.5010643959552954,0.7199519230769231,0.6424914675767918,0.5379146919431279,0.0846153846153846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028050064808814,0.0057470681843521,0.0083696016069635,0.0112035428791987,0.0139199577012242,0.016704670385602,0.0194969322652316,0.0222993315303362,0.0246656244571825,0.027429354832109,0.0299655780027045,0.0323030825432007,0.0350543645818346,0.0375676732744601,0.0397975069851841,0.0420281771607998,0.0444743377483443,0.0468704633124559,0.0492559647518497,0.0518105037334805,0.0684645570677131,0.0850060143297944,0.1003470729482326,0.1157144658847269,0.130010959828015,0.1469954133288241,0.1613046842702227,0.1754796443612541,0.1883171635020759,0.2004950495049505,0.2155997373491641,0.2293755611080464,0.2419470604867651,0.252931268320427,0.2633461356458198,0.2747848050782678,0.284382674704175,0.2940547957531041,0.3032332013118921,0.3114915545376467,0.319241004280921,0.3270839916207328,0.3328755446107217,0.3394430525419868,0.3454649297623098,0.3507611833501937,0.3556994851108077,0.3593441453378008,0.3643532509305975,0.3688239571626892,0.3662579748850132,0.3641150765752726,0.3626558005752636,0.3604361911373365,0.3586041809152814,0.3553669633419629,0.3525322269027333,0.3534397792233392,0.3542460649770136,0.3556564645308924,0.3550014062060561,0.3558059852250896,0.3565164484726418,0.3564110037441427,0.3588969647212228,0.3604693802713605,0.3622424120833453,0.3676158499889139,0.3695021920520435,0.3729939568575659,0.3761345924635555,0.3795975017349063,0.3826452599388379,0.3831273508866201,0.3843669864184633,0.3880668831949957,0.3897699004975124,0.3950338600451467,0.4023882254929186,0.4114624505928854,0.0,2.953002131712636,66.18443965614715,197.4050343342513,277.21868537307347,CHI_public_implementation,8 +100000,95658,52418,495.65117397394886,6674,68.43128645800665,5316,54.89347467017918,2108,21.608229316941603,77.31532774038504,79.70807277955959,63.31028192710126,65.07672416233892,77.04631965495466,79.43996431631338,63.21009082479151,64.97935194209373,0.2690080854303858,268.1084632462074,0.1001911023097505,97.372220245191,212.036,148.39539575315223,221660.49886052395,155131.1921147758,399.95692,257.31907758245586,417400.8342219156,268297.3793615588,471.68005,228.1000597745134,488515.3776997219,234972.4477625313,3796.67668,1762.5965042706844,3925175.740659433,1799481.7143025657,1265.24842,571.3643508864957,1305990.6855673336,580836.6825445696,2064.68122,877.326965971425,2119009.9103054632,883833.5492378948,0.43449,100000,0,963800,10075.477220932908,0,0.0,0,0.0,33074,345.03125718706224,0,0.0,42703,441.99126053231305,1330600,0,47875,0,0,19056,0,0,74,0.7631353363022434,0,0.0,2,0.0209078174329381,0,0.0,0.06674,0.1536053764183295,0.3158525621816002,0.02108,0.3428571428571428,0.6571428571428571,23.79766628415078,4.272847293469343,0.3071858540255831,0.2592174567343867,0.2197140707298721,0.213882618510158,11.277687674112286,5.872540514764867,22.775961348381,14032.864225724645,61.40650693363763,16.826723305005377,18.853053705643973,12.76650573786204,12.960224185126227,0.5724228743416102,0.7851959361393324,0.7146356399265156,0.5795954265611257,0.1155821917808219,0.7475538160469667,0.9187725631768952,0.8627450980392157,0.7481481481481481,0.156,0.5014538725878932,0.6953883495145631,0.6567291311754685,0.5271049596309112,0.1045751633986928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026541321393115,0.0052718019424562,0.0078142442509488,0.0107187125353057,0.0132039388020833,0.0159409218232747,0.0187160866549712,0.0210714468106838,0.0237050672393516,0.0261638028140168,0.0288700182552868,0.0312888414089223,0.0337016233565829,0.0363630743232799,0.0386457473162675,0.0414003516392594,0.0440035227684815,0.046153686482896,0.0487627289653522,0.0513199995831031,0.0688098795356952,0.0849998952945364,0.1007053044774239,0.1157925751325869,0.1299415352793431,0.1484598285169895,0.162955648286773,0.1762888794205368,0.1886564547679875,0.2012215412028638,0.2157331953606691,0.2294139305206618,0.2422543491040519,0.2547635464206367,0.2656370486241159,0.2766665557293573,0.2868393712926036,0.2960027916296138,0.3043656021441875,0.3132803632236095,0.3217252285128419,0.3292196007259528,0.3364167189776267,0.3422034976534274,0.3473451327433628,0.3530782891815894,0.3584161144446254,0.362729992996753,0.3658296405711472,0.3696436357870535,0.3671947684217623,0.3651388793162864,0.3633940282929719,0.3613951736724702,0.3601739078645662,0.3564961173690187,0.3532265736483272,0.3537330093899796,0.3545072156487244,0.3549280671968546,0.3549885729272039,0.3563811897837656,0.3579259072580645,0.3582266848958917,0.3589959974924049,0.3601107309811705,0.3605510367739718,0.3641030516208765,0.3677407932011331,0.3722738935214881,0.3747186624408617,0.3777682678934417,0.3816667726145826,0.3836176947425307,0.3854365230651925,0.3862325804901489,0.3885145482388974,0.3970647366304785,0.4059296203934608,0.407621247113164,0.0,2.571423721365041,67.31524600782829,206.54663260226656,274.1866121627546,CHI_public_implementation,9 +100000,95638,52097,492.6807335996152,6705,68.8952090173362,5281,54.758568769735874,1966,20.27436792906585,77.3146043072854,79.7335630924632,63.296484254502126,65.08288081991957,77.07656244608881,79.4941452147676,63.208737062147335,64.99662851368589,0.2380418611965922,239.41787769560108,0.0877471923547901,86.25230623367486,211.67696,148.16419068512332,221331.43729479917,154921.8832316896,397.02704,254.76341375447555,414680.9950019867,265928.79791973444,466.95632,225.18305190377575,485359.3864363538,233210.52054422905,3675.83552,1682.6222406503566,3814134.737238336,1730440.226096937,1230.07145,546.9811627756876,1275498.6302515736,561371.6464758762,1908.87026,793.4615207964531,1970589.1382086617,807352.9726413863,0.43189,100000,0,962168,10060.519877036324,0,0.0,0,0.0,32910,343.6291014032079,0,0.0,42311,439.5114912482486,1334637,0,47925,0,0,18747,0,0,67,0.6901022606077082,0,0.0,1,0.0104560948576925,0,0.0,0.06705,0.1552478640394544,0.293214019388516,0.01966,0.3335232127598975,0.6664767872401025,24.35473694002626,4.17116111987635,0.3315659912895285,0.2594205642870668,0.1975004733951903,0.2115129710282143,11.26022163182791,5.993331730613141,20.80497209146901,13977.300119285272,60.12390991725295,16.638772727499912,19.872544852057278,12.353426515191002,11.259165822504755,0.5926907782616928,0.791970802919708,0.7178754997144489,0.5881826320501343,0.1255992329817833,0.779077770130764,0.9295238095238096,0.8479166666666667,0.7925311203319502,0.2222222222222222,0.5219435736677116,0.7065088757396449,0.6687647521636507,0.5319634703196348,0.1016746411483253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025736374413585,0.0053645130867753,0.0080298046859138,0.01048620637098,0.013153076171875,0.0157262171521694,0.0183392662253547,0.0208907957911941,0.0235348266339367,0.026226318484383,0.0288310649339993,0.0313716627803059,0.0337537549895066,0.0364333257774022,0.0390590324012427,0.0414930465801582,0.0437967548749404,0.0464384713613853,0.0487561257296251,0.0510314761894829,0.0675097987980141,0.0839984916095782,0.0999621991683817,0.1151295707639517,0.1299290720256691,0.1480920718278841,0.1619632292806236,0.1755554371570142,0.1882213261169524,0.2005757435792775,0.2148689902160663,0.229029391364661,0.2406790002396984,0.2521251424064499,0.2618874413067918,0.2731439860597787,0.2837007064294017,0.2932705309654737,0.3025055394579853,0.3116956112780747,0.3187002790740762,0.3272259272259272,0.3338028835909941,0.3395912006233891,0.3450448591096164,0.3508369978936477,0.3563461297986745,0.3603929942296449,0.3653393360759657,0.3694714487343525,0.3673788080718334,0.3646465063190175,0.3637452275961172,0.3618408686725561,0.3594977386336586,0.3567912404729408,0.3539261702397564,0.3536218048949092,0.3540991477613732,0.3542702780063687,0.3543438354624808,0.3558700622881022,0.3571622439818778,0.3578026685706635,0.3582908193815717,0.3592562819282732,0.3605664178892704,0.3664458471345541,0.3697831173820417,0.3748320290886096,0.3803217933652716,0.3826730058108822,0.3849163774061218,0.3914463688848374,0.3926495405962872,0.3990470518165575,0.4050201425472575,0.4105607859189521,0.4102282100632389,0.41284046692607,0.0,1.7435481962819035,64.49332645353162,196.6269542484021,286.3875316044599,CHI_public_implementation,10 +100000,95645,52306,495.72899785665743,6466,66.24496837262795,5086,52.60076323906112,1967,20.178786136232947,77.29129418892526,79.69081323179164,63.29829466637945,65.0696934790662,77.04701287345134,79.44934504415058,63.20647505893539,64.98174139774348,0.2442813154739269,241.46818764106115,0.0918196074440587,87.95208132272592,213.48184,149.33532358516408,223202.3001725129,156135.0029642575,398.87925,257.5703850345446,416465.3562653562,268722.28034350416,465.9829,225.8050902831041,483685.05410633073,233415.13229053435,3610.35447,1665.242188634552,3735518.772544304,1701839.7706461917,1201.1429,540.5987180080187,1240589.293742485,549968.579651857,1920.90298,807.3132850316842,1972129.3742485235,811313.0820250452,0.43321,100000,0,970372,10145.55909875059,0,0.0,0,0.0,32953,343.9385226619269,0,0.0,42128,436.9491348214752,1321951,0,47573,0,0,18879,0,0,94,0.9828009828009828,0,0.0,0,0.0,0,0.0,0.06466,0.1492578657002377,0.3042066192390968,0.01967,0.3453737971872687,0.6546262028127313,24.21366604626618,4.185411331450527,0.3100668501769563,0.2636649626425482,0.2143138025953598,0.2119543845851356,11.058077130242657,5.843764589711066,20.983146091270715,13916.011765392575,58.36254915230882,16.367279571669613,17.990229855349504,12.11405366280195,11.890986062487736,0.5739284309870232,0.808351976137211,0.6911857958148383,0.5695732838589982,0.1201834862385321,0.7459016393442623,0.9168278529980658,0.8601398601398601,0.7517482517482518,0.146551724137931,0.5044174489232468,0.7402912621359223,0.6280487804878049,0.5037878787878788,0.113053613053613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028058304549091,0.0054040352833823,0.0079676826730814,0.0105883548419876,0.0134603058327991,0.0160004073942048,0.0185982013581581,0.0213204811403598,0.023505234745624,0.0262015440378432,0.0284580359340388,0.0310375285007086,0.0335781741867785,0.0358486094366647,0.0382582483379444,0.0406789127466799,0.0431952908013099,0.0454158446682587,0.0478836309152203,0.050218932443703,0.0669641457577879,0.0837959568450822,0.0994476878491326,0.1140911339641906,0.1281361155969306,0.1462428418701639,0.1611194275461562,0.1738750639168229,0.1858667293956631,0.1979642017330055,0.2124339480211366,0.2268769224104319,0.2399677749471988,0.2521928623835127,0.2632135889154661,0.2742992779262841,0.2851747564136944,0.2942348834590699,0.3029807528530063,0.3115208746375732,0.3191432706222865,0.3257035866830495,0.3322278025206102,0.3386036468330134,0.3439202997275204,0.3490889788662848,0.3549494898854435,0.359013572930606,0.3639004526060512,0.3678616227635835,0.3660912802684238,0.3631077058758681,0.3611036624091454,0.3587445893712813,0.35622151389675,0.3538513544659731,0.3513860899093924,0.351415443900993,0.351703922106418,0.3524143860151884,0.3527753237721096,0.3540625247956835,0.3549193938247472,0.3574695121951219,0.3593967963827024,0.3604087378134612,0.3624978701652752,0.3665703880447067,0.370007376962799,0.3732108778625954,0.3762534184138559,0.3811794627245271,0.3830647709320695,0.3842254819138315,0.3844547783999241,0.3884218111938506,0.3898883374689826,0.3903045369794903,0.3948473816858023,0.3970814132104455,0.0,2.2829667275083234,64.46718453637058,192.84271145062328,264.0690440246876,CHI_public_implementation,11 +100000,95627,52048,492.1204262394512,6641,68.07700753971159,5248,54.262917376891465,1969,20.18258441653508,77.27514686010801,79.68570603088705,63.27600815666828,65.05615207424512,77.0288792278522,79.44044734217275,63.18487533058602,64.96797918181949,0.2462676322558081,245.25868871430131,0.0911328260822657,88.1728924256322,211.46224,148.02685409180216,221132.35801604151,154796.0869752289,395.77736,254.1934259386392,413273.615192362,265215.08145046805,466.22606,224.78210114584368,483558.8170704927,232076.1889940492,3691.53593,1693.4463030352094,3820274.6922940174,1730812.9012048985,1200.93596,537.4965217571487,1242609.5558785698,548831.1896819388,1917.3931,805.8407775282635,1967562.0483754587,812376.9128205519,0.43004,100000,0,961192,10051.470818910975,0,0.0,0,0.0,32681,341.1170485323183,0,0.0,42156,436.7699499095444,1333534,0,47936,0,0,18919,0,0,82,0.8574984052621122,0,0.0,1,0.0104572976251477,0,0.0,0.06641,0.1544274951167333,0.2964914922451438,0.01969,0.3387720051524259,0.6612279948475741,24.24455402852989,4.245605621915361,0.3107850609756097,0.2599085365853658,0.2054115853658536,0.2238948170731707,11.208781566600836,5.823452485110767,21.04993933905776,13931.680757049447,60.02058674297477,16.750409870203043,18.49896830040685,12.929538451221273,11.841670121143592,0.5676448170731707,0.7925219941348973,0.6842427958307786,0.5617021276595745,0.1131725417439703,0.756958587915818,0.9166666666666666,0.8855140186915887,0.7427536231884058,0.1572052401746725,0.4937748344370861,0.7111650485436893,0.6126350789692435,0.5061179087875417,0.1012956419316843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0048042325897246,0.0072954188016843,0.0097511427120365,0.0126425207742145,0.0154391396447775,0.018425990129298,0.021153433859787,0.023984541932054,0.0266526048492791,0.0293559537607828,0.0319389369439707,0.0345597464864086,0.036757581380007,0.0389512489802662,0.041236046884537,0.0436170653841369,0.046019629225736,0.0484114347559135,0.0510282829968296,0.0682623464854977,0.0841637588674777,0.100299385471926,0.1155543850408217,0.1296384320436036,0.1475762293606159,0.1621555562640142,0.1758911819887429,0.1882658903860355,0.1996259834057005,0.2144707863712916,0.2283467982432359,0.241557478907323,0.2523577663727683,0.2625840129785567,0.2740754729557093,0.285013935059266,0.2952401372212693,0.3040602838897679,0.3118568540977581,0.3191847246067468,0.3262730748481223,0.331976840756472,0.3375728097039572,0.3431223464434739,0.3477767219143763,0.3530702579342687,0.3584807094439631,0.3632163021610747,0.3670735416639115,0.3651943915900841,0.3628090398907933,0.3601963938034369,0.3580657763373027,0.355914554325836,0.3534805274455688,0.350953618045875,0.350551382976975,0.3505700047784831,0.3515350446866582,0.3520796609533811,0.3533027631734988,0.354102483495756,0.3561806301467956,0.3593092334704283,0.3608129233976029,0.3618269312907543,0.3659702995217719,0.3705592683784734,0.3745427071735326,0.3760707125934026,0.3786117923019512,0.3816187594553706,0.3816759097470181,0.3824528301886792,0.387830877949455,0.3881102726012629,0.3863125638406537,0.3847218378079158,0.3892307692307692,0.0,2.3974509343227166,64.93327815182964,197.0833247278213,279.17264643606245,CHI_public_implementation,12 +100000,95676,51890,490.8127430076508,6633,68.00033446214306,5229,53.97382833730507,2015,20.59032568251181,77.28391542799022,79.68163409433437,63.28504443165552,65.05946012599921,77.02664387184636,79.42669866533433,63.18922167595881,64.96744210688327,0.2572715561438627,254.9354290000423,0.0958227556967088,92.01801911594032,213.2218,149.21213176959645,222858.18805133997,155955.65425978976,395.5507,254.482515041902,412727.1625067938,265283.51419572515,462.61322,223.7759002812384,479076.2364647351,230443.296316592,3692.47,1707.5075105303931,3814325.692963753,1739654.4175450404,1222.17289,546.4408582070981,1262864.7309670136,556593.5325547656,1957.15206,831.4080471573327,2002712.1744220075,833462.551412827,0.43191,100000,0,969190,10129.91763869727,0,0.0,0,0.0,32800,342.1129645888206,0,0.0,41954,434.1109578159622,1327189,0,47735,0,0,18800,0,0,70,0.7316359379572724,0,0.0,0,0.0,0,0.0,0.06633,0.1535736611794123,0.303784109754259,0.02015,0.3411578341013825,0.6588421658986175,24.08375741386212,4.165693064045548,0.3096194301013578,0.2631478294128896,0.2050105182635303,0.2222222222222222,11.235627257364184,6.097985143669381,21.817170548982208,13974.882569143654,60.21261561181964,16.85314509232383,18.47154904992564,13.087804802255024,11.80011666731516,0.5746796710652132,0.7965116279069767,0.7010500308832612,0.5697074010327022,0.1044776119402985,0.7429906542056075,0.8937728937728938,0.8901869158878505,0.7181208053691275,0.1327433628318584,0.5071026534441169,0.7325301204819277,0.6330814441645676,0.5185185185185185,0.0969267139479905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002634725684522,0.0054466893865628,0.0080205488492035,0.0107214357577666,0.0131762359716329,0.0160337380816559,0.018675098169208,0.0213057155697185,0.0237279468166709,0.0263475998279005,0.0286230174200299,0.0312255969750524,0.0335254167524181,0.0360194164751471,0.0384520098271982,0.0408087284761363,0.0431160433958158,0.0456003404714699,0.0483055607564126,0.050578426263679,0.0675636150921322,0.0840286865937287,0.0994700110195728,0.1144327293389734,0.1285896718768139,0.1463125469730811,0.1605504587155963,0.1750729515005644,0.1879723359450994,0.2004658251760261,0.2156315346972212,0.2299067243004322,0.2427393799479478,0.254200162092305,0.2656356782257886,0.2768291328966359,0.2868148578840262,0.2968177565352662,0.3053496726082211,0.314190313364161,0.3216642122473591,0.3285761193329737,0.3350736882075136,0.3408034588362457,0.3447734300810831,0.350679012345679,0.35533491293392,0.3588600257347789,0.3632838840188806,0.3677822388927043,0.3651849054568014,0.3633696101391376,0.3615977674103934,0.3589313595096282,0.3569992703664547,0.3538114458478491,0.3506567675613934,0.3513882043699687,0.3522170861153912,0.352611506025175,0.353142642077531,0.3546956711936529,0.3558713600946006,0.3563847765835192,0.3577097643261085,0.3596157379458778,0.3598662398536641,0.3627203234569461,0.3675669979979628,0.3723032994923858,0.3767997084016767,0.3793194967885769,0.3834398095953902,0.3851473241130487,0.3900055834729201,0.396304143126177,0.3975940307598599,0.3985433946995751,0.4035674470457079,0.4018440261237034,0.0,2.6447696490623813,65.7515188565405,198.0872204713237,275.6674362481986,CHI_public_implementation,13 +100000,95645,52315,494.3802603377072,6776,69.36065659469915,5315,54.86956976318679,2007,20.481990694756654,77.35161970545354,79.75654427304289,63.31721993396855,65.0940812634113,77.085498590788,79.49618851147986,63.216571603481725,64.99907556205417,0.2661211146655375,260.35576156303364,0.1006483304868268,95.00570135712394,212.89444,149.01042768205312,222588.1541115584,155795.3135888474,401.45168,258.4525748572934,418987.265408542,269476.9876703367,469.84731,227.632023316402,487505.8497569136,234996.44471256164,3732.72179,1736.1633633996216,3851453.018976424,1763985.376548301,1189.34164,539.6315464748925,1225325.0980187152,546043.4801169119,1948.95446,840.8655570334781,1990045.3133985049,837210.3826289526,0.43266,100000,0,967702,10117.6433687072,0,0.0,0,0.0,33215,346.5209890741806,0,0.0,42597,441.6017564953736,1326151,0,47598,0,0,19123,0,0,76,0.7946050499241989,0,0.0,1,0.0104553296042657,0,0.0,0.06776,0.1566125826283918,0.2961924439197166,0.02007,0.3514955764639798,0.6485044235360202,24.0308880699348,4.168833447648595,0.3260583254938852,0.2562558795860771,0.2013170272812794,0.2163687676387582,11.193783365386478,6.020206008859458,21.71047344628348,13937.45970153635,60.98337393632524,16.617454203928528,19.76221276403467,12.995325901821971,11.608381066540058,0.5727187206020696,0.7738619676945668,0.7097518753606463,0.568695652173913,0.0990654205607476,0.7344849648112604,0.9045871559633027,0.8747474747474747,0.6920415224913494,0.094017094017094,0.5053304904051172,0.6866585067319462,0.6437802907915994,0.5272938443670151,0.1004784688995215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227707925958,0.0053744359377376,0.0080987273428461,0.011023734048606,0.0134779114831805,0.0164188225707883,0.0191811553561413,0.0217704302008557,0.0245501022494887,0.0270718741357588,0.0298133842192196,0.0323084511673791,0.0347017114159574,0.0371149325745391,0.0395616200638357,0.0421193121857346,0.0442979592259776,0.0467885431914208,0.0489933933309056,0.0515114545208079,0.0689997492058184,0.0854127181914325,0.1001931434089811,0.1152093615498753,0.1287932362968514,0.1462415446663914,0.16068982361499,0.1743241514582978,0.1874592049649563,0.199031107673799,0.2136493075031281,0.2271722404039966,0.2401916480644634,0.2522748425951273,0.2638275372057414,0.2744432614674829,0.2850532057587409,0.2941686562457768,0.3036989926292717,0.3117079542590004,0.3193319135145145,0.3259066933323977,0.3334950537227245,0.3405779737371801,0.3461753278290432,0.3517038387172256,0.3554508294061027,0.3590330206665141,0.3635705419942077,0.3675840898011884,0.3652182104455718,0.3628277217922103,0.360918666216064,0.3581951585880178,0.3566536421578095,0.3535022582867641,0.3495498916259275,0.3496232578754699,0.3490490268118047,0.3497749035300843,0.3500928653171491,0.3517445883166947,0.3525944880238265,0.3530240042912699,0.3521914454418895,0.3537853577371048,0.3553417952074677,0.359612724757953,0.3628039153773287,0.366264294790343,0.3696097627612586,0.3726482213438735,0.3768315591734502,0.3783989062737354,0.3805592043535372,0.3861705945687283,0.3835003855050116,0.3922083165119095,0.3966874830301384,0.400375939849624,0.0,2.688908995243586,68.53295248062481,197.8295428695793,274.4268040562245,CHI_public_implementation,14 +100000,95786,52385,496.0745829244357,6504,66.55461132106988,5149,53.11840978848684,2002,20.45184056125112,77.3507064425629,79.67894881383334,63.34838135415546,65.06995059734541,77.09912415328611,79.4294424229426,63.25352710706004,64.97866296024466,0.2515822892767829,249.506390890744,0.0948542470954194,91.2876371007485,214.33038,150.01016426623994,223759.1506065605,156609.25800037576,396.86333,255.547046108012,413707.4937882363,266174.7177040612,472.49561,228.93247261157256,489113.0645397031,235902.2220253156,3657.73573,1713.6439581381828,3773749.973900152,1744265.1545647045,1237.53597,567.1725852928129,1272186.697429687,572397.4763779581,1963.96736,837.9764986451352,2008073.1422128496,838969.8387414967,0.43355,100000,0,974229,10170.870482116385,0,0.0,0,0.0,32892,342.7327584406907,0,0.0,42836,443.08145240431793,1323527,0,47626,0,0,18893,0,0,64,0.6681560979683878,0,0.0,0,0.0,0,0.0,0.06504,0.1500172990427863,0.307810578105781,0.02002,0.3519659624413145,0.6480340375586855,23.60312000179333,4.206628810303033,0.3128762866576034,0.2563604583414255,0.219265876869295,0.211497378131676,11.059295515801214,5.85608633367479,21.68254125510669,13894.037471129415,59.47745191299073,16.326017435882004,18.36263889928767,12.298304779340585,12.490490798480476,0.576228393862886,0.8090909090909091,0.7150837988826816,0.5693296602387512,0.112488928255093,0.7432950191570882,0.911660777385159,0.871244635193133,0.718978102189781,0.173076923076923,0.5032096008931063,0.7320954907161804,0.651528384279476,0.5190184049079755,0.0943613348676639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026437340464324,0.004845904298459,0.0073670431367773,0.010086543149683,0.0130043110460387,0.0151994869027864,0.0179772532713709,0.0206447530895694,0.023125581205228,0.0256856324191567,0.0280550033813554,0.0307414475979396,0.0331017614535588,0.0355245820637404,0.0378230114046484,0.040165704191159,0.0426720748313397,0.0454064813087018,0.0476052008474224,0.0499401384623392,0.0677198547518677,0.083627846671825,0.0987378661131727,0.11318732133849,0.1279537932924387,0.1457718858689332,0.1607470490290695,0.1737853227608961,0.1868453366077625,0.1990888138500294,0.2135390312960909,0.2273906557412492,0.2407047136693149,0.2528164166220483,0.2630826579870465,0.2736858410506633,0.2840170740133962,0.2935420084039278,0.3024470966937558,0.3104028381780728,0.3180463461405171,0.3246232916715337,0.3307745079485238,0.3369423318761602,0.3426525037936267,0.3480258700338774,0.3538725128500143,0.3594865205277286,0.3635421524431317,0.3677089240264279,0.365927161673102,0.3639603687904225,0.3621146367581581,0.3600827510380047,0.357109924595089,0.3537980312183753,0.3499143727007484,0.3507299330140391,0.3502028796931979,0.3511801442299089,0.3529599819467429,0.3538333432462975,0.3556163230963399,0.3578611117359908,0.3584063321991361,0.3597465172305436,0.3600504529297099,0.3632650476522179,0.3689005013770214,0.3732198265574031,0.379728863240817,0.3808885073505741,0.3851677681748856,0.3891326098668514,0.3940425531914893,0.3978032473734479,0.3977677879398543,0.3978427712092927,0.3984750070601525,0.4099134539732494,0.0,2.431621184384754,68.68653916997708,190.869689188934,263.24955703011415,CHI_public_implementation,15 +100000,95723,52392,495.1265631039562,6738,68.86537195867243,5372,55.40988059296094,2085,21.363726586086937,77.31652017658898,79.67709614977888,63.31665033110207,65.06250619627751,77.06005625373616,79.42343508415156,63.220803299729845,64.9706972849372,0.2564639228528165,253.6610656273126,0.095847031372223,91.80891134030844,211.30604,148.02952092569373,220747.40657940097,154643.6289352546,399.27075,256.6527895799347,416432.4039154644,267442.1294568021,477.3685,231.2436865129773,494246.2731005087,238203.88741948007,3790.10354,1750.3822888699422,3911523.082226842,1780775.6722501314,1243.36111,562.1854579256403,1278236.5993543873,566682.8477703122,2039.13282,854.4611892722506,2090723.2326609069,857770.9724544741,0.43296,100000,0,960482,10033.973026336407,0,0.0,0,0.0,33028,344.31641298329555,0,0.0,43290,447.68759859177,1332726,0,47920,0,0,18699,0,0,73,0.7626171348578712,0,0.0,1,0.0104468100665461,0,0.0,0.06738,0.1556263858093126,0.3094390026714158,0.02085,0.3461920294993618,0.6538079705006382,24.01939097186153,4.142721669826863,0.3112434847356664,0.263216679076694,0.2127699180938198,0.2127699180938198,11.046962039728331,5.802076895674651,22.106727600769474,14025.815854610162,61.52272199917774,17.500574026691858,18.918714068963464,12.660462595514508,12.442971308007913,0.5811615785554728,0.8147100424328148,0.6997607655502392,0.5765529308836396,0.1233595800524934,0.7512987012987012,0.9246231155778896,0.8666666666666667,0.6877470355731226,0.1708333333333333,0.5127870563674322,0.7343941248470012,0.6382978723404256,0.5449438202247191,0.1107419712070874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026438143859969,0.0052006772031913,0.0077746764780512,0.0106384059664488,0.0137736002604166,0.0163770802354714,0.0192344956299144,0.0216394514056963,0.0243146798089999,0.0271003542396134,0.0295405374921816,0.0318311102896631,0.0343763817906979,0.0369466497791232,0.0393315797617205,0.0417635328518438,0.0440980093785907,0.0465338215615696,0.0487328218881889,0.0510090328495671,0.0687102600778876,0.0859755969946212,0.1014053487152595,0.1170631164952573,0.1314507455132125,0.1498096044002538,0.1638533764787014,0.1771669470053442,0.18980660326958,0.2020880500445293,0.2162534880463708,0.2303154932626224,0.2431236065038882,0.2546037092117925,0.2646326962036466,0.2753666566896139,0.2855180424172707,0.2961783439490446,0.3050753181297038,0.3136715706494339,0.3214835387374877,0.327772188033788,0.3343674145994909,0.3404199160167966,0.346384406804392,0.3517586079229914,0.3552840944684583,0.3602399816574529,0.3640898078692007,0.3689625569570098,0.3669393420751182,0.3645691117454801,0.3619366600245898,0.3596764607824662,0.3581729336749896,0.3551878175705755,0.3517011658339281,0.3527774575517531,0.3532839709310297,0.3537333237699039,0.3547865337596388,0.3553330689928628,0.3568633226729507,0.3575214481426582,0.3580687990343995,0.3580795151768455,0.3589912406251789,0.3629774360267238,0.3672644163150492,0.3723306955103989,0.375748161008818,0.3790839205637412,0.3828174352495262,0.3890323560686617,0.3936800526662278,0.3936932632584806,0.3958781913257459,0.3948115119578435,0.400165471594043,0.3976317799847211,0.0,2.772133727622002,67.34498598331886,196.81191350848505,288.47789693124224,CHI_public_implementation,16 +100000,95681,51968,492.3548039840721,6597,67.70414188814917,5230,54.10687597328624,2027,20.84008319311044,77.40264542862671,79.78405029633609,63.35728834693722,65.1123418949683,77.14787628849072,79.52825039298155,63.26255557587383,65.01932803639998,0.2547691401359913,255.79990335454283,0.0947327710633914,93.01385856831246,212.73934,148.82872572079054,222342.30411471453,155546.79165225127,397.82799,255.9458134882884,415214.9643084834,266935.3775910402,461.53719,222.42539713198184,478546.3885201869,229474.58504284287,3689.89398,1697.6366370820992,3822277.902613894,1740638.823877755,1227.63572,550.8076471452277,1270615.5245032974,563235.717796875,1978.29166,836.5966728903456,2036528.4016680429,848638.2851899422,0.43179,100000,0,966997,10106.46836885066,0,0.0,0,0.0,33031,344.6347759743314,0,0.0,41832,433.5029943248921,1334005,0,47899,0,0,18926,0,0,70,0.7211463090895789,0,0.0,1,0.0104513957839069,0,0.0,0.06597,0.1527826026540679,0.3072608761558284,0.02027,0.3459137755842648,0.6540862244157353,24.03101085391449,4.127600689033423,0.3198852772466539,0.2565965583173996,0.2139579349904397,0.2095602294455067,11.02386281967738,5.830331251731419,21.749613480152103,13895.542015983305,59.775642184522006,16.326151055787157,18.92003332088024,12.259118814581097,12.270338993273516,0.5753346080305928,0.7995529061102832,0.6939629408248655,0.583029197080292,0.1215370866845397,0.7316250842886042,0.9195402298850576,0.8181818181818182,0.6900369003690037,0.205020920502092,0.5134774486255671,0.723170731707317,0.6481178396072013,0.5478787878787879,0.0988636363636363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026227582505493,0.005300657768048,0.0077399066747819,0.0102475041386104,0.0125176681140114,0.0150703622996558,0.0175150631582166,0.0200651146650881,0.0226255441780611,0.0250319807603745,0.0273173631825496,0.0297617214368577,0.0323154431420933,0.0346866052853817,0.0371749896822121,0.0402050561217107,0.0427538933068257,0.0451720022829865,0.0474258970358814,0.04976654020928,0.0668679355660949,0.0837024239568609,0.0989548354600403,0.1143626533145393,0.1287403360369577,0.1467324030089188,0.1608264708379319,0.1748493687325683,0.1877277536146702,0.1999721173644475,0.214563389078535,0.2273037173313132,0.2400604637000304,0.2516837961950579,0.2631127343131215,0.273964261198822,0.2846599777034559,0.2939557353106392,0.3028720330821957,0.3113571126333726,0.3189892130367496,0.3261775520924531,0.3326087983745215,0.3388747262216796,0.3446552477073123,0.349654051658336,0.3530368220932559,0.3580286128122379,0.3633837045463359,0.3674789251844046,0.3650977124270853,0.363252086078173,0.3610057592358477,0.3592644367262823,0.358550973823852,0.3548825975296563,0.3517083201518506,0.3522525776581073,0.3525419103978716,0.3538620640467869,0.3543097800655124,0.3543384566941531,0.3546893574422824,0.3556254040437816,0.3560620616773945,0.357327080890973,0.3576740078064902,0.3606937866574664,0.3643606753009722,0.3675281433328048,0.3700041015357972,0.3752066997386248,0.3781517902168431,0.3803353658536585,0.383715444853288,0.3851048786236153,0.3918856615952051,0.3947741543447438,0.4019151846785225,0.4011342155009452,0.0,2.0989221488637044,65.38168327525061,196.0842886802075,276.506018229384,CHI_public_implementation,17 +100000,95715,52238,493.5381079245677,6771,69.32037820613279,5348,55.16376743457138,2065,21.15655853314528,77.33907921770925,79.70647867243177,63.32552877917672,65.0755751532885,77.08369601813757,79.45254912642679,63.23103273705886,64.98460414883715,0.255383199571682,253.92954600498285,0.0944960421178535,90.97100445134744,211.3221,147.95230977643592,220782.635950478,154575.88651354116,396.40777,255.31182173116528,413485.5874209894,266073.0102190517,471.00869,228.6565861418893,486963.5689285901,234962.2167539489,3761.88863,1740.183046462491,3886709.5230632606,1774495.5717102769,1239.6057,557.391041947389,1280231.5206602938,567475.2566968491,2012.16844,842.3714486250844,2064397.3880791937,847751.8265729606,0.43321,100000,0,960555,10035.574361385365,0,0.0,0,0.0,32918,343.20639398213444,0,0.0,42834,442.417593898553,1335994,0,47965,0,0,18894,0,0,53,0.5537272109909628,0,0.0,1,0.0104476832262445,0,0.0,0.06771,0.1562983310634565,0.3049771082557967,0.02065,0.348274886877828,0.651725113122172,23.93394411058468,4.130596553929848,0.3102094240837696,0.2737471952131638,0.2088631264023934,0.2071802543006731,11.29642944370224,6.03308192819416,22.161914043830983,14013.852119795198,61.36115073727724,17.873002312969565,18.73988047480634,12.40579933542886,12.342468614072486,0.5742333582647718,0.7984972677595629,0.6847498493068114,0.5830324909747292,0.1074306177260519,0.7688802083333334,0.9390243902439024,0.8842794759825328,0.7321428571428571,0.1428571428571428,0.4958027282266526,0.7078651685393258,0.6086594504579517,0.532608695652174,0.0985442329227323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002653540755145,0.0054649795190006,0.0080793317296468,0.0108925377987319,0.0134787341179821,0.0163765798612879,0.0192525365828787,0.0220318737302065,0.0248164584142825,0.0272437702919999,0.0297827825979939,0.0321583369281649,0.034659371400362,0.0372339329500731,0.039699415760028,0.042211720422324,0.0443390069305597,0.0465881376161071,0.0488867628248458,0.0511663766787176,0.068350544528093,0.0844694631328931,0.0997902904477299,0.1140312131919905,0.1285369274738718,0.1469281543538969,0.1613885440869113,0.1757660285756872,0.1891068795281144,0.2004463423531683,0.215135449667033,0.2293049494872933,0.2424496279211453,0.2543274175547629,0.265906963941646,0.2766372544672549,0.2867382712189893,0.295869907720009,0.3047988740579315,0.3131131383515174,0.3202620431028496,0.3275077498976428,0.3342125495298362,0.3397851265405852,0.3451339247788147,0.3500430663221361,0.3542458016793283,0.3589424335209442,0.3639490083520802,0.3681239696669964,0.3665424909557943,0.3637539028650812,0.3620264230221507,0.3603555349672114,0.3585509186937439,0.3558222958057395,0.3536057806582471,0.3542969007040863,0.3545822194804304,0.3556546819297397,0.3570690659103289,0.3567949631741506,0.3580622170048633,0.3576711039397606,0.3587400817504207,0.3607804318945531,0.3625592417061611,0.3676030139663924,0.3720922048213971,0.3758681248503233,0.3792961231784437,0.3837745150573358,0.3874435468481649,0.3902045209903121,0.3970270015993978,0.4006898192197907,0.4033183439292914,0.4051020408163265,0.41210774784782,0.42,0.0,2.8365094339068344,66.99251423442433,203.8968884033238,277.4447829606759,CHI_public_implementation,18 +100000,95677,52685,498.34338451247424,6607,67.63380958851134,5250,54.1927526991858,2031,20.778243464991583,77.30793472821749,79.68498067755895,63.31631099018998,65.07070945481081,77.05185337020713,79.4303806072139,63.22115391262238,64.978708251287,0.2560813580103627,254.60007034504883,0.095157077567606,92.00120352380736,211.88816,148.3549217525038,221461.9605547833,155058.08266616196,400.36529,257.839580282453,417780.0934393846,268814.62010099954,470.03062,228.04558336850425,486700.356407496,234838.90398255968,3696.03962,1716.8258758945462,3818852.629158523,1750213.330438354,1204.41749,545.4554844577902,1241465.4305632494,552760.7585356834,1972.29298,836.1697886169889,2020151.7815148889,840280.5213269757,0.43641,100000,0,963128,10066.452752490148,0,0.0,0,0.0,33155,345.8302413328177,0,0.0,42547,440.1789353763182,1330508,0,47862,0,0,19045,0,0,76,0.7943392873940445,0,0.0,1,0.010451832728869,0,0.0,0.06607,0.1513943310189959,0.3074012411079158,0.02031,0.342782759618166,0.6572172403818339,23.90933768438425,4.181035550419493,0.3100952380952381,0.2685714285714285,0.2059047619047619,0.2154285714285714,11.47365641429557,6.255571323389714,21.972783097024877,14102.306052880136,60.43519873933864,17.32252149618726,18.580343493078324,12.650099749134544,11.882234000938528,0.5708571428571428,0.799290780141844,0.687960687960688,0.5455349248452697,0.1230342275670675,0.7503192848020435,0.9228070175438596,0.8624229979466119,0.6690391459074733,0.1798245614035087,0.49457111834962,0.7154761904761905,0.6134969325153374,0.5047058823529412,0.107854630715123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030071077091306,0.0056341453528434,0.0085109404639933,0.0110506215974648,0.0137804084289317,0.0163333469105128,0.0188638843287006,0.0212659520163348,0.0239015314154859,0.0265224022683768,0.0287960798786238,0.0313552361396303,0.033937698612668,0.0364166434877563,0.0388715186411994,0.0414030517305545,0.0440350622707586,0.0464592352654146,0.0487568917091438,0.0511457225662517,0.0686834710484806,0.0856335374470089,0.1011834816182642,0.1165848066385503,0.130868414671432,0.1491116751269035,0.1642795000742674,0.1774004683840749,0.1905057002126227,0.2017357535187092,0.2170344760735403,0.230520393811533,0.2433317022780405,0.2552702939118264,0.2656370316590764,0.2773605387921485,0.2884497360991776,0.2988354430379746,0.3083575449428001,0.3169496574322311,0.3244742449508986,0.3316405930051601,0.3376157434816587,0.3437136239814715,0.3493423214046701,0.3539789141008864,0.3592470434793514,0.3638566818454317,0.3668207912304855,0.3704517187541348,0.3683471877361546,0.3661680282623095,0.3641950020483408,0.3616068192690741,0.3597787353322697,0.3562685260555052,0.3530906953468791,0.3538299135712872,0.3543380093061589,0.3564168295000269,0.3561991869918699,0.3573853147269587,0.3585179269471649,0.3593886560742218,0.3605010377950475,0.3620978727863355,0.3648617709346918,0.3689581095596133,0.3735847721483158,0.376813905278265,0.3819657845250653,0.3847058194837813,0.3879885605338417,0.3906070140434349,0.392376256400531,0.3922645338426644,0.3903775883069427,0.3977043898509867,0.3982133188955062,0.3998493975903614,0.0,2.641125893686713,68.62907852802782,195.84942838083336,269.17895586956325,CHI_public_implementation,19 +100000,95700,52183,493.4169278996865,6566,67.03239289446186,5120,52.8526645768025,1908,19.508881922675027,77.38171245272493,79.7544083127881,63.34258245905804,65.09468145781159,77.13899829824996,79.51492939918545,63.25081273081056,65.00668478997919,0.2427141544749673,239.4789136026532,0.0917697282474847,87.99666783239957,212.9677,148.95072212497362,222536.32183908048,155642.94851303406,395.42979,254.4867670653049,412506.16509926855,265230.8962667339,462.04764,223.68382829723828,478445.9665621735,230404.75210786032,3562.55174,1649.9780322595034,3680984.2215256006,1682548.0559920156,1188.19077,529.3187120641695,1225948.9864158828,537486.9580451294,1856.93518,791.1665771965459,1900844.158829676,792943.4998409149,0.43313,100000,0,968035,10115.287356321838,0,0.0,0,0.0,32734,341.34796238244513,0,0.0,41716,431.6300940438872,1332755,0,47861,0,0,19149,0,0,84,0.8672936259143156,0,0.0,0,0.0,0,0.0,0.06566,0.1515942095906541,0.2905878769418215,0.01908,0.3368176538908246,0.6631823461091754,24.28880489184664,4.177393408999119,0.323046875,0.2673828125,0.2046875,0.2048828125,11.275472513360242,6.046588244831393,20.423151623347387,13985.641715911792,58.333475094786834,16.490658686015223,18.82366960200878,11.717427187567308,11.301719619195527,0.589453125,0.7969320672023374,0.711608222490931,0.5786463298379408,0.1364503816793893,0.7692842251563586,0.929718875502008,0.8832599118942731,0.7342657342657343,0.1641791044776119,0.5191524042379788,0.7210103329506314,0.6466666666666666,0.5203145478374837,0.1298701298701298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481364446605,0.0051597076503563,0.007671388561919,0.010645429981919,0.0129381369896454,0.0157942973523421,0.0183330954177457,0.0212036139043438,0.0242174561959477,0.0268198057099571,0.0294027188288122,0.0318480492813141,0.0341011929247223,0.0362698036630338,0.0386782522548554,0.0413151364764267,0.0436957557429003,0.0458031109589183,0.0482584322249841,0.0506586352078035,0.0673100019843134,0.0841917922948073,0.0999937044886995,0.1149662297220527,0.1290057171789624,0.1469182283514531,0.1611174772939478,0.1748411067698629,0.1876061573960325,0.199313488871011,0.2138685344827586,0.2279311464761286,0.2409772227902625,0.2528865077629564,0.2635794523110099,0.2749701023165168,0.2857079117912795,0.2951135008661612,0.3042861680885823,0.3130104115363029,0.3222341816835063,0.3288581185386163,0.3354567521165117,0.3417935499340606,0.3470662583248262,0.3526525983630805,0.3570713767481424,0.3619425778863775,0.3654680357905914,0.36886813607165,0.3662123434199373,0.3642586178459508,0.3625909609131983,0.3597328794784515,0.3574646551468627,0.3545678032096013,0.3514619236419353,0.3529248138754806,0.3527680925248745,0.3531400106742572,0.3538533395609528,0.3554937796967725,0.3567423342296708,0.3554006192502172,0.3586261406912409,0.3597336649567335,0.3593741141788083,0.3649058136265659,0.3672038509836752,0.3708122629582807,0.376088534107402,0.3827363289529462,0.3870784388025767,0.3887784742394129,0.3951779996232812,0.39684422825958,0.3965832824893227,0.4038772213247172,0.4054500412881915,0.4018440261237034,0.0,2.447729338624319,62.91156250931434,191.7718834690859,271.3173113299856,CHI_public_implementation,20 +100000,95843,52103,492.4303287668374,6629,67.68360756654111,5303,54.59970994230147,2074,21.14917104013856,77.44506122741345,79.72186502973028,63.40474875222951,65.08364149607681,77.1838137068642,79.46605920889274,63.30761271281469,64.99219447875939,0.2612475205492472,255.8058208375371,0.0971360394148206,91.44701731742089,212.54222,148.7192827253048,221760.81716974635,155169.68659714825,399.73118,256.52203922171225,416343.8331437872,266925.0849306312,462.99201,223.84721848152185,478776.4051626097,230267.1014273253,3775.6616,1728.7655745195077,3887969.116158718,1752518.4364148614,1242.06143,561.5175315202075,1273794.956334839,563918.0126484536,2024.29578,850.0018002861658,2065467.6502196295,845041.894334672,0.43231,100000,0,966101,10080.03714407938,0,0.0,0,0.0,33118,344.77217950189373,0,0.0,41952,433.4171509656417,1335715,0,48081,0,0,19076,0,0,67,0.6990599209123254,0,0.0,0,0.0,0,0.0,0.06629,0.1533390391154495,0.3128677025192337,0.02074,0.3407524411257898,0.6592475588742103,24.125333457258765,4.261311494609302,0.3316990382802187,0.2447671129549311,0.2145955119743541,0.2089383367904959,11.258326774121882,5.886436764958351,22.15137174554129,13939.008568988964,60.325916321312086,15.794431686997475,19.895558959189604,12.101321969233762,12.534603705891245,0.572128983594192,0.8043143297380585,0.694712905059693,0.5776173285198556,0.1124780316344463,0.7528390113560455,0.9334637964774952,0.8737060041407867,0.7230769230769231,0.1646090534979424,0.501050972149238,0.7204574332909784,0.6269592476489029,0.5330188679245284,0.0983240223463687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025607805826028,0.0050648811272399,0.0075438792168155,0.0102513093256465,0.0129046680350356,0.0155151539815445,0.0181394117167766,0.020506388489502,0.0232004819818439,0.025521472392638,0.028076714348614,0.0309519414189896,0.0332867736170737,0.0355897509746037,0.0379654241618759,0.0406160007431644,0.0428671892775146,0.0452322231663592,0.0478192709793295,0.0501846938244628,0.0684462982273201,0.0854420460956599,0.1009193524742937,0.1163334907392832,0.1309183115188754,0.148077389936775,0.1628227121587563,0.1765712160654518,0.1889116386205131,0.200866912827099,0.2152936751034445,0.2286309787362714,0.2420422963348966,0.2537913113733882,0.2648037697301216,0.2760928976864094,0.2861044230426253,0.2954609307395794,0.3040441718347864,0.3130765181166884,0.3207841776544066,0.3272708133523591,0.3327652927184293,0.3384182482188828,0.3439727075163597,0.3489303001564213,0.353742689326103,0.3582230142566191,0.3634573020603862,0.3672615433353573,0.3654312341755104,0.3627585827464789,0.3612928644799977,0.3587340494556989,0.3564385795833642,0.353631156930126,0.3502486776663772,0.3497536139351374,0.3501193317422434,0.3506923432883636,0.3510990552801422,0.3522520742789411,0.3531493424909959,0.3537440800643374,0.355669731819164,0.3564760641755727,0.3575604495402429,0.3614382360310699,0.3658961754349266,0.3690876706906788,0.3740189815659792,0.3771321961620469,0.3790729982318767,0.3809706945619567,0.3851132686084142,0.3853078862081383,0.3864201367308887,0.3895833333333333,0.3924655608658982,0.398019801980198,0.0,2.7591575767458703,65.50654860626108,192.0188813916584,286.3879287969252,CHI_public_implementation,21 +100000,95675,52354,493.744447347792,6797,69.65246929709956,5321,54.93598118630781,2004,20.50692448392997,77.29747507811412,79.70040871384316,63.28577397120039,65.06555753605038,77.0412302741964,79.44633927777811,63.18975033915867,64.97322325508028,0.2562448039177241,254.06943606505197,0.0960236320417209,92.33428097009266,210.79652,147.59545557277747,220325.60229945128,154267.52607554477,396.33138,254.70029580868172,413572.7410504312,265539.20648934593,466.05002,225.46420184669995,482056.49333681737,231878.09402390203,3720.42926,1711.2232174014557,3843239.268356415,1743206.8224734303,1235.76483,552.5568097649785,1276895.9707342568,562803.4489312555,1951.67372,825.6366898272681,1999499.3676509012,829630.6149881912,0.43289,100000,0,958166,10014.800104520513,0,0.0,0,0.0,32776,341.8656911418866,0,0.0,42328,437.5542200156781,1337058,0,48058,0,0,18898,0,0,62,0.6375751241181082,0,0.0,2,0.0209041024301019,0,0.0,0.06797,0.1570144840490656,0.2948359570398705,0.02004,0.3496837666900914,0.6503162333099086,24.0995044842109,4.20642814881227,0.3213681638789701,0.2653636534485999,0.20917120841947,0.2040969742529599,11.30517171492919,6.020847858683551,21.46661340185633,14064.889902262892,60.81170648440451,17.23188680740309,19.421245026499975,12.039086908705029,12.119487741796402,0.5812817139635407,0.7861189801699717,0.7116959064327485,0.5902394106813996,0.1123090745732255,0.7607003891050583,0.9112627986348124,0.8704883227176221,0.7710843373493976,0.1567796610169491,0.5080709182323366,0.6973365617433414,0.6513317191283293,0.5364396654719236,0.1003420752565564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002837569419109,0.0059136185665307,0.0089243108787248,0.0115740270297733,0.0141398111979166,0.0168469514555195,0.0194096528089429,0.0220787974101836,0.024750196876566,0.0272398644151109,0.0300124111474669,0.0325142281851615,0.0350198555585276,0.0373435004379411,0.0399772856331629,0.042491130441978,0.0451167563197661,0.0476284420816546,0.0499791926758218,0.0523485456421373,0.069218394166684,0.0860002303110245,0.1015572531900604,0.1163964949559765,0.1315126006097239,0.1495979686838764,0.1634167312407783,0.1765915069922994,0.1902103585827799,0.201151091496741,0.2163689705755457,0.2301879837817913,0.2429270205789112,0.2552489699307443,0.2658875413450937,0.2769104446145823,0.2873191888931118,0.2970473261459777,0.30668454362622,0.3143872520921701,0.322510371039885,0.3297052207329646,0.3357582938388626,0.3420635492470639,0.3461622726940773,0.3509532276386625,0.3558977703092473,0.3604618525133963,0.3649366677492692,0.3688906539581678,0.3668941287750827,0.3642944971746729,0.3624994694922687,0.360135193942383,0.359330563868912,0.3565346792875443,0.3539616901944009,0.3530174465361322,0.3532491898345556,0.354207889904986,0.3557009345794392,0.3558209661207355,0.3556387361201146,0.356691876938179,0.3560489678348535,0.3574568819749746,0.3597791753222731,0.3640932219360512,0.3692275325221782,0.3716621037178114,0.377812186902268,0.3812453590749973,0.382373308152345,0.387162932016711,0.3916189044442356,0.3918854979891176,0.3960639606396064,0.3990257763344834,0.3988980716253443,0.4119907763259031,0.0,2.612273454663431,67.77005054674336,190.8309567478777,285.6097784517587,CHI_public_implementation,22 +100000,95830,52321,494.1563184806428,6636,67.93279766252739,5260,54.3044975477408,1996,20.421579881039342,77.32864418348662,79.63951559482373,63.32870225298407,65.03844333761273,77.0791760224966,79.39170519865263,63.23487153411161,64.94785505377982,0.2494681609900197,247.81039617110423,0.0938307188724536,90.58828383291484,214.01842,149.80796836306936,223331.3367421476,156326.79574566352,398.99928,256.60635061399205,415779.3175414797,267193.1154264954,462.3768,223.4646667261181,479150.704372326,230582.02305075148,3718.36112,1703.3031217252324,3837696.6920588543,1735167.7784836756,1211.54881,541.8232320817298,1243474.8095585932,544737.2875015201,1954.1935,825.6117377271062,2000063.6543879784,827697.2640971773,0.43232,100000,0,972811,10151.424397370343,0,0.0,0,0.0,33022,343.9737034331629,0,0.0,41821,433.1315871856413,1322154,0,47611,0,0,19201,0,0,88,0.9078576646144214,0,0.0,3,0.0313054367108421,0,0.0,0.06636,0.1534974093264248,0.3007836045810729,0.01996,0.3580566336064396,0.6419433663935604,24.124118716582068,4.123518461862253,0.3051330798479088,0.2714828897338403,0.2121673003802281,0.2112167300380228,11.047334758308091,5.836476745154136,21.348342146557968,14001.368613568144,59.87658660295928,17.102985853987224,18.303830555868608,12.301206969934656,12.168563223168778,0.5749049429657794,0.7836134453781513,0.7046728971962617,0.5922592259225923,0.1039426523297491,0.7635366689513365,0.923529411764706,0.8728070175438597,0.7611940298507462,0.1822222222222222,0.5024993422783478,0.7058823529411765,0.6379460400348129,0.538552787663108,0.0841750841750841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029371550108877,0.0058488423954912,0.0085121493430731,0.0112343572241183,0.0140532845230831,0.0166463042150274,0.0194169809397614,0.0221355894149223,0.0245365544586833,0.0268713225888974,0.0294886113302663,0.0319571441765955,0.0342428446636863,0.036679397564315,0.0392785695134778,0.041930951839838,0.0440109691105707,0.0465002954868275,0.0487141135900951,0.0508446350323178,0.0681943821513877,0.0847299911129698,0.1003982811026097,0.1154056326187473,0.1294746384449972,0.1473059968921447,0.1617302410417926,0.1757169459962756,0.1889158273611808,0.2010357361124513,0.2147826648860552,0.2288490461918003,0.2417370876700708,0.2526540206636418,0.2640371536108115,0.2746451562863569,0.2851654549312605,0.2949039923419111,0.303276733488557,0.3120490910133623,0.3199485169638923,0.3270543526707171,0.3339744959749234,0.339296871245254,0.3452863489744994,0.3501141622955878,0.3558484555863505,0.3607993674437586,0.3652370379026917,0.3697654719678119,0.3677653601122989,0.3653867388063821,0.3633496896078736,0.3613368549370174,0.3591310959700625,0.3558626414166256,0.3531093638313081,0.3530399012751954,0.3532368074667943,0.3540004640288411,0.3548592750932853,0.3556377737767841,0.3562200305714345,0.357907439272386,0.3603848466626578,0.3614007578727296,0.3621053231505756,0.3649731360165897,0.3684947818169083,0.3736989987732003,0.3775686488452446,0.3796143835980241,0.3808082718617994,0.3830404889228418,0.3900943396226415,0.3935190721033122,0.3930371049015116,0.3971214271234543,0.4049972542559033,0.4100663285212641,0.0,2.229528221987513,64.1127227903176,192.78973850027177,287.6323749665921,CHI_public_implementation,23 +100000,95731,52141,492.3170132976779,6696,68.34776613636127,5383,55.488817624385,2077,21.20525221715014,77.35098256499538,79.69652706242783,63.33757887846742,65.06992392448967,77.08526392777495,79.43563486204732,63.23746484663905,64.97463864264716,0.2657186372204307,260.89220038051053,0.1001140318283688,95.28528184250716,211.81226,148.3526330677822,221257.52368616228,154967.99685345625,397.96513,255.32495386133533,414970.7304843781,265969.7003701365,464.03017,224.542268433116,480182.1562503264,231076.6340198824,3797.07203,1755.9749003001516,3914691.270330405,1782574.056784272,1248.70261,566.1328194083658,1279857.151810803,566879.435439267,2027.81106,859.2421522690415,2071481.066739092,857180.945834312,0.43258,100000,0,962783,10057.16016755283,0,0.0,0,0.0,32943,343.3370590508822,0,0.0,42143,435.6582507233812,1334596,0,47951,0,0,18791,0,0,75,0.783445278958749,0,0.0,1,0.0104459370527833,0,0.0,0.06696,0.1547921771695408,0.3101851851851852,0.02077,0.3506548974943052,0.6493451025056948,24.093097064276392,4.232471028300309,0.301318967118707,0.2663942039754783,0.2121493590934423,0.2201374698123722,11.292306986463704,5.914999711814005,22.077886739501984,13931.477719365745,61.45462338867255,17.4076719082009,18.496364768330587,13.174240896411868,12.376345815729207,0.5762585918632732,0.797768479776848,0.6979038224414303,0.5831223628691983,0.1182136602451838,0.7477243172951885,0.904059040590406,0.8742004264392325,0.7527272727272727,0.1706349206349206,0.5076723016905071,0.7331838565022422,0.6261925411968777,0.5318681318681319,0.1033707865168539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026632102315879,0.0054226087309068,0.008066725518249,0.0105935646380108,0.0133603115372492,0.0161252557746536,0.0190925678637322,0.0217996999479501,0.0242643526610043,0.0265072818266485,0.0290608278491912,0.0317285978238554,0.0343803012388834,0.0368959232218801,0.0394586174525722,0.0420245367068721,0.0441927166923801,0.046663899553803,0.0491245945271562,0.0514011876237108,0.0686793398265008,0.084390789927922,0.0997577880068364,0.1150607159753982,0.1291982037064367,0.1471564482029598,0.1622140440560404,0.1763604048488202,0.1893436755451563,0.201055760007725,0.2157625383828045,0.2285714285714285,0.2415913122014385,0.2526819336194063,0.2634228003127856,0.2754743343794009,0.2854812398042414,0.2950664670591281,0.3040461508761171,0.312308592271429,0.3197878426422392,0.3258894067498887,0.3321889021748138,0.3376125235235595,0.3435237817616479,0.3496390647712434,0.355003003303634,0.3582598516369559,0.3630179584855788,0.3660479556113349,0.3638435603506406,0.3603987425545996,0.3578275662473705,0.3566171143759599,0.3559135302525011,0.3529772866789441,0.3497675304273314,0.3496212121212121,0.349290081696268,0.3488555078683834,0.3499915551635483,0.3518485549819002,0.3526967471143756,0.3535602328705777,0.3551628801538646,0.3566411655656805,0.356927023945268,0.3603549737231331,0.3651138353765324,0.368575624082232,0.3703500844401844,0.37354023356263,0.377289145174577,0.3792681059562088,0.3865268329554044,0.3868926823445147,0.3874941525027288,0.381312615007156,0.3834355828220859,0.3790697674418604,0.0,2.803375360692849,67.01193075104844,201.21709630972876,282.6310916479783,CHI_public_implementation,24 +100000,95838,52253,492.75861349360383,6803,69.51313675160166,5384,55.55207746405393,2059,21.08766877439012,77.51248185563044,79.79734460044857,63.42745123530996,65.11029360359908,77.24860678268914,79.53476941851837,63.32861851301688,65.0143741354515,0.2638750729413033,262.57518193020246,0.098832722293082,95.9194681475708,213.76124,149.48384513470407,223044.3456666458,155975.54741825172,398.01358,255.46691946479208,414702.2579770029,265965.1593989776,464.69375,224.76355202100416,480596.0266282685,231256.2246701091,3795.68109,1748.1136700419283,3920846.063148229,1784370.536862329,1259.89827,567.4271932037807,1298691.1767774783,576170.8885989534,2006.25972,853.8177668153363,2057635.9690310732,860791.572296242,0.43438,100000,0,971642,10138.3793484839,0,0.0,0,0.0,32960,343.27719693649703,0,0.0,42257,436.64308520628566,1333344,0,47964,0,0,18973,0,0,65,0.6677935683131953,0,0.0,0,0.0,0,0.0,0.06803,0.1566140245867673,0.3026605909157724,0.02059,0.3481243001119821,0.651875699888018,24.30705258367169,4.165832507970163,0.3226225854383358,0.2592867756315007,0.2108098068350668,0.2072808320950966,11.194398696753373,5.932826962235922,22.088221730648097,14049.527460063517,61.34214885566365,17.097750128755607,19.605789798126555,12.26362955731311,12.3749793714684,0.5737369985141159,0.7750716332378224,0.7058146229130685,0.5707885304659498,0.1268722466960352,0.7392657125077785,0.8929188255613126,0.874031007751938,0.6666666666666666,0.1832669322709163,0.5033095048980673,0.6915544675642595,0.6347256347256347,0.5415204678362573,0.1108597285067873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026410054034363,0.0050333701299358,0.0076931653473073,0.0105732057513368,0.0133485036266482,0.0162005491711583,0.0189875995194559,0.0216185348343938,0.024200218516741,0.0269150926995878,0.0295328404366436,0.0318948188866554,0.0343087893795852,0.0368655057428677,0.0393509211435169,0.0416352500077465,0.0442664679952815,0.0464978850460313,0.0488843644824863,0.0515204197420335,0.068870580873918,0.0850663404535616,0.1006863310106355,0.1159295474357493,0.1306252237454461,0.148630093580346,0.162715026126403,0.1766482347937048,0.1899685182220799,0.2016064257028112,0.2164725618608252,0.2305232683748865,0.2437480318380732,0.2551602123058777,0.265765072947794,0.2766023336835702,0.2879637161928747,0.2977257915908222,0.3056877407659188,0.3145294063843409,0.3216350648001754,0.3290051867824465,0.3359332593868737,0.3419273135647894,0.3474064116072618,0.3519476847811389,0.3567925729045783,0.3614399797185955,0.3659518464039638,0.3697820174228389,0.3673808916855621,0.364893573278875,0.3627478475474661,0.3604538974410667,0.3579890419073004,0.3546603113494355,0.3519458544839255,0.3519277424431185,0.3526042110647003,0.3525550700080264,0.3538674705562941,0.355822769814003,0.3571025045508756,0.3576461668822192,0.3595083809569355,0.3609232921426906,0.3611788041938226,0.3651219360069856,0.3698858892290565,0.3751909443421722,0.3790011656056666,0.3824651235696745,0.3863862000496401,0.3891770011273957,0.399017972947934,0.402138540213854,0.404047976011994,0.407597942223981,0.4137186065352417,0.4241172051089406,0.0,2.4590626235235677,70.63285030314265,191.526910033961,280.16989036782377,CHI_public_implementation,25 +100000,95737,52412,496.31803795815625,6627,67.87344495858446,5322,55.00485705631052,2031,20.80700251731305,77.31288813594676,79.67030909233915,63.318020272784125,65.06164315946903,77.05548207176899,79.41605750833695,63.22124501324006,64.96896858241898,0.257406064177772,254.2515840022048,0.0967752595440671,92.67457705004745,212.72504,148.8401690256483,222196.3921994631,155466.88097557714,395.82066,253.83405643586508,412819.0772637538,264510.8921922611,463.23777,223.77293882976863,480356.95708033466,230987.91041334564,3771.92965,1729.0573008197816,3898232.720891609,1764464.7705268725,1234.39339,555.6084132820495,1271862.101381911,562933.6359614138,1988.42044,840.4120729269818,2038848.9089902544,844309.6698460606,0.43361,100000,0,966932,10099.836009066506,0,0.0,0,0.0,32716,341.0698058222004,0,0.0,41919,434.4715209375686,1332417,0,47985,0,0,18974,0,0,89,0.9087395677742148,0,0.0,1,0.0104452823882093,0,0.0,0.06627,0.152833191116441,0.3064735174287007,0.02031,0.3351995406258972,0.6648004593741028,24.04686848496512,4.230890268549197,0.3043968432919955,0.2609921082299887,0.2175873731679819,0.2170236753100338,11.204934519860991,5.857133153275674,21.712836734012598,13936.743561090956,60.7472819097432,16.912791257671252,18.39951154518977,12.779265928251291,12.655713178630888,0.5597519729425028,0.8012958963282938,0.6722222222222223,0.5627705627705628,0.1096718480138169,0.7295681063122924,0.9125475285171104,0.8511111111111112,0.7142857142857143,0.15625,0.4927953890489913,0.7334878331402086,0.6034188034188034,0.5158730158730159,0.0964523281596452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028155320140168,0.0053112235072319,0.0079952109903712,0.010654938447162,0.0130490942931825,0.0156924643584521,0.0184460079535026,0.0207859031556594,0.0232993232052671,0.0258137844175259,0.0280939198195427,0.0305388975601741,0.033045016507081,0.0355568373779407,0.0379361574809648,0.0402253113534184,0.0427030049495723,0.0454370946822308,0.0477423514485971,0.0501594181757559,0.067507464868138,0.0839681078140041,0.100158348975975,0.1149640408798418,0.1294363256784968,0.1474613920033848,0.162305276115285,0.1757398339365552,0.188121561715537,0.2000042896362388,0.2148018133459679,0.2289163142353412,0.2415416906830812,0.2529809438379242,0.2642184267288814,0.2750459813415472,0.2854304118244639,0.2951371304455473,0.3045814447511615,0.3130058002246727,0.3206004308647409,0.3279114398052799,0.333893749778004,0.338898884490824,0.344783560311284,0.3501005291657929,0.3549345197067485,0.3591105337561609,0.3630257766713344,0.3663558817694902,0.3645639323022107,0.3615724978289936,0.3598062885622714,0.3580982190728745,0.3555711261516444,0.3521962315187655,0.3498219169369713,0.35005438185953,0.3506371010615493,0.3515413446191919,0.3524998589774928,0.3533733073899059,0.3533924667899781,0.3546955878728124,0.3565049481052377,0.3576642335766423,0.3593360995850622,0.3628567812163787,0.3677109455020662,0.3723459554560358,0.3764026931708881,0.381018247592701,0.3867077077705886,0.3903890160183066,0.3958254627880619,0.4005715646582519,0.4035902197462086,0.4015059015059015,0.4167597765363128,0.4244274809160305,0.0,2.118810032800639,66.4858288339504,197.12021807139604,283.91677222839564,CHI_public_implementation,26 +100000,95764,52261,494.1627333862412,6634,67.6559040975732,5224,53.7884800133662,2013,20.54007769099035,77.37208356525132,79.71091892598332,63.35007434272507,65.07957724537333,77.11383972944738,79.45869672907102,63.25228705379725,64.9876055483803,0.2582438358039383,252.22219691229952,0.0977872889278259,91.97169699302776,212.71184,148.84315337499768,222120.88049789064,155427.0429127832,396.04919,255.1020125809052,412821.67620400153,265639.87780471286,467.10962,226.5047918479723,483293.6594127229,232953.1335462161,3690.48214,1734.1356529428767,3804249.3108057305,1761673.6360248076,1215.4244,547.1517901456327,1251126.9997076143,553325.9852041919,1966.74574,843.6404433289373,2009623.6581596425,841373.7491654545,0.43122,100000,0,966872,10096.40365899503,0,0.0,0,0.0,32814,341.8821268952843,0,0.0,42321,437.3981872102252,1332965,0,47963,0,0,18866,0,0,66,0.6891942692452279,0,0.0,0,0.0,0,0.0,0.06634,0.1538425861509206,0.3034368405185408,0.02013,0.3518651879590955,0.6481348120409045,23.75734006279479,4.192350583119636,0.3198698315467075,0.266271056661562,0.2145865237366003,0.1992725880551301,11.162003642748775,5.866132385930708,21.69995185117452,13940.848745079473,60.32683610131226,17.206948878857553,19.10416789564586,11.662492379908818,12.35322694690003,0.5805895865237366,0.8123652048885693,0.6977857570317175,0.5850144092219021,0.1141837644959857,0.7407174323473883,0.9162393162393162,0.8794178794178794,0.7083333333333334,0.1196911196911196,0.5105914718019258,0.7369727047146402,0.6243697478991597,0.5431145431145431,0.1125290023201856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028157601539552,0.0057479420948055,0.0085851718049156,0.0114078483558679,0.0141259025729685,0.016543818211435,0.0193458296384633,0.0216543870032859,0.024270356442119,0.026711697881486,0.0291040263985816,0.0314045854799975,0.0340347234357493,0.0365542238148193,0.0390739403939362,0.0412783368808249,0.043744242135663,0.0459627071536722,0.0482652562890304,0.0505585806948681,0.0668218154494792,0.0840550604577214,0.099615251554195,0.1153272245807238,0.1293816442426222,0.1477384386192906,0.1624660844497202,0.1760977529165293,0.1885771607243855,0.2006150021964364,0.2151725770356343,0.2286044801937381,0.2405700371763376,0.2524413047995013,0.262940186360686,0.2741410247889945,0.2844167726674254,0.2948294087218586,0.3033103870623859,0.3117940846296593,0.3191784784495227,0.3262995367987648,0.3328563149740399,0.3380330618112123,0.3442167124019524,0.3495589394835403,0.3545797272078255,0.3592275005725045,0.3629597027870189,0.3666851368109976,0.3640473019332445,0.3620808136338647,0.3601179142159974,0.3584739141757574,0.3563430338899876,0.3529574053921493,0.350091103541155,0.3508443393127012,0.3509153494425702,0.350406722088138,0.3516081871345029,0.3538875054349974,0.3556104919131819,0.3568763266674115,0.3580172683325717,0.3565685045948203,0.3575842535904331,0.3628044932475072,0.3677675776441209,0.3725685586734694,0.3760273972602739,0.3773424190800681,0.3803127758859881,0.3821374045801526,0.3866427356886454,0.3943745549489675,0.3940042826552462,0.4009920634920635,0.3975020363833831,0.3972033257747543,0.0,3.039948419812001,69.23566836609928,196.2680999715142,262.422514846175,CHI_public_implementation,27 +100000,95632,52165,494.1442195081144,6525,66.8500083654007,5210,53.747699514806754,2045,20.882131504099046,77.25911226955019,79.65477385488276,63.27736057920528,65.04532086354928,77.00127080777806,79.40293299582171,63.181153430741176,64.9549979592473,0.2578414617721307,251.8408590610477,0.0962071484641029,90.32290430198486,212.5926,148.8425484911064,222302.785678434,155640.9449672771,393.00165,252.4127244108901,410202.9864480509,263192.64933379,466.04691,225.0997801823628,482936.809854442,232009.0123042627,3689.9234,1707.9930818136372,3807921.3756901454,1735466.2161343878,1195.80316,541.1688274472128,1230763.2800736155,546232.2034974904,1991.6267,840.1451796324475,2035217.186715744,836457.5141368797,0.43256,100000,0,966330,10104.672076292454,0,0.0,0,0.0,32508,339.1124309854442,0,0.0,42146,436.4020411577714,1328531,0,47757,0,0,18555,0,0,78,0.8156265685126317,0,0.0,1,0.010456750878367,0,0.0,0.06525,0.150846125393009,0.3134099616858237,0.02045,0.3448376292412989,0.655162370758701,23.8291177742031,4.189298608596169,0.3197696737044146,0.2587332053742802,0.2059500959692898,0.2155470249520153,11.38402410135295,6.101537288217622,21.853353918894584,13984.647238137844,60.08217554141041,16.500831532475555,19.18059482244053,12.49986736706796,11.900881819426369,0.5788867562380038,0.7974777448071216,0.7052821128451381,0.5770258236865539,0.1099720410065237,0.7498305084745762,0.921153846153846,0.8577494692144374,0.7213740458015268,0.1531531531531531,0.5113788487282463,0.7198067632850241,0.6451882845188285,0.5331010452961672,0.0987074030552291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027247956403269,0.0052018373741368,0.00821103059091,0.0108620549504145,0.0134086169184597,0.01584747316318,0.0183636845647164,0.020651918699021,0.0231136463540548,0.0257743566646877,0.0282456913786563,0.0307009887977328,0.0332527642067369,0.0355505650386822,0.0381932261460031,0.04047976011994,0.0427630215886959,0.0455154088082955,0.0480019138357845,0.0503627872065385,0.0672804606590099,0.0840045668318128,0.0997458570498414,0.1144319474282825,0.1292339540140049,0.1469261079569528,0.1617995432092208,0.175347925236035,0.1878375632346178,0.1993255217003726,0.2140098390368101,0.2282530943142652,0.2412538269614198,0.2526027397260273,0.2635794025504125,0.2749458483754513,0.2853721320649132,0.2959373625009872,0.3044017429491336,0.3133669681541838,0.3212014298314841,0.3286285828259007,0.335196989660862,0.3401647723855914,0.3460778574564613,0.3518248355669848,0.357254074687963,0.3616619452313503,0.3655441995766398,0.368157030919102,0.3662241907822776,0.3648366825495477,0.3640814478357459,0.3621865232245402,0.3596210740220542,0.3558226503947429,0.3521133479629806,0.3527520364080071,0.3542092515931772,0.3544928004016712,0.3551032692524736,0.3560744326297413,0.3577588020022715,0.3584517283812507,0.3599547620193464,0.3618141535253486,0.3629163224023476,0.3672633303920333,0.3716175797881699,0.3755674125985506,0.3785168580447413,0.3807569296375266,0.3845910757173555,0.3907249466950959,0.3918336767184866,0.3970500773165219,0.3921117249846532,0.3992271710392516,0.4092957746478873,0.4138479904496617,0.0,2.7440603275421185,64.44902833185782,206.82775072323855,266.8187627101788,CHI_public_implementation,28 +100000,95605,52097,493.85492390565344,6599,67.517389257884,5199,53.66874117462476,1937,19.779300245803043,77.28554750318864,79.71496793815339,63.27381344368566,65.07079757445985,77.03969223746961,79.4748322581252,63.18144307928236,64.9837534418502,0.2458552657190296,240.1356800281889,0.0923703644033011,87.04413260964827,213.00268,149.05456606572923,222793.8078552377,155906.01420393217,397.5184,255.8984091188128,415047.790387532,266919.04519245104,466.82577,226.0119233663293,483666.262224779,232853.0407476797,3643.94931,1693.2739749754844,3763658.459285602,1723449.5659458332,1213.03355,546.4055855351314,1246320.809581089,549329.5911043742,1883.8579,795.3503189630707,1925876.7010093613,794343.5951179129,0.43112,100000,0,968194,10126.991266147168,0,0.0,0,0.0,32837,342.7122012447048,0,0.0,42347,438.2929763087705,1325785,0,47650,0,0,19001,0,0,78,0.8158569112494116,0,0.0,1,0.010459703990377,0,0.0,0.06599,0.1530664316199666,0.2935293226246401,0.01937,0.3337182448036951,0.6662817551963048,24.13579924284894,4.131493488061227,0.3121754183496826,0.2648586266589728,0.2008078476630121,0.2221581073283323,11.50856397565821,6.224808226194817,20.69290638506892,14005.40560255357,59.808077554991634,16.874221847832505,18.654369900353785,12.805471087113569,11.47401471969178,0.5868436237738026,0.7828612926652142,0.7344423906346272,0.5645021645021645,0.1235632183908046,0.7570215545395167,0.8998144712430427,0.8765182186234818,0.7007299270072993,0.21875,0.5158124318429662,0.7076372315035799,0.6722763507528786,0.5221339387060159,0.0975609756097561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027563842723956,0.0055482863199748,0.0083661617187182,0.0109671189713879,0.013754934277459,0.0158400309670058,0.0185247523742489,0.0212283425956194,0.023442534084749,0.0260745777987157,0.0286309267351921,0.0310005034884557,0.033247897559419,0.0356870425729306,0.038112054189125,0.0404021597467883,0.0429434501911936,0.0454469923562645,0.0477132210587672,0.0500067802267725,0.0677503658791553,0.0844049003888033,0.1003184211355969,0.1164037888126771,0.1308564245042837,0.1490625993009215,0.1644029247970072,0.1780737202384126,0.191112728362426,0.203120466780568,0.2177403690514729,0.2317217300790441,0.2441770482512071,0.2555672453094862,0.2654940449933833,0.276388827212576,0.2872876902262029,0.2964399251459879,0.3050885986747139,0.3129112879187398,0.3211109052163439,0.3286917212222001,0.3353096725996371,0.3405461226254233,0.3452099817407182,0.3495759311613436,0.3538662022128385,0.3587779448877106,0.3639725440838729,0.3683612384866465,0.3666527405291034,0.3644133109465745,0.3616475068763664,0.3582640144665461,0.3567573193760873,0.3532868892708077,0.3505133372474968,0.3519121906266456,0.3525467793247357,0.3536709812557065,0.354608199857459,0.3548795192630809,0.3552098423295752,0.3555973238459645,0.3573282699610633,0.3586798336798337,0.3599275218708417,0.3652173913043478,0.3690161424993042,0.3734364518802036,0.3764684537578809,0.3790181644865752,0.3850223593877936,0.390484876120991,0.3945839580209895,0.3993418733106122,0.3979249313396399,0.4023453295592398,0.4111716621253406,0.4168855534709193,0.0,2.6841591020275533,67.01969767058364,196.6870545924156,266.0074894000139,CHI_public_implementation,29 +100000,95794,52534,495.6677871265424,6595,67.35286134830992,5193,53.45846295175063,1991,20.283107501513665,77.35864855579545,79.6637511939276,63.35358995694328,65.05460395956607,77.10377534351707,79.41189900939236,63.25725516927229,64.96209739018806,0.2548732122783832,251.85218453523817,0.0963347876709832,92.50656937800272,212.80204,149.0030162121131,222144.1008831451,155543.96465041308,399.58119,257.19823844685226,416337.9126041297,267706.7208894567,472.82439,228.8762082380429,488971.7205670501,235362.5580366222,3661.93854,1709.317841542219,3771960.832619997,1734129.7011826974,1203.42976,546.2879306130515,1236317.264129277,550800.7239404349,1944.90578,839.0258815724559,1983930.6010814875,837366.9820339774,0.43479,100000,0,967282,10097.45913105205,0,0.0,0,0.0,33144,345.1573167421759,0,0.0,42798,442.13625070463706,1326786,0,47735,0,0,18943,0,0,71,0.7411737687120279,0,0.0,0,0.0,0,0.0,0.06595,0.1516824213988362,0.3018953752843062,0.01991,0.3421585648148148,0.6578414351851852,23.830358931033714,4.209021007448484,0.3258232235701906,0.2530329289428076,0.2168303485461197,0.2043134989408819,11.33766898707742,6.081834392269533,21.517135438899597,14036.020362392564,59.78407873635791,16.277993910027057,19.25234931457036,11.931468980393117,12.32226653136738,0.575004814172925,0.802130898021309,0.7098108747044918,0.5692742695570217,0.1127886323268206,0.7339027595269383,0.9060773480662984,0.8675213675213675,0.7132075471698113,0.1219512195121951,0.5091255788613457,0.728923476005188,0.6495098039215687,0.5213567839195979,0.1102272727272727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026516608303139,0.0054188738871051,0.0079888885509494,0.0105736349153195,0.0130859732184585,0.0157977722394588,0.0186101943527686,0.0213907561739414,0.0239973029851051,0.0266372061621555,0.0291297935103244,0.0313352616571276,0.0342220167462885,0.0364592444714284,0.0391590798956582,0.0418594563331405,0.0442030110197113,0.0468578300263316,0.0492235782913529,0.0516453429663019,0.0686877960231184,0.0854364871928907,0.0996069388396834,0.1145208243565625,0.1288099152649551,0.147173520180083,0.1619343483608295,0.1763992467844718,0.189980460616932,0.2018764743727214,0.2160840817557235,0.2306551966672077,0.2437780098333551,0.2557279471300085,0.2672260949045778,0.2784128075213145,0.2884035640115227,0.2976331161157443,0.3073325235278758,0.3159565810437513,0.3229963986706347,0.3301945352119274,0.3364180342437348,0.3421725201281482,0.3466395756277983,0.3521761127358432,0.3566768105596674,0.3608865577777495,0.3647650397864234,0.3682117805577205,0.3670749619328671,0.3647165732696306,0.3626964899430954,0.3605917877885977,0.357754264994353,0.3541459382510064,0.3517964308900606,0.3510147070906252,0.3519256762536999,0.3528600841464506,0.3548332582244254,0.3553843411436154,0.3569791644765889,0.3568230659025788,0.3583124638797919,0.3584431889516635,0.3594089402080713,0.3621425185653342,0.3664644469525959,0.370328968380709,0.3732146931325576,0.376067463706234,0.3811420982735723,0.3845504756060141,0.3877551020408163,0.3889806512505899,0.3922923384001228,0.3915798078888207,0.3968565815324165,0.3981042654028436,0.0,2.729229750001966,66.4716894996776,197.40707690391787,266.87946696871376,CHI_public_implementation,30 +100000,95843,52263,492.60770217960624,6685,68.19486034452177,5309,54.62057740262721,2093,21.2430746116044,77.41454581429173,79.702457462815,63.37712166936033,65.06771619903509,77.14258438643706,79.43938017036376,63.273139546910144,64.9714590141639,0.2719614278546629,263.0772924512428,0.1039821224501835,96.25718487119173,212.16096,148.49831645612772,221363.02077355675,154939.13635437927,397.44678,256.02931329200885,413939.78694323,266388.61814843945,466.748,226.52811243060816,483173.8363782437,233281.0185224463,3755.13052,1755.302209512418,3864050.906169465,1777484.0097997962,1243.26255,565.7981170458812,1279733.0634475132,572884.9546089763,2039.46798,879.6432826450418,2073298.6655259123,869622.1188165626,0.43303,100000,0,964368,10061.955489707125,0,0.0,0,0.0,32847,341.9342048975929,0,0.0,42300,437.4758719989984,1333837,0,48009,0,0,18786,0,0,75,0.7825297622152896,0,0.0,3,0.0313011904886115,0,0.0,0.06685,0.1543772948756437,0.313089005235602,0.02093,0.3517566409597258,0.6482433590402742,23.935884971006704,4.222611337271098,0.3130533057072895,0.2546618948954605,0.2098323601431531,0.2224524392540968,11.34721055016497,6.135303850240289,22.56625043909093,14002.46917014028,60.79642002915441,16.5007701399266,18.89969405147168,13.10126677192696,12.294689065829186,0.564136372198154,0.7988165680473372,0.6780986762936222,0.5715495342929721,0.1014362657091561,0.7266881028938906,0.8868274582560297,0.8482905982905983,0.7408637873754153,0.1295546558704453,0.4968034096963239,0.7404674046740467,0.6113902847571189,0.5136363636363637,0.0934256055363321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026016095561066,0.005430322678689,0.0084163987953395,0.0111465291454327,0.0136294338855574,0.0161275552254296,0.0189079054604726,0.0218287159818842,0.024383018713737,0.0271152115211521,0.0297356264148237,0.0325882920124321,0.0349352157249571,0.0373229578392621,0.0396939953810623,0.0423776079322454,0.0446023961760506,0.046999689086952,0.0493656693174975,0.0516088091795229,0.0690359988320193,0.0850510076093318,0.100544844928751,0.1154330840964462,0.12946306321488,0.1474782902660102,0.1628449116263298,0.1765569011898053,0.1888199950908722,0.2002485563376509,0.2154271632571803,0.2291993380993067,0.2421577791787135,0.2542850896370791,0.2647155830163372,0.2764426536192257,0.2861110491444888,0.2965735869418588,0.3055120611795675,0.313378466613973,0.3214496476550838,0.3269608760763758,0.3335937315058116,0.3396095174134126,0.3449391333957606,0.3498081502226938,0.3538735262056608,0.357812539807903,0.3625545058139535,0.367615168985032,0.366057222986274,0.3639456719378478,0.362566256907635,0.3610203314341904,0.3588275533876628,0.3550393773174394,0.3516994746502943,0.351547491995731,0.3512363505869888,0.3516810844555427,0.3529884949957908,0.3545054033229942,0.3567333444928021,0.3577805553075618,0.3587833941956563,0.3596315474486742,0.3608710484421196,0.3646491832008512,0.368415518872884,0.3730139815697489,0.3751645259383652,0.379434501747326,0.3829720782060091,0.3861684496007232,0.3873377532916238,0.389806512505899,0.3934676434676434,0.3997157937474624,0.4081800713697502,0.4211531118747613,0.0,3.0150654585583867,67.63844156112341,196.45452898728672,276.1228187897647,CHI_public_implementation,31 +100000,95709,52390,494.37356988371,6796,69.58593235745855,5389,55.71053923873408,2058,21.063849794690157,77.36002699221102,79.73128415995836,63.33690834044432,65.0881419956367,77.09417298395867,79.46715520119704,63.23654037394655,64.99143917309371,0.2658540082523473,264.1289587613187,0.1003679664977781,96.70282254299424,211.68972,148.24101517795347,221180.57862896903,154887.22604765848,399.80679,256.53327862076617,417099.2801094986,267402.2700276528,469.93429,226.69902782706075,487147.1648434317,233924.19852117173,3776.32809,1747.9569447368,3905031.6062230314,1785979.6847178238,1232.57679,552.3568755388486,1272807.1968153466,562090.4257058878,2002.32458,853.1708289460378,2051702.8701585012,856868.2157479343,0.43552,100000,0,962226,10053.66266495314,0,0.0,0,0.0,33042,344.6384352568724,0,0.0,42583,441.1497351346269,1336345,0,47999,0,0,18931,0,0,83,0.8567637317284685,0,0.0,2,0.0208966763836211,0,0.0,0.06796,0.15604335047759,0.3028251912889935,0.02058,0.334926212227688,0.665073787772312,24.38477734181044,4.148439798662477,0.3139729077750974,0.2655409166821302,0.2037483763221377,0.2167377992206346,11.345532679454273,6.160620375736111,21.989333747198497,14067.94848733682,61.8267052125842,17.55338047356541,19.229960450580908,13.0491095906465,11.99425469779139,0.5765448135089998,0.8043326345213138,0.700354609929078,0.5659246575342466,0.1001821493624772,0.7323037323037324,0.912739965095986,0.8792710706150342,0.7079037800687286,0.0916334661354581,0.5134289439374186,0.7319347319347319,0.6376695929768555,0.5188141391106044,0.1027154663518299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027549604480862,0.0057476507617918,0.0086256761007884,0.0110628009508523,0.0137414052646568,0.0164046271027656,0.0187971457696228,0.0215456531057992,0.0242473805264502,0.0268637768996089,0.0293219053087002,0.03213420393413,0.0348097035262178,0.037409745898009,0.0398060255881139,0.0422344451107297,0.0444020843908958,0.0470002075980901,0.0491990846681922,0.0517886356768472,0.0691272153815625,0.085522597391723,0.1007721845688985,0.1155266175093879,0.1302404048924504,0.1477130955150028,0.1623098304653186,0.1764129856306546,0.1901364068491833,0.2020427431121792,0.2152539815952242,0.22959266515842,0.2431145277212973,0.254792812694802,0.2654799102231219,0.2769288729819273,0.2870919136112506,0.2973000337495781,0.3063363506431634,0.3145426427630448,0.3229019644137995,0.3298097498801436,0.3365439227565316,0.342394690180668,0.3479518306538831,0.3529375516089673,0.3573619439888829,0.3611938019998473,0.3647429007989434,0.3692949344032943,0.367633188714328,0.3654124357614252,0.3636325148179509,0.3620724608300269,0.3591010567048668,0.357053031929577,0.3537386952183347,0.3539547095503774,0.3542328856078471,0.3546947518743306,0.3559274390015366,0.3561345933335969,0.3575492615989625,0.3590373280943025,0.3586486746062235,0.360826084691911,0.3626536607626707,0.3672143555457441,0.3716692513745946,0.3754001280409731,0.3809349052708839,0.3844385026737968,0.3885660138976626,0.3906727828746177,0.3932235294117647,0.3958481613285883,0.3984996938150643,0.400815494393476,0.4042257436752849,0.4123148869836321,0.0,2.360116581057047,68.43883544467701,204.3246937431094,279.3243437230864,CHI_public_implementation,32 +100000,95738,52660,497.7229522237774,6755,68.91725333723286,5357,55.2445215066118,2039,20.900791744135034,77.33346816806463,79.6967339589664,63.32120940122799,65.0708279906684,77.06634176023792,79.42996554879453,63.220875309890864,64.97304421056876,0.2671264078267086,266.7684101718777,0.1003340913371246,97.78378009964683,212.84472,148.94665224390826,222319.99832877223,155577.3592971529,397.89732,256.10821045136845,414903.32992124336,266803.2994271312,468.87283,227.02572091842217,484875.1801792392,233494.6198937636,3771.98524,1757.1271687292417,3894081.3365643737,1789620.2361128991,1233.37725,557.2131730717688,1270856.9951325492,564790.1567273159,1989.45238,853.201404668888,2041149.2824165956,859810.650490184,0.43598,100000,0,967476,10105.454469489649,0,0.0,0,0.0,32868,342.5599030687919,0,0.0,42621,440.2849443272264,1329273,0,47820,0,0,19034,0,0,63,0.6580459169817627,0,0.0,1,0.0104451732854248,0,0.0,0.06755,0.1549382999220147,0.3018504811250925,0.02039,0.3324385419610059,0.667561458038994,24.14584731975545,4.163429528695024,0.3169684524920664,0.265073735299608,0.2088855702818741,0.2090722419264513,11.365230546477155,6.040867757926968,21.993047251845507,14087.226244230556,61.44952387784021,17.254429340219996,19.22528561585421,12.67339752241145,12.296411399354554,0.5844689191711779,0.7971830985915493,0.6967020023557126,0.60625,0.1224307417336908,0.7316313823163139,0.9,0.8610526315789474,0.7292993630573248,0.1284046692607003,0.5214609437483337,0.7302325581395349,0.6328699918233851,0.5583126550868487,0.1206496519721577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029586098586554,0.0056281182817507,0.0083023770375332,0.0111056920482025,0.0135778360895832,0.0161899622234214,0.018982179994291,0.0217182747851646,0.0244879604268018,0.0270541389864166,0.0296897746611716,0.0319494065952117,0.034614672672302,0.0372914521112255,0.0396900728390731,0.0421291989664082,0.0446789123817018,0.0468793774319066,0.0489977959828668,0.0513362634615785,0.0694482139501868,0.0862917067861179,0.1024930747922437,0.1175616835994194,0.1320551759048342,0.1500824803316132,0.1649760196935614,0.1780129235551486,0.190403452364421,0.2023017847949202,0.2170647875790585,0.2303729517954934,0.243733681462141,0.2548305214556117,0.2661150113338761,0.2772349617813227,0.2875887792022156,0.2970164377392479,0.3062765401821196,0.3146584804297774,0.3219054451206812,0.3287121531190041,0.3349389890286769,0.3412438723286949,0.3465110914146258,0.3509925619427614,0.3553870979847637,0.3605856686723232,0.3652740364691256,0.3700338123415047,0.3686942919942286,0.3667639527520031,0.3649923166932175,0.3628547857173872,0.3603602262578148,0.3571187221624942,0.3538852289864275,0.3544968320579281,0.3550619144672615,0.3552129773862598,0.3561543517040653,0.3580943332739544,0.3599011041967859,0.3601905273044412,0.3611880615710741,0.3620161733532229,0.363566399680757,0.3671153421807521,0.3718734587472698,0.3758098493580826,0.3816167418957735,0.3827588044115296,0.3869190831961504,0.3897081413210445,0.3945971563981043,0.396119546878766,0.397954439795444,0.3964019851116625,0.4022108843537414,0.4186320754716981,0.0,2.7386289629209557,70.41701849688546,192.60595162080256,279.80921687253766,CHI_public_implementation,33 +100000,95789,52315,495.31783398928894,6589,67.4190147094134,5271,54.35906001732975,2040,20.85834490390337,77.34149214859087,79.68199293844,63.33904717832892,65.07284368703098,77.0753991088438,79.41835291870146,63.23814188739714,64.97621222696074,0.2660930397470764,263.6400197385456,0.1009052909317773,96.6314600702418,213.78632,149.59126428848035,223184.3948678867,156167.24706227265,398.16219,255.9731288067838,415010.7006023656,266570.8367419889,470.85417,228.05824039815272,487488.02054515656,234934.23602437327,3693.3702,1727.0578332851196,3809437.8164507407,1756683.9859327474,1239.5816,561.1280299075047,1280477.8941214546,572208.9128266335,1978.74526,849.5771534591411,2025370.554030212,850923.346836365,0.43175,100000,0,971756,10144.745221267578,0,0.0,0,0.0,32975,343.5676330267567,0,0.0,42650,441.2510831097516,1326812,0,47761,0,0,18898,0,0,72,0.7516520686091305,0,0.0,0,0.0,0,0.0,0.06589,0.1526114649681528,0.3096069206252845,0.0204,0.3501956805334106,0.6498043194665893,23.854122150375,4.173972198486823,0.3136027319294251,0.2654145323468033,0.2031872509960159,0.2177954847277556,11.337348437962596,6.127708800143613,22.103484668413795,13925.964335121116,60.74624197598132,17.124765005260965,18.94604167804958,12.785676014834358,11.889759277836404,0.5879339783722254,0.7891350964974982,0.705384150030248,0.5905923344947736,0.1409897292250233,0.7415658816040739,0.8972125435540069,0.8626609442060086,0.7224199288256228,0.18,0.5227027027027027,0.713939393939394,0.6436394271272114,0.5478662053056517,0.1291108404384896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028060009927368,0.0054235982279533,0.0079760515500532,0.010882819168394,0.0135524240728493,0.0161045522608509,0.0187051240208877,0.0214134730263762,0.0239792214166658,0.0263265682278973,0.0287609712082683,0.031217909221606,0.0335424809709936,0.0358816924043721,0.0382714393321845,0.0404159431075829,0.042920899216137,0.0451881282612529,0.047685353561594,0.0499708503373032,0.0669240400667779,0.0838300186126273,0.0992035212743659,0.1139322985087175,0.1284134863671335,0.1469798515824859,0.1620317850743736,0.1752305385081738,0.1884627291068435,0.2014235791008297,0.2157937234214351,0.2295282274196862,0.24280358598207,0.2546267449359962,0.2649685451585939,0.2756589147286821,0.2856203028478401,0.2947466555841355,0.3038936910197007,0.3117851587519443,0.3190968412542588,0.3262867754406045,0.3327815352598969,0.3382391684429861,0.3448305167055167,0.3495066701156646,0.3534555006567015,0.3577348417439939,0.3623651463017101,0.3673049804288519,0.3653597587246876,0.363573816960907,0.3616493217136249,0.3591613491340018,0.3560414372041794,0.3541283278125383,0.3507494646680942,0.3505504088986885,0.3503348348091185,0.3504763269106797,0.3502811048643363,0.3512698412698413,0.3523571113027747,0.3527945568454854,0.3534987185066976,0.3538550208273296,0.3541948287267393,0.3597266369993642,0.3641714832807347,0.3667000601081947,0.3707107560153327,0.3743545611015491,0.3760541783797598,0.3815463278586923,0.3843069873997709,0.3896025933485412,0.3872579637726421,0.3892672858617131,0.3994397759103641,0.3991499227202473,0.0,2.5753660310265083,68.78255002078234,195.8569669067421,273.24606577465096,CHI_public_implementation,34 +100000,95689,52266,494.1320318949932,6705,68.58677590945668,5305,54.71893321071388,2041,20.869692441137435,77.3419109081298,79.71064553132736,63.33255108723839,65.0808705383602,77.08067434686768,79.45401936127075,63.23168268611086,64.98524503372735,0.2612365612621232,256.626170056606,0.1008684011275278,95.62550463284936,213.08034,149.03269258525617,222680.0781699046,155746.9433114111,396.13395,255.23747306146785,413301.5707134571,266057.3974662373,471.66718,227.79962751495444,488395.59405992326,234638.00972501875,3728.47975,1748.0642311366353,3851317.915329871,1781680.3197197542,1244.42153,567.0469850510055,1278494.309690769,570602.5510257243,1993.13634,861.2779786061534,2041240.35155556,862806.3632748183,0.43405,100000,0,968547,10121.821734995665,0,0.0,0,0.0,32749,341.5230590768009,0,0.0,42756,442.2869922352622,1329477,0,47844,0,0,18950,0,0,79,0.8255912382823523,0,0.0,1,0.010450522003574,0,0.0,0.06705,0.1544752908651077,0.3043997017151379,0.02041,0.3447045389666001,0.6552954610334,23.975301558939822,4.061127965099535,0.3074458058435438,0.2686145146088595,0.212818096135721,0.2111215834118756,11.144948153403488,6.090549187803371,21.962894891402687,14002.031329640507,61.1537587472024,17.386831553869904,18.61712245340927,12.703461173176018,12.446343566747217,0.588124410933082,0.8077192982456141,0.700797057020233,0.6125,0.1240035429583702,0.74189364461738,0.9264705882352942,0.8744493392070485,0.6928571428571428,0.1856060606060606,0.5251129418017539,0.7343927355278093,0.6338147833474936,0.5857142857142857,0.1052023121387283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00262273169151,0.005189013884666,0.0078312030837898,0.0104310554968717,0.0131166876804815,0.0157815427221633,0.0186040347818995,0.0211072099289621,0.0236201962387571,0.0265285652876998,0.0290011071472505,0.0316469343957612,0.0341313424240554,0.0365959200494539,0.0389767192272764,0.0413918580850579,0.0438398442354695,0.0462244177840508,0.0485494436934594,0.0510770898252269,0.0684213274844639,0.0851469187367186,0.1013305072296489,0.1160679535054962,0.1306113836577517,0.148098372452327,0.1624469439728353,0.1767455728417936,0.1888498242089402,0.2008305344822036,0.2147050902235389,0.2277505331644528,0.2407594798977204,0.2526556465993502,0.2641343339422082,0.2751448159757219,0.285464019906493,0.2956646943688272,0.3050624290578888,0.3133102753218196,0.321853185306954,0.3292111673224658,0.3348930322916914,0.3403015147699061,0.3458708790874709,0.3514854540293017,0.3564828165552867,0.3605079154832711,0.3646508372647623,0.3681641269213009,0.3665004716345506,0.3640091366926273,0.3622427433204763,0.3606110044323809,0.3585533153190605,0.3551823901296554,0.35273544446027,0.3536260920974841,0.3541092961600958,0.354280298288596,0.3551656188420756,0.3561513633393398,0.3582751660920023,0.3580994683356888,0.359414558869626,0.3614187212703719,0.361620664037945,0.3651348966212809,0.3693658743034492,0.3715927684878477,0.3757941405000228,0.3794445332906871,0.3833754740834387,0.3846153846153846,0.3861507898968877,0.3898405900547228,0.389739663093415,0.3936410256410256,0.4020676166526963,0.3959215082724124,0.0,2.8644591744899315,67.19444782104472,206.11609600227183,270.31557202273666,CHI_public_implementation,35 +100000,95698,52122,492.6957721164497,6724,68.8520136261991,5344,55.14221822817614,2034,20.89907835064474,77.33810060160408,79.72070469490076,63.31256206328344,65.07479207110055,77.07794586313288,79.45922049084704,63.216010800414885,64.98008401643625,0.2601547384712006,261.4842040537156,0.0965512628685516,94.7080546642951,212.31518,148.64596340986537,221859.579092562,155328.18179049235,397.57343,255.5630268779192,414757.1840581831,266363.3534931776,472.09928,228.06026386865545,487951.3573951389,234438.0222168204,3748.39507,1739.307272645995,3876834.939079187,1777578.7128705457,1233.42718,554.8791292534548,1274056.563355556,565078.5099690508,1976.72966,836.2283122674987,2033733.1605676191,847350.5997225966,0.43207,100000,0,965069,10084.526322389183,0,0.0,0,0.0,32964,343.7375911722293,0,0.0,42860,442.4857363790257,1330654,0,47880,0,0,18965,0,0,64,0.6687705072206316,0,0.0,0,0.0,0,0.0,0.06724,0.1556229314694378,0.3024985127900059,0.02034,0.3512707652988783,0.6487292347011216,24.135571427355742,4.118050958730219,0.3168038922155688,0.2599176646706587,0.2056511976047904,0.217627245508982,11.34230821372362,6.263178524303367,21.832914048115857,14010.87512263396,61.3731685411564,16.925577093174986,19.48326113474637,13.025492015261529,11.938838297973508,0.5860778443113772,0.8034557235421166,0.7076196101594802,0.5984522785898538,0.111010009099181,0.7490518331226296,0.9190140845070424,0.8565737051792829,0.7240143369175627,0.1330472103004291,0.5175438596491229,0.7235079171741778,0.6448362720403022,0.5588235294117647,0.1050808314087759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026453953903225,0.0052546155406776,0.0079395699230409,0.0104681179746732,0.0131561542922843,0.0159708287923079,0.0184709218122105,0.0211731541156403,0.0238073324129467,0.0264270721343367,0.028876424081461,0.0314932331135892,0.0340239576371394,0.0363527764046795,0.0387269819982462,0.0411193898746473,0.0436619280825818,0.0461077160910119,0.0485933503836317,0.0511271302970957,0.0692698107690379,0.0856598519821206,0.1007743803907578,0.1152199749681843,0.1302229440425217,0.1483926247976897,0.1636477466866159,0.1771471167669453,0.1900049163157557,0.201853957899706,0.2169832667090476,0.2299964274501737,0.2430364315181069,0.254486562199072,0.2650979010973288,0.2751174957878868,0.2856249301909974,0.2959744236311239,0.3045784446236498,0.3133749928338015,0.3210028152044209,0.3281597750966382,0.3340167091307697,0.340111083120404,0.3451014253052488,0.3511207162704538,0.3565265375739941,0.3603866705775828,0.3642176253161273,0.3682374856327534,0.3670579040278133,0.3647796143250689,0.3628968589635143,0.3610098906819365,0.3592065545493747,0.3564605406399975,0.3523169997782775,0.3526272577996716,0.3522651480170335,0.3532680556051888,0.3539567265289272,0.3541448162586824,0.3559072970022672,0.3569954231356008,0.3587705352411234,0.3607840079024669,0.3612389883489628,0.3653876321651554,0.3695134756737837,0.3743131596632011,0.3758749943548751,0.3779394706316566,0.3823272090988626,0.3898867924528302,0.3887386967465274,0.3910885238151518,0.3916211293260473,0.3990365315134484,0.3975543478260869,0.4011428571428571,0.0,2.728658915625065,69.3185089271287,200.7920383086305,272.1281746485397,CHI_public_implementation,36 +100000,95633,52208,494.4632083067561,6699,68.6687649660682,5304,54.67777859107212,2040,20.77734673177669,77.27782633283482,79.68790977495098,63.2892740309558,65.07202372185347,77.01577193390975,79.43147504202807,63.19073885169743,64.9788882297919,0.2620543989250734,256.4347329229122,0.0985351792583628,93.13549206156324,210.6093,147.42536618743293,220226.59542208235,154157.42075165783,394.67081,253.5098947804537,411926.0924576245,264319.18352499,460.19973,222.6851045082176,476363.9538652976,229007.47589420248,3734.23465,1735.564352989949,3849524.808382044,1759740.8039249396,1193.89749,537.6331411555063,1227019.4284399736,540859.6810306975,1984.35416,847.6021377388279,2023352.859368628,843214.8333764827,0.43328,100000,0,957315,10010.299791912834,0,0.0,0,0.0,32749,341.6498489015298,0,0.0,41712,431.37828992084326,1341027,0,48241,0,0,18840,0,0,73,0.7528781905827486,0,0.0,0,0.0,0,0.0,0.06699,0.1546113367799113,0.3045230631437528,0.0204,0.3524322791093462,0.6475677208906538,24.12800276840797,4.089772174593263,0.3208898944193062,0.2594268476621418,0.2058823529411764,0.2138009049773755,11.215704006516996,6.055548508869962,21.888810193509315,14037.816239036654,60.86661988387956,16.757167780435132,19.41121721856865,12.683559872247695,12.01467501262808,0.5631598793363499,0.7834302325581395,0.6792009400705052,0.5802469135802469,0.0869963369963369,0.736604260813428,0.9144981412639404,0.8666666666666667,0.7456445993031359,0.0778688524590164,0.4916111850865512,0.6992840095465394,0.6055646481178396,0.5242030696576151,0.0896226415094339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029284802302251,0.0054356644491319,0.0079995127200373,0.0108539894508978,0.0134594842057073,0.0159431953627204,0.018745537990821,0.021653201507553,0.0240175119166956,0.0265516640886694,0.0291487179487179,0.0317703250988649,0.0340594548429252,0.0365064313984168,0.0389130367448919,0.0410934817235886,0.043648120705914,0.0462187055439602,0.0483271762318539,0.0503326312277116,0.0667349412699076,0.0836929199832425,0.1000892247939956,0.11486123827866,0.1298346331219198,0.146835898630195,0.1619991291511347,0.1760964071090653,0.1887607760925835,0.2010866063950866,0.2154181081401489,0.2295905660173043,0.2425136338402255,0.254410348450359,0.2655986787778695,0.276570275872006,0.2866491708079736,0.2970079697419965,0.3064347668134962,0.314903460754449,0.3218558370936017,0.3285806187496344,0.3346354629070635,0.3405299077639044,0.345874627591658,0.3509406478372506,0.3554096059360273,0.3597236914214343,0.3641684511063526,0.3688335029271451,0.367374488707696,0.36574387297204,0.3636556403731976,0.3621409316212064,0.3612485838650051,0.3582633010186053,0.3552338883945595,0.3548631717771183,0.3552536791190697,0.3553018353885862,0.3565037593984962,0.3590404952282693,0.3611981082501314,0.3615881271577815,0.3626079405663563,0.3649566398495455,0.3657796852646638,0.3694826166803875,0.3727201759988645,0.3752004490057729,0.3810880352876309,0.3865896695540584,0.3919441801458928,0.3952861434183162,0.3960471303686811,0.3986738999397227,0.4014018691588785,0.4055232558139535,0.4102564102564102,0.4196185286103542,0.0,3.111803052318187,67.47421213531865,194.33828867392037,280.3798367925677,CHI_public_implementation,37 +100000,95809,52638,496.11205627863774,6737,69.06449289732697,5287,54.5042741287353,1995,20.373868843219324,77.39792083527668,79.702820526067,63.37134666233783,65.07220679718365,77.1463840762318,79.45501937708985,63.27769178915853,64.98295923663231,0.2515367590448818,247.8011489771461,0.0936548731793038,89.24756055134253,213.00576,149.09090786529964,222322.8715465144,155612.19454049162,401.39459,257.81342307478417,418253.921865378,268398.04450183944,469.01283,226.8017398907594,485651.8176789237,233668.8177245275,3735.66231,1713.7978383766904,3852980.7846861994,1743256.8683344035,1248.22088,560.5046667560057,1287334.5614712604,569612.1853183573,1946.25714,822.0548513159092,1989316.6195242617,821144.4664169401,0.43586,100000,0,968208,10105.58507029611,0,0.0,0,0.0,33151,345.2911521882078,0,0.0,42526,439.9691051988853,1330790,0,47785,0,0,19108,0,0,79,0.8245571919130771,0,0.0,0,0.0,0,0.0,0.06737,0.1545679805442114,0.2961258720498738,0.01995,0.3430677629713637,0.6569322370286362,24.264589168171717,4.256321482893673,0.3134102515604312,0.2604501607717042,0.2107055040665784,0.2154340836012861,11.435580492143744,6.066168216197296,21.470950852212177,14138.157814016007,60.35345766018311,16.861478639750135,18.68384154169908,12.728292730309596,12.079844748424309,0.5744278418763004,0.794480755265069,0.692214846107423,0.5697980684811238,0.1319569120287253,0.7509881422924901,0.9073083778966132,0.8761261261261262,0.7158273381294964,0.1829787234042553,0.5033165295834439,0.7169117647058824,0.6248969497114591,0.5226480836236934,0.1183162684869169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028144488539726,0.0054413359138303,0.0080125767026725,0.0107125087578566,0.0133275048796356,0.0160794610327491,0.0190336451264494,0.0215149196633511,0.0243172274273803,0.0272150603642316,0.0299168066882504,0.0326449375724559,0.0353836828208315,0.0377772060715204,0.0400634914090763,0.0426311768228467,0.0450026380856808,0.047418662741887,0.0498234683281412,0.0522464952176763,0.0696015021906947,0.0861861579173073,0.1022597388979185,0.1179556733114643,0.1328252643118405,0.1495232255745607,0.1640934829173117,0.1779043158959076,0.1901719901719901,0.2028101035019038,0.2181405016531507,0.2325339909790051,0.2458362323882414,0.2574974033783414,0.2684554901852972,0.2790017935829587,0.2887570533264937,0.2984876595266205,0.3076103224636038,0.3156395175870197,0.3225892227476097,0.3297029471568467,0.3370511425462459,0.3431978164056888,0.3485579838455381,0.3539538775811572,0.3584743009919792,0.3632784220085606,0.3679445392932898,0.3714327104157612,0.3689907074179513,0.3668529375420482,0.3647588243566306,0.3623200946035592,0.3598415735837301,0.3569922698524244,0.3550619312436804,0.3546589754514765,0.3549856674856675,0.3552648019563393,0.3558792144822809,0.3568296729341128,0.3586505842442518,0.3596953063739218,0.361145943860326,0.3622949963438838,0.3631937682570594,0.3682177904400127,0.3728640383328048,0.3758007400628655,0.3798872438923775,0.3829718875502008,0.3880170277654234,0.3907701758427397,0.3977953055212392,0.4034626865671641,0.406230721776681,0.4071819841752891,0.4044298605414274,0.4034822104466313,0.0,2.5191163234380967,66.6595410139543,192.9764560839604,281.4348363585517,CHI_public_implementation,38 +100000,95540,52334,495.4783336822273,6592,67.49005652082897,5240,54.11346033075152,1974,20.180029307096504,77.19945181010942,79.6733050335113,63.224607941291474,65.05486398651186,76.95310426041543,79.42849008932126,63.13173861163106,64.96557859599767,0.2463475496939935,244.8149441900398,0.0928693296604095,89.28539051419193,211.17294,147.83858729523374,221030.68871676785,154739.76061883362,395.75673,254.3520298585157,413449.61272765335,265446.8495903117,468.17652,226.56362159743276,485814.2767427256,233858.98424116583,3644.26821,1682.8875031033058,3763854.4902658574,1711154.5586706316,1234.96415,550.9520253411727,1273084.697508897,557285.5381264953,1921.8582,815.9428289238756,1965978.605819552,814786.6851810277,0.43276,100000,0,959877,10046.84948712581,0,0.0,0,0.0,32690,341.3544065312957,0,0.0,42354,439.0412392715093,1331948,0,47826,0,0,18962,0,0,67,0.7012769520619635,0,0.0,0,0.0,0,0.0,0.06592,0.1523246141048156,0.2994538834951456,0.01974,0.3452346674344946,0.6547653325655053,24.07742735119925,4.173126619173875,0.3062977099236641,0.2704198473282442,0.2003816793893129,0.2229007633587786,11.377538352100403,6.102949120932958,21.183607253902384,14020.724653191866,60.202082823822096,17.39476427132913,18.3512421222079,12.962739633401656,11.493336796883431,0.5788167938931298,0.7875793930839803,0.7021806853582554,0.5702054794520548,0.1180952380952381,0.752361673414305,0.9169741697416974,0.8526785714285714,0.7208480565371025,0.1531100478468899,0.5103778605641298,0.7074285714285714,0.6439066551426103,0.5220338983050847,0.1093935790725326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026051433842535,0.0055700980093748,0.0085506539930132,0.0113876687815194,0.0139369629840778,0.0167179759016493,0.01920702148288,0.0216329450235029,0.0240994678673761,0.0268602875618729,0.0293377952513421,0.0318550584557802,0.0342629400012358,0.0366507808792886,0.0391555059523809,0.0416114607485922,0.0443345155870823,0.0466742880897942,0.0490302285369054,0.0513441561831184,0.0686437575186986,0.0847297665736876,0.1004415011037527,0.1152042654977292,0.1290602175314723,0.147225344048856,0.1624022554391191,0.1756833196367012,0.188075212942626,0.1997891974445567,0.214136809928603,0.2282668866480695,0.2408183306055646,0.2525864244259399,0.263171838262079,0.2752605497655607,0.2853625232243189,0.2954827640698015,0.3050243591494787,0.3131800581388668,0.3212118399220264,0.3283706415129757,0.3350818271364656,0.3409194684097955,0.3470447041048822,0.3531375166889186,0.357743187728489,0.3622635247261865,0.3657589065301562,0.3703149616723816,0.3680590278247003,0.3660667457973335,0.3634617557338154,0.3620529762939778,0.3598544717144306,0.3574249665749719,0.3533682872577057,0.3527181617380411,0.3528765429979226,0.3543506353650656,0.3547153460683471,0.3571357652058222,0.358427700807659,0.3583239721410919,0.3601199110337491,0.3616602863285961,0.3634617589725948,0.3684144070204236,0.3715858564471734,0.3748211162346955,0.3749375255577263,0.3775013234515617,0.3793752352277004,0.3804198995892286,0.3825289936401047,0.3875978183542803,0.3850129198966408,0.3959167333867093,0.397714907508161,0.4041825095057034,0.0,2.7453987234739685,64.86868507031002,202.2051226939196,273.1704663785638,CHI_public_implementation,39 +100000,95675,52079,492.35432453619023,6615,67.78155212960544,5235,54.07891298667364,2043,21.01907499346747,77.33990302576841,79.73263888577242,63.32261558699434,65.0898263770654,77.08535764305451,79.47689702485758,63.22844386795372,64.99755552932885,0.2545453827138999,255.74186091483853,0.0941717190406237,92.27084773655749,212.6619,148.81067210568986,222275.30702900444,155537.67661948246,397.0945,256.13570744518427,414359.7909589757,267028.939059508,469.80532,228.3169241447852,486463.2244577999,235155.59440355463,3662.33317,1708.1337817126596,3786830.812646982,1744291.6035669292,1235.49004,560.861613420462,1276461.719362425,571336.6327885668,1984.50344,835.7761682188027,2042414.1102691405,846134.6049206343,0.43124,100000,0,966645,10103.42304677293,0,0.0,0,0.0,32802,342.1478965246929,0,0.0,42593,440.71073948262347,1330240,0,47852,0,0,19002,0,0,74,0.7734517899137706,0,0.0,1,0.0104520512150509,0,0.0,0.06615,0.1533948613301178,0.308843537414966,0.02043,0.3401301518438178,0.6598698481561822,23.978120059195245,4.1543903435485205,0.3117478510028653,0.2666666666666666,0.2066857688634193,0.2148997134670487,11.24069287045451,6.062951671747054,21.9009417384497,13902.071031992293,60.23621340999989,17.0481808289328,18.756424573637396,12.496392680083469,11.935215327346215,0.5831900668576886,0.8094555873925502,0.7040441176470589,0.5573333333333333,0.1358595194085027,0.7618147448015122,0.9143835616438356,0.8742268041237113,0.7445255474452555,0.1926229508196721,0.5054824561403509,0.7339901477832512,0.6320836965998257,0.4970622796709753,0.1193317422434367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026233161146561,0.0056560741979625,0.0082393887428843,0.0110307561044976,0.0136867901121584,0.016348052688369,0.0187752273005259,0.0214848534334939,0.024073846908734,0.0266023869475321,0.029217284330309,0.0317497793015664,0.0341604368258146,0.0366173971262295,0.0388783387689386,0.0415223482459496,0.0436688008951327,0.0460452563836412,0.0485290446071904,0.050860532268657,0.0686737422697643,0.0855231474695868,0.1013051324016954,0.1158555829072776,0.1300004219765381,0.1476857974080931,0.1619330539493926,0.1747969643104237,0.1869826656271027,0.1987605609641034,0.2132995907818221,0.225939430661199,0.2387467237985449,0.2504291540471687,0.2616238112011271,0.2737191913597341,0.2835955808503515,0.2933921498019445,0.301343439386375,0.3105913079337442,0.3172599696889063,0.3240749403564579,0.3310849988758327,0.3377535007965884,0.3438103215937648,0.3497419219729726,0.3539346928562492,0.3582330645366436,0.3636775831692403,0.3672898183354457,0.3648317301215207,0.3629368607964321,0.3605210110094588,0.358494660994878,0.3554411392687608,0.3520408163265306,0.3485112448527083,0.348305377121359,0.3485771837285126,0.3494970751890426,0.3503961341799179,0.3525155678560838,0.3523693803159173,0.3529939046253137,0.353648834349912,0.3554185390322917,0.3571387745770462,0.3616255955573786,0.366669015076793,0.3713480469990473,0.376934279992718,0.3798169044070683,0.3815207780725022,0.3866676859567311,0.385840874811463,0.3876116736152472,0.3912573370404695,0.3994241053064582,0.3994946659180236,0.3975009761811792,0.0,2.43032323975287,69.6567638202311,193.4824316959008,266.09247617439405,CHI_public_implementation,40 +100000,95769,52304,492.6124319978281,6540,66.70216876024601,5160,53.13828065449153,2013,20.476354561496933,77.331780499572,79.67166607555602,63.32970022966426,65.06238451051803,77.07250818742496,79.41745229494192,63.23202910745116,64.96967452453477,0.259272312147047,254.21378061409428,0.0976711222131001,92.7099859832623,212.6091,148.86331757814023,222002.004824108,155439.98327030696,398.76527,257.684762091674,415646.5766584177,268333.2415412858,475.0729,230.84383751797645,491003.70683624136,237127.84985093604,3641.43368,1715.033762987072,3752446.62677902,1740939.8583958028,1210.93967,549.6036476232781,1240810.5650053776,550257.2310698421,1959.49232,837.6472602020531,1996247.721078846,833982.9063205735,0.43274,100000,0,966405,10091.000219277636,0,0.0,0,0.0,33048,344.30765696624167,0,0.0,43058,444.6428384967996,1326197,0,47778,0,0,18835,0,0,72,0.7413672482744937,0,0.0,1,0.0104417922292182,0,0.0,0.0654,0.1511300087812543,0.3077981651376146,0.02013,0.3545560747663551,0.6454439252336449,23.967088728758394,4.241101030641359,0.3032945736434108,0.2689922480620155,0.2094961240310077,0.2182170542635658,11.813450804058007,6.416547894930947,21.62849551184348,13969.372186428116,59.75108473835673,16.95793795809742,18.074588325619864,12.809635915502854,11.908922539136585,0.5916666666666667,0.8025936599423631,0.7028753993610224,0.6198934280639432,0.1304347826086956,0.754996776273372,0.9327272727272728,0.8693790149892934,0.7577854671280276,0.1346938775510204,0.5214740925464117,0.7171837708830548,0.6320582877959927,0.5722819593787336,0.1291866028708134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030893897189161,0.0059101415189976,0.0083716399281561,0.0111138201471006,0.0138825324180015,0.0166498640515687,0.0193205685039048,0.0219792559924864,0.0247081433624338,0.0276910477555407,0.0297802107680321,0.0323428547959833,0.0348472540692832,0.0372167284713638,0.0395999752306644,0.0423541330686846,0.045166435362595,0.047525204331411,0.0501408099429485,0.0525417022428622,0.0702188272861033,0.0865995125574,0.1018125399670828,0.1160478777624817,0.1299395140045101,0.1482573499883752,0.1620945516217935,0.1762947995320642,0.1894952556809085,0.201639432092151,0.2166124830451913,0.2298821976785695,0.2422426450595464,0.252882364523398,0.2639904015498415,0.2750634412295963,0.2854575892857143,0.2958316926365528,0.3048538403076329,0.3120662406376692,0.31924442747915,0.3266120071579784,0.3337319299574962,0.3393934306306738,0.3441166101365233,0.3492737347434932,0.3532213587365254,0.3578316326530612,0.3615789883470452,0.3665639913805639,0.36441203429126,0.3620096352374398,0.3597603946441156,0.3586107091172214,0.3567368922216271,0.3526911094399853,0.3498508031236112,0.3498658414130274,0.3496658097686375,0.3499642218246869,0.3507047547453486,0.3510752049423785,0.3511853425608447,0.3518443726440495,0.3529283797829397,0.3546849630754727,0.3533350502189029,0.3575751844146018,0.3617731842789847,0.366989285856534,0.3716299720785462,0.3746660968052142,0.3791743527765409,0.3835312140942167,0.3884055229808965,0.3901072705601907,0.3911969111969112,0.3905710221499695,0.3879310344827586,0.3925343811394892,0.0,2.913984202065816,67.56591175818089,198.51586384181545,259.0762764413208,CHI_public_implementation,41 +100000,95688,52020,492.1724772176239,6671,68.39938132263188,5352,55.33609229997492,2036,20.901262436251148,77.34192318165195,79.7168104311771,63.32298576779221,65.07477172255423,77.08064530248463,79.45679118847697,63.22596486721449,64.98090012834626,0.2612778791673236,260.01924270012466,0.0970209005777107,93.8715942079682,212.61218,148.748443096165,222193.1485661734,155451.51230683576,394.95002,253.9445804565533,412133.6113201238,264776.1010316323,461.47945,223.11438821972675,478898.23175319785,230545.1430761389,3736.8856,1720.7573051034776,3865103.764317365,1758512.9545742916,1207.86168,538.523945780801,1248836.123651869,549427.3489052561,1972.93546,833.9222167851772,2026532.3969567765,840416.7682159775,0.43281,100000,0,966419,10099.6885711897,0,0.0,0,0.0,32822,342.3835799682301,0,0.0,41906,434.54769668087954,1330555,0,47820,0,0,18798,0,0,78,0.8151492350137948,0,0.0,0,0.0,0,0.0,0.06671,0.1541322982371017,0.305201618947684,0.02036,0.3448424068767908,0.6551575931232092,23.886795195065737,4.130963275752071,0.319880418535127,0.2675635276532137,0.1958146487294469,0.2167414050822122,11.531484294813229,6.286230239866372,21.793450101978863,13991.908157591435,61.37662111098998,17.63530918012923,19.40158891785917,12.900508885487897,11.439214127513685,0.5848281016442451,0.8100558659217877,0.6945093457943925,0.5870689655172414,0.0954198473282442,0.7498408656906429,0.9043624161073824,0.8832599118942731,0.7046979865771812,0.1255605381165919,0.5162655382174028,0.742822966507177,0.6263910969793323,0.5464037122969838,0.0872727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028148193149256,0.0054327444481608,0.0079024518904003,0.0105429946980315,0.0132610619019047,0.0158009407261102,0.0185449503496931,0.0210960554664924,0.0237126262832835,0.0263144422259765,0.0287504229511222,0.0314842578710644,0.033695037284649,0.0362066478455292,0.0388954838709677,0.0411056648259601,0.0433922393254469,0.0457951879761682,0.0480241264559068,0.0505090503631608,0.0670420240047633,0.0834563712709033,0.0986638397027489,0.1136786943208005,0.1279440317406719,0.1462738374923275,0.1608515608409428,0.1752969374167776,0.1884446819882415,0.1998175182481751,0.2142387354847057,0.2282115432519955,0.2412884684468925,0.252774555086137,0.2640763657983397,0.2750041558153709,0.2861003171200142,0.2962696062424699,0.3050395469968113,0.3128250956669187,0.3198833252309188,0.3275165900073733,0.3337675410030197,0.3401302611219728,0.3455075987841945,0.3502762839804628,0.3546733832061451,0.3604701507742461,0.364797903803248,0.3689220274450702,0.3674502761311927,0.3654185995140269,0.3631007883360176,0.3615158662402871,0.3598864767678569,0.35723911911544,0.3555801804654108,0.3552047360631475,0.355830636738747,0.3556278255275807,0.356624200236411,0.358167836048678,0.3587734957471385,0.3596912444464389,0.3610810029626418,0.3626832194460382,0.3654306220095694,0.3691606413077649,0.372165562681807,0.3769035532994924,0.3810583692936634,0.3842113639980901,0.3864254538553988,0.3908456049795051,0.3936609152288072,0.3955785512699906,0.4005132850241545,0.4093812375249501,0.412989860235681,0.4144515162860352,0.0,2.2334217513051486,69.66621762077132,195.2315263239519,280.83504651072826,CHI_public_implementation,42 +100000,95715,52515,496.43211617823744,6820,69.62336101969387,5410,55.68615159588361,2061,20.96850023507287,77.32392886815877,79.68854440547936,63.31606620966248,65.06520704449616,77.06068006699897,79.43086388779362,63.216723868075405,64.97124592350997,0.2632488011598042,257.680517685742,0.0993423415870751,93.96112098619368,211.94646,148.32349718604743,221434.94750039175,154963.6913608603,398.99411,256.84441849389395,416033.0460220446,267519.55126562604,476.24596,230.8239454177036,492326.35428093816,236979.1171345349,3783.53186,1761.6964575491936,3900455.0070521855,1788105.4250109124,1229.49922,557.3307837449041,1266208.8909784255,563968.4139733465,2001.6065,853.8903240048122,2040283.591913493,849244.7772366251,0.43369,100000,0,963393,10065.224886381444,0,0.0,0,0.0,32950,343.3840045969806,0,0.0,43208,446.2518936425847,1331110,0,47974,0,0,18878,0,0,69,0.7104424593846315,0,0.0,1,0.0104476832262445,0,0.0,0.0682,0.1572551822730521,0.302199413489736,0.02061,0.348463687150838,0.651536312849162,23.85627562331069,4.154110024497184,0.3290203327171904,0.2582255083179298,0.2018484288354898,0.21090573012939,11.795213027939347,6.5768418655667205,22.03596932751403,14008.59940209511,62.26556238082792,17.102071621393144,20.43296819669674,12.776102137995297,11.954420424742754,0.589648798521257,0.8060128847530422,0.7106741573033708,0.6047326906222612,0.0998168498168498,0.7602605863192182,0.9291044776119404,0.8804780876494024,0.706959706959707,0.1517857142857142,0.5220645161290323,0.7293844367015099,0.6439749608763693,0.5725806451612904,0.086405529953917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027449431259939,0.0051607539364689,0.0081596200296344,0.0107805482736897,0.0129796150872767,0.0155193482688391,0.0183818281915869,0.020986658772852,0.0236072345080718,0.026118562506399,0.0286455396413668,0.0310478654592496,0.0336489529038028,0.0363186898079002,0.039036219172428,0.0415107601347859,0.0438020466503708,0.0464155604222238,0.0488317198207285,0.0511626453306663,0.0685320526205888,0.0840229752775133,0.099446297111936,0.1145053419702195,0.128900606380174,0.147554163845633,0.1629841876260214,0.176194939081537,0.189384388555311,0.2012202968173629,0.216876810267785,0.2306577396082333,0.2433228935577885,0.2552223461731959,0.2658254307025457,0.2767961003711294,0.2865388694749299,0.2960878131156769,0.3047345343844423,0.3135059482155353,0.3211788848824941,0.327917282127031,0.3343693282245341,0.3400220957321613,0.3448364039306893,0.3509465183191119,0.3561069851465275,0.3608361818274578,0.3652635541191282,0.3688688357569101,0.3672237822659034,0.365501834128582,0.3622267412302999,0.3592147203709069,0.3577289039117292,0.3547709572576194,0.3526048183992524,0.3534288857147548,0.3535989057958625,0.3544041450777202,0.3558451298396925,0.3559932693259428,0.3565706136487563,0.3567125741798231,0.3576352067868504,0.3596800752764055,0.3613347034309528,0.3648981914759074,0.3690354073078419,0.3729807347134139,0.3778875623256026,0.3796996485248695,0.3839353372063652,0.3913308913308913,0.3956200227531286,0.3972488038277512,0.406563354603464,0.4032098276203685,0.4051609470603884,0.3975084937712344,0.0,3.229665241543336,66.57298866524678,210.98064759267115,280.38229495258275,CHI_public_implementation,43 +100000,95794,52430,496.47159529824415,6642,68.00008351253732,5218,53.88646470551392,2050,20.961646867235945,77.4066300966336,79.74467611410346,63.35719594835807,65.08703630593729,77.14923159675608,79.48914890140878,63.260917344197686,64.9941487955918,0.2573984998775245,255.52721269467327,0.096278604160382,92.88751034549136,213.05922,149.05253994647433,222413.03213144877,155596.06944110722,396.22353,254.4256816199976,413032.0792533979,265009.7879225836,467.05533,225.1379807574752,483979.64381902834,232194.0879761388,3696.21329,1696.3665851199737,3816970.7392947366,1729960.478511063,1220.73276,543.5466498935178,1257417.0720504418,550803.8794568066,1994.74808,839.2760716023157,2041635.3425057936,841973.8903446159,0.43406,100000,0,968451,10109.683278702216,0,0.0,0,0.0,32738,341.13827588366706,0,0.0,42241,437.3551579430862,1333091,0,47976,0,0,18831,0,0,82,0.8560035075265675,0,0.0,0,0.0,0,0.0,0.06642,0.1530203197714601,0.3086419753086419,0.0205,0.3404285919746871,0.6595714080253128,24.054115466496548,4.201324689616226,0.3246454580298965,0.2558451513990034,0.2121502491376006,0.2073591414334994,11.434782228212091,6.216902549753288,21.583768489206857,13965.54626418181,59.43746282400095,16.147941545996748,19.301488284664828,11.967405372284682,12.020627621054691,0.5728248371023381,0.7872659176029962,0.7001180637544274,0.5804066543438078,0.1120144534778681,0.7315898141775636,0.9161793372319688,0.8473118279569892,0.7105263157894737,0.1497975708502024,0.5115537848605578,0.7068126520681265,0.644426362896664,0.5456674473067916,0.1011627906976744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023405678156726,0.0051813996876964,0.0078038582924873,0.0106783983418509,0.012896532785468,0.0155190321989368,0.0179237780632531,0.0205685704077987,0.0228954577047303,0.0251340619755208,0.0277532949351261,0.0300648497783615,0.0324467101070936,0.0351242009038408,0.0375623634189584,0.0400433682688832,0.0425283194537836,0.0447614210040739,0.0472598826035011,0.0498053178420471,0.066318172807045,0.0828566349100111,0.0987295863818368,0.1140514976353126,0.1281400151732276,0.1461179976539961,0.1602976562748444,0.1739486416077409,0.1872285479516375,0.1993443395721065,0.2143126177024482,0.2285065426624851,0.2405930048040345,0.2521681193612513,0.2624471182902038,0.2741189232267776,0.2845507592408707,0.2947289105815405,0.3044405618206984,0.3131104927456571,0.3206824754193175,0.3275896332838455,0.3353606588413479,0.341935638463566,0.3471879670015916,0.3534241508968748,0.35870395651466,0.3622745726903644,0.3663595962736943,0.3696768826504337,0.3688169868554095,0.3672278277148402,0.3659750218488342,0.3632222800624675,0.3609935083262772,0.3566660542592932,0.3533436571645281,0.3533668407524434,0.3540494125248678,0.3551423446463139,0.3563888421799974,0.3574551039697543,0.357925264453671,0.3585653820449989,0.3576252514608679,0.3585732814526589,0.3581882126042316,0.3624874874874875,0.3677766895200783,0.371704154642843,0.372023404544836,0.3747164037355563,0.3771803688652704,0.3829273810421537,0.3868721567171108,0.3912129002103295,0.396327467482785,0.3996386993175431,0.4003868471953578,0.4047158871279474,0.0,2.197562944966477,63.87945975695401,197.80640207151603,275.4750833885883,CHI_public_implementation,44 +100000,95672,52103,492.7669537586754,6678,68.05543941801155,5258,54.20603729408813,2084,21.291495944476964,77.29491858535671,79.69653916853291,63.29396199958445,65.07377054896091,77.02449103129814,79.43014052428238,63.19167315423611,64.97630430056782,0.2704275540585712,266.39864425052906,0.1022888453483403,97.46624839308993,212.45004,148.65121618438127,222060.83284555565,155375.88446398242,396.61148,255.5870449138299,413788.1720879672,266384.6018791221,464.59701,225.1298909569804,480948.8356049837,231779.15002930356,3705.75759,1734.292937078588,3818601.461242579,1758328.716569416,1206.78237,558.7996523043722,1242650.6605903504,565549.998051334,2022.5251,864.1431230337361,2067560.8955598292,863056.4492434632,0.43131,100000,0,965682,10093.67422025253,0,0.0,0,0.0,32882,342.8902918304206,0,0.0,42130,435.7074170081111,1330674,0,47845,0,0,18802,0,0,79,0.8152855589932269,0,0.0,0,0.0,0,0.0,0.06678,0.1548306322598595,0.3120694818808026,0.02084,0.3489404352806414,0.6510595647193586,24.12277964760148,4.207280284971985,0.3113351084062381,0.2588436667934576,0.206542411563332,0.2232788132369722,11.426338891422148,6.266645229579534,22.366071357315832,13964.049305644963,60.5014065233884,16.540029533138362,18.81870720410153,13.146652242041853,11.996017544106657,0.5833016356028908,0.7972079353416606,0.708613317043372,0.5954003407155025,0.1132596685082873,0.7555982085732565,0.909426987060998,0.8765690376569037,0.7804878048780488,0.178988326848249,0.5104194857916103,0.723170731707317,0.639344262295082,0.5355129650507328,0.0928829915560916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027268948878323,0.0055100611890772,0.0082465850809932,0.0108789588734685,0.0134877897329926,0.0161956111830236,0.0188272990734315,0.0214237551337324,0.0237242705733109,0.0265729681001454,0.0291121711032466,0.0314358800505439,0.0337833666056103,0.0364942439889105,0.0388946808840075,0.0412430839236775,0.0436174843001927,0.0460156777241343,0.0482402754803741,0.0507729030509605,0.0684111563773111,0.084376832230505,0.0998572717922884,0.114307661549146,0.128136408719691,0.1463778544369431,0.1613303891802373,0.1755196796728574,0.188083787538741,0.2003412712892113,0.2149414883299928,0.2283323953417897,0.2415630743798057,0.2532200572940585,0.2641266558112925,0.2750274174430326,0.2854128993369499,0.2950402522096492,0.3037891268533773,0.312254097890547,0.3187353005920313,0.3259428437573202,0.3328436541127131,0.3382663594027558,0.3447306962487228,0.3504810839519287,0.3555254645302039,0.3598634429696059,0.3632536207477265,0.3675150491076143,0.3652027482150074,0.3633186090354897,0.3615602576934463,0.359511066107334,0.3585565476190476,0.355085812532621,0.3519889432547499,0.3524151446781179,0.3527567419387999,0.3530339697051178,0.3544420592776711,0.3548342239615407,0.3562378988130314,0.3569006176305446,0.3576964060835028,0.3581176841110703,0.3604180424359011,0.3653846153846153,0.3704265603499982,0.3737478548908489,0.3779400955531055,0.3821720763595529,0.3864010120177103,0.3918867202449292,0.399072584461058,0.4050723770785979,0.4055954746980584,0.4112853941739662,0.4053537284894837,0.41417203486169,0.0,2.849611643666332,68.19460812892625,192.2420990435788,276.1520780855392,CHI_public_implementation,45 +100000,95720,52079,492.0810697868784,6667,68.42875052235688,5287,54.65942331801087,2003,20.60175511909737,77.3593554540744,79.73156130279007,63.33143217950936,65.08431964731423,77.11098918778609,79.48166315591352,63.23996255267134,64.99429305163319,0.2483662662883148,249.89814687654643,0.0914696268380268,90.02659568103866,212.8962,148.95106848150655,222415.5871291266,155611.22908640467,399.77171,257.2201877338155,417077.2774759716,268151.9003495073,471.09086,227.93460509203743,488395.06895110745,235190.72615218483,3719.09852,1723.3410783297363,3849489.9811951527,1764502.9607230937,1220.22503,550.1529735375578,1258525.8357709988,558516.0660408379,1949.23816,818.4186060240291,2006651.5879648973,830854.7316109695,0.43107,100000,0,967710,10109.799414960302,0,0.0,0,0.0,33058,344.76598412035105,0,0.0,42753,442.7914751358128,1328625,0,47789,0,0,19236,0,0,67,0.6999582114500627,0,0.0,0,0.0,0,0.0,0.06667,0.1546616558795555,0.3004349782510874,0.02003,0.3338092518560822,0.6661907481439178,24.086684116960885,4.164939612046168,0.3215434083601286,0.2581804425950444,0.2063552108946472,0.2139209381501796,11.233709491229646,6.152913827789229,21.491358616528533,13933.52416984045,60.73220736470561,16.921745676045436,19.193422038275195,12.630978180981373,11.986061469403609,0.5920181577454133,0.8117216117216117,0.7170588235294117,0.5941644562334217,0.1200733272227314,0.7478882391163093,0.911504424778761,0.8786516853932584,0.7202797202797203,0.1604938271604938,0.5280149413020278,0.74125,0.6597609561752988,0.5514792899408284,0.1084905660377358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497954057448,0.0050483035469907,0.007600434310532,0.0104608884645853,0.0133105559114527,0.0162277174300345,0.0187981038788929,0.021272686442235,0.0238596634703849,0.0265154229670655,0.0287853150797313,0.0310603025914399,0.0334684554919955,0.0360189573459715,0.0384385190077186,0.0410072463019051,0.0432964074955999,0.045347522585597,0.0479457751164337,0.050821328500151,0.0677373207889983,0.0839578013145225,0.1002622469317109,0.1153757176807083,0.1295567905009965,0.1468693472120846,0.1615449915110356,0.1749475678955829,0.1887502137117456,0.2003304862869651,0.2150161086986973,0.2281505055097313,0.2405765569757955,0.2524619222689075,0.2635520606180753,0.2752908040496335,0.2853377706800085,0.2954509662759567,0.3044405860257152,0.3132088440829419,0.3202929741738406,0.3264769166004023,0.3333254510629241,0.3388674095974528,0.3441990291262136,0.3483480894974695,0.3539886129012075,0.3585414229771652,0.3628327746644751,0.3674556603151579,0.3648061744497183,0.3631114410624433,0.3605746253970931,0.3582715160244868,0.3565150369810426,0.3532789639268151,0.3502351418741912,0.3501751284821107,0.3514849797115286,0.3513253527148354,0.3526085165349612,0.3534351597541939,0.3552186784806937,0.3555620398635302,0.3562841793346021,0.3568108221038337,0.3575098475766398,0.361442362294151,0.3631819781766983,0.3682287529785544,0.3733741043311578,0.3773584905660377,0.3812917594654788,0.3845449691051949,0.3861971830985915,0.3896702517432927,0.3897451548908897,0.3940916398713826,0.3995091355331333,0.4054157131960336,0.0,2.24174636361581,67.92812384332595,202.34697033418792,269.30712977312743,CHI_public_implementation,46 +100000,95874,52552,496.53712163881767,6721,68.44399941590004,5342,54.97840916202516,2093,21.38223084465027,77.4394230829848,79.71937719551663,63.39129033748679,65.07732760632592,77.17573153580052,79.45847558310864,63.291832883753415,64.98172252044093,0.2636915471842798,260.9016124079915,0.0994574537333718,95.60508588499772,213.4121,149.35809132040973,222596.1991780879,155785.61086007842,402.58211,259.441088984142,419154.2962638463,269856.69833345804,473.87366,229.60811874272704,488917.2455514529,235503.9783804645,3763.86542,1756.8898951181363,3878343.659386278,1785184.7614226232,1261.14451,572.6213017428404,1296967.634603751,578918.0603211871,2046.12928,870.1894608337789,2092566.4935227488,873344.1358482896,0.43477,100000,0,970055,10118.009053549453,0,0.0,0,0.0,33290,346.4234307528632,0,0.0,42930,442.5808874147319,1327161,0,47762,0,0,18877,0,0,78,0.8135678077476689,0,0.0,1,0.0104303565095854,0,0.0,0.06721,0.154587483037008,0.3114119922630561,0.02093,0.3485965409696626,0.6514034590303374,24.00673066961719,4.211096073142061,0.314301759640584,0.2660052414825908,0.2134032197678772,0.2062897791089479,11.35909280827708,6.069288180263973,22.37100887063095,13979.274291305008,61.1299658704772,17.251729646178774,19.06741585820711,12.178282595712842,12.63253777037847,0.5861100711344066,0.8114004222378607,0.7093508040500298,0.6016333938294011,0.1087719298245614,0.7406451612903225,0.9054545454545454,0.8634453781512605,0.7727272727272727,0.1346153846153846,0.5229430379746836,0.7520091848450058,0.6483790523690773,0.5477326968973747,0.1011363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027434703381251,0.0054116502493007,0.0077704176345874,0.0102143386571089,0.0129387012511815,0.0155470991636311,0.0182327476445123,0.0207262341901264,0.0235482816394916,0.025900693549377,0.0285354208078034,0.0312118444948339,0.0334689767145528,0.0358955354477419,0.0384238687794467,0.0406327767623886,0.0432762937366798,0.0456744966790662,0.0481094661655696,0.0504650146682479,0.0686527957303089,0.0853682747667262,0.101052411121001,0.1160844594239875,0.1301546527419541,0.1481364164290993,0.1617799716119738,0.1757135873839025,0.1884149136929195,0.2005587130334264,0.2144516129032258,0.2278371572770206,0.2407532162726008,0.2526721895560558,0.2636962571079752,0.2750160536746308,0.2855709300121534,0.2954047402312801,0.3049228258652342,0.3130646600032021,0.3206239168110918,0.327379144372532,0.3339482958442725,0.3399096800469568,0.3457628353839987,0.3511532206396924,0.3561357637021005,0.3605221679886109,0.3653393360759657,0.3686541198798039,0.3668901092984439,0.3635701124769683,0.3615850225225225,0.3588139242518388,0.357824866727054,0.3552238805970149,0.3524077795888655,0.3522272518533097,0.3521759172314889,0.3529233457553982,0.3535103973646283,0.3541827084443918,0.3561024610748368,0.3565888017118402,0.3580953292954442,0.3591091221314461,0.3598854355716878,0.3641678129298487,0.3696978146457077,0.3745661091827075,0.3815211981358309,0.3840131196106438,0.39119804400978,0.394702793211051,0.4001700840971369,0.4053088917985954,0.4057567316620241,0.405910116971065,0.4099777034559643,0.4134099616858238,0.0,2.765634127328423,67.60315699329263,199.31012584752185,278.2185752449057,CHI_public_implementation,47 +100000,95728,52648,498.3390439578807,6642,67.96339628948688,5311,54.811549389938165,2035,20.819404980778877,77.34647984393533,79.69933263972317,63.33814763576003,65.07551064298455,77.09396348488596,79.44807524625294,63.24436307373215,64.9846477387216,0.2525163590493662,251.257393470226,0.0937845620278778,90.86290426294852,212.24654,148.58888416008267,221718.34781882,155219.87731915704,398.12808,256.4338510243119,415226.5167975932,267208.97858966223,471.64036,228.9853368617513,487925.6957212101,235630.70057262,3696.89808,1717.461968482668,3818713.270934314,1751261.770375164,1227.1423,546.870401437763,1264262.3683770683,553777.3133228414,1975.58492,824.0727427090892,2024063.5759652348,829959.625210607,0.4366,100000,0,964757,10078.106719037272,0,0.0,0,0.0,33046,344.49690790573294,0,0.0,42672,441.1979776032091,1331320,0,47862,0,0,18930,0,0,82,0.8357011532675915,0,0.0,0,0.0,0,0.0,0.06642,0.1521300961978928,0.3063836193917494,0.02035,0.3475362318840579,0.652463768115942,24.05302071582048,4.150537181186742,0.3155714554697797,0.2683110525324798,0.2014686499717567,0.2146488420259838,11.579510298243353,6.344198014881097,21.65189719506346,14122.774898155603,60.83292150005155,17.46636423774879,19.013316968423236,12.904766194998766,11.44847409888074,0.584447373376012,0.7936842105263158,0.684964200477327,0.6070175438596491,0.1242990654205607,0.764375,0.923469387755102,0.8695652173913043,0.7269938650306749,0.1133004926108374,0.5068714632174616,0.7025089605734767,0.6102263202011735,0.558968058968059,0.126874279123414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025217743568969,0.0054334053056797,0.0078038582924873,0.0104630137542918,0.0129863526348973,0.0157802573709073,0.0187359836901121,0.0215046081303136,0.0237756948206601,0.026312286916548,0.0287928330548693,0.0311826411840781,0.0336297743278671,0.0362035225048923,0.0388659038618284,0.0414366925064599,0.044126021100148,0.0466235773791615,0.0487629937629937,0.05075671565615,0.0692816052953029,0.0863285256745724,0.1019136346468588,0.1172555205047318,0.1313666986473236,0.1494724377814898,0.1634915247045845,0.17696826511717,0.1900186816119562,0.2022312960164614,0.2180634049195328,0.2319928198362836,0.244381656161704,0.2558924766431732,0.2662079275397366,0.2782008988863551,0.2884034213196837,0.2979302587176602,0.3072295993644308,0.3161820306592424,0.3237754712396292,0.3310329500660873,0.3380221653878943,0.3441712640921084,0.3498608528686184,0.3553545907052388,0.3596935901768615,0.363170964660936,0.3674538640106862,0.3712760757269496,0.3701516683518706,0.3681999145899629,0.3668029897052602,0.3641018964544547,0.3620907644022669,0.3591061075493113,0.3554721522796015,0.3561565111735054,0.3565721715625053,0.3572079395422793,0.3591330108373645,0.3609116268027776,0.3606268117464185,0.3616639770485924,0.3624710871241326,0.3626434071978626,0.3640789209930987,0.3688043889519485,0.3713120230685374,0.3727272727272727,0.3755883562582827,0.3780162289130899,0.3829787234042553,0.3862906923429619,0.3878535616308769,0.3924821002386635,0.3992003690604336,0.3964000818163223,0.3973453826602655,0.3945902943516308,0.0,2.643803809989501,70.0664554899847,187.0985259199361,280.7742102940085,CHI_public_implementation,48 +100000,95737,52352,494.7825814470895,6807,69.61780711741542,5396,55.74647210587339,2058,21.162142118512172,77.41222784566315,79.76692844417887,63.350809200748486,65.08908499958626,77.1527196760112,79.50487730385993,63.25534225794508,64.99418515298044,0.2595081696519514,262.0511403189454,0.0954669428034051,94.89984660582708,210.39304,147.2921624180116,219761.47153138285,153850.823002613,399.00265,256.0538282825951,416173.7259366807,266860.01339643303,473.3936,228.91828835132063,488995.2682870781,235100.8703166953,3794.63247,1744.669113781053,3925552.210744017,1784353.6080011302,1278.01071,572.9302940710774,1321274.575138139,584853.7660318366,2011.46152,840.2721324468182,2070402.4776209823,855471.0240185843,0.43358,100000,0,956332,9989.15779688104,0,0.0,0,0.0,33066,344.7360999404619,0,0.0,42793,441.6160940911038,1341710,0,48164,0,0,18522,0,0,94,0.9714112621034712,0,0.0,1,0.0104452823882093,0,0.0,0.06807,0.1569952488583421,0.3023358307624504,0.02058,0.3486740564052196,0.6513259435947805,23.90482295826346,4.199965145134655,0.3083765752409192,0.2650111193476649,0.2118235730170496,0.2147887323943662,11.3663971733857,6.049445350599124,21.89708366579801,14038.395429939892,61.54088052541204,17.388302281361817,18.815854125777147,12.858879974793084,12.477844143480004,0.5757968865826538,0.7986013986013986,0.6989182692307693,0.5780845556514237,0.1154855643044619,0.7551563539587491,0.9157706093189965,0.8719101123595505,0.7397769516728625,0.1601731601731601,0.5065502183406113,0.7236238532110092,0.6357670221493027,0.5292134831460674,0.1041666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025521571804739,0.0052095474585719,0.0080448808992411,0.01068323990576,0.0132067223131589,0.0158497480531378,0.0184581201459526,0.0209585420854463,0.0235562232373711,0.0261310133060388,0.0288903008936623,0.0314014124989734,0.0339357677440579,0.0363222557490499,0.0389219085355786,0.0412738774497643,0.0437483820864613,0.0461473020220569,0.0484571880068199,0.0510104166666666,0.0686494555855978,0.0854703537461941,0.1010006713098934,0.1162641477679135,0.1308214986600266,0.1487227242904611,0.1628018041920934,0.1766772788738993,0.1895978712717868,0.2016076238718193,0.2160469203152458,0.2294080700006497,0.2425505971497936,0.2537065019819109,0.2649067912388171,0.2760953965612867,0.2871992042114205,0.2971323015926652,0.3061034463180605,0.314139306676449,0.3215021886652616,0.3285975095964797,0.3356845294451808,0.3421418303785338,0.3475018823929465,0.3531766560737073,0.3579118474523288,0.3622772365262235,0.3666503010413706,0.3712672571496255,0.3692181688798184,0.3672044338354323,0.3640986024299459,0.361744744009107,0.3594905626885983,0.3564757682404741,0.3538289459174189,0.3540526857310839,0.3546077581075795,0.3542773857556744,0.3552555520334147,0.3556311710790291,0.3558825988795049,0.3561607202549417,0.3566066246132444,0.3585410871656225,0.357936305008665,0.3619307147779239,0.3651471154182556,0.3698413950919277,0.3729396848397029,0.3752579501560929,0.3781954887218045,0.3841204965183167,0.3847872637557024,0.3908073070123747,0.3948244552058111,0.4024804960992198,0.4105492115280043,0.4132672512390393,0.0,2.4078115731327565,66.01384078907876,205.82352486339784,283.7193533097865,CHI_public_implementation,49 +100000,95714,51921,490.6283302338216,6711,68.5584136072048,5346,55.09120922749023,2108,21.51200451344631,77.32373385663094,79.69367010137574,63.321321634088775,65.07495651400681,77.05013946224054,79.42376525141835,63.2176029199314,64.97578421243739,0.2735943943904004,269.90484995739905,0.1037187141573738,99.1723015694248,212.78818,148.77176720449208,222316.44273565,155433.4438184928,394.96901,253.82184264567493,411874.1458929728,264407.348003338,460.01946,222.790257059036,476158.9109221222,229230.60292055004,3803.32657,1778.661019643263,3917992.644754164,1802768.0229541056,1259.35845,573.120527513356,1292116.1690034897,575313.4679096261,2059.41498,886.9196947716885,2103371.690661764,884549.8663570433,0.43172,100000,0,967219,10105.292851620452,0,0.0,0,0.0,32706,340.91146540735946,0,0.0,41709,431.26397392231024,1333916,0,48001,0,0,18760,0,0,84,0.8776145600434628,0,0.0,0,0.0,0,0.0,0.06711,0.1554479755397016,0.3141111607808076,0.02108,0.3512285186763244,0.6487714813236756,23.86067627524858,4.192932860813583,0.3131313131313131,0.2596333707444818,0.2171717171717171,0.2100635989524878,11.131337243723475,5.883543733691377,22.764332292120688,13941.20981306956,61.43164026449379,17.030623823295617,19.054818723996824,12.515745999359948,12.830451717841417,0.5705200149644594,0.8061959654178674,0.6989247311827957,0.5592163846838825,0.1145564168819982,0.7245283018867924,0.9259927797833934,0.87117903930131,0.697841726618705,0.1533333333333333,0.5053248136315229,0.7266187050359713,0.634046052631579,0.5136094674556213,0.1010452961672473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026950354609929,0.0055168497165515,0.0082825822168087,0.010741214966567,0.0133078300504639,0.0155853680897228,0.0182148247868477,0.0208858884928456,0.023600871228002,0.0261764555276767,0.0290326219605993,0.0313238163705453,0.0338048454297618,0.0362630228460135,0.0389033969508985,0.0414452600020676,0.043768254034012,0.0463453856927945,0.0488058475519095,0.050941410605066,0.0683775854328283,0.0843022951574584,0.0994062480330654,0.1149156857175918,0.1291513304295552,0.1464495320678898,0.1607002652519893,0.1750050551812947,0.1873845003471665,0.1987944700065424,0.2134818149508352,0.2275329228571737,0.2409498324848801,0.2518209856289782,0.2622867833168262,0.2746748787026165,0.2862496653877041,0.295198597343044,0.3040085297520473,0.3127919223372103,0.3201086956521739,0.3273075933677884,0.333743463549677,0.3400700038358266,0.3456995649743602,0.3508391185863842,0.3553673448932545,0.3593566804302391,0.3636847226727214,0.3669961153246479,0.3662925592186909,0.3645844829489019,0.3621675823011849,0.3602319681043856,0.3573334128202453,0.354426103646833,0.3517188911606675,0.3509426519173556,0.3515625,0.3518697268697269,0.3521602793998911,0.3527907714263062,0.3529052631578947,0.3544813016900395,0.3548355899419729,0.3564327868852459,0.358223523670083,0.3616737993342843,0.3630828052536552,0.3662384584504215,0.3688093701005256,0.3711440107671601,0.37554167728779,0.3785554613427889,0.383284485203744,0.3824552982119285,0.3929555895865237,0.3992279561154002,0.4034653465346535,0.408352668213457,0.0,2.8989810263986,69.35308363688323,198.601371294304,275.0828076555105,CHI_public_implementation,50 +100000,95770,52195,492.0852041349066,6631,67.87094079565627,5261,54.244544220528354,1981,20.18377362430824,77.38153749659537,79.72318171404541,63.350937847410606,65.08278673097423,77.13030141406114,79.4768986237512,63.25607722991638,64.9931678413826,0.2512360825342341,246.28309029421305,0.094860617494227,89.61888959163389,212.32882,148.580090338039,221706.7975357628,155142.40716303536,399.96921,257.1245839673571,416952.333716195,267799.063338579,460.47626,222.72042446326935,476964.9785945495,229481.75513672704,3693.29814,1696.846885324927,3809554.965020362,1724994.0938957157,1214.60636,544.6255372749532,1250612.9685705337,551040.2185182766,1934.99336,820.5263556281903,1974343.4687271588,816936.1529753497,0.43129,100000,0,965131,10077.581706171037,0,0.0,0,0.0,33016,344.0116946851833,0,0.0,41788,432.4736347499217,1334920,0,47940,0,0,18711,0,0,86,0.8979847551425291,0,0.0,0,0.0,0,0.0,0.06631,0.153748058151128,0.2987483034233147,0.01981,0.3475442892121561,0.6524557107878439,24.296834481235035,4.183172139789514,0.3225622505227143,0.2619273902299943,0.208515491351454,0.2069948678958373,11.272268905841088,5.966773008291229,21.055239272264338,13937.47164962278,59.98621723394984,16.888208893123807,19.04491232424059,12.030836954924766,12.02225906166068,0.5671925489450674,0.795355587808418,0.6794342958161461,0.5711662075298439,0.1030082041932543,0.7392183288409704,0.9117647058823528,0.8662131519274376,0.7088122605363985,0.1428571428571428,0.4996028594122319,0.7194244604316546,0.6138535031847133,0.5277777777777778,0.0919674039580908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002835787640017,0.0053419020009325,0.0079440769449291,0.0107248408031443,0.0134005734388026,0.0160326557203497,0.0187752273005259,0.0213923391747211,0.0241472337468576,0.0268688480978983,0.0294714405754923,0.0322103836915686,0.03470080197409,0.0372109305821544,0.0398143372872614,0.0420829674019734,0.044610704085434,0.0469171124103329,0.0494998078181648,0.0520052473763118,0.0692332578453574,0.0855786126683959,0.1006049295996141,0.1152843751313632,0.1298835432365495,0.1486010844634231,0.1631407131046763,0.1764530741583548,0.1899542111835715,0.2015673409877893,0.2160590857216683,0.22947769267385,0.2424848610039029,0.2536071881421888,0.264085553025052,0.274866558880202,0.2845398773006135,0.2943352523162724,0.3034482758620689,0.3118741058655221,0.3190477842939931,0.3261934548515708,0.3317635365391897,0.3371388183429968,0.3427645080205462,0.3482866504077058,0.3525352535253525,0.3568457340575746,0.3607540037026968,0.3635284497085125,0.361601313788044,0.359140494958249,0.3575796860468393,0.3551899136821711,0.3540938759125173,0.3516443137975381,0.3485401748312546,0.34842132844229,0.3493879496739704,0.3502279526998147,0.3512745226384395,0.3523662856127466,0.3529547214837453,0.3537404306755607,0.3547015731956286,0.3561618846584838,0.3572444798543137,0.3639895967160718,0.3711776642642222,0.3741035698720235,0.3789167310928191,0.3820702108449731,0.3870070778564206,0.3921988527724665,0.3955047691000094,0.4031320441333491,0.4094584286803966,0.4074074074074074,0.4095951192457016,0.417916186082276,0.0,2.6027994672002177,65.03627600747004,195.4573957086122,279.53046646516054,CHI_public_implementation,51 +100000,95846,52131,491.0585731277257,6760,68.99609790705924,5278,54.36846608100495,2051,20.95027439851428,77.37299817448195,79.67543630771023,63.35320242165369,65.05758075295614,77.1059059643399,79.41156940423923,63.25141239174885,64.9601766522986,0.267092210142053,263.8669034709977,0.1017900299048406,97.4041006575419,212.5563,148.82313195848877,221768.56624167936,155273.1798494343,397.55308,256.18069731137166,414110.3854099285,266610.8729747425,463.93062,224.8299291035863,480315.7878263047,231655.8022466103,3756.73894,1763.6536089323797,3871431.6716399225,1792288.181766805,1241.29794,567.6339766003538,1279813.9515472737,577016.1639032516,2000.17944,866.9917395636224,2044669.720176116,866737.0008905525,0.4331,100000,0,966165,10080.38937462179,0,0.0,0,0.0,32921,342.7581745717088,0,0.0,42063,435.1146631053982,1331155,0,47866,0,0,18996,0,0,91,0.9390063226425724,0,0.0,1,0.0104334035849174,0,0.0,0.0676,0.1560840452551374,0.3034023668639053,0.02051,0.3419827950923706,0.6580172049076294,24.025868738419497,4.189943992869557,0.3198181129215612,0.2559681697612732,0.2099280030314513,0.2142857142857142,11.352624273771818,6.178782143809436,22.25616317550118,13951.802065086587,60.63725621574635,16.409587067535913,19.16824438786306,12.71134453404492,12.34808022630246,0.5769230769230769,0.8031088082901554,0.7103080568720379,0.5632183908045977,0.111913357400722,0.7187902187902188,0.9080459770114944,0.8583509513742071,0.7208480565371025,0.1195652173913043,0.5177228786251342,0.7370325693606755,0.6526748971193416,0.5106132075471698,0.109375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030484099655661,0.0057060618038452,0.0086120325005325,0.0113315598156083,0.0140800683162881,0.0168668566775244,0.0192736946174309,0.0217167233056771,0.0245532293167397,0.0270632533202365,0.0295784027457609,0.0322262919757456,0.0351574944761317,0.0375391139657444,0.0398754664852271,0.0425268245329588,0.0448502405462728,0.0470777202072538,0.0493483566124928,0.0516798285315936,0.0682600262779202,0.0846988253981524,0.1000073334520654,0.1142254053599932,0.1289153834811366,0.1472865760255232,0.1616222631991691,0.1754210615855733,0.1882699575122232,0.1999935693386064,0.2133722307145779,0.2263885735292527,0.239780387040661,0.2520479924751999,0.2623201646724713,0.2745988830777413,0.2843557460487543,0.2941779048562487,0.303390426896403,0.3118061522598385,0.3192902859920603,0.3265659758810443,0.3337952927519751,0.3397513517401782,0.3451384417256922,0.3499408196478769,0.3538949241313636,0.358129879392249,0.3623836561146976,0.3657318072480241,0.3639821421345814,0.3625094794898311,0.3604422916696086,0.3581650685129928,0.3564144173651535,0.3537838584005644,0.3510933510933511,0.3514908445379532,0.3524623803009576,0.3534220600336303,0.3545827941259213,0.3558440016620827,0.3578122051948596,0.359077500670421,0.3591300799347079,0.3600052076552532,0.3584722539392555,0.3604673132636352,0.3640165893434556,0.3682354805482925,0.3728890297460044,0.3769979887795067,0.3791519879214897,0.3787890356570207,0.3852621634388285,0.3845608227922922,0.3834459459459459,0.3830703012912482,0.3799553322166387,0.3835564053537285,0.0,2.682060353449675,67.99975850609832,196.43038071633535,273.8623096708458,CHI_public_implementation,52 +100000,95792,52439,494.842993151829,6689,68.70093535994656,5364,55.42216469016201,2050,21.024720227158845,77.39816222968327,79.72699521570928,63.35848721039546,65.07942753898355,77.14329990549972,79.47256632494617,63.26398663555611,64.98718636060475,0.2548623241835486,254.42889076310848,0.0945005748393512,92.2411783787993,212.39482,148.62170702384566,221725.0083514281,155150.43743093958,399.92655,257.4226081769681,416926.1107399365,268162.18283047446,471.40033,228.14040691003305,487988.3288792384,234984.79615494888,3736.00115,1719.4799477003232,3862664.4709370304,1757560.493256559,1247.7995,560.1736198737124,1288008.0800066811,570184.3103775975,1992.75522,835.4238421891505,2046299.0020043429,845210.6554003953,0.4341,100000,0,965431,10078.409470519458,0,0.0,0,0.0,33104,344.987055286454,0,0.0,42748,442.28119258393184,1331210,0,47855,0,0,18684,0,0,71,0.7203106731251043,0,0.0,1,0.0104392851177551,0,0.0,0.06689,0.1540889196037779,0.3064733143967708,0.0205,0.3447342169018099,0.6552657830981901,23.98208659638487,4.140689550557871,0.3150633855331842,0.2682699478001491,0.2050708426547352,0.2115958240119314,11.272229887671832,6.053951788121765,21.82605404688751,13997.348377008668,61.4455663747236,17.728975150243883,19.142242869208232,12.487166808994386,12.08718154627712,0.5768083519761372,0.7963863794301599,0.7017751479289941,0.5594713656387665,0.1154545454545454,0.7517915309446254,0.9163822525597268,0.8930131004366813,0.7004048582995951,0.1434426229508196,0.5066597022721337,0.7139507620164126,0.6306818181818182,0.5202702702702703,0.1074766355140186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027040165279212,0.0055942922004215,0.0083086474861015,0.0109269640100739,0.0137243938392721,0.016375923626519,0.0189942426249554,0.0214769620046524,0.0240194525894216,0.026488643339472,0.0291366574803552,0.0317082431170537,0.0344069224919326,0.0368773157678056,0.0391871829766175,0.0416830190238159,0.044389961310078,0.0470023433773667,0.0492159328269024,0.0515354416802907,0.0689385323302622,0.08537006243529,0.1006552392933899,0.1157924605635135,0.1294512027998566,0.14753075979874,0.1620265784254457,0.1757826632898461,0.1883650888585099,0.2002895287115972,0.215281218361588,0.229465463906375,0.2421713714496816,0.2537993422849589,0.2641986436132209,0.2757552285050348,0.2857063199098908,0.2958847412639321,0.3045451451133449,0.3139466962925634,0.321607807766137,0.3282435608142077,0.3345646125614159,0.3396785059276219,0.3461781350950912,0.3514528903834547,0.3561582147056616,0.3605896418396418,0.3649114173228346,0.3677696854549293,0.3650530682614083,0.3617513105934477,0.3603517276365481,0.3582335350967164,0.3562672523819418,0.3539047444250711,0.3503234070817453,0.3500901787178226,0.3513148676588691,0.3516509013028734,0.3527110012731221,0.3535987021722787,0.3544940289126335,0.3561591857688101,0.3574644379520092,0.360436987904799,0.3614017181253721,0.3660750618211412,0.3721943398856824,0.3764784734269042,0.3821551880792295,0.3852649356132573,0.3893120239730303,0.3920704845814978,0.3944652908067542,0.3971377459749552,0.3994191378783246,0.4030062969733902,0.4130737134909596,0.4132516277288395,0.0,2.21062560053566,67.7054289212075,205.76146534362604,275.8377164874924,CHI_public_implementation,53 +100000,95879,51976,491.8386716590703,6783,69.41040269506357,5352,55.25714702906789,2069,21.224668592705388,77.3584022892406,79.64060637191052,63.35300198276878,65.04151760355931,77.09487476661376,79.37749139979756,63.25554372667404,64.94655915776225,0.2635275226268447,263.11497211295887,0.0974582560947396,94.9584457970616,213.41166,149.30582036751215,222584.36153902317,155723.172297909,398.35062,255.8522973784628,414918.82476871886,266295.7450311985,466.2079,225.18011766629093,482397.4905870941,231887.98033471807,3807.54804,1759.547758052193,3934980.3502331055,1799263.5730188582,1258.35145,567.564826994062,1300251.7443861533,579774.2435716492,2013.97006,845.3974132851407,2068314.4797088,854919.0928396179,0.4322,100000,0,970053,10117.470979046506,0,0.0,0,0.0,32946,343.03653563345466,0,0.0,42307,437.4263394486801,1328202,0,47818,0,0,18815,0,0,79,0.8239551935251723,0,0.0,0,0.0,0,0.0,0.06783,0.156941230911615,0.3050272740675217,0.02069,0.3479724989476638,0.6520275010523362,24.023317853337545,4.135097200015,0.3174514200298953,0.2554185351270553,0.2122571001494768,0.2148729446935725,11.348410612710165,6.185576967916242,22.097352260281795,13954.179063336884,61.51303966201579,16.816858797381403,19.386020438946613,12.919759602010451,12.39040082367732,0.5833333333333334,0.8002926115581566,0.7086521483225426,0.6017391304347826,0.1161971830985915,0.764163372859025,0.9273422562141492,0.8637316561844863,0.7647058823529411,0.1834061135371179,0.5117370892018779,0.7215639810426541,0.6481178396072013,0.5470383275261324,0.0992282249173098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024197875851734,0.0050257875591492,0.0079520443042468,0.0104478672745179,0.0130514332181337,0.0156830417569891,0.0180223317983617,0.0208067724004283,0.0232073757185301,0.0257823122297304,0.0281204254404373,0.0306022021283139,0.0328550741010814,0.0352319134272165,0.0374797761724667,0.0401730403898571,0.0425562727573651,0.0449688565535967,0.0471784327164724,0.0494491203612189,0.0668571011561597,0.0832793530726957,0.0990145668178152,0.1135284976269477,0.1270170634084685,0.1451267046234776,0.1608227103665321,0.1748062139143194,0.1876634396780838,0.1995926243567753,0.2144233979087473,0.2283869153217082,0.241108997010057,0.2528919113948962,0.2641314388774028,0.2755196918376835,0.2850114901497066,0.2949353848230253,0.3053888138708909,0.3136308944021085,0.3215620912763174,0.3292885560496139,0.3365752532132914,0.3421586151465349,0.3470832167917209,0.3524512283905677,0.3566530868066437,0.360609344126458,0.36478959190828,0.3679078014184397,0.3661087866108786,0.3640576511964692,0.3619333982693149,0.3599350893969689,0.3576314887401821,0.3547678313512185,0.3515303610286059,0.3521623134942854,0.3526448362720403,0.3527328659321791,0.3534723917165762,0.35402963784769,0.3554373870276178,0.3557847533632287,0.3567207737391766,0.3583537634969485,0.3587821079339738,0.3643790849673202,0.3671054941197121,0.3701332272817657,0.373811265544989,0.3793213487926816,0.3819734345351043,0.3867633446467139,0.3908551750526114,0.3963039014373716,0.4072454715802623,0.4124744376278119,0.4161593801881572,0.4119677790563866,0.0,2.196809759477073,66.89247215078738,205.2573397012152,281.2078750662962,CHI_public_implementation,54 +100000,95733,52352,494.7823634483407,6731,69.10887572728318,5348,55.278744006768825,2090,21.476397898321373,77.38965647392791,79.75749381566317,63.34469261111818,65.09457106809123,77.12828528433421,79.49565574633347,63.24736116220929,64.9994862001918,0.261371189593703,261.83806932969844,0.0973314489088963,95.08486789943048,212.50108,148.6574676434789,221972.65310812363,155283.41078152662,396.95103,254.72831266216767,414080.108217647,265518.25667446724,463.84232,223.7155465566331,480737.34240021725,230809.0540500074,3766.34239,1738.4662936558468,3895786.0090042097,1777523.6581490678,1234.70001,553.1656637500531,1276314.2281136075,564402.6132577617,2039.1237,862.2954269617175,2096746.2003697783,871359.9897637555,0.43376,100000,0,965914,10089.666050369256,0,0.0,0,0.0,32836,342.4002172709515,0,0.0,42091,435.9416293232218,1336623,0,48020,0,0,19079,0,0,63,0.658080285794867,0,0.0,1,0.0104457188221407,0,0.0,0.06731,0.1551779786056805,0.3105036398752043,0.0209,0.3475177304964539,0.6524822695035462,24.33779309029813,4.14897146030977,0.3143231114435303,0.2582273747195213,0.212789827973074,0.2146596858638743,11.100538751465074,5.802838155770805,22.241893476666675,14052.853267102042,60.9940212793803,16.859986813830655,19.03939261761922,12.629477230585502,12.465164617344923,0.5637621540762902,0.7986965966690803,0.6734086853063652,0.5609756097560976,0.1195079086115993,0.7315789473684211,0.9057591623036648,0.8386363636363636,0.757201646090535,0.1515151515151515,0.4971264367816091,0.7227722772277227,0.6148267526188558,0.5082872928176796,0.1098398169336384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027651730005672,0.0059102014334519,0.0086260262434163,0.0111750005079545,0.0136714577802191,0.0160889576799315,0.0186478522853559,0.0212023152070722,0.02389811104751,0.0265218592939105,0.0287008753766989,0.0312503208188323,0.0337085582112567,0.0362151698004407,0.0385242181698159,0.0409574303165597,0.0434080271714368,0.0457851325413705,0.0484861713074116,0.0509617187988413,0.0689705575276675,0.0855426352532367,0.1009201263206488,0.1156710922212637,0.1297325808323224,0.14746261079263,0.1619754920163386,0.1757675730325121,0.1883403282820192,0.2006370109814687,0.2153778237181557,0.2298946320777169,0.2428529485325301,0.2545522151379608,0.2655962848433493,0.2771950422560172,0.2877748401994578,0.2978256959122183,0.3061844911293616,0.3139030393223055,0.3214595601420688,0.3285697579230499,0.3361950711886854,0.3424024333289425,0.3485856501153332,0.354086082436128,0.3592188066909382,0.3628544892428657,0.3668513436545332,0.3711639443755442,0.3694183511425726,0.3669895165506425,0.3642980838272769,0.3619227824881198,0.3598878271707519,0.3566555511365374,0.3544083710049632,0.3540875147386348,0.353320405524937,0.3534557869094401,0.3548320933788294,0.3564284307934632,0.3583842767426818,0.3586789383370846,0.3587857587809669,0.3600249746351361,0.3619469780922342,0.36613430583501,0.3691679284481848,0.3731408748355198,0.3778582229757595,0.3822851321644952,0.3846348723795047,0.3849537388138935,0.3896188612431274,0.392575132586918,0.3995447647951441,0.4015242679502607,0.4039141070943191,0.4055996973136587,0.0,2.3234038799721697,66.6920828472908,199.04311671321432,282.83443470037093,CHI_public_implementation,55 +100000,95743,52291,494.5217927159166,6743,68.89276500631901,5326,54.85518523547414,2004,20.471470499148765,77.34687979821054,79.70696198157218,63.33382307926016,65.08151700432455,77.09116698453248,79.45347205642165,63.23742502763806,64.9888457519659,0.2557128136780591,253.48992515053223,0.0963980516220956,92.67125235865592,211.86638,148.32792273810486,221286.54836384903,154922.9946190373,399.7334,257.503807791998,416731.8446257168,268178.3292689784,468.75792,227.2170187788622,484430.3604441056,233393.47753225287,3743.9497,1738.5365730947954,3862594.090429588,1768014.7197129752,1213.19859,547.497562624911,1250561.8896420626,555261.9435623602,1956.42394,834.8804761858128,2000929.864324285,837144.9116388408,0.43238,100000,0,963029,10058.479471084049,0,0.0,0,0.0,33123,345.14272583896474,0,0.0,42509,438.7892587447647,1333796,0,47994,0,0,18838,0,0,70,0.7311239463981701,0,0.0,0,0.0,0,0.0,0.06743,0.1559507840325639,0.297197093281922,0.02004,0.3405074116305587,0.6594925883694412,24.163565739565662,4.157326296947588,0.3231318062335712,0.2641757416447615,0.2110401802478407,0.2016522718738265,11.302427408727086,5.977545619250922,21.513880058318733,13952.965438114514,60.92219895404818,17.260582234047654,19.38956657435788,11.912411609662534,12.35963853598011,0.5773563650018776,0.8052594171997157,0.6879721092388147,0.5810055865921788,0.1192170818505338,0.7323943661971831,0.9086294416243654,0.8197424892703863,0.7290836653386454,0.1653543307086614,0.5130180658873539,0.7303921568627451,0.6390438247011953,0.5358444714459295,0.1057471264367816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027968059665193,0.0054151624548736,0.0082030456852791,0.0112909946441456,0.0140392284528363,0.0166391723182827,0.0193291874808849,0.0220906492445896,0.0245343583243033,0.0270713027808494,0.0296502865579216,0.0320556918875073,0.0345632545607864,0.0370641256760236,0.0393729229880075,0.041525388686735,0.0439280499549535,0.0461755521666511,0.0484838404524049,0.050557644045028,0.0678065176092357,0.084256556716777,0.0996256566736921,0.115023597548798,0.1294742611408575,0.1479947159841479,0.1623681560396459,0.1762579218238271,0.1894870481799172,0.2014697532914117,0.216083916083916,0.2293017725897103,0.2420844470521763,0.2535665130098529,0.2638287585433927,0.2751350274482025,0.2850833166030918,0.2947195610129087,0.303792582838591,0.3117137554134873,0.3188873841025106,0.3252917559199822,0.331482227011154,0.3375707569797563,0.3430341309364751,0.3482682623524052,0.3538448055687708,0.3581890134500617,0.3617150775048238,0.3657288327859338,0.3632924514331103,0.3617595243338471,0.3611686026047166,0.3586907872890287,0.3561979421852033,0.3529456794659807,0.3498045298428325,0.3501412522173313,0.3516113598304911,0.3537645735506793,0.3547401757772239,0.3559814858770472,0.355550896320369,0.3561846319231372,0.3589966023277669,0.3601926752009214,0.3600034351472819,0.3634809044271328,0.3670796710085072,0.3681685523527765,0.3731226748725486,0.378560359108641,0.3824630416851722,0.3870967741935484,0.3904931558222388,0.3925987427351441,0.3927311761999693,0.3969230769230769,0.4021891664327813,0.4059913283405597,0.0,3.0259987804363204,68.02623617625196,194.4681212704836,278.9384972421775,CHI_public_implementation,56 +100000,95752,52286,495.613668643997,6680,68.24922717018966,5275,54.47405798312307,2028,20.824630294928568,77.36211040614715,79.72430388340463,63.32787542470121,65.07575381451635,77.10797078361593,79.47121628136316,63.23240853639633,64.98339904438,0.2541396225312269,253.0876020414752,0.0954668883048839,92.35477013635318,212.56642,148.78126144071751,221996.8460188821,155381.8838674049,397.32574,255.22567448675213,414344.6298771827,265940.3505793635,465.45027,224.8968608228704,482405.1194753112,232018.5131000371,3712.28248,1713.7214411350724,3835898.769738491,1748778.1474073443,1245.07064,553.4767840363293,1284905.453671986,562680.0982607576,1966.93094,829.288038039965,2021931.782103768,837475.2260348853,0.43347,100000,0,966211,10090.765728131006,0,0.0,0,0.0,32870,342.645584426435,0,0.0,42135,436.2937588770992,1332665,0,47871,0,0,18703,0,0,79,0.8250480407719943,0,0.0,3,0.0313309382571643,0,0.0,0.0668,0.1541052437308233,0.3035928143712574,0.02028,0.3453659934106861,0.6546340065893138,23.769382452658668,4.174723985899909,0.3186729857819905,0.2564928909952607,0.204739336492891,0.2200947867298578,11.30247154893716,6.085010617795464,21.41363496367208,13953.965079289495,60.24916515580194,16.569245757212865,19.03389814846824,12.82252873445513,11.82349251566571,0.5740284360189574,0.7997043606799704,0.6918500892325996,0.5719207579672696,0.1101851851851851,0.7240215924426451,0.9183673469387756,0.8426966292134831,0.6977611940298507,0.0695652173913043,0.5154231479040338,0.7211302211302212,0.6375404530744336,0.5341545352743561,0.1211764705882352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026848221431972,0.0052325227655302,0.0080397929144249,0.0108517837365495,0.0132953562891002,0.0154092149753534,0.018079660636714,0.0208996977864902,0.0233126450649788,0.0258151060866715,0.0281503814915087,0.0304866774862871,0.0327465766813098,0.0352016158118733,0.0376001155973908,0.0400632741258452,0.0424458941700321,0.0448117367530944,0.0471101871101871,0.0493942897617782,0.0666089062402137,0.0832871266412094,0.0988201982067012,0.1133478475793813,0.1285218510353266,0.146320309690521,0.1615545393780569,0.1758392691730284,0.1890829041013913,0.2007056981370856,0.2154537228541882,0.229474481788169,0.2422689386520423,0.2536789242770708,0.264160290636869,0.2745458777111572,0.2852004512806764,0.2959648826608138,0.3047115308218789,0.3126568210721692,0.3197809069433507,0.3276027525512592,0.3341977501480165,0.340711946154123,0.3460066343454963,0.3510563510563511,0.3558205365865878,0.3609371021135727,0.3650047280405186,0.3687955433519907,0.3672327806982073,0.3653401266868631,0.3634891123693625,0.3607104662253952,0.3591628791254493,0.3562470330612682,0.3525855110084047,0.352462512714506,0.3528528784648188,0.3528992480131152,0.3538651408055649,0.3543932230102443,0.3554677702533233,0.3548365487674169,0.356146626017236,0.3557261842790213,0.3568808122173876,0.3598895928737218,0.3641895436265081,0.3685438582614885,0.3730342170858826,0.3746703238738263,0.3787460815047022,0.3841684274071838,0.3867933314706156,0.3891776937618147,0.3992401215805471,0.3957049115132233,0.3914223669923996,0.389082462253194,0.0,2.364250975174304,65.01110844124902,199.6004589830733,278.7044822480884,CHI_public_implementation,57 +100000,95735,52239,493.6856948869275,6708,68.32401942863112,5340,54.91199665743981,2094,21.32971222645845,77.32840490063373,79.69020136181608,63.31625382636724,65.06540922600247,77.06663054647144,79.43416626565812,63.21745245466364,64.97254544750952,0.2617743541622843,256.0350961579587,0.098801371703594,92.8637784929549,212.94812,149.06073445735902,222434.7417349977,155701.16932925157,399.07519,256.58564970917035,415989.0635608712,267152.76116201514,467.8239,226.95093083191583,483671.4681151094,233193.43717103484,3743.3958,1743.703563782101,3850727.727581345,1762042.478396618,1254.18554,561.827460858396,1287183.5587820546,563999.7916275908,2040.39698,867.6325195592949,2079592.52102157,860355.0123189356,0.43329,100000,0,967946,10110.67007886353,0,0.0,0,0.0,32979,343.56296025487023,0,0.0,42462,438.4812242126704,1328063,0,47793,0,0,18854,0,0,82,0.8565310492505354,0,0.0,0,0.0,0,0.0,0.06708,0.1548154815481548,0.31216457960644,0.02094,0.3447001989201477,0.6552998010798522,23.89855994628435,4.232556000413677,0.3226591760299625,0.2586142322097378,0.2131086142322097,0.2056179775280898,11.417333342518706,6.172680663562539,22.452556716470127,14004.567170820392,61.37101079695759,16.793832837117137,19.737958535382,12.389016531635908,12.450202892822553,0.5825842696629213,0.7958001448225923,0.7080673244341266,0.6074681238615665,0.109841827768014,0.7570153061224489,0.9122486288848264,0.896,0.7418181818181818,0.1463414634146341,0.5100742311770944,0.7194244604316546,0.6312346688470973,0.5625759416767923,0.0997757847533632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027157666467375,0.0054057891640804,0.0082849368476627,0.0108132279111364,0.0130312709812618,0.015625,0.0182227932778593,0.0211440881292944,0.0235439647505034,0.0260817049327996,0.0286712999979498,0.0313164190444898,0.0337728048705238,0.0363080155738211,0.0388322463469,0.041346233358141,0.0435592729079541,0.0461409221961792,0.0484073785398804,0.0509743878178087,0.0682985386221294,0.0844193879045248,0.1001331753405408,0.1151222076215505,0.1295381016113224,0.1478678196156367,0.1627601128481428,0.1759433711214008,0.1890416519779081,0.2013363793343844,0.2159101927365574,0.2304362412475785,0.2428908792129634,0.2551089620164537,0.2651398370402995,0.2763090832539278,0.2876472229974881,0.2970736266087171,0.3058820857042261,0.31415143004528,0.3213694411318614,0.3288009454826291,0.3358246079499692,0.3417101710171017,0.3476584826043072,0.3520268436505391,0.3570398063002596,0.361511983681795,0.3656004671381301,0.368969754627978,0.3667098375694781,0.3636476392602188,0.3614774235450258,0.3592162764448818,0.3574917354141227,0.3537693843083064,0.3511553354916524,0.3511309533615591,0.3499965725253633,0.3502355322311977,0.3511093591620678,0.3528713341512645,0.3540663848311079,0.3559033608741407,0.3577519753324339,0.3581345581710945,0.3586311222742322,0.363439101858549,0.369135282979171,0.3715805772819311,0.3755975415433644,0.3777425323817076,0.3832039078156312,0.3848310350053038,0.3886757136172204,0.396968984962406,0.4007297050775311,0.3997555012224938,0.4047619047619047,0.4088766692851532,0.0,3.2633032754224907,67.99993019025774,198.46572867548937,278.7024884260176,CHI_public_implementation,58 +100000,95735,52219,492.9754008460856,6602,67.8017443986003,5270,54.51506763461639,2057,21.12080221444613,77.31464774318667,79.68023775680439,63.30648041847581,65.05589006494367,77.05278860060999,79.41930902614878,63.207749186429176,64.96026296687748,0.2618591425766823,260.92873065560696,0.0987312320466315,95.6270980661884,210.8271,147.51044015973775,220219.45996761892,154082.0391285713,395.44506,254.3941318630795,412561.6023397922,265226.84688262345,469.21758,226.8864117715173,487097.72810361936,234653.1202531144,3718.24626,1730.9271231603354,3848059.1528699016,1772465.2170481917,1235.22814,559.5172667013505,1276720.3217214183,571001.6285533451,2005.94528,855.4916648175302,2061558.2806706007,863385.6427426866,0.43206,100000,0,958305,10009.975453073588,0,0.0,0,0.0,32655,340.55465608189274,0,0.0,42550,441.3850733796417,1338267,0,48134,0,0,18609,0,0,72,0.7520760432443725,0,0.0,0,0.0,0,0.0,0.06602,0.1528028514558163,0.3115722508330809,0.02057,0.3487060864536649,0.6512939135463351,23.774900153532467,4.175434323926739,0.3161290322580645,0.2586337760910815,0.2134724857685009,0.2117647058823529,11.288934749089124,6.077733398790696,22.106668054587505,14019.658537714482,60.77944186798482,16.734772916536162,19.087572939839824,12.584905501952546,12.372190509656294,0.5817836812144213,0.8004402054292002,0.7166866746698679,0.5878136200716846,0.1111111111111111,0.7441709844559585,0.8924731182795699,0.8789808917197452,0.7316176470588235,0.1563786008230452,0.5144927536231884,0.7366459627329193,0.6527196652719666,0.5414691943127962,0.0986394557823129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029782707795167,0.0055357848952155,0.0081710956373454,0.0108830403414287,0.0133374027163131,0.0159745710909165,0.0185980555187153,0.0210226460558289,0.0237053544047594,0.0260843749680087,0.0288315629742033,0.0314300089330636,0.0342429821944721,0.0369603297269448,0.0392245917545779,0.0416735588454222,0.0442180040800687,0.0467167524489457,0.049049069866589,0.0513840992675786,0.0684312190028713,0.0846059641814166,0.1002318530408418,0.1153939189970867,0.1292935258323402,0.1470768709929963,0.1621128165934229,0.1766747952761775,0.1892172165323184,0.2006718756708023,0.2154652630216479,0.2290402288885035,0.2419933091416304,0.2532501699077017,0.2640412885011965,0.2758187936606657,0.2869001935491089,0.2971942372996085,0.3060599854360095,0.3145552312889215,0.3218168107198793,0.3299058517311322,0.3369236426614156,0.3423708046032241,0.3477081077134617,0.3528656602189826,0.3577252063269421,0.3622164515389903,0.3655337606007639,0.3689730228876723,0.367226313734466,0.3652525697301611,0.3623502583088163,0.3601750610258113,0.3573446747761948,0.354522740162791,0.3511302748803145,0.3510956830744933,0.3514013251382492,0.3529516930668288,0.3530714929408231,0.3536153282793294,0.3553177229506136,0.3559879235155987,0.3572064592207542,0.3578541264793285,0.359991999542831,0.3657477341389728,0.3695675049984215,0.372927847346452,0.377421418128655,0.3807950548864968,0.3853531504065041,0.3874510406266799,0.3896522315929119,0.3930911256700417,0.3938882063882064,0.3961332784862196,0.3953876076687969,0.4004674717569146,0.0,2.0839257118045564,68.25501162407791,199.7202674102016,272.98195149491136,CHI_public_implementation,59 +100000,95806,52129,493.85215957246936,6606,67.68887126067261,5201,53.61877126693527,2036,20.8233304803457,77.3504688262772,79.68313203536147,63.33176974345843,65.06030704946784,77.09286636187778,79.42765337423914,63.23573539245525,64.96778595802756,0.2576024643994117,255.47866112232495,0.0960343510031762,92.52109144027544,210.8161,147.6761797704843,220044.77798885247,154140.84688900938,396.86133,255.55857673483428,413577.04110389744,266088.6236089956,468.98978,227.1808061836168,485151.1491973363,233790.4624512946,3672.01393,1716.2182636381474,3793307.3293948183,1751894.822493526,1254.04957,566.9381584741966,1293637.9454313926,576447.5695407351,1982.27976,839.2526498484336,2031067.281798635,844026.1486086163,0.43088,100000,0,958255,10002.035363129658,0,0.0,0,0.0,32818,341.8783792246832,0,0.0,42388,438.1771496565977,1339505,0,48180,0,0,18639,0,0,89,0.9080850886165792,0,0.0,0,0.0,0,0.0,0.06606,0.1533141477905681,0.3082046624280957,0.02036,0.3316960416064721,0.6683039583935279,23.919246043698827,4.158792459070586,0.312824456835224,0.2566814074216497,0.2084214574120361,0.2220726783310901,11.25601009062466,6.112766032815228,21.85332937557233,13844.535343924608,60.1752837313532,16.47398974253717,18.505520768874355,13.065176773421278,12.13059644652038,0.58123437800423,0.799250936329588,0.7019053472649047,0.5896103896103896,0.1226937269372693,0.7356770833333334,0.9005424954792043,0.8574561403508771,0.7230215827338129,0.1606425702811245,0.5165075034106412,0.7276214833759591,0.64133219470538,0.5473204104903079,0.111377245508982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026237413132888,0.005100230169433,0.0076727900131939,0.0102821494975767,0.012714364180076,0.015237008820354,0.0179287134771301,0.020024916265011,0.02287227516257,0.0252953340294412,0.0276037447576469,0.0304872413616059,0.0327948087740767,0.0353347064881565,0.0379319946783824,0.039986361241127,0.0424615703120956,0.0444442139545497,0.0470558892606987,0.0493555976597472,0.066325891925725,0.083110283969721,0.0985077129443326,0.1131797932251828,0.1279922454484153,0.145506811384365,0.1602409127539551,0.1735513451984553,0.1863789716433208,0.1976467562528129,0.2122395833333333,0.2264048952409781,0.240051710464851,0.2511558766627682,0.2616606529965678,0.2727474183397598,0.2838804737294473,0.2935039503004929,0.302409830108113,0.3106857286869658,0.3178072043707751,0.3244615510605192,0.3307016713223805,0.3365935514802828,0.3416659574209393,0.3467533910124286,0.351707451609668,0.3570845763532981,0.3615103247898724,0.3666146645865835,0.3653680004319887,0.3626980184357233,0.3601197621704068,0.3586501556955608,0.3564494997617913,0.3543159671602854,0.3508056194936106,0.3520301519116509,0.352927079767203,0.3531390937074952,0.3530393683065438,0.3536961594747458,0.3540041928721174,0.3549535430426508,0.3559624186942905,0.3570403236330419,0.3594747037374658,0.3625675845592858,0.3647479241845636,0.3684043355699368,0.3706360375902301,0.37221722806832,0.3721163490471414,0.3748959673148218,0.3775883069427527,0.3789002708112563,0.3807129798903108,0.3872460269563468,0.3856173677069199,0.3917525773195876,0.0,2.6376906421738324,67.43109264369987,200.21116782760524,264.6768836647464,CHI_public_implementation,60 +100000,95709,51882,490.7375481929599,6596,67.53805807186367,5154,53.1715930581241,1989,20.342914459455223,77.30949638025908,79.67018836523569,63.31695901961641,65.05975678040585,77.05174722223393,79.41367786605609,63.21979347842343,64.96608901772633,0.2577491580251489,256.5104991795977,0.0971655411929788,93.66776267951592,213.30342,149.23890405079723,222866.62696298157,155929.85408979014,397.50958,255.5753259649393,414637.7874599045,266341.1384828376,459.4015,221.88705015362143,475463.88531904,228430.68859015868,3683.90846,1698.607902881787,3802595.3463101694,1728368.064008306,1180.95419,527.1006472259666,1217208.3921052355,534040.0978235767,1950.37032,833.3726632824353,1996477.071121838,834709.6650902667,0.43096,100000,0,969561,10130.30122559007,0,0.0,0,0.0,33015,344.22050172919995,0,0.0,41735,431.5686090127365,1326230,0,47740,0,0,18860,0,0,61,0.6373486297004461,0,0.0,1,0.0104483381918105,0,0.0,0.06596,0.1530536476703174,0.3015463917525773,0.01989,0.338488220841162,0.661511779158838,24.12998279485935,4.257288783885398,0.3149010477299185,0.2553356616220411,0.2176949941792782,0.2120682964687621,11.104301289537991,5.706303940389311,21.32936997192528,13908.370660644308,59.02113738630174,16.110239261051138,18.4464565262413,12.135183636191888,12.329257962817422,0.562475746992627,0.7826747720364742,0.6925446703635243,0.5699908508691675,0.1087344028520499,0.7381596752368065,0.9245283018867924,0.8665207877461707,0.7276422764227642,0.1061224489795918,0.4918389553862894,0.6870229007633588,0.6243567753001715,0.5242030696576151,0.1094640820980615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025217488176137,0.0052408563782337,0.0080452073695316,0.010552937352726,0.013073755909114,0.0154304966054943,0.0178973653365948,0.0206498106505251,0.0232921793875965,0.0258110735850987,0.0282396113081449,0.0308851765527296,0.0334916913458374,0.0358386027064324,0.0382314721230997,0.0405223896018019,0.043013423582865,0.0455705129534753,0.0478838398536565,0.0501911597720667,0.0673677395100148,0.0836421109924846,0.0993748426617437,0.1136315833753996,0.1280426070449272,0.1455920461156063,0.1603616413935078,0.1736153993569405,0.1868182352375559,0.198676491092592,0.2137091994525803,0.2274194247097556,0.2409622816088826,0.2523290820515627,0.2622611377278484,0.2742423738398589,0.2847901140769376,0.2941030667658126,0.3039407299668197,0.3129034847320804,0.3203961084086171,0.3273825550495768,0.3334439047506219,0.338950097213221,0.345293388128298,0.3499481686247408,0.3550750043825599,0.3592098224520467,0.3631259562770675,0.3674125208283742,0.3656413232733604,0.3634283193404745,0.3606800434911535,0.3587008438146792,0.3569790301441677,0.3538608022605811,0.3503233289375427,0.3495017705674051,0.3488260414701494,0.3496951219512195,0.3514978172512419,0.3523938285350724,0.3531207884097035,0.354155899602274,0.3551634841114257,0.3555340212665654,0.3565624371895368,0.3618418974828664,0.3664552501761804,0.3700127165792402,0.3746752358813072,0.3789176821156814,0.3818870306090249,0.384010384850336,0.3882853094000945,0.3928019954863998,0.3965888137676706,0.3976523887973641,0.4002223457476376,0.4055835595191935,0.0,2.6395898010028014,64.58894206354636,188.07386132432973,277.9588168510441,CHI_public_implementation,61 +100000,95722,52008,491.3708447378869,6627,67.64380184283655,5245,54.10459455506572,1994,20.42372704289505,77.40440741590693,79.76234574725096,63.3594678928421,65.09957152573476,77.14881957936873,79.50902719287166,63.262963073529534,65.00679586670374,0.2555878365381971,253.31855437930528,0.0965048193125639,92.7756590310196,210.44496,147.26268446868073,219850.1493909446,153844.13663387805,395.68117,254.50264521888656,412666.33584755857,265178.27168141765,465.42718,225.75626467050776,482088.2137857546,232621.2868598356,3692.40555,1723.037610316294,3811316.092434341,1754138.659835355,1221.18753,558.9200462334663,1255619.8679509412,563765.7361357651,1940.57664,827.9289807977453,1988609.995612294,831044.3339100198,0.43115,100000,0,956568,9993.188608679302,0,0.0,0,0.0,32722,341.10235891435616,0,0.0,42186,436.5245189193707,1346032,0,48345,0,0,18886,0,0,71,0.7417312634504085,0,0.0,2,0.0208938384070537,0,0.0,0.06627,0.1537052070045227,0.300890297268749,0.01994,0.35036812472932,0.6496318752706799,24.333200196305715,4.14065828638806,0.3313632030505243,0.2537654909437559,0.204003813155386,0.2108674928503336,11.417016047459144,6.211397455244843,21.31163685749223,13915.678267262658,59.989691870612816,16.056873615194526,19.876571145453607,12.227146182842812,11.829100927121868,0.5759771210676835,0.782870022539444,0.6990794016110472,0.581374321880651,0.1130841121495327,0.7442010309278351,0.9152542372881356,0.8677354709418837,0.7537878787878788,0.1434108527131783,0.5052802599512591,0.695,0.6311541565778854,0.5273159144893111,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002926078548503,0.0057866734228528,0.0083287682350315,0.0111410145737063,0.0137260683456529,0.0162052117263843,0.0187006369426751,0.0214177117027029,0.0237555174104953,0.0263596827833205,0.0289430261040678,0.0313343528373343,0.0341622888630732,0.0366982871386047,0.0391155409727811,0.0415865533709607,0.0438889003956007,0.0461533673596414,0.0487538714169905,0.0510598406333003,0.0683775854328283,0.0849266898998461,0.0997922960725075,0.1147420328254949,0.1285248943190563,0.1470886825574755,0.1608505130027905,0.175250487132255,0.1878385742218803,0.2000900920225659,0.2151251090597701,0.2288661132696241,0.2410578303816196,0.2519575678040245,0.2620934019983273,0.2729950936416697,0.2837311550779463,0.2939172092709423,0.3023820326678766,0.3112622203905946,0.3186966873945306,0.3256650395870799,0.3323607583722166,0.3386849970113568,0.3436265361029643,0.3485440952240421,0.3527257729897268,0.3574414025281077,0.3614878405109442,0.365365114900902,0.3637621580955452,0.3618134622515828,0.3593396239681624,0.3567462320617293,0.355443915884942,0.3518580771346494,0.3485806410823797,0.3503586283693053,0.3501508462731595,0.3507465345829028,0.3517339525129204,0.3526386581216868,0.3535374691073598,0.3553898032559905,0.3552492555950437,0.3572061506385197,0.3589546939355205,0.3646848653900398,0.3702692294226797,0.3744062697910069,0.3765490943755958,0.3804272915230875,0.3883105480998369,0.3915484409377133,0.3919663708547408,0.3933074113349829,0.3999082428505888,0.3988311164852882,0.4001663893510815,0.397168698387731,0.0,2.679035991010273,67.65410146146442,191.41413056390388,273.23077152524496,CHI_public_implementation,62 +100000,95750,52096,492.8668407310705,6559,67.1958224543081,5158,53.30548302872063,2045,20.971279373368148,77.33232137485312,79.69862690021006,63.31916690730778,65.07129001624382,77.07947355015108,79.44495200489962,63.22628298312108,64.98024061754383,0.2528478247020445,253.6748953104393,0.092883924186701,91.04939869999384,214.09278,149.82312003387366,223595.59268929504,156473.23241135632,400.29969,257.2415349010368,417524.5535248042,268116.55864338053,465.34326,224.5352342500896,481852.87728459534,231307.52033700823,3682.45194,1681.9257121528628,3811188.731070496,1721866.2998985513,1234.26903,548.615276823125,1276520.689295039,560433.2186142297,1986.27158,826.7948080755057,2039956.553524804,836471.2617082313,0.43084,100000,0,973149,10163.436031331592,0,0.0,0,0.0,33172,345.8798955613577,0,0.0,42100,435.6657963446475,1323137,0,47547,0,0,18795,0,0,72,0.7519582245430809,0,0.0,1,0.010443864229765,0,0.0,0.06559,0.1522374895552873,0.3117853331300503,0.02045,0.3463336254747298,0.6536663745252702,24.190090033334027,4.240940918449954,0.3138813493602171,0.2611477316789453,0.2171384257464133,0.2078324932144242,11.458360258731645,6.2203945231181965,21.690286599342247,13885.464697111627,58.69648632793975,16.37748969768234,18.247310147550323,11.995003861813917,12.076682620893164,0.5649476541295075,0.7676317743132888,0.692402717726992,0.5867537313432836,0.1160714285714285,0.7426778242677824,0.8893058161350844,0.874384236453202,0.7730769230769231,0.1489361702127659,0.4965091299677766,0.687960687960688,0.6314921681780709,0.5270935960591133,0.1073446327683615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026956909481535,0.0052947083346012,0.0080212817805214,0.0107020896007805,0.0133270936762431,0.0159330080174407,0.0185200293709716,0.0211232376032425,0.0237002198251623,0.0262489762489762,0.0288373809548217,0.0310969662748318,0.0332963145771635,0.0357797598203802,0.0380194791795633,0.0404431903920291,0.0427534506145355,0.0453677767403257,0.0479174460655942,0.0503030681747172,0.0675393544615641,0.0835024796501286,0.0987865375942609,0.1138425950265496,0.1281802557911495,0.1459426298866136,0.1607355063237416,0.174599795640327,0.1868959256688204,0.1989191391715545,0.2132501831028391,0.2275437438455628,0.2404103479036574,0.2519059755203833,0.2624431899464087,0.2741547899848288,0.284494783239413,0.293609263698052,0.3023232059561235,0.3116438356164384,0.3195653180261087,0.3265432676557308,0.3328362977952924,0.3381951102588686,0.3436702864222724,0.3482713995193197,0.3534447155997747,0.3574535188340921,0.362254673502149,0.3651005117923284,0.3630025438443006,0.360405113456537,0.3588674461191717,0.3579135911251065,0.35506255757972,0.3517267784669576,0.3493253848714981,0.3504211753501584,0.3509616205054693,0.3515488227517953,0.3516995305164319,0.3529120247393252,0.3532527588018918,0.3535999640901338,0.3550210114476163,0.3565692762417933,0.3570939194975735,0.3617491863881955,0.3666337889248978,0.3695069774881043,0.3739472720615159,0.3785101822079314,0.3819188191881918,0.3861021629084215,0.3909039654200338,0.3960816711908415,0.3946650500151561,0.3911906677393403,0.3889345384826075,0.3983926521239954,0.0,2.2282518802425417,63.01276145521324,189.742849204205,279.9677000720614,CHI_public_implementation,63 +100000,95718,52497,496.0091100942352,6636,67.85557575377672,5243,54.11730291063331,1997,20.382791115568647,77.41699606751023,79.76956548141516,63.36600846061516,65.10026918892373,77.16056561190928,79.51594947738161,63.27036585312551,65.0082480014354,0.2564304556009489,253.616004033546,0.0956426074896512,92.02118748832788,211.9722,148.4026727025823,221453.74955598736,155040.54640752965,403.21911,259.5994633550626,420578.2924841722,270537.4672916905,469.84281,227.20520714984715,486412.90039491,233948.2760923179,3689.99208,1698.496514456906,3810391.78628889,1730162.9195070942,1222.96833,542.9660526342722,1262195.0834743727,551954.3325058803,1945.92648,822.586481186848,1988079.5461668647,823634.526757307,0.43305,100000,0,963510,10066.079525272153,0,0.0,0,0.0,33316,347.35368478238155,0,0.0,42424,438.8202845859713,1332527,0,47871,0,0,18873,0,0,99,1.0342882216511,0,0.0,0,0.0,0,0.0,0.06636,0.1532386560443366,0.3009342977697408,0.01997,0.3465389016018306,0.6534610983981693,24.3052937537597,4.196391951999365,0.3108907114247568,0.2702651153919512,0.20751478161358,0.211329391569712,11.47100491326625,6.136585457401364,21.140527542395464,14003.355941455158,59.69506743663588,17.207577639243716,18.3254832097545,12.32293033348631,11.839076254151372,0.5647530040053405,0.7642907551164432,0.6815950920245398,0.5812274368231047,0.1130514705882353,0.7270875763747454,0.8687615526802218,0.8385650224215246,0.749034749034749,0.145374449339207,0.5013262599469496,0.6997716894977168,0.6224662162162162,0.5300353356890459,0.1045296167247386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002904917103585,0.0055820644520763,0.008286676403765,0.0108246428172503,0.0134618513095819,0.0159408782752091,0.0188261915440127,0.0216574811185956,0.0242197559629652,0.0265586315552554,0.0291842151106192,0.0317641142481808,0.0343760601169855,0.0369401563288466,0.039438799195337,0.042160955648328,0.0445293411189795,0.0469631596415532,0.0491794759870711,0.0514933380558999,0.0684952961690664,0.0853761888320411,0.1009913453973249,0.1157138650513208,0.1300491467864751,0.1487208232419912,0.1629611557799605,0.1768581494608891,0.1903296797213853,0.2014005812519437,0.2163532984428506,0.2297687704909163,0.2427243572321574,0.2544383869945701,0.2643962371972394,0.2757365147524292,0.2859564029659363,0.295466810577442,0.3039843936077306,0.3123261324999141,0.3207152192267212,0.3273709315375982,0.3331874733904158,0.3398241958276448,0.3459563776717765,0.3518347437271349,0.3571267788810244,0.3618344098052179,0.3657173896174439,0.3686916627115962,0.3663191875714573,0.3649432396030895,0.3630323080171746,0.35994622490134,0.3570940424899718,0.3536813102709322,0.3508139718666034,0.3506576468853909,0.3500477066721189,0.350966157787979,0.3520745415841954,0.3530361502717177,0.3548063457559099,0.355360124679951,0.3564152345341674,0.3584915474642393,0.3589466806806238,0.3626459631218107,0.3652474832214765,0.3695239601455005,0.3715191306316504,0.3756473945671705,0.3793189784677016,0.3832330769816492,0.3891381566647972,0.3913094539048737,0.3954407294832827,0.4035685645549318,0.4119880661784649,0.417420814479638,0.0,2.444594849003938,64.53184656473357,193.94898242648503,280.5022133797698,CHI_public_implementation,64 +100000,95692,52543,497.2202482966184,6589,67.42465409856624,5174,53.431843832295286,1985,20.3569786398027,77.3508434030137,79.74279781349637,63.31502979323547,65.08351803474683,77.09244802963124,79.48352345975991,63.21849917332635,64.9889970552151,0.2583953733824558,259.27435373645835,0.0965306199091173,94.52097953173676,212.13742,148.6087444655307,221687.72729172764,155299.02652837298,397.27621,256.25526792345283,414531.4864356477,267161.8608906208,470.55447,227.5562226951887,487353.35242235503,234479.14408520443,3674.86241,1711.1017903020795,3798090.477782887,1745922.4598734276,1226.84576,554.217371623044,1263985.338377294,561075.5984022109,1939.94684,830.2555261930383,1991200.4347280855,837400.3225826663,0.43404,100000,0,964261,10076.71487689671,0,0.0,0,0.0,32846,342.5678217614848,0,0.0,42657,441.426660535886,1330359,0,47745,0,0,18671,0,0,66,0.689712828658613,0,0.0,0,0.0,0,0.0,0.06589,0.1518062851350106,0.3012596752162695,0.01985,0.3421167564419857,0.6578832435580143,23.848261817158136,4.157480277076449,0.3158098183223811,0.2605334364128334,0.2122149207576343,0.2114418245071511,11.309341702909038,6.062746387113422,21.274904959542287,14011.456412504383,59.54663456727488,16.54384678664175,18.56065607149368,12.240786897345776,12.201344811793684,0.5794356397371473,0.8026706231454006,0.697062423500612,0.5941499085923218,0.1156648451730418,0.7388622344071282,0.9302325581395348,0.8545034642032333,0.7430830039525692,0.1556420233463035,0.5168236877523553,0.7235576923076923,0.6402997502081599,0.549346016646849,0.1034482758620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026439215130119,0.0054253582257557,0.0082530530205361,0.0109460118708838,0.0136014974872327,0.0162282757075039,0.0189943792143141,0.0215495230508405,0.0240332989026498,0.0264742631244751,0.0289508768331453,0.0312134097491834,0.0337169952993694,0.0362772775041727,0.0386608045905835,0.0410515651490716,0.0436070906849286,0.046095720498635,0.0486389215390536,0.0510251946671114,0.0690105390697625,0.0851464829434799,0.1012784448736249,0.1163828018978086,0.1306778624021604,0.1483178163351671,0.1631797386661571,0.1766773162939297,0.1890051628488664,0.2006439150032195,0.2148655204010133,0.2284671769941207,0.242213177197832,0.2542660434977726,0.2655097231704362,0.2774690844562746,0.2878936788027697,0.2967426563344746,0.3056792873051225,0.3137545018695662,0.3212535480507443,0.3287289257553923,0.3349970361588619,0.3410034809746729,0.3461809778642666,0.351211691434914,0.3558142445863061,0.3602693174152656,0.3641707560239794,0.3678024300052826,0.3658145241754982,0.3633472388583701,0.3609115749739429,0.3585194602560028,0.3576567622494845,0.3549398770002753,0.3520050620896939,0.3525590551181102,0.3530908904565875,0.353708362325822,0.3551044865553142,0.3561200741588103,0.3558071997158556,0.3569373508486295,0.3574239370381035,0.3605512937199324,0.3606004815181985,0.3632100540844718,0.3667969840826585,0.3715668529157157,0.376601696444685,0.381151223637613,0.3855459445906982,0.3896835057821059,0.3904896421845574,0.3957340324118207,0.3954733139623795,0.4029223378702962,0.4191616766467065,0.4176675707090275,0.0,2.498807972233449,63.902530985534895,208.393799008969,260.5661367782208,CHI_public_implementation,65 +100000,95706,52375,494.9428457985915,6636,67.749148433745,5232,53.915115039809415,1941,19.747978183186007,77.26691653433518,79.62370574945955,63.2951211478972,65.0379705928745,77.01899865381431,79.38257720846813,63.20054530143273,64.948827700049,0.2479178805208732,241.12854099141143,0.0945758464644654,89.14289282550669,212.12598,148.43155792762175,221642.65563287569,155090.5102496831,397.63142,256.1784519689603,414673.0925960755,266875.18651535985,467.08497,226.6194107144184,483075.7632750298,232943.5909526938,3692.06772,1716.5586810642988,3808844.199945667,1744840.4630967013,1223.24948,555.5932073547183,1260573.9138612,563138.6153930195,1902.53214,820.1968012646206,1939483.9195034795,816883.726610964,0.43318,100000,0,964209,10074.666165130711,0,0.0,0,0.0,32916,343.09238710216704,0,0.0,42405,438.12300169268383,1329797,0,47805,0,0,18951,0,0,63,0.6582659394395336,0,0.0,0,0.0,0,0.0,0.06636,0.1531926681748926,0.2924954792043399,0.01941,0.3437275470613594,0.6562724529386406,24.24937311360015,4.113396851354561,0.3188073394495412,0.2599388379204893,0.2075688073394495,0.2136850152905198,11.157645992621998,5.928839719479647,20.973994364696413,14032.729096640403,60.17274078516282,16.802002101462573,18.98621202980857,12.407334178294184,11.977192475597484,0.5819954128440367,0.7919117647058823,0.7146282973621103,0.5760286225402504,0.1215469613259668,0.7454422687373397,0.9097744360902256,0.8690744920993227,0.7598425196850394,0.1666666666666666,0.5174620101306319,0.716183574879227,0.6587755102040816,0.5219907407407407,0.1079136690647482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029878863995462,0.0056677042249237,0.0082497869058732,0.0109100882762263,0.0134654109798018,0.0161078472300001,0.0187777154798919,0.0213758536560467,0.023920754832708,0.0264596298722567,0.0291636341270898,0.0319186070387253,0.0343973016885013,0.0369660826664194,0.039482915153516,0.041853589960927,0.0446016196176708,0.0468636523976511,0.049094103094498,0.0513253313328332,0.0682079234801495,0.0848257743073364,0.0998530800713611,0.1147014878259222,0.1295843004853344,0.1477193353794052,0.1621260059881511,0.1757017310252996,0.1888937612971539,0.2008181759615178,0.2160349382649485,0.2299029968026879,0.2431537439271475,0.2540586727428083,0.2646861048338202,0.2761503953095851,0.286436601599642,0.2964211238234797,0.3059359692688859,0.3140425727130929,0.3215332059521741,0.3283407305048423,0.3346167515697192,0.3406963908619697,0.3472524532752897,0.3524889557985143,0.3575333533955261,0.3618553547301603,0.3656646678607585,0.3694322334622107,0.3676788708020118,0.3649253731343284,0.363031914893617,0.3609266722723187,0.3589946182859017,0.3573404647731464,0.3548756440429998,0.3545944876045326,0.3553831098597352,0.3559802093790334,0.356140944645006,0.3567687668624028,0.3581567751990228,0.3593364162887801,0.3605772717383421,0.361689314795905,0.3617936294045127,0.3666022615691616,0.3700885396294847,0.3735958449088054,0.3739474531817973,0.3756037351078673,0.376679340937896,0.3763753056234719,0.3831934358200509,0.3875904615019575,0.3825103195230087,0.3833704228201497,0.3844248761695101,0.3829787234042553,0.0,2.849892597635298,64.44218531767285,201.3057512657282,275.422084929571,CHI_public_implementation,66 +100000,95698,52273,494.7647808731636,6717,68.77886685197183,5387,55.67514472611758,2063,21.18121590837844,77.288290147924,79.6569049431474,63.294707477804174,65.04354167625388,77.02421220078149,79.39324727814105,63.196212215985504,64.94769999025911,0.2640779471425105,263.6576650063489,0.0984952618186696,95.8416859947704,213.60614,149.50060340174687,223208.57280193944,156221.24119808865,399.59335,256.3845090795821,416958.1913937595,267311.55204871786,465.64466,226.037692546865,482342.0029676692,232908.4748345016,3798.32108,1755.8525747305728,3928735.0937323663,1794449.6277148668,1259.49259,560.6293030667969,1298345.399067901,568065.4695675935,2012.63112,852.640747348404,2067980.7728479167,861193.6972878309,0.43344,100000,0,970937,10145.844218269976,0,0.0,0,0.0,33077,345.0124349516187,0,0.0,42349,438.3477188655981,1320380,0,47558,0,0,19103,0,0,70,0.7210182030972435,0,0.0,0,0.0,0,0.0,0.06717,0.154969545957918,0.3071311597439333,0.02063,0.3424989314717196,0.6575010685282804,24.092488766287325,4.223398449985505,0.3152032671245591,0.262483757193243,0.2112493038797104,0.2110636718024874,11.401406632941704,6.0265985243199385,22.253918472766685,13984.75206702816,61.66784389080075,17.105209426051278,19.285215578538,12.660058357549811,12.617360528661642,0.5760163356227956,0.7835926449787836,0.6984687868080094,0.58311345646438,0.1282952548330404,0.7392144236960722,0.929475587703436,0.86652977412731,0.7018867924528301,0.1048387096774193,0.5099113197704747,0.6898954703832753,0.6308835672997523,0.5470183486238532,0.1348314606741573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028053757886954,0.0055453614622722,0.0081990502090351,0.0110120075580568,0.013597347652754,0.0161085032939954,0.018820986521482,0.0215485122237533,0.0240726165043085,0.0266284603182725,0.0291061143337364,0.0316047709962842,0.0340112274063868,0.036353525159111,0.038751933986591,0.0409871643827122,0.0432185050580353,0.0454970007679694,0.0478666971770922,0.0504340938226312,0.0678357320410252,0.0837818029525704,0.0994206670724795,0.1146681821051966,0.1286062640529499,0.146975680511588,0.1616547740400951,0.1748242062646494,0.1881288694517809,0.1993535986943123,0.214215617552222,0.2283792128440963,0.2422780343295286,0.2536901581183479,0.2643342623293934,0.2758184441238486,0.2865163512727598,0.2957883101355771,0.3041414865649219,0.3128460813822576,0.3209221915392291,0.3277302052785923,0.3342988058213242,0.3406856263672861,0.3455600102362876,0.350285000680045,0.3551556884722676,0.3603733592113999,0.365500117001638,0.3700388022937055,0.367654404319946,0.3650802419688976,0.3630458777912999,0.3615131149206718,0.359505922064732,0.3561860822760477,0.352639354418516,0.3534352150714709,0.3538118514707143,0.354583744063088,0.3564170116672939,0.3565210493961808,0.3564498137351882,0.3574963609898107,0.3582728278117036,0.3584345970700736,0.3612250712250712,0.3641143504817077,0.3676543036103877,0.3701697075930205,0.3733333333333333,0.3757012341721429,0.3773573005361085,0.3802763147851309,0.3811126694717157,0.3825329566854991,0.3868325242718446,0.3888888888888889,0.3941605839416058,0.3926564256275758,0.0,2.4394385331831185,68.26194254635105,198.52466611838352,285.6386952599696,CHI_public_implementation,67 +100000,95826,52277,493.5612464258135,6753,69.15659633084967,5324,54.95377037547222,1975,20.23459186442093,77.36488025655099,79.6804988903649,63.35773544642036,65.07154262624825,77.11397926968198,79.42912416021733,63.26388608788246,64.9799081227105,0.2509009868690128,251.3747301475746,0.093849358537895,91.63450353774748,213.45412,149.4065394770577,222751.77926658737,155914.40681762536,399.53471,256.88266066589915,416243.6186421221,267377.91483094264,471.32348,228.32309767063296,487610.5128044581,235063.59196146508,3749.57817,1735.8183587425124,3872684.741093232,1771209.3468813389,1242.23017,557.0897302313606,1280557.2809049736,565594.6842660134,1923.18258,815.0316228727937,1971691.0441842503,820557.9524502414,0.43258,100000,0,970246,10125.08087575397,0,0.0,0,0.0,32933,343.02798822866447,0,0.0,42748,441.9051196961159,1330393,0,47812,0,0,19005,0,0,89,0.9183311418612904,0,0.0,1,0.0104355811575146,0,0.0,0.06753,0.15610985251283,0.2924626092107211,0.01975,0.3558290888511601,0.6441709111488398,24.105345540641217,4.147420701169799,0.3311419984973704,0.26427498121713,0.2043576258452291,0.2002253944402704,11.18849701808571,5.983617759633932,21.277182493349272,13992.614673693446,61.17229730416019,17.180343120198167,20.145307651789075,11.933337836407173,11.913308695765773,0.5841472577009768,0.8123667377398721,0.6829268292682927,0.5947467166979362,0.1185661764705882,0.7545811518324608,0.9244604316546764,0.8415841584158416,0.7261410788381742,0.1725663716814159,0.5155426765015806,0.7391304347826086,0.6192368839427663,0.5563636363636364,0.1044083526682134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030183328269016,0.005880206009976,0.0087263576589008,0.0114573599317433,0.0140429729207553,0.0168003909909176,0.0193479989398356,0.0220001225064826,0.0247587504088976,0.0272480679666308,0.0294859180912556,0.0317929456194903,0.0344101051419879,0.0369497421751973,0.0396033480394178,0.0420370198313151,0.0442810153292372,0.0465942764780239,0.048802267747931,0.0509181709410601,0.0681943821513877,0.0842575074996603,0.1003875968992248,0.1153757298273617,0.1295995955936559,0.1478802597539728,0.1625226446876357,0.1766663123206123,0.1893575711024344,0.200906198785308,0.2152447552447552,0.2285297297297297,0.2412155848671201,0.2527796587955176,0.2633441397879004,0.2739850256024596,0.2850076315466973,0.2941672001886983,0.3031600407747197,0.3117001932687579,0.3197440014786918,0.3271168825102472,0.3340542968242149,0.3398700630541165,0.3459175247717116,0.3512105613162237,0.35633808100639,0.360812030457498,0.3655836092715231,0.3688565631011674,0.3662792261952807,0.3632074173934575,0.3617117244101147,0.3594701297198802,0.3572980534555628,0.3544389226332904,0.351002205964038,0.3512698883288862,0.3521307987922042,0.352953828505879,0.3542526526073764,0.3554910421347756,0.3563412014908088,0.3576817712309696,0.358262125406186,0.3600187999373335,0.3606015722912157,0.3659297052154195,0.370455024966594,0.3735987553357003,0.3756642844053509,0.3792826552462526,0.3814190264078905,0.3855857241750635,0.390948849591177,0.3972815070943126,0.3945010812480692,0.3995889003083248,0.4058938003892132,0.4065420560747663,0.0,2.320768800574433,67.17992398455736,204.0252190862361,276.19576092107354,CHI_public_implementation,68 +100000,95624,52400,496.2666276248641,6571,67.21116037814775,5227,53.9508909897097,1971,20.110014222370957,77.2563444549925,79.66577080000205,63.27473565930678,65.05535507999862,77.00071094637121,79.41512609206511,63.177679481127925,64.96331375587309,0.2556335086212868,250.64470793694227,0.0970561781788532,92.0413241255318,211.12542,147.83865368325797,220787.06182548316,154604.13043091478,399.02191,257.14475553685736,416574.0190747093,268204.83232118515,464.80456,224.94122477261237,482181.36660252657,232204.25996197623,3684.99817,1711.6604466606218,3802108.173680248,1738544.2341609702,1225.24166,547.9681947395563,1265152.0538776875,556884.814209357,1925.00224,829.4932625622868,1966346.523885217,828159.0836479167,0.43407,100000,0,959661,10035.775537521962,0,0.0,0,0.0,32993,344.2754956914582,0,0.0,42181,437.1287542876266,1330925,0,47903,0,0,18597,0,0,72,0.7529490504475864,0,0.0,0,0.0,0,0.0,0.06571,0.1513811136452645,0.2999543448485771,0.01971,0.3471577726218097,0.6528422273781903,23.93395445577996,4.196293166949803,0.3183470441936101,0.2552133154773292,0.2117849626937057,0.2146546776353549,11.34520617780769,6.033248942331322,21.300112383954165,14025.697501575622,59.97353763626116,16.420096414460293,18.925915115575997,12.432368670775338,12.195157435449548,0.5773866462598048,0.795352323838081,0.7049278846153846,0.5882352941176471,0.1120144534778681,0.7342019543973941,0.9044117647058824,0.8568329718004338,0.75,0.1395348837209302,0.5121885157096425,0.720253164556962,0.6467165419783873,0.5364705882352941,0.1036513545347467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024611333367093,0.005402227785492,0.0079156476116055,0.0105554031676368,0.0131956455387119,0.015667817813229,0.0181879386322833,0.0208733499530017,0.0235460180430824,0.0260823242567664,0.0286183366682058,0.0312519269109818,0.0337468471714623,0.0361476838057139,0.0384690873405299,0.0407280553802216,0.0431983579025937,0.045853547053385,0.048222108910788,0.0507990153127216,0.0679654267827468,0.0840335254059717,0.0994078367141237,0.1146869637536978,0.1284221635883905,0.1463285566115615,0.1607362744681754,0.1741593975993439,0.1879269244337071,0.1991928819053139,0.2149141723453808,0.2299832042043669,0.2426493817746064,0.2546363277653558,0.2658628601685567,0.2766748828636777,0.2873990198491731,0.2966128450297672,0.3053707683735316,0.313948951016848,0.3216746711213197,0.3292468324730173,0.3355173355173355,0.3407133332532465,0.346267711163363,0.3511181437207175,0.3556277925598675,0.3609523323466367,0.3656715448843641,0.3691062073344975,0.3664275776363955,0.3645594451965849,0.362657269420739,0.3613680923680197,0.3602288685051839,0.3572583999630263,0.354230977309614,0.354676876361476,0.3552434553622141,0.3554860286978099,0.3569500292612939,0.3583471008578992,0.3603734614736132,0.3611235652797704,0.3626410726343204,0.3652730598379932,0.367198008184758,0.3723387478315723,0.3767236237325006,0.3812661242309982,0.385469774217043,0.3908241291418861,0.39681637293917,0.3996054029443011,0.4073800055488764,0.4065069297627437,0.4071353620146904,0.4079472843450479,0.4124461206896552,0.4183006535947712,0.0,2.721259005307625,67.17232631648311,188.19817212074184,279.4814737807935,CHI_public_implementation,69 +100000,95691,52303,495.00998003992015,6747,69.1705594047507,5359,55.40750958815354,2080,21.349970216634794,77.32722884548278,79.70383634967119,63.32110870231941,65.07574025989143,77.06663194601568,79.44290449699005,63.22404435451485,64.98089029899499,0.260596899467103,260.9318526811393,0.0970643478045616,94.84996089643973,212.36336,148.68474156376288,221925.23852817924,155379.2416128989,398.86115,257.3317027036148,416238.2460210469,268338.0197402593,474.72122,230.09045769108607,492108.13974145945,237396.3508178984,3776.64492,1758.272313303259,3909359.6576480544,1800287.956539446,1233.84006,555.7895472516959,1273226.113218589,564821.2127160635,2026.51314,858.166993785272,2082517.2064248468,868223.0272826727,0.43237,100000,0,965288,10087.510842189966,0,0.0,0,0.0,33035,344.6092108975766,0,0.0,43017,445.5277925823745,1327893,0,47749,0,0,19033,0,0,69,0.7210709471110136,0,0.0,1,0.010450303581319,0,0.0,0.06747,0.1560469042718042,0.3082851637764932,0.0208,0.3385202999009761,0.6614797000990239,24.02587518113285,4.146095880668708,0.3140511289419668,0.2651614107109535,0.2056353797350252,0.2151520806120544,11.488558466075096,6.247970501346726,22.429669444681384,14030.543374511908,61.76068804390435,17.355432531299762,19.27177013349785,12.867132177288624,12.266353201818127,0.5877962306400448,0.8106966924700915,0.7100415923945336,0.575021682567216,0.1270417422867513,0.7575187969924813,0.9331046312178388,0.8729838709677419,0.7035714285714286,0.1476793248945147,0.5158118522455488,0.7255369928400954,0.6419545071609098,0.5337915234822451,0.1213872832369942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027233887460262,0.0054119244762898,0.0081059145784721,0.0105223600150319,0.0131074526392857,0.015995845763799,0.018283604919136,0.0209267410864747,0.0232855418976131,0.0257549845879714,0.0283458106860834,0.031109741693627,0.033521219477073,0.0361150323026037,0.0388767338177014,0.0414378638869067,0.0437908564443109,0.0459599472607788,0.0481995381831041,0.05049041578503,0.0685091759888864,0.0858712715855573,0.1015901986699393,0.1165256912006059,0.1313033297824092,0.1500370252829789,0.1651313834529015,0.1786372203469242,0.1911233626087142,0.2029092781514498,0.2170409866968277,0.2310648293480261,0.2433972936518296,0.2557806313302561,0.2661332041869834,0.2775241556599592,0.2885639336942568,0.298242653345934,0.3061520998864926,0.314290297447179,0.3211460734015078,0.32906798412494,0.3359191794774617,0.3413086757333717,0.3463058680449984,0.3515851566645687,0.3554753580692455,0.3598195741644474,0.363991283820592,0.3667001613031176,0.3642514687014653,0.3621923474663909,0.3607224050043067,0.3596330009695952,0.3580419788764915,0.3557448378714964,0.3521408499896807,0.3523007192826879,0.3530829174926516,0.3536328598957962,0.3536046163069544,0.3551097054753904,0.3561876414857047,0.3568967060508414,0.3587307710854993,0.3595970168781892,0.3629498255048916,0.3670778257989211,0.3690442726633872,0.3730332603067118,0.3747422444210237,0.3785966413520162,0.3824797160243408,0.3846508412076515,0.3892636579572446,0.3950411252831088,0.4017581739666872,0.401954795357361,0.4033870072182121,0.4107899807321772,0.0,2.2698323301546197,70.48694734679161,198.02557816799956,278.55096200567,CHI_public_implementation,70 +100000,95763,52566,495.87001242651127,6739,68.85749193321011,5319,54.81240144941157,2037,20.83268068042981,77.38146625236273,79.70463494895644,63.35451413110488,65.0678592179053,77.12053435299788,79.44414501067322,63.256628271780286,64.97243381809544,0.2609318993648486,260.4899382832144,0.0978858593245917,95.4253998098551,212.51186,148.70043618582798,221914.37193905783,155279.63429072604,396.32339,255.19243138421757,413123.5550264716,265748.30715852417,467.53095,227.03145007313023,482696.1352505665,232872.43676386712,3759.42842,1755.0639267575434,3877306.5380157274,1784259.648045218,1267.56612,573.3698563395039,1305682.758476656,580830.8351768494,1988.91028,850.385892227456,2036017.3762309037,855265.538684174,0.43631,100000,0,965963,10087.016906320812,0,0.0,0,0.0,32802,341.74994517715606,0,0.0,42450,437.778682789804,1330709,0,47897,0,0,18834,0,0,79,0.8249532700521077,0,0.0,1,0.0104424464563557,0,0.0,0.06739,0.154454401686874,0.302270366523223,0.02037,0.3511396011396011,0.6488603988603988,23.806653780513628,4.208400014330758,0.3179169016732469,0.2564391802970483,0.2147020116563263,0.2109419063733784,11.62501536146281,6.3841397179245005,21.93429105676975,14063.579281010168,60.95984007929422,16.64517586981228,19.3018263314246,12.546188788782612,12.46664908927471,0.5824403083286332,0.7888563049853372,0.7072738024837374,0.6114081996434938,0.1225919439579684,0.7378087397086763,0.909255898366606,0.8498985801217038,0.7253521126760564,0.1553784860557769,0.5168449197860963,0.7072570725707257,0.6485809682804674,0.5727923627684964,0.1133557800224466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026932345139015,0.0053913818963071,0.007993426725231,0.0109472743521,0.0137065695954121,0.0163385385915263,0.0191617742987606,0.0217859365911897,0.0244585206375153,0.0271321001800622,0.029740195877556,0.0321131037879098,0.0348481111522177,0.0371929752321344,0.0399913398490659,0.0425690119899618,0.0450043979924458,0.0472961764949821,0.0496878278846053,0.0520802965307567,0.0689611988896078,0.0861271555332328,0.1010949594109873,0.1159280127827769,0.1296450521300035,0.1472675543897873,0.162552902616757,0.1759965937516632,0.1893912690528834,0.2013101888087145,0.2168403600189483,0.2302201070791195,0.2424492903366142,0.2546146860262821,0.2655482905136164,0.2763061645202048,0.2867814551788825,0.2971579717485508,0.3051532808577821,0.3136724303994863,0.321370234357804,0.32821413928425,0.3359752630082456,0.3422463099077926,0.3482493346134681,0.3547575903258015,0.3592936523828594,0.3630497861942577,0.3673641360713545,0.3701200110901337,0.3680955973487094,0.3657075991189427,0.3634095106511962,0.3611115133436626,0.3597152304071966,0.3561400009206549,0.3526710061608147,0.3531429509272936,0.3529210737658698,0.3546471186259297,0.3556396045536249,0.3569539299672338,0.3579282468008461,0.3580429284451308,0.3583327323862407,0.3582206238761629,0.3604621382430779,0.3650763777798689,0.3681939376929554,0.373420236865114,0.3755126218900939,0.3794545935927985,0.3841680735321703,0.3883928571428571,0.3912183171582022,0.3936308748668166,0.3973560249202248,0.4019273238305561,0.3961392060902664,0.4019011406844106,0.0,2.861449624182832,68.72956809293733,194.4773062744005,277.1123543959461,CHI_public_implementation,71 +100000,95754,51863,489.0657309355223,6653,68.02848967144975,5302,54.754892745994944,1988,20.40645821584477,77.31912755708531,79.66840351183266,63.32066847763053,65.05817907378402,77.0622879086142,79.4137066235914,63.223529062423815,64.96460011446543,0.2568396484711144,254.6968882412699,0.097139415206719,93.5789593185916,213.17296,149.14916946667344,222625.64488167595,155762.86052454563,397.40166,255.37643524030463,414412.28564864135,266089.2654513698,466.86716,225.4913435070981,483944.4931804416,232662.7528055669,3708.32901,1712.778930513885,3832745.535434551,1748707.1877037869,1223.27255,550.5651439545513,1262611.9431042045,560074.8104043177,1936.95,825.7944856779271,1989795.475907012,833445.5490316375,0.43073,100000,0,968968,10119.347494621634,0,0.0,0,0.0,32857,342.49221964617664,0,0.0,42275,437.8511602648453,1328554,0,47836,0,0,18692,0,0,101,1.0547862230298473,0,0.0,0,0.0,0,0.0,0.06653,0.1544587096324844,0.2988125657598076,0.01988,0.3549036525740581,0.6450963474259419,23.815805665935965,4.113105368201664,0.3151640890230102,0.2727272727272727,0.2029422859298378,0.2091663523198793,11.094754653096611,5.878080555812708,21.38573915064345,13869.66868470211,60.59364389493164,17.681923458539845,18.808573019146703,12.337446956456466,11.765700460788617,0.5844964164466239,0.8029045643153527,0.6923997606223818,0.5843101893597836,0.1236059479553903,0.7549407114624506,0.9182608695652174,0.8623024830699775,0.7381818181818182,0.1466666666666666,0.5161205073995772,0.7267508610792193,0.6311074918566775,0.5335731414868106,0.117508813160987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026734447943776,0.005492556673659,0.0081266994034333,0.0109082045135997,0.0136274420070984,0.0160602079577974,0.0185980117257201,0.0210962708818363,0.0234969325153374,0.0264127764127764,0.0290266684438793,0.0317489654889155,0.034247631976798,0.036458226022458,0.0390127634986638,0.0415056119390644,0.0440291940576634,0.0465446774963175,0.0487977222187584,0.051400895740027,0.0689367210171402,0.0858317467623491,0.1005653391510472,0.1149704502912907,0.128792510911046,0.1462166391743856,0.1603241271053413,0.174175356458821,0.1863534436732514,0.1981625608370318,0.212086622228444,0.2260850741422231,0.2386148523684153,0.2497347552638775,0.2608686081577847,0.272565116717076,0.283072593882952,0.2926450392849906,0.3013216459260605,0.3100666834712069,0.3166782487838777,0.3242309628918371,0.3313227312587396,0.3366995280923162,0.3421965317919075,0.3473158921910126,0.3527619286475641,0.3569388483704799,0.3614251411512752,0.3658688095584251,0.3642531495319539,0.3620941513698252,0.3596373547230028,0.3573861248387704,0.3553229193036796,0.3518981900799803,0.3488124722169302,0.3487863079075125,0.3494068710522262,0.350473321858864,0.3513833769067279,0.3530798644820003,0.3551034149010036,0.3559082020274675,0.3553489495290992,0.3565856978326877,0.3578047245896013,0.3621064574075825,0.3657780751487833,0.3696799016302408,0.3712086710993715,0.3729399255715045,0.3748814866316921,0.378018954448181,0.3807953260459856,0.3844339622641509,0.3844515441959531,0.3891026939436905,0.4062070859653941,0.4068571428571428,0.0,2.392002912178556,66.61347692294288,194.13577711564568,284.04933154257577,CHI_public_implementation,72 +100000,95668,52130,493.18476397541497,6797,69.43805661245139,5411,55.83894301124722,2103,21.585065016515447,77.34181859432726,79.72319923580245,63.3271521787835,65.08493959863141,77.08086049041594,79.46256863653613,63.23081619063984,64.99115003420957,0.2609581039113209,260.6305992663209,0.0963359881436574,93.78956442184004,210.46498,147.2911590886488,219995.17079901329,153960.7382705281,396.32543,254.54217429213972,413562.13153823646,265358.70331996033,470.86194,228.20727473016143,486514.4353388803,234328.3400223822,3828.18007,1766.9103189384025,3957092.800100347,1802485.4590232903,1248.25528,563.810319916553,1284944.5478111804,569552.8163609573,2050.04638,855.7061472253031,2106463.20608772,864188.712404114,0.43176,100000,0,956659,9999.780490864236,0,0.0,0,0.0,32762,341.72346030020486,0,0.0,42668,440.366684784881,1342712,0,48332,0,0,18724,0,0,71,0.7421499351925408,0,0.0,0,0.0,0,0.0,0.06797,0.1574254215304799,0.3094012064145947,0.02103,0.3497121999157658,0.6502878000842341,23.979098506416808,4.2515623718096105,0.3182406209573092,0.2544816115320643,0.2110515616337091,0.2162262058769173,11.15884989887468,5.859868915792361,22.43433730847529,13995.466250962438,62.06703423057132,16.768000936453937,19.89382742951516,12.995116795342527,12.41008906925972,0.5801145814082425,0.8119099491648512,0.705574912891986,0.5803418803418804,0.1112084063047285,0.7550226830848995,0.9180633147113594,0.8862745098039215,0.6877323420074349,0.1541850220264317,0.5103412616339194,0.7440476190476191,0.6295379537953796,0.5482796892341842,0.1005464480874317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025214934532308,0.0049667028188572,0.0077108042571756,0.0102882330239077,0.0131776955301582,0.015822269284027,0.0185813737781447,0.0210079315659994,0.0237635298807224,0.0262158482531298,0.0287302108112542,0.031550082675184,0.0341347489275022,0.0362714588957813,0.0388497822182771,0.0413011998345055,0.0437715671340193,0.0461912227332661,0.0483948151384641,0.0507161770531451,0.0680671478862204,0.0842783100361237,0.1004628512054072,0.1152381152802037,0.1293606337753304,0.1474778672138603,0.1621535588472475,0.1752395145837768,0.1880309004070904,0.200053625053625,0.2153496537388663,0.2290609754778413,0.2413155547821547,0.2528973147905187,0.2641966073353721,0.2752957072608869,0.2861767200964414,0.2969291338582677,0.3060728836834519,0.3141973541034305,0.3214682337698394,0.3282454355123571,0.3352301631431377,0.3413111217641419,0.3469323290001215,0.3513616806183965,0.3566563157367525,0.3617194662320464,0.3659368153592864,0.3696361355081556,0.3678010647617764,0.3653517712522726,0.3629513609617745,0.3602194112368657,0.3584959004806333,0.3555825056416082,0.3530670470756062,0.3522953271642478,0.3529623164595954,0.3531671580452068,0.3536352399145971,0.3556192547197785,0.3561276256760722,0.3557591095384202,0.3561624042768386,0.356847558741954,0.3577716801006116,0.3624664879356568,0.365793376173999,0.3710834728533843,0.3766364551863041,0.3780728416786647,0.3823547920206406,0.3824269697200824,0.3830266616597822,0.3842841765339074,0.3893518518518518,0.3922764227642276,0.3916201117318436,0.3945025164537359,0.0,2.819430619526341,67.33153975639955,207.0196281795085,281.70539550077405,CHI_public_implementation,73 +100000,95668,51870,490.34159802650834,6763,69.19764184471296,5322,54.94000083622527,2029,20.74883973742526,77.38307130315455,79.75975872855248,63.34642469116329,65.09749433364946,77.12877213860415,79.50754534713936,63.25087579871162,65.00551984623986,0.2542991645504031,252.213381413128,0.0955488924516743,91.97448740960112,211.27546,147.77915721260914,220842.35062925957,154470.83372978336,394.35646,253.66440678478207,411455.941380608,264393.1270485241,460.20401,222.65668551249505,476538.4036459422,229319.48455524616,3795.9443,1746.9311815082162,3923977.547351257,1782181.8387634484,1245.22757,561.5572833415404,1286258.226366183,571630.2560328848,1987.18964,839.1521152082837,2035428.0010034705,843326.2369180908,0.432,100000,0,960343,10038.28866496634,0,0.0,0,0.0,32604,340.092821005979,0,0.0,41668,431.0741313709913,1341469,0,48309,0,0,18613,0,0,93,0.9512062549650876,0,0.0,1,0.0104528159886273,0,0.0,0.06763,0.1565509259259259,0.3000147863374242,0.02029,0.3398674375969538,0.6601325624030461,24.167280503102823,4.225605485710161,0.3130402104472003,0.2504697482149567,0.2151446824502066,0.2213453588876362,11.57312933862679,6.2709765017981445,21.73714490739432,13984.28373026512,60.68414090232723,16.216166387724837,18.78259308242893,13.15690931801211,12.52847211416134,0.5849304772641863,0.8094523630907727,0.71968787515006,0.6052631578947368,0.1065502183406113,0.7657774886141835,0.9300567107750471,0.9096916299559472,0.7789115646258503,0.1653846153846153,0.5114927344782034,0.7300995024875622,0.6485148514851485,0.5475113122171946,0.0892655367231638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027636334187056,0.00549105424189,0.0083467713309195,0.0107741987895527,0.0132885974276854,0.01584942536926,0.0182980285021101,0.0208024987496044,0.0233052579932946,0.0260226853937185,0.0285022965879265,0.03111426018915,0.0336206187263452,0.0358868184955141,0.038129822968679,0.0407519947083385,0.0432715218066922,0.0457611989870054,0.0483896128206994,0.0507868681605002,0.0686362591671716,0.0848016583435409,0.1009599748203325,0.1158335261088095,0.1298608182201602,0.1479034065678459,0.162799079835897,0.1761252446183953,0.1889573039942801,0.200469322589632,0.2151295403683938,0.2284478564091474,0.240695652173913,0.2528447908354557,0.2638283828382838,0.2748024777545073,0.2851781106531282,0.2945563516741021,0.303955200145395,0.3130745775923336,0.3214980319518407,0.3286926994906621,0.3347987344622057,0.340407653710417,0.3456938817718408,0.3512459425101514,0.3553475667819376,0.3597237794312506,0.3639417402695096,0.3676204321681094,0.366311024894924,0.3648177976018392,0.3629650507328072,0.3606294201871484,0.3588584345860413,0.3560609548363335,0.3524868362621328,0.3515228217813645,0.3526108543057695,0.3537017167381974,0.3542874238061403,0.3552354112059281,0.3567935804739415,0.356365663322185,0.3576423815682329,0.3567035989517113,0.3597937560201711,0.3644947473736868,0.3689863895594976,0.3731955509978701,0.3778916810305724,0.3833350890129569,0.3887084686485136,0.3934463276836158,0.3967974824139207,0.3978131906479004,0.3991941501268467,0.4015640273704789,0.4042666666666666,0.4079288625416821,0.0,2.7326709085093928,67.36260447230872,193.8779451435554,280.7324570590138,CHI_public_implementation,74 +100000,95678,52387,494.4187796567654,6746,68.96047158176384,5307,54.72522418946885,2114,21.59326072869416,77.3960056150407,79.78212246443931,63.35197710932333,65.11382895971722,77.14042160053998,79.52962133282955,63.25575714884421,65.02197445694992,0.2555840145007266,252.50113160976184,0.096219960479118,91.85450276730478,212.71734,148.87797765062496,222326.28190388597,155603.14560361308,399.18941,256.45416357977007,416466.136415895,267284.3269635183,470.18715,227.72426646193765,486583.5719810196,234297.07327287947,3786.06746,1760.2168993801808,3903645.655218545,1786375.197706498,1230.30194,558.2642535353054,1266264.3031835952,563930.6975065618,2064.42004,871.2719323796745,2110561.571103075,870353.4361787168,0.43452,100000,0,966897,10105.74008654027,0,0.0,0,0.0,33038,344.50970965112145,0,0.0,42691,441.4912519074396,1334379,0,47893,0,0,19205,0,0,66,0.679362026798219,0,0.0,0,0.0,0,0.0,0.06746,0.1552517720703304,0.3133708864512303,0.02114,0.338122332859175,0.6618776671408251,23.952978378087806,4.243837700755519,0.3165630299604296,0.2553231580930846,0.2208403994723949,0.2072734124740908,11.513810658136029,6.140447329701973,22.544906681008708,14078.561143821273,60.954948220462086,16.717254384748056,19.270663764765448,12.299331070797525,12.667699000151057,0.5739589221782552,0.8095940959409594,0.6904761904761905,0.6027272727272728,0.1075085324232082,0.7445753254804711,0.9125214408233276,0.8432539682539683,0.7357142857142858,0.1544715447154471,0.4994585814834867,0.7318652849740933,0.625,0.5573170731707318,0.0950323974082073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027047013179087,0.0054146133722698,0.007977913562453,0.0104241808483616,0.0129290175574227,0.0157312752005864,0.0186690049654863,0.0214193100491071,0.0240344312907644,0.0268790239208982,0.0299264909420847,0.0322497843853957,0.0346075920726502,0.0371953606229785,0.0394655385885266,0.0421021076896042,0.0445406614806144,0.0470219435736677,0.0495579823192927,0.052029266462385,0.0699505948464053,0.0862785318834967,0.1009754562617998,0.1158973819787614,0.1296130371994476,0.1472053302310824,0.161775627559573,0.1760209513264915,0.1890797598444544,0.2009631989359762,0.2161451882169206,0.229811447301522,0.2433513384269272,0.255427771825874,0.2666688660882188,0.2776898120979261,0.2890641559107997,0.2980189007877201,0.3073296768052219,0.3161957255085821,0.3236703817058382,0.3317411006259927,0.3374416543574594,0.3430715465447495,0.3501831768445059,0.3546899215271457,0.3591132635993709,0.3633145554202192,0.3673825174012423,0.37046638942991,0.3675362863702888,0.365447411025437,0.3623606170114037,0.3610297406888988,0.3589233782420322,0.355854960314426,0.3532955911189828,0.3538776848663715,0.3547836476913886,0.354637998965966,0.3555360083844887,0.3560635947609278,0.3565310045127862,0.3571015009130183,0.3586372360844529,0.3594603026048978,0.358938706015891,0.3624062038868481,0.3669798751840684,0.3718712753277711,0.3764571428571429,0.3793727703530163,0.3823696682464454,0.3868974984746797,0.3891886774590551,0.3884040645546922,0.3903636642626976,0.3920292801952013,0.3945841392649903,0.3935882580146775,0.0,2.733915929628698,70.61169484134473,192.96824248935803,271.3797175206471,CHI_public_implementation,75 +100000,95815,52389,494.4006679538695,6681,68.38177738349945,5301,54.66784950164379,2033,20.779627406982208,77.38566316619061,79.70495378330808,63.36611244363343,65.08336991986974,77.1295061247498,79.45136274427293,63.27066989018584,64.99143628157438,0.2561570414408152,253.59103903515745,0.0954425534475831,91.93363829535885,212.80908,148.9371642785361,222104.13818295675,155442.42997290206,401.39012,258.1759969193571,418278.2340969577,268808.8158632333,467.66473,225.85444276696683,483361.7596409748,232124.008488676,3734.50496,1725.632593180287,3855214.173146167,1758598.4378023148,1225.40035,548.422945702611,1263938.193393519,557399.2750275938,1978.7778,842.004041164135,2025347.7847936123,845866.5625619801,0.43445,100000,0,967314,10095.642644679852,0,0.0,0,0.0,33209,345.9061733549027,0,0.0,42374,437.60371549339874,1333578,0,47961,0,0,18952,0,0,69,0.7201377654855712,0,0.0,2,0.0208735584198716,0,0.0,0.06681,0.1537806421912763,0.3042957641071696,0.02033,0.3339977220956719,0.666002277904328,24.33344428046519,4.11516801091905,0.3142803244670817,0.2624033201282776,0.2078853046594982,0.2154310507451424,11.292978159586008,6.18198171101283,21.94734396473089,14026.689300801168,60.79850079289237,16.892544932269885,19.070041183249646,12.74762254726679,12.088292130106035,0.576117713638936,0.790079079798706,0.6932773109243697,0.5761821366024519,0.1288566243194192,0.7547918043621943,0.9079189686924494,0.8793103448275862,0.72,0.1861471861471861,0.5047518479408659,0.714622641509434,0.6214642262895175,0.5305651672433679,0.113662456946039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026941346864776,0.0055655241628904,0.008484639352082,0.0114908662345315,0.0139956873754017,0.0163730780979533,0.0189992763151189,0.0213899377487498,0.0239971383310337,0.0266071757506293,0.0288996607876694,0.0315614447443779,0.0341414785048457,0.0366649511065362,0.0395450514549691,0.0421831102297141,0.0445529700255563,0.0471171087134521,0.0493396461500124,0.0514744136682413,0.0688410710001773,0.0850363246746459,0.1006613631837667,0.116067957594797,0.1301879239876964,0.1483902995479319,0.1630663940418048,0.1767819561658978,0.1891139483536527,0.2012724117987276,0.2167053813395277,0.2298492950899368,0.2424028575461148,0.2539271873806015,0.2649113556976207,0.2767413829328438,0.2872009715985693,0.2972271532256252,0.3063247824510515,0.3141200818688041,0.3225154238972202,0.32886258579633,0.3355061168579661,0.3410403242196372,0.3465051483949122,0.3517726837178447,0.3556024261787684,0.3605531941889234,0.3650361031814718,0.3686365910826683,0.3665370801329046,0.3651926408712152,0.3625241105495093,0.3603503345810871,0.3582437835347274,0.3548322836696854,0.3514314701499635,0.3511798076132533,0.3515481759454411,0.3531002130669102,0.3539446029124756,0.3552631578947368,0.3559811233303838,0.3562071677339625,0.3568473764424124,0.3583805923125394,0.3597590707012763,0.3633663053439939,0.3666171477079796,0.3713132443449764,0.375,0.3772831354172213,0.3784996524047272,0.3821485836451095,0.3878092710209498,0.3933134328358209,0.3955028492222393,0.3984992902048266,0.3962993648163491,0.3955708285605193,0.0,2.5553168511786475,66.40019384573199,200.0813479365532,278.7674758745604,CHI_public_implementation,76 +100000,95742,52146,494.00472102107744,6520,66.72097929853146,5223,53.72772659856698,1966,20.022560631697687,77.37657405990127,79.72341118000965,63.3458979718325,65.08012554768479,77.13366610846727,79.4863548505636,63.254279673569016,64.99435296575626,0.242907951434006,237.05632944604812,0.0916182982634836,85.77258192852355,212.80358,148.93603234132848,222267.7403856197,155559.76722998108,395.19127,255.01489033873943,411928.6833364667,265518.1428617946,469.80034,227.865024933097,485854.2123623906,234229.47396731,3667.87205,1696.0780034739728,3779171.5548035344,1719684.5516847074,1210.27056,542.9890528384549,1248520.6805790565,551562.7027202847,1916.42956,812.0633964931804,1955193.1440747008,806992.747882011,0.43086,100000,0,967289,10103.079108437258,0,0.0,0,0.0,32760,341.3131123227006,0,0.0,42664,440.7261181090848,1330490,0,47791,0,0,18900,0,0,65,0.6789078983100415,0,0.0,2,0.0208894737941551,0,0.0,0.0652,0.1513252564638165,0.3015337423312883,0.01966,0.3461990020545935,0.6538009979454065,23.91794275280538,4.232772995924434,0.3222286042504307,0.26345012444955,0.21213861765269,0.2021826536473291,11.393152636197678,6.07758167133334,21.05089513239691,13888.45136570014,59.8432908355633,16.77907032378837,19.11905855547269,11.843561942295551,12.101600014006666,0.5860616503924947,0.8088662790697675,0.7213309566250743,0.5748106060606061,0.1146209386281588,0.7470433639947438,0.9187725631768952,0.8604166666666667,0.6973180076628352,0.145374449339207,0.5198594974331262,0.7347931873479319,0.6658354114713217,0.5345911949685535,0.1066969353007945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027853742530132,0.0054029944550882,0.0078532437752389,0.0105144459344142,0.0129362948498901,0.0154682742538263,0.018129722344016,0.02072528280312,0.0230527811570349,0.0254168756589655,0.0280730164912316,0.0304762882365017,0.0329488444773418,0.0355094180286505,0.0376552634836792,0.0400219128241702,0.0424027170874148,0.0449287840907912,0.0473031979041044,0.049627145475754,0.0664926931106471,0.0833795274602294,0.0995470843555387,0.1148946903770967,0.1296571494819827,0.1473498382629653,0.1627914373866853,0.176121308858739,0.1882963611701502,0.2005104721867727,0.2147450051160536,0.2286335652380901,0.2409295140286556,0.2525003829908301,0.2630686572422601,0.2744926347524412,0.2850203785383284,0.2945102187809489,0.3039970039493395,0.312248076218395,0.3190741147755272,0.3261342376052385,0.3322728294165651,0.3378167968188569,0.3434277176487737,0.348167958688177,0.3525175358531615,0.3565637310967086,0.3615799480076048,0.3658388615591575,0.3638001748134203,0.3613272122494983,0.3581064922276148,0.3567674492477403,0.3564943926897288,0.3526955085056908,0.3494646613211874,0.3509588592034093,0.3511658871325663,0.3508956420996346,0.351406036307773,0.3522630820552299,0.3532390358218948,0.353879752195035,0.3546235423964681,0.3553813702768157,0.3551141214639421,0.3589389853891014,0.3642679204238447,0.3676021116976938,0.3722774081837237,0.3758759821618178,0.3810659802875259,0.3848429676832043,0.3850322339530972,0.3835260797734245,0.3819729442164463,0.3856457417033186,0.396808222883419,0.4053443733534061,0.0,3.267433994889269,65.90908600814016,197.17250437186885,267.9914564743981,CHI_public_implementation,77 +100000,95725,52039,491.6479498563594,6743,68.95795246800732,5395,55.49229563854793,2049,20.799164272656046,77.3313489084019,79.6973439421141,63.31030609897547,65.06313963813776,77.07415522359761,79.44669797548794,63.21466546444971,64.97322046532942,0.2571936848042924,250.64596662616623,0.0956406345257576,89.91917280833661,210.96152,147.59274155386666,220382.65865761292,154183.90889469674,396.09707,254.21199431199065,412894.4058500914,264678.7341551547,466.67433,225.6639081974876,481724.0428310264,231348.59298864505,3791.69041,1750.9456035522685,3900984.549490728,1770136.4212907285,1235.81015,558.370664130116,1268566.0694698354,561579.9403107124,1993.03622,834.61460585365,2026143.7033167928,825844.040067791,0.4319,100000,0,958916,10017.393575346045,0,0.0,0,0.0,32698,340.6842517628624,0,0.0,42364,436.92870201096895,1340655,0,48187,0,0,18632,0,0,78,0.7939409767563332,0,0.0,1,0.0104465917994254,0,0.0,0.06743,0.1561241028015744,0.3038706807059173,0.02049,0.3386026817219478,0.6613973182780523,24.26448556740664,4.144588491386629,0.3232622798887859,0.258758109360519,0.2009267840593142,0.2170528266913809,11.44538817580012,6.2105686782559495,21.72150661018988,13972.536866276749,61.69191577949679,17.091955471080663,19.77261241112953,13.016505029675775,11.810842867610823,0.5790546802594996,0.8073065902578797,0.6875,0.5866780529461998,0.1023985239852398,0.7530784186649384,0.926916221033868,0.8531914893617021,0.7378277153558053,0.1795918367346938,0.5093457943925234,0.7269461077844311,0.6263736263736264,0.5420353982300885,0.0798569725864123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027862491008014,0.0053540464625774,0.008251712763258,0.0107803292013818,0.0136218437811552,0.0163049566660895,0.0189454578825544,0.0213504599895851,0.0239135104174124,0.026660794395395,0.0290962422054479,0.0312939846920429,0.0336516692051208,0.0363392765124188,0.0390788699538609,0.0414447764898094,0.0441427728247025,0.0464356127425547,0.0488129391709284,0.0510352872557597,0.0677780329443203,0.0851593729725204,0.0998059270915289,0.1149939006435872,0.1293679748623969,0.1472209001004812,0.1615676037057082,0.1757011535880529,0.1883269563730414,0.2009764996244232,0.2153527775981374,0.2282858256801247,0.2412629286880784,0.2519269510379259,0.2634621737694086,0.2749226624089412,0.285778115365712,0.2953767508895194,0.3053931640425459,0.3138675255309638,0.3211519088477437,0.327991565629942,0.3339854634273586,0.3392438822215014,0.3444502598683009,0.3504751326669135,0.3544127779517695,0.3587715275654743,0.3627035091133164,0.367043127930784,0.3650838591382193,0.3623513543272407,0.3611799842217965,0.3592729584465122,0.3578627087198516,0.3544127547585531,0.3516401865465181,0.3511886207405706,0.3518274866291885,0.352064936223352,0.3525896787487121,0.353901494189264,0.3559396605908234,0.3576351593268886,0.3587422352771223,0.3589247929782398,0.3601825442099258,0.3639919253091093,0.3675473297541678,0.3736602143657015,0.3795139365646024,0.382029631989804,0.3874276365466901,0.3899385385841111,0.3949376512190582,0.3975538730343622,0.4037509377344336,0.4097714736012608,0.4129205921938089,0.4132480240873165,0.0,3.30164914417528,66.95387096950532,200.9414222900708,284.28678791854776,CHI_public_implementation,78 +100000,95488,52203,494.9731903485255,6575,67.43255697050938,5250,54.362851876675606,2046,21.091655495978557,77.22623088476638,79.71653658506666,63.24095407219974,65.07763287960464,76.97618036532636,79.46347888653641,63.14826191466344,64.98603020008967,0.2500505194400233,253.05769853025595,0.0926921575362982,91.60267951496336,211.13026,147.7834227546236,221106.58930965143,154766.4866314339,396.16943,254.69350019731087,414251.267174933,266090.42630291753,461.76356,223.44609345371995,479575.03560656833,230890.62621137284,3675.49539,1699.6264415818846,3808927.69772118,1739801.1214114968,1203.59958,535.1402504963318,1249158.103636059,549155.1830982522,1986.21014,834.0701009093135,2049134.80227882,846766.6248074456,0.43362,100000,0,959683,10050.299514075066,0,0.0,0,0.0,32769,342.5037701072386,0,0.0,41868,434.4315516085791,1333231,0,47909,0,0,18903,0,0,83,0.8692191689008043,0,0.0,1,0.0104725201072386,0,0.0,0.06575,0.1516304598496379,0.3111787072243346,0.02046,0.3427366584266395,0.6572633415733605,23.838217389759425,4.120657313102495,0.3152380952380952,0.2737142857142857,0.2019047619047619,0.2091428571428571,11.42170605986946,6.163027122233658,21.81685744910354,13984.134100426543,60.30831538082062,17.51951131272433,18.807877998228385,12.40301748699689,11.577908582871016,0.5805714285714285,0.7884481558803061,0.7051359516616315,0.5765027322404371,0.1084905660377358,0.7474747474747475,0.8920454545454546,0.8852097130242825,0.7285714285714285,0.1517857142857142,0.5147410358565737,0.7282728272827282,0.6372712146422629,0.5244498777506112,0.09688995215311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026954451031058,0.0053861056731617,0.008294921518062,0.0109100152516522,0.0133979475484606,0.0161341283188095,0.0186736599353054,0.021386385465841,0.0241030415255711,0.0267002725353988,0.0291611923140088,0.0313695249845774,0.033866716092096,0.0360159658405272,0.0386526837836441,0.0409785996045016,0.0432153193431603,0.045435645828569,0.0479345731103818,0.0504871197803001,0.0681837213197119,0.0839339859200738,0.098587698358449,0.1127704646775502,0.1274925237496433,0.1454219791633546,0.1607433315969084,0.1747628751587056,0.1877128719233982,0.1996388378317371,0.2149427769380263,0.2284896081919555,0.2414270605039634,0.2528724290663509,0.2646997164325672,0.2765806114624198,0.2873286713286713,0.2974021288111131,0.3069642572748163,0.3148481891752281,0.3222977518966197,0.3300297905280195,0.3364823166389746,0.3417926955350917,0.3477518774992685,0.3535968330549885,0.3579472612553732,0.3619920491876622,0.3664196567862715,0.3693907284768212,0.3669730972015682,0.3643337058344715,0.3620175946453535,0.3595016207455429,0.3571641390817269,0.3534473486070775,0.3510202135774218,0.3514787826832404,0.3516115745031408,0.3503677130044843,0.3520705608003912,0.3521439768240173,0.3528929614762195,0.3545970437162147,0.3553955795252083,0.3559078562473882,0.357277451036373,0.3619227738376674,0.3664893804374626,0.3716151640649888,0.371276936450565,0.3746808510638298,0.3774676222809003,0.3808044845087493,0.3842163764357169,0.3903774464119292,0.386924718073758,0.390940624362375,0.3950276243093922,0.3891663465232424,0.0,2.398492556118399,65.3666962697144,202.34502731570305,273.93030166342896,CHI_public_implementation,79 +100000,95690,52483,497.6800083603303,6634,67.88588149231894,5280,54.39439857874386,2029,20.650015675619187,77.36399481233721,79.74618972870792,63.33329461681414,65.09621139821449,77.10783897332784,79.49709802912825,63.23681886315143,65.00615792786509,0.2561558390093665,249.0916995796653,0.0964757536627161,90.05347034940314,213.68974,149.7015633843734,223314.13940850663,156443.948720194,400.60573,257.9743095686855,417793.3012854008,268742.94315916195,475.22158,230.36481979571408,491711.6626606751,237059.34802456625,3730.3318,1723.1277534905971,3844314.024453966,1747206.4994430917,1232.40829,551.5177225186437,1266534.0787961124,555530.5288309684,1977.27104,832.9683966402555,2014770.1745218933,827214.0634986189,0.43298,100000,0,971317,10150.642700386665,0,0.0,0,0.0,33114,345.21893614797784,0,0.0,42927,443.787229595569,1324031,0,47505,0,0,18786,0,0,82,0.8360330233044205,0,0.0,0,0.0,0,0.0,0.06634,0.1532172386715321,0.3058486584262888,0.02029,0.3457822638788753,0.6542177361211248,23.737881466152245,4.132745847287942,0.3089015151515151,0.2679924242424242,0.2096590909090909,0.2134469696969697,11.258755203881393,5.966659356398748,21.550188027120903,13928.89970561598,60.35156518348653,17.37257137512962,18.49238503058812,12.568112100046674,11.918496677722109,0.5787878787878787,0.8035335689045936,0.6934396076026977,0.5767524401064774,0.1246612466124661,0.7571989528795812,0.9086206896551724,0.8517699115044248,0.7473309608540926,0.1627906976744186,0.5061300639658849,0.7305389221556886,0.6327396098388465,0.5200945626477541,0.1154708520179372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028368506904691,0.0058717940916973,0.0084463575083245,0.0109559525987356,0.0136042654510673,0.0160769411021568,0.0185341969704697,0.0210590818567124,0.0234116106860859,0.0258862561182903,0.0284064688810722,0.0310166688919243,0.0335225986957147,0.0357451982524111,0.0379181158597628,0.0400554199925555,0.0424621631980773,0.0448719944376991,0.0474022328946547,0.0497832791531216,0.0669340267986757,0.0838113381343158,0.0999422965954991,0.1145408270581801,0.1286592243551226,0.1462937506608861,0.1609803692823281,0.1745060697300805,0.1878089665702174,0.1992260775423138,0.2140604651663384,0.2284190369032034,0.2415679620626271,0.2531310501733699,0.2638968355266053,0.2755714538850004,0.2862546444551064,0.2952425950299798,0.3041277479542849,0.3123854891901795,0.3193716671871927,0.3269289239188905,0.3327414562543651,0.3390712282131812,0.3453642062296516,0.3507157464212679,0.3552702381399307,0.3590310890711424,0.3641972913190267,0.3678482013440506,0.3662924369747899,0.3640534637416377,0.3617862165963432,0.3590953700496478,0.3566947933504367,0.3530840065360475,0.3487740999021804,0.3493822318101588,0.3502304931362376,0.3511790268575906,0.3520178113715879,0.3526125663751752,0.3541191487580824,0.355578937942151,0.3568219494029743,0.3569823938143253,0.3576752820219905,0.3617262204328133,0.3644895950506187,0.3674368747022392,0.3704967248908297,0.3749536276432243,0.379938057012831,0.3822447102115915,0.3849662643732776,0.3888221153846153,0.3952944842630103,0.3977741137675185,0.4075418994413408,0.4033646322378716,0.0,2.9242307474416886,66.46933921312983,195.6268776005373,276.5810482926129,CHI_public_implementation,80 +100000,95659,52460,497.0677092589301,6648,68.17967990466134,5272,54.42247985030159,2054,20.98077546284197,77.31725194233033,79.72499960734085,63.30264576078415,65.08474174104195,77.05535735776303,79.4673075795651,63.20510431255551,64.99226356265224,0.2618945845673011,257.6920277757466,0.0975414482286396,92.47817838971172,212.76662,148.8671309970805,222421.2672095673,155622.08188584106,400.39837,257.292849854866,417850.8974586814,268265.25397972466,468.40561,225.93869256635745,485891.0400485056,233329.83480611292,3759.43007,1739.0925761197066,3882858.7900772537,1771770.790974974,1294.69738,584.6649278392131,1338248.852695512,596304.5513854224,2007.76488,848.6644146645934,2053293.302250703,847358.2877626667,0.43497,100000,0,967121,10110.057600434877,0,0.0,0,0.0,33164,345.9580384490743,0,0.0,42505,440.5335619230809,1329222,0,47790,0,0,19031,0,0,65,0.6794969631712645,0,0.0,1,0.010453799433404,0,0.0,0.06648,0.1528381267673632,0.3089651022864019,0.02054,0.358642507909117,0.641357492090883,23.890486100514863,4.246866493454706,0.3089908952959029,0.2517071320182094,0.22097875569044,0.2183232169954476,11.344800342437114,6.0409811075837805,21.947300088299308,13995.208707887414,60.6193741549388,16.261654941935397,18.689523014476748,12.824158108828968,12.844038089697678,0.5783383915022762,0.7920120572720422,0.7157765500306936,0.580364900086881,0.1407725321888412,0.7450199203187251,0.9232209737827716,0.8565217391304348,0.7132352941176471,0.1708333333333333,0.5116834838024429,0.7036569987389659,0.660393498716852,0.5392491467576792,0.1329729729729729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027961542747728,0.0053135932667444,0.007834620497884,0.01052749240415,0.0133896321920944,0.0159417337272079,0.0183624752616652,0.0208505725990172,0.0231734891192027,0.0256029342458455,0.028224358513989,0.0305804741206572,0.0329298169765095,0.035342756693782,0.0378208107410276,0.0403716425940487,0.0426976541686966,0.0452562930962864,0.0480882276439681,0.0504555594937764,0.0672664012788765,0.0836649631367292,0.1001868727165833,0.1157796157164804,0.1302012997974341,0.147832989363391,0.1628827681367086,0.175913007359441,0.1888373484961843,0.2006801626382586,0.2160808350658724,0.2295992378807889,0.2428543439928598,0.2546748412524633,0.2651773026207079,0.2759087029297979,0.286101747884903,0.2960158421188834,0.305426321403445,0.3135894088275041,0.3215004976967059,0.3286458028663352,0.335066257712303,0.3417909731881625,0.3477261952518143,0.3523461785168007,0.357184001602845,0.3607919481874514,0.3652548846965596,0.3677971465492233,0.3653817692566431,0.3630175602645728,0.3617862722193292,0.3597631426920855,0.3580388363961014,0.3551823652216628,0.352626158599382,0.3525795900925332,0.3537854323645497,0.3550033915247581,0.3549566782941375,0.3567500197831764,0.3578482874553477,0.3578248980140763,0.3594104856245469,0.3588588195226743,0.358755931621977,0.3620010711022903,0.3670083483039205,0.3722151495862508,0.3779862700228833,0.3794502268481451,0.383500063315183,0.3894090560245587,0.3915308829101933,0.3994290472225526,0.3964506172839506,0.3977573904179409,0.3996746203904555,0.398036253776435,0.0,2.610137050605761,66.04911677656231,200.02471821500043,277.5903263917077,CHI_public_implementation,81 +100000,95850,52027,491.528429838289,6780,69.18101199791342,5366,55.326030255607726,2127,21.71100678142932,77.4717338221379,79.75734524822957,63.40399372213196,65.09033237869285,77.2054882359185,79.4949079197112,63.303654321070645,64.99471103164754,0.2662455862194122,262.43732851837365,0.1003394010613121,95.62134704530934,213.06582,149.05224669331474,222290.89201877936,155505.73468264448,397.05358,255.25094387808107,413596.01460615546,265655.81128994515,464.83539,224.8194401311203,481107.6786645801,231575.1098056365,3775.1623,1747.33862684156,3895858.382889933,1780490.6153063488,1246.55074,555.9831240731015,1286747.1257172665,566318.669782071,2070.89814,874.5517791103889,2117113.3646322377,874610.7331787907,0.4319,100000,0,968481,10104.13145539906,0,0.0,0,0.0,32934,342.9107981220657,0,0.0,42125,435.65988523735007,1334741,0,47937,0,0,18905,0,0,74,0.772039645279082,0,0.0,1,0.010432968179447,0,0.0,0.0678,0.1569807825885621,0.313716814159292,0.02127,0.3434201266713582,0.6565798733286418,23.78555548172965,4.233127494360327,0.3192322027581066,0.2568020872158032,0.2118896757361162,0.2120760342899739,11.43780649955501,6.191012553616178,22.674899382181778,13940.29230781359,61.44431874563582,16.737097866004202,19.49265433300541,12.795795176626326,12.41877136999987,0.5752888557584793,0.7895500725689405,0.712784588441331,0.5790861159929701,0.1046613896218117,0.7384318766066839,0.9031657355679702,0.876,0.6793103448275862,0.1266375545851528,0.5086614173228347,0.7170035671819263,0.6455070074196207,0.5448113207547169,0.0991189427312775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027533151128656,0.0054502537711096,0.0080715488044778,0.0105968331303288,0.0134846760425981,0.0159838025374668,0.0188758047428897,0.0209916461816216,0.0233952167963564,0.0257608606725026,0.0283595694343448,0.0307368852879339,0.0334072978303747,0.0357444181500154,0.0381411842322282,0.0405113747844315,0.0426592740475624,0.045519557241465,0.0479943511624767,0.0503075273964761,0.0666117477763063,0.0829883327060594,0.0988922309441713,0.113262861466039,0.1273518778130303,0.1456967646436879,0.1603126292458933,0.1744459458021683,0.1876081060881078,0.1997212991746167,0.2143356831512672,0.2281983656880972,0.2409291819159218,0.2524185975410015,0.2626669889259975,0.2743125048376217,0.2847465935804449,0.2948720828373127,0.3038473739067385,0.3124628265544219,0.3195873906966536,0.3266335177533441,0.3339240356784216,0.3397750388895537,0.3450988007962324,0.3508121621122372,0.3559773434862523,0.3602445783438843,0.3648959842682674,0.3685805779950714,0.3663841807909604,0.3646919951685516,0.3626178996640474,0.359710571074404,0.3572307464235416,0.3536097277810027,0.3516141763359381,0.3515902506097461,0.3514687100893997,0.3519871965857562,0.3532026974016027,0.353916760227698,0.3556093893576142,0.3565684243355833,0.3591517269441585,0.3608110914944438,0.3627345388583413,0.3664332166083041,0.3707794914547728,0.3746810598626104,0.3751686909581646,0.3792466765140325,0.3830655284961085,0.3881699147381242,0.3906501372196461,0.3950602553394583,0.3975885225885225,0.3955645161290322,0.3963865316178483,0.3996943064577761,0.0,2.48772433846318,68.14766109080844,204.32358162584143,274.54649810538984,CHI_public_implementation,82 +100000,95724,52275,493.5021520203919,6617,67.51702812251891,5207,53.643809285027785,2065,21.14412268605574,77.34438518034166,79.69890223400665,63.33412346583962,65.07321212152581,77.0870380520308,79.44289769755876,63.23807417325217,64.98035499348306,0.2573471283108546,256.0045364478896,0.0960492925874447,92.85712804275192,211.44992,148.04743178260696,220895.4076302704,154660.72435607263,395.6278,254.17589913061488,412572.343403953,264801.7729415976,466.26486,225.9828986263442,481854.2371818979,232081.2226393181,3709.14246,1721.193532945585,3827940.934352932,1751190.1434808257,1243.44943,560.4727193739168,1283799.475575613,570314.1316429692,2012.21324,846.8942497540621,2063808.9716267604,852578.7686015046,0.43397,100000,0,961136,10040.70034683047,0,0.0,0,0.0,32730,341.1683590322176,0,0.0,42193,435.5543019514437,1338159,0,48115,0,0,18867,0,0,73,0.752162467092892,0,0.0,1,0.0104467009318457,0,0.0,0.06617,0.1524759776021384,0.3120749584403808,0.02065,0.3491926182237601,0.6508073817762399,24.02352132158994,4.138471283736864,0.3168811215671211,0.2517764547724217,0.2143268676781256,0.2170155559823314,11.463939172112868,6.206410476293209,21.97325277690527,13985.168022179816,59.89628722738717,16.07366727022096,19.003004998453395,12.631674692935556,12.187940265777254,0.5771077395813328,0.7940503432494279,0.7121212121212122,0.5858407079646017,0.1137992831541218,0.7397891963109354,0.9094412331406552,0.8559498956158664,0.7263157894736842,0.1446808510638297,0.5101653564651667,0.7184343434343434,0.6532877882152007,0.5384615384615384,0.1055618615209988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026032170495522,0.005606642807174,0.0086242758144867,0.0110396798797517,0.0138174349797669,0.0163387049158633,0.0188438882207863,0.0215215061992958,0.0243688120076427,0.026859715542822,0.02954135584884,0.03210477158194,0.0346089781817434,0.0369927909371781,0.0392832458194497,0.0418122067668395,0.0443446127092239,0.0467306196525797,0.0493561562685124,0.0515411297798981,0.0682271384274871,0.084612728014819,0.0995122462894005,0.1144227331047683,0.1290176311793487,0.1469372217698872,0.1617754679959696,0.1752401825706716,0.1876875754306892,0.199523998413328,0.2140250401007632,0.2278401592349797,0.2403470810181913,0.2527301944751139,0.2635810684470451,0.2760942015345948,0.2867172675521822,0.296886249100072,0.305345936929065,0.3132788161993769,0.3209350769586853,0.3276364615402624,0.3344700602702095,0.3400616832075268,0.3453767414719541,0.3494451781724823,0.3540974564053705,0.3594797908963407,0.3642057759392061,0.3683056065751397,0.3662026868607926,0.3642182639099193,0.3623768516299981,0.3595679458630961,0.3575742250252871,0.3554703084241215,0.3525248357507855,0.3525737952797317,0.3528465854659915,0.3539157164813954,0.3555109919973012,0.3561264822134387,0.357273165719558,0.3577208437002667,0.3576651142588258,0.3591954022988505,0.3602970579834333,0.3636994730365088,0.3672031838833515,0.3704486540378863,0.3757647703406082,0.3791522260730471,0.3797916008841174,0.3809270920264016,0.3849910772987696,0.3886457717327025,0.3854551045510455,0.3890608875128999,0.3924191750278706,0.3958577569363032,0.0,2.9865359854591667,66.11846055502933,198.218782043599,267.6845864899364,CHI_public_implementation,83 +100000,95650,52208,492.3470987976999,6749,68.88656560376371,5320,54.79351803450078,2065,21.03502352326189,77.28108161739658,79.6672677687086,63.29287913429015,65.05505209982321,77.0069599165147,79.39946587487341,63.18889714659445,64.95741416121272,0.2741217008818779,267.80189383518405,0.1039819876957039,97.63793861048951,210.83458,147.65495079132037,220422.97961317305,154370.04787383205,396.67287,254.82447300415637,413870.3920543648,265571.21082906576,462.96442,224.2822582435624,478852.5561944589,230485.21763447867,3763.96211,1750.3902692416812,3879351.207527444,1774221.329418677,1229.83689,556.5307956416044,1262812.922111866,558926.8099229388,2008.0226,863.9658100364161,2047862.7286983796,859053.221265548,0.43455,100000,0,958339,10019.22634605332,0,0.0,0,0.0,32888,342.95870360690014,0,0.0,41889,432.7966544694197,1336332,0,47988,0,0,18637,0,0,65,0.6795608991113434,0,0.0,1,0.0104547830632514,0,0.0,0.06749,0.1553100908986307,0.3059712550007408,0.02065,0.3408897704732219,0.6591102295267781,24.27209461426008,4.2318366899483095,0.3178571428571428,0.2558270676691729,0.2046992481203007,0.2216165413533834,11.401356027360489,6.118057617672954,22.385567340167643,14065.961273193543,61.02678775405293,16.536840354544292,19.28695804095677,13.079704113653852,12.123285244898009,0.5795112781954888,0.7986774430565761,0.703725606150207,0.5826972010178118,0.1092745638200183,0.7265068049254698,0.9101123595505618,0.8571428571428571,0.7259786476868327,0.1119691119691119,0.5194598888006354,0.7267230955259976,0.6448445171849427,0.5378619153674833,0.108433734939759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029478802613584,0.0054238181652287,0.0083724895217025,0.0110229500868628,0.0137094969794357,0.0162518838336523,0.018985663886453,0.02151141421979,0.0242678251980577,0.027154832700437,0.0296011483646057,0.0323835925868884,0.0349554700837121,0.0374636800131885,0.0401486221488285,0.0424451728309534,0.0450006215555463,0.0474247991530173,0.0499131357475007,0.0523792150935529,0.0694911712464737,0.085658935022776,0.1018769288908484,0.1169135906393366,0.1312596281680629,0.149318633882094,0.1635825078829187,0.1770245222319279,0.1896996075328036,0.2011663999484464,0.2150154815462127,0.2284651909025865,0.2412515797271974,0.2531549888260812,0.2638558201058201,0.2754779366893384,0.2862621880311298,0.2955867105441103,0.3049157590777835,0.3132134785052948,0.3207980246455607,0.3284009098796989,0.3351054361627645,0.3421397406156472,0.3473818801753531,0.3533966434913617,0.357175112895133,0.3617814075161105,0.3658029742191051,0.3701187780558534,0.3679309039792388,0.3653843497479108,0.3642890522112239,0.3621102769266515,0.3598434489042917,0.3564339677801542,0.3539696415799094,0.3539286008739385,0.3548060418812221,0.355460001791633,0.3574225368020782,0.35721533594636,0.357961622089464,0.358439978370584,0.3600154959928331,0.361096564725597,0.3626357877841153,0.3672487977727157,0.3727596042114159,0.3764565519984092,0.3817891373801917,0.386680873734683,0.3934871957002845,0.3942592451970537,0.3968045112781955,0.4020654852716817,0.4080159705159705,0.4124898949070331,0.4130196936542669,0.4225516972298088,0.0,3.150556951172835,67.15395350674497,195.14885572463064,282.771480589868,CHI_public_implementation,84 +100000,95720,52402,495.1943167572085,6813,69.64061847053907,5433,56.09068115336398,2079,21.239030505641452,77.3612597271838,79.72539783029886,63.34108899169471,65.08851041343013,77.09207988427198,79.45887577353871,63.23927634674896,64.99048058807003,0.269179842911825,266.5220567601523,0.1018126449457526,98.02982536010065,211.59358,148.07743098112044,221051.7342248224,154696.06225861626,400.43444,257.9104947172247,417663.2992060175,268778.58160392416,474.11321,229.45894239332463,491186.993313832,236600.35009668005,3811.86853,1777.0557568044803,3938318.5436690343,1813272.9178817272,1276.57839,574.5520715209628,1316124.3000417885,583705.209432501,2026.91368,871.4331786949459,2073519.4316757207,874619.6544819111,0.43456,100000,0,961789,10047.806101128292,0,0.0,0,0.0,33106,345.1629753447555,0,0.0,42995,445.1107396573339,1335440,0,47991,0,0,18898,0,0,78,0.8044295862933556,0,0.0,0,0.0,0,0.0,0.06813,0.1567792709867452,0.3051519154557464,0.02079,0.3381858902575588,0.6618141097424413,23.871420485210265,4.223389259786801,0.3272593410638689,0.2569482790355236,0.2109331860850359,0.2048591938155715,11.651697891553829,6.357454918714292,22.33394258043137,14027.974958147466,62.41961661652312,17.194818259641252,20.34492752033166,12.343140950406042,12.536729886144176,0.5853119823302043,0.8044412607449857,0.6996625421822272,0.601078167115903,0.1256544502617801,0.7490636704119851,0.9140893470790378,0.8778004073319755,0.7333333333333333,0.1505791505791505,0.5168363351605325,0.726044226044226,0.6317016317016317,0.5587188612099644,0.1183765501691093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025526483726866,0.0051099034796009,0.0077936311420511,0.0106165740467942,0.0131699379639987,0.0157125109468238,0.0186303101992535,0.0214325828355541,0.0239655648368726,0.0265151515151515,0.0288517732459782,0.0314075899964052,0.0339195721485138,0.0364475487014659,0.038688571959299,0.0412617344195856,0.0437439158261013,0.0463045598887528,0.0490609986897656,0.0513264009002438,0.0688315756499947,0.0847734385630698,0.100779422409181,0.1158853345111153,0.1297408976872641,0.1477851781372238,0.162389174055063,0.1756925008779304,0.1882450967824638,0.1999270926031157,0.2149864845945917,0.2286876643259794,0.2421187703215563,0.2540975540417901,0.2646871219619487,0.2765071844488233,0.2867436283531314,0.2964665939674652,0.30643423425467,0.3144496358389446,0.322563105897596,0.3298103678069539,0.3363036069298494,0.3422937780013896,0.3479104984710964,0.3531243461457987,0.358144768096012,0.3620577796435523,0.36583533069897,0.3689840984732421,0.3672358993697139,0.3652380821390256,0.3629808030872805,0.3607263684469248,0.3587268535732877,0.3553204538485127,0.3536276403711562,0.3531401362778097,0.3552561935494886,0.3554709834190966,0.3564675870348139,0.3567476450173525,0.3574401008827238,0.3571396547859224,0.3572927976836771,0.3574685534591195,0.3588191416112004,0.3632070987165267,0.368709358213175,0.3745403677058353,0.3771136093592907,0.3794439138278679,0.3827672955974843,0.3817200212911565,0.3865829663637215,0.3878637331440738,0.3898823169799786,0.3944692964619764,0.3975260050604442,0.402020202020202,0.0,2.5638483645433885,70.22422532781994,201.60209837448093,282.69694026096727,CHI_public_implementation,85 +100000,95641,52479,496.86849781997256,6702,68.52709611986491,5336,55.101891448228265,2034,20.81743185453937,77.2430810454354,79.64932166376636,63.27207635196621,65.05086473658642,76.99121430536917,79.39876592148075,63.17868166061176,64.96112948864067,0.2518667400662338,250.55574228561284,0.0933946913544545,89.73524794575383,210.90938,147.65570228434242,220521.93097102703,154385.36013251892,398.7995,256.2466395024005,416291.5172363317,267243.2095442016,472.21048,229.0008649470029,489484.4888698362,236227.8362325088,3728.67703,1720.6329874506262,3852108.980458172,1753043.7642734004,1243.85627,553.485862960189,1284738.38625694,563075.9562819942,1969.4981,823.6352486509369,2017629.698560241,825665.4748092976,0.43395,100000,0,958679,10023.724135046685,0,0.0,0,0.0,32897,343.2419150782614,0,0.0,42782,443.0003868633744,1334261,0,47975,0,0,19044,0,0,77,0.8050940496230695,0,0.0,1,0.0104557668782216,0,0.0,0.06702,0.1544417559626685,0.3034914950760967,0.02034,0.3426148409893993,0.6573851590106007,24.120758313009485,4.199224807440525,0.3172788605697151,0.2672413793103448,0.2018365817091454,0.2136431784107946,11.686790454103082,6.430426846862566,21.788360104467102,14039.12909138564,61.14158231822776,17.34313701445174,19.198701328637075,12.788137212565829,11.811606762573112,0.5725262368815592,0.7819074333800842,0.6893089190785587,0.5666666666666667,0.117920148560817,0.7541418157720344,0.9133574007220217,0.8540305010893247,0.7552447552447552,0.1142857142857142,0.5009145544813169,0.698394495412844,0.6280388978930308,0.5035128805620609,0.1188004613610149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030403761958813,0.0058831882823118,0.0084261393054018,0.0113189526412582,0.0142605759156978,0.0165792555629105,0.0193933214376752,0.0220756412350923,0.0247873036649214,0.0271263849919102,0.0297507947902779,0.0320920966151823,0.0344618359077726,0.0368611371526883,0.0390586292320396,0.0414865675345893,0.0440993660133427,0.0461792364700753,0.0484516887358665,0.0507089241034195,0.0684786924990072,0.0854326625954518,0.1003947755239175,0.1149894736842105,0.1300317768651753,0.1476074528901122,0.1624845960990948,0.1766129376146006,0.1894398972877548,0.2009730217372626,0.2153378006539121,0.2293507366412627,0.2424133498899854,0.2543206361027753,0.2651720565218349,0.2761658548492682,0.2870976037927834,0.2973487837319927,0.306328020191455,0.3139901602119339,0.3212791358067619,0.328227468615327,0.3354494847802913,0.3413838198418697,0.3472414884037867,0.3525126558834424,0.3568876239672012,0.3618391684203813,0.3663515478911281,0.3701914806335931,0.3687753807962655,0.366288604385155,0.3646351107094442,0.3615889624788047,0.3584883148648044,0.3554500184433788,0.3521258841293809,0.3518063548073276,0.3521947873799725,0.3532534615108688,0.3534967012252591,0.3544228244001433,0.3546716081618901,0.3554696281642012,0.3571307772221014,0.3590996244057468,0.3598249251324579,0.3646275752773376,0.3702576443941109,0.3743167202572347,0.3764086458525771,0.3789326747557178,0.3844097995545657,0.3880424746075716,0.3881937147769606,0.3937978927203065,0.3989693941286696,0.4022633744855967,0.4058171745152354,0.4081237911025145,0.0,2.6493538156167453,65.98156604728169,204.5498426501069,278.7926248855804,CHI_public_implementation,86 +100000,95812,51964,491.46244729261474,6563,67.10015446916879,5200,53.62585062413894,1960,20.00793220055943,77.44904619750217,79.77410245120787,63.38601454967061,65.10628557575554,77.1957992227808,79.52531238936187,63.29160691648246,65.0167204174317,0.2532469747213639,248.7900618459946,0.0944076331881547,89.56515832383616,213.49988,149.32248394701244,222832.0878386841,155849.45930260557,395.44253,254.7622947949842,412101.4486703127,265281.131384547,465.36427,225.309712508923,481566.8809752432,231917.6506294446,3642.02844,1686.174418966382,3754969.0331065,1714078.3832551006,1207.69088,542.3003897545306,1243806.850916378,549460.040610397,1912.18958,807.3423647940466,1952645.722873961,806123.3885461221,0.43046,100000,0,970454,10128.731265394732,0,0.0,0,0.0,32713,340.7610737694652,0,0.0,42187,436.3127791925855,1335258,0,47965,0,0,19120,0,0,73,0.7514716319458941,0,0.0,0,0.0,0,0.0,0.06563,0.1524648050922269,0.2986439128447356,0.0196,0.344154898820789,0.6558451011792109,23.935505412663204,4.136207999704189,0.3232692307692307,0.2665384615384615,0.2011538461538461,0.2090384615384615,11.489345646359656,6.104895305680948,21.03065570762267,13810.92620952412,59.76124904555134,16.86961747514346,19.20626795287204,12.22132877769855,11.464034839837293,0.588076923076923,0.8124098124098124,0.7079119571683522,0.5740570377184913,0.1128107074569789,0.7660550458715596,0.9344262295081968,0.8809034907597536,0.7191011235955056,0.1569506726457399,0.5141535111594991,0.7323775388291517,0.6373534338358459,0.526829268292683,0.1008505467800729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027647529445125,0.0055446869329873,0.0084827453248505,0.0109304050141709,0.0135554267467992,0.015995845763799,0.0184231722112904,0.0207493442472366,0.0234236075625958,0.0260306351106608,0.0284165436956878,0.0307063906649288,0.0330698300763782,0.0354693902765479,0.0379537953795379,0.040612860566989,0.0429638983191189,0.0451170700346336,0.0476170685839558,0.0498979761805613,0.0667855913372766,0.0837428637152596,0.0999088117224103,0.1146591852388908,0.1286593462178852,0.1461169358248076,0.1603943602247429,0.1747527384877167,0.1872719513496212,0.1996444482522275,0.2139077690785511,0.2269063722206616,0.2398314838541553,0.2505320368005762,0.2609048889474435,0.2721223041464466,0.2826561525438831,0.2921203277584465,0.3007030215208359,0.3092645697898934,0.3166655123854376,0.3236347515662004,0.3304584817952287,0.3354248084806329,0.3411682033512243,0.3464960794435022,0.3513422483907988,0.3552691663706936,0.3595144314586427,0.3635478480546308,0.3608839838348035,0.3589201652416178,0.3571809930592632,0.3544298321508911,0.353566031586121,0.3494588364602256,0.3458057395143488,0.3459877653832314,0.3464516019260544,0.347000124513065,0.3489184443531213,0.3503327688733115,0.3511566727910473,0.3512747875354107,0.3533362114452918,0.3540575576873218,0.3551271860095389,0.3588715989855662,0.3629671177171703,0.3669590643274854,0.3717622466600018,0.3762670487714271,0.3781063227430009,0.3833953100098656,0.3886322933358469,0.3891515008272276,0.3904718137254901,0.386669384427232,0.387292817679558,0.3894414690130069,0.0,2.5309455634775784,66.93229372893282,199.27871848223563,262.8079624283231,CHI_public_implementation,87 +100000,95811,52421,495.4859045412322,6752,69.1465489348822,5326,55.05630877456659,2043,20.98923923140349,77.3497797498425,79.68191783373689,63.33168066437421,65.05952007280773,77.09580202607627,79.42770708259455,63.23730497881261,64.96721442179692,0.2539777237662264,254.21075114233813,0.0943756855616015,92.305651010804,212.15084,148.4708849141035,221426.39154168105,154962.2537225407,396.22006,254.68311059226707,413008.6315767501,265283.47537575755,464.09027,224.2553865100369,480277.765601027,230958.6750242958,3774.16833,1742.381691184737,3902689.555479016,1782070.1706325342,1264.506,565.556588001699,1306831.9504023546,577330.9162720285,1994.51744,837.1333690570816,2050404.3377065265,848441.4537611603,0.43456,100000,0,964322,10064.835979167316,0,0.0,0,0.0,32851,342.30933817620104,0,0.0,42096,435.3362348790848,1334432,0,47955,0,0,18861,0,0,66,0.6888561856154304,0,0.0,0,0.0,0,0.0,0.06752,0.1553755522827687,0.3025770142180095,0.02043,0.3452718006795017,0.6547281993204983,24.268492288950743,4.212453750604348,0.3133683815245963,0.2562898986105895,0.2117912129177619,0.2185505069470522,11.65083302923901,6.436218824726147,21.772927804434893,14030.04159227386,61.01255338271576,16.650849870444674,18.903459180422324,13.084657542958048,12.373586788890698,0.5818625610214044,0.8036630036630037,0.7088076692630317,0.5902061855670103,0.1170212765957446,0.75049115913556,0.9375,0.8675213675213675,0.722972972972973,0.1319148936170212,0.5140826533298236,0.7192353643966547,0.6469608659450458,0.5449308755760369,0.1131019036954087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026642624146524,0.0052825291248846,0.0081799175918972,0.0108707799530626,0.0134981181975383,0.0160582455068479,0.0184441272430668,0.0210589712442452,0.0237844578227051,0.0263669675940142,0.0290722706304459,0.031326686722865,0.0337161835624608,0.0360412311684567,0.0384456685440779,0.040898147287062,0.0433315390667053,0.0458364451082897,0.0483033061114228,0.0505481691255322,0.0683032174602512,0.0848756718321935,0.1006068482669713,0.1152585119798234,0.1294201966756959,0.1477103312644723,0.1617943441457878,0.1754563354797509,0.1874125425937596,0.1996824988200969,0.2139932329044632,0.2281032168679915,0.2420695357034071,0.2538807993353448,0.2645741883670528,0.2758311170212766,0.2868415178571428,0.2964366859379569,0.3065907130861059,0.314697967363298,0.3223070693046396,0.3301406869452338,0.3361691554062049,0.3420567239975087,0.3479538554948391,0.3528129195974328,0.3575618113830492,0.3611185323715379,0.3655628624689312,0.370461806564043,0.3688998504022965,0.3679263485763113,0.3655742561686159,0.363490131292931,0.3607084387557672,0.3573378734891711,0.3534279147182373,0.3539359079704191,0.3534586028681932,0.3531138678552888,0.354503117253812,0.354855330955212,0.3559044540531463,0.3566103212806448,0.3585664083184903,0.360327903091061,0.360637509266123,0.3649277184160905,0.3677577454927359,0.3728860439386755,0.3784902228285584,0.3828141555414283,0.3861130363556171,0.3911811988057873,0.396855286696168,0.397119584464644,0.4020492430035173,0.4077356970185334,0.4067934782608696,0.4086687306501548,0.0,2.0724198297260434,67.66197896736351,197.0754755297321,282.7457763950218,CHI_public_implementation,88 +100000,95784,52690,497.85976781090784,6746,68.95723711684623,5327,54.87346529691806,2059,21.047356552242544,77.41775944651599,79.74580702488755,63.37436231324406,65.09518127535969,77.15389732497525,79.48447856879865,63.27653519080004,65.00126732698028,0.2638621215407397,261.3284560889042,0.0978271224440234,93.91394837940936,212.02324,148.2964277267068,221355.36206464545,154823.58947073287,400.07954,257.28733883481164,416969.17021632,267892.7015545933,469.15626,227.105362488872,484650.97511066566,233135.8313843388,3742.40343,1727.9849045715353,3858984.5903282384,1756257.017852011,1222.32017,550.733021324714,1257256.754781592,556248.3933718199,2009.98304,845.3601139072247,2057183.705002923,847806.7435161765,0.43668,100000,0,963742,10061.607366574794,0,0.0,0,0.0,33061,344.38945961747265,0,0.0,42584,439.4784097552827,1336951,0,48124,0,0,19015,0,0,75,0.7725716194771569,0,0.0,0,0.0,0,0.0,0.06746,0.1544838325547311,0.3052179069077972,0.02059,0.3419858156028368,0.6580141843971631,24.059330858235352,4.191417129491771,0.3193166885676741,0.2564295100431762,0.2110005631687629,0.2132532382203867,11.271413089171398,5.993047650150559,21.85549592050215,14067.046681949574,60.90024446394034,16.621633841933175,19.37673290837509,12.740033134456803,12.161844579175286,0.5731180777172893,0.7913616398243045,0.7066431510875956,0.5748239436619719,0.1040925266903914,0.7527723418134377,0.9177570093457944,0.8707627118644068,0.7377049180327869,0.1221719457013574,0.5005271481286241,0.7099879663056559,0.6436126932465419,0.5150421179302046,0.0996677740863787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027845563442319,0.0054940042370733,0.0084727704437296,0.0113241656679734,0.0140527129260554,0.0165010790341626,0.018968504739578,0.0214032007838654,0.0239477503628447,0.0264256765055062,0.0290077900779007,0.0315444784331437,0.0339627684179147,0.0363209586756439,0.0388835041554102,0.0413357158350289,0.0436838946039368,0.0462288113628116,0.0487855554862972,0.0512540213011837,0.0683931012176163,0.0854006586169045,0.1007180669846428,0.1158383494584685,0.1298385312983853,0.1483148441627047,0.163278494019937,0.1771672797635501,0.1908084979246028,0.2030982173465889,0.217908039795644,0.232089028145427,0.2447410432119547,0.256994648902479,0.2673237950814268,0.2784490771477891,0.2892888204990968,0.2989496152333876,0.3079502838173145,0.31587014710256,0.3233798650272719,0.33028133649433,0.3359005859005859,0.3423383525243578,0.3470304118832067,0.3530549158220131,0.3580125,0.3622464541711148,0.3656716417910448,0.3704172100804911,0.3667441891728393,0.3648529694935769,0.3629605642924521,0.3605480480480481,0.3582426393075084,0.354706350664462,0.3522739856046824,0.3520322802873732,0.3526864857493522,0.3518799137147237,0.3524851118019401,0.3533665687993852,0.3542742458135596,0.3555615009029496,0.3578765063863565,0.3592276020222025,0.3591057952441976,0.363713504509884,0.3669834145657281,0.3711053780512006,0.3761794065363052,0.3807293052967793,0.3869664056579944,0.3912546659556639,0.3925224798864174,0.3963011889035667,0.393388688704371,0.3968871595330739,0.3985148514851485,0.3936458736923673,0.0,2.9199296338771763,66.65187223231082,195.33956458064617,284.0380806935269,CHI_public_implementation,89 +100000,95703,52202,493.03574600587234,6642,67.97070102295643,5295,54.564642696676174,2070,21.13831332351128,77.3893283971574,79.74998861411044,63.35181630130408,65.09357473672522,77.1219087224345,79.48775748751595,63.25113689655451,64.9985381489518,0.2674196747229018,262.2311265944859,0.1006794047495631,95.0365877734214,213.01962,149.0804505500177,222584.0569261152,155774.06199389536,400.76252,257.85127803214914,417998.1923241696,268670.3322070877,475.06312,230.0304442625309,491611.69451323367,236645.68389217657,3739.61751,1745.7407124665426,3856634.044909773,1773233.527127195,1264.96251,572.6991872824798,1300328.798470267,576983.3205672535,2018.81366,864.1760680760873,2063375.9861237367,862263.6509346947,0.43215,100000,0,968271,10117.457133005237,0,0.0,0,0.0,33025,344.2943272415703,0,0.0,43033,444.844989185292,1328145,0,47817,0,0,19119,0,0,85,0.8881644253576167,0,0.0,0,0.0,0,0.0,0.06642,0.1536966331135022,0.3116531165311653,0.0207,0.3428038456019515,0.6571961543980485,23.967740315578805,4.168477878867913,0.3008498583569405,0.2679886685552408,0.2141643059490085,0.2169971671388102,11.326650592740624,6.199274281564884,22.21817269266268,13989.62834957762,60.88691985169988,17.347097807254094,18.27458448138383,12.777751303908762,12.487486259153204,0.5869688385269122,0.8033826638477801,0.704331450094162,0.598781549173194,0.1393298059964726,0.7525641025641026,0.926391382405745,0.860813704496788,0.7644927536231884,0.173076923076923,0.5178045515394913,0.7238979118329466,0.6394316163410302,0.5463917525773195,0.1292906178489702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026028743024398,0.0056452511984756,0.0083787265552884,0.0112100565579846,0.0139278597861006,0.0166418989068257,0.0193420838089026,0.021826085181935,0.0244822054420795,0.0269213846452946,0.0298909702012542,0.0324420823671844,0.0350188555163945,0.0374278155784532,0.0400354770842787,0.0424012566397288,0.0445707541309479,0.0468549022862121,0.0491554493009718,0.0513079623706883,0.0685665354371821,0.0848167100953337,0.1004541783357982,0.1154011965973733,0.1293406987286259,0.1477297966176984,0.1619884157596588,0.1758304940374787,0.1886439645684856,0.2005598215434773,0.2152958028627125,0.2291704984366378,0.2417632603353413,0.2536585365853658,0.2643592142188962,0.275285878911444,0.2864974097892104,0.2960720996433273,0.3047678510614144,0.3129383451753381,0.3203698132419986,0.3279374956139325,0.3346819510002247,0.3406493350904516,0.3463416411601807,0.3509301466058889,0.3559375078240404,0.3604722165682882,0.3634703078039175,0.3669807088380439,0.364059515161299,0.3619696031909772,0.3599994373250432,0.3576755209989305,0.3565563425245371,0.3537699050066541,0.3506723339706417,0.3510021615248575,0.3508879571871698,0.3516260162601626,0.3539678976316084,0.354589066787752,0.3551129819270801,0.3560568796673076,0.3554079102573361,0.356179716784673,0.3573746228724312,0.3631400602409638,0.3680210157618214,0.3721215478357205,0.3753526895421862,0.3783395423097392,0.3813468226367372,0.3833028641072517,0.3874315908662011,0.3904377743504567,0.3941149565482543,0.3986254295532646,0.4086322869955157,0.4140625,0.0,3.0386985956647576,67.89119264213419,197.445196891286,274.7791815504547,CHI_public_implementation,90 +100000,95662,52141,494.3133114507328,6603,67.6235077669294,5199,53.657669712111385,1999,20.48880433191863,77.35982293729873,79.7338186448306,63.33991942654043,65.0890504111813,77.10258014712741,79.47865996144587,63.24382015805416,64.99629387955775,0.2572427901713183,255.15868338473524,0.0960992684862773,92.75653162355012,212.2131,148.4725260612227,221836.36135560615,155205.33342520826,395.75865,255.26810393950217,413021.3878028893,266159.9945009536,466.14062,226.30270045323857,481919.52917563927,232569.44381738067,3654.82857,1703.6019886366737,3775559.480253392,1735850.3153150417,1195.02837,542.2727950742437,1233823.9321778764,551467.7458909955,1943.02816,824.4449085479176,1993695.1558612613,830975.0103831409,0.43212,100000,0,964605,10083.470970709372,0,0.0,0,0.0,32745,341.5776379335577,0,0.0,42198,435.85749827517714,1333876,0,47902,0,0,18837,0,0,72,0.752649955050072,0,0.0,0,0.0,0,0.0,0.06603,0.1528047764509858,0.3027411782523095,0.01999,0.3553124100201555,0.6446875899798445,23.97491763799814,4.241189619265917,0.3235237545681862,0.2631275245239469,0.2069628774764377,0.2063858434314291,11.4712399103123,6.129986739141819,21.369452961270017,13914.14895443504,59.74822623207372,16.64889941144905,19.192470441841383,12.065666354915392,11.841190023867888,0.5868436237738026,0.7997076023391813,0.7116527942925089,0.5927306616961789,0.1152416356877323,0.7564018384766907,0.9269662921348316,0.8752598752598753,0.7463235294117647,0.1398305084745762,0.5165941240478781,0.7182254196642686,0.6461282264779351,0.5405742821473158,0.1083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025722039940049,0.0051489443650479,0.00762948308223,0.0099429221425524,0.0123739222384903,0.0150338439615247,0.0177809025973364,0.0203240419540464,0.0227992400253324,0.0252577952369261,0.0278341221546089,0.0303359835855347,0.0329417327043055,0.0350593589439976,0.037793066457622,0.0402662367191698,0.0425168483493276,0.0448680716893461,0.0474487462053478,0.0498165749541437,0.0674077479209327,0.0839441279946389,0.098966150616636,0.1141320931407106,0.1283793048889826,0.1461102175569288,0.1607082201086956,0.17400566668797,0.18662604233483,0.1986196236703412,0.2138477288647017,0.228446735469618,0.2414378530151164,0.2522794689083724,0.26385982687606,0.27591517461443,0.2868210996371755,0.2961101177423164,0.3050734009484265,0.3131376747701221,0.3206687105917741,0.3278222409435551,0.3348522327821898,0.3413240368027602,0.3461594466690935,0.3508180173082368,0.3552544406805085,0.3599949151465073,0.3635787376618672,0.366862344172548,0.3643565155407314,0.3613702022286422,0.3595355195107171,0.3568384403126309,0.3551240945255908,0.3527358461679782,0.3493710592186559,0.3492486271414948,0.3501593502621569,0.3504431116283233,0.3505274618012539,0.3516494396261534,0.3520765968168647,0.3531005755492352,0.354696637866718,0.3558526859019469,0.3574233198657031,0.3621339700892296,0.3676151096783236,0.3721668717500893,0.3751310451707005,0.3793526369114275,0.3857061105105869,0.3904688700999231,0.3940569698116778,0.396036036036036,0.3987938766042987,0.3994703605622326,0.3948871362523796,0.4021655065738592,0.0,2.7300296407934024,66.45924669660386,196.4987430345477,267.69895669863564,CHI_public_implementation,91 +100000,95841,51983,489.65474066422513,6600,67.27809601318852,5267,54.2460950950011,2021,20.617481036299704,77.34109898624328,79.63309558132033,63.34986309044478,65.04457575837434,77.07693423422104,79.37274246759861,63.2499639107582,64.94929038981047,0.2641647520222392,260.3531137217203,0.0998991796865809,95.28536856386438,213.13314,149.12743024083085,222382.00770025357,155598.78365295733,396.25017,255.4158959566205,412757.8385033545,265812.0908135562,463.19978,225.16991639141668,479148.63158773386,231639.87436761707,3673.89607,1713.2326241113333,3786154.349391179,1740478.1572091917,1215.06393,555.9601546075754,1249375.027389113,561727.0389659785,1964.43512,842.0432710207938,2006885.1952713348,841221.1575196229,0.43219,100000,0,968787,10108.273077284251,0,0.0,0,0.0,32833,341.8474348139106,0,0.0,42037,434.4695902588663,1329332,0,47787,0,0,18926,0,0,78,0.8138479356434094,0,0.0,2,0.0208678957857284,0,0.0,0.066,0.1527106133876304,0.3062121212121212,0.02021,0.3433656489654174,0.6566343510345826,23.91133849157128,4.167873323557373,0.3242832732105563,0.2625783178279856,0.2039111448642491,0.209227264097209,11.562345545889876,6.331481765293184,21.8031188512058,13948.577053186144,60.51749829053217,16.952155333918462,19.554996673685935,12.220033016367683,11.790313266560082,0.5767989367761535,0.7866955892986262,0.6932084309133489,0.5753176043557169,0.1229050279329608,0.7391304347826086,0.9183303085299456,0.8383233532934131,0.7116104868913857,0.1632653061224489,0.50823656494734,0.6995192307692307,0.6329743164871583,0.5317365269461077,0.1109770808202653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002693534504582,0.0053905624626359,0.0084086459949892,0.0109752878347919,0.0135588396723111,0.0161503704306765,0.0186639770979145,0.0213108900790614,0.0240128286315445,0.0268011497897848,0.0295614942587603,0.0321323446458057,0.0345206548756188,0.036977971664626,0.0394856153655922,0.0420175873173148,0.0443387447006514,0.0470383455764269,0.0493350359734637,0.0516459278371967,0.0689266832813689,0.0845509082168014,0.1000806595225375,0.1148360535215409,0.1293176074136478,0.1464893470935575,0.1606310391591795,0.1741576020500388,0.1869323457527989,0.1991553130594175,0.2139950917075691,0.2281341265548945,0.2403823152034447,0.2515991471215352,0.2621749226858017,0.2738848562087881,0.2846858711787225,0.2940256349661839,0.3024881946966945,0.3108458030660647,0.3184243111568861,0.3262159094897685,0.3333096607721989,0.3390681948973719,0.3439558569727023,0.3489525501517507,0.3542997419904311,0.3595248099621834,0.3641497946864597,0.3680976731279978,0.3661561691113028,0.3631291842301016,0.361075435749065,0.3600133375858969,0.3583119670860414,0.3545816121254933,0.351223462533941,0.3514297486608982,0.3515724351263103,0.3528407047824523,0.3530377668308703,0.3538372809895989,0.3551244200759173,0.3569335497250022,0.3582401048365569,0.359781265609801,0.3603590684868647,0.3655576679340938,0.3687773233676491,0.3725771715721464,0.3777187600164842,0.3801974913263944,0.3834939148073022,0.3871411117898595,0.3863377609108159,0.3915381857296522,0.3941639647985178,0.3928063401747612,0.3921190410581427,0.3944636678200692,0.0,2.781571053009235,68.2153780662668,194.8804292713981,272.89597067780124,CHI_public_implementation,92 +100000,95637,51971,491.7448267929776,6692,68.51950604891412,5338,55.17738950406223,2063,21.205182094795948,77.31769350596971,79.73959943706099,63.289715480586615,65.0811876127579,77.051090965126,79.47201259538892,63.18911152534036,64.98240910169943,0.2666025408437207,267.5868416720704,0.1006039552462567,98.77851105846958,212.1163,148.49129857555116,221793.1344563297,155265.53381594064,397.61465,255.5545615443674,415127.24154877296,266586.3123522981,468.43174,226.50320168343325,485219.39207628847,233350.3011280398,3746.84983,1754.5077938991435,3875626.912178341,1792393.3978472168,1242.63802,567.0637274937628,1281956.0943986117,575574.2469183381,2006.24336,862.9980343325091,2063405.5647918691,872674.8548008859,0.43196,100000,0,964165,10081.506111651348,0,0.0,0,0.0,32957,343.94638058492006,0,0.0,42537,440.2584773675461,1329285,0,47825,0,0,18832,0,0,84,0.8678649476666981,0,0.0,1,0.0104562041887553,0,0.0,0.06692,0.1549217520140753,0.3082785415421398,0.02063,0.350816852966466,0.649183147033534,23.668012439236215,4.117263189228664,0.3162233046084676,0.2658298988385163,0.2015736230798051,0.2163731734732109,11.23178316369086,6.009719229104306,22.22682891400081,13924.39691183898,61.53863169340752,17.452260609640977,19.22639808014469,12.9676743932375,11.89229861038435,0.5835518920944174,0.7998590556730092,0.6889810426540285,0.5913419913419914,0.1245353159851301,0.7330374128091313,0.9131205673758864,0.8354430379746836,0.7048611111111112,0.1673306772908366,0.5208721084817868,0.7251461988304093,0.6317957166392092,0.5536332179930796,0.1115151515151515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027757516816597,0.0053543179329087,0.0080507614213197,0.0106200266262868,0.0134097083032344,0.015943357783211,0.0187195233917532,0.0213426782047221,0.0240602581028112,0.0266713134750609,0.0293178668582867,0.0319572258495707,0.034383688600556,0.0368269032391169,0.0392722087905275,0.0415261077422959,0.0437744300096424,0.0461703055861395,0.0482766515422719,0.0506199747630121,0.0679269732785737,0.0843880972338642,0.0999369814095158,0.1142836078695707,0.1285076092811051,0.1467578960747347,0.1617654873369964,0.17545655163591,0.188284384528968,0.2005135036417936,0.2147311410322803,0.228025491513667,0.2407883555226287,0.2522812667740204,0.2628759149836846,0.2741273328451279,0.2845835662381218,0.2940109506320272,0.303449921050539,0.3116479585401928,0.3190382387022016,0.3264156467763658,0.3323416813834137,0.3388198571342817,0.3443499007900278,0.3490484535828005,0.3537268364802726,0.3585677162947111,0.3636139609084188,0.3679825431462011,0.36483842676921,0.3619088303384412,0.3588321621087686,0.3574796089547059,0.3550147185632303,0.3524548675552556,0.3505218411953177,0.3513828669031664,0.3511966790235236,0.3515882489177103,0.3509771682672546,0.3514397132390593,0.3523813490493346,0.3531375166889186,0.3539028652129162,0.3563654310725511,0.3580306469920545,0.3616495747873937,0.3654492023509655,0.3703277973760355,0.3719125233986212,0.3741674215378057,0.3796588755527479,0.3826915745329775,0.3867257471481097,0.3928146561979538,0.3948907356109572,0.4027358680346007,0.4061900849082443,0.4133993148077655,0.0,2.4929366561782613,69.28421090907334,203.909706506092,271.38087391260126,CHI_public_implementation,93 +100000,95686,51854,489.97763518174025,6624,67.75285830738038,5342,54.99237087975252,2077,21.11071630123529,77.34880342590687,79.70693561535106,63.338894218876014,65.07725966814095,77.09114033726995,79.45547170558761,63.241648046475184,64.9861289130202,0.2576630886369173,251.46390976344435,0.0972461724008297,91.13075512075852,212.30308,148.52738376399722,221873.6074242836,155222.77725528003,398.47418,255.9080639500692,415600.0041803399,266609.48415247235,467.47665,225.8890272041101,483534.2474343164,232127.6833698986,3748.22656,1736.7038714375794,3859239.669335117,1757284.9465574396,1255.31337,562.8193661362652,1289474.740296386,566132.7133992756,2018.64272,856.9931261753476,2053675.3548063457,847960.2760302667,0.42916,100000,0,965014,10085.163973831071,0,0.0,0,0.0,33010,344.12557740944334,0,0.0,42385,437.94285475409146,1332876,0,47956,0,0,18743,0,0,72,0.7420103254394582,0,0.0,1,0.0104508496540768,0,0.0,0.06624,0.154348028707242,0.3135567632850241,0.02077,0.3504976200778883,0.6495023799221117,23.83246375100832,4.156958432804547,0.3128041931860726,0.2579558217895919,0.2068513665293897,0.2223886184949457,11.286158958974,6.055409172023768,22.17291468007757,13871.25989666481,61.286076328960505,16.8328350841431,19.052233601933985,13.333786398315215,12.067221244568206,0.5782478472482216,0.7982583454281568,0.7031717534410533,0.5749158249158249,0.118552036199095,0.7475016655562958,0.9364485981308412,0.8789954337899544,0.71280276816609,0.1255230125523012,0.5121062223379328,0.7105575326215896,0.6407137064071371,0.5305895439377085,0.1166281755196304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026935890555223,0.0053521469407614,0.0081984678605854,0.0110220542671095,0.0137465430291198,0.0161347788466432,0.0188263834384906,0.0214963764417678,0.0241275356394665,0.0265186019139245,0.0292622429944857,0.031764766254426,0.0341640449900273,0.0367739411534581,0.0394256359472674,0.0417751601570572,0.0440265899066039,0.0462770814310616,0.0485375313237603,0.0509018537235982,0.0673218519253464,0.0833874107722258,0.0988605124546198,0.1131968265325448,0.1277374572766783,0.1459417714019719,0.1604988060493499,0.1740727725777082,0.1870678877122492,0.1982832618025751,0.2129612670365781,0.2271522103782262,0.2402088772845953,0.2515342792442923,0.26215814670115,0.2729388555785834,0.2832419025060612,0.2926928144319449,0.3021612965507842,0.3108095718346016,0.3179838784397295,0.3247697187467082,0.3317386825184431,0.3362340729020581,0.3422382583764609,0.3472292393192936,0.3525358875606462,0.3571737361407792,0.3613256238115565,0.3655413424765923,0.3637061373980018,0.3612303881090008,0.3595242792323084,0.3571604135039398,0.3544563584717657,0.3517156862745098,0.3488029640889226,0.3487677616250451,0.3489758614209816,0.348463737048946,0.3483920510947538,0.3501135578157401,0.3511010539107843,0.3530926680700497,0.353779832863714,0.3551323855484544,0.3561201451801892,0.3612258410316234,0.3646437994722955,0.3696127979625134,0.375503478579275,0.3807455081791365,0.3830330905838763,0.3848058177317035,0.3927685556191566,0.3956521739130434,0.4010946051602814,0.4067233865947292,0.409652076318743,0.4078691079080639,0.0,3.258972456057815,64.95573643376218,206.15773324574545,280.25248563956234,CHI_public_implementation,94 +100000,95632,52323,494.8029948134516,6736,68.82633428141207,5275,54.52149907980592,2054,21.091266521666387,77.26744378178137,79.68226589956795,63.28338998351626,65.06931239251786,77.00513378780717,79.4203721167672,63.18443051162465,64.97311425896042,0.2623099939741991,261.8937828007546,0.0989594718916109,96.19813355743644,213.2383,149.21784284564282,222977.97808265017,156033.38092442154,397.64367,255.4837816038517,415170.6123473314,266517.55856183264,462.3089,223.9286662603537,479037.32014388486,230865.43737151797,3731.07608,1738.7599578049592,3859474.579638615,1776159.243563827,1245.75761,565.1672098559818,1286110.642881044,574445.0710217052,2000.48796,852.2840547982607,2055403.7351514136,859707.8944008473,0.43453,100000,0,969265,10135.362640120462,0,0.0,0,0.0,32876,343.09645307010203,0,0.0,41920,433.9342479504768,1326775,0,47682,0,0,18990,0,0,89,0.9306508281746696,0,0.0,0,0.0,0,0.0,0.06736,0.1550180654960532,0.3049287410926365,0.02054,0.3431205673758865,0.6568794326241135,23.969917134390293,4.157179414436768,0.3222748815165877,0.251563981042654,0.209478672985782,0.2166824644549763,11.300347291809418,6.0698207348769655,21.958402698717308,14050.637755749296,60.52796396425117,16.194304244301215,19.385852810194887,12.79555320056928,12.152253709185782,0.5804739336492891,0.7950263752825923,0.7082352941176471,0.5879265091863517,0.118552036199095,0.7511551155115511,0.9206349206349206,0.8765690376569037,0.7491289198606271,0.1626016260162601,0.5117021276595745,0.7181044957472661,0.6423895253682488,0.5338785046728972,0.1059371362048894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002755993272134,0.0054552829040762,0.0083759746588693,0.0110560117063653,0.0136217052055463,0.0162749012099238,0.0188021290046291,0.0212763785235173,0.0237527991083753,0.027055534505535,0.0293831085585354,0.0318034268808809,0.0343387375524648,0.0368981257277101,0.0393472404289798,0.0420048176827566,0.0443279856659037,0.0466760080959053,0.0490757980798235,0.0511489219733933,0.068506751389992,0.0851828188987923,0.1009966288948866,0.1161740082770821,0.1301891971789349,0.147581781020661,0.1621966116097509,0.1760818588787039,0.1892692842623301,0.2018970480814678,0.2169340136568106,0.2310626171566024,0.2435957453757634,0.2549590576695713,0.265218013811029,0.2764292522887987,0.286883506961891,0.2965193506990566,0.3061650992685475,0.3150224729407448,0.3235079510313756,0.3300485692550763,0.337096086420923,0.3425632531566566,0.348233948581927,0.3534002642660442,0.3585357295034714,0.3628456081812509,0.3666567245470932,0.3697213368425229,0.3677361877893714,0.3656418033917,0.363173124426565,0.3606982471389251,0.357885008124264,0.3545806332729339,0.351794480720652,0.3520644842901793,0.3518283914264192,0.3517352415026833,0.3528339814762629,0.35497895656317,0.3559842635642606,0.3561788180432248,0.3562679680139154,0.3560304142632406,0.3586017506722352,0.3634556526677815,0.3683764905101249,0.3714754886254405,0.3766335719233433,0.3809909763873129,0.3833269156719291,0.3836677771751762,0.3911467277237168,0.3945142580956984,0.398656040006251,0.4045943708609271,0.4137635636778983,0.4223826714801444,0.0,2.4864272546351067,66.36830749594843,198.83745642807384,277.1244118676107,CHI_public_implementation,95 +100000,95832,52149,493.7494782536105,6573,67.26354453627181,5249,54.1364053760748,2080,21.34986225895317,77.40182060844235,79.71504155855183,63.36325590393732,65.07531351285411,77.14300750514694,79.45593361326557,63.26787233003967,64.98234709876033,0.2588131032954095,259.10794528626013,0.0953835738976565,92.96641409378026,213.68028,149.63717592229457,222973.8292011019,156145.31254935154,398.02683,255.64825165458933,414697.9401452542,266126.9217532655,465.41349,224.7945792088839,481008.7966441272,231104.77206263432,3713.00203,1713.152617906011,3836904.009099257,1750075.5884318503,1218.65829,544.4219542279385,1258093.6430419902,554532.8953042179,2022.07344,848.5672134247083,2078714.8969029132,858849.4056939528,0.43223,100000,0,971274,10135.174054595544,0,0.0,0,0.0,32973,343.4030386509726,0,0.0,42183,435.5643208948994,1329708,0,47785,0,0,18856,0,0,85,0.8765339343851741,0,0.0,1,0.0104349277902996,0,0.0,0.06573,0.1520718136177498,0.3164460672447893,0.0208,0.3560671879525051,0.643932812047495,23.88628277029621,4.172286201161402,0.3156791769860926,0.2549056963231091,0.2139455134311297,0.2154696132596685,11.265881181195764,6.15485443911998,22.330069754566665,13973.601861709452,60.29886366628189,16.333949474005998,18.825592797032797,12.808749133966725,12.330572261276377,0.5797294722804344,0.8139013452914798,0.6952323476161738,0.601237842617153,0.1086375779162956,0.7608550434201736,0.9220272904483432,0.8741721854304636,0.7572815533980582,0.1621621621621621,0.5074626865671642,0.7466666666666667,0.627906976744186,0.5425790754257908,0.0954495005549389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002308673727698,0.0049052894019398,0.0074361887757172,0.0103801659607747,0.0129319547381584,0.0154322244391058,0.0180094786729857,0.0206878954888752,0.0230901322648568,0.0256696314340398,0.0281382618857248,0.0304946267461791,0.0329444415891452,0.0354399621095117,0.0378010417203857,0.040195085659964,0.042544822160573,0.0449308875224239,0.0472070462618666,0.0494645588985211,0.0671846482765813,0.0826268307216257,0.0981306452626946,0.1134792747746801,0.1272302150696185,0.1454629952364354,0.1603084974521415,0.1746978346142807,0.1881830601092896,0.2000707001456851,0.2149295471657523,0.2289446953815564,0.2427485062466051,0.2545969037135771,0.2650382552106235,0.2760029224229543,0.2855501901437509,0.2961955299725682,0.3055205816630936,0.3130350194552529,0.321460373998219,0.3286181903203179,0.3350955624940864,0.3410259175383731,0.3465915301376018,0.3527143244375447,0.3569077918340278,0.361218519460697,0.3650074438474982,0.3687842205950261,0.3662479975229864,0.3641692466460268,0.3629670298730185,0.361095471147877,0.3582953583992637,0.3552284979171771,0.3515737502571487,0.3518864829396325,0.352536293766012,0.3533862764343713,0.3543203865313307,0.356000158002844,0.3572399941418917,0.3577079515487418,0.3597666378565255,0.3624105167252375,0.3635406889097477,0.3687376633142212,0.3725023620394023,0.3766166785685947,0.3796625626994984,0.3850047959074922,0.387072387072387,0.3893744774644675,0.3938490214352283,0.3960419366238661,0.4005199571799969,0.4075732899022801,0.4094922737306843,0.4136206233166603,0.0,2.53311582173979,65.79579084903109,202.2229574777527,271.4075660615131,CHI_public_implementation,96 +100000,95682,52508,495.955352103844,6735,68.9575886791664,5343,55.1096339959449,2072,21.153403984030437,77.32145341825886,79.70913939415054,63.3143933609397,65.08049763170774,77.05275618754662,79.44496278661616,63.21143894995897,64.98258307894794,0.2686972307122346,264.176607534381,0.102954410980729,97.91455275980354,212.80622,148.85040531741137,222409.6486277461,155567.63817769857,395.19096,254.96017099222945,412278.68355594575,265722.2952216158,471.45366,228.1709376497805,488348.3936372567,235059.3125998105,3799.4364,1780.834477731503,3921490.44752409,1811791.7348419789,1253.93518,571.5795147338911,1294484.8351832111,581335.3762817353,2021.51068,877.8413331325594,2065721.598628791,876879.9768820873,0.43492,100000,0,967301,10109.529483079366,0,0.0,0,0.0,32722,341.2031521080245,0,0.0,42693,441.8594929035765,1330172,0,47872,0,0,19007,0,0,77,0.8047490646098534,0,0.0,1,0.0104512865533747,0,0.0,0.06735,0.1548560654833072,0.3076466221232368,0.02072,0.3527825099375355,0.6472174900624645,23.75526657307112,4.117462187677392,0.313307130825379,0.2638966872543515,0.2171064944787572,0.2056896874415122,11.030699181967597,5.867552945391721,22.487833257035465,14051.590595998254,61.670380659792364,17.419110585511284,19.14926599321837,12.232584267677469,12.869419813385251,0.5800112296462662,0.8056737588652483,0.7037037037037037,0.6005459508644222,0.1077586206896551,0.7432176656151419,0.9206349206349206,0.8571428571428571,0.7482517482517482,0.1328125,0.5111761575306014,0.7283511269276394,0.6427378964941569,0.5485854858548586,0.1006637168141593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028471265299505,0.0055471047561099,0.0085268799740133,0.0111279356917104,0.0139691518801888,0.0165125091679569,0.0192337110048237,0.0219218084726207,0.0243206771759798,0.026869888323626,0.0297320018864442,0.0324611308509108,0.034862309820905,0.0372408392069576,0.0396168376721237,0.0420811017597551,0.0445717363607172,0.0471485652015982,0.049264208829494,0.0516249400679577,0.0694633045730879,0.08598109316276,0.1012028465268593,0.1162002589010387,0.1303274277453597,0.1483782868272854,0.1628768577494692,0.177156127492756,0.189734051650419,0.2013195301185431,0.2156040901205702,0.229873856315305,0.2427621772763374,0.2541200674093366,0.2646922873745377,0.2759560420082421,0.2865322796678274,0.2960555174391794,0.3047341306765313,0.3130837372938655,0.3203314891548415,0.3278180179969342,0.3346640447308567,0.3409265390336356,0.3465677631178938,0.351328033524373,0.3561465454636516,0.3611139395173607,0.3660832189741332,0.3700687634458273,0.3683437731528254,0.3662626735084123,0.3645152198421646,0.3623349769365357,0.3608113940440224,0.3580066914269929,0.3551865772237816,0.3553107530417626,0.3552597813628043,0.3565055695614082,0.3571897693794449,0.3579557825148942,0.3580417820286937,0.3585713645128021,0.360288617003306,0.361388343156516,0.3617936294045127,0.3654004171670564,0.3686122377005819,0.3707068292294206,0.3721408026297767,0.3735776483786527,0.3782769152456096,0.3842417701025364,0.3840311402259565,0.3874849578820697,0.3900202083009482,0.3893695920889987,0.3975501113585746,0.3967454475009686,0.0,2.89653361688937,69.19818715968566,201.8588333703254,274.6078382802596,CHI_public_implementation,97 +100000,95703,52080,493.2238278841833,6642,68.04384397563294,5254,54.29296887244914,2006,20.574067688578204,77.3455376358958,79.73262060409495,63.32130932583449,65.08734865373458,77.09402487186458,79.48239499644696,63.22701726584331,64.99615752412434,0.2515127640312187,250.22560764799096,0.0942920599911829,91.19112961023744,213.38988,149.28094342865182,222970.9413498009,155983.55686723697,396.3898,254.52050997142757,413569.9612342351,265330.8359940938,468.30832,226.85375172196743,485702.1201007283,234206.8776931579,3659.37512,1700.6602798150377,3782206.890066142,1735547.0777457724,1199.15604,547.9375272754065,1234277.6088523872,553827.146529131,1953.81946,830.5488845093379,2004851.9482147892,835202.3920340104,0.43174,100000,0,969954,10135.042788627316,0,0.0,0,0.0,32828,342.37171248550203,0,0.0,42417,439.5577986061043,1330826,0,47797,0,0,18889,0,0,58,0.6060416078910796,0,0.0,2,0.0208979864790027,0,0.0,0.06642,0.1538425904479547,0.3020174646190906,0.02006,0.3422222222222222,0.6577777777777778,23.99158757229162,4.14423764394133,0.3146174343357442,0.2708412637990103,0.205367339170156,0.2091739626950894,11.24151745580434,5.972703803688786,21.49379195327276,13956.79953097165,60.28798842250773,17.39829860283057,18.79072183311781,12.312629751509242,11.786338235050122,0.5801294251998478,0.7962052002810963,0.6969147005444646,0.5787079162875342,0.1177015755329008,0.7655748233782916,0.9204737732656514,0.8574468085106383,0.7669172932330827,0.1782608695652174,0.502028671896132,0.7079326923076923,0.6331360946745562,0.5186074429771909,0.1012956419316843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023303174297611,0.0051422485927278,0.0078481141174678,0.0101526453789711,0.0128184259786766,0.0155428804237115,0.0180702004854071,0.0206897256007271,0.0232841132198952,0.0258059230737721,0.0282754730526639,0.0307313064913722,0.0331118334430546,0.0355913690414854,0.0378947368421052,0.0402675543792903,0.0425121973958171,0.0450224178013948,0.0476175620307397,0.04999062285107,0.0671526443311889,0.08346502841474,0.0996305703070884,0.1148965720418341,0.1297835534365638,0.1481763560971482,0.163069315335965,0.1756899251227539,0.1888155995766562,0.2006827184215893,0.2154260766452864,0.229879455437502,0.2427775237846428,0.2547080000437699,0.265633427631072,0.2777937851855135,0.2878559548128551,0.2968197879858657,0.3066212765957447,0.3145840967387321,0.3219893773360025,0.3287764147302686,0.3348674869853289,0.3399849081914983,0.3458009708737864,0.3500215371361762,0.3539492269039911,0.3588600601973559,0.3636093566345048,0.3680693492587574,0.3661192646999583,0.363365793443972,0.3608499515156625,0.3587710318776222,0.3566168299079822,0.3537803574156102,0.3510969803381895,0.3510412728677328,0.3518914206594759,0.3519008619148099,0.3518275046016303,0.3527534393212544,0.353130387251398,0.3527935839419329,0.3547951481829801,0.3558373643613544,0.3568533424673175,0.3611207303636077,0.3636683063949402,0.3667992047713718,0.3700873362445415,0.3733955659276546,0.3764683711288397,0.3752186810679242,0.3774653203736907,0.3831012962073932,0.3844248335655674,0.3835279655808236,0.3855653128430296,0.385631067961165,0.0,2.332666421649145,68.66358285371273,191.6113885864004,274.3708496694421,CHI_public_implementation,98 +100000,95607,51963,492.40118401372285,6619,67.82976141914295,5236,54.13829531310469,2003,20.511050446097045,77.23812690061078,79.67042652008288,63.25655152000609,65.05484458875536,76.97871818497832,79.41234774420549,63.158316569173465,64.9601047827742,0.2594087156324605,258.0787758773937,0.0982349508326265,94.73980598116329,212.8797,149.02870686733544,222661.2068154005,155876.35514903243,395.04359,254.3062367563504,412539.6885165312,265336.30871494784,462.5047,223.0290652037271,480245.7560638865,230555.05473156524,3669.63795,1707.1241189418458,3794908.9188030167,1742301.194816906,1194.34658,542.4142749061812,1233684.4582509648,551829.5207051253,1943.18378,837.0902673122296,1991473.281245097,839952.6670253645,0.42974,100000,0,967635,10120.96394615457,0,0.0,0,0.0,32771,342.0774629472737,0,0.0,41924,434.9681508676143,1324833,0,47709,0,0,18904,0,0,59,0.6171096258642149,0,0.0,0,0.0,0,0.0,0.06619,0.1540233629636524,0.302613687868258,0.02003,0.3353465631291343,0.6646534368708656,24.183262492740788,4.162773336082633,0.3206646294881589,0.264514896867838,0.2072192513368984,0.2076012223071046,11.167251876197644,6.0330086771298985,21.65428177572704,13944.258893381126,60.42576919289035,17.004739224524545,19.36321042021224,12.1341769693732,11.923642578780374,0.5739113827349122,0.792057761732852,0.6908874329958309,0.5850965961361545,0.1032258064516129,0.7347853939782191,0.8992932862190812,0.8385744234800838,0.7236363636363636,0.1604938271604938,0.505578231292517,0.717948717948718,0.632279534109817,0.5381773399014779,0.0866983372921615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028376844494892,0.0058320570425892,0.0084781902363739,0.0109165201305103,0.0134546490799544,0.0158929062624163,0.01871589576215,0.0211457524618967,0.0237812736534173,0.026251369926152,0.0289029795616843,0.031554719850395,0.0337378166136618,0.0361645756229317,0.03862279777764,0.0410992922478374,0.0433948767921379,0.0456759985456811,0.0478123731301333,0.0501069323457305,0.0668262746860984,0.0838887491616364,0.0995082897308201,0.1139197842938995,0.1278698912239941,0.1464070841454114,0.1617225185405554,0.1753957678162145,0.188404866617444,0.2003953545836422,0.2152292152292152,0.2300043374539145,0.2427657464223823,0.2541674429819274,0.2649697958463777,0.2759409094440559,0.2863680100248383,0.2964341714891649,0.3046624342958564,0.3131224942273892,0.3198518742091638,0.3270444679103602,0.3334204027355623,0.3393001070650931,0.3448578641202942,0.3495744891395774,0.3546664991835196,0.358986475268515,0.3624390561008906,0.366537294848529,0.363901766526552,0.361987512432313,0.360113074204947,0.3583893006861138,0.3563093339692096,0.3543091655266758,0.351091397593043,0.3512510514770159,0.3513072456797333,0.3517339122010728,0.3527220738176756,0.3548303856765716,0.355978947368421,0.3562037890194844,0.3562438093397434,0.356278167906928,0.3583347669017719,0.3618541706191108,0.3635594415456212,0.368517194821698,0.3698373538011696,0.371308465918161,0.3752834467120181,0.3785431270953977,0.3843266072266541,0.387168922895821,0.3895927601809955,0.393951532145003,0.3942966822045516,0.3890369242481918,0.0,2.4508605729886552,68.71505528444828,197.52212196312385,267.213224086432,CHI_public_implementation,99 +100000,95727,61934,602.4737012546094,1195,11.407439907236204,1051,10.477712662049369,327,3.113019315344678,77.33641368994157,79.7107766109778,63.332022412709286,65.08924523550216,77.27574625906107,79.65725216338868,63.30499344255284,65.06649929954284,0.0606674308804997,53.52444758912611,0.0270289701564507,22.745935959321173,2951.8699,2149.661386158434,3083604.980830905,2245590.788858312,3.04005,2.2295349313705843,2655.238334012348,1809.917751300088,893.96114,454.71089117740274,930630.4699823456,472571.4449519384,783.59171,457.7254688840827,785521.3785034525,445617.29174499225,203.26127,124.9089122478025,198660.6704482539,116848.5919467706,297.84828,167.6116335172202,282617.7358529986,151539.63204072334,0.38099,0,100000,0,0.0,284806,2975.158523718491,0,0.0,300,2.580254264731998,0,0.0,79734,829.6300939128981,0,0,0,0,0,0,0,0,0,0.0,382,3.990514692824386,0,0.0,0,0.0,0.01195,0.0313656526418016,0.2736401673640167,0.00327,0.5808333333333333,0.4191666666666667,10.782478841028473,2.79640826385662,0.291151284490961,0.4900095147478592,0.104662226450999,0.1141769743101807,12.886227238805912,9.262926657522993,3.952287904314773,7586.094300554416,13.237279585727496,6.633176138421576,3.812812127886153,1.4481552638094166,1.3431360556103518,0.7326355851569933,0.8446601941747572,0.7647058823529411,0.7166666666666667,0.1363636363636363,0.7967625899280576,0.9,0.8630952380952381,0.8412698412698413,0.1692307692307692,0.6606060606060606,0.788235294117647,0.644927536231884,0.5789473684210527,0.0888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020976044748895,0.0042089676365886,0.0064876389664449,0.0087303845841125,0.0111288566981679,0.0133623938239667,0.0157354245913174,0.0179497651623442,0.0202631552043184,0.0223880597014925,0.0246527599815488,0.0267034896255762,0.0288652372872641,0.030950664332063,0.0331840600945167,0.0352558139534883,0.0375125542290926,0.0395547625469408,0.0415813595784703,0.0435502687388025,0.0579525520006682,0.071584013391923,0.0847429188645015,0.0980458114770469,0.1100641856641477,0.1257397700371998,0.0692155220843093,0.0866412173154833,0.103559421527296,0.1160718111315823,0.1353849464679614,0.1527807810405224,0.1688267950068986,0.1685649700239153,0.1849895104511055,0.201571635407111,0.1155066991880784,0.1354569143678677,0.1541581230953972,0.1656914954403126,0.17693577621538,0.1935559133011362,0.2087521827363254,0.1849302792414955,0.2014940733476202,0.2176790560037327,0.1425045191049055,0.1579774426561906,0.1749171512939872,0.1813342796309439,0.1727521312530159,0.1816088488054935,0.189071742970086,0.1512167775877186,0.1595383069283518,0.166463748706398,0.1110622111848102,0.1119613174218126,0.1205991875423155,0.1210916096647047,0.1112592098929986,0.1200920185596755,0.1265721001195827,0.1028856289529163,0.1093141305630976,0.1193938309779969,0.1193874975460638,0.1273761320433963,0.1362995079315921,0.1446984151707488,0.1528331466965285,0.1607133518121437,0.1665419628382591,0.1750149970005999,0.1808804568060416,0.1859759654649399,0.1958439228584242,0.2011008452919205,0.2068511198945981,0.2131147540983606,0.0,1.7447921741458317,22.644241205327628,35.65955684848648,29.60297197852198,full_Colonoscopy_compliance,0 +100000,95607,61989,604.5791626136162,1252,11.850596713629756,1114,11.024297384082756,374,3.524846507054922,77.26635035352784,79.70415892714499,63.26822878755484,65.07203266284469,77.19714329507991,79.6455655966038,63.23636946898397,65.04673304723633,0.0692070584479296,58.59333054118565,0.0318593185708664,25.299615608361137,2947.49232,2145.6528836312564,3082915.6860899306,2244232.915614188,3.55973,2.5021786060628037,3086.1234010062026,1980.0299715042356,896.15018,454.5910332812056,933774.7863650152,472731.3797376303,840.00143,491.5872830435198,833714.738460573,469295.7536537968,223.24449,135.4464926361031,217009.91559195452,125239.9968938363,341.07648,191.66614856198703,319780.3508111331,167412.32595005736,0.37982,0,100000,0,0.0,284163,2972.188228895374,0,0.0,353,3.0227912182162395,0,0.0,79907,832.1984791908542,0,0,0,0,0,0,0,0,0,0.0,389,4.068739736630163,0,0.0,1,0.0104594851841392,0.01252,0.0329629824653783,0.2987220447284345,0.00374,0.5771065182829889,0.4228934817170111,10.783874133918774,2.861019641158321,0.2899461400359066,0.4614003590664273,0.1050269299820466,0.1436265709156194,12.17339427097531,8.445864546051213,4.42852638424124,7634.07962700679,13.988977698989002,6.607019832757306,4.030821346734297,1.9345840462465935,1.416552473250802,0.725314183123878,0.8560311284046692,0.7708978328173375,0.61875,0.1709401709401709,0.8006756756756757,0.9247311827956988,0.8604651162790697,0.7407407407407407,0.1333333333333333,0.6398467432950191,0.774468085106383,0.6688741721854304,0.4936708860759494,0.2105263157894736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.004666497590667,0.0070277351803142,0.0092219782007483,0.011380061480833,0.0137285078019099,0.0155535597648595,0.0177186474970111,0.0198186952607023,0.0219694640844348,0.024200500841578,0.0261908188228522,0.0283396642063761,0.030642650197445,0.0325469456896729,0.0345815958030235,0.0366205066545047,0.0387415739673241,0.0408101666337076,0.0427821987672218,0.0578352552508599,0.0710730117476918,0.0838480608428925,0.096610419431629,0.1087792306554849,0.1239685179496414,0.0679272155262206,0.0859477507653904,0.1028473560265467,0.1170484827645491,0.1351456310679611,0.1527946405342121,0.1693021432305279,0.1703712629953003,0.1866300790161007,0.2029567358346179,0.1173606147248034,0.1372253242074927,0.1565605515110904,0.1680213695300767,0.179771769825471,0.1961061905486199,0.2109435078379177,0.1852663338242161,0.202645470541836,0.2185906751065244,0.1433625442226195,0.1598135233667416,0.1782000439202717,0.1853849087872052,0.1766433735262953,0.1855661630757852,0.1934633927570355,0.1536196072234114,0.1625042461120383,0.1703902972825095,0.1116292946422963,0.1135294404922756,0.1219413138389684,0.1236161709051038,0.1124366847876505,0.1208211143695014,0.1275640096868337,0.1038162216980092,0.1108977550197947,0.1193367045717072,0.1202164344388684,0.1289035928514006,0.1370070604442913,0.1443527671829999,0.1530244358392308,0.1590378933181276,0.16653312788906,0.1733490566037736,0.1818675352877307,0.186533212010919,0.1936288901937757,0.1997674869211393,0.2043546694648478,0.2117052023121387,0.0,2.366397998871303,23.592188117641296,37.30157878171788,30.83076289613762,full_Colonoscopy_compliance,1 +100000,95708,62144,605.6964935010658,1225,11.60822501776236,1092,10.855936807790362,374,3.510678313202658,77.34534288058313,79.7141382229939,63.32656324425341,65.07451997020998,77.27999407710838,79.65739113729433,63.29771144927629,65.05096550962125,0.0653488034747482,56.747085699569766,0.0288517949771147,23.55446058872701,2946.32277,2145.407375407498,3078433.756843733,2241602.926996727,3.6676,2.548538923453823,3235.4557612738745,2066.210686101291,899.0315,456.59098245997257,935631.0548752456,474231.833804093,812.89965,481.052233316206,810641.5973586325,464339.826270605,218.32152,130.3469312198185,213479.29117733103,121718.33755577712,342.39562,186.8858232720846,320815.0833786099,164582.60772322028,0.37984,0,100000,0,0.0,284297,2970.4517908638777,0,0.0,354,3.1136373134952144,0,0.0,80193,834.2667279642245,0,0,0,0,0,0,0,0,0,0.0,350,3.6569565762527687,0,0.0,1,0.0104484473607221,0.01225,0.0322504212299915,0.3053061224489796,0.00374,0.5957792207792207,0.4042207792207792,10.29258619029908,2.727111675591116,0.3159340659340659,0.4597069597069597,0.1053113553113553,0.119047619047619,13.513939722441934,9.955208414316274,4.449258099422981,7647.667931993542,13.879953131835157,6.442580399507696,4.410672078642948,1.6092943541730476,1.417406299511463,0.7417582417582418,0.850597609561753,0.8202898550724638,0.6692307692307692,0.1130434782608695,0.8134715025906736,0.926070038910506,0.9148936170212766,0.72,0.1186440677966101,0.6608187134502924,0.7714285714285715,0.7070063694267515,0.6,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0043074615369022,0.0063512032790877,0.0086938858419662,0.010982529642661,0.0129506510960201,0.0152492788192002,0.0175576493165787,0.0196062396499908,0.0217522596759169,0.0237118897750804,0.0260217703840624,0.0281109213963917,0.0303292537190423,0.0324974200206398,0.034649934359462,0.0366097411945028,0.038802407638024,0.0406334154735539,0.0425281367236348,0.057773646778691,0.0721103529116255,0.085381209208621,0.0979851649218791,0.1098753838199449,0.1252010667118185,0.069439578755162,0.0874756361235075,0.1049521244763614,0.1187245954033097,0.1371809651041274,0.155109508807258,0.1714503318463714,0.1711561826162148,0.1873203924116138,0.2029123631366638,0.1170727897532021,0.1371411220943962,0.155408088026771,0.1673286252246271,0.1789148827962458,0.1960800345741885,0.2113723126381354,0.1878357200110062,0.205085300643847,0.2204252807123267,0.1448030463824208,0.1616153933908811,0.1778234033211952,0.1859843949421718,0.1768464574328133,0.1854222928975831,0.1927402934774977,0.1501237125266125,0.1589152442178378,0.1666438429117025,0.1109035832561643,0.112250369672251,0.1206908183228766,0.1226021243988796,0.1122123175165642,0.1204224119488904,0.1285496434900878,0.1041556612079591,0.1108033240997229,0.1190232415275929,0.1210990785334484,0.1289106787191665,0.1361446194853569,0.1440073968486342,0.1523868622844732,0.1588129032258064,0.1639804639804639,0.171050687158268,0.1775615965087735,0.1802697759487883,0.189201118140356,0.197429906542056,0.1993127147766323,0.2056285178236397,0.0,2.0637696598880835,23.48026215556007,39.022540097506734,28.793987358627152,full_Colonoscopy_compliance,2 +100000,95655,61439,597.7314306622759,1201,11.16512466677121,1083,10.652867074381891,368,3.4185353614552296,77.2498286400838,79.64788336447587,63.26585613190741,65.03853535900477,77.17971459767644,79.58827079118558,63.234461341354205,65.01325928455617,0.0701140424073685,59.61257329029479,0.0313947905532074,25.27607444859825,2945.45803,2143.8961388101843,3079251.508023626,2241279.743672766,2.98555,2.225797453627743,2490.366420992107,1696.1031348363838,886.93213,450.35124669142095,922879.0026658304,467397.0604977414,813.79522,481.3483484460928,810613.768229575,463065.94369985175,214.8654,131.6013490791143,208772.69353405468,121726.48484565828,330.63386,184.72901882274505,307789.86984475463,161801.52452520817,0.37774,0,100000,0,0.0,284317,2972.317181537818,0,0.0,299,2.446291359573467,0,0.0,79236,824.0029271862422,0,0,0,0,0,0,0,0,0,0.0,334,3.4917150175108462,0,0.0,3,0.0313627097381213,0.01201,0.0317943559061788,0.3064113238967527,0.00368,0.5962171052631579,0.4037828947368421,10.599134798745157,2.733764693223691,0.2816251154201292,0.4681440443213296,0.0904893813481071,0.1597414589104339,13.337807581123412,9.858913703910028,4.41390119687085,7568.300949318932,13.758127517179537,6.509807285339181,3.853665766644014,2.2211259700834463,1.1735284951128944,0.7359187442289935,0.8500986193293886,0.7868852459016393,0.6416184971098265,0.1530612244897959,0.8,0.9256198347107438,0.874251497005988,0.6972477064220184,0.1923076923076923,0.6647173489278753,0.7811320754716982,0.6811594202898551,0.546875,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002502127314721,0.0048880911091504,0.007054333593853,0.0093883357041251,0.0120535850515201,0.0144216079685494,0.0166313170453154,0.0187675499055496,0.0209245244426263,0.0230333568890117,0.0255095237606802,0.0273860029378832,0.0296036384590056,0.031498010760446,0.0335542753308967,0.0353707725721377,0.0375413182463448,0.0396378812732293,0.04167663673911,0.0436759078729238,0.058310956943298,0.07215037436515,0.0843898241047814,0.0972432659932659,0.109286618826509,0.1242856538119629,0.0680266329683866,0.0853394716369875,0.1012943945228926,0.1153387545519975,0.1341669993418426,0.1517132942962481,0.1682894119955951,0.1685547281959051,0.1845267653192968,0.2009041631492424,0.1156974857616005,0.1362447285930135,0.1542617934454947,0.1654954644620507,0.1772999443000371,0.1935665583081996,0.2084233774252535,0.1844944846314676,0.2018231385244505,0.2174519509696214,0.1406843153714121,0.1564498458559453,0.1734602681173499,0.1803620434874393,0.171374359112379,0.1806393120595629,0.1886986108767785,0.149867374005305,0.1587933894088378,0.166016755521706,0.1088375458077098,0.1098913646298894,0.1185451584447309,0.1197723686776463,0.1100642955364775,0.1179176945064411,0.1245652533951639,0.101313113449465,0.1089769462712789,0.1178594290103699,0.1189971554464833,0.1281091857077135,0.1359844081241879,0.1435750734498221,0.1527084896914043,0.1607921604843261,0.1681873479318734,0.1751084319635374,0.1811116131947582,0.1864214350590372,0.1931984755203752,0.1967181090056651,0.2030510257759074,0.2118030412744388,0.0,2.634952352735928,22.532016445842004,37.35044377822427,30.90697550865969,full_Colonoscopy_compliance,3 +100000,95729,61920,603.2132373679867,1238,11.532555442969215,1104,10.76998610661346,384,3.551692799465157,77.32698317968122,79.68505737698548,63.31555014592704,65.06044694430713,77.25606210387404,79.62644540867693,63.283541022710345,65.0356068868604,0.0709210758071776,58.6119683085542,0.0320091232166959,24.840057446724018,2946.83294,2146.245737930737,3078288.3974553165,2241982.5736513883,3.64648,2.723313855561907,3072.350071556164,2107.996380994168,895.67356,455.49784954894193,930502.836131162,471865.48938920815,826.85964,485.506459178584,815051.7711456298,458818.3396653395,213.50415,131.5876748671533,203388.00154603095,117999.85405961596,347.24034,190.63074950764104,320983.79801314126,164658.1636079868,0.37876,0,100000,0,0.0,284361,2970.458272832684,0,0.0,355,2.935369637205026,0,0.0,80077,831.3781612677454,0,0,0,0,0,0,0,0,0,0.0,342,3.5621389547577014,0,0.0,6,0.0626769317552674,0.01238,0.0326856056605766,0.3101777059773828,0.00384,0.579454253611557,0.420545746388443,10.550923856627492,2.8199300992129994,0.3125,0.4565217391304347,0.0951086956521739,0.1358695652173913,13.896659827268804,10.161666617146084,4.50110218954824,7609.722659740384,13.986051815952433,6.482870716369215,4.346337015498407,1.858285631376431,1.2985584527083815,0.7409420289855072,0.8492063492063492,0.7855072463768116,0.6866666666666666,0.1523809523809524,0.8266897746967071,0.932806324110672,0.8913043478260869,0.8117647058823529,0.1454545454545454,0.6470588235294118,0.7649402390438247,0.6645962732919255,0.5230769230769231,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026645053442074,0.0050191640810366,0.0074092117816616,0.009773244473342,0.0118789727943046,0.0143068071890433,0.0163254068605457,0.0187003654329052,0.0206042271370753,0.0227428583126068,0.0249254389111518,0.0268949659193561,0.0288433863739155,0.0307982206845422,0.032689649481133,0.034707942838839,0.0368249958588703,0.0387515688369343,0.0409283182805533,0.0427743978664888,0.0569051372258354,0.07065740469515,0.0844088445287845,0.0971553518491264,0.109973858413796,0.1254639077154065,0.0685752471466757,0.0861310759729542,0.102917125418221,0.1165042291013696,0.1351936881588307,0.1534654537578514,0.1697312588401697,0.1697917122478449,0.185796198672727,0.20150477583494,0.116633539540389,0.1358739093723613,0.154974511518069,0.1657369970334566,0.1779461961238067,0.1949101971567308,0.2102353442560848,0.1865973079550766,0.2034291404077568,0.2194467356913341,0.1431339458716169,0.1589644572038312,0.1763011008320843,0.1840994278950483,0.1742360245115786,0.1833997725996246,0.1907891049711371,0.1507568025988586,0.159919656175693,0.1665829489931047,0.1104928957626053,0.1121543994402043,0.1201570060569146,0.1217955499136076,0.1123830306616858,0.1202300867700107,0.1276410818864722,0.1027238896351265,0.1082225481383356,0.1156535771920387,0.1175977887595276,0.1269260341380901,0.1341304645744826,0.1417529757304065,0.1501282391438931,0.1583959641717286,0.1657031582790726,0.1742318691794382,0.1817112879884225,0.1878980891719745,0.1875825627476882,0.1928973413545507,0.1930758988015978,0.200965824665676,0.0,2.9343243665618237,22.354688661578557,40.90004627847292,28.520750186969437,full_Colonoscopy_compliance,4 +100000,95753,62345,606.393533361879,1205,11.331237663571898,1076,10.579302998339475,382,3.5403590488026486,77.39144353273707,79.72840492403893,63.36142006586866,65.08637315721815,77.31911602373691,79.6681152352929,63.32779723722732,65.06018113593584,0.0723275090001607,60.28968874602469,0.0336228286413415,26.192021282312798,2949.60033,2147.6000233649934,3080426.023205539,2242854.0341973547,3.43044,2.5152410344310607,2912.6293693147995,1957.4825925634404,902.16427,459.029800700892,937815.9431036104,476159.8379750794,814.24426,485.3791877295077,803460.7897402692,460089.8370330247,206.62644,131.23611369790595,197112.0800392677,118410.53155081086,349.9381,200.9453321549368,322449.9702359195,173090.35176652,0.38226,0,100000,0,0.0,284596,2972.188860923417,0,0.0,337,2.8197549946215785,0,0.0,80470,836.140904201435,0,0,0,0,0,0,0,0,0,0.0,358,3.7283427151107538,0,0.0,2,0.0208870740342339,0.01205,0.0315230471406895,0.31701244813278,0.00382,0.5904605263157895,0.4095394736842105,10.469652883441782,2.779385310658676,0.2732342007434944,0.4786245353159851,0.1078066914498141,0.1403345724907063,12.775078011546492,9.272689980626568,4.55816938340491,7640.816054688007,13.60829640507596,6.617068209246995,3.66339042445803,1.8948893005717544,1.4329484707991806,0.7295539033457249,0.8427184466019417,0.7993197278911565,0.6357615894039735,0.1724137931034483,0.7876106194690266,0.9032258064516128,0.896774193548387,0.7674418604651163,0.2105263157894736,0.6653620352250489,0.7865168539325843,0.6906474820143885,0.4615384615384615,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023286894540741,0.0048744894960325,0.0071528580994703,0.0094758330709621,0.0116826468464987,0.0137102027522188,0.016109639290809,0.0183443181586304,0.0204517361501292,0.0226835557010722,0.025,0.0268897734734077,0.0290793259350596,0.0314937938700314,0.0335852051913779,0.0356176270065905,0.0375177238902516,0.0395681214736143,0.0415705108214307,0.0435765480456704,0.0578404559594146,0.0724428399518652,0.0860278226567909,0.0987968533086534,0.1116781778879105,0.1272869561538949,0.0685361559510425,0.0853327658668936,0.1019577685923932,0.1158414992388018,0.1350687940055552,0.1524849926991509,0.1692789287189409,0.169809259542485,0.1860999362483237,0.2026152467558328,0.1173219220825532,0.1374334673344263,0.1566752399188751,0.16738133626062,0.1786778463030975,0.1954790649884407,0.2107016300496102,0.1874917756271458,0.2048623308662314,0.220342730790492,0.1437212376688325,0.1596528843836033,0.1759992774752922,0.1829441277680002,0.1733629657397614,0.1828024606971975,0.1903763057431723,0.1515095069564843,0.1601395718618415,0.1675098455013632,0.1113476953907815,0.1125488479187949,0.1210685194866519,0.1223590773730859,0.1119828288061579,0.1215921057763563,0.1278274700985354,0.1029473359345722,0.108287502370567,0.1167795219041756,0.1185276210690945,0.1273775393816085,0.1364293085655314,0.1448521995500039,0.1531892180410995,0.158978882374306,0.1660729640093354,0.1732248520710059,0.181809938338774,0.1838101725703905,0.1931044473417354,0.200845665961945,0.2056608673071929,0.2145704965567234,0.0,2.5567741623951377,22.187827520313853,39.795345120833936,27.228303604730037,full_Colonoscopy_compliance,5 +100000,95726,61281,597.4552368217621,1215,11.574702797568058,1093,10.812109562710235,348,3.311535006163425,77.37264048070351,79.7315309155847,63.34029949113111,65.08167085323754,77.31271380433098,79.6796243754148,63.31392471945744,65.06023435635379,0.0599266763725268,51.90654016989527,0.026374771673673,21.436496883751488,2953.63287,2149.820632290931,3085497.9315964314,2245796.870537713,3.3877,2.36519694497038,2960.4182771660785,1892.262232800264,885.97396,449.4101396687914,921273.802310762,466238.4134808593,848.71604,484.849118348918,847301.976474521,467189.0273791011,214.55015,125.278584822691,208614.39943171132,115456.31903391972,318.52848,168.61001922517076,302539.1638635272,151281.2794851556,0.37709,0,100000,0,0.0,284977,2976.996845162234,0,0.0,328,2.820550320707018,0,0.0,79238,823.5484612331028,0,0,0,0,0,0,0,0,0,0.0,356,3.708501347596264,0,0.0,0,0.0,0.01215,0.0322204248322681,0.2864197530864197,0.00348,0.5834697217675942,0.4165302782324059,10.50632488499078,2.7841267260898905,0.2872827081427264,0.4556267154620311,0.1070448307410796,0.1500457456541628,13.282241571855604,9.668243384960324,4.058196181878516,7545.518360219971,13.792411976859396,6.356772130975236,3.9673578486314383,2.038524075574852,1.429757921677869,0.7182067703568161,0.8554216867469879,0.7834394904458599,0.5914634146341463,0.1367521367521367,0.7964285714285714,0.9227642276422764,0.8793103448275862,0.6588235294117647,0.1818181818181818,0.6360225140712945,0.7896825396825397,0.6642857142857143,0.5189873417721519,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021974683544303,0.0044490387441346,0.0065735414954806,0.0089880565485862,0.0112253302016288,0.0133355050186289,0.0156262741580363,0.0176477192695946,0.0195954164920422,0.0218036646534957,0.0240734095452914,0.0260982946786993,0.028318183687739,0.0303604531410916,0.0324361130311877,0.0343024277313269,0.0363291886239633,0.0380135458911142,0.0399625837967052,0.0419526522450084,0.0560375880971025,0.0703747881222926,0.0836574855573146,0.0966409518003909,0.1093577053224123,0.1243855253559988,0.0678185424422736,0.0857285758372263,0.1028362735466233,0.1168371614231486,0.1356167628564045,0.1532645379023883,0.1702039751228634,0.1705882352941176,0.1862626484821821,0.2022391034727144,0.1170721911710565,0.1363421550094518,0.1548808172531214,0.1652975883599702,0.1774208469206041,0.193672054887385,0.2083303759434074,0.1851674411919704,0.2023561098709113,0.2174282128884624,0.1424807711517331,0.1585528234652599,0.1749819420080487,0.181783546598702,0.1733533375306425,0.1817236519859349,0.1889909284354351,0.1488967685439067,0.1573875960985111,0.1645948574554738,0.1077058205373527,0.1084372611827449,0.1167952201724923,0.1173944418043895,0.1072152785458835,0.1151971729802147,0.122744871900486,0.1009624871193352,0.1074245885040148,0.1159165584167494,0.1168250263932877,0.1254432082161633,0.1339665679365403,0.1418825693699218,0.1497250934682208,0.1563221931310642,0.1627836057575018,0.1684287812041116,0.1726690134488672,0.1813524590163934,0.1841255868544601,0.1944982564897326,0.1925906463478718,0.2009482129832239,0.0,2.361191221103541,22.409449238072547,39.373628438861815,30.402779981129136,full_Colonoscopy_compliance,6 +100000,95738,61785,602.5507113163007,1227,11.635923039963233,1106,10.904760909983496,380,3.6558106498986818,77.33281654085012,79.69969541943057,63.319784280511655,65.07146393919228,77.2620354013865,79.63512103786748,63.28885503534721,65.04451147905188,0.0707811394636195,64.57438156309081,0.0309292451644438,26.9524601404072,2953.8369,2149.727122248707,3085333.827738202,2245427.2308265334,3.34344,2.394340746246895,2861.852138126972,1870.5015210751176,888.47157,450.9957676347401,922938.1959096702,467209.02266838326,855.55447,495.8067641545889,852111.5126699952,476348.8000110604,213.46375,128.28790856017392,208109.6534291504,119142.0110720657,349.10764,190.54680910070488,335317.72128099605,174065.61617580036,0.38095,0,100000,0,0.0,285050,2977.3966450103408,0,0.0,334,2.8201967870646976,0,0.0,79287,823.2154421441852,0,0,0,0,0,0,0,0,0,0.0,367,3.8229334224654794,0,0.0,2,0.0208903465708496,0.01227,0.0322089513059456,0.3096984515077424,0.0038,0.5913891145410236,0.4086108854589764,10.499715335412548,2.8137924047796457,0.2567811934900542,0.4764918625678119,0.1166365280289331,0.1500904159132007,12.885639339184888,9.272064766154118,4.5592635376271,7587.930382722663,13.921152412204869,6.803196678409827,3.482608359727907,2.097405090237644,1.5379422838294936,0.7197106690777577,0.8462998102466793,0.7746478873239436,0.6987951807228916,0.1085271317829457,0.8003533568904594,0.9111969111969112,0.9006622516556292,0.7628865979381443,0.1186440677966101,0.6351851851851852,0.7835820895522388,0.631578947368421,0.6086956521739131,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023913506064505,0.0045540758471696,0.0068230277185501,0.0090972850448765,0.0110588857689333,0.013098924380704,0.0153275069091057,0.0176824910668708,0.0196519498578761,0.0217998996528808,0.023744591851381,0.0258345398350943,0.027884882322095,0.0298452127166558,0.0316227147043044,0.0335097366353826,0.0358733249104202,0.0379813828959247,0.0397616794734488,0.0418993249437453,0.0568234016787071,0.0706297144889781,0.0840900987814852,0.0959514723352361,0.1083320158102766,0.1231945354960137,0.067175022006342,0.0854141388338974,0.1024192256341789,0.1169676561427591,0.1358620169894811,0.1525762935557502,0.1691476290408516,0.169410375811635,0.1860917758057599,0.202707489318368,0.1180184501433399,0.1376986849949942,0.1553007100887043,0.1655911025676232,0.1768141081237352,0.1938656189340256,0.208695137820892,0.1860999700688416,0.2030233912452683,0.2189888843753462,0.1422698704252102,0.1574304427294882,0.1756103862550058,0.1831451209560662,0.1752053029896409,0.183703399122807,0.1919041741472172,0.1534568770936066,0.1624039030159668,0.1701428506229747,0.1116993700218371,0.1124200660624501,0.1206161858703371,0.1211067779562018,0.1108951936779375,0.119495627732667,0.1278896961690885,0.1035013635963754,0.109049217531086,0.1179106388426577,0.1209095485819768,0.129768875192604,0.1395796125841461,0.146837407838572,0.1554243083618278,0.1610450077599586,0.1683573698362258,0.1776010603048376,0.1850443599493029,0.1916980271410651,0.2000586682311528,0.205859526581296,0.2099156118143459,0.208058608058608,0.0,2.5686470462971847,22.239414743060703,40.04700475872439,31.0602971799915,full_Colonoscopy_compliance,7 +100000,95778,62297,605.1389671949717,1292,12.194867297291651,1132,11.223871870366889,373,3.5081125101797905,77.34910350822409,79.6791780056158,63.34642956891118,65.06739799729296,77.28003258942081,79.6189229147528,63.315437158377705,65.04205010669263,0.0690709188032769,60.25509086299508,0.0309924105334715,25.34789060032949,2950.45547,2148.976855594488,3080505.283050387,2243696.6063130237,3.4038,2.4259218363840573,2950.531437282048,1929.7890137273764,899.30737,457.1524204326472,934975.3805675624,474247.7722880681,859.05727,499.1474603314725,857887.8761302178,482125.9907118444,229.0062,139.4576258548363,224052.16229196684,130602.50523233273,344.2444,192.3814803649282,323660.1933638205,170851.79111711393,0.38151,0,100000,0,0.0,284558,2971.0058677358056,0,0.0,330,2.829459792436676,0,0.0,80252,834.095512539414,0,0,0,0,0,0,0,0,0,0.0,371,3.852659274572448,0,0.0,0,0.0,0.01292,0.0338654294776021,0.2886996904024768,0.00373,0.5912576687116564,0.4087423312883436,10.789363264484807,2.8081554053793747,0.3074204946996466,0.4549469964664311,0.1148409893992932,0.1227915194346289,13.399408206181583,9.883244534498091,4.5123712891486285,7637.677108328316,14.218654805574747,6.547829981375878,4.406521981548067,1.6980531036470852,1.566249739003714,0.7252650176678446,0.8407766990291262,0.7988505747126436,0.6690647482014388,0.1307692307692307,0.8077571669477235,0.9529411764705882,0.8711340206185567,0.7567567567567568,0.1571428571428571,0.634508348794063,0.7307692307692307,0.7077922077922078,0.5692307692307692,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023290667530784,0.004865242907388,0.0072130748394558,0.0094056942032076,0.0119372025867328,0.0140478032493179,0.0160826759615972,0.0185538602847374,0.0209361493424884,0.023316486259745,0.0256630912499615,0.0277065161621344,0.0295568527501438,0.0317633496644571,0.0340447468811217,0.0362436348988297,0.0383485099337748,0.040377855431931,0.042322599416025,0.0443819639695928,0.0583778594089163,0.0723228012927112,0.0856181259632825,0.0980861998297443,0.110620494878388,0.1257225586236777,0.0685046213855677,0.0867937770499473,0.1027457927369353,0.1161485227004906,0.1349353248821643,0.1527358827154487,0.1698135768248274,0.1702997573080875,0.186317641882974,0.2026326860483139,0.1159290949453932,0.1362119151709954,0.1557518311072813,0.1667619875549048,0.1786972949863073,0.1955828220858895,0.2105468426837483,0.1849720663707815,0.2019564110645106,0.2179780533412065,0.142339867648895,0.1580924818806087,0.1759576254763904,0.1840615951566201,0.1750234867802979,0.1840251124026757,0.1914911506284945,0.151131728614925,0.159882005899705,0.1675146176626926,0.1116043418245702,0.1127637439448616,0.1207805372529143,0.1224309626386044,0.1114481789090102,0.1197759081770091,0.1274702128977636,0.1043071904069126,0.108959009980797,0.1182950314546154,0.1173549545505554,0.1257160551168911,0.1342624534290051,0.1422279388836919,0.1512099469673336,0.1597326563390498,0.1672222222222222,0.1721500185666543,0.1775838309600367,0.1853528319405756,0.1922443479562808,0.2050877538946953,0.2131234995998933,0.2185255198487712,0.0,2.238817021465243,23.78980971191333,38.017882034178,32.834088561235035,full_Colonoscopy_compliance,8 +100000,95669,61803,602.4312995850275,1162,10.943983944642463,1044,10.358632367851657,342,3.1985282588926403,77.31532774038504,79.7069773946809,63.31028192710126,65.07603472677687,77.2485683963548,79.65027938284057,63.28049491274328,65.05254941511268,0.0667593440302454,56.69801184033929,0.0297870143579785,23.485311664188657,2950.64162,2146.943131980761,3084219.151449268,2244136.6921163183,3.02528,2.1733530430258026,2597.403547648664,1706.9132576068937,889.55719,451.4101922975848,926649.6357231704,469356.4368869093,789.1806,454.71729129056746,788636.2144477313,439279.8647008815,201.09988,120.46149000446556,197259.822931148,113069.25725451758,309.0933,171.11703154505733,289202.7929632378,149091.16048822296,0.37902,0,100000,0,0.0,284559,2974.411773928859,0,0.0,303,2.5713658551882013,0,0.0,79425,827.0077036448589,0,0,0,0,0,0,0,0,0,0.0,362,3.78387983568345,0,0.0,3,0.0313581201852219,0.01162,0.0306580127697746,0.2943201376936317,0.00342,0.5699658703071673,0.4300341296928328,10.468615681324454,2.820396152230113,0.2835249042145594,0.4846743295019157,0.0996168582375478,0.132183908045977,13.285423970015431,9.45011591743726,4.040457051901654,7580.296338686193,13.114896196721675,6.457398815410978,3.692642496478023,1.7027022685879365,1.2621526162447367,0.725095785440613,0.8320158102766798,0.7837837837837838,0.6666666666666666,0.1153846153846153,0.8052930056710775,0.931174089068826,0.8896103896103896,0.726027397260274,0.109090909090909,0.6427184466019418,0.7374517374517374,0.6690140845070423,0.6,0.1224489795918367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022793119516988,0.0046026886189906,0.0067486654894558,0.009032166297523,0.01104736328125,0.013475935828877,0.0154624454326628,0.0177008324396098,0.0199928414378483,0.021965306080652,0.0241626156339097,0.0262965968505716,0.0285987634635365,0.0306646058732612,0.0326066761627546,0.0346264828470663,0.0367304225293739,0.0387134272280978,0.0407231346931982,0.0426381231304782,0.0572864426613172,0.070855670966661,0.0844589984991131,0.0975596923044544,0.1097813238770685,0.124520991679546,0.0680775602089793,0.0850340860673199,0.101741110077917,0.1153767722408852,0.1340661709235909,0.1519298435554593,0.1692841828016673,0.1691065450009847,0.1860590579789928,0.2022130565903849,0.1178394792957542,0.1373759870419113,0.1567368241901628,0.167645879860276,0.1787007577948747,0.1950452451656651,0.2100670426731935,0.1845014913930449,0.2010623719029312,0.2172084271113898,0.1407805182641273,0.1566361352853119,0.1739511842716342,0.1826931927259339,0.173959101575595,0.1825380515939884,0.1907775895145141,0.1522720087373897,0.1609427808196939,0.1684828036900257,0.1119776546832582,0.1123214285714285,0.1203641153820171,0.1209374504029485,0.1097855995272478,0.1179426256645957,0.12557563242127,0.1021724297316928,0.10829923606348,0.1158875156725774,0.1162165191079233,0.1250116037998576,0.1345430710318418,0.1426009667862155,0.1505174875089222,0.1574607126186401,0.1640918323382778,0.1726994551832226,0.1793078055964654,0.1875721875721875,0.1939090775342062,0.1982294072363356,0.2039091389329107,0.2059571376679985,0.0,2.0738667022461432,21.19077987335268,37.384879414740624,30.332621393318483,full_Colonoscopy_compliance,9 +100000,95617,62229,607.3815325726597,1252,11.776148592823452,1113,10.960394072183815,386,3.566311429975841,77.3146043072854,79.73420538447944,63.296484254502126,65.0832544564844,77.24603131843608,79.67589627568304,63.2661147240521,65.0594686743309,0.0685729888493256,58.309108796393616,0.0303695304500237,23.78578215349592,2942.94768,2143.723771770629,3077840.3003649977,2241981.497215838,3.55819,2.505564074024968,3061.4535072215194,1960.5761256104752,900.84755,457.9952467337756,937856.9814991058,475704.4826979978,846.5086,492.9492410427115,840470.5125657571,470808.3153516021,221.37902,133.80758118008373,215137.0258426849,123570.6464081708,352.2874,189.1118014672396,325825.4285325832,162433.67604794164,0.38104,0,100000,0,0.0,283874,2968.8549107376302,0,0.0,347,2.928349561270485,0,0.0,80482,837.3720154365855,0,0,0,0,0,0,0,0,0,0.0,367,3.838229603522386,0,0.0,2,0.0209167825805034,0.01252,0.0328574427881587,0.3083067092651757,0.00386,0.5890302066772655,0.4109697933227345,10.350612860188363,2.880303716047,0.2686433063791554,0.4591194968553459,0.105121293800539,0.1671159029649595,13.732586063343184,9.853218345801023,4.553091610301792,7639.924456864619,14.007207079144012,6.507863970160114,3.781025677222675,2.322190626257429,1.396126805503794,0.7313566936208445,0.8454011741682974,0.8193979933110368,0.6720430107526881,0.1025641025641025,0.8076256499133448,0.9274809160305344,0.8930817610062893,0.7227722772277227,0.1454545454545454,0.6492537313432836,0.7590361445783133,0.7357142857142858,0.611764705882353,0.064516129032258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021075456212699,0.0042490188721339,0.0066390546960652,0.0088604379413707,0.011016845703125,0.0133632104298227,0.0154017196887016,0.017489018285831,0.0196888647963097,0.0218637992831541,0.0239899896409193,0.0261225076785585,0.0281881404057446,0.0302309047633767,0.0323812669673916,0.0346289460350942,0.0366490519117189,0.0386751803976535,0.0406746857570964,0.04245110821382,0.0569051302420872,0.0711307590772905,0.0853767393016539,0.0978146448271506,0.1102432021617969,0.1261806938032106,0.0681098765694376,0.0861289910055842,0.1032786008450553,0.1173570231598848,0.1372477103806862,0.1540037062323222,0.1708518078720599,0.1711372274126242,0.1872355430183356,0.2030175282893277,0.1161803476473479,0.136998333408405,0.1553981175562292,0.1663610945592886,0.1782599643757662,0.1957253371351111,0.2112131635873612,0.1869943026763058,0.2038174877295037,0.2201489785382402,0.1452773931160098,0.1620018253726802,0.178518002682348,0.1851369998028779,0.1767678121481799,0.1850909240178974,0.1926326556347994,0.1518374268837757,0.1599083788975912,0.167678797010791,0.1110918898516992,0.1124847101035635,0.1217959599388898,0.1217729806246129,0.1111542802168322,0.1193240378818816,0.1269828206974591,0.1037723420139651,0.1114615203577312,0.1194952552980385,0.1218142908757399,0.1289888739454701,0.1373886936644945,0.146195673132544,0.1529541446208112,0.1606297592097139,0.1680986866331164,0.1772432113341204,0.1877046198617679,0.1919879935349803,0.1975142258161126,0.2048857368006304,0.2157380512278848,0.2199850857568978,0.0,2.5758672502547526,22.779743162567808,38.89036782961929,31.47516235137558,full_Colonoscopy_compliance,10 +100000,95642,62007,604.9225235775078,1218,11.501223311934089,1092,10.790238598105436,366,3.439911336023923,77.29129418892526,79.69060007879442,63.29829466637945,65.0696269798908,77.22690974113527,79.63631383436825,63.2694844676972,65.0470410330846,0.0643844477899904,54.28624442616581,0.028810198682251,22.585946806202628,2946.86945,2146.505064690269,3081145.783233308,2244312.189927301,3.32724,2.38613091525296,2891.9826017858263,1907.99117046168,896.08387,455.8639648610073,932888.8249932036,473593.7234436626,826.20017,483.9632247719796,820821.4905585411,462990.26031657617,220.22181,135.27807459320098,211558.32165784907,122744.06076117312,332.39748,179.51502161858605,310990.63173082954,156256.78383703134,0.37917,0,100000,0,0.0,284105,2970.5045900336672,0,0.0,329,2.802116225089396,0,0.0,79972,832.1866962213254,0,0,0,0,0,0,0,0,0,0.0,387,4.025428159176931,0,0.0,2,0.0209113151126074,0.01218,0.0321227945248833,0.3004926108374384,0.00366,0.5874183006535948,0.4125816993464052,10.472430381544978,2.849239937450525,0.2701465201465201,0.4798534798534798,0.1016483516483516,0.1483516483516483,14.075928529437718,10.35658486347084,4.303643189820149,7604.679367931444,13.82330485160368,6.793941605632904,3.687927225375662,1.974343453314156,1.367092567280955,0.7307692307692307,0.8473282442748091,0.7728813559322034,0.691358024691358,0.1261261261261261,0.7880910683012259,0.9172932330827068,0.8427672955974843,0.7831325301204819,0.1111111111111111,0.6679462571976967,0.7751937984496124,0.6911764705882353,0.5949367088607594,0.1458333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022284574010109,0.0044509784041366,0.0068613420216599,0.0090234732242658,0.0112423567235397,0.0135662270204206,0.015916552807064,0.018052974452182,0.0200801570423687,0.0222902545409866,0.0243767369835198,0.0265187695783905,0.0286302144951391,0.0309237982379308,0.0330556329813042,0.0351354426321069,0.0371329968598107,0.0392274945488526,0.0409019020268864,0.0425884609770845,0.0576119215817414,0.0715198491672776,0.0852495852495852,0.0981927647436504,0.1106912928759894,0.1252659321118978,0.0665385717773696,0.0838694559243321,0.1010359093873274,0.1153548885740049,0.134954774302748,0.1529816811744835,0.1698135794273525,0.1707183590372259,0.1872038959035719,0.2029446655653735,0.1169034217814705,0.1370464135021097,0.1558848222186925,0.1667220040529865,0.1780617555221464,0.1948255311192652,0.2099536379979184,0.1871796714087273,0.2031272762589229,0.2193815347101636,0.1437053889520857,0.1594689028651292,0.176399121106372,0.1826204755892256,0.1737602446647261,0.1827452915535817,0.1901074544791403,0.1492500826850347,0.157990422135509,0.1655595843870928,0.1097919582343968,0.1107614031082337,0.1196201458368662,0.1198328819020305,0.1095028670043979,0.1182259263606839,0.127050198807157,0.1046780917091246,0.1108694624367642,0.1195251739664347,0.1211783705518739,0.1294059801481208,0.1372239205853055,0.1449421628755531,0.1508260792325457,0.1588013822270359,0.1674432863274065,0.1768156839447497,0.1848932074433953,0.1948337773659214,0.2012569205446655,0.2021934197407776,0.2108934800107325,0.2081647664582567,0.0,2.472192449340223,22.62677126939377,39.35912633698447,29.36362737644697,full_Colonoscopy_compliance,11 +100000,95632,61609,600.0397356533377,1285,12.35987953822988,1165,11.596536724109084,373,3.5030115442529697,77.27514686010801,79.68690818207973,63.27600815666828,65.05662691227919,77.20928418905557,79.63036921297555,63.24698303233567,65.0333373108262,0.065862671052443,56.53896910418155,0.0290251243326125,23.289601452987085,2947.65703,2145.4188090306584,3082267.253638949,2243388.018098637,3.44631,2.4350370379189994,3030.6696503262506,1973.206706875313,890.60328,452.1432601106756,927759.9339133344,470048.131530075,869.91699,498.7604070820006,867526.6647147398,479784.426120462,224.83476,135.57502283530917,216142.87058725115,123005.3040494448,341.34974,183.83858838145383,319150.1380291116,159664.06004008642,0.37712,0,100000,0,0.0,284482,2974.736489877865,0,0.0,339,2.9278902459427805,0,0.0,79541,828.2478668228208,0,0,0,0,0,0,0,0,0,0.0,368,3.837627572360716,0,0.0,2,0.0209135017567341,0.01285,0.0340740347899872,0.290272373540856,0.00373,0.6013931888544891,0.3986068111455108,10.33924786952858,2.7657389182206846,0.278969957081545,0.4832618025751073,0.0995708154506437,0.1381974248927038,14.29208049071258,10.538120620323754,4.352198844222015,7565.9280761327955,14.702978486311563,7.257350085268928,4.049985181568926,1.96205880015238,1.4335844193213312,0.7545064377682403,0.8738898756660746,0.7938461538461539,0.7080745341614907,0.1293103448275862,0.8263157894736842,0.9625468164794008,0.8805031446540881,0.7738095238095238,0.15,0.6857142857142857,0.793918918918919,0.7108433734939759,0.6363636363636364,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022683084899546,0.0044900317241519,0.0067272081578813,0.008806500761808,0.0110253358964188,0.0133921297050676,0.0155708284047803,0.0178354483364131,0.0201404721253821,0.0224238204456094,0.0245043233873201,0.0268126810626451,0.0290755697309532,0.0310979632225612,0.0331264650303074,0.0351006051828479,0.0371694808088974,0.0392879768197821,0.0413852669698325,0.0432669746488273,0.0578896762191425,0.0717025022004275,0.0852661876549434,0.0980648287631548,0.1098424032448876,0.1253653886888371,0.067427551248127,0.0859210933086017,0.1026209051701073,0.1158314436479704,0.1345070270503659,0.1525149901872553,0.1687973407443736,0.1683258414647516,0.1843707937068338,0.2003420094163631,0.1159426775106556,0.1359355791895519,0.1541252473783581,0.1639758109860351,0.1757411399300002,0.1927983225761107,0.2077622054520252,0.1838205318817294,0.2006604506604506,0.2162521546417138,0.1415620467163507,0.1571815029782694,0.1741621719503835,0.1816996219256761,0.172403600698643,0.1817944848401701,0.189251746485986,0.1509301055173801,0.1597678574065596,0.1672800267648042,0.1111477365480002,0.1122571828327856,0.1208735570107338,0.1211859477181787,0.1103171223873965,0.1184118197411507,0.1257431874483897,0.1054531050569957,0.1121431272452259,0.1198578477743972,0.1202778862786674,0.1284364128928978,0.1359857074142788,0.1440375514004189,0.1486720170265596,0.1575977219777375,0.1645074553898802,0.1723275988825172,0.1817602040816326,0.1891705069124424,0.1958228410605836,0.2027424094025465,0.2128279883381924,0.2161764705882353,0.0,2.190939781643204,22.93538398886036,45.470225385400816,33.297164400328334,full_Colonoscopy_compliance,12 +100000,95691,61464,598.938249156138,1204,11.349029689312474,1066,10.617508438620142,385,3.647155949880344,77.28391542799022,79.68107811401097,63.28504443165552,65.05949989239244,77.21422775643063,79.62008596865678,63.25365118749608,65.03352261355904,0.0696876715595919,60.99214535419151,0.0313932441594388,25.97727883339473,2947.56192,2145.092233443027,3080291.6888735616,2241686.504940932,3.24432,2.417583126171427,2845.450460335873,1981.688934285204,887.23397,450.0395641527799,924028.957791224,467823.0614198738,824.00968,489.8864421030299,823962.337105893,474822.182449951,219.65686,138.32729918619583,212996.1229373713,128023.06955578108,351.11058,195.2177326759307,331909.31226552126,174885.69560001043,0.37815,0,100000,0,0.0,284481,2972.912813117221,0,0.0,315,2.7170789311429497,0,0.0,79304,825.6366847456918,0,0,0,0,0,0,0,0,0,0.0,356,3.709857771368258,0,0.0,6,0.0627018214879142,0.01204,0.0318392172418352,0.3197674418604651,0.00385,0.6100577081615829,0.3899422918384171,10.567770355389774,2.84277922803158,0.2598499061913696,0.4756097560975609,0.1153846153846153,0.149155722326454,12.884957443391476,9.494294699475562,4.5502706452568376,7562.113212231383,13.564801608237731,6.5401661525605865,3.5077734608568654,2.019022336514346,1.4978396583059332,0.7213883677298312,0.8441814595660749,0.7725631768953068,0.6981132075471698,0.1300813008130081,0.7937608318890814,0.9224806201550388,0.8758169934640523,0.7978723404255319,0.1527777777777778,0.6359918200408998,0.7630522088353414,0.6451612903225806,0.5538461538461539,0.0980392156862745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023307188747694,0.0044729795520934,0.0065585753880828,0.0088210485665796,0.0108767538638421,0.0129675658055578,0.0152684991585496,0.0175879396984924,0.0197698798261314,0.0219529185191255,0.0242218437737242,0.026365812808894,0.0285140975509364,0.0304847885233737,0.0326396630744456,0.0346029349411046,0.0366908785709104,0.0385525660189337,0.0406195389864358,0.0425751448701379,0.0569616947488274,0.0710897992943369,0.0838974423559291,0.0963600585084553,0.1085511039810866,0.1238157741529146,0.0681086935745914,0.0857377171400879,0.1022053085614717,0.1161000847994332,0.1348912914596156,0.1523745558540601,0.1686827005781353,0.1697817779675678,0.1864360090353148,0.2034024325284091,0.1180119364284596,0.1374446559940515,0.1561016063435803,0.1668558326167956,0.177804807413843,0.1948322713643178,0.210246324095686,0.186217149434107,0.2024738159461495,0.2176842260841719,0.1411139588672876,0.1566710263996647,0.1729785585120124,0.1799595035237193,0.1726987363507096,0.1824655583248884,0.1902114549782943,0.1497187302680672,0.1590429067277158,0.1655155627224876,0.10865466201565,0.1096297982343473,0.1171552366122808,0.1186224940777145,0.1078513240178886,0.1160827931932559,0.1233485666805151,0.1015275625415098,0.1080829978321461,0.1158447171413135,0.1178759377449333,0.1262634067938058,0.1325665236051502,0.1404200998027155,0.1505676778428242,0.1585730487679142,0.1659582220063152,0.1733401281304601,0.181687483152125,0.1919673247106875,0.2019047619047619,0.208041958041958,0.2153148345784418,0.2210371460095623,0.0,1.9501550542707775,23.54291001850966,36.58482585434943,27.988030788223945,full_Colonoscopy_compliance,13 +100000,95674,62466,608.8801555281476,1205,11.466020026339445,1055,10.619395028952484,344,3.3028827058553,77.35161970545354,79.75815782017698,63.31721993396855,65.0946494785293,77.28631876889625,79.69952401439997,63.28780751721391,65.06945692069755,0.0653009365572927,58.63380577700639,0.0294124167546456,25.192557831758226,2949.89825,2147.4380349204357,3083280.9854296884,2244536.692226138,3.07464,2.1560291669189127,2807.2517089282355,1847.104926018472,898.26358,455.9126946440395,936892.1755126785,474894.3248455607,799.72451,466.5814720672612,805028.7538934298,456822.3049807276,218.45001,135.29174185398583,215850.41913163447,128932.06289481558,317.43738,179.84365688669135,303490.7289336706,163232.75375699002,0.38235,0,100000,0,0.0,284455,2973.1693040951563,0,0.0,305,2.759370361853795,0,0.0,80300,837.3225745761648,0,0,0,0,0,0,0,0,0,0.0,344,3.5955431987791875,0,0.0,2,0.0209043209231348,0.01205,0.0315156270432849,0.2854771784232365,0.00344,0.5446280991735537,0.4553719008264463,10.70784043875264,2.790534440525536,0.2758293838862559,0.4767772511848341,0.1137440758293838,0.133649289099526,12.702326536015669,8.898482559801943,4.095209876203005,7657.459366864536,13.284224759616707,6.451582392260202,3.632336987837801,1.74553924515435,1.454766134364354,0.7279620853080568,0.8548707753479126,0.7903780068728522,0.6595744680851063,0.125,0.7952029520295203,0.925311203319502,0.9013157894736842,0.7692307692307693,0.1549295774647887,0.6569200779727096,0.7900763358778626,0.6690647482014388,0.5238095238095238,0.0816326530612244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021073747986342,0.0042387060791968,0.0065358150486126,0.0086869056327724,0.010904393290543,0.0132511713179873,0.0154795288839035,0.0179718373140272,0.0199591002044989,0.0220014339854552,0.0242013254816669,0.0265018394064574,0.0288863276184987,0.0308044412828998,0.0327118731601508,0.0349065778311158,0.0369069087743299,0.0388568225230462,0.0410532777078413,0.0429895628056346,0.0582531373102201,0.0725803074088034,0.0865800411436248,0.099391822218481,0.1114300488607942,0.1276420096736979,0.0692891649413388,0.0865176563382683,0.1041200825942291,0.1177512886597938,0.1369013598473002,0.1539378182212111,0.1703783524904214,0.1705264309948561,0.1868125818846403,0.2038945781797224,0.118566833452466,0.1389120208863181,0.1574946102348803,0.167881791441096,0.1785218919043876,0.1947178535150092,0.2094012046769812,0.1859800569119299,0.2021658026067154,0.2185565490812616,0.1423889747296017,0.1585452335123088,0.1764418062655318,0.1844493403624728,0.1758115253329763,0.185093065843059,0.1936693102821255,0.1542740802339919,0.163640650789908,0.1714840608736553,0.1133775124939292,0.1139386459229907,0.1228274638966303,0.122914388514586,0.1126961219656601,0.1203216886707948,0.1286342157934919,0.1042059972779558,0.1110038382744248,0.1197534637326813,0.1198063061809478,0.12730117820324,0.1360730281377141,0.1447053371437398,0.149641814804988,0.155463474524248,0.1632999696693964,0.1700066064743448,0.176013024602026,0.1846277573529411,0.1951183431952662,0.2046908315565032,0.2133749674733281,0.2208213256484149,0.0,1.6123051884783457,22.314397897884295,36.65490197190908,30.977595358091897,full_Colonoscopy_compliance,14 +100000,95795,62104,604.3739234824365,1252,11.910851297040557,1106,11.002661934338953,367,3.497050994310768,77.3507064425629,79.67983830982244,63.34838135415546,65.0703338033837,77.2848724858839,79.62109939902149,63.31966960720264,65.0458592853019,0.0658339566790005,58.73891080095461,0.0287117469528155,24.4745180818029,2954.86181,2151.9022891861023,3084567.889764602,2246361.803002351,3.2804,2.245842769432558,2891.257372514223,1811.287404804591,893.01415,452.5153472310408,928796.6699723369,469661.039157573,830.85362,484.9020766368285,830665.6088522365,469528.2390905881,213.78322,128.9732575022898,209576.03215199124,121044.71739732556,334.51944,180.75355110714847,318440.9833498617,163968.9178973509,0.38081,0,100000,0,0.0,285069,2975.823372827392,0,0.0,325,2.8080797536405866,0,0.0,79708,828.5923064878125,0,0,0,0,0,0,0,0,0,0.0,359,3.747585990918106,0,0.0,4,0.0417558327678897,0.01252,0.0328772878863475,0.2931309904153354,0.00367,0.5884218873909596,0.4115781126090404,10.668470509468662,2.7919228023859395,0.2848101265822785,0.4692585895117541,0.1021699819168173,0.1437613019891501,13.242988844151578,9.605299732583113,4.356104072551102,7617.428133065385,13.953553429637948,6.645535672652803,3.962105401179486,1.981090158841504,1.3648221969641547,0.7314647377938517,0.859344894026975,0.780952380952381,0.6666666666666666,0.0973451327433628,0.8137082601054482,0.932,0.9036144578313252,0.7741935483870968,0.1333333333333333,0.6443202979515829,0.79182156133829,0.6442953020134228,0.5151515151515151,0.0566037735849056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359790932296,0.0042680454176804,0.0067480491542106,0.0090606208353648,0.0112961607288108,0.0134993433577326,0.0158269128857364,0.0178485779306262,0.0197226565294255,0.0219504707327056,0.0241818144558067,0.0261958997722095,0.0281996999157297,0.0302337790679719,0.0321722452515003,0.0343181818181818,0.0365043561037187,0.0388223708080651,0.0409570490986126,0.0431505637160495,0.057553656577039,0.0706780281248366,0.0839727463312369,0.0962033563464792,0.1079215537500131,0.1234278225209799,0.0686126897955721,0.0861329559119302,0.1034674182252967,0.1178103331868697,0.1363073777108109,0.1543315935639338,0.1709667256906347,0.1707314409288,0.1870075062368805,0.2036955127496295,0.1165875827040032,0.1366994520794035,0.1553985187198478,0.1665656831250786,0.1781362503461645,0.195350139402494,0.2101794992914501,0.1865638634869404,0.2043431395109426,0.2199397997419989,0.1438279301745635,0.159418819889951,0.1767597275260604,0.1836287252199028,0.1750602409638554,0.1840484921460237,0.1920092986780192,0.149925295942995,0.1589446969249837,0.1669580286700211,0.1106729923337941,0.1108576270634054,0.1194560634028212,0.1210310444805883,0.1118226875313248,0.1209087709693817,0.1284213579760893,0.1050919471552811,0.1102183033492142,0.118369339053148,0.1196585995844797,0.1291931237416757,0.1369437737150741,0.1449747768723321,0.1538289995985906,0.1606658317678981,0.1694538722616476,0.1782274322407227,0.1846970529013362,0.1951303946457419,0.2055879276856417,0.210095770151636,0.2172972972972973,0.2186447023586671,0.0,2.0270516944460897,23.02778613213308,40.10089701030186,30.52164019807376,full_Colonoscopy_compliance,15 +100000,95733,62037,604.3370624549528,1205,11.396279234955554,1080,10.67552463622784,343,3.133715646642224,77.31652017658898,79.67547916588137,63.31665033110207,65.06165146489315,77.2542435489695,79.62459202409808,63.28869686715461,65.0403202491056,0.0622766276194823,50.88714178329212,0.0279534639474547,21.331215787540717,2949.06272,2146.9035785446285,3080479.416711061,2242567.6252433346,3.2034,2.292273781666375,2763.3522400844013,1811.615411265055,893.7204,454.9117381604533,929638.2020828763,472170.2944775913,798.48492,464.43364681547394,797131.971211599,448327.8657172482,203.71961,124.04811779968122,199357.9956754724,116350.07644415108,309.88526,171.57754527828988,283776.29448570503,146398.92833325185,0.3799,0,100000,0,0.0,284557,2972.371073715437,0,0.0,314,2.66365829964589,0,0.0,79632,827.8754452487648,0,0,0,0,0,0,0,0,0,0.0,379,3.9589274335913434,0,0.0,2,0.0208914376442814,0.01205,0.0317188733877336,0.2846473029045643,0.00343,0.5467328370554178,0.4532671629445823,10.88619935578349,2.7717748417936896,0.2916666666666667,0.4824074074074074,0.0907407407407407,0.1351851851851851,14.058946976671992,10.38708081338623,4.09649232174003,7632.300910637807,13.504583875956184,6.528051207055548,4.011185825037862,1.7887299260546126,1.176616917808163,0.7361111111111112,0.8618042226487524,0.765079365079365,0.6575342465753424,0.0918367346938775,0.8264758497316637,0.951219512195122,0.8641304347826086,0.7848101265822784,0.14,0.6391554702495201,0.7818181818181819,0.6259541984732825,0.5074626865671642,0.0416666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021373365342733,0.0047039263592218,0.0070032986551636,0.0091244398833534,0.0111185709635416,0.0134947955920395,0.0157363874639225,0.0179937297672661,0.0203883395875297,0.0224212951113386,0.0245570502829956,0.0266043741657254,0.0286175551168147,0.0307573495340575,0.0326157591261204,0.0348500816233752,0.0367471999668757,0.0390324354040681,0.0409442434825994,0.0429003021148036,0.0577537427181425,0.0720197549465842,0.0856220048028019,0.0987876302535146,0.1110677646215324,0.1270094762670276,0.0697092178267188,0.0869926228722894,0.1038152117009797,0.1184882423618263,0.1368160275743214,0.1548433171745152,0.170992399612913,0.1702213719595517,0.1855630392674766,0.2023620913149935,0.1165479831238699,0.1366866833097182,0.1552926765643253,0.1667563329174345,0.178006658343737,0.1942467898162104,0.2081830970930026,0.1856446610544971,0.2020236333195836,0.2184114634626748,0.1446737283901269,0.1606347191367819,0.1778159243149756,0.1849601515031957,0.1761345349211458,0.1852837122562597,0.1922326280170174,0.1512896539812309,0.1597208876010821,0.1672780407616554,0.110639768728004,0.1114226105098448,0.1197091180309528,0.1204144894163493,0.109605819909435,0.1179308862886054,0.1253726399470023,0.103502306181449,0.1094504973945997,0.1177584442169907,0.1204441833794858,0.1297451818153874,0.1383466885829737,0.1467733828248849,0.1536484869965885,0.1589592385681771,0.1685819070904645,0.1743853211009174,0.1798221738341499,0.1882907752472969,0.1893894487255483,0.1973478939157566,0.2033943251127022,0.2061969752858723,0.0,2.2391173361130505,22.212698295793736,36.008455902649025,32.49325883568335,full_Colonoscopy_compliance,16 +100000,95676,62515,609.3795727246122,1210,11.392616748191816,1078,10.66098081023454,402,3.762699109494544,77.40264542862671,79.78187357535694,63.35728834693722,65.11158589189054,77.33069104778653,79.72139506108437,63.32515121470769,65.08600025034457,0.0719543808401823,60.47851427257456,0.0321371322295291,25.585641545973203,2952.8438,2149.3801777269487,3086280.477862787,2246505.832649721,3.28374,2.405999159648144,2819.5158660479115,1902.672941208498,903.52559,459.13973922237705,940642.6690079016,477033.5398193892,809.64231,484.2578393238901,802444.4270245412,462469.2973617501,217.51853,137.4925952823106,207490.52008863247,123947.40670517826,362.96522,203.0938043617364,337866.6750282202,177103.8050897761,0.38223,0,100000,0,0.0,284643,2975.061666457628,0,0.0,317,2.6756971445294537,0,0.0,80487,837.545465947573,0,0,0,0,0,0,0,0,0,0.0,377,3.940382122998453,0,0.0,2,0.0209038839416363,0.0121,0.0316563325746278,0.3322314049586777,0.00402,0.5949055053410025,0.4050944946589975,10.617411263315072,2.834655750788886,0.2820037105751391,0.4712430426716141,0.0955473098330241,0.1512059369202226,14.142866172329198,10.539573551239046,4.784155836191368,7627.929567999216,13.644612056070864,6.52263764007123,3.834612557897299,2.003159854497087,1.2842020036052455,0.7430426716141002,0.8740157480314961,0.7993421052631579,0.6012269938650306,0.1553398058252427,0.8148788927335641,0.942084942084942,0.9186046511627908,0.7283950617283951,0.1515151515151515,0.66,0.8032128514056225,0.6439393939393939,0.4756097560975609,0.1621621621621621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.0045709305036131,0.0066950699939135,0.0090795527253892,0.0113787738583093,0.0132578457528053,0.015588202310194,0.0177789571447525,0.0199989780798119,0.0222276802161365,0.0244879968839049,0.0265275952693823,0.0284903507058327,0.0306903263679337,0.0329134036999205,0.034964962688881,0.0371309939219482,0.0391727544413083,0.0413503338394658,0.0431674170418542,0.0582065853250877,0.0719334066279252,0.0853341168569509,0.0981223373481302,0.1105169340463458,0.1258451218350914,0.0683144779572517,0.0856905600919824,0.1022602190756078,0.1164938170976287,0.1361002821512416,0.1540317955044749,0.1711887077655861,0.1705277197739124,0.1874333227016266,0.20423680977521,0.1186867561182186,0.1378535895161199,0.1568256699992074,0.1677274129597678,0.1781305521585638,0.1948913448983398,0.2091215738076142,0.1833514494917521,0.2004212259126561,0.2163486333161423,0.1418382233749392,0.157992706275642,0.1757266674393746,0.1834730036327392,0.1747609175416304,0.1842978252856616,0.1917507923874949,0.1520724795328333,0.161051609486259,0.1687486734786695,0.1128754153865446,0.1135721017907634,0.1223818678538905,0.1238816484677703,0.1121661063287397,0.1205682016650171,0.1280292450505216,0.1033998991648216,0.1095522176896413,0.1180738280751053,0.1201406524711857,0.1291005615736336,0.137312716426098,0.1454320414636033,0.1521999733605647,0.1605744802198372,0.1664727139094751,0.1719961598109445,0.1799434254950269,0.1890694239290989,0.198582607411782,0.2104549854791868,0.217391304347826,0.221178171304662,0.0,2.265230108065899,22.993470440005837,37.35598369329389,28.986216310226062,full_Colonoscopy_compliance,17 +100000,95721,62252,606.8469823758631,1229,11.481284148723896,1095,10.791780278099894,368,3.3743901547204898,77.33907921770925,79.70622806841692,63.32552877917672,65.07548820437628,77.26668545043036,79.64646631198553,63.293061107705554,65.05097219315071,0.0723937672788963,59.76175643138504,0.03246767147116,24.516011225571788,2951.24208,2147.822038554609,3083161.437928981,2243827.07553917,3.35653,2.4671038527319697,2862.172355073599,1932.986338141024,894.99938,454.70198888168926,931504.1004586244,472248.2802508716,826.97565,484.3045449552172,816367.8607620063,458482.2879015545,232.983,140.15987967885755,225734.2067049028,128761.6298188046,340.34154,192.6404209093177,310359.6911858421,160445.907767716,0.38217,0,100000,0,0.0,284597,2973.1824782440635,0,0.0,326,2.7162273691248524,0,0.0,79899,831.1969160372332,0,0,0,0,0,0,0,0,0,0.0,363,3.792271288432005,0,0.0,3,0.0313410850283636,0.01229,0.0321584635110029,0.2994304312449146,0.00368,0.6071139854486661,0.3928860145513339,10.266998830245434,2.8903093742699304,0.2794520547945205,0.4730593607305936,0.1150684931506849,0.1324200913242009,13.505858868271313,9.621897809378815,4.42905198529825,7633.690781138762,13.89671996780106,6.686381585197765,3.88589953069576,1.7709133574270806,1.5535254944804515,0.7269406392694064,0.8397683397683398,0.8006535947712419,0.6620689655172414,0.1587301587301587,0.8096085409252669,0.9428571428571428,0.8982035928143712,0.7831325301204819,0.1343283582089552,0.6397748592870544,0.7472527472527473,0.6834532374100719,0.5,0.1864406779661017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001934451466537,0.0041164780792472,0.0066075941658292,0.0087993822142741,0.0107626420353397,0.0130768212325209,0.0153571610666394,0.0175091118847563,0.0195300517392993,0.0215489870747045,0.023762396545889,0.0258311678974559,0.0282414406631493,0.0302793031330167,0.0323492981007431,0.0346942152178858,0.0370873001895803,0.0389481003331292,0.0409105562546146,0.0426751127827382,0.0574525405676336,0.0720750886812393,0.0857616206524132,0.098135509448645,0.1110806449911941,0.1267507299115643,0.0690306425600543,0.0867468083520555,0.103191057344989,0.1174192025408815,0.1355015302383723,0.1527258946456607,0.1689820606825426,0.1690335003610424,0.18577027235298,0.2025646140887529,0.1171295882825756,0.1378441321737565,0.156906566229523,0.1676096019057217,0.1794684984734943,0.196192991271223,0.2119934327864592,0.1876389984934356,0.2043191783144788,0.2197448710235853,0.1427966207291848,0.1590224135747752,0.1762425460118748,0.183934456363326,0.175078632135448,0.1839214130330683,0.1909566045931593,0.1521157937101132,0.1611874640173602,0.1689111138132295,0.1115803023405491,0.1137777198866781,0.1225299122123173,0.1225244677273773,0.1108804833299356,0.1187535366543737,0.1264054795651008,0.1038660645445533,0.1104135196374622,0.1190992877020092,0.1211367573911585,0.1294722581439744,0.1377510729613734,0.1467070518794656,0.1551102204408817,0.1625162464257863,0.1692563817980022,0.1756605880163751,0.1838462939355308,0.1904487917146145,0.1965594614809274,0.2072978303747534,0.2158176943699732,0.2243163340724316,0.0,2.4824431413925985,22.257475067314445,40.786869306528814,29.999996898459337,full_Colonoscopy_compliance,18 +100000,95686,61788,602.51238425684,1250,11.903517755993562,1115,11.067449783667412,348,3.3442718893046,77.30793472821749,79.68512681484344,63.31631099018998,65.07058971525188,77.24437565548425,79.62801113066588,63.287944295414064,65.04667727624314,0.0635590727332413,57.11568417756041,0.0283666947759186,23.91243900873974,2951.98158,2148.641688270966,3085071.5674184314,2245513.124460178,3.54348,2.4940367611850185,3119.2650962523253,2022.5077453180384,890.17833,451.2763454772824,926087.0869301674,468473.17938896327,825.79976,481.1768471061613,825982.296260686,465822.0712603321,211.76198,128.1123529132517,207566.2897393558,120145.32210903568,317.09088,174.8755039648567,303774.9305018498,157932.48459861465,0.38111,0,100000,0,0.0,284838,2976.799113767949,0,0.0,342,2.968041301757833,0,0.0,79473,826.3695838471667,0,0,0,0,0,0,0,0,0,0.0,361,3.772756725121752,0,0.0,0,0.0,0.0125,0.0327989294429429,0.2784,0.00348,0.5691573926868044,0.4308426073131955,10.644831670358808,2.8661621664150427,0.3004484304932735,0.4618834080717489,0.095067264573991,0.1426008968609865,13.275146411542613,9.55362920800292,4.077904305778132,7633.336947798489,14.146262327940148,6.749971686924534,4.097403300015939,2.000846861881806,1.2980404791178684,0.7354260089686099,0.8504854368932039,0.7791044776119403,0.6855345911949685,0.1132075471698113,0.7986111111111112,0.9133574007220217,0.8774193548387097,0.7926829268292683,0.0967741935483871,0.6679035250463822,0.7773109243697479,0.6944444444444444,0.5714285714285714,0.1363636363636363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025514853289593,0.0050666774755786,0.0074660931841467,0.0094356870073941,0.0112785778211699,0.0134312247973605,0.0158762529188037,0.0180500255232261,0.0203234578502934,0.0224380956280517,0.0246442776889326,0.0267043121149897,0.0284462544736517,0.0303698362006799,0.0325772898006356,0.0345494205580424,0.0362960046419098,0.0384447674418604,0.0405492562155414,0.0421683606984623,0.0570655580161283,0.0711332544824626,0.0833009851338166,0.0960634393109178,0.1083032871571046,0.123716464156171,0.0685360238496875,0.086328025206506,0.1032198790675811,0.1165472410538058,0.1353062806926854,0.1528401285116233,0.1700494645866173,0.169752951464801,0.1860922928030969,0.2034260530628515,0.1184665491779507,0.1378352544278886,0.1565331790911049,0.1684599711545065,0.1806047146459388,0.1969339347058961,0.212275972951246,0.1875209621005222,0.2046572049485837,0.2202822173516881,0.1435019066074889,0.1598586716148547,0.1766486039082808,0.1836221426314126,0.1759289089347079,0.1850505493902522,0.1921527904463872,0.1517074644907827,0.1597113365472775,0.1669051170436212,0.1107230507834623,0.1116984826235927,0.1207031117445451,0.121920571994903,0.110090210491146,0.1186792120654916,0.1263033763654419,0.1039238582035294,0.1103871487466237,0.1196484555686899,0.1208273774489195,0.1288688453697411,0.1381358566149808,0.1457815413300186,0.1549509366636931,0.1625097225823178,0.1699539170506912,0.1748925448347413,0.1804909207044438,0.1873638344226579,0.1966374269005848,0.2001545595054095,0.2058670820353063,0.20628612716763,0.0,2.233041697030138,23.15471732054441,40.33067956202232,31.400803628097904,full_Colonoscopy_compliance,19 +100000,95702,62254,607.928778917891,1263,11.953773170884622,1115,11.023803055317549,360,3.385509184761029,77.38171245272493,79.75588682061364,63.34258245905804,65.09521155875909,77.31614191049898,79.69955256151111,63.31346840349602,65.07162523229084,0.0655705422259416,56.33425910252754,0.0291140555620259,23.58632646824788,2950.62157,2148.391378364068,3083106.110635096,2244848.415870168,3.0594,2.2492737211552374,2594.721113456354,1748.2118672078293,901.09106,456.01524882862446,937670.957764728,473503.5876853535,829.75224,482.784227335574,827715.9933961673,465271.5956140668,221.59848,135.3655487946208,213709.25372510505,123841.1984946998,327.31452,179.81740679234636,307197.2372573196,158487.5961726166,0.38235,0,100000,0,0.0,284618,2973.971285866544,0,0.0,302,2.518233683726568,0,0.0,80659,838.9061879584544,0,0,0,0,0,0,0,0,0,0.0,334,3.4900002089820483,0,0.0,2,0.0208982048442038,0.01263,0.0330325617889368,0.2850356294536817,0.0036,0.5803149606299213,0.4196850393700787,10.523529439262806,2.68705922585415,0.274439461883408,0.5013452914798207,0.0986547085201793,0.1255605381165919,13.412020107972568,9.858758227256663,4.257227965370106,7621.102994715024,14.018643257300294,7.133968172755564,3.830740483611077,1.6811634871239147,1.372771113809737,0.7327354260089686,0.8372093023255814,0.7679738562091504,0.6857142857142857,0.1636363636363636,0.8111298482293423,0.915824915824916,0.8666666666666667,0.7761194029850746,0.21875,0.6436781609195402,0.7480916030534351,0.6524822695035462,0.6027397260273972,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022180359747204,0.0044805319871463,0.0065754759102163,0.0089287528188042,0.0110564110909941,0.0131059063136456,0.0152026510323731,0.0174772346767936,0.0194739478445764,0.0215477530965298,0.0233025434936387,0.0251845463598936,0.0273547166318733,0.029326932981726,0.0313925409176281,0.0334677419354838,0.0356687898089171,0.0378341358127179,0.039812378446402,0.0417691441910875,0.0558833665785928,0.0698672584900129,0.0834924565121598,0.0962193890431709,0.108592703532216,0.1244302980955301,0.0686252665754209,0.0866186161888234,0.1039013759507734,0.1180546616896211,0.1378010019932123,0.1552599391689307,0.1713027403218791,0.1709420392816937,0.1875632285023092,0.2045504847062989,0.1165087504180136,0.1365388722167897,0.1556177674007412,0.1673378331998627,0.1794403541418648,0.1966137319009808,0.212076443961187,0.1880099538200177,0.2051816737994495,0.2209393827615886,0.143188622754491,0.1592215272579642,0.1758945045870376,0.1833241375686398,0.1738781085532923,0.1833902939166097,0.1909838817998656,0.1532058170356042,0.1620870230355094,0.1698673290119343,0.1123461815449165,0.1142227408271749,0.1226324561846557,0.1228736784702798,0.1125117661172735,0.1201805236742792,0.1275607701317114,0.1037847557231821,0.1092086669806877,0.1185793878952858,0.120386838594931,0.1278098908156711,0.1365155131264916,0.1453087038679572,0.1535673238440456,0.1614067656765676,0.1684876012767002,0.1745737583395107,0.1809645364208223,0.1850235442747214,0.190223009895141,0.1990224828934506,0.2001597018898057,0.2017087667161961,0.0,2.3514107655173544,23.76125952498011,35.39136538761746,33.26492710539003,full_Colonoscopy_compliance,20 +100000,95859,61978,602.7185762421891,1214,11.329139673896035,1096,10.870132173296197,409,3.82853983454866,77.44506122741345,79.72254885095181,63.40474875222951,65.08410766304387,77.3661420822566,79.65485030790171,63.369425217048544,65.05551642367755,0.0789191451568456,67.69854305009915,0.0353235351809644,28.59123936632102,2951.53024,2149.294157811999,3079032.9963801,2242141.225979824,3.41052,2.50027976342771,2999.1445769307,2049.5829952614886,894.94651,454.7291050628507,930744.6249178482,472022.9694934916,834.81484,484.9232550745053,833142.6574447887,468136.1531775892,217.91989,134.60402726172347,213596.01080754024,126680.99736250498,370.71292,208.1780115161463,347093.96092177054,182972.8356164308,0.37855,0,100000,0,0.0,285103,2974.191260079909,0,0.0,326,2.816636935499014,0,0.0,79922,830.8661680176092,0,0,0,0,0,0,0,0,0,0.0,312,3.254780458798861,0,0.0,2,0.0208639772999927,0.01214,0.0320697397965922,0.3369028006589786,0.00409,0.5941080196399345,0.4058919803600654,10.622257956660984,2.957231190786564,0.2801094890510949,0.4607664233576642,0.1131386861313868,0.145985401459854,14.062064682434274,10.190957012216774,4.852750121597963,7553.536276595383,13.761428457776065,6.449871011515322,3.8472492602324615,1.993727579838368,1.4705806061899118,0.7326642335766423,0.8673267326732673,0.7850162866449512,0.6625,0.1451612903225806,0.7964912280701755,0.9344262295081968,0.8529411764705882,0.7717391304347826,0.15625,0.6634980988593155,0.8045977011494253,0.7007299270072993,0.5147058823529411,0.1333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022267657240025,0.0045077442032435,0.0067631282763655,0.0089825829239576,0.011299205397606,0.0135312490461995,0.0158885358103153,0.0178551398533655,0.019983865862002,0.0223415132924335,0.0244212121522409,0.0265727237298217,0.028387732884169,0.0305290118186774,0.032752598881116,0.0349806981689065,0.0369094895342103,0.0389103042360938,0.0408521329277535,0.0430154518495395,0.0572557688497752,0.0713629050792921,0.0847049461825187,0.0974678098076459,0.1094264580549447,0.124255858138062,0.0677955332464974,0.0850937221065159,0.1010185037060737,0.1154661243711869,0.1350049977966702,0.152744630071599,0.1697009173315963,0.1696634242731907,0.1856452498627128,0.2018030973451327,0.1145805473834358,0.1345682895594149,0.1540100406840357,0.1653819762122598,0.176931432136997,0.1937334252368658,0.2086080975678933,0.1830918567398269,0.1997576638798013,0.2149580947231302,0.1406907750921241,0.1551339002411473,0.1724022158804767,0.1812504929929272,0.1714722322757067,0.1810110130651891,0.1888520647173162,0.1498925963053129,0.1585358677102336,0.1657303796126648,0.110198783215252,0.1116277562658976,0.1201017983247096,0.1207827141827388,0.1101881080282808,0.118034191362592,0.1271486870852055,0.1062349066959385,0.1117947992550156,0.1208712729869666,0.1231958619538919,0.1318853011457631,0.1398596634648136,0.1487284374638212,0.1549183238636363,0.1610147553714729,0.1677478580171358,0.1729396013091342,0.180850087211971,0.1885787096026873,0.1905189173022282,0.1953953953953953,0.2049488972565895,0.2209214501510574,0.0,2.2201666971113374,22.75026590510391,38.29043693513744,30.640626129232366,full_Colonoscopy_compliance,21 +100000,95680,61524,600.1149665551839,1230,11.538461538461538,1095,10.817307692307692,349,3.2399665551839463,77.29747507811412,79.7002536694451,63.28577397120039,65.06559409452598,77.22931559420638,79.6435085966099,63.254155032939465,65.04083093665172,0.0681594839077348,56.74507283519858,0.0316189382609266,24.76315787426131,2949.10849,2146.843432817222,3082243.154264214,2243755.7132287025,3.51552,2.594015085068475,3091.952341137124,2128.8410170030047,889.81026,451.1779426824359,926334.5840301004,468704.94606569264,825.21823,487.9793222391573,819439.423076923,467009.7187909254,232.41062,143.2900304835785,223792.8198160535,130885.0682702184,324.02988,186.7288651078119,299934.36454849504,161682.42283075865,0.37913,0,100000,0,0.0,284542,2973.8712374581937,0,0.0,345,2.978678929765886,0,0.0,79555,827.7382943143812,0,0,0,0,0,0,0,0,0,0.0,325,3.3967391304347823,0,0.0,1,0.0104515050167224,0.0123,0.0324426977553873,0.283739837398374,0.00349,0.5987107171635777,0.4012892828364222,10.214466428699296,2.7821131270469683,0.267579908675799,0.4867579908675799,0.1232876712328767,0.1223744292237443,13.169774880938062,9.257212051756293,4.146101271504247,7563.003528537256,13.857964276581376,6.892391782492444,3.667234519174995,1.674038497900226,1.6242994770137087,0.7433789954337899,0.8667917448405253,0.7918088737201365,0.7238805970149254,0.1703703703703703,0.8071065989847716,0.926829268292683,0.8607594936708861,0.7972972972972973,0.2222222222222222,0.6686507936507936,0.7967479674796748,0.7111111111111111,0.6333333333333333,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024423365357331,0.0046152597731929,0.0068226813543834,0.0092876740168682,0.01153564453125,0.0137709059056,0.0159724205458773,0.0180858234104695,0.0200969563082965,0.021884280593958,0.0243199442005497,0.0263920279432915,0.0284465020576131,0.0304195047556237,0.0323273414349581,0.0344649248019197,0.0366593078573427,0.0384910910827761,0.0402929640765285,0.0420513996289888,0.0567441083068694,0.0706120056112728,0.0844649190924927,0.0969598148537765,0.1095569620253164,0.125166627874992,0.0685123458100677,0.0861044245148371,0.1023025014170062,0.1157913951016288,0.1349654874892148,0.151984217315426,0.1693152236660095,0.1696300434920739,0.1859783315515094,0.2022428289371519,0.1172184912449296,0.1372891281335165,0.1554003407155025,0.1659353123818471,0.1777502489174983,0.1943592744294909,0.2088361966964835,0.1843266049767464,0.2014114103171422,0.2176976325967531,0.1412030958900683,0.1572536554354736,0.1746078989595735,0.1813773291516221,0.1731136259777963,0.1819592655157733,0.1893544351834933,0.1503312211981566,0.1592335987472855,0.1665247407317295,0.1109507147228193,0.112479087823022,0.1205509939134393,0.1208872458410351,0.10973630831643,0.1185874400264175,0.1261092466388025,0.1012391709617282,0.1078616203987368,0.116126070991432,0.1168003118387348,0.1236961590379187,0.1312395223921448,0.1373140096618357,0.1450983868108491,0.1528708380579321,0.1579043669187606,0.1659196120214564,0.1718225528440533,0.1780009128251939,0.1862977212192956,0.1939193139738842,0.198469253101082,0.2060227690047741,0.0,2.400905399033226,23.495742523005244,37.93554248712006,28.328846582101093,full_Colonoscopy_compliance,22 +100000,95825,62307,605.4161231411426,1213,11.489694756065743,1090,10.748760761805372,367,3.391599269501696,77.32864418348662,79.63902153811998,63.32870225298407,65.03823099730414,77.25904328899537,79.57917911172493,63.29804023519537,65.01374702262895,0.0696008944912449,59.84242639505055,0.0306620177886927,24.483974675192144,2944.54366,2145.170827402871,3072824.983042004,2238624.270704797,3.12157,2.256414543648725,2627.717192799374,1724.867773178947,898.32305,456.1915955235453,933579.796504044,473113.1142411144,829.67976,481.7138229485955,821122.7132794156,458063.47096265055,210.58399,126.0509488692368,202323.69423428125,114304.50437194004,333.0421,185.35994830993087,306546.1414036003,158648.64383774492,0.38198,0,100000,0,0.0,284061,2964.362118445082,0,0.0,306,2.5254369945212627,0,0.0,80281,833.8638142447169,0,0,0,0,0,0,0,0,0,0.0,350,3.652491521001826,0,0.0,4,0.0417427602400208,0.01213,0.031755589297869,0.302555647155812,0.00367,0.5699100572363042,0.4300899427636958,10.616902537107034,2.72430299370798,0.2788990825688073,0.4862385321100917,0.0990825688073394,0.1357798165137614,13.641331129125245,9.949006676643044,4.445209451223153,7653.814461191072,13.754997615407992,6.673538834807373,3.8135076992404926,1.9180091901032204,1.3499418912569112,0.7311926605504587,0.8528301886792453,0.7828947368421053,0.6351351351351351,0.1203703703703703,0.8029465930018416,0.9356223175965666,0.8827160493827161,0.7021276595744681,0.1666666666666666,0.659963436928702,0.7878787878787878,0.6690140845070423,0.5185185185185185,0.074074074074074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021269053527118,0.0047439484247658,0.0071019124435651,0.0092333008288639,0.0115720968069961,0.0138668295662797,0.0159310977474263,0.0180636206843765,0.0202137878880781,0.0225221537768863,0.0249595278591774,0.0274721891547966,0.0297306463049934,0.0318506089086997,0.0341424682395644,0.0360522292467253,0.0378740841922265,0.0397096941420425,0.0418687744736541,0.0439850954432856,0.0590560625814863,0.0727780275387623,0.0860916046536002,0.098546704076164,0.1115491235651871,0.1265036044225524,0.0689534513837344,0.0873020939734422,0.103981119583093,0.117848222038786,0.1362872832992354,0.1543870276819229,0.1708033006098953,0.1707519643305976,0.1871226036362036,0.2041878439579665,0.1180232363478086,0.1378961109110551,0.1567819692223886,0.1671078414520952,0.1790794106745737,0.1957084460686133,0.2105082214029139,0.1857120581497163,0.202381097005406,0.2183063036437745,0.1426248983930469,0.158188427903193,0.1755103096784208,0.1827765698095803,0.1751786577830315,0.1849060230377418,0.1929343623915763,0.1529998702291177,0.1612669281432694,0.168221592121711,0.1112055665753597,0.1113935187448066,0.1194547330322864,0.1208031193210889,0.1096522093410867,0.1188673353889387,0.1267384755065825,0.1022742268948225,0.108977845033457,0.1171852954003232,0.1186956886194082,0.1255650890303533,0.1335612925286373,0.1415895061728395,0.1492339031086706,0.1577588432739478,0.1651359294636296,0.1743540386466276,0.1800018246510354,0.1865619949203417,0.1877118019743627,0.1930886372510738,0.1990508832059056,0.2087053571428571,0.0,2.27706659173334,21.66473637452284,40.430872558851256,32.10397681146576,full_Colonoscopy_compliance,23 +100000,95754,61980,603.8598909706121,1193,11.508657601771205,1075,10.725400505461913,347,3.2896798044990287,77.35098256499538,79.69714925399039,63.33757887846742,65.07002237421726,77.28742717059525,79.64328277161329,63.30881839134531,65.04781170257712,0.0635553944001259,53.8664823771029,0.0287604871221063,22.210671640138457,2953.65086,2150.206040605934,3084604.946007477,2245535.638508988,3.00773,2.1442190696806858,2648.630866595652,1746.8294480446614,891.24526,451.7451519279204,928088.72736387,469720.68992477714,834.31727,470.07290186781415,835135.2737222465,454883.9593076313,216.97594,129.4394114711523,209957.2237191136,118601.076907627,315.11196,171.24082300233565,297159.805334503,148912.7019369858,0.37984,0,100000,0,0.0,284921,2975.5310483112976,0,0.0,292,2.527309564091317,0,0.0,79473,827.2970319777763,0,0,0,0,0,0,0,0,0,0.0,367,3.822294629989348,0,0.0,3,0.0313302838523717,0.01193,0.0314079612468407,0.2908633696563286,0.00347,0.5868113522537562,0.4131886477462437,10.40314640650354,2.8238393696332413,0.2772093023255814,0.4716279069767441,0.0967441860465116,0.1544186046511627,12.520324172232916,8.887892646177175,4.058164076241518,7582.062107166816,13.446915786899188,6.492793158193107,3.628628859814623,2.079456039491546,1.2460377293999103,0.7311627906976744,0.8481262327416174,0.7583892617449665,0.6686746987951807,0.1826923076923076,0.8077634011090573,0.937007874015748,0.825503355704698,0.75,0.2407407407407407,0.653558052434457,0.758893280632411,0.6912751677852349,0.5853658536585366,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146770224702,0.0044495798745198,0.0067273446774831,0.0088262777281222,0.0109709103110288,0.0132748317740835,0.015310751164616,0.0174520069808027,0.0193481127157881,0.0214616872550123,0.0234741784037558,0.0256518168753849,0.0277797768981648,0.0297912654851764,0.0319815126223808,0.0342336196471208,0.036459465896265,0.0384679243716663,0.0404757696426529,0.0425691514299109,0.0582315481783067,0.0717558689375235,0.0846702317290552,0.0971170830179157,0.1083947415583457,0.1239891328477647,0.0681444556398154,0.086554425098974,0.1034954277412187,0.1174804771303527,0.1361726879079687,0.1537612415181325,0.1700635141601774,0.1710206760748277,0.1867454631494381,0.2025505794757019,0.1158011074394927,0.1360559516045607,0.1548529044843151,0.1667163016585723,0.1783471896210816,0.1952168881719676,0.2102459306858182,0.186686914099866,0.2044430447211589,0.2192884424085377,0.1428143861924477,0.1580708536662652,0.1756463848893017,0.1832263833368398,0.1733997021453584,0.182265537187817,0.1896326839735768,0.1503150444514774,0.1594145102209618,0.167019059643145,0.1107967495009509,0.1121014126733254,0.1200805728117541,0.120434928423914,0.1083091269033654,0.1168014025518652,0.1246698035331022,0.1022324865280985,0.1078995800103817,0.1159898671988946,0.1166889781347612,0.1256501000153869,0.1336797839242367,0.1413219945883262,0.1487068009405084,0.1556003723239218,0.162477832813551,0.170925694086457,0.1775802648285869,0.1774544621377019,0.1828503137137735,0.1896652965355255,0.1929637526652452,0.2069603850425768,0.0,1.9126396844789584,22.00663837932028,36.73220612155557,33.13096738609711,full_Colonoscopy_compliance,24 +100000,95841,61883,602.7587358228733,1191,11.16432424536472,1058,10.433947892864223,361,3.411900960966601,77.51248185563044,79.79995544924707,63.42745123530996,65.11165992997344,77.4459433089122,79.74185786706835,63.39745392130101,65.08696581263295,0.0665385467182346,58.097582178717744,0.029997314008952,24.694117340487765,2960.59604,2153.792128412582,3089060.965557538,2247247.059757467,3.16709,2.2700569470464,2702.6429190012627,1766.6833057317845,890.87109,452.33779140074097,925902.5573606284,469110.2123001325,794.73643,463.9232954136438,789684.2374349183,444651.8444979322,200.11041,122.66657993113402,193114.2204275832,112309.73167134557,325.2007,182.1136128003931,305946.8494694338,160475.4886810592,0.38027,0,100000,0,0.0,285651,2980.4572155966657,0,0.0,309,2.587619077430328,0,0.0,79479,825.6278628144531,0,0,0,0,0,0,0,0,0,0.0,365,3.8083909808954415,0,0.0,1,0.0104339478928642,0.01191,0.0313198516843295,0.3031066330814441,0.00361,0.5861204013377926,0.4138795986622073,10.515854562541753,2.792941938727494,0.2731568998109641,0.4886578449905482,0.0964083175803402,0.1417769376181474,13.07708679860688,9.506774826048265,4.27106957801413,7573.84124094894,13.38118456684196,6.697622563852785,3.597243115510248,1.854734813052647,1.2315840744262785,0.7117202268431002,0.8452611218568665,0.7162629757785467,0.6466666666666666,0.1176470588235294,0.7960644007155635,0.9191176470588236,0.81875,0.7236842105263158,0.1764705882352941,0.6172344689378757,0.763265306122449,0.5891472868217055,0.5675675675675675,0.0588235294117647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021553032602756,0.0040611296219402,0.0062437283978146,0.0084829174742011,0.0106666124870476,0.0129767110749516,0.0152002606340738,0.0173254201337901,0.0193295416253969,0.0216688822988035,0.0237061461896082,0.0258132666037658,0.0281334127946404,0.0299696392734009,0.0319793814432989,0.0339502984982131,0.0360712733594089,0.0380795388570954,0.0402318551528561,0.0420162818297278,0.0569923871102304,0.0711223572220247,0.0843218207729063,0.0972177000073522,0.1089806361942066,0.124275167147248,0.0693043072748855,0.0868326191210403,0.1042342496158443,0.1178536627153672,0.1362952131091135,0.1533352054261891,0.1699993486614993,0.1693669891040898,0.1855203619909502,0.2014460068983815,0.1169133451382624,0.1373158792886653,0.1550789429007979,0.164666110850969,0.1753526645768025,0.1925449213294851,0.2074436134503268,0.1842189977704386,0.2018146890744119,0.2179161917368337,0.1414375085506759,0.1579871417564512,0.176010999884347,0.1829239582515891,0.1735933162502669,0.1824722040549378,0.1898480268564822,0.1521154945683247,0.1605991629341361,0.1678526009810452,0.1105578780904066,0.1120300995751029,0.1206693178754381,0.1219099936615254,0.1110454704894123,0.1190587320108907,0.1263537162857731,0.1020269529966034,0.1082437948669825,0.1175052038381479,0.1202738662822929,0.1295500929056627,0.1385920271416454,0.1473909063167531,0.1556505057551447,0.1640533820469883,0.1713821333975439,0.1787949352350458,0.1874664279319606,0.1918715616930504,0.1951466127401415,0.1979541579844667,0.2029434546862897,0.2110714285714285,0.0,2.3537880071675974,22.204237767819265,38.99830942804135,26.00267296116681,full_Colonoscopy_compliance,25 +100000,95743,62010,603.7725995634146,1087,10.287958388602824,954,9.441943536342082,319,2.9767189246211214,77.31288813594676,79.67309221967825,63.318020272784125,65.06268655067312,77.25432914731243,79.6211560489449,63.29203560175673,65.04112309841699,0.0585589886343314,51.93617073335588,0.0259846710273947,21.56345225613165,2946.07693,2146.460367892966,3077039.12557576,2241871.051902006,2.95128,2.1484392814316,2566.412165902468,1727.8749166326515,893.74938,453.1887161015159,930024.0435332088,470730.12159850367,711.69671,417.4949405270007,707193.9149598404,400118.9358998779,190.65206,114.51122177510864,185264.75042561855,105758.63416344662,291.56216,161.91581519152663,271087.2021975497,141342.76968980083,0.38113,0,100000,0,0.0,284192,2968.2483314707083,0,0.0,291,2.4962660455594667,0,0.0,79919,831.340150193748,0,0,0,0,0,0,0,0,0,0.0,354,3.686953615407915,0,0.0,1,0.0104446278056881,0.01087,0.0285204523390968,0.2934682612695492,0.00319,0.576395242451967,0.4236047575480329,10.576841901290814,2.825582914276662,0.2945492662473795,0.4737945492662473,0.0974842767295597,0.1341719077568134,13.17299315691412,9.53484722161017,3.8606039169160087,7585.204996932954,12.08065616986456,5.765927150609993,3.537400599081643,1.619887339134104,1.1574410810388154,0.7379454926624738,0.8517699115044248,0.7758007117437722,0.6953125,0.1290322580645161,0.8027888446215139,0.9342105263157896,0.8581081081081081,0.7534246575342466,0.1509433962264151,0.665929203539823,0.7678571428571429,0.6842105263157895,0.6181818181818182,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.004459805998439,0.0068081047900242,0.0090297810100353,0.0113607469411417,0.0139103869653767,0.0161517283572958,0.0182131882267664,0.020324288956591,0.0221173242133502,0.0243412283399979,0.026380103507763,0.0282828698370906,0.030458159943966,0.0324574164061613,0.0346645169291826,0.0368211234791612,0.0387017784141609,0.0409396252313707,0.0431865303868554,0.0577340683203875,0.071935294856234,0.084660800989964,0.0971106531522059,0.1091160220994475,0.1249973557844858,0.0681323811848094,0.08621699006908,0.1035867637948345,0.1170239001533298,0.1360211002260738,0.1532622564390908,0.170348066178229,0.1710893167579624,0.1877784010294651,0.203350421293887,0.1156995292595319,0.1350476169059692,0.1533424872053833,0.1648157900762484,0.1763290890376898,0.1924910050932199,0.2089077913639317,0.1847322763984445,0.2018454300749327,0.2177179392598057,0.1421364169934314,0.1572204181043231,0.1748631763733994,0.181870814089659,0.1734011705955002,0.1833379007947382,0.1912503155945802,0.1511285009422155,0.1600609305214587,0.1676238061145216,0.1104585249102475,0.1120841487279843,0.1206598399565984,0.1217360496014171,0.1105792422724405,0.1195343832534481,0.1271479084386179,0.1016381891844283,0.1086220369887991,0.1166260735803102,0.1173736525269494,0.1270788253477588,0.1352617079889807,0.1415663823655411,0.1495389549645863,0.1580878552971576,0.166199926945087,0.1724952043677143,0.1782882143833743,0.1864484376788371,0.19488627917348,0.1952269170579029,0.1984487830970847,0.2056040756914119,0.0,1.9452555076509597,20.1363970236846,34.01173134570205,25.61982365903758,full_Colonoscopy_compliance,26 +100000,95766,62360,607.3971973351711,1176,10.90157258317148,1033,10.045318797903224,372,3.3310360670801744,77.37208356525132,79.70970139851613,63.35007434272507,65.07908391916607,77.30298524370512,79.65572625607989,63.31876287151665,65.0568235068906,0.0690983215461926,53.97514243624357,0.0313114712084257,22.260412275471708,2951.15036,2148.704076448849,3081626.42273876,2243702.4376593456,3.29122,2.452542418584131,2660.213436919157,1784.8084676180322,899.6146,457.6694596668352,935486.7802769252,474817.564058086,776.40069,454.3619278747896,760085.1972516342,424045.0491680946,200.97072,120.94400609860986,193373.5146085249,110003.12553864102,337.90476,187.29391107375625,302170.2065451204,152264.84128012124,0.38203,0,100000,0,0.0,284565,2971.4616878641687,0,0.0,316,2.5165507591420755,0,0.0,80167,833.1558173046801,0,0,0,0,0,0,0,0,0,0.0,372,3.88446839170478,0,0.0,2,0.0208842386650794,0.01176,0.0307829228071093,0.3163265306122449,0.00372,0.5785472972972973,0.4214527027027027,10.616510325221238,2.8584359835836906,0.2691190706679574,0.4811229428848015,0.1074540174249758,0.1423039690222652,13.342980835284816,9.609484295467134,4.4248878443018205,7590.200782237541,13.04413080056322,6.35622191840866,3.5297429150550754,1.834227149730552,1.3239388173689313,0.7212003872216844,0.8390342052313883,0.7985611510791367,0.6598639455782312,0.081081081081081,0.7834862385321101,0.9279661016949152,0.844311377245509,0.7294117647058823,0.087719298245614,0.6516393442622951,0.7586206896551724,0.7297297297297297,0.5645161290322581,0.074074074074074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0045010340213292,0.006738243591565,0.0090409483853272,0.0110037628394182,0.0131434272682847,0.015227960737547,0.0173275914851929,0.0194162851536952,0.0215638112782724,0.0236931369836341,0.0256570777614712,0.027691833273372,0.0299629324546952,0.0322048405226196,0.0344888154156119,0.036725356850811,0.0389621164196749,0.0409713418815852,0.0429689940236969,0.0576595944521555,0.071597422701979,0.0851068290944163,0.0982955381349698,0.1106920094403236,0.1260459808976418,0.0684019755389278,0.0861654615057422,0.1030379989969374,0.1167843330512197,0.1351944489269001,0.1534495617116484,0.1707741122267136,0.1708873902921535,0.1871399041210362,0.2032635529331015,0.1163988715810131,0.1366435200791029,0.1559246377468363,0.1673931697271323,0.1791322433416141,0.1957303685710281,0.210177095631641,0.1844537162121773,0.2015603421122768,0.2172908679838789,0.1411144822764105,0.1574963868252237,0.1748094851263007,0.1813238056456803,0.1731016386419621,0.1819449190186564,0.189603946520167,0.1506989038773721,0.1590610661119225,0.1663526408557709,0.1106838478803383,0.1115699120511111,0.1202946405892811,0.121028557300037,0.1103075813342704,0.1176321583757136,0.1256858781302859,0.1025714285714285,0.1088723012236027,0.1176862212890174,0.1194765894253131,0.1279755472536972,0.1358452977948753,0.1440059047471059,0.1503241850963673,0.1582889910626646,0.1671453889873495,0.1747357528272599,0.1832040164308535,0.1887591575091575,0.1927835051546391,0.199885452462772,0.2094841063053673,0.2142341040462427,0.0,2.852984668722303,21.053128869039465,35.15782987205149,29.34471144892917,full_Colonoscopy_compliance,27 +100000,95649,61677,601.8567888843585,1159,10.893997846292171,1036,10.266704304279187,350,3.282836203201288,77.25911226955019,79.65695405679851,63.27736057920528,65.0465126788335,77.19252836168697,79.59877143276766,63.24739791666431,65.02199847915568,0.0665839078632188,58.18262403084873,0.0299626625409743,24.51419967781021,2942.70841,2142.8478482600503,3076569.9693671656,2240324.361216584,3.25683,2.4067365609082323,2859.778983575364,1971.015442825573,889.07041,451.7935516499506,926404.2906878274,469907.6589740002,810.79618,473.059817564833,807641.3135526769,454698.77393022174,204.11938,125.88571647089354,195606.76013340443,113885.76443441788,325.27212,182.9196337382123,304655.50084161886,161072.9305461076,0.3789,0,100000,0,0.0,283876,2967.893025541302,0,0.0,315,2.7182720153896014,0,0.0,79451,827.504730838796,0,0,0,0,0,0,0,0,0,0.0,362,3.784671036811676,0,0.0,1,0.010454892366883,0.01159,0.030588545790446,0.3019844693701466,0.0035,0.5888888888888889,0.4111111111111111,10.539630074859604,2.786262454754093,0.2944015444015444,0.4517374517374517,0.1167953667953668,0.137065637065637,13.264737853322126,9.44590720197519,4.213640927729925,7542.10526359767,13.039837140284234,5.959733264735904,3.830351809125896,1.7856806712574858,1.464071395164947,0.7171814671814671,0.8547008547008547,0.7770491803278688,0.6338028169014085,0.1322314049586777,0.7810760667903525,0.9434782608695652,0.8269230769230769,0.7011494252873564,0.2121212121212121,0.647887323943662,0.7689075630252101,0.7248322147651006,0.5272727272727272,0.0363636363636363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021474225864286,0.0045731552743386,0.0067190386293973,0.0090635668996911,0.0113128846838598,0.0134133175809178,0.0153659481615922,0.0174362220157824,0.0195459052759632,0.0215161627121419,0.0237960978910567,0.0258650785501591,0.0279252036534189,0.029854436443428,0.032218782249742,0.0339657757328232,0.0360812994654622,0.0381158006186551,0.0400773879486992,0.0420554414570323,0.0571533075556484,0.0711390416339355,0.0849014995589532,0.097572789975254,0.109359158499493,0.1252158071452024,0.0682735616554771,0.0862958226768968,0.1030160427807486,0.1167386214747513,0.1358639957714421,0.1533318886119839,0.1701953865255178,0.1705735442316961,0.1864354459964501,0.2025864461342066,0.1157906508611049,0.1354675083131375,0.1543750781365429,0.1651090700344431,0.1772288360555021,0.1938427656010215,0.2091524178545614,0.1843586819518636,0.2010174400915209,0.2165392205229403,0.1418178630905425,0.1578177470235066,0.1741661707247651,0.1803540126263624,0.1714523847932462,0.1793296780310838,0.1863190624252571,0.1462533941879946,0.1559751412764569,0.1631559666636138,0.1080386966660364,0.1090235382455682,0.1180386895157866,0.1189776108828113,0.108579486418287,0.1171079628724963,0.1243171660321138,0.1031943192560511,0.1091480265488815,0.1180693954724308,0.1204395849603927,0.128406466512702,0.1358156150173462,0.1437049104026064,0.1503622383217031,0.1586809324443066,0.1664831130690161,0.1754192409532215,0.1807511737089202,0.1873785297816394,0.1932921447484554,0.2022123035125169,0.2082777036048064,0.2149532710280373,0.0,2.1773398615227,21.553620641511987,35.14878982499973,30.296658076148784,full_Colonoscopy_compliance,28 +100000,95624,61572,601.3971387936083,1199,11.356981510917764,1051,10.468083326361583,351,3.356897849912156,77.28554750318864,79.71801783022691,63.27381344368565,65.07213455226905,77.22338987102856,79.6635370485075,63.24644233641034,65.0497279209072,0.0621576321600798,54.48078171941973,0.0273711072753073,22.406631361846507,2950.29632,2147.5337396521986,3085299.9247050947,2245801.6983962585,3.31477,2.3973464095415205,2948.872667949469,1989.465416152347,886.66694,450.00321340696826,924115.1802894672,468182.3134353077,800.34845,470.0350258418083,801754.8418806994,456635.66138448095,221.01356,136.05296020505256,218990.3057809755,130262.07383191636,320.68486,173.96091131111763,306592.8009704677,156941.85724506105,0.37923,0,100000,0,0.0,284411,2974.2533255249728,0,0.0,320,2.813101313477788,0,0.0,79215,825.31582029616,0,0,0,0,0,0,0,0,0,0.0,395,4.120304526060403,0,0.0,2,0.0209152514013218,0.01199,0.0316166969912717,0.292743953294412,0.00351,0.5693069306930693,0.4306930693069307,10.477142223699444,2.8260485307839267,0.2768791627021884,0.4681255946717412,0.1037107516650808,0.1512844909609895,13.531131415077674,9.825536366998762,4.194235132579717,7505.218360213317,13.4210564916593,6.4005749996470485,3.6690492980893055,2.0172771149621997,1.3341550789607433,0.7373929590865842,0.8699186991869918,0.7422680412371134,0.7044025157232704,0.1743119266055046,0.8123861566484517,0.953307392996109,0.8102189781021898,0.797979797979798,0.1964285714285714,0.6553784860557769,0.7787234042553192,0.6818181818181818,0.55,0.1509433962264151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001986218078638,0.0040775340048078,0.0062035495268651,0.008507394419881,0.0106824563545354,0.013222096588536,0.0154950984892533,0.0172952762340634,0.0192592895643902,0.0212611247094005,0.0234402248620258,0.025564883221504,0.0274006443577523,0.0295224252919771,0.0314929734529722,0.0333991870002792,0.0351088082901554,0.0372205086664381,0.0393134458854632,0.0415141179293008,0.0561856478335859,0.0703050499334569,0.0835837834429709,0.0965444584913611,0.1090467388434116,0.1240680335507921,0.0674877266061675,0.0848995256116411,0.1011791392925164,0.1147243350092389,0.1328205072878119,0.1503739837398374,0.1669245184345855,0.1676160637994873,0.1840005290538753,0.2003550427160767,0.1148392719471726,0.1347262897048884,0.1529263473461879,0.1645038998522523,0.176350155575862,0.1920643644825932,0.2082312417882887,0.1855540375350542,0.2017586474931986,0.2174459124995382,0.1407421289355322,0.1572575522752102,0.1750782118571761,0.1828398473483353,0.1734114901208568,0.1824130991333871,0.1903233042649244,0.1509938343465701,0.1597732707466123,0.1668848167539267,0.1093484686497704,0.1098131221793179,0.1186423471286927,0.1193205944798301,0.1079689612385873,0.1161236261594824,0.122764950286293,0.1018068179317326,0.1083321524727221,0.1172839506172839,0.1194601799400199,0.1285631180919139,0.1352426953297731,0.1431597596672315,0.1509484016447804,0.1576344529157222,0.1669413416346212,0.1736192714453584,0.1762469448719109,0.1816118047673098,0.1886183631563508,0.1921659879775063,0.1970250521920668,0.1982758620689655,0.0,1.98041917998674,22.214773641168723,41.593197679257074,24.65521216462737,full_Colonoscopy_compliance,29 +100000,95815,61828,602.2230339717163,1188,11.14648019621145,1074,10.687261910974271,372,3.5798152690079843,77.35864855579545,79.66531570439327,63.35358995694328,65.05527196161614,77.2901576397212,79.6033296200221,63.32300099496569,65.02887560026362,0.0684909160742535,61.98608437117059,0.0305889619775854,26.39636135252488,2948.09884,2147.0571100522848,3076846.63152951,2240817.895396884,3.43296,2.437685306100227,3061.159526170224,2022.4133028233855,892.11281,452.8101842691753,927596.1905755884,469895.6026540477,837.41482,487.89716222643295,834032.656682148,469296.8767505645,215.4926,131.87752449733887,208549.2250691437,121320.76494013936,346.17376,195.3043898775684,330976.08933883003,176318.78065432698,0.38073,0,100000,0,0.0,284570,2969.9733862130147,0,0.0,335,2.964045295621771,0,0.0,79732,828.8263841778428,0,0,0,0,0,0,0,0,0,0.0,330,3.4337003600688827,0,0.0,1,0.0104367792099358,0.01188,0.0312032148766842,0.3131313131313131,0.00372,0.5833333333333334,0.4166666666666667,10.652991767864709,2.895195981239262,0.2728119180633147,0.4441340782122905,0.1266294227188082,0.1564245810055866,12.988730243624204,9.10904844010271,4.366323146904105,7568.827983309942,13.416538120440842,6.050721999845236,3.7007689564777415,2.054096388718984,1.6109507753988794,0.7039106145251397,0.8364779874213837,0.7918088737201365,0.6666666666666666,0.0955882352941176,0.7771639042357275,0.9322033898305084,0.8675496688741722,0.7692307692307693,0.141025641025641,0.6290018832391714,0.7427385892116183,0.7112676056338029,0.5777777777777777,0.0344827586206896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022873104872173,0.0043857427908719,0.0067418919877936,0.0089094543720255,0.0111251092191087,0.0135598392757235,0.0156867538605712,0.0179429375822427,0.0203706352287354,0.0222183577646613,0.0243262898054921,0.0264634384007056,0.0285614482092588,0.0303675804725446,0.0323132758691796,0.0343406593406593,0.0362249860314963,0.038253008925702,0.0403730901461408,0.0422253685350212,0.0565025977006697,0.0704951281729603,0.0843176506346095,0.0964785994262355,0.1085410190210232,0.1239221405021557,0.0687509276339503,0.0865698633051433,0.1034401759593414,0.1172358333780089,0.1364996985097769,0.1545193920051928,0.1713825877030818,0.1728577366498217,0.188293960943176,0.2042661643304338,0.1150155109692682,0.134465500759152,0.1534360928692141,0.1640828944355392,0.1754223666408409,0.1922825070159027,0.2067216158367134,0.1818257996552384,0.2005218129967841,0.216392474375223,0.141405694172273,0.1565536135562263,0.1734130159795544,0.1817608078258125,0.1728039249855896,0.1820832591821927,0.1902615851866366,0.1519446795690286,0.1602046986299349,0.1676281272771435,0.1115331491712707,0.1122937213162777,0.1203256987117634,0.1215467657729404,0.110297389498665,0.1188602230338066,0.1264981680432217,0.1036753209574772,0.1092238177473918,0.1181346884303459,0.1204907013219807,0.1294648374737362,0.1376674356943631,0.1459265890778872,0.1541059367223604,0.1621537503890445,0.1697222392543994,0.1731826965958079,0.1794452023647112,0.1879630685056423,0.1918415607449009,0.194591416813639,0.1966156325543916,0.1990162693908437,0.0,1.8957758335741324,21.89902719257729,37.24495796808189,32.534776502137746,full_Colonoscopy_compliance,30 +100000,95859,62222,605.6708290301381,1188,11.05790796899613,1054,10.390260695396364,367,3.432124265848799,77.41454581429173,79.7020868287144,63.37712166936033,65.0676510839312,77.35022768523775,79.64773373240754,63.34747456352241,65.04415781911624,0.0643181290539729,54.35309630685481,0.0296471058379168,23.493264814959502,2951.27565,2148.228716716989,3078767.40838106,2241029.759038785,3.52208,2.5757763879899502,3067.953974066076,2080.771120072137,894.94042,454.4564806561588,929553.7612535078,470951.3787549642,781.94707,465.2851473094424,776948.4555440804,446607.0972046888,221.49086,137.50712028417,215725.3257388456,128113.583788867,334.15404,186.5020097968943,312107.9710825275,163101.48725763982,0.3799,0,100000,0,0.0,284974,2972.84553354406,0,0.0,341,2.9209568219989777,0,0.0,79801,828.5189705713601,0,0,0,0,0,0,0,0,0,0.0,341,3.5468761409987586,0,0.0,4,0.0417279545999854,0.01188,0.0312713872071597,0.3089225589225589,0.00367,0.5916317991631799,0.40836820083682,10.48219841212214,2.774103580869634,0.277988614800759,0.4677419354838709,0.1072106261859582,0.1470588235294117,14.632442938972698,10.919227443601224,4.293707528823043,7612.140598454019,13.405445516817426,6.383406578058008,3.687337064449105,1.9354245293663908,1.3992773449439215,0.7258064516129032,0.8539553752535497,0.7918088737201365,0.6129032258064516,0.1504424778761062,0.7877697841726619,0.9402390438247012,0.8838709677419355,0.6463414634146342,0.1764705882352941,0.6566265060240963,0.7644628099173554,0.6884057971014492,0.5753424657534246,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023080427190362,0.0047008763487158,0.0073618138860439,0.0097659025846141,0.0120642341701392,0.0141841085074125,0.0162795436022819,0.0181361948671916,0.0202053220287042,0.0222467703826444,0.0242353471411304,0.0262904152305924,0.0283697416822506,0.0305088932806324,0.0327659267354703,0.034765544309027,0.0365730011587485,0.0386237628892688,0.0406303201428393,0.0425421260661535,0.0577520592221874,0.071775685307304,0.0845957214993609,0.0974505974505974,0.1101832350463353,0.1250792175419325,0.0676533217505535,0.0861112292189293,0.1024188299563607,0.1163126947916332,0.1357108278199128,0.1534893778042056,0.1702740291631353,0.1700174825174825,0.1862494093860912,0.2019867915970662,0.1169854645978241,0.1366628473860394,0.1548505559522595,0.164674118225812,0.177117635504408,0.1935016701315082,0.2086281643887399,0.1846025004486451,0.2014117133397208,0.2171223357807868,0.1429374016829384,0.1592768791627022,0.1771378370347402,0.1842711115203978,0.1754169571512844,0.1844997741489522,0.1918629070646543,0.1523769891948514,0.1611181552796862,0.1681767821639423,0.1109353216685725,0.1124405409354351,0.1210847137092008,0.1221697947110813,0.1114780715511356,0.120143199019398,0.1276109727738563,0.1047220273588214,0.1111032548492776,0.1191149855981239,0.1200389375608399,0.1282521630132379,0.1378614890271416,0.1474827093234419,0.1545410479002335,0.1608965481869005,0.1686797922454402,0.1769409712125618,0.1873988854934388,0.1934935388800725,0.1992673992673992,0.2052231533814071,0.2127659574468085,0.218102508178844,0.0,2.3990851540067712,21.97375148588401,39.28190055423059,26.76171470614058,full_Colonoscopy_compliance,31 +100000,95718,62197,605.8735034162853,1182,11.210012745774044,1065,10.624960822415844,358,3.42673269395516,77.36002699221102,79.73227371807292,63.33690834044432,65.08871313135425,77.29535503379685,79.67521652923631,63.30711747934673,65.06373939040077,0.0646719584141664,57.05718883660893,0.0297908610975952,24.97374095348448,2949.14335,2148.2394432080887,3081074.980672392,2244342.1751479227,3.35901,2.33008145398344,3041.5491339142063,1966.5908752621656,896.52186,455.4193144436607,933717.2005265468,473503.7267040892,789.85272,466.0129164987821,792543.8893416076,454216.9252374503,201.67157,124.14795869243868,200812.6998056792,119821.0249821755,328.59102,185.41218743618484,314889.6759230239,169385.64098712287,0.38298,0,100000,0,0.0,284364,2970.8518773898327,0,0.0,329,2.935706972565244,0,0.0,80178,834.7019369397606,0,0,0,0,0,0,0,0,0,0.0,358,3.740153367182766,0,0.0,3,0.0313420673227606,0.01182,0.0308632304558984,0.3028764805414551,0.00358,0.5744322960470984,0.4255677039529016,10.338279501996556,2.806718371355285,0.2845070422535211,0.4704225352112676,0.1051643192488262,0.1399061032863849,13.120213594336745,9.447268577591926,4.289783149974793,7595.9351238005665,13.368027976886076,6.4098861692811,3.732430516838615,1.869742860817987,1.355968429948378,0.7136150234741784,0.8642714570858283,0.7524752475247525,0.5973154362416108,0.0892857142857142,0.7888086642599278,0.936,0.8974358974358975,0.651685393258427,0.0847457627118644,0.6320939334637965,0.7928286852589641,0.5986394557823129,0.5166666666666667,0.0943396226415094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024409759852528,0.0045616275887236,0.0067889144840323,0.0089802718462382,0.0114426949835225,0.0135432365280436,0.0157900101936799,0.018330645655147,0.0202913365704063,0.0223898933229591,0.0245852898357563,0.0266418898801884,0.0286910111781824,0.0306120346908926,0.0327386786904528,0.0346774193548387,0.0366529572036839,0.0390268205596612,0.0408761857214178,0.042961789744605,0.0573645515685701,0.0715579046522581,0.0852548098105448,0.0978334034497265,0.1102383788969836,0.1253951305120045,0.0682232877874904,0.0864401187726822,0.1026851515604639,0.1175984724963528,0.1365624528667772,0.1554509549315587,0.171479497016661,0.1721190525636962,0.188147333699835,0.2046415838076045,0.1164261337021257,0.1361270669169636,0.1551136041702079,0.1665675057208238,0.1785012824363981,0.1952691737399446,0.2104877760718081,0.1842265711860556,0.2016483849463669,0.216244116454265,0.1388739812538222,0.1560313355643444,0.173546256643104,0.1810702833412185,0.1728340439224519,0.1820062472599737,0.1893582407719062,0.1500158168694101,0.1583330872146253,0.16531639027801,0.1096195464667691,0.1107810191723891,0.1186901525002955,0.1196313071676565,0.1092034744039918,0.1176161364432849,0.1246425117791082,0.1037417204018072,0.1101267612270863,0.1189892802450229,0.1204899963724642,0.1285115820601281,0.1368851332783731,0.1455075845974329,0.1531435191373702,0.1610195834628535,0.1660054928288068,0.1749374171697835,0.179081540408606,0.1850335494143068,0.1957796014067995,0.2033009708737864,0.2078711040676175,0.2163355408388521,0.0,1.983260688718883,22.257455382483197,36.86719391509299,30.3550242527261,full_Colonoscopy_compliance,32 +100000,95761,61539,599.0330092626435,1150,10.975240442351271,1029,10.265139252931778,329,3.1641273587368555,77.33346816806463,79.69652730582159,63.32120940122799,65.07085325353147,77.27163170062056,79.64039828554628,63.29337612065386,65.0465772620094,0.061836467444067,56.12902027530709,0.0278332805741285,24.27599152207449,2955.47336,2151.165252800429,3086292.164868788,2246380.1890126765,2.94095,2.11085106575412,2607.0947462954646,1740.2502749074465,882.08266,447.6261488777428,918025.0728375852,465016.9545037499,766.44321,444.4226675404187,770990.267436639,434715.0171159648,199.94002,120.66956051379287,195658.9216904585,112892.97501898684,297.08556,167.31286482969188,285590.5640083124,153903.4440051037,0.37875,0,100000,0,0.0,285102,2977.214105951274,0,0.0,287,2.516682156619083,0,0.0,79038,822.2240786959201,0,0,0,0,0,0,0,0,0,0.0,346,3.613161934399181,0,0.0,1,0.0104426645502866,0.0115,0.0303630363036303,0.2860869565217391,0.00329,0.5949696444058976,0.4050303555941023,10.391365725375133,2.8176067528223903,0.2886297376093295,0.4723032069970845,0.0913508260447036,0.1477162293488824,13.27354013637041,9.44456452785298,3.9383469203951447,7527.908323133209,12.964446149614757,6.2437598002125965,3.736903380336373,1.8268988431473208,1.1568841259184692,0.7531584062196307,0.8827160493827161,0.8080808080808081,0.618421052631579,0.1276595744680851,0.8072519083969466,0.9325396825396826,0.8933333333333333,0.7,0.0961538461538461,0.697029702970297,0.8290598290598291,0.7210884353741497,0.5487804878048781,0.1666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026546430923552,0.0047661542205816,0.0067799362604794,0.0089922575138694,0.0111368767925794,0.013389811524402,0.0154956571381967,0.0174828029638096,0.0197252769715056,0.0218951204282804,0.0242662210512286,0.0264257481648786,0.0287218617278364,0.0306485000154478,0.0326747485168945,0.0347083690787501,0.0367685887944334,0.0388390818910056,0.0408055058843098,0.0427437665340471,0.0570459290187891,0.071164693939489,0.0845145788960119,0.0967870852395225,0.1090418239723282,0.1247700213589358,0.068315403059817,0.086392421904103,0.1027065131480571,0.1168294958550945,0.1351336794708835,0.1524505030834144,0.1683920920420192,0.1673756848678382,0.1833798913402107,0.1999070148444159,0.1152472772719157,0.1348585054213344,0.153497181613002,0.1652766814245346,0.1767471953600684,0.1932043824608124,0.2079051196635717,0.1835631510338806,0.2002736839555808,0.2153538280214113,0.1398474119876334,0.1555136066487609,0.1719505434292123,0.1803627760252366,0.1716507979080059,0.1805842512143394,0.1876758936447263,0.1488019995403355,0.1569608668054264,0.1655962744262494,0.1091206235464202,0.1108904767330197,0.1191410876848624,0.1199985867971523,0.1091063861285367,0.1189014287663489,0.126888591157374,0.1031397036190141,0.1090457609081234,0.1170240049240869,0.1177536737027019,0.1265846153846153,0.1347322869801147,0.1429510478694609,0.1500088526912181,0.1571450688961139,0.164618112884486,0.1729445718937319,0.1765349876836055,0.1867407150295036,0.1890768774116948,0.1936056838365897,0.203943814154511,0.2114093959731543,0.0,1.868057983243968,21.12268003892712,37.900502311090825,28.743514471427257,full_Colonoscopy_compliance,33 +100000,95803,62423,607.9245952631964,1185,11.283571495673414,1065,10.594657787334429,341,3.2044925524252896,77.34149214859087,79.67943548458018,63.33904717832892,65.07188882280246,77.27836661148612,79.62695435352138,63.31027703369764,65.04957260465186,0.063125537104753,52.48113105879781,0.0287701446312809,22.316218150606915,2949.19095,2147.6460585035456,3078381.5016231225,2241722.011318586,3.20422,2.2987009782530587,2843.53308351513,1898.3444967830435,901.54543,457.9824725724562,937486.9889251902,475291.8064355365,814.20059,470.7831811641617,815625.4710186529,457163.4094591632,201.01808,121.86242206932612,195796.8330845589,113233.60334578907,309.43056,173.79807455656896,290437.94035677385,152420.38387096196,0.38117,0,100000,0,0.0,284427,2968.863188000376,0,0.0,313,2.73477866037598,0,0.0,80380,835.6523282151916,0,0,0,0,0,0,0,0,0,0.0,362,3.768149222884461,0,0.0,3,0.0313142594699539,0.01185,0.0310884906996878,0.2877637130801688,0.00341,0.587248322147651,0.412751677852349,10.675788843631995,2.7559207426600767,0.2948356807511737,0.4610328638497653,0.0929577464788732,0.1511737089201878,12.89388977083702,9.316989989327588,4.01512252524887,7624.703479265034,13.382601016918938,6.222965075419166,3.907257067344168,2.027050995606062,1.2253278785495414,0.7361502347417841,0.8757637474541752,0.7961783439490446,0.5652173913043478,0.1313131313131313,0.7976878612716763,0.925438596491228,0.916083916083916,0.6956521739130435,0.1428571428571428,0.6776556776556777,0.8326996197718631,0.695906432748538,0.391304347826087,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400224885278,0.0048761696217673,0.0071845349840174,0.0095923261390887,0.0116904919367146,0.0139959865948192,0.0162369451697127,0.0184727554938322,0.0208094731675392,0.0229167093325687,0.024721105733738,0.0267816800164304,0.0286155112116848,0.0305652563587477,0.0325652905182999,0.0345547573518011,0.0367701117289511,0.0388597273802361,0.0407535563244905,0.0426716913563539,0.0575309878552648,0.0713299874529485,0.0851025925848301,0.0979182648353842,0.1104108924977079,0.1266410164260195,0.0682307292715765,0.0862587869957779,0.1027515689706698,0.116147703521089,0.1364879119932832,0.1542070725088919,0.1703965236284628,0.1710064796704437,0.1869366398452271,0.2037828146442959,0.1174694432374012,0.1375858508775867,0.1557640507933633,0.1674453672077588,0.1781125285473713,0.1946711753731343,0.2098468219688923,0.1851050864468952,0.2020510212729892,0.218344793713163,0.1419153019766195,0.1572177347884435,0.174959437533802,0.1824486424835144,0.1731098736346112,0.1822656057747518,0.1897162375932692,0.1502763224000574,0.1588608528847572,0.16583883952305,0.111720001256163,0.1130966912422896,0.1220824941184435,0.1235085114281168,0.1124047535178627,0.1212381771281169,0.1293326435592343,0.1070451738133051,0.1130715234300891,0.1216726133942552,0.1217782779966235,0.1305441669772642,0.1378749610767048,0.1453808056779628,0.1518742985409652,0.1602253168518228,0.1678710394663702,0.172537581332735,0.1786995309482203,0.1871318008547995,0.1976308292097765,0.2003976143141153,0.2115332794395041,0.2192336035372144,0.0,2.0241794127097155,20.77655283415505,40.6779562768472,31.60526061144052,full_Colonoscopy_compliance,34 +100000,95702,61834,601.3876408016552,1207,11.441767152201626,1075,10.626737163277674,361,3.416856492027335,77.3419109081298,79.71106354754976,63.33255108723839,65.08121874323339,77.27422605773206,79.65312626547426,63.30205550073208,65.0565598439754,0.0676848503977396,57.93728207549975,0.030495586506305,24.65889925798592,2950.5936,2147.508579370523,3083086.414077031,2243934.650655706,3.20215,2.33978913251485,2743.8820505318595,1844.649964597392,894.13003,453.9723385617357,931016.4155399052,471821.95172357815,832.29253,481.2499663033116,830870.7968485508,464294.8026213708,212.00476,125.08018359615497,208908.0792459928,118089.93458460142,331.24194,184.57635568578024,313912.18574324466,165024.22155655085,0.37846,0,100000,0,0.0,284672,2974.54598649976,0,0.0,304,2.539131888570772,0,0.0,79849,831.0484629370337,0,0,0,0,0,0,0,0,0,0.0,357,3.730329564690393,0,0.0,3,0.0313473072663058,0.01207,0.0318924060666913,0.2990886495443248,0.00361,0.569078947368421,0.4309210526315789,10.618621069827434,2.789891504237981,0.2558139534883721,0.481860465116279,0.1181395348837209,0.1441860465116279,12.513175136116867,8.822440277481912,4.265678570213886,7569.661534625345,13.559187968277504,6.655785825303559,3.454814635905428,1.904689487988687,1.543898019079831,0.7051162790697675,0.8532818532818532,0.76,0.6,0.1102362204724409,0.7765765765765765,0.92578125,0.8633540372670807,0.6533333333333333,0.0952380952380952,0.6288461538461538,0.7824427480916031,0.6140350877192983,0.55,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0045809263200567,0.0067052140393588,0.0089278459413342,0.0113881319396429,0.0136332165838559,0.0159535969499576,0.0182187474483546,0.0204721995094031,0.0226288802235254,0.0249615581752947,0.0272618057480824,0.0293282876064333,0.0314228902877512,0.0333202625170264,0.0354462569000806,0.0373757249378624,0.0395907057834601,0.0417680454176804,0.0437682367653188,0.057773646778691,0.0720992306484534,0.0853959227355234,0.0986294741935144,0.1108005189818672,0.125928433882811,0.067401544729248,0.0853650746332219,0.1017628205128205,0.1150817491310131,0.1335745904552651,0.1510767232983443,0.1673808539795097,0.1672279197918261,0.1836615753417125,0.1990172534003253,0.1153610327644062,0.1349948312283698,0.1544478579768963,0.1657898950161249,0.1766024826055801,0.19350804189265,0.2088440761711131,0.1853513778703138,0.2020738584682554,0.2176556001279748,0.1406415976205651,0.1566699234858962,0.1734259235356377,0.1815495732107682,0.1726610989718085,0.1816565214417618,0.1892602433226122,0.1503505024585346,0.1589633274889128,0.1668462180411198,0.1105000078346574,0.111448670251653,0.120015551310874,0.1209076461239625,0.1106729612144774,0.1190151012603894,0.1264874485213468,0.1034087148372862,0.1093109737322058,0.1172731932342388,0.1189036340220617,0.1268617595362176,0.1362273901808785,0.144815766923736,0.1534970635344367,0.1596163815448419,0.1678935099987731,0.1787887783880065,0.1864019033674963,0.1926795580110497,0.1969517608759988,0.2005537974683544,0.2075928917609046,0.2154471544715447,0.0,2.303286331691296,22.102303433956568,38.16854136845764,30.41457238821867,full_Colonoscopy_compliance,35 +100000,95691,62123,603.8916930536832,1252,11.683439403914685,1120,10.941467849641032,377,3.438149878253963,77.33810060160408,79.7191184326188,63.31256206328344,65.07419343367829,77.26386122041986,79.659981719535,63.277853704086766,65.0483424925521,0.0742393811842276,59.13671308380231,0.0347083591966708,25.850941126194016,2944.84157,2144.661198629941,3077439.3098619515,2241226.5297989785,3.18939,2.419589644133386,2577.515126814434,1773.0561974634643,898.17106,456.7710471686122,933884.858555141,473703.0418896612,850.79441,503.8601351808477,840062.2733590411,477506.1497179384,236.28819,149.4202679934483,223786.70930390529,133120.75216732878,346.721,202.97609640097895,316604.7799688581,172584.9622563413,0.38135,0,100000,0,0.0,284147,2969.4119614174792,0,0.0,315,2.49762255593525,0,0.0,80287,834.2790858074427,0,0,0,0,0,0,0,0,0,0.0,333,3.479951092579239,0,0.0,0,0.0,0.01252,0.0328307329225121,0.3011182108626198,0.00377,0.5926809864757359,0.4073190135242641,10.254767071247048,2.752287911551263,0.2741071428571429,0.4696428571428571,0.10625,0.15,12.730746737406305,9.143038809593383,4.560781951733374,7636.550876386202,14.170300276427424,6.765523726964604,3.814822687597101,2.100420275967392,1.4895335858983256,0.7375,0.8688212927756654,0.7817589576547231,0.6428571428571429,0.1764705882352941,0.7959527824620574,0.933579335793358,0.879746835443038,0.6881720430107527,0.2253521126760563,0.6717267552182163,0.8,0.6778523489932886,0.5866666666666667,0.1041666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021588858932517,0.0045952525867315,0.007046114484131,0.0092383681931825,0.0113144961894974,0.0136689108668859,0.0159312975542092,0.0183030835384599,0.0206371120314976,0.0228536323145446,0.025041274008142,0.0271599613907543,0.0290775985276124,0.0314916842593069,0.0335379377933666,0.0356533870717718,0.0379482082026113,0.0401938101117416,0.0424910329053386,0.0443474456204683,0.0592781351825549,0.0729256087602855,0.0859505346331021,0.0992090205318074,0.1115845426932163,0.1267601163713303,0.0684927145570896,0.0866259132249888,0.1029286019666524,0.1171389637005483,0.1358821564422797,0.153750378935516,0.1698669801667646,0.1689427264570065,0.1851489071338953,0.2015781366019084,0.1167517225206311,0.1369119963988296,0.1550443924703104,0.166389732424225,0.1775457523527301,0.1934868590418685,0.208906825094382,0.1854468808756781,0.2019249441693368,0.2177582298442736,0.1419798636733162,0.1575896262395118,0.1750400578901121,0.1822606956796295,0.1737381322748484,0.1827821464777927,0.1905349159858178,0.1514720666379434,0.1604333323493816,0.1680507391859828,0.1123824771232597,0.1126444628663383,0.1220518369486195,0.1232903305508003,0.1130772790374826,0.1212989493791786,0.1297566417386274,0.1043430335097001,0.1106094274502387,0.1197513249082755,0.121178401535594,0.1300840439236856,0.138881300368802,0.1480440474357,0.1555155295874884,0.1626456757309343,0.1712767242420582,0.1796084709991994,0.1887892376681614,0.1972102517577682,0.2067314667053532,0.2059443911792905,0.2093506493506493,0.2159420289855072,0.0,2.940820701064468,23.0787134102948,38.70555203058444,30.986420442383043,full_Colonoscopy_compliance,36 +100000,95660,62046,604.8818733012754,1142,10.89274513903408,1019,10.171440518503031,340,3.219736567008154,77.27782633283482,79.6887165891267,63.2892740309558,65.0723265107807,77.2143619658492,79.63380337817107,63.26027564588342,65.04895252125259,0.0634643669856132,54.91321095563251,0.0289983850723771,23.373989528110428,2949.19567,2147.8716982271726,3082988.2395985783,2245309.274333235,2.98905,2.081159332807171,2661.844030942923,1712.7632582136432,891.77107,452.4428159597622,929620.896926615,470926.5774726945,777.95215,449.9838844766659,778492.1179176249,435679.97195971786,208.27205,127.03053498759655,203880.6502195275,118953.28767258684,313.78806,177.8485267800067,296475.51745766256,158078.84578824314,0.38057,0,100000,0,0.0,284348,2972.4754338281414,0,0.0,300,2.634329918461217,0,0.0,79465,828.0786117499478,0,0,0,0,0,0,0,0,0,0.0,376,3.9305874973865778,0,0.0,2,0.0209073803052477,0.01142,0.0300076201487242,0.297723292469352,0.0034,0.5888501742160279,0.4111498257839721,10.189449976308444,2.992392912089244,0.2836113837095191,0.4661432777232581,0.1069676153091266,0.1432777232580961,12.316789241679798,8.464544095026445,4.113848102669084,7587.338358584626,12.870397555735902,6.083165360185649,3.621683051257455,1.834251221931083,1.3312979223617152,0.7232580961727183,0.8547368421052631,0.7577854671280276,0.636986301369863,0.1743119266055046,0.7846153846153846,0.9396551724137931,0.86,0.6578947368421053,0.1774193548387097,0.6593186372745491,0.7736625514403292,0.6474820143884892,0.6142857142857143,0.1702127659574468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711570030196,0.004664935907837,0.0068828294723164,0.0090653170320233,0.0110280278752734,0.0133046729352797,0.0153697093319734,0.0177617535007711,0.0200384607516212,0.0220751682527325,0.0243387111662683,0.0265733978408472,0.0286267004177728,0.0307346635883905,0.0325428208596177,0.0344834719291713,0.0366213821618428,0.0386692141551752,0.0407405094905094,0.042781027453679,0.0566806696344598,0.0706715261195592,0.0840785993198135,0.0970712353851172,0.1093253696062809,0.124908700208534,0.0701238291455151,0.0869009312336181,0.1038012321382732,0.1178068367259297,0.1364532709776834,0.1538728048331565,0.1706698590629591,0.1709409190371991,0.1872578799084346,0.2036200097478842,0.1151635547916922,0.135141822435162,0.1541497493592215,0.1660852558017179,0.1782945736434108,0.1950051956240003,0.2098679392378747,0.1853611257358924,0.202549145636013,0.2187749978463394,0.143247901678657,0.1574812144597888,0.1751618279778286,0.1824925035509495,0.1738143831569901,0.182993617459337,0.1907778308379449,0.1501878427590574,0.158723347587411,0.1661892427243638,0.1099478912485634,0.1111510028232452,0.1190298507462686,0.1210254231286736,0.1086879925822902,0.1168582375478927,0.1247699212044754,0.1001673861333803,0.1069594642561347,0.1147184485890449,0.1149949624986007,0.1237205850521042,0.1322674418604651,0.1413845613213072,0.1495289547707282,0.1564054726368159,0.164336521952416,0.1715241635687732,0.1770138063454329,0.1871027389344736,0.1954159845215062,0.2067736185383244,0.2146695325094035,0.2199705232129697,0.0,1.8280703919897985,21.17892158534277,36.67885716482999,29.06117097216286,full_Colonoscopy_compliance,37 +100000,95837,61998,603.5977753894633,1152,11.039577616160772,1025,10.298736396172668,343,3.3598714483967567,77.39792083527668,79.7020506091342,63.37134666233783,65.07167471865701,77.33807709256659,79.6470656149935,63.345289661640834,65.04887446151976,0.0598437427100861,54.98499414071034,0.0260570006969942,22.800257137248536,2952.44114,2148.624243405907,3080690.276198128,2241956.909550494,2.83123,2.0070950492040103,2548.4937967590804,1689.8335286621505,893.38289,453.01017119060623,929870.8223337542,470915.9442994596,801.93475,450.7269441830685,809785.6151590722,443427.9077409519,195.94886,114.75064312734976,195003.4120433653,110343.14429492928,312.6932,167.13543779588386,304974.5714077027,155719.0251532356,0.37833,0,100000,0,0.0,285103,2974.874004820685,0,0.0,278,2.472948861087054,0,0.0,79550,827.6865928607949,0,0,0,0,0,0,0,0,0,0.0,344,3.589427882759268,0,0.0,0,0.0,0.01152,0.0304496074855285,0.2977430555555556,0.00343,0.5927523727351165,0.4072476272648835,10.710663303555712,2.773189772641416,0.2926829268292683,0.4653658536585366,0.104390243902439,0.1375609756097561,12.379912244885762,8.927120874925063,4.057427547913335,7552.390509085365,12.786179210364557,6.0578514435762685,3.710148169529467,1.7208497234932534,1.2973298737655683,0.713170731707317,0.8406708595387841,0.79,0.5815602836879432,0.102803738317757,0.805668016194332,0.9282700421940928,0.8835616438356164,0.7,0.1372549019607843,0.6271186440677966,0.7541666666666667,0.7012987012987013,0.4938271604938271,0.0714285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022880051834453,0.0045293801740822,0.0068259039505045,0.0090980169166252,0.0112231620039037,0.0132197594186969,0.0153960587719834,0.0175771486865595,0.0196272758853219,0.0217818338073704,0.0238305022232239,0.0259861502949474,0.0279652745672163,0.0302849439682229,0.0323119260381559,0.0345874287602213,0.0363937309263952,0.0385655801419909,0.040705281302569,0.0426081074049019,0.0569765501126596,0.0708383884868008,0.0841022522333598,0.0962288549891186,0.1087664562098805,0.1237050192397141,0.0677241832698894,0.085687221950233,0.1014709495476055,0.1151317553436792,0.1349255917127904,0.1528187825108955,0.1693566793830904,0.1691313899727842,0.1851119025634261,0.2015292854850668,0.1148432537250225,0.1353489051422921,0.1538853647485274,0.1650245742370556,0.1762770182893035,0.1933289777632592,0.2084543286823901,0.1850900664150222,0.202445898704472,0.217842069100903,0.1422505043460935,0.1574811121375871,0.1754225497268886,0.182585779654128,0.1729846737663517,0.1822276822276822,0.1900224920020675,0.1494373013373042,0.1585283296541574,0.1657353141611012,0.1103896103896103,0.1123364091918979,0.120993319387273,0.1215604012057325,0.1105590750420183,0.1187496350507036,0.1265280039578652,0.1033207081828591,0.1096010417899846,0.1181457292867204,0.1195152059252609,0.1280591565855016,0.1351546640057805,0.1428959521869057,0.1499063085571517,0.1571993341656263,0.1634349030470914,0.1726901669758812,0.1804766269477543,0.1859394776205269,0.1933046956006517,0.1984435797665369,0.1981651376146789,0.1989814477991997,0.0,1.475040841945261,20.249349754416578,39.05298039748608,30.349062416328653,full_Colonoscopy_compliance,38 +100000,95561,61541,600.6215924906604,1186,11.207500967968103,1046,10.43312648465378,340,3.254465733929113,77.19945181010942,79.66990581795568,63.224607941291474,65.05345609036483,77.13994159726983,79.61784950588819,63.19859879407664,65.03178725568145,0.0595102128395979,52.05631206749217,0.026009147214836,21.668834683381988,2944.69319,2143.469637359265,3081461.003966053,2243021.67723021,2.84677,2.0226652039774904,2496.625192285556,1634.239076587196,882.68556,447.77377206708616,920379.014451502,466024.039682526,796.17552,456.1564380794195,799944.7473341635,444464.01810817904,216.25352,130.05284519002126,211711.911763167,121791.07908914489,307.64554,165.97238176905424,293755.2139471123,149802.76647312564,0.37708,0,100000,0,0.0,284230,2974.309603290045,0,0.0,288,2.4905557706595784,0,0.0,78867,822.0089785581984,0,0,0,0,0,0,0,0,0,0.0,362,3.7881562562133086,0,0.0,1,0.0104645200447881,0.01186,0.0314522117322584,0.2866779089376054,0.0034,0.5806722689075631,0.419327731092437,10.284842001697308,2.958373293570846,0.3059273422562141,0.4560229445506692,0.0975143403441682,0.1405353728489483,13.712868829556015,9.815316061947469,4.055547872562146,7547.840097763458,13.249173568483052,6.258653429723048,3.9986643883028696,1.7900772428607012,1.2017785075964336,0.7304015296367112,0.8448637316561844,0.775,0.6462585034013606,0.1764705882352941,0.8037383177570093,0.9094650205761317,0.8606060606060606,0.7297297297297297,0.2452830188679245,0.6536203522504892,0.7777777777777778,0.6838709677419355,0.5616438356164384,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00193611823499,0.0041902558795478,0.0063774473962141,0.0085610867089637,0.0106283340798957,0.0127219719056453,0.0148083890391386,0.0170651951767831,0.0192386410151453,0.0211828364709619,0.0232197665705164,0.0254285214851984,0.0276825161429851,0.0298219553960099,0.0318597056878306,0.0338791818482941,0.0360280010370754,0.0383072478227432,0.0402887289468476,0.0425396427713924,0.0565248315970043,0.0699464208948025,0.0829899941141848,0.0959785918223289,0.1085419594830228,0.1240937036251855,0.0681571613946265,0.0860542040119504,0.1024037019580959,0.1159582361100657,0.1357010193503801,0.1536408320041665,0.1696259134038608,0.1689750084986457,0.1852624146338772,0.2012968987686124,0.1154147279885468,0.1351046553590761,0.1532679887200946,0.1650255915903509,0.1761925175821756,0.1927095534835777,0.2078160538286581,0.1850341767598033,0.2016167264328693,0.2169870648729299,0.1419785560398817,0.1571870189677764,0.1738032982110958,0.1816336215988188,0.1726938956655056,0.1818705904960606,0.1907301872490946,0.151577947588827,0.159698068526604,0.1672915714067977,0.1118421052631579,0.112847958750775,0.1217338155146946,0.1232534222285268,0.111759784326485,0.1193804824561403,0.1275256982660159,0.1045033493246081,0.110377111897916,0.1192712488098607,0.1208136659923578,0.1293870489372219,0.1373400917209751,0.146540027137042,0.1529042524975687,0.1608373624112745,0.1661192214111922,0.1758945663378,0.1829687217501356,0.1884008236101578,0.1949115367743822,0.200268817204301,0.2104575163398692,0.2123538011695906,0.0,1.947328506003924,21.68957925707671,39.210027235614845,28.05935137884203,full_Colonoscopy_compliance,39 +100000,95671,62052,605.2931400319845,1239,11.675429335953424,1096,10.745157884834484,359,3.313438764097793,77.33990302576841,79.73242465267,63.32261558699434,65.08977224147861,77.27149697089241,79.67520836561243,63.2910269658104,65.06554790201727,0.068406054875993,57.21628705757098,0.0315886211839355,24.22433946134106,2951.69721,2148.6374521750945,3085243.3025681763,2245846.907520664,3.3367,2.4571663354587714,2759.9481556584547,1840.616629343031,893.87092,453.8512810756592,930037.0854281862,471062.52046682907,826.49016,488.60417843481184,816517.0218770579,463412.4518755026,213.72843,127.50340430930306,208236.88474041244,118140.082492441,330.96472,188.48975108888,305272.7576799657,161892.74670678505,0.38004,0,100000,0,0.0,284654,2975.3321278130256,0,0.0,328,2.6653844947789818,0,0.0,79861,830.5129035967011,0,0,0,0,0,0,0,0,0,0.0,354,3.700180828046116,0,0.0,3,0.0313574646444586,0.01239,0.0326018313861698,0.2897497982243745,0.00359,0.5956765412329864,0.4043234587670136,10.44621163941558,2.768814786636874,0.2874087591240876,0.4607664233576642,0.1067518248175182,0.1450729927007299,12.86850333925758,9.212620195888,4.286812220809652,7588.67194781036,13.915958792888109,6.496197528222774,3.969979558408618,2.006202390091044,1.4435793161656736,0.7372262773722628,0.8752475247524752,0.7873015873015873,0.6540880503144654,0.1196581196581196,0.7909407665505227,0.932806324110672,0.8579881656804734,0.7471264367816092,0.123076923076923,0.6781609195402298,0.8174603174603174,0.7054794520547946,0.5416666666666666,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147270333232,0.0043991688206375,0.006879686659699,0.0093141835615325,0.0116835972056984,0.0139050062094098,0.0160231581522403,0.018024822405487,0.0203224190630015,0.0222015230920406,0.0244917626072603,0.0265459472776545,0.0285464548305825,0.0307571871491404,0.0327488156550279,0.0345765305594904,0.0367596017364456,0.0386348066183645,0.0403965793470797,0.0422834744172469,0.0573019504601916,0.0710404255096378,0.0845775320274056,0.09719942768169,0.1091593872642106,0.1245887070324485,0.067441243567298,0.0856114801567024,0.1020198891250707,0.1156456749482623,0.1349136259854391,0.1529522511117603,0.1697241221822294,0.16924304705265,0.1858128555864907,0.2024384301913536,0.1168715283199857,0.1366381394721157,0.1549677433984512,0.1658521511222002,0.1771660368200256,0.1951017261918665,0.2105250720733494,0.1863093316112366,0.2030629058834932,0.2185598938170556,0.1420229821956606,0.1566494217894096,0.1742390995688876,0.1818145961793823,0.1734681561548674,0.1826372723538272,0.1906136577026023,0.1515408497671477,0.1602622795876775,0.1675501617631423,0.1109560034507097,0.1126845288417766,0.1214514767932489,0.1217118593301266,0.1103268601836625,0.1188834346267726,0.1266723011275793,0.1029243371796001,0.1095861236659646,0.1179844326095862,0.1192886303897992,0.127922758961071,0.1357948294829483,0.1446696580535355,0.152977139819245,0.1595041322314049,0.1667481363803006,0.1727165412424376,0.1806890299184043,0.1833676504232441,0.1877128053293856,0.1968116512497539,0.197481243301179,0.1982215635420526,0.0,2.738933129288017,22.45593141540354,40.27387742079532,28.884627480031504,full_Colonoscopy_compliance,40 +100000,95786,61952,603.2196771970852,1210,11.275134153216545,1074,10.638297872340424,381,3.5600192094878165,77.331780499572,79.67224479542452,63.32970022966426,65.06260323887635,77.26107230729565,79.61192839436136,63.29768514091527,65.03679485963795,0.0707081922763563,60.31640106316161,0.0320150887489916,25.80837923839852,2952.4289,2149.61923025254,3082317.7708642185,2244189.3703177283,3.25597,2.3781894086902478,2829.8811934938303,1914.096829571086,889.11738,451.1507811010397,924900.6222203664,468373.8562892148,827.3362,481.8221532126901,825018.8336500116,464351.6561095569,205.21182,123.63970582127828,201468.85766187127,116308.06779829857,345.8061,193.65947918823943,322760.3198797319,170140.8165376238,0.38232,0,100000,0,0.0,284731,2972.574280166204,0,0.0,325,2.797903660242624,0,0.0,79459,826.2376547720961,0,0,0,0,0,0,0,0,0,0.0,375,3.914977136533522,0,0.0,1,0.010439939030756,0.0121,0.031648880518937,0.3148760330578512,0.00381,0.5830592105263158,0.4169407894736842,10.388558026680773,2.793138878596262,0.2690875232774674,0.4664804469273743,0.1145251396648044,0.1499068901303538,13.374596568546636,9.815428886314848,4.5750393493223545,7638.023008104469,13.58189589398297,6.432362938122739,3.5926910246446986,2.081178173448544,1.4756637577669884,0.7262569832402235,0.8662674650698603,0.7716262975778547,0.6956521739130435,0.089430894308943,0.802536231884058,0.931174089068826,0.8670886075949367,0.7741935483870968,0.074074074074074,0.6455938697318008,0.8031496062992126,0.6564885496183206,0.5882352941176471,0.1014492753623188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021575082299316,0.0044604841652812,0.0066262798461647,0.008949977650453,0.0113602847698957,0.0132791576288964,0.0153443037458453,0.0175895299930581,0.0198728302426856,0.0222142601218201,0.0242444745151105,0.0265622112245107,0.0288420013572706,0.0308505268796159,0.0331296701482062,0.0352217512664116,0.0369012479933716,0.0387910469433899,0.0407669126052166,0.0426176593086214,0.0569457778519848,0.0705962343096234,0.0838225427708822,0.0972667374239446,0.1093700604859954,0.1242364677784118,0.0677676839416135,0.0856623277182235,0.1021516852733366,0.1173268758906663,0.1365383166302464,0.1541323699609531,0.1708457473414087,0.1708911973756151,0.1868625185674203,0.2030659828756881,0.1180302269812057,0.1383570729952445,0.156681400884053,0.1669126480178479,0.1786589029067886,0.1959408172083192,0.2102059869766122,0.1870250475700386,0.2038945607100419,0.2195713160744167,0.1432676570172041,0.1581602826424014,0.1757506042315596,0.1827119224036955,0.1752927133488016,0.1845469477142075,0.192326011431133,0.1524351676154332,0.1618563705651236,0.1683869199853854,0.1126457032294599,0.1131389834927567,0.1215865751334858,0.1223606325647142,0.1126024248266656,0.1215237797857184,0.1287911723909488,0.105138950154389,0.1125533934504034,0.1196230000770435,0.1213869594443199,0.129537191101251,0.1376260028800658,0.1456830346753549,0.1542498776853622,0.164461738002594,0.1734410658113859,0.1799153863282119,0.1862037460027409,0.1938153810782848,0.2021419009370816,0.2087954855030161,0.2263549415515409,0.236336223143611,0.0,2.2170349950475225,21.97079549391649,39.6258080712086,29.684859709279998,full_Colonoscopy_compliance,41 +100000,95686,62504,608.2603515665824,1283,12.14388729803733,1151,11.433229521560104,377,3.626444829964676,77.34192318165195,79.71837040517255,63.32298576779221,65.0752672606275,77.26723336530173,79.64971686051196,63.28928970924443,65.045889644761,0.0746898163502152,68.65354466059159,0.0336960585477754,29.37761586649401,2946.39695,2145.743508402442,3079235.1545680664,2242484.2802525363,3.39379,2.437402303197812,2948.9580502894883,1949.4516472606351,903.57211,459.40815903425664,939672.020985306,476609.9220831139,852.75671,504.1192463614879,853579.8549422068,489224.0833157285,218.3918,134.7654402353872,214521.43469264053,127124.7833908693,342.3926,196.97524227947628,328365.4871141024,181377.50011882168,0.38261,0,100000,0,0.0,284065,2968.720606985348,0,0.0,334,2.863532805217064,0,0.0,80712,839.0046610789457,0,0,0,0,0,0,0,0,0,0.0,380,3.960872018895136,0,0.0,0,0.0,0.01283,0.0335328402289537,0.2938425565081839,0.00377,0.5940902021772939,0.4059097978227061,10.341842194476126,2.7091787816075192,0.2971329278887923,0.4639443961772372,0.0999131190269331,0.1390095569070373,13.246893577611653,9.674748944485607,4.591971947738313,7710.480097953567,14.486561294396022,6.853707555915702,4.245519621483068,1.9738582281493329,1.413475888847919,0.7211120764552563,0.8408239700374532,0.7690058479532164,0.63125,0.1478260869565217,0.7901639344262295,0.9128787878787878,0.8789473684210526,0.7142857142857143,0.1384615384615384,0.6432532347504621,0.7703703703703704,0.631578947368421,0.5217391304347826,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020959266121928,0.0042570012466932,0.0066749850370776,0.009039754606212,0.0116237682161634,0.0140906730739862,0.0163021868787276,0.018410733978679,0.0205838744312081,0.0229153014416775,0.0249466819785087,0.0270281371944957,0.0292934799378747,0.0313958640302521,0.033538064516129,0.0357589733513955,0.0380679110816466,0.0402628137261007,0.0420969436038228,0.0440894502104956,0.0591848246182129,0.0726895771816297,0.0857832589871424,0.0990277163962371,0.1112494592113454,0.1268969458378309,0.0708536844340624,0.0882556591211717,0.1054752640355753,0.1197428025505056,0.1390341466570347,0.1569519353650876,0.1737270609748133,0.1738664215686274,0.1894122826326216,0.2057005494505494,0.1184565930754291,0.1383683896597904,0.1570799972782326,0.1679946879150066,0.1792446284432315,0.1961302390834161,0.2111798304222887,0.1874034419573887,0.2037250500515683,0.2199050150105812,0.1448692152917505,0.1613046569498755,0.1790847983453981,0.1850978946398241,0.1760919231286117,0.1853397964928662,0.1927429999719156,0.1517115511740867,0.1605905082146122,0.16738308246123,0.1096174057632276,0.1099317911735499,0.1187815367943377,0.1206284755936093,0.1112119080238456,0.1194615925607564,0.1285029346118872,0.1057668982247215,0.1118651281566253,0.1206195843877003,0.1218247218581825,0.1308660933660933,0.1384226180301528,0.1458421845428913,0.1526680496093922,0.1613401266018218,0.1681962799804209,0.1752894621134398,0.1838613593284592,0.1924119241192411,0.2001450326323423,0.20299022426682,0.2078974895397489,0.2143622722400857,0.0,2.325074855633578,24.48124407628891,37.38332800027247,34.06065507818412,full_Colonoscopy_compliance,42 +100000,95736,61800,601.4978691401353,1180,11.20790507228211,1052,10.382719144313528,365,3.352970669340687,77.32392886815877,79.68717230931321,63.31606620966248,65.06486089740203,77.25607309786022,79.63084772578713,63.2857654899265,65.04130030241383,0.06785577029855,56.32458352607728,0.0303007197359832,23.56059498819718,2947.24951,2146.019770742395,3078488.9174396256,2241574.1799030327,3.29192,2.380829184765041,2812.4321049552937,1860.762079849838,894.11284,453.2010614028069,930389.017715384,470579.5296237198,786.30188,469.2748155084982,779691.808723991,448681.085882132,217.48222,132.33956988473764,211133.51299406704,122311.51532818945,330.94368,184.96787595061585,303336.8220940921,157929.46530824676,0.38182,0,100000,0,0.0,284424,2970.888693908248,0,0.0,322,2.7053563967577503,0,0.0,79984,832.0172140051809,0,0,0,0,0,0,0,0,0,0.0,346,3.603660065179243,0,0.0,1,0.0104453914932731,0.0118,0.0309046147399298,0.3093220338983051,0.00365,0.6042016806722689,0.3957983193277311,10.258692125007448,2.756832208527216,0.2452471482889733,0.4866920152091255,0.1017110266159695,0.1663498098859315,14.08795786417407,10.48498940532453,4.371201755285674,7616.051304907929,13.492356898002862,6.626506057530452,3.300361281996842,2.2181603846760685,1.3473291737995,0.7328897338403042,0.849609375,0.7829457364341085,0.6228571428571429,0.2336448598130841,0.7699115044247787,0.9090909090909092,0.825503355704698,0.6736842105263158,0.2647058823529412,0.6899383983572895,0.7915057915057915,0.7247706422018348,0.5625,0.1794871794871795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022486249962016,0.0048160277403197,0.0073781638825177,0.0096222235769879,0.0117284452943809,0.0136659877800407,0.015731093122362,0.0179856482284851,0.0202230878549008,0.022361011569571,0.0245140255905511,0.0266643393979218,0.0289820802533233,0.0310249992274651,0.0329900524208527,0.0351446616292651,0.0373401004712828,0.0391497488271681,0.0411987355461276,0.0433188173275269,0.0577039527259819,0.0718836637547732,0.085083626068264,0.0979895270341317,0.1098762047366978,0.1255989591597118,0.0684075378803955,0.0856172405715624,0.1023915574497174,0.1164974646498215,0.1357295097849254,0.1531174982157918,0.1693986695073699,0.1700955420975535,0.1860733606016625,0.2022983161181042,0.117039433320319,0.1378728573356728,0.1564602693717307,0.1679441790121335,0.1795100377428392,0.1958822014654587,0.2110659862415193,0.1867802662640351,0.2043074755229464,0.2195788695973402,0.142156862745098,0.158732983361509,0.1759183831801078,0.1832288318668001,0.174001235861476,0.1834601933758486,0.19123612222269,0.1515744631857694,0.160001182347551,0.1663981028244808,0.1099654739485248,0.110491670052824,0.118590773079979,0.1188569412594813,0.1088737264473659,0.1173132057808203,0.1246982109325024,0.101029657660829,0.1077094021135251,0.1155539627278312,0.1173187475581849,0.1264428121720881,0.135614265020349,0.1436504854368932,0.1523826458036984,0.1602643535729037,0.1661574187240283,0.1705283353010625,0.1779932315009603,0.1832738163806013,0.1865027082418386,0.1929389312977099,0.1950345533657538,0.2108324245728826,0.0,2.2224129720160235,22.678152685348035,39.980627833974566,24.72135563187494,full_Colonoscopy_compliance,43 +100000,95796,61963,602.6765209403314,1229,11.743705373919578,1097,10.877280888554845,368,3.455259092237672,77.4066300966336,79.74458242421599,63.35719594835807,65.08721448941401,77.33867767591018,79.68633583379149,63.3273400154716,65.0633547099601,0.0679524207234294,58.24659042450264,0.0298559328864698,23.8597794539146,2954.60964,2150.2698356932733,3084248.2253956324,2244610.4726640712,3.26714,2.297065697595083,2749.9791223015577,1737.3331846789877,892.6758,453.6145539624537,928229.2997619942,470735.2281917013,807.7093,468.089203934882,805313.5830306066,450824.9516001527,214.93349,130.2434768494347,209426.5940122761,121135.57111328832,332.1197,181.20246207301616,310638.3147521817,158424.76006547647,0.37991,0,100000,0,0.0,285106,2976.157668378638,0,0.0,313,2.651467702200509,0,0.0,79711,828.4897072946678,0,0,0,0,0,0,0,0,0,0.0,356,3.705791473547956,0,0.0,1,0.0104388492212618,0.01229,0.0323497670500908,0.2994304312449146,0.00368,0.5985401459854015,0.4014598540145985,10.58892784053618,2.71962988227707,0.276207839562443,0.4867821330902461,0.0875113947128532,0.1494986326344576,13.773505847256857,10.150795973167442,4.398519800857934,7586.274524161194,13.802329043257965,6.81436340790234,3.8223720138407424,1.999290810242492,1.1663028112723932,0.763901549680948,0.8614232209737828,0.801980198019802,0.7317073170731707,0.15625,0.8241379310344827,0.9252669039145908,0.8727272727272727,0.7831325301204819,0.1764705882352941,0.6963249516441006,0.7905138339920948,0.717391304347826,0.6790123456790124,0.1333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022291122054025,0.0044411997323112,0.0064237221055195,0.0088292370685713,0.011269210036513,0.0134111321561678,0.015517628107094,0.0178226917776757,0.0199110747687432,0.0222279076907332,0.0243919936867781,0.0264432450181624,0.0285417694458148,0.0306776886729326,0.0325643245917862,0.0345511245120918,0.03661211230887,0.0392374357273179,0.041474031978224,0.0434252993232691,0.0580556975761433,0.0723884421112075,0.0858541391526738,0.098387876494945,0.1104017193969468,0.1257633708767407,0.0681483365658749,0.0859141602611127,0.1017412086036189,0.1155592683031315,0.1339436513656852,0.1519410181291417,0.1680138191773678,0.1686370831286502,0.1850444712858241,0.2004091562534557,0.1165154588618176,0.1369365928189457,0.1556759329563355,0.167034550590711,0.1785235674676525,0.1952674464756835,0.2095226843100189,0.1835782877506846,0.2001794352638789,0.2160855930640103,0.1420042963481041,0.1589565305656355,0.1766080512304077,0.1832732724833627,0.1746383229997047,0.183379675921487,0.1911016414583888,0.1512399781602919,0.1599976401528001,0.1676383954328748,0.1101697569531445,0.1111273222449178,0.1197497014247506,0.1200463336726455,0.1105578607653296,0.1182831184966609,0.1258014137760973,0.1038867089023828,0.1094305003410881,0.1180932020055483,0.1198744304922769,0.1283180428134556,0.136776042021966,0.1444615384615384,0.1516433165917702,0.157776185113136,0.1645776566757493,0.1702716480955502,0.1815255298220513,0.1843286933093848,0.1897360703812316,0.199310740953475,0.2015768725361366,0.2125320630267497,0.0,2.076126334191729,23.417667026986194,37.0567139839086,30.67540588251052,full_Colonoscopy_compliance,44 +100000,95682,61660,600.7504023745323,1202,11.130620179344078,1073,10.555799418908467,357,3.323509123973161,77.29491858535671,79.69526943871779,63.29396199958445,65.07307613560995,77.22519755430282,79.63692085726889,63.26197312844634,65.0480486378984,0.0697210310538878,58.34858144889665,0.0319888711381111,25.027497711548108,2951.29786,2148.4897559509623,3084476.4323488222,2245438.678070025,3.35658,2.440255455274534,2862.5342279634624,1904.8571886818156,886.5561,450.1706149975796,921894.1075646412,466940.26898651454,807.51744,479.6102504761607,800262.3900002091,457557.1899376698,223.20751,141.94033404931784,213530.3923412972,128626.1438737882,327.25584,188.8358487859703,303809.99561045965,163714.75948623454,0.37838,0,100000,0,0.0,284801,2976.5264104011203,0,0.0,332,2.7904935097510504,0,0.0,79139,822.5267030371439,0,0,0,0,0,0,0,0,0,0.0,353,3.6788528667879015,0,0.0,1,0.0104512865533747,0.01202,0.0317670067128283,0.2970049916805324,0.00357,0.5645695364238411,0.4354304635761589,10.405157175920657,2.8298284368444904,0.2628145386766076,0.4771668219944082,0.1118359739049394,0.1481826654240447,13.607133305226991,9.879156927452142,4.317520732694917,7522.922062367174,13.577797312609936,6.560331149651796,3.570166439289203,1.9607766098562276,1.4865231138127055,0.7483690587138863,0.87109375,0.8049645390070922,0.6540880503144654,0.2166666666666666,0.8085867620751341,0.9551020408163264,0.8589743589743589,0.7738095238095238,0.2567567567567567,0.6828793774319066,0.7940074906367042,0.7380952380952381,0.52,0.1521739130434782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002544426084929,0.0047997402254761,0.0070177220332097,0.009201362411672,0.0118081781813369,0.0138717601133387,0.0159802440915955,0.0179604012995239,0.0200720219339526,0.0221985474139255,0.024434277742445,0.0264117604758431,0.0285140975509364,0.0308461300628671,0.0329386748144554,0.034934226855299,0.0368186528497409,0.0386116821362569,0.0407793856044607,0.0427232836163138,0.0571989638171638,0.0709925981762408,0.0841842356570924,0.0963519471363784,0.108227300542297,0.1235966944947042,0.06676857100397,0.0843510759500409,0.1020238069796764,0.1155137820409652,0.1343071354705274,0.1511424120472543,0.1675798491074728,0.167149367752653,0.1829468104993457,0.1992449153574473,0.1140116019634091,0.1343068649731116,0.1520902620915107,0.1636376137327252,0.1753569858131407,0.1916635479041916,0.2073023607891375,0.1839233303384246,0.1993010387341035,0.2155377357328504,0.1397767472093401,0.1556032403057467,0.1732263142953002,0.1802197224558452,0.1726772001768986,0.1815681821291267,0.1892656554196955,0.149842044801838,0.1587934062366258,0.1663192806828036,0.1097984930235484,0.1115709211769689,0.1204551997425953,0.1210636189937017,0.1105995061361653,0.1184709886928283,0.12589019542895,0.1033432638199271,0.1095665811234673,0.1180780502853617,0.1210777434746,0.1295357606478333,0.138153825005155,0.1474913662644057,0.1555228670767585,0.1620348807121047,0.1684191221420711,0.176266430364791,0.1824059739550132,0.1881028938906752,0.1959231558879601,0.1987928348909657,0.2071577847439916,0.2176428054953,0.0,2.582661209086062,22.03301746268209,38.29275743206432,29.477397133404235,full_Colonoscopy_compliance,45 +100000,95724,61815,601.0822782165392,1226,11.64807153900798,1092,10.864568969119553,378,3.593665120554929,77.3593554540744,79.7298730603205,63.33143217950936,65.08377025831741,77.29030662931585,79.6699214962192,63.30064728810893,65.05839192585555,0.0690488247585534,59.951564101297095,0.0307848914004296,25.37833246186949,2955.07846,2150.3266361183287,3087082.0901759225,2246381.9273310024,3.08008,2.2460762289621634,2638.262086832978,1767.2687880802282,894.10374,454.183355793319,930846.7991308344,471981.556007504,821.54812,478.57232618532674,820132.7566754419,462097.45403439953,217.29901,131.03821194294014,213696.29351050936,123686.5017859476,341.12198,189.1458989081923,323105.61614642094,169118.19482941492,0.37864,0,100000,0,0.0,284821,2975.43980610923,0,0.0,295,2.486314821779282,0,0.0,79805,830.4604905770757,0,0,0,0,0,0,0,0,0,0.0,403,4.210020475533827,0,0.0,0,0.0,0.01226,0.0323790407775195,0.3083197389885807,0.00378,0.578264395782644,0.421735604217356,10.726092794029585,2.845161633066751,0.2673992673992674,0.4853479853479853,0.0952380952380952,0.152014652014652,13.37073362816027,9.638206175762674,4.472668919841516,7602.3458467663,13.793976491365871,6.826832130067365,3.6486419969017647,2.0727276183287278,1.2457747460680146,0.7362637362637363,0.839622641509434,0.7945205479452054,0.6746987951807228,0.1442307692307692,0.7903225806451613,0.9083969465648856,0.8580645161290322,0.7045454545454546,0.1509433962264151,0.6797752808988764,0.7723880597014925,0.7226277372262774,0.6410256410256411,0.1372549019607843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0044806228268472,0.0067987863658964,0.0092218317726635,0.0119174725196506,0.0140083683712217,0.0161883888067689,0.0185472510871118,0.0207110874854327,0.0227275054003419,0.0248884786955852,0.0268798981090602,0.0291575785011728,0.031166610000103,0.0333202625170264,0.0355492614147344,0.0376846704144278,0.0397967121298553,0.0417286081107772,0.0437694655375352,0.0583923313075621,0.0725499225520157,0.0855509519064352,0.0983965091214972,0.1103859131168283,0.1259731742405009,0.0696230739844645,0.0875087838844999,0.1042984781121751,0.1174930242541317,0.1356558657773084,0.1529385020080756,0.1697327052577757,0.1697888171572382,0.1857737544601559,0.2015011419321936,0.1154206859592711,0.1353484920045881,0.153901119466467,0.1657965837798232,0.1772437231238729,0.1929365598430346,0.2078694794999232,0.1844164844487459,0.2011430924040056,0.2166292024419304,0.1405645543714278,0.1565510597302505,0.1745882292244392,0.1821333368350557,0.1727963810594502,0.1822210065645514,0.1899372650934037,0.1498654759860324,0.1587002590063574,0.1668105995182037,0.1113874161309998,0.1121177252321605,0.1213771475780209,0.1223057026727429,0.1121175709400129,0.120145749303404,0.1273313758736197,0.1033470216805757,0.1093646434996686,0.1180477312301546,0.1203198836786623,0.1289316912059758,0.137088459687951,0.144665531124187,0.1533333333333333,0.160826129716859,0.1687719514449442,0.1733971997052321,0.1814556331006979,0.19008547008547,0.1952115158636898,0.2008497489378138,0.2013089005235602,0.2102582757366315,0.0,2.024614884922566,22.560833861945845,38.85155804525161,32.096698258957574,full_Colonoscopy_compliance,46 +100000,95878,61961,602.745155301529,1245,11.618932393249755,1109,10.878407976803857,363,3.4001543628361044,77.4394230829848,79.72102486407928,63.39129033748679,65.07787621566587,77.37543693996368,79.66556798450384,63.36283907864922,65.05514956611665,0.0639861430211254,55.45687957544487,0.0284512588375633,22.726649549213107,2957.41268,2153.08076542682,3084548.6555831367,2245636.7940787454,3.34503,2.5172275287151105,2786.708108220864,1923.3166406423893,896.8392,455.60400899658606,931129.5083335072,471939.680910768,825.30182,482.09483267734186,815287.0418657042,457324.8531230746,204.73146,125.97730920670624,198151.54675733743,116037.13769367928,329.4443,178.92915198799372,307419.3245582928,155675.7533526761,0.38192,0,100000,0,0.0,285041,2972.9447839963286,0,0.0,326,2.670059867748597,0,0.0,80091,830.951834623167,0,0,0,0,0,0,0,0,0,0.0,391,4.078099251131646,0,0.0,1,0.0104299213583929,0.01245,0.0325984499371596,0.2915662650602409,0.00363,0.5784,0.4216,10.395229354729429,2.80352817572637,0.2651036970243463,0.4905320108205591,0.0946798917944093,0.1496844003606853,13.759416544823434,9.758744416264534,4.309534148304591,7627.173942144967,14.03102848891828,6.951242130552177,3.717806504120036,2.074008982566508,1.28797087167956,0.721370604147881,0.8492647058823529,0.782312925170068,0.6144578313253012,0.0571428571428571,0.8072289156626506,0.9314079422382672,0.9225806451612903,0.75,0.0327868852459016,0.6268939393939394,0.7640449438202247,0.6258992805755396,0.4615384615384615,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021563069447256,0.0044995743645871,0.0070907596952697,0.0091888434241387,0.0112006667547541,0.0133289920840031,0.0152890247007894,0.0173806609547123,0.0196763515998528,0.021788721012306,0.0240173777613836,0.0260822277629,0.0281873953120343,0.0304299935145818,0.0323418732924377,0.0343965882219307,0.0362936599900678,0.0384432056037966,0.0405319822672577,0.0424664232285717,0.0572703297161501,0.0715435091532224,0.0852373871704119,0.0979988660941141,0.110112217613744,0.1257627905994636,0.0690915253519187,0.0867513920176818,0.1040327480891617,0.1175154907269672,0.1367638048350514,0.1537805049315631,0.1706596581159452,0.1708739773012769,0.1869160932931788,0.2036549481183212,0.1179471755283004,0.1383038440811927,0.1568258999320806,0.1685816753089521,0.1797634842803576,0.1964945832798852,0.2120686399471274,0.1886271557133125,0.2048259905757513,0.2196164666281741,0.144216499345264,0.1588160044583486,0.1751111111111111,0.181760948546096,0.1732233927208963,0.1815647801492088,0.1897759201532074,0.1507371923584418,0.1591079819121827,0.1666919529069061,0.1099512546825284,0.1112877841416124,0.119309553538285,0.1208760254920601,0.1112177830293183,0.1187354085603112,0.125846768381823,0.1040963855421686,0.1106047079828971,0.1192679258749458,0.1202252489666842,0.1283546545354624,0.1367483599034637,0.1452220003072668,0.1513204225352112,0.1588468061051441,0.1673762316019948,0.1742781378903948,0.1817269076305221,0.1852829755481575,0.1972019645780622,0.1972440944881889,0.2063914780292942,0.2089985486211901,0.0,2.651345485327115,22.917618244675506,39.560121888923,29.89494835488595,full_Colonoscopy_compliance,47 +100000,95739,61526,599.0244310051285,1179,11.332894640637566,1040,10.298833286330543,338,3.1335192554758247,77.34647984393533,79.69879739502213,63.33814763576003,65.07523982834113,77.28482097224429,79.64725499044872,63.31007909838687,65.05356184616541,0.0616588716910371,51.54240457341075,0.0280685373731657,21.677982175717148,2956.85613,2150.919710255019,3088445.6804437065,2246639.9171236586,2.9572,2.0312078552283728,2544.981668912356,1577.7769302252716,879.18155,446.77042812972593,914984.635310584,464073.465728502,806.80392,461.534282535662,801986.1080646341,441349.7556227472,206.81651,122.72346718352846,198301.9876957144,110496.65247759898,313.06292,174.3979585538495,289333.6049050021,149681.18200205246,0.3775,0,100000,0,0.0,285330,2980.279718818872,0,0.0,298,2.5277055327504985,0,0.0,78592,817.5560638820125,0,0,0,0,0,0,0,0,0,0.0,361,3.770668170755909,0,0.0,1,0.0104450641849194,0.01179,0.0312317880794701,0.2866836301950806,0.00338,0.6047098402018503,0.3952901597981497,10.194051161337306,2.8081375007104934,0.2538461538461538,0.4884615384615384,0.1144230769230769,0.1432692307692307,13.00306137227789,9.144675377143528,4.008075605654447,7519.777970745218,13.135285577737458,6.472166727946558,3.355258134456251,1.857288846706307,1.4505718686283458,0.7221153846153846,0.8287401574803149,0.803030303030303,0.7181208053691275,0.0924369747899159,0.779245283018868,0.8806584362139918,0.8873239436619719,0.8148148148148148,0.109375,0.6627450980392157,0.7811320754716982,0.7049180327868853,0.6029411764705882,0.0727272727272727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002167308081831,0.0045717645389208,0.0065759430084939,0.0089087990898193,0.0112372119511054,0.0133775859260465,0.0155759429153924,0.0178609702079016,0.0200243276670993,0.0220531774390056,0.0242622413103865,0.0263690017962535,0.0286331157147997,0.0308785662787104,0.032809549848849,0.034956433658229,0.0369104933478283,0.0390098147033801,0.0408528155178328,0.0428401799850012,0.0578796262462807,0.0714353000282601,0.0842487383672741,0.0970177504837217,0.1090726975591755,0.1244938308152627,0.0674445740956826,0.0850158047659085,0.1012619037451424,0.1146418313542247,0.133957694170838,0.1513640934698688,0.1681172648346752,0.1678994002032098,0.1831967123046832,0.1993648826581984,0.1142876249707426,0.1344835337754299,0.1532426303854875,0.1635387819559197,0.1744978852243049,0.1908015369702066,0.2055034159948937,0.1825004488598958,0.1989428509080328,0.2145446056689314,0.1407626463028125,0.1567445461121616,0.1740236923355165,0.1812776257629972,0.1717494264285618,0.1804120886648217,0.1883146004428623,0.1502449959047605,0.159784454122684,0.1675690473293588,0.1096554537467051,0.1112537580238888,0.1196036322437729,0.1200112918592752,0.1116844207723035,0.1202307182664951,0.1279502335386268,0.1033981544695751,0.1089326679753092,0.116973478138078,0.1182765575974899,0.126951380977307,0.1348291477974475,0.14300069567906,0.1521111752430848,0.1608214359611007,0.1698561677230619,0.1752996892111884,0.1829234847792303,0.191824985607369,0.2004138338752586,0.2022758485383559,0.2089391491653204,0.2134238310708898,0.0,2.1551125525726498,21.350880326545813,37.38384821706849,29.52212246178497,full_Colonoscopy_compliance,48 +100000,95751,62012,604.3592234023665,1257,11.926768388841891,1117,11.195705527879603,375,3.63442679449823,77.41222784566315,79.76999176231499,63.350809200748486,65.09085497101616,77.34812490374462,79.71176738848622,63.32246301792653,65.06635324611554,0.0641029419185343,58.22437382876444,0.0283461828219557,24.50172490061675,2953.19899,2148.300323349104,3084248.7180290543,2243632.257991148,3.36486,2.3806107636239986,3042.2763208739334,2014.3505170953813,894.10765,452.6856111430593,931073.7746864264,470707.46164052334,847.52898,489.2548738957312,853577.988741632,479405.28443121375,223.56922,135.0529089651684,220705.31900450127,128261.0510231418,343.24592,185.065776567818,331926.30886361504,169980.25933161651,0.38038,0,100000,0,0.0,285102,2977.535482658144,0,0.0,329,2.9242514438491503,0,0.0,79765,830.3620849912794,0,0,0,0,0,0,0,0,0,0.0,347,3.6135392841850216,0,0.0,0,0.0,0.01257,0.033045901466954,0.2983293556085918,0.00375,0.6068037974683544,0.3931962025316455,10.493232966303951,2.761993949959849,0.252461951656222,0.4870188003581021,0.1119068934646374,0.1486123545210385,13.788732484198135,10.074164031048634,4.388744529999746,7621.836374654164,14.109838498617597,7.024989499450992,3.550500787335724,1.9953645335360484,1.5389836782948343,0.7269471799462847,0.8602941176470589,0.7943262411347518,0.6506024096385542,0.096,0.7972270363951474,0.9321428571428572,0.8802816901408451,0.7529411764705882,0.1428571428571428,0.6518518518518519,0.7840909090909091,0.7071428571428572,0.5432098765432098,0.0363636363636363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022584565525622,0.0041656109055896,0.0062796737410217,0.0087029815582094,0.0110005185087282,0.0132132132132132,0.0152475691542491,0.0174586492250237,0.0198771601720983,0.0222210849539406,0.0242272690005739,0.0262482549067914,0.0284360189573459,0.0302562201351128,0.0323073271903666,0.0345444209003049,0.0363133697813121,0.0381901935965804,0.0403168794444213,0.0424175503656326,0.0563222950682757,0.0702178416724213,0.0839163773299906,0.0965750110449582,0.1084568715378528,0.1238994243142566,0.0675906568041685,0.0858131487889273,0.1021744937757119,0.1161238396737672,0.1350998803376419,0.1527409348303901,0.1700261210274271,0.1708697270199864,0.1866120399127734,0.2030667908461947,0.1176831992850759,0.1371050350642187,0.1559549745824255,0.1667716625622816,0.1786400129566646,0.1948149100557549,0.2100418311157327,0.1872003061212288,0.2043964566595169,0.2201771738195579,0.1432650109714741,0.1582712860254267,0.1758284198872267,0.1848012685266482,0.1763024312049158,0.1856277623178916,0.1930576297681689,0.1531956904322444,0.1621006911326652,0.1699119322044139,0.1133689171894996,0.1143323475703366,0.1221069969914449,0.1229846137651537,0.1118667745018748,0.1205297500338838,0.1286603785216694,0.1039756689932827,0.1114848178375708,0.1193934922532882,0.120769593825481,0.1305411189238765,0.1399059112292902,0.1465110027266792,0.1537276648182378,0.1626629709475413,0.1714407088238864,0.1769005847953216,0.1858836206896551,0.1911030413073082,0.1986620127981384,0.2044145873320537,0.2079853862212943,0.2056040756914119,0.0,1.7338961237298616,23.74480932937377,40.17191748252167,30.859496353001948,full_Colonoscopy_compliance,49 +100000,95739,61543,599.2646674813816,1236,11.855147849883537,1092,10.935982201610628,361,3.488651437763085,77.32373385663094,79.69406343232735,63.321321634088775,65.0753263623856,77.25806038747068,79.63540970599388,63.29118055624138,65.04977908733723,0.0656734691602594,58.653726333474765,0.0301410778473965,25.547275048367624,2953.25896,2149.147326120897,3084697.939188836,2244798.1764180707,3.38482,2.3933253253872886,3086.892488954345,2051.2699374207887,886.48555,450.1876492065441,923125.4347757968,468040.1583351377,821.04445,479.5075214621429,824877.3436112765,468139.82960146153,217.56647,133.46885460760967,211111.9084176772,123271.40936045896,331.0893,188.83469062785443,317835.05154639174,171766.26210193848,0.37967,0,100000,0,0.0,284966,2976.488160519746,0,0.0,331,2.9768432927020334,0,0.0,79177,824.1364543185117,0,0,0,0,0,0,0,0,0,0.0,353,3.6871076572765538,0,0.0,4,0.0417802567396776,0.01236,0.0325545868780783,0.2920711974110032,0.00361,0.6027397260273972,0.3972602739726027,10.110355594239785,2.7709619738041305,0.2802197802197802,0.4725274725274725,0.1053113553113553,0.1419413919413919,12.857919867225409,9.165227731089413,4.3086902534353815,7564.995162054405,13.742446303932027,6.6424580187668765,3.759344481570847,1.9063114119630011,1.4343323916313042,0.7206959706959707,0.8643410852713178,0.7450980392156863,0.6580645161290323,0.0956521739130434,0.7888307155322862,0.9285714285714286,0.8589743589743589,0.7411764705882353,0.1212121212121212,0.6454720616570327,0.796,0.6266666666666667,0.5571428571428572,0.0612244897959183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593718338399,0.0046345594126177,0.006973203410475,0.0092575655955937,0.0114459547452384,0.0136091841620063,0.0157467466242402,0.017791304525446,0.0200116572760831,0.0221619130523836,0.0243562264770128,0.026527677929547,0.0288665308725798,0.030636219368933,0.0328337565285605,0.0346114482430658,0.0367976800787116,0.0386985661818106,0.0405805841191944,0.0426999541532947,0.0574047778149014,0.0717238636482568,0.0850153161848013,0.0978203698638783,0.1101280239596735,0.1252617109019773,0.0676491496111447,0.0857507715228264,0.1020538947098593,0.1159426506385853,0.1351767505464569,0.1529224677895693,0.1686764018310517,0.1689606541964119,0.1846279064651664,0.2012200522563217,0.1152379890759112,0.1352079777198814,0.1538574860613752,0.1652984221358335,0.1763999538159565,0.1928755675385459,0.2085113918073427,0.184997847610848,0.2013304897850374,0.2157626868607395,0.1408313568842841,0.156129818371051,0.1736002583144979,0.1814083100017088,0.1727143508461394,0.1816873612367404,0.1893866105853487,0.1507659115426105,0.1591218013119792,0.1669049429657794,0.1107851596203623,0.1121385968048625,0.1204422687373396,0.1212639523196558,0.1116189559778686,0.1198282591725214,0.1280374218652978,0.1051597810734463,0.1115458490431813,0.1193044639646581,0.1195563666994244,0.1290752035666739,0.1369503692966107,0.1462424360726137,0.1546032030061734,0.1617294252633775,0.1674679487179487,0.174434187016081,0.1786625364431487,0.179808909865316,0.1845814977973568,0.188984040482678,0.1984231274638633,0.2081031307550644,0.0,1.8577154701663208,23.425538904111864,36.77073096935176,31.23267602279933,full_Colonoscopy_compliance,50 +100000,95774,61989,602.2302503811055,1208,11.328753106271012,1075,10.57698331488713,360,3.3516403199198117,77.38153749659537,79.72283110630636,63.350937847410606,65.08262989964578,77.31518880274272,79.66724848678523,63.32075148519533,65.05910223592278,0.066348693852646,55.582619521132415,0.0301863622152751,23.527663723001524,2952.01984,2149.3354808976223,3082260.7910288805,2244159.1668371605,3.3271,2.4057144633081275,2829.003696201474,1866.9622896695632,898.31081,457.0000101032671,933679.6416563996,473874.8458920413,774.19793,460.4159092555405,764442.6566709129,436885.3735403562,202.94869,124.6249581025962,194505.99327583687,112726.24940233926,326.40018,185.09302757583384,302524.9650218222,159836.52298355426,0.38043,0,100000,0,0.0,284803,2973.688057301564,0,0.0,326,2.7251654937665752,0,0.0,80153,832.6581326873682,0,0,0,0,0,0,0,0,0,0.0,329,3.4351702967402424,0,0.0,2,0.0208824942051078,0.01208,0.0317535420445285,0.2980132450331126,0.0036,0.5769547325102881,0.4230452674897119,10.285211191280313,2.7262578273998352,0.2920930232558139,0.5004651162790698,0.0948837209302325,0.1125581395348837,12.741412077783783,9.109381890252797,4.298844732322509,7636.262229599581,13.612882655096367,6.948898923770496,3.8631792417461406,1.50355623200341,1.2972482575763185,0.7348837209302326,0.8531598513011153,0.7643312101910829,0.6446280991735537,0.1274509803921568,0.7836879432624113,0.9025270758122744,0.8580246913580247,0.7101449275362319,0.0714285714285714,0.6810176125244618,0.8007662835249042,0.6644736842105263,0.5576923076923077,0.1956521739130435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002339524803014,0.0045715328319176,0.0070005275759912,0.0095264210921869,0.0120584826239908,0.0145159155918849,0.0167366575610551,0.0190040723012074,0.0212144127204725,0.0233797859496183,0.0254032340704609,0.0275297160805567,0.0296425009510687,0.0317226609556953,0.0338219063631393,0.035822036700281,0.0381845275052775,0.0403652986969907,0.0422397672969042,0.0440328189750317,0.0583367250033916,0.0724490649709241,0.085621428945851,0.0985677206477307,0.1107961431055377,0.1260687147945002,0.0688873109573216,0.0864591307306285,0.1038931933149772,0.1172554988637825,0.1358743622311683,0.1535158869205978,0.1700374938868662,0.1701413929500207,0.1862971516551193,0.2032693989131517,0.1176759118879871,0.1369755264399847,0.1550223290186566,0.1666018706977382,0.1782322357019064,0.1951729291702669,0.2103820617631075,0.1858955197111188,0.2022221414464517,0.217562222058426,0.1423817121204567,0.1583331220365628,0.1754526228916284,0.1819697964543664,0.1734419159110087,0.1818878248974008,0.1898345915208896,0.1503072770087875,0.1593642548293316,0.1675043656518108,0.1116942938614357,0.1120696644883,0.1206144413939465,0.1212803772854453,0.1103067462002991,0.1180880062305295,0.1252965323761783,0.1023393101017666,0.1093561866987747,0.1178441704609403,0.1205064562010207,0.1286691408766064,0.1370265377915912,0.1451780959364025,0.1532475571472785,0.1582826512730646,0.1637176268903447,0.1706108563821919,0.177028258887876,0.1849777066422773,0.1941790386594149,0.1992233009708738,0.2071713147410358,0.2140762463343108,0.0,2.525521046747826,22.16943566515936,39.10122933868151,28.5040830295986,full_Colonoscopy_compliance,51 +100000,95862,62015,602.251152698671,1244,11.808641588950785,1114,11.0888568984582,363,3.4320168575660848,77.37299817448195,79.67318192674807,63.35320242165369,65.05652093047092,77.31242235329438,79.62164200678816,63.32582014203528,65.03451081362527,0.0605758211875695,51.539919959907365,0.0273822796184148,22.010116845649463,2954.25249,2150.6253373904174,3081776.397321149,2243459.699766766,3.36299,2.3657026071934144,2992.708268135445,1952.371750217411,892.49961,452.9179055322097,927294.0268302351,469613.5248506425,852.73561,482.2222229977899,855368.175085018,468861.1264085772,226.07997,134.6436204393133,219737.5080845382,124354.19711597225,331.87168,178.3573372553523,313535.77016961883,157759.44876231597,0.38005,0,100000,0,0.0,284967,2972.679476747825,0,0.0,331,2.9104337485134884,0,0.0,79813,828.8998769063863,0,0,0,0,0,0,0,0,0,0.0,319,3.3277002357555654,0,0.0,4,0.0417266487242077,0.01244,0.0327325351927378,0.2918006430868167,0.00363,0.6068855084067254,0.3931144915932746,10.376743109773107,2.868168109832301,0.2800718132854578,0.4640933572710951,0.1023339317773788,0.1535008976660682,13.789939413486456,10.222857326689953,4.222146711851731,7631.026942800988,13.937951090001793,6.576664203723536,3.928722852685712,2.070470259433262,1.3620937741592811,0.7369838420107719,0.8916827852998066,0.7788461538461539,0.6023391812865497,0.1228070175438596,0.8198529411764706,0.9473684210526316,0.8641975308641975,0.75,0.2181818181818181,0.6578947368421053,0.8407407407407408,0.6866666666666666,0.4725274725274725,0.0338983050847457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023293498075754,0.0044594443937689,0.0068774535163263,0.0092195845094734,0.011477543053494,0.0137622149837133,0.0159509952809515,0.0181755094959638,0.0204967865207573,0.022581701352651,0.0246093950105015,0.0267064750120553,0.0288268845383073,0.031116509351422,0.0334319557127099,0.0355239786856127,0.0376685047434796,0.0396137067777466,0.0418795430944963,0.0438840163550672,0.0583702622386736,0.0723959204146463,0.0860100152953255,0.0979784720399054,0.1099140654618981,0.1248138250113553,0.0683373953586945,0.086073634633581,0.103256518908303,0.1179817418138179,0.1369495975552016,0.1547115976958077,0.1708740396213907,0.1700171624088588,0.1869334682742233,0.2029341748325306,0.1183365303118169,0.138585581431961,0.1573153449350944,0.1673055139192421,0.1792877940564773,0.19565090382211,0.2107483925869894,0.1862412093957805,0.2030507899583212,0.2182392410352201,0.1424790582125513,0.1575610003550956,0.1739455791089837,0.1821134149387959,0.1737847804223935,0.1826999479409266,0.1902317950443818,0.1514101716355691,0.1602833739207438,0.1672820092073476,0.1108704183345106,0.1118876572505932,0.1201729788168519,0.1206622656829173,0.1094680025139561,0.1170042851577717,0.12511598177282,0.1018024544995499,0.1088733422844086,0.1172403235271604,0.118479839160058,0.127532667179093,0.1366768365842789,0.1454643670177875,0.1516472868217054,0.1575078394078034,0.1632590784253891,0.1709496381627529,0.1796461790990333,0.1906982033204457,0.1947515848444641,0.1959552326722953,0.2044847837693539,0.2087307410124725,0.0,2.0669480084609293,21.870779123993497,41.863463948371525,32.78694478761635,full_Colonoscopy_compliance,52 +100000,95782,62142,604.4977135578711,1251,11.714100770499677,1119,11.004155269257271,414,3.789856131632249,77.39816222968327,79.72869146928258,63.35848721039546,65.08012122711024,77.32368652875121,79.66711846548127,63.324944033421176,65.05421109510925,0.0744757009320551,61.57300380131403,0.0335431769742839,25.910132000987574,2950.73295,2148.805015402666,3080661.147188407,2243419.1790959323,3.29019,2.422023340252936,2771.1887410995805,1864.7901904877076,897.98392,456.4321491017921,933772.1283748512,473423.7539548831,861.4304,500.3241604112868,852523.8980184168,475547.9935763367,222.47146,136.37262803123133,211962.27892505896,122095.58981947228,375.32908,205.940770343632,342962.08055793366,175291.3605001901,0.38043,0,100000,0,0.0,284719,2972.562694451985,0,0.0,327,2.7144975047503705,0,0.0,80090,832.5885865820301,0,0,0,0,0,0,0,0,0,0.0,364,3.768975381595707,0,0.0,3,0.0313211250548119,0.01251,0.032883841968299,0.3309352517985611,0.00414,0.5738095238095238,0.4261904761904762,10.17357473182416,2.753665618945762,0.2815013404825737,0.4638069705093833,0.1045576407506702,0.1501340482573726,13.24905875695793,9.824515315103904,4.861002683617797,7618.79324039302,14.048892000093064,6.60326589705752,3.9718672700516384,2.075252769626742,1.398506063357161,0.7229669347631814,0.8439306358381503,0.7936507936507936,0.6369047619047619,0.1196581196581196,0.7974910394265233,0.926530612244898,0.8596491228070176,0.7108433734939759,0.2033898305084746,0.6488413547237076,0.7700729927007299,0.7152777777777778,0.5647058823529412,0.0344827586206896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020558627534382,0.0045504297065023,0.0068072069147425,0.0092615159639288,0.0115691556956234,0.0135872330897469,0.0158455189280073,0.0179671876913031,0.0202290583271181,0.0224677716390423,0.0244444672110153,0.0266185057105622,0.0287238197027932,0.0307845902078037,0.0328058147327181,0.0349496514329976,0.0370768848795828,0.0389879717959352,0.041038378002016,0.0432677288347391,0.0579009975374598,0.0724998431192084,0.0856915189196556,0.0981439051562861,0.1107257316353209,0.1260941266015476,0.0684465092598485,0.086668724126555,0.1039893190921228,0.1176785982370729,0.1359318455971049,0.154099069868051,0.1703371323649243,0.1707775326065584,0.1863915078789477,0.2020264590062386,0.1161087516302712,0.1358056610984959,0.155052383328042,0.1665293323262148,0.1779785353681219,0.1945534379671151,0.210060290814517,0.1845780133781665,0.2015682377322361,0.2175376939996805,0.142985443251132,0.1580475435816165,0.174579617752197,0.1827896217239294,0.1736017057111823,0.1824391846568741,0.1902506690579943,0.1505504442307416,0.1589623475340286,0.166284769116375,0.1108950941502955,0.1125834267062892,0.1211542362566772,0.1227361701377255,0.1122976867932894,0.1209727747874249,0.1286495409058083,0.1048990974768879,0.1114457831325301,0.1205237499680951,0.1220710716268739,0.1303562683643487,0.1391073434787049,0.1474634896233666,0.1548287292817679,0.1623476390453753,0.1699310845121509,0.1767643386942792,0.1859811389191149,0.1938376638307657,0.1959776864357017,0.2017902315625608,0.2060381355932203,0.206268221574344,0.0,2.594497801230193,21.79041896871976,42.19203115914738,31.743400128552388,full_Colonoscopy_compliance,53 +100000,95881,62006,601.8814989413961,1203,11.378688165538533,1061,10.523461373994849,374,3.525203116362992,77.3584022892406,79.64062764773244,63.35300198276878,65.04170990955579,77.28849519052885,79.5790266632781,63.32145270409029,65.01527172181466,0.0699070987117522,61.60098445434414,0.0315492786784972,26.438187741135263,2953.69987,2150.1774724679635,3080589.3451257288,2242548.02564425,3.16082,2.231396657592076,2746.8632992980884,1777.5123930623122,890.48685,452.6483234122665,925264.7135511728,469426.0312702571,797.45475,471.3022609476123,794860.6188921684,454696.7813723393,206.91033,127.7684938872496,199692.44167248983,117193.58730713844,339.41358,192.81002028462888,319129.1913934982,172728.11526753785,0.38072,0,100000,0,0.0,284858,2970.9535778725717,0,0.0,309,2.6491171347816564,0,0.0,79414,824.8140924687895,0,0,0,0,0,0,0,0,0,0.0,365,3.7963725868524527,0,0.0,1,0.0104295950188254,0.01203,0.031598024795125,0.3108894430590191,0.00374,0.5838150289017341,0.4161849710982659,10.19443805956452,2.8069500351950145,0.2846371347785108,0.4505183788878417,0.1017907634307257,0.1630537229029217,12.856446325687902,9.169048762574713,4.545663664958013,7616.683587247871,13.535609486973842,6.169253784204794,3.854349296921324,2.186487891313667,1.325518514534055,0.7266729500471254,0.8577405857740585,0.7582781456953642,0.7109826589595376,0.0833333333333333,0.7862318840579711,0.9262295081967212,0.8333333333333334,0.8,0.0967741935483871,0.6620825147347741,0.7863247863247863,0.678082191780822,0.6144578313253012,0.0652173913043478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025615324646397,0.0047623390177422,0.0070493249890963,0.0096152869863639,0.0118418377719048,0.0142480587020018,0.0163413342026977,0.0185017083992044,0.0207059207906639,0.0229198826403868,0.0250698660005937,0.0269114842836931,0.0293428917692007,0.0314981689503353,0.0337805808033966,0.035609932373135,0.0377776168654508,0.0398913843315679,0.0419552823154331,0.0438310843849811,0.0583991827033338,0.0721815351504957,0.0851781263744319,0.0977036235916713,0.1095241104720975,0.1247794808953867,0.0685777871979652,0.0859953211399404,0.1031928180275195,0.1175682339572479,0.1363641258116271,0.1539934236144161,0.1705400234792817,0.1699455702013246,0.1853977047882865,0.201840952338806,0.1158494436640132,0.1366497325001124,0.1556324054651624,0.1666876567097535,0.177932198686523,0.1943668556068486,0.2096192289949017,0.1854491017964072,0.2017622642425419,0.2176235966121725,0.140758797424839,0.1567022885243401,0.17438265616309,0.1819655067919208,0.1734628092513498,0.1828706243827499,0.1906365307181839,0.1514650249564879,0.1595049387827527,0.1673343793318811,0.1114100506623871,0.1131337494499763,0.1215144841605963,0.1212201497809806,0.111238680765171,0.119767373782713,0.1260311356447311,0.1020767723038298,0.1084611016467916,0.1172609317531671,0.1192614492106877,0.1276589213910801,0.1359097127222982,0.1437292326713546,0.1504675796658245,0.1592346860052461,0.1675827531452302,0.1756957880636999,0.1815675824680694,0.1894211808374898,0.1951402429878506,0.2004310344827586,0.2075821845174973,0.2096774193548387,0.0,2.017348481403056,22.28405961192144,40.520593359680845,27.319332995628223,full_Colonoscopy_compliance,54 +100000,95721,62369,608.0274965785982,1238,11.648436602208502,1095,10.71865107970038,364,3.3743901547204898,77.38965647392791,79.75474723458278,63.34469261111818,65.09304322000105,77.32328924068344,79.70057405252051,63.314404675129495,65.0699755188162,0.0663672332444775,54.17318206227151,0.0302879359886887,23.06770118485701,2951.70384,2148.5520396797533,3083653.367599586,2244598.4054489126,3.19466,2.3118408887482227,2600.411612916705,1678.2152982606078,899.08421,456.1504982052094,934662.6341137264,472988.0209751793,836.83935,482.626171676806,827958.5461915358,458075.4460243372,220.85026,132.77261329318566,213831.4998798592,121916.07033279576,332.15106,182.79881938070156,307198.1487865776,157149.3017823849,0.38179,0,100000,0,0.0,284628,2973.5167831510325,0,0.0,306,2.434157603869579,0,0.0,80269,833.8818023213297,0,0,0,0,0,0,0,0,0,0.0,359,3.750483175060854,0,0.0,2,0.0208940566855757,0.01238,0.0324262028864035,0.2940226171243942,0.00364,0.567524115755627,0.432475884244373,10.446780325495896,2.584787070843645,0.2922374429223744,0.4767123287671233,0.1013698630136986,0.1296803652968036,12.66367685544072,9.352281042809931,4.299681625834015,7633.13962313607,13.828314312886535,6.657209465716212,4.015097439968145,1.7997602058711235,1.3562472013310511,0.7242009132420091,0.8275862068965517,0.775,0.6830985915492958,0.1441441441441441,0.802491103202847,0.9107806691449816,0.8630952380952381,0.7164179104477612,0.2241379310344827,0.6416510318949343,0.7391304347826086,0.6776315789473685,0.6533333333333333,0.0566037735849056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022384733814115,0.0044909420840809,0.0068703761962268,0.0092346140561188,0.0113115037586336,0.0133192130666775,0.0155483732833066,0.0177723788038096,0.0197685828767683,0.0219053565762132,0.0239037290637364,0.0259326940845533,0.0280547731151181,0.0302431188409378,0.0324390671576363,0.034570784844664,0.0367701117289511,0.0387807610905921,0.0408161144140024,0.042730768028508,0.0578543461237274,0.0711870793514554,0.0848494386738012,0.0973497880040821,0.1103269297718137,0.1262494314756248,0.0690935712845759,0.0866839786296587,0.1034582194121667,0.1172994422994423,0.1364071972348146,0.1532203976547456,0.1693721119869529,0.1692396842404495,0.1864824430168089,0.2026745782225568,0.1172522964416302,0.1375460508581184,0.156444776863625,0.1668191173107706,0.1776632739119886,0.1946708390742859,0.2098683822227468,0.1866477035053961,0.2041112981963102,0.220451445633609,0.144093908661103,0.1594269050335996,0.1767906646895751,0.1844296747753901,0.1755741546702377,0.1849399403507811,0.1923685057439098,0.152956703870542,0.161486934118513,0.1691435157102996,0.1125949119373777,0.1144685677252106,0.1228161624993694,0.1222891460480797,0.1125149425287356,0.1204003646732488,0.1280788177339901,0.1038452279342568,0.1095967666134035,0.1187062269196485,0.1215547899533229,0.1294568886161399,0.137637946397971,0.1463253829745976,0.1522677705078559,0.1609129666216075,0.1680656822498621,0.1724945135332845,0.1781769196228109,0.1839627991380288,0.1877098233834476,0.1926782273603083,0.1946185997910136,0.2018985031033223,0.0,2.7329920394209632,22.006862666138804,40.050538309659366,29.9789292997013,full_Colonoscopy_compliance,55 +100000,95761,61837,600.7038355906893,1256,11.88375225822621,1131,11.215421727007865,369,3.4878499597957417,77.34687979821054,79.70614077092996,63.33382307926016,65.08121175065355,77.27671163478145,79.64542134135898,63.30183463636627,65.05513109189913,0.0701681634290878,60.71942957098031,0.0319884428938834,26.08065875442378,2955.17412,2151.302037793864,3085964.286087238,2246507.636505325,3.28339,2.3481898007379307,2845.3963513330064,1868.798154507504,895.54481,455.3148328111256,931694.5207339104,472761.66746793065,855.17377,498.2161988427789,848292.394607408,475990.3109601965,223.97679,137.78941208499293,212277.41982644293,122627.1605538242,337.93548,191.5614881259876,317315.73396267794,169345.3331588916,0.38071,0,100000,0,0.0,284964,2975.762575578785,0,0.0,308,2.6002234730213765,0,0.0,80041,832.3325779805975,0,0,0,0,0,0,0,0,0,0.0,336,3.508735288896315,0,0.0,3,0.0313279936508599,0.01256,0.0329909905177168,0.2937898089171974,0.00369,0.5838607594936709,0.4161392405063291,10.62210910123456,2.798647024603909,0.2661361626878868,0.484526967285588,0.1069849690539345,0.1423519009725906,13.32289953756107,9.594984783876368,4.368145640723087,7631.351557438488,14.212938957480093,6.929708301620403,3.812063231035597,1.9980215730012665,1.473145851822828,0.7382847038019452,0.8832116788321168,0.7508305647840532,0.6708074534161491,0.140495867768595,0.7775831873905429,0.9243027888446216,0.8072289156626506,0.7764705882352941,0.1739130434782608,0.6982142857142857,0.8484848484848485,0.6814814814814815,0.5526315789473685,0.0961538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023610717036196,0.0045024946254005,0.0068832487309644,0.0094819964023293,0.0117909172295922,0.0141952302397099,0.0164848608420838,0.0185688035933033,0.0207110874854327,0.0233136748986361,0.0254057434614556,0.0277124639347797,0.0297093848337138,0.0316453088301948,0.0337372027741083,0.0357663403591105,0.0378685112507895,0.0400211620452494,0.0422132595995925,0.0440885519711768,0.0582924538148418,0.0716594658492954,0.0856016440884117,0.0987576464652834,0.1108839307357482,0.1275098279578983,0.0695258588706685,0.0865728138822728,0.1040828736944299,0.1178203397819054,0.1367284149831106,0.153728939945749,0.170029006290128,0.1693530773598916,0.1854362106465716,0.2013983383669089,0.1169414623814142,0.1368412771552838,0.1562691408997073,0.1667658707447173,0.178806798473812,0.1945483448662801,0.2093696803480234,0.1863418721570505,0.2032068062827225,0.2177234154907956,0.1425380026458328,0.1577819482133347,0.1748058715785672,0.182398361172392,0.1737901659545399,0.1822400481848546,0.1897637574875441,0.1516807204726667,0.159428832466365,0.1676282148604743,0.1098649432950071,0.1114562664671632,0.1205295997565058,0.1208287010076411,0.1107738998482549,0.1187684142748434,0.1257642101784534,0.1012167166284605,0.1083666848225069,0.1159189543155029,0.1183329129179629,0.1274955891911969,0.1357297799814068,0.1443355119825708,0.1523184719061007,0.1592723126360526,0.1648547386524169,0.1714264629916611,0.1801174875734297,0.1838503649635036,0.1881538234860763,0.1974046401887534,0.2064602960969044,0.213717317165593,0.0,2.276253960630837,22.74202671900701,41.935872728274674,31.726550922206805,full_Colonoscopy_compliance,56 +100000,95760,61630,599.7284878863826,1230,11.654135338345863,1099,10.964912280701752,361,3.477443609022556,77.36211040614715,79.72302621478404,63.32787542470121,65.07535220764696,77.2929142185117,79.66176517093984,63.297456892830205,65.0497178078482,0.0691961876354554,61.261043844197616,0.0304185318710068,25.634399798761365,2952.34475,2149.2282509785646,3083057.2577276523,2244380.880303429,3.42844,2.511508055066081,3078.1015037593984,2120.570232942858,890.4941,452.0504886588886,926277.1198830408,469236.1896128348,819.18047,478.1243073816152,821724.7076023392,465567.4784686872,206.57268,124.7242212243594,203216.37426900584,117774.26290346646,327.4507,181.14304933943689,314020.73934837093,164412.83793729532,0.37961,0,100000,0,0.0,284774,2973.8199665831244,0,0.0,319,2.8091060985797824,0,0.0,79495,826.5977443609022,0,0,0,0,0,0,0,0,0,0.0,402,4.187552213868004,0,0.0,2,0.0208855472013366,0.0123,0.0324016754037038,0.2934959349593496,0.00361,0.576271186440678,0.423728813559322,10.764751347204012,2.737500479218708,0.278434940855323,0.4868061874431301,0.0928116469517743,0.1419472247497725,13.297911069080854,9.722748427464603,4.276118222221837,7547.5324040204305,13.932856843000463,6.870169790486109,3.835206605142966,1.966412594408268,1.261067852963118,0.7470427661510464,0.8560747663551402,0.8104575163398693,0.6602564102564102,0.1176470588235294,0.799645390070922,0.924901185770751,0.906832298136646,0.7,0.1333333333333333,0.6915887850467289,0.7943262411347518,0.7034482758620689,0.6060606060606061,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023910114180926,0.004938446873669,0.0072276926200385,0.0097137689626792,0.012023803468796,0.0139120870167433,0.0159280484571615,0.0182655394919545,0.0200918191020541,0.0222822970426804,0.0241406185905324,0.0263576880013969,0.0286108167611444,0.0308941581393431,0.0328826504283207,0.0349137752781109,0.0369361719753137,0.039000249003984,0.0410178582565851,0.0430810895265871,0.0579442374137517,0.0710975341835186,0.0844405759409377,0.0973855246829186,0.1090145866073217,0.1241698041372308,0.068643258724939,0.086081716950199,0.1030931139483946,0.1167368996686717,0.1341862669079004,0.1523853836415378,0.1685319933435572,0.1689139682643833,0.1846688745365123,0.2008174477464804,0.1148569451111284,0.1347016813810943,0.1528648697683384,0.1631510878646721,0.1741860868559532,0.1917710573057866,0.2062598992931609,0.1829294574014654,0.2002739825669499,0.2155290123380857,0.1392386091127098,0.1549571044215442,0.1719201776125568,0.1799166480417548,0.1714807013778022,0.1812477737896265,0.1885407767398215,0.1501752068014706,0.1596306457798625,0.1671402306535183,0.1112209822479634,0.1124508433813253,0.121563001097139,0.1223077329482415,0.1113039304373511,0.1202494754021916,0.1275781153513647,0.1033369923161361,0.110044800754539,0.118618541964468,0.1215268110696586,0.1294655177700776,0.1380723138379596,0.1462644010326359,0.1538936414145868,0.161287017112409,0.1695038910505836,0.1755000730033581,0.1849986509578199,0.1967866909753874,0.2000878220140515,0.2092042186001917,0.2204315050688848,0.2223451327433628,0.0,1.999371437496198,22.90653003460282,40.90733273687237,29.76256615570923,full_Colonoscopy_compliance,57 +100000,95761,62428,606.8963356690093,1295,12.280573511137105,1159,11.528701663516465,381,3.602719269848895,77.32840490063373,79.68835879882727,63.31625382636724,65.0646572013449,77.25775791238752,79.62649537852218,63.28552435557561,65.03915430574463,0.0706469882462101,61.8634203050874,0.030729470791627,25.50289560026897,2945.68094,2145.4681057571315,3076066.2691492364,2240430.849465995,3.21066,2.2909858193648605,2786.781675212247,1826.396778818998,901.79241,458.4020277140535,937924.1758127004,475770.019601647,871.1942,504.6859637190613,870407.2534747967,487674.99683489214,222.94111,136.46812419024204,216908.40738922943,126627.12022575916,346.83638,190.70273341792128,327338.77048067586,170654.9022265137,0.38232,0,100000,0,0.0,284224,2968.045446476123,0,0.0,312,2.6837647894236696,0,0.0,80549,837.376384958386,0,0,0,0,0,0,0,0,0,0.0,359,3.748916573552908,0,0.0,1,0.0104426645502866,0.01295,0.0338721489851433,0.2942084942084942,0.00381,0.5791889824024483,0.4208110175975516,10.664226579284,2.7386579431758444,0.2950819672131147,0.4667817083692838,0.0949094046591889,0.1432269197584124,13.207170802312811,9.658414734229972,4.570200939431539,7706.579677197172,14.597882732591671,6.911943215791935,4.289446604406405,2.016659637371728,1.3798332750216056,0.727351164797239,0.8410351201478743,0.8011695906432749,0.608433734939759,0.1181818181818181,0.8017391304347826,0.916,0.8777777777777778,0.7647058823529411,0.15,0.6541095890410958,0.7766323024054983,0.7160493827160493,0.4444444444444444,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293606801576,0.0046349824540051,0.0070056451285383,0.0092278298339397,0.0114036337002299,0.0136795143415906,0.0161323217490618,0.0183260505574386,0.0204665807929011,0.0226523635023645,0.0249192763056737,0.0270550547261638,0.0291443850267379,0.0314868984838497,0.0336198623422456,0.0358977539355225,0.0380606361726133,0.0402683867756253,0.0422091754559152,0.0441683416823753,0.0590445574006617,0.0731153781793842,0.0871639474898293,0.0998244636681837,0.1121214675573725,0.1277690876807305,0.0701250225337476,0.087844956950224,0.104796590799859,0.1194994853319608,0.1378459881529348,0.155448093816262,0.1719152824462357,0.1708418531923501,0.1868644627371572,0.2030495637152854,0.1177159688054356,0.1380144461195742,0.1574677166783923,0.1692279504385864,0.1802162224663236,0.1965719092852886,0.2114056661779312,0.188118456046194,0.2051110922350714,0.220280795875426,0.1433414225313352,0.1602892399191754,0.1766219326144855,0.1839258927866522,0.174769404277601,0.1839501096491228,0.1912457912457912,0.1525024421076825,0.1620427820126455,0.1700048703275295,0.1133537687652283,0.1151025198031098,0.1235838992091849,0.1236561041165652,0.1129501064519115,0.1206472996685513,0.1282447466007416,0.1048530868273357,0.1115996501430158,0.1207377279819916,0.121923281088481,0.1294110414361244,0.1383346452650672,0.1460961077149268,0.1536043216436415,0.1620774684064522,0.1681738180494022,0.1768243491015768,0.1845302865433442,0.1897336671978147,0.1957033549146556,0.2007866273352999,0.2040544145105361,0.2143933685003768,0.0,2.193754646739843,23.060349772293645,44.31915600383822,32.84571313765067,full_Colonoscopy_compliance,58 +100000,95739,61819,602.5026373787067,1196,11.343339704822483,1076,10.73752598209716,382,3.6766625930916335,77.31464774318667,79.67820611368839,63.30648041847581,65.0551719589208,77.2442491730366,79.6156710676,63.27567021542221,65.02902044835425,0.0703985701500755,62.53504608838512,0.0308102030535977,26.15151056654952,2947.44365,2146.161569791536,3078623.810568316,2241679.534768,3.18539,2.355442274015944,2843.9611861414887,1977.0754593383515,892.91415,453.6596747795341,928988.5208744608,471040.9415302413,815.79234,480.8312231717857,820333.761580965,470464.72510866576,209.96291,129.5994084138145,208096.05281024447,124155.85959098642,345.55464,190.27298765978895,332228.78868590645,174736.7241377266,0.3793,0,100000,0,0.0,284249,2968.999049499159,0,0.0,312,2.7574969448187256,0,0.0,79819,830.194591545765,0,0,0,0,0,0,0,0,0,0.0,358,3.718442849831312,0,0.0,0,0.0,0.01196,0.0315317690482467,0.3193979933110368,0.00382,0.575103734439834,0.4248962655601659,10.551266445921478,2.760138447512362,0.2806691449814126,0.4693308550185873,0.1003717472118959,0.1496282527881041,13.668075743396138,10.1522786654427,4.564825507514311,7545.974549528016,13.640330824096347,6.494590128537344,3.827801218244957,1.98051627044439,1.33742320686966,0.7351301115241635,0.8475247524752475,0.8013245033112583,0.6832298136645962,0.1018518518518518,0.7965811965811965,0.9101123595505618,0.9,0.775,0.1176470588235294,0.6619144602851323,0.7773109243697479,0.6742424242424242,0.5925925925925926,0.075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995492073139,0.0047145420810901,0.0070037962605818,0.0093079971547606,0.0111908031944656,0.0133766657157993,0.0154354679099376,0.0174797329031467,0.0195142395682129,0.0216309733426149,0.0237970738109152,0.0259880276411578,0.0281329397121902,0.0300975775623126,0.0323599541696342,0.0342806339229409,0.0363980905240703,0.0384870810418179,0.0403959531261372,0.0422344459724132,0.0566211094521649,0.0712468992369768,0.0848159959716335,0.097463509022841,0.1096852427901091,0.124727611229822,0.0677273499193343,0.0851584876329603,0.1011405299669706,0.1152517275419545,0.1346251307432687,0.1525936037441497,0.1688542268018778,0.1689801373840069,0.1858012036240989,0.2020066369962597,0.1161758457995125,0.1361033456578591,0.1545115602337054,0.1659991048167743,0.176857665840265,0.1931212905189469,0.208274130908402,0.1859575947167188,0.2029785891149196,0.2184745679255502,0.1415371168133857,0.1571314377069772,0.1740902699843917,0.1818265403964115,0.1725094476159845,0.1816129076403049,0.1894001930799043,0.1494139083774516,0.1586746365581876,0.1666033232490612,0.1106590851972857,0.1108704855570391,0.1192890393567498,0.1204400183635272,0.109397278029812,0.1165860697293502,0.1233356692361597,0.1002021178434904,0.1062398186840427,0.1153178009401185,0.1162244527078032,0.1240853471069298,0.1319275664943689,0.1391307713146793,0.1480642869827739,0.1550948663599234,0.1631310336346307,0.1714222024074899,0.1744548286604361,0.1830840046029919,0.1884466884466884,0.1949573158626166,0.2013368983957219,0.2125748502994012,0.0,2.003405398004402,23.847583438956057,34.7079148190133,30.099196527686534,full_Colonoscopy_compliance,59 +100000,95810,62103,604.1436175764534,1204,11.48105625717566,1059,10.416449222419372,343,3.235570399749504,77.3504688262772,79.68281397109384,63.33176974345843,65.0601809324295,77.28923277159961,79.63070548878243,63.3042622920354,65.03851840122798,0.0612360546775789,52.10848231141085,0.027507451423034,21.662531201528168,2948.90711,2147.5398406588283,3077860.338169293,2241447.3652633647,3.33306,2.3570624585710944,2853.1990397662044,1834.869646669217,893.87412,454.02564563210586,928942.615593362,470851.6947181799,805.69626,458.9911090818089,800383.4150923704,438544.37946593657,202.77241,119.78952645152556,198775.00260933096,112173.30346678395,314.5735,170.76523591301728,296451.5812545663,150388.13587968136,0.38068,0,100000,0,0.0,284491,2969.3142678217305,0,0.0,324,2.72414153011168,0,0.0,79858,829.4854399332011,0,0,0,0,0,0,0,0,0,0.0,360,3.746999269387329,0,0.0,1,0.0104373238701596,0.01204,0.0316276137438268,0.2848837209302325,0.00343,0.5960264900662252,0.4039735099337748,10.188323333493924,2.7194636271621198,0.2861189801699716,0.4711992445703494,0.1057601510859301,0.1369216241737488,12.124045852271324,8.477232054804066,4.060941680095857,7591.925600743444,13.336558240962445,6.41908996907274,3.841131117622258,1.7413053977312598,1.3350317565361869,0.7214353163361662,0.8677354709418837,0.7953795379537953,0.5310344827586206,0.1160714285714285,0.7862453531598513,0.924901185770751,0.8674698795180723,0.5909090909090909,0.1132075471698113,0.654510556621881,0.8089430894308943,0.708029197080292,0.4810126582278481,0.1186440677966101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024110055311303,0.0046946452653032,0.0068202577895057,0.0092762870467268,0.0115751571495412,0.0139842333625308,0.0162153893223191,0.0184114859897067,0.0205719660951095,0.0225827916261452,0.0246303398207583,0.0267908485993592,0.028979843685726,0.0311650325451099,0.0331270627062706,0.0351101972494601,0.0371735282243455,0.0391975852876806,0.0411552571683935,0.0431107178179168,0.0578048551488154,0.0723120837297811,0.0857550066545801,0.0981749792491883,0.1107306537428225,0.1259180977542932,0.0687073892252393,0.0859714066887924,0.1025868235344358,0.1166832760043291,0.1352357587104827,0.1534304028710099,0.1695502481726456,0.1697680263114763,0.1849061998284545,0.2012602296763048,0.1141923321471995,0.1335297557464801,0.152913144607704,0.1645972328713823,0.1756858302216159,0.1926455471451266,0.2085725762623756,0.1851280395182221,0.2022192578219742,0.2176828893127422,0.1421806869151288,0.1577570330856671,0.174580211831568,0.1814437601979051,0.1732486471243839,0.1823094542511898,0.1901214824790281,0.1504564732945151,0.1597188381399607,0.1676348042942733,0.110128074173018,0.1118473535971867,0.120507399577167,0.121625918598078,0.1115179760319573,0.1198394607126853,0.1279084158415841,0.1058989196681995,0.1121015794949399,0.1210283960092095,0.1222999526185233,0.1320128972823583,0.1391363713944359,0.1466223527593136,0.152375485694101,0.1608811748998664,0.1694544127486162,0.1760738894590236,0.1833831657153212,0.1893148820326678,0.1917667740990331,0.2009264620729589,0.210622233793283,0.212486308871851,0.0,2.4384894412703426,21.27437979993976,37.31700554012438,31.479412289513974,full_Colonoscopy_compliance,60 +100000,95707,62265,606.7894720344385,1210,11.315786724064072,1100,10.80380745400023,358,3.228603968361771,77.30949638025908,79.669445453007,63.31695901961641,65.05951497583794,77.2367213041735,79.61145546291216,63.28316658837169,65.03498190256153,0.0727750760855769,57.98999009483907,0.0337924312447199,24.53307327641596,2948.77477,2147.3162009778302,3081024.930255885,2243620.8148208098,3.68063,2.6078026846431954,3112.6772336401727,1991.7275482913424,892.79666,453.68797203071887,929566.2281755776,471413.3949040577,842.46867,487.55979136177416,829944.9570041898,459529.5251692541,218.12496,133.0656042430131,208601.48160531625,120121.3493704398,325.8032,190.8529274969129,293398.4348062315,157645.84228526123,0.3811,0,100000,0,0.0,284384,2971.3814036590848,0,0.0,354,3.009184281191553,0,0.0,79724,829.5944915209965,0,0,0,0,0,0,0,0,0,0.0,374,3.8973115864043386,0,0.0,1,0.0104485565319151,0.0121,0.0317501967987404,0.2958677685950413,0.00358,0.5860655737704918,0.4139344262295082,10.627192750713467,2.859126028463293,0.3063636363636363,0.4390909090909091,0.0972727272727272,0.1572727272727273,12.864471418385216,9.109511025234385,4.325624779159408,7625.738673399382,13.947400811263606,6.272469342142389,4.197307644902374,2.1363108889995823,1.341312935219262,0.7236363636363636,0.8799171842650103,0.7329376854599406,0.6127167630057804,0.1682242990654205,0.7715289982425307,0.9291666666666668,0.8411764705882353,0.6770833333333334,0.1269841269841269,0.672316384180791,0.831275720164609,0.6227544910179641,0.5324675324675324,0.2272727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020457560689075,0.0045920849890519,0.0068683548413278,0.0092934915088973,0.0116098205662583,0.0138121265789286,0.0159302858890077,0.0181795910867945,0.0204202608233514,0.0225153769790504,0.0246209985752211,0.0267983654023861,0.0290388590114037,0.0311943234364218,0.0332398259111817,0.035098051371066,0.0370841872114926,0.039235412474849,0.0410248414925683,0.0430357328888425,0.0576065501864171,0.0719758824268308,0.0852074854193764,0.0980018929435271,0.1101256077368459,0.1255658980325788,0.0685124852755462,0.0863464077339125,0.1026838180302997,0.1166995538778311,0.1362896883114084,0.1544174967518406,0.1708583181882488,0.1695302924181404,0.186174019311013,0.2023652505458696,0.116861361148958,0.1370787022960936,0.1547833986260148,0.1654923526379103,0.1766672837506363,0.192756435736164,0.2088572408653789,0.185221568650941,0.202475427739352,0.2183467940510194,0.143056943056943,0.1585169195606628,0.1755995451726276,0.1832117365080201,0.175403252884215,0.1845767801560421,0.1912701754385964,0.1514406487232574,0.1608745140356842,0.1683493992416282,0.1113333228351416,0.1135622513532902,0.1215975578733146,0.1223911271747989,0.1122829820815151,0.1205548698054429,0.1290108614542741,0.1066133415825176,0.1127878514223246,0.1207051397192784,0.1230332659024499,0.1310655636498333,0.1380484114977307,0.147269419824283,0.1546272892554654,0.1614386853392589,0.1693888786933382,0.175083179297597,0.180723990152275,0.1888520086986379,0.1926713947990543,0.2009891196834817,0.2073170731707317,0.2118299445471349,0.0,2.6664615373950604,22.52080780207181,40.8008294068238,28.648780041220046,full_Colonoscopy_compliance,61 +100000,95727,62210,606.8507317684665,1205,11.2402979305734,1075,10.54039090329792,364,3.374178653880305,77.40440741590693,79.761974491072,63.3594678928421,65.09951888428694,77.33476305339684,79.70249247966666,63.327876520949125,65.07420605108528,0.0696443625100897,59.482011405336266,0.0315913718929721,25.312833201653007,2954.76879,2150.917109566386,3086661.850888464,2246928.358317284,3.42003,2.4962063862695407,2923.1355834821943,1958.0749279404351,896.40435,455.22648701318326,932447.3450541644,472409.9646412911,795.94055,475.61084524582384,788247.3596790874,453618.9844514338,207.96945,128.9315811706955,201299.48708305912,118733.57691215178,326.06328,185.18830408482737,301927.6484168521,160100.91744103006,0.38081,0,100000,0,0.0,284871,2975.868877119308,0,0.0,331,2.76828898847765,0,0.0,80132,833.0356116874027,0,0,0,0,0,0,0,0,0,0.0,380,3.969621945741536,0,0.0,4,0.0417854941657003,0.01205,0.0316430765998792,0.3020746887966805,0.00364,0.5907590759075908,0.4092409240924092,10.462047496243889,2.755562682193006,0.3013953488372093,0.4586046511627907,0.0837209302325581,0.1562790697674418,13.929428398586552,10.364563413433425,4.314633445958948,7577.751748119465,13.629754223952672,6.344212258384927,4.039592490939047,2.121015041121676,1.1249344335070215,0.7246511627906976,0.8377281947261663,0.7530864197530864,0.6369047619047619,0.1666666666666666,0.7943760984182777,0.928,0.8363636363636363,0.71,0.2037037037037037,0.6462450592885376,0.7448559670781894,0.6666666666666666,0.5294117647058824,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023692123887533,0.0042057258677476,0.0065838862174609,0.0089574975879754,0.0112350411273677,0.0133550488599348,0.0154700636942675,0.0177137434568329,0.0198524603563838,0.0219391148631363,0.0241260210513369,0.0263052559194523,0.0283643466639251,0.0304260052735662,0.0322856907012258,0.034495591138861,0.036545710616793,0.0384439834024896,0.040354596661886,0.042152737271894,0.0568177072457715,0.0712566453179287,0.0846629113299975,0.0975691815964336,0.1102397065334261,0.1257349519901865,0.0683940242763772,0.0863829470075277,0.103541855868369,0.117935353795337,0.1374137058297702,0.1546610398744792,0.170803332535729,0.1701471649428177,0.1864591354086459,0.2028783349939112,0.1150049633603622,0.1349015464844452,0.1539926324737886,0.1656963777149981,0.1769921721661625,0.1929450177832196,0.2084615656726449,0.1853742916790933,0.2023310079675013,0.2177842637103894,0.1413015038437099,0.1569414206875601,0.1738290805160028,0.1810436355533418,0.1726700437054759,0.181175056676955,0.1894973659572684,0.1505850675298262,0.1599794087365789,0.1672501326058952,0.1121050240471229,0.113534639335755,0.122013723804225,0.1222693587283705,0.1111911889714306,0.1192426192426192,0.1265055271407358,0.1029363318911558,0.1077594339622641,0.1159479563405843,0.1162641887380369,0.1250459953391389,0.1349743589743589,0.142570281124498,0.1494232554028373,0.1559940240070063,0.1630553864881314,0.1711222091656874,0.1815065403698691,0.187046279491833,0.1939376103590347,0.1993799651230381,0.2057416267942583,0.2157456472369417,0.0,2.741479903008813,22.159399271985293,39.34958718663422,27.40619178023682,full_Colonoscopy_compliance,62 +100000,95757,62150,604.989713545746,1191,11.299435028248586,1072,10.704178284616267,344,3.2269181365330994,77.33232137485312,79.69677431565346,63.31916690730778,65.07059930681176,77.27186212329924,79.64506661196337,63.29203896442799,65.04893636213609,0.0604592515538797,51.70770369008437,0.0271279428797939,21.662944675668427,2950.46304,2147.480558505897,3081188.759046336,2242626.062330584,3.12886,2.231593823923736,2769.854945330367,1832.8308363082965,895.48093,454.3581980913722,932037.8666833756,472191.6484901552,803.24323,463.6066789884342,804660.3172614012,449974.4446760393,204.78266,122.94469158628966,202706.29823407164,117263.99681606526,313.19958,170.8978997671139,293474.5449418841,150983.68827718333,0.38274,0,100000,0,0.0,284683,2972.962812118174,0,0.0,309,2.704763098259135,0,0.0,80037,832.7746274423802,0,0,0,0,0,0,0,0,0,0.0,352,3.665528368683229,0,0.0,0,0.0,0.01191,0.0311177300517322,0.288832913518052,0.00344,0.5715474209650583,0.4284525790349417,10.453688792536465,2.827762248012501,0.2789179104477612,0.4813432835820895,0.0942164179104477,0.1455223880597015,13.988682545166627,10.25801790354414,4.08495102420008,7615.571891118319,13.423423187486764,6.600747698624376,3.676687790381077,1.9278884710774165,1.218099227403895,0.7425373134328358,0.8604651162790697,0.7658862876254181,0.7307692307692307,0.0891089108910891,0.8321167883211679,0.9583333333333334,0.8904109589041096,0.8395061728395061,0.087719298245614,0.648854961832061,0.7579365079365079,0.6470588235294118,0.6133333333333333,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024930074182171,0.0046759780502895,0.0069247014864755,0.0090759411334254,0.0112212094083177,0.0135186071861533,0.0157155095047727,0.0179379064615258,0.0202954859158529,0.0223382473382473,0.0246240273919238,0.0265897377984929,0.0285347043701799,0.0304753076883464,0.0327782592546737,0.0348427373926345,0.0368425957565779,0.0387508429734917,0.04097815468396,0.0430458058199845,0.0571974402605672,0.0712110907664138,0.0839285526992018,0.0961168417400082,0.1082970445271559,0.124143256050093,0.0677156832578225,0.0857565565395095,0.1027092254626613,0.116893420389609,0.1352882264890535,0.1538603020729649,0.1706637952600037,0.1716928729197192,0.1878451215487845,0.2036901757648204,0.1172921429766352,0.1372090408186214,0.1561348406336103,0.1668783395691026,0.1786213832406626,0.1953941065127474,0.2098845658518142,0.1854439313826351,0.2022544088237076,0.2176142231839866,0.1422973242811501,0.157958795562599,0.175416414001316,0.1830292042722579,0.1739124609798904,0.1835402324021734,0.1919189090807269,0.1535095270890725,0.162746457064488,0.1703623826736733,0.1114462563232475,0.1112971119309593,0.1202680123542218,0.1204355729690616,0.1099006966058989,0.118935592823256,0.1270385911242481,0.1046970398289581,0.1110532174407313,0.1188897139784395,0.1201786212670946,0.1288701122486739,0.1358333905167089,0.1440902021772939,0.1513213413280035,0.1600852125116907,0.1663383403102684,0.1752019565700733,0.1811423390752493,0.1890174722033129,0.1990404187263739,0.2048424289008455,0.2094841063053673,0.2230741146403797,0.0,1.8240094912241107,22.26101176236519,37.01029834275989,31.69193948535642,full_Colonoscopy_compliance,63 +100000,95735,61633,600.1984645114117,1148,10.873766125241552,1016,10.142581083198412,363,3.3947876952002924,77.41699606751023,79.77193102785158,63.36600846061516,65.10131644531356,77.35235015914367,79.7164503433441,63.33723460747411,65.07853856628816,0.0646459083665575,55.48068450747223,0.0287738531410539,22.77787902539785,2958.52766,2152.819460345805,3090330.244946989,2248727.696606054,3.14894,2.2544793542898613,2796.4798662975927,1862.170945098304,889.30342,451.06234458772974,926829.4667571944,469415.1173976598,746.57183,447.9601880970412,744132.9398861441,432491.04908369953,203.13793,127.04500202875268,200806.98803990183,121324.1155572705,327.34442,180.48620714663724,304329.65999895544,156073.0327941241,0.37906,0,100000,0,0.0,285111,2978.1271217423096,0,0.0,304,2.6636026531571524,0,0.0,79439,827.6701310910325,0,0,0,0,0,0,0,0,0,0.0,402,4.199091241447746,0,0.0,1,0.0104455006006162,0.01148,0.0302854429377934,0.3162020905923345,0.00363,0.5882352941176471,0.4117647058823529,10.280311475085242,2.8644855289413123,0.2992125984251969,0.4655511811023622,0.0964566929133858,0.1387795275590551,14.763679069039322,11.029896382687989,4.291421508885434,7528.441114933245,12.88196718608278,6.077992859893546,3.816296293661023,1.755019197073978,1.2326588354542312,0.7539370078740157,0.8625792811839323,0.8157894736842105,0.6950354609929078,0.1224489795918367,0.8178506375227687,0.932,0.9012345679012346,0.8024691358024691,0.0892857142857142,0.6788008565310493,0.7847533632286996,0.7183098591549296,0.55,0.1666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025101722706937,0.004852647681569,0.0067753975981824,0.009047614212167,0.0111436473076297,0.013243347788025,0.0152179231051494,0.0175035721575831,0.0197334804913442,0.0219548626030732,0.0242245381044606,0.0261197093476743,0.028300626047267,0.0305345869849541,0.0326094805797699,0.034596784193775,0.0368154053214618,0.0387379818911602,0.040626494003201,0.0427227552583054,0.0569698235355539,0.070900168461144,0.0835431616937345,0.096727035611367,0.1086009597637504,0.1238048904306624,0.0674636428245627,0.084811069717935,0.1013898236280699,0.1153371864846606,0.133563745599018,0.1516085761883126,0.1679036762548493,0.1685194487518291,0.1847787882781951,0.2005021124112455,0.1143754804639192,0.1348886317941345,0.1533145259055323,0.1644562334217506,0.1763863547127976,0.1930657828710132,0.2081985788815183,0.1852020027005389,0.2015500121094696,0.2161697318148871,0.1402944513008464,0.1559269207378877,0.1730273669020254,0.1806640496790032,0.1729456181219375,0.1819337552800295,0.1899317024016122,0.1501055564331978,0.1593651355577189,0.1660112060980609,0.109525748653051,0.1116010634848583,0.1199878698025473,0.1194664604678136,0.1089676266283419,0.1165764402274094,0.1246760192537129,0.102059126020263,0.108635294117647,0.1168748406831506,0.1177615301214867,0.1260627561318735,0.1340698308783415,0.1430220922176891,0.1507325443266311,0.1580270991582837,0.1670406987323345,0.1724849020474296,0.181768953068592,0.1876978742650384,0.1984554859390936,0.2063279002876318,0.2120819289603318,0.2170792967348403,0.0,1.8149424341745064,22.2876001745968,35.18549887273655,26.446255713208306,full_Colonoscopy_compliance,64 +100000,95696,61746,602.4180739006855,1224,11.567881625146295,1095,10.867747868249458,396,3.7514629660591874,77.3508434030137,79.74217395374475,63.31502979323547,65.08326429015112,77.27903468602479,79.68002096065197,63.282459960730776,65.05692798792587,0.0718087169889116,62.15299309278066,0.0325698325046914,26.3363022252463,2953.43947,2149.473372738479,3086263.114445745,2246138.0337093296,3.31177,2.366323011364961,2905.575990637017,1917.6068083984296,888.10161,450.5881026512932,924986.9691523156,468498.64809741336,819.82686,471.6171389367208,818121.6978766093,454250.98116611,222.00034,133.82620941431645,218937.29100484867,126807.69835135897,359.85038,199.06618863631883,340459.01605082763,176738.5057412521,0.38031,0,100000,0,0.0,284964,2977.794265173048,0,0.0,326,2.821434542718609,0,0.0,79253,825.0606085938806,0,0,0,0,0,0,0,0,0,0.0,378,3.950008359806053,0,0.0,2,0.0208995151312489,0.01224,0.0321842707265125,0.3235294117647059,0.00396,0.5816409423233144,0.4183590576766856,10.397781365662668,2.782501386010704,0.2821917808219178,0.473972602739726,0.1077625570776255,0.1360730593607305,12.787921030040064,9.222702335284708,4.74763648714744,7563.866450347528,13.796733499274618,6.623061325828132,3.8449707109550095,1.8929088092672552,1.435792653224221,0.7242009132420091,0.8631984585741811,0.7411003236245954,0.6845637583892618,0.1186440677966101,0.796028880866426,0.907258064516129,0.8711656441717791,0.7590361445783133,0.1833333333333333,0.6506469500924215,0.8228782287822878,0.5958904109589042,0.5909090909090909,0.0517241379310344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880729762857,0.0042084554461469,0.0064258088093473,0.0085982600211399,0.0106919774563063,0.0128257370469224,0.0151689806077793,0.0175868619400698,0.0198504822000184,0.0219680055713729,0.0239667726387037,0.0259238717364064,0.0279463495916562,0.0298166082835359,0.0318589002642007,0.0336603570727067,0.0354426970017198,0.0375429455175778,0.0395897478572023,0.0419042456714582,0.056058073950282,0.0704256321658551,0.0839604916501348,0.0969343741452227,0.1087293633630465,0.1249272633015584,0.0681258491847826,0.0862425184774968,0.1031320149652592,0.1172398991253957,0.1354640508785167,0.1537695405534144,0.1701412312580245,0.1702339526842186,0.1866076637715619,0.2028135600736093,0.1164664910479082,0.1368931710995801,0.1555780103998728,0.1667201356584706,0.1784015829119563,0.1947138728661854,0.2091159795949768,0.1846456126898931,0.2012452665307311,0.2171249307990404,0.1416321334065605,0.157309785711567,0.1744514531171394,0.1818110091260552,0.1734871863679055,0.1822863168851089,0.189490490462452,0.1502404708922546,0.1589375681329365,0.1668867137112072,0.1100188146754468,0.1116704285273533,0.1196228837900855,0.1200141006433418,0.1106305906705108,0.1184453560943363,0.1248380396108837,0.1033159349094258,0.1094228504122497,0.1175750465454359,0.1199767035527082,0.1283924205378973,0.1357410562180579,0.1439083279040355,0.1513224264222115,0.1567722751973751,0.1636562007516062,0.1719197707736389,0.1800453514739229,0.1852870402200069,0.1896501029109085,0.1955478794857033,0.1989079563182527,0.2077205882352941,0.0,2.189747999841817,22.210761838222734,40.17219408837966,31.046384715987777,full_Colonoscopy_compliance,65 +100000,95728,61869,602.7912418519138,1232,11.689369881330435,1086,10.80143740598362,362,3.47860605047635,77.26691653433518,79.6262207233328,63.2951211478972,65.03876638658019,77.20343540284084,79.56913802544132,63.266662907889554,65.01475639433019,0.0634811314943419,57.08269789148801,0.0284582400076445,24.009992250000774,2946.78749,2145.2440437729065,3078292.129784389,2240978.651776812,3.20448,2.331685396376387,2820.9301353835867,1909.185814366107,886.96032,450.3660279618995,922508.0122848068,467474.71514884185,810.94807,467.98119642094326,815061.1315393616,456880.91646124737,204.93823,125.00726690480631,202946.2539695805,119490.60634854366,327.16152,179.79953474280475,314299.8495737924,164804.94978570813,0.38159,0,100000,0,0.0,284331,2970.196807621595,0,0.0,309,2.684689954872138,0,0.0,79314,824.5340966070534,0,0,0,0,0,0,0,0,0,0.0,342,3.5726224302189538,0,0.0,2,0.0208925288316897,0.01232,0.0322859613721533,0.2938311688311688,0.00362,0.5922330097087378,0.4077669902912621,10.706343862402433,2.7069080471519213,0.2771639042357274,0.4852670349907919,0.0939226519337016,0.143646408839779,13.167620543340144,9.745007252436132,4.321651796729674,7604.183498304264,13.67584085780287,6.721430301285411,3.796383872937462,1.9112495611263536,1.2467771224536448,0.7274401473296501,0.8462998102466793,0.8039867109634552,0.5641025641025641,0.1372549019607843,0.8093525179856115,0.9246031746031746,0.8982035928143712,0.7125,0.175438596491228,0.6415094339622641,0.7745454545454545,0.6865671641791045,0.4078947368421052,0.0888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022788964064335,0.0046842206653215,0.0069712221455534,0.0090917402301886,0.011349998982975,0.0135114496044311,0.0158213976247515,0.0179561253968416,0.0200464103533933,0.0224369472649852,0.0244279973757585,0.0263133579047873,0.0281762558486297,0.0302615180199202,0.0325499339716077,0.034690206942176,0.0367209991094173,0.0388342463479415,0.0409147609147609,0.0425735868715811,0.0570748363249068,0.070880564365037,0.0841081285285537,0.0968654973221519,0.1093855503038487,0.1252407458358907,0.0693052488534058,0.0863795160190865,0.1034165641875635,0.1174146870337172,0.1361842956319262,0.1531685753599792,0.1695430145577683,0.169918538956773,0.1862076562930322,0.2020571885090376,0.1153682798703476,0.1359218927714778,0.1542574931880109,0.1653512640465526,0.1766793848999884,0.1943674814996668,0.2089580475807596,0.1851692226651821,0.2023753199645764,0.2182746738862909,0.1431660791519788,0.1591241061335433,0.1756021253765303,0.1827096706164573,0.174307853741222,0.1833097439984609,0.1906549150255134,0.1519736273860593,0.1609610320442643,0.1682187438082029,0.1107347125277703,0.1112834495257065,0.1201493804107961,0.1215282698030324,0.1111585513003768,0.1201353968968283,0.1277906880239024,0.1049085446673146,0.1127530172004181,0.1209745817163124,0.120989943255239,0.1300170463350379,0.1402667778240933,0.1490114382296293,0.1560270961374545,0.1627992056025922,0.1704972579949473,0.1762872829796705,0.1860720160848108,0.1930528487905537,0.1967841864581796,0.206977197427402,0.2153439153439153,0.2258184523809523,0.0,2.1573639860324256,22.35167937007992,37.40289981225863,32.7475488019018,full_Colonoscopy_compliance,66 +100000,95708,62301,606.7935804739416,1175,11.054457307644084,1035,10.291720650311364,340,3.2808124712667697,77.288290147924,79.65725166168701,63.294707477804174,65.04380551737462,77.23109450527767,79.60550253536138,63.269539245215626,65.02204010084736,0.0571956426463344,51.74912632563178,0.0251682325885482,21.765416527259163,2942.69198,2142.9702570221434,3074656.225184938,2239071.1926089185,3.19585,2.283323617454176,2822.0315961048186,1868.5832087747892,893.35713,453.8813519807055,929047.8852342542,470990.9179808631,794.24825,445.709496457241,799802.7228653822,435633.8409090579,202.9765,116.99324457007148,201014.55468717348,111175.40286085964,309.6837,163.89058975827984,299333.01291428093,151391.5156312749,0.38031,0,100000,0,0.0,283898,2966.2933088143104,0,0.0,304,2.643457182262716,0,0.0,79821,829.773895599114,0,0,0,0,0,0,0,0,0,0.0,347,3.61516278680988,0,0.0,2,0.0208968947214443,0.01175,0.0308958481238989,0.2893617021276595,0.0034,0.5809443507588533,0.4190556492411467,10.717693737912054,2.7222543420728598,0.3043478260869565,0.4608695652173913,0.0956521739130434,0.1391304347826087,13.275110167522431,9.568783495539602,3.952649814025629,7594.695357990312,12.897570177373897,5.993808962875505,3.970243008687053,1.7768107728228908,1.1567074329884457,0.7323671497584541,0.8238993710691824,0.7746031746031746,0.7083333333333334,0.1919191919191919,0.8189134808853119,0.9333333333333332,0.852760736196319,0.746268656716418,0.1904761904761904,0.6524163568773235,0.7261904761904762,0.6907894736842105,0.6753246753246753,0.1929824561403508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021673300316997,0.0043896554171186,0.0066566546251572,0.00884820902497,0.0111870474330811,0.0133694467920455,0.015650170265696,0.0177308222324299,0.0200451808768361,0.0223609476538914,0.0243814950704081,0.0266982817022849,0.0289835701507269,0.0310395254474676,0.0333157987024373,0.0354064612141129,0.0375535814126856,0.0396214275336751,0.0415201880473446,0.0432711848509165,0.0579929610560504,0.0720821642447338,0.0852267360710275,0.0984005051036514,0.1108308088537983,0.1270207607694506,0.0686338008727875,0.0861584027615009,0.1032654021341659,0.1171272735081277,0.136001466323087,0.153272101033295,0.1702940760177251,0.1697293392726198,0.1861491879988989,0.202175914116825,0.1153837557552188,0.1353848580797097,0.1545815193297943,0.1654524385906541,0.1767772731485772,0.1936318710916457,0.2084626501457035,0.1835655531307705,0.2004253250698748,0.2167455504609771,0.1415101427498121,0.1569717163495777,0.174259681093394,0.1828892227405708,0.1730782141658274,0.1825743226550276,0.1906602209168329,0.151497256110735,0.1598643987505736,0.1677709237681821,0.1112194354902114,0.1121207679906199,0.1201457133175194,0.1209842909708463,0.1102763865702096,0.1188802998360271,0.1252353075029478,0.1034012708044763,0.1097569599962282,0.1193352704287098,0.1210854786581968,0.1299870904284748,0.1376577936333699,0.1449067431850789,0.1526306418588088,0.1599792907067046,0.1676420385271884,0.1741978216073005,0.1801996223361208,0.1872523491452507,0.1930131004366812,0.203076923076923,0.2078056345308865,0.2083183936894944,0.0,2.074220763465114,19.83930968247993,37.663314069804656,32.86269774476903,full_Colonoscopy_compliance,67 +100000,95839,61757,600.4549296215528,1186,11.14368889491752,1038,10.340258141257737,360,3.411972161646094,77.36488025655099,79.6788056126149,63.35773544642036,65.07058478527011,77.29714688169908,79.62007178014922,63.32697010365931,65.04578726149377,0.0677333748519117,58.73383246567698,0.0307653427610432,24.7975237763427,2953.01392,2150.233480425135,3081178.852033097,2243546.592566118,3.42967,2.5351470014138684,3095.2013272258687,2161.8412143426667,890.98936,452.648757012431,927105.8650445016,470309.5103848052,771.0727,460.2226976017657,769819.301119586,446185.5456253088,205.03035,127.48474803753304,202910.56876636855,122028.55932296164,326.97044,186.013594485322,308992.9152015359,165027.84312541908,0.37985,0,100000,0,0.0,284924,2972.91290601947,0,0.0,344,3.088513027055792,0,0.0,79688,828.89011780173,0,0,0,0,0,0,0,0,0,0.0,362,3.777167958764177,0,0.0,3,0.0313024968958357,0.01186,0.0312228511254442,0.3035413153456998,0.0036,0.6236378876781223,0.3763621123218776,10.150258565635475,2.8236292467810853,0.2832369942196532,0.464354527938343,0.0973025048169556,0.1551059730250481,12.908699143651797,9.278863896330172,4.349398120134559,7577.462747755936,13.230853330171543,6.206471343006193,3.7402460727011126,2.0676988033461448,1.2164371111180925,0.7427745664739884,0.8547717842323651,0.8027210884353742,0.7080745341614907,0.0891089108910891,0.7967332123411979,0.9152542372881356,0.9135802469135802,0.7010309278350515,0.125,0.6817248459958932,0.7967479674796748,0.6666666666666666,0.71875,0.0444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024612579762989,0.0045216756559471,0.0066766783018102,0.0089891520741071,0.0112974242686163,0.0132672178552519,0.0154437399335358,0.0176919778671621,0.0198724239450441,0.0219970315778699,0.0240027876849915,0.0260152088913518,0.0279242335481351,0.0306398657897716,0.0329639746430964,0.0353256942293795,0.0372986894775494,0.0391346243511236,0.041025055291931,0.0429585084689333,0.0575448770769664,0.0713076199435559,0.0841207651532611,0.0968422821258676,0.1091791814984097,0.1249828407302985,0.0688420383515203,0.086959294970606,0.1035910128661958,0.1176426482717252,0.135662876139041,0.1536133181990162,0.1702552960347637,0.1703412503412503,0.1855957809152337,0.201934770591487,0.1162609412236352,0.1365565084639217,0.1549310122355657,0.1648308957952468,0.1767957076097617,0.1933783484355502,0.2088196075192051,0.1851316653729026,0.2019506875870842,0.2174981266046705,0.1406836519635352,0.1562567319267566,0.1740581783500238,0.1810953368147584,0.1736680053547523,0.1828167318687932,0.190149329000084,0.1505594094245048,0.1590553274451304,0.1669784774507567,0.1103284539551264,0.111864406779661,0.1202421118665332,0.1208297198279676,0.110437773027233,0.1193605892608772,0.1264634575934022,0.103811500750817,0.1095874216810497,0.1182875589260094,0.1180623378072941,0.1264477575160177,0.1349048175383135,0.142751508075501,0.149205073240443,0.1547829707504944,0.1617647058823529,0.1678723245581325,0.176427255985267,0.1847287803754462,0.1922962522308149,0.2034666141422099,0.21595124536301,0.22510181414291,0.0,1.826896760891119,22.398059656302937,38.59192619928537,26.08306359040752,full_Colonoscopy_compliance,68 +100000,95639,62258,607.388199374732,1197,11.365656269931725,1057,10.487353485502776,349,3.345915369253129,77.2563444549925,79.66728788186265,63.27473565930678,65.05590248073466,77.19604631606443,79.61357817379911,63.24809220164386,65.03357860632221,0.0602981389280756,53.709708063536254,0.0266434576629137,22.323874412450092,2945.18076,2144.779701799083,3079467.204801389,2242569.016613601,3.22203,2.295284103729816,2810.6734700279176,1841.6693019895813,895.86041,454.6834804162757,932737.8998107468,472362.1774479888,793.91884,455.25977380908415,795801.2839950229,441699.854462179,196.22766,115.36827414755592,191691.21383536005,107244.15278628471,317.47694,171.66812746605348,304141.65769194573,155586.68868598167,0.38035,0,100000,0,0.0,283919,2968.642499398781,0,0.0,320,2.739468208576,0,0.0,79982,832.401007957005,0,0,0,0,0,0,0,0,0,0.0,367,3.8164347180543503,0,0.0,2,0.020911971057832,0.01197,0.0314710135401603,0.2915622389306599,0.00349,0.5759336099585062,0.4240663900414937,10.517724002886387,2.707484156895047,0.2781456953642384,0.4720908230842006,0.0936613055818353,0.1561021759697256,13.301743863371597,9.856339407968294,4.109786523826272,7637.445796767576,13.363057122101832,6.439614666147087,3.675047287228265,2.066162148318356,1.182233020408126,0.7209082308420057,0.8557114228456913,0.7789115646258503,0.5757575757575758,0.1111111111111111,0.801125703564728,0.931174089068826,0.88,0.6904761904761905,0.1346153846153846,0.6393129770992366,0.7817460317460317,0.6736111111111112,0.4567901234567901,0.0851063829787234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023699802501645,0.0046319288892492,0.0068094865992145,0.0091127975374112,0.0113846779936921,0.013273840449049,0.0155255426799412,0.0175834729657934,0.019945584354479,0.0222509066322453,0.0244520604170087,0.0264726435647634,0.0286090779002851,0.0305898363799449,0.0326942544883581,0.0347161142786188,0.0364999067028797,0.0387048521300134,0.0409560575632394,0.0427953063885267,0.0574987720636645,0.0711509653359033,0.0843639112268251,0.0975368421052631,0.1103431538071923,0.1260144965874821,0.0679997028263338,0.0856850759302251,0.1029264017442979,0.1170486737058975,0.1360167299068644,0.1533212010919017,0.1693492181034107,0.1702948168761024,0.1865828785623725,0.2037057583490513,0.1188346822877073,0.1389874415723376,0.1577004758497723,0.1679024513230727,0.1794227339062753,0.1959696022294821,0.2107856491406777,0.1868146354909457,0.2029601905410003,0.2188066213900975,0.1420512114881853,0.1584206244279467,0.1760187256714989,0.1833478157832372,0.1749422322532108,0.1846578427065026,0.1922736282737969,0.153277306078909,0.161805679056257,0.1698614653816193,0.1122056552028496,0.1139922600871964,0.1224198077086701,0.1218056862779918,0.1108256060775332,0.1195426195426195,0.1270957835325365,0.1036816578483245,0.1105217041229545,0.1193502101055652,0.1185998935067118,0.1277724650646265,0.136710855342034,0.1462207616470133,0.1557958170861396,0.1619947343967787,0.168861395234887,0.1731461747629896,0.1810622317596566,0.1878184082418204,0.1923355025307302,0.2006131442805135,0.2026363401395709,0.2188651436993367,0.0,2.103737501287901,21.417459928444607,38.5721191049585,31.052936144183384,full_Colonoscopy_compliance,69 +100000,95688,62204,605.9798511830114,1233,11.746509489173146,1095,10.81640331075997,347,3.197893152746426,77.32722884548278,79.70289997291145,63.32110870231941,65.07556343602583,77.2641876587567,79.64940033287421,63.293780186626336,65.05380987017885,0.0630411867260818,53.499640037244944,0.0273285156930782,21.75356584697852,2948.12343,2147.8329810996847,3080965.544268874,2244611.509384338,3.35178,2.424557161202008,2893.926093136025,1924.9196986058937,900.08531,457.2789394062216,936231.9204079928,474502.0106808152,828.95898,475.1936589049055,824901.4505476131,455194.3596949527,221.74756,133.217045689251,212613.4102499791,120192.77947597396,316.03496,170.22968401264873,290896.93587492686,146840.0985476072,0.38054,0,100000,0,0.0,284139,2969.4214530557647,0,0.0,327,2.7903185352395283,0,0.0,80396,835.7474291447203,0,0,0,0,0,0,0,0,0,0.0,367,3.835381657052086,0,0.0,2,0.0209012624362511,0.01233,0.0324013244336994,0.2814274128142741,0.00347,0.5725806451612904,0.4274193548387097,10.381016249434971,2.809734301703701,0.273972602739726,0.4940639269406393,0.1077625570776255,0.1242009132420091,14.443960354263584,10.71276078688354,4.172867912808166,7627.334430537869,13.810225040544182,6.948472293130823,3.766298533090087,1.6587713082851097,1.4366829060381625,0.7643835616438356,0.8724584103512015,0.8166666666666667,0.6985294117647058,0.211864406779661,0.8300884955752212,0.9405204460966544,0.8944099378881988,0.7887323943661971,0.25,0.6943396226415094,0.8051470588235294,0.7266187050359713,0.6,0.1666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021766861724745,0.0046112839638799,0.0069087957796489,0.0091918299359111,0.0113889425570209,0.013633633022105,0.0159586400995248,0.0183326013910308,0.0204323727322929,0.0223346407102845,0.0244487744846682,0.0266009346274328,0.0286457797617823,0.0308600632657056,0.0330144380114967,0.0347776628748707,0.0367976131277971,0.038838479267457,0.0411171208654046,0.0431320227647022,0.058063505326927,0.0719092421848018,0.0849590937696664,0.0978876054619285,0.1100423970132253,0.1254852597395728,0.0693683942442378,0.0877846746803232,0.1039801739056124,0.1186426135266736,0.1372863650559462,0.1552804441221985,0.1718877423423619,0.1720586466658648,0.1877447744774477,0.2043144116409382,0.1166837713622774,0.1378639685216413,0.1558186746509702,0.1674717274850052,0.1786701518603763,0.1961522277806349,0.21070799494036,0.1857125762833552,0.2023971273291925,0.2181120094510281,0.1422735790131168,0.1581506971074485,0.1755070404340524,0.1823517027211958,0.1736327495433544,0.1825270659175003,0.1894609871383087,0.1490303117368194,0.1581560283687943,0.1665803187760948,0.1110027986541303,0.112595264791433,0.121172198294063,0.1217810969810124,0.1095103525978463,0.1181887203846827,0.1255747778213085,0.1022754754314609,0.1086673761381104,0.1173787129347241,0.1186051718347699,0.1276608853701364,0.1358464701850582,0.1443258971871969,0.1518473949280206,0.159287901593398,0.1659814689820212,0.1725726171904019,0.1811421226588321,0.1875503394315959,0.1908793820558526,0.1933085501858736,0.189920424403183,0.1999263622974963,0.0,2.436770477322181,22.473715917082277,38.37765824069989,31.41286467100125,full_Colonoscopy_compliance,70 +100000,95786,62252,606.7483765894807,1229,11.786691165723592,1097,10.951496043263107,348,3.288580794688159,77.38146625236273,79.70316682795077,63.35451413110488,65.0672949487567,77.31915007232148,79.64998406118805,63.32708515166384,65.04557696905994,0.0623161800412503,53.18276676271694,0.0274289794410336,21.71797969675993,2951.3125,2148.204677846101,3081142.7348464285,2242704.157158325,3.00267,2.112896973431968,2629.288204956883,1700.3705900987284,892.49832,452.9355154517448,928664.0949616856,470529.7035140786,823.77073,470.55058040228585,824495.3646670703,455872.0682290777,216.80836,125.94459287608755,212989.29906249343,118128.992592657,317.42318,170.56323374386997,298365.71106424736,149724.01390265112,0.38225,0,100000,0,0.0,284738,2972.636919800388,0,0.0,295,2.5369051844737225,0,0.0,79721,829.1921575178001,0,0,0,0,0,0,0,0,0,0.0,369,3.8523375023489854,0,0.0,2,0.0208798780615121,0.01229,0.0321517331589274,0.2831570382424735,0.00348,0.5840064620355412,0.4159935379644588,10.20802506758173,2.7659992613188265,0.2780309936189608,0.4913400182315405,0.0966271649954421,0.1340018231540565,12.869937193203809,9.183687096685338,4.135129815550986,7598.683594615463,13.822389620000816,6.886264559233337,3.8429395387213368,1.7991100480532902,1.2940754739928513,0.7183226982680037,0.8460111317254174,0.7639344262295082,0.564625850340136,0.1509433962264151,0.8111510791366906,0.9191176470588236,0.8875739644970414,0.676923076923077,0.14,0.6229205175600739,0.7715355805243446,0.6102941176470589,0.4756097560975609,0.1607142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021262377741327,0.0045198427175807,0.0064616914009799,0.0085811195060524,0.010859507661647,0.0131013701976912,0.0153599967384213,0.0176736497311197,0.0196771557008581,0.0218223113439188,0.0240544195385813,0.0260598350227767,0.0280144285611518,0.0302344015400294,0.0323934223413578,0.0342559124238355,0.0364878149738707,0.0385361049193924,0.0404213544426091,0.0423764108117113,0.0571992110453648,0.0714801444043321,0.0847964256497388,0.0975358479458391,0.1101997786094565,0.1251969919722466,0.0670188391038696,0.0848794507424556,0.1021691997137639,0.1162603717759053,0.1350749160423663,0.1523889843978072,0.1685945381805531,0.1691071135655311,0.1852540340765347,0.2021862159857353,0.1180677190829475,0.13783874957832,0.1562251820925325,0.1673670830995431,0.1790105606514522,0.1951846957985944,0.2099979899972806,0.1857098418319734,0.203605154376735,0.2190265486725663,0.1416614693775726,0.1568838742393509,0.1742390995688876,0.1814658626624101,0.1733613805670186,0.1825358818941809,0.189911353228675,0.1513287436940368,0.1596371748090588,0.1675538386665044,0.1108200527042288,0.1114053184749589,0.1202330687383887,0.1218455578057585,0.1127972234529611,0.1214041362152075,0.1301750772399588,0.1075739254699351,0.1145464836564313,0.1229453802960694,0.1231171868474538,0.1319031566043518,0.1398474640035568,0.1478614282949487,0.1552464897904947,0.1616551015163197,0.169424743892829,0.1785295840656121,0.1832422586520947,0.1898068792138041,0.1979806848112379,0.2034456058846303,0.2088258471237194,0.2141547488082141,0.0,1.830416827861221,22.763185565719084,40.17521268960224,30.663564032954127,full_Colonoscopy_compliance,71 +100000,95763,62279,605.484372878878,1202,11.350939298058748,1083,10.79748963587189,365,3.466892223510124,77.31912755708531,79.66794712026895,63.32066847763053,65.05783329544782,77.24972179236228,79.60683091778868,63.28932525348096,65.0316488739259,0.0694057647230295,61.11620248026384,0.0313432241495732,26.184421521918463,2944.29295,2145.0907161827467,3074562.148220085,2239999.494776424,3.2616,2.37649212348331,2899.44968307175,1975.1805222093196,897.10344,456.3427138611356,933508.192099245,473987.27632514713,824.09639,480.7814594207287,827413.5835343504,468908.80551019614,221.33847,135.15532976846228,215979.91917546443,125983.63644462092,334.466,187.1393766090163,317765.9638900201,169084.0565211681,0.38199,0,100000,0,0.0,284056,2966.239570606602,0,0.0,320,2.8090180967597087,0,0.0,80205,834.2261625053517,0,0,0,0,0,0,0,0,0,0.0,349,3.644413813268173,0,0.0,0,0.0,0.01202,0.0314667923244064,0.3036605657237937,0.00365,0.6,0.4,10.555236780192354,2.8139865681908773,0.296398891966759,0.4515235457063712,0.1089566020313942,0.1431209602954755,13.409900574221316,9.732281973725744,4.336624061325073,7639.428424773234,13.666607445441178,6.340101454315128,4.022884069786063,1.8919586175784089,1.4116633037615802,0.7294552169898431,0.8609406952965235,0.7850467289719626,0.6387096774193548,0.1525423728813559,0.8086206896551724,0.9224806201550388,0.8626373626373627,0.7647058823529411,0.1636363636363636,0.6381709741550696,0.7922077922077922,0.6834532374100719,0.4857142857142857,0.1428571428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002369644249562,0.0045298391755084,0.0068686335781827,0.0091815799630299,0.0117257019658093,0.0139724827635371,0.0165893448891154,0.0188396029898296,0.0207766712337171,0.0233410454331401,0.0254275519829389,0.0279289454769483,0.0301126137707615,0.0320586780946101,0.0342045255218382,0.0360693689410694,0.0380147835269271,0.0402472926434587,0.0420628240697444,0.0439935842689607,0.0586724841602037,0.0726479633465135,0.0860873669306203,0.0992954784437434,0.111605401587586,0.1269732181562503,0.0679542658351363,0.0866257355366624,0.1035355422908947,0.1172050042345172,0.1359671792221217,0.1538669638895802,0.1707884719956498,0.1708522385611982,0.186826241914903,0.202993700386391,0.1161202490682259,0.1360890838535515,0.1542781294670206,0.1663938835540396,0.1774212206746564,0.1937720713767861,0.2090274491244675,0.1845580481257789,0.2010780493134719,0.217382735514387,0.14281607040176,0.1591853329437026,0.1764082276435377,0.1831187975466582,0.1728799452282826,0.182117253574219,0.1899174760006736,0.1502425123415034,0.1587712039718659,0.1657431650733727,0.1110132435748214,0.1124576492051081,0.1204264680995092,0.1207369520202467,0.1105833457028351,0.1194000703042612,0.1274647887323943,0.107075794729052,0.1144354093075081,0.1228700472182303,0.1240720508726223,0.1324335983237813,0.1391429947038998,0.1462678481600433,0.1538325131888105,0.1603310059477631,0.1660846658089811,0.1739194789816459,0.180988870644043,0.1875071111616793,0.1915798738447997,0.1992993382639159,0.209136519672564,0.2085463842220599,0.0,1.995335029242987,23.51412892650026,35.826882817745684,30.42449748303836,full_Colonoscopy_compliance,72 +100000,95679,62276,607.3642074018333,1187,11.225033706455962,1062,10.49342070882848,339,3.187742346805464,77.34181859432726,79.72497448333955,63.3271521787835,65.08568167581133,77.27708071942062,79.66767068936147,63.297667196493606,65.06102457672921,0.0647378749066405,57.30379397807894,0.0294849822898939,24.65709908211977,2946.52847,2145.602479064882,3079569.2994282967,2242472.349277148,3.19092,2.3393274436420235,2751.0111936788635,1860.9595038012765,900.37301,457.2163118175289,936286.1233917578,474354.2446544661,787.1048,460.0961626032303,785188.5680243314,443411.7545158615,199.89051,120.38845860619926,194783.42164947372,111860.745080904,308.1356,174.724380187631,289427.2933454572,155000.81466496864,0.38084,0,100000,0,0.0,284256,2970.9027059229297,0,0.0,315,2.686064862718047,0,0.0,80278,834.4255270226487,0,0,0,0,0,0,0,0,0,0.0,356,3.7207746736483447,0,0.0,3,0.0313548427554635,0.01187,0.0311679445436403,0.2855939342881213,0.00339,0.5922818791946308,0.4077181208053691,10.358100034423018,2.7506838269992206,0.2645951035781544,0.4971751412429379,0.1007532956685499,0.1374764595103578,13.75667631940367,10.034634062667994,4.004289440727257,7625.071978088175,13.50798196517417,6.839456728961381,3.5517805375431566,1.7832793965602416,1.3334653021093903,0.7354048964218456,0.8541666666666666,0.800711743772242,0.6438356164383562,0.102803738317757,0.7915904936014625,0.9320754716981132,0.8613138686131386,0.7530864197530864,0.109375,0.6757281553398058,0.7756653992395437,0.7430555555555556,0.5076923076923077,0.0930232558139534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024708610545715,0.0043990796395592,0.0063512677170946,0.0082671487477402,0.0105136860942774,0.0127270505823898,0.0150546840758747,0.0173739064748935,0.0194912049387258,0.02150702740329,0.0235522106471987,0.0256549825919954,0.0278080697928026,0.0298930404138243,0.0322027950374667,0.0344535120654523,0.0364444628664393,0.0385605714523028,0.0406861827185152,0.0427729997393797,0.0582065853250877,0.0723402473117153,0.0853913244261589,0.09780298406953,0.1102004219409282,0.1258620689655172,0.0687316948936712,0.0872508942258559,0.104240792383883,0.1178962495844192,0.1376848272074264,0.1553445310894558,0.1722488038277512,0.1718679973328378,0.1875941710200714,0.2038154500260194,0.1170064383668641,0.1373331684225912,0.1566459106014722,0.166983269631291,0.1782623265273107,0.1951615540966754,0.2099953932836438,0.1857766612835696,0.2031494344837618,0.2185252130288834,0.1421919860192235,0.1574853111001129,0.1751798421779953,0.1832384308877871,0.1742932246124135,0.1836483155299917,0.1909327950206072,0.1516979831063609,0.1599492318363612,0.1673664993153811,0.1117842792566549,0.1132409846193867,0.121991645102914,0.1239328300289282,0.111714407077031,0.1194369816610209,0.1276082474226804,0.1039026751143963,0.1108014266480856,0.1188121348775238,0.1202404249370981,0.1293592113370301,0.1364997418688693,0.1451581602949738,0.152669719468279,0.1603140171469889,0.1694853388490084,0.176020595807282,0.1804552023121387,0.1876718606782768,0.1962258587645584,0.2030643910007758,0.2075471698113207,0.2117863720073664,0.0,2.283145338659574,21.791837585769063,41.16812043500486,26.935960823653463,full_Colonoscopy_compliance,73 +100000,95673,62516,609.2628014173278,1188,11.215285399224442,1076,10.577696946892017,365,3.396987655869472,77.38307130315455,79.7572664953223,63.34642469116329,65.09678778943069,77.31882993927158,79.7044287491661,63.318000874371954,65.07483767726053,0.0642413638829708,52.83774615620018,0.0284238167913386,21.95011217015974,2948.61133,2147.67516127953,3081958.5567505984,2244799.034494091,3.15534,2.328356649841966,2656.120326528906,1791.7350243453911,903.60791,459.02622922149584,940126.054372707,476477.67939619976,820.94844,478.7894901317313,812466.6938425679,454880.2732021904,208.00611,126.07814781765131,202046.0004389953,116449.473885844,328.0869,178.20616198483185,303999.8327636846,153840.12107114913,0.38195,0,100000,0,0.0,284032,2968.7686181054214,0,0.0,312,2.5921628881711665,0,0.0,80733,839.4844940578846,0,0,0,0,0,0,0,0,0,0.0,383,4.0032192990707935,0,0.0,4,0.0418090788414704,0.01188,0.0311035475847624,0.3072390572390572,0.00365,0.5973154362416108,0.4026845637583892,10.382141281118276,2.8190007724598,0.2788104089219331,0.4711895910780669,0.0929368029739776,0.1570631970260223,14.0217716464861,10.289285554182891,4.342152555526302,7669.248382668389,13.60284369178155,6.54346492084347,3.691211231838144,2.1645871537140047,1.203580385385934,0.7546468401486989,0.8678500986193294,0.8,0.7218934911242604,0.1,0.8363309352517986,0.937007874015748,0.906040268456376,0.8316831683168316,0.1538461538461538,0.6673076923076923,0.7984189723320159,0.695364238410596,0.5588235294117647,0.0416666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022675966512456,0.0045488622778757,0.0067544953905132,0.0092814492871359,0.0116821717248741,0.0137524557956778,0.0158107198923525,0.017852586022109,0.0200648043093843,0.0224804217638327,0.0247598347293847,0.0266678989145949,0.0290027974329438,0.0313237126994427,0.0332191639499855,0.0354189921038488,0.0376041105540131,0.0394918473466252,0.0415557404326123,0.0434904952476238,0.0578636719770175,0.0720589620913116,0.0860287252011708,0.0990925628003322,0.1117390295848006,0.1270893463160899,0.0693244575414197,0.0878387000723127,0.1043989458747212,0.1186509679562036,0.1373879930725127,0.1546145447076247,0.1706548434070113,0.1709537130119323,0.1872560338666226,0.20383188437898,0.117870298024333,0.1378933861600108,0.1565992987074884,0.1672162304504133,0.1788080235851783,0.1950803189374985,0.2107971280207236,0.1864220007665772,0.2029054103254933,0.2183861359328459,0.1431729892451628,0.1586297960945633,0.1760237695388192,0.1838767400857872,0.1745827468328976,0.1838204092806789,0.1917211634061979,0.1537091817685746,0.1632541672813099,0.1706768060836501,0.113334380398932,0.1154847104749512,0.1241810147798263,0.1257419446014697,0.113438399645678,0.1212786630392537,0.1284932296168251,0.1052793191937358,0.1105910576945692,0.1187264583121246,0.1202131202131202,0.1279919298138354,0.1357101389884916,0.1423410959956959,0.1490112994350282,0.1562004196734735,0.1621834484429904,0.1714202348821941,0.17987094461373,0.1879572312886888,0.1963384748450339,0.2039857115999248,0.2057770961145194,0.2009197028652281,0.0,2.6072476177152786,21.786630655237712,39.574451108618696,29.010765857265596,full_Colonoscopy_compliance,74 +100000,95692,61841,603.780880324374,1202,11.32801070099904,1073,10.617397483593196,373,3.5217155039083727,77.3960056150407,79.78055182380089,63.35197710932333,65.11339899925935,77.32501730804879,79.71869709127071,63.31956224835735,65.08650736991234,0.0709883069919214,61.85473253017904,0.0324148609659786,26.89162934700562,2956.75466,2151.6453694002835,3089866.0912092966,2248511.2333322363,3.51626,2.534458180262797,3075.899761735568,2049.897776473265,893.78885,453.1052346763992,930276.8883501232,470570.8278834413,818.54983,479.9955387730394,814127.8476779668,460332.03274363605,212.70769,131.30006417225206,206642.68695397733,121592.49138316725,340.76848,194.9782243991632,320474.2507210634,174369.84669196888,0.37853,0,100000,0,0.0,285216,2980.5626384650755,0,0.0,342,2.957405007733144,0,0.0,79683,828.898967520796,0,0,0,0,0,0,0,0,0,0.0,362,3.782970363248757,0,0.0,1,0.0104501943736153,0.01202,0.0317544184080522,0.3103161397670549,0.00373,0.5874067937033969,0.4125932062966031,10.415341562687134,2.8699413904131785,0.2674743709226468,0.4622553588070829,0.1062441752096924,0.1640260950605778,13.658583033486387,9.779761221727792,4.420461655309746,7537.202516852676,13.458173367800583,6.38760182520223,3.4732372152798687,2.1604122130131183,1.4369221143053683,0.7092264678471575,0.842741935483871,0.7630662020905923,0.6136363636363636,0.1403508771929824,0.7777777777777778,0.9098039215686274,0.8832116788321168,0.6956521739130435,0.1538461538461538,0.6374045801526718,0.7717842323651453,0.6533333333333333,0.5238095238095238,0.1224489795918367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021374231388717,0.0043600819289813,0.0066888613710643,0.0088188976377952,0.0108945537403617,0.0130024844214556,0.0150493999612549,0.0174580649113314,0.019618066204584,0.0214948105385985,0.0239801515291319,0.0259764261365969,0.0278711959931299,0.0299643600255454,0.0317481608353367,0.0336468885672937,0.0359229334990677,0.0377109759388818,0.0397716044888662,0.0416692722990015,0.056111470889302,0.0705464972685601,0.0828831852652115,0.0961498023382959,0.1080015600459581,0.12303429604797,0.0667671055563218,0.0847625435150586,0.1013695410648662,0.1151725765278761,0.1341518578352181,0.1526014061654948,0.1690774530793223,0.1685557826623965,0.1848496509262822,0.2012285556170448,0.1157573121912599,0.1357076271662342,0.1550849377123442,0.166453382084095,0.1781103252529681,0.1944344012782682,0.2094565101985442,0.1850542309713794,0.2025100450210582,0.2178131593150483,0.1416642815366044,0.1574175928384478,0.1742105601646408,0.1816633253403566,0.1723359341598974,0.181800815947823,0.1892424432985368,0.1497499390969147,0.1589634101450342,0.1665149998483331,0.1102509050447429,0.1102272727272727,0.1189973837454637,0.1204530641723475,0.110245091701605,0.118604199066874,0.1271411239744196,0.1034814977008977,0.1083647502356267,0.1167410429682519,0.1182484996665925,0.1269110333394732,0.135523613963039,0.1435819970563173,0.1521690767519466,0.159269604800331,0.1672898914975786,0.1754100783212649,0.180853011166026,0.1851680720803973,0.1917443408788282,0.1981593890738202,0.2054212064841881,0.2120875046347793,0.0,2.2819569667514115,21.79522670150391,38.78472509033061,29.57412092897215,full_Colonoscopy_compliance,75 +100000,95825,61940,602.2749804330812,1223,11.416644925645707,1101,10.915731802765457,368,3.4855204800417425,77.38566316619061,79.70646179804125,63.36611244363343,65.08402675419742,77.32000315022849,79.64826528978857,63.33710274179073,65.05978458240087,0.0656600159621234,58.19650825267786,0.0290097018426962,24.24217179655841,2955.83263,2152.208286551461,3084615.319593008,2245977.8623025944,3.23263,2.3202464673780887,2814.568223323768,1862.433047094275,895.8791,456.1612263560519,930702.4262979388,472779.3623484256,830.22936,490.92311340322624,829748.7503261153,475659.26783535245,221.93033,136.6119802950418,216377.1667101487,127342.9364640021,334.923,183.3079619272181,316899.3477693713,164228.86901879427,0.37936,0,100000,0,0.0,285133,2975.559613879468,0,0.0,315,2.7028437255413515,0,0.0,79997,830.6600573962953,0,0,0,0,0,0,0,0,0,0.0,362,3.7777198017218887,0,0.0,2,0.0208713801200104,0.01223,0.0322385069590889,0.3008994276369583,0.00368,0.6027732463295269,0.3972267536704731,10.434593192710404,2.8563450275067166,0.287920072661217,0.4704813805631244,0.1008174386920981,0.1407811080835604,13.98195397789996,10.308151130798144,4.334060184146975,7553.679296739511,14.034904538163715,6.756873036229329,4.01094980267164,1.914589702760373,1.3524919965023727,0.7447774750227066,0.8436293436293436,0.8201892744479495,0.6903225806451613,0.1441441441441441,0.8013468013468014,0.8869257950530035,0.8764044943820225,0.7662337662337663,0.1785714285714285,0.6785009861932939,0.7914893617021277,0.7482014388489209,0.6153846153846154,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025219531463644,0.0048558944882049,0.0072261521754574,0.0093674435616605,0.0115952642499694,0.0138376947357702,0.0158802964050189,0.0178997856924175,0.0201543257192498,0.0221453570478315,0.0244519824962338,0.0265734696391181,0.0286742034943473,0.0308903757076685,0.0328631235950421,0.0350252024458767,0.0370826392409647,0.0390957805163711,0.041097312788138,0.0430905306971904,0.0573189940229693,0.0713128377742701,0.0847727653865503,0.0974459188283375,0.1095989972297418,0.1246646811566652,0.0684449717681706,0.0857804844349498,0.1035207286767137,0.1177692810247512,0.1364252225902189,0.1537597476940358,0.1702411704690993,0.1700279378383097,0.1858276880510326,0.2023739790674285,0.1155255158283875,0.1361161320744125,0.1549225613621954,0.165682365977085,0.1766715133051766,0.1935344727086199,0.2088795623880034,0.1841687646911429,0.2006309758367682,0.2156492758595339,0.1415062646974655,0.1570010746570579,0.1735276712892685,0.180519327312527,0.1718097634086286,0.1806451612903225,0.1873006993006993,0.1491004046027145,0.1579777666381623,0.1649196366177498,0.1087188667985803,0.1092832153608331,0.117474675610665,0.1192425340806619,0.1091881686595343,0.1169097405259766,0.1240022391308855,0.0999756965157641,0.1058309176448225,0.1141518420307391,0.1156006065030605,0.124003460849144,0.1312284334023464,0.140281185496748,0.1460218408736349,0.1527799327644168,0.1619800281810941,0.1697792869269949,0.1744898892853875,0.1803750143793857,0.1840508951028258,0.1915723761217323,0.1924198250728863,0.1913489736070381,0.0,2.2339040950635365,23.9133257288199,40.08985487826104,26.75783417533328,full_Colonoscopy_compliance,76 +100000,95767,62033,603.4228909749705,1251,11.726377562208278,1098,10.891016738542504,392,3.6964716447210417,77.37657405990127,79.72182200343542,63.3458979718325,65.07942308951112,77.3015944369816,79.65733122354634,63.312666169184574,65.05304411324904,0.0749796229196704,64.49077988908414,0.0332318026479256,26.3789762620803,2949.76044,2147.7497393608373,3080128.175676381,2242667.776333015,3.20227,2.401942362251285,2730.053149832406,1895.2534696438288,897.40533,456.14980301643374,934263.9322522372,474197.40475191904,825.26262,490.0767283588574,819493.7400148276,469565.29732096737,218.79887,134.24951571039767,214735.47255317596,126523.64141385347,355.05712,198.68838304266885,331947.1843119237,172171.8119068143,0.37981,0,100000,0,0.0,284554,2971.3053557070807,0,0.0,313,2.6522706151388267,0,0.0,80131,833.8780582037655,0,0,0,0,0,0,0,0,0,0.0,359,3.748681696200153,0,0.0,3,0.0313260308874664,0.01251,0.032937521392275,0.3133493205435651,0.00392,0.5779014308426074,0.4220985691573927,10.573051978628245,2.890118422382156,0.2987249544626594,0.4608378870673952,0.1029143897996357,0.1375227686703096,13.752592145080472,9.984334541090355,4.720069502181763,7634.827591628153,13.968646904228056,6.534276933405631,4.151663416594003,1.8608627951209988,1.4218437591074202,0.7568306010928961,0.8675889328063241,0.8109756097560976,0.7086092715231788,0.168141592920354,0.8084745762711865,0.928030303030303,0.888268156424581,0.8026315789473685,0.1690140845070422,0.6968503937007874,0.8016528925619835,0.7181208053691275,0.6133333333333333,0.1666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022586853033525,0.0042068343318229,0.0065037845735506,0.0087671177211589,0.0109633064844194,0.0133399863545177,0.0151930744052778,0.0173459386613305,0.0199450004600333,0.0224278592705571,0.0247522215503192,0.0268835967973722,0.0289291882556131,0.0311231951224536,0.0331782401914764,0.0354429594716115,0.037422080477147,0.0395659570936553,0.0416887585898595,0.0434080754850602,0.0581672059283999,0.0719836015854589,0.0856310150336527,0.0981713084603258,0.1107105967663736,0.1269463736403133,0.0701895754696976,0.0887645112205918,0.1053463485486041,0.1192322127499865,0.1379908243048226,0.155805097581029,0.1717424407222101,0.1707850665616556,0.1866408391023453,0.2020697831602974,0.1162045718367711,0.1366141732283464,0.1548294165683695,0.1655796603963568,0.1777084416710001,0.1948826943513447,0.2103131494426601,0.1857492976268754,0.2029869201023117,0.218534821955538,0.1428696129289704,0.1593290342197615,0.1765335189410051,0.1833048732431367,0.174120229697351,0.1832553814173572,0.1905294817094495,0.1510942096577455,0.1595243007456747,0.1672309864715081,0.1117576936349091,0.1129647979986679,0.1215204421383541,0.1229152709706992,0.1111337343822304,0.1187233296311451,0.1253947612855285,0.103547438205207,0.1104973679862143,0.1169309462915601,0.117625718591282,0.1256140997297961,0.1348692104631629,0.1436098090109634,0.151161241618189,0.1564907201571628,0.1638262781748213,0.1716434417164344,0.1781504986400725,0.1849479583666933,0.1915426550758803,0.2020865533230293,0.2081696779261586,0.2183406113537118,0.0,2.094721001864039,23.85381436048522,38.45119080031858,29.05228410044293,full_Colonoscopy_compliance,77 +100000,95741,62009,604.0672230287964,1181,11.029757366227637,1072,10.507515066690342,372,3.478133714918373,77.3313489084019,79.69677462791289,63.31030609897547,65.06291023039441,77.26101072755915,79.63791069847387,63.27847508190409,65.03785354351409,0.0703381808427536,58.86392943901342,0.0318310170713758,25.056686880319035,2948.95247,2146.8118701826143,3080111.1958304173,2242290.07086788,3.47445,2.545618527954048,2935.576189929079,1965.4260222413047,893.6039,453.92479798311,928706.9280663456,470632.8676227521,797.13409,482.15622252833896,785396.6430264986,456591.6813403642,215.65635,135.81536378894518,208129.4220866713,124817.6639047972,341.10824,195.02175268985764,317816.6720631704,169998.997250059,0.38214,0,100000,0,0.0,284536,2971.9138091308846,0,0.0,350,2.9245568774088424,0,0.0,79824,829.1640989753606,0,0,0,0,0,0,0,0,0,0.0,355,3.7079203267147824,0,0.0,0,0.0,0.01181,0.0309049039618987,0.3149872988992379,0.00372,0.5796124684077506,0.4203875315922493,10.443281614552609,2.780408381689736,0.2649253731343283,0.4757462686567164,0.1119402985074626,0.1473880597014925,13.306180348079517,9.656980243434502,4.483833375191036,7613.746921714633,13.613855350588397,6.582987103314801,3.568011106025136,1.9348894463391968,1.5279676949092598,0.7453358208955224,0.8901960784313725,0.7992957746478874,0.6645569620253164,0.1083333333333333,0.8192567567567568,0.9618320610687024,0.8809523809523809,0.8620689655172413,0.1333333333333333,0.6541666666666667,0.8145161290322581,0.6810344827586207,0.4225352112676056,0.0666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002077022056961,0.0044515651459687,0.0068104541994417,0.0089615931721194,0.0111395959226026,0.0135042926541129,0.0155193686206931,0.0176031530473671,0.0195972138407879,0.0217854435954687,0.0241425992779783,0.0264242050649817,0.0285987733091837,0.030629702153973,0.0327202163456576,0.03465034278092,0.0366661834448195,0.0388195374031068,0.0408415712934377,0.042839287574211,0.0574757038320615,0.0711445493167026,0.0842477393365923,0.0967063475371219,0.1090995360607338,0.1248624978845828,0.0690240692787706,0.0872390285470813,0.1039874317348694,0.1181861103957421,0.1372234137719194,0.15530647606671,0.1721915586182871,0.1719736856507985,0.1882953894931525,0.2049034060051206,0.1167788681604537,0.1371037618013436,0.1554726227072155,0.1666533066132264,0.1778163312514457,0.1938023489775864,0.208639651478022,0.1841291158061344,0.2011248511940915,0.2170321214434335,0.141820135435668,0.157654110893805,0.1754964318957493,0.1832546145851149,0.1746715514580565,0.1838833356155005,0.1911144725968878,0.1520184908694154,0.1608839779005524,0.1683867051145849,0.1107108173302841,0.1122962530034417,0.1209894064574991,0.121263922176794,0.1101008981040026,0.1190105181145305,0.1273941818031874,0.103896389463037,0.1107331821617536,0.118954448962889,0.1204459930313588,0.1292785028318148,0.1359708019144027,0.1430128030509398,0.1513736996532408,0.1587146025687316,0.1673282442748091,0.1735835172921265,0.1827840806771114,0.1889338731443994,0.1961915753029428,0.1976568405139833,0.2036607373034287,0.2059669302659957,0.0,2.52158319925915,23.48786330658652,35.67290204182882,27.485176096627168,full_Colonoscopy_compliance,78 +100000,95487,61799,603.2234754469196,1244,11.69792746656613,1101,10.912480232911289,368,3.4350225685171805,77.22623088476638,79.71555120576477,63.24095407219974,65.07717683959932,77.16024819765883,79.65889645282977,63.2106182036104,65.05272903952292,0.0659826871075495,56.654752935003216,0.0303358685893471,24.447800076401904,2944.90647,2143.397067930689,3084091.5203116657,2244700.3968400825,3.3666,2.439986677640855,2921.4238587451696,1951.0160311255515,889.63888,451.7502162499336,928467.3096861352,470528.7247729308,819.14505,482.3781702936925,815068.2291830301,462600.9026390072,213.2473,129.27475991807435,207075.5600238776,119155.26377500234,334.37188,189.65196111442677,311101.6368720349,165321.5801595536,0.37794,0,100000,0,0.0,284091,2975.179867416507,0,0.0,330,2.827610041157435,0,0.0,79325,827.4529517107042,0,0,0,0,0,0,0,0,0,0.0,371,3.885345649145957,0,0.0,0,0.0,0.01244,0.0329152775572842,0.2958199356913183,0.00368,0.5797448165869219,0.4202551834130781,10.536781585886304,2.702642474390687,0.2915531335149863,0.4677565849227975,0.1008174386920981,0.139872842870118,13.520629171445618,10.049181885561966,4.424884206994877,7585.7072722098865,13.944000232728168,6.674600328059077,3.993945677750649,1.94573258088467,1.3297216460337753,0.7475022706630337,0.8893203883495145,0.7819314641744548,0.6493506493506493,0.1261261261261261,0.7903780068728522,0.9132075471698112,0.874251497005988,0.6966292134831461,0.1639344262295081,0.6994219653179191,0.864,0.6818181818181818,0.5846153846153846,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023103815169478,0.0043920598050452,0.0065892338619611,0.0091611591255719,0.0113617853070532,0.0133516791520154,0.0153572995642812,0.0175137432816299,0.0196630075603343,0.0218745517509887,0.0241213663984233,0.0260641579272054,0.0279771405035267,0.0303746029126614,0.0325670300149816,0.0347976435752223,0.0368664550527997,0.0388133549540559,0.0408805359059039,0.0430406181476454,0.0579042674565875,0.0715747064933429,0.0850667788410979,0.0977244701145669,0.1101423543958657,0.1258625624065888,0.0683381713398619,0.0855633802816901,0.1018733732500723,0.1156508653122648,0.1353212990153739,0.1527315321959631,0.1691958834815977,0.1689994190953231,0.1848938798923355,0.2013686759837358,0.1172635157805265,0.1373702539135138,0.1552531659959529,0.1660377791285797,0.1780015527770374,0.1946468314396157,0.2097192762089846,0.18535719000132,0.2020757540730285,0.2178115163858544,0.142180213608785,0.1581516267570633,0.1756726994779048,0.1832128535246939,0.1740300636531241,0.1822986012930147,0.1901184993822307,0.1504745470232959,0.159463818076906,0.1664126093716655,0.1100749795223993,0.1116279828942643,0.1196822055478219,0.121288356601233,0.1103031202463547,0.1183899282544523,0.1250103416894183,0.1027703700438586,0.1085775047258979,0.1178367587213022,0.1195497332476746,0.1284412145100696,0.1380826434925978,0.1454002482159478,0.1530421633161359,0.1621342690541307,0.1687252814116215,0.1756440281030445,0.1826647564469914,0.186726659167604,0.1913833528722157,0.1962397179788484,0.2005813953488372,0.2028560966678872,0.0,2.3882483120202247,23.26136774217593,38.055984690675736,30.49605712596015,full_Colonoscopy_compliance,79 +100000,95718,61900,603.7631375498861,1213,11.565222842098663,1087,10.854802649449423,356,3.3640485593096385,77.36399481233721,79.74781401611108,63.33329461681414,65.09698343351582,77.3003291187745,79.6931022044822,63.3050570652731,65.07413925669728,0.0636656935627115,54.71181162887717,0.0282375515410464,22.84417681853768,2952.89378,2148.997853015518,3084968.940011283,2245110.991992643,3.34616,2.420844272870016,2972.899559121586,2006.1892986376813,896.7372,454.5052639773656,934086.2742639838,472640.9231185297,828.68203,477.45689612378135,830990.4406694666,464124.43795710447,210.3728,126.57613879067615,205799.1600325957,118394.71563537123,327.02824,177.78316781793478,308263.189786665,156964.9810107302,0.38058,0,100000,0,0.0,284923,2976.671054556092,0,0.0,327,2.883470193693976,0,0.0,80070,833.7407802085291,0,0,0,0,0,0,0,0,0,0.0,356,3.719258655634259,0,0.0,4,0.0417894230970141,0.01213,0.0318724052761574,0.2934872217642209,0.00356,0.5729508196721311,0.4270491803278688,10.402485008681072,2.766822294113389,0.296228150873965,0.4563017479300828,0.1057957681692732,0.1416743330266789,13.606919577821088,9.835243954907025,4.199054407307009,7609.473732700417,13.632071660893653,6.344962951333355,3.98932939673532,1.9352317377758663,1.3625475750491105,0.7396504139834407,0.8689516129032258,0.782608695652174,0.7012987012987013,0.1130434782608695,0.8055555555555556,0.9174311926605504,0.8722222222222222,0.8068181818181818,0.1296296296296296,0.6745886654478976,0.8309352517985612,0.6690140845070423,0.5606060606060606,0.0983606557377049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0043404626446398,0.0063956793632745,0.0085167794784234,0.0107755550581004,0.0131018603419116,0.0153209025256028,0.0172596919808815,0.0196986898223435,0.0217286681207057,0.023760690772607,0.0258501165668744,0.0280394980456696,0.030313646292709,0.0321888190552855,0.034212158808933,0.0361826431042698,0.0380309020535649,0.0399675685789424,0.0419974578566814,0.0565592430919609,0.0705030248477109,0.0841865637195249,0.0970598132413561,0.1093051690699047,0.1247568299078068,0.0683958262639972,0.0858224831929197,0.102003779103904,0.116587891064596,0.1354675562251156,0.1531755645928874,0.1695152978015526,0.170480511671131,0.1865728267443778,0.2028220451527224,0.1178444796289275,0.1375151733129523,0.1567000022677279,0.1669259454141978,0.178283020829723,0.1945514841542306,0.2106948711888442,0.1871231696813092,0.2042226208367673,0.2205979903201238,0.1440171633134175,0.1602797167361313,0.1777565927624544,0.1842999383436749,0.1755672089041096,0.1839185681103975,0.191129810044309,0.1533433670178456,0.1623908979850164,0.1691804470288933,0.1111996998405402,0.1131300056629722,0.1210958535271944,0.1210804152736231,0.111480435063616,0.1194218573707349,0.1263385502471169,0.1029081789783976,0.1105320252806339,0.1187855204546618,0.1202717436886689,0.1283989307770301,0.1349200905411894,0.1423490296141653,0.1474829691232416,0.1553852484312313,0.162786423232447,0.1690015565932844,0.1746860965997617,0.1830254041570438,0.1892093857420415,0.1984566679857538,0.2086909871244635,0.2223886184949457,0.0,1.8228761818306816,21.87820329400629,40.75996784696313,31.10374601777953,full_Colonoscopy_compliance,80 +100000,95679,61700,601.3754324355397,1157,11.047356264175,1023,10.211227124029309,324,3.135484275546358,77.31725194233033,79.72519179889937,63.30264576078415,65.08479423821375,77.25784678241278,79.6726818832427,63.27534722896922,65.06201537265024,0.0594051599175458,52.50991565667107,0.0272985318149352,22.7788655635095,2949.48833,2148.317477311075,3082691.426540829,2245338.5563300983,3.21246,2.2878301889529764,2829.8163651375958,1863.4289540578145,890.12799,451.33826335288273,926949.3305741072,469190.3284280954,765.49665,444.4215038838587,765747.6771287326,430291.35392883245,193.30828,117.09575590448247,186606.7789170037,107009.31730705424,295.6894,166.06068507151423,284030.3514877873,150680.46241144015,0.37887,0,100000,0,0.0,284499,2973.4738030288777,0,0.0,298,2.633806791458941,0,0.0,79528,827.8619132725049,0,0,0,0,0,0,0,0,0,0.0,407,4.243355386239404,0,0.0,2,0.0209032285036423,0.01157,0.0305381793227228,0.2800345721694036,0.00324,0.586414445399828,0.413585554600172,10.641420652611597,2.7665447144742914,0.281524926686217,0.4750733137829912,0.0967741935483871,0.1466275659824047,12.657484453617782,8.971126223733915,3.8829525385265327,7573.157382023196,12.89687095367402,6.225227955367223,3.631150712016758,1.832805021339248,1.2076872649507928,0.718475073313783,0.8641975308641975,0.7465277777777778,0.58,0.1313131313131313,0.7744916820702403,0.9156118143459916,0.8294117647058824,0.654320987654321,0.1509433962264151,0.6556016597510373,0.8152610441767069,0.6271186440677966,0.4927536231884058,0.108695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002411176512304,0.0046646047761496,0.007012594253935,0.0092572833785527,0.0115887470112428,0.0137720281144952,0.0159447493522126,0.0181738313174239,0.020451801681979,0.0224061798846394,0.0246845183133271,0.0267781910848969,0.0288531812613873,0.0307647895746128,0.0328943971081848,0.0348570127881471,0.0366857403491313,0.03872475206397,0.0406076054726109,0.042739497550297,0.0576509183609503,0.0718249979056714,0.0847872184081795,0.0974064916618443,0.1093024727825132,0.125042329834067,0.0681687928509265,0.0854757289825129,0.1017088627886845,0.1154258742759064,0.1344929721578975,0.152924495627327,0.1694087179821984,0.1698476624058834,0.1861346018322762,0.2020496343895413,0.1155382041271611,0.1353359790441713,0.1542778111573386,0.165318567162813,0.1761802376658806,0.1933109820917491,0.2086796155528496,0.1854701672929181,0.2016664038907013,0.2173763271532793,0.1415212125752241,0.1577145465611686,0.1746398214907585,0.1820772058823529,0.1731091086802254,0.1817572741194487,0.1892477628635346,0.1505083384716865,0.1593398482477635,0.167576942386393,0.1112959417469633,0.1128237646944051,0.1210177103206091,0.1208202670800887,0.1092583006729276,0.1168955107605414,0.1247598388596219,0.1007902093284321,0.1064565809738182,0.1160400809820353,0.1175173106991288,0.1259099984641376,0.134732078576571,0.1429123960549216,0.1526236349107697,0.1613053131615635,0.1691037014377485,0.175774606226429,0.1833651833651833,0.1911982670163037,0.19795978710822,0.2025736010918307,0.2042982910409114,0.216624685138539,0.0,1.8999569851141276,21.994966842481265,34.03791963752775,29.176250322102472,full_Colonoscopy_compliance,81 +100000,95866,62222,604.9277115974381,1197,11.557799428368766,1053,10.51467673627772,352,3.4005799762168025,77.4717338221379,79.75772000453695,63.40399372213196,65.0906570015117,77.41577579170391,79.70779581572053,63.379700286084514,65.06984306276328,0.0559580304339988,49.924188816419246,0.0242934360474436,20.81393874841808,2955.46839,2150.75179066129,3082901.445768052,2243484.9862157567,3.09365,2.1143125302600674,2753.3327770012306,1731.7636391004814,897.92141,456.1180843112789,933085.327436213,473107.6556067828,801.85036,456.73920442736494,807758.110278931,447901.1049788086,206.17799,120.52222361696684,204294.85949137335,114945.38586878237,321.84996,165.9242057056063,311265.0783385142,154033.1890391177,0.38006,0,100000,0,0.0,285123,2974.1722821438257,0,0.0,300,2.639100410990341,0,0.0,80184,832.9230384077775,0,0,0,0,0,0,0,0,0,0.0,355,3.7030855569232055,0,0.0,1,0.0104312269209104,0.01197,0.031495027100984,0.2940685045948203,0.00352,0.6049792531120332,0.3950207468879668,10.703866749387812,2.702054528607295,0.282051282051282,0.4700854700854701,0.1025641025641025,0.1452991452991453,13.828149647273705,10.061823720292848,4.085539088822133,7649.593761621505,13.250519588155614,6.261835344199722,3.7950026161958967,1.9078792057099148,1.285802422050084,0.7397910731244065,0.8626262626262626,0.8282828282828283,0.6274509803921569,0.0925925925925925,0.8109640831758034,0.9301310043668122,0.9141104294478528,0.7176470588235294,0.1153846153846153,0.6679389312977099,0.8045112781954887,0.7238805970149254,0.5147058823529411,0.0714285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002743192630833,0.0047917658619606,0.0067837514449694,0.008830694275274,0.0110458499308999,0.01348092830181,0.0158503789422214,0.0181254398759677,0.0204031615709821,0.0226315143581772,0.0246417927262671,0.0267573277541894,0.0289591551610782,0.031052577425661,0.0330989980620954,0.0352127220156959,0.0375170673176383,0.039444093231493,0.0417298307548541,0.0433732933732933,0.0584309963715227,0.0723752979052556,0.0855460318125615,0.0983988905698436,0.110926105467268,0.1262975412781971,0.0688620532448393,0.0866494346406271,0.1035108506527471,0.1185610647349414,0.1368076774110255,0.1545434900054025,0.1711084816049154,0.1706193724420191,0.1868172885858885,0.2029433862200026,0.1181774665761262,0.1376238401382297,0.1564165525669605,0.1667447199789827,0.1785920236200493,0.1948554253360982,0.2100442086648983,0.1851745747538048,0.2027790890494692,0.2184208588053325,0.1434391000485854,0.1597048175995544,0.1759396366352059,0.1835712693855613,0.1743951208420827,0.1836150100257805,0.1917177271902522,0.1530761090295455,0.162460127298652,0.1696125907990315,0.112890625,0.1132335087009308,0.1214338581617548,0.1227799227799227,0.1127128785786615,0.1206328279499011,0.1279692857289506,0.1045677283864193,0.1101772508510388,0.1181526880626621,0.1189691007343771,0.1267162995057057,0.1342788477812002,0.1429226886900665,0.1521007301184803,0.1592386020570025,0.1647309212526604,0.1708790803920123,0.1788357854336105,0.1856025758969641,0.1916984452918744,0.1991124831178854,0.2060511215440792,0.2144412191582003,0.0,1.7747287981424835,21.528884340921977,39.08755786788635,29.794748938891072,full_Colonoscopy_compliance,82 +100000,95743,61913,603.1354772672676,1253,11.906875698484486,1116,11.09219472964081,354,3.3527255256258943,77.34438518034166,79.69740914602514,63.33412346583962,65.07237462228795,77.28153344982911,79.64329337158378,63.30541203283407,65.04918281311426,0.0628517305125484,54.115774441356734,0.0287114330055473,23.191809173695788,2948.97848,2148.553704457707,3080098.263058396,2244084.376359324,3.34244,2.407123887122964,2961.104206051617,1984.201338085253,900.96799,457.653469302817,937434.8620786896,475223.92444063385,829.29295,484.7920493261821,828256.9691779034,468438.6005516669,223.18018,136.25223633867063,218417.4717733933,127624.47002775218,322.33328,177.92388015219177,304500.9034603052,157487.7777167463,0.38127,0,100000,0,0.0,284226,2968.634782699519,0,0.0,325,2.830494135341487,0,0.0,80510,837.3353665542129,0,0,0,0,0,0,0,0,0,0.0,396,4.125627983246817,0,0.0,3,0.0313338834170644,0.01253,0.0328638497652582,0.2825219473264166,0.00354,0.5624012638230648,0.4375987361769352,10.593458425359778,2.8133850963654563,0.2732974910394265,0.4901433691756272,0.0976702508960573,0.1388888888888889,13.627115541023374,9.68989511747583,4.14469773491144,7627.075433931035,14.00137098262904,7.033789039580059,3.790393206980109,1.8753689932150592,1.3018197428538063,0.7491039426523297,0.8775137111517367,0.8131147540983606,0.6129032258064516,0.1192660550458715,0.830155979202773,0.946043165467626,0.8944099378881988,0.7439024390243902,0.1964285714285714,0.6623376623376623,0.8066914498141264,0.7222222222222222,0.4657534246575342,0.0377358490566037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00212714233621,0.0044001500511999,0.0070414675473574,0.0097295430770949,0.0119568090774142,0.0142009304408905,0.0162654654409816,0.0182152150619929,0.0202102767929212,0.0220812442443466,0.0239466349700795,0.0261928954850099,0.0283370005552242,0.0305867086847715,0.0326291031380882,0.0347428902116402,0.0365693347548415,0.0384647294298218,0.0405840781542298,0.0425090882576586,0.0578169859581354,0.0718845493741889,0.0857886069709143,0.0988011357661163,0.1110091743119266,0.1266138668302122,0.0696875198879908,0.0874695436602934,0.104102361447842,0.1176350771869639,0.136032379947684,0.1535341517494997,0.1703265643344784,0.1714569854869732,0.1875783363018668,0.2033600053122613,0.1154777176641195,0.1350540148611126,0.1542430152394775,0.1660011213199538,0.1775576718598308,0.1943509559201608,0.2097351721203956,0.1860083585807178,0.2033614668218859,0.2189057788171579,0.1424125777988852,0.1585720637743759,0.1760732551531745,0.1836442082555049,0.1767749892749892,0.1858736568338923,0.1928146228727502,0.1512923607122343,0.1598376383763837,0.1674984024586921,0.111180983524085,0.1132078541100681,0.1213648897836274,0.1226493387247717,0.1110000740247242,0.1189756981661567,0.1263596771863196,0.1040969162995594,0.1110453555534513,0.1187984545710411,0.118511072016978,0.1269327912277459,0.1354309634916277,0.1442095053346265,0.1523801081464409,0.1586916081025217,0.1673691283366929,0.1733879821415501,0.1787557728878022,0.1862131725628483,0.1931583603656738,0.192170818505338,0.192317951453721,0.2003724394785847,0.0,2.2411205561763112,23.036627482110305,38.468600883933405,32.44221663354021,full_Colonoscopy_compliance,83 +100000,95662,61473,600.175618322845,1225,11.436097928121928,1089,10.71480838786561,366,3.40783174092116,77.28108161739658,79.66844513189045,63.29287913429015,65.05569658776606,77.21274244490357,79.6091874594118,63.261777047573176,65.03001290446748,0.0683391724930118,59.2576724786511,0.0311020867169773,25.68368329858117,2952.55733,2149.3507978261227,3086447.419037862,2246817.7519037053,3.28587,2.467559654012526,2751.0819343103844,1896.0325941459355,885.13598,448.8168917832271,920434.4253726664,465507.19230404496,833.74678,489.4240354816149,829063.0030733206,469172.2871015626,220.7231,136.72846880919477,209992.26443101757,122361.1163455692,333.46058,189.53245007981076,310397.96366373275,167545.40171357567,0.37828,0,100000,0,0.0,284733,2976.448328489891,0,0.0,327,2.696995672262758,0,0.0,79066,821.7055884259162,0,0,0,0,0,0,0,0,0,0.0,387,4.045493508394137,0,0.0,3,0.031360414793753,0.01225,0.0323834196891191,0.2987755102040816,0.00366,0.6061588330632091,0.3938411669367909,10.300610303755755,2.8449795562402653,0.2874196510560147,0.4674012855831038,0.1120293847566574,0.133149678604224,13.751226185446994,9.932235854499378,4.397300120890126,7529.324580651986,13.82312225653422,6.583081672606121,4.008156616380483,1.7373434297951482,1.4945405377524672,0.7346189164370982,0.8703339882121808,0.8306709265175719,0.5793103448275863,0.1065573770491803,0.7952218430034129,0.9348659003831418,0.8972972972972973,0.6438356164383562,0.1343283582089552,0.6640159045725647,0.8024193548387096,0.734375,0.5138888888888888,0.0727272727272727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022083776528389,0.0043187785764251,0.0066675462009194,0.0089097946785057,0.0108923377336614,0.0130544580668811,0.0150804494565328,0.0170396536937967,0.0194428826986966,0.0216378877982374,0.0237157797600738,0.0255351917449561,0.027571241991382,0.0294675239037256,0.0314683510336357,0.0335935480535594,0.0354475486083056,0.0375729142880866,0.0393209337161403,0.0415563569656667,0.0560094446069622,0.070404690853882,0.0833193383155596,0.0959324958441175,0.1080140108035111,0.1235427289846179,0.0678124436046326,0.0855816034168734,0.1024571758516712,0.1151223597882461,0.1344334789408402,0.1522247989770042,0.1684798588650397,0.168803722967424,0.1849440331394324,0.2014015945355554,0.1150506754869204,0.1350855263898742,0.1533892144836672,0.1653754469606674,0.1767416016484152,0.1928929256987686,0.2088489915797202,0.1858557759178877,0.2028202200791896,0.2185991527928283,0.1420284782037979,0.1571942491769102,0.1734660890929074,0.1809005495012321,0.1733514341783381,0.1823236275276965,0.1895312697765339,0.1510526998400415,0.1596948600207376,0.1678097850937357,0.1101532265676619,0.1115116127348643,0.1199145284650736,0.1203438395415472,0.1099480326651818,0.1177934548304918,0.1248468995868883,0.1023167304671077,0.1082339525823157,0.1153382726177352,0.1162790697674418,0.1256408672555438,0.1344958978407881,0.1426524130451623,0.1509710029263102,0.1593829007791135,0.1666462892774178,0.1719712525667351,0.1797935904399782,0.1859941454627336,0.1941918451158697,0.1996146435452793,0.2069502074688796,0.2144959529065489,0.0,2.483489739100976,23.330899108158256,36.30671387757831,30.46715734141802,full_Colonoscopy_compliance,84 +100000,95724,61891,601.5314863566085,1254,11.700305043667209,1129,11.177969997074923,384,3.583218419623083,77.3612597271838,79.72716913152153,63.34108899169471,65.08940612808478,77.28935448515269,79.66495091346428,63.30834129203645,65.06305594916101,0.0719052420311214,62.218218057253694,0.0327476996582589,26.35017892376368,2957.99433,2152.3939323926093,3090109.157578037,2248523.078208818,3.41875,2.5036312503857663,2990.295014834315,2034.297825399865,890.90314,452.8492590542254,926872.7696293512,470179.5450834047,839.27972,497.94101102007954,834960.459236973,478421.4352399397,224.10383,137.8312416223819,220803.0901341356,130711.77515516592,348.62676,195.6809197835391,324497.1167105428,170265.53103008203,0.38007,0,100000,0,0.0,285288,2980.2975220425387,0,0.0,341,2.925076260916802,0,0.0,79609,827.9219422506372,0,0,0,0,0,0,0,0,0,0.0,348,3.625005223350466,0,0.0,0,0.0,0.01254,0.0329939221722314,0.3062200956937799,0.00384,0.5857142857142857,0.4142857142857143,10.541701137196345,2.7866349763906544,0.2728077945084145,0.4782993799822852,0.0992028343666961,0.149689991142604,13.48032134441702,9.810930392746885,4.540804122167159,7634.617453022656,14.367855070952803,6.974569474744305,3.8807055418905136,2.1301074184011366,1.3824726359168482,0.7431355181576617,0.8685185185185185,0.775974025974026,0.6568047337278107,0.1785714285714285,0.8023064250411862,0.9128919860627178,0.8802395209580839,0.7362637362637363,0.1774193548387097,0.6743295019157088,0.8181818181818182,0.6524822695035462,0.5641025641025641,0.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026235552719279,0.004988239111039,0.0074688965111323,0.0098038219666568,0.0118071799044035,0.014011934583817,0.0164175147349744,0.0185531219686526,0.0209698692322635,0.0231470106470106,0.02536577363559,0.0275358448707941,0.029456838121098,0.0315857791880002,0.0334461621019174,0.0356478226706918,0.037851328680019,0.0399124126980832,0.0420735194717412,0.044179552369441,0.0582449252359869,0.0719003506568273,0.0847294051003388,0.0973616967581152,0.1089561835295605,0.1249127851660781,0.0686865044857791,0.086606297285506,0.1035506750982738,0.11704419978345,0.1355463198242818,0.1533061471730359,0.1694950263629939,0.1684500453586613,0.1840236556303038,0.20078557202921,0.1168058140960618,0.1369359857121996,0.1567325667025434,0.1682830870579623,0.1797661953608723,0.1964306557415318,0.211428976400274,0.1874125874125874,0.2040549537009017,0.2195343471163641,0.1425616230092465,0.1585263851573985,0.1749538882224716,0.1833357431091365,0.1742340000803847,0.1834117260993218,0.1913670071358612,0.151942346894829,0.1609638056453159,0.1684551313229572,0.1110222138554216,0.1120591581342434,0.119834501393228,0.120503406643838,0.110564110156944,0.1182631805213585,0.1261037698781975,0.1032910388580491,0.1098640905431642,0.1183433471986853,0.1187857703961396,0.126515713932195,0.1348345556588506,0.1420571650787478,0.1487416219095388,0.156158320037058,0.1641509433962264,0.1723124402968623,0.1791463194067643,0.1806282722513089,0.1845386533665835,0.1929654100272056,0.1959205582393988,0.2032988108937476,0.0,2.310147487609294,24.33750908241985,40.69137767497795,28.412807815267136,full_Colonoscopy_compliance,85 +100000,95656,61605,600.6941540520197,1227,11.635443673162165,1107,11.039558417663292,380,3.690306933177218,77.2430810454354,79.64837636631061,63.27207635196621,65.0503898240658,77.17489175296049,79.58595577451887,63.24113893243324,65.02345630331799,0.0681892924749121,62.4205917917493,0.0309374195329752,26.93352074781785,2948.83413,2146.281839096501,3082729.666722422,2243731.8496367205,3.48723,2.4547845060658107,3089.1841599063314,2009.8524986052216,884.82542,449.954896681028,921558.1772183658,467763.0983038944,834.95294,489.17540513532987,836505.7602241364,475058.11860346433,224.72328,136.7503980775553,219922.94262774943,127992.48775799957,349.97896,197.3418354220951,338673.5385130049,182540.9411414012,0.37795,0,100000,0,0.0,284506,2974.2410303587853,0,0.0,336,2.948063895625993,0,0.0,79024,822.6561846617044,0,0,0,0,0,0,0,0,0,0.0,388,4.04574726101865,0,0.0,1,0.0104541272894538,0.01227,0.0324646117211271,0.3096984515077424,0.0038,0.5857026807473599,0.4142973192526401,10.63179755327441,2.815938688577796,0.2908762420957543,0.4543812104787714,0.1111111111111111,0.1436314363143631,12.74175734278163,9.019197770477312,4.538274809675728,7559.806168920199,13.96407635525562,6.471765214201991,4.037921334436823,1.9318429304267697,1.5225468761900365,0.7308039747064138,0.8707753479125249,0.7888198757763976,0.6226415094339622,0.1463414634146341,0.7817258883248731,0.918918918918919,0.8670520231213873,0.7241379310344828,0.1527777777777778,0.6724806201550387,0.819672131147541,0.697986577181208,0.5,0.1372549019607843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022194746229933,0.0042095226502748,0.0063449844167182,0.0086060618376532,0.0109039496302625,0.0133306176485564,0.0156003058883507,0.0178381800359418,0.0202266034031413,0.0223544350461834,0.0241511214119432,0.0262793062016697,0.028065159711224,0.0301126003152396,0.0323792615835595,0.034423212143773,0.0365470875244735,0.0385381852905154,0.0406278278778044,0.0425449844665457,0.05791195126284,0.0718243618347316,0.0849868766404199,0.0976159149518446,0.1096471780578957,0.1248385525842173,0.0677715803452855,0.0852871871967928,0.1021358101311875,0.1167139236155862,0.1362169977234228,0.152902281719148,0.1700283162709649,0.1700592376843649,0.1856949234719176,0.2021450040482237,0.1156175957798739,0.1358868923562214,0.155169279709157,0.1659333104159505,0.1777831816392227,0.1940265331430309,0.2084895950406379,0.1851181847587785,0.2023442244625288,0.2186930166083485,0.1433145315607139,0.158085477041238,0.1739693056238515,0.1810681147195276,0.1721391832185112,0.1809929933773018,0.1887144782657531,0.1488124370231754,0.1575138734739178,0.1646883142608987,0.1089345888577457,0.1102787570178874,0.1190621503407588,0.1201346443440517,0.1098917450987686,0.1175489869172076,0.123976365709547,0.1010962779595084,0.1071123552856329,0.1149727113582535,0.1169990984899707,0.1253211974861459,0.133825915823637,0.1407282825517268,0.1503027584660237,0.1580290640137507,0.1617393446661739,0.1726624052326445,0.1773866568374493,0.1835982492513246,0.1881381381381381,0.1967213114754098,0.202127659574468,0.2049574546799852,0.0,1.935614069845148,24.191303003289327,36.45154980116506,31.06116917357419,full_Colonoscopy_compliance,86 +100000,95829,62177,605.1821473666636,1177,11.311815838629226,1059,10.5917832806353,364,3.495810245332833,77.44904619750217,79.77562683616348,63.38601454967061,65.10695538437707,77.3865586781164,79.7191927192746,63.358235894256254,65.08304853390369,0.062487519385769,56.43411688888023,0.0277786554143588,23.90685047338081,2952.66383,2149.810515705889,3081179.841175427,2243381.9780086293,3.06205,2.1296167039642016,2721.243047511713,1748.4159275304448,901.14437,458.10130802849966,937069.1961723488,475510.8099597634,796.27197,459.0330194418968,802716.975028436,450815.5782222115,203.87619,121.59414944581344,199877.2605369982,114040.16118909212,331.86716,179.98190463789453,318940.1955566686,165214.5151512225,0.38123,0,100000,0,0.0,284903,2973.0353024658507,0,0.0,299,2.6401193793110647,0,0.0,80430,836.1665049202226,0,0,0,0,0,0,0,0,0,0.0,386,4.007137714053157,0,0.0,1,0.01043525446368,0.01177,0.0308737507541379,0.3092608326253186,0.00364,0.5848101265822785,0.4151898734177215,10.574490569559616,2.7829880008631043,0.2823418319169027,0.4863078375826251,0.1019830028328611,0.1293673276676109,12.918086186029235,9.348843378312353,4.311745083431179,7609.159061123409,13.390582664591758,6.657640155355271,3.711584898151535,1.7008206467755795,1.3205369643093745,0.724268177525968,0.8660194174757282,0.7357859531772575,0.635036496350365,0.1296296296296296,0.7866419294990723,0.927007299270073,0.8382352941176471,0.6666666666666666,0.1111111111111111,0.6596153846153846,0.7966804979253111,0.6503067484662577,0.5967741935483871,0.1481481481481481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024406793392949,0.0047337637983639,0.0068592533966495,0.0089495230645767,0.0113588984817515,0.0135725413132681,0.015833528746062,0.0179834454321844,0.0203270311701584,0.0224493763493671,0.0243787467336168,0.026539408866995,0.0285775963979892,0.0307750916354351,0.0328389611996947,0.034950874546713,0.0368250551133835,0.038863139121328,0.0408930816303207,0.0428998240701221,0.0572981317867462,0.0714061683220073,0.0854013833577866,0.0987771053958648,0.1108898372056266,0.1263144545079844,0.0680680999024721,0.0863420288622079,0.1034353995519044,0.117163907391146,0.1359613750981214,0.1543754658485735,0.1706522801037743,0.1712633646083351,0.1872036874451273,0.2029832605933373,0.116704143197453,0.1367338239253342,0.1559848879035359,0.1672012510415834,0.1769555391569043,0.1941926312600498,0.2090245051837888,0.184688070439171,0.201201891104313,0.216536688247989,0.1403991141854736,0.1577024224953219,0.1747765129590327,0.1823647294589178,0.1732143572754839,0.1819261321759069,0.1895793485696734,0.1504709823345835,0.1587833370068327,0.1659278982163658,0.1107850330154072,0.1126318514204361,0.1205015716134671,0.1213360480219047,0.1104177021777949,0.1191865537095554,0.1270500226067656,0.1035292053256125,0.1115271399976451,0.1202206630058979,0.1222697715778358,0.1313768093766257,0.1404709748083242,0.1476129927176049,0.1559263521288837,0.1634486319050077,0.1718110139966994,0.1777303503090962,0.1851750547045952,0.1909163528471984,0.1942806603773585,0.2022339800117578,0.2139645596403068,0.2183278568820737,0.0,1.7829013842952894,22.01577747385597,40.010045005182704,28.284943034754583,full_Colonoscopy_compliance,87 +100000,95817,61840,602.0643518373566,1175,11.219303463894716,1041,10.373941993591952,344,3.2562071448699084,77.3497797498425,79.68394849266595,63.33168066437421,65.06026683920268,77.28745910769871,79.62974149276607,63.303708072814736,65.037710482221,0.0623206421437885,54.20699989987554,0.0279725915594752,22.556356981681347,2953.23104,2150.0605467092128,3082157.696442176,2243923.882723538,2.92669,2.1016573330972674,2571.6522120291806,1710.6018066702852,888.81462,450.399620353967,924997.516098396,468027.83574382536,798.66971,457.7047505593084,800085.3397622551,444235.1676208908,192.2588,113.37910774334992,191159.70026195768,108836.42541861048,307.6151,170.18774301836407,290189.25660373416,150172.42980262835,0.38045,0,100000,0,0.0,284881,2973.1780373002707,0,0.0,287,2.494338165461244,0,0.0,79459,826.6591523424862,0,0,0,0,0,0,0,0,0,0.0,338,3.5275577402757343,0,0.0,3,0.0313096840852875,0.01175,0.030884478906558,0.2927659574468085,0.00344,0.6039016115351993,0.3960983884648006,10.656702757239904,2.7410360725314176,0.2949087415946205,0.4764649375600384,0.0787704130643612,0.1498559077809798,12.693371297274735,9.078368790738471,4.186983802945997,7586.000087629084,13.121074806992148,6.343536411786789,3.7695321689842975,1.976372357709336,1.0316338685117228,0.7415946205571565,0.8568548387096774,0.742671009771987,0.7115384615384616,0.0975609756097561,0.797752808988764,0.9019607843137256,0.8493150684931506,0.7931034482758621,0.0652173913043478,0.6824457593688363,0.8091286307053942,0.6459627329192547,0.6086956521739131,0.1388888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023704844297668,0.0046741764425562,0.0066271540787951,0.0085848682806896,0.0109042823720882,0.012779390051423,0.0152324632952691,0.0174147382174902,0.0194711612171264,0.02171977195263,0.0239054443316829,0.0261001704417109,0.028122236617517,0.0301710378631079,0.0322454200363096,0.0342632775366811,0.0365919301078608,0.0386582165565455,0.0404276541362758,0.042385498766229,0.0564301586804794,0.0703321064078969,0.0839237799765218,0.0960853344543113,0.1080730676392153,0.1231906277424743,0.0672267124885975,0.0848108809944445,0.101681156943584,0.1158515658515658,0.134659929540288,0.1521830871611751,0.1684900817817992,0.1687939852253354,0.1841075041787631,0.2009170349204239,0.1176299997769201,0.1380046758385037,0.1568098326454714,0.1678888062689469,0.1789573437806978,0.1961015603101934,0.2121727624988186,0.1886880424646725,0.2054376272172143,0.2209703775601725,0.1423832801276935,0.1582491155548229,0.175455565442798,0.181955598785473,0.1738611524587306,0.1823165800907334,0.1900349086626757,0.1510197032282206,0.160380006796389,0.1678050413009416,0.1113013698630137,0.1118323653342443,0.1203789865493613,0.121612783483287,0.1105761217800329,0.1184634303449083,0.1256813676907829,0.1024637043554773,0.1098462483172338,0.1179584217659242,0.1199353057639218,0.1274702344421259,0.1356718760663345,0.1438785316163751,0.1525311423270607,0.1597779148673658,0.1661068702290076,0.1723193127962085,0.1766630316248637,0.1834528280414248,0.1924266980993074,0.2033275295028052,0.2093994778067885,0.2173752310536044,0.0,1.9403381901267391,21.669666296657425,36.10536064705465,30.72651357048553,full_Colonoscopy_compliance,88 +100000,95798,62142,604.1775402409236,1253,11.931355560658886,1124,11.138019582872294,395,3.6848368441929895,77.41775944651599,79.74564231400707,63.37436231324406,65.09512314501488,77.3476018274609,79.68552879995461,63.34333638100061,65.07010513588402,0.070157619055081,60.11351405246046,0.0310259322434589,25.01800913086072,2956.38261,2151.8628042497667,3086044.0927785547,2246235.9725148403,3.29222,2.3607054968134515,2824.098624188396,1851.7522091326864,894.37679,454.6210377996762,930159.7214973172,471792.4164641448,843.62186,505.3731086245058,835298.3569594355,482365.0363694728,235.63629,150.78777499366365,225245.36002839307,136844.9282993538,360.01386,198.78427031625387,333887.4924319923,171445.14736516174,0.38114,0,100000,0,0.0,285057,2975.5944800517755,0,0.0,329,2.797553184826405,0,0.0,80068,832.3138270110023,0,0,0,0,0,0,0,0,0,0.0,344,3.590889162612998,0,0.0,0,0.0,0.01253,0.032875059033426,0.315243415802075,0.00395,0.5682715074980268,0.4317284925019731,10.651358329899232,2.7560442471803164,0.2820284697508897,0.4759786476868327,0.1032028469750889,0.1387900355871886,13.384641046528282,9.841036692613264,4.685426301155276,7641.58435903894,14.248389502450578,6.828868664784102,4.025551442815526,1.953663695608912,1.4403056992420362,0.751779359430605,0.8616822429906542,0.8138801261829653,0.6730769230769231,0.1810344827586207,0.8297872340425532,0.9270833333333334,0.8928571428571429,0.7802197802197802,0.296875,0.6588693957115009,0.7854251012145749,0.7248322147651006,0.5230769230769231,0.0384615384615384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023390273291548,0.0047236272591811,0.0069304218120567,0.0090390201295931,0.0113174164158464,0.0134268496274278,0.0156355111609418,0.0179533763370621,0.0200842208548825,0.0221578581078314,0.0242927429274292,0.0265146071567882,0.0288334035751364,0.0312242628891451,0.0334488162995958,0.0354881688889806,0.0376897682938187,0.0396947989342843,0.0416766218251701,0.0436611214058173,0.0585203501413711,0.0722992326831002,0.0854079097703378,0.0988855159084463,0.1110256869332603,0.1267377984365096,0.0702505163921402,0.0875061129893049,0.1048217581972023,0.1183194249536685,0.1374430009463993,0.1547959856104227,0.1713534993811209,0.1711646796803353,0.1869638286888037,0.2028910172753212,0.1168289910628719,0.136743789220804,0.1552770418676267,0.1664990514502525,0.1782086795937211,0.1954399673450347,0.2103034663332822,0.1855763716306633,0.2017002107098743,0.2172706055767105,0.1422660368657851,0.1576873867825338,0.1751494691268941,0.1818539605908745,0.1729055735423969,0.1821527264767846,0.1897944045569691,0.151842448757118,0.1606450566783119,0.1683195383096666,0.1109282422646478,0.1124768616243951,0.121022114347357,0.1224996478377236,0.1119504987070557,0.1205055525355284,0.1278981258614659,0.1045864727527597,0.1107388883646315,0.1192597319719208,0.1216046803175929,0.1301905901850658,0.1381833099723086,0.1466944540928563,0.1530874026893135,0.1619936089062983,0.169321858023561,0.1785898095728255,0.1900984682713347,0.194569094465539,0.2042127278159546,0.2107219722167873,0.2155014401675831,0.216734242535938,0.0,2.1449524932142525,24.678454962105864,38.438398365343815,29.149536431705496,full_Colonoscopy_compliance,89 +100000,95722,61985,605.1169010258875,1206,11.408035770251354,1056,10.467813041933937,335,3.144522680261591,77.3893283971574,79.75133631952707,63.35181630130408,65.09400717329332,77.3250271455979,79.6962327570538,63.3221982456492,65.07047675796208,0.0643012515594989,55.10356247326342,0.029618055654879,23.53041533123701,2953.49738,2149.3428546689947,3085494.8496688325,2245401.1143404804,3.20574,2.3524202510992405,2771.306491715593,1879.8502445615848,896.02524,454.537363761853,932827.072146424,472300.5428442549,779.9055,461.0373795549671,776465.8072334469,443346.8581464734,201.688,124.54585245497802,196977.1630346211,116397.81506560052,303.99224,175.84085514946446,284570.21374396695,153312.96859420626,0.38034,0,100000,0,0.0,284891,2976.2332588119766,0,0.0,318,2.705752073713462,0,0.0,80051,833.0373372892335,0,0,0,0,0,0,0,0,0,0.0,359,3.75044399406615,0,0.0,2,0.0208938384070537,0.01206,0.0317084713677236,0.2777777777777778,0.00335,0.6099173553719008,0.3900826446280991,10.996866228024158,2.6727117067442165,0.2916666666666667,0.4782196969696969,0.0871212121212121,0.1429924242424242,12.291060616545323,8.868813745070076,4.00503684247532,7566.769209738687,13.405066329736306,6.575558748686783,3.7968494022373296,1.872128537756492,1.1605296410557018,0.7310606060606061,0.8435643564356435,0.7792207792207793,0.609271523178808,0.1521739130434782,0.7975352112676056,0.924812030075188,0.8888888888888888,0.6585365853658537,0.1551724137931034,0.6536885245901639,0.7531380753138075,0.6575342465753424,0.5507246376811594,0.1470588235294117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024813393155554,0.0046216060080878,0.0067151537283304,0.0085903150797599,0.0110406246187629,0.0132626264682531,0.0155205445948149,0.0175404583579926,0.0194141028130013,0.0214163656642347,0.0235679885234142,0.0258956785816883,0.0279179211064415,0.0301286670097786,0.0320730977868531,0.0341958952524647,0.0362049508743231,0.0377158861054924,0.0399555125926387,0.0417521745924266,0.0565440761857026,0.0707065422125486,0.0843201627875266,0.0969960150146676,0.1092195142519817,0.1248109645829587,0.0680067890102896,0.0860367314346553,0.1026038272092998,0.1159760648565178,0.1350571308571244,0.1524382328761196,0.168960344377772,0.1689826709670365,0.1852752233026796,0.2021617072171342,0.1158296419445901,0.1352843298180918,0.1546356677062659,0.1653616319802184,0.1769008550959094,0.1933739723467862,0.2079205582647506,0.1840740120962922,0.2015603421122768,0.2171194851134912,0.1415595757953836,0.1578427023258761,0.1748732568789587,0.1835684080582039,0.1751923462902254,0.1841597965628973,0.1914542812430136,0.1520076893281879,0.1609525492621719,0.1682859178198463,0.110892111314468,0.1125656146717646,0.1212677765046842,0.1221633421946796,0.112474399896677,0.1202792579051767,0.1279108106994188,0.1045071164997364,0.1106626065198404,0.1182075255394492,0.1203884035390351,0.1286086024797183,0.1352070400436592,0.1425712856428214,0.1500773138944113,0.1571701129273449,0.1637962623671674,0.1709677419354838,0.1795755487030654,0.1839826839826839,0.190099589923843,0.2022819570682653,0.2129828326180257,0.2179917879805897,0.0,2.145644949358376,22.89675310854511,36.91880422013814,27.18115929900305,full_Colonoscopy_compliance,90 +100000,95667,62090,604.7644433294657,1195,11.247347570217526,1057,10.400660624875872,358,3.3240302298598263,77.35982293729873,79.73619452128438,63.33991942654043,65.09033472377341,77.29423514579486,79.68201479390244,63.309987849075256,65.06724571385831,0.0655877915038729,54.17972738193555,0.0299315774651773,23.08900991509688,2949.57853,2146.77698746954,3083162.8565754127,2244000.4050190146,3.32651,2.407162235024145,2802.0947662203266,1841.4695093851285,893.81606,454.4666182943123,930667.8373942948,472133.8862782253,792.61272,465.78626230987936,781840.3420197142,440381.8675077453,215.38613,133.23180635590933,206688.59690384357,121088.09893829322,326.61532,182.18734479808165,301989.9442859084,156358.49483574132,0.38007,0,100000,0,0.0,284754,2976.501824035456,0,0.0,327,2.7177605652941974,0,0.0,79737,829.8681886125833,0,0,0,0,0,0,0,0,0,0.0,341,3.5644475106358517,0,0.0,5,0.0522646262556576,0.01195,0.0314415765516878,0.299581589958159,0.00358,0.5954962468723937,0.4045037531276063,10.485395725680068,2.8577883775088,0.2904446546830653,0.45600756859035,0.1031220435193945,0.1504257332071901,13.067917464299969,9.338496836297947,4.261204733538424,7634.861604591274,13.249578901317074,6.109525244549409,3.8411325626705857,2.001804702803593,1.297116391293483,0.750236518448439,0.8734439834024896,0.8078175895765473,0.6981132075471698,0.1192660550458715,0.8118081180811808,0.9234042553191488,0.8848484848484849,0.7976190476190477,0.1724137931034483,0.6854368932038835,0.8259109311740891,0.7183098591549296,0.5866666666666667,0.0588235294117647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022886539474217,0.0049056871509512,0.0072946786384619,0.0096687046779468,0.0120587278347161,0.0142297317929665,0.0163237856509644,0.0186813859527404,0.0208584445034627,0.0228844422620509,0.0250681254738049,0.0271761990253911,0.0296629767814745,0.0316409427415286,0.0338745280878014,0.0358128430126197,0.0374557425927076,0.0393615035160868,0.041284594431622,0.0433246482542991,0.0581198545697689,0.072207155796153,0.0853931169117415,0.0982271555578936,0.1101559945575935,0.1254457153135613,0.0687803169413987,0.0864373741784987,0.1033557477469772,0.1173162171155022,0.1359174129031563,0.1537287089473855,0.169803930102496,0.170653506084216,0.1864259371387681,0.2025846317398093,0.1166075373184282,0.1369030228115518,0.1556308654848801,0.1655572330496843,0.1773405275502305,0.1938785046728972,0.2090432193577353,0.1854561976158877,0.2029060967488042,0.2195298683434859,0.1436941372991436,0.1594145970603142,0.1764599739647105,0.1842520098786191,0.1751027456860198,0.1835508852584626,0.1913573329597983,0.1528782139577594,0.161298877331526,0.1682329542866686,0.1117388575015693,0.1122193296452977,0.1208621886587988,0.1209620414222096,0.1108005035545023,0.1188873934499775,0.1265545593521464,0.1030026856866112,0.1082262332262332,0.1168642076223561,0.1173980842058364,0.1258137820906522,0.1341517628150326,0.1425202026060395,0.1509040950186137,0.157426101361495,0.165138743616563,0.1724777448071216,0.178848435076193,0.1864113507901718,0.1964787690486758,0.2038476486591527,0.2090015519917227,0.2160380812889051,0.0,2.361559210082251,21.345591846276815,37.17238941751088,30.489910606602216,full_Colonoscopy_compliance,91 +100000,95852,62513,608.6988273588448,1247,11.663815048199307,1119,11.069148270249968,336,3.1611233985728,77.34109898624328,79.63288280845889,63.34986309044478,65.04452701314507,77.28395393136323,79.58312309486845,63.32414042961279,65.02345388138205,0.0571450548800527,49.75971359043285,0.0257226608319882,21.073131763017727,2946.81801,2146.878475893769,3074341.70387681,2239784.7472079555,3.42122,2.4428737146142767,2967.282894462296,1946.5986256043443,905.36997,460.39444241625466,940351.9697032924,477137.89132839657,847.46128,480.8668805087292,847400.4402620706,464941.650157252,214.20424,126.00601495917218,210513.64603764136,118498.63848346652,308.8674,167.0021561437569,290493.0309226725,147990.27322359945,0.38297,0,100000,0,0.0,284149,2964.455619079414,0,0.0,333,2.848140883862621,0,0.0,80701,837.7081333722822,0,0,0,0,0,0,0,0,0,0.0,380,3.9644451863289234,0,0.0,1,0.0104327504903392,0.01247,0.032561297229548,0.2694466720128308,0.00336,0.5810055865921788,0.4189944134078212,10.26722446851654,2.7327329381676795,0.2806076854334227,0.4897229669347632,0.1036639857015192,0.1260053619302949,13.336778280891386,9.608846071128822,3.8974222352884658,7693.898791013425,13.963077454691287,6.9169808709373095,3.9607023432743462,1.6852818891951131,1.4001123512845168,0.7256478999106345,0.8375912408759124,0.8152866242038217,0.5957446808510638,0.1120689655172413,0.8269581056466302,0.9384615384615383,0.8988095238095238,0.78125,0.1578947368421052,0.6280701754385964,0.7465277777777778,0.7191780821917808,0.4415584415584415,0.0677966101694915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022581135132398,0.0047420737453263,0.0068364624856728,0.0090360834162487,0.0113125851238997,0.0136774403647317,0.0158215919394439,0.0180158122927824,0.020121340877985,0.022433176140839,0.0245423909369334,0.0265632852322492,0.0288510918017296,0.0306911949297281,0.0326742161176313,0.0347297478609984,0.0368719820499829,0.0389349357646083,0.0407059434207111,0.0427911525416675,0.0582064650677789,0.0726856593441046,0.0862688411945238,0.0992270206687951,0.1117593167865379,0.1275863161563566,0.0696548509439159,0.087168691991197,0.1037551621474533,0.1177888994866628,0.1369403105529909,0.154909169550173,0.1722042888041127,0.1712253171749844,0.1864373226579856,0.2026465865677426,0.1184132754909723,0.1391246669439791,0.1581871577109294,0.169233409610984,0.1805964802810228,0.1977833317761375,0.2128531607294718,0.1886338902376311,0.2054852627496606,0.221146869658251,0.1441764111267799,0.1601694270423821,0.1771593634745828,0.1847391670172486,0.1758618840812825,0.1851213203596502,0.1936577778400571,0.1547223540579022,0.1636221217226803,0.1709165043816942,0.113124518694306,0.1145911416745429,0.1232834858180707,0.1249379036264282,0.1124813988095238,0.121088701781868,0.1285859486817814,0.1038857522417801,0.1095639341140626,0.1174713531608085,0.1194264388135926,0.1280631188118811,0.135523331729778,0.1431951285730908,0.1512351164030567,0.1591931730023273,0.1646431199411331,0.1738232256160543,0.178872207982424,0.1853984339014279,0.1928730512249443,0.2008580343213728,0.20596778452601,0.1992592592592592,0.0,2.319014372098213,21.798087805634108,39.83420300961892,35.12464056572598,full_Colonoscopy_compliance,92 +100000,95642,62035,605.4871290855482,1193,11.323477133476924,1049,10.38246795340959,361,3.4085443633550114,77.31769350596971,79.74071359771524,63.289715480586615,65.08165757069294,77.25314203713987,79.686023793882,63.26061022195412,65.05902891524293,0.0645514688298476,54.68980383324151,0.029105258632498,22.628655450006363,2946.50519,2144.505778458679,3080764.925451162,2242221.8047078466,3.32812,2.326234047056761,2908.8998557119257,1861.3622122673733,894.12377,453.27384411828905,931491.6041069824,471329.0686521316,789.48646,454.543084675835,785459.6097948599,435548.30252434185,212.18175,128.08544991728277,204634.4806674892,116811.912742695,329.84314,179.81390195241286,309895.52706969745,156395.6014720199,0.38069,0,100000,0,0.0,284308,2972.627088517597,0,0.0,324,2.7916605675330923,0,0.0,79827,831.2456870412581,0,0,0,0,0,0,0,0,0,0.0,364,3.805859350494553,0,0.0,2,0.0209113151126074,0.01193,0.0313378339331214,0.3025984911986588,0.00361,0.5953565505804311,0.4046434494195688,10.678578951664289,2.761653568291428,0.3050524308865586,0.4718779790276454,0.103908484270734,0.1191611058150619,13.122120112670896,9.583108843490384,4.233505470246305,7583.909086022233,13.17102089895296,6.291254418116872,4.015581099512476,1.5070503784675922,1.357135002856017,0.7435653002859867,0.8666666666666667,0.8125,0.6,0.146788990825688,0.7992565055762082,0.934959349593496,0.8841463414634146,0.6875,0.171875,0.684931506849315,0.7991967871485943,0.7371794871794872,0.5081967213114754,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024211848610098,0.0047864357279032,0.0068832487309644,0.0092887122836614,0.0113138054880096,0.0134983700081499,0.0155162915961071,0.0177770512571644,0.0197619559321686,0.0219051426345623,0.0240519843143696,0.0261991671379363,0.0281848232398644,0.0304208788941613,0.0323187237823652,0.0340763276625688,0.0361749336429993,0.03809039066801,0.0402339522104737,0.0422263474053061,0.0565489564935675,0.0706673792084499,0.0836125670948834,0.0963345270697282,0.108587058686859,0.1236959445862503,0.0666744598773632,0.0847546156142071,0.1019598194227518,0.1158084681317264,0.1351879017991974,0.1529834978491944,0.1701935329289144,0.170363962859145,0.1865717685425939,0.2022020912104848,0.116100350736099,0.1359093262499155,0.1542162113097939,0.1657125191783645,0.1773816684402905,0.1947119880306714,0.2101285584189798,0.1846933154503868,0.2018061321098244,0.2179592840888123,0.1417229455603131,0.1571475692682431,0.1738007618309768,0.1810404959003987,0.1726526010629731,0.1824495554855413,0.1895698728819498,0.1513594212052482,0.1601774999631437,0.1682906437637759,0.1115491541929099,0.112470550004062,0.1208663211735512,0.1232561003500994,0.1137301879837817,0.1215696929705391,0.1303759860670013,0.1063704157281256,0.112212771956205,0.1221766698072368,0.1239198688561029,0.1317606795819837,0.1409224261445043,0.1497569631972841,0.1565009093731978,0.1635612903225806,0.1714355588163365,0.1787738279237506,0.1845762557907166,0.1957962074480237,0.2024775106916384,0.2136801541425819,0.2149042246129624,0.2139212827988338,0.0,2.284767911509873,21.51916569781241,35.159919281058464,31.79640075631122,full_Colonoscopy_compliance,93 +100000,95720,61655,600.2820727120769,1163,11.073965733389052,1017,10.133723359799417,316,2.998328458002508,77.34880342590687,79.70665493510337,63.338894218876014,65.07713156031299,77.29440053734204,79.65924498741414,63.314194446967335,65.05707312005828,0.0544028885648231,47.40994768923201,0.0246997719086792,20.05844025471504,2952.2831,2148.6266920847315,3084290.743836189,2244699.8454708857,3.11985,2.22510926946122,2764.9916422900124,1830.2436998132257,888.17539,451.1450859790432,924808.7860426244,469007.6784306315,779.0064,455.40900805684953,779499.6865858755,441433.0422658274,199.69756,121.67878180062452,196977.0162975345,115469.72607670772,291.10314,157.71438266829932,275611.36648558296,139968.18017832056,0.37812,0,100000,0,0.0,284937,2976.776013372336,0,0.0,306,2.695361470956958,0,0.0,79269,825.0522356874217,0,0,0,0,0,0,0,0,0,0.0,365,3.813205181780192,0,0.0,2,0.0208942749686585,0.01163,0.0307574315032264,0.2717110920034394,0.00316,0.5899403239556692,0.4100596760443308,10.641916460389757,2.7808904725908308,0.2831858407079646,0.4552605703048181,0.0963618485742379,0.1651917404129793,14.12531488205664,10.425665451767284,3.673963275235149,7573.283077697167,12.928640108007723,6.007463567703659,3.648240671918829,2.07926063905096,1.1936752293342794,0.744346116027532,0.8725701943844493,0.8333333333333334,0.5952380952380952,0.1326530612244898,0.8114602587800369,0.9456066945606696,0.9177215189873418,0.7195121951219512,0.1451612903225806,0.6680672268907563,0.7946428571428571,0.7307692307692307,0.4767441860465116,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024809372879811,0.004713538498966,0.0070721931916188,0.0092747793049502,0.0114588417114039,0.0136916577594543,0.0159111989970134,0.0178626110033683,0.0199274436666496,0.0219845453149787,0.0242912490006764,0.0262536691503992,0.0283143988073818,0.0307413546374558,0.033060664514199,0.0350688668230334,0.037108363877327,0.03911518748314,0.0410164169638494,0.0430116489882676,0.0580857396480601,0.0713254071252145,0.0844148350207207,0.0972099482388587,0.1092019492437187,0.1255354932884841,0.0686120543293718,0.0862584773281378,0.1030010363137146,0.1157200321802091,0.1346402412753123,0.1523648794841836,0.1684572223913705,0.1688679451575517,0.184999835017983,0.2013090570802046,0.116995623827811,0.1364802231921882,0.1536821089886111,0.1644443935769631,0.1759550457866987,0.1929326558028152,0.2077306674229533,0.183865296994774,0.2007657450262921,0.2165216963978574,0.1410411395954585,0.1566866393889107,0.1737579059911633,0.1814745793852857,0.1732992217742475,0.1821963166680349,0.1893840747119194,0.1509970282957922,0.1606750357727654,0.168281349652261,0.112475688562645,0.1132289907780231,0.1219433936773844,0.1227912390223256,0.1108464875842333,0.1190189060919629,0.1264941060093974,0.1023824713465472,0.1086530052707461,0.1173868575811812,0.1190782482241736,0.1281917023439184,0.1371211082156082,0.1455348152737975,0.1552850224374639,0.1610724306349371,0.1704636661110082,0.1763741993147624,0.1830598588321569,0.18878612716763,0.1955642139967031,0.2054086299463114,0.208008599838753,0.2087994034302759,0.0,1.849200794102541,22.045112940155168,36.73661789800693,25.845369868429344,full_Colonoscopy_compliance,94 +100000,95645,62143,606.1895551257254,1255,12.054995033718438,1114,11.145381358147317,372,3.617544043075958,77.26744378178137,79.68192801494409,63.28338998351626,65.06902298260856,77.20358488040473,79.62323445360958,63.25528430003772,65.04419197138361,0.0638589013766335,58.69356133450765,0.0281056834785431,24.83101122494702,2945.48477,2145.6677303175466,3079591.8762088977,2243356.79891008,3.09729,2.1782758485657507,2751.1631554184746,1790.3035689955043,900.20765,457.367113538777,937403.8789272832,475397.16670030064,848.24824,489.9284003086692,853621.767996236,479034.6423845152,216.16316,130.1622476023033,214303.98870824403,124397.75908044667,338.4458,180.44701299503032,328157.3736212034,168447.6822341685,0.38239,0,100000,0,0.0,283944,2968.717653824037,0,0.0,304,2.655653719483507,0,0.0,80597,838.8415494798473,0,0,0,0,0,0,0,0,0,0.0,353,3.6907313503058186,0,0.0,1,0.0104553296042657,0.01255,0.0328198959177802,0.2964143426294821,0.00372,0.5884676145339652,0.4115323854660347,10.394670460492105,2.734370231826453,0.2746858168761221,0.4757630161579892,0.0960502692998204,0.1535008976660682,13.600587038519626,9.97094951208305,4.31809459884732,7661.276653766053,14.101433840179062,6.877203221307724,3.816916056858768,2.1226193948010077,1.2846951672115632,0.755834829443447,0.8962264150943396,0.7745098039215687,0.631578947368421,0.205607476635514,0.8263772954924875,0.9551724137931036,0.8666666666666667,0.6666666666666666,0.2777777777777778,0.6737864077669903,0.825,0.6666666666666666,0.5925925925925926,0.1320754716981132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595091900216,0.0044818495234232,0.0068226120857699,0.0091049508170067,0.0111394825990091,0.0136574734183403,0.0158451781307991,0.017805184330621,0.0200717798750498,0.0222322352049646,0.024398999015425,0.026513400515681,0.0287016367134054,0.0307882534775888,0.0326895882577595,0.0347775744606064,0.0366944922012552,0.0386623351012486,0.0406286730671215,0.0425775915095028,0.0571132964770553,0.072881320430648,0.0864853512548566,0.0992913775494087,0.1117890469957353,0.1276616019905765,0.0694137638062871,0.0871145116259244,0.1038620733911592,0.1176938028199263,0.1366165591908038,0.1546893108191536,0.1707399347116431,0.1712197630274717,0.1881266577884414,0.2034178000265804,0.1190383220840073,0.1394075040489472,0.1587958970634956,0.1692950810284601,0.1804763502180476,0.1967914188565486,0.2121728027239838,0.1880905900810807,0.2045752427184466,0.2207939322301024,0.1414011465970548,0.1568522959410249,0.1750813491038686,0.1824595580008687,0.1735872367855608,0.1825620922199682,0.1904227564731955,0.1529819615063724,0.1622149259029195,0.1694272752184636,0.1118332022029897,0.1130245125166834,0.1212028904570916,0.1221774621011343,0.1107074676106982,0.1191608446349243,0.1265301050102524,0.102931452501653,0.1086116576196458,0.1175609380217296,0.119697606047879,0.1288054039048764,0.1372008951626786,0.1437870283754287,0.1512963129093029,0.1595516211827562,0.166770032250062,0.1739032957178088,0.18192671503352,0.1866945315221177,0.1946730510249887,0.2062549485352335,0.2161572052401746,0.2230326295585412,0.0,1.82185218852196,24.684845498586817,36.59639814189673,31.162955486636147,full_Colonoscopy_compliance,95 +100000,95837,62344,606.6446153364567,1199,11.394346651084652,1061,10.45525214687438,345,3.161618164174588,77.40182060844235,79.71515136679555,63.36325590393732,65.0752443398876,77.336750718488,79.66132057281077,63.333367083842944,65.05255718074928,0.0650698899543442,53.83079398478685,0.0298888200943778,22.68715913832864,2955.23259,2151.0469740593708,3083602.98214677,2244484.879596994,3.1447,2.2790949136855563,2679.2157517451506,1776.0102191069798,896.70108,455.4052996022252,931982.4389327712,472361.8831157023,796.79132,462.4717393834844,788928.62881768,440086.7612545101,206.74832,123.1474793925386,201530.12928201008,114297.80710220318,312.27238,177.25450448227912,285239.6882206246,149617.21683383113,0.38184,0,100000,0,0.0,284880,2972.54713732692,0,0.0,306,2.5668583115080814,0,0.0,80084,832.0168619635423,0,0,0,0,0,0,0,0,0,0.0,365,3.8085499337416655,0,0.0,3,0.0313031501403424,0.01199,0.0314005866331447,0.2877397831526272,0.00345,0.6091286307053941,0.3908713692946058,10.241146818932297,2.7556871568234347,0.294062205466541,0.4759660697455231,0.0914231856738925,0.1385485391140433,13.217606237686296,9.681931394269965,4.139369322239167,7602.659020814127,13.3849732220217,6.49375693751755,3.830912354006172,1.8600868641442811,1.2002170663536995,0.7285579641847314,0.8633663366336634,0.7692307692307693,0.5850340136054422,0.1134020618556701,0.7928436911487758,0.9380165289256198,0.8846153846153846,0.6493506493506493,0.1071428571428571,0.6641509433962264,0.7946768060836502,0.6538461538461539,0.5142857142857142,0.1219512195121951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020757812025354,0.0044492191063049,0.0067869171772917,0.0088668149547518,0.0111629609296367,0.0134370291949997,0.0153595270855628,0.0175852214737701,0.0196968303128801,0.0222411004892428,0.0244992516964962,0.0270048343888244,0.0290483728388462,0.0308378208626352,0.0329744002310374,0.0350385930832102,0.0371819555721176,0.0390306625050551,0.0409651318591148,0.0430235099441131,0.0576118811468143,0.0718512168604165,0.0850894382210858,0.0978118138938787,0.110077731667755,0.1259453293337276,0.0680481835807138,0.0855754818271694,0.1024472501787677,0.1164454727551228,0.1360258133906964,0.1533723769800964,0.1701988985085327,0.1696635350666375,0.1859427378139253,0.202016401243927,0.1165025811415,0.136373853623449,0.1553321014385961,0.1661062695853061,0.1771271433193141,0.1937830610600558,0.2100936610485785,0.1860712705001375,0.2026617536544568,0.2186205455372398,0.1415968955492058,0.1576305348156223,0.1763021807255329,0.1838707558941354,0.17440334288699,0.1827895204870374,0.1903809297315445,0.1513752920435162,0.1606325181466158,0.1687509485506146,0.1110466938263867,0.1110912778904665,0.1198400108009585,0.1210600457827082,0.1100588875966845,0.1177889290854631,0.1254065626415249,0.1034664442053961,0.110692593813268,0.1180592717172489,0.1194116992882562,0.1269719946190534,0.1350162033088862,0.1424162937818238,0.1504738287131343,0.1599896747547754,0.1684460984686718,0.1763581562890538,0.1849450747343778,0.1949806949806949,0.2008220786846741,0.2051381860646166,0.2132140036851803,0.2139978013924514,0.0,2.442743644086592,20.843665769729338,41.38164997014318,28.343885573948207,full_Colonoscopy_compliance,96 +100000,95714,61831,603.0883674279625,1176,11.22092901769856,1041,10.447792381469796,342,3.3015023925444558,77.32145341825886,79.70755112493455,63.3143933609397,65.07973598488002,77.25805192201723,79.65127363450509,63.28701211734797,65.05682523410592,0.0634014962416245,56.277490429465615,0.0273812435917264,22.910750774101984,2953.94554,2149.0674799492645,3086211.4424222163,2245291.556041189,3.01456,2.1155070162329688,2703.6588168919907,1764.665052027609,884.54327,448.78462704251393,921821.7084230104,467111.236768669,787.85183,451.7701574497279,792625.5615688404,441520.1218311005,201.63591,120.75295559220552,197225.28574712164,112864.25544395452,310.83132,166.44733704885448,298690.1184779656,150776.10470869322,0.37962,0,100000,0,0.0,285021,2977.829784566521,0,0.0,295,2.622395887748919,0,0.0,79121,824.309923313204,0,0,0,0,0,0,0,0,0,0.0,333,3.4791148630294417,0,0.0,1,0.0104477923814697,0.01176,0.0309783467678204,0.2908163265306122,0.00342,0.6087689713322091,0.3912310286677909,10.229023816885878,2.806184257901942,0.2689721421709894,0.4831892411143131,0.0970220941402497,0.1508165225744476,13.178208232367924,9.389529348072676,3.985936696314291,7543.169127117062,13.16398655908913,6.415731506564203,3.5873047765312323,1.9331830757210375,1.2277672002726625,0.729106628242075,0.852882703777336,0.7607142857142857,0.6687898089171974,0.1188118811881188,0.8003913894324853,0.9396551724137931,0.8378378378378378,0.75,0.1372549019607843,0.660377358490566,0.7785977859778598,0.6742424242424242,0.5844155844155844,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023810488773607,0.004350471554609,0.0067504466460938,0.0086889360880478,0.0107439361875305,0.0132426045147094,0.0153074232334254,0.0173677761895037,0.0193418456537073,0.02139333019428,0.0236110683931555,0.0258371928239148,0.0279595111714603,0.029738474537848,0.0318744838976052,0.0338809565657923,0.0357967787042311,0.0380348488465011,0.0400374376039933,0.0421768991068544,0.0571407682827481,0.0708745485947558,0.0833578205020569,0.0962242707412552,0.108725469508335,0.1240514367359898,0.0675681412923494,0.0855886080668008,0.1027978455093404,0.1156799656799656,0.1348707950493876,0.1525873172210015,0.1691170073945193,0.1693278505654104,0.1852120652305391,0.2009893977290334,0.1157491025040693,0.1356804241838729,0.1538635874307342,0.1648112765008066,0.1762558343731226,0.1931852682220509,0.2084451115024167,0.1842347677325964,0.2013845109354541,0.2176920053068645,0.142693180967589,0.158346323967403,0.1755558991007704,0.1825938566552901,0.174254190991377,0.1831909805261359,0.1902351016069705,0.1507967241799693,0.158376847508629,0.1662942526639001,0.1095972121935139,0.1104625640191854,0.1190677393185505,0.1211516734924445,0.1107039073056064,0.1187015976435245,0.1245173944461649,0.1036550416648296,0.1094390596487902,0.1183425868805264,0.1196055293324342,0.1285436052802423,0.1353259185289762,0.1421136443080747,0.1507220617640524,0.1569360112097151,0.1636004444993209,0.1680358476474981,0.1729992657856094,0.1784140969162995,0.1828776333482743,0.1902410114579217,0.200479233226837,0.211090573012939,0.0,1.5280198673078618,21.04725827510222,41.33162387082165,28.724576206205864,full_Colonoscopy_compliance,97 +100000,95707,62289,606.6745379125874,1290,12.06808279436196,1160,11.55610352429812,402,3.8241716906809327,77.3455376358958,79.73184903821192,63.32130932583449,65.08704807748863,77.26800594285743,79.66350766602348,63.28569955053205,65.05722298240642,0.0775316930383667,68.34137218844205,0.0356097753024471,29.82509508221653,2946.91073,2144.365414308634,3079067.748440553,2240527.218968624,4.05037,2.981458411497909,3643.014617530588,2526.294043162014,901.07695,457.3038717152239,938090.850199045,475251.2459035751,861.03425,521.9602678063642,859578.7455463028,505676.8994784517,223.76959,141.31391638483393,218023.09130993552,132237.4722788286,369.16356,212.40370149785105,349957.2236095584,191605.0673455138,0.38232,0,100000,0,0.0,284571,2973.324835174021,0,0.0,389,3.458472212063904,0,0.0,80546,838.1936535467626,0,0,0,0,0,0,0,0,0,0.0,303,3.1659126291702804,0,0.0,2,0.0208971130638302,0.0129,0.0337413684871312,0.3116279069767442,0.00402,0.5866050808314087,0.4133949191685912,10.37344344105308,2.875761160033686,0.2879310344827586,0.4568965517241379,0.1068965517241379,0.1482758620689655,13.172618794152376,9.300412977002305,4.842271068780802,7664.07486048767,14.84741279639311,6.893523512790617,4.261925507278863,2.156273655641961,1.5356901206816662,0.7379310344827587,0.8811320754716981,0.7994011976047904,0.6453488372093024,0.0887096774193548,0.7913446676970634,0.9537366548042704,0.8617021276595744,0.6952380952380952,0.1232876712328767,0.6705653021442495,0.7991967871485943,0.7191780821917808,0.5671641791044776,0.0392156862745098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023809765043212,0.0045945534763426,0.0069851261485354,0.0091973414093782,0.0115569300887116,0.0139743328580158,0.0161020578817482,0.0184124260898869,0.0204413448952879,0.0226313849178716,0.0248915417987138,0.0267977279963845,0.0290078691559944,0.0310886702045442,0.0331062951496388,0.0351814901733745,0.037167096553653,0.0394179674526735,0.0415561725891492,0.0432925240948163,0.0578282801909158,0.0715354746878499,0.0850125944584382,0.0977388230095013,0.109784397282815,0.1256730026761442,0.0690734668322137,0.0872380992959171,0.1039154050124027,0.1181680569422525,0.1371971926647045,0.1555358187292853,0.1717974396934599,0.1725533963585434,0.1890223097835059,0.2045023985464697,0.1172683144562852,0.1370226646420336,0.1553519177988976,0.1670595235370849,0.1794261138985872,0.1952370385078078,0.210874469919794,0.1869732075607044,0.2035632963519209,0.2190120697911422,0.143377219230002,0.1596849356701448,0.1772725517205865,0.1837507699969855,0.1759365724523357,0.1848196980864248,0.1922958655969586,0.1522390198466719,0.1608194019307746,0.1683644080642716,0.1113219679741534,0.1116120841200598,0.1196975847371625,0.1200487830743941,0.1096665306576653,0.1190792818868072,0.1263875082836315,0.1046216913142177,0.1117584369449378,0.12105047189167,0.122026222358894,0.1306490865962231,0.138747768776603,0.1445633628044051,0.1522982137316608,0.160204186861916,0.1705681541087539,0.1804461459176912,0.1910061114658396,0.1958560018520662,0.202202053265883,0.2095407056968263,0.2164730728616684,0.2238750464856824,0.0,2.0646130160137988,26.378167947931367,41.04653600244991,26.837137108427253,full_Colonoscopy_compliance,98 +100000,95614,61993,604.2629740414584,1242,11.839270399732255,1085,10.79339845629301,373,3.576882046562219,77.23812690061078,79.66982261542805,63.25655152000609,65.05455836268126,77.16865846449295,79.60807979509586,63.225570279284455,65.0285642061048,0.0694684361178303,61.74282033218503,0.0309812407216369,25.994156576459204,2945.35385,2145.3547516506824,3080462.9552157638,2243766.3434755187,3.21314,2.3092517678926456,2821.187273830192,1876.2293049079408,890.90734,452.1453223900676,928375.1542661116,470250.4421904802,808.11608,472.53788720812577,811844.9913192628,460895.9298985193,196.23633,120.40580360852545,193511.6719308888,114223.3298423626,337.7886,188.6497192401963,323914.0293262493,171793.31167836158,0.38105,0,100000,0,0.0,284024,2970.527328633882,0,0.0,319,2.750643211245215,0,0.0,79560,828.7175518229548,0,0,0,0,0,0,0,0,0,0.0,360,3.7546802769468894,0,0.0,1,0.0104587194343924,0.01242,0.0325941477496391,0.3003220611916264,0.00373,0.5721153846153846,0.4278846153846153,10.759099462680172,2.6542867124486014,0.3078341013824884,0.4617511520737327,0.0967741935483871,0.1336405529953917,11.92937656092695,8.634474062501623,4.515832287315281,7589.023400357752,13.700524455353888,6.398644730182285,4.171962908124772,1.847820523478471,1.2820962935683542,0.7179723502304147,0.8403193612774451,0.7664670658682635,0.6482758620689655,0.0761904761904762,0.7873462214411248,0.9227642276422764,0.8277777777777777,0.7272727272727273,0.1454545454545454,0.6414728682170543,0.7607843137254902,0.6948051948051948,0.5263157894736842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0045439331392695,0.0063561042969701,0.0088633198825,0.0109815176681322,0.0133255906354106,0.0153602937426691,0.0173967229191353,0.0196898717345498,0.0221441520797271,0.0242961503734712,0.0265302138240703,0.028818147198979,0.030927516211173,0.0330259312424483,0.0352641708573912,0.0373419033796392,0.0393505292791622,0.0410884750314904,0.0431276407073183,0.0573420871056098,0.0711246646545942,0.084027609972369,0.0962757778105449,0.1087619993030107,0.1242784056604772,0.0687673299408258,0.0869602293925149,0.1038902679106393,0.1179484425349087,0.1364778992113411,0.1543347713920263,0.1710370071791966,0.1710792958780164,0.1871013231389571,0.2033120001774682,0.1156142390769643,0.1356151878190896,0.1544887312898496,0.1658175559380378,0.1775098539299791,0.1939599123742136,0.2085234477772905,0.1852305328483801,0.2012117230555859,0.2160928614602736,0.1401808300147769,0.1561692650334075,0.1729215229215229,0.1809130709990505,0.1717724583109198,0.1816820735409255,0.1897680035951016,0.1502715316690915,0.1589971155979587,0.1664684536333973,0.1119426500708996,0.1128908482325087,0.1212095472691752,0.121192792218147,0.1108616178299033,0.1194686803083062,0.1275251217238164,0.1042306417762067,0.1108739475868611,0.1192780673153449,0.121043771043771,0.1309854803830707,0.1383641306217955,0.1469473032577574,0.1556395995550611,0.1629518539587319,0.1713551859099804,0.1786241511662238,0.1863083348465589,0.1934273368205594,0.1995630007283321,0.2011549566891241,0.2025249868490268,0.2116228070175438,0.0,2.106915766969672,22.945928442429636,37.92780922581152,29.949744674872147,full_Colonoscopy_compliance,99 +100000,95704,56487,546.3303519184152,2132,21.03360361113433,1824,18.31689375574689,551,5.234890913650423,77.33641368994157,79.71304282147796,63.332022412709286,65.09020421494506,77.25092533955677,79.63933058205049,63.29411357738896,65.06013542450171,0.0854883503847929,73.71223942746497,0.0379088353203229,30.068790443351645,405.27454,285.16758006754543,423465.748558054,297967.4319935086,884.5326,613.2500641095111,923434.1406837752,639977.9154901773,735.5986,364.8775612176618,764023.0293404665,377786.1405657455,1163.63975,650.5907210191867,1164491.2229373904,628818.2668385328,344.73082,193.11149267771893,341537.7100225696,183641.835628562,495.51468,253.72516992312475,469054.9402323832,223374.96290407755,0.38154,100000,0,1842157,19248.443116275183,0,0.0,0,0.0,77862,812.7246510072724,0,0.0,65684,681.8105826297752,0,0,0,0,0,0,0,0,134,1.4001504639304525,0,0.0,1,0.0104488840591824,0,0.0,0.02132,0.0558788069402945,0.2584427767354597,0.00551,0.5386766076421249,0.4613233923578751,14.822637652011158,2.26958658207485,0.2286184210526315,0.5542763157894737,0.094298245614035,0.1228070175438596,12.705232839214911,9.395315272547322,6.275692819535233,9415.080012777791,22.612783234086194,13.20356027345588,4.899886520656222,2.5864091852073865,1.9229272547667031,0.7308114035087719,0.8635014836795252,0.7170263788968825,0.6071428571428571,0.1453488372093023,0.8415948275862069,0.9197207678883071,0.8918918918918919,0.7450980392156863,0.1911764705882352,0.6160714285714286,0.7899543378995434,0.5775862068965517,0.4918032786885246,0.1153846153846153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002320538283815,0.0047769247152608,0.0070866541448804,0.00922839255224,0.0118002502466862,0.0139938484101603,0.0162147278679162,0.0181539718194813,0.0203244967437866,0.0223880597014925,0.0245297524473373,0.0268577647276236,0.0288861009419604,0.0309616018457481,0.0331744262836387,0.0350298720360531,0.0370305170396296,0.0389379980079681,0.0410256943289539,0.0428880971727399,0.0579911441580684,0.0718015255993052,0.0858976779309042,0.0981507374972402,0.1104048740895339,0.1252417846082296,0.1330796060512896,0.1399825580158679,0.1464883157366583,0.151971971328469,0.1614090600884698,0.1711764324184024,0.1794846716438996,0.1858470882536076,0.1915681448600184,0.1989297836349766,0.2048794073413914,0.2101538012155801,0.2156067268029554,0.2190683052300657,0.2212957616352927,0.2239323220536756,0.2271214445886935,0.2278143637428438,0.228255867464335,0.2288128308096624,0.2291913460938961,0.2301968588776635,0.2319201351717377,0.2325563049737703,0.2248031865670641,0.2158532905385016,0.2097339918064986,0.2022646504467433,0.196807408941622,0.1907910775231594,0.1844320989597268,0.1832113337354701,0.1827689074205905,0.1824617290505265,0.1831142586996421,0.1847830332382924,0.1862996158770806,0.1861196656401232,0.1879773925792796,0.1893365414149687,0.192937607101722,0.1999690306596469,0.2078217685197958,0.2136361862389259,0.2203808497260397,0.2249095010754944,0.2320100031259768,0.2371389891696751,0.2412965186074429,0.2485650696966147,0.2521791403666967,0.2506925207756232,0.2585197018104366,0.2654639175257732,0.0,2.6567098769522817,38.66120407300984,61.22857716441792,51.7738926990237,full_FIT_compliance,0 +100000,95606,56503,547.0472564483401,2122,20.866891199297115,1820,18.41934606614648,536,5.125201347195783,77.26635035352784,79.70470932921145,63.26822878755484,65.07216756712779,77.17091804808489,79.62146223933031,63.22550586291586,65.03759735604507,0.0954323054429551,83.24708988114082,0.0427229246389799,34.57021108272329,404.00316,284.18679914630724,422570.46628872666,297247.43675280735,885.44357,613.6678365942827,925494.8434198692,641230.5746175068,732.9563,364.3265487813116,763670.9516139155,378697.9273055384,1184.25701,670.8765305156372,1192521.4630880908,655737.8428175926,342.53958,192.983111287436,340464.57335313683,184081.08755453888,487.79242,259.82311346043235,464014.2041294479,229740.383960794,0.38226,100000,0,1836378,19207.748467669397,0,0.0,0,0.0,77922,814.3735748802377,0,0.0,65311,680.1978955295693,0,0,0,0,0,0,0,0,151,1.5689391879170764,0,0.0,0,0.0,0,0.0,0.02122,0.0555119552137288,0.2525918944392083,0.00536,0.528310715956949,0.471689284043051,14.820490701158844,2.270497751660984,0.2335164835164835,0.5445054945054945,0.1010989010989011,0.1208791208791208,12.08079388044896,8.760274798708254,6.228408289547256,9443.312119405067,22.59510274968078,12.94007772439793,5.034236390975956,2.550320533137564,2.070468101169332,0.7164835164835165,0.8415741675075681,0.7435294117647059,0.6136363636363636,0.1032608695652173,0.8164556962025317,0.897887323943662,0.9025641025641026,0.7314814814814815,0.1168831168831168,0.6077981651376146,0.7659574468085106,0.6086956521739131,0.5,0.0934579439252336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023713973002553,0.0046766421506467,0.0070480465536677,0.0096185130958191,0.0119297245577248,0.0141565681788069,0.0161863161332462,0.0183113127535432,0.0206372268150937,0.0226969976432011,0.0246315530194178,0.0267356043007215,0.0285976055424589,0.0309729038643955,0.0331157294550262,0.034985875267749,0.0370884816319761,0.0389301480135029,0.0409055425448868,0.0428039508130038,0.0580972294824882,0.0720918046531125,0.0859544069755226,0.0984040031603897,0.1106134392529288,0.1257694385879411,0.1331441145517747,0.1404687983441624,0.146936022610483,0.1522482053045609,0.1624301404742895,0.1710017022107055,0.1788721501475986,0.1850662868412402,0.1913411515739352,0.1985469469247407,0.2048836066306242,0.2101127011112487,0.2154143238484693,0.2186127578575605,0.2220588575794762,0.2248504781188918,0.2274142196025518,0.2279386222344669,0.2297633646176074,0.2316992014196983,0.2322328833956741,0.2334015533832484,0.2337336625599524,0.2338571691805522,0.2257077276205049,0.21792657179677,0.2114610366837343,0.2045585274662065,0.1996244658988423,0.1919442457811525,0.1837979778920389,0.1828244461470746,0.1835773349600108,0.1828436841452832,0.1830527997621967,0.1840770691782029,0.1857741106227713,0.1868318756073858,0.1875816527708496,0.1902765273311897,0.1908040808296562,0.197829457364341,0.2041246372806411,0.2120076511691455,0.2175097102549221,0.2245152570567136,0.2311209986404647,0.2380635624538063,0.2437630409144516,0.2517115472387038,0.2601973199823295,0.2625535227715064,0.268581971534001,0.2723975335509612,0.0,2.288636472939961,39.859149570090224,59.11052953389998,50.92209570093311,full_FIT_compliance,1 +100000,95704,56325,543.9898018891582,2079,20.573852712530304,1785,18.055671654267325,504,4.890077739697401,77.34534288058313,79.71480033735834,63.32656324425341,65.07500879725751,77.26606894575808,79.6433242032598,63.29273152841652,65.04613456227527,0.0792739348250535,71.47613409854614,0.0338317158368894,28.874234982239955,405.89362,285.55483022744016,424113.0778232885,298372.47160770727,879.56917,608.3824610642774,918454.7563320238,635094.9083259604,735.17544,364.70582072468267,764433.4719551952,378138.8300111545,1137.31642,637.5175531943178,1147123.6311961885,624889.5899798523,342.8632,192.9882924444687,339162.3756582797,182758.47897256815,453.9846,226.6812661818238,438538.3892000335,206633.89309626992,0.37919,100000,0,1844971,19277.86717378584,0,0.0,0,0.0,77442,808.5450973835995,0,0.0,65340,678.9789350497367,0,0,0,0,0,0,0,0,160,1.6718214494691968,0,0.0,1,0.0104488840591824,0,0.0,0.02079,0.0548273952372161,0.2424242424242424,0.00504,0.545367717287488,0.4546322827125119,14.663661160608308,2.227555566499932,0.2296918767507002,0.5585434173669468,0.0868347338935574,0.1249299719887955,12.304712783098164,9.132559520612856,5.681955031846354,9420.461830019296,22.166139524506477,13.12369857998783,4.831534743420999,2.5247393301480927,1.6861668709495516,0.7327731092436974,0.8615847542627884,0.7195121951219512,0.5964125560538116,0.1354838709677419,0.8396946564885496,0.9098786828422876,0.8823529411764706,0.75,0.1403508771929824,0.619815668202765,0.7952380952380952,0.5829596412556054,0.4803149606299212,0.1326530612244898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784348671419,0.0046925992743194,0.0068990706546,0.0091001421897217,0.011399459008725,0.0132866349687942,0.0156468201787916,0.0178945111930014,0.0200457955962627,0.0222845502656334,0.0245627703852541,0.0267611419182583,0.0289954948468453,0.0311122099971154,0.0332094943240454,0.0352491213562125,0.0373661426293005,0.0394250726442507,0.0415895527043606,0.0436549704555165,0.0583394255874673,0.0723084490680174,0.0852220263577604,0.0979210066704543,0.1097147921876483,0.1253756613756613,0.1323418574779996,0.13925574063818,0.1466753585397653,0.1531415578008022,0.1628074863429193,0.1704887502977544,0.1794768567884577,0.1860722221614107,0.1920171768332966,0.1985281893847875,0.2041328676790556,0.2101267531182166,0.2149753247489931,0.2182209452730623,0.2210841493161928,0.2238901869158878,0.2266720253433887,0.2277376978572197,0.2291507500515395,0.2304541428852588,0.2308681752335281,0.2319356924598394,0.2307612809879988,0.2318224305217288,0.2255187697266805,0.2180508881421027,0.2114728072270537,0.2045820861155883,0.1988052462700912,0.1917977134680083,0.1836638560459748,0.1831395821477928,0.1820943380305459,0.1814431535708619,0.1815730171044368,0.1832269116959975,0.1852103960396039,0.186909299200282,0.1879029199848312,0.1896635662490071,0.1912129575423043,0.1981957102089662,0.2037582146768893,0.2127938848781994,0.2181503198294243,0.22457210817519,0.2307927575238561,0.2366276485405245,0.242880613362541,0.2503157653002641,0.2548034289092521,0.2631887456037514,0.2628510863804981,0.2693463561232156,0.0,2.2336221368380973,38.5744248019958,60.64022920698966,48.62900868487366,full_FIT_compliance,2 +100000,95660,56453,546.7802634329919,2054,20.269705205937697,1751,17.698097428392224,518,5.028224963412085,77.2498286400838,79.64664154097977,63.26585613190741,65.03804081689766,77.1663929518816,79.5718871426881,63.22959921774211,65.00738737324838,0.0834356882022007,74.75439829167385,0.0362569141652997,30.65344364928535,403.7836,284.10526405375106,422102.17436755175,296994.2410729999,882.80255,611.9155793603796,922213.0984737612,639039.7350094577,730.2575,361.962903576042,759110.9450135898,375198.8582805401,1126.60209,621.1513800515622,1135672.5590633494,607654.5472768641,338.89488,191.2138259431319,334675.89379050804,180406.86687980068,468.42556,235.92316288253423,452388.7309220155,214622.695224062,0.38193,100000,0,1835380,19186.46247125235,0,0.0,0,0.0,77815,812.784863056659,0,0.0,65185,677.1691407066695,0,0,0,0,0,0,0,0,126,1.3171649592306085,0,0.0,0,0.0,0,0.0,0.02054,0.0537794883879244,0.2521908471275559,0.00518,0.5222652468538238,0.4777347531461762,14.921870339635452,2.321353035653784,0.2609937178754997,0.5351227869788692,0.0988006853226727,0.1050828098229583,12.612144554523963,9.39935815616822,5.847164979717284,9416.464655487956,21.588703437723865,12.341226395555946,5.375299856983374,2.0275441912618124,1.8446329939227328,0.7430039977155911,0.8847385272145144,0.737417943107221,0.625,0.1156069364161849,0.8552486187845304,0.929453262786596,0.8640776699029126,0.8,0.2096774193548387,0.6229314420803782,0.8162162162162162,0.6334661354581673,0.5175438596491229,0.063063063063063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021171846509177,0.0045534292697273,0.0067599801057642,0.0092054460475513,0.0115144795597644,0.0137901533823559,0.0157543745156422,0.0182161637821003,0.0201881775414195,0.0222140289427597,0.0242991804539813,0.0261016949152542,0.0280907547461027,0.0301577976356121,0.0321288457567623,0.0342431043220154,0.0364222284393878,0.0385996968501484,0.0406471077819392,0.0425403246827722,0.0575494467604927,0.0714106189129751,0.0843522706997344,0.0975430104698269,0.1093545527460002,0.1252262263851405,0.1331230551927018,0.1399978684855589,0.1464348756351965,0.1525809743782564,0.1612732667925546,0.1699508724744873,0.1789472536340141,0.1859350494093905,0.1921400271490216,0.199657831004066,0.2056940776220958,0.2105280963496735,0.2156313993174061,0.2189035873409581,0.2218134552670976,0.2260260307251751,0.2278270575801836,0.2292470172656165,0.2302599552137085,0.2307796760813746,0.2319826592492357,0.2335291194720144,0.2340808685400391,0.233424831081081,0.225631914721796,0.2183764324383742,0.2116085115958539,0.204286188148084,0.1988117814389,0.1919290438599165,0.1832659291547988,0.1819131399846583,0.1820264765784114,0.1815440289505428,0.1803168935505467,0.1809596583005153,0.1821346428793435,0.1825744501969113,0.1854405401550092,0.1875544843854161,0.1889664804469273,0.1956495022735652,0.2027193643400233,0.2089193692122903,0.2162748483641032,0.2228968356058657,0.230159214298786,0.2386497641509433,0.2431500635093449,0.2451304248775486,0.2515815801088715,0.2592156862745098,0.2656621728786677,0.28394612304332,0.0,2.2748307374175885,38.08140186900624,54.71750196754356,50.72415067129855,full_FIT_compliance,3 +100000,95748,56271,544.2620211388227,2110,20.99260558967289,1821,18.465137653005804,501,4.908718719973263,77.32698317968122,79.68626556678443,63.31555014592704,65.06114177991937,77.24776126276333,79.61464887652969,63.28197602385574,65.03258705489483,0.0792219169178878,71.61669025474282,0.0335741220713003,28.554725024534378,404.84092,284.8531343323448,422818.50273634953,297502.2982561983,883.04008,611.1346279246764,921684.7767055186,637705.6379701677,737.33975,366.2485853850762,766345.8662321928,379764.7645841903,1145.0869,628.304877652147,1155164.13919873,615987.0442707328,325.51546,181.57508262672312,323995.21661026863,173881.76962661173,447.90758,219.13075489078227,436068.2625224548,200680.29374559908,0.38027,100000,0,1840186,19219.02285165225,0,0.0,0,0.0,77786,811.8080795421314,0,0.0,65687,682.3745665705811,0,0,0,0,0,0,0,0,147,1.524836027906588,0,0.0,2,0.0208881647658436,0,0.0,0.0211,0.0554868908933126,0.2374407582938388,0.00501,0.5425082198215124,0.4574917801784876,15.071541729908732,2.1921698086264163,0.2377814387699066,0.5650741350906096,0.0851180669961559,0.1120263591433278,12.73846014308363,9.683135898031905,5.601165023556885,9388.07531084797,22.506155315277617,13.393802941645587,5.168402504129129,2.347557743945476,1.5963921255574236,0.729269632070291,0.8551992225461613,0.7136258660508084,0.5980392156862745,0.1096774193548387,0.8512221041445271,0.913907284768212,0.88,0.7555555555555555,0.1063829787234042,0.5988636363636364,0.7717647058823529,0.5708154506437768,0.4736842105263157,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022896509801935,0.0045324572610573,0.0071757708625134,0.0095294213263979,0.0118382913806254,0.0136754747721602,0.0158869355957091,0.0180164546883612,0.0199705653898041,0.0221082691067645,0.0243617468305131,0.0264430232916226,0.0284010895821555,0.0305198883820546,0.0323598890046523,0.0343783582706456,0.0364430732278002,0.038773520320312,0.0408152659696094,0.04267200066675,0.0577304520304833,0.0718507746869344,0.0849513545248679,0.0977704428629994,0.1106004869667871,0.1258616314965957,0.1330569047063564,0.1398171114683245,0.1467702633378933,0.1528654217643271,0.1615781702966882,0.1710665944775311,0.1786790543848388,0.1845677594373161,0.1901213915455135,0.1965405668949316,0.2026040154543627,0.2080307993651008,0.2131942236955633,0.216680219440404,0.2193953698240255,0.222935897885882,0.2256827302105898,0.2280070952586413,0.2295987759265556,0.2302000615574022,0.2327407296276848,0.233547616627706,0.2337576736672051,0.2326181047978635,0.2257900101936799,0.2173174407453075,0.2118961191854353,0.2046813894639981,0.1975005908768612,0.1892537949725178,0.1827600301848824,0.1824057041462501,0.1826566704462759,0.1821132474863291,0.1821074441320112,0.1822916666666666,0.1825240708147841,0.1826274734476224,0.1846266748733488,0.1871554928855275,0.1891771019677996,0.197024762843415,0.2038575056627085,0.2094194198071187,0.2154855294065505,0.2213334709464341,0.2262042859759448,0.2299366809011927,0.2364049024058102,0.2452614752226535,0.2469755089997049,0.25859375,0.2691278758694489,0.2668906308324001,0.0,2.097801534194937,39.8912086006611,58.348999313008896,51.49415007808405,full_FIT_compliance,4 +100000,95752,56120,542.8607235358008,2127,21.0857214470716,1829,18.44347898738408,489,4.720528030746094,77.39144353273707,79.7309153547692,63.36142006586866,65.08764196455668,77.3112511740161,79.66019022831303,63.326877786062255,65.05926366933626,0.0801923587209643,70.72512645616769,0.0345422798064021,28.37829522042057,405.88064,285.4332978769072,423887.14596039767,298096.2371077591,885.26667,612.8242707146227,923851.9822040272,639324.86125846,731.32895,363.2905712857622,759504.9085136603,376164.795494567,1160.00664,641.1491166311121,1164428.137271284,623028.6109638972,325.54989,186.47361521131168,322126.84852535714,177049.01136322744,440.37914,220.70615691712737,422918.372462194,198028.46799777707,0.37999,100000,0,1844912,19267.597543654443,0,0.0,0,0.0,78008,813.9777759211296,0,0.0,65098,675.7352326844348,0,0,0,0,0,0,0,0,165,1.7127579580583174,0,0.0,2,0.0208872921714428,0,0.0,0.02127,0.05597515724098,0.229901269393512,0.00489,0.5433768656716418,0.4566231343283582,14.522812280744713,2.254325568885255,0.2230727173318753,0.5636960087479497,0.0885729907053034,0.1246582832148715,12.605740924878086,9.461472492781713,5.534215547754865,9381.496392804303,22.632032555279665,13.503199631567584,4.830148411197905,2.559477576203012,1.7392069363111615,0.7255330781848004,0.8554801163918526,0.7205882352941176,0.5745614035087719,0.1234567901234567,0.851380042462845,0.9186046511627908,0.8829787234042553,0.7604166666666666,0.1785714285714285,0.5918827508455468,0.7668997668997669,0.5818181818181818,0.4393939393939394,0.0943396226415094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019945731410983,0.0043981880276052,0.0067064385868793,0.0091914565157778,0.0110929222885379,0.0131402165947398,0.0152027715508457,0.0171404085130695,0.019287151773948,0.0217729393468118,0.0238627049180327,0.0260177281680892,0.0280720502255422,0.0303510595597089,0.0322856642167221,0.0342116951936286,0.0362639068564036,0.0383626143411254,0.04032014968037,0.0424605448200427,0.0572645379484556,0.0710690705144973,0.0842722561423386,0.0968545919172161,0.1090937845959196,0.1253634758334831,0.1330130754302803,0.1395502223356949,0.1460101867572156,0.1521683208643272,0.1607736769027091,0.1697339965397923,0.1780226467583838,0.1841447030681681,0.1904275195076382,0.1967742649173654,0.2027567609730007,0.2083426903211318,0.2128071785459366,0.2174668694329785,0.2208722165758107,0.2238323213451658,0.2270273462878743,0.2279339633927503,0.2294049234347741,0.2302749588421751,0.2313833104652613,0.2316096694372184,0.2320338611229401,0.2327295177795,0.2257770754375862,0.2182914655325666,0.2113649399157841,0.2050914511782581,0.1980383204960162,0.1916002545377413,0.1848813177177929,0.1840726623955883,0.184471096267058,0.1841864072194021,0.1846045642155138,0.1851635058144072,0.1854807036401596,0.1868022768389004,0.1883528322931251,0.189549364488381,0.1906479850099281,0.197641028807855,0.2049753643661923,0.2127055713230434,0.2179418583912966,0.2247892600686856,0.2291769344504682,0.2336053412462908,0.2346836595357305,0.2361998175182481,0.2405413271245634,0.2496620969299092,0.2567249934708801,0.2638282387190684,0.0,2.5108822837596643,39.488728481163015,58.47677798380204,52.93295847220989,full_FIT_compliance,5 +100000,95723,56297,544.4564002381873,2103,20.705577551894528,1789,18.062534605058342,480,4.64883047961305,77.37264048070351,79.73079585137684,63.34029949113111,65.08136263510673,77.29562496880942,79.66216896167421,63.307012223821225,65.0533452517142,0.0770155118940891,68.62688970262809,0.0332872673098876,28.017383392523243,404.64864,284.85684757574944,422727.5994275148,297583.6620085945,888.47136,614.3160559605143,927562.1950837312,641163.8355047652,739.91782,367.12282598895,768089.4769282199,379880.0309610955,1124.06101,630.8378533214802,1133329.1894320068,618504.6748165899,324.99223,183.4877286054485,325035.52960103634,177208.46463801662,430.68658,217.5548483723107,416350.92924375547,200334.1608642162,0.38266,100000,0,1839312,19214.890883068856,0,0.0,0,0.0,78116,815.4153129341955,0,0.0,65947,684.1198040178432,0,0,0,0,0,0,0,0,168,1.7550640911797584,0,0.0,1,0.0104468100665461,0,0.0,0.02103,0.0549574034390843,0.2282453637660485,0.0048,0.5245514636449481,0.4754485363550519,14.83311284147876,2.1735086078511574,0.2330911123532699,0.5690329793180547,0.0832867523756288,0.1145891559530463,12.351639299094382,9.17244565007364,5.460412277822071,9431.842463818752,22.17857403950016,13.316384183492591,4.942250412873149,2.3098549846986622,1.6100844584357517,0.7322526551145891,0.8487229862475442,0.7386091127098321,0.5804878048780487,0.1275167785234899,0.8459869848156182,0.9204152249134948,0.8613861386138614,0.7790697674418605,0.125,0.6113033448673587,0.7545454545454545,0.6232558139534884,0.4369747899159664,0.1290322580645161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189873417721,0.0045807870440748,0.0066749850370776,0.0092216444588885,0.0115913735777689,0.0137528757863876,0.0161053575797113,0.0183519949373807,0.0205051671794662,0.0226328180980653,0.0245555396067012,0.0266735112936344,0.0286580976863753,0.0305676855895196,0.0328088728398246,0.0348209856127005,0.036631326099561,0.0386274997925483,0.0408057207001205,0.0427451021237149,0.0574379000344564,0.0722798279848911,0.0856792375680181,0.0984791953503526,0.1104915302476098,0.1265209899252587,0.1340828339608633,0.1412275474589256,0.1491436015718435,0.1555090879845584,0.1645614601841382,0.1729591726346308,0.1805567638103523,0.1872409758444597,0.192493427348829,0.200048735642369,0.2054944319221585,0.2096627164995442,0.2142476017483112,0.2177545033689324,0.2210951235310446,0.2232069779949956,0.2264157642464051,0.2272444039687485,0.228709458147213,0.2289037976241767,0.2304367379572256,0.2307711827847844,0.2327805381686778,0.2328207150368033,0.2256512650085763,0.2184505885573501,0.2113423721216875,0.2041830666245295,0.1969643278998346,0.1896840120434293,0.1838643854967823,0.1837943377806703,0.1837296493953928,0.1838823322177206,0.1831786393076596,0.1830605341938493,0.1831755655921961,0.1845086502151576,0.1860953234440959,0.1869228021837848,0.1887102158913866,0.1965777954635893,0.202987008558666,0.2104535504435654,0.2172073342736248,0.2231026498585027,0.2294060131997066,0.2365401588702559,0.2416568689517952,0.2461485792536802,0.2531980591089545,0.2610215575839968,0.2634351949420442,0.2648885641213007,0.0,2.4565057932988146,38.61099176866453,59.00626934127373,49.880005899888125,full_FIT_compliance,6 +100000,95735,56515,546.4668094218415,2152,21.204366219251057,1836,18.519872564892676,500,4.825821277484724,77.33281654085012,79.70029615146696,63.319784280511655,65.07141884074095,77.24936160432485,79.6254516998694,63.28407387308459,65.04174346565766,0.0834549365252712,74.84445159755637,0.0357104074270679,29.67537508328633,405.18478,285.18139229949946,423235.0968820181,297885.71618720365,880.52988,609.3521510068991,919127.946936857,635871.7352053712,740.71708,367.8819695801503,769776.278268136,381147.1908937284,1178.98443,667.49513949635,1185061.3464250276,651097.5448190011,354.86411,200.30775376222647,352997.47218885465,191555.62099778207,453.01828,227.0443857381347,435070.5802475584,204171.79775179108,0.38198,100000,0,1841749,19237.95894918264,0,0.0,0,0.0,77555,809.4218415417558,0,0.0,66122,686.7916644905207,0,0,0,0,0,0,0,0,129,1.3265785762782685,0,0.0,1,0.0104455006006162,0,0.0,0.02152,0.056338028169014,0.2323420074349442,0.005,0.526827012025902,0.473172987974098,14.398861640751788,2.286242202222017,0.2265795206971677,0.5620915032679739,0.0931372549019607,0.1181917211328976,12.89779380498064,9.426708889738338,5.664429017533336,9452.701944611532,22.967214968349605,13.545783054744282,5.0162110118075365,2.566289412007768,1.8389314897900164,0.7559912854030502,0.8788759689922481,0.7716346153846154,0.6359447004608295,0.1286549707602339,0.8646153846153846,0.9433333333333334,0.8820754716981132,0.7941176470588235,0.1475409836065573,0.6329849012775842,0.7893518518518519,0.6568627450980392,0.4956521739130435,0.1181818181818181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020974982014206,0.0044526487681681,0.0066910346228043,0.008578892265783,0.0107434989622756,0.0130581812255541,0.0150827562997787,0.0174170495150587,0.0195803766794135,0.0221175506860536,0.0243087238688907,0.0265333155349276,0.0286463420903809,0.030659430066221,0.0327067126142671,0.0349261475808035,0.0371490414988038,0.0392183316382656,0.0410327867147774,0.042933344446065,0.0578918794763107,0.0721303242411877,0.085234899328859,0.0976145670160535,0.1092770030252242,0.1244699637301864,0.1328695061937892,0.1406782186648501,0.1474499332443257,0.1527572228299337,0.16181062514805,0.1714721570069999,0.179628542223962,0.1863897239682973,0.1919011954644935,0.1990346614119184,0.2050446792132888,0.2105991405494184,0.215966968022959,0.2199171548883193,0.2232823323965814,0.2266167699684247,0.2286032038995764,0.2296169458647156,0.2309120473740413,0.2309861235948138,0.2325630803454266,0.232668553946149,0.2337976122797044,0.2346568020852531,0.2270915265157107,0.2191146026131425,0.2128184981479403,0.2064026231771507,0.2010973247164258,0.1928513824008277,0.1848452944041988,0.1842623484416958,0.1836417143050434,0.1828805451111228,0.1835234427079475,0.1848864235629602,0.185750583569171,0.1868368919216377,0.1880323679727427,0.1895862175049992,0.1905055314381739,0.1973517701163616,0.2045837778313087,0.2127055713230434,0.2194676873776037,0.2258533042846768,0.2325139459326917,0.2372330204715098,0.2437715948354246,0.2486536037584507,0.2594228504122497,0.2656675749318801,0.2670018523418894,0.2724926253687316,0.0,2.562714545130321,40.949531265452926,60.26452379651882,48.43773152641688,full_FIT_compliance,7 +100000,95793,56306,544.2986439510194,2004,19.93882642781832,1704,17.339471568903782,467,4.603676677836585,77.34910350822409,79.67899995890986,63.34642956891118,65.06717832734599,77.27695461236145,79.61300104048449,63.3147061987203,65.03977279431567,0.0721488958626395,65.99891842536465,0.0317233701908747,27.40553303031845,406.13144,285.7567327609975,423967.763824079,298306.48665455467,882.48015,610.3802959265347,920793.4400217136,636745.0891299362,728.63477,360.9476668194754,758062.6559351935,374792.2593301938,1090.89641,595.2398706881787,1108070.276533776,590830.448102159,314.0219,173.12229818939784,317748.5724426628,170722.604674356,418.3226,211.6138898900785,410542.18993037066,197179.40993254285,0.3802,100000,0,1846052,19271.26199200359,0,0.0,0,0.0,77621,809.8190890774899,0,0.0,64824,674.120238430783,0,0,0,0,0,0,0,0,166,1.732903239276356,0,0.0,1,0.010439176140219,0,0.0,0.02004,0.052709100473435,0.2330339321357285,0.00467,0.5536246276067527,0.4463753723932472,14.62288937265036,2.196356400084976,0.2423708920187793,0.562206572769953,0.0874413145539906,0.107981220657277,12.633697112081808,9.556411459080604,5.297650861673997,9367.640444481469,21.066370870291237,12.469803491082809,4.94372842686252,2.07097128137388,1.581867670972027,0.7318075117370892,0.8684759916492694,0.7070217917675545,0.5760869565217391,0.1140939597315436,0.8459770114942529,0.9247706422018348,0.8514851485148515,0.7183098591549296,0.173076923076923,0.6127098321342925,0.7941888619854721,0.5687203791469194,0.4867256637168141,0.0824742268041237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021670447180816,0.0043179030803069,0.0066449564273467,0.008999400717108,0.0112457802903973,0.013365772221996,0.0155527018487943,0.0177169974996172,0.0198735043783016,0.0221910744613369,0.0243312741391851,0.0265056284696924,0.0284052370871272,0.0304970305793715,0.0327556165005,0.0348389229164299,0.036754586562639,0.0388834740051015,0.0407418952618453,0.0425804436113714,0.0568965697170825,0.0707846131319681,0.0834067270592182,0.0955818988166551,0.1083818074523689,0.1232749328993807,0.1305592063424767,0.1384198213526159,0.1454991729363428,0.1515674216289185,0.1598432993241207,0.1685625310871304,0.1761949798345454,0.1829512283118501,0.1898372195336559,0.1967009852762094,0.2027642058764473,0.208569791093081,0.2131463489292233,0.2161231656124538,0.2193464898091232,0.2217626025380354,0.2246241490166414,0.2260812346712927,0.2273190127527518,0.2287334826152218,0.2307788364281165,0.2323266943397184,0.2347857539626151,0.2337930671439475,0.2265059917604906,0.2195813972614005,0.2130986744388084,0.2059562613977398,0.2005957999056158,0.1939285334629227,0.1849040030116702,0.1843825193470768,0.1829286836636423,0.182542205269478,0.183002183002183,0.1844525590205229,0.1852701167234789,0.1876957001102535,0.189271231057462,0.1894877459795509,0.1911285794497473,0.198710797074501,0.2057929986881171,0.2117073170731707,0.2183943951091079,0.2220723291651533,0.2294292068198665,0.2365447517097829,0.2412651710187568,0.2450592885375494,0.2525479616306954,0.2565165876777251,0.2692513368983957,0.268662372110648,0.0,1.7336984169929277,37.07212390589899,55.54400272581636,49.18492133582635,full_FIT_compliance,8 +100000,95680,56333,545.8403010033444,2084,20.673076923076923,1797,18.331939799331103,493,4.85994983277592,77.31532774038504,79.70854473473521,63.31028192710126,65.0767265354989,77.24070805354938,79.6384483848611,63.27907383651184,65.0486909256928,0.0746196868356605,70.09634987410607,0.0312080905894163,28.03560980611053,404.45878,284.5867283318915,422720.2968227424,297435.96188533807,884.51473,612.8943004428502,923991.0953177258,640106.8678517055,734.64948,364.2909270871213,765177.2575250836,378623.7724995383,1136.51909,628.900018183306,1158252.3306856188,627714.0967847452,331.08473,186.4452266630545,334491.0012541806,183320.95177994831,437.61828,217.24502427726424,430043.1647157191,204532.44943880825,0.38086,100000,0,1838449,19214.55894648829,0,0.0,0,0.0,77914,813.8377926421404,0,0.0,65533,682.2533444816053,0,0,0,0,0,0,0,0,137,1.43185618729097,0,0.0,0,0.0,0,0.0,0.02084,0.0547182691802762,0.2365642994241842,0.00493,0.5336194563662375,0.4663805436337625,14.596024443551537,2.179544293532672,0.2531997774067891,0.5626043405676127,0.0784641068447412,0.1057317751808569,13.12973064333605,10.152305117472135,5.580687675701249,9409.339804815469,22.211415205229123,13.274980697864269,5.261864566877518,2.1283639878725853,1.5462059526147518,0.7518085698386199,0.8704253214638972,0.7450549450549451,0.6105263157894737,0.1134751773049645,0.8805803571428571,0.9361344537815126,0.9222222222222224,0.8507462686567164,0.1666666666666666,0.6237513873473918,0.7764423076923077,0.6290909090909091,0.4796747967479675,0.0804597701149425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023097027777214,0.0044607554897706,0.0066877752745133,0.0092353646394245,0.01123046875,0.0131703590527119,0.0155134429439843,0.0176191205760686,0.0196553663649844,0.021678579474471,0.023752384468648,0.0257213587944653,0.0280432479142448,0.0300566718186501,0.0321322034248201,0.0340779811769572,0.0363366972667177,0.0381833089433425,0.0401081755772831,0.0418551328817092,0.056364073257624,0.0709963145992126,0.0838239769948469,0.0969306691078211,0.1090932114854953,0.1246216050297423,0.1335640799685731,0.1407300109704012,0.1471886455694849,0.153546476061689,0.1629200163803694,0.1722222823674609,0.180158021896698,0.1866172142536733,0.1931520422767808,0.1995232815964523,0.205021154039361,0.2104724524567302,0.2150765740215541,0.2184139707987403,0.2218481756553527,0.2255541526374859,0.2281981555923386,0.2289465487912983,0.2303158201135206,0.2314617797183445,0.2305309955542235,0.2315957730219341,0.232572541834931,0.2342985639892693,0.2263303293638021,0.2190754137893237,0.2111890854589514,0.2040514118120651,0.197646433475571,0.1889167616875712,0.1822034563405484,0.1807181952542593,0.1802328528701059,0.1803408850307008,0.1812135097184243,0.1822876071706937,0.1817561842567525,0.1832521865568064,0.1850036697682127,0.1868275438057178,0.1895197486535009,0.197179169249845,0.2046397455400359,0.2129246388129637,0.2196898601242347,0.2272916233631261,0.2348624984585029,0.2388506435199042,0.2434726450779592,0.2501448267871625,0.2550147492625368,0.2655857942482146,0.2729930887825624,0.2755588127519238,0.0,1.6574007732060232,38.29501348972758,61.45009581219369,52.1403845674691,full_FIT_compliance,9 +100000,95633,56826,549.5278826346554,2031,20.03492518272981,1766,17.95405351709138,525,5.081927786433553,77.3146043072854,79.73479840034814,63.296484254502126,65.08341574719013,77.22846220250055,79.65586098881161,63.258851941710496,65.05063437951877,0.0861421047848551,78.93741153652911,0.0376323127916293,32.78136767136175,404.5613,284.68133757639424,423034.7892463898,297680.61670803424,881.04588,610.2961951337112,920796.0745767674,637683.1206107843,742.06827,368.01265280478617,773254.1695858124,382626.7321118924,1132.30053,635.0161488095672,1149189.652107536,629232.9274513687,315.53555,181.44362717814408,317750.5045329541,177585.38216116195,469.20728,243.8593709605377,453261.1755356415,224508.514637171,0.3829,100000,0,1838915,19228.854056654083,0,0.0,0,0.0,77365,808.4552403459057,0,0.0,66129,688.7162381186411,0,0,0,0,0,0,0,0,144,1.5057563811654973,0,0.0,1,0.0104566415358715,0,0.0,0.02031,0.0530425698615826,0.258493353028065,0.00525,0.5335291238374938,0.4664708761625061,14.822882359988157,2.2278377574231705,0.2519818799546999,0.5413363533408834,0.0792751981879954,0.1274065685164213,13.088279312999644,10.051249240838256,5.970142871530745,9490.433361387282,21.85081028482405,12.532548294819977,5.2003707199274425,2.57181874173553,1.5460725283411012,0.7366930917327293,0.8650627615062761,0.7280898876404495,0.5955555555555555,0.1142857142857142,0.8507795100222717,0.9339449541284404,0.8730964467005076,0.7789473684210526,0.1475409836065573,0.618663594470046,0.7737226277372263,0.6129032258064516,0.4615384615384615,0.0886075949367088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019656915890691,0.0041780328766567,0.0066898119949648,0.0091652695219224,0.0112711588541666,0.0136484008963128,0.0159933089217776,0.0182449688425784,0.0203025436990518,0.0224370462156045,0.0248,0.0271391884951207,0.0294535204312579,0.0314361077338389,0.0334031813536752,0.0354040863595003,0.0374361471749334,0.0394214996158558,0.0416610307047206,0.0439299123904881,0.0590965152497021,0.0733260705606301,0.0867565524193548,0.0994189596008505,0.1117913425305312,0.1281024989411266,0.1351603994051412,0.1419390593526521,0.1485305288384384,0.1541321070952769,0.162848911858957,0.1710547709116923,0.1790781301078784,0.1848707274320771,0.1919651713876336,0.1992343117128114,0.2042841339546109,0.2104439112853265,0.2156461889672561,0.2186532773918426,0.2225629158229679,0.2255967828668958,0.2276984202062245,0.2294936724016139,0.2313754015881675,0.2324557628223258,0.2338757987220447,0.2342087576245609,0.2347583786991408,0.2347535725084465,0.2276439116617724,0.2203693815802083,0.2129858112276372,0.2060718497425719,0.1999970423389183,0.1922010662604722,0.1842635439292347,0.1829519114622441,0.1828652973854543,0.1835278284429176,0.1838605719365832,0.1845773468831522,0.1855018127883981,0.1863482429520165,0.1881953611163492,0.1912779886389688,0.1932368494294461,0.1998836639725691,0.2061506919528447,0.213192673313239,0.2203569535253578,0.2288511076764554,0.2355760368663594,0.2438826051600502,0.2492938496583143,0.2522574670062514,0.2624379978956861,0.2700888450148075,0.276263561788833,0.2814483016050765,0.0,1.986311073960097,38.07242021113824,58.35575422928313,50.76474872545729,full_FIT_compliance,10 +100000,95651,56489,546.3926148184546,2106,20.93025687133433,1816,18.46295386352469,510,4.965970036904999,77.29129418892526,79.6909111620144,63.29829466637945,65.06978150004541,77.21007259735747,79.6189530878593,63.262911830635545,65.04044880531728,0.0812215915677967,71.95807415510558,0.0353828357439027,29.33269472812583,404.79582,284.8803968223046,423200.3638226469,297832.7474567191,881.50824,610.2484298250675,921055.4306802856,637463.8383805446,735.94491,365.49331929624407,766283.875756657,379760.0822168683,1149.1677,635.6976080873818,1164207.2743620034,627527.6232961506,344.90664,193.33358969190508,349091.67703421816,190634.50441280543,460.34854,234.68901264398596,446185.8840994866,213821.0671256213,0.38104,100000,0,1839981,19236.38017375668,0,0.0,0,0.0,77551,810.2163072001339,0,0.0,65605,682.8365620850801,0,0,0,0,0,0,0,0,138,1.442744979142926,0,0.0,0,0.0,0,0.0,0.02106,0.0552697879487717,0.2421652421652421,0.0051,0.5330812854442344,0.4669187145557656,14.511315453184654,2.14382621183449,0.2494493392070484,0.5622246696035242,0.0936123348017621,0.0947136563876652,12.312690222359215,9.12174231869333,5.827413349745086,9425.53361867625,22.534058130991248,13.25921547536764,5.44613042453083,1.9458089762281767,1.8829032548645983,0.7241189427312775,0.8432908912830558,0.7373068432671082,0.5813953488372093,0.1176470588235294,0.8466522678185745,0.9432989690721648,0.8599033816425121,0.7424242424242424,0.1126760563380281,0.596629213483146,0.7107061503416856,0.6341463414634146,0.4811320754716981,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020359997163781,0.0042583392476933,0.0065466946804299,0.0088710496900721,0.0111202677817456,0.0132504965116871,0.0152639843383567,0.0176955909081626,0.0202437428431212,0.0224950340957958,0.0245713348100746,0.0264879576849997,0.0286507895684378,0.0308101312779506,0.0331482016765082,0.0351657444277809,0.0373809499134652,0.0394451308780928,0.0412244558205352,0.0432352971840236,0.0577803323231267,0.0722231533079146,0.0854613801503633,0.0978916455269833,0.1103793299981001,0.1261828651269132,0.1341415513965116,0.1418543215662881,0.1491511289770783,0.1545976702989961,0.1633332973940419,0.1723223179869202,0.1804477725654951,0.1866351375021895,0.1927883449780696,0.1989420805748694,0.2047447252906814,0.2095135208129367,0.2149714052287581,0.2185066422354558,0.2222132256833192,0.2251911073707833,0.2270969115577057,0.2287442361818072,0.2296270215142538,0.2300965612375603,0.2310606534215231,0.2314799517061701,0.2319944150689713,0.2319967374431026,0.2240173910709733,0.2178080688955322,0.2112798630021616,0.2038334796310419,0.1971891412086693,0.1899133776611968,0.1834466691852411,0.1831167559096251,0.1824370204386501,0.1817795183498431,0.1826523031203566,0.1827670615881719,0.1825513652478593,0.1832898979636909,0.1854525658019314,0.1855334631546581,0.1867663051055405,0.1934560453090371,0.2011217397288555,0.2085472079639135,0.2160647571606475,0.2236801322450666,0.2309204866658473,0.2359333134861566,0.2361762811666206,0.2415678064666201,0.2504507211538461,0.2564051240992794,0.264476164826286,0.273365349094939,0.0,1.9775323889182288,39.34654928636608,60.968917711902535,51.20661721511742,full_FIT_compliance,11 +100000,95629,56318,544.4896422633301,2121,20.96644323374709,1828,18.488115529807903,509,4.9880266446370864,77.27514686010801,79.68683817953365,63.27600815666828,65.05686316709384,77.19255337843016,79.61224217305362,63.24045633094198,65.02663983459594,0.082593481677847,74.59600648003573,0.0355518257263014,30.223332497897104,404.21744,284.32470633602685,422693.1370191051,297320.37932841154,881.8498,611.110918306365,921528.2707128592,638415.8315012653,735.93606,365.6229271617433,765675.7050685461,379399.4027809525,1153.16013,638.8617127673807,1162209.8212885212,624507.9093312816,333.01985,186.4606721841603,330333.4553325874,177205.56662970717,452.6299,226.84705057130995,440764.05692833767,208250.9985074376,0.37905,100000,0,1837352,19213.32440995932,0,0.0,0,0.0,77669,811.5425237114264,0,0.0,65472,680.7558376643068,0,0,0,0,0,0,0,0,153,1.5999330746949147,0,0.0,1,0.0104570789195746,0,0.0,0.02121,0.0559556786703601,0.23998114097124,0.00509,0.5327102803738317,0.4672897196261682,14.663754055105557,2.2364205834063138,0.2428884026258205,0.5612691466083151,0.0798687089715536,0.1159737417943107,12.788011463925,9.530647876427068,5.780213624668792,9434.074818875735,22.72387850687292,13.443702101170215,5.317004285013873,2.3893025650730424,1.5738695556157911,0.7324945295404814,0.8518518518518519,0.722972972972973,0.5990566037735849,0.1164383561643835,0.832271762208068,0.903494176372712,0.86,0.7349397590361446,0.1379310344827586,0.626410835214447,0.7788235294117647,0.610655737704918,0.5116279069767442,0.1022727272727272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023695722618276,0.0047130129835906,0.0071026330475369,0.0092737430167597,0.0114830297297572,0.0134837868665471,0.0155606313986213,0.0176925197292523,0.0200689069960025,0.0224852555701179,0.024627914371583,0.0266180398602835,0.0286643208428503,0.0309646030469829,0.0330135585869329,0.0350806409898306,0.037149520601192,0.0393619010032611,0.0414901919975024,0.0436233561722408,0.0580593239825247,0.0725954334454538,0.0856584586940079,0.0978634189510946,0.1099937677592453,0.1256500142976668,0.1337180263759152,0.1407037854317908,0.1467053371718447,0.1523704093806089,0.1612871885660002,0.1703661935176048,0.178303614247722,0.1844026839750899,0.1901782955999823,0.1979900055524708,0.2042403222197359,0.2100632761479376,0.2154906666970003,0.2197151415684429,0.2221771435857608,0.2248063832030838,0.2281830678801668,0.2303346527527887,0.2315951851716892,0.2324366932702729,0.2320490367775831,0.2322224904394668,0.2327678790937205,0.2322522831200664,0.2249220513923234,0.2177797908259902,0.2115819169391851,0.2053166851273789,0.1982236278189933,0.1907342018750761,0.1838760858978588,0.1823569637565534,0.1819717548483005,0.1819657380780155,0.1825880696032466,0.183590243902439,0.1842061753399743,0.186255067865327,0.1880398513855692,0.1891386726751331,0.1908328675237562,0.1982668229198791,0.2054318267873739,0.2130835309208225,0.2198275862068965,0.227293946781472,0.2309528180649899,0.2354284872153857,0.2431075406244294,0.2526291459609384,0.2586258179654967,0.2592956915207554,0.263592750533049,0.2662721893491124,0.0,2.388376070803248,39.81024831925076,59.3823214740378,52.121233995923376,full_FIT_compliance,12 +100000,95690,56195,543.2856097815863,2123,21.120284251227925,1809,18.382276099905948,506,4.932594837496081,77.28391542799022,79.68156149658479,63.28504443165552,65.05944734708845,77.20346370512914,79.60937357613135,63.25013406712449,65.03013402095013,0.0804517228610848,72.18792045344458,0.0349103645310293,29.313326138321827,404.76524,284.7904703121856,422996.3841571742,297617.7973792304,883.29336,611.0148385977313,922572.0346953704,638029.7404093753,734.70669,364.4290248831215,764636.6495976591,378418.2057899226,1181.3639,652.2586710085375,1195753.328456474,642816.5231565867,335.77044,189.8463222397237,334986.7906782318,182499.7166546344,462.60036,231.73460401364255,448757.02790260216,211280.6891479448,0.37847,100000,0,1839842,19227.108370780647,0,0.0,0,0.0,77844,812.9585118612185,0,0.0,65513,681.5341205977636,0,0,0,0,0,0,0,0,120,1.2540495349566307,0,0.0,1,0.0104504127913052,0,0.0,0.02123,0.0560942743150051,0.238341968911917,0.00506,0.5292740046838408,0.4707259953161593,14.96367062168744,2.284722892644332,0.2476506357103372,0.5367606412382532,0.1006080707573244,0.1149806522940851,12.923752268031988,9.588697578524592,5.672530456344807,9410.393422669951,22.23621014296756,12.677371272383418,5.2332518875114,2.3416890795191194,1.9838979035536173,0.7263681592039801,0.8692070030895983,0.7053571428571429,0.6586538461538461,0.0934065934065934,0.8391304347826087,0.9270462633451956,0.8629441624365483,0.7802197802197802,0.1428571428571428,0.609673790776153,0.7897310513447433,0.5816733067729084,0.5641025641025641,0.0625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022901846334691,0.0047265498214865,0.006873305785963,0.0092478734972205,0.0114974105389538,0.0140269741667345,0.016186444999745,0.0182926829268292,0.020322168243416,0.0225265832121125,0.0243039169419537,0.0262833422382968,0.0283800331340488,0.0305569296726853,0.0326296774193548,0.0347166923482631,0.0369606664732457,0.0390404417870785,0.0411600112339681,0.043044148913995,0.0582582080665211,0.0716237580224681,0.085462998918987,0.0981595092024539,0.1100943575454372,0.125960663095717,0.1331768753716761,0.1398323587990329,0.1465941161378602,0.1526786385152904,0.1617333189608709,0.1707290651067056,0.1790843268550274,0.1851000229937916,0.1907862841024284,0.1977937830849304,0.2039226642825212,0.2098794637828095,0.2150606036509866,0.219070657968655,0.2221398366448473,0.2243659579452937,0.2266295330647073,0.2276891713634728,0.2295034150847086,0.23095117834748,0.2311097217880587,0.2323487580636968,0.232421748847063,0.2332263748980826,0.2258125117414991,0.2176313446126447,0.2103655974226082,0.201923629055412,0.196660756501182,0.1898202407951414,0.1829757132751709,0.1823135226570378,0.1817135116830342,0.1814499725852951,0.1816240903015,0.1822242247340686,0.1844987012987013,0.1850859319631467,0.1855055885226758,0.18825770250444,0.1908938077892967,0.1987627590473244,0.2055891654062972,0.2117619711761971,0.2178107771652143,0.2233597021870637,0.2286514800828359,0.234825797969469,0.2425528073659505,0.2482593311265837,0.253834808259587,0.2577238951896754,0.2692824509540446,0.2658274713069233,0.0,2.027038000528058,38.99762788433178,56.07271111895131,55.16990067448764,full_FIT_compliance,13 +100000,95658,56001,542.1397060360869,2087,20.667377532459387,1802,18.273432436387964,496,4.861067553158126,77.35161970545354,79.75853206090841,63.31721993396855,65.09492411311678,77.27051653895171,79.6833076640212,63.28262462928606,65.06442504896427,0.0811031665018333,75.22439688720794,0.0345953046824902,30.499064152508023,405.76668,285.3666843323091,424183.8633465052,298318.8793915881,880.94556,610.0318366519563,920363.0328879968,637154.5168377365,733.52233,364.2189873243878,763034.3410901335,377944.0812250776,1140.84431,630.297618870944,1156508.6349285997,623026.3372383016,317.83402,179.5727713782992,319571.2224800853,175325.9419681734,448.32384,224.72019960198656,438302.5779338895,209617.110879482,0.37928,100000,0,1844394,19281.08469756842,0,0.0,0,0.0,77513,809.7179535428296,0,0.0,65380,679.734052562253,0,0,0,0,0,0,0,0,158,1.6517175772021158,0,0.0,2,0.0209078174329381,0,0.0,0.02087,0.0550253111157983,0.2376617153809295,0.00496,0.5542340627973359,0.4457659372026641,14.632507974883955,2.2546853989918727,0.2369589345172031,0.56992230854606,0.0943396226415094,0.0987791342952275,12.997955806950378,9.674553797127246,5.6361771023618505,9362.693152967457,22.30726735337253,13.455024166759946,5.12460255700927,1.913947684355275,1.8136929452480448,0.7341842397336293,0.8763388510223953,0.7330210772833724,0.5224719101123596,0.1,0.8560606060606061,0.9302325581395348,0.8666666666666667,0.828125,0.1428571428571428,0.6059225512528473,0.8,0.6206896551724138,0.3508771929824561,0.0747663551401869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022593489427665,0.0044719363180043,0.0068707248259484,0.0091949118101276,0.0114841977845365,0.013841922998574,0.0161015652883291,0.017961626042826,0.0200511247443762,0.0219092492061866,0.0240166608531505,0.0262141110220523,0.0283923683289768,0.0304336171879832,0.0323926785935627,0.0343179349231803,0.0360681563782596,0.0382343475868655,0.0404402967217037,0.0423648402064543,0.0569592476489028,0.0709072823412386,0.0847669329190851,0.0979302797857676,0.1107616645383259,0.1261232654875686,0.1332512236815561,0.1409142747513936,0.1479341849070329,0.1534083587474765,0.1617765988419111,0.1703134816612145,0.1795374149659864,0.186170969542425,0.1917339175813892,0.1986988373768384,0.2040207739989948,0.2089851223300096,0.2138999205718824,0.2179137958660471,0.221090715738857,0.2227723350342717,0.226503348649319,0.2269906372191464,0.2280861168659664,0.2286704094544293,0.22923911011404,0.2279037365421152,0.2285073992504153,0.2291808784173794,0.2215571267877229,0.2146001968934587,0.2094634310185573,0.20213178016555,0.1952514378410264,0.1882810246131887,0.1811511265110299,0.1806995871395598,0.1802829758101323,0.1800882612533098,0.1803670302401807,0.1805566383409994,0.1829542872487657,0.1831249038440405,0.1847467220073577,0.1870009948218248,0.188630851152806,0.1971774689460091,0.2042214912280701,0.2102593883081688,0.2183092344540051,0.2262485243545655,0.233972602739726,0.2385442758214233,0.2437806428182313,0.2483267943687976,0.2544941316297727,0.255066250974279,0.2653755561371368,0.26946758420862,0.0,2.105947417684679,38.98439031200088,59.89962754574673,50.47256039915351,full_FIT_compliance,14 +100000,95789,56178,542.1812525446554,2044,20.08581361116621,1762,17.79953856914677,505,4.843979997703285,77.3507064425629,79.6808613526791,63.34838135415546,65.0707757319461,77.26569478713893,79.60534968403465,63.311800956284536,65.04032634811519,0.085011655423969,75.51166864445236,0.0365803978709209,30.44938383091278,406.1684,285.7346377130897,424023.8231947301,298295.6474262072,881.24572,610.0810131651411,919398.8453789058,636313.4108980584,733.42699,364.3715821368998,762328.2214032927,377711.9650492893,1133.5872,636.9392634248019,1140682.333044504,622201.1540206098,321.94395,184.08029582908725,319210.08675317623,175285.78002598113,458.1257,235.80331522013108,438224.09671256616,212466.9893022001,0.37992,100000,0,1846220,19273.810145215004,0,0.0,0,0.0,77487,808.3078432805437,0,0.0,65410,679.5769869191661,0,0,0,0,0,0,0,0,152,1.576381421666371,0,0.0,0,0.0,0,0.0,0.02044,0.0538008001684565,0.24706457925636,0.00505,0.5434255215914604,0.4565744784085395,14.63806311578843,2.1873006010096683,0.23155505107832,0.5550510783200908,0.0947786606129398,0.1186152099886492,12.653267804058562,9.51385934048759,5.759310925036466,9395.71670102508,21.84950876042302,12.74627886815552,4.925955030870267,2.344083306743604,1.8331915546536257,0.7185017026106697,0.8517382413087935,0.7328431372549019,0.5598086124401914,0.1017964071856287,0.8364640883977901,0.9230769230769232,0.8905472636815921,0.6956521739130435,0.1515151515151515,0.5939323220536756,0.7615740740740741,0.5797101449275363,0.452991452991453,0.0693069306930693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024107613143713,0.0046532846715328,0.0068596710199194,0.0093856655290102,0.0115198470798763,0.0137334948639376,0.0161530308589132,0.0182873937402414,0.0203153581246104,0.0224519033974621,0.0247148873382312,0.0268736660646856,0.0288991202828249,0.0309958617281917,0.0331009734367266,0.0351660158267732,0.0372708083274698,0.0393941592975399,0.0415918083349776,0.0434755450059341,0.057663410969196,0.0717086483264845,0.0853093485963477,0.0975650766627783,0.1096707558703258,0.1250819221580939,0.1336691410392364,0.1410753054361244,0.1474371977323924,0.1532294368582392,0.1622174381054897,0.1713140090352982,0.1784321182158961,0.1847069747118903,0.1909640540837638,0.1983011292623848,0.2038813319519178,0.2089813702260502,0.2137670899267129,0.2171819969812011,0.2200397008586464,0.2232606438213915,0.2257092910632869,0.2275917313279372,0.2281124692599367,0.2291026617838621,0.229708156647543,0.2309038566410064,0.2320170344560588,0.2318663567235333,0.2251416174520911,0.2176531785577397,0.2111324376199616,0.2036485961961444,0.1973983403714969,0.1897640310973847,0.1830044807798129,0.1814060436065948,0.1810093546637744,0.1816315696336931,0.1818908171987067,0.182295030630419,0.1831932773109243,0.1829284511038212,0.1841018092027161,0.1857981160240902,0.1875879142519552,0.1949015711358132,0.2029942604245903,0.2119326358368013,0.2196136302656292,0.2257389484697881,0.2306597351157321,0.2390441231552925,0.2441956501789483,0.2505499594766701,0.2544280996697688,0.253860036093844,0.2563127884876459,0.2602482136141406,0.0,2.318939079404968,37.91571791723571,59.73866306592854,47.903707184953134,full_FIT_compliance,15 +100000,95728,56293,544.0205582483704,2116,20.9656526826007,1820,18.35408657863948,525,5.045545712853084,77.31652017658898,79.67709015716528,63.31665033110207,65.06225601136315,77.23091173212394,79.60193311940948,63.27934595583324,65.03175147709905,0.0856084444650377,75.15703775580107,0.0373043752688317,30.50453426409661,405.54756,285.30081622749054,423645.24486043793,298032.33687053993,879.17422,609.1731905568734,917722.923282634,635675.1792522293,733.01293,364.3848743132874,761705.4884673242,377599.25214608526,1161.48407,647.6740955967664,1169368.9829516965,632865.8408284206,330.2137,187.31786609975356,330830.83319404983,181846.69730320817,469.49184,237.48788628353805,450393.2182851412,213352.40719634527,0.38057,100000,0,1843398,19256.60203911081,0,0.0,0,0.0,77316,806.9634798596022,0,0.0,65374,678.881831856928,0,0,0,0,0,0,0,0,143,1.49381581146582,0,0.0,2,0.0208925288316897,0,0.0,0.02116,0.0556008093123472,0.248109640831758,0.00525,0.5383529411764706,0.4616470588235294,14.88952306344388,2.275193880813996,0.2351648351648351,0.5582417582417583,0.0835164835164835,0.123076923076923,12.43760601293584,9.323824124977095,5.927397902080483,9425.767805815938,22.616251877497515,13.348888587590842,5.058592675781192,2.537243189792397,1.6715274243330809,0.7236263736263736,0.8366141732283464,0.7476635514018691,0.5803571428571429,0.1118421052631579,0.8387096774193549,0.9131175468483816,0.8693467336683417,0.7380952380952381,0.15,0.6033707865168539,0.7319347319347319,0.6419213973799127,0.4857142857142857,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020968183061354,0.004349104327815,0.0065871606191322,0.0092362091915014,0.0117696126302083,0.0136475668628928,0.0157975788604122,0.0180243660835554,0.0203476482617586,0.0225750967504146,0.0245267928552386,0.026625456935146,0.0286489932747876,0.0308506585112188,0.0328426872414824,0.0350153947885024,0.0369960146990321,0.0391170399261433,0.0414345114345114,0.0432771445835851,0.0578942972290087,0.0719734625325701,0.0850140011956077,0.098050350179822,0.1095621731061245,0.1252419482785975,0.1331586318112375,0.140127320729007,0.1467678170744737,0.1518224053389985,0.1611690438229844,0.170016125017586,0.1788899038670668,0.1862112697614414,0.1918923976093249,0.1989716198096167,0.2047268708204481,0.209860295606398,0.2139834594484214,0.2179907023610506,0.2213048405374777,0.2239545592669643,0.2267223233923799,0.2285173562034353,0.2293605815322257,0.2303534047531092,0.2317006122703986,0.2322950132700098,0.2342848290018978,0.2345372014999013,0.2271568495907688,0.2200633927468818,0.2130673036391738,0.2054912920093922,0.1984109370145146,0.1915405829562249,0.1843404951398282,0.1840657995659056,0.1835602023150819,0.1831405662385581,0.1833286869250069,0.1830170221091762,0.184575515704364,0.1842268086798957,0.1850955837009629,0.1859493541111339,0.1888642923193319,0.1955436390532544,0.2038398131611485,0.21177565743542,0.2174763322814347,0.2244378667497533,0.2301645787275853,0.2352204039510541,0.2413604449712774,0.2475453390319972,0.2547211895910781,0.2600352457411396,0.2604527296937416,0.268346923647146,0.0,2.4357469965588314,38.99812903263021,62.271943424226265,49.90665864485555,full_FIT_compliance,16 +100000,95678,56972,552.3004243399737,2101,20.767574573047096,1816,18.39503334099793,532,5.184054850644872,77.40264542862671,79.7845964184379,63.35728834693722,65.11263612724339,77.31755698005507,79.70679693165197,63.32118130499129,65.08136818724822,0.0850884485716392,77.79948678593485,0.0361070419459252,31.267939995174743,404.26518,284.49150115539305,422526.7877673028,297342.6505104549,889.53462,616.181551436192,929158.9393591004,643457.870603683,749.04172,371.7634903519871,779002.6024791488,385469.7982088934,1168.22692,633.6871718630696,1181583.4361086143,623264.4831933893,340.98574,189.55333764687117,340032.9333807145,181791.4283980748,475.69972,235.0955126707533,461993.60354522464,215871.43029643057,0.38272,100000,0,1837569,19205.763080331948,0,0.0,0,0.0,78227,817.0007734275382,0,0.0,66620,692.4998432241476,0,0,0,0,0,0,0,0,142,1.4632412884884718,0,0.0,1,0.0104517234892033,0,0.0,0.02101,0.0548965301003344,0.2532127558305568,0.00532,0.5214926783183751,0.4785073216816249,14.399321405059473,2.2318269982217984,0.2444933920704846,0.551762114537445,0.0914096916299559,0.1123348017621145,12.500675804197442,9.365414759590418,5.989435319305242,9474.85891733889,22.14482918322961,12.949771730448088,5.246141481079506,2.2400678254186235,1.7088481462833922,0.7351321585903083,0.8562874251497006,0.7680180180180181,0.553921568627451,0.1385542168674698,0.8608305274971941,0.9214285714285714,0.8899521531100478,0.7746478873239436,0.196078431372549,0.614054054054054,0.7737556561085973,0.6595744680851063,0.4360902255639097,0.1130434782608695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022784579396664,0.0045101198982435,0.006867518766484,0.0090592405268984,0.0113177616660395,0.0134818646518542,0.0156493724958455,0.0176871026015247,0.0198150324459659,0.0219822954510566,0.0240474799348073,0.0261582843122157,0.0281616286243059,0.0301763203427535,0.0323156450231636,0.0343868860592029,0.0363444333996023,0.0384882791827077,0.0404779981487452,0.0422312085713094,0.0574863935984622,0.0719842524631702,0.0852282863049204,0.0981623486593665,0.1108931358899717,0.1262364977095037,0.134987424520593,0.1420663224570181,0.1487469943895271,0.1552345408918345,0.1645326987066969,0.1732496483064603,0.1815344801339625,0.187931128723695,0.1948086229652441,0.2015164093198295,0.2071989747590126,0.2126405156827293,0.2173824431888948,0.220425745855091,0.2223940005768676,0.225467221619857,0.228658716397136,0.229897141218775,0.2308847029199554,0.231807518944744,0.2331071811628545,0.2326182214229629,0.2335522926326635,0.2345032921486844,0.2267570966102148,0.2201545519086887,0.2134538040442408,0.2053631508869386,0.1989196667746018,0.1913334951161803,0.18371443806656,0.1838643053454977,0.1826775375162471,0.1822172081298806,0.1823829598402485,0.1823725916718458,0.1823171483780783,0.1835897210823147,0.1845895910078398,0.1872233735001407,0.1883243907891795,0.1967852971909767,0.2038684852440993,0.2110732009925558,0.2203133345202065,0.2259992723114507,0.2321011912071718,0.2363394047090182,0.2449615243679003,0.253455168475157,0.2569011576135351,0.260233918128655,0.2688455455983131,0.28,0.0,2.3265857500760814,37.226491775259134,59.09549462922167,56.07309592784335,full_FIT_compliance,17 +100000,95725,56589,546.2836249673544,2026,19.890310786106035,1739,17.560720814834163,492,4.763645860537999,77.33907921770925,79.70674768684552,63.32552877917672,65.07560401034512,77.262044241426,79.63824489795999,63.29183456383859,65.04732534566652,0.077034976283258,68.50278888552452,0.033694215338123,28.27866467859508,404.97974,284.9690586980867,423065.573256725,297695.33341345174,883.55586,611.6045130159646,922407.6155654218,638312.4298285657,741.02919,367.81236981756985,770489.5481849047,381356.2036720475,1106.9033,617.5541312415984,1117284.9307913294,606185.726914211,318.88758,182.94213122616063,316810.9793679812,175006.34058656925,439.05326,221.59033443986428,424553.3977539828,202360.8317286473,0.38103,100000,0,1840817,19230.253329851137,0,0.0,0,0.0,77712,811.1882998171847,0,0.0,66025,686.1008096108645,0,0,0,0,0,0,0,0,142,1.4729694437189869,0,0.0,2,0.0208931835988508,0,0.0,0.02026,0.0531716662729968,0.2428430404738401,0.00492,0.537027954879843,0.4629720451201569,14.697792411568798,2.2359625016668883,0.2265669925244393,0.5681426106958022,0.0879815986198964,0.1173087981598619,13.139401447694311,9.89418010004671,5.525707600751781,9441.590400048008,21.597517871881237,12.914059735986555,4.758732345368062,2.3160814000193986,1.6086443905072143,0.7360552041403106,0.8623481781376519,0.7284263959390863,0.5882352941176471,0.1372549019607843,0.8655555555555555,0.9339130434782608,0.8900523560209425,0.7058823529411765,0.2448979591836734,0.5971394517282479,0.7627118644067796,0.5763546798029556,0.5042016806722689,0.0865384615384615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002157267865824,0.0047349637019913,0.0072673385909889,0.0093988782311819,0.0116273155447951,0.0138202853680147,0.0161321572426451,0.0182850258808155,0.0205525675371684,0.0227472910137446,0.0249417990503245,0.0270431272660045,0.0291570676320552,0.0312686736312872,0.0332579816059207,0.0352519027134348,0.03756267351759,0.0396006724642493,0.0418954329922635,0.044035837066361,0.0595550079873038,0.0731967607608445,0.0863958060288335,0.0989262916574649,0.1110454938518971,0.1266461460349697,0.1348334871680618,0.1417695911413969,0.1481137116597199,0.1537041806163619,0.1624315703263071,0.171519528754426,0.1799993472371813,0.1859579636093088,0.191406206995255,0.1974907732718587,0.2027505218624069,0.2089394399630992,0.2134097226161438,0.218349863710287,0.2212559269110674,0.224533439285756,0.2281141102120371,0.2308731734149666,0.2313646163909009,0.2320073664825046,0.2327294023824951,0.2323899968344412,0.233058596265293,0.2331114349864103,0.2258327868413656,0.2176173601324449,0.2111134468502557,0.2047356163201932,0.1978826760376216,0.1907860726775125,0.183693979460444,0.1825999153122048,0.1823467588825603,0.1811663479923518,0.1814827176976709,0.1814082417475159,0.1813846916026752,0.1809664476874917,0.1828144928905475,0.1843853820598006,0.1868949695036651,0.1947347328832578,0.2013332875158929,0.2085438855632434,0.2159161836825679,0.2233898657787951,0.228724716329551,0.2364407410162934,0.2405501411786137,0.2469789388882495,0.2531039640987285,0.2585356226564042,0.2598551890587289,0.268491124260355,0.0,2.2753137795180978,37.84143053281768,58.20547359386202,47.00197616367779,full_FIT_compliance,18 +100000,95684,56515,546.6013126541533,2049,20.212365703774925,1768,17.850424313364826,482,4.6193720998286025,77.30793472821749,79.68461695898677,63.31631099018998,65.07039345179345,77.23523893095778,79.62053619110584,63.28498729281991,65.04464680936522,0.0726957972597119,64.08076788092387,0.0313236973700767,25.74664242823133,405.01186,285.0320703687299,423280.6529827348,297888.95778680855,884.27932,612.5776823134553,923476.4328414364,639519.2010299059,736.18569,365.68479190509134,765468.0719869571,379131.47523037787,1112.46207,616.7616165651219,1119269.0313950086,601209.1118317817,323.42797,182.115361327333,321136.062455583,173449.2928047877,432.965,213.37579768628203,413044.43794155767,189943.3988047073,0.38131,100000,0,1840963,19240.029681033404,0,0.0,0,0.0,77670,811.0864930395886,0,0.0,65575,681.3469336566197,0,0,0,0,0,0,0,0,159,1.651268759667238,0,0.0,2,0.0209021361983194,0,0.0,0.02049,0.053735805512575,0.235236700829673,0.00482,0.5345330739299611,0.4654669260700389,14.771821080512993,2.2133036543353426,0.2290723981900452,0.5752262443438914,0.0865384615384615,0.1091628959276018,13.70382063618859,10.477015262022364,5.43741829811469,9429.47352006006,21.88906158088169,13.33360790573465,4.790741604569458,2.139387902842344,1.6253241677352357,0.7398190045248869,0.8623402163225172,0.7432098765432099,0.5854922279792746,0.1111111111111111,0.8533333333333334,0.9187817258883249,0.8956043956043956,0.7567567567567568,0.1132075471698113,0.6221198156682027,0.784037558685446,0.6188340807174888,0.4789915966386555,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019338638802826,0.0039824084958047,0.0061879304922955,0.0085926708377346,0.0109226263119355,0.013329395951285,0.0156213355630104,0.0178458397141398,0.0201087734363818,0.0222845502656334,0.0244905072374625,0.0265197794638548,0.0288170804451117,0.0308340544772736,0.0330117125019348,0.0351907371032771,0.037176724137931,0.0391611295681063,0.0412782956058588,0.0430453910468922,0.0576830669591559,0.0717111874057946,0.085226259298507,0.0979973494330731,0.1100790722192936,0.1261288889828895,0.1336473483763512,0.1408985917591833,0.1479926500438006,0.1542628507680425,0.163053662003683,0.1713377105214767,0.1799365134582771,0.1863904678618277,0.1929442556607612,0.1984431920100096,0.20477789054571,0.210103781328356,0.2146599233438414,0.2180561278212699,0.2209833562729155,0.2241006647895222,0.2267021276595744,0.226556791912707,0.2278852924750503,0.2294942678767131,0.2304037410755592,0.2307144763769018,0.2314517798013245,0.2331379650971353,0.2257938905673044,0.2181371539928911,0.2114234365785852,0.204970553931662,0.1989641905889316,0.1909650298525649,0.1846674537583628,0.1848163265306122,0.1842771033194668,0.1835812964930924,0.1838395096127054,0.1850090047764466,0.1859574291866821,0.1870341786108048,0.188375898129046,0.1904945606048916,0.1918146371567224,0.2003525264394829,0.2076952328274622,0.2132052727767624,0.2199991067839757,0.2269304668432258,0.2331979320531757,0.2404160475482912,0.2448326321565758,0.2509475134948892,0.2562189054726368,0.2600116076610563,0.264047866805411,0.2640895953757225,0.0,2.4484126409173976,37.64103140353727,59.29900332717425,49.69529545855682,full_FIT_compliance,19 +100000,95695,56632,547.9283139139976,2072,20.34589058989498,1772,17.81702283295888,531,5.089085114164795,77.38171245272493,79.75596066379198,63.34258245905804,65.09505708525174,77.29285886089905,79.67834426832901,63.30351988817658,65.06322978625028,0.088853591825881,77.61639546296806,0.0390625708814624,31.827299001463416,405.59046,285.36017981795254,423836.1669888709,298197.1461726241,882.27609,610.6567054299152,921195.6737551596,637357.8680726843,734.32114,364.4567632875182,763514.9694341398,377852.9929374532,1111.00669,629.2987563558048,1110909.7445007577,607635.3019518629,330.18607,188.33206196852367,327294.04880087776,179302.16985506073,478.42032,245.66040382747312,455529.9649929464,217772.0537150748,0.3815,100000,0,1843593,19265.28031767595,0,0.0,0,0.0,77648,810.6693139662469,0,0.0,65442,679.9832802131773,0,0,0,0,0,0,0,0,141,1.462981346987826,0,0.0,3,0.0313496002925962,0,0.0,0.02072,0.0543119266055045,0.2562741312741313,0.00531,0.5357657225156025,0.4642342774843975,14.52990931737361,2.269710026798616,0.2392776523702031,0.5524830699774267,0.0981941309255079,0.1100451467268623,13.08946109663115,9.835264897577147,5.97924778481201,9414.673601155511,22.066964357413045,12.912343814546302,5.057978936840997,2.214326338034908,1.8823152679908413,0.7325056433408578,0.8702757916241062,0.7311320754716981,0.6205128205128205,0.0862068965517241,0.8342303552206674,0.9262435677530018,0.845771144278607,0.7792207792207793,0.0735294117647058,0.6204033214709371,0.7878787878787878,0.6278026905829597,0.5169491525423728,0.0943396226415094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024104683195592,0.0045514906385264,0.0067784226975686,0.0091725412916725,0.0113310413572838,0.0136659877800407,0.0158042314555187,0.0180999632488055,0.0202304161597988,0.022387143003378,0.024543022051813,0.0266424369359657,0.0287632915818267,0.0309641532756489,0.0326305687130429,0.034688117122799,0.0369123693722618,0.0391520006641208,0.0411232449297971,0.0430405602567843,0.058382420520533,0.0717890196406884,0.0849204100691493,0.0971458028678737,0.1095147679324894,0.1250859251895641,0.1328282506737972,0.139702515944251,0.1466257799811949,0.153191717626864,0.1619338082357125,0.170955902255232,0.1798712175596597,0.1856572834107679,0.1914760228772547,0.198977219897722,0.2054098049928084,0.2108251537536119,0.214504388053609,0.2189120208760143,0.2222556251878917,0.2246740806504369,0.2269873363839523,0.2289000873801515,0.2291065233740084,0.2300538785150195,0.2309045978732964,0.2308668612768117,0.231664816583628,0.2321259594154137,0.2238509982580731,0.2171201116172186,0.2112676056338028,0.2047315219729013,0.1981657048639736,0.1900538245773633,0.1822541966426858,0.1818476867403404,0.1814013855411532,0.1806462974377036,0.1811276819870266,0.1822591012680418,0.1830264376092994,0.1848305847734908,0.185345946073459,0.1886229834085174,0.1908050458076912,0.1988904554649666,0.2061105225385325,0.2152305074257425,0.2204630122405534,0.2270868912694716,0.2357503385448726,0.2402587745389649,0.2453847559861085,0.2484171750892137,0.2523309160870208,0.2587727896490884,0.2695907996790586,0.2703206562266965,0.0,2.631320019723466,38.69321307011513,58.47347788313443,47.83120608103098,full_FIT_compliance,20 +100000,95859,56105,542.89112133446,2041,20.17546604909294,1769,17.89086053474374,492,4.767418813048332,77.44506122741345,79.72271675305774,63.40474875222951,65.08396823867952,77.36799972044338,79.65367044475583,63.37147582962365,65.05598253840998,0.0770615069700682,69.04630830190683,0.0332729226058603,27.985700269539397,406.79694,286.19152020140484,424370.1060933246,298554.6690466256,878.1479,607.8887119869809,915554.43933277,633620.3611418654,726.61734,360.237398679541,754534.618554335,373121.7832829586,1114.69331,617.4640835461239,1124032.579100554,605323.614419224,338.86886,189.7748740009452,337382.7287995911,181849.07539548175,440.81096,221.633108181297,425348.4597168758,201740.9981309876,0.37904,100000,0,1849077,19289.5502769693,0,0.0,0,0.0,77437,807.2481457140175,0,0.0,64831,672.8632679247645,0,0,0,0,0,0,0,0,119,1.2309746606995693,0,0.0,0,0.0,0,0.0,0.02041,0.0538465597298438,0.2410583047525722,0.00492,0.5231368728689723,0.4768631271310277,15.005229114021564,2.212723916545813,0.2097230073487846,0.5856416054267948,0.0847936687394008,0.1198417184850197,12.626608335069088,9.48890453304173,5.556577138016518,9328.435002802898,21.86302945739347,13.403520764257786,4.400883959183433,2.398082861639045,1.6605418723132053,0.7501413227812324,0.8677606177606177,0.738544474393531,0.6367924528301887,0.1266666666666666,0.831603229527105,0.9105545617173524,0.8580246913580247,0.7848101265822784,0.1641791044776119,0.6718403547671841,0.8176100628930818,0.645933014354067,0.5488721804511278,0.0963855421686747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021154274378023,0.0043557977694263,0.0064386603530616,0.0088810848118225,0.0107809864450179,0.0127478609435248,0.0148802248838914,0.0169883854915516,0.0190648326849043,0.0212167689161554,0.0233667827155437,0.0254140813291626,0.0275355620602886,0.0294386899680103,0.0314335167212709,0.0333188827646002,0.0354609195640033,0.0372101216504673,0.0392429637781215,0.0414117451200732,0.0560983493738464,0.0698488314998798,0.0832068182056141,0.0957532765984238,0.1081769211345846,0.1232888279064858,0.1313228644945414,0.1388030047068073,0.1463242978097208,0.152490314847713,0.1617070208810222,0.1698536954057118,0.1778197488249915,0.184715809236882,0.1903501740438568,0.1964939445888403,0.2019631437039017,0.207657576710544,0.212657482099157,0.2176095307783773,0.2195716464119033,0.2217303446906428,0.2248570348315137,0.2266033992302727,0.2273966296354627,0.2287947114262192,0.2298017959509922,0.2288872251056432,0.2297611362169141,0.2311939631372755,0.2240974838130219,0.2174609038295776,0.2111129758608151,0.2051990833572042,0.198287404181441,0.1915383334090461,0.1849563612475365,0.1835002106218204,0.1839634567734758,0.1836383132064195,0.1833197992027166,0.1834251562287071,0.1845744790485809,0.1850217362666315,0.1864610596307561,0.1878746142270513,0.1892087331386455,0.1970207809722307,0.2057941376959781,0.2132401220501332,0.2194525904203323,0.2247784859319135,0.2302885498989156,0.2351451973194341,0.2411575562700964,0.2441200324412003,0.2486163051608077,0.2509505703422053,0.2576571735626007,0.2596081386586285,0.0,2.17886846834166,36.49454220221893,62.98344060081367,50.53661623998203,full_FIT_compliance,21 +100000,95684,56013,541.4384850131684,2075,20.44228920195644,1772,17.923581790058943,528,5.152376572885749,77.29747507811412,79.69944049915193,63.28577397120039,65.06540976005066,77.2100054744871,79.62130871324537,63.24805261309125,65.03354845911137,0.0874696036270137,78.13178590656378,0.0377213581091453,31.86130093928341,405.01692,284.9418975831836,423285.941223193,297794.71759456507,883.60132,611.740307024685,922874.6289870824,638750.8329759262,725.55062,359.4026954590573,754455.7397266001,372751.9529754252,1113.11466,628.7332902186341,1119311.1073951758,613283.0485988185,332.4941,192.3207048322304,330669.1400861168,184259.8627684441,470.23754,237.0911023218002,455826.9721165503,217119.9447984913,0.38018,100000,0,1840986,19240.27005559968,0,0.0,0,0.0,77768,812.1420509176038,0,0.0,64907,674.5014840516701,0,0,0,0,0,0,0,0,130,1.3586388528907656,0,0.0,1,0.0104510680991597,0,0.0,0.02075,0.0545794097532747,0.2544578313253012,0.00528,0.5287356321839081,0.4712643678160919,15.008119499893189,2.227148577901511,0.2302483069977426,0.5665914221218962,0.087471783295711,0.1156884875846501,13.45895749440557,10.383557018458768,5.907431087449053,9391.748812787026,21.95515595748766,13.130503096014603,4.845292200654099,2.300716590983302,1.6786440698356573,0.7341986455981941,0.8675298804780877,0.7352941176470589,0.5317073170731708,0.1354838709677419,0.8309549945115258,0.9057591623036648,0.8609625668449198,0.7411764705882353,0.2121212121212121,0.6318234610917538,0.8167053364269141,0.6289592760180995,0.3833333333333333,0.0786516853932584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023308605942681,0.0044022477836609,0.0065790141631554,0.0089421806726958,0.0109354654947916,0.0132310700971704,0.0152788543919056,0.0173913931496497,0.0194728821706536,0.0219352592395367,0.0239401803206384,0.0261860245320622,0.0284253410423653,0.0301206681574147,0.0325131900922015,0.034652185156452,0.0368681267426072,0.0390637979730852,0.040981730409089,0.0430432516935904,0.0575687618172131,0.0718644990421556,0.0847342021868244,0.0976920811242952,0.1098417721518987,0.1252552396872586,0.1328415242543254,0.1393941975887189,0.1464257071058119,0.1524785003381969,0.1616771633163661,0.1704604578563995,0.1789020803834005,0.1858854976884818,0.1925162570263419,0.1987621044224818,0.2047354071690355,0.2104634926354668,0.2150425292708132,0.2183117954357987,0.2203748943511132,0.2220297724932122,0.2247361196573105,0.2266989534758268,0.2284246076096992,0.2305597989454491,0.2305460366692513,0.2309326075620954,0.2315668202764977,0.23187775228753,0.2244488977955911,0.2184209802897435,0.2114037309023381,0.2042463640687836,0.1979593345656192,0.1910764031602502,0.1838574884539256,0.1823178366424378,0.1819348086629192,0.1817316505675809,0.1825584401196499,0.1827057725221721,0.1841720093178585,0.1843561920660721,0.1863874592756976,0.1890828243592037,0.1904363118666778,0.1974780870367522,0.2047684391080617,0.2115116279069767,0.2167748244288381,0.2242092205912755,0.2334292184344207,0.2383725215596668,0.2443290516534572,0.2466460268317853,0.2493676536229727,0.2536728697355533,0.2648619957537155,0.2768319763138416,0.0,2.3171761447549395,38.24508818549779,58.60230245337117,49.5547404432596,full_FIT_compliance,22 +100000,95829,56069,540.7548863079027,2067,20.411357730958272,1792,18.11560174894865,484,4.674993999728684,77.32864418348662,79.63794826013944,63.32870225298407,65.03792723038495,77.25003886783841,79.5688200692151,63.29434080450171,65.00960901477195,0.078605315648204,69.12819092433153,0.0343614484823575,28.318215612998188,405.2983,285.171951184588,422938.8598440973,297583.9580759353,882.79882,611.3117537676002,920630.5919919856,637326.9300186795,730.27717,362.8007988873411,758219.4638366257,375647.8303799615,1131.42715,637.5653157585452,1137012.897974517,622126.9970993145,327.04732,185.91544875464177,324344.08164543094,177286.45194035798,434.60742,222.48288988970964,417759.6552191925,200529.16360530347,0.38019,100000,0,1842265,19224.493629277156,0,0.0,0,0.0,77696,810.1514155422681,0,0.0,65213,676.7053814607269,0,0,0,0,0,0,0,0,127,1.3148420624236925,0,0.0,3,0.0313057633910402,0,0.0,0.02067,0.0543675530655724,0.2341557813255926,0.00484,0.5388675623800384,0.4611324376199616,14.378980351191489,2.200040023412268,0.2399553571428571,0.5719866071428571,0.0837053571428571,0.1043526785714285,12.623346151037326,9.467490408459586,5.492518382228271,9411.642785577314,22.26067819988666,13.326473250046352,5.170210944607072,2.110164883488068,1.6538291217451608,0.7360491071428571,0.8497560975609756,0.7465116279069768,0.5935828877005348,0.1066666666666666,0.8355879292403746,0.9177631578947368,0.8407960199004975,0.7528089887640449,0.1428571428571428,0.6209386281588448,0.750599520383693,0.6637554585152838,0.4489795918367347,0.0804597701149425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022889552843469,0.004439849166768,0.0066149241617206,0.0091012514220705,0.0112466951393125,0.013663205049888,0.0157578228519009,0.0181350587322808,0.0203772967890939,0.0224814530570478,0.0247036281852925,0.0266928018718827,0.0289707620368943,0.0309968189913423,0.0328026068843195,0.03503026796967,0.0373156723754333,0.0392738281614498,0.0415675602688077,0.0435167259934636,0.0578682215013611,0.0724763448167703,0.0856313345701139,0.0980464275580869,0.110274896702926,0.1260623229461756,0.13397240808882,0.1411743423852898,0.1489566201755697,0.1539665523156089,0.1640034456767524,0.1729968304107484,0.1797603774815716,0.1866072111653934,0.1924295426044485,0.1992934192748134,0.2051167567084877,0.2100459190564084,0.2144673219677192,0.2171675492286179,0.2191945873302748,0.2225476527994189,0.2247426836787933,0.2258494097322199,0.2260400466562986,0.227753011009581,0.2288748248949369,0.2305521300804739,0.2317584351066031,0.2320101217776372,0.2250372778441987,0.2173907073813708,0.2114135477884318,0.2050927127490844,0.1985789356820368,0.1909183782382629,0.1842047244094488,0.1833072560140817,0.1825872161878658,0.183069754306693,0.1831520832947366,0.1846775610613249,0.1846919392137429,0.1847873932564486,0.1873211117681845,0.1874695208028541,0.1891574682129383,0.1960548990645002,0.2025264455170997,0.2067833275389191,0.213177263456593,0.2198654940506983,0.2257530212870376,0.2304038004750593,0.2374508548962238,0.2468449693180502,0.2571344078071861,0.2623849618171137,0.2659265133491937,0.2752704214845207,0.0,2.2436033193542,40.589312546838734,54.9572758076724,48.95127463787784,full_FIT_compliance,23 +100000,95753,56363,544.6304554426493,1990,19.74872849936817,1731,17.56602926279072,467,4.490720917360291,77.35098256499538,79.69878531161841,63.33757887846742,65.07088131007164,77.27390943430261,79.63103131803727,63.30372228355915,65.04294585905697,0.0770731306927672,67.75399358113532,0.0338565949082649,27.93545101467032,405.64084,285.3476189680624,423632.28306162736,298003.6192788343,882.15898,610.4506398829628,920777.949515942,637018.6244639467,733.33226,363.7223033797249,763385.1054275063,377835.3607083461,1075.68502,603.1693109937812,1086725.8884839118,593276.3701333441,311.41601,176.98924038293066,309626.9673012856,169266.857354091,416.86336,216.94173866642237,399570.8541768926,195787.82549995856,0.38191,100000,0,1843822,19256.01286643761,0,0.0,0,0.0,77647,810.3871419172245,0,0.0,65294,679.4043006485437,0,0,0,0,0,0,0,0,133,1.3889904232765553,0,0.0,1,0.0104435370171169,0,0.0,0.0199,0.0521065172422822,0.2346733668341708,0.00467,0.5495764823119084,0.4504235176880917,14.818627862410963,2.2247499757132325,0.2357019064124783,0.5701906412478336,0.0803004043905257,0.1138070479491623,12.491243317418046,9.32594151917082,5.418085209363368,9434.604866090278,21.59042073965168,12.941983413373732,4.847746875384923,2.2726841215459683,1.528006329347063,0.7406123627960717,0.8774062816616008,0.7132352941176471,0.5482233502538071,0.1223021582733813,0.8378378378378378,0.935483870967742,0.8494623655913979,0.6292134831460674,0.1454545454545454,0.638196915776987,0.8018648018648019,0.5990990990990991,0.4814814814814814,0.1071428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.0047941942611568,0.0069099875194058,0.0090700414398309,0.0113979522323108,0.0137736559741833,0.0160650757892376,0.0182174458834695,0.0204317340910484,0.0228845130388504,0.0250838006006991,0.0269146675699812,0.0291371936173712,0.0310266707857069,0.032959891062144,0.0350380353894493,0.0371425021227245,0.0390693909740886,0.041120387602541,0.0432454394865971,0.0573737120666437,0.0708629292939859,0.0838907878457441,0.0974830203755493,0.1097640683969723,0.1252259585399114,0.1327188646825481,0.1406996668759778,0.1471929918273596,0.1532033127360109,0.1624279635913179,0.170532148616327,0.1794422813390468,0.1859068332494584,0.1909929343399881,0.1980609418282548,0.2042244872896966,0.2096190176322418,0.2139008926242245,0.2175103382705018,0.2207382224380767,0.2241887215935658,0.227445652173913,0.229558582584881,0.2323918917281572,0.2332829641641789,0.234431914575121,0.2336815945630674,0.2349775437509679,0.2355951378657124,0.2278841248959647,0.220009327078704,0.213198966988547,0.2059572997797325,0.199036230063118,0.19158978106635,0.1841707831230532,0.1823044931908994,0.1812559305950928,0.1818760048764112,0.1817121271040497,0.1821159132112989,0.1833353988515718,0.1835656252064205,0.1848675973826565,0.186817972232184,0.1886376326074818,0.1948559987679039,0.2022183424052583,0.2095894121744514,0.2147931095720121,0.2199792960662525,0.2255616086184734,0.2317568066110824,0.2370646539965445,0.2405833716123105,0.2462574850299401,0.2525014714537963,0.2621333333333333,0.264074074074074,0.0,1.98232274542052,37.690598425303214,62.15977737106439,43.4019465239824,full_FIT_compliance,24 +100000,95842,56962,550.0824273283112,2067,20.262515389912565,1788,18.06097535527222,529,5.133448801151896,77.51248185563044,79.79883493115572,63.42745123530996,65.1110222444062,77.43140728768077,79.72547793586251,63.3926638177552,65.08117190052774,0.0810745679496705,73.35699529321005,0.0347874175547602,29.85034387846497,406.52524,285.9108733753622,424161.4323574216,298314.4040629936,884.73002,612.2129482444026,922486.9681350556,638149.6939609968,741.1377,367.69164832153984,769443.1042757872,380730.0952204908,1114.14224,623.3760067930069,1121854.781828426,610109.2129015754,323.45254,179.67793768948923,322969.92967592494,173175.02770966207,473.17778,233.59293961535727,457470.44093403727,213785.18217885745,0.38444,100000,0,1847842,19280.06510715553,0,0.0,0,0.0,77783,810.9179691575719,0,0.0,66026,685.1380396903237,0,0,0,0,0,0,0,0,145,1.5024728198493351,0,0.0,0,0.0,0,0.0,0.02067,0.0537665175319945,0.2559264634736333,0.00529,0.5474241694752047,0.4525758305247954,14.645894643992536,2.2945413208280394,0.238814317673378,0.5749440715883669,0.0855704697986577,0.1006711409395973,12.598062933989535,9.289458177376714,5.855279741762702,9461.320150920796,22.16599721701498,13.376431433695512,5.108918710769278,2.101133724925444,1.5795133476247447,0.7259507829977628,0.8511673151750972,0.6861826697892272,0.6222222222222222,0.1176470588235294,0.8056460369163952,0.8902027027027027,0.7846153846153846,0.7125,0.0925925925925925,0.6412918108419838,0.7981651376146789,0.603448275862069,0.55,0.1313131313131313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026207678141379,0.0045269948653548,0.006821475993067,0.0091018863329646,0.0112659745220341,0.0134445235431709,0.0160656472073466,0.0185389133627019,0.0208918342131865,0.0230800695367624,0.0254467257180891,0.0274333651252704,0.0295202572875887,0.0316571640285696,0.0338450119070937,0.0359020440202852,0.0376436989745765,0.0397184149957492,0.0414692927781933,0.0434017656367119,0.0573052455939096,0.0712448505886535,0.0854508304081311,0.0983289745932717,0.1101365651290366,0.126318902419704,0.1335276349954957,0.1402883817868611,0.1470600789670259,0.1530182799498827,0.1622810319056273,0.1707854488896569,0.1792995635842543,0.1854848395514647,0.1913652787997935,0.1977622253916658,0.2043614331696125,0.2100039297142536,0.2151338502461939,0.218617239961628,0.2220378245686823,0.2245292241800703,0.2272154359016644,0.2285080553799921,0.2298061584570019,0.2315443646259837,0.232245705258182,0.2337270258321228,0.2342153624715664,0.235461846338975,0.228476467604581,0.2200128112520954,0.2145714006995833,0.2071110856848639,0.2000058782036209,0.1922191249545509,0.1852426393393816,0.1841046277665996,0.1841262348696854,0.1841548923575631,0.184438572827553,0.1859926420493255,0.1869203182324086,0.1869884805266045,0.187828947368421,0.1894956274150905,0.1912642656818371,0.1975399078228489,0.2049032609065252,0.2114604850432254,0.2163758037003018,0.2228332824116508,0.2262213901805664,0.2306400992628275,0.2379028638118323,0.2409638554216867,0.2443478260869565,0.2498573873359954,0.2601141078838174,0.2614777618364419,0.0,2.18035962195853,38.75487666806915,59.55665971611866,49.60404126868581,full_FIT_compliance,25 +100000,95723,56261,543.8086980140614,2117,20.716024361961075,1817,18.24013037618963,551,5.30697951380546,77.31288813594676,79.67038733241787,63.318020272784125,65.06190173996599,77.21851975097962,79.58580900427748,63.27803636330943,65.02740650267198,0.0943683849671401,84.57832814039534,0.0399839094746994,34.49523729400994,405.60476,285.4157169279144,423726.6696614189,298167.49321679655,881.99208,610.1642146359192,920633.3900943348,636661.1082184211,733.99212,364.8217928139192,761520.1257795931,377034.7718509236,1158.70519,653.4475684218046,1165768.3419867745,638075.9328685945,349.03053,200.40145487139128,349253.05308024195,194159.32045797768,491.84038,251.54093332114968,473625.1057739519,231587.92068922424,0.37995,100000,0,1843658,19260.30316642813,0,0.0,0,0.0,77543,809.283035425133,0,0.0,65455,678.5516542523741,0,0,0,0,0,0,0,0,138,1.441659789183373,0,0.0,0,0.0,0,0.0,0.02117,0.0557178576128437,0.2602739726027397,0.00551,0.5457531675269827,0.4542468324730173,14.9101449679981,2.1979870781152653,0.2355531095211887,0.5569620253164557,0.0869565217391304,0.120528343423225,13.295338676949472,10.190103500587975,6.245292390713035,9429.278674398354,22.430994060653084,13.20179628644247,5.010966337087845,2.4382952792486967,1.779936157874071,0.7237204182718767,0.8438735177865613,0.7102803738317757,0.6073059360730594,0.1518987341772152,0.8479212253829321,0.9234875444839856,0.8817733990147784,0.7777777777777778,0.2058823529411764,0.5980066445182725,0.7444444444444445,0.5555555555555556,0.5072463768115942,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022585022990135,0.0043381749257543,0.0067269351352996,0.0093548124974606,0.011269210036513,0.0135132382892057,0.0158050372183134,0.0179069126399934,0.0198642321140123,0.0222299587348071,0.0244230039679691,0.0266160086255583,0.028724815649008,0.0307359530308492,0.0328281525652797,0.0349531821658157,0.0370692511597084,0.0389719538894134,0.0409504497478292,0.0430619516972639,0.0577131880063476,0.0722887784462464,0.0851177617919087,0.0981989843659646,0.1106846888640533,0.1264146553000655,0.1342678565743816,0.1420998286158333,0.1488745740260017,0.1555274334005405,0.1642061056372153,0.1729381861446109,0.1801357052759775,0.1859714748217176,0.1915345428939232,0.198451467118599,0.2046268706685861,0.2102681785457163,0.2158750340568522,0.2189937351826188,0.2213775787658949,0.2241167739899727,0.2270589069591528,0.2280563137480247,0.2294879105147585,0.230454042081949,0.2323401489776533,0.2320143199908595,0.2326008035864243,0.2327336423980613,0.2254020718287718,0.217406213565599,0.2101951973037494,0.2035722002160604,0.1964042414548901,0.1889475450855939,0.1819801917739086,0.1816785912640073,0.182051282051282,0.1825102479016201,0.1820581946639397,0.1817219270210388,0.1829205098973987,0.1839856944168488,0.1855528115501519,0.187535352496529,0.1885112359550561,0.1954283233050059,0.2028274169575887,0.2102421657994601,0.2172822923662413,0.2255385413963145,0.2318796256651783,0.2400652431791221,0.2438084755090809,0.2474072366904816,0.2503366751458926,0.2583694367861363,0.2677271501752494,0.2746686303387334,0.0,2.8216905643584917,37.62358280792105,61.260584703582666,52.97062211261681,full_FIT_compliance,26 +100000,95786,56343,543.7015847827448,2081,20.69195915895851,1799,18.23857348673084,489,4.729292380932495,77.37208356525132,79.7113971289599,63.35007434272507,65.07994645603576,77.2943104650631,79.64073195924882,63.31701497549615,65.05145755868028,0.0777731001882102,70.66516971107717,0.0330593672289225,28.488897355472886,405.38388,285.24078895497604,423217.8397678157,297789.24401172635,885.77942,613.4548550806029,924214.2693086672,639911.1618797953,733.4393,364.492238408001,762483.4526966363,378038.2022822772,1111.90093,622.4848559667702,1122112.5738625687,611333.1409310768,320.95816,181.87010893452984,318469.7763765059,173540.54436974842,432.58162,215.4020429106944,415856.97283527866,195707.1349434645,0.38159,100000,0,1842654,19237.174534900714,0,0.0,0,0.0,77994,813.6784081180966,0,0.0,65459,680.2246674879418,0,0,0,0,0,0,0,0,131,1.357192073998288,0,0.0,1,0.010439939030756,0,0.0,0.02081,0.0545349720904635,0.2349831811629024,0.00489,0.5573065902578797,0.4426934097421203,14.496022681971665,2.1474890145685994,0.2306837131739855,0.58532518065592,0.0717065036131184,0.1122846025569761,13.299559983562416,10.155933017338304,5.582103791999824,9432.0928211648,22.36629419422229,13.701240052673796,4.972586941060781,2.3306414317410677,1.3618257687466515,0.7342968315730961,0.8433048433048433,0.7349397590361446,0.5495049504950495,0.1317829457364341,0.8509052183173589,0.9052287581699346,0.903061224489796,0.6704545454545454,0.2093023255813953,0.6069767441860465,0.7573696145124716,0.5844748858447488,0.4561403508771929,0.0930232558139534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00211688443229,0.0042678723490531,0.0065454324044569,0.0087158805782143,0.0110647818570121,0.013235054569148,0.0155439358264787,0.0177459844480274,0.0198557063440156,0.0221574045645276,0.0243694981605025,0.026560206898675,0.0288019735827722,0.0308793245469522,0.033287272877266,0.0353567184997675,0.0375430860478837,0.0396768606954339,0.041562327905986,0.0436643033388512,0.0581544594129248,0.072351907630522,0.0858316910562287,0.0993369829044562,0.1113873642292011,0.1268645679273188,0.1345463022814695,0.1414719203861611,0.1476597424489752,0.1539985860879624,0.1636782153190848,0.1730860675225868,0.180934169210878,0.187549862843029,0.1934760381279066,0.1998251032223071,0.2053963652581112,0.2096919170355722,0.2144872041780426,0.2186781379065749,0.222571438475671,0.2251381054156009,0.228018182891552,0.2292351654132641,0.2299173673879855,0.2310168970814132,0.231824879498514,0.2317943775915194,0.2318853664198932,0.2326198641386469,0.2242503783262578,0.2154685555661912,0.2090776522056142,0.2026906603041366,0.1964718039563035,0.189090577396698,0.1817425301072398,0.1818285323921211,0.1819583523949914,0.1821330741362551,0.1827302174919019,0.1830928237129485,0.1838394681971139,0.1849310549581051,0.1857369180203825,0.1873429406636237,0.1883976660682226,0.1950239530211713,0.2017957274072035,0.2082068052635677,0.2149216524216524,0.2205996582258816,0.2252158471618394,0.2312759029011249,0.2362737920937042,0.2429949471750115,0.248339973439575,0.2486620795107033,0.2560562646522532,0.2508108108108108,0.0,2.098615046451133,39.72669141127795,58.3866392735271,50.17147164663912,full_FIT_compliance,27 +100000,95645,56735,549.7307752626901,2098,20.617909979612108,1787,18.08772021537979,490,4.7153536515238645,77.25911226955019,79.65522258031253,63.27736057920528,65.04580586331052,77.17964329074488,79.58533097385659,63.2435606115624,65.01782717359588,0.0794689788053091,69.89160645593984,0.033799967642885,27.97868971464368,404.54458,284.8181549591151,422964.6923519264,297786.76873763924,879.76382,608.6834121563697,919112.81300643,635689.8578562577,738.36413,365.7869304941231,768384.8293167442,379666.3490293715,1142.96976,633.5819482005705,1151877.7981075852,619569.2257240934,329.78301,186.72246468524247,329819.19598515343,180244.68052197475,440.88878,220.6052791721509,422517.8733859585,198676.63886530575,0.38297,100000,0,1838839,19225.667834178472,0,0.0,0,0.0,77352,808.0715144544932,0,0.0,65786,684.2072246327566,0,0,0,0,0,0,0,0,139,1.442835485388677,0,0.0,2,0.0209106592085315,0,0.0,0.02098,0.054782358931509,0.2335557673975214,0.0049,0.5487689393939394,0.4512310606060606,14.979875418690373,2.2673453240293084,0.2372691662003357,0.5590374930050364,0.0867375489647453,0.1169557918298824,12.817434058317126,9.459228586065942,5.512894562883201,9469.424375213555,22.15395869866175,13.06579911612604,5.084540431443597,2.3423865177563736,1.6612326333357357,0.7330721880246223,0.8668668668668669,0.7193396226415094,0.5789473684210527,0.1161290322580645,0.8599779492833517,0.9303135888501742,0.89,0.782051282051282,0.1272727272727272,0.6022727272727273,0.7811764705882352,0.5669642857142857,0.4580152671755725,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025424673075169,0.0047658159178251,0.0072468180987759,0.0093480734839863,0.0115061803754005,0.0138105228851363,0.015916552807064,0.0179670671825392,0.0200468202124288,0.0219051323520379,0.0239703907235203,0.0258134735242476,0.0277400641816835,0.02996744684358,0.0320227038183694,0.0339967947060952,0.0361852669090758,0.0382399651231588,0.0404817873562022,0.0425327856889685,0.0563038821255029,0.0705921783028551,0.0845435739113085,0.0980024640138153,0.110344900416077,0.1264522415089544,0.1348104559890384,0.142382236049993,0.1500278027289447,0.1556362152468293,0.1647772012900859,0.1730340000433397,0.1809409714659115,0.1875054771711506,0.1942006615214994,0.2005950464602506,0.2060974791419688,0.2106888816241869,0.2160426470253927,0.2192049786432738,0.2221590974967825,0.2254095479153483,0.2268357731286671,0.2281710772777484,0.2302748496725661,0.2315824533701766,0.2313433770397365,0.2318947529136343,0.2338104358629257,0.2334730902091079,0.2268258899154126,0.2193998872898712,0.2129408122484591,0.2061712700797411,0.2005785920925747,0.1932489580311751,0.1867454688731284,0.1855365423551694,0.1852330065748118,0.1851464620510003,0.1847279208361955,0.1855835419274092,0.1868411787851802,0.1877187190491911,0.1879773925792796,0.1889042427964583,0.1897789823688843,0.1971917913902175,0.2042903381309827,0.2128081499338984,0.2210385558279474,0.2278809252152266,0.2355541909732883,0.2384887839433294,0.2423610481457974,0.2467592061489044,0.2528786536758193,0.2599960990832846,0.265914585012087,0.272385252069225,0.0,2.2304504310961173,38.30300147369335,59.56891578489821,51.19168124981075,full_FIT_compliance,28 +100000,95622,56111,543.1699818033507,2063,20.549664303193826,1798,18.269854217648657,509,5.009307481541905,77.28554750318864,79.71908050737665,63.27381344368565,65.0726339703786,77.20347689495004,79.6421719772584,63.23882475251742,65.04143978912188,0.0820706082385953,76.90853011824572,0.0349886911682304,31.19418125672269,405.16982,285.03612167036493,423720.0644203217,298086.1185400482,882.52472,610.3381312032242,922424.2747484888,637776.0607425324,729.72779,361.3648568294315,759448.5369475643,375136.79832868034,1149.47806,636.5538431298081,1169035.6926230364,632917.4415250935,325.01021,182.9703639255681,326708.12156198366,178294.99668907252,457.2102,230.2812461891739,449658.27947543457,216348.51795027408,0.37952,100000,0,1841681,19260.00292819644,0,0.0,0,0.0,77605,811.0372090104787,0,0.0,65051,676.6643659408923,0,0,0,0,0,0,0,0,145,1.5163874422204096,0,0.0,0,0.0,0,0.0,0.02063,0.0543581365935919,0.2467280659234125,0.00509,0.5423484119345524,0.4576515880654475,14.824431709676748,2.1819334597494837,0.2263626251390433,0.5684093437152391,0.0912124582869855,0.1140155728587319,12.31739086407571,9.312699726512616,5.766927959379034,9425.062060437662,22.29872543158757,13.313028131547489,4.906408639974719,2.2990041903586484,1.7802844697067124,0.7363737486095662,0.8679060665362035,0.7371007371007371,0.5902439024390244,0.0975609756097561,0.8392857142857143,0.9273049645390072,0.8486486486486486,0.7325581395348837,0.1475409836065573,0.6341463414634146,0.7947598253275109,0.6441441441441441,0.4873949579831932,0.0679611650485436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023408998783948,0.0044224000649159,0.0066401332087885,0.0087818264979417,0.01106905953689,0.0132934021941753,0.0155563036182432,0.0178571428571428,0.0200775281013797,0.0220497117048841,0.0241685644529246,0.0263252535424009,0.0283785035666127,0.0304910732692862,0.0325145329327096,0.0344535120654523,0.0365073937057647,0.0386744347862209,0.0407394300226908,0.0427240771453307,0.0575986285045263,0.0717953554661301,0.0853807191946365,0.0983364763640577,0.1111932652392973,0.1267645906361528,0.134223053383203,0.1417058428475487,0.1474264312466559,0.1523873990029224,0.1617264634475317,0.1706817294765601,0.1785371807165896,0.1841577649958915,0.190277241911481,0.1971835674811904,0.2043562320492618,0.2103597057465049,0.2153736072779311,0.219362155474603,0.2218931145795971,0.2242460401020097,0.2272953323702844,0.2289184069820413,0.2311851473840246,0.2322409757299494,0.2331875,0.2328525131854864,0.2337863876783012,0.2347288046340179,0.2273245749406191,0.2197186571150711,0.2128447574422715,0.2057292415657626,0.1993382961124896,0.192464094792793,0.1843517396572615,0.1830903219493101,0.1830530291482479,0.1816684378320935,0.1814692575836238,0.1818855849527823,0.1825107651540245,0.1833329659914923,0.1843281993044219,0.1863276258625096,0.186070454671935,0.1952671802584328,0.20256445232574,0.2093077101180828,0.2150513819985825,0.2206390996850963,0.2239965736661772,0.2334487075631489,0.2411476302887234,0.2453582412575464,0.2509942554131684,0.2569254779555209,0.259863229879011,0.2648550724637681,0.0,2.059566639103839,37.9803954785569,62.41068291292267,51.51377305150411,full_FIT_compliance,29 +100000,95815,56142,542.3263580858948,2118,20.977926211970985,1809,18.34785785106716,487,4.73829776131086,77.35864855579545,79.66489296724708,63.35358995694328,65.05483029659163,77.28055018266085,79.59381064822846,63.31994251886161,65.02597110185623,0.0780983731346083,71.08231901862894,0.0336474380816653,28.85919473540355,405.82872,285.5165349426351,423554.4747690862,297987.3035982206,881.45655,610.0302935399743,919435.850336586,636154.2592913158,730.2791,362.7925053077255,758822.4495120805,375951.1587034531,1147.13526,638.0230711174337,1160859.9697333402,629510.8188878924,329.89287,187.25105939746285,328669.8429264729,179797.73459005673,437.22366,222.31604994172892,423826.0815112456,203091.92031047857,0.38039,100000,0,1844676,19252.47612586756,0,0.0,0,0.0,77593,809.278296717633,0,0.0,65198,677.3052236079945,0,0,0,0,0,0,0,0,136,1.3880916349214634,0,0.0,0,0.0,0,0.0,0.02118,0.055679697152922,0.2299338999055712,0.00487,0.5346766635426429,0.4653233364573571,14.553148920681831,2.270904620147236,0.2482034273079049,0.5572139303482587,0.0906578220011055,0.1039248203427307,12.612413465086709,9.3833196734848,5.579313616401735,9381.853015967996,22.426667159772784,13.166916183881836,5.359550516895543,2.1684816228458543,1.7317188361495486,0.7296849087893864,0.8601190476190477,0.7193763919821826,0.5851063829787234,0.1219512195121951,0.8447537473233405,0.9242685025817556,0.8755980861244019,0.6705882352941176,0.2033898305084746,0.6068571428571429,0.7728337236533958,0.5833333333333334,0.5145631067961165,0.0761904761904762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020747727870777,0.004335099109684,0.0067013392540324,0.0089601915837113,0.0111149493020136,0.0133563908244748,0.0156052642301267,0.0180347434027317,0.0202378276770937,0.022320423903926,0.0244184736405445,0.0265352384273742,0.0283354223601208,0.0304598824824804,0.0325194869468387,0.0347438108713838,0.0369178557016772,0.03883394497315,0.0407894053492599,0.0425480969434496,0.0573255716908696,0.07127996570867,0.0841456512169046,0.096926067994325,0.1089272729188841,0.1247252515005495,0.1323940974430734,0.1393486215112321,0.1462732455110276,0.1522282136769545,0.1617483985573558,0.1713540877917919,0.1804036274275275,0.1868690735292509,0.1933850641131473,0.2001418266833608,0.2057934143429406,0.2091979620069507,0.2141269085051838,0.2183964640681537,0.2209064310578113,0.2242101078135597,0.2262535477767265,0.2276019778983034,0.2278785230500327,0.2283389947324373,0.2285343288427203,0.2285195899309784,0.2297054760029439,0.2301490220836786,0.2229106319064478,0.2154166438393688,0.2083660094107103,0.2017828433624253,0.1963437306341665,0.189820932245865,0.1827960366188779,0.182214912637801,0.182454178947725,0.1825072163487931,0.1836787708978902,0.1851627406900596,0.1866879416457716,0.1867216258513897,0.1883642735366546,0.1906914620363711,0.1924845765563656,0.1991277721072654,0.2053500637733117,0.2114822465603928,0.2170180588915577,0.2211553433331603,0.2267149343477727,0.2345458602990404,0.2392392392392392,0.244581336983801,0.2470762398223538,0.2545776727702303,0.26,0.256838905775076,0.0,2.106108037149215,39.461506646277016,60.19274073489469,49.63648700263749,full_FIT_compliance,30 +100000,95875,56328,544.5945241199479,2005,19.859191655801823,1706,17.34550195567145,510,5.03780964797914,77.41454581429173,79.70193601888445,63.37712166936033,65.06750698640069,77.33491758311166,79.62738246201563,63.34325133975104,65.03700078115602,0.0796282311800666,74.55355686882115,0.033870329609293,30.506205244662965,405.96182,285.7398574518446,423428.2346805737,298033.74962382746,883.04556,610.6809965540622,920495.3428943936,636412.356249348,731.38238,362.2770756435553,759915.0039113428,375648.9432754217,1095.23031,600.2522301646277,1114129.960886571,597855.5621013067,313.06648,173.39282162275657,315161.89830508473,169485.0008152801,454.66388,223.68587814418424,448588.1825293351,212434.79079355512,0.38042,100000,0,1845281,19246.73794002608,0,0.0,0,0.0,77752,810.503259452412,0,0.0,65142,676.4537157757496,0,0,0,0,0,0,0,0,136,1.4080834419817472,0,0.0,0,0.0,0,0.0,0.02005,0.052704905104884,0.2543640897755611,0.0051,0.5508684863523573,0.4491315136476427,14.6553299237914,2.237476601635138,0.2327080890973036,0.5638921453692849,0.0937866354044548,0.1096131301289566,12.707414004447214,9.662563262004538,5.685442367962683,9373.649757104064,21.054019650391293,12.568206447398666,4.70361993221756,2.144235482809381,1.6379577879656833,0.7297772567409144,0.867983367983368,0.7204030226700252,0.5775401069518716,0.1,0.8383720930232558,0.9157509157509156,0.8757062146892656,0.6818181818181818,0.1224489795918367,0.6193853427895981,0.8052884615384616,0.5954545454545455,0.4848484848484848,0.09009009009009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024497646403806,0.0046907451496884,0.0068953628684709,0.0089537693135443,0.0111596706982416,0.0133293989560333,0.0154645476772616,0.0177587824880656,0.0200621067255046,0.0222158579494313,0.0242453419648253,0.0261875698796787,0.0285030260061855,0.0303850627360966,0.0324659257273645,0.034413310886876,0.0362204887334726,0.038260256795548,0.0399750869362121,0.0420424168668934,0.0554877858058865,0.0701103540525853,0.0838675885187513,0.0964490455891308,0.1087347970304849,0.1243597190684902,0.1320444915254237,0.1395529289214383,0.1464541390604828,0.1519036144578313,0.1612198795180723,0.1695622560731699,0.1785291337556089,0.1852875622760248,0.1909680254917042,0.1979423640688091,0.2030407062285434,0.208878604405603,0.2147455513997506,0.2184174999427957,0.2210975144729088,0.2229684744139324,0.226040829828458,0.2272846921438656,0.2287436625184969,0.2299659282401997,0.2307577044103691,0.2320089336700379,0.2321659343499612,0.2324406132789366,0.2247542148959856,0.2179706651693395,0.2117642114700361,0.2058984004824397,0.2003776535323882,0.1925992313651623,0.1844304055431017,0.1835683649597088,0.1818028216608938,0.1819655664616631,0.181420260411857,0.1817243260090384,0.1846990707353759,0.1840366932209713,0.1856579909861016,0.1867500638243553,0.1879839563255529,0.1933596741094673,0.1998972778633795,0.2077962296287694,0.2147336807702499,0.2222050727993003,0.2283808368708308,0.2329267401942882,0.2403359826589595,0.2415249400753338,0.2463490190293553,0.2521602513747054,0.2547044791942751,0.2581591492482581,0.0,1.6864379408253305,36.63599272500625,57.71194427837367,48.12500078149823,full_FIT_compliance,31 +100000,95711,55710,539.1543291784643,2039,20.13352697182142,1759,17.814044362716928,515,5.077786252363887,77.36002699221102,79.73107213506073,63.33690834044432,65.08814769832627,77.27875970575654,79.65599734744667,63.30217164918845,65.05751822694457,0.0812672864544765,75.0747876140565,0.0347366912558726,30.629471381701023,406.17654,285.77593112513506,424377.88759912655,298581.8883149637,878.94896,607.7561204163653,917777.6953537212,634432.1660168272,728.33113,360.4415117742315,756656.7270219724,373405.53253664303,1127.36276,624.1978271021351,1143350.7747280877,617638.0218596971,325.22953,179.7979400771169,329097.29289214406,177150.64263262463,459.86888,228.040021473726,452943.6741858303,214144.51655813184,0.37784,100000,0,1846257,19289.90398177848,0,0.0,0,0.0,77470,808.8203027865136,0,0.0,65005,674.9276467699638,0,0,0,0,0,0,0,0,132,1.3791518216296978,0,0.0,1,0.010448119860831,0,0.0,0.02039,0.0539646411179335,0.2525747915644924,0.00515,0.537712895377129,0.462287104622871,14.88634639500428,2.170857573715179,0.2450255827174531,0.5628197839681637,0.0818646958499147,0.1102899374644684,12.19443947199356,9.105689838437169,5.755367463922165,9358.509366710476,21.82162841830693,13.020068794942295,5.040575002501054,2.2345993061872544,1.526385314676319,0.747583854462763,0.8767676767676768,0.728538283062645,0.5979381443298969,0.1180555555555555,0.8596685082872928,0.9255499153976312,0.8920454545454546,0.7362637362637363,0.1489361702127659,0.6288056206088993,0.8045112781954887,0.615686274509804,0.4757281553398058,0.1030927835051546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021776341777152,0.0042980668835974,0.0063931481688197,0.0086958288465836,0.0108731030554538,0.0129526292208056,0.0149643221202854,0.0169629916920124,0.0192895476616406,0.0215401625749913,0.0237343394369374,0.0259537595991951,0.0277137921105672,0.0296017056515156,0.0314892387693196,0.0336428113562581,0.0358445217967843,0.0379469614406559,0.0399816941254784,0.0421372900429291,0.056704852807569,0.0700994243851386,0.0835632388884809,0.0959667665772729,0.1086617327682543,0.1249299660665771,0.1330646016760369,0.1401174918053722,0.1472711737690911,0.1525234647358541,0.1618276036672735,0.1701492214298854,0.1782306271057493,0.1848013816925734,0.1909149888389175,0.1979337378748283,0.2047870264000267,0.2100944244604316,0.2144055119894837,0.218532588795313,0.2206905317649234,0.2235105910927392,0.226070521528557,0.2276808665813795,0.2286843317413755,0.2304043259186432,0.2311916529379462,0.2321636833831955,0.2322131200412823,0.2334910620399579,0.2257091128545564,0.2177238090016994,0.2098292576848071,0.2027822133989325,0.1976416000472862,0.1897380510511424,0.1820436352221001,0.1814858145656624,0.1807255392521468,0.1809666607867348,0.1811539244159159,0.1817331306279967,0.1822208487845076,0.1818181818181818,0.1830238100856596,0.1845866680303766,0.1861908890069633,0.1937694896415449,0.2017084596307522,0.2084698175011698,0.2141006165668841,0.2206287347362951,0.2255712797892544,0.2340063604762961,0.2427766672723968,0.2483682583304706,0.2522854615157771,0.2604105571847507,0.2620505992010652,0.2670876671619613,0.0,2.148770785479619,38.18830011175717,57.04698593001473,50.897473453301984,full_FIT_compliance,32 +100000,95758,55561,537.4276822824203,2127,21.0844002589862,1805,18.33789343971261,499,4.887320119467826,77.33346816806463,79.69505059175339,63.32120940122799,65.07005748600157,77.25267702230994,79.62064584574932,63.28679270297937,65.03948339169379,0.0807911457546879,74.40474600406333,0.03441669824862,30.5740943077808,407.20306,286.31229308302534,425241.8179159966,298995.6902640253,880.39205,608.3478054618373,918832.3168821404,634736.737882827,720.5061,356.7751354186566,748654.3683034315,369704.85199095006,1112.16404,620.2542628879447,1129034.3469997286,615859.2754729391,330.7899,185.72953982365132,333504.1249817248,182017.7111297768,449.80356,223.9756023536272,440680.841287412,210963.06706502792,0.37869,100000,0,1850923,19329.17354163621,0,0.0,0,0.0,77439,808.1831283025962,0,0.0,64440,669.2077946490111,0,0,0,0,0,0,0,0,140,1.4515758474487772,0,0.0,0,0.0,0,0.0,0.02127,0.0561673136338429,0.234602726845322,0.00499,0.5383899488134016,0.4616100511865984,14.814560820492815,2.2102567539975917,0.2227146814404432,0.5955678670360111,0.0864265927977839,0.0952908587257617,12.58503080309924,9.372307504790056,5.639925332373018,9345.032244074486,22.411241099363465,14.06017480982815,4.731080399864354,1.9492239028759752,1.67076198679498,0.7501385041551246,0.8697674418604651,0.7587064676616916,0.5755813953488372,0.0961538461538461,0.8725910064239829,0.9357945425361156,0.9263157894736842,0.765625,0.1228070175438596,0.618828932261768,0.7787610619469026,0.6084905660377359,0.4629629629629629,0.0808080808080808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019453873043213,0.0042489757838802,0.0066073929724133,0.0087890426547989,0.0109232928540916,0.013267623130263,0.0154039065367206,0.0174828029638096,0.0196332938146437,0.0219053565762132,0.0240304276062864,0.0259740259740259,0.0281665518340651,0.0302674534762772,0.0321688710975383,0.0341095847933269,0.0359409785141082,0.0378325654754493,0.0398590275395315,0.0420034160973171,0.0559272674133377,0.0701166867249228,0.0830893848300754,0.0959542313880972,0.107846755739278,0.1233332980871919,0.1315658253498414,0.1378958011814166,0.1453457943925233,0.1515791731460131,0.1609376178216328,0.1693624295405121,0.1771627426458593,0.1842948542680592,0.1907260148920491,0.1980848001771283,0.2041936815792704,0.2089651293588301,0.2134795776005807,0.2173037538757251,0.2210205213533,0.2233346573518073,0.2258247471405615,0.2266267942583732,0.2284295318272666,0.2296251719394773,0.2307212689545091,0.2313220029656667,0.2312117108402656,0.2312304415283877,0.2237874823908231,0.2157437196248887,0.2104319318547991,0.2038724701011959,0.1990368707161427,0.1915467214987434,0.1839700539469338,0.1827571600795021,0.1822477390509094,0.1814194506835505,0.1815689035461518,0.1823824488122889,0.1837552132799273,0.1839166538181978,0.187220129362428,0.1887015523799732,0.191162907688438,0.198069271813219,0.2045524983642687,0.2104181211698084,0.2147710618643691,0.2209561299010721,0.2266478458328219,0.2318829818829818,0.236748146113705,0.2410672853828306,0.2528974739970282,0.2498515145515739,0.2577235772357724,0.2597305389221557,0.0,1.98337859954809,39.68336465947248,58.8002446943428,50.97619828556958,full_FIT_compliance,33 +100000,95800,56192,543.5699373695198,2069,20.386221294363256,1777,17.995824634655534,493,4.780793319415449,77.34149214859087,79.68009743032661,63.33904717832892,65.07201578973063,77.2639589862619,79.61058194900306,63.305619649789016,65.04379539797408,0.0775331623289758,69.51548132354901,0.033427528539903,28.220391756548224,405.97854,285.58039806177896,423776.49269311066,298099.99412930594,885.28959,612.3379483926147,923543.6743215031,638626.812879228,731.09464,362.4702099417422,759678.9874739039,375681.0727679108,1137.49026,632.0739028126385,1148845.542797495,621348.8508246774,327.37504,184.923908163941,326214.3110647182,177655.03783784717,443.09122,222.05577438814925,427791.14822546975,202178.2861729854,0.38008,100000,0,1845357,19262.56784968685,0,0.0,0,0.0,77882,812.3695198329854,0,0.0,65248,677.5678496868476,0,0,0,0,0,0,0,0,143,1.4926931106471817,0,0.0,1,0.0104384133611691,0,0.0,0.02069,0.0544359082298463,0.2382793620106331,0.00493,0.53125,0.46875,14.723346410106448,2.2840517365616515,0.2414181204276871,0.5441755768148565,0.084411930219471,0.1299943725379853,12.700006129589555,9.319207300922104,5.55753400782952,9374.871845369702,21.959210025801283,12.619445855723889,5.232479801247227,2.5612937917905407,1.545990577039627,0.7383230163196398,0.8655635987590486,0.7622377622377622,0.5887445887445888,0.08,0.866235167206041,0.9313893653516296,0.8867924528301887,0.7738095238095238,0.1458333333333333,0.5988235294117648,0.765625,0.6405529953917051,0.4829931972789115,0.0490196078431372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995026185965,0.0046430055857992,0.0066873002181744,0.0088708694061699,0.0110291499211476,0.0133135039879394,0.0153088283289817,0.0173084581686732,0.019408342110376,0.0217491475440051,0.0240441304637594,0.0261960752097431,0.0285329301282644,0.0306888772135859,0.0326162100809988,0.0344613730800239,0.0365626359061445,0.0385070229672814,0.0404530576193692,0.0421728765212321,0.0562285451946453,0.0704419745083072,0.0832355283564572,0.0959521657804585,0.1078816747636762,0.1235849355755916,0.1305629174175765,0.137896930897335,0.1449672881735808,0.1519623604055473,0.1613694826231554,0.1700232419869196,0.1786253571312178,0.1849621924035141,0.1908363380529417,0.1971598707220967,0.203550177174567,0.2088079819530645,0.2124254394404138,0.2163486804524163,0.2192921742340347,0.2227107337780473,0.2257839885750705,0.2283150310084003,0.229694386593694,0.2306114679406093,0.2317818054897659,0.2324494757635617,0.2343552750225428,0.2349932458130598,0.2265952460662872,0.2192146188672019,0.2130562052689813,0.2060576467378035,0.2000826787928896,0.1919867459074949,0.1849838147019076,0.183672139692468,0.1835324015247776,0.1832256922940812,0.1823175710786133,0.1823926440379536,0.1845092596428719,0.1856366768252285,0.1867119416807161,0.1883402308305272,0.1885144274120829,0.1946319161509035,0.200083165846559,0.206954483297519,0.2149797570850202,0.2235060385842003,0.2298109699411218,0.2359432475039411,0.2403508771929824,0.2430676412576865,0.2483807802379876,0.2541966426858513,0.2602813852813853,0.2597258243793998,0.0,2.030515897108222,39.12326100295363,56.46213319724182,50.08243821107366,full_FIT_compliance,34 +100000,95717,55881,541.3458424313341,2140,21.312828442178507,1847,18.84722672043629,507,5.07746795240135,77.3419109081298,79.71135961642345,63.33255108723839,65.08124545349403,77.26739538408427,79.64023585842672,63.30087608756028,65.05196898061708,0.0745155240455375,71.12375799673032,0.0316749996781027,29.276472876958337,406.44516,285.85242206949533,424632.1552075389,298643.3152621743,882.41942,609.7841448947728,921484.5011857871,636649.7538522652,729.35193,361.7645620324952,758973.9858123427,375658.6687481617,1179.55087,649.9655292495834,1204307.1032314007,651024.6761281524,335.86393,190.43253547342044,338399.19763469393,186460.25833803907,456.64598,222.2859513304862,456939.60320528224,215594.73701977488,0.37857,100000,0,1847478,19301.46160034268,0,0.0,0,0.0,77609,810.3680641892245,0,0.0,65030,676.3375366967206,0,0,0,0,0,0,0,0,153,1.598462133163388,0,0.0,1,0.0104474649226365,0,0.0,0.0214,0.0565285152019441,0.2369158878504673,0.00507,0.5236988847583643,0.4763011152416357,15.07667318830886,2.294443277409264,0.2376827287493232,0.5527883053600433,0.0871683811586356,0.1223605847319978,12.70944087816018,9.313003397779648,5.640057339247501,9380.967624592922,22.732172447374964,13.358767906942584,5.141273345200511,2.587760719856164,1.6443704753757027,0.7347049269085003,0.8667972575905974,0.7494305239179955,0.5486725663716814,0.1180124223602484,0.8527865404837014,0.9285714285714286,0.8872549019607843,0.6521739130434783,0.2075471698113207,0.609375,0.7780429594272077,0.6297872340425532,0.4776119402985074,0.074074074074074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022581821127673,0.0045606567345697,0.0067255021302495,0.0089075322986918,0.0112051083906129,0.0133175857294127,0.0151992415670203,0.0172899485588307,0.0194194603434178,0.021196024849806,0.0232393644284982,0.025197917629301,0.0271687713380774,0.0294238852715733,0.0314934629394586,0.0335228447384742,0.0356347669397181,0.037566285815095,0.0395940775245383,0.0416940215295797,0.0562691897988595,0.0698353551952605,0.0831750894384002,0.0960949906923424,0.1086149432561279,0.1244154799940754,0.1325172117496048,0.139967637540453,0.1467166618594366,0.152242936519855,0.1608262077580822,0.1696206366725096,0.1788937947234486,0.1856981994293273,0.1913422102983056,0.1979326907114952,0.2037522155461669,0.2094737315176845,0.2144419883239811,0.219143461604437,0.2223249471287746,0.2248910083336255,0.2269648577406352,0.2290480065093572,0.2306862007907439,0.2323254697825525,0.2317451191160663,0.2325194792010355,0.2322320771524846,0.2320009457631126,0.2249889376081097,0.2173954684763572,0.2102576295840443,0.2022853701898262,0.197200117889773,0.1897983032584116,0.1825220198727392,0.1838363154729982,0.1835171154106345,0.1837041225636585,0.1841018136010818,0.1844612801187175,0.1859492150283749,0.1858852625535485,0.1873251458106121,0.1888834739785056,0.1908484644698498,0.1993455982220027,0.2066777041942605,0.2134914751667902,0.2213951415199465,0.2269348718748375,0.2304051146492899,0.2352809825083736,0.2407526388251491,0.2459602954755309,0.2525956689409671,0.251188589540412,0.2636118598382749,0.271380970011107,0.0,1.7729741998921476,40.54624781374766,57.6421208773139,54.35405020398319,full_FIT_compliance,35 +100000,95707,56007,541.7994504059265,2128,21.043392855277045,1804,18.25362826125571,491,4.785438891617123,77.33810060160408,79.72210375687501,63.31256206328344,65.075571029947,77.26329654405997,79.65326046738598,63.28079908577174,65.04785580724564,0.0748040575441137,68.84328948903828,0.0317629775116969,27.715222701360176,405.17598,285.0913629094747,423350.41324041085,297879.32221203746,882.63041,610.9548152174556,921634.0497560262,637772.2687133184,733.44245,363.1010600944363,761979.8238373369,376092.1205672626,1152.92839,625.8195593413129,1168695.2782973032,617942.636736407,321.72848,174.5114162372631,322351.7193099773,168531.5696626755,440.16416,213.401880434613,428574.1063872026,198096.50540357176,0.37942,100000,0,1841709,19243.20060183686,0,0.0,0,0.0,77722,811.4557973815918,0,0.0,65420,679.2188659136741,0,0,0,0,0,0,0,0,141,1.4627979144681162,0,0.0,0,0.0,0,0.0,0.02128,0.0560856043434716,0.2307330827067669,0.00491,0.5301542776998598,0.4698457223001402,15.076413111007792,2.161157087412549,0.2267184035476718,0.5715077605321508,0.0864745011086474,0.1152993348115299,13.061847185276516,10.06787276987774,5.498686887586325,9393.861070477404,22.27310543548534,13.515835472325398,4.88280992378197,2.2931587588815265,1.5813012804964486,0.7466740576496674,0.8787584869059166,0.7383863080684596,0.6057692307692307,0.0833333333333333,0.8603351955307262,0.9315068493150684,0.8770949720670391,0.7764705882352941,0.0638297872340425,0.6347634763476347,0.8098434004474273,0.6304347826086957,0.4878048780487805,0.091743119266055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020980722061178,0.0041489145871373,0.0063455641968038,0.0089944508811512,0.0112839714695617,0.0136281689567015,0.0157069130816147,0.0179456014380994,0.0201053331288029,0.0221880919469615,0.0240876136957926,0.0261639249994865,0.0281213691559476,0.0302247029019834,0.0320830238507881,0.0341438713611045,0.0362075749104388,0.0382316933994563,0.040420842516738,0.0423559314971457,0.0571151074628736,0.0709948915501214,0.084532166504024,0.0974157787898229,0.109150733471837,0.1248730642294998,0.132930128919306,0.1399214199772139,0.1466841914043299,0.1527676464278052,0.1622658177391379,0.1713175441634915,0.1797296709037088,0.1852881007340633,0.1917241531064681,0.1989474850432085,0.2047131582178858,0.2101266677166063,0.2144283801266483,0.218442543151336,0.2211848818241766,0.2239647288589505,0.2268522899318698,0.2277335567658148,0.2287693502207987,0.2301041897583684,0.2305980319833956,0.232017794725135,0.2331408044863097,0.2333679765303303,0.2253855437843636,0.2163769128546573,0.2101693014911985,0.2022525175618796,0.1979272775587935,0.1917237182412901,0.1842617597186459,0.1836097560975609,0.182736051683607,0.1820027541400374,0.1819528544710479,0.1822968466623764,0.182755698844731,0.1834961518953844,0.1860558616938249,0.1879701165251536,0.1889219972708791,0.1967807335504085,0.2032709480959386,0.209553574873635,0.2164090368608799,0.2208610968733982,0.2300884955752212,0.2354916417256734,0.240478977221572,0.2483229107447413,0.2553532410779315,0.2628340703710825,0.2710231710492059,0.2710755813953488,0.0,2.3248051327442063,37.74740022229588,61.9282592400091,51.59765576910446,full_FIT_compliance,36 +100000,95652,56358,544.8187178522143,2063,20.24003680006691,1749,17.699577635595702,504,4.997281813239661,77.27782633283482,79.68817691601254,63.2892740309558,65.07197205406214,77.20305956006443,79.61726458205456,63.25764553632025,65.04318246299569,0.0747667727703884,70.91233395797758,0.031628494635548,28.789591066455955,405.86238,285.55712927650785,424311.44147534814,298537.5415846065,877.92315,607.2922903584367,917246.2363567932,634313.4595810194,733.69498,364.1472059718815,762280.673692134,377237.7436181505,1102.83871,615.5590318989966,1118475.9335926063,609196.2735122202,308.15769,171.6993359378726,310261.7927487141,167669.25402341175,451.06704,219.2894277154413,446616.9447580814,209534.83382658512,0.3797,100000,0,1844829,19286.883703424915,0,0.0,0,0.0,77278,807.3014678208506,0,0.0,65292,677.8321415129845,0,0,0,0,0,0,0,0,150,1.5681846694266717,0,0.0,0,0.0,0,0.0,0.02063,0.0543323676586779,0.2443044110518662,0.00504,0.5274831243972999,0.4725168756027001,14.877926177699562,2.2872905190249853,0.226986849628359,0.5734705546026301,0.0823327615780446,0.1172098341909662,12.762711463919835,9.51271089698047,5.612854596122059,9429.870260963737,21.7532587199964,13.2695087854481,4.613215734703293,2.338787045429201,1.5317471544157997,0.7478559176672385,0.8743768693918246,0.743073047858942,0.5902439024390244,0.1041666666666666,0.8538961038961039,0.924092409240924,0.88268156424581,0.7528089887640449,0.08,0.6290909090909091,0.7984886649874056,0.6284403669724771,0.4655172413793103,0.1170212765957446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022596923575785,0.0046345124127859,0.0070554077924187,0.0093803672876205,0.01151635383285,0.0138038528539847,0.0160632330443651,0.0183235110870519,0.0204783044536732,0.022577109433421,0.0246564102564102,0.0265833966760482,0.0288936450444517,0.0309195473378269,0.0331922362172207,0.0355580377920506,0.0375831554514745,0.0394978662430302,0.0416129032258064,0.0436033781670315,0.0575142636209743,0.0711600289038528,0.0850152712616896,0.0985278178240326,0.1104346266262886,0.1256417041545382,0.1331478452944799,0.1405559166018559,0.1475139835085505,0.1537891719540081,0.16285234031549,0.1724548564500065,0.1797109650459235,0.1856284804656302,0.1914226286770775,0.1983516848705053,0.2035042687350036,0.2091791405661332,0.2133185148222912,0.2163942676106275,0.2195640371042083,0.2230875210162525,0.2265575164788432,0.2281957091405118,0.229876414442167,0.2309538461538461,0.231645617059551,0.2319694295979383,0.2338231303066723,0.2348724019994738,0.227143912430327,0.2193387158785082,0.212747123045146,0.2060856542150283,0.1983866193013617,0.191206512790804,0.1838229503032212,0.1822560368332544,0.1824893082614893,0.1822465501054011,0.1827713548722326,0.1834598528721239,0.1834513017922927,0.1831588228810757,0.1853255334770149,0.188124391618423,0.1903974438029037,0.1978188803172537,0.2045020984357115,0.2124770067707722,0.2204171142141067,0.2265994490930824,0.2321648216482164,0.2364572451872854,0.2416452442159383,0.247358030426199,0.2537067545304777,0.2550308826459454,0.2504060638873849,0.2582683017465626,0.0,2.2313413841718,38.98354881037432,54.56720056426051,49.47079477332136,full_FIT_compliance,37 +100000,95814,56415,545.5778904961697,2097,20.779844281628996,1776,17.90970004383493,479,4.613104556745361,77.39792083527668,79.70084790575164,63.37134666233783,65.07118745541825,77.31856512050221,79.63237767730719,63.33705208756311,65.04365712164741,0.079355714774465,68.47022844445405,0.0342945747747194,27.5303337708408,406.09712,285.74749317190486,423838.7918258292,298231.25261845323,881.7249,609.6807703721137,919537.7293506168,635609.5986072428,733.61428,363.5429716653144,761383.2320955185,376158.39571749454,1118.26152,618.8655080594676,1124971.1211305235,604087.4566134599,330.47471,181.9713685656868,330927.849792306,176128.19141568753,430.78404,217.5635962624377,414365.7920554408,195915.22025179383,0.38199,100000,0,1845896,19265.399628446783,0,0.0,0,0.0,77602,809.2554324002756,0,0.0,65369,678.1159329534306,0,0,0,0,0,0,0,0,145,1.4924750036529109,0,0.0,1,0.0104368881374329,0,0.0,0.02097,0.0548967250451582,0.2284215546018121,0.00479,0.5316037735849056,0.4683962264150943,14.92223564743087,2.2101481271449552,0.2432432432432432,0.5664414414414415,0.0833333333333333,0.1069819819819819,12.339354322357318,9.197439401087983,5.391354156640946,9411.133795337397,21.830545853725965,13.09955860096234,5.011462906307008,2.116023401325021,1.603500945131599,0.7449324324324325,0.8648111332007953,0.7476851851851852,0.5894736842105263,0.1216216216216216,0.8432919954904171,0.9256637168141592,0.8848167539267016,0.6621621621621622,0.1228070175438596,0.6467941507311586,0.7868480725623582,0.6390041493775933,0.5431034482758621,0.1208791208791208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002328500850409,0.0044077860754491,0.0063593488513616,0.0086715473736583,0.0107656961613532,0.0130772831816979,0.0151922724215932,0.0173527161438408,0.0192390215991989,0.0213521311207055,0.0234821629817839,0.025442421133624,0.0275645964966353,0.0297807094271278,0.0320027210042979,0.0339789786689243,0.0360955927995034,0.0380593070138161,0.040146629697706,0.0423600920057035,0.0569986021572677,0.0716452253948331,0.0853221206274641,0.0982546525076227,0.110325198966953,0.12589068611904,0.1326737293078399,0.1398007408353557,0.1468803418803418,0.1535713902624776,0.1628665898394166,0.1710490735833342,0.1786774218096035,0.1849090432044778,0.1910212429080353,0.197575958824506,0.2044344859875593,0.2102826319042535,0.2140663773469457,0.2165879649215078,0.2204858103191379,0.2232414831413466,0.2264997638167217,0.2281303397101172,0.229547874915287,0.2309741248097412,0.2327250077857365,0.2326741447851518,0.2340773771167874,0.2348389465953205,0.2272065015438493,0.2181696526108804,0.2101084647210108,0.202985545033881,0.1971992755223748,0.1899465046145453,0.1844359195177327,0.1839470310446114,0.1846255149591409,0.185296919657034,0.185037987319075,0.1862019249503175,0.1861703225273931,0.1878058457875942,0.1881711508830152,0.1904077968709925,0.1914797954251672,0.1998015934525839,0.2078204199855177,0.2155192532088681,0.221283255086072,0.2294175921580895,0.237716049382716,0.2422189128816083,0.2489416528621388,0.2587283236994219,0.2645218945487042,0.2691555903049257,0.2725836186462997,0.2824175824175824,0.0,2.3948681892279207,36.92943189229524,59.80032099574348,51.58424001193409,full_FIT_compliance,38 +100000,95551,56037,542.5060962208663,2061,20.4288809117644,1776,17.969461334784565,496,4.761854925641804,77.19945181010942,79.66940810641651,63.224607941291474,65.05326166202148,77.11176618276967,79.59271715552659,63.18636980459028,65.02197916327762,0.0876856273397521,76.69095088992606,0.0382381367011959,31.28249874386313,405.09986,284.9852024863057,423961.9260918253,298254.5472954817,876.34816,606.4928330879499,916532.7730740652,634112.5713890486,725.53901,359.4949090282856,755683.3523458677,373373.3177325747,1135.42686,633.1582846138725,1146496.0701614844,620841.1053927982,340.43366,192.13235831110023,339605.57189354376,184399.13586576853,446.36374,234.82499570821437,427611.0977383806,211338.49049219908,0.38,100000,0,1841363,19270.996640537516,0,0.0,0,0.0,77157,806.8675367081454,0,0.0,64757,674.1007420121192,0,0,0,0,0,0,0,0,137,1.4337892853031364,0,0.0,1,0.0104656152211907,0,0.0,0.02061,0.0542368421052631,0.2406598738476467,0.00496,0.5193050193050193,0.4806949806949807,14.973913199240528,2.260466021772792,0.240990990990991,0.5540540540540541,0.0906531531531531,0.1143018018018018,12.407774156274357,9.167943563257149,5.798067686312952,9412.879998812215,22.09393010786093,12.997581213549743,5.0378023265174265,2.3174303079009118,1.7411162598928462,0.7370495495495496,0.8678861788617886,0.7149532710280374,0.6157635467980296,0.1490683229813664,0.8409818569903948,0.9214402618657938,0.8342245989304813,0.7671232876712328,0.1969696969696969,0.6209773539928486,0.7801608579088471,0.6224066390041494,0.5307692307692308,0.1157894736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021185796393346,0.0045352164120046,0.006996912828012,0.0093338213762811,0.0116667345359775,0.0140981467512079,0.0159310098484461,0.0182914367463723,0.0203438395415472,0.0226995562569815,0.0245952965088228,0.0267035464201618,0.0287532697575745,0.0309772853871387,0.0331938200795742,0.0353915428808032,0.0373877330899587,0.0392446241308708,0.0411762254953021,0.0430229887457457,0.057711016036068,0.0714630258797869,0.0848829508782626,0.0980073971823268,0.1099003308213459,0.1253021500360459,0.1320837012372208,0.1393916755602988,0.146874799117187,0.1521519368507087,0.1618425315908845,0.1715377185461728,0.1797305405552828,0.1859204984204984,0.1918446173370854,0.1991625199928914,0.2039048951048951,0.2084818809513064,0.2126931039974518,0.2167992743889137,0.2204112860223031,0.2224149448591887,0.2255659594642645,0.2267197734961729,0.2295269366411285,0.2314230029111363,0.2318364686861597,0.2320501069355331,0.2330000259047224,0.2336077469062508,0.2253132528498943,0.2184473355222486,0.2124401107161423,0.2055230631824599,0.1981984651397078,0.1909368324687214,0.1834914431592549,0.1822874973452484,0.1823266409397684,0.1822960134955163,0.1829456786904784,0.1824101678958104,0.1835902556741351,0.1853205724666578,0.186709840241899,0.1891487660847365,0.1898915951006617,0.198470446171471,0.2043962120688463,0.2122448979591836,0.2176804397942897,0.2231682146542827,0.2294881961812969,0.2368926303352533,0.2423307315302232,0.2494831150930392,0.2586713697824809,0.2638888888888889,0.2703625853914871,0.2778390297684674,0.0,2.4593130168219357,39.44397314169166,55.454275346205726,49.94552450458586,full_FIT_compliance,39 +100000,95689,56503,547.0430247990887,2027,20.01274963684436,1753,17.797238972086657,481,4.71318542361191,77.33990302576841,79.72914254781975,63.32261558699434,65.08830720029397,77.25928885403309,79.65543417021367,63.28781720048335,65.05792511998703,0.0806141717353199,73.7083776060814,0.0347983865109924,30.38208030693568,405.6602,285.381625068611,423936.0846074261,298238.6952195247,882.07516,610.978545562344,921293.0117359364,637982.8983084201,733.4125,363.72772978937286,762780.1941706988,377306.3341245765,1110.54989,618.5010920595388,1124188.684174775,609972.005203878,326.56261,185.2616071731168,324733.80430352496,177066.88038658278,436.68448,223.75104574420544,426238.39730794553,208271.6548569532,0.3818,100000,0,1843910,19269.82202761028,0,0.0,0,0.0,77621,810.6365412952377,0,0.0,65268,678.5419431700614,0,0,0,0,0,0,0,0,143,1.473523602503945,0,0.0,0,0.0,0,0.0,0.02027,0.0530906233630172,0.2372964972866305,0.00481,0.5487028879099364,0.4512971120900636,14.732823997588609,2.1987581792605506,0.2407301768397033,0.551625784369652,0.0975470621791215,0.1100969766115231,12.709805036771192,9.46264458059612,5.486399040975791,9443.157880643384,21.739568121400893,12.747780927004255,5.059696091693494,2.117312914469763,1.8147781882333784,0.737592698231603,0.8790072388831437,0.7132701421800948,0.6269430051813472,0.1228070175438596,0.8546255506607929,0.9315789473684212,0.87,0.7972972972972973,0.1875,0.6118343195266273,0.8035264483627204,0.5720720720720721,0.5210084033613446,0.0841121495327102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282994024106,0.0047133951649688,0.0070724802386581,0.0092735546256043,0.0113785424483694,0.0138032126061198,0.0159314225139642,0.0179839960806728,0.0201075400719659,0.0223238960879444,0.0243887436567737,0.026340101418629,0.0285352912142152,0.0305708341058443,0.0324688057960843,0.0345847248213898,0.0368919968919968,0.0388511760187664,0.0409237490897742,0.0425310121963932,0.0571207705245124,0.0714510050251256,0.0854280318925723,0.0977551964992005,0.1097714062681308,0.1259732566012187,0.1336905203967959,0.1405473298774841,0.1469432221130431,0.1535451221734981,0.1628723427168364,0.1717772824652139,0.1804282343218173,0.1869096554136785,0.1925722145804676,0.1996943792355051,0.2054831189979588,0.2120125050605011,0.2163850776732055,0.2210903430356999,0.2235347149181104,0.2254838973448433,0.2273430945037284,0.228346550878578,0.2293923749969703,0.2306387372768845,0.2310178714057508,0.2309370402313429,0.2322122522755148,0.2330242651410534,0.2259280625729503,0.2194002657570651,0.2125962172090349,0.2050592498849516,0.2000561498906554,0.1930875155789281,0.1847950645966438,0.1827484666569053,0.1827610087326655,0.1820137162602916,0.18294780052144,0.1831029844636347,0.1828478296748638,0.1843712112862338,0.1870409855484482,0.189728995205497,0.1901254620813263,0.1964169884169884,0.2037674770989737,0.2105895577347959,0.216609703049403,0.2225385650688477,0.2278992832199963,0.2357380688124306,0.2392353208921256,0.2457811961887269,0.250483127694366,0.258498023715415,0.2660204631125471,0.2724562057398434,0.0,2.0723739204491527,38.4004878834901,57.961473758479805,47.853526994798514,full_FIT_compliance,40 +100000,95795,56118,541.8341249543296,2077,20.564747638185708,1796,18.278615794143743,493,4.854115559267185,77.331780499572,79.67370412885481,63.32970022966426,65.06331648841896,77.25447389559432,79.60200039051998,63.29634154404521,65.03366819387823,0.0773066039776892,71.70373833483268,0.0333586856190493,29.64829454073481,405.6855,285.44926067317766,423493.3973589436,297979.28980967455,882.74326,610.9968059310133,921023.7903857196,637348.8031014284,727.31272,360.3666982497799,756453.0507855315,373976.3719001468,1148.47583,634.1352931244194,1167407.6830732292,630489.7469851446,327.26932,183.12987841933213,328191.60707761365,177725.04663012925,446.5568,227.1462890248785,439071.1832559111,213547.4276245216,0.3797,100000,0,1844025,19249.69987995198,0,0.0,0,0.0,77772,811.368025471058,0,0.0,64901,674.6907458635628,0,0,0,0,0,0,0,0,134,1.398820397724307,0,0.0,2,0.0208779163839448,0,0.0,0.02077,0.0547010797998419,0.2373615792007703,0.00493,0.5279770444763271,0.4720229555236729,14.962874149408792,2.2412692456082604,0.2149220489977728,0.5657015590200446,0.0896436525612472,0.1297327394209354,12.401417877626658,9.101122921107898,5.541845206245664,9357.636360130951,22.28196540763801,13.337936463425224,4.603231689165474,2.599328462667016,1.7414687923802954,0.7288418708240535,0.8661417322834646,0.7176165803108808,0.6180257510729614,0.0496894409937888,0.8416389811738649,0.9309153713298792,0.8505747126436781,0.7790697674418605,0.09375,0.6147816349384099,0.7803203661327232,0.6084905660377359,0.5238095238095238,0.0206185567010309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025322866548493,0.0045517213413892,0.0069307031162795,0.0089398187654923,0.0110856852275616,0.0134217252721514,0.0155584103097408,0.0177732859651272,0.0201590644231359,0.0222654450529764,0.0242444745151105,0.0265416760786085,0.0287905895901453,0.0307993407498969,0.0329535368547072,0.0350866311044948,0.0372832908718076,0.0393814304679721,0.0413479923518164,0.0432623227338039,0.0577775922698861,0.071668392481722,0.0856804436012201,0.0983492870727427,0.1099029617220343,0.1254728744425893,0.1326168293639437,0.1398781356671168,0.1457675232647485,0.1517024878393725,0.1611642751805724,0.1705660295724221,0.1787656039319733,0.1852200157466538,0.1914659507278589,0.1982897083421026,0.2030920590302178,0.2085019787731606,0.213358722386571,0.2175161604027229,0.2204071258578063,0.2227645884180164,0.225514062869298,0.2262538744150979,0.2275703994760969,0.2291617952914826,0.2291726542291976,0.2303683554922846,0.2306558775626276,0.2313594903720862,0.2240493595332305,0.2146259341381292,0.2076684924982138,0.1997096491354156,0.1947328774204983,0.1872392899552416,0.180748478031745,0.1800847457627118,0.1804879702945116,0.1805263436964244,0.1816141834501687,0.1824268925936048,0.1832304569369071,0.1837626647241904,0.1850162711703366,0.1873024032900655,0.1874579502130522,0.1959157232316377,0.2037488413608431,0.2096573692797762,0.2168680069540409,0.22319247362129,0.2282198726272182,0.2327104890940221,0.236815555351738,0.2456484149855907,0.250186483664031,0.2549364613880743,0.2521344717182497,0.2552870090634441,0.0,1.7740530439288356,38.5484076219953,61.37638962337296,51.56373793897723,full_FIT_compliance,41 +100000,95683,56182,543.785207403614,2024,19.899041627039285,1723,17.380307891683998,494,4.734383328281931,77.34192318165195,79.71740398012672,63.32298576779221,65.07493662835027,77.26028334057101,79.6457074304539,63.28714695750256,65.04563883338277,0.0816398410809426,71.69654967282213,0.0358388102896469,29.29779496750484,405.59552,285.310076287486,423894.1504760512,298181.7408540974,883.57695,611.305065652285,922839.0623203703,638284.2331994869,730.63554,362.053232698054,759682.0751857697,375419.1445948254,1120.53662,623.619497021212,1126233.4270455567,607000.4733006305,319.06752,180.7096468621569,313857.71767189575,169257.45102281222,447.226,232.52589773672003,426644.5241056405,207706.43224282595,0.38024,100000,0,1843616,19267.9159307296,0,0.0,0,0.0,77614,810.5201550954714,0,0.0,64990,675.355078749621,0,0,0,0,0,0,0,0,153,1.5885789534191026,0,0.0,1,0.0104511773251256,0,0.0,0.02024,0.0532295392383757,0.2440711462450593,0.00494,0.5333006856023507,0.4666993143976494,14.794816865469173,2.320515979516375,0.24492164828787,0.5403366221706326,0.0940220545560069,0.1207196749854904,12.27270132805435,8.873528653270247,5.583853828693624,9384.687461564206,21.193637271668376,12.08901072313154,4.978465526727741,2.356386659490992,1.769774362318104,0.7260591990713872,0.8603651987110634,0.7535545023696683,0.5817307692307693,0.0679012345679012,0.8377752027809965,0.9205426356589148,0.9045226130653268,0.7411764705882353,0.0793650793650793,0.6139534883720931,0.7855421686746988,0.6188340807174888,0.4715447154471545,0.0606060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023288073468809,0.0046725656541085,0.0068068616411536,0.0093139943526926,0.0117966501581361,0.0137647370242919,0.0157820687967701,0.017757037974942,0.0196633809153748,0.0218399631393027,0.0236955162054363,0.0255591382390996,0.0277292082364799,0.0297360232447915,0.031978364540969,0.0341464927973857,0.0359140631474268,0.0380734897238945,0.0399546584303081,0.0424742611812763,0.0574833911335812,0.0716245366395107,0.0853085046081498,0.0980773885316804,0.1097017917818626,0.125660101806483,0.133811864892702,0.1409760618747802,0.1476785580654472,0.1532152442297369,0.1612030107619643,0.1705280259951259,0.1790620713679214,0.1849569918361093,0.1901747974638957,0.1969579474453848,0.202404205685712,0.2086770581284114,0.212943537870111,0.2165481873232826,0.2191232756327979,0.2228846648430011,0.2255344811276133,0.2272553104868644,0.2294123356141117,0.2297556654609876,0.2299080367852858,0.2306266739442251,0.2324454266992361,0.2325465053515712,0.2256547387092006,0.217867735911238,0.2110089166608158,0.2043145201856882,0.197976431026091,0.1903054791815406,0.1828380456271378,0.1825080197358779,0.1821553782836238,0.1834298629749964,0.1850219448508305,0.1858142443905871,0.1865346043299352,0.1885992982146404,0.190482951184307,0.1916472605368887,0.1917869406214231,0.1990279315860711,0.205766530835873,0.2109112013929193,0.2167241531794463,0.2231392170010832,0.2303115799803729,0.2346758782889901,0.2392760180995475,0.2447686913245108,0.2471648735097412,0.2512021542604347,0.2579542466473836,0.2644420523860782,0.0,2.4392901282475177,35.95855584423056,55.46562832522857,52.70770806567535,full_FIT_compliance,42 +100000,95737,56671,548.4608876400973,2091,20.65032328148992,1803,18.237463049813552,517,4.919728004846611,77.32392886815877,79.68636057611424,63.31606620966248,65.0643048263561,77.23584796315005,79.61177731213411,63.27781263428626,65.03442781009117,0.0880809050087236,74.58326398013071,0.0382535753762169,29.87701626493333,404.42138,284.6517082498102,422429.0922005077,297326.2879031203,884.73017,613.167450240456,923527.444979475,639872.5155796151,736.29649,365.27631508854,766262.2183690736,379281.167676302,1121.51623,634.7673818526407,1128094.738711261,619777.6329141798,326.21301,187.54707084467816,323163.52089578746,178390.15110457758,456.91476,235.54325533719503,432686.4430679884,206048.9173849658,0.38109,100000,0,1838279,19201.32237275035,0,0.0,0,0.0,77730,811.2850830922215,0,0.0,65703,683.4348266605388,0,0,0,0,0,0,0,0,154,1.6085734877842424,0,0.0,2,0.0208905647764187,0,0.0,0.02091,0.0548689285995434,0.2472501195600191,0.00517,0.5436018957345972,0.4563981042654028,14.311726638153973,2.242151951216365,0.2506932889628397,0.5579589572933998,0.0759844703272323,0.115363283416528,13.3444454989611,10.372982896933008,5.897211368563778,9420.623725737472,22.457924940654078,13.30603363548045,5.275520334700845,2.4122758830098694,1.464095087462905,0.740432612312812,0.8697813121272365,0.6991150442477876,0.6153846153846154,0.1167883211678832,0.8475289169295478,0.9238410596026492,0.8442211055276382,0.75,0.1538461538461538,0.6208920187793427,0.7885572139303483,0.5849802371541502,0.5,0.0941176470588235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022688828790503,0.0046842206653215,0.006992510199525,0.0088703285984271,0.0109655368840786,0.0132586558044806,0.0155475806944925,0.0178427429644676,0.0199163676144322,0.0221050476092966,0.0241959461537672,0.0263763116285755,0.028447176872147,0.0304169585101561,0.0324744342513956,0.0345658083789007,0.036335387643068,0.0384759097419716,0.0404417499454052,0.0424658533281935,0.056618744845011,0.0710100650777375,0.0848154362416107,0.097867463038129,0.1102651171619598,0.1251917441577538,0.132248856630482,0.1396913968074797,0.1474308300395257,0.1530857314405798,0.1632323493314385,0.1713726465594618,0.1800134808984366,0.1873175531624118,0.1932039368779897,0.2003853351197528,0.2065652790020418,0.212521797828655,0.2170078990375885,0.2195049278019711,0.2211285709322926,0.2236270618948946,0.2266014519357169,0.2282190500161806,0.2304224736029939,0.2322378793851005,0.2330314477996547,0.2333337571681056,0.2327512611563834,0.2331290768926665,0.2256776916150362,0.2179532918027388,0.2107088692916924,0.2041095495910609,0.1977817213842058,0.1902907304011805,0.1812756199839801,0.1808496795810155,0.1795357650402652,0.1805195034521728,0.1810692732052279,0.1815216966761707,0.1829830326327319,0.1842865013774104,0.186305845585624,0.1876234195881312,0.1883721580581112,0.1961032936446574,0.2037741065874058,0.2093294914726267,0.2177268266571505,0.2231263605265885,0.2285083144136957,0.2337873852531833,0.2402424465056479,0.2474274482599144,0.2554036171151301,0.2595288258954223,0.2621982537236774,0.2704678362573099,0.0,2.230171939329729,40.20386140212802,58.94223249398919,47.93902159924217,full_FIT_compliance,43 +100000,95788,55756,539.2637908715079,2110,20.795924332901823,1814,18.279951559694325,511,4.85447028855389,77.4066300966336,79.74282944771564,63.35719594835807,65.08642913778134,77.31886869231562,79.66653529622532,63.31895119415159,65.05517615164936,0.0877614043179875,76.29415149031615,0.0382447542064809,31.25298613197458,406.65262,286.0729718861706,424533.9917317409,298652.2026623069,882.64431,610.3138534125684,920792.1869127656,636486.7868757759,723.23141,358.32458419611686,750717.4385100431,370769.3948827849,1170.40568,651.971234368042,1177270.983839312,636039.8842945278,337.78254,191.65917192660316,335958.8153004552,183419.57229527496,461.74544,237.4661102435342,437992.170209212,212413.2390194813,0.37858,100000,0,1848421,19296.999624170043,0,0.0,0,0.0,77630,809.7360838518395,0,0.0,64618,670.334488662463,0,0,0,0,0,0,0,0,162,1.680795089155218,0,0.0,1,0.0104397210506535,0,0.0,0.0211,0.0557345871414232,0.2421800947867298,0.00511,0.5312941176470588,0.4687058823529412,14.632765332038025,2.178667252561996,0.2205071664829107,0.5600882028665931,0.0981256890848952,0.1212789415656008,12.803481105509928,9.708583089828876,5.869147634818948,9326.028523283532,22.530582039224797,13.383667962545632,4.768576042453924,2.4427688483451546,1.9355691858800783,0.7331863285556781,0.8720472440944882,0.7475,0.5727272727272728,0.1067415730337078,0.8392282958199357,0.9148211243611584,0.9095744680851064,0.7126436781609196,0.1830985915492957,0.6208853575482406,0.8135198135198135,0.6037735849056604,0.4812030075187969,0.0560747663551401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022899061746408,0.0046237147898034,0.0067484600318649,0.0089308393363339,0.0110454531585317,0.0132787519602452,0.0154870414551089,0.0175572908691879,0.0195839934583737,0.0216445786215013,0.0236950795814415,0.0256528654250679,0.0278120374938332,0.0297614758233047,0.0318008452736831,0.0335384742472429,0.0353810183939914,0.0375899317866102,0.0398541313856479,0.0419165417291354,0.0565439235368385,0.0703088233756183,0.0836757368663787,0.0961890147772896,0.1088035403824877,0.1241149741096903,0.1315200915807214,0.1386357594768462,0.1450461505628768,0.151241510808321,0.1600834956261634,0.1693210937753414,0.1771902945746541,0.1833418865946736,0.1886889855454505,0.1957832324863663,0.2022765025251117,0.2078140977380243,0.2131141966562765,0.2168864892071517,0.2199921427250878,0.2223753196557643,0.2249651390891257,0.2273820204557688,0.2277699621616377,0.2284951527975985,0.2290797331401014,0.2296883924604937,0.2304751078616271,0.2310972479962095,0.2246501383330199,0.2174812906055538,0.210243532910611,0.2035833429195905,0.1963268078070097,0.1894861624036839,0.1828983462653813,0.1815777518172378,0.1808265297533877,0.1807946321927914,0.1815396541222937,0.1829751680721253,0.1849368598576776,0.1865800960758077,0.1879076118946154,0.1899666233534612,0.1910456062291435,0.1982547458665033,0.2064359648823147,0.2142664457204516,0.2204804380464541,0.2268993839835729,0.2312553165633734,0.2348379544955739,0.2440647482014388,0.2452574525745257,0.2441791924550545,0.2495677233429394,0.2493410648392198,0.2571638501102131,0.0,2.486414798192226,39.12876495215542,60.43796285792354,50.441305045518725,full_FIT_compliance,44 +100000,95677,56195,543.0040657629315,2197,21.583034585114497,1875,18.896913573795164,537,5.142301702603551,77.29491858535671,79.69597197079172,63.29396199958445,65.07350188988364,77.20829248586749,79.6208643868272,63.256176784573945,65.04273967171623,0.0866260994892229,75.10758396452388,0.0377852150105084,30.762218167410538,405.76162,285.3952455012069,424094.5681825308,298289.6674260344,881.95629,610.3503999453711,921077.2390438664,637200.1762851796,734.51743,364.222560358521,763044.2112524431,377093.5549459306,1172.92854,650.1069710993889,1180247.4575916887,633873.4486850433,350.26699,195.55795277127217,347869.60293487465,186170.30505897143,480.32716,240.4060950088988,459124.6590089572,215691.58141894476,0.38064,100000,0,1844371,19277.02582647867,0,0.0,0,0.0,77572,810.0274883200768,0,0.0,65635,681.3236200967839,0,0,0,0,0,0,0,0,144,1.5050639129571368,0,0.0,1,0.010451832728869,0,0.0,0.02197,0.0577185792349726,0.244424214838416,0.00537,0.5339059674502713,0.4660940325497287,14.909893476899615,2.200258539058649,0.2576,0.5450666666666667,0.0864,0.1109333333333333,12.79593866791731,9.743422002525913,6.017116523839772,9405.005703240562,23.14534516702325,13.38166902521337,5.7266791286947285,2.307596997355,1.7294000157601614,0.7306666666666667,0.8561643835616438,0.7246376811594203,0.5913461538461539,0.1358024691358024,0.8510416666666667,0.9192751235584844,0.8858447488584474,0.7051282051282052,0.1785714285714285,0.6043715846994535,0.763855421686747,0.5909090909090909,0.5230769230769231,0.1132075471698113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00241264306061,0.0047794453408018,0.0069872543543391,0.0092928676732245,0.0115027942628541,0.0136679135282786,0.0159700395934527,0.0180932142784168,0.0201845562057535,0.0222600108585418,0.0245778881070102,0.0268743194099155,0.0288642607970857,0.0310110275172627,0.03308284646669,0.0351093093962646,0.037160621761658,0.0393488236881995,0.0411430592543275,0.0432344541493819,0.0575448638937054,0.0710681156689071,0.0841947298275807,0.0972789258807188,0.1088204262502637,0.1236152405540095,0.1313434736920317,0.1387061053259226,0.1452079971789748,0.1517323518997392,0.1609209023722824,0.170352498214788,0.1787500543643717,0.185128104232249,0.1917869986472962,0.1990145055918503,0.2048933416636915,0.2098097242069966,0.2136272818090999,0.2178277960507466,0.2212012498553408,0.2235672514619883,0.2261533002129169,0.2272487659941534,0.2287163679170863,0.2292937132719813,0.2303153051784062,0.2316737140172438,0.2328468377788961,0.2337517250443583,0.2262448897526975,0.2193726735274797,0.2112822093626084,0.2046172853694977,0.1981037334593572,0.1903311762466692,0.1832107939606719,0.1821814149189471,0.1831234214228806,0.1834056495174001,0.1837072282214746,0.1857140059149578,0.1862422019109204,0.18600437501381,0.1868992100504425,0.1895308718265616,0.1902954654072137,0.1979873045363059,0.2054761494747718,0.2117532593889861,0.2195492756215346,0.2257578903654485,0.2320574162679425,0.2376575240919199,0.2466380020126246,0.2493647493647493,0.2550899970492771,0.2610654132393263,0.2709372538724074,0.2736535662299854,0.0,2.676788215077232,40.082521070237846,59.86125341195375,54.87713339723743,full_FIT_compliance,45 +100000,95717,56188,542.6726704765089,2070,20.403898993909127,1784,18.021876991548,490,4.764044004722254,77.3593554540744,79.73136059016784,63.33143217950936,65.08413105811361,77.28189511442828,79.66043116495794,63.29791312336205,65.05493914145981,0.077460339646123,70.92942520989709,0.0335190561473197,29.19191665380083,405.57924,285.23923351691,423727.488324958,298002.6886727645,885.09283,612.7691951880557,924115.5594095092,639606.3971792428,732.97729,363.6565812145325,761790.2880366079,376849.0955747764,1123.85075,625.8225865616317,1137057.8162708818,616744.6394701378,310.18442,180.1014587854436,310089.4094048079,174185.69197263152,436.43898,221.8197960863107,423971.917214288,205451.8874076504,0.37992,100000,0,1843542,19260.34037840718,0,0.0,0,0.0,77843,812.6351640774366,0,0.0,65395,679.1165623661419,0,0,0,0,0,0,0,0,163,1.7029367823897532,0,0.0,0,0.0,0,0.0,0.0207,0.0544851547694251,0.2367149758454106,0.0049,0.5366088631984586,0.4633911368015414,14.766870609493523,2.1529615919534333,0.2617713004484305,0.5560538116591929,0.0734304932735426,0.108744394618834,12.745678886371968,9.698077422949956,5.586307134954384,9367.591496218796,22.11715993107379,13.036819787496423,5.513929240841109,2.190043629009313,1.3763672737269494,0.734304932735426,0.8568548387096774,0.721627408993576,0.5824742268041238,0.0763358778625954,0.8503767491926802,0.9213675213675212,0.8443396226415094,0.8,0.1538461538461538,0.6081871345029239,0.7641277641277642,0.6196078431372549,0.4298245614035088,0.0253164556962025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020358141230806,0.0043893884253956,0.006707459384862,0.0089273019032723,0.0112463520535269,0.0134891628574628,0.0157092614302461,0.0179450013269909,0.0201590644231359,0.0224920402543023,0.0242629339076039,0.0263355211125833,0.0289003662702168,0.0311147743663713,0.0332064101373453,0.0354558610709117,0.0375493048150487,0.0396614669764354,0.0414899367930805,0.043415309938231,0.0576822671929494,0.071692465488189,0.0852467614202548,0.0982082772543741,0.1101984436618233,0.1250952018278751,0.1326442904591614,0.140256366578656,0.1472247750539656,0.1532691626694137,0.162392517725147,0.1703597060001515,0.1785803644275224,0.1849246121189574,0.1912098319494306,0.1975166297117516,0.2038583485910775,0.2093350124811658,0.2140410570488828,0.2175217246945948,0.2202092606509046,0.2228451951267944,0.2258213079521031,0.2269820589746961,0.2275469412477286,0.2284099287294175,0.2285147229538277,0.2291075050709939,0.230104364203981,0.2311147889821491,0.2240460570357477,0.2163271448702338,0.2087637151443147,0.2028230308930054,0.196584970928093,0.1890040613444868,0.1825790404079908,0.1812094682230869,0.1791744682286659,0.1787261011936199,0.179600517847235,0.180838416713765,0.1815981631259955,0.1818643693395184,0.1834458259325044,0.1864319934414469,0.1879423695621765,0.1959542927733168,0.2017266286028754,0.2093347805861374,0.2158372652007478,0.2228212971123438,0.2275083302480562,0.2335820344241708,0.2429039301310043,0.24434026983764,0.246900826446281,0.2564400542320356,0.2610979774100341,0.2625820568927789,0.0,2.4501787696335517,38.99124195323645,58.06709922501951,48.65883747057034,full_FIT_compliance,46 +100000,95891,57116,552.6066054165667,1990,19.689021910293977,1722,17.40517879675882,478,4.651114286012243,77.4394230829848,79.71959949286556,63.39129033748679,65.07739167198548,77.36680649134651,79.65361026827753,63.36020484366198,65.0506669023055,0.0726165916382939,65.98922458802292,0.0310854938248041,26.724769679987048,405.72884,285.451825141084,423114.6197244788,297683.64616187545,887.60557,614.6710751915537,925052.8516753396,640422.9126732996,738.44145,365.566045704888,766515.9191164969,378507.4056184655,1090.57189,592.2698687810289,1100576.717314451,580922.0873502509,312.31949,173.12502742102572,308778.550646046,163619.50279069584,428.11314,207.6512607382246,414888.5505417609,190265.65215810915,0.38485,100000,0,1844222,19232.48271474904,0,0.0,0,0.0,77977,812.6310081238072,0,0.0,65818,682.7439488585999,0,0,0,0,0,0,0,0,158,1.637275656735251,0,0.0,0,0.0,0,0.0,0.0199,0.0517084578407171,0.2402010050251256,0.00478,0.5247129306040939,0.4752870693959061,14.7025394125944,2.245196000949337,0.2357723577235772,0.5551684088269454,0.0836236933797909,0.1254355400696864,12.720169944168113,9.520623185882153,5.271261255543493,9424.230515274314,21.05984274479326,12.436151874948518,4.763254671391434,2.352156463952915,1.5082797345003962,0.7421602787456446,0.8838912133891214,0.7044334975369458,0.6203703703703703,0.0902777777777777,0.8536880290205562,0.9259962049335864,0.8571428571428571,0.7875,0.1111111111111111,0.6391061452513966,0.8321678321678322,0.5887445887445888,0.5220588235294118,0.0808080808080808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021765539582911,0.0041651465401921,0.0064618224976922,0.0086202520078384,0.0109872239218595,0.0132577684621802,0.0153705118411,0.0173500611995104,0.0193187855012055,0.0213693137064353,0.0231874257141686,0.0254255548373195,0.0275811042717828,0.0297705444550816,0.0320425584560188,0.0340041924391528,0.0359415251870014,0.0380379032007377,0.0401150296398575,0.0422565980421733,0.0572667479700219,0.0712994598209154,0.0848446138381638,0.0977102602597348,0.1102011600122106,0.1257574797829437,0.1339525917766433,0.1406226755923919,0.1475733122981313,0.1540000856091088,0.1633863980823596,0.1712958461621563,0.1799530812172817,0.1870370774978697,0.1931430958295776,0.2003252644156304,0.2066618392469225,0.2115397570341095,0.2158747410250314,0.2196570749705852,0.2217337625624516,0.2243526941917424,0.2274685710913061,0.2285229323802579,0.229835338591836,0.2316860393679502,0.2323724944806855,0.2328368039722348,0.2332757820955522,0.2336652106043314,0.2272988928901324,0.2197258551651565,0.2125440411610089,0.2050873719548936,0.1987505341171963,0.190994354398106,0.1836296365973724,0.1832286544297839,0.1817614096678368,0.1810801768010284,0.1825619621024637,0.182908078861836,0.1837844518600914,0.1844187728797211,0.1866064710308502,0.1860506645577693,0.1875607385811467,0.1957199633139712,0.2035593970122843,0.2089936913371287,0.2156992375159769,0.2219820932386539,0.2298507462686567,0.2362884771536133,0.2384615384615384,0.2448720903433971,0.2495514354066985,0.2557312252964427,0.2641711229946524,0.2602489019033674,0.0,2.187235242179105,34.49836603233604,60.61856638546566,51.25430748572904,full_FIT_compliance,47 +100000,95750,56261,542.8720626631854,2090,20.57441253263708,1809,18.44386422976501,514,5.096605744125326,77.34647984393533,79.69932000679712,63.33814763576003,65.07554762006849,77.26457966388054,79.621488617549,63.30242989923388,65.04293227001274,0.081900180054788,77.83138924811794,0.035717736526152,32.61535005574956,405.82256,285.5437414514439,423835.5718015666,298218.00673780043,879.49275,608.4541110933595,918096.4804177546,635027.7689844194,732.33932,363.7459399829571,761935.5926892951,377684.3480207518,1143.64039,643.5548753207765,1164854.3498694515,642617.1766617444,326.66558,186.68105779751588,332081.56657963444,185883.63216450776,461.2162,238.7481765805671,456003.362924282,227275.06360455975,0.38005,100000,0,1844648,19265.25326370757,0,0.0,0,0.0,77443,808.3342036553524,0,0.0,65328,679.3942558746736,0,0,0,0,0,0,0,0,144,1.4934725848563968,0,0.0,1,0.010443864229765,0,0.0,0.0209,0.0549927641099855,0.2459330143540669,0.00514,0.533649289099526,0.4663507109004739,14.816847334188148,2.2653718430676726,0.2233278054173576,0.5710337202874516,0.0912106135986733,0.1144278606965174,13.119837295946311,9.776836005439456,5.877130975992642,9401.158742108106,22.401838242130705,13.503964361080998,4.772108969194922,2.3212305360816785,1.8045343757731065,0.7335544499723604,0.8654404646660213,0.7202970297029703,0.6183574879227053,0.0848484848484848,0.8450854700854701,0.91900826446281,0.8858695652173914,0.7411764705882353,0.1451612903225806,0.6139747995418099,0.7897196261682243,0.5818181818181818,0.5327868852459017,0.0485436893203883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023597326311525,0.004774503542864,0.0068499406338478,0.0090916478738749,0.0112778896414261,0.0136117445838084,0.0157288481141692,0.017922207820043,0.019727898110006,0.0220329265296093,0.0240267328153508,0.0262971516551193,0.0286639592864853,0.0309609640539705,0.0332738359316158,0.0355658914728682,0.0379657717912348,0.0400041498080713,0.042068169769545,0.0439125498651168,0.0579115509897268,0.0715362233897808,0.0849891940661784,0.097192429022082,0.1104621126656615,0.1259805890935233,0.1333297973904741,0.1402435130590263,0.1471825422244998,0.1535353318828308,0.1625002691471266,0.1709654046220895,0.1790212678092091,0.1858958249106742,0.1915987998285469,0.1984528381234852,0.2036785196745067,0.2091483430010342,0.2125442257098793,0.2165592702384086,0.2201662024248448,0.2228140879621517,0.2261764010404351,0.2271448242830629,0.2286029616872642,0.2300629332808889,0.2313636874367969,0.2320829947175944,0.2329916363965408,0.2334667228306655,0.2252430052091724,0.2168131280588953,0.2101513302758727,0.204805590705165,0.1990956912347065,0.1912344532570141,0.1836468703872366,0.182424409999512,0.182173626038828,0.1827639806408308,0.1822070779088501,0.1824922920813332,0.1839801303942874,0.1849506959917054,0.1834249431387414,0.1843391469877038,0.1864454364243802,0.1943441079312154,0.2023318200577796,0.2086255667067074,0.2144192256341789,0.2204532489757817,0.2263563049853372,0.232434034983694,0.2387226644706743,0.2436577490774907,0.2476670122944748,0.253643166601024,0.2602220417005145,0.2685150018989745,0.0,1.7002408757967251,39.85645430643449,60.73211856832339,48.70127037824365,full_FIT_compliance,48 +100000,95745,56563,545.9710689853256,2143,21.17081831949449,1831,18.591049140947305,495,4.825317248942503,77.41222784566315,79.76993665956368,63.350809200748486,65.09077541913709,77.3274518392057,79.69349421376309,63.31384385312353,65.0595178175562,0.08477600645746,76.44244580059478,0.0369653476249567,31.25760158089008,405.8978,285.5606660601631,423936.2891012585,298251.25704753574,883.39339,610.4592452674248,922139.8193117132,637076.2183585826,738.38221,365.84174876426624,768590.5269204658,380013.2992259383,1173.14824,652.6011766420629,1188518.4291607917,644837.7530336448,340.78424,190.74352266679625,344123.3798109562,187414.7085140695,448.14896,230.6412721355113,435843.2920779153,211389.11867113344,0.38257,100000,0,1844990,19269.83132278448,0,0.0,0,0.0,77635,810.3190767141887,0,0.0,65781,684.3908298083451,0,0,0,0,0,0,0,0,163,1.7024387696485457,0,0.0,1,0.0104444096297456,0,0.0,0.02143,0.0560158925164022,0.2309846010265982,0.00495,0.524537037037037,0.475462962962963,14.78694519213846,2.2289248298050777,0.2446750409612234,0.5439650464227198,0.091206990715456,0.1201529219006007,12.615504747011222,9.30788560391952,5.629930938817745,9493.753096997434,22.536512141983085,12.953196643166429,5.3791787969667535,2.41631427735393,1.7878224244959753,0.7269251774986346,0.8524096385542169,0.7321428571428571,0.5727272727272728,0.1676646706586826,0.8439181916038752,0.9234875444839856,0.8545454545454545,0.7674418604651163,0.180327868852459,0.606430155210643,0.7603686635944701,0.6140350877192983,0.4477611940298507,0.160377358490566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023090945918574,0.0043379111133634,0.0066753236213123,0.0089771711755625,0.0111225205624294,0.0134168066371456,0.0154004525348064,0.0177037203322381,0.0202248339294839,0.0223955454564064,0.024914423924406,0.0268957941958465,0.0289814843372503,0.0311425099380033,0.0334017810155709,0.0354857715803727,0.037401758255413,0.0396339565479031,0.0417437774219708,0.0437844426156073,0.0582056984161785,0.0722215827639247,0.0857889160468702,0.0984830952431045,0.1098531211750306,0.1252711898487686,0.1332547920779468,0.1393872922234882,0.14630445004916,0.1521578139589795,0.1615508188590958,0.1706173454470637,0.1788544433317368,0.1844464635628195,0.1909041844276289,0.1987935106843056,0.2048445844785591,0.2100925488076741,0.21644382902413,0.2211312626742893,0.2233460243250437,0.2258339861791564,0.2291915406712139,0.230578749671029,0.2319079545592318,0.232217933272687,0.2336900930569069,0.2342382285504364,0.2348547290335874,0.2357560502372899,0.2287459403108752,0.2213850899462233,0.2153910614525139,0.2075536529843801,0.2014184605444774,0.1950415721844293,0.1883365350075747,0.1876859878380126,0.1860523792703234,0.1867888748419721,0.1860995621619632,0.1861213413452219,0.1878124549961939,0.188889619066395,0.1909022414767376,0.1940176819791587,0.1950595304328474,0.2013722967591741,0.2077025595461846,0.2159362242933066,0.2225214090226891,0.2278018129377832,0.2335526315789473,0.2373540856031128,0.2414196919196468,0.2487754869575122,0.2566720140002916,0.259159274971076,0.2621791513881613,0.2650602409638554,0.0,2.109734520573977,39.16636997375047,60.69225644666853,51.80303560433225,full_FIT_compliance,49 +100000,95740,56573,546.1249216628369,2040,20.22143304783789,1753,17.839983288071863,507,4.982243576352622,77.32373385663094,79.69442834084481,63.321321634088775,65.07540527970265,77.2416199972671,79.6186884654796,63.28546949113424,65.04409007751961,0.0821138593638437,75.73987536521543,0.035852142954539,31.315202183037627,405.04882,285.0893129557471,423071.6732818049,297774.506951898,884.60648,612.9138848519032,923485.1577188218,639704.233394634,736.04993,364.7339012727829,765909.1706705661,378751.50006605085,1120.06584,629.1962257716938,1135710.476289952,623069.9687544231,333.85729,191.37093327836592,333632.5987048256,184860.01959627363,457.01154,234.36081018160556,447356.56987674953,218122.52739707808,0.38228,100000,0,1841131,19230.530603718405,0,0.0,0,0.0,77814,812.2519323166911,0,0.0,65660,682.985168163777,0,0,0,0,0,0,0,0,141,1.4622937121370378,0,0.0,1,0.0104449550866931,0,0.0,0.0204,0.0533640263681071,0.2485294117647059,0.00507,0.5571776155717761,0.4428223844282238,14.560848070346582,2.294055627130008,0.235596120935539,0.5533371363377068,0.0907016543069024,0.1203650884198516,12.845206315227673,9.556274635952748,5.752335390197782,9458.875127976724,21.859341786645405,12.74577247487833,4.904449153361435,2.448062509119064,1.761057649286574,0.7507130633200229,0.8731958762886598,0.774818401937046,0.6255924170616114,0.1069182389937107,0.8403547671840355,0.92226148409894,0.8913043478260869,0.7411764705882353,0.1343283582089552,0.6556991774383079,0.8044554455445545,0.6812227074235808,0.5476190476190477,0.0869565217391304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023505572441742,0.0044925816625594,0.0066483962647178,0.0090644879377273,0.0113950838352596,0.0136906762827369,0.0157977399747073,0.0179751411967767,0.0202979763377746,0.0226330073224435,0.0249202654059542,0.0270001027010372,0.0292063165475027,0.0312338987242637,0.0334740558004149,0.0356766256590509,0.0376887544793587,0.0399543497432173,0.0418603200349355,0.0438048993966927,0.0582412763380458,0.0725095765390492,0.0856945041803476,0.0983190979088652,0.1104678751067666,0.1265622026264036,0.1336077486977647,0.141061928069802,0.1492240817677906,0.1544367594230872,0.1636929438240963,0.1721280439650789,0.1803314340394067,0.1862173775187781,0.1920910790892091,0.1992094949181816,0.2055780978285102,0.2114868431396772,0.2153453844846149,0.218837198664288,0.2226110052543449,0.2243456536458941,0.2266307685040857,0.2279371306906533,0.229158837719564,0.2303672003738409,0.2320228788370757,0.2328681894942671,0.2344664521880693,0.2341609026115772,0.2264495183923157,0.2185126278553212,0.2116833377758449,0.2051521911203856,0.1982761169756645,0.1913154650472581,0.1836007409965776,0.1823534195332194,0.1829117880615675,0.1822193197663131,0.182341828419025,0.1820064472013285,0.1838680261958053,0.1847014100693984,0.1860873694207027,0.1876414318041555,0.1885699828521631,0.1971285040932771,0.2057053941908713,0.2126369327073552,0.2178435328401703,0.225887396100162,0.2299653722483304,0.2382873795113203,0.2425683709869203,0.2539315448658649,0.2583025830258302,0.2655577299412915,0.2821258593336859,0.2858200666419844,0.0,1.7956804746520656,38.4176698829292,60.14260742822776,47.73946046062601,full_FIT_compliance,50 +100000,95793,55858,540.5092230121198,1953,19.322915035545392,1677,17.057613813117868,487,4.781142672220308,77.38153749659537,79.72290963224803,63.350937847410606,65.08273112586663,77.3031448596375,79.65011824722058,63.31729626977155,65.05280612351253,0.0783926369578722,72.79138502745752,0.0336415776390524,29.92500235410489,406.63282,286.00408004080373,424490.7039136471,298564.2711416739,881.48269,609.7333663438166,919736.1080663516,636053.6054892804,729.10305,360.9319537661815,758262.2321046423,374558.05579548783,1054.4611,585.3448511379019,1069675.7174323802,580060.8259318867,297.5307,168.37213859086026,296325.2012151201,161502.57547816433,436.19044,218.79134333833304,426857.6200766236,204865.84574151243,0.3784,100000,0,1848331,19295.031996074867,0,0.0,0,0.0,77613,809.725136492228,0,0.0,64819,673.7444280897352,0,0,0,0,0,0,0,0,145,1.5136805403317568,0,0.0,4,0.041756704560876,0,0.0,0.01953,0.0516120507399577,0.2493599590373784,0.00487,0.5185750636132316,0.4814249363867684,14.837198049611253,2.27153698823475,0.2259988073941562,0.5658914728682171,0.0834824090638044,0.1246273106738223,13.063689362553744,9.711486803987896,5.506865651716171,9324.396680138532,20.624185911501343,12.359490672343522,4.4562948576312,2.278591785650642,1.5298085958759793,0.7107930828861061,0.8503688092729189,0.6781002638522428,0.5215311004784688,0.1357142857142857,0.8290398126463701,0.901818181818182,0.8493975903614458,0.7590361445783133,0.1454545454545454,0.5880923450789793,0.7794486215538847,0.5446009389671361,0.365079365079365,0.1294117647058823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021572241690129,0.0045208506497455,0.0065236800454527,0.0086123721601007,0.0107977306464404,0.0129686370715718,0.0150140661312023,0.0172894191612488,0.0194056694393917,0.0212927056367859,0.0234462263667571,0.025405200110859,0.0271854243352731,0.0291180165153106,0.0310881897885508,0.0332282895076716,0.0355143475066485,0.037731155153827,0.0396509634862099,0.0417803227485684,0.0564645726807888,0.0701325050460682,0.083383128387374,0.0968897761899758,0.1089955006691042,0.1246512807506974,0.1325795307631986,0.1402343085558768,0.1472822723489617,0.1532137919207725,0.1633606354468254,0.1722717245555603,0.1807008964955175,0.1870793636919849,0.1930478578340811,0.199203187250996,0.2052053725686897,0.2105487887096049,0.2149819781016933,0.2182100918165498,0.2213145062512999,0.2232434831355694,0.22585677144883,0.2268116462116318,0.2285378330545251,0.2295023536496933,0.2299337880469344,0.2302043301244244,0.230041799979358,0.2296150308763631,0.2228699311195089,0.2149455963867789,0.2067399985987529,0.2002212389380531,0.1934293097083795,0.1864553576855284,0.1787455517408957,0.1774842604011163,0.1776661723068626,0.1775872087904347,0.1779538904899135,0.1784392410488175,0.179587709704711,0.1804055543310557,0.1814401814401814,0.1831238319551471,0.1831257331173546,0.1906502441871179,0.1986999657885733,0.2062405753392877,0.2113424900310146,0.2164341085271318,0.2233951147661716,0.2304840981540514,0.2379950608250251,0.2403536977491961,0.2444280442804428,0.2520959251316046,0.2628769682412596,0.2692733308742162,0.0,1.654966462854629,36.42242976792236,52.52218436656034,50.39821356659595,full_FIT_compliance,51 +100000,95862,56591,546.2748534351464,2168,21.40577079551856,1868,18.954330182971358,520,5.101082806534394,77.37299817448195,79.67541102948758,63.35320242165369,65.05741130567104,77.29274537598225,79.601497522499,63.3189969432961,65.02757226601048,0.0802527984996999,73.9135069885748,0.0342054783575918,29.839039660558345,405.00966,285.0250159063942,422492.39531827,297328.4679084457,883.95741,612.6186950308038,921603.3882038764,638552.0070839372,742.9752,369.4280805865415,771476.9981848908,382617.9872373986,1192.62475,665.7274671735169,1208457.0424151383,658815.5965591338,338.29546,192.96191847541036,337502.6913688428,185895.65049280255,465.72782,231.6588890016827,455613.965909328,215251.48876201577,0.3815,100000,0,1840953,19204.19978719409,0,0.0,0,0.0,77746,810.4879931568297,0,0.0,66188,686.9666812709937,0,0,0,0,0,0,0,0,155,1.606475975881997,0,0.0,2,0.0208633243621038,0,0.0,0.02168,0.0568283093053735,0.2398523985239852,0.0052,0.540045766590389,0.459954233409611,14.727012060549937,2.2631329298106477,0.2403640256959315,0.5583511777301927,0.0813704496788008,0.1199143468950749,13.06266297468045,9.802848483669742,5.8646474258128505,9449.410512608654,23.319265941998903,13.806319154769584,5.371111083307113,2.53331398926378,1.6085217146584234,0.7489293361884368,0.8667305848513902,0.7639198218262806,0.5982142857142857,0.1184210526315789,0.8663212435233161,0.9253246753246752,0.9178743961352656,0.7471264367816092,0.2,0.6234772978959026,0.7822014051522248,0.6322314049586777,0.5036496350364964,0.0721649484536082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022179461211261,0.0041655264678159,0.0067354412018299,0.0091383546900067,0.0115487058536486,0.0137825732899022,0.0160936878904936,0.0182061251773158,0.0202515607597911,0.0224179916917347,0.0244044874750268,0.0265525767695732,0.0288577154308617,0.0310853096179183,0.0332872871221805,0.0355855716306783,0.0375646596316987,0.0395623070068182,0.0412261936904193,0.0432190605004421,0.0584855689022355,0.0722466039707419,0.0853482232651692,0.0982893866364237,0.110430093938245,0.1258833595656353,0.1336258053577484,0.1411848512556616,0.1482778127635048,0.1541725601131541,0.163967415282964,0.1728021443548561,0.181042633426432,0.1869691172451489,0.1932712090039937,0.199665581467455,0.2060985266726893,0.210911053880498,0.2149870742437298,0.2188300988648846,0.2214955106946001,0.2245594353293133,0.2273576207475354,0.227811004784689,0.2288013379061284,0.2307077709762273,0.2310468412442712,0.2313449876944155,0.233476594261819,0.2335942124301216,0.2255835792862892,0.2180307869450194,0.2113417252557571,0.2043329401271686,0.1982244150319073,0.1909367396593674,0.1840604527673479,0.1826034617386777,0.1806530156744052,0.18016967126193,0.1808169989079534,0.1820221212180325,0.1833051092478625,0.1859278803869833,0.1867906274333986,0.1888119039705468,0.1897473207040322,0.1967637540453074,0.2054700384826828,0.2130285095354145,0.2200379908998542,0.2271906751250709,0.2330067360685854,0.2412898443291327,0.247321673839392,0.2543669368649389,0.2637427767076604,0.2728348786742947,0.2788203753351206,0.2889789900479174,0.0,2.108498674364869,40.826628299337045,64.89937650875139,49.6613196018873,full_FIT_compliance,52 +100000,95791,56585,547.6401749642451,2025,19.94968212044973,1745,17.621697236692384,491,4.708166738002526,77.39816222968327,79.7267748096957,63.35848721039546,65.07928074511607,77.31736111644582,79.6550411107017,63.323461659937024,65.04997215847648,0.0808011132374417,71.73369899399518,0.0350255504584353,29.30858663958702,405.89626,285.5783900078125,423731.1020868349,298126.5359040124,882.72663,610.7541811845447,920901.2224530488,636978.4647665696,735.77835,365.06324922571446,764287.6470649644,378143.4705957718,1100.91943,606.0901832155945,1110064.1813949118,593492.4295764681,311.19662,176.31869146846236,310204.5390485536,169460.43431199863,440.76766,220.8622283051421,421844.01457339415,200484.89014716155,0.38315,100000,0,1844983,19260.504640310675,0,0.0,0,0.0,77542,808.854694073556,0,0.0,65512,680.116086062365,0,0,0,0,0,0,0,0,153,1.5972272969276864,0,0.0,2,0.0208787881951331,0,0.0,0.02025,0.0528513636956805,0.2424691358024691,0.00491,0.5421155729676788,0.4578844270323212,14.727131826195867,2.218768856574271,0.2469914040114613,0.5598853868194842,0.0830945558739255,0.1100286532951289,13.086274743226154,9.63777203708789,5.475994394232531,9447.367987520636,21.455576499041843,12.749181359470038,4.996714990218223,2.1876022198480296,1.5220779295055535,0.7300859598853868,0.8515864892528148,0.7122969837587007,0.609375,0.1241379310344827,0.846242774566474,0.930783242258652,0.8579234972677595,0.6829268292682927,0.1568627450980392,0.615909090909091,0.75,0.6048387096774194,0.5545454545454546,0.1063829787234042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022381560025115,0.004276795848873,0.0064825711155297,0.0087436022422617,0.0111930056422508,0.0132920797117674,0.0153971569776328,0.0176100885605844,0.0196671400402537,0.021853898096992,0.023942709613966,0.0257054899948691,0.0276967031160075,0.0301673562650528,0.0319088612815093,0.0342997015172014,0.0362293352092859,0.0380874362271351,0.0403329730628533,0.0421960261590369,0.0567421768210607,0.0703737789955866,0.0833132397496514,0.0958961694078083,0.1086596742739682,0.1243895735999831,0.1326305519026004,0.1396603460384345,0.1465477652587173,0.1528002659260768,0.1629582561495713,0.1722761783219052,0.1809460692712181,0.1862929301756532,0.1922967032967033,0.1996880220375922,0.2055183946488294,0.2112256483469541,0.21623429633997,0.2202893242995788,0.2232453353359136,0.2256493506493506,0.2282863155903426,0.2301460028721876,0.2312857558421409,0.2321882873471394,0.2333054727361185,0.2329022441993153,0.2345326897762176,0.236859745278183,0.2303556103840377,0.2216746070861398,0.2139403876066759,0.2069505052824988,0.1995492244008072,0.1923584662306723,0.1856735231405995,0.1845241961675869,0.1832967032967033,0.1825863011765535,0.1828414068419982,0.1833043953256989,0.1847678018575851,0.1864883266346006,0.1894347795381247,0.1890642557973235,0.1880695710157812,0.1957707631014404,0.2032938929996249,0.2111200954911247,0.21809405721371,0.2259637595605975,0.2305547135495604,0.2375865625460439,0.2417842512517068,0.2496249278707443,0.2548615203299941,0.2634765625,0.2693227091633466,0.2718978102189781,0.0,2.240653131360162,36.10880581586458,58.63065480702751,52.27202385431113,full_FIT_compliance,53 +100000,95874,56007,540.9391493001231,2070,20.443498758787577,1771,17.85677034441037,508,4.870976489976428,77.3584022892406,79.64147170607778,63.35300198276878,65.0419582469889,77.27750689353718,79.57028604348731,63.31807172030288,65.01338340773897,0.0808953957034219,71.18566259046588,0.034930262465906,28.57483924992721,406.10372,285.6358614272028,423580.6579468886,297928.3866608286,879.81129,609.5066497814665,917033.1059515616,635096.4599826027,727.69776,361.5504899329276,755358.501783591,374262.8138498324,1133.42585,622.5823672819588,1144266.49560882,611529.7419888824,323.70433,181.9276624813041,320391.190520892,172709.21151751807,455.74108,227.52344188470212,437315.3513987108,204328.59780081315,0.37893,100000,0,1845926,19253.66627031312,0,0.0,0,0.0,77452,807.1948599203121,0,0.0,64833,672.5911091641112,0,0,0,0,0,0,0,0,156,1.6167052589857522,0,0.0,1,0.0104303565095854,0,0.0,0.0207,0.054627503760589,0.2454106280193236,0.00508,0.5307396733909702,0.4692603266090298,14.435110984714104,2.2509494548354723,0.2315076228119706,0.562394127611519,0.0875211744776962,0.1185770750988142,12.594219689010467,9.377011681779685,5.710822660918225,9319.079521708623,21.78774923572833,12.993132020131672,4.798787187778912,2.333001100058381,1.662828927759364,0.7261434217955957,0.8544176706827309,0.7121951219512195,0.6047619047619047,0.1032258064516129,0.8543046357615894,0.925476603119584,0.8823529411764706,0.7471264367816092,0.1818181818181818,0.5919075144508671,0.7565632458233891,0.5695067264573991,0.5040650406504065,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021767963632313,0.0044178293866715,0.0065117505654674,0.0086913259348759,0.0108965236836755,0.0131082140058417,0.0151799176820571,0.0173389770003569,0.019644078698835,0.0218158026559257,0.0237595585901911,0.0262553566668717,0.0280584997124311,0.0301705515666467,0.0323680956306677,0.0341751502261135,0.0364535382896628,0.0383893869513395,0.0404399165030999,0.0424681904722271,0.0572125559042148,0.0707733455920763,0.0839372486595174,0.0962931849207182,0.1087936628323431,0.1242565419030414,0.1318425096709236,0.1389408762228838,0.1454570684428504,0.1514803936281971,0.1602924392187264,0.1688478843990655,0.1760025219310164,0.1823607209609898,0.188569732546252,0.195158649378236,0.2016990345381168,0.2073930048552418,0.2119621293724134,0.2160995603590401,0.2182896653793677,0.2213573624113226,0.2233223322332233,0.2249143651040793,0.2264258578208255,0.2278597899557996,0.2282120844637253,0.2294671563457066,0.2297054295657123,0.231338858656266,0.2242447038594323,0.2177587531555262,0.2115573517442676,0.2058937795876081,0.1990564084361226,0.1901025398808526,0.1838539617593831,0.1831474960876369,0.1825438522159139,0.1825121933978935,0.1840266839618271,0.1837731205687611,0.1849629660280548,0.1848635782606779,0.1848703681780514,0.1866243992228244,0.189287310098302,0.1968094916087785,0.2046256638684255,0.2112561490490762,0.2178415859187483,0.2261708273158655,0.2307456650940506,0.2328255675029868,0.2357828655834564,0.2402423395083304,0.2443473017787157,0.2510848126232741,0.2524660090642495,0.2564575645756458,0.0,2.343430055957408,37.99754948158721,53.701545448068,55.04855800703452,full_FIT_compliance,54 +100000,95736,56153,542.9618952118325,2048,20.138714799030662,1725,17.464694576752734,484,4.752653129439291,77.38965647392791,79.75662216058588,63.34469261111818,65.09401841326914,77.3099418765614,79.6840367872538,63.310566562426125,65.06455562108552,0.079714597366518,72.58537333207471,0.0341260486920589,29.462792183622355,405.80408,285.39184196696954,423878.2485167544,298102.9518331344,881.18368,610.2422943399514,919891.3365922954,636882.452097384,730.536,362.40619454659054,759479.6419319796,375780.2051669479,1067.83053,599.7617883789601,1079057.554107128,590141.4289075793,316.2141,176.6928679739237,316954.0716136041,171218.68259998728,429.60204,215.10778321389756,420385.14247513993,200501.3537733226,0.38015,100000,0,1844564,19267.193114397927,0,0.0,0,0.0,77699,811.0219771037018,0,0.0,65116,676.5480070193031,0,0,0,0,0,0,0,0,129,1.3474555026322386,0,0.0,0,0.0,0,0.0,0.02048,0.0538734709982901,0.236328125,0.00484,0.5269286754002911,0.4730713245997088,14.95044755113364,2.250505408576964,0.2475362318840579,0.5611594202898551,0.0753623188405797,0.1159420289855072,12.978000458917425,9.84055179204552,5.447533145642812,9367.220508244807,21.448055137190096,12.697938402218028,5.106985201058149,2.274258577193572,1.3688729567203446,0.7559420289855072,0.8605371900826446,0.8032786885245902,0.54,0.1538461538461538,0.8588888888888889,0.9256637168141592,0.8939393939393939,0.6881720430107527,0.2045454545454545,0.6436363636363637,0.7692307692307693,0.7248908296943232,0.411214953271028,0.127906976744186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024410501580098,0.0047646563871739,0.0065557799449963,0.008757136761688,0.0111589205244794,0.0132886644128548,0.0156605254840387,0.0178540439562683,0.0199730149644288,0.0219974819076085,0.0241804875048688,0.0264765365938792,0.0287332689105002,0.0306341001297444,0.0328722756856556,0.034570784844664,0.0367390471456825,0.0385836411171515,0.0404930675369488,0.0425006512112529,0.0568287411645559,0.0708693558853697,0.0845853617592748,0.0972910420282994,0.1092522073017647,0.1248492924677961,0.1323410846134261,0.1396645666609909,0.1463813154775254,0.1515726710206007,0.1602566863344674,0.1698739791227216,0.1782056578747091,0.1836828409612735,0.1900047303169312,0.1969000830334902,0.2024839457723867,0.2086965312724658,0.2135782602783192,0.2175066312997347,0.2204570662722987,0.2225764263527873,0.2256956331826177,0.2280953405532047,0.2290414809071525,0.2301982327421991,0.2311349004341967,0.2308628823618931,0.2303773633573215,0.2307459862837323,0.2237612356164016,0.2170259358105796,0.2103929556367505,0.2039070461754869,0.1984621503380617,0.1919103032877668,0.1838914820964255,0.1827156891352981,0.1819665511323485,0.1825115102098197,0.1821310268678689,0.1827781660066775,0.1827446629271199,0.1837584363222017,0.1861882352941176,0.1874075207918771,0.188239222998358,0.1960959114663387,0.2028721613357611,0.210722755724894,0.2159496608354159,0.2221874674173704,0.2307786860057771,0.237920399471288,0.244498556998557,0.2509388869921475,0.2605829793467116,0.262434681633443,0.266281512605042,0.2676934360102677,0.0,2.147696274164601,37.965117298258846,56.59197171575799,47.19808197649128,full_FIT_compliance,55 +100000,95752,56568,546.2549085136603,2130,20.9395104018715,1825,18.38081711086975,479,4.584760631631715,77.34687979821054,79.70902547626727,63.33382307926016,65.0826942671518,77.26837715601843,79.63865851948215,63.29936328315309,65.05376421407983,0.078502642192106,70.36695678512217,0.0344597961070647,28.93005307196006,405.19424,285.0610105217596,423170.5238532876,297707.6306727375,885.9171,613.9193965088397,924551.17386582,640486.3987267523,735.39927,364.7567173931513,763940.9307377391,377735.1360698656,1131.23105,623.435442521318,1136371.3342802238,606047.5734410958,320.79315,178.43431059276585,319191.5782437965,170550.3708011537,425.90098,217.1477456712912,405874.8015707244,194412.05966158613,0.3821,100000,0,1841792,19235.02381151308,0,0.0,0,0.0,78034,814.2597543654441,0,0.0,65541,680.4975352995237,0,0,0,0,0,0,0,0,150,1.5352159746010527,0,0.0,2,0.0208872921714428,0,0.0,0.0213,0.0557445694844281,0.2248826291079812,0.00479,0.5372786579683131,0.4627213420316868,15.007883587039522,2.259425301369434,0.2306849315068493,0.5764383561643835,0.073972602739726,0.1189041095890411,12.901124284769155,9.662984187406163,5.441852994967129,9482.75410122787,22.434021126823502,13.665622376199066,4.979244110715613,2.359641315309458,1.429513324599367,0.7287671232876712,0.8517110266159695,0.7173396674584323,0.5483870967741935,0.0962962962962963,0.8520971302428256,0.9292929292929292,0.8360655737704918,0.7530864197530864,0.125,0.6071817192600653,0.7510917030567685,0.6260504201680672,0.4264705882352941,0.0804597701149425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00245227189818,0.0045430576400438,0.0068426395939086,0.0089027104484892,0.011261902824123,0.0135842447200668,0.0155877255581608,0.0178544084770158,0.020077488473845,0.0223002651868082,0.0244730150918635,0.0268607982257087,0.0289078568490333,0.0310484784803345,0.0332734741057237,0.0352716183387605,0.0374877025837518,0.039639807869866,0.0416441432076177,0.0436131880948909,0.0584956472724995,0.0720659462512945,0.0851603703354198,0.0981774993693769,0.1106403608616837,0.1262456014286771,0.1343940132708656,0.1412106197701247,0.1476807203209012,0.1539433798562538,0.1624517281068812,0.1715980807469525,0.1804306261678182,0.1870140648204769,0.1928007293737711,0.1992765246634291,0.2050741843070372,0.2094486773200278,0.2151460847473006,0.2183787001213342,0.2217648691147904,0.2240248734702465,0.2271136750520143,0.2285502250311213,0.229334561363113,0.2310053910672839,0.2319184254209153,0.2335755316316049,0.2356461953226784,0.2354980629062971,0.2277538115270223,0.2198504846924804,0.2132047207716753,0.2074461979913917,0.2007725992657358,0.1945005696923661,0.1872851964030696,0.186217557562444,0.1861468200270636,0.1850406905926174,0.1855019344329057,0.1867215866942568,0.1865713281944243,0.1876323218066337,0.1902177776724567,0.1922127987663839,0.1942776998597475,0.2018774979087275,0.2086249095108414,0.2156572541382668,0.2225251396648044,0.2279781988061251,0.2346134908911866,0.2437796208530805,0.2478903910715906,0.2518603319977103,0.2576205978100029,0.267497034400949,0.2702922077922078,0.2671493902439024,0.0,2.643857711321379,37.56420286354015,61.64364481582553,53.59026708268569,full_FIT_compliance,56 +100000,95768,56206,542.352351516164,2021,20.017124718068665,1737,17.709464539303315,472,4.657087962576226,77.36211040614715,79.72414126771422,63.32787542470121,65.07559425209666,77.28607575295824,79.65327697290046,63.29495974607927,65.0461945332637,0.0760346531889126,70.86429481375944,0.0329156786219471,29.399718832962662,406.04212,285.5798320953045,423984.94277838105,298199.4247528449,879.35154,608.5064237884966,917799.849636622,634986.6163859502,730.10849,361.98014730436125,759942.1831927156,376004.4114070535,1076.8593,593.3018286321501,1099109.7757079608,594254.121450955,307.7604,172.79009545273863,312754.4900175424,171819.83068743107,419.21638,213.52850581271755,413676.4890151199,202395.344217412,0.38025,100000,0,1845646,19272.042853562776,0,0.0,0,0.0,77456,808.3493442486008,0,0.0,65145,677.7420432712388,0,0,0,0,0,0,0,0,122,1.273911953888564,0,0.0,0,0.0,0,0.0,0.02021,0.0531492439184746,0.2335477486392874,0.00472,0.5336609336609337,0.4663390663390663,14.66341095680928,2.1571325898482443,0.2389176741508347,0.5716753022452504,0.0765687967760506,0.1128382268278641,12.058582487443555,8.881334198436283,5.322402479349598,9374.830683534145,21.33466952917272,12.931022621890149,4.84698282627041,2.1179036347564,1.4387604462557562,0.7345998848589522,0.8580060422960725,0.7228915662650602,0.5459183673469388,0.1278195488721804,0.850887573964497,0.917883211678832,0.8850574712643678,0.7605633802816901,0.1538461538461538,0.624439461883408,0.7842696629213484,0.6058091286307054,0.424,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026139023129996,0.0048877441336929,0.007197238858999,0.0095816779621406,0.0118305274401098,0.0140954088075935,0.0162951481655211,0.0185003675569713,0.0207973333605995,0.0227840583271893,0.0246841414390023,0.0266450274256835,0.0291146272710438,0.0311823746419076,0.0333157878440722,0.0357301628327733,0.0376821198910646,0.039509042050984,0.0415575235956924,0.0437255228730939,0.0587357257677292,0.0722983575687833,0.0855180369127516,0.0976063773846833,0.1101337383453571,0.1251863994500555,0.1317894424170415,0.1387448767764943,0.1461540927206094,0.1516652726843809,0.1612027743075001,0.1705875987447246,0.1791720147062022,0.1857774083471869,0.1915446152491829,0.1980504015508169,0.2037309933686114,0.2091346694558787,0.2133623622261532,0.2171305621681011,0.2192292567833267,0.2220456245325355,0.2251917871369638,0.2269837278637882,0.2280757059543872,0.2286438342682807,0.2295874395773223,0.2297957681225645,0.2308834351076053,0.2315633054547367,0.2242827621373554,0.2155033023650963,0.2090273594553325,0.2030740501328736,0.1961582721076392,0.1879606692907402,0.1814999136537042,0.1811605981794538,0.1811535474284942,0.1812992230033299,0.1808862372781174,0.1816272965879265,0.1813462964488753,0.183010412547779,0.184125486496049,0.1859514687100894,0.1864727839991085,0.1954967943801957,0.2028282552261238,0.2095219737856592,0.215968239964711,0.2234588162888501,0.2260303159432641,0.2323099415204678,0.2377949918933525,0.2430365296803653,0.2504034032565644,0.2550902804456396,0.2546260099035705,0.2633333333333333,0.0,1.6531360713454029,35.89813957155178,61.03506113846419,50.90641379187575,full_FIT_compliance,57 +100000,95755,56238,543.042138791708,2104,20.67777139574957,1814,18.307138008459088,539,5.25298940003133,77.32840490063373,79.68881293506826,63.31625382636724,65.0646362312483,77.24089140698132,79.61026444922433,63.27797356242208,65.03236428949556,0.0875134936524091,78.54848584392471,0.0382802639451611,32.27194175273951,404.97028,284.982316909556,422923.377369328,297616.12125691195,883.6752,612.1628809346789,922244.1125789776,638695.1396111733,735.47074,366.139548806147,763870.6908255443,379213.1818580098,1179.01063,663.803724957938,1189117.4560075193,651070.4558069429,330.4267,187.8020306393413,331691.96386611665,182744.47354116372,490.41286,249.7794439016166,477242.48342123127,230127.3906637171,0.38091,100000,0,1840774,19223.789880424,0,0.0,0,0.0,77745,811.2683410787948,0,0.0,65545,680.3508955145945,0,0,0,0,0,0,0,0,155,1.6082711085583,0,0.0,1,0.0104433188867422,0,0.0,0.02104,0.0552361450211336,0.2561787072243346,0.00539,0.5203213610586012,0.4796786389413988,14.569583968071138,2.307010610181824,0.2309812568908489,0.5441014332965821,0.1091510474090407,0.1157662624035281,12.59168211536504,9.367452196559055,6.027665428297732,9437.4192250287,22.435396369510677,12.866871978762282,5.082495703296388,2.3756313236188986,2.110397363833103,0.7116868798235942,0.8530901722391084,0.7446300715990454,0.5666666666666667,0.0909090909090909,0.8353909465020576,0.9139966273187184,0.8899082568807339,0.7391304347826086,0.1159420289855072,0.5688836104513064,0.7614213197969543,0.5870646766169154,0.4322033898305085,0.0775193798449612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023914960023509,0.0046958356153268,0.0070868699995938,0.0095022256549929,0.0117189884234298,0.0138730443285528,0.0162342959699787,0.0184179360476987,0.0206199268028379,0.0228570843654676,0.0245810055865921,0.0269318438507505,0.0290723981900452,0.0311676005273566,0.0329594353349087,0.0352572716184648,0.0374092974629167,0.0393877170057868,0.0414527694066299,0.0434737324501104,0.0588929134351415,0.0732454764146009,0.0866834434308482,0.0991044023041668,0.1108148835052741,0.1264098092067015,0.1343606494787413,0.141149547631719,0.1483340988965207,0.1540061988567506,0.1623613056124097,0.1708346408977286,0.180550115332724,0.187223151885028,0.1925430968054424,0.1991692512184315,0.2044262404857034,0.2095548928028811,0.2148856954754932,0.2182155580247196,0.2211118051217988,0.2246715601477394,0.2280894756142281,0.2294592780787114,0.2301389816107301,0.2306688658575613,0.2320800750703784,0.2324419816476449,0.2332281591061915,0.2330925026649295,0.2255599720685395,0.2179176091575844,0.2098962938014847,0.2026557066076509,0.1956107293283085,0.1888636813496353,0.182308623916702,0.18187599882587,0.1821432202528213,0.1827224296915099,0.1833663806682356,0.1833440677635302,0.1835976980672841,0.1832466502115655,0.1851904457543261,0.1865822719934397,0.1880195941217634,0.1955343393902063,0.2012684264655468,0.2086643158832875,0.2143649350073199,0.2194079794079794,0.2242501673054693,0.2297227737333627,0.2352994637826047,0.2436131386861313,0.2492629716981132,0.2472927741681433,0.2567531425514843,0.2632968691059977,0.0,2.524981674903941,40.70296979234232,53.23245016814405,52.02691813301235,full_FIT_compliance,58 +100000,95724,56512,546.3102252308721,2043,19.984538882620868,1728,17.404203752454976,515,4.930842839831181,77.31464774318667,79.67931725130201,63.30648041847581,65.05551748771772,77.22299739770833,79.59809759046101,63.266268056041895,65.02203331893115,0.0916503454783423,81.21966084100052,0.0402123624339125,33.4841687865719,405.05454,284.93504753909104,423148.36404663406,297663.12266421283,879.53139,609.4281683930396,918188.9390330532,636020.5963002583,731.72747,363.4601075264544,760228.9916844261,376593.5678497319,1085.93798,626.884251977382,1090843.9471814802,611316.307789372,326.73621,186.28091241856427,325468.7957043166,178882.83225565948,463.6986,245.0286672558016,442461.66060758015,219238.7041720685,0.38018,100000,0,1841157,19234.01654757428,0,0.0,0,0.0,77447,808.3970582090176,0,0.0,65277,677.8655300656053,0,0,0,0,0,0,0,0,127,1.3162843174125611,0,0.0,2,0.0208934018636914,0,0.0,0.02043,0.0537377031932242,0.2520802741067058,0.00515,0.5416058394160584,0.4583941605839416,14.6800888730947,2.202919202605032,0.2175925925925926,0.5717592592592593,0.0914351851851851,0.1192129629629629,12.955369872659077,9.762356192432778,5.962424930588077,9390.847910668132,21.58807722535417,12.924272181439388,4.616468183047689,2.3062033004501017,1.7411335604169862,0.7407407407407407,0.8694331983805668,0.7526595744680851,0.5776699029126213,0.120253164556962,0.838405036726128,0.9192751235584844,0.8556701030927835,0.7011494252873564,0.2153846153846154,0.6206451612903225,0.7900262467191601,0.6428571428571429,0.4873949579831932,0.053763440860215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023603302436306,0.0047348196814388,0.0071154509835766,0.0094502591200081,0.0117605168116384,0.0137434288275805,0.0157925342528641,0.0179289783749566,0.0199537955144849,0.0221121166209409,0.0242789619923513,0.0262652606503681,0.0284003826491251,0.0303757818054425,0.0324009083402146,0.0344973741884795,0.0367712540126333,0.0388402909649368,0.0410830707801728,0.0432875627695705,0.0576670077474053,0.071700720147379,0.0849699945444626,0.097410656065291,0.1090957026100711,0.1256281407035175,0.1337741877275477,0.140843120760704,0.147035556220735,0.1525112685125563,0.1613244176013805,0.1701325299899221,0.1784971073074534,0.1845041095890411,0.1907938257993384,0.1978617343710101,0.203621478341591,0.2089695302104242,0.2140842828227695,0.2170713506687331,0.2205405154830335,0.2228611582830708,0.2257800838723434,0.2267685186295554,0.2278871494674455,0.2294976966472051,0.2302070189028123,0.2306647369490148,0.2318017552916881,0.2317065155956308,0.2249252350235358,0.2178456481544888,0.2117304434270032,0.2054131667743556,0.1992555611355646,0.1919437768109769,0.1845372815289827,0.1830476438766864,0.1828253909095529,0.1822471195306425,0.1828375498100268,0.1833600062453647,0.1843011861784425,0.1849554602441438,0.18613337115571,0.1878229726272704,0.1886269459065964,0.1951820590228574,0.2027305159165752,0.208972020644961,0.2161945483698557,0.2225103734439834,0.2290433925049309,0.2352941176470588,0.241505968778696,0.2463349878794875,0.2528684249739234,0.2612163509471585,0.2673107890499195,0.2749812171299775,0.0,2.481167501703875,39.90872193831067,51.93701651325932,45.49113973324935,full_FIT_compliance,59 +100000,95820,56633,547.589229805886,2173,21.52995199332081,1871,19.004383218534755,540,5.322479649342518,77.3504688262772,79.68225002862964,63.33176974345843,65.06009701560063,77.26537926582455,79.60288472272195,63.29568418285536,65.02771624213574,0.0850895604526442,79.36530590768598,0.0360855606030767,32.380773464893764,405.01912,285.1538170742161,422687.45564600296,297593.213394089,886.00247,612.6239178039806,924146.8065122104,638842.5358004387,736.31219,365.1970443361986,764617.8042162388,378260.723797638,1178.16707,656.713822254192,1195261.2606971404,651276.1261824509,345.29012,193.4870563416672,344996.90043832187,186652.7021692723,483.10858,241.58883926873483,475278.3135044876,228067.1537108837,0.38253,100000,0,1840996,19213.066165727407,0,0.0,0,0.0,77978,813.2644541849302,0,0.0,65629,681.0895428929243,0,0,0,0,0,0,0,0,150,1.5654351909830937,0,0.0,0,0.0,0,0.0,0.02173,0.0568060021436227,0.2485043718361712,0.0054,0.5331201461854728,0.4668798538145272,14.645088868744567,2.183172269939897,0.2490646712987707,0.555318011758418,0.0865847140566542,0.1090326028861571,13.087926469769709,10.034749276160596,6.125375475691848,9435.881527800228,23.12911436643357,13.580960525702482,5.5263688446762265,2.3287481347456422,1.6930368613092155,0.7343666488508819,0.8517805582290664,0.7360515021459227,0.6274509803921569,0.1111111111111111,0.8357740585774058,0.9155629139072848,0.8551401869158879,0.6867469879518072,0.109090909090909,0.6284153005464481,0.7632183908045977,0.6349206349206349,0.5867768595041323,0.1121495327102803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023806147051076,0.0044512943228253,0.0065969755404445,0.0089511597898865,0.0111174400390585,0.0132203458882483,0.0154097190352353,0.0176864635242218,0.0197844668929696,0.0219069262739798,0.0241071337017934,0.0261539251424757,0.0282596847008977,0.0304634397528321,0.0324041129090477,0.0342928583236898,0.0364263089249115,0.0383558233848132,0.0405404001039231,0.0427128877784717,0.0578945172327463,0.0719610241612562,0.0854657864403227,0.0985470094449639,0.1100388744324227,0.1254478014139428,0.132733885419207,0.1399742561407614,0.1472299627387549,0.1531940887121837,0.1616159442124747,0.170565850072434,0.1786106132203574,0.1847779757155815,0.1906574128050859,0.1971976074435091,0.2033001974763195,0.2082878707776065,0.2140060599870629,0.2182546494992847,0.2212022060098738,0.2237656845105965,0.2272238439084344,0.2292239955971381,0.2312442373950599,0.231672637293644,0.2336337612660474,0.2340839199939004,0.234931506849315,0.2345033705498209,0.2272501309973263,0.2199223093077841,0.2136508515985902,0.2065109451232675,0.2008485726534896,0.1934752161734259,0.185449739612014,0.184697387080474,0.1846067853452802,0.1851406332920573,0.1862127722625574,0.186831629068769,0.1860287279115428,0.1877617599083013,0.1895273071910911,0.1908948758042603,0.1906571300849351,0.1977209732060363,0.2054775761725436,0.2126686307954721,0.2197962798937112,0.2263597033374536,0.2309194069916417,0.236480023544993,0.2415362213323625,0.245265799680584,0.249447473110358,0.2550465838509316,0.263336820083682,0.2664714494875549,0.0,2.072521268230715,40.43624651381721,62.12779621549928,52.76386398757933,full_FIT_compliance,60 +100000,95719,56449,546.7670995309187,2024,19.902004826627945,1720,17.405112882499818,491,4.80573344894953,77.30949638025908,79.66915929933025,63.31695901961641,65.0593978622779,77.23159267788367,79.59886188643365,63.28315137170503,65.03039030728242,0.0779037023754085,70.29741289659341,0.0338076479113809,29.007554995487794,405.00526,285.065381771686,423118.5240129964,297814.41512057965,882.46512,610.8805518563978,921378.7440320104,637649.6105318386,730.97222,362.0501777124359,759993.8674662292,375431.8114800633,1079.11419,610.2999518995595,1091431.7533614016,601856.756934547,306.44059,173.0315884550839,306196.021688484,167064.785634787,441.20404,218.95661845767103,430861.9187413157,203577.38498011284,0.38366,100000,0,1840933,19232.660182408927,0,0.0,0,0.0,77699,811.1555699495399,0,0.0,65187,677.2845516564109,0,0,0,0,0,0,0,0,148,1.5461925009663704,0,0.0,0,0.0,0,0.0,0.02024,0.0527550435281238,0.2425889328063241,0.00491,0.5324165029469549,0.4675834970530452,14.952981064249178,2.267960280542927,0.2372093023255814,0.5697674418604651,0.0848837209302325,0.1081395348837209,13.41729942960222,10.05841845645968,5.435015155376434,9422.402471300968,21.52037342871452,12.89471947177038,4.848138030070902,2.192259002618429,1.585256924254809,0.7459302325581395,0.8734693877551021,0.7352941176470589,0.5913978494623656,0.1164383561643835,0.8488499452354874,0.9321739130434784,0.8939393939393939,0.6823529411764706,0.0727272727272727,0.6294919454770755,0.7901234567901234,0.5857142857142857,0.5148514851485149,0.1428571428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020356285636159,0.0044603033006244,0.006614722830939,0.0086942390509466,0.0111930056422508,0.013374454181807,0.0154512561789736,0.0175263098798575,0.0197663603936919,0.0218606079214,0.0239242296890055,0.0259056185312962,0.0279285949325436,0.0298555112717685,0.0318165879416678,0.0339098629967144,0.03601664217259,0.037998838463453,0.0399517751725284,0.0418337691017614,0.0568997023964914,0.0712753152964571,0.0842231125841706,0.0962816522251198,0.1087243084775433,0.1243760047381335,0.1331529524112685,0.1406595980241866,0.1471851297938254,0.1529354994370275,0.1620844196418952,0.1710963634985763,0.1797516839138619,0.1865623461180719,0.1918444635268732,0.197885380531758,0.2038368768983384,0.208697414647329,0.2140391515647,0.2185713467376983,0.2218764100843447,0.2247109573187126,0.2273044486237772,0.2281531882269792,0.2294411686200286,0.2304397065340489,0.2321332683974575,0.2331543061745324,0.2335125077527393,0.2338153181626633,0.2269674993284985,0.2199736755511681,0.2133765559438106,0.2072821883939224,0.200617922715312,0.1935149789061667,0.1855864936373945,0.1849628965179809,0.1848628289306255,0.1849219151613989,0.1850613154960981,0.1848017880249382,0.1865978098556495,0.1875262541177511,0.1894263698630137,0.1898402588730803,0.1904654760230628,0.1996230029974351,0.2076101928374655,0.2137374990309326,0.2202486678507993,0.2244137288398819,0.2290708371665133,0.234905800326361,0.2429042299945065,0.2477886272257323,0.2565320665083135,0.2566195500696794,0.2720234917245061,0.2781703235403496,0.0,2.1590902703282766,38.57794755855462,56.562212410763216,45.48438277545564,full_FIT_compliance,61 +100000,95746,56334,546.1638084097508,2088,20.69015938002632,1801,18.3506360579032,509,4.9923756606020095,77.40440741590693,79.76054401302436,63.3594678928421,65.09870994820353,77.32417387779026,79.68820814930591,63.32507571309345,65.06936381122267,0.0802335381166727,72.33586371845036,0.0343921797486501,29.346136980862525,405.78362,285.46502293085103,423812.6083596181,298148.2494630074,885.01338,612.1149364326787,923871.3157729828,638847.9794797474,738.99686,366.136561634512,769047.5111231802,380252.8605773355,1135.90538,641.5727234584963,1152722.202494099,636426.3190718115,339.21763,193.1832624559024,341088.36922691285,188588.95766302684,456.7101,231.80706363882527,445871.9319867148,214614.45240885197,0.37981,100000,0,1844471,19264.209470891736,0,0.0,0,0.0,77874,812.8485785306958,0,0.0,65839,684.8850082509974,0,0,0,0,0,0,0,0,150,1.5666450817788733,0,0.0,1,0.0104443005451924,0,0.0,0.02088,0.0549748558489771,0.2437739463601532,0.00509,0.5459305092812946,0.4540694907187054,14.62376661129524,2.1388327011262285,0.2326485285952248,0.5646862853970017,0.0794003331482509,0.1232648528595224,13.223050452582296,10.059672979009871,5.774826673611977,9383.145202589423,22.498554568175532,13.442789415228477,4.9642878120994745,2.5148274621898263,1.5766498786577616,0.7540255413659078,0.872173058013766,0.7565632458233891,0.6036036036036037,0.1398601398601398,0.8497899159663865,0.9288079470198676,0.868421052631579,0.7446808510638298,0.203125,0.6466431095406361,0.7893462469733656,0.6637554585152838,0.5,0.0886075949367088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021768404426579,0.0042766658221434,0.006512873577211,0.0087950033006652,0.0109198499283194,0.0128664495114006,0.014940127388535,0.016887238145771,0.019178306137671,0.0212742008104457,0.023470328994568,0.0256589210936858,0.0277269456152976,0.0296741100856954,0.0315321357450189,0.0336579213959354,0.0357793794788948,0.0378419311002997,0.0398029597605587,0.0414635670541182,0.0559395293478941,0.0695905147605144,0.082542246651212,0.0953687641276349,0.1075976051943671,0.1235143594298524,0.1313042371263075,0.1397470564438861,0.1470082365635048,0.1527730119241657,0.1625259802496257,0.1713478891221085,0.1790270481908055,0.18572209467585,0.1914184521976329,0.1982310093652445,0.2053758643765335,0.2108770904513576,0.2163041383766138,0.220327351336513,0.2225070435545702,0.2260788430137625,0.2285747980423374,0.2295191504593723,0.2307515569260535,0.2322911428115839,0.2325972634149988,0.2332915543064048,0.2330453369043173,0.2326529542087806,0.2257896354911579,0.2170195328507034,0.209590630197487,0.2035991632518554,0.1978369629193643,0.1901513084083811,0.1829012132802457,0.1820689655172414,0.1819715553456042,0.1819206651166068,0.1820905459387483,0.1827761840641648,0.1827244582043343,0.1831710373024421,0.1830886171568858,0.1850023026147469,0.1864014929946241,0.1936741900813757,0.2008904109589041,0.208339780287792,0.2143900819127739,0.222864814623567,0.2296242069302098,0.2348216917182434,0.2416696848967765,0.2462992484627647,0.2550295857988165,0.2613348900564312,0.2708110992529349,0.2748004561003421,0.0,1.6863183725414013,40.8263664665995,60.45066123741871,46.218705566424646,full_FIT_compliance,62 +100000,95742,56572,547.1684318272022,2116,20.931252741743435,1839,18.560297466106828,540,5.180589500950471,77.33232137485312,79.69611323078739,63.31916690730778,65.07056174115817,77.25077360249587,79.62581832311366,63.28400014770993,65.04223554218464,0.0815477723572541,70.29490767372693,0.0351667595978497,28.32619897353084,405.3368,285.1739095091981,423362.0145808527,297855.366986982,886.2751,613.5316918974997,925007.802218462,640138.9824318632,734.24023,363.7324353331511,762742.3596749598,376796.8218074166,1196.93274,660.6934502475048,1205833.0095464897,646229.8838818514,344.77652,193.5402214231981,340528.24256856967,183003.28418847677,481.44862,238.58462833668116,459929.1846838378,213750.0032433628,0.38401,100000,0,1842440,19243.727935493305,0,0.0,0,0.0,77888,812.7989805936788,0,0.0,65539,680.4014956863236,0,0,0,0,0,0,0,0,152,1.5876000083557895,0,0.0,0,0.0,0,0.0,0.02116,0.0551027316996953,0.2551984877126654,0.0054,0.5299105040037683,0.4700894959962317,14.610449619683775,2.3005625975827244,0.2490483958673192,0.5464926590538336,0.089178901576944,0.1152800435019032,13.02985193244469,9.92696858028474,6.0963898652923785,9477.879680510252,22.919168022540138,13.22712650682458,5.543933443978111,2.400205113004387,1.7479029587330626,0.7292006525285482,0.8616915422885573,0.7270742358078602,0.5754716981132075,0.1219512195121951,0.8390804597701149,0.918918918918919,0.8198198198198198,0.7613636363636364,0.1818181818181818,0.6099773242630385,0.7796610169491526,0.6398305084745762,0.4435483870967742,0.091743119266055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021788479468158,0.0045238312590654,0.0067825521890991,0.0090047971379786,0.0113331163017823,0.0135593565672721,0.015582932202007,0.017784765541251,0.0201421195235417,0.0222358722358722,0.0241012024972577,0.02628201837688,0.0285455742020401,0.0305789294799831,0.0326957203582188,0.0348106499090458,0.0370282164121149,0.0391231273602523,0.0411020119720651,0.0428583331597475,0.0579275931184232,0.071745453784502,0.0855464652821481,0.0979715875035489,0.110378860571296,0.1252512217309441,0.1323917956771325,0.1401398631172231,0.1474464403955828,0.1528992966203465,0.1618326530172646,0.1712616316814542,0.18023104033416,0.1865882198552087,0.1933020881466323,0.200002214128353,0.2053630188174142,0.2105085584471085,0.2156271263325017,0.2193651011626842,0.2225446557604485,0.225173844445743,0.2273801645078945,0.2280999844447369,0.2293487881469985,0.2305800167265213,0.2316354556803995,0.2329566353385842,0.2335196396070787,0.2337276550998948,0.2271344119894368,0.2192516298690626,0.2131057963095288,0.2075872664876585,0.200519564864426,0.1935969352852647,0.1864198889814916,0.1869753367605909,0.1863773846335817,0.187001926033255,0.1869098194905664,0.1871015683053697,0.1894991822115484,0.1911638073789494,0.1930278364460476,0.1946789132052236,0.1959775098604156,0.2031042265714374,0.2116489489799428,0.2197707959772355,0.2256901157613535,0.2339616746511143,0.2395383286014072,0.2473062346734041,0.2554757793329092,0.2590991810737034,0.2634494824318413,0.2654833108238472,0.270893371757925,0.2737614678899082,0.0,2.3699511313562707,40.41580238202985,61.42057831755513,49.42597786747117,full_FIT_compliance,63 +100000,95714,56231,544.8732682784128,2058,20.289612804814343,1770,17.782142633261593,500,4.805984495476106,77.41699606751023,79.77132301275671,63.36600846061516,65.10093827160487,77.33225562320885,79.69561587767012,63.330005018610336,65.07055318957529,0.0847404443013744,75.70713508658855,0.0360034420048265,30.38508202958212,406.42932,285.8225364884493,424628.6854587626,298621.2484318187,882.92469,611.0733652889471,921767.0769166476,637744.9000113518,728.52226,361.4681805661831,756570.4703596131,374123.8654613572,1115.80661,621.047998385576,1116693.7334141296,600010.9073107536,315.68457,178.71554326993007,310842.8129636208,168021.30252136858,450.16428,226.29392326158637,431624.19290803856,204171.0742616865,0.38054,100000,0,1847406,19301.303884489207,0,0.0,0,0.0,77645,810.4874939925194,0,0.0,64888,673.4124579476356,0,0,0,0,0,0,0,0,181,1.8806026286645632,0,0.0,2,0.0208955847629395,0,0.0,0.02058,0.0540810427287538,0.2429543245869776,0.005,0.5446213217559093,0.4553786782440907,14.700233859493752,2.260263027882084,0.2412429378531073,0.5548022598870056,0.0858757062146892,0.1180790960451977,12.350784300872284,9.08109117845901,5.680550657386582,9363.24666364061,21.79648368683827,12.83828394260238,4.987498463664195,2.373868679819469,1.5968326007522244,0.7288135593220338,0.8492871690427699,0.7377049180327869,0.5933014354066986,0.1118421052631579,0.8476084538375973,0.9108391608391608,0.8932584269662921,0.7422680412371134,0.1923076923076923,0.6061997703788748,0.7634146341463415,0.6265060240963856,0.4642857142857143,0.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021862790744751,0.0041941464304166,0.006349399545602,0.0083571116684775,0.0104624206930209,0.0126936623302591,0.0149631018877155,0.0171769748928352,0.0192429537882968,0.0212691949625052,0.0233430339795876,0.0253699788583509,0.0274982267498637,0.0298236941835557,0.0317529091359247,0.0338214171308112,0.0359561031162646,0.0376704869574236,0.039733103297754,0.041754349411397,0.0567075972100405,0.0706348874194358,0.0842399001290349,0.0968776619798294,0.109100304784805,0.1247184238078619,0.1319834105879482,0.1392670491436843,0.1462330669629503,0.1520552499222511,0.1612990061483132,0.1701591354111448,0.1790301897454845,0.1850229886312754,0.1903909313590878,0.1977037430315901,0.2034430887514624,0.208596400566203,0.2143528958491506,0.2178487295016353,0.2201892088574696,0.2224686573436369,0.2246203981391834,0.2266907360694346,0.2278096114940579,0.2292340022858266,0.2303308433825088,0.2309681344588942,0.2321555180281799,0.2329729800732966,0.225288711449318,0.2178624199638811,0.2117935429651936,0.2040596294006871,0.1977762355477459,0.1907345766266928,0.1851915720825233,0.1850355369486905,0.1840561138463613,0.1831198986771742,0.1832601718986314,0.1838419549719303,0.1841866787494336,0.1844434706397896,0.1864310954063604,0.1893181586199857,0.1914786967418546,0.1990743578740881,0.2064202933233052,0.2131881707976218,0.2211780277961614,0.2251352047386041,0.2318090482859404,0.2378945812079544,0.2456474428726877,0.2515901862789641,0.258021978021978,0.2582449373191899,0.2662675689744924,0.2661377569419401,0.0,2.7252283810305102,37.30686536517064,57.96663332086096,50.41597956775565,full_FIT_compliance,64 +100000,95677,56387,544.718166330466,2097,20.569206810414205,1819,18.238448111876416,516,4.870554051652957,77.3508434030137,79.74179355377528,63.31502979323547,65.08284799922232,77.26518214719081,79.66898398752413,63.276905903744606,65.05322502828952,0.0856612558228846,72.80956625115209,0.0381238894908619,29.62297093280597,405.02506,284.8765124099476,423325.4178120133,297748.1656092348,881.50152,611.190650920918,920568.9873219267,638044.5884809493,737.15059,367.0491846628594,765591.1243036466,379827.72914926574,1140.53266,653.8163263134561,1138468.7124387263,629993.6581888949,329.21397,194.5879400368069,323665.26960502524,183050.31965529904,459.94368,239.4314804149032,432019.9211931813,208285.47651036945,0.38125,100000,0,1841023,19242.064446000604,0,0.0,0,0.0,77552,809.776644334584,0,0.0,65839,683.2676609843536,0,0,0,0,0,0,0,0,132,1.3796419202107089,0,0.0,1,0.010451832728869,0,0.0,0.02097,0.0550032786885245,0.2460658082975679,0.00516,0.5345971563981042,0.4654028436018957,14.400546064570248,2.1905358388743053,0.2429906542056074,0.5612974161627268,0.0786146234194612,0.1170973062122045,13.412230401850431,10.2313733619669,5.927105955475906,9418.217787104588,22.72798761837512,13.447056835044288,5.313039235628226,2.392450832378804,1.575440715323802,0.7388675096206707,0.8472086190009794,0.7782805429864253,0.5633802816901409,0.1048951048951049,0.8490175801447777,0.9135399673735726,0.8962264150943396,0.7407407407407407,0.180327868852459,0.613849765258216,0.7475490196078431,0.6695652173913044,0.4545454545454545,0.048780487804878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024615820983214,0.0047357799839774,0.0069029225756022,0.0095028051061061,0.0119432745325438,0.0140278315437745,0.016158483714003,0.018240496762465,0.0205254599564332,0.0228692570819934,0.0248592437621142,0.0270645028759244,0.0290989508331619,0.0312908909197688,0.0335208215078177,0.0354798358333936,0.0377020306672192,0.0397658269236757,0.0417672270306258,0.043783293546134,0.0583602310593003,0.0729334645751743,0.0867388177991455,0.0992940631871311,0.1113537578596446,0.1262948502259044,0.1337593817344133,0.1407072105655554,0.1470846073253651,0.1525194526428763,0.1624409805316603,0.1710026308097047,0.1790195331628489,0.1845970319134964,0.1906198392601563,0.1975941016686069,0.2047532400843928,0.210627616946558,0.216120168945002,0.218786163594074,0.2208310672421574,0.2235547391451871,0.2261138203683537,0.2272346034028277,0.2282079605734332,0.2287777928166258,0.2289819970536093,0.2296388416537651,0.2310779076668989,0.2314036541572945,0.2243355704697986,0.21784647427992,0.2102512365659198,0.2027027027027027,0.1974238806850001,0.1898834102501821,0.1832726816413602,0.1812687840142961,0.1816107110254589,0.1814429352619509,0.1819241227502266,0.1824887124396699,0.1851081787677296,0.1863476733977173,0.1867820836379932,0.1885660300275763,0.1911425794807719,0.1985919804101622,0.206025864128024,0.2129938947125907,0.2180619644034278,0.2235632479071439,0.2282152629978717,0.2336427939876215,0.2399672399672399,0.2484186313973548,0.2528396518660569,0.2578531508961264,0.2683181225554107,0.2722242714865363,0.0,2.944311353466526,40.01330059467425,61.0995356337984,46.19157589282932,full_FIT_compliance,65 +100000,95721,56401,546.2437709593506,2098,20.74779828877676,1787,18.062912004680268,515,4.972785491167038,77.26691653433518,79.6266357131201,63.2951211478972,65.03877271305065,77.18423438153856,79.55228989223804,63.259397151489445,65.00852475986255,0.0826821527966217,74.34582088205843,0.0357239964077535,30.24795318809481,404.73554,284.7948645004502,422827.9061021092,297525.63768288086,881.79499,610.7433733115963,920602.2398428768,637437.7949736986,735.75225,365.4844652692007,764712.696273545,378817.11036740855,1139.76086,634.7323638919155,1152841.340980558,625625.6725997397,324.84333,184.34845624653,324505.94958264125,177974.17672156706,461.69336,233.098083022028,445593.65238557896,213086.91796937844,0.38122,100000,0,1839707,19219.450277368604,0,0.0,0,0.0,77472,808.7044640152109,0,0.0,65491,680.2791445973193,0,0,0,0,0,0,0,0,171,1.7864418466167298,0,0.0,1,0.0104470283427878,0,0.0,0.02098,0.0550338387282933,0.2454718779790276,0.00515,0.5423568386180786,0.4576431613819214,14.719335226835897,2.2776382169675515,0.2311135982092893,0.5618354784555121,0.0867375489647453,0.1203133743704532,12.703545562892122,9.46382872710928,5.870868569166393,9426.538030625545,22.254132923491685,13.207506778359877,4.853006509591549,2.498754174055823,1.6948654614844387,0.7420257414661444,0.8754980079681275,0.7312348668280871,0.6139534883720931,0.0838709677419354,0.8513661202185793,0.940677966101695,0.867816091954023,0.6770833333333334,0.1454545454545454,0.6272935779816514,0.782608695652174,0.6317991631799164,0.5630252100840336,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0047247766883979,0.0071031375573324,0.0092745908716896,0.011349998982975,0.0135012676529583,0.0158723686222539,0.0181500801339308,0.0201795097217394,0.0223859972362966,0.0244997539773659,0.0267753559951952,0.0288138207619929,0.0306217040210942,0.0325495981594775,0.0345351553616836,0.0363788871974898,0.0384695190272648,0.04032014968037,0.0421871906811006,0.0570133762151889,0.0707474590996158,0.0839752334977437,0.0974547291112069,0.1094805030384875,0.1250211649170335,0.1327473087457799,0.1390897762251169,0.145776523050271,0.1526488111212495,0.1612225097024579,0.1698450536352801,0.1794857833581984,0.185869005771105,0.1910333961370222,0.1981333096575145,0.2046369164729028,0.2096205611055423,0.2143068014079709,0.218263061411549,0.2213766942683998,0.2243258413826975,0.2270571398157237,0.2291422138117709,0.2304518258716732,0.230816580285366,0.232284203023596,0.232575574672478,0.2330763858351224,0.2337804508104828,0.2266033062301437,0.2200478574178997,0.2121864404395109,0.2049819192923312,0.1994018979377322,0.1914088718042589,0.1838794109299612,0.1836497924768783,0.1834199884459849,0.183380021985036,0.183806179514334,0.1859025832860024,0.186870469979855,0.1865932413305024,0.189110112038821,0.1911893366270392,0.1927070144340339,0.2000558728582071,0.2068137527839643,0.2148428267549042,0.2210128631825132,0.2292813335430099,0.2347557204700061,0.2402263757539653,0.2483708122992198,0.2558461006796452,0.2586872586872586,0.2612276917042557,0.2692615302585977,0.2702095808383233,0.0,2.2693225736299527,38.54010706050623,61.98108272794487,47.9793858783294,full_FIT_compliance,66 +100000,95692,56613,547.8618902311583,2107,20.77498641474732,1849,18.63269656815617,504,4.838439994983907,77.288290147924,79.65778900490295,63.294707477804174,65.0437346059344,77.20611314235762,79.58702592247495,63.25850770385481,65.01514376144786,0.082177005566379,70.76308242800167,0.0361997739493631,28.590844486544142,404.22338,284.5333430493712,422421.2891359779,297342.8740640505,881.98733,610.518767120999,920989.5498056264,637299.6249644683,735.9456,364.9415458298746,765259.0498683276,378379.8890366894,1161.21835,646.373955077917,1165030.514567571,627008.1146573562,342.03459,192.05813828354783,340878.1820841868,184149.87489398045,451.57362,231.66234180066843,430687.8526940601,204561.48287433447,0.38222,100000,0,1837379,19200.967687999,0,0.0,0,0.0,77665,810.8932826150567,0,0.0,65605,681.6975295740501,0,0,0,0,0,0,0,0,143,1.494377795426995,0,0.0,1,0.0104501943736153,0,0.0,0.02107,0.0551253204960493,0.2392026578073089,0.00504,0.5469561113732893,0.4530438886267107,14.628709086585005,2.163256394338531,0.2449972958355868,0.5657111952406706,0.0919415900486749,0.0973499188750676,12.56193120495591,9.518400588318793,5.772373780112528,9448.175890919583,22.90382257860108,13.691806376185852,5.344382698625283,2.0472668162060668,1.8203666875838809,0.7339102217414819,0.8546845124282982,0.739514348785872,0.6111111111111112,0.1058823529411764,0.8414893617021276,0.918918918918919,0.8523809523809524,0.7671232876712328,0.1846153846153846,0.6226622662266227,0.7709251101321586,0.6419753086419753,0.5046728971962616,0.0571428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020660529274146,0.0043085532385113,0.0066769493038925,0.0093053495601292,0.0114107883817427,0.0137665590729973,0.0160681878428253,0.0180370540499157,0.0202496192335606,0.0224018830271708,0.0243405005431774,0.0266161647266531,0.0287779399971211,0.0306996766286997,0.0326972666322846,0.0347051406602038,0.0366232475304934,0.038544563908838,0.0405346369877262,0.0428157505263377,0.0566092914438502,0.0699529877391186,0.0836324705585994,0.096299570598636,0.1090759372063807,0.1246995542284764,0.1316611091051972,0.138989227375891,0.1467619129095731,0.1535206881369401,0.1634330209333175,0.1723364607484128,0.1795648101762104,0.1862588400148884,0.1928595813098109,0.2010671222087876,0.206628290392891,0.2116266750819931,0.2167026719727117,0.2195648182152038,0.2215641732922278,0.2248843067189971,0.2275857164867203,0.2281621537317193,0.2290455927051671,0.2301782080532774,0.2316790497788581,0.232616441842708,0.233395503056678,0.2346579443689743,0.2277186475299683,0.2195359826371241,0.2130508784515621,0.2058365534344541,0.1987788431613735,0.1912531641709109,0.1848953823385865,0.1846743295019157,0.1834930867758079,0.1841881552847832,0.1844690848981259,0.1850295187082144,0.1858143099805278,0.1865712713263621,0.1889576055141157,0.1909989023051591,0.1922239589148152,0.1993841416474211,0.2071821305841924,0.2151569297700435,0.2225196288365453,0.2290119931467732,0.2361833649550156,0.2393648449039881,0.2486691329062528,0.2523576866265197,0.2603299751788582,0.2635748792270531,0.2685016878732796,0.2778179190751445,0.0,2.684478267767399,39.225392192336095,62.06442848319154,52.106378063143474,full_FIT_compliance,67 +100000,95829,56211,543.5306639952415,2011,19.785242463137465,1720,17.36426342756368,478,4.539335691700843,77.36488025655099,79.68022893777088,63.35773544642036,65.07117402041746,77.28305815312251,79.60667050545044,63.32190570569869,65.0406942605828,0.0818221034284789,73.55843232043924,0.0358297407216667,30.479759834662445,406.91398,286.29813518857014,424625.09261288337,298759.3893169814,880.69091,609.1687899158443,918418.8502436632,635078.6086840563,730.69786,362.1180781133077,758874.9230399983,375029.25296656106,1096.14135,616.2541560840516,1103008.1812394997,602233.6830020675,316.40703,181.60153082043905,311637.9071053648,170993.92641110867,427.1843,223.98324445980936,404617.7670642498,200401.15664779476,0.37997,100000,0,1849609,19301.14057331288,0,0.0,0,0.0,77366,806.728652078181,0,0.0,65103,675.7453380500684,0,0,0,0,0,0,0,0,156,1.6278996963340953,0,0.0,2,0.0208705089273601,0,0.0,0.02011,0.0529252309392846,0.2376926902038786,0.00478,0.5423476968796433,0.4576523031203566,14.776237492486151,2.140130338041377,0.2313953488372093,0.5738372093023256,0.088953488372093,0.1058139534883721,12.644707557960638,9.564153528896952,5.455507963050875,9397.558974721964,21.385462833224484,12.932076819688325,4.75308508987328,2.02871824766542,1.6715826759974624,0.7354651162790697,0.8611955420466059,0.7462311557788944,0.521978021978022,0.1503267973856209,0.8250564334085779,0.9095652173913044,0.8579234972677595,0.639344262295082,0.1791044776119403,0.6402877697841727,0.7936893203883495,0.6511627906976745,0.4628099173553719,0.127906976744186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020155980958168,0.0046838882355326,0.0069810861271207,0.0093040263275504,0.0114702921467139,0.0136032256750702,0.0157189749026483,0.0176919778671621,0.0196679751390251,0.0216797174881007,0.0237465666379699,0.0259844216618946,0.0281195079086115,0.0302487623634997,0.0323867443178889,0.0344581969836173,0.0365325141444544,0.0387185677134598,0.0405461530474509,0.0422605547348051,0.0569786603809007,0.0708865522503501,0.0842237586423633,0.0974388054059162,0.1097408136828469,0.124857444561774,0.1327584563068741,0.1402175184188983,0.1474705016322785,0.1531919451585261,0.1627399087701179,0.172326187310133,0.180700115164816,0.1866413297512177,0.1933038117946971,0.2003427876375297,0.206025840944531,0.2109080294593138,0.2161899047985601,0.2194820926565035,0.2214156289311805,0.2239563285159393,0.2269121813031161,0.2296721017738756,0.2292355985407652,0.2304289593649779,0.2307164596118345,0.2320629649814324,0.2319483298740476,0.2322138666876648,0.224092449015118,0.2171414497988671,0.2106103917941819,0.2036177641125846,0.1972251363052054,0.1893080516792719,0.1820584626034423,0.1808099424265653,0.1804511278195488,0.1803447115299452,0.1805816571460469,0.1802777124029183,0.181003547055529,0.1812574612017509,0.1823431952662721,0.183776575282743,0.1858711137182603,0.1920964955577492,0.1996764979178855,0.2073941190234771,0.2158389261744966,0.2208720141858767,0.2269376122916795,0.2328398384925975,0.2403100775193798,0.2480369515011547,0.2507462686567164,0.2593545832508414,0.267590618336887,0.2762863534675615,0.0,2.228525771304685,37.13368481127626,59.54249344409456,45.46767558630666,full_FIT_compliance,68 +100000,95642,56186,543.7255599004621,2009,19.78210409652663,1705,17.28320194057004,485,4.673678927667761,77.2563444549925,79.66691345039926,63.27473565930678,65.05599982902184,77.17909300270757,79.59747699177764,63.24125223478588,65.02763625929103,0.0772514522849263,69.43645862162384,0.0334834245208952,28.36356973081422,404.84202,284.87565747910213,423288.952552226,297856.2320728364,881.1115,610.1314773773736,920742.6967231968,637415.2646090352,727.55441,360.8240442050429,757608.4251688588,374861.29020890896,1085.72871,604.0497395904777,1097012.274941971,593385.2382744795,315.13075,177.38510986857528,315902.5846385479,171880.46032974572,433.20798,218.10834993242872,415709.6463896614,196862.92420836116,0.38039,100000,0,1840191,19240.40693419209,0,0.0,0,0.0,77505,809.8220447083918,0,0.0,64816,674.536291587378,0,0,0,0,0,0,0,0,159,1.662449551452291,0,0.0,4,0.0418226302252148,0,0.0,0.02009,0.0528142169878282,0.2414136386261821,0.00485,0.5499505440158259,0.450049455984174,14.866510273593066,2.2388710397625973,0.2504398826979472,0.5571847507331378,0.0844574780058651,0.1079178885630498,12.805907684966025,9.508891225189023,5.439796205584034,9394.690349674898,21.09511779247732,12.438034666832165,5.030189701116709,2.075113113670867,1.5517803108575838,0.7413489736070381,0.8736842105263158,0.7306791569086651,0.6195652173913043,0.0555555555555555,0.8480278422273781,0.9215328467153284,0.8994708994708994,0.7123287671232876,0.0769230769230769,0.6322657176749703,0.8084577114427861,0.5966386554621849,0.5585585585585585,0.0434782608695652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023497240087101,0.0046927419600052,0.0070733415196013,0.0092347078723598,0.0112422423440838,0.0134062732394079,0.0156989554431206,0.0177878131513343,0.0196898717345498,0.0219435736677116,0.0242778718382843,0.02644208535871,0.0287329105583923,0.0308582151105245,0.0328495428955116,0.0348920230543972,0.0367694317168743,0.0387999542918878,0.0408849207588008,0.0429227078335245,0.057388614249433,0.0714278231171361,0.0849841999727042,0.0978326087643027,0.1100640545360531,0.1260040001269881,0.1336913720453846,0.1407942238267148,0.1474973546670087,0.152735896637943,0.1612423324457476,0.169485098961098,0.1774091661584037,0.1841998575576617,0.1895530781699692,0.1964131134441657,0.2016213798501621,0.2071696540225094,0.2116785004260153,0.2155131894209494,0.2197981717278214,0.2225215517241379,0.2257517950662338,0.228074802205706,0.2287721515910251,0.2301044248005819,0.2312629814068717,0.2315263418914279,0.2322708338723448,0.233113402604928,0.226200075256679,0.2197818801164771,0.2130149220145422,0.2060087693994115,0.19938313710371,0.1926768139861849,0.1852132223063335,0.1841653729879892,0.183149684077865,0.1831641812267823,0.1822637149672033,0.1824159861809045,0.1835039558112008,0.1832079592331958,0.1863414402882472,0.1879585449694731,0.1902744261743083,0.1977696086002904,0.2058480334957787,0.2119662094086646,0.2192499111269107,0.2248808783923762,0.2343394602569619,0.2414607156030984,0.2473070017953321,0.2565385490106891,0.2626306620209059,0.2744607087827427,0.2844513780551222,0.2880414661236579,0.0,2.1426367287003494,36.34252999993713,56.86385324906389,49.03415097865307,full_FIT_compliance,69 +100000,95682,56506,547.2711690809139,2043,20.181434334566585,1736,17.45364854413578,469,4.483601931397755,77.32722884548278,79.7023397111068,63.32110870231941,65.07514089041149,77.24699110029094,79.63239409149786,63.2870503624006,65.04725893557108,0.0802377451918374,69.9456196089443,0.0340583399188147,27.88195484041012,405.21866,285.120451134974,423505.6332434523,297987.5537039088,882.54086,610.6252168687796,921718.2019606612,637531.371489705,732.10818,363.6243659133049,760159.9046842667,376295.0088897441,1089.71296,612.1851058181611,1092877.709496039,593799.6653687855,323.62997,185.20409204338293,319023.003281704,174350.15158899612,419.24492,212.1592401880348,400005.5600844464,190040.50966376232,0.38249,100000,0,1841903,19250.25605652056,0,0.0,0,0.0,77679,811.1557032670721,0,0.0,65362,678.2153383081458,0,0,0,0,0,0,0,0,142,1.4736314040258356,0,0.0,2,0.0209025731067494,0,0.0,0.02043,0.0534131611283955,0.2295643661282427,0.00469,0.5370009737098345,0.4629990262901655,14.462608323341138,2.22911281573854,0.2419354838709677,0.5650921658986175,0.0817972350230414,0.1111751152073732,12.98841750853518,9.856131056457087,5.384161072063503,9437.528212775693,21.67713997161476,12.924068446282272,5.028165556037952,2.2204051326660226,1.5045008366285144,0.7482718894009217,0.8664627930682977,0.75,0.6062176165803109,0.1197183098591549,0.8646288209606987,0.9279588336192108,0.8905472636815921,0.7654320987654321,0.196078431372549,0.6182926829268293,0.7763819095477387,0.6210045662100456,0.4910714285714285,0.0769230769230769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024804098244477,0.0047430349342765,0.0070102465253119,0.0091613597814274,0.0114499547492907,0.0137150886338875,0.015887259600677,0.0180976989776638,0.0202482973022723,0.0223551218113485,0.024541324390569,0.0264060638428988,0.0286975036257598,0.0308091788684066,0.0327674286598895,0.0347990651306128,0.0367258562459855,0.0386096778547179,0.0406378065777703,0.0423598082134667,0.0571965740547315,0.0714786558245162,0.0849258459021207,0.0972469150088894,0.1096544886938913,0.1245279426232109,0.1315993335667972,0.1380687202529893,0.1449129816989134,0.1507304829124922,0.1606492751125568,0.1695186760615211,0.1783111826506862,0.1853723084325755,0.1919847706240302,0.1995015507310589,0.2065291367749277,0.212603029314862,0.217023400369778,0.2205508620097534,0.2228186056196282,0.2263348024831359,0.2286954156862281,0.2293836026331538,0.2300570319136027,0.2318250080011817,0.2333175047485754,0.2350438206528642,0.2350189322960416,0.2351191259707779,0.228320748125655,0.2202769399506443,0.2139970816028735,0.2068355922215674,0.1994885666563197,0.192209772086287,0.1850511977601963,0.183789935777579,0.1826786559394226,0.1819544100276783,0.1818702854607306,0.1816604950302085,0.1841268530371226,0.1845418923083696,0.1841263826058122,0.1853068768128962,0.1878504148912312,0.1943261097734148,0.2026790314270994,0.2077629122588674,0.2146655346530229,0.2202092769014524,0.225047718736531,0.234237591295275,0.2399594694178334,0.2440572351719363,0.2482121573301549,0.2538778715884547,0.2563897763578275,0.2628846866889136,0.0,2.708801456230361,38.06864212774374,57.57734838517125,45.936721341212106,full_FIT_compliance,70 +100000,95772,56283,543.3216388923694,2102,20.684542454997285,1807,18.2203566804494,522,5.074552061145219,77.38146625236273,79.70363851291908,63.35451413110488,65.06749448515576,77.29658085305697,79.6264144344318,63.31766233025888,65.03567407835395,0.0848853993057616,77.22407848729063,0.0368518008460014,31.820406801813306,405.56186,285.26662489586187,423466.00258948334,297860.15212782635,880.07707,609.5394809918953,918293.3320803576,635812.8882174523,735.00717,365.6284161874598,762407.9898091301,378072.75144202175,1146.64758,647.5068294261611,1154401.2655055758,633261.8947394217,340.68411,194.411463819556,338197.52119617426,185504.64697916788,470.32056,241.9764687898333,455957.1064611786,223501.8135534703,0.37939,100000,0,1843463,19248.454663158333,0,0.0,0,0.0,77562,809.1926659148811,0,0.0,65227,676.116192624149,0,0,0,0,0,0,0,0,168,1.7437246794470198,0,0.0,1,0.0104414651463893,0,0.0,0.02102,0.0554047286433485,0.2483349191246432,0.00522,0.529688972667295,0.470311027332705,14.684000269847674,2.162806097582956,0.2462645268400664,0.5506364139457665,0.0918649695628112,0.1112340896513558,11.91653207611204,8.907770330190957,6.069062740383086,9400.857113126673,22.5071465481079,13.109990724229672,5.291493817701387,2.295544724924709,1.81011728125213,0.740453790813503,0.871356783919598,0.7595505617977528,0.582089552238806,0.0963855421686747,0.8533755274261603,0.9272419627749576,0.9195979899497488,0.7613636363636364,0.1571428571428571,0.6158323632130385,0.7896039603960396,0.6300813008130082,0.4424778761061947,0.0520833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022477370755118,0.0045907819530584,0.0067761536198658,0.0087740677553009,0.0110323649933399,0.0132642465948653,0.0154313437703848,0.0177348748456616,0.0198099713935431,0.0219348502209854,0.0241773552432078,0.0263984076825214,0.0286410161548896,0.0306561528484074,0.0327130264446621,0.0348759152733168,0.0371501008951208,0.0393443642697188,0.0414904999844176,0.0434592478447378,0.0582839372182334,0.0719809139137987,0.0850376523398988,0.0975853332912842,0.1099538257184423,0.1247276573241671,0.1313369188174267,0.1384680896364507,0.1456466240105963,0.1519063344341038,0.1612319815697968,0.1698045873841528,0.177623137979776,0.1847075937045422,0.1906375488200671,0.1978421250858497,0.2041467660581172,0.2096193647079996,0.2152025148382264,0.219583719944557,0.2221142162818955,0.2244501637810014,0.2270630264029526,0.2278456768694861,0.2287894041020292,0.2297910543209572,0.2307625098293745,0.2319099812249454,0.232045055285729,0.2334117770795261,0.2255880065438356,0.2186528639307672,0.2125285600145778,0.2055476426834707,0.1992161502625157,0.1911294497396388,0.184510536729374,0.1834856418094897,0.183407738095238,0.1827240181295522,0.1831678591898238,0.184656105250866,0.1848009898948237,0.1850946719506825,0.1867321867321867,0.1868797953964194,0.1881886908248947,0.1954312382940833,0.2021717535025519,0.2091913903432228,0.2142381607562913,0.2199794026776519,0.2261492682334365,0.2299229922992299,0.2351331630791681,0.2455939574273289,0.2491572622013776,0.2567934782608695,0.2620489860416118,0.26620029455081,0.0,2.446950799266925,39.72591046562884,59.75294259215907,48.5955180004318,full_FIT_compliance,71 +100000,95753,56444,545.048196923334,2096,20.59465499775464,1829,18.48506052029701,518,5.002454231199023,77.31912755708531,79.66988875485583,63.32066847763053,65.05868184373556,77.23443248620524,79.59237138950397,63.2843163260131,65.02723658087821,0.0846950708800733,77.51736535186637,0.0363521516174358,31.44526285734628,404.85522,284.8249248240919,422811.3583908598,297457.34761081456,883.35791,612.6646981123555,921917.2976303614,639221.497612528,740.3036,367.3740953256912,769107.0358108884,380599.4053569296,1142.86542,641.0002621980653,1152797.8862281076,629035.7840308946,332.33408,188.83283270093236,332233.7576890541,182396.6833835648,464.05584,232.32070325983435,447213.4136789448,213393.93527878224,0.38103,100000,0,1840251,19218.69810867545,0,0.0,0,0.0,77664,810.428916065293,0,0.0,65911,684.2918759725544,0,0,0,0,0,0,0,0,150,1.5665305525675437,0,0.0,2,0.0208870740342339,0,0.0,0.02096,0.0550087919586384,0.2471374045801526,0.00518,0.5459280303030303,0.4540719696969697,14.669849819240488,2.225545901354847,0.2427556041552761,0.5680699835975943,0.0820120284308365,0.107162383816293,13.062656411333286,9.584437837821548,5.885025320906943,9466.701513287757,22.78573166532468,13.61606217931244,5.346244600553607,2.206215586309032,1.6172092991495968,0.7326407873154729,0.8450433108758422,0.7364864864864865,0.6071428571428571,0.1066666666666666,0.8464818763326226,0.9114139693356048,0.8767772511848341,0.7727272727272727,0.1153846153846153,0.6127946127946128,0.7588495575221239,0.6094420600858369,0.4722222222222222,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024304043585251,0.0047223826751385,0.0070512560366868,0.0094050254931036,0.0115629862403514,0.0137789862821178,0.0160183533010451,0.0180941878037822,0.0202449847651377,0.0223587223587223,0.0243102193148844,0.0267073283430366,0.0289610630026533,0.0308842920718641,0.0328218991508197,0.034984548921525,0.0371762221255978,0.0391689055319855,0.041419872394372,0.0435366780889689,0.0585809872754412,0.0717924577645274,0.0852300140546663,0.0985089066016109,0.1107105207674467,0.126403603374992,0.1340997793992873,0.1415834104716609,0.1481074155143879,0.1538692422309646,0.1636984236368334,0.1725119303978963,0.1807701928200889,0.1867429046223816,0.1932439418772205,0.1996855868123595,0.2061120656952223,0.2114260008996851,0.2157799205899035,0.220000686679561,0.2226785280473838,0.2254329852299704,0.2286055758034742,0.2295392434194754,0.2315380411682555,0.2318213744408709,0.2311328422974477,0.2318164484555739,0.233050518637316,0.2344754029284736,0.2261305182857219,0.2186595718419573,0.2121280211215189,0.2057582347942561,0.1988347332308056,0.1909992534925882,0.1837068748426089,0.1824894858670492,0.1830267926701216,0.1824606773416466,0.1827010565799491,0.1835809225957779,0.1840043119532318,0.1857215503327511,0.1877387363875774,0.1879977393002106,0.1895401009534492,0.197580396271835,0.2042651415971887,0.21187327930513,0.2187708305559259,0.2240663900414937,0.2296150534989546,0.2363433667781493,0.242024202420242,0.2477987421383647,0.251660516605166,0.2543601802861062,0.2597817407505989,0.2643593519882179,0.0,2.355413334325227,39.41643708029439,62.71229366067065,50.22699403435176,full_FIT_compliance,72 +100000,95672,56116,542.1335395936115,2058,20.35078183794632,1754,17.643615686930346,513,4.902165732920813,77.34181859432726,79.72243405454918,63.3271521787835,65.08456976705719,77.25796872640963,79.65159600803028,63.2899106064212,65.0556099839494,0.0838498679176353,70.83804651890091,0.0372415723623049,28.959783107794124,405.66702,285.33784837683623,424017.8526632662,298245.35133039585,880.27463,609.8939987831632,919340.7580065224,636733.3781234069,729.78695,362.2069540934117,758984.7499790952,375656.9751357633,1128.45385,631.1924427896905,1130271.5423530396,610998.3289594273,318.50244,183.41749601803235,312439.3762020236,171243.47355342473,463.5315,239.37712434456412,439749.6655238732,209763.96743558723,0.37974,100000,0,1843941,19273.53875742119,0,0.0,0,0.0,77484,809.0977506480475,0,0.0,65017,675.7044903420018,0,0,0,0,0,0,0,0,156,1.6305711179864537,0,0.0,0,0.0,0,0.0,0.02058,0.0541949755095591,0.249271137026239,0.00513,0.5307208514755685,0.4692791485244315,14.924174649190586,2.2276092034296058,0.2468643101482326,0.5456100342075256,0.0946408209806157,0.1128848346636259,12.07170677603358,8.83704783475697,5.831391388395344,9399.490291611291,21.72984057638172,12.551531270025864,5.158617267965533,2.207836412495219,1.811855625895106,0.7217787913340935,0.8725182863113897,0.6905311778290993,0.5555555555555556,0.1325301204819277,0.832967032967033,0.9228070175438596,0.835,0.7361111111111112,0.1764705882352941,0.6018957345971564,0.7984496124031008,0.5665236051502146,0.4523809523809524,0.1020408163265306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020961813044931,0.004611938331796,0.0067672453151791,0.0091101135463427,0.011215276365559,0.0133379490103445,0.0157885617017806,0.0179557588068964,0.0200840155766105,0.0223568913274916,0.0244550171236388,0.0265695769613934,0.0286625514403292,0.0311608016899376,0.0333797801517262,0.0355617158165851,0.0374830305605355,0.0395174017775562,0.0415726012005701,0.0434750878363585,0.0581383201002925,0.0720418848167539,0.0854710722982618,0.0979259399564352,0.1102472678172074,0.1255857247120297,0.1337266678693082,0.1410062598475493,0.1474441167671069,0.153097012924331,0.1619150196564166,0.1704003374906703,0.1786374611184825,0.1847490980649393,0.1902865628953303,0.1979667323750249,0.2041023580747039,0.2089092319976608,0.2135718580195796,0.2163034520648292,0.21957561888912,0.2220638407253353,0.2253216602275546,0.2266733673151937,0.2278487152436732,0.2292507133720358,0.2301861818363448,0.2298580605845161,0.2323027429294952,0.2328833806967687,0.2260968737421172,0.2186305274264494,0.2116514932596406,0.2051466359976998,0.199143342441474,0.1909214112774284,0.1841605002278047,0.1826408215744674,0.1821244751456047,0.1824298075225145,0.1821005342848163,0.1828849902534113,0.1839220462850182,0.184651644309346,0.1858930387681245,0.1860614302943214,0.1884135073080584,0.1966924809478263,0.2041850523993381,0.2108251030406719,0.2180554936979468,0.2251048625135933,0.2320404927430174,0.2400590188122464,0.2417821244227112,0.2461485398942285,0.2503328894806924,0.2609119251753702,0.267379679144385,0.2715820674323824,0.0,2.649277991428441,37.80636003506089,57.64850743569735,48.04562885795756,full_FIT_compliance,73 +100000,95683,56453,546.3248434936195,1996,19.794529853788028,1722,17.432563778309625,480,4.723932150956805,77.38307130315455,79.75848405173579,63.34642469116329,65.09707448282467,77.3026831146668,79.68326952579126,63.312638960699125,65.06689654603444,0.0803881884877455,75.21452594453137,0.0337857304641673,30.17793679022418,405.76338,285.6391803119937,424070.2737163341,298526.3425185181,881.32179,609.3365845900095,920510.5713658644,636254.0102108102,735.00021,364.58329605766295,763874.8471515316,377895.3429910813,1063.50677,607.2637501727029,1076007.064995872,599179.3946392809,309.24196,177.79436792475897,313306.1045326756,175948.88062648888,427.99094,216.704527175872,419646.5411828643,203156.4160029455,0.38125,100000,0,1844379,19275.92153256064,0,0.0,0,0.0,77623,810.656020400698,0,0.0,65480,680.173071496504,0,0,0,0,0,0,0,0,148,1.5258718894683485,0,0.0,0,0.0,0,0.0,0.01996,0.0523540983606557,0.2404809619238476,0.0048,0.5410243659870712,0.4589756340129289,14.493991508755297,2.148647429113465,0.2462253193960511,0.5638792102206737,0.0778164924506387,0.1120789779326364,12.564583669675793,9.619078582152348,5.507754304387832,9405.36640584,21.49885461422406,12.69312416269597,5.063708249483192,2.236793297199949,1.505228904844951,0.7444831591173054,0.8671472708547889,0.7216981132075472,0.6113989637305699,0.1194029850746268,0.8438177874186551,0.9205526770293608,0.8717948717948718,0.7386363636363636,0.1666666666666666,0.63,0.7882653061224489,0.5938864628820961,0.5047619047619047,0.081081081081081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025712926313232,0.0046501732417482,0.0070486100546647,0.0092002112189772,0.0115906664633216,0.0138237120433237,0.0161471181879345,0.0181179760944788,0.0205349933049175,0.0225318373530977,0.0245755413385826,0.0265754803199737,0.0287871152204543,0.0307056848263856,0.0326720518296142,0.034747199140105,0.0367335522567412,0.0388375713544369,0.0411397670549084,0.0428960011672381,0.0579564804078264,0.0721920375197596,0.0849113015746462,0.097929743767677,0.1095519240906694,0.1256091759606744,0.133686665253339,0.1401408001361209,0.1471294290866026,0.1531432122043195,0.1628172165624966,0.1715839432630247,0.1794648873046578,0.1857174079335591,0.1918843129708033,0.1983629436001949,0.204699972090427,0.2098212275408655,0.2148288541855819,0.2186065151428408,0.2216106839336301,0.2248725503952107,0.2269215753546204,0.2274562422877406,0.2284899247390143,0.2284898250624777,0.2301609114986757,0.2304097725743165,0.2312025946169451,0.2311954619039471,0.223794324338823,0.2171382398860555,0.2109362960057161,0.2039769543541041,0.197859936536049,0.1899689573315478,0.1827096855306375,0.1817693497192154,0.1808784653968684,0.1812282283875302,0.1813647615177153,0.1831835337146414,0.1833577123550135,0.184799789251844,0.1857031857031857,0.1875493718624977,0.1892627893405952,0.1966500290902409,0.2032865457035262,0.2097980265186555,0.2169426977238508,0.2246585190510424,0.2300535149598638,0.2367032967032967,0.2414320410182603,0.2483600995249943,0.2532599246595189,0.258320726172466,0.2665980442614513,0.2726626377532883,0.0,2.177855886606839,38.850445877362176,55.81500258032023,44.92391931151778,full_FIT_compliance,74 +100000,95707,56317,544.8295318001818,2074,20.58365636787278,1802,18.389459496170605,471,4.660056213234142,77.3960056150407,79.78136731640535,63.35197710932333,65.11367137989153,77.32086597471677,79.71075965825398,63.31990753152984,65.08475252359466,0.0751396403239397,70.60765815137415,0.0320695777934858,28.918856296868967,405.65646,285.47022830367985,423852.2156164126,298274.9519927276,888.68677,614.1525353277215,928089.6068208176,641241.413443899,736.37252,364.6956353575748,766465.2010824705,378764.7184228581,1103.79741,611.5744685422418,1125338.1988778252,611092.9350202973,315.08226,179.8463997856268,318710.6899181878,177434.7287128489,417.1552,211.1171757253764,411772.9110723354,199888.58988886944,0.38146,100000,0,1843893,19266.00980074603,0,0.0,0,0.0,78146,816.0322651425706,0,0.0,65630,682.7504780214614,0,0,0,0,0,0,0,0,152,1.5881805928510977,0,0.0,1,0.0104485565319151,0,0.0,0.02074,0.0543700519058354,0.2270973963355834,0.00471,0.5277777777777778,0.4722222222222222,14.873623806873502,2.1473265684457896,0.2314095449500555,0.5849056603773585,0.0754716981132075,0.1082130965593784,12.827104373111426,9.672097994235768,5.4020474187894685,9423.67978324578,22.37019447019721,13.8389319541397,4.967249843031213,2.108205503731549,1.4558071692947492,0.7402885682574917,0.8633776091081594,0.7242206235011991,0.5692307692307692,0.0808823529411764,0.8495670995670995,0.916256157635468,0.8534031413612565,0.7272727272727273,0.1702127659574468,0.6252847380410023,0.7910112359550562,0.6150442477876106,0.4661016949152542,0.0337078651685393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022285928462169,0.0045425969864736,0.006932461785185,0.0090932181864363,0.0112607572274327,0.0135828615647782,0.0157223406099289,0.0178460219093609,0.0200883273017236,0.0226104935617924,0.0245847857289317,0.0267975399652966,0.0287965115083201,0.030829290400997,0.0327486586875773,0.0347525868039404,0.0368433046072257,0.039038415627822,0.0409755082939004,0.042896448224112,0.0578313001336898,0.0714629552113855,0.0853208314979128,0.0982558689641396,0.1105080101180438,0.1264420077612003,0.1336706658604631,0.1411997615803814,0.1484875672904383,0.1553243967828418,0.1641738006784041,0.172858332522198,0.1796540559334188,0.1862597255004808,0.1927148023170182,0.1995684408542657,0.204900671111012,0.2105328167986076,0.2145065048290854,0.218735362997658,0.221427500201885,0.223458474744294,0.2256801075903074,0.2257621368501529,0.227163243321754,0.2286043772696044,0.2300952143879519,0.2315864022662889,0.232739435260822,0.2333460021231144,0.2268117007202704,0.2186148072330262,0.2108169313352717,0.204406663035064,0.1980997274802975,0.1914515908780554,0.1841453473789817,0.1826729457616109,0.1819931782108,0.1815121607331688,0.1819374630396215,0.1832081858148854,0.1847233368314916,0.1862044787238704,0.186089826712248,0.1879401857711544,0.1888848730851566,0.1962151700408589,0.2028091812264474,0.2098856367513084,0.2163281667557456,0.2231546231546231,0.2295222890826476,0.2342975512317822,0.2386103217526812,0.2450776001853138,0.24755410613697,0.2535791331633654,0.2592395639457591,0.271274619100706,0.0,1.6273791510416835,39.62018485683057,60.049084124048655,50.614985576152016,full_FIT_compliance,75 +100000,95828,56073,542.5971532328756,2008,19.98372083315941,1728,17.510539716992945,452,4.445464791084025,77.38566316619061,79.70527323051374,63.36611244363343,65.0837041351096,77.31476229312696,79.64045944820516,63.3355978672137,65.05724229228832,0.0709008730636497,64.81378230857615,0.0305145764197263,26.46184282127706,405.6228,285.3770042881584,423282.1304837834,297801.27341503365,887.34954,614.9042660913834,925485.7452936512,641179.2024161866,727.10339,361.0995970561622,754953.625245231,374015.0898505382,1067.71181,593.0626618438438,1080494.135325792,585602.565280547,301.6645,170.7314854156595,302171.03560545977,165683.30251534912,400.68502,202.17433566912192,392462.80836498726,188341.07959613463,0.37932,100000,0,1843740,19240.096840171973,0,0.0,0,0.0,78171,815.2105856325917,0,0.0,64907,673.4774804858705,0,0,0,0,0,0,0,0,140,1.4609508703093042,0,0.0,1,0.0104353633593521,0,0.0,0.02008,0.052936834335126,0.2250996015936255,0.00452,0.55,0.45,14.81939154520188,2.1002372257049946,0.2384259259259259,0.5804398148148148,0.0700231481481481,0.1111111111111111,12.7911431460109,9.934808457436366,5.151007813439208,9333.27352086052,21.373076478196644,13.076881602877412,4.846748050457975,2.106947868190692,1.3424989566705638,0.7401620370370371,0.8753738783649053,0.6941747572815534,0.5260416666666666,0.1157024793388429,0.8478260869565217,0.9358752166377816,0.8538011695906432,0.6666666666666666,0.1296296296296296,0.629976580796253,0.7934272300469484,0.5809128630705395,0.4416666666666666,0.1044776119402985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022991299768061,0.0044098415498312,0.0065563122266088,0.0085343303598642,0.0105781358069897,0.0126463700234192,0.0147998654557685,0.0168690682722726,0.0191936225663038,0.021244806483964,0.0233246907633814,0.0251465169508052,0.0273792394655704,0.029758106021616,0.0319151130176538,0.0337347904228727,0.0356451829855039,0.0377069060229475,0.0397483022864619,0.0417789617173598,0.0563790172005549,0.0706438225855346,0.0841202796323275,0.0968670546952154,0.1095545560833798,0.1256244257395418,0.1337577593695048,0.1404933207222334,0.1470986594430876,0.1532448061683444,0.1622365591397849,0.171085742674774,0.1796257705999826,0.1857089853554202,0.1918736139472586,0.1982406118073514,0.2036276179977953,0.2088960740067136,0.2129061474017887,0.216163116111714,0.219723283213515,0.2227468261462595,0.2261441607130225,0.2275547706553386,0.2291996567021649,0.2295146249708971,0.2308572993018654,0.2304064135960142,0.2312453354607921,0.2311202013845185,0.2237868951208085,0.2170262805261574,0.2089961525008744,0.2015642939150402,0.1957172563304673,0.1879358808782192,0.1818981496025886,0.181030974819734,0.1813529451636955,0.1811540366518078,0.1807911697162753,0.1817400644468313,0.1813146922773756,0.181968879851472,0.1833309561165787,0.1844742740834256,0.185530790634925,0.1915545243619489,0.1972502418129059,0.2033296943231441,0.2078576525151623,0.2154204398447606,0.2199546485260771,0.2260779681039574,0.2326986451849139,0.2396133041776959,0.2418900903569841,0.2440023405500292,0.2451032292218105,0.2449578291162449,0.0,2.071511451106113,36.79395532687401,59.06638652676511,48.229699260366445,full_FIT_compliance,76 +100000,95764,56130,543.763836097072,2017,19.725575372791447,1732,17.470030491625245,463,4.458878075268368,77.37657405990127,79.72157128842166,63.3458979718325,65.07921418602282,77.2964611779459,79.65171923683938,63.310763965463934,65.05065441280918,0.0801128819553724,69.85205158227359,0.0351340063685654,28.55977321364378,406.11736,285.6406811240453,424081.4502318199,298275.63711211446,880.46514,609.6383547798592,918785.4830625288,635979.0550343944,730.37785,362.2987627770829,759045.100455286,375507.9844269082,1108.77203,612.5160691390809,1116338.154212439,598135.8234688883,320.47391,181.311617476502,316962.7730671234,171650.8537046869,421.31524,218.7494053419244,404664.1117747797,196540.08887548765,0.37799,100000,0,1845988,19276.429555991814,0,0.0,0,0.0,77557,809.2184954680256,0,0.0,64960,674.7420742659037,0,0,0,0,0,0,0,0,159,1.6498893112234243,0,0.0,2,0.0208846748256129,0,0.0,0.02017,0.0533612000317468,0.2295488349033217,0.00463,0.526706231454006,0.4732937685459941,14.633634317709506,2.3107812634770597,0.2523094688221709,0.5340646651270208,0.0900692840646651,0.1235565819861432,12.937275187988432,9.532689963228924,5.211560003882725,9319.126180820103,21.330742511859988,12.106423611448989,5.1264690671317545,2.342102485126419,1.7557473481528227,0.73094688221709,0.8637837837837837,0.7414187643020596,0.5700934579439252,0.1346153846153846,0.8467065868263473,0.93713163064833,0.8707865168539326,0.75,0.1875,0.6231884057971014,0.7740384615384616,0.6525096525096525,0.4538461538461538,0.0978260869565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022789425706472,0.0043892994353718,0.0064733456441892,0.0087366410662765,0.0109938166137824,0.0131668720277797,0.0152032710995095,0.0173765671580838,0.0193213997280691,0.0215884779560041,0.0237680387012135,0.0257236707041675,0.0278194715739693,0.0300415040319673,0.0320949954091054,0.0343989994521794,0.0360652342738804,0.0376771302309176,0.0394631514382842,0.0414601124765673,0.0564340211457974,0.0708010876385693,0.0839841907178127,0.0965233110522554,0.1083263069139966,0.1239388974047254,0.1316113161131611,0.1386201832519235,0.1452022899132738,0.1520188750067027,0.1609275874325474,0.1699738168913509,0.1776844670227463,0.1837835472259603,0.1895211887727022,0.1960130313372634,0.2025293848437831,0.2081936601498346,0.2127529262317394,0.2161435388083441,0.2194560983784658,0.2221028288444018,0.2249672291831504,0.2263907320397403,0.2267762543792656,0.2284481168615589,0.2283280961643972,0.2295472396057665,0.2306284476980976,0.2318220027319533,0.2246984968343841,0.216504854368932,0.2101412785004895,0.2032283521056029,0.1973300327115197,0.1901465118044485,0.1829291249647036,0.1819570126557601,0.1812204192021636,0.1814046162255567,0.1811567371422223,0.1822114822465604,0.1826813912684487,0.1832092910931085,0.1837476686262011,0.1859602445700836,0.1881525319635978,0.1958724894048277,0.2010089916946942,0.2079292419892932,0.2153983088562527,0.2237476039993783,0.2298597071616737,0.2351245472688299,0.2431572246976448,0.2462703695203121,0.2484490398818316,0.2567279767666989,0.2628120893561104,0.2692026335040234,0.0,2.3314778715135094,34.838305758939065,62.72500428706235,49.95096165758239,full_FIT_compliance,77 +100000,95753,56197,543.2519085563898,2064,20.28134888724113,1768,17.889778910321347,503,4.877131786993619,77.3313489084019,79.69658006735929,63.31030609897547,65.06266063043884,77.25088216972561,79.62558614310727,63.27531618240103,65.03355843381034,0.0804667386762929,70.99392425202211,0.0349899165744389,29.10219662850011,405.251,285.07487205628246,423225.3819723664,297718.99789696664,882.3818,610.8432462726491,920950.7065052792,637368.4127626802,731.48826,362.7317837045525,760428.3625578311,376124.68255276687,1093.23272,614.7729455300416,1102163.023612837,602767.5049977027,327.02987,190.02346841672588,323664.50137332507,180684.32052057356,450.35826,226.9855119126606,435003.1852787903,206571.83433149813,0.38051,100000,0,1842050,19237.51736238029,0,0.0,0,0.0,77742,811.2957296377137,0,0.0,65264,678.00486668825,0,0,0,0,0,0,0,0,154,1.6083047006360114,0,0.0,1,0.0104435370171169,0,0.0,0.02064,0.0542429896717563,0.2437015503875969,0.00503,0.5490856592877768,0.4509143407122233,14.694565072002872,2.1050312756623457,0.2217194570135746,0.5888009049773756,0.0876696832579185,0.1018099547511312,12.49950746657755,9.532761489187916,5.624458330557052,9408.403162722756,21.887111908233848,13.56691179761955,4.701258046331439,1.981482295000196,1.637459769282661,0.7375565610859729,0.8568683957732949,0.7423469387755102,0.5333333333333333,0.1612903225806451,0.8582251082251082,0.9230769230769232,0.8655913978494624,0.8,0.2580645161290322,0.6054502369668247,0.7627906976744186,0.6310679611650486,0.3826086956521739,0.0967741935483871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884720209931,0.0044718456249936,0.0066785079928952,0.0088091851249745,0.0110683838938737,0.0136468719129044,0.0159476297784258,0.0183485301775631,0.0207223148441735,0.0229837966282237,0.0251169182802756,0.0268248831355627,0.0288766311283085,0.0308461300628671,0.0327924691893231,0.0349605517583678,0.0369146975376395,0.0389751891168321,0.0408307519594187,0.042848810565346,0.056921856406188,0.0706325537592214,0.083691752512431,0.0966632664864921,0.1093819194027962,0.1249735584041968,0.132557226390466,0.1389036835041223,0.1450435526104846,0.1507549012243671,0.1602250436507081,0.168168330770397,0.1772063706332531,0.1829545952099479,0.189438224512038,0.1965237826033941,0.2028090703049114,0.207708321611433,0.2138189985706831,0.2184225294043542,0.2212775310012955,0.2248326859175363,0.2270962089460349,0.2288753507783081,0.23064774770397,0.2308459549316586,0.231791885847088,0.2323029641106398,0.2339746076073746,0.2345859319491592,0.2269939473648893,0.2202593703353738,0.2131501169615217,0.2071361906813123,0.2000383130470661,0.1929078875462991,0.1860115317122085,0.185414332342768,0.1843243974172611,0.1846026344095502,0.1854358519176005,0.1864367144109909,0.1865665483950821,0.1869568087306651,0.1874069346947457,0.1888024166709334,0.1889847304804176,0.1965898930102056,0.2034570797681479,0.2098384957478349,0.2152502339676456,0.2214522134877947,0.2269221351616062,0.234452231648838,0.2416719328337997,0.2433987813134732,0.2558307982036795,0.2625094768764215,0.2683937823834197,0.2696060715576436,0.0,2.2757844495322352,38.7994706195671,57.10578173102402,48.41511247304887,full_FIT_compliance,78 +100000,95482,55956,542.9819232944429,1997,19.6267359292851,1720,17.333109905531934,478,4.650091116650259,77.22623088476638,79.7127578076658,63.24095407219974,65.07602255076512,77.14716477726549,79.64320865754179,63.20701393885047,65.04796332429602,0.0790661075008927,69.5491501240042,0.0339401333492688,28.059226469096643,403.9684,284.3500317024158,423083.3036593285,297804.855053744,882.06507,610.4480973881467,923156.448335812,638687.1529588264,729.18968,361.8103120201811,758965.8050732076,375365.25203350326,1094.12985,606.8179277494526,1102346.2746905177,592235.2793817001,309.39285,174.35894523198962,306696.3511447184,165272.93650320463,429.96144,216.04614891115492,417354.0772082696,197041.70296971916,0.37796,100000,0,1836220,19231.059257242203,0,0.0,0,0.0,77645,812.4986908527262,0,0.0,64970,675.729456860979,0,0,0,0,0,0,0,0,147,1.5395571940260993,0,0.0,0,0.0,0,0.0,0.01997,0.0528362789713197,0.2393590385578367,0.00478,0.5114314115308151,0.4885685884691849,15.066730092228784,2.220237775712796,0.2406976744186046,0.5563953488372093,0.0872093023255814,0.1156976744186046,12.043560439541952,8.99619986930301,5.405991799584839,9333.552952183778,21.307619078623595,12.54771225571622,4.8808053652997865,2.2673256869913208,1.6117757706162694,0.7226744186046512,0.8589341692789969,0.7198067632850241,0.5326633165829145,0.1133333333333333,0.8457142857142858,0.9118705035971224,0.9052631578947368,0.7142857142857143,0.1153846153846153,0.5952662721893491,0.7855361596009975,0.5625,0.4180327868852459,0.1122448979591836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023711810305517,0.0044630630813393,0.0070359615814161,0.0092323335027961,0.0111683498941195,0.013300718544565,0.0154083204930662,0.0178407209858377,0.0198268982873979,0.0219362506531695,0.0239779107602927,0.0262289351114035,0.0283478350409308,0.0305396262222038,0.032743015374442,0.0345805810365891,0.0363689173348824,0.0381796825462823,0.0402862857857232,0.0420490973070617,0.056712199717381,0.0705555264124219,0.0837583469162416,0.0961068251760043,0.1080898282694848,0.1228840058935139,0.1303894778253889,0.1379336100470555,0.1448876416529209,0.1506347210129739,0.1588175595430891,0.1682682921538428,0.1770015698587127,0.1841946621362415,0.1903217622467101,0.1970982936366868,0.2027398792216506,0.2084854631507775,0.2138732266278646,0.2177074373530592,0.2209089434285846,0.2241355074500984,0.2263117978859553,0.2271079855027242,0.2282262185773732,0.228262479632647,0.2284922644868483,0.2284312476105518,0.2297846982926134,0.2304769945124525,0.2236741175362338,0.2155896563083342,0.2090512096830812,0.2027095048394287,0.1959896411394746,0.1889666529435981,0.1820244548090256,0.1811976419484952,0.1809379830476805,0.1816908401007128,0.18301673072995,0.1841240018788163,0.1855480076215723,0.1855269548324429,0.1869778230101062,0.1888136983492258,0.1918383340797134,0.198592505710229,0.2053101002100623,0.2135827920183593,0.219972347352928,0.2247138640012429,0.2291717566577082,0.2372831520141134,0.2413172575130466,0.2438914027149321,0.2523584905660377,0.2566423932296792,0.2582957260419432,0.2640883977900553,0.0,2.6938900774208454,36.34517411107058,56.97802104934073,49.26121033625139,full_FIT_compliance,79 +100000,95702,56261,544.5340745229985,2013,19.874192806837893,1699,17.094731562558778,482,4.608054168146956,77.36399481233721,79.74831222546499,63.33329461681414,65.09711276197976,77.2805594967771,79.67569180611518,63.2967331922009,65.067355754051,0.0834353155601093,72.62041934980346,0.0365614246132466,29.757007928765237,405.12934,284.9639858759701,423323.5669056028,297761.5576225892,887.19338,614.7914437119921,926362.615201354,641727.2464252223,733.83152,364.7931439878282,762581.8791665796,377929.8879796291,1085.27995,619.7559730443991,1089553.6561409377,603148.4158790221,309.00582,181.01542040800405,304949.72936824727,171288.77975981045,430.81318,223.1210755670037,410172.20120791625,197866.94024348437,0.37938,100000,0,1841497,19241.98031389104,0,0.0,0,0.0,78105,815.4270548159914,0,0.0,65398,679.264801153581,0,0,0,0,0,0,0,0,140,1.45242523667217,0,0.0,3,0.0313473072663058,0,0.0,0.02013,0.0530602562074964,0.2394436164927968,0.00482,0.5223587223587224,0.4776412776412776,14.585443810466872,2.1480688833233854,0.2460270747498528,0.5532666274278988,0.0818128310771041,0.1188934667451442,13.01655705258917,9.857593156025969,5.465001435733699,9333.305980254958,21.087422161562216,12.264245287393628,4.984548062411662,2.312613538412219,1.5260152733447088,0.7569158328428487,0.874468085106383,0.7894736842105263,0.594059405940594,0.1007194244604316,0.8533916849015317,0.9330922242314648,0.8785046728971962,0.7368421052631579,0.1153846153846153,0.6445859872611465,0.7906976744186046,0.696078431372549,0.4672897196261682,0.0919540229885057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023302702100282,0.0042998975731946,0.0063753756192641,0.0085472691424273,0.0107552046236187,0.0130814841983006,0.0152086988453221,0.0171473507904734,0.0191668456526853,0.0213907576362649,0.023760690772607,0.026076061169366,0.0281423575396009,0.0302624393360192,0.0321784988183328,0.0345226894405442,0.0367109324825457,0.0387888095633405,0.0406224338118353,0.0424454585234731,0.0563515602155478,0.0700746276467694,0.08317247167436,0.0960468613614613,0.1085391434504421,0.123950601619827,0.131561644997773,0.1388265333262407,0.1457565954539145,0.1525928784273372,0.1607834696513129,0.1702129961165258,0.1787446442941342,0.1849130059162538,0.1899832797993575,0.1976796962350414,0.2047844755478726,0.2093737001270362,0.2139770678098737,0.218237575951757,0.2208764792899408,0.2233202504438837,0.225891115446001,0.2276399411152203,0.2282152644726311,0.2294163194572471,0.2296460839614635,0.2305986134171535,0.230811862812069,0.2311983199894999,0.2246941343399459,0.2169936427643721,0.2096584710917177,0.2029116465863454,0.1967481111651129,0.1896232990877958,0.1825605406420123,0.1808643274664421,0.180236768098614,0.1792040852262722,0.1802457728910653,0.1794816877275648,0.181113561872565,0.181079295154185,0.1818782912603018,0.1842732938370393,0.1853065568719715,0.1927043250731106,0.1980129946027708,0.2049612403100775,0.2118779384369733,0.217223053506011,0.2228364351084086,0.2283166109253065,0.2323464509010665,0.2374334028260366,0.2426922500374756,0.2522343594836147,0.2539682539682539,0.2616541353383458,0.0,2.446818578232956,38.09002466820918,51.77545900875784,46.841376485090365,full_FIT_compliance,80 +100000,95671,56266,544.6059934567423,2036,20.08968234888315,1736,17.58108517732646,508,4.933574437394822,77.31725194233033,79.72421177463802,63.30264576078415,65.0842330302803,77.23346742269115,79.64941113691587,63.26624465611852,65.0534065079152,0.0837845196391811,74.80063772214862,0.0364011046656358,30.82652236510341,405.64106,285.2626565731619,423995.8399096905,298170.4555959088,883.08626,611.2779135957298,922519.7186190172,638412.364870995,728.2,361.04977182786325,757653.1132736148,374656.68636319897,1105.52056,613.1275938018189,1121550.2294321165,606877.061807464,318.88191,180.34304895915344,322251.9781333946,177444.3969009978,455.33392,232.32843880787183,442497.7683937661,214893.8609347317,0.37855,100000,0,1843823,19272.5381777132,0,0.0,0,0.0,77658,811.1548954228554,0,0.0,64821,673.9764400915637,0,0,0,0,0,0,0,0,167,1.7455655318748626,0,0.0,2,0.020904976429639,0,0.0,0.02036,0.0537841764628186,0.24950884086444,0.00508,0.529296875,0.470703125,15.105376012644031,2.2272519341917505,0.2465437788018433,0.5501152073732719,0.0892857142857142,0.1140552995391705,12.21524428723602,9.053081295942713,5.804097352778682,9384.021572488142,21.59836845426041,12.539431478590831,5.149480282513164,2.256845926644392,1.652610766512025,0.7315668202764977,0.875392670157068,0.7242990654205608,0.5606060606060606,0.0838709677419354,0.8442437923250564,0.924074074074074,0.8701923076923077,0.7349397590361446,0.1272727272727272,0.6141176470588235,0.8120481927710843,0.5863636363636363,0.4347826086956521,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025124864497958,0.0046950261116463,0.0067690309223946,0.0089219481957951,0.0110800223838836,0.0133441988387491,0.0154550833452349,0.0175608859104282,0.0199811749299175,0.0220373538783079,0.0241920590951061,0.0262233091514416,0.0284929025085694,0.0306098252487241,0.0327288125090368,0.0347528296811306,0.0365709547009433,0.0385170569603821,0.0405759707020683,0.0427077795498848,0.0571900204772451,0.0714061321940186,0.084587768470114,0.0973182253364054,0.1101218418692969,0.1259815022540159,0.1336934718699256,0.1400562312296321,0.1463521515145037,0.1521097748071538,0.1616826456964343,0.1710438002035204,0.1791132490259669,0.1847108659245394,0.190618839414531,0.1967950707034886,0.2038514320141918,0.2084471882063219,0.215280297532656,0.2189051879991761,0.221895919806685,0.2245551310362555,0.2262348197287358,0.2273042853722767,0.2285863340774531,0.2294579558881449,0.2300687070580886,0.229985536298815,0.2309955860716037,0.2307409305320141,0.2236780408075774,0.2159422074457168,0.2105145319955781,0.2032348804500703,0.19674020658165,0.1890809411406381,0.181526811104652,0.1815221815221815,0.1812341504649197,0.1809569175399597,0.1806149460395031,0.1819050590942778,0.1845307068366164,0.1851729382977316,0.1868116217242689,0.1886235233692861,0.1904308631260673,0.1993472102475674,0.2073824580698377,0.2140141227593699,0.2209058923083775,0.2275765583709,0.2332350773765659,0.2417223459539718,0.2495427944403803,0.256815578465063,0.258026159334126,0.2608866222047862,0.2671018276762402,0.2699564586357039,0.0,2.2296461876584424,37.3358494916046,60.02059910811143,46.930556222232845,full_FIT_compliance,81 +100000,95852,56141,543.0350957726495,2141,21.115886992446686,1846,18.6224596252556,532,5.143345991737261,77.4717338221379,79.75517449216302,63.40399372213196,65.08940082823813,77.38428573793543,79.67842984107102,63.36607997411196,65.0580015656962,0.087448084202478,76.74465109199957,0.0379137480199958,31.3992625419246,406.70608,285.97788379867507,424305.8465133748,298353.1780726503,881.40047,610.3187448460907,918907.3989066476,636095.6902053828,732.81147,364.3616598249988,759941.0236614781,376720.53190450894,1146.87838,641.213846621634,1156315.5385385803,628904.6399587418,335.41519,190.10573439182664,336148.8649167467,184551.13549203624,472.21528,239.4617535488368,455587.8228936277,218867.6008261866,0.37942,100000,0,1848664,19286.62938697158,0,0.0,0,0.0,77607,808.9972040228686,0,0.0,65367,677.4506530901807,0,0,0,0,0,0,0,0,137,1.4292868171764803,0,0.0,3,0.0312982514710178,0,0.0,0.02141,0.0564282325654947,0.2484820177487155,0.00532,0.5565862708719852,0.4434137291280148,14.622443506750464,2.2200306194233983,0.256771397616468,0.5536294691224268,0.080715059588299,0.108884073672806,12.529673602875782,9.482978995796572,6.055365510969202,9362.575150731622,22.797958161085404,13.357660331143231,5.632319033396557,2.212484311501808,1.5954944850438035,0.7231852654387866,0.8512720156555773,0.7278481012658228,0.5024875621890548,0.1275167785234899,0.8421052631578947,0.9161073825503356,0.8497854077253219,0.6619718309859155,0.18,0.5970982142857143,0.7605633802816901,0.6099585062240664,0.4153846153846154,0.101010101010101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022978034213989,0.0045587624479541,0.0071082358190188,0.0091961023142509,0.0113811885212584,0.0135521483003856,0.0156975796593594,0.0178806393374065,0.0201580785491085,0.0221201832610652,0.0243755056893249,0.0260809812930751,0.0281484677576766,0.0302612489324703,0.0320489031832426,0.0341921825786131,0.0359056584255715,0.0378608073793853,0.0398737331782688,0.0418045582266625,0.0566625999728887,0.070552692376044,0.0835411732651478,0.0961817303044949,0.1090780695005111,0.1241766490807016,0.1311913472244313,0.1380121065117714,0.1456709725632539,0.1517002647118713,0.1609654267052608,0.1695611295429738,0.1776042910812395,0.1838924855617542,0.1898502020734493,0.1970931196463111,0.2031049882504928,0.2082931100285117,0.2142145541819499,0.2182911081399202,0.2213389024784234,0.2239084318250693,0.2260690061928634,0.2266391141795769,0.2276328221527727,0.2284861365339492,0.2287744670240618,0.2302693252932681,0.2314354202644534,0.2325788886702093,0.2257343293972742,0.217485697120308,0.2109609714517278,0.2044930628141063,0.1971864147389487,0.1893492917203242,0.1826388997543535,0.1815205057545793,0.18125,0.1820610619935668,0.1833788169346511,0.186013986013986,0.1860780845024067,0.1863437088996054,0.188280680294512,0.1904385719018373,0.1928001999944446,0.1996022640354902,0.2077194650010184,0.2147349850425711,0.2209939904373382,0.2245904165168712,0.2312435138269946,0.2376230296751276,0.241278002203452,0.2483252483252483,0.2545641931684334,0.2595967429236138,0.2686253934942287,0.2775956284153005,0.0,2.4830935556223896,39.71242538461898,60.43732310229853,51.67652522519414,full_FIT_compliance,82 +100000,95740,55638,539.2625861708794,2047,20.13787340714435,1762,17.819093377898476,498,4.867349070398998,77.34438518034166,79.69887146951866,63.33412346583962,65.07310691476496,77.26466344912438,79.6255984893831,63.30044029892168,65.04391230915468,0.0797217312172762,73.27298013557026,0.0336831669179389,29.194605610285866,406.20272,285.63155410456346,424275.9974932108,298339.9836082761,882.99205,610.8210553558793,921687.3824942552,637407.1966679333,719.26645,356.9363536757491,747287.4138291205,369825.9190438589,1097.45572,606.2369473042098,1108987.0064758724,596017.1949062152,317.87979,175.1436156406547,319223.40714434924,170310.16084317162,445.01376,218.9785400536004,434082.05556716106,202631.03913085203,0.37603,100000,0,1846376,19285.272613327765,0,0.0,0,0.0,77968,813.7560058491749,0,0.0,64165,666.2419051598079,0,0,0,0,0,0,0,0,133,1.389179026530186,0,0.0,0,0.0,0,0.0,0.02047,0.0544371459723958,0.2432828529555447,0.00498,0.5026634382566586,0.4973365617433414,14.669652369745895,2.2174514059322847,0.2287173666288308,0.565266742338252,0.0839954597048808,0.1220204313280363,12.80035865016642,9.561825274983406,5.572265072402186,9269.59394004548,21.75120960376549,13.02851140697373,4.780178549984204,2.413809252003862,1.5287103948036984,0.7377979568671964,0.8714859437751004,0.6997518610421837,0.6325581395348837,0.0945945945945946,0.8461538461538461,0.9242957746478874,0.8359788359788359,0.7692307692307693,0.1020408163265306,0.6287015945330297,0.8014018691588785,0.5794392523364486,0.5547445255474452,0.0909090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349985819051,0.004460981618728,0.006503718584807,0.0088764307404811,0.0111230859954856,0.0130913236895951,0.0152463260023236,0.0173682330731159,0.0192600463875918,0.0211808042566253,0.0232088695794737,0.0252178464759676,0.0273702176662314,0.0292890907405691,0.0311539334419938,0.033130787037037,0.0352033950936756,0.0370020844784137,0.0390679401768918,0.0409991458511281,0.0555735360136976,0.0694985139604001,0.0829845924713927,0.0958325008149916,0.1082183980766797,0.1235818433657231,0.1304287880876878,0.1378796744507686,0.1454722159922249,0.1520764992174267,0.1615913714599412,0.1699653904391088,0.1777763283763805,0.1842530870943066,0.189788244607164,0.1957967662324727,0.2020033016552893,0.2075671057956027,0.2123338926935462,0.2159994508197659,0.2180897785585502,0.2207719363847763,0.2235523516899078,0.2243712574850299,0.2258835229339995,0.2270835898067216,0.2269488474423721,0.2282529959714827,0.2290398852668708,0.2295049609179672,0.2227229442454968,0.2150976471554959,0.208330413577565,0.201793206506121,0.1959379615952732,0.1886286810609982,0.1817137642394109,0.1790959716025661,0.1794611255059357,0.1789918342818763,0.178716310086135,0.1795176961798103,0.1813803509787304,0.1819044047907889,0.1837775037936267,0.1868591058244462,0.1892769196328632,0.1974866458764319,0.2040050923855073,0.2096661218771889,0.2160455394467668,0.2239626556016597,0.2292650033715441,0.235428151414921,0.2424077104928168,0.2438021249857191,0.2469245590632874,0.2518400636562562,0.2597367714208971,0.2673415823022122,0.0,2.196088869278752,37.0803232220226,59.72622968974689,50.83229981587452,full_FIT_compliance,83 +100000,95686,55967,540.8837238467487,2114,20.82854336057521,1842,18.83243107664653,555,5.549401166314821,77.28108161739658,79.66828115394397,63.29287913429015,65.05578803848226,77.19697198356762,79.58891982383005,63.25827266484689,65.024301022645,0.0841096338289588,79.36133011391178,0.0346064694432612,31.487015837257104,404.9881,284.95063012926346,423246.7445603328,297797.38951284776,879.19173,608.6054326854605,918423.6983466756,635638.0271779157,734.7528,365.3525235054376,765199.3708588508,379732.3884908497,1164.00172,645.3216932548305,1189885.8767217775,647821.178913144,332.89837,186.17053365969525,339958.2906590306,186625.4721272654,497.7839,235.8339266965392,496905.8587463161,227011.55670705385,0.37917,100000,0,1840855,19238.488389106034,0,0.0,0,0.0,77390,808.3627698931923,0,0.0,65499,681.8134314319753,0,0,0,0,0,0,0,0,156,1.6303325460359923,0,0.0,1,0.0104508496540768,0,0.0,0.02114,0.0557533560144526,0.2625354777672658,0.00555,0.5378111789572569,0.462188821042743,14.110797592088431,2.3081683148164385,0.2410423452768729,0.5646036916395223,0.0830618892508143,0.1112920738327904,13.214178413761315,9.868647489917182,6.153847112089119,9417.960679730471,22.817554856634832,13.586956261104746,5.31365906707071,2.33820625876836,1.5787332696910146,0.743756786102063,0.8663461538461539,0.7364864864864865,0.6097560975609756,0.1111111111111111,0.8723628691983122,0.9288079470198676,0.8863636363636364,0.8148148148148148,0.1162790697674418,0.6073825503355704,0.7798165137614679,0.5892857142857143,0.4758064516129032,0.109090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020868155802056,0.0042275367755147,0.0066675462009194,0.0089097946785057,0.010871997233692,0.0132682986436397,0.0155698758080632,0.0176011761342753,0.019923332481472,0.0220882506473965,0.0242489490413206,0.0264079264849324,0.0286304877672538,0.0307554401582591,0.0327371430340685,0.0347401724601418,0.0367930391547545,0.0389617129038619,0.0410356162103686,0.043234003522925,0.0585777118440435,0.0727074738759868,0.0864864864864864,0.0989784431515712,0.1107805593358019,0.1266964975193847,0.1339758626911931,0.141323563867175,0.1485155924266883,0.1540600607693877,0.1631292869160088,0.1719056442262891,0.1793791308703274,0.1855902606715494,0.1913028153500462,0.1978025633065767,0.2043146499234713,0.20855897949763,0.2130551801673915,0.2169344303623404,0.2198171084616275,0.2217020330294128,0.225511908004595,0.228091423637759,0.2299900405664731,0.2308270121170328,0.2312356235623562,0.2317735148672184,0.233311344793243,0.2337309694852699,0.2256541968103703,0.2188680281825548,0.2122013675887103,0.2052246875135158,0.1995999110913536,0.1913985054140613,0.1850120413656325,0.1840688034467001,0.1842498302783435,0.1836449259967424,0.183829676556375,0.1844650670015107,0.1853014553014553,0.1854511603165104,0.1862917817350728,0.1875787254826354,0.1873840966563641,0.1945778466305189,0.2012398828999483,0.2079446517412935,0.2138182789476027,0.2196891191709844,0.2236284327578792,0.2269477408417483,0.2345555454462742,0.2452124645892351,0.2475642161204606,0.2536302032913843,0.2631166797180893,0.268247499073731,0.0,1.6176971738031836,40.57958073567318,60.0911109030374,52.71725899786923,full_FIT_compliance,84 +100000,95721,56772,548.9704453568182,2238,21.917865463169,1911,19.327002434157603,529,5.213067143051159,77.3612597271838,79.72560337005434,63.34108899169471,65.08874446991612,77.27519415442337,79.64596246597617,63.30366014114284,65.05512197765454,0.0860655727604324,79.64090407817537,0.0374288505518691,33.622492261585535,404.6482,284.7420331652358,422736.89159118687,297470.5993221716,886.37699,614.4126333134913,925359.6285036722,641238.5262750403,743.17433,369.9306944259239,771247.1453495054,382581.1649834649,1220.43291,685.4946443819733,1234816.6964406974,676069.0759906429,352.60805,201.4268429060992,354608.1424138904,196784.7120073624,476.1159,245.0840684451565,468578.3265950001,232615.0543654801,0.38405,100000,0,1839310,19215.313254144858,0,0.0,0,0.0,78034,814.5547998871721,0,0.0,66317,687.7069817490415,0,0,0,0,0,0,0,0,146,1.5252661380470325,0,0.0,0,0.0,0,0.0,0.02238,0.0582736622835568,0.2363717605004468,0.00529,0.5396193005754759,0.4603806994245241,14.62716920629584,2.255243069648294,0.2307692307692307,0.5572998430141287,0.086865515436944,0.1250654107796965,12.700030092292646,9.289790795572443,5.985729121394233,9497.828112227922,23.589352933195247,13.906930647340335,5.21262309648323,2.730615385247308,1.7391838041243723,0.7362637362637363,0.856338028169014,0.7369614512471655,0.6150627615062761,0.1385542168674698,0.847675568743818,0.9191290824261276,0.8768472906403941,0.7352941176470589,0.2063492063492063,0.6111111111111112,0.7606635071090048,0.6176470588235294,0.5255474452554745,0.0970873786407767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025526483726866,0.0048361586503366,0.0070731261797,0.0093974459265881,0.0115122546527,0.0138490051119121,0.015979034527767,0.0182263746362383,0.0207142638052491,0.0226556101556101,0.0246685737135123,0.0268679710368202,0.0291985066491139,0.0311827181605595,0.0333102871825564,0.0355732451152693,0.0375693811614613,0.039359946869779,0.0414885984340393,0.043280300899155,0.0574784651527016,0.0715070701150267,0.0851400820248172,0.0977194587263035,0.109438893807175,0.1258336944688137,0.1332591060919357,0.1404645619859333,0.1473098409510889,0.1530751171192418,0.1629068903509244,0.1717781455879012,0.1794885733544978,0.1857224056139737,0.1913394309836858,0.1989310375354107,0.2042008562254727,0.2096351972316784,0.2156529425764118,0.2201869501046874,0.2233559435630178,0.2262000677245711,0.2284553037642666,0.2304767370950963,0.2315506532188737,0.2330526160720862,0.2344135610120902,0.2345633627847427,0.2359643350236777,0.2359918469327372,0.2278606565067621,0.2216857252284291,0.2154985372135668,0.2086002355441932,0.2023623209803632,0.1949171875712917,0.1869996546636109,0.1854399401596826,0.1847658956119156,0.1852054600999488,0.1847723443257355,0.1858173499912018,0.1867201887065737,0.1874559082892416,0.188485150157624,0.1900881680076086,0.1913710289036825,0.1987731581882396,0.2073734308180438,0.2152263695160913,0.2209617865563414,0.2282558199556083,0.2362248014660965,0.2397846290013276,0.2474348497230545,0.2542876743654242,0.262118756446147,0.2707926591175322,0.2707435344827586,0.2743055555555556,0.0,2.4124270325405264,42.53403458789529,56.72335154986382,55.97360023097671,full_FIT_compliance,85 +100000,95648,56790,548.4066577450652,2075,20.32452325192372,1777,17.96169287387086,516,4.955670792907327,77.2430810454354,79.64778337034541,63.27207635196621,65.05008923920273,77.15241929990157,79.56691628493232,63.23264228763497,65.01716096344477,0.0906617455338363,80.86708541308951,0.039434064331246,32.92827575796764,403.28244,283.9177438096939,421631.6284710605,296835.8387228526,888.63527,615.75336727191,928455.5139678824,643158.2716775571,745.44821,370.2844505329589,775513.3405821344,384189.7758223412,1117.29775,644.6524878384876,1123467.7149548344,629737.485512587,330.1727,195.16825679552448,322881.3775510204,182033.15399645196,460.7377,241.81148806524988,439748.45265975245,216797.5173746675,0.3822,100000,0,1833102,19165.074021411845,0,0.0,0,0.0,78027,815.1346604215457,0,0.0,66368,690.0510204081633,0,0,0,0,0,0,0,0,154,1.6100702576112411,0,0.0,2,0.0209100033456005,0,0.0,0.02075,0.05429094714809,0.2486746987951807,0.00516,0.5393794749403341,0.4606205250596659,14.766272609896031,2.2919497749575184,0.2537985368598762,0.5588069780528981,0.0838491840180078,0.1035453010692177,13.785673738248422,10.530390533256028,5.914598860275071,9512.254212558752,22.29457452620052,13.09475502080674,5.495211754763276,2.0649857305631785,1.6396220200673244,0.7591446257737761,0.8831822759315207,0.7605321507760532,0.6032608695652174,0.1208053691275167,0.8552083333333333,0.9355932203389832,0.8794642857142857,0.7948717948717948,0.1470588235294117,0.6462668298653611,0.8064516129032258,0.6431718061674009,0.4622641509433962,0.0987654320987654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023208204961893,0.0047166940539224,0.0071469904469914,0.0094290736544772,0.0116973340250017,0.0141656907174499,0.016324241651797,0.0185733540271197,0.0207992473821989,0.0232248551006615,0.0251974156496769,0.0275119125862635,0.0298751516896686,0.0319772532940485,0.0342891352366796,0.0364602721594904,0.038639636186589,0.0404894858115541,0.0423553396644441,0.0443286071726438,0.0590626469512513,0.0733544224242678,0.086742889539828,0.0989758218161531,0.111159206081081,0.1270340373722936,0.1338269821202817,0.1409395257591265,0.1480593692816402,0.1550929655527986,0.1648914931960676,0.1740747165065805,0.1824648163478715,0.1881632697762542,0.1950448017810498,0.2017105963791267,0.2077985958950051,0.2134389578778932,0.2178735397063503,0.2207449856733524,0.2240033357270263,0.2257717241217908,0.2285981396890014,0.2298659125495788,0.2316645001397106,0.2337855989747002,0.2333704477499906,0.2338896379779683,0.2348021955260977,0.2336559508425855,0.2261128952071268,0.2190132535740745,0.2111807350792402,0.2038896492112655,0.197188731226116,0.189106328457467,0.1826780590850332,0.1813354681654059,0.181472555076547,0.1811667464836198,0.1812426685534474,0.1831052290533509,0.183412912601204,0.1839734366353071,0.1862537728450222,0.1884835663794437,0.1904358387707256,0.1962811200099335,0.2030681857533677,0.2108899619204648,0.2176242795389049,0.2236924686192468,0.2279866435814989,0.2323134328358209,0.2395669473489405,0.2455754771544245,0.2497364060852538,0.2587232355273592,0.2585977072780592,0.2578008915304606,0.0,2.3651143120750446,40.35546488690184,58.58432599254284,44.7849942957597,full_FIT_compliance,86 +100000,95833,55983,540.7531852284703,2051,20.285287948827648,1778,18.12528043575804,480,4.674798868865631,77.44904619750217,79.77440312957201,63.38601454967061,65.10644595448382,77.36901962997084,79.70233064804364,63.35198843831772,65.07765528426705,0.080026567531334,72.07248152836598,0.0340261113528939,28.790670216764624,408.13498,286.94478634490656,425881.46045725374,299421.6880875132,881.75638,608.7086213124521,919696.2632913506,634775.8718942871,725.71072,359.80214735800126,755245.698245907,373835.4959555333,1139.92224,624.6218784138129,1158933.5302035834,621226.934786361,334.31873,184.12530371280548,336766.4896225725,180042.3692389943,435.45102,218.60643129930227,422976.34426554525,199664.5946871834,0.37933,100000,0,1855159,19358.248202602445,0,0.0,0,0.0,77548,808.7715087704653,0,0.0,64700,673.0562541087099,0,0,0,0,0,0,0,0,150,1.565222835557689,0,0.0,2,0.0208696378074358,0,0.0,0.02051,0.0540690164236944,0.2340321794246709,0.0048,0.5053398058252427,0.4946601941747572,14.777496985198797,2.288097337075506,0.2514060742407199,0.5404949381327334,0.0877390326209223,0.1203599550056243,12.500770200539415,9.197481966331887,5.448774986838699,9353.80693269781,21.93139938722356,12.57852506294243,5.2726250706251445,2.379307344877837,1.700941908778146,0.7362204724409449,0.8730489073881373,0.7225950782997763,0.5981308411214953,0.1217948717948717,0.8589306029579067,0.9290909090909092,0.8860103626943006,0.7654320987654321,0.2,0.6162402669632926,0.7980535279805353,0.5984251968503937,0.4962406015037593,0.0792079207920792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002045714632936,0.0042674829959555,0.0065142613619067,0.0086549303643806,0.0106979061797695,0.0129819881278445,0.0150586747958361,0.0173098316986292,0.0196525293817066,0.0218456784438919,0.024061074960291,0.0261186371100164,0.0283203125,0.0302387595622226,0.0324047813038231,0.0345369078981352,0.0365345007814036,0.0385097933494395,0.040477922077922,0.0426716913563539,0.057247767670867,0.0714203565267395,0.0851115116961516,0.0979522793893611,0.110165115960507,0.1251056814338857,0.1321976763907734,0.139618227255809,0.1464981063636848,0.1527712339915192,0.1617439922584807,0.1698873394614329,0.1773006534528797,0.1837344796735548,0.1898981473351479,0.1971071503552525,0.2032819005633113,0.2090667384646451,0.2140691465290976,0.2171585136137907,0.2203194372369255,0.2232037760037294,0.2255741877703013,0.2264851189765865,0.2274321513231096,0.2284859189480914,0.2309645301804604,0.2318745256767012,0.2315205641632779,0.2318126417047822,0.2244366027748817,0.2166093084234677,0.2094654057300906,0.203750662597957,0.1979264705882353,0.1894371848644065,0.1821903467241675,0.1812484819042992,0.180614442425466,0.1804540342985662,0.1799848845140002,0.1802193535863341,0.1826861740436652,0.1834834175269053,0.184671618912864,0.1865149084612838,0.188305721843241,0.1947980247216514,0.2017631118581278,0.2069804254661982,0.2138359201773836,0.2213708842410437,0.2262612640225587,0.2342827626918536,0.2445826094907195,0.2524038461538461,0.2566110208302555,0.2652660514431573,0.2631718294943077,0.2753834915997078,0.0,1.691010978518962,37.52149136429591,61.26343179347954,51.69087160188062,full_FIT_compliance,87 +100000,95806,56074,542.1163601444586,2105,20.78157944178861,1786,18.046886416299607,504,5.031000146128635,77.3497797498425,79.68423032058358,63.33168066437421,65.06029325601368,77.273041910429,79.610459608509,63.29946444462664,65.03044782559213,0.0767378394134965,73.77071207457675,0.0322162197475677,29.845430421545416,407.28226,286.4428427963493,425110.9742604848,298981.7538676548,876.88038,605.9596637968111,914709.3605828444,631930.1736242997,727.9842,360.87743751708695,754877.2310711229,373042.1638052599,1154.84223,635.8735129840671,1171770.024841868,630250.8813535039,329.21297,183.34100454789984,331596.82065841387,179535.24005662333,455.6076,224.80306665138625,454733.58662296727,217215.04800212785,0.37986,100000,0,1851283,19323.226102749308,0,0.0,0,0.0,77116,804.3128822829468,0,0.0,64872,672.1812830094149,0,0,0,0,0,0,0,0,149,1.544788426612112,0,0.0,0,0.0,0,0.0,0.02105,0.0554151529510872,0.2394299287410926,0.00504,0.5457547169811321,0.4542452830188679,15.056751856113056,2.246989650567076,0.2390817469204927,0.551511758118701,0.0918253079507278,0.1175811870100783,12.274053468211635,9.065355495080532,5.675814827935173,9400.92288710867,22.03026865985119,12.836711607344355,5.079005708885939,2.309725942966274,1.8048254006546207,0.7284434490481523,0.8639593908629442,0.7353629976580797,0.5714285714285714,0.0975609756097561,0.8573033707865169,0.936131386861314,0.9054726368159204,0.7108433734939759,0.1551724137931034,0.6004464285714286,0.7734553775743707,0.584070796460177,0.4803149606299212,0.0660377358490566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920477338574,0.0047248724994169,0.006992510199525,0.0090217314002986,0.0113213304851998,0.0134514535919759,0.0156300978792822,0.0177720159652113,0.0197880147592424,0.0217402429912281,0.0239566995725312,0.0259766928487088,0.027998560485322,0.0299753894947123,0.0320391153655718,0.0340979541227526,0.0363737992712818,0.038366991318418,0.0403021361482836,0.0423846161854886,0.0567199056928549,0.0708064532993172,0.0832556043472337,0.0956729152656355,0.1074575270857046,0.1233057746389529,0.1315337293169283,0.1384572815120684,0.1454343483972955,0.1512366202621249,0.1610373099755432,0.1694621794178119,0.178766028255408,0.1853094501699435,0.1907464229546779,0.1981635727260644,0.2040645600258775,0.2103878879160157,0.2152236030478955,0.2196734815289393,0.2230389607387631,0.2259337989675068,0.2282791049360837,0.2286049097801002,0.2304541709078571,0.2314336970411874,0.2320698254364089,0.2319680446360639,0.2319231265316651,0.2329424447190597,0.2261941489718447,0.2187611395980147,0.2116859984010995,0.2039514421899975,0.1984656092477346,0.1908617698091382,0.1847933728405929,0.1843120655129186,0.1836147189812541,0.1834037961472466,0.1841841841841842,0.185042601422653,0.1862994437896739,0.18450794210306,0.1860569644208932,0.186396823363648,0.1892443078642268,0.1966608246471727,0.2046449582706252,0.211868978805395,0.2178766000797271,0.2254123711340206,0.2336007839774606,0.2402081010776663,0.2504103592923582,0.2561407517422598,0.2607216799763384,0.2680272108843537,0.2848134524435102,0.2839046199701937,0.0,2.306552487533123,37.37334301393198,60.81955180437256,51.44494273153483,full_FIT_compliance,88 +100000,95798,56559,546.5876114323889,2086,20.532787740871417,1785,18.02751623207165,540,5.20887701204618,77.41775944651599,79.74722006296611,63.37436231324406,65.09566977875369,77.33212052743819,79.66965013119916,63.33756671669603,65.06409136388011,0.0856389190777946,77.56993176694493,0.0367955965480319,31.57841487357871,406.02716,285.69750134113895,423836.5519113134,298228.864841791,884.83891,612.2501955453874,923042.5165452304,638497.6494763852,733.87845,363.53984494955256,762416.5953360195,376592.1833979949,1121.93148,624.9635999817025,1126911.0419841749,608161.1169144477,337.08044,189.655556997558,329683.9808764275,175871.41568395277,481.82606,242.24040550787765,462291.5718490992,219050.13420222464,0.3818,100000,0,1845578,19265.297814150606,0,0.0,0,0.0,77802,811.5200734879643,0,0.0,65389,678.9390175160233,0,0,0,0,0,0,0,0,147,1.524040167853191,0,0.0,0,0.0,0,0.0,0.02086,0.0546359350445259,0.2588686481303931,0.0054,0.5166508087535681,0.483349191246432,15.115748765121618,2.263932741610341,0.2442577030812324,0.5568627450980392,0.0890756302521008,0.1098039215686274,13.311578882530796,10.139210425727162,6.105117199686462,9424.038786673724,22.04701396157387,13.006219999071517,5.158495768493832,2.138351718374448,1.7439464756340757,0.7316526610644257,0.858148893360161,0.7247706422018348,0.5663265306122449,0.1635220125786163,0.8388157894736842,0.924561403508772,0.8656716417910447,0.6883116883116883,0.171875,0.6197021764032073,0.7688679245283019,0.6042553191489362,0.4873949579831932,0.1578947368421052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025516661772597,0.0047641734159123,0.0068188044768698,0.0090491763319859,0.011093711868543,0.0135286453031475,0.0157170522882478,0.0179635829182657,0.0200126740121425,0.0224444262496417,0.0244054940549405,0.0261758607238908,0.0283194391620324,0.0306477516059957,0.0326242743573616,0.0345283467088071,0.0366560417270356,0.0387837193389869,0.0405971141560101,0.0429749312900807,0.0576752532682295,0.0713367273335493,0.0845274158551797,0.0974695112343617,0.1098273810150712,0.1263061140399995,0.1344520011017182,0.1408932881125275,0.147724483807288,0.1533764021470125,0.162538316751815,0.1712041658563989,0.1795331161780673,0.1853893941544475,0.1911708169026461,0.1981530634815306,0.2046467572988634,0.2098769590013022,0.2144021739130434,0.2180149495965437,0.2205086174056587,0.2229830619196491,0.2256146477278089,0.2273080370481028,0.2284669145701861,0.2299970511623335,0.2309571895180392,0.2313979421156673,0.2324280429486601,0.233458439411039,0.2260633314596215,0.2181392675316144,0.2120826041302065,0.2060672157965732,0.1992093578983081,0.192439810311284,0.185556984659786,0.1846273821708826,0.1847054259643441,0.1849978855370735,0.185512498151161,0.1858797465894515,0.1867880610542361,0.1864142832075802,0.1876314483540893,0.1888761028001534,0.1901186322400558,0.1982416771694691,0.2062529963701116,0.2114402846534653,0.2186654843715362,0.226359551722357,0.2312113985201492,0.2346570397111913,0.2436974789915966,0.2499134648667359,0.2606478704259148,0.2625786163522012,0.2662457248092607,0.2659495548961424,0.0,2.2775471821100037,38.3487743674856,59.81314307537122,48.88832248633209,full_FIT_compliance,89 +100000,95737,56406,545.4004199003521,1976,19.658021454610022,1701,17.349614046815756,501,4.919728004846611,77.3893283971574,79.75113093464904,63.35181630130408,65.09391219390642,77.30389256591418,79.67123517838955,63.31516871602048,65.06104332439,0.0854358312432168,79.8957562594893,0.0366475852835961,32.86886951642032,405.76492,285.40506999542094,423832.9172629182,298113.6551128832,880.7838,610.3962660079764,919563.63788295,637136.2232031256,727.79624,360.87670226866777,757685.8163510452,374910.0220577222,1085.92652,600.9670796682204,1105656.4546622518,599102.6245529111,311.18986,172.87018434265568,312066.2753167532,167587.46810810454,450.78758,232.78483626776216,441636.5250634551,218276.43753333195,0.38062,100000,0,1844386,19265.13260285992,0,0.0,0,0.0,77556,809.6347284748844,0,0.0,64902,675.4546309159468,0,0,0,0,0,0,0,0,132,1.3787772752436362,0,0.0,3,0.031335847164628,0,0.0,0.01976,0.0519152960958436,0.2535425101214575,0.00501,0.5231155778894472,0.4768844221105527,14.921613485471134,2.1860373271876203,0.2333921222810111,0.5649617871840094,0.0928865373309817,0.1087595532039976,11.603491594881673,8.512251392569992,5.780912141069436,9354.245714070685,20.97514594261136,12.552431990867422,4.655284818426478,2.0405246600679665,1.7269044732494947,0.7131099353321576,0.8522372528616025,0.6977329974811083,0.5243243243243243,0.1265822784810126,0.8206018518518519,0.9117647058823528,0.8333333333333334,0.6883116883116883,0.1587301587301587,0.6021505376344086,0.7745803357314148,0.5852534562211982,0.4074074074074074,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021876297639182,0.0044189039901892,0.0066542913078319,0.0089761684757775,0.011325281607092,0.0135679824114976,0.0156937877058535,0.0179486132936062,0.0201395771812766,0.0224396033930563,0.0244697202582231,0.0267369803422661,0.0288221452718323,0.0309621105289703,0.032928388746803,0.035103491748561,0.0371861897613748,0.039083082667773,0.0408897204032844,0.042814283928497,0.0577848781964936,0.0712888070399397,0.0840290304988043,0.0964096094201755,0.108627140974967,0.1240351062704874,0.1319686041578277,0.1396651018213947,0.1464480290567247,0.1521520018871566,0.1616540138911323,0.1711050058408687,0.1792310284478167,0.1853277209861695,0.1908407863326842,0.1966597632153101,0.2021401234085761,0.2079177863479463,0.2133232004718586,0.2168382243493593,0.2199581604465967,0.2231606738160323,0.2256780381780381,0.2264360805137957,0.2270820705540065,0.227360995034659,0.2275848293425882,0.2277097126043172,0.2293960476553121,0.2298716146072879,0.223595415350008,0.2162040140642742,0.2098073212338152,0.2009389401748668,0.1956512125009213,0.1887508155431138,0.1824787797162276,0.1814864075780185,0.1818457853275079,0.1824912738426823,0.1832443319351799,0.1836953345670595,0.1846255470233672,0.1844444444444444,0.186653108520349,0.1875622017505805,0.1885750926984304,0.196134376438104,0.2043823066931018,0.2135611524665406,0.2199184830763778,0.2267390742177398,0.2342811619070964,0.2414580265095729,0.2452400473717773,0.2539156282153881,0.2560223266745006,0.2636381285187342,0.2670974690360796,0.2674418604651162,0.0,1.607029765659953,36.91072753986571,55.31854449640424,49.52498486719521,full_FIT_compliance,90 +100000,95690,56242,543.6200229909082,2021,19.94983801860173,1733,17.71344968126241,517,5.131152680530881,77.35982293729873,79.73649641979915,63.33991942654043,65.09037175764323,77.27881558870529,79.66028198513317,63.304514880864986,65.05828607845025,0.0810073485934452,76.21443466598521,0.0354045456754477,32.085679192974226,406.24298,285.6941463765888,424540.6834569965,298562.176169494,882.56237,610.2580999279058,921931.1631309435,637361.9604220985,724.33482,359.1447426067259,754733.1591597869,373477.624770756,1114.3061,618.3469081865649,1138517.1073257392,620219.2791164856,317.7812,179.71991698200796,322463.42355523043,178183.68375170688,464.2348,235.5388614927141,460638.5202215488,225574.43583282325,0.38058,100000,0,1846559,19297.303793499843,0,0.0,0,0.0,77662,811.2028425122793,0,0.0,64535,672.1705507367541,0,0,0,0,0,0,0,0,145,1.5153098547392625,0,0.0,1,0.0104504127913052,0,0.0,0.02021,0.0531031583372746,0.2558139534883721,0.00517,0.5316953316953317,0.4683046683046683,14.982248981755015,2.283741166121801,0.237738026543566,0.5574148874783612,0.0923254472013848,0.1125216387766878,12.673263516794217,9.493650133692098,5.806766560874469,9394.968141244,21.275303591805823,12.558164417515432,4.8097886984457645,2.17708636320193,1.7302641126426976,0.7339873052510099,0.8737060041407867,0.7330097087378641,0.5794871794871795,0.08125,0.8325740318906606,0.9157706093189965,0.8770053475935828,0.6901408450704225,0.1129032258064516,0.632748538011696,0.8161764705882353,0.6133333333333333,0.5161290322580645,0.0612244897959183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023190343095556,0.004530665612552,0.0067468168213869,0.0089374581056651,0.0110724743777452,0.0130795460328769,0.0151519783164694,0.0174366404113782,0.0196326789107029,0.0217284556837711,0.0239822156657856,0.0260377126208014,0.0280595726311245,0.0303027182866556,0.0325432190452613,0.0349646013125936,0.037216476702175,0.0395054813985085,0.0414284229129847,0.0432281462336904,0.0575317850837329,0.0713657494660133,0.0847406039106203,0.0968814443836538,0.1088458333772794,0.1242130212576846,0.1317418026261318,0.1392036981807336,0.1462642848743358,0.1526184163920701,0.1623992413466097,0.171272632764446,0.1797249064159484,0.1862475786063716,0.1916868531160537,0.1993509657983342,0.2046773185753816,0.2097615248027691,0.2138995001076865,0.2173276443875041,0.2198932310323311,0.2229258432742525,0.2260405095601616,0.2275467004711904,0.2293521310998873,0.2297430101714903,0.2298454977367101,0.2304357745836185,0.2338074299493236,0.233908597415912,0.2264666488079292,0.2186323499212814,0.2124554960612262,0.2061217750850645,0.1985699542975084,0.1917421158169776,0.1847001742898864,0.1832063554079573,0.1818582197001778,0.181819789235448,0.183396324292278,0.1835842167945489,0.1834763726605315,0.1844807827926657,0.1865758156481415,0.1874456438328132,0.1883209236175018,0.1944179462719635,0.2006098814500102,0.2079668307048475,0.2161585636832281,0.2210919659539132,0.2258422806368011,0.2312444179815421,0.2361988464707498,0.2430772795736299,0.2510007412898443,0.2538446564142496,0.2641411520498183,0.2661764705882353,0.0,1.5769313072213564,37.40416316316792,55.21471813346011,51.90533359077443,full_FIT_compliance,91 +100000,95857,56104,541.7757701576306,2145,21.177378803843222,1831,18.54846281440062,476,4.558874156295315,77.34109898624328,79.63427087884001,63.34986309044478,65.04525079987569,77.2603930487678,79.56239644470377,63.313902016005,65.0148549578681,0.0807059374754857,71.87443413624806,0.0359610744397826,30.395842007592933,404.89526,284.920711995673,422394.629500193,297234.764607456,886.86276,614.4707253606263,924634.8101860062,640471.1640321644,735.3131,364.4070777018201,764448.4179559135,377973.2130336944,1163.51523,645.8509407939821,1176617.9517406134,636747.725465488,329.48723,185.57826954311676,330449.7950071461,180377.89365833215,430.24058,225.90129631160556,412071.356291142,205439.7459375195,0.38009,100000,0,1840433,19199.755886372408,0,0.0,0,0.0,78046,813.6077699072576,0,0.0,65568,681.3273939305424,0,0,0,0,0,0,0,0,153,1.596127565018726,0,0.0,0,0.0,0,0.0,0.02145,0.0564340024730984,0.2219114219114219,0.00476,0.5201482167670217,0.4798517832329782,14.985467199928296,2.244143932773495,0.2299290005461496,0.5554341889677772,0.0835608956854178,0.1310759148006554,12.160364644667156,8.87168604887226,5.51684433821285,9415.953804607272,22.72065561025632,13.398130639515353,5.001974850404535,2.666760501075346,1.6537896192610853,0.7307482250136538,0.8682399213372665,0.7173396674584323,0.5625,0.1176470588235294,0.8487752928647497,0.928692699490662,0.8585858585858586,0.7216494845360825,0.1818181818181818,0.6065022421524664,0.7850467289719626,0.5919282511210763,0.4545454545454545,0.0816326530612244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022986177915042,0.0043772988418396,0.0066437432167888,0.0089751659999593,0.0110483198829101,0.0130770170153871,0.0151593875118432,0.0173017087477684,0.0197536412477274,0.021962621602545,0.0243170434408514,0.026440212096038,0.0286148600069842,0.0307429547395388,0.0327157695161157,0.0348023531840231,0.0367482835635701,0.0387388880830518,0.0409040416099996,0.042812851138208,0.0570710546622453,0.0711837127150352,0.0848208673790069,0.0969615493682585,0.109891845782828,0.1251874854764771,0.1318084058185979,0.1401261017958341,0.1474612084605041,0.1533787042495043,0.1631513247099842,0.1718988245217522,0.1805067887075909,0.1865538686865374,0.1919827510340579,0.1987239840054939,0.2052137247902909,0.2098646034816247,0.2148326281520469,0.2187957875457875,0.2219858729956879,0.2250213243284297,0.2275176668005956,0.2287912508674947,0.2304222346179031,0.2326150892780232,0.2322755485619372,0.2320540156361052,0.2327358137494031,0.2322561120029474,0.2240349912119464,0.2164335520637834,0.2108651742130954,0.2041348133431232,0.1980382583995384,0.1915350523157526,0.1846270018563383,0.1829409557371967,0.1828627764273937,0.1813077469793887,0.1815404106271193,0.1839184153755638,0.1848589354718078,0.1841142426325476,0.1859295284413293,0.1880513852344838,0.1879356869799865,0.1951703400601382,0.2028701218253149,0.2090195773772529,0.2139361039423333,0.2201502201502201,0.2275379229871645,0.2348938687966866,0.2407713498622589,0.2436460258780036,0.2566582353816396,0.2664845883730004,0.2768540512008445,0.2849244378916328,0.0,2.144921865463869,39.78717583275372,61.15190479634364,50.849020758077096,full_FIT_compliance,92 +100000,95646,56489,546.4839094159714,2050,20.19948560316166,1783,18.066620663697385,481,4.652573029713736,77.31769350596971,79.7398986629457,63.289715480586615,65.08125465696087,77.23716561462086,79.66854829591487,63.25454871743681,65.05218451918047,0.0805278913488507,71.35036703083131,0.0351667631498031,29.07013778039413,404.87304,284.82354454709736,423303.6823285866,297789.2902443358,878.94193,609.1866712078657,918363.057524622,636327.9919786147,737.11099,365.78092372916205,767535.223637162,380013.9056384355,1119.93455,628.1648987762715,1129872.414946783,615716.4113253785,322.08941,181.7238254082997,323134.26593898336,176378.95511396203,430.00262,221.83894232460057,413647.5336135333,199803.57501759368,0.38085,100000,0,1840332,19241.076469481213,0,0.0,0,0.0,77384,808.460364259875,0,0.0,65789,684.7019216694896,0,0,0,0,0,0,0,0,131,1.369633858185392,0,0.0,0,0.0,0,0.0,0.0205,0.0538269659971117,0.2346341463414634,0.00481,0.5530780416868638,0.4469219583131362,14.266828890960264,2.1479895602170296,0.2434099831744251,0.5630959057767807,0.076836791923724,0.1166573191250701,12.656237777599982,9.473992389281255,5.52048894651174,9433.532531114148,22.24746476196996,13.123762868060398,5.188524786752319,2.407489966500454,1.5276871406567905,0.7487380818844643,0.8754980079681275,0.7235023041474654,0.6009615384615384,0.1240875912408759,0.8483870967741935,0.9337979094076656,0.8578431372549019,0.7912087912087912,0.0983606557377049,0.6400937866354045,0.7976744186046512,0.6043478260869565,0.452991452991453,0.1447368421052631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198800551098,0.0049689692937979,0.0072081218274111,0.009471640971961,0.011802171192528,0.0140892420537897,0.0163222002325913,0.0186865281268517,0.0204171442606844,0.0228276802279692,0.0249040179029708,0.0268883542065107,0.0290707253779297,0.0312158286739978,0.0332393085562547,0.0352046360014487,0.037460988936929,0.0394926821161097,0.0414095265847287,0.043174921002409,0.057646886691888,0.0714854556123732,0.0846620869309468,0.0972794202837492,0.1102416254805052,0.125015886464732,0.1324456157876279,0.1405165705514278,0.1476802276447116,0.154136993952674,0.1638819075150743,0.1730142047609244,0.1812033023286209,0.1871468617230958,0.1918907007492287,0.1982501469299948,0.2036463977299386,0.2088844859223902,0.2147639582387653,0.2183910678499857,0.2204841023742305,0.2238395884484976,0.2255297500029578,0.2268027650984197,0.2283441617584553,0.2304804804804804,0.2307279176658673,0.2319076024876253,0.2323124023096895,0.2333131467389873,0.2258874389130551,0.2181950230212672,0.2114022911145697,0.2045245619074978,0.1985837574684665,0.1906905993306966,0.1829770512417478,0.1822897188663599,0.1820608559022791,0.18172533413161,0.1825275313128332,0.1848837435170257,0.1852543068088597,0.1857308610083408,0.1876661100265776,0.1881819108799836,0.1911200133533633,0.1988189578680047,0.2067622950819672,0.2139876352395672,0.2225777777777778,0.2297737978156219,0.2350416871015203,0.2391224052596587,0.2455772387379172,0.2483098430159276,0.252256250924693,0.2566183574879227,0.2682669480348193,0.2766581165262001,0.0,2.2454435863757563,39.312340530178815,59.67895681701509,47.79691581950783,full_FIT_compliance,93 +100000,95714,56667,548.5613389890716,2086,20.550807614351086,1787,18.106024197087155,511,4.973149173579623,77.34880342590687,79.70606501932562,63.338894218876014,65.07693681970235,77.26724227066352,79.63217928444934,63.304120362797285,65.04714804299475,0.0815611552433495,73.88573487628491,0.0347738560787291,29.788776707604825,405.67472,285.42333641235666,423840.2950456569,298204.1596990584,882.2995,610.3347630241127,921244.3111770484,637103.1809551957,739.35849,366.368611044213,769085.0554777776,380155.1749975425,1108.08327,623.1439668933155,1120315.12631381,613773.3393585013,325.3777,185.75158510114952,324180.6841214452,178395.0837961389,452.81602,227.59872718033589,438798.4829805463,207656.3559755433,0.38325,100000,0,1843976,19265.467956620767,0,0.0,0,0.0,77558,809.7143573562906,0,0.0,65981,685.9289132206364,0,0,0,0,0,0,0,0,147,1.53582548007606,0,0.0,1,0.0104477923814697,0,0.0,0.02086,0.0544292237442922,0.2449664429530201,0.00511,0.5195238095238095,0.4804761904761905,14.656088123643372,2.1734459364410768,0.2523782876329043,0.5696698377168439,0.0828203693340794,0.0951315053161723,13.1142951583352,10.06026890819706,5.775263351906477,9486.941399907875,22.30696067773647,13.292883373794444,5.5270994079061895,1.8870663715016869,1.5999115245341482,0.7481813094571909,0.8467583497053045,0.7760532150776053,0.6352941176470588,0.1148648648648648,0.8521276595744681,0.907563025210084,0.8858447488584474,0.7702702702702703,0.1923076923076923,0.6328217237308147,0.7612293144208038,0.6724137931034483,0.53125,0.0729166666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024201796401121,0.0047540850666991,0.0072751255644056,0.0095490608397078,0.011621522693997,0.0138545324986002,0.0159111989970134,0.0180769623354088,0.0202953349343416,0.022424645616908,0.024711477358916,0.0267049828090521,0.0285814159110069,0.0305248419708855,0.0325033008747318,0.0346448719803269,0.0368594887299007,0.0387105476126247,0.0407668874309894,0.0426986194321437,0.0578326841341283,0.0717507561248731,0.0848099539441244,0.0977539319341433,0.1099415698103655,0.1258699837109433,0.1333800216463997,0.140965176565777,0.1472693474637836,0.153808195666166,0.163052494371371,0.1712814187251815,0.1790220133994605,0.1859908136482939,0.1931374382556464,0.2004076613751924,0.2069789514823292,0.2125914256779565,0.2164455992647476,0.2214017493245409,0.2237116025166543,0.2263198485592091,0.2287605650452154,0.229860031104199,0.2313538674133604,0.2324183456465353,0.2324737511534528,0.2341644589232973,0.2350795328572533,0.2355436481357445,0.2283799182250821,0.2205362767385171,0.2140574632095304,0.2072736155415696,0.2011458610200525,0.1936214523509113,0.1857890024972906,0.184057758915069,0.1835050151384449,0.1839766805052557,0.1847289273625215,0.1852624193642688,0.1860042536496727,0.1867904146733978,0.1893428063943161,0.1909093238361218,0.1916533535132711,0.1991971591786321,0.2051511296035212,0.2108780108780109,0.2161487360114138,0.2217121393917262,0.2280788788292199,0.2359407717618905,0.2424410029498525,0.2466898954703832,0.2573020174646191,0.2586448131121327,0.2662881859962152,0.281684843926288,0.0,2.118843263495704,39.78474489251436,59.4863918828518,47.41673717650362,full_FIT_compliance,94 +100000,95625,56180,544.1359477124183,2108,20.67450980392157,1809,18.206535947712418,537,5.166013071895425,77.26744378178137,79.68138899180654,63.28338998351626,65.06881738080241,77.18064349996581,79.6050228104868,63.2461404998546,65.03784432787931,0.0868002818155559,76.3661813197416,0.037249483661661,30.973052923101815,404.97292,284.9273073207977,423500.63267973857,297962.7571584183,879.6948,609.4982753281325,919199.2784313726,636641.6541180366,737.80213,366.14251204205664,767040.3869281046,379486.11605847545,1148.04222,649.6195462976822,1151563.4928104577,630512.6332493725,324.78196,185.63447686532035,325000.460130719,179586.1626154656,481.56084,244.77752894649964,461602.1124183007,220637.92611998905,0.38031,100000,0,1840786,19250.02875816993,0,0.0,0,0.0,77466,809.3385620915033,0,0.0,65814,683.6287581699346,0,0,0,0,0,0,0,0,130,1.3594771241830066,0,0.0,0,0.0,0,0.0,0.02108,0.0554284662512161,0.2547438330170778,0.00537,0.537010843941537,0.4629891560584629,14.688005063812568,2.282629859962169,0.2177998894416805,0.5754560530679934,0.0950801547816473,0.1116639027086788,13.3158828188366,10.111460057468731,6.078772711039608,9414.191329757885,22.505349662215465,13.592678994969518,4.725164195814898,2.308888037430922,1.8786184340001248,0.7341072415699281,0.8568683957732949,0.7411167512690355,0.6485148514851485,0.0755813953488372,0.8471615720524017,0.9323181049069372,0.8914285714285715,0.7469879518072289,0.1044776119402985,0.6181410974244121,0.7577777777777778,0.6210045662100456,0.5798319327731093,0.0571428571428571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020062009848623,0.0046440884201987,0.0066601689408706,0.0089423624095601,0.0109563678165596,0.0130667698700452,0.0153353590146216,0.0176928809890861,0.0195809773106064,0.0217509293299607,0.0239372339880006,0.026061141471833,0.0281561188379557,0.0301697045883092,0.0323799300172376,0.0343743861716755,0.0364662627517994,0.0383505625441109,0.0404306220095693,0.0425567405832004,0.0568526221181782,0.071177955361912,0.0851676048055112,0.097843484120967,0.1096166636754257,0.1248729244323958,0.1334133466452825,0.140416688868759,0.1464833930577098,0.1512957931027075,0.1609952867327458,0.1702759210911179,0.1786402272455187,0.1848840644730651,0.1914486068759013,0.1985222438851471,0.2042269237636136,0.2101959549146212,0.2156702528485178,0.219049255441008,0.2230179205664241,0.2250233754090696,0.2279973509307221,0.2290718290287028,0.2304601189753551,0.2306545786011677,0.2309191782875993,0.2323461836276165,0.2329784760083718,0.2341838011564957,0.2274706372456795,0.221036459905078,0.2131798722717383,0.2064145565520319,0.2002782876428444,0.1921031377150607,0.1831340862196601,0.1819752000130354,0.1812036189895293,0.180496090018046,0.1803704666097479,0.1812390976264675,0.1818766333430124,0.1835500320081234,0.1860824130150813,0.188775378914593,0.1907726826532043,0.1997589169808988,0.2071786022433132,0.2140234375,0.2194628154946686,0.2265965834428383,0.2318660108336965,0.2371404971089585,0.2419771302102545,0.2471137026239067,0.2500375657400451,0.2552176505664877,0.2628117292408879,0.2663316582914573,0.0,2.6188282680323844,37.96772540449913,64.889214041249,48.35377305144675,full_FIT_compliance,95 +100000,95824,56656,546.616713975622,2106,20.725496744030725,1814,18.18959759559192,516,4.925697111370846,77.40182060844235,79.71534678805631,63.36325590393732,65.07550372043417,77.31467795385493,79.63986102324121,63.32530943870227,65.04513209697853,0.0871426545874243,75.48576481509883,0.037946465235052,30.371623455636158,405.75414,285.489086191949,423436.4042411087,297930.22540694306,886.61401,613.3867023706435,924506.0945065954,639372.1315773121,738.62424,366.9460551615418,765888.9109200201,379177.9121775033,1143.39245,633.702161866956,1142274.221489397,610441.9250563076,335.0282,188.7309310913041,329709.99958256807,177156.48087041482,460.03216,233.42691544956597,437268.7635665387,205213.9228409394,0.38221,100000,0,1844337,19247.10928368676,0,0.0,0,0.0,77988,813.0948405409919,0,0.0,65680,680.6332442811822,0,0,0,0,0,0,0,0,152,1.5653698447153117,0,0.0,1,0.0104357989647687,0,0.0,0.02106,0.0551005991470657,0.245014245014245,0.00516,0.5204705882352941,0.4795294117647058,14.98299438934986,2.3120265712802524,0.2326350606394708,0.5567805953693495,0.083792723263506,0.1267916207276736,12.282919611978096,9.10438412245034,5.808790892152393,9488.937611254849,22.15704487092004,13.096666356937368,4.883084761547246,2.573472950750065,1.603820801685359,0.7436604189636163,0.8683168316831683,0.7440758293838863,0.6,0.131578947368421,0.8512035010940919,0.9203389830508476,0.8956043956043956,0.7325581395348837,0.1607142857142857,0.6344444444444445,0.7952380952380952,0.6291666666666667,0.5208333333333334,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026529496344599,0.0048850196110227,0.0073448849571886,0.0098418598982296,0.0121897906690659,0.0144142676819088,0.0166029659073536,0.0187181057358644,0.0206063331766052,0.0227733311498229,0.0247657707526088,0.026820080675788,0.0292128363793351,0.0311978748378328,0.0332944828937732,0.0354113064054475,0.0377723720304332,0.0396959547043024,0.0416735914907761,0.0436502154409775,0.0584167709637046,0.0721342323976791,0.0847026030095988,0.097535610739947,0.10940840679537,0.1253366567737983,0.1332817763840922,0.1410636646788064,0.1476967083635742,0.1532561303523412,0.1621327998106855,0.1713189603933646,0.1799069989787271,0.1870377047210112,0.1928725322077122,0.2000885494493331,0.206955765435265,0.2120088121571801,0.2177703706223144,0.2210389045859595,0.2233279012516903,0.2262209295534452,0.2287061214362513,0.229791664173657,0.2311254986117678,0.2325484168459883,0.2324005192470917,0.2323496214379018,0.2330279963875628,0.2324181529039126,0.2251631665706206,0.2192928421830725,0.2127489816771881,0.205671012434921,0.1998555935400212,0.1925699791922966,0.1853304261893931,0.1842357489806196,0.1839041616680465,0.1839321603610592,0.1841755073374487,0.1851195575979437,0.1861371037553073,0.186755199859285,0.18820893762528,0.1909395030516611,0.1924920572989242,0.2008950465914664,0.2079414480659393,0.2159024956471271,0.2209679569796898,0.2271713767176562,0.2329573320255027,0.2356504395360862,0.2433484162895927,0.2516541181838923,0.2584733274388446,0.2603677621283255,0.270513499205929,0.2725931390630763,0.0,2.8295269841191866,37.70427232918241,55.9449686303955,56.148886536217,full_FIT_compliance,96 +100000,95698,56088,543.6581746744969,2096,20.616940792911038,1817,18.40163848774269,489,4.691843089719744,77.32145341825886,79.7096013784588,63.3143933609397,65.08067672152758,77.24431112467492,79.6425555948776,63.28060987488635,65.05364675417466,0.0771422935839325,67.04578358119306,0.0337834860533448,27.02996735291663,405.8846,285.5843859632788,424130.70283600496,298422.52289836656,882.68584,609.6517504326993,921781.447888148,636473.4063749497,731.07654,362.3867405317969,760994.5453405505,376384.7673016472,1121.72131,632.6193036435576,1128971.5459048257,618039.4357618183,338.0184,192.72093205841549,337469.4350979122,185702.9430253892,440.21418,223.8333440957176,419896.591360321,197143.86928129176,0.38068,100000,0,1844930,19278.6683107275,0,0.0,0,0.0,77781,812.1695333235805,0,0.0,65252,678.896110681519,0,0,0,0,0,0,0,0,132,1.3793391711425529,0,0.0,2,0.0208990783506447,0,0.0,0.02096,0.0550593674477251,0.2333015267175572,0.00489,0.5491219743711439,0.4508780256288562,14.568316873048689,2.189480188865464,0.2383048981838194,0.5800770500825536,0.0897083104017611,0.0919097413318657,13.166624367388682,10.011431212595474,5.514414218530736,9387.236481322489,22.488046828857712,13.753977716441,5.109507791924049,1.8412852794828765,1.783276041009789,0.7429829389102917,0.8538899430740038,0.7482678983833718,0.6407185628742516,0.1165644171779141,0.8589473684210527,0.9305331179321488,0.8866995073891626,0.7619047619047619,0.1846153846153846,0.615916955017301,0.7448275862068966,0.6260869565217392,0.5673076923076923,0.0714285714285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022189349112426,0.0043403305952743,0.0064865194088029,0.0085771486062133,0.0107948070975093,0.0129166327112704,0.0149198935313134,0.0171737798652236,0.0192089471370592,0.0213626220648146,0.0237340961051476,0.0254990962865593,0.02749745393945,0.0293990354890565,0.0315757963624352,0.0337058902594112,0.035497503677156,0.0373522360486959,0.0395095367847411,0.0414716764813174,0.0563314079196131,0.0709043895187546,0.0847930813715509,0.0977131852288393,0.1100102349825372,0.1249801526394343,0.1328683947943867,0.1397209203238176,0.1468224279087663,0.1536110008688283,0.1618637220576353,0.1701775276033773,0.1783457501767361,0.1848201785089254,0.1921181724191029,0.1984590860786397,0.2039118604754895,0.210156732767822,0.2150183025646256,0.2190628754505406,0.2218563323974256,0.2245880003270302,0.2272055607437967,0.2285902345619913,0.2292439787528196,0.2311265684334713,0.2316677482154445,0.2320371239111967,0.2322910759395783,0.2327200136585109,0.2246737936393109,0.2178044545317819,0.2118549199597,0.2051605866651359,0.197966321817028,0.1896549101914799,0.1835343636135193,0.1825989362221246,0.1822009537015117,0.1813365357445606,0.1821111111111111,0.1833723653395784,0.1843872007271375,0.1844450326451385,0.1864671993171957,0.1880656108597285,0.1902740688685875,0.1977042789517651,0.2051229013686351,0.2131969826580605,0.2202349172450614,0.2262728170991731,0.2324545116969922,0.2387724550898203,0.2427086208482841,0.2472955682214726,0.2511620932673564,0.2526274043228237,0.260555852485302,0.2619666048237477,0.0,2.320352847379552,39.906427916733975,57.92122231642984,50.70490388696981,full_FIT_compliance,97 +100000,95705,56307,545.666370618045,2021,19.978057572749595,1724,17.42855650175017,496,4.795987670445641,77.3455376358958,79.731898455939,63.32130932583449,65.08702448771487,77.26800996888238,79.6629548265126,63.28805636989598,65.05926024545053,0.0775276670134132,68.94362942639987,0.0332529559385079,27.7642422643396,405.51588,285.2099908020041,423714.4140849485,298009.498774363,884.80312,612.1359483987334,923937.3909409122,639033.6015868902,733.89408,363.5309712819839,763049.8302074082,376971.52133512864,1091.67354,596.851687263589,1102073.371297215,585045.1567458222,308.34321,172.5533698794013,306600.532887519,164790.25729181364,446.66558,218.950622008144,430561.7679327099,199787.1927285045,0.38006,100000,0,1843254,19259.746094770388,0,0.0,0,0.0,77974,814.1267436393083,0,0.0,65359,679.1285721749125,0,0,0,0,0,0,0,0,137,1.4210333838357452,0,0.0,0,0.0,0,0.0,0.02021,0.0531758143451034,0.2454230578921326,0.00496,0.528775209050664,0.4712247909493359,14.71806773973324,2.247711769344217,0.2233178654292343,0.5655452436194895,0.0928074245939675,0.1183294663573085,13.017145710995177,9.631559513531164,5.52066497576588,9392.285350998594,21.237215942097137,12.732597334677909,4.569686105066319,2.2732406238678693,1.6616918784850443,0.7296983758700696,0.8676923076923077,0.7532467532467533,0.5098039215686274,0.1125,0.8582857142857143,0.9380530973451328,0.8959537572254336,0.6781609195402298,0.14,0.5971731448763251,0.7707317073170732,0.6367924528301887,0.3846153846153846,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021884720209931,0.0044424159440133,0.0068023757551144,0.0092278298339397,0.011475543257101,0.0136076594011,0.0157859313495543,0.0178099118695301,0.0197255399214659,0.0220271986236841,0.0239269781036869,0.0257084458869567,0.0279375006428916,0.0301400352406565,0.0319711042311661,0.0339305467966545,0.036235562231315,0.0380906911332759,0.0401322836610959,0.0418029883093337,0.0566573717245772,0.0710323606982877,0.0854717000934059,0.0976179453726695,0.1096227071840686,0.125918874609974,0.1328961470304226,0.1400864823414135,0.1469283477108253,0.1534325090159711,0.162779167025955,0.1706028219038647,0.1790440536305067,0.1853743915112399,0.19158441444118,0.1981569882707366,0.2034671634631474,0.2090248729366257,0.213977165791771,0.2176111276337764,0.2198169251751,0.2225777071997384,0.2249961618857541,0.2260328009945491,0.2278842777044455,0.2295321457947138,0.2313703495980557,0.2327868852459016,0.234649884817832,0.2346798391006407,0.2274574277541636,0.2193354711059562,0.2125548506106934,0.2048537986561797,0.1988582022571104,0.191589989237369,0.1843017329255861,0.1828007748278612,0.1825148444504593,0.1821894558183939,0.1815820718314039,0.1826345548099309,0.1840976438651387,0.1843045568838502,0.1855855855855855,0.1884050528910342,0.1891286701934111,0.196360832690825,0.2035331317019521,0.2098314824881571,0.2151988636363636,0.2227272727272727,0.2299517498320405,0.2341085271317829,0.240139104969342,0.2470383275261324,0.2504472271914132,0.2514804579549941,0.2564780539397144,0.2600446428571428,0.0,2.2475870767160155,36.75003043819304,56.1177154296081,49.796758601535,full_FIT_compliance,98 +100000,95612,56261,544.2622264987659,2097,20.64594402376271,1794,18.177634606534745,508,4.947077772664519,77.23812690061078,79.67088939690966,63.25655152000609,65.05488580969464,77.14868443669859,79.58844612749903,63.21779911319261,65.02084587752445,0.0894424639121922,82.44326941063207,0.0387524068134794,34.03993217018808,404.15584,284.592399845593,422703.4054302807,297652.8022582052,881.62814,609.8269805615179,921506.7146383298,637233.2193480848,736.38563,365.4483362577362,766611.0320880224,379322.2168990788,1167.05636,658.1736307246779,1180367.6212190937,648337.3509552116,336.57935,196.08475447382136,334157.7207881856,187387.60467322427,457.79718,238.2748420098241,444704.0748023261,219588.40637489452,0.38138,100000,0,1837072,19213.79115592185,0,0.0,0,0.0,77452,809.4381458394345,0,0.0,65703,683.7530853867715,0,0,0,0,0,0,0,0,149,1.5374639166631805,0,0.0,3,0.0313768146257791,0,0.0,0.02097,0.0549845298652262,0.2422508345255126,0.00508,0.5440758293838862,0.4559241706161137,14.77350247346713,2.295938798794395,0.2536231884057971,0.5429208472686734,0.0836120401337792,0.1198439241917502,13.16163343069968,9.836479086411265,5.762863668514389,9452.762566259922,22.2345055437874,12.738462246157129,5.3838938040353765,2.470963374521718,1.641186119073172,0.7335562987736901,0.8459958932238193,0.7318681318681318,0.6372093023255814,0.1466666666666666,0.8390928725701944,0.911660777385159,0.8817733990147784,0.7840909090909091,0.1884057971014492,0.6209677419354839,0.7549019607843137,0.6111111111111112,0.5354330708661418,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021789362737149,0.0044222206444676,0.006711477540411,0.0090361139627781,0.0113173750203549,0.0138146031357926,0.0160538528226834,0.0182650267641891,0.0204263240799459,0.0226153042516362,0.0247991545509578,0.0269414931875629,0.0288387315898354,0.0311849240221851,0.0333247276294728,0.0354799991722368,0.0376413754496542,0.039713291435101,0.0415443549226573,0.0434805286931847,0.0575592213928788,0.0716950289211166,0.0849257792391978,0.0976282753391187,0.1100562847819888,0.1259254551809602,0.1335996260570263,0.1414927409555077,0.1481247659301268,0.1542783477466831,0.1640103160643567,0.1725610946071947,0.1806185162583907,0.1876773719908396,0.1937360869277732,0.2004881837346055,0.2066323677441002,0.2124963358813051,0.2172578444747612,0.2215348239291125,0.2236962647710273,0.2257478644997246,0.2269391722878854,0.2284101825168107,0.2300147250313363,0.2296320063183355,0.2294769808957093,0.229829006506156,0.2309446380679683,0.2326428288692439,0.2256727664155005,0.2180701199818584,0.2116379068068124,0.2050476368930079,0.1980136469264812,0.1906011595971925,0.1840657174841934,0.1827004770930004,0.1821272544919849,0.1816263564791829,0.180852249507746,0.1820069339705796,0.1822481279429152,0.1829281780176513,0.1842967748064408,0.1864938538291416,0.1892537817016251,0.1968106518036848,0.204828418692878,0.2115429369327437,0.2172012312084578,0.2250453720508167,0.2304577248742177,0.2360216248241131,0.2446449731109288,0.2502569960022844,0.2544603685288096,0.2572036356604138,0.2691900476442562,0.2724264705882352,0.0,2.204367594340234,38.935560888181634,59.134417977101215,50.25756064104423,full_FIT_compliance,99 +100000,95716,45248,421.08947302436377,9400,96.72364077061307,7286,75.49417025366711,3005,30.966609553261733,77.33641368994157,79.71297957751968,63.332022412709286,65.09010362673317,76.96980337551524,79.34188027974889,63.19846049245058,64.95762652429208,0.3666103144263246,371.0992977707832,0.1335619202587068,132.47710244108646,45.17788,31.45550908685217,47199.92477746667,32863.376119825494,155.25286,81.86945964645872,161564.4510844582,84896.62269821535,241.92984,113.50784757496596,248910.73592711773,115609.0063519211,5292.12173,2366.594610308314,5485545.143967571,2429080.769878648,1773.85572,767.3318974300076,1839631.357348824,788069.3283131808,2978.52828,1237.5709077912677,3072147.227213841,1258742.1633291263,0.43561,100000,0,205354,2145.4511262484853,0,0.0,0,0.0,12070,125.43357432404196,0,0.0,22918,235.6032429269924,2324218,0,83619,0,0,6052,0,0,39,0.407455388858707,0,0.0,0,0.0,0,0.0,0.094,0.2157893528615045,0.3196808510638297,0.03005,0.3122616897451334,0.6877383102548665,25.733209153352213,4.701698617775696,0.3343398298105957,0.1905023332418336,0.2455393906121328,0.2296184463354378,10.944451246763371,5.2831259769259455,32.20568420166944,15670.774511656698,82.45859804592031,16.297660061798954,27.62686704872765,18.788329024782808,19.74574191061089,0.540076859730991,0.7636887608069164,0.7077175697865353,0.5654512851165571,0.1145891559530463,0.7015177065767285,0.9228971962616822,0.8745819397993311,0.7072538860103627,0.1553133514986376,0.4879244597784637,0.6927083333333334,0.6534276387377584,0.5229215229215229,0.1040787623066104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027664059016659,0.0054970131542916,0.0082034621046753,0.0110984632896983,0.0137533951151033,0.0161428309534964,0.0185704524826889,0.0211251786808249,0.0237289521842699,0.0262576008844665,0.0286095023320178,0.0309538720573288,0.0337086739678132,0.0362962200020599,0.0384670945374249,0.0408062015503876,0.0434877147205914,0.0457700088178847,0.0483272534530602,0.0505609199712508,0.0674463530517412,0.0841669108106976,0.1003775563712637,0.1151771916360922,0.129399487714638,0.1472133261460084,0.1643749933741134,0.1805168563224503,0.1956853577566422,0.2098975743550184,0.226431746510101,0.2426025263886485,0.2576263081821837,0.2718998240802456,0.2842900169279134,0.2972999878328005,0.3098109590262606,0.3211153586687654,0.3318811971048034,0.3429379307186849,0.353369889636982,0.3635640785781104,0.3721265897663413,0.379927370351283,0.3884427056121891,0.3958104725855968,0.4030938811298303,0.4099206399755423,0.4169909713574097,0.423364523087918,0.4252850272869725,0.4273685083789613,0.4302422723475355,0.4324626811436213,0.4342810115217717,0.4347416826121844,0.4354550387844351,0.4371182147764332,0.4385181609750211,0.4395384476697016,0.4413690025730286,0.4426275331935709,0.4439553928518526,0.4450515952762662,0.4471700865506175,0.4485406660685069,0.449458431338386,0.45177436950523,0.4546627019668255,0.4548743800308968,0.4549803038829488,0.457440966501922,0.4591252877342979,0.4598047773986191,0.4646800195407914,0.470156677443422,0.4674207423928628,0.4708236781124921,0.4690867838910947,0.4751968503937008,0.0,2.3581019721889307,79.15033991626733,278.3037899429985,422.2734812161369,NC_public_baseline,0 +100000,95602,44844,417.7423066463044,9274,95.61515449467583,7195,74.6009497709253,2950,30.417773686742954,77.26635035352784,79.70469299306502,63.26822878755484,65.07208692534354,76.90877543776648,79.34437268489471,63.1391077399658,64.94485411682503,0.3575749157613614,360.3203081703157,0.1291210475890452,127.2328085185137,44.93522,31.27443085240629,47001.694525219136,32712.485569764533,153.12146,80.08380166890691,159515.99338925965,83118.9312576169,232.8999,108.61614244711244,239102.36187527457,110079.4857073736,5229.33786,2312.5643209072546,5426159.044789858,2375274.9307611315,1759.53551,755.8163015027008,1821386.968891864,771667.7411071942,2914.51448,1197.3984241710086,3007811.3219388714,1218373.0430945463,0.43283,100000,0,204251,2136.4406602372333,0,0.0,0,0.0,11972,124.52668354218532,0,0.0,22145,227.22327984770192,2324395,0,83487,0,0,5989,0,0,29,0.3033409342900776,0,0.0,0,0.0,0,0.0,0.09274,0.2142642607952314,0.3180935949967651,0.0295,0.3062576437015898,0.6937423562984101,25.86668725657321,4.6341233196859415,0.3342599027102154,0.1879082696316886,0.2397498262682418,0.238082001389854,11.13638633471039,5.581255944233455,31.338865531727407,15611.14266372533,80.55493452845423,15.693264645134107,26.917150007683304,19.01422409871981,18.93029577691698,0.5395413481584433,0.768491124260355,0.681912681912682,0.5954465849387041,0.1060869565217391,0.6992797118847539,0.9120603015075376,0.8563734290843806,0.7777777777777778,0.1282051282051282,0.4914089347079037,0.7085953878406709,0.6293290043290043,0.5469327420546932,0.1004366812227074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028173010661153,0.0053461831093076,0.0079112799211918,0.0104217504473727,0.0133038822499541,0.0161439913572571,0.0186867243631613,0.0213870410676149,0.0237681100106409,0.026396417629036,0.0289218453327859,0.0312278357403505,0.0334462276484697,0.0357157586505547,0.0381862314723958,0.0407371383634783,0.043096568236233,0.0455116687265664,0.0479164064776653,0.0503003629385507,0.0678368319812662,0.0841786477763339,0.0990850936439743,0.1138403202022329,0.128102490441689,0.1457232138128277,0.1620912115125041,0.1779012832958194,0.1933011485886168,0.2070488368344705,0.2236582339932035,0.2386218261454064,0.2539568423689857,0.2679575265459088,0.2808916916563768,0.2945660737469346,0.3075315444192362,0.3199756655363158,0.3312681180014779,0.3415703513262249,0.3513804854301411,0.3616470146979535,0.3710088566923159,0.3795781664525887,0.3880037488284911,0.3960181912553449,0.4031834900390404,0.4102691733353754,0.4170974361638569,0.4232148765799748,0.425892652085219,0.428366267589102,0.4306123314992149,0.4321181236116556,0.4335709269138237,0.4341420610240463,0.4358198496623773,0.4367694469703232,0.4389929097542507,0.4414503665543887,0.4431525526435388,0.444988605924919,0.4462589073634204,0.4484335385729808,0.4491668089882157,0.449950971298333,0.4502756019727299,0.4505600308097179,0.4524492576920318,0.4540656842447124,0.4545666356011184,0.4565939149839438,0.4560617860851506,0.4538011695906432,0.4550858019365353,0.4572949431405758,0.4561843549145634,0.4544887780548628,0.4576127020130422,0.4536527886881382,0.0,2.539414542398928,73.90174872613345,263.9712638191536,437.8137240440779,NC_public_baseline,1 +100000,95699,44726,415.46933614771314,9287,95.61228434988872,7223,74.80746925255228,2962,30.53323441206282,77.34534288058313,79.71366458511814,63.32656324425341,65.07442129819862,76.98959025907925,79.35616014216788,63.19750230855922,64.94763737692017,0.355752621503882,357.5044429502583,0.1290609356941843,126.78392127844518,45.07954,31.380764161767942,47105.54969226429,32791.10979400824,153.43397,80.70489442329927,159688.68013249876,83690.94183147082,238.7139,111.40608042619712,245042.027607394,112971.55413574413,5261.42073,2349.395274899132,5453412.919675232,2410512.309323117,1783.69377,769.412053504226,1844769.0466985025,784902.4686822499,2925.58868,1202.15649963077,3018839.9251820813,1223091.767464046,0.43138,100000,0,204907,2141.161349648377,0,0.0,0,0.0,11913,123.81529587561,0,0.0,22750,233.3984681135644,2323440,0,83525,0,0,5816,0,0,36,0.3761794794093982,0,0.0,1,0.0104494299835943,0,0.0,0.09287,0.215285826881172,0.3189404543986217,0.02962,0.3166939443535188,0.6833060556464812,25.859551372317547,4.649962537716676,0.332410355807836,0.1896718814896857,0.2399280077530112,0.2379897549494669,11.088205409891405,5.465623922113087,31.41224836465277,15629.560887716165,81.54407009189596,15.848432757994548,27.180678387584177,19.45404574027002,19.06091320604722,0.5510175827218607,0.781021897810219,0.6917950853810912,0.6067481093659104,0.118869013271783,0.713953488372093,0.9441489361702128,0.8603448275862069,0.7756563245823389,0.1420289855072463,0.5000908595311648,0.7193158953722334,0.6381109280615047,0.5523076923076923,0.1131123919308357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024404569021386,0.0051486834370502,0.0079034941763727,0.0107251675807434,0.01351461286583,0.015933780633075,0.0184703831687104,0.0210079315659994,0.0233682596473294,0.0258470672535571,0.0283561433184683,0.0308998860123846,0.0336864842624974,0.0363979148208435,0.0388656112613263,0.0413289778365861,0.0437880608144496,0.0462442142842317,0.0484944268840459,0.0508227300674232,0.0684364980731674,0.0846685993573977,0.1004732473583143,0.115454220239473,0.1293277195648274,0.1470149332712436,0.1641027274368039,0.180040264595916,0.1937773217473092,0.2077942974834266,0.224883888835009,0.2404509470537909,0.2552980745159078,0.2694670448199209,0.2826328835031672,0.2954711792233139,0.3088277987449474,0.3210176742091635,0.3324512186811439,0.3431604043923798,0.3529568398629248,0.3635012579720321,0.3718594155344176,0.3800842019407228,0.3883416034247908,0.3963046617543599,0.403289910856455,0.4096763098559254,0.416453443819568,0.4228659990462565,0.4250706625373598,0.4268790002626522,0.4291708603263258,0.4308956091887176,0.4330317757009346,0.4339148660728046,0.4348012991975544,0.4355054398969804,0.4372426571507,0.438960479557773,0.4402307083349041,0.4414579312814595,0.4438038520020274,0.4440601333785464,0.4456823833438978,0.4455189177763686,0.4449694594906073,0.4467402015321529,0.4490543230944255,0.4525186791998072,0.4533753125289378,0.4543047073447549,0.4523717948717948,0.4517383526483627,0.4546587423312883,0.4551724137931034,0.4573123146558451,0.4559983395599834,0.4558073654390935,0.4625354394491697,0.0,2.661531952229176,76.17767910818868,278.308813497277,421.0039897388643,NC_public_baseline,2 +100000,95649,44739,416.2092651256155,9289,95.67272004934708,7217,74.73157063848028,2965,30.476011249464182,77.2498286400838,79.64735323272612,63.26585613190741,65.03826711967875,76.8923384278821,79.29104044823592,63.13572534177386,64.91233109164683,0.3574902122017107,356.3127844901999,0.1301307901335491,125.93602803191573,44.70664,31.09884824650777,46740.08092086692,32513.28110749488,152.3462,79.69316083575582,158514.4329789125,82556.46252000105,232.95869,108.03167559036262,239320.3065374442,109726.46381960867,5246.90463,2326.3876011151474,5431624.711183598,2378255.5919195693,1793.8875,771.3679497067338,1855532.8126796936,786528.0345279621,2932.91234,1207.2434819125644,3016460.851655532,1218101.7850949932,0.432,100000,0,203212,2124.549132766678,0,0.0,0,0.0,11849,123.09590272768142,0,0.0,22197,227.90619870568432,2321058,0,83530,0,0,6053,0,0,32,0.3241016633733756,0,0.0,2,0.0209097847337661,0,0.0,0.09289,0.2150231481481481,0.3191947464743244,0.02965,0.3134860050890585,0.6865139949109414,25.85287579512364,4.636645825860351,0.3353193847859221,0.1848413468200083,0.2433143965636691,0.2365248718304004,11.099039662749428,5.526173772511783,31.535388387086048,15634.439338297529,81.41739785567394,15.57533204110988,27.356430419705287,19.21462995373857,19.271005441120195,0.5385894415962311,0.739880059970015,0.6942148760330579,0.5957820738137083,0.1156036446469248,0.6903341288782816,0.8987341772151899,0.8615107913669064,0.7338709677419355,0.141643059490085,0.4926908500270709,0.6730564430244942,0.64431330472103,0.5573033707865168,0.1090520313613685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027958993476234,0.0056791100023324,0.0083738492301133,0.0112477138792928,0.0137014169319811,0.0164483734952029,0.0190072194803605,0.0213713177107265,0.0239926365309879,0.0264540510646142,0.029150810827444,0.0316589625064201,0.0340793332304368,0.0366820238500149,0.0388498864340284,0.0412447901045598,0.0435106989275167,0.0458169812496106,0.0481813641849432,0.0505291694906417,0.0671946670567461,0.0838639410187667,0.0997239511718955,0.1147766973944521,0.1291476697061803,0.1472571204792498,0.1630628717077315,0.1780636497346151,0.1930821243634184,0.2076604888530754,0.2249584529385103,0.2411852108933548,0.2557317685041775,0.2695535782856265,0.282589734247513,0.2956063620499939,0.3077483006148023,0.3198347667095551,0.3319440174006127,0.3426117549668874,0.3525029347156522,0.3625996378941428,0.3716026464848398,0.3798091980052518,0.3885634077871354,0.3964823186969716,0.4033966536671279,0.41013364739618,0.4170367958319765,0.4237551453990174,0.4264414866220282,0.4283082888996606,0.4299537470559859,0.4313891154877054,0.433089149551331,0.43442635599105,0.4367214788114643,0.4376811594202898,0.4397136202881049,0.4404905980744567,0.4420188149609286,0.4426275443828433,0.4428528987352517,0.4440256142422453,0.4465259605272811,0.4478775704392874,0.4474777790603716,0.4491425662562438,0.4490651880287197,0.449687688897844,0.4480180886899543,0.4491046943055331,0.4520171344543188,0.4527116145550469,0.4490634556574923,0.4538665381835702,0.4539217215031966,0.4480316600708185,0.4473832301631964,0.4418061502530167,0.0,2.7334648873438616,74.37460712011168,274.86655199774896,431.7484448029528,NC_public_baseline,3 +100000,95734,45031,417.76171475129007,9444,97.14417030522073,7396,76.55587356634007,3101,31.963565713330688,77.32698317968122,79.68696174638993,63.31555014592704,65.06152227929877,76.94012890670827,79.29755359927108,63.1749141593488,64.92313346186016,0.386854272972954,389.40814711884286,0.1406359865782462,138.3888174386101,45.23596,31.50559380534116,47251.71830279734,32909.513657991054,157.01509,82.43802942662222,163303.6329830572,85406.62863774941,243.7388,114.07677149229308,250064.5016399607,115712.0851825706,5343.01577,2392.147018952883,5532904.8509411495,2450852.1733341445,1793.41823,780.6738710316671,1854625.7964777404,796752.5654748218,3049.32136,1262.6241355589875,3143835.6905592578,1283267.6178461565,0.43422,100000,0,205618,2147.805377399879,0,0.0,0,0.0,12170,126.3814318841791,0,0.0,23171,237.51227359140955,2319984,0,83468,0,0,6188,0,0,35,0.3655963398583575,0,0.0,0,0.0,0,0.0,0.09444,0.2174934365068398,0.3283566285472257,0.03101,0.3106728073688426,0.6893271926311574,25.70690047583886,4.625710062301805,0.3303136830719307,0.19848566792861,0.2401297998918334,0.2310708491076257,11.03555001581511,5.514070158544014,33.131469621832125,15759.707877699992,83.93334866977345,17.16900207586314,27.899502948046123,19.29237353334094,19.572470112523256,0.5442130881557599,0.7540871934604905,0.7081457224723701,0.5769455822118198,0.1137387387387387,0.707579185520362,0.9070904645476772,0.8731942215088283,0.7284595300261096,0.1614730878186968,0.4928926794598436,0.6949952785646837,0.6516483516483517,0.5331825037707391,0.1018973998594518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029177853198926,0.0055971284297621,0.0085561171670422,0.0113682542262678,0.0143300279684719,0.0169543302275851,0.0194456907451972,0.0221199191556254,0.0246208249867135,0.0270314531069282,0.0298039376454069,0.0324176726615751,0.0348677042001603,0.0372139959223181,0.0397049721477202,0.0421484443617801,0.0446324115582519,0.0468968808024646,0.0492558100860599,0.0515382291351953,0.0694583646538044,0.086607170881242,0.102046593554069,0.116585894052963,0.1303444931691685,0.1480126463155446,0.1647768856267037,0.179777673665829,0.1950742391687778,0.2086155629743336,0.2258972175206718,0.2421327440338847,0.2570532915360501,0.2713313194991682,0.2847373637264618,0.2984286807349826,0.3109437167508606,0.3227932973484635,0.3347011617068679,0.3450633143696091,0.3549471439169139,0.3651221685503916,0.3744021268262578,0.3826252133977734,0.3903993565448407,0.3981753900165649,0.4058837568616614,0.4130323701489486,0.4208219534399792,0.4269283262883114,0.4291431198118054,0.4311205097372531,0.4331266983695652,0.4355225485779063,0.437629891003693,0.4373186840318498,0.4381762471673422,0.4392923927253471,0.4405330391159687,0.4416159579447665,0.4436101601951847,0.4440092718407801,0.4462607882317929,0.445323659449042,0.4451335644869854,0.4468395375967759,0.4476474678410013,0.4489286856411896,0.4505769299467724,0.4541892219439282,0.4547734026745914,0.4553629469122426,0.4569281171709385,0.4566401992838237,0.457112567463377,0.4561339643247178,0.4583267685520718,0.4600585529067336,0.4567972350230415,0.4632972322503008,0.0,2.6973864601494557,78.50604586315788,290.4781663562587,427.451736455032,NC_public_baseline,4 +100000,95753,44568,413.78338015519097,9337,96.15364531659584,7301,75.60076446690965,3031,31.236619218196815,77.39144353273707,79.73092221262772,63.36142006586866,65.08745271707619,77.02796023133541,79.36142623292835,63.23134529651395,64.9573507517186,0.3634833014016578,369.49597969936576,0.1300747693547066,130.10196535759633,45.18888,31.445797591882,47193.17410420561,32840.5351183587,156.65107,82.024331190185,162964.46064353074,85027.74972082858,239.42177,110.95147234348018,244966.00628700928,112040.23873829748,5314.93475,2364.0877311602203,5509095.694129688,2427367.686819444,1819.27461,786.251025153828,1882263.91862396,803421.9138343736,3001.04178,1228.1570655851792,3095962.674798701,1253745.555659642,0.43011,100000,0,205404,2145.1442774638917,0,0.0,0,0.0,12165,126.36679790711518,0,0.0,22796,233.1415203701189,2326895,0,83647,0,0,5996,0,0,32,0.3133061105135087,0,0.0,0,0.0,0,0.0,0.09337,0.2170840017669898,0.3246224697440291,0.03031,0.3061389337641357,0.6938610662358643,25.866006786497845,4.678861125634762,0.3389946582659909,0.1839474044651417,0.2453088617997534,0.2317490754691138,11.21907658539425,5.607416166684388,32.23484978889149,15525.459128459548,82.39021867137544,15.447663182525137,28.017651922546268,19.01128739495136,19.913616171352672,0.5437611286125188,0.7483246463142219,0.7042424242424242,0.5898345153664303,0.1250697934115019,0.6933174224343676,0.9150141643059492,0.8581196581196581,0.7493333333333333,0.1542699724517906,0.4992,0.6888888888888889,0.6566137566137566,0.5444191343963554,0.1176470588235294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026830552405637,0.005512936145201,0.0079746758385584,0.01057271406953,0.0133196408780795,0.0158680074912466,0.0189015691868758,0.0215989552512906,0.0241702336319709,0.0268171400507489,0.0292315573770491,0.0315270026263952,0.0337234512592349,0.0362998260654776,0.0386978393534553,0.0409672654401966,0.0432609213127309,0.0456233146650072,0.0480120575853645,0.0506140561035822,0.0674668614967122,0.0834449420332315,0.098493590416046,0.1138815858660216,0.1281183441935007,0.1464840858623242,0.1629285570366599,0.1781770600625518,0.193001377513428,0.2064999517648698,0.2229865013240328,0.2381606410935793,0.2542441039017498,0.2680235543465198,0.2804718505733226,0.2944502849554584,0.307387009743807,0.318628717821949,0.3292327577410174,0.3396053655633383,0.3496953087961517,0.3592688317915492,0.3682821156304749,0.3760028782155064,0.3839582978930229,0.3914469223467337,0.39880028051896,0.4060647776375664,0.4129881925522252,0.419714251728103,0.4223663628027401,0.42495451788963,0.4268574977416441,0.4288237423090843,0.4306267127368045,0.4317861087249969,0.4322358285287718,0.4339635081010697,0.4354215667759712,0.4373079894360503,0.4385361335324474,0.4398761980830671,0.4418259653286991,0.4422214165949155,0.4440971035021736,0.4441234162116312,0.4455886606884582,0.4469255870497153,0.4496062992125984,0.4504475314892066,0.4492334933134523,0.450215270586953,0.4544335773042295,0.4551713346894069,0.4573546399691952,0.4599564481006533,0.4567039106145251,0.4540372670807453,0.4647768734212742,0.466218885815883,0.0,2.5717265307406287,74.27827803610376,289.5792193432489,426.1236407435036,NC_public_baseline,5 +100000,95700,45104,418.9341692789969,9465,97.14733542319748,7367,76.1337513061651,3054,31.2957157784744,77.37264048070351,79.73230344202959,63.34029949113111,65.0820026070954,76.9928454779507,79.35408891019593,63.20098025602056,64.94753712695156,0.3797950027528145,378.2145318336632,0.1393192351105483,134.46548014384518,44.2541,30.794008513948047,46242.528735632186,32177.64734999796,156.26102,81.65149081119597,162456.54127481714,84496.57694980684,242.29214,113.67392806063452,247908.14002089863,114731.56835810134,5387.3324,2407.884484175486,5571221.598746081,2458056.582973718,1808.60294,789.1710070316742,1868575.3396029256,803603.0931919334,3026.7253,1260.5890036655298,3105399.6029258096,1268776.312390514,0.4345,100000,0,201155,2101.9331243469173,0,0.0,0,0.0,12117,125.72622779519332,0,0.0,22948,234.7021943573668,2327368,0,83784,0,0,5922,0,0,49,0.4806687565308254,0,0.0,0,0.0,0,0.0,0.09465,0.2178365937859608,0.3226624405705229,0.03054,0.3120461553765045,0.6879538446234955,25.78341962188809,4.688340713242341,0.3324283969051174,0.1874575811049273,0.2493552327948961,0.230758789195059,11.26066171690964,5.602028917532218,32.76271466353408,15697.907517329562,83.24031355783595,16.091168287404574,27.602988414644493,19.12445244551932,20.42170441026757,0.5364463146463961,0.7545257060101376,0.6888525928950592,0.5935294117647059,0.1164942841589548,0.6984491671453188,0.9075,0.8452380952380952,0.7602040816326531,0.1606648199445983,0.4863135442587984,0.6921508664627931,0.6394411606663084,0.5435779816513762,0.1056910569105691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028962025316455,0.0056753113820396,0.008440102660864,0.0111208157296067,0.0139096482933227,0.0163283588167029,0.0191735301312892,0.0217917181264225,0.024185057600507,0.0267376394717985,0.0294868508740452,0.0319914579932444,0.0344880772434216,0.0370652632879844,0.0393587058568643,0.0415994873702922,0.043991882881577,0.0465832710978342,0.0489569366054445,0.0512577469923441,0.0682957393483709,0.0848690337906424,0.1010067114093959,0.115696745437726,0.1296825413560787,0.1479989426381179,0.1644230871230202,0.1802971603729405,0.1955481500469965,0.209729149906141,0.2263238398896979,0.2418454146014155,0.2575146049324964,0.2709001192573222,0.2842896610934387,0.2973961624156164,0.3098445248626189,0.3225548407449553,0.3334204842559963,0.3443206206746164,0.354511639764076,0.3643042097739868,0.3736016039291518,0.3821518272385324,0.390022896672675,0.3984454165739848,0.4059806000677617,0.4127077248785216,0.4183869543766716,0.424256462522005,0.4266628843140433,0.4283366024808686,0.4297520661157025,0.4314044543882843,0.4321895791283546,0.4334371530775873,0.4342898134863701,0.435320007942286,0.4371945763645123,0.4391918610921379,0.439853664975768,0.4407123669286638,0.4420990291672835,0.4446275023132998,0.4445524110287865,0.4454009371873848,0.4464362788823986,0.448399479711938,0.4498229461756374,0.4509467124710394,0.4520132377275234,0.4540171124145724,0.4570365141500353,0.4599922390376407,0.4599022707674619,0.4568380213385063,0.4596546310832025,0.4535416666666667,0.4538221085535663,0.458366375892149,0.0,3.305093743983423,76.5269386511934,286.733156472304,428.7448115016789,NC_public_baseline,6 +100000,95733,44827,416.6170495022615,9394,96.7482477306676,7300,75.57477567818829,2994,30.8670991194259,77.33281654085012,79.69959347641615,63.319784280511655,65.07135689632189,76.97194923477575,79.33356241622344,63.18987195377322,64.94190735108047,0.3608673060743683,366.0310601927108,0.1299123267384345,129.44954524141394,44.76472,31.136345799544536,46759.96782718603,32524.15133709853,154.29326,80.86929519503923,160496.64170139868,83801.61923062282,240.86972,112.67350336406908,246685.24960045124,113966.24236446836,5338.66576,2379.414774093954,5533997.858627642,2442933.787896282,1807.34081,780.9413392166057,1873810.9951636323,801726.6041087987,2954.55966,1212.090458771113,3049399.224927664,1237518.2128840114,0.43251,100000,0,203476,2125.45308305391,0,0.0,0,0.0,12002,124.65920842342766,0,0.0,22963,234.97644490405605,2325040,0,83716,0,0,5859,0,0,27,0.2820344081978001,0,0.0,1,0.0104457188221407,0,0.0,0.09394,0.2171972902360639,0.3187140728124334,0.02994,0.3161550075490689,0.683844992450931,25.884874580695016,4.640899443651145,0.3346575342465753,0.1864383561643835,0.2410958904109589,0.2378082191780822,11.350996450491229,5.723816602131636,31.85949169880275,15605.536616586283,82.45071828066189,15.729004202680668,27.7665731400933,19.429509173952717,19.525631763935195,0.541095890410959,0.7604702424687729,0.7077363896848138,0.5823732718894009,0.0994318181818181,0.7097149505526469,0.9217171717171716,0.8720538720538721,0.7252475247524752,0.1353846153846153,0.4891596488084572,0.694300518134715,0.6549486208761492,0.539039039039039,0.0912891986062717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026041402790584,0.0052032091527796,0.0079398923748603,0.0104695012248299,0.0131241606641435,0.0157777868318122,0.0185908483667995,0.0212863705972434,0.0238338684280485,0.0266739025813784,0.0292808956509257,0.0317078930885418,0.0341260783285521,0.0368074150360453,0.0391754279170062,0.0417067195882042,0.0438074130842282,0.0462847654628476,0.0485588320925009,0.0507016136593293,0.0682117131224553,0.0842121782799748,0.0987510617548054,0.1144016568370811,0.1279802685667306,0.1462014274385408,0.1630856682291556,0.1786523909364722,0.1933971332749449,0.2071787062457103,0.2242105149821807,0.2394590208276981,0.2543773790103317,0.268784989503149,0.2817440670693468,0.2955152132738168,0.3077257961890091,0.3191419885148069,0.330161145621586,0.3409262781584435,0.3511582117211026,0.3608797028600888,0.3704955355554765,0.3792569473621031,0.3879423647957942,0.3959226539815901,0.4031150771238877,0.4109482439690254,0.4171170234878403,0.4234192471722603,0.4254079411645419,0.427961358265268,0.4299003228181458,0.4312341105542239,0.4327440775305097,0.4331869655650566,0.4341293992065894,0.4356307967001174,0.4369419738856681,0.4386274121899897,0.4403581345271151,0.4412616029543866,0.4421847885893257,0.4443415405466456,0.4466837045150298,0.4483013684154911,0.4482698761717393,0.4492892509183836,0.4506800899646567,0.451559335763467,0.4512558139534883,0.4515217391304348,0.4525645969919012,0.4529078344591971,0.4550594097355308,0.4574609705917947,0.4547019245814426,0.4558854058542661,0.4571428571428571,0.4540796216003153,0.0,2.603115861323355,76.20555710624711,283.97022887066066,426.14342253246207,NC_public_baseline,7 +100000,95763,44892,415.9226423566513,9339,95.99741027327882,7248,74.93499577080918,2950,30.30397961634452,77.34910350822409,79.67847905126547,63.34642956891118,65.06704493811283,76.98949810246187,79.31913131519852,63.21540233869225,64.93968981713682,0.359605405762224,359.34773606695103,0.1310272302189261,127.35512097600576,45.36576,31.610673573738776,47372.95197518875,33009.27662431082,156.09025,81.95248883474393,162258.99355701054,84841.03342078248,239.48167,112.05847300976218,245261.79213266083,113301.12668020556,5259.20028,2332.164247603199,5440535.060513978,2383993.3561012046,1756.83593,755.6473107291296,1815256.184538914,769776.0403262314,2919.35528,1205.999446864081,3001781.9199482054,1219834.6932489525,0.43264,100000,0,206208,2153.3159988722155,0,0.0,0,0.0,12109,125.68528554869836,0,0.0,22691,232.19823940352745,2322991,0,83560,0,0,6022,0,0,39,0.407255411797876,0,0.0,0,0.0,0,0.0,0.09339,0.2158607618343195,0.3158796445015526,0.0295,0.3075124529836332,0.6924875470163668,25.80992612291636,4.721290634651117,0.333471302428256,0.1898454746136865,0.2417218543046357,0.2349613686534216,11.049881564438502,5.368105897082876,31.549267962439387,15665.59590481461,81.48513293261429,16.012555728758286,27.22586055903545,18.888754941246145,19.35796170357441,0.5364238410596026,0.7601744186046512,0.6760446834919321,0.5913094539048738,0.1147260273972602,0.6953528399311532,0.918854415274463,0.8430717863105175,0.728,0.14,0.4861035422343324,0.690700104493208,0.621012101210121,0.552710843373494,0.108416547788873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027847537265068,0.0056963885707335,0.008288441833805,0.010878508090319,0.013533574653272,0.0163992833584429,0.0189465745327055,0.0217584324131244,0.0244612696563774,0.026825999324746,0.0294741371361834,0.0319647823008486,0.0344994142190615,0.0370839251528438,0.0397146156384031,0.0422343183531817,0.0444945726968884,0.0469613546105909,0.0495022756083875,0.0517156990367091,0.0693070340221248,0.0853180206470237,0.1004162603671898,0.115852312737133,0.1300810437678501,0.1478862819699852,0.1644017130257802,0.1799812829675004,0.1945250800426894,0.2087252780218132,0.2250613510139062,0.2409321942251541,0.2557305032403984,0.269661938249866,0.2823642045954749,0.2964858636887352,0.309469853425468,0.3217439231521996,0.3331063288840461,0.3431382655807933,0.3530364934779337,0.3625346868523657,0.3716309872170029,0.3794601079784043,0.3888361911711054,0.3964459043926053,0.4037918970770793,0.4107149690669048,0.4165670788735321,0.4228553264195176,0.4254755370493044,0.4282890280484939,0.4303562837818717,0.4325556410516993,0.4342134722450259,0.4352575543110345,0.4352772694725117,0.4373039199498035,0.4378524274515197,0.4388250962888305,0.4403104874501879,0.4406965829888363,0.4420096544715447,0.4427633069082672,0.4430908203125,0.4445269016697588,0.4453766874727827,0.4462220508866615,0.4476894374282434,0.4488070560500752,0.4494827104110355,0.4527225301597652,0.4525183120503014,0.4560074947302678,0.4579530005826374,0.4603057199211045,0.4598853868194842,0.458816094375395,0.4615824050271351,0.4583840844498579,0.0,2.8847136141154825,77.0602571540302,265.7829511750973,432.8111907087064,NC_public_baseline,8 +100000,95665,44984,418.637955365076,9564,98.62541159253644,7471,77.47870171954214,2998,30.930852453875502,77.31532774038504,79.70684652613562,63.31028192710126,65.0760289962971,76.93977733095024,79.32765708026268,63.17349048154527,64.94074653608753,0.3755504094348083,379.1894458729388,0.1367914455559926,135.28246020956658,44.81048,31.19987522349425,46841.039042492026,32613.678172261792,156.67914,81.8663815894481,163156.0445303925,84953.19248361273,241.93747,112.9614837474814,249039.6592275127,115090.74473869438,5426.58817,2431.5686539064686,5629778.205195213,2499161.91226891,1838.93849,803.9446879664263,1903810.014111744,821969.0791449136,2970.84874,1244.2847576349925,3067229.9378037946,1268023.740896165,0.43445,100000,0,203684,2129.138138295092,0,0.0,0,0.0,12197,126.84889980661684,0,0.0,23010,236.6905346783045,2322734,0,83597,0,0,5987,0,0,38,0.3972194637537239,0,0.0,0,0.0,0,0.0,0.09564,0.2201404074116699,0.3134671685487243,0.02998,0.3077455048409405,0.6922544951590595,25.692922666805377,4.583841103139481,0.3283362334359523,0.1939499397670994,0.2378530317226609,0.2398607950742872,10.956787698912256,5.411304869384067,32.35229864785394,15685.781344502631,84.33711529716986,16.665609102909524,27.58272652951149,20.135438530509383,19.953341134239476,0.5356712622138937,0.7577639751552795,0.6750917244190787,0.5881696428571429,0.1091727630838491,0.6851134477033758,0.9088607594936708,0.8596491228070176,0.7757437070938215,0.1234567901234567,0.4879943502824859,0.7011385199240987,0.6192246415294742,0.5276752767527675,0.1049562682215743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025629596612435,0.0049777976033577,0.0076417219752785,0.0101395972608863,0.01287841796875,0.0156659027247262,0.0183693035779853,0.0209897349471426,0.0237357467914301,0.0263890880045876,0.0289930876048653,0.0315459681561376,0.0338250725263872,0.0360237822910548,0.0384293809803982,0.0412042734954338,0.0435688086702447,0.0460716139076284,0.0487840396097276,0.0506842319197056,0.0678277767910315,0.0854902207144951,0.1007262956821092,0.1157189157336476,0.1295551685926864,0.1479881863507891,0.1648597852978965,0.1804586559867068,0.1951985976313651,0.2091924905810246,0.2259660468876313,0.2412336748175261,0.2558843381888649,0.2697889759642747,0.2824580537836974,0.2959609409675988,0.3088527814406723,0.32124358165931,0.3318147735793324,0.3422951195733211,0.3527802571027831,0.3628054139567586,0.3720541514533643,0.3818902842035691,0.3896679326127178,0.3978385722225653,0.4059962601809671,0.4123102436535272,0.4183286589799522,0.4247442895754942,0.4265972550875532,0.4292412381400238,0.4313456285119814,0.4336242001163467,0.4358560256007656,0.4367380280821812,0.4373844289995536,0.4390441273616065,0.4393785592622541,0.4406773560798286,0.4415949577294686,0.4431881630374092,0.4445268466330466,0.4463182198881771,0.4475775004874244,0.4500872415798657,0.4509001161440186,0.4515506990197654,0.4543592323726012,0.4567201890944657,0.4584832484463342,0.4605829474257695,0.460456372358356,0.461429359388543,0.4663419386264004,0.4660850331776849,0.4613095238095238,0.4624692370795734,0.4650704225352112,0.4664858581944983,0.0,2.412579451310981,80.5305418632551,280.4847439220467,439.640744917202,NC_public_baseline,9 +100000,95616,44635,414.6168005354753,9389,96.69929718875504,7284,75.4894578313253,2959,30.434236947791163,77.3146043072854,79.73362080652905,63.296484254502126,65.08267329502249,76.9536111346388,79.3712956019774,63.16450023202707,64.95362256362725,0.3609931726466016,362.3252045516523,0.1319840224750521,129.05073139523893,44.70246,31.1121830362128,46752.07078313253,32538.678710898595,153.42333,79.96153469921344,159764.31768741633,82935.76200729888,233.03482,107.9079090593952,239613.6629852744,109637.91228910428,5272.41545,2339.817795838363,5466983.726572959,2400109.576564711,1765.34292,757.0361155531854,1827918.6956157964,773675.2883266365,2918.53932,1211.819768560763,3004841.4909638558,1227636.0059687186,0.43143,100000,0,203193,2125.094126506024,0,0.0,0,0.0,11971,124.45615796519412,0,0.0,22229,228.3195281124498,2326012,0,83572,0,0,5800,0,0,29,0.3032965194109772,0,0.0,0,0.0,0,0.0,0.09389,0.2176251072016317,0.3151560336564064,0.02959,0.3049051271699636,0.6950948728300363,26.09318229653745,4.620635290157858,0.3347062053816584,0.186985172981878,0.236545853926414,0.2417627677100494,10.992889524830945,5.398582894247913,31.514329736116867,15647.814352279727,81.7402571455939,15.647743392852352,27.45762507863615,19.669079348327063,18.96580932577833,0.5400878638110929,0.7591776798825257,0.6894995898277276,0.5900056785917093,0.1044689495066744,0.6993304930006087,0.9396551724137931,0.8609625668449198,0.7610389610389611,0.1318051575931232,0.4937067895763162,0.6972386587771203,0.6382525306339905,0.5421511627906976,0.0975254730713246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027661536279168,0.0054862033647361,0.0080704105250335,0.0106081390032007,0.01324462890625,0.015797514768792,0.0183596658540814,0.0209929512718357,0.0233811661944748,0.0259188333964833,0.0284615384615384,0.0310631741140215,0.0333727688904891,0.036000576998372,0.0387914572086253,0.0413280393738238,0.0435710659109513,0.0463682046596619,0.0487893701811522,0.0512635981517986,0.0684039428434047,0.0847589017274432,0.1001606687179056,0.1147076780563801,0.1290652873805879,0.1469538604907286,0.1638374267017931,0.1794202280720452,0.1942013480261046,0.2091216760676873,0.2259446278673313,0.241715716562063,0.256835245785522,0.2705388644182938,0.2837754404533527,0.297447625814617,0.3095794523151927,0.3209380989965046,0.3321431414243641,0.3434787600459242,0.3537314816961491,0.3631816318163182,0.3718780004978604,0.3796755484575943,0.3881274096055848,0.3954286278478513,0.4027645496014838,0.4096196725488947,0.4166093914126023,0.4233124776782762,0.4253152934186718,0.427030010348396,0.4292562895082941,0.4310547640831264,0.4334414856237197,0.4347256271489584,0.4354532548531687,0.4375383086225461,0.439347093876846,0.4399660968044435,0.4411503505092304,0.4421890547263681,0.4432659258165869,0.4454393720678455,0.4459842519685039,0.4475333735476933,0.4482441783673586,0.45001424997625,0.4508469771068112,0.4523952937397101,0.4531300382329909,0.4534174893456331,0.4555598555211558,0.4558400124503929,0.4552704910156625,0.4547347788803136,0.4529683272322139,0.4501783092091462,0.4502262443438914,0.4539631705364291,0.0,2.6515287522334448,72.73041768134443,283.76935129807754,431.5458922857569,NC_public_baseline,10 +100000,95631,44766,415.1373508590311,9319,95.99397684851148,7234,74.91294663864228,3090,31.83068251926677,77.29129418892526,79.69267639631698,63.29829466637945,65.07067705600844,76.9160555884326,79.31479836671303,63.16171797060792,64.9361043572032,0.3752386004926649,377.87802960394856,0.1365766957715237,134.57269880522915,44.63668,31.122206772510204,46675.03215484518,32543.253803374704,154.09562,81.15883102876849,160309.61717434725,84043.09737764849,238.01839,111.17100955534656,244004.71604396065,112432.43927681827,5274.42611,2356.2915284692235,5468363.679141701,2417110.053207151,1780.40129,774.9971610759553,1843121.2159237068,791923.5714734305,3050.55546,1260.982895844174,3145915.445828236,1283077.266279547,0.4315,100000,0,202894,2121.5923706747813,0,0.0,0,0.0,11955,124.22749945101484,0,0.0,22651,232.13184009369343,2323294,0,83537,0,0,5861,0,0,47,0.4601018498185735,0,0.0,0,0.0,0,0.0,0.09319,0.2159675550405562,0.3315806416997532,0.0309,0.3082706766917293,0.6917293233082706,25.863841919373865,4.66469473888359,0.3372961017417749,0.1844069670998064,0.2438484932264307,0.2344484379319878,11.312788994911251,5.684514416050635,33.000476126446074,15639.320075270338,81.98069903910874,15.555397351844338,27.86274827277493,19.034139541344445,19.52841387314505,0.5438208460049765,0.7646176911544228,0.6983606557377049,0.5866745283018868,0.1218820861678004,0.6943181818181818,0.9132653061224488,0.861244019138756,0.7430939226519337,0.1451187335092348,0.495432955791012,0.70276008492569,0.6420297848869277,0.5442278860569715,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027957011030864,0.0054851465071479,0.0082620301858449,0.0109643328929986,0.0137451800303187,0.0165402047155879,0.0190468421803943,0.0215859660587742,0.0241084573858989,0.026662298036164,0.029176195506148,0.0315513788322292,0.0340003086260994,0.0367046215673141,0.0396527161233043,0.0422510446402714,0.0447389966111531,0.0472007641830716,0.0493497034647799,0.0519495412844036,0.0692638883083225,0.0856622114216281,0.1007623327803095,0.1160234952314785,0.1300401097741186,0.1470550874370157,0.1636462082364557,0.1791850865512649,0.1938053286575717,0.207382276524017,0.2239427203519592,0.2400658486131719,0.2551498127340824,0.26999824768914,0.2832287727267715,0.2966213592233009,0.3090852186354287,0.320968741199662,0.3316973415132924,0.342584840526189,0.3526024286243975,0.362112586970272,0.370747613683524,0.3796321877740273,0.3874838583924177,0.3947117822382171,0.4027910365271567,0.409666415402895,0.416263461838614,0.4230239457512185,0.4254450587328836,0.4267833928028103,0.428941886664116,0.4311295366935777,0.432546096743295,0.4335372636262514,0.4338811953934863,0.4346694084675213,0.4357207020453289,0.4377845220030349,0.4386204541574184,0.4398982106718496,0.4417185739492761,0.4433902306155802,0.4457199961002242,0.4482776852512755,0.4485555138676441,0.4482912807409773,0.4490263459335624,0.450993109039319,0.453906976744186,0.4559930672155121,0.4577823647036057,0.4585362022930737,0.4568587306229891,0.4580341668729883,0.4599196787148594,0.4606332905434318,0.4582249204972535,0.456882911392405,0.0,2.776728979121787,78.20728284516798,273.6107509372128,424.2603822357197,NC_public_baseline,11 +100000,95625,44797,416.08366013071895,9351,96.50196078431372,7267,75.35686274509804,3086,31.811764705882357,77.27514686010801,79.68814555477454,63.27600815666828,65.05724520328418,76.90574092046374,79.31524627833218,63.14200019231061,64.92492755326577,0.3694059396442668,372.89927644235377,0.1340079643576714,132.31765001840756,45.15192,31.40943809855579,47217.69411764706,32846.47121417599,152.88269,80.06489208510827,159224.6797385621,83075.34858573414,236.65215,110.24428706092527,243398.31633986929,112101.70114824791,5337.60173,2371.815767541101,5539745.066666666,2438269.5503697773,1769.12697,766.7194105028328,1835745.202614379,787475.8593493671,3046.62674,1257.4687781483449,3144403.848366013,1280793.2042320892,0.43255,100000,0,205236,2146.258823529412,0,0.0,0,0.0,11895,123.72287581699348,0,0.0,22426,230.63006535947716,2320048,0,83411,0,0,6078,0,0,43,0.4287581699346405,0,0.0,0,0.0,0,0.0,0.09351,0.2161831002196277,0.3300181798738102,0.03086,0.308943911066195,0.691056088933805,25.774728896835263,4.684439355143823,0.3268198706481354,0.1832943442961332,0.2483831016925829,0.2415026833631484,10.983798177119985,5.37707584316078,33.05043390591122,15669.753581630424,82.26996079873612,15.474308012705,26.99975209422886,19.79366778232388,20.00223290947837,0.531168295032338,0.7627627627627628,0.6854736842105263,0.58005698005698,0.1096952908587257,0.6966033390903857,0.910025706940874,0.8780918727915195,0.726161369193154,0.1662198391420911,0.4792043399638336,0.7020148462354189,0.6252072968490879,0.5356612184249628,0.0949720670391061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024303305249513,0.0050778914081266,0.0076099639795038,0.0102793296089385,0.012723888566808,0.0153576666123513,0.0179569278459844,0.0207756939694336,0.0232279962786132,0.0257720347313237,0.0285969249074292,0.0311376384294549,0.0338902835507634,0.0365403644759627,0.0388686376356633,0.04127785479299,0.0440217672972272,0.0465389209118762,0.0489640028722773,0.0513943641407504,0.068838648312481,0.0856963219113486,0.1017638222100828,0.1169616519174041,0.1312678912843697,0.1490785850455412,0.1653437045065723,0.1807832519666574,0.1954818825845943,0.209236093199209,0.2261769817879543,0.2423276292103151,0.2570397584188206,0.2705936543797502,0.2839245899467979,0.2971654610709245,0.3097799921625707,0.3211153129762375,0.3325475995262822,0.3433509935297024,0.353627529518303,0.3636352964654231,0.372504068324088,0.380720978625642,0.3891427526960336,0.3965257171117705,0.4036443606660383,0.4106114211998518,0.4179271562833563,0.4239858812913841,0.4259665664201143,0.4283202503080395,0.4310493870899171,0.4324953106597066,0.4335865079839722,0.4339881576512675,0.4343197717964654,0.4357557610547734,0.4375418879208125,0.4387074744352389,0.4404379230798321,0.442074812967581,0.4429990890023516,0.444172889794071,0.444620407367703,0.4447672882878123,0.445677300046232,0.4461803891498131,0.4471905289888765,0.4493281528249959,0.4509494405497005,0.4540364229410166,0.451712394782497,0.4520058974160006,0.4545980335454019,0.4566601371204701,0.4572642845899575,0.4615384615384615,0.4611664295874822,0.4614776768075859,0.0,2.521160255115521,77.47155186672121,283.1067712266295,419.5175990843546,NC_public_baseline,12 +100000,95668,44939,417.3600367939122,9298,95.71643600786052,7250,75.03031316636701,3022,31.05531630221181,77.28391542799022,79.68169207947894,63.28504443165552,65.05960607781607,76.90716734551094,79.3039599357375,63.147037781508416,64.92516269941956,0.3767480824792812,377.73214374144,0.1380066501471049,134.44337839651155,45.1022,31.415132377585127,47144.039804323285,32837.23354886182,154.6936,81.50360632318265,160927.96964502236,84426.25442286623,240.14196,112.68711531949818,246351.5072960656,114225.71126241182,5252.34039,2356.71803592099,5437663.147551951,2411650.7800182938,1760.61747,770.6737506160158,1821438.715139859,786799.6797359536,2979.97912,1240.2443454153708,3065062.4242170844,1253924.7084796766,0.43338,100000,0,205010,2142.910900196513,0,0.0,0,0.0,11994,124.56620813647196,0,0.0,22830,234.0176443533888,2320438,0,83482,0,0,6005,0,0,38,0.3972070075678388,0,0.0,0,0.0,0,0.0,0.09298,0.2145461258018367,0.3250161325016132,0.03022,0.3195960420279506,0.6804039579720493,25.75864209319361,4.631172604970362,0.3376551724137931,0.1929655172413793,0.241103448275862,0.2282758620689655,11.105264017744508,5.45668279541408,32.394866708885225,15691.919864763287,82.35248338042464,16.467829187748617,27.940823851857093,18.462010363605245,19.48181997721368,0.5380689655172414,0.7512508934953538,0.7001633986928104,0.5601208459214502,0.1195652173913043,0.6891661939875213,0.909952606635071,0.8431372549019608,0.7214484679665738,0.1513513513513513,0.4895206852560598,0.6827021494370522,0.6525054466230937,0.5154320987654321,0.1110304789550072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026853934861474,0.0054669750081142,0.0082032955318436,0.0106706232660237,0.0135526998565367,0.0162884035530926,0.0189708807180376,0.02155084364914,0.0242495525441063,0.0266037001372697,0.0289413478604331,0.0315444447869465,0.0339579538789244,0.0364419618472446,0.0387831365100338,0.0411723945351687,0.0437089386748461,0.0460599391680767,0.0484656194736294,0.0511575063321485,0.0688257417467613,0.0856700102611354,0.1013444725490402,0.116631237766506,0.1310492595759053,0.1495130213847131,0.1661533886965571,0.1818346434886346,0.1963670964569033,0.2108771967492941,0.2277147662584095,0.2423930475488708,0.2568487555144055,0.2696727687032351,0.2826901874310915,0.2970551002731694,0.3096263323304739,0.3212151282109109,0.3326016740969884,0.3439462655720764,0.3543201996170139,0.3638700740723349,0.3733116335428076,0.381507895464768,0.3890399600034143,0.3966579259845636,0.4039468890926677,0.4102852181906391,0.4168951848723113,0.4237377882502449,0.4261009478224422,0.4280048641627283,0.4303840441332485,0.4319013062409289,0.4342481118671951,0.4349831114949797,0.4354223520211934,0.4369975851004002,0.4392018900788108,0.4409806786816042,0.4427473674224457,0.4430778491171749,0.4442573328785811,0.4447885591965932,0.4455277764133798,0.4458974563431943,0.4479000608678009,0.4491680292392036,0.4497104868110658,0.4494590666881963,0.4514330840340038,0.4524661246612466,0.4515736949846469,0.4527344050457657,0.4538007239474185,0.4526823387582881,0.4571116656269495,0.4581086686022397,0.4550658271322266,0.4543658632951403,0.0,2.8695438450417505,78.06769949867284,281.06541616828446,419.2467766913308,NC_public_baseline,13 +100000,95652,44909,418.193033078242,9551,98.57608832016058,7433,77.07104922008949,3044,31.38460251745912,77.35161970545354,79.75813659126125,63.31721993396855,65.09466788274746,76.97012551165058,79.37274387809018,63.177766686393454,64.95695790715938,0.3814941938029648,385.39271317107193,0.1394532475750978,137.70997558808062,44.40326,30.93105463549886,46421.67440304437,32337.07045905873,155.80721,81.25689640604683,162252.78091414712,84314.59998572707,239.19672,111.27117190651649,246309.13101660184,113416.34233728432,5372.60761,2402.2318869771843,5572249.435453519,2466966.499214534,1820.40585,786.239479884241,1887166.2798477816,806227.8126625246,2998.20512,1250.814369458986,3092680.2785095973,1272188.7574418853,0.43299,100000,0,201833,2110.0761092292896,0,0.0,0,0.0,12037,125.17250031363692,0,0.0,22825,234.88269978672687,2328384,0,83607,0,0,5944,0,0,27,0.2822732404968009,0,0.0,0,0.0,0,0.0,0.09551,0.220582461488718,0.3187100827138519,0.03044,0.3128730600875448,0.6871269399124552,25.82955778762258,4.595287104186032,0.3273240952509081,0.1961522938248352,0.2374545943764294,0.2390690165478272,10.936069226938583,5.426571295458409,32.58891771629059,15637.471870936082,83.80070614369532,16.82825245952029,27.479199975323134,19.89453555959617,19.598718149255703,0.5335665276469796,0.752400548696845,0.6884504726674887,0.5604952166572875,0.1121813031161473,0.6776536312849162,0.8939759036144578,0.8333333333333334,0.7230769230769231,0.1340482573726541,0.4878610668084352,0.6960690316395014,0.6397583745194948,0.5147801009372747,0.1063218390804597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025227707925958,0.0050600821376058,0.0079667931881381,0.0107494107128342,0.0132236112665168,0.0160012222448563,0.0186203028603477,0.0211169088439819,0.0237934560327198,0.0263648468708388,0.0289923466770626,0.0313007378177857,0.0334557953340948,0.035990803839294,0.0384154529490755,0.0406505747364282,0.0431285564734294,0.0456489690828678,0.0480273014816047,0.0502914463874203,0.0680564263322884,0.0843027821698202,0.1000881741649696,0.1149017668290732,0.1299116613367951,0.1475040223558303,0.1643288701062892,0.1803724271720477,0.1954379620614762,0.209530867379817,0.2255538537869146,0.2409843526505136,0.2561628919860627,0.2701989510451226,0.2836368443665928,0.2965016970207857,0.3086339701953068,0.3202798463323682,0.3307350551660663,0.3415221303864363,0.3518578576723499,0.3609537409869838,0.3703207922668688,0.3790463849494876,0.3871411025039218,0.3953069482826687,0.4027699512879272,0.4100588400112076,0.4169236750032396,0.4229154010723436,0.4257457803203043,0.4276062707681277,0.4294354553804847,0.4319338699151621,0.4336736216829348,0.4349492151431209,0.4361932342551634,0.4372098402365886,0.439374903189164,0.4412659549570634,0.4429771454517935,0.4434510148282675,0.4451909626552499,0.4457403765737664,0.4465608979810005,0.4477053585541914,0.4480967360249343,0.4488246738749083,0.451223421305695,0.4537903225806451,0.4522487506940588,0.4520010744023637,0.4521327620387542,0.4557738603712045,0.4598792062122519,0.4668379833578071,0.4632911392405063,0.4623723160308526,0.4622535211267605,0.4634050880626223,0.0,2.405753724674595,79.81887186564929,278.42723108207,438.07964024752016,NC_public_baseline,14 +100000,95777,44924,417.0521106319889,9209,94.68870396859371,7161,74.04700502208254,2968,30.57101391774643,77.3507064425629,79.68022771546875,63.34838135415546,65.07040342577955,76.98946343906675,79.31678794731936,63.2175979515556,64.94172437711865,0.361243003496142,363.4397681493908,0.1307834025998602,128.6790486608993,46.2649,32.18893092188186,48304.81222005283,33608.20543750782,155.06033,82.18029517162174,161140.04406068265,85046.58234400926,239.05204,111.7282536539131,245103.490399574,113186.65538105382,5196.81031,2326.704203507252,5377905.499232593,2381528.103924012,1799.15467,774.0292792319578,1861082.2535681843,790857.3976623948,2927.04558,1208.9884012618636,3017362.978585673,1228550.5709122603,0.43304,100000,0,210295,2195.673282729674,0,0.0,0,0.0,12113,125.6982365286029,0,0.0,22746,232.96824916211617,2319818,0,83400,0,0,6144,0,0,25,0.2610230013468786,0,0.0,0,0.0,0,0.0,0.09209,0.2126593386292259,0.3222934086220002,0.02968,0.3109027205276174,0.6890972794723825,25.832844249173714,4.580072039916264,0.3337522692361402,0.1837732160312805,0.242563887725178,0.2399106270074012,10.882590625609849,5.443346959456852,31.715784547963658,15591.216350328752,81.28900014573726,15.29177971306778,27.28377848262129,19.421955019917142,19.29148693013105,0.5423823488339617,0.7537993920972644,0.701673640167364,0.5861466821885913,0.1197466896948762,0.7008849557522124,0.8864864864864865,0.872822299651568,0.7619047619047619,0.15625,0.4932308818148554,0.7019027484143763,0.6475770925110133,0.5329795299469295,0.1104693140794223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025930878003322,0.0052919708029197,0.0078338254842866,0.0104115878433284,0.0132381649585163,0.0157288729168151,0.0184358566711507,0.0209202885979324,0.0235649979051064,0.0260744985673352,0.0286083160850052,0.0310595333374376,0.0335539432306332,0.0362142798320019,0.0387506573588096,0.0410640495867768,0.043520099332609,0.0459450773871847,0.048673852991879,0.0511248295318502,0.0688975145558129,0.0853808996047761,0.100309240526233,0.1147892430404489,0.128987721979238,0.1467183915943469,0.1625929185709892,0.1785645871911116,0.1934237215757446,0.2076893395356813,0.224285483610528,0.2397816334252202,0.2552467693377822,0.2693934195141674,0.2827638539112074,0.2959655645553932,0.3082659829440945,0.3203412117738292,0.3315190892494699,0.3425228401987498,0.3528208328998925,0.3618341846574638,0.3706693495886843,0.3785701444238029,0.3868396753656996,0.3945249398853196,0.4015853536365458,0.4081588438451833,0.415075976798204,0.4217897393211516,0.4234669111698398,0.4252756198860265,0.4273012552301255,0.4285444646098004,0.4300603237173744,0.4314918659107715,0.4328025122343902,0.4345924453280318,0.4360331775620354,0.4375924122759566,0.439453125,0.4413507346170783,0.4414142273655548,0.442663995993991,0.4434075196052085,0.4449279592432403,0.4481916501918828,0.4484643833413732,0.4496839534549633,0.452782837482291,0.4517633886919201,0.4570615906355978,0.4575040518638574,0.4587170405352223,0.4602437608821822,0.4584098983216954,0.4575974542561655,0.4584569732937685,0.4598329974085804,0.4615077782209812,0.0,2.717803528530855,74.90010944300829,285.65287194520823,412.4364190301818,NC_public_baseline,15 +100000,95721,44834,417.8497926264874,9408,96.8230586809582,7289,75.4170976065858,2979,30.662028186082463,77.31652017658898,79.67726872191085,63.31665033110207,65.06247179168085,76.95528353066675,79.31480325278828,63.18558421602328,64.9340265723687,0.3612366459222329,362.4654691225686,0.1310661150787879,128.44521931215525,44.56188,31.04535917260988,46553.9223367913,32433.17471882855,154.79477,81.57061050635258,160935.20753021803,84438.3487677151,244.54647,114.11631280708808,250824.8451228048,115653.35696157084,5274.32807,2362.11679868057,5463467.69256485,2421150.771714554,1792.62948,784.3230870481078,1851405.5118521536,798041.9945097937,2930.6762,1206.7756239948058,3019271.0690444107,1224205.9981989954,0.43138,100000,0,202554,2116.087378945059,0,0.0,0,0.0,12042,124.97780006477156,0,0.0,23246,238.1713521588784,2323789,0,83627,0,0,5824,0,0,34,0.3551989636547883,0,0.0,0,0.0,0,0.0,0.09408,0.2180907784320089,0.3166454081632653,0.02979,0.3191575128489368,0.6808424871510632,25.50851435900318,4.65621069747702,0.3333790643435314,0.1911098916175058,0.2300727123062148,0.2454383317327479,11.395096675920332,5.727676194502961,31.665693480369345,15589.302215148144,82.71238324042392,16.336990559196046,27.621195363975453,20.163311197619457,18.59088611963296,0.5537110714775689,0.7774587221823402,0.7049382716049383,0.5830072666294019,0.1174716756112105,0.710688304420817,0.9077669902912622,0.8758278145695364,0.7338129496402878,0.1723163841807909,0.5027262813522355,0.7227319062181448,0.6484118291347207,0.5371720116618076,0.1027966742252456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027451099563416,0.0053831571050577,0.0081908145140827,0.0108213011979637,0.0131123860677083,0.0156641476381561,0.0180514619644477,0.020465059281272,0.0230979233341172,0.0256360378807269,0.0284328603067836,0.0308864450810666,0.0334097709955062,0.0357106081512449,0.0381441597557453,0.0403777405823156,0.0426681572573132,0.0449448691485058,0.0472116833844394,0.0494113970205229,0.0670160675694016,0.0837954921206286,0.099384418553436,0.1135950200313351,0.1278179632636706,0.1461510798976159,0.1627465334139639,0.1786486112441846,0.1941425991815452,0.2082443698164222,0.2248413613298714,0.2400346339087612,0.2538233950442708,0.2686776109282207,0.2821622454934866,0.2955843061606856,0.3074568849968724,0.3203737055380459,0.3317321341373397,0.3420835434912192,0.3520201961715285,0.3616620226192427,0.3707943731408729,0.379508738213921,0.3876139808378276,0.3944454057795466,0.4017821285140562,0.4092452204099344,0.4165985016684195,0.422238112263139,0.4244844455255547,0.4264077347607785,0.428638264691288,0.430635585821547,0.4322068129796688,0.4334181509754028,0.4343418242101571,0.4362546171301741,0.4375463721853161,0.4393446768541599,0.4410923079838542,0.442256955548449,0.4431873660079387,0.444300811901846,0.4455699292164999,0.4475313541832036,0.4486146533735219,0.4501947512930209,0.4514909402197175,0.454853683148335,0.454823605767002,0.4566480264943808,0.455388180764774,0.4565267974870085,0.4564757878554957,0.4518854064642507,0.4560821484992101,0.4604391052195526,0.460559796437659,0.4577742699289661,0.0,2.7117909189331573,79.39964333500107,277.4654817766857,424.27846594060406,NC_public_baseline,16 +100000,95673,44694,416.2616412153899,9301,95.74279054696729,7194,74.55603984405214,2887,29.83077775338915,77.40264542862671,79.78254832494555,63.35728834693722,65.11178114735215,77.04713219156824,79.42148355666205,63.22918727090389,64.98373955323564,0.3555132370584744,361.064768283498,0.1281010760333245,128.04159411651028,45.32726,31.56951010099952,47377.27467519573,32997.30341998215,153.63561,80.80727242484716,159932.4469808619,83811.7234492644,237.33373,110.81428384478716,243146.8961985095,112181.46761260592,5236.52858,2337.924734631445,5432974.8100299975,2403390.6025452167,1754.81838,757.259102766097,1816940.9446761368,774269.7128866271,2862.53558,1185.0554055688033,2959897.630470457,1212412.930766752,0.43094,100000,0,206033,2153.512485236169,0,0.0,0,0.0,11978,124.52834132931966,0,0.0,22574,231.09968329622777,2326697,0,83545,0,0,5782,0,0,32,0.3240203610213958,0,0.0,0,0.0,0,0.0,0.09301,0.2158305100478025,0.3103967315342436,0.02887,0.3148957803762074,0.6851042196237925,25.797922812152933,4.621629058665758,0.3290241868223519,0.1943286071726438,0.2417292187934389,0.2349179872115652,11.000679191008103,5.400524086767696,30.888773252742943,15556.802513313569,81.13813194908936,16.180549526437222,26.728596633303745,18.87520698149124,19.35377880785716,0.5400333611342786,0.7675250357653791,0.6797634136037178,0.5940828402366863,0.1144335825186889,0.6890804597701149,0.9246231155778896,0.8649093904448105,0.7108108108108108,0.1178082191780822,0.4924825815914925,0.705,0.615909090909091,0.5613636363636364,0.1135371179039301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025721258518901,0.0055236299877365,0.0081253804017042,0.0105318749174816,0.0130261030495927,0.0155184000977537,0.0179534494887191,0.0211163388820281,0.0235246027285269,0.0259527610626714,0.0286291231882572,0.0307982917214191,0.0333641784906436,0.0359636655749861,0.0382682803520392,0.0408144281949253,0.0429393857814409,0.0454918075314675,0.047683923705722,0.0499640433980552,0.0665754340513549,0.0827164501031338,0.0979694632457107,0.1127848021374623,0.1269275392891045,0.145740977813515,0.1621016438327089,0.1770661442974098,0.191685813518568,0.2062523459702933,0.2232214013397376,0.2392692482521266,0.253972224336875,0.2686151020140392,0.2816594607082742,0.2943462662769067,0.3073981156269164,0.3196462484127251,0.3311878888146041,0.3417248084181631,0.3510841063198142,0.3603264867642079,0.3694598747193003,0.3778182210036039,0.3861531552308009,0.3939009364218827,0.401419913853551,0.408067983767349,0.4147187941104104,0.4207775754216485,0.4227847078158256,0.4251386576017396,0.4279594137542277,0.4301334991828056,0.4326480789555949,0.434434665069198,0.4351912220720362,0.4366736543254708,0.438634725606617,0.4398664296870792,0.4411842403200242,0.4427629488401652,0.4444280691412089,0.4448473927244059,0.4470879561069165,0.4493739290892315,0.4489548446702852,0.4510215772388772,0.4503474078033137,0.4512578616352201,0.4524052275465752,0.454136398135097,0.4549887712544113,0.4564981389578164,0.4541694719630663,0.4570054119061936,0.4588032581453634,0.4566473988439306,0.4492143658810325,0.4389771406431615,0.0,2.432453004145622,77.39757769583744,272.6143689144463,418.878352908346,NC_public_baseline,17 +100000,95728,44824,415.1345478856761,9355,96.41902055824838,7319,75.85032592344977,3063,31.58950359351496,77.33907921770925,79.70647116247818,63.32552877917672,65.07562002609866,76.9751793172143,79.33920486204971,63.1937320357024,64.94574770145378,0.3638999004949568,367.26630042846864,0.131796743474311,129.87232464487874,45.20054,31.45484089395137,47217.67925789738,32858.55851365471,154.54487,80.97402434209374,160863.9896373057,84009.93893332541,239.13681,111.1719629587155,246633.50325923448,113618.44822725124,5329.17125,2370.9419315871423,5524934.972004012,2434690.405719478,1820.8657,778.2628875694965,1885764.1860270768,796633.7200918196,3022.6097,1244.2188055478362,3119285.120340966,1265701.376861261,0.43267,100000,0,205457,2146.2581480862445,0,0.0,0,0.0,12022,124.96866120675249,0,0.0,22766,234.67533010195555,2325215,0,83558,0,0,5883,0,0,33,0.3342804613070366,0,0.0,0,0.0,0,0.0,0.09355,0.216215591559387,0.3274184927846071,0.03063,0.3121961102106969,0.6878038897893031,25.948566062972105,4.618218081935392,0.3281869107801612,0.1890968711572619,0.2421095778111764,0.2406066402514004,11.22013219414052,5.586635146625064,32.67122613728948,15620.101413039854,82.86863535002247,16.23332123388992,27.12168446232619,19.7527900586108,19.760839595195563,0.5406476294575762,0.7536127167630058,0.6919233971690258,0.5826235093696763,0.1275395033860045,0.7027663331371395,0.935483870967742,0.8641114982578397,0.7344173441734417,0.141643059490085,0.4916370106761565,0.6788990825688074,0.637855579868709,0.5423850574712644,0.1240310077519379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026940528277426,0.00524191913047,0.0077646843884169,0.0105978702649975,0.0130413110484929,0.0156636690464308,0.0184367511344516,0.0212355409447773,0.0241211476717315,0.026895266187345,0.0297315037023362,0.0322096916661531,0.0349473424387033,0.0374605921988007,0.0398645719358368,0.0425331692536788,0.0449709413751307,0.0471589434902184,0.0496048252911813,0.0520196284758759,0.0688517400883357,0.0849498817670077,0.1003460207612456,0.1150335457547269,0.1289070738600413,0.1467137764331277,0.1624844825939797,0.1786007091216899,0.1940003419826443,0.2076639946774834,0.2244711004774375,0.2402828768532657,0.2557241109128106,0.2695561757784709,0.2821758188506355,0.2953015668836425,0.3075960679177837,0.3198391964325931,0.3312133016842894,0.3420599972478326,0.3518953915289375,0.3604799531752999,0.369318719818199,0.3785597852143063,0.3864486662455663,0.3950234047795023,0.4021491656033426,0.4090059149017363,0.4156696706028589,0.422329648267755,0.4249100537656142,0.4269478504337751,0.429276501866727,0.431144421688672,0.4332013447889428,0.4343599303619024,0.4355746091446603,0.4376551998145879,0.4390374423863695,0.4399776056058225,0.4413837526523189,0.4418734764017104,0.4429500349480016,0.4437821544319289,0.4434494841347089,0.4432622240996937,0.4450584423099178,0.4467656923814087,0.4464215528638296,0.4481487482783764,0.4504211065097017,0.4515900675234153,0.4533791226592367,0.454495528008787,0.4558555096551062,0.4561702127659574,0.4577988915281076,0.4566945606694561,0.4632478632478632,0.4644549763033175,0.0,2.350810096409059,75.68641286620642,296.46451352527424,418.03145612649377,NC_public_baseline,18 +100000,95672,44865,415.8583493603144,9361,96.3500292666611,7228,74.81812860607074,2983,30.667279872899076,77.30793472821749,79.68266241593027,63.31631099018998,65.0697124416437,76.95643468593083,79.3321925404849,63.18815262665843,64.9452044466534,0.3515000422866592,350.4698754453699,0.1281583635315542,124.50799499029586,44.61292,31.04787819253969,46631.114641692446,32452.418881741465,152.13344,79.43831839025532,158271.145162639,82300.08959479867,238.01473,110.31848708371268,244384.6789029183,111857.22824146782,5225.94061,2320.5236472866227,5412362.289907183,2376619.3471231465,1785.0099,762.7568073782804,1846291.6109206453,778408.4035667961,2943.65286,1203.499844043291,3029612.21674053,1218655.9269699373,0.43314,100000,0,202786,2119.5961200769298,0,0.0,0,0.0,11810,122.66911949159628,0,0.0,22699,232.82674136633497,2327043,0,83732,0,0,5909,0,0,26,0.2717618529977423,0,0.0,1,0.0104523789614516,0,0.0,0.09361,0.2161194994689938,0.3186625360538404,0.02983,0.3142972454848148,0.6857027545151851,25.91510719863968,4.625930372022568,0.3438018815716657,0.1896790260099612,0.2386552296624239,0.227863862755949,11.453833663843254,5.771475927953537,31.44948303355909,15653.880948302723,81.54923328170128,16.04351307275124,28.22849200283876,18.360856100228965,18.916372105882324,0.5448256779192031,0.774617067833698,0.6869215291750503,0.5859137826350941,0.1182608695652173,0.6951995373048004,0.9435897435897436,0.8505564387917329,0.7162162162162162,0.1,0.497545008183306,0.7074413863404689,0.6314655172413793,0.548159749412686,0.1227436823104693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028552335824069,0.0056037452879899,0.0085007963156453,0.0113248557731372,0.0141363599381661,0.0168221253716752,0.019149391767189,0.0217968351199591,0.0245149154552331,0.0272287109355007,0.0296776971337187,0.0321050524132691,0.0345962400756921,0.0369218090038116,0.0394807446237668,0.0420750113716246,0.0445432221566006,0.0469788205980066,0.0494855870757003,0.0519380329851337,0.068193926478423,0.0849959176837565,0.1002434213287447,0.1150367082483118,0.1292438108894605,0.1469365739124916,0.1636656869714685,0.1789756092367639,0.1942770440654785,0.2083105346164987,0.2251066396656469,0.2406968565709029,0.2557178435872059,0.2698567209887345,0.2825778335369276,0.2959441489361702,0.3082865403721854,0.3194578896418199,0.3312477289244186,0.3416714433107876,0.3512082053659384,0.3614158753205391,0.3708364437808823,0.3804433982657987,0.3889240660464663,0.3970270236874297,0.4040557508789553,0.4109974065131015,0.4172662806583826,0.4229978921692097,0.4247298010199251,0.4267433978447024,0.4289093819500517,0.4306488671727307,0.4334759454284346,0.4351826167360147,0.4366666666666666,0.4381685709554562,0.440187012628528,0.4407253194902575,0.4424624590505406,0.4436780230326295,0.4445033168726024,0.4449670955923924,0.4466902352797757,0.4467882128471486,0.4469923177272068,0.4477416050449758,0.4491656199533465,0.4511725869820568,0.4536635418124154,0.4544614715791761,0.4552850778071931,0.452958672510958,0.4497825036249396,0.4487117160913952,0.4496958352831071,0.4461411473380107,0.4516397998888271,0.4578499613302397,0.0,2.7755577264145144,76.6802725655032,267.4952741834775,433.5325185110455,NC_public_baseline,19 +100000,95690,44811,415.9159786811579,9487,97.52325216846066,7365,76.22531089978054,3103,31.94691190302017,77.38171245272493,79.75454812687656,63.34258245905804,65.09453582954087,76.9987980749075,79.36875824826522,63.20294798054689,64.9563840707853,0.3829143778174284,385.78987861133385,0.1396344785111551,138.15175875556918,45.9096,31.892385109923403,47977.42710837079,33328.85892979768,157.11104,82.64763392748652,163420.09614379768,85609.06775896081,236.85563,110.70602853748323,242322.52063956525,111718.8623892338,5442.0733,2425.683074328998,5640527.390531926,2488780.159229298,1817.0719,783.1775847271298,1881524.8510816176,801219.2339162976,3071.75026,1280.9044921568388,3166787.731215383,1305778.050640034,0.43229,100000,0,208680,2180.792141289581,0,0.0,0,0.0,12228,127.00386665273278,0,0.0,22534,230.28529626920263,2320956,0,83416,0,0,6124,0,0,38,0.3971156860695997,0,0.0,0,0.0,0,0.0,0.09487,0.2194591593606144,0.3270791609570992,0.03103,0.3186396728832153,0.6813603271167847,25.88829188676423,4.693751747873932,0.3318397827562797,0.1815342837746096,0.253224711473184,0.2334012219959266,11.023904902759211,5.436942761249228,33.36326883519972,15653.53969787983,82.99342713809719,15.377259055772427,27.715232151328063,19.234325725205974,20.66661020579072,0.5284453496266124,0.7621540762902019,0.6943535188216039,0.5619546247818499,0.1126005361930295,0.6854884246188594,0.9533678756476685,0.8491803278688524,0.7124352331606217,0.1362467866323907,0.4787272077225599,0.6845425867507886,0.6428571428571429,0.5183795948987246,0.1063685636856368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028561011181332,0.0054942270068627,0.0084730283719608,0.0110720598094386,0.0136704843664178,0.0164052953156822,0.0191180219219984,0.0219180040017967,0.024493217341525,0.0269014228682567,0.029535691951242,0.0320530590035009,0.0347178659207535,0.0371038020581176,0.0395657468370105,0.0421625086589261,0.0445963440526125,0.046944556859571,0.0491310542792066,0.0513250726888085,0.068772127706238,0.0856374124519729,0.1013472394182947,0.115930441734959,0.129850950939336,0.1469151208781911,0.1635771357023863,0.1798600981655185,0.1946112262558492,0.2087879080444973,0.226189193266806,0.2419071952883095,0.2567033971130522,0.2702442651271622,0.2838502414927442,0.2975570862217891,0.3098558550517672,0.3215820861933161,0.3327053375855455,0.3434760185662712,0.3532702486709366,0.3626818676623787,0.3718928914334483,0.3803567570163013,0.3879416310684338,0.3954921575892305,0.4017929910350448,0.4093507554103716,0.4168051948051948,0.4228336244772643,0.4248271578265096,0.4267696978059886,0.4285471922185149,0.4292424110637557,0.4311408475889611,0.4324814433464984,0.433077253423677,0.4350106377715105,0.4362868763836688,0.4373866024754342,0.437726723095526,0.4383230904302019,0.4408018419551763,0.4418903967304175,0.4434397938845948,0.4444678387198652,0.4449981277184088,0.4477939074362314,0.4496484624671543,0.4515206445115811,0.4534883720930232,0.4557366397747577,0.45619471883272,0.4584246789852803,0.4588485316846986,0.4613131559677813,0.460824417872876,0.4556460029221457,0.4541323487645555,0.4589641434262948,0.0,2.846776742709056,78.36209734385673,278.0288688007224,431.48788758187726,NC_public_baseline,20 +100000,95853,44982,418.0985467330183,9297,95.48996901505431,7314,75.66794988158952,2989,30.77629286511638,77.44506122741345,79.72124302485551,63.40474875222951,65.0835182000673,77.07853613837565,79.35288629852506,63.271285814758606,64.95215797799686,0.3665250890377933,368.3567263304468,0.1334629374709024,131.36022207044107,45.16886,31.396814810154517,47123.053008252224,32755.171784038597,154.3231,80.87417807875326,160348.1685497585,83730.7473698137,239.427,112.33147039996936,245533.2123146902,113924.54571124524,5284.41757,2356.7504913752086,5471539.993531762,2417863.570172252,1780.08866,769.6442198838145,1840671.330057484,786899.3543127556,2953.76488,1220.8093845259398,3044166.066789772,1242962.2125770824,0.43476,100000,0,205313,2141.956954920556,0,0.0,0,0.0,12013,124.64920242454592,0,0.0,22840,234.07718068292075,2327783,0,83808,0,0,6028,0,0,34,0.3442771744233358,0,0.0,0,0.0,0,0.0,0.09297,0.2138421197902291,0.3215015596428955,0.02989,0.3136354358032251,0.6863645641967748,25.641290097553988,4.652098985926962,0.3326497128794093,0.1931911402789171,0.2385835384194695,0.2355756084222039,11.03672001154696,5.449327425900234,31.943298329676008,15677.249846579036,82.5255302572378,16.356851691440905,27.724220931849263,19.23795948554328,19.206498148404364,0.5358217117856167,0.748761500353857,0.6987258528565556,0.559489262913523,0.1128939828080229,0.6901330376940134,0.8888888888888888,0.8582554517133957,0.7113924050632912,0.1274787535410765,0.4852994555353902,0.6906906906906907,0.6415410385259631,0.5143072289156626,0.1091954022988505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027227271807121,0.0053789037571288,0.0079596037435486,0.0104746051723437,0.012945312658768,0.0155049801100812,0.0181292267579239,0.0206797393618648,0.0232415652315987,0.0256549213685351,0.0283028528128775,0.0307887962421669,0.0334007785298316,0.0358994404213298,0.0382138699141759,0.0408340214698596,0.0433528103831635,0.0457602354330953,0.0479018292809534,0.0502575308256594,0.0677163712200208,0.0841952401847092,0.1002230203021768,0.1147885033107023,0.1294215432527407,0.1467955754454108,0.1631987462541165,0.1784701044511268,0.1936825491617967,0.2073977352997838,0.2252042132416165,0.2415219457404527,0.2562568540375031,0.2696856197516843,0.2827180839375961,0.296433195737099,0.309242947931765,0.3209973694268948,0.3327926497277677,0.3441579260752072,0.3543754484227093,0.3645045762037405,0.3735078162008526,0.3818894335055067,0.3892318911035488,0.3971702069918338,0.4047801267172699,0.4114270406796525,0.4183759628999363,0.4250052943667937,0.4273653212298049,0.4292773146358968,0.4309967373342184,0.4333883483900857,0.4351562267298126,0.4354224854976827,0.4368981327241286,0.4391800743592274,0.4402420834262006,0.4414209451470746,0.442736009044658,0.4448426921545201,0.446441393875396,0.4483139482463258,0.4499223602484472,0.4509164540984037,0.4530715497168482,0.4552667491827731,0.4570750876199242,0.4547868061142397,0.4564016891735115,0.4585005967234458,0.4612562749388595,0.4629019607843137,0.4657095741585023,0.4679911699779249,0.4663918833227647,0.4654141759180188,0.4663974617825209,0.4587900933820544,0.0,2.496213366314304,80.19769665635168,272.9314349448577,425.4681391584756,NC_public_baseline,21 +100000,95666,44880,418.3408943616332,9415,96.80555265193486,7284,75.366378859783,2996,30.75282754583656,77.29747507811412,79.70027086158686,63.28577397120039,65.06538568044115,76.9319277290019,79.33594933754087,63.15002662302651,64.93374329952687,0.3655473491122194,364.3215240459909,0.1357473481738793,131.64238091428615,45.82006,31.838555497495992,47895.8668701524,33280.95195523592,152.98218,79.9064507163426,159095.8020613384,82710.0807554973,240.16234,111.9842508805642,246637.3528735392,113585.67102990304,5268.90839,2359.8950227381315,5452983.013818912,2412422.6008330886,1828.29016,793.6736752670392,1891667.4053477724,810266.8984576713,2954.11566,1236.353093977508,3035548.428908912,1248075.3491047951,0.43251,100000,0,208273,2177.0848577342003,0,0.0,0,0.0,11927,123.85800597913575,0,0.0,22803,233.90755336274125,2318197,0,83419,0,0,6033,0,0,35,0.365856208057199,0,0.0,0,0.0,0,0.0,0.09415,0.2176828281427019,0.3182156133828996,0.02996,0.3120595933158848,0.6879404066841152,25.763929821125604,4.614473895095375,0.3377265238879736,0.1926139483800109,0.2376441515650741,0.2320153761669412,11.155183675229749,5.601090305102479,32.04812326438872,15591.409712182369,82.18534807297928,16.109447916678054,27.955560211965963,18.96651824052584,19.153821703809424,0.5418725974739155,0.7562366357804704,0.6926829268292682,0.5751479289940828,0.121317157712305,0.6664749856239218,0.9066666666666666,0.8420138888888888,0.6898263027295285,0.1454545454545454,0.502795311091073,0.7013618677042801,0.6470276008492569,0.5392385392385393,0.1144130757800891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025234099477076,0.005213722029497,0.0081019341083303,0.010730616807235,0.0133768717447916,0.0159200635580272,0.0184814981028925,0.0208022711954412,0.0234615502623316,0.0260622011039313,0.028463582000759,0.0310965461979412,0.0333635110388675,0.0357050852697202,0.0383257273834844,0.0407956390868562,0.043458883522315,0.0453861090055759,0.0476492680947575,0.0497748874437218,0.0669619539101184,0.0829119688451995,0.098462668555538,0.114185322336307,0.1279895346506451,0.1465061158843695,0.1630588260274118,0.1788335552596538,0.1933151505428098,0.2073735193358892,0.2242885806131475,0.2399757118383102,0.2545355488967584,0.2675647236775763,0.2809263854425144,0.2944375992096529,0.3074092713750489,0.3199860213962821,0.3313510563300207,0.3415714351278168,0.3518344526800524,0.3615519041084644,0.3707403891789274,0.3792784125075165,0.3873603590419044,0.3952403346368991,0.4027805711987128,0.4100327432722808,0.416185799325266,0.4224234057239951,0.4250172771250864,0.4268808114961961,0.429015632320995,0.4314630630105867,0.4325557050994467,0.4334859203773061,0.4342828028722913,0.435287126751729,0.4370303009505508,0.4377714757511577,0.4394073460474048,0.4411180420358377,0.4425271595823225,0.443728744848089,0.4453985349051569,0.4454179493251243,0.4480554995826017,0.450856398360291,0.4535181236673774,0.4555475098559819,0.4565690221666898,0.4573894282632146,0.4597347684028445,0.4603653816380245,0.4640735773136616,0.4664814591134195,0.4674713905000784,0.4642114024136496,0.4752755015541113,0.4777601270849881,0.0,2.968977553372942,76.80196141177278,277.56716025592266,426.9615987925817,NC_public_baseline,22 +100000,95817,44746,414.6758925869105,9284,95.45279021468008,7162,74.03696630034337,2937,30.234718265026043,77.32864418348662,79.63984041463533,63.32870225298407,65.03863399504964,76.96979826333937,79.27956843374605,63.19893646637637,64.91172107535161,0.358845920147246,360.27198088928003,0.1297657866076917,126.91291969802876,44.24926,30.809457190725013,46181.01172025841,32154.47904935973,151.65442,80.11314639245802,157571.8087604496,82907.59510901118,240.28888,112.54368915667102,246439.1078827348,114139.92457783034,5134.97023,2297.1040221936387,5313056.430487284,2351334.3578940723,1717.26083,748.7033063136719,1778102.3617938363,767261.3589589224,2881.78578,1190.1755790435816,2968687.8946324764,1207291.4613259337,0.43189,100000,0,201133,2099.1368963753825,0,0.0,0,0.0,11832,122.75483473705084,0,0.0,22850,234.1233810284188,2325253,0,83745,0,0,5780,0,0,36,0.375716209023451,0,0.0,0,0.0,0,0.0,0.09284,0.2149621431382991,0.3163507109004739,0.02937,0.3064582055998365,0.6935417944001635,25.959619760612487,4.615842725300577,0.3398492041329237,0.1953364981848645,0.2303825746998045,0.2344317229824071,11.270215435029106,5.671362066270282,31.606458546030844,15667.63622843235,81.57407233169695,16.529375757426106,27.80416833863562,18.92146821041452,18.31906002522071,0.5545936889137113,0.773409578270193,0.705012325390304,0.5801072066706373,0.1212121212121212,0.7280898876404495,0.916289592760181,0.8614173228346457,0.7349081364829396,0.1987577639751552,0.4972129319955407,0.7074190177638453,0.6498054474708171,0.5346687211093991,0.1024096385542168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028966425279789,0.0055447431374934,0.0083599655049967,0.0110210466439135,0.0137177140532845,0.0166361229892079,0.0194271735806747,0.0220845622378478,0.0248635722607149,0.0274645437242903,0.0302465214451115,0.0324904560568121,0.034694674531889,0.0371731521515338,0.0395466826159589,0.0416739842353743,0.0441572150012418,0.0466157929661579,0.048860543864387,0.0512505594471101,0.0689036537919956,0.0846158671741039,0.1005932665297052,0.1159100462379151,0.1305323959398353,0.1486845026056256,0.1648199005397151,0.180577131791194,0.195371487766588,0.2095501522363737,0.2255257745280682,0.241455418871109,0.2565624932037146,0.2700291870265306,0.2830672402979655,0.2960537977488257,0.3089380046683568,0.3208127315935891,0.3320951050222085,0.342466382119418,0.3525760757334942,0.3624724217246397,0.3713138321887698,0.3794840959653658,0.3876021881358203,0.3950054369315935,0.4028930549102826,0.4101562001098381,0.4172595434740196,0.4234860341123106,0.4256793331168128,0.4275627180594783,0.4292912804644362,0.4313619732066065,0.4333463174926589,0.4351917668510677,0.4358429354513928,0.4378136645962733,0.4385342586055482,0.4394860906179148,0.4396662630543363,0.4413373253493014,0.4427900681020261,0.4427900040670613,0.4440522843998734,0.4451327667910941,0.4463063011007425,0.4480089200382287,0.4481252662974009,0.4482758620689655,0.4497410763824672,0.4508955143119961,0.4543699317801519,0.4584048696737943,0.4623904459212173,0.4648145881777016,0.4688673341677096,0.4642037152995199,0.4680610514414923,0.4776536312849162,0.0,2.7663008518585066,79.10600331114544,278.7053098953669,407.3024823760946,NC_public_baseline,23 +100000,95733,44504,414.057848390837,9310,95.76635016138636,7223,74.71822673477276,2984,30.68952189944951,77.35098256499538,79.6969963583901,63.33757887846742,65.06982786433272,76.98474538162039,79.32852596062573,63.204432733897306,64.93882376276672,0.3662371833749915,368.4703977643693,0.1331461445701123,131.00410156600617,45.26478,31.51878373904325,47282.316442606,32923.63525539078,155.69388,81.65209014220277,161899.4599563369,84557.7114795913,237.53328,110.47939049874584,243285.30391818917,111679.3523825479,5253.44655,2342.3649001892486,5438254.844202103,2397636.7052559443,1753.5687,759.0633468068796,1810385.8439618524,771662.8023362805,2950.9781,1224.5223212757403,3038029.8747558314,1242538.1289655815,0.42934,100000,0,205749,2149.196201936636,0,0.0,0,0.0,12102,125.66199743035315,0,0.0,22630,231.58158628686036,2323029,0,83531,0,0,6072,0,0,32,0.3238172834863631,0,0.0,1,0.0104457188221407,0,0.0,0.0931,0.216844458936973,0.320515574650913,0.02984,0.3132860040567951,0.6867139959432048,25.777177325542574,4.656554038318451,0.3360099681572753,0.1874567354284923,0.2404817942683095,0.2360515021459227,10.97672694869469,5.375399305493128,31.87309767366951,15547.616080089652,81.5752745402112,15.750447413007189,27.505859102568245,19.15995818594418,19.15900983869158,0.5431261248788593,0.759970457902511,0.6967449526163988,0.5947214076246334,0.1088082901554404,0.6990122022080186,0.9298245614035088,0.8559322033898306,0.7480106100795756,0.1267605633802817,0.4943656852053799,0.6890052356020943,0.6456178551986935,0.5512048192771084,0.1041968162083936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029568721962877,0.0055138301861931,0.0082087810619666,0.0106240351019744,0.0132077965653628,0.0158605735460292,0.0186644376713794,0.0214016717185634,0.0236919837692535,0.0260774340132434,0.0284970375381839,0.0309690002052966,0.0333216811975653,0.0357948284916949,0.0382214886263991,0.0406412469379528,0.0428371731814651,0.0451498422712933,0.0472541639807864,0.0498489425981873,0.0669172147405783,0.0835878980625183,0.0994516267706793,0.1146470699552135,0.1284721856189582,0.1465675807099515,0.1635185440507376,0.178395061728395,0.1935235734660954,0.2072010213605982,0.2237521143755993,0.2401628075644897,0.2554802493445459,0.269144476912806,0.2811746440722756,0.294310709969286,0.3076012022480698,0.3192413754291181,0.3305133824648263,0.3410344946256295,0.3509192645883293,0.3600623220833382,0.3693685157989483,0.3780882705684816,0.3867403986387943,0.3945554747315341,0.4015906813627254,0.4085662598415165,0.4154670889526356,0.4215808288097444,0.4234524163669308,0.4257340838992545,0.4281099919248587,0.4297684161526824,0.4314959923435817,0.4320231909086703,0.4324302763418214,0.4334437634586715,0.4346071601020901,0.4357537874011493,0.4361778618732261,0.4375062344139651,0.4391137658596513,0.4410799556430624,0.442282434207326,0.4411134337046543,0.4430339482968018,0.4430254145061135,0.4456882107589747,0.4473843667945869,0.4472303477735989,0.4507752358234848,0.4505558054359699,0.4499107627842011,0.4488603715763263,0.4484511132623427,0.4460613729832332,0.4511434511434511,0.4551880124399208,0.4492753623188406,0.0,2.8057077205112364,76.11621005914807,274.64133989107773,426.2043900542242,NC_public_baseline,24 +100000,95838,45092,418.9674241949958,9438,97.23700411110416,7339,75.96151839562596,2943,30.29069888770634,77.51248185563044,79.79728509776352,63.42745123530996,65.11028292839926,77.15465662537362,79.43710475060224,63.2966697248254,64.98130663019246,0.3578252302568216,360.18034716127545,0.1307815104845602,128.97629820679413,45.72524,31.81713028693436,47710.97059621444,33198.86713718395,156.4438,82.04652382348901,162606.27308583236,84978.11288162212,239.50843,111.39162048047878,245919.47870364573,113226.0903123534,5353.24885,2380.818797382831,5545208.101170726,2443692.989610416,1813.7833,784.2725575548974,1880467.1111667608,806252.6192943035,2923.62638,1216.3435585393738,3012796.051670528,1239134.1877316805,0.43439,100000,0,207842,2168.6804816461117,0,0.0,0,0.0,12176,126.400801352282,0,0.0,22783,233.70688036060852,2327999,0,83600,0,0,5931,0,0,32,0.3338967841565976,0,0.0,0,0.0,0,0.0,0.09438,0.2172701949860724,0.3118245390972664,0.02943,0.3133608123052177,0.6866391876947824,25.920727903253677,4.64829271976302,0.3302902302766044,0.1898078757323886,0.2462188309033928,0.2336830630876141,11.080941748092586,5.500575717973989,31.377824475186657,15627.11324104607,82.27652937865709,15.967938773663043,27.195154337009463,19.119211067467216,19.994225200517374,0.5398555661534269,0.7702799712849964,0.6951320132013201,0.5801749271137027,0.115661317100166,0.6859122401847575,0.9448818897637796,0.854419410745234,0.7284595300261096,0.1432225063938619,0.4947387194578206,0.7045454545454546,0.6453708716838116,0.5375375375375375,0.1080508474576271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027624309392265,0.0053675778045594,0.0081594177925987,0.0107254112084098,0.0134500904122391,0.0161905439900741,0.0187332647804441,0.0213638171379623,0.0237001184495364,0.0259336523908864,0.02858079116873,0.0309208569641153,0.0335282210417073,0.0359186529990531,0.0385158609882576,0.0409333168071393,0.0434287724671723,0.0457415375045357,0.0481260647359454,0.0506563674408436,0.0674119806440847,0.0844416562107904,0.1004694442115852,0.1155865980464237,0.1295841976140587,0.1460197086999229,0.1621289358500164,0.178079278666213,0.1931363447194032,0.2071576196952336,0.224114939562094,0.2396430847673677,0.2552258092538901,0.2690921403294158,0.2827787789547712,0.2965384487736882,0.308516211004982,0.3208437756374956,0.3320451944107614,0.3428760965790166,0.3529567968226845,0.3625804645955779,0.3716012797959882,0.379967956382419,0.3877236797439503,0.3954933668069605,0.4028215124706353,0.4096178999098401,0.4164673639031453,0.4233954315054967,0.4258786200220495,0.4278842850271421,0.430506519629218,0.4326492267668738,0.4349597121874349,0.4354598609597765,0.4359227004004831,0.4377863476053924,0.4385763293310463,0.4408988118740802,0.4409390910805205,0.4417072928066859,0.4424679791521597,0.443461824073449,0.4441171499625757,0.4451889854465501,0.4476526023316433,0.4498075588365196,0.4527597859757815,0.452087380565357,0.4534054250533872,0.4547238873269322,0.4550104186398939,0.4557427258805513,0.4546827794561933,0.4566069096521429,0.4582375478927203,0.4562286174280539,0.4519337016574585,0.4480395888846593,0.0,2.339596118605298,76.99976165431899,278.9174387045391,428.4921503073371,NC_public_baseline,25 +100000,95726,44568,414.5791112132545,9459,97.28809309905355,7394,76.53093203518375,3060,31.464805799887177,77.31288813594676,79.6730577176959,63.318020272784125,65.06280159677529,76.9359726110675,79.29364078073756,63.1804856473117,64.92752664141763,0.3769155248792657,379.4169369583358,0.1375346254724263,135.27495535765863,44.93302,31.25232859122729,46939.20147086476,32647.69090030639,154.23338,80.52480482292523,160379.7714309592,83380.23611445713,238.2236,111.03793356636162,244934.803501661,112845.35005867424,5410.48385,2415.642561508774,5605016.171155172,2476508.536594964,1791.80443,779.3861231567209,1853323.7260514384,795722.3715271859,3031.49498,1265.914437208423,3120600.7772183106,1284067.335447946,0.43084,100000,0,204241,2133.6000668574893,0,0.0,0,0.0,12048,125.12796941269876,0,0.0,22673,232.84165221569896,2324796,0,83679,0,0,5864,0,0,27,0.2716085494014165,0,0.0,0,0.0,0,0.0,0.09459,0.2195478599944295,0.3235014272121789,0.0306,0.3191254638451509,0.680874536154849,25.71052116185731,4.6949567000797385,0.3335136597241006,0.186096835271842,0.248985664051934,0.2314038409521233,11.098030456197346,5.469007692914623,33.081858137325604,15590.057481451016,83.71134180053562,15.9253574038439,27.97015671382297,19.258503655974824,20.557324026893923,0.5340816878550175,0.7609011627906976,0.7023519870235199,0.5645821157218002,0.1108093427485062,0.6960556844547564,0.9418282548476454,0.8932203389830509,0.6948717948717948,0.1618798955613577,0.4848324514991182,0.696551724137931,0.6423240938166311,0.526116578349735,0.0973936899862825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029471935830176,0.0056558448798386,0.0081372578861392,0.0109088692967131,0.0134355834460593,0.0158553971486761,0.0188028958906903,0.0212657349082704,0.024066084609565,0.026766058098934,0.0291089921049933,0.0316273720529039,0.0342586212216268,0.0364327431167145,0.0388539828943431,0.0409082922493359,0.0432535984260122,0.0454177561947453,0.0477344343105546,0.0499937481765514,0.0670307067458784,0.0833961158546793,0.0980420944450853,0.1133460207976279,0.1274132495439736,0.146139200338481,0.1623884461517238,0.1780429645085056,0.192684464100674,0.2067604667124228,0.2234079210906036,0.2399727414330218,0.2547469386867346,0.2683543195965386,0.2820052828527404,0.2954955953238407,0.3077154979901741,0.3199824389584951,0.3311021966657954,0.3416329292489076,0.3514543979603662,0.3620631110590714,0.3713260120126523,0.3800144040331292,0.3884365910943984,0.3959071766434896,0.4034015313166813,0.4099724405430234,0.4160060302029995,0.4227780282736121,0.4247955370199859,0.4269821502698215,0.4286139751244486,0.430399650578729,0.4312303311853739,0.4325222606975019,0.433070362132147,0.4347421893157143,0.4361150482248418,0.4384453933560107,0.4403554745357183,0.4421063189568706,0.4427330089868066,0.4439605307927867,0.4449441497812431,0.44604736269856,0.4469690374626389,0.4497206703910614,0.4507062450706245,0.4498780487804878,0.44751329663152,0.4503009598177973,0.450080051232789,0.4516078797788678,0.4528356481481481,0.4550759878419453,0.4596263457884737,0.4539199332777314,0.4592422502870264,0.4662721893491124,0.0,2.7374732158929533,76.29218775418113,294.2446285624784,428.656724818061,NC_public_baseline,26 +100000,95773,45082,418.2076368078686,9477,97.741534670523,7380,76.38896139830642,2988,30.718469714846567,77.37208356525132,79.70945045381241,63.35007434272507,65.07892681065907,77.0114193127638,79.34955335901826,63.21849758890233,64.95122161618029,0.3606642524875099,359.89709479414955,0.1315767538227419,127.7051944787786,45.25378,31.506097763375,47248.55648251595,32894.70879909299,156.53221,82.03328227324727,162767.37702692824,84985.50093460355,240.70736,111.91626058633442,247679.09536090548,114016.44312528297,5359.60128,2378.3524480506267,5545700.541906383,2433285.2989282883,1770.56845,757.5800175006904,1828912.658056028,771753.5949102532,2952.57208,1219.5020387309514,3036226.828020424,1234084.1783351928,0.43474,100000,0,205699,2147.66165829618,0,0.0,0,0.0,12150,126.15246468211292,0,0.0,22947,235.9224416067159,2325207,0,83677,0,0,6148,0,0,31,0.3236820398233322,0,0.0,0,0.0,0,0.0,0.09477,0.2179923632515986,0.315289648622982,0.02988,0.3060387922415516,0.6939612077584483,25.93481492265245,4.669928386116489,0.3355013550135501,0.1902439024390244,0.2371273712737127,0.2371273712737127,11.072518965174227,5.454261316914264,31.84169149292693,15693.62259729344,82.90271419963335,16.11232570424946,27.973140466861764,19.4066003361486,19.410647692373523,0.5413279132791328,0.7621082621082621,0.7015347334410339,0.5714285714285714,0.1074285714285714,0.7005134055904164,0.9072164948453608,0.8610223642172524,0.7558441558441559,0.1299435028248587,0.491736271547894,0.7066929133858267,0.6475675675675676,0.5194139194139195,0.1017191977077364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030487187278436,0.0059506913750456,0.0086460595482129,0.0110624638108105,0.013525882233296,0.0162791171200521,0.0190196618047273,0.0216033634712329,0.0243929856115107,0.0268754477535564,0.0291145726583316,0.031640633017919,0.0340652111344105,0.0364196132539796,0.0388050158808728,0.0414643218780351,0.0440138293687762,0.0463251993736194,0.0487110483058156,0.0514326170248209,0.0689133338899557,0.0853765690376569,0.1008670308126186,0.1161937788986969,0.1303340006321778,0.1482651508748204,0.1650345500021196,0.1808389600723058,0.1957148039864273,0.2099224374357216,0.2264477746818284,0.2425791806291211,0.2569124423963134,0.2706677308958112,0.2836068819853912,0.2969449244538969,0.3098149925238233,0.3221246302814921,0.3333295528008075,0.3436336346658417,0.3536696876048937,0.363171445289643,0.3719906256657908,0.3805538904208128,0.3893115853954981,0.3977355418789082,0.4048458094533415,0.4124550806636593,0.4194196920762156,0.4248856092464757,0.4273206793745868,0.4295798921810586,0.431508787818753,0.4333764177933979,0.4356382422767383,0.4356206986805438,0.4366102990350626,0.438433328928241,0.4388478047266897,0.4403060306030603,0.4416236943012032,0.4424392286677169,0.4426884996191927,0.4452350297034176,0.444493102693234,0.4440655564366904,0.4432879095389968,0.4441669868100909,0.4463081260483209,0.4465940826486421,0.4461852229535552,0.4455681142177275,0.446291067761807,0.4472803672865925,0.4472972972972973,0.4469090909090909,0.4565760699781318,0.4539727697622434,0.4515859766277129,0.455388180764774,0.0,2.567064787006114,77.90256252045306,273.5820100015837,439.8495003724779,NC_public_baseline,27 +100000,95631,45079,419.1841557653899,9214,95.01103198753542,7149,74.01365665945143,2951,30.377178948249,77.25911226955019,79.65618605487705,63.27736057920528,65.04591508551832,76.89517507534882,79.29070823946091,63.146047397876025,64.91727097858717,0.3639371942013696,365.477815416142,0.1313131813292543,128.64410693114792,44.15378,30.75083179450766,46170.99057836894,32155.7149820745,153.13693,80.30100611964342,159368.58340914556,83218.12276136223,233.84796,108.80038021347346,240138.54294109653,110286.45555541558,5229.69618,2315.279901385461,5420300.885696061,2373626.810951292,1755.0831,752.942622985086,1818962.3657600568,771295.9088907156,2914.10122,1202.5554466675203,3003470.673735504,1219710.4655199784,0.43456,100000,0,200699,2098.681389925861,0,0.0,0,0.0,11892,123.55826039673327,0,0.0,22208,227.82361368175592,2323291,0,83627,0,0,5941,0,0,31,0.3241626669176313,0,0.0,1,0.0104568602231493,0,0.0,0.09214,0.212030559646539,0.3202734968526156,0.02951,0.3117960270325619,0.6882039729674381,26.043622777173407,4.679476865002963,0.3296964610435026,0.1863197650020982,0.2435305637152049,0.2404532102391943,10.912663980667414,5.335950697726288,31.61263114071821,15756.422803322708,80.92439071549795,15.647891057974023,26.814931753025878,19.30532398084153,19.156243923656515,0.5364386627500349,0.7612612612612613,0.6894357233771744,0.58347876672484,0.1108558299827685,0.7133251833740831,0.9400544959128064,0.8558718861209964,0.7441860465116279,0.165625,0.4839470342826047,0.6932642487046632,0.6373259052924791,0.5367867867867868,0.0985221674876847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030084174913647,0.0056986990336547,0.0082313298012707,0.0109636644448057,0.0137138206419451,0.0161530157048866,0.0185880049758345,0.0209785926477944,0.0232669876611361,0.0261735623477388,0.0287173072782636,0.0313789916829243,0.0340039496420636,0.036797428712708,0.0392772004416879,0.0418338227387402,0.0442957330653766,0.0468959217778515,0.0489286457249844,0.0511347643422328,0.0684995924509373,0.085684660340602,0.1006836152852597,0.1156964744534771,0.1299765560647982,0.1490468121160771,0.1652609887191689,0.1817319679904525,0.1965223342708344,0.2108852304090552,0.2279303090781595,0.2434432980752557,0.2584486327486654,0.2723636483184114,0.2852525564515239,0.2981947453202244,0.3108867447222906,0.3228915118824618,0.3345963043874021,0.3456228085302064,0.3554376349829312,0.3649692444945297,0.3743452699091395,0.3828219972798286,0.3909986450360713,0.398470088749706,0.4061175997284419,0.4140253565768621,0.4204405011253203,0.427081674892533,0.4293299381002045,0.4308186996715222,0.4323767580622247,0.4344607027074388,0.4365342743449208,0.4368694683418951,0.4379549199340916,0.4397019532352014,0.4406351622500519,0.4417537138106769,0.4432542090095556,0.4455471297945137,0.446097995923913,0.4468075488755791,0.4483295617684989,0.4499234868872355,0.449281219329138,0.4501486430329572,0.4521365993205793,0.4517867271695973,0.4528749534797172,0.4536786217358327,0.4540011588231507,0.4554132712456344,0.4511694510739857,0.4519616178792663,0.4549161047514505,0.4518410651133763,0.4519480519480519,0.4527383367139959,0.0,2.762479951574436,72.56896642585352,286.5466421893726,416.1533178070012,NC_public_baseline,28 +100000,95608,44532,415.05940925445566,9205,94.81424148606813,7135,73.947786796084,2902,29.87197724039829,77.28554750318864,79.71771801059191,63.27381344368566,65.07205572743737,76.92790931406446,79.35926854859329,63.14335146798745,64.94455965825938,0.3576381891241738,358.4494619986174,0.1304619756982106,127.49606917799385,44.71654,31.095220362396947,46770.70956405322,32523.659487069017,152.14331,79.39598390556591,158476.8429420132,82387.6808484289,229.40302,106.95087738949212,236095.6091540457,108810.27071194327,5200.7144,2308.3958872177623,5391458.110199983,2366273.4888479654,1731.51,747.2165401730531,1793063.5093297632,763553.9914788025,2862.50436,1184.6032664050551,2948759.183331939,1201891.1502527278,0.4306,100000,0,203257,2125.9413438206007,0,0.0,0,0.0,11841,123.15914986193624,0,0.0,21842,224.58371684377877,2325009,0,83546,0,0,5896,0,0,28,0.2928625219646891,0,0.0,0,0.0,0,0.0,0.09205,0.2137714816535067,0.315263443780554,0.02902,0.3122688039457459,0.687731196054254,26.11169874286876,4.597118025757401,0.3376313945339874,0.1868255080588647,0.2406447091800981,0.2348983882270497,10.860284143332418,5.334997437682652,30.951061202018767,15557.03504855849,80.04447275482251,15.264852933550884,27.115114650326653,18.733645761519035,18.93085940942595,0.5274001401541696,0.7254313578394599,0.6841012868410129,0.5710023866348448,0.1112405358182877,0.6790123456790124,0.8967551622418879,0.8522522522522522,0.7286821705426356,0.1209439528023598,0.4828649138712602,0.6670020120724346,0.633764832793959,0.5236617532971296,0.1088534107402031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025537089582488,0.0050208441103977,0.0078686593835032,0.0104894038725415,0.0130427705204899,0.0155344355142662,0.0182391284389631,0.021054674730304,0.0236777776641335,0.0263818194852677,0.0290002256826901,0.0313190370012638,0.0336483036890645,0.0363150950397888,0.038606889145878,0.0409706347810796,0.0431412375514264,0.0454781488866733,0.0473717081294889,0.0496735025973755,0.0669663391177085,0.0840686634109534,0.0998854548702697,0.1146231732886599,0.1286512640108177,0.1465915349743676,0.1630425540959911,0.1781049758510763,0.1933712891419276,0.2073452458981164,0.2238253512615198,0.2397800958556526,0.2541772483023968,0.2681330966002498,0.2806034672901319,0.2941457294800768,0.3071486877858412,0.3187511979524878,0.3297742907499005,0.3410535251336408,0.3514421795510644,0.3614428181360083,0.3702613525767322,0.3785541676184522,0.3869972814492435,0.3944423145892334,0.4019307539732356,0.408544061302682,0.4154606332488135,0.4210533287413569,0.423372657126255,0.4251391171069165,0.4275602366997933,0.429495096258627,0.4311326251624759,0.4321593310809768,0.4331258975586405,0.4337985728240534,0.4353186287170481,0.4368686868686868,0.4378392691645704,0.4395987875887373,0.4402321247034903,0.4407231638418079,0.442437648889105,0.4442806758961941,0.4453185563754342,0.4468949322501824,0.4496359652223086,0.4504894880436527,0.450247261635162,0.4519230769230769,0.4526957637997432,0.4546228239845261,0.4577633215344877,0.4557175563320882,0.4562334217506631,0.4588235294117647,0.468645948945616,0.4688940092165898,0.0,2.6826995858046283,71.55350196008618,272.708039823015,427.9929617753149,NC_public_baseline,29 +100000,95786,44878,416.1777295220596,9274,95.21224396049529,7209,74.44720522832147,2910,29.879105506023844,77.35864855579545,79.66414535615694,63.35358995694328,65.05456104468524,76.99846565469899,79.30381612426967,63.22142868070333,64.92585276195007,0.360182901096465,360.3292318872633,0.1321612762399411,128.70828273517532,45.14664,31.410473507220257,47132.81690434928,32792.3428342558,154.17582,81.04114355453822,160116.64543879064,83776.71703382643,236.52854,110.66034960606792,241795.0013571921,111566.33115923296,5233.79088,2332.6849520279343,5408241.016432464,2380466.703113323,1752.96526,755.4041458168099,1807971.4050069947,766672.5556961828,2871.9642,1193.5957288114057,2950314.4927233625,1205546.917905348,0.43381,100000,0,205212,2142.400768379513,0,0.0,0,0.0,11970,124.08911531956652,0,0.0,22536,230.17977575010963,2323713,0,83628,0,0,5922,0,0,28,0.2818783538304136,0,0.0,0,0.0,0,0.0,0.09274,0.2137802263663816,0.3137804615052836,0.0291,0.316908607646698,0.683091392353302,25.784807933428333,4.737988114993741,0.3304203079483978,0.1899015119988902,0.2363712026633375,0.2433069773893744,11.200238149781772,5.4761693880307485,31.254023894618307,15616.729163980794,81.44792299218567,15.87946053121966,27.16366117597271,19.6061613371416,18.798639947851683,0.5390484117075878,0.7494521548575602,0.7044500419815282,0.5632839224629419,0.1138497652582159,0.7035755478662054,0.9139240506329114,0.8576214405360134,0.7432098765432099,0.1364985163204747,0.4869406392694064,0.6827515400410678,0.6532212885154062,0.5092661230541141,0.1082662765179224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028844402161812,0.005661963556807,0.0082626195038373,0.0111013019168518,0.0135025298193566,0.0160826000712069,0.0184879599071018,0.0212071445329633,0.0239360071920397,0.0265042247181816,0.0289866947998074,0.0316535546141774,0.0342018205354757,0.0367473784949113,0.039272494819,0.0416834495223341,0.0440977144098749,0.0464935468822889,0.0489841705097843,0.0512820512820512,0.0676890975482524,0.0837698524722143,0.0998113207547169,0.1147851129352658,0.1290512979963531,0.1471996448690983,0.1634044448214437,0.1786177841138796,0.1936785904965296,0.2078749276201505,0.2243711233631977,0.2397152069943084,0.2550226795601144,0.269265698685895,0.282533284878919,0.2962527716186253,0.308657689645162,0.3200598768697453,0.3303814713896458,0.3414044138721697,0.3516493699036323,0.3609509748781402,0.3702013136366869,0.378970374551175,0.386949850208247,0.3944923525487386,0.4024374952980414,0.4087513068312211,0.4159730968487476,0.4228457974851092,0.425054719377415,0.4271721260516972,0.4287269693584649,0.4308315311261738,0.4328868580985232,0.4342901115813775,0.4355681600917723,0.4369208366428382,0.4368987276300817,0.4384197316866186,0.4405903080362217,0.4413951629022586,0.4436497155955514,0.4442861342922405,0.4449556918882072,0.4469346175217633,0.4486633649028296,0.4491063993338031,0.4510463244500089,0.4533192919923853,0.453837597330367,0.4553145336225596,0.4544111032577266,0.4564775746210345,0.4567570156115315,0.4587189039778873,0.4583073079325421,0.4575530586766542,0.4705212190259185,0.4744877460827642,0.0,3.072102772991437,76.50891778764105,276.4586211563373,418.7933769970121,NC_public_baseline,30 +100000,95838,44903,416.6718838039191,9419,96.8300674054133,7367,76.03455831716022,3028,31.041966652058683,77.41454581429173,79.70661353867925,63.37712166936033,65.06920739804269,77.04795925276356,79.33984485339795,63.24326806752009,64.93944161528971,0.366586561528166,366.7686852813006,0.1338536018402365,129.76578275298323,45.52922,31.67842258568291,47506.43794736952,33054.13571410391,155.4677,81.00843450761778,161417.35011164672,83724.7614042783,235.13438,109.4574463447664,240532.06452555355,110389.88085255926,5373.62397,2371.0780704486738,5550350.132515286,2417744.4929278325,1785.14704,760.773174860109,1839946.4513032408,771160.0827717588,2992.8004,1234.6257391843992,3071016.3818109725,1242222.8486386314,0.43275,100000,0,206951,2159.383543062251,0,0.0,0,0.0,12079,125.19042550971432,0,0.0,22373,228.6775600492498,2325353,0,83660,0,0,6050,0,0,36,0.3651996076712786,0,0.0,0,0.0,0,0.0,0.09419,0.2176545349508954,0.3214778638921329,0.03028,0.3142569269521411,0.685743073047859,26.024370957093016,4.626835801615637,0.3242839690511742,0.1939731233880819,0.2427039500475091,0.2390389575132347,10.694844493402002,5.193235808250716,32.21320852858675,15686.125876693177,82.35918328253258,16.41126999077734,26.677790945265983,19.599351395182488,19.670770951306768,0.5264015202931994,0.7466759972008398,0.6814566764336543,0.5650198750709824,0.105145413870246,0.6851745850028621,0.8983451536643026,0.8687943262411347,0.7002518891687658,0.1349862258953168,0.4770462633451957,0.6829025844930418,0.6235616438356164,0.5256598240469208,0.0975438596491228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029559143594675,0.0056430778582645,0.008406258555827,0.011045012486549,0.0134261611952434,0.0160766796568951,0.0187958435207823,0.0213799012607613,0.0240563869451963,0.0265634269582472,0.0290089628681178,0.0314811205596643,0.0338775803783356,0.0362840967575913,0.0385912094936643,0.0410460864715238,0.0437337692570328,0.0462115637727871,0.0484599333520196,0.0508670279716642,0.068308603484771,0.0850621322491978,0.1007574884490869,0.1158353460044103,0.1295890641784443,0.1479122434536447,0.164830275034962,0.1804333035676319,0.1946563663718136,0.2086265437057506,0.2265714101267457,0.2415788050824547,0.256151104155799,0.269976938126414,0.2830599410704076,0.2963823946156571,0.3092900807639105,0.3212872177745794,0.3328945427310176,0.3432519449568615,0.3536132235996805,0.3626967870310763,0.3718586418437196,0.3805089931726281,0.3884169790196174,0.3963529063163613,0.4036775496381402,0.4104232034897069,0.4175765611189102,0.4242889880912956,0.4271569249888557,0.4293563037506384,0.431275534005287,0.4340591588934182,0.4358649096363066,0.4367778957246812,0.4382703287266019,0.4389084245455896,0.4403157025930256,0.4410301539124656,0.4438181064062441,0.4464669800047797,0.4479891969447609,0.4479401424321644,0.4489424221083562,0.4491601284819125,0.450046067027525,0.4505616551373992,0.451087729276269,0.449597099113618,0.4513706519235199,0.4520680741059888,0.4539607743250127,0.4543147208121827,0.4554379944714517,0.4550054210336104,0.4533792240300375,0.4583506872136609,0.4593679458239277,0.4642438452520516,0.0,3.2590269920494626,76.93726830428974,265.1018430519829,445.0272979437264,NC_public_baseline,31 +100000,95712,44835,415.4860414577065,9218,94.89928117686392,7139,74.0346038114343,3001,30.988799732530925,77.36002699221102,79.73252218283848,63.33690834044432,65.0887351584437,77.00048845688532,79.36848410742887,63.2058090870626,64.95851342244713,0.3595385353256972,364.03807540961,0.131099253381727,130.22173599657094,44.3916,30.90995327615899,46380.39117352056,32294.752252757226,152.33706,80.32760885117888,158606.69508525578,83371.14348376263,234.37461,109.57401112126298,241795.89811099967,111993.74956222984,5229.36729,2334.320065717032,5426864.865429622,2402116.428156377,1791.91032,778.2064231133251,1859615.1997659644,800496.2837609963,2960.44254,1223.5122623142947,3059651.5797392176,1249208.3927800271,0.43254,100000,0,201780,2108.199598796389,0,0.0,0,0.0,11854,123.2760782347041,0,0.0,22359,230.47266800401204,2328414,0,83670,0,0,5870,0,0,36,0.3761283851554663,0,0.0,0,0.0,0,0.0,0.09218,0.2131132380820271,0.3255586895205034,0.03001,0.2994251693697393,0.7005748306302607,25.855884486811934,4.756393109067705,0.3265163188121586,0.1952654433394032,0.2459728253256758,0.2322454125227623,11.328381758867836,5.60465541571901,31.92729901791053,15633.66822122729,80.50797647124044,16.278299661461194,26.34055688917636,18.554531649332606,19.334588271270267,0.5346687211093991,0.7517934002869441,0.6911196911196911,0.5675512665862484,0.1235763097949886,0.6986062717770035,0.9240506329113924,0.8707482993197279,0.7189189189189189,0.1626016260162601,0.4825549196972494,0.6836836836836837,0.6305220883534136,0.5240683229813664,0.1131939437635183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026334180753765,0.0052712141025251,0.0080675441177962,0.0106970885227249,0.0133650677407543,0.0159362144108182,0.0184811416921508,0.0212088428014452,0.023838487094301,0.0266487847826532,0.0294244294531362,0.0318056753316085,0.0339352556455925,0.0364407914387829,0.0389182942809091,0.0414172430549093,0.0440484823370972,0.0466023851287533,0.0492376177896116,0.0519098922624877,0.0697681704260651,0.0852433281004709,0.100464716187439,0.1155844429019162,0.1303531892461781,0.148583933272018,0.1645698525511827,0.1798154592765237,0.1944459279038718,0.2083503186079941,0.2248558961374777,0.239959306918906,0.2542643749388474,0.2683009501733054,0.2814439114553536,0.2955809675775103,0.3084126753803395,0.32101668598175,0.3322101202632176,0.3424583758264676,0.3525476306224969,0.361951561951562,0.3710601719197707,0.3791333956789679,0.3875354245472348,0.3957793409848204,0.4034561894132253,0.410749563466269,0.4175145348837209,0.4235466924267888,0.4259136661487536,0.4281766047122227,0.4302361803352967,0.4320840538851671,0.4341173306237111,0.4351368417810223,0.4351403832686064,0.4366390048339465,0.437939391855888,0.4392347076259768,0.4397394751746271,0.4418669536450237,0.4418815683957287,0.4421863734679164,0.4429593693147362,0.4425426585211712,0.4437038319482917,0.4448630355660558,0.4468168672117685,0.4460927367055772,0.4469076005961251,0.4449088145896656,0.447380234720708,0.4483723098438349,0.4497324159021407,0.4523723288663527,0.4529807541855735,0.4548864346738904,0.4497729852440408,0.4548335974643423,0.0,2.110189842610696,76.82769759949115,269.7968494328583,417.9252656339952,NC_public_baseline,32 +100000,95717,44869,417.3971185891744,9168,94.12121148803244,7190,74.16655348579667,2917,29.837959819049907,77.33346816806463,79.69511174163088,63.32120940122799,65.07030180013793,76.97391589501214,79.34005206192624,63.18902156046344,64.94396381998888,0.3595522730524862,355.05967970463814,0.1321878407645513,126.33798014904583,44.78298,31.19036823473858,46786.861268113294,32586.02780565477,152.84301,80.13769932812272,158776.17351149744,82818.42194018085,236.75243,111.1823846869326,240673.91372483468,111080.87068286908,5221.02929,2327.125762851981,5391184.115674331,2367896.791506112,1745.58247,754.4382942195764,1799818.788720917,764420.5761539744,2885.06382,1207.6435258996569,2955043.7644305606,1210939.345830804,0.43331,100000,0,203559,2126.675512186968,0,0.0,0,0.0,11883,123.16516397296196,0,0.0,22435,228.02636940146476,2327395,0,83591,0,0,5794,0,0,41,0.4074511319828244,0,0.0,0,0.0,0,0.0,0.09168,0.2115806235720385,0.3181719022687609,0.02917,0.3135453231468098,0.6864546768531902,25.963249169029787,4.599712758068878,0.3322670375521557,0.1951321279554937,0.23894297635605,0.2336578581363004,10.912035904584869,5.386118767394145,31.317546823342298,15684.47186872497,80.80837357672331,16.325563447133028,26.828790507495544,18.7567654186869,18.897254203407847,0.5337969401947149,0.759800427655025,0.6789451653411469,0.5827380952380953,0.09953434225844,0.6906432748538012,0.930622009569378,0.8401420959147424,0.7105263157894737,0.1404011461318051,0.4848540145985401,0.6873096446700507,0.6292442497261774,0.5453846153846154,0.0891161431701972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028471553776787,0.0056585405427331,0.0083632746686153,0.0112377817065983,0.0137303960456459,0.0164343390116995,0.0189210129266402,0.0214018901430875,0.0239054004333428,0.0263785532228511,0.0289308305055206,0.031579811917375,0.0339770880895086,0.0361791967044284,0.038741294815579,0.0413651961797659,0.0435412891535076,0.0458450938070728,0.0481384057142263,0.0503510197279336,0.068547208418591,0.084846708605043,0.1001448180329933,0.1156609270965909,0.1301169744850064,0.1476479546512119,0.1643267220612736,0.1797587744978017,0.1948272546631626,0.208319478262735,0.2256031203870314,0.2414580559974891,0.2561631018951674,0.2700564600840336,0.2831141678129298,0.2964300751213242,0.309196930260615,0.3205103661077264,0.3322202535096088,0.3431619719923907,0.3528989617214357,0.3619389881300775,0.3709599099899331,0.3793934886399078,0.3877154177098272,0.3955770321244545,0.4027502943165594,0.4107249735759675,0.4180620225418607,0.4245756096270128,0.4270060665018307,0.4295296455780059,0.4313786473648496,0.4341578122278349,0.4366897664137643,0.437910512195874,0.4383699239489166,0.4392422863760443,0.4406511067091551,0.4428797810271555,0.4441757203589986,0.4470320818296014,0.4485345392303954,0.4506266230100485,0.4513743614692289,0.4512946652913328,0.4511263015200023,0.4516561363201225,0.4524081749321137,0.4530783506818365,0.4546254282803963,0.4549883613923022,0.4549314804091874,0.4570937768407901,0.4583413879760293,0.460932693490833,0.4650499286733238,0.4687763713080168,0.4671280276816609,0.4627702161729383,0.0,3.63816741995,74.58298793501957,267.20005150344645,428.58574285798073,NC_public_baseline,33 +100000,95791,44948,417.46093056758986,9257,95.18639538161206,7091,73.37850111179547,2973,30.587424705870077,77.34149214859087,79.68178467058293,63.33904717832892,65.07284440171539,76.97932241806727,79.31751259947299,63.2074735388374,64.94359557214544,0.362169730523604,364.2720711099372,0.1315736394915205,129.24882956994566,45.17502,31.422161472099187,47159.9837145452,32802.832700461615,152.41054,80.36501121014615,158473.1342192899,83261.96741880359,236.37208,110.30143866450514,242527.55478072053,111879.57636341228,5173.61986,2313.3215116271303,5358917.184286624,2372939.014758308,1753.49573,759.7803966601754,1815077.2932738983,777795.6454482583,2931.73304,1214.823245405363,3019782.5265421597,1232696.5050786554,0.43342,100000,0,205341,2143.6356233884185,0,0.0,0,0.0,11861,123.13265338079778,0,0.0,22446,230.20951863953815,2327566,0,83677,0,0,6151,0,0,33,0.344500005219697,0,0.0,0,0.0,0,0.0,0.09257,0.2135803608509067,0.3211623636167224,0.02973,0.304534752789436,0.695465247210564,25.90694198885537,4.609894107018365,0.3237907206317867,0.1926385559159498,0.2418558736426456,0.2417148498096178,11.071594624929816,5.52376325624598,31.82813548357096,15629.11495716746,80.43619561435624,15.863492932214765,26.29891600754079,19.206384986096836,19.067401688503864,0.5415315188266817,0.7452415812591509,0.7047038327526133,0.5915985997666278,0.1107871720116618,0.7017543859649122,0.9202127659574468,0.8615384615384616,0.7694300518134715,0.1460055096418732,0.4906151272997584,0.6787878787878788,0.6510812390414962,0.5399096385542169,0.1013313609467455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027350912203571,0.0053120849933598,0.0079963468466182,0.0104865260334105,0.0131861423411507,0.0158397082641513,0.0186235313315926,0.0215972796617957,0.024040575501314,0.0266437297125712,0.0290990372094453,0.0317310358283443,0.0341695724174818,0.0366841107631448,0.0392508899551153,0.0415826847344103,0.0438415739062904,0.0463806303035332,0.0485577122906188,0.0507823479808863,0.0680919439488319,0.0840234211626934,0.0993555148022006,0.1143535692142789,0.1280627245998039,0.1468178887397338,0.1637090276894373,0.1797617781559077,0.1948017291989112,0.208950584199807,0.2256960144693495,0.2410869729770645,0.2550153230889608,0.2696444969172242,0.282903275479003,0.2964513556618819,0.3090262289231867,0.3205086440278136,0.3312259950375582,0.3414893617021277,0.3514753113519259,0.3614739350889081,0.3700996048927059,0.3791430009346466,0.3870176248375381,0.3956589796999987,0.4028718436635411,0.4103145006300194,0.4164571724763509,0.4235775577557756,0.4257485837604532,0.4282680639823497,0.4305015758158203,0.4317472755503316,0.4331949339864986,0.4341908764799162,0.4348706339970348,0.4366353346130933,0.4381605945135093,0.4388034928195136,0.4401091508593735,0.4417925377613284,0.4434018342391304,0.4446789199001588,0.4445965770171149,0.4469168545285771,0.447465034965035,0.4492571465403332,0.4503671177656205,0.450534704997357,0.4494835680751173,0.4510500984467294,0.4544154915848983,0.4569081286041551,0.4554571122578132,0.4559058015454434,0.4588668373879641,0.4557635048915355,0.4460473167916907,0.445854819516065,0.0,2.4869668650111105,76.08088885136917,277.42027833133767,407.68161948754255,NC_public_baseline,34 +100000,95698,44758,415.0870446613305,9297,95.69687976760224,7214,74.75600326025622,2944,30.34546176513616,77.3419109081298,79.71227880024135,63.33255108723839,65.08152385795802,76.9894061660644,79.35438847952253,63.20361892314263,64.95291897009824,0.3525047420654061,357.8903207188233,0.1289321640957581,128.60488785977964,44.4521,30.958675055119457,46449.70636794918,32349.895306258688,153.4808,80.09274415399562,159749.67083951598,83065.7369481321,237.40208,110.23272107813509,243666.41936090615,111860.51605558832,5258.71705,2337.6154956057103,5458017.35668457,2405965.1983105163,1764.41088,767.2385414156714,1829989.3205709627,788220.1932212512,2913.4868,1207.5022275969773,3007963.844594453,1233653.117273585,0.43231,100000,0,202055,2111.3502894522358,0,0.0,0,0.0,11932,124.01513093272588,0,0.0,22556,231.34234780246192,2329606,0,83739,0,0,5913,0,0,29,0.3030366360843487,0,0.0,0,0.0,0,0.0,0.09297,0.2150540121671948,0.3166612885877164,0.02944,0.3048133795635325,0.6951866204364675,26.104485761957985,4.639721045118874,0.3306071527585251,0.190740227335736,0.2418907679512059,0.2367618519545328,11.125678649317996,5.500619196724993,31.539015669304707,15603.920449863406,81.2540544156252,16.09353452006395,26.94957766679924,18.91321097419966,19.29773125456235,0.5381203215968949,0.7616279069767442,0.6830188679245283,0.5884074941451991,0.1146131805157593,0.6885630498533725,0.891358024691358,0.8640429338103757,0.7131367292225201,0.1739130434782608,0.4915592666545652,0.7075180226570545,0.6276013143483024,0.5535580524344569,0.0987654320987654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029265230071289,0.0058680449984797,0.0087035909920876,0.0115483058422036,0.0141233172001464,0.0167182536450272,0.0193380021815142,0.0218420837756185,0.0244787408013082,0.0269172116634427,0.0295233213736545,0.0320672765918122,0.0347887787421331,0.0371198384571004,0.0396660784860023,0.0420512926534282,0.0446773475284541,0.0470013179879409,0.0491000405527653,0.0516585553946038,0.0681984334203655,0.0853954695808734,0.1006631132748562,0.1153089666053115,0.1301279549362335,0.1478060290554338,0.1632876072864615,0.1797410672458583,0.1946661537968394,0.2087701039666105,0.2256716289290561,0.2410299704516673,0.2556161134862874,0.269636256261073,0.282305703756669,0.2952939873768131,0.3076691393831223,0.3189046333783176,0.3295316560560151,0.3396933014189677,0.3497291165030561,0.3593061931977888,0.3675672473041829,0.3770265567435888,0.3849214557755253,0.3932502377981742,0.4008735926497722,0.4083251501664265,0.4158931283835538,0.4213915481038768,0.4235685140649066,0.4253901237634008,0.427738318812748,0.4292253980211216,0.4313038552133337,0.4325105284190464,0.433528860063268,0.4346469432566739,0.4359988989057876,0.4381850578643293,0.4393541190039516,0.4413660951316394,0.4422293858160842,0.4437975715839072,0.4438106381941397,0.4431058624607011,0.4453091098446495,0.4471054060095156,0.449372743843597,0.4500991942993643,0.4530814924819009,0.4580260303687635,0.459700725708047,0.4608966861598441,0.4639791686758607,0.4637082066869301,0.4666144200626959,0.4646231366785639,0.4628833476640871,0.465845909451946,0.0,2.433304704502835,75.79289689722633,274.1441903356123,425.5375909745722,NC_public_baseline,35 +100000,95701,44837,416.735457309746,9371,96.4775707672856,7322,75.84037784349171,3035,31.31628718613181,77.33810060160408,79.71890049921312,63.31256206328344,65.07411698778239,76.96534169585591,79.3426553604755,63.177949559353365,64.9408387032368,0.3727589057481708,376.245138737616,0.1346125039300716,133.27828454558244,44.89386,31.19000775736719,46910.54429943261,32591.09910802101,153.43032,80.37320007487361,159626.29439608782,83287.36384664068,239.56268,111.77497351557533,245565.5217813816,113171.34432047926,5318.59551,2367.274820199159,5512513.630996541,2428687.593232211,1803.21736,773.004540764934,1868631.215974755,792140.0411332514,2986.60446,1230.9748126628829,3084283.152736126,1254798.5450883354,0.43255,100000,0,204063,2132.297468156028,0,0.0,0,0.0,11968,124.3560673347196,0,0.0,22798,233.49808256967012,2324824,0,83649,0,0,5945,0,0,28,0.2925779249955591,0,0.0,0,0.0,0,0.0,0.09371,0.2166454745116171,0.3238715185145662,0.03035,0.3099503998380403,0.6900496001619597,25.557671220504112,4.639446189561329,0.3326959847036329,0.1920240371483201,0.2406446326140398,0.2346353455340071,11.1865729349413,5.59285330777751,32.34559325782965,15648.270269315151,82.65964430292199,16.424536769610842,27.56888715764239,19.192591103671163,19.47362927199758,0.5412455613220432,0.7780938833570412,0.6954022988505747,0.5634458672875436,0.1174801362088535,0.6964490263459335,0.9199029126213591,0.8802083333333334,0.7391304347826086,0.1117166212534059,0.4926470588235294,0.7193158953722334,0.6381720430107527,0.5116804822908817,0.1189964157706093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026149885467555,0.0052850476770135,0.0079091112148963,0.0103868122039961,0.0133291277052533,0.0162662076411452,0.01882789710952,0.0213263607300805,0.0239709566906989,0.0262734858956637,0.0286918446661676,0.0313491533777608,0.0336836044335684,0.0361563652091528,0.0386027894693405,0.0408920396416133,0.0433409606245405,0.0459600780180105,0.0483007412489993,0.0507724199714574,0.0682247773008761,0.0850613936837257,0.099773361593184,0.1146354802069748,0.1291220669654627,0.1464278914299012,0.1634939835742025,0.1786353181702019,0.1940154955917713,0.2086189694570499,0.2249288915704189,0.2396851689456191,0.254144849283156,0.2681186385027908,0.2817983663224642,0.2953391427747843,0.3092771986279176,0.3207725660228616,0.3320569052110083,0.3427699648994012,0.3524257666720753,0.3619762058254703,0.3721760373800742,0.3808729062856457,0.3892987582176771,0.3966363692574043,0.4034867363344051,0.4104998211274084,0.4172406622826398,0.4235409410549456,0.426237483277253,0.4290571357492329,0.4311006071241562,0.4337316163126642,0.4355783308931186,0.4358571142253673,0.4366307135915369,0.4380845368320169,0.4387825368406555,0.4399949583160775,0.4417278994015605,0.4436165324916598,0.4453966907085278,0.4466023823028928,0.4476654882360112,0.4477670926096693,0.4491755073800738,0.4501895568511262,0.4518068003983497,0.4526823387582881,0.4545078387200588,0.4549351623620191,0.4561392364860573,0.4563345633456334,0.45750452079566,0.458011583011583,0.4590873936581593,0.4605587510271158,0.4642956376771325,0.4728260869565217,0.0,2.571147665192332,77.68833224213923,279.1922790672027,429.4014595907937,NC_public_baseline,36 +100000,95636,44714,416.2344723744197,9303,95.98895813292066,7258,75.1599815968882,2962,30.48015391693505,77.27782633283482,79.68819422751938,63.2892740309558,65.07198031617104,76.9238571147467,79.3335566761904,63.15997616372878,64.94557562624854,0.3539692180881246,354.63755132897745,0.1292978672270166,126.4046899224951,45.09054,31.33477093835197,47148.08231210004,32764.618907474138,154.26509,80.39636751759846,160557.69793801496,83322.99699364387,231.98749,107.63164142600893,238012.74624618344,108983.04463215228,5332.99625,2346.649969171409,5525973.325944206,2403710.015381966,1789.89837,765.4977574478734,1850053.91275252,779180.472502993,2940.20326,1213.3480192082548,3027941.716508428,1230079.0419717329,0.43179,100000,0,204957,2143.0946505500024,0,0.0,0,0.0,11978,124.4405872265674,0,0.0,22122,226.7660713538835,2324853,0,83596,0,0,5812,0,0,33,0.3346020327073487,0,0.0,0,0.0,0,0.0,0.09303,0.2154519558118529,0.3183919165860475,0.02962,0.3159764514819326,0.6840235485180673,25.92874397289778,4.678089073745142,0.3292918159272527,0.1895839074125103,0.2481399834665197,0.2329842931937172,11.002945093186405,5.3467514418032485,31.69180117354658,15609.178382882932,81.4827098300464,15.832504019486262,26.90140853689799,18.962079734644632,19.78671753901753,0.5270046844860843,0.7492732558139535,0.699581589958159,0.5523358959195742,0.1043864519711271,0.6749072929542645,0.927170868347339,0.8632958801498127,0.6902887139107612,0.1069364161849711,0.4845744680851064,0.6869479882237488,0.6524784482758621,0.5122137404580153,0.1037800687285223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027460835376851,0.0054863702742171,0.0080299677177024,0.0106913828673638,0.0131848008545704,0.0159533827080001,0.0182661907190209,0.0207441755952076,0.0232605715922342,0.0259267985371999,0.0285025641025641,0.0311540239330286,0.0336578037537043,0.0362487631926121,0.0387474447128786,0.0411240859303083,0.0434701511870097,0.0457075217012086,0.0480238922766342,0.0502987268916763,0.0673800367831466,0.0834144962141443,0.0990637333109413,0.1144646145751118,0.1284294276549046,0.1465043662344535,0.1631161990527366,0.1792380465354129,0.1943915638168167,0.208174527339682,0.2251834768458148,0.2410798401680617,0.2557587633355105,0.2690775360098069,0.2821825790111221,0.2952724048107299,0.3073065022396479,0.3190646145531924,0.3306534032840498,0.3419780521890536,0.3516047267971435,0.3603875588008144,0.3697637235743471,0.378333293329813,0.3867937156973702,0.3949962935507783,0.4027080614396145,0.4103722420019652,0.4172386895475819,0.4235786462540889,0.4262008851833304,0.4289710566403545,0.43090733754999,0.4325850053105585,0.4342779258904232,0.4354350645340579,0.436430727943643,0.4384202148826104,0.4391645809959437,0.4401552066414004,0.4418454894979071,0.4437911241775164,0.4448071216617211,0.4443263053117365,0.4445634968951662,0.4450011867401566,0.4453154377946834,0.4463387277679859,0.44679473343406,0.4485912916209293,0.4496735074626866,0.4506246605105921,0.4546099290780142,0.4520215844216783,0.449402467232074,0.4501344414568565,0.4495572422517394,0.4518784297171802,0.4579385587137525,0.4586466165413533,0.0,2.7456960080560857,71.54074847773516,282.03747923562844,435.16345001445023,NC_public_baseline,37 +100000,95813,44994,418.8680032980911,9318,95.93687704173756,7250,75.02113491906108,2912,30.037677559412604,77.39792083527668,79.70128330399713,63.37134666233783,65.07150567572162,77.04300082010437,79.34373408013181,63.24210766573215,64.94405227481784,0.3549200151723113,357.54922386531973,0.1292389966056788,127.45340090378932,44.9438,31.266066283246605,46907.83087889953,32632.38421012452,154.95141,81.15023479917524,161031.59279012243,84006.61108725381,240.78389,111.9068527980212,246862.78479955747,113455.26010890424,5252.43348,2330.6536955705,5439960.913445983,2390862.3786397977,1779.36542,760.5961712798642,1843216.3693862003,780014.2252733131,2884.1501,1193.9957345390692,2977107.302766848,1216954.5605457542,0.43404,100000,0,204290,2132.174130859069,0,0.0,0,0.0,11986,124.40900504106958,0,0.0,22866,234.32102115579303,2328427,0,83637,0,0,5876,0,0,41,0.4174798826881529,0,0.0,0,0.0,0,0.0,0.09318,0.2146806745922035,0.3125134148959004,0.02912,0.314375506893755,0.685624493106245,25.86684505155985,4.606390695350631,0.3306206896551724,0.1961379310344827,0.2397241379310344,0.2335172413793103,10.993103529034096,5.350939325646059,31.24222066437051,15617.544881769676,81.77604363128033,16.44533698832028,27.04412646524712,19.072710699058906,19.21386947865401,0.546896551724138,0.7735583684950773,0.6967042136003337,0.5818074424099232,0.1208285385500575,0.7057074910820452,0.9297297297297298,0.8734835355285961,0.7263427109974424,0.1598837209302325,0.4989224137931034,0.7186311787072244,0.6406593406593407,0.5384024577572964,0.1111908177905308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023386247671499,0.0049853580439562,0.0074648815862873,0.0099611100392961,0.0125142322706571,0.0150210661293277,0.0175256261335615,0.0199540933435348,0.0226515724298588,0.0252092242843404,0.0275597811609942,0.0298746332355294,0.0325374483736412,0.0353070717049477,0.0378367792871719,0.0401437244455457,0.0425512104283054,0.0451897763313364,0.0472175204311571,0.0496981681931723,0.0676917620304399,0.0839451940173622,0.1004341169808946,0.1160105980317941,0.1302757515706033,0.1480267678743221,0.1646271632168306,0.1801151664165362,0.1944468185120294,0.2081308661839635,0.2255754090062145,0.2405971117962031,0.2553603270560605,0.2694835372721407,0.2829346092503987,0.2967929835441075,0.30961171654527,0.3212092583845063,0.3319344411047468,0.3424914714838473,0.3520049965879781,0.361659593869463,0.3712321147496361,0.3800589461577169,0.3881753065436445,0.3953900927648356,0.4030300755642296,0.4098093613988648,0.4172370877411325,0.4243632570606176,0.4267841029992054,0.4287682177590434,0.4308573686290003,0.4318481298599748,0.4335509060562709,0.4344188045998188,0.4353991012877308,0.4369407227962624,0.4380600858369098,0.4392071592869465,0.4407869916245378,0.4416274994025332,0.441902226729201,0.4438212411796635,0.4448942760285833,0.445261070720423,0.4474043121209483,0.4501363271852446,0.4500035762820971,0.4511214386744797,0.4513846869909239,0.4529430965074529,0.4529385200954777,0.4552337834673328,0.4564587758254489,0.4587434682221412,0.4587920729789242,0.4649431230610134,0.4593688913711254,0.4574882995319813,0.0,2.4551560537301773,74.86730333236268,280.55978433825635,427.9846243816776,NC_public_baseline,38 +100000,95543,44495,414.4207320264174,9231,95.4020702720241,7239,75.08661021738902,2962,30.499356310771063,77.19945181010942,79.67218434951688,63.224607941291474,65.05440709159379,76.83043206520168,79.3026505169679,63.09000664733606,64.92378499986737,0.3690197449077459,369.5338325489814,0.1346012939554128,130.6220917264227,44.90046,31.221406350401235,46995.028416524496,32677.858503920997,151.06724,78.36199089979583,157445.35968098135,81348.92326701198,232.34387,107.56691000636974,240114.23128852976,110084.44250624072,5293.50106,2349.423886597153,5488808.410872592,2407448.8463916504,1782.98617,772.689957638499,1846810.3995059817,789410.6384409463,2934.48364,1218.9867921255095,3022759.8463519043,1231596.9258004003,0.42983,100000,0,204093,2136.137655296568,0,0.0,0,0.0,11759,122.353285955015,0,0.0,22163,228.83937075452937,2321557,0,83487,0,0,5895,0,0,19,0.198863339020127,0,0.0,0,0.0,0,0.0,0.09231,0.2147593234534583,0.3208753114505471,0.02962,0.3097580975809758,0.6902419024190242,25.943778922093045,4.700214009976536,0.3336096145876502,0.1885619560712805,0.242436800663075,0.2353916286779942,10.92256006437217,5.27266434178717,31.831106884777167,15596.651843292138,81.68876004501152,15.93242323927224,27.21278771779201,19.06073245023301,19.48281663771426,0.536123774001934,0.7516483516483516,0.684472049689441,0.590962441314554,0.1111111111111111,0.6751888436955259,0.8897243107769424,0.8656987295825771,0.6912928759894459,0.173469387755102,0.4927509967379485,0.6946169772256728,0.630901287553648,0.5622641509433962,0.0931768158473954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025443229161387,0.0053367423550658,0.0079616540742546,0.0107064421669106,0.013702813861628,0.0159840159840159,0.0184415982038067,0.0211117923564275,0.023669668440442,0.0259687022822533,0.0284860803153486,0.0306831736108254,0.0331616889804325,0.0356918125457752,0.038308910154393,0.0406082437943813,0.043215382062557,0.0456864925536005,0.0479885835711756,0.0501440741668754,0.067147863381976,0.0831812747750582,0.0993019637525755,0.1139259181200273,0.1284208746022853,0.1464167187980448,0.163687626343228,0.1795495783968406,0.1942396708383336,0.2082607292675056,0.2247642502997504,0.2405427408412483,0.2558461823856134,0.269569224692225,0.2828186926618165,0.2959657701711491,0.3088523415546176,0.320706785593316,0.3316102881736101,0.3420644315974577,0.3521669490935258,0.3620857642598049,0.3707614285544615,0.3799781089500715,0.3879278795715715,0.395360065365141,0.4023860761883188,0.4088269156965587,0.4150982716178022,0.4213747958519777,0.4243377348770369,0.4266121770450924,0.4282148024169527,0.4303909866371656,0.4321176417682241,0.4335955004094751,0.4337982712617233,0.4351381838691483,0.436224092928385,0.4383554213599956,0.4394863319465815,0.4406912174488303,0.4417083821493237,0.4430679002523243,0.4442757066575221,0.4458722430627611,0.4470067551828558,0.4480125757916011,0.4481099903076426,0.4488424801683665,0.4500463392029657,0.4526230394808004,0.4528762198253723,0.4560255511412324,0.4573836429802719,0.4569415765820478,0.4564980544747081,0.4525427218447601,0.4603667136812411,0.459009900990099,0.0,2.5796170244822942,76.80055614553515,270.9666477761898,431.03532006012233,NC_public_baseline,39 +100000,95667,44471,413.4654583085076,9398,96.65819979721324,7305,75.61646126668548,2967,30.56435343430859,77.33990302576841,79.72998966152555,63.32261558699434,65.08872949890645,76.97045360045666,79.35814859812031,63.18764690044296,64.95635537991706,0.3694494253117426,371.8410634052418,0.1349686865513817,132.37411898938944,45.01002,31.294817683040662,47048.63746119352,32712.23899886133,155.2373,81.19741031175761,161510.92853335006,84126.77368426633,233.09152,108.55835000050604,238358.5248831885,109540.35077955804,5295.35655,2354.987032660464,5485795.948446172,2412792.158169914,1759.81793,760.286707110616,1819864.6346179976,775758.8086557712,2931.90442,1225.737250296955,3021771.645394964,1243835.1819654696,0.43005,100000,0,204591,2138.5744300542506,0,0.0,0,0.0,12066,125.34102668631816,0,0.0,22229,227.2152361838461,2326461,0,83654,0,0,6092,0,0,39,0.3972111595429981,0,0.0,0,0.0,0,0.0,0.09398,0.2185327287524706,0.3157054692487763,0.02967,0.309442319307429,0.690557680692571,25.74760699748528,4.6045336840455775,0.3371663244353183,0.191649555099247,0.2412046543463381,0.2299794661190965,10.86254683987857,5.307468710446831,31.928336523890536,15540.056731597648,82.32295915054725,16.369871016767735,27.56211447059301,18.738843884592747,19.65212977859376,0.5385352498288843,0.7692857142857142,0.681282988225741,0.5797619047619048,0.1163450624290578,0.6781883194278904,0.9077669902912622,0.8237410071942446,0.7142857142857143,0.1444759206798866,0.4968899946685622,0.7115384615384616,0.6397482957524908,0.5434618291761149,0.1092973740241305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026233161146561,0.0055243018600172,0.0083002709257135,0.0109799699345874,0.0134122408305624,0.01623607972475,0.0189077343335915,0.0216175389891402,0.0240636244684331,0.0264283813384102,0.0290737608283356,0.031718984171303,0.0341912861065122,0.0364533440458164,0.0388485793020879,0.0412543813393715,0.0437413232216489,0.0460353543217181,0.0483235021794991,0.0502903370411684,0.0675720852486418,0.0837818029525704,0.0992508184336439,0.1141119656590949,0.1279989871494587,0.1455793973252074,0.1618495883201765,0.1772031976837018,0.1920977579337527,0.2070710861848948,0.2227727571387024,0.2382415965022402,0.2529452077146493,0.2670253835974496,0.2804263096470173,0.2942369275432978,0.3065331681344808,0.3188131739492582,0.3301550545982882,0.3404430894774845,0.3508363720553337,0.3599691043780501,0.3692781429501984,0.377785506968265,0.3858983710187211,0.3941453666239021,0.4012280701754386,0.4074753730677575,0.4147237511683456,0.420516960705163,0.4226616031246199,0.4251712896452647,0.4275101879103464,0.4291153220181353,0.4306427503736921,0.4317961351913157,0.4328258376863295,0.4336656251549868,0.4351362971880643,0.4365346231996116,0.4374728409756466,0.4390872065165309,0.4392454108530414,0.4408390022675737,0.4418422916310532,0.4425721325808759,0.4440835266821346,0.4465922933897544,0.4470331400758714,0.4496230294722412,0.4517397741995188,0.4545847984852583,0.4549127757824525,0.4547078931013051,0.4558246386522446,0.4590243311947706,0.4587717920527721,0.4587963933738729,0.4568149210903873,0.4497816593886463,0.0,2.826666510590579,74.08083788621678,286.1259237132312,429.6907095967472,NC_public_baseline,40 +100000,95777,45211,419.798072606158,9344,96.21307829645949,7235,74.88227862639256,2975,30.550132077638683,77.331780499572,79.67110755030154,63.32970022966426,65.06212172616421,76.96963524747439,79.30923144077167,63.19815664414444,64.93406952618267,0.3621452520976191,361.8761095298737,0.1315435855198217,128.05219998153916,44.96624,31.331045849138015,46948.89169633628,32712.494491514684,154.85082,81.14994815694382,161012.86321350635,84062.37213208164,239.10424,111.29932801784614,245667.1121459223,113165.89954556206,5275.36529,2344.8333967242424,5460003.382858098,2400258.461555743,1815.22913,781.7046050522428,1878879.5953099383,799784.9014400566,2952.75632,1216.501301610178,3035208.849723838,1230182.3178423494,0.43511,100000,0,204392,2134.040531651649,0,0.0,0,0.0,11983,124.434885202084,0,0.0,22722,233.26059492362467,2325352,0,83670,0,0,6002,0,0,34,0.354991281831755,0,0.0,0,0.0,0,0.0,0.09344,0.2147502930293489,0.3183861301369863,0.02975,0.308028011773064,0.691971988226936,26.103722467093448,4.644772387919618,0.3376641326883207,0.1802349689011748,0.2460262612301313,0.2360746371803732,11.019000748132068,5.423995708432168,31.6297266587412,15737.54339567997,81.54802725453291,14.94656829053945,27.59031014113603,19.400054152488373,19.611094670369077,0.5437456807187284,0.7599693251533742,0.6913630781825624,0.6042154566744731,0.1247191011235955,0.6994633273703041,0.9146341463414634,0.864957264957265,0.76,0.173076923076923,0.4967614249730119,0.7079918032786885,0.6367061356297093,0.5565749235474006,0.1122881355932203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028159027601924,0.0054640931024694,0.0081991334084244,0.0106465114389044,0.013719806763285,0.0167313312762859,0.0194633062131685,0.0221119686389807,0.0247490339596409,0.0273225162512156,0.0298007134948948,0.0321481009928844,0.0345703386083433,0.0369187663528296,0.0392911695496016,0.0416726971983872,0.0441203885908403,0.0466949477767521,0.0490813484640645,0.0513338470188883,0.0684991547179262,0.0847725347029718,0.1007233462627109,0.1163631395874273,0.1303413174283697,0.1482921880284071,0.1650943396226415,0.1803515787010943,0.1948580027534979,0.208919081090348,0.2259075054902467,0.2416053656425789,0.2561185198076881,0.2696818519977244,0.2831931477893253,0.2969387302713247,0.3098879264154313,0.3224216508186575,0.3334732924047616,0.3444163105372303,0.3547823470875471,0.364848740085632,0.3735491970249656,0.3826285165856877,0.3907432185865466,0.3986882897125847,0.4062872560707787,0.4131920056190537,0.4198445501572695,0.4263539197117995,0.4287624966225344,0.4311641708646746,0.4327640805247681,0.4346071200418143,0.4360575414905218,0.4363706444650015,0.4377074291549655,0.4393485492974064,0.4405815096487143,0.4413332372960709,0.4431826784767961,0.4438276288989177,0.4447511465941905,0.4453566163964168,0.4466518239424559,0.4482438455008489,0.449257282116746,0.4521074023106218,0.4542665525114155,0.4563915857605178,0.4572904066251047,0.4593579978237214,0.4569630926898878,0.4572033234049224,0.4592764557941575,0.4591102985984156,0.4645856441134527,0.4647916666666666,0.4705882352941176,0.4751830756712775,0.0,2.562440097058304,74.42952324773104,279.5475348660323,427.5913113122469,NC_public_baseline,41 +100000,95662,44671,414.3860676130543,9427,96.94549559908845,7314,75.63086701093432,3014,30.890008571846707,77.34192318165195,79.71798417662232,63.32298576779221,65.07530720517106,76.96423873430906,79.34281048110086,63.18432051091136,64.94170953752585,0.3776844473428866,375.1736955214682,0.1386652568808415,133.5976676452049,44.45826,30.97628758069169,46474.31582028392,32380.97424336904,155.51472,81.52824365020368,161695.20812861953,84354.060345025,239.6772,111.49209351660684,246286.2787731806,113048.10758468953,5289.21948,2370.268056316619,5472713.595785161,2421552.501880598,1768.12196,774.3836573934665,1827131.682381719,788405.4581935239,2964.68884,1245.091872873798,3042504.609980975,1252925.363175124,0.43065,100000,0,202083,2112.468900921996,0,0.0,0,0.0,12055,125.10714808387864,0,0.0,22776,233.75007840103697,2325269,0,83598,0,0,6077,0,0,35,0.3658715059271183,0,0.0,1,0.0104534715979176,0,0.0,0.09427,0.2189016602809706,0.3197199533255542,0.03014,0.3096599458320794,0.6903400541679205,26.142443258862336,4.585742997404457,0.338255400601586,0.1815695925622094,0.2316106097894449,0.2485643970467596,11.014195933408043,5.490348880333303,32.41652238136865,15580.073674422798,82.64927661781105,15.435772323253868,27.896684897445017,20.253793091951056,19.063026305161102,0.5362318840579711,0.7545180722891566,0.6766370250606305,0.5781078107810781,0.115112160566706,0.6902050113895216,0.9263157894736842,0.8498293515358362,0.746268656716418,0.1597938144329896,0.4875854623965455,0.6856540084388185,0.6228813559322034,0.530367231638418,0.1018376722817764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026325648269088,0.0057266802485277,0.0083995252442253,0.0111117882462876,0.0135661476818565,0.0159841990592738,0.0186265114287462,0.0211981660931453,0.0239887111947318,0.0263249508519003,0.0289352801246821,0.0317621688231669,0.0341174413461835,0.0365271867368703,0.0388442719408716,0.0414581178903826,0.0439835916134913,0.046430276733999,0.0490349016182037,0.0515511186603169,0.0685037396064012,0.0850471204188481,0.1009510413167618,0.1153603300218892,0.129421696918531,0.1487796617345102,0.1653233941787986,0.1820574009758592,0.196692041226532,0.2105003220957698,0.2261202480452952,0.2426300906815744,0.2564387380617901,0.2698577794322125,0.2819493392070484,0.2950430723859995,0.3067745106801323,0.3186017168735777,0.3292610926926745,0.3402384500745156,0.3506648443291327,0.3601232311873301,0.3694685807086381,0.3779090712587362,0.3859431298081605,0.3940542943951782,0.401446109813964,0.4081778503790296,0.4150965476887068,0.4207198250149135,0.4222974803576266,0.424616919282884,0.4266806633282737,0.4279505813953488,0.4300010455407686,0.4303337388920546,0.4303597878541736,0.4318415041874938,0.4332442451935511,0.4339598862122358,0.4352910012866117,0.436630989296789,0.4378407042104146,0.4392152415513722,0.4401071472056496,0.4410663432127413,0.4424668993567369,0.4444833736781756,0.4484290588569803,0.4492817768478654,0.4498154981549815,0.4505607073538926,0.4525678980563779,0.4534478755514279,0.4554617009022845,0.4572253639754542,0.4546865301055245,0.45703125,0.4692437923250564,0.4677795031055901,0.0,3.1471770234920893,77.39856581238246,278.5275152202232,428.726059686632,NC_public_baseline,42 +100000,95726,44545,412.9285669515074,9254,95.25102897854292,7169,74.18047343459457,2916,30.002298226187243,77.32392886815877,79.6867455532488,63.31606620966248,65.06454502721907,76.96311229693282,79.32514117425976,63.18512129546502,64.9363874084656,0.3608165712259534,361.6043789890426,0.1309449141974639,128.15761875346254,44.86526,31.19568528212639,46868.41610429768,32588.51856562104,152.0126,79.50337136267521,158061.82228443684,82317.23444359461,233.1887,108.17810088046954,238668.1361385621,109315.20067017931,5250.38294,2327.5559182665834,5437622.767064329,2384462.462230082,1767.39622,756.4182237720272,1831959.310950003,775920.6998557241,2884.65764,1191.7989244225143,2971611.4953095294,1210898.4889145235,0.43001,100000,0,203933,2130.3825501953493,0,0.0,0,0.0,11796,122.47456281470028,0,0.0,22182,226.90805005954496,2326085,0,83745,0,0,5694,0,0,25,0.2611620667321312,0,0.0,0,0.0,0,0.0,0.09254,0.215204297574475,0.3151069807650745,0.02916,0.3094994892747701,0.6905005107252298,25.923998372720774,4.659682411573387,0.330729529920491,0.1860789510391965,0.2438275910168782,0.2393639280234342,10.96117407251478,5.323544702065808,31.026440659674236,15561.346156074176,80.68802634277138,15.565991553044515,26.798249380209903,19.095936288019377,19.227849121497588,0.5412191379550844,0.7713643178410795,0.6950653732602278,0.5804195804195804,0.1184210526315789,0.6976463488231744,0.917989417989418,0.8772241992882562,0.7372881355932204,0.1515151515151515,0.4941944847605225,0.7133891213389121,0.6384742951907131,0.539647577092511,0.1097472924187725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028158457159642,0.0053331170345435,0.0080479834371891,0.0107195838159686,0.013213573666436,0.0160997963340122,0.01846338927064,0.0212010166688782,0.0237605946283061,0.0265076277260161,0.029281195853881,0.0318795047126224,0.0343381173664514,0.0367936383675655,0.0392446210205871,0.0416378089498547,0.0437750546411294,0.0463863487746904,0.0489496672212978,0.0514268448963857,0.0686566229210386,0.0846175575154577,0.1006774044712889,0.115340532696817,0.1297255116997606,0.1473724295506473,0.1633543074817227,0.1789577920695089,0.1940521716837225,0.2082748121066569,0.2249725446284373,0.2402768764871295,0.255333260845928,0.2691441195126752,0.2821720094167345,0.2956287663948954,0.308075282980956,0.3205074804966734,0.3309704756387099,0.3409409064830752,0.3514920958931118,0.3611348948498106,0.3699628482237178,0.3779281499020444,0.3860140882833256,0.3931277424139422,0.4003114286790652,0.4071424922086548,0.4132515082171832,0.4196632193052241,0.4219323056935215,0.4231449984789402,0.4247988212626091,0.4266333192770208,0.4281549478971997,0.4286462182803646,0.4295086143753384,0.4310011724103766,0.4337616762140682,0.4349217191235418,0.4354765592535227,0.4374039861939628,0.4384561670792865,0.4406258478791716,0.4423582700175336,0.4432907981295078,0.4441009937601109,0.445398340647724,0.4474033664716649,0.4485916919959473,0.4514357518499557,0.452329360780065,0.4545979964038017,0.4585669781931464,0.4568080573310091,0.457341633101428,0.4600997506234414,0.4668570263104222,0.4622124863088718,0.4643552785352551,0.0,2.639406223140655,73.4368579902708,276.55038529286725,423.5804836744803,NC_public_baseline,43 +100000,95773,45008,419.08471072222864,9338,96.02915226629636,7305,75.48056341557641,3085,31.67907447819323,77.4066300966336,79.74459359822079,63.35719594835807,65.08708511257043,77.02640237895413,79.36489237213927,63.21860101506137,64.95250063918837,0.3802277176794746,379.70122608152224,0.1385949332967015,134.5844733820627,45.36158,31.559918427593143,47363.64110970733,32952.8347525849,154.97155,80.94430487427019,161017.69809862904,83723.21517992564,231.82346,108.23683756357596,236869.1489250624,109043.24743208816,5379.51242,2387.893487053279,5562527.372015078,2438871.505594771,1776.9441,766.8501391154743,1831382.1640754703,776707.0877131086,3056.34406,1266.919571445984,3141889.008384409,1280548.1342745104,0.43415,100000,0,206189,2152.8927777139697,0,0.0,0,0.0,12024,124.71155753709292,0,0.0,22046,225.18872751192927,2326048,0,83672,0,0,5965,0,0,40,0.3863301765633321,0,0.0,0,0.0,0,0.0,0.09338,0.2150869515144535,0.3303705290212037,0.03085,0.3086382113821138,0.6913617886178862,25.903627226892837,4.698647669951718,0.3258042436687201,0.1878165639972621,0.2506502395619439,0.2357289527720739,10.981439516431948,5.299621494604046,32.985117717686954,15618.227597566283,81.92419735079123,15.808024906929726,26.724891736098424,19.19661850760021,20.194662200162877,0.5252566735112937,0.7478134110787172,0.6718487394957983,0.5795586527293844,0.1168760240305843,0.6834617664493183,0.9173333333333332,0.8351254480286738,0.7287234042553191,0.1825396825396825,0.477750088999644,0.6840521564694082,0.6218441273326015,0.537890044576523,0.0997935306262904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024520234259428,0.0051408407860315,0.0074182320049522,0.0100281438281702,0.0126829466746676,0.0151931732551271,0.0179543647152382,0.020517531771551,0.0229976695694836,0.0253387367473085,0.0279893003187357,0.0307116104868913,0.0333309351778574,0.0357731109738521,0.0381197814658282,0.0402825249636001,0.0430477963997517,0.0455304106237624,0.047843161700536,0.0496720458094742,0.0669268333402896,0.0832374657491267,0.0994339622641509,0.1149262202043132,0.1291566569730686,0.147767739208538,0.1639196565795749,0.1798143481450764,0.1948119851466131,0.2083913537136613,0.2251643515778827,0.2411820678618542,0.2558933171033898,0.2697991415183984,0.2826722338204593,0.2960589661011322,0.3094241947540471,0.3209312788212799,0.3323801418439716,0.3430508940537692,0.3530106257378985,0.3617524192887817,0.3714918671737096,0.3798953733922058,0.3883724325902852,0.3962557731729605,0.4028037500470638,0.4102521566025215,0.4171258512242033,0.4239601415188095,0.4263712766101419,0.4284470005944892,0.4307509243126089,0.4324858633872632,0.4339941142199847,0.4344934809045149,0.4347231498266705,0.4360516860599268,0.4375728088809703,0.4386461318051576,0.4399864248274822,0.4414063276791218,0.4419880178887858,0.443286880440175,0.444792197394279,0.4465145654061735,0.4472176641621326,0.4484094228204965,0.4493695613567749,0.4502491560842308,0.4509903504316912,0.4514654477009949,0.4506952417400178,0.4501194052846468,0.451511991657977,0.4527196652719665,0.4525444895410552,0.4550275341627575,0.4591950810508664,0.4546165884194053,0.0,3.1333412093993456,74.32093449757204,273.70577961022894,438.9572842093818,NC_public_baseline,44 +100000,95679,44749,415.0858600110787,9417,96.9491737998934,7291,75.51291296940812,2994,30.853165271376163,77.29491858535671,79.69800082095671,63.29396199958445,65.07436667787596,76.92847854593424,79.32809075408609,63.16116972923674,64.94309636166301,0.3664400394224714,369.91006687061656,0.1327922703477142,131.27031621294805,45.42736,31.53925243726073,47478.9243198612,32963.61002650605,154.77986,81.29384081339158,161084.73123673952,84279.9786927033,239.0052,111.7780142541352,244810.59584652848,113032.75119896913,5295.86996,2365.4038026069547,5489395.948954316,2426618.3503202936,1812.26164,784.3250078813932,1873398.676825636,799062.7072722836,2957.81002,1223.1511740714193,3050644.4465347677,1243785.8122402944,0.43206,100000,0,206488,2158.1329236300544,0,0.0,0,0.0,12055,125.28350003658063,0,0.0,22751,232.9769332873462,2322634,0,83544,0,0,5939,0,0,30,0.3135484275546358,0,0.0,0,0.0,0,0.0,0.09417,0.2179558394667407,0.3179356482956355,0.02994,0.3117246898759503,0.6882753101240496,25.850608155788777,4.66770053423353,0.3256069126320121,0.195583596214511,0.243725140584282,0.2350843505691949,11.15594749320579,5.566152233818141,31.94477687235462,15648.082155297025,82.47287102492044,16.576998821642295,26.96333491430853,19.27462076521438,19.657916523755212,0.5420381292003841,0.7440392706872371,0.7017691659646167,0.5904317386231038,0.1198649409116488,0.7014840182648402,0.8962962962962963,0.8426395939086294,0.7761194029850746,0.1581920903954802,0.4916049828488897,0.683643486777669,0.6550757150869322,0.5335365853658537,0.1103302881236823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027775806664166,0.005621683054786,0.0081450261514243,0.0110619693965736,0.01371173793988,0.0162261881707826,0.0188477080697171,0.0214748370486912,0.0240414126120227,0.0265112324445036,0.0291836776562788,0.0317331497899181,0.0342251492076558,0.0368645072193422,0.0393579686209744,0.0418510858324715,0.0442360499455986,0.04661641645383,0.0490288888657713,0.0515629397233716,0.068898521961665,0.0854534413803212,0.1008699667334795,0.1157419585643788,0.1298095690246347,0.1477997735761218,0.1655362734171841,0.1816613785907455,0.1957302218233106,0.2102637282461749,0.2263697670911167,0.2415901148007487,0.2557036908153722,0.2694712905059693,0.2822662266226622,0.2957649743549977,0.3092224231464738,0.3210678616869152,0.3319850476634133,0.342491998118554,0.3525600908606263,0.3622728178206916,0.3719742051731904,0.3797568710359408,0.3878343662109018,0.3957738293952545,0.4029198729616751,0.4105910418819447,0.4168905153060562,0.4229950131615497,0.42496421723514,0.4265728476821192,0.4278441631902708,0.4298838896952104,0.4317771241732483,0.4329257951619617,0.4328432076887463,0.4341338191454124,0.4354296356331155,0.4374447192187584,0.438872544367467,0.4411428800416758,0.4433914152146196,0.4448403422372512,0.4454541001273636,0.445403825717322,0.4460205801988256,0.4480942747969046,0.4483264721675318,0.4517803552599562,0.4526143790849673,0.453087627745162,0.4539198662293395,0.4525979590246942,0.4529411764705882,0.4533365865560571,0.4556646407978806,0.4589722337339411,0.4634486607142857,0.4683153013910355,0.0,2.688641439320292,77.71988973726606,279.01310788535784,426.27985657293146,NC_public_baseline,45 +100000,95700,44760,415.7157784743992,9376,96.4158829676071,7336,75.86206896551724,2989,30.67920585161965,77.3593554540744,79.72969102799179,63.33143217950936,65.08340059927043,76.9875375870425,79.35782950160862,63.19574783078144,64.95095686193176,0.3718178670319076,371.8615263831708,0.1356843487279277,132.44373733867576,44.71918,31.08044674824192,46728.50574712644,32476.95584978257,154.72456,81.31921337174028,160879.8641588297,84176.26266639528,243.11045,114.0299631067831,248185.09926854752,114690.55388954312,5314.60275,2389.625443865964,5501556.687565308,2445154.068825458,1805.74396,789.6855248421341,1868220.961337513,806508.9078810173,2951.9772,1235.4818204523535,3033903.845350052,1249609.0881926755,0.43181,100000,0,203269,2124.022988505747,0,0.0,0,0.0,12043,125.03657262277952,0,0.0,23079,235.59038662486935,2326528,0,83664,0,0,5799,0,0,31,0.303030303030303,0,0.0,1,0.0104493207941483,0,0.0,0.09376,0.2171325351427711,0.3187926621160409,0.02989,0.3119878603945372,0.6880121396054628,25.6773622167457,4.616997715450453,0.3330152671755725,0.1926117775354416,0.2356870229007633,0.2386859323882224,11.21961536316256,5.654346694683204,32.245546983470255,15612.80933656202,83.08164493704514,16.244097245802845,27.632848912583515,19.885686102827336,19.319012675831427,0.5497546346782988,0.7515923566878981,0.700777732296357,0.6059394631639063,0.1145170618854829,0.6985619469026548,0.92,0.8427876823338736,0.7466666666666667,0.1693989071038251,0.5010853835021708,0.6907514450867052,0.6527929901423878,0.5572636433512682,0.0997798972853998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027650609731394,0.0054233783085141,0.0083107552741331,0.0109991671914037,0.0133512298790966,0.0158917609211316,0.018400530098374,0.0210277034889655,0.0236552104843491,0.0265051853520203,0.029021176229298,0.0316765784365081,0.03426066916334,0.0365031939006799,0.0387584100383869,0.0412669533575918,0.0435151728493482,0.04599107976351,0.0483220360128082,0.0509166666666666,0.0682093479804519,0.0844637025872896,0.1006734642497482,0.1155334497045153,0.1296306060254558,0.1475780944220536,0.1645373514431239,0.1796850879901204,0.1950565303810724,0.2091927625507072,0.2259124756188238,0.2414823475916723,0.25551408580973,0.2688097896280729,0.282125582574013,0.2957482446118179,0.3077481704932685,0.320419602458186,0.3308880308880308,0.3415126358757969,0.3517733453795723,0.361448321880524,0.3705628833266239,0.3790515018886024,0.3872018672047847,0.3953907271695412,0.4021771847095415,0.4095602294455067,0.4163173128090646,0.4223988573091217,0.4244493629885554,0.4266291219788259,0.4279886509605748,0.4299465859907647,0.43212359584041,0.4333154135627064,0.4334937042506232,0.4346586696106378,0.4362240955994712,0.4367593191122603,0.4388387291753239,0.4409835084850539,0.4413791641044127,0.4436832195276877,0.4443307009846934,0.445363713258617,0.4454311417083683,0.4462188370083528,0.4471823441182773,0.4493145161290323,0.4505295429208473,0.4522711238942855,0.455270322831583,0.4573251381000545,0.4585010542457351,0.457163601161665,0.4549161047514505,0.4541692530519346,0.465819209039548,0.4686028257456829,0.0,3.138853149359899,79.90685777091547,279.0768607330841,422.9790603418896,NC_public_baseline,46 +100000,95881,44804,416.213848416266,9304,95.66024551266676,7258,75.0409361604489,3005,30.90289004077972,77.4394230829848,79.71799159177857,63.39129033748679,65.0765562164582,77.07023325001884,79.34789936261139,63.25703973433544,64.94501503329647,0.369189832965958,370.0922291671844,0.1342506031513508,131.5411831617297,44.73722,31.17876141145126,46659.10868680969,32518.18547100182,154.13521,80.75769163686985,160089.2460445761,83559.46604318879,238.00759,111.21191728071663,244237.3462938434,112813.27202596352,5294.57614,2358.14904521617,5480531.78419082,2418008.30957146,1797.25888,774.5683080680386,1860871.7889884333,794277.9709677924,2969.42624,1233.9136686558345,3057270.303814103,1252688.9368766989,0.43269,100000,0,203351,2120.868576673168,0,0.0,0,0.0,11967,124.10175112900366,0,0.0,22656,232.2253626891668,2330265,0,83819,0,0,5831,0,0,27,0.2815990655082863,0,0.0,1,0.0104295950188254,0,0.0,0.09304,0.2150269245880422,0.3229793637145314,0.03005,0.3096472501778998,0.6903527498221003,25.894984738536767,4.628110642578887,0.3284651419123725,0.1908239184348305,0.2408376963350785,0.2398732433177184,11.104841150253163,5.419069378732078,32.07915890292259,15602.336640738278,81.52984093637204,16.091459798024935,26.655159545163105,19.490407142904665,19.29281445027934,0.5330669605952053,0.748014440433213,0.6690436241610739,0.5973578403216542,0.1132723112128146,0.6910994764397905,0.9115479115479116,0.8385321100917431,0.764102564102564,0.1644562334217506,0.4840223867124029,0.679959100204499,0.6188145731375748,0.5492227979274611,0.099197665937272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025612472160356,0.0051988325428675,0.0079733006015479,0.0108133903278538,0.0132842753615823,0.0157607700290999,0.0184059078176725,0.0211036311709506,0.0235176331167504,0.0260029869678184,0.0282382835713846,0.0308424735540666,0.0331812483301477,0.0357716379807296,0.0382791397760778,0.0404464912643013,0.0429546865301055,0.0453005356902322,0.0478494232945402,0.0501737303122984,0.0674853020889797,0.0844069673886921,0.1001277513665207,0.1147041839466638,0.1290777603503268,0.147464999894419,0.1645517329039912,0.1797615505589322,0.1944503667064642,0.2086811352253756,0.2254152556039348,0.2414717164622616,0.2557063239432029,0.269196301720181,0.2823205938960682,0.2957139851855132,0.3087002096436059,0.3202274975272008,0.3319502545091771,0.3434138862190489,0.3530962401146927,0.3617391914326466,0.3700069828269797,0.3782643102083883,0.3865084383055299,0.3939861313328233,0.4018874309132609,0.4094058019000076,0.4158727689854959,0.4224029789650209,0.4248114722031109,0.4267556315310596,0.4288839644878544,0.4302989879070846,0.4319225721784777,0.4329590895109197,0.4337056128293242,0.4354396964197327,0.4368975411948659,0.4389963539702211,0.440529881305078,0.441446647404603,0.4415537755986221,0.4425612477180013,0.4428661463130848,0.4448427656377678,0.4456649892163911,0.4472999555809379,0.4492041032897064,0.450218358107296,0.4522922701981882,0.4540610366542871,0.453658225425783,0.4536505968066966,0.454562957258375,0.4568892131825368,0.455364196555538,0.4625893232450609,0.4637142857142857,0.4694117647058823,0.0,2.5123455834567414,76.1688118943691,275.1293741420706,426.03631823255296,NC_public_baseline,47 +100000,95727,44858,416.43423485536994,9330,96.06485108694515,7231,74.8482664243108,2989,30.785462826579757,77.34647984393533,79.69952700058971,63.33814763576003,65.07571746963205,76.98737486621451,79.33811110386067,63.2082626267554,64.94791259280194,0.3591049777208184,361.4158967290422,0.1298850090046315,127.80487683011188,44.53944,31.004101613639524,46527.562756589046,32388.0426772379,154.42816,81.14574770424878,160559.94651456745,84006.40122875343,238.16965,111.06245794762228,244266.89439760987,112479.11136108502,5297.4009,2336.6906181150816,5485351.750289886,2392625.7154958574,1783.75393,767.7035594591975,1840774.682169085,779402.0167939572,2956.94884,1212.015863268485,3046937.917202044,1229919.8494476064,0.43224,100000,0,202452,2114.889216208593,0,0.0,0,0.0,12047,125.12666227918976,0,0.0,22582,231.43940581027292,2327471,0,83708,0,0,5913,0,0,29,0.2924984591599026,0,0.0,0,0.0,0,0.0,0.0933,0.2158523042754025,0.3203644158628081,0.02989,0.3105968331303289,0.6894031668696712,25.905672333677625,4.643025824442751,0.3331489420550408,0.1826856589683308,0.2438113677223067,0.2403540312543216,10.964423652476338,5.354346616756525,31.770026417115773,15656.17869812424,81.27585206734797,15.347162538615937,27.215318958974795,19.247108289477744,19.46626228027951,0.5347808048679298,0.7562452687358062,0.7023661270236613,0.5638665132336018,0.1111741349971639,0.6977886977886978,0.9211267605633804,0.8784722222222222,0.7191011235955056,0.1378299120234604,0.4874174549348563,0.6956521739130435,0.6470267321331151,0.5238784370477568,0.1047819971870604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002582540004051,0.0051698446005534,0.0078850427740737,0.0104426972227301,0.013240588199402,0.0158922462941847,0.0183690112130479,0.0210759448453239,0.0235303738078932,0.025953948378774,0.0284545762051681,0.0310902633793853,0.0335989307561815,0.0359666289010196,0.0382881256254965,0.0409926717588812,0.0439090551425672,0.0463849609395262,0.0487624868764357,0.0512972742138757,0.0692286811993652,0.0851449085751965,0.1005948821252085,0.115776522918704,0.1307762865185716,0.1487656605169953,0.1651178579763647,0.1807441781259313,0.1952146571144873,0.2091046487946577,0.2257442799461642,0.2413819212339509,0.2562530572313712,0.2703216709840312,0.2831478956858261,0.2959009677347919,0.3086670384829894,0.3207370990786261,0.3323118828736806,0.342663993125179,0.3526368781029754,0.3630524813402279,0.3719013158673946,0.3810443713853759,0.3890334662904952,0.3969812065308538,0.4044910029572452,0.4114023340348192,0.417523294649703,0.4240161025478044,0.4255287499323849,0.4270274752612085,0.4288423704584377,0.4307797358748238,0.4325625196191273,0.4338363364520554,0.4344281870432581,0.4358677877070979,0.4364725526311259,0.4377563502914298,0.4395519286712758,0.4401061410159211,0.4417968667189587,0.4444846866016252,0.4465513039239581,0.4481001910422416,0.4501698261096757,0.451513793765602,0.4522753291356611,0.4538001776916243,0.4540759352317141,0.4543825350276963,0.4578128003075149,0.4607223652390982,0.4592871631411185,0.4582723279648609,0.4587588373919874,0.4586638830897703,0.458898182867032,0.4609153503442689,0.0,2.6818977526008894,72.07485357358617,281.2993411826352,431.16746468665633,NC_public_baseline,48 +100000,95727,44877,415.8492379370501,9351,96.22154669006656,7324,75.79888641658049,3023,31.08840765928108,77.41222784566315,79.76769074138754,63.350809200748486,65.08946770494143,77.03691363648403,79.39163303120975,63.21366410646657,64.95564198995048,0.3753142091791233,376.0577101777898,0.1371450942819194,133.8257149909481,45.01552,31.33474708112196,47024.89370814921,32733.44728354796,155.75245,81.82914281709219,161998.109206389,84775.06118137222,246.50992,115.26590585721398,252847.14866234188,116789.7258417643,5370.9706,2401.5111083836287,5559860.290200257,2457851.983644768,1849.40915,805.964104310267,1910747.1141893093,820725.4424668767,2991.99242,1244.8981915813995,3078707.3657379844,1260798.6634444075,0.43249,100000,0,204616,2137.495168552237,0,0.0,0,0.0,12045,125.07443041148264,0,0.0,23311,238.96079476009905,2324295,0,83523,0,0,6036,0,0,41,0.4178549416570037,0,0.0,1,0.010446373541425,0,0.0,0.09351,0.2162130916321764,0.323280932520586,0.03023,0.3078466787076058,0.6921533212923942,25.89298694735032,4.677623008304159,0.3343801201529219,0.1839158929546696,0.2450846531949754,0.2366193336974331,11.096527238353737,5.516064221234189,32.24927795431084,15715.416409975936,82.74696949154422,15.799661003928115,27.737832498966224,19.3464226136924,19.86305337495749,0.5419169852539596,0.7616926503340757,0.6929358922008984,0.6006924408540104,0.1142061281337047,0.6854120267260579,0.9140811455847256,0.8516129032258064,0.7043010752688172,0.1506493506493506,0.4952966714905933,0.6928879310344828,0.6391470749043193,0.5723732549595886,0.1042553191489361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029268786712578,0.0054933360360816,0.0082985026173761,0.0112214639694532,0.0138879004463241,0.0164910673385249,0.0191817681472572,0.0216728059345122,0.024108082697162,0.0269805527123848,0.0297306714765926,0.0324792641865812,0.0348198865038243,0.0375469852221821,0.0401180428008337,0.0424931521008837,0.0447631374579342,0.0473937583001328,0.0497390364101391,0.0519017804123389,0.0691286099104178,0.0847416833226944,0.1006504406210658,0.1158827180625545,0.1305517743518313,0.1492252984505969,0.1660528354755511,0.1818181818181818,0.1966484268125855,0.2100806062102201,0.2267375412416708,0.2432233400838215,0.2580160484283645,0.2714301357862461,0.2841291005057795,0.2969974035196733,0.3095166213813693,0.3212663563515052,0.3327764708556362,0.343518720381866,0.3531375708605279,0.3637077308836969,0.3723677817673338,0.3803342411190959,0.3887855014291796,0.396865551922009,0.4035485609031789,0.4110269306678551,0.417991268638348,0.424387604265653,0.4266743882237276,0.4286146941809722,0.4307330005358603,0.4320417848255107,0.4338473423062067,0.4346747519294377,0.436093203022287,0.4369527001495063,0.4382436018146024,0.4398360303594443,0.4412433519385089,0.4421864467266743,0.4434041835357625,0.4448745358388657,0.4460422931419148,0.4471655925292647,0.4488286421458585,0.4500238208670795,0.4533148582391814,0.4550084208837918,0.4579723502304147,0.458796246359616,0.4612482414631027,0.4629443973162643,0.4640007598784194,0.4629651933036252,0.4598517603458925,0.4639639639639639,0.4659408151870463,0.4696024941543258,0.0,2.818598265636396,79.79256705872876,277.88853113273115,421.9116247779502,NC_public_baseline,49 +100000,95710,45073,419.0575697419288,9464,97.27301222442796,7364,76.16758959356389,2977,30.6028628147529,77.32373385663094,79.69492417178206,63.321321634088775,65.07561162991509,76.96961413288699,79.33933957166292,63.19143054071172,64.94839861280398,0.354119723743949,355.58460011914406,0.1298910933770543,127.213017111103,45.49996,31.62698473103704,47539.400271653954,33044.59798457532,155.22941,81.08633239788551,161442.2839828649,83975.89844100463,236.76683,110.584059035308,242306.8749346985,111619.1047667307,5324.69674,2360.227969917385,5511557.569741929,2414235.675600655,1821.14152,786.75597232427,1881096.0505694284,800366.6979974863,2944.67362,1215.3255205983912,3030639.8913384182,1232334.0414801338,0.43546,100000,0,206818,2160.881830529725,0,0.0,0,0.0,12101,125.6399540277923,0,0.0,22597,230.99989551770977,2324112,0,83547,0,0,5941,0,0,30,0.3029986417302267,0,0.0,1,0.0104482290251802,0,0.0,0.09464,0.2173333945712579,0.3145604395604395,0.02977,0.3085702843412095,0.6914297156587905,25.910784820940247,4.641966632127807,0.3309342748506246,0.1905214557305812,0.2413090711569799,0.2372351982618142,11.18401841836293,5.608560412409869,31.673669871289054,15763.569076508757,82.68483933568854,16.270677263431576,27.595177948407503,19.45328887503332,19.36569524881613,0.542368278109723,0.759800427655025,0.7012720558063192,0.5798511734401832,0.1159257175014068,0.7005223447475334,0.9184652278177458,0.8636363636363636,0.699228791773779,0.1681159420289855,0.4940613366424393,0.6926977687626775,0.6514745308310992,0.5456553755522827,0.1033519553072625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028875379939209,0.0056892512701938,0.008597239139261,0.0111985041562506,0.013786016604265,0.0163901027819372,0.0188675396728266,0.0214373985068377,0.0239692408376963,0.0267707181188808,0.029094750228184,0.0315401363897789,0.0343610793905537,0.0367580379225061,0.0393270024772915,0.0418075241137611,0.0439862044680123,0.0462949513394617,0.0486716922277099,0.0509007929478696,0.0681611727731197,0.0844227206598076,0.099712559271537,0.114305551172405,0.1281069737522013,0.1468240120969874,0.1643979501978716,0.1800932232249276,0.1949090986776047,0.2083114376105957,0.2258095781685818,0.2424153899420064,0.2578336578097299,0.27250656167979,0.2856325443721872,0.2989432641396575,0.3116222517206376,0.3238130563798219,0.3352090305746213,0.3455892456373379,0.3558822168763879,0.3656151677836649,0.374341677022309,0.3829141630386548,0.3910981393651951,0.3983707726487287,0.4057883781004689,0.4128185170535019,0.420017153104452,0.426923026028503,0.4294746227523878,0.4317110592007961,0.4336890675423201,0.4355251300834278,0.4377419981761373,0.439549432938856,0.4406442474495886,0.4424042272126816,0.4432516918003504,0.4448058950395399,0.446147449587058,0.4465744124283632,0.4486496807179074,0.4508101983002833,0.4518144324865168,0.4532503640937376,0.4543661726748064,0.453772889074175,0.4545389410331733,0.4530887795355647,0.4535649250595321,0.4541334498198099,0.4555160142348754,0.4553508428067424,0.4547729022324865,0.4568744662681469,0.4547444114428638,0.4548098898815707,0.4565645206634804,0.4541879669681478,0.0,3.065262617509324,75.83892255885831,278.76551501477866,436.2524294293892,NC_public_baseline,50 +100000,95770,44824,415.171765688629,9360,96.3454108802339,7324,75.78573666074972,2981,30.698548606035292,77.38153749659537,79.72292413774633,63.350937847410606,65.08305344126217,77.01623067743081,79.35632302751033,63.218230806111016,64.95314043609343,0.3653068191645587,366.6011102360045,0.1327070412995894,129.9130051687314,44.3333,30.88529782071468,46291.42737809334,32249.44953609134,153.27488,80.35968402422341,159385.13104312416,83249.39336349943,240.78928,112.11549279592406,247018.9725383732,113677.086800355,5347.79691,2382.026147997832,5538952.866242038,2442483.119061482,1803.84492,776.8407456613071,1867387.4490967945,795157.4001813873,2955.31464,1225.2914211866132,3046879.523859246,1244308.226524879,0.43193,100000,0,201515,2104.155789913334,0,0.0,0,0.0,11932,123.90101284327034,0,0.0,22899,234.77080505377467,2330466,0,83796,0,0,5843,0,0,37,0.3759005951759424,0,0.0,0,0.0,0,0.0,0.0936,0.2167017803810802,0.3184829059829059,0.02981,0.3094251944640873,0.6905748055359128,25.729811008962223,4.676977179250749,0.3453031130529765,0.1805024576734025,0.2441288913162206,0.2300655379574003,11.071334970383209,5.441101024171806,31.886285720555023,15648.492944490696,82.69291165941128,15.496230341055306,28.589283085117984,18.884483479789083,19.72291475344889,0.5439650464227198,0.7738275340393344,0.6979043100039541,0.5916913946587538,0.1112975391498881,0.6891814539210075,0.913157894736842,0.8656716417910447,0.7291139240506329,0.1273712737127371,0.4984758830912677,0.7176220806794055,0.6453790238836968,0.5496124031007752,0.1071176885130373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026332313800157,0.0054229934924078,0.0080962623270159,0.0106232798106903,0.0133802387294873,0.0160428351842991,0.0186121417213682,0.0212086263382969,0.0242596415213881,0.0268279206826692,0.0291745657631808,0.0318719783208959,0.0342898857689262,0.0369428456699237,0.03939103258347,0.0418978539619561,0.0444681313450135,0.046991136681698,0.0495023790230422,0.051841362722947,0.0695351798125691,0.0858496585049524,0.1011218284755714,0.115448880295085,0.1291811571293076,0.147013750171745,0.1643703499586663,0.1799836262532827,0.1949540550059232,0.2095152333783581,0.2260307891053934,0.2410518231673679,0.2560710481118334,0.2699639304842059,0.2832733714009088,0.296144943907328,0.3091562179286957,0.3205951483934817,0.3320399364647152,0.3428705548304366,0.3523904313307949,0.3625577721874451,0.3722715052171544,0.3805034840907182,0.3879526276111962,0.3952837286170619,0.4028821113782051,0.4101178719337368,0.4169845100023351,0.42347606520101,0.4254196577967291,0.4274776514733473,0.4292723622069511,0.4312521769418321,0.4330391146556745,0.4342133604110896,0.4350577088168897,0.4363471523942965,0.4383202099737532,0.4398154796094198,0.4408508872838365,0.4419336840427227,0.4427728051799657,0.4427837036030527,0.4438173547084438,0.444726273515113,0.4443963027151935,0.4457459337301461,0.4460516028146989,0.4446907112633488,0.4449021150553061,0.448104008667389,0.4478373143963847,0.4480174836091165,0.4496138996138996,0.4508495145631068,0.4482218392605358,0.4443521594684385,0.4527547816157579,0.4508487958941966,0.0,2.7153522981792486,77.4511310916443,282.1739659131923,426.0422790576757,NC_public_baseline,51 +100000,95851,44864,414.1010526755068,9268,95.4293643258808,7169,74.14633128501528,2901,29.81711197587923,77.37299817448195,79.67380250373341,63.35320242165369,65.05662725158335,77.01935403544084,79.3200074527744,63.22434219909268,64.93130618383445,0.3536441390411085,353.79505095900754,0.1288602225610162,125.3210677488994,44.45694,30.960327588279988,46381.07062002483,32300.24474265264,154.51073,81.47147934863831,160518.54440746576,84317.72161859377,238.80747,111.7772900206272,245235.76175522423,113608.69411549292,5182.24347,2296.28023027414,5357364.367612231,2346802.37247183,1724.25539,741.3993758674507,1781151.1512660277,756062.8774765192,2860.6542,1181.62657175118,2940892.218130223,1194379.1711342242,0.43185,100000,0,202077,2108.230482728401,0,0.0,0,0.0,11977,124.25535466505303,0,0.0,22635,232.28761306611304,2327519,0,83728,0,0,5975,0,0,31,0.3234186393464857,0,0.0,0,0.0,0,0.0,0.09268,0.2146115549380572,0.3130125161847216,0.02901,0.3090964715480318,0.6909035284519682,26.187776227686463,4.64443967772714,0.3377040033477472,0.1908215929697307,0.2343423071558097,0.2371320965267122,11.032388511963967,5.4563033410957615,30.87009301160816,15666.755699736252,80.34773018029948,15.747402802159806,27.178727200213316,18.944007924335377,18.477592253590974,0.5406611800809039,0.7675438596491229,0.6906237092110699,0.5776470588235294,0.1023809523809523,0.6954255935147655,0.931758530183727,0.8696369636963697,0.7258485639686684,0.1148459383753501,0.4915472252848217,0.7041540020263425,0.6308539944903582,0.5345482156416097,0.0990173847316704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026736884747822,0.0050371451447799,0.007841108507552,0.0106411063501411,0.0131956163715104,0.0156351791530944,0.0184583082771905,0.0211656410413413,0.0240627777948073,0.0269813984897783,0.029803801034783,0.032482789046549,0.0350653621639398,0.0375292071105804,0.0402985536231585,0.0430737137782183,0.0456878000331071,0.047967420701947,0.0504891067311886,0.0529365863808978,0.0703962460896767,0.0868438378497006,0.1019172341540073,0.1167834150747224,0.1309137633230821,0.1491094631425492,0.165859551335714,0.1810353076260644,0.1956814106395696,0.209183946846702,0.2254582243604232,0.2410948834091867,0.2569844548320469,0.2707836661490344,0.283814723494188,0.2964854743280076,0.3088831099255555,0.3206776226924808,0.3318577541685111,0.3429206582023193,0.3533694469523346,0.3628805620608899,0.3717430714361885,0.3800213508618311,0.3881188600330707,0.3950222726767932,0.4018841652345171,0.4082696892810241,0.4144514822698718,0.421531904755602,0.4239161273761433,0.4258619736987512,0.427896248708769,0.4296149992012431,0.4320628237858497,0.4332846041394168,0.4338529144840543,0.4352721689313015,0.4366277071158473,0.4381432169845268,0.4405253920625035,0.442219166616847,0.4440028748995899,0.4448704359396495,0.4457246816252274,0.445173013114236,0.4463156070365984,0.4474616292798111,0.4470990978140712,0.4471184803605924,0.4489589091579141,0.4537806061913493,0.4548544311914839,0.4553237858032378,0.4596393094801813,0.4632379572618616,0.4693909503679349,0.4653589315525877,0.4720884103145367,0.4698091156992598,0.0,2.3972067348153274,76.91018483857333,258.12502302595425,430.3452827108716,NC_public_baseline,52 +100000,95780,44816,417.3940279807893,9369,96.29358947588224,7281,75.31843808728335,3014,30.92503654207559,77.39816222968327,79.72621993842296,63.35848721039546,65.07895600553788,77.02239842024895,79.35249593264774,63.22041659541864,64.94532081691794,0.3757638094343178,373.724005775216,0.1380706149768187,133.63518861993384,45.05116,31.37302467960816,47036.08268949677,32755.29826645245,155.03084,81.5573250032574,161123.92983921486,84413.22301446795,241.47216,112.39084886517148,248231.18605136767,114309.10153166196,5314.12033,2379.2881389301424,5493670.087700982,2429821.8628387647,1802.8496,786.4186743979682,1861080.068907914,799977.7876444843,2982.08,1245.3046275361598,3061190.5617039045,1255521.723117875,0.43226,100000,0,204778,2138.003758613489,0,0.0,0,0.0,12057,125.13050741282105,0,0.0,22948,235.76947170599288,2324944,0,83599,0,0,5796,0,0,33,0.3445395698475673,0,0.0,0,0.0,0,0.0,0.09369,0.2167445518900661,0.3216992208346675,0.03014,0.3064353439580391,0.6935646560419608,25.908186713359388,4.686867442371842,0.3349814585908529,0.1903584672435105,0.2447466007416563,0.2299134734239802,11.092547480983391,5.428104095054525,32.343728215401626,15607.056317130608,82.55695477659626,16.18708379946054,27.77402377518192,18.87086370697097,19.724983494982837,0.5359153962367806,0.7532467532467533,0.6990569905699057,0.5651135005973715,0.1161616161616161,0.6885428253615128,0.9099307159353348,0.8433333333333334,0.7322834645669292,0.1536458333333333,0.4858654021521065,0.6820566631689402,0.6519847743338771,0.5158546017014695,0.105865522174535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025926150979319,0.0053105237554726,0.0080245911617903,0.0107238605898123,0.013144919432725,0.0156024182221588,0.018443980231314,0.020926009060115,0.0234575343025572,0.0258850010231225,0.0280711819606798,0.030425547198079,0.0330195465849999,0.0353331069050339,0.037846921522537,0.040278853601859,0.0425184143010841,0.0448578361226902,0.0469846086694449,0.0495173232528351,0.0670325771646806,0.0828888191611756,0.0981903204160375,0.1139559815854196,0.1286860444275759,0.1470920951082072,0.163659506762132,0.1791750031927121,0.1939094861195671,0.2080518199172082,0.2249760342951928,0.2409346603202077,0.2556319890457405,0.269871276525996,0.283311345646438,0.2964967624107588,0.3086963797623696,0.3201989288446825,0.3318916587204286,0.3431184878669433,0.3531100256950392,0.3623403831973689,0.3708453842871367,0.3788186150355904,0.3873718268400374,0.395898119354361,0.4031033013310606,0.4103923918309069,0.4167922077922077,0.4229414879534022,0.4252926387499662,0.4271585839192232,0.4284844882246377,0.4296332859092361,0.4319426005757842,0.4324498930950147,0.4336400101871896,0.4358026118109326,0.4365399187159881,0.4379891685708631,0.4402718776550552,0.4417155864382412,0.4436354400372518,0.4465107881195269,0.4475795699706688,0.4490059249506254,0.4495750057431656,0.449690427051913,0.4512350484818458,0.4532959326788219,0.457344985434873,0.4584719390492542,0.4596553697462961,0.4569172408453975,0.4608003070722579,0.4579268292682927,0.4632891660171473,0.4649377593360996,0.4614079728583545,0.4624367458154924,0.0,2.674327073558469,79.99045775365376,280.71874225760325,415.01208374597655,NC_public_baseline,53 +100000,95857,45057,417.99764232137454,9317,95.79895052004548,7279,75.15361423787517,3007,30.73327978134096,77.3584022892406,79.63911404213081,63.35300198276878,65.04107114816324,76.99779397393108,79.2834134694351,63.220764818167474,64.91431043736445,0.3606083153095198,355.7005726957101,0.1322371646013067,126.76071079879137,44.4092,30.95161505263374,46328.59363426771,32289.363377357666,154.18266,81.1862567984912,159996.98509237717,83845.63130339068,240.30875,112.62209753155555,246128.90034113315,113841.07197805156,5265.07999,2354.2711312653314,5444708.680638868,2408092.8270917423,1774.70694,774.158206303354,1830005.8837643573,786221.6486464421,2957.46278,1217.17866501101,3029509.832354445,1225424.0811938024,0.43385,100000,0,201860,2105.8451651939868,0,0.0,0,0.0,11960,123.93461093086576,0,0.0,22867,234.07784512346515,2326313,0,83733,0,0,5805,0,0,33,0.312966189219358,0,0.0,0,0.0,0,0.0,0.09317,0.2147516422726748,0.3227433723301492,0.03007,0.3161906697835145,0.6838093302164854,25.870397619623937,4.564084671375506,0.3306772908366533,0.199203187250996,0.2343728534139305,0.2357466684984201,11.262185968159224,5.815949589109111,31.982451708747337,15731.218095733915,82.3053301867455,16.845495926472527,27.18759371386881,19.398787652413823,18.873452893990336,0.5528231899986262,0.7675862068965518,0.6967179061071874,0.5932400932400932,0.126611957796014,0.7055524397083567,0.9195402298850576,0.8700854700854701,0.7309644670050761,0.1653116531165311,0.5032751091703057,0.7024630541871921,0.6410537870472008,0.5521936459909228,0.1159311892296185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026627788071155,0.0057654700023305,0.0082563317138481,0.0108743108367431,0.0135291725960561,0.0159985344853906,0.0187864216145727,0.0215105308786781,0.0239322871466056,0.0264774737014281,0.0289188940186514,0.0310840458469172,0.0336763618437268,0.0363017291925977,0.0391393062511593,0.0417952980289717,0.044182149211735,0.0466196117450742,0.0489983279502331,0.0511267869405081,0.0690783986655546,0.0853942680416679,0.1005602974289155,0.1157420533660964,0.1299286835424369,0.1484517785266805,0.1655079590495771,0.1811250531688643,0.1959758766077814,0.2098582791964151,0.2264768591303598,0.2418161362210346,0.2566840268339621,0.2707809390513263,0.2842986295945975,0.2976129846549014,0.3099385188739246,0.3214876311970571,0.3322511805303305,0.3425826128832527,0.3535585209897136,0.3632721905966687,0.3724262263971913,0.3813138896563322,0.3898226639384196,0.3975330309359898,0.4045436278695936,0.4114859427491154,0.4190198578976134,0.4254839266050177,0.427958357588639,0.4295953949189129,0.4311414567810295,0.4330812854442344,0.4351404330455341,0.4366116761061127,0.4388009194228068,0.4402767662053896,0.4418608659680088,0.4435347464641739,0.4457719719454789,0.4482221956183407,0.4498041291688724,0.4505211277158554,0.4516238983298437,0.4529281534974435,0.4543172835588379,0.4568702290076336,0.4590548661238132,0.4592625392480476,0.4595057386153277,0.4629918716692685,0.4630661797680825,0.463689776733255,0.4664657853810264,0.4666502584297317,0.4635899073778345,0.4657448145820239,0.4640318453227182,0.462052693668895,0.0,3.0173906027265507,78.74754922362288,277.78387551815285,419.4562966168172,NC_public_baseline,54 +100000,95736,44790,416.73978440711954,9419,97.02724158101444,7339,76.11556781148157,2973,30.73034177320966,77.38965647392791,79.75702046622193,63.34469261111818,65.09420203127259,77.0302731282741,79.39169549450386,63.2157740655157,64.96519121899333,0.3593833456538107,365.3249717180671,0.128918545602481,129.0108122792617,44.02222,30.660394291003747,45982.93223029999,32025.98217076517,154.20882,80.26314408905573,160537.63474555023,83298.48133309907,239.12523,110.80750760326106,246511.30191359573,113175.38312947447,5317.53152,2358.4196663602397,5521693.47998663,2430785.301621373,1797.6227,771.7086826695022,1866569.59764352,795017.8646554775,2931.78902,1201.852577771824,3033764.853346704,1231517.3891530873,0.43299,100000,0,200101,2090.133283195454,0,0.0,0,0.0,11949,124.23748642099105,0,0.0,22760,234.40503050054315,2333438,0,83861,0,0,5903,0,0,36,0.376034093757834,0,0.0,1,0.0104453914932731,0,0.0,0.09419,0.217533892237696,0.3156386028240789,0.02973,0.3209653092006033,0.6790346907993967,25.70571015721574,4.659695984604363,0.3286551301267202,0.196484534677749,0.2323204796293773,0.2425398555661534,11.083600112426044,5.479223197214651,31.603700697207696,15612.543642487335,82.48414381385781,16.656089074997418,27.1066538363059,19.892907601545232,18.828493301009274,0.5372666575827769,0.7309292649098474,0.6927860696517413,0.5741573033707865,0.1149560117302052,0.6893982808022923,0.8959390862944162,0.8507462686567164,0.7199017199017199,0.1290322580645161,0.4898105112620665,0.6688931297709924,0.6401326699834162,0.5309541150764748,0.1114369501466275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025828539016287,0.0052816722930162,0.0079054993454368,0.0104537050206229,0.0128780249626171,0.0154067044112256,0.0182808087193238,0.0208041975888363,0.0234585820590399,0.026061232636934,0.0284446175608356,0.0310145165595548,0.0336681299024395,0.0362258400008237,0.0385139037874412,0.0407916494419181,0.0430235568211234,0.0451390690002178,0.0475799494891755,0.0500010419054366,0.0675694016683545,0.0837921001402465,0.0999496422501521,0.1149205213713877,0.1291125621037752,0.1474908783247845,0.1651672996541554,0.1807201992040351,0.195735047572266,0.2096464608554853,0.2259043927648578,0.2416762217943448,0.2565566283924843,0.2706813782846894,0.2838875806061139,0.2972685585166478,0.3099689863673888,0.3218132349965147,0.3329627570872707,0.3435214121364058,0.3532018792381217,0.3623293520349075,0.3709469450523451,0.3792777032208589,0.3868255761684343,0.3942918460229165,0.4017116507530762,0.4085481630624546,0.4155296742062668,0.4223826714801444,0.4243830700109287,0.4267109964545367,0.4290576803570419,0.4307607545200156,0.4325185814081654,0.4329830383480826,0.4340057179161372,0.4347890500255148,0.4358948034837362,0.4372560953778955,0.4386762330490966,0.4393072767715284,0.4398484370066309,0.4413650372303331,0.4420524990313831,0.4429597285424941,0.4446905837337092,0.4457789104810449,0.4474097331240188,0.4498442115485777,0.4515843429636533,0.4538461538461538,0.4520494972931168,0.4502738986189337,0.4501519179642992,0.447981739548294,0.4490525007766387,0.4492992580379225,0.4480135249366018,0.4401268834258525,0.0,2.108647191630402,77.9225567906864,275.859290440053,432.75896920386464,NC_public_baseline,55 +100000,95766,44789,416.5048138170123,9373,96.63137230332268,7264,75.32944886494163,2973,30.72071507633189,77.34687979821054,79.70610795149753,63.33382307926016,65.08138073774215,76.99009768731726,79.34320086922581,63.20586169395602,64.9532663389857,0.3567821108932776,362.9070822717182,0.1279613853041326,128.11439875645192,45.50986,31.687428367823745,47521.93889271766,33088.39083581203,154.45395,80.62186428125055,160746.96656433388,83651.5234354824,239.50361,111.17886738709484,246573.8362258004,113456.51227804642,5254.21737,2322.8553234932265,5449642.169454712,2389188.833094201,1785.34226,773.3786655619339,1845087.6824760356,788745.4789106387,2936.2391,1202.2361935532342,3035611.38608692,1229421.8188600496,0.43268,100000,0,206863,2160.0881314871667,0,0.0,0,0.0,12016,124.90863145584026,0,0.0,22768,234.28983146419395,2325369,0,83653,0,0,6083,0,0,36,0.3654741766388906,0,0.0,0,0.0,0,0.0,0.09373,0.2166266062679116,0.3171876667022298,0.02973,0.3139171621485437,0.6860828378514562,25.92094128075624,4.701267156917969,0.3345264317180617,0.1903909691629955,0.2380231277533039,0.2370594713656387,10.93951173568442,5.328614869582575,31.72298916528167,15623.225304807767,81.91257703662107,16.21895220593664,27.39676953927345,19.24204803063345,19.054807260777523,0.5386839207048458,0.765003615328995,0.6925925925925925,0.5638792102206737,0.1162521688837478,0.7017543859649122,0.9324675324675324,0.8707964601769912,0.7007481296758105,0.1894150417827298,0.488476773496579,0.7004008016032064,0.6386058981233244,0.522331566994701,0.0970802919708029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026752057071055,0.005283332657283,0.0081116751269035,0.0106304053985385,0.0131439733051192,0.0156717785788476,0.0183606891630135,0.0210800326663944,0.0238801087689885,0.0262522013351353,0.0286663385826771,0.0310497782158698,0.0336175070186443,0.0358489399839297,0.0382376617747228,0.0407083122279996,0.0431401381395686,0.0454470009751239,0.0476284523351662,0.0502217964470916,0.0673840662150737,0.0835869917678685,0.0996215179123724,0.114851443525418,0.1289901044356156,0.1477978781858912,0.1645557545759981,0.179727617771824,0.1946151220344768,0.2085582690659811,0.2248397229034895,0.2408273983854059,0.2553235409152145,0.2689703376873006,0.2830288181588459,0.2961622734214195,0.3085330626902959,0.3195884403463398,0.330639210834005,0.3410067490919091,0.3514158042184714,0.3608148451677105,0.3695482220274336,0.3788469614254004,0.3869336962862142,0.3944356140415727,0.4029143852351179,0.4104331210191083,0.4179874964331111,0.4231877544546079,0.4253019364415356,0.427749254720106,0.4301192225110182,0.43258793350821,0.4339915289625962,0.4349377759318227,0.4357982845594437,0.4366748731845145,0.4379957671593509,0.4392104647606024,0.440071826859465,0.4417182817182817,0.4426861561275289,0.4442582106455266,0.4472111796697802,0.4487227051091795,0.4492068555520111,0.4509294038331888,0.4538714991762768,0.4572529924934064,0.4568310089089976,0.4573710808020431,0.4596165020337013,0.4609873851425011,0.4650450105343804,0.4651303820497271,0.4726642508271624,0.4724210526315789,0.4677838774920543,0.4654471544715447,0.0,1.9321623451495007,76.74713076568685,279.3391591072568,425.7711753032433,NC_public_baseline,56 +100000,95747,44536,415.09394550220895,9303,95.72101475764254,7272,75.30262044763805,2905,29.922608541259777,77.36211040614715,79.72355342177084,63.32787542470121,65.07545485003838,77.00984657170999,79.368470462326,63.20008573634328,64.94943654755497,0.3522638344371671,355.082959444843,0.1277896883579359,126.01830248341628,44.76186,31.159150744411946,46750.14360763261,32543.213619655908,152.22182,79.71082934136031,158362.53877406078,82630.6718135924,241.0503,112.9803325503573,247186.29304312405,114539.0749994366,5277.2039,2360.214686888119,5468867.484098719,2422409.21163194,1800.1741,781.545640678312,1864063.1038048188,800233.2213198628,2866.77714,1180.309427922009,2955210.586232467,1200542.7403516737,0.42993,100000,0,203463,2125.006527619664,0,0.0,0,0.0,11873,123.34590117706038,0,0.0,22965,235.3285220424661,2326387,0,83687,0,0,5786,0,0,25,0.2611047865729474,0,0.0,0,0.0,0,0.0,0.09303,0.2163840625218058,0.3122648607975922,0.02905,0.3147109797125089,0.6852890202874911,25.7625832591033,4.64231068089724,0.3278327832783278,0.1933443344334433,0.2366611661166116,0.2421617161716171,11.446566166968598,5.80080559481369,30.76365903497021,15478.9199606131,82.1426079845765,16.270164113516156,27.11608165143408,19.78364131256312,18.97272090706315,0.5485423542354235,0.751778093883357,0.7055369127516778,0.5871663827370812,0.125508425334108,0.7140449438202248,0.9178743961352656,0.8675496688741722,0.7580246913580246,0.1680672268907563,0.4949016751638747,0.6824596774193549,0.650561797752809,0.5361356932153393,0.1143695014662756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002725347760453,0.0056381446853387,0.0079687341386661,0.0105367975044961,0.0133767356695997,0.0162239784902432,0.0187628739828278,0.0210630564404149,0.0234049079754601,0.0257539296502995,0.0284788382849114,0.0309184103212022,0.0332301108013292,0.0358302160942282,0.0383523753496196,0.0404346387659732,0.0425485648013917,0.0444160856573705,0.0467751156384803,0.0489339319007989,0.0669004895666969,0.083621907203013,0.0994934611391356,0.1142009718336523,0.1277280254844256,0.1451295610787943,0.1610227031614682,0.1765075376884422,0.191415015708149,0.2053149162975752,0.2211642035417295,0.2370674258250976,0.2526060368653566,0.2660765283233579,0.279350889554342,0.2922295986788877,0.3049044799463747,0.3169389064628339,0.3282099599287117,0.3394377657319016,0.3494584419345496,0.3590145891389363,0.369094441548595,0.3772250963258153,0.3860745640701379,0.3935901074897261,0.4007572338398275,0.4064149307768797,0.4133108458744162,0.4199738161044182,0.421952043228639,0.4239502762430939,0.4261481701369747,0.428542407313357,0.4300334168755221,0.430503831830353,0.4313347767942431,0.4326345328491251,0.4340659340659341,0.435781050969698,0.4371806233854393,0.4375472073146492,0.4390799746782021,0.4398223304473304,0.4415168498435112,0.4426194988418614,0.4435973416956759,0.4456331947045938,0.4456845238095238,0.4479775730877052,0.4500964098797172,0.4528665488999518,0.4530404329831264,0.4549781223612497,0.450857738602976,0.4491494752081071,0.4510048294126811,0.4535743631881676,0.4548251748251748,0.4538184726109556,0.0,2.5181208633371384,79.16672627139238,276.59609566215573,419.3229650930192,NC_public_baseline,57 +100000,95751,44752,415.5779051915907,9394,96.6360664640578,7269,75.236812148176,2972,30.60020260885004,77.32840490063373,79.68819635220964,63.31625382636724,65.06437507852085,76.96634811475393,79.32416077178372,63.1845256361842,64.93446961342232,0.3620567858798011,364.0355804259201,0.1317281901830398,129.90546509853118,44.57926,31.0055594922818,46557.48765025952,32381.447183091357,154.5862,81.03630738392934,160771.73084354211,83958.04673967457,237.42231,110.71976032849372,243389.4685173001,112013.35425983756,5282.94799,2343.85698675742,5474053.231820033,2404541.41242176,1772.66811,763.1035263668783,1830193.1154766008,775844.5534675458,2936.9031,1210.9558086118784,3027233.344821464,1231472.2717503682,0.43177,100000,0,202633,2116.2494386481603,0,0.0,0,0.0,12016,124.78198661110588,0,0.0,22576,231.20385165690172,2326431,0,83716,0,0,5894,0,0,35,0.3655314304811438,0,0.0,0,0.0,0,0.0,0.09394,0.2175695393380735,0.3163721524377262,0.02972,0.3087417887822132,0.6912582112177867,25.829136632645135,4.62610824530971,0.3322327692942633,0.1902600082542302,0.2374466914293575,0.2400605310221488,11.059571981458038,5.516590430128343,31.72493861001209,15613.16737934864,82.00879102438995,16.02296822352169,27.33681336960464,19.66409664776604,18.98491278349758,0.5436786353005916,0.7570498915401301,0.687784679089027,0.5925501432664756,0.1216685979142526,0.7074159907300116,0.915,0.859271523178808,0.7168367346938775,0.1666666666666666,0.4926934872812556,0.6927772126144456,0.6305908337934842,0.5565410199556541,0.1110315186246418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027360335620116,0.0052739406478833,0.0081021808877878,0.0106709485965161,0.0132550711074037,0.0158898305084745,0.018365557187143,0.021215338751174,0.0240446543580936,0.0263475750813765,0.0293475475372866,0.0317781382836725,0.0344405594405594,0.0368119644034278,0.0393470027964956,0.0416864779939222,0.0441276939320539,0.0463879036774314,0.0487571701720841,0.0508133891561998,0.0678120009602438,0.084505569209852,0.0998825651134504,0.1150142953245879,0.1291634616397795,0.1477601843434877,0.1639801480413158,0.1794225017827304,0.1940159801743291,0.2083436109174754,0.2247465770395027,0.2412427360971334,0.2562300041351992,0.2697020084890386,0.2830637435722387,0.2965027370847277,0.3093406286639495,0.3202081409231185,0.3312314666484883,0.3420304149368076,0.3517739861695104,0.3608847360779355,0.3696868406704122,0.3788965368121373,0.3874430946758526,0.3941590516176834,0.4010299566664573,0.4078628157000944,0.4144207392383998,0.4212477982757022,0.4241018288064062,0.4257095851018235,0.4277519687269843,0.4292809736119784,0.4316156238784543,0.4324407747511382,0.4340998675454415,0.4356739198886329,0.4370862068965517,0.4373399689855386,0.4393804723992511,0.4409488090013166,0.4428532201170183,0.444326377427596,0.4454797586609575,0.4474538686940683,0.4484830973707021,0.4495634996495252,0.4511205976520811,0.4540104796453043,0.4545748912942918,0.4549757934373319,0.45680586547657,0.461437504825137,0.4605590656710702,0.4601300891351481,0.4589755565934921,0.4622425629290618,0.4620396600566572,0.461754104925911,0.0,2.6091328617494445,76.58245347438141,279.8156219644714,423.9695727810748,NC_public_baseline,58 +100000,95733,44841,416.7215066904829,9367,96.51844191658049,7312,75.84636436756395,2999,31.002893464113733,77.31464774318667,79.68068886491582,63.30648041847581,65.05600585183461,76.96436418096164,79.3236639949819,63.17983601410987,64.92872322242025,0.3502835622250302,357.0248699339231,0.1266444043659405,127.28262941436697,44.90244,31.229104321397077,46903.82626680455,32621.04428086143,154.07435,79.9583486989683,160396.1538863297,82976.6629051302,236.76766,109.69906746321328,243543.34451025247,111670.2554073458,5308.4401,2339.351271678582,5513616.725684978,2412190.0198244927,1800.9002,774.8174269485356,1870518.5045908932,798701.2910370885,2959.70792,1205.678539026176,3063092.350600106,1236410.9121105282,0.43265,100000,0,204102,2131.9921030365704,0,0.0,0,0.0,11949,124.25182538936416,0,0.0,22495,231.19509469044112,2325328,0,83582,0,0,5745,0,0,34,0.3551544399527853,0,0.0,0,0.0,0,0.0,0.09367,0.2165029469548133,0.3201665421159389,0.02999,0.3063035804336863,0.6936964195663137,26.049274440077436,4.61359545695754,0.3395787746170678,0.1862691466083151,0.237144420131291,0.237007658643326,10.830825418497524,5.389349769105813,31.578301924843355,15652.22608762591,82.01585843412484,15.72807333727194,28.040102125857807,19.195399556972426,19.052283414022668,0.5397975929978118,0.762848751835536,0.6939186467982279,0.5533756491633006,0.1303344867358708,0.696987951807229,0.9155313351498636,0.8576271186440678,0.7214484679665738,0.1627906976744186,0.4936305732484076,0.7065326633165829,0.6428948758584258,0.5094614264919942,0.1223021582733813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025528035253001,0.00513023288824,0.0077143263160031,0.0104969007214713,0.0132153212269189,0.0157096866212967,0.0180981626386182,0.0210226460558289,0.0238586878743892,0.0263093239425084,0.0287800026657644,0.0313578117299162,0.0337183825874075,0.0363111798042246,0.0387493677680405,0.0412173966980595,0.0434395418914581,0.045563026605238,0.0481107159939276,0.05056829428372,0.0678429734808937,0.0845247315429217,0.1006923318997167,0.1155544806410229,0.1296393926613243,0.1470414013412596,0.1633731666419035,0.1791322863987224,0.1941466334591087,0.2077498417195162,0.2250897835488498,0.2403315815137888,0.2550367747207845,0.2692337202547324,0.2824341611892893,0.2962440584603082,0.3093594405594405,0.3217235310046033,0.3327491236855283,0.3434580244785382,0.3539009643615601,0.3634135184902828,0.3726795803066989,0.381340449060051,0.3892562688003118,0.3971109765591212,0.4041080430366413,0.4116349635371513,0.4178599221789883,0.4246336403398655,0.4269291487323411,0.429623703376738,0.4311121148390193,0.4329339842674818,0.4335292888902151,0.4347538359727288,0.4355041648748944,0.4361526253141118,0.4373482983594705,0.4388370126482071,0.4395668770550663,0.4406776283009467,0.4421108179419525,0.4435723951285521,0.4459502125075895,0.4461193833179602,0.447588461649741,0.4497305570613182,0.449195958445994,0.4503185740785547,0.4521868050407709,0.4547668001298561,0.4571742077067062,0.4545596624208799,0.4556790720154664,0.4590643274853801,0.4579792256846081,0.4598111227701993,0.4670641680863145,0.4661893396976929,0.0,2.0590697044546284,74.29434641477684,278.62227554791,438.5987178989192,NC_public_baseline,59 +100000,95805,44706,415.5211105892176,9344,96.16408329419131,7257,75.06915087939042,2921,30.15500234852043,77.3504688262772,79.68367208086032,63.33176974345843,65.06049684386622,77.00006481367774,79.32979148181559,63.20473312196444,64.93519847041546,0.350404012599455,353.8805990447287,0.1270366214939926,125.29837345076088,44.8657,31.21189919434354,46830.22806742863,32578.570214856783,154.02188,80.5938310925773,160087.5737174469,83444.34120617642,241.03319,112.21085338632204,247016.94066071708,113726.39681881218,5246.01059,2340.090837845377,5429808.559052241,2396647.7092483416,1822.01378,790.3818167506565,1884688.8262616773,807884.9399829415,2895.23496,1191.0414224429614,2989754.376076405,1213304.6848891743,0.43137,100000,0,203935,2128.646730337665,0,0.0,0,0.0,11915,123.65742915296696,0,0.0,22897,234.4136527321121,2325919,0,83754,0,0,5943,0,0,38,0.3966390063149104,0,0.0,0,0.0,0,0.0,0.09344,0.2166121890720263,0.3126070205479452,0.02921,0.304876812328906,0.6951231876710939,25.94929147504868,4.601309378308567,0.3396720407882045,0.1927793854209728,0.2381149235221165,0.229433650268706,11.126774086177392,5.577452175938626,31.11347068093443,15531.497111107024,81.74798777499929,16.13260338907898,27.831944401970837,18.672014945443788,19.11142503850568,0.5510541546093427,0.7476769120800572,0.7058823529411765,0.6006006006006006,0.1232638888888889,0.7010613207547169,0.8982188295165394,0.8490230905861457,0.7842105263157895,0.1666666666666666,0.5053048012947312,0.6888667992047713,0.6635120925341745,0.5463035019455252,0.1118421052631579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027554348927203,0.0054652565831499,0.0079975641936466,0.0107901608363898,0.0133246536607197,0.0161434886231692,0.0187547804803426,0.0212094600114369,0.0237720338636456,0.0261347583072292,0.0283625401187412,0.0307952970169944,0.033257576536646,0.0355513445040628,0.0380255979208135,0.0403488287990411,0.0430736423676528,0.0454521880737275,0.0477130771868926,0.0501384637807899,0.0671319479218828,0.0828706753238606,0.0983505197853789,0.1127454585570346,0.1270056997165945,0.1455021981738248,0.1616388679765452,0.1776075740652093,0.1923877649068488,0.2064767783278681,0.2233414043583535,0.2390672129906915,0.2540253362595337,0.2679084817280469,0.2807191268374263,0.2941952214193891,0.3065749662264003,0.3183194677413907,0.3300542972033533,0.3402933761173504,0.3502964198045482,0.3595267629367847,0.3681992019607611,0.376923353681206,0.3846612479314708,0.3919628408009981,0.3990686932837975,0.4065189081531037,0.413896142703096,0.4206065421798437,0.42262991976837,0.4249076648545462,0.427189553591661,0.4292668749545884,0.4317230658854478,0.4326906776395888,0.4330393454649846,0.4346559883509283,0.4366975319266118,0.4383324933400532,0.4388180874162182,0.4403858033917219,0.4420625356757785,0.4442587406269762,0.4448067750413705,0.4473350923482849,0.4483802167396818,0.4479080430490989,0.4502679110038678,0.4537141475990977,0.4563684137740285,0.459652706843718,0.4602232854864433,0.46230923385232,0.4655271199388846,0.4646367777511388,0.4648850217526414,0.4722336487042369,0.4742411584516847,0.4816549570647931,0.0,2.604730198436482,75.27100726939726,281.15681973204624,424.22388343142137,NC_public_baseline,60 +100000,95702,44789,416.85649202733487,9253,95.2540176798813,7250,75.01410628826984,3000,30.814403042778626,77.30949638025908,79.67014146080672,63.31695901961641,65.05964578162224,76.94390258841919,79.30480575832993,63.18258280442033,64.92918999580613,0.3655937918398848,365.33570247678426,0.1343762151960845,130.4557858161104,45.03686,31.2977540926717,47059.47629098661,32703.343809608683,154.18807,80.832330303509,160354.03648826564,83705.57326919687,236.69868,110.60394663763212,242857.51603937225,112097.9278155606,5280.27667,2360.8424153827145,5465363.660111597,2414980.8034788305,1798.91395,776.7626791068916,1862363.84819544,794359.3698774485,2959.73866,1231.6781028587602,3043422.3527199016,1244840.6261416608,0.43241,100000,0,204713,2139.0671041357546,0,0.0,0,0.0,12001,124.63689369083195,0,0.0,22485,230.52809763641304,2323333,0,83632,0,0,6081,0,0,30,0.3134730726630582,0,0.0,0,0.0,0,0.0,0.09253,0.2139867255613885,0.3242191721603804,0.03,0.310939907550077,0.689060092449923,25.891116768238387,4.631204934566992,0.3499310344827586,0.1754482758620689,0.2395862068965517,0.2350344827586206,11.058486595288665,5.518119940375293,32.19214746663504,15577.298826626737,81.8191849686261,14.798173576788653,28.640500658409373,18.98310263916071,19.39740809426737,0.5390344827586206,0.764937106918239,0.6897910918407568,0.5815727699530516,0.1116868163500287,0.6825667234525837,0.9110512129380054,0.8679549114331723,0.7142857142857143,0.1302083333333333,0.4929859719438877,0.704772475027747,0.6320459290187892,0.5428354814253222,0.106430155210643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116213123221,0.0050381153191144,0.0076495414333252,0.0104107418542293,0.0130432572561378,0.0156238867344549,0.0183458186821586,0.0209458286974185,0.0234046032459834,0.0259029177881712,0.0283418239219344,0.0308954442311049,0.0335016298368106,0.036003007116155,0.0382517042583253,0.0406257103300064,0.0430674008445806,0.0456242610300981,0.0477185323770917,0.05008698550936,0.0669618613977192,0.083747657975444,0.0994923112425787,0.1140510469139437,0.128544762346688,0.1459681854719296,0.1634179726876266,0.1800151174798522,0.1945474163257021,0.2086054717244189,0.2250657299254342,0.2405947456195447,0.2552466582487917,0.2689305614853252,0.2824006255988898,0.2954313595032158,0.3074868700413454,0.3197426101851539,0.3314083690474837,0.3420288857532895,0.3527536970933197,0.3619758409391805,0.3703374251319457,0.3787931593938156,0.387339552329688,0.3950823319982198,0.4020452976974716,0.4090874272290879,0.4156698564593301,0.4219516723694331,0.4244807884974682,0.4266642687178352,0.4278061224489796,0.4301365882011043,0.4316148529367762,0.4320595135201877,0.4337189607235307,0.4350685930147789,0.4354123150753509,0.4365426300578034,0.4374490202401502,0.4394282621333921,0.4402031837793033,0.4423378215753502,0.443267183791323,0.4430081322349077,0.4435300959581273,0.4444729007267023,0.4440948260449815,0.4456504196255649,0.4485760592729798,0.4509496239380985,0.4501863992801131,0.4525848645281843,0.4540639445300462,0.4576825281511079,0.4629135957346715,0.461603197980223,0.4602770709640938,0.4583168708020545,0.0,2.8543644568448707,77.94067148760217,270.1041381960231,427.71229874637214,NC_public_baseline,61 +100000,95725,44812,416.3175763907026,9394,96.66231392008358,7260,75.17367458866545,2983,30.70253329851136,77.40440741590693,79.76215804630063,63.3594678928421,65.09951670074845,77.03452586279901,79.39196111884884,63.22451063085108,64.96796084749731,0.3698815531079162,370.1969274517865,0.1349572619910191,131.55585325114316,44.6732,31.12634656975913,46668.26847740924,32516.423682171982,154.29657,81.2020449680325,160523.03995821363,84164.17338002873,237.37591,110.4307765717061,244599.36275790024,112648.86481603766,5265.74708,2350.8322292085227,5453345.030033952,2408252.4724037843,1742.02062,750.1655096761789,1802766.7589448944,766616.2127721901,2939.32568,1219.328359144312,3027372.013580569,1235919.9893410443,0.43128,100000,0,203060,2121.2849307913293,0,0.0,0,0.0,12045,125.1292765735179,0,0.0,22598,232.6455993732045,2329478,0,83640,0,0,5963,0,0,28,0.2925045703839122,0,0.0,0,0.0,0,0.0,0.09394,0.2178167315896865,0.3175431126250798,0.02983,0.3078464776029662,0.6921535223970338,25.756061461893605,4.619769252517007,0.3300275482093664,0.1877410468319559,0.2345730027548209,0.2476584022038567,11.038295297842645,5.484820578302856,31.7857501946416,15554.259876299817,81.73310677886496,15.842780211049408,26.98368682782578,20.13371519140193,18.77292454858784,0.5318181818181819,0.752017608217168,0.6757095158597662,0.5723025583982202,0.1103934233705226,0.6947608200455581,0.9160493827160494,0.8373287671232876,0.7191780821917808,0.1367781155015197,0.4798328488372093,0.6826722338204593,0.6236203090507726,0.525,0.1040756914119359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027134569238713,0.0052292880668862,0.0078418244161746,0.0106433758188188,0.0132888676501987,0.015757328990228,0.0182114649681528,0.0207952817770884,0.0234081248978257,0.0259913021233051,0.0287380471656537,0.0312423023236718,0.033679795207106,0.0362870415194619,0.0386417103471047,0.0409874194982271,0.0434332346057455,0.0459963277627361,0.0482747869465807,0.050655194683444,0.0675339862593188,0.0836289807750672,0.0995090634441087,0.1143052415751012,0.1285340810862094,0.1464118779213637,0.1628595376274495,0.1787189642689834,0.1940316049277189,0.208054483054483,0.225,0.241112493912667,0.2550886086965981,0.2692143630576731,0.2825493605687746,0.2962368033322624,0.3085209703167036,0.3201516549287851,0.3314492605581849,0.3417995600769865,0.351606783425491,0.3606302525919605,0.3693775717731637,0.3771541407371948,0.3850558676161937,0.3930132079419983,0.4006981719905409,0.4075044517934368,0.4141935985083903,0.4208248674037523,0.4235923127685077,0.4256532459124781,0.4278135978216397,0.4293407452445062,0.4312344594493992,0.4319120514670884,0.4325634626694855,0.4338475229902106,0.4347311145059132,0.4351519287407513,0.4370479481804619,0.4395409181636726,0.4401548485361313,0.4410755407052873,0.4425109971565363,0.4433509234828496,0.4420473529581197,0.4436343955939002,0.4444840237951056,0.4444310025002016,0.4445319011019539,0.4459481405294213,0.4450500128238009,0.4442549232439138,0.4440202348000381,0.445314382076608,0.4446532018161891,0.4430196483971044,0.4467783139369855,0.4509326845093268,0.0,2.6243833244441834,77.88400291900022,270.3398158154448,427.50304503326,NC_public_baseline,62 +100000,95738,44774,416.5744009693121,9428,96.87898222231507,7303,75.58127389333389,2989,30.8237063652886,77.33232137485312,79.69743295175121,63.31916690730778,65.07078113579888,76.97204513353074,79.33547394396203,63.18828002557896,64.9426846222844,0.3602762413223814,361.95900778918144,0.13088688172882,128.09651351447826,44.57156,31.001810906059347,46555.76678017088,32381.928707576244,152.32843,79.35658309388346,158435.96064258704,82215.60205339934,235.66833,109.8673393815565,241070.5153648499,110966.42490027688,5316.39691,2360.5820049997587,5505364.714115607,2417964.8258787086,1804.30317,774.1828353356898,1867261.5575842403,791296.7009966209,2947.0375,1214.030956919513,3040089.3480122834,1233202.2511277064,0.43321,100000,0,202598,2116.1712172804946,0,0.0,0,0.0,11838,122.93968956944995,0,0.0,22498,230.0340512649105,2329912,0,83764,0,0,5867,0,0,36,0.3760262382752929,0,0.0,0,0.0,0,0.0,0.09428,0.2176311719489393,0.3170343657191345,0.02989,0.3063496840204634,0.6936503159795365,25.90941882590127,4.67899373195314,0.3298644392715322,0.1875941393947692,0.234013419142818,0.2485280021908804,10.934952485444905,5.416124961815407,31.742604253336825,15695.031214922805,82.06005266607511,15.855107904589994,27.2117558966062,20.231492051421277,18.761696813457657,0.5444337943310968,0.7627737226277372,0.6932337069323371,0.5807162534435262,0.1211234640140433,0.706766917293233,0.916010498687664,0.8710743801652893,0.7286432160804021,0.1623188405797101,0.4940796555435953,0.7037411526794742,0.6335920177383592,0.5391672547635851,0.1107038123167155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025639466536949,0.0055685725588047,0.0080212817805214,0.010539474754045,0.0129913729958492,0.0156375750043296,0.0184384433385004,0.0211130282085575,0.0237717908082408,0.0261977886977886,0.02873516084719,0.0311081907969035,0.0332459252403722,0.0354718768989916,0.0379583582674728,0.0404031007751937,0.0427966408830625,0.045296564889456,0.0476388427003658,0.0499088684059782,0.0675435849253575,0.0842828891609379,0.1003775959723096,0.1154796580405682,0.1295183263739508,0.1475083829611686,0.1640048814134875,0.1797819792198944,0.1947553941465498,0.2094674302382944,0.2263085889107929,0.2427784451876143,0.2575699877052301,0.2713946594029295,0.2841483144583485,0.296957547431027,0.3096011520042865,0.3213783166165727,0.3331895279398742,0.343800137520055,0.3536421540243196,0.3639109716547049,0.3736498010233087,0.3822908419107944,0.3911187331241334,0.3985854296788209,0.4055382146841663,0.4127218746416238,0.4189655619858303,0.4251805030282193,0.4277326350457576,0.4290248682067842,0.430937742915695,0.432971750101514,0.4347028011162679,0.4359230923169286,0.4368602315124844,0.4386069257203278,0.4400412442000344,0.4420906751138388,0.4442761675785169,0.4459146146466262,0.4469046255646752,0.4485627493652521,0.4494713968308225,0.4511656214442592,0.4516548634195693,0.4496764687039528,0.4496622708266323,0.4519008398588063,0.4540595807965794,0.4554272013949433,0.4566215953936727,0.4592737212026552,0.4590038314176245,0.4592610422433505,0.4574039653035935,0.4557558377714051,0.4544183445190156,0.4596078431372549,0.0,2.702875946734869,76.67766377601895,268.6357992568728,439.5890372783229,NC_public_baseline,63 +100000,95721,45038,417.6826401730028,9513,98.0244669403788,7437,77.06772808474629,2963,30.588898987682956,77.41699606751023,79.7718502700052,63.36600846061516,65.10125511191706,77.05431105686223,79.40373810380841,63.23381124131636,64.96946631834818,0.3626850106479935,368.112166196795,0.1321972192988028,131.78879356887307,44.77968,31.181880554002305,46781.45861409722,32575.798992908876,156.62714,82.03956577767356,162989.83504142248,85070.65681023215,245.14091,114.0129802677122,251885.69906290155,115899.99649360016,5337.74246,2382.1406767043613,5538769.507213673,2451259.920909792,1780.72662,769.9810674338323,1844418.9467306023,788560.4988359767,2905.74092,1211.535491165895,3002762.65396308,1237423.1811901778,0.43412,100000,0,203544,2126.429937004419,0,0.0,0,0.0,12140,126.18965535253496,0,0.0,23354,239.72795938195375,2327225,0,83666,0,0,5911,0,0,42,0.4387751903970915,0,0.0,0,0.0,0,0.0,0.09513,0.2191329586289505,0.31146851676653,0.02963,0.3083490519209769,0.6916509480790232,25.868713798519984,4.585111613102279,0.336157052574963,0.1963157187037784,0.2193088610999058,0.2482183676213527,11.142868355068655,5.535547976185147,31.653274352256364,15741.993106873404,83.92995202495909,17.11046094887726,28.07632712133024,20.562068756812845,18.18109519793873,0.554793599569719,0.7712328767123288,0.7068,0.5747562296858072,0.1054567749846719,0.6980703745743473,0.9149888143176734,0.8642611683848798,0.7023498694516971,0.14,0.5103083700440528,0.7077986179664363,0.6590198123044838,0.5413533834586466,0.0960187353629976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029960120650215,0.0057340262792653,0.0084185329438493,0.0111089673940637,0.0139803969415975,0.0167043302998839,0.0192135197945121,0.021779955092876,0.024383264863981,0.0270187320326966,0.0294608913072437,0.0320206902921888,0.0347457801352823,0.0370427582797825,0.0395213287254345,0.0416959451080891,0.044352417434517,0.0468579844221574,0.0491883353079337,0.0518141191912247,0.0690890107021665,0.086317837973571,0.102419117955604,0.1172480518251322,0.1312964056699291,0.1482057302408224,0.1647661578606812,0.1804102313006269,0.1956475288989551,0.208753378233452,0.2254253715270299,0.2414890163402229,0.2565986867852328,0.2706810458801805,0.2837216970762805,0.2976724109307035,0.3101971629940226,0.3219157286313493,0.3339308201073207,0.3447233418834738,0.3546475972275257,0.3644126282298721,0.3738978116012356,0.3828560468935425,0.3910660688029359,0.3988504187584029,0.405621031273875,0.4116313140964392,0.4185630373050142,0.4251447914738318,0.4279121235021051,0.4293380050487633,0.4319351009101702,0.4337480582453797,0.4358296754158082,0.4366851883205837,0.4377672850988061,0.4398009294354174,0.4414069869145415,0.4422766849403418,0.4441097850231542,0.4446209759100749,0.4447116398768088,0.4463880207747824,0.4465570276358175,0.4475987698131062,0.4491174610475478,0.4506484035638416,0.4532384291228443,0.4549569397156018,0.4571572811969342,0.4569739317387798,0.4579933707292198,0.4602374117464504,0.45844862131476,0.4585781081405107,0.4612403100775193,0.4645782145782146,0.4689234184239733,0.4675425038639876,0.0,2.4429910880756887,78.36779935228249,289.66457911858043,430.3849586023154,NC_public_baseline,64 +100000,95696,44666,415.40921250626985,9347,96.3885637853202,7340,76.12648386557431,2973,30.71183748537034,77.3508434030137,79.74160680439002,63.31502979323547,65.08281020193193,76.99091069733625,79.37794246260543,63.18407017063164,64.95344159276198,0.3599327056774513,363.6643417845846,0.1309596226038252,129.3686091699584,44.1441,30.72006673630421,46129.51429526835,32101.724979418384,154.79474,80.57817298693057,161147.90586858385,83594.50977755676,237.53329,110.46753646430622,244525.3929108845,112659.73880043044,5325.3532,2350.387857266284,5526431.65858552,2417804.509458933,1817.90625,776.4123280150782,1885263.90862732,796980.5581734381,2940.29988,1207.7435444942212,3039045.519143956,1231804.7692673162,0.43075,100000,0,200655,2096.7961043303794,0,0.0,0,0.0,12042,125.2089951513125,0,0.0,22566,232.2354121384384,2329025,0,83716,0,0,5851,0,0,24,0.2403444240093629,0,0.0,0,0.0,0,0.0,0.09347,0.216993615786419,0.3180699689740023,0.02973,0.3162047339672263,0.6837952660327736,26.069771023651697,4.616374247986041,0.3426430517711171,0.1893732970027248,0.2404632152588555,0.2275204359673024,11.027642265837333,5.391500780904142,31.57763749945811,15567.241053860276,82.08475873765607,16.00691456035679,28.15276566450102,18.4976022145544,19.427476298243867,0.5333787465940054,0.7438848920863309,0.685089463220676,0.5622754491017964,0.1240793201133144,0.6927536231884058,0.8935064935064935,0.8483333333333334,0.7128463476070529,0.1720116618075801,0.4844167408726625,0.6865671641791045,0.6339425587467363,0.5153181461115475,0.1125175808720112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025527518056667,0.0053442313737818,0.0080601772426884,0.0106207821774127,0.0132250910496653,0.0160550926020252,0.018953574962511,0.0217231448005392,0.0241764760024953,0.0265869195633026,0.0289303661162957,0.031059345535219,0.0335006480014811,0.0359472073687138,0.0383912814638224,0.0408232886058676,0.0432327711242799,0.045763098895624,0.0483471676132226,0.050441979735646,0.066703573331105,0.0834432786747921,0.0995948187181156,0.1154105121407229,0.1294453997826752,0.147394593450775,0.1638731729064719,0.1793774028989211,0.1936887340053663,0.2074305399053475,0.2244548169068742,0.2402771762667821,0.2550060943757617,0.2696138522831749,0.2823118765002532,0.2948294219422386,0.3065935538629916,0.3180005856779222,0.3292907478972494,0.3397767554979408,0.3497531808384899,0.3589806707224156,0.3679003558718861,0.3769792642783344,0.385676541135503,0.3936845485081999,0.4014566514566514,0.4083061307762929,0.4149455111572392,0.4216092440867758,0.4237553900431203,0.4258801430879936,0.4279109225874867,0.4306913458469929,0.4328593996840442,0.4340753951171515,0.434831013916501,0.4359926094559372,0.4374634716540035,0.4393612817473147,0.4396234601671414,0.4415496599180621,0.442696250052727,0.4430219978362784,0.4440293075840652,0.4439240039997895,0.4451230001720282,0.446724170736348,0.4466652491317598,0.4475155775683016,0.44895341913617,0.4509088959193522,0.4510278113663845,0.452612863327149,0.4512580120539558,0.4556578628543736,0.4536805988771054,0.4554354476850907,0.4597605123920913,0.4532544378698225,0.0,2.074224070407231,77.25174841704751,268.6573561921655,440.3591142035364,NC_public_baseline,65 +100000,95714,44706,415.069895731032,9354,96.23461562571828,7275,75.3390308627787,2992,30.77919635581002,77.26691653433518,79.62591382750077,63.2951211478972,65.03872341774512,76.8897778370123,79.24839791478031,63.1560203070912,64.90290071795738,0.3771386973228772,377.5159127204546,0.1391008408060017,135.8226997877381,44.78452,31.125729239853797,46789.93668637817,32519.51568198361,153.38882,80.09828763904034,159563.64795118792,82991.22138771793,232.77995,108.39106432238508,239444.7938650563,110278.07222600462,5284.96392,2370.0621678086327,5474787.335186075,2429609.184217256,1776.49745,772.6661761588372,1839795.51580751,791135.1415307529,2951.69614,1244.8014113204283,3039915.143030278,1261641.965153469,0.43283,100000,0,203566,2126.81530392628,0,0.0,0,0.0,11906,123.67051841945798,0,0.0,22214,228.34695028940385,2323853,0,83653,0,0,5990,0,0,27,0.2820903942996844,0,0.0,0,0.0,0,0.0,0.09354,0.2161125615137583,0.3198631601453923,0.02992,0.3088175538399025,0.6911824461600975,25.742052007691484,4.673906556112734,0.34446735395189,0.1883161512027491,0.2390378006872852,0.2281786941580756,11.014260244287332,5.365040490728168,32.47105815650258,15634.15293666341,82.48015198836005,15.959561668369972,28.321395432401232,18.774087707009613,19.42510718057924,0.5359450171821306,0.737956204379562,0.684756584197925,0.5716867469879519,0.1282346175963197,0.6780432309442548,0.9057591623036648,0.8528925619834711,0.6997455470737913,0.1455026455026455,0.4906652166032264,0.6730769230769231,0.631246712256707,0.531965272296764,0.1234386480529022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029169874002349,0.0054953411268491,0.0083309656208142,0.0109608801210877,0.0135467729796798,0.0165354891918585,0.0191956776594117,0.0218454282826839,0.0245647751551271,0.0271863740583033,0.0295634168093241,0.0321855365282739,0.0345515496781358,0.037244178022227,0.0395547256239102,0.0415637307091985,0.0441653118495583,0.0465717042401103,0.0486762917459228,0.0508976108859414,0.0680707543229471,0.0844803583951767,0.1000776609365489,0.1151308520377561,0.1285690168189588,0.1464116756802523,0.1628902102357188,0.1784344639509119,0.1937343572849594,0.2077266675256625,0.2246905059742052,0.240382843578265,0.2551580644458485,0.2686648919271261,0.2826638151512479,0.2961864783226723,0.3081699785177229,0.3206634493956341,0.3316733747186029,0.3423945472070501,0.3523379106553103,0.3626718872724289,0.3711062608241797,0.3795974767197356,0.3869289803873797,0.3945276276907479,0.4025210189641955,0.4099959106476512,0.4173501002369236,0.4231269925611052,0.4249158797351568,0.4279134295227525,0.4306151441966188,0.4329808308570763,0.4343205731586678,0.4355723892710829,0.4363816779232419,0.4377387318563789,0.438588601573986,0.4395884565311732,0.4402854756662364,0.4411446435012625,0.4421377621633131,0.4428103832340774,0.4450050206950601,0.446008018479675,0.4467447878805501,0.4460885229027277,0.4467731444677314,0.4473889321901793,0.4487896592244418,0.4483629971434849,0.4503285407585713,0.4514357445473089,0.4542632651081579,0.4531611645754659,0.4506424318395487,0.4554660053730109,0.4549803038829488,0.4510268562401264,0.0,2.526416897744064,78.38923075394032,278.40504156839285,425.0302831798977,NC_public_baseline,66 +100000,95687,44891,417.7474474066488,9499,97.8398319520938,7384,76.42626480086115,3100,31.94791350967216,77.288290147924,79.65786842399379,63.294707477804174,65.04393114180307,76.90402741644738,79.2686675921446,63.15536053114576,64.90551944619052,0.3842627314766247,389.2008318491946,0.1393469466584136,138.41169561254674,44.98802,31.327150465777294,47014.20255625111,32737.72021274817,156.42234,82.04600969524925,162726.93260317494,84999.75230759068,238.0867,111.53977363470212,243506.7250514699,112519.95021705702,5375.44708,2397.947384572241,5567404.757177047,2455895.9117597425,1798.78352,779.4232282907383,1858165.8532507028,793169.6087026962,3062.48888,1270.8158607806747,3158184.162947945,1294133.2797636508,0.43341,100000,0,204491,2137.009207102323,0,0.0,0,0.0,12177,126.47486074388372,0,0.0,22574,230.6164891782583,2319348,0,83463,0,0,5967,0,0,38,0.397128136528473,0,0.0,0,0.0,0,0.0,0.09499,0.2191689162686601,0.3263501421202232,0.031,0.3115898663474965,0.6884101336525035,25.76289412033038,4.683923775544066,0.3345070422535211,0.1887865655471289,0.2433640303358613,0.2333423618634886,11.074329110012917,5.453002738539907,33.40246975816238,15697.339012021375,83.44301492542665,16.10189935914475,27.9566943179932,19.36383203287326,20.02058921541544,0.5318255687973997,0.7417503586800573,0.682591093117409,0.5803830528148578,0.1151919866444073,0.6778983438035409,0.8953168044077136,0.8519736842105263,0.7208121827411168,0.155440414507772,0.4864193147523522,0.6876818622696411,0.6272824919441461,0.5387509405568096,0.1041814316087881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025623107384113,0.00535274378808,0.0078134513130657,0.0105853430585749,0.0129566349361321,0.0155077436894785,0.0183010134377357,0.0206502322257949,0.0231730877347207,0.0258506882259632,0.0285731854797384,0.0309683644351378,0.0334457444839711,0.0358698674575957,0.0384833575723819,0.0406767049388712,0.043145132065313,0.0456304936644493,0.0480732227364917,0.050422094841063,0.0678552032418431,0.0843672456575682,0.0997775025713146,0.1146985466676488,0.1288160283747836,0.1476775826107211,0.1645659676134855,0.1795702246891746,0.1955691939226105,0.2096147238209775,0.2263668715626011,0.2417685998764883,0.2571587282569627,0.2713922775356446,0.2846298764969647,0.2981307166326258,0.3107953909833315,0.3232018954137756,0.3342820063295462,0.3450669424811814,0.3551484332369707,0.3645104484620803,0.3738549822381162,0.38180549372541,0.3895395651855647,0.3974122454033306,0.4049950905108386,0.4121259419418395,0.4178516964064597,0.4245931043645785,0.4266285574956314,0.428733799986139,0.4318227020883648,0.4342544659132337,0.435844327374788,0.436972451535108,0.4377607621848874,0.4404359076433121,0.4411673178659105,0.4422308596221639,0.4426419466975666,0.442688617837329,0.4449265190667602,0.4451310607089501,0.4460718717306148,0.4477611940298507,0.4481204311017365,0.450458803593695,0.4524218358732202,0.4533257670949698,0.452975495915986,0.4532628826669572,0.4554468194694823,0.4546871347307722,0.456648503967116,0.4590104730949801,0.4619328775637041,0.4631882862445865,0.4646017699115044,0.4686176357335387,0.0,2.847589866568783,77.65759078040774,282.7679203172835,434.3769261624017,NC_public_baseline,67 +100000,95818,44800,416.3935794944583,9308,95.74401469452503,7263,75.11114821849758,3003,30.89189922561523,77.36488025655099,79.67982532280023,63.35773544642036,65.07128347284286,76.99970421404274,79.31370406384985,63.22429119885443,64.94089360967484,0.3651760425082528,366.121258950372,0.1334442475659258,130.38986316801982,45.27226,31.52693960583183,47248.17883904903,32902.940580926166,154.78527,81.41124646425475,160843.52626855078,84277.72001638114,236.52534,110.31255313744526,242850.80047590224,111975.46543504146,5293.36045,2356.0714336489914,5481829.2805109685,2417226.26010478,1832.24198,787.3257140138073,1899420.943872759,808928.4375835485,2971.13376,1226.7048511474288,3060437.016009518,1245841.6709398257,0.4325,100000,0,205783,2147.644492684047,0,0.0,0,0.0,12051,125.03913669665408,0,0.0,22483,230.6351624955645,2326635,0,83632,0,0,6038,0,0,38,0.3965851927612766,0,0.0,0,0.0,0,0.0,0.09308,0.2152138728323699,0.3226256983240223,0.03003,0.3122581958867848,0.6877418041132153,25.848397828211475,4.67013983934454,0.3285143879939419,0.1905548671347927,0.245215475698747,0.2357152691725182,11.066496072383066,5.512822061722666,32.05160240195836,15576.651764166205,81.71493518960368,16.03628034302587,26.820062785012613,19.20797339729623,19.65061866426896,0.5452292441140025,0.7630057803468208,0.7007544006705784,0.5858644859813084,0.1285794497473329,0.6859163229228049,0.8994845360824743,0.8525179856115108,0.7249357326478149,0.1620879120879121,0.5023356090549767,0.7098393574297188,0.6546448087431694,0.544973544973545,0.1199717713479181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028562746885445,0.0054949511334603,0.0079653380956246,0.0109088692967131,0.0134633570941926,0.0161385574064269,0.0186140390222022,0.0212548747371215,0.0238591756624141,0.026244946005425,0.0287172549501906,0.0313728307386007,0.0339273968097352,0.036117544130513,0.0385535213590631,0.0409440039643211,0.0431445565037496,0.0453730662825999,0.0479211663066954,0.0501909211032846,0.0670393975111871,0.0839169610938055,0.0995023833219841,0.1141284943187784,0.128129245610894,0.1461879619852164,0.1626197135350453,0.1784579076615604,0.1939107521949242,0.2085819256847224,0.2256676206666523,0.241325995523792,0.2561996044424159,0.2699962858578576,0.2827398946870843,0.2952838225044529,0.3077025957669717,0.3188397653458003,0.3299899130710731,0.3404932196601247,0.3504531372821011,0.3588667734131204,0.3685256607434399,0.3776875441685532,0.3866896853571949,0.3945619335347432,0.4015956114423125,0.4080187477711549,0.4147694860758181,0.4212799682979988,0.4240033446620272,0.4254500310366232,0.4272422618458449,0.4288119602293345,0.4298052928079377,0.4316994622247561,0.4325014361396566,0.4345182878346144,0.4353426691761781,0.4380022029215796,0.4412418536603902,0.4423567198634949,0.442754424778761,0.4444797891436232,0.4460713850651723,0.4453761506718866,0.4465915655690352,0.44787570729836,0.4505274450205614,0.4528355541111472,0.4521284052147096,0.4551513165082486,0.4578297595841455,0.4612546125461255,0.4647190138794526,0.464346556339742,0.4674359785014227,0.4677317637166281,0.4667990919409762,0.4581673306772908,0.0,2.6531211646594324,75.07447422186702,276.5507306402255,430.8899456122988,NC_public_baseline,68 +100000,95639,44760,416.23187193508926,9251,95.32722006712744,7165,74.35251309612188,2948,30.45828584573239,77.2563444549925,79.66686325270241,63.27473565930678,65.05574539653144,76.89826205018736,79.3027144325035,63.14436717696404,64.92533209872231,0.3580824048051454,364.1488201989063,0.1303684823427389,130.41329780912747,44.53768,30.990157100601305,46568.533757149286,32403.263418272152,151.23531,79.1257350464759,157561.89420633842,82165.18324335114,232.5336,108.25745359455247,239255.05285500688,110270.22494302204,5189.035,2309.1266275921216,5390485.753719716,2379636.181311957,1753.85239,757.6571161627143,1820910.4235719736,779543.4477140201,2905.5297,1208.2975862293213,3004736.394148831,1235838.3897471065,0.43161,100000,0,202444,2116.7515344158764,0,0.0,0,0.0,11788,122.65916623971393,0,0.0,22052,226.748502180073,2324582,0,83655,0,0,5880,0,0,28,0.2823116092807328,0,0.0,0,0.0,0,0.0,0.09251,0.214337017214615,0.3186682520808561,0.02948,0.3030488426634037,0.6969511573365963,25.78115584911504,4.6831893761439325,0.3359385903698534,0.1900907187718074,0.2396371249127704,0.2343335659455687,11.005706817160164,5.403114114621403,31.729861975450344,15659.637131546127,81.07393875293371,15.787818624290892,27.366314383472226,18.862772280900938,19.05703346426967,0.5377529658060014,0.737151248164464,0.6963024511840465,0.5920190589636688,0.1042516016307513,0.6937424789410349,0.9128065395095368,0.8496503496503497,0.7408376963350786,0.1436950146627566,0.4906414682900236,0.6723618090452261,0.6485013623978202,0.5481881264456437,0.0944767441860465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028460019243429,0.0057265641628574,0.0083824678553669,0.0110532037020105,0.013683996337369,0.0161364261483451,0.018891790435776,0.0212615963055294,0.0236176175766626,0.0261233019853709,0.0285667378098834,0.0309635384552143,0.0334064259756838,0.0360025981256379,0.0386025803919138,0.0409035409035409,0.0435179234134306,0.0458412540122783,0.048240411229735,0.050723352768767,0.0676288616696626,0.0841129327955581,0.1006046990152644,0.1157461500405259,0.1301443586171964,0.1482845471670159,0.1645951195694861,0.1812798858347799,0.1967910551463907,0.2109640791182373,0.2274609164420485,0.2428379491180167,0.2580149678094055,0.2713233521120585,0.2846742703346643,0.2973120010658732,0.3095565774898459,0.3215501883048057,0.3332688873977869,0.3434734195814631,0.353356234332931,0.3625770110895969,0.3718011138951893,0.3799552852369161,0.3878543991220047,0.3955453814267153,0.4032943009347673,0.4103088304818368,0.4168401332223147,0.4220852389474382,0.4243659358962207,0.4263984706175713,0.4284760782197481,0.430208652289926,0.4330481764970734,0.4331944293836072,0.4342389651142312,0.4359510995947113,0.4367425490230074,0.4386041202369952,0.4402330141445678,0.4417399686709242,0.4427011261788687,0.4440390672800199,0.4449376814068635,0.4455314648334215,0.4451723238354735,0.4474954448102803,0.4485042735042735,0.4516180969248108,0.4537962962962963,0.4559173517957594,0.4576794443015178,0.4581885568681955,0.4613719770396161,0.4618507462686567,0.4617737003058104,0.4654190398698128,0.4693259972489683,0.4675068924773533,0.0,2.147973143485405,74.11152669060661,283.73232154558485,418.3160276712886,NC_public_baseline,69 +100000,95703,44819,416.49687052652473,9344,96.40241162763968,7275,75.55667011483443,2976,30.79318307681055,77.32722884548278,79.70451085445458,63.32110870231941,65.07613597058621,76.97176279677632,79.34283547608348,63.19218641493557,64.94724016106592,0.3554660487064609,361.6753783711033,0.128922287383844,128.89580952028723,45.40294,31.620246424868512,47441.04155564612,33039.53483889586,153.95963,80.33025382048017,160398.63954108022,83474.84698339351,235.69241,109.3179548225784,243561.4453047449,112147.97953323496,5316.80317,2352.194122837109,5524400.520359864,2427597.3434453174,1788.70549,763.8436867035693,1858703.353081931,787825.9476751717,2944.7417,1208.7813137160058,3048680.877297472,1239253.4205385952,0.43256,100000,0,206377,2156.410979802096,0,0.0,0,0.0,12018,125.07444907683144,0,0.0,22364,231.0899344848124,2323128,0,83586,0,0,5965,0,0,32,0.3134697971850412,0,0.0,0,0.0,0,0.0,0.09344,0.2160162751988163,0.3184931506849315,0.02976,0.3068606648479337,0.6931393351520663,25.687610074398027,4.694872040896169,0.3326460481099656,0.1884536082474227,0.2472852233676976,0.2316151202749141,11.016291705859782,5.3332745459366455,31.624507718280658,15568.567343888157,81.99650798587182,15.938616124272311,27.388940758207404,18.827571535116743,19.84137956827535,0.5382817869415808,0.7709700948212983,0.6871900826446281,0.5804154302670623,0.1211784324624791,0.6950934579439252,0.9304123711340206,0.8631756756756757,0.7492877492877493,0.1443569553805774,0.4900233686859608,0.7080366225839267,0.6301969365426696,0.5359820089955023,0.114950634696756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030473606414643,0.0054828673065034,0.008034899056508,0.0102989122154849,0.0130667778444392,0.0154562023357396,0.018181632777925,0.0205692808922206,0.0231730513570449,0.0257754656890354,0.0284893857040303,0.0309149172178628,0.0335832793326544,0.0361257083977331,0.0385881624438825,0.0410556578212579,0.0432953803756617,0.0455876245847176,0.0480970261808423,0.0506478209658421,0.0673191418245628,0.0829530707079164,0.0980972161033838,0.1125501046806451,0.1267904229511655,0.1443079754990637,0.1607853542053595,0.1758404412782587,0.190719391407477,0.2049862684517679,0.2229966282815008,0.2391257280187065,0.2540877492629541,0.2683585844773833,0.2812940295878831,0.2942108646024956,0.3069014021612932,0.3192847014337482,0.3305059726574919,0.3412238066853134,0.3518132313752751,0.3611563374837478,0.3701627336407059,0.3786203833735431,0.3873657812081517,0.3952258574676287,0.4029167032718784,0.4105378704720088,0.4165540716104557,0.4230366769540511,0.4253240602928044,0.4273731050398684,0.428812095643926,0.4305767248762502,0.4327293927706521,0.4333369352124851,0.4354087588912634,0.4363411211095517,0.4383540452740679,0.439819053260811,0.4418047777966325,0.4428582805718154,0.4439796327987999,0.4450586642599278,0.4456370938298649,0.4471903578791563,0.4475730681391113,0.4490995018520884,0.4495527281799066,0.4507122045969569,0.4515903367223207,0.4537344285481151,0.4541352414104299,0.4570196078431373,0.4600038925652004,0.4570694716242661,0.4622432859399684,0.4649854105877449,0.4707053469852105,0.4667992047713717,0.0,1.7410721947850007,76.99794784393991,275.90420380499535,431.6089425865388,NC_public_baseline,70 +100000,95773,44978,419.5441303916553,9427,97.021081098013,7363,76.24278241257974,3001,30.969062261806563,77.38146625236273,79.70612215479338,63.35451413110488,65.06866464708597,77.0144640571421,79.33385670916265,63.221313330387815,64.93588667864329,0.3670021952206213,372.2654456307311,0.1332008007170628,132.77796844268153,44.55572,31.007710934540004,46522.21398515239,32376.25524369081,155.64628,81.43697904095725,161900.3372558028,84415.76335810432,239.89568,111.31526393840538,246165.5268186232,112880.23699494776,5364.8284,2386.785013646168,5559716.130851075,2450234.976085292,1819.42751,783.9425331355236,1880781.9427187203,799597.6426399524,2961.63796,1226.4345482083747,3058912.4074634816,1252582.5803633388,0.43468,100000,0,202526,2114.6460902342,0,0.0,0,0.0,12065,125.31715619224626,0,0.0,22841,234.2100592024892,2327474,0,83784,0,0,5941,0,0,39,0.3967715326866654,0,0.0,1,0.0104413561233332,0,0.0,0.09427,0.216872181834913,0.3183409356104805,0.03001,0.3100891694219016,0.6899108305780984,25.54336538693612,4.6527577567514,0.3301643351894608,0.1867445334782018,0.2386255602336004,0.2444655710987369,10.995384821709546,5.404582760227912,31.977988596116155,15652.28685440484,83.24155388513422,16.12817305479363,27.749321858133246,19.99123715637691,19.37282181583041,0.5391823984788809,0.7556363636363637,0.6947758124228712,0.5672222222222222,0.1257825839499146,0.6918274687854711,0.9228915662650602,0.8526490066225165,0.7146814404432132,0.1649214659685864,0.4911622924477772,0.6833333333333333,0.6425834701696771,0.5302293259207783,0.1149090909090909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024806107364882,0.0051988325428675,0.0078311236445156,0.0105207571695507,0.0129948041119708,0.0154019993077753,0.0181833007175472,0.0206022510433779,0.0230179812014711,0.0257304796202324,0.0280088513707331,0.0304821118942821,0.0329989928678601,0.0353716285773111,0.0378988607660188,0.0403598095611851,0.042655794026947,0.0447250559840756,0.0468814925621208,0.0491118838889698,0.0669672208133746,0.083310662341739,0.0992564159036801,0.1142670927592296,0.1280348313777581,0.1463504923477212,0.1633252715546503,0.1789641773566828,0.193898478892497,0.2078848050778402,0.224662489503262,0.2404386951631046,0.2554082420630173,0.2707398735146727,0.2837031655879892,0.2967709037700502,0.3095171612701462,0.3218680687690697,0.3334507402315567,0.3439364045150041,0.3536011497716683,0.3634360458983345,0.3716724965909764,0.3803768602976476,0.3894789347543098,0.3979484774048609,0.4056425232180681,0.4130648142247148,0.419575606462002,0.425360794740532,0.4270457828722643,0.4290957762415311,0.4314798320396997,0.4336015804305511,0.4357643821686531,0.4371175337186898,0.4381616441409173,0.4394689914800871,0.4403322613376442,0.4420271629778672,0.4431925414260371,0.4443029663967531,0.4458762886597938,0.4462355867058558,0.4476857253986775,0.4489090573305543,0.4495010670819634,0.4503724454065066,0.4493425038309397,0.4501112234580384,0.4526653343867639,0.4503915743991358,0.4521972064544933,0.4515605686032138,0.4508386350491614,0.448376151236064,0.4494627005139386,0.4502057613168724,0.4515768908735696,0.4493150684931506,0.0,2.4919608242912696,78.64164528104493,281.37737229875466,430.7666019398719,NC_public_baseline,71 +100000,95748,44528,412.99034966787815,9401,96.8061996073025,7337,75.94936708860759,3026,31.186029995404603,77.31912755708531,79.66903895953907,63.32066847763053,65.05841826283564,76.94435091383578,79.29083093432475,63.18433692630179,64.92390580475806,0.3747766432495325,378.2080252143203,0.1363315513287446,134.51245807758028,44.44154,30.95659290268379,46415.110498391616,32331.320657020293,154.32298,80.39155739672182,160471.5712077537,83257.43003723731,234.81615,109.46573227094626,240940.21807244016,111106.07989044162,5330.27781,2363.0520176909818,5520510.329197477,2421734.8950391538,1804.39921,774.5011999127113,1864558.935956887,789119.1430651732,2993.42684,1235.3308519415789,3086356.665413377,1254847.870806099,0.43071,100000,0,202007,2109.7777499268914,0,0.0,0,0.0,11990,124.5039060868112,0,0.0,22349,229.1118352341563,2327913,0,83742,0,0,5791,0,0,41,0.4282073776997953,0,0.0,0,0.0,0,0.0,0.09401,0.2182675117828701,0.321880650994575,0.03026,0.3065914130215682,0.6934085869784318,25.88660534460565,4.623109014702314,0.3290173095270546,0.1894507291808641,0.2443778110944527,0.2371541501976284,10.94975147355233,5.292641969485016,32.18417986790014,15632.07919013455,82.56071322182966,16.15993921579981,27.212564986772712,19.52098402229913,19.667224996958016,0.5378219980918632,0.7561151079136691,0.7046396023198012,0.5741379310344827,0.1087562744004461,0.7030053034767236,0.924433249370277,0.8747763864042933,0.7284263959390863,0.1440922190201729,0.4881205673758865,0.6888217522658611,0.6533692722371968,0.5289747399702823,0.1002766251728907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031088922419467,0.0058472420677145,0.0083499046304938,0.0109996140486298,0.013678290671304,0.0161926002871895,0.019260769819016,0.0218314749009516,0.0243451054170671,0.0270162363587969,0.0298668143090031,0.0321282254007043,0.0345962400756921,0.0368275748398129,0.0393718660366067,0.0419073800394787,0.0442042713541828,0.0464904000746833,0.0486917849498119,0.0510457026205057,0.0684335236584169,0.0852232310975354,0.1000545427846189,0.1147718549209721,0.1285765492230164,0.1460293962144443,0.1622702347238574,0.1793835055275954,0.1943165920910712,0.2090021122154674,0.2249962303168688,0.2404580978978588,0.2558427993210602,0.2689501263524083,0.2819355619888384,0.2946547291906746,0.3077971250823718,0.3193343541704197,0.3309627946606078,0.3415106668347987,0.3518312471024571,0.3617475068261985,0.3703580705229324,0.378944838360774,0.3870940233413736,0.3952962124865526,0.4029357844245209,0.4094172351242942,0.4166493263278364,0.4226203095187619,0.4250283983339644,0.4278801620328766,0.4300653224320916,0.4315516890220838,0.4330576782162671,0.4345699961434631,0.4351269359731758,0.4360701870551233,0.4379554498940514,0.4400389990250243,0.4406046696887506,0.4426081911126228,0.4444184612768128,0.4452422066709079,0.44689843883609,0.4484933612487742,0.4486008409453385,0.4501824934366396,0.4518462805773432,0.4506774519716885,0.4531896111136923,0.4536749904792992,0.4533057584178892,0.4511850572908492,0.4513626224420521,0.4555595974293682,0.457030636292223,0.4543355028343481,0.4611428571428571,0.4524187153053132,0.0,2.5583818795774165,75.11101642958964,281.4562361904132,436.3597527291445,NC_public_baseline,72 +100000,95669,44832,416.19542380499433,9257,95.33913806980318,7196,74.51734626681579,2923,30.114248084541494,77.34181859432726,79.7246296544015,63.3271521787835,65.08554844014918,76.9916806267297,79.37177307966321,63.20012535859295,64.96017342658328,0.3501379675975613,352.8565747382828,0.1270268201905509,125.37501356590042,45.07976,31.347252230980096,47120.551066698725,32766.36343118471,152.23451,80.13023624462868,158411.7112126185,83043.22846964917,236.4433,110.36088144099531,242181.4067252715,111572.36084338656,5243.16478,2332.337796704499,5434477.793224555,2391875.713872308,1773.9774,761.8462483023056,1836424.4948729477,778473.4849348352,2898.01686,1194.5455594676446,2988146.818718708,1215814.3794211417,0.43269,100000,0,204908,2141.8432303044874,0,0.0,0,0.0,11878,123.41510834230525,0,0.0,22482,230.0954332124304,2325476,0,83630,0,0,5762,0,0,31,0.324033908580627,0,0.0,1,0.0104527067284073,0,0.0,0.09257,0.2139406965726039,0.3157610456951496,0.02923,0.308336738863915,0.691663261136085,25.954725073132877,4.717093634105544,0.3311561978877154,0.1889938854919399,0.2436075597554196,0.2362423568649249,11.078214680240434,5.467909390813599,31.214905856748462,15645.105720346508,81.19470257621198,15.746131248904652,26.972035926146333,18.96880250307331,19.50773289808767,0.5359922178988327,0.7514705882352941,0.6903063365505665,0.5882352941176471,0.1083856246434683,0.7232893157262905,0.9328165374677002,0.8808290155440415,0.7783783783783784,0.1393939393939394,0.4795660036166365,0.6793422404933196,0.6291574279379157,0.5353383458646617,0.1011946591707659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028050348857226,0.0055647343827604,0.008522467863194,0.0112226036440454,0.0140216374506853,0.0165960739594363,0.019335636893659,0.0220389330665659,0.0245403162338126,0.026901698246476,0.0293867339300911,0.0319304083477117,0.0343614328923273,0.0368485048327597,0.0394178665428084,0.0419942076954902,0.0442892375287558,0.0466173844428755,0.0489664714388257,0.0514255929111284,0.0686841885341801,0.0844894924766761,0.099479407195936,0.1149717989729775,0.1290404253523504,0.1473873492701502,0.1647408350575627,0.1803734139487354,0.1949718461850779,0.2083949981768655,0.2251408139747773,0.2405862945535183,0.2553976005829952,0.2692610492706715,0.2819133133067045,0.2953258810365265,0.3079310845364508,0.3196452887093325,0.3311003372202604,0.3415218213274975,0.3522590500879548,0.3618405654636521,0.3708465025983404,0.3791002530613224,0.3873125524488282,0.3951395917158302,0.4026726169583312,0.4104012341743909,0.4174576997493799,0.4235512040222281,0.425460930640913,0.427766732935719,0.4296022751390126,0.4309934390059803,0.4330346475507766,0.4341711642251349,0.434776376146789,0.4363558257881171,0.4377776247374402,0.4388489208633093,0.4404503705938932,0.442295434626723,0.4435190665426566,0.4453809997288258,0.4471343152982354,0.4475456153785218,0.4489607390300231,0.4510698000701508,0.4522891222055567,0.4538775180654797,0.455920564216778,0.4559507080315642,0.4545744748770989,0.4544890680725694,0.4588459704339532,0.4611361148278798,0.4573266394728585,0.4556593977154725,0.4534285714285714,0.4499205087440381,0.0,2.758733922398991,73.58588434495191,286.0697335519265,416.1701796899063,NC_public_baseline,73 +100000,95671,45076,419.1552299024783,9430,97.1036155156735,7266,75.2788201231303,3006,30.93936511586583,77.38307130315455,79.76002399727788,63.34642469116329,65.09784971548743,77.00243534376682,79.37895094952734,63.20718735238629,64.96226140476544,0.3806359593877317,381.0730477505473,0.1392373387770007,135.5883107219853,45.2694,31.531029418691595,47317.78699919516,32957.77134000021,155.88127,81.91717037344183,162156.70370331657,84855.84126577304,235.31865,109.1893184442958,242732.3640392596,111557.36486665678,5297.74148,2358.7862670222503,5487593.220516143,2416451.073822085,1795.06579,774.2899114339627,1856523.836899374,790419.0782973884,2976.09034,1240.6662654282277,3064706.107388864,1256081.956070385,0.43456,100000,0,205770,2150.808499963416,0,0.0,0,0.0,12075,125.48212101890854,0,0.0,22475,231.6584963050454,2323143,0,83639,0,0,5974,0,0,34,0.3449321110890447,0,0.0,0,0.0,0,0.0,0.0943,0.2170011045655375,0.3187698833510074,0.03006,0.3097798773746105,0.6902201226253895,25.972745768610103,4.604596145331594,0.3300302780071566,0.1939168731076245,0.2462152491054225,0.2298375997797963,10.897717311627051,5.314715150976668,32.22300266314319,15701.933384286776,81.85113434017711,16.42591749040269,26.971108057169488,18.67365379646748,19.78045499613744,0.538673272777319,0.751596877217885,0.695162635529608,0.5808383233532934,0.1218557853549469,0.6784883720930233,0.9002375296912114,0.8454706927175843,0.7122905027932961,0.1507936507936507,0.495311936530833,0.6882591093117408,0.6490463215258856,0.5449695121951219,0.1141034727143869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028446190133929,0.0052985634105322,0.0078802446222654,0.0106218774117551,0.0134106044430888,0.0159512200087543,0.0184815184815184,0.0210474742010227,0.0237345653773816,0.0264219319438188,0.0289534120734908,0.031247753714714,0.0339089385072662,0.036329738471205,0.0386968318322965,0.0415271404357352,0.0442453123381332,0.0464481441501287,0.0490151215758054,0.0510490166446058,0.0682518622217114,0.0848488655756928,0.100664169473386,0.1157275958525248,0.1296948480566861,0.1474945280365432,0.1643060090751028,0.1802246426140231,0.1953853706431026,0.2097603840713275,0.2268838840885369,0.2426674165080463,0.256294572969212,0.2698837857634827,0.2827010254830333,0.2966304588782975,0.3091800934099086,0.3210043500800144,0.3325756628669493,0.3432664624984228,0.3534966169246454,0.3631846626198233,0.3726990226776734,0.3815383136467958,0.3894214956572584,0.3974511112759277,0.4054752908983644,0.4129935134582971,0.419263824420434,0.4260076610070645,0.4287934903084534,0.4313584613684094,0.4333639900955076,0.4348249309893942,0.4368090827606812,0.4370305245785325,0.4384230168096711,0.4388742740854718,0.4404166522953816,0.4413790616322262,0.4429385782777756,0.4438777543132645,0.4448954567556711,0.4455228765546351,0.44714559526409,0.4483883699513222,0.4499669036175785,0.450645140786881,0.4525716319629827,0.452340801413314,0.4516979735356713,0.4521748481101134,0.450370464997445,0.4515235457063712,0.4525028441410694,0.4536451497434673,0.4519098021168891,0.4505229283990346,0.4578643974746088,0.4537847090148345,0.0,2.473926280005909,76.53525311313292,279.242506367941,423.3809317888866,NC_public_baseline,74 +100000,95680,45144,419.2934782608696,9310,95.89255852842808,7288,75.44941471571906,2975,30.664715719063544,77.3960056150407,79.78004295699792,63.35197710932333,65.11320983784132,77.03477301625435,79.41543157510134,63.221217410119166,64.98392666536678,0.3612325987863585,364.61138189658016,0.1307596992041624,129.28317247454402,44.5016,30.95052789390041,46510.86956521739,32347.9597553307,153.57544,80.54030913425441,159795.47449832776,83462.77083429601,238.7188,111.7090505785184,243629.4314381271,112380.07073329692,5311.6684,2368.148987339372,5502739.255852843,2426318.465028608,1761.66369,767.541879671493,1822487.6463210704,783480.7375329135,2939.79588,1215.1747306061975,3032724.97909699,1237905.5460323088,0.43595,100000,0,202280,2114.1304347826085,0,0.0,0,0.0,11996,124.64464882943145,0,0.0,22650,231.10367892976583,2331804,0,83737,0,0,5757,0,0,39,0.3867056856187291,0,0.0,1,0.0104515050167224,0,0.0,0.0931,0.2135566005275834,0.3195488721804511,0.02975,0.3189804001218645,0.6810195998781354,25.731275198971336,4.645554775838404,0.3315038419319429,0.1885290889132821,0.2417672886937431,0.2381997804610318,11.062146753411453,5.500040705464394,31.7161949809887,15730.953915211445,82.21640796909777,15.867784895647029,27.294324582006883,19.541257630260407,19.51304086118346,0.5340285400658616,0.7438136826783115,0.6850165562913907,0.591589861751152,0.1066969353007945,0.6965116279069767,0.92,0.8515358361774744,0.7239709443099274,0.1589595375722543,0.4838362068965517,0.6776776776776777,0.6316939890710382,0.5502645502645502,0.0939265536723163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026945713504259,0.0054855914501835,0.0080083636142181,0.0107289814579629,0.0133257380017496,0.0160061906895287,0.018393711063756,0.0210415624457625,0.0236766239342452,0.0259166001351102,0.028562640967808,0.0309763134388122,0.0335174272109263,0.0361347740546553,0.0389512567584299,0.0417627174710813,0.0443132380360472,0.0470011833336793,0.0494014622832835,0.0516008671363655,0.0688009191560476,0.0856993354612526,0.1012492264445819,0.1157501839974766,0.1292610941288078,0.1471250753497816,0.1635121371583771,0.1783554760688128,0.1934236390052132,0.2075914882663349,0.2244361631088038,0.240737735951106,0.2557194248513764,0.270577818587263,0.2836436418823063,0.2970159995571056,0.3098805234212023,0.3218777042289927,0.3335222442618305,0.3447112249917068,0.3547179404219916,0.364070806800257,0.3728617196089326,0.3821951277936139,0.3910641656043222,0.3992735779364688,0.4074777566729981,0.4150847500698839,0.4210601200331126,0.4271849781106598,0.4294212651413189,0.4312363291191481,0.4337291625532395,0.4343719670302609,0.4362444113263785,0.4374029726863309,0.4381393277016815,0.4402429564097909,0.4421817806877352,0.4443446553984876,0.4460104526329692,0.4476857563577028,0.44897916139374,0.4503116070825927,0.4515956930837133,0.4521254208754209,0.4534298933816134,0.455066373794289,0.4558886357163201,0.4560155239327296,0.4558440349897636,0.4562479643904027,0.4547038327526132,0.4546588693957115,0.4554004266046151,0.45368666421298,0.4563916876574307,0.4563268709610173,0.4571185960939711,0.4640600315955766,0.0,2.822264174473464,75.96150061699157,283.5156424105639,423.4738022308092,NC_public_baseline,75 +100000,95813,44851,416.6031749345078,9349,96.15605398014884,7283,75.32380783401,2980,30.643023389310425,77.38566316619061,79.70657091357326,63.36611244363343,65.08420416835621,77.02084183863369,79.33894111389246,63.23369787738338,64.95331689977957,0.3648213275569247,367.6297996807989,0.1324145662500484,130.88726857664312,44.86218,31.187651971976976,46822.644108837005,32550.543216449725,154.31811,80.96021750052324,160413.6495047645,83850.03861743526,238.08206,111.34031596826576,243918.63317086408,112642.15553487864,5280.29039,2346.268066728071,5469025.341028878,2406787.102718914,1765.96086,766.2237896141411,1825360.5147526956,781935.2275934796,2937.62686,1212.5902261027118,3024819.4921357227,1232388.8304545411,0.43267,100000,0,203919,2128.3020049471365,0,0.0,0,0.0,11952,124.04371014371743,0,0.0,22643,231.7326458831265,2331238,0,83817,0,0,5925,0,0,35,0.3652948973521338,0,0.0,0,0.0,0,0.0,0.09349,0.2160769177433147,0.3187506685206974,0.0298,0.310261569416499,0.689738430583501,25.84580806301875,4.598679431474465,0.3418920774406151,0.1872854592887546,0.2385006178772483,0.2323218453933818,10.990949245264837,5.520433685576308,31.81256117760397,15632.949904133306,82.09003902830982,15.847489741393858,28.30818727426373,18.8840713911116,19.05029062154061,0.5445558149114376,0.7587976539589443,0.6943775100401607,0.5975177304964538,0.1099597006332757,0.6973310618966496,0.9238329238329238,0.8482003129890454,0.721763085399449,0.1363636363636363,0.4958348424483882,0.6886102403343782,0.6412749864937871,0.563581640331076,0.1032490974729241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026840063605886,0.0053931855276096,0.0083019557296688,0.0110641497165383,0.0135684934293502,0.0161897973729762,0.0187546504398169,0.0213491172568629,0.0239358168531861,0.0263922716387973,0.0291148710275776,0.031448542015211,0.0338948212248589,0.0362940165309672,0.0385134926118025,0.0407577259957031,0.0431975498970501,0.0455732675524968,0.0479700965631813,0.0504869724465162,0.0683314036569974,0.0851408561124758,0.1009527203362295,0.1152516730928842,0.1293937957549902,0.1473141674235863,0.1642706556630258,0.1796422460063558,0.1946005909270301,0.2081275907498848,0.225287430495058,0.2408435791611746,0.2554154858464445,0.2698350310613256,0.2831357729025454,0.2965781149771063,0.3094925000557202,0.3209241176272291,0.3315765612603423,0.3430300395799492,0.3526262848157612,0.361687462030936,0.3703169688231262,0.3787412788262467,0.3872920001940523,0.3947051152720026,0.4024201210060503,0.4091677577637383,0.416655880297186,0.4238256760858949,0.426108773065717,0.4275922937955952,0.4301111723241655,0.4323716693500428,0.434134328358209,0.4348013550970126,0.435884359162337,0.4371546732837055,0.4380563030428482,0.4389421082065992,0.4399954585020626,0.441149416093425,0.4417615147324752,0.4422604980912561,0.4437969786744362,0.4454726765057838,0.4464924266651161,0.4457278531780408,0.4487538605185664,0.4510337544173199,0.4535208643815201,0.4534026874729085,0.4518289541473467,0.4553877296792276,0.4555459021141037,0.4574869237319061,0.4536876867431986,0.4537710367754,0.4618212669683258,0.462904498816101,0.0,2.686643923977316,77.99463161221186,270.48303328139247,431.6134620648747,NC_public_baseline,76 +100000,95758,45134,418.9414983604504,9333,96.1277386745755,7182,74.33321497942731,2939,30.32644792080035,77.37657405990127,79.72145343060761,63.3458979718325,65.07905889378188,77.02450208996129,79.36615330928689,63.219294311530106,64.95380880154968,0.3520719699399848,355.30012132072386,0.1266036603023934,125.25009223219286,44.93236,31.255049013928048,46922.82629127592,32639.62176938538,151.3347,78.79174532932457,157305.36352054137,81548.81610865364,233.99061,108.50552973001336,239479.10357359177,109558.50593989284,5221.06072,2311.522722620713,5413005.252824829,2374577.134673564,1791.12499,770.1650903705901,1854433.958520437,788246.3818903806,2899.35854,1185.8371559928828,2995269.47095804,1210749.3143811934,0.43673,100000,0,204238,2132.855740512542,0,0.0,0,0.0,11796,122.49629273794358,0,0.0,22310,228.12715386703985,2329598,0,83714,0,0,5852,0,0,29,0.2924037678314083,0,0.0,0,0.0,0,0.0,0.09333,0.2137018295056442,0.3149041037179899,0.02939,0.3075599635664406,0.6924400364335593,26.03807989628692,4.654155082652749,0.3262322472848789,0.1925647451963241,0.239766081871345,0.2414369256474519,11.253768125044084,5.670164468239951,31.252837947734896,15786.109194603345,80.73912517499652,16.073996059220686,26.40037290897276,19.28161852857599,18.98313767822707,0.5487329434697856,0.7686189443239335,0.6991037131882202,0.5963091118800461,0.1196283391405342,0.715047393364929,0.917948717948718,0.8726333907056799,0.7686170212765957,0.1554252199413489,0.4976337823079723,0.7099697885196374,0.6418842224744609,0.5486008836524301,0.1107892831281679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027651169857186,0.0057172399112003,0.0084214371233182,0.0111239790320614,0.0139126189895045,0.0164051282573497,0.0191289983787256,0.0218483276840772,0.0242284218812296,0.0269216202106642,0.0292616431616923,0.031697477956498,0.0340591331523974,0.0366834533115004,0.0393360430808591,0.0417777777777777,0.0442035288270377,0.0467323651452282,0.0490566037735849,0.0514548143211213,0.0684847156558857,0.0845708190412448,0.0997976790749845,0.114810260937188,0.1290798528776334,0.1475836116866094,0.1643166108307535,0.1807271218359986,0.1959804361290874,0.2097063018046515,0.2267611549687133,0.2427999567240073,0.257345822046713,0.2716042628618946,0.2840188479830897,0.2970923723270998,0.3104395604395604,0.3226892080500653,0.3348052124954595,0.3458071314845996,0.3564849102018145,0.366690844427806,0.3760221530596547,0.3846790046507168,0.3929987111208385,0.4012807225347942,0.4084693979765602,0.4158531773809675,0.4221375727186743,0.4287167831705802,0.4304621480652856,0.4324342948497085,0.4340836920471385,0.4363649539821726,0.4379304176728378,0.4391954235098727,0.4393883947749439,0.4403009702329879,0.4415334364792848,0.4433650565631172,0.4450676032933001,0.4459405625049797,0.4475542214518243,0.4471988101140307,0.4481192783079575,0.4490377010282098,0.4508130550109561,0.4526550079491256,0.4550501815075806,0.4548866112501009,0.4575099730958344,0.4613053360753328,0.4624358974358974,0.4615205585725369,0.4594982765224052,0.4570113829014289,0.4563274266896659,0.4564323879983559,0.463605823068309,0.4665629860031104,0.0,2.6209516760036733,74.97655497320456,274.4481747218512,420.490859146347,NC_public_baseline,77 +100000,95748,44761,415.8729164055646,9243,95.19781092033251,7224,74.83185027363496,2942,30.2773948280904,77.3313489084019,79.69768499473146,63.31030609897547,65.06300860430581,76.97448087778275,79.3401254530917,63.179524886428446,64.93550905751113,0.3568680306191538,357.559541639759,0.1307812125470207,127.4995467946809,44.83402,31.204309361608647,46824.7900739441,32589.807997669566,153.96934,80.55684000064785,160140.00292434308,83482.07202156915,234.93204,109.01870514875486,241990.13034214816,111245.87745539357,5254.19635,2335.3153940044813,5441094.654718637,2393814.289462605,1757.2938,760.0249098083488,1815727.315453064,774488.7217161534,2899.05816,1201.7873068272602,2983999.2480260683,1215767.3692138428,0.43238,100000,0,203791,2128.399548815641,0,0.0,0,0.0,11960,124.2114717800894,0,0.0,22318,229.8011446714292,2325414,0,83641,0,0,5819,0,0,36,0.3759869657851861,0,0.0,0,0.0,0,0.0,0.09243,0.2137702946482261,0.3182949258898626,0.02942,0.3119228401395444,0.6880771598604556,25.95606420928328,4.685008303307453,0.3329180509413068,0.1859080841638981,0.2362956810631229,0.2448781838316722,11.08073194730034,5.370762381900546,31.460517314507303,15634.675641468886,81.57542126042036,15.602776258171293,27.327510670269,19.774138957518343,18.870995374461717,0.5347452934662237,0.7587490692479524,0.6902286902286903,0.5539853024307518,0.1195079086115993,0.6842410196987254,0.8992443324937027,0.8275862068965517,0.7321428571428571,0.1596638655462184,0.4878137504547108,0.6997885835095138,0.6465753424657534,0.5032679738562091,0.1088888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026747991367693,0.0052019428698905,0.0077746764780512,0.0104043893517577,0.0130623206982848,0.0158059292603191,0.0181093289555526,0.020839927708629,0.023555523734517,0.0261281930475039,0.0286654906465375,0.0311196498654118,0.0334153193854133,0.0359789341330942,0.0385834167690259,0.0410931990445365,0.0435426417595162,0.0458653716444084,0.0482848232848232,0.0505051557129465,0.0675602321600066,0.0841539089396523,0.0993055118440653,0.114291723630245,0.1279774771449961,0.1465019357295479,0.1630619348813516,0.1792129205463107,0.1942921276254609,0.2081589284564363,0.2245747180957719,0.2408982094305491,0.2558965089182655,0.2697627051828166,0.282828505341998,0.2964540423030424,0.3097815764482431,0.3216872219406431,0.3332689796150133,0.3437607504070821,0.3544635203076852,0.3639592123769339,0.3720469404463851,0.380375843122167,0.3880746128635305,0.3952048445900019,0.4028955688262157,0.409874148010109,0.4162072193904088,0.423155859804298,0.4258583400919167,0.4278220295697069,0.4300296903718366,0.4319599593790802,0.4334829215928913,0.4349684760879594,0.4351993133702079,0.4362556701030928,0.4374699126607523,0.4387584646058233,0.4410032838863096,0.4424889881011699,0.4440123430697045,0.4446150372544592,0.4456593046140389,0.447141614612161,0.4481895112543895,0.4503585657370518,0.4502395081146779,0.4520481341922936,0.4513405696261249,0.4527435731259451,0.4553262402256121,0.4564106534530814,0.4543207529232816,0.4578069129916567,0.4545036764705882,0.4505208333333333,0.4521524540718398,0.4502879078694817,0.0,2.2178846703126416,77.21672079353068,274.98900163824834,423.6184946913265,NC_public_baseline,78 +100000,95495,44941,418.87009791088536,9236,95.46049531389076,7195,74.78925598198859,2951,30.52515838525577,77.22623088476638,79.71209449149887,63.24095407219974,65.07580825109908,76.86983398892485,79.35101422274737,63.11212578693916,64.94774214073267,0.3563968958415273,361.0802687515076,0.1288282852605817,128.06611036640447,44.58124,31.06521743553246,46684.370909471705,32530.726672111065,155.23484,81.55440628331849,162002.45039007277,84847.13881300554,236.32963,109.98067275330811,243875.585109168,112479.28818230637,5284.07642,2336.922606803332,5497970.82569768,2411911.0159117905,1796.76667,769.8481987184834,1868406.1364469344,793088.0294483135,2928.23986,1202.826868519195,3032315.3672967167,1231404.3499902843,0.4328,100000,0,202642,2122.016859521441,0,0.0,0,0.0,12077,125.88093617466882,0,0.0,22482,231.8969579559139,2319773,0,83413,0,0,6010,0,0,40,0.4083983454631132,0,0.0,0,0.0,0,0.0,0.09236,0.2134011090573012,0.3195106106539627,0.02951,0.3177329767537544,0.6822670232462457,25.856169774024597,4.658197479524244,0.3260597637248089,0.1911049339819319,0.2480889506601807,0.2347463516330785,11.093744446499182,5.4227281748509,31.48774907298416,15704.642527094284,81.05378370411118,15.93159317110125,26.47565526232568,18.8816002928906,19.76493497779365,0.5370396108408617,0.7621818181818182,0.6867007672634271,0.5926583777383067,0.1142857142857142,0.6997578692493946,0.9097938144329896,0.8784530386740331,0.7493112947658402,0.1508379888268156,0.4885441096878946,0.7041540020263425,0.6289517470881864,0.5497737556561086,0.1051156271899089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027461113644424,0.0054063923235315,0.0081730866854833,0.011021860701576,0.0135913829613943,0.0161748968047699,0.0184083511056235,0.0209163550160423,0.0235403644101609,0.0262392164094998,0.0289559040893414,0.031431215299198,0.0337946373409119,0.0360469073919366,0.0385914881745761,0.0410730555785637,0.0433930164526235,0.0458523908523908,0.0483210568538178,0.0506547208821502,0.0678061902718318,0.085400142683285,0.1008875241860856,0.115837399744949,0.1298861871096598,0.1479585347239888,0.1641078529355476,0.1796882501680376,0.1953476416912993,0.2102779628952856,0.2269512734967987,0.2423608022649123,0.257382125877786,0.272285695489134,0.2844451801578105,0.2978013916368406,0.3112528677746069,0.3231976901560949,0.3342437381220625,0.344648598989435,0.3550015667978135,0.3647500586716733,0.3738346614728691,0.3822489051446172,0.3902373543230215,0.3981247522790329,0.4055275180286192,0.4120215081295609,0.4186921974729712,0.4243614931237721,0.4270224848542347,0.4287533215234721,0.4301082889216464,0.4323680272009997,0.4341368468333583,0.4347483548058207,0.4350556985088462,0.4368145997511406,0.4380302375809935,0.4394593715555716,0.441042654028436,0.4429031806080986,0.4438622913263899,0.4456376447132921,0.4454749038508349,0.446363948543202,0.4477465236622243,0.4506839682945538,0.4513938527519657,0.4543763145122148,0.4538729937194696,0.4567700720047642,0.459468098708605,0.4569091891057789,0.459216502649508,0.4627577166011202,0.4639800840205383,0.4622147791500942,0.4648725212464589,0.4650157232704403,0.0,2.1631444723226685,73.76674022811015,277.1168988449457,428.8198052478081,NC_public_baseline,79 +100000,95692,45301,421.0801320904569,9584,98.73343644191785,7446,77.03883292229236,3068,31.538686619571127,77.36399481233721,79.74861397137025,63.33329461681414,65.09726987421891,76.9900548704512,79.37625252942007,63.196529870142406,64.96502558689419,0.3739399418860074,372.3614419501757,0.1367647466717372,132.24428732472404,45.24564,31.505079154222003,47282.57325586256,32923.4200917757,158.2637,82.53317344018619,164614.09522217113,85474.22296554173,241.43651,112.45656346805808,248292.1351837144,114239.69660096326,5400.50087,2384.0303303094724,5593243.928437069,2440973.582232028,1796.31653,770.1286432145821,1860505.705806128,788134.2357402416,3020.03496,1246.5356330572065,3108001.400326046,1261510.771471095,0.43658,100000,0,205662,2149.20787526648,0,0.0,0,0.0,12279,127.50282155248088,0,0.0,22966,235.91313798436653,2324636,0,83610,0,0,6044,0,0,38,0.3971073861973833,0,0.0,0,0.0,0,0.0,0.09584,0.2195244857758028,0.3201168614357262,0.03068,0.3114802729160486,0.6885197270839514,25.97102325072173,4.646255439981968,0.3346763362879398,0.1881547139403706,0.2370400214880473,0.2401289282836422,10.959880068586749,5.460585317727289,32.67284048394875,15770.123547539675,83.50452738060855,16.27848009282948,27.83324796785297,20.06112861840012,19.33167070152598,0.5361267794789148,0.7430406852248393,0.6869983948635634,0.5878076062639821,0.1065155807365439,0.6956011730205278,0.8957816377171216,0.8439108061749572,0.7424242424242424,0.1207430340557275,0.488765023515067,0.6813627254509018,0.6390780513357779,0.5438218390804598,0.1033287101248266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026342184982928,0.0055472735201354,0.0081925607081945,0.0108136675000508,0.0134719876269358,0.0160767773091264,0.0185238075808886,0.0209771640998406,0.0234215990099516,0.0261010249951361,0.0286728059560678,0.0311498644318461,0.0337279749843137,0.0360841207200337,0.0384234317914422,0.0408825840605484,0.0434359234665865,0.0461904070069114,0.0487972222799758,0.0512441128662526,0.0685668330791886,0.0849976971067286,0.1010984860407289,0.115972360989872,0.1305223211932746,0.1487015184198283,0.1654417613184435,0.1809273524279695,0.1954748328955517,0.2102887893145809,0.2269556981099582,0.2428134027199255,0.2575020937340251,0.2715479523976198,0.2850383476930864,0.2989976186520462,0.3117048346055979,0.3236670942767762,0.33559287393126,0.3462842869909943,0.3564242964472176,0.3657089355725905,0.3746311985307186,0.383539944077092,0.3915629675582965,0.3988056313003565,0.4065810090880601,0.4131979824740167,0.4203636740671617,0.4265422882285322,0.4293978828130267,0.4318767839168264,0.4339409513858492,0.4360007536996507,0.4378250309198468,0.4388884624241959,0.4391746031746031,0.4407197841963287,0.4410655512890839,0.4426885987752976,0.4443164870018312,0.4454320790816326,0.4456937546232696,0.4475274414394025,0.4492122921326461,0.4502077434038161,0.4515128680732668,0.4532605921388463,0.4558466590519703,0.4577345389956402,0.4588175378489745,0.4598023864802116,0.4612300329819569,0.4635522809217746,0.4635188963373166,0.4662328094302554,0.4630573248407643,0.4655245346869712,0.4670882437482035,0.4603302456705598,0.0,2.9451746318083534,75.17580832042987,285.0166031035709,442.6964284598236,NC_public_baseline,80 +100000,95654,44876,416.8565872833337,9427,97.03723837999456,7254,75.09356639555064,3012,30.90304639638698,77.31725194233033,79.72541007435817,63.30264576078415,65.08511999571134,76.95385316869154,79.3639471396424,63.17106215958886,64.95796428093861,0.3633987736387922,361.4629347157603,0.1315836011952953,127.15571477272648,44.50842,30.985502703530443,46530.6416877496,32393.316226744773,154.00966,80.7789998317138,160223.04346917014,83674.34948527074,237.63159,110.2957309831322,244498.2645785853,112152.38068273192,5288.417,2349.433486308896,5474688.136408305,2402881.7260369905,1789.04114,777.3903886464389,1843433.4999059108,786282.9085579172,2969.49192,1220.6522254798365,3049999.16365233,1230384.3495938224,0.43356,100000,0,202311,2115.0291676249817,0,0.0,0,0.0,11977,124.42762456353108,0,0.0,22606,232.4314717628118,2327728,0,83691,0,0,5837,0,0,39,0.4077194889915738,0,0.0,1,0.0104543458715788,0,0.0,0.09427,0.2174324199649414,0.3195077967540045,0.03012,0.3031093279839518,0.6968906720160482,26.01217773851209,4.715330485121105,0.3278191342707471,0.1953405017921147,0.2411083540115798,0.2357320099255583,11.261076927448569,5.618974865414288,32.10901290904181,15651.354991840475,81.87465928039823,16.388331410129997,26.89457197273553,19.348229876187816,19.243526021344884,0.5399779432037497,0.7614678899082569,0.6896551724137931,0.5824561403508772,0.115494568324757,0.6994758299359348,0.914572864321608,0.8618881118881119,0.7519582245430809,0.1538461538461538,0.4905183312262958,0.7016683022571149,0.6351052048726468,0.53353428786737,0.1054151624548736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003039298124753,0.0057901941895249,0.0088190222961933,0.011350587852737,0.0142951620287938,0.0168585107466639,0.0193724114010568,0.0219025825433148,0.0244930531398989,0.0268528574063069,0.0294144805014927,0.0321115529660799,0.0345047660222757,0.0368270202280553,0.0391940181356247,0.0415821710880271,0.0438920218941781,0.0462561013604735,0.0486624840028716,0.0512785764174841,0.0689157986020415,0.0852217986847065,0.1003705764405765,0.1142664744689134,0.1280620318599008,0.1463329452852153,0.1623362839372519,0.1778156451355237,0.1924713024518501,0.2064415071667668,0.2231007885551773,0.2391572656605244,0.2551292517006803,0.2685241953142106,0.2814128482818646,0.2953026086763711,0.3080005804802357,0.3195224323989782,0.3307077677395923,0.3416422287390029,0.3518338427340928,0.3621468529831707,0.3712620254964219,0.3795068690383346,0.3882994256789642,0.3968230440475308,0.4040914621144656,0.4107231634096906,0.4177100227051573,0.4253004243618048,0.4273938968782883,0.4289536471334593,0.4305502605159486,0.4323760093944358,0.4334359771592573,0.4344982880409636,0.4354648569425858,0.4367270683155876,0.4385672278300345,0.4399130059673592,0.4426291434507508,0.4434942088790543,0.4445315811784655,0.4460838670257304,0.4480240339993161,0.449552222987653,0.450351633722108,0.4513223457263319,0.4548053897566032,0.4586466165413533,0.4615993297337553,0.4621097137901127,0.4626779158884523,0.4631266129662938,0.4629504395710559,0.4644590004852013,0.4635646687697161,0.4669033201085821,0.4665365309537089,0.4623739332816136,0.0,2.805297558058147,76.10147637567151,278.3579021830776,425.3141000043574,NC_public_baseline,81 +100000,95857,44837,415.7442857589952,9383,96.62309481832312,7244,74.98669893695818,2956,30.53506786150203,77.4717338221379,79.76006915356463,63.40399372213196,65.09154053940084,77.11535574033046,79.39683204014435,63.27582773625374,64.96309693472224,0.3563780818074491,363.2371134202828,0.1281659858782191,128.44360467859417,45.06744,31.30566390955754,47015.28318224021,32658.714449187373,153.86287,80.37714426889488,159933.6407356792,83271.81558873624,235.82243,109.55009508088968,241861.42900362,111227.4549673627,5220.81541,2327.291401312162,5411195.979427689,2392612.0380485146,1787.67572,770.4453512102228,1852992.050658794,791796.3437309979,2910.21196,1197.877586375086,3008560.4807160664,1225172.2391366218,0.43337,100000,0,204852,2137.058326465464,0,0.0,0,0.0,11927,123.83028886779265,0,0.0,22451,230.12403893299395,2331576,0,83802,0,0,5867,0,0,39,0.4068560459851654,0,0.0,0,0.0,0,0.0,0.09383,0.2165124489466276,0.3150378343813279,0.02956,0.3202872168284789,0.6797127831715211,26.0578875192404,4.588033708323554,0.3377967973495306,0.1914688017669795,0.2364715626725566,0.2342628382109332,11.075344203322324,5.573509211611871,31.404335082325847,15660.215586871507,81.56962681945554,16.116351732450145,27.68961145909117,18.786616440787554,18.97704718712666,0.5409994478188846,0.7584715212689257,0.7020841847159788,0.5615792575132587,0.1144191476941039,0.6924418604651162,0.9020100502512562,0.8614864864864865,0.7223719676549866,0.1504178272980501,0.4938450398262128,0.7007077856420627,0.6512129380053908,0.5165912518853696,0.104874446085672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028849073792894,0.0056629960186807,0.0082844916749477,0.0109825416159155,0.0138504999593528,0.0165739110970932,0.0188146850297449,0.021705647752425,0.0240691951065089,0.0265278573181706,0.0289433525537951,0.0312698705720673,0.0336740459191535,0.036361391486866,0.0387061527836475,0.0411701534458189,0.043805662153356,0.0462525390705965,0.0487181883313086,0.0510640511993339,0.0676933985381062,0.0836391005739015,0.0987487424547283,0.1139362864587711,0.1278824670123519,0.1459046894160429,0.1627117925228492,0.1786588090121907,0.1937570724000256,0.2083507485880247,0.2260900443334911,0.2418239197630936,0.2563256086701561,0.2699249844400039,0.2829336877601907,0.2965747517855958,0.3098065867462899,0.3212942061700526,0.3321891426499909,0.342656142759094,0.3530349592180965,0.3630536810890326,0.3723849372384937,0.3807585480317977,0.3889172314943031,0.397016765285996,0.4047136277160308,0.4119091857771895,0.4195178194349082,0.4263143305922572,0.4278165691639932,0.4292732602144027,0.4313103545499401,0.432570784047199,0.4339695621773605,0.4357912814143551,0.4363783372439597,0.437117573524574,0.4384216205107126,0.438802176559032,0.4400692340977931,0.4416966040132584,0.4425173647653125,0.4436652956644865,0.4445572557835956,0.4443569760424047,0.4445272633449917,0.4442440922463699,0.4459264472989618,0.450284940023114,0.4516556897182583,0.4549943642316569,0.4561987704918033,0.4597727980080921,0.458389781304432,0.4623078799707246,0.4640849469081823,0.4698347107438017,0.4747816286277824,0.4781925343811395,0.0,2.275058765502202,76.68270107123647,281.2877284100647,416.7661443087352,NC_public_baseline,82 +100000,95730,45117,418.9804658936592,9484,97.62874751906404,7357,76.16212263658205,3080,31.7141961767471,77.34438518034166,79.69833109093932,63.33412346583962,65.07281241147521,76.96809471342345,79.31879602784824,63.196323553529474,64.936729787243,0.3762904669182063,379.5350630910832,0.1377999123101432,136.08262423221618,44.1826,30.784263301122472,46153.34795779797,32157.38357998796,155.28976,81.20207986782839,161520.49514258854,84137.34055506368,239.5103,111.31939958753632,245534.9211323514,112705.04785973852,5425.72194,2418.774642257092,5620955.029771231,2480737.854769267,1788.55662,771.0056135189044,1848813.099341899,785933.4492859098,3046.42574,1267.771794367754,3139695.0590201607,1288010.2429001215,0.43548,100000,0,200830,2097.8794526271804,0,0.0,0,0.0,12018,124.83025174971272,0,0.0,22796,233.5318082105923,2328869,0,83807,0,0,5849,0,0,36,0.3760576621748668,0,0.0,0,0.0,0,0.0,0.09484,0.2177826765867548,0.3247574862927035,0.0308,0.3123132098027495,0.6876867901972504,25.79722037657815,4.661181314349131,0.3215984776403425,0.1847220334375424,0.2456164197363055,0.2480630691858094,10.874753524700088,5.22778690803111,32.99208684180411,15698.414287184592,83.19730613556251,15.727887463664208,26.985074667229053,20.45148502591146,20.032858978757787,0.5341851298083458,0.7615894039735099,0.6893491124260355,0.5764383561643835,0.1173215273934698,0.6865839909808342,0.9375,0.8446280991735537,0.7114914425427873,0.1489361702127659,0.4857603439011284,0.6923076923076923,0.6360022714366838,0.5374293785310734,0.1090146750524109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028361897816133,0.0057181673476422,0.008309743402429,0.0107857773986167,0.0131667242816763,0.0157584518440849,0.0187215914881474,0.0211031175059952,0.023704672477036,0.0265118182748388,0.0292134601196819,0.0316531699356467,0.0340842492725608,0.036353525159111,0.0388912386395287,0.0414087447166906,0.044063761515371,0.0465321275977931,0.0488256079817085,0.0512259650438514,0.0683920405904829,0.0854158817865963,0.1009859450388084,0.1163213797455042,0.1306878697444874,0.1496219531539153,0.1663732020874878,0.1819129805594866,0.1957422717853404,0.209448953988355,0.2256414673801858,0.241752772518258,0.2575067155332731,0.2714579369765357,0.2848340815069096,0.2980526385750365,0.3107587516051588,0.3228478498193645,0.334597522340945,0.3453180515759312,0.3555926157552174,0.3646310462378314,0.3736757282013604,0.3818876355904717,0.3895684985697766,0.3967492738396885,0.4032604463646525,0.4100867387999642,0.4165951805349762,0.423051440383749,0.4255474452554744,0.4271837952855998,0.4291396540497693,0.4309979077066139,0.4327599102468212,0.4340435386753126,0.4352993801520864,0.4375134508732721,0.4395600606812853,0.4408615717375631,0.4418635443660506,0.4433092548988306,0.4456777309411341,0.4460751007836209,0.4467384142323742,0.4470059484467944,0.4475694444444444,0.4476370268454228,0.4474352100089365,0.4475839143830063,0.4476765799256506,0.4516758867556134,0.4533470516365507,0.4585297982530726,0.4574090079708057,0.4576559087600097,0.4607766074516585,0.456627783669141,0.4581181870338497,0.4604200323101777,0.0,2.6923558204610205,78.74257191270738,282.2088619474918,427.5519093574831,NC_public_baseline,83 +100000,95665,44795,414.67621387132175,9239,95.22813986306382,7227,74.90722834892594,2958,30.54408613390477,77.28108161739658,79.66820376610067,63.29287913429015,65.05574893552298,76.92094692904725,79.30363310609933,63.16109868890587,64.92457468125598,0.3601346883493335,364.5706600013483,0.1317804453842868,131.1742542670089,44.60544,31.023223555109045,46626.70778236555,32429.021643348187,154.56517,81.31201900555534,160917.50378926462,84345.25595348269,235.86395,109.99639830101296,242172.43505984425,111644.14887737187,5258.8732,2344.941268344284,5454575.35148696,2408971.210061638,1793.35216,769.9620345476895,1859317.535148696,789734.4463009794,2926.71666,1215.7609527842892,3024674.813150055,1241634.6126239228,0.43257,100000,0,202752,2119.3958082893428,0,0.0,0,0.0,11964,124.39241101761354,0,0.0,22377,229.54058433073743,2323052,0,83542,0,0,5680,0,0,48,0.5017509015836512,0,0.0,0,0.0,0,0.0,0.09239,0.21358392861271,0.3201645199696937,0.02958,0.3149549918166939,0.685045008183306,25.876214719661423,4.696125592090378,0.3315345233153452,0.1920575619205756,0.2397952123979521,0.236612702366127,10.904421596160116,5.203289213255269,31.65918388769196,15670.977813507903,81.79932902166792,16.35415099012552,27.14759315225161,19.00323496873869,19.294349910552093,0.5379825653798257,0.7680115273775217,0.6869782971619366,0.5684210526315789,0.1177149451817657,0.6886682242990654,0.9152941176470588,0.8297872340425532,0.7486486486486487,0.1274787535410765,0.4912058023572076,0.7030114226375909,0.6430131004366813,0.5186567164179104,0.1152173913043478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029884009522362,0.0058597512140228,0.0084841227153252,0.0110127906858611,0.0137400077293899,0.0166082847949167,0.0190978240920121,0.0219504226732551,0.0246153846153846,0.027298129970624,0.0298366673160328,0.032824756663518,0.0352324146441793,0.037709799396231,0.0403224141845728,0.0427634980045079,0.0452869276983633,0.0476175649448371,0.0501269035532994,0.0525191253413378,0.0697980547226778,0.086778979551237,0.1031152909564195,0.1179849756959788,0.132154500279586,0.1501994265824525,0.1662650346606652,0.1817881641174215,0.1969633787757284,0.2103816334858149,0.2272849853834288,0.2428630264669542,0.2579763188566822,0.2710752311264952,0.2839616402116402,0.2975675255787114,0.3101778324572195,0.3214515201731543,0.332195948635707,0.3424701561065197,0.3533034130049055,0.3627086436840932,0.3716059789383704,0.3808309782935482,0.3886993395559671,0.3963684457738993,0.4035129570108477,0.4101607421226138,0.4163381601030405,0.4216706025950593,0.4235988839829889,0.4253699320349376,0.4274091638387596,0.4289688319254296,0.4301047866041045,0.430586672022991,0.4315444817121865,0.4326363440396637,0.4334997495119802,0.4355897954028795,0.436417774574696,0.4387470671987487,0.4401361991913173,0.4414731676284818,0.4422931182007089,0.4420493017350825,0.4429998552193427,0.4425200883567564,0.4438657200956084,0.4464926787947239,0.4478496365908985,0.4472261273926678,0.4466212744090442,0.4455162833770643,0.4477683264838,0.4443120905300774,0.4458281444582814,0.4413750767341927,0.4408365437534397,0.4390243902439024,0.0,2.42897985879933,76.25839508121187,281.0300714193271,421.5710670824044,NC_public_baseline,84 +100000,95696,44897,416.3601404447417,9362,96.12731984617956,7219,74.52767095803378,3016,30.931282394248456,77.3612597271838,79.72518894874511,63.34108899169471,65.08836725281313,76.98106586978336,79.34753174370373,63.20182685320793,64.95413173701691,0.3801938574004424,377.6572050413876,0.139262138486778,134.23551579622028,45.56706,31.68711979233749,47616.47299782645,33112.271978282784,153.79715,81.1097216771235,159814.34960708913,83857.74920281256,238.7624,111.70443990801648,243684.3337234576,112284.88500520051,5271.1438,2367.766349819285,5447092.386306637,2413133.338717694,1719.54628,749.7796321014266,1773817.1814913894,760434.5449145482,2980.61092,1245.903769652739,3060293.533690018,1255303.0084026402,0.43281,100000,0,207123,2164.385136264839,0,0.0,0,0.0,12001,124.46706236415316,0,0.0,22709,231.5039291088447,2323468,0,83543,0,0,6103,0,0,34,0.3448419996656077,0,0.0,0,0.0,0,0.0,0.09362,0.2163073866130634,0.3221533860286263,0.03016,0.3093211752786221,0.6906788247213779,25.82705983013071,4.594350193455874,0.3355035323452001,0.1879761739853165,0.2422773237290483,0.2342429699404349,10.940039909942922,5.389181587140529,32.41676141711578,15673.393358317397,81.7367879354499,15.811055520769225,27.46045806668602,18.962232016844364,19.503042331150283,0.5427344507549522,0.7700810611643331,0.6973575557390587,0.5860437610881135,0.1103487707261292,0.6800225733634312,0.9192708333333334,0.8591772151898734,0.683377308707124,0.1326259946949602,0.4980723333945291,0.71120246659815,0.6402234636871509,0.5579268292682927,0.1042274052478134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003099644452548,0.0058804444804931,0.0084228044894562,0.0111550222998851,0.0138513169937964,0.0164355104784016,0.018977015479371,0.0214019502731403,0.0239962374881143,0.0266485119626531,0.0296418574607048,0.0324147776876226,0.0353906756214709,0.0376532399299474,0.0401329164215762,0.0426358993445402,0.0450172426291643,0.0473744292237442,0.049654756457718,0.0517552177220201,0.0693245063539632,0.0851319948918709,0.100497241046514,0.1152661079154091,0.1295695071046085,0.1472052775692733,0.1634903969541747,0.179707368981112,0.1945435511782425,0.2085209485827008,0.2265057127165824,0.2423212991312438,0.2569539592440356,0.2703955568189272,0.2836971463133007,0.2959867146415721,0.308449997211222,0.3196163749002148,0.3303989744869599,0.3415232008063869,0.3522569444444444,0.3623259623259623,0.3717077214590241,0.3804875708992361,0.3881862691499314,0.3957501355815214,0.4038401322628724,0.4110186235643539,0.4174652642513959,0.4236585624238572,0.4260492509692147,0.4278793734041819,0.4300982540467943,0.4309403496544113,0.432753081807994,0.4341346894744953,0.4349785783681335,0.4363011548565103,0.4377213796898105,0.4383606026243317,0.4393873499101824,0.441078788363811,0.4419576562433705,0.4436262292110391,0.4457901933971478,0.4494334315208449,0.4511046511627907,0.4535029391924448,0.4526157266305712,0.4552214546932141,0.4580603187880477,0.4586893046393425,0.4615285806037251,0.4621783409779989,0.460608386911045,0.4607914542364651,0.4645879034785333,0.4684385382059801,0.4671071531169204,0.4579207920792079,0.0,3.5943854345673976,77.80767342425119,271.97078584563207,420.9535882408132,NC_public_baseline,85 +100000,95638,44821,417.35502624479807,9240,94.92042911813296,7236,74.9283757502248,2950,30.489972605031472,77.2430810454354,79.64920674543717,63.27207635196621,65.0509809337906,76.87983115657403,79.28118742019205,63.13913108959208,64.9187811325761,0.3632498888613753,368.0193252451147,0.1329452623741289,132.19980121449737,44.6182,31.02743605838098,46653.21315794977,32442.58146174217,152.62277,80.45799589607022,158875.5829272883,83419.41058582385,241.50411,113.2613570676766,247514.7117254648,114607.5744751897,5276.22433,2362.601848439916,5473411.342771702,2427019.1232372327,1792.48533,783.3664726533431,1854432.6732052115,799345.3767906864,2920.65634,1219.9024694516177,3021782.8896463746,1247436.4660169636,0.43183,100000,0,202810,2120.6005980886257,0,0.0,0,0.0,11873,123.40283151048746,0,0.0,22859,233.9551224408708,2321596,0,83501,0,0,5881,0,0,43,0.4496120788807796,0,0.0,0,0.0,0,0.0,0.0924,0.2139730912627654,0.3192640692640692,0.0295,0.3233514511332171,0.6766485488667829,25.6016586798492,4.693057182606424,0.3331951354339414,0.1860143725815367,0.2432283029297954,0.2375621890547263,10.94253875522666,5.356172198405425,31.868792533065037,15594.857649953705,82.11303729445737,15.649659547961194,27.42404840617121,19.413378246300443,19.62595109402453,0.5443615257048093,0.7659732540861813,0.699294898382414,0.5927865037812682,0.115340909090909,0.6849775784753364,0.928388746803069,0.8413461538461539,0.7060367454068242,0.1675257731958762,0.4983492296404989,0.6994764397905759,0.6496922216004477,0.5605381165919282,0.1005830903790087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024627047186638,0.0051731483172052,0.0079896043775316,0.0105467440230036,0.0132739312196759,0.016049697031417,0.0186184042824369,0.0213608887436693,0.0239999181937172,0.0262255127850654,0.0285816839298533,0.0310038510911424,0.0333823544535516,0.0360881031853958,0.0384385128300406,0.0410298831558266,0.0429580674567,0.0453771744094324,0.0478151881091313,0.0501339616150454,0.0670323928944618,0.0834284756627667,0.0996010498687664,0.1144279654326705,0.1280470424289771,0.1454872690699274,0.1624808771035186,0.1781080418350267,0.1930365186873388,0.207308035186836,0.2245303175819314,0.2408551789934734,0.2553295787535812,0.2683258116811988,0.2816069144948626,0.2947033098763513,0.3073954336469298,0.3198944436299663,0.3310394248925086,0.3420971092163096,0.3523031772361873,0.361114041565566,0.3698397827401776,0.3782137536642799,0.3871651758512272,0.395254765645295,0.4026032767112272,0.4093791551600695,0.4162304346693752,0.4221794531457393,0.4245366045195445,0.4274704596397045,0.4297261653218373,0.432152318844799,0.4343935487739073,0.4351232326354013,0.4358310147430362,0.4371432364263905,0.4387434374136502,0.4392416958831821,0.440954606775732,0.4414609672887818,0.4431081741495442,0.4436146547419076,0.4446995042613983,0.4467079227643356,0.4470056826460731,0.4476438109912686,0.4484628645309582,0.4510836292396228,0.4501477971191291,0.4538360798865,0.4554973821989528,0.456394211967149,0.4589940655705808,0.4552875243664717,0.4565598597162442,0.4562657695542472,0.4592067988668555,0.45796986518636,0.0,2.9093013583372045,79.10123874216654,274.1720813512561,420.73685203653616,NC_public_baseline,86 +100000,95802,44982,418.20630049477046,9400,96.61593703680506,7226,74.68528840734014,2990,30.63610363040437,77.44904619750217,79.77579289882384,63.38601454967061,65.10691637410197,77.07826174753257,79.40834539274778,63.24907260846229,64.97600731649031,0.3707844499696051,367.44750607606136,0.1369419412083203,130.90905761166027,45.07822,31.37733288943887,47053.52706624079,32752.273323562,153.92838,80.77156332108096,159840.0659693952,83478.1935561384,235.57935,109.94615371299916,242385.3155466483,111930.96903552872,5258.62375,2355.9443427787105,5432672.605999875,2403231.1164275664,1770.21231,771.1841570275546,1827131.2498695224,784444.5724130712,2952.68722,1236.3624451835603,3027405.857915284,1240912.1419869629,0.43457,100000,0,204901,2138.7966848291267,0,0.0,0,0.0,11963,124.07882925199893,0,0.0,22419,230.5379845932235,2331014,0,83747,0,0,5990,0,0,35,0.3444604496774597,0,0.0,1,0.0104381954447715,0,0.0,0.094,0.2163057735232528,0.3180851063829787,0.0299,0.3139171621485437,0.6860828378514562,25.970220516885497,4.607482703654268,0.3335178522003875,0.1978964849155826,0.2413506781068364,0.2272349847771934,10.912858981047297,5.397029141883435,32.11284434644717,15702.817168293644,81.44666865739065,16.558806883939646,27.232923479261828,18.278946914563956,19.375991379625223,0.5351508441738168,0.7559440559440559,0.6858921161825726,0.5645554202192449,0.1181192660550458,0.6877880184331797,0.9303482587064676,0.8452579034941764,0.7095890410958904,0.1440217391304347,0.4868852459016393,0.6877431906614786,0.6329463792150359,0.5231010180109632,0.1111918604651162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027850075448386,0.0054534580803422,0.0082899556583767,0.011336739773062,0.0140842205883848,0.0165354891918585,0.0189533354403923,0.0214025454434113,0.0240776699029126,0.0265422435051314,0.0293180304350053,0.0315168308702791,0.0339124177631578,0.0364059427347699,0.0385618960200493,0.0408405740203118,0.0431812536225883,0.0453574465437501,0.0478377423578063,0.0502857856763594,0.067384432412131,0.0837995252684742,0.1002002117422614,0.115309843318166,0.1305910374773407,0.1485502267417892,0.1656116465735704,0.180906286565259,0.1956693417570221,0.2098153068220774,0.2261357890546835,0.2416945855398249,0.2562289562289562,0.2702788270486255,0.2839335332169176,0.2973283793347487,0.3101857526492317,0.3225147118278604,0.3338203647072149,0.3443837307665927,0.3538863155949314,0.3635280791283734,0.3726463014151723,0.3816356325690488,0.3901192917733577,0.3978354285432853,0.4055351383784594,0.4124683777633703,0.4193727916337704,0.4254959898691431,0.4276592305205302,0.4301241166503657,0.4320397251964394,0.433588206331277,0.4352072415435922,0.4352318084126497,0.4360279773516677,0.4381037007783318,0.4404295035363827,0.4409029830690674,0.4426414668122435,0.4440185115299819,0.4449927247422028,0.4456325573001263,0.4460026689312144,0.4461320531990241,0.447290498778209,0.44745192612807,0.4500870677707096,0.4522004252417058,0.4536964260945952,0.456554630930509,0.4585206112752022,0.4554632290129689,0.4517404300453186,0.4561170212765957,0.462800875273523,0.4620041753653445,0.4634560906515581,0.4521297381789761,0.0,2.725948290561133,76.6735120862823,276.58378525453,419.5214758386599,NC_public_baseline,87 +100000,95794,44862,416.74843935945887,9464,97.38605758189448,7337,75.87114015491576,3038,31.223249890389795,77.3497797498425,79.68262483113071,63.33168066437421,65.06005081161477,76.98135953963434,79.31528415908221,63.19611997025331,64.92898887639643,0.3684202102081571,367.3406720484991,0.1355606941209046,131.06193521834086,44.19536,30.75717568405353,46135.83314195043,32107.62227702521,155.21973,81.50409851204321,161337.53679771174,84385.29397670337,240.44999,112.0833039396942,247058.10384784016,114004.93931777246,5332.93189,2383.4229316040783,5512313.61045577,2433591.658407755,1766.16856,763.5608855431445,1823396.444453724,776926.826868899,3001.64196,1249.1352197775018,3085702.674489008,1259486.6955554008,0.43341,100000,0,200888,2097.083324634111,0,0.0,0,0.0,11980,124.31885086748647,0,0.0,22856,234.60759546526924,2328769,0,83723,0,0,5775,0,0,43,0.4488798880932,0,0.0,0,0.0,0,0.0,0.09464,0.2183613668350984,0.3210059171597633,0.03038,0.3049879807692308,0.6950120192307693,25.844209605129983,4.65014153457006,0.3434646313207032,0.1834537276816137,0.2415156058334469,0.231566035164236,10.97496794186168,5.4055467269275495,32.493353833208715,15666.489968390017,82.98710047953826,15.638002509305876,28.741925467010145,18.93745512189089,19.669717381331346,0.5368679296715279,0.7481426448736999,0.6992063492063492,0.5726898175397293,0.1111738148984198,0.686908077994429,0.922879177377892,0.8544303797468354,0.7215189873417721,0.129287598944591,0.4882713821725009,0.677115987460815,0.6472457627118644,0.5276073619631901,0.1062455132806891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027453046173795,0.0054041996613503,0.0078551565956928,0.0105355129077812,0.0131624453260095,0.0157425792984063,0.0187398042414355,0.0212325061502812,0.0236515837566564,0.0261415162898289,0.0285491691525458,0.0311822988859797,0.0332942603903181,0.0355877749402751,0.0381159674441154,0.0406195751012647,0.0431870645839156,0.0457030237020901,0.0482652562890304,0.0505830903790087,0.0676814890553596,0.0840043502813042,0.0996697940143613,0.114481511845452,0.1291587602783048,0.1469739110203995,0.1638994684857679,0.1794336810730253,0.1942672777581915,0.2088138429685572,0.225557184118636,0.2408093011171733,0.2560765966706561,0.270116010802891,0.2832729953673646,0.2965615093001086,0.3093600678783548,0.3213911986767634,0.3321146749929037,0.3432988036851996,0.3533232978230662,0.3631192059181571,0.3720426031016385,0.3806428400095946,0.3884524649171875,0.3963321321024831,0.4038092851325105,0.411031211750306,0.4177578219286521,0.4244823386114494,0.4268215188675419,0.4288461272427961,0.4309504928061629,0.4332348532258299,0.4349230562160707,0.4356278424419949,0.4369687594686399,0.4386943070330725,0.4403116274259712,0.4420072874201811,0.4430830413786573,0.4451687729963205,0.4468035513741444,0.4469499920837763,0.4484143403022854,0.4491590315000132,0.4502743286168062,0.4523953525385962,0.4534817756346617,0.4536896082044708,0.4561524969999077,0.4564690680019383,0.4567212062880975,0.4579395454190424,0.4611239414934565,0.4646220719632939,0.4626959247648903,0.4670534604227103,0.4685314685314685,0.4779674473997618,0.0,2.737801609807406,79.71587392932796,278.02516057429165,425.88199248373394,NC_public_baseline,88 +100000,95783,44930,416.5666141173277,9485,97.38680141570008,7396,76.4540680496539,3105,31.874132152887256,77.41775944651599,79.74674450056283,63.37436231324406,65.09542899530882,77.04637284398305,79.37451443997651,63.23797639589372,64.96208106312925,0.3713866025329366,372.2300605863183,0.1363859173503456,133.34793217957497,43.67264,30.414508962688128,45595.16824488688,31753.333642387606,156.39526,81.76477784581293,162507.00019836507,84594.82288905297,238.03465,110.63630236590927,244069.9080212564,111997.54028285688,5416.73371,2398.508046645192,5603694.862345093,2453125.743223448,1840.19207,789.9421725813376,1901266.623513567,805007.8690484902,3066.01834,1268.606366872959,3151162.0642493973,1282320.1567909543,0.43336,100000,0,198512,2072.5076474948582,0,0.0,0,0.0,12146,125.99313030496018,0,0.0,22657,232.06623304761808,2334908,0,83957,0,0,5795,0,0,39,0.4071703747011473,0,0.0,0,0.0,0,0.0,0.09485,0.2188711463909913,0.327358987875593,0.03105,0.3176880916791231,0.682311908320877,26.0196239081671,4.624895073042743,0.3289616008653326,0.1883450513791238,0.2440508382909681,0.2386425094645754,11.21663922489818,5.572676190475884,32.977495389424526,15621.313904299846,83.02361400557149,16.089696848117796,27.58062726257117,19.52129581522753,19.831994079654997,0.5424553812871823,0.7480258435032304,0.7114673242909988,0.5728045325779036,0.1263157894736842,0.6971995332555426,0.89501312335958,0.862876254180602,0.7282321899736148,0.1741573033707865,0.4957761351636747,0.6926877470355731,0.662125340599455,0.5303030303030303,0.1145617667356797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029971951923369,0.0058487831084711,0.0086452699617456,0.0111108854177246,0.0137578296591556,0.0165417973044505,0.0190398532259708,0.0214746468522903,0.0242237167562705,0.0267429483767961,0.0294693467542717,0.032181241467095,0.0344668078370099,0.0369382817727904,0.039594568120186,0.0418921710390415,0.044386260853367,0.0470147938502368,0.0493128200866376,0.0516178736517719,0.0687269805828281,0.0840111234240073,0.0988206929084333,0.1139639450350884,0.1279258400926999,0.145756944958103,0.1630748039838949,0.1792873169642382,0.1938038269852619,0.2074389995606468,0.2238335502888556,0.2400298294533428,0.2544237934368177,0.268444279378673,0.2812644259304038,0.2945831673086289,0.3070376979701093,0.3186011754261763,0.3301175590345875,0.3400750864180574,0.350531914893617,0.3601052016364699,0.3702048152878293,0.3787719003906718,0.387754605998736,0.3955077522726432,0.4031504739484854,0.4105509845377894,0.417350603549989,0.4241231776885696,0.4260624604062487,0.4281989377112506,0.4310254707785327,0.4328293298154564,0.4339000745712155,0.4352863341231498,0.4365267460910783,0.4376041580727662,0.4386413565838253,0.4400071858438875,0.4408504692309145,0.4423103688239387,0.4434169411367283,0.4450451668130927,0.4461732957308179,0.4472719601276337,0.4469526610159718,0.4480509148766905,0.448434000497707,0.4479858344400177,0.4503354152209114,0.4500189015499271,0.4516998075689544,0.4546652200867948,0.4557449677357219,0.4559218559218559,0.4573064080139927,0.463771142200877,0.4625489100055897,0.465107057890563,0.0,2.8807813688553185,75.59828251785731,282.5238242221506,437.7560459806457,NC_public_baseline,89 +100000,95695,44957,419.23820471289,9390,96.48361983384711,7300,75.42713830398662,3002,30.78530748732954,77.3893283971574,79.74855208682906,63.35181630130408,65.09284503863445,77.0150644625001,79.37890745222144,63.21355682363485,64.96112231153549,0.3742639346572929,369.6446346076243,0.1382594776692229,131.7227270989605,45.31142,31.49693396644249,47349.83018966508,32913.876343009026,153.02293,80.0375395095051,159078.8755943362,82810.1149584671,236.57976,110.46333291018958,242044.62093108316,111486.75254460648,5295.98754,2370.3098899199817,5475081.717958096,2417787.5541250664,1788.92453,778.6985504804509,1845251.455143947,789578.7663728003,2957.80252,1231.2875652392004,3036203.0827106955,1237566.0246830457,0.43491,100000,0,205961,2152.26500862114,0,0.0,0,0.0,11925,123.74732222164168,0,0.0,22549,230.48226135116775,2326280,0,83625,0,0,5878,0,0,33,0.344845603218559,0,0.0,0,0.0,0,0.0,0.0939,0.2159067393253776,0.3197018104366347,0.03002,0.3137135922330097,0.6862864077669902,25.594117101823603,4.695991997506972,0.334931506849315,0.1938356164383561,0.237945205479452,0.2332876712328767,11.265242947185987,5.548681360165149,31.964935129552053,15654.45875412168,82.33384816990177,16.45371984266271,27.634164795962725,19.13649168813628,19.109471843140067,0.5393150684931507,0.7477031802120141,0.685480572597137,0.5860246623605402,0.1180195739781232,0.699252443933295,0.9264705882352942,0.8549488054607508,0.7258485639686684,0.1629834254143646,0.4893004855241863,0.6752730883813307,0.6320602474448628,0.5454545454545454,0.1061818181818181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026838976270293,0.0055134948868415,0.0080439832425468,0.0107328168313312,0.0133890447724777,0.0160311870203367,0.0183841513125713,0.0210709985510499,0.0236136797899189,0.0261744211032549,0.0283943026949482,0.0305433578200024,0.032963080938338,0.0351933627726482,0.0377971432991285,0.0403141631788353,0.0426135481265982,0.045032054606942,0.0472042328922338,0.0493321664478756,0.0666917308937485,0.0829391326188881,0.0990684793554884,0.113604576572408,0.1282064799097494,0.1459880264855831,0.1632079275150126,0.1786961707202794,0.1930775067055642,0.2070984972809473,0.2247237003683995,0.2411136479219191,0.2557560333670484,0.2692274030151194,0.2822356036504144,0.2962080317456798,0.3090565911299239,0.3208352093651508,0.3317168459188425,0.3430229224718199,0.3536610781771026,0.3632628695835381,0.3723474801061008,0.3817490585498069,0.3904859185758062,0.3979053070489255,0.4050198084348829,0.4118419208074732,0.4187966508729798,0.4252181962443798,0.427716123464448,0.4300412373977685,0.4316764050018347,0.4333696046427276,0.4351016390508717,0.4370101730337769,0.4379704621248213,0.4393545200065865,0.4412531741129641,0.4415948275862069,0.4434284205961651,0.4449222560672121,0.4461567732115677,0.4461347477711319,0.4464450824857657,0.4479989468141127,0.4508028944561363,0.4513308105701656,0.4516828375448697,0.4528089435798447,0.4546421797659249,0.454900048756704,0.4566741717594081,0.4576494270672034,0.4614274721046556,0.4671188082838803,0.4652506637513665,0.4639667705088265,0.4600057753393012,0.4619085805934242,0.0,3.400661618675368,76.2012413537109,281.3710767336786,424.3374300599391,NC_public_baseline,90 +100000,95651,44961,417.9778570009723,9368,96.4025467585284,7241,74.89728283028929,2941,30.18264315062049,77.35982293729873,79.7341961612871,63.33991942654043,65.08921466437312,77.00561374327098,79.3840779536305,63.20944616739857,64.96446071084809,0.3542091940277458,350.1182076566067,0.1304732591418655,124.75395352502971,45.19988,31.414957082680058,47254.99994772663,32843.3127543675,153.70082,80.63901707512342,159891.762762543,83508.64529323197,236.30969,110.32145652644232,242119.214644907,111485.26055727816,5204.11955,2316.305016633134,5383494.861527846,2364430.5697542555,1793.839,779.813573878986,1849548.180364032,789464.9662865193,2896.1932,1196.847711428591,2974373.169125257,1205653.1251216475,0.43406,100000,0,205454,2147.9545430784838,0,0.0,0,0.0,11949,124.06561353252972,0,0.0,22438,229.68918254905856,2325597,0,83564,0,0,6034,0,0,45,0.4704603192857367,0,0.0,0,0.0,0,0.0,0.09368,0.2158226973229507,0.3139410760034158,0.02941,0.3058550841479391,0.6941449158520608,26.10109624917998,4.667766594465313,0.3350365971550891,0.1948625880403259,0.2299406159370252,0.2401601988675597,11.182704498237792,5.49027696353173,31.300375799931498,15707.173959511329,81.55803923471952,16.097788900585662,27.63464021929961,19.39065725335106,18.43495286148319,0.5500621461124154,0.742735648476258,0.7085737840065952,0.57906843013226,0.1255255255255255,0.7112018669778296,0.921832884097035,0.8801916932907349,0.7307692307692307,0.1699716713881019,0.5000904649900488,0.6788461538461539,0.6488888888888888,0.5389090909090909,0.1135670731707317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027646129541864,0.0052198943858262,0.0082179272561254,0.0109382299770469,0.0135025215552301,0.0159600997506234,0.0186164521749763,0.02129331102314,0.0239432879119083,0.0264547016940829,0.0289712541233839,0.0314644780713003,0.0340010895149602,0.0365645207792742,0.0389296913682125,0.041251072362505,0.0437622942333574,0.0461782613656401,0.0487622295463761,0.0510703937631584,0.0682889114103917,0.0848822476098725,0.1006119642688444,0.1146443866867298,0.1287433676859948,0.1469147168693186,0.1635456475583864,0.1795887930116118,0.1942433735712682,0.2091872336314156,0.2257146552839218,0.2414831504489964,0.2563926716958949,0.2701652195810933,0.2825840282903507,0.2964814096525738,0.3094342150808982,0.3215534985209596,0.3333144212329933,0.3439618838189481,0.3542242845736371,0.3640885788525012,0.3741829291398257,0.3829121511460631,0.3906542283118334,0.3979757883577011,0.4054490590606884,0.4125453734955104,0.4187852466454916,0.4250390077486579,0.4281360412115327,0.430006208181003,0.4324519230769231,0.4339598016183764,0.4357873393565316,0.4367971694485039,0.4381618127099887,0.4390477764919821,0.4402991504540676,0.4423045741978489,0.4439593256218341,0.4462846196823369,0.4474180093582605,0.4484792335156144,0.4486690166524857,0.4489473268161577,0.4507963021628315,0.4517740652346858,0.453738234771799,0.4551016301066613,0.4562035369626449,0.4577590400518891,0.4596197228488559,0.4598005609224057,0.457392640983764,0.4588321524554117,0.4518716577540106,0.4543946932006633,0.4427141268075639,0.4428175702413929,0.0,3.0328253926036264,75.61502821097146,277.2940032987793,423.36815140333937,NC_public_baseline,91 +100000,95847,45191,419.66884722526527,9322,95.94457833839348,7245,74.93192275188582,2953,30.381754254175927,77.34109898624328,79.6331158499755,63.34986309044478,65.04439792569876,76.98556131920209,79.27523662435837,63.22017511087207,64.91689139969968,0.3555376670411903,357.8792256171255,0.1296879795727079,127.50652599908108,44.99902,31.362839399832698,46948.80382275919,32721.774703259045,155.48568,81.8574382739025,161578.3801266602,84759.86548760264,239.57292,111.85915220838234,245825.8578776592,113470.5832128243,5243.64577,2330.6644950149707,5426590.95224681,2387424.7588500124,1766.02667,760.7577384489581,1826172.431062005,777364.4175657806,2918.94778,1208.4828404963578,3005672.6658111364,1226315.6464674275,0.43573,100000,0,204541,2134.036537398145,0,0.0,0,0.0,12046,125.00130416184128,0,0.0,22843,234.19616680751616,2324870,0,83668,0,0,5861,0,0,33,0.3442987260947134,0,0.0,0,0.0,0,0.0,0.09322,0.2139398251210612,0.316777515554602,0.02953,0.3112488568234935,0.6887511431765064,26.01793622564683,4.669552547623318,0.3268461007591442,0.1968253968253968,0.2418219461697722,0.2345065562456866,10.9378523359641,5.340735274173348,31.720815893820397,15736.005895501035,82.03381475503116,16.83380440912766,26.962445117406062,18.90437068522904,19.333194543268384,0.5381642512077295,0.7622720897615708,0.6946790540540541,0.566804002354326,0.1164383561643835,0.7046750285062714,0.9053763440860216,0.841296928327645,0.7471910112359551,0.1613832853025936,0.4849754143143325,0.6930280957336108,0.6464646464646465,0.5189873417721519,0.1053380782918149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030479469393954,0.0057046741850827,0.0088042276521721,0.0113509452352427,0.0137722846746488,0.0162216070992428,0.0187556669417361,0.0213414945167049,0.02368598451576,0.026269218572583,0.0288854517705143,0.0312298083135903,0.033801341371979,0.0364429537106581,0.0390528398318357,0.0412430719689541,0.0439044566228931,0.0460649011562849,0.0484743404728039,0.0509488534687252,0.0686257130045778,0.0854688349149283,0.100547833282705,0.1155627435124604,0.1295635234033591,0.148065609784434,0.1654819538756528,0.1812672762066766,0.1963332906475434,0.2112342450484438,0.2282706961126178,0.2438568029418126,0.258700355515933,0.2725603157077735,0.2859830978476165,0.298936170212766,0.3114236285507004,0.3231742315960069,0.3336247714859939,0.3448398372586098,0.3547072377181099,0.3642163174528854,0.3732577004606657,0.3826168313981384,0.3908015225401612,0.3988317237631832,0.4061916166163028,0.4133085084676596,0.4201245620864149,0.4253177966101695,0.4274441982381236,0.4295576296459932,0.4322472896085147,0.4337498363564955,0.4349296617779108,0.4359500308451573,0.4367170419545824,0.4372441453834297,0.4382848445013318,0.4392729774253697,0.441160809371672,0.442498997192138,0.4442505745169802,0.4457718914982705,0.4458693999656702,0.4466812041272205,0.4458917253009246,0.4483622350674374,0.4491888801543628,0.4522308438409311,0.4551445676892375,0.457397890181228,0.4597878495660559,0.4576021121292126,0.4573082489146165,0.4580347382485121,0.4650579755562519,0.4635706914344685,0.4666479820627802,0.4746162927981109,0.0,2.536810724927379,77.9436029381927,280.78139766225314,417.23693833881873,NC_public_baseline,92 +100000,95635,44962,417.8072881267318,9319,96.09452606263396,7165,74.26151513567208,2922,30.05175929314581,77.31769350596971,79.73973131863752,63.289715480586615,65.08126517685828,76.95627612890806,79.37932936169658,63.15551270901211,64.95146232919234,0.361417377061656,360.40195694094734,0.1342027715745075,129.80284766594252,44.83798,31.16867878338952,46884.48789669055,32591.288527620138,150.86109,79.28291692743167,157099.35692999425,82254.46331181089,229.43369,107.04469904182191,236527.7984001673,109251.06343003357,5223.7292,2330.343650604468,5415626.852093899,2390214.400247162,1744.52574,753.7694242218221,1806693.8254823023,770766.0802678475,2877.01124,1212.853446650853,2961370.376954044,1225922.026746465,0.43345,100000,0,203809,2131.1130862132063,0,0.0,0,0.0,11783,122.53881946985936,0,0.0,21840,225.0013070528572,2325065,0,83539,0,0,5787,0,0,25,0.2614105714435091,0,0.0,0,0.0,0,0.0,0.09319,0.2149959626254469,0.313552956325786,0.02922,0.3082867310625318,0.6917132689374682,25.89068075709391,4.628344112818125,0.3264480111653873,0.1852058618283321,0.2354501046755059,0.2528960223307746,10.996321963267537,5.361171512365589,31.37282288277525,15677.506528278507,80.55516882701588,15.241206752782912,26.503371829395288,20.103082766418925,18.707507478418748,0.5270062805303559,0.746043707611153,0.6750748182984181,0.5584988962472406,0.1155898043864848,0.6839080459770115,0.9108108108108108,0.8489932885906041,0.7304785894206549,0.1511936339522546,0.4766820276497696,0.6823406478578893,0.6156052782558806,0.5102473498233215,0.1053435114503816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029783612934597,0.0058410741086277,0.008497461928934,0.0111484872813748,0.0136437168699828,0.0160350448247758,0.0190255646461142,0.0215674455194679,0.0241830667362582,0.0267430656635027,0.0291336885220658,0.0315260197628864,0.0341475470610042,0.0363837052166826,0.0391188444132173,0.0416938312998665,0.0442018165982331,0.0463710305712237,0.0486969734815369,0.0511758877822391,0.0676602148739601,0.0846693911767788,0.0999485288711015,0.1148551144443157,0.128614578712798,0.1467095995170054,0.1639687516607323,0.1797403040446898,0.194877171959257,0.2093060733355536,0.2259470657416299,0.2412226979567503,0.256025540446304,0.2697490960885285,0.2826333836841351,0.2960977558766731,0.3079366144417977,0.3199801618611781,0.3312230771853653,0.3416889419160921,0.3522114660019709,0.3625145026895897,0.3719614193686159,0.3808985928694168,0.3893566980660728,0.3971458577871131,0.4041554791598705,0.4116438705726242,0.4190291817166021,0.4257737969048124,0.427327311083464,0.4291594723392499,0.4311769533350312,0.4328786999419617,0.4348539791974452,0.4360649674854377,0.4366212898906494,0.4386787778695293,0.4406022274164718,0.4423870527864499,0.4440429816142569,0.4447311998729453,0.4463558076034447,0.4480350325623175,0.4480133410672854,0.447241985875187,0.4474621038125861,0.44812529663028,0.4511435247468668,0.4538486234850309,0.4545454545454545,0.4554188255613126,0.456661110398769,0.4585044556373499,0.4591357669828494,0.4587410897668237,0.4580009385265133,0.462217659137577,0.4635519279482127,0.4583008573655495,0.0,2.5736332479960127,77.36154973803802,264.02558092273307,422.1344909621733,NC_public_baseline,93 +100000,95707,45126,419.0707053820515,9236,95.12365866655522,7182,74.41461962029946,2896,29.87242312474532,77.34880342590687,79.70618790230891,63.338894218876014,65.07692259021229,76.9960443994835,79.35063145733955,63.21032687066452,64.95032324689629,0.3527590264233708,355.5564449693662,0.1285673482114973,126.59934331600198,44.90508,31.227589206478413,46919.32669501709,32628.3231179312,152.97249,80.36252511155398,159221.7392667203,83356.13281902454,235.35029,109.3508438938166,241824.3179704724,111206.38505815328,5206.62881,2317.729094473272,5396598.566458044,2378740.284979692,1745.04402,752.1928595071411,1806888.1377537693,769933.5628308218,2858.05658,1186.3625761114963,2949668.17474166,1208195.9293051567,0.43543,100000,0,204114,2132.696667955322,0,0.0,0,0.0,11914,123.84674057278988,0,0.0,22340,229.41895577126024,2326720,0,83672,0,0,5998,0,0,33,0.3343538090212837,0,0.0,0,0.0,0,0.0,0.09236,0.2121121649863353,0.3135556517973148,0.02896,0.3084255842558425,0.6915744157441575,25.78128195227649,4.684949474636779,0.3363965469228627,0.1921470342522974,0.239209133945976,0.2322472848788638,11.045161657766164,5.416414600396903,31.04877998884683,15748.097695450944,81.19573345351161,16.08325736233964,27.449611946701395,18.688859988715876,18.974004155754702,0.5367585630743525,0.7702898550724637,0.6759105960264901,0.5809352517985612,0.1105937136204889,0.67382472431805,0.8911917098445595,0.8330550918196995,0.738544474393531,0.1198910081743869,0.4934969774684008,0.7233400402414487,0.624105668684645,0.535851966075559,0.1080680977054034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027037153301671,0.0051088675343632,0.0079042159200446,0.0106157112526539,0.0133601756954612,0.01611441950425,0.0190710143007124,0.0216801061549453,0.0244545500996372,0.026395783225014,0.0292519935223336,0.0319395693495083,0.0344426966061092,0.0369398029465361,0.0393744648807006,0.0417144569474151,0.0439743629567504,0.0463586465931375,0.0488677244276237,0.0514332753284914,0.0691369370874759,0.0849625319211286,0.1011320833901648,0.1158924719869535,0.1301701494741505,0.1492906788536608,0.1657929365820528,0.1818365717327655,0.1972926482686411,0.2115731204943357,0.2282260931389975,0.2438805324099123,0.2589764507532496,0.2734093867238343,0.2864531179506365,0.2999612123898709,0.3119259904806596,0.3233035291997927,0.3343933852758785,0.3447754180467846,0.3544217293102449,0.3635118525021949,0.3724983707565614,0.3811608631505715,0.3899650991694331,0.397828366956629,0.4047022571836561,0.4114304642511339,0.4177980057312535,0.4243181427570433,0.4267757570848016,0.429304989992408,0.4314601657286688,0.4330977227535958,0.4354436429350179,0.4366843142083231,0.4383725187437322,0.439856077110979,0.4410652271086202,0.4421610931319669,0.4439436513474268,0.445039200859633,0.4456464324198694,0.4474694984184365,0.4483530384858658,0.4487179487179487,0.4489229434726037,0.4505648815982638,0.4518346989668685,0.4539035707080895,0.4554524361948956,0.456667210706708,0.4568333657650645,0.4602250373750885,0.4602294826915597,0.4548367221195317,0.4589719029374202,0.4624867162592986,0.4584055459272097,0.4647435897435897,0.0,2.439166759100473,76.81748524239804,276.5957999959166,416.6464484500615,NC_public_baseline,94 +100000,95627,44638,416.7337676597614,9269,95.50649921047405,7173,74.34092881717507,2908,29.991529588923637,77.26744378178137,79.6845036069885,63.28338998351626,65.07025661667728,76.91350270184908,79.3258183207861,63.15466234447887,64.94239695261254,0.3539410799322837,358.6852862024017,0.1287276390373932,127.85966406474358,45.68718,31.77518933189868,47776.44389136959,33228.261193908285,154.23287,81.21342149363772,160606.19908603217,84247.58854051439,235.60144,110.3891199412264,241848.5574157926,111904.21262553523,5128.61907,2297.4252835640423,5319650.140650653,2358986.534727684,1732.67237,756.557443655719,1794191.347631945,773438.9175188142,2861.46214,1182.8064430722625,2954484.298367616,1205763.8030023917,0.43155,100000,0,207669,2171.6565405168,0,0.0,0,0.0,12020,124.98562121576543,0,0.0,22433,230.05009045562448,2319473,0,83365,0,0,5741,0,0,44,0.4601210955064992,0,0.0,1,0.0104572976251477,0,0.0,0.09269,0.2147839184335534,0.3137339518826195,0.02908,0.3053660523368292,0.6946339476631708,25.60600724807857,4.613717191154942,0.3433709744876621,0.1950369440959152,0.2303080998187648,0.2312839815976579,11.180680031289244,5.599163713786268,31.01576264386243,15518.342447592997,81.25167739877098,16.532348804864377,27.627371978999545,18.717102633956923,18.37485398095013,0.5497002648821971,0.7669764117226591,0.6739748274462039,0.6112115732368897,0.1186440677966101,0.7040046430644226,0.91725768321513,0.8375,0.7468671679197995,0.1700879765395894,0.5009174311926605,0.701844262295082,0.6258539148712559,0.5682539682539682,0.1052631578947368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026951993028958,0.0052423443520584,0.0075739116309291,0.0098061133241199,0.0122686904241141,0.0148185114270582,0.0173542427146848,0.0197245505313989,0.0226178181780999,0.0251817716333845,0.0273937479488021,0.0298006101882954,0.0320450173341426,0.0346838677767702,0.0370672392080761,0.0396894320038045,0.0418638854077119,0.0441028408913984,0.0465699277058303,0.0491054672838733,0.0666555190937023,0.083054042731462,0.0990790427084755,0.1143648386825035,0.1280746574330173,0.1457510456928046,0.1623809068604021,0.1780899295526969,0.1934769586239356,0.2074061345476415,0.223913113817017,0.2396676308405646,0.2539159019908783,0.2680713660245183,0.2810356029821489,0.2946600758096336,0.3078065337293169,0.3197505571939935,0.3310046346782988,0.3415948893807847,0.3509890033488221,0.3599021088746033,0.3693902944836167,0.3779560658651709,0.3861973237224366,0.3934468779354328,0.4011491513091041,0.4077819721471203,0.4150266942052141,0.4207031819446837,0.4232893027284539,0.4250912509678133,0.4267276797098575,0.4291677575122902,0.4309472486677444,0.431886562466248,0.432816991376557,0.4335328945192339,0.4355641259620185,0.4373109606798214,0.4386406187945609,0.4395936243825371,0.4407081522315276,0.4418189218523878,0.441857062739265,0.4418820165219233,0.443470969234328,0.4460275372967447,0.4479256080114449,0.4501746121984894,0.4521967459089417,0.4526362086975644,0.4512880868314372,0.4557592036656659,0.4554301284546516,0.4555555555555555,0.4593217640503104,0.4638630600169062,0.4595307917888563,0.4551838083436596,0.0,2.660216890888627,76.41938168979635,276.6128385320069,418.1410775733404,NC_public_baseline,95 +100000,95814,45172,419.3019809213685,9490,97.34485565783709,7424,76.64850648130754,3059,31.362848852985994,77.40182060844235,79.71691582680114,63.36325590393732,65.07596970428985,77.03079552208744,79.3463490746208,63.22689476835128,64.94381177403623,0.3710250863549049,370.56675218033774,0.1363611355860428,132.15793025361222,44.75108,31.145170637221987,46706.201598931264,32505.866196194696,156.01802,81.7591593105615,161971.1106936356,84468.65229411934,244.46617,114.53336459390256,250013.39052748037,115596.17355235844,5380.89314,2406.152967077075,5557477.184962532,2453132.2300410266,1841.32991,791.2175574150482,1900600.2671843364,804707.0605332846,3016.99472,1246.0968606139193,3096275.2624877365,1255649.4134658638,0.43575,100000,0,203414,2123.0091635877848,0,0.0,0,0.0,12122,125.63925939841778,0,0.0,23333,238.3993988352433,2327029,0,83738,0,0,5823,0,0,29,0.3026697559855553,0,0.0,1,0.0104368881374329,0,0.0,0.0949,0.2177854274239816,0.3223393045310853,0.03059,0.3148148148148148,0.6851851851851852,25.76404909949493,4.61766837979394,0.3265086206896552,0.1912715517241379,0.2389547413793103,0.2432650862068965,11.044390686255172,5.522336660168628,32.44413145856835,15710.518445375044,83.60572849932073,16.408502539024884,27.718213273164267,20.120815583536164,19.35819710359541,0.5422952586206896,0.7464788732394366,0.7070957095709571,0.5808416389811739,0.1144306651634723,0.7103331451157539,0.9148418491484184,0.8679549114331723,0.72544080604534,0.1608187134502924,0.4896515124712542,0.6778989098116948,0.6516916250693289,0.5400993612491128,0.1033519553072625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024909374430425,0.0051687966838622,0.0079738668181633,0.0106239271966442,0.0134504529234147,0.0162771285475793,0.0189165774856036,0.0217085119412124,0.0245211276243432,0.0272151315722137,0.0296755676285172,0.0319521282601332,0.0344653907036983,0.036736921223603,0.0391208383184124,0.0414139431074923,0.0438180613639186,0.0462897673068148,0.0487156315893344,0.0509674129120221,0.0680969565489476,0.0842219713126751,0.1006979376257545,0.1158969618019078,0.1294698812946988,0.1467307489172916,0.1635818491953341,0.1794561034211477,0.1950644166213028,0.2099421469895007,0.2255787933557104,0.2412123308400709,0.2557439408759917,0.2695961086516915,0.2826754072395701,0.2962692188400018,0.3088273044856413,0.321341765314849,0.3320352857029325,0.3426967579333257,0.352821997105644,0.362431818713861,0.3718335879489821,0.3807552467691421,0.3892808485792137,0.3974841680348612,0.4053935457987513,0.4133386021491669,0.420390680770978,0.4264489925516292,0.4291231197169786,0.4318097105070613,0.4334906460181993,0.4352803095069045,0.4367809239940387,0.4379277990555735,0.4382415624900594,0.4388413256132363,0.4412027491408934,0.4422638392616666,0.4439270835297,0.4444024431490361,0.4457523785414425,0.4473648618186736,0.4485967718481896,0.4490854059744703,0.4519471548225542,0.4538244345039814,0.4548068730474297,0.4563642218822961,0.457487250811312,0.4590884427563754,0.4602510460251046,0.4614965350774741,0.4612881615465595,0.4640261627906977,0.4632803899984274,0.4663602173004597,0.4739671760045274,0.4683794466403162,0.0,3.1768347249221014,77.77358453902606,288.9557942063185,425.8868316785195,NC_public_baseline,96 +100000,95689,44966,417.49835404278446,9411,96.87633897313172,7322,75.87078974594782,2988,30.829039910543536,77.32145341825886,79.70954948647375,63.3143933609397,65.08047595911043,76.95997681121732,79.34437061254137,63.1831235743968,64.95066958974833,0.3614766070415385,365.17887393237913,0.1312697865428944,129.80636936210033,45.89728,31.89458113005907,47965.05345442005,33331.50218944609,155.59839,81.16840330957346,161907.8995495825,84126.00117109214,235.62547,109.5963956679316,241984.30331595064,111276.2921198146,5320.62596,2352.88756720265,5513874.102561423,2412479.9160956363,1791.90708,765.6195724152026,1857451.0236286304,784982.5075303606,2963.28628,1219.7086712276332,3058806.947507028,1242064.3079981883,0.43357,100000,0,208624,2180.2297024736386,0,0.0,0,0.0,12073,125.44806613090324,0,0.0,22343,229.30535380242245,2322563,0,83499,0,0,6172,0,0,39,0.4075703581393891,0,0.0,1,0.010450522003574,0,0.0,0.09411,0.2170583758101344,0.3175007969397513,0.02988,0.3154294910480789,0.6845705089519212,25.898398672073057,4.680089939032239,0.3346080305927342,0.1881999453701174,0.2444687243922425,0.2327232996449057,11.0150377405954,5.257559122648511,31.82513014512749,15715.76316877979,82.38154037635509,15.892274679556206,27.797818931017773,19.102007060936533,19.589439704844587,0.5341436765910953,0.7489114658925979,0.6828571428571428,0.5892018779342723,0.1128491620111731,0.6899408284023668,0.8989071038251366,0.8421900161030595,0.7386363636363636,0.1538461538461538,0.4873934659090909,0.6946640316205533,0.6287588846364134,0.5502958579881657,0.1028492008339124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027964659155386,0.0055572457154446,0.0082528016891343,0.0111990731801506,0.0136944489663031,0.0161152310325156,0.0185810294012666,0.0211864406779661,0.0238297263312853,0.0263885192539971,0.0290652969581398,0.0317422826511121,0.0344199730483175,0.0368797980318408,0.0392551533356042,0.0418010752688172,0.0442177223056605,0.0467626272584813,0.0491076999875202,0.0515279109517655,0.0686539726971725,0.0848128297462524,0.1002917654961063,0.1153170218363588,0.1295686671731239,0.1473692009695481,0.163627292798913,0.1791397712021473,0.1944744295409608,0.2085684251174565,0.2252677397806365,0.2410055974795102,0.2563882210884723,0.2697867311543217,0.2829978982580851,0.2967889857448246,0.3092838729117145,0.3217241689532634,0.3329022303904885,0.3441255656756602,0.3545374592079987,0.3643756435458204,0.3737205004264998,0.3821500137990616,0.3905601849035947,0.3990107680732179,0.4062214089661482,0.4131132917038358,0.4197679694082571,0.4261332839786894,0.4287507592630087,0.4307836566968656,0.4331558355344002,0.4345253632645958,0.4364024608768367,0.4378601583926535,0.4381832669322709,0.438856651622609,0.4397500129125561,0.4407850904834789,0.4423793227325153,0.4437502495109585,0.4445361785003598,0.4451769290018576,0.4456160906073033,0.4476907577284055,0.4496585791079471,0.4499118448469306,0.4503221188260558,0.4514901198574668,0.4530720289787767,0.4562721088435374,0.4597663854639844,0.4602849720538455,0.4666407691560649,0.4688766114180479,0.4731916243654822,0.4676198486122792,0.4664582148948266,0.4731182795698925,0.0,2.346941361654766,75.1881589962644,282.077935172252,433.58907166479713,NC_public_baseline,97 +100000,95682,44786,417.1317489182918,9337,96.04732342551368,7241,74.85211429526974,2989,30.66407474760143,77.3455376358958,79.73409350181888,63.32130932583449,65.08793115458168,76.9857610586032,79.37431579408882,63.18895626391223,64.95913956379083,0.3597765772925925,359.77770773006057,0.1323530619222666,128.79159079085412,44.99132,31.29949579169047,47021.71777345792,32711.99994951033,154.54691,81.13579500926433,160681.6747141573,83965.16058300537,239.5634,111.92503328796155,245228.40241633743,112984.67736173944,5216.48199,2328.4269677875013,5396217.8884220645,2378358.398217626,1739.0093,747.8953960205464,1798960.8808344307,763318.7883713085,2927.79704,1217.741396128562,3007572.814113417,1229207.795099705,0.43245,100000,0,204506,2137.3508078844507,0,0.0,0,0.0,12002,124.55843314311991,0,0.0,22762,232.7606028302084,2326964,0,83568,0,0,5796,0,0,40,0.4180514621349888,0,0.0,0,0.0,0,0.0,0.09337,0.2159093536825066,0.3201242369069294,0.02989,0.3095213901026318,0.6904786098973682,25.932640715914097,4.553619846170908,0.3335174699627123,0.1962436127606684,0.2302168208810937,0.2400220963955255,10.893028532857109,5.472028256439569,31.89997927207647,15613.539790637018,81.77717471569431,16.610162045868822,27.289260816061397,19.536479664847903,18.3412721889162,0.542604612622566,0.7586206896551724,0.6968944099378882,0.5483314154200231,0.1289742051589682,0.6921322690992018,0.9030732860520094,0.856655290102389,0.681592039800995,0.1632653061224489,0.494805904866047,0.6973947895791583,0.6457080371787862,0.5082335329341318,0.1200906344410876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028369081753614,0.005618946194026,0.0079191837149093,0.0105083436655216,0.0131643200130218,0.0158178855163984,0.0187738369602904,0.0214862698242496,0.0239692408376963,0.0262360217916683,0.0289318496487359,0.0312650856092275,0.0336566649865764,0.0361474337176831,0.0386060143237497,0.0410213997725628,0.0431121101316566,0.0453752906011291,0.0476185524126455,0.0499927063579719,0.0673754791272833,0.0838967617692001,0.0989315476815214,0.1145671114104129,0.128402042280265,0.1465022056256677,0.1628867073494295,0.1778040544139422,0.1923615640403306,0.2063648857584607,0.2232621329911691,0.2396000346665511,0.2543500511770726,0.2683538207252865,0.2818948620256788,0.2951146781363278,0.3079001730779968,0.3200243141934104,0.3311727379019899,0.3424028228069974,0.3525461408424611,0.3619535710942619,0.3711552577368409,0.3800093503878013,0.3884481271337796,0.3966358595194085,0.4032502410136345,0.4104136711244576,0.417598777898607,0.4241305179303887,0.4265149474818206,0.4277635598117725,0.4292606542807567,0.4317418495570096,0.4339723743748511,0.4349735165425654,0.4355144052562083,0.4375041333245156,0.4394398183194549,0.4408522747739635,0.4426142602900526,0.4436198515732832,0.4439656087464175,0.4451536964099778,0.4454461283563179,0.4472446769165742,0.4486202517030366,0.4503233204854585,0.4521216004556457,0.4530437935619032,0.4515816208727776,0.4489366296016409,0.4495101491963885,0.4507534565791518,0.4524039389843599,0.4524014248863776,0.4543440417787625,0.456787521079258,0.457909604519774,0.4600562023283822,0.0,3.150743391616218,77.27753712074438,275.7283901601048,420.7240206259559,NC_public_baseline,98 +100000,95599,44785,416.89766629358047,9366,96.39222167595896,7254,75.17861065492316,3021,31.213715624640425,77.23812690061078,79.66961925648567,63.25655152000609,65.0544399241041,76.86910131957148,79.29551825532586,63.12242025154736,64.92110499239506,0.3690255810392955,374.1010011598149,0.1341312684587308,133.33493170904376,45.16446,31.475926666437637,47243.653176288455,32924.95388700471,155.14343,81.72515104903789,161571.21936421932,84773.05311670402,237.99083,111.01721129043612,244085.9423215724,112437.07716377806,5271.09127,2355.903425431516,5469727.863262168,2420336.29581012,1773.4945,768.9267409991043,1838910.8986495675,788101.275542944,2976.66262,1232.1095362195083,3078381.363821797,1259322.9094457552,0.4322,100000,0,205293,2147.438780740384,0,0.0,0,0.0,12078,125.59754809150724,0,0.0,22655,232.1153986966391,2317170,0,83361,0,0,5867,0,0,35,0.355652255776734,0,0.0,1,0.0104603604640215,0,0.0,0.09366,0.2167052290606201,0.3225496476617553,0.03021,0.3093117408906882,0.6906882591093118,25.799762681801496,4.660733675151011,0.3422939068100358,0.1832092638544251,0.23904052936311,0.235456299972429,11.028181546510268,5.447608900536027,32.32473071069672,15590.80837823199,82.12158976655583,15.399448554634812,28.258844770324316,19.20510036900536,19.258196072591367,0.5468706920319824,0.763732129420617,0.7092227144583165,0.5702576112412178,0.1251441753171857,0.6961953435547984,0.8968253968253969,0.8973509933774835,0.6924939467312349,0.1612021857923497,0.4989987256508283,0.7108307045215563,0.6487493347525279,0.5312741312741313,0.1154970760233918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027363385762931,0.0053756351870822,0.0078892860043863,0.0107843834808859,0.0133630516202572,0.0161476002730319,0.0186444999745015,0.0213500592489682,0.024129042816521,0.0267839767291796,0.0289953213494213,0.0315752699772921,0.0338095140075338,0.0361019762275393,0.0384571694118862,0.0409639302195641,0.0435805732649147,0.0459460863242092,0.0482808157146872,0.0505544717652336,0.0675775981934701,0.0838022781812275,0.0986415641448578,0.1134927322519486,0.1277948522966108,0.1454661016949152,0.1627336187936292,0.1781130063965884,0.1925538290312914,0.2070069510845625,0.2226754726754726,0.2387045008511607,0.2540812100869641,0.2674870963146417,0.280787037037037,0.2944558521560575,0.3074624861526067,0.31964078206618,0.3308149193273104,0.3418975284100702,0.3520230408324429,0.3617997840071371,0.370871941078641,0.3790426441028851,0.3873436260450357,0.395067231260679,0.4021636580917039,0.4094572810317033,0.41629973163805,0.4232122701015869,0.425597376018216,0.4280388597086907,0.4297446808510638,0.431611606362524,0.4331606062421374,0.4343028467220968,0.4351357400952899,0.4363045173277592,0.4379266838348398,0.4392842310539716,0.4404184354154032,0.4419125737721316,0.44285926586417,0.44321662771437,0.4439913062590051,0.4458613924386235,0.4457068138892924,0.4471589085072231,0.4492665255909042,0.4525919630933592,0.4511267671347921,0.4541643984757757,0.4572166612851146,0.4581088467244475,0.4572719407863116,0.4524586202730458,0.4535281317998135,0.4575539568345323,0.4539047082041161,0.4573552425665101,0.0,2.7343657813614697,78.22918291959373,272.12881020990005,428.4692614124684,NC_public_baseline,99 +100000,95711,49169,462.2979594821912,7961,81.6207123528121,6274,64.88282433576079,2494,25.66058237820104,77.33641368994157,79.71424829145174,63.332022412709286,65.09088024670764,77.02937771227818,79.40655866287949,63.216974273802784,64.978628769933,0.3070359776633893,307.68962857224835,0.1150481389065021,112.2514767746452,128.70352,90.3290317874977,134470.98034708653,94376.85510285934,303.5555,188.79228248088305,316483.6539164777,196577.66869104185,375.98698,180.76121644735747,388946.7877255488,185816.33848591972,4445.33049,2033.889939897067,4598046.755336377,2078544.7648619984,1476.7043,662.0816040637706,1521411.7395074756,670284.1826579701,2442.20762,1030.9676003030486,2513694.329805352,1042522.3181002176,0.43358,100000,0,585016,6112.317288503934,0,0.0,0,0.0,24984,260.3358025723271,0,0.0,34611,357.76452027457657,1803529,0,64841,0,0,8711,0,0,65,0.6686796710931868,0,0.0,0,0.0,0,0.0,0.07961,0.1836108676599474,0.3132772264790855,0.02494,0.3314272099118417,0.6685727900881582,24.777734746069605,4.427288807032865,0.3302518329614281,0.2253745616831367,0.2182021039209435,0.2261715014344915,11.261251836886036,5.836687569976722,26.72436680523409,14660.232348973455,71.54631945353579,16.8896137051036,23.528374395927425,15.89791475349204,15.230416599012734,0.5637551801083838,0.7828854314002829,0.6935328185328186,0.5856236786469344,0.1183345507669832,0.7214416615760537,0.9235668789808916,0.8728971962616823,0.7012578616352201,0.1789137380191693,0.5080871252965279,0.7126193001060446,0.631099544567339,0.5522252497729337,0.1003787878787878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027968059665193,0.0052028925242649,0.0079801005127163,0.0106919261728595,0.0134685614884591,0.0157965494062289,0.0183766915836384,0.0206759240351235,0.0234017973071064,0.0260221526114284,0.0288452667725898,0.0311489379177232,0.0336987371971535,0.0362965938468827,0.0386841806568778,0.0409414148096084,0.0433643621152034,0.0456478887851436,0.0481426819381794,0.0504599102055272,0.0683465257617844,0.0843142794362306,0.1002726796014682,0.1153886587750467,0.1301927962305122,0.148388528905003,0.1632475642208157,0.1774353083819916,0.1913485353147151,0.2036410003643143,0.2183887011001787,0.2332821322718127,0.2459914556858823,0.2577504343740097,0.2702877998373018,0.28295834162961,0.2939110853473646,0.3044680803220076,0.3152987613992105,0.3249364799597134,0.3331868436878383,0.3414483064911993,0.3491243215117723,0.3563752680571695,0.3620674997874691,0.3685669578502519,0.3749765334601569,0.3803177270297105,0.3847928357589974,0.3899537343027098,0.390303471912993,0.3899835683020118,0.3901225493660508,0.3906585436611546,0.3899198304047295,0.3887110180709909,0.3880509148766905,0.3879224980195405,0.3889728875296381,0.3908349500610764,0.3914574662423021,0.3932090916315664,0.3936179169824029,0.3957870152035752,0.3967114012815863,0.3985739002778797,0.4002478671893014,0.4040664375715922,0.4080886269218478,0.4111352482098318,0.4145188206934915,0.4142609073149555,0.4166180946829868,0.4184540987442477,0.4201422256390544,0.4251862709173079,0.4274701069855255,0.4288086342880863,0.4296069138555896,0.4348496530454896,0.0,2.6101069346618413,71.9649642297572,243.87971085789997,345.61943977199275,NC_public_implementation,0 +100000,95582,49013,460.8922182000795,7736,79.29317235462744,6036,62.28160113828964,2442,24.96285911573309,77.26635035352784,79.70420244166672,63.26822878755484,65.07195128980707,76.96166681167993,79.40349091239904,63.15429032430636,64.96275679042849,0.3046835418479077,300.7115292676872,0.1139384632484805,109.19449937858872,127.3514,89.39445958217686,133237.38779268065,93526.01868989646,303.13664,189.05710623720225,316280.0213429307,196928.05677763835,368.86354,177.36368436434046,380354.7425247432,181204.1475799051,4391.94037,2005.5249022733244,4538326.996714863,2041676.833161396,1479.48172,652.9388562600736,1525371.3460693436,660692.9594105509,2404.47618,1017.8609633869332,2462102.3832939253,1021051.3979558104,0.43162,100000,0,578870,6056.244899667302,0,0.0,0,0.0,24940,260.0385009729866,0,0.0,34011,350.243769747442,1803949,0,64846,0,0,8642,0,0,51,0.5335732669331046,0,0.0,1,0.0104622209202569,0,0.0,0.07736,0.1792317316157731,0.3156670113753878,0.02442,0.3341511285574092,0.6658488714425908,24.866487761951667,4.505221920918296,0.3351557322730285,0.2089131875414181,0.2335984095427435,0.2223326706428098,11.173128921937645,5.673796476611551,26.23755059432682,14658.276574893314,68.92053109413574,15.051311318110637,23.204326737838223,15.074100648842498,15.59079238934438,0.5571570576540755,0.7827121332275971,0.7014335145823035,0.5834575260804769,0.1234042553191489,0.711622125543816,0.9063231850117096,0.861646234676007,0.7034700315457413,0.1462585034013605,0.5010164897221595,0.7194244604316546,0.6384297520661157,0.5463414634146342,0.1173835125448028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028274352426121,0.0055592188688815,0.0083885971949993,0.011041971693509,0.0136296085177419,0.0164293649418551,0.0190949542782495,0.0214687879995503,0.0240955226323974,0.0265805922737985,0.0291165482983702,0.0318134161133153,0.0343617141739497,0.0366945045881018,0.0390951815317874,0.0416278636617619,0.0439172030639427,0.0461154964686331,0.0483034970857618,0.0508333159508562,0.0682877872331528,0.0847795103957075,0.1006134711542501,0.1155985336872708,0.1292503353790575,0.1467540997499894,0.1621067176870748,0.1769594299064423,0.1904940320077075,0.202729421878358,0.2177553354480913,0.2316742572110171,0.2458980672433704,0.2582423604717436,0.2703724941005226,0.2830253593030353,0.294621997160647,0.3057446137203642,0.3162257114595295,0.3252404894735634,0.3333912922520517,0.3419411557847849,0.3499804360971792,0.3574223908189479,0.3629979431130801,0.3693777184657967,0.375056467399488,0.3798813548510557,0.3856508645308686,0.3908289148342567,0.3896445631932637,0.3898204583689567,0.3892803185405871,0.3889500521497276,0.388460678345136,0.3873122638901686,0.3864773431171677,0.3867834289860808,0.387082932857339,0.3878804201454349,0.3883022852402142,0.3898429881992398,0.3907328086426265,0.3925090598059738,0.3939489442168295,0.3965431059430165,0.3990956481668155,0.4020063694267516,0.4081299079700103,0.4099646131574714,0.412510371531299,0.4152711216412686,0.4192948717948718,0.421546748749519,0.4223737804300464,0.4211091234347048,0.4222873900293255,0.4209558823529412,0.4255672385168788,0.422887457370216,0.0,3.388853421615854,70.04449455614971,229.04886834111983,333.82124341839483,NC_public_implementation,1 +100000,95687,49450,464.9220897300574,7901,81.14999947746298,6190,63.91672850021424,2511,25.68791998913123,77.34534288058313,79.71412064985104,63.32656324425341,65.07467973770856,77.03974290987536,79.41154767168655,63.2135969885843,64.96599305230644,0.3055999707077745,302.57297816449125,0.1129662556691073,108.68668540211956,127.3217,89.37084363875756,133060.60384378233,93399.1489322035,302.54027,188.41770073719232,315384.95302392176,196119.63281394157,372.13909,179.18935147207108,384391.1712144805,183676.3508186855,4430.71335,2015.8869761408605,4577325.237493076,2053804.5647376948,1531.64526,674.7987251718956,1579139.7368503558,683865.2927587972,2465.50878,1032.6259094992345,2525319.196965105,1036333.4508353068,0.43447,100000,0,578735,6048.2092656264695,0,0.0,0,0.0,24883,259.2201657487433,0,0.0,34260,353.46494299121093,1806415,0,64978,0,0,8697,0,0,49,0.512086281313031,0,0.0,0,0.0,0,0.0,0.07901,0.1818537528482979,0.3178078724212125,0.02511,0.3358173076923076,0.6641826923076923,25.01361094501055,4.420404397311351,0.3268174474959612,0.2261712439418416,0.2292407108239095,0.2177705977382875,11.377149261705148,5.958757309241126,26.898284478193176,14711.418172718682,70.51139668267275,16.8465721903241,22.92098195797121,15.125871099807094,15.617971434570356,0.5609046849757674,0.795,0.6920415224913494,0.56973293768546,0.1346018322762509,0.7283653846153846,0.933467741935484,0.8378870673952641,0.7337461300309598,0.1756756756756756,0.4993371630578878,0.7190265486725663,0.6377204884667571,0.5180487804878049,0.1237756010685663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023088139987038,0.0052196298623639,0.0081165537112941,0.0107657932155189,0.0131790355711932,0.015770879361427,0.018246129068428,0.02075273317477,0.0232862429211048,0.0258877481037147,0.0284583683595431,0.0309714520435407,0.0336137911172368,0.0360671275072371,0.0385552115583075,0.0409448004961753,0.0436624240101906,0.046005043638892,0.0486186926188173,0.0508962067528136,0.068219321148825,0.0846285074361309,0.1000104931794333,0.1151923906524552,0.1294557119642065,0.1480928795190923,0.1636338542551384,0.178223727658124,0.1922558994528043,0.2047173150561508,0.2204790586916935,0.2351087674466449,0.2486587077887451,0.2606477324983029,0.2729395695181864,0.2850632069194943,0.2962851304726493,0.3069961163955648,0.316710013742348,0.3255925908945027,0.3347535137888716,0.3419195524711224,0.3496043779020183,0.3577186038143217,0.3641925008817484,0.3703767693845565,0.3757552207375467,0.3821244842866602,0.3884093711467324,0.3926779876378171,0.3924618565617525,0.392123547856837,0.3916164104306464,0.3912948825868625,0.3907430072539479,0.3891418025223008,0.3879006384803532,0.3885907145209087,0.3897603448570793,0.3914824354296344,0.3924991553102827,0.3944155998573184,0.395683907199798,0.3963359740727403,0.3972131346177148,0.3987617398604334,0.3983193757681424,0.4007628774982661,0.4047384355417869,0.4079968171871891,0.4098338077311542,0.4110879220848718,0.412985529322163,0.4138010616201246,0.4128989361702128,0.4162181557229996,0.4199074074074074,0.4189852700490998,0.4290898939140145,0.4381977671451356,0.0,2.937687001479405,73.16670071365594,233.67902825105568,338.2679532883188,NC_public_implementation,2 +100000,95649,48949,459.806166295518,7785,79.97992660665558,6129,63.36710263567837,2429,25.008102541584336,77.2498286400838,79.64998384678009,63.26585613190741,65.03959172899846,76.95628946423885,79.3559164700341,63.15842286182796,64.93514153570227,0.2935391758449555,294.0673767459856,0.1074332700794542,104.45019329618788,127.96674,89.79847766247256,133787.84932409122,93883.34186711052,301.81428,187.6408294017313,314859.0157764326,195491.9020603784,370.20678,177.80686190364202,382573.7958577717,182498.0142072984,4440.50928,2003.24538909286,4596028.165480036,2047928.0940656564,1448.53157,633.6642452062641,1498590.5550502357,646674.2674377972,2392.35142,988.18557148195,2464208.993298414,999777.7404542904,0.43084,100000,0,581667,6081.265878367783,0,0.0,0,0.0,24856,259.145417097931,0,0.0,33986,350.8348231554956,1799228,0,64794,0,0,8453,0,0,60,0.6272935420129849,0,0.0,0,0.0,0,0.0,0.07785,0.1806935289202488,0.3120102761721259,0.02429,0.3222113979542133,0.6777886020457866,25.0097527307088,4.456962656062709,0.3271333007015826,0.2121063795072605,0.229890683635177,0.2308696361559797,11.185875202232149,5.668458171896522,25.8219042263339,14630.99041579089,69.5377185803043,15.413378602568567,22.742175122110265,15.956562417918787,15.425602437706676,0.5524555392396802,0.7438461538461538,0.7032418952618454,0.6056537102473498,0.1078779276082328,0.7292852624920936,0.9016018306636157,0.908203125,0.7369942196531792,0.1363636363636363,0.4909850483729112,0.6639629200463499,0.6329537843268587,0.5631431244153414,0.1006233303650935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030187608898253,0.0057703814130842,0.0083230986287187,0.0108514529567161,0.0132843730610002,0.0160715376937648,0.0186401272586368,0.0212487874610711,0.0237369605236244,0.0263413934720045,0.0290379822141076,0.0315356959424756,0.0338529608478674,0.0363010451237863,0.0386029032191455,0.0411844405142366,0.043605313879505,0.0459736700029071,0.0485564167923841,0.0507382382382382,0.0679685704135582,0.084712215147453,0.1000640225023352,0.1151142724862157,0.1294983009350134,0.1478902306088539,0.1627376022087713,0.177269820971867,0.1906804591307324,0.2033708951456102,0.2189614060831004,0.2340042510736129,0.2474863137691116,0.260223333772103,0.2718491615794761,0.2840378717162288,0.2950718731807801,0.305690946836357,0.3156103446705823,0.325281544472535,0.3342161509153424,0.3415542604690511,0.348572244092147,0.3551229730217776,0.3616247865333008,0.3671663221478171,0.3720667161046241,0.3776055653597279,0.3836525450192568,0.3887326932258235,0.3888633225954901,0.3881267804297923,0.3884309226367525,0.3878538626983666,0.3868114794508269,0.3852979623221838,0.3849198779091949,0.386205302605078,0.3868416074837068,0.3874687438162226,0.388378107949933,0.3896292754835753,0.3915738866396761,0.3930762291384754,0.3930453364415628,0.3946333018570979,0.3939532753092075,0.396630064369557,0.4002817893624515,0.4029469312782014,0.4079861111111111,0.4130585290514992,0.4155638574051795,0.416826443745686,0.4191106906338694,0.4178302900107411,0.4215232809127351,0.4228395061728395,0.4229808492922564,0.4251428571428571,0.0,2.770010600176037,69.66768694945445,227.3331472740688,349.71002463523433,NC_public_implementation,3 +100000,95735,49159,462.8610226145088,7796,80.14832610852875,6095,62.97592312111558,2448,25.1423199456834,77.32698317968122,79.68583565526806,63.31555014592704,65.06101280685724,77.02075387271408,79.37975512157094,63.20283553901567,64.95093751292355,0.3062293069671398,306.08053369712707,0.1127146069113678,110.07529393368998,128.20874,89.94771708631986,133920.4470674257,93954.89328492177,301.29877,187.2177569052785,314049.61612785293,194886.2870478701,367.41722,176.14927307063286,378309.9284483209,179928.5365866705,4373.84637,1986.8325161574548,4522974.7741160495,2029619.3097168829,1497.53414,661.6484001573552,1546195.4144252364,673070.9146679427,2407.0211,1007.9934012947108,2474458.849950384,1019808.5503933736,0.43393,100000,0,582767,6087.29304851935,0,0.0,0,0.0,24845,258.78727738026845,0,0.0,33796,347.76205149631795,1804252,0,64969,0,0,8540,0,0,48,0.4909385282289654,0,0.0,0,0.0,0,0.0,0.07796,0.1796603138755098,0.3140071831708568,0.02448,0.3274077681724096,0.6725922318275904,25.111561142244604,4.493974035970498,0.3245283018867924,0.2237899917965545,0.2334700574241181,0.2182116488925348,11.270165281922136,5.82100497786221,26.144445933393424,14714.749584278476,69.48780633519517,16.292953735160715,22.481754950154134,14.895125676470665,15.81797197340966,0.5596390484003282,0.7705278592375366,0.6905965621840243,0.6112781954887218,0.1271960646521433,0.7258758451137062,0.9164926931106472,0.8659217877094972,0.7508196721311475,0.1568627450980392,0.4991047448522829,0.6915254237288135,0.6252602359472589,0.5697560975609756,0.1190689346463742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028772605237829,0.0053841941960211,0.0081298337494671,0.010738377763329,0.0134553775743707,0.0160582455068479,0.0185177631847289,0.0213237245574995,0.0237418748211438,0.026335452042456,0.0287892919002572,0.0311136659925885,0.0334995117438454,0.0360081139244416,0.038238965165097,0.0405050734671102,0.0427985754513831,0.045141013805765,0.04742306613039,0.0497843615225951,0.0676347161617637,0.0843629363825624,0.0999024983487623,0.1143208552776814,0.1291873089490882,0.1482691535029288,0.1630588110515988,0.1772941664980888,0.1917711573613828,0.2050538881016789,0.2203992756122801,0.2344096970222169,0.2477960862845824,0.2604779934779278,0.2728734062933521,0.2852312536029444,0.2967630923250539,0.3077009733237202,0.3179312931122652,0.3275270913365059,0.336330455941139,0.3440891722731428,0.3513824474836016,0.3578729895619377,0.3646392694063927,0.3703589338208048,0.3764286700038892,0.3823465625677727,0.3874532516102223,0.3915619627033461,0.3914187411455171,0.3912047893618782,0.3904608607251779,0.3914631495035872,0.3909769952141696,0.3890580780115664,0.3878949795652243,0.3897150959572644,0.390101592531576,0.3915721986425258,0.3928363150666892,0.3938683928358683,0.3942725699573713,0.3958356755784408,0.3971061482252171,0.3990863024128968,0.3997878197040945,0.4044997152078982,0.4058835993784432,0.4084990813962776,0.4125813250251993,0.4126924721984602,0.4152510141987829,0.4157733537519142,0.4165800170148407,0.4150155168297923,0.4172850958565244,0.4121025641025641,0.4114156541395874,0.4000793021411578,0.0,2.6988197997855994,71.85917271583284,233.58115549945995,330.7479927587363,NC_public_implementation,4 +100000,95755,48944,460.9576523419143,7731,79.52587332254191,6045,62.492820218265365,2373,24.332933006109343,77.39144353273707,79.72819399995163,63.36142006586866,65.08639945827586,77.09203373309818,79.43222212443658,63.2502533311604,64.9801781871472,0.2994097996388944,295.97187551505044,0.111166734708263,106.22127112866052,128.67338,90.28312535471824,134377.7139574957,94285.54681710432,302.24836,188.14878488633292,314987.85442013474,195830.55633713,366.70009,175.80262106323488,379285.1861521592,180826.24817170488,4315.08649,1949.4879866208744,4461429.209962927,1991025.0295272472,1452.62664,635.9846956485078,1502002.767479505,649326.756722685,2330.84032,977.7723691402406,2391719.0747219464,983302.5588223472,0.42975,100000,0,584879,6108.077907158895,0,0.0,0,0.0,24852,258.8481019267924,0,0.0,33650,347.86695211738294,1805134,0,64879,0,0,8666,0,0,54,0.553495900997337,0,0.0,1,0.0104433188867422,0,0.0,0.07731,0.1798952879581151,0.3069460613116026,0.02373,0.3279112754158965,0.6720887245841035,25.01314872224688,4.461194128879975,0.3232423490488006,0.2226633581472291,0.2264681555004135,0.2276261373035566,11.126125347274163,5.643396368976463,25.355465050313327,14515.93455578678,68.34703882447825,15.87967797570832,21.915824271408805,15.451570461887936,15.09996611547317,0.5604631927212572,0.7823179791976226,0.695496417604913,0.5806686046511628,0.1292914536157779,0.7074742268041238,0.90625,0.8533057851239669,0.7373417721518988,0.1513157894736842,0.5096817271310928,0.720489977728285,0.6435374149659864,0.5339622641509434,0.1230046948356807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026324315567795,0.0051683776361259,0.0079138004504778,0.0104305257919379,0.0129231019511748,0.0151555247943978,0.01779091094355,0.0203440324851551,0.0225765918540387,0.0249856756977981,0.027530737704918,0.0298649868680236,0.0323780556725819,0.034891260716969,0.0372867377970207,0.0396772927297894,0.0422061456619161,0.0444008836615949,0.0468611939833054,0.0491400235438739,0.0670292502661962,0.0831911932442472,0.0987987200335728,0.1137369976545819,0.1275202463303526,0.1454239725882527,0.1608387158356931,0.1748558295916413,0.1885353583902079,0.2007783686422506,0.2168113008462714,0.2310088587467956,0.2444640120014349,0.2568952705656089,0.2678614623419461,0.2803607990703337,0.2923152401766201,0.3026754913307788,0.3127749807230008,0.3216619927888742,0.3302730016303782,0.3388249049985384,0.3473908413205537,0.3547729778971089,0.3614008670414941,0.367703225488505,0.3731685038975988,0.3776730561039292,0.3828929807056872,0.3880573374514928,0.3883682098516064,0.387661319171184,0.3868781786675307,0.3869984250148106,0.3869726106793086,0.3856572241862173,0.3846969625021764,0.3853970025771926,0.385828790183378,0.3861079814725396,0.386389285982996,0.3873324729474833,0.3886325812635615,0.3903724050974917,0.3922552799398656,0.393107799069474,0.3939489532549469,0.397310242014781,0.3997161610785879,0.4029826812059012,0.4058097781051468,0.4064856711915535,0.4112573473038589,0.4115061309477905,0.4167614713689799,0.4180152308424559,0.4222931873479318,0.4245359160613398,0.426506681210799,0.43184421534937,0.0,2.435802162635217,68.50286687200695,224.08075307085085,344.0670654751546,NC_public_implementation,5 +100000,95708,49198,461.4452292389351,8000,82.0412086763907,6207,64.06987921594852,2488,25.49421156016216,77.37264048070351,79.73091548675934,63.34029949113111,65.08158949770755,77.05761841280243,79.41974586713046,63.22424101471806,64.97055789736143,0.3150220679010829,311.1696196288847,0.1160584764130518,111.03160034612358,128.12844,89.93562049861187,133873.6364776194,93968.09054688412,305.8842,190.22673318962688,318812.5339574539,197969.0017361421,375.88596,180.30484832343848,387860.0743929452,184603.03357794427,4445.52559,2016.7127456966816,4592970.598069127,2055308.6096205972,1468.83586,641.8391084014377,1516784.1350775275,652786.5244220799,2437.56544,1017.536142679089,2500895.431938814,1023478.9664712904,0.43308,100000,0,582402,6085.165294437246,0,0.0,0,0.0,25140,261.83809085969824,0,0.0,34461,355.2054164751118,1803150,0,64897,0,0,8923,0,0,61,0.6269068416433318,0,0.0,0,0.0,0,0.0,0.08,0.1847233767433268,0.311,0.02488,0.3195827406353722,0.6804172593646278,25.121179399303426,4.457354745677578,0.3383276945384244,0.2102464958917351,0.2179797003383277,0.2334461092315128,11.283630503963256,5.77902224793701,26.425699247593645,14701.12358418681,70.61037396319159,15.54224513024334,23.893662946547995,16.307203751316777,14.86726213508348,0.559851780248107,0.7846743295019157,0.6971428571428572,0.5728088336783989,0.1160384331116038,0.7285803627267042,0.9228915662650602,0.8581818181818182,0.7597765363128491,0.1376811594202898,0.5013020833333334,0.7202247191011236,0.64,0.5114573785517873,0.1104921077065923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027949367088607,0.0054726216898239,0.008014039786157,0.0106841078973025,0.0133097438713154,0.0160840442209418,0.0186027073309956,0.0213630285895093,0.0242157233540156,0.0268604770191421,0.0295791254421489,0.0317857949528757,0.0343125661933308,0.036910781779421,0.0393174385374862,0.0419616557283861,0.044499202783012,0.0469971994606368,0.0490910413786652,0.0515905255921504,0.0685525134181233,0.0848750575530534,0.1009667813102927,0.1161624655748733,0.1307721502973052,0.1484790492604066,0.1639173836018967,0.1780320366132723,0.1920275149003439,0.2054403672676956,0.2207811793093047,0.2346543439677936,0.2483844296002959,0.2607934528107836,0.2728393431074715,0.2853342791275048,0.2962532804735049,0.3067712029558537,0.3167405386975793,0.3264271292217327,0.3350977575982209,0.3434894613583138,0.3507611324512732,0.357448239419705,0.3636817191739982,0.3705862017877426,0.3763099834528406,0.3817148826129603,0.3865639908732628,0.3916990406723222,0.3912891093646792,0.3905459956188088,0.3896917692220842,0.3887327616178004,0.3884186684150921,0.3867371072273244,0.3856127209826387,0.3867497075445273,0.3870779877014782,0.3874186395822902,0.3888753400243879,0.3895507619236097,0.3909549852755574,0.3922659369252164,0.3917568089627197,0.3928823760303546,0.393773784657644,0.3975447344336794,0.3995350147949838,0.4010416666666667,0.4051680768351246,0.4067832878617664,0.4087488840709093,0.4110316178167551,0.4127300322519446,0.4141148325358851,0.4166023761765159,0.4179591836734694,0.4236958934517203,0.4233436055469954,0.0,2.9857100738990403,70.23447531149657,239.0993535751204,344.8998869168128,NC_public_implementation,6 +100000,95727,49118,461.2282846010007,7925,81.12653692270727,6207,64.09894805018438,2492,25.562276055867205,77.33281654085012,79.69881464708101,63.319784280511655,65.07101120503415,77.03073955673672,79.39786727262478,63.20916674743693,64.96373201575169,0.3020769841133983,300.94737445622854,0.1106175330747234,107.27918928246538,128.85092,90.45647566091266,134601.3350465386,94493.3525981952,302.86798,187.87879805207143,315627.659907863,195514.41673877375,373.43662,179.32392884543137,385076.69727454113,183480.93661262735,4452.79628,2019.7452573044748,4604000.53276505,2062867.300843523,1489.31263,655.0764509623073,1540304.6058060946,668841.1869229989,2450.6361,1013.80792356702,2516943.5164582613,1023845.0531305076,0.43284,100000,0,585686,6118.24250211539,0,0.0,0,0.0,24945,259.78041722815925,0,0.0,34270,353.0665329530853,1801914,0,64798,0,0,8679,0,0,57,0.5849969183198053,0,0.0,0,0.0,0,0.0,0.07925,0.1830930597911468,0.3144479495268139,0.02492,0.3296518607442977,0.6703481392557022,25.14197098562665,4.530413998019485,0.3198002255517964,0.2213629772837119,0.2284517480264218,0.2303850491380699,11.425542549914343,5.832945771218581,26.50093886668003,14739.822153315788,70.47460665089605,16.368096488708506,22.490819685948257,16.14759005149983,15.468100424739468,0.5637183824714033,0.7933042212518195,0.6921914357682619,0.6027972027972028,0.122002820874471,0.7434052757793765,0.9263565891472868,0.896551724137931,0.7043478260869566,0.1789473684210526,0.4976867151354924,0.7132867132867133,0.6192754613807245,0.5705069124423963,0.1076787290379523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027561329023498,0.0051930664448794,0.0080515788404914,0.0109472357467397,0.0137752818133724,0.0164296773142112,0.0191823290060065,0.0218376722817764,0.0244064538557493,0.0270015666437984,0.0294346818675798,0.0318311102896631,0.0340955827918071,0.0366323377960865,0.0392476501965477,0.0415934508920265,0.0440046396984196,0.0461602324616023,0.0485172399450983,0.0508177935201583,0.0684651201636982,0.0852401728449313,0.1013852913726024,0.1161225884455658,0.1306038980889034,0.1487685458371667,0.1648759585503219,0.178666467970962,0.1922000512732866,0.2048949998927476,0.2202323903468625,0.2345398474273657,0.2486541159581063,0.2610953781558546,0.2728962914883552,0.2845846300377659,0.2961549193593392,0.3072610604525498,0.3174841053587647,0.3272546077274654,0.3355564818674447,0.3432961679003092,0.3514157372619202,0.3585378727896542,0.3650338084350829,0.371053573853885,0.3770627476551136,0.3822869669394101,0.3880540849164331,0.3930073815382173,0.3926252851223495,0.3924481968931931,0.3916575998643512,0.3911020266156388,0.3907872746806732,0.3897221539218097,0.3885076096972008,0.3888120181854121,0.3891021247429746,0.3901185487625801,0.3910132224876333,0.3925343186920158,0.3934961060829299,0.3940483682459768,0.3949228014132907,0.3961823242136218,0.3963446175067532,0.4000444176528443,0.4018641905301956,0.4042305531026732,0.4050271614031857,0.4077534364261168,0.4112898099294387,0.418426103646833,0.4216605131118053,0.4217817052782421,0.4210688433697828,0.4273469387755102,0.427572706935123,0.4291845493562232,0.0,2.844398885440318,73.34305859531764,223.12281942588413,352.282343032218,NC_public_implementation,7 +100000,95766,49581,465.27995321930536,7935,81.27101476515674,6229,64.32345508844475,2462,25.23860242674853,77.34910350822409,79.67785341788529,63.34642956891118,65.06685657276569,77.04377785780777,79.37578066179992,63.23280729097746,64.95815007814845,0.3053256504163215,302.07275608536577,0.1136222779337146,108.70649461723758,127.3096,89.40214571097226,132938.20353779002,93354.78740990776,303.03712,188.40825067388545,315702.7755153186,196005.94226957945,376.34156,180.77907911082937,388516.2374955621,185371.82123753533,4425.50059,2007.7082935920305,4571990.696071674,2047303.128032945,1432.15107,634.027198317905,1477006.2965979576,643601.5361259583,2409.0571,1011.8987123215824,2470972.453689201,1017178.2501070028,0.43516,100000,0,578680,6042.645615354092,0,0.0,0,0.0,24905,259.2987072656266,0,0.0,34551,356.47306977424137,1808166,0,65042,0,0,8423,0,0,64,0.6578535179500031,0,0.0,0,0.0,0,0.0,0.07935,0.1823467230443974,0.3102709514807814,0.02462,0.3213256484149855,0.6786743515850144,24.96373171370905,4.410230837778225,0.3220420613260555,0.2308556750682292,0.2200995344357039,0.2270027291700112,11.063739351085106,5.674259312238255,26.296579415117726,14745.719837118437,70.87181565856244,17.115876801854917,22.808831280530896,15.840024680233086,15.107082895943549,0.5655803499759191,0.7962447844228094,0.7048853439680958,0.5876944837340877,0.0970094821298322,0.7241379310344828,0.9243697478991596,0.8604206500956023,0.7024539877300614,0.1333333333333333,0.5110056107034959,0.7328482328482329,0.6500337154416723,0.5533088235294118,0.0881017257039055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027543745949449,0.0054531264253641,0.0082478619472258,0.0109699241246914,0.0137064302273559,0.0164807198990186,0.0192930960679997,0.0218502832066132,0.0244817051364579,0.0269385416560092,0.0292490523511935,0.0316367367880964,0.0341304995734972,0.0365605121765444,0.0392931157141531,0.041584035696579,0.044175169188104,0.046518380256131,0.049016449658641,0.051184587347045,0.068462413508803,0.0850251550618678,0.1003229459380111,0.1155499500761994,0.1298519260157032,0.1486957808404498,0.1642001484151383,0.1779815147679773,0.1917214584578601,0.2041662648278522,0.219375396970643,0.2343842950624628,0.2484040412828571,0.2601728287026909,0.2722530375066033,0.2851049214474063,0.2968359235441229,0.3073349605750087,0.317470405974418,0.3264808282559897,0.334428809479726,0.3427561423839121,0.3499863823135857,0.3570811951465157,0.3639136669664341,0.3709977914594874,0.3780851437019218,0.3834900731452456,0.3890338070209591,0.3949781052798687,0.3937577622981802,0.3931035434374655,0.3919962720815623,0.3914126781782361,0.3916791994877674,0.3902072141212586,0.3880788818200568,0.3889656988610178,0.3888669967618688,0.3901140275387263,0.3917328017452138,0.3932014710267369,0.3941175231232749,0.3961477810317639,0.3966388187293569,0.3980293490001844,0.3996538794346697,0.4028955928311754,0.4060619012002707,0.4094354838709677,0.412990252690904,0.4178038035886967,0.4184747721145205,0.4226517201391573,0.4266257433339727,0.429683698296837,0.4336366488860997,0.4331539735099338,0.4278452414572155,0.4316170555108608,0.0,2.7561125954304884,70.03608058061168,239.8857586074504,349.5145472708023,NC_public_implementation,8 +100000,95659,48827,459.2354091094408,7963,81.6650811737526,6235,64.49994250410312,2511,25.852245998808264,77.31532774038504,79.7073087726485,63.31028192710126,65.07614916840672,76.998391318456,79.3882724189302,63.19347513736867,64.96123336126752,0.3169364219290429,319.0363537183032,0.1168067897325855,114.91580713919802,127.77314,89.57254482617347,133571.4778536259,93637.34183524128,299.94666,185.8980172200624,312886.92125152884,193662.75752418736,369.76204,177.66556758497072,381768.3228969569,182099.2130833479,4473.85487,2036.840945690402,4633258.585182784,2085653.1070682344,1484.82708,654.441048267951,1535037.215525983,666968.3127232672,2459.24346,1032.644786069013,2534144.9314753446,1048683.612032843,0.4313,100000,0,580787,6071.430811528449,0,0.0,0,0.0,24653,257.0171128696725,0,0.0,33994,350.6622481941061,1808385,0,65106,0,0,8684,0,0,58,0.595866567704032,0,0.0,1,0.010453799433404,0,0.0,0.07963,0.1846278692325527,0.3153334170538742,0.02511,0.3288293674518713,0.6711706325481287,24.978559146264704,4.380199112662703,0.3289494787489976,0.2227746591820369,0.2248596631916599,0.2234161988773055,11.015262178235352,5.641177098286891,26.887047357531788,14614.884784996517,71.20201439206764,16.713590802120454,23.286393100467546,15.560408814797768,15.641621674681888,0.5544506816359263,0.78113750899928,0.6835689907362262,0.583632447954056,0.1119828815977175,0.7147201946472019,0.9090909090909092,0.8603351955307262,0.7287066246056783,0.1372549019607843,0.4970594641690263,0.712707182320442,0.6208718626155878,0.5408921933085502,0.10492700729927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027959559940839,0.0055759443622133,0.0083013659704885,0.011023510048158,0.013519287109375,0.0163992869875222,0.0189404757047856,0.0214391501966191,0.0242368461420463,0.0266860548467036,0.0290648780587861,0.0314840114636726,0.0335575993251445,0.0359615860192894,0.0382638315441783,0.0408638183002885,0.0430620026525198,0.0453974613125201,0.0477542699036801,0.0502459665652228,0.0669940445094556,0.0832739989948065,0.0986869036747803,0.1132673142291866,0.1270317051547262,0.1448095530477864,0.1600526712612431,0.1742529960053262,0.1880271527072532,0.2014191553771174,0.2164131641639807,0.2317688592406488,0.2459664249787706,0.2582827121983254,0.2699802813487998,0.2826824938983803,0.2942149129667284,0.305010132852961,0.3156878556258447,0.3246305023333677,0.3330513679185158,0.3412437187401169,0.348713209156832,0.3549068815215955,0.3614928131916239,0.3679768001480841,0.373644421598987,0.3797102188013712,0.3853215767634855,0.3910806628665141,0.3915003306476645,0.3914351564332933,0.3913209252407716,0.3909851880866373,0.390200259457525,0.3877566703553424,0.3864694386628323,0.387147206451082,0.3874695655155858,0.388686687584043,0.3885786277053835,0.3895376549094375,0.3907090567709542,0.3920672102346952,0.3939188206197566,0.3969764690416721,0.3977675867439647,0.4009961049741395,0.4044823525213233,0.4074118929393242,0.4101401674607947,0.4133261397356353,0.4152966863601335,0.4159264453794608,0.4182692307692308,0.420486153101947,0.4243451463790447,0.4264646464646465,0.4268190688597714,0.4281853281853282,0.0,2.66579699877236,72.56087910692523,240.05773050462105,343.1573412096322,NC_public_implementation,9 +100000,95612,48841,460.4861314479354,7950,81.80981466761494,6218,64.33292892105594,2523,25.917248880893613,77.3146043072854,79.73225449959668,63.296484254502126,65.08230144731718,76.99378527565855,79.41284542880206,63.17824125476409,64.967571199206,0.3208190316268542,319.4090707946202,0.1182429997380367,114.73024811117229,128.79042,90.40051540081556,134701.10446387483,94549.34046020955,304.77739,189.28049039725792,318014.95628163824,197217.46265872265,368.46015,176.6613508155005,380883.7802786261,181299.1696369336,4448.35121,2013.4336558952896,4606457.871396896,2060098.100547156,1484.02412,651.0151069721574,1535030.9061624063,663827.6829810105,2467.2432,1035.847418569928,2537617.307450948,1047188.2265909442,0.43108,100000,0,585411,6122.777475630674,0,0.0,0,0.0,25119,261.9650253106305,0,0.0,33905,350.1966280383216,1798279,0,64624,0,0,8746,0,0,57,0.5857005396812116,0,0.0,1,0.010458938208593,0,0.0,0.0795,0.1844205251925396,0.3173584905660377,0.02523,0.3226772030651341,0.6773227969348659,24.79326503443284,4.46039533081446,0.3229334191058218,0.2262785461563203,0.2249919588292055,0.2257960759086523,11.084811957534392,5.757665645764312,27.000476235377345,14553.448664478034,70.50712219981615,16.822057057386928,22.702406264548195,15.620588297325748,15.362070580555296,0.5509810228369251,0.7690120824449183,0.6902390438247012,0.5676638176638177,0.1150822015725518,0.7080820265379976,0.9032882011605416,0.8440545808966862,0.693939393939394,0.1510067114093959,0.493859649122807,0.6910112359550562,0.6374581939799331,0.5288640595903166,0.1053587647593097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002543240148744,0.0052428228088144,0.0078369269500954,0.0104252400548696,0.0131022135416666,0.0157160317783662,0.018482063626442,0.0208192869547451,0.0230640987613914,0.0257037818353114,0.0282153846153846,0.030713918849512,0.0330950054009567,0.035598372057081,0.0380681055749956,0.0405624773819986,0.0427196336244858,0.0448924926546164,0.0471756027010997,0.0494154211991948,0.065995630951261,0.0819794056335962,0.0977003045258847,0.1120257695060844,0.1264606842388608,0.1448116654135736,0.1602026833232416,0.1755120745145682,0.1888980412713015,0.2016565682609256,0.2179917356263553,0.2322299538271444,0.2459654131569484,0.257689146989536,0.2695852534562212,0.2821571696584185,0.2935059707500335,0.3041650228259032,0.3139401380031602,0.3234585188926128,0.3326573183451153,0.3406876522390856,0.3486608200995496,0.3551260504201681,0.3621039829735482,0.3684100108599072,0.373986592318777,0.3792352371732817,0.383935284814229,0.3889336840574729,0.3881573621866652,0.3877491934816776,0.3876412429378531,0.386930664345808,0.3870808825724778,0.3861285555966014,0.3843863922186669,0.3854770755885997,0.386945142739075,0.3880181184167955,0.3892277570691667,0.3904435371992548,0.3909446007812172,0.3914820971292511,0.3925443358668114,0.3927871422971384,0.392376104549744,0.3942240998801942,0.3976383503701092,0.3999360613810742,0.4013278388278388,0.4048077952671592,0.4053137003841229,0.4086668208805613,0.4112211849876167,0.412,0.4163908589440504,0.4151061173533084,0.4139091418956814,0.4102766798418972,0.0,2.678521207607452,73.20160057061041,226.5728975952319,349.30922122277315,NC_public_implementation,10 +100000,95640,49120,460.8636553743204,7741,79.39146800501882,6086,62.99665411961522,2438,25.052279381012127,77.29129418892526,79.69110708796678,63.29829466637945,65.06979695894704,76.98781554763839,79.3880692949492,63.18679603751077,64.96159272951145,0.3034786412868726,303.03779301758027,0.1114986288686736,108.20422943558584,127.6297,89.57979764127383,133448.03429527394,93663.52743755103,299.37118,186.4067655468226,312403.9000418235,194289.7067616297,368.92049,177.67659231581857,381399.1007946466,182442.87203309344,4348.4215,1968.714929079907,4504065.976578837,2015874.246214876,1479.7024,653.8398339361189,1530757.9360100375,667246.2609118765,2385.99492,991.8472168609044,2454565.704726056,1002291.486402174,0.43268,100000,0,580135,6065.81974069427,0,0.0,0,0.0,24646,257.0577164366374,0,0.0,33891,350.2091175240485,1805593,0,64899,0,0,8426,0,0,68,0.6900878293601004,0,0.0,0,0.0,0,0.0,0.07741,0.1789082000554682,0.3149463893553804,0.02438,0.3220505273485406,0.6779494726514594,25.09724447506637,4.4358582661775205,0.3210647387446598,0.2260926717055537,0.2223135064081498,0.2305290831416365,11.227708951887056,5.801565778143173,26.10211460193425,14689.050336786158,69.18891990890224,16.434748810714346,22.03835681821734,15.83749298588734,14.878321294083204,0.5673677292145909,0.7986918604651163,0.6944728761514841,0.6022808267997148,0.1123429416112343,0.7284183994959043,0.9230769230769232,0.8583509513742071,0.7134670487106017,0.1660516605166051,0.5105579017559457,0.7290249433106576,0.6421336934503714,0.5654648956356736,0.0988909426987061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027146662885041,0.0055459799249721,0.0083838291566436,0.0110151407377299,0.0139079652860442,0.0166929775423944,0.0196178395905132,0.0223109441052137,0.024813921151644,0.0271640079454467,0.0296581924090615,0.0321676167000462,0.0349570495344889,0.0377045463913276,0.0401073659216435,0.0426247142665053,0.0449683905067882,0.0472640431938531,0.0494552946195386,0.0517009497794968,0.0685539914934528,0.0851280010055725,0.1008956603000934,0.1156923012147112,0.129960736299924,0.1481254101657599,0.162779340729338,0.1770683539449717,0.1907582431681136,0.2033563460278944,0.2190340633390483,0.233019276586528,0.2462878293054648,0.2584806079320237,0.2697420634920635,0.2818635607321131,0.2934419451800699,0.3042552951906944,0.3141948671360436,0.3241898692098717,0.3339934222716323,0.3417257766228901,0.3495040940384638,0.3563953627919257,0.3636286190655843,0.3706892292490119,0.3760413530061227,0.381784083080299,0.3871784550259053,0.3917619834710744,0.3915801692604641,0.3912083057212281,0.3907350320993241,0.3906338406186075,0.390452876376989,0.3891995132695655,0.3884538248495846,0.3889219379998678,0.389609495957337,0.3903105724099484,0.391308451794378,0.3919215279716097,0.3924631187386397,0.3943344309621543,0.3954383671097552,0.3945115546218487,0.3946267972733001,0.3979875965067713,0.4002196867691872,0.4054813209742787,0.4075367647058823,0.4081840064188285,0.4116783663050414,0.4155944814757402,0.4126725460122699,0.4144648727626933,0.4183222958057395,0.4223015539689206,0.4220521541950113,0.423841059602649,0.0,2.524537175441502,69.97361324106245,227.384805585978,344.45906333781704,NC_public_implementation,11 +100000,95612,49089,460.3920010040581,7912,81.10906580763921,6184,63.89365351629503,2515,25.82311843701628,77.27514686010801,79.68704241090397,63.27600815666828,65.05675939802444,76.95743023685,79.3698312891484,63.15718912988074,64.94122864700194,0.3177166232580077,317.21112175557664,0.1188190267875413,115.53075102250432,130.04486,91.21351335669604,136013.11550851358,95399.6499986362,304.48375,190.0695165951323,317666.2029870728,198001.0632505672,374.88709,180.76156428730272,386946.5234489394,185193.91735474576,4458.07569,2052.123169258932,4608865.728151278,2092494.853427322,1486.45787,661.4020013100181,1538956.7941262603,676042.0772413434,2469.9685,1049.2538723466655,2538043.425511442,1058820.5660390726,0.43249,100000,0,591113,6182.414341296072,0,0.0,0,0.0,25065,261.3374890181149,0,0.0,34499,355.6561937832072,1787214,0,64311,0,0,8872,0,0,61,0.637995230724177,0,0.0,0,0.0,0,0.0,0.07912,0.1829406460264977,0.3178715874620829,0.02515,0.3258211460081515,0.6741788539918485,24.936557162195687,4.436687936862009,0.31872574385511,0.2183053040103492,0.2317270375161707,0.23124191461837,11.1534069278127,5.706547500611308,27.14829986825493,14659.56886096915,70.62088386224414,16.122680920686523,22.48247170100156,16.04578842515231,15.969942815403757,0.5588615782664942,0.7718518518518519,0.7062404870624048,0.5979020979020979,0.1165387299371946,0.7228704784130688,0.9094488188976378,0.8860294117647058,0.7280701754385965,0.14375,0.4959731543624161,0.6888361045130641,0.6377014716187807,0.5569852941176471,0.1087151841868823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026936163318211,0.0053312792029433,0.0082390543351428,0.0111020822752666,0.0137511569483009,0.0163149747433599,0.0190989925357914,0.0218476585231391,0.0246695224561152,0.0271748034076015,0.0295101136503508,0.0323296452676672,0.034754874221925,0.0374474313515296,0.0397666253614209,0.0420321939915583,0.0447266131122052,0.0471314029329899,0.0494317945302418,0.0519262457501616,0.0689947112068064,0.0857801529917216,0.1008730000315162,0.1151637746662873,0.1302487719854222,0.1485345676789289,0.1641867188164271,0.1780028789252012,0.1913570335163835,0.2038098104769788,0.2182617240225032,0.2319274494489282,0.2451774712392999,0.2573525378733861,0.2705725199266962,0.2829440135132132,0.2948908869008297,0.3057618929353593,0.3153945135907626,0.3243386121773507,0.3328418339506101,0.3409234958567103,0.3488570919669893,0.355493032259616,0.36240163714766,0.3690156862260349,0.3750266916207152,0.3801148691767709,0.3850036424185659,0.3895709588459907,0.3890715261712461,0.3888489507009152,0.388689229724376,0.388050387484399,0.3885191596036767,0.3867608147190942,0.3854835632987855,0.3857918268358273,0.3872432284260481,0.3874816380638458,0.3883603067241931,0.3892000317762948,0.3904458867161159,0.3915059305439896,0.3923790156632047,0.3930229508196721,0.3952247029788211,0.3994040637778552,0.4026779072650632,0.4065193857503709,0.4098714416896235,0.4118786313750807,0.4137558058153591,0.4163340497390236,0.4228232820414795,0.4302255457725244,0.4335036383341074,0.4338190026677611,0.4407490217998882,0.4444875776397515,0.0,3.01628316941844,75.27704361158153,225.81729477881152,341.12087765302243,NC_public_implementation,12 +100000,95682,49190,461.2361781735332,7805,80.10911143161724,6143,63.59607867728517,2466,25.37572375159382,77.28391542799022,79.68192495336069,63.28504443165552,65.05973920406242,76.97799211253553,79.37538549219197,63.17243896777478,64.94959357739502,0.3059233154546916,306.5394611687253,0.1126054638807403,110.14562666740346,129.80396,91.0616916419274,135661.838172279,95171.1833384831,302.02158,187.36926597937952,315050.6469346377,195229.36403082305,368.62335,176.68818415524,381496.89596789365,181720.60525459677,4449.46818,2004.7774510638533,4609837.001734913,2055200.732608924,1488.31498,651.09137867294,1539446.2176793965,664439.8410076497,2433.1813,1015.1194945163918,2505965.0299951923,1029444.8308214246,0.43157,100000,0,590018,6166.447189649046,0,0.0,0,0.0,24857,259.17100395058634,0,0.0,33763,349.1774837482494,1795637,0,64587,0,0,8867,0,0,67,0.7002361990761062,0,0.0,0,0.0,0,0.0,0.07805,0.1808513103320434,0.3159513132607303,0.02466,0.3254488112566715,0.6745511887433285,25.27182544342848,4.520610156968541,0.3206902165065928,0.2155298713983395,0.2370177437734006,0.2267621683216669,11.10800416026289,5.57613879464945,26.28301816307018,14648.582345374229,69.53765708709307,15.727093982752333,22.28625991964848,15.537779764586958,15.986523420105287,0.5516848445384991,0.7764350453172205,0.6893401015228426,0.6015793251974156,0.1133241758241758,0.7109826589595376,0.8925438596491229,0.875,0.7347560975609756,0.1528239202657807,0.497601395551679,0.7154377880184332,0.6308411214953271,0.5605633802816902,0.103030303030303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026651263654972,0.0056495456020772,0.0085992466775637,0.0112702106685907,0.0142038806304243,0.0169097873033982,0.0194196542403998,0.0219083220982963,0.024617744822296,0.0271671208178819,0.0299054106736155,0.0323250174674283,0.0348322700144062,0.0374927858850688,0.0397006451612903,0.041883408999245,0.0443072076926265,0.0468148271173069,0.0491064927500052,0.0517676241297369,0.0692057788131078,0.0855599296423486,0.101335040617981,0.1155052301475385,0.1296812328477939,0.1478160530160276,0.1635268881148585,0.1781891382377062,0.1914475090870216,0.2038537920669851,0.2190275981026304,0.2336612637600763,0.2469779800927841,0.2590937469194624,0.2711729885247528,0.2828179648031977,0.2939420033773582,0.3044801695564925,0.3147590190215228,0.3239759907268199,0.3318292018049578,0.3408842954846732,0.348494379888666,0.35508325924502,0.3617371177975393,0.3679522656520235,0.3729236714006122,0.3778531534518375,0.3833672979322698,0.388666322901379,0.3882829373650108,0.3884543761638733,0.3879964994495102,0.3869674693216022,0.3879023721131338,0.3865715471779339,0.3853308741692371,0.3868869198590204,0.3883586803529129,0.3889407540394973,0.3900749381807199,0.3906461906661348,0.3916525423728813,0.3931641331885631,0.3951378898344346,0.3958041958041958,0.396220988754997,0.3983333863426735,0.4006232073935059,0.4024541348575083,0.4065686724850712,0.4083806058011345,0.4107831363377789,0.4139135718083087,0.4146456544304992,0.4191273161984459,0.4192254281746644,0.4189967105263157,0.4135593220338983,0.4231218372907746,0.0,2.348353220829834,68.81572264841985,232.44776041329044,348.32025317873405,NC_public_implementation,13 +100000,95652,48933,459.4990172709405,7896,81.07514740935892,6204,64.22238949525362,2472,25.456864467026303,77.35161970545354,79.7564937237805,63.31721993396855,65.09388051527836,77.04659683988602,79.4502393178636,63.20562754324651,64.98425029973907,0.3050228655675226,306.2544059168886,0.1115923907220448,109.63021553928344,128.73938,90.31810853229608,134591.4147116631,94423.64878130732,303.09684,187.922167833186,316251.5472755405,195841.44381004685,372.0325,178.13431549777798,384717.31903148914,183009.207807411,4446.15506,2012.9410137044983,4608111.633839334,2064292.3239498371,1516.804,675.8839013703587,1568681.397147995,689536.0592254832,2421.00692,1006.5101372280708,2495900.368000669,1023102.6579616783,0.4316,100000,0,585179,6117.791577802868,0,0.0,0,0.0,24889,259.55547191903986,0,0.0,34274,354.064734663154,1802661,0,64742,0,0,8586,0,0,59,0.6168193033078242,0,0.0,3,0.0313636933885334,0,0.0,0.07896,0.1829471733086191,0.3130699088145897,0.02472,0.3364677516576251,0.6635322483423749,24.989378847562374,4.442528091720719,0.3355899419729207,0.2140554480980012,0.2195357833655705,0.2308188265635074,11.451922868823097,5.95712534403019,26.41809960451205,14672.738097277574,70.33609944408147,15.851674265266896,23.501651533765383,15.935361388692757,15.047412256356449,0.5651192778852353,0.7853915662650602,0.696926032660903,0.5824022346368715,0.1306901615271659,0.7213622291021672,0.9192139737991266,0.8499025341130604,0.7264957264957265,0.1808873720136518,0.5101329265635215,0.7149425287356321,0.6469088591459529,0.5356151711378353,0.1169317118802619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002735534594381,0.0053541550474065,0.0077232224409848,0.0104649272535154,0.0131930952405171,0.0160725198614789,0.0189976036302452,0.0214334582512176,0.0241922290388548,0.0269179555464508,0.0293719350801239,0.0316912263394783,0.0343305239109629,0.0369492154477411,0.0395294069039601,0.0420977487170998,0.0442037622428356,0.0465379424893594,0.0487406498059737,0.0510812670740099,0.0684207226599235,0.0848838305045703,0.1004975019942063,0.1150535597786055,0.1300791556728232,0.1479999576598605,0.1632793917770982,0.1772493258151507,0.1908720351766858,0.2041686353678965,0.21950824975736,0.2335651759403709,0.2469600809919334,0.2599375992117795,0.2712532769369726,0.2837674506281671,0.2954494658262929,0.3056784785325812,0.3154858563949989,0.3247680146637645,0.3340508013655037,0.3412671493233839,0.3494869883196648,0.3568869021224577,0.3636308424837236,0.3704059631614612,0.3762724157767051,0.3813932195630611,0.3863268870060151,0.3907745865970409,0.390542506195453,0.3898911502841652,0.389369801212463,0.3888503253796095,0.3891526634616816,0.388535227255296,0.3868144413261666,0.3872703930476002,0.3877348142054024,0.3887295669630054,0.3896566006476391,0.3892482933799016,0.3901724973146022,0.3915551764388973,0.3915349016583108,0.3930418429713211,0.393277070519239,0.3977883096366508,0.4014544427577929,0.4044728434504792,0.4079490235628495,0.4094098883572568,0.4104764910066267,0.4156898797211369,0.4205351233809208,0.4193975903614458,0.4197915045900109,0.4281039067293925,0.4357142857142857,0.4384761904761904,0.0,2.53530409103634,71.30470365669782,235.03147570576007,344.09164468930203,NC_public_implementation,14 +100000,95774,48899,459.39399001816776,7799,80.08436527658864,6128,63.2321924530666,2472,25.28870048238561,77.3507064425629,79.67873224257164,63.34838135415546,65.06971413753728,77.05184791757485,79.38178087330628,63.23932180531291,64.96452899815972,0.2988585249880486,296.9513692653578,0.1090595488425449,105.18513937755358,130.10536,91.29831010710024,135846.2213126736,95326.82158738303,304.82839,189.06679493823927,317524.8710505983,196655.32914803515,370.8,178.0827624137578,381885.15672311897,181877.40982246937,4361.98426,1974.9374220545417,4502919.497984839,2010685.466674195,1468.47139,645.177241531967,1511428.5505460773,651839.527111495,2423.87482,1002.8107854140296,2482564.7044082945,1008054.75763806,0.4313,100000,0,591388,6174.828241485163,0,0.0,0,0.0,25086,261.1251487877712,0,0.0,34056,350.3769290204022,1798324,0,64662,0,0,8808,0,0,54,0.5638273435379122,0,0.0,0,0.0,0,0.0,0.07799,0.1808254115464873,0.3169637132965764,0.02472,0.3322404371584699,0.66775956284153,24.955378342836504,4.436478175915878,0.3317558746736292,0.2193211488250653,0.2238903394255874,0.225032637075718,11.262965970935223,5.860593704598528,26.482812161918243,14575.93807574136,69.55628120973049,15.870354028762224,23.115641457098057,15.37173426521051,15.198551458659711,0.5546671018276762,0.7715773809523809,0.6930644367929168,0.574329224075417,0.1173469387755102,0.724202626641651,0.922566371681416,0.8427787934186471,0.7290322580645161,0.1862068965517241,0.4948112166041069,0.695067264573991,0.6379542395693136,0.529466791393826,0.0988909426987061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026336047972124,0.0049878345498783,0.0077526459455894,0.0103201690232406,0.0130144786074507,0.0155761654127683,0.0185275773511067,0.0209304936167607,0.0232379901284527,0.0256037658616455,0.028096565292237,0.0305368576588409,0.0331127189015867,0.0355459018756047,0.0379574538292584,0.0404652940629551,0.0428394039735099,0.0452424889589251,0.0474820592175637,0.0500468505986465,0.0671383254027882,0.0831372795047941,0.0986026228339605,0.1130657755078449,0.127740072506534,0.1461112403018836,0.1616809645504384,0.1757832453601226,0.1894996423729356,0.2015411656270765,0.2173501237756969,0.2319597099287791,0.2457381270575964,0.2585698367962247,0.2705914687774846,0.2828395689979423,0.2938174199875189,0.3043116813085582,0.3148148148148148,0.3246484272195714,0.3333679917743966,0.3409390954867805,0.3481619952437855,0.3547664402352969,0.3611944285905111,0.3672051158836358,0.3731656971289172,0.3792989333808517,0.3842295579143823,0.3896052475286726,0.3889105923241684,0.3888957790731324,0.3883634926460209,0.3872005564975436,0.3873616139943081,0.386097538489905,0.384954064278221,0.3860465884139798,0.3863359158921853,0.3874443327108174,0.387683826999679,0.3893324307643299,0.3902619505697794,0.3907762598389577,0.3914330066944795,0.3930442566411289,0.3944811279951558,0.3986865595511349,0.402269412727208,0.4051084646537551,0.4108190511387259,0.4107191242616376,0.412063206577595,0.4113795791114575,0.4146574818216609,0.4133220502901354,0.4132412927518042,0.4108266890474192,0.4093500570125427,0.4154150197628458,0.0,2.8907423005682484,70.11633221784328,231.7116852666045,341.22264928291366,NC_public_implementation,15 +100000,95720,49127,461.4814040952779,7930,81.39364814040952,6256,64.61554534057669,2494,25.58503969912244,77.31652017658898,79.67795993664123,63.31665033110207,65.06272440160997,77.0111121611762,79.37290178922575,63.20294038901509,64.95206918969734,0.3054080154127803,305.05814741547965,0.1137099420869773,110.65521191262916,128.8639,90.44593605761337,134625.42833263686,94489.66011033574,306.23205,190.46575300595572,319198.1508566653,198255.950382319,376.23887,180.4018646417492,388038.9364814041,184604.35612802,4487.82605,2041.452997623628,4639910.562055997,2084419.306681531,1484.41648,651.4469254236827,1531385.7083159217,661311.9503978259,2448.3135,1030.5409925676445,2514072.231508567,1039951.421875452,0.43238,100000,0,585745,6119.337651483494,0,0.0,0,0.0,25190,262.4007521938989,0,0.0,34657,357.0727120768909,1797736,0,64718,0,0,8656,0,0,63,0.6581696615127455,0,0.0,1,0.0104471374843292,0,0.0,0.0793,0.1834034876728803,0.3145018915510719,0.02494,0.3268263473053892,0.6731736526946108,25.081165420314026,4.446730637952751,0.3265664961636829,0.2229859335038363,0.2261828644501279,0.2242647058823529,11.157275196123209,5.741090356359489,26.84815391253996,14646.496288264922,71.61463208602717,16.74592999655671,23.3051319643522,15.836405172120742,15.727164952997516,0.5559462915601023,0.7827956989247312,0.7043563387175722,0.5637918745545261,0.1102473498233215,0.7062043795620438,0.918200408997955,0.8682170542635659,0.7108433734939759,0.0912052117263843,0.5023850823937555,0.7097130242825607,0.6489849377865095,0.5182072829131653,0.1155234657039711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027653690704105,0.0055352236899463,0.0080791677239279,0.0107400144284015,0.013580322265625,0.0158983969201311,0.0183472203808144,0.0211390582396372,0.0239366053169734,0.0265986854229375,0.0291204396776244,0.0315439273832505,0.0341196553071591,0.0364733503583491,0.0390423534751304,0.0414113757297101,0.0437550462704179,0.0460448519801672,0.0484501361718051,0.0507464552491483,0.0678944675875173,0.0842253963271072,0.0993990750159932,0.1147787498948431,0.128632586781391,0.147057579219021,0.1620056017654048,0.1759858615109445,0.1899597149054849,0.2027447529936907,0.2180635012982535,0.2330039290391713,0.2467447704206507,0.2601463302601791,0.2719374552662005,0.2833908001374768,0.2945401335924759,0.3049712439927519,0.315378326823508,0.3251767888047128,0.3329358509788485,0.3415382094408745,0.3493306480274848,0.3562640290964962,0.3629072498691689,0.3696006721360087,0.3755644190246839,0.3804221669536382,0.3865204981837052,0.390974261302013,0.3903917280850948,0.3897216274089936,0.3889958656623435,0.3892205999854725,0.3893219832735962,0.3880626885891988,0.3866999777219057,0.3872578192157641,0.3881591405994457,0.3887487840904997,0.389628790025503,0.3902822564592539,0.3905467908509155,0.3911211267605634,0.3934871099050203,0.3950364657117372,0.3956729111596368,0.3977092957033474,0.4013982557113096,0.4037125748502994,0.4065536205316223,0.4084786691709149,0.4113759135684779,0.4144495412844036,0.4192784774169112,0.4233269138180067,0.4240260748098712,0.4266693977877919,0.4277327369303886,0.40859375,0.0,2.856169105256111,72.45862983798688,242.96715060879905,344.50140286876456,NC_public_implementation,16 +100000,95676,49139,462.3730089050546,8022,82.53898574355115,6257,64.79158827710188,2434,25.105564613905266,77.40264542862671,79.78481725124034,63.35728834693722,65.112686785558,77.094575835139,79.47437930820153,63.2431022792056,65.00044700875196,0.3080695934877155,310.43794303880645,0.1141860677316159,112.23977680603524,129.00316,90.51825239795096,134832.6644090472,94608.52235406244,303.44469,187.7853157557981,316566.7774572515,195681.36406765645,372.31387,178.50634458967392,385168.38078514993,183524.9773494328,4503.19221,2034.0581171267063,4667329.309335674,2086741.2266381592,1494.70578,656.1996390088575,1547109.0033028135,670755.461322365,2398.62754,1011.728006142096,2475676.825954262,1028273.1344169424,0.43272,100000,0,586378,6128.757473138509,0,0.0,0,0.0,24970,260.34742255111,0,0.0,34211,353.70416823445794,1804798,0,64812,0,0,8747,0,0,54,0.5539529244533634,0,0.0,0,0.0,0,0.0,0.08022,0.1853854686633388,0.3034156070805285,0.02434,0.3155219293060645,0.6844780706939354,25.22987128187398,4.411322037045243,0.3202812849608438,0.2285440306856321,0.2269458206808374,0.2242288636726866,11.007085486770196,5.487503787825128,26.0794391957587,14713.6253510704,70.8791704303281,17.041682343131683,22.50553209560213,15.703390936440677,15.62856505515361,0.5507431676522295,0.7846153846153846,0.6901197604790419,0.5502494654312188,0.1190140845070422,0.7178065311152187,0.9285714285714286,0.858,0.7378048780487805,0.1278688524590163,0.4922313336210617,0.7095744680851064,0.6343085106382979,0.4930232558139535,0.116591928251121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028556672843819,0.005442549180577,0.0080645161290322,0.0106639042076719,0.0133921762032112,0.0161497260859825,0.0187894420259565,0.0213819146764645,0.0236679134220369,0.0261884050555186,0.0288446754205233,0.0310860615766834,0.0335698128727123,0.03588127458856,0.0381547858565223,0.0406391467019451,0.0430645294897283,0.045462092439242,0.047779014258822,0.0501844787693077,0.0680206015398919,0.0848472790860828,0.1009318725601309,0.1158741847254365,0.1302054765621703,0.1488339611461463,0.1636967619371066,0.177522730660307,0.1913790707865288,0.2033743778960013,0.2187311503662214,0.2331789054381711,0.2475199060174912,0.2615519221304752,0.2724861902770747,0.284608399043147,0.2962896876289465,0.307172720733681,0.3169932788538915,0.3267475117263471,0.3350972870545824,0.343284279373978,0.3504963365634602,0.3577859725581284,0.3649360421369451,0.3713859837145989,0.3779646804090164,0.3832695462001093,0.3885639605600269,0.3930803512565597,0.393207933048088,0.3924228057880199,0.3921088550241322,0.3917687988105033,0.3912785171102662,0.3901433911391629,0.3884600142664658,0.388770035875325,0.3887891379811556,0.3896141053610386,0.3897362686903599,0.3907982371193106,0.3924785250366646,0.3942497310864109,0.3946002076843198,0.3955828027980822,0.3961273666092943,0.3999747131523216,0.4036739461296145,0.4078310602727673,0.4106337963388832,0.411986227673768,0.4166984854270077,0.4153964588144727,0.417008294403661,0.4191054009041161,0.4233858510966944,0.4270621698496546,0.4308965517241379,0.4287896143566246,0.0,2.31225927100053,71.82925009111332,235.8494794523245,349.4309762809496,NC_public_implementation,17 +100000,95717,49418,463.8674425650616,7985,82.00215217777406,6212,64.21011941452407,2522,25.8888180782933,77.33907921770925,79.70579727878369,63.32552877917672,65.0752266354382,77.02914767188355,79.39758402334873,63.2118110126115,64.96541624081244,0.3099315458257052,308.21325543496414,0.113717766565216,109.81039462575382,127.2744,89.37633417188091,132969.48295496096,93375.61161745655,303.50379,188.5648015511129,316420.17614425864,196338.07113795137,371.75797,178.67700179957777,384264.0283335249,183471.96945103112,4491.20162,2035.542455505864,4643964.081615596,2078422.7833152544,1472.56152,650.9201516220597,1517586.8341047044,659209.1161057024,2476.562,1035.2559471466998,2543622.3241430465,1043995.2758730764,0.43509,100000,0,578520,6044.067407043681,0,0.0,0,0.0,24936,259.81800516104767,0,0.0,34257,353.74071481555,1808179,0,64959,0,0,8466,0,0,44,0.459688456596007,0,0.0,0,0.0,0,0.0,0.07985,0.1835252476499115,0.3158422041327489,0.02522,0.3287410926365796,0.6712589073634204,25.21509815088552,4.409174747130888,0.3245331616226658,0.2200579523502897,0.2255312298776561,0.2298776561493883,11.076014654144872,5.608609501944265,26.976266743004423,14710.66298539487,70.66668841446663,16.167490350109187,22.951990136135663,15.883868602541016,15.663339325680766,0.5500643915003219,0.7622531089978054,0.6949404761904762,0.5686274509803921,0.1156316916488222,0.704164077066501,0.8997821350762527,0.8502879078694817,0.7249190938511327,0.165625,0.4961981316532696,0.6927312775330396,0.6408026755852843,0.5254691689008043,0.1008325624421831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002876357154432,0.0061037433588838,0.0085969773555413,0.0112989757762965,0.0140585740007934,0.0167737730295654,0.019232141946668,0.0221135488876864,0.0244381275690709,0.0272434912636473,0.0298850338950024,0.0321374649507513,0.0343299085701356,0.0367390251692199,0.039234509026724,0.0414568317425519,0.0441309009540976,0.0463173407225214,0.0486049728065888,0.0512689614935822,0.0687800854138604,0.0857077085665854,0.1012068911281443,0.1159731204845884,0.1303981017664118,0.148856496075486,0.1639187726780826,0.1787923636324918,0.1927951611524322,0.2054404979075008,0.2205278529167699,0.2353425310259687,0.2486507072905331,0.2613106572985751,0.2731387665198238,0.2851234170898849,0.2962321689882821,0.3062711101103355,0.3160321119147921,0.3254408695851583,0.3341671009206183,0.3411825289078227,0.3487120019879069,0.3559917083048756,0.3628260552776023,0.3692934816073693,0.374249699879952,0.3796001932907754,0.3854604743850205,0.3904463979303608,0.3905355724039484,0.3909065858363185,0.3908032990622528,0.3892594096154961,0.3888623896971142,0.3883435488578582,0.3874507686443908,0.388016624336181,0.3887246476452389,0.3907729911396272,0.3921017907634307,0.3929253161536626,0.3942475733265955,0.3944648366248564,0.3952139231327048,0.396200707454474,0.3984606105861742,0.400361801390079,0.4034546357381003,0.4066243267143661,0.4091517754074895,0.4108811929331676,0.411247351864929,0.4137314361247181,0.4200495521250238,0.4203737191078963,0.4192331866750471,0.4231329311420844,0.4248866213151927,0.4212382445141066,0.0,2.6820661058816007,71.02324472931123,236.74552815963676,346.9564397727875,NC_public_implementation,18 +100000,95687,49087,461.35838724173607,7813,80.27213728092636,6118,63.36283925716137,2474,25.489355920866995,77.30793472821749,79.68422504250199,63.31631099018998,65.07040008712814,76.99942221940432,79.3730348207231,63.203615578576304,64.95866365347412,0.3085125088131661,311.19022177888667,0.1126954116136786,111.73643365401632,128.53236,90.22624299064874,134325.83318528117,94293.10459168826,300.05231,186.62534917614485,313016.49126840633,194476.91867875977,366.92603,176.4338307359843,379637.81913948606,181381.59678271625,4402.35492,2004.9455335142245,4563256.785143227,2057786.4636933163,1466.02011,645.4157183208462,1519129.0039399292,661536.6542172349,2428.40194,1015.5963531609844,2504470.6804477097,1034686.269563628,0.43305,100000,0,584238,6105.719690240054,0,0.0,0,0.0,24648,257.0046087765318,0,0.0,33709,348.4276861015603,1803399,0,64894,0,0,8524,0,0,62,0.6479459069675086,0,0.0,0,0.0,0,0.0,0.07813,0.1804179655928876,0.3166517342890055,0.02474,0.3251578436134045,0.6748421563865954,24.943398683417595,4.474782640838939,0.3257600523046747,0.2250735534488395,0.2321019941157241,0.2170644001307617,11.37643635695907,5.844360836414161,26.53928695941163,14653.201093402582,69.8195884332868,16.451188424589155,22.71651277891592,14.892620097947676,15.759267131834047,0.5550833605753515,0.7785039941902687,0.7009533366783743,0.579066265060241,0.1112676056338028,0.7235968617984309,0.9133064516129032,0.8740740740740741,0.7329192546583851,0.1270903010033444,0.4924904729881192,0.70261066969353,0.6366139022711631,0.5298210735586482,0.1070472792149866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003047607476257,0.0056442787077945,0.0082776250519887,0.0109693670268952,0.0134244569196973,0.0161602378721844,0.018772114080615,0.0212353241449719,0.0238504160788402,0.0264200386934313,0.0289601016935252,0.0315503080082135,0.0342153706922262,0.0367466776553003,0.0389751104140009,0.0410933413280127,0.0435485375027198,0.0460330973194078,0.0484131029532617,0.0506327794341471,0.067468897872207,0.0833577559137534,0.0986906985039551,0.1137204997686256,0.1276461162182676,0.1457273678978925,0.1620096323170602,0.176425507456173,0.189581864410401,0.2025507905519919,0.2175650207312476,0.2323037810353221,0.2460800730704825,0.2587255073477956,0.2705209307442653,0.2833307482661585,0.2948660714285714,0.3054605203925452,0.3156197849852986,0.3246009099139363,0.3324259518817546,0.3404150718123397,0.3483545383467197,0.3549653607405718,0.3620326519680054,0.3677246389345325,0.3748446932141916,0.3807378095481236,0.3859598965575496,0.3915438498920801,0.3907333090113097,0.3906504851684958,0.3910785298821131,0.3911862535767716,0.3909445349028277,0.389725352546339,0.3890012904048047,0.3903592933236287,0.390395976506657,0.3911111111111111,0.3918106544670876,0.3933445056260474,0.3949594046008119,0.3968916358386718,0.398046694686718,0.3993506493506493,0.4014249040929937,0.4039808917197452,0.4066835479154035,0.4094997189432265,0.4100230946882217,0.4114796467800991,0.4131518404907975,0.413966049382716,0.4169836439710916,0.4136238477193822,0.4180955296999387,0.416869918699187,0.4144267690619857,0.4113584036838066,0.0,2.2424430189180327,73.55313099337559,227.4550455477177,338.7525260703159,NC_public_implementation,19 +100000,95698,49358,463.3430165729692,7909,81.11977261802755,6228,64.42140901586241,2493,25.59092144036448,77.38171245272493,79.7551546377832,63.34258245905804,65.09486859280793,77.07468496181583,79.44939766623152,63.22746992186835,64.9833209288787,0.3070274909090926,305.7569715516877,0.1151125371896952,111.54766392922966,129.68978,90.92760854095113,135519.84367489393,95015.16075670456,302.22788,187.0497745248232,315080.4092039541,194724.5966737269,363.1055,173.3400238826998,375407.1558444273,177988.80540066448,4455.53668,2010.2970387232244,4612216.200965538,2057053.4585082503,1510.47773,656.9595806159348,1562617.5259671048,670734.9465751263,2444.8139,1027.5770356967112,2512209.9521411103,1036924.3670742636,0.4364,100000,0,589499,6159.992894313361,0,0.0,0,0.0,24858,259.06497523459217,0,0.0,33510,346.1932328784301,1802528,0,64760,0,0,8642,0,0,47,0.4702292628895066,0,0.0,0,0.0,0,0.0,0.07909,0.1812328139321723,0.3152105196611455,0.02493,0.3158970658970659,0.6841029341029341,25.17576271872137,4.3675405709848585,0.3283558124598587,0.2182080924855491,0.2220616570327553,0.2313744380218368,10.943166457363034,5.5459560917732444,26.42559271357533,14748.953310266355,70.38744044886047,16.141285295102055,23.05518835319797,15.95963656787698,15.231330232683458,0.5581245985870263,0.7777777777777778,0.684596577017115,0.5968077723802915,0.1149674620390455,0.693050193050193,0.9010989010989012,0.8301886792452831,0.7089783281733746,0.1404682274247491,0.5132648694908002,0.7157079646017699,0.6403061224489796,0.5644007155635062,0.1079335793357933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027750769729379,0.00557532260844,0.0081584608515647,0.0109298498669321,0.0135891124356653,0.0162423625254582,0.0188223298496048,0.0214075707460492,0.0241967635423162,0.026778585320913,0.0294844325066893,0.032135523613963,0.0345125462772521,0.0370835822740476,0.0392462410088647,0.0416158315928782,0.0441622735699563,0.0463846920139465,0.0489349752464949,0.0512849907247222,0.0688153401079906,0.0845189861490624,0.0998279190799966,0.1144684790842521,0.1289362914200715,0.1465741543798785,0.1626144817412898,0.1768445263169103,0.1904649970082913,0.2039055793991416,0.2195779171786415,0.2340635185325551,0.2477396611939811,0.2605975764469136,0.272265135010233,0.2842523783682013,0.2956954455180416,0.3068440123331758,0.3170427202978163,0.3261019046964175,0.3347732931843187,0.3429691614488852,0.3502500177737754,0.3582818405423241,0.3655127955629074,0.3724795774821688,0.3781306351432578,0.3832343722127366,0.3884393962968726,0.3933269931843398,0.3928210517805893,0.3932966276668961,0.39374030734527,0.3937484645731874,0.3932415779549537,0.3915052480186052,0.3913139853385899,0.3915505440937515,0.3927272727272727,0.393791083166619,0.3952371122412595,0.3966654125660878,0.397674662197549,0.3986205043221212,0.3985350103609464,0.4009233417668692,0.4020780407044786,0.4053339210932334,0.4080160461679217,0.4104498463257893,0.4103234686854783,0.4106798198584602,0.4135333546121927,0.4161970199953678,0.4190167682926829,0.4203507928880346,0.4182268296456753,0.4149548069022186,0.4110395068646679,0.408859270874167,0.0,2.5721346513555385,68.45602012058279,240.3591136838968,349.8537466699745,NC_public_implementation,20 +100000,95840,49344,463.8877295492487,7815,80.03964941569282,6083,62.719115191986646,2380,24.353088480801336,77.44506122741345,79.72166365771909,63.40474875222951,65.08372691256622,77.14162698137403,79.42167401343778,63.29126466936311,64.97489225638226,0.3034342460394157,299.98964428131103,0.1134840828663996,108.8346561839586,128.89008,90.4185146782034,134484.6410684474,94343.19144219888,303.5065,189.03488861175916,315911.38355592656,196471.05447804587,371.44833,178.26700035380955,382949.48873121873,182485.3492050177,4368.00508,1996.7841517676989,4505138.762520868,2030993.3866524403,1449.19819,638.437711170402,1491439.7537562605,645494.0801308452,2345.9526,1000.0074068820172,2403364.9207011685,1005307.407608745,0.43437,100000,0,585864,6112.938230383973,0,0.0,0,0.0,24982,259.860183639399,0,0.0,34055,350.61560934891486,1804477,0,64944,0,0,8756,0,0,59,0.6156093489148581,0,0.0,0,0.0,0,0.0,0.07815,0.1799157400372953,0.3045425463851567,0.0238,0.3239385065885798,0.6760614934114202,24.97012152218636,4.44320852928944,0.3184284070360019,0.2258753904323524,0.2286700641131021,0.2270261384185435,11.003308318298174,5.552902574712477,25.757942608741207,14593.440598884852,69.23207206710774,16.29231260072944,22.082492414379068,15.297799407810889,15.559467644188352,0.5540029590662502,0.7940320232896652,0.6948890036138359,0.5698769007965243,0.104960460100647,0.7104773713577185,0.9256900212314224,0.8675623800383877,0.7278688524590164,0.1139240506329113,0.4975391498881432,0.7253599114064231,0.6313559322033898,0.525092936802974,0.1023255813953488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029352820907305,0.0054295525684012,0.0080609999695811,0.0105964029069059,0.0131383746214969,0.0156575881820309,0.0181597816344821,0.0209856526660344,0.0232004819818439,0.0257367226323646,0.0282411247299276,0.0305221377803759,0.0330104865297905,0.0353645490454246,0.0378944765554971,0.0406391609979664,0.0432098127023197,0.0455030622078985,0.0477891174119332,0.0499370454001519,0.0672374060209178,0.0840733852936874,0.099788486105003,0.1156889495225102,0.129859744741743,0.147213426219126,0.1623178583531006,0.1771631371465609,0.190424896548782,0.2027829810008027,0.2180016337761726,0.2321715933514056,0.2450758974136246,0.257122888250647,0.2687388753378601,0.2816636415954668,0.2932872435325602,0.3040628653655904,0.3145196964713088,0.3239378570529039,0.3326968918512347,0.3411662824308668,0.3487774554496477,0.3555664717722611,0.3622260556878371,0.3685546995377504,0.3754449736776134,0.3812684741616552,0.3861041926110419,0.3908647555608421,0.3896065370405329,0.3892217218251181,0.3891558286012203,0.389630271519353,0.3884655943204265,0.386554236043095,0.3838668333359705,0.3846633518764666,0.3858842432737342,0.3865997786267718,0.3882580378760862,0.3882733057146821,0.3891469283957882,0.389496570583225,0.3900004821368304,0.3915006917434545,0.3917243737710524,0.3955726054965096,0.4008889199972003,0.4019475357710652,0.4036743482842351,0.406134377178401,0.4068873498951649,0.4100379521338393,0.4102834163155879,0.4095249607155808,0.4098642110191977,0.4143334726284998,0.421289777527457,0.419047619047619,0.0,2.819333445714991,70.9267471907899,231.3485979307345,333.8230043226738,NC_public_implementation,21 +100000,95672,49457,465.61167321682416,7809,80.20110377121833,6109,63.17417844301363,2421,24.897566686177772,77.29747507811412,79.70194744939862,63.28577397120039,65.06634597610548,76.99619942332258,79.39990167073255,63.17554714652298,64.95827468470605,0.3012756547915387,302.04577866607,0.1102268246774116,108.07129139942616,129.89438,91.1336440892882,135770.29851994314,95256.10846359243,305.02948,189.53122948632907,318113.8368592692,197399.15515604493,364.4985,174.61774799165792,376804.5718705578,179261.17232499097,4373.58394,1962.1727998705096,4525765.887616022,2005894.131008076,1439.94228,630.0290627392767,1490441.1112969313,644133.8188427247,2368.7076,987.0914623254166,2437990.6973827244,1000986.457227266,0.43445,100000,0,590429,6171.377205451961,0,0.0,0,0.0,25072,261.3199264152521,0,0.0,33485,345.7542436658584,1793198,0,64497,0,0,8772,0,0,55,0.5748808428798394,0,0.0,1,0.0104523789614516,0,0.0,0.07809,0.1797445045459776,0.3100268920476373,0.02421,0.3209127321276854,0.6790872678723145,25.1126001217184,4.490588134393245,0.3319692257325258,0.218038958913079,0.2200032738582419,0.2299885414961532,11.153879407987356,5.699625773831177,25.97586863232185,14648.789203107135,68.9860748732533,15.81962308646886,22.72726809608743,15.71260742292111,14.726576267775895,0.5457521689310852,0.7642642642642643,0.6745562130177515,0.5651245551601424,0.1145833333333333,0.7203445990722332,0.9069767441860463,0.8232931726907631,0.7414330218068536,0.1884615384615384,0.4884782608695652,0.6962305986696231,0.6261437908496732,0.5129151291512916,0.0968634686346863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025740808301917,0.0052948694540807,0.0081323925072338,0.0105883548419876,0.01336669921875,0.0160321049522296,0.0184916976051568,0.0205776025816466,0.0233183673051944,0.0256628196331834,0.0280738104274153,0.0305421148334206,0.0329934877213197,0.0355611887391286,0.0381299495111147,0.0403405153242239,0.0428374498605943,0.0454484097729137,0.047723087487125,0.0502449192287649,0.0677119786062739,0.0839858470814839,0.0989716684155299,0.1142376268868668,0.1283200776354929,0.1466247738741312,0.1613207947694659,0.1760897115046698,0.1898891181848315,0.2024714420681954,0.2184786946065161,0.2331765164982873,0.246519835304882,0.2593298709267416,0.2700733145912574,0.2828658293018508,0.2940630694076483,0.30479849476661,0.315248150379016,0.3244588148963493,0.3331865381049508,0.3418980667838313,0.34900752503407,0.3572149101738879,0.3639562205529651,0.3703712852943356,0.3764425489212243,0.3819760020423793,0.3873529602911548,0.3924516804217944,0.3921499675394936,0.3918077689243028,0.392306602436951,0.3908854431575429,0.3903538225067526,0.389844843228614,0.3877849257406083,0.3889419278377666,0.3890666438531953,0.3893848052807642,0.3897914009154348,0.3913189771197846,0.3922470847778128,0.3921928920360328,0.3928803993922292,0.3948641510420753,0.3953348597595879,0.3989635668467785,0.4034604519774011,0.406689578005115,0.4119889756545705,0.4144018831585705,0.4188083000190367,0.4192584648383637,0.4235071090047393,0.4213919064104094,0.4230948316001862,0.4205358969114338,0.4219573052398114,0.4153428903525765,0.0,2.525796293416815,66.65382126897399,234.31931745801805,346.59409464639737,NC_public_implementation,22 +100000,95816,49091,460.4658929615096,7864,80.57109459797945,6141,63.38189863905819,2436,24.9018952993237,77.32864418348662,79.63899682102176,63.32870225298407,65.0382236187625,77.02691072506003,79.34034144714842,63.21783755357462,64.93197859392696,0.3017334584265825,298.65537387334484,0.1108646994094471,106.24502483554464,127.2744,89.3550707432885,132832.09484845956,93256.94116148504,300.949,187.546602021438,313362.88302579947,195008.53930600116,368.61607,177.01521941112043,380368.43533439096,181410.299678522,4404.40528,1994.5172378343284,4548100.734741588,2033024.577219888,1466.06032,640.7598933643827,1512916.496201052,651607.4486120166,2398.5865,999.472636216661,2455559.989980797,1003366.1341717978,0.4334,100000,0,578520,6037.8224931117975,0,0.0,0,0.0,24732,257.37872589129165,0,0.0,33934,349.8476246138432,1807567,0,65050,0,0,8599,0,0,56,0.5844535359438925,0,0.0,0,0.0,0,0.0,0.07864,0.1814490078449469,0.3097660223804679,0.02436,0.3284645098985997,0.6715354901014002,25.05288772622841,4.444412079503031,0.3300765347663247,0.2183683439179286,0.2260218205503989,0.2255333007653476,11.219981224091455,5.710133551301418,25.98511669274232,14741.980648583538,69.9148962063378,16.037163952795783,22.928703845490627,15.649776626028167,15.299251782023228,0.5564240351734245,0.7636092468307233,0.697089294523927,0.5877256317689531,0.1195965417867435,0.7143746110765401,0.8949671772428884,0.8793103448275862,0.7253731343283583,0.1262798634812286,0.5004411116012352,0.6957013574660633,0.6338870431893687,0.5438095238095239,0.1178082191780822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027852331999797,0.0053116003730284,0.0082179272561254,0.0110616772306192,0.0134634940004067,0.0164121360211769,0.0188971562531852,0.0216049067733474,0.0242197559629652,0.0266663937948959,0.0293858480706571,0.0317207832190796,0.0341191704519762,0.0364735070363087,0.038948584156578,0.0415181661346473,0.0438260617600794,0.0461388520238885,0.0485692028044663,0.0509492485115949,0.0682792502425133,0.0851281836811509,0.1012441956751884,0.1164706747795748,0.1312469035597204,0.1494006215776232,0.1646906615198625,0.1794877251976631,0.1926539854105031,0.2058498718732241,0.2214946527231801,0.2363870493009565,0.2499293094072865,0.2620346580659268,0.2735876048154587,0.2857601843542615,0.2963264941418248,0.3068770554579447,0.3170742789635705,0.3259797173274596,0.3341992346051258,0.3424747516216438,0.3502838277557418,0.35663554097415,0.363691708267381,0.3701563310365266,0.375062744704347,0.3809803346052245,0.3872313330041323,0.3925765985349247,0.3926028026648288,0.3920211148882072,0.3917303879920702,0.3922771615079307,0.3922500074691524,0.3910913963589317,0.3894921190893169,0.3902076906580445,0.3900034293552812,0.3911579852095905,0.3918280541283195,0.3926719256065332,0.3942621398050895,0.3950248309026763,0.3954450844668183,0.3971330878485007,0.3986455463728191,0.4020830695200709,0.4049694702290615,0.4065657574184272,0.4093500045968558,0.4103912833449627,0.4099363057324841,0.4139473887217465,0.4162301171540146,0.4146518375241779,0.4211826462868612,0.4246406570841889,0.425946547884187,0.4272727272727272,0.0,2.761040394449688,70.78539091499277,231.45518012380316,344.34713062342075,NC_public_implementation,23 +100000,95727,49493,464.60246325488106,7825,80.15502418335474,6170,63.67064673498594,2505,25.62495429711576,77.35098256499538,79.6976704635432,63.33757887846742,65.0703402547879,77.03718801885807,79.38617518706037,63.22012940673332,64.95734726979681,0.3137945461373022,311.49527648283026,0.1174494717340977,112.9929849910809,127.69658,89.6883225335382,133396.6174642473,93691.77194891534,304.02073,189.2889108856555,316842.24931315094,196990.1129220547,372.41625,179.53103516830552,383889.50870705233,183734.80058667035,4482.2191,2035.8178434926533,4629471.904478361,2073954.438373415,1503.03858,668.8283861964693,1546170.1714249898,674772.2780614994,2476.49098,1050.4130853345623,2535988.6761310813,1054399.7198662842,0.4343,100000,0,580439,6063.48261201124,0,0.0,0,0.0,24964,259.9788983254463,0,0.0,34074,350.8414553887618,1805114,0,64874,0,0,8567,0,0,64,0.668567906651206,0,0.0,0,0.0,0,0.0,0.07825,0.1801749942436104,0.3201277955271565,0.02505,0.3192952817666224,0.6807047182333775,25.108449170138844,4.460767031651766,0.3311183144246353,0.2116693679092382,0.2419773095623987,0.2152350081037277,10.94353085089005,5.412565300359201,26.912730565854325,14784.92181880651,69.94221820966446,15.556492405914826,23.092700236857315,14.762732617505316,16.530292949387018,0.5452188006482982,0.7641653905053599,0.6965247185511503,0.5873493975903614,0.1091761553918285,0.7065830721003135,0.9150743099787686,0.8451242829827916,0.7472924187725631,0.1450617283950617,0.4889617486338797,0.6790419161676646,0.6453947368421052,0.5451950523311132,0.0992301112061591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028961145484187,0.0057165445312737,0.0083406897811329,0.0111826602746404,0.0139907067543797,0.0166953405747676,0.0192760522318834,0.0220344345447679,0.0244996831496964,0.0272649117779506,0.0299020009840905,0.0324895294407489,0.0349060774616752,0.0373818301649743,0.0395023263971278,0.0417489275931572,0.0442067330095579,0.0467305237596122,0.0491697599218108,0.0514992394407284,0.0683927546066711,0.0856401565082752,0.1017039794473863,0.1164372759102905,0.1311544544016868,0.1493376748316436,0.1642926084235758,0.1785147893095484,0.1921642787696187,0.2046627399229671,0.2203081232492997,0.2354832424006235,0.2489881185533359,0.2614929947460595,0.273106698822778,0.2851487563899269,0.2969850032407304,0.3084067956902084,0.3183676714444722,0.3276803745180833,0.336650640097318,0.3447068194063766,0.3529042572088341,0.3597697703699262,0.3659132336857455,0.3721093634436171,0.378641384665481,0.3837788276643702,0.3889753566796368,0.394532541561413,0.3940150972951804,0.3932117262044491,0.3921393921393921,0.3912418509430401,0.3910668716142608,0.3895726285345066,0.387536204207645,0.3876940865543442,0.3885061420840134,0.3894162614172663,0.3911004820729135,0.3922763824084185,0.39274727127144,0.393777137843371,0.3956378760034819,0.3983297880721657,0.3985548801468058,0.4022802850356294,0.4063040485687056,0.4101570304071603,0.414811073871723,0.4180793991416309,0.4198322957692796,0.4216913741454797,0.4264817629179331,0.4295664705175934,0.4348099277411247,0.43969434118133,0.4426921993804562,0.4447058823529412,0.0,3.061076893446836,69.54580937425169,238.1802701953364,339.3538172500726,NC_public_implementation,24 +100000,95843,49320,462.2872823263045,8025,82.33256471521133,6209,64.19874169214235,2486,25.51047024821844,77.51248185563044,79.80035978901353,63.42745123530996,65.1115795543026,77.20144165406253,79.48828308687902,63.312172826446144,64.99870663127456,0.3110402015679057,312.07670213450456,0.1152784088638156,112.87292302803564,128.95872,90.49470635160792,134552.04866291748,94419.73472408828,306.60858,190.7294359219048,319174.89018499,198269.7181034658,373.3807,179.2090998610613,386450.1111192262,184443.8620280982,4466.86825,2019.6152760524544,4619141.022296881,2065870.214804328,1478.4417,649.5310474890445,1522722.285404255,657919.18431886,2434.33698,1018.643556680678,2499864.15283328,1028222.383313617,0.43416,100000,0,586176,6116.002211950794,0,0.0,0,0.0,25119,261.45884415137255,0,0.0,34311,354.8615965693895,1805857,0,64833,0,0,8648,0,0,60,0.6051563494464905,0,0.0,0,0.0,0,0.0,0.08025,0.1848396904367053,0.3097819314641744,0.02486,0.3210314643955524,0.6789685356044476,25.29360681337361,4.408637371039912,0.3203414398453857,0.2175873731679819,0.2241906909325173,0.237880496054115,10.947799780532112,5.656752083380565,26.380148824518567,14715.749853475072,69.96031160741755,16.076664337118373,22.407254304361903,16.40365600055259,15.0727369653847,0.546464809148011,0.7764618800888231,0.6852689793866265,0.5626269465132024,0.1077586206896551,0.7112632233976354,0.9049676025917928,0.8405511811023622,0.696969696969697,0.1611721611721611,0.4889178617992177,0.7094594594594594,0.6320054017555705,0.518850987432675,0.0947274352100089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024892234836986,0.0052257927304767,0.0080479226426377,0.0108674696350113,0.0137446920904528,0.016739550493237,0.019445745352365,0.0223119595366291,0.0248639375899849,0.027334083239595,0.0294301367057498,0.0320380682808766,0.0342368631963995,0.0368449219875674,0.0394024680666811,0.0419141266513112,0.0441940357194594,0.0464875176246164,0.0491336685087464,0.0513346381277588,0.0684235775070916,0.0858313903033217,0.1012459263761251,0.116753668245649,0.1314561900449629,0.1502075653064889,0.1647359328464987,0.1789363987281872,0.192764526972947,0.2053377314641277,0.2208289419912675,0.2350196065722526,0.2484146288494114,0.2610310179117519,0.2727971958817259,0.2843741357375961,0.2952820409937473,0.3054516031152017,0.3155604410548145,0.324691809802621,0.3329447073761976,0.3417392419525958,0.3493502354732481,0.3567577905545129,0.364436150359904,0.3702296178774797,0.3760536470235642,0.3805899143672692,0.3863460246939091,0.3916915507965114,0.3909333978260577,0.39124227865477,0.3906840235356897,0.3910811122649129,0.3906291714870517,0.3889594588390138,0.3876829963876038,0.3882198307730222,0.3893722118720837,0.3902356119290838,0.3913076157011593,0.3917458302758662,0.3927061644267777,0.3940650424726001,0.3944775545515717,0.3950089869493865,0.3960672556283841,0.3988896207772655,0.401890756302521,0.4042947933525441,0.4063953750959758,0.4076785338108279,0.4085678549093183,0.4122010293672419,0.413526119402985,0.4192037470725995,0.415973377703827,0.4220494417862839,0.4239869458797933,0.4308851224105461,0.0,2.1931046050143643,71.00397119024495,229.3107579039168,349.76279103002315,NC_public_implementation,25 +100000,95716,49031,460.0066864474069,7817,80.14334071628568,6138,63.333194032345695,2419,24.72940783150153,77.31288813594676,79.66962533553966,63.318020272784125,65.06124888376121,77.00265266891476,79.36396467655622,63.2015409222932,64.95023595790231,0.3102354670320011,305.66065898344164,0.1164793504909269,111.0129258589012,128.84872,90.4265789504313,134614.96510510257,94473.24586347774,300.68143,186.6577420783148,313317.1570061432,194191.6559129402,367.80703,176.54519448526204,379388.8378118601,180741.9920255249,4398.40418,2005.637248957282,4544215.146892891,2044644.973421024,1466.49348,651.9856256064393,1510812.0272472731,660239.2238505066,2375.81078,1007.7693126689992,2432553.9930628105,1009936.2515744248,0.43229,100000,0,585676,6118.862050231936,0,0.0,0,0.0,24772,257.94015629570816,0,0.0,33802,348.37435747419454,1802283,0,64858,0,0,8584,0,0,63,0.637302018471311,0,0.0,1,0.0104475740733001,0,0.0,0.07817,0.180827685118786,0.3094537546373289,0.02419,0.3282600754900767,0.6717399245099233,25.156232885923977,4.472390718558855,0.325187357445422,0.2251547735418703,0.223525578364288,0.2261322906484197,11.199697013231582,5.774339951844412,25.953517915806877,14668.230788307956,69.8095706292693,16.516182554201816,22.60168625973177,15.563221706063914,15.128480109271813,0.555881394591072,0.7655571635311144,0.7024048096192385,0.5778097982708934,0.1093294460641399,0.7197106690777577,0.9225941422594144,0.8978388998035364,0.7103064066852368,0.1309904153354632,0.4951998213887028,0.6825221238938053,0.6355077336919973,0.531584062196307,0.1029272898961284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00334217829002,0.0060714177115113,0.0086851530555301,0.0115894039735099,0.0143306109579845,0.0167922606924643,0.0195676557560925,0.0219905871302998,0.0245874823644877,0.0274725837335272,0.029816161015472,0.0324279919905529,0.0348239262794141,0.0374002163052994,0.0398539136894015,0.0421778269272507,0.0447010095780481,0.0465794361491289,0.0490120632279534,0.0514415512696279,0.0688884712564472,0.0851139526609882,0.100730968087003,0.1146816967759574,0.128694808550127,0.1466730138580345,0.1614981321107149,0.1757034418881945,0.1892755264479321,0.2018405697614552,0.2169113291473252,0.2320649998377167,0.2452358162199791,0.2580175724617859,0.2702824684617247,0.2830416615868864,0.2948494594836058,0.3056528151492294,0.3160209566887522,0.3257411548827341,0.3344843168835382,0.3424219719497061,0.3497192674895169,0.356356740797638,0.3629749492049201,0.3693883848669999,0.374504391468005,0.3797526456712992,0.3850876851383101,0.3899355248699244,0.3896149531699801,0.3897603004528885,0.389338349693078,0.3895704185479305,0.3894490000149363,0.3883584847551586,0.3871954620054494,0.3881519171361076,0.3899846950181424,0.3904107123573665,0.3924822534360369,0.3942010489161864,0.3957071399928241,0.394335757221009,0.3950629258711414,0.3955677068272036,0.3957248482407434,0.3976321568377836,0.3993388782256344,0.4027156613884524,0.4055139927957883,0.4079088759939824,0.4090274250888776,0.4120095583134202,0.4153172032768146,0.4201700802491316,0.4237367436057392,0.4228794413637297,0.4213041034288926,0.4172413793103448,0.0,3.021717987159477,72.84031948248294,223.7871833755656,343.2307885695995,NC_public_implementation,26 +100000,95773,49342,462.4372213463085,7917,81.4008123375064,6195,64.02639574827978,2442,25.05925469599992,77.37208356525132,79.70825174465332,63.35007434272507,65.07842903192888,77.06675874021087,79.40477404959277,63.23775718804174,64.96969574795784,0.3053248250404436,303.47769506055045,0.1123171546833319,108.7332839710342,129.1323,90.61328896693794,134831.63313251126,94612.5619610307,305.32151,189.70859420172752,318163.386340618,197447.82370994697,372.47751,178.80300092858016,384646.54965386906,183475.54814264725,4435.94525,2016.5000209154837,4585530.922076159,2059301.996299046,1467.9812,650.0243216207516,1512812.233092834,658754.3270240584,2399.68096,1006.7516925491024,2463727.7938458645,1015347.047262723,0.43453,100000,0,586965,6128.71059693233,0,0.0,0,0.0,25113,261.5246468211291,0,0.0,34207,352.9387196809122,1801375,0,64837,0,0,8618,0,0,76,0.7831017092499974,0,0.0,0,0.0,0,0.0,0.07917,0.182196856373553,0.308450170519136,0.02442,0.3230548583721764,0.6769451416278236,25.036999341679845,4.46086995393566,0.3220338983050847,0.2256658595641646,0.2261501210653753,0.2261501210653753,11.16502275510835,5.788919929183401,26.219070635518097,14704.297402074337,70.64562470194923,16.640823957204503,22.74009383532235,15.713993762993546,15.550713146428842,0.5620661824051655,0.7575107296137339,0.712280701754386,0.5995717344753747,0.1156316916488222,0.7302158273381295,0.9105691056910568,0.8803088803088803,0.7749287749287749,0.1368078175895765,0.5001104484205876,0.67439293598234,0.6533513879485443,0.540952380952381,0.109689213893967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002937303757723,0.0058797291269615,0.0083213249172941,0.0112757895592283,0.0138919963388589,0.0163503827985013,0.0191521674871826,0.0217360246545706,0.0243521092217135,0.0271415412956708,0.0296881565058771,0.0319789817218978,0.0345376985146733,0.0372014003294892,0.0396910512096025,0.0420623030428268,0.044570955387641,0.0468634954215018,0.0490965201217801,0.0517866066966516,0.0689597595591918,0.0858601177713395,0.1013733095712338,0.1169467124827926,0.1307787938809052,0.1489002049570013,0.1637629554269727,0.1776508868189358,0.1912718736662398,0.2043129398909445,0.2194109167581058,0.2338532715028483,0.2470139439849583,0.2593074492395499,0.2708461673853736,0.2833154262801697,0.2952400080337417,0.3063696273138256,0.3160473107061451,0.3251852785191464,0.3335223131124969,0.3420547849072493,0.349549357746079,0.3563486928809335,0.362306870080653,0.3689912734802544,0.3753148614609571,0.3804244052089565,0.3864657953029263,0.3915587073940546,0.3913553133294709,0.3904339684987333,0.3902097902097902,0.3901095715693663,0.3902308185191256,0.3885380656065145,0.3873848109310454,0.3879817435863637,0.389767026321215,0.3909439919629722,0.3912299183565973,0.3926593485122179,0.3940356932401717,0.3928162532270737,0.3939884504796192,0.3946774447535562,0.3977776498359145,0.4011443102352193,0.4050511848676986,0.40694171052103,0.4079183335632501,0.4111182588184839,0.4149876056696116,0.4204449234085136,0.4267874165872259,0.4299771990879635,0.4285493110388605,0.4244865082561417,0.4245179063360881,0.4266615737203972,0.0,2.559698287974893,73.75604412678416,234.35915120724053,338.4077346950128,NC_public_implementation,27 +100000,95631,48764,458.9515951940271,7713,79.27345735169558,6020,62.228775187962064,2420,24.81412930953352,77.25911226955019,79.6557669294296,63.27736057920528,65.04613677358084,76.96240946852917,79.35989390236395,63.16913941861369,64.94079449276454,0.2967028010210129,295.8730270656531,0.1082211605915901,105.34228081630204,127.60748,89.57766796432473,133437.12812790833,93669.90534059532,297.48893,184.7306191477231,310312.9738264789,192404.0170760142,364.54379,175.2038258870917,376398.3227196202,179415.1400882438,4307.38117,1945.516992907359,4453373.404021708,1983709.0470186328,1486.97122,645.8662825526767,1534694.053183591,655306.805210898,2370.53186,984.4491994668964,2432813.313674436,992726.091461897,0.42949,100000,0,580034,6065.324005814015,0,0.0,0,0.0,24433,254.69774445524988,0,0.0,33516,345.7560832784348,1805036,0,64938,0,0,8546,0,0,54,0.5542135918269181,0,0.0,1,0.0104568602231493,0,0.0,0.07713,0.1795850892919509,0.3137559963697653,0.0242,0.3187029959314511,0.6812970040685489,25.268163866901507,4.430573341649204,0.3229235880398671,0.2245847176079734,0.224750830564784,0.2277408637873754,11.423380444015711,6.060397963807881,25.92721605623779,14569.62370329625,68.21089857284221,15.931972249353898,22.1440387079892,15.254531751312728,14.880355864186376,0.5621262458471761,0.7699704142011834,0.7083333333333334,0.5959153902261123,0.1101256467110125,0.7411233053582956,0.9128540305010894,0.8871287128712871,0.7522935779816514,0.1356589147286821,0.5001118318049653,0.696528555431131,0.645587213342599,0.5469348659003831,0.1041095890410958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027855717512636,0.0052018373741368,0.0080181880924832,0.0108214111526581,0.0132661885141665,0.0157863646548387,0.0181801496828925,0.0209071327215002,0.0235021109986608,0.0259691073055387,0.0286253280839895,0.0309169319231954,0.0336645272772155,0.0360457809232417,0.0384829721362229,0.0407903716111421,0.0429499331820865,0.0453606535255711,0.0477324734761805,0.0500083399357824,0.0673821491645157,0.0832128867383062,0.0983377610702172,0.1128227266983953,0.1270882172801959,0.1451840084723325,0.1598848633548949,0.1735883230343064,0.187461907766004,0.2009127026736819,0.2163374933931634,0.2317761667912833,0.2458714596949891,0.2583437424670742,0.2705856402338149,0.2820695093912096,0.2939557057645176,0.3053597012736482,0.3152368058794753,0.324540533085066,0.3329502582854489,0.3408282773755178,0.3487391965048912,0.3553366055531495,0.3608871213692313,0.3668567329218667,0.3726490357434512,0.3777553574621338,0.3831758697319004,0.3882875124213316,0.3887499154891488,0.3882925749695695,0.3880698571104559,0.3876775180249071,0.3873136115935086,0.3859048500269874,0.3848961570952677,0.3868899062856387,0.388031685896332,0.3878784607911922,0.3887337233440271,0.3898598614539374,0.3902305159165752,0.3911187978706678,0.393350259944384,0.3945858119971697,0.3964330771877509,0.3974948469954019,0.3998087886406288,0.4008496312920808,0.4034085674804237,0.4081610738255034,0.4111061637300426,0.414983164983165,0.4186593861796271,0.418891416257632,0.4180947969739076,0.4200773773162288,0.4218662169758291,0.4229249011857707,0.0,2.6885751483735665,68.33101542591221,222.8947788535704,343.34906958816646,NC_public_implementation,28 +100000,95616,49479,466.0412483266399,7678,78.95122155287818,6045,62.62550200803213,2415,24.8389390896921,77.28554750318864,79.71627362552688,63.27381344368566,65.07151447160176,76.98272952262192,79.4128482428208,63.16318585156389,64.96331358171567,0.302817980566715,303.4253827060809,0.1106275921217729,108.200889886092,127.13646,89.2596605314219,132965.21502677377,93351.7954582516,300.08151,187.19234823882744,313228.11035809905,195164.2598270765,374.88317,180.3154453851482,388171.25794846046,185563.4832897088,4302.05151,1941.2809759453264,4459319.402610442,1990411.3974568655,1451.63575,636.6060286904939,1499032.8396921018,646778.4021806507,2367.64476,984.4950494587682,2437141.838186078,997162.6343332304,0.43431,100000,0,577893,6043.873410307899,0,0.0,0,0.0,24596,256.5888554216868,0,0.0,34290,354.73142570281124,1805529,0,64918,0,0,8665,0,0,61,0.6379685408299867,0,0.0,0,0.0,0,0.0,0.07678,0.176786166563054,0.3145350351654076,0.02415,0.3287111551318559,0.6712888448681441,25.329569058772385,4.391229109245088,0.3285359801488833,0.2319272125723738,0.2251447477253929,0.2143920595533499,11.177745091457034,5.737811158960196,25.67572622172834,14740.18368225868,68.60573251358807,16.716644277548326,22.487536479114883,14.494137245429206,14.90741451149565,0.56095947063689,0.7860199714693296,0.6913393756294058,0.5925925925925926,0.1087435709037472,0.7377892030848329,0.9046610169491526,0.8772277227722772,0.752411575562701,0.1641791044776119,0.4996658498552016,0.7258064516129032,0.6279540850776503,0.5421319796954315,0.0951509606587374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028273206323469,0.0056192881558794,0.0081732526499614,0.0107740001016415,0.0134497212387579,0.0162678646008414,0.0189633891320092,0.0213611474338018,0.023831197389819,0.0263613367061642,0.0288360928171354,0.0311032562345228,0.0336585968379446,0.0361188706668178,0.0386064905161643,0.0409189172415933,0.0433264248704663,0.046079072810543,0.0483991839793496,0.050308757875412,0.06772945849885,0.084266895821762,0.1001902079677171,0.1151755236208858,0.1294367446970337,0.1476942955792327,0.1625045163758474,0.1761074684151607,0.1897413396402084,0.2028110292063355,0.218761803015097,0.2342314990512334,0.2482043792438229,0.2605203173629071,0.2723142409739529,0.2847451981791939,0.2961567276834136,0.3072448082256646,0.3173168735506752,0.3263649186381202,0.3343064340492574,0.3422489338769389,0.3511243951038998,0.3586623584101092,0.3649017267834092,0.3707414087012377,0.3772331222967467,0.3827730449421007,0.3886934053520651,0.3945206566745598,0.3949311056829377,0.3939732296706781,0.393633704912474,0.3924160723604105,0.3924192082482828,0.391718324591223,0.3894219294477063,0.3906920689427458,0.3922477426442819,0.3934013801035078,0.39491381746256,0.3958656022876206,0.3978698724032479,0.3997525865946918,0.4011463396938257,0.4023554043444124,0.4032437680248993,0.4049842271293375,0.4081331647703329,0.4113732366302702,0.4144408301644752,0.4176429679559193,0.4187920314680878,0.4208467556373677,0.4223402237815285,0.4237207077953132,0.4232435778396781,0.4248151191454396,0.4261977291608972,0.4345830145371079,0.0,2.2745125621990057,68.99596324424941,228.7178073447946,339.80083579716444,NC_public_implementation,29 +100000,95790,49260,461.8122977346278,7832,80.24846017329574,6133,63.24250965654034,2444,25.002609875769917,77.35864855579545,79.66311943814642,63.35358995694328,65.05405487966249,77.05109698001661,79.35988684659111,63.23991864522259,64.94576609394187,0.3075515757788452,303.23259155531446,0.1136713117206866,108.2887857206174,128.76204,90.39113735677496,134421.17131224554,94363.85568094264,304.31705,189.39108402131785,316897.72418832866,196922.77322281728,370.97218,178.32939002544217,382761.72878171,182609.2238322508,4403.72788,2003.3890463735745,4544863.701847792,2039105.8667993888,1444.39813,641.4336184490313,1484727.8943522288,646510.3601253015,2387.56328,1003.0945785465442,2444635.9536486063,1004749.8839837448,0.43431,100000,0,585282,6110.0532414657055,0,0.0,0,0.0,25104,261.2381250652469,0,0.0,34110,351.5920242196471,1799764,0,64790,0,0,8697,0,0,52,0.5324146570623238,0,0.0,0,0.0,0,0.0,0.07832,0.1803320209067256,0.3120531154239019,0.02444,0.3313047711781889,0.6686952288218111,25.104676657763605,4.418098662079117,0.3347464536116093,0.2197945540518506,0.2210989727702592,0.2243600195662807,11.045178671302732,5.674616763138848,26.24064937472608,14743.533788561304,69.95468093586565,16.161783947329,23.39104005129381,15.478255608403362,14.923601328839466,0.5602478395564976,0.793026706231454,0.6950803701899659,0.5784883720930233,0.1061946902654867,0.7238622386223862,0.9163090128755365,0.8534798534798534,0.7280966767371602,0.1519434628975265,0.501220323940537,0.7278911564625851,0.6376907763769077,0.5311004784688995,0.0941286113699906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028743193733174,0.0056417060843318,0.0084552449892028,0.0112129237825606,0.0141832442647268,0.016672600579828,0.0192213665811025,0.0217579794558975,0.0245796130192264,0.0272614748815941,0.0297651360735831,0.032227954827526,0.0347874329627879,0.037200160531813,0.0397368746649069,0.0422725770470131,0.0447612937938455,0.0469516177522522,0.0493294969409271,0.0514403506397509,0.0691087022295485,0.0856204845101052,0.1014465408805031,0.1167623131739925,0.1313503941987436,0.1491745407656372,0.1641572652472644,0.1791467177359293,0.1924399359316604,0.2045854244412988,0.2200002153803077,0.234355894605854,0.2488470240167072,0.2612097074206184,0.272445956809497,0.2845834903882397,0.2963053939684914,0.3072733206540699,0.3170698482251308,0.3264300367895659,0.3348384855852727,0.3426389994847534,0.3502037721542981,0.3580041031301364,0.36467940138703,0.3710523392859347,0.3767771027744723,0.381771171653102,0.3866415926334219,0.3924368636784345,0.3908227421139264,0.3898618274083675,0.3898140046851627,0.3900270751589036,0.3899325159771776,0.3885468642051125,0.3874499459734316,0.3884151671587142,0.3898261407366685,0.39143257921807,0.3921798041176804,0.3929452981925312,0.3943209667877968,0.3950553405920993,0.3965909641179604,0.3978698224852071,0.3980495943846729,0.4009538950715421,0.4058418512208972,0.4058792777576708,0.4084383914603846,0.4118819347193795,0.4164217252396166,0.4199023482910951,0.4231208372978116,0.4255522388059701,0.4270412915243713,0.4308741475511469,0.4297896532120523,0.4205682272909163,0.0,2.969694010961279,71.40763658709075,236.2406226843137,334.3938846851667,NC_public_implementation,30 +100000,95847,48924,458.5120035055871,7841,80.4302690746711,6133,63.257065948856,2501,25.603305267770512,77.41454581429173,79.70261987564723,63.37712166936033,65.06764517089418,77.10316529470842,79.39351570100416,63.26281183706091,64.95747898061565,0.3113805195833095,309.1041746430676,0.1143098322994191,110.1661902785338,128.32072,90.01098141801103,133880.7891744134,93911.10980835187,301.20682,187.22902587310656,313552.1195238244,194635.7276420822,365.77628,175.25399164373505,376968.4497167361,179148.00677208055,4457.41424,2014.8905906398224,4602775.475497408,2054631.3906386264,1494.89585,659.4092707944558,1540897.4824459818,669212.0997656762,2455.43044,1027.735806744003,2516909.9502331843,1034186.839856759,0.43327,100000,0,583276,6085.490417018791,0,0.0,0,0.0,24832,258.32837751833654,0,0.0,33609,346.0306530199172,1808411,0,65024,0,0,8661,0,0,62,0.6364309785387128,0,0.0,0,0.0,0,0.0,0.07841,0.1809726036882313,0.3189644178038515,0.02501,0.3169729206963249,0.683027079303675,25.300773208361395,4.450060663422604,0.3300179357573781,0.2075656285667699,0.2307190608185227,0.2316973748573292,10.9962705447853,5.592904762309812,26.76305550794137,14711.2045604109,69.35074086602965,15.130828137337424,22.809021089119334,15.682957045569331,15.727934594003557,0.552421327246046,0.7902592301649647,0.6926877470355731,0.5679099225897255,0.1222614840989399,0.7054794520547946,0.9191489361702128,0.8514851485148515,0.7,0.1511254019292604,0.498122376850011,0.7148194271481942,0.6398946675444371,0.5295186194368756,0.1141304347826086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027737004605962,0.0054911098728534,0.0079702282567914,0.0107100075122327,0.0132025612358979,0.0159037027238779,0.0183577832110839,0.0209310865396385,0.0236679741766772,0.026521970378856,0.0291005561985926,0.0319010349885628,0.0341954111566638,0.0362631367664769,0.0386943118433669,0.0411906876820425,0.0439618424864462,0.0460146542164554,0.0484485461283725,0.0508758425563784,0.0677962567123716,0.0846405467827395,0.1000691432522471,0.1152061152061152,0.1296834523282997,0.1475633198842392,0.1637956606492075,0.178797316977241,0.1926803243704652,0.2056961686357258,0.2211307762655333,0.2354022491349481,0.2489974678591999,0.2613632637894668,0.2732998450157732,0.2858850483115848,0.2970534439685938,0.3079932106606117,0.3178600598965423,0.3268655861634499,0.3356165176040449,0.3435514631035814,0.35076587987405,0.3572310902701989,0.3646523732503131,0.3702771402482663,0.3768985914080906,0.3817382439148719,0.386327338830098,0.3911754977839518,0.3910655981003265,0.3899772523609292,0.3889955124043916,0.3890127388535032,0.388310624674261,0.3862408691915782,0.3847361161754681,0.3857779531961781,0.3862215446806324,0.3873345259391771,0.3887323943661971,0.3898698515990794,0.3917566942704611,0.393115048217089,0.3957286432160804,0.3969010103125163,0.3982551487414187,0.4020800504254648,0.4067605236230197,0.4111648738353261,0.4138372837924407,0.4158215010141988,0.4194747118473263,0.4220092782721119,0.424336826205985,0.4282305214174919,0.4312238898344422,0.4291314214978337,0.4270601336302895,0.4375241779497099,0.0,2.855545745019956,70.59675797320239,223.86289974764708,347.37201574789566,NC_public_implementation,31 +100000,95706,48884,459.0098844377573,7938,81.57273316197521,6224,64.41602407372578,2482,25.45294965832863,77.36002699221102,79.73182104422482,63.33690834044432,65.08871478775087,77.05082679440923,79.42374615870229,63.22201394240613,64.97746517717064,0.3092001978017862,308.0748855225295,0.1148943980381957,111.24961058023077,129.02472,90.58124754422096,134813.61670114726,94645.31747666914,304.4473,188.93865801840684,317417.9152822185,196727.2238734483,370.26951,177.05627450370648,383553.0896704491,182400.95544937177,4450.61061,2014.336416330046,4606526.393329572,2060980.831534776,1450.5545,634.1795329316177,1502380.655340313,649432.3103240954,2436.35412,1023.7741017990656,2501450.483773222,1032392.5092604336,0.43204,100000,0,586476,6127.891668233966,0,0.0,0,0.0,24988,260.4329927068313,0,0.0,34046,352.38125091425826,1800765,0,64720,0,0,8667,0,0,68,0.7000606022610912,0,0.0,2,0.0208973314107788,0,0.0,0.07938,0.1837329876863253,0.3126732174351222,0.02482,0.3259330373214928,0.6740669626785072,25.270006878665235,4.445669008335717,0.3338688946015424,0.220758354755784,0.2226863753213367,0.2226863753213367,11.050823362844117,5.628941283378402,26.58062310265788,14589.343219342676,70.54683523687767,16.25790457259178,23.74632679699569,15.325415682480068,15.217188184810148,0.559607969151671,0.7671033478893741,0.7170356111645814,0.5735930735930735,0.1038961038961039,0.7129217059197963,0.9059633027522936,0.8666666666666667,0.7161290322580646,0.1228070175438596,0.5078444014614227,0.7025586353944563,0.6644993498049415,0.5325278810408922,0.0990009082652134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030385593177421,0.0057273768613974,0.0085546411211349,0.0113269265933887,0.013680377558078,0.0164046271027656,0.019051987767584,0.0216579232072506,0.0241758241758241,0.0266692602223632,0.0291681190920461,0.0315801361354373,0.0339051027333868,0.0363900419211634,0.0385682889835842,0.04089080964837,0.0435106911984087,0.0459395499460267,0.0482837528604119,0.0506945095709983,0.0681984334203655,0.0842046869930187,0.1000514052517283,0.1148473820392536,0.1291791870947335,0.1471782293362654,0.1621349232450324,0.1771874368061985,0.190488906929297,0.2025664134586498,0.2179478890541152,0.2313212325875897,0.2453197364701789,0.2574955715441643,0.2690310657396814,0.2809456809545439,0.2919145136990123,0.3034492844928449,0.3128190584231424,0.3222280778131659,0.3311927242432657,0.3396021192238869,0.3479835274069866,0.3547590801787875,0.361588856611525,0.3681355263482356,0.3751033601443283,0.3799859952893246,0.3854689221595696,0.3893573713288746,0.3886001970602923,0.3885576259489303,0.3888951729208494,0.3881255350328637,0.38704142982888,0.3859738104020656,0.384742398983885,0.3849912797393793,0.3854696899583526,0.3855341857383331,0.3862456747404844,0.3878348878745783,0.3886846362318536,0.3903467456152155,0.3920162283561544,0.3922313313601718,0.3921230910552302,0.3957024058909414,0.3988230289279637,0.4027666076885958,0.4059556786703601,0.4084893479664299,0.4098683792204489,0.4113268360064461,0.4119645216078505,0.414590535224699,0.4130066265988596,0.4225352112676056,0.4258692628650904,0.4262422360248447,0.0,2.2896428907545303,69.25952445503809,240.24582342752208,350.05885085010976,NC_public_implementation,32 +100000,95740,49275,462.57572592437856,7831,80.42615416753708,6110,63.11886358888657,2415,24.764988510549404,77.33346816806463,79.6941661376427,63.32120940122799,65.06968037719506,77.03114056700782,79.39406414999264,63.20977397727444,64.96247459674915,0.3023276010568025,300.10198765005214,0.1114354239535515,107.20578044590924,128.34426,90.04597200938936,134054.7733444746,94052.4099070098,300.75131,186.48324366000057,313461.3954459996,194110.62865988765,365.70313,175.22171963799607,377829.9352412784,179881.32543268733,4380.54901,1978.1028118809345,4527348.318362231,2018218.2571313856,1494.6966,648.7219879317546,1545690.9337789847,662074.2510254374,2371.57092,989.5873199532772,2433744.8924169624,995827.2599256854,0.43451,100000,0,583383,6093.3987883852105,0,0.0,0,0.0,24747,257.7501566743263,0,0.0,33607,346.8456235638187,1807083,0,64948,0,0,8701,0,0,71,0.7311468560685189,0,0.0,1,0.0104449550866931,0,0.0,0.07831,0.1802260017030678,0.3083897331119908,0.02415,0.3282461240310077,0.6717538759689923,25.13932474785608,4.484284499784517,0.3217675941080196,0.2235679214402618,0.2260229132569558,0.2286415711947627,11.193746688558065,5.704550947243093,25.703395571237355,14699.90217147296,69.18899952869488,16.295399732551537,22.17645766561617,15.58557218352832,15.131569946998845,0.5587561374795418,0.7957540263543191,0.6917599186164801,0.5833929849677881,0.1100651701665459,0.7289902280130293,0.9297872340425531,0.8806941431670282,0.7460815047021944,0.1333333333333333,0.5016393442622951,0.7254464285714286,0.6338870431893687,0.5352504638218923,0.1040145985401459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029586098586554,0.0054557254695168,0.0080181880924832,0.0107399053018756,0.0134354467972579,0.0160168619983911,0.0186049830771112,0.0213202424935192,0.0236396713135194,0.0263580809269855,0.0289513342833417,0.0313741594374005,0.0338430529703937,0.0364362879887951,0.0389674703642947,0.0415512465373961,0.0438415739062904,0.0461761959115907,0.0485116912552114,0.0510374135488709,0.0678017412364031,0.0841514726507713,0.0993189855087671,0.1139461506100126,0.1285726338880803,0.1462924580178503,0.1623267757475435,0.176366016968097,0.1901038328419433,0.204337752606513,0.219642279926732,0.2345995670995671,0.2478596216398507,0.2602350057985602,0.2719210413388642,0.2842997175610566,0.2960105403021404,0.3062419091574267,0.3162937483681277,0.32542264168232,0.3343591286139037,0.3419088399082783,0.3496253506788669,0.3570615102437153,0.3642932611150917,0.3713247521093798,0.3775634047770979,0.3828996755518798,0.3882907743531942,0.3929505986836888,0.392740031037042,0.3922297995453606,0.3926511037449749,0.3916607528205425,0.3918316868564958,0.3903125576816588,0.3880416633537409,0.3880670855390095,0.3888631488631489,0.3896754050707864,0.3916650987770461,0.3924608452269885,0.3937214827897979,0.3949255005955457,0.3965224972150918,0.3977428180574555,0.398796044145048,0.4022179974651457,0.4043911609264711,0.4059445601666399,0.4095570988364071,0.4109081139172488,0.411546813130668,0.4152916569834999,0.4150004783315794,0.4158067257496661,0.4180430040511063,0.4187538811840198,0.4309173272933182,0.432421875,0.0,2.6756889712089538,67.37630422279717,233.15322445655343,347.1975145267661,NC_public_implementation,33 +100000,95779,49333,462.9720502406582,7795,79.91313335908707,6137,63.31241712692762,2447,25.099447686862465,77.34149214859087,79.6786451828716,63.33904717832892,65.07150228816283,77.03382489692378,79.37157782328752,63.22554770070808,64.96099050876764,0.3076672516670982,307.0673595840816,0.1134994776208415,110.5117793951962,129.1103,90.58720601252058,134800.2171666023,94579.40259610204,303.76711,189.61550687812732,316403.21991250693,197221.05893512847,374.78323,180.61402064635743,385412.470374508,184157.3122295712,4401.03035,2005.0155069284965,4548625.951408972,2047034.044102354,1502.92164,660.2517709802743,1553883.9098340974,674077.4083883466,2400.38512,1013.2420409029958,2465316.2593052755,1024073.8002676064,0.43419,100000,0,586865,6127.282598481922,0,0.0,0,0.0,24958,259.7855479802462,0,0.0,34397,353.3551195982418,1800640,0,64750,0,0,8576,0,0,69,0.699527036197914,0,0.0,0,0.0,0,0.0,0.07795,0.1795296989797093,0.3139191789608723,0.02447,0.3334552548158985,0.6665447451841015,24.926306677451997,4.451784126312237,0.3322470262343164,0.2216066481994459,0.2281244907935473,0.2180218347726902,11.300941347710792,5.889562830046796,26.42019432882606,14668.491558559735,69.96230678176681,16.17388513798773,23.05292939588326,15.122832040614025,15.612660207281785,0.5629786540655043,0.7963235294117647,0.6851397743992153,0.5904334828101644,0.1321428571428571,0.721432983323039,0.9073684210526316,0.8752436647173489,0.739938080495356,0.1590909090909091,0.5061974324922532,0.7367231638418079,0.6212319790301442,0.5428571428571428,0.1245421245421245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002481842033287,0.0048863071885486,0.0075498503221878,0.0103137828720074,0.0131352698784148,0.0160739933381548,0.0186439295039164,0.0213011467491754,0.0241428323090609,0.0265618120193735,0.029294151423181,0.0318135140685972,0.0341390660357951,0.0362933965179767,0.038673463070351,0.0410973063485828,0.0438001553196997,0.0462452930009647,0.0485260346852042,0.050990557689705,0.0676843137664072,0.0846202908855174,0.1007471679922872,0.1158130346146571,0.1301071756014795,0.1481982600974599,0.1636912965122442,0.177874901635509,0.1913594740549424,0.2040943193997856,0.21859964479845,0.2339376641909642,0.247696653628857,0.2603877510874079,0.272338413494315,0.2842115752992371,0.2947708774668302,0.3048610643125098,0.314580265095729,0.3238900199007251,0.3324822662261142,0.3407447218684644,0.3475720115928313,0.3544267401461603,0.3613830123144932,0.3681674799152249,0.3745588787385809,0.3811080304225065,0.3855076966895819,0.3900100242692835,0.3892550510155945,0.3889440035273369,0.389101432907461,0.3893484780435507,0.3896665325045093,0.3888641356953001,0.3873465623608726,0.3885992410493318,0.3902087090955939,0.3919338902362346,0.3928234539486095,0.3939955006072189,0.395163164008871,0.3962868551061382,0.3977457672407511,0.3995834102354523,0.3990035051128299,0.4020301642703897,0.404930332261522,0.4068070005645616,0.4096850723356747,0.4106813996316759,0.4154934104789456,0.4185792349726775,0.4243035542747358,0.4295026557218735,0.4325595984943538,0.4333958724202627,0.4373054061703934,0.4322429906542056,0.0,2.966959403755034,70.7624119216745,235.90617529221345,337.86733895141265,NC_public_implementation,34 +100000,95702,49137,461.2756264236902,7841,80.7193162107375,6089,63.04988401496312,2410,24.816618252492116,77.3419109081298,79.70967102352361,63.33255108723839,65.08055400952605,77.04469756291641,79.41093417191321,63.22384379507307,64.97365682675891,0.2972133452133931,298.73685161039987,0.1087072921653131,106.89718276714189,128.9673,90.50698798005416,134759.25268019477,94571.6787319535,302.44474,188.03023576325077,315448.9247873607,195896.03745297983,370.3363,177.15136190889226,383374.06741760887,182401.4683528053,4388.00125,1982.5059654256795,4548454.473260746,2034927.8128207151,1482.55161,651.6214809902324,1534713.757288249,666466.3549249045,2369.87788,986.033519113657,2442667.718542977,1002198.1504169812,0.4337,100000,0,586215,6125.420576372489,0,0.0,0,0.0,24879,259.3571712189923,0,0.0,34057,352.15564982967965,1802271,0,64797,0,0,8647,0,0,65,0.6791916574366262,0,0.0,1,0.0104491024221019,0,0.0,0.07841,0.1807931750057643,0.3073587552608086,0.0241,0.3225650332728372,0.6774349667271627,25.14530635814179,4.433795400562175,0.3319100016423058,0.2218755132205616,0.2258170471341763,0.2203974380029561,11.231763492120376,5.826542547646403,25.7023159376016,14710.015138879598,69.22294549996265,16.1189996147409,22.96784875930584,14.894528832035622,15.24156829388029,0.5688947281983905,0.7786824574389342,0.7214250371103414,0.5842026825633383,0.1236363636363636,0.7344632768361582,0.9222462203023758,0.9068441064638784,0.7466216216216216,0.1461038961038961,0.5102313167259787,0.7038288288288288,0.6561872909698997,0.5382409177820268,0.1171508903467666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026328580686973,0.0053309009830748,0.0080848042199229,0.0110506215974648,0.0136860942774637,0.0165248024761749,0.0191239283566266,0.021597125826733,0.0241414554374488,0.0265282937762903,0.0289390056381342,0.0318311102896631,0.0344494261856772,0.0367287225822404,0.0391608535930986,0.0414935185759474,0.0436101905550952,0.04603522171833,0.0483191748203757,0.0509806373621792,0.0683028720626631,0.0848170827445438,0.1006903642773208,0.1155589679943624,0.129204772000886,0.1471045698384315,0.1625200258877701,0.1778352710702269,0.1910653802181833,0.203023410510053,0.21918590247633,0.233637475511684,0.2476121059158852,0.2611848076902046,0.2727012727012727,0.2852888096635259,0.29677131545196,0.3067237754769372,0.317169173529345,0.3263442213930917,0.3348142491872317,0.342486276437609,0.3505215671880365,0.3577475597764827,0.363942518115061,0.3702469547187974,0.3765362427890644,0.3826643056422538,0.3875285328906412,0.3926039369974783,0.392176962503372,0.3919043618383902,0.3918201158089012,0.3914727561786385,0.3908336555334146,0.3887986266515434,0.3879168251553189,0.3889857551732079,0.3886594581626882,0.388545196980293,0.3894663503182314,0.3908568930920072,0.3918767802510813,0.3926358248642315,0.3947521442070068,0.3960247860106076,0.3974757058248519,0.4015555555555555,0.4044624458182335,0.4077892786660759,0.4100460829493088,0.4100215517241379,0.4163207968839793,0.4161760148744964,0.4183125599232982,0.4207221350078493,0.4263975155279503,0.4256559766763848,0.4196479273140261,0.4231974921630094,0.0,2.2277145010454977,70.72042542181094,230.4976461444502,338.6451648344359,NC_public_implementation,35 +100000,95701,49086,460.507204731403,7881,80.81420256841622,6151,63.62524947492712,2448,25.119904703190144,77.33810060160408,79.7195839429601,63.31256206328344,65.07463344491227,77.03052882869942,79.4129929380311,63.19810951804023,64.96338077038509,0.3075717729046658,306.591004929004,0.1144525452432034,111.25267452717937,129.74016,91.02889367805965,135568.2385763994,95118.01723917163,303.26225,188.66488855583032,316199.9143164648,196454.76083822607,370.91981,178.64816983365458,383249.9869384855,183452.30946228156,4374.58214,1996.9076148306344,4528217.186863251,2043739.3383295112,1473.60967,658.3431860725228,1520668.7913396934,668802.0995658162,2390.87582,1010.4777829550964,2455773.0640223194,1020016.3114348656,0.43129,100000,0,589728,6162.19266256361,0,0.0,0,0.0,24929,259.78829897284254,0,0.0,34140,352.4937043500068,1794606,0,64590,0,0,8643,0,0,67,0.700097177667945,0,0.0,0,0.0,0,0.0,0.07881,0.1827308771360337,0.3106204796345641,0.02448,0.3263018322082932,0.6736981677917069,24.981933283291877,4.4167788074128,0.3290521866363193,0.228905868964396,0.2225654365143879,0.2194765078848967,11.08303642086803,5.6730069860536965,26.12453376792436,14647.662313411854,69.87967745696515,16.835967563151883,22.87280275033456,15.036436224399182,15.134470919079533,0.5534059502519916,0.7833806818181818,0.6936758893280632,0.5496296296296296,0.1132213294375456,0.718882817243473,0.9304174950298212,0.8623326959847036,0.7041800643086816,0.1483870967741935,0.4928952042628774,0.7016574585635359,0.6349100599600267,0.5033686236766122,0.1029272898961284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026149885467555,0.0054169202678027,0.0081933924909131,0.0105392605240156,0.0133494775185437,0.0161541673881379,0.0185015196948371,0.0212752918586005,0.0239300506212609,0.0263758767214457,0.0287841343738143,0.0314312998654851,0.0338789611137387,0.036557611706674,0.0389527326744929,0.0413562194504438,0.0438784490345291,0.0464792970006328,0.0489868903928723,0.051429226217759,0.0693555293306737,0.0856739073540957,0.1009045310499695,0.1157822771496187,0.1297763059366991,0.1474455952519492,0.1627363997198225,0.1760264124820278,0.1896444833999615,0.2022685324290681,0.2177342874385723,0.2321977736388443,0.245979464509315,0.2588035684965245,0.2703818710359408,0.2823273711174442,0.2940190425103929,0.3047317617111384,0.3147967184055633,0.323739934387116,0.3315949889325406,0.3392936654870989,0.3474369309559939,0.3547369052618948,0.361641035623905,0.3678460644858312,0.3739003852573193,0.3787157462124596,0.3841020914201145,0.3895126628314488,0.3903215364695727,0.3899085731621551,0.3897092038396386,0.389550963668747,0.3893440181124881,0.3881076428911737,0.3865065751858205,0.3879604169067887,0.3893500257245755,0.3901219074937253,0.391176581396225,0.3919998410301248,0.3943127162264788,0.3961830513057389,0.3978554485162415,0.3995923060840476,0.4012178039507161,0.4051895577511916,0.408927691332817,0.4123703144254084,0.4160643665621165,0.4198525902752001,0.422830591485621,0.4219828567093984,0.4220535881581412,0.422071751009741,0.4267418813843573,0.4292929292929293,0.42888522789676,0.4371395617070358,0.0,2.4680619612791044,72.70909006631267,226.79092948175813,343.2351399167528,NC_public_implementation,36 +100000,95651,48922,459.7338240060219,7673,78.8909682073371,5999,62.14258084076487,2371,24.380299212763067,77.27782633283482,79.68748079199808,63.2892740309558,65.07160571913968,76.98417508161747,79.39257895459548,63.1815893510729,64.96603606465706,0.293651251217355,294.90183740260534,0.1076846798828938,105.5696544826219,128.27716,90.06079484917622,134109.5858903723,94155.6228886015,301.86992,188.06454138119275,315021.3588984956,196042.22680421028,364.66063,175.18658794527315,377741.40364449925,180406.29146053275,4295.58033,1932.314545939396,4453072.325433085,1982355.046930397,1461.74596,637.2195661965359,1512291.5494871982,650276.1039576536,2330.17792,967.8980865044772,2399239.777942729,981233.2786743422,0.4306,100000,0,583078,6095.890267744196,0,0.0,0,0.0,24848,259.1713625576314,0,0.0,33493,346.6560725972546,1802099,0,64782,0,0,8757,0,0,62,0.6377350994762209,0,0.0,0,0.0,0,0.0,0.07673,0.1781932187645146,0.3090056040662062,0.02371,0.3291718170580964,0.6708281829419036,25.19352579713595,4.415087293818725,0.3293882313718953,0.2195365894315719,0.2262043673945657,0.224870811801967,11.29702859761655,5.882116064668644,25.303188997474496,14620.39657281525,67.8931539583097,15.529852495726418,22.36190695875445,15.126409621837707,14.87498488199112,0.5660943490581763,0.7760060744115413,0.6918016194331984,0.6019273535952557,0.1436993367722918,0.7387328543435663,0.916083916083916,0.8697318007662835,0.7523809523809524,0.1773584905660377,0.5069382273948075,0.7083333333333334,0.6279229711141678,0.5560928433268859,0.1355311355311355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026447520418296,0.0054458056141489,0.0081720910401396,0.0107625232476599,0.0133984434610102,0.0159533827080001,0.018796532381438,0.0214080709244487,0.0241300300730345,0.0267465683261626,0.0292002994902511,0.031452225897241,0.0340385248600592,0.0366297346044833,0.0388189138963452,0.041288721104618,0.0437287573572079,0.0462790866707508,0.0485967303870047,0.0506527088459774,0.0679638027962966,0.0842304792225201,0.0996473403585373,0.1149017668290732,0.1292405744494507,0.1471394548822439,0.162815393764336,0.1773454646182693,0.1908276112858029,0.2031994846467683,0.2179690278361514,0.2333979405108659,0.2473060931275442,0.2594574483218979,0.2702571780870177,0.2821868315767308,0.2934022736917339,0.3038682738517293,0.3138472365687821,0.3222563209967021,0.3316134704596198,0.3398638532796856,0.3474236200712603,0.3548700480947983,0.3615836383312459,0.3681994938584038,0.3742149796302099,0.3802969476836806,0.3847062335336336,0.3890137493389741,0.388542947064147,0.3879677223235505,0.3889407702974219,0.3887236049633553,0.3889685241593502,0.386401428835376,0.3849658314350797,0.3860829599748706,0.3869680393573468,0.3883324041937166,0.3897595473833097,0.3909424042061659,0.3922995780590717,0.3943411515779048,0.3964247650421471,0.398164175190139,0.3992409648946263,0.3990771678599841,0.4016475287069396,0.4043625514071446,0.4065217391304347,0.4087532299741602,0.4111309447915338,0.4154084397986837,0.4117422434367542,0.4174028803098148,0.4166797058363323,0.419408579758434,0.4239774330042313,0.4269096549050019,0.0,2.2356558762619607,67.80676906039311,225.38121748651216,339.80829775008146,NC_public_implementation,37 +100000,95813,49018,460.3028816548903,7698,78.92457182219532,6026,62.25668750587081,2406,24.735683049273064,77.39792083527668,79.7022760790489,63.37134666233784,65.07185539306317,77.10263679280372,79.40635644098037,63.262177530876045,64.96502863649167,0.2952840424729572,295.9196380685256,0.1091691314617904,106.82675657150752,129.4183,90.79439421327636,135073.8417542505,94762.08261225132,304.34467,189.51436139946424,317006.7527371025,197158.39332811243,368.18116,176.7826254949241,379619.0809180383,180948.33882092428,4349.56417,1960.190602216625,4498088.797971047,2004506.1555171453,1434.50409,621.029699429841,1483599.782910461,634666.7593948991,2360.02374,987.7429240394,2428069.3434085147,1000472.7444607334,0.43168,100000,0,588265,6139.720079738658,0,0.0,0,0.0,25086,261.1858516067757,0,0.0,33855,348.7940049888846,1800216,0,64675,0,0,8351,0,0,51,0.532286850427395,0,0.0,0,0.0,0,0.0,0.07698,0.178326538176427,0.3125487139516757,0.02406,0.3168023686158401,0.6831976313841599,25.179109034013575,4.438337719764761,0.3154663126452041,0.2230335214072353,0.2266843677397942,0.2348157982077663,11.164075043112325,5.802790947243739,25.659219180459427,14557.08762352988,68.22078647529244,16.059121441738156,21.59146309798377,15.61519825077242,14.955003684798092,0.5532691669432459,0.7849702380952381,0.6917411888479748,0.5780918727915194,0.1068814055636896,0.7113534316869788,0.9050772626931568,0.861328125,0.7147335423197492,0.109090909090909,0.4980971569285874,0.7239057239057239,0.6292296616270698,0.5383211678832117,0.1063244729605866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030068032720498,0.0055527971709106,0.008245854252244,0.0108038950884924,0.0135918184775536,0.0162219372697482,0.0187992908235006,0.0213720989543483,0.0238061180701718,0.0264778703116367,0.0288097043214556,0.0311980630732297,0.0339038773707029,0.0363052605581625,0.0388262455937828,0.0412274271318389,0.0436469346796052,0.0459982172840529,0.048141225337487,0.0502700846161051,0.0670352597538076,0.0835721607430496,0.0989073215746314,0.1136485506103523,0.1275866794573112,0.1453009526024761,0.1601357442070099,0.174112988215757,0.1875394001559979,0.2005728507369821,0.2165839051240346,0.231348450752986,0.245150065245759,0.2578955426271817,0.2697485646406652,0.2822068904417546,0.2937718887327399,0.3038104235553456,0.3136334251981899,0.3223949272044684,0.3310972577231353,0.3389489682586076,0.3465101695516878,0.3535660818013054,0.3593401261523532,0.3657915143458513,0.3717227762365349,0.378333735689872,0.3830346166289227,0.3878287913130567,0.3882677059535008,0.386868936708165,0.3872838880441516,0.3873097033249559,0.3874260750690956,0.3855405095249024,0.384711541504478,0.3855486963945623,0.3859322091869891,0.3863087248322148,0.3872972364073295,0.3893380895759017,0.3911152205434257,0.3925157982323971,0.3946112282232076,0.3954245790980485,0.3957678669242079,0.4003758799732424,0.4046367961371866,0.4073390816121917,0.4100337229177253,0.4117964491932437,0.4133981700684624,0.4154940466986238,0.415170042032862,0.413618864292589,0.4170940170940171,0.4119329791581528,0.4205581652390163,0.4267638036809816,0.0,2.528015120771998,68.67361262137538,228.60130235145127,334.6855211800634,NC_public_implementation,38 +100000,95539,49114,462.4603565036268,7767,79.81033923319272,6078,62.88531385088812,2417,24.848491192078622,77.19945181010942,79.67000752259948,63.224607941291474,65.05340136543771,76.89659913370474,79.36662497436117,63.11324354329001,64.94480446452278,0.302852676404683,303.3825482383037,0.1113643980014629,108.59690091493236,128.44084,90.1118113121594,134438.12474486858,94319.39973430682,301.4485,187.3604341449581,314810.7160426632,195395.53914627328,366.22777,175.75863671855652,377998.1787542261,179975.89184938787,4346.49841,1971.4625212485164,4502176.922513319,2016243.545827899,1456.06569,640.598108333211,1505423.5966463955,651879.4087579013,2372.38236,992.6338236020966,2441857.3357477053,1004297.0686140916,0.43183,100000,0,583822,6110.823852039482,0,0.0,0,0.0,24797,258.79483771025446,0,0.0,33633,346.8007829263442,1797623,0,64651,0,0,8706,0,0,61,0.6280157841300411,0,0.0,1,0.0104669297355006,0,0.0,0.07767,0.1798624458699025,0.3111883610145487,0.02417,0.3226984900146127,0.6773015099853872,24.97287781385516,4.425069457946956,0.3321816386969398,0.2178348140835801,0.2227706482395524,0.2272128989799276,11.032733941006525,5.692774171020696,25.93533468548063,14628.8093416484,69.24450591866288,15.889006018172672,22.97634592622705,15.279603478661237,15.099550495601928,0.554294175715696,0.7741691842900302,0.6884596334819217,0.5662563359884142,0.1270310192023633,0.7148362235067437,0.9157175398633256,0.8587786259541985,0.7337883959044369,0.1528239202657807,0.4990046449900464,0.703954802259887,0.6287625418060201,0.5211397058823529,0.1196581196581196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026659638523684,0.0051642620888374,0.0076874644569014,0.0103099072718399,0.0131123508571893,0.0156272299129442,0.0180333724549675,0.0205906396893521,0.0233012689316414,0.0258662212156304,0.0285679090918422,0.0306417282757344,0.0332334373487399,0.0356914443687978,0.0384945280932549,0.0411460867224942,0.0436405874056251,0.0460715028060694,0.0480714144349655,0.0505705367116623,0.0671576216578099,0.0837737511010444,0.0992221171029118,0.1142535009430681,0.1278788327185482,0.1462028604446517,0.1606931988638177,0.1749004791940148,0.1886537740397492,0.2019875028231574,0.2181346870443376,0.2334049665711556,0.2472670143359008,0.2597935430082166,0.27233694992329,0.284687347229012,0.2963041726361031,0.3062449914784591,0.3165029536633393,0.3254934853045936,0.3344898409125192,0.3435263194949661,0.3510298569478245,0.3576932786747292,0.3643711370369016,0.3708551915272691,0.3750927544616468,0.3806067421473663,0.3850616577345335,0.3902160943921516,0.390228057115788,0.389648640053098,0.3896153519572047,0.3887670795277991,0.388195555024138,0.3867921621788157,0.3843666884326872,0.3849282454864096,0.3863632448448724,0.3867939825240969,0.3866242761439764,0.3879685441698934,0.3888888888888889,0.3898868026841998,0.3910144080996884,0.3939690000264054,0.3949055622942298,0.3976639826867382,0.4002066042104513,0.4021176753699916,0.4047749977087343,0.4068530496605548,0.4092204420239377,0.4146303980328876,0.4146341463414634,0.4151507898516036,0.4186867137158637,0.4205758002818602,0.4272752268353038,0.4242072699149265,0.0,2.869952988384027,68.4635108083176,238.71391140175183,334.36984666473285,NC_public_implementation,39 +100000,95683,48848,458.6812704451156,7828,80.49496775811795,6118,63.36548812223697,2452,25.312751481454384,77.33990302576841,79.7320283513788,63.32261558699434,65.08948942531919,77.0463573293831,79.43513787176256,63.216691284731326,64.98469793983166,0.2935456963853085,296.8904796162377,0.1059243022630127,104.79148548752448,128.70484,90.26759186286864,134511.7105441928,94340.26092709118,303.60543,188.29657386919396,316754.9303429031,196243.8624608524,366.01187,174.87762627018347,378873.62436378456,179905.06219836575,4352.46065,1951.319973501278,4511627.321467763,2002185.3872671933,1445.62255,631.1821932197719,1497003.5952049997,645951.7265009691,2400.27718,981.113504553588,2479321.0915209595,999533.5218564196,0.43142,100000,0,585022,6114.168661099672,0,0.0,0,0.0,24993,260.6105577793338,0,0.0,33684,348.41089848771463,1804733,0,64898,0,0,8635,0,0,66,0.6793265261331689,0,0.0,0,0.0,0,0.0,0.07828,0.1814473135227852,0.3132345426673479,0.02452,0.3222587318972861,0.6777412681027138,25.279493861000265,4.409084525200223,0.3275580254985289,0.2231121281464531,0.2204968944099379,0.2288329519450801,11.236669483101752,5.831385221462286,25.883042546270243,14665.88930753166,69.32427755806006,16.231320944962327,22.651210707546465,15.69416462763168,14.747581277919592,0.5612945406995751,0.7692307692307693,0.7005988023952096,0.5935714285714285,0.1104521868050407,0.732947232947233,0.9345991561181436,0.8636363636363636,0.7507692307692307,0.1254612546125461,0.5028483786152498,0.6812570145903479,0.6486842105263158,0.546046511627907,0.1066790352504638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025524156791248,0.0052810298515027,0.0080567421943968,0.0107260390850363,0.0131071860732334,0.0157067529876422,0.0183980918987238,0.0210663836041479,0.0234196107294733,0.0260598988720342,0.0288072171818135,0.0313497644148351,0.0335126019311649,0.0360718553005644,0.0385587928703388,0.0412431890321446,0.0436881636881636,0.046095720498635,0.0486315548574341,0.0509637135024131,0.068151429048972,0.0840775133743025,0.0999391510522671,0.1152709255967095,0.1293950102853526,0.1471568368156572,0.1632010015065034,0.1778548848892531,0.1916418356775923,0.2049511638129751,0.2206069220994594,0.2345761831598537,0.2485183292190915,0.260544901930772,0.2723530706581554,0.2848662059188375,0.2959066415271161,0.3062271474377004,0.3159721828309528,0.3255339861421291,0.3333834569072212,0.3414006781246346,0.3491545079105873,0.3560302892334236,0.3628348675102615,0.3691727562878162,0.3750829192585453,0.3809699545691706,0.3861020376419349,0.3903589310012286,0.3905181829214028,0.390604544765527,0.390084837876371,0.3903510043187154,0.3895819360608093,0.3879392358447138,0.3861822796858888,0.386718685696413,0.3874478132913558,0.3876408513682704,0.389021390073053,0.389127977311941,0.3899808698942588,0.3923845530650823,0.3926424970918961,0.3934538194809289,0.3966533452172163,0.3978580054662175,0.4012698187493349,0.4047818959657751,0.4070877708409842,0.4104021447721179,0.4122282954112113,0.4151305683563748,0.4148905939187269,0.4201559688062387,0.4229088639200998,0.4233013755731555,0.4231207289293849,0.4346108257605689,0.0,2.207326740690772,69.03931678347615,230.4992315840501,347.69290692213326,NC_public_implementation,40 +100000,95770,48950,459.9770282969615,7902,80.87083637882427,6221,64.23723504228882,2458,25.185339876788134,77.331780499572,79.6720659148868,63.32970022966426,65.06256579136978,77.015287946875,79.35761457664996,63.21349645511386,64.95028384563892,0.3164925526969995,314.4513382368359,0.1162037745503994,112.2819457308566,127.4801,89.55888448408359,133110.6818419129,93514.54994683473,302.80595,187.93438357613283,315456.3746475932,195511.12412669195,373.65001,179.09238537689993,385556.5834812572,183450.97776938783,4490.14262,2030.6377222422136,4640887.480421844,2072750.3834626856,1488.37486,654.4114447050757,1538724.5797222513,667926.401488019,2412.88478,1009.5884937432154,2475334.0920956456,1017362.050111425,0.43138,100000,0,579455,6050.485538268769,0,0.0,0,0.0,24871,258.94330166022763,0,0.0,34361,354.1818941213324,1808212,0,65057,0,0,8603,0,0,59,0.6160593087605722,0,0.0,0,0.0,0,0.0,0.07902,0.1831795632620891,0.3110604910149329,0.02458,0.3288590604026846,0.6711409395973155,24.99973471657014,4.486896013424565,0.3224561967529336,0.2207040668702781,0.2239189840861598,0.2329207522906285,11.21710726297422,5.6749732607133785,26.31695841470322,14615.721759880164,70.79564308265051,16.503812428946024,22.767452654749672,16.178920129841735,15.34545786911308,0.560842308310561,0.786598689002185,0.6879361914257228,0.6031746031746031,0.1112706389088298,0.7304615384615385,0.921161825726141,0.8565965583173997,0.7395209580838323,0.1678321678321678,0.500870322019147,0.7138047138047138,0.6284558327714093,0.5623318385650224,0.0966576332429991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027348695872372,0.0055654677425895,0.0082194282930987,0.0106566703238652,0.0133638443935926,0.0161508773001761,0.0186374666095715,0.0209277634856466,0.0233383083559935,0.0258688642063776,0.028375773977939,0.0308437891451218,0.0334484956916939,0.0359184598428116,0.0382892645571449,0.0408353147937558,0.0433332642873418,0.0454602028751011,0.04762696540472,0.0499921903472692,0.0670075658752935,0.0835477729659616,0.0990973991257036,0.1135561160151324,0.1275488160848077,0.1456078796077105,0.1613238349658652,0.1763661115010741,0.1897447939459274,0.2022095066649522,0.2178416088885061,0.2325302117255033,0.2457172690588324,0.2583298693911483,0.2703306622050017,0.2824246453900709,0.2929968299325802,0.3037563017644941,0.3135913407535995,0.3237382877826396,0.3326469227209625,0.3410877192982456,0.3486218980867588,0.3554302848575712,0.3621188542527841,0.3678421981657265,0.3734766036411053,0.3791013157390983,0.3848911518678236,0.3897136657139832,0.3898019214162349,0.3899592084229094,0.3901833218080978,0.3902796097928655,0.3904435333581811,0.3886743688752826,0.3875994906080865,0.3876762540038966,0.3881177219326762,0.3896469996768054,0.3903791737408036,0.3924123662117534,0.3935729386892178,0.3948140458566528,0.3954422613395661,0.3970487302676733,0.3976327944572748,0.4017183770883055,0.4034477866061294,0.4076384417256922,0.4100809248554913,0.4124959463841747,0.4178691059005411,0.4207459207459207,0.4230732407850646,0.4251930501930502,0.4283484233531064,0.4316414244781007,0.4342327150084317,0.4431137724550898,0.0,2.804152161281966,71.40547941138024,235.3798562221008,348.435186663284,NC_public_implementation,41 +100000,95679,49245,463.09012426969343,7801,80.21613938272766,6059,62.657427439668055,2447,25.125680661378148,77.34192318165195,79.71851714761699,63.32298576779221,65.07553979647207,77.04462301304781,79.42131185034509,63.21177074127824,64.9673112414269,0.2973001686041385,297.20529727190126,0.1112150265139604,108.22855504517293,128.40256,90.10913384457186,134201.4026066326,94178.59075091907,301.87359,187.75298743788923,314855.2137877695,195580.76759696152,364.12552,174.92446524953513,376410.9574723816,179605.850570676,4406.8867,1985.8795473069329,4560903.353923013,2031011.006101676,1441.27681,635.7244483217635,1487159.1049237554,645439.7942821622,2424.4864,1019.8001466066094,2492150.942213025,1030251.8282101108,0.43397,100000,0,583648,6100.063754846936,0,0.0,0,0.0,24777,258.28029139100533,0,0.0,33367,344.6106251110484,1803425,0,64767,0,0,8720,0,0,64,0.6689033121165564,0,0.0,1,0.0104516142518211,0,0.0,0.07801,0.1797589695140217,0.3136777336238944,0.02447,0.3237120935330654,0.6762879064669346,25.343576882919525,4.454179954477925,0.3223304175606535,0.2158772074599769,0.2355174121142102,0.2262749628651592,10.888421031135616,5.394044224714671,26.078687442999467,14619.365306724738,68.39800549722648,15.529691788072869,22.022721869227897,15.05647830947809,15.789113530447638,0.5451394619574187,0.7698776758409785,0.6948284690220174,0.5660102115244348,0.1142256482130343,0.7096560846560847,0.9258426966292136,0.8530020703933747,0.7462121212121212,0.1625,0.490433252694084,0.6894553881807648,0.6428571428571429,0.5230352303523035,0.1002710027100271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028350698135941,0.005473287317177,0.0083386591192671,0.0108070774168647,0.0134034352658822,0.0156889495225102,0.0183614379218237,0.0209326784638477,0.0232933862325657,0.0260891824092561,0.0281454746793261,0.0307140950072908,0.0330467158990393,0.0355674617484931,0.037985528339475,0.0405869335925382,0.04284234514191,0.0453800004151875,0.0476185524126455,0.05046578996728,0.0681269781580019,0.0840505957990408,0.1000524824183898,0.1147953277912238,0.1283953483463835,0.1471768005503519,0.1612105123440403,0.1757380122939904,0.1888063291815897,0.2011873705003918,0.2167691146338833,0.2317184148376053,0.2457181433128994,0.258423276484883,0.2695860907098891,0.2814879678996198,0.2937372248098381,0.3041597675125874,0.3140842991906097,0.3237778669264714,0.3325458314514354,0.3408433551529913,0.3483417657025723,0.3564305343877881,0.3623988808466638,0.3685814771395076,0.3748119358074223,0.3806350500751764,0.3863518355054779,0.3929270745131245,0.3925641614747341,0.3918108451716323,0.3913793835141673,0.3911304927343059,0.3906424393946158,0.3890184764593947,0.3875866884611112,0.3875504988045181,0.3887314752803393,0.3896660568886976,0.3910243130755758,0.3920078011502717,0.3925929048713138,0.3924492600184713,0.3929089677856244,0.393813299835126,0.3962771280702256,0.3987331799703778,0.4006680731364275,0.4030236721702805,0.4026588963758878,0.4057392322845126,0.4090966759705658,0.4125427594070696,0.4114612643031326,0.4159229685298262,0.4203840919401179,0.4214428857715431,0.4264223194748359,0.4324223137401722,0.0,2.6046001868087885,66.43911315243763,231.74409212381133,342.39603738001364,NC_public_implementation,42 +100000,95726,49158,462.28819756388026,7675,78.70380043039509,6046,62.44907339698724,2403,24.653699099513197,77.32392886815877,79.68900888033474,63.31606620966248,65.06533564314526,77.03186996722758,79.39756448484296,63.20815362708722,64.96088884027604,0.2920589009311953,291.44439549178,0.1079125825752598,104.44680286921935,128.67778,90.2975581584122,134423.01986921002,94329.187638063,302.51924,188.7440551661488,315323.1306019263,196468.080945771,368.99701,177.6177484551065,381167.4048847753,182231.1638733829,4317.63894,1949.663984214292,4462953.638509913,1989252.704818224,1483.75466,650.1203910115803,1531901.6463656686,661047.0520146881,2357.93076,981.552620121432,2420920.6694106096,988405.8311267222,0.43194,100000,0,584899,6110.137266782274,0,0.0,0,0.0,24857,258.92651944090426,0,0.0,33850,349.2572550822138,1800237,0,64758,0,0,8610,0,0,53,0.5536635814721184,0,0.0,0,0.0,0,0.0,0.07675,0.1776867157475575,0.3130944625407166,0.02403,0.3293929319049378,0.6706070680950622,25.12241726135423,4.42457385306908,0.3336089976844194,0.2136950049619583,0.2232881243797552,0.229407872973867,11.222312253296684,5.781104374679322,25.543647830402843,14580.771345495566,68.5474541297973,15.482599618901263,22.95493131326985,15.38551114056576,14.724412057060452,0.5585511081706913,0.7755417956656346,0.7040158651462568,0.5724585436193222,0.1192592592592592,0.7229773462783171,0.9027149321266968,0.851145038167939,0.7252396166134185,0.169172932330827,0.5021106420795379,0.7094117647058824,0.652377762893503,0.5279329608938548,0.1070110701107011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026841694774479,0.0052520049883908,0.007885602939087,0.0107195838159686,0.0132440900028481,0.0158452138492871,0.0184837795404033,0.0210274888482856,0.0233005142676031,0.0256373502610832,0.0283277115351097,0.0306885151645824,0.0331965991220224,0.0355770716382551,0.0379428123290922,0.0404370342040251,0.0427162744448127,0.0451917587835383,0.0476482638852781,0.0501245038080453,0.0681345987199966,0.0848294622305921,0.1003177532850236,0.1153372942846627,0.1297085249082549,0.1475976897201007,0.1626981600560259,0.1769848368685578,0.1903927705438114,0.2032913428035379,0.2189888680748444,0.232909749634997,0.2455472674684122,0.2578048967183894,0.2695294454099479,0.2817789100575986,0.292548441825163,0.3021700958984287,0.3129997274214065,0.3217517980247537,0.3303615938416592,0.338874755266891,0.3466320260042233,0.3538151115167965,0.3603712229164383,0.3669083408470536,0.373508188492188,0.3793869164603486,0.3851378553525278,0.3908945285092074,0.3902864090786274,0.3899701838661586,0.3897653378569409,0.3889807642092436,0.3881765319815118,0.386535273531037,0.3848985355482571,0.3851431391905232,0.3861716889657889,0.3863782854687388,0.3872005115281904,0.3880416219865761,0.3889426719420826,0.3901381556778614,0.3915103461612841,0.3922381014815786,0.3925870760769935,0.3962359960646164,0.4003765407978402,0.4042502004811548,0.4078125,0.4085802931421846,0.4121377386010527,0.4151638400736704,0.4186999618757148,0.4185430463576159,0.4229825099723842,0.4255148970205958,0.4270386266094421,0.424057860677579,0.0,2.7257065457248912,67.92536121134259,232.27579781088028,336.5702482483078,NC_public_implementation,43 +100000,95788,49134,460.6944502442895,7948,81.59685973190797,6168,63.73449701423978,2494,25.587756295151795,77.4066300966336,79.74431852159496,63.35719594835807,65.08709370650625,77.10513518253907,79.4449633419174,63.24660898617527,64.98065845689592,0.3014949140945333,299.355179677562,0.1105869621828006,106.43524961032824,129.08434,90.60352891349174,134760.45016077172,94587.55680616751,302.56386,188.0867356444805,315206.99878899235,195696.0742937326,372.06098,178.39488999696195,384506.5874639829,183200.77228016,4481.47804,2019.8049690889388,4631223.441349647,2061578.7515049884,1487.9037,653.8800858786386,1533771.9547333694,663288.4870374682,2459.91414,1016.0216252431246,2525899.465486282,1023140.4172707564,0.43334,100000,0,586747,6125.475007307805,0,0.0,0,0.0,24859,258.8528834509542,0,0.0,34163,352.7372948594814,1802577,0,64835,0,0,8630,0,0,61,0.6263832630392117,0,0.0,0,0.0,0,0.0,0.07948,0.1834125628836479,0.3137896326119778,0.02494,0.3189634583233819,0.6810365416766181,25.33674139541485,4.521528740387101,0.3250648508430609,0.2161154345006485,0.2326523994811932,0.2261673151750972,11.284930175556324,5.709618996549885,26.26789183566969,14689.524478980273,69.57735731829439,15.858857772078869,22.710104293730627,15.400133245489211,15.608262006995682,0.5551232166018158,0.7741935483870968,0.7017456359102244,0.5756272401433692,0.1268292682926829,0.744721689059501,0.9148471615720524,0.8905950095969289,0.7800687285223368,0.1843003412969283,0.4907709011943539,0.7005714285714286,0.6354447439353099,0.5217391304347826,0.1120840630472854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026951993028958,0.0053132161181075,0.0078647466536771,0.0108511221970474,0.0132626804039828,0.015732877130812,0.0184131644950143,0.0210483335885265,0.0235598348256265,0.0259322935854926,0.0284399532662389,0.03124486947956,0.0339993422134517,0.0364940960891094,0.0392025482171757,0.0417479838501492,0.0441637441420191,0.0464421960524133,0.0487870759960521,0.0513060769799377,0.0685225956572096,0.0852541309349508,0.1010157126235574,0.1155568167486442,0.1299574324609095,0.1485226984529546,0.1635309455921478,0.178155603049539,0.1915463499482451,0.2040042420541826,0.219395934880618,0.2345588235294117,0.2483045689692648,0.261841573561373,0.2725734502384248,0.2845190136792244,0.2952332080186521,0.305257239246556,0.3152270097338506,0.3240810717966335,0.3326160396131241,0.3408918150881173,0.3491441558749023,0.3560949298813377,0.3634783454278039,0.3700647548566142,0.3756562707531921,0.3814976626883542,0.3866191247974068,0.3917732896267315,0.3917680251630061,0.3916724114159658,0.3915333455711038,0.3902149354035108,0.3899589187901881,0.3889323455881225,0.3882010196649672,0.3885953396783722,0.3888869944758917,0.3897230385608691,0.3914159872551775,0.3932515458622256,0.3940936223688344,0.3953738087781307,0.39577220912895,0.3970845176936918,0.3972098596371106,0.400144740568264,0.4029362061681453,0.4085123309466985,0.4074107917942157,0.4095506814310051,0.4092284417549168,0.4115229469518228,0.4124964923767655,0.4146715414553603,0.4210933870218367,0.4192432872253865,0.4230445752733389,0.4236491777603758,0.0,2.576234889944605,68.81345841756041,233.328448865995,346.5656518474027,NC_public_implementation,44 +100000,95674,49067,461.8078056734327,7861,80.70113092376194,6176,63.83134393879215,2477,25.440558563455063,77.29491858535671,79.69737167203546,63.29396199958445,65.07392257728661,76.99238360155321,79.39420183247447,63.18169000078829,64.96445767098686,0.3025349838034969,303.16983956099364,0.1122719987961602,109.46490629974905,128.46944,90.12744926992652,134278.09018124046,94202.45260520968,299.73949,186.247999211144,312549.40736250184,193928.47907055035,366.55385,175.97427549537682,377961.117963083,180028.29109446166,4449.19528,2020.33134002492,4598877.24982754,2060675.4338743067,1504.18825,663.3388885683075,1550771.714363359,671989.4991546246,2430.90114,1017.7647392495552,2497899.868302778,1028116.528809718,0.43376,100000,0,583952,6103.549553692748,0,0.0,0,0.0,24659,256.96636494763464,0,0.0,33775,347.85835232142483,1805841,0,64895,0,0,8579,0,0,65,0.6793904300018814,0,0.0,1,0.0104521604615674,0,0.0,0.07861,0.1812292511988196,0.3150998600686935,0.02477,0.3345083262428588,0.6654916737571411,25.04750248184394,4.509054807384888,0.3217292746113989,0.2268458549222798,0.2318652849740932,0.2195595854922279,11.22081986475566,5.636595816230285,26.46170235206481,14672.085355637038,70.27570252935804,16.9266686261358,22.45574020619758,15.176921424134916,15.716372272889751,0.5620142487046632,0.7787294789436117,0.7136386512330146,0.577433628318584,0.125,0.7257072570725708,0.915057915057915,0.8707753479125249,0.7313915857605178,0.1418918918918918,0.5035164835164835,0.6987542468856173,0.660377358490566,0.5319961795606495,0.1205985915492957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027877178221334,0.0054491765350543,0.0081044025795968,0.0108586243709013,0.0135386870527398,0.0158490719884215,0.0185313686272909,0.0214135387507406,0.0240721037770593,0.0266139441496445,0.0288662754913626,0.0311896445448941,0.0334955802298897,0.0357937914828709,0.0381101809511029,0.0404463473152974,0.0429330873895066,0.0451534532164957,0.0475001560451906,0.0498545951073077,0.067396481845151,0.0829014459067541,0.0979462046239256,0.1130870329254048,0.1273859140068583,0.1450974582548517,0.1604866190380144,0.1753719025865465,0.1892151833803539,0.2019916941204245,0.2173809985562523,0.2319579261760218,0.2452259776414807,0.2574727221043885,0.2699310238611236,0.2820717307990518,0.2944446304791883,0.3052249980297896,0.3149625085207907,0.3245618060016518,0.3338006790030474,0.3421302315774677,0.3507109004739336,0.3584470774660568,0.3653560740614583,0.3712785670166769,0.3776760519219916,0.3835387694229519,0.3887030699025098,0.3932732700996063,0.393498301795245,0.3934724230530882,0.3928243908633022,0.3929926161864774,0.3928635280095351,0.3918183495265035,0.3908276443723047,0.3914701173519072,0.392678068548664,0.3927236794825727,0.3933491865775865,0.3941114364827984,0.3954190415875026,0.3960128095259573,0.3967979756198447,0.3967622010704775,0.3966715698999163,0.3994588572338055,0.4039300535593941,0.4065272369635904,0.408284023668639,0.4119544184046441,0.4128901036038899,0.4182755172679024,0.4195724465558195,0.4227125554622856,0.4235781082324084,0.4185998768220078,0.4205581652390163,0.4234889058913542,0.0,2.7546136432572723,71.56077850514482,237.5415977104545,337.4966342153924,NC_public_implementation,45 +100000,95707,49173,462.0038241716907,7804,80.11953148672511,6159,63.63170927936306,2434,25.024292893936703,77.3593554540744,79.73084437572099,63.33143217950936,65.08405229865691,77.0667908330852,79.43684101176729,63.22619337903802,64.98063002049074,0.2925646209892107,294.0033639537063,0.1052388004713407,103.42227816617822,129.38332,90.78359821261748,135186.89333068635,94855.7558095202,302.55416,187.79487448106343,315386.2204436457,195489.0866089428,375.44199,180.11282623848024,386908.4915418935,184137.82240321804,4412.54865,1991.70637599014,4562996.677359023,2034324.9493526472,1475.23817,649.7918005716922,1521391.5596560335,658963.5073171691,2384.11828,973.418923609284,2453356.327123408,987165.1314916048,0.43335,100000,0,588106,6144.858787758471,0,0.0,0,0.0,24910,259.51079858317576,0,0.0,34523,355.4494446592204,1801043,0,64694,0,0,8655,0,0,58,0.5955677223191617,0,0.0,0,0.0,0,0.0,0.07804,0.1800853813314872,0.3118913377754997,0.02434,0.3344693281402142,0.6655306718597858,25.0707861624646,4.420564525043458,0.3317096931320019,0.2226010716025328,0.2190290631596038,0.2266601721058613,11.530856613902843,6.050408036906192,25.71417118817552,14705.222194687303,70.00402271308474,16.572868801349014,23.128536802360845,15.513357979034202,14.789259130340657,0.5736320831303783,0.8016046681254558,0.7053352912383749,0.5909742120343839,0.1245366938472943,0.7597523219814242,0.913793103448276,0.8694817658349329,0.778816199376947,0.1872509960159362,0.5074823943661971,0.7326266195524146,0.6491458607095927,0.5348837209302325,0.1102003642987249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028764736863428,0.0051395379484424,0.0077526459455894,0.0106233877028701,0.0131783655166102,0.0158306779195129,0.0182374229063662,0.0205071147132678,0.023215636564372,0.0260649679050768,0.0288263344100907,0.0317690198132684,0.0344561504588666,0.0371011446645854,0.039563705408278,0.0418040666963002,0.0438554715809089,0.0463107017653037,0.0484328707313269,0.0508301564485553,0.0675897210997295,0.0841034443060628,0.1002360098599674,0.1152515640607749,0.1289975642931705,0.1476686130151476,0.1624647184906941,0.176565777006526,0.1902502618024834,0.2035733447794827,0.219189742484646,0.2331648282655524,0.2466738465889929,0.2592085968790352,0.2710591241519076,0.283074943997161,0.2947654094863691,0.3060464593059227,0.316376551755441,0.3259893219678742,0.3346176987873738,0.3426022287444895,0.3500886839304718,0.3572001484443274,0.3638040681586484,0.3697076426688997,0.3759041874202187,0.3816729825275312,0.3873043410712204,0.3931567561863557,0.392803799938103,0.39237439779766,0.3927254300273078,0.392117529909226,0.391848738247657,0.3905257518940843,0.3889793917155645,0.3898460831610383,0.3912241131843346,0.3929030645046075,0.3931456916312803,0.3949654844084742,0.3958970250268823,0.3970810493785387,0.3981102362204724,0.400283591103642,0.4028667451813977,0.4049487024743512,0.4068703913783323,0.4113642734152885,0.4123340707964602,0.4156305506216696,0.4158650763114018,0.4174414137533615,0.4199015338004166,0.4192431658111495,0.4227504244482173,0.4197480698902885,0.422271223814774,0.4238921001926782,0.0,2.767548511651796,71.05626859618505,233.88872573812623,340.9509132036793,NC_public_implementation,46 +100000,95879,49200,461.9989778783675,7991,81.80102003566995,6243,64.42495228360745,2501,25.65733893761929,77.4394230829848,79.71857681510156,63.39129033748679,65.07676160023476,77.12357115269094,79.4014594719042,63.27520516317229,64.96246687928156,0.31585193029386,317.11734319735285,0.1160851743144988,114.29472095319682,129.09116,90.58197175754523,134639.6604053025,94475.29882199984,304.56357,189.5031632801129,316937.91132573347,196932.0636219745,372.48884,179.68363674579862,383551.0800070922,183580.7866804504,4472.51243,2041.5583478598785,4623099.312675351,2087659.7668518424,1521.26226,671.1216305392353,1570897.5896703138,684216.8467956854,2456.33382,1032.744217530189,2523571.3764223657,1046662.2647165776,0.43309,100000,0,586778,6119.984563877387,0,0.0,0,0.0,24956,259.5980350233106,0,0.0,34204,351.7871483849435,1804144,0,64910,0,0,8720,0,0,80,0.8239551935251723,0,0.0,2,0.020859625152536,0,0.0,0.07991,0.1845113025006349,0.3129770992366412,0.02501,0.3192174639150662,0.6807825360849338,25.113039606235205,4.409496468203203,0.3230818516738747,0.2304981579368893,0.2296972609322441,0.2167227294569918,11.35429302517829,5.887507751658164,26.85452306850495,14662.121495636671,70.966070453599,17.04046697687682,22.877375767702457,15.294049809438643,15.754177899581093,0.5545410860163383,0.7609451007644198,0.6871591472483887,0.5934959349593496,0.1241283124128312,0.7329305135951661,0.904,0.8938223938223938,0.7402985074626866,0.1655629139072847,0.4901918047079337,0.6847710330138446,0.6157438292194797,0.5451866404715128,0.1130742049469964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027029763109941,0.0055332603672625,0.007993588898244,0.0106610890556305,0.0134875542500533,0.0160761889257442,0.0185485103132161,0.0208996328029375,0.0236606595562093,0.025972298942286,0.0284227135801963,0.0311605429752829,0.0335097364229563,0.0358433269854341,0.0383302920648666,0.0408483571856349,0.0430675963667211,0.0453820171166877,0.0475671410923209,0.0502122082137061,0.0687415962225997,0.0851017145722972,0.1008460555799878,0.115822738296465,0.1300791612278411,0.1483984036825102,0.1638474330321678,0.1782063542662841,0.1916274904857846,0.204178171621824,0.2192297768029931,0.2337677776336834,0.2474057654485988,0.2596045599116872,0.2708974923009239,0.2834399840577464,0.2947275707134336,0.3057887461649978,0.3157876840422999,0.3248987622686403,0.3333988348437211,0.3418527737848987,0.3492328258272113,0.3564632860429448,0.3636021237561811,0.3694888513638437,0.3747684142005908,0.3808996768694501,0.3869104659293984,0.3918590843119145,0.3914203695467594,0.3911756607929515,0.3906970188173937,0.390231191279297,0.3902631422277787,0.389671577655003,0.3888615550653102,0.3886302699323935,0.389014489774946,0.3898086663922249,0.3897622987814051,0.3902850563760521,0.39102159363556,0.3906940239937213,0.392083644510829,0.393475244154688,0.393531074252762,0.3956472512265694,0.3992074068878445,0.4015497715080469,0.4047075996715628,0.4067371343156096,0.407444922765257,0.4127374817321744,0.4126862820022927,0.4123165744527303,0.4079173838209983,0.4107772020725388,0.4151634723788049,0.4069812044495589,0.0,2.725325855389001,72.66268411123617,238.1455447529321,341.73957315097005,NC_public_implementation,47 +100000,95717,49129,462.07047859836814,7738,79.47386566649602,6067,62.61165728136068,2364,24.21722369067146,77.34647984393533,79.69712521741744,63.33814763576003,65.07464667337997,77.04796912501196,79.40194646925268,63.22841230936499,64.96922280466089,0.2985107189233673,295.17874816475853,0.1097353263950395,105.42386871908604,128.4019,90.1982953098436,134147.43462498824,94234.35263312011,303.96725,189.16468475064747,316764.4305609244,196827.2983608808,368.59712,177.75098448420928,379607.4887428565,181508.05896565932,4351.74962,1971.7930719756048,4497491.6159094,2011768.9247704963,1433.66999,632.5902756407938,1478923.691716205,641998.4701158562,2316.07586,967.929426181943,2375848.76249778,974677.5333444508,0.43165,100000,0,583645,6097.610664772194,0,0.0,0,0.0,25025,260.6015650302454,0,0.0,33864,348.3289279856243,1802961,0,64815,0,0,8865,0,0,55,0.5746105707450088,0,0.0,0,0.0,0,0.0,0.07738,0.179265608710761,0.3055052985267511,0.02364,0.3270648967551622,0.6729351032448377,25.01125010809077,4.378136399103686,0.3286632602604252,0.2197132025712873,0.2192187242459205,0.2324048129223669,10.97825484953636,5.693042459304639,25.22980693518541,14660.38888600802,68.88463401878957,15.921830266120836,22.51665940968636,15.705209844573533,14.740934498408835,0.5597494643151475,0.7749437359339835,0.7006018054162487,0.577304964539007,0.1142857142857142,0.7308907138344914,0.9184549356223176,0.8681732580037664,0.7255520504731862,0.1412639405204461,0.4993309545049063,0.6978085351787774,0.6397812713602188,0.5343092406221409,0.1074458058435438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031699412598744,0.00557532260844,0.0081184481586344,0.0106560208041283,0.0132812658897227,0.0158515230493565,0.0184505606523955,0.0208412006654487,0.023417935010375,0.0258618041833464,0.0283113634965866,0.0308442391583269,0.0331160552722487,0.0355550062313959,0.0380412913610053,0.040528388477162,0.0431865480788146,0.0455479238862028,0.0479645723314898,0.0500916628473813,0.0674462309459177,0.084266605262607,0.1006357932727616,0.1164624848835375,0.1306341926300806,0.1483791841999534,0.1635532359524339,0.177822241616024,0.1908142675648841,0.2033247944779686,0.2187469718666221,0.2339956088644696,0.2482012824692968,0.2608353550586846,0.2727082852400268,0.2852129437943517,0.2964321961121087,0.3070779337652988,0.3169029270562599,0.3264160240176924,0.3345484845328612,0.341768449623286,0.3501587000805343,0.3570665930875631,0.3646486749331388,0.3705095816131616,0.3755681604748131,0.3797079659548443,0.3834553288688159,0.3890292122350203,0.3887569172627885,0.3889279655757375,0.389267714201008,0.3882796088373778,0.3885693852617777,0.3866209842211194,0.3850023805745119,0.3857968294730604,0.386634189852139,0.3885015860499292,0.3896331138287864,0.3907336060690312,0.3906299461855017,0.3906352103472363,0.3917460779321549,0.3928533783071571,0.3951452676437559,0.3986488629515684,0.4017566227510979,0.4057843646386769,0.4096075093176275,0.413494623655914,0.4156255945208954,0.4185185185185185,0.4232238349885409,0.4209066795273692,0.4261381232579746,0.4288065843621399,0.427355278093076,0.4320987654320987,0.0,2.9415476658285917,69.4510091922468,227.9920796487424,339.58792944148473,NC_public_implementation,48 +100000,95723,49250,462.8459199983285,7812,80.11658640034265,6171,63.69420097573206,2494,25.59468466303814,77.41222784566315,79.76912521710715,63.350809200748486,65.09012024873648,77.11035310655615,79.4691658379979,63.23935993739145,64.98262806231895,0.3018747391070064,299.9593791092394,0.1114492633570378,107.49218641753087,127.85652,89.67051456060071,133569.2780209563,93677.08341840592,300.41391,187.23967797471397,313052.46388015425,194834.2507484115,373.35971,179.8254351403404,385309.4031737409,184177.4704971137,4417.33175,1999.1899452299317,4562645.591968493,2037337.8012010604,1487.99441,650.3774639430925,1534708.0952331205,660037.6798631516,2441.99098,1011.6686880927138,2507882.0555143487,1018863.6488599548,0.43287,100000,0,581166,6071.330819134378,0,0.0,0,0.0,24689,257.10644254776804,0,0.0,34290,353.50960584185617,1807754,0,64943,0,0,8594,0,0,64,0.6685958442589556,0,0.0,0,0.0,0,0.0,0.07812,0.1804698870330584,0.3192524321556579,0.02494,0.3261657405170331,0.6738342594829669,24.943331737821524,4.435718962742308,0.3176146491654513,0.2344838761951061,0.2258953168044077,0.2220061578350348,11.217041592411142,5.773041707123177,26.399288453538595,14695.981927033592,70.05393454641799,17.374999988047822,22.27154505578212,15.215892821936604,15.191496680651454,0.5595527467185221,0.778852798894264,0.7010204081632653,0.5693430656934306,0.1233859397417503,0.7510889856876167,0.926,0.8680688336520076,0.75,0.1893939393939394,0.4921121822962314,0.7011615628299894,0.640222686151705,0.5142857142857142,0.1079646017699115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023698602390115,0.004763593979628,0.0076187964127744,0.0103887399463806,0.0130745534216492,0.0158395683819412,0.0183460056668773,0.0208565043927226,0.0237095175317574,0.0262026612077789,0.0286648356153152,0.0310934548739426,0.0334937083641746,0.0360232328225407,0.0384670945374249,0.0409741172579178,0.0435728042744424,0.0460232813894134,0.0484477990559956,0.0507422261576123,0.0682473064394888,0.0845575924995814,0.1003283434913508,0.1152782015001525,0.1299975730972555,0.1483570559288851,0.1630049459763527,0.1776168672132893,0.1912553705405809,0.2038233652483792,0.2191479496662749,0.2333943443839147,0.2465675866949752,0.2592474978646985,0.2702020758500628,0.2828901387825739,0.2948948680401078,0.3058178049165183,0.316036396269496,0.3247502494637962,0.333935875598197,0.3412971681540299,0.3489655499105885,0.3558507258712253,0.362741404246527,0.3695759368836291,0.376177902363939,0.3816038755451574,0.3866637352404847,0.3913140839875652,0.3913446552372763,0.3914237460352332,0.3920013499831252,0.3919749523864489,0.3923450645811115,0.392021861260381,0.3909020573792494,0.391586184318219,0.3921722380376046,0.3927381567460671,0.3936323356204079,0.3954456656866034,0.3965604026845638,0.3971180524478654,0.3994216867469879,0.4004542606516291,0.4018203606482538,0.4048585543912646,0.4084625936477788,0.4122852267767152,0.414800655379574,0.4153584162631046,0.4183512815668493,0.4228284824074778,0.4223614097410489,0.4217824128940507,0.4236978373438927,0.4180973540698848,0.4213715229964197,0.4281322059953881,0.0,2.89073740161058,70.53069915728369,239.51661265537808,335.48709981327414,NC_public_implementation,49 +100000,95737,49489,465.0553077702456,7956,81.84923279400859,6152,63.75800369762997,2368,24.452406070798126,77.32373385663094,79.6926380743953,63.321321634088775,65.0746073087949,77.04169944011463,79.40588140695084,63.21763530017503,64.97106430113112,0.2820344165163106,286.7566674444646,0.1036863339137497,103.54300766377378,128.5185,90.23638702299291,134241.2024609085,94254.45441469122,304.29676,189.22027596375824,317358.1582878093,197157.52108772803,373.56767,178.96928238177992,385961.7598211768,183893.07263145,4384.29632,1970.8355017178824,4550505.0294034695,2029577.051419913,1490.07787,653.0861096498841,1544034.197854539,669772.6685083971,2332.21916,963.9216324307474,2410615.7493967847,986038.9446266176,0.43555,100000,0,584175,6101.872839132207,0,0.0,0,0.0,25010,260.7351389744822,0,0.0,34318,354.3457597376145,1802894,0,64813,0,0,8659,0,0,52,0.5327094017986777,0,0.0,0,0.0,0,0.0,0.07956,0.1826655952244288,0.2976370035193564,0.02368,0.3249106078665078,0.6750893921334923,25.406654699193112,4.397046073590414,0.3280234070221066,0.2270806241872561,0.2249674902470741,0.219928478543563,11.146689490913737,5.620544311914668,25.09108405529623,14736.56782631992,69.72534195900158,16.733668616357818,22.733113826394654,15.099208101474414,15.159351414774688,0.5609557867360208,0.7988546886184682,0.6774033696729435,0.590539541759054,0.1221098265895953,0.7458064516129033,0.936082474226804,0.8522954091816367,0.7777777777777778,0.1847826086956521,0.498696219035202,0.7258771929824561,0.6196440342781806,0.539906103286385,0.1064981949458483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027355623100303,0.0054052957700771,0.0080998781973203,0.0110867223543279,0.0137147973302946,0.0164817814177591,0.0188369436625464,0.0213659064679868,0.0238974159704682,0.0267089968764401,0.0291967060126549,0.0316729998972989,0.0339176594037405,0.0362626491622184,0.0390784665882207,0.041382803858122,0.0436435192377401,0.0460959060444462,0.0486379704720316,0.0509403490492315,0.0683650031321779,0.0849188906331763,0.1003870724108632,0.1154319494262062,0.129418339800911,0.1472858381441772,0.1624657883011902,0.1780097469620549,0.191393692125303,0.2041155528866775,0.2193280930332723,0.2340199939412299,0.2482436106579663,0.260533423731779,0.2724021830025087,0.2842839738620002,0.296853915041208,0.3066558788164829,0.3165910637332728,0.3257610437170977,0.3345508767468473,0.342959993454962,0.3510406811731315,0.3583316358930732,0.3647240307064425,0.370969332412977,0.3770865421941721,0.3825428975427065,0.3882755847289426,0.3929340573678438,0.3931788758226346,0.392761079768818,0.3923673394443581,0.391753772996796,0.390522047643183,0.3899588401523529,0.388625517274183,0.3893410948316971,0.3900470286447199,0.3911806797853309,0.3923736462093863,0.3939363856569908,0.3953763077961525,0.3973299714086314,0.3988033235628981,0.3990490700851108,0.4011914011914012,0.4051792701937454,0.4088537044268522,0.412621749979876,0.4152914528729256,0.4164324324324324,0.419449776071657,0.4216195273149942,0.4260580123632905,0.4357986027463262,0.4370952821461609,0.4371282051282051,0.440410199556541,0.4387596899224806,0.0,1.9822102597772344,69.02798141768406,236.700249644808,345.8148614366256,NC_public_implementation,50 +100000,95781,49050,460.14345225044633,7850,80.6631795450037,6196,64.11501237197356,2457,25.27641181445172,77.38153749659537,79.7231888215421,63.350937847410606,65.08283278744965,77.08215347280965,79.42090486168351,63.24044814260941,64.97329215655084,0.2993840237857199,302.2839598585847,0.1104897048011963,109.54063089880606,127.63278,89.58664476761854,133254.8000125286,93532.79331769196,303.94055,189.1039739316602,316775.52959355194,196880.5858486132,371.10829,178.37878954879594,383325.8161848384,183018.2049141,4408.6679,1988.249561497071,4566042.461448513,2039192.082716166,1474.17714,642.5711199029435,1528084.651444441,659929.1783239593,2407.25058,1003.2630293995194,2478963.2181747947,1020613.8846416612,0.43111,100000,0,580149,6057.036364205845,0,0.0,0,0.0,24930,259.6861590503336,0,0.0,34107,351.9382758584688,1808408,0,65010,0,0,8617,0,0,66,0.6890719453753875,0,0.0,0,0.0,0,0.0,0.0785,0.1820880981652014,0.3129936305732484,0.02457,0.3174966839503195,0.6825033160496805,25.200927737365028,4.388879114023142,0.3174628792769529,0.2346675274370561,0.2224015493867011,0.2254680438992898,11.154107908231277,5.710518636410416,26.21444857724256,14619.449247375767,70.08159819208575,17.32040263572589,21.99859144551872,15.649496665030288,15.113107445810844,0.5566494512588767,0.7757909215955984,0.6741230299949161,0.5998568360773086,0.113933236574746,0.7365421152628245,0.9264990328820116,0.8808510638297873,0.7252396166134185,0.1541218637992831,0.4951267056530214,0.6926360725720384,0.6092184368737475,0.5636531365313653,0.1037306642402183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029471935830176,0.005828450949784,0.0086542753946674,0.0112529579639052,0.0140512841368932,0.0165212699899223,0.0193154482814857,0.0218005899223302,0.0242800792985754,0.0271348762968874,0.0297173774926731,0.0321183317765163,0.0346703132872022,0.0372933012087889,0.0395259363170326,0.041723065477728,0.0439394409777198,0.0463992868027408,0.0489185763852818,0.0509339274930762,0.0688748356395967,0.0851112784471218,0.1010263022717027,0.1159330440173589,0.130666610465974,0.1481865065945214,0.1634396295001006,0.1771403663580017,0.1907307807230973,0.2031084195294496,0.2186208232862556,0.2334616882274044,0.2471983391123816,0.2594843321346988,0.2700978073118942,0.2817659369498057,0.2933244102392504,0.3044416957157315,0.3138578478643145,0.3231792476589509,0.3316673029976976,0.3397780039065698,0.3472851883855541,0.3540030926722846,0.3608900122735171,0.3673856773080242,0.3724712564586956,0.3774668330320083,0.3839665180885249,0.3886966855935561,0.3892602075192022,0.3887450418686646,0.387954391510499,0.3875461588588806,0.3871208057691161,0.3857077064783543,0.384395813510942,0.3847657854525738,0.385712821213778,0.3861593179746564,0.3865692937333383,0.3874799230631952,0.3888690163072067,0.3889089025982798,0.3904550070112664,0.3920400881519572,0.3943758769794679,0.3982770046388336,0.4015063527258649,0.4053128360348879,0.4087938205585264,0.4118212397885631,0.4147333629949787,0.4168845148393049,0.417022487902078,0.4177321065838212,0.4262800740283775,0.4239574816026165,0.4261650758001123,0.4213811939133827,0.0,2.251972801752661,69.8786951489463,237.8072273442596,344.2604097777317,NC_public_implementation,51 +100000,95866,49536,464.93021509189913,7856,80.77942127553042,6161,63.77652139444641,2534,26.03634239459245,77.37299817448195,79.67235568418181,63.35320242165369,65.05630890738664,77.0597483611891,79.36050239464653,63.23800194660137,64.94457666017853,0.313249813292856,311.8532895352786,0.115200475052319,111.73224720810992,129.06872,90.6555463574936,134634.51067114514,94564.85756941311,305.26243,189.7835168747044,317925.4375899693,197466.7628509632,372.23188,178.00736626668953,385781.2571714685,183688.2680127788,4431.43671,2002.5274499364332,4586634.176871884,2052983.8106695097,1480.76349,642.3005280695317,1531759.8522938266,657145.3538514473,2483.81984,1036.444520827337,2553916.299835187,1048405.8198111022,0.43523,100000,0,586676,6119.750485052052,0,0.0,0,0.0,25038,260.6450670727891,0,0.0,34156,353.7959234765193,1799693,0,64743,0,0,8458,0,0,59,0.6154423883337158,0,0.0,2,0.0208624538418208,0,0.0,0.07856,0.1805022631711968,0.3225560081466395,0.02534,0.3269300471185212,0.6730699528814788,24.88550464891477,4.4667649478546405,0.3231618243791592,0.2223664989449764,0.2285343288427203,0.2259373478331439,10.971844174556898,5.546108315404026,27.13853445174224,14709.516073430628,70.2768036912478,16.443270149904357,22.685472012254667,15.57070747833591,15.577354050752875,0.5544554455445545,0.7868613138686131,0.6956303365143144,0.5675287356321839,0.1157670454545454,0.7131198995605775,0.915811088295688,0.831041257367387,0.7387096774193549,0.1324041811846689,0.4991243432574431,0.7157417893544734,0.6491228070175439,0.5184842883548983,0.111507582515611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029572614948349,0.0054324140796821,0.0082062830305427,0.0106411063501411,0.0130329585425858,0.0155537459283387,0.0179384994852873,0.0206451744583575,0.0232149425757142,0.0256617519159342,0.0282058112372443,0.0308004842714382,0.033451862205048,0.0357389165096913,0.0381340206185567,0.040678281164479,0.0430918534152751,0.0456570848272574,0.0482569550453285,0.0507943774515414,0.068038915131229,0.0840578498578833,0.0992897399903622,0.1154714524242074,0.1294810227895025,0.1473375093749669,0.1630903561475453,0.1781036022625781,0.1911125817917872,0.2045910001821825,0.2202417471234675,0.2351128697457187,0.2483829236739974,0.2601754040636004,0.2719118682866702,0.2845922052600093,0.2952158823332478,0.3051200378178216,0.3150726907493786,0.3253871884164223,0.3334259002129038,0.3415384975536671,0.3502440064436653,0.3577500929267737,0.365325491244486,0.3715920440953426,0.3776207125581162,0.3830952896658045,0.3882635196472571,0.393273732377602,0.3925176864502889,0.3921492850438911,0.3923894906530162,0.3926333197934196,0.3922697245791145,0.3914413030116779,0.3891379694107921,0.390753255315642,0.3917152658662092,0.3923782512699922,0.393475027767842,0.3946354063182992,0.3955168854151305,0.3951795862440755,0.3959394539265625,0.3978466455348021,0.3996898067036218,0.403469271262764,0.4063462832453872,0.4085553380996126,0.4104051523317955,0.4120605703889989,0.4178866963717377,0.4180625241219606,0.419345579793341,0.4237348965187223,0.4249845009299442,0.4204968944099378,0.42728297632469,0.4326213592233009,0.0,1.8597343373777253,71.25323961386658,242.10792673793983,336.73187274442614,NC_public_implementation,52 +100000,95773,49036,460.9336660645485,7960,81.5574326793564,6235,64.32919507585646,2532,25.873680473619917,77.39816222968327,79.72767128853931,63.35848721039546,65.0795824947439,77.07711853301736,79.41094914885483,63.23845558682725,64.96502922666176,0.3210436966659102,316.7221396844866,0.1200316235682095,114.5532680821475,128.0939,89.87322809670593,133747.40271266433,93839.83805112708,302.38574,187.77998674199563,314977.0498992409,195313.101544272,368.92369,176.76037649987967,380448.362273292,180843.88301598377,4490.39229,2050.634696320717,4633583.724014075,2086326.046118456,1503.26761,667.2666762863051,1548677.8319568145,675849.3906676904,2487.70312,1055.5646566604469,2544206.5091414074,1057016.101074796,0.43267,100000,0,582245,6079.427396030197,0,0.0,0,0.0,24879,258.96651457091247,0,0.0,33861,348.87703214893554,1807446,0,65026,0,0,8580,0,0,67,0.699570860263331,0,0.0,2,0.0208827122466665,0,0.0,0.0796,0.1839739293225784,0.3180904522613065,0.02532,0.3322607555714456,0.6677392444285544,24.860184670181248,4.450187132260171,0.3332798716920609,0.2105854049719326,0.2296712109061748,0.2264635124298316,11.2293037373689,5.73981599689979,27.162791567903827,14622.13944006813,70.88259250792372,15.670926465107204,23.43459392721454,15.886139308962653,15.890932806639311,0.5488372093023256,0.7707539984767707,0.6814244465832531,0.5885269121813032,0.1138268156424581,0.715496368038741,0.9126637554585152,0.8716475095785441,0.7492625368731564,0.1651651651651651,0.4887628191141174,0.6947368421052632,0.6176092544987146,0.5377446411929171,0.0982711555959963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027951631524579,0.0055638884384627,0.0080956052428681,0.0107644812738646,0.0131855843033599,0.0155515297087141,0.0181790390788199,0.0205995184263151,0.0230999499381889,0.0257315326376099,0.0283580407544386,0.0309899334024278,0.0334412414572735,0.035910209038792,0.0382704084788749,0.0405172324757547,0.0431085317029266,0.0454512459427789,0.0476299352532191,0.0499765686019265,0.0678187187594569,0.0841352188101414,0.1000975077848957,0.1158280867344257,0.1297549763832658,0.1480631792616399,0.1635956677168528,0.1784821038963803,0.1918857423648425,0.2037859287859288,0.2190395139397595,0.233136069067737,0.2470164989239832,0.2599995628606399,0.2722145260241441,0.2842404719999114,0.2954084023114165,0.3057908889413935,0.3151460806792127,0.3239975705625523,0.3326120663719886,0.3404586404586404,0.3477256300579404,0.3549087593430193,0.3616250516641949,0.3679978293579339,0.3746618914045281,0.3803817697920513,0.3851083149565443,0.3896857607445501,0.3896358089684403,0.3886276186404446,0.3875287835336997,0.3858363504706734,0.3863971080465926,0.3855029767384766,0.3841758590588048,0.3851433650459229,0.3863878118244518,0.388873958613276,0.3891019134618999,0.3901963902361453,0.3915627107215104,0.3925156018497732,0.393669848616334,0.3941647896914776,0.393986980356327,0.3976040353089533,0.4025435637998876,0.4057049779508164,0.4074277602234739,0.4100053219797764,0.4131159921958587,0.4156340829126511,0.4153584263287308,0.416366258111031,0.4166023761765159,0.4187525646286418,0.4226023555804823,0.4201941747572815,0.0,3.0675357727370614,72.53560140221498,234.06324350141367,345.22961680617493,NC_public_implementation,53 +100000,95864,49338,462.8536259701243,7998,82.05374280230326,6226,64.2368355169824,2439,24.972878244179253,77.3584022892406,79.64186653789933,63.35300198276878,65.04202659264458,77.0462905072012,79.33098360263338,63.23699903660578,64.9298062801494,0.3121117820393948,310.88293526595123,0.1160029461630003,112.22031249516816,127.46272,89.4757294340209,132962.02954185096,93336.11098433292,304.21101,188.87765064491572,316549.8935992656,196240.53935253664,366.9616,175.64857983765117,378648.9818910123,179950.26223794828,4462.51191,2022.608823627688,4607652.476424935,2062481.102006684,1517.53183,666.6578351453369,1562859.4571476255,675274.9678141293,2406.85466,1020.4775409441546,2467028.540432279,1026844.5639304424,0.4357,100000,0,579376,6043.728615538679,0,0.0,0,0.0,25075,260.838270883752,0,0.0,33770,348.0764416256363,1807845,0,65034,0,0,8758,0,0,57,0.5841608946006843,0,0.0,0,0.0,0,0.0,0.07998,0.1835666743171907,0.3049512378094524,0.02439,0.3146911519198664,0.6853088480801336,25.139776820426217,4.451386785944217,0.3143270157404433,0.2343398650819145,0.2322518470928365,0.2190812720848056,11.148360682250903,5.588319572924847,26.450748498207087,14742.065560815254,70.7518373982138,17.3092853954415,22.07146184254798,15.282467980534058,16.08862217969027,0.5555734018631545,0.7710760795065114,0.6913643331630046,0.5813782991202346,0.1300138312586445,0.7198738170347003,0.9229166666666668,0.8482328482328483,0.7563291139240507,0.1655844155844155,0.4994613229907347,0.6966292134831461,0.6402439024390244,0.5286259541984732,0.1203866432337434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002652654172868,0.0049548591056935,0.0074753273625381,0.0101534181482195,0.0127159991868265,0.0153166631046519,0.0179102652919841,0.0204089958692437,0.0234115761208049,0.0261503388912174,0.0284582390696817,0.031032785876853,0.033635626033461,0.035870057194585,0.0384080299267289,0.0407731304141327,0.0433851596685597,0.0457998652640306,0.0481659950982428,0.0506169756747196,0.0680469979878856,0.0846001943390903,0.1008409521714997,0.1154585262892606,0.1299589170968081,0.1484443505361576,0.1637221132955328,0.1785505396926676,0.1916458506799889,0.2039536454369057,0.219757500053841,0.2342358910007464,0.2473988062232949,0.2599958453144987,0.2720554272517321,0.2848809536986817,0.2962070504239179,0.3075452173130568,0.3172495204367714,0.3262676403489665,0.3346110197558885,0.3428527937801508,0.3498268829444128,0.3577355862184914,0.3643237188462615,0.3709400442286547,0.3773094688221709,0.3824569466253048,0.3884626388202554,0.3932864204402391,0.3934330940697784,0.3935827842926007,0.3927717998388077,0.3925555071832825,0.3922731142008034,0.3917547991810218,0.3910329894280983,0.3916080451798276,0.3933501813743187,0.394250955482586,0.395391774524765,0.3959982497314929,0.3973785301194647,0.3982300884955752,0.4000630134994304,0.4017033542976939,0.4026189862173701,0.4067743056652659,0.4110091743119266,0.4128315755832534,0.4177302359746579,0.4206793579693915,0.4231648463296926,0.4278741865509761,0.4303140908654308,0.4299065420560747,0.432018927444795,0.4397590361445783,0.4366395054790671,0.4385964912280701,0.0,2.799448237520257,69.64009819159395,238.65996901870696,351.08678561868584,NC_public_implementation,54 +100000,95716,49097,461.5842701324753,7777,79.65230473484057,6011,62.03769484725647,2428,24.94880688704083,77.38965647392791,79.75587831180648,63.34469261111818,65.09348858467384,77.09576070214457,79.4597733956474,63.237120338537984,64.98696957174604,0.2938957717833403,296.10491615908074,0.1075722725801995,106.51901292779088,127.84156,89.71495835419262,133563.41677462493,93730.36728884684,302.60649,188.1344899766588,315278.8039617201,195686.01447184576,368.48344,177.403579441054,378917.0880521543,180698.39009138616,4303.24172,1941.0480975927928,4446639.882569267,1979343.329418699,1423.48976,622.6075998061793,1469000.992519537,632575.191425723,2378.10152,990.8112052476469,2446598.1027205484,1006831.7196868436,0.43214,100000,0,581098,6071.064398846588,0,0.0,0,0.0,24853,258.81775251786536,0,0.0,33894,348.113168122362,1808705,0,64979,0,0,8633,0,0,50,0.5014835555184086,0,0.0,0,0.0,0,0.0,0.07777,0.179964826213727,0.3122026488363122,0.02428,0.3212150786873246,0.6787849213126753,25.360908938670025,4.41618279654547,0.3295624688071868,0.2222591914822825,0.2254200632174347,0.2227582764930959,11.232325995537758,5.836553330590692,25.686660097252837,14627.011789753278,67.79553669610809,15.854075475482595,22.213059136509155,14.91677737322096,14.811624710895394,0.5489935118948595,0.782185628742515,0.6845027763755679,0.5683345780433159,0.1018450184501845,0.7187919463087248,0.9010989010989012,0.8798283261802575,0.693069306930693,0.1541353383458646,0.4930325149303251,0.720771850170261,0.6244224422442244,0.5318532818532818,0.0890725436179981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027955595170569,0.0054337357947345,0.0083926161215356,0.0110226141373915,0.0137731799363219,0.0163537126797279,0.018800787104536,0.0213248129357601,0.0240105486957232,0.0264809147021792,0.0289571331925623,0.0315480406952272,0.0338421999485993,0.0361118261854502,0.0386575076840563,0.0408838180277381,0.0432612657388999,0.0457304105155045,0.0478392816312955,0.0503031944820688,0.0676849512434486,0.0840860327594327,0.0995740484283855,0.1143500352412712,0.1288291139240506,0.1461841103308232,0.1611920979480977,0.1760711777101381,0.1898903164482607,0.2032713036949643,0.2190310039953047,0.2333059246115895,0.2470475651928054,0.2592847769028871,0.2705022670246951,0.2820828072040938,0.2939319576129392,0.3053194837897387,0.3149154349626235,0.3246259687038542,0.3331675092842185,0.3407209019461077,0.3486386109336929,0.355096075518712,0.362323592994729,0.3680345040049291,0.373757728990913,0.3796856106408706,0.3859183382758576,0.3907109955521533,0.3909302670023832,0.3907949445163422,0.3899301054055577,0.3897572331227136,0.3900595476752647,0.389037740182194,0.3868200737493472,0.3876480041982354,0.3878444940603003,0.3883244206773618,0.388449529792286,0.3893025736238124,0.390042709990788,0.3909407977106063,0.3915249753493182,0.3931070496083551,0.3924238531586309,0.3960815294675304,0.3999010146003464,0.4024541845450535,0.4047882646000553,0.4052856293574015,0.408954652720199,0.4126028649801889,0.4140742128935532,0.4178220168266382,0.4217198716969604,0.4257125530624621,0.4322545255074054,0.4310940499040307,0.0,2.8266941495956,65.0246701114785,231.6112716651928,339.21786214355217,NC_public_implementation,55 +100000,95757,48920,458.7758597282705,7916,81.23688085466337,6246,64.60102133525486,2495,25.70047098384452,77.34687979821054,79.70548829096055,63.33382307926016,65.08094083125053,77.04697544416194,79.40413779654182,63.223297855232566,64.97273667631909,0.2999043540485928,301.3504944187275,0.1105252240275902,108.20415493144252,130.28246,91.32532321450294,136055.28577545247,95371.9552769019,302.89593,187.95937176096305,315663.13689860795,195633.73096584372,375.73742,180.3913542082388,388264.9832388233,185259.46719423175,4473.59814,2023.9333991176368,4631222.939315141,2073013.36624752,1489.73763,649.7772788406432,1539912.1735225625,662733.1149061089,2439.80444,1015.1295127003048,2514237.538770012,1030195.5596699736,0.4309,100000,0,592193,6184.331171611475,0,0.0,0,0.0,24894,259.3230782083816,0,0.0,34508,356.2246102112639,1797786,0,64722,0,0,8685,0,0,51,0.5325981390394435,0,0.0,0,0.0,0,0.0,0.07916,0.1837085170573218,0.3151844365841334,0.02495,0.3215790107112769,0.6784209892887231,25.193285832923863,4.393542811399842,0.3275696445725264,0.2222222222222222,0.2225424271533781,0.2276657060518732,10.951967646787342,5.601220228310363,26.54841476250124,14627.556188681836,70.86047867077481,16.443745401424447,23.24959641112758,15.90877997893636,15.25835687928643,0.5640409862311879,0.8061959654178674,0.696969696969697,0.5787623066104078,0.1115107913669064,0.7364822871348664,0.9405737704918032,0.8549618320610687,0.7366771159874608,0.1546762589928057,0.5042053051541945,0.7333333333333333,0.6425755584756899,0.5330915684496826,0.1007194244604316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002584005512545,0.0053340364255871,0.0080913705583756,0.0105491021067715,0.0134898673394644,0.0161402008105741,0.0186257518605362,0.0215087790935075,0.0242276788452495,0.0268767661874923,0.0296912966361483,0.0321994393847607,0.0345118364492708,0.0369401293831637,0.0392998678996037,0.0417721911535161,0.0439059749404577,0.0464339436692774,0.0487115250678281,0.0509424138290117,0.0671280349053255,0.0839610009205791,0.099498783659089,0.1139001009081735,0.1284321475625823,0.1467899603698811,0.1622939524036677,0.1767501701258931,0.1904904146708343,0.2030121901578936,0.2183936486079435,0.2330256587622403,0.2466804302944692,0.2593964020054395,0.2711437865400677,0.2839875141130371,0.2947436526705635,0.3047463727364751,0.3146811070998797,0.3240558254652122,0.332731418782049,0.3412926937753119,0.349133796729387,0.3559263079617147,0.3620538859600107,0.3678015144985532,0.3733613792585358,0.3792322183188228,0.3847279982380452,0.3899696449782235,0.3894224940390392,0.3888957790731324,0.3885864967003215,0.3888969227209625,0.3874542587689287,0.3861864718880432,0.385905614268939,0.3858218422049786,0.3874198305724183,0.3888361257951796,0.3892536639512351,0.3900307814516929,0.3913382179551962,0.3914355187319884,0.3929203110992658,0.3951082091517034,0.3948929064947029,0.3959143348843138,0.3981958305217175,0.4011101725594304,0.4040754089270862,0.4052818416523235,0.4053311173612887,0.410617968870396,0.4149157675563127,0.4223446293857023,0.4299906861223223,0.4262023217247098,0.4278423589452793,0.4196392785571142,0.0,2.4291228327014287,71.0277720313385,236.7302391389425,350.93988330234555,NC_public_implementation,56 +100000,95744,49123,461.33439171123,7935,81.41502339572193,6202,64.09801136363636,2451,25.09817847593583,77.36211040614715,79.72212811979614,63.32787542470121,65.07484336253331,77.04702632807745,79.41171537181371,63.21147898247567,64.96402325434909,0.3150840780697024,310.4127479824257,0.1163964422255432,110.82010818422816,128.94706,90.45201435449664,134678.9981617647,94472.77568776808,302.3901,187.12074951520628,315177.27481617645,194783.98595756004,369.46175,176.27610882784802,382172.1570020054,181216.2880276148,4419.16634,2005.909621573508,4569366.341493984,2048835.8451427836,1502.98758,660.3788353733812,1553460.279495321,673395.9990948583,2409.53602,1013.7103037824596,2470228.776737968,1017214.3938804254,0.43343,100000,0,586123,6121.7726437165775,0,0.0,0,0.0,24855,258.90917446524065,0,0.0,34008,351.48938836898395,1802987,0,64872,0,0,8657,0,0,52,0.5431149732620321,0,0.0,0,0.0,0,0.0,0.07935,0.1830745449092125,0.3088846880907372,0.02451,0.3264891966097648,0.6735108033902352,25.06305200397753,4.460699508408768,0.3218316672041277,0.2225088681070622,0.2233150596581747,0.2323444050306352,11.338563148023296,5.763923628298372,26.213450128877547,14703.979942618762,70.37367901220675,16.261553095941373,22.654444698372,16.04452205573013,15.413159162163238,0.562721702676556,0.7811594202898551,0.7004008016032064,0.582234559333796,0.1263537906137184,0.7245735944409349,0.9232505643340858,0.8647619047619047,0.75,0.157190635451505,0.5072526520891968,0.7139807897545357,0.6417403127124405,0.5351111111111111,0.1178637200736648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030191584855576,0.0058206745492526,0.0083240280174601,0.0108009795055732,0.0134988047403489,0.0161017639630097,0.0186710990557379,0.0213693539165237,0.0235784910174742,0.02613254689932,0.0285400771187135,0.0308975491505228,0.033785313059402,0.0362317347128047,0.0389299426165214,0.0413026621866115,0.0435219318228886,0.0457455307581369,0.048264534974376,0.0506776112251169,0.0685889673027936,0.0846473376371988,0.0999234343370777,0.1152600134634803,0.1293881856540084,0.1473372468136866,0.1624546438347444,0.1770568255624527,0.1905957787870692,0.2038268479986271,0.2195374190698827,0.2332864256332539,0.2470101746558572,0.2598947333865867,0.2717974126066612,0.2840215041844482,0.2963567095310981,0.3073104286743516,0.3172113190842121,0.3262981804848985,0.3353136689481059,0.3433055935952807,0.350314398380049,0.3568017088273412,0.3636695151154169,0.3707026333325107,0.3767785285379398,0.3825351107486044,0.3879493697152046,0.3934892081576547,0.3932432614828112,0.3921200750469043,0.3918100588625552,0.3915185233479665,0.3906780670916999,0.3898523786847724,0.3887732566453232,0.3891423583087642,0.3891611267219519,0.3904910226804862,0.3914122424424726,0.3921149083704804,0.3941101044710234,0.3944206104984165,0.3945816617526221,0.3960123663802138,0.396312308529218,0.3993682880606443,0.4035718059811899,0.4076359582769329,0.4103663822603458,0.4126309074477699,0.4141203264376542,0.4141221374045801,0.4179245283018868,0.4202759448110378,0.4215807347946897,0.421669698807358,0.4175824175824176,0.4189769621241702,0.0,2.6775664933523813,69.707904169135,237.2321359872365,347.97275936414945,NC_public_implementation,57 +100000,95754,49157,460.9937966037972,7893,81.00967061428243,6236,64.46728074023017,2484,25.544624767633728,77.32840490063373,79.68815369997972,63.31625382636724,65.06430514106982,77.02810313613662,79.38553336968361,63.20613151295524,64.95553907580157,0.3003017644971066,302.6203302961079,0.110122313411999,108.76606526825584,128.63906,90.28516352326368,134342.81596591265,94288.2209884326,304.39394,189.23609205434252,317236.199009963,196972.7998551941,378.49424,182.265535232173,390136.3807256094,186521.69764100577,4422.96617,1995.315591838139,4580570.315600392,2045341.2183690916,1454.55028,635.9161939432475,1507395.8581364749,652491.0269600098,2436.99516,1010.9956780222396,2510138.166551789,1028015.502982168,0.43298,100000,0,584723,6106.491634814212,0,0.0,0,0.0,25046,260.8872736386991,0,0.0,34721,357.60385989097057,1798857,0,64786,0,0,8662,0,0,53,0.5430582534411095,0,0.0,0,0.0,0,0.0,0.07893,0.1822947942168229,0.314709236031927,0.02484,0.32732516222062,0.67267483777938,25.139366549226597,4.335531011361974,0.3195958948043618,0.2301154586273252,0.2217767799871712,0.2285118665811417,11.025885019101036,5.641448886829198,26.585997521562145,14699.753718717078,70.91239381880214,17.100016058879326,22.88692342488918,15.826112576510152,15.0993417585235,0.5570878768441309,0.7804878048780488,0.7049673858504767,0.5628070175438596,0.106290672451193,0.7344423906346272,0.926,0.8626373626373627,0.707936507936508,0.1335877862595419,0.4946889226100152,0.7026737967914438,0.645473393227367,0.5216216216216216,0.0999107939339875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002654965900915,0.0053652203898659,0.0080108029078503,0.0109046931848208,0.0136212894956358,0.0162055899608865,0.0187428618045358,0.0212459672479274,0.0238810852808276,0.0265011157287039,0.0292040387473732,0.031737067991868,0.0339678524048992,0.0363080155738211,0.0385532222279552,0.0411080676003927,0.0436312820247399,0.0463054187192118,0.0489343350895241,0.0513242446650072,0.0684702738810955,0.0847252000209172,0.100457147650303,0.115441617002491,0.129940466782572,0.1484785388900045,0.1638866207861892,0.1777063556255587,0.1912818705205028,0.2042829721295829,0.2199984919805681,0.2351496396961762,0.2488357923140531,0.2611101996171725,0.2733257736725639,0.2847109131797888,0.2963909757649501,0.306951871657754,0.3167183400906272,0.3257714704938328,0.3340125264827442,0.3424191000058517,0.3507227488151658,0.3568795552513718,0.3638974059473402,0.3699110239038416,0.3750674581759309,0.3799300984744119,0.3850879243616717,0.390204221998836,0.390068622683309,0.3899594180493057,0.3904705333276762,0.3905606772192265,0.3902999552305626,0.3891864438082925,0.3882993110690363,0.3894265706546871,0.3904199024122053,0.3907257412761983,0.3916456458717668,0.3924892320517655,0.3931564685865524,0.3937554791287342,0.394836713481109,0.3963381093328443,0.3974788712218879,0.3985797696070696,0.4022879267863428,0.4038553639846743,0.4064058567833448,0.4106971793507185,0.4120542757967813,0.4178500534432738,0.420644673409585,0.4194047619047619,0.4185185185185185,0.422607976854722,0.4205633802816901,0.4280031821797931,0.0,2.5716000418112235,71.61149340904602,236.85604566792995,348.21751706033217,NC_public_implementation,58 +100000,95723,49290,462.64743060706417,7870,80.85830991506744,6221,64.33145638979138,2541,26.127471976432,77.31464774318667,79.68129287810002,63.30648041847581,65.05628671202835,77.00098929102008,79.36643284113063,63.19114561660571,64.94393240653797,0.3136584521665924,314.86003696939235,0.1153348018700981,112.35430549038485,128.5141,90.23204387178689,134256.23935731224,94263.702424482,301.54892,187.49144238416636,314378.0387158781,195224.3581836825,371.64392,178.249981074946,383828.7976766295,182877.61908726607,4513.45224,2037.427689931241,4669826.133740063,2083471.802462316,1505.63512,660.1402382186188,1556489.1823281762,673324.6400001956,2492.96028,1038.947128634153,2565224.5750760008,1050378.6138376785,0.43424,100000,0,584155,6102.556334423284,0,0.0,0,0.0,24783,258.21380441482194,0,0.0,34194,352.8305631875307,1800779,0,64702,0,0,8628,0,0,55,0.57457455366004,0,0.0,0,0.0,0,0.0,0.0787,0.1812361827560795,0.3228716645489199,0.02541,0.3210203344964505,0.6789796655035495,24.985599719008185,4.467537435211091,0.3266355891335798,0.2150779617424851,0.2314740395434817,0.2268124095804533,11.0617163927855,5.662303280598249,27.118988347619425,14702.837556316226,70.49516933147744,16.000553722777475,22.92538337564505,15.648337797044016,15.920894436010895,0.5537694904356213,0.7869955156950673,0.6909448818897638,0.5754783841247342,0.1222222222222222,0.7256020278833967,0.921940928270042,0.8702594810379242,0.7458745874587459,0.1533333333333333,0.4953693732500538,0.7129629629629629,0.6322664924885696,0.5288808664259927,0.1140350877192982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002846578534164,0.0054850908943435,0.0083030512190665,0.0108728787724824,0.0134289638333587,0.0159643832267003,0.0186286612052519,0.0210736966776255,0.0236031320916729,0.026094345030916,0.0284416556447561,0.0311216527024806,0.0337389551210179,0.036228374772027,0.0388938779302015,0.0416425440410222,0.0442608011267138,0.046697936988917,0.0489471221338324,0.0511372516332037,0.0679684644703179,0.0848520375584888,0.1006242459214184,0.11536358090911,0.1302440361941321,0.1480909408292161,0.1638378498869534,0.1780728562149269,0.1917686674862365,0.2031895598793719,0.2184365495373066,0.2338885336858873,0.2481856815952925,0.2604897404419501,0.2726981991420285,0.284413348881115,0.2957741751418118,0.3058090864988662,0.315379800853485,0.3254154312900779,0.3344357796035835,0.3421836519291661,0.3507622945957169,0.3575933779449043,0.364522606949431,0.3699426962406758,0.3758804802847617,0.3812454604533812,0.3870833981236718,0.3912699041432306,0.3917345123200517,0.3907886035489915,0.3909611209788829,0.3910873182377197,0.3915803591386633,0.3904166410618816,0.3899950738133452,0.3905327395678707,0.3913543580147298,0.3925267159147959,0.3929378531073446,0.392339935239079,0.3939712435886656,0.3941592721554532,0.3943372503505972,0.395135503485873,0.3956391669543205,0.3985989603144415,0.4025045988396774,0.4045822967659096,0.4076791730121371,0.410361354946416,0.4140384615384615,0.4182976079527803,0.4204163868368032,0.4201497946363856,0.4185718759787034,0.4161752316764954,0.4233721922092692,0.4247397918334668,0.0,2.563446742400216,69.53895737353771,235.98022869801076,352.7752601894126,NC_public_implementation,59 +100000,95809,48774,457.33699339310505,7755,79.40798881107203,6080,62.81247064472023,2466,25.300337129079733,77.3504688262772,79.68228581881029,63.33176974345843,65.05982450670271,77.04227025229147,79.37289530934709,63.2178215419421,64.94801809721409,0.3081985739857202,309.39050946319924,0.1139482015163295,111.8064094886222,127.94254,89.78275099595378,133539.1664666159,93710.1430929806,299.60685,186.54335456975315,312058.44962373056,194051.5514584323,363.56644,174.89721551249315,375076.5794445198,179289.96121371264,4362.83458,1994.620594870306,4510319.082758405,2038987.0917553955,1470.93585,656.979120561745,1519655.7630285255,670474.6327730999,2431.91258,1025.9673343476402,2498176.1629909505,1037966.6408056356,0.43027,100000,0,581557,6069.962112118903,0,0.0,0,0.0,24726,257.3870930705884,0,0.0,33455,344.83190514461063,1807166,0,65063,0,0,8566,0,0,54,0.5636213716874198,0,0.0,0,0.0,0,0.0,0.07755,0.1802356659771771,0.3179883945841392,0.02466,0.3320690077083078,0.6679309922916922,25.12122424155761,4.469425006458729,0.3256578947368421,0.225,0.234703947368421,0.2146381578947368,11.24122633765329,5.712380491102072,26.553821351653777,14589.44063831171,69.37885053632591,16.344743887561958,22.35729870357192,14.74436734467917,15.932440600512878,0.5626644736842106,0.7916666666666666,0.7126262626262626,0.5862068965517241,0.1135248773651016,0.7155172413793104,0.920570264765784,0.8722109533468559,0.7253086419753086,0.1424050632911392,0.5069569120287253,0.7194982896237172,0.6597175521183591,0.5402650356778798,0.1053105310531053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028466073707883,0.0057187471482311,0.0083730843397949,0.0108816028773762,0.0139552861240515,0.016540710109796,0.0188975574932435,0.0215464422841271,0.0242321377448775,0.0267387343119792,0.0290187955661741,0.0314730194588489,0.0338026141236721,0.0362615859938208,0.0387566519533022,0.041039841296082,0.0435178667549997,0.0459802304716266,0.0482727801795809,0.0507511165245635,0.068142460723153,0.0846167518793847,0.1001624312287136,0.115290458829339,0.1296042650033715,0.1472928842434554,0.1626072295799887,0.1763491877745981,0.1894558149963165,0.2018690787499464,0.2179626540386374,0.2320733500562235,0.2456508274565626,0.2576226344961791,0.2697834602350248,0.2820524186845459,0.2934832363875894,0.3038377970662073,0.3142061914228912,0.3241648043092086,0.3323838636468899,0.3401160749806932,0.3478770513154467,0.3548054439714611,0.3608394160583941,0.36700794111472,0.3730820860881456,0.3784646010923383,0.3840351082200496,0.388130029648454,0.3878565926566575,0.387042845102726,0.3872851990665441,0.3867096231152133,0.3868821150948182,0.3858780093838935,0.3836800305581639,0.385261733000974,0.3859483410043278,0.385802302814751,0.3864214034228908,0.3889109618975724,0.3909719004086447,0.3919560667101798,0.3929963916402296,0.3949301983835415,0.3959658472293851,0.3970895286301803,0.398274344074661,0.4028127372248192,0.4034654596991724,0.4057538625466169,0.4100714873157461,0.4094343943210441,0.4158546968120329,0.4166666666666667,0.4161032575291948,0.4123376623376623,0.4124588364434687,0.410019267822736,0.0,2.46304274981584,71.76118591286023,233.13388015452705,331.3865073961797,NC_public_implementation,60 +100000,95695,49386,464.1308323318878,7755,79.43988714143896,6040,62.30210564815299,2399,24.56763676263128,77.30949638025908,79.67082447217847,63.31695901961641,65.06020124215763,77.01390403142999,79.3783777720675,63.20703569450262,64.95473287182689,0.2955923488290892,292.44670011097185,0.1099233251137903,105.4683703307404,128.80934,90.52555210169578,134604.04409843776,94597.99582182536,305.77095,190.4483760771272,318732.3057631015,198221.7525232533,373.90252,180.18188463712949,385701.5831548148,184380.02543431948,4323.12222,1972.6865105923368,4463274.612048697,2007100.61193619,1450.57786,639.956825081194,1495860.0344845604,648771.8533687162,2351.75512,989.1936569612004,2410431.161502691,994021.6552971328,0.43484,100000,0,585497,6118.365640838079,0,0.0,0,0.0,25157,262.05130884581223,0,0.0,34320,353.59214170019334,1796808,0,64621,0,0,8619,0,0,71,0.7419405402581117,0,0.0,1,0.0104498667641987,0,0.0,0.07755,0.1783414589274216,0.3093488072211476,0.02399,0.3245849609375,0.6754150390625,24.95316188891157,4.424554984418188,0.3284768211920529,0.2221854304635761,0.2254966887417218,0.223841059602649,11.437026990295273,6.015160074860896,25.760220853290665,14688.163548105233,68.74746274746427,15.89911371980918,22.706000890021205,15.123088250666433,15.01925988696746,0.5564569536423841,0.7712369597615499,0.6995967741935484,0.5850591715976331,0.1079295154185022,0.7346177750155376,0.9312638580931264,0.8941398865784499,0.759375,0.1488673139158576,0.4917625818099752,0.6902356902356902,0.6288659793814433,0.5310077519379846,0.0959164292497625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002673661396988,0.0056868867082961,0.0081973865757649,0.0109388965629316,0.0134295735271692,0.016204057121337,0.0187535035417622,0.0214459971214796,0.0239871632394423,0.0266193161465955,0.0293671456979437,0.0317373938578747,0.0342728459932749,0.0365701692052605,0.0389847464444467,0.0413601421722598,0.0436767095498814,0.046099437887619,0.0484445968839969,0.0508469279329958,0.0685470817364425,0.084478589895226,0.1001153765470946,0.1144960302855039,0.1287305169468289,0.1478206606238167,0.1634515396532331,0.176867634064027,0.1910968196822887,0.2036246648793565,0.2193610946506491,0.2337119530497114,0.2473114768373389,0.2591457407447949,0.2713376357348957,0.2834270254687379,0.2942648685489548,0.3040372285884911,0.3151189353214606,0.3248815953945482,0.3342059538978339,0.3423446628654388,0.349621342308923,0.3567380655076361,0.3638431964181429,0.3711561735865833,0.3772610466938264,0.3816324708942757,0.3864887319555509,0.3922495399240047,0.3923287893321804,0.3916200731690481,0.3917040263615664,0.3917803848775323,0.3912556890248452,0.3892786804529788,0.387868173857666,0.3876914444151043,0.3879788934531892,0.3894670621011953,0.3899696220683409,0.3917482601152611,0.3925318568922888,0.3934696272226735,0.395178731987072,0.3967294142391419,0.397116493656286,0.4011987441727714,0.4040497008743672,0.4064333320030331,0.4098390720278758,0.4122529855941734,0.4151626842907981,0.4166346079864584,0.4177443895017116,0.426370476531709,0.4275552806556363,0.4359559892048993,0.4352187238785177,0.4425087108013937,0.0,3.1881115015227683,70.34306719328754,221.2195910081225,342.0116294315726,NC_public_implementation,61 +100000,95726,49046,461.6614086037232,7872,80.69907862022858,6184,63.90113448801789,2464,25.25959509433174,77.40440741590693,79.76001147572026,63.3594678928421,65.09844459053193,77.08855436967998,79.44532312286866,63.24180819385339,64.98434002980997,0.3158530462269482,314.68835285160424,0.1176596989887102,114.1045607219553,129.17058,90.59711041088974,134937.8225351524,94642.1143794682,306.18674,190.3068193567361,319128.4186114535,198074.66033965288,375.67299,180.04169084182263,388291.8538328145,184880.5203445929,4461.18619,2033.04538532471,4608631.939076113,2072078.8556136368,1497.14404,661.1192415208262,1543881.7876021145,670531.6631945594,2426.71306,1028.6595921478524,2489277.500365627,1035896.2827828662,0.43147,100000,0,587139,6133.5373879614735,0,0.0,0,0.0,25175,262.24850092973696,0,0.0,34499,356.2041660572885,1800466,0,64762,0,0,8678,0,0,59,0.6163424774878299,0,0.0,1,0.0104464826692852,0,0.0,0.07872,0.1824460565045078,0.3130081300813008,0.02464,0.3277027027027027,0.6722972972972973,24.749511639887672,4.5248044719227,0.3229301423027166,0.2223479948253557,0.2307567917205692,0.2239650711513583,11.3104239689074,5.721113230241012,26.380629428816047,14591.596237818396,70.18220167938395,16.343662207869063,22.58729767998461,15.531949251609706,15.719292539920565,0.5548188874514877,0.7854545454545454,0.6875312969454181,0.5913357400722021,0.1114225648213034,0.7174311926605504,0.92901878914405,0.8684719535783365,0.7197640117994101,0.1166666666666666,0.4963728291932293,0.7087053571428571,0.6243243243243243,0.5497131931166348,0.1100266193433895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029159537092348,0.0055535850012667,0.0081765982916387,0.0104605697455948,0.0132888676501987,0.0158794788273615,0.0185885350318471,0.0210809873167147,0.0236329082883766,0.0261754924533128,0.0288305831710566,0.0312936201658592,0.033813097563483,0.0361630685563612,0.0383631185769119,0.0406251938224896,0.0428213412866078,0.0451551332455057,0.047515615094418,0.0495990001041558,0.0668197953643767,0.083439730414216,0.0997912492525884,0.1147537536274551,0.1286775944763611,0.147152132992111,0.1624403183023872,0.1773142528588769,0.1908191396148996,0.2028530058454443,0.2181827974363117,0.2326583182708646,0.2455476136079289,0.2583400783147026,0.2701319569021494,0.2827452500969368,0.2941104239691009,0.3049592727600018,0.3142448590494348,0.3236082474226804,0.3318605054652709,0.3403917169167484,0.3481431576956717,0.3550231451024485,0.3615558142919516,0.3682785442640706,0.3739679759819865,0.3791226954863319,0.3846223533675001,0.3892624528650159,0.3892445927041859,0.388177529604313,0.3876964678046307,0.3878597849959542,0.3872002852304126,0.3851717902350813,0.3837345767120246,0.3847038905964924,0.3859907266412305,0.3867188897235039,0.3883938642003158,0.3885775605103135,0.3891309380985456,0.3892804237554428,0.3903457934898097,0.3923074906268844,0.3930113522633038,0.3957754483455418,0.3978893124382324,0.4021187287627423,0.4089096658875292,0.4115283655649006,0.4153154294400811,0.412878497508624,0.4159032958730758,0.4258333333333333,0.4261232051875868,0.4247553017944535,0.4254901960784313,0.4252,0.0,2.674507773176245,71.85162504647185,231.5459315581419,343.6969765429901,NC_public_implementation,62 +100000,95731,49146,460.7598374612195,7905,81.24849839654867,6210,64.09626975587845,2468,25.300059541841204,77.33232137485312,79.69879845049459,63.31916690730778,65.07128238294656,77.0254476983105,79.39457671195233,63.205132023586266,64.96177585084855,0.3068736765426223,304.2217385422674,0.1140348837215157,109.50653209800976,129.8,91.07005999803208,135588.2629451275,95131.21141326432,303.42942,188.5127979872284,316216.5233832301,196175.48419762612,370.62961,177.74850289980603,382615.673083954,182101.85486934936,4465.32991,2018.2600146799216,4611027.389246952,2054851.1631808924,1516.04185,665.4500240072481,1565224.3056063345,676775.8480049724,2423.7256,1010.88450695984,2486624.93863012,1017196.200218756,0.43336,100000,0,590000,6163.102861142159,0,0.0,0,0.0,25029,260.6470213410494,0,0.0,34076,351.349092770367,1797491,0,64657,0,0,8637,0,0,56,0.5849724749558659,0,0.0,1,0.0104459370527833,0,0.0,0.07905,0.1824118515783644,0.3122074636306135,0.02468,0.3217203267659779,0.678279673234022,25.334906373375876,4.430200162151881,0.3238325281803542,0.2180354267310789,0.2296296296296296,0.2285024154589372,11.212749161255289,5.812517119810007,26.19131933467517,14730.629576327734,70.34880179899375,16.167049164830726,22.829124563285845,15.878453858520714,15.474174212356465,0.5516908212560386,0.7754800590841949,0.7001491795126803,0.5687103594080338,0.1129032258064516,0.7177914110429447,0.8987603305785123,0.8706563706563707,0.6909620991253644,0.1649122807017544,0.4925764192139738,0.7068965517241379,0.6409912926992632,0.5297397769516728,0.0999123575810692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002726093477644,0.0056801468723691,0.0085188043213386,0.0114033661273274,0.0141613087002523,0.0168702437831725,0.0194990617606265,0.0220012455461515,0.0245695472577808,0.0269556404140091,0.0293605068377996,0.0318464144551101,0.0341600855544587,0.0368100686970224,0.0394028187614783,0.0418191214470284,0.0444538789711303,0.0467396379104632,0.0491062149241322,0.0514107758486006,0.0687970435018634,0.0854784028126569,0.1007887725775661,0.1157999894842,0.1297452336763961,0.1480376600021157,0.1640154931819387,0.1784600317233891,0.1920164072764562,0.2049483607348541,0.220496191840736,0.2349305653270411,0.248702408026028,0.260286411325172,0.2716235553109521,0.283853387831057,0.2952338430628418,0.3062159484893512,0.3162202972264166,0.3261024019068573,0.3339548781617715,0.3420094371655719,0.3495594087549744,0.3569492094719416,0.3641879978111509,0.3702634338947498,0.3763329031287982,0.3818881092164079,0.3867308041386821,0.3916420118343195,0.3920580147732787,0.3923787210584344,0.3916324601864782,0.3912150235828583,0.3903561007562675,0.3890227618068239,0.3882272503219857,0.3894332910621058,0.3902493321460374,0.3911507915165205,0.3918404283398062,0.3929523657925106,0.3957414480764766,0.3962038727711278,0.3980015037229269,0.3993061031383063,0.4006715646883251,0.4059531751326281,0.4082680930957525,0.4094181043149555,0.4120869004878947,0.4121869602763385,0.4145154058036,0.4164345403899721,0.4174102904879438,0.4167957117331745,0.4156063161122183,0.4172413793103448,0.4207182320441989,0.422007722007722,0.0,2.939398936225218,71.50644505289678,229.8704793295433,348.7137957228243,NC_public_implementation,63 +100000,95718,49271,464.41630623289245,7840,80.48642888484925,6154,63.62439666520403,2457,25.167680060176767,77.41699606751023,79.77049128967606,63.36600846061516,65.10077008183639,77.11140080470422,79.46707917474019,63.25260813758226,64.99146384723406,0.3055952628060083,303.41211493586684,0.1134003230328986,109.3062346023288,129.09974,90.63022076366302,134875.09141436304,94684.61602171276,303.81661,188.83807104782824,316732.79842871765,196610.628144997,369.48546,177.12264725144743,381814.7161453436,181782.1277543525,4454.73822,2010.2306724103412,4607074.395620469,2053210.3913687507,1491.47938,656.8693755415461,1534452.9973463716,662537.3536143282,2413.09218,1012.7345510087998,2473788.7126768213,1017006.0335720362,0.43364,100000,0,586817,6130.6859733801375,0,0.0,0,0.0,24979,260.25407969242985,0,0.0,33823,349.3177876679412,1802940,0,64729,0,0,8473,0,0,72,0.7417622599720011,0,0.0,0,0.0,0,0.0,0.0784,0.1807951296005903,0.3133928571428571,0.02457,0.3316382128586996,0.6683617871413003,24.89054799462261,4.43694414397278,0.3321416964575885,0.2164445888852778,0.2274943126421839,0.2239194020149496,11.04278903881216,5.591630842143071,26.14403961114421,14667.4629172881,69.53149202496326,15.784409184918108,23.113703665608057,15.2589460373234,15.37443313711373,0.5596360090997725,0.7807807807807807,0.7147749510763209,0.5573294629898403,0.125,0.7074742268041238,0.91196388261851,0.8286252354048964,0.7048611111111112,0.1758620689655172,0.5097783572359843,0.7154105736782902,0.6748182419035029,0.518348623853211,0.1117117117117117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026518755440393,0.0053997102594494,0.0079519636481661,0.0104692370962337,0.012902635431918,0.0155744213033652,0.0179801851021323,0.0206572769953051,0.0232591411694974,0.0256174165694759,0.0280160267248711,0.0305533888911695,0.0330807899092282,0.0355601783673007,0.037767965832422,0.0399706523648613,0.0421580097112507,0.0444315376796863,0.0469667522371306,0.049348890509428,0.0661919032652166,0.0824430516171561,0.0988501405850014,0.1142803054205843,0.1289448147835625,0.1470849551531562,0.1626814054145803,0.17713811237199,0.1906613954482316,0.2035650700358223,0.2190690561323396,0.2344468612364596,0.2480703585328202,0.2608111356335904,0.2729510809236484,0.2853474704769072,0.2969347590959267,0.3068576632897444,0.3160121599854806,0.3255670173912048,0.3345711145815258,0.34255545551281,0.3504460588277053,0.3578001437814522,0.3648896500625539,0.3705050604667217,0.3765533294122064,0.3817110570988636,0.3865048945978143,0.3923489188689706,0.3922284328911037,0.3907626651982379,0.3910805207260828,0.3911588766095508,0.3901745294257803,0.388628865188368,0.3874106591020744,0.3882018689133041,0.3893389390210555,0.3903109492699296,0.3909857571214393,0.3927075098814229,0.3931629312515739,0.3932438478747203,0.395023964931718,0.3962890369789625,0.3970281468781254,0.4002393248519965,0.403263813174832,0.4038392750685585,0.4071610787172011,0.4087400862298397,0.4120875654532837,0.4160656743900567,0.4138451381684428,0.4163013860916953,0.4196606023543801,0.4186515946709729,0.4240437158469945,0.4346343311860553,0.0,2.4893779278632087,68.3314221207026,234.8793085069777,346.2908232678529,NC_public_implementation,64 +100000,95674,49415,463.4801513472834,7937,81.37006919330226,6194,63.94631770386938,2420,24.75071597299161,77.3508434030137,79.73981803171668,63.31502979323547,65.08229372741174,77.04164762612956,79.43669953780346,63.199005365881575,64.9722813317281,0.3091957768841382,303.11849391321743,0.1160244273538921,110.01239568363984,129.66932,90.96500000995051,135532.45395823315,95078.07764904835,305.24832,189.2028475051468,318235.2258711876,196942.63593572637,368.21114,176.52217657290737,380451.7005665071,181035.8231706784,4445.22161,2006.7148285763133,4592473.535129711,2043707.1185236447,1466.90294,642.4858298591055,1513666.6074377573,651972.6151923252,2379.31452,1010.8983979394562,2436934.9248489663,1012799.2309514588,0.43417,100000,0,589406,6160.566089010598,0,0.0,0,0.0,25076,261.26220289733885,0,0.0,33845,349.3321069465058,1796557,0,64595,0,0,8634,0,0,50,0.5226080230783703,0,0.0,0,0.0,0,0.0,0.07937,0.1828085772853951,0.3049010961320398,0.0242,0.3210866443274294,0.6789133556725706,25.139779379608367,4.411171039183801,0.3325799160477882,0.2163383919922505,0.2279625443978043,0.2231191475621569,10.8632468242233,5.523743140474647,25.964148900463275,14722.19018266372,69.71200774524766,15.86777278779786,23.042664167040066,15.282401397863628,15.519169392546084,0.5521472392638037,0.764179104477612,0.6985436893203884,0.5752532561505065,0.1147308781869688,0.711340206185567,0.8995535714285714,0.863265306122449,0.7151702786377709,0.1615120274914089,0.4989228780697975,0.6961883408071748,0.6471337579617834,0.5325779036827195,0.1025869759143621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.004867611118435,0.0077657878975525,0.0104988210423611,0.0133064762253555,0.0159837819115339,0.0185659345703822,0.0208856751843454,0.0234708174389707,0.0260236373691649,0.0287047482309506,0.0313572030155502,0.0338503630865442,0.0366581151670633,0.0392482661822985,0.0419931768841104,0.0446016928958465,0.0473210022627722,0.0497103092461799,0.0520258930712059,0.069326063340854,0.0855889343790247,0.1017466882203514,0.1173054465497469,0.1305297363451251,0.1484471721072959,0.1638338305394243,0.1779730521382542,0.1922118746458242,0.2048303993130098,0.2198979976925482,0.2347131067645721,0.2487127290144893,0.2612280202334289,0.2726711974181325,0.2846983380300441,0.2957257127535972,0.3057761854868692,0.3156142025822877,0.3251875817443381,0.3336230574001321,0.3413736521331458,0.3486899071251497,0.3558929150502636,0.3628097765227129,0.3697417794015997,0.3754118693544143,0.3810021275782554,0.3849334958126993,0.3907892475108754,0.390088156278266,0.3897975507502206,0.3906177230196028,0.3907876261200619,0.3912597394873014,0.3908883198135341,0.3896068885682117,0.3906409286724325,0.3918354061739815,0.3927919217961113,0.3936340220722329,0.395661648177496,0.3968473857649602,0.3982116444803012,0.4003327867271148,0.4017623679531429,0.4025001423771285,0.4052065647990945,0.4086361242759347,0.4100910170162247,0.4120904057365889,0.4161886551943913,0.4190685966016362,0.4190782422293676,0.4211075289209179,0.4273883821411426,0.4302487254750502,0.4319191919191919,0.4296703296703296,0.4335147744945568,0.0,3.142666628664728,67.78276778587758,230.8344868686992,353.89555328364145,NC_public_implementation,65 +100000,95717,48760,458.1108893926889,7811,80.19474074615795,6155,63.656403773624334,2477,25.50226187615575,77.26691653433518,79.62663625477687,63.2951211478972,65.03908524676197,76.96579000373355,79.32178840587197,63.18543413315188,64.93022688036923,0.3011265306016355,304.8478489048989,0.1096870147453188,108.85836639273803,128.67382,90.22305039479409,134431.52209116457,94260.21542128784,302.12887,187.42390445720625,315013.1742532674,195175.56385721057,361.7991,174.12439904752887,372748.7489160755,178051.70374579192,4442.49785,2001.3651181409512,4601532.778921195,2051167.9201614663,1512.53382,658.6297665437153,1564700.2935737644,672587.0289955976,2432.32032,1003.246136144559,2507253.1316276104,1021078.5944077368,0.43128,100000,0,584881,6110.523731416572,0,0.0,0,0.0,24917,259.64039825736285,0,0.0,33320,342.9798259452344,1801698,0,64828,0,0,8639,0,0,53,0.5537156408997357,0,0.0,0,0.0,0,0.0,0.07811,0.1811120385828232,0.3171168864421969,0.02477,0.3277656741709029,0.672234325829097,25.00385203639022,4.45046600276661,0.3345247766043867,0.2125101543460601,0.2294069861900893,0.2235580828594638,11.057641468054875,5.670627951451004,26.388223957716463,14611.266706420703,69.69785004312965,15.54307354671766,23.22543826495385,15.381124034420768,15.54821419703736,0.5452477660438668,0.7737003058103975,0.6945118989800875,0.5428779069767442,0.1182719546742209,0.7136450992953235,0.9024943310657596,0.87109375,0.7084639498432602,0.1522491349480969,0.4880278624292555,0.7081891580161477,0.6360698125404007,0.4929044465468306,0.1095280498664292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024915934043673,0.0053736730576199,0.0081787555302999,0.0104529616724738,0.0129467282305799,0.0155580218504678,0.018084509913859,0.0207225324363777,0.0233994050478926,0.025937602358336,0.0285796293258979,0.0312002710388797,0.033698390662759,0.0361012689518787,0.0385539931289913,0.0407992392135783,0.0431302294756026,0.0455243391293522,0.0480744244062158,0.0501995269700032,0.0681841912916362,0.0848326896306297,0.1006317026590274,0.1153441491488332,0.1294178465174182,0.1469237444178713,0.1610204579958171,0.1750934634187906,0.1881596817486713,0.2013355090823206,0.2165128514749008,0.2316619889251308,0.2458859277491586,0.2585181534417611,0.2696054661670707,0.2824221568518621,0.2939643699884812,0.3042699212278981,0.3141886518053945,0.3240987065406843,0.3329319965732015,0.3418852459016393,0.349955571352408,0.3563036303630363,0.3625270687851286,0.3687849567246552,0.3749968636306611,0.3801385151078402,0.3849610973281203,0.3899526920477585,0.3899431510557661,0.3890618298537611,0.3881349689775335,0.3879136356376413,0.3881562243297737,0.3873234011739874,0.3852665476342303,0.3861512249185317,0.3873206689285776,0.3885330838700392,0.3897866717009628,0.3905234621058087,0.3927906189145712,0.3949756229685807,0.3964016532944323,0.3965689891430378,0.3964944702722994,0.3980263157894737,0.4016361092174662,0.4054504779336994,0.4070026969217892,0.411355987406362,0.4142958063065955,0.414180550174351,0.4174813110983323,0.4183488456424513,0.4199438202247191,0.419361483007209,0.4110205229125667,0.4130177514792899,0.0,2.480468962095689,68.87709086279052,234.1272512115725,347.33707170252904,NC_public_implementation,66 +100000,95699,49205,462.0215467246262,7808,80.29341999393934,6135,63.49073658031954,2445,25.1726768304789,77.288290147924,79.65782960538459,63.294707477804174,65.04403057356417,76.98328301426926,79.35092559493508,63.18356987057509,64.93453977863963,0.3050071336547404,306.90401044951443,0.1111376072290823,109.4907949245396,128.30972,89.99991061861533,134076.34353546015,94044.77645389747,300.69179,187.4991609545327,313573.5587623695,195295.56529261477,367.5654,176.36178936733637,380459.6181778285,181449.68851636155,4466.01626,2025.244668796979,4624771.857595168,2074528.4911741435,1499.57588,659.6864914009478,1547354.883541103,670065.5175337198,2416.1057,1004.519649115986,2489583.903698053,1020438.8298764792,0.43414,100000,0,583226,6094.379251611825,0,0.0,0,0.0,24710,257.54710080565104,0,0.0,33765,349.2095006217411,1800896,0,64812,0,0,8624,0,0,68,0.7001118089008245,0,0.0,0,0.0,0,0.0,0.07808,0.1798498180310498,0.313140368852459,0.02445,0.3193920972644377,0.6806079027355623,25.16907231830492,4.426990441385158,0.3114914425427872,0.2229828850855745,0.2342298288508557,0.2312958435207824,11.154929213014192,5.60871564743489,26.18050348481215,14782.593948973568,70.01758903799872,16.303943378214818,21.84699320293107,15.989759353226912,15.87689310362591,0.5594132029339853,0.7807017543859649,0.706436420722135,0.5983086680761099,0.1148225469728601,0.7174048658764816,0.9224137931034484,0.8539553752535497,0.7521865889212828,0.1419141914191419,0.5035304501323918,0.7079646017699115,0.655148095909732,0.5492565055762082,0.1075837742504409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025825661592683,0.0052513660648209,0.0082091975484028,0.0110018488794977,0.0137295582133268,0.0162408740543127,0.0188719642747904,0.0214668504057571,0.023868178147584,0.0266693956915519,0.0289421362248139,0.0315739771304222,0.0341654500215911,0.0367761403075148,0.0394632340048065,0.0416589156900436,0.0439941603420962,0.0461597534272164,0.0487607002069833,0.0511099531005732,0.0682409215762044,0.0844692924597441,0.1004670199926536,0.11540121020784,0.1300125610901759,0.1487253324299144,0.1638315494393476,0.1783945027433015,0.1924039263488804,0.2051692294476419,0.2205495406116551,0.2351825972028123,0.2491287680780624,0.2620630002299278,0.2732940463732995,0.2863816942983332,0.2974088281014102,0.3079334648999154,0.3188029811685726,0.3283516937957336,0.3365474988686601,0.3447207883622712,0.352633203533099,0.3601947583553739,0.3666170985592745,0.3717953474566838,0.3769137944038012,0.3825565946139302,0.3881379525674217,0.3931823302540722,0.3936408842765256,0.3938254365468899,0.3932082849290227,0.3930206531691932,0.3927433707730733,0.3919653722330904,0.3899735643532822,0.3909611796370602,0.3919953217178927,0.3923299591866089,0.3932416606852782,0.3930171881535182,0.3948319212322255,0.3965141122230968,0.3971749366171677,0.3984201302607831,0.4000114698629351,0.4043301844924871,0.4075386141419866,0.4118260172379234,0.4155202659034253,0.41859964479845,0.4204834605597964,0.4252573359963128,0.4262572989263515,0.4264496197718631,0.4275450932436563,0.4308004052684904,0.433469387755102,0.4371935118823085,0.0,2.3118342226257083,71.26235994198936,238.2721776719358,336.2273306920798,NC_public_implementation,67 +100000,95805,49079,459.30796931266633,8138,83.17937477167162,6393,65.91514012838577,2604,26.68962997755858,77.36488025655099,79.67895803210612,63.35773544642036,65.07108109542447,77.02264490419859,79.33721085810097,63.2296085439976,64.94660077330519,0.3422353523524037,341.74717400514965,0.1281269024227569,124.4803221192825,129.76106,90.97476716068785,135442.88920202496,94958.26643775152,307.19411,190.93003125168997,319827.59772454464,198472.71031836627,373.60914,179.88607748611756,383829.36172433593,183290.61520079745,4618.66677,2127.652893988984,4766753.196597255,2166838.7892256603,1548.04364,690.6063140353583,1595890.8929596576,701007.4296738647,2556.49376,1093.9530968736449,2623219.4561870466,1102815.5793490396,0.43205,100000,0,589823,6156.494963728406,0,0.0,0,0.0,25250,262.7002766035175,0,0.0,34402,353.1026564375554,1798088,0,64738,0,0,8632,0,0,65,0.6784614581702416,0,0.0,1,0.0104378685872344,0,0.0,0.08138,0.188357828954982,0.3199803391496682,0.02604,0.3332552418882511,0.6667447581117488,24.84597544051761,4.519698024816233,0.3167526982637259,0.2219615204129516,0.2322853120600657,0.2290004692632566,11.093127753880829,5.651498263520458,28.172914782774868,14666.82650475072,73.04110069305648,16.979729876860542,22.927252972026253,16.596077303070874,16.538040541098827,0.553887063976224,0.7801268498942917,0.7037037037037037,0.5867486338797814,0.101010101010101,0.6992009132420092,0.9030303030303032,0.8743169398907104,0.6981132075471698,0.115727002967359,0.4990303813833225,0.7142857142857143,0.6402439024390244,0.5489478499542544,0.0966898954703832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028360174212498,0.0057078551441664,0.0080871012257488,0.0108682403607849,0.01369723716456,0.016250560013033,0.0192358661746416,0.0220307491271413,0.0246360811252862,0.0272275960898715,0.0298856229246095,0.0324705978941318,0.0346472069479418,0.0373004518459812,0.0399859806822047,0.0425127755123109,0.0448719937936384,0.0473012879627806,0.0493027216182258,0.0518052231817708,0.0695867147893935,0.0855303046141623,0.1018952132507778,0.1166691171837257,0.1306404044659785,0.1493959107806691,0.1652857536394651,0.1792723638605966,0.1928854935768853,0.2053441330247707,0.2206857216650165,0.2348761760570996,0.2490109125690187,0.2616144399283248,0.2731671376887296,0.2850123393942076,0.2956030234787843,0.3052733321345082,0.3151923839746132,0.323864676799121,0.3323351908802923,0.3402414933782188,0.348454193731587,0.3554855479558712,0.3619983221680506,0.3684444225171444,0.3743250523045314,0.379508405501783,0.3850002592419764,0.3888412017167382,0.3882963662104766,0.3873912383999117,0.3863649214067624,0.3864266128915261,0.3862064845651817,0.3857950083911992,0.3844302788844621,0.3857057792186311,0.3871234576411387,0.3882643317839513,0.3896387003829094,0.3905874819913558,0.3914749231258615,0.3914186035974809,0.3920534629404617,0.3925707049387927,0.3922742580812297,0.3939297429854454,0.397686009255963,0.400727125833165,0.4014205468641196,0.4039483675018983,0.4051818827938231,0.4069821930646673,0.4042573778422835,0.4044616876818622,0.4068220935690815,0.4091193004372267,0.407136836189941,0.4074074074074074,0.0,3.1875518630842694,76.64881525144271,237.90969967448743,351.7408486437936,NC_public_implementation,68 +100000,95637,49329,463.0320900906553,7787,80.04224306492257,6139,63.59463387601033,2464,25.408576178675617,77.2563444549925,79.6657964843909,63.27473565930678,65.05533795488519,76.95281277488041,79.3598898535834,63.16356160741078,64.94541302099898,0.3035316801120871,305.9066308074989,0.1111740518960004,109.92493388620515,126.84474,89.139162698247,132631.2201344668,93205.5121974205,305.72129,190.48456934062605,319059.882681389,198566.88526368036,370.04523,177.38866053625384,382772.9121574286,182353.5993330224,4422.39864,1993.7842021198408,4582331.085249432,2042992.618462354,1516.28166,658.2251444560801,1568376.2874201406,671243.8519190254,2426.84216,1008.5918178681536,2503711.074165856,1026992.882993822,0.43371,100000,0,576567,6028.691824293945,0,0.0,0,0.0,25149,262.3357068916842,0,0.0,34017,351.5794096427115,1803405,0,64882,0,0,8463,0,0,56,0.5855474345703023,0,0.0,0,0.0,0,0.0,0.07787,0.1795439348873671,0.3164248105817387,0.02464,0.3268363990741869,0.6731636009258132,25.280189145177616,4.508331108495828,0.3134060921974262,0.2231633816582505,0.2332627463756312,0.2301677797686919,11.23007939729484,5.713192786917508,26.355092085901003,14704.301523215938,69.71455645883357,16.197603849161187,21.780290268950147,15.937786472560504,15.798875868161735,0.5605147418146278,0.7839416058394161,0.7063409563409564,0.5951875442321303,0.1166201117318435,0.7173501577287066,0.9186813186813186,0.9012875536480688,0.7327586206896551,0.1392405063291139,0.5059288537549407,0.7169398907103826,0.6440329218106996,0.5502347417840375,0.1102150537634408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028358738036157,0.0056353445567233,0.0081490577334862,0.0107992238375341,0.0137552141621731,0.0167069058606603,0.0192692182144605,0.0220176549920307,0.0242108708548984,0.026778945643043,0.0293260548350024,0.0316520738274345,0.0341064681841111,0.036858329982576,0.0394083072505087,0.0419072452970758,0.0444094292289511,0.0470254604381563,0.0494583823269268,0.0517153258023802,0.0687665907238258,0.0855996480053637,0.1012881484047746,0.1158749039463573,0.1301746425368015,0.1480862231346363,0.1637708693760149,0.1781488620752084,0.1913119695576886,0.2043098452490824,0.2198456164560783,0.2343738149669003,0.2483196618625881,0.2604835704421403,0.271672347419394,0.2832528448515126,0.2949416516553476,0.3055900060883487,0.3152730084369954,0.3251970943643061,0.3341337787986357,0.3414273648648648,0.3498516320474777,0.3566709113188054,0.3628409173998879,0.3690165576426071,0.3743267166371615,0.3805262284408471,0.385813980688508,0.3912243303719199,0.3909775452542212,0.3902148961473574,0.3901951613589013,0.3893649523532407,0.3886018897024691,0.3885739004155788,0.3868455904644891,0.3878813951949169,0.3890931689885545,0.3901677791809489,0.3912532909066803,0.3926395077021438,0.3947424120560471,0.3968468468468468,0.3982401706501188,0.4010092249467791,0.4004378258490076,0.4036805136191717,0.406752070210206,0.4104328346267701,0.4125154951563289,0.4154778504773141,0.4178256986091617,0.4186171437341723,0.4207465766272744,0.4231043498930354,0.4225502130249543,0.4218307006885379,0.4279846659364731,0.4391100702576112,0.0,2.3058442044323555,70.34007661213285,230.75540058611017,346.63544819902904,NC_public_implementation,69 +100000,95700,48957,460.40752351097177,7734,79.57157784743991,6076,62.98850574712643,2445,25.1828631138976,77.32722884548278,79.70308572327426,63.32110870231941,65.0754954471679,77.01741946474598,79.39057565539864,63.20806415974063,64.96348025678442,0.3098093807367945,312.5100678756212,0.113044542578784,112.01519038347384,128.34624,90.10504412144512,134112.6436781609,94153.21183223109,299.79628,186.49851011025527,312784.21107628004,194396.3000023567,369.71752,177.14581883401132,383136.5517241379,182586.72792093788,4355.23618,1978.0871215535249,4519025.715778475,2035136.739762301,1431.3392,629.5151514919028,1484235.0470219436,646383.376689553,2395.4743,1000.3255144415264,2470501.650992685,1019182.5253241193,0.43158,100000,0,583392,6096.029258098223,0,0.0,0,0.0,24739,257.9937304075235,0,0.0,33951,351.58829676071053,1804274,0,64883,0,0,8567,0,0,52,0.5329153605015674,0,0.0,0,0.0,0,0.0,0.07734,0.1792020019463367,0.3161365399534523,0.02445,0.3330054107230693,0.6669945892769307,24.685305922032555,4.4426565758972965,0.3304805793285056,0.2243252139565503,0.2251481237656352,0.2200460829493087,11.329340033413764,5.847990121756204,26.19943628629713,14532.080725706026,69.24152833955316,16.3193633172812,22.88517172515912,14.9055935725221,15.13139972459073,0.554805793285056,0.7740278796771827,0.7051792828685259,0.5646970830216903,0.1059941520467836,0.7269919703520692,0.9069767441860463,0.8880866425992779,0.7377049180327869,0.1080139372822299,0.492259367287413,0.7033707865168539,0.6354883081155434,0.5135658914728682,0.1054579093432007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025816510417721,0.0049964021850391,0.0074160495079638,0.0100246808251317,0.0125990177037044,0.0154562023357396,0.0178145330695653,0.0202628864400028,0.0227026363692144,0.0254272869709475,0.0279150856322428,0.0305551276125917,0.0331409880581355,0.0354044307058217,0.037710535006605,0.0400624618662033,0.0425170420404865,0.044932621830942,0.0477106779555241,0.0501349787890474,0.0674214808702645,0.0834528157737752,0.0986469477658905,0.1125956005344162,0.1263908370861765,0.1441763542316765,0.1586034912718204,0.173105181336116,0.186290012393692,0.1990194921527189,0.2151559217967361,0.2305585624594067,0.2436610066245336,0.2564806510183099,0.2684725539619817,0.2812486148663623,0.293164263070947,0.3044794256973434,0.3136814141207724,0.3226978396653487,0.331271573192485,0.3397932060094381,0.3473527077138152,0.3542961345586294,0.360964095825577,0.3679239459225878,0.373383667991923,0.3795693987398281,0.3848750844024308,0.3899314470236362,0.3899636343972638,0.3892869469179264,0.3893358596213396,0.3890112756891504,0.3880906554466377,0.3873243776189302,0.3856704163948511,0.3861694245492714,0.3863052195071798,0.3871377687089441,0.3880554928942025,0.3887301587301587,0.3907276402223345,0.3913610798650169,0.3926112673324929,0.392191449031171,0.3938276229720773,0.3973507830119754,0.3997876857749469,0.4018714107867154,0.4041491475303793,0.4058791801510248,0.4070903864580006,0.4096581660336408,0.4137367915465898,0.4106647363976354,0.416419077404222,0.420235878336437,0.4194725028058361,0.4235432147047321,0.0,1.9048408009364808,72.07874145362315,229.4283929715015,335.901287330018,NC_public_implementation,70 +100000,95776,49277,462.2556799198129,7946,81.52355496157702,6258,64.72393919144672,2513,25.85198797193452,77.38146625236273,79.70359874636003,63.35451413110488,65.06758295704755,77.06688306541899,79.38654904584367,63.23883965573579,64.9534971236697,0.3145831869437359,317.04970051636394,0.1156744753690901,114.0858333778425,127.10962,89.2350028502098,132715.06431673904,93170.08692387425,303.39117,189.0251310077519,316170.8465586368,196766.8815377165,374.4984,180.15452441080413,386597.2059806215,184887.2481460828,4508.30615,2045.606150731039,4664732.855830271,2094163.4950482051,1483.40263,654.7424652493864,1530107.6261276312,664930.9109395109,2462.2398,1030.6266703018418,2533784.7059806213,1045585.1178153796,0.43404,100000,0,577771,6032.50292348814,0,0.0,0,0.0,24872,259.0419311727364,0,0.0,34469,355.50659873037085,1808726,0,65034,0,0,8537,0,0,66,0.689107918476445,0,0.0,1,0.0104410290678249,0,0.0,0.07946,0.183070684729518,0.3162597533350113,0.02513,0.3301063702641329,0.6698936297358671,25.073270441011285,4.528172379741545,0.3328539469479066,0.2136465324384787,0.2257909875359539,0.2277085330776606,11.427717191062426,5.840548160596335,26.86362375373494,14716.6823932143,71.13056312743312,15.779886057788492,23.842603732489188,15.951202702637117,15.55687063451832,0.5556088207094918,0.787584143605086,0.6951512241958714,0.5789473684210527,0.1068648266100495,0.7126081582200248,0.9272727272727272,0.8579040852575488,0.6851851851851852,0.1374570446735395,0.5008620689655172,0.7190635451505016,0.6348684210526315,0.547683923705722,0.0989304812834224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027944839317173,0.005340711013823,0.0083991844270194,0.0112519294824924,0.0137777461437562,0.0164606958894069,0.0188763861709067,0.0215104235757507,0.0240498569677155,0.0266921754788017,0.0293713887636765,0.0318774559594529,0.0345093364300615,0.0371727694794165,0.0398779331106437,0.0421146120560564,0.0444865267602135,0.0468715981545798,0.049251002472419,0.0511640498105035,0.0694084989146769,0.0859788636601444,0.1022873863386086,0.1169149260477877,0.1311026070822396,0.1486715180233542,0.1634631704005431,0.1768043431977858,0.1908800563988079,0.2044348180395016,0.220279494412265,0.2347844897517711,0.2480123554811133,0.2608405457748405,0.2719127343173838,0.2844380403458213,0.2953702876541004,0.3058816907750323,0.3162342677995365,0.3253130877563191,0.3333680965955178,0.3412499414163191,0.3492723739097459,0.3565842189861574,0.3639215495543694,0.3698870084373612,0.3759268537074148,0.3819494860723701,0.3876446774277262,0.3923856593500984,0.3916004693379368,0.3911772814998621,0.3911102950523297,0.3909423233143785,0.390365473294632,0.3895936159416947,0.388162072907405,0.3888916325086012,0.3894412067192321,0.3900998604101793,0.390703706488234,0.3908018634156011,0.3916300208302649,0.3934511083605266,0.3952667585273285,0.3964346572289946,0.3979714629534124,0.4022999399740941,0.4039575971731449,0.4046208056378634,0.4083095872782424,0.411529009509563,0.4156394209494911,0.4160930090255469,0.42152466367713,0.426689027311931,0.4247964357044093,0.4282213600163365,0.4214028278347657,0.4287387739164389,0.0,2.3535597555707577,71.43465354259061,241.3222296841384,346.87448108229586,NC_public_implementation,71 +100000,95743,49329,462.8432365812645,7757,79.57761925153798,5957,61.48752389208611,2353,24.074867092111173,77.31912755708531,79.6662879923012,63.32066847763053,65.05723026705734,77.02449912935751,79.37387904606692,63.21186904080766,64.95233991997584,0.294628427727801,292.40894623428915,0.1087994368228706,104.89034708149347,128.25516,90.04581034097741,133957.7410358982,94049.49744730936,299.61933,186.75181629275792,312176.681323961,194290.76412140613,366.87228,176.58719507915885,378119.88343795366,180616.62301258493,4260.91102,1928.4658919062315,4401072.53794011,1964920.4139271087,1423.97853,629.0192417827463,1465528.2057173892,635222.8171069911,2293.80252,959.5100667389574,2349607.658001107,965218.0184078148,0.43217,100000,0,582978,6088.988228904464,0,0.0,0,0.0,24579,255.97693826180503,0,0.0,33628,346.1558547361165,1804466,0,64920,0,0,8544,0,0,71,0.7415685742038582,0,0.0,0,0.0,0,0.0,0.07757,0.1794895527223083,0.3033389196854454,0.02353,0.3275544079675396,0.6724455920324603,25.26883896034545,4.430780750231683,0.3261708913882827,0.2210844384757428,0.2163840859493033,0.2363605841866711,11.340967101290476,6.01085550278939,25.14956076464324,14674.245878109316,67.68613090980898,15.709503023355312,22.099958681587385,15.693872986137327,14.182796218728964,0.5482625482625483,0.765375854214123,0.680905815748842,0.5553977272727273,0.1186966640806827,0.7214554579673776,0.9278131634819532,0.8544061302681992,0.7058823529411765,0.1402877697841726,0.4849873939949576,0.6749408983451537,0.6171710063335679,0.5105990783410138,0.1127596439169139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027848383274767,0.0053405486476352,0.0084412158597459,0.0112839992687237,0.0138308366639208,0.0164064648192844,0.0189140963548304,0.0216476738961728,0.0242939817181652,0.0269036260518826,0.0293541673074754,0.0316360163878877,0.0342380516501938,0.0368603776694928,0.0390441206818275,0.0415990574325371,0.0441025747207354,0.0465027021980643,0.0489120269343475,0.0513071555046349,0.0688733702857023,0.0853496521784612,0.1008579639613182,0.1152822907136923,0.1299984186389752,0.1482299949247166,0.1636263363312404,0.1780572668943722,0.191754492744338,0.2041509878965254,0.2182748223131596,0.2340202168878114,0.2480175780187745,0.259648086786304,0.2717539612676056,0.2836429291418824,0.2954147082137793,0.3061088977423639,0.3159818803147103,0.3239812576613319,0.3324299595798154,0.3407970395006499,0.3482192592592593,0.3548817100996757,0.3610482241534604,0.3674430098226972,0.3731169173262421,0.3788999719380596,0.3846553358349455,0.3899406013943459,0.3899405887118553,0.3895765202632777,0.3895205770046669,0.3899978224577194,0.3901584081620476,0.3883967023501907,0.3881482659879096,0.3887825800065985,0.3895170283949558,0.3903026381999856,0.3913839302562554,0.3935687865409855,0.3960220434534743,0.3973022962060721,0.3963306754562419,0.3967991169977924,0.3984774490089054,0.4002091519837749,0.401699716713881,0.4059678836781976,0.4090325538743695,0.4096786308278341,0.4127085190373106,0.4140588870047788,0.4157314057447213,0.4199026243914024,0.4280012281240405,0.4240635179153094,0.4335180055401662,0.4325259515570934,0.0,2.8900621337704764,70.135691429959,218.1500098332421,333.5141545946923,NC_public_implementation,72 +100000,95662,49420,464.43728962388406,8000,82.03884510045786,6268,64.74880307750203,2562,26.374108841546278,77.34181859432726,79.72359716449456,63.3271521787835,65.08516528527892,77.01694612550781,79.39654960434682,63.207034293357935,64.9666770650018,0.32487246881945,327.0475601477472,0.1201178854255644,118.48822027711492,129.60266,91.01422803659156,135479.54255608286,95141.23480231606,304.97894,189.67178577972103,318063.5362003721,197527.53003253223,377.43568,181.7173145625601,388380.86178419855,185386.8829948283,4555.5716,2084.4578301798406,4717573.623800464,2134401.8629966355,1486.82397,659.6826354072788,1535969.632665008,671333.3368541505,2520.6463,1060.622050742027,2598438.334971044,1079407.6363816513,0.43482,100000,0,589103,6158.161025276494,0,0.0,0,0.0,25086,261.44132466392085,0,0.0,34715,356.75607869373414,1795402,0,64597,0,0,8597,0,0,71,0.7421964834521544,0,0.0,0,0.0,0,0.0,0.08,0.183984177360747,0.32025,0.02562,0.3295210864903502,0.6704789135096497,24.67184623608532,4.450050075074398,0.3292916400765794,0.2101148691767709,0.2324505424377791,0.2281429483088704,11.124668261686985,5.684953196564094,27.55888995038553,14744.92530059699,71.71299864511704,15.920217940056126,23.52895304570414,16.135658392265185,16.128169267091582,0.5595086151882578,0.8048595292331056,0.7068798449612403,0.5776223776223777,0.1111873713109128,0.7334919690660321,0.9248434237995824,0.8679927667269439,0.7563739376770539,0.1452702702702702,0.4957488554610856,0.7362768496420048,0.6479152878888154,0.5190343546889508,0.1024978466838932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029569320817004,0.0054431008443394,0.0081166360601848,0.0109077613698685,0.0137979420018709,0.0161786267003339,0.0187444576950126,0.0212835458285271,0.0241723648034015,0.0264822700843501,0.0290794249738531,0.0312939702363223,0.0340428596413617,0.0368904826676559,0.0393257847093917,0.0417261424522642,0.0439585492227979,0.0462955272228913,0.0488832482028982,0.0510815741464685,0.0682865171473639,0.0842556043012554,0.1004397518917727,0.115227593173257,0.1294225616574189,0.1483467665164688,0.163936165697551,0.1784068045605033,0.1916678242101101,0.2041978592419399,0.2192710352849941,0.2337267544381578,0.24683179410197,0.2598097112860892,0.2712175903508386,0.2833636202464321,0.2951129079091376,0.306489735278228,0.3172449037533359,0.3260936837400144,0.3353318363851015,0.3432825338858066,0.3514716677322346,0.3588565533456491,0.3659082341209519,0.3724982108042743,0.3795234334850023,0.3848252996684519,0.3902119150262297,0.3950592780776966,0.3948850209973399,0.3946130176208414,0.3944856839872747,0.3940659531888976,0.3928251789976134,0.3908946744468907,0.3890134707444693,0.3898274326063285,0.3900740919014629,0.3905057723037147,0.3919155422570993,0.3924490809736711,0.3937625118533347,0.3943126041338317,0.3955250986754486,0.3972519807322787,0.3991591799124626,0.4012967612751486,0.4030058050500374,0.405643667981644,0.4064334242270185,0.4094992200527136,0.4138980471722039,0.4165257494235204,0.4211322181268311,0.4245158185973776,0.4261734535281318,0.4243232157506152,0.4266403829907068,0.4168947985921001,0.0,3.025870147057357,73.64019079851589,244.12372644289755,338.1915457058919,NC_public_implementation,73 +100000,95670,48994,460.6459705236752,7758,79.80558168704923,6125,63.34274067105676,2477,25.39981185324553,77.38307130315455,79.75902378155506,63.34642469116329,65.09729587418721,77.07994924963441,79.45807313810664,63.235262711055306,64.99039697539703,0.3031220535201413,300.9506434484166,0.1111619801079868,106.89889879017755,129.28696,90.7105407100326,135138.45510609387,94816.07683707806,302.71746,188.3954805799148,315753.0260269677,196256.86273640103,373.15599,179.07797699022933,385926.8004599143,184013.51281388503,4389.74004,1985.291248117181,4541714.905403993,2028441.3694127544,1500.06378,657.5905399700924,1552035.3820424376,671432.0162747907,2434.28026,1009.8392457589532,2499472.980035539,1016472.742407615,0.43083,100000,0,587668,6142.657050276994,0,0.0,0,0.0,24951,260.10243545521064,0,0.0,34304,354.5312010034493,1798718,0,64779,0,0,8745,0,0,58,0.5957980558168705,0,0.0,0,0.0,0,0.0,0.07758,0.1800710256945895,0.3192833204434132,0.02477,0.32243448444771,0.6775655155522899,25.01072424668677,4.397527945889589,0.3253877551020408,0.2272653061224489,0.2328163265306122,0.2145306122448979,11.22205760566269,5.8388103044946105,26.30912116891427,14556.679344503456,69.44943315474043,16.51000154956925,22.5194630667817,14.601272947160368,15.81869559122911,0.5568979591836735,0.7722701149425287,0.706472654290015,0.5639269406392694,0.1311360448807854,0.731203007518797,0.943157894736842,0.8552123552123552,0.7653061224489796,0.1650485436893204,0.4954736144844336,0.6837513631406761,0.6542372881355932,0.5058823529411764,0.1217547000895255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029458510067521,0.0052783012177577,0.0078092514274703,0.0104797107924773,0.0130954196532967,0.0154015289554852,0.0179514363187832,0.0207310475762741,0.0232028047795733,0.0259814710549214,0.0284302367306765,0.030847273138022,0.0333635017278262,0.0358353161727593,0.0379746835443038,0.0405448701385946,0.0430328081134557,0.0455427664013119,0.0480137271214642,0.0504205183787896,0.0676200823182834,0.0842572526356564,0.0994922047128438,0.1140543666859456,0.1283532984646533,0.1455881575469204,0.1610317737985433,0.1749752709558706,0.1893368621006125,0.2021344991642021,0.2187194026317771,0.2326881487889273,0.2463367972520544,0.2587891906073724,0.2703689850161719,0.2817566294699748,0.2927458535768135,0.3031190511055791,0.3122678691094124,0.3215685824984525,0.3311646214401482,0.3398208326014403,0.3474803261590973,0.3545660812254649,0.3611009710155508,0.3674424347181925,0.3722950778566234,0.3778049775601795,0.3824728084520936,0.3880768772899829,0.3881875320331256,0.3879683493700201,0.3873694609088343,0.3878260365827166,0.3871246296544434,0.385687503841662,0.3844736674925354,0.3844746902188241,0.3852612420803214,0.3863611898525243,0.3873856957770809,0.389049504950495,0.3913491029788664,0.3918228279386712,0.3919566526189043,0.3925597180524736,0.3936118636817339,0.3959520287072303,0.3995416887008637,0.4026247762974747,0.4049307048438,0.4069959066503641,0.4067070095814422,0.4082362792113876,0.4111913019027088,0.4143379318476595,0.4205748865355522,0.4268196202531645,0.4297676931388439,0.4374531835205992,0.0,2.691170433512359,70.18095926826918,232.0385620759349,339.90086618698194,NC_public_implementation,74 +100000,95669,49240,461.5392655928253,7955,81.48930165466348,6290,64.90085607668105,2549,26.06905058064786,77.3960056150407,79.78271659270618,63.35197710932333,65.11413424554267,77.0781718326502,79.46849168696744,63.233500574493554,65.00091478653158,0.3178337823905082,314.2249057387403,0.1184765348297745,113.21945901109132,129.7417,91.05553159063112,135615.19405450043,95177.67677160956,307.55811,191.08200209583325,320628.7616678339,198879.70198897575,372.96658,179.2641977710519,385084.3533432983,183585.51983029215,4514.55553,2042.7486252804708,4666448.567456543,2082741.301027992,1498.10766,661.0096954386095,1546394.5165100505,671400.5638593581,2505.97836,1055.5615994185634,2568206.294619992,1059240.3530073422,0.43309,100000,0,589735,6164.327002477292,0,0.0,0,0.0,25326,263.8472232384576,0,0.0,34268,353.43737260763675,1798552,0,64593,0,0,8896,0,0,63,0.648067817161254,0,0.0,0,0.0,0,0.0,0.07955,0.1836800664988801,0.3204274041483343,0.02549,0.321087786259542,0.6789122137404581,24.988414231913225,4.40947941378528,0.3217806041335453,0.2271860095389507,0.2273449920508744,0.2236883942766295,10.935933754266207,5.54549186748674,27.310668154931303,14697.303558381573,71.10546414922345,17.038098105306442,22.775739045753276,15.588340626090393,15.703286372073348,0.5542130365659778,0.7872638208537439,0.6872529644268774,0.5728500355366027,0.1146853146853146,0.7261185006045949,0.916015625,0.8409961685823755,0.7235294117647059,0.1678571428571428,0.4928817946505608,0.7153762268266085,0.6338215712383488,0.5248359887535146,0.1017391304347826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026945713504259,0.0055869887043458,0.0082824140801039,0.0109728219456438,0.0137122861269912,0.0166985704394575,0.0192501809802502,0.0223279461760712,0.0251896378989552,0.0277692480910561,0.030244002460529,0.032937359466924,0.0354299936236295,0.0381220193030705,0.0405286889051682,0.0429708497002274,0.0455661325240053,0.0478320894360422,0.0500577229092346,0.0521965709521079,0.0685015929388415,0.0849015134071546,0.1004573394591646,0.1158755862126979,0.129824265488778,0.1470983299664724,0.1617061913098838,0.1765169340843031,0.189505401160368,0.2023128828432582,0.2176343854357427,0.2324345963257092,0.2454507902689305,0.2592122815841844,0.2712693995622381,0.2826007508555102,0.2935728632001785,0.3050584532374101,0.3162948351698181,0.3255768724760041,0.3345736935770911,0.3434984284996553,0.3506826644600744,0.3579707368471467,0.3648952050388961,0.3707277448892936,0.3767835278242835,0.3818015546410608,0.3871876736941432,0.3908201992514891,0.3903062253721909,0.3905968692879623,0.3899837993942382,0.3893267770626943,0.3891136830204397,0.3876924964721762,0.3867789834380354,0.3872108709242259,0.3881949798680716,0.3891127227146566,0.3907901169568651,0.3914491948917268,0.3933610481229528,0.3938626945906596,0.3946853956990804,0.3938458318070019,0.3946668953099546,0.3986270602005631,0.4025873038314718,0.4059469423739681,0.4084578491053311,0.4101434481276527,0.4118773946360153,0.4155092592592592,0.4155732209558471,0.4195110142822561,0.4248021108179419,0.4322208487845076,0.4435754189944134,0.44453155625245,0.0,3.3091561655222965,72.10316085437123,229.94292578871008,354.99850921741984,NC_public_implementation,75 +100000,95807,48934,459.7367624495079,7821,80.108969073241,6052,62.42758879831327,2414,24.674606239627582,77.38566316619061,79.70579208180854,63.36611244363343,65.08386654933773,77.08357710506289,79.40796589419502,63.25390695375448,64.97708733403606,0.3020860611277243,297.8261876135236,0.1122054898789457,106.77921530167112,129.79494,91.0894513699352,135475.42455144197,95075.9875269398,304.78019,189.4137024205208,317406.74480987823,196991.23489987245,370.70998,177.96263961814168,382549.79281263374,182398.9495053164,4351.91281,1976.86492633232,4490686.473848467,2011710.9742840496,1493.10614,652.7231787556217,1537818.8858851648,660675.2049546861,2368.69314,992.1434852465644,2423163.547548718,992172.109665128,0.43018,100000,0,589977,6157.973843247361,0,0.0,0,0.0,24999,260.1897564896093,0,0.0,34077,351.2686964418049,1802031,0,64784,0,0,8747,0,0,59,0.6158213909213314,0,0.0,1,0.0104376506935818,0,0.0,0.07821,0.1818076154168022,0.3086561820739036,0.02414,0.3195050946142649,0.6804949053857351,25.167446110848875,4.390045633326968,0.3350958360872438,0.2128222075346992,0.2301718440185062,0.2219101123595505,11.278111398336652,5.9219062477858,25.706866927724185,14581.432258021094,68.83248712060264,15.412348531978411,23.084203150112614,15.128422506063613,15.207512932447996,0.5568407138136153,0.7857142857142857,0.6888560157790927,0.5815338793745346,0.1292175161521895,0.721405750798722,0.916289592760181,0.8418079096045198,0.7450980392156863,0.1713286713286713,0.4994428348562514,0.7174940898345153,0.6346025384101537,0.5332690453230472,0.1183378500451671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026029797534765,0.0050991960909542,0.007743755772295,0.0104342348566435,0.0129989015012815,0.0155177680480602,0.0181227002619535,0.0209409123379936,0.0233328223210179,0.0259215292985939,0.028223285747958,0.0308737644849069,0.0335049692185942,0.0358727315772679,0.0382465764725292,0.0407383305960976,0.0430342287156988,0.0453485358901269,0.0475997632472508,0.049959936314349,0.0680248690826396,0.0847393840556984,0.1000450747927083,0.114480555643119,0.1283039937633661,0.1470945524839701,0.1619602649006622,0.1764086753136296,0.1903959202398353,0.2031991600329987,0.219356087905941,0.2338685279626588,0.2484880072097896,0.2612398192021311,0.272434665114082,0.284306678315105,0.2955963629880549,0.3056604197564154,0.3154894783958661,0.3244284848415539,0.33226235192141,0.3408692808931032,0.3485451688738201,0.3549745233595675,0.3614003612427721,0.367602586482433,0.3729738504957666,0.3778220788785331,0.3834569943900106,0.387715020101496,0.3875220511991812,0.3864102528805253,0.385824440716672,0.3853022474999638,0.3849176813837863,0.3833517563252272,0.38159838604629,0.3829857335837369,0.3837608598605817,0.3856227911232306,0.3872150756037012,0.3881803734604688,0.3897075924477239,0.3901184433164129,0.3908657819260123,0.3902986454014945,0.3919679178327226,0.394451337851166,0.397188111763659,0.39886441428744,0.4020318633110136,0.4023000859845227,0.4053760694675009,0.4083314083314083,0.4117983963344788,0.4162155659809936,0.4203663458553244,0.4200697722142417,0.4312902322977889,0.4320843091334894,0.0,2.937609302022218,68.5047669307815,232.3488373988362,336.9427628964944,NC_public_implementation,76 +100000,95758,49004,459.2305603709351,7945,81.48666429958855,6175,63.80667933749661,2502,25.81507550283005,77.37657405990127,79.72426876387512,63.3458979718325,65.080391552723,77.06598307436643,79.40969335332873,63.2318002840791,64.96694687715576,0.3105909855348443,314.5754105463823,0.1140976877534001,113.44467556723714,128.64896,90.21307313206874,134348.0022556862,94209.43746952603,299.21526,186.20432334280665,311806.3660477454,193789.138602317,366.53031,175.6408716689176,378227.7512061655,180003.36766352374,4434.38497,2009.2737670433992,4587133.273460181,2054591.6550506472,1461.82523,643.582037602403,1508499.3003195554,654017.8653452218,2447.02642,1023.7766714585048,2525063.890223271,1042771.4761484097,0.43287,100000,0,584768,6106.727375258464,0,0.0,0,0.0,24675,256.9706969652666,0,0.0,33716,347.4801061007957,1806631,0,64923,0,0,8518,0,0,51,0.5325925771214938,0,0.0,0,0.0,0,0.0,0.07945,0.183542403030933,0.3149150409062303,0.02502,0.3189551881140666,0.6810448118859334,25.08628958766789,4.407293856470439,0.3327935222672065,0.2191093117408906,0.2239676113360323,0.2241295546558704,11.197514855208414,5.689607502993945,26.7473249993726,14686.53498289861,70.25421918657678,16.32165005758194,23.268940620977794,15.52116644061762,15.14246206739942,0.5588663967611336,0.7760532150776053,0.6905109489051094,0.5975433526011561,0.1120751988430947,0.7267119062307218,0.9216101694915254,0.8817635270541082,0.7357954545454546,0.1476510067114094,0.4991216512955643,0.6980703745743473,0.6291773778920309,0.5503875968992248,0.1023041474654377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027955028866605,0.005514500907257,0.0083402666450212,0.0110223901824535,0.0138719388170205,0.0161403651693974,0.0186395570556025,0.0212357577490096,0.0236559359633609,0.0263381478334749,0.0292206461134798,0.0319438314121185,0.0345625199181684,0.0369096414080039,0.0392634239438799,0.0419741602067183,0.0443579283066536,0.046907740503309,0.0491823729377397,0.0516433391652087,0.0686963146963355,0.0851582271862123,0.1011394966087658,0.1162196813653369,0.1300837856352426,0.1483536810950795,0.1634788693568566,0.1780203877503245,0.190251404404383,0.2028205265697892,0.2182417440382585,0.2327393124939137,0.2464833933486363,0.2596584132958412,0.2717393697839825,0.2833133785641435,0.2945006589381045,0.3059145353025936,0.3156162019798383,0.3250741720792238,0.3327932786335073,0.3405012050448089,0.3489024318087687,0.3564922457393514,0.3631942418052719,0.3698964798203512,0.3759716606791923,0.381995164779234,0.3864575373337305,0.3904297752066989,0.3906045872671685,0.3903926643903513,0.3894119636917179,0.3896661988337939,0.389530992012138,0.3886484993555514,0.3876333164042661,0.3891585893659387,0.3896052676703591,0.3900290104222628,0.3914484212904562,0.3930938678309188,0.3948265701296514,0.3947091133281022,0.3967049956517537,0.3979755067789054,0.3992774815069671,0.4022694228459447,0.4049118833604643,0.4069753457606734,0.4095347766006448,0.4137968086821039,0.4168736071314868,0.4161022167487684,0.4154969650986343,0.4167065581617999,0.424853711117955,0.4273867313915858,0.4282566786009363,0.4276946682009973,0.0,2.642559277210011,71.5519295163794,231.2979171981656,346.5670341669909,NC_public_implementation,77 +100000,95737,48670,457.2735723910296,7887,80.91960266145796,6155,63.55954333225399,2500,25.73717580454788,77.3313489084019,79.69756990407032,63.31030609897547,65.0632241422294,77.02194185500518,79.38627075263491,63.1969597343002,64.95173355303265,0.3094070533967255,311.29915143540643,0.1133463646752659,111.49058919674816,129.15474,90.57148858764734,134905.77310757595,94604.47746184585,300.74903,186.67973510335017,313414.38524290506,194272.8951475868,365.95929,175.6044084268142,376819.5055203317,179399.76903063364,4430.75769,1998.906653441314,4583604.9594200775,2043953.0235197984,1504.03988,654.7841159246351,1555436.497905721,668364.8703475518,2453.94328,1023.4499526878012,2529350.8465901376,1040641.7140593772,0.43023,100000,0,587067,6132.080595798908,0,0.0,0,0.0,24785,258.14470894220625,0,0.0,33633,345.8641904383885,1800766,0,64724,0,0,8607,0,0,58,0.6058263785161432,0,0.0,0,0.0,0,0.0,0.07887,0.1833205494735374,0.3169773044250031,0.025,0.3337738796107173,0.6662261203892827,25.36056981895257,4.429475844107976,0.3241267262388302,0.2263200649878148,0.2320064987814784,0.2175467099918765,11.08277557679451,5.683754018637528,26.57915792684918,14581.54307647985,69.73106550586549,16.597386877820984,22.594981411938694,14.99220526584644,15.546491950259366,0.5491470349309504,0.7788944723618091,0.6977443609022557,0.5526512322628827,0.1141456582633053,0.7107750472589792,0.9055441478439424,0.8873239436619719,0.6740506329113924,0.1149825783972125,0.4929947460595447,0.7108167770419426,0.6348464619492656,0.5151515151515151,0.1139351446099912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029179626946574,0.0054453086181895,0.008160365389495,0.0108209713472871,0.0135913243402714,0.0161114562434439,0.0187313273036881,0.0211666683684409,0.0232793625791406,0.0256468033676792,0.0282142271086314,0.030985770791596,0.0333017741736302,0.0358651963310316,0.0383146508123284,0.0405852548857408,0.0428376167498498,0.0453984165032323,0.0478274428274428,0.0502551817519008,0.0673716295917408,0.0840169938470553,0.0995845834294945,0.1139726373129462,0.1287958667229017,0.1467163089810985,0.161454298479269,0.1761541575235944,0.1894460061780518,0.2022968766770419,0.2172572525091363,0.2318057255505128,0.2457234943760276,0.2587130046316066,0.2706619533736386,0.2823305018962496,0.294055225414414,0.3043566385532672,0.3144031426689979,0.3242267213904111,0.3330592295754094,0.3408712769198322,0.3483010140544387,0.3546285947771328,0.3616655908609287,0.3681279328229192,0.3742182114432537,0.3792048539852902,0.3845354935867476,0.3885722597622416,0.3885956504718064,0.389079580386805,0.3888904573687182,0.3883658275152814,0.3886112102820421,0.387268962343738,0.3851797854301697,0.3851568024470062,0.3851862007506298,0.3856741422204721,0.3859408470818144,0.3868272741705033,0.388182545362691,0.389336151839525,0.3906008126934984,0.3913306028145347,0.3922338443903138,0.3943407585791691,0.3963041933191187,0.4001692388282226,0.4011627906976744,0.4051747275752858,0.4086446512813974,0.4100846805234795,0.4116980062364169,0.4165289256198347,0.417198419933151,0.4183489906056366,0.4215846994535519,0.4222560975609756,0.0,2.8547961061260416,69.71188814475344,230.27691859518828,347.72189690495577,NC_public_implementation,78 +100000,95485,48811,459.0878148400273,7829,80.6304655181442,6177,64.0624181808661,2410,24.79970676022412,77.22623088476638,79.71341155074826,63.24095407219974,65.07635247949055,76.92644385123153,79.41286931378474,63.130379915670055,64.96800928319162,0.2997870335348551,300.54223696352267,0.1105741565296867,108.3431962989323,128.8793,90.38323558227222,134973.34659894224,94656.9990912418,302.31648,187.6608781919776,315950.735717652,195873.65365447724,369.46998,177.40196459299133,382901.3143425669,182604.390658936,4428.80202,2003.060754725213,4599137.445672095,2058695.21362016,1462.6152,640.8150504418538,1517670.9430800648,657012.0442392554,2362.48038,986.775580607308,2434523.432999948,1001529.1236585064,0.43113,100000,0,585815,6135.152118133738,0,0.0,0,0.0,24893,259.99895271508615,0,0.0,33964,351.6992197727392,1796075,0,64628,0,0,8758,0,0,67,0.6912080431481384,0,0.0,2,0.0209456982772163,0,0.0,0.07829,0.1815925590889059,0.3078298633286498,0.0241,0.3276008235436599,0.6723991764563401,24.92485812094716,4.456153659513747,0.3286384976525822,0.2217905131941071,0.2200097134531325,0.2295612757001781,11.205169048840515,5.804420111547608,25.72867746337068,14633.219570338171,70.39808605295349,16.549489115692406,22.97197986703601,15.985847339125272,14.89076973109978,0.5593330095515623,0.7883211678832117,0.6817733990147783,0.5973201692524682,0.1059602649006622,0.7255146600124766,0.9264705882352942,0.8797709923664122,0.7292307692307692,0.0863309352517985,0.5010931351114998,0.714765100671141,0.6128818061088978,0.5580969807868252,0.1110083256244218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002573846075898,0.0054976822501952,0.0084472150587853,0.011021860701576,0.0134793940381169,0.0162972022626509,0.0187654976071184,0.0214170396256105,0.0240007365954965,0.0263211819429929,0.0291303990803087,0.0313078346699568,0.0336817175513566,0.0361607327034943,0.0387043446815105,0.0411550328204915,0.0435576394435742,0.0459761751314941,0.0483086251263191,0.0509471002234613,0.0678899274626584,0.0842460867010785,0.1007634551075777,0.1149253259414622,0.1290857789003138,0.1469484662836792,0.1613081568427319,0.1754123898337636,0.1895707690165286,0.2023457573183973,0.2175345010042546,0.2322838916854712,0.2461776701781936,0.258435221229234,0.2703845135087409,0.2824637068984682,0.2940425960537655,0.3052491484514222,0.314981507823613,0.3251768326290648,0.3338400306339131,0.3412176035103774,0.3494330661917483,0.3558412816781131,0.3617200365965233,0.367737542556484,0.3737892167962361,0.380276103839609,0.3849377830999115,0.3898907393656518,0.3905122826013399,0.3899087003964143,0.3893956751099608,0.38895090094661,0.3882725358737364,0.3868334308862943,0.3855602109254273,0.3872962338392355,0.3888248153822319,0.3901982656255622,0.3907957054172877,0.3918340533115681,0.3929460931233906,0.3944381895969376,0.3955294288409899,0.3954745905081898,0.3969274946159368,0.4008876208590902,0.4032235210768686,0.4057174932841506,0.409574713173294,0.412171581769437,0.4147593989729284,0.4141962102689486,0.4097254754989225,0.4111818825194621,0.4132983647022524,0.4129312125593886,0.4185267857142857,0.4241605557699729,0.0,2.4105740420526973,71.06953160232077,239.07534958368956,340.92418154181337,NC_public_implementation,79 +100000,95685,49272,461.7024612008152,8044,82.33265402100642,6226,64.24204420755605,2499,25.51079061503893,77.36399481233721,79.74694516504867,63.33329461681414,65.09660807234118,77.04822405893492,79.43771254914442,63.21553419039961,64.98540257725823,0.3157707534022904,309.23261590425,0.1177604264145344,111.20549508295596,128.7759,90.3734099304418,134582.70366306108,94448.41921977514,304.29682,189.46443430500736,317161.09108010656,197150.23703298045,373.82123,180.44599812423252,386065.7887861211,185029.14027467763,4459.82794,2033.8404229570745,4602385.452265246,2066995.8749616705,1469.06992,650.6248490336316,1515074.2540628102,659830.925973406,2446.12438,1030.3546782668595,2499751.747922872,1027920.4474192532,0.43453,100000,0,585345,6117.395621048231,0,0.0,0,0.0,25017,260.5633066833882,0,0.0,34412,355.09222971207606,1801559,0,64821,0,0,8845,0,0,66,0.6688613680305168,0,0.0,1,0.0104509588754768,0,0.0,0.08044,0.1851195544611419,0.3106663351566385,0.02499,0.327145897375266,0.672854102624734,25.06141493376004,4.474206754121077,0.3225184709283649,0.2327336973980083,0.2247028589784773,0.2200449726951493,11.357221465590085,5.852736130124039,26.746665236932817,14750.103405147702,70.76910402939788,17.2611823732001,22.899436530095997,15.317390029799633,15.291095096302168,0.5613556055252168,0.7805383022774327,0.7186254980079682,0.5569343065693431,0.1129378127233738,0.7296163069544365,0.904382470119522,0.8785046728971962,0.7220630372492837,0.1453900709219858,0.4997806055287406,0.7148891235480465,0.6605566870332654,0.5004897159647405,0.1047448522829006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031002725402984,0.0058920766274199,0.008832128644522,0.0115657458788137,0.0141333767475935,0.0168205065509301,0.0197070463911216,0.0222741942072797,0.0250273592914199,0.0276165023192946,0.0301802818056894,0.0326698710048475,0.0350758090065625,0.0373316572040927,0.0397857452473837,0.0422680838744364,0.0448960987838481,0.0474979763807309,0.0498570611778158,0.0522219327949987,0.0692755984459205,0.0852898998251912,0.1006179769386534,0.1154396297854438,0.1300007379218013,0.1483647206860454,0.1629759253367271,0.1772110146407899,0.190462461692881,0.2030616839261594,0.2182060859175699,0.2330613923091904,0.2469298293322311,0.2593941780709527,0.2708365429055615,0.2824216110846523,0.2934546063277718,0.3050214336344918,0.3149314897433278,0.3256879682881561,0.3342978841613037,0.3427174014789853,0.3506556580864497,0.3568960967300818,0.3634031585474086,0.3702073624775008,0.3770881859393393,0.3829177961895307,0.3884766307937371,0.3932115709459459,0.392848966399569,0.3933300300052302,0.3932739471161978,0.39368073840456,0.3937510224112547,0.3927346238666993,0.3917254914374347,0.3920488092895099,0.3933558673904879,0.3933933933933934,0.3946720772511225,0.3953548335911777,0.396235541535226,0.3968800648298217,0.3988299569694918,0.3995478206004522,0.4004947220065004,0.4043637975805941,0.4067568524683051,0.4088236470541178,0.4131162577390507,0.4135021097046413,0.418512607724226,0.4188226181254841,0.4208708996738922,0.4276904474002418,0.4296703296703296,0.43625,0.4405099150141643,0.4502181673938913,0.0,3.0507751504402734,72.9383063793123,234.3492126831676,341.48643584823947,NC_public_implementation,80 +100000,95658,49210,462.1777582638149,7843,80.4846432080955,6146,63.57021890484853,2460,25.27755127642225,77.31725194233033,79.72516613517402,63.30264576078415,65.084644148732,77.01731377970448,79.42509390533374,63.19235083968185,64.97748295418464,0.2999381626258497,300.07222984028203,0.1102949211023016,107.16119454735916,128.05694,89.87442836448265,133869.5561270359,93953.9070067142,304.25939,188.7614874022307,317375.7762027222,196635.32313265032,372.15626,178.82827218908355,384675.3956804449,183607.86062565065,4414.6747,1990.2307849324127,4572474.10566811,2037982.5680365604,1482.25576,648.5191713741243,1531717.7653724728,660140.702515341,2405.36998,995.00675192537,2474524.5144159403,1005817.9928027884,0.43303,100000,0,582077,6084.979823956177,0,0.0,0,0.0,25022,260.8563842020532,0,0.0,34251,353.6243701519998,1804205,0,64903,0,0,8616,0,0,50,0.5226954358234543,0,0.0,1,0.010453908716469,0,0.0,0.07843,0.1811190910560469,0.313655488971057,0.0246,0.3174449552383256,0.6825550447616743,25.18000444397827,4.427825845336622,0.3254149040026033,0.2162382037097299,0.2211194272697689,0.2372274650178978,11.298971235598945,5.903514589579744,26.030874972343412,14705.04249858279,69.60404471715958,15.75954828049312,22.825207982954183,16.278573215924236,14.74071523778807,0.5626423690205011,0.7855530474040632,0.7125,0.5775034293552812,0.108167770419426,0.7481155778894473,0.9336188436830836,0.878003696857671,0.7345679012345679,0.1615384615384615,0.4978041282389108,0.7053364269141531,0.6511309115832762,0.5326278659611993,0.0955414012738853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028265472560203,0.0057090706282005,0.0087073891025706,0.0112692944750988,0.0138983568194536,0.0163797494142813,0.0187297247668985,0.0215041680287675,0.0240428884205356,0.0266681692911369,0.029116651277316,0.0320598450440822,0.0343088309469154,0.036816710311978,0.0391940181356247,0.0416438186088378,0.0443364051955591,0.0467739087991858,0.0492430942100608,0.0513405887749145,0.0690509027081243,0.0848858031478747,0.1004892183005438,0.115227593173257,0.1294389466798894,0.1477498835781719,0.1630400169833351,0.1766253408316291,0.1909597152598894,0.2040319292749393,0.2195555459804164,0.2339536444632089,0.2474176308599915,0.2602579260816255,0.2719650982163514,0.2831882933318552,0.295537249123747,0.3063378300835968,0.3158874262369496,0.3254220980046276,0.3340626266134167,0.3424562963656362,0.3502836904634993,0.3569680978651955,0.3632572165073806,0.3705591273122154,0.376768195657349,0.3824667719101696,0.3875364384271555,0.3922024100201935,0.3914577805314979,0.3909392508569305,0.3905105375859348,0.3896753669293615,0.3899062746792627,0.3891006917755573,0.3879793568876538,0.3890737202714276,0.3896337391483022,0.3902303685538869,0.3906541001185168,0.3920077817921943,0.3931358899717335,0.3945602737875445,0.3963436839932991,0.3973907096638434,0.3978689183755529,0.4003164056320202,0.4042756521431352,0.4072369211063523,0.4105423213380638,0.4143708715965845,0.4146730462519936,0.4166280685502547,0.4196708836678398,0.4181709503885236,0.4211753731343283,0.4227207244288948,0.4254098360655737,0.4277522935779816,0.0,2.691093073163053,69.94408578912724,230.94028668440512,344.7176601059022,NC_public_implementation,81 +100000,95837,49318,463.16140947650695,7816,80.02128614209543,6133,63.211494516731534,2442,25.00078257875351,77.4717338221379,79.75840395071381,63.40399372213196,65.09073709636533,77.1637873426679,79.4515189718694,63.28947956678316,64.97955785604711,0.3079464794700044,306.88497884440835,0.1145141553488002,111.17924031822211,129.33008,90.77651636315012,134947.96373008337,94719.69736443138,302.3997,187.98299625995375,314745.6514707264,195359.0184009384,375.84012,180.91418755138963,386878.7733338898,184713.19852668195,4423.77176,2010.1957493208265,4566379.874161337,2047973.6205450743,1500.10918,660.700911156828,1545387.8042927054,669553.6855795748,2403.89046,1010.7825304471174,2464691.632667968,1018621.6203128227,0.43392,100000,0,587864,6133.998351367426,0,0.0,0,0.0,24872,258.7205359099304,0,0.0,34486,354.5394784895187,1802723,0,64798,0,0,8757,0,0,58,0.6051942360466208,0,0.0,1,0.0104343833801141,0,0.0,0.07816,0.1801253687315634,0.3124360286591607,0.02442,0.3187066974595843,0.6812933025404158,25.03434869331537,4.448717809992802,0.3290396217185716,0.2188162400130442,0.2302299037991195,0.2219142344692646,11.2385953994584,5.780610179481635,25.981683641383924,14633.472765565682,69.3738253941503,15.949108621020578,22.87329696548142,15.031974367842745,15.519445439805564,0.548181966411218,0.7719821162444114,0.6922695738354807,0.5576781778104335,0.1203966005665722,0.7030191004313001,0.8947368421052632,0.8619402985074627,0.7003154574132492,0.1084745762711864,0.4924611973392461,0.7047289504036909,0.6309041835357625,0.514367816091954,0.1235452103849597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027229476667678,0.0053185561892798,0.0081830903080573,0.010809987819732,0.0134745142671327,0.016075371107064,0.0188656181240322,0.0212772468099429,0.0242530073729142,0.0266198969156508,0.0291686723542846,0.0317211248538551,0.0342595921721711,0.0366186169501291,0.0389436358388652,0.0413048192397848,0.043361330630146,0.0456938542854181,0.0481060763384142,0.0505338522696526,0.0677559617530212,0.084708022329549,0.1003751755360399,0.1147642614716977,0.1284943289623477,0.1468585446317169,0.1624192676020489,0.1770582852765305,0.1902189001601708,0.2027765866209262,0.218366556163086,0.2326717689280927,0.2465298142717497,0.2589769351738599,0.2708736157496924,0.2825642216545577,0.2943326424639522,0.3050051669137799,0.315287959301601,0.3241471617818656,0.3321355532704017,0.3403303951900064,0.3480747866783275,0.3552677256784419,0.3620576591455565,0.3687362156700878,0.3754049760454324,0.3805605717628507,0.3860732455629345,0.391060052494823,0.3907146512943458,0.3904149138002145,0.3901487956980165,0.3908958390462857,0.3908421427723007,0.3887180428696011,0.3878732287449393,0.3879341445016562,0.3881210756210756,0.3888304604360149,0.3890668015057025,0.3896211687054127,0.3906518549570321,0.3913325577232862,0.390975815184695,0.3924467195988299,0.3934608477523446,0.3959727326987717,0.3992947666096428,0.3997707238012412,0.4022295735713962,0.4059242714316103,0.4079564170784239,0.4101283332052562,0.4101364894530877,0.4099109935049314,0.4122793553338449,0.4102875658161198,0.4139445511940708,0.4159938485198001,0.0,3.0703740222416696,71.00574850061676,223.9452214607428,344.7321911784918,NC_public_implementation,82 +100000,95735,48829,458.1918838460333,7775,79.88718859351334,6164,63.74889016556119,2368,24.29623439703348,77.34438518034166,79.69666614708893,63.33412346583962,65.07200560711097,77.05431102126488,79.40667850601518,63.22752282355821,64.96826548230605,0.2900741590767808,289.9876410737505,0.1066006422814069,103.740124804915,129.54546,90.94266597473091,135316.71802371126,94994.1672060698,303.63247,188.6757339380277,316522.99576957227,196444.9302115503,372.05757,178.62664177401226,384054.1599206142,183161.8651516168,4406.81368,1987.9273544340545,4560816.127852927,2034168.2712007647,1458.42416,641.3549311053825,1506199.1956964536,652729.4835800728,2322.16772,966.127083787736,2385162.7304538568,976780.4922290453,0.42976,100000,0,588843,6150.759910168695,0,0.0,0,0.0,24981,260.27053846555594,0,0.0,34207,352.8490102888181,1797929,0,64643,0,0,8672,0,0,61,0.6267300360369771,0,0.0,0,0.0,0,0.0,0.07775,0.1809149292628444,0.3045659163987138,0.02368,0.3313319446146305,0.6686680553853694,25.009248479298503,4.36740840190956,0.3303049967553537,0.2222582738481505,0.2212848799480856,0.2261518494484101,11.141999445893935,5.765192670361579,25.19322626379533,14563.857421373275,69.84404995293237,16.386624867238183,23.13245865529644,15.4165044802551,14.908461950142636,0.5606748864373783,0.7956204379562044,0.6984282907662083,0.5738880918220947,0.1055718475073313,0.743734335839599,0.9494949494949496,0.8429906542056075,0.7532894736842105,0.1412213740458015,0.4967162872154115,0.7085714285714285,0.6469020652898068,0.5238532110091743,0.0970961887477313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027450265386329,0.0053024849695335,0.0080256496108929,0.0108771822918253,0.013298899892226,0.0157584518440849,0.0186400603330547,0.020970457676412,0.023796630258197,0.0261536887342678,0.0285371751782933,0.0312528866582504,0.0336116309198215,0.0359419573433847,0.0383548077617421,0.0405919312169312,0.0432455931519185,0.0459419658598303,0.0484628655760876,0.0506447782337868,0.0672659316796124,0.0841504892470305,0.099017170668261,0.1138115620431815,0.1274491194769587,0.145444932057315,0.1600551548578701,0.1741235303505878,0.1877723660599846,0.2005553709084281,0.215987511438876,0.2300028126960773,0.2434513129995106,0.2558429349133125,0.2677636499626028,0.2804960416320655,0.2922307666551335,0.302651263765312,0.3129581300351753,0.3229308626988398,0.3314974660403119,0.3393369144167866,0.3474601351911262,0.354578948000048,0.3615575384765007,0.3682437019390992,0.3741378877937451,0.3801956457969314,0.3855146553178238,0.3900790817001243,0.3896179211566213,0.3898536343339122,0.3902697209637126,0.3898783666377063,0.389652758122421,0.3882347515986227,0.3864294119517857,0.3859839873480281,0.3872832369942196,0.3873621941382092,0.3883664949035242,0.389028766281398,0.389442901624169,0.3900535336722299,0.3909696162692168,0.3927054381456815,0.393631669535284,0.396513470681458,0.3995189076373412,0.402763315979175,0.4031644118321486,0.4058987260464618,0.4088748019017432,0.4100823672971324,0.4157824933687002,0.421793037672866,0.4257994411673393,0.4253017062005826,0.4330620263822621,0.429079415250889,0.0,2.478265606073093,70.4648372313214,231.96781728680975,345.39580367815705,NC_public_implementation,83 +100000,95656,49174,461.9574307936773,7948,81.66764238521368,6256,64.65877728527222,2455,25.152630258426026,77.28108161739658,79.66786016859355,63.29287913429015,65.05559361896178,76.97746229722138,79.36881234771977,63.18043807938183,64.94843114853117,0.3036193201752013,299.04782087378123,0.1124410549083236,107.16247043060888,129.349,90.79296086328203,135222.17111315546,94915.28957024982,306.27305,190.28092688494917,319420.7786234005,198166.1187457491,374.64128,179.7882937850253,387831.1658442753,184944.40504851128,4492.89165,2030.8908621957687,4642814.846951576,2069538.3812207235,1490.35254,653.6549547833208,1533834.8352429538,659422.849551202,2410.18198,1006.8314119264868,2470367.7552897884,1009403.9019300968,0.43268,100000,0,587950,6146.462323325249,0,0.0,0,0.0,25138,262.001338128293,0,0.0,34462,356.4021075520615,1793310,0,64494,0,0,8778,0,0,61,0.6377017646566864,0,0.0,0,0.0,0,0.0,0.07948,0.1836923361375612,0.3088827377956719,0.02455,0.3292289300657501,0.6707710699342498,25.039009926301794,4.416354966528282,0.3278452685421995,0.222346547314578,0.2225063938618925,0.2273017902813299,11.029375414085296,5.645620212539492,26.20812957888433,14735.717442252992,71.01835063224038,16.76613360383479,23.12603605305917,15.94067398643242,15.18550698891402,0.5676150895140665,0.7778576563623293,0.6981960019502682,0.6132208157524613,0.1185344827586206,0.7338308457711443,0.901010101010101,0.8703339882121808,0.7936507936507936,0.1418685121107266,0.5101118760757315,0.7098214285714286,0.6413748378728924,0.5618789521228545,0.1124206708975521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024920224889834,0.0049878851164346,0.007580908694196,0.0103625890217512,0.01313996298029,0.0156612765264144,0.0184044700940106,0.0210009392739004,0.0236544850498338,0.0262131649249224,0.0285242640801386,0.0314184506391498,0.0339781363444708,0.0364951470315494,0.0390232322919569,0.0413168451962446,0.0439002662191698,0.0462499740518547,0.0487360865494642,0.0511366597525511,0.068289624908578,0.0853744096673193,0.1008366312209357,0.1164611305189612,0.131214653498776,0.1488107833594312,0.1637737932205908,0.1785463221353556,0.1924787750475823,0.2050131019373684,0.2201557746661201,0.2348382201506693,0.2485729225674321,0.2622706610438687,0.2745208257558222,0.2867365618239307,0.2986314541917306,0.3086762004575318,0.3195807137416296,0.3282124827902707,0.3364051560254092,0.3443024618991793,0.3514963096565963,0.358439092394962,0.3648141834299352,0.371266951559914,0.3762906645589471,0.3819613749792578,0.3876633668511445,0.3925836623300919,0.3916694840760024,0.391315767646327,0.3900099192291342,0.3894404791324447,0.3896166038638675,0.3882684576164143,0.3873673154351735,0.3877901693515076,0.3891201871795754,0.3900743614613643,0.3898125955423028,0.3900462962962963,0.3919230850680841,0.3931365013338156,0.395355623100304,0.3971295639145177,0.3965750467693193,0.4001336430457886,0.402353024557922,0.40358959977565,0.408921591170384,0.4100337674867342,0.4130420938674138,0.417061973986228,0.4207138123639117,0.4258429615656685,0.4240282685512367,0.4296685529506871,0.4323585679147308,0.4255732607850758,0.0,2.732148959453488,70.73708780153163,237.47719340187476,351.99124202650205,NC_public_implementation,84 +100000,95720,49142,461.7007939824488,7811,80.26535729210197,6137,63.46636021730046,2467,25.37609694943585,77.3612597271838,79.72762672682235,63.34108899169471,65.08935202337678,77.05634936826878,79.42054496296437,63.22890887210868,64.9789344755685,0.3049103589150235,307.0817638579797,0.1121801195860285,110.41754780828228,128.4426,90.12853552187346,134185.75010447137,94158.52018582684,301.91475,187.75671298627327,314720.50773088174,195458.03696852617,372.02821,179.0961789100711,383987.66193063103,183560.87468212607,4372.22086,1989.0052296928964,4525961.826159633,2036183.691697552,1431.74905,637.0818590471029,1478310.0710405349,648110.3312234671,2419.07388,1009.346174559378,2491079.4400334307,1024332.312651226,0.43284,100000,0,583830,6099.352277475971,0,0.0,0,0.0,24844,258.8905139991642,0,0.0,34209,352.79983284580027,1805505,0,64907,0,0,8502,0,0,54,0.5536982866694525,0,0.0,0,0.0,0,0.0,0.07811,0.1804592921171795,0.3158366406350019,0.02467,0.3327669902912621,0.6672330097087379,25.120331842097837,4.377682291722598,0.320514909564934,0.2351311715822062,0.2240508391722339,0.2203030796806257,11.287353958638995,5.7701244667797775,26.364430928028938,14600.755611016357,69.69967834981753,17.251606318137465,22.19708091476052,15.160834796311626,15.090156320607909,0.5677040899462278,0.7872487872487872,0.7122521606507372,0.584319526627219,0.1141818181818181,0.7350952673632453,0.9222903885480572,0.8600746268656716,0.740625,0.1666666666666666,0.5073170731707317,0.7180293501048218,0.6568832983927324,0.5358527131782945,0.1006404391582799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002775498627445,0.0051707356638819,0.0076718556554565,0.0104337048287632,0.0130987491101393,0.015549581474919,0.0181612383496828,0.0210343595241741,0.0232703180753933,0.0259111384111384,0.0283698850645422,0.03085297591537,0.0336933045356371,0.0361281948264672,0.0384190702234146,0.0407637912496898,0.0433485906012468,0.0458257666165101,0.0483003878588734,0.0505115755694013,0.0672423334342664,0.0834728909357337,0.0991996475512152,0.1137410359403587,0.1278313570487483,0.1459846298586666,0.1615906680805938,0.1763353905086188,0.1896710104678487,0.2019082332761578,0.2175359634766129,0.2323986325673979,0.2461836211020745,0.2583413503585797,0.2706491621585961,0.28317173595431,0.2950497920221248,0.306198370328744,0.3168087808417997,0.3248265439307549,0.333460573041376,0.3418246861044214,0.3486682522215517,0.3563829787234042,0.3625749447775323,0.368981521377833,0.3752360702895378,0.3797189624010386,0.3855388883846962,0.3889953861001309,0.388031721198716,0.387696630761178,0.3877214261536725,0.3872985534946353,0.3864618410465775,0.384477171859883,0.3833568719551867,0.3852584461961262,0.385869099998288,0.3863220903975053,0.3883431195423065,0.3891531495671211,0.3913309428390635,0.3922318736216751,0.3928727167013905,0.3938508515622943,0.3938616714697406,0.3964216357327051,0.4010298295454545,0.4023954021140629,0.4050050602631337,0.408996095630315,0.4128725428027901,0.4190651623301865,0.4173674761409808,0.419185908117115,0.4149377593360996,0.416700694160882,0.4144271570014144,0.419828641370869,0.0,2.5101077051735645,71.68575248424888,228.49681176015983,342.62257721516147,NC_public_implementation,85 +100000,95630,48997,460.1066610896162,7917,81.36568022587055,6208,64.12213740458016,2458,25.11764090766496,77.2430810454354,79.64704917383693,63.27207635196621,65.04980511969583,76.93515091220625,79.34703375087341,63.15738184110453,64.94317936354263,0.3079301332291493,300.0154229635257,0.114694510861689,106.62575615320692,128.42126,90.15743171836584,134289.72079891246,94277.35200080083,303.11445,188.34229386825572,316176.25222210604,196159.35780430384,370.81208,177.64484030080754,383549.7019763673,182525.6093224508,4477.33196,2020.138732799246,4627223.068074872,2057743.587576333,1526.62125,672.4579842037529,1578059.2596465545,684938.8245609337,2417.6284,1012.2562657396252,2474217.985987661,1009600.5755389252,0.43144,100000,0,583733,6104.078218132386,0,0.0,0,0.0,24926,259.81386594165014,0,0.0,33953,350.8836139286835,1799099,0,64720,0,0,8853,0,0,73,0.7633587786259542,0,0.0,1,0.0104569695702185,0,0.0,0.07917,0.1835017615427406,0.3104711380573449,0.02458,0.3171579199616582,0.6828420800383417,25.066961851623443,4.471690049478981,0.3213595360824742,0.2263208762886598,0.2288981958762886,0.2234213917525773,11.080162998813144,5.524913548143603,26.39927109266396,14659.064290809469,70.58941561872858,16.698154790582166,22.70552261757139,15.464566487277922,15.7211717232971,0.555090206185567,0.7743772241992882,0.7007518796992481,0.5710165825522711,0.1182266009852216,0.6969508400746733,0.901840490797546,0.8481781376518218,0.6794871794871795,0.1538461538461538,0.505542273418822,0.7063318777292577,0.6522318454363758,0.5395348837209303,0.1082055906221821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025133776552618,0.0053658734505913,0.0080708201780656,0.0106280291407147,0.013334960788502,0.0161820866642904,0.0191282182003568,0.0217389084596926,0.0242967144215725,0.0270757383361323,0.0294437379497066,0.0319797892661285,0.0344735380628175,0.0367794776696028,0.0391837071750776,0.041705014322203,0.0442354111199743,0.0464925574539641,0.0485577273152819,0.0510149823277345,0.0687770415734799,0.0855472678511565,0.1009828422622172,0.1162976765730768,0.1305881110759159,0.1490497114722854,0.1635641123719665,0.1775180738307991,0.1903340075555698,0.2034653890774717,0.2190265486725663,0.2337124456539416,0.2477859718303722,0.2598523516396854,0.2713443201234636,0.2831208318075391,0.2941222517948603,0.3046228436125831,0.3148640964403503,0.3239333203308743,0.3323244271268206,0.3409668912979783,0.3482132270991914,0.3558277787785984,0.3627648040541363,0.3688478989207165,0.3743173857915814,0.3800158361216827,0.3851896166051085,0.3896296689022612,0.3889489619377163,0.389158140369772,0.3887756834776702,0.3883533203635413,0.3879026955950033,0.3871335304262133,0.3859484255292038,0.3864853252247488,0.3880189084658358,0.3892006619181236,0.3896894738832785,0.3904683943616979,0.3921527175866224,0.392928905244621,0.3939747044400747,0.395291757937241,0.3981714550241588,0.4003951687434271,0.4024364180380423,0.4040538900351984,0.4081585190008837,0.413134102106004,0.415082219938335,0.4205985231247571,0.4208284939992257,0.4195583596214511,0.4246466571383198,0.4268369269415951,0.4255859926574414,0.4326885116462692,0.0,2.9950428739655144,70.72515618657373,232.00272938881707,352.36951671254343,NC_public_implementation,86 +100000,95821,48966,460.3896849333653,7722,79.12670500203505,6037,62.44977614510389,2434,25.00495715970403,77.44904619750217,79.77535506349811,63.38601454967061,65.1070872586532,77.14788793244648,79.47537487548222,63.2751410314581,64.9992822120906,0.3011582650556903,299.9801880158941,0.1108735182125144,107.80504656258928,130.13528,91.24650033217146,135810.58431867755,95225.76505376844,300.95744,187.51867525565396,313485.2902808361,195099.44103128844,366.3001,175.20604308996062,379791.67405892233,180760.8527697881,4315.70275,1960.6886111266308,4466971.248473717,2009270.835982524,1440.79665,637.3383131625766,1489114.139906701,650696.7549522652,2390.2373,999.4492885741352,2458107.596455892,1010729.3662308096,0.432,100000,0,591524,6173.208378121706,0,0.0,0,0.0,24726,257.417476336085,0,0.0,33681,348.9736070381232,1803973,0,64793,0,0,8810,0,0,58,0.6052952901764749,0,0.0,2,0.0208722513853956,0,0.0,0.07722,0.17875,0.3152033152033152,0.02434,0.3260628465804066,0.6739371534195934,24.88776647770576,4.4397292075825465,0.3283087626304455,0.2252774556899122,0.222295842305781,0.2241179393738611,11.37677688848082,5.874046749391771,25.83704547905513,14543.477914363611,68.49933053121539,16.23753202171107,22.37358800117796,15.163014120590546,14.7251963877358,0.5650157362928607,0.7772058823529412,0.7063572149344097,0.5949741315594974,0.1110283159463487,0.7262750161394448,0.911504424778761,0.8490945674044266,0.7578616352201258,0.1773049645390071,0.5093582887700535,0.710352422907489,0.6585858585858586,0.5449275362318841,0.0933962264150943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002471061239784,0.0052000446007724,0.0078130549044676,0.0103412196137788,0.01315883136561,0.015547839898995,0.0182294587237339,0.02090243827759,0.0236382217680122,0.0261636532932232,0.0286109545524414,0.0310344827586206,0.0334601151315789,0.035922410065276,0.0382838283828382,0.0407665685211013,0.0431691161250258,0.045343315153149,0.0475943107084601,0.0496564647095565,0.0667501173525269,0.0831799933087989,0.0993837640696723,0.1141194145890461,0.1284364034856643,0.1461440091313584,0.1611822576541429,0.1750848196717824,0.1881622331060533,0.200518406649315,0.2173450070989115,0.2312737724757953,0.2446268964693361,0.2570951403746234,0.2688007906874588,0.2804847037491569,0.2919196533015452,0.3029574902876648,0.313152589975312,0.3230463258238178,0.330988762228151,0.3392329694705505,0.3466134517286983,0.3539882291018709,0.3603861453381197,0.3666539535684846,0.3733454872383996,0.3785849403938197,0.383229741429439,0.3889225340986887,0.3884798323166635,0.3882179999725233,0.387569429796808,0.3867451965412209,0.3859789654814353,0.3842743353361158,0.3835475821989198,0.384396094108395,0.3860758414997869,0.3872783964365256,0.388408401662361,0.3889415481832543,0.3893745937899658,0.3906057414337897,0.3912603584505685,0.3921916130209283,0.3937628512679917,0.3967713456930256,0.4008403064647106,0.404531517540716,0.4053930110978629,0.407737296775232,0.4091864687519908,0.4156024003692876,0.4184288584824419,0.4234136979728919,0.4272656855151046,0.4364572605561277,0.4409799554565701,0.4415384615384615,0.0,1.945083462464536,68.74838612986387,235.61319445914685,331.24095455241405,NC_public_implementation,87 +100000,95791,49218,461.2855069891744,7770,79.48554665887193,6200,63.97260702988799,2455,25.127621592842758,77.3497797498425,79.68340797324066,63.33168066437421,65.06018797669616,77.03998316621121,79.37584413176289,63.21790856658086,64.9504167326764,0.3097965836312824,307.5638414777728,0.1137720977933511,109.77124401975402,128.17442,89.88190608340696,133806.0986940318,93831.0343178451,302.1478,187.25138844148893,314714.2737835496,194771.1785449417,368.154,176.42117334129162,379932.8433777704,180665.61785922336,4396.79291,1997.91892574562,4538957.135847835,2034895.0067014408,1469.54308,651.2269764678473,1511488.0312346672,657419.5872614182,2399.49948,1004.8884425708584,2458472.236431397,1010039.6517897168,0.43467,100000,0,582611,6082.095395183264,0,0.0,0,0.0,24870,258.85521604326084,0,0.0,33876,349.197732563602,1807221,0,65002,0,0,8695,0,0,60,0.6263636458539946,0,0.0,1,0.0104393940975665,0,0.0,0.0777,0.1787562978811512,0.315958815958816,0.02455,0.3292682926829268,0.6707317073170732,24.856928910360164,4.345652935890254,0.335,0.2233870967741935,0.2169354838709677,0.2246774193548387,11.297716482209784,5.911652304919388,26.357003512813268,14743.374984713728,70.47777088753121,16.511211516702303,23.588863477683255,15.443654334283206,14.934041558862445,0.5614516129032258,0.7711191335740072,0.692344727973038,0.5843503230437904,0.1197026022304832,0.7372353673723536,0.922077922077922,0.878003696857671,0.7292307692307692,0.1654676258992805,0.5,0.695557963163597,0.626953125,0.5402621722846442,0.1077788191190253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027149137913568,0.005312946759001,0.0081088761239775,0.0111755681760456,0.013782931543078,0.0162720839061147,0.0189641109298531,0.0217429029327399,0.0243670594969183,0.0269708694139081,0.029543823680164,0.0320040248885968,0.0347543545766755,0.0374306220588386,0.0397858557517742,0.0423847902459185,0.0446655004295755,0.0469245928845555,0.0492067285214084,0.0514961580909147,0.0690237973521403,0.0846683118621381,0.1002337354701437,0.1159779730127369,0.1296419272892093,0.148061203988622,0.1634594984512241,0.1779670037253858,0.1919477855876258,0.2042906945561813,0.21940364451437,0.2341887927955231,0.2480608348473145,0.2609465708944209,0.2728893192346203,0.2843193757896837,0.2956732379272622,0.3066399657988884,0.3171019625202892,0.3263802978235968,0.3353509634859093,0.3437755889853309,0.3516600579984613,0.3588588408679711,0.3662370476549119,0.3720683748043529,0.3774779735682819,0.3832482462729321,0.387874625860036,0.3929907097831401,0.3923751686909582,0.3922175119789006,0.3914555530422981,0.3907863960600293,0.3902886825685882,0.3889666630770887,0.3878073607532525,0.3877854031938762,0.3878045427992165,0.3892494382022471,0.3904982837312813,0.3920218165893664,0.3938863708232318,0.3944526926710757,0.3965258624860889,0.3973383032339353,0.3994208383508228,0.4027308069155156,0.40607170528985,0.410251312231589,0.41290706728347,0.4136013686911891,0.4150162389352353,0.4177949709864603,0.4181038589804668,0.4246231155778894,0.4307835243109322,0.4361854196446804,0.4391929242675511,0.445141065830721,0.0,2.8790328820650277,70.37693402138018,238.0671359851635,344.33362129889446,NC_public_implementation,88 +100000,95793,48854,458.1754407942125,7898,81.04976355266042,6208,64.15917655778605,2551,26.254527992650814,77.41775944651599,79.74559033638432,63.37436231324406,65.09501479953369,77.10147126825984,79.42681378662465,63.25836890635013,64.98056705450946,0.3162881782561442,318.77654975967573,0.115993406893935,114.44774502422206,128.71342,90.2782866655902,134365.51731337362,94242.42509117596,302.25029,187.8348471699221,314884.8141304688,195445.16957154052,369.97152,177.44975881210138,381408.66242836113,181612.6738939768,4452.80953,2013.06486600391,4606535.404465879,2059680.3576461344,1474.0463,649.7439058769241,1521467.0904972178,661009.5942799023,2496.3034,1034.897078935386,2571037.633229986,1052465.3182548562,0.4321,100000,0,585061,6107.523514244255,0,0.0,0,0.0,24909,259.3508920276012,0,0.0,34118,351.4453039366133,1806231,0,64971,0,0,8607,0,0,45,0.4593237501696365,0,0.0,1,0.010439176140219,0,0.0,0.07898,0.1827817634806757,0.3229931628260319,0.02551,0.3246255242660276,0.6753744757339725,25.009169504527872,4.510011435878947,0.3229703608247423,0.2213273195876288,0.2239046391752577,0.2317976804123711,11.397575222878263,5.862268254781138,27.18566563372045,14635.586544123153,70.46755289544494,16.47771547076533,22.674458102854164,16.08653319301941,15.228846128806028,0.5596005154639175,0.7831149927219796,0.7007481296758105,0.5844336344683808,0.1093525179856115,0.7276702061211743,0.9151515151515152,0.8531187122736419,0.7325227963525835,0.1678571428571428,0.5011938354677664,0.7087599544937428,0.6505305039787799,0.5405405405405406,0.0945945945945946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026934254093297,0.0055142773154389,0.0080161540725106,0.0103085454286933,0.0133409257300902,0.0158801254122724,0.0183467536438691,0.0205458479627663,0.0233855965984586,0.0260779678016928,0.0286598741261608,0.0311858421614519,0.0338709511620974,0.0364136141824695,0.0388632824986337,0.041376603524138,0.0437549803889101,0.0460205065469587,0.0483472190480147,0.0508271647354009,0.0671820875589499,0.0838839173705779,0.0995932828780477,0.1147107021303416,0.1287339372235096,0.1464478911334629,0.1612530722942622,0.1755855865434711,0.18891924193273,0.2020271283776544,0.2173735331131882,0.2318173468615946,0.2443230563730547,0.2574015223492666,0.2699044061092188,0.2826147088436729,0.2934171795557934,0.3044337852866177,0.3143533784319724,0.3228419426806246,0.3316998185411634,0.3400850387814223,0.3483645301569295,0.3560034490191852,0.3633637279780479,0.3695903982649842,0.3755456876602664,0.3813382521307721,0.3865278533136508,0.3918974183079825,0.3925124187229918,0.3920428715094574,0.3916582035657865,0.3917266134985309,0.3912039795067318,0.3893506214185857,0.3890617064499746,0.3895802469135802,0.3899154775348185,0.390291053592525,0.3912446642471652,0.391953932006174,0.3925669291338582,0.3928443408907608,0.3950530718827825,0.3950911567476949,0.3954847581939033,0.3988936304725778,0.4014686154063405,0.4040980987378175,0.4066357670597953,0.4108340037543577,0.4137228693272229,0.4190227412415488,0.419998091785135,0.421256038647343,0.4258328095537398,0.4225672877846791,0.4313561681982734,0.4361493123772102,0.0,2.488064372738504,70.56997280492519,238.66770158806693,344.3509459596505,NC_public_implementation,89 +100000,95703,48798,457.2583931538196,7812,80.16467613345453,6145,63.42538896377334,2430,24.97309384240828,77.3893283971574,79.75331300130233,63.35181630130408,65.0950134108224,77.09268684421089,79.45567514596799,63.24286058049043,64.98848197477663,0.2966415529465109,297.6378553343437,0.1089557208136469,106.53143604577052,129.18906,90.669561016437,134989.56145575375,94740.56300893074,301.42749,187.25436159133028,314036.6341702977,194737.20948280653,371.74949,178.12379382540644,383095.08583847946,182006.79905197083,4417.9541,1984.670926199151,4569870.119014033,2027334.1757302803,1505.45207,653.1801135135566,1554739.5901904851,664201.4075606607,2393.8762,987.6742546733911,2463970.9726967807,1000668.966360984,0.43034,100000,0,587223,6135.889157079715,0,0.0,0,0.0,24810,258.4140518061085,0,0.0,34141,351.4727855971077,1802807,0,64785,0,0,8769,0,0,61,0.6164906011305811,0,0.0,2,0.0208979864790027,0,0.0,0.07812,0.1815308825579774,0.3110599078341013,0.0243,0.3245869776482021,0.6754130223517979,25.149802050784952,4.418519993844594,0.3246541903986981,0.2193653376729048,0.2294548413344182,0.2265256305939788,11.138628551780366,5.66984964100589,25.66972704077529,14547.689227129453,69.44747314112499,16.130872977669664,22.502169844364733,15.455628635568932,15.358801683521662,0.5594792514239219,0.7974777448071216,0.6786967418546366,0.6070402298850575,0.1163120567375886,0.7227595099935525,0.9367088607594936,0.8432539682539683,0.7055016181229773,0.1287878787878787,0.5043535045711798,0.7219679633867276,0.6230717639168344,0.5789473684210527,0.1134380453752181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00279530469834,0.0056756565011604,0.0082772891877909,0.0112405186681965,0.0139888577121711,0.0166011847810597,0.0193624653513777,0.0217240464480316,0.0245026413397774,0.0271771940775,0.0297059124910339,0.0320720646776377,0.0346482259738391,0.0370972722593926,0.0395907886188084,0.0418935816222137,0.0442785709109355,0.0467921788288989,0.0489787433085598,0.0514834569547462,0.0685539451150745,0.0848131599049841,0.0992489720567256,0.1136452057243199,0.1273482468531911,0.1453047497170899,0.1598616724479945,0.1742491189591473,0.1877817902091925,0.1996439907351805,0.2153287815804777,0.2298846844507907,0.2444391293948816,0.2574059291174123,0.2688519900086928,0.2808601626376548,0.2920899287803353,0.302657037437005,0.3122914538644876,0.3216986753449145,0.3296353708759428,0.3375399118138969,0.34519556112912,0.3528002108845167,0.3592759081521078,0.3652438573576164,0.3721466047257109,0.3779735009991218,0.3825050217067323,0.3874975245890817,0.3879062003607678,0.3870412686176802,0.3869164930457796,0.387233488587381,0.3874635828527261,0.386407142528982,0.3846275577218275,0.3846557721336221,0.3853196904733434,0.3859260186294316,0.3886136755985889,0.389173879458892,0.3908301989872034,0.3919100821106475,0.3922530446549391,0.3938776576294207,0.3954093299794192,0.3984116479152879,0.4009145269081955,0.4041251043198346,0.4067432178965185,0.4094804499196572,0.408709472345836,0.4111713914571712,0.4133030130756111,0.4130279169649248,0.4140215716486903,0.4204730831973899,0.4239500567536889,0.4232909379968203,0.0,3.0596139404866696,67.83093310754309,234.3175478019252,345.3852635267859,NC_public_implementation,90 +100000,95671,49384,464.97893823624713,7747,79.71067512621379,6057,62.714929288917226,2359,24.207962705522046,77.35982293729873,79.73629738700932,63.33991942654043,65.0905891157637,77.07055027000962,79.44963700543455,63.233627131468175,64.9885551690166,0.2892726672891115,286.6603815747624,0.106292295072258,102.03394674709898,128.14758,89.97229306445202,133945.87701602367,94043.22341816431,303.79561,189.0385252647672,316964.1688703996,197019.82009828085,372.59898,178.2355846924124,386811.7820447158,184111.42411208723,4361.90675,1961.308659279996,4514725.151822391,2005956.5119717144,1462.85562,632.322897983056,1511122.4508994366,643318.474683223,2322.14758,962.2947827645718,2384128.628319972,968067.2393935514,0.43361,100000,0,582489,6088.448955273802,0,0.0,0,0.0,24915,259.7965945793396,0,0.0,34154,354.30799301773783,1804390,0,64805,0,0,8624,0,0,69,0.7212216868225481,0,0.0,1,0.0104524882148195,0,0.0,0.07747,0.1786628537164733,0.304504969665677,0.02359,0.3372078796035727,0.6627921203964272,25.035360649068604,4.488855737947124,0.327059600462275,0.2199108469539376,0.227670463926036,0.2253590886577513,11.244049238341104,5.7103625008776975,24.949335396941887,14640.206781586152,68.53801707418828,15.850479128685992,22.26688705460983,15.390997700567592,15.029653190324856,0.5618292884266138,0.7822822822822822,0.7077233720343261,0.5934065934065934,0.1080493110949963,0.72893533638145,0.9403973509933776,0.8668032786885246,0.7413249211356467,0.1172161172161172,0.5053026955368979,0.7007963594994312,0.6557267247153382,0.5486641221374046,0.1057866184448463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002531696844493,0.0053212515583665,0.0079541419367929,0.0106233877028701,0.0132788352041646,0.0157667056847676,0.0181069707251958,0.0206199240909276,0.0231158961367954,0.0259432032081185,0.0283975659229208,0.0308797127468581,0.0333737614603461,0.0356672158154859,0.0379791228287329,0.0402063027772322,0.0427265480220724,0.045141013805765,0.0474521994988615,0.0500270980114228,0.0670448846539618,0.0834267045038064,0.098969266940969,0.1136679292929292,0.128604577576205,0.1469218885573402,0.1626099971339709,0.1766385104547246,0.1906559042069813,0.2029690217041282,0.2194609390996971,0.2350163536725366,0.2486613556223063,0.2604912326787942,0.272358842769512,0.2845953581122251,0.2948221401225542,0.3052413824118004,0.315173993920421,0.3239075433033005,0.3326277313160056,0.3405711477941434,0.3480864358240041,0.3556540488739818,0.3628574202631195,0.3694075342044013,0.3753361265711963,0.3812775806595195,0.3861977009113504,0.3907130880236595,0.3901664063762184,0.3892071273167911,0.3888011283497884,0.3892303020663128,0.3893091200903538,0.3886972915804478,0.3868030771671029,0.3881388303477344,0.3890204151655515,0.3903156384505021,0.3920520829413314,0.3931323482681919,0.3934560930389347,0.393711766822598,0.3950041108478019,0.3959418772090587,0.398490220748027,0.4005247186749273,0.4030739944301477,0.4045603386310997,0.4060033045713236,0.4084514604810996,0.409943054578028,0.4129676969556123,0.4171749904689287,0.4223347805113362,0.426761433868974,0.4244706840390879,0.425122083559414,0.427852998065764,0.0,2.233482621000612,67.72236116919606,230.03621235749205,342.8548679368633,NC_public_implementation,91 +100000,95841,49375,463.1525130163501,7907,81.1030769712336,6166,63.62621425068603,2439,24.989305203409817,77.34109898624328,79.6331383139721,63.34986309044478,65.04455428575925,77.0341762178208,79.3280305958044,63.2362613835108,64.93491001711965,0.3069227684224813,305.1077181676902,0.1136017069339843,109.64426863959886,127.90096,89.73026572094417,133451.1952087311,93624.09169451924,299.76558,186.2151044030768,312056.7398086414,193578.7652498167,367.50661,176.62483632873293,379172.90095053264,180898.88423755983,4425.49645,2007.7822196731263,4569894.721465761,2047297.31876037,1464.22444,645.7153031864339,1511972.6839244163,657964.0679948422,2391.85658,1008.1080716016452,2453557.7675525085,1015250.044245531,0.43504,100000,0,581368,6065.963418578688,0,0.0,0,0.0,24657,256.5290428939598,0,0.0,33777,348.10780354962907,1808805,0,65153,0,0,8596,0,0,39,0.4069239678217047,0,0.0,1,0.0104339478928642,0,0.0,0.07907,0.1817534019860242,0.3084608574680663,0.02439,0.3228393583911898,0.6771606416088102,25.17772234139366,4.448647314495789,0.3323061952643529,0.221050924424262,0.2262406746675316,0.2204022056438533,11.16062769184916,5.668473336843557,26.346464174114264,14697.461181110266,70.23583667231934,16.302296623510834,23.06891888442243,15.36196836736254,15.50265279702355,0.5535192993837171,0.7909024211298606,0.6798438262567106,0.5732155997056659,0.1168458781362007,0.7138344914718888,0.9230769230769232,0.8421052631578947,0.7035928143712575,0.1637630662020905,0.4981453196596116,0.7217877094972067,0.6282958199356913,0.5307317073170732,0.1046931407942238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028656776872057,0.0052791034643483,0.008084066173711,0.0106402420452007,0.0132132620494785,0.0157229504192786,0.0186334138166406,0.0213516959959194,0.0241047535391089,0.0266374786460304,0.0290903131305888,0.0316297960062767,0.0340170290562123,0.0364117126571599,0.0388570604237078,0.0412430719689541,0.0436360628276582,0.0461591064508775,0.0484956082975144,0.0509925919760279,0.0683581529220372,0.0853810215621309,0.1009009009009009,0.1166542383918162,0.1302736061671967,0.1474067814513573,0.1624888757045387,0.1765350061134442,0.1905300564525595,0.2024629961093664,0.218462432598237,0.2330488767751495,0.2463876838774911,0.2584203334244329,0.2700564474422596,0.2829314777058771,0.2938327269480592,0.3050254309762794,0.3144219308700834,0.3234920089362433,0.3328819757887183,0.3412587903537203,0.3494004427135738,0.3564293508891847,0.3637711993191903,0.3705847505738898,0.3769499680487163,0.3818744665401225,0.3876236276199982,0.3935839625510757,0.3932851128144229,0.392715788893026,0.3917486431478968,0.391496282527881,0.3922760887428101,0.3905165114309907,0.3900781461380528,0.391118970104609,0.3923005309978622,0.3933733961344811,0.395044422133399,0.3968361762473535,0.3964319010085601,0.3966528523223951,0.3970577472004684,0.3991486661555138,0.3999133699104822,0.4031831084744681,0.4045668900471581,0.4086865934770414,0.4111530321155793,0.4158660297353873,0.4189698091529967,0.4208294788775825,0.4223964808262408,0.4187756085803808,0.4148274790177184,0.4178921568627451,0.4153248195446974,0.4184507590502141,0.0,2.692306616548209,69.70833047664586,237.93837856584827,344.93355811390654,NC_public_implementation,92 +100000,95632,49146,461.7178350342981,7936,81.63585410741175,6200,64.15216663878199,2496,25.556299146729128,77.31769350596971,79.73894948621646,63.289715480586615,65.08080922048525,76.99985062263767,79.42447202164685,63.17195895739126,64.96750810772834,0.3178428833320481,314.477464569606,0.1177565231953536,113.3011127569148,128.61574,90.19656169909938,134490.2752216831,94316.29757727474,302.85093,187.93226765781557,315984.0743684122,195816.7175735608,370.85764,177.46725393715627,384286.6613685796,182676.34206317825,4432.81062,2007.1052818350995,4590195.102057889,2053713.6901436676,1463.31403,648.9960993498665,1511766.1243098543,660392.5257798188,2441.31396,1026.316861970132,2503821.001338464,1032733.9297708508,0.43328,100000,0,584617,6113.194328258323,0,0.0,0,0.0,24894,259.5888405554626,0,0.0,34103,353.06173665718586,1800802,0,64766,0,0,8821,0,0,50,0.5228375439183537,0,0.0,0,0.0,0,0.0,0.07936,0.1831610044313146,0.314516129032258,0.02496,0.3213013535977203,0.6786986464022797,25.193371859566007,4.399070209021498,0.3279032258064516,0.2248387096774193,0.222258064516129,0.225,11.150335665055584,5.797159443568226,26.678882031063303,14686.867808665556,70.3821376606645,16.76795183396671,23.027424619829883,15.52574239498996,15.06101881187795,0.5548387096774193,0.7869440459110474,0.6876537137235612,0.5727598566308244,0.1059506531204644,0.7221195317313617,0.9163424124513618,0.8460076045627376,0.7181208053691275,0.1473684210526315,0.4955210836792659,0.7113636363636363,0.6323822163238222,0.5332725615314494,0.0951509606587374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026035335116297,0.0052731919036222,0.0081319796954314,0.010660677445909,0.0134911025873208,0.016320293398533,0.018852141268643,0.0214961482662089,0.0238353528737514,0.0265998339432331,0.0290923275915166,0.0316898874093876,0.034404638087098,0.0370439142140934,0.0393242754559074,0.0418581067097148,0.0443248623596379,0.0468365343665278,0.0486731189509834,0.0510595694977473,0.0688174065713569,0.0854622042458662,0.1017951492106175,0.116760412058396,0.1295453345302846,0.1484043172935357,0.1640025507492826,0.1783361405453808,0.1909296130267789,0.2043291438392953,0.2199397986816127,0.2347553705751013,0.2486735016288419,0.2606156879929886,0.2724496433414551,0.284097214515592,0.2952634403792826,0.3056864026685298,0.3154677362542467,0.3246519415582926,0.3333951375530164,0.3418907523657828,0.349458860346851,0.3564000960614793,0.3627795974527256,0.3691097860573065,0.3754198205423831,0.3802000382238644,0.3857750791426644,0.3907341731950032,0.3907864349094445,0.3904602903029968,0.3902911249293386,0.3905251720391162,0.389161974558346,0.3880243572395128,0.3875051690682953,0.3883288862535823,0.3892078071182548,0.3898647681740126,0.3913312693498452,0.3917897153715213,0.3931255364133051,0.3943835309912732,0.3952525398430352,0.3957799508445327,0.3963013776939347,0.3988843717500236,0.4000211483557153,0.4005594405594405,0.4031649645781581,0.4070815450643776,0.4081008788689338,0.4102997694081475,0.4112772645013811,0.4140456182472989,0.4140443342117501,0.4154628687690743,0.4218009478672986,0.422360248447205,0.0,2.569394253976737,71.70121713969905,236.4307266527805,340.8445104988808,NC_public_implementation,93 +100000,95701,49344,464.1748780054545,7974,81.71283476661687,6280,64.93140092580015,2541,26.070782959425717,77.34880342590687,79.70656674668905,63.338894218876014,65.07716074578283,77.03228977937823,79.3920098755628,63.22094435048663,64.96325270024582,0.3165136465286338,314.55687112624275,0.1179498683893811,113.90804553701628,128.75764,90.43470741887872,134541.58263758998,94497.13944355724,306.73422,190.6723108038817,319810.50354750734,198534.9586774241,373.89723,179.59260208004017,386902.2162777819,184621.2455875817,4508.68048,2051.6163918163315,4663400.675019071,2095962.4160837736,1483.67686,652.0315371331948,1533762.604361501,664777.1678368143,2488.02942,1050.7901190776604,2555015.182704465,1059845.5329029637,0.43342,100000,0,585262,6115.526483526818,0,0.0,0,0.0,25262,263.2260895915404,0,0.0,34385,355.47172965799734,1799089,0,64660,0,0,8716,0,0,51,0.5329097919561969,0,0.0,2,0.0208984232139685,0,0.0,0.07974,0.1839785888976051,0.318660647103085,0.02541,0.3193586698337292,0.6806413301662708,25.065746153506808,4.422993887692389,0.3227707006369427,0.2213375796178344,0.2242038216560509,0.2316878980891719,11.067645076359614,5.709276364115453,27.26507451418164,14694.7829096586,71.36700892726604,16.51384404624709,22.985883981328936,16.266918818834327,15.600362080855694,0.5578025477707006,0.7913669064748201,0.6926492353231376,0.5869415807560138,0.1029829545454545,0.7158671586715867,0.9322033898305084,0.861003861003861,0.7164179104477612,0.1262458471760797,0.5025784271594328,0.7189542483660131,0.634857521537442,0.5482142857142858,0.0966576332429991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026227051330086,0.0054940599278271,0.0085130130384049,0.0110423714178323,0.0137058727834716,0.0164808876673283,0.0190200495377496,0.0214045115851791,0.0240866588319452,0.0263343738805588,0.0289550556039563,0.0315700884701438,0.0340413719361737,0.0365687929827451,0.0387551319345588,0.0408361490850098,0.0432914328314937,0.0455814146528736,0.0478299748372741,0.0501932915837405,0.0679568050797894,0.0842875384647589,0.1002413178050571,0.1159159538314236,0.1303522263362764,0.1478354703567348,0.1632193910579545,0.1775260081138926,0.1911885705737153,0.2042445441084955,0.2191645026775997,0.2335425911895226,0.2474893098458224,0.259891023677185,0.2708149876717154,0.2837252097952487,0.2954593712631732,0.3061900256791458,0.3160692984947458,0.3265502653994749,0.3353451571423607,0.3439940062980696,0.3514964100376768,0.3593360199577816,0.3646895780400929,0.3709281529448042,0.37590286036177,0.3808008148195302,0.3853378588454762,0.3911315348149322,0.3909056583418739,0.3906295229299626,0.3908359220559164,0.389548280509543,0.3890752418861904,0.3880704772730763,0.385723360330316,0.3875380689768705,0.3886907007855109,0.3896770028156889,0.3916279769177271,0.3932120683157122,0.3948415622697126,0.395349885098905,0.3974247053688345,0.3988436268068331,0.3983351096004839,0.4006929874753639,0.4040070921985815,0.4065823800923138,0.4080380214101144,0.4099432585787625,0.4128965827916854,0.4165305963766426,0.4172509845355873,0.4212187424132071,0.4208451592557553,0.4183116337673246,0.41852487135506,0.423030787684926,0.0,2.565015718151201,71.57853586573293,241.56287485605355,348.2619447673136,NC_public_implementation,94 +100000,95621,49205,462.09514646364295,7935,81.55112370713546,6180,63.89809769820437,2470,25.381453864736827,77.26744378178137,79.68267093797296,63.28338998351626,65.06933743693193,76.95856169155503,79.37433899026337,63.16928632702273,64.9583177751781,0.3088820902263336,308.3319477095898,0.1141036564935262,111.01966175382928,127.70604,89.68871535543003,133554.38658872005,93796.04412778578,303.37656,188.50359358967364,316538.0303489819,196404.4128273848,371.68062,178.5425626900164,383574.20441116486,182783.1921818548,4422.79147,2012.4781440057063,4577101.494441598,2056406.9545452408,1517.79555,673.7364403464506,1562741.3120548832,680028.1950057533,2425.86472,1020.3557298182416,2494374.5411572773,1030930.2074943013,0.43454,100000,0,580482,6070.653935850912,0,0.0,0,0.0,24939,260.0370211564405,0,0.0,34227,352.882734964077,1803370,0,64852,0,0,8724,0,0,59,0.6170192740088475,0,0.0,0,0.0,0,0.0,0.07935,0.1826068946472131,0.3112791430371771,0.0247,0.323145151624116,0.6768548483758839,25.103619733401096,4.3875434009549865,0.337378640776699,0.2242718446601941,0.2263754045307443,0.2119741100323624,11.219408805053297,5.862152452054467,26.695588824679625,14733.999544451346,70.50486623691029,16.55274069442093,23.633244461603404,14.674200570961014,15.644680509924942,0.554368932038835,0.7582972582972582,0.6839328537170264,0.5893129770992367,0.126518942101501,0.7122955784373107,0.9016393442622952,0.8372943327239488,0.7574750830564784,0.1587301587301587,0.4967984102450872,0.6804008908685969,0.6293888166449935,0.5391476709613479,0.1171586715867158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029383751798488,0.005860880146015,0.008457196231319,0.0109442321762458,0.0135098017273827,0.0160813948751374,0.0187715398576585,0.0212253315500923,0.0236505485741163,0.0264411014736152,0.0290856879134403,0.0317523909314103,0.0342773668562963,0.0370736733642452,0.0396676300578034,0.0421499906953662,0.0443703327774958,0.0469567383542306,0.0495131896479986,0.0516493598565411,0.0696033861106756,0.0862789455493763,0.1016981191518855,0.1171657821582006,0.1311430411418798,0.1486572348356489,0.1640395972298933,0.1780039430915969,0.1915367006824551,0.2040616878235281,0.2200377460231868,0.2355872348722837,0.2488109620052024,0.2607606019151847,0.2722397788960217,0.284134354325735,0.2957417827795641,0.3066921821354196,0.3175483035541874,0.3267962612535122,0.3353145637817171,0.3429491307147456,0.3514439085662823,0.3582279545099734,0.3650606222914739,0.3710938947992734,0.3764673422293569,0.3812255408109934,0.3856770055697648,0.3907537422175122,0.3917582937747663,0.3918521281445563,0.3916672561363797,0.390116751858736,0.3898677426585967,0.3880045567905416,0.3865439138606607,0.3868483119196451,0.3886046831010094,0.390837611747388,0.3916822200855909,0.3923366759035904,0.3931423501077449,0.3939182340353643,0.3947687678944048,0.3964127686472819,0.3970326068204037,0.4026287383325925,0.4048143151317191,0.4076356167693609,0.4115952801263588,0.414528055676381,0.4167581885134698,0.4210320868139589,0.424359221429948,0.4283449201122088,0.4323260937991816,0.4346917450365726,0.426917510853835,0.4266393442622951,0.0,2.8054722428059264,72.72236154033916,235.2093379805944,338.63346592433123,NC_public_implementation,95 +100000,95838,48990,458.982866921263,7782,79.85350278595129,6103,63.096057931092055,2426,24.9066132431812,77.40182060844235,79.71568389631223,63.36325590393732,65.07585031497854,77.10720057790614,79.4190528828401,63.25454643844749,64.96846721917034,0.2946200305362083,296.6310134721226,0.1087094654898308,107.38309580820273,129.50278,90.8373456190606,135126.75556668546,94782.17994851792,301.42238,187.4498314927959,313905.2985245936,194984.90705614263,370.03232,178.06787643465444,382019.3764477556,182727.60905395396,4383.57625,1979.4319275139785,4535214.591289467,2026931.8936770584,1455.09635,639.2147012634535,1502453.9848494334,651252.6078504561,2386.92522,992.3024981069876,2453080.7821532167,1005947.08915053,0.43099,100000,0,588649,6142.125253031157,0,0.0,0,0.0,24810,258.2378597216136,0,0.0,33961,350.32033222730024,1801941,0,64823,0,0,8724,0,0,57,0.5947536467789395,0,0.0,0,0.0,0,0.0,0.07782,0.1805610338986983,0.3117450526856849,0.02426,0.3258221680876979,0.6741778319123021,25.24415779972896,4.414518027521028,0.3214812387350483,0.2279206947402916,0.2295592331640177,0.2210388333606423,11.204670470889509,5.747280239114818,25.699349639061364,14576.02837541499,68.98126327255207,16.635843535737113,22.06884687828855,15.101048893674028,15.17552396485238,0.5575946255939702,0.7958303378864127,0.6926605504587156,0.5678280207561156,0.1220556745182012,0.7409261576971214,0.932806324110672,0.878,0.7232704402515723,0.156934306569343,0.4925638179800222,0.7175141242937854,0.6292749658002736,0.5198836081474297,0.1135758651286601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027339557301686,0.00560459718858,0.0080144462930649,0.0105934570421605,0.0134301196612478,0.0161549737367156,0.0187433114202721,0.0215248009797917,0.0243473639021199,0.0271434858704441,0.0296550663728153,0.0320441762121772,0.0346294982885688,0.037035893000556,0.0395445262701899,0.0419000185992684,0.0445008022359091,0.0468487525664157,0.0491389517854546,0.0512753801163504,0.0683840016686656,0.0846130526139725,0.0996510640973248,0.1149826149983718,0.1292524171634402,0.1470606873534568,0.1621802002224694,0.1758490566037736,0.1888000683052819,0.2012255217037322,0.216802925989673,0.2304890570116184,0.2444280234289254,0.256663861597141,0.2690945877592312,0.2809686742185164,0.2926837431389174,0.3031461963307499,0.3132546527462551,0.3221458834306653,0.3306991866156035,0.3386355395969543,0.346896519084692,0.3537174431566204,0.36087521716417,0.3675750964513306,0.3734650193398175,0.3794296911781547,0.3838959558537786,0.38886908298673,0.3885243913939671,0.3881337024335826,0.3875373512995433,0.3877904960110995,0.3879352623835213,0.387101226993865,0.3854338449828745,0.3855498931448298,0.3863375725313661,0.3877295567119074,0.3881904833383368,0.3890054636154881,0.3897458498604378,0.3904687149585109,0.3912697647512533,0.3906960933005596,0.3908646842060159,0.3931368540244708,0.3940566203622296,0.3972913762198765,0.4013387126352467,0.4041231593038822,0.4086273516184202,0.4113057446645758,0.4107109360345151,0.4139810426540284,0.4113584036838066,0.4186759297098488,0.425715079144682,0.4244548286604361,0.0,2.22418650840284,70.71478213259799,223.0769182208864,345.6921486871526,NC_public_implementation,96 +100000,95684,48648,457.39099535972576,7804,79.96112202667113,6169,63.75151540487438,2437,25.019857029388405,77.32145341825886,79.71017701969514,63.3143933609397,65.08077330262843,77.01545311935529,79.40338043737324,63.20192448595762,64.9705626773818,0.3060002989035695,306.7965823218941,0.1124688749820777,110.21062524662284,128.63818,90.22176974343762,134440.63793319676,94291.38596153758,301.0454,187.03310784150992,313892.4480581915,194737.42510922407,362.04582,173.5308712193216,374045.8070314786,177927.6823441746,4407.11525,1995.405855702056,4557782.513272856,2037288.6017537476,1459.301,643.3032552727963,1507191.3172526234,654387.7543994805,2393.2378,1004.6824395236064,2460149.9310229504,1016977.954907028,0.42977,100000,0,584719,6110.938087872581,0,0.0,0,0.0,24834,258.7788972032942,0,0.0,33325,343.92374900714856,1805826,0,64937,0,0,8586,0,0,63,0.6584172902470633,0,0.0,0,0.0,0,0.0,0.07804,0.1815854992205132,0.3122757560225525,0.02437,0.3253378789723609,0.6746621210276391,25.000193953869253,4.378508748539365,0.3297130815367158,0.2232128383854757,0.2206192251580483,0.22645485491976,11.095473057768032,5.731279417048597,26.245513739633555,14538.843137127647,70.04195701726276,16.5340864264319,22.925400668598208,15.50830986942556,15.074160052807084,0.562976171178473,0.7864923747276689,0.7035398230088495,0.5769506084466715,0.112417340191036,0.7243107769423559,0.9246861924686192,0.8473282442748091,0.7264150943396226,0.1413043478260869,0.5066695823310737,0.7130144605116796,0.6536423841059603,0.5329008341056534,0.1050691244239631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202561400664,0.0052023121387283,0.0078467597856098,0.0104267233056574,0.0131552173205274,0.0157485127536468,0.0184076608503217,0.0207882376965489,0.0232367944877784,0.0258050647941531,0.0284091491608484,0.0311463457213567,0.0335246677364934,0.0358592832265111,0.0381296449215524,0.0405599611252985,0.0429329024506452,0.0452054794520547,0.0476507414879677,0.0499843668577384,0.0667202824227358,0.0826136565859581,0.0976469847400348,0.112171661895942,0.1263651039853122,0.1441470049643813,0.1593406010169095,0.1743659661493561,0.1889315220760343,0.2019178170351063,0.2175931911226029,0.2318876667244067,0.2456596466800104,0.2581954656862745,0.2705037079418172,0.2821750927515366,0.2926206096309189,0.3039269693869521,0.3134016876871427,0.3218630438268918,0.3295881883294956,0.3384257255489138,0.3466799303655807,0.3528558063664931,0.3599090500103352,0.3670422604664924,0.3734094780082156,0.3786580786415305,0.3843514514333065,0.3882405745062837,0.3882457582577523,0.3876039429484002,0.3875861874480055,0.386702751204828,0.3856103958035288,0.3840643207428246,0.3837181585596466,0.3842552910925034,0.3863293310463122,0.3873647569662498,0.3881035847563044,0.389202849524416,0.3906991458399241,0.3908305318020802,0.3918239452014865,0.3924501424501424,0.3932512856069798,0.3974465104431992,0.4013078399317649,0.4059592556945781,0.4099416011403872,0.4119293712316968,0.4169814945251969,0.4171969579388483,0.4169695810216185,0.4211992731677771,0.4256185405574694,0.4296648738105089,0.4348069390039172,0.4362650135606354,0.0,2.757501103988198,70.19494928578392,234.63040505365788,344.34027558146926,NC_public_implementation,97 +100000,95694,48481,454.83520387903104,7813,80.13041570004388,6114,63.19100466068928,2395,24.63059334963529,77.3455376358958,79.73399779050656,63.32130932583449,65.0877947496675,77.04924354763399,79.43696100099338,63.21159149274609,64.98065101572386,0.2962940882618028,297.0367895131858,0.1097178330884034,107.14373394363008,127.35514,89.27952407269578,133085.81520262503,93296.88807312452,298.67242,185.3650622283224,311385.0816143123,192979.1650765172,365.71733,175.7514835611343,377764.5620415073,180247.68236621248,4359.08421,1987.6146803045813,4505340.585616653,2027160.6268988447,1452.62461,638.5059907615913,1500202.8444834575,649557.5048223272,2350.08832,984.093480787204,2417396.848287249,995183.5701965851,0.43018,100000,0,578887,6049.355236482956,0,0.0,0,0.0,24567,255.96171128806404,0,0.0,33674,347.4721508140531,1814073,0,65125,0,0,8565,0,0,56,0.5851986540430957,0,0.0,0,0.0,0,0.0,0.07813,0.1816216467525222,0.3065403814155894,0.02395,0.3297185329596686,0.6702814670403314,25.278390869725296,4.440510733846759,0.3267909715407262,0.2250572456656853,0.2237487733071639,0.2244030094864246,11.166911333497618,5.71665640321898,25.5247435029062,14654.58335847734,69.53972839236052,16.392527586519765,22.77219886328394,15.335306849566695,15.039695092990128,0.5614982008505071,0.778343023255814,0.7082082082082082,0.5750728862973761,0.1154970760233918,0.7254047322540473,0.9282786885245902,0.8468992248062015,0.7492354740061162,0.109090909090909,0.5031055900621118,0.6959459459459459,0.659919028340081,0.5205741626794258,0.1171088746569076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026849309516813,0.0056595162026471,0.0081222397075993,0.0108132279111364,0.0134288272157564,0.0161540028519046,0.0187432440700781,0.0213739366645221,0.0238669829842931,0.026430590259288,0.0290042357671046,0.0315327807393255,0.0340791030190814,0.0366641591871644,0.0392990567400771,0.0416950974918842,0.0441497902315222,0.0466122804832482,0.0488367981530205,0.0508684734248173,0.0688369469858378,0.0850776573031356,0.1001878653666523,0.114866215633253,0.1293157100813299,0.1478774158741576,0.1636739891754218,0.1780182790430132,0.1910214467466376,0.2038691115214497,0.2191280160424348,0.2331213916660348,0.2464971966686625,0.2589001367989056,0.270697551523692,0.2831809365475201,0.2949339108689827,0.3050113100530053,0.3146157949090414,0.3242144558446317,0.3323458618774301,0.3404511594728286,0.3477288592827478,0.354237044490764,0.3607904543413083,0.3668057761199542,0.3725220436495529,0.3783663561379205,0.3845537180465224,0.3894244699064928,0.3891981284285253,0.3900837797005906,0.3899569341627494,0.3904136288168627,0.3901052412830827,0.388496916083809,0.386968443408936,0.3883655049739772,0.3899739583333333,0.3905801778542742,0.390423607447049,0.3928223093612532,0.3945895719384199,0.395535151678819,0.3964777985029432,0.398591290178454,0.3993401233682399,0.4031905801918146,0.4049890467104798,0.4068217302534129,0.4107020037599156,0.4131585985557636,0.4171265461465271,0.4195230427114485,0.4239223522694833,0.4237945238672159,0.421085464753587,0.4219365540120257,0.4254727474972191,0.4233490566037736,0.0,2.60076812548675,70.55690808508565,236.407127263444,333.78853839330867,NC_public_implementation,98 +100000,95590,49155,461.17794748404646,7967,81.72402971022073,6281,64.91264776650277,2615,26.84381211423789,77.23812690061078,79.66978980447493,63.25655152000609,65.05444070004742,76.91295554735873,79.34527285057887,63.13669564228738,64.93836299317162,0.3251713532520455,324.5169538960653,0.119855877718713,116.07770687579944,127.36262,89.41051455184339,133238.43498273878,93535.42687712458,303.82664,188.8013541661228,317054.2839209122,196723.0984217336,372.3083,179.29656207372267,384398.7550999058,183561.860043792,4541.28944,2070.6809090990164,4698095.491160163,2113566.25561384,1515.45552,675.4384528793125,1565727.597028978,687019.8583006959,2562.28568,1073.664445322657,2633047.682812009,1082059.7925613986,0.43208,100000,0,578921,6056.292499215399,0,0.0,0,0.0,24987,260.5607281096349,0,0.0,34256,353.2796317606444,1801439,0,64831,0,0,8519,0,0,57,0.5858353384245214,0,0.0,4,0.0418453813160372,0,0.0,0.07967,0.18438715052768,0.328228944395632,0.02615,0.3257476468485643,0.6742523531514357,24.97231422257625,4.448118198348721,0.3158732685878045,0.2185957650055723,0.2313325903518548,0.2341983760547683,11.411788096736004,5.960756828455758,28.04970510498785,14717.802002686967,71.53485343237402,16.452932200563087,22.452517465638596,16.628901840372066,16.00050192580027,0.5529374303454864,0.7982520029133284,0.6945564516129032,0.5866757307953773,0.0935994494150034,0.7147201946472019,0.9237113402061856,0.8694779116465864,0.7246376811594203,0.1392405063291139,0.4955790381712314,0.7297297297297297,0.6359353970390309,0.544404973357016,0.080914687774846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026653964650559,0.005558203929285,0.0084172691089269,0.0112417795757397,0.0138413939097866,0.01647360860662,0.0190422765056861,0.021666734768929,0.0240574432829409,0.0269683406225354,0.02924156611672,0.0320996280388812,0.0345303156616337,0.0370614735930557,0.0395009965610897,0.0419585484722121,0.0444432925565001,0.0470066380644692,0.049395182278112,0.0518480653473403,0.068579791960692,0.0850921132605369,0.1007974280581208,0.115719627152562,0.1298277482653373,0.1483819712938933,0.1645170201011431,0.1790252430496333,0.1927599970038415,0.2060182201022732,0.2213013025976408,0.2356953103822174,0.2490327502588414,0.2609110239154738,0.2722572537260781,0.2846851446902507,0.2957322531554919,0.306424502227988,0.3165786838991535,0.3259038843763284,0.3347731679845798,0.3427739762203782,0.3495777558704405,0.3561628998483645,0.362007955682456,0.3675414706610547,0.3743164246652838,0.3796982868831501,0.3854163954911098,0.3905794025574362,0.3905532917270229,0.3912429769450056,0.3912550974173086,0.3907437824323735,0.3902315084667234,0.3896111907956631,0.388048508058082,0.3879737090445522,0.3887221417235907,0.3891311398608958,0.3903352050365833,0.3923267326732673,0.3933547922578459,0.3946576798679121,0.3967323916267535,0.3984863268373724,0.3991164751400358,0.4015547342933605,0.4043710021321962,0.4070856685348278,0.4110582474941106,0.4145947691314175,0.4165869218500797,0.4199722179348665,0.4212132773750477,0.4209263258939285,0.4228456913827655,0.424037674037674,0.4195627802690583,0.4319781078967943,0.0,3.0383389449985034,72.0747066391898,238.8162578340372,350.0535474081732,NC_public_implementation,99 +100000,95720,37902,352.664020058504,8319,85.67697450898454,6441,66.70497283744254,2646,27.30881738403677,77.33641368994157,79.71012435037325,63.332022412709286,65.08896850185762,77.01402303802558,79.38639794370813,63.21500279203263,64.97416622649884,0.3223906519159811,323.72640666511643,0.1170196206766576,114.80227535878385,0.0,0.0,0.0,0.0,87.18273,38.10582802365691,90425.98203092352,39159.52413972241,153.72917,70.38640659726774,156793.97200167153,70653.83069842255,4674.67537,2067.6533778598223,4845977.768491433,2123098.3316147146,1602.13064,686.2544701296715,1659758.9845382366,702977.2221562734,2615.55012,1080.8603765283224,2701576.159632261,1101923.772221016,0.37902,100000,0,0,0.0,0,0.0,0,0.0,6595,68.27204346009194,0,0.0,15089,153.9594651065608,0,0,0,0,0,0,0,0,21,0.1880484747179273,0,0.0,0,0.0,0,0.0,0.08319,0.2194870983061579,0.3180670753696358,0.02646,0.3068530514831231,0.693146948516877,26.08126574883845,4.673847740392657,0.3417171246700823,0.1802515137401024,0.2420431609998447,0.2359882005899705,10.89784817065742,5.240475820524832,28.260426347744666,13837.977484057445,72.00851945726154,13.092080716008596,24.78647080268591,16.84224193972907,17.28772599883797,0.5300419189566837,0.73557278208441,0.6874148114493412,0.5644736842105263,0.1212315586914688,0.6896551724137931,0.9198473282442748,0.8513761467889909,0.7264150943396226,0.1486486486486486,0.4848605577689243,0.681868743047831,0.6334541062801933,0.521630615640599,0.114806017418844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023104049288638,0.0047059300804267,0.0070561957459769,0.0093605171152126,0.011464553472427,0.0138614466420874,0.0160209669688656,0.0181335511537676,0.0202018136648502,0.0223266384128739,0.0241812311004049,0.0264470955421859,0.0283822138126773,0.0302921061305207,0.0324108469539375,0.034274610327862,0.0364165380991333,0.0385297687591422,0.0404190527661431,0.0424683076217956,0.0572338537043805,0.0715130209150737,0.0846625766871165,0.0974632843791722,0.1096202291484405,0.1253699162932273,0.1403782145052894,0.1541504498181586,0.1680417542773585,0.1801159066319589,0.1944794188861985,0.2083153114186851,0.2214978050158647,0.2341278510880014,0.2457611287539971,0.2582692839369643,0.2701805215065745,0.28139822412049,0.2917970698961309,0.3019692652729623,0.3113842382758301,0.3199574652067729,0.3286751318247381,0.3366865464300256,0.3452344821725565,0.3526201680258198,0.3596501107482074,0.3670064521055243,0.3732219199378158,0.3791271246926961,0.3815691830263779,0.3846037006351837,0.3872732670747741,0.3898733075014149,0.3920909525516912,0.3944388816144188,0.3959441807117596,0.3964300471035452,0.3985476071655969,0.3996257107896063,0.4024726311815779,0.4039828736433337,0.4050726318230693,0.4064328801656613,0.4075349107835531,0.4068483063328424,0.408269480988868,0.4102261113949923,0.4100873284619497,0.410055369195328,0.4086081609837898,0.4102801700643192,0.4081845432034406,0.4074858757062147,0.4086478139175755,0.4121480388540514,0.4138858136960304,0.4139583333333333,0.4109396914446003,0.41747197526092,0.0,2.2319517330658334,62.7315933019848,251.65827940106587,384.2852980238886,no_screening,0 +100000,95612,37839,352.6753963937581,8411,86.91377651340837,6447,66.86399196753545,2688,27.75802200560599,77.26635035352784,79.70403045388863,63.26822878755484,65.07187496547432,76.94030015496631,79.3747683134552,63.150240919739,64.9551564611692,0.326050198561532,329.2621404334284,0.1179878678158417,116.7185043051262,0.0,0.0,0.0,0.0,86.99298,38.23906868768044,90352.40346400034,39361.93182802165,152.81068,69.64287474343949,156385.90344308247,70200.4190530298,4692.01795,2069.4397206564795,4872977.994394009,2130157.38337412,1563.17681,666.7461548134448,1622798.7177341755,685322.37480588,2649.16158,1090.9759575940789,2739290.361042547,1114469.417519044,0.37839,100000,0,0,0.0,0,0.0,0,0.0,6601,68.44329163703301,0,0.0,15019,153.59996653139774,0,0,0,0,0,0,0,0,19,0.1882608877546751,0,0.0,0,0.0,0,0.0,0.08411,0.2222838869948994,0.3195815004161217,0.02688,0.3071549295774647,0.6928450704225352,26.132791072833577,4.6877419994955964,0.3460524274856522,0.1768264308980921,0.2396463471382038,0.2374747944780518,10.92578991115283,5.389469198978457,28.58380774976801,13757.9624512596,72.37579400097702,13.258636810309614,24.958236691915687,17.077449391338774,17.08147110741295,0.5293935163642004,0.75,0.6790676826535186,0.5682560418027433,0.1119741100323624,0.6792189679218968,0.9155844155844156,0.8615071283095723,0.6797583081570997,0.1447368421052631,0.4865350089766607,0.6887019230769231,0.6275862068965518,0.5375,0.1039484286865431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023511289472617,0.0044636063910727,0.0065910406532137,0.0085610867089637,0.0108100405122045,0.0131781444601852,0.0154004735467015,0.017585808732616,0.0195322092166653,0.021672524567318,0.0236465335864935,0.0258004831166161,0.0278767165592637,0.0299418484761001,0.0318442390125497,0.0337013544695425,0.0358519900497512,0.0380644759253874,0.0401731817992589,0.0422685035510548,0.0566497313345459,0.070668860223617,0.0833770980820536,0.0963304684866868,0.1085845250417185,0.1239552989778083,0.1382795561790588,0.151827713837719,0.1652769601284452,0.178074096359651,0.1925977066051067,0.206157515312483,0.2192717806846525,0.2319162923194916,0.2436731184692033,0.2564705621318186,0.2678950544170559,0.27914390312588,0.289232902558507,0.2991451029892708,0.308791323391386,0.3186462923033655,0.327415589186883,0.3362809560376272,0.3439423802224006,0.3510301892385987,0.3589132507149666,0.3660673297628156,0.373079318936877,0.3792989461714421,0.3824462412764406,0.3848435926094575,0.3868660598179453,0.3896518220971882,0.3917521157032194,0.3931443861780491,0.3949181397272915,0.396537197046044,0.3979053089583297,0.3987650542764046,0.4003897012920678,0.4026637912098884,0.4041417863041545,0.4051488371041746,0.4054119822845184,0.4070261567292211,0.4085707680749003,0.4077601636410125,0.4074576271186441,0.4079197508392994,0.4082853961773984,0.4082846636383301,0.4094219243410453,0.4115604259916653,0.4113899980984978,0.4111577684463107,0.4106893880712626,0.4098528209321341,0.4065628476084538,0.4023076923076923,0.0,2.1817763978959777,63.73151451766454,255.19793748375795,380.3247208329911,no_screening,1 +100000,95703,38102,354.5656875960001,8393,86.44452107039487,6519,67.51094532041837,2661,27.47040322664911,77.34534288058313,79.71311932757267,63.32656324425341,65.07412978341118,77.01923622911106,79.38227458741875,63.20973996845694,64.95792591054978,0.3261066514720738,330.8447401539212,0.1168232757964702,116.203872861405,0.0,0.0,0.0,0.0,88.18911,38.68280809915108,91539.26209209744,39810.16070462899,160.40375,73.56792243671349,162933.81607682098,73363.58987670831,4772.73563,2105.533887267045,4948716.079955696,2161758.782135404,1634.35151,690.9855463048265,1695309.530526734,709587.0728240763,2634.17952,1074.908229442972,2721857.162262416,1097464.2856160272,0.38102,100000,0,0,0.0,0,0.0,0,0.0,6673,69.09919229282258,0,0.0,15746,159.86959656437102,0,0,0,0,0,0,0,0,15,0.1567348985925206,0,0.0,0,0.0,0,0.0,0.08393,0.2202771508057319,0.3170499225545097,0.02661,0.3019102520628461,0.6980897479371538,25.82551054434361,4.757173283244207,0.330418775885872,0.1834637214296671,0.2448228255867464,0.2412946770977143,11.273988870838725,5.508710422486195,28.15892764129862,13915.963411172685,73.13671612088065,13.504994204651096,24.35565538153357,17.751796354890523,17.52427017980547,0.5396533210615125,0.7600334448160535,0.6908077994428969,0.5867768595041323,0.1240601503759398,0.6977687626774848,0.9409722222222222,0.8618677042801557,0.7452054794520548,0.1474358974358974,0.4932539682539683,0.7026431718061674,0.6371951219512195,0.5389072847682119,0.1183800623052959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024404569021386,0.0045203008128433,0.0068483421939044,0.0089477960593134,0.0112062478390856,0.0135309868762663,0.0158506875426847,0.0180170064207915,0.0200460005111167,0.0223154877674275,0.0242349684760879,0.0263198430873186,0.0284917867538906,0.0305558989574319,0.0326315789473684,0.0347736200124043,0.0367857993558342,0.0387094096036696,0.0408833804691399,0.0427469779074614,0.056636484214264,0.0706039959391713,0.0841544160082265,0.0973644063338418,0.1094861243009391,0.1249272448277686,0.1395571031232085,0.1531391447893924,0.1663941521592767,0.1795424563209884,0.1954446527463529,0.2106192007449031,0.2235244189083311,0.2359342668520566,0.247709049255441,0.2601904508519294,0.2718048889384976,0.2822454513744332,0.2930517711171662,0.3030511348663481,0.312396560304619,0.3219859151634262,0.3307047456663824,0.3385768239314189,0.3462885068929466,0.3541967403239935,0.3614456321507788,0.3683017810992144,0.3752806364120067,0.3821591149692991,0.3854770494682935,0.3882842067460427,0.3914644161875902,0.3936556329849013,0.3956898997894233,0.3977680289386592,0.3992941288691753,0.4006559214212729,0.4026614602065457,0.4047900544568644,0.4068163019775923,0.4084361731677314,0.409916833350879,0.4112345373019986,0.411724707368012,0.4123779187616816,0.412844300198179,0.4124972274153173,0.4127670126465691,0.4123492406939936,0.4115578586961551,0.4122446774019237,0.4122250016034892,0.4156874951365652,0.4157066052227343,0.4145546705286024,0.4138845553822153,0.4151177199504337,0.4127384960718294,0.4121648659463786,0.0,2.4087204397787243,65.58082997902585,251.0760067855529,387.676067171208,no_screening,2 +100000,95662,38088,354.32041981141936,8401,86.64882607513955,6470,67.04856682904392,2709,27.931676109636008,77.2498286400838,79.64729802119653,63.26585613190741,65.03841225388318,76.92010675262998,79.31567348571593,63.14689958521647,64.92168020417782,0.3297218874538288,331.6245354806,0.1189565466909456,116.73204970536231,0.0,0.0,0.0,0.0,87.85103,38.64102631045812,91230.9590014844,39797.23758102865,157.00032,71.7340823644686,160419.7068846564,72225.79906338462,4732.5048,2097.9690401495354,4905986.964520917,2152614.2689849813,1638.12186,702.1884785094959,1696821.2665426189,718445.9644472159,2681.2719,1098.46554125867,2766389.977211432,1116431.9564923372,0.38088,100000,0,0,0.0,0,0.0,0,0.0,6639,68.77338964270034,0,0.0,15425,157.5547239238151,0,0,0,0,0,0,0,0,14,0.1463486023708473,0,0.0,0,0.0,0,0.0,0.08401,0.2205681579500105,0.3224616117128913,0.02709,0.3002257336343115,0.6997742663656885,25.993904644901768,4.768695926129464,0.3304482225656878,0.1795981452859351,0.2428129829984544,0.2471406491499227,11.199153662038032,5.471751564883593,28.68676863438857,13923.271784306266,72.81139920968914,13.160824103764456,24.1994330261299,18.168258383694397,17.28288369610038,0.5370942812982998,0.7426850258175559,0.6997193638914874,0.5822388993120701,0.117759388924252,0.6865771812080537,0.9243986254295532,0.8718446601941747,0.710455764075067,0.1286173633440514,0.4923694779116466,0.6819747416762342,0.6451016635859519,0.5432300163132137,0.115079365079365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021880951416183,0.0044722991268368,0.0067295297449274,0.0090225563909774,0.0114025897407207,0.0137086753712341,0.0160194966757759,0.0185327002603767,0.0204233994681939,0.0225929681179012,0.0246684377339911,0.0268621146596267,0.029099440237076,0.0311276025561739,0.0333175022714132,0.0353611616746649,0.0372108928127331,0.0394111173404763,0.0412305707567781,0.0430521234112212,0.0585420388887147,0.072466803501864,0.0858609181167481,0.0989498937267198,0.1108191392811161,0.1264485813163437,0.140715097325022,0.1546265412035507,0.1678219940094137,0.1803454795462358,0.1948835252101293,0.2093459565561592,0.2230765036261519,0.2359310208648719,0.247943829279871,0.2609657165083069,0.2720198842325649,0.2838397400458079,0.2944946608683773,0.3041614471400825,0.3141220753270289,0.3230219547741056,0.3314737054968061,0.33971216956705,0.3472605247101891,0.3545079683494929,0.3608540388290916,0.3675787696204475,0.3737814163553773,0.3802846795696643,0.3835842720970537,0.3862394333070463,0.3885589556787096,0.391096886819901,0.3938972402961633,0.3957977109231788,0.3978403860548822,0.3991465290527465,0.4003411557944795,0.4012950237180527,0.4031955776839634,0.4043356643356643,0.4053504910260752,0.4052243197971841,0.4066445668600399,0.4077567581809559,0.4087797019734192,0.4087852838566445,0.4101610904584882,0.4114315552699228,0.4124390019335236,0.4140281206396909,0.4167304747320061,0.4212154012679758,0.4203050524308865,0.4187725631768953,0.4195160031225605,0.4183524504692388,0.4160337552742616,0.4170873786407767,0.0,2.1872433465131493,66.54128487981484,244.54580507276032,389.00306669264137,no_screening,3 +100000,95736,38134,354.0883262304671,8392,86.45650538982201,6519,67.41455669758503,2759,28.369683295729924,77.32698317968122,79.68509413929903,63.31555014592704,65.06076043778624,76.99717164469463,79.35674155892059,63.195552905532686,64.94473385325936,0.3298115349865895,328.35258037843573,0.1199972403943547,116.0265845268782,0.0,0.0,0.0,0.0,87.80798,38.61337718730493,91040.79969917273,39655.111125705,158.205,72.56053422985515,161117.3748642099,72626.2035598664,4751.38193,2101.7035428857776,4916755.8807554105,2149063.072288143,1624.81584,694.784424383305,1678681.979610596,707227.755894654,2726.60408,1116.7915949205342,2806016.5455001253,1130569.805859669,0.38134,100000,0,0,0.0,0,0.0,0,0.0,6640,68.63666750229798,0,0.0,15504,157.7671931143979,0,0,0,0,0,0,0,0,21,0.2193532213587365,0,0.0,1,0.0104453914932731,0,0.0,0.08392,0.2200660827607909,0.3287654909437559,0.02759,0.3060422282120395,0.6939577717879605,26.213367567835217,4.7523595172437485,0.333486731093726,0.1800889707010277,0.2439024390243902,0.2425218591808559,11.126120097453889,5.469933227604389,29.10346571007644,13988.16794544224,73.1204060584592,13.571758544664789,24.481009470878263,17.583169237469416,17.484468805446724,0.5309096487191287,0.7248722316865417,0.6964121435142594,0.5743200506008855,0.1182389937106918,0.6815789473684211,0.875,0.8600746268656716,0.7150684931506849,0.1523809523809524,0.4850970194038808,0.6724137931034483,0.6428571428571429,0.5320723684210527,0.1098039215686274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023808317714401,0.0046845531423009,0.006881432312283,0.0093363946684005,0.0117162471395881,0.0141336999134463,0.0162846188359097,0.0183430986260539,0.0205020236294509,0.0224050930901423,0.0247614557604206,0.0268536292433558,0.02882253173665,0.0310665815433408,0.0331342390575516,0.0351640402996641,0.0374070776302983,0.0393659948341856,0.0413150126803309,0.0431620948670132,0.0577838560153672,0.0720323910359691,0.0856390953793891,0.0983809924306139,0.1112106677910715,0.1273869187337435,0.1421510918790501,0.1559721911697382,0.1693121693121693,0.1817976900948864,0.1966218255508127,0.2111129163281884,0.2239696135302504,0.2364366533167005,0.24819993394253,0.2600771584408674,0.2715500385470553,0.2827965347482735,0.2935875728684901,0.3039375315323579,0.3138193108881525,0.322908000046873,0.3313412305977494,0.3396074568779128,0.3476646210792908,0.3552000988142292,0.3633717282742352,0.3702872016025109,0.3769661388993519,0.3838755341526982,0.3866112288564601,0.3894110664844796,0.3920574149160109,0.3945020671647204,0.3971597350677248,0.3993166707707461,0.4004582484725051,0.4017584665379984,0.4032778999450247,0.4050578423459779,0.4063813346902621,0.4080466634814461,0.409555663752408,0.4113399968412265,0.4119404435160671,0.4129637931489148,0.4143495173606109,0.4156542204694358,0.4171578723102052,0.4191736863217007,0.4184110042784192,0.4201590371803138,0.4204227145403616,0.4192852741836106,0.4229891614375357,0.4214687911824608,0.4170549860205033,0.4158273381294964,0.4213054535179429,0.4164025356576862,0.0,2.702510892288468,67.22625707022067,242.43626895050437,390.8717251129669,no_screening,4 +100000,95764,38318,355.72866630466564,8661,89.14623449312894,6769,70.17250741405957,2885,29.729334614260058,77.39144353273707,79.73046890026217,63.36142006586866,65.08738651152471,77.04226913512773,79.37903040726111,63.23488036876431,64.9628267405421,0.349174397609346,351.438493001055,0.1265396971043486,124.55977098261428,0.0,0.0,0.0,0.0,91.5637,40.22298243006391,95084.0712585105,41472.36167042303,160.77421,73.86305208840017,164973.22584687357,74761.49672384028,4962.72208,2194.9459563753376,5148587.350152458,2258382.1335526262,1702.76293,729.9946747435281,1765542.6047366443,749745.1701511304,2851.53228,1171.586359499935,2941888.0999122844,1192808.1283209191,0.38318,100000,0,0,0.0,0,0.0,0,0.0,6929,71.79106971304456,0,0.0,15712,161.2401319911449,0,0,0,0,0,0,0,0,30,0.302827784971388,0,0.0,0,0.0,0,0.0,0.08661,0.2260295422516832,0.3331024131162683,0.02885,0.3032222829055161,0.6967777170944839,25.68572008410669,4.75841753552337,0.3304771753582508,0.1731422662136209,0.2481902792140641,0.2481902792140641,11.204688605916331,5.498339300911385,30.59290418864974,14035.408628706671,75.93903437003065,13.434900513645086,25.145615470950247,18.801552584760017,18.55696580067532,0.5240065002215984,0.7380546075085325,0.670987930263746,0.5815476190476191,0.1214285714285714,0.68782722513089,0.8947368421052632,0.8342749529190208,0.7774725274725275,0.1610942249240121,0.4762449914138523,0.6831797235023042,0.6201641266119577,0.5273556231003039,0.1117690599555884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024906852421837,0.0047731487580692,0.0069195024451614,0.0092016128213201,0.0114081198971032,0.0134557446462014,0.0158039535357652,0.0183341155345154,0.0204619518025518,0.0226733240566423,0.025,0.027146535892727,0.02929510891903,0.0315352867920256,0.0336065151280861,0.0358245958369918,0.0377760758419407,0.0395249948143538,0.0415159452829404,0.0435321569199358,0.0586190699859088,0.0731184145818292,0.0869177507343684,0.0999526739233317,0.1116488985901532,0.1275421174529648,0.1422344306804683,0.155638545756328,0.1688186857197783,0.1819019950472229,0.1973602049824516,0.2116125124388872,0.2259421502875093,0.2390301997290328,0.2508712716718521,0.2634240814519699,0.2747382622172172,0.2854638619201726,0.2962043116841878,0.3061152067402353,0.3153774097674365,0.3244409618263473,0.3330098810721259,0.341580953750989,0.3496757426343785,0.3569527283482033,0.3643271120457646,0.3709007516881131,0.3777158413274565,0.3836428967740231,0.3860278257118205,0.389016743609178,0.3924750910271247,0.3949207727371391,0.3976267754518655,0.39914696451311,0.4002635715533256,0.4022036298955828,0.4032415744790327,0.4043981689255901,0.4041709169216819,0.4049110348679486,0.4075304774805283,0.4086155378486056,0.4106249542448571,0.4124914025712925,0.4140588914549654,0.4174809989142237,0.418292247231154,0.4181524156054174,0.4185419378835782,0.4178067318132464,0.4165162454873646,0.417725465741679,0.4166347626339969,0.4205596253152396,0.4193052566861359,0.4141683778234086,0.4137260350097249,0.4167636786961583,0.0,1.98434118385822,68.05695715009664,260.6291985308922,405.26201365718464,no_screening,5 +100000,95731,38012,353.95013109651,8522,87.8085468656966,6621,68.61936049973363,2755,28.392056909465065,77.37264048070351,79.73077362075122,63.34029949113111,65.08120791128853,77.04063219384315,79.39773761282487,63.21931606912795,64.96311727925942,0.3320082868603577,333.0360079263528,0.1209834220031638,118.09063202910863,0.0,0.0,0.0,0.0,89.70691,39.19775560987517,93137.61477473336,40388.692236291055,158.99337,72.55804455465149,163015.85693244613,73470.12130733096,4837.86713,2120.0626570147297,5013653.560497644,2175672.689227287,1651.54432,703.8156988662413,1710596.463005714,720868.1656431591,2723.8654,1115.340058358722,2808268.209879767,1131672.0882556234,0.38012,100000,0,0,0.0,0,0.0,0,0.0,6773,70.15491324649278,0,0.0,15541,159.34232380315677,0,0,0,0,0,0,0,0,24,0.2402565522140163,0,0.0,0,0.0,0,0.0,0.08522,0.2241923603072713,0.3232809199718376,0.02755,0.2975105579017559,0.702489442098244,26.312217933983625,4.804728191309607,0.3285002265518804,0.1880380607159039,0.2460353420933393,0.2374263706388763,11.151336540454691,5.38546851941352,29.079099794125995,13870.714972726564,73.7754322195284,14.275936267859588,24.25899962442337,17.487445052850543,17.753051274394892,0.5254493278960882,0.7357429718875502,0.6809195402298851,0.5655216284987278,0.1184775936157151,0.6810810810810811,0.9169329073482428,0.8493975903614458,0.7025495750708215,0.1582278481012658,0.4806457887570511,0.674892703862661,0.6308884913536076,0.5258408531583265,0.1089108910891089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002359493670886,0.0043679628672483,0.0065938302038,0.0086732206694832,0.0110626442566777,0.0132133477207484,0.0153510560221805,0.0174537882886101,0.0194420877244988,0.0216808271061521,0.0238173354932638,0.0257800227923737,0.0282362135093726,0.0303916621180444,0.0321678754552301,0.0341370650185516,0.0360596335024329,0.0382736409745775,0.040421573416761,0.0423606120259559,0.0577419051696233,0.0715070471168032,0.0847514495716817,0.0974943243924997,0.1101084745048017,0.1254268466735032,0.1395842172252863,0.1543307756978513,0.1670849575479254,0.179893612457638,0.194869254297161,0.2090735971954729,0.2219164672612573,0.2346429821491074,0.2466846420513949,0.2585943214309462,0.2699316628701594,0.2814759748597689,0.2923419634941923,0.3025470399265718,0.3119708113742978,0.3210375314713976,0.3299817401408618,0.3380657249927933,0.3467159946939918,0.3546299840707309,0.3616687775088718,0.3682466870540265,0.3751069955645475,0.3803265683876512,0.3834268904841582,0.3865423345380307,0.3894931630692733,0.3918370305930114,0.3944361575178998,0.3958009690071521,0.3978508297831754,0.3998118998118998,0.4011594998370525,0.4029529816513761,0.4042037186742118,0.4049814583457274,0.4061387431797594,0.405874949431384,0.4063679473531404,0.4074695761644985,0.4074116567232675,0.4095274197624463,0.4109013935438348,0.4137766275134382,0.4131837949187457,0.4147502406674511,0.4166295282358184,0.4179219182293268,0.4154415251825856,0.4149586479683567,0.4120384734719206,0.408016443987667,0.4071168394508265,0.408859270874167,0.0,2.0235457104786865,66.10123955865419,250.28894623450853,397.4403919803582,no_screening,6 +100000,95742,37910,351.98763343151387,8465,87.2344425643918,6528,67.58789246098891,2693,27.76211067243216,77.33281654085012,79.69830146955174,63.319784280511655,65.0707875417045,77.00042315529453,79.36474043382148,63.19968413801474,64.95318228281032,0.3323933855555907,333.56103573025564,0.1201001424969163,117.60525889418716,0.0,0.0,0.0,0.0,88.25282,38.6264439021098,91603.64312422973,39770.19897444151,157.38884,71.55291754126496,161112.2495874329,72184.01561869003,4794.8735,2119.064256818515,4966036.838587036,2171224.4854071517,1623.5723,692.5907106199691,1679329.9387938415,706944.163084087,2670.996,1100.4902299458292,2754902.7177205407,1118000.059139977,0.3791,100000,0,0,0.0,0,0.0,0,0.0,6681,69.18593720624177,0,0.0,15482,158.39443504418122,0,0,0,0,0,0,0,0,17,0.1775605272503185,0,0.0,0,0.0,0,0.0,0.08465,0.223292007385914,0.3181334908446545,0.02693,0.3051758906565091,0.6948241093434909,26.046573079987105,4.706041532916212,0.3370098039215686,0.174938725490196,0.2503063725490196,0.2377450980392156,11.06323338062935,5.482630859945627,28.664149673153005,13845.97206861003,73.13747415620816,12.849394996142443,24.883379647440027,17.380047623164543,18.02465188946114,0.5344669117647058,0.7346760070052539,0.7022727272727273,0.5902061855670103,0.1156670746634026,0.6802403204272364,0.920863309352518,0.8684684684684685,0.7222222222222222,0.1378299120234604,0.4910536779324055,0.6747685185185185,0.6462006079027356,0.5553745928338762,0.1098221191028615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023913506064505,0.0048177862525737,0.0068128744034927,0.0093717282808672,0.0112318398241972,0.0133841264667535,0.0154396842717139,0.0177233282286881,0.0197848714750209,0.0221378032172515,0.0242777174024482,0.0264608939407941,0.0286046248599072,0.0305352159092079,0.0325925467376501,0.0347910572719097,0.0368686502552843,0.0389265366693994,0.0409578671546811,0.0430982393999374,0.0574509844862506,0.0721295695662181,0.0849754082028587,0.0975071232559851,0.1091773486254005,0.1247700019034325,0.1391996945560988,0.1526875997871208,0.1659314484688591,0.1783864360247514,0.1936348661190125,0.2073505864023888,0.2208665013702205,0.2332881415232555,0.2456688409543399,0.2581838316722037,0.2699906241628717,0.2814378672911085,0.2924505807682263,0.3030028757031724,0.312597722982129,0.3212135410565772,0.3292636669669527,0.3374451030742278,0.3454861744705181,0.3529092166353847,0.3603446545928861,0.3673073981542854,0.3739954560207725,0.3802962315847992,0.3830100497082342,0.3860448420587585,0.3890609312914492,0.3907819121147036,0.3932231750679774,0.3946935069332225,0.3967950860107255,0.3984024293636123,0.3997457787244275,0.4014720402118302,0.4024555844743691,0.4029928069021858,0.4048850514049272,0.4060008109203946,0.406055900621118,0.4064616438717158,0.4067078094359211,0.4069070982541098,0.4080717488789238,0.4066879366746093,0.4079362136102354,0.4082206598161168,0.4093353822512485,0.4109642001082502,0.4123141441097979,0.4156829679595278,0.4221152352849821,0.4215504832407978,0.4287701725097385,0.4347319347319347,0.0,2.342262354204025,66.45953022322118,242.05582880705416,396.79883899356616,no_screening,7 +100000,95777,38187,355.3984777138561,8426,86.69095920732535,6525,67.52142998841057,2712,27.814611023523398,77.34910350822409,79.67827512271334,63.34642956891118,65.06679786958954,77.01847559366796,79.3478696068238,63.22488752124031,64.9487414803983,0.3306279145561319,330.40551588953804,0.1215420476708715,118.05638919123852,0.0,0.0,0.0,0.0,88.11828,38.66610955732701,91380.04948996103,39760.26779065776,156.41985,71.88707144215539,160086.98330496883,72497.01371443312,4766.42191,2111.747774946253,4930113.670296627,2159750.943066689,1626.34421,699.6290036503827,1682438.5290831828,715508.6151942128,2686.18366,1113.314500591369,2757140.4199338043,1123937.6723944298,0.38187,100000,0,0,0.0,0,0.0,0,0.0,6655,68.83698591519885,0,0.0,15243,155.99778652494857,0,0,0,0,0,0,0,0,27,0.2714639214007538,0,0.0,0,0.0,0,0.0,0.08426,0.2206510068871605,0.3218609067173036,0.02712,0.3006059245960503,0.6993940754039497,26.2367401464412,4.71339651082068,0.3324137931034482,0.1826819923371647,0.2484291187739463,0.2364750957854406,11.012884858049082,5.412550236497734,29.134390641371564,13909.276804802968,73.20068325532871,13.5092961813928,24.35722094181008,17.419961370349082,17.914204761776762,0.5313409961685823,0.7348993288590604,0.6911018902720147,0.5806869734283863,0.1209130166563849,0.6691324815063887,0.8825503355704698,0.838,0.7204610951008645,0.1842105263157894,0.4906709011512505,0.685682326621924,0.6470940683043739,0.540133779264214,0.1039874902267396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023189403758911,0.0048246992164931,0.0072942346126142,0.0095275822490375,0.0114593077642656,0.0134064904922838,0.015736154426303,0.0178496708679899,0.0201085123992275,0.0220887642978453,0.0240749088226857,0.0261364802462801,0.028282205436514,0.0301062209230515,0.032209506134653,0.03413656692523,0.0361655232359606,0.038221051649229,0.0402971891723385,0.0423734991200391,0.056868822860244,0.0714494906177436,0.0846693439305449,0.0977424643712952,0.1100736634665036,0.1253421255640448,0.1402982543535172,0.1540023818638084,0.1666933444312834,0.1794399331519293,0.194304533126695,0.2079395289486774,0.2212255637462761,0.2340416224669459,0.2462230829326261,0.2596563908858291,0.271131005536703,0.2821602897181546,0.2925949043863133,0.3021426199283121,0.3116740342999977,0.3211626709121558,0.3293852895890086,0.3386148826944298,0.3465784738096396,0.354265183410912,0.3615652740859622,0.3685613354928392,0.3752695435296563,0.381697788372401,0.3851393356218072,0.388253336649258,0.3911586745080299,0.3945220177766178,0.3970145247397775,0.3993511984379564,0.4006995786628508,0.4025468461335444,0.4041212329355199,0.4057634918922806,0.4070504357010826,0.4083052570722274,0.4094290182156291,0.4112343810018754,0.4128603428126217,0.4133985200845666,0.4138120428988524,0.4144213251510212,0.4143999428857,0.4146794923611672,0.4158558057640626,0.4164868364264135,0.4185342606903658,0.4177598385469223,0.4201882443334614,0.4162714337832908,0.4170340050377834,0.4114475321443384,0.412112676056338,0.414,0.0,2.182202150360039,65.98079416734487,248.91645392013655,390.93433345479673,no_screening,8 +100000,95674,38102,354.3805004494429,8461,87.28599201454941,6471,67.14467880510901,2693,27.79229466730773,77.31532774038504,79.70734543706516,63.31028192710126,65.07617032892621,76.9937522600178,79.38303013974972,63.19326416027284,64.96103697262527,0.3215754803672439,324.3152973154366,0.1170177668284182,115.13335630094446,0.0,0.0,0.0,0.0,87.77976,38.357014868761546,91196.80372933086,39539.3574730455,151.65567,69.13601969811566,155966.6262516462,70236.73363809005,4743.14234,2082.233652595404,4924635.815373038,2143411.3579398827,1589.67768,673.2607030551527,1647893.429771934,690039.7004987275,2673.76156,1101.6856433330793,2762284.925894182,1122909.7835040828,0.38102,100000,0,0,0.0,0,0.0,0,0.0,6628,68.77521583711352,0,0.0,14885,152.93601187365428,0,0,0,0,0,0,0,0,24,0.2403996906160503,0,0.0,0,0.0,0,0.0,0.08461,0.2220618340244606,0.3182838907930505,0.02693,0.3046927374301676,0.6953072625698324,26.0679873127752,4.772624028012577,0.3313243702673466,0.1817338896615669,0.2512749188687992,0.2356668212022871,10.967629361538329,5.183205893498966,28.620961120403877,13908.485733160913,72.27352464235705,13.368167184838882,24.118974930008957,16.85518982842754,17.931192699081674,0.5224849327770051,0.7346938775510204,0.691231343283582,0.5737704918032787,0.0984009840098401,0.6655172413793103,0.9347079037800688,0.8317757009345794,0.7098976109215017,0.120845921450151,0.4811790479984067,0.6689265536723163,0.6444996892479801,0.5413961038961039,0.0926640926640926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024717871831756,0.0048257263934791,0.0068501491810266,0.0092760043078048,0.0113627115885416,0.013720397249809,0.0157276324915344,0.0179868239620039,0.0200644270593649,0.0221598705634177,0.0244805447869874,0.0266047600949142,0.0286810620634316,0.0303967027305512,0.0325760469029015,0.0347092223520772,0.0367718672938641,0.0388379744470622,0.0409528267540437,0.0429308457970712,0.0580915464262206,0.0727396471388932,0.0860273742547653,0.0983951591686398,0.1105623100303951,0.1254948870493087,0.1405757244337789,0.1547990584024796,0.1685068995371805,0.1808960542698896,0.1958178388574508,0.2106442880346508,0.2233047756937111,0.2360595812675794,0.247893467270264,0.2596376787477396,0.2722469224066668,0.2832783711690621,0.2935418299094925,0.3035677435626992,0.312758488861085,0.3222734938630188,0.3307584768855294,0.338408520550906,0.3459775007601094,0.3535762316623277,0.3602591900936243,0.3671592356687898,0.3737765274770862,0.3800645297789061,0.3835078534031413,0.3859421569709681,0.3893672887433299,0.3917962404270132,0.3947721579386854,0.3961301427759079,0.3981918426362871,0.3996409867922664,0.4007550407550407,0.4016589166771396,0.4026211233923965,0.4042498211020116,0.4050007391295166,0.4074107464839524,0.4093588530674623,0.4099628957132707,0.4101616628175519,0.4094410176100227,0.4094513501928847,0.4117171390450006,0.412468134414832,0.4116438726417644,0.4120861459337833,0.4153666146645866,0.4176152807254485,0.4175051521396533,0.4144563362804405,0.4134282807731434,0.4174620999438517,0.4201550387596899,0.0,1.9570326229530015,64.77460378999696,244.60734188573812,390.2120367959552,no_screening,9 +100000,95620,38138,354.2564317088475,8514,87.79544028445932,6680,69.2219201003974,2708,27.83936414975946,77.3146043072854,79.73376333533045,63.296484254502126,65.08305705121177,76.98772511601118,79.4078336005267,63.177377911450975,64.96814533033306,0.3268791912742301,325.92973480375065,0.1191063430511505,114.91172087870892,0.0,0.0,0.0,0.0,90.49214,39.41792504467382,93989.09224011713,40575.383924938746,158.80563,72.18158254989274,162445.1370006275,72659.06117948906,4873.89885,2134.134627735062,5055583.957331102,2190322.864790732,1664.27702,703.5629384124068,1726756.9546120055,722050.1670256538,2676.01,1099.4804169959623,2755038.4856724534,1111841.2486550657,0.38138,100000,0,0,0.0,0,0.0,0,0.0,6813,70.58146831206861,0,0.0,15522,158.76385693369588,0,0,0,0,0,0,0,0,24,0.2405354528341351,0,0.0,0,0.0,0,0.0,0.08514,0.223241910954953,0.3180643645759924,0.02708,0.3083749306711037,0.6916250693288963,26.040022849863533,4.742763380052883,0.3480538922155688,0.1703592814371257,0.2405688622754491,0.2410179640718563,10.937011620664858,5.287565166151293,28.81882272459744,13923.144519288797,74.44526322231619,12.962163270610558,26.05086714639252,17.77021781331106,17.66201499200205,0.5276946107784432,0.7337434094903339,0.6731182795698925,0.5714285714285714,0.1275668948350964,0.6884798909338786,0.9028776978417268,0.8342644320297952,0.7323529411764705,0.1987179487179487,0.4824477268367542,0.6790697674418604,0.6247203579418344,0.5283464566929134,0.1104247104247104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021886050682419,0.0043200048676111,0.0063649652820075,0.0087893105725753,0.0110677083333333,0.0134548787940517,0.0155241174610622,0.0176320359587291,0.0198525125037076,0.0220890937019969,0.0241643504035938,0.0264409495731851,0.0287848236698078,0.0310139820510442,0.0331864116353726,0.035393014454991,0.0374883431768728,0.0396515563677139,0.0415803877090205,0.0434533184525361,0.0581305402241177,0.0715527898254656,0.0849917560202056,0.0972733971997052,0.1101246714311351,0.1257108364837818,0.1403683953345089,0.1540396235865846,0.1675296332748513,0.1802213149978513,0.1955914245330859,0.209805218032236,0.2233227637758382,0.2362453165056202,0.2482776865334376,0.260341172683988,0.272712031117271,0.2830533112470842,0.2936363636363636,0.3039557615529347,0.3134556574923547,0.3230897107200974,0.3315131773763695,0.3399844021836943,0.3474271408084393,0.3540983202190375,0.3609914332949251,0.3681529960019353,0.3745236799129015,0.3808208314057233,0.3839138763726628,0.3865350411559514,0.3897406910195718,0.3921016742593506,0.3947392005735795,0.3961834059790226,0.3974442727171332,0.3995897232286134,0.4013273573521806,0.4025371120107962,0.4042645450774857,0.4056377171215881,0.4073668931569094,0.4075906106664268,0.409270979274361,0.4109864825999424,0.4120712363282368,0.4134918632521761,0.4136933121581083,0.4140275111964171,0.4142372570590392,0.4169255490091055,0.4159189951294539,0.4138277327153341,0.4174710885979165,0.4190487775209828,0.4188440221694378,0.4208655655446373,0.4123624047417443,0.4175298804780876,0.0,2.497752830195922,65.05317463522104,253.38378528854915,405.0639223003163,no_screening,10 +100000,95661,38010,353.6969088761355,8480,87.49647191645498,6527,67.81237913047114,2706,28.00514316179007,77.29129418892526,79.69227773064651,63.29829466637945,65.07042358355166,76.96352117142538,79.35825799780024,63.18062483677319,64.95229992347893,0.3277730174998794,334.0197328462722,0.1176698296062568,118.123660072726,0.0,0.0,0.0,0.0,88.44719,38.45624391738208,92028.43373997764,39776.58925833149,152.68308,69.65782075076771,157043.81095744346,70834.96464181888,4768.03983,2091.830238261514,4957730.109448992,2160665.865274067,1624.01554,688.657239272729,1687046.5184348898,709584.6262977696,2684.8341,1099.144322745413,2780735.2003428773,1127214.7519472956,0.3801,100000,0,0,0.0,0,0.0,0,0.0,6690,69.47449848945756,0,0.0,14979,154.0544213420307,0,0,0,0,0,0,0,0,25,0.2613395218532108,0,0.0,0,0.0,0,0.0,0.0848,0.2230991844251512,0.3191037735849056,0.02706,0.306732055283103,0.693267944716897,26.00155174620328,4.779553033002286,0.3301669986211123,0.1861498391297686,0.2515703998774322,0.2321127623716868,10.967227109852956,5.234788670557108,28.89634805533349,13881.168709625488,72.9325257130626,13.83061866847554,24.08669472050797,16.881303832410634,18.13390849166847,0.5213727593074919,0.7440329218106996,0.6709976798143852,0.572937293729373,0.112667478684531,0.6806607019958706,0.9129032258064516,0.8520833333333333,0.72,0.1437699680511182,0.4757587702010248,0.6861878453038674,0.6191044776119403,0.5287553648068669,0.1053423626787058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022385867528336,0.0044509784041366,0.0068714919358931,0.0091352504826745,0.0112321826450569,0.0136884452818658,0.0157738034545343,0.0180019196601793,0.0198858989039751,0.0220649970306964,0.0244482730330625,0.0267341782552431,0.0285270456556179,0.0307582923737982,0.0327555771196151,0.0347823388873374,0.0368201790747803,0.0389351496148015,0.04075453637423,0.0426496804662169,0.0571921208004597,0.0710163295660462,0.0843220427962453,0.0966309164202039,0.1085219777320458,0.1241149388791871,0.1386671478918092,0.1527171250239652,0.1656528943289326,0.1783068896665736,0.1938415758320665,0.2080842862092862,0.2215703774652793,0.2349540711869231,0.2465780599087482,0.2588534099353393,0.2708126166188087,0.2820099981985228,0.2926602171049643,0.3025478802049307,0.3124609221221314,0.321177792341541,0.3299173044570291,0.3383409928124887,0.3465423654552978,0.3541205974279466,0.3614613522024414,0.3687736041645402,0.3759724657445288,0.3820689837591917,0.3849540194185246,0.3879327016051054,0.3904896688366827,0.393427625464684,0.395152131029948,0.3971871819387472,0.3988013644043482,0.4008706302966102,0.4025645002843699,0.4043120853764061,0.4053174377897625,0.4063737054660322,0.4065866485707015,0.4076696832579185,0.4082535361882078,0.4089242859780057,0.4084191155328081,0.4085263191333905,0.4099462843726655,0.409184372858122,0.4079330590356433,0.4102136361190335,0.4094639651192613,0.4118654624727499,0.4118214251277601,0.4135825088555026,0.4108809109599873,0.4167194426852438,0.4167378309137489,0.4150352388410336,0.0,1.5277192100043306,65.37733306016614,245.5133110609952,397.7236630058272,no_screening,11 +100000,95618,37907,352.53822502039367,8564,88.18423309418729,6625,68.55403794264679,2792,28.676609006672383,77.27514686010801,79.686819383377,63.27600815666828,65.05642954399094,76.94365591818281,79.3575497910215,63.15510744390071,64.94033668500605,0.3314909419251961,329.2695923555016,0.1209007127675718,116.0928589848993,0.0,0.0,0.0,0.0,90.41179,39.68562619898034,93817.34610638164,40766.49396450495,162.312,74.62802197361435,165788.2197912527,74835.61101841662,4849.65189,2139.603191604205,5024605.10573323,2190359.777033829,1676.41385,715.4461527948998,1736525.2985839483,731518.1898752312,2766.59722,1133.87713221453,2845928.486268276,1144040.9416386604,0.37907,100000,0,0,0.0,0,0.0,0,0.0,6789,70.2378213307118,0,0.0,15890,162.1661193499132,0,0,0,0,0,0,0,0,23,0.2405404840092869,0,0.0,1,0.0104582819134472,0,0.0,0.08564,0.2259213337905927,0.3260158804297057,0.02792,0.295984957416215,0.704015042583785,25.973510649984703,4.731465638080104,0.3313207547169811,0.1787169811320754,0.2489056603773584,0.2410566037735849,10.95247214842936,5.277431410859455,29.696767296575636,13922.842104461864,74.55673676415235,13.573867553895177,25.01153962994445,17.823009989231007,18.148319591081705,0.5307169811320754,0.7592905405405406,0.6988610478359909,0.5654351909830932,0.1091570648878108,0.6886422976501305,0.9166666666666666,0.8715596330275229,0.6883852691218131,0.1290322580645161,0.4832122521107402,0.7,0.6418181818181818,0.5305466237942122,0.104555638536221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025315942968243,0.0048650456604806,0.0071330729034549,0.0092331132554596,0.0115237136260539,0.0135041551246537,0.0157441775094832,0.0180090045022511,0.0203142731538752,0.0224135812581913,0.0243302014524268,0.0266794053893015,0.0287569191513879,0.0306035149203731,0.0327344072697232,0.0345526773152362,0.0365901693720587,0.0388446318588298,0.0407746984566391,0.0428851528930791,0.0581367394508262,0.0721695938299031,0.0856830692944488,0.0984860457030879,0.1105183651479458,0.1261253627639968,0.1403628093816087,0.1544234438794546,0.1677136955660912,0.179812352896923,0.1946840554050115,0.2091580534255935,0.2228472381201556,0.2360856738646458,0.2482700012140342,0.2610313722004977,0.2724596476303477,0.2831749542920344,0.2935872770118737,0.3032719084600891,0.3131934450582609,0.3225496063176916,0.3313110686343183,0.3391399478246234,0.346901490792166,0.3543814114448152,0.3617777442891409,0.3677889524198489,0.3745414813080465,0.3813267226979876,0.3848932543225911,0.3875632482649929,0.3904747086115197,0.3933883817788677,0.3953158586099833,0.3968938076254098,0.3987051824515636,0.4002806438299628,0.4022263005334202,0.4038382207873733,0.4046590587569555,0.4045822799928339,0.4047880657566665,0.4063789953307919,0.4076672817325434,0.4094235325085549,0.4108504820837531,0.4104800713103272,0.4116181391044351,0.4111656738045403,0.412570321866642,0.4130176876617774,0.4125749266675169,0.4133979387786494,0.4156810377718428,0.4156772473952023,0.4182045667813575,0.4125569830087028,0.4158415841584158,0.4187966968147857,0.0,2.9237013361283557,67.73773402083327,250.5247670856562,396.6671841265578,no_screening,12 +100000,95703,38076,353.38495135993645,8420,86.91472576617242,6499,67.52139431365788,2708,28.055546848061187,77.28391542799022,79.68207988683962,63.28504443165552,65.05989047382006,76.96118218138596,79.35147294074372,63.1705624950278,64.94408868900496,0.3227332466042583,330.606946095898,0.114481936627719,115.80178481510472,0.0,0.0,0.0,0.0,88.47783,38.58221264001475,92082.25447478137,39946.35762725803,157.40194,71.91591368798345,161864.70643553493,73160.78215765445,4757.60134,2084.144129404603,4943798.5643083295,2150304.93234758,1609.21098,684.8623977428077,1668544.0268330146,702692.8181382056,2680.75794,1083.88872773539,2778074.835689581,1113010.8765191631,0.38076,100000,0,0,0.0,0,0.0,0,0.0,6685,69.46490705620513,0,0.0,15441,158.75155428774437,0,0,0,0,0,0,0,0,21,0.2194288580295288,0,0.0,0,0.0,0,0.0,0.0842,0.2211366740203802,0.3216152019002375,0.02708,0.3014466748906583,0.6985533251093418,26.067003390429274,4.743071512734997,0.3282043391290968,0.1732574242191106,0.2434220649330666,0.2551161717187259,11.280334735434607,5.520789428579785,28.57075222757687,13982.32342048644,72.74388944110109,12.973612335435009,24.18534666927262,18.275106095960027,17.30982434043345,0.5248499769195261,0.7362344582593251,0.6947960618846695,0.5591073582629674,0.1093552465233881,0.6907574704656011,0.916955017301038,0.8609022556390977,0.7142857142857143,0.1245674740484429,0.4776679841897233,0.6738351254480287,0.6396002498438476,0.5206922498118887,0.1059551430781129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023509859954196,0.0045439792275235,0.0066804065098429,0.009085273523643,0.0113854888434418,0.0136093227935783,0.0159008618491509,0.0180679821873595,0.0206903605216057,0.0227007314224835,0.02487842911956,0.0267970901319304,0.0288845441448857,0.0309794706900816,0.0333209463644246,0.0351299923473081,0.0371567713190343,0.0394124974050238,0.0414595078113623,0.0437392527747381,0.058254556849637,0.0725913673433067,0.0859778365445158,0.0987720571987752,0.1110360621827277,0.1267742789097644,0.1408458181586519,0.1552968989606406,0.1679777682770414,0.1810220858105642,0.196551166675648,0.2102099174627932,0.2236579975832525,0.2363059068265177,0.2482341403211054,0.2605689297328494,0.2724681103198471,0.2835455877380818,0.2947795546765779,0.3043617924420072,0.313945128597602,0.3232369427050353,0.3320953522313324,0.3401595041917893,0.3484139745651221,0.3559966894370808,0.3635143441337699,0.3704487506374299,0.3768898347976173,0.3833809221658206,0.3861583941901432,0.3888306529475049,0.3912251725744293,0.3944879723095193,0.3973050407377563,0.3990121253154428,0.4009515020366598,0.4027764038645431,0.4047132028121079,0.4048668189421053,0.4061749636043939,0.407559835377792,0.4088621839104864,0.4101947801637151,0.4107562120915672,0.4102591249569889,0.4106369463532944,0.4120952806692637,0.4130751984056372,0.4128215434083601,0.4146566860733758,0.415252867991598,0.4153572110185126,0.4146995708154506,0.4186972598843273,0.4208248166406156,0.4194803174109227,0.4255890863993385,0.4298771779491573,0.4285714285714285,0.0,1.5287988428922872,64.60251252195872,251.4598409975971,390.0964695920086,no_screening,13 +100000,95659,38063,353.52658923885883,8574,88.3450590116978,6575,68.17967990466134,2719,28.03709008038972,77.35161970545354,79.75675070152637,63.31721993396855,65.094013429447,77.02407513827936,79.42600060297416,63.19936868280042,64.9773032523612,0.3275445671741863,330.7500985522154,0.1178512511681333,116.71017708580678,0.0,0.0,0.0,0.0,88.84519,38.58016239442397,92345.0276502995,39798.97593997844,155.82751,70.9698969712678,159164.18737390105,71323.98945832148,4801.86063,2102.374096274296,4982680.26009053,2160691.180416161,1590.45333,675.9231616779883,1649263.0489551427,693231.5534115838,2695.3705,1101.1198844839982,2782318.213654753,1122645.617156255,0.38063,100000,0,0,0.0,0,0.0,0,0.0,6730,69.80001881683897,0,0.0,15272,155.98114134582212,0,0,0,0,0,0,0,0,20,0.1986221892346773,0,0.0,0,0.0,0,0.0,0.08574,0.2252581246880172,0.3171215302076043,0.02719,0.3055586252624599,0.6944413747375401,26.161400330493628,4.672086039848377,0.336425855513308,0.1817490494296578,0.2462357414448669,0.2355893536121673,10.822715527638362,5.237830758432245,28.70304702477173,13889.070133460957,73.17431594730581,13.440604215301953,24.830013782618263,17.169645485600682,17.734052463784902,0.5269961977186312,0.7489539748953975,0.6903254972875226,0.5571336346029696,0.1111797405806053,0.6836948915325403,0.9338235294117648,0.8448275862068966,0.7195121951219512,0.1498371335504886,0.4834823163622231,0.6944745395449621,0.642603550295858,0.5135135135135135,0.1021341463414634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023606650388547,0.0045834812148253,0.0069823614183936,0.0091847516865805,0.0114740257758699,0.0135669179058871,0.0158670269719063,0.0184619783316825,0.0203578732106339,0.022656970193588,0.0246219504688429,0.0266662556261175,0.0285673122440158,0.0308253778428421,0.0330740706310103,0.0351142195000827,0.0372807926702873,0.0392924249187679,0.041364960466084,0.043458314217792,0.0582095166447244,0.0722774246913838,0.0858663252025693,0.0987184073738925,0.1104310017307611,0.1254749632201183,0.1396506874767744,0.1533222485131419,0.1664027730229373,0.1784149484536082,0.1934412440284263,0.2075731310942578,0.2209617541071059,0.2334639721498478,0.2456745118338307,0.258146419345182,0.2697130213222475,0.2808157473930767,0.2909999432173074,0.3013163472223813,0.3108804092450493,0.3198839847496082,0.3289113995952806,0.3368206603151776,0.3448158585171509,0.3523932729624838,0.3597974240340127,0.3671409136565333,0.3742611394942766,0.3810911296276764,0.3839460107493568,0.3870550340004955,0.3906232374506486,0.393254037159229,0.3965034548487015,0.3985664072692668,0.4002761510260439,0.4016636468456597,0.4036860981929882,0.4050387596899225,0.4062676773390655,0.4064103073925319,0.408451893443661,0.4089906356924185,0.4103401558039386,0.411510225485055,0.4127244004021255,0.4139583597816427,0.4154031458126683,0.4161321359846055,0.4149606661452822,0.4181847320903894,0.4187480139815697,0.4185273893224137,0.4165792235047219,0.4162609542356378,0.4233128834355828,0.4245925314627605,0.4305094130675526,0.433231005372218,0.0,2.1824853202037056,63.55945126576261,252.4402316711949,396.39570097876407,no_screening,14 +100000,95784,38065,352.7311450764219,8545,87.89568195105655,6643,68.71711350538712,2744,28.188423953896265,77.3507064425629,79.68066691942805,63.34838135415546,65.07087464789655,77.0212161104892,79.35121814183866,63.22839129629467,64.95424675282595,0.3294903320736893,329.4487775893913,0.1199900578607895,116.627895070593,0.0,0.0,0.0,0.0,90.14687,39.29103361315147,93494.32055458114,40400.02882856372,158.15972,72.06375838643483,161966.6332581642,72744.43101784235,4848.18291,2133.522524335723,5016013.676605696,2182307.8561645662,1625.24608,698.3019075422467,1675109.224922743,707491.8020648767,2715.89842,1124.995797560561,2792292.9716862943,1135530.1048555167,0.38065,100000,0,0,0.0,0,0.0,0,0.0,6799,70.31445752944124,0,0.0,15435,157.9282552409588,0,0,0,0,0,0,0,0,29,0.3027645535788858,0,0.0,0,0.0,0,0.0,0.08545,0.2244844345199001,0.3211234640140433,0.02744,0.3056169836355595,0.6943830163644406,25.97991986866756,4.728318390751752,0.3239500225801596,0.1875658587987355,0.2446183953033268,0.2438657233177781,11.013946532642038,5.32063590808571,29.51748479884575,13929.398731484633,74.38709412710666,14.13406336718334,24.17793473128896,18.224918513860235,17.85017751477414,0.5316874905916001,0.7463884430176565,0.6965613382899628,0.575925925925926,0.1046153846153846,0.6836313617606602,0.924092409240924,0.8708333333333333,0.7254335260115607,0.1384615384615384,0.4891115821931008,0.689289501590668,0.6465311004784688,0.5353218210361067,0.0961538461538461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022993395729508,0.0045620437956204,0.0066567221731762,0.0089488867219242,0.0112046526761021,0.0137640363647469,0.0159492071256777,0.0177771427988284,0.0199372553828545,0.0220630372492836,0.0245814291862204,0.0266678979663034,0.0285902205413849,0.0306349337066622,0.0332133760917312,0.035443848720571,0.0377253067897274,0.0398590162235007,0.0418817176385066,0.0439426590461913,0.0585700273389402,0.0729223305031578,0.0867062930465138,0.0996836607077172,0.1120596977170682,0.1283495946131647,0.1425374875395024,0.1561997807647691,0.1697432338653712,0.1823872406105299,0.1971280638112358,0.2103823955383584,0.2232858850374877,0.2361411559051677,0.2478670067728032,0.260238964487222,0.2716745611590972,0.2823739592579692,0.2926760148270741,0.3020876253261914,0.3116557469869773,0.321062964521105,0.3297077864438474,0.3369325535688605,0.3446106002259502,0.3522333592237797,0.3602418385740036,0.367516686197585,0.373900863746012,0.3804731148710227,0.3830352208548437,0.3857142857142857,0.3884383917723844,0.3915825208913649,0.3936324167872648,0.3955034393610636,0.3976883766099374,0.3996790789234256,0.4018107647554951,0.4042671847734182,0.405823148813803,0.406716715917259,0.409318297439376,0.4107924271624532,0.4124574209245742,0.413244543100259,0.4141203703703703,0.4141523906929174,0.414099589505622,0.4151307847082495,0.4164928382700598,0.4161048281861679,0.4180095397705298,0.4163603659967154,0.4153934851542231,0.4145747014379722,0.4131812420785805,0.4114903540385838,0.4086176980913823,0.4002413515687852,0.0,2.46743063799786,64.25887756655368,262.4203086948438,395.18371907927474,no_screening,15 +100000,95747,38057,354.70563046361764,8373,86.26902148370183,6451,66.90549051145206,2749,28.42908916206252,77.31652017658898,79.6782285568584,63.31665033110207,65.06288598696992,76.99003250861203,79.34710285128861,63.1983542378114,64.94515602450439,0.3264876679769486,331.1257055697894,0.1182960932906667,117.72996246553193,0.0,0.0,0.0,0.0,87.60982,38.46756039817604,91051.98074091096,39726.86392072445,156.31812,71.61194129663998,160419.30295466175,72550.8123344083,4775.07922,2110.6894660585926,4958448.55713495,2175708.8849348715,1615.86116,688.8418098241526,1675941.063427575,707744.3051209453,2725.39146,1121.6947047381025,2820837.5406017946,1148309.7061389566,0.38057,100000,0,0,0.0,0,0.0,0,0.0,6619,68.66011467722227,0,0.0,15291,156.95530930473018,0,0,0,0,0,0,0,0,19,0.1879954463325221,0,0.0,0,0.0,0,0.0,0.08373,0.2200120871324592,0.3283172100800191,0.02749,0.3105786618444846,0.6894213381555153,25.800109198377715,4.760971976051152,0.334831809021857,0.1702061695861106,0.2568594016431561,0.2381026197488761,11.01255795947907,5.383716856868175,29.223735256202417,13817.772486156244,72.39583408842135,12.46071829844075,24.269290128138422,17.271459324872026,18.39436633697017,0.52813517284142,0.7404371584699454,0.6939814814814815,0.591796875,0.112251056125528,0.675289312457454,0.9372693726937268,0.8648648648648649,0.7267267267267268,0.138328530259366,0.4847450822962665,0.6759371221281741,0.6400730816077954,0.5544472152950956,0.1053435114503816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021677252053767,0.0041767621982745,0.0066176097437198,0.0088196144974953,0.0108439127604166,0.0129855580225286,0.0152060620276789,0.0174422760740581,0.0195703520413901,0.0216329664704376,0.0236444918382413,0.0254032796311698,0.0273633119787756,0.0293881417715262,0.0316767751784461,0.0337652139772281,0.0357641943998757,0.0379440900368238,0.0400507260688336,0.0418702532634627,0.0566709472651152,0.0711751964590287,0.0846895973154362,0.0984175385100678,0.1100391189278672,0.1256293099801159,0.139660952219299,0.153346674614664,0.1669800435878808,0.1793273614761572,0.1945752049378992,0.2087833596675396,0.2223986427701409,0.2345988147046602,0.2465679528815985,0.2587152912486837,0.2699717441561777,0.2807621748770413,0.2909272568320901,0.3008869840251197,0.3101232852925855,0.319433553748025,0.3285995167479983,0.3371583584400619,0.3451627816438756,0.3529825861430159,0.3599292781100703,0.3664813303407468,0.3729776716789704,0.3792373442006933,0.3823998055525548,0.3850756581220203,0.3881799770567491,0.3906022905645021,0.3930230820945694,0.3949877543475917,0.3964367029152801,0.397492308201277,0.3985912824840271,0.3994050838290968,0.4013471581018694,0.4018357777112641,0.4028260316922294,0.4051560379918589,0.4056913535206129,0.4061339024583036,0.4062608193883439,0.4073544368166794,0.4068657034328517,0.4073865917302288,0.4083909635776855,0.4101235767092979,0.4128863011069166,0.4191238740472707,0.4168177913524864,0.4178995876788746,0.4180994060643951,0.421681780708986,0.4226223972988182,0.4250980392156863,0.0,1.847773057878677,65.6171611480271,247.55721199839303,384.5650908839055,no_screening,16 +100000,95684,38218,355.37811964382763,8625,88.99084486434514,6676,69.2487772250324,2834,29.294343881944737,77.40264542862671,79.78354113646657,63.35728834693722,65.11214794606309,77.06551398838194,79.44131805124049,63.235034842923085,64.99048447032415,0.3371314402447751,342.223085226081,0.1222535040141323,121.66347573894144,0.0,0.0,0.0,0.0,90.13523,39.56070082017805,93596.8186948706,40741.033840744574,160.57606,73.05957864647351,164535.38731658374,73846.53993235917,4878.89692,2156.6445168152864,5061835.761464822,2216814.496430185,1684.77521,720.3000419761466,1746699.719911375,738740.979748742,2800.1184,1151.3588852962237,2895334.057940721,1177160.5891006023,0.38218,100000,0,0,0.0,0,0.0,0,0.0,6806,70.57606287362569,0,0.0,15695,160.64336775218428,0,0,0,0,0,0,0,0,29,0.2926299067764725,0,0.0,0,0.0,0,0.0,0.08625,0.225678999424355,0.3285797101449275,0.02834,0.3127883981542518,0.6872116018457481,25.760839349669688,4.762342761597397,0.3421210305572199,0.1683642899940083,0.2425104853205512,0.2470041941282205,11.163703884403304,5.459538892633951,30.1206147075906,13938.379145466277,74.69033216077902,12.900156153790856,25.63440283180104,18.24971263571227,17.906060539474865,0.5387956860395446,0.7580071174377224,0.6970227670753065,0.5700424499696786,0.1315626930203829,0.6752021563342318,0.9140893470790378,0.8548707753479126,0.7363896848137536,0.1436950146627566,0.4998073959938366,0.7034813925570228,0.652442448062886,0.5253846153846153,0.1283255086071987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023493432977893,0.0047837676224066,0.0070501115844998,0.0093232991072788,0.0114296173518674,0.0138178930004276,0.0160673687644642,0.0181974056194568,0.020275103725959,0.0223097784372921,0.0247037598917544,0.0269695911956142,0.0290667187612457,0.0310411238246289,0.0331304168386298,0.0351203580250741,0.0370397216584517,0.0391125224411859,0.0414460888828797,0.043316483401949,0.0567464794617859,0.0712221477634444,0.0847044996642041,0.0973564899066934,0.1092805687103817,0.124783105505946,0.1398024046777668,0.1538052098747032,0.1672543865273236,0.1794833299374805,0.1952640420399724,0.2099493550341961,0.2231828265692287,0.2365045868550247,0.2485478547854785,0.2609754747273431,0.2727526116865307,0.2839133023966561,0.2940769867080647,0.3043851221520725,0.3134616273159913,0.3229802785983676,0.3315803779293066,0.339682957783578,0.3478208100202687,0.3551029962546816,0.3620473781739871,0.3694053586422737,0.3763190263481582,0.3827561184774721,0.3860802111670752,0.3890027651291081,0.391668075038026,0.3934326718792906,0.3966481277696814,0.3980423142423173,0.3998697440948008,0.4019166378016395,0.4029525736428792,0.40395307959967,0.4052261723091995,0.4061478090255068,0.4068135009037031,0.4076530497538164,0.4087163079309676,0.4079608534371629,0.4071864914707238,0.408955318608784,0.4101069689754433,0.4095494554077408,0.4090825094705719,0.4111159169550173,0.4119301834921041,0.412635963897246,0.4096004599022708,0.4089330619087534,0.4098283931357254,0.4082803853248616,0.4060421286031042,0.4102072141212586,0.0,2.0415231179934983,66.14717632203406,258.49093821326,398.6700715554398,no_screening,17 +100000,95720,38003,354.4504805683243,8497,87.43209360635186,6649,68.81529460927706,2808,28.90722941913916,77.33907921770925,79.70589061072056,63.32552877917672,65.07553054253552,77.00759034381012,79.3732592890474,63.20446462307699,64.95679399253646,0.3314888738991328,332.631321673162,0.1210641560997274,118.73654999905624,0.0,0.0,0.0,0.0,90.00647,39.442819353025264,93383.51441704972,40558.97341519564,158.86406,72.52375903108111,161742.64521521103,72473.60433015073,4883.51679,2164.477604635488,5059300.146259925,2218682.5267817457,1654.65724,709.9313764965334,1713259.559130798,726293.699348922,2773.53222,1144.051391905866,2857981.195152528,1161947.3372076326,0.38003,100000,0,0,0.0,0,0.0,0,0.0,6790,70.26744671959884,0,0.0,15531,158.0547430004179,0,0,0,0,0,0,0,0,31,0.3238612620142081,0,0.0,0,0.0,0,0.0,0.08497,0.2235876115043549,0.3304695774979404,0.02808,0.3093701313153795,0.6906298686846205,25.76045876555864,4.772188378981068,0.3395999398405775,0.1728079410437659,0.2501127989171304,0.2374793201985261,11.136643593426475,5.560536297524506,29.89685203882488,13826.390532277474,74.60224498006373,13.036456818142591,25.43551022003568,17.73285200571535,18.39742593617012,0.5358700556474658,0.7484769364664926,0.6997342781222321,0.5813806206459785,0.1232711966325917,0.6856010568031704,0.9065743944636678,0.8546511627906976,0.7589041095890411,0.1686046511627907,0.4917234664070107,0.6953488372093023,0.6538461538461539,0.5280065897858319,0.11144806671721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021167557932263,0.0043800949020562,0.0068105924504937,0.0090534059502519,0.0112611008819669,0.0133518011182515,0.0155407127925355,0.0174580649113314,0.0196323033190862,0.0217640672688912,0.0238854646333083,0.0259749596869447,0.0278711959931299,0.0297956954904647,0.031751274799232,0.0336401240951396,0.0356894962031348,0.0378599968865134,0.0398602343985607,0.041851161143119,0.0565503847639731,0.0702686866995898,0.0835736078928882,0.0968054007444951,0.1089012854717438,0.1240625760252165,0.1387150162320439,0.1529133707374719,0.1660005556861655,0.178477155181664,0.193598793038418,0.2074544115736128,0.2201790940842373,0.2329539236073109,0.2456470743714276,0.2584383039120021,0.2699683901305722,0.2808520699399903,0.2915639939588703,0.3010560352241065,0.3103675908553957,0.3195678383724877,0.328547927047211,0.33702842624994,0.3449892509686274,0.3526520657288561,0.3591539606499143,0.3659569597069597,0.3729013216657389,0.3795417024367695,0.3820818284728586,0.3856475033440434,0.3876555429864253,0.3904425858163443,0.3934132541092516,0.395300526267196,0.3973590008750298,0.3991772946540672,0.4009541195921741,0.4023456500981858,0.4037556911567453,0.4058415683774307,0.407273725092874,0.4087953765577027,0.4087989334626106,0.4105913272010512,0.4121069001267135,0.4143211131583963,0.4142350017749379,0.4168643692951063,0.4176606564956079,0.4192937868382631,0.4207113507960965,0.4226523631840796,0.423906816879893,0.426686039472091,0.425841099352393,0.4302131216046803,0.4264495858326192,0.4285714285714285,0.0,2.5273444113238144,67.08938055881428,251.91140887343929,400.1544651040198,no_screening,18 +100000,95688,37887,353.07457570437253,8509,87.72259844494607,6554,67.92910291781624,2697,27.809129671432157,77.30793472821749,79.68430500789253,63.31631099018998,65.0705394338186,76.99084623120324,79.36478398805988,63.20292008260119,64.95858242937263,0.3170884970142538,319.52101983264924,0.1133909075887942,111.95700444596925,0.0,0.0,0.0,0.0,88.76318,38.45569991004656,92207.75854861634,39633.26635528651,157.1531,71.22376753212819,160488.71331828443,71498.23241595703,4795.19009,2096.2333438892765,4975145.180168882,2154565.017441348,1641.96862,695.6975998105312,1700237.2084273892,711324.2619874276,2679.16718,1088.812758034529,2765428.78939888,1108977.14444789,0.37887,100000,0,0,0.0,0,0.0,0,0.0,6707,69.51759886297133,0,0.0,15391,157.13569099573613,0,0,0,0,0,0,0,0,22,0.2299138867987626,0,0.0,1,0.0104506312181255,0,0.0,0.08509,0.2245889091245018,0.3169585145140439,0.02697,0.3085854638829965,0.6914145361170034,26.03148209218397,4.759431172619473,0.3402502288678669,0.1765334147085749,0.2496185535550808,0.2335978028684772,11.032970501992656,5.219970953982256,28.53858339908983,13872.630487781244,73.40987050216042,13.102601593447616,25.166405588322156,17.06523464428836,18.075628676102287,0.5254806225205981,0.7147796024200519,0.6905829596412556,0.5826257348138472,0.113080684596577,0.6927494615936827,0.9042145593869731,0.861271676300578,0.7169811320754716,0.1830508474576271,0.480333268746367,0.6595982142857143,0.6388077147866744,0.5474031327287716,0.0976882923191648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002095862948788,0.0044890762433626,0.0066038405745645,0.0088364345494434,0.0109633064844194,0.0131155553745264,0.0154887785379979,0.0177233282286881,0.0197407430125334,0.0218341505358733,0.0241112067905031,0.0259034907597535,0.0280040314286889,0.0300504790357474,0.0322573987699673,0.0340838605632055,0.0360573187031798,0.0379767861962999,0.0400386967919111,0.0419694142420799,0.0568984247691472,0.0713665148898309,0.0854648844870638,0.098514966029322,0.1105488434857781,0.1257005689148319,0.1401398215630735,0.1546141564662054,0.1675105755672349,0.1806568560151021,0.1957444059182047,0.2101870179879071,0.2237068122023874,0.2359487913938055,0.247984336673523,0.2600666866061835,0.2719197419959603,0.283428417108328,0.2932370932779499,0.303227506559274,0.3125,0.3219706278158095,0.3307240472750527,0.3387621367962458,0.3461884826948352,0.3532004741443176,0.3600948212068381,0.3662183887513716,0.3727311705016435,0.3790907646685024,0.382381151804169,0.3855731361846196,0.3880594902854232,0.390185795842473,0.3930332645924863,0.394839345372808,0.3966643303173187,0.3975409157854672,0.3991864593746768,0.4005654702948009,0.4014568158168574,0.402971364671113,0.405001692620176,0.4060630685537572,0.4078361748182017,0.4083445704767193,0.4103683571387266,0.4121518016866854,0.4120194716873076,0.4115060313874208,0.413078816590033,0.4107596647742633,0.4120367396749951,0.4128191200434546,0.4163394310889761,0.4151877339128335,0.4185974667902378,0.4117527035298918,0.4136413641364136,0.4111111111111111,0.0,2.245891483576308,61.93384804541652,256.1190186577318,401.5302144857565,no_screening,19 +100000,95701,37992,353.9670431865916,8413,86.59261658707851,6496,67.25112590255065,2709,27.89939499064796,77.38171245272493,79.75468254889167,63.34258245905804,65.09470139272283,77.06218086554922,79.43557479416059,63.22698949241919,64.98250656865564,0.3195315871757032,319.1077547310784,0.1155929666388573,112.1948240671884,0.0,0.0,0.0,0.0,88.36031,38.46340253173909,91708.41475010711,39570.08028310999,156.56934,71.55043799967274,159625.62564654497,71759.46468974212,4758.77786,2093.8203524942905,4928074.617820085,2143404.1258652373,1642.2952,702.5582699830028,1696961.8603776346,715010.8567130966,2683.55902,1096.9633207140705,2765521.029038359,1111558.3190887172,0.37992,100000,0,0,0.0,0,0.0,0,0.0,6658,68.91255054806115,0,0.0,15318,156.19481510120062,0,0,0,0,0,0,0,0,28,0.2821287133885748,0,0.0,0,0.0,0,0.0,0.08413,0.2214413560749631,0.3220016640912873,0.02709,0.3089558955895589,0.6910441044104411,26.07720618419007,4.736255315314013,0.3395935960591133,0.1697967980295566,0.2447660098522167,0.2458435960591133,10.970187119938911,5.339419150042728,28.622832655539337,13888.377467764274,72.32481025146558,12.324092205256347,24.689264421082164,17.839241951875795,17.472211673251255,0.5343288177339901,0.757026291931097,0.6976427923844062,0.5723231058234189,0.1150943396226415,0.6889367816091954,0.943089430894309,0.8623481781376519,0.72,0.162251655629139,0.4921630094043887,0.7036172695449242,0.6501168224299065,0.5308740978348035,0.1040372670807453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020357316480311,0.0042473821326115,0.0064029711409668,0.0085935436686102,0.0107716093333604,0.0131670061099796,0.0154269691562579,0.0176814079790926,0.0198930721813888,0.0219674480499539,0.0242767218223944,0.0262936344969199,0.028352529823118,0.0304291394548713,0.0323213143175579,0.0343672456575682,0.0364152330844199,0.0385916486800597,0.0406028018429345,0.0423210396323353,0.0573675470752263,0.070980642594667,0.08417098608692,0.096946934309641,0.1090657833663867,0.1243204941091862,0.1392086750771907,0.1536422289887784,0.166611471364321,0.1791510678695171,0.1945970992004482,0.2093166760490191,0.2233679218603841,0.2354182382717264,0.2474260823653643,0.259109177267745,0.2709660149235419,0.2822355693525892,0.2925775090469762,0.302486172027988,0.3125057865012499,0.3217413674154281,0.3298056206643464,0.3379808902689029,0.3459004837259049,0.3538319255194525,0.3612400966244039,0.3687146568852208,0.3749254582695947,0.3816863459862112,0.384762572090767,0.38757469776664,0.3905844522170822,0.3931612809947227,0.3954286733344231,0.3972147321975732,0.3992104887676966,0.4009301408358121,0.402793687701961,0.4040767386091127,0.4055060363308135,0.4070734952439581,0.4081666946731642,0.4088673269995283,0.4098027842227378,0.4102483578027269,0.4115170952408224,0.4127059269077826,0.4137395965580477,0.4127702161729383,0.4111934459428361,0.4116476661647666,0.4121652000770762,0.4134204183189487,0.4131662041909865,0.4117718007477988,0.4135572139303483,0.4115583075335397,0.4109666478236292,0.4097774244833068,0.0,2.4813400566694006,61.3366453195785,252.73670207689344,392.3202375633826,no_screening,20 +100000,95853,38217,354.4907305978947,8597,88.38534005195456,6607,68.30250487725998,2772,28.51240962724172,77.44506122741345,79.7231831854496,63.40474875222951,65.08422829994869,77.11016341042394,79.38760116731389,63.28343650679017,64.96571226537027,0.3348978169895105,335.5820181357103,0.1213122454393413,118.51603457841976,0.0,0.0,0.0,0.0,89.34533,39.08773785270909,92608.97415834664,40177.02925595349,158.33972,72.1842463573504,161695.3042679937,72538.6069791164,4844.29103,2127.9149821984843,5014661.7215945255,2180763.932478361,1648.67743,702.6102801016566,1706501.987418234,719504.8096330484,2740.55612,1120.928705540334,2822770.6175080594,1138351.8164833016,0.38217,100000,0,0,0.0,0,0.0,0,0.0,6775,70.04475603267504,0,0.0,15525,158.37793287638362,0,0,0,0,0,0,0,0,21,0.2190854746330318,0,0.0,0,0.0,0,0.0,0.08597,0.2249522463824999,0.3224380597882982,0.02772,0.3083957690612605,0.6916042309387396,25.883455830457567,4.7629379558186,0.3314666263054336,0.1743605267140911,0.2454971999394581,0.2486756470410171,11.004001422701991,5.24511504509946,29.361510977482894,13897.418219347684,73.92613441778178,13.187634479815024,24.71256812191789,18.21909259500741,17.80683922104146,0.5298925382170425,0.75,0.6844748858447488,0.5757760194765672,0.1183723797780517,0.6915760869565217,0.9013605442176872,0.861003861003861,0.7111111111111111,0.17,0.4835443037974684,0.6981351981351981,0.6297846889952153,0.5378020265003897,0.1066565809379727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021154274378023,0.0043659275316808,0.006702290540746,0.0091348300921602,0.011197593838275,0.0136940309896124,0.0159903853988429,0.018273221369064,0.020310633213859,0.0225051124744376,0.0247493830573731,0.0269940412089884,0.0288918788451465,0.0310648452929558,0.0328872129323401,0.0350743187448389,0.0371477325611458,0.039180129115157,0.0411743942193891,0.0434104010155453,0.0579973097256545,0.0724412081196,0.0853881995707031,0.0981268691956556,0.1095878880974675,0.1252018618789778,0.1396910109385092,0.1539180789459703,0.1673029753652554,0.1801203013956674,0.195995399976355,0.2100500016199229,0.2234357866394519,0.2360835098600161,0.2481707719012985,0.2604721167786274,0.2722894252745415,0.2832205561675247,0.294036265493349,0.3038352809220239,0.313141945035625,0.3216595898983518,0.330902720234854,0.3391988692173163,0.3464784969090445,0.353774863818984,0.3607323675372199,0.3670744138634046,0.3733039304708782,0.3799302104261394,0.382501719881834,0.3850691142624826,0.3874693290464506,0.3899625619751087,0.3928242186338359,0.3951005025125628,0.396907134821669,0.3985178612507805,0.399886994041504,0.4011443898077783,0.4020430431183686,0.4028034595884283,0.403829930825038,0.4046397551865353,0.4056003291463975,0.4073383900685021,0.4094650795927148,0.4102702188994836,0.4111338460452974,0.4125405925510163,0.4112944221082305,0.4144616049249379,0.4157166645318304,0.4173953778888195,0.4205797101449275,0.4184034125533211,0.418750983168161,0.4210749047820567,0.4161899313501144,0.4140562248995983,0.0,2.444300891216285,65.14171132925742,255.3865387550495,394.6778189313412,no_screening,21 +100000,95666,38102,354.1592624338846,8422,86.71837434407209,6477,66.9412330399515,2681,27.522839880417287,77.29747507811412,79.70306703853967,63.28577397120039,65.06664276401347,76.97641632519495,79.38139376997172,63.16804465376171,64.95195646102034,0.3210587529191713,321.67326856794887,0.1177293174386804,114.6863029931211,0.0,0.0,0.0,0.0,88.08983,38.47137621903872,91258.17949950873,39392.40249525266,152.16385,69.4930802297163,154000.36585620805,68778.80283500059,4756.56537,2095.377422562958,4918146.593356052,2136468.0773759778,1591.62317,679.6127939567845,1641957.1530115192,688710.0911061722,2667.85102,1111.3937495784082,2740596.7010223065,1120491.3684133978,0.38102,100000,0,0,0.0,0,0.0,0,0.0,6646,68.60326552798277,0,0.0,14917,150.98363054794808,0,0,0,0,0,0,0,0,29,0.2926849664457592,0,0.0,0,0.0,0,0.0,0.08422,0.2210382657078368,0.3183329375445262,0.02681,0.3057339191168187,0.6942660808831812,25.96996126798142,4.725745164164757,0.3344140805928671,0.1723019916628068,0.2515053265400648,0.2417786012042612,10.828790811946504,5.146836066940234,28.583718620393487,13904.341897410211,72.19092624235466,12.574699639881638,24.352119839290573,17.383594822843712,17.88051194033873,0.5320364366218928,0.7777777777777778,0.6948291782086796,0.5638569604086845,0.1166359729895641,0.6572637517630465,0.9122137404580152,0.8475609756097561,0.6985074626865672,0.1276595744680851,0.496936153389998,0.7365339578454333,0.6499402628434886,0.5272136474411048,0.1138461538461538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022903238882808,0.0047369809100683,0.0072084877404944,0.0097246214815567,0.011749267578125,0.014096844506916,0.0162172086002203,0.0184024019117256,0.020536526995101,0.0227442627315644,0.0247915234939944,0.0273366070144439,0.0295261414374189,0.0316451130918646,0.0337927830261731,0.0358199383520552,0.0377579469958438,0.0394463595962952,0.0414061443389061,0.0432915772140817,0.0575994985897837,0.0715197956577266,0.085155725319006,0.0977372424022469,0.1105320899616017,0.1255289885738468,0.1395499416197856,0.1545130198626124,0.1672138159653531,0.1799012239639252,0.1945492979012532,0.2083012650269373,0.2211087025195804,0.2344323548425977,0.2470865811843309,0.259502591363601,0.2713560534907643,0.2820209396941317,0.2923723996817097,0.3021241942513706,0.3115892465888408,0.3201852068925097,0.3294880610817348,0.3377230399519375,0.3458844453106918,0.3540047208868346,0.3615288063260951,0.3681481481481481,0.374650451973727,0.3815670890102317,0.3844644958807375,0.387646122985405,0.390476460337475,0.3931072559788452,0.3955243920632552,0.3969469169395379,0.3985517602782145,0.4001152737752161,0.4011986301369863,0.4030008415247713,0.4037691888540238,0.4045371618941857,0.4057406393463336,0.406546468234342,0.4070749352754724,0.4079078553812247,0.4105737751995865,0.4102474729871035,0.4108332152472722,0.4122455521718224,0.4128343230677162,0.4122698727926574,0.4128580521960535,0.4145817344589409,0.4155733029092983,0.4112652475484334,0.4123038682616125,0.4184615384615384,0.4255555555555556,0.4159223300970874,0.0,2.7395549567207857,62.36771720859345,246.72527910951348,393.0418349739912,no_screening,22 +100000,95833,37978,352.60296557553244,8536,87.87160998820866,6597,68.27502008702639,2723,28.11140212661609,77.32864418348662,79.64022069452788,63.32870225298407,65.03891851522918,77.00081756165314,79.30712559034593,63.21085283180798,64.92121481228337,0.3278266218334806,333.0951041819503,0.1178494211760821,117.70370294581768,0.0,0.0,0.0,0.0,89.94058,39.32632314905616,93317.58371333464,40502.52329474832,158.87687,72.87620514161459,162199.38851961226,73243.5629889778,4825.98385,2122.3840705543007,5000093.287280999,2178935.87861624,1618.93866,690.9071990826159,1676868.208237246,708484.1850746783,2702.5098,1104.4362927016768,2792098.692517192,1128789.2847559382,0.37978,100000,0,0,0.0,0,0.0,0,0.0,6754,69.90285183600639,0,0.0,15533,158.4527250529567,0,0,0,0,0,0,0,0,22,0.2295660158817943,0,0.0,0,0.0,0,0.0,0.08536,0.2247617041445047,0.3190018744142455,0.02723,0.2984461709211987,0.7015538290788014,26.260813664458706,4.698829188271512,0.3437926330150068,0.1731089889343641,0.2451114142792178,0.2379869637714112,11.14943746119072,5.438176252029104,28.96703219218121,13908.643658955014,73.75573026840958,13.00164951828479,25.545649051117312,17.43517499386066,17.77325670514681,0.5331211156586327,0.7460595446584939,0.7019400352733686,0.5636942675159236,0.1162646876932591,0.6947791164658634,0.924914675767918,0.8773584905660378,0.718475073313783,0.1727272727272727,0.4857926709778561,0.6843345111896348,0.6484464902186421,0.5207485760781123,0.1017871017871017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024003646123461,0.0046628552892997,0.0069598741946938,0.0092434584755403,0.0116026032133414,0.0138871920179189,0.0162470696157374,0.0182779348280894,0.0203262002575265,0.0227165749135337,0.0249492817475767,0.0269385493206354,0.0289290595743368,0.0308317891702697,0.0328847641144624,0.034916994659146,0.0369638329797692,0.039087610160705,0.0410066786459902,0.0427560366361365,0.057344903834119,0.0712598013591218,0.0842442853699181,0.0973551756386142,0.1099845062554676,0.1258865435635087,0.1406245029952817,0.1546072579872969,0.1682078332550292,0.1803428056898455,0.1946164199192463,0.208870618779749,0.2220518842281514,0.235408560311284,0.2472028779827717,0.2599747446775515,0.271477701601197,0.2828542152259343,0.2938918292710628,0.3036181342632955,0.313068992310993,0.3219195758258258,0.3304389142958959,0.3386829197922677,0.3465609432284625,0.3541000209972456,0.3614081325301205,0.3684828677934944,0.3749382555569999,0.380845085356802,0.3838228135648223,0.3864953458458389,0.3888558144809207,0.3913170035948711,0.3941764125265456,0.3956357467807849,0.3977669670627641,0.3985020831955558,0.4005775577557756,0.4022482805681757,0.4038998791905768,0.4044164540816326,0.4057420308211948,0.407776400315564,0.4084253975962122,0.409420959522615,0.4098823800738007,0.4115533795383735,0.413796768707483,0.415095095095095,0.4140948871487793,0.4164603294218968,0.4163787587971849,0.4182960893854748,0.4196360153256705,0.4196526175148791,0.4233701571495254,0.4193748706271993,0.4154319261951356,0.4192277383766745,0.0,2.203459956529749,66.49765261356833,246.8954599237475,399.3118290537984,no_screening,23 +100000,95743,38324,356.2662544520226,8576,88.33021735270464,6634,68.65253856678818,2768,28.48250002611157,77.35098256499538,79.69888336151551,63.33757887846742,65.07088384201087,77.0136498061177,79.35949812367504,63.21431471923862,64.94960124117837,0.3373327588776789,339.3852378404745,0.1232641592287961,121.28260083250098,0.0,0.0,0.0,0.0,90.19821,39.51440483025432,93568.75176253094,40631.40368513032,161.31954,74.09609695226162,164819.6735009348,74515.42732854853,4818.43755,2136.0215285625286,4988150.141524707,2186466.445131788,1627.87436,697.5340245488444,1683264.55197769,711559.7021416078,2724.48646,1129.7234618012149,2805508.705597276,1146067.476212636,0.38324,100000,0,0,0.0,0,0.0,0,0.0,6809,70.43856992156086,0,0.0,15745,160.77415581295762,0,0,0,0,0,0,0,0,20,0.2088925561137629,0,0.0,0,0.0,0,0.0,0.08576,0.2237762237762237,0.3227611940298507,0.02768,0.3011382473201459,0.6988617526798542,26.07361736839948,4.656600779025264,0.3488091649080494,0.1731986735001507,0.2413325293940307,0.236659632197769,11.010686248738498,5.481034551103952,29.51570134612861,13978.011586791898,74.36432733885651,13.213270901925402,26.02491054366836,17.506789970158312,17.61935592310445,0.5245703949351824,0.7571801566579635,0.6802074330164217,0.5484076433121019,0.1093066833229231,0.6675324675324675,0.887459807073955,0.85451197053407,0.6873239436619718,0.1329305135951661,0.4813506085590891,0.7088305489260143,0.626764539808018,0.5078189300411523,0.1031496062992126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024100533654673,0.0048144656956649,0.0068085192738932,0.0091614528317217,0.0113979522323108,0.0136209546884384,0.0156573327489016,0.0180541522509006,0.0201146781958114,0.022382789712309,0.0245710068269881,0.0264116856054773,0.0284689093600921,0.030718059088241,0.0329605711102399,0.0352248062015503,0.0372146000517732,0.0392246388842769,0.0413790235382184,0.0431611955536571,0.057582495589448,0.0715966984339529,0.0847637122395696,0.0977468905407252,0.1100569259962049,0.1258773784355179,0.1410132677194582,0.1554318675237325,0.1693249436473768,0.181649466841168,0.1969364012409514,0.2108909069261492,0.223907225691347,0.2364875956182492,0.248882478585427,0.2614750099782695,0.2734493699168827,0.2843218908272369,0.2948429729545609,0.3050454769633087,0.3140822235089751,0.3232352803409996,0.3326506694446746,0.3413944008152988,0.3492611316352323,0.3564092764058242,0.3638515883355045,0.3701221764998152,0.3765166949999351,0.383721545791424,0.3864327516996229,0.3889556817710708,0.3913412804032052,0.3934342847177818,0.3960623804971319,0.3974736193483786,0.3992222115966976,0.4014792997319389,0.4030844966177255,0.4055759275237273,0.4067607866822694,0.4077789720928381,0.407949790794979,0.4085912281889799,0.4106592953614122,0.4102604660972266,0.4112160294795025,0.4125135255553434,0.4117355254765785,0.4147359967877936,0.4145699644522413,0.4142656738966224,0.4147636410157999,0.4176316195769646,0.4159123392091472,0.4155515370705244,0.4119779353821907,0.418200620475698,0.4154235857022235,0.417910447761194,0.0,2.4069930966370863,68.32737371875156,251.83287061778,391.91354196050094,no_screening,24 +100000,95835,38349,355.39208013773674,8565,88.03672979600356,6634,68.56576407366829,2747,28.24646527886472,77.51248185563044,79.79735152991144,63.42745123530996,65.1104086199417,77.17761813781306,79.46234055996725,63.30589521932737,64.9918687032675,0.3348637178173845,335.010969944193,0.1215560159825912,118.5399166741945,0.0,0.0,0.0,0.0,90.12571,39.15767837292165,93373.01612145876,40189.90804290881,157.3721,71.91429986250908,159941.70188344552,71818.09187753966,4835.91886,2119.98708998505,5003099.473052642,2169216.9431369947,1633.82719,698.4626855578085,1687589.9410445036,711617.9412259741,2715.42778,1117.3331501977982,2794885.083737674,1132833.9945545967,0.38349,100000,0,0,0.0,0,0.0,0,0.0,6793,70.19356185109825,0,0.0,15424,156.6964052799082,0,0,0,0,0,0,0,0,18,0.1878228204726874,0,0.0,0,0.0,0,0.0,0.08565,0.2233435030900414,0.3207238762405137,0.02747,0.3014681532177944,0.6985318467822056,26.220328016850072,4.715546354946408,0.3358456436539041,0.1751582755501959,0.2461561652095266,0.2428399155863732,11.025358445205129,5.392414184921349,29.04243013850207,13973.51092176975,73.68530275272538,13.20779283642984,24.82535673108269,17.688313951313184,17.963839233899684,0.5301477238468496,0.7478485370051635,0.696588868940754,0.5605214152700186,0.1181873851806491,0.6904761904761905,0.9329073482428116,0.8654618473895582,0.7212121212121212,0.1641337386018237,0.4845081332300542,0.6796230859835101,0.6479768786127168,0.5191256830601093,0.1065950920245398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022969663853641,0.0045269948653548,0.0067302526885535,0.00907144524155,0.0116012109144842,0.0139631851927183,0.0161267333184011,0.0182737803883178,0.0206365576465542,0.0227630637079455,0.0252421815798636,0.027249046232104,0.0292225807114527,0.0313693202284773,0.0332068702447473,0.0356759213353164,0.0376651731666683,0.0397598855412942,0.0418324416973978,0.0437869576080619,0.0583904306020502,0.0725637808448348,0.0863328198841071,0.0991397872049911,0.1113860604209883,0.1270968014535006,0.1415125337855742,0.1552121991939514,0.1682087401952937,0.180639150084606,0.1956940217449751,0.209964566588886,0.2234214669634616,0.2357129596260743,0.247138180300134,0.2599920373360465,0.2719078338960011,0.2836151210470145,0.2947813183203253,0.3043537912741242,0.3139065204847086,0.3233082706766917,0.3318068620392554,0.3404451137884873,0.348644195119587,0.3556654123318331,0.3625468164794007,0.3690119760479042,0.3756344522078291,0.3819315625370012,0.3847363117232112,0.3873426064509042,0.3898764772839055,0.3920719472233049,0.395025983667409,0.397174206203261,0.3987875132913301,0.4003324993415854,0.4029564413079597,0.4046232416450139,0.4064335190483361,0.4078009254662085,0.4095573207475612,0.4105530347275259,0.4114046081172274,0.4130230371415139,0.4142750971872856,0.4156359172882636,0.4166666666666667,0.4169936194665715,0.4172233583276528,0.418496128963835,0.4206149193548387,0.4194950804667836,0.4194580353782461,0.421432800473653,0.422382118799755,0.4219443323920936,0.4253443526170798,0.428952380952381,0.0,2.5483641446057512,64.92905418889077,248.21392546327863,401.7961064268428,no_screening,25 +100000,95748,38206,355.6732255504031,8470,87.44830179220453,6597,68.42962777290387,2683,27.68726239712579,77.31288813594676,79.67137929340942,63.318020272784125,65.06195684860145,77.0006438230941,79.35533866712669,63.20515930532054,64.94997247655768,0.3122443128526697,316.040626282728,0.1128609674635825,111.98437204377854,0.0,0.0,0.0,0.0,89.75461,39.18073177012003,93287.58825249612,40467.813186823776,159.15414,72.57982427733492,163322.8265864561,73611.35905624635,4793.47794,2103.2438863658103,4975877.960897355,2166175.3523476315,1595.13842,679.8882461142284,1654577.432426787,698682.6107221331,2645.09,1079.8202276490429,2732255.5458077453,1102834.0459065167,0.38206,100000,0,0,0.0,0,0.0,0,0.0,6752,70.02757237749091,0,0.0,15646,160.53599030789155,0,0,0,0,0,0,0,0,13,0.125328988595062,0,0.0,1,0.0104440823829218,0,0.0,0.0847,0.2216929278123854,0.3167650531286894,0.02683,0.2987798052166125,0.7012201947833875,25.909688447196697,4.691428758503327,0.3483401546157344,0.1737153251477944,0.2361679551311202,0.2417765651053509,11.196923327997611,5.564075079457247,28.4158836123768,13952.953434515714,73.87357656338932,13.080463746958566,25.875234375570784,17.712386620209724,17.20549182065024,0.5403971502197968,0.7373472949389179,0.6879895561357703,0.5993730407523511,0.1174582798459563,0.7008086253369272,0.9081967213114754,0.864406779661017,0.7801204819277109,0.1424050632911392,0.493839233326814,0.6753864447086801,0.634974533106961,0.5518606492478226,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022078632340132,0.0045408933802288,0.0068689820310676,0.0087758501604842,0.011279380803694,0.0133503054989816,0.01557051085959,0.0175802186807689,0.019700656347762,0.0219125341743377,0.0241154094595564,0.0261744621861683,0.0280666029023068,0.0302515295717199,0.0324770452904157,0.0345497576452836,0.0365722332670642,0.0385249898836883,0.0405864919669318,0.0425731432858214,0.0576830719759453,0.0719143682250031,0.0849928167699583,0.0978961424020355,0.1103179958668972,0.1258461668641056,0.1407319376505416,0.1547083053932369,0.1684521965756278,0.1810324490102301,0.1957469717362046,0.2097072469097083,0.2235148299556406,0.2358866116931691,0.2474445728117951,0.2601566568063726,0.272081886880909,0.2829815006526534,0.293958633849369,0.3043518125866752,0.3138331133189745,0.3229988066546552,0.3316762540539261,0.3398136266055816,0.34780547112462,0.3551487188344292,0.3623357407964691,0.3701056279703885,0.3766250616290837,0.3836267372600926,0.3866329743388781,0.3896435572489577,0.3924954740891604,0.3947387523409938,0.397450839758532,0.3989857730782866,0.4003413132585847,0.4017727212594258,0.4036419338737715,0.404888856864935,0.4063498062931115,0.4071036615783697,0.4078399898620821,0.4091544532130778,0.4099249070451287,0.4108610876897133,0.4112707756232687,0.4129720067668933,0.4129931221267952,0.4149967679379444,0.4157714391553991,0.4170118900306666,0.4208685699752019,0.4211216539381316,0.4223263822460302,0.4242314647377938,0.4221491228070175,0.4203137902559868,0.4228263947890116,0.4307811291569992,0.0,1.8618012732712128,66.37726571697448,254.96728497513408,391.7911371758259,no_screening,26 +100000,95772,38164,354.8949588606273,8449,87.02961199515515,6511,67.31612579877208,2750,28.285929081568725,77.37208356525132,79.71082018638272,63.35007434272507,65.07945351222668,77.04000096974347,79.37612019625531,63.23015140467097,64.96121596370293,0.3320825955078419,334.6999901274046,0.1199229380541027,118.23754852375146,0.0,0.0,0.0,0.0,88.19724,38.64728014366179,91420.33162093304,39684.36328375606,157.79231,72.50199615489414,160130.09021425887,72198.26932710713,4803.39424,2119.893216594889,4971026.333375099,2169455.3414583607,1594.11625,685.3997303706623,1648013.7931754584,699257.6779388122,2731.6385,1120.7858274182706,2812844.3177546677,1138508.5108577637,0.38164,100000,0,0,0.0,0,0.0,0,0.0,6686,69.11205780395105,0,0.0,15456,156.77859917303596,0,0,0,0,0,0,0,0,24,0.2505951635133441,0,0.0,0,0.0,0,0.0,0.08449,0.2213866471019809,0.3254823055982956,0.0275,0.3044016661037937,0.6955983338962063,25.84268587343548,4.696748495901978,0.3355859315005375,0.17524189832591,0.2544923974811857,0.2346797726923667,10.869715549476616,5.2750820462728285,29.189896601572165,13910.128090387372,72.92009802571827,13.06061393401011,24.418400762423023,17.14170639733285,18.2993769319523,0.5221932114882507,0.7397020157756354,0.6837528604118993,0.5726439790575916,0.1128545564272782,0.6767537826685007,0.9003436426116839,0.8799171842650103,0.7441860465116279,0.1220238095238095,0.4777536088590073,0.6847058823529412,0.6280846063454759,0.5228040540540541,0.1105223315669947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023093284715891,0.0046632334455212,0.0069107588642406,0.0093456994544955,0.0115020848164344,0.0136015637726014,0.0157987544465849,0.0180827397595771,0.0202235938521909,0.0223620919046157,0.0246564392658406,0.0266012582230934,0.0285141594284833,0.0304986665842934,0.0325348292823775,0.0345511654818978,0.0365593623848462,0.0386597670873474,0.0406479566920543,0.0427594248768857,0.0572495982301254,0.0709242853706241,0.0846926366990942,0.0963738954093158,0.1087629843450412,0.1237309443569942,0.1385153393737084,0.1525220091013482,0.166072762189267,0.1794761930266188,0.1944148621464915,0.2094096539201487,0.2224697368135092,0.2351410737125179,0.2471158816219248,0.2597317740345748,0.2711612910423616,0.2823505599784104,0.2924907012609997,0.3033096655978012,0.3127595821233962,0.3218267104939932,0.3302654616003407,0.3388018742435318,0.346299625832159,0.353551791306063,0.361401837530239,0.3692601553546415,0.3767189869480123,0.3831384208787578,0.3864659424782339,0.3895170286312368,0.3922059197693155,0.3948986398306313,0.3975844330127488,0.3992957313322672,0.4010785358637036,0.4023893206606934,0.4031258606444505,0.4041397665761504,0.4062063761554423,0.4064516129032258,0.406679473917541,0.4077269655327776,0.4091471551619556,0.4095235584148495,0.4102193578220283,0.4112128657583203,0.4110213235555872,0.413317191283293,0.4144435711313514,0.4150363783346806,0.4133896029157874,0.4100853374709077,0.4111100450925837,0.4099191504766502,0.4104280155642023,0.4106925880923451,0.416,0.4146810146041506,0.0,2.517287305222057,64.05623862081963,249.21730590249493,393.4836342106522,no_screening,27 +100000,95654,38105,353.59734041441027,8464,87.33560541116942,6567,68.1518807368223,2625,27.129027536747028,77.25911226955019,79.65657198575707,63.27736057920528,65.04617106586599,76.94711676900907,79.34047791796407,63.163967959675325,64.93358415915168,0.3119955005411157,316.09406779300286,0.1133926195299537,112.58690671431282,0.0,0.0,0.0,0.0,88.54057,38.64657374757879,92026.02086687436,39867.55226301059,157.65534,71.65191422009593,162181.90561816547,72816.15926688569,4764.70102,2101.921509331341,4945683.191502708,2162564.342177605,1614.53913,690.2733184923942,1676854.4545967758,711035.8297522039,2605.37334,1074.1030375935643,2694353.858699061,1097172.8985670202,0.38105,100000,0,0,0.0,0,0.0,0,0.0,6722,69.7304869634307,0,0.0,15472,159.07332678194325,0,0,0,0,0,0,0,0,19,0.1986325715599975,0,0.0,0,0.0,0,0.0,0.08464,0.2221230809605038,0.3101370510396975,0.02625,0.3046253779818568,0.6953746220181432,26.278650276577316,4.656314112251988,0.3468859448758946,0.1812090756814375,0.239835541343079,0.2320694380995888,10.80691223190038,5.179911956779657,27.988803354435912,14021.413322758446,73.64364285426053,13.6717774549142,25.56927160362138,17.038696740697105,17.36389705502785,0.5361656768691945,0.7605042016806722,0.6892010535557507,0.5708661417322834,0.1117460317460317,0.6830265848670757,0.9223300970873788,0.8648111332007953,0.7002967359050445,0.1446540880503144,0.4939215686274509,0.7037457434733257,0.6394366197183099,0.5341196293176074,0.1034208432776451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022892335119475,0.0044818949695291,0.0067291882345776,0.0090737278491302,0.0112823643115112,0.0135049803434298,0.0156412504843281,0.0178751901344467,0.0201694932580938,0.0224169345097958,0.0245752893773644,0.0268299945580187,0.0289328876317819,0.0309560845961286,0.0330849724463891,0.0353202708990332,0.0375212364811668,0.039485156736558,0.041927129380194,0.0438889120553771,0.0590952316261377,0.073649703076069,0.0868204681248753,0.0996472384562733,0.1121730222930945,0.1280793916414243,0.1428176912945575,0.1570008417418729,0.1701902409290686,0.1825913278783583,0.1976916023946928,0.2119714799644583,0.2256788993823731,0.2376820168951122,0.2495340399016245,0.2617561474044292,0.2735360272148428,0.2846925307130851,0.2949862910840851,0.3046351526853544,0.3142542077771329,0.3232919473325979,0.3324507557318072,0.3406787820435672,0.3481630660319785,0.3557526941588409,0.3631016714842277,0.3699762385344541,0.3762869176372712,0.3826612422310863,0.3857807596580456,0.3888835079077362,0.3918535741628151,0.3946440539674214,0.397210612257127,0.3995525036648407,0.4011455375091738,0.402763299412592,0.4044511869257158,0.4063265159153104,0.4079399871509013,0.4092132278190842,0.4115508202266193,0.412193475815523,0.4125184700724269,0.4130543229973482,0.4147482633905505,0.4160525981450895,0.4169653948535936,0.4162079633573064,0.4155316496606491,0.4163708723244057,0.4166613469518034,0.4189510865391999,0.4186266175498253,0.4222248832475153,0.4268236022920861,0.4278984022941417,0.4277227722772277,0.4269352290679304,0.0,1.8834582467714287,65.72090655134696,251.04003549213968,396.86517210592456,no_screening,28 +100000,95633,37867,352.6084092311232,8406,86.89469116309225,6481,67.36168477408427,2687,27.81466648541821,77.28554750318864,79.71692670473335,63.27381344368565,65.07178441455473,76.95501219678641,79.37999502107843,63.155202792530936,64.95285928148793,0.3305353064022256,336.93168365492454,0.1186106511547109,118.92513306679577,0.0,0.0,0.0,0.0,88.41882,38.56960389850514,92029.87462486798,39904.336263115394,155.59619,70.45137724628967,160170.3282339778,71792.09923413102,4734.42721,2087.978314471826,4920553.365470079,2153256.62111596,1609.43108,688.4348105034661,1673012.6525362583,709959.8679362404,2670.06918,1099.5347201606855,2765131.492267314,1127275.0134310832,0.37867,100000,0,0,0.0,0,0.0,0,0.0,6646,69.05566070289545,0,0.0,15219,156.61957692428348,0,0,0,0,0,0,0,0,28,0.2927859630044022,0,0.0,1,0.0104566415358715,0,0.0,0.08406,0.2219874825045554,0.3196526290744706,0.02687,0.310079275198188,0.689920724801812,25.915715958741128,4.7413054470589175,0.3284986884740009,0.1819163709304119,0.2487270482950162,0.2408578923005709,10.939208564170032,5.215987252751709,28.63837648734117,13821.699141013194,72.72371333092805,13.360031046140726,24.112266393706467,17.384010364991628,17.86740552608923,0.5351026076222805,0.731128074639525,0.6989196806012212,0.5970531710442024,0.1153846153846153,0.6744515215852795,0.9145907473309608,0.8453815261044176,0.7412140575079872,0.1339563862928348,0.4962509865824783,0.6737193763919822,0.6541998773758431,0.5608974358974359,0.1107668474051123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020672882042967,0.0041181064824676,0.0061933964179831,0.0085887076281953,0.0108961054816261,0.0132322831036274,0.0156583121665595,0.0176834749918273,0.0199138803939818,0.0218960908616081,0.0241890810611189,0.0264588321122882,0.0282032279314888,0.0303670642078896,0.0323076923076923,0.0342259595990939,0.0363619406851671,0.0381647679478259,0.040207752196178,0.0422968603316991,0.0568871977671618,0.0709764634376375,0.084831608259339,0.0970786848287559,0.1096676067049019,0.1251813493450244,0.140073314561972,0.1547899500058628,0.1677259206950418,0.1802898301625326,0.1949530149208644,0.2090633130962706,0.2224740650335629,0.2350608085898981,0.2469073187942402,0.2590467098836693,0.2709220809713883,0.2817587373167982,0.2913890720571181,0.3017019910083494,0.3110848455352383,0.3206824226943041,0.3293870627172327,0.3369177349785536,0.344674682356954,0.352209961818384,0.3593989112164772,0.3657755375486505,0.3722972972972973,0.3783522621978662,0.3814481715551234,0.3838906362081333,0.3864083162435471,0.3893531818577522,0.3917928821905543,0.3936859936859936,0.3947485819896756,0.3967067848168232,0.3984117161716171,0.3999099909990999,0.4013932940643407,0.4024642700744456,0.4032619732611271,0.4036726222703483,0.4037374105084334,0.4059291547409605,0.4062750716332378,0.4062826893206961,0.4052375238229688,0.4067240344206524,0.4062931272426166,0.4061055573470923,0.4094623930532499,0.4097500771366862,0.4122974261201144,0.4151147422804277,0.4171740827478532,0.4150631078005379,0.4132923764311644,0.4163454124903624,0.0,1.5601482103208353,63.47807080136317,259.13075226446523,383.8629700816027,no_screening,29 +100000,95830,37921,352.2592090159658,8488,87.55087133465511,6528,67.74496504226234,2710,28.0705415840551,77.35864855579545,79.66351857804865,63.35358995694328,65.05439516575301,77.03257945791643,79.33013367836548,63.23697683951512,64.93652201565051,0.3260690978790279,333.38489968316765,0.1166131174281517,117.873150102497,0.0,0.0,0.0,0.0,88.44901,38.74498982418852,91944.85025566106,40077.98165938487,155.8405,71.42907078086539,160171.05290618804,72647.03193470696,4724.69848,2080.9876143361703,4907411.343003235,2148660.570109748,1610.23541,693.1495922263213,1671080.7575915684,714088.3567007429,2678.10632,1089.6466038901383,2775717.144944172,1121306.5193615612,0.37921,100000,0,0,0.0,0,0.0,0,0.0,6680,69.33110716894501,0,0.0,15316,157.35156005426276,0,0,0,0,0,0,0,0,17,0.177397474694772,0,0.0,0,0.0,0,0.0,0.08488,0.2238337596582368,0.3192742695570216,0.0271,0.3049377224199288,0.6950622775800712,25.94509507406566,4.692543127673121,0.3333333333333333,0.1824448529411764,0.2449448529411764,0.2392769607843137,11.05363448813678,5.406624553739058,28.60322889668169,13825.704392809115,73.08651502059637,13.534337428552329,24.547976181591316,17.431726590283375,17.572474820169358,0.5346200980392157,0.7472712006717045,0.6966911764705882,0.5761843790012804,0.1150719199499687,0.7001329787234043,0.9141914191419142,0.8833652007648184,0.7295774647887324,0.1702786377708978,0.4850716560509554,0.6903153153153153,0.6376285541439807,0.5310687655343828,0.1010971786833855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021759812157156,0.0043958715271095,0.006721615620913,0.0092138776421402,0.0114705464003413,0.01371242561416,0.0160738296051827,0.0184733712117348,0.020615818400997,0.0225147813989647,0.0246333169452638,0.0267606211664307,0.0289104638619201,0.030820050011834,0.0326428770272917,0.0345881745416989,0.036689843555997,0.0385424765458974,0.0407050416502212,0.0426183090087651,0.057385770915919,0.0715383409126548,0.0848216157296776,0.0970680958385876,0.1097271836373407,0.1246539445043217,0.1394106423574305,0.1533290789193788,0.1658891723688845,0.1784178986074334,0.1929072822014556,0.2075549257380223,0.2213703933274611,0.2342092020915833,0.2463005373029155,0.2586159115850617,0.2701788465402907,0.2812675834439918,0.2920577986129241,0.3016456943775928,0.3115253256150506,0.3205152224824356,0.3291791548695106,0.3376847763486273,0.3458875354417903,0.3531089138243898,0.3602776281336524,0.3668288582055332,0.3737663247176002,0.3799809619503424,0.3824017484923301,0.3850079304875526,0.3875497473820881,0.3894930421813232,0.391983908217239,0.3933781750053748,0.3950823319982198,0.3963388465220692,0.397513498641538,0.3986204163965132,0.4005896025851805,0.4028600490636032,0.4042345966546686,0.4031861362456845,0.4052944748026715,0.4065495840485937,0.406829606517594,0.4074571501662829,0.4071933204881182,0.407494239864182,0.4091877373344447,0.405428834588503,0.4068167202572347,0.4056692175542714,0.4,0.3965392934390771,0.3921875,0.3905079100749375,0.391341743119266,0.3914274160938132,0.0,1.4830841263653494,67.68057343051423,240.60546312743597,396.77786090917056,no_screening,30 +100000,95852,38087,353.6076451195593,8478,87.12389934482327,6600,68.16759170387681,2768,28.356215832742144,77.41454581429173,79.70358317617142,63.37712166936033,65.06791826980822,77.07388757814472,79.36494415848303,63.25215062046111,64.94795042966264,0.3406582361470072,338.63901768839355,0.1249710488992192,119.96784014557704,0.0,0.0,0.0,0.0,89.09813,38.97610591583769,92291.30325919123,40000.24612510714,157.43237,72.14015891322495,160782.6023452823,72509.69404893141,4829.23958,2129.684613514037,4989516.243792513,2173137.903762088,1603.5268,689.2794617814651,1650785.0957726496,696973.6591635732,2732.64866,1131.2641248617206,2801969.598965071,1136656.5037205738,0.38087,100000,0,0,0.0,0,0.0,0,0.0,6747,69.680340524976,0,0.0,15455,157.81621666736217,0,0,0,0,0,0,0,0,18,0.1773567583357676,0,0.0,1,0.0104327504903392,0,0.0,0.08478,0.2225956363063512,0.3264920971927341,0.02768,0.3087660524846454,0.6912339475153545,25.99780055946311,4.741296883697061,0.333030303030303,0.1806060606060606,0.2506060606060606,0.2357575757575757,11.012613938861367,5.400749281460926,29.404826967611857,13863.542837842782,73.7233691070238,13.70389266754366,24.742954105179784,17.145981611262442,18.130540723037907,0.5277272727272727,0.7567114093959731,0.7001819836214741,0.5559125964010283,0.1070133010882708,0.675531914893617,0.9145569620253164,0.8711538461538462,0.7003058103975535,0.1319648093841642,0.4841051805337519,0.6997716894977168,0.6471990464839095,0.5174938974776241,0.1005331302361005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002277673735891,0.004731269945798,0.0071691493353073,0.0093801392808559,0.0114137615611342,0.0134006247519816,0.0158007334963325,0.0181871965400465,0.0205319931355724,0.0225331655875704,0.0247884784790936,0.0268238142130313,0.0291198290211874,0.0310344827586206,0.0330961954840705,0.0348385630771137,0.0367297107147291,0.0387086744740387,0.040633694614011,0.0426813410866421,0.0565374709335669,0.0709142026986067,0.0846420601577806,0.097409348189064,0.1095769218616702,0.1256747477948555,0.1397965670692943,0.1537512890571012,0.167260659865978,0.1794665809768637,0.1947773880484603,0.2089276252473588,0.2219529424550345,0.2347315729649383,0.2465703733016752,0.2587624644465841,0.2707968549601294,0.2822954136690647,0.2925312851000102,0.3027824552962874,0.3124124923340391,0.3210465959886728,0.329343089892962,0.3373123942749511,0.3450260378644084,0.3527182500493778,0.3598008977155896,0.3675105807964918,0.3747239614455327,0.3813746641430519,0.38441705700517,0.3868093675006206,0.3892160601053538,0.391695652173913,0.3941927886836888,0.3963522379803629,0.3977680414007683,0.3984543641966154,0.3994645431454657,0.4007603471773904,0.4009790999811711,0.402203966343763,0.4030357331084642,0.404225161987041,0.405432912496668,0.4063575463023775,0.4073882569229001,0.4085099652008858,0.4081741164793874,0.4059724287609019,0.4053954685417528,0.4063405214032829,0.4064958132453692,0.4076057846813069,0.4062144751799924,0.4060931899641577,0.4105929586164299,0.4148148148148148,0.4105058365758754,0.4110595514307811,0.0,2.722207759116704,66.2812069178923,246.6043011419697,397.7422180139619,no_screening,31 +100000,95727,38101,354.95732656408325,8387,86.64222215257973,6471,67.19107461844621,2721,28.17386944122348,77.36002699221102,79.73232942039846,63.33690834044432,65.08883106223973,77.03904217987527,79.40501970854548,63.22171896744922,64.97298314071269,0.3209848123357517,327.3097118529762,0.1151893729951041,115.84792152704892,0.0,0.0,0.0,0.0,87.56272,38.261010521706325,91059.05334962968,39556.64600552229,154.61582,70.2998309305646,158974.81379339163,71440.84642105411,4742.04459,2085.151443651675,4924869.754614686,2149379.9279740043,1605.10699,681.9430798045205,1663623.8156423997,699252.3110559412,2696.6413,1098.5081051256889,2793762.825535116,1127863.233171601,0.38101,100000,0,0,0.0,0,0.0,0,0.0,6608,68.61178142008002,0,0.0,15116,155.36891368161542,0,0,0,0,0,0,0,0,24,0.2507129649942022,0,0.0,0,0.0,0,0.0,0.08387,0.2201254560247762,0.3244306665076905,0.02721,0.3001588742623695,0.6998411257376305,26.028566551639237,4.729683063314975,0.3379694019471488,0.1758615360840673,0.2514294544892598,0.234739607479524,10.972758891921147,5.231512045386773,28.781429868999208,13850.12426034298,72.55455186150351,13.008217344344567,24.77684092533615,16.866081321216903,17.903412270605894,0.5268119301498996,0.7328646748681898,0.6945587562871514,0.564845292955892,0.1216963736939151,0.6747967479674797,0.8918918918918919,0.8397085610200364,0.6904024767801857,0.1558441558441558,0.483083083083083,0.6769596199524941,0.645909645909646,0.5309364548494984,0.1137225170583775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023396906746614,0.0046021753895123,0.0068802451721583,0.0088583677035291,0.0111680703039179,0.0133395788358926,0.0157492354740061,0.0179121843679193,0.0200971121901354,0.0221237126067282,0.0242469601591174,0.0261898895322574,0.0280531446670231,0.0301788068556361,0.0321705306383549,0.0341180484476287,0.0362892365067854,0.0383613397407288,0.0402924688237802,0.0421672310497525,0.0568811938054113,0.0710936682365253,0.0841296982030651,0.0969984434815531,0.1087799940960654,0.1240327286566028,0.1384705133644463,0.1528762050692715,0.1669977147006685,0.1799714705535356,0.1947367854103605,0.2084329658201962,0.221818893187845,0.2342762827099228,0.2459200281529054,0.2582813728638986,0.2698451653206015,0.2815100535288561,0.2921618434183072,0.3021015862108457,0.3116113881144364,0.3212932647333957,0.330189349112426,0.3385417290755497,0.3463501786625829,0.3542516860027864,0.361497406600015,0.3685965984316122,0.3756480713396931,0.3813714995572824,0.3843226685738189,0.3869169196798233,0.3889902289342327,0.3916129594147361,0.3939796436140047,0.3955244540141495,0.3972705030027644,0.3986201672923665,0.4001029247791405,0.4009500761853545,0.4020106178696487,0.4035157413844473,0.4040947596325647,0.4043145441892832,0.4048873634342067,0.4059735964935304,0.4065870847116352,0.4067397120652312,0.4074021301606526,0.4076379066478076,0.4069643436732044,0.4068805106290907,0.4087223038120171,0.4064940085040587,0.4060508039197031,0.4118635926993276,0.4140818858560794,0.4180802647910633,0.4134997163925127,0.4105803395183576,0.0,1.6100513083765349,66.3502982383318,246.9942069618366,385.4942224589207,no_screening,32 +100000,95752,37897,351.86732392012703,8386,86.29584760631631,6421,66.48425098170273,2674,27.52945108196173,77.33346816806463,79.69493358341414,63.32120940122799,65.06999309692574,77.02164737969,79.37994855364951,63.20852571936058,64.95840265333065,0.3118207883746322,314.98502976462817,0.1126836818674092,111.59044359509096,0.0,0.0,0.0,0.0,87.76925,38.01382900136784,91088.55167516082,39126.31509173516,152.76906,69.62402303983201,155533.85830060992,69724.27763301942,4692.69772,2060.998511847744,4863533.889631548,2115127.787548437,1590.75411,680.7442860941972,1648193.0925724788,697847.8340071054,2644.366,1081.569847571615,2725744.4648675746,1100650.855351295,0.37897,100000,0,0,0.0,0,0.0,0,0.0,6593,68.24922717018966,0,0.0,14995,152.58166931239035,0,0,0,0,0,0,0,0,26,0.2715347982287576,0,0.0,0,0.0,0,0.0,0.08386,0.2212840066496028,0.3188647746243739,0.02674,0.2990273693734449,0.7009726306265551,26.124673672383828,4.808315318679568,0.3312568135804392,0.173181747391372,0.2440429839588849,0.2515184550693038,11.131133716408732,5.4883996814717495,28.349085538376,13832.417348140438,71.59934370401709,12.481244180316676,23.79047213875665,18.018709007930195,17.308918377013562,0.5369880080984271,0.7491007194244604,0.7005171603196991,0.5907120743034056,0.1091257179323548,0.6916608269096005,0.9363295880149812,0.8754940711462451,0.7257142857142858,0.131578947368421,0.4927913496195434,0.6899408284023668,0.6458975940777298,0.5533596837944664,0.1037212984956452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022594862961649,0.004208412769237,0.006597243367233,0.009043061228637,0.0115335326783425,0.0136138235803235,0.0156281857847734,0.0174828029638096,0.019776580848911,0.0220284158375301,0.0242049578643046,0.0262104225699149,0.0284856337796425,0.0305973223480947,0.0327676038173845,0.0346980330546052,0.0369756774387276,0.0387975760594363,0.0408574874204682,0.0430562209677755,0.0581431762667279,0.0720976232587832,0.0855961724094514,0.0984761644354236,0.1103155186231914,0.1261630857722889,0.1405124396583735,0.1543119871433284,0.1663177905461691,0.1791432094793844,0.1932029945602413,0.2072640325442506,0.2203684771496313,0.233369063504911,0.2452809433713204,0.2574111602050873,0.2689181645640281,0.279273398460361,0.2901212148726563,0.3003779202931745,0.309379482670862,0.3180483582299063,0.3275462141115766,0.335982165330265,0.3439655172413793,0.3525217070016627,0.3599929930806672,0.3667977249303355,0.3734922588585865,0.3799629923341263,0.3822306799470942,0.3848125689084895,0.3875047640557288,0.3899211548495565,0.393191578193964,0.395441183260739,0.3965149586250795,0.3983194941974677,0.3995943204868154,0.4016462680397548,0.4029560922270611,0.4042730962043447,0.4057717441713394,0.4072522522522522,0.4085525677118726,0.4106898006539394,0.4106121979947714,0.4099297989263365,0.4109204589861096,0.4116351697629724,0.4137598235213015,0.4151824034334764,0.4172341373385095,0.417992277992278,0.4192561430347069,0.4198176291793313,0.4222534771057978,0.4283622673080945,0.4263142775064636,0.4269797055312375,0.0,2.183422528770984,63.43960226121524,242.81610957620083,387.97109401212685,no_screening,33 +100000,95798,37926,351.7609970980605,8427,86.6823942044719,6476,67.0264514916804,2691,27.72500469738408,77.34149214859087,79.67998994119439,63.33904717832892,65.07198725615001,77.01193954227516,79.34748224113997,63.21933350642836,64.95369385879208,0.3295526063157155,332.5077000544212,0.1197136719005556,118.29339735793098,0.0,0.0,0.0,0.0,87.2402,38.37524696215371,90484.39424622642,39478.24309619483,156.65054,71.65857796344642,159804.95417440866,71959.92364541508,4708.14212,2092.8757571395104,4876188.093697155,2146479.1528322934,1592.83978,687.8618254574667,1648090.1271425292,703494.8523958887,2660.10008,1103.3651066381822,2742236.602016744,1122439.7454041352,0.37926,100000,0,0,0.0,0,0.0,0,0.0,6635,68.6444393411136,0,0.0,15336,156.2976262552454,0,0,0,0,0,0,0,0,24,0.2505271508799766,0,0.0,0,0.0,0,0.0,0.08427,0.2221958550862205,0.3193307226771092,0.02691,0.3039469245473968,0.6960530754526032,25.747822505734984,4.76884138626393,0.3318406423718344,0.1822112415071031,0.2425880172946263,0.243360098826436,11.12202493151134,5.398067213779577,28.737926900746885,13861.84958398682,72.76245083651798,13.448520711236128,24.17299400605009,17.66026245420484,17.480673665026927,0.5310376775787523,0.7432203389830508,0.6849697533736622,0.5850253807106599,0.1069382558879694,0.6709546377792823,0.9195804195804196,0.86875,0.7254901960784313,0.1468926553672316,0.4896979395879176,0.6868008948545862,0.6321150389454764,0.5438884331419196,0.09531635168447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021982029437685,0.0043490161491438,0.0065452331422192,0.0089623216680892,0.0112733377422801,0.013771887828381,0.0159921671018276,0.017941569912896,0.0202672992954505,0.0224249685128866,0.0246490787355555,0.0268530118502392,0.0290263520602332,0.0311312105322798,0.0331211242609655,0.0352355063101427,0.0372966648373836,0.0393680366812589,0.0415125316929215,0.0432655270773907,0.0574278500031301,0.0712889093361494,0.0842852052899629,0.0968358886518636,0.1088899192783526,0.1246683789411379,0.1397330845797513,0.1537185512855958,0.1665083617037171,0.179379454477252,0.1938046239290481,0.2081666630629851,0.2214339261850696,0.2336462898801001,0.245375767039831,0.2567771084337349,0.2685532066720185,0.2803872677853404,0.2915434721042197,0.3025458038838948,0.3120618163757955,0.3207686017988552,0.3293910328433054,0.3378697303319636,0.345640925984405,0.3533290605664703,0.3610377582819168,0.3683018675894356,0.3745225239223608,0.3802486078488295,0.383022327688491,0.3861487138485291,0.3888064867002868,0.3914701149591916,0.3941224733348251,0.3964671698925392,0.3979984726023038,0.4003269322853888,0.4026074542921518,0.4037032371835243,0.4042267631991834,0.404994311036589,0.4057338866773947,0.4068539910030065,0.4074597068705263,0.4087034544638852,0.4102727615293197,0.4105057117186497,0.410458452722063,0.4098659430561743,0.4096627847154015,0.4105148460909834,0.4120349401488191,0.41049237061507,0.4089497185012619,0.4092296422903186,0.4070838627700127,0.4042688081149619,0.4001721170395869,0.4018067556952082,0.0,2.196158427825107,65.58328950871696,246.77958703612995,389.3873140018953,no_screening,34 +100000,95701,37833,351.52192767055726,8345,85.88207019780359,6485,67.18843063290875,2702,27.815801297792085,77.3419109081298,79.71202939004185,63.33255108723839,65.08160792715186,77.01609193417828,79.38499506859411,63.213051132437776,64.96453378835166,0.3258189739515273,327.0343214477407,0.1194999548006094,117.07413880020567,0.0,0.0,0.0,0.0,87.35008,38.42876851000728,90689.38673577078,39572.7199338723,156.32241,72.00986331332977,160043.41647422704,72639.17945852091,4740.80871,2099.7632296450474,4915052.747620192,2155368.4388303645,1617.21789,694.9090479715386,1677956.5521781382,714216.5264433367,2672.3265,1105.8562278109653,2755094.032455251,1124110.2097484816,0.37833,100000,0,0,0.0,0,0.0,0,0.0,6619,68.55727735342369,0,0.0,15272,156.30975642887745,0,0,0,0,0,0,0,0,24,0.2507810785676221,0,0.0,0,0.0,0,0.0,0.08345,0.2205746306134856,0.3237866986219293,0.02702,0.3095940122476752,0.6904059877523248,25.897142748409674,4.728705962958174,0.330763299922899,0.1828835774865073,0.2471858134155744,0.2391673091750192,10.89765210882218,5.210144576121724,28.75367204961252,13784.428984380698,72.74517059390341,13.52560389090742,24.05255180699837,17.409588485998032,17.757426409999578,0.5188897455666923,0.7428330522765598,0.6727272727272727,0.5589941972920697,0.1085464753587024,0.6841397849462365,0.9395973154362416,0.8405253283302064,0.7057142857142857,0.1400651465798045,0.4696818090854512,0.6768018018018018,0.6172456575682382,0.5162364696086594,0.1010802469135802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020860337005832,0.0046721394547481,0.0068472306755934,0.0092020801170065,0.0117033391629723,0.0139590290787651,0.0161574767831839,0.0181677145423369,0.0201757972199509,0.0225372294150759,0.0244497524270351,0.0263384880783685,0.0284962104462109,0.0305477998372157,0.0325270370676133,0.0346203545769369,0.0364237038878187,0.0387413472814637,0.0408647097357831,0.0429358983711454,0.0572544596231775,0.0704371310136917,0.0835947746707937,0.0963615900030504,0.1080764605354769,0.1234405917022019,0.1388222811671087,0.1525766609880749,0.1657727156167193,0.177503111454444,0.1917852487800674,0.2054962063404444,0.2190576690854103,0.2321321157106141,0.2446346265964117,0.2565468215389044,0.2685296742525658,0.2796108861898335,0.2902014184397163,0.3006743991664472,0.3101540527089434,0.3196028382080884,0.3283235625037011,0.3363321218227836,0.3439791785753378,0.351064092435315,0.3580082779380409,0.3651655325330682,0.3718492573133554,0.3782420368707411,0.3814117266128815,0.3838342083143869,0.3864745198680165,0.3893020429422999,0.3923690713668979,0.3935566060903733,0.3954097423932193,0.3972839791024605,0.3991102255354965,0.3999892161972717,0.4007096883788528,0.4027409812553534,0.4040972677826924,0.4045949979648139,0.4050438969819305,0.4067716161696068,0.4090515499624776,0.4106795807181317,0.4104594748858447,0.4105879975752677,0.4114082161361954,0.410547360458205,0.4117571803236742,0.4127920515407902,0.4122335317841367,0.4144482090997096,0.4153056462902473,0.4187838400666389,0.4225071225071225,0.4225186347587289,0.0,2.2178791733815864,66.01972633673405,244.84272461388667,389.8186530297734,no_screening,35 +100000,95710,38193,355.417406749556,8604,88.67411973670464,6664,69.04189739839097,2792,28.76397450632118,77.33810060160408,79.72159024848558,63.31256206328344,65.0752012211085,77.00067427630793,79.38164145390009,63.19064306870151,64.95544696974727,0.3374263252961498,339.94879458549576,0.1219189945819323,119.75425136122908,0.0,0.0,0.0,0.0,90.23353,39.29426581956435,93698.56859262356,40476.0587394884,157.891,72.09425518133581,161660.30717793334,72756.4861619437,4893.16543,2146.953460280649,5070220.332253683,2200915.171121774,1651.66114,704.2278542469078,1708334.1343642252,718434.5295993269,2767.57484,1130.28250802563,2852310.918399332,1147357.6948793156,0.38193,100000,0,0,0.0,0,0.0,0,0.0,6826,70.72406227144499,0,0.0,15477,158.39515202173232,0,0,0,0,0,0,0,0,23,0.2403092675791453,0,0.0,0,0.0,0,0.0,0.08604,0.2252768831984918,0.3245002324500232,0.02792,0.3066343932225767,0.6933656067774232,26.08853011073012,4.757737291718352,0.3298319327731092,0.1845738295318127,0.2519507803121248,0.2336434573829531,10.89752993344513,5.3117100506644,29.467925813165262,13955.34963235124,74.50075045602215,13.88075743760698,24.81406421614697,17.397487971602168,18.408440830666034,0.523109243697479,0.7260162601626017,0.678343949044586,0.5863840719332049,0.1125670041691483,0.6842105263157895,0.943217665615142,0.8440545808966862,0.7191977077363897,0.1366459627329192,0.4762734844082897,0.6506024096385542,0.627893175074184,0.5480132450331126,0.1068533529845246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024122762563094,0.0047474132684114,0.0067313744999695,0.008862329003801,0.0111516976831737,0.0131494515120341,0.0154111335495583,0.0176085468863309,0.0197476069704655,0.0219835353866317,0.023964806497262,0.0261125829174624,0.0281627868717611,0.0302768166089965,0.0323515757982153,0.0345055649136585,0.0366639055705114,0.0386167685172696,0.0408483651296979,0.0426697780046461,0.0571795594824074,0.071416607344751,0.0846065057712486,0.0971728475567428,0.1092174646699008,0.1255659459230736,0.1405029711375212,0.154892982642956,0.1685813518567993,0.1817323578003304,0.1974937505387466,0.2115457488388207,0.2246146477401376,0.2374667585935191,0.249683533853622,0.2624052148463482,0.2736890318832808,0.2845609926362961,0.2947638685343603,0.3039050404266299,0.3140331158824143,0.3232420273215081,0.3319623066437503,0.3402570286907376,0.3477795352232631,0.3556873648439913,0.3628012048192771,0.3705268802103946,0.377316107251834,0.3836955515284593,0.3867773055386899,0.3892959145660002,0.3917687449667274,0.3940329665550385,0.3965540389348848,0.3978145440554059,0.3991922018859223,0.4007750659630607,0.4022917418268653,0.4030035748288932,0.4043516823611556,0.405753533744774,0.4063160564809334,0.4068631883533773,0.4077304309800301,0.4098115386634469,0.4106455135942978,0.411214953271028,0.4133408945913376,0.4120639243801818,0.4136144854457941,0.4129922945205479,0.4133865753945617,0.4160673297628156,0.4140602853633185,0.4156575950125884,0.4131939105028448,0.4061927072723569,0.4014900662251656,0.3970588235294117,0.0,2.2832927204067723,66.81919533645043,251.44175083718048,401.7394180762104,no_screening,36 +100000,95664,38120,354.2711991971902,8535,88.16273624351898,6577,68.31200869710653,2740,28.370128784077604,77.27782633283482,79.68859108836594,63.2892740309558,65.07225293848992,76.94763142828619,79.35300878428133,63.17039065140607,64.9536375690984,0.3301949045486338,335.5823040846104,0.1188833795497288,118.61536939152018,0.0,0.0,0.0,0.0,89.2471,38.88645092834473,92876.26484361934,40233.00398095912,156.42104,71.65836790632872,161031.51655795283,72916.2274387059,4794.76572,2110.7534401517423,4980662.276300385,2175176.636958577,1635.7221,697.4992766470945,1695263.5787757149,714515.5195759047,2719.75274,1113.9904735188068,2816734.048335842,1141349.943694529,0.3812,100000,0,0,0.0,0,0.0,0,0.0,6732,69.93226292022077,0,0.0,15282,157.23783241344705,0,0,0,0,0,0,0,0,25,0.2613313263087473,0,0.0,0,0.0,0,0.0,0.08535,0.2238982161594963,0.3210310486233158,0.0274,0.3048388882737238,0.6951611117262761,26.137181407787143,4.757406321028359,0.3344990117074654,0.1853428614870001,0.2510263037859206,0.2291318230196138,11.042564638058836,5.252894245062795,29.26831304599905,13872.021431360856,73.6154864059301,13.861169324572018,24.59242625032731,16.891317719319137,18.270573111711624,0.525771628402007,0.7309269893355209,0.6909090909090909,0.5660252156602521,0.1175045427013931,0.691324815063887,0.903654485049834,0.8895348837209303,0.7251461988304093,0.149390243902439,0.4774066797642436,0.6742919389978214,0.6300475059382423,0.51931330472103,0.109599395313681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021482277121374,0.0043404186272919,0.0066594928227722,0.0087197780420134,0.0108652525560811,0.013162050101364,0.0157062723100458,0.0178332499208432,0.0200896053681389,0.0222493111113387,0.0243487179487179,0.0266036669919367,0.0286669753562792,0.0307752561169171,0.0328825108403881,0.0348864870455603,0.0367242469146036,0.0388860622800004,0.0413228300571297,0.0434691941151323,0.0580484032770439,0.0724504115786607,0.0855322543401137,0.098367901000726,0.1100137174211248,0.1257157978301137,0.1407014898429452,0.1543730691381698,0.1671478986204684,0.1805953646152029,0.1950756963525672,0.2087199419681041,0.2217288142972202,0.2334595434549473,0.2455746367239101,0.258075955539302,0.2698809709908663,0.2807017543859649,0.2911199891042811,0.3011850918875594,0.311108283496628,0.3201931847416797,0.328634663636794,0.3372150198481705,0.3455701743719448,0.3531394286560825,0.3607753648628316,0.3674554402427518,0.3742905014871868,0.3802214959577649,0.3831153903365833,0.3864312499135175,0.3893022662528169,0.3919011268629589,0.3946387679044497,0.3962566927432918,0.3975288145333802,0.3986150685839242,0.4007827721167606,0.4020871257862768,0.4033200355447996,0.4048341383577502,0.4063075068214988,0.4076047687861271,0.4084531018214538,0.4088095049922284,0.4097129987873188,0.4104269950423796,0.4128476583527723,0.4134767607063122,0.4175660588016375,0.4179387246941647,0.4165917554899191,0.41546875,0.4140323824209714,0.4149834741094381,0.4164032869785082,0.4200798151648813,0.4204221334854535,0.4225793806350451,0.0,1.7413279146132528,66.68031060729682,245.7108491179452,400.3733448757112,no_screening,37 +100000,95831,37988,352.70423975540274,8534,88.04040446202168,6535,67.75469315774644,2730,28.26851436382799,77.39792083527668,79.70162715931453,63.37134666233783,65.07155280985228,77.0751458706661,79.37237266112065,63.25534059530281,64.9550397148767,0.3227749646105735,329.2544981938761,0.1160060670350162,116.5130949755735,0.0,0.0,0.0,0.0,89.06898,38.99984973067081,92519.88396239212,40272.5628770135,155.29339,70.95737210146085,158895.48267262158,71650.65571989182,4803.3309,2112.1061146989628,4984086.777765024,2175783.8431185763,1620.26641,690.9582032448757,1680622.5229831685,710893.2883153101,2716.79388,1110.5981344206325,2814575.3044421948,1140425.2575115007,0.37988,100000,0,0,0.0,0,0.0,0,0.0,6713,69.59125961327754,0,0.0,15168,155.11682023562312,0,0,0,0,0,0,0,0,24,0.2504408802996942,0,0.0,0,0.0,0,0.0,0.08534,0.2246498894387701,0.3198968830560112,0.0273,0.3051356158292574,0.6948643841707426,25.98477751568844,4.734016963006575,0.3346595256312165,0.1762815608263198,0.256159143075746,0.2328997704667176,10.673760730021872,4.91482719087563,29.07151089095085,13839.009018047427,73.2755947946384,13.158633939030592,24.52143675642721,17.18892780532004,18.406596293860567,0.524407039020658,0.7413194444444444,0.6812985825331505,0.580814717477004,0.1188769414575866,0.6794871794871795,0.897887323943662,0.8560460652591171,0.747093023255814,0.1471471471471471,0.4789234118345537,0.6900921658986175,0.6266506602641057,0.532258064516129,0.1118568232662192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022677573499635,0.004661107114268,0.0067041939246412,0.0088137038879806,0.0109181847755367,0.0132095825446255,0.0153858694544639,0.0175771486865595,0.0198009685922716,0.021761371774672,0.0242198225518923,0.0263352278556332,0.0282635050444859,0.0304810908155389,0.0325702682924315,0.0346294422532884,0.0366738048684605,0.038856183408648,0.0410475270759997,0.0428569941823555,0.057130637960529,0.0718835304822566,0.0852565245200323,0.0972591650283335,0.1097455572654257,0.1255192972441569,0.1405426611389734,0.1545019157088122,0.1677686744928805,0.1805516827180884,0.1954211132768331,0.2094424314531393,0.2224722521171009,0.2343486912597581,0.2461868367515258,0.2584670231729055,0.2705517641286409,0.2811927275998156,0.2914455481471402,0.3002575107296137,0.3100130670582929,0.3187242149059757,0.32802999834394,0.3363948795938162,0.3446686158661604,0.3520802560315115,0.3595589889747244,0.3662632529048333,0.3727757776684193,0.379287146475306,0.3817947027885016,0.3844736045775907,0.38727224046334,0.3897523385429468,0.3924071346751759,0.3939287137209231,0.3954763753942718,0.3975354545753677,0.3994993828007132,0.4008073196986007,0.402118891251576,0.403072275988156,0.4043750395144465,0.4049493559520855,0.407363304981774,0.4081175757895014,0.4100607111882047,0.4127806563039723,0.4138914640233901,0.4141670698274471,0.4154710498212379,0.4162643085770086,0.4165272235808984,0.4175430396510088,0.4119636644762273,0.4101191924106057,0.4135609145004698,0.4105523495465787,0.4111604664075514,0.4206656346749226,0.0,1.7095951597517622,66.48574229640421,253.38348136346124,385.7171477855657,no_screening,38 +100000,95547,37941,353.103708122704,8428,86.74265021403079,6473,67.09786806493139,2678,27.567584539545983,77.19945181010942,79.66852642672275,63.224607941291474,65.05293033558864,76.8687882870668,79.33896302571715,63.104207940638176,64.93639077386095,0.3306635230426167,329.5634010056005,0.1204000006532979,116.53956172769142,0.0,0.0,0.0,0.0,87.74611,38.563942838377805,91194.3127466064,39719.99417917655,156.20789,71.5324588510084,159930.53680387663,72106.31595561995,4754.23862,2104.16513114819,4930185.37473704,2156604.321588525,1626.28173,697.4597215721524,1684106.879336871,712019.1087352748,2645.41736,1089.9903856918029,2725589.060881032,1103352.7282127368,0.37941,100000,0,0,0.0,0,0.0,0,0.0,6634,68.75150449516993,0,0.0,15324,156.81287743204916,0,0,0,0,0,0,0,0,16,0.1674568536950401,0,0.0,0,0.0,0,0.0,0.08428,0.2221343665164334,0.317750355956336,0.02678,0.2961715504659257,0.7038284495340743,25.88962815934874,4.732948704561028,0.346825274215974,0.1679283176270662,0.2425459601421288,0.2427004480148308,11.042904445650604,5.395102870816754,28.35225099448225,13922.018398482754,72.56083452607479,12.372580137860824,25.306489847620067,17.612145329874487,17.269619210719387,0.5362274061486173,0.7516099356025759,0.6841870824053452,0.5887969446212603,0.1229299363057324,0.6862611073137389,0.9112627986348124,0.8733205374280231,0.7386018237082067,0.121875,0.4924151696606786,0.6926952141057935,0.627030162412993,0.5491143317230274,0.1232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023719982564799,0.0046671130861792,0.0068547404338289,0.009038962095331,0.0113307814472451,0.0139350445472894,0.015982038067051,0.0180870631514408,0.0201187065083913,0.0223613687371258,0.0245131753184762,0.0266212867469383,0.0288974480443245,0.0310801192453297,0.0330174542974361,0.0349150156304991,0.0369725065596382,0.0391498648929536,0.0409670430398733,0.0430947186002568,0.0577842400912162,0.0715469149783985,0.0853691867799175,0.097875569044006,0.1098954534403112,0.1257462172221103,0.140387275242047,0.1544652101055597,0.1675577794683324,0.1799946222102715,0.1949707273866361,0.2088679040486269,0.2218100080745477,0.2341917291170629,0.2461997019374068,0.2584179761296201,0.2707050578778855,0.2821097551338353,0.2923421987430549,0.302354712297597,0.3118188465511438,0.3213141307792528,0.3296844204877354,0.3384707862466939,0.3467474520895304,0.3539367545899936,0.3618738684369342,0.3690632866105311,0.3759074705316021,0.3822819717338848,0.3860689244430006,0.3887951773912562,0.3909240176650436,0.3939741708674114,0.3961383724930081,0.3979401470882992,0.3993527714454239,0.4018533840807546,0.4034416166632181,0.4056583360380829,0.4069366570692529,0.4081697909588712,0.4083011172947024,0.409769919528505,0.4099853515625,0.4110068395101002,0.4126519128694492,0.4144003067974817,0.4146254246379403,0.4149210441508217,0.4165707180030396,0.416030534351145,0.4165444224759232,0.4145077720207253,0.4142502861503243,0.4120286164665939,0.4192643391521197,0.4233771569433032,0.4311073541842772,0.4324752475247524,0.0,2.518790873874073,64.63145213589102,243.91835588628885,393.2415063821432,no_screening,39 +100000,95672,37926,352.82005184379966,8549,88.0299356133456,6617,68.51534409231542,2749,28.325946985533907,77.33990302576841,79.73127476587217,63.32261558699434,65.08910886409465,77.0040777096271,79.39302102457633,63.19970450719772,64.96849258201854,0.3358253161413103,338.2537412958442,0.1229110797966157,120.61628207611363,0.0,0.0,0.0,0.0,88.97318,39.07078971317486,92352.5482899908,40192.6788539749,158.02816,72.49452833134123,161006.38640354545,72572.2003103435,4839.94783,2149.97835062692,5016658.61485074,2205000.575536121,1635.04601,702.064011036099,1695473.2523622375,720285.1106239012,2719.53672,1132.8493729168497,2805250.4599046744,1151187.2293294326,0.37926,100000,0,0,0.0,0,0.0,0,0.0,6766,70.04139142068735,0,0.0,15519,158.0817794129944,0,0,0,0,0,0,0,0,21,0.2090475792290325,0,0.0,1,0.0104523789614516,0,0.0,0.08549,0.2254126456784264,0.3215580769680664,0.02749,0.3083729675920805,0.6916270324079195,25.646864185696803,4.68278537944116,0.3376152334894967,0.1765150370258425,0.2464863231071482,0.2393834063775124,11.045967375135474,5.416857967828572,29.30893707212152,13863.202318283757,74.28094552227692,13.221966842925443,25.203684272692183,17.676968139948084,18.17832626671121,0.5355901465921112,0.752568493150685,0.6987466427931961,0.5833333333333334,0.1103617412630288,0.6798679867986799,0.9120521172638436,0.8600746268656716,0.7105263157894737,0.1393939393939394,0.4927479419835359,0.6957026713124274,0.6478209658421673,0.5483091787439613,0.1029976940814757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713866099463,0.0047438041660331,0.0070826272691296,0.0095173282411733,0.011795450616719,0.0140067998126997,0.0162983650670689,0.0184024659100187,0.0205575375934085,0.0225290697674418,0.024676549588895,0.0266796694554226,0.0286595711861792,0.030406971354408,0.0324907884279949,0.0345751005510923,0.036467992084788,0.0384882863993523,0.0405704834129138,0.0426665276764307,0.0578096272772856,0.0714128670889389,0.0842819821426697,0.0971047426671716,0.1091616905450171,0.124563593660735,0.1389389920424403,0.1525867575047902,0.1660738509522436,0.1785622372823196,0.1938912881929112,0.2078256541216698,0.2217025765963695,0.2347184253690541,0.2462486926845379,0.2582403580885693,0.2703559429866172,0.2818455027407899,0.2926815426872177,0.3024996275199706,0.3127474359271178,0.3210148149881808,0.329910703711599,0.3380541798078883,0.346085603869431,0.353171862667719,0.3608442412475731,0.367750646439171,0.374113038176653,0.380380023007656,0.3831243335178111,0.3862711279751638,0.3891402075263649,0.3919644671524371,0.3938082159063769,0.3953634952113022,0.3969059051737845,0.3981614431186149,0.3991833793683199,0.4010079451907384,0.4030072921181059,0.4049215222105075,0.4049517061031675,0.404750615276931,0.4067285721230979,0.4079297709118709,0.408799769186382,0.4092388183500287,0.4115381872637809,0.4123297030100872,0.4138886323760273,0.4128593775284535,0.412087912087912,0.4109864603481625,0.4111980160244181,0.4132819091237796,0.4130162703379224,0.4119365609348915,0.4169038133181559,0.4161735700197239,0.0,2.5214816673603724,67.0518081775021,254.07794167934912,392.7014907104604,no_screening,40 +100000,95791,37983,353.0811871678968,8449,87.06454677370526,6509,67.45936465847522,2732,28.175924669332197,77.331780499572,79.67387982986291,63.32970022966426,65.06328901760294,76.99415654951149,79.33179138529582,63.20677283455253,64.94098253407493,0.337623950060518,342.0884445670964,0.1229273951117377,122.306483528007,0.0,0.0,0.0,0.0,88.83552,38.78568129697446,92209.21589710932,39961.78194733783,152.1236,69.52897242877803,156266.8413525279,70542.6125607319,4776.45274,2099.0395516467606,4951793.68625445,2156863.0512038264,1657.64204,708.8829478559636,1719651.1572068357,729204.2495119704,2712.9483,1123.841651651447,2799889.0083619547,1145871.9847856837,0.37983,100000,0,0,0.0,0,0.0,0,0.0,6710,69.48460711340314,0,0.0,14886,152.86404777066738,0,0,0,0,0,0,0,0,23,0.2296666701464647,0,0.0,0,0.0,0,0.0,0.08449,0.2224416186188558,0.3233518759616522,0.02732,0.3039292510914586,0.6960707489085414,26.03447711456039,4.768676328450773,0.3398371485635274,0.1722230757412813,0.2573359963127977,0.2306037793823936,10.87231670555856,5.248784248232182,29.221068603325485,13834.61438083912,72.93348140792361,12.853434188536797,24.864373718211368,16.70294130211693,18.512732199058505,0.5241972653249347,0.7234611953612846,0.6934900542495479,0.5749500333111259,0.1217910447761194,0.6602739726027397,0.8754325259515571,0.8372093023255814,0.7097791798107256,0.1597633136094674,0.4848484848484848,0.6706730769230769,0.6497641509433962,0.5388513513513513,0.1121914734480179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024006077487971,0.0046024086614492,0.0068698184622565,0.0090210898451785,0.0111670480549199,0.0131671401949103,0.0154156726004771,0.0175078606721385,0.0198114943468749,0.0219890464247325,0.023834419977857,0.0260488325769554,0.0282353425051925,0.0302530876278571,0.0324371742607977,0.0346517253499286,0.0367650866309717,0.0385820075089713,0.0404954641339249,0.0427725081473923,0.0575909674322505,0.0708136773950608,0.0841265514927876,0.0968884311850443,0.1086663294554038,0.1232338177014531,0.1377131893874349,0.1512160883113016,0.1646280286049738,0.1774803638974315,0.192468348979416,0.2071375255568416,0.2209545148028104,0.2338084247601754,0.2452807343892747,0.2578371729663242,0.2694471105555679,0.2809005197902837,0.2927188981916366,0.3023847158270909,0.3113612438254109,0.3206871952003929,0.3293043848849323,0.3377908371312065,0.3450271775478191,0.3522839506172839,0.3597265771980434,0.3665019724999042,0.3732799729733241,0.3798604583427111,0.3829344713953865,0.3858930320462415,0.3887334294355408,0.3910190333773719,0.3934800788483364,0.3957835688637519,0.3972985041303862,0.3985642688191607,0.4003618817852835,0.4017704528688893,0.402560804932481,0.4044632351474782,0.4069976900417488,0.408839154515655,0.4096053466022732,0.4117538152291782,0.4120196475007223,0.4139865489433589,0.4150131569589645,0.4182961738499375,0.4179955497867606,0.4162648317711437,0.4162901768426487,0.4179499144501478,0.4149927919269582,0.4151331719128329,0.4140477686989315,0.4124328789756299,0.4055806087936865,0.3983967935871743,0.0,1.8079373522436597,65.26200292983025,250.6244050767477,389.70553429985085,no_screening,41 +100000,95682,38200,354.8107272005184,8457,87.17418114169854,6498,67.2644802575197,2786,28.66787901590686,77.34192318165195,79.71757142800858,63.32298576779221,65.07515525481162,77.00740053590275,79.38281410561434,63.20189757237152,64.9570294452991,0.3345226457492032,334.75732239423905,0.1210881954206826,118.12580951252016,0.0,0.0,0.0,0.0,87.86502,38.830513602484416,91175.37258836564,39928.0048519935,158.35364,72.97530761962265,162070.06542505382,73459.55000545798,4766.1257,2113.87684846598,4937100.123325181,2165158.8475010777,1606.54079,694.6690262150322,1659219.2157354571,706214.974665779,2751.77148,1128.828664100876,2834593.737589097,1144022.9391743192,0.382,100000,0,0,0.0,0,0.0,0,0.0,6658,68.88442967329279,0,0.0,15501,158.48330929537426,0,0,0,0,0,0,0,0,22,0.2299283041742438,0,0.0,0,0.0,0,0.0,0.08457,0.2213874345549738,0.3294312403925742,0.02786,0.3017512348450831,0.698248765154917,26.04429986166463,4.7169139760707095,0.3310249307479224,0.1766697445367805,0.2453062480763311,0.2469990766389658,11.048331626015685,5.375749189572807,29.54741049080718,13925.102523561667,73.153672420706,13.312221893826155,24.401287663673735,17.92303867650759,17.517124186698506,0.5366266543551862,0.7796167247386759,0.6824732682473268,0.5862928348909657,0.1148055207026348,0.7148514851485148,0.940625,0.8555347091932458,0.7317073170731707,0.1911262798634812,0.4824402970098334,0.717391304347826,0.6254635352286774,0.5428802588996764,0.0976172175249807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023186820975466,0.0045914799160762,0.0070503261409862,0.0095171349056412,0.0117356330021457,0.0140090814685101,0.0160573374385743,0.0182473553077645,0.0205634234879083,0.0227412352555701,0.0249774423755229,0.0272335181762168,0.0292828931128116,0.0313230915067025,0.0337441678021388,0.0360584877564526,0.0380049720323182,0.0398883168645686,0.0421679856077701,0.0437229076358786,0.0587246043766647,0.072195928966326,0.0855838362634479,0.0980691324248961,0.1101579563799816,0.1250833359789199,0.1400860009555661,0.1547212014698833,0.1677551762102765,0.180364292077667,0.1955061510097143,0.2096980330993848,0.2233036132249039,0.236204443471599,0.2482990201475283,0.2603149623751842,0.2718532249419332,0.2823345269463775,0.2930901414205616,0.3028111713404921,0.3125622437872015,0.3217272152343475,0.3302762077423483,0.3385383535172894,0.3464144516756888,0.3540880037511413,0.3614043887147335,0.3681829189023846,0.3759252045188936,0.3819281733582198,0.3849878279686232,0.3878191827814203,0.390521904114632,0.3933648601601485,0.3954271746258868,0.3970093285589144,0.3993165924984106,0.40091838588725,0.4023536293721934,0.4034173599008211,0.4039688833503266,0.4051211431764659,0.4058903182125931,0.4061546114364529,0.4058924971460494,0.4071024595554386,0.4082278481012658,0.4078922285060685,0.4075715146574031,0.4097801668806162,0.4104518736223365,0.4097199871258448,0.4087796762014462,0.4085168643154166,0.4057599087539207,0.4039309112567004,0.400796080832823,0.3952217047985422,0.3986168741355463,0.4038534189648659,0.0,2.4783490298910964,67.16110974541424,247.08890232043984,386.1525232587115,no_screening,42 +100000,95737,38013,353.05054472147657,8502,87.38523245975955,6541,67.6854298755967,2720,28.02469264756573,77.32392886815877,79.68754277653515,63.31606620966248,65.06494736569266,76.99889847221877,79.36038550086744,63.19791192957359,64.94832918520456,0.3250303959400042,327.1572756677159,0.1181542800888877,116.61818048810346,0.0,0.0,0.0,0.0,88.60553,38.72887749896671,91903.433364321,39805.86136913284,158.35571,72.51858103263078,161561.9039660737,72719.5983952016,4813.20948,2125.7328315513582,4986489.768845901,2179344.5183694474,1644.03951,703.9221970915936,1702892.7269498731,720913.645812582,2692.35286,1106.5282373743269,2776514.7852972206,1125557.6693334975,0.38013,100000,0,0,0.0,0,0.0,0,0.0,6701,69.33578449293377,0,0.0,15489,157.89088858017277,0,0,0,0,0,0,0,0,22,0.229796212540606,0,0.0,0,0.0,0,0.0,0.08502,0.2236603267303291,0.3199247235944483,0.0272,0.2989252127183162,0.7010747872816838,25.991996785729164,4.709636854289286,0.3299189726341538,0.1794832594404525,0.2462926158079804,0.2443051521174132,11.212262775988815,5.535986334898059,28.748250907121164,13860.302564323338,73.08569758299917,13.412583115983436,24.2667315573255,17.56979490505568,17.836588004634553,0.5355450236966824,0.762350936967632,0.6816496756255792,0.5794743429286608,0.1309745499689633,0.6924643584521385,0.9303135888501742,0.8431001890359168,0.7623456790123457,0.1801801801801801,0.4899368587213891,0.7080045095828635,0.629220380601596,0.532967032967033,0.1181533646322378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023803012347179,0.0046740816595524,0.006992510199525,0.009469812432685,0.0114436261545347,0.0137067209775967,0.0155271904247293,0.0180060632662018,0.0202844319029946,0.0224326814784478,0.0246060469360345,0.0267459290745189,0.0290431689438567,0.0312100861109966,0.0330722636700409,0.0348858843959315,0.0369361437671552,0.0390766899500773,0.0409080037850822,0.0431620948670132,0.0576192265931679,0.0712245645237223,0.0849682797672101,0.0971408742468375,0.1097542971633449,0.1246086147076246,0.1390100270571383,0.1529304029304029,0.1656803469566518,0.1789681348372432,0.193884911449642,0.208362173386399,0.22184048012525,0.2346084027732213,0.2465076885848164,0.2586730172795746,0.2701396407960976,0.2810122022603449,0.2912615845902235,0.3018891730996432,0.3115884903429247,0.3208299144297268,0.3296163610050061,0.3380609830789369,0.3461828899931793,0.3532732213438735,0.3601330571769284,0.3661725463158029,0.3730928183401346,0.3799687301250795,0.382615045504334,0.3854389721627409,0.3879783740942029,0.3912285797269823,0.3940135851309995,0.3962148117399259,0.3975874892724325,0.3990507424314837,0.4013561067719509,0.4029470359136349,0.4040592492085029,0.4048619268520915,0.405562237555654,0.4066409684182052,0.4071934763615183,0.4075498537973183,0.4092099582673766,0.4097769552315007,0.4105943706243749,0.4111012648030291,0.4124335567367691,0.4119866336100032,0.4102711690969557,0.41118675537676,0.413773203808791,0.4156143759106362,0.4154842689697717,0.4149577804583836,0.411032990805841,0.4160919540229885,0.0,2.532565120623553,65.0762125479323,243.48116594341056,399.3123117175172,no_screening,43 +100000,95784,38186,354.8296166374342,8521,87.770400066817,6614,68.36214816670842,2763,28.38678693727553,77.4066300966336,79.74436619709586,63.35719594835807,65.08701015103178,77.0736682781012,79.41294971150069,63.23622082840892,64.97028644152365,0.3329618185324108,331.41648559517023,0.1209751199491506,116.72370950812194,0.0,0.0,0.0,0.0,90.14229,39.17110926216194,93435.70951307108,40229.735275823856,153.95901,70.09869914297634,156476.77065063058,69901.3496468916,4891.53465,2141.9555146581474,5060161.143823603,2190263.7071238137,1665.82385,710.9820217191589,1720824.5740415936,724161.375770481,2736.30702,1127.34348371853,2813760.022550739,1139265.7767654131,0.38186,100000,0,0,0.0,0,0.0,0,0.0,6791,70.19961580222166,0,0.0,15109,153.532949135555,0,0,0,0,0,0,0,0,21,0.2088031403992316,0,0.0,0,0.0,0,0.0,0.08521,0.2231446079715078,0.3242577162304894,0.02763,0.3066710919349485,0.6933289080650514,25.982638196575117,4.852334324209484,0.3215905654671908,0.1762927124281826,0.2549138191714545,0.247202902933172,10.867309929864737,5.142807984570857,29.400314540881023,13926.542214965431,73.64249425130572,13.151739276690607,23.883584816880344,18.14826101369593,18.45890914403884,0.5279709706682794,0.7401372212692967,0.6972261401034321,0.581651376146789,0.1156583629893238,0.6788732394366197,0.903114186851211,0.8508771929824561,0.7430167597765364,0.1545741324921135,0.4867154408933384,0.6864310148232611,0.6552962298025135,0.5364134690681285,0.1066471877282688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595091900216,0.004218125773154,0.0065860910686922,0.0089918006969915,0.0110759654600746,0.01344168143215,0.0156603658163577,0.01794518450467,0.020125516169917,0.0225449261124073,0.0246992026564453,0.0269044491873255,0.0288392361610721,0.0307906114885731,0.0327605224365252,0.0346034696406443,0.0368611628388164,0.038937612738695,0.0409766233766233,0.0430310160650514,0.0585086401202103,0.0724251171352075,0.085409700311324,0.0984392243417941,0.1107001738580686,0.1259748494135052,0.1408431295646551,0.1547491201395017,0.1679168578409927,0.1807178586347618,0.1957157919652271,0.2101672559004465,0.2234597413886776,0.2366989909579347,0.248747638089379,0.2610740408768494,0.2724575609538468,0.2834543860043624,0.2937099427145369,0.3034730730914129,0.3124660149245097,0.3213162295216156,0.3302986894600386,0.3390547651296312,0.3466494845360824,0.3540255413659078,0.3609000877522878,0.3677343730091991,0.3741113590368948,0.3807445035320263,0.3837154321071047,0.3868995874211753,0.3898784280463669,0.3923966174956123,0.3953217943557404,0.3970929428575818,0.3988257695969534,0.4000789564588028,0.4016207067512352,0.4030845664450639,0.404096834264432,0.4054547257760587,0.4067593429935435,0.4082572931181732,0.4089151969074656,0.4094455207078905,0.4102497994729002,0.4117665645044077,0.4132076803614288,0.413495707726093,0.4164182526943362,0.414602903501281,0.4182956917821218,0.4212132773750477,0.4229649798141019,0.419758922240605,0.4227139099489401,0.4203045685279188,0.4223463687150838,0.4300822561692127,0.0,2.693805269541626,62.59518442191473,255.9463628771067,400.00411335661454,no_screening,44 +100000,95690,38186,354.227191974083,8485,87.50130630159892,6556,67.94858396906677,2775,28.560978158637266,77.29491858535671,79.69832243320388,63.29396199958445,65.07439109937651,76.95552055749383,79.3580123450223,63.16948815032229,64.95304928509152,0.3393980278628845,340.3100881815817,0.1244738492621664,121.34181428498891,0.0,0.0,0.0,0.0,88.61679,38.76443084280636,92076.60152576028,39978.82834445225,154.20218,70.62776167207839,158229.88818058313,71487.25199510437,4824.83809,2133.4794357036158,4998807.137631937,2186226.2469470324,1638.81469,710.3566584914817,1693530.2121433795,723253.243276708,2752.38246,1140.2875577274297,2834208.255826105,1155176.4636473015,0.38186,100000,0,0,0.0,0,0.0,0,0.0,6728,69.74605496917128,0,0.0,15176,155.7111505904483,0,0,0,0,0,0,0,0,16,0.1672066046608841,0,0.0,0,0.0,0,0.0,0.08485,0.2222018540826481,0.3270477312905127,0.02775,0.305490327630549,0.6945096723694509,26.170265719996717,4.713496812308016,0.3270286760219646,0.1761744966442953,0.2501525320317266,0.2466442953020134,10.700068583168909,5.1736817686718535,29.56648136089252,13948.378888586723,73.56851434469542,13.275580423534748,24.12016118934993,18.015151946185775,18.157620785624957,0.5269981696156193,0.7411255411255411,0.6875,0.5689548546691404,0.125,0.6865473823724321,0.9250814332247556,0.8778004073319755,0.7131147540983607,0.1739130434782608,0.4792946304735486,0.6745283018867925,0.6309739866908651,0.5267785771382894,0.1119691119691119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026052490192301,0.0047591504561275,0.0072106839993906,0.0093945401860606,0.0117674603255392,0.0139431064181097,0.0161231070655945,0.0183384074702192,0.0206346932929574,0.0226595232485479,0.0248445930697741,0.0270281376164696,0.0291829594566783,0.0314957383874924,0.0335483870967741,0.0356795664674126,0.03776283200514,0.0396515563677139,0.0418526263225242,0.0439663529191031,0.0585715927252974,0.073697545858112,0.0869697542136305,0.0996906370351663,0.1115765261980628,0.1269417989417989,0.1414103884247513,0.1551485464806729,0.1684031673772962,0.1808183018037835,0.1953135100193923,0.2095821341239098,0.2236490159834728,0.2358889702747318,0.2480831637423684,0.2605950508429517,0.2723873516904222,0.2826116327771397,0.2929567223023872,0.3031255737102992,0.3127607788595271,0.322449888119589,0.3312950322335988,0.3394250858528854,0.3467567238651576,0.3545632075938102,0.3618369857167959,0.3688675153710743,0.375501044247558,0.3817066398709575,0.3844565598769264,0.3872017652737553,0.3900536874823396,0.392512795232779,0.3951333770961389,0.3965748255840816,0.3982590118457344,0.3996263165726946,0.4012321247268159,0.4029856121585363,0.4038268637507807,0.4050544401158725,0.4066776831490191,0.407867354325009,0.4079914081378603,0.4088190143454555,0.409561060408518,0.4104179324017523,0.4118233618233618,0.4130706817906592,0.4141071511546861,0.4132106118029237,0.4145137508814667,0.4179799704991848,0.4162021910436286,0.4157453529340298,0.4159937888198757,0.411873840445269,0.413344407530454,0.41817481709665,0.0,2.238926890769372,67.07035603842293,246.980166988556,393.7892807239828,no_screening,45 +100000,95737,38015,352.2775938247491,8603,88.72222860545035,6661,69.16865997472242,2747,28.400722813541265,77.3593554540744,79.73021762847353,63.33143217950936,65.08375363504331,77.02710361639834,79.39362698551223,63.21071802455093,64.96373890644884,0.3322518376760683,336.5906429612977,0.1207141549584349,120.01472859446947,0.0,0.0,0.0,0.0,90.17612,39.61367129295662,93785.35989220468,40971.45439376272,160.7482,73.28425863114887,165892.9149649561,74924.05175785745,4899.42618,2160.3280093252447,5089771.969040182,2228706.5808676323,1652.58562,703.8481544227768,1718556.7439965738,727575.3873222774,2721.95134,1120.9448459188088,2816330.7812026697,1147165.7353294562,0.38015,100000,0,0,0.0,0,0.0,0,0.0,6799,70.5892183795189,0,0.0,15817,163.12397505666567,0,0,0,0,0,0,0,0,16,0.1671245182113498,0,0.0,0,0.0,0,0.0,0.08603,0.2263054057608838,0.3193072184121818,0.02747,0.3026315789473684,0.6973684210526315,25.98599824447816,4.757857885973207,0.3274283140669569,0.1797027473352349,0.2502627233148176,0.2426062152829905,11.068101614899698,5.356456856033103,29.257515613629103,13929.391069562584,74.81002552747276,13.826819704199332,24.55425220533527,18.07030812388004,18.358645494058123,0.5344542861432218,0.772765246449457,0.6969280146721687,0.5810643564356436,0.1055788842231553,0.6832460732984293,0.9153094462540716,0.8714555765595463,0.703601108033241,0.1450151057401812,0.4901616988116111,0.7235955056179775,0.6410411622276029,0.545816733067729,0.0958083832335329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022282542640683,0.0043893884253956,0.0068698184622565,0.0092116755702707,0.0117751136328971,0.0138760218677145,0.0160966410112645,0.0185064205949002,0.0208746498742614,0.0228503567808843,0.0248269497000461,0.0270955946548341,0.0289315293996604,0.0312902461389464,0.0334337722375861,0.035384233703405,0.0374473283707254,0.0398701419932996,0.0419469192144958,0.0439981667430523,0.0583523907981161,0.0722075692874487,0.0855449491240952,0.0987476472381993,0.1109213037655668,0.1263354983392218,0.1412882003395585,0.1554152604626899,0.1687896727863386,0.1818601307049266,0.1979203706696837,0.2114464482885535,0.2247342595715513,0.2371321316391415,0.2488075173226698,0.2609076592063527,0.2726368937244476,0.2831067698955707,0.2942652167003428,0.3040398831012549,0.3138528138528138,0.3230277933745087,0.3313301471632044,0.3393466776871384,0.3468956471045472,0.3542935331969133,0.3613853942158287,0.3679437538210719,0.3748330112449903,0.3807711620285948,0.3841633533256958,0.3867966143751206,0.389564629110231,0.3916473988439306,0.3935855287624771,0.3949067046900633,0.396424099288307,0.3975986842105263,0.3994618772600298,0.3996991242366173,0.4013488818974774,0.4013368611613981,0.4035091427967445,0.4029357881166173,0.4036503268768075,0.4058868481382908,0.4058447172747709,0.4078561407983676,0.4071649649578426,0.4072109007596768,0.4082246276251272,0.4094369162662635,0.4107039350808269,0.4138755980861244,0.4108010286693971,0.4084523952455277,0.4102205653929792,0.4100675260896255,0.4030058446980239,0.4032570763861962,0.0,1.5805233483765364,68.76913462998269,258.6528175820863,390.6577530127911,no_screening,46 +100000,95877,38288,356.40456000917845,8526,87.60182316926897,6566,67.80562595825903,2762,28.40097207880931,77.4394230829848,79.72050600753708,63.39129033748679,65.07769772390083,77.10735388303327,79.38708583015458,63.27106245226744,64.95996581609678,0.3320691999515333,333.4201773825072,0.120227885219343,117.73190780404263,0.0,0.0,0.0,0.0,89.49903,39.06967650967134,92674.51004933404,40088.21852946708,156.74591,71.68359328354668,159704.90315717013,71800.5693469455,4803.24733,2111.2469671441595,4965440.001251604,2158539.568335921,1628.83979,695.1607887225555,1683074.4078350388,710003.9522942615,2726.8825,1118.669225180373,2806076.055779801,1133742.4600881902,0.38288,100000,0,0,0.0,0,0.0,0,0.0,6748,69.66217132367512,0,0.0,15392,156.64862271451966,0,0,0,0,0,0,0,0,20,0.2086006028557422,0,0.0,0,0.0,0,0.0,0.08526,0.2226807354784789,0.3239502697630776,0.02762,0.3016261973713522,0.6983738026286478,26.172671253003045,4.7521286390926045,0.3384099908620164,0.174383186110265,0.243527261650929,0.2436795613767895,11.199763688504738,5.508840640912756,29.15710666026157,13890.113190266262,73.11306263078112,12.925285817409112,24.97795940731912,17.7670303111239,17.44278709492899,0.5283277490100518,0.7344978165938865,0.6804680468046804,0.5825,0.1150719199499687,0.6835443037974683,0.9293286219081272,0.853309481216458,0.7062314540059347,0.1490683229813664,0.482329713721619,0.6705336426914154,0.6223692122669874,0.5494853523357086,0.1064996084573218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020854423972464,0.0044286351291094,0.0066545613163046,0.0089045477159885,0.0110888633660951,0.0131661952341222,0.0153501400560224,0.0174826601387188,0.0197274324710882,0.0218601035209394,0.0238736846419459,0.025938314419979,0.0280329654520418,0.0300278970177985,0.0320628473045558,0.0341583800584451,0.0364580639154139,0.0386384830587503,0.0405817864706615,0.0421521304926764,0.0567461641094062,0.0710636030218488,0.0844433274692133,0.0968449787390414,0.1094373388073056,0.1248376709074592,0.1395508950323059,0.1533573485500547,0.1664463444276241,0.1794062245815317,0.1946072054444002,0.2093206694976606,0.2227304332710442,0.2348589163552116,0.2470583060241493,0.2588886429045827,0.2705646285045426,0.2814413645097136,0.2924004442329049,0.302382232184723,0.312430671103716,0.3216927013354207,0.3307034456654167,0.3392170255599094,0.34681652490887,0.354435841798994,0.3624001402419173,0.3693331467179011,0.3765671951093151,0.382910223254341,0.385470719051149,0.3881821686216201,0.3907637655417407,0.3928137124326828,0.3954132126858452,0.3973107386258979,0.398304277412594,0.3995523959978936,0.4005999828576326,0.4024114949118532,0.4032637542585029,0.4050504649129778,0.4071648203529758,0.4081178822525214,0.4100577002003814,0.4115007086242192,0.4121416719116553,0.4122438670160704,0.4123301175973523,0.4146331738437002,0.4158420377496793,0.4151145939563094,0.4146108242493784,0.4154548267326732,0.4117024347993456,0.4138976473441668,0.4164954969189445,0.4172782553994548,0.4169982944855031,0.4155642023346304,0.0,2.648460420811013,66.30193327539305,238.28184160148467,401.00749573453686,no_screening,47 +100000,95750,37903,352.4073107049608,8389,86.41253263707571,6446,66.87206266318537,2666,27.5822454308094,77.34647984393533,79.70009368140047,63.33814763576003,65.07574491264191,77.02424387475766,79.37109939149686,63.22085202449402,64.95786456571422,0.3222359691776688,328.9942899036191,0.1172956112660088,117.88034692769143,0.0,0.0,0.0,0.0,87.62901,38.47499076070367,91093.40992167105,39757.6195934242,158.03207,72.48327751199352,161932.49086161875,73298.75829890565,4684.87323,2076.735253179149,4863560.522193212,2139656.629952112,1603.53039,688.600979559374,1664284.3342036554,708744.4799575709,2639.40682,1095.513635997061,2732294.6005221936,1123798.445650007,0.37903,100000,0,0,0.0,0,0.0,0,0.0,6600,68.48041775456919,0,0.0,15376,157.45169712793734,0,0,0,0,0,0,0,0,32,0.3342036553524804,0,0.0,0,0.0,0,0.0,0.08389,0.2213281270611825,0.3177971152699964,0.02666,0.3039503386004514,0.6960496613995485,25.968002807161817,4.723202492626192,0.3400558485882718,0.1808873720136518,0.2489916227117592,0.2300651566863171,10.8905030459253,5.262661339405626,28.536092079286885,13854.49900291181,72.41926057524593,13.31940400688062,24.75781400173117,16.553358488080555,17.788684078553587,0.537077257213776,0.741852487135506,0.7011861313868614,0.5839514497639919,0.1208722741433021,0.6790040376850606,0.919732441471572,0.8667917448405253,0.7125,0.1317365269461078,0.4945564516129032,0.6805074971164936,0.6479807112718505,0.5485812553740327,0.1180173092053501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024204982783066,0.0046528601404981,0.0067281639114683,0.0091830722659027,0.0112372119511054,0.0133165010588043,0.0155963302752293,0.0177487012523091,0.0198607803252547,0.0217972213405956,0.0238727334228518,0.026112126126496,0.0282524211954845,0.0303220689868267,0.0323861994965127,0.0344285847174706,0.0364959725011906,0.0385429419210258,0.0403642449505712,0.0425498671944169,0.0576720294833112,0.0715997697420063,0.0852313857968673,0.097297581493165,0.1095730100158144,0.124816306680622,0.1389734505764926,0.152276863154086,0.1656827474298891,0.1785258780532244,0.1932476368882285,0.2068394925537782,0.2200580415856004,0.2331307788148374,0.2454271644022336,0.2585741171260932,0.2701602560528164,0.2813547501743493,0.2914567161468973,0.3016658646685456,0.3114367057843205,0.3213211807789959,0.330075811419095,0.3387243845083265,0.346246914480964,0.3536583862417555,0.3608066637439719,0.3678916975792573,0.3740260752129649,0.3803890432711393,0.383710566119274,0.3863363466979505,0.3886407327829922,0.3911207834602829,0.3932995075361886,0.3955944152825454,0.3973421504419152,0.3992877516363576,0.4010893657966631,0.4028665852431927,0.405035360678925,0.4058158512798057,0.4069585448392555,0.407426648295801,0.4091726181800515,0.4092649816443494,0.4092694195784002,0.4098928696315605,0.410936058477042,0.4129781694372121,0.4140012904415153,0.4148690085534456,0.4149984111852558,0.4170341146437689,0.4213860625839892,0.4201334141904184,0.4199343852523043,0.4171702438007918,0.4145922746781116,0.4131930392553622,0.0,1.7896538707933278,66.54421562693723,247.18241642011697,381.5689254503883,no_screening,48 +100000,95729,38072,353.9993105537507,8398,86.41059657992876,6494,67.09565544401383,2671,27.51517304056242,77.41222784566315,79.77068163291467,63.350809200748486,65.0908189612126,77.09194183695311,79.4473086633661,63.23503355647373,64.97640019743982,0.3202860087100418,323.3729695485721,0.1157756442747626,114.4187637727896,0.0,0.0,0.0,0.0,87.82665,38.40789359424613,90996.3438456476,39372.74346775389,157.80529,72.69797879915976,159716.407776118,71971.14152473006,4772.42381,2101.7888979451327,4939092.302228165,2149305.600126537,1621.09282,687.8739052905488,1677745.6465647817,702890.6760652979,2659.85912,1088.276055981417,2743662.3593686344,1107973.1731041728,0.38072,100000,0,0,0.0,0,0.0,0,0.0,6649,68.69391720377315,0,0.0,15407,155.91931389652038,0,0,0,0,0,0,0,0,24,0.2507077270210699,0,0.0,0,0.0,0,0.0,0.08398,0.2205820550535827,0.3180519171231245,0.02671,0.3050158156348848,0.6949841843651152,26.04573880708774,4.818305329355133,0.3347705574376347,0.1783184477979673,0.2533107483831229,0.233600246381275,11.008298711678666,5.143021907154101,28.230365427198844,13863.268496004946,72.46758060975348,13.089883630915953,24.55953678747108,16.737906028226302,18.080254163140143,0.5312596242685556,0.7443868739205527,0.7115915363385464,0.5603164139749506,0.1161094224924012,0.6865879082696317,0.9090909090909092,0.8662674650698603,0.7308868501529052,0.1155115511551155,0.4870425321463897,0.6847058823529412,0.6652719665271967,0.5134453781512605,0.1162444113263785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022483289447032,0.0045304819338164,0.0068680761270949,0.0091498090827849,0.011346190994215,0.0134677049931287,0.0158794871272193,0.0178770037651908,0.0202859449571286,0.0224053224155578,0.0243707469049766,0.0262790506692945,0.028692737889629,0.0307090263117244,0.0328641888684813,0.0348954995555371,0.0368621603711066,0.039072064407694,0.0409419348131205,0.0428876503984582,0.0580454550199922,0.0710982296069978,0.0844417404439222,0.0973554657914668,0.1091438580201321,0.1257976781348883,0.1411226558271335,0.1547094273728146,0.1675464842915152,0.179700159900411,0.1948532186250094,0.2091300864066526,0.2220710374780933,0.234779562299515,0.2475158084914182,0.2595394444937439,0.270600464991505,0.2811454449188342,0.291434283312698,0.3016697630679603,0.3114833866258862,0.3204613313037878,0.3291220176425315,0.3370128002301165,0.3447471384480789,0.3528157469833483,0.3595024776014816,0.3670184361093452,0.3743792033109157,0.3809699476950238,0.3839763409060358,0.3875075553601846,0.389786156443444,0.3915529564652372,0.3937457370777854,0.3945771623335932,0.3962374515848549,0.3981085378046581,0.3994124780106232,0.4008962365207456,0.4022404975553099,0.4036447009526821,0.4040058006347071,0.4050031381691025,0.4052371183781827,0.4060669456066945,0.4087128033616328,0.409060773480663,0.4105225988700565,0.411113324039036,0.4126366838998948,0.4119596002778817,0.4109901240820461,0.4098661567877629,0.4090224147673761,0.4069253731343283,0.4066809684339564,0.4113821138211382,0.4148906725712704,0.4135396518375241,0.0,2.8942269582896856,63.05773857719644,251.950509809664,385.8117779089891,no_screening,49 +100000,95732,38116,352.86006768896505,8469,87.09731333305479,6592,68.3157147035474,2739,28.235072911878994,77.32373385663094,79.693713721338,63.321321634088775,65.07515519748016,76.99621077702307,79.36328193634317,63.20208478821037,64.95710109292531,0.3275230796078716,330.43178499482906,0.1192368458784045,118.05410455484378,0.0,0.0,0.0,0.0,89.51714,39.44758539893068,92959.00012534994,40657.2049042438,162.4661,74.4941001733765,166140.7679772699,74919.15467946758,4767.86918,2120.820237030053,4944046.703296703,2179397.000409604,1652.55082,714.3645371678218,1710656.4053816905,730643.1571134219,2700.87888,1112.6761808208162,2786696.0890820203,1133579.7892946915,0.38116,100000,0,0,0.0,0,0.0,0,0.0,6739,69.80946809844149,0,0.0,15883,162.44307023774704,0,0,0,0,0,0,0,0,27,0.271591526344378,0,0.0,0,0.0,0,0.0,0.08469,0.2221901563647812,0.3234148069429685,0.02739,0.2985224983210208,0.7014775016789792,26.101923661020034,4.709211972473405,0.3382888349514563,0.1827973300970873,0.2368021844660194,0.2421116504854369,11.265295415106966,5.571863857336422,29.056697862319965,13970.667538526335,74.3130202810783,13.913239727446456,25.23410241761845,17.846699980618823,17.31897815539458,0.5403519417475728,0.7676348547717843,0.6928251121076233,0.5733082706766918,0.1133888532991672,0.6821499668214996,0.909657320872274,0.8562992125984252,0.7259475218658892,0.1552238805970149,0.4983284169124877,0.7160633484162896,0.6445993031358885,0.5315243415802074,0.1019575856443719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021479229989868,0.0047866784305373,0.0073284612261469,0.0095421010913968,0.0116697867491453,0.0138129144638327,0.0161444947578835,0.0183938802814743,0.0204615872301698,0.0228890368170413,0.0251971572437981,0.0275649584060799,0.0296895253379421,0.0320476489803489,0.0340100946502482,0.0359033205144109,0.0378433240813621,0.0401618509104113,0.042327327171212,0.0444073977598332,0.0588855594650184,0.0726836977111699,0.08584046659953,0.0983832455005417,0.1099159522077045,0.1255009357850549,0.1399123691106419,0.1539009959989784,0.1671508523091383,0.1801745769618461,0.1953438788805496,0.2102045894686732,0.2233568228283091,0.2366398022898509,0.2487759794914676,0.2613338059213805,0.2730365149115567,0.2844924474015465,0.2951065133056557,0.3052232740759395,0.3139068406996774,0.3227405588682334,0.3313890893602925,0.3400786419871487,0.3481631809840926,0.3557460983282956,0.3622269291989923,0.3692705876353065,0.3754122198852276,0.3816789855743167,0.3849310261047971,0.388029821897004,0.3909311992760795,0.3938430262107021,0.3960125448028674,0.3982604679802956,0.3996121196706196,0.4010619352285469,0.4032105922101977,0.4045863164127685,0.4045325138105922,0.4059873321913715,0.4067236853247523,0.4073680401646388,0.4073073365464194,0.4074563373583111,0.4087540528022232,0.4100710218184145,0.4111003895500518,0.412582593538449,0.4135362845040264,0.4167529001688361,0.4182006071174837,0.4194255302496674,0.420956763493433,0.4215698168142666,0.4226708074534162,0.4264462809917355,0.4266554903604359,0.4304194433555468,0.0,2.1047497513233595,67.06608321996858,258.9248579961306,388.25875605537857,no_screening,50 +100000,95767,37879,351.59292867062766,8530,87.69200246431443,6624,68.45781949941004,2734,28.089007695761588,77.38153749659537,79.723909157716,63.350937847410606,65.08326411581552,77.04904648256479,79.3902457258642,63.23016466694215,64.96505094701807,0.3324910140305803,333.6634318517895,0.1207731804684542,118.21316879745324,0.0,0.0,0.0,0.0,90.31913,39.53708239597984,93593.3463510395,40579.27831995566,160.32255,73.30121705050394,163102.15418672402,73210.80989400097,4839.92079,2139.2703496214317,5007483.151816388,2188355.7043573465,1660.67584,707.4794683556047,1715823.018367496,720753.380389729,2711.81386,1118.5618353782208,2789165.8504495285,1132288.7840274498,0.37879,100000,0,0,0.0,0,0.0,0,0.0,6811,70.35826537324967,0,0.0,15724,159.8045255672622,0,0,0,0,0,0,0,0,19,0.1983981956206209,0,0.0,0,0.0,0,0.0,0.0853,0.2251907389318619,0.3205158264947245,0.02734,0.3061065299754847,0.6938934700245153,25.79141699563305,4.748732004450009,0.3346920289855072,0.1784420289855072,0.2484903381642512,0.2383756038647343,10.954494384439116,5.253988542110792,29.02860637317653,13853.548667257648,74.24254453847617,13.387412472516056,25.21368860802205,17.562286189314932,18.079157268623145,0.5384963768115942,0.7419627749576988,0.7054578258908435,0.5915136162127929,0.1166464155528554,0.6822177146720757,0.9090909090909092,0.8656987295825771,0.7352941176470589,0.1398809523809523,0.4971817298347911,0.6886160714285714,0.6524609843937575,0.5569520816967792,0.1106870229007633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022686301120136,0.0045309870861799,0.0065946998904265,0.0088154941450087,0.0110925839315126,0.0133452772377006,0.0157275655400171,0.0180446830443258,0.0201209916409491,0.0224896146683856,0.0246861710303837,0.0266985557528664,0.0288510970819881,0.0311772821811741,0.0332026817947395,0.0350371449531426,0.0372125752840615,0.039038447584198,0.0410758251005079,0.0431043458342877,0.0570414818679885,0.0709631535460659,0.0848036903077003,0.0976335091738298,0.1099050489509015,0.1248256182625237,0.1394370376650628,0.1530135981372997,0.1669139070020597,0.1794998231264806,0.1945335543738024,0.2081336866583743,0.2215760869565217,0.2343741461655318,0.2462210389667539,0.2578841298666784,0.2690939106961594,0.2801205496705126,0.2904257853714986,0.3005448842693285,0.3102626402869374,0.3194483436271757,0.3278715696256482,0.3359786139848236,0.3438263427203228,0.3519860936459797,0.3596851300277826,0.3665783641967447,0.373974360636188,0.3800760918386219,0.3834321919654893,0.3861225164650445,0.389041830785086,0.3918525281509499,0.3940013124925426,0.3960327581703363,0.3980032379924447,0.4001974821031844,0.4011372978898328,0.402472675147823,0.4033845980083956,0.4049686972075921,0.4069590889919865,0.4076940433212996,0.4086634023367431,0.410011574074074,0.4110274248260794,0.4128574145692005,0.413664991861864,0.4144151366952617,0.4141698165391352,0.4150353233025939,0.4147796523189428,0.4168286803017342,0.4196746558860333,0.4235892467909906,0.421852955008622,0.4195948739148408,0.4153191489361702,0.4143473147785182,0.0,2.73183952511022,65.1064978280953,259.00102043658467,392.8878295997624,no_screening,51 +100000,95859,38170,354.0408308035761,8584,88.44239977466906,6659,68.90328503322588,2789,28.750560719389934,77.37299817448195,79.6729348269853,63.35320242165369,65.05634691848825,77.03307244906823,79.33028596916826,63.23063155250696,64.93521638035644,0.3399257254137211,342.64885781703924,0.1225708691467346,121.1305381318084,0.0,0.0,0.0,0.0,90.35581,39.8056468752288,93676.15977633816,40944.69009260122,161.9394,74.2698926597141,164996.9538593142,74552.71684501648,4871.10238,2157.6826746831853,5041092.500443359,2210817.592411329,1607.28412,692.7770438388853,1661640.305031348,707767.7318526362,2757.58546,1128.7879655916392,2844343.900937836,1149738.9803360726,0.3817,100000,0,0,0.0,0,0.0,0,0.0,6851,70.8644988994252,0,0.0,15897,161.94619180254332,0,0,0,0,0,0,0,0,17,0.1773438070499379,0,0.0,0,0.0,0,0.0,0.08584,0.2248886560125753,0.3249068033550792,0.02789,0.2997229916897507,0.7002770083102493,25.83095662198016,4.720452131963016,0.344646343294789,0.1735996395855233,0.2440306352305151,0.2377233818891725,10.931928153497374,5.304140753774628,29.624919021190053,13928.577207970524,74.85700809963129,13.266656000405805,25.949373543827267,17.672722910867535,17.968255644530675,0.5376182610001502,0.7309688581314879,0.7002178649237473,0.6045483259633607,0.1052307692307692,0.6869009584664537,0.9047619047619048,0.8650088809946714,0.7277628032345014,0.1543026706231454,0.4917550058892815,0.6716937354988399,0.6466512702078522,0.5668316831683168,0.092391304347826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022685841604213,0.0046925517143523,0.007364352880314,0.0095749649696403,0.0117926925970355,0.0139250814332247,0.0159102259639395,0.0178693526824439,0.0201187301392677,0.022244050177011,0.0244966958659904,0.0265015492582028,0.0287655183754008,0.0310856295869316,0.0330711421296248,0.0353587508777727,0.0372757557574127,0.0393032557561187,0.0413187954309449,0.0433950289751032,0.0575256764506542,0.0714330498025037,0.0860055102190469,0.0988333630855498,0.1102920269174468,0.1256126415413216,0.1408485028290491,0.1541969638984564,0.1676271584384538,0.1803484186166109,0.1957087825768825,0.2096690516850046,0.2232740631249456,0.2358221357270153,0.2482530949105914,0.2600358899375249,0.2714582217461168,0.2833348338885387,0.2934540832538926,0.3036704394446226,0.3127292927656324,0.3218211831368463,0.3300748850656429,0.3386067599011682,0.346457745794029,0.3540240095742187,0.3617976400958005,0.3693593811726625,0.375254602301475,0.3818821599597852,0.3847254854303384,0.3871800892228222,0.3896679071215315,0.3921289573046762,0.3955571479756359,0.3971246940754537,0.3985478400713341,0.4003169519784736,0.401436154678669,0.4034485238591823,0.4046738843411671,0.4058095086405989,0.4071063632141198,0.4090909090909091,0.4106035652005425,0.4118342884180642,0.4128686327077748,0.4138666836523456,0.4155400597694607,0.4144921718185467,0.4132941338600762,0.41543425652057,0.4141530579570925,0.4121805328983143,0.4126648060821865,0.4130330040953987,0.4102443609022556,0.4023879346459991,0.3969160479725871,0.4046401887534408,0.0,2.1397638540337014,69.70486909246816,249.7389810975663,397.0417110893346,no_screening,52 +100000,95785,38306,355.83859685754555,8677,89.38769118337945,6682,69.10267787231821,2797,28.81453254684972,77.39816222968327,79.72802112155438,63.35848721039546,65.07977054648141,77.05213590044727,79.37987039024587,63.232426158561154,64.95611489189594,0.3460263292359968,348.1507313085075,0.1260610518343057,123.65565458547678,0.0,0.0,0.0,0.0,90.10964,39.48238276741596,93386.11473612778,40532.78617729084,158.39499,72.17472990556077,161329.78023698909,72315.21111957927,4891.32467,2150.938439117342,5065967.813331941,2205057.74255683,1660.5521,708.4527988024942,1719909.8188651667,725953.5386866942,2768.69992,1148.22670312681,2855372.532233648,1167885.434861092,0.38306,100000,0,0,0.0,0,0.0,0,0.0,6837,70.65824502792714,0,0.0,15544,158.23980790311637,0,0,0,0,0,0,0,0,16,0.1670407683875346,0,0.0,0,0.0,0,0.0,0.08677,0.2265180389495118,0.3223464330989973,0.02797,0.3071373920647065,0.6928626079352935,25.894533613014147,4.70444074066788,0.3340317270278359,0.1776414247231368,0.2476803352289733,0.2406465130200538,10.752881912506874,5.081302050733571,29.7810309727542,13991.791096808362,74.74633001515387,13.57618845006735,25.117934586642345,17.876984578803196,18.17522239964097,0.5261897635438492,0.7396798652064027,0.6913082437275986,0.5665422885572139,0.1111782477341389,0.67182246133154,0.9129032258064516,0.8512720156555773,0.6941176470588235,0.1380368098159509,0.4845043310875842,0.6784492588369442,0.6438117373619988,0.5323343848580442,0.1045899172310007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023799396406797,0.0048240635641316,0.0071927119263076,0.0095255504102689,0.0115081583896711,0.0138518533596596,0.0159677994599276,0.018048810349753,0.0201779748464941,0.0221506036423163,0.0242703029433761,0.0263724987172909,0.0286319164679766,0.0307440534392786,0.0330333116822863,0.0351366424986056,0.0370673066975647,0.0390509964951575,0.0410604423012969,0.043206148206773,0.0576708369418909,0.072101657689693,0.0851331516041098,0.0981869777707709,0.1107186910271683,0.1262566997557958,0.1415449560356805,0.1558648872996615,0.1694705247754243,0.182279322659174,0.1969000096942018,0.211691149427774,0.2249847865774145,0.2375025950895442,0.2496152493184416,0.2621856738091022,0.2739816178110917,0.2856114379562864,0.2961689475953791,0.306470830851015,0.3160378995592267,0.324711332608009,0.33338466641395,0.3420418151066969,0.3494652406417112,0.3567254345949944,0.3638241664684303,0.3705547562357555,0.3761980727079361,0.3819998942414467,0.3851313960237012,0.3876782611094254,0.3908491005948932,0.3935345514613189,0.3961584276354973,0.3979696834733463,0.4003940385776478,0.4009825093552694,0.4025987418789316,0.4039010722560482,0.4052265399626675,0.4064020741922616,0.4069157930334798,0.4080492146832818,0.4092822920195518,0.4101235866421246,0.4103762762418263,0.411505407033901,0.4120746976020372,0.4129303442754203,0.4121447028423772,0.4120573446025463,0.411369541796058,0.4104443073125579,0.4106004377200495,0.4162742967523844,0.4155703451478099,0.4164439876670092,0.414586255259467,0.4152900499423742,0.0,2.402827231212625,65.92473546283937,255.84525652723667,402.4636310860061,no_screening,53 +100000,95886,37893,350.7915649834178,8424,86.6758442316918,6440,66.6624950462007,2667,27.480549819577416,77.3584022892406,79.64056091413097,63.35300198276878,65.04149629435346,77.02828101101439,79.30624722287867,63.2329658499784,64.9222312559248,0.3301212782262155,334.31369125230503,0.120036132790382,119.2650384286651,0.0,0.0,0.0,0.0,87.49189,38.476322533056496,90773.64787351649,39655.06177445769,152.64693,69.99535667322964,156122.4683478297,70689.17983358208,4681.5331,2076.1187975916623,4850039.39052625,2132839.4839618523,1563.53053,679.0583783511142,1620570.6463925913,698150.114042837,2638.89572,1096.62546316696,2721171.3910268443,1117776.6447757597,0.37893,100000,0,0,0.0,0,0.0,0,0.0,6614,68.47714994889765,0,0.0,15008,153.39048453371714,0,0,0,0,0,0,0,0,21,0.2190100744634253,0,0.0,0,0.0,0,0.0,0.08424,0.2223101892170057,0.3165954415954416,0.02667,0.2994166479694862,0.7005833520305138,25.96246834888081,4.711690937164931,0.3413043478260869,0.1793478260869565,0.2437888198757763,0.2355590062111801,10.935682595967128,5.293261209676371,28.46351278712033,13762.911608130133,72.24340036167932,13.27335247732018,24.803317185865986,16.842714163101718,17.324016535391436,0.5276397515527951,0.7393939393939394,0.6901728844404004,0.5524060646011866,0.1203821656050955,0.700066800267201,0.9220338983050848,0.8731617647058824,0.7438271604938271,0.1796407185628742,0.4754197855553307,0.6767441860465117,0.6299879081015719,0.5004191114836547,0.1043689320388349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022982919742024,0.0048332674711979,0.00712032538467,0.0091177694971011,0.011516568408213,0.013556010136476,0.0156383715717836,0.0178591463103676,0.0200831095637258,0.0224191866527632,0.0245992260917634,0.0265939451102613,0.0286339314141341,0.0307469165646569,0.0331413143169241,0.0351965804906252,0.0373427672955974,0.0395398248432398,0.0412391475927387,0.043602201437801,0.057774302840761,0.0708979783732957,0.0842714867681094,0.0966661416496036,0.1085761233647222,0.123399670427177,0.1371877881038922,0.1512100204151071,0.1644821108359661,0.1770917082060352,0.1910192214504926,0.2049825836740875,0.2182393424443067,0.2309046379917342,0.2429427613130257,0.2551693601948195,0.2669188031327398,0.2784301815482216,0.2890788159447925,0.2992491545824497,0.3089161648911533,0.3183899029399024,0.3275645432777791,0.3355021488079518,0.3433053807674988,0.3504119369063353,0.3581636365917617,0.3645713702370926,0.3715845573898349,0.3788914500702117,0.3818457047088717,0.3849787957066486,0.3872327186333296,0.3898526529723452,0.3921972786067422,0.3946727877742174,0.3962880356858372,0.3971871488067693,0.3986336493951231,0.4003666492927623,0.4012495988825339,0.4017105945213126,0.403042227299653,0.4044027997290584,0.4051946158705476,0.4059353889020319,0.4074063417160614,0.4078964072616478,0.40821898379605,0.407521875250863,0.4090489381348107,0.4077257830548541,0.4096924749056965,0.4104663858992357,0.4093499468753018,0.4074345805820494,0.4113452701632071,0.4143508917461634,0.414983164983165,0.4201321414691022,0.0,1.9775451245975009,66.77454371111361,243.3831150751613,382.4824755197429,no_screening,54 +100000,95740,37871,351.66074785878425,8339,86.06642991435137,6366,65.98078128264049,2649,27.344892416962608,77.38965647392791,79.75709029239786,63.34469261111818,65.09409165624223,77.07332215272005,79.43759352562526,63.23118192090625,64.98228244959516,0.3163343212078615,319.49676677260186,0.1135106902119318,111.80920664706662,0.0,0.0,0.0,0.0,86.09032,37.54696080116456,89419.56340087738,38716.24274197259,151.63794,69.25291648632239,155477.44934196782,70093.91323085316,4649.08367,2050.3275937889644,4819481.021516607,2105091.971787095,1552.46283,666.0034729908261,1608246.887403384,682364.8855196629,2620.34236,1066.2440250469788,2706297.305201588,1086098.2098396008,0.37871,100000,0,0,0.0,0,0.0,0,0.0,6522,67.58930436599123,0,0.0,14823,151.88009191560477,0,0,0,0,0,0,0,0,27,0.2820137873407145,0,0.0,0,0.0,0,0.0,0.08339,0.2201948720656967,0.3176639884878283,0.02649,0.2966496308915389,0.703350369108461,26.22314369857981,4.693771470790591,0.3375746151429469,0.1793905120955073,0.2466226830034558,0.2364121897580898,10.940582791859352,5.287142076779201,27.866440390176415,13761.672615650874,71.04337885932101,12.971347086184997,24.07884190315477,16.69483107430462,17.298358795676606,0.5298460571787622,0.7451838879159369,0.6924150767798977,0.5654485049833887,0.1165605095541401,0.6801675977653632,0.911660777385159,0.8717434869739479,0.7347560975609756,0.124223602484472,0.4862180786380219,0.6903376018626309,0.6381818181818182,0.5182667799490229,0.1145833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019953812494935,0.0040854394128321,0.0061397010320786,0.0085031594774163,0.0107927207625092,0.0129628121054132,0.0152425036449465,0.0175886322107777,0.0197583612723853,0.0220588987952053,0.0240784780023781,0.0261177557620245,0.0281887060129737,0.0303975780791449,0.0325315620100668,0.0346010748243075,0.036884015200936,0.0388841050327319,0.0411370368445668,0.0431249153443012,0.0581761991271482,0.0718636829875866,0.0850688797725341,0.0972435560231457,0.1097526240835487,0.124370690019884,0.1385284600286457,0.152175301179175,0.1655061939342161,0.1779701005941273,0.1925251154827664,0.2058696263603124,0.2196150918777862,0.2325726345255929,0.2450484154929577,0.256497713203619,0.2682875146378185,0.2791912971162707,0.2897849035637749,0.300061790552911,0.3093566778069455,0.318508645785837,0.3270517579741328,0.3356686067399583,0.3431822597882056,0.3510019472036676,0.3580423081737389,0.3641595681016591,0.3707916110729691,0.3769459298871063,0.3794956760688596,0.3826089351622321,0.385261733233706,0.3880039928822534,0.3903102561434284,0.3917735976329546,0.3934927653370101,0.3950177351550183,0.3962476740017413,0.3981109504169122,0.3991948319445745,0.4010842253130997,0.4031875851945056,0.4047912511485108,0.4055839521651075,0.4061223420969938,0.4075761483137052,0.4083269913749365,0.4078494050790268,0.410326634177776,0.4122798887859129,0.4130422978769615,0.4175760688149955,0.4180113723682188,0.4159659896079357,0.4192969870875179,0.4177606177606177,0.4183715220949263,0.4268631813125695,0.4248644461657629,0.0,1.938055316188939,63.77252500335697,242.4678871104744,380.2003613001869,no_screening,55 +100000,95764,38032,353.14940896370246,8494,87.48590284449271,6517,67.4888266989683,2724,28.100329977862245,77.34687979821054,79.70495339775958,63.33382307926016,65.08071118655603,77.01962836275635,79.37461841976433,63.21584032929522,64.96401303182608,0.3272514354541869,330.3349779952498,0.1179827499649377,116.69815472994571,0.0,0.0,0.0,0.0,88.2719,38.501769880299,91626.93705359008,39655.28787467002,155.35051,71.08421339078826,158575.05952132324,71434.84874780264,4768.45625,2093.739596291811,4941093.072553361,2148063.6943860017,1630.94349,696.1272611244519,1684910.1854559125,708743.5373673321,2707.32648,1105.4180155336037,2794306.879411888,1126407.903765982,0.38032,100000,0,0,0.0,0,0.0,0,0.0,6675,69.1178313353661,0,0.0,15172,154.75544045779208,0,0,0,0,0,0,0,0,23,0.2401737604945491,0,0.0,0,0.0,0,0.0,0.08494,0.2233382414808582,0.3206969625618083,0.02724,0.3073830001116944,0.6926169998883056,26.12693801183403,4.74809252506701,0.3366579714592604,0.1729323308270676,0.2518029768298296,0.2386067208838422,10.998553785152556,5.303546485986319,28.854951781999382,13891.397572958807,72.90426220341394,12.747009457501644,24.821973691341928,17.375780493893973,17.9594985606764,0.5298450207150529,0.7497781721384206,0.6818596171376481,0.5794212218649518,0.1285801340645947,0.6944253269098417,0.953846153846154,0.85,0.7230320699708455,0.1741935483870967,0.4826224328593997,0.6885813148788927,0.6269649334945586,0.5387788778877888,0.1179564237415477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020165376352802,0.0045531983937046,0.0070050761421319,0.0094108560220331,0.0116383169203222,0.0138388220199181,0.0162503823019675,0.0185994283380971,0.0205884156938112,0.0226993488143506,0.0247803397684981,0.0269937264485127,0.0289381131609798,0.0312229593308335,0.0332211856010568,0.0353321824703583,0.0374443408926167,0.0393161683852362,0.0414444756291514,0.0432559640956754,0.0575206922105438,0.0711401673640167,0.0845181177654755,0.0968111494156226,0.1092597276674676,0.1248639452187972,0.1393956096371749,0.1526856340903291,0.1663466257014231,0.1790565148463944,0.1937198119601114,0.2078650471167978,0.2217225046712727,0.2342193779486283,0.2464705946979268,0.2587687269025648,0.2700975745748536,0.2813722844420456,0.2919428804940065,0.3022102042920815,0.3121534490143193,0.3212717886283553,0.3298831108847807,0.3382157123834887,0.346046364696734,0.3534085589691788,0.3608216432865731,0.3678936579279084,0.3747213726608263,0.3815157116451017,0.3844930310301135,0.3871207942636514,0.3895011641854229,0.3921307488527628,0.395118537050274,0.39689415234321,0.3985507246376811,0.4003431607080989,0.4023835282400014,0.4038202610272337,0.4048943270300333,0.4060750921222986,0.4069507199864871,0.4083785004516712,0.4097387751131001,0.4108893881326814,0.4103705416498063,0.412965570203507,0.4133000534854698,0.4142119280122669,0.41460131811009,0.4123271391529818,0.4148567022233646,0.4156065777226186,0.4207619047619048,0.4225301204819277,0.4182699827936806,0.4144087376601554,0.4099073001158748,0.4175914508836827,0.0,2.2325207614113896,64.57070613026974,250.6998589674645,390.23423900648936,no_screening,56 +100000,95744,37735,350.37182486631013,8324,85.56149732620321,6339,65.54979946524064,2651,27.27063836898396,77.36211040614715,79.72353138137345,63.32787542470121,65.0754511740816,77.04518441721372,79.40447487837778,63.21223343785761,64.96149565823698,0.3169259889334341,319.05650299566446,0.1156419868435989,113.95551584462282,0.0,0.0,0.0,0.0,86.26633,37.951795766660574,89437.72977941176,38975.52407112777,152.86953,70.32094442829748,155352.35628342247,70103.97487608453,4606.54914,2037.6979788444075,4771927.222593583,2088885.8193144305,1560.24524,666.4616441400085,1615136.2696356953,681629.5921800707,2621.96994,1078.4571200378675,2701053.9772727275,1097030.3345870909,0.37735,100000,0,0,0.0,0,0.0,0,0.0,6487,67.04336564171123,0,0.0,15025,152.51086229946523,0,0,0,0,0,0,0,0,21,0.2193348930481283,0,0.0,1,0.0104445187165775,0,0.0,0.08324,0.2205909632966742,0.3184766938971648,0.02651,0.306576844028317,0.693423155971683,26.090244129368983,4.6692970863890855,0.3300205079665562,0.1902508282063417,0.2456223379081874,0.2341063259189146,11.158704219264123,5.501408102366869,28.099814213334277,13731.553197750003,70.87505813577282,13.826591792049356,23.54106303432659,16.514523002463157,16.992880306933717,0.5338381448177946,0.753731343283582,0.6854684512428298,0.5849056603773585,0.1111111111111111,0.6877192982456141,0.907051282051282,0.8645833333333334,0.7297297297297297,0.13,0.4892144892144892,0.7002237136465325,0.6321339950372209,0.5430060816681147,0.1066030230708035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024416684396624,0.0048066197497312,0.0071464825905999,0.0094191044230163,0.0115050099181119,0.0140648551757852,0.0161523871678257,0.018561627052193,0.0205928364740646,0.0229376587204063,0.025309705472147,0.0271483452143722,0.0291866422501594,0.03120298427485,0.0332951460920002,0.0351515652785244,0.0368019384701411,0.03885539981117,0.0409654584576364,0.0429144315400239,0.0569525777930876,0.0707836839737621,0.0839363241678726,0.0965302537889544,0.1078036328347503,0.1226322302249579,0.1371906262266212,0.1505360317679999,0.1635431135805107,0.1762441425308556,0.1912136910467533,0.2048507018474226,0.2181353350739773,0.2309400606067236,0.2427047673561042,0.2548204787234042,0.2669935443518663,0.2775858382381075,0.2879013130269982,0.2986377645131354,0.3082241756714499,0.3169192953707497,0.324928346400739,0.3333653407590561,0.3410182516810759,0.3482473463342385,0.3557052029645235,0.362010275762714,0.369397418434196,0.3754974680364391,0.3790892030188883,0.3821049581188679,0.385355040029369,0.3879139192812115,0.3903656465119051,0.3925602691947206,0.3941685866370064,0.3956411439114391,0.3969472187483939,0.3989870064788631,0.4011687994437867,0.4029076216130565,0.4039051662533103,0.4055680287382128,0.4084714637800222,0.4106085224592484,0.4121993127147766,0.4127054361567636,0.4141496118560339,0.4154196097210583,0.4157976582510062,0.4181576144834931,0.41819794702826,0.4198368529389342,0.4183923192771084,0.4134212103055722,0.4192752505782575,0.4253595300789953,0.4195862068965517,0.4186687672311934,0.0,2.5646045236243733,62.66752564315654,245.23923890513157,375.819150641916,no_screening,57 +100000,95751,38178,355.55764430658684,8472,87.38289939530657,6580,68.04106484527577,2701,27.69683867531409,77.32840490063373,79.68892469108995,63.31625382636724,65.06475296192201,77.00158863269064,79.36376668938485,63.19833595547173,64.95099146110812,0.3268162679430872,325.15800170510545,0.1179178708955035,113.76150081389368,0.0,0.0,0.0,0.0,89.05014,38.77079871293227,92322.96268446282,39812.44970071569,156.19744,71.4050280378018,158974.69478125556,71307.8840620568,4807.54124,2109.6749763835232,4972982.569372644,2155397.0991253606,1612.69534,682.9769541554209,1665176.1025994506,694237.2323967796,2674.08218,1094.0847461823464,2744823.4900940983,1102709.8986900174,0.38178,100000,0,0,0.0,0,0.0,0,0.0,6752,69.80605946674186,0,0.0,15281,155.5806205679314,0,0,0,0,0,0,0,0,22,0.2088751031320821,0,0.0,0,0.0,0,0.0,0.08472,0.2219079050762219,0.3188149197355996,0.02701,0.2989264146723328,0.7010735853276672,25.968823169462556,4.745263875174875,0.3366261398176292,0.1749240121580547,0.2434650455927051,0.2449848024316109,11.0249341001876,5.297751008412664,28.693232326592156,13901.043986216602,73.4269001454925,13.128613478594504,24.648754291243637,18.021015193816535,17.6285171818378,0.5246200607902736,0.741094700260643,0.6781038374717833,0.5787841191066998,0.1023720349563046,0.6792065663474692,0.925,0.8667992047713717,0.723463687150838,0.1214953271028037,0.4804611176240719,0.6819747416762342,0.6226635514018691,0.5374800637958532,0.0975800156128025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021685599343351,0.0044118541958254,0.0067619705153718,0.0088822943555763,0.0110068971129783,0.0133128259452412,0.0155612661119269,0.0177034518668259,0.0199047190643657,0.0219567620685419,0.0242227302081945,0.0262136520453425,0.0281271532441354,0.0302930421795333,0.032320647238504,0.034328065079644,0.0363442507556622,0.0383430651635051,0.0403113503626878,0.042349314141088,0.0576077993382253,0.0715406338249137,0.0844850365958517,0.0971387125257536,0.1089977977049767,0.1243724302670936,0.139657695488961,0.1541212153461395,0.1675335077695306,0.1803921989085334,0.1953302531959118,0.209094253072529,0.2222995833378662,0.2347878390201224,0.24684631134007,0.2595095150535014,0.2713443896341599,0.2823566491816565,0.2923503162293202,0.3025721556131221,0.3124160607604316,0.3217361793755559,0.3302332744914521,0.338328530259366,0.3462722527104805,0.3536172839506173,0.3612422765861255,0.3686937655542084,0.3755846585594013,0.3819757824389598,0.3851559543759122,0.3882845072755888,0.3909052333804809,0.3939007236183819,0.3966358711064014,0.398300126258738,0.4001719389298394,0.401296103423763,0.4022877784467188,0.4037890646084093,0.404949635945222,0.4062294886329733,0.4066639988205311,0.4063951652911198,0.4083410160609442,0.4085837587495395,0.4102534562211981,0.4117441675924456,0.4122499557443795,0.4145225384337494,0.4151456489675516,0.4172203171881697,0.4156511805026656,0.4163463017069045,0.4201104551513997,0.4222887956860395,0.4256641292527575,0.4272026661112268,0.4329838481156134,0.4258219727345629,0.0,2.600977019868114,64.65589118810814,248.46339715215976,398.7166111777349,no_screening,58 +100000,95733,37733,349.71222044645003,8293,85.36241421453417,6424,66.56012033468083,2636,27.158868937565934,77.31464774318667,79.67942945863844,63.30648041847581,65.05545876729639,76.9930073638916,79.35652993860788,63.18875634942898,64.93971173037451,0.3216403792950615,322.89952003056044,0.1177240690468295,115.74703692187428,0.0,0.0,0.0,0.0,86.58617,38.2410299526102,89845.71673299698,39346.68853543655,156.5898,72.05070708097169,160194.5619587812,72552.76861171162,4702.4873,2092.941086124824,4874376.098106192,2148569.0698848167,1592.55371,689.3362269400111,1646482.404186644,703163.4948244573,2605.17648,1083.500884391823,2686712.8367438605,1102090.2811834256,0.37733,100000,0,0,0.0,0,0.0,0,0.0,6616,68.49257831677687,0,0.0,15361,157.16628539792964,0,0,0,0,0,0,0,0,16,0.1462400635099704,0,0.0,0,0.0,0,0.0,0.08293,0.2197810934725571,0.3178584348245508,0.02636,0.310499139414802,0.6895008605851979,25.94498925356975,4.771220860737242,0.3435554171855541,0.1751245330012453,0.2450186799501868,0.2363013698630137,11.327466177899474,5.532586301394414,28.125963006121108,13780.967500765692,72.23043726600827,12.768219368629774,25.14814351271877,16.822825071413746,17.491249313245977,0.5395392278953923,0.7333333333333333,0.708201178069778,0.5922266139657444,0.1137229987293519,0.6877950101146325,0.9141914191419142,0.8665413533834586,0.7429467084639498,0.1367781155015197,0.4950414895770087,0.6666666666666666,0.657910447761194,0.5521267723102585,0.1076305220883534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678569619612,0.0045725988786487,0.0069631945431291,0.0091860583274057,0.0116587822371432,0.0138758710623904,0.0159863702675957,0.0184190643442037,0.0205262404677693,0.0228696613570287,0.024904391334215,0.0268297190734351,0.0289041124071673,0.0311379466677657,0.0332369942196531,0.0354794690485051,0.0375168271719995,0.0396285150980595,0.041664500431514,0.0436716707122691,0.0577481258744179,0.0713396062505887,0.0851184356838637,0.0982406696602273,0.1105709917224653,0.1252155332000465,0.1394758907628135,0.1532490763317326,0.1661945635094545,0.1789393484139588,0.1925756562628071,0.2059518390879337,0.2185960859521422,0.231562678125137,0.2434483367157857,0.2559201172916296,0.2677288696936469,0.2791411389048731,0.2895263888572794,0.2997288042104295,0.3091132719129285,0.3180442839048646,0.3260678690080683,0.3341262689974169,0.3430477442602196,0.3505718732244757,0.3577374385718584,0.3644728792822186,0.3707333514823889,0.3774023538114044,0.3803365786563823,0.3832763658415569,0.3859750592483918,0.3889636998103181,0.3916136055233295,0.3937241517150193,0.3950821497304089,0.3969223656837169,0.398398432801196,0.3996947113226183,0.4019042232277526,0.4033082168631583,0.4041536907667705,0.4050888983793747,0.4055427810722498,0.40490443184205,0.4060961920386841,0.4064978742305984,0.4067100792751982,0.4059417849410632,0.4064875823618855,0.4068798710024187,0.4102761227496957,0.4098805646036916,0.4092782517013323,0.4126043304705455,0.4150884332446392,0.4153878494849695,0.4143222506393862,0.4080735411670663,0.0,1.9513545004535555,66.23039994661993,249.95089003958915,375.59260901544,no_screening,59 +100000,95815,38126,354.26603350206125,8415,86.8131294682461,6505,67.33809946250587,2668,27.542660335020614,77.3504688262772,79.68341522903881,63.33176974345843,65.0605362056457,77.02769785452587,79.356647002783,63.21579419360509,64.94546267286273,0.3227709717513249,326.76822625580826,0.1159755498533385,115.07353278297217,0.0,0.0,0.0,0.0,88.25265,38.3760286611236,91563.08511193446,39507.95664679184,155.2771,70.83348319855538,158290.44512863332,71114.8328883648,4772.13175,2091.2553927283016,4943273.287063612,2145301.8240654394,1620.26693,687.9259262307241,1678358.9521473672,705295.23167638,2646.17832,1083.1716003998567,2733402.494390232,1105470.9491250257,0.38126,100000,0,0,0.0,0,0.0,0,0.0,6667,69.0079841360956,0,0.0,15152,154.3599645149507,0,0,0,0,0,0,0,0,29,0.3026665970881386,0,0.0,0,0.0,0,0.0,0.08415,0.2207155222158107,0.3170528817587641,0.02668,0.3132611637347767,0.6867388362652233,25.94022093949926,4.796691025612799,0.332205995388163,0.1804765564950038,0.2481168332052267,0.2392006149116064,10.961550259612869,5.204441612841655,28.272623858635267,13895.660795838732,72.52703113484729,13.279150655936084,24.211286048930532,17.429855622979208,17.606738807001463,0.5243658724058416,0.737649063032368,0.6760758907913004,0.5816195372750642,0.11090458488228,0.6956521739130435,0.9206896551724136,0.8722986247544204,0.7028571428571428,0.17,0.4752768987341772,0.6776018099547512,0.6156174334140436,0.5464344941956882,0.0974124809741248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023400936037441,0.0043803169646025,0.0064345884502182,0.0088089166150188,0.0110157251256179,0.0133731233831048,0.0154811075416857,0.01766604035618,0.0198355895464398,0.0221423745470179,0.0246198332701003,0.0266262771474046,0.0289589782087802,0.0309374967816352,0.0328994863967327,0.0349858444752123,0.0367487215585598,0.0386474432112851,0.0405304289990023,0.0428178808636448,0.056937200083455,0.0707728660449165,0.0841376130445261,0.0969846606429922,0.1088600927096502,0.1245614405884093,0.1399003287032128,0.1538379712364905,0.1671417437999765,0.1802633975932018,0.1949295714024383,0.2091562618236852,0.2221437726749364,0.2351179742740675,0.2472528076910385,0.2601672852157536,0.2717908082408874,0.2820533021203799,0.2918072261787122,0.3016498625114573,0.3117033469557868,0.3211719828695795,0.3301567383274931,0.3388442632777844,0.3473708531958361,0.3559667226226918,0.3625031351893654,0.3688541321154288,0.3757042344938598,0.3824015878266623,0.3852069086682704,0.3882832469775475,0.3906696466461086,0.3932920192154188,0.3953887479480674,0.3972056809613934,0.3986816756094066,0.4005747506110854,0.401374688547126,0.4026247191011236,0.4040327899745595,0.4055859258523009,0.406538704914575,0.4076402974983096,0.4083956492182189,0.4091100579252238,0.4086371090715539,0.4094560696027688,0.4100994373473937,0.4124497991967871,0.4120760274287818,0.4123860589812332,0.4112667091024825,0.4108431884503148,0.4091254752851711,0.4086291382813434,0.4078540507111935,0.4086242299794661,0.410242137489563,0.4113973458235753,0.0,2.150444249809545,64.4695464599054,245.58912913467225,392.88882771595706,no_screening,60 +100000,95712,37987,354.1457706452691,8477,87.25133734536944,6468,66.9299565362755,2678,27.5827482447342,77.30949638025908,79.67037234664001,63.31695901961641,65.05976431659333,76.99236845706037,79.35107073157292,63.20222616292029,64.94701923607741,0.3171279231987114,319.30161506709,0.1147328566961221,112.74508051592136,0.0,0.0,0.0,0.0,87.60501,38.366210980543954,90904.40070210632,39459.737066173606,154.5256,70.91676757603902,157379.40906051488,70938.71185941753,4732.81789,2085.786985772505,4902087.251337345,2136477.302483568,1596.81012,683.5239689888319,1653798.9280341023,699596.5803544311,2651.6248,1087.8612215015369,2733500.6895687063,1104321.5768794843,0.37987,100000,0,0,0.0,0,0.0,0,0.0,6628,68.58074222668004,0,0.0,15133,153.97233366766966,0,0,0,0,0,0,0,0,25,0.2612002674690739,0,0.0,1,0.0104480106987629,0,0.0,0.08477,0.2231552899676205,0.3159136486964728,0.02678,0.3151833631484794,0.6848166368515206,26.081718403087965,4.733705593841553,0.3370439084724799,0.1751700680272108,0.2456709956709956,0.2421150278293135,11.017124791740653,5.45014602184078,28.50873460870884,13841.890776486707,72.49666619845365,12.833932586161996,24.74195642181535,17.476432816191906,17.444344374284405,0.537569573283859,0.7405119152691968,0.7009174311926606,0.5913154533844189,0.1157960981749528,0.6774847870182555,0.9222222222222224,0.8646616541353384,0.7099447513812155,0.1142857142857142,0.4960914010823812,0.6836616454229433,0.6480582524271845,0.5556478405315615,0.1161695447409733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021065211006572,0.0044603033006244,0.0065639964288612,0.0087348663362314,0.0107151934122909,0.0127739269392449,0.0149008816185088,0.0170465564935131,0.0189689710150852,0.0209597691150433,0.0230837040529736,0.0253200948733481,0.0272807666995722,0.0292584963954685,0.0313528119553222,0.0334969261765769,0.0354688470296004,0.0376777324912106,0.0397347551786141,0.0419175399487489,0.0564727504359721,0.0700417613011942,0.0830483942019257,0.0957738777484516,0.1077555754731902,0.123555104328606,0.1386327706394763,0.1528070511592259,0.1659990386156064,0.1794445635856744,0.1944390580225367,0.2077645097381156,0.2216249156636995,0.2347559641059312,0.246000550509221,0.2589956767542401,0.2709836688188378,0.2825954714430551,0.2933898382112343,0.3031230652816949,0.3126983391628639,0.3222211817585916,0.3305413058158683,0.3379992556933456,0.3462811123816939,0.3538775006174364,0.3614818713890038,0.3682586633347783,0.3745294041282617,0.3809523809523809,0.3841415642307172,0.3866234124792932,0.389038189533239,0.3913484971567831,0.3937348821930898,0.3955358380701511,0.3976368536029212,0.3984988509927753,0.4006408599927645,0.4013699864803965,0.4029178572104376,0.4047004700470047,0.4066136724960254,0.4086442673428727,0.4093082251927017,0.4096029547553093,0.4108253536610061,0.412506367804381,0.4126137656427759,0.4132702182284981,0.4114612124562373,0.4108881596643176,0.4103972410269511,0.4109282015611716,0.410814942199293,0.409435551811289,0.4072924747866563,0.4158498435870699,0.419753086419753,0.412180746561886,0.0,2.529595635800123,65.44767988552655,246.77112904660916,384.6075464059998,no_screening,61 +100000,95736,37826,351.45608757416227,8499,87.68906158602825,6651,68.90824768112309,2792,28.86061669591376,77.40440741590693,79.7612784783935,63.3594678928421,65.09935209407122,77.06652412403166,79.41859742675238,63.236029185017145,64.97632170330668,0.3378832918752721,342.6810516411223,0.1234387078249525,123.0303907645407,0.0,0.0,0.0,0.0,89.93081,39.60640276040307,93376.82794351132,40811.01441506128,160.30083,73.48811573572655,163630.2958134871,73874.51390191604,4868.28159,2163.316514198684,5048835.192613019,2223393.27337541,1644.4775,709.1157142956205,1700155.0200551518,723156.2894248352,2770.60448,1150.5992630461697,2865764.47731261,1177669.1815392356,0.37826,100000,0,0,0.0,0,0.0,0,0.0,6810,70.54817414556697,0,0.0,15660,159.72048132364,0,0,0,0,0,0,0,0,25,0.2611347873318292,0,0.0,0,0.0,0,0.0,0.08499,0.2246867234177549,0.3285092363807507,0.02792,0.3040994623655914,0.6959005376344086,25.91141661872275,4.764247233205225,0.3363403999398586,0.1754623364907532,0.2536460682604119,0.234551195308976,10.906848019919009,5.268812418512922,29.834777108404754,13810.908650107014,74.67961472191664,13.36277817069966,25.1658780988564,17.469137067544874,18.681821384815706,0.5262366561419335,0.7549271636675235,0.6808225301743407,0.5788461538461539,0.1144042679312388,0.6591349257585539,0.93,0.8485436893203884,0.7193460490463215,0.1117166212534059,0.4858878871030968,0.6943483275663207,0.6306620209059234,0.5356244761106455,0.1151515151515151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024502111028987,0.0046921712693184,0.0069998173960679,0.0092317066978114,0.011438390288044,0.0137011400651465,0.0159388535031847,0.0182239319204514,0.0202509400032695,0.0224407515042364,0.0246694680742031,0.0268392314639954,0.0288269764572838,0.0310031209121715,0.0327190556770811,0.0347226529388658,0.0367010480096102,0.0387033195020746,0.0407075231493509,0.0428383952005999,0.0576302684192393,0.0718598591475602,0.0849102123017538,0.0973358285846457,0.1095815326235901,0.1247343209719887,0.1393774797903715,0.1530100601479746,0.166634617439053,0.1788624860598781,0.1936439217713448,0.2074379449890714,0.2206691757130115,0.2326947050718456,0.2442837965713782,0.2561660372343371,0.2677074847392561,0.279129926219183,0.2900323367561128,0.3000263371846695,0.3098786988748713,0.3189689420672571,0.3276283907570474,0.3357141148039145,0.3428959594366744,0.350738734301896,0.3584497171747509,0.3658263590343669,0.3729513502317272,0.3790974686382883,0.3825141026158838,0.3851078770188217,0.3873906911142454,0.3905311744874188,0.3930899026872601,0.3948216587881392,0.3965402211208539,0.3985644436395963,0.4008226926043363,0.4014802602103905,0.4031917699815352,0.4038959486913914,0.4043976450231066,0.4056493360342111,0.407004889383744,0.4082667647677107,0.4086776978004646,0.4084931072730153,0.4095997166135317,0.409808478243449,0.4101492537313433,0.4114678406528508,0.4127862595419847,0.4130970724191063,0.4092935040303461,0.4082486551105798,0.4073326083579307,0.410303776683087,0.4122807017543859,0.4197431781701444,0.0,2.191662878329805,68.94651245104939,250.38479839341204,396.7309144615196,no_screening,62 +100000,95739,38204,354.9441711319316,8454,87.00738466037873,6520,67.40199918528499,2734,28.08677759324831,77.33232137485312,79.69938900850437,63.31916690730778,65.07174679677844,77.00187414409136,79.36946584557244,63.198608472409454,64.95495478967634,0.3304472307617629,329.9231629319337,0.1205584348983279,116.7920071021058,0.0,0.0,0.0,0.0,88.26834,38.33269769978843,91507.5570039378,39350.22004940412,154.60049,70.14326682843749,157990.08763408853,70516.0777847937,4759.91199,2089.4460265296434,4922324.423693583,2133100.734192841,1602.03828,682.8912506750363,1655521.1042521854,695466.1325844591,2706.67072,1112.9369266863976,2781869.353137175,1122030.7429435677,0.38204,100000,0,0,0.0,0,0.0,0,0.0,6655,68.80163778606419,0,0.0,15158,154.78540615632082,0,0,0,0,0,0,0,0,22,0.2297914120682271,0,0.0,0,0.0,0,0.0,0.08454,0.2212857292430112,0.3233972084220487,0.02734,0.3000112069931637,0.6999887930068363,25.98491967825766,4.710800642040278,0.3400306748466257,0.1762269938650306,0.2464723926380368,0.2372699386503067,10.885839193639208,5.226953064020692,28.77293875985051,13873.70087761747,72.68499378669178,13.162653812895291,24.87142166241688,16.971835989534192,17.679082321845414,0.526840490797546,0.7354221061792864,0.6977898060442039,0.5636716224951519,0.1064094586185438,0.685,0.9094202898550724,0.8690476190476191,0.7591973244147158,0.1339563862928348,0.48359375,0.6804123711340206,0.6474022183304144,0.5168269230769231,0.0995334370139968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024322023592362,0.0045644037367251,0.0064881000731053,0.0086795674445076,0.0111906893464637,0.0134880451503142,0.0156339234723015,0.0178460219093609,0.0198660600173815,0.0218775593775593,0.0239474304694147,0.0259018951604623,0.028,0.0301969185136359,0.0325196541691599,0.0348102901202029,0.0371102850575188,0.0393505550368295,0.0411327617563003,0.0432554603118392,0.0573564262373808,0.0710600939654901,0.0840824461110819,0.0964118958482311,0.1083272700431284,0.1232466625764275,0.138028736973916,0.1522648640017033,0.1653474336377717,0.1785392535392535,0.1939240506329114,0.2077844765069434,0.2212936362844955,0.2338402625820569,0.2463758544397847,0.2590639711991138,0.2711726293464307,0.282040026113775,0.2927748453374198,0.3028091561075086,0.311932660244535,0.3214515657009072,0.3303296547151044,0.3386342376052385,0.3460481851554712,0.3537117903930131,0.3612367362790173,0.3679238075835901,0.3752171770868449,0.3812487611496531,0.3843394776230094,0.3869869152177809,0.3895139545717633,0.391765268142913,0.3945407950414208,0.3964073328518524,0.3985004298131109,0.4007748104187273,0.4024212493783974,0.4040723250677823,0.4056911950754357,0.4071689160901895,0.4090005077860528,0.4094484629294755,0.4097426783844974,0.4106190953712988,0.4111745372772876,0.4122846202935545,0.411297786004129,0.4102004526349822,0.4118842990481471,0.4128524945770065,0.4155969812294394,0.4172185430463576,0.4130705195675055,0.4135284240825138,0.4169230769230769,0.4173984071880743,0.4230127848804891,0.4215264187866928,0.0,2.728472616272338,61.53079901992415,251.6380506826683,396.9699840203933,no_screening,63 +100000,95714,38335,356.36375033955323,8454,86.96742378335458,6517,67.38826086048019,2721,27.95829241281317,77.41699606751023,79.77087400987031,63.36600846061516,65.10078589089113,77.09019435478386,79.44467175161111,63.246783546337646,64.98507953938761,0.3268017127263647,326.202258259201,0.1192249142775168,115.70635150351904,0.0,0.0,0.0,0.0,88.18441,38.91491263311014,91439.43414756462,39963.68622470082,161.2254,74.2180500795228,164281.7351693587,74277.22469087297,4723.43037,2101.59764826954,4889716.279750088,2150479.8861917164,1582.26082,682.3891342591292,1636468.2073677832,696304.7122980173,2687.60222,1109.0338525571356,2764632.2794993417,1122004.9879821774,0.38335,100000,0,0,0.0,0,0.0,0,0.0,6659,68.85095179388595,0,0.0,15782,160.68704682700545,0,0,0,0,0,0,0,0,22,0.2298514323923355,0,0.0,0,0.0,0,0.0,0.08454,0.2205295421938176,0.3218594748048261,0.02721,0.303471444568869,0.696528555431131,25.96226112037136,4.674086265242868,0.3372717508055854,0.1758477827221114,0.239067055393586,0.2478134110787172,11.009730838385291,5.429840202274472,28.79379197968343,13914.985788123837,73.2748525237565,13.200986862434547,24.792653946067357,18.016131559673717,17.265080155580858,0.5369034831977904,0.7696335078534031,0.681073703366697,0.5913312693498453,0.1059050064184852,0.692358803986711,0.9494949494949496,0.8462998102466793,0.7653631284916201,0.1238390092879257,0.4902234636871508,0.7067137809187279,0.6289646918013165,0.5417661097852029,0.1012145748987854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022773740359116,0.0048323861046105,0.0069883966244725,0.0094233288315275,0.011621522693997,0.0136505222011848,0.0157377583887144,0.0182792406613594,0.0201729106628242,0.0223740882073107,0.0245829405254744,0.0265612972751064,0.0285887577614211,0.0307205899012368,0.0328584250652526,0.0348565641534391,0.0371378874785165,0.0390810558523051,0.0411461472905277,0.0433260758596981,0.0581300643221117,0.0716647483519933,0.0854447976666352,0.0975609756097561,0.1097774496361143,0.1255261988873141,0.1399157747345419,0.1539804357776193,0.1674607922738344,0.1799287920384351,0.1950552408847156,0.2091276968687109,0.2224142616446546,0.2354862673979068,0.2473762294631573,0.2597335045043051,0.2707994202252202,0.2822853545289998,0.2920806678462864,0.3021626386710476,0.3121970967555376,0.3219968433974396,0.3305653145959757,0.3390912684627271,0.3470931856547771,0.3547989447991913,0.3621574271054937,0.3700545919600931,0.3762919980312411,0.3827890824101094,0.3860230702889176,0.3886379286599642,0.3917055893434179,0.3945945945945946,0.3968731835998629,0.398863287250384,0.4000951852145633,0.4011413722781396,0.4021672144617912,0.4027574121097242,0.4043692238334961,0.4051821477387532,0.4047588992678616,0.4059774444519181,0.4065111336521277,0.4066201907956809,0.406490081412682,0.4064495731900094,0.407286991553875,0.4083516483516483,0.4077754373111091,0.4112264554794521,0.4135966578047854,0.412962962962963,0.4112361675967086,0.4121356335514575,0.4116561586959865,0.4097729115977291,0.4055464030752334,0.4146991622239147,0.0,2.7001431587178484,66.3246422523218,257.61628975735704,375.7166368430938,no_screening,64 +100000,95693,37821,351.4572643767047,8400,86.62075595916107,6461,66.91189533194695,2706,27.880827228741914,77.3508434030137,79.74361663779241,63.31502979323547,65.08393636430245,77.02933135540873,79.42202168587093,63.19900907599521,64.97125644697525,0.3215120476049691,321.5949519214832,0.1160207172402607,112.67991732719906,0.0,0.0,0.0,0.0,88.06407,38.23906996132964,91423.17619888602,39355.62680794796,151.85215,68.9482634919463,155931.89679495888,69734.60313605102,4729.17207,2071.581004321541,4900068.291306574,2122862.993449409,1595.0926,681.8357962074938,1649882.2484403248,695521.1104338821,2682.46576,1097.4030040381842,2765909.5649629543,1112476.0460939698,0.37821,100000,0,0,0.0,0,0.0,0,0.0,6619,68.55255870335344,0,0.0,14852,152.36224175227028,0,0,0,0,0,0,0,0,26,0.2717022143730471,0,0.0,0,0.0,0,0.0,0.084,0.2220988339811216,0.3221428571428571,0.02706,0.2999098693105002,0.7000901306894998,26.38528467420332,4.742475233596279,0.3304442036836403,0.1795387710880668,0.2510447299179693,0.2389722953103235,10.935145601944091,5.2320089581772775,28.630519405461623,13865.94662739461,72.05830007765988,13.173161534356137,23.76388415618038,17.264813616696248,17.856440770427113,0.5240674818139607,0.7318965517241379,0.682903981264637,0.5751295336787565,0.1177558569667077,0.6901208244491827,0.8863636363636364,0.8688172043010752,0.75,0.1490066225165563,0.4778393351800554,0.676056338028169,0.6311377245508982,0.5272277227722773,0.1106060606060606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023197625535622,0.004401131719585,0.0068115603650427,0.0090149605658996,0.0113125394209444,0.0134980949858397,0.0159136582031847,0.0183119880711644,0.0204845522136202,0.0225622433199168,0.0246541344901496,0.0266225696120623,0.0286666460949794,0.0303835811207616,0.0324365047421488,0.0343833024924276,0.036581954560053,0.0385601444837715,0.0406503219364032,0.0428532710670057,0.0577513630951137,0.0723230927101003,0.0856042156533423,0.0979368970342237,0.1106352002869531,0.1260898087015405,0.1411253940789962,0.1554239706916015,0.1680188991865225,0.1802611952310944,0.1948995429852548,0.2087122196241448,0.2223902847753463,0.2347224654176151,0.2469557175258186,0.2589294625134455,0.2708859063400254,0.2814818985417487,0.2919819144343716,0.3017176141445181,0.3109994093188635,0.3194714523346531,0.3281651909012245,0.3364738358137302,0.3444240337708787,0.35231856704045,0.3604081888186314,0.3673666917130449,0.3738629000907088,0.3805067607756057,0.3834473822731505,0.3870291733303921,0.3891272439878062,0.3915140105712837,0.3938460622833251,0.3950579387614151,0.3972404814073862,0.3987847250811007,0.4003294327579699,0.4013520055945059,0.4023806833163822,0.4036560676432059,0.4052275212381193,0.4077877140160877,0.407515778782676,0.4074258594016309,0.4087922760511883,0.4084040506009653,0.4090588649982375,0.4094090511413346,0.4093604598120609,0.4089694248449861,0.4093270814852363,0.4088704088704089,0.4094119893088965,0.4107703453272156,0.4107420055883266,0.4066112350436017,0.4045843689588511,0.4007843137254901,0.0,2.404246156648785,62.35778063096699,246.7040339984815,392.8247737693528,no_screening,65 +100000,95723,37959,353.2797760203922,8335,85.85188512687651,6383,66.09696729103769,2658,27.40198280455063,77.26691653433518,79.62715629804403,63.2951211478972,65.0392194971966,76.93423973216278,79.29056796270326,63.17468626304617,64.91983880692233,0.3326768021724007,336.58833534076393,0.1204348848510292,119.38069027426934,0.0,0.0,0.0,0.0,86.18947,37.76792564065725,89462.80413275807,38878.62464030674,149.5003,68.73526123767954,152029.94055765073,68671.95864440157,4686.16982,2069.250544179205,4856499.503776522,2122820.3348894767,1592.08079,677.5648185431068,1649603.8883027066,694314.6643319798,2636.95168,1095.2940896295709,2721410.6327632857,1116260.66074859,0.37959,100000,0,0,0.0,0,0.0,0,0.0,6539,67.69532923121925,0,0.0,14711,149.58787334287476,0,0,0,0,0,0,0,0,13,0.1358085308651003,0,0.0,0,0.0,0,0.0,0.08335,0.2195790194683737,0.3188962207558488,0.02658,0.3041543026706231,0.6958456973293768,25.96289166259825,4.74989179010407,0.3266489111702961,0.1828293905686981,0.2514491618361272,0.2390725364248785,10.805978817342508,5.181905166765474,28.691474585131655,13853.707102379643,71.75490439882671,13.34313468238135,23.5810139066897,16.938005869991265,17.892749939764393,0.5201315995613348,0.7455012853470437,0.6762589928057554,0.5642201834862385,0.1115264797507788,0.671448087431694,0.9191919191919192,0.8490196078431372,0.7051671732522796,0.1371951219512195,0.475096564342346,0.6862068965517242,0.6203174603174603,0.5254803675856308,0.1049334377447141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024814649758943,0.0048363057518579,0.0071538742541705,0.0094472831442183,0.0118076602322885,0.0142445501104741,0.0165247973902849,0.0187013199130266,0.0207824335790151,0.0227747297739927,0.0247660246225128,0.0267648145866699,0.0285156049154198,0.0303127059986816,0.0325399527479443,0.0345665229840502,0.0367931073762258,0.0386985661818106,0.040508092263235,0.042426831428363,0.0574083742299258,0.0715504338451554,0.084443931412261,0.0967141188725103,0.1090772898951322,0.1244761904761904,0.1397405409996178,0.1539075979295801,0.1676183144073052,0.1795777293560748,0.1941530932335852,0.208195637805684,0.221732170276716,0.234377395685029,0.2466084043244911,0.2588785150482365,0.2706196808213203,0.281327127449765,0.2918527610150807,0.301774062224057,0.3117111692642597,0.3206451083964816,0.3289052686464579,0.3374588845405872,0.3452434557203879,0.3524798695845477,0.3601280120481928,0.3668938059872904,0.3730408338315182,0.3792581980261063,0.382401560933308,0.3852410181092652,0.387883087400681,0.3901771945648695,0.3920987654320987,0.3935848357619165,0.3956466887047062,0.3980548744118232,0.3999413348057147,0.4014349840457176,0.4023049410517949,0.4039406898205507,0.404751289726769,0.4062811339552576,0.4065877760156154,0.4082491137097201,0.4100446299194343,0.4094185487746276,0.4096767225862193,0.4123143463358903,0.4139267700354941,0.4151756491381191,0.412980303519535,0.4125770461106343,0.411122912040166,0.4136716852841185,0.4148287189113092,0.4144927536231884,0.4245495495495495,0.425414364640884,0.0,2.24245373933454,65.21350895940598,241.7442611818784,383.5064847245864,no_screening,66 +100000,95700,37837,351.4524555903866,8408,86.64576802507837,6517,67.48171368861024,2704,27.816091954022987,77.288290147924,79.65833318049985,63.294707477804174,65.04430142898998,76.95761852377595,79.32735373224932,63.17365624000622,64.92636126077454,0.3306716241480529,330.97944825053105,0.1210512377979569,117.94016821544062,0.0,0.0,0.0,0.0,88.23662,38.50574030757976,91577.73249738768,39613.14966532589,151.70026,69.61321486271757,155411.67189132707,70262.25228694326,4762.56349,2097.158073358797,4932449.247648903,2147452.545424236,1602.26335,687.1356747643837,1658792.6750261234,702575.6589805245,2679.76676,1114.2066720987837,2759829.404388715,1127632.7709236175,0.37837,100000,0,0,0.0,0,0.0,0,0.0,6668,69.03866248693835,0,0.0,14922,152.80041797283175,0,0,0,0,0,0,0,0,17,0.1776384535005224,0,0.0,0,0.0,0,0.0,0.08408,0.2222163490763009,0.3215984776403425,0.02704,0.2997742663656885,0.7002257336343115,25.94289509866312,4.789452380015995,0.3450974374712291,0.1718582169709989,0.2475065214055547,0.2355378241522172,10.81652596754712,5.167240065160273,28.870338381373163,13866.968515466311,72.7220183200246,12.739832220604548,25.341700991773266,16.88528885906695,17.755196248579846,0.5198711063372717,0.7366071428571429,0.6829702089817696,0.5498371335504886,0.1134531928084315,0.6876254180602007,0.9422382671480144,0.8645833333333334,0.7003154574132492,0.1446153846153846,0.4699322978892871,0.6690391459074733,0.620442319187089,0.5106732348111659,0.1055900621118012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021977131629852,0.0041362111089709,0.0064435604984373,0.0086755114894654,0.0111260271743552,0.0137156472421061,0.016047796741502,0.0179553922319195,0.0201371781373621,0.0223916491838509,0.0242995060159468,0.0262363737143561,0.0284180872283111,0.0305352159092079,0.0325016245654932,0.0346114096734187,0.0367778007869124,0.0386575203146566,0.0407426669440399,0.0428887082317136,0.0575498992093416,0.0708302795518793,0.0841091088464646,0.0973679502425779,0.1097540377916182,0.1253652958366863,0.1401764949504603,0.1539322131418281,0.1676433475201574,0.1800472508591065,0.1948620607838485,0.2090732774966682,0.2222161708802161,0.2350222845191033,0.2464580808637215,0.2587655526821092,0.2704921700223713,0.2815535075746466,0.292797304680386,0.3027830763220187,0.3128830794947994,0.3218419137497946,0.3302136655700322,0.3385201842253995,0.3464459424865603,0.3541084197243734,0.36124173309528,0.3672136594841909,0.3737782578705571,0.3799811693564429,0.3825903541151178,0.3856506584043377,0.3883855783817503,0.3911519611407629,0.3936963093777126,0.3957080751086856,0.3978228994007395,0.3997288852887206,0.4008577629267284,0.4021253602305475,0.4025846246996272,0.4048388383596617,0.4055581424882529,0.4064782255883148,0.40519600009685,0.4056074276122534,0.4080066674330382,0.408984052354025,0.4093315802565651,0.4106144127469521,0.4095811154825272,0.4087965461413923,0.4083492670490758,0.405974988420565,0.402441332323997,0.4036554772428622,0.4048975820113968,0.4068004916018025,0.4087772564173337,0.4095969289827255,0.0,2.355774532161856,66.38164993304049,234.840235450792,401.3125224088818,no_screening,67 +100000,95828,37840,351.8282756605585,8386,86.15435989481153,6468,66.92198522352548,2698,27.831114079392243,77.36488025655099,79.67913389934846,63.35773544642036,65.07092334257055,77.02517589873598,79.33563180281718,63.23404419574568,64.94827487954521,0.3397043578150089,343.5020965312816,0.1236912506746747,122.64846302534238,0.0,0.0,0.0,0.0,87.16729,38.51742904655809,90390.3556371833,39623.23001320732,156.25658,71.71790261756686,158924.15577910424,71740.06372811514,4722.61894,2110.523846803535,4889617.690027967,2163897.9557885868,1618.26776,708.7376588738445,1671948.9397670827,722904.4080279877,2661.46584,1111.5125049221722,2746579.559210252,1133179.6561664082,0.3784,100000,0,0,0.0,0,0.0,0,0.0,6622,68.4872897274283,0,0.0,15392,156.5304503902826,0,0,0,0,0,0,0,0,20,0.2087072671870434,0,0.0,0,0.0,0,0.0,0.08386,0.2216173361522198,0.3217266873360362,0.02698,0.2997506799637353,0.7002493200362647,25.88997130109548,4.677785084274374,0.3375077303648732,0.1784168212739641,0.2455163883735312,0.2385590599876314,11.047887587812324,5.457965003297535,28.814852773857368,13742.297641759673,72.90013770823973,13.209434545377846,24.611660646046506,17.314803753813784,17.76423876300159,0.5320037105751392,0.7694974003466204,0.6761337608795236,0.5755022683084899,0.1190176322418136,0.6763942931258107,0.923809523809524,0.8557692307692307,0.7228571428571429,0.1512605042016806,0.4868047097036135,0.7115613825983313,0.6199639206253759,0.5322715842414082,0.1096669374492282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026030588473614,0.0050894196844965,0.0070216738371621,0.0091516678178198,0.0114194486531558,0.01339958457215,0.0155558726987298,0.0177736488555852,0.0199337585868498,0.0219458518859716,0.0242692575738941,0.0262307194975524,0.0283767395013258,0.0303828736105393,0.0324286435838495,0.0343969691026024,0.0363260239966901,0.0380670161841805,0.0402155628932776,0.0422007657732645,0.057013518024032,0.0706072959130343,0.0837942593756547,0.0958121560885453,0.1073899718808252,0.1232721935354431,0.1384471964151403,0.1523758902944615,0.1657012406524359,0.1785308798012039,0.1931166553701492,0.2070531254729832,0.2193995632001564,0.2326640741064406,0.2440563206893898,0.2559814169570267,0.2672052596389569,0.2785373251699152,0.2896636113345645,0.299840984750552,0.3096613891136022,0.3181143758397102,0.3270372560615021,0.3353051766875426,0.3435676779463243,0.3505406305095612,0.3579880545434056,0.3646095878204639,0.371000336813742,0.3771794364152313,0.3807733257860618,0.3840597689741681,0.3867143341623332,0.3881984425076497,0.3906644176083354,0.3924122746239241,0.3938915722187684,0.3952068058061206,0.3964649077427142,0.3978289094056549,0.3991540051973671,0.4002724031566719,0.4010781442336262,0.4022345102660563,0.4033595060407905,0.4043653830927182,0.4052684612062761,0.4045942587695543,0.405572976054732,0.4055836536516286,0.4052857276032441,0.4057158410451824,0.403659011288439,0.4011896376301166,0.4040511727078891,0.4052414462509099,0.4032055311125078,0.4125260960334029,0.4120135363790186,0.4061635717107862,0.0,2.241413672997661,68.5954242244576,245.5033712192097,379.49454467614606,no_screening,68 +100000,95635,37930,351.6913263972395,8466,87.27976159355885,6531,67.68442515815339,2762,28.5983165159199,77.2563444549925,79.66638145334342,63.27473565930678,65.05574356445183,76.92142596893838,79.32498302507702,63.15339071209641,64.93393330410431,0.3349184860541214,341.39842826640177,0.1213449472103675,121.81026034751596,0.0,0.0,0.0,0.0,88.21055,38.92075669215484,91647.37805196842,40107.93137788696,158.27602,73.1492927688187,160517.37334657813,72755.02677881626,4752.94263,2113.0190374390927,4931399.153029749,2171258.4806736414,1628.6309,703.6934121863385,1687180.028232342,720229.5844192676,2726.13868,1130.034395942306,2824500.883567732,1159349.6304836308,0.3793,100000,0,0,0.0,0,0.0,0,0.0,6686,69.29471427824541,0,0.0,15493,157.107753437549,0,0,0,0,0,0,0,0,20,0.1986720342970669,0,0.0,0,0.0,0,0.0,0.08466,0.2232006327445294,0.3262461611150484,0.02762,0.3007619901389511,0.6992380098610489,26.06427233706348,4.703669964955731,0.3318021742459041,0.178073801868014,0.2434542949012402,0.2466697289848415,10.898824737134843,5.319724142652984,29.73215791042181,13920.208170994683,73.75758676320947,13.242781365808325,24.717007841895104,18.04010103130154,17.757696524204515,0.5288623487980402,0.7411865864144453,0.6862021227503461,0.5698324022346368,0.1176100628930817,0.6810289389067524,0.9148264984227128,0.8233082706766918,0.7575757575757576,0.1632653061224489,0.4813102893890675,0.6761229314420804,0.6415902140672783,0.5152243589743589,0.1050521251002405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026130551476173,0.0048549101486879,0.0070327484549264,0.0091127975374112,0.0114050259436361,0.0135692674429265,0.0158009629508731,0.0180125873554293,0.0202012969744082,0.0226606839182904,0.0245033656214086,0.0269556459900522,0.0291752885100425,0.031569288505356,0.0336446088052393,0.0356780695763746,0.0378471394362839,0.0399721607612162,0.0421526903426532,0.0441204080355466,0.0582413677786138,0.0726272784412319,0.0858108675568993,0.0984579758960054,0.1102810049911889,0.1256058072845019,0.1406177032477181,0.1546063491049274,0.1668857750558459,0.1788945047162218,0.194361793876671,0.208787875505097,0.2217441974448062,0.2349124941096536,0.2473723102714268,0.2600659406534119,0.2712546984070162,0.2830184425305496,0.2932375278548365,0.3031648765262095,0.3131859207870252,0.3215966021752648,0.330602552686257,0.3388779385606461,0.3471072364811315,0.3552434572789705,0.3627284718296589,0.3685387229475943,0.3753317030022374,0.3821779291517023,0.3849994587573068,0.3880090810930535,0.3906954967225675,0.3928821164267816,0.3945963775938587,0.3960492528540049,0.3976818545163869,0.3988490115430542,0.3997092268549769,0.4008971529862895,0.4021922908869849,0.4034711505701746,0.4049140988341226,0.4048905060001356,0.407027105941895,0.4083968459083836,0.4081632653061224,0.4092707203470937,0.4118837184538387,0.4144596712615038,0.413194925028835,0.4142849453684267,0.4178884691721621,0.4190916089299461,0.4186877232562512,0.4171449067431851,0.4127568230604109,0.4141867101508357,0.414332784184514,0.4138201806046329,0.0,2.3627735156647747,69.24135714532797,246.0982316954115,387.4535249626334,no_screening,69 +100000,95705,37865,352.90737161067864,8487,87.58163105375895,6571,68.22005119899691,2756,28.483360326001776,77.32722884548278,79.70397519825605,63.32110870231941,65.07598159502004,76.99861523538384,79.3705622537588,63.20197272057216,64.95713125861104,0.3286136100989409,333.41294449724046,0.1191359817472559,118.85033640899678,0.0,0.0,0.0,0.0,89.01491,39.09346854823701,92477.5821534925,40315.79180631838,156.4647,71.31910538023548,160745.27976594743,72405.3745848888,4828.02604,2133.7527194851264,5013084.185779218,2197898.646345674,1621.30433,694.9714340490399,1683718.583146126,715814.1936670404,2729.16516,1121.8662467882916,2822326.586907685,1148547.4177669664,0.37865,100000,0,0,0.0,0,0.0,0,0.0,6738,69.92320150462358,0,0.0,15346,157.61976908207512,0,0,0,0,0,0,0,0,21,0.2089754976229037,0,0.0,0,0.0,0,0.0,0.08487,0.2241383863726396,0.3247319429716036,0.02756,0.3136266935393573,0.6863733064606427,25.918444649982742,4.756636860392541,0.336782833663065,0.1719677370263278,0.2485162075787551,0.242733221731852,11.1589645243137,5.455948083684312,29.35878314353023,13806.297889312946,73.73664404738597,12.895637772797608,24.899316667248264,17.99159176865594,17.950097838684147,0.5280779181250951,0.7336283185840708,0.6954360596475373,0.5692789968652038,0.1187997550520514,0.6783546864463924,0.925925925925926,0.8587786259541985,0.6844919786096256,0.1587301587301587,0.4842767295597484,0.6732558139534883,0.6447602131438721,0.533988533988534,0.1092564491654021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021361896855447,0.0042464351227817,0.0063609617530688,0.0085316432554313,0.010626290153649,0.0128292588557522,0.0149695103297779,0.0169436132076435,0.0190109013560223,0.021054571893785,0.0232488975489693,0.0252454706051518,0.0272677713662686,0.0294899536321483,0.0316524933949801,0.0336825341013681,0.0357005957005957,0.0376553399570187,0.0398585396297066,0.0418495085418859,0.0568617415736205,0.0700672939058722,0.0839530517416796,0.0966778177533716,0.1091869772935804,0.1245239908606245,0.1391081964429729,0.1531409710391822,0.1668571916966699,0.17954301652006,0.1951700291909475,0.209525871400736,0.2226138032305433,0.2352587310094392,0.247460238842111,0.2593355938213328,0.2700844013754298,0.2809169583272375,0.2912858359352824,0.3013009341509542,0.3106160654294386,0.3196871047824254,0.3290249970382656,0.3377001979485334,0.3452983549109316,0.352416705771938,0.3593216937587798,0.3666577359309016,0.3728049667497922,0.3792277246071773,0.3820618222138086,0.3847768159162766,0.3871428571428571,0.3897656068693432,0.39279526853456,0.3942071901170592,0.3961257228426234,0.3977973423022389,0.3989429248035144,0.3994334277620396,0.4015710948685103,0.4028305074638733,0.4036981593539817,0.4044905864336546,0.405391621129326,0.4061684460260972,0.406377146154956,0.4075548619294837,0.4068482932547153,0.4069908079342041,0.4075431434403414,0.4091697376978105,0.4125546132099717,0.412150042891679,0.4100955506225268,0.4132961976265439,0.4090482154038822,0.4078212290502793,0.4070323488045007,0.4088050314465409,0.0,1.6141575347064614,66.61875862689801,251.5290262132434,394.78756160107713,no_screening,70 +100000,95785,38214,355.2539541681892,8567,88.33324633293313,6586,68.2465939343321,2639,27.206765151119697,77.38146625236273,79.70306365017437,63.35451413110488,65.06712677119265,77.0650328950269,79.38488247681977,63.240735143688426,64.95541955282442,0.3164333573358249,318.1811733546027,0.1137789874164525,111.70721836822396,0.0,0.0,0.0,0.0,89.9206,39.11737103603077,93410.9933705695,40372.17835363655,158.37257,72.25199771016291,162150.01305006005,73002.98159958716,4771.94555,2094.011076655208,4947131.669885682,2151355.219142045,1615.97468,690.9818821879578,1672424.158271128,706727.2351495101,2612.0548,1064.2838992597542,2694850.5507125333,1083207.6277825104,0.38214,100000,0,0,0.0,0,0.0,0,0.0,6759,70.05272224252232,0,0.0,15531,158.89753092864228,0,0,0,0,0,0,0,0,27,0.2818812966539646,0,0.0,0,0.0,0,0.0,0.08567,0.2241848537185324,0.3080424886191198,0.02639,0.3018430636795056,0.6981569363204945,26.18472463985936,4.693810239429119,0.3278165806255694,0.1952626784087458,0.2397509869419981,0.2371697540236866,11.214554070223292,5.485808723558519,27.80450125769989,13954.849513534093,73.2516704715558,14.4058357179712,24.152768138202543,17.346973888931043,17.346092726451026,0.5335560279380505,0.7387247278382582,0.6864289022695692,0.5697823303457106,0.1215959468017732,0.6917241379310345,0.906832298136646,0.8472505091649695,0.7440476190476191,0.1495016611295681,0.4889018691588785,0.6825726141078838,0.6390887290167866,0.5220228384991843,0.1150234741784037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021464876576959,0.004337427540638,0.0064819792860693,0.0086826712161832,0.0109815246016655,0.0130301117739275,0.0151867253750815,0.0172654823008398,0.0194217409072333,0.0215563103617613,0.0238187927713805,0.0258549047369879,0.0281891333614231,0.030224418365246,0.0323315634826537,0.0345454357682099,0.0368093715397431,0.0389516137393341,0.0410446598310842,0.0430319121245249,0.0581900150275505,0.0720743345052737,0.0852465206036896,0.0982140041417443,0.1103942652329749,0.1264885673794868,0.1412615746878944,0.1551054295415597,0.1684912048360051,0.1817333976523557,0.1965533202010742,0.2105320069204152,0.224555032455177,0.2371535449434515,0.2490371707123836,0.2614747013585692,0.2730947011142621,0.2840307948585192,0.2942312279227196,0.3042231879737183,0.3134774449155487,0.3225292553503028,0.3315403480918925,0.3396649518533175,0.3476971325075668,0.3549815043156596,0.3618084160709143,0.3691614365189494,0.3761184739476619,0.3825110626774982,0.3849327257529593,0.3879015815286273,0.3912761243526241,0.3946944988040878,0.3969475898491698,0.3989481939382756,0.4011146926655763,0.4024536846438863,0.4036838855731632,0.4051174616817075,0.4064227428270597,0.407528609111283,0.4094602559784439,0.4107034259071558,0.4113973080275007,0.4115174443043295,0.4126601183295996,0.4144626397643406,0.4136233218802026,0.4133247609097484,0.4142317264263987,0.414431330472103,0.4123312844559914,0.4111051378542354,0.4118773946360153,0.4137599230214097,0.411339889366933,0.417364657814096,0.4181969949916527,0.41284046692607,0.0,2.025907714899381,64.45865550188411,248.08655990814628,400.375356997652,no_screening,71 +100000,95756,37883,352.6358661598229,8457,87.1485859893897,6569,68.00618238021639,2710,27.935586281799573,77.31912755708531,79.66820765785523,63.32066847763053,65.05811683138714,76.99480827946944,79.3399006278351,63.203350056180106,64.94144893066678,0.3243192776158707,328.3070300201274,0.1173184214504274,116.66790072035838,0.0,0.0,0.0,0.0,89.131,39.05218949258334,92507.5295542838,40209.17696288832,157.69551,72.35072972605161,160202.62960023392,72146.8449369771,4776.38594,2113.713809385873,4953751.81711851,2173067.4416077035,1617.78145,688.5671512471162,1678575.2224403694,708177.2330163288,2686.17306,1103.4881224586304,2772963.7620619074,1128640.535364861,0.37883,100000,0,0,0.0,0,0.0,0,0.0,6716,69.53089101466226,0,0.0,15460,156.99277329880113,0,0,0,0,0,0,0,0,22,0.2297506161493796,0,0.0,0,0.0,0,0.0,0.08457,0.2232399757147005,0.3204446021047653,0.0271,0.3139144073493166,0.6860855926506834,25.80439339749396,4.705174037012968,0.3414522758410717,0.1793271426396711,0.2449383467803318,0.2342822347389252,11.03726524117631,5.375160070450077,28.8570363851318,13817.880871744374,73.73874813882065,13.516409006659176,25.18254861364013,17.29980748763923,17.739983030882115,0.5317399908661897,0.7538200339558574,0.686134641105662,0.5750487329434698,0.1124922311995028,0.6820885657633841,0.932258064516129,0.8234200743494424,0.7236467236467237,0.1464968152866242,0.486748417721519,0.6900921658986175,0.6428152492668622,0.5311447811447811,0.1042471042471042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021772372378454,0.0045095714387052,0.0065946998904265,0.0083893639927684,0.0107697470787442,0.0131272086604951,0.0152536324241651,0.0173181391169382,0.0194372303224882,0.0214778567187404,0.0234999794939096,0.0257110586302495,0.0278089165423972,0.0298026207351244,0.0319342124270001,0.0338783356414973,0.0357993250098349,0.0383382604636688,0.0401820505626734,0.0421713726266234,0.0569716707375628,0.0711932133181309,0.0838105426551717,0.0961809425669281,0.1084639630617429,0.1244607511419387,0.1400678757026195,0.1536374662212481,0.1666844611475305,0.1791862284820031,0.1942655957277288,0.2089771891096394,0.2225255304571012,0.2345878802458066,0.2469799986797808,0.2590537577247657,0.2711440564436903,0.2818767021539985,0.2925796416975091,0.3018891702086221,0.3110081649197985,0.3200576152891304,0.3283743094905048,0.3372774667851909,0.3449287714598806,0.352495488591699,0.3595361795045553,0.3662629691547875,0.3728022870508738,0.3789561465048248,0.3822905548725293,0.3855681206246634,0.3882772478985651,0.3903076788982829,0.3926288752165343,0.3939958719694402,0.3957726063617973,0.3972946636497266,0.3984154808551591,0.4005075868027431,0.4016221428166298,0.4020848697454705,0.4041629610807606,0.4053381024607792,0.4053494937694704,0.4061914438784936,0.40695290618774,0.4086726734375497,0.41024180050568,0.4093428663239074,0.4099040944300996,0.4084317213865976,0.4074145217057242,0.4092283830942225,0.4058581410931368,0.404028293969548,0.4033457249070632,0.4165122503603047,0.4112201963534362,0.4202786377708978,0.0,2.370964807157685,67.13729411623095,247.533625980872,394.5125577230959,no_screening,72 +100000,95675,38340,356.6135354063235,8642,88.96785994251373,6727,69.66292134831461,2775,28.58636007316436,77.34181859432726,79.7251278296845,63.3271521787835,65.085878504402,77.01026472196969,79.39140618414527,63.20688887779266,64.96745979868362,0.3315538723575741,333.721645539228,0.1202633009908424,118.41870571838342,0.0,0.0,0.0,0.0,91.00282,39.69688301373488,94490.10713352496,40864.87903186296,161.18797,73.87236574679065,164285.00653253202,73904.10849866866,4915.80529,2167.6017763423847,5096595.87143977,2224159.484026532,1672.99087,716.0940136675536,1731744.1964985628,731590.7015077628,2751.15222,1127.1900248921777,2837857.789391168,1147194.7992659505,0.3834,100000,0,0,0.0,0,0.0,0,0.0,6873,71.17846877449699,0,0.0,15879,161.83956101384896,0,0,0,0,0,0,0,0,17,0.1672328194408152,0,0.0,0,0.0,0,0.0,0.08642,0.2254042775169535,0.3211062254107845,0.02775,0.302363936228697,0.6976360637713029,25.991639163959466,4.701981821821653,0.329716069570388,0.1835885238590753,0.2458748327634904,0.2408205738070462,11.314668100907056,5.675570512806948,29.41693940070437,14019.569163087524,75.29138739323524,14.051771910680984,25.05697221411809,17.97889685746905,18.20374641096711,0.5318864278281552,0.734412955465587,0.6992786293958522,0.571604938271605,0.117291414752116,0.6976744186046512,0.922360248447205,0.8380952380952381,0.7685459940652819,0.1682242990654205,0.4841057066258138,0.6681270536692223,0.6562315416420555,0.5198752922837101,0.105026256564141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022075725815434,0.004449760280568,0.0067672453151791,0.0088663646889155,0.0110424207914751,0.0133277673698786,0.0154522011232404,0.017639312801772,0.019879598115271,0.0220598020247929,0.0244237552292674,0.0265998418387782,0.0286308035760213,0.0309543927621952,0.0332865429473814,0.0353434009102192,0.0373985761805577,0.0393811971136375,0.0410927551912113,0.0431491925815497,0.0581985708913125,0.0724898694281855,0.0858786237588429,0.0989424948703109,0.1112072239334993,0.1271525280304632,0.1416399634997771,0.1552929905795944,0.168589866871808,0.1815685895992192,0.1964266482865574,0.2109464575446187,0.2247745837004165,0.2375266524520256,0.2497936998690682,0.2620511627391675,0.2732358195623046,0.283984515664386,0.2950399055436349,0.3048041338695448,0.314306542315614,0.324363849078678,0.33331755517425,0.3415145919762116,0.3494973316638504,0.3567516222150946,0.3637946803312577,0.371245428247378,0.3778308437049822,0.3845045092697892,0.3872182480766635,0.3898571724280687,0.392391996040444,0.3953427638737758,0.3973164980149846,0.3997227143187244,0.4011900784369879,0.4028126237950614,0.405014100006878,0.4066024858107622,0.4092338990713357,0.4109177687183056,0.4124011388801012,0.4134160090191657,0.4142105135482619,0.4139050131926121,0.4142667513129797,0.4144537600816092,0.4155348804049478,0.4163206063782607,0.417827555884667,0.4207942160353944,0.4238874387215891,0.4242260480197637,0.4252425337645045,0.4259460766533672,0.4240012484394507,0.4271305063812268,0.4380844431850382,0.4370808678500986,0.0,2.528753240600469,66.60258336885697,261.99049894658293,397.96675194677,no_screening,73 +100000,95691,37818,351.8721718865933,8306,85.90149543844248,6384,66.2549247055627,2659,27.484298418869063,77.38307130315455,79.759287518414,63.34642469116329,65.09720400977788,77.06357077894145,79.43528230681957,63.23165837312896,64.98310804714878,0.3195005242130975,324.0052115944252,0.1147663180343343,114.09596262910782,0.0,0.0,0.0,0.0,86.15267,37.565092961988434,89572.96924475656,38797.47621196187,150.96226,68.5201153474798,154862.01419151225,69392.38812382912,4646.4373,2047.077618915384,4824238.360974386,2107828.5825368986,1625.29634,686.8174928328787,1687471.8834582146,706749.5068021035,2637.76594,1078.017679564184,2728025.8540510605,1102347.7845820363,0.37818,100000,0,0,0.0,0,0.0,0,0.0,6533,67.79111933201659,0,0.0,14822,151.9996655902854,0,0,0,0,0,0,0,0,21,0.2194563752076997,0,0.0,0,0.0,0,0.0,0.08306,0.2196308636099212,0.3201300264868769,0.02659,0.3078413494415318,0.6921586505584681,26.06688574572894,4.672832783892752,0.3261278195488721,0.1832706766917293,0.2456140350877192,0.2449874686716792,10.83956355158833,5.222741936625615,28.240149867622748,13798.76529684484,71.43583968081275,13.30503501112389,23.474252207841744,17.3644764254744,17.292076036372727,0.5363408521303258,0.7504273504273504,0.6940441882804995,0.5792838874680307,0.1243622448979591,0.6826722338204593,0.8865979381443299,0.8423153692614771,0.7439759036144579,0.1725239616613418,0.4938346472609662,0.7053469852104665,0.6470588235294118,0.5349025974025974,0.1123505976095617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024194446412844,0.0043361092537434,0.006724069735601,0.0089971160485803,0.0113364851812312,0.0135590459806386,0.015749556565883,0.0177709275383029,0.0196661658131714,0.02205046834212,0.0242472087515506,0.0261544622778102,0.0280671802203001,0.0302421639215928,0.0325382742541162,0.0343341429383494,0.0362785012068661,0.03851702699617,0.0406830424925643,0.0425321257725297,0.0574765476464074,0.0714809153912187,0.0851333913828012,0.09759533998549,0.1094769691410739,0.1250726797966022,0.1400239556502475,0.1530821662891717,0.1655357828703111,0.1787397694647984,0.1936448517705778,0.2079175810514253,0.2210377614778592,0.2331129446478334,0.2454548454152506,0.2574480107246922,0.2686350489676043,0.2794202115079231,0.2899419707241735,0.3003300708276984,0.3097556175547863,0.3189142348587755,0.3272617382854163,0.3355624122075084,0.3433970989096573,0.3510069517329942,0.3576336643595145,0.364466551878069,0.3716545249133196,0.3788959620958456,0.3817305875684866,0.3846440294596309,0.3874841079248481,0.3907237719654352,0.3934203857734847,0.3950376101770524,0.397274216376966,0.3989383623745075,0.4002990255890288,0.401311180960934,0.4021953649230306,0.4031368972081218,0.402751193656269,0.403440609068655,0.4035244417622208,0.4053190932411916,0.4064859299931366,0.4067657546782795,0.4089270568278202,0.4090709816268781,0.4114516425032116,0.4115889446163696,0.4116865029121296,0.4124647188954153,0.410642098335997,0.411646110056926,0.4139244363193174,0.4156722354813047,0.4149253731343283,0.4137410343525858,0.0,1.7283762546794854,64.43659332424026,242.44662702882343,383.88235608709306,no_screening,74 +100000,95681,38093,354.2814142828775,8441,86.90335594318621,6573,67.98632957431465,2770,28.480053511146416,77.3960056150407,79.78092606472362,63.35197710932333,65.11326553308417,77.0555522694638,79.43894271522844,63.22830401599412,64.9919954872911,0.3404533455769041,341.9833494951803,0.1236730933292094,121.270045793068,0.0,0.0,0.0,0.0,89.29161,39.195035367862985,92603.21275906396,40245.6282726433,159.99969,73.14312681757772,162493.5044575203,72814.88044191334,4817.8645,2137.535139925442,4986070.12886571,2184792.8419876536,1625.70886,700.462761346824,1681984.7723163427,714994.4407687074,2743.36038,1136.9167972836476,2823129.8794954065,1152111.1516524202,0.38093,100000,0,0,0.0,0,0.0,0,0.0,6733,69.62719871238804,0,0.0,15631,158.62083381235564,0,0,0,0,0,0,0,0,22,0.2299307072459527,0,0.0,1,0.0104513957839069,0,0.0,0.08441,0.2215892683695167,0.3281601705959009,0.0277,0.2955159981973862,0.7044840018026138,25.971820024735447,4.682405664905876,0.3275521071048227,0.1825650387950707,0.2476799026319793,0.2422029514681271,10.94834467941776,5.345863736632322,29.60406245781485,13909.598342203371,73.78510695780795,13.68400053314978,24.343712838287523,17.735700121879326,18.02169346449133,0.532024950555302,0.7391666666666666,0.6823037621922898,0.6036432160804021,0.1105651105651105,0.6936572199730094,0.9124579124579124,0.8553971486761711,0.7753424657534247,0.1641337386018237,0.4849734826163818,0.6821705426356589,0.6311672683513839,0.5525672371638142,0.0969976905311778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021272931713889,0.0043499422035651,0.006607661233024,0.0088087376174752,0.0113116188228592,0.0136541359508003,0.0156917523986255,0.0181523037499106,0.0203541270522807,0.0223853098323404,0.0247180643838425,0.0267359364251465,0.0287759425715284,0.0308807927237518,0.0327589764754436,0.0347939343194715,0.0371755298212177,0.0391729463785265,0.0411631341389853,0.0430124336887304,0.0578865457128234,0.0719608171466845,0.0849294090499066,0.097929743767677,0.1102994655788508,0.1259610198707712,0.1409081264587311,0.1549393229721098,0.1687070033756356,0.1808636149126946,0.1963447206306811,0.2103987972266989,0.2239586163426323,0.2366341287452313,0.2484055421156806,0.2607617360496014,0.2722465780931026,0.2829785799375154,0.2930422857660966,0.3029121105366701,0.312157759756013,0.3213714152210735,0.3301891252955082,0.3387052358089582,0.3468003252466656,0.353486368391901,0.360798081007471,0.3677331673673648,0.3742839779148402,0.3810867472739019,0.3841008801442683,0.3864555534156876,0.3892186861066851,0.3918060079623597,0.3948144397450408,0.396793464072362,0.3985155989256369,0.400303310035606,0.4017475494824301,0.4029931093884582,0.4031282389522284,0.4044354357934899,0.4057623049219688,0.4068790438533429,0.4076207998450663,0.4083079508454994,0.408643781008919,0.4095383247602718,0.4091247474210358,0.4094197074425333,0.4075550405561993,0.4101427335640138,0.4075665277332478,0.4077489345215033,0.4096640677639811,0.4109622411693057,0.4123259815423119,0.4126819126819127,0.414289748658571,0.4151539068666141,0.0,2.728729734734087,65.27625521924523,254.92775173779117,391.3457394418525,no_screening,75 +100000,95826,38307,355.5611211988396,8423,86.66750151315928,6460,66.87120405735396,2730,28.08214889487196,77.38566316619061,79.7052045256825,63.36611244363343,65.0836431252934,77.06058313648518,79.38082275973893,63.24750113577583,64.96854531880372,0.3250800297054326,324.3817659435706,0.1186113078575985,115.09780648968616,0.0,0.0,0.0,0.0,87.49423,38.40192065414976,90750.06783127753,39519.38999243395,156.26397,71.79159664740423,159877.71585999624,72400.95593111885,4734.60747,2093.9995415389253,4900345.375993989,2144897.5532394517,1597.50024,683.7968857213485,1651633.178886732,698200.4950214038,2704.13444,1117.1424919062845,2782734.414459541,1130706.113970677,0.38307,100000,0,0,0.0,0,0.0,0,0.0,6627,68.58263936718636,0,0.0,15259,156.1580364410494,0,0,0,0,0,0,0,0,20,0.1982760419927786,0,0.0,0,0.0,0,0.0,0.08423,0.2198814838019161,0.32411254897305,0.0273,0.3049261639048585,0.6950738360951415,25.900916198873844,4.752911450003221,0.3442724458204334,0.1707430340557275,0.253405572755418,0.231578947368421,10.951828867647013,5.250339228592448,29.05279848592605,13977.188015648968,72.38179435769787,12.52868943140806,25.06384385476865,16.88423463972122,17.905026431799943,0.5213622291021672,0.7452402538531279,0.6843525179856115,0.5601604278074866,0.1136224801466096,0.6845318860244234,0.9323843416370108,0.8565891472868217,0.7267605633802817,0.1459627329192546,0.4731247492980345,0.681265206812652,0.6323185011709602,0.5083260297984225,0.1057034220532319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002268744999139,0.0045112172176434,0.0070942140037145,0.0091947249710442,0.0113104682859351,0.013399857448325,0.0155235503368702,0.0177160934789264,0.0196637538964689,0.0220637146044188,0.0243190063333948,0.0266145255983906,0.0288492173609184,0.03087010674325,0.0331728141724326,0.0351908278675825,0.0372596900026902,0.039459364213974,0.0414005794212018,0.0432592746761017,0.0577276141200033,0.0713486728624146,0.0848601735776277,0.0980299448384554,0.1098399856735033,0.1261407808010816,0.1411650032843854,0.1550514499532273,0.1683734425669909,0.181445220446463,0.1968077096822767,0.2106349189200868,0.2236336395023125,0.2362149711253998,0.2483963797724177,0.2602667020500232,0.2713813041007987,0.2820452323974519,0.2930278410442941,0.3030808993389904,0.3129499312464612,0.322361814912547,0.3318883035271327,0.3408441271094208,0.3494951453957017,0.3569725131533658,0.3635977620141872,0.3707512792188829,0.3778332320502708,0.3843831571176206,0.3869946518300979,0.3897511464889207,0.3924486255482997,0.3946796802594995,0.3976907032181168,0.3997602729200602,0.4014667048455346,0.4037864782780932,0.4047955108785458,0.4061273715664039,0.4081108635728581,0.4094734742720383,0.4109446613478187,0.4114249473374255,0.4109548916227299,0.4123708609271523,0.4142236384704519,0.4152328662176397,0.4162058015485068,0.41508977203954,0.4145235892691952,0.4162898363479759,0.4154641808198187,0.4129848099313748,0.4146037228938783,0.4134755210857974,0.4131080869701236,0.4132947976878612,0.4129395218002813,0.4114441416893733,0.0,2.104511481682823,65.4200157020042,248.0753952010781,383.2847031194492,no_screening,76 +100000,95755,38201,354.2791499138426,8526,87.74476528640803,6676,69.03033784136599,2760,28.468487285259258,77.37657405990127,79.72568055323865,63.3458979718325,65.08101985867812,77.04727308245883,79.39320512636273,63.2265221104812,64.96334438741822,0.3293009774424433,332.47542687591647,0.1193758613513011,117.67547125990065,0.0,0.0,0.0,0.0,90.1617,39.4415505725942,93479.44232677144,40520.75792113285,160.53055,73.48285512612782,163738.5619549893,73691.70977263377,4823.34464,2127.568053048284,4989464.6650305465,2174918.1229390167,1665.91512,706.9847803803727,1720245.4702104328,719019.6583355584,2725.59974,1115.6396725974828,2812071.3069813587,1134235.7567530023,0.38201,100000,0,0,0.0,0,0.0,0,0.0,6834,70.64905226881103,0,0.0,15772,160.78533758028303,0,0,0,0,0,0,0,0,25,0.2610829721685552,0,0.0,1,0.0104433188867422,0,0.0,0.08526,0.2231878746629669,0.3237156931738212,0.0276,0.3010561423012785,0.6989438576987215,25.91040787474468,4.699882051607033,0.3391252246854404,0.1824445775913721,0.2402636309167166,0.2381665668064709,11.013375847323768,5.411179239316922,29.12264349709553,13962.168589598212,74.5830161025229,13.89862358974266,25.556182094870035,17.57422308207892,17.553987335831287,0.54239065308568,0.7315270935960592,0.7045053003533569,0.5930817610062893,0.1197007481296758,0.714095744680851,0.8927444794952681,0.875,0.7492447129909365,0.179054054054054,0.4924593967517401,0.6748057713651499,0.6484741784037559,0.5520254169976172,0.106269113149847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.0045312167381321,0.0069502222041843,0.0090820431549433,0.0116141892441623,0.0139407949002555,0.0162331372169142,0.0183975170498631,0.0207014997086455,0.0231034588651974,0.0253466848422109,0.0273557791008006,0.0295463190467868,0.0313800205973223,0.0336417938163473,0.0358660037829848,0.0377837143803843,0.0399377593360995,0.0419157319139646,0.043625873506837,0.0585945246370458,0.0727873584254504,0.0862869662756444,0.098274340003363,0.1108710544343152,0.125790152428067,0.1406367616967589,0.1549060498372098,0.1685248072446124,0.1813298163219352,0.1962393383303179,0.2108058984539819,0.2234224238270839,0.2364770240700218,0.2484119207776909,0.2602363164778647,0.2719232616051188,0.2835130450442338,0.2944655058908992,0.3045052062452033,0.3145670840373087,0.3229206884045254,0.3318698224852071,0.3402605496230779,0.3475987841945289,0.3546369624750203,0.3616475388293013,0.3686983076727319,0.3755358970041577,0.3819228889563988,0.3847563358079249,0.3873887526520265,0.3898654177129475,0.3932398771939987,0.3962224835161564,0.3979052767369003,0.3994187616128571,0.4011528326745718,0.4032197164727285,0.4039233969301391,0.4053794066054284,0.4066609633328691,0.4077811319161512,0.4090714783899926,0.4090215363744277,0.410391249474127,0.4106352400114975,0.4108308511312504,0.4090941360215817,0.410088424437299,0.4094288220898555,0.4091668013141595,0.4124769005288982,0.4143386325050162,0.4152057926829268,0.4155124653739612,0.4162128520304963,0.4086460032626427,0.402673350041771,0.4043377226955848,0.0,2.675007578595161,66.3330994001757,247.8175750037281,408.3191804202237,no_screening,77 +100000,95749,37753,350.24908876332915,8479,87.28028491159176,6556,67.8544945639119,2732,28.167396004135814,77.3313489084019,79.69796335588956,63.31030609897547,65.06317647680727,76.99587952991038,79.3604366610076,63.18721809178532,64.94224738492245,0.3354693784915241,337.52669488195863,0.1230880071901481,120.92909188481826,0.0,0.0,0.0,0.0,88.50021,38.66853756608919,91857.03244942508,39812.96678408045,154.98545,70.91694433219853,158004.2193652153,71105.88070841336,4786.07771,2113.37507086602,4956866.170926067,2165502.669339646,1583.34431,679.5200140930215,1637213.6836938246,693262.0017890735,2697.51572,1121.3995405864473,2782672.341225496,1140753.9780798748,0.37753,100000,0,0,0.0,0,0.0,0,0.0,6703,69.38975863977691,0,0.0,15170,154.54991697041223,0,0,0,0,0,0,0,0,24,0.2506553593249015,0,0.0,1,0.0104439733052042,0,0.0,0.08479,0.2245914231981564,0.3222078075244722,0.02732,0.2971242417434284,0.7028757582565716,26.04509282615342,4.72438398782282,0.3436546674801708,0.1712934716290421,0.2419158023184869,0.2431360585723002,11.034287250278275,5.37976859228028,29.129187833567286,13842.61775092291,73.21853286580469,12.688427550160023,25.33374403573684,17.65155414366297,17.544807136244852,0.5222696766320928,0.7310774710596616,0.6759875721260542,0.5664993726474279,0.1116015132408575,0.6583220568335588,0.8881118881118881,0.8484251968503937,0.6976744186046512,0.1411764705882353,0.4826703426545884,0.6774193548387096,0.6257879656160459,0.5304,0.1035313001605136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682083911691,0.0044211444274313,0.0066582085765034,0.0087279008331639,0.0108445746607255,0.0128525017567801,0.0150401239918018,0.0171436739945066,0.0194847037404494,0.0218264129299219,0.0239069567090243,0.0260340682598064,0.0280433462658612,0.0301974687719008,0.0324215524360033,0.034754823899241,0.0369465269436275,0.0392146689219338,0.0411962826669993,0.0431839013415548,0.057560415470536,0.0708649881752161,0.083914690053817,0.0970689999684499,0.1093301839041673,0.1246773852337634,0.1390230183913657,0.1532020963824619,0.1662533934717086,0.1791762357536863,0.194002500754538,0.2085562655691541,0.2217431542272306,0.2343351398697104,0.2458370044052863,0.2592765098587176,0.2706920627827738,0.2816374795878146,0.2917277011298472,0.3017407458373469,0.3112321149278804,0.3203975667787949,0.3290105952564574,0.3374448491843089,0.3454560961048771,0.3532122559920929,0.3607320254879333,0.3681041850023597,0.3749090342031396,0.3807507014664619,0.383576080201043,0.3861469472231804,0.3889155673568543,0.3909458460735867,0.3935937337125668,0.3950702603086846,0.3971050376154652,0.3983587106980423,0.3993644795602886,0.4004880061718427,0.4024564840629945,0.4038151691762974,0.405663560072534,0.4061085208460031,0.4073921373657022,0.4081187024808608,0.4079170377179627,0.4084695110319832,0.4091314110560644,0.4092781007751938,0.4079574369650705,0.4088805166846071,0.4093728022504955,0.409382487054641,0.4077761972498814,0.4072709991683497,0.4068081208975729,0.4129303442754203,0.4150273224043715,0.4095238095238095,0.0,2.4369985322370704,65.49044958964855,246.1148857777391,396.10774061600233,no_screening,78 +100000,95477,37993,354.2109618023189,8392,86.58629827078772,6571,68.07922326843114,2742,28.21621961310053,77.22623088476638,79.71282846839038,63.24095407219974,65.0760219133265,76.89559490012817,79.38374077566505,63.11983606279999,64.95901352470155,0.3306359846382065,329.0876927253379,0.1211180093997512,117.00838862495289,0.0,0.0,0.0,0.0,89.05063,38.94796559733072,92525.9067628853,40050.98380969383,157.27312,71.96140901237814,160455.6490044723,71980.14898960941,4799.48976,2114.433877821866,4979480.566000189,2167272.790817772,1655.00285,704.5691748071475,1717274.2754799586,721844.1093735881,2713.48454,1117.6416231115652,2796064.078259685,1131173.6589441337,0.37993,100000,0,0,0.0,0,0.0,0,0.0,6720,69.60838736030666,0,0.0,15419,157.35726928998605,0,0,0,0,0,0,0,0,25,0.2408957131036794,0,0.0,0,0.0,0,0.0,0.08392,0.2208827941989314,0.3267397521448999,0.02742,0.3083314619357736,0.6916685380642263,25.875765973536836,4.7540486736022425,0.3297823771115507,0.1780550905493836,0.2451681631410744,0.2469943691979911,10.99700657216396,5.365325449950481,29.16684717938827,13936.190435907183,73.58313815820543,13.259049010320416,24.427319147131964,18.235214351533745,17.66155564921929,0.5373611322477553,0.7316239316239316,0.7078910936778957,0.5760936537276649,0.1278708876474239,0.6928813559322033,0.903010033444816,0.8626692456479691,0.7371428571428571,0.1553398058252427,0.4923469387755102,0.6727898966704937,0.6593939393939394,0.5318146111547526,0.1213517665130568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022394487510766,0.0046050696339273,0.0069445854569821,0.0091814946619217,0.0113617853070532,0.0136676349182082,0.0157552628088041,0.0179020293053767,0.0200313053086028,0.0219667629761685,0.0242240105107571,0.0264959901295496,0.0285019976111042,0.0305805666429448,0.0327323448881541,0.0350157892012217,0.0367327461903131,0.0387937755324788,0.040715119186531,0.0428335735020779,0.057499057907298,0.071609186960308,0.0851220461261791,0.0981586685919664,0.1101857918877216,0.1263210337188225,0.1416480595427963,0.155925910119073,0.1693729782995223,0.1814585483316133,0.1956028767034533,0.2098490848531533,0.2232667706367989,0.2364597383513724,0.248454814356982,0.2611382836816363,0.2723762841603437,0.284035546734031,0.2941979677525801,0.3037153551172242,0.3133710068578192,0.3224803472955532,0.331635500148412,0.3398883837290419,0.3478616313830761,0.3548063465325687,0.3618767147423796,0.3687862455673191,0.3751025457386548,0.3818080475634356,0.3847362787735913,0.3875397593693818,0.3906493359386062,0.3929095106052467,0.395397176695777,0.3965418845341107,0.3982668092373003,0.4001556574872907,0.4018178995843323,0.403314518601338,0.4046376153729762,0.4055057592877248,0.4063187743355341,0.4075706214689265,0.4076465590484282,0.4093376192232703,0.4101063676457871,0.412216416008157,0.4134492092890725,0.4134456491072508,0.4144285978884979,0.4142110650218176,0.4121879775853286,0.4119453400890526,0.4150730098916627,0.4127548601232811,0.4082483781278962,0.4093821037404422,0.408926080892608,0.4081948202551217,0.0,2.8464912935236466,64.9364872807798,248.5685032232872,398.3749293585568,no_screening,79 +100000,95714,38036,354.2428484861149,8513,87.83459055101657,6647,68.91363854817477,2705,27.926949035668763,77.36399481233721,79.74750452201556,63.33329461681414,65.09672283658628,77.04456882864267,79.42394465454238,63.21814418949355,64.98239866959241,0.3194259836945434,323.559867473179,0.115150427320593,114.3241669938675,0.0,0.0,0.0,0.0,89.58423,39.176238127321184,93050.23298577013,40385.00964051359,160.88275,73.57560174622913,164858.9339072654,74388.90790078758,4822.29908,2118.332844320352,5004083.833086069,2179036.0493975314,1624.52187,689.3048618869317,1684987.1074242012,707891.7941857323,2671.0094,1087.1429138791525,2759671.4169296026,1110266.039885405,0.38036,100000,0,0,0.0,0,0.0,0,0.0,6811,70.58528532920994,0,0.0,15766,161.3974967089454,0,0,0,0,0,0,0,0,23,0.2402992247738053,0,0.0,0,0.0,0,0.0,0.08513,0.2238142812072773,0.3177493245624339,0.02705,0.3046342825237297,0.6953657174762703,26.04832607222589,4.656833171280756,0.3427109974424552,0.1818865653678351,0.235444561456296,0.2399578757334135,10.88833462354098,5.327832677866983,28.604269023586724,13868.479449644914,74.35482350160275,13.7409055750584,25.602533070598103,17.763892162379758,17.24749269356649,0.5393410561155408,0.7419354838709677,0.6935908691834943,0.5849529780564263,0.1118210862619808,0.7044368600682593,0.9019607843137256,0.884765625,0.7703488372093024,0.1254125412541254,0.4926669239675801,0.6877076411960132,0.6381653454133636,0.533972821742606,0.1085578446909667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021073747986342,0.0043201801089172,0.0065581093153577,0.0088318393397971,0.0109180080994729,0.0132750575626057,0.0155351095515932,0.017504800032681,0.0196270954148895,0.0217798666789543,0.0238017105236171,0.0258603867760786,0.0282555029829253,0.0302212238925925,0.0320140358119614,0.0339130254968051,0.0360790569516667,0.0381346698627151,0.0404240943817888,0.0422995978412619,0.0568012114249908,0.0713523131672597,0.0850170999349573,0.0976497187023502,0.110093387018572,0.1254334771208661,0.1396973841863621,0.1536996851331801,0.1670473953885567,0.179153583178832,0.1936407166299026,0.2072553430821147,0.2210503425029901,0.2335677029228767,0.2459770114942528,0.2585330750069194,0.2712244419904293,0.2821798879917231,0.2923214832801915,0.3024182467710909,0.3119620546043498,0.3205437147603116,0.3294524522983264,0.3380143187787065,0.3457564485935867,0.3537445151111768,0.3609942399198597,0.3672087755465628,0.3739691088698714,0.3813581680033769,0.3845294196849333,0.3874822738975397,0.3903071653110418,0.3923594530062947,0.3946980854197349,0.3959696574975098,0.3981026891767761,0.3999671754472345,0.4015381985985302,0.4032647801106159,0.4048273007750771,0.4063938720431814,0.4072959838428039,0.4089957452556223,0.4098677689946092,0.4102294253841296,0.4113377117179398,0.4118636003172086,0.4139191539198637,0.413835973531181,0.4140819144040497,0.4136636636636636,0.413234257895074,0.4140345417768788,0.4152852737085582,0.417224996954562,0.4203721223588773,0.4161607703579652,0.4163812785388128,0.4135579622944244,0.0,2.0684836475183728,65.2221958479084,260.83617730866706,394.5656385497705,no_screening,80 +100000,95668,37933,351.9463143370824,8446,87.12422126520885,6492,67.2638708868169,2720,28.05535811347577,77.31725194233033,79.72423331707675,63.30264576078415,65.08435580663438,76.9862002580478,79.39206406536798,63.18223277229836,64.96675872585143,0.3310516842825279,332.16925170877687,0.1204129884857962,117.59708078294295,0.0,0.0,0.0,0.0,88.33224,38.67509882005263,91747.30317347494,39841.68614294039,155.44986,70.96793147052857,158615.31546598652,71302.23175299593,4748.08167,2094.97412725394,4925591.681649036,2152357.0399342286,1603.40464,687.3492111324085,1661678.5131914536,704142.6298578505,2684.97682,1111.277751750504,2772234.9583977927,1130249.5289629602,0.37933,100000,0,0,0.0,0,0.0,0,0.0,6647,68.87360454906552,0,0.0,15207,155.11978927122965,0,0,0,0,0,0,0,0,19,0.1986035037839194,0,0.0,0,0.0,0,0.0,0.08446,0.2226557351119078,0.322045938905991,0.0272,0.3062730627306273,0.6937269372693727,26.269467438703856,4.777809519322429,0.3394947627849661,0.1728280961182994,0.2438385705483672,0.2438385705483672,10.985381224279402,5.3097466196695695,28.97502604898154,13952.880272276116,72.81292198836954,12.85574444998247,24.680024676641573,17.661417522143886,17.615735339601613,0.5243376463339495,0.731729055258467,0.690562613430127,0.5698041692987997,0.1004421983575489,0.6622002820874471,0.8989169675090253,0.856,0.7111801242236024,0.1034482758620689,0.4858100118249902,0.676923076923077,0.642018779342723,0.5337034099920698,0.0996835443037974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023807835310565,0.0047964305633017,0.0069111095324598,0.0092674450507575,0.0115277000559597,0.0136803504125496,0.0163528043580274,0.0186848100360619,0.0209737980990577,0.0234104460791344,0.0254029486298207,0.0274052837633712,0.0294405270471974,0.0314558782592558,0.0332971856442034,0.035550221412904,0.037474343291937,0.0395879200764341,0.0415556850341268,0.0436278342455043,0.0583840937823238,0.0722034892244539,0.0858501558907819,0.0986385253145911,0.1112013672039834,0.1266085336945479,0.141450161317711,0.1552093206530421,0.1682501683249794,0.1810408642756756,0.1955271152478831,0.2091530158180223,0.2233046696418852,0.2357919399161366,0.248088491285283,0.2606733849957317,0.2719824073763995,0.2836101359258259,0.2941663735291114,0.304334379510206,0.3142595851083534,0.3230004095722895,0.3313866710891042,0.3391625586220959,0.3468742398443201,0.3540355035429474,0.3612193990749213,0.3680348543911946,0.374933547709503,0.3815040355071794,0.3850031675854911,0.3880913674813325,0.3904017825663879,0.3930614077002157,0.3955920974095738,0.3971799331927405,0.3986451028099804,0.3998580717562795,0.4018365945760384,0.402888669597201,0.4047982798619363,0.4060552978880108,0.4073658825520392,0.4083444396756195,0.4097606117429316,0.4114278173660596,0.4114373053408697,0.4125143002415152,0.4128349086774217,0.4113058861370215,0.4128966601905819,0.4125775978407557,0.4128358017567481,0.4151075227078643,0.413713847921854,0.4150739271547061,0.4200093647572967,0.4124223602484472,0.4152354570637119,0.4098297213622291,0.0,2.319424643591598,62.74363676430112,261.0934961689134,382.0149784245562,no_screening,81 +100000,95862,38099,354.1027727358077,8417,86.68711272454154,6450,66.7522062965513,2750,28.353257808099144,77.4717338221379,79.75826329275255,63.40399372213196,65.09059237884107,77.14823891689959,79.43174084402504,63.287474572374784,64.97557591896447,0.32349490523832,326.522448727502,0.116519149757174,115.0164598765997,0.0,0.0,0.0,0.0,86.87303,37.62594571812537,90105.34935636644,38732.4546933356,151.61567,68.81999287998777,154859.5585320565,69228.31966472033,4758.71345,2072.6819810236902,4928155.755148025,2126178.4659444736,1622.10425,682.1343920758039,1680884.417183034,700339.6153593742,2724.77134,1102.8545305169885,2811230.831820742,1122858.5801788114,0.38099,100000,0,0,0.0,0,0.0,0,0.0,6596,68.27522897498488,0,0.0,14886,151.97888631574557,0,0,0,0,0,0,0,0,20,0.2086332436210385,0,0.0,0,0.0,0,0.0,0.08417,0.2209244337121709,0.3267197338719259,0.0275,0.3001465779682039,0.6998534220317961,26.309227611028955,4.764904593656495,0.3510077519379845,0.1590697674418604,0.2511627906976744,0.2387596899224806,10.908435544909786,5.211831258370104,28.73803995653178,13871.693197607992,71.54293835105118,11.75497738865586,25.170413162526103,17.047473888643097,17.570073911226103,0.5266666666666666,0.7543859649122807,0.683303886925795,0.5694805194805195,0.1228395061728395,0.6705286024619841,0.8931297709923665,0.852589641434263,0.7060702875399361,0.1414473684210526,0.4874728743341882,0.7068062827225131,0.6350737797956867,0.534637326813366,0.1185410334346504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022573134932685,0.0045688930311718,0.00667220994139,0.0089829476248477,0.0111881147874156,0.0132977911626156,0.0152595550484883,0.0174522383949244,0.0195249474092682,0.0217622514930868,0.023935107897459,0.0260599347732447,0.0280445836971595,0.0301262462573695,0.0321094297612666,0.0341074544872523,0.0360172121312425,0.0381279083023287,0.0403281071539819,0.0425208649863675,0.0575170486538341,0.0716921565142851,0.0852651435757702,0.0974056678119976,0.1094082678078293,0.1246193859426541,0.1402924615335673,0.1543297872340425,0.1668250290924231,0.1791972563099512,0.1940492844076186,0.2079240022047142,0.2213776928422515,0.2340688013799578,0.2462356261875213,0.2585259620380504,0.2704051509986743,0.2813668571941921,0.2926804403969009,0.3024692064000366,0.3120891815398833,0.3205280851659896,0.3295168551274325,0.3379452317119877,0.3468215811965812,0.354580053948195,0.3623744794727825,0.3691384396297426,0.3749126484975542,0.3816580529480012,0.3847386206060932,0.386833028733184,0.3897956886362357,0.3927123169059817,0.3950646612522457,0.39640632413487,0.3978729465387902,0.399195336234502,0.4011758070856049,0.4026544720530179,0.4035397233535406,0.4048925423393087,0.4056576016140557,0.4067043618739903,0.4077424023154848,0.4097249483133129,0.4097156736676668,0.411041784836453,0.412591579906755,0.4134371029224905,0.4131613726473135,0.412028869286287,0.4133715377268386,0.4139452097198576,0.4157195145444037,0.4124149659863945,0.4127798507462686,0.4101618520794919,0.4074279379157428,0.4122196442382057,0.0,2.1052064713789544,61.29083331988713,245.72184363755005,393.03337822157545,no_screening,82 +100000,95739,38050,353.2416256697897,8417,86.63136234972164,6522,67.5168948913191,2700,27.867431245365,77.34438518034166,79.6974418366339,63.33412346583962,65.07246405774053,77.02245665183005,79.37199845543734,63.21744581029478,64.95669816360598,0.3219285285116058,325.443381196564,0.1166776555448407,115.76589413455451,0.0,0.0,0.0,0.0,88.93874,38.78349770645516,92278.81009828804,39891.33760166197,152.68603,69.98368380498772,155071.339788383,69714.29237652758,4774.68319,2096.698494911453,4949725.367927386,2152703.0494911824,1611.3832,682.6138218657682,1668173.8789834862,698156.0314417244,2676.37786,1098.3452511252076,2765192.7636595326,1121925.3633002744,0.3805,100000,0,0,0.0,0,0.0,0,0.0,6689,69.24033048183081,0,0.0,14983,152.1428049175362,0,0,0,0,0,0,0,0,26,0.2715716688079048,0,0.0,0,0.0,0,0.0,0.08417,0.2212089356110381,0.3207793750742544,0.027,0.3029415079454525,0.6970584920545475,26.17678202493044,4.762405845143558,0.3350199325360319,0.1781662066850659,0.2462434835939895,0.2405703771849126,10.891604219193267,5.223568904590549,28.62243887778651,13895.176322657955,72.80770962461277,13.303132567907925,24.419742574725262,17.398783191869686,17.6860512901099,0.5352652560564244,0.7504302925989673,0.691533180778032,0.5825366475462078,0.1207970112079701,0.6745315752949341,0.9362416107382552,0.8461538461538461,0.7181818181818181,0.1191222570532915,0.4957685494981302,0.6863425925925926,0.6463630987581312,0.546408393866021,0.1212121212121212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00212714233621,0.00450153599708,0.0067573737558213,0.0091100210231254,0.011295931024666,0.0133560005293536,0.0156437903834002,0.0179805092096535,0.0204044098864832,0.0225723933285582,0.0247151405852938,0.0267060791739795,0.028809673140789,0.0311219130398961,0.0332786597757352,0.0351761909682752,0.0374591148097544,0.0394686356047329,0.0412890754905221,0.0431839013415548,0.0580755619121193,0.0721850146504813,0.0850945553329627,0.0981996382450679,0.1101386618864343,0.1254295714331031,0.1393829478082874,0.1534205766570912,0.1670440466527107,0.1797450440115362,0.195097268724364,0.2090306249391503,0.2228239003968901,0.2356522879818098,0.2474098677987725,0.2601778141919197,0.2716923008237158,0.2821741526901315,0.2924260650491386,0.3021798646032601,0.3111733524686929,0.3203830081119994,0.3294617697899647,0.3379299584743525,0.345989714410767,0.353682026966958,0.3613442215782937,0.3681933614936001,0.3747420070875034,0.3809838841991055,0.3843610402580401,0.386692780888803,0.3896485478585151,0.3918891497811403,0.3940510464370422,0.3959667487684729,0.3973342251098796,0.3990432200593863,0.4008003297495964,0.4018642911024103,0.403770383636535,0.4041973343942709,0.4043344176418402,0.4056416278964723,0.407174996959747,0.4095436340640809,0.4105866758875057,0.4122030443920769,0.4140308479636079,0.4146164686933762,0.4132582402363586,0.414263382027923,0.4154857653517171,0.4133803897498849,0.4141634980988593,0.4143096836049856,0.4214052033026951,0.4238174968606111,0.4171830985915493,0.4209486166007905,0.0,2.311377283531387,63.81056631070693,246.1444346531142,398.2905409181055,no_screening,83 +100000,95677,37893,353.146524243026,8490,87.56545460246454,6572,68.17730489041253,2744,28.324466695235007,77.28108161739658,79.6670531338497,63.29287913429015,65.05505360398604,76.95459833206569,79.33899715478155,63.17473358109936,64.93918800761885,0.3264832853308945,328.05597906815365,0.1181455531907929,115.8655963671862,0.0,0.0,0.0,0.0,88.92171,38.42388027988278,92400.22157885385,39630.17296324332,151.98898,69.50086743525871,155813.76924443702,70331.49424149224,4824.40276,2099.391388900125,5006904.428441527,2159438.2754337885,1622.20797,685.6716805710548,1683954.1896171493,705327.692684831,2719.3835,1106.8922768165985,2808706.481181476,1128352.5170202015,0.37893,100000,0,0,0.0,0,0.0,0,0.0,6719,69.68236880336967,0,0.0,14866,152.34591385599464,0,0,0,0,0,0,0,0,28,0.2926513164083322,0,0.0,0,0.0,0,0.0,0.0849,0.2240519357137202,0.3232037691401649,0.02744,0.2993744414655943,0.7006255585344057,26.29035910920613,4.710082306762925,0.3297321972002434,0.1832014607425441,0.2527388922702374,0.234327449786975,11.004387543103247,5.378699962513443,29.00624910660731,13816.430014122838,73.12679711124845,13.728148838808266,24.15084232632156,17.20852169661351,18.03928424950512,0.5143031040779062,0.7317275747508306,0.6760498384863867,0.5590909090909091,0.1041541240216736,0.686986301369863,0.883495145631068,0.8536082474226804,0.7534626038781164,0.1442622950819672,0.4649843505477308,0.6793296089385474,0.6248513674197385,0.4995759117896522,0.0951327433628318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021475966165223,0.0044404343109723,0.0069111095324598,0.0091028232975383,0.0114618717328071,0.0139811005661683,0.0163244081000061,0.018305631559603,0.020567339637107,0.0226409686895464,0.0244437608940838,0.0261720434523687,0.0280857278018881,0.0301584684814639,0.0318092682423366,0.0337796618931913,0.0356965277202287,0.0380407705721165,0.0399879328818566,0.0419029352901934,0.055897441255446,0.0702206305825191,0.0833368323815922,0.096362469354041,0.1090020890924054,0.1246746651431473,0.138759434813533,0.1521722922236305,0.1652196227706257,0.1778450701200524,0.1930170851669686,0.2068666551066412,0.2200235237742589,0.2324017696789171,0.2452923741419394,0.2574952582716816,0.2687995349721095,0.2801212285089794,0.2907460447354064,0.301369705868857,0.3107057173653527,0.3202597524381095,0.3287258403236714,0.3376754470294174,0.3452743345590921,0.3532150885600652,0.3608511278950141,0.3675959967320261,0.3739099923325839,0.3804298852402534,0.3834819435236175,0.3863145955516211,0.3892291985706993,0.3911253963175194,0.393239765381853,0.3946540880503145,0.3965275565466709,0.3983266642415424,0.4002548516522308,0.4012557796448554,0.401803777723156,0.4032951432627517,0.4033363754059044,0.4053772216177004,0.4068445702019709,0.4078169534466378,0.407529493407356,0.4091257668711656,0.4096616982675821,0.4102079395085066,0.4093972122219145,0.410009158002478,0.4112257320433139,0.4106950223455078,0.4118938526155021,0.4144047619047619,0.4173791388154826,0.4169567888593078,0.4201936376210235,0.4193929838391801,0.0,1.9391850809606237,65.41368428409929,240.12294345972825,405.9685001670553,no_screening,84 +100000,95728,38136,353.7105131205081,8460,87.09050643489888,6542,67.77536353000167,2747,28.27803777369213,77.3612597271838,79.72727361477256,63.34108899169471,65.08922797279435,77.03361496969161,79.39877839781815,63.22119696804805,64.97225178986203,0.3276447574921945,328.4952169544084,0.1198920236466634,116.97618293231926,0.0,0.0,0.0,0.0,88.65044,39.00992936967645,92036.73951195052,40180.94953375861,158.92683,73.27300405883418,162980.5386093933,74075.82052542894,4790.29547,2124.4811189094967,4965213.4485208085,2180433.289016272,1626.39724,698.0328033151366,1684145.1299515292,714351.0919638309,2714.9285,1118.217171900464,2797072.2045796425,1133750.1283038442,0.38136,100000,0,0,0.0,0,0.0,0,0.0,6706,69.46765836536855,0,0.0,15548,159.46222630787233,0,0,0,0,0,0,0,0,22,0.2193715527327427,0,0.0,0,0.0,0,0.0,0.0846,0.2218376337319068,0.3247044917257683,0.02747,0.3039435357382926,0.6960564642617074,26.08762973540352,4.713411969377014,0.3284928156527056,0.1848058697645979,0.2454906756343625,0.2412106389483338,11.008672514013805,5.432839853753206,29.123313966069503,13908.554036988891,73.34936140667928,13.844448564711968,24.25029776978184,17.60752656925867,17.647088502926795,0.5398960562519107,0.7576509511993383,0.6961377384830154,0.5798479087452472,0.1276463262764632,0.6960849369608494,0.9130434782608696,0.8585271317829457,0.7557471264367817,0.1526479750778816,0.4931479642502482,0.7012401352874859,0.6448254745866503,0.5300813008130081,0.1214007782101167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022791503327559,0.0045725525184524,0.0066164681049704,0.0093364895205778,0.0115122546527,0.0138490051119121,0.0162951481655211,0.0183693265941696,0.0204484341611541,0.0226351351351351,0.0248531266340623,0.0270836542905561,0.0290648044347996,0.0313063364684309,0.0335789321610633,0.0354292448928955,0.0375402586912171,0.0396106389381816,0.0417706513601197,0.04378223495702,0.0583776220855564,0.0721403450008373,0.0857154845951304,0.0986150982680841,0.1106625629782659,0.1261337448994693,0.1411741002311722,0.1552481779007288,0.1679768440390489,0.1801089100420204,0.1951463732382992,0.2089476359938993,0.2220712150040772,0.234996993385448,0.2474764135382991,0.2592096524241753,0.2700930201432108,0.2811825539568345,0.2918967961440317,0.302115184205403,0.3112026473514914,0.3200814063651356,0.3290950419093621,0.3373964738173144,0.3458432996199657,0.3533722534239826,0.3606036338155063,0.3670210734067613,0.3735735034754642,0.3801935944566396,0.3836279546404541,0.3865207214649593,0.3890934224817683,0.391765421725147,0.3950035773908896,0.3970332795327031,0.3990596159039283,0.4015059149174548,0.4033261894556365,0.40454055994257,0.4061445669588163,0.4073313666081964,0.4088047657273226,0.4091360028860029,0.4097234027052624,0.4101102844177088,0.4109458483754513,0.4116182572614107,0.4108300676879231,0.4109008754589099,0.4115040162496537,0.4136949516648764,0.4154786150712831,0.4177479147358665,0.4192135580310387,0.4192617530359505,0.422747782791349,0.4207920792079208,0.413852318259874,0.419460343417825,0.0,2.2345649807114363,66.83197594984519,247.60071028152808,390.8654616769309,no_screening,85 +100000,95657,38053,355.01845134177324,8366,86.23519449700493,6491,67.344783967718,2673,27.58815350680034,77.2430810454354,79.64912556409396,63.27207635196621,65.05078985892894,76.92288705728973,79.32592350081353,63.15562108129793,64.93592764124269,0.3201939881456752,323.20206328043355,0.1164552706682826,114.86221768625173,0.0,0.0,0.0,0.0,88.28379,38.78515732455384,91791.06599621564,40046.93367720144,157.30145,72.16517677285913,161724.97569440815,73308.67066570597,4757.23136,2105.3631513768346,4941099.699969684,2169060.101722689,1636.89408,700.8361219569059,1699617.6965616734,721403.0526798072,2652.70154,1091.451330072211,2741025.727338303,1112657.2898554232,0.38053,100000,0,0,0.0,0,0.0,0,0.0,6660,69.08015095601995,0,0.0,15441,158.67108523160877,0,0,0,0,0,0,0,0,20,0.20908036003638,0,0.0,0,0.0,0,0.0,0.08366,0.2198512600846188,0.3195075304805164,0.02673,0.3045892351274787,0.6954107648725213,25.83897934031436,4.759495530573924,0.3426282545062394,0.1720844245878909,0.2512709906023725,0.2340163303034971,11.17515445487119,5.4769624246012425,28.48988101218088,13883.617080615926,73.11963177134176,12.802599540910066,25.26709366762759,17.061938130969782,17.988000431834326,0.5313511015251887,0.7439570277529096,0.6924460431654677,0.5918367346938775,0.1097486204782342,0.6985934360348292,0.9185667752442996,0.8555555555555555,0.7485029940119761,0.157051282051282,0.4813925570228091,0.6777777777777778,0.6401425178147269,0.5476793248945148,0.0985595147839272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023309550835089,0.0047876980504331,0.0069337989705897,0.0089312023084973,0.0109954939835016,0.0134731910993431,0.0155595207749171,0.0178381800359418,0.020216377617801,0.0222520326868331,0.0243562264770128,0.0264025385871407,0.0282811246631975,0.030133204215558,0.0322044570142752,0.0343194532049757,0.0362666390428342,0.0381956697735245,0.0400657360986873,0.0419081773070347,0.0564373713413933,0.0697063013239483,0.0828853987317851,0.096130770688167,0.1082513407372999,0.1231366985686457,0.1382585415604283,0.1523593253587496,0.1658356516156644,0.1785756478965513,0.1942921881743634,0.2080889765742718,0.2215723434845118,0.2345829089594901,0.2465196256737541,0.2577724519006724,0.270168729663547,0.2812306235414811,0.2921385364078774,0.3023928055243295,0.3116535250463821,0.320725091105096,0.3301885674327095,0.3384759457804565,0.3467454180113256,0.354384230365198,0.3614454806762981,0.3683645975661146,0.3765928121911894,0.3827973807693327,0.3856839772435507,0.3890162395050817,0.3913135803168222,0.3946477604567709,0.3967753032501234,0.3982882257691418,0.4003350350989151,0.4027543284669116,0.4037193284545846,0.4051292217856757,0.405798749289369,0.4077543585740307,0.408924218335983,0.4104508011224766,0.4107177639267627,0.4113255499960289,0.4125195981650311,0.4119734066355558,0.4140382211109126,0.4145836714819023,0.4136435698964842,0.4145561039101904,0.4147548358074673,0.4160964230171073,0.4152894558809317,0.4160203587009209,0.4152676591700981,0.417206097306327,0.4137443438914027,0.4049225883287018,0.0,1.9797161253219135,66.66764347875854,249.80036527137693,386.4329660092276,no_screening,86 +100000,95814,37917,352.1092950925752,8461,87.16888972383995,6554,67.78758845262696,2722,28.002170872732588,77.44904619750217,79.77569334696068,63.38601454967061,65.10702509165603,77.12870538481555,79.4527104018591,63.27085844349156,64.99353667949208,0.3203408126866236,322.982945101586,0.1151561061790573,113.4884121639459,0.0,0.0,0.0,0.0,89.07926,38.78278481623754,92365.32239547456,39880.1129408033,157.80093,71.5134208150484,160617.2166906715,71626.51292900673,4818.18202,2104.808545394029,4990449.735946731,2158856.4070814294,1628.95216,692.1508165035831,1685176.487778404,707562.4067842641,2707.79728,1102.6776156800934,2789516.2084872774,1120864.597098024,0.37917,100000,0,0,0.0,0,0.0,0,0.0,6717,69.45749055461624,0,0.0,15462,157.3569624480765,0,0,0,0,0,0,0,0,21,0.2087377627486588,0,0.0,0,0.0,0,0.0,0.08461,0.2231452910304085,0.3217113816333766,0.02722,0.3061659192825112,0.6938340807174888,25.90659915443458,4.780096370000726,0.3350625572169667,0.1849252364967958,0.254806225205981,0.2252059810802563,10.990658737280713,5.246600903141656,28.695558849548863,13841.513104020329,73.08268647185902,13.76004372481333,24.63639680237312,16.34547320647944,18.34077273819312,0.5299054012816601,0.7417491749174917,0.7030965391621129,0.5846883468834688,0.1,0.6826516220028209,0.90625,0.8608349900596421,0.7272727272727273,0.1363636363636363,0.4877336448598131,0.6904761904761905,0.6562315416420555,0.5453759723422644,0.0917767988252569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023495336378274,0.00468308110245,0.0068694002212007,0.0091526904440223,0.011277545583046,0.0135114496044311,0.0155786425782245,0.0176466385654068,0.0194685743484925,0.0216205707503248,0.023958600194702,0.0262110016420361,0.0286595394736842,0.0305373377124795,0.0326419900784851,0.0347225091945948,0.0367621945539789,0.0385205615810538,0.0405498067572621,0.0425992629453038,0.0569980075733077,0.0714927963532191,0.0849324543844388,0.0981393345310513,0.1099532158813116,0.1254187494055607,0.1395666829195904,0.1534878774989366,0.1665724313771509,0.1791974984740263,0.1941911480063658,0.2082383570818974,0.2214176374157266,0.2339571171367777,0.2464818107971635,0.2583418990461664,0.2705182743490946,0.2810030531609195,0.2910548303463267,0.3011690226148167,0.31098539513941,0.320235733457813,0.3286156098021625,0.3366142438557675,0.3449944220788669,0.3526864790395591,0.3601073791984018,0.3669388117881585,0.373338848958064,0.3788297900366184,0.3817116124001828,0.3843055307331692,0.3872575241420085,0.3898128747922837,0.3924514855013288,0.3937232088181261,0.3955990065334662,0.3968543236631696,0.3985583985242373,0.4010360843158271,0.4027363324137154,0.4045517514347912,0.4061987812565665,0.4071394873407769,0.4090733404193641,0.4114709957388963,0.4127220630372493,0.4131204552639899,0.4134704005671747,0.4148370325934813,0.416981305829266,0.4191671604805257,0.415131747249936,0.4164803823325368,0.4139218690157027,0.413618864292589,0.4167573449401523,0.4150475403059115,0.4162933930571109,0.4252029377657518,0.0,2.3949543902901533,62.690132434565655,258.60988581715003,389.2509782824293,no_screening,87 +100000,95811,38176,354.8026844516809,8637,88.85201072945695,6655,68.9273674212773,2759,28.462285123837557,77.3497797498425,79.68299264279925,63.33168066437421,65.06000440180942,77.0221694849212,79.35148470241887,63.21359059839205,64.94273779327023,0.3276102649212902,331.50794038037645,0.1180900659821588,117.26660853919668,0.0,0.0,0.0,0.0,90.49806,39.33966390357672,93939.90251641252,40544.7849449194,156.43862,71.4045673149331,159587.40645646118,71733.8036090434,4916.54764,2158.5901018633213,5097254.292304642,2218714.731986224,1682.85414,711.4392205410977,1745457.5153166128,731570.8849099753,2748.7235,1121.0982270257552,2838723.2154971766,1144278.87532474,0.38176,100000,0,0,0.0,0,0.0,0,0.0,6830,70.73300560478441,0,0.0,15400,157.12183360991952,0,0,0,0,0,0,0,0,17,0.166995438937074,0,0.0,0,0.0,0,0.0,0.08637,0.2262416177703269,0.3194396202385087,0.02759,0.3052411822876607,0.6947588177123393,26.19834239283912,4.84558576962249,0.3301277235161532,0.1750563486100676,0.2552967693463561,0.239519158527423,11.127844169320277,5.268459837209695,29.16853176965348,13925.381433029272,74.26581517290697,13.13519273092659,24.573531054349605,17.841986081953266,18.715105305677504,0.529075882794891,0.7416309012875536,0.7023213472917615,0.5752823086574655,0.1159505591524426,0.6682528891910265,0.9230769230769232,0.8537074148296593,0.7253731343283583,0.1424501424501424,0.4895833333333333,0.6825938566552902,0.6578327444051826,0.5353455123113582,0.1090504451038575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020969669955629,0.0043395824672756,0.0066474516410579,0.0091233274746263,0.0113315023903977,0.0134616363728934,0.0155995106035889,0.0178332635791063,0.0197675725952349,0.0219654244158077,0.0240387079578886,0.0261101699265876,0.0282453344301064,0.0302736989517474,0.032327608437774,0.0344799082464533,0.036725356850811,0.0390300063269476,0.0409670850303382,0.0428119273696485,0.057326169735538,0.0712806892801873,0.0849404662082844,0.0979023918617848,0.1102386272608457,0.1251916306312973,0.1403676244418281,0.1545395528026989,0.1679643692524592,0.1804219354977101,0.1948948916592141,0.2091603714366111,0.2223648428151854,0.2355622601908635,0.2477584025523956,0.260298110489278,0.2722919805792734,0.2836623362015634,0.2943646308526815,0.3044304957390268,0.3137956179033994,0.3227685935909585,0.331281006902921,0.3396744342155735,0.3476184109775514,0.3550308261405672,0.3622023585968602,0.3691806034976881,0.3747666701234056,0.3818196235990695,0.3847233278911932,0.387994810357202,0.3907950145550123,0.3935090394249619,0.3955109167698897,0.3966456377904293,0.3990325711648925,0.4007099224038303,0.402018951314726,0.4032063623441351,0.4046292974871146,0.4060531142834356,0.4073322768092974,0.4079855628242725,0.4092982626419489,0.4105825958702065,0.4120135850794382,0.412537692429773,0.4127006576621172,0.4124040920716113,0.4143737922149627,0.4137986577181208,0.4145359243160317,0.4171073094867807,0.417042078021662,0.4152847873107426,0.4184706432019934,0.4204265791632485,0.4265402843601896,0.4219308700834326,0.0,2.103191386035376,65.49842902834511,252.77654153650505,403.2553790877756,no_screening,88 +100000,95798,38212,355.31013173552685,8675,89.43819286415165,6803,70.4085680285601,2835,29.18641307751728,77.41775944651599,79.74817641554105,63.37436231324406,65.09605522795206,77.07336142281223,79.40134959538418,63.25040159091697,64.97421526229888,0.3443980237037607,346.8268201568776,0.1239607223270908,121.83996565318012,0.0,0.0,0.0,0.0,92.08658,39.984127446255336,95493.53848723356,41106.619203950366,157.73114,71.92263281631298,161423.2134282553,72468.93128062463,4978.22891,2181.970553176519,5150960.813378151,2232102.4481331627,1705.54948,722.2145527756846,1761271.0390613584,734835.2996142815,2802.73702,1146.5964637929635,2887068.059875989,1163523.5622581567,0.38212,100000,0,0,0.0,0,0.0,0,0.0,6963,72.02655587799327,0,0.0,15489,158.47930019415853,0,0,0,0,0,0,0,0,16,0.167018100586651,0,0.0,0,0.0,0,0.0,0.08675,0.2270229247356851,0.3268011527377522,0.02835,0.3033646493336246,0.6966353506663754,25.9407797379225,4.755876918819268,0.3304424518594737,0.1783036895487285,0.247390856974864,0.2438630016169337,10.976128306001224,5.402204353757616,29.99870431037876,13939.97053818921,75.60948507144869,13.662784233010273,25.030736815960683,18.39043337193494,18.525530650542777,0.5309422313685139,0.7361912613355317,0.6948398576512456,0.5611814345991561,0.1342840166369578,0.6662269129287599,0.9228070175438596,0.8786127167630058,0.6300268096514745,0.1651917404129793,0.4921505579723851,0.6788793103448276,0.6396761133603239,0.5412130637636081,0.1264880952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021871424376512,0.0046019887889876,0.0069608629034712,0.0092827689870203,0.0115512893516635,0.0134981066004316,0.0155131994699826,0.0176880052257695,0.0201148837874854,0.0221783272608179,0.0243029930299303,0.0264427518528403,0.0284325113329153,0.0305657075204612,0.0326036521864656,0.0347865604891601,0.0368212441399579,0.0389806962615853,0.0409719408690954,0.0427893224503394,0.0578016589284782,0.0719766663878899,0.085377358490566,0.0983770155995588,0.110379693506767,0.1258808489958057,0.1401044480461012,0.1543343751993366,0.1668000384110624,0.1797983909843704,0.1947730694773069,0.2088739561163748,0.222424913675158,0.2351161876474185,0.2476954348184365,0.259982077068605,0.2716701784898045,0.2835463797092984,0.2944162436548223,0.3042115259201629,0.3139924639959315,0.3229518346748286,0.3318403668206904,0.3407909550386854,0.3493023425261394,0.3561127135566896,0.3634873155529968,0.3704745659147614,0.3767038092770147,0.3826262572929592,0.3857292957594698,0.3885695380670774,0.390615736427543,0.3926098670297517,0.3951172981190568,0.3967473176130599,0.3985351826255501,0.3999242099713316,0.4022029601205975,0.4024840490357732,0.4049269248154286,0.4060652941409814,0.4080665543386689,0.4091552619159981,0.4114752508847626,0.4117708908340562,0.412446771780412,0.4122190788009791,0.412104871039841,0.414621409921671,0.4150812707794606,0.4140852671343767,0.4146747837231656,0.4136863291531197,0.4148055448594532,0.4158935546875,0.4173165685182238,0.4142557651991614,0.4167135621834553,0.4253879824910465,0.0,2.2223774731260373,67.41465648320357,249.5301394675927,417.923009216609,no_screening,89 +100000,95727,38325,357.2346359961139,8465,87.19587995027526,6506,67.43134120989897,2673,27.588872522903674,77.3893283971574,79.751287719622,63.35181630130408,65.09405497177198,77.0659589678753,79.42400466417558,63.23602307243171,64.97932255433889,0.3233694292820956,327.283055446415,0.1157932288723628,114.73241743308904,0.0,0.0,0.0,0.0,88.48392,38.6926798182277,91913.09661850888,39899.30721554808,156.43052,71.73695172002977,160274.01882436514,72487.74229110595,4734.79597,2084.128284538775,4911583.252373938,2142596.7747226725,1567.44808,668.7381522779198,1625029.8975210756,686203.9364838754,2635.74942,1073.336017851365,2722604.0928891534,1095016.1649396326,0.38325,100000,0,0,0.0,0,0.0,0,0.0,6683,69.25945657964837,0,0.0,15341,157.13435081011627,0,0,0,0,0,0,0,0,23,0.2402665914527771,0,0.0,0,0.0,0,0.0,0.08465,0.2208741030658839,0.3157708210277614,0.02673,0.2988851727982163,0.7011148272017838,26.08885609350559,4.716790668477414,0.3389179219182293,0.1784506609283738,0.2396249615739317,0.2430064555794651,11.191865654957626,5.531667796500709,28.33370029759382,13979.566156744222,72.73752233876765,13.239971380624258,24.75154948448357,17.635128094799168,17.110873378860653,0.5364279126959729,0.7364341085271318,0.6988662131519274,0.5876027830487034,0.1058370750481077,0.6968048946295038,0.8993288590604027,0.8693957115009746,0.7194444444444444,0.1733333333333333,0.4895729890764647,0.6801853997682503,0.6471631205673759,0.5487305487305487,0.0897537728355837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024205718221132,0.0046925517143523,0.0069078847265755,0.0090472467329386,0.0111321215078687,0.0136494106630295,0.0158874123593673,0.0179996326605579,0.0200476156416361,0.0220712378106805,0.0241420651917736,0.0265423168867411,0.0284422523633374,0.0304065877509006,0.0325265296441057,0.0344118467691099,0.0363790711638404,0.038161129378572,0.0402141149568651,0.0422205091878828,0.0568985141019349,0.0709561978109369,0.084800872657094,0.097078089350114,0.109230055658627,0.1247739602169981,0.1398039922784837,0.1538142178883944,0.1671883178618354,0.1801095731792304,0.195757738896366,0.2099764217266218,0.2237488586460281,0.2364620346580659,0.2488174077578051,0.2612037836999623,0.2732072102237848,0.2846344206974128,0.2954308153259488,0.3051742707211439,0.3149559845917151,0.3246833740688332,0.3329666820423659,0.341362335157925,0.3498694516971279,0.3573276499285467,0.3642875031304783,0.3712481861459739,0.3781177080632616,0.3847555661199588,0.3869143018761195,0.3899355478433317,0.3925416660796551,0.3948961561857312,0.397451546637292,0.3994816507430184,0.4007764836383805,0.4019097079560208,0.4029372999435134,0.4041218637992831,0.40620884289746,0.4077170545714512,0.4100347844418678,0.4106945851626702,0.4111456009312251,0.4123246361610069,0.4132406982085438,0.4134612340519834,0.4141099957585183,0.4154172164247731,0.417818315828266,0.4189932090115339,0.4208304011259676,0.4215505306875865,0.4228456913827655,0.4275066121663861,0.4292117465224111,0.4319114027891714,0.4265375854214123,0.4285714285714285,0.0,2.102091616046877,65.36423472907853,249.91175903376416,386.0434574470922,no_screening,90 +100000,95670,37918,353.32915229434514,8430,86.8401797846765,6529,67.62830563395003,2759,28.410159924741297,77.35982293729873,79.73610900881373,63.33991942654043,65.09022518306254,77.02151061786492,79.39730884179616,63.21656458552831,64.97007170028266,0.3383123194338111,338.8001670175669,0.123354841012123,120.1534827798838,0.0,0.0,0.0,0.0,88.02359,38.828373147167824,91399.1846973973,39977.40477387668,159.86744,73.54619477199832,163747.26664576147,74194.38536934018,4801.551,2128.4279368020893,4976773.377234243,2182665.440370115,1586.44831,685.9654647333997,1641003.3657363856,699764.8946727278,2723.36026,1125.7636966334255,2806990.592662276,1141038.2181096915,0.37918,100000,0,0,0.0,0,0.0,0,0.0,6694,69.34253161910735,0,0.0,15689,160.68778091355702,0,0,0,0,0,0,0,0,14,0.1358837671161283,0,0.0,0,0.0,0,0.0,0.0843,0.2223218524183765,0.3272835112692764,0.02759,0.3069407008086253,0.6930592991913747,25.759703402634752,4.737237402325296,0.3381834890488589,0.1744524429468525,0.2476642671159442,0.2396998008883443,11.06590122723812,5.501452061008398,29.389842265571723,13817.845642116628,73.45333082190119,13.151551935612645,25.118181092995258,17.490896238507094,17.69270155478621,0.5353040281819574,0.7392449517120281,0.7083333333333334,0.5833865814696486,0.1088435374149659,0.6983606557377049,0.9053627760252366,0.8558718861209964,0.7415384615384616,0.1744548286604361,0.4856115107913669,0.6751824817518248,0.6579586877278251,0.5419354838709678,0.0925925925925925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021468789241301,0.0044698513090278,0.0069395830162836,0.0090694887367715,0.0113164958516349,0.0134663341645885,0.0156614597662499,0.0179977961882218,0.0199697644487119,0.0219944348964727,0.0240846599872969,0.0261708130289817,0.028480980132178,0.0304883699379112,0.03277048284114,0.0347072928724987,0.036461892042984,0.0384487729997718,0.0401097872871311,0.042052276138069,0.0567924193194521,0.0709297090143765,0.0841581560358128,0.0961279461279461,0.1081038319955277,0.1233492762211123,0.1379167595452664,0.1528375442034851,0.1657028018001646,0.1780041214098656,0.1933335488668326,0.2073342430740572,0.2208787262061534,0.233673402368807,0.2463297245503706,0.2592990659383276,0.2711033705105447,0.2816879231617068,0.2921947511147924,0.3018874407311542,0.311352302049223,0.3205617320070216,0.3283094372683897,0.3370290906039866,0.3445515934706568,0.3525192269769276,0.3593926040910343,0.3659803659421674,0.372746711592043,0.379324018875656,0.3826213552970357,0.3853652483247387,0.3881830900329268,0.3911581875878457,0.3939258531063348,0.3951097313579639,0.3969961178641888,0.398064505474543,0.3993699323451944,0.4003887968896248,0.4017872324346791,0.4027152027431123,0.403036197564276,0.4039168791317885,0.4044529601513424,0.4054032745525742,0.4049472807193955,0.4044804575786463,0.4064905125022167,0.4086211749567734,0.4085932085932086,0.4085794655414909,0.4092139175257732,0.4098821325423464,0.4139324545367074,0.4173987310883357,0.4185973700688791,0.4202599546110996,0.4257371176632681,0.4296383647798742,0.0,2.445966910693176,67.45729599702756,252.53580537451316,381.5922144830071,no_screening,91 +100000,95856,38204,355.1160073443499,8439,86.91161742613922,6519,67.4449173760641,2700,27.802119846436323,77.34109898624328,79.63270850658475,63.34986309044478,65.04476568111778,77.02002770494727,79.30986713063072,63.23282036927629,64.92956038344546,0.3210712812960139,322.8413759540274,0.1170427211684881,115.20529767231837,0.0,0.0,0.0,0.0,88.62094,38.83129786495925,91888.42638958438,39956.96304977405,158.4157,72.18354708046907,162135.28626272743,72815.91481255891,4745.30417,2100.663689050514,4909832.968202303,2151684.354309851,1602.84135,685.0148462430635,1659105.074278084,701838.824746395,2673.00952,1102.8983129049475,2753845.497412786,1120526.1171186073,0.38204,100000,0,0,0.0,0,0.0,0,0.0,6670,68.9889000166917,0,0.0,15489,158.43557002169922,0,0,0,0,0,0,0,0,26,0.271240193623769,0,0.0,0,0.0,0,0.0,0.08439,0.220893100198932,0.3199431212228937,0.027,0.3010922193446684,0.6989077806553317,26.08639876558872,4.691125452287327,0.3336401288541187,0.1785549930971008,0.2435956435036048,0.2442092345451756,10.858736413278672,5.234685371989392,28.666574711824115,13885.040950417011,73.3750872769793,13.410467277567156,24.581079426940452,17.827346433060434,17.556194139411264,0.5387329344991563,0.7680412371134021,0.6997701149425287,0.5785175879396985,0.1102015113350125,0.6752717391304348,0.9114754098360656,0.8525519848771267,0.7346278317152104,0.1155015197568389,0.4989102437091341,0.7171129220023282,0.6506682867557716,0.5409197194076384,0.1088165210484511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021669788871449,0.0041442482090565,0.0067046019332785,0.0092289885678315,0.0115463582216982,0.0138504437026785,0.0159132817832655,0.0182606477939301,0.0201724102710763,0.0222697328041245,0.0242251039682051,0.0262251030748087,0.0286148600069842,0.0305368644154989,0.0323757315967356,0.0341318415919247,0.0362216937235032,0.0381801981018691,0.0402300640566439,0.0423871652412759,0.0574151702850945,0.0710150077337904,0.0848355976410696,0.0982146607855492,0.1104746058991396,0.1254911487599814,0.1402631523190033,0.1539442908781629,0.1669725749653185,0.1791582264235876,0.1941708910486153,0.2085095337493646,0.2213331303884582,0.2346793764621002,0.2467018034175808,0.2589202606267453,0.2705966384678913,0.2816776197335254,0.2921472030512168,0.3024220343255195,0.3117911207814453,0.3216170362136547,0.3303383289532874,0.3388570469315811,0.3464900018233757,0.3541862072370045,0.361453634085213,0.3687295337843864,0.3751231654825493,0.3817900458952213,0.3845935804335502,0.3871982342392054,0.3909128179029362,0.3929281928410658,0.3952467024184754,0.3969035673612607,0.3985863699317064,0.3994313203617067,0.4016763823255493,0.4027233489245661,0.4042165933565903,0.4055496691389616,0.4051870387649504,0.406298891231889,0.407151405612681,0.4086502807500795,0.4099337556770517,0.4112266112266112,0.4120558285266681,0.4113880723231184,0.4148065991958963,0.41474206777466,0.4115421609490221,0.4112279616455305,0.4110854503464203,0.4093226511289148,0.4101035456542202,0.4094098225340487,0.4006167647883375,0.3989799921537858,0.0,2.156731693636155,65.4886506181177,254.60277072345949,387.73086570935504,no_screening,92 +100000,95652,37921,352.15154936645337,8471,87.3687952159913,6561,68.10103291096893,2752,28.42596077447413,77.31769350596971,79.74102733104547,63.289715480586615,65.08180912969377,76.98981865121375,79.40826950127841,63.171618567595445,64.96419252069242,0.3278748547559615,332.75782976706125,0.1180969129911702,117.6166090013453,0.0,0.0,0.0,0.0,88.27775,38.4752473047665,91803.42282440512,39737.59650806888,154.86158,70.48400891104394,159205.97582904698,71570.20436382998,4812.86953,2107.935458463894,4997636.672521223,2169810.993164568,1657.41792,702.6760996929656,1717684.3976079957,719659.651835075,2722.38458,1112.7833571956846,2813922.887132522,1136629.9138742632,0.37921,100000,0,0,0.0,0,0.0,0,0.0,6714,69.6692175803956,0,0.0,15242,156.60937565341027,0,0,0,0,0,0,0,0,20,0.2090912892568895,0,0.0,0,0.0,0,0.0,0.08471,0.2233854592442182,0.3248730964467005,0.02752,0.303991926440906,0.696008073559094,26.146490945827185,4.7587209514023465,0.3391251333638165,0.1760402377686328,0.2510288065843621,0.2338058222831885,10.939400068377328,5.191615442557139,28.894699768831792,13873.562274084494,73.15852459417714,13.146924856856083,25.08587500777561,17.073852946928785,17.851871782616648,0.5299497027892089,0.7593073593073593,0.6844943820224719,0.5717079530638852,0.1214329083181542,0.6825174825174826,0.8923611111111112,0.8448275862068966,0.7366771159874608,0.1428571428571428,0.487429351003703,0.7151095732410612,0.6353493834409865,0.528395061728395,0.1166419019316493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023198800551098,0.0044315093497748,0.0065685279187817,0.0088618786776288,0.0111001454922828,0.0132742461287693,0.0153530695937812,0.017695317688166,0.0200996796741477,0.0220176715389819,0.0241954524457219,0.0263842475965246,0.0283698898156729,0.0306062450356402,0.0327729963734799,0.0348413667501397,0.037066605839416,0.0390564136655898,0.0410665223545083,0.0432792082512071,0.0567985870894251,0.0709802483365641,0.084364430813184,0.0971384035303906,0.1100046464475796,0.1251178208699151,0.1400138143563041,0.1540462181291037,0.1675081833935945,0.1800751879699248,0.1947854415222972,0.2078845278602544,0.221648530004466,0.2338973769234981,0.2459852968731056,0.2581650765475926,0.2701696733954798,0.2811813604568648,0.290964847521154,0.3011715346875143,0.3104850387498117,0.3198393367370837,0.3285333333333333,0.3369111079095231,0.3450941719322595,0.353212707659648,0.3606540943549903,0.3668501108308492,0.3739718207530034,0.3804199690381994,0.383156871218669,0.385814389759435,0.3895513110307414,0.3918762313130142,0.3951341532414162,0.3969256782722312,0.3984766326903811,0.3995782814971007,0.4017419332716113,0.4031285236160578,0.4046353511259696,0.4067393458870168,0.4089317538526051,0.4096831341241899,0.4109734598758724,0.4132560761385386,0.4138099199632806,0.4162343413893458,0.4170001770851779,0.4166700108351057,0.4169787765293383,0.4186372961883166,0.4226705091258405,0.4213617744802534,0.4217063150855068,0.4225352112676056,0.4194050770907958,0.4180294358135731,0.4192468619246862,0.41364522417154,0.0,1.8241738117483963,63.86969822279726,252.98388848877187,395.7340768010224,no_screening,93 +100000,95719,37906,352.6677044264984,8321,85.86592003677431,6391,66.2773326089909,2687,27.72699255111316,77.34880342590687,79.70662756165157,63.338894218876014,65.07719988765388,77.030247963706,79.38391189506495,63.22436000633104,64.96340313119164,0.3185554622008624,322.71566658661754,0.1145342125449744,113.79675646223576,0.0,0.0,0.0,0.0,86.59128,37.91242710460715,89962.54662083808,39107.069496311895,154.58976,70.56834491520458,158484.0418307755,71416.52254408608,4678.40648,2059.5335735423205,4854149.18668185,2118191.8586769705,1562.57458,660.2621980764553,1618717.840763067,676091.8444218097,2662.1453,1083.2204829180398,2749360.795662303,1105125.773238002,0.37906,100000,0,0,0.0,0,0.0,0,0.0,6537,67.76084163018837,0,0.0,15105,154.74461705617486,0,0,0,0,0,0,0,0,25,0.2611811657037788,0,0.0,0,0.0,0,0.0,0.08321,0.2195166992032923,0.3229179185194087,0.02687,0.3052583655816071,0.6947416344183929,26.115009319272563,4.798593270805276,0.3373493975903614,0.1716476294789548,0.2480050070411516,0.2429979658895321,11.06089951005514,5.4145002908292925,28.332871816180912,13843.292908156587,71.65122998290347,12.414629708422456,24.48797497478861,17.38394854409532,17.36467675559709,0.5285557815678298,0.7329079307201458,0.7022263450834879,0.5717965228589826,0.1085173501577287,0.6884906960716747,0.9154929577464788,0.8754789272030651,0.695906432748538,0.1452145214521452,0.481578947368421,0.6691266912669127,0.6468788249694002,0.5367464905037159,0.0998439937597504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020657600275434,0.0044195758829015,0.0067982344883567,0.0088582777151332,0.0111538148690418,0.0133150099251794,0.0153403936518291,0.0174645299581504,0.0195799908027183,0.0216365590297323,0.0238300227538281,0.0259044491199261,0.0279953940739826,0.0302159902814668,0.0324104637728998,0.0343872700971275,0.0364667998881767,0.0386794214687389,0.0407460933032511,0.0426877552721513,0.0575402834198352,0.0714988383531824,0.0848956639424237,0.0970616392959717,0.1091645484173777,0.1249920670178333,0.1389584482831798,0.1524949164812468,0.1663087721547386,0.1791560294338489,0.1942568477289128,0.2086317702810897,0.2218512436241829,0.2341837906409597,0.2464543103922539,0.2587343623610757,0.2705854753845638,0.2812447226506648,0.2911514573469133,0.3008272606443925,0.3102537977028529,0.3195455290070441,0.3281668127027731,0.3365579410460196,0.3449046791655022,0.3526569452833212,0.3597507569880633,0.3671438569701597,0.373488203454795,0.3801206648448123,0.3829649508448748,0.3852433021248431,0.3888057171911191,0.391673672919143,0.3940555373281236,0.3959114663387642,0.3973260416832265,0.397959351871693,0.3995193958118778,0.4025300556253364,0.404774445991196,0.4065942791353197,0.4080996228323394,0.4095793813503954,0.4093676474155286,0.4097101677975908,0.4116273707269268,0.4119294671844166,0.4132480909252353,0.4127769066859647,0.4123196448390677,0.4139035111521137,0.4127816627816628,0.4158377065872953,0.4148484263371307,0.4160753609004159,0.409755322529393,0.4094471510273247,0.4090778511921861,0.400320256204964,0.0,1.7835219173036672,65.11427052484926,243.07492068292717,382.7880531032289,no_screening,94 +100000,95636,37920,352.74373666820026,8387,86.46325651428333,6499,67.34911539587603,2662,27.4478229955247,77.26744378178137,79.68408534005052,63.28338998351626,65.07006363179612,76.95319649521696,79.3663151148012,63.17026016478391,64.95791618412746,0.3142472865644095,317.7702252493191,0.1131298187323537,112.14744766866148,0.0,0.0,0.0,0.0,88.4446,38.52320766253451,91856.664854239,39659.783907305085,155.44204,70.8247089761093,158756.5770212054,71104.38844696156,4779.77902,2087.567901656774,4956927.318164708,2142386.15444304,1642.70088,696.0589759293028,1699137.5423480696,709804.3762151926,2637.23746,1077.9541267631444,2721918.670793425,1098475.8645866904,0.3792,100000,0,0,0.0,0,0.0,0,0.0,6664,69.03258187293488,0,0.0,15244,155.58994520891716,0,0,0,0,0,0,0,0,19,0.1986699569199883,0,0.0,0,0.0,0,0.0,0.08387,0.2211761603375527,0.3173959699534994,0.02662,0.3019165727170236,0.6980834272829763,26.05883771788192,4.8046167392599175,0.3342052623480535,0.1707955070010771,0.2501923372826589,0.2448068933682105,11.24239269480168,5.441040906805116,28.147209946284807,13856.35995027543,72.55361113312324,12.67698494071144,24.517173871428287,17.723535324111978,17.635916996871554,0.5285428527465764,0.7549549549549549,0.6952117863720073,0.5707102451288498,0.1100861008610086,0.6820728291316527,0.9072164948453608,0.8831967213114754,0.7190332326283988,0.1289308176100629,0.4853086176296588,0.7008547008547008,0.6407363420427553,0.5317460317460317,0.1055045871559633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021581859079579,0.0042790509024538,0.0067616959064327,0.0091252743679375,0.0114243278161527,0.0136778425062125,0.0158859636600934,0.0179174876721559,0.0198263785928281,0.0220376647448566,0.0243269575919183,0.0263179520894111,0.0283824376594518,0.0304379185986604,0.0326276566096551,0.0349429850406806,0.0367984423062981,0.0389641392910893,0.0409515488152447,0.0429746551706162,0.0576671857201082,0.071436052113443,0.0843326682768035,0.0970180684833424,0.1086807351652643,0.1246188055908513,0.1399834313996218,0.1541092970714864,0.166616750454594,0.179677180321531,0.1945238274973309,0.2090035637301097,0.2222669641399575,0.2344984569590054,0.2466418567779441,0.258753268625626,0.2702521683801614,0.2815858475596718,0.2923641236457789,0.3029128884711061,0.3125217149607393,0.3207209315934227,0.329507361737915,0.3377144023141646,0.345424236155896,0.3526149361397268,0.3600671898112167,0.3669745811301522,0.373767258382643,0.3799520840778832,0.3831299577032743,0.3859997791763277,0.3881168803630246,0.3910324312558949,0.3937212497759723,0.3951094149148995,0.3967263231641296,0.3977996239237291,0.3989284058319451,0.4003735095532251,0.4020842379504993,0.4028432233847137,0.4048360117724279,0.4066097792225382,0.406693095313374,0.4079763507271624,0.4092022948078531,0.4083627909939173,0.4098857958600999,0.4093117408906883,0.4108226725184424,0.4113083856869707,0.4133947692906742,0.4132988721804511,0.4119065997684292,0.4161665646050214,0.4142676368237899,0.4154589371980676,0.4191112401975022,0.4234086242299795,0.0,2.2337194682333545,63.41360319696021,242.69981390219425,401.6563332250712,no_screening,95 +100000,95825,38038,352.8098095486564,8492,87.33629011218366,6531,67.4249934776937,2667,27.331072267153665,77.40182060844235,79.71314762392171,63.36325590393732,65.07457883798854,77.08347379138249,79.39826614397383,63.24689580477136,64.96301904832231,0.3183468170598615,314.8814799478856,0.1163600991659592,111.5597896662308,0.0,0.0,0.0,0.0,88.47307,38.66985038976561,91565.0613096791,39595.73248786787,156.49213,71.69187871488916,159042.9219932168,71513.54183961361,4745.63073,2092.944151196449,4904918.768588573,2136936.0792823457,1585.31811,676.3570152010485,1636384.7847638924,688004.8908845857,2642.45902,1088.739771576471,2711465.943125489,1096977.288256547,0.38038,100000,0,0,0.0,0,0.0,0,0.0,6708,69.23036785807462,0,0.0,15396,156.34750847899818,0,0,0,0,0,0,0,0,20,0.2087138012001043,0,0.0,0,0.0,0,0.0,0.08492,0.2232504337767495,0.3140602920395666,0.02667,0.3153638814016172,0.6846361185983828,25.992112482811837,4.660069793479357,0.3373143469606492,0.1858827132139029,0.243760526718726,0.2330424131067218,11.010963880100611,5.416947416183613,28.122612253315022,13857.573827258711,72.79596601518502,13.750274120883054,24.80334670750302,16.761168774922883,17.481176411876056,0.5300872760679834,0.7347611202635914,0.6867907399001362,0.5814717477003942,0.1080402010050251,0.6920438957475995,0.919732441471572,0.8488805970149254,0.7377049180327869,0.1698113207547169,0.4835403114527892,0.6743169398907104,0.6346730653869226,0.5423171733771569,0.0926216640502354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023491767755523,0.0049863685656082,0.0071927119263076,0.0094762180444254,0.0116306259594758,0.0138747506005944,0.0157875961881465,0.0181567666870789,0.0204019052681072,0.0225991013581978,0.0248375258831006,0.0267790242951132,0.0288636480444056,0.0309716745091174,0.0331287710793667,0.0351315884644395,0.0371509016003146,0.0393417464251272,0.0413182795475554,0.0433153633203588,0.0585713838740965,0.0725628560974334,0.0863610165051087,0.0988202914079816,0.1108138567350936,0.125845022815616,0.140017798872738,0.1537840050177001,0.1667734016437186,0.1797525309336333,0.1950519012531598,0.2089200609512282,0.2221703084763074,0.2347007911876557,0.2459840130182849,0.2579195039583679,0.2699919675130527,0.2813227602497047,0.2916283661866339,0.3017863277224321,0.3113060180738923,0.3206587211546334,0.3286625560670793,0.3371664967923736,0.3455895759137484,0.352746778469696,0.3596909707874735,0.3669946662932647,0.373242448196768,0.379602351542374,0.3823113112168556,0.3851039499607346,0.3881910079093177,0.3908667611417994,0.3928682954393374,0.3946076174692324,0.3964086864104313,0.3973485969933221,0.3985611510791367,0.3996598943882574,0.4010598714623971,0.4023248432912799,0.4033530364542796,0.4050439434466947,0.4054341263132472,0.4058996122812532,0.4070816741627753,0.4071992421850332,0.4087488074626338,0.4086197927087919,0.4087708803092356,0.4083870967741935,0.4076104276881891,0.4028965410985286,0.4036731989018271,0.410004786979416,0.412959231126957,0.4153433697669622,0.4193729003359462,0.4196951934349355,0.0,2.8137014642049945,64.0247244625778,248.812425232075,391.0009623534303,no_screening,96 +100000,95708,37901,352.68734066117776,8214,84.66376896393196,6323,65.6162494253354,2602,26.91520040122038,77.32145341825886,79.71044694291538,63.3143933609397,65.08108418234188,77.0112665267328,79.39545833751617,63.20242503972723,64.96956849367248,0.3101868915260581,314.9886053992077,0.1119683212124655,111.51568866939954,0.0,0.0,0.0,0.0,85.45878,37.42620110418413,88841.75826472187,38655.17104545505,151.61662,69.27850605912548,155987.97383708783,70446.22190404918,4606.71288,2031.210827571597,4784139.267354871,2093139.505131856,1599.60483,681.8256873426302,1657196.3158774606,698259.6097950323,2583.37884,1057.3716894741683,2673896.8111338653,1081512.077504947,0.37901,100000,0,0,0.0,0,0.0,0,0.0,6478,67.20441342416517,0,0.0,14837,152.5682283612655,0,0,0,0,0,0,0,0,21,0.2194173945751661,0,0.0,0,0.0,0,0.0,0.08214,0.2167225139178386,0.3167762356951546,0.02602,0.2994578382743108,0.7005421617256893,26.15191464071449,4.716035224439285,0.3374980230903052,0.1818756919183931,0.2456112604776213,0.2350150245136802,11.14004859360802,5.371096172795926,27.448094145939365,13784.627967635848,70.47633225629272,13.059056352773704,23.73159088288088,16.575079361170033,17.110605659468085,0.5375612842005377,0.7504347826086957,0.6879100281162137,0.5874831763122477,0.1255634256278171,0.6902592852137351,0.9251700680272108,0.8765690376569037,0.7477477477477478,0.139751552795031,0.4930555555555556,0.6904205607476636,0.6334541062801933,0.5411968777103209,0.1218521527213647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024418416146551,0.0046141364973126,0.0068215039792106,0.0089429985467627,0.0110593358293993,0.0132222312769945,0.0154807917843703,0.0177353481723504,0.019791656017747,0.0222224496898478,0.0242979731184449,0.0264430729418047,0.0284327037814261,0.0305006852349892,0.0325347591374985,0.0345219755792433,0.0363357640039774,0.038554541963739,0.0406214900786222,0.0424704791086931,0.0574872314425075,0.0710023866348448,0.0835266090862342,0.0959696937809112,0.1082096244948775,0.1246467618513383,0.1388738523589661,0.1528154988231033,0.1656923619497494,0.1780370874848507,0.1922844892594747,0.2059995236754931,0.219580373943593,0.2317664176083841,0.2438697044036919,0.2560956704683866,0.2675420004015975,0.279004934857631,0.2890486775847207,0.2988467572922273,0.3086382619358869,0.3178271905302188,0.3269540502131691,0.3350443135891009,0.3434692215102919,0.3514273036533057,0.3588828354937692,0.3658108125310284,0.3729816519701148,0.3793094345599493,0.3823775130706624,0.3850770098963567,0.3870758560412761,0.3898469372992679,0.3925449373780696,0.3941069837465819,0.3956953379397983,0.3966920365062106,0.3986280226376265,0.400164972116126,0.4023243986513213,0.4038178564326904,0.406025189341997,0.4064475347661188,0.4082446162072821,0.4103139605502891,0.4126768305030809,0.4130483330674748,0.4146271953261373,0.4129769763323136,0.4137405989018594,0.4158747300215982,0.416800772449308,0.4147598594299101,0.414725697786333,0.4177431147940531,0.4181760907229485,0.4179353493222106,0.4215436810856658,0.4227738376674547,0.0,1.7394930639752617,63.75768654352032,233.74379977259807,385.4066817920696,no_screening,97 +100000,95708,38038,353.6485978183642,8559,88.22668951393823,6551,67.89401094997284,2742,28.263050110753543,77.3455376358958,79.73181636033799,63.32130932583449,65.08696445938479,77.01378637331275,79.39651852984707,63.20009513875627,64.96681401034073,0.3317512625830403,335.29783049091577,0.1212141870782232,120.15044904406123,0.0,0.0,0.0,0.0,89.27921,39.26990309639287,92707.74647887325,40455.78540601922,157.98288,72.3399620524301,161504.200275839,72823.95349788252,4794.38334,2127.314106056053,4969698.06076817,2183024.810941668,1642.32514,706.6211971724271,1697670.7694236636,720053.8662429819,2719.44306,1130.8924365738606,2805026.350984244,1151763.175075644,0.38038,100000,0,0,0.0,0,0.0,0,0.0,6730,69.73293768545994,0,0.0,15459,157.928281857316,0,0,0,0,0,0,0,0,27,0.2821080787394993,0,0.0,0,0.0,0,0.0,0.08559,0.2250118302749881,0.3203645285664213,0.02742,0.3009977827050998,0.6990022172949002,26.02188736428965,4.781385042337155,0.3317050831934056,0.1810410624332163,0.2529384826744008,0.2343153716989772,11.172772262581269,5.4081141279038105,29.21757009108535,13916.160854460157,73.45382683980942,13.54621765213756,24.540404610360927,17.063949001519834,18.303255575791084,0.5330483895588459,0.7613827993254637,0.699033594109526,0.5706840390879478,0.1170790585395292,0.666884389288047,0.9210526315789472,0.8600746268656716,0.7283950617283951,0.1198910081743869,0.4922310756972111,0.7063492063492064,0.6463042150274894,0.5284888521882741,0.1162790697674418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024620310236172,0.0047264060043612,0.0069140565510939,0.0091058761356938,0.0113432896557337,0.0135872886534935,0.0158369194999082,0.0179835176618363,0.020022087696335,0.0219862368410273,0.0242243987487821,0.0261811832374691,0.0284315339038841,0.0306455767942707,0.032672858617131,0.0348920156729765,0.0368881752732169,0.0389720916233355,0.0410769438753756,0.0429998853892078,0.0576796549455369,0.0717634746206174,0.0848524920499984,0.097715722688103,0.1098992669163018,0.1257311487894397,0.1406364398416858,0.1545073062667745,0.1676537244505259,0.181147752157671,0.1960393264483301,0.2103735473459618,0.2232745482255606,0.2359810015759061,0.2483927077370205,0.2599694101478509,0.2714473919256877,0.2830241772094908,0.2927889581276035,0.3031243557734155,0.3127590118769245,0.3219946425855958,0.33035492384345,0.3381275993911282,0.3457515942909201,0.3533209309202015,0.3602833506464249,0.3668091168091168,0.3732179357810034,0.3797098011307476,0.383434674989238,0.3861122181148566,0.3889585240476023,0.3918618097716103,0.3950986074576069,0.3973295724556589,0.3989773070143399,0.400679901645296,0.4020432692307692,0.4032649538843242,0.4044387311429543,0.4054804369969442,0.4076805696846388,0.4087930956576747,0.4101896887159533,0.4121527136487164,0.4135973254942648,0.4136670058509285,0.416349742313844,0.4191380628546134,0.4194768648798265,0.4208315381301163,0.42234280242579,0.4249826080234985,0.4229920353133096,0.4275106512477176,0.4227208536011297,0.4242487046632124,0.4236246858419435,0.4341637010676156,0.0,2.076724189863222,68.28929173660674,243.2744205261792,392.7092202269189,no_screening,98 +100000,95608,38071,353.7988452849134,8599,88.75826290686972,6662,69.08417705631328,2772,28.564555267341643,77.23812690061078,79.66914207833989,63.25655152000609,65.05422852304149,76.91371402032382,79.34308681955544,63.138731010274526,64.93851657094282,0.3244128802869568,326.0552587844501,0.1178205097315654,115.71195209866404,0.0,0.0,0.0,0.0,90.17405,39.47712975299106,93708.559953142,40683.813525573765,158.6013,72.46073951698186,162124.11095305835,72906.77415288668,4877.44836,2147.6750149343725,5061819.753577107,2206778.964148307,1644.73535,699.8248340615346,1708409.6937494772,720152.7616161044,2745.55054,1127.2819223761398,2832736.1936239647,1146778.6010516365,0.38071,100000,0,0,0.0,0,0.0,0,0.0,6808,70.56940841770563,0,0.0,15592,159.3590494519287,0,0,0,0,0,0,0,0,18,0.1882687641201573,0,0.0,0,0.0,0,0.0,0.08599,0.2258674581702608,0.3223630654727293,0.02772,0.3006363835856923,0.6993636164143077,26.170889801506725,4.794157011418504,0.343140198138697,0.1742719903932753,0.2490243170219153,0.2335634944461122,11.07382629247614,5.324449561826931,29.55017743034165,14009.098977242347,74.78910754524019,13.196636889544177,26.061815951328565,17.302991775206905,18.227662929160545,0.5279195436805764,0.7493540051679587,0.6889763779527559,0.5584832904884319,0.1223628691983122,0.6840713813615333,0.9077490774907748,0.868421052631579,0.6991150442477876,0.1711711711711711,0.4820353466692562,0.701123595505618,0.6293706293706294,0.5193097781429745,0.1101055806938159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024120317820658,0.0045337904313693,0.0069145479652343,0.0092800585467001,0.0115412799218368,0.0137432888128202,0.0159620582385639,0.0182752421035426,0.0203751815559601,0.0228920845624385,0.0250761827565332,0.0271983724132261,0.0292607116023919,0.031452959732789,0.0333973604312534,0.0355010605825443,0.0374858754133709,0.0396501397155827,0.0415244003997335,0.0435553700902404,0.0583985865576615,0.0722556981922976,0.0853504790721129,0.0987045813586098,0.1110113735967811,0.1262803334427861,0.1411346010836077,0.1555491600579858,0.1694733913936618,0.1819461003877592,0.1974580020068405,0.2111984389397799,0.2239921551536282,0.2369943463207257,0.2480963558023956,0.2612395703887804,0.2725645700734908,0.2838212739083363,0.2935923832057421,0.3041535528038778,0.3139016576124808,0.3232305453862761,0.3321260197841086,0.3412541810044036,0.3492290050261065,0.3565920259447683,0.3638249456255265,0.3706407240744528,0.3766350396314084,0.3833297962648557,0.3860150274148785,0.3891380169407075,0.3918432683590208,0.3944038858671941,0.3978081454458465,0.3996266757169523,0.4008779631255487,0.4021398877055832,0.4040681124165416,0.4059780552402572,0.4074137083664134,0.4091861788131026,0.4097225164160135,0.4118232619171512,0.4134676202987398,0.4145092761195999,0.4158261321927112,0.4168181383334928,0.4185955416280891,0.4202456450188649,0.4204266740709889,0.4231640245875121,0.4197136282280747,0.4187413019947425,0.422251882924969,0.4261411285491793,0.4261791365801198,0.4224032586558044,0.4274958170663692,0.4251450676982591,0.0,2.232220632633461,67.51266339821683,255.01239059316865,397.9787370159798,no_screening,99 +100000,95706,43443,401.7825423693394,9791,100.75648339707018,7616,78.85608007857397,3194,32.986437631914406,77.33641368994157,79.71128872981838,63.332022412709286,65.08917963746062,76.94608344060057,79.31709914820223,63.18944445984129,64.9484165079284,0.390330249340991,394.1895816161463,0.1425779528679953,140.7631295322176,23.68608,16.23149859083412,24748.793179111028,16959.75026731252,116.54403,53.808353573573065,121054.84504628758,55504.43396816612,200.30491,92.474013500099,203777.98675109187,92546.85397576304,5606.57813,2490.206505580782,5813207.270181598,2557062.875695256,1901.26709,820.4192234791724,1970101.999874616,840799.1739219931,3167.61214,1312.2867677907718,3274902.576640963,1339796.9812527483,0.43098,100000,0,107664,1124.9451445050468,0,0.0,0,0.0,8775,90.94518629970952,0,0.0,19459,197.9186257914864,2460122,0,88455,0,0,5923,0,0,25,0.2612166426347355,0,0.0,1,0.0104486657053894,0,0.0,0.09791,0.2271799155413244,0.3262179552650393,0.03194,0.2963321397464434,0.7036678602535565,26.13587940057459,4.703374322399972,0.3403361344537815,0.1773897058823529,0.2536764705882353,0.2285976890756302,11.040500271036766,5.318473563930628,34.248742326048024,15845.953427578175,85.86843459758929,15.476414395767014,29.44700725425712,19.70063958143939,21.24437336612578,0.5309873949579832,0.7549962990377498,0.6898148148148148,0.5893164847788627,0.108695652173913,0.6864648772130212,0.9298245614035088,0.8505747126436781,0.7423887587822015,0.131367292225201,0.4845694799658994,0.6957383548067394,0.6404437720625316,0.5395738203957382,0.1032713277742142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027360058368124,0.0054970131542916,0.0082440733032133,0.0110374827221725,0.0137940856331953,0.0163974497382518,0.019233318716283,0.0220747396365121,0.0245672865570016,0.027107262043691,0.0295525600943057,0.0319497346077636,0.0347575710833461,0.0371926788822626,0.0397985822335496,0.0418402257387673,0.0442849894904689,0.0465895534000726,0.0489102757308999,0.0511661336861074,0.0680861728678689,0.0839358396199763,0.0993183009963293,0.1135104448112364,0.1279910610756224,0.1459150344069427,0.1624859523759038,0.1781585356774406,0.1933386709367494,0.2077596459835635,0.2245998514579723,0.2402323468328141,0.2553316376442966,0.2693866847321321,0.2826787147269949,0.2963196495536455,0.3099227450586937,0.3222229719092279,0.3341501599618814,0.3454947168385745,0.3561231808611554,0.3661848291347975,0.3760324710671431,0.3844687432558809,0.3928137307336996,0.4006561663603735,0.4084985338713315,0.4158572339069471,0.4232566592242588,0.4302779874713602,0.433044889129259,0.4359126956666159,0.4389117188607057,0.4419162896256747,0.4440134200041937,0.4461464815701292,0.4481425261644164,0.4504086335228686,0.4529487954408082,0.453717918615782,0.4552708388613017,0.4571657165716571,0.4579879147673062,0.4589473684210526,0.459685480921614,0.4606896186721003,0.4614510489510489,0.4635740269774329,0.4652273870249299,0.4659711467927296,0.4680931107453562,0.4697428555696272,0.4691487962110248,0.4694395935862835,0.4697088137580613,0.4722429673885984,0.4720128307939054,0.4699534490055014,0.473849671334667,0.4771915906386355,0.0,2.8168652311942304,77.37455324511305,296.8186107523488,450.6636410311907,OR_public_baseline,0 +100000,95604,43645,404.533283126229,9845,101.54386845738672,7672,79.60963976402661,3185,32.92749257353249,77.26635035352784,79.70440408077813,63.26822878755484,65.07210809411605,76.8743136319151,79.30665326584496,63.12512996686403,64.92938911764239,0.3920367216127403,397.7508149331754,0.1430988206908097,142.7189764736596,23.09802,15.852881924819116,24160.097903853395,16581.818673715657,116.49576,53.95426219504964,121200.46232375214,55783.959683363646,203.76744,94.2342716702802,208532.61369817163,95052.69983116051,5638.71319,2513.583041078552,5855348.123509477,2586582.2383610248,1891.59892,818.2330923992765,1959604.765490984,836938.0445814766,3159.03922,1312.9077897978189,3267884.188946069,1342756.2565658602,0.43257,100000,0,104991,1098.1862683569725,0,0.0,0,0.0,8777,91.12589431404544,0,0.0,19722,201.75934061336343,2456804,0,88344,0,0,5659,0,0,25,0.2614953349232249,0,0.0,0,0.0,0,0.0,0.09845,0.227593221906281,0.3235144743524631,0.03185,0.3118010026995758,0.6881989973004242,25.90753084968097,4.7243066140697625,0.3296402502606882,0.1803962460896767,0.248696558915537,0.241266944734098,10.790516647425711,5.151441452832251,34.23509067085936,15898.212860193056,86.70384171905474,15.979673166704329,28.870157828352355,20.59468154605532,21.25932917794273,0.5290667361835245,0.7579479768786127,0.6947410043495452,0.5575364667747164,0.1158280922431865,0.6926430517711172,0.9153846153846154,0.8595679012345679,0.7407407407407407,0.1454081632653061,0.4776426246359431,0.6961770623742455,0.6379585326953748,0.5062240663900415,0.1081794195250659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029389111840771,0.0054476287091047,0.0076878548143032,0.0105030909386692,0.013161377007797,0.0161337994435215,0.0186969301110385,0.0210293982403972,0.023757878366211,0.026345182346371,0.0289834248473341,0.031556766202395,0.0338782401021185,0.0364165008403014,0.0387543252595155,0.0413170120960649,0.0438333730656412,0.0461348316940685,0.0485621806146768,0.0509047296240287,0.0682340888182654,0.0839358692235146,0.0991040198313078,0.1133277857947902,0.1276683390546606,0.1456764229192487,0.1624525715014507,0.1789158168707599,0.1943270002675943,0.2080306872394378,0.2254431294704023,0.2415539075375141,0.2572903844268456,0.2717091132249156,0.2852764118282652,0.2989223922669715,0.3122219489839261,0.3244903249073061,0.3363733539539221,0.3471037372983523,0.3576911481644674,0.3677896736517466,0.3772700852875935,0.3854755984769317,0.3942874543239951,0.4027284758382703,0.4106059273590713,0.4191590755196688,0.4262045646661031,0.4334596729306369,0.4367761662517588,0.4399479973445452,0.4425521062102384,0.4446093193092713,0.4471296379480729,0.4488148879698784,0.4504567814476458,0.4529024556051135,0.4544889610053339,0.4551730369567182,0.4561650079769049,0.4581193838254172,0.4585347158643302,0.4593365618534433,0.458975426905456,0.459726100252626,0.459013531209079,0.460828752370849,0.4615826511561108,0.4617387413042594,0.4631687050695546,0.4659722979605191,0.4692192680231424,0.4672904483430799,0.4691003161828112,0.4687764222732214,0.4636207166327648,0.4674543946932006,0.4608282036933408,0.4607919254658385,0.0,2.3933602194310275,81.81964701245201,291.711889671848,451.9964279853924,OR_public_baseline,1 +100000,95699,43478,402.773278717646,9711,100.15778639275229,7535,78.09903969738451,3082,31.71402000020899,77.34534288058313,79.71236025112199,63.32656324425341,65.07391336529066,76.97679132742769,79.3434352281742,63.1934244336432,64.94413505729766,0.3685515531554415,368.92502294779206,0.1331388106102125,129.77830799300705,23.56024,16.138133456882024,24618.87794020836,16863.22604464396,115.90637,53.16660424833298,120470.14075382188,54911.75495867855,197.5285,90.2750689059108,202806.33026468405,91539.93138761452,5572.44494,2448.3987076831354,5778819.047220974,2514505.32038449,1869.23127,792.5121764202629,1937838.5563067533,812833.6665661535,3059.71138,1250.3908773354551,3151368.3528563515,1267879.534267146,0.43116,100000,0,107092,1119.0399063731074,0,0.0,0,0.0,8691,90.13678303848523,0,0.0,19120,196.24029509190277,2459252,0,88428,0,0,5747,0,0,25,0.2507863196062654,0,0.0,0,0.0,0,0.0,0.09711,0.2252296131366546,0.3173720523118113,0.03082,0.3034637088927807,0.6965362911072193,26.32242590871684,4.69916950481767,0.3258128732581287,0.183012607830126,0.253085600530856,0.2380889183808892,10.975330221652236,5.37011745866379,32.618934589731545,15841.34812017548,84.58076026807268,15.876851648537825,27.751989616824904,20.09793190853765,20.853987094172304,0.527007299270073,0.7403915881073242,0.6985743380855397,0.5730211817168339,0.1085474567383324,0.6849234393404005,0.9005376344086021,0.8827586206896552,0.713903743315508,0.1317204301075268,0.4810690423162583,0.6812313803376365,0.6416,0.5359154929577464,0.1029315960912052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028252592352559,0.0055338211744673,0.0082585934012418,0.0107759496242128,0.0135857959283288,0.0163512151416732,0.018715024005382,0.0215081204128089,0.0239097990309324,0.0264814568383986,0.0291144690710024,0.0319470117067159,0.0346012219456501,0.0368916635760497,0.0392260061919504,0.0411734910117121,0.043415669825488,0.0458819378139399,0.0481112162457238,0.0503783062717552,0.0674305171135226,0.084299769729956,0.100322164272297,0.1154194200092596,0.1288913277474093,0.1464374920621481,0.1633489399199499,0.1794814436064596,0.1946344591705857,0.2095986955728859,0.2259197792960751,0.2412415122537606,0.2569926645044731,0.2717766219545579,0.285497124980723,0.2991351591085486,0.3125195373554236,0.3247431381595976,0.3357444585755814,0.3467528449135352,0.3570469332468916,0.3664365125804564,0.3749570533249612,0.3840791841631674,0.3921067678869058,0.4009554493945117,0.4083185996062646,0.4156717844174046,0.4226422447388932,0.4287209518005246,0.4317118043342983,0.4349064561180326,0.4377356885650287,0.4403210795718939,0.4426410973657836,0.4440383666419936,0.4458744823192099,0.4473871164934657,0.449309705336905,0.4505148895638265,0.4508675971331572,0.4526682596575069,0.4542263201302683,0.4557168414139813,0.4578907528142016,0.4578638311379146,0.4596341393040568,0.4613988730062717,0.4628119770712429,0.463451940106263,0.465014645032312,0.465536907283689,0.4656183540632854,0.4660626415683824,0.4662233786258071,0.4651529868868382,0.470330358540786,0.4707832573559884,0.4716342082980524,0.4730056406124093,0.0,2.476016237343413,75.72548247968987,289.2646786550308,451.89067208527774,OR_public_baseline,2 +100000,95656,43680,404.229739901313,9763,100.65233754286191,7590,78.69867023500878,3089,31.83281759638705,77.2498286400838,79.64808529511826,63.26585613190741,65.03871871249966,76.86915425676943,79.2657375015352,63.12699580764454,64.9026351330363,0.3806743833143713,382.34779358306525,0.1388603242628718,136.08357946336014,23.72832,16.279434869996336,24805.88776448942,17018.728433131575,116.1881,53.56070711779144,120826.31512921302,55363.35176937196,199.01153,91.3741317174666,204232.3638872627,92590.49889218873,5521.01313,2441.2299808927187,5727347.474282847,2508307.2284748084,1881.32179,809.7624360437995,1946418.886426361,826197.0979800533,3057.44348,1265.0558383275368,3152951.451032868,1284806.4376357007,0.43222,100000,0,107856,1127.540352931337,0,0.0,0,0.0,8745,90.7522789997491,0,0.0,19251,197.48891862507315,2450576,0,88234,0,0,5774,0,0,29,0.3031696913941624,0,0.0,0,0.0,0,0.0,0.09763,0.2258803387163944,0.3163986479565707,0.03089,0.3068875326939843,0.6931124673060157,26.19897554639724,4.7464874439362585,0.347562582345191,0.1830039525691699,0.2442687747035573,0.2251646903820817,11.036645545490009,5.366952604118816,33.07441287459668,15899.447468744323,85.57132151066916,15.969209515752206,30.075578104794555,19.07627778882821,20.45025610129418,0.5291172595520421,0.734341252699784,0.6815769522365428,0.5699239321240491,0.1208198489751887,0.6934557979334098,0.9217877094972068,0.8493975903614458,0.7346368715083799,0.1408839779005525,0.4801641586867305,0.6692531522793405,0.6251266464032421,0.5262768319763138,0.1159517426273458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025122573848211,0.005466143377245,0.0082418976664873,0.0111359479780532,0.0141082890012307,0.0169576110647139,0.0198331769792388,0.0221064992086588,0.0248312538351401,0.0274474861994449,0.0300643136289503,0.0323889550889592,0.0349649630079334,0.0370022984714649,0.0394499106930836,0.0418248197830156,0.0442774985752033,0.0466470789771488,0.049043883559791,0.0512579895106717,0.0683962510579163,0.0845943596778754,0.100441860221035,0.1157962306243357,0.1300910827554908,0.1479286183026736,0.1632752761257434,0.1802951990195556,0.1948067232285191,0.2087563792640343,0.2263255020882121,0.2429711905588337,0.2577767113127699,0.2726504728677068,0.2856133377498068,0.2995542314661449,0.3121940838476271,0.3240018512456399,0.3356075447628593,0.3464705476458817,0.3575057253461364,0.3670833970385877,0.3765773058425789,0.3859287642182379,0.3944473610314137,0.4026498766778627,0.409850096285761,0.4170605187319884,0.4239209758131776,0.4304223031333882,0.4335368335368335,0.4367696594169751,0.4386702656627362,0.4416410226493794,0.4443594588919883,0.4462462740737308,0.4483364480010222,0.4498033945547757,0.4509031198686371,0.4532884497049987,0.4544919054495706,0.4551489020354958,0.4554632207604514,0.4561642901002933,0.458969839404622,0.4602989813467389,0.4604711663535193,0.4625700815494393,0.4646788500587795,0.4657401422107304,0.4654303288165379,0.4634725369591022,0.4628714459919132,0.4641885061046737,0.4620253164556962,0.4608506524891251,0.4646543634657491,0.4677148846960168,0.4677648395342232,0.4671618451915559,0.0,2.48465553088062,77.85917403650966,294.0979687619449,449.67753779162456,OR_public_baseline,3 +100000,95735,43643,403.3738966939991,9829,101.2169008199718,7642,79.13511255026897,3198,32.851099388938216,77.32698317968122,79.68512162376116,63.31555014592704,65.06042602996004,76.93346339614602,79.29192060870653,63.17228497564285,64.92101528339815,0.3935197835351971,393.201015054629,0.143265170284188,139.410746561893,23.0681,15.779785271611798,24095.78524050765,16482.775653221703,116.08108,54.01781523681989,120517.49099075572,55692.58648379454,204.12098,94.17143706452028,209399.4150519664,95419.3725667408,5579.3898,2495.1668622913894,5777634.041886457,2556318.434175813,1895.49585,823.286475355139,1963172.726797932,843196.360114004,3167.20072,1313.9620105581585,3256249.1669713277,1328771.7377209228,0.4332,100000,0,104855,1095.2629654776206,0,0.0,0,0.0,8729,90.44758970073642,0,0.0,19778,202.74716665796208,2458732,0,88480,0,0,5786,0,0,31,0.3238105186191048,0,0.0,0,0.0,0,0.0,0.09829,0.2268928901200369,0.3253637196052498,0.03198,0.3159612246856704,0.6840387753143296,26.017929433286223,4.690873112659556,0.3374771002355404,0.1833289714734362,0.2491494373200732,0.23004449097095,11.118957857116644,5.439888499285196,34.29454352808594,15927.61243639014,86.54270363905454,16.204166157848103,29.592507914804223,19.637346020449208,21.108683545953,0.5349384977754514,0.7694503925767309,0.7022101589763474,0.5608646188850968,0.1118697478991596,0.6710239651416122,0.8983957219251337,0.8494623655913979,0.7068965517241379,0.1382716049382716,0.4919049259386841,0.7224926971762414,0.6524896265560166,0.5170118343195266,0.104736490993996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025935869510156,0.0052625174910263,0.0082211801960903,0.0109618823146944,0.0136587846427663,0.0162720839061147,0.0189766284618835,0.0214870465263458,0.024283553411553,0.0267960409821803,0.0294247266093408,0.0317706355153617,0.0345171403607956,0.0370904298041477,0.0393959087673691,0.0418810837621675,0.0442606147825276,0.0468450151966225,0.049006870316284,0.0514548845156114,0.0684226460793218,0.0843150383963507,0.0999832242912263,0.1145698636473544,0.1286922055195969,0.1466924671150023,0.1640698747388182,0.179942290697303,0.1955508519872576,0.2087636059168294,0.2261736646364469,0.2425965641992158,0.257732407548484,0.2716011555633371,0.2849293650007157,0.2985397332268902,0.3109730200952232,0.3229990758897378,0.33528482271761,0.3465363570666575,0.3568298789817777,0.3669297618070297,0.3774053014565354,0.386369102015295,0.3954823609722798,0.4037293961988846,0.4113781708987197,0.4192176001635323,0.4264308012486992,0.4325001325345915,0.4354877982793139,0.4386360492460921,0.441947406431879,0.4450117089205975,0.4476495406804512,0.4500880254501652,0.4519441117764471,0.4529139072847682,0.4542915272940446,0.4556077711157925,0.4571336627103564,0.4583483303339332,0.458980138646706,0.4607325093548021,0.4610161211529067,0.4624893887945671,0.4633276297091152,0.4638052530429212,0.4643713539243406,0.4664074839023205,0.4663140311804009,0.4672912379508285,0.4697378565921357,0.4733691003809968,0.4749157438613384,0.4757917728431016,0.4735599622285175,0.4747495826377295,0.4776161961790704,0.4722776226565616,0.0,2.638701602871838,81.75125618556798,291.96610726640847,448.4645297940668,OR_public_baseline,4 +100000,95747,43729,404.8899704429381,9961,102.47840663415042,7690,79.58473894743439,3200,32.94097987404305,77.39144353273707,79.73005020046382,63.36142006586866,65.08722108903955,77.00546127191907,79.34126810976925,63.221024638822655,64.9486818592072,0.3859822608179968,388.78209069457625,0.1403954270460019,138.53922983234668,23.31626,15.961078414087831,24351.948363917407,16670.055891137927,117.7769,54.38316717397323,122251.6841258734,56042.18978053767,203.66352,93.6558623435745,208224.1427929857,94340.73816734452,5576.39985,2477.669829774162,5774004.438781371,2537642.7347604013,1903.06731,820.4001673298565,1969521.2591517228,838787.6954430797,3163.8866,1305.8267402466895,3260183.775992981,1326861.1488909966,0.43327,100000,0,105983,1106.9067438144275,0,0.0,0,0.0,8830,91.44934044930912,0,0.0,19751,201.81311163796252,2462373,0,88548,0,0,5820,0,0,25,0.2611047865729474,0,0.0,1,0.0104441914629178,0,0.0,0.09961,0.2299028319523622,0.3212528862563999,0.032,0.3106334411261175,0.6893665588738824,26.054392585831906,4.700618074186683,0.3379713914174252,0.1863459037711313,0.2430429128738621,0.2326397919375812,11.199907768123172,5.605820180121725,34.03160363257579,15898.082235153288,86.80853317905603,16.47668897292832,29.585075098641727,20.19557754878491,20.55119155870108,0.5391417425227568,0.7459874389392882,0.7037322046941131,0.5774175517048631,0.1150347779561262,0.6857304643261608,0.8840970350404312,0.8631921824104235,0.7058823529411765,0.1742627345844504,0.4954422687373396,0.6977401129943502,0.6544080604534005,0.5394641564083997,0.1002673796791443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025919326097521,0.0054723998500157,0.0081573020028002,0.0106539645138684,0.0132382995597401,0.0156746193306734,0.0185755043814958,0.0210276083008549,0.0236492353584161,0.0260088401407874,0.0285450819672131,0.0312807780695994,0.034041984772043,0.0366089623515366,0.0391720270493155,0.0414428559623171,0.0437064022686344,0.0461414007322056,0.048563469294416,0.05078125,0.067509315408782,0.0839358396199763,0.0996621976039109,0.1140089810598491,0.1276663046572684,0.1465658541743774,0.1636458123429032,0.1795810237150365,0.1949164308218081,0.2088251374907535,0.2257762370268291,0.2418548805815161,0.2572618167587077,0.271768588538707,0.285338817164097,0.299475245770968,0.312344536034177,0.3244707760452384,0.335579835937234,0.347630391460705,0.3581371131038472,0.3678606115213143,0.3780596113538669,0.3869365424070452,0.3953542081975981,0.4035816919300928,0.4106252349329658,0.4181899355826264,0.4249061895425685,0.4316892186817983,0.4349862333315337,0.4381407028242663,0.4407251455377833,0.4435043391333323,0.4457129230815088,0.4473692293515987,0.4489620752137839,0.4501401946231239,0.451142808042619,0.4520318768101602,0.4538297026704771,0.4552158273381295,0.4566232333092823,0.4575974939846552,0.4587032553134248,0.4603898687176767,0.4621936381018598,0.4641494919708965,0.465777012483857,0.4674734020953464,0.4709948622139187,0.4748771163298744,0.4741558441558441,0.4726559435072577,0.4759606101564008,0.476155894456548,0.4770400248215948,0.4798428778168286,0.4794059960773326,0.4774066797642436,0.0,2.8400234413576166,78.1889457347617,299.9456080119181,455.95319249312206,OR_public_baseline,5 +100000,95719,43686,405.8964259969285,9551,98.31903801753047,7425,76.86039344330803,3088,31.85365496923286,77.37264048070351,79.73006224299324,63.34029949113111,65.08111082984705,76.99706852982233,79.34988839700476,63.20421396907989,64.94574441137723,0.3755719508811808,380.17384598848025,0.1360855220512249,135.36641846981468,23.50612,16.08658884908762,24557.423291091636,16806.05611120845,113.74599,52.6303082670703,118065.828101004,54216.7681098531,197.02406,90.60701836860578,200366.7714873745,90565.6462603144,5440.05679,2421.5392663989005,5637726.647791975,2484206.9457462984,1864.70354,803.5031861123166,1929845.0359907649,821182.8540961746,3057.74278,1263.262497523367,3157005.568382453,1289935.6351787113,0.4329,100000,0,106846,1116.246513231438,0,0.0,0,0.0,8550,88.60309865334992,0,0.0,19150,194.67399366896856,2459490,0,88482,0,0,5630,0,0,21,0.1984976859348718,0,0.0,0,0.0,0,0.0,0.09551,0.2206283206283206,0.3233169301643807,0.03088,0.3047099652949925,0.6952900347050074,25.818009278985254,4.7313433970167225,0.3287542087542087,0.1841077441077441,0.2507744107744107,0.2363636363636363,11.129066555952068,5.490653990535583,32.92865354873514,15805.203405070592,83.9721925234216,15.842161096633658,27.630437716076266,19.718815338959143,20.780778371752547,0.5442424242424242,0.761521580102414,0.7140516181892667,0.5937321937321938,0.1154672395273899,0.6773455377574371,0.9095890410958904,0.8598615916955017,0.7608142493638677,0.1359223300970873,0.5032587634313899,0.7075848303393214,0.6688137412775094,0.5455212922173275,0.1096551724137931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026430379746835,0.0054016802975484,0.0079328849528794,0.0103083360415989,0.0129640362382942,0.0156972127776533,0.018052271059284,0.0204648219407387,0.0229277617066514,0.0254992885585889,0.0278979637869871,0.0303076970462315,0.0324517747706988,0.0349021627188465,0.037501289590426,0.0400082683065474,0.0425311632915061,0.0448491888976475,0.0470607799118649,0.0494521518143565,0.0663332428425251,0.0822416607374544,0.0976272110555398,0.1130217256492994,0.1272731106168102,0.1450862652232747,0.1622366941728007,0.178745503692825,0.1936048871136552,0.2079401166781057,0.2249038803269684,0.2409006318705098,0.2562164161246111,0.2699893885856188,0.2835868536333017,0.2974973954292554,0.310766447809192,0.3227790355827392,0.3347616557932304,0.345588910309373,0.3565635499942069,0.3665705984347908,0.3762026217450619,0.3849435231915405,0.3937382790618378,0.40166335067535,0.4095529730679451,0.4169738402867237,0.4239693566188405,0.4306590599229619,0.4345400513305417,0.4361785867178545,0.4397515352180434,0.4426979676627395,0.4448215033187825,0.4467776749922911,0.4480935240340203,0.4493384055573933,0.4505150561488589,0.4523390342052313,0.4538567363322842,0.4552272953347259,0.4554451258194121,0.4561743997111392,0.4570651249787451,0.4575628259838786,0.4574670275873985,0.4596103813693762,0.4600624246293537,0.4625305403132134,0.4632529010867563,0.4628500512599147,0.4655305466237942,0.4680702299564947,0.4712973593570608,0.4707019451492086,0.4672824045084534,0.4622896322460004,0.4608009024252679,0.4676089517078916,0.0,2.827352435954118,77.84316189586498,288.95630261899515,432.48905684712304,OR_public_baseline,6 +100000,95735,43755,405.5465608189273,9984,102.9508539196741,7737,80.15877160912937,3208,33.12268240455424,77.33281654085012,79.69880529624749,63.319784280511655,65.07095375117107,76.93978637399587,79.3008995721636,63.17758062451286,64.92968501063608,0.3930301668542455,397.90572408388414,0.1422036559987916,141.26874053499705,23.00276,15.77312453966407,24027.534339583224,16475.81818526565,117.71395,54.359012748996754,122303.4209014467,56128.52989053357,205.70668,94.72524476167575,210612.23168120327,95688.04533066838,5608.42165,2493.381103525737,5811563.451193399,2558201.2059679446,1891.77001,819.1222313764079,1956948.2738810256,836897.0312299373,3165.2298,1309.0711446536254,3269574.450305531,1335828.8277167547,0.43376,100000,0,104558,1092.1606517992377,0,0.0,0,0.0,8851,91.76372277641406,0,0.0,19936,203.99018122943545,2459606,0,88561,0,0,5823,0,0,26,0.2715830156160234,0,0.0,0,0.0,0,0.0,0.09984,0.2301733677609738,0.3213141025641026,0.03208,0.3001040385888584,0.6998959614111416,25.92189680751433,4.709358982197782,0.3381155486622722,0.1894791262763345,0.2427297402093834,0.2296755848520098,11.06422636397886,5.412989085573713,34.379356204982514,15946.367696731051,87.42359257150277,16.93723642758201,29.812195766348943,19.82885952231613,20.84530085525568,0.5366421093447072,0.7455661664392906,0.6899847094801224,0.5807540799099606,0.1182108626198083,0.6813069094804499,0.917910447761194,0.8380809595202399,0.72544080604534,0.1396508728179551,0.4906303236797274,0.6804511278195489,0.6393022062596203,0.5391304347826087,0.1123899796885578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002786531427008,0.0053452070633817,0.0080211188953193,0.0104390075319421,0.0130224229845765,0.0155027705345501,0.0178667944808737,0.0206227667177131,0.0234760025357354,0.0257728264097234,0.0284299452521068,0.0308351045805994,0.0330464645218339,0.0356535978002286,0.0380297965416202,0.0404655345274886,0.0429681027340513,0.0455163395979701,0.0480389302499688,0.05055576969154,0.0677210564777116,0.0842540280393387,0.0998122883000031,0.1154355642465148,0.1294613681880468,0.1473828909802262,0.164170873456921,0.1804248797309378,0.1960011535134096,0.2099133493479753,0.2273006234051487,0.2438868692114602,0.258996639514524,0.2732859486057955,0.2870314339469023,0.3005948754306477,0.3134336690261929,0.3253226424018559,0.3370440630218214,0.3483393311481422,0.3588454095644213,0.3688825329097751,0.3782267248742526,0.3873768916646649,0.3956671578357709,0.4039051293465895,0.4119915099908318,0.420150149383315,0.4274734706616729,0.4340888894783612,0.4371506300502145,0.4400238022750546,0.442517898915432,0.4449877039041923,0.4476471557626331,0.4492366588968988,0.4501660599093057,0.451888042398145,0.4542116332793159,0.4552483598875351,0.4565143311498996,0.4575681190733405,0.4601208779556781,0.4621966678739587,0.4631553279687881,0.4633946071939397,0.4640078950423778,0.4638276038994356,0.4662246909156065,0.4659354052407068,0.467918549927776,0.4682509402082084,0.4693073145515637,0.4736636448890278,0.4767822736030828,0.4757671699951291,0.4766384446534964,0.4810205351586807,0.4791607598525659,0.4801744647105472,0.0,2.401177426281172,83.5477621674227,291.18637619083324,455.2791350195665,OR_public_baseline,7 +100000,95761,43674,404.2668727352472,9946,102.1710299600046,7723,79.86549848059231,3243,33.353870573615566,77.34910350822409,79.6794689401456,63.34642956891118,65.0675198225591,76.96026117532918,79.28855027524249,63.20523133133735,64.92884276606308,0.3888423328949102,390.9186649031113,0.1411982375738318,138.67705649602158,23.33518,15.991262531274376,24368.145696055806,16699.13903496661,117.79317,54.21905455890269,122227.59787387348,55839.28171061568,203.47257,93.8036178603162,207571.1093242552,94198.56895216688,5636.34024,2494.546391804153,5833880.796984158,2553010.872697813,1908.03409,820.9903564005946,1972149.685153664,836992.0898581637,3199.86694,1319.3769001934677,3294031.098255031,1338139.8194602318,0.43284,100000,0,106069,1107.6429861843549,0,0.0,0,0.0,8860,91.70748008061736,0,0.0,19685,200.72889798561,2459880,0,88531,0,0,5919,0,0,33,0.3341652656091728,0,0.0,0,0.0,0,0.0,0.09946,0.2297846779410405,0.3260607279308264,0.03243,0.2994029001990332,0.7005970998009667,26.09996323718048,4.754492543683253,0.3389874401139454,0.1782985886313608,0.2440761362164961,0.2386378350381976,11.112175303177404,5.448262271387592,34.65038939544301,15939.028454449352,86.95030402489607,15.902984309642669,29.651820162189843,20.5841727762329,20.81132677683065,0.5326945487504856,0.7436456063907044,0.687929717341482,0.5849158979924037,0.1119363395225464,0.6914833615341229,0.8879781420765027,0.8528481012658228,0.7512315270935961,0.1544715447154471,0.4853781512605042,0.6913946587537092,0.6354481369587109,0.5379262352122477,0.1015831134564643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027847537265068,0.0055544856526013,0.0084101814935427,0.0110207108104539,0.0135437426282181,0.0160938963312838,0.0186000529974112,0.0208705414093994,0.0235314553127139,0.0262527879519551,0.0289106760508549,0.0311130722106494,0.0336258812406223,0.0363741161213293,0.0389108267777422,0.0416451486293871,0.0435421452370604,0.0459550818108293,0.048400839585195,0.0507242603796769,0.0672399578380522,0.0835590791661872,0.10023906387619,0.1151679488796401,0.1294867741595531,0.1480898282694848,0.1646755779810678,0.1809596733027054,0.1960426472000768,0.2101123956670345,0.227446421459403,0.2441569959226052,0.2583079599826011,0.2728963171193244,0.2856545424530897,0.299736305619571,0.3126332830904929,0.3249898753543626,0.3368792715878386,0.3479501340605449,0.3586727487438349,0.3690738311627471,0.3783088845178567,0.3870321256705348,0.3953844843736694,0.4040797163225719,0.4116539938266957,0.4191745156596982,0.4263369348987791,0.432794665464717,0.4358950074414829,0.438402789307654,0.4403177390122338,0.4431210783174529,0.4456875690855316,0.4475151739224204,0.4492134580750044,0.4512655086848635,0.4527664852201474,0.4541782378187326,0.4562930447286763,0.4571994557387546,0.4591683101130267,0.4604492852280463,0.4608553114449283,0.4621783967680204,0.4638221083881483,0.4656545143925474,0.4678406799193316,0.4686134367980396,0.4704973307108738,0.4711470218922313,0.4716205636743215,0.4745308310991957,0.4805436057880328,0.4792054624456859,0.4770716009654063,0.4722281336454564,0.4754193175245806,0.4805248052480524,0.0,3.010281331160229,78.33018830423228,296.8879280408945,460.8454429268583,OR_public_baseline,8 +100000,95659,43662,403.6734651208982,9629,99.35290981507228,7512,77.84944438056012,3043,31.39275969851242,77.31532774038504,79.70623155440126,63.31028192710126,65.07579497138492,76.9490088259296,79.33846631818348,63.17749512594863,64.94577122060186,0.3663189144554479,367.7652362177781,0.1327868011526263,130.02375078306727,23.4091,16.06281571384487,24471.40363164992,16791.745380826553,115.00117,52.98517784483992,119534.56548782656,54704.29112246618,198.8084,90.97235929696632,203747.195768302,91912.07064567348,5403.06664,2386.573851762937,5605840.433205449,2452459.3731514416,1820.01733,779.3926725643702,1884157.120605484,796308.9751767946,3002.62928,1231.665775411062,3100800.112901034,1254029.2746599426,0.43294,100000,0,106405,1112.33652871136,0,0.0,0,0.0,8675,89.97585172330884,0,0.0,19314,197.8172466783052,2459141,0,88389,0,0,5717,0,0,22,0.2299835875348895,0,0.0,0,0.0,0,0.0,0.09629,0.2224095717651406,0.3160245092948385,0.03043,0.3098286389600158,0.6901713610399842,26.099222371180456,4.622688856037354,0.3397231096911608,0.1907614483493077,0.2332268370607028,0.2362886048988285,11.039239785158038,5.484033471057301,32.415997003998044,15952.096119066751,84.8280630681964,16.5651959297006,28.84376607025574,19.94578243596004,19.473318632280023,0.5420660276890309,0.7480809490579204,0.6974921630094044,0.579718309859155,0.1090182648401826,0.6988095238095238,0.9028871391076116,0.8576329331046312,0.7395833333333334,0.1385542168674698,0.4969135802469135,0.6920152091254753,0.6500761808024378,0.5355859094176851,0.102112676056338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028060862694248,0.0054137350716762,0.0081795855406036,0.010769512120781,0.0132242838541666,0.0158899923605805,0.0186650891436497,0.0212450845207088,0.0237664263435087,0.0262866856452372,0.0290853896170492,0.0315867325451202,0.0342780721156319,0.0368790379919008,0.0393071698424822,0.0414430068158077,0.0442639257294429,0.0468401332655242,0.0495022727981942,0.0518208158755966,0.0690844121242516,0.0851473744830113,0.100528989462194,0.1154315660976995,0.1298758865248226,0.1482665537500661,0.164532364933741,0.1809292516137278,0.1966009299342632,0.2110172493371832,0.2280198756157237,0.2438303355820979,0.2581898945030538,0.2729790075082635,0.2863925270706425,0.3007344457264578,0.3138365623114567,0.3262335498542142,0.3379636991435905,0.3483765898638652,0.3592717917815838,0.368738578323415,0.3779971791255289,0.3874346807616073,0.3963200934579439,0.4039411299881469,0.4122118255023455,0.4193297457216455,0.4260903426791277,0.4324342218514546,0.4349001270373273,0.4379370387772587,0.4408383182724534,0.4431045504736444,0.4449641362821279,0.4467917899408284,0.4480335288118307,0.4495129602113257,0.4512505590532218,0.4535705932096655,0.4557399331709803,0.4562634558647636,0.456937089599661,0.4580684568920661,0.4602737724084177,0.4624079013388966,0.463426650437605,0.465181237358333,0.4659433826699238,0.4675626145387904,0.4678157698056801,0.4695311223656265,0.4693136110029843,0.4706994328922495,0.4723926380368098,0.4740967544396816,0.4722048719550281,0.4720968403775133,0.4722379603399433,0.4817432273262662,0.0,2.655576069979463,74.67060886020694,299.7425404787084,444.5051592937295,OR_public_baseline,9 +100000,95602,43327,402.5124997384992,9835,101.32633208510282,7525,77.90631995146545,3057,31.43239681178218,77.3146043072854,79.73311217125246,63.296484254502126,65.08280002413328,76.95146539750667,79.37034386111496,63.16516834248334,64.95506035999601,0.3631389097787405,362.768310137497,0.1313159120187848,127.73966413726612,23.20362,15.877684813946626,24271.061274868727,16608.109468365332,114.77151,52.730466130813134,119197.38080793287,54302.2490437576,200.58639,91.72265170421367,204507.01868161757,91898.38120194672,5483.76604,2426.1737411921786,5681317.190016946,2483113.9844608903,1847.38155,792.3343040839821,1912754.9423652224,809200.7643138713,3033.5662,1239.756773642435,3122988.91236585,1255295.0510609606,0.42969,100000,0,105471,1103.2300579485784,0,0.0,0,0.0,8619,89.2763749712349,0,0.0,19419,197.87242944708268,2460510,0,88361,0,0,5783,0,0,34,0.3451810631576745,0,0.0,0,0.0,0,0.0,0.09835,0.2288859410272522,0.3108286731062532,0.03057,0.3075219108157565,0.6924780891842435,26.23475643885164,4.705173390526101,0.3408637873754153,0.1807308970099667,0.2434551495016611,0.2349501661129568,11.028091692680526,5.456862096077869,32.18305995244301,15840.38871824446,84.47164546333545,15.744836412585444,29.052757766191863,19.66419805654385,20.00985322801428,0.5375415282392026,0.7411764705882353,0.6869395711500975,0.5972850678733032,0.1195414847161572,0.6982142857142857,0.8977272727272727,0.8631756756756757,0.7803617571059431,0.1260744985673352,0.4913601368691189,0.6865079365079365,0.6340598073998986,0.5459811730629979,0.1180040458530006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022595320843423,0.0049284562574155,0.0075932919153774,0.0101813747904282,0.0127970377604166,0.0154206559380729,0.0181658693811772,0.020482173868628,0.022859539127144,0.0253763440860215,0.027938748089724,0.0307039620335083,0.0329924694457018,0.0353827290243475,0.037934309131072,0.0405111979651343,0.0425542937665782,0.0449963143305059,0.0475293676970939,0.0498232146768322,0.0673669906971882,0.084173144210019,0.0996807527514072,0.1144857353405621,0.1287039871633818,0.1468569976279227,0.1637966749880491,0.1797776759354983,0.194665553986391,0.2087478780325332,0.2253838766415245,0.2422537349031852,0.2571989100817439,0.2710595816027966,0.2844715429226664,0.2984779688488737,0.3109235241502683,0.3231657141568879,0.3348263004728992,0.3461754748378952,0.3568962320989943,0.3664742456353992,0.3753687927295994,0.38489420180271,0.393890030270244,0.4025906735751295,0.4109039887753056,0.4177132957990472,0.4247186349255744,0.4318671584764473,0.4342803158107834,0.4363345470594725,0.439144388050839,0.4418797090719045,0.4442418626894222,0.4448229092814648,0.4464886408927859,0.4477663856359631,0.4497296923847522,0.4508693456460573,0.452678318375059,0.4543627499751269,0.4556465226198514,0.4578242507735043,0.4589268813551095,0.4606812447434819,0.4609647228221742,0.4632287565095897,0.4641068447412353,0.4657457005920496,0.4674108584344296,0.4680265501052291,0.4695129828187572,0.4682310750760115,0.4710186789909493,0.4729215276924966,0.4780729833546735,0.4807084123972169,0.4834042553191489,0.4917703733440385,0.0,3.10383039347419,74.07282133716994,289.20239075696423,454.7890102378529,OR_public_baseline,10 +100000,95633,43536,404.954356759696,9605,99.06622191084668,7459,77.28503759162632,3133,32.29010906277122,77.29129418892526,79.69150275532623,63.29829466637945,65.0699276991678,76.91216776977069,79.31050723297466,63.16110078309411,64.93554298219357,0.3791264191545735,380.99552235156864,0.1371938832853345,134.38471697423893,22.57706,15.50796444610643,23607.102150931165,16215.319730952178,113.4692,52.18247100659404,117967.53212803112,53884.6574206023,199.12486,91.2668093989606,203677.54854495835,91956.83316232808,5493.81691,2427.822037112552,5696530.130812585,2490728.1101982137,1896.0082,810.6809139903037,1963964.9911641376,829216.5503017806,3105.31504,1274.2628082034562,3202854.7677057083,1294390.4634876477,0.43174,100000,0,102623,1073.0500977695983,0,0.0,0,0.0,8535,88.51547060115233,0,0.0,19248,196.7730804220301,2462494,0,88492,0,0,5638,0,0,23,0.2405027553250447,0,0.0,1,0.0104566415358715,0,0.0,0.09605,0.2224718580627229,0.326184279021343,0.03133,0.3124198480812863,0.6875801519187136,25.994521124729665,4.765420360072663,0.3350315055637485,0.1689234481834026,0.2537873709612548,0.242257675291594,11.0956142898359,5.385352600330624,33.53795622263712,15800.698441472028,84.17998868417713,14.4653349701483,28.460546727686168,20.27218934784828,20.981917638494384,0.5333154578361711,0.746031746031746,0.6970788315326131,0.5899280575539568,0.1215002641310089,0.691415313225058,0.9104046242774566,0.865814696485623,0.754054054054054,0.1465968586387434,0.4857890148212729,0.6838074398249453,0.6406833956219968,0.5476687543493389,0.115155526141628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025931140666308,0.0049883402615836,0.0075515361895191,0.0101615689462453,0.0128193388883801,0.0154402403625808,0.0178334726838917,0.0204525496763126,0.022840667430067,0.0252083631970184,0.0276888998277135,0.0301337222439044,0.0327654671522334,0.0355291765845415,0.0379894496691408,0.0404302632259399,0.0425946461327999,0.0448032395389886,0.0471973945706348,0.0494599441177697,0.0661211437170805,0.0835201441411242,0.0988133991389268,0.1134818214353382,0.1271637254074136,0.1453460064776985,0.1619088061999044,0.1779349574443154,0.1925737440261725,0.20679585592356,0.2241282642917214,0.2394932048297146,0.2545854332894293,0.2693907940261901,0.2830450742418731,0.2972166446645884,0.3096318483581822,0.323094425483504,0.3342913944902016,0.3454168052385922,0.3559999536548911,0.3659276436761416,0.3758328788561402,0.3851798474749294,0.3939342265529841,0.4019287833827893,0.4099913326382695,0.417993203362547,0.424985694220465,0.4316764016370644,0.4346820652908879,0.4373573473876416,0.4399467074864642,0.4421169008757383,0.4446474023057344,0.4462698792946231,0.4477867058579211,0.4490090628423464,0.4499472582960107,0.4511998842613523,0.4526801305899324,0.4548972431077694,0.4571039588163968,0.458016134530167,0.4585143247596271,0.4586818422445738,0.4602390852390852,0.4605132794272747,0.4613317087155963,0.4632809645597369,0.4660234899328859,0.4662103433289874,0.4656666235613604,0.4654576856649395,0.4678015564202334,0.4641932700603969,0.4656025538707103,0.467590618336887,0.4765332565505327,0.4759273875295974,0.0,2.770015150114035,76.53327215565987,288.3606035298609,442.421242831048,OR_public_baseline,11 +100000,95627,43525,403.4739142710741,9911,102.19916969056855,7634,79.2140295104939,3124,32.260763173580685,77.27514686010801,79.68520042433924,63.27600815666828,65.0561175738809,76.89380865889677,79.30100019286682,63.13842732131416,64.92031559890886,0.3813382012112356,384.2002314724198,0.1375808353541217,135.80197497203983,23.7237,16.25796752952953,24808.57916697167,17001.44052362777,116.20412,53.68033256275475,120796.2813849645,55413.85923358486,203.42246,93.9803323217348,208820.9396927646,95254.77012344768,5516.67055,2454.860597526005,5728698.129189454,2526902.970573273,1870.72733,811.9272408196384,1938849.6554320431,831761.3872375755,3082.14538,1271.9743711715537,3185594.988862978,1298927.082598793,0.43188,100000,0,107835,1127.662689407803,0,0.0,0,0.0,8761,90.94711744590964,0,0.0,19708,202.19184958223096,2452665,0,88193,0,0,5814,0,0,22,0.2196032501281019,0,0.0,0,0.0,0,0.0,0.09911,0.2294850421413355,0.3152053274139844,0.03124,0.3115410273515677,0.6884589726484323,26.03277023160993,4.668725174804373,0.3365208278752947,0.186009955462405,0.2378831543096672,0.2395860623526329,11.041185365928287,5.426269807203541,33.51996131813476,15880.633295948404,86.17281415542129,16.17695670769515,29.072136235739787,20.77445956556668,20.149261646419674,0.5288184438040345,0.7183098591549296,0.6843129622421176,0.5751776927282668,0.1139867841409691,0.693118756936737,0.9059139784946236,0.8711256117455138,0.7254004576659039,0.1605263157894736,0.4780521262002744,0.6517175572519084,0.6257668711656442,0.5280172413793104,0.1016713091922005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027037427090084,0.0055035829034187,0.0081680280046674,0.0108481462671406,0.0134968825964462,0.0159177937102818,0.0187420973202267,0.02145970944656,0.0239640947522313,0.0262635157273918,0.0286994963740986,0.0310760000821844,0.0335301864274249,0.0360658441304101,0.038464715722517,0.0408110484663528,0.0435030473900244,0.0460720368908645,0.0483594018294776,0.0504546971466711,0.0677069724176134,0.0841008875336623,0.0998833923375109,0.1150888135021808,0.1290220353664462,0.1470937129300118,0.1626248671625929,0.1786220644514801,0.1934931506849315,0.2081510699354062,0.225250998596567,0.2411104484086103,0.2563252847877037,0.2705906867583514,0.2844024546377643,0.2986079479174767,0.3118751469419285,0.3246303194491478,0.3358193660047367,0.3475862702963584,0.3581685840656597,0.3682789704104508,0.3773723841421411,0.3863270068076303,0.3949427248354862,0.4040630100400613,0.4121276863139374,0.4192237921255014,0.4264049258646949,0.4322301547280979,0.4355754250491092,0.4380564671346875,0.4403113083171489,0.4422822403537094,0.4450526441732472,0.445790009564654,0.4473520547289862,0.4487011804440324,0.4501703430950824,0.4511297146457827,0.4526064555235641,0.454343785598657,0.45611132323618,0.457356608478803,0.4583862149760812,0.4607485045789,0.4614961496149615,0.4623834993434327,0.464049009422133,0.4642248722316865,0.4645248279709875,0.4679542981501632,0.4709257349149046,0.4720559657986786,0.4700242130750605,0.4702198207048999,0.4722659943271352,0.4730039608088388,0.4689089881288864,0.468429360694554,0.0,2.272776920627294,80.6786604008426,288.21945870346235,454.9958373002226,OR_public_baseline,12 +100000,95675,43607,403.490985105827,9818,101.22811601776849,7596,78.71439770054873,3153,32.55813953488372,77.28391542799022,79.6803135107665,63.28504443165552,65.05916121318543,76.90639757009039,79.2999870862763,63.14830589131083,64.92415550058358,0.3775178578998321,380.3264244901925,0.1367385403446945,135.00571260185268,23.8029,16.315759544995856,24878.912986673637,17053.315437675312,115.93876,53.43228716913606,120525.53958714398,55193.45405710589,201.97574,92.79053528330434,206383.02586882675,93432.91341793514,5535.04957,2449.676421644237,5743972.532009407,2519326.9439737606,1870.2572,805.5740568716088,1938602.1635746013,825866.7313872738,3112.63122,1276.885241555054,3217252.573817612,1303671.6760240674,0.43205,100000,0,108195,1130.859681212438,0,0.0,0,0.0,8728,90.52521557355632,0,0.0,19532,199.47739743924743,2454564,0,88311,0,0,5960,0,0,28,0.2926574340214267,0,0.0,1,0.0104520512150509,0,0.0,0.09818,0.2272422173359564,0.3211448360154817,0.03153,0.3091522157996146,0.6908477842003854,26.242407323065542,4.632020016507544,0.3389942074776198,0.185492364402317,0.2447340705634544,0.2307793575566087,11.025210579337356,5.4873536520976005,33.54750770525367,15860.088248723036,85.60964523253956,16.186082513520244,29.27749884992644,19.47872734876408,20.6673365203288,0.5334386519220643,0.7487579843860894,0.6928155339805825,0.5664575014261266,0.1183431952662721,0.6815834767641996,0.9177718832891246,0.8502495840266223,0.6945169712793734,0.1701570680628272,0.4893217153596446,0.687015503875969,0.6448834853090172,0.5306569343065694,0.1049424509140149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030096674165501,0.0057712593313859,0.0085586363036437,0.0111076106950132,0.0138986396426645,0.0166551218319615,0.0192360650721607,0.021938963108224,0.0244950140628995,0.0270237046446352,0.0293308984960091,0.0318523694052854,0.0340910260236054,0.0367297723454907,0.0391634666996985,0.0415835031076455,0.0440900660055747,0.0464722796018144,0.0488979498434558,0.0513908140613438,0.0695393293638357,0.0853687902423703,0.1011271330520748,0.1154793223192676,0.1295688426829911,0.1471021013073625,0.1639782948041329,0.1795292363403983,0.1949222299428082,0.2092376720121938,0.2258561773044294,0.2418937219002221,0.2573886529456604,0.271494600337342,0.2846197940780915,0.2981378873849365,0.3110564286113752,0.3229665881079374,0.3340611850335494,0.3453568599538498,0.3551452840698106,0.3656295113907113,0.3747906545830314,0.3835193112404406,0.3921028242524755,0.4000816265954289,0.4083355315220258,0.4156888781073248,0.4230129438062068,0.4301562086311887,0.4328907158503935,0.4362332656360094,0.4388429167550746,0.441240912982283,0.4442035702538648,0.4461858850752024,0.4478928976048764,0.4493415392760241,0.4506529577173219,0.4518708373192787,0.452323991797676,0.4536455091263228,0.4548869773100813,0.4561247520689419,0.4567494467666584,0.4583887617730006,0.4598381341919763,0.461748370734213,0.4631285315785709,0.4647096826294113,0.4659639673105498,0.468361276365603,0.4717234328072081,0.4720792687610415,0.4714299341791472,0.4744780982261373,0.4729264475743349,0.4753176421578838,0.4777362826773915,0.4736633663366336,0.0,2.6463263704058746,77.59752736323456,295.1146269711381,449.18624890735344,OR_public_baseline,13 +100000,95657,43590,405.12455962449167,9816,101.2994344376261,7657,79.46099083182621,3086,31.926570977555222,77.35161970545354,79.756620369881,63.31721993396855,65.09396864309392,76.98095500339672,79.37998777333479,63.18439452307111,64.96141469903681,0.3706647020568283,376.63259654621584,0.1328254108974391,132.55394405710774,23.95206,16.36391416011319,25039.52664206488,17106.865321004414,117.11562,53.39169365071762,121843.53471256678,55226.42739236818,201.05785,91.68063262717924,205994.57436465708,92733.6809585526,5543.87237,2434.6143107744224,5756823.316641752,2506399.344297253,1872.72392,798.8092343278591,1942857.219022131,820184.8733786943,3042.80104,1244.4321809004848,3149150.464681101,1273863.7088425255,0.43211,100000,0,108873,1138.16030191204,0,0.0,0,0.0,8756,90.92904857982164,0,0.0,19458,199.32676124068288,2459480,0,88336,0,0,5803,0,0,32,0.3240745580563889,0,0.0,0,0.0,0,0.0,0.09816,0.2271643794404202,0.3143846780766096,0.03086,0.3034216867469879,0.696578313253012,26.187294145768483,4.720191957922587,0.343084759044012,0.1858430194593182,0.2327282225414653,0.2383439989552044,11.078041227809791,5.390049063113339,32.81623233426614,15882.729832682942,85.77595602655863,16.238714521122503,29.54548113478114,20.373513890916,19.618246479739,0.5426407209089722,0.7589599437807449,0.6886181956604491,0.5808219178082191,0.1156004489337822,0.6886512180629828,0.9169054441260746,0.8573825503355704,0.7150259067357513,0.1477272727272727,0.5015065282892535,0.707635009310987,0.6390940423436731,0.5448227936066713,0.1076923076923077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028571139096868,0.0057699132991938,0.0083524468711307,0.0110338941721531,0.0137322116998443,0.0164086371969851,0.0187222760414011,0.020984162318367,0.0233128834355828,0.0257502816757144,0.0280177278043375,0.0305916928705016,0.033146726490625,0.0357430050104125,0.0380110314623918,0.0403799000589714,0.0425355499357406,0.0449090607092434,0.0473490365807982,0.0494239090766904,0.066424944097302,0.0830296938476358,0.098494867434977,0.1131454065258794,0.1269405718024759,0.1452871129928552,0.1627487205623155,0.1793773116319722,0.1948881447324781,0.2085928439500021,0.2257772314062955,0.2424843186323897,0.2572744195160184,0.2715519600652443,0.2850314437701686,0.2992515385041858,0.3122366641706807,0.3243310208126858,0.3354761039433036,0.3469492981953595,0.3581101414384592,0.3678054714090223,0.3778272242013942,0.387479620216745,0.3953773802724478,0.4037973122919492,0.4116196698331644,0.4190234961688262,0.4261624141950524,0.4329670910147377,0.4361804028439215,0.438976975044809,0.441500105939685,0.4445120890589668,0.4464850510234529,0.448091802673476,0.4505803784385435,0.4523577665175697,0.4532555979775049,0.4542771268650001,0.4555637547066281,0.4570441933809733,0.4580401797067051,0.4584661287041432,0.4606394868555323,0.4621016592046352,0.4629105813080875,0.464274322169059,0.4640145438990482,0.4637277461547777,0.4619089519751771,0.4626881720430107,0.4603498914570297,0.4611865063978286,0.4617520344662518,0.4649455524287287,0.4594037424674912,0.458594730238394,0.447887323943662,0.4476449980537174,0.0,2.304938706780611,74.99130167504764,297.9297434363662,460.8627557402664,OR_public_baseline,14 +100000,95776,44070,407.0435182091547,9824,101.10048446374876,7668,79.32049782826596,3196,32.85791847644504,77.3507064425629,79.67815261577636,63.34838135415546,65.06975266912087,76.95212395322628,79.28025557852304,63.20318557454031,64.92881571539462,0.3985824893366185,397.8970372533155,0.1451957796151504,140.93695372625348,23.57146,16.143671990448656,24611.02990310725,16855.65485137055,118.44633,54.65937719042783,122924.17724690946,56324.03440363749,201.2585,92.33969185693482,205880.7843301036,93173.00301233004,5628.51817,2493.349603161572,5821983.544938189,2548544.9310490866,1894.20421,809.4664787370943,1956768.7520882057,824190.9337799618,3168.84802,1313.9682988717948,3258699.5698296023,1327556.023873589,0.43647,100000,0,107143,1118.683177413966,0,0.0,0,0.0,8896,92.10031740728368,0,0.0,19505,199.3818910791848,2460272,0,88482,0,0,5794,0,0,26,0.271466755763448,0,0.0,0,0.0,0,0.0,0.09824,0.2250784704561596,0.3253257328990228,0.03196,0.3059758666922045,0.6940241333077954,26.058238000003943,4.688894941437128,0.3345070422535211,0.1791862284820031,0.2503912363067292,0.2359154929577464,10.789000420294816,5.151405863205295,34.301937842629,16045.75256355523,86.48607246592645,15.603624729049876,29.2103150070817,20.352853991074507,21.31927873872036,0.5327334376630152,0.7430858806404658,0.7052631578947368,0.5815367606412383,0.1057291666666666,0.6852064220183486,0.9342857142857144,0.8520249221183801,0.7010309278350515,0.1346153846153846,0.487846049966239,0.677734375,0.656266250650026,0.5489092188599578,0.0989717223650385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026538632956525,0.0053325223033252,0.008046921773367,0.0106147407768568,0.0133703432568732,0.0160648294257179,0.0186396804043862,0.0213386943698911,0.0241576995002912,0.0267089643880474,0.0295615464223868,0.0319118371367591,0.0344079833098671,0.037029030265596,0.0394332501495246,0.0419335509731807,0.0444738775467969,0.0469417375077752,0.0496105514591338,0.0520036230752412,0.0695718415093552,0.0855867160214986,0.1019447502227813,0.1172699373607432,0.1309892704315015,0.1489883507050889,0.1653109920992629,0.1822371221796509,0.1978796322987732,0.2128555810413942,0.2296372052965873,0.2455808422076869,0.2609102074977446,0.2748068242674623,0.2879786169194724,0.3014058003099402,0.3147024712284771,0.3271198255121085,0.3386343012704174,0.3495733837255912,0.3604462943692912,0.3704136753735706,0.3804651603429492,0.3895957500389739,0.3984244885058169,0.4063814823497477,0.4132954132578272,0.4213767515395698,0.4282727815721817,0.4362736666622563,0.4397714841375957,0.4423180555747468,0.4451004544875334,0.447733189824444,0.4498481607252382,0.450982207613845,0.4523387470256631,0.4537686858128847,0.4552347069185866,0.4563933004498889,0.4574605588291199,0.4584645629802002,0.4594220195217595,0.460445275788129,0.4617325689646724,0.4628013410675323,0.4635944969103416,0.4642569245155257,0.4651506414876747,0.4671627831320402,0.4675969282637198,0.466937833232562,0.4673068129858253,0.4664866581956798,0.4680601680015628,0.4677040879338026,0.4726280301814095,0.4687098156879554,0.4685764396375328,0.4827024827024827,0.0,2.9337197667716377,77.03983467472364,298.4899485690556,458.0743424995288,OR_public_baseline,15 +100000,95722,43788,404.567393075782,9909,102.17086981049287,7694,79.65775892689247,3216,33.12718079438374,77.31652017658898,79.67729025088612,63.31665033110207,65.0623324450496,76.92570701063644,79.28530285900915,63.17464864477503,64.9239808736945,0.3908131659525367,391.98739187696674,0.1420016863270348,138.351571355102,23.23508,15.920364343466296,24273.500344748336,16631.875998690266,117.5258,54.24952078651845,122041.20264933872,55936.9850050338,205.16717,94.2824533784651,209872.85054637387,95166.5334020663,5632.9513,2494.4294265019457,5837283.111510416,2558494.668416817,1931.05086,821.4747016444553,2000042.49806732,840889.5604312054,3184.31738,1310.7260747274668,3282955.621487223,1331176.2552997214,0.43359,100000,0,105614,1103.340924761288,0,0.0,0,0.0,8828,91.46277762687784,0,0.0,19847,202.92095860930613,2458209,0,88480,0,0,6027,0,0,26,0.2716198992916989,0,0.0,0,0.0,0,0.0,0.09909,0.228533868401024,0.3245534362700575,0.03216,0.3092193166634854,0.6907806833365147,26.080796061954995,4.691413653368861,0.3257083441642838,0.1806602547439563,0.2439563296074863,0.2496750714842734,10.978325403435994,5.341879590740046,34.40021422289943,16004.834025809503,87.07468193116863,16.12575495164722,28.689753396465232,21.60137117273521,20.65780241032097,0.5374317650116974,0.7647482014388489,0.7059058260175579,0.5705361790733993,0.1102823654768247,0.70372460496614,0.9266304347826086,0.875,0.7208237986270023,0.1481481481481481,0.4876730834177643,0.7064579256360078,0.6507936507936508,0.5262803234501348,0.101572739187418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030287375533067,0.0060522500785677,0.0086374016747018,0.0113496652001178,0.014190673828125,0.0166928075285682,0.0193160841585673,0.0220887840446064,0.0247134487377429,0.0271922190939339,0.0299099727252219,0.0324475294697498,0.0348295542187259,0.0371426806161957,0.0398068968362852,0.0420959092365079,0.0446687370600414,0.0470030498558061,0.0493476791933052,0.0516680906040967,0.0694573513902956,0.0858267139702573,0.1012565291267227,0.1163529288042906,0.1306521005567741,0.1486487915807287,0.165524411721021,0.1813023622214888,0.1967882213413396,0.2115659031167855,0.2291814793269127,0.2443366921736495,0.2599058091602223,0.2739769471358894,0.2868374976599751,0.3009447142572017,0.3145164894092412,0.3262891240711551,0.3382591805904201,0.3495465125612007,0.3599337403129959,0.370261058993008,0.3799260207710911,0.3887854285062056,0.3973448632848182,0.4061078140454995,0.4139203796467176,0.4210002170499087,0.4272983540965718,0.4333925164299342,0.4363319178860249,0.4383186110265001,0.4408889015027885,0.4440205044562241,0.4458641660924533,0.447391593159594,0.4488006643457153,0.450882782424001,0.4518788674940367,0.4530848561606658,0.4552311111955469,0.4566602548689589,0.4584707008401574,0.4589743007112181,0.460094355765235,0.4611838270361931,0.4627424788012545,0.4639564660691421,0.4651720803638577,0.4658823529411764,0.4676020883833675,0.4673034934497816,0.469103849886768,0.4699048807110557,0.4716469905167408,0.4719862085950006,0.4777141037886023,0.4764507989907485,0.4779243119266055,0.4858170195765082,0.0,2.76613688906979,78.67020692781921,305.70598407618314,449.8444356967491,OR_public_baseline,16 +100000,95653,43620,403.5524238654302,9932,102.39093389647998,7645,79.07749887614607,3159,32.51335556647465,77.40264542862671,79.78392525392243,63.35728834693722,65.11232699016414,77.01873975138173,79.39932252146762,63.21657457610031,64.97525998091213,0.3839056772449822,384.6027324548089,0.1407137708369106,137.0670092520072,23.39942,16.027663303856716,24462.128736160917,16755.379241484028,116.93799,53.882194964065626,121389.05209455008,55468.21736491864,201.33305,92.5487619019752,204686.3140727421,92393.5279933118,5610.98503,2491.908805499977,5806223.599887092,2545503.6742631984,1887.40027,810.4223053530231,1951339.0066176704,825510.7366794508,3140.0898,1306.0020752671796,3233626.106865441,1321802.5053806535,0.43242,100000,0,106361,1111.9149425527687,0,0.0,0,0.0,8797,91.08966786195936,0,0.0,19516,198.3210145003293,2462753,0,88487,0,0,5873,0,0,27,0.2718158343177945,0,0.0,0,0.0,0,0.0,0.09932,0.2296841034179732,0.3180628272251309,0.03159,0.3113413822606711,0.6886586177393288,26.21775396662189,4.696375192973958,0.3419228253760628,0.1737083060824068,0.2515369522563767,0.2328319162851537,10.719420566803135,5.062906137519704,33.7944212099954,15928.977186279892,85.90695493674569,15.263008190558834,29.35570991276458,19.91322092282504,21.375015910597224,0.5311968606932636,0.7567771084337349,0.690512624330528,0.5882022471910112,0.1060842433697348,0.6737193763919822,0.927807486631016,0.8656957928802589,0.7196969696969697,0.1053921568627451,0.4874337493588647,0.689727463312369,0.6362725450901804,0.5505780346820809,0.1062706270627062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027341495275997,0.0054020087769973,0.008277541083384,0.0108974944903161,0.013453188395481,0.016119178054294,0.0186467115927696,0.0213919025117114,0.0240968780338255,0.0266179540709812,0.029141638819984,0.0317017082785808,0.0340732667770226,0.0367048064346697,0.0390738658054664,0.0416744186046511,0.044267031157777,0.0467606861554746,0.0491757241666233,0.0513336321280787,0.0691719425813326,0.0859730875962092,0.1018418428923755,0.116957034044523,0.1305618261988649,0.1486149027574969,0.1656371394001146,0.1810738583733483,0.1958852134879495,0.2097670327784451,0.2266372253339078,0.2423363352961551,0.2573259077164052,0.2713859144454045,0.2850367011852227,0.2987228763527209,0.3117422003100913,0.3239764372597072,0.3350716488300381,0.345990547144116,0.3569075334943993,0.366880499176219,0.3770115757984226,0.3861065848749161,0.3944101642211641,0.4032277950387138,0.4111442387192143,0.4187556494837486,0.4258481714744835,0.4324774132192106,0.4353307623850489,0.4382680332837383,0.441563571216973,0.44407437442076,0.4457113048662344,0.4475732037401574,0.4495820396465249,0.4514225256649749,0.4523608986369183,0.4550961711306849,0.457320989986775,0.4589547786660303,0.4608699320761085,0.4615801109958038,0.4615908538068596,0.4622272703259549,0.4623936077818308,0.4639977050329901,0.4651378768395485,0.4646264553686934,0.4641993676771433,0.4653190214133929,0.4684783308648335,0.4694068192433442,0.4691084337349397,0.4687913409500902,0.4730829420970266,0.4779016935150764,0.4715973003374578,0.4695550351288056,0.0,3.2297182898115286,79.25874119600088,286.5744864802954,455.2694260766789,OR_public_baseline,17 +100000,95715,43582,402.350728725905,9774,100.6111894687353,7596,78.66060701039544,3215,33.09826046074283,77.33907921770925,79.70748120533219,63.32552877917672,65.07607090769606,76.95084400127082,79.31682600351233,63.1853053177461,64.93852428926903,0.3882352164384315,390.6552018198539,0.1402234614306152,137.54661842703797,23.518,16.097107566405267,24570.861411482005,16817.748071258702,117.11908,54.33466417935378,121610.7402183566,56019.56289918035,201.67332,92.655936169381,206738.0974768845,93697.51687986765,5546.80229,2458.501503139528,5746670.260669696,2520373.5882616607,1912.98024,824.6699515969276,1979920.294624667,843071.2037366165,3177.30188,1302.301214054676,3273671.671106932,1321666.6497870155,0.43197,100000,0,106900,1116.8573368855457,0,0.0,0,0.0,8788,91.05155931672152,0,0.0,19519,200.0,2459226,0,88395,0,0,5794,0,0,29,0.2925351303348482,0,0.0,0,0.0,0,0.0,0.09774,0.2262657128967289,0.3289339062819725,0.03215,0.3144265146390955,0.6855734853609045,26.21942726341431,4.679565560777732,0.3393891521853607,0.1810163243812532,0.244865718799368,0.2347288046340179,11.118704683227444,5.510642770491302,34.2324890621074,15927.71094671642,85.53721274974305,15.792338275998704,29.055751912015246,20.066093719919007,20.62302884181009,0.5400210637177462,0.7461818181818182,0.6958882854926299,0.5905776780706674,0.1231182795698924,0.7033656588705077,0.9093406593406592,0.8786885245901639,0.7336561743341404,0.1721311475409836,0.4910148896115009,0.6874381800197824,0.6392276422764228,0.5474452554744526,0.1111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027244368821908,0.0057387354503792,0.0082518802716117,0.0107909283043407,0.0134380435998901,0.0160914155353451,0.0188446438586651,0.0213580536809972,0.0239779954600298,0.0265777668530695,0.0294135745492585,0.0321275240853721,0.0349884811584663,0.0375434005419272,0.0401341935483871,0.0424922440537745,0.0448786349933179,0.0474282867698949,0.0495523133078898,0.0519675359178187,0.0695304424094976,0.0864183321125876,0.101961853432457,0.116875059152619,0.1309992090693382,0.1487687230261487,0.1652396261047628,0.1804853118112416,0.1963814348155985,0.2110594825458486,0.2276965196115416,0.2430002707825616,0.2584096028904439,0.2720655838185719,0.285295737416015,0.2990507031007408,0.3120370887560744,0.3242305829889303,0.3361007632200617,0.3473329281020265,0.3576608512314357,0.3670128684004075,0.3759337966306368,0.3847684818837973,0.3935350589379025,0.4020659221457979,0.4103141820002503,0.41766270795942,0.4250884170434377,0.4316589557171183,0.434768533505989,0.4374093965291105,0.4400435995073822,0.4425350023989183,0.4452850500127087,0.4471732728982625,0.4489187292676703,0.4502783484657697,0.4516920313012835,0.4531588839092092,0.4549677664012135,0.4552658435555199,0.4561198965531861,0.4565320988494792,0.4578833166735743,0.4588313061872025,0.4592923693147186,0.4619826756496631,0.4648043891418941,0.4647240510444607,0.4657309941520468,0.4678673089555507,0.4704848682069639,0.4751102709514808,0.4744991773928191,0.4770608439646712,0.4759846301633045,0.4783715012722646,0.4765353418308227,0.4844249201277955,0.0,2.618787711670338,77.91377646998878,290.4684890524473,453.4204150565425,OR_public_baseline,18 +100000,95677,43683,404.9667109127585,9958,102.7206120593246,7654,79.31895857938689,3136,32.411133292222786,77.30793472821749,79.68326363276225,63.31631099018998,65.06996138291652,76.93588750914387,79.30580560823951,63.18322031289225,64.93723055606203,0.3720472190736217,377.4580245227384,0.13309067729773,132.730826854484,23.95162,16.38020668814286,25033.832582543346,17120.318036877055,116.49206,53.21083035833375,121080.54182300868,54941.01258092693,202.92087,93.00306060908107,207002.466632524,93420.33344011028,5614.34923,2476.824659625649,5824650.689298369,2545442.613717569,1878.004,803.9570238563631,1946718.856151426,824190.652304215,3109.93096,1268.6526924135785,3216716.9121105387,1298682.8471704752,0.43343,100000,0,108871,1137.9014810246977,0,0.0,0,0.0,8742,90.66964892293863,0,0.0,19645,200.2466632524013,2456498,0,88428,0,0,5894,0,0,37,0.3867178109681532,0,0.0,0,0.0,0,0.0,0.09958,0.2297487483561359,0.3149226752359911,0.03136,0.3051825231700397,0.6948174768299603,26.037882078222985,4.719658883057347,0.3389077606480272,0.1774235693754899,0.248105565717272,0.2355631042592108,10.869970018933255,5.182394879765256,33.49754953703236,15941.636210215744,86.44152921795173,15.761581970826416,29.436906284725275,20.1507534271643,21.092287535235723,0.5339691664489156,0.7643593519882179,0.6842713955281419,0.5923460898502496,0.1084781463928383,0.6992393212404915,0.9371428571428572,0.8506493506493507,0.7532808398950132,0.154696132596685,0.4864592094196804,0.7043650793650794,0.6324570273003033,0.5492264416315049,0.0975927130774235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025616102707409,0.005289611284504,0.0078820032664157,0.0104615259608352,0.0130685054104629,0.0155492647957313,0.0179257884593814,0.0203777437468095,0.0229712322885358,0.0254987665189219,0.028222003526469,0.0308114046345445,0.033238718170225,0.0358607190687133,0.0383250092871589,0.0408034569739072,0.0433611355747811,0.0459500425655613,0.0486315548574341,0.0505592794520833,0.0675614978847861,0.0841637010676156,0.1002150763258668,0.1147653053712098,0.1293818726212691,0.1478786853347997,0.1650436000254598,0.1807112218071122,0.1961647347898082,0.210269997747337,0.2275135693977772,0.2432414889819232,0.2589403181437627,0.2728127631190473,0.2868050742097677,0.3002913836847295,0.3129004174386677,0.325523295070898,0.3375973303670745,0.3486959710317642,0.3588852595732851,0.3687882654554394,0.3779188929828095,0.3869534411739981,0.3957402243140884,0.4045100704312369,0.4123150729661166,0.4199039051318748,0.4277478462299263,0.4345283093940238,0.4378932838951513,0.4404496559744161,0.4432880053315939,0.4458648806057076,0.4482851620443205,0.4491050331269015,0.4505786075059139,0.4522572182835511,0.4531177030182479,0.4548544566986078,0.4559854139365278,0.4572923767895095,0.4584732435074595,0.4603905381806636,0.4618242252419591,0.4626627690672336,0.4627654937966702,0.4616422513492675,0.4625193616944634,0.4631373822669698,0.4636983741356755,0.4641573156117224,0.4649957904280811,0.4655686274509804,0.4681963404008132,0.4654856444715944,0.4687842278203724,0.4670671085335542,0.467764443204019,0.4575087310826543,0.0,2.599843854864808,76.07131738689492,306.02833046921654,452.7316901216302,OR_public_baseline,19 +100000,95698,43823,405.4839181592092,9975,102.85481410269809,7721,80.01212146544339,3239,33.34447950845368,77.38171245272493,79.7545772961542,63.34258245905804,65.09464162373756,76.99080492321185,79.36412712536556,63.20072178185231,64.95715555055149,0.3909075295130719,390.4501707886397,0.1418606772057344,137.48607318606787,22.76252,15.602104748416505,23785.78444690589,16303.48047860614,116.75688,53.57652175695543,121288.0206482894,55267.45779112983,202.63031,93.20595950062376,208030.47085623525,94532.35336560493,5644.87926,2494.5748931427283,5850576.626470773,2558653.7369043548,1924.47514,828.0481406195462,1993193.1910802731,847489.9493250872,3206.70714,1317.3438510250437,3303957.574870948,1334371.2045294272,0.43422,100000,0,103466,1081.1720203139043,0,0.0,0,0.0,8819,91.46481640159668,0,0.0,19605,201.1849777424816,2464042,0,88541,0,0,5553,0,0,28,0.2821375577337039,0,0.0,0,0.0,0,0.0,0.09975,0.2297222606052231,0.3247117794486215,0.03239,0.3039901664145234,0.6960098335854765,26.07643987975768,4.669093376600271,0.3309156844968268,0.1823597979536329,0.2450459785001942,0.2416785390493459,11.182210269009142,5.571249170940944,34.577248004979886,15997.93265039927,86.85860648745467,16.176692715207256,28.792065311159718,20.92736802467867,20.962480436409034,0.5361999740966196,0.7649147727272727,0.6947162426614482,0.5787781350482315,0.1099365750528541,0.6951566951566952,0.9205479452054794,0.8842975206611571,0.7373493975903614,0.1162162162162162,0.4894401609118337,0.710450623202301,0.6358974358974359,0.5334252239834597,0.1084099868593955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027953330092367,0.0054942270068627,0.0081584608515647,0.0107774820713893,0.0133551681347519,0.0158757637474541,0.0187917410145296,0.0216321613785781,0.0244727722519243,0.0271780855572275,0.0297820426072871,0.0322792607802874,0.0346668037844508,0.037341876467922,0.039690812082684,0.0420505185231138,0.0442672190574831,0.0466045411149391,0.0490093088564147,0.0513387041302331,0.0687234975873665,0.0854674903151502,0.1004228884434977,0.1151770214109106,0.129567896024981,0.1470348708077293,0.1642331119081474,0.1806294987009668,0.1957048987659597,0.2103224837470766,0.2272619509461614,0.2435396390642084,0.2588753534914074,0.2736019242333133,0.2870988679743451,0.3005049386543827,0.3142898579827526,0.3263313043576097,0.3382356278795306,0.3492558176839259,0.3598365116305996,0.3695357109426191,0.3796943490107807,0.3893001547746169,0.397686215831539,0.4061701418465983,0.4132459295839966,0.4207525510204081,0.4277016149971439,0.4345334974130972,0.4373016408940509,0.4405757500483012,0.4436323022111633,0.4463164610187186,0.4486470368989936,0.4504882737408689,0.4515502332913992,0.4527999735851548,0.4542190613619185,0.4547580079494973,0.4567877882232772,0.4582051384504735,0.4592324617077092,0.4606632283749547,0.4617032672737011,0.4639243174870875,0.4646012588785586,0.4649726149535091,0.4650492689694425,0.4636839983877469,0.4649427684322721,0.4680989583333333,0.4714146973130463,0.469328522121117,0.4716342901324055,0.4748473748473748,0.4805153991200502,0.4723324284819378,0.467425320056899,0.4611708482676224,0.0,2.536493970137321,78.0966106884764,303.23516299366315,453.89715293964287,OR_public_baseline,20 +100000,95840,43882,405.42570951585975,9813,100.91819699499165,7698,79.55968280467445,3183,32.70033388981636,77.44506122741345,79.72363308673404,63.40474875222951,65.0843219170793,77.05692348970943,79.33529736943676,63.2615755941128,64.94523231405086,0.3881377377040138,388.3357172972808,0.1431731581167099,139.0896030284381,23.25906,15.967061124409854,24268.635225375627,16660.122208274053,116.42833,53.88445849229412,120754.851836394,55496.22129830354,202.17245,93.4708058106497,206305.87437395655,93936.45074182782,5606.27603,2499.109783646026,5796647.923622704,2554840.7088566283,1888.64026,820.7306773621397,1950191.444073456,836026.7912556055,3157.48822,1312.4030926787464,3246870.659432387,1326479.7894400216,0.43509,100000,0,105723,1103.119782971619,0,0.0,0,0.0,8832,91.39190317195325,0,0.0,19677,200.71994991652755,2462653,0,88636,0,0,5982,0,0,17,0.1773789649415692,0,0.0,0,0.0,0,0.0,0.09813,0.2255395435427153,0.3243656374197493,0.03183,0.3103946102021174,0.6896053897978826,26.086563756417977,4.693849977089309,0.3421667965705378,0.1791374382956612,0.2470771628994544,0.2316186022343465,11.134994682823326,5.418138437327767,33.92182958699175,16035.380542725075,86.67346012795824,15.9194677365225,29.85883423964861,19.93879338476632,20.956364767020805,0.541179527149909,0.7425670775924583,0.7118451025056948,0.5916993830622547,0.1114616193480546,0.6848648648648649,0.8888888888888888,0.8492307692307692,0.7368421052631579,0.1594936708860759,0.4957250341997264,0.6854838709677419,0.6668346774193549,0.5472527472527473,0.0988719309887193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002672118868803,0.0053079954213474,0.0080609999695811,0.010677601396614,0.0134025646757575,0.0160747169120265,0.0185468100708873,0.0211182150978412,0.0239254970437766,0.0267280163599182,0.0293566520924422,0.0320390540069329,0.0343552611307964,0.0367318809274002,0.0391609400274054,0.0419586915907143,0.0444805261960411,0.0470042071666908,0.0492312164533175,0.0514770918096585,0.0687738544643043,0.0857904085257548,0.1012031287630496,0.1168506779732169,0.1310885463250381,0.1491333628897755,0.1662801164945724,0.182498273205462,0.1972781860261729,0.2117793144790083,0.2284934098776581,0.2454065264590557,0.2608355686840933,0.2747102707780363,0.2881447207904252,0.3018011535353311,0.3147105078242636,0.3272040217281284,0.3381411711302769,0.3497233328368981,0.3601533010675497,0.370799807924294,0.3801763576457202,0.3895066393177156,0.3977181501933977,0.4056606102498272,0.4122151779549306,0.4199167900352238,0.4273723054534115,0.4344476070695704,0.437652018809794,0.4404898319826598,0.4431792495479204,0.4466082675740244,0.4491801813876603,0.4505701963071539,0.4522743865663587,0.4537250510506554,0.4553395225919379,0.4564172465743597,0.4579620960434914,0.4595495082098039,0.4607733169668366,0.4621575187629985,0.4640685058142363,0.4652162447257384,0.4670027365692064,0.4700210043918273,0.4713703244105655,0.4716410690530898,0.4729428172942817,0.4744509676016525,0.4734231041814316,0.4730196078431372,0.4711193088049704,0.4747945541518459,0.4708035003977724,0.4705125455715205,0.4648335745296671,0.4672064777327935,0.0,3.014186763011505,81.78478423242878,290.8730091816214,449.92810990354576,OR_public_baseline,21 +100000,95668,43633,404.55533720784376,9844,101.31914537776476,7623,78.92921353012501,3228,33.21904921185767,77.29747507811412,79.70292040626795,63.28577397120039,65.0668395223977,76.9028303886694,79.30808619786596,63.14127332965609,64.92634920215048,0.3946446894447177,394.83420840198846,0.1445006415443046,140.49032024722408,23.70676,16.248929898060815,24780.2399966551,16984.707423653483,116.21159,53.72286032778624,120723.35577204498,55405.03650937226,201.80149,92.79853551166404,207007.7350838316,93815.05264514084,5570.92538,2480.2048112447687,5770446.962411674,2539773.624665268,1915.64588,828.0687077266003,1982218.9655893296,845394.5600687796,3192.83312,1318.9139474742658,3287942.844002174,1334554.5166964724,0.43232,100000,0,107758,1126.3745453025044,0,0.0,0,0.0,8783,91.0126688129782,0,0.0,19587,200.7985951415311,2453892,0,88265,0,0,5940,0,0,16,0.1672450558180373,0,0.0,2,0.0209056319772546,0,0.0,0.09844,0.227701702442635,0.3279154815115807,0.03228,0.3137254901960784,0.6862745098039216,25.822490166279383,4.677541718649605,0.3387117932572478,0.1832611832611832,0.248852157943067,0.2291748655385019,11.0997380644654,5.46184110224958,34.3863443216226,15890.059173771926,85.94133667188255,16.157439224382028,29.2798626555332,19.4682541485036,21.035780643463703,0.5394201757838122,0.7630637079455977,0.7029434546862897,0.5855752718946766,0.1096468107538218,0.6796830786644029,0.9226666666666666,0.8562197092084006,0.7228260869565217,0.145679012345679,0.4970969945355191,0.7045009784735812,0.6546102903718798,0.5489485134155185,0.0998659517426273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026450200656694,0.0054875945874667,0.0084268236966343,0.011228533685601,0.0135294596354166,0.01639878587871,0.0189404757047856,0.0215171258756969,0.0240854188612863,0.0265847414234511,0.0291305953308989,0.0313642901171152,0.0336008230452674,0.0357058211308389,0.0383777477207727,0.0410343935867597,0.0429739730713019,0.0450566453100175,0.0476948528264194,0.0502579602897493,0.0678206909520178,0.0840879824956291,0.099311546292215,0.1141621689865227,0.1280330843566696,0.1461251957506243,0.1632377919320594,0.1792888945697791,0.1944771234839896,0.2094474153297682,0.226921666343063,0.2430902683654106,0.258545727953275,0.2729086285513855,0.2864327150009925,0.2998479112778783,0.3120610208920503,0.3243898314638408,0.336494399909034,0.3482091641236262,0.3592708127978848,0.3693566922301179,0.3786076084506708,0.3871328435910692,0.3956578450135921,0.4032607216635123,0.4108569992460417,0.4180509200649608,0.425596207197468,0.431910798433663,0.4350295505069674,0.4368664105728827,0.4393362504972438,0.4425063752276867,0.4446091422240189,0.4460191746561067,0.4476043128748245,0.4487037374054894,0.4502658338925308,0.4520616979536005,0.453195829555757,0.4539456636568398,0.455424797866486,0.456351268897878,0.4569850615541823,0.4589363050596809,0.4592624728850325,0.4609017991244048,0.462035483525506,0.4619365271881949,0.4643954202736666,0.4654320317167219,0.4653848635395832,0.4679891092959938,0.4691833590138675,0.4683559650824442,0.4655799968349422,0.458786610878661,0.454855195911414,0.4463929852530889,0.0,2.933366097819228,78.07988094931359,292.6817892140601,453.8319817059029,OR_public_baseline,22 +100000,95822,43665,402.80937571747614,9783,100.73886998810292,7573,78.36405000939241,3078,31.68374694746509,77.32864418348662,79.63807385996323,63.32870225298407,65.03786915888638,76.9555498368753,79.26404185134594,63.19288892093146,64.90498082734287,0.3730943466113103,374.03200861729147,0.1358133320526064,132.8883315435121,22.9878,15.758450120982998,23990.106656091502,16445.5449906942,115.47539,53.237555993936255,119817.28621819624,54866.46628029828,200.71827,92.47584143763568,205420.08098349025,93454.41454219384,5472.39199,2432.446389924387,5662858.09104381,2490451.686798406,1859.6135,798.8290760902973,1921648.4001586277,814707.1541203863,3045.3213,1258.9067918777714,3136342.217862286,1276719.823311132,0.433,100000,0,104490,1090.4593934587049,0,0.0,0,0.0,8658,89.6349481329966,0,0.0,19423,198.764375613116,2459276,0,88560,0,0,5556,0,0,30,0.3026444866523345,0,0.0,0,0.0,0,0.0,0.09783,0.2259353348729792,0.3146274149034038,0.03078,0.3070751981442103,0.6929248018557896,26.12884364341876,4.688152565268116,0.3404199128482768,0.1869800607421101,0.2436286808398257,0.2289713455697874,11.16165939771813,5.481949639871479,32.903135741935415,15905.325643019813,85.46669191400116,16.22993891377285,29.253380402421683,19.526485627605325,20.456886970201325,0.5433777895153836,0.7549435028248588,0.7114041892940264,0.566320645905421,0.1246612466124661,0.6922216004476777,0.9115281501340484,0.8607198748043818,0.7261306532663316,0.1538461538461538,0.4974075354303491,0.6989453499520614,0.6621970087674058,0.5187125748502994,0.1171662125340599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029877956145237,0.005412966792361,0.0082990919697661,0.0110210466439135,0.0133414683750254,0.0161779678273264,0.018774844562226,0.0214824415483686,0.0241280287778606,0.0265438731133282,0.02940664159759,0.0319571441765955,0.0344274762090724,0.0369569693226271,0.0393297241557102,0.0420338212658698,0.0443628085062348,0.0468952503395576,0.0494105427161776,0.0519375084567586,0.0687673404676971,0.0852614300500799,0.100862620143176,0.1155107187894073,0.1287986592037441,0.1468514466326282,0.1633882273098416,0.1793611270722935,0.1948674683355048,0.2100540331918178,0.2272379742200876,0.2424931017691933,0.2579827728716231,0.2719450730864683,0.2844770666431904,0.2990947268113774,0.3118060985144644,0.3239611143027722,0.3356022727272727,0.3469701665576179,0.3568618348517379,0.3669331642775801,0.3763031823207047,0.3852354483986621,0.3946364356677028,0.4030983791001595,0.4105673179619275,0.4180277586074687,0.42547679489683,0.432653386242684,0.4355343144555313,0.4383136668328624,0.4417409573561978,0.4438727169365771,0.4457513597746445,0.4481037307204896,0.4494453856727296,0.4514611357762905,0.4527648578811369,0.4541740163432809,0.4553108563211867,0.4572518931447182,0.4574968233799237,0.4579752103501311,0.4584490233328462,0.4590533234389908,0.4589399947897067,0.4594689586861361,0.4604762074242802,0.4604235445688058,0.4613494087642013,0.4633062330623306,0.463855809462504,0.4637420966357037,0.4590764484719946,0.4592411260709914,0.4601534366682323,0.4587155963302752,0.4568111016709147,0.453781512605042,0.0,2.4714631392828865,79.69789157658093,286.5345757221725,450.69978271541873,OR_public_baseline,23 +100000,95733,43672,403.2883122852099,9742,100.15355206668546,7575,78.38467404134416,3109,32.016128189861384,77.35098256499538,79.69732186627448,63.33757887846742,65.07029269867496,76.97949865260307,79.3236100031135,63.20179567683292,64.9365150656784,0.371483912392307,373.7118631609775,0.1357832016345028,133.77763299655498,23.18404,15.886742445171594,24217.39630012639,16594.84445820312,115.39778,53.19102665506258,119814.0139763718,54834.58854842383,201.10822,92.27233283821484,205343.57013777905,92717.21432331778,5539.09492,2460.8445182059468,5736601.36003259,2521338.856924374,1850.69644,802.1004285824258,1912916.423803704,817655.9317070929,3078.80258,1272.272018688184,3174056.2397501385,1294658.1705657758,0.43319,100000,0,105382,1100.790740914836,0,0.0,0,0.0,8678,89.88541046452112,0,0.0,19507,199.03272643706973,2460854,0,88494,0,0,5852,0,0,26,0.2611429705535186,0,0.0,0,0.0,0,0.0,0.09742,0.2248897712320229,0.3191336481215356,0.03109,0.3118936748156771,0.6881063251843229,26.024037163063195,4.698499372271945,0.3415181518151815,0.1825742574257425,0.2442244224422442,0.2316831683168317,10.855274472861865,5.238070409243302,33.00041104701107,15923.891276611585,85.2507372982182,15.937088264507077,29.29017993551741,19.652499087972203,20.37097001022151,0.528052805280528,0.7259580621836587,0.6923076923076923,0.5675213675213675,0.1129729729729729,0.6748571428571428,0.9207650273224044,0.8438003220611916,0.7005208333333334,0.1345646437994723,0.4839484978540772,0.655850540806293,0.6444557477110885,0.5302698760029175,0.1074099252209381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003048008668091,0.0057570874002898,0.0081479001146591,0.010705289672544,0.0134823235147583,0.0162779570603984,0.0189906321036482,0.021779288243879,0.0246016414722145,0.027356742981711,0.0298501342846013,0.0323650174502155,0.0346681745746157,0.0372666330281842,0.039768507056202,0.0421080919060268,0.0445659377070907,0.046975687202316,0.0492800332692207,0.0519741639754141,0.0699730672067144,0.0853009174503875,0.1000073396034517,0.1155876106566856,0.1296491523994265,0.1461222936400541,0.1630215735771409,0.1786117201302709,0.194098101434875,0.2086645852779297,0.226130707405891,0.2426952181961871,0.2583017800409105,0.2723909188431814,0.2862728253926297,0.3002240312312845,0.313003632299525,0.3254258660872111,0.3369644236448725,0.3478066300244409,0.357937298700095,0.3679795684060076,0.3775048557487327,0.3863140218303946,0.3954822865757288,0.4034860484050033,0.4121303258145363,0.4188557080768299,0.4257297185000519,0.4323253996635806,0.4349784275802372,0.437737728046031,0.4403507280865771,0.4431917369799243,0.4448980812657963,0.4464321515044029,0.4480722583939742,0.4493704440026507,0.4509094043616929,0.4517546228776175,0.4534165012758718,0.4539325394450761,0.4552230904432162,0.4572526851328434,0.4593457375653654,0.4613554662719391,0.4606676677832967,0.4602114813276682,0.4629431866723622,0.4619793348401679,0.4632014505555814,0.4654235076655431,0.4670793835042239,0.4690637403689003,0.4717869845236951,0.476428920371275,0.4800191052380194,0.4794807370184255,0.4839351720216093,0.4920697858842188,0.0,2.884152594543352,77.37653472809488,289.31677138177383,452.0749062204301,OR_public_baseline,24 +100000,95828,43902,405.16341779020746,9863,101.57782693993404,7646,79.05831281045205,3206,32.99661894227157,77.51248185563044,79.79821427480807,63.42745123530996,65.11086044538764,77.12090126148352,79.40375990221236,63.28631654125064,64.97164499009213,0.3915805941469159,394.4543725957175,0.1411346940593247,139.21545529551338,22.94578,15.744399037319008,23944.75518637559,16429.85248290584,117.01195,53.90239683910789,121405.43473723756,55548.32286921139,203.45972,93.87234152483184,207101.60913303003,93939.36045526898,5589.35866,2478.219743314557,5784860.614851609,2538401.0385659896,1910.251,811.620710410196,1978610.0200358976,832213.5341028885,3177.0374,1305.1137797340334,3272768.3349334225,1327083.2402930425,0.43495,100000,0,104299,1088.3979630170722,0,0.0,0,0.0,8780,90.87114413323872,0,0.0,19696,200.46333013315524,2468546,0,88676,0,0,5834,0,0,32,0.3130609007805651,0,0.0,0,0.0,0,0.0,0.09863,0.2267616967467525,0.3250532292405961,0.03206,0.3022136669874879,0.697786333012512,26.055325774129376,4.709951227341937,0.3363850379283285,0.1827099136803557,0.2490190949516086,0.231885953439707,11.064094071512349,5.387624612292584,33.961433638427245,15976.215813259862,85.74125156272424,15.971760017190013,28.982251164693704,19.86648494689794,20.920755433942595,0.530604237509809,0.7444523979957051,0.6761275272161742,0.5967287084038353,0.1155462184873949,0.6924791086350975,0.907928388746803,0.8653530377668309,0.7410926365795725,0.1310160427807486,0.4809434284737651,0.6809145129224652,0.6174223127865512,0.5517751479289941,0.1117647058823529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025094610729969,0.0053371952886845,0.0080986022562563,0.0109993810311412,0.0135719945549482,0.0164446252415336,0.0194661073893832,0.0222405775819872,0.024935415028642,0.0275795071070661,0.0302701374239662,0.0328280756450752,0.0353774069583444,0.0374723408634796,0.0398762886597938,0.0423587010411502,0.044919752894794,0.0471836023762868,0.0495304579074212,0.0518978907697753,0.0695639477279601,0.0855735750807741,0.1021575798220704,0.1174246402688793,0.1314190647671394,0.1493588795707556,0.1665271257034454,0.1818172151629539,0.1971144098092992,0.2116896189843867,0.2286242754675183,0.2442828902595789,0.2594277648080786,0.2736655853730463,0.2868617389488951,0.3006947363763081,0.3133736094700938,0.3254018208384849,0.3369150033436476,0.3476003111131445,0.3586809684905725,0.368254708729372,0.3777158511241262,0.3867781245889092,0.3957199151257957,0.4041817421053927,0.4120064967516242,0.418866247698851,0.4261351882498965,0.4326150522905087,0.4352512177399822,0.4378403652566148,0.440051235853837,0.4428569362699021,0.4450643457561556,0.4472160356347439,0.4485431022135934,0.4508997853722965,0.4526780803080308,0.4531781300037781,0.4548754206208174,0.457636588578042,0.4590365272631022,0.4601783899740318,0.4603082291363768,0.4605484345450725,0.4613038724897865,0.4612283764481828,0.4623507317246022,0.4631982737952529,0.4625703951284282,0.4653936670945657,0.4672986385036264,0.4667232204827639,0.4717699704846234,0.4729778310365488,0.4757116336633663,0.4784649928556848,0.4758985789913625,0.4764114462490332,0.0,2.862667041699532,79.42905936295989,287.84511827756535,452.1056306164029,OR_public_baseline,25 +100000,95730,43767,404.2619868379818,9838,101.42066227932727,7639,79.16013788780946,3108,32.00668546954977,77.31288813594676,79.67068891591695,63.318020272784125,65.06157491451663,76.92889346284494,79.28362689986055,63.17704435230421,64.9226359298366,0.3839946731018244,387.0620160564045,0.1409759204799172,138.9389846800242,22.89034,15.692871157418407,23911.354852188444,16392.84566741712,116.34384,53.84601918289193,120824.68400710332,55539.17181958835,203.82013,93.55955848321288,209014.2379609318,94761.8949837095,5607.93229,2503.2056438620957,5815464.567011386,2572252.77745962,1854.32548,794.1193635389548,1920605.2021309931,813108.9977425634,3080.32124,1285.093975051912,3175637.27149274,1306992.620436621,0.43398,100000,0,104047,1086.8797660085656,0,0.0,0,0.0,8763,90.87015564608797,0,0.0,19688,201.73404366447295,2460234,0,88582,0,0,5598,0,0,34,0.3447195236602945,0,0.0,0,0.0,0,0.0,0.09838,0.2266924743075717,0.3159178694856678,0.03108,0.3167355570508507,0.6832644429491492,25.879276752434176,4.652984427127054,0.3364314700877078,0.1810446393507003,0.2436182746432779,0.2389056159183139,10.986021535169195,5.344099763862734,33.444609502607605,16000.731440161357,86.31966193320147,15.966330241945965,29.144794635908116,20.560085053228576,20.64845200211884,0.5424793821180783,0.7613882863340564,0.7132295719844358,0.5616438356164384,0.1252015045674368,0.686059275521405,0.9155672823218998,0.8774509803921569,0.7159353348729792,0.1407035175879397,0.4975073061715661,0.703187250996016,0.6618998978549541,0.5136494252873564,0.1209842788790157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031092385910186,0.0057673400297996,0.0086039834008056,0.0112846869540486,0.0138119018317551,0.0164052953156822,0.0190578158458244,0.0217455666608814,0.0241376490072995,0.0267560925660454,0.0293653234902081,0.0318532818532818,0.0346696560803027,0.037204511510532,0.039679346312173,0.0421059159121914,0.0447113642246958,0.0470453955901426,0.0494166094715168,0.0517947382130763,0.0693762919964085,0.0854443293467683,0.1011168790309894,0.1161044751009421,0.1314044096713308,0.1495287559368289,0.1664084387469225,0.1825198275403204,0.1977948011154203,0.2123519821520508,0.2296409571603954,0.2460839463435742,0.260571192413103,0.274977025075489,0.2882898748527842,0.3017742954351512,0.3145227937727546,0.3270878607379716,0.3379820643093395,0.3488489464447529,0.3592257765414928,0.3694104143730529,0.3788972235059902,0.3871916804764992,0.3960451495853982,0.4045586509358206,0.4126318432948267,0.419896624337949,0.4266534967443432,0.4336807765754296,0.436667208319792,0.439335003668277,0.4424708452742388,0.4451628875587982,0.4480158313719023,0.4495916599641156,0.4508196721311475,0.4522738215809659,0.4536748945585286,0.4554039874081846,0.4566117271760595,0.4573108333166121,0.457631081167244,0.4589286524243661,0.4592465753424657,0.459693254789577,0.4605331939362258,0.4600083550242617,0.4603129036888187,0.4605680800846423,0.4623455350897645,0.461788794272387,0.4599129098360656,0.4615144904954814,0.4605897089998073,0.4618649205771796,0.4640025372660958,0.4613774335356919,0.4530800230282095,0.4533280819220165,0.0,2.477125285569115,81.30684291452296,287.788226635452,453.9216289024415,OR_public_baseline,26 +100000,95784,43367,400.4948634427462,9922,102.24045769648374,7722,80.04468387204543,3237,33.41894262089701,77.37208356525132,79.71114862641977,63.35007434272507,65.0797068797968,76.9831182791357,79.31397434949909,63.20898408260811,64.93770952722478,0.3889652861156207,397.1742769206799,0.141090260116961,141.9973525720195,23.23332,15.896452845623848,24255.95088950138,16596.146376872806,117.12414,53.90562820094565,121724.63041844148,55723.511443399366,203.3584,93.5864818074479,208291.833709179,94670.51719095388,5637.66942,2509.6235195157224,5849101.6453687465,2583562.2686957554,1895.03841,816.9579472863289,1965268.447757454,839819.3168819747,3197.05716,1320.3173626477767,3304391.735571703,1351686.1256724282,0.43036,100000,0,105606,1102.5432222500626,0,0.0,0,0.0,8829,91.6019376931429,0,0.0,19700,201.64119268353795,2461851,0,88625,0,0,5786,0,0,30,0.3132047105988474,0,0.0,0,0.0,0,0.0,0.09922,0.2305511664652848,0.326244708728079,0.03237,0.3056510118365788,0.6943489881634212,26.06527068230489,4.687808715067979,0.3363118363118363,0.1785806785806785,0.2435897435897435,0.2415177415177415,11.24059758302634,5.614632096137731,34.61881573981649,15834.518394718316,87.07399232585416,15.820568065130889,29.174245378300103,21.18701224724446,20.892166635178704,0.5375550375550375,0.757070340826686,0.6815556411243743,0.5994638069705094,0.1164274322169059,0.6799129014697877,0.9201101928374656,0.8469055374592834,0.7358078602620087,0.1442786069651741,0.4931180968564146,0.6988188976377953,0.6303580433686334,0.5550817341862118,0.1088573360378634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002714473817482,0.0054032683183974,0.0080168862008077,0.0108592964313649,0.0134445235431709,0.0158209806157354,0.0185711810333404,0.0215013164071269,0.0241272890778286,0.026711697881486,0.0293807196073006,0.0314761029977729,0.0338911617771016,0.0363273165357249,0.0385579193779583,0.0409886033704266,0.0436924860517353,0.0460758285975028,0.0485655801581446,0.0512852547084361,0.0684232495043305,0.0847478899312855,0.1000251582875592,0.1147396293027361,0.1289071965107826,0.1472579946543837,0.1643687540403344,0.1805393105501563,0.1951792059240922,0.2088556062651325,0.2258238034275386,0.241157521511653,0.2559367901663931,0.2705752430103764,0.2841065358254766,0.2973568769939738,0.3104271749319288,0.3233428552149171,0.3353105294197704,0.3466553612759814,0.3567335409407161,0.3662855337226585,0.3761659012357369,0.3849549030896181,0.393537323960791,0.4016958984929461,0.4095798762348274,0.4163531317356869,0.4238698621244774,0.4302884297192476,0.433218114552672,0.4357944428340718,0.4378435817512043,0.4401128382603132,0.442724921126213,0.4444889841353047,0.4459593060339329,0.4472178113007807,0.4487657517693768,0.4500027049934178,0.4515951907602007,0.4527721149618259,0.4541830979943179,0.4537695268281639,0.4530617223713101,0.4547863882115975,0.4553280595625872,0.4585958595859586,0.4590058102001291,0.4600585699178394,0.4614523576325731,0.4615133724722766,0.4651402773298936,0.463572542901716,0.4658529497239174,0.4675118858954041,0.4654659357870008,0.4624618514750763,0.4647613762486126,0.4655436447166922,0.0,2.279652669288396,82.13712412813057,293.0196618757496,454.5733669551402,OR_public_baseline,27 +100000,95638,43810,406.9825801459671,9750,100.59808862586002,7614,78.95397227043644,3139,32.361613584558434,77.25911226955019,79.65525670807334,63.27736057920528,65.04563564552323,76.87872289411287,79.27403825377134,63.139558999463375,64.91120354598037,0.3803893754373177,381.21845430200096,0.1378015797419038,134.43209954286317,22.87604,15.67170123026214,23919.404420836905,16386.4794645038,115.64002,52.8307832129322,120254.60590978482,54582.60465382967,201.89716,91.80122491369733,207569.38664547564,93180.15774510344,5569.37755,2453.1261900492086,5777312.354921684,2519086.5780672785,1926.44864,821.791508652642,1998923.064054037,843936.7718948175,3095.09608,1270.4783148914596,3193525.2932934607,1290304.8307443983,0.43415,100000,0,103982,1087.2456554925866,0,0.0,0,0.0,8704,90.30929128589054,0,0.0,19481,200.14011167109308,2456878,0,88451,0,0,5974,0,0,25,0.2614023714423137,0,0.0,1,0.0104560948576925,0,0.0,0.0975,0.2245767591846136,0.3219487179487179,0.03139,0.3021568817100299,0.69784311828997,26.07545993824562,4.667840736236717,0.3308379301287102,0.1846598371421066,0.2385080115576569,0.2459942211715261,11.274355463490748,5.697498598115142,33.47713266645404,16067.841836119836,85.6949516693177,16.040149469789167,28.419519186809843,21.157752235617885,20.07753077710081,0.5430785395324402,0.7467994310099573,0.6911472806669313,0.5883609183128671,0.1332599118942731,0.6819262782401903,0.9112426035502958,0.8374558303886925,0.7067307692307693,0.1961325966850828,0.5037086985839514,0.6947565543071161,0.6487455197132617,0.5545641729581332,0.1176066024759284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027045369366814,0.0055060383901682,0.0081501329598278,0.0108010892537798,0.0135917391525509,0.0162956022243497,0.0187001651813936,0.0211317210612819,0.0236247840443258,0.0261530902614285,0.0284814993284599,0.030865275025413,0.0331296799144244,0.0352624855777155,0.0376363505020588,0.0401393814688821,0.0426603128561069,0.0454134963721104,0.0478270819030976,0.0500938281901584,0.0675103721430885,0.0843589287023556,0.1006374510359892,0.115356262768803,0.1299452928627252,0.1476173831993475,0.1652432547270023,0.1815265922871178,0.1972558497668648,0.2116392456720649,0.2290556430559451,0.2456570035220807,0.2614578453694726,0.2759093051035057,0.2898478781259997,0.3037604843637171,0.3163066592053721,0.328797264818388,0.3403659702307797,0.3524271621404097,0.3627506764053555,0.3721733004579077,0.3813778844554291,0.3904874317992942,0.3990079171146515,0.4076386566073264,0.4151973924315073,0.4233558901410973,0.4298066280356794,0.4369125378365461,0.4399745178036515,0.4426954761046237,0.4459319263838556,0.4487730061349693,0.4512801261355957,0.4530640668523676,0.454151405127877,0.4561586985391766,0.4578229880285101,0.4585028110707377,0.4597267033592712,0.4607542710649122,0.4619587168640122,0.4630111566226889,0.4640534021974809,0.4646104239348768,0.4654828354108222,0.4683139162719242,0.4698579657257343,0.4692208002591932,0.4745273353823228,0.4754339191468524,0.4757934199469976,0.4779790723098547,0.47875,0.4787013304040034,0.4767826223831261,0.480516774327985,0.4793053545586107,0.4772911597729116,0.0,2.5616441480597496,74.92459803375954,297.96135501184534,458.72864496649487,OR_public_baseline,28 +100000,95626,43360,402.8925187710455,9733,100.56888293978623,7624,79.23577269780185,3138,32.51207830506348,77.28554750318864,79.71706455556993,63.27381344368565,65.07188732736053,76.90847585067462,79.332357518609,63.13861387804357,64.93607687377016,0.3770716525140187,384.7070369609327,0.1351995656420754,135.81045359036636,23.1814,15.888767646746349,24241.73341978123,16615.530971437005,115.61013,53.03321175925643,120414.44795348545,54975.21778518021,197.30044,90.338685454129,203062.6294104114,91983.6128476568,5584.63979,2454.730088412754,5807292.943341769,2534218.986899751,1900.55257,812.6933650083691,1974644.092610796,837025.4481086386,3111.38614,1273.931313435013,3225327.4214125862,1308949.0856050442,0.42962,100000,0,105370,1101.8969736264196,0,0.0,0,0.0,8749,90.989898144856,0,0.0,19119,196.71428272645517,2458060,0,88367,0,0,5912,0,0,20,0.1986907326459331,0,0.0,0,0.0,0,0.0,0.09733,0.2265490433406266,0.3224083016541662,0.03138,0.3087450257206638,0.6912549742793361,26.015466659395187,4.712992645445386,0.3335519412381951,0.1762854144805876,0.25,0.2401626442812172,10.730785757677598,5.137389484107983,33.44925426486441,15846.422347066764,85.84307446136847,15.585642232525238,28.84196593541961,20.37423123117231,21.04123506225131,0.5272822665267576,0.7470238095238095,0.7015336217066457,0.557618787547788,0.1107030430220356,0.6823793490460157,0.9050131926121372,0.863849765258216,0.7055702917771883,0.1421188630490956,0.4799726121191373,0.6849740932642487,0.6470588235294118,0.5192572214580468,0.1026991441737985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027766518038102,0.0051222753045471,0.0076960565325102,0.0105198963256594,0.0132462458796239,0.0158909635424624,0.0184737481000907,0.021054674730304,0.0236164097738593,0.0261053019673709,0.0285078270860261,0.0308258238201415,0.033308629776021,0.0357584628705727,0.0381625003872007,0.040473727761688,0.0426636545456429,0.0452067171386734,0.0474004683840749,0.0496495327102803,0.0672868865311242,0.0831010416448347,0.0988104495491898,0.1140470094925039,0.128237630455909,0.1470223784963091,0.1638029052036511,0.1793371072803062,0.1951245612533173,0.2095022186885562,0.2258238556660983,0.2421962246966855,0.25721229823548,0.2712130012163983,0.2851881664112205,0.2987410910544195,0.3107716736181775,0.3237310302838974,0.3360429290919633,0.3473713184695843,0.3578281423804227,0.3674100812169653,0.3772742917502403,0.3858472192166198,0.393954168698196,0.4024284689764325,0.4102206823830684,0.416893350190925,0.4242278431627544,0.4308240687982826,0.4337028525077734,0.4364198980508088,0.4397087777447273,0.4421396903844756,0.4439145449924502,0.4450754652921386,0.4458406514449944,0.4478700480689541,0.4498543128566749,0.4511939597557892,0.4529956623037145,0.4539933676934756,0.4549781158373348,0.4565882859799097,0.4576312516764612,0.4587269752467409,0.4596579129232895,0.459938857397618,0.4602049136739107,0.4625075467900986,0.4633286972647195,0.4630282645255791,0.4644632367180943,0.4668536262366596,0.4683678382282137,0.4680619404790709,0.4644035832154644,0.4691538140892038,0.4743950478334271,0.4802172226532195,0.0,1.8974713436053905,80.37428405306116,286.554314766183,455.7830986898029,OR_public_baseline,29 +100000,95797,43792,405.8999759908974,9717,99.90918295980042,7558,78.20704197417456,3074,31.65026044656931,77.35864855579545,79.66511361958918,63.35358995694328,65.05485614484303,76.97991467863653,79.28290379731169,63.21553205566673,64.91878934726527,0.3787338771589219,382.20982227748834,0.1380579012765466,136.06679757775453,23.55562,16.121076911014367,24589.099867428,16828.373446991412,115.77279,53.620418442455794,120148.80424230405,55269.73007949448,196.27528,90.471277231541,200654.3315552679,91137.41324985812,5499.46611,2438.3455528572267,5695267.701493784,2499857.9272135394,1850.42237,795.1722397596903,1914255.6760650128,812733.2629816338,3039.07976,1262.5080808805376,3131894.025908953,1283045.971494825,0.43397,100000,0,107071,1117.6863576103635,0,0.0,0,0.0,8768,90.79616271908306,0,0.0,19071,194.8704030397612,2459205,0,88465,0,0,5965,0,0,24,0.2400910258150046,0,0.0,0,0.0,0,0.0,0.09717,0.2239094868308869,0.3163527837810023,0.03074,0.3120988134604162,0.6879011865395838,25.818458895991316,4.685719251336943,0.3351415718444033,0.183778777454353,0.2374966922466261,0.2435829584546176,11.075680869450148,5.418868118398091,33.13210910183779,15869.76875427673,85.29627482256859,16.005319188172738,28.63613948037961,20.58267688958676,20.07213926442947,0.5334744641439534,0.7494600431965442,0.6853533359652586,0.5649103747963063,0.1197771587743732,0.6793416572077186,0.9234828496042216,0.8266666666666667,0.7012048192771084,0.1630434782608695,0.4891304347826087,0.6841584158415842,0.6414899120538023,0.5252454417952315,0.1086194814295725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027629901018156,0.0053378439972044,0.0081206849356732,0.0109795326088059,0.013421250482596,0.0159707034230201,0.0190176425049912,0.0217171768690134,0.0240279508816378,0.0263507845905194,0.0285869387086201,0.0313455186985865,0.0337908644461339,0.0360788672100107,0.0385717820761331,0.0408580605847784,0.0431984438213291,0.0455615106310191,0.0479049379894883,0.0501368978835483,0.0671764804072945,0.0832557896387683,0.0992043941760395,0.114298026191327,0.1283488965241036,0.1459099556119213,0.1623232044784664,0.1791451245718176,0.1942985265855221,0.2080416018870959,0.2248855866042104,0.2412356632763471,0.2568255487632432,0.2707239145658263,0.2840040529527082,0.2979464206511132,0.3111083815351631,0.3233711558377234,0.33499477723784,0.3456652832870933,0.3571056258904475,0.3676532620922385,0.3773327642218586,0.3865923666322388,0.3952618757612667,0.4031616156622336,0.4108348179559882,0.4184933779059382,0.425499291830715,0.4315637462075544,0.434616840625169,0.4373972280949025,0.4399762366154151,0.4427283680016257,0.4447698744769874,0.446952317901187,0.448787642079421,0.4509115596694871,0.4525349755904018,0.4545585897991619,0.4559138561868471,0.4569113822764553,0.4582731060283989,0.4588384582266434,0.460318235064428,0.4619263741805345,0.4641260811516805,0.4656848589854654,0.4685327216686976,0.4687918781725888,0.4663752209096828,0.4653783342406097,0.4638317093631025,0.4628060263653484,0.4646221880407614,0.4625348020820723,0.4569223499763742,0.4513144058885384,0.4503772489843297,0.4559967253376995,0.0,2.6907252252234235,78.38649669626777,289.88266877052104,448.34654515491866,OR_public_baseline,30 +100000,95862,43665,403.8096430285202,9967,102.65798752373205,7782,80.60545367298826,3163,32.55721766706307,77.41454581429173,79.70189005226212,63.37712166936033,65.06743900696381,77.03400286078353,79.31885219458854,63.24008395803936,64.93260214346618,0.380542953508197,383.0378576735711,0.1370377113209713,134.83686349762536,23.05556,15.81397525348862,24050.78133149736,16496.604758390833,118.16945,53.56654155207265,122722.05879284804,55330.48710862766,199.18669,90.35226477307675,204216.05015543176,91575.81480261582,5634.91615,2461.780116475752,5840043.437441322,2529935.1218165183,1858.8533,788.1092682586659,1927258.350545576,810294.3483952621,3126.1665,1279.456524311068,3221357.7225595126,1301169.458619885,0.43303,100000,0,104798,1093.21733324988,0,0.0,0,0.0,8865,91.89251215288644,0,0.0,19284,197.66956666875305,2465089,0,88656,0,0,5520,0,0,34,0.3442448519747136,0,0.0,1,0.0104316621810519,0,0.0,0.09967,0.2301688104750248,0.317347245911508,0.03163,0.3071178750354476,0.6928821249645524,26.435668008845628,4.671597972646305,0.3368028784374197,0.1905679773837059,0.2409406322282189,0.2316885119506553,10.94894392459235,5.298597346354472,33.5450317032777,15976.104232105454,86.62390255711827,16.792891516248307,29.104579322824826,20.153500918709227,20.572930799335914,0.5280133641737342,0.7430883344571814,0.6829454406714994,0.5701608430393789,0.1008,0.6893437688139675,0.903846153846154,0.8563636363636363,0.7525252525252525,0.1339031339031339,0.4842346021891848,0.6907953529937444,0.6368903911154031,0.5188343994314144,0.0931758530183727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028243154325049,0.0055822906641,0.0079296672987415,0.0107100075122327,0.0130602703526781,0.015791776473102,0.01860228198859,0.0212676975804806,0.0240970008989131,0.0264810571966287,0.028895694838518,0.0314804747202248,0.0340104600145905,0.0363859067656171,0.0388271439470482,0.0411592765882729,0.0436195087632172,0.046044313636081,0.048459430279877,0.0508144881103459,0.0686207040373707,0.0840265875172442,0.1001843820059924,0.1149028213824459,0.1293254143762768,0.1473356218642725,0.1644754266826286,0.1805387248336416,0.1955807353349124,0.2097038504793016,0.2270399380271991,0.2431470928535127,0.2585206277442072,0.2727849000513678,0.2861257062457405,0.299464293620224,0.3123947400707124,0.3248724116999033,0.3369789657597967,0.3484855427759703,0.3597370431240017,0.3702615717713148,0.3793385200184731,0.3888222307544634,0.3975906546605013,0.4057978171761568,0.4136685685622923,0.4210143726167855,0.4278657411018381,0.4347578423060619,0.4379822439630825,0.4412268345899964,0.4442071316425975,0.4463702477899229,0.449227966430726,0.4512279621217954,0.4521794463888005,0.453312631109496,0.4535429819883363,0.4542578813041446,0.4550807791031255,0.4573218168398795,0.4591942476472454,0.4607462282048966,0.4612201178246263,0.4639330411363996,0.4640938240221849,0.464100359792403,0.4652240561833802,0.4664320957696352,0.471176089571574,0.4718214729561787,0.4724509991700185,0.4733436055469954,0.4759174311926605,0.4773304316285818,0.4808204164709566,0.4819302277000208,0.4896395117797332,0.490707789640174,0.0,2.269651840714066,73.96395647883462,299.51164654872406,475.5126983763098,OR_public_baseline,31 +100000,95710,43447,401.90157768258285,9797,100.9612370703166,7615,78.98861143036255,3104,32.07606310730331,77.36002699221102,79.73206701199031,63.33690834044432,65.08867526908178,76.98694316867456,79.3542932874969,63.20091158016932,64.95380853454823,0.3730838235364615,377.7737244934088,0.135996760275006,134.8667345335457,23.76836,16.27550216786928,24833.72688329328,17005.01741497156,115.55981,53.07349298055115,120112.3602549368,54825.22513901489,197.40856,90.1275215940064,202701.93292236963,91505.58611229956,5542.08765,2454.919407839342,5749158.583220145,2523689.1319831605,1862.18309,804.1533730105449,1930444.0392853413,825030.3824120014,3065.63752,1268.043345285416,3169055.292028001,1294494.6186950589,0.43117,100000,0,108038,1128.805767422422,0,0.0,0,0.0,8732,90.63838679343851,0,0.0,19180,196.8341866053704,2459712,0,88391,0,0,5864,0,0,25,0.2507574966043255,0,0.0,0,0.0,0,0.0,0.09797,0.2272189623582345,0.3168316831683168,0.03104,0.3028134970511457,0.6971865029488543,26.050742539258977,4.7173062798373095,0.326854891661195,0.182403151674327,0.235193696651346,0.2555482600131319,11.00841578401843,5.357542841088157,33.07028695649028,15842.063650361668,85.57331736318959,15.922542642983174,28.076348410019907,21.74110327217544,19.83332303801106,0.5349967170059093,0.734341252699784,0.6862193652069104,0.5842754367934224,0.1166945840312674,0.6774566473988439,0.8792134831460674,0.8554006968641115,0.7236533957845434,0.1581769436997319,0.4931180968564146,0.6844143272023233,0.635509138381201,0.5450954575378538,0.1057827926657263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028258601655001,0.0053827205546939,0.0082197619313396,0.0109307381295841,0.0137007201269376,0.0164249928719807,0.0189908256880733,0.0214742084957847,0.0239304881165346,0.0264030795061323,0.0288400418298509,0.0312310709115735,0.0336888002221239,0.0362565148425107,0.0387131389421985,0.0409842845326716,0.0438530152185398,0.0461164796612104,0.0486785034480606,0.0510186005314437,0.0678105940345893,0.0837737981851103,0.100083927822073,0.1148777281093873,0.129728817848256,0.1474304079841839,0.1640392938979886,0.1796547393516251,0.1944818304172274,0.2090847646736973,0.2256632400163789,0.2420903373851299,0.2567188519243313,0.2713017233837809,0.2837921094901753,0.2975665432946965,0.3102967113929137,0.3228311016090919,0.334248658216932,0.3447943886673085,0.3551781621171077,0.3652617537619059,0.3752827350994162,0.384239052232721,0.3932141554177307,0.4018260333127699,0.4094048917472138,0.4166602961037637,0.4236243561299028,0.4301947192973173,0.4329636483985573,0.4363272074063838,0.4397445338166987,0.4422434090050286,0.4447966507177033,0.4461396208969024,0.4474954208807836,0.449553401905265,0.4504078191141549,0.4518734373032576,0.4527634961439589,0.4535500598324691,0.4547509400481642,0.4565276273022752,0.4573615160349854,0.4579431857146625,0.4594023892858176,0.4601710387239358,0.4619352989646401,0.4621483167994796,0.4622103886397608,0.4635685911737498,0.4618004240827604,0.4631963896669779,0.463529186235982,0.4646232129876423,0.4642577819490067,0.4678326046221112,0.4749857873791927,0.469908330011957,0.0,2.234280035767768,77.2596085729739,294.80743762915705,452.5805978312124,OR_public_baseline,32 +100000,95744,43477,402.6466410427808,9910,102.1160594919786,7650,79.2425635026738,3236,33.30757018716577,77.33346816806463,79.69691330654285,63.32120940122799,65.07085726442993,76.93920863273372,79.30134748888821,63.177760857337546,64.93034031548301,0.3942595353309031,395.56581765464216,0.1434485438904431,140.51694894692446,23.85636,16.337185157534947,24916.81985294118,17063.403615406653,116.00699,53.39530504513336,120480.2911931818,55085.39965442573,202.6359,93.24832617287936,208237.9679144385,94601.41685419458,5625.54184,2504.309274112757,5829391.742563503,2569414.547243439,1925.55017,830.2428314077242,1990063.565340909,846067.7655077311,3202.06756,1323.430715842575,3298920.3918783423,1342887.5097332709,0.43165,100000,0,108438,1132.5827205882354,0,0.0,0,0.0,8721,90.42864304812834,0,0.0,19635,201.6732118983957,2458146,0,88391,0,0,5826,0,0,28,0.2820020053475935,0,0.0,0,0.0,0,0.0,0.0991,0.2295841538283331,0.3265388496468214,0.03236,0.303200075966195,0.696799924033805,26.104532442677097,4.749161005436233,0.3347712418300653,0.1764705882352941,0.2504575163398693,0.2383006535947712,11.158484200400729,5.44324343633647,34.502999159625254,15909.530749881147,86.16902284137639,15.505342855685576,29.08213928150961,20.35894799552885,21.22259270865235,0.5329411764705883,0.7414814814814815,0.7032409215150331,0.5754251234229293,0.1179540709812108,0.6783139212423738,0.905982905982906,0.865625,0.7297297297297297,0.1333333333333333,0.4881135625106892,0.6836836836836837,0.6491410723581468,0.5310734463276836,0.1138318994043679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027255686711586,0.0054760069768385,0.008099384933926,0.0103741185555487,0.0131710095400825,0.0159150383366086,0.0187579007462382,0.0215243616174399,0.0239871632394423,0.0267163461046339,0.0292588909506576,0.0317026846671115,0.0339051027333868,0.0365911431513903,0.0390821674714209,0.0414065407036838,0.0438213183672624,0.0462695859707377,0.0485938555907885,0.0504744346884146,0.0678949840805887,0.0835095137420718,0.0993273942560938,0.1138620109381573,0.1281453671088988,0.1463770568080876,0.1630448622723993,0.1797047145609571,0.1950990236503087,0.2099928132407993,0.2267859066910893,0.2430814853296102,0.2585863640814195,0.272771042149954,0.2861843553286085,0.3002792058145719,0.3126298621506289,0.3254046018177518,0.3371044321770144,0.348094665062174,0.358506512301013,0.3679230922354539,0.3777309132268613,0.3869616866053108,0.3953262164725336,0.4028051909602289,0.4107037663721251,0.4185628513518681,0.4251908198764214,0.4324496119924782,0.4357462575558831,0.4382121793897874,0.440858084874556,0.4430020932666589,0.4452504524446971,0.4468604256107731,0.4485479697134277,0.4508825723046324,0.452334126901977,0.4537972855905284,0.4549948857824752,0.4566116941529235,0.4574206668643816,0.4579001019367992,0.4587120101631975,0.4599426233862827,0.4601626486846294,0.4615877696227685,0.4629662872940078,0.4655179404013784,0.4662007919869555,0.4679068755439513,0.4688713435154025,0.4666247346489504,0.4647310989867498,0.4660796229691182,0.4591396129857668,0.4639880316306903,0.4638783269961977,0.4624697336561743,0.0,2.609289904087497,80.11985759461056,287.7121956222573,456.5398636252402,OR_public_baseline,33 +100000,95804,43607,404.0332345204793,9777,100.9769946975074,7601,78.8276063629911,2997,30.990355308755376,77.34149214859087,79.68139961228589,63.33904717832892,65.0727627288727,76.99588525909827,79.32903567510694,63.21545955123492,64.94820328703722,0.3456068894926005,352.36393717895,0.1235876270940039,124.55944183548696,23.67376,16.21259662452599,24710.617510751115,16922.671939090214,116.11287,53.15898253870866,120696.44273725525,54985.31641550316,202.11875,92.49253976692492,207289.9357020584,93654.9998414173,5487.2325,2397.6825530375354,5699981.2951442525,2475116.000414947,1880.06418,794.3203917203034,1953349.1085967184,820052.1812453581,2946.844,1191.807205639779,3051005.1354849483,1224455.2277687036,0.4325,100000,0,107608,1123.2098868523235,0,0.0,0,0.0,8723,90.5285791824976,0,0.0,19567,200.6074902926809,2463238,0,88519,0,0,5998,0,0,29,0.2922633710492255,0,0.0,0,0.0,0,0.0,0.09777,0.226057803468208,0.306535747161706,0.02997,0.3046255080317399,0.6953744919682601,26.049977322391488,4.73995341101475,0.3364031048546244,0.1890540718326536,0.2318116037363504,0.2427312195763715,11.257772508972414,5.572477636804737,31.73834603467694,15879.823328280225,85.16290421351792,16.37056399647218,29.005358435386164,20.50551329951281,19.28146848214677,0.546243915274306,0.7487821851078637,0.6961282753226438,0.578319783197832,0.1299659477866061,0.7193396226415094,0.8904494382022472,0.8847352024922118,0.7379679144385026,0.1820987654320987,0.4965283657917019,0.7021276595744681,0.6328981723237598,0.5377294357579878,0.1182197496522948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002846520862668,0.0053323601269223,0.0077832462326855,0.01068975328212,0.0134303301622831,0.0161758564138085,0.0187255221932114,0.0213215697086664,0.0235701941856779,0.0262034221116333,0.0285145956587271,0.0312686122692078,0.0334595050502972,0.035993530641888,0.0382904959914153,0.0408376313967069,0.0432914328314937,0.0455380019294005,0.0479000852018869,0.0501847707281528,0.0675117370892018,0.0845086620594477,0.0997527138605976,0.114617154745768,0.1290186615525653,0.1476099385971401,0.1648824539461132,0.1803740603302533,0.1952960761506365,0.2094304238332529,0.2261494747718271,0.242403277589804,0.2573489473569861,0.2708686197589413,0.2843007915567282,0.2981201425946018,0.3114269788182832,0.3244342112652327,0.3363994743758213,0.3468853283928592,0.3576139815873675,0.3680497149799084,0.3773444336699699,0.3863023871408209,0.3942782898012216,0.4024175363801027,0.4098200655672064,0.4178242507505215,0.4251230251230251,0.4316967289904601,0.4349708059709543,0.4376628569065115,0.4401848293013791,0.4429584717367024,0.4453154162000746,0.4466097129223428,0.4477680919217836,0.4487722549473824,0.4506265404967509,0.4514558730731092,0.4538101642263178,0.4557344265573442,0.4564433317774855,0.4569162795966919,0.4588872356513891,0.4592463215835715,0.4609052300890104,0.4627532968800257,0.463478604534186,0.4663498639372893,0.4668105268095885,0.4664844177145981,0.4691438222684163,0.4681907765076862,0.4699554177166117,0.4704084128148691,0.4715809584461073,0.4688295165394402,0.4653835104854927,0.4718171068190776,0.0,2.028712756189587,75.88701271792074,291.5713480419956,458.3840146522376,OR_public_baseline,34 +100000,95696,43548,403.3397425179736,9816,101.16410299281056,7632,79.1046647717773,3151,32.50919578665775,77.3419109081298,79.71155451494857,63.33255108723839,65.08131396650319,76.96398286199782,79.32953801568628,63.195391827582114,64.94559419448336,0.3779280461319843,382.0164992622921,0.137159259656272,135.71977201982577,22.80674,15.636211609505445,23832.49038622304,16339.462056413482,116.57992,53.78873905560937,121206.3513626484,55591.08954983422,201.98519,92.88903848767632,206951.983363986,93960.93672162476,5531.34058,2454.909829142688,5737082.668032101,2522287.1166430013,1856.38584,794.4231012071964,1927331.6439558603,817606.3275447208,3108.74556,1281.385767770218,3210227.094131416,1306930.000733523,0.43157,100000,0,103667,1083.2950175555927,0,0.0,0,0.0,8757,90.86064203310484,0,0.0,19584,200.5099481692025,2463242,0,88557,0,0,5665,0,0,28,0.2925932118374854,0,0.0,0,0.0,0,0.0,0.09816,0.227448617837199,0.3210065199674001,0.03151,0.3002216013103382,0.6997783986896619,26.10441081260199,4.569844974682085,0.3280922431865828,0.1859276729559748,0.2374213836477987,0.2485587002096436,10.98750277658882,5.46433683169502,33.543792752788605,15889.133792832205,85.95480699156137,16.385460057777703,28.382721807251205,21.1513117246906,20.035313401841854,0.5362945492662474,0.7455954897815363,0.6968849840255591,0.5756457564575646,0.1092715231788079,0.681994459833795,0.8967254408060453,0.8634146341463415,0.6987951807228916,0.1428571428571428,0.4911618328470911,0.6868884540117417,0.6426680783483325,0.5411605937921727,0.100418410041841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025822261827608,0.0052498226411269,0.0079529316291336,0.0104818396034776,0.013259039329727,0.0158833591268225,0.0183186030153827,0.0207499795868375,0.0232933697196414,0.0260273271582825,0.0285192930659777,0.0309387386277288,0.0331962155491567,0.0356480527508757,0.0381198080594396,0.0408129509789732,0.0431765692803214,0.0457668278710641,0.0480498279107007,0.0506289537586109,0.0678461763415704,0.0843591676087593,0.0998016976361099,0.1149035983633284,0.1295981770805861,0.1473980488011343,0.1640194798994175,0.180368189610196,0.1958670356558997,0.2102552547719445,0.228046363322992,0.2439980083562444,0.2582743988684582,0.2726924675665624,0.2855256643010397,0.2987263262819802,0.3113404362135326,0.3239121388323417,0.3356864792472959,0.3458433065726032,0.3562191013187297,0.3661236106393694,0.3757020641277816,0.3853251739860811,0.3943612270476144,0.4022881994637804,0.4103207985435369,0.4173777726756719,0.4249444826824929,0.4321812027291479,0.434773798749105,0.4379545925056932,0.4405544017293265,0.4426127301725387,0.4451124903025601,0.4473498015811979,0.4487838246289432,0.4500033044742581,0.4515284594850599,0.4537559235301537,0.4551354828943385,0.4569898917255983,0.4580201299528602,0.4605188497242334,0.4618014014698342,0.4621864321474928,0.4639148343679294,0.4646632921125136,0.4662649305929194,0.4670548949340283,0.4678398058252427,0.4678889070769902,0.468336361276927,0.4684791174152876,0.4728106999902372,0.4727048675292667,0.4730462519936204,0.4692570452604611,0.4755529685681024,0.4838709677419355,0.0,2.554287236215841,80.39200991133033,290.41099945370235,448.7206891723578,OR_public_baseline,35 +100000,95703,43341,400.4472169106506,9722,100.25809013301568,7523,77.97038755315926,3125,32.276940116819745,77.33810060160408,79.7198225304134,63.31256206328344,65.07459182559211,76.96845509249766,79.34597372389113,63.17928630838205,64.94241690985616,0.3696455091064194,373.8488065222612,0.1332757549013834,132.17491573594486,22.89958,15.693726276524446,23927.755660742085,16398.363976598903,114.98222,52.84822548478784,119489.25321045316,54565.48434718645,199.01604,91.338359775747,203688.9125732736,92187.247010905,5491.82963,2418.2435250321646,5695162.346007962,2483574.3028245354,1908.3431,811.3108297324828,1977131.981233608,830878.3528501196,3093.26694,1261.6360212468403,3196745.619259584,1288442.3710925851,0.42949,100000,0,104089,1087.6252573064585,0,0.0,0,0.0,8634,89.52697407604776,0,0.0,19325,197.569564172492,2461631,0,88511,0,0,5895,0,0,22,0.2298778512690302,0,0.0,0,0.0,0,0.0,0.09722,0.2263614985215022,0.3214359185352808,0.03125,0.3098605286257681,0.6901394713742319,26.13191871913102,4.756052871465435,0.3382958925960388,0.1801143160973016,0.2473747175328991,0.2342150737737604,11.040110771647624,5.390726646182351,33.141866114802504,15795.44062556888,84.37359213788052,15.56524979094491,28.78469002973005,19.591876147710387,20.43177616949517,0.5360893260667287,0.7579335793357933,0.6825147347740668,0.5851305334846765,0.1278882321332617,0.6904347826086956,0.9514824797843666,0.8506711409395973,0.7094240837696335,0.1595744680851064,0.4901690238013108,0.6849593495934959,0.6310928681375064,0.5507246376811594,0.1198653198653198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028177008372017,0.0054067762223574,0.0080106402420452,0.0104681179746732,0.0134207018650603,0.0160624980902229,0.0188482956979377,0.0213570020529686,0.0240629953469346,0.0263758767214457,0.0290712579087152,0.0313696899996919,0.034002344280162,0.0363310574932806,0.0386535723864738,0.0410362929894179,0.0437452113230208,0.0465014940239043,0.0488948495623063,0.0512323686897097,0.0681134597710752,0.0848992410363779,0.1006799437577385,0.1154278983182759,0.1300303720577069,0.1482852730234624,0.1641412533689862,0.180189965073686,0.1956867899928398,0.2102067308208082,0.2262697437886525,0.2415991859004893,0.2563298717697516,0.2706320109439124,0.283888650397913,0.2976574539084932,0.3100693784982515,0.3211410038401333,0.3328902220101347,0.3439277849146632,0.3543530666172175,0.3637844552784549,0.3728568379615357,0.3825894893525076,0.3908623880015582,0.3989514942443463,0.406797970155253,0.4145627842796545,0.4216463493878824,0.4286054795608935,0.4318390618244704,0.4347129358457203,0.4379747909858676,0.4407926253901429,0.4425720090833034,0.443642865951412,0.4451348724567022,0.446682640667603,0.4480205265967522,0.4497740326617332,0.4504369868714766,0.4507208178587117,0.4523173472416571,0.4532901002222121,0.4546628652191924,0.455330804888327,0.4578768308153615,0.4585885655946912,0.4586238793226128,0.457680250783699,0.4579349025376977,0.4594855305466238,0.4615384615384615,0.46224748444581,0.4616334283000949,0.4616959768730426,0.4654292343387471,0.4594539109012523,0.4599109131403118,0.4609984399375975,0.0,2.3655325319663265,76.99930572274603,282.738552416141,452.9714430543038,OR_public_baseline,36 +100000,95644,43491,403.73677386976703,9731,100.30948099201204,7586,78.65626699008824,3028,31.251306929864917,77.27782633283482,79.68796192482328,63.2892740309558,65.07182979494904,76.90697116166108,79.31431448042065,63.155086305263104,64.93992414270603,0.3708551711737442,373.6474444026357,0.1341877256926906,131.905652243006,22.95062,15.735975928665663,23995.880557065782,16452.65351581454,115.93651,52.94331879589435,120571.78704362008,54709.6407468261,197.82961,90.53176009387074,202583.4553134541,91408.08431486398,5493.58566,2422.0386614091294,5697979.29823094,2486712.9913800703,1864.19103,799.0471715429893,1931020.461293965,817442.4807204966,3003.50632,1237.850796798305,3101868.2196478606,1260120.0527610204,0.43115,100000,0,104321,1090.7218435029902,0,0.0,0,0.0,8734,90.62774455271632,0,0.0,19132,195.86173727573083,2461065,0,88504,0,0,5644,0,0,34,0.3450294843377525,0,0.0,0,0.0,0,0.0,0.09731,0.2256987127449843,0.311170486075429,0.03028,0.3153458632048053,0.6846541367951947,26.04397955597697,4.741107423289328,0.3397047192196151,0.1819140522014236,0.2388610598470867,0.2395201687318745,10.980955565089616,5.237705887450887,32.38463150679439,15832.206514242638,85.24064789473346,15.846111778895152,29.06012339305852,20.1222401989603,20.212172523819486,0.5307144740311099,0.7434782608695653,0.6880093131548312,0.5602641717116126,0.1153421633554084,0.6703747072599532,0.9107142857142856,0.87751677852349,0.6957671957671958,0.1331658291457286,0.4901326981966655,0.6896551724137931,0.6309944472488642,0.5246699096594858,0.1103253182461103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028575481831262,0.0053038293039104,0.0077355694069396,0.0104068213461792,0.0128083829289384,0.015688511730728,0.0182151963284038,0.0209075959839439,0.0235776682146437,0.0261521598836315,0.0285128205128205,0.0309896769554722,0.0331947645702996,0.0354856995619685,0.0378075346637896,0.0401613487097274,0.0424334742601342,0.0449297032375968,0.0475769274795258,0.0499551644318395,0.0668798461763538,0.0834476619364298,0.0992442531751863,0.1136987887143112,0.1280232999873369,0.1456516216445084,0.162544469813625,0.1790626564813927,0.1938461209385895,0.2083655415270978,0.2242338031811716,0.240673965067299,0.2553342042238188,0.2706408965547432,0.2840392385691794,0.2974743164917491,0.3111982220435331,0.3236449597568526,0.3356456776947705,0.3461128738502422,0.356405389138386,0.3662863495406939,0.3756291673081706,0.3847584758475847,0.3927967184780359,0.4015301329905572,0.4098395641366843,0.4176890375457992,0.4247515996462571,0.4310646418064721,0.4340721084198697,0.4363754726650692,0.4390524150648982,0.4413669640647969,0.4440166586768935,0.4458453076233738,0.4470360659930937,0.4484852506885224,0.4505714581678809,0.4520508376660889,0.454335303926027,0.4560486857646187,0.4583015024191494,0.4586759076804602,0.4588169316297669,0.4608288840725273,0.4607621367670089,0.4624325712817878,0.466436060966382,0.4689145609666489,0.4692959857604571,0.4726558236000436,0.4716210962809382,0.4771581600504095,0.4755149630781189,0.4723729649728663,0.4770949720670391,0.4722399489470325,0.4613155607070414,0.4585657370517928,0.0,2.5679853887631854,75.99106164188161,291.66026605461866,456.3243849393509,OR_public_baseline,37 +100000,95802,43466,401.4634350013569,9866,101.553203482182,7581,78.36997139934448,3129,32.233147533454414,77.39792083527668,79.70125083228136,63.37134666233783,65.07122763542192,77.02970734084742,79.32959173942386,63.23858714833091,64.94012353844546,0.3682134944292556,371.6590928574988,0.1327595140069206,131.10409697645764,22.96536,15.742797167596684,23971.69161395378,16432.63936827695,116.02958,53.71642990997809,120276.04851673244,55232.364574829415,203.07897,93.20300261403293,206551.89870775145,93265.56310067436,5535.08442,2455.6238025359185,5728996.920732344,2514595.7417756603,1875.60269,799.4550388536375,1938664.5163984047,815360.5653886535,3088.31808,1260.902228613037,3184189.641134841,1283612.284318454,0.43105,100000,0,104388,1089.6223460888082,0,0.0,0,0.0,8711,90.13381766560197,0,0.0,19708,200.2463414124966,2465220,0,88540,0,0,5616,0,0,24,0.2400784952297446,0,0.0,1,0.0104381954447715,0,0.0,0.09866,0.2288829602134323,0.3171498074194202,0.03129,0.3003363767419509,0.699663623258049,26.05490755559549,4.710105626410435,0.3305632502308402,0.1832212109220419,0.2398100514444004,0.2464054874027173,11.184043099395732,5.55713958346208,33.22169547629928,15890.9045300485,85.40818421452617,15.93216473916642,28.47250351014581,20.896750788787788,20.106765176426165,0.5389790265136526,0.740100791936645,0.699122106943336,0.5765524625267666,0.1259625962596259,0.6934389140271493,0.8684931506849315,0.8663446054750402,0.7407407407407407,0.1457142857142857,0.4920006881128505,0.6943359375,0.6440318302387268,0.5271587743732591,0.1212534059945504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027132096865635,0.0055730628540161,0.0081647142350017,0.010824203161967,0.0135816525699414,0.0165577741141031,0.0191355383016445,0.0215557255802091,0.0240308968674009,0.0266006425078267,0.0289636801393371,0.0315366148921763,0.0338939516916153,0.036501157705171,0.0391667783263417,0.0415780453053048,0.0443706485418412,0.0467750795476923,0.0489605615667379,0.0511526252797002,0.0679629880764857,0.0845117563383817,0.1000020971395017,0.1149976344425169,0.1294297459681669,0.148235070248327,0.1650884875990117,0.1802565057740407,0.1950047004529527,0.2095096104341857,0.2261511120685012,0.2423599917785398,0.2575839947809068,0.2717142888385876,0.2850810620559185,0.2990819795577112,0.3124086777089956,0.3247891125857609,0.3367361985458422,0.3482661110284268,0.3586213279957422,0.36807082378257,0.3770967245522449,0.3852016056557426,0.3936303257688898,0.4020551236400823,0.4097495057681239,0.417099302692523,0.4240220856987324,0.4314548598735364,0.4347562617829248,0.4378624061703739,0.440498363246416,0.4426412253525205,0.4448219341379824,0.4465873320537428,0.4485792792363526,0.4505853256389118,0.4518328924313739,0.4531980718037269,0.4542674293481339,0.4552359308653789,0.4555647225571703,0.4563410269768285,0.4568437492374143,0.4569455834501733,0.4576118535735037,0.4579946670093488,0.4583542039355993,0.4574877465872726,0.4583333333333333,0.460617655097021,0.4616732653988447,0.4636042402826855,0.4627623230844314,0.4628038301006629,0.4683484055211804,0.4654919236417034,0.4604927782497875,0.4666931007137193,0.0,3.0203595252649995,78.26028428505634,292.9401710020221,444.6220001118558,OR_public_baseline,38 +100000,95543,43574,403.4413824142009,9608,99.13860774729702,7409,76.86591377704279,3085,31.84953371780245,77.19945181010942,79.66893610784719,63.224607941291474,65.0530308687912,76.83451489446533,79.30136155513814,63.09234810355248,64.9226137392733,0.364936915644094,367.57455270904416,0.1322598377389923,130.41712951789464,23.06612,15.816798179483564,24142.134954941757,16554.63841357668,113.49024,52.366718962048886,118072.9514459458,54106.701446562765,197.63649,90.74396822701696,202523.1466460128,91694.17707116732,5394.50869,2392.9927758583044,5600675.9469558215,2459675.0648782053,1841.3513,791.2158118464065,1910266.853667982,811185.1991474124,3057.0048,1252.356673177522,3158453.4293459486,1275765.897784776,0.43196,100000,0,104846,1097.3697706791706,0,0.0,0,0.0,8551,88.78724762672304,0,0.0,19123,195.82805647718823,2455098,0,88288,0,0,5780,0,0,24,0.2407293051296274,0,0.0,0,0.0,0,0.0,0.09608,0.2224280025928326,0.3210865945045795,0.03085,0.2998918068260057,0.7001081931739943,26.245914416727658,4.681451159942657,0.3316237009043056,0.1869348090160615,0.2472668376299095,0.2341746524497233,10.99557037110876,5.404155817471457,32.81776215827544,15938.36028013344,83.76572409727389,16.01780783781595,27.85023188506628,19.56313845605957,20.3345459183321,0.5394790120124173,0.7465703971119133,0.7016687016687017,0.5959654178674352,0.1118995633187772,0.6903493191237419,0.9070422535211268,0.8705281090289608,0.734375,0.140495867768595,0.4949300699300699,0.6912621359223301,0.6486631016042781,0.5566247224278312,0.1048332198774676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003010613171686,0.0057425782756031,0.0083780160857908,0.0111334797462176,0.013702813861628,0.0163815776060674,0.0190029086084604,0.0217555691804618,0.0242734343020875,0.0266348292153024,0.0290401059363355,0.0315671495994982,0.0339333896315214,0.0366710334939087,0.0392687740908762,0.0419526131105797,0.0445414666016779,0.0470573563493135,0.0492568250231753,0.0517162184733589,0.0690996956098785,0.0853964159510103,0.1006159732587718,0.114947736660204,0.1289477021942248,0.1475752242413961,0.1643899740414485,0.1802580603848493,0.1954423219087821,0.2098533080960165,0.2268377508478603,0.2427903140025832,0.2585160938352427,0.2730444705340195,0.2864965719774335,0.3000722342612658,0.3130080390532279,0.3252416222563454,0.3368972388272132,0.3476886651495299,0.358278776059804,0.3686922634488749,0.3779377011412353,0.3866270681031166,0.3949390243902439,0.4031463511238736,0.4114241848407435,0.4190487152924324,0.4262867264013336,0.4332483670543253,0.4364740487712307,0.4386028087864602,0.4408916240091884,0.4431778476589797,0.4458952986327656,0.448054658154669,0.4499824163176572,0.4519463710881757,0.4531590413943355,0.4540832941346745,0.4553159144893112,0.4559525241589478,0.4575949906287272,0.4589537817991679,0.4591372049750269,0.4600334937132831,0.4614825370052636,0.461965236354307,0.4631435537071561,0.4631906803656662,0.4647333610841311,0.4652781524847569,0.4664107485604606,0.4664596273291925,0.4653323118176594,0.4624756335282651,0.4668754894283476,0.4682474226804123,0.4584745762711864,0.4598655595096876,0.0,2.6001981801055134,75.20815801494192,292.77857190879644,436.9966231106413,OR_public_baseline,39 +100000,95671,43238,401.13514022012936,9790,100.8037963437196,7623,78.97900095117642,3110,32.16230623699972,77.33990302576841,79.73052920301257,63.32261558699434,65.08882796251586,76.96382595108868,79.34931976568788,63.18577685764908,64.95263240808826,0.3760770746797277,381.209437324685,0.1368387293452571,136.19555442760145,23.8106,16.350413024544025,24888.00158877821,17090.24994464783,116.02964,53.71988981311306,120585.9037743935,55456.71082471497,203.59663,94.16538351634148,207716.49716214943,94570.9395947984,5494.08423,2445.8424414233264,5699019.859727608,2512881.8085138923,1843.5479,799.6454415501668,1909983.5373310617,818873.7266291191,3063.91382,1267.2397495221574,3170665.6562594725,1296834.1327568586,0.42894,100000,0,108230,1131.2727994899185,0,0.0,0,0.0,8727,90.48719047569271,0,0.0,19710,200.96999090633523,2457398,0,88353,0,0,5911,0,0,32,0.3344796228742251,0,0.0,0,0.0,0,0.0,0.0979,0.2282370494707884,0.3176710929519918,0.0311,0.3117499032133178,0.6882500967866821,26.08594981305876,4.633582168620827,0.3433031614849797,0.1870654597927325,0.2331103240194149,0.2365210547028728,10.98384541165491,5.411127328082509,33.34115605543846,15762.855562803858,86.10177490586408,16.40903444298647,29.9303403820316,19.973059820733276,19.789340260112706,0.5454545454545454,0.7538569424964937,0.7046236148261368,0.574597892401553,0.1142374788970174,0.7030640668523677,0.9275,0.8606060606060606,0.7173333333333334,0.15,0.4969114619080302,0.6861598440545809,0.6520183955033214,0.5371148459383753,0.10515172900494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023194571052365,0.0051695301809335,0.0080770362553398,0.0107869824889286,0.0134122408305624,0.0158798021132352,0.0184286704448159,0.0207193598432269,0.0232151619234543,0.0255481176687342,0.0281203547080834,0.0305898293949783,0.0331009378084896,0.0355767051892136,0.0381765264418115,0.0405814783031255,0.0428904428904428,0.045150709955991,0.0473317382710912,0.0497336627367587,0.0670740624673561,0.083407489609397,0.0998153510428469,0.1144191722599785,0.1277033442346239,0.1454158820168849,0.1625183016105417,0.1775769574658321,0.1922263522173801,0.2074522839373793,0.2247819063004846,0.2405203012726171,0.255810918108746,0.2702507627869336,0.2841539681141548,0.2979888082442241,0.3105242007501339,0.3226688881133838,0.3334809163771768,0.3437714914492687,0.3539654972791478,0.3638321530988471,0.3736850833965125,0.3830956179600062,0.3914650455927052,0.3993780158211055,0.4071780471599955,0.4149055497488974,0.4219841579015712,0.4285808842997087,0.4311358628800065,0.4331352770485007,0.4359609747808725,0.4384388314502174,0.441205518810044,0.4431327826408581,0.4445506996907972,0.445709557302441,0.4471958837397394,0.4500350915078551,0.451740371707852,0.4531153300992194,0.4543819559053785,0.4562572224865747,0.4581440781440781,0.4585252236514742,0.4601418850441581,0.4620972128891875,0.4634137622877569,0.464555174500706,0.4661385955160274,0.4684572480641144,0.4678580611982514,0.4695814532441263,0.4668141592920354,0.4674058730352138,0.4705882352941176,0.4698795180722891,0.4615384615384615,0.468849840255591,0.0,2.6327126295065337,79.78431668091937,297.56397974868383,443.0756993108872,OR_public_baseline,40 +100000,95775,43490,402.7982250065257,9752,100.25580788305923,7537,78.01618376403027,3051,31.427825632993997,77.331780499572,79.67240825426532,63.32970022966426,65.06255001386099,76.9602963322723,79.29785558596532,63.195213801397216,64.9295903976608,0.3714841672996982,374.552668299998,0.1344864282670457,132.95961620018204,23.6203,16.189896726324996,24662.281388671363,16904.094728608714,116.07491,53.74556727646967,120529.6162881754,55452.947644059066,202.89108,93.90079449381622,207136.94596711043,94418.2754218433,5481.31168,2432.69748008831,5679587.637692509,2496670.0300710094,1865.56195,797.6291811829784,1933325.732184808,818343.3834993746,3019.54512,1239.5434675416666,3113997.8282432784,1261930.0293734004,0.43088,100000,0,107365,1121.012790394153,0,0.0,0,0.0,8704,90.16966849386584,0,0.0,19655,200.6577916992952,2458464,0,88438,0,0,5718,0,0,28,0.2714695901853302,0,0.0,0,0.0,0,0.0,0.09752,0.2263275157816561,0.3128589007383101,0.03051,0.3058186738836265,0.6941813261163735,26.099424399918725,4.739511609941983,0.3404537614435451,0.1829640440493565,0.2370969881915881,0.2394852063155101,11.4437076226181,5.640271319622015,32.40878316385993,15902.510806830076,84.8743926089867,15.858755895663224,28.89729680771344,20.368483749556272,19.74985615605377,0.5364203263898103,0.7273386511965192,0.6804364770070148,0.602770083102493,0.1152770005595971,0.710919540229885,0.9128065395095368,0.8643790849673203,0.7662650602409639,0.1589595375722543,0.4840434707607383,0.6600790513833992,0.6228249744114637,0.5539568345323741,0.1047883414295628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029475816662446,0.0056567049186975,0.0085745887748992,0.0112255678816693,0.0137299771167048,0.0163647287650587,0.0190554841867009,0.021448405406509,0.023808550223876,0.0264216614628653,0.0286836089269787,0.0312859372433054,0.0335520092131781,0.0358985980490116,0.0380213224897567,0.0404726460736881,0.0430009528149467,0.0455530778405849,0.0476556654751018,0.0503113221299015,0.0676496368645128,0.0844839128069955,0.1002348106838861,0.1151671815564382,0.1292885442130995,0.1469121190345352,0.1644141995526865,0.1802103606334216,0.1953356815028284,0.2095438130244221,0.2262596899224806,0.2418344494812346,0.2563904540213632,0.2710664785096212,0.2846778810163371,0.2981357510196843,0.3118972137881765,0.3252008732641624,0.3363670407734819,0.3471641483280446,0.3574817180412848,0.3681051929668581,0.3773448602558029,0.3868699835634845,0.3949404037946971,0.4025834496214974,0.410230352303523,0.4178830019537984,0.4253090190675487,0.4324034334763948,0.4351087265011555,0.4375077657973575,0.4402839446816934,0.443233503349463,0.4451253232098285,0.4468666111265389,0.4484917200300218,0.4505592841163311,0.451697578834663,0.453456919248386,0.4547109004739336,0.4563283420963195,0.4579365754123448,0.4586000272368242,0.4607759148207074,0.4623290399681317,0.463723496950334,0.4664234043915242,0.4699432082008786,0.4715443858937981,0.4709779768570362,0.4698374604559834,0.4730951916194937,0.4738536432160804,0.4790233504505377,0.4778252901649358,0.478494623655914,0.4782428512225445,0.4753959276018099,0.4706355591311343,0.0,2.6029606722434275,77.17493577951446,289.3325605896595,448.91684093106073,OR_public_baseline,41 +100000,95684,43645,404.50859077797753,9711,99.89130889176874,7489,77.60963170436018,3063,31.59357886375988,77.34192318165195,79.71819605576536,63.32298576779221,65.07522877852443,76.97185684087573,79.3440964546,63.18760617700017,64.94114546263091,0.3700663407762192,374.099601165355,0.1353795907920343,134.08331589351974,23.53912,16.12307347997254,24600.89461142929,16850.333890694932,115.43198,53.3268800551887,119982.17047782284,55075.71302035482,196.96915,90.78789077366102,202026.62932151664,91824.22423754504,5465.22787,2426.0145440400406,5665797.803185485,2489708.612888802,1844.42598,800.0265080091779,1903599.473266168,812235.4174958931,3030.19478,1256.210732030665,3127599.07612558,1278927.388496882,0.43217,100000,0,106996,1118.222482337695,0,0.0,0,0.0,8645,89.67016429079052,0,0.0,19002,194.73475189164333,2458519,0,88329,0,0,5820,0,0,39,0.4075916558672296,0,0.0,1,0.0104510680991597,0,0.0,0.09711,0.2247032417798551,0.3154155081865925,0.03063,0.303665431858062,0.696334568141938,26.08536255987252,4.669219192844573,0.3342235278408332,0.1821337962344772,0.2442248631325944,0.239417812792095,10.87296251329569,5.280334846543401,32.65999578189721,15885.444873531733,84.0903339349288,15.606528071230986,28.329018362403065,19.928685573521896,20.22610192777284,0.5271731873414341,0.7375366568914956,0.6719936076707951,0.5833798103736754,0.1170038272279934,0.6836555360281195,0.9078212290502792,0.8561872909698997,0.7272727272727273,0.1538461538461538,0.4809754410238672,0.6769383697813122,0.6141732283464567,0.5454545454545454,0.1074380165289256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027945688162571,0.0052908444066044,0.0080749059111151,0.0105633087533264,0.0132203837979111,0.0159434749852375,0.0185449503496931,0.0212185882184758,0.0238046545870996,0.0262837249782419,0.0284328603067836,0.031032747661248,0.0336436101825662,0.0364539328621179,0.0390594355787691,0.0412909497021839,0.0436818280694848,0.0458886051773888,0.0484504991680532,0.0506226228312405,0.0673324001921992,0.0839650695258837,0.0996095390041145,0.1141720683559222,0.1286867514377671,0.1461199779856907,0.1628598430548034,0.1798212440476824,0.194804084032715,0.2089238168856823,0.2263227142333326,0.2430581887912635,0.2579629972449391,0.2722843817739922,0.285733164473322,0.2998558918080035,0.3124225059481921,0.3244387875784233,0.3365121533099463,0.3476027789879164,0.3582035955889167,0.3675886549748708,0.3765263781861292,0.3852343834448301,0.3931241021645443,0.4015289991107598,0.4100990322702112,0.4175831185731418,0.4250448482957648,0.432069970845481,0.4353930302455931,0.4385702617772056,0.4412781635255774,0.443210037903542,0.4451940298507462,0.4463428149242704,0.447462268356365,0.4483209480147631,0.4490918812632595,0.451224125817435,0.4529715615598569,0.4540272416344981,0.4558115871367095,0.457564910054828,0.4588029111798067,0.4603815404100372,0.4611255411255411,0.4628007009718018,0.4651311580294305,0.4669025979248773,0.4708375564360085,0.4720275951277352,0.4722865226337449,0.4724025974025974,0.4717899761336515,0.4719827586206896,0.4779593094944513,0.4804663530374309,0.480405976881872,0.4754541940471589,0.0,2.5282707611059605,75.76397955149646,287.2005384054982,447.3653990934685,OR_public_baseline,42 +100000,95719,43697,405.0084100335357,9585,98.60111367649056,7446,77.0171021427303,3141,32.24020309447445,77.32392886815877,79.68691598282267,63.31606620966248,65.06470210041748,76.9462670105267,79.311316947244,63.17893327939688,64.9320955069766,0.3776618576320771,375.5990355786736,0.1371329302656008,132.6065934408831,22.63316,15.533931281217155,23645.42044944055,16228.681119962765,113.78693,52.35194957139896,118101.68305143178,53919.66444016548,196.77293,90.38395287765157,201412.99010645744,91113.87166486248,5444.08022,2413.208407038593,5635524.169705074,2469131.392956208,1860.13992,798.5861719475415,1923914.3325776493,814915.1955357791,3109.79784,1280.155413544117,3196650.800781454,1292649.8808643357,0.43331,100000,0,102878,1074.791838610934,0,0.0,0,0.0,8545,88.4568372005558,0,0.0,19105,195.38440643968283,2462575,0,88634,0,0,5600,0,0,20,0.208944932563023,0,0.0,0,0.0,0,0.0,0.09585,0.2212042186886986,0.3276995305164319,0.03141,0.3069355632070831,0.6930644367929168,25.92730125677365,4.680754868851923,0.3291700241740531,0.1847972065538544,0.2506043513295729,0.2354284179425194,11.102178692429607,5.513857646197146,33.51848320241111,15929.550088152157,84.1091878630129,15.903565733671368,27.809804845466697,19.799029294778112,20.596787989096715,0.5346494762288477,0.7376453488372093,0.7082823337413301,0.5755847119224187,0.1184351554126473,0.7099056603773585,0.91869918699187,0.879045996592845,0.7678571428571429,0.1379310344827586,0.4829565217391304,0.6713008937437934,0.6545064377682404,0.5202057310800882,0.113965744400527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025626221803559,0.0052824220056981,0.0083625956522621,0.0108516734743644,0.0135899418155185,0.0158146639511201,0.0184735844055216,0.0215582798289219,0.0240877628848061,0.0263642879082625,0.0290966505018608,0.0315304215692314,0.0338956913302285,0.0362156872843384,0.0388818376002228,0.0411399274366104,0.0431819358848205,0.0457404409017312,0.0480835222427885,0.0505094705257235,0.067852705651434,0.083949738964857,0.0999905619815644,0.1143394956569289,0.1290220520770715,0.1471748812508595,0.1637042775130787,0.1802615325637858,0.1962910341733343,0.2107796886391902,0.2272487484523873,0.2437650061646946,0.2593675923710937,0.2736329833770778,0.2869731674312684,0.3005782908293266,0.3140107405629305,0.3260071610331704,0.3375555227373419,0.3490408004038735,0.3600584442692147,0.370623138441333,0.3793897387816138,0.388330850194646,0.3964706169108148,0.4040746189316487,0.4118334275485208,0.4195683563551796,0.4266741245642333,0.4327845363970442,0.4356088310984695,0.438065837924638,0.440770998212918,0.4426938478340007,0.4456253274455505,0.4474974558238505,0.4489821943793537,0.4494723958850187,0.4509898516514757,0.4520533141210374,0.4531199757892148,0.4535913479799292,0.4546879966098103,0.4559386105892206,0.4579808372138381,0.4584700899947062,0.4593006426214323,0.4600089795394779,0.4591170136396267,0.4591898795766938,0.4609473242978902,0.4643883916463249,0.4670103092783505,0.4673268870867124,0.4659761881715226,0.4599290346262082,0.4641521197007481,0.4726570441146575,0.4823045267489712,0.4823529411764706,0.0,2.9658229021404625,75.00199150762614,293.38518532265806,440.22288247669695,OR_public_baseline,43 +100000,95783,43589,403.18219308227975,9909,102.08492112379024,7658,79.25205934247205,3138,32.312623325642335,77.4066300966336,79.74742540928361,63.35719594835807,65.0883759702612,77.02876681678646,79.36602393156471,63.21983036665357,64.95295047510682,0.3778632798471477,381.4014777188959,0.1373655817045005,135.4254951543794,23.35718,15.997730918924104,24385.51726297986,16702.056647760153,116.57899,53.27572217313776,120994.8842696512,54905.23728743115,196.98909,89.73239647902706,201317.62421306496,90372.35540018578,5568.98122,2451.219565942295,5765165.321612395,2510220.2139878413,1869.2775,799.2239709733831,1932429.40814132,815317.7503960113,3103.23696,1272.385890926133,3196863.3264775584,1291470.3098898125,0.43212,100000,0,106169,1108.4326028627208,0,0.0,0,0.0,8772,90.8303143564098,0,0.0,19063,194.81536389547205,2463184,0,88611,0,0,5812,0,0,32,0.3132079805393441,0,0.0,0,0.0,0,0.0,0.09909,0.2293113024159955,0.316681804420224,0.03138,0.3018742270002854,0.6981257729997146,26.170935447655868,4.727590711642366,0.3473491773308958,0.1723687646905197,0.2420997649516845,0.2381822930268999,11.020689202846688,5.351485888404132,33.11123248800572,15850.322322487567,85.45646236326758,15.106687606149722,29.944164616609054,20.107065326324605,20.298544814184183,0.5288587098459128,0.7371212121212121,0.693984962406015,0.5575657894736842,0.1154261057173678,0.6851190476190476,0.9271137026239068,0.8473154362416108,0.7371273712737128,0.1505376344086021,0.4849447975911676,0.6704196519959058,0.6497093023255814,0.5120274914089347,0.1066126855600539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029687721644679,0.0056072681551783,0.0079966714362549,0.010332950631458,0.0133135342398877,0.0160587360746216,0.0186578577108949,0.0213545654060123,0.0240095670305409,0.0265463179008555,0.0294238219197737,0.0315424396650796,0.0339578815379713,0.03651468514191,0.0389753633646015,0.0414795080697623,0.043946949163063,0.0460581558078059,0.0485906932770926,0.0509120439780109,0.0676475191735795,0.0837072130016001,0.0990461215932914,0.1135599276915962,0.1278093291327299,0.1451200439597599,0.1628860952703991,0.1787229517784039,0.1942740068080202,0.208460994579307,0.225330894221457,0.2408374698547621,0.256,0.2701424389391357,0.2838476416545782,0.2981226893360784,0.3104879654529832,0.3222348455023003,0.3334052115489377,0.3449686110983824,0.355102324289286,0.3658476658476658,0.3758188904552616,0.3848857855840292,0.3937553995351837,0.4015310532164465,0.4100334951639005,0.417583819009603,0.4248983885000454,0.4319683308840079,0.4351170839868044,0.4382630793878791,0.4409845578972697,0.4436568573337594,0.4466626847842317,0.4482074165256193,0.4488300375151014,0.4503263234227701,0.4516217466545585,0.4528082240848198,0.4539901589276625,0.4563238042224961,0.4558742881248682,0.4573271099686577,0.459635763998351,0.4601404486994029,0.4611575007198387,0.4619319987289482,0.462279236700899,0.4613652810163222,0.4620428518655338,0.4611783696529459,0.4618922890180796,0.4626233045622688,0.4651604328839946,0.4680368024853626,0.4732394366197183,0.4770906102321758,0.4684404189074441,0.4660615627466456,0.0,2.599940243980237,74.53965358319601,295.06205990019413,460.94016625828704,OR_public_baseline,44 +100000,95657,43814,405.6681685605863,9782,100.50492906948786,7596,78.48876715765705,3122,32.07292722958069,77.29491858535671,79.69789197643587,63.29396199958445,65.07428670874339,76.91578967973797,79.3198780811063,63.15584562802185,64.94061056661695,0.3791289056187423,378.0138953295733,0.138116371562603,133.67614212643275,23.46344,16.05793835792928,24528.72241446,16786.99766658925,115.48842,53.2695491215212,119829.45315031832,54795.44441530506,203.04678,94.12402721967308,206259.9077955612,93784.9167706877,5562.84455,2474.3655173713614,5752469.29132212,2524765.4144859845,1900.13336,815.320069353606,1961095.1211097983,827121.9538633599,3106.75978,1288.944143174624,3194748.61222911,1302386.0317185533,0.43435,100000,0,106652,1114.94192793,0,0.0,0,0.0,8712,90.1345432116834,0,0.0,19647,199.4208474026992,2458770,0,88436,0,0,5899,0,0,19,0.198626342034561,0,0.0,0,0.0,0,0.0,0.09782,0.2252100840336134,0.3191576364751584,0.03122,0.3067389620449264,0.6932610379550735,26.082970351977256,4.722889055160111,0.3413638757240653,0.1756187467087941,0.2509215376513954,0.2320958399157451,10.972832004603148,5.275511572316372,33.51359459790643,15990.768406949062,85.8836546543157,15.401240798066205,29.505674439325286,19.80959150515312,21.167147911771085,0.5372564507635598,0.7346326836581709,0.7015040493636714,0.5961429381735678,0.1211962224554039,0.6972579742585339,0.907514450867052,0.8666666666666667,0.7670886075949367,0.1476683937823834,0.488035806507144,0.6740890688259109,0.6451112260734609,0.5467836257309941,0.1144736842105263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027370320435492,0.0054187342080428,0.0082567409739501,0.010970464135021,0.0135488665166892,0.0163281114633127,0.0190824115270011,0.021832410453403,0.0244097065924622,0.0269517204642538,0.0295221878013253,0.0321337949313253,0.0345338547026137,0.0368129772959157,0.0395032928012551,0.0418019732351542,0.0441149039358328,0.0465975870589945,0.0489591244369076,0.0512440974430071,0.0689871302022396,0.0849352933785651,0.1010893977876199,0.1159949489634852,0.1301214480917561,0.148042328042328,0.1651026517483705,0.1815635914473123,0.1972899613156938,0.2122607090737402,0.2283608782779202,0.2443735122267907,0.2600200073940369,0.2740958586609525,0.2874665845260228,0.301309318091187,0.3144757992498661,0.3271140637315617,0.3382573519385482,0.349075221442012,0.3594992465515242,0.3688368004687958,0.3794505768113536,0.3887113439219549,0.3970391292702525,0.4050150848212078,0.4126790803962683,0.4200135278277627,0.4269286678434222,0.4340508858046334,0.4366608131838443,0.4393081934628975,0.4418509244719829,0.444239537652833,0.4469964136282128,0.4491977784634372,0.4506430226056394,0.4517631845085133,0.4538660683465654,0.4555228303489149,0.457383773928897,0.4578847117794486,0.4578282506060993,0.4593802535326457,0.4595224085515347,0.4605788157684737,0.4623803009575923,0.4619909356819131,0.462801620594457,0.4642915177120572,0.4650825576500304,0.4644449276938132,0.4643225141679546,0.4651489162638391,0.4671434093544646,0.4672611776203274,0.4719224151415611,0.4674161982094524,0.4716928251121076,0.464148033924441,0.0,3.604864800976438,78.51464363988471,295.77377320928304,443.4932779785624,OR_public_baseline,45 +100000,95711,43686,405.16764008316704,9861,101.62886188630355,7654,79.29078162384678,3225,33.22502115744272,77.3593554540744,79.72849004028963,63.33143217950936,65.08299363610045,76.96802489135717,79.33577235387511,63.18879760349088,64.94316775496199,0.3913305627172292,392.7176864145139,0.1426345760184801,139.8258811384636,23.4905,16.099782363643,24543.15595908516,16821.24558686358,116.32888,53.40836193081597,120845.2633448611,55115.30040843901,199.53249,91.47306999174528,204074.51599084743,92213.38933335136,5601.7689,2472.500687221169,5804706.5958980685,2536146.5208304,1855.47585,793.0513772517364,1921319.7647083409,811341.2583289156,3178.33878,1309.8957109281455,3276958.9493370666,1330987.5701790045,0.43302,100000,0,106775,1115.5979981402347,0,0.0,0,0.0,8772,90.92998714881256,0,0.0,19311,197.4276728902634,2460350,0,88387,0,0,5800,0,0,28,0.2925473561032692,0,0.0,0,0.0,0,0.0,0.09861,0.2277262020230012,0.3270459385457864,0.03225,0.3085505434259882,0.6914494565740117,26.05772510404692,4.656327736398112,0.3373399529657695,0.1799059315390645,0.2448392997125686,0.2379148157825973,11.068952715214046,5.53867194664764,34.25693167744966,15982.0263090198,85.98640901167889,15.832700021820052,29.166340528750997,20.329987760261865,20.65738070084598,0.5296576953227071,0.7371096586782862,0.6901626646010844,0.57166392092257,0.1152614727854856,0.6764367816091954,0.925824175824176,0.8540630182421227,0.7,0.1357702349869451,0.486472776462631,0.6692991115498519,0.64022233451238,0.5366876310272537,0.1099932930918846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023903091196369,0.0048759718998043,0.0079150050229839,0.0103897950478357,0.0130766805975005,0.0156270679141173,0.0182170345073653,0.0210277034889655,0.0237369916787634,0.0261980569006644,0.0288468440752704,0.0312657278731293,0.0340240339108605,0.036441376468164,0.0387381716491068,0.0410192794748539,0.0434012858873347,0.0457124482662047,0.0476665731008743,0.05009375,0.0678334238335909,0.0856446109727251,0.1023298261809103,0.1179544880962396,0.1325585809799,0.1504078372459613,0.1673140601120733,0.1833611960005537,0.1978516460025652,0.213101908503467,0.2302750711390876,0.2454599599328604,0.2603343564291778,0.2743168082683717,0.287447652633899,0.3011062904317528,0.3138830524386428,0.3259961493858158,0.3375733966314211,0.3485993418110516,0.3586188523640744,0.3685442711991384,0.3779090414072303,0.3866203093154298,0.3954777534646244,0.4039645240474164,0.411253511235955,0.4190555095277548,0.4258235339926797,0.4329374735505713,0.4361762404554407,0.4391149514134275,0.4415049057669231,0.4440840910407135,0.4468075593179921,0.4485646668305876,0.4502160376159613,0.4516900247320692,0.4534655848174379,0.4553820162116501,0.457493095229087,0.4594988519516821,0.4606791683479516,0.4613933830212688,0.463058398260997,0.4639109697933227,0.4660901361037755,0.4658788015029384,0.4670422333058237,0.468195446074062,0.468707705231717,0.4696729813834143,0.4706342480933446,0.4689552705661557,0.4687862388867414,0.4651077822433321,0.4674546887312845,0.4716628607016815,0.4784446322907861,0.4784313725490196,0.0,2.5199488732784747,77.33841952219925,297.0666178238146,453.5837414704844,OR_public_baseline,46 +100000,95874,43649,404.1345933203997,9941,102.05060808978452,7755,80.17815048918372,3198,32.866053361703905,77.4394230829848,79.71967860818206,63.39129033748679,65.07724122220442,77.05214120500887,79.33231443752234,63.25012127748708,64.93989074787919,0.387281877975937,387.3641706597226,0.1411690599997115,137.35047432523118,23.53032,16.101988546020646,24542.96263846298,16794.94810482576,117.38961,53.83011180538017,121677.12831424578,55382.30574022173,201.67305,92.9850484789692,206220.4351544736,93709.4840598954,5641.23847,2497.8376841330205,5832603.855059766,2553924.770149384,1885.70998,813.6878539484319,1948643.5634269975,830487.9533600119,3166.91802,1306.2443717255708,3256750.526733004,1320850.3821888787,0.43302,100000,0,106956,1115.5892108392266,0,0.0,0,0.0,8834,91.3490623109498,0,0.0,19547,199.78304858460064,2463043,0,88637,0,0,5857,0,0,23,0.2398981997204664,0,0.0,0,0.0,0,0.0,0.09941,0.2295736917463396,0.3216980183080173,0.03198,0.3036789297658863,0.6963210702341137,26.039882012480984,4.724019437857696,0.3401676337846551,0.1806576402321083,0.2444874274661508,0.2346872985170857,11.16830042098104,5.487724602743172,33.97291704307822,15909.28183268016,86.8989644136578,16.008056815711683,29.732877925943328,20.14781807501434,21.010211596988444,0.5303675048355899,0.7516059957173448,0.690674753601213,0.5736263736263736,0.1023206751054852,0.70703125,0.9217877094972068,0.8890649762282092,0.7862407862407862,0.1414141414141414,0.4772765386550394,0.6931927133269415,0.6283009466865969,0.5123849964614295,0.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026928528042113,0.0053609793668166,0.0081153186784203,0.0106610890556305,0.0133960787502413,0.0160660141226267,0.0185485103132161,0.0207772337821297,0.0234256875485268,0.0260745923607275,0.0287098988698423,0.0312942480146108,0.0336744969891279,0.0361936918389195,0.0387636858491927,0.0414373483401311,0.0437004696972832,0.0459641487928712,0.0480269100196218,0.0503620323748491,0.0677167488455003,0.0845612055092273,0.0999518253984877,0.1146403183636611,0.1289466757909143,0.1471004392633891,0.1637711864406779,0.1800695027471651,0.195400460593654,0.2093573385853742,0.2273621729733217,0.2430124727091935,0.2574654437972702,0.2723953607852997,0.2863413346241006,0.3006112550661086,0.3135490202638651,0.3255434904790809,0.3366701432976601,0.3480006864595847,0.3584550110405901,0.3681706604324956,0.3772412568791052,0.386028441929063,0.3950027357286157,0.4033434087964962,0.4109915170348465,0.4190829099336567,0.4256124432922877,0.43226036534626,0.435688454687753,0.4384394737567917,0.4413463847338164,0.4439413070927853,0.4462206698907397,0.4473274919539876,0.4491642899252721,0.4503236887303474,0.4514009528887666,0.4523385661110212,0.453997353997354,0.4545817369093231,0.4550227585476871,0.4573111557471394,0.4581968207741779,0.4586642742169565,0.4597115467656965,0.4613112254621688,0.4624136097820308,0.465252671326424,0.4683246435657269,0.4691364691904736,0.4701243749198615,0.4682076426181025,0.4708846042050189,0.4735747492047957,0.4716108452950558,0.4681750898710086,0.4712643678160919,0.4696435566000783,0.0,2.7686474217944776,79.33846826576968,296.87022252228707,456.7927222208576,OR_public_baseline,47 +100000,95708,43682,405.1907886488068,9783,100.60809963639404,7574,78.24842228444854,3179,32.6200526601747,77.34647984393533,79.69658563200639,63.33814763576003,65.07428323202453,76.96280911272423,79.31662690989425,63.19811987544239,64.94030119801124,0.3836707312110974,379.95872211213566,0.1400277603176434,133.982034013286,23.46366,16.08944861426523,24515.881639988296,16810.975690919495,115.33171,53.371794587470106,119624.493250303,54886.00178404116,205.7333,94.65215305386928,208613.41789610064,94126.10507269058,5543.82157,2463.322396133647,5731246.217662056,2513247.87269678,1910.62849,815.0601428604008,1974909.0985079615,830453.8231772869,3148.09486,1298.368320240818,3234258.640865967,1309420.0717572656,0.43317,100000,0,106653,1114.3582563631044,0,0.0,0,0.0,8695,89.91933798637523,0,0.0,19813,200.87140050988424,2460019,0,88483,0,0,5801,0,0,29,0.2925565261002215,0,0.0,0,0.0,0,0.0,0.09783,0.2258466652815292,0.3249514463865889,0.03179,0.3060556464811784,0.6939443535188216,25.76699515899116,4.698959789102532,0.3321890678637444,0.1810139952468973,0.2483496171111698,0.2384473197781885,11.159889995896386,5.526208374328743,33.777523956926224,15860.230091721853,85.51175967844942,15.790135088844334,28.571179569497733,20.336004699537494,20.814440320569883,0.5404013731185635,0.7403355215171408,0.705087440381558,0.5897009966777409,0.1270600744284954,0.6925270964061608,0.9212598425196852,0.8496621621621622,0.7450980392156863,0.1505376344086021,0.4945885586668957,0.6707070707070707,0.6606029106029107,0.5443490701001431,0.1212723658051689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025217743568969,0.0053725836044967,0.00796622725566,0.0105950712094431,0.0133829601155246,0.0158006189933213,0.0183690112130479,0.0207291432770621,0.0229684145967494,0.0254527956097511,0.0280143915864571,0.0307528073741044,0.0331071355130577,0.035453833793416,0.0380325433102551,0.0406131773169874,0.0428061092415221,0.0452597611463315,0.0477175619340686,0.0502192731174283,0.0674414233805287,0.0847464723862161,0.0999034647751358,0.1139179269293061,0.1275294465006906,0.1456714145227294,0.1625059678531643,0.1777974112237077,0.1930017511638833,0.2076843087016648,0.2243961794824857,0.2413274633032981,0.2562589005207144,0.2701018757378339,0.283314090934081,0.2969513072944928,0.3096361749841015,0.3221632083539631,0.3338329132320549,0.3457217534849596,0.3559459428161152,0.3662959494263638,0.3759273744340942,0.3849164425662696,0.3938859422899129,0.4023365696591371,0.4105707874183559,0.4187992753808078,0.4268113587627526,0.4329872331408592,0.4362173854265243,0.4390344999101924,0.4427841688953036,0.4450499149919351,0.447377862823656,0.4487869580640684,0.4501402703391992,0.4516017001008814,0.4531360477348371,0.4553059531965528,0.4566797940018176,0.4578209665486973,0.4588912978786719,0.4614546445110324,0.4623506122149717,0.4633348405457882,0.4640311836402245,0.4660938151271281,0.4670536386112007,0.4649044689119171,0.4674399105645612,0.4697588328161576,0.4717417861505819,0.4715402658326817,0.4734701781564678,0.4695406534021125,0.4659885568976478,0.470700232705733,0.4699357851722125,0.4654320987654321,0.0,3.4113729787733176,77.09406659807732,292.4006562984207,450.19701961755,OR_public_baseline,48 +100000,95733,43711,403.8628268204277,9737,100.27890069255116,7567,78.38467404134416,3191,32.893568570921204,77.41222784566315,79.7705368085366,63.350809200748486,65.09077645883534,77.02872739424828,79.38367077038849,63.21183164956432,64.95389734982015,0.383500451414875,386.8660381481135,0.138977551184162,136.87910901518308,23.73184,16.25101458754928,24789.612777203263,16975.352895604738,114.82778,52.8116589883304,119296.35548870296,54516.05923592742,198.76637,91.07289114633284,203732.28667230732,92087.19051090765,5531.32123,2450.8047599990327,5733602.822433226,2515781.9351728577,1895.70607,812.3714318155814,1967009.4533755344,835388.5512995329,3153.68976,1297.5212150170407,3253628.1533013694,1319960.0753271177,0.43346,100000,0,107872,1126.8005807819666,0,0.0,0,0.0,8635,89.50936458692405,0,0.0,19291,197.6852287090136,2460961,0,88327,0,0,5762,0,0,19,0.1984686576206741,0,0.0,0,0.0,0,0.0,0.09737,0.2246343376551469,0.3277190099620006,0.03191,0.3073714839961203,0.6926285160038798,26.167543675104465,4.700132344610804,0.3340821990220695,0.1764239460816704,0.245275538522532,0.244218316373728,11.216731148727517,5.559193175508747,33.73803294561747,15994.00760935667,84.75251555741849,15.154432532938277,28.366493496498197,20.757437019130755,20.474152508851287,0.5348222545262323,0.7595505617977528,0.6863132911392406,0.5854978354978355,0.1163793103448275,0.6862973760932944,0.9142857142857144,0.8552188552188552,0.714975845410628,0.1484593837535014,0.4904306220095694,0.7045685279187818,0.6344364012409514,0.5481171548117155,0.1087391594396264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029370062791168,0.0054730654234024,0.0080550257679665,0.0107847916158908,0.0134303927449445,0.0161042398330533,0.019324459302444,0.0217442323194187,0.0242000592737938,0.0267451381780962,0.0293104861851274,0.0319557362240289,0.0344292293774159,0.0370423768086092,0.0396644413030243,0.0420904655585876,0.0445470736859545,0.0471763692767396,0.0495097886320867,0.0517433562863958,0.0690227604927959,0.085314553597589,0.1005087857330186,0.1151414414509189,0.1300227925037987,0.1486161824628248,0.1651116135401076,0.1815839074829352,0.1970160100891349,0.2102670330142102,0.2279226240538267,0.2445440859516305,0.2595576946111044,0.273976803530945,0.2873345310657246,0.301204150713057,0.3143205376211828,0.3266463050411928,0.3385830350548264,0.349434360586521,0.3602614773003859,0.3703551848554425,0.3792833783591639,0.3878226657710392,0.3966089738132016,0.4041311402588749,0.4120778635133781,0.4199921080434312,0.4270674160213411,0.4342032350845713,0.4374705557724146,0.43953155533537,0.4421878963835725,0.4446694340386757,0.4470347162414991,0.4483307810107197,0.4495982758347464,0.4509388050376508,0.452937547131007,0.453846429595641,0.4562023887896172,0.4580925716328111,0.4597972972972973,0.4620392898981706,0.4625,0.4629917116168925,0.4644122476020393,0.4655753337571519,0.4654982402502755,0.4679518072289156,0.4679652880354505,0.4680816591056383,0.4690582959641255,0.4698496357153929,0.4683085147002673,0.4696125907990315,0.4698457223001402,0.4708557255064076,0.4694742792538157,0.4701670644391408,0.0,2.553146391796778,76.26548890412428,289.4093593714682,451.3633590196207,OR_public_baseline,49 +100000,95722,43632,403.0525897912706,10000,103.07975178119972,7741,80.21144564467939,3171,32.71975094544619,77.32373385663094,79.69510497591304,63.321321634088775,65.0759082676194,76.93855331776683,79.3076642149896,63.18088574690624,64.93812443669634,0.3851805388641054,387.4407609234396,0.1404358871825337,137.78383092305546,22.49764,15.442822763221136,23503.10273500345,16132.992168175691,117.90858,54.207979108895415,122527.01573306033,55979.512660512126,205.77272,93.91757292680649,211303.200936044,95227.4063929656,5642.13097,2500.0255726241194,5849808.581099434,2567276.45956428,1902.31178,817.3478265334916,1968946.720712062,835493.6446516905,3129.28446,1292.4319157722814,3230764.756273375,1314847.9433367194,0.4328,100000,0,102262,1068.322851591066,0,0.0,0,0.0,8852,91.7970790413907,0,0.0,19918,204.4148680554105,2464416,0,88635,0,0,5598,0,0,23,0.2402791416811182,0,0.0,0,0.0,0,0.0,0.1,0.2310536044362292,0.3171,0.03171,0.3094607379375591,0.6905392620624409,26.154064479516524,4.6563017920851655,0.33535718899367,0.1767213538302545,0.2370494768117814,0.250871980364294,11.02398605440995,5.426971064143311,33.84248347926241,16044.815414845636,87.39355177134202,15.859988193579005,29.44252524373196,21.78373604320824,20.3073022908228,0.538302544890841,0.756578947368421,0.6953004622496148,0.5834191555097837,0.1057220708446866,0.6831460674157304,0.9243243243243244,0.8618421052631579,0.6899766899766899,0.1447721179624665,0.4950511659117598,0.6943887775551102,0.6443661971830986,0.5532055518836748,0.0957592339261285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029078014184397,0.0057399576095003,0.008485586682907,0.0113407719041521,0.0141828097020999,0.016858682476138,0.0195610492391792,0.0221318925985313,0.0246847933901199,0.0274568841915529,0.0300174341093221,0.0327106163152543,0.0354409283568577,0.0379118104718624,0.0405858733910673,0.0427784267711488,0.0450214387803716,0.0470834803179016,0.0493584544679435,0.0516312559263929,0.0683818692506082,0.0856386263488973,0.100831960720543,0.1166891095775122,0.1309322927652394,0.1492491539763113,0.1665605636193871,0.1822187220637691,0.1978891820580474,0.2116778926594877,0.2282166167632423,0.2446897148731266,0.2599473535362325,0.2744990812844518,0.2886856614612565,0.3021004121061727,0.3149375278893351,0.3277015254218235,0.3391840068982731,0.3504597451076937,0.3612592087154637,0.3712865497076023,0.3806485974671559,0.3894606784703229,0.3985281595912906,0.4068472517161341,0.4143005909438791,0.421437598131199,0.4276727924930467,0.4345005626530747,0.4374239597696488,0.4397687829297637,0.4417402144810098,0.4439432520916697,0.4468091475095785,0.4484524948313635,0.4496221662468513,0.4513504126490581,0.4530220394680247,0.454899065386901,0.4571082375660273,0.4587126593169131,0.4598234230401021,0.4606095064816921,0.4624348209258488,0.4636078473071402,0.4645655529987474,0.4667117595902986,0.4669789227166276,0.468885436258075,0.4687397247404763,0.4693081277133593,0.4690127077223851,0.4680615870509277,0.4717328170377541,0.4745554874310239,0.4805276381909548,0.4831976622834481,0.4785189372526851,0.4778266080703156,0.0,2.610695733807177,79.27687815394832,299.0375271665648,461.8411343206788,OR_public_baseline,50 +100000,95764,43516,402.5312225888643,9807,100.93563343218746,7572,78.31753059604863,3079,31.66116703562925,77.38153749659537,79.72266530317273,63.350937847410606,65.0825729544678,76.99969861625026,79.34024970211935,63.21143809995236,64.94627711138243,0.3818388803451142,382.4156010533813,0.1394997474582453,136.295843085378,23.18096,15.909903292026035,24206.340587277053,16613.657838045652,115.29453,53.36206982135693,119644.03115993484,54972.06656087562,199.05372,91.84882642284234,202831.2100580594,92038.11402574276,5530.03051,2447.0239430788924,5727855.258761121,2508498.734679934,1835.6169,788.8626206251355,1898156.6663882043,805123.8136527218,3053.17852,1269.5891174342153,3144016.415354413,1289155.1161899115,0.43133,100000,0,105368,1100.2882085125934,0,0.0,0,0.0,8677,89.81454408754855,0,0.0,19236,195.8878075268368,2462398,0,88550,0,0,5639,0,0,32,0.3341547972098074,0,0.0,0,0.0,0,0.0,0.09807,0.2273665175155913,0.3139594167431426,0.03079,0.306889554546333,0.6931104454536671,26.108920878368764,4.700631829985981,0.3392762810353935,0.1805335446381405,0.2436608557844691,0.2365293185419968,10.917081994082864,5.236736143013579,33.108094823024835,15872.723979748846,85.40229136225976,15.902992642063458,29.19535863810851,19.83668765223905,20.46725242984872,0.5278658214474379,0.7673738112655449,0.6827559361619308,0.559463986599665,0.1040650406504065,0.6736425339366516,0.9214659685863874,0.8309636650868878,0.6829896907216495,0.1315068493150684,0.483459682977257,0.7076142131979696,0.6342975206611571,0.5253029223093372,0.0972972972972973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028054042010168,0.0053824477466701,0.0081368450955724,0.0106943725054081,0.0136344225959289,0.0162464244632877,0.0188261915440127,0.0215862582798354,0.0240450448609209,0.0265618924836801,0.0291130809038274,0.0317285978238554,0.0339615657484808,0.0362953047775947,0.0386289557288443,0.0410927764747212,0.0434431658249855,0.0459544912662623,0.0484728859339289,0.0507996335013119,0.0683141658491786,0.085399910050309,0.1013283289475063,0.1161659152768582,0.1299623770932352,0.1471331184273106,0.1641106082606437,0.1797409943435546,0.1948603566588049,0.2096111998456376,0.2264648574165975,0.2426097584718722,0.2582233623931995,0.2724221986598603,0.2864672160910181,0.2989599370867162,0.3113640167364017,0.3231423365053654,0.3352248223891776,0.3456746295320766,0.3560622721222293,0.3661896013013001,0.3759371779838681,0.38534993641882,0.3940768669423498,0.4023394121856723,0.409935865317166,0.4175856397965298,0.4247313223612481,0.4305086988159026,0.4332914589833988,0.4360203320533716,0.4386809143018894,0.4408991180274036,0.4436103717438765,0.4452660443047724,0.4467949636279706,0.4483424365934556,0.449434344474773,0.450793023548219,0.4520405658061226,0.4531960737371319,0.4553255503527766,0.456932916042999,0.4584673881251828,0.4604354612555887,0.4614115808663946,0.4618402168713124,0.4646658834419168,0.4655429654421549,0.4668581221918569,0.4679824323591606,0.4664130995358432,0.4674413163846214,0.4679845708775313,0.471045283476994,0.4675548589341692,0.4705149501661129,0.4709401709401709,0.468984591070723,0.0,2.9425830076332025,78.34739623195294,293.5676190555943,443.6367460371332,OR_public_baseline,51 +100000,95849,43730,404.2504355809658,9757,100.3557679266346,7564,78.24807770555769,3150,32.4155703241557,77.37299817448195,79.67362217264892,63.35320242165369,65.05679536063339,76.98943917453644,79.2874616768421,63.214202711628026,64.91944393407688,0.3835589999455067,386.1604958068199,0.138999710025665,137.35142655650634,23.46652,16.070461630361347,24482.80107252032,16766.436405555974,115.96841,53.61486000750761,120292.98166908366,55245.6597883246,200.69732,92.2379216652432,205231.8960030882,93014.00906196024,5556.06696,2473.6449674286755,5751490.114659517,2536027.920911908,1896.12281,821.1185940878268,1956536.5731515195,835316.6684557883,3120.79286,1288.3237546460598,3214358.543125124,1310100.491994021,0.43349,100000,0,106666,1112.854594205469,0,0.0,0,0.0,8727,90.3400139803232,0,0.0,19456,198.89618045050025,2460141,0,88521,0,0,5754,0,0,21,0.2086615405481538,0,0.0,0,0.0,0,0.0,0.09757,0.2250801633255669,0.3228451368248437,0.0315,0.3044787719809579,0.695521228019042,26.14069823426903,4.715072963533762,0.3334214701216287,0.1816499206768905,0.2492067689053411,0.2357218402961396,11.14484154776362,5.451124065878271,33.537123278124824,15891.39148266953,85.14322663261021,15.723731086859493,28.534006104305693,19.956624608486717,20.9288648329583,0.5330512956107879,0.7379912663755459,0.6911181601903251,0.5838474481211441,0.1241379310344827,0.6838854576080854,0.901685393258427,0.8704,0.7343358395989975,0.1496259351620947,0.4865986512190904,0.6807465618860511,0.6320506062203479,0.5404624277456648,0.1172506738544474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029572614948349,0.0054222789787872,0.0079628333485489,0.0106004914404077,0.0131549519142793,0.0159405537459283,0.0184888852649496,0.0209717417261121,0.0241240842350488,0.0267665295598256,0.0294452128477024,0.03195953502211,0.0345511535892297,0.0370553359683794,0.0394519813615933,0.0420401503573051,0.0439901508411098,0.0464954820525574,0.0485986354998494,0.0509696616588289,0.0681619119119119,0.084577686287213,0.1005646284870261,0.1151923723118279,0.1292058510694314,0.146859056290866,0.1638550386775458,0.179443286692468,0.1937553373185311,0.2087816693102413,0.2257995070020775,0.2420880772432882,0.2566809454434756,0.270854068006081,0.2839640710653193,0.2985739454176777,0.3114856568813484,0.3236741080977631,0.3347789559728434,0.3459048142927539,0.3564755322474212,0.3665643812513176,0.3768073003081298,0.3859287076919385,0.3953397869338911,0.4036094754903776,0.4107322091739436,0.4178580994043899,0.4248613834387295,0.4315151033596864,0.4344998242150526,0.4375051860047019,0.4403186031350095,0.4428802047731933,0.4456222713952514,0.4469249626123556,0.4486267504545599,0.4507559466701955,0.4521083351986087,0.4538737407414082,0.454693352502743,0.4560562480025567,0.458114406779661,0.460126167273385,0.4621932533988375,0.4619450317124736,0.4632293237443452,0.4634661545847335,0.4653351945309424,0.4671355808877031,0.4667221682623375,0.4656480277416558,0.4665203073545554,0.4686473807662236,0.4700193423597679,0.471329858164626,0.4691591733711941,0.466301600673968,0.4666475808760378,0.4685669660288949,0.0,2.4289650649749124,79.29967894460752,286.42596099292484,448.2081362925084,OR_public_baseline,52 +100000,95786,43726,406.5207859186102,9770,100.65145219551916,7587,78.57098114547011,3085,31.80005428768296,77.39816222968327,79.72810503509032,63.35848721039546,65.07979955283288,77.02419463226764,79.34995169935519,63.22261928716317,64.94511151474771,0.3739675974156284,378.153335735135,0.1358679232322899,134.68803808517293,23.06634,15.799745775346052,24081.118326268974,16494.838259605844,115.96653,53.35774573171923,120384.36723529534,55022.48817561724,200.05684,91.61522440567146,204615.64320464368,92364.701299875,5493.10657,2421.7811516555294,5693086.828972919,2486985.4945238456,1858.73876,789.6816807921057,1922922.901050258,807096.294867195,3044.00532,1255.382618060724,3140810.160148665,1279909.9661830196,0.43357,100000,0,104847,1094.5962875576806,0,0.0,0,0.0,8706,90.2428329818554,0,0.0,19378,198.0456434134425,2463532,0,88529,0,0,5557,0,0,34,0.34451798801495,0,0.0,0,0.0,0,0.0,0.0977,0.2253384689900131,0.3157625383828045,0.03085,0.3116782675947409,0.6883217324052591,25.958936528364205,4.729522726123945,0.3387373138262818,0.1836035323579807,0.2372479240806643,0.2404112297350731,11.047918609620709,5.3095007938455785,32.96000425634654,15891.91217732558,85.16436481459654,15.950161841021169,28.961643759334056,20.376836762767184,19.87572245147412,0.534994068801898,0.7372577171572147,0.6817120622568094,0.5822368421052632,0.1211111111111111,0.6999412800939518,0.8960674157303371,0.8656716417910447,0.75,0.1551724137931034,0.4872535690006798,0.682738669238187,0.6253177427554651,0.5357142857142857,0.1129476584022038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026432521115634,0.0052801199935138,0.0077202451000284,0.0102567227232106,0.0127077720734,0.015174954709223,0.0179752381922861,0.0204974901032526,0.0227832323583199,0.0252915899324739,0.027784323166921,0.0302305774183948,0.0327115770001541,0.0351585014409221,0.0372798878304259,0.0397723751884824,0.0417214089898101,0.0441928225547225,0.0464734430045621,0.0490055191086118,0.0669790058015777,0.0826012382864792,0.0978821555881736,0.1129539124494193,0.1273812159355661,0.145567947565939,0.1626466407857612,0.1788511471502149,0.1933613149210214,0.2074142386840101,0.2251025837093838,0.2410712354251844,0.2567401627853906,0.2720209801671857,0.2857221385459382,0.3001317143900738,0.3130653995025042,0.3255256674204327,0.3369238277924701,0.3480393280315357,0.3586628250078106,0.3684795581662025,0.3777345879452964,0.3863933658958081,0.3942426969571668,0.4028622540250447,0.4110526315789474,0.4184742436214411,0.4251051565664434,0.4324689071182853,0.435885309696249,0.4396360071252019,0.4427120178839243,0.4456616366802089,0.4482192924894112,0.4501392072110873,0.4523142547908576,0.4534678311403147,0.4557193030783004,0.457926269768446,0.4602904791584037,0.4621269625664176,0.4630660766836745,0.4638018245867581,0.4645715117124981,0.4655222424386256,0.4654914591361362,0.4668871013893746,0.4676973264307495,0.4684803980578628,0.4679916801479085,0.4688961772138287,0.4693267150311824,0.4698543087414755,0.4673965235762988,0.4704592520404434,0.468151378289986,0.4667495338719701,0.4674773755656108,0.4691022153128643,0.0,2.489709912608981,75.73456637046978,293.7515458403504,453.80501047704337,OR_public_baseline,53 +100000,95869,43598,402.2989704701207,9720,99.98018128905068,7516,77.72063962281864,3053,31.386579603417164,77.3584022892406,79.64122155157594,63.35300198276878,65.04175126749583,76.99028299240935,79.27030355711412,63.220145741228414,64.9107498786593,0.368119296831253,370.91799446182,0.1328562415403666,131.00138883652335,23.66166,16.22456593116091,24681.242111631494,16923.683287779062,114.66021,52.912242686265145,118880.46188027412,54482.77191407543,202.47825,92.97863678259732,206940.85679416705,93704.52414468316,5464.24716,2425.4903617421046,5651876.383398178,2482930.0429033684,1856.42587,794.4688885803677,1916235.800936695,808965.5733547721,3009.11216,1237.099279665145,3094946.061813516,1254371.5937828023,0.43209,100000,0,107553,1121.8746414377954,0,0.0,0,0.0,8645,89.44497178441415,0,0.0,19606,200.26285869259087,2458215,0,88486,0,0,5894,0,0,23,0.239910711491723,0,0.0,1,0.0104309004996401,0,0.0,0.0972,0.2249531347635909,0.3140946502057613,0.03053,0.308293445345316,0.691706554654684,26.23527273858937,4.613074857949131,0.3400745077168707,0.1833422032996274,0.2380255455029271,0.2385577434805747,11.217518743027926,5.705753290690568,32.49684700682256,15919.842993390765,84.91081735791778,15.89979708193352,29.029775708644237,20.21769089905088,19.76355366828915,0.5325971261309207,0.7438316400580551,0.6874021909233177,0.569994422755159,0.111235326998323,0.69327251995439,0.927536231884058,0.8773584905660378,0.6982968369829684,0.1408839779005525,0.4836862200624783,0.6824782187802517,0.6244791666666667,0.5318379160636758,0.1037140854940434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029665178345432,0.0055425520057553,0.0083679037640352,0.0107321629826681,0.013224232567595,0.0158458767135834,0.0183381555890623,0.0215615278698556,0.0240445973678568,0.0265797033296189,0.0292362340946082,0.03178118143979,0.03443707248937,0.0370838991071061,0.0394999896947587,0.0418976821021114,0.0444389275074478,0.046794353584976,0.0492045029701325,0.0514471795085207,0.0684812976940077,0.0846820114720356,0.1002963754228324,0.1155191061734099,0.1294977669166596,0.147452488353176,0.1644641324275919,0.1807973287678516,0.1957217881388497,0.2096608207195232,0.2265879895336441,0.2426717144402379,0.2571941077349567,0.2716708027680904,0.2843412182595977,0.298787979412253,0.311552406983879,0.3243605030484375,0.3359137343927355,0.3466839425767096,0.3570650914987259,0.3683119620586685,0.3777877900428024,0.3868066147065535,0.3949323007987532,0.4031608343218663,0.410013056141408,0.4173955234362032,0.4246949553815334,0.4320912345842726,0.4351714061527639,0.4381265815783287,0.441473845195276,0.4436466176342336,0.4459738472126635,0.4475479151878028,0.4489551571654347,0.4503304676241117,0.4515144197599006,0.4529144751062757,0.454560935460067,0.4556815228040709,0.4570628302247119,0.4593265657572736,0.4618200453913171,0.4624382773098149,0.4637714682241369,0.4655034927115563,0.4669781042721632,0.4668066548215151,0.4675276409922884,0.4689476244527323,0.4726547419894479,0.4760596546310832,0.4776685803249976,0.4749168001972143,0.4793797953964194,0.4780784560520243,0.4784838985465944,0.4860070949940875,0.0,2.5101384130908,78.17023047140424,292.18257379116017,441.4221058529972,OR_public_baseline,54 +100000,95717,43548,403.6064648912941,9817,101.16280284588944,7668,79.3484960874244,3190,32.8677246466145,77.38965647392791,79.75767727514706,63.34469261111818,65.09429068726425,77.00212268610075,79.36725880891899,63.20492791169646,64.95678105706256,0.3875337878271665,390.41846622806986,0.1397646994217254,137.50963020169138,23.14378,15.844719666677213,24179.38297272167,16553.715292661924,116.60022,53.69738810655458,121040.25408234692,55322.74110821964,199.82386,91.64381224468602,203901.4699583146,91958.41649502722,5601.41378,2472.987468601443,5798337.59938151,2529925.184242552,1891.9278,807.310996647074,1956579.2701401005,823456.104285442,3156.47364,1293.2605237765129,3254251.324216179,1314076.20294727,0.4322,100000,0,105199,1099.0628623964394,0,0.0,0,0.0,8799,91.1332365201584,0,0.0,19385,197.666036336283,2463052,0,88543,0,0,5417,0,0,27,0.2820815529111861,0,0.0,0,0.0,0,0.0,0.09817,0.2271402128644146,0.3249465213405317,0.0319,0.30961093990755,0.6903890600924499,26.198399574286288,4.676595843558413,0.3308555033907147,0.1825769431403234,0.2463484611371935,0.2402190923317683,10.958740808301206,5.319048403217852,33.91992440410471,15908.151165773965,86.16712543747053,15.911334721899491,28.83003181543767,20.63867043898891,20.78708846114447,0.534037558685446,0.7442857142857143,0.706346078044935,0.5765472312703583,0.1053467443091582,0.681897050318103,0.8781163434903048,0.875,0.7180156657963447,0.1458885941644562,0.4909917494527698,0.697786333012512,0.6531881804043546,0.5394105551747772,0.0952380952380952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025828539016287,0.0051498839248603,0.0079562406762804,0.0106264095739277,0.0133968079587414,0.015987128833856,0.0186478522853559,0.0210696093343269,0.0237856733992967,0.0263069001873215,0.0286598741261608,0.0311373925898549,0.0335851966075559,0.0362666556830117,0.0387919919961218,0.041040109963931,0.0433359911360553,0.0458153070434809,0.047986779470763,0.0503886469252089,0.0679167667233944,0.0845178036884302,0.1001657713614235,0.1147780711813409,0.1291642930987193,0.1475519075976011,0.1643360353095955,0.1804240011919712,0.1954803707975565,0.2093861267212903,0.2261826561709184,0.2426429220582507,0.2583223673478265,0.2726974439741444,0.2856183757250244,0.2997784424504265,0.312442118652578,0.3253988778573597,0.3365555895934738,0.3479679824109382,0.3581282840674984,0.3677645819926285,0.37701600975021,0.386014120128975,0.3946280991735537,0.4034341116826407,0.4107751704773365,0.4185204543426437,0.4255915317559153,0.4318121693121693,0.4350948235135317,0.4380885317427443,0.4404479131319986,0.4427914132690828,0.4453463041986213,0.4475538461538461,0.4491201832818913,0.4503957783641161,0.4522184885475243,0.4529831736806228,0.4541792168674698,0.4556579182999383,0.456980056980057,0.457895449009968,0.4593768200349447,0.4617068410781159,0.4636122484285797,0.4645719577226426,0.4656185087028149,0.4669943534955518,0.4679945761443868,0.4694369826215668,0.4716785482825664,0.4725872929465743,0.4759445241511238,0.475919651500484,0.4716804493680761,0.4709038382170862,0.4732996065205171,0.4694357366771159,0.0,2.9045138051944583,76.51517426020168,298.5777095750039,455.8712219491999,OR_public_baseline,55 +100000,95740,43774,405.6402757468143,9674,99.44641738040526,7508,77.61646124921663,3080,31.606434092333405,77.34687979821054,79.70653814771998,63.33382307926016,65.0813940535436,76.97245323713445,79.33184691534495,63.19707490041502,64.9479133021641,0.3744265610760919,374.691232375028,0.1367481788451385,133.48075137950843,24.04534,16.495212000424537,25115.24963442657,17229.17484899158,116.35308,53.670054754405214,120728.38938792564,55257.497874525936,198.5712,91.12583055992437,202281.0946312931,91150.889759078,5512.67013,2430.0509495968186,5703690.39064132,2484064.203199189,1850.08924,794.1537488193983,1909533.267181951,806668.8921120595,3050.90542,1259.564745218962,3135157.551702528,1273965.528209946,0.43373,100000,0,109297,1141.6022561102989,0,0.0,0,0.0,8750,90.53687069145604,0,0.0,19245,195.94735742636308,2459413,0,88446,0,0,6067,0,0,19,0.1984541466471694,0,0.0,1,0.0104449550866931,0,0.0,0.09674,0.2230419846448251,0.3183791606367583,0.0308,0.3127269159061917,0.6872730840938083,25.995457674919024,4.754006877062102,0.3301811401172083,0.1798082045817794,0.245338305807139,0.2446723494938732,11.06468150282166,5.343528159567705,32.90542646134183,15864.52166005391,84.34249669939744,15.48342841311062,28.13398414772478,20.3821806026345,20.342903535927547,0.5306339904102291,0.7414814814814815,0.6958450988301734,0.5596080566140447,0.1248642779587405,0.6875732708089097,0.9113573407202216,0.8578512396694215,0.7112299465240641,0.1612021857923497,0.4844881075491209,0.679474216380182,0.6435432230522946,0.5208475734791524,0.1158536585365853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025232053828381,0.0053238956719263,0.0081827411167512,0.0107117086903056,0.0132457068446325,0.0159059896947109,0.0184932205117749,0.0214271131073907,0.0238596634703849,0.0264162920945662,0.0289636646981627,0.0317582552981764,0.0340086384204031,0.036374312380246,0.0385885606951926,0.0412561894621499,0.0437096790895629,0.045831301803998,0.0482318454917777,0.0505883578048526,0.0669798027242837,0.0827327217381298,0.0978872870249017,0.113040370810254,0.1271474041440947,0.1451081098218248,0.1618842684361716,0.1773619012175022,0.1927262252757804,0.2077468560533024,0.2253851450210861,0.2412130906575591,0.2565272662081554,0.2715048771696031,0.2850989010989011,0.2986804525427856,0.3112358171655529,0.3234490128803645,0.3356463867531317,0.3468068276913553,0.3570526705973659,0.3668865018098328,0.3762399706081041,0.3860716943984249,0.3945765185140147,0.4028606658446362,0.4103322884012539,0.4185655084475613,0.4257470727211361,0.4326804819022177,0.4352029380789068,0.4381302317871647,0.4404246896824723,0.4439948367634048,0.4462838291710826,0.4475848684615858,0.4490176394665137,0.4506236146491547,0.4521550462349112,0.4536191967741355,0.4537695859511013,0.4545908981844357,0.4563415513111313,0.4579007027884833,0.4587158203125,0.4593913343415851,0.4606386066763425,0.4619488366113896,0.4654604084557506,0.467432328233432,0.4673887669825856,0.4685664563845986,0.471207910553868,0.4698682466671864,0.4695618828491995,0.4666666666666667,0.4647270452056937,0.4628116488581605,0.4732142857142857,0.4683544303797468,0.0,3.085586758480068,75.18868007583487,286.02210798467706,452.5323121673391,OR_public_baseline,56 +100000,95735,43669,403.72904371442,9771,100.46482477672744,7610,78.71729252624432,3159,32.391497362511096,77.36211040614715,79.7235705759186,63.32787542470121,65.07532633863009,76.973793497153,79.33605503256415,63.18741823133787,64.93919351318543,0.388316908994156,387.5155433544535,0.1404571933633391,136.13282544466188,22.61952,15.490337949648458,23627.220974565204,16180.433435680216,115.59558,53.0962241490158,119975.68287460176,54703.13351239614,199.81811,91.64004467623052,204287.9197785554,92151.49564195095,5523.64139,2443.149687780848,5717872.773802685,2501006.9946897947,1890.69934,815.8483858839129,1958023.356139343,835808.7989989847,3119.1804,1285.113584258647,3203129.701780958,1296229.8205157262,0.43289,100000,0,102816,1073.964589752964,0,0.0,0,0.0,8699,90.05066067791299,0,0.0,19382,198.09891889068783,2463893,0,88623,0,0,5774,0,0,25,0.2506920144147908,0,0.0,1,0.0104455006006162,0,0.0,0.09771,0.2257155397445078,0.3233036536690206,0.03159,0.306856754921928,0.693143245078072,26.080377681070924,4.651877457600837,0.340473061760841,0.1825229960578186,0.2421813403416557,0.2348226018396846,10.968158540371034,5.34909189883435,33.62528033056414,15936.035315984069,85.45541839743505,15.916991711179776,29.359031815197465,19.82311639055669,20.35627848050111,0.5327201051248357,0.7458603311735061,0.6866074874565805,0.5685506435366536,0.1209983722192078,0.6904761904761905,0.9022988505747126,0.8663522012578616,0.7052341597796143,0.1813333333333333,0.4865828804347826,0.6935638808837656,0.6281329923273657,0.5337078651685393,0.1055858310626703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029685014639879,0.0059017989332143,0.0086184143741752,0.0112175741995793,0.014017598291033,0.0167637593188577,0.0199253563926335,0.0225945438209589,0.0252246909540802,0.0277507552096666,0.0298530422208776,0.0321202222838536,0.0344852419213794,0.0370461969682917,0.0393650400462389,0.0418002109137528,0.0443008481158159,0.0464727793398976,0.0489817981475898,0.0512796475110152,0.0681656854148398,0.0847535649644811,0.1005558468799161,0.1161212962670789,0.1303430524494704,0.1478453108802809,0.1639346001633934,0.1805066067568862,0.1952126522761273,0.2096525096525096,0.2271307307824888,0.2432321264274503,0.2577068303245954,0.2722448354341736,0.2861578095584107,0.2998027176201981,0.3131200285995174,0.3254643701452212,0.3367541549359731,0.3475300859598854,0.3577337504344803,0.367399756417463,0.3765584261673382,0.3859067656171194,0.3946427268082622,0.4034903539757429,0.4117683959601029,0.4196762300833025,0.4267199958444796,0.4342162741749732,0.4365844751328906,0.4387522296428423,0.4414777711746894,0.4439990123026421,0.4460897110241162,0.4477667149594648,0.4488751415041694,0.4510011408541525,0.4520496103762063,0.4529811565017261,0.4539375507659759,0.455101268595782,0.4567942998498848,0.4578087208119532,0.4580028225217772,0.4588791464187619,0.4575537075537075,0.4583771720070141,0.4590438218646541,0.4588168923275306,0.4607416998057893,0.4627920781393341,0.4639546858908342,0.4681610176064531,0.4682623264719961,0.4713189623675557,0.4706807105800974,0.4685690653432589,0.4696287964004499,0.4658360128617363,0.0,2.897989065752228,76.16343887648205,294.313191918686,453.3066151354431,OR_public_baseline,57 +100000,95755,43762,405.1172262545037,9859,101.5926061302282,7545,78.15779854837868,3119,32.18630880893948,77.32840490063373,79.68902591425491,63.31625382636724,65.06479977516857,76.95717968809393,79.31328504739952,63.18270364460299,64.93202286419259,0.3712252125397981,375.740866855395,0.1335501817642495,132.7769109759771,23.47202,16.0866711692709,24512.57897759908,16799.823684685813,114.34768,52.65811229256344,118758.03874471308,54344.0504146262,202.87661,93.21031479509362,207703.37841365987,94144.1772406039,5501.30591,2438.904852585644,5703126.604354864,2506200.114919492,1881.45188,807.5596390158662,1946097.7912380556,824979.4601678198,3082.21542,1256.8308381602435,3182822.578455433,1283331.6340530484,0.434,100000,0,106691,1114.2081353454128,0,0.0,0,0.0,8633,89.45746958383374,0,0.0,19656,201.29497154195604,2458986,0,88446,0,0,5954,0,0,24,0.2193096966215863,0,0.0,0,0.0,0,0.0,0.09859,0.2271658986175115,0.3163606856679176,0.03119,0.3053449764897802,0.6946550235102198,25.96726933389753,4.640373631762154,0.3347912524850894,0.180649436713055,0.2412193505632869,0.2433399602385685,11.089898407228056,5.500736401689072,33.18178667955033,15944.616635668746,85.32449914294972,15.801058222204215,28.682949638391367,20.70231424727493,20.1381770350792,0.5374420145791915,0.7476155539251651,0.6931908155186065,0.579520697167756,0.1214285714285714,0.7220630372492837,0.943627450980392,0.8656957928802589,0.7365728900255755,0.1585365853658536,0.4818965517241379,0.6638743455497382,0.6373165618448637,0.5370242214532872,0.1132707774798927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027563004772858,0.0054260735511876,0.0081224871055517,0.0104778552409601,0.0130007527822424,0.0158185299869621,0.0186714798498939,0.0212357577490096,0.0236868470015743,0.0261326181751182,0.0285787504484649,0.0311726715472364,0.0337313217947531,0.0361222408767394,0.0387488906775638,0.0409732702127219,0.0436713315667439,0.0463563109917346,0.0487368935166422,0.0509185969005165,0.0674787074148296,0.0836697554751396,0.0999779807278942,0.1147935586949209,0.1284272196581737,0.1463723997970573,0.1633332626354747,0.1800979140059599,0.1954072096128171,0.209990134259855,0.2267963507502073,0.2431964507926202,0.2591294885745375,0.2732403609515996,0.2872886207503963,0.3007345527869797,0.3133763508082522,0.3258945661719999,0.3377216397650988,0.3483201467721591,0.3593509306338966,0.369185740209565,0.3787022222222222,0.3882696326903211,0.3969405264631074,0.4048697971329439,0.4126120921353395,0.4196348780799183,0.4267940717628705,0.4336701585241494,0.436488076720185,0.4384754689854431,0.4412618814896661,0.4432664798059747,0.4459570648515222,0.4479996295610298,0.4492216811686756,0.4513545777099844,0.4526660914581535,0.4542007475218027,0.4558589607635206,0.4567467135493667,0.4580724318835674,0.4602678267962748,0.4610879273738926,0.4612861413115361,0.4631399119759092,0.4646780786918753,0.466075435409766,0.4667608476286579,0.4689814814814815,0.4710378983634797,0.4721460021696126,0.4757199104454566,0.4784688995215311,0.4773082942097026,0.4749257928448679,0.4745229607884252,0.4792442026910964,0.4732142857142857,0.0,2.437773407209786,77.74993633438551,301.0454457633,437.0661456797307,OR_public_baseline,58 +100000,95714,43755,405.3638966086466,9859,101.64657207931964,7613,78.7972501410452,3126,32.17920053492697,77.31464774318667,79.68205019744022,63.30648041847581,65.05650534557044,76.93238033416195,79.29681848313099,63.16742333141959,64.91937522682619,0.3822674090247204,385.2317143092279,0.1390570870562157,137.13011874425263,23.33034,16.021185253172142,24375.054850910004,16738.601723020813,117.18039,53.96830453837408,121711.29615312284,55668.621662843565,203.60343,93.56520516788056,208022.347827904,94070.050684745,5537.5094,2458.4819997158534,5733448.178949787,2516544.277447244,1826.03144,784.245933407146,1888310.4561506156,799900.5505149089,3088.5928,1280.3219046736715,3182082.788306831,1301262.8216248965,0.43357,100000,0,106047,1107.9570386777275,0,0.0,0,0.0,8809,91.27191424452012,0,0.0,19712,201.23492905948973,2457146,0,88346,0,0,5817,0,0,23,0.2402992247738053,0,0.0,1,0.0104477923814697,0,0.0,0.09859,0.227391194040178,0.3170706968252358,0.03126,0.3148006134969325,0.6851993865030674,25.970740164428356,4.648398660529892,0.3406016025220018,0.1856035728359385,0.2430053855247602,0.2307894391172993,11.061452424562429,5.482049535311276,33.468281017359054,15947.915944795888,85.91491434651184,16.55099664950303,29.162873280879648,19.64171097040553,20.55933344572363,0.5373702876658347,0.7622080679405521,0.6999614346317007,0.578827546955037,0.0983783783783783,0.6966420034149118,0.8932038834951457,0.8883071553228621,0.7769230769230769,0.1151832460732984,0.4895833333333333,0.7082917082917083,0.6465346534653466,0.5223116313094367,0.0940054495912806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026743655979334,0.0053127312913789,0.0082015469254349,0.0107001321003963,0.0133272292588636,0.0156281837075675,0.0187102763693494,0.0215535725225133,0.024390243902439,0.026913312313173,0.0293746731875365,0.0317175098315039,0.033924456879526,0.0364451313755796,0.0388938779302015,0.0413629831798116,0.0438447518846822,0.0461559215100291,0.0486113277391313,0.0507068960128356,0.0679127075284535,0.0843172968220072,0.1006893078593686,0.1150970184571699,0.1296044375547048,0.1477853357170815,0.164986202504776,0.1814358570318239,0.1963657741435519,0.2104105414511664,0.2276378929206879,0.2434201259088298,0.2580458893513171,0.2722818939061815,0.286001036715157,0.2995601075292706,0.3118606889450948,0.3248504683444306,0.336877333576177,0.3478070931769845,0.3585575963034342,0.3681344474697211,0.3780978731994632,0.3878900847814323,0.3971489491318916,0.4052687533995945,0.4130614805520702,0.4201206832765637,0.4269213798115607,0.4336962129128692,0.4369486808867035,0.4396000497175765,0.4420386126579416,0.4444057466260339,0.4463596950216774,0.4477531382043611,0.4493974942143484,0.4511431411530815,0.4531452127567829,0.4546191978368634,0.4566238587718301,0.4581400927554773,0.4603446815718157,0.4607020954361536,0.4620122203558996,0.4615526753425019,0.4625854280088034,0.4632432777671329,0.462893620056346,0.461071789686552,0.4606370611485701,0.4635179153094462,0.4649838187702265,0.4626303819308289,0.4666666666666667,0.4713919726729291,0.47102596580114,0.476831091180867,0.4716926632004621,0.4667207792207792,0.0,2.8581846085807183,78.11292944317289,292.84166426513457,453.4411709429024,OR_public_baseline,59 +100000,95792,43493,402.4761984299315,9807,100.7077835309838,7610,78.61825622181392,3152,32.351344579923165,77.3504688262772,79.68433615395148,63.33176974345843,65.06072408634975,76.96621452977075,79.29933339105804,63.19223804226745,64.92469549554323,0.384254296506441,385.0027628934356,0.1395317011909824,136.02859080651797,23.26676,15.928797064480852,24288.83414063805,16628.525413897667,116.13857,53.34878566836096,120403.457491231,54855.592715774364,201.55245,92.58859463355412,205272.18348087525,92695.37910389715,5557.84028,2454.122666353332,5746101.386337063,2506302.28592501,1854.17705,797.5365080763136,1913742.828211124,810724.289089661,3123.98742,1287.2387502903832,3209980.45765826,1301530.5629776337,0.43128,100000,0,105758,1104.0379154835475,0,0.0,0,0.0,8704,89.99707700016702,0,0.0,19468,198.158510105228,2460788,0,88583,0,0,5769,0,0,25,0.2609821279438784,0,0.0,0,0.0,0,0.0,0.09807,0.2273928770172509,0.321403079433058,0.03152,0.3067886374578719,0.6932113625421281,26.1240789305962,4.764887028854804,0.3283837056504599,0.1817345597897503,0.2448094612352168,0.2450722733245729,11.167763247653388,5.39419820369414,33.59964702085456,15875.269369630683,85.45544339930726,15.908041073007992,28.280592285695175,20.81383558727129,20.452974453332796,0.5327201051248357,0.7223427331887202,0.7086834733893558,0.5833780160857909,0.1052066559312936,0.7015706806282722,0.9130434782608696,0.8718381112984823,0.7506234413965087,0.1456582633053221,0.4834493294856561,0.6532019704433497,0.657922350472193,0.537568306010929,0.095617529880478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002613611037948,0.0054551169605467,0.0083020399878209,0.0109019233309287,0.0137721992798584,0.0164490436128822,0.018968945999694,0.0213013642676251,0.0236391149646231,0.0262883115287758,0.0291828594280323,0.0315041485254251,0.0340295560423287,0.0364168160003295,0.0390152843381943,0.0411857699341813,0.0435930350524855,0.0457016015268442,0.0481287868552602,0.0503664529024735,0.0679053560623448,0.0837759839391024,0.0990420692980065,0.1137369045992833,0.1279833092736794,0.1457606696683366,0.1634940666192986,0.178855647289131,0.1940674618004762,0.2083726313984395,0.2256568113571052,0.2421765176582538,0.2579376290340106,0.2715653904182975,0.2853762943888724,0.2985380667900646,0.3115899955337204,0.3235145086646623,0.3355379789990454,0.3466631507744517,0.3568482995088499,0.3671127659325348,0.3769223478116632,0.3861326742414244,0.3946051878811485,0.4027309236947791,0.4107730159925686,0.4181904080903008,0.4250068228780849,0.4319657575998515,0.4348614664122034,0.4378520517611238,0.4402562067792767,0.4429663875319842,0.4444992747446653,0.4456696070569366,0.4471562884096605,0.4490756079782652,0.4507923916604873,0.451789291321531,0.4534958549418935,0.4553100527409301,0.4569259801115281,0.4597192934720994,0.461249022673964,0.4607000795544948,0.4619906750456112,0.4628841910000959,0.4642908105022831,0.4662214126695001,0.4659833974864351,0.4647841609866926,0.4629605854410065,0.4645815591855694,0.4677496875901182,0.4692028985507246,0.4716006884681583,0.4757181235792519,0.4760302775441548,0.4822695035460992,0.0,3.135142714836566,75.77485537819065,292.6083643585526,456.30932723515554,OR_public_baseline,60 +100000,95702,43646,404.1817307893252,9628,99.08883826879271,7492,77.5114417671522,3131,32.25637917702869,77.30949638025908,79.669242375957,63.31695901961641,65.05945145362807,76.93132625867214,79.29163586378954,63.17926484341817,64.92599243059402,0.3781701215869333,377.60651216746055,0.1376941761982451,133.45902303404955,23.5389,16.169046132613282,24596.03770036154,16895.20191073675,114.64874,52.87129286764431,119003.89751520344,54452.01026900619,202.1322,93.14316306787975,206958.88278196903,94084.65857411672,5469.70458,2426.091618712944,5662805.239179955,2482502.8826074107,1853.20355,797.522278667985,1914469.2900879811,811377.1171636803,3090.05912,1270.7895717961878,3185012.100060605,1287888.4902983585,0.43251,100000,0,106995,1118.0017136527972,0,0.0,0,0.0,8646,89.56970596225784,0,0.0,19608,200.58097009466888,2456831,0,88366,0,0,6072,0,0,23,0.2298802532862427,0,0.0,0,0.0,0,0.0,0.09628,0.222607569767173,0.3251973410884919,0.03131,0.3062426383981154,0.6937573616018846,26.08759354864669,4.6897992098488,0.3302189001601708,0.1816604378003203,0.2399893219434063,0.2481313400961025,11.03264732967498,5.492707902117977,33.2838537791996,15923.083753150877,84.34397036935539,15.71973393286282,28.05380988216305,20.670528301310224,19.899898253019288,0.5405766150560598,0.7685525349008082,0.6936135812449474,0.5766541151156536,0.1201334816462736,0.6988155668358714,0.9329608938547486,0.8688783570300158,0.7297297297297297,0.1546666666666666,0.4915194964154572,0.7098703888334995,0.6333514394350896,0.5337465564738292,0.1110330288123682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025116213123221,0.0053320898548374,0.0081568054541027,0.0109185829202892,0.0134397397448279,0.0160208454202163,0.0188554247566631,0.0212928843386038,0.0240689260455418,0.0267523615560172,0.0293770948861714,0.0317787908657795,0.0340469726883843,0.0364565096496467,0.0391699841174893,0.0416386836803223,0.044049762984123,0.0462974486621033,0.0484975730425834,0.0508469279329958,0.0680382225471254,0.0844306738962045,0.1001552469265304,0.1148478825546055,0.1290747830122019,0.1467178608449154,0.1643286147838451,0.1800140536166769,0.1958033739676705,0.2107757973532376,0.2276410499547433,0.2442473659703949,0.2589988353487967,0.2738955295766014,0.2871145374449339,0.3011965357020083,0.3140679651792998,0.326683572837419,0.3377969762419006,0.3489388551107032,0.3593514591011288,0.369019166783823,0.3771137199098778,0.385947205901789,0.395103064541658,0.4031616156622336,0.4105691056910569,0.4175707757894468,0.4250487456128948,0.4320719191704898,0.4353928402246735,0.4383430872037521,0.4402455100854749,0.4428972193554951,0.4463080721179023,0.4476913814662159,0.4486990986383686,0.4507418151678408,0.4515738917107218,0.4525569876534283,0.4538880558771613,0.4556327005658787,0.4558325704187869,0.4551637852593266,0.4561240005886104,0.4569926728257407,0.4581657046236371,0.4588159794641425,0.4613813124977599,0.4632537434237151,0.4644966286910021,0.4627295447136803,0.4628077865154054,0.4649800890138205,0.4630256162397293,0.4633256294854641,0.4659933722581663,0.4665672913117547,0.4623963397197598,0.4629482071713147,0.0,3.060023256873333,78.31990974909111,273.81159677499744,455.9131837935982,OR_public_baseline,61 +100000,95722,43671,404.588286914189,9898,101.70075844633418,7643,79.13541296671612,3143,32.39589645013686,77.40440741590693,79.7613207474247,63.3594678928421,65.09908924914939,77.03057528889502,79.38603080907096,63.22233463055852,64.96508316733826,0.3738321270119087,375.28993835374536,0.1371332622835765,134.0060818111226,23.87924,16.355404527203497,24946.44909216272,17086.35896366927,116.73997,53.88034440197874,121240.16422556988,55571.22124692206,202.74357,93.3398898930052,207247.6755604772,94149.08784833484,5574.16333,2483.7828845791287,5772918.440901778,2544422.958754651,1923.39893,833.6193329591446,1993002.9042435384,854518.9642497484,3122.8017,1290.6507109631266,3219816.531204948,1310391.61344908,0.43283,100000,0,108542,1133.9295041892146,0,0.0,0,0.0,8800,91.1807108083826,0,0.0,19620,200.55995486930905,2460652,0,88380,0,0,6181,0,0,31,0.3029606569022795,0,0.0,1,0.0104469192035268,0,0.0,0.09898,0.2286810063997412,0.3175388967468175,0.03143,0.3086893903024484,0.6913106096975516,26.077900220839087,4.686456698710462,0.3342928169566924,0.1822582755462514,0.2458458720397749,0.2376030354572811,11.188548792977247,5.431685370038006,33.38527104225414,15894.708123080389,85.95920523848348,16.01607496402423,28.82920306916104,20.227050519916656,20.88687668538156,0.5326442496401936,0.7458722182340273,0.6923679060665362,0.5787444933920705,0.1128259712613092,0.6918378678511938,0.9375,0.8700475435816165,0.7051597051597052,0.1645569620253164,0.483567271482369,0.6770731707317074,0.6340956340956341,0.5422285308729595,0.0990566037735849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029665779055757,0.0058778819356473,0.0085925294702457,0.0112425735032752,0.0139904222545321,0.0163070032573289,0.0189350318471337,0.0215911757803332,0.0241437796305378,0.0267996930161166,0.0292302961976017,0.03176607034722,0.034111587453351,0.0365445425237158,0.039148110696081,0.0413505075774805,0.043797056721797,0.0462990819025883,0.0486296600392862,0.0506223634185719,0.0668455619015797,0.0828048142333856,0.0982584976919848,0.1125107779016214,0.1265286328750949,0.1454799272388849,0.1625335582932756,0.1783930568127363,0.1938445097515362,0.2089031912040761,0.2263648899039083,0.2423530685139084,0.2577030202802681,0.2721345905620337,0.2857048516333538,0.2998183187840652,0.3121093052330773,0.3243595945505068,0.3358941479522939,0.3474859695338449,0.3580920877621124,0.3682992672580023,0.377458861358048,0.3864425032906545,0.3946567015687749,0.4029722109358647,0.4107987684297479,0.4187330627616127,0.4266176242034917,0.4335915334978424,0.4366312897317099,0.4392847795241965,0.4422379359500924,0.4450913093220953,0.447212460539639,0.4484855931682742,0.4492836585094372,0.4502934581904511,0.4504052754499244,0.4511713135958609,0.4537657970795474,0.4551480424062132,0.4550107872583442,0.4564991647478441,0.4569483282674772,0.4593766508188061,0.4618266708937372,0.4633361989365428,0.4635962100163853,0.4624475637302355,0.4624039262894712,0.4612929402218014,0.4630876787890449,0.4641527001862197,0.4668706377282723,0.4671084337349397,0.4657276995305164,0.4655243600330305,0.4689361702127659,0.4670707070707071,0.0,2.721506698953241,79.99647760173643,289.0084364534968,451.725642588806,OR_public_baseline,62 +100000,95734,43864,405.3627760252366,9729,100.05849541437736,7534,77.96603087722231,3170,32.600747905655254,77.33232137485312,79.70015493319576,63.31916690730778,65.07187710961783,76.94427424461718,79.31076976055321,63.17760310536608,64.93375903946855,0.3880471302359467,389.3851726425481,0.1415638019417073,138.11807014927524,23.45024,16.07440650304969,24495.205465143,16790.697665458138,115.82313,53.81893568567926,120251.6974115779,55484.535991057775,203.1318,93.49699581732446,208136.2838698895,94454.9609970792,5527.23192,2461.082012631168,5722070.486974325,2519289.9624283616,1886.6706,822.3054856930353,1948731.3493638623,836938.3269981993,3146.6798,1307.5121544860074,3239043.035912006,1322699.0542576062,0.43414,100000,0,106592,1113.4184302337728,0,0.0,0,0.0,8727,90.40675204211672,0,0.0,19628,200.97353082499427,2458934,0,88424,0,0,5847,0,0,23,0.2402490233354921,0,0.0,1,0.0104456097102387,0,0.0,0.09729,0.2240982171649698,0.3258299928050159,0.0317,0.3037851513087476,0.6962148486912523,26.045524455269785,4.692598531227685,0.3344836740111495,0.1803822670560127,0.2523228032917441,0.2328112556410937,11.116400158764636,5.450981365329931,33.91828053870853,15964.963525137193,85.13226352891787,15.71807968342175,28.582059914610003,19.741591171625217,21.090532759260903,0.5331829041677728,0.7409860191317145,0.7035714285714286,0.5769669327251995,0.1183587585481325,0.6768802228412256,0.8839779005524862,0.8499184339314845,0.7645631067961165,0.1446078431372549,0.4882383690538421,0.6890672016048145,0.6565285789197692,0.5193740685543964,0.1111855324849296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027666301836312,0.0056700037529541,0.0082243522053448,0.0108951947312789,0.0135712541710751,0.0164321879361457,0.0190503385820347,0.0217255918896568,0.0242216655590205,0.0268632268632268,0.0295959896255138,0.0320719462866763,0.0344370179948586,0.0369534991503167,0.03929802117079,0.0417446126815151,0.0444623923127899,0.0472257957422085,0.0496871817255929,0.0519112592438287,0.0688938769118338,0.0856571829187899,0.1011192346826387,0.1152766239365673,0.129373431469726,0.1473982630404197,0.1643338462354751,0.1802852884820097,0.1959475336993441,0.210679278467709,0.2280694194577008,0.2437089389888844,0.2584221980413493,0.2724975109136861,0.2859171519468081,0.2998714852318805,0.3131385312803564,0.3255413302705807,0.3372708480043616,0.3481391455892132,0.3591496263685338,0.3694345855149875,0.3783716520502488,0.3871428571428571,0.395241572350006,0.4042043377303493,0.4120893594069466,0.4201030270573534,0.4273677377474846,0.4334347711034665,0.4367657781738637,0.4387646579467134,0.4408839466349759,0.4441702473580304,0.4468317171928461,0.4490538124884423,0.4509816440542697,0.4522269817905165,0.4542622584031806,0.4555619679699899,0.4569515064126888,0.457593490721071,0.459454862439937,0.4603953646898432,0.4609472524782768,0.4605242213614899,0.4611771527979124,0.4629938965628011,0.4636669530355097,0.4648248362289945,0.4646069248334032,0.4640844685157831,0.4672854731922627,0.4666352645627257,0.4669616235452534,0.4734999396353978,0.471164309031556,0.4707457766790276,0.4669479606188467,0.4692186266771902,0.0,2.7727991940002985,79.74892111198983,288.08871589333853,442.0562658730562,OR_public_baseline,63 +100000,95718,43442,402.7664598090223,9760,100.52445725986752,7613,78.8775360956142,3162,32.62709208299379,77.41699606751023,79.77244165254754,63.36600846061516,65.10141728234886,77.0338155297689,79.38398151906033,63.22819028652826,64.96450842716752,0.3831805377413246,388.4601334872144,0.1378181740869024,136.9088551813462,24.2242,16.5892429424962,25307.88357466725,17331.37230457824,116.59975,53.621527511113634,121142.04224910676,55346.45261195766,200.82763,91.82010110911874,205568.2212332059,92657.85946499626,5596.8507,2468.120135648131,5804111.932969766,2535709.5828084857,1856.8523,794.7952749071458,1925298.9092960567,815838.3483585053,3125.80882,1281.0428677080442,3228285.9023381183,1308269.9337055266,0.43048,100000,0,110110,1150.3583443030568,0,0.0,0,0.0,8787,91.09049499571658,0,0.0,19493,199.41912701895149,2458407,0,88351,0,0,5936,0,0,33,0.3447627405503667,0,0.0,1,0.0104473557742535,0,0.0,0.0976,0.2267236573127671,0.3239754098360656,0.03162,0.3018026749370033,0.6981973250629967,25.84599378394025,4.74419576611805,0.336135557598844,0.1731249179035859,0.2416918429003021,0.2490476815972678,11.097638859588026,5.355175314452561,33.52152100564128,15783.462136846974,85.46113957327528,15.217025838845656,28.85742920457911,21.0115335485979,20.37515098125262,0.531459345855773,0.7473444613050075,0.6908948808128175,0.5659282700421941,0.1195652173913043,0.6917293233082706,0.8892128279883382,0.8786407766990292,0.7411167512690355,0.1497326203208556,0.4843643779741672,0.6974358974358974,0.6311179804224627,0.5199733688415447,0.111869031377899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002672118868803,0.0056327183944726,0.0085909607270366,0.0110886584957199,0.0138075483975923,0.0161851829231051,0.0185000203856973,0.021147172892427,0.0237190099536043,0.0263233278088105,0.0287538299158699,0.0310354382831983,0.0333580048931927,0.0358481627945295,0.0384174962603806,0.0409002604059025,0.0432558910009525,0.0456973355321157,0.0480684286560587,0.050057819125108,0.0675270703463542,0.0832879922989997,0.0989749992131519,0.1136399490960339,0.1274100324853394,0.1450343733474352,0.1623935250501214,0.1785174461924935,0.1933908844206072,0.2072822822822823,0.2236234209591091,0.2405834424402436,0.2554461257500652,0.270025783332605,0.2833846153846154,0.2968049668544362,0.3094446922390723,0.3218538132020103,0.3332425933487591,0.3443672212235364,0.3548002730122739,0.3647994386621447,0.3742175204420935,0.383595632214218,0.392322461478637,0.4001776155117547,0.407775745885418,0.41560923406207,0.4220188243835403,0.4283013379872019,0.4312661917098445,0.4343772840732006,0.4371545301610189,0.4394196837014769,0.441934471785218,0.4438523264589462,0.444778541428026,0.4465758395460843,0.4488958340488374,0.4499766665470079,0.4517132781413242,0.4530907932969789,0.4548087085182836,0.4567319613191173,0.4595303431360645,0.4607251153592617,0.461092524227042,0.4609265623011327,0.4629339783722254,0.4641720707294477,0.4673747402447472,0.4691891891891891,0.4724071702944942,0.4723567077932219,0.4720544530725721,0.473804925156929,0.471736414740787,0.4689826302729528,0.4678821879382889,0.4710711493354182,0.0,2.4370332772093524,77.03235706047857,294.7118376119493,451.154893544421,OR_public_baseline,64 +100000,95684,43468,402.9513816312027,9999,103.04753145771498,7779,80.58818611262072,3311,34.10183520755821,77.3508434030137,79.740892109686,63.31502979323547,65.0824854968879,76.9465319017668,79.33357933669505,63.16948259417984,64.93921876269067,0.4043115012468945,407.3127729909487,0.1455471990556276,143.26673419722624,23.21748,15.910197024277204,24264.746457087916,16627.85525717696,117.92675,53.85711263889555,122551.52376572884,55602.60660301562,200.71483,91.73874038173172,205449.0719451528,92482.6881301492,5681.67568,2491.159236099373,5890355.336315371,2556716.4837626475,1915.29823,809.8622633776702,1982750.7211236989,828393.1910629969,3259.48902,1328.8254494250575,3360216.0235776096,1351525.5435952202,0.43069,100000,0,105534,1102.9430207767234,0,0.0,0,0.0,8886,92.1366163621922,0,0.0,19435,198.7897663141173,2460091,0,88432,0,0,5749,0,0,24,0.2403745662806738,0,0.0,0,0.0,0,0.0,0.09999,0.232162344145441,0.3311331133113311,0.03311,0.2962893200226031,0.7037106799773969,26.06734051982756,4.706192392769898,0.3428461241804859,0.1745725671680164,0.2416763080087414,0.2409050006427561,11.055799921256416,5.506563373510854,35.02433698373504,15834.583716833697,87.21452655790652,15.510523732692818,30.06565568917676,21.03805716389593,20.600289972141,0.5295025067489395,0.7245949926362297,0.6824146981627297,0.5843116328708644,0.1170212765957446,0.6756756756756757,0.8778409090909091,0.839607201309329,0.7536945812807881,0.127027027027027,0.4874172185430463,0.6709741550695825,0.6357003891050583,0.5374659400544959,0.114569536423841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028060009927368,0.0054354990822524,0.0081109340263326,0.0109155215871209,0.0135608048993875,0.0161162160510177,0.0187699558293974,0.0212737708601425,0.0240128450312432,0.026402572663403,0.0286944928725258,0.0308747855917667,0.0335013371734211,0.0357315804115107,0.0383924701219889,0.04060871722769,0.0430908544608721,0.045340834777915,0.0478929793718987,0.0502241217554466,0.0678428177488092,0.0841867186027517,0.0997512255030598,0.1148844842822875,0.1290679888179756,0.1468080154044732,0.1646887737771739,0.1802091542246171,0.1950528599985034,0.2089911033365171,0.2255699886810758,0.2419042257180906,0.2572177906432621,0.2716795271712362,0.2855664086158861,0.2990560910411837,0.3122451942945861,0.3242345042020593,0.334894453854111,0.3458563789502674,0.3562021794574542,0.3652330925804333,0.3736932660931474,0.3831917220492976,0.3914468074739945,0.3994959664965965,0.4075918561912766,0.4152089314194577,0.4222643518458402,0.4286547073319378,0.4317025652126853,0.4346383543463835,0.4381076376604446,0.4411880037760511,0.4439140099357014,0.4454192833394902,0.4466651802777424,0.4482126338046782,0.450124001102232,0.4517505943375837,0.4537848530163357,0.4552475603185056,0.4563059535651548,0.4572249366630474,0.4590371724558196,0.4611334532754789,0.4624751132527339,0.4626028183383281,0.4642080883662925,0.465558863764384,0.4669650272215558,0.466482414783504,0.466628049172942,0.4687696170747018,0.4685436893203883,0.4700812607732085,0.4728510368845971,0.4725616069579623,0.4735509285312324,0.4750499001996008,0.0,2.752835370793644,77.32440533868507,296.3777339878352,471.0646281995527,OR_public_baseline,65 +100000,95700,43648,405.21421107628,9793,100.83594566353187,7608,78.68338557993731,3067,31.609195402298848,77.26691653433518,79.6278761510854,63.2951211478972,65.03952740338553,76.89788375649277,79.25517775198465,63.16246650985293,64.90841936331726,0.3690327778424063,372.69839910075575,0.132654638044265,131.10804006826982,23.79982,16.284041986249967,24869.19540229885,17015.717853970706,116.36583,53.54038332540423,120811.23301985372,55163.03440777797,203.6379,93.91754782667051,206570.95088819228,93487.94656050374,5483.17912,2413.8066348608104,5681652.75862069,2474763.9280693494,1880.14167,802.1947061531844,1947743.0198537093,821518.9737385701,3023.56904,1235.1422605622506,3120899.937304076,1257893.4380070043,0.43297,100000,0,108181,1130.4179728317658,0,0.0,0,0.0,8734,90.42842215256007,0,0.0,19675,199.50888192267504,2454519,0,88330,0,0,5649,0,0,41,0.4179728317659352,0,0.0,0,0.0,0,0.0,0.09793,0.2261819525602235,0.3131828857347085,0.03067,0.305782738381603,0.694217261618397,26.0100918894502,4.659490357138942,0.3330704521556256,0.1936119873817034,0.2348843322818086,0.2384332281808622,11.036686204735116,5.431832464578476,32.768664613849914,15943.186295720316,85.9397974007151,17.05370239922961,28.927314070434765,20.30994347043697,19.648837460613752,0.5482386961093586,0.7508486082824168,0.7091554853985793,0.5887541345093715,0.1119194180190263,0.7201183431952662,0.9263157894736842,0.8910569105691057,0.6919191919191919,0.1438127090301003,0.4991551199729638,0.6898444647758463,0.6508598228243877,0.5599435825105783,0.105510752688172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028359599724506,0.00548520212108,0.0079149247067418,0.0106764457898639,0.0133840489799239,0.0159754818608534,0.0185330546918803,0.0212125233511295,0.0237265264815023,0.0262856207009498,0.0287843531208676,0.0310459529382776,0.0333487582909147,0.0358849703361898,0.0382651218933446,0.0404680441995803,0.0428191241495718,0.0452753454786902,0.0475967735229304,0.0498968513617704,0.0674100989850895,0.0842142722572271,0.099928644882369,0.1152296280709137,0.1291765574721738,0.1472110225721451,0.1640849780759961,0.18011099157444,0.1954613023623899,0.2102053743008363,0.2278157548573523,0.2437441071602744,0.2588385213583985,0.2728278490995925,0.2864465069112233,0.3007105584545353,0.3136638668620192,0.3264772509551555,0.3380080007273388,0.3489465655858976,0.3594301928310846,0.369027118842617,0.3789065740663925,0.3875463679907804,0.3962227414330218,0.4047177967148326,0.4132339282576499,0.420797386288223,0.4275740121955976,0.4339975589046911,0.4365055701623614,0.4396707043268564,0.4420423574835339,0.4443748908169801,0.4464117197681211,0.448136756364086,0.4499463854168334,0.4508240297713982,0.4527567230817153,0.4531207586094573,0.4558854255703079,0.4565204308840344,0.4575277641591883,0.4596887938486737,0.4606363926302102,0.4601506160355518,0.4624602734933084,0.4636401714083191,0.4645803183791606,0.4665435897435897,0.4668514777052107,0.4681773290903105,0.4696143358005454,0.4695509052433576,0.4696822936846184,0.4716774272140334,0.4699858200724752,0.4663050281660755,0.4637393767705382,0.4549441786283891,0.0,3.1746359961938624,74.35317483859639,304.41326826039455,452.7506305239078,OR_public_baseline,66 +100000,95677,43610,403.5975208252767,9862,101.63362145552222,7686,79.49663973577766,3180,32.76649560500434,77.288290147924,79.65812317397963,63.294707477804174,65.04422898493922,76.89497702085761,79.2622612533174,63.152560467921234,64.9044024943136,0.3933131270663921,395.86192066222736,0.1421470098829402,139.82649062562302,23.47598,16.05589629844198,24536.701610627424,16781.354242338264,116.51645,53.48264091586851,120907.98206465504,55038.13492926079,199.41261,91.71025994844416,202706.951513948,91454.53976812885,5619.84377,2480.606278128109,5818951.628918131,2538821.1417321167,1893.4509,812.2662693722358,1956290.749082852,826640.0204921565,3145.52996,1297.1400083412334,3243990.4470248856,1317727.0969324212,0.43296,100000,0,106709,1115.3046186648828,0,0.0,0,0.0,8758,90.63829342475202,0,0.0,19288,196.0345746626671,2454930,0,88375,0,0,5785,0,0,37,0.3658141455104152,0,0.0,1,0.010451832728869,0,0.0,0.09862,0.2277808573540281,0.32244980734131,0.0318,0.3004893025040775,0.6995106974959224,25.997688992340542,4.709606555984876,0.3279989591465001,0.185271922976841,0.2457715326567785,0.2409575852198803,11.001741380881525,5.402368619521151,34.003031853010924,15936.868404552411,86.70643142278433,16.51538260647775,28.50217964285249,20.813714073837104,20.875155099616983,0.5299245381212594,0.7408707865168539,0.6957556525188417,0.5707343412526998,0.1095817893065113,0.6811180832857958,0.9035532994923858,0.8484848484848485,0.6982968369829684,0.1327683615819209,0.4852519804483398,0.6786407766990291,0.6486766995329528,0.5343511450381679,0.1042345276872964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028155034991239,0.0052817793817986,0.0079047773673742,0.0106564538084885,0.0129261248067691,0.0157521204777566,0.0182704267857507,0.0208543867707854,0.0233570822557728,0.0258506882259632,0.0284911964252772,0.0311223337644474,0.033692500668298,0.0362509139967662,0.0388039072089449,0.041204617562861,0.0435592922003292,0.0460460772104607,0.0486977866533533,0.0512970161853446,0.0682311902076283,0.0846385794455147,0.1002938706968933,0.1153348277712878,0.1298257096709491,0.1470697231192757,0.1640613384873521,0.1796000127859525,0.1949033824174179,0.209315062608733,0.2262476137062243,0.24325495720013,0.2577018606475227,0.2722413887519851,0.2857615091345836,0.2995948271077316,0.3132915641083016,0.3253867069827265,0.3375038422568563,0.3487535485650579,0.3593196726069542,0.3693786756506121,0.3791059315489979,0.3883180943214629,0.3964282664649841,0.404737141866627,0.4131586564478172,0.4203195149716683,0.4271081746745377,0.4338374918666259,0.4369193683811381,0.4393555269246221,0.4417583978410624,0.4440977487460632,0.4462302659223243,0.4479202102984382,0.4495515515835585,0.4516417910447761,0.452538593185472,0.4540276647681041,0.4553038653034852,0.4570363392194985,0.4583448657625242,0.4597083304982876,0.4612572208545591,0.4606260731739532,0.460874851634195,0.4602493030409844,0.4616983905079399,0.4633948159583976,0.4647347511100724,0.4665101806867187,0.4675743692327547,0.4692632566870014,0.4718606431852986,0.4724371373307544,0.4666251750427882,0.4733568318473979,0.4792949076664801,0.4718836020448289,0.0,3.195631660319153,77.55791942835828,297.9260743308241,458.4541626247313,OR_public_baseline,67 +100000,95823,43878,407.88745916951046,9741,100.35169009527984,7549,78.12320632833453,3106,32.059108982185904,77.36488025655099,79.67913780414726,63.35773544642036,65.0707015024711,77.00395706218485,79.31412625454573,63.22780372832364,64.94206355020945,0.360923194366137,365.0115496015332,0.1299317180967136,128.63795226164143,23.76154,16.24807879418235,24797.32423322167,16956.345338992047,114.64094,52.460896249321216,118993.65496801394,54103.16429055866,196.78459,90.50114913935056,200309.184642518,90669.69010677205,5511.22102,2417.397980537125,5708940.170940171,2480257.481501688,1814.1651,773.620348976877,1878188.9108042957,792307.7948125642,3070.386,1252.713376701184,3171009.486240256,1278081.8979924056,0.43507,100000,0,108007,1127.151101510076,0,0.0,0,0.0,8665,89.74880769752565,0,0.0,19077,194.28529684939943,2463516,0,88567,0,0,5910,0,0,26,0.2504617889233274,0,0.0,0,0.0,0,0.0,0.09741,0.2238950054014296,0.3188584334257263,0.03106,0.3123599883120678,0.6876400116879322,25.829759791312306,4.737485430016331,0.3338190488806464,0.1832030732547357,0.2446681679692674,0.2383097098953503,10.835890887262632,5.170076958375745,32.90886626489094,15923.138197716766,84.65158220340196,15.9754417794652,28.35888217280121,20.081501420566383,20.23575683056918,0.5302689097893761,0.7411424439624006,0.694047619047619,0.5686492495831017,0.1115322144017325,0.6952155936207915,0.9214092140921408,0.8581314878892734,0.7227979274611399,0.1722222222222222,0.4825819672131147,0.6755424063116371,0.645211122554068,0.5265392781316348,0.0968392737054472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024713866099463,0.0052110791191856,0.0079754850231349,0.0104517937675212,0.0129244160624764,0.0156600008145644,0.0180227935329976,0.0202646140024909,0.0228675989532221,0.0256103178258866,0.0282868035911941,0.0305204068019252,0.0329191461371648,0.035189016169039,0.0378807400917383,0.0403229136556964,0.0425135764158262,0.0445644064986737,0.0466321243523316,0.0490657122643472,0.0670039113428943,0.0837052754810858,0.0991755450097949,0.114102698729392,0.127770932718331,0.1451197364530979,0.1626889545661592,0.1793626158686963,0.1944699281005312,0.2088429982219747,0.2262169867140014,0.2426378378378378,0.2577476420219933,0.2723687803812333,0.2862999846116643,0.2993307892262596,0.312591238842395,0.3259377422290124,0.3378875936059092,0.3494926848240125,0.3597809004345012,0.3699103877744155,0.3796541609499929,0.3888017434411409,0.3976227226874415,0.4054773912721802,0.4132019235585834,0.4205312348791606,0.427964289879109,0.4346425506634101,0.4373348433371083,0.4404423729281006,0.4428720877629495,0.4452699859238728,0.4475158759805753,0.4485729256565158,0.4497574829280745,0.4513821030490733,0.4532663490090463,0.4554396477043026,0.4571705205604283,0.4586114953589543,0.459593276525213,0.4611054363863353,0.4616640670696042,0.4619134673979281,0.4638113152944581,0.4630210667861945,0.4643189463889485,0.4651852453688658,0.4652271452607964,0.4658469945355191,0.4660111993749186,0.4665037831021437,0.4666861769583455,0.4676039119804401,0.4670251462913174,0.4710327455919395,0.4716553287981859,0.4745425616547335,0.0,2.5670301333459165,75.09309665295851,290.0630115245512,454.1648580330341,OR_public_baseline,68 +100000,95626,43560,403.21669838746783,9678,99.66954593938888,7462,77.33252462719344,3083,31.80097463033066,77.2563444549925,79.6651888644874,63.27473565930678,65.05505536207433,76.880783933378,79.28545046326875,63.137587325846745,64.91919137773567,0.3755605216145028,379.73840121865976,0.1371483334600327,135.86398433865554,22.8547,15.707521438441564,23900.08993370004,16425.994435029763,114.14539,52.74684397332192,118692.1443958756,54485.18600937184,197.35057,90.55370541927977,201322.36002760756,90855.552865794,5442.81285,2412.9551782061253,5645660.322506431,2477214.8455505045,1844.56054,794.3576011652568,1910632.986844582,812393.0324025443,3054.94564,1270.523190104706,3153278.585321984,1294585.7124703224,0.43151,100000,0,103885,1086.3677242590927,0,0.0,0,0.0,8601,89.22259636500533,0,0.0,19056,194.1940476439462,2457763,0,88420,0,0,5695,0,0,26,0.2718925815154874,0,0.0,0,0.0,0,0.0,0.09678,0.2242821719079511,0.3185575532134738,0.03083,0.3000292426162394,0.6999707573837606,26.124742552701637,4.7440126129212,0.3316805146073439,0.1813186813186813,0.2441704636826588,0.242830340391316,10.862093710385254,5.2057858655203,33.099895418922124,15846.18703968914,84.22446266300217,15.630594546412071,27.878342490809683,20.42659797680969,20.288927648970724,0.5310908603591531,0.7442719881744272,0.6888888888888889,0.5783664459161147,0.1114160263446761,0.6773428232502966,0.9180790960451978,0.8578947368421053,0.7020725388601037,0.151595744680851,0.4884002770083102,0.6826826826826827,0.6383202099737533,0.5448807854137447,0.1009681881051175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028054894414341,0.0055745314859673,0.0082809851936796,0.0110227261182733,0.013704344287313,0.0163605431781832,0.0188305859311245,0.0214148514446851,0.0237403596342286,0.0261950130104288,0.028854046954523,0.0316006905907016,0.0341682366142664,0.0366315094903755,0.0389756621627205,0.0415459437086092,0.0440159643393977,0.0462156940145014,0.0488147516077337,0.0513408922592287,0.0690321906354515,0.0853003111544143,0.1010383093090886,0.1161603402176888,0.1299149448091007,0.1473591754235584,0.1637920969676385,0.1804317496831634,0.1954676643506146,0.2095649000794213,0.2258234945280069,0.2411611099673857,0.2560817509341874,0.2698931214031241,0.2827480444400313,0.2965661232286438,0.3096138780078343,0.322416204267605,0.334247042766151,0.3457714298835794,0.3556182318325847,0.3657534568162077,0.3757928495070674,0.3837727999615241,0.3916681915218054,0.4000495141424769,0.4081966182663901,0.4163416661338789,0.4242621499524807,0.4302223755439974,0.4328653512575889,0.4354257354368259,0.4383178233998721,0.4408890703847388,0.44330500585568,0.4443067197595327,0.4460619454854104,0.4479074944759183,0.450118744257805,0.4522747870219322,0.4545593023477218,0.4559774964838256,0.4569024286322966,0.4579144445705208,0.4570143489207753,0.4585210707659687,0.459705309657357,0.4616223148445014,0.4644705378493165,0.4665535627726612,0.4657419863617386,0.4685553328638752,0.4691866829802305,0.4678842284476087,0.4688090737240075,0.4732421406287497,0.4718928076389958,0.4755947497949138,0.4773355444997236,0.4861441013460015,0.0,2.7682400738009973,74.86389457962423,291.4615027699815,446.1453627089761,OR_public_baseline,69 +100000,95678,43737,405.50596793411233,9897,101.94611091368968,7616,78.86870544952863,3187,32.84976692656619,77.32722884548278,79.70489566960336,63.32110870231941,65.07643666210262,76.9374818578322,79.3135251122711,63.17919445362877,64.93738163105745,0.3897469876505823,391.3705573322659,0.1419142486906395,139.05503104517436,23.86824,16.355204914482044,24946.424465394342,17094.00793754264,116.65918,54.10540319788704,121207.14270783252,55827.83158454663,199.82211,92.02263053149063,204667.59338614935,92867.56265795443,5563.68149,2477.7209145731845,5763399.89339242,2538291.7544718566,1868.425,804.447634117246,1932993.655803842,821191.0070810772,3152.12738,1301.6535992174274,3251121.198185581,1323781.9444643692,0.43348,100000,0,108492,1133.928384790652,0,0.0,0,0.0,8807,91.28535295470223,0,0.0,19429,198.8335876586049,2455456,0,88355,0,0,6125,0,0,24,0.2508413637408809,0,0.0,0,0.0,0,0.0,0.09897,0.2283150318353788,0.322016772759422,0.03187,0.3028763183125599,0.6971236816874401,26.09094605341761,4.662985461420694,0.3320640756302521,0.1838235294117647,0.2450105042016806,0.2391018907563025,11.011382947034637,5.427121029333832,34.106140973849804,15948.025947925396,86.10548356596225,16.310496964523317,28.60845006496927,20.36144490468589,20.82509163178379,0.5412289915966386,0.7728571428571429,0.6919731119019376,0.5826468973091707,0.1227224008574491,0.6921348314606741,0.9168831168831169,0.8557046979865772,0.754257907542579,0.152061855670103,0.4952021932830706,0.7182266009852217,0.6414899120538023,0.5326241134751774,0.115020297699594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029359953024075,0.005634887656961,0.0081262047276047,0.0107153376600952,0.0131074526392857,0.0155071120931037,0.0177023637142332,0.0204160836661117,0.0231219192931503,0.0261031633060593,0.0287970464567736,0.031459266258576,0.0339642048961119,0.0361058445305415,0.0386917662600367,0.0413249635459218,0.043709336538063,0.0460548172757475,0.0483268668670751,0.0505253721385981,0.0677307483391133,0.0837851416131125,0.0991219696413398,0.1141880162028512,0.1283582089552238,0.1457136509347129,0.1633924496662103,0.1801288536286672,0.1949588092617722,0.2097199871258448,0.2274734982332155,0.2436938399913391,0.2586790256426994,0.2731798041682621,0.2870889253432274,0.3011495272195187,0.3139663432010809,0.3267591998469037,0.3384140108579606,0.3495752267177235,0.3602419691280767,0.3696660808435852,0.3784187502222854,0.3873829531812725,0.3960301997077448,0.4038963125950282,0.4117491964644436,0.4198104773824423,0.4270036927237738,0.4336621062678969,0.4364451548235039,0.4388870441086944,0.4417477104539397,0.444560760708366,0.4471997604073076,0.4487223115950996,0.4503372654326907,0.4520137670847536,0.45328785294675,0.4542002591419522,0.4563483061101028,0.45780173704702,0.4593735430000424,0.4603803486529318,0.4619910165022947,0.463951422586376,0.4636495503336234,0.4662842125504775,0.4665641539121728,0.4675245595518389,0.4708962550843891,0.4719899437066185,0.4709736005707984,0.4721148536720044,0.4744304292558913,0.4735420503376304,0.4692710814673654,0.4659543264194427,0.4631639063392347,0.4587813620071684,0.0,2.7330722749943805,78.99235048635589,294.6776135321704,450.2519860526185,OR_public_baseline,70 +100000,95767,43739,404.888949220504,9719,99.96136456190548,7588,78.54480144517423,3153,32.45376799941525,77.38146625236273,79.70440777815146,63.35451413110488,65.06770796434934,76.9971240638553,79.3165650531559,63.21512608809635,64.92994423626885,0.384342188507432,387.84272499556494,0.1393880430085303,137.7637280804862,23.26456,15.93563602848097,24292.87750477722,16640.007547987272,115.62538,53.50538529638541,120047.90794323724,55182.14551608112,201.75497,93.3068837964582,205681.11144757588,93667.45894349078,5541.06862,2470.5001977794777,5741868.305366149,2535577.5974808405,1893.57835,821.5407832166906,1962138.868294924,842716.1373089806,3125.94518,1295.6365372974035,3221413.32609354,1318059.335272983,0.43384,100000,0,105748,1104.221704762601,0,0.0,0,0.0,8684,89.95791869850784,0,0.0,19536,199.1604623722159,2459900,0,88522,0,0,5552,0,0,35,0.3550283500579532,0,0.0,1,0.0104420102958221,0,0.0,0.09719,0.2240226811727826,0.3244160921905545,0.03153,0.3085106382978723,0.6914893617021277,26.02334376545133,4.691041446243209,0.3409330521876647,0.1779124934106483,0.2431470743278861,0.2380073800738007,10.974148069767276,5.335720270788505,33.7387040722652,15928.180723791693,85.60684376925241,15.407758022654749,29.33514802070436,20.29372221625873,20.570215509634583,0.5338692672641012,0.7311111111111112,0.7000386548125241,0.574750830564784,0.1165311653116531,0.6808272778088318,0.8930635838150289,0.8571428571428571,0.7049180327868853,0.1635883905013192,0.4885325056044146,0.6752988047808764,0.6487179487179487,0.5344452501812907,0.1043656207366985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029261081748779,0.0056954071912116,0.0085817753928241,0.0115565846128848,0.0144793435488627,0.0168068082334018,0.0189681180691454,0.0214491984612087,0.0238966080915406,0.0267024062858078,0.0292586977011023,0.0314667378011244,0.0338821063016401,0.0365341458895225,0.0390943956451812,0.0418254484617529,0.0442170183263139,0.0462080763050127,0.0483056657871226,0.050759042918723,0.0680852840191607,0.0843823575576832,0.1005600654458498,0.1154994428442276,0.1297270513320612,0.1476803960144697,0.1647908688780218,0.1805397349230851,0.1957891813365236,0.2100697981108407,0.2274650389174175,0.2432677957303225,0.2583332427053539,0.2725204034746078,0.2867331440269431,0.3006539569940146,0.3135791989635222,0.3256882283398075,0.3367416496250852,0.3474938910367455,0.3584164154880593,0.3684833706521612,0.3780745238490548,0.3869775035413315,0.3955341932343636,0.4038224109832584,0.4122381435932152,0.4191084589294366,0.4261417527447541,0.4321741087385324,0.4351168760978246,0.4375966637207247,0.4402672404031253,0.4429950847802693,0.4455552229871296,0.4472815354233522,0.4481241832148663,0.4501685838952796,0.4513768103463121,0.4523719574720708,0.454040365862877,0.4551960608416562,0.4554694447973574,0.4573552071059548,0.4578187044751394,0.459426608534813,0.4610697163980823,0.4616757497530038,0.4632911392405063,0.4632882700558569,0.4634587722147464,0.4639459459459459,0.462822070200115,0.4616932363411237,0.4624963799594555,0.4622103603057139,0.4652831955063192,0.4722682119205298,0.4728966685488424,0.474059405940594,0.0,2.673548010015648,79.51301971981178,291.1502796662153,446.0549380451353,OR_public_baseline,71 +100000,95765,43681,404.3544092309299,9619,99.169842844463,7436,77.14718320889678,3138,32.47533023547225,77.31912755708531,79.66786782838048,63.32066847763053,65.0579238628932,76.94237269900206,79.28232014669332,63.18430454678898,64.91995216631159,0.3767548580832454,385.5476816871573,0.1363639308415543,137.9716965816158,23.51668,16.118486870565196,24556.65431002976,16831.292090602197,112.77746,51.916206372369786,117280.37383177572,53727.66289601608,195.68632,90.17586299663952,200344.4995562053,91200.10156036404,5429.57285,2415.3056921345524,5638118.300005222,2490551.696480502,1831.50837,786.2216096025136,1900844.63008406,809332.3235028598,3098.07822,1274.953232499268,3208627.369080562,1312050.712259096,0.4331,100000,0,106894,1116.2115595468074,0,0.0,0,0.0,8479,88.03842740040724,0,0.0,18977,194.16279434031225,2459136,0,88457,0,0,5725,0,0,25,0.2610557092883621,0,0.0,0,0.0,0,0.0,0.09619,0.2220965135072731,0.3262293377689989,0.03138,0.3081224249558564,0.6918775750441436,26.25768975293504,4.6960416646172565,0.3449435180204411,0.1753630984400215,0.2466379774072081,0.2330554061323292,11.138137444381838,5.542313288548118,33.49982311232439,15894.876041465972,83.92355232604233,15.01942811387558,29.102664741762727,19.491139073954947,20.310320396449065,0.5328133405056482,0.7400306748466258,0.70682261208577,0.5683785343335257,0.1085059978189749,0.6661007357102433,0.9033232628398792,0.8521341463414634,0.6862244897959183,0.1288659793814432,0.491268301287705,0.68448098663926,0.6568884232582504,0.5339299030574198,0.103042876901798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025721779461057,0.0052797454372257,0.0080252424820421,0.0107355420585427,0.013586763075734,0.0163759127432709,0.019056844251848,0.0213923947228689,0.0238236436882681,0.0263917610204541,0.0291491085068643,0.0314816716295307,0.0339075435799866,0.036405966705126,0.0387333752927702,0.0413704009921455,0.0439868732983425,0.0464395000259322,0.0487135791180015,0.0508050909242402,0.0672518892739342,0.0840071548865574,0.0998458262976286,0.1152551996803432,0.1295144525732116,0.1469005402776456,0.1635557629491367,0.1799659538248749,0.194671934226683,0.2087348977819706,0.2263226473407062,0.2423051948051948,0.2576711807255126,0.271994487706711,0.2855649341359539,0.2992467043314501,0.3125258232738886,0.3244633550580263,0.3363008720930232,0.3472650385633574,0.3583139258692805,0.3674849141718905,0.3772255500859973,0.3862742976667027,0.3947159970265297,0.4032285997031172,0.4109630336754047,0.4181016862544711,0.4253345993262489,0.4320480362657901,0.4354297466984195,0.4385205668855859,0.4409492351965524,0.443765103211343,0.4454289648566126,0.4468982132101987,0.4491149028629856,0.4502891993569665,0.4515222078482104,0.4524455048259408,0.4535287751343346,0.455473692640346,0.4564431015405566,0.4569355682412609,0.4583078541202945,0.4583123325463564,0.4584856396866841,0.4599014336917563,0.4601488159118552,0.4617775266386826,0.4603815624564824,0.4613714099571095,0.4616922481620018,0.4656452747596342,0.4686139858787116,0.4652147610405324,0.4726360357534891,0.4693494578815679,0.4754888070274865,0.4814375987361769,0.0,1.9855276835109636,79.26164219031374,278.2139339074235,444.6358338109368,OR_public_baseline,72 +100000,95662,43644,403.3576550772512,9847,101.51366268737848,7638,79.05960569505132,3162,32.58347097070937,77.34181859432726,79.72567550272122,63.3271521787835,65.0858711847424,76.95486862963921,79.33532105042761,63.18710786249323,64.9478791787093,0.386949964688057,390.3544522936073,0.1400443162902718,137.9920060331017,23.3838,16.01220597189907,24444.18891513872,16738.314034725463,116.31085,53.5963272601315,120784.44941565096,55226.00119183322,202.43513,92.87183950955789,206393.7822750936,93021.30105000571,5574.75437,2472.0514158625915,5774999.101001442,2531668.812341986,1918.37289,817.7765821263024,1983150.279107692,832645.0545946157,3132.36794,1290.5155414916758,3230526.541364387,1311576.8534812718,0.43285,100000,0,106290,1111.0994961426688,0,0.0,0,0.0,8723,90.37026196399825,0,0.0,19649,200.14216721373165,2460014,0,88508,0,0,5652,0,0,24,0.250883318350024,0,0.0,0,0.0,0,0.0,0.09847,0.227492202841631,0.3211130293490403,0.03162,0.3025453143077516,0.6974546856922483,26.11590476689801,4.732639781710918,0.3280963603037444,0.1857816182246661,0.2431264728986645,0.2429955485729248,11.209972909029611,5.470006934923197,33.69972850756171,15937.738507875058,86.25607417517519,16.487966499556247,28.340204230321472,20.826891520678988,20.60101192461848,0.5409793139565331,0.7491190979563073,0.6963288108539505,0.5894396551724138,0.1238556812062466,0.7090281771132835,0.9051282051282052,0.8760611205432938,0.7635467980295566,0.1525423728813559,0.491439226987625,0.6899902818270165,0.6411058946270214,0.5406896551724137,0.1170991350632069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026531376897449,0.0051390169982869,0.0079441575439059,0.0105624504885133,0.0133912230040265,0.0161277184980043,0.0185609882885362,0.0213243775711237,0.0236306585308517,0.0262465579543244,0.0288737593306537,0.0313035976542842,0.0340630851217053,0.0367668274184905,0.0392745814495984,0.0419541359371929,0.0444875076425662,0.046785447296287,0.0492707184619546,0.0517712307916849,0.0696153605081169,0.0858174964661536,0.101198597787527,0.116289592760181,0.1302536078994008,0.1481054435441217,0.164859186315499,0.1804990738177869,0.1954863114701545,0.2098658171638189,0.2264228167679117,0.2434470299332533,0.2580438140405073,0.27250855724331,0.2857032806189266,0.2990171636250817,0.3126026020436652,0.32485395585471,0.3369143064798201,0.3476785898479135,0.358574223498223,0.3687093942054433,0.3782074812613231,0.3873231832415506,0.3957545161486527,0.4040541207841588,0.4127457865168539,0.4201334404939594,0.4264384843287073,0.4334842947189999,0.4366433263943334,0.4392327040548384,0.4421309083698069,0.4448303926983112,0.4474380634839944,0.4488788061175672,0.4502535966059523,0.4515344125533816,0.4521304122822149,0.4532376694548601,0.4540384179081903,0.455033851930259,0.4570059981772323,0.4582219402782183,0.4588180776078632,0.4591947769314472,0.4571577847439916,0.4587332669898237,0.4590046029919448,0.4606129582960735,0.4621028037383177,0.4619366792000436,0.4646302250803859,0.4649785742111414,0.4625719769673704,0.4603602499693665,0.4652118912080961,0.4645390070921986,0.4613844393592677,0.4555599840573934,0.0,3.0203100860110133,76.85604616239299,303.48642745435586,448.1476307882851,OR_public_baseline,73 +100000,95676,43467,403.02688239474895,9726,100.41180651365023,7532,78.10736234792424,3047,31.408085622308626,77.38307130315455,79.7589921234862,63.34642469116329,65.09722987846189,77.01335574382401,79.38724775069636,63.2125583756271,64.96569567696811,0.3697155593305439,371.7443727898342,0.1338663155361956,131.53420149377837,22.95898,15.743592250019049,23996.592666917517,16455.11126094219,115.13818,52.68924016192082,119728.27041264268,54457.00087997076,195.79191,89.6351158031911,201155.43082904804,90860.1813550685,5498.86064,2416.153879579864,5705895.396964757,2483868.17966874,1865.26804,792.2902222148581,1932398.4802876376,810937.697652,3019.7596,1244.255433497944,3116204.6072160206,1265264.3279288972,0.43049,100000,0,104359,1090.7542121326142,0,0.0,0,0.0,8656,89.84489318115305,0,0.0,18946,194.5733517287512,2463228,0,88676,0,0,5847,0,0,28,0.2822024332120908,0,0.0,1,0.0104519419708181,0,0.0,0.09726,0.2259285929986759,0.3132839810816368,0.03047,0.3105058365758755,0.6894941634241245,26.219179986375146,4.706972119566411,0.3372278279341476,0.1826872012745618,0.2462825278810408,0.2338024429102496,10.950993853007253,5.299831467880531,32.41488886802421,15865.830529808562,84.40897497891537,15.71337741990599,28.648394467210696,19.65466906663867,20.392534025160018,0.5345193839617631,0.7441860465116279,0.6996062992125984,0.5780806360022714,0.1115902964959568,0.6732788798133023,0.9045092838196288,0.846551724137931,0.7287671232876712,0.1428571428571428,0.4936404262633207,0.6836836836836837,0.6561224489795918,0.5386819484240688,0.1032125768967874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026624014253464,0.0052276457358215,0.0077991095424995,0.0104695560339575,0.0131869249148492,0.0158901432250577,0.0182980285021101,0.0210270595800712,0.0236729937751065,0.0261554998208527,0.0286557921609235,0.0309291053971905,0.0332294591342445,0.0358242776948035,0.0383555991128075,0.0409165133632361,0.0433116136450747,0.0456040933669603,0.0478676386476846,0.0503678846113762,0.0668978773190707,0.0826205755802389,0.098241638339838,0.1129851421120703,0.1276452167311605,0.1457555797553471,0.1628062289972756,0.178525088805224,0.1947008419322826,0.2096369792559574,0.2265949435180204,0.2428151287762472,0.2576086956521739,0.2714602713072374,0.2848106139781515,0.2990159138259675,0.3123875911837975,0.3240834628991189,0.3355563634711082,0.3467866766037952,0.357471304307539,0.3671525320460244,0.3776285981995659,0.3872177288514463,0.3949952486537852,0.4029721576578804,0.4105586942875078,0.4175998161365696,0.4246112237998647,0.4315404395196564,0.4336067900150018,0.4368076466200724,0.4391571802305027,0.4418057773261721,0.4447165275558807,0.4468521229868228,0.4484968278764306,0.4505901411710252,0.452617250766739,0.4545258077297122,0.4559879393197023,0.4563166693201719,0.4571579391891892,0.4578880923396005,0.4573147070236709,0.459605924289059,0.4607364430147059,0.4609079645455411,0.4639281769924115,0.4658519917996543,0.4661730680240629,0.4670896967089696,0.4678119810959254,0.4690654133600431,0.4679377727186492,0.4645453462042664,0.4632543926661573,0.4594162335065974,0.4668304668304668,0.4606314187904146,0.0,2.3625246147943577,76.71725279644208,284.56464058417,452.1764822251921,OR_public_baseline,74 +100000,95688,43980,406.6549619597024,9837,101.28751776607308,7556,78.31703034863305,3222,33.19120474876682,77.3960056150407,79.77944276775251,63.35197710932333,65.11268202326595,77.00266835491155,79.38471926383707,63.2093792536768,64.97293958567629,0.393337260129158,394.72350391544353,0.1425978556465281,139.74243758966054,23.64098,16.195043137914084,24706.31636150824,16924.84233959753,115.80785,53.49444834532908,120380.17306245296,55258.73499846279,197.48816,90.861883959208,202576.20600284255,91923.6801235758,5543.78653,2473.1298076422127,5746143.842488086,2537253.0535737504,1874.86246,812.9944567518734,1942191.455563916,832537.0114211673,3185.4819,1315.938158904412,3284008.715826436,1337962.0748762763,0.43584,100000,0,107459,1123.0143800685562,0,0.0,0,0.0,8684,90.08444110024246,0,0.0,19167,196.52412005685144,2462745,0,88429,0,0,5894,0,0,39,0.3971239862887718,0,0.0,1,0.0104506312181255,0,0.0,0.09837,0.2257020925110132,0.3275388838060384,0.03222,0.3052266820675715,0.6947733179324286,26.04886229660525,4.761677069571199,0.3332451032292218,0.1782689253573319,0.2511911064055055,0.2372948650079407,11.236912223400704,5.573423110880038,34.326042813379246,15991.086825061157,85.11112508231217,15.53350650752408,28.323494526008265,20.200458161032287,21.053665887747528,0.5332186341979883,0.7401633259094283,0.6977760127084988,0.5900725041829337,0.1143308746048472,0.7060158910329172,0.9273255813953488,0.8770491803278688,0.7674418604651163,0.1587301587301587,0.4806696582671729,0.6759720837487537,0.640461215932914,0.5341159207630227,0.1032894736842105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027452211878399,0.0056883859585082,0.0083636142181441,0.011267462534925,0.0138852155514414,0.0167700155787029,0.0192503772584526,0.0219810511700085,0.0245765051064743,0.0271556665574844,0.0296704873997826,0.0324246624570049,0.0346288735074204,0.0369695096827358,0.0393945334667808,0.041886765146738,0.0443758481028392,0.0469186293947289,0.0496203848153926,0.0519464276408358,0.0689925314670705,0.0853043369055592,0.1014264736731697,0.1163834798334525,0.1308110729269886,0.1485954818512564,0.1656940966769935,0.1812635748051616,0.1960319241001314,0.210319120407616,0.2268217805784456,0.2427488018348425,0.2573512626235175,0.2716984845502854,0.286206100069294,0.2995703021174803,0.3129971995046136,0.3257844812084157,0.3375464768296001,0.3487169513436831,0.3591017832584049,0.3690527669023549,0.3788274809882558,0.3879778147797649,0.3971291866028708,0.4058793827510191,0.4131269303389894,0.420613627983267,0.4277559895934454,0.4346879535558781,0.4375050507771462,0.440578313253012,0.4434261991838348,0.4464653496939634,0.4484430717813288,0.44975067717311,0.4514397655602981,0.4524010248780891,0.4543107454517289,0.4553637329204846,0.4567313145060678,0.4576903138333931,0.4581651414924868,0.4586932497349962,0.4592844974446337,0.4607403104868518,0.4621574848572252,0.4645586213511526,0.4650747122327875,0.4673454486451403,0.4675518982607069,0.4677718398952993,0.4661351999481496,0.4677697616060225,0.4677136168552477,0.473781616286243,0.4766058683584457,0.4762407602956705,0.4794952681388013,0.4819855884707766,0.0,2.4901581564457365,78.37642852566162,292.4522216101338,443.0817096885788,OR_public_baseline,75 +100000,95808,43502,402.0958583834335,9726,99.90814963259852,7578,78.375501002004,3086,31.68837675350701,77.38566316619061,79.7037367142899,63.36611244363343,65.08290907578255,76.99930613510946,79.31933106764498,63.22465626128752,64.94608816248474,0.3863570310811468,384.4056466449217,0.1414561823459053,136.82091329781088,22.86724,15.674827613379264,23867.777221108885,16360.666764131664,116.20039,53.78525517442635,120557.09335337342,55411.03579495068,202.23229,92.93562080282152,206885.0304776219,93780.6587190056,5522.86094,2466.1688881118266,5712571.277972612,2522136.187073967,1880.29809,816.7180523360605,1936344.2405644625,826233.8084351746,3053.37668,1272.7949543084476,3137383.4961589845,1284635.9210112144,0.43106,100000,0,103942,1084.8989645958584,0,0.0,0,0.0,8690,89.95073480293921,0,0.0,19588,200.23380093520373,2467024,0,88666,0,0,5772,0,0,34,0.354876419505678,0,0.0,0,0.0,0,0.0,0.09726,0.2256298427133113,0.3172938515319761,0.03086,0.3030715396578538,0.6969284603421462,25.938436567045816,4.635882929411393,0.3395354974927421,0.1858010029031406,0.2414885193982581,0.233174980205859,11.189256187459288,5.558175882900966,32.89668034963831,15830.0435615172,85.32016580815825,16.27855900460521,28.84058790986648,19.870441815645947,20.330577078040616,0.5358933755608339,0.7485795454545454,0.6828604741546832,0.5840407470288624,0.1191256830601092,0.6769489624228828,0.9182058047493404,0.8435940099833611,0.7219512195121951,0.1424936386768447,0.4924935289042277,0.6861030126336248,0.6338742393509128,0.5423728813559322,0.1127348643006263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030790110702601,0.0056162119967965,0.0087485156955678,0.0113486273952004,0.0141075715041295,0.0165869056104266,0.0191929384663996,0.0219716297581385,0.0245081506464305,0.0270472175034282,0.0296272763606923,0.0320541111989243,0.0344919731135275,0.0371392102771029,0.0393086949348292,0.0415336783283236,0.0439654815611936,0.0463426516164474,0.0485540729972483,0.0509781477627471,0.0678961477880814,0.0836486797265371,0.0994811592683821,0.1146810679050611,0.1290964826343899,0.1467444120505345,0.1636257681712227,0.1803193298749893,0.1954596855064115,0.2103137620378999,0.2277674998924407,0.243422545407397,0.2587802176321105,0.2729287921639713,0.2864630260410943,0.2998395928978373,0.3123996789727127,0.3236890912156466,0.3351776684278555,0.3460116943004588,0.3556434544255925,0.3655702830960562,0.3751271316729345,0.3833415156921677,0.3918758192145249,0.399711932636555,0.4077321392835701,0.4144868191818101,0.421541967731075,0.4281545064377682,0.4315458519997841,0.4345540346616624,0.4371183853459973,0.4395239132012483,0.4421865201421447,0.4443588756257219,0.4455358708998421,0.4466827782559756,0.4471114025400331,0.4487822478802092,0.4490263242557862,0.4503650365036503,0.4517214214235527,0.4523441055985435,0.4534752538382302,0.4553814169198784,0.4561643835616438,0.4582971189441494,0.4571861581207375,0.4566903420687403,0.4571763053149145,0.4582266063545697,0.4594157942354918,0.4568266832917705,0.456963249516441,0.4558787582498166,0.4600916706179864,0.4593580658607753,0.4600965634762851,0.4609650843468026,0.0,2.77455525088062,78.95421395851139,284.69731426330674,453.0627405407348,OR_public_baseline,76 +100000,95754,43639,404.108444555841,9843,101.28036426676692,7619,78.84788102846878,3204,32.98034546859661,77.37657405990127,79.721564075408,63.3458979718325,65.07910865482934,76.99419103465812,79.33849910766459,63.206872012950114,64.94369070464126,0.3823830252431577,383.06496774340815,0.1390259588823852,135.417950188085,23.21836,15.919037814352258,24247.92697955177,16624.932446009836,116.50236,53.69095415990425,120955.8347431961,55359.19560530552,200.49634,91.95758817249566,205500.3446331224,93031.9680798474,5623.50532,2493.79085721881,5822154.103222841,2553778.5007123514,1932.79446,836.8056440772662,1997744.250892913,853207.0549408144,3186.2004,1310.2740671062636,3281736.5331996577,1326677.33621612,0.43275,100000,0,105538,1102.1784990705348,0,0.0,0,0.0,8754,90.6802848967145,0,0.0,19442,199.1561710215761,2462055,0,88511,0,0,5761,0,0,22,0.2297554149173925,0,0.0,0,0.0,0,0.0,0.09843,0.2274523396880416,0.3255105150868637,0.03204,0.3016738402678144,0.6983261597321856,26.04135578610227,4.700838165145486,0.3306208163801024,0.1824386402415015,0.2556765979787374,0.2312639453996587,10.91891359163824,5.234217573792854,34.0146367730989,15900.41350467016,85.73832465804554,15.999124305755917,28.373046668099537,19.835771099181724,21.53038258500836,0.5299908124425777,0.7553956834532374,0.6927352123858674,0.572644721906924,0.1201232032854209,0.6829131652661065,0.9296875,0.8583617747440273,0.7153284671532847,0.1608910891089109,0.4832019197805965,0.6888667992047713,0.6425245732022763,0.5292376017764618,0.1094559585492228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026942165501873,0.0055347748076513,0.0083707055743825,0.011002072412532,0.0136990480839638,0.0160792659952546,0.018659950444066,0.0209396822803936,0.0234517164530045,0.025990377725458,0.0282882532003648,0.030804762882365,0.0335451106176494,0.0358904645678211,0.0384079725170994,0.0406929270586776,0.0433441020543406,0.0457379379026318,0.0483111374481489,0.0505634360224124,0.0679185019727365,0.0840340528781793,0.1000146772062986,0.1152916447714135,0.1292012267740269,0.1469164252944036,0.1637526109868204,0.180456088450938,0.1961678539768661,0.2105742935278031,0.2269652512979598,0.2425442583214301,0.2575376747728632,0.2723074060697595,0.2863168327735257,0.2999634109833575,0.3122417066904948,0.3243748381503541,0.3359752912588286,0.3467664313869282,0.3573545414553958,0.3672322995904037,0.3769075045282885,0.3864268585131895,0.3946651421898947,0.4028912866348979,0.4099666775236139,0.4181111889447876,0.4258190823166383,0.4318704864693278,0.4350987481113749,0.4375129362089663,0.4398422926911989,0.4422644357050603,0.4445256781355375,0.4464096051720157,0.4480150325652499,0.4499487755709045,0.4514329016257922,0.4534969501772316,0.4553973723069933,0.4569705682680404,0.4583262675936917,0.460258988903704,0.461457902043401,0.4632230421328255,0.4641627361902833,0.4639767612602547,0.4655548016142281,0.466483049131192,0.4672127332805882,0.467677096914385,0.4700244435867747,0.4703686420905273,0.4714285714285714,0.4737097753491196,0.4729835552075176,0.4775535420098847,0.4752585965893207,0.4793291731669267,0.0,2.84091694507697,79.19652357503394,287.34370188079475,453.9126243771453,OR_public_baseline,77 +100000,95750,43717,404.1148825065274,9774,100.74151436031332,7543,78.19321148825065,3133,32.29242819843342,77.3313489084019,79.69754422088455,63.31030609897547,65.06301942716033,76.95570278187681,79.31949827636703,63.17402205608433,64.92934285427903,0.3756461265250976,378.045944517524,0.136284042891134,133.6765728812992,23.26632,15.954161153723856,24299.02872062663,16662.30929892831,115.02978,53.02024944054615,119567.53002610969,54808.47003513102,200.54008,91.78126727794672,206405.46214099217,93500.67697178514,5491.49758,2425.0225626296115,5693608.323759791,2491130.2275325707,1841.81408,789.8043431284816,1905581.1070496084,806923.3776998812,3096.11176,1266.922496592573,3193806.4334203657,1288414.0083504766,0.43354,100000,0,105756,1104.5013054830288,0,0.0,0,0.0,8651,89.74412532637076,0,0.0,19404,199.54046997389037,2459814,0,88403,0,0,5703,0,0,31,0.3237597911227154,0,0.0,0,0.0,0,0.0,0.09774,0.2254463255985606,0.3205443012072846,0.03133,0.3005432673651533,0.6994567326348468,26.18480695564837,4.708346955820384,0.3286490786159353,0.1861328383932122,0.2431393344823014,0.2420787485085509,10.984047665997696,5.30958382154005,33.1932578147063,15965.241746593556,85.00601591275444,16.25223519894749,28.130605425820097,20.673958084524084,19.94921720346277,0.5394405408988466,0.7378917378917379,0.6990722065348931,0.5963855421686747,0.1150490730643402,0.7,0.8772845953002611,0.8697183098591549,0.7372093023255814,0.1519756838905775,0.4923709926281502,0.6856023506366308,0.6483516483516484,0.5530085959885387,0.1069767441860465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027558536560654,0.0057393755640508,0.0081197665567114,0.0108209713472871,0.0135709780463488,0.0161114562434439,0.0187313273036881,0.0215546729019675,0.0244556045372255,0.026906610402114,0.0290552182474565,0.0318384959161658,0.0341970938130325,0.0367309079666082,0.0393261906236452,0.041621856386499,0.0438857190195611,0.0463861360452446,0.0488263789267968,0.0514540454962086,0.0687740103557708,0.0853991607630568,0.1010795102862957,0.1162303995288525,0.131066988622584,0.1490390209331598,0.166164328317025,0.1816603283159162,0.1963403946046472,0.2118626788148052,0.2285437102511587,0.2432903714935557,0.259016072128577,0.2736640385457731,0.2866032976836911,0.3000399254724514,0.3130362888809438,0.325580871504353,0.3371864603086286,0.3478116292669502,0.3583633562318269,0.3681810722741871,0.377834470483536,0.3865839286143781,0.3950665431677473,0.403445889158056,0.4112184715773623,0.4184651513024389,0.4259984134621636,0.4336543429018029,0.4366309581777849,0.4397359043067488,0.4419295515631631,0.4446202761364131,0.4472255369928401,0.4486684410529393,0.4509174166057175,0.4521624298448333,0.4535381862601724,0.4543068737417314,0.4564568535590146,0.4579176310958576,0.4591849688967881,0.4602560622511762,0.461853259280912,0.4623417135908214,0.4636366263110751,0.4643473812112297,0.4649003298436828,0.4645835876154441,0.4644072537410843,0.4654142686502334,0.4674354184113895,0.4654797076659928,0.4703915950334288,0.4720229555236729,0.4713846153846154,0.4668827223009925,0.4643945691327237,0.4646464646464646,0.0,2.270448217500844,76.38392354570922,296.64201592244865,445.6173003898171,OR_public_baseline,78 +100000,95470,43356,402.2310673510003,9679,99.84288258091549,7458,77.32271917879963,3102,32.05195349324395,77.22623088476638,79.71533533117336,63.24095407219974,65.07709702221742,76.85633386752436,79.33916282032158,63.10789765926827,64.94402413684519,0.3698970172420246,376.17251085178793,0.1330564129314737,133.07288537222917,23.2133,15.91230258217732,24314.75856289934,16667.332756025266,113.91253,52.046556196491856,118540.58866659684,53749.480958189626,193.58002,88.81524491248281,196696.281554415,88393.90776142766,5423.75988,2390.022781760856,5631545.658321986,2454660.8577241832,1801.74281,768.8628009674545,1868216.1935686604,786559.7384170756,3060.8079,1254.2155802065724,3165963.318319891,1283133.7665961669,0.43023,100000,0,105515,1105.2162983136063,0,0.0,0,0.0,8556,88.80276526657589,0,0.0,18753,190.436786425055,2456016,0,88295,0,0,5783,0,0,27,0.2828113543521525,0,0.0,0,0.0,0,0.0,0.09679,0.2249726890267996,0.3204876536832317,0.03102,0.3063115793581114,0.6936884206418886,26.269583841103877,4.657354867752486,0.3466076696165192,0.1810136765888978,0.2410834003754357,0.2312952534191472,11.056715995952215,5.48199172798405,33.101560384635675,15867.783148608669,83.84614491928907,15.417045880085253,29.315901330827124,19.14928392954011,19.963913778836584,0.5352641458836149,0.7348148148148148,0.6909090909090909,0.5895652173913043,0.1095661846496106,0.6920821114369502,0.912536443148688,0.8616852146263911,0.7466307277628033,0.1325966850828729,0.488788458195724,0.6742800397219464,0.6359918200408998,0.5465288035450517,0.1037604456824512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026650453463038,0.005365819022792,0.0081832395881982,0.0110116929334011,0.0135913829613943,0.01619528104775,0.0188063143501464,0.0214374757321235,0.0238268182143697,0.0263006905596196,0.0288840532107078,0.0311536088834053,0.0335578071584496,0.0361397320461647,0.0387452730766846,0.0412581403294439,0.0437962261802263,0.0461741561938025,0.0485805073709433,0.0507267563277921,0.0677315023184249,0.0842355952830584,0.0992775797343764,0.1143923106108511,0.1286617068943653,0.1461413717447295,0.1617299963852091,0.1777590474564697,0.1932246594122183,0.2076167340270014,0.2249022868124986,0.2407770992200804,0.2558418475831162,0.2702951624928731,0.2835339947250516,0.2972879848838501,0.310254143399098,0.3228364218765861,0.3347063709704949,0.3456313801141387,0.3563419843075351,0.3663834581172108,0.3752404702529391,0.3850559499458549,0.3933383781672606,0.4018358170128953,0.4095894033064303,0.417436186426568,0.4245259659868378,0.4315842596650597,0.4345090381459935,0.4381655288920891,0.4402439024390244,0.4428936962084205,0.4451318154583583,0.4468828238494112,0.448434151178785,0.4509563022977819,0.452487200774872,0.4544221623478779,0.4569423368740516,0.4585577828063359,0.4600343927138399,0.4625881179590634,0.4635756748854887,0.4647995345392997,0.465624547691417,0.4658152487036681,0.4676292501164415,0.4698922116865224,0.4720618364686161,0.4723637151837,0.4723666474099749,0.4743410852713178,0.4750833730347785,0.4774038461538462,0.4800944138473643,0.4868614673113307,0.4883456509380329,0.4927251278018089,0.0,3.111486749510633,75.50462074322164,282.62614289030535,448.6876177270808,OR_public_baseline,79 +100000,95704,43872,405.4898436846945,9873,101.73033520020064,7724,80.05934966145617,3181,32.809495945832985,77.36399481233721,79.74869234831417,63.33329461681414,65.09732367748875,76.9826208821546,79.36577922944382,63.19485152227245,64.96170103451362,0.3813739301826047,382.9131188703485,0.1384430945416923,135.62264297512172,23.64142,16.19848096378414,24702.645657443783,16925.604952545495,117.64384,54.08956374167596,122273.25921591576,55867.547925703046,202.55374,92.60492553702558,208170.60937891837,93994.48647682292,5690.25821,2514.226186743085,5899628.051074145,2581143.3967151823,1932.88949,826.5966732139991,2001585.5554626768,845675.0629399734,3158.30164,1299.687282931595,3259408.363286801,1322374.2464770563,0.43453,100000,0,107461,1122.8475298838084,0,0.0,0,0.0,8834,91.63671319903035,0,0.0,19661,202.00827551617488,2460984,0,88503,0,0,5858,0,0,22,0.219426565242832,0,0.0,0,0.0,0,0.0,0.09873,0.2272110095965756,0.3221918363212802,0.03181,0.2987273945077026,0.7012726054922974,26.153061529871614,4.698713739501807,0.3284567581563956,0.1822889694458829,0.2498705334023822,0.2393837389953392,11.053405183863328,5.359504064615116,33.81853955536063,16012.524793185592,86.7970935347631,16.0596898315521,28.82113005984722,20.62962638445835,21.28664725890544,0.5346970481615743,0.7492897727272727,0.6957035869136776,0.5819361817198486,0.1212435233160621,0.6894519740718916,0.9248554913294798,0.8597063621533442,0.7123287671232876,0.1689008042895442,0.4911232785797246,0.692090395480226,0.6434511434511434,0.5498652291105122,0.1098265895953757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032421150748219,0.0057196750737777,0.0083245350442621,0.0112405227961054,0.0138993467510531,0.0164944882531532,0.0190236239748663,0.0215082315454062,0.0242705041269062,0.026797325387317,0.0294419262875074,0.0318684591605131,0.0342727833779057,0.0367649331780852,0.0394971772986696,0.041616692170892,0.0442844564147718,0.0466870751828983,0.0494495784779467,0.0518655122474708,0.0690116133344473,0.0863967509629877,0.1013984913499165,0.1162198828441322,0.1306643898428359,0.1488009643038403,0.1657546449478238,0.1818539678486695,0.1967669951633051,0.2106188429255952,0.2279449754585378,0.2449335107821815,0.2603450526498999,0.2749967181551656,0.2891368703709818,0.3025130971236169,0.3155286712350171,0.3277299578059072,0.339142776043145,0.3502789903642342,0.3605532727588402,0.3702299455853958,0.3793078937080169,0.3884556318088016,0.3974240470920192,0.405333728058814,0.4133077655787838,0.4208152866242038,0.4280121340973321,0.4349583294810666,0.4369773965582348,0.4395477109762824,0.442503248404045,0.444993909159464,0.4479612374207976,0.4487256302714661,0.450376345793502,0.4517227761871853,0.4537555909721865,0.4536458333333333,0.4546003928085813,0.4560319042871386,0.4566321133911571,0.4586401431905204,0.4591975849644561,0.4578607017915827,0.4594343727338651,0.4614745188311273,0.4644454782951007,0.4660701271358005,0.4666202414113277,0.4678327737463446,0.4731196691651589,0.4743952246308514,0.4737920937042459,0.4706971005552128,0.472355385107063,0.4662004662004662,0.4619580821131209,0.4650882825040128,0.0,2.4481908470316216,75.34249761676884,311.0101355290293,454.7723890791465,OR_public_baseline,80 +100000,95647,43790,405.6583060629188,9846,101.22638451807164,7641,79.07200434932616,3131,32.201741821489435,77.31725194233033,79.72368545347953,63.30264576078415,65.08416928962787,76.9363793461639,79.34416456195396,63.16249995596807,64.94842935057322,0.3808725961664265,379.5208915255728,0.140145804816079,135.73993905464476,23.2562,15.960501800132093,24314.615199640342,16686.88176328802,117.26189,54.18257709719922,121758.89468566708,55814.00882779222,205.06295,94.1047723864586,209149.1944336989,94420.2455096287,5546.10688,2471.237698201323,5740913.5466872975,2526695.7706349846,1889.37067,816.2595012641209,1957229.6883331416,835611.4900523524,3089.79302,1287.6965903885684,3180596.6731836856,1303938.6407275011,0.43398,100000,0,105710,1105.2097818018335,0,0.0,0,0.0,8786,91.00128597865066,0,0.0,19777,201.57453971373903,2459382,0,88459,0,0,5875,0,0,46,0.4809351051261409,0,0.0,0,0.0,0,0.0,0.09846,0.2268768145997511,0.3179971562055657,0.03131,0.3031261986958189,0.6968738013041811,26.24546624606485,4.753402391887821,0.3376521397722811,0.1872791519434629,0.2402826855123674,0.2347860227718885,11.104311912061394,5.408999603560123,33.53749054139357,16002.164891475251,86.52841485968183,16.70113780077085,29.315316452402406,20.03298883698204,20.47897176952653,0.5357937442743096,0.7679944095038435,0.6798449612403101,0.580267558528428,0.1089324618736383,0.6872222222222222,0.9429280397022332,0.8470209339774557,0.7095959595959596,0.131578947368421,0.4891285738743365,0.6994163424124513,0.6268504338948443,0.5436337625178826,0.103021978021978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032824419747333,0.0059220199766769,0.0088190222961933,0.0114623662469896,0.0141934171033219,0.0167770194560456,0.0193724114010568,0.022035612491955,0.0246979261517684,0.0272114419195541,0.0297222706706747,0.0321012772691307,0.0345253535915014,0.0367964698483395,0.0393596695068422,0.0420576702223417,0.0443976821569623,0.0467422684694788,0.0488893512979243,0.0511227404457602,0.0691478246332595,0.0857708379151088,0.1016703587439238,0.1166424648020708,0.1311352606035028,0.1494406164332814,0.1659112380184062,0.1819353464344677,0.1971182110675232,0.2111717936887734,0.2288216852153115,0.244929780299503,0.2601656995416589,0.2745211839814277,0.2878489019162745,0.3018784236322104,0.3158787932920974,0.3276942990601609,0.3388098509191239,0.3493364201068146,0.3597437353012732,0.3696772380193938,0.3789321412902996,0.387672762641242,0.3964026499098835,0.4045238242383042,0.4113940732745095,0.4191828352021226,0.4260817619863903,0.4331189965864888,0.4358780481218439,0.4390657998260797,0.4417832414865056,0.4444009226617922,0.4471311291552645,0.4481204168274797,0.4492767491188619,0.4514106064366674,0.4525678094451328,0.4536330935251798,0.4560080157289776,0.4573035724971576,0.4582414319647099,0.4598953496273812,0.4607524384579656,0.461295879157281,0.4620905197360805,0.4623388229286352,0.4629477518660048,0.4660896995187447,0.4655429316446265,0.4653234128061695,0.4677950772013696,0.4714632427777342,0.4729102167182663,0.4713244228432564,0.4687944382998893,0.4762104380632991,0.4773743016759776,0.48691917219836,0.0,3.1126601005286467,79.79641948433503,300.05384306180986,443.315077067696,OR_public_baseline,81 +100000,95872,43601,403.16255006675567,9688,99.70585781041387,7474,77.5304572763685,3107,32.08444592790387,77.4717338221379,79.7567182281376,63.40399372213196,65.09004956307265,77.10343373271976,79.38128522589865,63.27256569218922,64.95788112100038,0.3683000894181418,375.4330022389496,0.1314280299427395,132.1684420722704,23.66518,16.218850695478952,24684.14135514019,16917.192397654115,114.43369,52.381016220090864,118931.12691922564,54207.22013103551,198.50401,90.4316513806008,203847.5571595461,91966.28373345413,5463.67179,2400.9015091550536,5668653.558911882,2474147.3602331434,1816.95463,777.2969044747434,1883586.2295560748,799199.7996216652,3073.40184,1251.3860943173502,3175685.9562750333,1281378.8075737904,0.43239,100000,0,107569,1122.006425233645,0,0.0,0,0.0,8569,88.93107476635514,0,0.0,19203,197.2630173564753,2465576,0,88540,0,0,5685,0,0,29,0.2920560747663551,0,0.0,1,0.0104305740987983,0,0.0,0.09688,0.2240569855917112,0.3207060280759702,0.03107,0.3074518995995702,0.6925481004004297,26.239752353437485,4.732818466609605,0.3430559272143431,0.1775488359646775,0.2471233609847471,0.2322718758362322,11.00448277926724,5.35765029105882,32.738795938954745,15839.276477531152,83.57204561597294,15.044325630668762,29.084494057554263,19.22340255501913,20.21982337273077,0.5331816965480332,0.7694046721929163,0.6914976599063962,0.5697004608294931,0.1093665403356794,0.6807264206209724,0.9214501510574018,0.8622291021671826,0.7094017094017094,0.1345646437994723,0.4895092769204092,0.7188755020080321,0.6339937434827946,0.5342960288808665,0.1028610354223433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026116003644093,0.0052375115235384,0.007635522926849,0.010343077547706,0.0130070725957239,0.0155361339749916,0.0184275935131611,0.0210222462489417,0.0237117823662765,0.0263130982573836,0.0285746474257212,0.0312596147929358,0.0335096820586573,0.0360321428938893,0.0386855369898879,0.0409326531876665,0.0434742133680878,0.0458695629644215,0.0482919738344927,0.0507617382617382,0.0675043011313278,0.083405634244499,0.0994152659596764,0.1140902930268231,0.1284226723719989,0.1468169228492293,0.1639664093646619,0.1799827676073567,0.195065972073957,0.2096165798666923,0.2271475296953004,0.242471067503755,0.25772759350741,0.2713973799126637,0.2842927279317275,0.2980188825259248,0.3119513390668865,0.3235769800979379,0.3350176742499773,0.3457908644771612,0.3562210437535383,0.366113647242881,0.375366395612708,0.3843455146319268,0.3927378305817753,0.4012573964497041,0.4088769839283032,0.41569186512735,0.4233345859303124,0.4298237507426233,0.4329104709006835,0.4363251039000357,0.4386454632605876,0.4414763605860318,0.444160095223925,0.4461538461538462,0.4479607861799838,0.4496592368221775,0.4513779392609858,0.4536330071333835,0.4548418097194219,0.4555957683741648,0.4564387145781022,0.4579064688266949,0.4584574403680833,0.4583738597828659,0.458685041630778,0.4591597490653317,0.4593355434859279,0.4599073556425205,0.4617605278834257,0.4603114727596055,0.4618842720441847,0.4585808065020318,0.4578957604045118,0.4613686534216336,0.457895562176572,0.4655101197852127,0.4709009513150531,0.469140625,0.0,1.639978342183657,76.91699628730768,277.3877212468413,452.89311632564,OR_public_baseline,82 +100000,95729,43536,402.2709941605992,9768,100.5964754672043,7589,78.56553395522778,3081,31.714527468165343,77.34438518034166,79.69796459748902,63.33412346583962,65.07253865008833,76.97129087300742,79.32173319951383,63.19822453766488,64.93854748313555,0.3730943073342416,376.2313979751895,0.1358989281747398,133.99116695278224,24.288,16.655195208762454,25371.621974532278,17398.275557837704,116.40999,53.81813587683367,120915.35480366452,55536.1023280028,202.47385,93.24825771220252,206753.87813515236,93727.4429638113,5525.14172,2448.5246589441017,5726645.896227893,2513409.600672572,1874.99944,802.5631720690252,1943840.884162584,823557.3045461947,3051.13006,1264.36548469343,3144539.0425054063,1284758.7503176825,0.43128,100000,0,110400,1153.2555442969217,0,0.0,0,0.0,8730,90.46370483343604,0,0.0,19631,200.3259200451274,2455145,0,88361,0,0,6117,0,0,26,0.271600037606159,0,0.0,0,0.0,0,0.0,0.09768,0.226488592097941,0.3154176904176904,0.03081,0.3095744680851063,0.6904255319148936,26.07758257465641,4.681890664623014,0.336935037554355,0.1861905389379365,0.2435103439188299,0.2333640795888786,11.087170910490624,5.361112640612365,32.9387313548098,15869.366475975552,85.53164684967922,16.325741640659963,28.94286262826625,19.87546938896469,20.38757319178831,0.5407827118197391,0.7501769285208776,0.7008212749315604,0.5832862789384529,0.1185064935064935,0.6920492721164614,0.9316455696202532,0.8512658227848101,0.7194805194805195,0.141711229946524,0.4942271239014303,0.6797642436149313,0.6514285714285715,0.5454545454545454,0.112618724559023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028665775292735,0.0054038709154137,0.0081981351271827,0.0112834262616414,0.0139292758810012,0.0164303238219335,0.0190680988972911,0.0218074575994448,0.0245121078982323,0.0269316170225828,0.0292957342377883,0.0317048137124089,0.0343519299183614,0.0367452446421767,0.0394173535388963,0.0418117746752508,0.0443126416793466,0.046677797712259,0.0491992392513068,0.0516634377018103,0.0702622567443414,0.0865679451624718,0.1020348227396685,0.1161426017457145,0.1296370500031634,0.1480036374402571,0.1648990327507212,0.1808249199442535,0.1958327993506771,0.2098159246116406,0.2266722651077161,0.2416837049297374,0.2571251481574111,0.2711649466503411,0.2841271587284127,0.2976367139914505,0.3106612926635926,0.3230253311276909,0.3347183906088575,0.3457143839462736,0.3561899247249566,0.3665011011667682,0.3759569576449953,0.3844092804190847,0.3927819365832877,0.400946894778481,0.4087106175569067,0.4163259047229605,0.4241242607395853,0.430167375660955,0.4329881576812848,0.4361269999171018,0.4388013645306948,0.4416516533968733,0.4437417772993661,0.4453786698344621,0.4470802337090131,0.4491538041590153,0.4503532655523005,0.4516390635981906,0.4538331977063265,0.4544692402890335,0.4555108096651123,0.4566468748583601,0.4574042449377897,0.4582661343626893,0.4586479215482079,0.460544,0.4604853987203774,0.461507260485114,0.4608416945373467,0.4611671547890226,0.4614493499806925,0.4642939859492009,0.4589251439539347,0.4593255167412063,0.4543597800471327,0.4579360033905488,0.4499569830800115,0.4568446407065435,0.0,2.77957011249159,79.25058420736595,289.7022124161049,447.6847378855672,OR_public_baseline,83 +100000,95658,43693,404.1899266135608,9999,103.0441782182358,7781,80.63099793012607,3203,33.03435154404232,77.28108161739658,79.66904587744266,63.29287913429015,65.05643320404934,76.89132894809435,79.27585175713749,63.15257932881765,64.91767485466644,0.3897526693022257,393.1941203051679,0.1402998054725017,138.758349382897,22.98604,15.771305274031912,24029.39639131071,16487.17856742971,118.37546,54.58984583725362,122972.04624809216,56291.14745996532,207.0595,94.64629119809268,212048.558405988,95632.43265529892,5677.89524,2522.957883775992,5889275.544125949,2591132.831311541,1906.08455,825.1595635491078,1973529.793639842,843543.0172585011,3169.0629,1306.5010536569769,3271099.1657780847,1331380.5226729186,0.43305,100000,0,104482,1092.245290514123,0,0.0,0,0.0,8908,92.38119132743732,0,0.0,20056,205.22068201300465,2456671,0,88381,0,0,5796,0,0,31,0.3136172614940726,0,0.0,0,0.0,0,0.0,0.09999,0.2308971250432975,0.3203320332033203,0.03203,0.3051439358187824,0.6948560641812176,25.920920178322596,4.736365743274918,0.3394165274386325,0.1796684230818661,0.24122863385169,0.2396864156278113,11.099996888301645,5.424014829003284,34.363932108617334,16007.99804686329,88.07895445558906,16.23743488248,29.9581500469122,20.896391992198435,20.98697753399842,0.5341215782033157,0.765379113018598,0.678530859522908,0.5849865951742628,0.108151305274374,0.7015092230296255,0.9151670951156812,0.8664495114006515,0.7518987341772152,0.1790281329923273,0.4841455273698264,0.707631318136769,0.6216082881105082,0.5401360544217687,0.0895020188425302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027655371524084,0.0057178195237177,0.0084333803545876,0.0110229500868628,0.0136891564794662,0.0162518838336523,0.0187511470930114,0.0217666516927349,0.0244109378993099,0.0269603578337546,0.0294880602064984,0.0320239024189905,0.0346568763561945,0.0371747977950646,0.0397246418692977,0.0420406137557384,0.0445114308503475,0.0469552762410869,0.0494424333208505,0.0516562089595797,0.069183112717699,0.0854719648185958,0.1011756061719324,0.1169891522784424,0.1314265216336262,0.1490901396529834,0.1665251268550561,0.1824088275391956,0.1977631888458824,0.2121189343584567,0.2293354331388137,0.2446267734628182,0.2592346488600342,0.2739391416741516,0.2875296192208078,0.3012659070484728,0.3145224411297717,0.3275632790136813,0.339616420913814,0.3496890276088403,0.3600009275684951,0.3703820983744986,0.3803888519608774,0.3891226973209561,0.3977214572925551,0.4058764632442923,0.4132635121559172,0.4206928276619942,0.4274135845031027,0.433517343878553,0.4367378461871985,0.439268394069558,0.4416564783486395,0.4442159607980399,0.4465679798222435,0.4481510134612409,0.4502919299368151,0.4517141718158262,0.4526783860474773,0.4535722681325835,0.4560573231459307,0.457094614967135,0.4584551059154809,0.4599097456468228,0.4596883053135354,0.4617632991443907,0.462389702670433,0.4624517374517374,0.4621893936677543,0.4619847452125933,0.4604987182474948,0.4628813835862294,0.4615732661107879,0.4610843560664906,0.4641277168686286,0.4660590069561046,0.4730895967362309,0.4707832573559884,0.4688111888111888,0.4639585822381521,0.0,2.722883107369067,79.69202042120061,306.5758546764763,458.6256786767186,OR_public_baseline,84 +100000,95719,43850,405.67703381773737,9775,100.63832676898004,7699,79.77517525256219,3170,32.60585672645974,77.3612597271838,79.72635533573872,63.34108899169471,65.08879532488437,76.98301500395604,79.34794840429933,63.2040157588934,64.95566342517796,0.3782447232277661,378.4069314393861,0.1370732328013133,133.13189970641304,23.76044,16.325041020221867,24823.11766733877,17055.172975294212,118.18013,54.21045489470428,122824.7578850594,55994.06063028686,204.92935,94.3061697163374,210502.6170352804,95677.57884108536,5635.88482,2494.136116388169,5838490.822093837,2556450.765283855,1897.83197,814.4278724398507,1962632.5807833343,830813.5917754748,3141.92276,1289.6050039553927,3233511.0688578025,1305312.3830764792,0.43462,100000,0,108002,1128.3235303335807,0,0.0,0,0.0,8846,91.74771988842342,0,0.0,19799,203.3034193838214,2460199,0,88417,0,0,5987,0,0,27,0.2716284123319299,0,0.0,0,0.0,0,0.0,0.09775,0.2249091160093875,0.3242966751918159,0.0317,0.303007013161687,0.696992986838313,26.17753044394944,4.675424158256411,0.3352383426419015,0.1797636056630731,0.2467852967917911,0.2382127549032341,10.78172742645826,5.319993626152973,33.67103058078166,16007.396945188197,86.60754221410849,15.893750881004731,29.289899259471973,20.50722569986637,20.91666637376541,0.5372126250162359,0.7514450867052023,0.7098024021697017,0.5736095965103599,0.111578947368421,0.6942384483742157,0.9178082191780822,0.886986301369863,0.7482014388489209,0.1343669250645995,0.4909182643794147,0.6918547595682041,0.657986980470706,0.5222300635144672,0.1057501652346331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027349803993071,0.0058297509935923,0.0083822126605914,0.0110229500868628,0.0136479202684836,0.0163744119264373,0.018977015479371,0.0221677643334864,0.0245074483421432,0.0271498771498771,0.0296104908082392,0.0321573460689159,0.034515740864539,0.0369519531893852,0.0391934285478411,0.0416434050823977,0.0440559657825785,0.0465357632114243,0.0487010961126479,0.0510816556208578,0.0681898874292516,0.0851442448603609,0.1005948197182212,0.1159027098646645,0.1304375322799953,0.1482906615361847,0.1653570027253735,0.1811884138165875,0.1965880442678289,0.2112609618559574,0.2286877214140348,0.2445990242002661,0.2592314718162839,0.2732063013129557,0.2867511216679863,0.3008767268862912,0.3137624502269761,0.3258535598250722,0.3383392125948527,0.3501128176934794,0.3603850648524188,0.3698324153013133,0.3794899722965453,0.3900901332821939,0.3980620249168225,0.4059651111220618,0.4136670838548185,0.4208582236884003,0.4282229286965548,0.4351986658548852,0.4376712976089216,0.4408462747910517,0.444246612121469,0.4459151536262173,0.4486616478460895,0.4498636216541075,0.451271760077723,0.4521204508643771,0.4537025888019265,0.4547811993517018,0.4556566822456432,0.456893962150796,0.4585934513950822,0.4600489751496462,0.4613730234376909,0.4625418415599596,0.4627208943491804,0.4639559944671406,0.4644600804135554,0.4661003170473945,0.4682118588848553,0.4681357951161405,0.4690652104079666,0.4689832089552239,0.4684175213265599,0.4704314105671352,0.4710394489668127,0.4690818238600874,0.4681280646091721,0.4619520264681555,0.0,2.601535623879498,77.89182159165054,299.27287063844585,456.4952265204972,OR_public_baseline,85 +100000,95623,43723,405.394099745877,9769,100.45700302228543,7581,78.41209750792173,3137,32.27257040670131,77.2430810454354,79.64872959595039,63.27207635196621,65.05064591370781,76.85747459541957,79.26321514940591,63.13137657343818,64.91403703787249,0.3856064500158283,385.51444654447664,0.140699778528031,136.60887583532144,23.30944,15.967261884051023,24376.394800414124,16698.139447675792,115.17477,53.37980802396275,119595.31702623848,54972.06059743667,202.24619,93.15276480532852,206135.1766834339,93302.26855201324,5542.21587,2474.2953734656503,5735844.618972423,2527613.74785079,1841.55804,798.3497507499059,1901548.3513380676,810645.7228403625,3096.24104,1284.4296757201273,3187186.9529297347,1298105.406046238,0.43373,100000,0,105952,1108.0179454733693,0,0.0,0,0.0,8706,90.1456762494379,0,0.0,19642,200.02509856415296,2455371,0,88314,0,0,5678,0,0,27,0.2823588467209771,0,0.0,0,0.0,0,0.0,0.09769,0.2252322873677172,0.3211178216808271,0.03137,0.3005427408412483,0.6994572591587517,25.824331018187262,4.684309238018892,0.3371586861891571,0.1797915842237172,0.2425801345468935,0.2404695950402321,11.328355091968112,5.688096125421222,33.683342664541634,15969.634888920573,86.04646120513986,15.795257586051212,29.201442634129155,20.52346656439303,20.526294420566465,0.5464978235061337,0.7468818782098312,0.7030516431924883,0.6121777290181021,0.1152800435019032,0.6955291454442558,0.9046242774566474,0.8757961783439491,0.7354988399071926,0.1353591160220994,0.5012039903680771,0.6932153392330384,0.6467842323651453,0.5739942528735632,0.1103588354773189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028782227987676,0.0055383117278315,0.0084565952306021,0.0114002377589693,0.0138537121235238,0.0164977850196038,0.019209788427224,0.0220143767358274,0.0245725621727748,0.0270342228684948,0.0295354322633576,0.0319277850805126,0.0341536657856577,0.0367165286191123,0.0390582260711594,0.0413202630599329,0.0436840905794849,0.0459805905859152,0.0484189723320158,0.0506693356687101,0.0683255128593673,0.0851970961963524,0.1014584055186316,0.1162891069097646,0.1305706593464604,0.1487892936928924,0.1654217622746156,0.1815671347386154,0.1969030573480154,0.2117859367950673,0.2280870259653364,0.2442967428546645,0.2598435491251389,0.2741016652059597,0.2875855909496874,0.30159399698073,0.3143557156601705,0.3258930081997722,0.3372280877400564,0.3486898736356437,0.358476119766592,0.3683605884766426,0.3777126864786661,0.3861566922134397,0.3949818429967585,0.4037919263876521,0.411061830152408,0.4192389330741887,0.4266963553263799,0.4333466082570025,0.4362393393799919,0.439169837426496,0.4411464245175936,0.4438748762159958,0.4458241478082212,0.4474103400813473,0.4490828184524762,0.4516413050701043,0.4533637557906382,0.454599750239806,0.4557390774851576,0.4575075376884422,0.4582401907559983,0.4595461890347982,0.4602160017632797,0.4618439640696217,0.4635465388213283,0.4642661599407388,0.4646795934549124,0.4657186180894225,0.4686616399622997,0.4691852176773769,0.4700760283319254,0.471946414499606,0.4720289997060841,0.4715497111957724,0.4680646710421002,0.467032967032967,0.4607285145133751,0.4696066746126341,0.0,3.4302683530046703,77.76951768122024,301.98174315815925,441.2316340542069,OR_public_baseline,86 +100000,95809,43522,402.530033712908,9875,101.53534636620778,7669,79.41842624388106,3137,32.29341711112735,77.44904619750217,79.77435426763775,63.38601454967061,65.10645772187355,77.07001252491553,79.39325759077437,63.24899524893013,64.97195520195841,0.3790336725866439,381.096676863379,0.1370193007404836,134.50251991514506,23.66562,16.198526213312178,24700.83186339488,16907.102895669694,116.64766,53.351683985946735,121106.39919005522,55041.93852339869,198.87393,90.62211821069724,203777.73486833175,91656.84737932544,5568.36998,2449.1241799398936,5769787.608679769,2514131.8539813864,1869.97114,793.2554958456898,1935730.672483796,812053.5491861646,3104.28556,1273.938140912138,3198659.8127524555,1293959.0362351127,0.43161,100000,0,107571,1122.7650846997674,0,0.0,0,0.0,8776,90.910039766619,0,0.0,19297,197.60147794048572,2466504,0,88599,0,0,5866,0,0,24,0.250498387416631,0,0.0,0,0.0,0,0.0,0.09875,0.2287945135654873,0.3176708860759493,0.03137,0.3065938278704236,0.6934061721295763,26.21911693918699,4.716241603689476,0.3369409310209936,0.1846394575563958,0.2442300169513626,0.2341895944712478,11.065182857966326,5.319376552576481,33.17243558327967,15853.826064244417,85.73379901016173,16.209308434136315,28.980812809900044,19.971250323700254,20.57242744242512,0.5330551571260921,0.757768361581921,0.6842105263157895,0.5651447661469933,0.1238654564869193,0.68023598820059,0.8932584269662921,0.851138353765324,0.732824427480916,0.1626666666666666,0.4912956143287579,0.7122641509433962,0.6368604073522106,0.5181753385602281,0.1141522029372496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002673607243045,0.0052710003750519,0.0078739358517751,0.0107373960036976,0.0134028900617265,0.0159754818608534,0.0187392310594088,0.0212902764878188,0.0238937148696985,0.0260817959501079,0.0287749141773838,0.03142478884225,0.0341491997245037,0.0365714285714285,0.0388205323899792,0.0410463566580227,0.0436456597563626,0.0459041891331397,0.0483225799748568,0.0507110583630041,0.0680068434559452,0.0840861564199079,0.1003175867598813,0.115058474923557,0.1291073875013173,0.1468735466959793,0.1637795776439657,0.1796930668850436,0.1944195475885616,0.2090330734298689,0.2268063412850351,0.2426986202202029,0.2575033661990183,0.2713410973706327,0.2842914401800911,0.2982718015059541,0.3115418894830659,0.32437227687194,0.3361877576910878,0.3465654440684167,0.3574184901910945,0.3672051111344709,0.3767188016821812,0.3853574463501334,0.3939430706884418,0.4016767823506962,0.4094521643506948,0.4166285452881976,0.4230754304490123,0.4298429526484433,0.4325408578121213,0.4354057105096506,0.4379653655234657,0.4407488922996727,0.4426639289380886,0.4439245167229211,0.4455103302836666,0.4474979018907666,0.4482888561542941,0.4503279217288463,0.4522818450643211,0.4536133685695551,0.4542269868737602,0.4562964301036421,0.4576901572793349,0.4590966519267214,0.4609019087711204,0.4619819705029783,0.4622425629290618,0.4637049590445063,0.4659539855914478,0.4659022985382818,0.4648760330578512,0.4686648501362397,0.4714202673900406,0.4768800194694573,0.4771653543307086,0.4738500315059861,0.481418439716312,0.4807389937106918,0.0,2.437538254819627,75.23914356982556,295.5381659811131,461.8903251131656,OR_public_baseline,87 +100000,95813,43743,404.882427228038,9859,101.48935948148998,7618,78.95588281339693,3225,33.35664262678342,77.3497797498425,79.68255883501352,63.33168066437421,65.05972139884591,76.96200691652939,79.28951680526326,63.19195349376212,64.92069796475778,0.3877728333131074,393.04202975026215,0.1397271706120904,139.02343408813067,23.77804,16.314732959195076,24817.13337438552,17027.68200473326,116.6739,53.54449573721736,121212.86255518562,55324.72184068692,200.27178,91.51064381859332,205497.10373331385,92843.25225003224,5591.15967,2470.78704467269,5797557.032970473,2540825.0390580506,1904.7579,815.1320308914334,1974504.5035642344,837262.3035406817,3189.49334,1305.015280388328,3299991.7965203053,1335708.5771699464,0.4334,100000,0,108082,1128.0515170175238,0,0.0,0,0.0,8733,90.56182355212758,0,0.0,19402,199.08571905691292,2458950,0,88377,0,0,5846,0,0,24,0.2400509325456879,0,0.0,0,0.0,0,0.0,0.09859,0.2274803876326719,0.3271122831930216,0.03225,0.3087190320722104,0.6912809679277895,26.103282233349884,4.717268902571536,0.3338146495143082,0.1789183512733,0.2480966132843265,0.2391703859280651,10.982685505294498,5.32840906025814,34.238494159087494,15903.914130144733,85.79446149888372,15.655325903555578,28.82869474076236,20.254030277930443,21.05641057663533,0.5353111052769756,0.7490829053558328,0.6948486040110106,0.5740944017563118,0.1291005291005291,0.6875725900116144,0.9178470254957508,0.8524046434494196,0.7211055276381909,0.1603260869565217,0.4908412483039349,0.69009900990099,0.6458762886597939,0.5330056179775281,0.121550591327201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030796037036286,0.005748932848003,0.0084336371201818,0.0107590242713021,0.0133760553351642,0.0157731276411588,0.0184033442088091,0.0209568918877535,0.0236413626746527,0.0261619873284271,0.0288772026939754,0.0316754625541614,0.0342405889792602,0.0366690007414119,0.0391986961275814,0.041363133802453,0.0438693649397029,0.0462923585972264,0.0484067035855663,0.0506319888386814,0.0676563869298501,0.0842273668360625,0.0994256246855609,0.1146760548578634,0.1283045916431252,0.1467394177796106,0.1628496568403857,0.179133229740948,0.1946764649334558,0.208863814314674,0.2258572013534191,0.2417521756072217,0.2567779276730928,0.271725344412858,0.28476165324178,0.2983195140336097,0.3120310825294748,0.3243757244297401,0.336243896900193,0.3472152188860875,0.3578740157480315,0.368428444361219,0.3780259604907859,0.3868716423637759,0.3952532645964545,0.4033919210607462,0.4118582718585223,0.4193351009585968,0.426969791342261,0.4332583079571031,0.4361335334442056,0.4389268616653292,0.4418831996826386,0.4441111806758783,0.4460723425270498,0.4482269065769575,0.4499569144352599,0.4520005959574221,0.4533770378676787,0.4554795138951588,0.4562578246519215,0.4565047571357035,0.4567830445124023,0.4575010769265649,0.4584482464061699,0.4595031253310732,0.4610906774016044,0.4620004472414784,0.4624322783005418,0.4633125377339505,0.46297670965946,0.4640476835545922,0.4610511345271187,0.4621200189006142,0.4636839047065659,0.4636429961089494,0.4653748411689962,0.4636591478696741,0.4691288412743163,0.4680594616311772,0.0,2.064407659432024,77.14449693576948,297.5949605055898,453.1403997783817,OR_public_baseline,88 +100000,95800,43783,405.4488517745303,9838,101.36743215031316,7643,79.17536534446765,3198,32.954070981210855,77.41775944651599,79.74515902586356,63.37436231324406,65.09482160040456,77.03500673925328,79.35999595481746,63.23503568334689,64.95770795813705,0.3827527072627106,385.1630710460938,0.1393266298971767,137.11364226750788,23.95514,16.44180521086339,25005.36534446764,17162.635919481618,117.66847,54.32555343724574,122189.61377870564,56070.926836719154,202.88885,92.41136482886048,208216.6283924844,93725.57513834888,5611.17242,2487.7652096874563,5811202.150313153,2551002.1176056224,1909.82306,822.0634092242074,1974503.9457202507,839192.2376513195,3155.22536,1301.796065516682,3251726.8893528185,1322625.913769899,0.43398,100000,0,108887,1136.60751565762,0,0.0,0,0.0,8857,91.80584551148226,0,0.0,19622,201.3465553235908,2460817,0,88487,0,0,5956,0,0,28,0.2922755741127348,0,0.0,1,0.0104384133611691,0,0.0,0.09838,0.2266924743075717,0.3250660703394999,0.03198,0.3058551617873651,0.6941448382126348,26.03885542190087,4.7200639267019415,0.3379562998822452,0.1757163417506214,0.2466309040952505,0.2396964542718827,11.014102283960575,5.465941068453619,33.9768242886634,15912.81580961632,85.94066140247821,15.527072984687322,29.11641320261102,20.42550668643655,20.87166852874333,0.531859217584718,0.7431124348473567,0.6933797909407665,0.5829694323144105,0.1103448275862069,0.6779176201372997,0.898876404494382,0.8611570247933884,0.7348484848484849,0.1355498721227621,0.4885496183206106,0.6869300911854104,0.6420626895854399,0.5410863509749304,0.1037483266398929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028858129385676,0.0058285100301055,0.008767034327404,0.0112733846560094,0.01393069226389,0.0164400016287308,0.0188767709713586,0.0210765901853515,0.0235900161491445,0.0264461456584926,0.0291003392818704,0.0314729462003551,0.0340247938981517,0.0366191383126576,0.039006836249652,0.0411282909346306,0.0433311255536697,0.045927200721565,0.048254726781633,0.0505038937242327,0.0677983785983327,0.084035546262415,0.0998815426708458,0.1145765489421602,0.1295092845180792,0.146838813287127,0.1638574894324791,0.1795545159746956,0.1951000896325067,0.2097233828287373,0.2265364510508314,0.2420667077242228,0.2574093984513298,0.2717502894213757,0.2850141210342971,0.2984838424081452,0.3116531165311653,0.3238258993290853,0.3349886058297336,0.3468848029675085,0.3577533859979875,0.3684228984253533,0.3784544433276178,0.3871072121952973,0.3950749334532593,0.4027983417234231,0.4108900969511737,0.4183386198901925,0.4258814985800059,0.4323106601131018,0.4349509063444108,0.4384749178653267,0.4415573399683329,0.4440366173889074,0.4473000805946091,0.449562754033748,0.4513952970375791,0.4531740005941966,0.4548201043669321,0.4546745009253768,0.4557712645414715,0.4572809355236466,0.459179794737509,0.4588055061166557,0.45977906467468,0.4619872234834486,0.4623276783907979,0.4616956730001597,0.4631917172438415,0.4641818769181069,0.4644083526682134,0.466261991219988,0.4669708263719316,0.4665994258670184,0.4665251784680687,0.4684938211183164,0.4714148834238262,0.4679865206402696,0.4642051860202931,0.4602609727164887,0.0,2.3118337090651737,77.93004232421178,298.4678830761375,449.3098828516495,OR_public_baseline,89 +100000,95725,43675,405.56803342909376,9854,101.63489161661008,7632,79.17471924784539,3173,32.79185165839645,77.3893283971574,79.75008810125792,63.35181630130408,65.09350161423413,77.00899079154253,79.36474590452438,63.21491853769377,64.95778397548172,0.3803376056148693,385.3421967335322,0.1368977636103068,135.7176387524106,23.10396,15.827091475063932,24135.76390702533,16533.916401215913,117.00177,53.66389680776423,121701.43640637242,55534.94573806658,199.4435,91.43807486026807,205250.38391224865,93101.84583795728,5599.06775,2472.6082277174646,5811624.100287281,2545539.4596160525,1880.3561,808.4894891004595,1948140.3708540087,828405.0761039023,3144.13094,1281.832281773161,3250792.938103944,1308276.6768608375,0.43325,100000,0,105018,1097.0801775920606,0,0.0,0,0.0,8781,91.1674066335858,0,0.0,19320,198.7255158004701,2463274,0,88534,0,0,5657,0,0,34,0.3447375293810394,0,0.0,0,0.0,0,0.0,0.09854,0.2274437391806116,0.3220012177795819,0.03173,0.3017489909667499,0.6982510090332501,26.06122735670545,4.780765216428174,0.3321540880503145,0.1840932914046121,0.2480345911949685,0.2357180293501048,11.17496569371336,5.363349806911631,33.467834905632074,15867.51987781821,85.42423047712188,15.98366257716413,28.60354626319418,20.013073998252715,20.82394763851085,0.5321016771488469,0.7587188612099645,0.6844181459566075,0.58532518065592,0.109350237717908,0.6934349355216881,0.9517045454545454,0.8524046434494196,0.7422680412371134,0.1267217630853994,0.4856564292946338,0.6942070275403609,0.6319875776397516,0.5421686746987951,0.1052287581699346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027142813737504,0.0054020087769973,0.0079222584015499,0.0103165013251017,0.0131755520312309,0.015786902265741,0.0181905266590575,0.0207954939695108,0.0232969233756015,0.0258060555208791,0.0281791167127779,0.0305946567078425,0.0330555584097985,0.0357793537894617,0.0381672304265324,0.0403439153439153,0.0425186090089343,0.0446860153932327,0.0471686346249792,0.0496385190741088,0.0670398061902176,0.0832339214332056,0.0988986784140969,0.1141264917722517,0.1280491661571546,0.14666285943928,0.1630654998674091,0.178567246170061,0.1941990278297099,0.2087068410894274,0.226460199862164,0.2432315496857795,0.2573873149094388,0.2710222115289974,0.2848889035623493,0.2984122059589367,0.3117358730725857,0.3246722556687109,0.3359749313108835,0.3474771562546576,0.3572007409122482,0.3667166030757707,0.3763732361019036,0.3854058007505725,0.3941225105172288,0.4022127932506105,0.4093860462784226,0.4176742645278836,0.4252367977163617,0.432168775032716,0.4358984727782495,0.4387755102040816,0.4412648689836176,0.4439205559343672,0.4460388728948821,0.4475776072817847,0.4490386143333863,0.4504713871308017,0.4521213578063563,0.4535140869127456,0.4544063763079364,0.4556626169529395,0.4572045834833626,0.4585993028204083,0.4591891496316534,0.4611285514548764,0.462745211336781,0.4634620285423038,0.4635596539324242,0.464946583350131,0.4673907997957573,0.4686074299369976,0.4712028377942599,0.4722092842726285,0.470854610270739,0.4723636363636364,0.4695924764890282,0.4742738589211618,0.470740847506486,0.4670682730923695,0.0,2.1858255688239083,76.0681077942123,292.6418086925041,459.0515421966265,OR_public_baseline,90 +100000,95658,43836,407.0647515105898,9735,100.28434631708797,7594,78.62384745656401,3167,32.64755692153296,77.35982293729873,79.73719811997839,63.33991942654043,65.09063657317164,76.96858437452218,79.34120326033026,63.19738719454798,64.9492947417903,0.3912385627765502,395.99485964812686,0.1425322319924546,141.3418313813395,24.44046,16.731797057406613,25549.83378285141,17491.267910061484,116.83924,54.27292276999975,121375.16987601663,55968.91297120965,201.70162,93.00722333399852,206272.47067678603,93673.36082762314,5577.87075,2487.451505076335,5780455.821781764,2549759.753576633,1901.35422,815.8682249456483,1969814.704468001,835060.4984006947,3138.2122,1311.6705521105976,3237977.35683372,1334857.4272032273,0.43408,100000,0,111093,1161.3560810387005,0,0.0,0,0.0,8821,91.41943172552216,0,0.0,19507,199.2933157707667,2454306,0,88248,0,0,6212,0,0,18,0.1881703568964435,0,0.0,0,0.0,0,0.0,0.09735,0.2242674161444895,0.3253210066769388,0.03167,0.3057424198108608,0.6942575801891391,25.87884570663191,4.774711649967616,0.324993415854622,0.1790887542796945,0.2536212799578615,0.2422965499078219,10.88923233888476,5.182442918245825,34.24889385447338,15978.318403582967,85.91005262094056,15.747728823949595,28.09990523502529,20.69891798345576,21.36350057850992,0.5373979457466421,0.7580882352941176,0.7094813614262561,0.5896739130434783,0.1111111111111111,0.6797349530646052,0.9324324324324323,0.8613861386138614,0.7235023041474654,0.1246882793017456,0.4928237938786097,0.692929292929293,0.6600429645542427,0.5483641536273115,0.1075409836065573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026937254425406,0.0053719301446366,0.0081570537208948,0.0108061993459405,0.0135431918008784,0.0161738510865692,0.0185247455140158,0.0214973676692649,0.0237900672128133,0.0260045830264342,0.0283876123057379,0.0308595112542831,0.0332089667293638,0.0356462557016505,0.0379684163838719,0.0402153916117163,0.0426419586935141,0.045065134417524,0.047853207194095,0.0500343914792504,0.0688913034393413,0.0855165336851584,0.1011398702689086,0.1157933501683501,0.1296198633026749,0.147939262472885,0.1651222282372172,0.1810996783195926,0.1959396615315536,0.2107771575783598,0.2279198594630713,0.2448747522661555,0.2602378957220124,0.2750985113835376,0.2886218707666553,0.3021696733300829,0.3148063374384511,0.3270753655793026,0.3388830252062692,0.3498757031079951,0.3598411614202855,0.3689450014054155,0.3789756837465042,0.3883777007329918,0.3970727674989667,0.40513434161506,0.4123905116349009,0.4197804719470685,0.4266801650961763,0.4337764126462956,0.4364203616914952,0.4391143911439114,0.4420791728631116,0.4444396032126414,0.4467945270956563,0.4477708577418758,0.4497693940409505,0.4518956717703983,0.4538138739703317,0.4553774504494747,0.4557321763513385,0.4571691433828677,0.4590348400246279,0.4597224112124098,0.461591003342034,0.4627406388830125,0.4647244140004046,0.4683006327091455,0.4688547984302533,0.4704122877930477,0.4719977709668431,0.472492789900419,0.4756160830090791,0.4738785450545997,0.474623968947113,0.4726153846153846,0.4736758642562639,0.4667642140468227,0.4696842693489801,0.4685509554140127,0.0,2.913449211449949,80.31923399826533,293.15690109641645,442.8152524352944,OR_public_baseline,91 +100000,95848,43575,403.9833903680828,9809,100.83674150738668,7643,79.1252816960187,3197,32.95843418746348,77.34109898624328,79.6306977312617,63.34986309044478,65.04357749101412,76.94937354988005,79.23571801276768,63.208812482029806,64.9044867236911,0.391725436363231,394.979718494028,0.1410506084149716,139.09076732302594,23.7622,16.2867486780146,24791.54494616476,16992.267630012728,116.59517,53.899485129213446,121044.7479342292,55633.17453594592,202.86372,93.76540507334086,207483.04607294884,94583.7153835627,5525.64778,2464.979985621741,5726821.404724146,2533569.8038787893,1888.65087,818.7603440327733,1958018.3624071449,841781.6897929775,3154.61584,1301.4371546294442,3255777.314080628,1327704.9288832669,0.43234,100000,0,108010,1126.8884066438527,0,0.0,0,0.0,8753,90.68525164844336,0,0.0,19693,201.26658876554544,2457699,0,88456,0,0,5597,0,0,26,0.2712628328186295,0,0.0,0,0.0,0,0.0,0.09809,0.2268816209464773,0.3259251707615455,0.03197,0.3100910323455355,0.6899089676544644,25.87843338213615,4.662226963136971,0.3455449430851759,0.1886693706659688,0.2449300013083867,0.2208556849404684,11.141430580664208,5.464207007628617,34.30827738692344,15834.407863496192,86.80247780177521,16.73919060140192,30.10029464666276,19.098023209173853,20.864969344536675,0.5401020541672118,0.746879334257975,0.6936766376372586,0.5841232227488151,0.1244658119658119,0.7069436850738108,0.9043927648578812,0.8895705521472392,0.7602040816326531,0.1633165829145728,0.4876160990712074,0.6890995260663507,0.6294620412267471,0.5308641975308642,0.1139755766621438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028555516176396,0.0055628172781712,0.0081956404872754,0.0110362052510812,0.0138129408655703,0.0164149637710657,0.018867732306407,0.0212700841622035,0.0238700781369695,0.0264024714595523,0.0288553137003841,0.0311586547830278,0.033432277811444,0.0359601197641756,0.0381266422793549,0.0405837788741407,0.0427481231774657,0.0450297366185216,0.0472388625297189,0.0494938249768501,0.0671665137232001,0.0830476588628762,0.0980704364040141,0.1128801882036632,0.1273759253604035,0.1454086482604195,0.1623620145348221,0.178120348713587,0.1929783374239675,0.2075861995048284,0.2248232217235478,0.2411469487528933,0.2568067153792623,0.2718804325246274,0.2854580270282167,0.2989527345265141,0.3120437548833575,0.3237637579058723,0.3354033036271783,0.3470582842474387,0.3563332831656575,0.3659530136136441,0.375965136658614,0.3854265388629629,0.3943142836289321,0.4018823180672892,0.4093691207826414,0.4167463809706013,0.4238381373859551,0.4303596264653288,0.433206261659502,0.435937111436545,0.4394952270345296,0.442536596723029,0.4448905000149795,0.4461795097539502,0.4475627297426882,0.4491343967334473,0.4504755799650028,0.4519119140908431,0.4529805364393693,0.4544960881719997,0.4562816432035205,0.4575844880413408,0.4590579888653495,0.4608372540633019,0.4604106428341949,0.461257711314234,0.4605945012235497,0.4633619811820292,0.4624602134431754,0.4614166348096772,0.4643854295175638,0.4642941130359802,0.464511732061143,0.4648874677161481,0.465736040609137,0.4683333333333333,0.4742355605889015,0.4736006351726876,0.0,2.448166524189749,81.57384083073461,298.5147840628616,444.65165853662825,OR_public_baseline,92 +100000,95635,43413,402.2272180686987,9725,100.26663878287238,7544,78.2035865530402,3106,32.05939248183196,77.31769350596971,79.73876559429804,63.289715480586615,65.0807117822574,76.92978140821404,79.34785260982487,63.14913121047453,64.94222475908684,0.3879120977556738,390.91298447317513,0.140584270112086,138.48702317055483,22.95678,15.727426675689443,24004.34987190882,16445.058724600036,115.05887,52.88509704985013,119556.88816855752,54547.05209824566,199.34438,91.56645804487792,204033.93109217336,92313.18124892985,5485.39034,2430.234957635771,5690695.86448476,2496232.8086029063,1857.84276,797.8736753212045,1924048.4655199456,815805.2276552365,3064.21612,1264.5716601974989,3164839.086108642,1287540.7467884724,0.43071,100000,0,104349,1091.106812359492,0,0.0,0,0.0,8635,89.59063104511947,0,0.0,19276,197.2395043655565,2459984,0,88403,0,0,5682,0,0,42,0.4182569143096146,0,0.0,0,0.0,0,0.0,0.09725,0.2257899746929488,0.3193830334190231,0.03106,0.3053886412095367,0.6946113587904633,26.19651473781269,4.650152712605342,0.3381495227995758,0.1822640509013785,0.2376723223753976,0.2419141039236479,11.080272246725157,5.522318563295472,32.95423029641895,15879.04086870838,84.97570479387646,15.808383856884843,28.953048343452547,20.391068321516222,19.82320427202284,0.5345970307529162,0.738909090909091,0.6922775382203058,0.566027397260274,0.1215839375348577,0.6869266055045872,0.9073569482288828,0.8848080133555927,0.6972010178117048,0.1584415584415584,0.4887931034482758,0.6775793650793651,0.6331967213114754,0.5300279329608939,0.1115056818181818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026136639922197,0.0053847401938912,0.0081015228426395,0.0106403520360979,0.0130536083103564,0.0157294213528932,0.0182808642605023,0.0207909766139825,0.0232517679326189,0.0258615387769326,0.0281379282026012,0.0306105661463795,0.0333748674170262,0.035764390344543,0.0383117218577258,0.0406680740096858,0.043225813140896,0.0458180987202925,0.0481636815868621,0.0507148890905109,0.0675946827188362,0.0840039398130684,0.0996502211064777,0.114026310523156,0.1282262493135639,0.145916519270894,0.1631137088204038,0.1792502105251937,0.1948179766145683,0.2095641152334099,0.2264773781527109,0.242115872293387,0.2571142197237112,0.2711099425967311,0.2845929110853867,0.2986548876853414,0.3118437091128681,0.3243093984920036,0.3357424516187684,0.3467992613238819,0.3569921639541892,0.3678116466851832,0.376398296539698,0.3856847619734218,0.3945258231982256,0.4030940701108379,0.4107360154554464,0.4182430450144776,0.4252933303881187,0.4321426204519848,0.4347384940068725,0.4372390721335951,0.4400781681464803,0.4428328759963413,0.4457167597264936,0.447031252409072,0.4485911223154737,0.44978678390797,0.4514330936241957,0.4530430408852482,0.4549655757804395,0.4570410478958474,0.4585132601689381,0.4597408450704225,0.4603321033210332,0.4608734614269523,0.4620441112873,0.4649566129493658,0.4663890964734351,0.4691233451727478,0.4679812119239176,0.4691391592800043,0.4720356497029191,0.4717628705148206,0.4735876388218252,0.4727006229388054,0.4786744886633899,0.4764180344899231,0.4771559109080525,0.4799679487179487,0.0,2.604592387614281,77.59006155305589,292.18209257382665,444.48798373240646,OR_public_baseline,93 +100000,95708,43713,404.2399799389811,9874,101.7156350566306,7633,79.16788565219208,3164,32.72453713378192,77.34880342590687,79.70695566469603,63.338894218876014,65.0774207356328,76.96530301987009,79.31688656937148,63.19854543399012,64.93720098670676,0.3835004060367737,390.0690953245487,0.1403487848858944,140.21974892604305,23.48852,16.056918483953826,24541.85648012705,16776.986755499885,115.64987,53.35355313257766,120227.3895599114,55137.41080429813,199.5423,91.54656391937496,203969.09349270695,92366.58706912136,5599.03718,2488.901056100471,5812452.072971956,2562842.715447475,1886.23395,817.5658734404883,1956787.9278639196,840195.7134622893,3134.88712,1303.6648183795703,3244641.263008317,1335562.107789452,0.43345,100000,0,106766,1115.538930914866,0,0.0,0,0.0,8728,90.56714172274,0,0.0,19372,198.05031972248923,2459857,0,88460,0,0,5643,0,0,20,0.1985204998537217,0,0.0,0,0.0,0,0.0,0.09874,0.2278002076364055,0.3204375126595098,0.03164,0.3082145930955341,0.6917854069044659,26.081666529461238,4.707907363547874,0.3334206733918511,0.1794838202541595,0.2457749246691995,0.2413205816847897,10.884904827073871,5.295939768804152,33.89584079020631,15932.75750047389,86.08563372551959,15.88690031214948,28.71498500974577,20.6644563499326,20.819292053691733,0.5262675225992401,0.7445255474452555,0.6817288801571709,0.5727470141150923,0.1103411513859275,0.6659051970302684,0.9083094555873924,0.8537005163511188,0.7014563106796117,0.1564792176039119,0.4846990819449167,0.6885406464250735,0.6308553971486762,0.5356643356643357,0.0974778459441036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027442204287464,0.0054940599278271,0.0081172949114707,0.0105852355265697,0.0133500081340491,0.0160533414770702,0.0187958045807128,0.0213943043788914,0.0238311787849368,0.0264060181157566,0.0290265051349855,0.0317545030020013,0.034266855838628,0.0367018757592604,0.0391780652348827,0.0416929292511805,0.0439842617519155,0.0465557849739051,0.048847437537041,0.0514936492555197,0.0678711294449376,0.0840825126374949,0.1001217030027068,0.1142652721954504,0.1281951198928191,0.1465690527073062,0.1638436067244014,0.1789140782229983,0.1941740310533121,0.2078737284862011,0.2254272353080619,0.2413957314169444,0.2572485448512212,0.2718769486593224,0.2859690058994453,0.3002937427257108,0.3137550705689094,0.3259968461365172,0.3382414760784848,0.3489038708493854,0.3591722284019281,0.3689289687884289,0.378331930830953,0.3867484191454386,0.3955743169265954,0.4038860359470669,0.4116983685437185,0.4190810018481932,0.4260145519629586,0.4328285166324978,0.4355904490358499,0.4389374663296175,0.4415935465609963,0.4435145227612862,0.4463367224880383,0.4484326356995345,0.4502838191211174,0.4513761467889908,0.452870158276355,0.4541734270776996,0.455989110707804,0.456839415475525,0.4567092685614972,0.4585760591155337,0.4604270896888346,0.4624470338983051,0.4644516728624535,0.466048986919723,0.4673107890499194,0.4687880016214025,0.4717060416472126,0.4731952565713973,0.4732357723577235,0.4736468919877097,0.4739198131568704,0.4759266100233961,0.4785178086567641,0.4689289501590668,0.4663986214819069,0.4659455128205128,0.0,2.3232094287183704,78.2216636197296,293.92103328821344,456.43660509831903,OR_public_baseline,94 +100000,95637,43634,405.4393174189906,9587,98.94706023819234,7504,77.87780879785021,3188,32.94749939876826,77.26744378178137,79.68412591922623,63.28338998351626,65.07009123219505,76.8854070398266,79.29646239620769,63.145000400251256,64.93197391139245,0.3820367419547636,387.6635230185457,0.1383895832650026,138.11732080260697,23.17678,15.920746901819555,24234.114411786235,16647.058044292018,115.86876,53.1631534615525,120594.7384380522,55028.47586347597,196.92649,89.88505488362405,202132.37554502964,90994.60865149566,5503.60462,2425.5486428108024,5717696.874640568,2499310.8316863584,1899.37035,804.6137585723532,1974610.8409925029,829953.3855232603,3154.67256,1291.7193329906622,3264392.3795183874,1323047.3630352183,0.43292,100000,0,105349,1101.5506550811924,0,0.0,0,0.0,8679,90.1638487196378,0,0.0,19088,195.83424825119985,2459151,0,88380,0,0,5814,0,0,25,0.2614051047188849,0,0.0,0,0.0,0,0.0,0.09587,0.2214496904739905,0.3325336393032231,0.03188,0.3012618296529968,0.6987381703470031,25.8606045686796,4.762341710404632,0.3388859275053305,0.1800373134328358,0.2526652452025586,0.228411513859275,11.1464238446596,5.473437035714539,34.00149923422031,15852.494238161926,84.42850743112879,15.596250681102058,28.73130402675096,19.207735416015712,20.89321730726006,0.5345149253731343,0.7623982235381199,0.6881635863153756,0.5758459743290548,0.1286919831223628,0.6785304247990815,0.9088319088319088,0.8550247116968699,0.7083333333333334,0.18,0.4909753557792433,0.711,0.6358471074380165,0.5375939849624061,0.1149732620320855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026141406772448,0.005211924558913,0.0079800194931773,0.0106901877896106,0.013296167814525,0.015877703996415,0.0183025062707751,0.0207250712105279,0.0231290708493951,0.0256423385321194,0.0279780524075688,0.0304375070623645,0.0326519695083687,0.0352093809249031,0.0375416756985518,0.0399061275548709,0.0424538072748363,0.0448596190772743,0.047307980361155,0.0498769756870595,0.067033851363356,0.083401411843566,0.0988920976634287,0.1141097188585869,0.1286249670097651,0.1469806545885791,0.1638559079034005,0.1791841606103876,0.193974138207643,0.2086192639367677,0.2261609473071199,0.2420375265415782,0.2579107207001274,0.2726994133613519,0.2862790441581324,0.3001008500216107,0.3131427040184004,0.3252468169895645,0.336711276726273,0.3475677597696798,0.3581958093825329,0.3685591156080194,0.3776834718287319,0.386039749104804,0.3948083271411691,0.4027061457212472,0.4099834279114147,0.4176685300048497,0.424422081805653,0.4316038048741659,0.4344663153474132,0.4372396229809968,0.4400170104188816,0.4426737687740132,0.4445210096621976,0.4458000648638631,0.4468592080854602,0.4482547255769262,0.4502122665930348,0.4513013970614779,0.4512579212992828,0.4531858513670855,0.4548260083005214,0.4550304185962044,0.4560708345563056,0.4567609227171255,0.457680250783699,0.4579175356970961,0.458445521450368,0.4597701149425287,0.4597939114477956,0.4628344895936571,0.460764456060111,0.4616235870682159,0.4603700097370983,0.4611967921036397,0.4684555182878134,0.4719864176570458,0.4676660787771899,0.4721760797342192,0.0,2.3226178420074715,78.06735919108793,281.2183107694092,451.3381871841729,OR_public_baseline,95 +100000,95811,43565,403.7114736303764,9847,101.19923599586686,7621,78.675726169229,3120,32.03181263111751,77.40182060844235,79.71357284886216,63.36325590393732,65.07451187358419,77.01969841049548,79.33365106885407,63.22310580224446,64.93947506876103,0.3821221979468703,379.9217800080896,0.1401501016928605,135.03680482315872,23.40954,16.038322922398326,24433.0400475937,16739.542351502776,116.67458,53.91798705788055,120870.00448800242,55370.28342925819,202.14076,93.404212403956,204950.204047552,93008.32383716812,5522.09136,2452.0225181791457,5706764.212877436,2502552.773951153,1899.58135,823.8065139172214,1960036.8329315009,837269.7991533595,3076.48666,1278.2015038769675,3161729.4256400624,1289771.0786946667,0.43187,100000,0,106407,1110.5927294360772,0,0.0,0,0.0,8789,90.81420713696755,0,0.0,19601,198.60976297084883,2461273,0,88550,0,0,5678,0,0,26,0.2713675882727452,0,0.0,0,0.0,0,0.0,0.09847,0.2280084284622687,0.3168477708946887,0.0312,0.3152902854953056,0.6847097145046944,26.158055292888186,4.7195297341837925,0.341949875344443,0.1796352184752657,0.2392074530901456,0.2392074530901456,11.218733402624665,5.5655926504417375,33.246067037225714,15944.11769420113,85.53677943367494,15.82205442906618,29.44118644429619,20.178076717609574,20.09546184270298,0.5407426846870489,0.7531044558071585,0.6953184957789716,0.5688425671969282,0.1321996708721887,0.7023203169213356,0.9240837696335078,0.8660287081339713,0.7135416666666666,0.1898395721925133,0.491971301674069,0.6869300911854104,0.6412329459322891,0.5302293259207783,0.1173222912353347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026630753964235,0.005513383129453,0.0082782128799253,0.0109387854596422,0.0134809528166651,0.0162567694124353,0.0187433114202721,0.0214023270055113,0.0238465155262996,0.0261506811459218,0.0289170211675465,0.0314283368230898,0.0339510931573591,0.0361500365515892,0.0384194892528569,0.0408038851002273,0.0430408049189491,0.0453244571641883,0.0477684182099566,0.0501222875578914,0.0674517084567566,0.0838255742229563,0.0999517951082514,0.1144856131356956,0.1284889722146152,0.1466689201322502,0.1642420453702624,0.1804282646139451,0.1954416866826794,0.2103610843244401,0.2270096393837679,0.2430098462004042,0.2582569854259724,0.2724907916452624,0.2854848998086356,0.2994483583676725,0.3129540964944587,0.325366281817568,0.3372276530762855,0.3483267073771525,0.3592465674129987,0.3687881837971957,0.3780141172011938,0.3872636075645579,0.3960168378023261,0.4046167139859277,0.4122617853560682,0.4195275550399653,0.4267362192463407,0.4328976265445982,0.4361868755063462,0.4394372419887062,0.4418907076018432,0.4443961205584308,0.4469649515287099,0.4488730833179383,0.450250776212085,0.4518951399894347,0.4541374329343788,0.4553809078483562,0.4569410075747558,0.4588997408810046,0.4602342395670373,0.4624844580083644,0.4633192440363406,0.4649083476196756,0.4670226583922644,0.4685125727183138,0.4691801529432687,0.4691621959582106,0.4684061469891824,0.4697323416037787,0.4726630260199165,0.4722071478409179,0.4738347154704032,0.4702754954084098,0.4706988404888749,0.4707846410684474,0.471884713195818,0.47397476340694,0.0,3.232663251591988,77.75193040957149,289.66979044774695,452.3237565446179,OR_public_baseline,96 +100000,95704,43706,404.90470617738026,9796,100.98846443199866,7578,78.68009696564407,3072,31.81685196021065,77.32145341825886,79.70973851560872,63.3143933609397,65.08051156472969,76.95298121503922,79.33339724964027,63.1814725486502,64.94680216828503,0.368472203219639,376.3412659684491,0.1329208122894982,133.70939644465807,24.21628,16.593453777882704,25303.31020646995,17338.307466649985,117.28474,54.032263051554274,122032.307949511,55940.52839956873,201.26316,92.18167984257596,206881.1543927109,93801.86873194718,5519.16353,2434.7443048251107,5732675.708434339,2510014.4821590665,1860.42016,796.7459900869093,1929964.34840759,818623.63675351,3031.49074,1243.2054894198366,3140849.8913316056,1275282.451236634,0.43282,100000,0,110074,1150.1504639304524,0,0.0,0,0.0,8776,91.16651341636714,0,0.0,19509,200.5036362116526,2456685,0,88298,0,0,6194,0,0,35,0.3552620580122043,0,0.0,0,0.0,0,0.0,0.09796,0.2263296520493507,0.3135973866884443,0.03072,0.3111861137897782,0.6888138862102218,26.042493958005952,4.766167802235471,0.3355766693058855,0.1792029559250461,0.2358141989970968,0.2494061757719715,11.121534814238244,5.459656137934981,32.6188632018584,15988.312960954769,85.02408741379196,15.523747299051244,28.77982049742668,21.034575852824887,19.685943764489146,0.5358933755608339,0.7444771723122239,0.6999606763664963,0.5613756613756614,0.1169557918298824,0.6921739130434783,0.926829268292683,0.8735042735042735,0.7054631828978623,0.1257142857142857,0.4898342730223817,0.6764408493427705,0.6481103166496425,0.5200816882232812,0.1148225469728601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028369944070681,0.0054558361220971,0.0079990254994315,0.0109958232131787,0.0136028813283412,0.0164310162170972,0.0189787572534342,0.0215233816622421,0.023799057442828,0.0260404937867218,0.0285014199448425,0.0311463457213567,0.0335349545323622,0.0361680422887879,0.0388001775373912,0.0411075039804801,0.0435953473437807,0.0461295779325231,0.0485648918469217,0.0509114026951256,0.0687757190900925,0.0851319948918709,0.1014282865808225,0.116605282542355,0.1313371105413646,0.1493331922099915,0.1659519816587768,0.1817174751283526,0.1978731363223427,0.212109835889735,0.2294308400038784,0.2459699682794011,0.2605006364022062,0.2748927696078431,0.2883440983263828,0.3024909455403325,0.3159950451405551,0.3282538040238869,0.3397814815235026,0.3502686970769883,0.3604597328641866,0.369954710886941,0.3792376144940931,0.3884528609831029,0.3969800944176765,0.4043225106089016,0.4118635144282598,0.4195936990212072,0.4271176333324691,0.4339974352533678,0.4366522249665951,0.4385902014588878,0.4416410024581131,0.4435534157977929,0.4453851782167868,0.4472159738699042,0.4487955646189141,0.4501818181818182,0.4516251139902613,0.4531103751169991,0.4548686624179731,0.4553154088929727,0.4562325226675705,0.4576766966735448,0.4591397849462366,0.4604220934559566,0.4625731504934929,0.4642398561890087,0.4643062132300186,0.4639233828423018,0.4662262746557499,0.4669865329044217,0.4667360343369968,0.4701663119728856,0.4691657764397397,0.4673391561077623,0.465478841870824,0.4611650485436893,0.4551190134786349,0.4707532051282051,0.0,1.8985176552450524,77.44691789759041,286.04859380293107,457.8452490641598,OR_public_baseline,97 +100000,95696,43713,406.69411469653903,9803,100.99690687176056,7554,78.26868416652734,3143,32.43604748369838,77.3455376358958,79.73111281666363,63.32130932583449,65.08664554376917,76.97207898850529,79.3527649042427,63.186291605864895,64.95226057950529,0.3734586473905068,378.3479124209208,0.1350177199695963,134.38496426387303,23.65924,16.204249903320385,24723.332218692525,16933.04830224919,115.93984,53.20656122153091,120474.42944323692,54919.67399006322,198.94248,91.55223618335188,202609.26266510616,91760.11423692362,5560.62314,2452.6415636168977,5771097.182745361,2523331.7835822785,1849.03087,789.2170896557358,1920741.870088614,813269.3964310829,3119.64884,1274.195554505665,3223929.1297441903,1303529.9020269767,0.43376,100000,0,107542,1123.7878281223875,0,0.0,0,0.0,8710,90.30680488212674,0,0.0,19242,195.9225045978933,2461509,0,88346,0,0,5965,0,0,32,0.3239424845343588,0,0.0,0,0.0,0,0.0,0.09803,0.2260005533013648,0.3206161379169642,0.03143,0.3076254826254826,0.6923745173745174,26.19915476961936,4.744038496029465,0.3363780778395552,0.1799046862589356,0.2507280910775748,0.2329891448239343,11.164484378095093,5.387945899033258,33.388224665036674,15909.927889778504,84.56689452068049,15.356405807522862,28.65367438574903,19.581942594301324,20.97487173310728,0.5293884034948372,0.7490802060338484,0.6989374262101535,0.5647727272727273,0.1114044350580781,0.6880415944540728,0.9536231884057972,0.8562401263823065,0.7090909090909091,0.1277173913043478,0.482225656877898,0.6794871794871795,0.6467505241090147,0.5243636363636364,0.1074705111402359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026444036920333,0.0053248136315228,0.0079090309152748,0.010274599077217,0.0130625864735085,0.0158178855163984,0.0184985009483795,0.0212207550830754,0.0240408213350785,0.0264308609230832,0.0289321463734821,0.0312140509449465,0.033492773748907,0.0358699572363336,0.0382146542827657,0.0404846580100901,0.0426675782342521,0.0448563600132846,0.0468901113757136,0.0491471915146337,0.066714707940387,0.0840711669283097,0.0998394257107773,0.1149455521068967,0.1286481241232372,0.1468460464525955,0.1636444661368531,0.1790966889956229,0.1939904437151927,0.2086795045190099,0.2252994254050732,0.241651592777531,0.2563061346687714,0.2712439400737587,0.284312969955853,0.2980084008467344,0.3111637098484933,0.3237770423898606,0.3360801807016946,0.347544213323559,0.3572586246816392,0.3677418600025739,0.3768688961231133,0.3866466886424932,0.3954443297090445,0.4038399921129815,0.4121137763533476,0.4198396538559429,0.4274096424547726,0.4339772007599746,0.4370815427516805,0.4403749277396977,0.4435696649029982,0.4465527230590961,0.4497728795889493,0.4512843360167148,0.4531585903785212,0.4551219431428713,0.4564606983514496,0.4577589317935763,0.4590658246572225,0.4596056744409714,0.4605881477386294,0.4606369715516264,0.4609485664045328,0.4628329137405592,0.4628027431349287,0.464125990288781,0.4646118721461187,0.464805236786811,0.4630573838880134,0.4619715260109349,0.4635259335432868,0.4636349478274412,0.4632210607820364,0.4602314700812607,0.4619297408996979,0.4587737843551797,0.4610352673492605,0.4590361445783132,0.0,2.566617205138499,76.83284594645451,281.44410431250645,457.3407750462176,OR_public_baseline,98 +100000,95595,43468,404.3935352267378,9872,101.75218369161568,7670,79.49160520947748,3144,32.397091898111825,77.23812690061078,79.66898878538906,63.25655152000609,65.05427539306564,76.85996835483576,79.29078989149643,63.11768124603872,64.91908804322966,0.3781585457750225,378.1988938926304,0.1388702739673704,135.1873498359737,23.60028,16.183113908908435,24687.776557351328,16928.828818357066,116.85448,53.77862799781846,121502.11831162716,55519.95602597265,203.75906,93.23335709194328,209026.6018097181,94336.0218019062,5576.2329,2471.272230585897,5782678.769810136,2534668.728921436,1885.60837,810.8816684724165,1950422.6162456195,826300.4796990887,3110.66876,1288.4573200093969,3207933.092734976,1307094.525374797,0.43102,100000,0,107274,1122.1716616977876,0,0.0,0,0.0,8827,91.55290548668864,0,0.0,19700,201.91432606307865,2452640,0,88236,0,0,5736,0,0,29,0.3033631466080862,0,0.0,1,0.0104607981588995,0,0.0,0.09872,0.2290380956800148,0.3184764991896272,0.03144,0.3083556918359524,0.6916443081640475,26.08970074549214,4.620405618880036,0.3328552803129074,0.1829204693611473,0.2409387222946545,0.2432855280312907,11.063694430630113,5.496099215287794,33.588595920659166,15844.47395860198,86.40556335507068,16.23728646478366,29.03626352899151,20.77437356272964,20.357639798565877,0.5392438070404172,0.7697790449037776,0.6980023501762632,0.5669882100750268,0.1168831168831168,0.6944603083952028,0.9232876712328768,0.8477905073649754,0.7294685990338164,0.1634349030470914,0.4933265754350397,0.7157996146435452,0.650875386199794,0.5206611570247934,0.1055817081371889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026045889411383,0.0056190601766859,0.0082954268540329,0.0105709319699541,0.0131187917277316,0.0156178367309514,0.0182569228415523,0.0205634781187431,0.023034592803224,0.0251963987586164,0.0279487810884018,0.0303936376807126,0.0327494287890327,0.0349989175592507,0.0377958610434136,0.0401879022411688,0.0423996765599245,0.0446896035901271,0.0470737648601944,0.0492926890335503,0.0663983272347098,0.082456508069587,0.0981665353296559,0.1133148653345832,0.1271519401787034,0.1448245177283176,0.1614161097357544,0.1767929295621488,0.1924982610091497,0.2070136232756027,0.2239849770122385,0.2403483277664512,0.2554882169562468,0.2699748977824547,0.2847125752464113,0.2992295566064966,0.3115612758813654,0.3243654994188211,0.3356248577282039,0.3469420594692137,0.3578589101722675,0.3675899073628347,0.3772977340510224,0.3867300860978987,0.3950966985739402,0.403255376077693,0.4112110726643598,0.4188290086493679,0.4260267903679766,0.4322817080943276,0.435034834232427,0.437855964968197,0.4400476555186792,0.442290042974725,0.4449171585223357,0.4467858136730466,0.4491800655947524,0.4506417813792073,0.4523999031041285,0.4543942133815551,0.456281559664376,0.4572906641000962,0.4587384320816934,0.4599490839659954,0.4610171979352692,0.4620122113087337,0.4631153499462068,0.4644736842105263,0.4654795600300956,0.4664055560041993,0.4649028832269784,0.463834174399045,0.4627902489226217,0.4621796369868349,0.4644126404764191,0.4689796410071076,0.4718822618125484,0.4766201804757998,0.4769403824521935,0.4731688209949079,0.0,2.9024384354607777,77.54721543681089,293.4459356847412,461.9187304174501,OR_public_baseline,99 +100000,95702,45223,421.3182587615724,9170,94.2404547449374,7119,73.62437566613028,2956,30.417337150738756,77.33641368994157,79.71318764864877,63.332022412709286,65.09012982928704,76.98040651189247,79.35710082821802,63.201588472505264,64.9634098197767,0.3560071780490972,356.0868204307468,0.1304339402040213,126.72000951033624,54.67572,38.060655618674,57131.21982821676,39769.96888118744,163.18466,87.57628584919853,169718.0832166517,90714.11866961874,248.70818,116.40863249507552,255395.18505360387,118150.16326813934,5212.93877,2337.5586473079657,5393626.068420723,2389111.9279722134,1812.13493,782.2242137464705,1873055.098117072,796988.3458651969,2926.53028,1208.8357241617116,3013327.0987022216,1223258.7930143308,0.43308,100000,0,248526,2596.8736285553077,0,0.0,0,0.0,12740,132.30653486865478,0,0.0,23602,242.1788468370567,2273231,0,81762,0,0,7562,0,0,33,0.3343712775072621,0,0.0,0,0.0,0,0.0,0.0917,0.2117391705920384,0.3223555070883315,0.02956,0.3189138963452405,0.6810861036547594,25.62575327647548,4.666365592688851,0.3275740974856019,0.1901952521421548,0.2476471414524511,0.2345835089197921,11.19648890445377,5.517903251856577,31.48284291031728,15600.24962778092,80.74240339661505,15.911602082980838,26.50040806949091,18.77259884739665,19.557794396746655,0.5415086388537717,0.7621861152141802,0.6993996569468267,0.5820359281437125,0.1247872943845717,0.6970387243735763,0.9148936170212766,0.8670120898100173,0.7310704960835509,0.1482479784366576,0.490583628566101,0.6928034371643395,0.6440387906446092,0.5376845376845377,0.1185344827586206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026853390620566,0.0053550238846235,0.0082643789024823,0.0108850313033579,0.0133973530817981,0.0160511681909844,0.018397087467749,0.0211353890136818,0.023984541932054,0.0266261286161783,0.0292142893752242,0.0312621917414426,0.0334005182839044,0.035709503651289,0.0380138682516097,0.0403944349120377,0.0428583262575848,0.045046166614794,0.0475611403864342,0.0500541689237051,0.0675780107773925,0.0838556435664284,0.0994441531200839,0.1144343986543313,0.1289435127699718,0.1474188229325215,0.1642724622316459,0.1798815183518926,0.1955911395783293,0.2098704582712768,0.2268088953951475,0.2420014277370367,0.2567881910476314,0.2702159279657313,0.2834483819908547,0.2972602285170724,0.3096395211449718,0.3207996941552162,0.3319721409287869,0.3426537409437914,0.3526193423015974,0.3617638119286432,0.3711413364872856,0.3790711050399022,0.3870552363366902,0.3948506846444902,0.402411539328375,0.4096767620163529,0.4164094716912623,0.4228586546729281,0.4249172800324127,0.4267802092981462,0.4288382887791347,0.4309458085137295,0.4316244429156821,0.4325066321179591,0.4330988723543391,0.4346099102975737,0.4364801764391681,0.4370132679550043,0.4388015661351643,0.4395968466220936,0.4394897721743913,0.4399412960036125,0.4412215225266843,0.4407020872865275,0.4408411892675852,0.4413771016813451,0.4423358707694507,0.4426794180816145,0.4432280701754386,0.442223439211391,0.4402042285789094,0.437796021471424,0.4412050534499514,0.4426392161726404,0.4485563885787207,0.4595162986330178,0.4614949037372593,0.4614779874213836,0.0,2.889611837719364,77.67141026082173,271.41393063592,411.5009608037332,OR_public_implementation,0 +100000,95596,45113,420.74982216829153,9271,95.41194192225616,7168,74.2708899953973,2846,29.31084982635257,77.26635035352784,79.7054086669019,63.26822878755484,65.07244818993631,76.91576090826729,79.35525083556834,63.139102652783926,64.94724886974737,0.3505894452605531,350.1578313335614,0.1291261347709138,125.19932018894052,54.5765,37.94618810791039,57090.77785681409,39694.3262353136,161.96738,86.43467797309992,168733.01184149965,89720.6033443867,243.83113,113.83348616323768,251130.2878781539,115925.30947942488,5164.85258,2308.5828172528472,5356057.314113561,2368202.421913936,1711.85518,747.127899455991,1771172.6432068287,762001.4639273516,2808.10282,1170.7662330451976,2894735.491024729,1185793.208903631,0.43264,100000,0,248075,2595.0353571279134,0,0.0,0,0.0,12701,132.1394200594167,0,0.0,23199,238.7442989246412,2271290,0,81603,0,0,7389,0,0,28,0.2928992844888907,0,0.0,1,0.010460688731746,0,0.0,0.09271,0.2142890162721893,0.3069787509438033,0.02846,0.3149887686338574,0.6850112313661425,25.7972678797192,4.56878859074458,0.3363560267857143,0.1993582589285714,0.2339564732142857,0.2303292410714285,10.969245635948914,5.445376051329438,30.42452418269821,15599.06723075132,81.00820123346288,16.708552410395928,27.30211753579594,18.41467620369428,18.582855083576742,0.5457589285714286,0.7550734779566131,0.6930734135213604,0.5881284070260449,0.1138938580799046,0.7077546296296297,0.9040767386091128,0.871404399323181,0.7452054794520548,0.1661971830985915,0.4943014705882353,0.6936758893280632,0.6351648351648351,0.5435458786936236,0.0998487140695915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028071668896185,0.0058432665483134,0.0080534595346664,0.0106047665527899,0.0133140611958225,0.0161439913572571,0.0189316623122142,0.0214483512665665,0.0236044036997626,0.0260272568910749,0.0287676012972617,0.0311452829800793,0.03381612674099,0.0359315393339519,0.0383924144769459,0.040757411143877,0.0430348258706467,0.0455225275752477,0.0478044109534861,0.0501778283044253,0.0676431536137335,0.0836949003332704,0.1000115559570958,0.1148331911217857,0.128590292082607,0.1471071228029283,0.1637575474104941,0.1792790005441102,0.1940004496451015,0.2076907369393962,0.2246128945238737,0.2406120213838797,0.2561012812690665,0.2697960391482086,0.2819353629356827,0.2947776100852273,0.3073295035429286,0.3191180115825766,0.3310519673938994,0.3418847566574839,0.3518413335033442,0.3614744491326769,0.3703216322272409,0.3794013873220843,0.3882520443925233,0.3961324601507475,0.4040764075403499,0.410265572557077,0.4159371346928172,0.4224446032880629,0.4246547577223468,0.4262052769719574,0.42797923062775,0.4296455424274973,0.43198386614879,0.4328447824614342,0.4343435952157225,0.436377468329309,0.4380003098693384,0.4383820905207375,0.4381560498692637,0.4397448204143668,0.4407577911195027,0.4411198441640807,0.4415733352853622,0.4432034723692568,0.4425132528026418,0.4447076903374528,0.4468662902880011,0.4513804550238847,0.4536933927245731,0.4550476603119584,0.457741935483871,0.4608191653786708,0.4591923990498812,0.4606795533677512,0.4645191409897292,0.466996699669967,0.4673366834170854,0.4598455598455598,0.0,2.813092150547977,76.53267720471256,272.3301581577975,419.45911874579406,OR_public_implementation,1 +100000,95692,45180,421.1741838398195,9210,94.92956568992184,7135,73.84107344396607,2892,29.741253187309287,77.34534288058313,79.71391593167368,63.32656324425341,65.07470179738617,76.9995810638927,79.3687853268912,63.20097001937522,64.95328035346353,0.3457618166904268,345.1306047824829,0.1255932248781874,121.42144392264242,55.6743,38.67040477302615,58180.72566149731,40411.32463845059,163.52784,87.3519254425047,170172.58496008025,90567.27358870616,248.92762,116.18707655803532,255877.25201688756,118231.18856850691,5142.452,2271.4458152489115,5328576.077415041,2328318.809564971,1740.51232,744.8930649755664,1804038.122309075,763610.4508635304,2841.15768,1157.328481926812,2925747.815909376,1171015.5742224082,0.43238,100000,0,253065,2644.5784391589686,0,0.0,0,0.0,12722,132.18450863186055,0,0.0,23578,242.1519040254149,2267569,0,81555,0,0,7783,0,0,34,0.3553066087029219,0,0.0,1,0.0104501943736153,0,0.0,0.0921,0.2130070771080993,0.3140065146579804,0.02892,0.3068357562635323,0.6931642437364677,26.07715156980803,4.616875258585149,0.3353889278206026,0.2001401541695865,0.231114225648213,0.2333566923615977,11.184555259329557,5.592582384603061,30.436046801991026,15540.090586891867,80.04708632159696,16.646441776118145,27.044816859092165,18.36810301344963,17.987724672937013,0.545760336370007,0.7556022408963585,0.7070622649394066,0.5633633633633633,0.1121892055791388,0.70543093270366,0.9060240963855422,0.8640132669983416,0.7191977077363897,0.1437308868501529,0.4960485204925565,0.6939782823297137,0.6541899441340782,0.5220364741641338,0.1043872919818457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024505832793259,0.0052804410840613,0.0078020372549815,0.0100243753808653,0.0126095710712034,0.0150581862979667,0.0178282009724473,0.0202321284566622,0.0225093533416474,0.0252326212240636,0.0277715129272343,0.0301502377309276,0.0330381296222009,0.0355012517127345,0.0380292882279486,0.0406355310219355,0.0431351429725447,0.0454880390223652,0.0477388763530867,0.0498170941418015,0.0673274772563478,0.0837049132282442,0.0996631371273257,0.1143695940400277,0.128718722627352,0.1472163420829805,0.1638778587051154,0.1788693234476367,0.194264520404455,0.2079426720161342,0.2245080500894454,0.2401550924923103,0.2541308370523566,0.2685699267387234,0.281411464013837,0.2951241419842757,0.3079301990644084,0.3195713835486921,0.3307326269405926,0.3415855769120563,0.3519421128798842,0.3615905819573333,0.371048174075785,0.3793103448275862,0.3873180342223357,0.3951203860251015,0.4014939777156679,0.4079813581551704,0.4143897405277709,0.4203706154864328,0.4225119924329437,0.4244985910823802,0.4260586319218241,0.4287021437285772,0.4297134148163643,0.4316116911515599,0.4319552041741565,0.4334729966018937,0.4342876735813475,0.4353582833973232,0.4358723284059881,0.4375869608427748,0.4389837304015699,0.4399186716367333,0.4397128604453096,0.44083838650145,0.4419654409016417,0.4432279766438182,0.4467390532964303,0.4489967897271268,0.4509749432633967,0.4533600259712152,0.4534898639979471,0.4516908212560386,0.4479337250746556,0.4455637820123801,0.4464117831400814,0.4427829698857736,0.4476892543237879,0.4537037037037037,0.0,2.7756217085504464,74.94686607169356,265.65590237689395,422.3811918720767,OR_public_implementation,2 +100000,95642,45083,419.59599339202447,9137,93.88134919805108,7151,73.9842328684051,2990,30.71872190042032,77.2498286400838,79.64785803861811,63.26585613190741,65.03876798891572,76.88184624652736,79.28161091754339,63.13060157395488,64.90797140028096,0.3679823935564457,366.24712107472135,0.1352545579525284,130.79658863476595,54.84138,38.1285798755496,57339.80887057987,39865.52385256624,163.81146,87.65003625525165,170448.4117856172,90818.40304388473,246.37061,115.84213626561588,253148.7840070262,117640.13633492107,5256.73371,2348.8273075713287,5439954.089207671,2399683.3257804587,1780.24187,773.0192708517751,1838620.459630706,785684.0488908397,2957.08306,1229.0068264960364,3040963.656134334,1240750.060230553,0.4317,100000,0,249279,2606.3549486627217,0,0.0,0,0.0,12785,132.83912925283872,0,0.0,23325,239.47638066958032,2263905,0,81525,0,0,7523,0,0,33,0.3345810418017189,0,0.0,0,0.0,0,0.0,0.09137,0.2116516099142923,0.3272408886943198,0.0299,0.3034805194805194,0.6965194805194805,25.850776813689365,4.616060774275317,0.3336596280240526,0.1830513214934974,0.2480771920011187,0.2352118584813312,11.141543399903815,5.527645812754325,31.89713727415757,15537.5413417915,80.77435676615988,15.370202314361956,27.048757538646985,18.8169927528158,19.53840416033515,0.5343308628163893,0.760122230710466,0.6944677284157585,0.5885850178359097,0.100901916572717,0.6774193548387096,0.903061224489796,0.8700854700854701,0.6887755102040817,0.1171662125340599,0.4884579870729455,0.6990185387131952,0.637423653525819,0.5581395348837209,0.0966595593461265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028161594878236,0.0052531767521575,0.0080997959825823,0.0108514529567161,0.0136302143198624,0.0164585582465932,0.0185483542032059,0.0213100525858988,0.023767641644508,0.0265155006605831,0.0291302965341101,0.0312378017462763,0.033822091886608,0.0360842274512229,0.0386537270287012,0.0413176129899679,0.0434174395109061,0.0459099450783334,0.0482016708802813,0.0507377091913873,0.0682751486400351,0.0840856251178183,0.0996924627124159,0.1145451866818201,0.1291885217354595,0.1472312772532915,0.162719316878372,0.1787678533361756,0.194206961490311,0.2087573201525815,0.2250102527574521,0.2408504176157934,0.2556282722513089,0.2689868556757587,0.2822990282685512,0.2961266509538844,0.3088933691756272,0.3206818694965003,0.3313132233664449,0.3414378874486756,0.3504673983815459,0.3602573602926474,0.3702050146439031,0.3778069741933151,0.3856160451452931,0.3930758360810174,0.3999572036351735,0.4070943782814701,0.4140226979556204,0.4200077024209506,0.4224424231744181,0.4238910592081567,0.4251937214385058,0.426811150921961,0.428190453360501,0.4296648355039812,0.430611170492797,0.4323352499627169,0.4333281549376003,0.4338279146259917,0.434832953682612,0.4354602824802163,0.4354434679234067,0.4367803038906175,0.4367754243506335,0.438367757120567,0.4386841497227357,0.4394932841046534,0.4411220276235227,0.4405746801727269,0.4429356611703847,0.4450126500511385,0.4460445468509985,0.4471500581620783,0.4457508842366886,0.4513763673518451,0.4527626459143969,0.4559099437148217,0.4568527918781725,0.4689574385005857,0.0,2.9644844637171155,76.68784854854465,267.5017977192689,421.5043299600173,OR_public_implementation,3 +100000,95737,45011,418.1037634352445,9184,94.48802448374192,7155,74.05705213240441,2947,30.29131892580716,77.32698317968122,79.68830794946345,63.31555014592704,65.06200542665381,76.9664453144934,79.3268996988403,63.18416197665006,64.93366620286342,0.3605378651878226,361.4082506231569,0.1313881692769811,128.3392237903911,55.03938,38.248591098305646,57490.18665719628,39951.73349729536,163.16623,87.09745970283629,169772.72110051496,90316.7424327442,246.06508,114.7793393937558,253353.9488390069,116962.27564400052,5173.94042,2307.326244348216,5359431.411053197,2365171.9547805106,1754.29002,754.5587966911206,1815298.5679517847,771052.3647303694,2909.83388,1205.9445844006846,2994674.389212112,1220988.5051937448,0.43137,100000,0,250179,2613.190302599831,0,0.0,0,0.0,12702,131.97614297502534,0,0.0,23299,239.70878552701677,2269955,0,81627,0,0,7405,0,0,44,0.4595924250812121,0,0.0,0,0.0,0,0.0,0.09184,0.2129030762454505,0.3208841463414634,0.02947,0.3085018572018159,0.6914981427981841,25.75227202207686,4.6084697408975135,0.3382250174703005,0.1949685534591195,0.2419287211740041,0.2248777078965758,10.99173842081391,5.491035984794237,31.540276122683828,15507.374836476787,80.90729071233777,16.222508511430657,27.438287853273657,18.129153198169497,19.11734114946395,0.5445143256464011,0.7648745519713261,0.693801652892562,0.5966438781852083,0.1097631426920855,0.685614849187935,0.9075425790754258,0.8379310344827586,0.717741935483871,0.1551246537396121,0.4997238077702081,0.7052845528455285,0.6483695652173913,0.5602263540824576,0.0978102189781021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025125373587964,0.0050394435318691,0.0078659440147778,0.0101389791937581,0.0132214594457157,0.015844407107581,0.0186401272586368,0.0212318559500234,0.0238951800825804,0.0262433342545112,0.0290557645201955,0.0314626810515618,0.033818163128951,0.0360496725565303,0.0385385075612221,0.0411973795697369,0.0439274880682465,0.0462942793423577,0.0487460114537536,0.0510266801404327,0.0688924384311023,0.0843778117218723,0.0998962035668228,0.1145371207501944,0.1283851448931617,0.1460141900965391,0.1628392927225092,0.1781021742371004,0.1930839123463388,0.2064730824969137,0.2229504662318762,0.2386446112681854,0.2529168480626905,0.2661720126508859,0.2797683278645202,0.2932841033828959,0.3053258537457536,0.3175917787843959,0.3291054360303226,0.3401800561958828,0.3499907287224179,0.3598649583269837,0.3695337525210582,0.3784783966934205,0.3864873753060255,0.394093296261971,0.4012030188489696,0.4078950729227861,0.4147362400228791,0.4209355300100652,0.4235259147165324,0.424653559734177,0.4265774811211358,0.4282831215970962,0.4292201293560578,0.4292388103424351,0.4296421509217324,0.4310872261264986,0.4317810105879315,0.4331823736611315,0.4332779518936676,0.4345944436688538,0.4357517019065595,0.4373982637004883,0.4381448316137823,0.4398129804263412,0.4411662817551963,0.4437324662076001,0.4428851291184327,0.4437283493112059,0.4457998336567785,0.4458890807078118,0.4468791924870632,0.4461110252048863,0.447166921898928,0.4472192061768609,0.4472448340638698,0.4484118746107536,0.4473684210526316,0.4517807122849139,0.0,2.6400542365059083,76.58669821797591,275.27314401399616,414.4546399383424,OR_public_implementation,4 +100000,95757,45083,418.5908079827062,9189,94.56227743141493,7134,73.89538101653143,2959,30.525183537495952,77.39144353273707,79.7291669782675,63.36142006586866,65.08684681891111,77.02598913235771,79.35957149830915,63.228839901129454,64.95522773605035,0.3654544003793631,369.59547995834896,0.1325801647392026,131.61908286076596,54.8097,38.13164751231824,57238.322002569,39821.26373248769,162.39986,87.21789920232733,169003.6028697641,90490.32363412318,247.10702,116.02395549229772,253579.82184070093,117737.4546302337,5198.14192,2323.01696696673,5390291.258080349,2387769.298293316,1730.46808,747.6121728959982,1793124.377330117,766718.0497467525,2921.113,1212.2845381053544,3016216.23484445,1237135.2818329015,0.43202,100000,0,249135,2601.7419092076816,0,0.0,0,0.0,12713,132.1365539856094,0,0.0,23456,240.6299278381737,2274205,0,81719,0,0,7308,0,0,30,0.3028499221988993,0,0.0,0,0.0,0,0.0,0.09189,0.2126984861811953,0.3220154532593318,0.02959,0.3137578697492001,0.6862421302507998,25.726155302891677,4.6391080122840505,0.336977852537146,0.1921783010933557,0.2403980936361087,0.2304457527333894,11.145877352788466,5.453757300851202,31.71940011373259,15632.402502538403,80.70896632428779,15.959946394817123,27.27352323462698,18.45234462661248,19.023152068231184,0.5441547518923465,0.7585703865791393,0.6980033277870217,0.5906326034063261,0.112536443148688,0.6985422740524782,0.9147869674185464,0.8653198653198653,0.7459016393442623,0.1292134831460674,0.4952943347481085,0.6944444444444444,0.6430939226519337,0.5461658841940532,0.108167770419426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026425562935363,0.005512936145201,0.0082181773908808,0.0108672469302566,0.013594167827475,0.016326032082078,0.0189321377623802,0.0214663211377966,0.0240169988456312,0.0264999590734222,0.0288217213114754,0.0313936309914642,0.0340837863109978,0.0365784625518469,0.0389868772356634,0.0414635154119494,0.0439120310478654,0.0464110515344167,0.0489168849528086,0.051198449983854,0.0686790247160988,0.084625525770607,0.1003231153353895,0.1154521648595496,0.1307992408266554,0.1487336752498281,0.1651731268890185,0.1807436565774775,0.1951344539609987,0.2093409656118686,0.225473414505485,0.2418201680854055,0.257182611720457,0.2709988308183179,0.2841261463350267,0.2970067966968496,0.3102179198358352,0.3219022569912778,0.3324523293669249,0.3430285818981312,0.353239241092087,0.363350258558158,0.3726147071357545,0.3808318741154741,0.3891298800714468,0.3960321570368178,0.4032561051972448,0.4102433366050146,0.4163423619759236,0.4228166631423133,0.4241905249956171,0.4253263311692787,0.4269821549582109,0.4288837727871653,0.4298761863611305,0.430617162678618,0.4315351378828314,0.4323478031576518,0.4331553556406338,0.4343192926969523,0.4359158523446803,0.4380213114099852,0.4391581443604565,0.439948342660353,0.4399599570270534,0.4417545160777666,0.4418355839574357,0.444163573531294,0.448112869727136,0.450439502572204,0.4501815811528075,0.451236787621227,0.4519628099173554,0.452841973766396,0.452152190622598,0.4548640483383686,0.4540389972144846,0.4561403508771929,0.4616029042166992,0.4635294117647058,0.0,2.3608881178008603,76.18511243212475,282.1180645275363,405.098179832007,OR_public_implementation,5 +100000,95720,45115,419.034684496448,9180,94.54659423318012,7083,73.32845800250732,2934,30.15043877977434,77.37264048070351,79.73065442143697,63.34029949113111,65.08115067263444,77.01838201590789,79.37717529956784,63.21137180307127,64.9560028764653,0.3542584647956204,353.4791218691282,0.1289276880598393,125.14779616913074,55.18282,38.36575656710338,57650.25073129962,40081.233354683856,163.21871,87.10199947188455,169870.02716255744,90349.85318834576,248.27924,115.72225756939996,254972.5867112411,117475.20580853304,5157.09826,2286.018137603172,5344163.811115755,2344823.373489132,1733.72839,745.5265588096787,1794947.5867112412,762559.5474401133,2888.05322,1184.86633870815,2971993.7526117843,1198993.9791076065,0.43286,100000,0,250831,2620.465942331801,0,0.0,0,0.0,12667,131.6652737150021,0,0.0,23447,240.71249477643127,2270425,0,81680,0,0,7436,0,0,50,0.5119097367321354,0,0.0,0,0.0,0,0.0,0.0918,0.2120778080672734,0.3196078431372549,0.02934,0.3189272821041774,0.6810727178958226,25.893186630360088,4.586268771342375,0.3296625723563461,0.1869264435973457,0.2390230128476634,0.2443879711986446,11.20531311057758,5.748239337153922,31.14081261579127,15570.364144078689,79.69896632292362,15.450762374981853,26.44835440612225,19.32612499189993,18.47372454991961,0.5470845686855852,0.7628398791540786,0.6976445396145611,0.6025418833044482,0.1139988186650915,0.7214665878178592,0.9175257731958762,0.849912739965096,0.774818401937046,0.1798107255520504,0.4923961424332344,0.6987179487179487,0.6481271282633371,0.5485584218512898,0.0988372093023255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027139240506329,0.0057361182897043,0.0081662050985524,0.0109278518037049,0.0133809189722315,0.0160738644461184,0.0187965709509393,0.0213326256481443,0.0239093102179335,0.0266250383867335,0.0291895217101553,0.0318887896428168,0.0343643318389339,0.0369927909371781,0.0395543175487465,0.0416089625664027,0.0439900610829278,0.046248949830417,0.0487237049970898,0.0512638913480466,0.0685377772208996,0.085077219269242,0.1000733983432945,0.1142352607292641,0.1283394833948339,0.1465426094311693,0.1625879133119052,0.1782981214411154,0.1925595206306142,0.2067060678544229,0.2242952398392813,0.2396926739530354,0.2545225119385613,0.2683695236011595,0.281680220977451,0.2951984131381522,0.3079551163959136,0.3199608059556927,0.3305189713753252,0.3408939675546683,0.351436515291937,0.3611390951901225,0.3701063817170507,0.3791044417478644,0.3871702156153743,0.3952799081175207,0.4024378009630818,0.409744531130488,0.4162081494939008,0.4220961299367775,0.4236448547673037,0.4251445764840655,0.4264849350318831,0.4279514644837295,0.4295102534613834,0.4302015799929162,0.4309634086170399,0.4328052467249269,0.4341472628614602,0.4358698381946687,0.4378563498485219,0.4379891153219719,0.4388009288579269,0.4396081963521729,0.4408755939105983,0.4429025729979763,0.4437230680838839,0.4463087248322148,0.4488072097543735,0.4482786133163123,0.4491676984454533,0.4505506312113886,0.4489691381739019,0.4494008504058755,0.4495806328631338,0.4466265060240963,0.4467520299812617,0.4476900766521649,0.4482563084774596,0.4553748512495041,0.0,2.649446160111623,75.0395592988919,263.52860621209715,420.5922205511852,OR_public_implementation,6 +100000,95746,45223,420.30998684018135,9251,95.46090698305936,7156,74.20675537359263,2907,30.0378083679736,77.33281654085012,79.69772202395403,63.319784280511655,65.07056608976667,76.9819893133952,79.34325264601776,63.19368696422885,64.94573502741521,0.3508272274549142,354.46937793626887,0.1260973162828023,124.83106235146124,54.43438,37.86110568712891,56852.90247112151,39543.2766769671,161.37912,86.08202631617208,167998.00513859585,89355.45747725446,250.20221,116.09964350676876,257826.97971716835,118644.9845945868,5162.74718,2295.983163780877,5354898.502287302,2360764.0045337426,1755.4165,760.1920031789239,1818189.3969460863,778760.8759769975,2869.0967,1172.6047944295424,2965737.513838698,1197851.0047262276,0.43236,100000,0,247429,2584.222839596433,0,0.0,0,0.0,12575,130.76264282580996,0,0.0,23626,243.27909259916865,2274788,0,81834,0,0,7313,0,0,33,0.3446619179913521,0,0.0,0,0.0,0,0.0,0.09251,0.213965214173374,0.3142362987785104,0.02907,0.3066489904140322,0.6933510095859677,26.06307073806729,4.604419981743363,0.3360816098378982,0.1950810508664058,0.2361654555617663,0.2326718837339295,10.955174833870638,5.409947955428035,30.78398151309053,15629.84935985328,80.73716579818121,16.216010304950046,27.293751682418065,18.475727031966688,18.75167677884641,0.5484907769703745,0.752865329512894,0.7039501039501039,0.5915915915915916,0.1159763313609467,0.7016607354685647,0.907928388746803,0.852991452991453,0.7527472527472527,0.1589595375722543,0.5012797074954296,0.6925373134328359,0.656043956043956,0.5465026902382782,0.1049107142857142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026649373283749,0.0053756351870822,0.0078078992791146,0.0102357162460231,0.0129105115370528,0.0157166720990873,0.0182645142210301,0.0209596733027054,0.0237213962904644,0.0263772271144788,0.0290453879040774,0.0314001725058528,0.0341778399276137,0.0364881565396498,0.0388659038618284,0.0414590784115105,0.0439316894334034,0.0464409136666009,0.0487262139960486,0.0510365663089905,0.0682869282888074,0.0851119481062984,0.1008273822631893,0.1158350680207742,0.1305484404810844,0.1487062356586196,0.1658907000668144,0.1812802009494007,0.1966055712210544,0.2110309178847577,0.2273402674591381,0.2426340903926681,0.2571263880278856,0.2701009283660102,0.2829291906878493,0.2960690273916462,0.3084607657104588,0.3205922089619455,0.3322470021802325,0.3428813675840418,0.3535740757898638,0.3630091253060316,0.3729460580912863,0.3812661266126613,0.3893809616507689,0.3972037645431415,0.4039916203570129,0.4105526228546655,0.4165119027519838,0.4223319608647876,0.4243296183721716,0.42660461776403,0.427965262651693,0.4295295193577888,0.4308370702541106,0.4314954566456183,0.4320730075810664,0.4336416184971098,0.4343116521380306,0.4350638848455442,0.4358659745162813,0.436532631243019,0.4375541605901126,0.4384934971098266,0.439657687445298,0.4399788750990229,0.4413567752009716,0.4432874437026863,0.4422562346141496,0.4437302934756245,0.4466555339085258,0.4460611325261958,0.4479454697447109,0.4499533727074915,0.4506704980842911,0.4529924884904289,0.4523510971786834,0.455264253017062,0.4589932126696832,0.4501772351319417,0.0,2.068426548047284,75.48247917061161,275.866807266571,418.8499554357433,OR_public_implementation,7 +100000,95759,45424,421.5791727148362,9330,95.87610564020092,7245,74.86502574170574,2997,30.78561806200984,77.34910350822409,79.67865967548404,63.34642956891118,65.06708253832012,76.98897383332694,79.31911823745847,63.21415260162351,64.93861316960292,0.3601296748971521,359.54143802557326,0.132276967287666,128.46936871720516,54.4566,37.90224045734565,56868.38834992011,39580.86493942674,164.32087,88.02307111984318,170808.27911736755,91131.3830761006,251.94116,117.58490824350469,258149.9389091365,118938.6449803119,5289.67123,2354.61464114005,5471621.038231393,2406575.8843973414,1758.03775,761.622247251719,1814136.248289978,773591.2313743067,2955.28154,1225.5794774825183,3038795.9147443064,1238301.3062011967,0.4352,100000,0,247530,2584.926743178187,0,0.0,0,0.0,12814,132.9901105901273,0,0.0,23804,243.6742238327468,2273515,0,81809,0,0,7456,0,0,34,0.3550580102131392,0,0.0,0,0.0,0,0.0,0.0933,0.2143841911764706,0.3212218649517684,0.02997,0.3086306800853919,0.6913693199146081,25.74451667528297,4.646008779035383,0.3294685990338164,0.1908902691511387,0.2398895790200138,0.239751552795031,10.914255162867637,5.323175957078384,32.06008560706089,15679.190279207987,81.90286180178954,15.999683779395877,27.30675556167012,19.28207105791336,19.314351402810203,0.5318150448585232,0.7541576283441793,0.6920821114369502,0.5607369027058147,0.1058688147295742,0.6866902237926973,0.9244791666666666,0.8421052631578947,0.7277936962750716,0.1260504201680672,0.4844059852172345,0.6886886886886887,0.6408094435075885,0.5187319884726225,0.1006517016654598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028860174983797,0.0056963885707335,0.0086840957279524,0.0115285776680785,0.0139707975759547,0.0164501811963027,0.019007725391875,0.0213706179517273,0.0238686407340424,0.0264881013279859,0.0289820923656927,0.0316261505782393,0.0343456143055341,0.0368372839836553,0.0394366487612252,0.04197609923877,0.0444531823967053,0.0467233513065118,0.0493251176757863,0.0518061875852589,0.0688971447654032,0.0855149619805666,0.1011155846334507,0.1160224478214263,0.1301058044935295,0.1470933243154702,0.1639495442018232,0.1802490667971201,0.1953275915431328,0.2097052426310657,0.2263783341585757,0.2416933460240546,0.2560873489717573,0.2705673875233813,0.2835208136130495,0.2972996930713913,0.3100595151691102,0.3224656023940508,0.3339917359124552,0.3453308284457478,0.3549245887977035,0.3649659824115601,0.3732124874118832,0.3816094160557668,0.3893902172062364,0.396707788438978,0.4034187819805357,0.4108701199285532,0.4176076928074849,0.4236216925258039,0.4254585294595033,0.4273506637168142,0.4295761692492747,0.43127776326104,0.4336423208394906,0.4345063162591743,0.4345563072025467,0.4365057076305486,0.4372194610212049,0.438313266022353,0.4384055917634835,0.4395883293365308,0.4406668361294696,0.4422092338362557,0.4423152035933991,0.4437468542213039,0.4450084111607402,0.4455137458698232,0.4466499462558222,0.4478350850139999,0.4495528228060368,0.4497802376688914,0.4516588906168999,0.4514491055386297,0.4512254189673544,0.4533497234173325,0.4543436905516804,0.4533277521975722,0.4602095723591051,0.4583333333333333,0.0,3.101114754540976,74.81881517480689,283.7333219565937,422.448479115832,OR_public_implementation,8 +100000,95659,45267,421.38220136108464,9256,95.39091982981212,7182,74.42059816640358,2942,30.326472156305208,77.31532774038504,79.70489368391758,63.31028192710126,65.07521494422285,76.9489270500294,79.33517148980086,63.17730777470326,64.94362297783167,0.3664006903556469,369.7221941167186,0.132974152397999,131.5919663911842,55.31746,38.43696309413805,57827.76320053524,40181.23030152736,163.30812,87.57317974698718,170074.2115221777,90902.4998803045,248.1871,115.98055364942137,254654.99325729936,117710.87223288472,5186.6072,2320.643689073421,5378000.982657147,2382317.6510312483,1724.17278,745.095094441063,1786518.748889284,763187.560697936,2896.75402,1197.1508787781077,2988661.725504135,1220394.028497625,0.43502,100000,0,251443,2628.53469093342,0,0.0,0,0.0,12772,132.82597560083212,0,0.0,23568,241.58730490596807,2267334,0,81548,0,0,7537,0,0,35,0.3658829801691424,0,0.0,0,0.0,0,0.0,0.09256,0.2127718265826858,0.317847882454624,0.02942,0.3148072190319934,0.6851927809680065,25.74526028181514,4.60849104242376,0.3302701197438039,0.2028682818156502,0.233500417710944,0.2333611807296017,11.142460383348425,5.528439778556903,31.38597621221552,15685.368608238465,81.46079014225013,17.044966676283327,26.93126024049267,18.868466395200954,18.61609683027318,0.544416597048176,0.7810569663692519,0.6935075885328836,0.5614558472553699,0.110912343470483,0.70578231292517,0.9260089686098656,0.8670120898100173,0.7080103359173127,0.1590909090909091,0.4918789221114802,0.7171117705242335,0.637479085331846,0.517455391776571,0.0981132075471698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123082845391,0.0050791784099434,0.0075097931762365,0.0105256741104992,0.013092041015625,0.0158390628978864,0.0184814981028925,0.0209693069812573,0.0234084982359257,0.025938517623446,0.0287062201938362,0.0312069851052901,0.0335781741867785,0.0362397988624186,0.0386874348414,0.0412460698328644,0.0435692600996756,0.0458956501883776,0.0483268668670751,0.0507040198438753,0.0683397239664413,0.0846002429115885,0.1003809943638023,0.1155962916583358,0.1298506675109492,0.1485068860025194,0.1655251505208499,0.1808817733465418,0.1962289159202172,0.2112081920054956,0.2276989738725532,0.243794940656675,0.2584290457786729,0.2725899658523772,0.2855506229414292,0.2984799733717962,0.3108657757117954,0.3224564248074584,0.3328032170485397,0.3434030645013304,0.3538853798458596,0.3633019785162885,0.3726993683262423,0.3808740149913511,0.3892512106684836,0.3972421795916352,0.4040468663756335,0.4110331632653061,0.4184721230609463,0.4247596599486215,0.4266711726934775,0.4278899995852171,0.4306708722895656,0.4322148431255722,0.4344851282510942,0.434711609563717,0.4354828432153439,0.4362309749413978,0.4365979115415713,0.4379451759119361,0.4396777784066255,0.4412819899545563,0.4431524547803617,0.4444042341445761,0.4443361753958587,0.4467832241707162,0.4466753585397653,0.4478494105553949,0.4483068194060401,0.4492553104907626,0.4522697552774145,0.4539470104999728,0.4535388201774266,0.4542661309383125,0.4511945392491467,0.4535626535626536,0.4588955130216504,0.4606533799054859,0.4590163934426229,0.4578125,0.0,2.4419657077914447,78.62354026297325,273.3391167804644,416.9532927664149,OR_public_implementation,9 +100000,95612,45271,421.1605237836256,9197,94.64293184955864,7178,74.3421327866795,2946,30.289085052085515,77.3146043072854,79.73468288346439,63.296484254502126,65.08327181120008,76.95547123796027,79.3748501798622,63.164117203041634,64.9542551589849,0.3591330693251393,359.8327036021942,0.1323670514604913,129.01665221517078,54.50236,37.96002061889126,57003.68154624943,39702.15100499023,164.32539,88.21425491934245,171143.92544868845,91539.75956924076,253.64113,118.53738707655836,260727.0321716939,120466.69381463635,5197.04108,2320.6577884862445,5386746.956448982,2378355.445431791,1734.39137,749.5766409412226,1798886.980713718,768875.3408999115,2899.18744,1202.2711237985086,2984383.3828389742,1218222.390166433,0.43277,100000,0,247738,2591.0764339204284,0,0.0,0,0.0,12820,133.3200853449358,0,0.0,24016,246.7158934025018,2268998,0,81516,0,0,7502,0,0,28,0.2823913316320127,0,0.0,0,0.0,0,0.0,0.09197,0.2125147306883564,0.3203218440795912,0.02946,0.3187808896210873,0.6812191103789127,25.84536834982994,4.6088892860788,0.3364446921147952,0.187517414321538,0.2308442463081638,0.2451936472555029,11.21323778189973,5.694305410740957,31.249845950933015,15604.379324513588,80.81426692588552,15.566900146480773,27.215532373215268,19.690407562609053,18.34142684358042,0.5436054611312343,0.7734026745913819,0.6853002070393375,0.5852272727272727,0.1062160531080265,0.6871345029239766,0.9215189873417722,0.8412162162162162,0.7037037037037037,0.136231884057971,0.4987198244330651,0.711882229232387,0.6346681294569391,0.552821997105644,0.0983231707317073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023811212548002,0.0053949356562655,0.0081516222032728,0.0109942590052329,0.0135294596354166,0.0161132613566917,0.0188696565722503,0.0216467463479415,0.0241584928046148,0.0269534050179211,0.0295592775310516,0.0318955510585624,0.0343607258960536,0.0369381993529375,0.0394731409224162,0.0417735131110927,0.0442139511750321,0.0461110361225612,0.0485733907723044,0.0511828271028037,0.06887720435278,0.0850881052653634,0.1013453197366072,0.1162567903314102,0.130421012626156,0.148710616891713,0.1656308761194505,0.1812901025345867,0.1959554889792424,0.2095332244476919,0.2259596188502919,0.2407736675484626,0.2550601109573065,0.269155313948773,0.2817020995059986,0.295676599902296,0.3078651936666964,0.3198376458650431,0.3308621199372342,0.3416714498909425,0.3513081176320579,0.3609353765406064,0.3694886720648733,0.3780798232553671,0.386425548474972,0.3943103980253008,0.401468818929216,0.4080896872412256,0.4150605691162356,0.4217571893436334,0.4234145419187554,0.4261137094215195,0.4278381855973304,0.4298074968787201,0.4317886336805296,0.4323428782788275,0.4327737121538241,0.4339325917097073,0.4354964006421876,0.4364747449255507,0.4385776065567578,0.439941134356853,0.4407151290268173,0.4412653318903319,0.4415946135774661,0.4424681252951362,0.4432826817568149,0.4463108519269776,0.4465861177054175,0.4480170199100834,0.4480919540229885,0.4480606810479315,0.4493108334406801,0.4507381507381507,0.4494706448508181,0.4459558823529412,0.4440553875537164,0.4443746071653048,0.4456398640996603,0.4369243091710052,0.0,2.8665359510634034,75.67080844858118,267.6455493155313,426.8806764057169,OR_public_implementation,10 +100000,95636,45114,419.2877159228743,9100,93.51081182818186,7026,72.78639842737044,2860,29.455435191768792,77.29129418892526,79.69206822076289,63.29829466637945,65.0703716197236,76.93491680548257,79.33459229949777,63.16736187910828,64.94253351152894,0.3563773834426911,357.4759212651202,0.1309327872711705,127.83810819466623,55.4466,38.502327578065895,57976.703333472746,40259.24084870331,160.39991,86.08908213927317,167004.8726421013,89304.4482172705,246.229,115.09768957049522,253386.5803672257,117253.1337306282,5073.91074,2276.406065760851,5257359.51942783,2332438.8325894224,1717.00797,746.1684111010309,1776529.2149399803,761632.3688377036,2822.57022,1177.7986150187426,2909340.2693546363,1194520.0567077466,0.43276,100000,0,252030,2635.3046969760344,0,0.0,0,0.0,12576,130.7666569074407,0,0.0,23241,239.05223974235645,2267142,0,81551,0,0,7411,0,0,41,0.4077962273620812,0,0.0,0,0.0,0,0.0,0.091,0.2102782142527035,0.3142857142857143,0.0286,0.316837846249611,0.683162153750389,25.77094499696327,4.623684457594556,0.3380301736407629,0.1964133219470538,0.2374039282664389,0.2281525761457443,11.16861697821214,5.592774427544436,30.59192637137573,15563.086478001294,79.51691140187997,16.14322568757769,27.07660281173094,17.9072660663885,18.389816836182824,0.5448334756618275,0.7543478260869565,0.7023157894736842,0.577666874610106,0.1157074340527578,0.6990122022080186,0.914004914004914,0.8569051580698835,0.7295081967213115,0.1412103746397694,0.4948162111215834,0.6875642343268242,0.6499436302142052,0.5327405012126112,0.109008327024981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028666065658458,0.005312785156646,0.0080793317296468,0.0107611015140737,0.0136129170100418,0.0163365076131792,0.0189142892101882,0.0214940674331692,0.0240368885980696,0.0263039338152478,0.028663432843474,0.0312021773737996,0.0336299573067229,0.0362100056674738,0.0386302868882075,0.0411236605849985,0.0438274675620776,0.0465579898245249,0.0488939296193786,0.0513173396724114,0.068046904393629,0.084338106661359,0.0996954741152998,0.1148902573819674,0.1290084232303827,0.1466195259820682,0.1637946594468333,0.1793833763023885,0.1933872985660361,0.2073986577181208,0.2238543587752504,0.2391598695826428,0.2541677101821706,0.2672494057594777,0.2802024523641496,0.2932618683001531,0.3060645017047677,0.3177752241899869,0.3289101464423262,0.3398844195752878,0.349960613502618,0.3590196950891079,0.3685308551243451,0.3777345532262325,0.3859623487007135,0.3937656045287123,0.4015516721904188,0.4089400168535022,0.4156668009931493,0.4217548411007134,0.4238820492722678,0.4252360348903111,0.4275013451898842,0.4294763758935317,0.4309316268708042,0.4322468129765102,0.4337268666241225,0.4353641154827803,0.4365795970512577,0.4380527778780549,0.4395625225088614,0.4407407407407407,0.4416475486447446,0.4436357865143064,0.4444877193836566,0.4470967230862665,0.4478377366101011,0.4497497848468428,0.4480923120891683,0.4513846775823731,0.451114922813036,0.4542755344418052,0.4563637532960319,0.4524925769651508,0.4518410852713178,0.4549687538291876,0.4552523008568708,0.4584126984126984,0.4622184203022526,0.4574008637612878,0.0,2.576326565994292,76.3651116300453,266.2257641669604,408.6203358191528,OR_public_implementation,11 +100000,95617,45372,422.14250603972096,9284,95.49557087128858,7299,75.60371063722978,3010,30.988213393015887,77.27514686010801,79.685954166318,63.27600815666828,65.05647007229793,76.89905019704021,79.30796714199045,63.13911822198936,64.92195618955091,0.3760966630677984,377.9870243275525,0.1368899346789263,134.51388274701517,54.31888,37.79506166823195,56808.81014882291,39527.55437655642,165.59455,88.65348425569069,172462.31318698556,91994.7059410238,250.41969,116.9601111754066,257492.2032692931,118969.4395955236,5353.75752,2388.814553603364,5546419.433782696,2445612.261463637,1808.10724,787.9479686615584,1870500.413106456,803577.9293029056,2984.65254,1240.5112109730474,3074203.813129464,1258336.7072006522,0.43455,100000,0,246904,2582.218643128314,0,0.0,0,0.0,12939,134.55766234037878,0,0.0,23759,244.0256439754437,2267408,0,81535,0,0,7427,0,0,31,0.3242101299978037,0,0.0,0,0.0,0,0.0,0.09284,0.2136463007709124,0.3242137009909522,0.0301,0.3181493208048208,0.6818506791951793,25.648758713182996,4.660234451276606,0.324702013974517,0.1896150157555829,0.2479791752294834,0.2377037950404165,10.9704351506005,5.359480421844649,32.246689912119855,15638.596700518428,82.55482687102362,16.1372660548523,26.96298415641546,19.32458122716532,20.12999543259056,0.5343197698314838,0.7608381502890174,0.6957805907172996,0.5734870317002881,0.1121546961325966,0.6818181818181818,0.9360613810741688,0.8576214405360134,0.6925207756232687,0.1465295629820051,0.4882215428879698,0.6918429003021148,0.6412859560067682,0.5422125181950509,0.1027445460942997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026632372002592,0.00528060164398,0.0079853888691593,0.0108278313864906,0.0132324372705173,0.0156835587420563,0.0181710649753232,0.0210513419975293,0.0237698465439154,0.0262737549148099,0.0286789820807647,0.0313533726449014,0.0340548993785752,0.0365506720540941,0.038960770747927,0.0414420938292039,0.0440618586620784,0.0464449660386764,0.0488271900430828,0.0513301838584196,0.0684706718508298,0.0846693911767788,0.1003592889860066,0.1158392684057482,0.130462799615478,0.1490880589743046,0.1659900527121237,0.1826245482361219,0.1971722447581637,0.2112215832751115,0.2280525594100562,0.2431239425621448,0.2581985085691858,0.272007370522298,0.2848706287530907,0.298375447252039,0.311562234066377,0.3230970713753471,0.3342102565854658,0.3448113370188606,0.3548050017996261,0.364026952785669,0.3722131819315604,0.3802432305638089,0.3876904326630103,0.394903119706206,0.401952899188177,0.4085255280565985,0.4153401621741224,0.4218499210739252,0.4233237651646447,0.4251806128380436,0.4274092970521542,0.4290657942566339,0.4306417600167507,0.4313459313536444,0.4318613144506642,0.4325800844300968,0.4333591397849462,0.4346041689167296,0.4358090185676392,0.4369378372976214,0.4383576170176666,0.4389812842706304,0.439039258717386,0.4386581723016733,0.439315052643758,0.440420635427987,0.4430424991957679,0.4442467138523761,0.445294745141691,0.4444565040429804,0.4441875401412973,0.4463732176069436,0.4468289866230391,0.4493462055480875,0.4495904221802142,0.4546594233180108,0.4624359704040979,0.4706349206349206,0.0,2.8453678423500466,77.01882332321847,282.38061117777534,425.0834733718299,OR_public_implementation,12 +100000,95678,45100,419.05140157611993,9205,94.79713204707456,7186,74.46852986057401,2952,30.3936119066034,77.28391542799022,79.68071104812262,63.28504443165552,65.05930771094233,76.9254033093055,79.31983340574163,63.1553673379603,64.93127311566228,0.3585121186847289,360.8776423809843,0.1296770936952214,128.0345952800559,54.68804,38.03633309219221,57158.42722464934,39754.52360228288,164.21095,87.68958011280424,170966.01099521312,91000.1746447139,247.4959,116.14010461441738,254556.17801375448,118182.333430046,5210.71323,2317.586353779724,5403875.634942202,2380733.3283292,1758.60487,754.988821569002,1822033.2260289723,773083.6458423072,2901.07488,1195.562465010937,2990446.204979201,1216817.349428837,0.43196,100000,0,248582,2598.110328393152,0,0.0,0,0.0,12792,133.01908484709128,0,0.0,23425,240.7136436798428,2269239,0,81647,0,0,7446,0,0,46,0.480779280503355,0,0.0,0,0.0,0,0.0,0.09205,0.2130984350402815,0.3206952743074416,0.02952,0.3144654088050314,0.6855345911949685,25.78410625546258,4.649037021044015,0.3327303089340384,0.1976064569997216,0.2357361536320623,0.2339270804341775,11.17305954934531,5.635057510011263,31.51711141709627,15609.125151359844,81.13515733426671,16.499256592574106,27.14337274558164,18.800546325850057,18.6919816702609,0.5384080155858614,0.7640845070422535,0.6959431200334588,0.5651397977394408,0.1003541912632821,0.7186421173762946,0.9271844660194176,0.867430441898527,0.7551020408163265,0.1269349845201238,0.4809104258443465,0.6974206349206349,0.6370786516853932,0.5073700543056633,0.0940919037199124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028171297703735,0.0054162609542356,0.0083860422144836,0.0109348482230871,0.0134204287618408,0.015992991606226,0.0186852975674435,0.0214180659394533,0.0242086422909741,0.0266754082238931,0.0291257155754355,0.0317598947844313,0.0342145069509472,0.0366782434841754,0.0390288716620043,0.0415102534669438,0.0439639004880272,0.0465123520863608,0.0488667450254319,0.0512449062542339,0.0687328298496861,0.084844423970853,0.1004124382129776,0.1157350898606843,0.1292440185327859,0.1475796805368843,0.1641058857258141,0.1794907294007391,0.1947259278262356,0.2087049857779209,0.2252845563507803,0.2411271450858034,0.2549171222582823,0.2696680906999671,0.2831707182624993,0.2962868373714717,0.309516087544874,0.3214696399179274,0.3326700475291656,0.3434113865932047,0.3534591778723996,0.3626688257589092,0.3712948888466654,0.3795780996454114,0.3875807434491164,0.3949043798598148,0.4020392018985673,0.4090317476521029,0.4154455702779943,0.4214488918293086,0.4236823260778511,0.425549249485618,0.42762023240691,0.4293627202204017,0.4309878517101744,0.4317761332099907,0.4317224880382775,0.4332159799011587,0.4334913384469533,0.4353087577550137,0.4367885870390044,0.4391764564371918,0.4402531807429192,0.4421321068330335,0.4430764702997007,0.4432702264942513,0.4431252171898528,0.443981540828099,0.4439093989655787,0.4468213681411651,0.4477535896248263,0.4453023758099352,0.4464479133482,0.4473039215686274,0.4473309945956196,0.4481637567730283,0.4488335925349922,0.4499793303017776,0.4557358383148306,0.4573338576484467,0.0,2.4453236877751547,77.42075093521068,271.3673350511263,420.4287094533421,OR_public_implementation,13 +100000,95645,45262,420.61790997961214,9291,95.65581054942756,7232,74.91243661456427,3031,31.15688222071201,77.35161970545354,79.75543563810346,63.31721993396855,65.09341659441797,76.97356194214939,79.37786372716982,63.17883967293521,64.95897424321606,0.3780577633041559,377.5719109336393,0.1383802610333404,134.44235120191195,54.9758,38.22659531302556,57479.01092581944,39967.16536465634,165.58362,88.82213623962443,172440.07527837314,92183.48004040562,252.21727,118.29267752430891,259693.3765486957,120550.05377198936,5278.47232,2375.234234372753,5468399.884991374,2433068.945314652,1792.54867,784.4028653126531,1851829.6826807463,797866.6285193056,2995.34676,1247.143718456068,3081808.500182968,1261776.6966387737,0.43393,100000,0,249890,2612.6823148099743,0,0.0,0,0.0,12882,133.9536828898531,0,0.0,23882,245.5852370745988,2269566,0,81546,0,0,7555,0,0,41,0.4286685137748968,0,0.0,0,0.0,0,0.0,0.09291,0.2141128753485585,0.3262296846410504,0.03031,0.3137254901960784,0.6862745098039216,25.73736242886309,4.618006936076555,0.3267422566371681,0.1930309734513274,0.2444690265486725,0.2357577433628318,11.013688608696588,5.513690759166185,32.39140561582399,15623.972444756688,81.73904098411498,16.245165077480547,26.67474595701197,19.070720551865048,19.74840939775743,0.5391316371681416,0.7664756446991404,0.6974185357596276,0.5683284457478006,0.1199095022624434,0.6936679977181974,0.910941475826972,0.8850987432675045,0.7268292682926829,0.1704834605597964,0.4896878992516882,0.7098703888334995,0.6395348837209303,0.5181467181467182,0.1054545454545454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028368506904691,0.005587385286214,0.008464083463576,0.0113894984963017,0.0140373719598409,0.0166429007944591,0.0191607607199306,0.0217500076584534,0.0244274028629856,0.0267745570009218,0.0293616759340952,0.0319070226277822,0.034618313540659,0.0368358110476504,0.0393029789695492,0.0417261572206013,0.0441749585406301,0.0466342759852165,0.0489939030734336,0.0514796354611999,0.0683295366674329,0.0846902126679301,0.1004440152413742,0.1155882012480663,0.1304237690643305,0.1479834868212131,0.1647624710654293,0.1798772038288528,0.194727381665668,0.2086801490725923,0.2258666436568371,0.2408980582524272,0.2554741346457465,0.2698932384341637,0.2827789835512906,0.2960892615514296,0.3088996456239589,0.3204681920082913,0.3316327110343495,0.3422944204335714,0.3527279465412811,0.3621904405224475,0.3714820430209419,0.3797372683102393,0.3875937883817932,0.3959811020513896,0.4030232063018948,0.4095053741531251,0.4162768700519584,0.4224922406392392,0.4243053962513662,0.4262541552297273,0.4277313656474845,0.4292365260776237,0.4310272786963529,0.4311957658932857,0.4315039065607943,0.433144480599924,0.4357721619157391,0.436323047564181,0.4372907009743638,0.4385674381484437,0.4396991844084313,0.440659588886379,0.4423823386705482,0.4435912270551728,0.4440251209956211,0.4478277487578035,0.4483323247784145,0.4475806451612903,0.4503473830477073,0.4501531681625195,0.4518622628250175,0.4525417151726814,0.452198118640814,0.4521824423737126,0.4524336283185841,0.4496770160450093,0.4424157303370786,0.4381584081154897,0.0,2.671659431122513,77.6741362590744,278.2473477582079,417.1510740050287,OR_public_implementation,14 +100000,95783,45141,419.20800141987615,9165,94.2651618763246,7107,73.53079356462003,2886,29.712997087165785,77.3507064425629,79.67854607278204,63.34838135415546,65.06964475595706,77.00279244088267,79.32823065062595,63.2215316150841,64.9447239162803,0.3479140016802233,350.31542215608624,0.1268497390713534,124.92083967676136,55.14014,38.40718081545746,57567.77298685571,40098.11847139624,163.37449,87.51881573524743,169907.93773425347,90712.59590454194,248.29761,115.74580341249138,254594.05113642296,117319.55915863164,5109.79643,2268.9321187048918,5294762.055897184,2329031.1580494805,1751.33328,754.2928119368004,1811858.304709604,771018.7790343027,2837.83542,1172.9986244422782,2925362.0788657693,1193955.2351546804,0.43208,100000,0,250637,2616.7169539479864,0,0.0,0,0.0,12784,132.76886295062798,0,0.0,23554,241.33718927158264,2272137,0,81650,0,0,7480,0,0,30,0.302767714521366,0,0.0,0,0.0,0,0.0,0.09165,0.2121134975004628,0.3148936170212766,0.02886,0.3157623272127089,0.6842376727872911,25.72431905047958,4.62236767762208,0.3296749683410722,0.2003658364992261,0.2306177008583087,0.2393414943013929,11.228223094683868,5.696439079115052,30.77536049586768,15505.83903376799,80.12427557020975,16.55232838624449,26.5162843965853,19.032833922101734,18.022828865278225,0.541860137892219,0.7528089887640449,0.6803243704652155,0.5808348030570253,0.1201952410006101,0.6994011976047905,0.8957816377171216,0.8456140350877193,0.7338709677419355,0.16,0.4934706639691006,0.6963761018609207,0.6271855611957134,0.5379984951091046,0.1103500761035007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002755155787853,0.0053122465531224,0.0075801394258577,0.0101678043230944,0.0126484463966162,0.0154641799098007,0.0182320329379152,0.0207774183343368,0.023340180058657,0.0259005321326238,0.028290963491234,0.030895677067835,0.0335234571707517,0.0361014174979154,0.0383500902294405,0.0408793660960567,0.04342832308934,0.0459356631177367,0.0483944668300585,0.0509291551715163,0.0671042197086689,0.0830292447799583,0.0989884165836783,0.114036193959266,0.1286729058640023,0.146485840829572,0.1627024103668041,0.1784494226573724,0.1939806115476597,0.2083735288442986,0.2254539974380227,0.2412179251605093,0.255188976549086,0.2685831667049093,0.281266838950899,0.2950803346169167,0.3074496427337279,0.3193859087179833,0.3306651852019818,0.3408666781155189,0.3506115182761889,0.3600551737036517,0.3685855321566817,0.3769868859533456,0.3849481704723596,0.3917902163455608,0.3994164349938638,0.4054608465203985,0.4122271082227497,0.4187471929407413,0.4209306087237828,0.4227507755946225,0.424886276947419,0.4266003133886599,0.4277893794749403,0.4286264066131987,0.4293135317738543,0.430896327936161,0.4326652995812582,0.4338473733515889,0.4344529532185912,0.4347286945738914,0.4368734069668649,0.4392788942438847,0.4395714355444916,0.4411858294442087,0.4422585144716959,0.4428667801728292,0.4454242391655016,0.4482675066634359,0.4485646489554739,0.4507249536683745,0.4508371581873424,0.4498708617046255,0.4524817237399,0.4527592480291085,0.4554190296156269,0.4551971326164875,0.4518624641833811,0.4521912350597609,0.0,2.601230416914522,73.88973362177781,272.88433616727457,418.84827893808153,OR_public_implementation,15 +100000,95724,44989,417.2934687225774,9201,94.57398353599932,7168,74.19247001796832,2904,29.84622456228323,77.31652017658898,79.67889430275184,63.31665033110207,65.06301287216228,76.96411233939988,79.32622068711322,63.18681091955349,64.9366360060464,0.352407837189105,352.6736156386221,0.1298394115485805,126.3768661158764,55.3476,38.45040334606301,57819.98244954244,40167.98644651604,163.12629,87.30873800864892,169730.66315657517,90526.33405274426,248.49689,116.0132946792371,255762.4942543145,118203.38660552086,5218.62112,2330.237516763115,5405030.389453011,2387622.4215067434,1729.41954,749.8684304268263,1790392.3154067944,767101.5951521442,2873.39816,1196.6643281471015,2956125.1305837617,1209955.507601207,0.43112,100000,0,251580,2628.181020433747,0,0.0,0,0.0,12771,132.68354853537252,0,0.0,23552,242.19631440391123,2268034,0,81615,0,0,7376,0,0,34,0.3551878316827546,0,0.0,0,0.0,0,0.0,0.09201,0.2134208573019113,0.3156178676230844,0.02904,0.3142621088505628,0.6857378911494372,25.92159838285453,4.661220445912891,0.3257533482142857,0.1988002232142857,0.2417689732142857,0.2336774553571428,11.024913000260398,5.320748922345659,31.049520447640496,15521.905703887096,81.0270157781449,16.39857476040413,26.673215742979604,18.734117814738596,19.221107460022555,0.5343191964285714,0.7607017543859649,0.7070663811563169,0.5355223880597015,0.1142527409117138,0.6966490299823633,0.9432989690721648,0.8860544217687075,0.6864864864864865,0.1239436619718309,0.4838119626852021,0.6923818707810994,0.6468231253577561,0.49272030651341,0.1117561683599419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729074867556,0.0053223304711022,0.0082009642222786,0.010719692736011,0.0135396321614583,0.0161224614507159,0.0187959572884052,0.021741572459994,0.0240181593235243,0.0267929357563347,0.0292739446512247,0.0315436034870467,0.034211852293644,0.0366270568610087,0.0391240665098815,0.0414531327492147,0.0443351793385435,0.0467822911912368,0.0495010395010395,0.0517284490842032,0.0691606544368689,0.0851497996044411,0.100187727449109,0.1144446547626559,0.1290230733538617,0.1466817576001184,0.1630522429232271,0.1787839751301514,0.1933939581752706,0.2073724311852766,0.223675703633464,0.2383148232339633,0.2528555577312186,0.2670910721708123,0.2793832599118943,0.292702130254943,0.3055065144032002,0.317787211043677,0.3292443293465544,0.3396083646702742,0.3500746934096094,0.3596197522770376,0.3686019364548891,0.37695901235754,0.3852567769892761,0.3923429602441948,0.4002383939774153,0.4072547718689395,0.4138606921259638,0.4204771108581111,0.422829038926646,0.4241715992697903,0.4260438080385624,0.4272268369677485,0.4287937044628297,0.4297017181282581,0.4301863928440455,0.4313072577572354,0.4337048026497377,0.4351562641052954,0.4363074824260568,0.4369019317977505,0.4375530110262934,0.4383040405870628,0.4393352340570704,0.4403778663218724,0.4399942204883687,0.4404545888644828,0.4428733835441239,0.4442343284783133,0.4476322476322476,0.4479008872538411,0.452755147860671,0.4555435286840884,0.455006701129619,0.4581406668289121,0.4626889168765743,0.4638616954801083,0.459812553251917,0.455049504950495,0.0,2.5958042064560662,75.286404946177,280.06400069539234,415.4285214299591,OR_public_implementation,16 +100000,95672,45243,419.6107534074756,9203,94.7926248014048,7104,73.60565264654235,2949,30.416422777824238,77.40264542862671,79.78275243152095,63.35728834693722,65.11205517089064,77.04424871260557,79.42070991817397,63.22704059364128,64.98308895464062,0.3583967160211472,362.042513346978,0.13024775329594,128.9662162500207,56.34772,39.163217720275526,58896.7723053767,40934.87929621574,164.48304,87.98500041336418,171276.77899489924,91318.53624721494,246.03273,114.52563886841166,252659.58692198343,116328.51270611948,5185.92661,2307.8340085990967,5376832.741031859,2368575.5048369025,1745.65853,749.2249289065562,1808983.29709842,767505.5456452201,2917.4546,1205.2020977321033,3012587.6954594865,1228350.1976350418,0.43316,100000,0,256126,2677.1260138807597,0,0.0,0,0.0,12820,133.33054603227694,0,0.0,23305,239.0877163642445,2268335,0,81448,0,0,7727,0,0,39,0.4076427794966134,0,0.0,1,0.0104523789614516,0,0.0,0.09203,0.2124619078400591,0.3204389872867543,0.02949,0.3077397471477027,0.6922602528522973,26.097773744631063,4.647836397312461,0.321509009009009,0.1949605855855855,0.241554054054054,0.2419763513513513,11.140704458174934,5.464532114695306,31.292706585896944,15674.321513194674,79.90778977662215,15.986570426234891,25.91326045895826,19.10979427067064,18.898164620758365,0.5413851351351351,0.7487364620938628,0.7027145359019265,0.5840605002908668,0.1165501165501165,0.7055655296229802,0.9035532994923858,0.8663101604278075,0.7467018469656992,0.1602373887240356,0.4908890115958034,0.6871846619576185,0.6494486360998258,0.5380597014925373,0.1058738216098622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028151613654545,0.0058074128127945,0.0086021505376344,0.0112326457654144,0.0140633103181785,0.0169847056188012,0.019859920274858,0.0224431267286514,0.0247713453579275,0.0273345955073427,0.0298902180263845,0.0323590707033375,0.0351943244910549,0.037621784176811,0.0403425505571605,0.0427165801930669,0.0450215374420145,0.047569138172573,0.050087882601325,0.0522569281597515,0.0693235831809872,0.0859413446134838,0.1014092783613335,0.1163426744088193,0.1309130797059413,0.1488382427628237,0.165034015049404,0.1809586678307531,0.1962035463494404,0.2102440332528828,0.2262209966176185,0.2421224684195144,0.2576960730990971,0.2710657566609791,0.2842208356717617,0.2964546390953293,0.3098044901464372,0.3220371369481162,0.3332955524323344,0.343653109089869,0.3538797485904427,0.3633740962659285,0.3718723037100949,0.3806341907362169,0.3883014240794473,0.3954064344418842,0.4019228602546287,0.4083831573591146,0.4145498329837644,0.4210908323105956,0.4226272259489749,0.4248692540600055,0.4271963696834747,0.4294352505497049,0.4310591176995892,0.4317022975795552,0.4324552059651186,0.4337420984006997,0.4357047256254504,0.4370162868789168,0.4391467531732709,0.4405912111893661,0.442869162810265,0.4440169209306512,0.4457515705726829,0.4473143759873618,0.4482987312572087,0.4497489034390693,0.4492376745511541,0.450626485637162,0.4532040276553292,0.4535364526659412,0.4531934071594128,0.4560747663551401,0.4547034962333398,0.4547101449275362,0.4474346868114573,0.4451827242524916,0.4451631046119235,0.4562015503875969,0.0,2.480420393898487,74.15776115457416,269.66608197945754,419.6713380274008,OR_public_implementation,17 +100000,95718,45172,419.2523872207944,9185,94.65304331473703,7141,73.93593681439228,2922,30.07793727407593,77.33907921770925,79.70506875703158,63.32552877917672,65.07515322307279,76.98175366744073,79.3478770065132,63.19492978132272,64.94808348636454,0.3573255502685271,357.1917505183819,0.1305989978539941,127.0697367082505,54.4423,37.85926604281958,56877.80772686433,39552.9221701452,162.2042,86.67892247323668,168805.68962995466,89901.74520282149,245.91638,114.73182391401858,253145.46898180072,116902.14827330422,5184.28328,2305.539380398663,5372698.907206587,2365172.7369968696,1743.35115,749.9675945821597,1807184.949539272,769361.8071649633,2892.10676,1197.3788754353734,2980409.703504043,1214115.4335053482,0.43368,100000,0,247465,2585.354896675651,0,0.0,0,0.0,12660,131.57399862094903,0,0.0,23311,239.72502559602165,2275279,0,81753,0,0,7491,0,0,34,0.3552100963246202,0,0.0,1,0.0104473557742535,0,0.0,0.09185,0.2117921047777163,0.3181273816004354,0.02922,0.3086776859504132,0.6913223140495868,25.950612696588276,4.599349282965251,0.3289455258367175,0.1964710824814451,0.242262988376978,0.2323204033048592,11.026438041915606,5.421946957993703,31.14356845204561,15595.866789744348,80.70543017279542,16.538873840387723,26.700933192585087,18.447302329775688,19.018320810046937,0.5439014143677356,0.7925873129009265,0.6888037462750106,0.5623869801084991,0.1277456647398843,0.701641266119578,0.9110576923076924,0.8445945945945946,0.7150684931506849,0.1711711711711711,0.4943882244710211,0.7426545086119554,0.6363118952760387,0.5193199381761978,0.117394416607015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023294441743639,0.0050289978505089,0.0077646843884169,0.0103844903267761,0.0129599300123088,0.0156331157257941,0.0182635829662261,0.0205823498182709,0.0232726975265089,0.0258920889835716,0.0287574996154043,0.0312753566623185,0.0339295080786991,0.0361937338374836,0.038594933834307,0.0413228268288142,0.0438003087155155,0.0466607856364485,0.0491373662371696,0.0515935445556933,0.0689151091155894,0.0852245974197193,0.100123726041186,0.1150897561283402,0.1293581658264959,0.1471338051262522,0.1641078419930185,0.1796518128094553,0.1946092105122532,0.2084840160108169,0.2248483084914912,0.2406186035933591,0.2561429473088558,0.2700886505417533,0.2826333586667988,0.2960970686423477,0.3089927816389926,0.3209221655347952,0.3322580278746436,0.3428879483385522,0.3528560010193798,0.3617629150859444,0.3709316505452091,0.3789713463613475,0.3868639743402828,0.3946330885614312,0.4020243218897007,0.4085953104922329,0.4147412319328601,0.4208105929459649,0.4227554596926395,0.4246989198361131,0.4275672847101418,0.4298100383408853,0.431196223709369,0.4326692122929113,0.4344151399875849,0.4355977317440111,0.4365573233585575,0.4376284756031591,0.4397776054766542,0.4398994333147099,0.4401057082452431,0.4407208918436108,0.4423389937565289,0.4422600537606072,0.4438341909001561,0.4441464738371165,0.4443334997503744,0.4456847043597832,0.4468441630981195,0.4474616936583238,0.4475628726989888,0.4494628714812201,0.4469128678592037,0.450546780072904,0.4498176629142223,0.4511530398322851,0.4585950885208452,0.4598425196850393,0.0,2.660572649337449,75.67273853968739,272.95562838726227,418.81609134210186,OR_public_implementation,18 +100000,95678,45095,420.5878049290328,9035,93.0098873304208,7030,72.81715754927988,2870,29.55747402746713,77.30793472821749,79.68374887769329,63.31631099018998,65.06994827988753,76.95986906436532,79.33277250614256,63.190182042989086,64.94545151986436,0.348065663852168,350.976371550729,0.1261289472008968,124.49676002316323,54.84666,38.20115858192434,57324.212462635085,39926.794646548144,162.15733,86.95831368733663,168777.90087585445,90182.220136017,245.25515,114.67576238997272,251652.3756767491,116266.49708909678,5033.11451,2238.595369685709,5218289.690419951,2297713.6944705555,1704.14505,732.3619498260867,1763703.4323459938,748080.1155972049,2819.96904,1161.289489199731,2907745.228788227,1181108.9343198177,0.4314,100000,0,249303,2605.646021028868,0,0.0,0,0.0,12663,131.62900562302724,0,0.0,23240,238.36200589477207,2270223,0,81646,0,0,7542,0,0,39,0.3867137691005247,0,0.0,0,0.0,0,0.0,0.09035,0.2094343996291145,0.3176535694521306,0.0287,0.3126902487666632,0.6873097512333368,25.73038132838345,4.593737231629096,0.3322901849217639,0.2048364153627311,0.2311522048364153,0.2317211948790896,11.166459258067777,5.616893566322673,30.63479575936584,15429.357143685607,79.34682580514884,16.624272622682117,26.479623356260664,18.175390243554904,18.067539582651133,0.5396870554765292,0.7604166666666666,0.6999143835616438,0.5414364640883977,0.112,0.6907216494845361,0.9128205128205128,0.8546712802768166,0.6750700280112045,0.1481481481481481,0.4934027132503252,0.7038095238095238,0.649032992036405,0.5039308176100629,0.1029976940814757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027742340481542,0.0052794779295529,0.0079022915631118,0.0104818396034776,0.012976975022374,0.0157732882570974,0.0181093289555526,0.0206023481368044,0.0233597088470424,0.0257239663838019,0.0281505325637897,0.0305547284879721,0.0333004237113826,0.0358813227567734,0.0385631436649949,0.0407112581412178,0.0430935333796147,0.045183193347107,0.0476448069241011,0.049705499087829,0.0662154116135501,0.0832635545321331,0.098922542673395,0.1135206764545033,0.1270386809062444,0.1441669134131382,0.1613108562577578,0.1771944391220114,0.1914789055906327,0.2054280197382536,0.2220115895823011,0.2378850335940796,0.2525310743064693,0.266159280035867,0.2785503674690842,0.2921375703585516,0.3046123278190789,0.3165554267448535,0.3281218066625792,0.3392208328080048,0.3485424294387542,0.3580427604617942,0.3673002630768137,0.3758618204530713,0.3847727604851673,0.3923424870850532,0.3995278398673933,0.4067034539137543,0.4135069394763199,0.4193129406775168,0.4210085056321077,0.4219378933536206,0.4236788805008286,0.4251123423934383,0.4269214081599066,0.4274259456292116,0.4283411535637907,0.4294048427996089,0.4305759306881138,0.4316964527240266,0.4337102915269648,0.4341365863413658,0.4355556497414597,0.4369785896769234,0.4382173054898998,0.4387038656174655,0.4403916910507865,0.4413091467511277,0.4430093639005489,0.4437565752205227,0.4461674583216913,0.4462715727775969,0.446258064516129,0.4499414748341787,0.4462666409415396,0.449811870372618,0.4524289927052615,0.4496907216494845,0.4408572223768439,0.4448772886638099,0.0,2.532814384642093,73.10272739338956,272.5417026944236,412.0539283277728,OR_public_implementation,19 +100000,95702,45185,420.8480491525778,9295,95.8078201082527,7247,75.10814821006876,2958,30.480031765271363,77.38171245272493,79.7572069400069,63.34258245905804,65.09591979449033,77.02733221904941,79.39892230387261,63.21435508707001,64.96924836724794,0.3543802336755135,358.284636134286,0.1282273719880322,126.67142724238543,54.2377,37.73845733557826,56673.52824392385,39433.30059515816,164.16412,87.51730647897621,170902.17550312428,90814.37646527337,249.11061,116.40135021484885,256785.6680111178,118880.38349481778,5234.5849,2322.4710735468143,5428872.897118137,2386071.253800364,1810.23588,779.1756292088288,1876552.527637876,799324.9547396123,2914.81512,1193.8838775676388,3006094.167311028,1213670.307027372,0.43341,100000,0,246535,2576.0694656329024,0,0.0,0,0.0,12793,133.03797203820193,0,0.0,23563,242.6699546508955,2276949,0,81771,0,0,7264,0,0,40,0.4179640968840776,0,0.0,0,0.0,0,0.0,0.09295,0.214462056713043,0.3182356105433028,0.02958,0.3100672508661096,0.6899327491338904,25.79244113519511,4.5464482700709,0.3306195667172623,0.1975990064854422,0.2407892921208776,0.2309921346764178,11.35225644841058,5.752952057561985,31.417304753971404,15593.04701692503,81.59577590936297,16.721224194933363,27.25627504918836,18.49159945780962,19.126677207431605,0.5512625914171382,0.7583798882681564,0.7212020033388982,0.5669056152927121,0.1329512893982808,0.7033997655334114,0.901913875598086,0.8535353535353535,0.7134670487106017,0.1942028985507246,0.504421584551525,0.6992110453648915,0.6775804661487237,0.5283018867924528,0.1178571428571428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002653540755145,0.0054739531064683,0.0077931566343304,0.0106759035410275,0.0132941391866875,0.0157942973523421,0.0185574158288639,0.0211117349803481,0.0235223160434258,0.0261749019848703,0.028726087223965,0.0311806981519507,0.0338437490359005,0.036176722051113,0.0384099399393201,0.0409123336676351,0.0431783580002692,0.0455451092709046,0.0478637101135749,0.0503064032016008,0.0678566206421156,0.084290425587604,0.0997334844287752,0.1142192858796052,0.1281962025316455,0.1462081072792072,0.162767255557324,0.1787585178875639,0.1944337606837606,0.2089765181665075,0.2253722980108187,0.2409959404600812,0.2565934723264489,0.2698223558349276,0.2818941810581894,0.2957758954769418,0.3085889570552147,0.3200103494049092,0.3316163289387097,0.3421652519559664,0.3521037097054227,0.361799934496795,0.3709876104517565,0.3794530406621086,0.3877605623525406,0.3956392443331153,0.4033997670019667,0.4101488808443379,0.416049302627311,0.4218793383840387,0.424316412836735,0.4261626063338434,0.4278591505529739,0.4293824585795389,0.4302514253390297,0.4314917127071823,0.4328467269232602,0.434693104527264,0.4357638591380344,0.4373800599027925,0.4376614317226296,0.4393070489844683,0.4402587278511682,0.442072072072072,0.4425347264308744,0.4437390140882021,0.4453190083594266,0.4453035872734187,0.4477363633145729,0.4489361702127659,0.4502586366155551,0.4531553922628052,0.4514860421636258,0.4543892533583255,0.4546855436771645,0.4568126520681265,0.4557898049087476,0.4585243851604835,0.4506278538812785,0.4527622097678142,0.0,2.3926838611025616,75.8287745839121,279.8434901192063,422.4242636078885,OR_public_implementation,20 +100000,95847,45275,419.0950160151074,9349,96.10107775934564,7315,75.6309534988054,2982,30.663453211889784,77.44506122741345,79.72367545766348,63.40474875222951,65.08438180844442,77.0823574382058,79.35738127076816,63.273051964928655,64.95406556232079,0.362703789207643,366.2941868953169,0.1316967873008536,130.3162461236269,54.07248,37.64948374672162,56415.41206297537,39280.81603672689,164.65229,87.81107947190193,171097.5721723163,90937.12136253764,253.44068,118.62117940251706,259974.7305601636,120346.12547352756,5288.90412,2361.3454859973867,5470860.590315816,2417600.519530534,1815.29921,789.2527595625722,1870383.100149196,800282.9936881053,2947.11244,1220.519368957124,3032987.7200121027,1238883.0419900245,0.43409,100000,0,245784,2564.336911953426,0,0.0,0,0.0,12908,133.95307104030385,0,0.0,24015,246.0483896209584,2277515,0,82009,0,0,7498,0,0,34,0.3547320208248563,0,0.0,2,0.0208665894602856,0,0.0,0.09349,0.2153700845446796,0.3189645951438656,0.02982,0.3103204285858688,0.6896795714141312,25.858653016382668,4.637403186938306,0.3358851674641148,0.1928913192071086,0.2395078605604921,0.2317156527682843,11.077940683086386,5.486578473651013,31.78069927226206,15633.02499385618,82.53873411812143,16.354387533226515,27.81390787338538,18.98468068833456,19.385758023174983,0.5382091592617908,0.7583274273564847,0.6862026862026862,0.5663716814159292,0.1261415525114155,0.6978869217589948,0.9152941176470588,0.8578595317725752,0.706989247311828,0.1601123595505618,0.4879583033788641,0.6906693711967545,0.6309844002151694,0.526832955404384,0.1174785100286533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026316322192756,0.0053991632816377,0.0082942112894558,0.0110125451666599,0.0138801390046131,0.0165020195134854,0.0191069828077894,0.0214343255121498,0.0241297266386872,0.0268916155419222,0.0296433581470597,0.0321108444608536,0.0343651788098514,0.0371425632585887,0.0397679857412196,0.0422360761322819,0.0445816399342288,0.0470747932771019,0.0497991217415677,0.0521901987306211,0.0693067242224238,0.0854749070243617,0.1009108993822636,0.1160440713536201,0.1306392559548859,0.1487028476136195,0.165150729026588,0.1808793217025436,0.1957022501866268,0.2099669267572167,0.2266888805288332,0.2421807499567997,0.2563278425070309,0.2697637846869574,0.2826867934478099,0.295214590849731,0.307312341108782,0.3191946218185089,0.3306112264225844,0.3409970459593762,0.3510398222407388,0.3612431230246986,0.3695443616681076,0.3778286508773612,0.3867995624164337,0.3950659923522881,0.4026040817350509,0.4089094642333346,0.4159331100205136,0.4222607361151536,0.4242874309709301,0.4260786802030457,0.428049073172109,0.4300662865082351,0.4313398624713482,0.4317079906714128,0.432180260234846,0.4335242044295258,0.435536963379509,0.4370913129937834,0.4382750951788609,0.4403910870387701,0.4426305674642563,0.4438958403787623,0.4448111833802543,0.4453509487591126,0.4447767202461397,0.4472112819209757,0.4479988676173962,0.4478793969849246,0.4519137091162143,0.4533774260002168,0.4552986512524085,0.4606117499804428,0.4628516003879728,0.4689874969355234,0.4646480659480025,0.4683597883597883,0.4732321786430002,0.473365617433414,0.0,2.591956671245833,77.49302294200032,283.08603799381467,422.9555389275143,OR_public_implementation,21 +100000,95676,45233,420.7951837451399,9299,95.82340398846104,7227,74.87771227894143,2990,30.81232492997199,77.29747507811412,79.7025969349746,63.28577397120039,65.06652344859602,76.93559912758447,79.33711237836964,63.15329024969395,64.93567404544494,0.3618759505296509,365.4845566049545,0.1324837215064391,130.84940315107474,54.71488,38.07274586499999,57187.67507002802,39793.41304506876,163.55173,87.21577746777832,170234.51022199926,90449.79551228067,248.86617,116.02193131113728,255857.49822316988,118023.81304232056,5218.36781,2337.363503260181,5406458.840252519,2395384.44767163,1800.58999,781.9359309661786,1861725.3438688908,797218.0999693269,2951.31876,1226.1029105827229,3042117.7097704755,1245023.094826667,0.43355,100000,0,248704,2599.439775910364,0,0.0,0,0.0,12777,132.8128266231866,0,0.0,23738,243.88561394707136,2267919,0,81614,0,0,7574,0,0,24,0.2508466072996362,0,0.0,0,0.0,0,0.0,0.09299,0.2144850651597278,0.3215399505323153,0.0299,0.3121881682109765,0.6878118317890235,25.76488199980189,4.609205248885528,0.3326414833264148,0.1980074719800747,0.2382731423827314,0.231077902310779,11.064556226721288,5.526427010401285,31.966333880849035,15620.3019859237,81.85255234541542,16.765873302816765,27.217005927586865,18.69670482079595,19.17296829421584,0.5455929154559291,0.7624039133473096,0.6938435940099834,0.5754491017964072,0.1295005807200929,0.6913510457885811,0.9245283018867924,0.8492201039861352,0.736,0.1653944020356234,0.4983510443385855,0.6941410129096326,0.6447728516694033,0.528957528957529,0.1188863807373965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029389111840771,0.0056093157243421,0.0081526981065028,0.0109135250482674,0.013519287109375,0.0162867444845077,0.0188282811798784,0.0212720328424664,0.0238399623633369,0.0262772526651032,0.0287302678140994,0.0315280146288344,0.0339602065801115,0.0362306146633005,0.0388006690482582,0.0415296137694201,0.0437900977374252,0.0462682227852307,0.048741663979026,0.0509854193373563,0.067482868126358,0.0837704008458695,0.0996390119000146,0.1142763967641149,0.1288781053853051,0.1467037675762032,0.1627425587023905,0.1790294405862554,0.1943318539115555,0.208096644295302,0.2247918194762048,0.2407684468440339,0.2556844800348641,0.2698381387601232,0.2832601936181004,0.2966526825153714,0.3085291947134199,0.3205788542382815,0.3320751713866688,0.3425487249492389,0.3531744651243694,0.3627037167311525,0.3720155139898708,0.380873955641041,0.3882978075146551,0.3961543217509583,0.4028789629704065,0.4097926944607755,0.4163499583506872,0.4232708073545408,0.4251486462692834,0.4271582360031589,0.4283443558229968,0.4295094856077923,0.4314581868764677,0.4327311403643987,0.433568549992832,0.4342024869131562,0.4353171468800439,0.4360443191409126,0.437687220934833,0.4392276180248975,0.4399341049252344,0.4407601100040575,0.4412043219618793,0.444266049009028,0.445758857899433,0.4488576784976645,0.4504846784788552,0.4533617329100189,0.4557926829268293,0.4574061102430087,0.4618931727936467,0.4611511348671469,0.4605402287801595,0.4576722780670946,0.4548747834304615,0.4532029950083194,0.4566506636543349,0.4528452049343414,0.0,2.474584302387742,78.9155011278108,276.9032978395551,416.0718210420337,OR_public_implementation,22 +100000,95825,45032,418.30420036524913,9205,94.63083746412732,7143,73.91599269501695,3010,31.004435168275503,77.32864418348662,79.64055753644477,63.32870225298407,65.03909337648503,76.95332495294858,79.26344990354725,63.1913022807966,64.9043395574434,0.3753192305380395,377.1076328975198,0.1373999721874668,134.75381904163442,54.7393,38.024689694630425,57124.23689016437,39681.38762810376,161.96254,86.47289431496606,168381.83146360551,89603.17695274307,244.17575,113.71259851632684,251698.47117140616,116170.2151671379,5241.78668,2342.405142455375,5427902.269762588,2402197.5606108806,1796.45977,775.1912456889244,1860626.5483955129,794862.3696205821,2980.57664,1243.0816560403075,3072739.2225410906,1262784.229811796,0.43196,100000,0,248815,2596.556222280198,0,0.0,0,0.0,12708,131.959300808766,0,0.0,23098,237.8919906078789,2270148,0,81811,0,0,7349,0,0,43,0.4487346725802243,0,0.0,0,0.0,0,0.0,0.09205,0.2130984350402815,0.3269961977186312,0.0301,0.3059197050389184,0.6940802949610815,25.878561036930588,4.675530314667894,0.3302533949321014,0.1831163376732465,0.250034999300014,0.2365952680946381,11.050034004426175,5.454238571166337,32.349200625355266,15557.142196895127,80.71639634423633,15.116576056247744,26.769625365765854,18.97813685928035,19.85205806294239,0.5325493490130198,0.7469418960244648,0.6977532852903773,0.5692307692307692,0.1226203807390817,0.6980369515011547,0.9478021978021978,0.8623548922056384,0.7297979797979798,0.1490514905149051,0.4795786361116245,0.6694915254237288,0.6412300683371298,0.5200927357032458,0.1157374735356386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025826707854357,0.0053825568665612,0.0084715669862527,0.0112241995774418,0.01376855806386,0.0162797800855222,0.0189277341759249,0.0214926469837835,0.0240255891430089,0.0267175572519083,0.0292324559156531,0.0317313711605759,0.034304506448795,0.036576828841442,0.0390005465438833,0.0413227409374063,0.043619090984353,0.0459536523407123,0.0483120390568193,0.0505761244054,0.0676130970386673,0.0836339303451376,0.0998826020418859,0.1149610105723353,0.129576336400915,0.1473728723966592,0.1643035155628612,0.1808681586480648,0.1960160213618157,0.2097384702816886,0.2253363349454432,0.2415886586223689,0.2561400073962888,0.269055403085603,0.282189006537962,0.2949064633389485,0.3071938507602757,0.3193325596854333,0.3298823796806637,0.3406023322008998,0.3500359737275744,0.3590854138056504,0.3677536662467616,0.3769287200394463,0.3851084572264197,0.3927172045536012,0.4009143660981185,0.4074135595819171,0.4142862720091615,0.4205462363308206,0.4224749526130517,0.4244636203720376,0.4262506922650914,0.4276944164953264,0.4294215520213452,0.4294968922972262,0.4303368451343703,0.4315854022340813,0.4332982921743326,0.4353392394122731,0.4365461086915357,0.4388689048760991,0.4404199919557992,0.4415064465053155,0.4420616546850249,0.4418148570217051,0.4421223261064637,0.4449942536074575,0.4471258231001958,0.4477708031546756,0.4503544456285039,0.4485022791404384,0.4505898278862889,0.4516078554103748,0.4491451753115039,0.4512763868433971,0.4488226059654631,0.448576771244546,0.4462577377602701,0.4536082474226804,0.0,2.426348667728627,77.19695670027384,267.7211575075279,420.67012395766113,OR_public_implementation,23 +100000,95728,45100,418.4773524987465,9335,96.13697141902055,7285,75.32801270265753,2966,30.513538358682936,77.35098256499538,79.69895358692489,63.33757887846742,65.07095547429455,76.99513657291466,79.3414117561501,63.20898858256871,64.94467835159338,0.3558459920807166,357.5418307747924,0.1285902958987108,126.27712270116832,54.7371,38.05730062737872,57179.82199565435,39755.66253068979,164.92699,88.29590179827073,171467.28229984958,91422.72712915116,249.05759,116.66148663421444,254920.9322246365,117828.39463891326,5269.80468,2340.351518970405,5456701.539779374,2396973.034684991,1770.62106,757.5937519046554,1833711.1607889016,775745.9606517705,2920.67212,1199.2721527747424,3007574.398295169,1216418.241258332,0.43264,100000,0,248805,2599.082817984289,0,0.0,0,0.0,12870,133.64950693631957,0,0.0,23681,242.1339628948688,2271279,0,81726,0,0,7453,0,0,32,0.3238341968911917,0,0.0,0,0.0,0,0.0,0.09335,0.2157683062130177,0.3177289769683985,0.02966,0.3103448275862069,0.6896551724137931,25.68365325223587,4.662981783542083,0.3262868908716541,0.1994509265614276,0.2380233356211393,0.2362388469457789,11.194542679537498,5.557625116171543,31.58858417430119,15594.383116777266,82.29661300938162,16.976749554736646,26.885086164589023,19.35184102538817,19.082936264667783,0.5411118737131091,0.7439779766001376,0.6945729911653344,0.5932597327135386,0.1089965397923875,0.7093089663049685,0.8823529411764706,0.867595818815331,0.7376237623762376,0.1691842900302115,0.4878930249367546,0.6834817012858556,0.63948973932335,0.5489749430523918,0.0947968638631504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029872510202221,0.0055239659034471,0.0080565786936978,0.0106341919232956,0.013380646866834,0.016074355346072,0.0185625019112955,0.02134043660635,0.0238964012305931,0.0264663439396575,0.0292453410418844,0.0316978033258057,0.0342158021898935,0.0366384858563911,0.0394284830040748,0.041953488372093,0.0443903701786176,0.0468308982234766,0.0490845385263201,0.0516319918322272,0.0687120919501832,0.0851667032817583,0.1007224418324228,0.1155758818272617,0.12960288428088,0.1475808412351082,0.1638933961163607,0.1801483499526429,0.1950070503781566,0.2086976110533034,0.2249929982549497,0.2405074252067368,0.2544570502431118,0.2685889369152486,0.2815544668905158,0.2953031293995056,0.3078598717576353,0.3196668729953295,0.3311040966481969,0.3416645637861026,0.3521795525084542,0.362118231216039,0.3709394829055781,0.3796472802695153,0.3877608059008664,0.3950833415524213,0.4023922845691383,0.408312211027754,0.4150803846004126,0.4207029802551479,0.4230467693971343,0.4251669177921234,0.4273355421516155,0.4286088170291962,0.4306066313869704,0.4307837058288217,0.4317343762471067,0.4321726303926281,0.4338656273711802,0.4362303702636507,0.4376914640142203,0.4391182924396569,0.4397425855754779,0.4418383947939262,0.4429112817024584,0.4434970831243566,0.4438932948810382,0.4448872875681535,0.445324430869766,0.446574570059205,0.4481927710843373,0.4490204567593895,0.4504262000897263,0.4526046114432109,0.4529496402877698,0.4522796352583587,0.454819755439098,0.4559498956158664,0.4580846831486218,0.4640730448590711,0.0,2.9987613773100694,77.51705107032565,278.39380885460423,424.0531103409495,OR_public_implementation,24 +100000,95812,45229,420.4066296497308,9330,95.7708846491045,7248,74.75055316661796,2959,30.23629607982299,77.51248185563044,79.79655038925155,63.42745123530996,65.1099679970318,77.15421349722685,79.44359148771173,63.29610864872951,64.98511485414981,0.3582683584035919,352.9589015398216,0.1313425865804518,124.8531428819888,54.5281,37.91105516276945,56911.32634743038,39567.9405113863,165.90849,88.7632727631496,172232.18386005927,91717.9245761873,250.7619,117.29931625624675,256821.1810629149,118627.7295495578,5260.95173,2348.959687661448,5426355.957500105,2387312.466898696,1777.99102,775.879815448307,1828155.7946812508,782324.5644440177,2919.46062,1203.240482917102,2985813.238425249,1202822.6804295664,0.43322,100000,0,247855,2586.8784703377446,0,0.0,0,0.0,12898,133.65757942637666,0,0.0,23818,243.5707427044629,2279049,0,81853,0,0,7434,0,0,31,0.3235502859767044,0,0.0,0,0.0,0,0.0,0.0933,0.2153640182817044,0.3171489817792068,0.02959,0.3102714748784441,0.6897285251215559,25.80328897218183,4.621354167952182,0.3383002207505519,0.1934326710816777,0.2385485651214128,0.2297185430463576,11.249478616641197,5.682021507421189,31.151917190090867,15578.337924776064,81.33393474866621,16.34497073376758,27.601986637653805,18.581515439649,18.805461937595837,0.5522902869757175,0.7853067047075606,0.6945350734094616,0.5927927927927928,0.1226142278773857,0.7162004662004662,0.9234449760765552,0.85,0.7356948228882834,0.1903323262839879,0.5014461315979755,0.7266260162601627,0.6441684665226782,0.5523882896764253,0.1065808297567954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023576791532592,0.0050738801511023,0.007632349810965,0.0104412943552069,0.0130539019484345,0.015732736702939,0.0182647472053104,0.0206599771577745,0.0234956551928359,0.0260660599243276,0.028723567661666,0.0311458429478304,0.0338255088725172,0.0364119136323405,0.0388556701030927,0.0413563733641819,0.0438219803189122,0.0462085553735459,0.0484594768661832,0.0506491207978928,0.0681372549019607,0.0847101388656516,0.1008833977805023,0.1151329264834091,0.1296532260612251,0.1470283746381863,0.1639971591210235,0.179366379172826,0.1942345457650273,0.2082454129668705,0.2245108689806498,0.2405644577467071,0.2556586149969589,0.2685580694145537,0.2819760413232223,0.2944964482506805,0.3075817022604664,0.3198368282651203,0.331607215700494,0.3424101373528974,0.3525391639633815,0.3618606712223337,0.3706358108506996,0.3790476873774334,0.387489392653655,0.3952976205123157,0.4023786917195542,0.4091330345694372,0.4151231176888774,0.4218507305515335,0.4233184097661974,0.4249605055292259,0.4263678164152031,0.4280967858432647,0.429515942115116,0.4297980649810638,0.4303409505963062,0.4323656781544845,0.4340812863191456,0.4351624302653057,0.4368840566055512,0.4390573729740479,0.440951195324204,0.4422042708309894,0.4431033650364505,0.4427636744307773,0.4434578368469294,0.4452649184259522,0.4473146320834508,0.4487897937283892,0.4502257284873911,0.4533177371331348,0.4543845229816021,0.4560637401363671,0.4552837850599679,0.4561257292534825,0.4572570725707257,0.4545638534709573,0.4533592448639644,0.4585741811175337,0.0,3.38953469065036,74.88242558461846,276.93171711128167,422.236363134219,OR_public_implementation,25 +100000,95738,45171,419.9690822870752,9181,94.64371513923416,7093,73.50268440953435,2981,30.750590152290627,77.31288813594676,79.67336996546834,63.318020272784125,65.06284672428723,76.95895775905068,79.31482304244462,63.190403309792345,64.93629824536818,0.3539303768960877,358.5469230237237,0.1276169629917802,126.54847891904808,54.87328,38.18073256744509,57316.091833963525,39880.43678314262,161.42739,85.90961240582568,168036.09851887444,89156.47120874228,240.7941,111.108785618183,248171.9797781445,113462.118411081,5214.18137,2296.412656169046,5404154.546783932,2356494.564508393,1764.47954,750.3627659231693,1828140.1115544504,768914.8717210944,2950.43966,1209.6793001387136,3044571.30919802,1231341.4432919766,0.43365,100000,0,249424,2605.2769015437966,0,0.0,0,0.0,12641,131.4211702772149,0,0.0,22806,234.8492761494913,2273430,0,81742,0,0,7391,0,0,38,0.3969165848461426,0,0.0,0,0.0,0,0.0,0.09181,0.2117145163150005,0.3246922993138002,0.02981,0.3048177887584929,0.6951822112415071,26.047917136717796,4.705814093921671,0.3273650077541238,0.1882137318483011,0.2485549132947976,0.2358663471027773,10.969810396741575,5.2643828731915,31.71619103180434,15618.266172070167,80.01340428427034,15.475610313413643,26.47406987669027,18.50846696014046,19.555257134025968,0.533765684477654,0.7595505617977528,0.698105081826012,0.5720263000597728,0.1100397050482132,0.6761963952765693,0.8907563025210085,0.8623188405797102,0.7335329341317365,0.133879781420765,0.4919766593727206,0.7116564417177914,0.6468926553672316,0.5317401045556386,0.1037938439513242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031193664040187,0.0058585633343131,0.0083401820229507,0.0112135863161743,0.0136491695568596,0.0162016293279022,0.018823289487101,0.021153433859787,0.0236571451939395,0.0259673769467853,0.0283909731264931,0.0308671766699183,0.0336408421009328,0.0360302827419271,0.0382551997358864,0.0408966885774525,0.043190125604465,0.0460176807503942,0.0486049728065888,0.0507095376023672,0.0681227357673073,0.0852673433085696,0.1008326691555853,0.1152899861210413,0.129628848587094,0.1478331693798326,0.1637166263423744,0.1798613994187717,0.1941397028190529,0.208467378715738,0.2256605723883971,0.2409880922767437,0.2558442970533869,0.2693923087019294,0.2830074493018342,0.2966619027043795,0.3094448723530134,0.3216142609556821,0.3323563492604457,0.3430965700660308,0.3528546442264256,0.3619989466908537,0.3710770032449845,0.3797664342211073,0.388567117687141,0.3960864197530864,0.4025745903490502,0.409692023209845,0.4164134527983378,0.4230356504113509,0.4249506343152371,0.4268777980434422,0.4294512402310567,0.4308452649175085,0.4319548759687603,0.4329892134623397,0.432998913668605,0.4343459454084423,0.4358713284782383,0.4368644450465095,0.4372831876860084,0.4378379460888372,0.4395916894802741,0.4418351864852012,0.4433276408880214,0.443977035214435,0.4439777533167255,0.4448791124222407,0.4473797250859107,0.4473053649027332,0.4470851391024745,0.4481375047443474,0.4495453963375592,0.4515024132025533,0.4528593508500773,0.4510374954495814,0.4497547080234214,0.4536340852130325,0.448512585812357,0.4473168820994908,0.0,2.1896764544452263,71.96209439822853,275.9242211771945,423.5513752379919,OR_public_implementation,26 +100000,95778,45220,419.4491428094134,9120,93.7898055920984,7086,73.37802000459395,2906,29.92336444695024,77.37208356525132,79.71174222027227,63.35007434272507,65.07996499019059,77.0173067935125,79.35397112848669,63.22117176113636,64.95267072250195,0.3547767717388126,357.77109178557964,0.1289025815887114,127.29426768864016,54.66582,38.03732263361802,57075.54970870137,39714.04981688698,162.56552,86.88661631218721,169088.83042034705,90073.91709180312,244.83235,114.25686081880602,252089.19584873357,116502.70694718494,5130.22829,2284.331332918026,5312673.1921735685,2341325.9547265824,1744.6153,750.8934682347074,1804958.581302596,767444.910265849,2871.38698,1186.1533398389197,2958421.996700704,1203392.1248919428,0.43277,100000,0,248481,2594.343168577335,0,0.0,0,0.0,12730,132.25375347156967,0,0.0,23156,238.2488671720019,2275811,0,81842,0,0,7445,0,0,38,0.3967508196036668,0,0.0,0,0.0,0,0.0,0.0912,0.2107354946045243,0.318640350877193,0.02906,0.304356846473029,0.6956431535269709,25.789062198883872,4.649591521453816,0.3333333333333333,0.1946090883432119,0.2403330510866497,0.2317245272368049,11.14772318832333,5.520548078158189,30.915260284432577,15609.260299813724,79.83953004166703,15.908244372236444,26.679292458539702,18.328026678241667,18.923966532649207,0.5406435224386114,0.7686729514140682,0.68077900084674,0.5816077953714982,0.1221374045801526,0.6927639383155397,0.9232804232804231,0.8384879725085911,0.75,0.1468926553672316,0.4931481481481481,0.7102897102897103,0.6292134831460674,0.5322834645669291,0.1156412157153447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031905195989061,0.0057378046307935,0.0083720647033752,0.0113773732489511,0.0139631851927183,0.0162180322528099,0.0189279271014891,0.0215115211135375,0.0243521092217135,0.026967557056596,0.0294729506768735,0.0320713472018391,0.0346713265148789,0.0372116968698517,0.0397426114216181,0.0421341929617919,0.0445399027015836,0.0473810289222345,0.0496243882671986,0.0518479958355023,0.0704916150980412,0.0869774398343286,0.102357664769213,0.1171123837545316,0.1312240554607328,0.1493459839824187,0.1659494636876245,0.1813773448466544,0.1954946591115237,0.209074351832012,0.2261288691404779,0.2409543474265699,0.2559180922983283,0.2698636577338975,0.282997282997283,0.2962240953446385,0.3088020351010298,0.3205622715771717,0.3319876621609362,0.3425125144617922,0.3520787771490725,0.3617506668538537,0.3710671730976299,0.3786233187081925,0.3860973356670556,0.3939068763490595,0.4009732726292157,0.4072917728616577,0.4137573273849665,0.4204806853335449,0.4228092887774092,0.4242733299337073,0.4257197425196293,0.4276567014650153,0.4291109386195366,0.4289848379896867,0.4303382411460406,0.4323762032924392,0.4347923449261881,0.4352551644713165,0.4358296345263953,0.4361356432288032,0.4374471503466937,0.4385861960005416,0.4394842476584357,0.4408491289290718,0.4417289963471908,0.44447646493756,0.4448368111289459,0.4464285714285714,0.4463731889089478,0.4471026624183183,0.4484727926078029,0.4463439272670759,0.4483291481553023,0.4488705367986398,0.4505718314272285,0.4506298252742787,0.4548986955315015,0.4562354763749032,0.0,2.301956881317563,75.19886366408907,268.1500277050902,417.039966802589,OR_public_implementation,27 +100000,95657,45194,421.5791839593548,9240,95.47654641061293,7197,74.76713674900948,2967,30.63027274532967,77.25911226955019,79.65524323981228,63.27736057920528,65.04576747418878,76.90023342702565,79.29247885753101,63.14663085196819,64.91629717358991,0.3588788425245326,362.76438228127006,0.1307297272370888,129.470300598868,53.8549,37.49579016313465,56299.08945503204,39197.363951754414,163.3292,87.31949996973324,170207.94087207416,90749.7239033043,247.77864,115.36010415577915,256910.50315188643,118894.70580451807,5173.12051,2302.150179166349,5373005.613807667,2371886.924824796,1747.97697,751.9739349067075,1814814.2530081435,773590.8871349794,2914.19146,1205.3417200873268,3010112.1925211954,1229127.0880579646,0.43185,100000,0,244795,2559.0495206832747,0,0.0,0,0.0,12749,132.78693665910492,0,0.0,23454,243.01410247028448,2269202,0,81717,0,0,7218,0,0,39,0.397252684069122,0,0.0,1,0.0104540180018189,0,0.0,0.0924,0.2139631816602987,0.3211038961038961,0.02967,0.3089979550102249,0.691002044989775,25.72111228927653,4.652833458834089,0.3415311935528692,0.1874392107822703,0.2287064054467139,0.2423231902181464,11.045989723887123,5.42035848545557,31.750362603605765,15524.347770882758,81.30983802732965,15.678112832387775,27.83896019512852,19.536830245013302,18.255934754800048,0.5398082534389329,0.7516679021497406,0.6842961757526445,0.5751146788990825,0.1130012150668286,0.6840562719812426,0.9301075268817204,0.8375209380234506,0.7054263565891473,0.1371428571428571,0.4949918047714441,0.6837256908904811,0.6351423965609887,0.5379513633014001,0.1064814814814814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027247956403269,0.0054553382208296,0.0080384873028439,0.0107096407088278,0.0135306984078539,0.0158882121687409,0.0183432918000693,0.0210398440131894,0.023410106214412,0.0258255368804634,0.0282764489373263,0.0306807680460006,0.0330576812309717,0.0354898526836303,0.0379570480603515,0.0403974605537977,0.0428053454884491,0.0450704810147605,0.0474209217903244,0.0497795106491665,0.0670916501201797,0.0833525357689004,0.0987955096768773,0.1133903373910113,0.1279622354581168,0.1456607850198055,0.1623878060438685,0.1783358728196822,0.1932479253999486,0.2064881233623985,0.2236856298405712,0.2399003034243606,0.2548803869449649,0.2681349989042296,0.2811524503910257,0.2938216475606505,0.306458473248265,0.3185777797838008,0.3303286897933169,0.3408615257238794,0.3506004785244721,0.3593564676178732,0.3687293552909864,0.3776099992775088,0.3855614450768216,0.3934481050284865,0.4017914428411478,0.4085166240409207,0.4150081353726,0.4208926699138652,0.4225922714216031,0.4240945820454892,0.4257117690515429,0.4269572706967781,0.4291374032054745,0.4303738751275628,0.4318959179106863,0.4328511711233495,0.4343242309021776,0.4357302802658191,0.4373780430046414,0.4396794628404708,0.4399932135813204,0.442306823826943,0.4427313846602791,0.4434101576921048,0.4431782118230865,0.4457596834918001,0.448917733480726,0.4518982229402262,0.4540686069721023,0.4555693940542589,0.4544812532100667,0.4533839244231067,0.4545974273463554,0.4576661814653081,0.4626585251291686,0.459094684385382,0.4594439667526512,0.4643863179074446,0.0,1.8201276290519024,76.70619558388607,277.6058964614959,420.314412442945,OR_public_implementation,28 +100000,95617,45140,420.4377882594099,9138,94.1673551774266,7078,73.42836524885742,2905,29.99466622044197,77.28554750318864,79.71606937260489,63.27381344368565,65.07131975459346,76.9375085348511,79.36375721408493,63.14799270469095,64.94653959417117,0.3480389683375335,352.31215851996467,0.1258207389946974,124.78016042229,54.29468,37.75307199770161,56783.040672683725,39483.22625184164,159.14733,84.83951270233187,165808.70556491002,88098.06130335317,242.64801,113.03674330240857,249591.90311346308,115110.38852541755,5161.86765,2301.103982732809,5356724.986142632,2365257.6116066333,1755.01452,761.6317026696536,1822407.1765481036,783730.5747919346,2872.34198,1174.6313136750844,2968163.799324388,1199527.1674149043,0.43378,100000,0,246794,2581.0473033038056,0,0.0,0,0.0,12462,129.69451039041175,0,0.0,23052,236.9557714632335,2273307,0,81697,0,0,7483,0,0,28,0.2928349561270485,0,0.0,0,0.0,0,0.0,0.09138,0.2106597814560376,0.3179032611074633,0.02905,0.3204809286898839,0.6795190713101161,25.795771684224768,4.6232131217500525,0.333144956202317,0.1911556936987849,0.2415936705283978,0.2341056795705001,11.143016898484657,5.585268067170607,30.79054252578945,15602.248137836124,79.89436554192741,15.650989494223513,26.74281056215497,18.537652524922294,18.962912960626632,0.5394179146651596,0.7427937915742794,0.7052586938083121,0.5793602896801449,0.1111111111111111,0.7,0.9073170731707316,0.864957264957265,0.7541436464088398,0.1460055096418732,0.4878686076894363,0.6712619300106044,0.652566271855612,0.5305019305019305,0.1017074981440237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030806647750304,0.005700433111199,0.008234171303253,0.0108756416120343,0.0133174622553208,0.0159622691481017,0.0186675643418918,0.0214326577312847,0.0239539331703674,0.0265149575494403,0.0289386758581071,0.0315553683172182,0.0340188570487483,0.0366346431369315,0.0388439736084007,0.0413843750969703,0.0438346511362812,0.046256581748694,0.0484106001623748,0.0506837455277514,0.0677601112261005,0.0839306673373574,0.099002721760422,0.1137872179025222,0.1281875224473412,0.1465367506884134,0.1640384247550634,0.1796870002771796,0.1945276719599366,0.2081829121540312,0.2245805233342325,0.2407329105003523,0.2554761230138837,0.2696661224400346,0.2821338390799528,0.2955274580109455,0.3083218730084191,0.3202250357960247,0.3316923426752317,0.3422646357129749,0.3526869510810372,0.3626860424235322,0.3718686587001151,0.3807892490954768,0.387968751904257,0.3952033625911732,0.4031322942549507,0.4102312042793856,0.4163741321475934,0.4220014570501357,0.4243308607947252,0.4261677340989399,0.4274735694977143,0.4295316628437037,0.4316000059718428,0.432539070928763,0.4334226133537402,0.4345250897539831,0.4360598186167375,0.4371823064998738,0.4388302899701334,0.4391813797776095,0.4392931304826885,0.4399330831487091,0.4417332976887744,0.4427733810112271,0.4436506570264532,0.4462241111357797,0.4481187069422364,0.4474549098196392,0.4484873639549898,0.4504170029593758,0.4496772956738449,0.4506955177743431,0.4502392344497608,0.4512239237911492,0.4490784129959387,0.4497200912295251,0.4518746502518186,0.4556029468786351,0.0,2.2347765341869006,76.89036411479105,263.4865769448115,417.1700586136071,OR_public_implementation,29 +100000,95795,45356,421.6712772065348,9327,95.92358682603476,7187,74.29406545226786,2913,29.8867373036171,77.35864855579545,79.66279980134517,63.35358995694328,65.05386623424899,76.99323530833689,79.29779519949294,63.22020336699672,64.92422173685658,0.3654132474585623,365.0046018522346,0.1333865899465536,129.64449739240536,54.55472,38.0025839940766,56949.21446839606,39670.528948292274,163.73205,87.20628005023774,170177.70238530196,90293.60245574168,250.71405,117.12386586503112,257030.08507750928,118671.5136104746,5197.68098,2319.1881143515416,5377559.559475964,2372961.674441263,1775.36457,764.216041859244,1837633.71783496,782099.9967213785,2878.64664,1193.5722693790478,2957222.9865859384,1205130.9583350809,0.43472,100000,0,247976,2588.600657654366,0,0.0,0,0.0,12729,132.10501591941124,0,0.0,23717,242.9563129599666,2273106,0,81762,0,0,7547,0,0,50,0.5115089514066496,0,0.0,0,0.0,0,0.0,0.09327,0.2145518954729481,0.3123190736571244,0.02913,0.3076144187930336,0.6923855812069664,25.89502352209489,4.595418734728346,0.3310143314317518,0.1977181021288437,0.2390427160150271,0.2322248504243773,11.36168589473478,5.692801930083035,31.252914066471817,15619.061566194678,81.20084904029932,16.65127939322568,26.94296165039891,18.661729476093264,18.944878520581465,0.5518296925003479,0.7712878254750176,0.6960907944514502,0.5991611743559018,0.1245634458672875,0.7183418512208972,0.9325581395348838,0.896797153024911,0.77,0.1409214092140921,0.497788426096572,0.7013118062563067,0.6340121078701155,0.545311268715524,0.1200889547813194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023277938586725,0.005033981910077,0.0078976448999868,0.0106345195693425,0.0131062930526486,0.015991048268145,0.0185388909261296,0.0210133322452643,0.0236499601577345,0.026115509728104,0.0287815470337594,0.0317250292325681,0.0344175724823802,0.0365522351197826,0.0389738936775683,0.0414269631588188,0.043892596616483,0.0461948352183784,0.0483303038171903,0.0507297674321763,0.0679992488576376,0.0840076950421345,0.0994423596989581,0.1142046350307425,0.1287837268128162,0.1467554428239273,0.1644330880637842,0.1803055449168049,0.1954941006886978,0.2094467081278147,0.2255316857804339,0.2423960441034852,0.2573122314678849,0.2705370038076065,0.2833324156158802,0.296693793378717,0.3088905265978829,0.321305165059034,0.3325498745330472,0.3424748627050825,0.3522332391233841,0.3615423369380558,0.37079930299546,0.3792441050761178,0.3878659457353012,0.3949436536180308,0.4024257171167329,0.4095193153847135,0.4157347153489459,0.4231181727904667,0.4243390820132994,0.4259880917844364,0.4275088731458307,0.4291499150931073,0.4304810837453138,0.4320088674045907,0.4323613766730401,0.4336532097948378,0.4341570168183071,0.4363239459488715,0.4374159834901641,0.4396291634198485,0.4414936526132552,0.4428106053750791,0.4447042775017051,0.4468242831802176,0.4478005270626393,0.4482692369272151,0.4490672777399835,0.4517908570964994,0.4548069784706756,0.4563729218733022,0.4572332321993415,0.4593725490196078,0.4607909169633407,0.4650320086967025,0.4656067999370376,0.4618448637316562,0.4517341040462427,0.4475724194206446,0.0,2.8230194438873064,78.07966438599479,268.8870470874043,420.1154993713162,OR_public_implementation,30 +100000,95857,45341,421.7845332109288,9322,95.87197596419666,7230,74.79891922342657,3026,31.1192714147115,77.41454581429173,79.7044705874628,63.37712166936033,65.06863210596202,77.05340326791577,79.341233673979,63.24535927324567,64.93932351744769,0.3611425463759588,363.2369134837887,0.1317623961146594,129.30858851433413,54.659,38.0579473372137,57021.396455136295,39702.83582546262,164.73865,88.04384255983204,171237.77084615626,91228.1654546168,250.77079,116.65962830468014,258043.09544425557,118906.32368791325,5304.69599,2366.5742650346438,5491926.588564215,2426817.389480834,1786.35415,770.6699834655649,1848638.6179413083,789055.9411055681,2996.6186,1234.6638106369594,3084762.3856369383,1251961.5363120544,0.43364,100000,0,248450,2591.8816570516497,0,0.0,0,0.0,12827,133.16711351283683,0,0.0,23692,243.68590713249947,2273959,0,81811,0,0,7504,0,0,45,0.459017077521725,0,0.0,0,0.0,0,0.0,0.09322,0.2149709436398856,0.3246084531216477,0.03026,0.3090890647190099,0.69091093528099,25.780994993927692,4.690441865793707,0.3215767634854772,0.1923928077455048,0.248686030428769,0.2373443983402489,11.10330311829994,5.463206075061545,32.07464964740996,15574.80928706314,81.37195399214218,16.060055869248618,26.346025438224014,19.15721901100584,19.80865367366372,0.5392807745504841,0.7548526240115025,0.7070967741935484,0.587995337995338,0.1090100111234705,0.6935769004124926,0.91005291005291,0.8610634648370498,0.7142857142857143,0.1482558139534883,0.4919573468281222,0.6969397828232972,0.6555683122847302,0.5506042296072508,0.0997248968363136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026623475223971,0.0055113722709082,0.0082135940050904,0.0108724341664467,0.0135684520784632,0.0162191312487917,0.0188162184189079,0.0214717042719001,0.0238623014454262,0.0263381304530158,0.0287013705365373,0.0312653865091088,0.0335998027167546,0.0358304512516469,0.0384567799406136,0.0409935963643875,0.0430396772024209,0.0451949882374887,0.0476195419720532,0.0501914034868722,0.0683301703822652,0.0852920581503506,0.1006076479832372,0.1153042473880401,0.1297507345275329,0.1473402906878485,0.1649221315817353,0.1807058573402785,0.1949038605177233,0.2088604205272121,0.2256436740798123,0.2408244479529381,0.2549586462488181,0.2688469400024047,0.2824191650999923,0.2958510449876018,0.3084791896745981,0.3210606810309928,0.331351007808244,0.3426489292220961,0.3524120445941722,0.3614645394636733,0.3696936685178387,0.377705783537317,0.3856730874533043,0.3930396780326411,0.4001680166512024,0.4073568961341881,0.414184047167606,0.4200090011383792,0.4221811160768535,0.4245686680469289,0.4260151799974558,0.4280595889119366,0.4295987944436984,0.4296353285120788,0.4303974562798092,0.4319276710882334,0.4338821669187405,0.4350925709770682,0.4369201176736818,0.4388777156056472,0.4410473899649744,0.4415177666118384,0.442133618074599,0.4426229508196721,0.443468494413086,0.4456256148256275,0.4489382136378188,0.4502379224130978,0.4525247867189301,0.453257942918686,0.4571555895085307,0.4582309582309582,0.455401293267402,0.4539109506618531,0.4549269505750699,0.4668325041459369,0.4671328671328671,0.4777562862669245,0.0,2.469443012613624,75.25676017887217,276.7801446903148,425.72761195779657,OR_public_implementation,31 +100000,95695,44961,417.71252416531695,9180,94.40409634777156,7143,73.89100788964942,2939,30.241914415591204,77.36002699221102,79.73164958937664,63.33690834044432,65.0882896215669,77.00157510060913,79.37227582228033,63.206337084598125,64.96099597923279,0.3584518916018879,359.3737670963151,0.1305712558461991,127.29364233410934,54.88978,38.15351132110593,57359.08877161816,39869.91098919058,162.1173,86.78960439424371,168663.62923872718,89947.19096529987,245.46392,115.36167726399832,251668.5302262396,116854.81289650573,5162.37695,2302.336858383815,5343640.493233711,2354936.703468117,1708.66719,741.5836106708723,1767191.9013532577,756602.4459698758,2896.64044,1191.7141214300598,2983410.6902137,1207749.374765189,0.43134,100000,0,249499,2607.2313078008256,0,0.0,0,0.0,12672,131.64742149537594,0,0.0,23320,238.852604629291,2272822,0,81668,0,0,7445,0,0,39,0.4075448038037515,0,0.0,0,0.0,0,0.0,0.0918,0.2128251495340103,0.3201525054466231,0.02939,0.3164739884393063,0.6835260115606936,25.695501356942646,4.646047308857459,0.3379532409351813,0.1905361892762144,0.2358952820943581,0.2356152876942461,11.188741594085162,5.59493543021363,31.22726717535901,15541.557717852673,80.49832875446775,15.692903193074184,27.54185479326091,18.81086385274897,18.45270691538369,0.5392692146157076,0.7567964731814842,0.6922120961060481,0.5787284610814023,0.1050445103857566,0.7082611207394569,0.9028132992327366,0.8534201954397395,0.7038834951456311,0.1878980891719745,0.4852180339985218,0.6979381443298969,0.6372222222222222,0.5381589299763966,0.0860685630926331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002815731634441,0.0052610771523279,0.0080168048466151,0.0104532802373067,0.0130599292078603,0.0158242026801352,0.0185321100917431,0.0210455408356978,0.0238285083415112,0.0265364415369022,0.0292299332560976,0.0317957352442943,0.0345426873161802,0.0370496261046906,0.0394968994727556,0.0418419991522006,0.0439665174871539,0.0461164796612104,0.0486571945663705,0.0510800587702022,0.0679052960282399,0.0850420238431668,0.1002035335095891,0.1154926318225326,0.1298594489724908,0.1487445155151451,0.1649923089163528,0.1816285480146018,0.1957167271950438,0.2098267446226465,0.2253851955608231,0.2400294381852224,0.2550469088023308,0.2693666014279622,0.2819271807281927,0.2949048890464531,0.3072407481808847,0.3186972662841714,0.3303456961005661,0.3410442374454336,0.3507661327654847,0.3603514025688417,0.3690154851541412,0.3772806828262485,0.3850437743190661,0.3923452648197942,0.399400904909321,0.4061011336135524,0.4127710905883573,0.4191773574923952,0.4205912940127767,0.4231752303845038,0.4248831610253505,0.4268230642887251,0.4283493287888301,0.4289610749838197,0.4296836440637488,0.4311903897561137,0.4317224543125827,0.4331368178876986,0.4343624971691703,0.4355899111447583,0.4364783058069143,0.4383364123822827,0.4399922429883887,0.4412182794566705,0.4432224916291421,0.4455094411962043,0.4450559268127077,0.4473032750294225,0.4501257334450964,0.4485905165390256,0.4471335944020029,0.4470067551828558,0.4462699398223326,0.4418408020292306,0.4460386774797255,0.4437525944375259,0.448619413606604,0.4493444576877234,0.0,2.939209065108966,76.37781847524072,266.3728748256276,420.6533252243487,OR_public_implementation,32 +100000,95747,45084,419.49095010809737,9270,95.48079835399544,7247,75.05195985252801,2922,30.12104817905522,77.33346816806463,79.69434167550878,63.32120940122799,65.06954972555792,76.98469676891469,79.34259568291752,63.19513365302786,64.94510129653622,0.348771399149939,351.7459925912618,0.1260757482001295,124.4484290216974,54.4049,37.850388650143806,56821.51921209019,39531.67060079565,162.27308,86.07716237177618,168859.41073871765,89278.93549852859,248.23464,115.72813817325614,254663.07038340627,117461.86146008292,5236.69578,2318.924737775422,5427129.403532226,2379833.063872822,1738.46304,750.0766633796175,1796714.8735730622,764425.2178967661,2871.84214,1178.29045278874,2962542.1788672227,1199963.7873625057,0.43208,100000,0,247295,2582.796327822281,0,0.0,0,0.0,12633,131.2939308803409,0,0.0,23484,240.68639226294297,2276505,0,81804,0,0,7490,0,0,42,0.4386560414425517,0,0.0,0,0.0,0,0.0,0.0927,0.2145436030364747,0.315210355987055,0.02922,0.3114469519044215,0.6885530480955785,25.966817829381487,4.655394863295338,0.3353111632399613,0.1981509590175245,0.2285083482820477,0.2380295294604664,11.21677474923718,5.586838743425463,31.0752752610905,15559.997006351625,81.55943913950294,16.652883458917103,27.47679646438183,19.275923635449985,18.153835580754023,0.5449151372981924,0.7506963788300836,0.697119341563786,0.5797101449275363,0.1068840579710145,0.7059869590989923,0.9081632653061223,0.8849407783417935,0.7157894736842105,0.1234567901234567,0.4960431654676259,0.6915708812260536,0.6367591082109842,0.5412639405204461,0.1028528528528528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024317341304017,0.0050602360767452,0.0075208574386456,0.0101404214676177,0.0124794044059315,0.0150393548452789,0.0178302002202014,0.0204935600416403,0.0231082130738726,0.0259895796014044,0.0285412587269204,0.031055900621118,0.0330412784599247,0.0355715756951596,0.0379984524116585,0.0405899863563071,0.0429506295559973,0.0454083220919373,0.0478245048604252,0.0503900594723521,0.0682902387339895,0.0851718507975049,0.1005833962897674,0.1157713179925118,0.1299987344975955,0.1482076768531246,0.1645711981835736,0.1800649246979937,0.1944290169607382,0.2085536263901251,0.2256358328575583,0.2414875085206063,0.2561400073962888,0.2697646942994979,0.2823695097262565,0.295020048293126,0.3074225860124398,0.3192385198194242,0.3308431163287086,0.3415897165639392,0.3509622617490828,0.3605369724491468,0.3694200393113411,0.378283082679715,0.3863782732851327,0.3937317442906617,0.4009341230387799,0.4076790830945558,0.4138109870732687,0.4206885605830148,0.4229574611748818,0.4249344917942352,0.4264061926151933,0.4281569173630455,0.4299578941081614,0.4306546839111467,0.4314128615825962,0.4327563689265817,0.4345730857270709,0.4371737173717371,0.4390828910838731,0.4399114673685469,0.4411845468179033,0.4417328878454036,0.4425950260378644,0.4430014811680067,0.4440537268691993,0.4462941701747672,0.4477894436111706,0.4500725923536054,0.4517921644901361,0.4514644577987114,0.4496881630553591,0.4517262927667552,0.4465183752417795,0.4454411403293192,0.4455133259738211,0.4432534678436318,0.4486735870818916,0.4339321357285429,0.0,2.490429259993936,74.91260566398427,281.26701397091574,423.5191394113989,OR_public_implementation,33 +100000,95789,45427,421.91692156719455,9236,95.04222823079894,7236,74.8728977231206,2931,30.16003925294136,77.34149214859087,79.67958194727433,63.33904717832892,65.07200576955269,76.98564704169654,79.32233671365326,63.20966407165279,64.9450303695145,0.3558451068943355,357.24523362107163,0.1293831066761299,126.97540003819086,55.0451,38.30015847203109,57464.949002495065,39983.87964383289,164.7877,88.39400028604027,171361.3984904321,91609.3395755674,254.1598,119.35075354340204,260746.087755379,121086.26731972408,5220.36702,2340.0481509793885,5406073.734980009,2399243.137372183,1762.61162,768.1585932064015,1821896.439048325,783779.7485215219,2893.0208,1196.7657394821304,2979717.190909186,1215476.6734205536,0.4343,100000,0,250205,2612.0431364770484,0,0.0,0,0.0,12826,133.20944993684034,0,0.0,24029,246.33308626251448,2272050,0,81675,0,0,7357,0,0,40,0.4071448704966123,0,0.0,0,0.0,0,0.0,0.09236,0.2126640571033847,0.3173451710697271,0.02931,0.3032509486206542,0.6967490513793457,25.87082770850538,4.596035725080816,0.3365118850193477,0.1948590381426202,0.236318407960199,0.232310668877833,11.036616762487268,5.524707022892833,31.278515228142048,15657.820883242848,81.8029646657663,16.24345327569238,27.70723866269802,18.877032894917598,18.975239832458293,0.5514096185737977,0.7673758865248227,0.7030800821355236,0.5895300416418798,0.1198830409356725,0.7188755020080321,0.9201030927835052,0.8946515397082658,0.7430025445292621,0.1507246376811594,0.498270526124158,0.7093933463796478,0.6380638063806381,0.5427018633540373,0.112087912087912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026540514804947,0.0053830479608284,0.007732507991273,0.0107202373694264,0.0134506791473775,0.0161962290289393,0.0187561194516971,0.0212807237896843,0.0239689957358911,0.0267461268290684,0.0291195439305232,0.0317512476638393,0.034292649811771,0.0367871270809296,0.0392608031697552,0.0419552229549542,0.0443903701786176,0.0465046317907862,0.0489219099080376,0.0512919277936246,0.0690705730144818,0.0854489941026391,0.1018423424367546,0.1174294572014082,0.1314791003562319,0.149742060975094,0.1661577608142493,0.1817340622407521,0.1970795128251657,0.2111463670861651,0.2271851349460108,0.2418849073333189,0.2561723028775102,0.2702280229990599,0.2834817991861871,0.2961240310077519,0.3085929659448248,0.3207337347232207,0.3314070750334262,0.3420576997872291,0.3523247215418034,0.3622470439781278,0.3709372190944788,0.3798770918935755,0.388326167747577,0.3960299662386949,0.403061479923901,0.4097513805125073,0.4167022833534082,0.4228043549983504,0.4246155921230105,0.4267670499986211,0.4289065370375604,0.4301320179892645,0.4316753027610614,0.4320193328920836,0.4341570670618039,0.4349214226633581,0.4360719578178309,0.4374684548273127,0.4386918400969568,0.4397855485316476,0.4408319185059423,0.4427062077721851,0.4442761518542043,0.4451450523248112,0.4457989060863493,0.4470323307061283,0.4497018035496156,0.4505324770343874,0.4526256511333239,0.453077975376197,0.452808112324493,0.4536123174101855,0.4574209245742092,0.4645224650135036,0.4615754082612872,0.4624867162592986,0.4685153090699018,0.4632411067193676,0.0,2.6447310586975754,77.15616412085535,279.1768636554545,419.19563684670425,OR_public_implementation,34 +100000,95703,44853,417.3118919992058,9154,94.3544089526974,7047,73.0698097238331,2860,29.50795690835188,77.3419109081298,79.71059467009493,63.33255108723839,65.08086591499317,77.00045604824821,79.36626833566353,63.20810955161443,64.95815193611419,0.3414548598815941,344.3263344314005,0.1244415356239585,122.71397887897706,54.4753,37.88482198221419,56921.204141980925,39585.82487718691,161.11815,85.89511399430371,167793.4860976145,89193.08414767985,244.00887,114.30096234006136,251299.49949322385,116593.02715342944,5101.39056,2269.221123254077,5292242.625623021,2333135.5074410206,1733.44365,745.4479543799046,1800160.3084542805,767872.9328059198,2824.5971,1164.7035611180172,2916802.7752526044,1186610.6833006097,0.42982,100000,0,247615,2587.3274609991327,0,0.0,0,0.0,12528,130.30939468982163,0,0.0,23135,238.2056988809128,2275856,0,81806,0,0,7437,0,0,36,0.3552657701430467,0,0.0,0,0.0,0,0.0,0.09154,0.2129728723651761,0.3124317238365742,0.0286,0.3153087701089777,0.6846912298910223,25.85388674961552,4.5884854029193045,0.3385837945224918,0.1958280119199659,0.2386831275720164,0.2269050659855257,11.079327363465872,5.533076018043256,30.48643517778602,15454.845860027594,79.52263536530104,16.038791026925445,26.8757205714934,17.995873089496488,18.612250677385717,0.5440613026819924,0.7485507246376811,0.6990779547359598,0.5866166353971232,0.1159334126040428,0.7089688834655278,0.9181141439205956,0.8736263736263736,0.7542372881355932,0.1428571428571428,0.4940828402366864,0.6786079836233367,0.6472826086956521,0.5389558232931727,0.1092124814264487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026936163318211,0.0057160231073274,0.0079224994927977,0.0107763874217924,0.0135234066783259,0.0159648122505498,0.0182880210403987,0.0210663836041479,0.0236201962387571,0.0260984371641745,0.0284982060481804,0.03089671318116,0.0332051334786722,0.0358320283524272,0.0381805423700829,0.0406045194235977,0.0429370339685169,0.0455267172403773,0.0480790226150247,0.0503131545764336,0.0675732130175042,0.0844961321455862,0.0999496369664666,0.1144828601781826,0.1284639809276664,0.1467389004105472,0.1629762447879643,0.1786645939586239,0.1936745378779784,0.2069032112700235,0.2232264041191804,0.2388873856810433,0.2534730154585903,0.2668343632088368,0.2796013552162626,0.2924855235332543,0.3048196937079629,0.3168660878952813,0.3278526688453159,0.3381766968947513,0.3471960182880954,0.3567940987061647,0.3654800687081679,0.3740043186180422,0.381911075968615,0.3900908911282355,0.3975554356419491,0.4051191189404851,0.4119265459736552,0.4176181414525848,0.4192747009424027,0.4214700486889836,0.4234709717479044,0.4248971789376122,0.4268663388466696,0.4280140700121346,0.4292524032732184,0.4305085864168,0.4319791022203891,0.4333435268298825,0.4347185493010956,0.4368469330780888,0.4378680676185231,0.4400280517600217,0.4418457494706612,0.443699519611466,0.4449485608600161,0.4450216726160122,0.4457616225094623,0.4490736995388723,0.4520255863539446,0.4535217367765686,0.4579637485537987,0.4563114370416601,0.4560827133056334,0.4590903548347762,0.455817610062893,0.4552931252636019,0.4603860558916738,0.4607454401268834,0.0,2.1515453324707967,73.13836651376491,277.416546075852,409.3621116247103,OR_public_implementation,35 +100000,95699,45235,420.5791074096908,9085,93.66869037294016,7108,73.6162342344225,2930,30.188403222604208,77.33810060160408,79.72083694383787,63.31256206328344,65.07501083675098,76.98481209060515,79.36363462418193,63.184177022266674,64.94753950124193,0.3532885109989365,357.20231965594,0.128385041016763,127.47133550904266,55.32164,38.4923754313913,57807.960375761504,40222.338197255245,164.58852,88.12419160249298,171312.4797542294,91411.98149302756,249.65025,116.5637139753402,256119.94900678168,118201.04892279692,5150.50148,2288.7601982861133,5339081.4742055815,2348897.8049466205,1728.21881,744.0581755332116,1788822.934408928,760588.3949210502,2880.73684,1185.1775767300433,2971069.1020804816,1207510.8200592953,0.43235,100000,0,251462,2627.634562534614,0,0.0,0,0.0,12894,134.0139395395981,0,0.0,23646,242.31183188957044,2266302,0,81545,0,0,7531,0,0,27,0.2821346095570486,0,0.0,0,0.0,0,0.0,0.09085,0.2101306811610963,0.3225096312603192,0.0293,0.3137624280481423,0.6862375719518576,25.81928019324347,4.688833678782704,0.3303320202588632,0.1940067529544175,0.2343837929093978,0.2412774338773213,11.376510093167028,5.749578953943353,31.130630000338137,15573.184589403736,79.8879937031635,15.91931111984327,26.526080902601556,19.209478853890896,18.233122826827778,0.5453010692177828,0.7643219724437998,0.684412265758092,0.5895043731778425,0.1224489795918367,0.7124026363091671,0.937007874015748,0.8429602888086642,0.7673267326732673,0.1666666666666666,0.4940246368817797,0.6983967935871743,0.6354515050167224,0.5347063310450039,0.1115269461077844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028886501388579,0.0057212416311625,0.0083355331289215,0.0111084009187552,0.0138276981308696,0.016510659102252,0.0192052709952471,0.0220515387050976,0.0244209234545175,0.0269287871806686,0.0295121976230273,0.0320782034563134,0.0345061588763906,0.0366300743517393,0.0391289097961541,0.0416360949497245,0.0439734523353454,0.0464076360429527,0.048550754771905,0.0510229592899704,0.0689251848448139,0.0848319899508008,0.1011174649808509,0.1166899801222115,0.130937315447566,0.1486433596022637,0.1649741614405925,0.1801889103048761,0.1952270006839945,0.2092466819025547,0.2252656078270801,0.2410757787377789,0.2558405364802195,0.2693166396707963,0.2823234102518936,0.2955049452255289,0.3082363983775267,0.3200558577429417,0.331204690589278,0.3418027897586492,0.3511364558341157,0.3604664791373652,0.3688835653803278,0.3775657184011523,0.3861058371062753,0.3929856226279808,0.3994776428634212,0.4065781070379359,0.4131717077226899,0.419150738603272,0.4218522119591638,0.4237143014969894,0.4260083980150146,0.4273757198601621,0.4290342325664721,0.4299598010072851,0.4298858625575065,0.4305718390330091,0.4321125694528065,0.4340046754180903,0.4357380394528002,0.4368657162795334,0.4381113698920177,0.4390310165270545,0.4394278485939476,0.4398097040424749,0.4413735584251244,0.443088268014367,0.4457292849035187,0.4483573717948718,0.4488149268784669,0.450778866227718,0.4497941083306937,0.453467013623144,0.4551221359590987,0.4559846485967858,0.4545034642032332,0.4616014745033791,0.4685236768802228,0.4731098986749805,0.0,2.528460436568247,74.1279413808267,268.8948940096173,420.3785111906453,OR_public_implementation,36 +100000,95633,45113,419.36360879612687,9313,95.8978595254776,7246,75.0159463783422,2914,30.01056120795123,77.27782633283482,79.68863913862734,63.2892740309558,65.072059891135,76.92091392404849,79.32811436678946,63.15949218548423,64.94368404517017,0.3569124087863287,360.5247718378735,0.1297818454715624,128.37584596482543,54.32064,37.8300538077741,56801.146047912334,39557.53119506248,163.94972,87.10307897846096,170679.0333880564,90323.25554825318,247.81124,115.38895869831194,253606.8511915343,116499.20836770942,5240.7665,2333.05185632452,5430271.527610762,2390512.5337880505,1745.99831,753.8243926304286,1807143.716081269,769952.9307237065,2871.26828,1187.3225857564512,2960442.148630703,1207999.1852619634,0.43235,100000,0,246912,2581.8702749051063,0,0.0,0,0.0,12807,133.1235033931802,0,0.0,23553,240.80599792958495,2272977,0,81734,0,0,7467,0,0,36,0.3764390952913743,0,0.0,1,0.0104566415358715,0,0.0,0.09313,0.2154041864230368,0.3128959518952002,0.02914,0.3177332383762336,0.6822667616237664,25.845925413120263,4.581918961156758,0.3399116754071212,0.1970742478608887,0.2333701352470328,0.2296439414849572,11.119444044944364,5.583627707348496,31.11197716046687,15609.355430533884,81.8792042500618,16.503601492976788,27.91688812765993,18.842689759818043,18.61602486960704,0.5503726193762075,0.7549019607843137,0.7011774259033698,0.5955528846153846,0.1135422826729745,0.6913432835820895,0.9005102040816326,0.855379188712522,0.6938775510204082,0.1481481481481481,0.5079877939328666,0.6998069498069498,0.6550632911392406,0.565251572327044,0.1053401609363569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025636868451452,0.0054153821190978,0.0079893610541489,0.0103763326117666,0.0130932397375247,0.0157088864212874,0.0183681795002549,0.0208973822096479,0.0236594996010719,0.0262648405568474,0.0286977302331305,0.0314624976888468,0.0337915706289101,0.036268629027271,0.0386950237456122,0.0416606333905632,0.0443085850474068,0.0465698235849938,0.0489713518632215,0.0513732196108689,0.0688221033272028,0.0850395350054982,0.1006476126499637,0.115598724573016,0.1297750200498079,0.1487064402760723,0.1649090387740147,0.180448564274679,0.1953922176824181,0.2092423982133654,0.2255811697759384,0.2414181448032399,0.2562131916700232,0.269871500186073,0.2831707370785527,0.2959604469670095,0.3087027914614121,0.3203134676229831,0.3318644876264892,0.3416277151498488,0.3522882474131346,0.3610269251921974,0.370544067836756,0.3793637269137995,0.3872482813165419,0.3950839920948616,0.4020019819119178,0.4087668507441748,0.4153208517936258,0.4212462939432443,0.4230571559955638,0.4249373728426501,0.4264424372190633,0.4284176533907427,0.4305854885057471,0.4315414177895078,0.4321798312883436,0.4343456122601297,0.4352677029360967,0.4360104001155568,0.4373211544656901,0.43879450081047,0.4409998514651898,0.4414755100654423,0.4420526572403706,0.4424626767076232,0.4450589223151981,0.4468351183223241,0.4500233787720749,0.4545787694938719,0.4555436153810213,0.4555440752623851,0.4582661940058008,0.4586436691493532,0.4590623489608506,0.4594396182552306,0.4604658532720646,0.4636306135357368,0.4597701149425287,0.4560157790927022,0.0,2.888754944246616,73.92257373514592,283.64970952557513,427.2448688421482,OR_public_implementation,37 +100000,95817,45096,418.30781594080383,9231,94.99358151476252,7229,74.86145464792261,2960,30.55825166724068,77.39792083527668,79.70139892193862,63.37134666233783,65.07154822880875,77.03360710016621,79.33232744363791,63.239414400172784,64.9400741520097,0.3643137351104712,369.07147830071096,0.1319322621650442,131.47407679905143,55.17358,38.36235833449231,57582.24532181137,40037.11067398511,163.93802,88.07307767133292,170492.7100618888,91316.12305972318,255.72358,119.67342888684094,262806.9757976142,121811.882920395,5249.71637,2363.5724657988985,5441333.68817642,2429438.3914120235,1765.30233,767.7976493931061,1830168.6548316064,789206.7296432775,2920.16436,1210.3587602150253,3017105.3988331924,1237491.9230842383,0.4313,100000,0,250789,2617.3747873550624,0,0.0,0,0.0,12772,132.66956803072526,0,0.0,24215,248.67194756671572,2271152,0,81663,0,0,7404,0,0,38,0.396589331746976,0,0.0,0,0.0,0,0.0,0.09231,0.2140273591467656,0.3206586502004117,0.0296,0.3097708825644714,0.6902291174355286,25.68627535045484,4.569628712782572,0.3271545165306405,0.196154378198921,0.2384838843546825,0.238207220915756,11.06359570399444,5.57156351327978,31.76280367257028,15507.428852699168,82.33908696069366,16.565134138269148,27.17698742169552,19.417597132443063,19.17936826828593,0.5554018536450408,0.7693935119887165,0.7052854122621565,0.6091753774680604,0.1200696055684454,0.7116357504215851,0.9232558139534884,0.8797909407665505,0.7427884615384616,0.1532033426183844,0.5044036697247707,0.7024291497975709,0.649357900614182,0.5666156202143952,0.1113553113553113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002986555438568,0.0057149226357547,0.008316851767331,0.0107734329782805,0.0131140208197787,0.015906454173536,0.0185445578855128,0.020882427952053,0.0234996015284958,0.0262937120173518,0.0287379874188062,0.0311361887663503,0.0336980531155288,0.0365004064747831,0.0386815497356297,0.0411646275360074,0.0439258040822238,0.0465046380266362,0.0489496692730236,0.0513383565065356,0.0688550924187424,0.0848811914323962,0.1003554539639932,0.1150174523739434,0.129438922326106,0.1475659390031185,0.1639751025904758,0.1795327550423074,0.1944619526317476,0.2082618209903029,0.2238797931925894,0.239046712391008,0.2532944809289784,0.267433595415924,0.2803370292150651,0.2929319777615345,0.3055812760070951,0.3177993745922476,0.3290231840660587,0.3399768754364475,0.3497316429926433,0.3584482093374022,0.3681868216411992,0.3771611372704072,0.3853941586345869,0.3933244621867376,0.4003553375706921,0.4069002379831248,0.4132557144524109,0.4192679448581841,0.4209959188071602,0.422455473366668,0.4243262311274164,0.4261950951153835,0.4275069669016288,0.4276872513937308,0.4288075260615306,0.430416068866571,0.4311370041933045,0.4325885146804836,0.4344722080571137,0.4360032701242248,0.4362658991344098,0.4378142126002083,0.4395832316626811,0.4405533366836829,0.4421954406853492,0.4445407835581246,0.4458245337724165,0.4448536851904318,0.4450505898260829,0.4467783294233182,0.4490680818017085,0.4521609771374882,0.4581194925922339,0.4583384016542999,0.4564635490473941,0.4537902388369678,0.4638452914798206,0.4545808966861598,0.0,2.2245568094241426,79.41213825762853,290.40114259821667,402.981708098091,OR_public_implementation,38 +100000,95533,45147,419.71884061005096,9414,96.94032428584887,7324,75.8586038332304,2978,30.659562664210277,77.19945181010942,79.66833021804742,63.224607941291474,65.05287588854408,76.84014671237486,79.30925519335682,63.09395028390958,64.92571272612312,0.3593050977345626,359.07502469059693,0.1306576573818958,127.16316242095616,53.52952,37.28503484768274,56032.4913904096,39028.43504096253,165.43361,88.11565416820615,172379.34535710173,91446.10152324972,252.00928,118.48718895065504,258289.4811217066,119923.02787501042,5283.50612,2343.983497405158,5478605.843007128,2401634.9297155524,1834.61985,786.5926370096282,1902305.5593355172,805325.2845137923,2940.59244,1206.156521799547,3031061.329592916,1223171.7019823573,0.43247,100000,0,243316,2546.9314268368,0,0.0,0,0.0,12892,134.11072613651828,0,0.0,23855,244.20880742779983,2270241,0,81627,0,0,7253,0,0,38,0.3977683104267635,0,0.0,0,0.0,0,0.0,0.09414,0.2176798390639813,0.3163373698746548,0.02978,0.3163625365460228,0.6836374634539772,25.872462378462032,4.673141060988973,0.3347897323866739,0.1951119606772255,0.2366193336974331,0.2334789732386674,11.20769061438049,5.508755712280874,31.80465928122169,15678.7461972909,82.66383417352921,16.58475294187073,27.79743190712954,19.282744167483447,18.998905157045492,0.5420535226652102,0.741777466759972,0.6945350734094616,0.5730994152046783,0.1309867282169648,0.7048433048433048,0.9232673267326732,0.8705501618122977,0.6760204081632653,0.1788856304985337,0.4907523792422338,0.6702439024390244,0.6352235550708834,0.5424886191198786,0.1192528735632183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029700661929427,0.0056208274994419,0.0085506539930132,0.0112148202375142,0.0140591277436168,0.0165956492487104,0.0193396948512527,0.0220212548538728,0.0246213671715104,0.027106242121768,0.0297791966494554,0.0324723399004647,0.035170290116273,0.0379203631112028,0.0403658347543016,0.042772113244656,0.0451971541764327,0.0472780560809827,0.0495614674694277,0.0519804564341344,0.0690921263219557,0.0855791615108743,0.1015579009334791,0.1173284437700219,0.1312178931568822,0.1493956743002544,0.1661258577583914,0.1812205169800849,0.1959393582257459,0.2098645930801579,0.2259844900956948,0.2425377184413329,0.2576136177641988,0.2714904821986943,0.2843517138599106,0.2971186007489638,0.3097850425436632,0.3222241038667796,0.3330638825953799,0.3433624860653005,0.3529732678668849,0.3620088515314088,0.371475736918363,0.3793775254954781,0.38740288094454,0.3948404347503156,0.4021287838755945,0.4094954351328542,0.4159235585872918,0.4220145737380709,0.4240662438336857,0.4257741095662771,0.4278889093667153,0.4290184093720439,0.431165989840109,0.4318733101583623,0.4329691044442314,0.435021314004213,0.4362822219532857,0.438468352828449,0.4391902157398967,0.4401506500791313,0.4409810935104752,0.4432231104651162,0.4448493445509685,0.4461395595648713,0.4467510597526276,0.4482184588788936,0.4496199082042456,0.4506888610561189,0.4542344674556213,0.4552906914033006,0.4587602459016393,0.4600420200762586,0.4650872817955112,0.4659104768874253,0.4630179827990617,0.4633140972794723,0.4557746478873239,0.4582338902147971,0.0,3.151438509449374,77.4755243053591,275.20740121951246,433.2506913386617,OR_public_implementation,39 +100000,95668,45222,420.088221766944,9385,96.42722749508717,7306,75.6365764937074,3031,31.22256135802985,77.33990302576841,79.73199148875912,63.32261558699434,65.08951036116896,76.96847404953951,79.35762715524888,63.18726146840626,64.95630175392851,0.3714289762288985,374.36433351024334,0.1353541185880757,133.20860724044792,55.13134,38.36039761487716,57627.77522264498,40097.41775188899,166.19495,88.85143409724981,172987.5716017895,92144.47466660984,249.18907,116.2207721879357,255972.446377054,117960.87118857418,5340.0756,2388.497156761568,5533563.145461388,2448537.807217172,1796.78087,777.1850129468764,1859484.289417569,793862.3846375142,2991.75126,1243.0086405243349,3083964.251369319,1261940.8986495824,0.43383,100000,0,250597,2619.4443283020446,0,0.0,0,0.0,12941,134.50683614165655,0,0.0,23671,242.9548020236652,2269768,0,81676,0,0,7493,0,0,40,0.407659823556466,0,0.0,0,0.0,0,0.0,0.09385,0.2163289767881428,0.3229621736814065,0.03031,0.3108896940418679,0.689110305958132,25.595165068351573,4.667916197934499,0.338899534629072,0.1865589926088146,0.244045989597591,0.2304954831645223,11.113619783295787,5.5317223697665,32.60629651104375,15605.673098860523,82.75587497221301,15.848003140701842,28.125860074415407,19.07323184287325,19.708779914222493,0.5502326854640022,0.7505502567865003,0.7168820678513732,0.5985748218527316,0.1200224340998317,0.6963087248322147,0.922879177377892,0.8543689320388349,0.7170731707317073,0.1725067385444744,0.5028996013048206,0.6817248459958932,0.6711517761033369,0.5604395604395604,0.1062322946175637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027651169857186,0.0057675738685317,0.0085742407484449,0.0112135863161743,0.013798643523179,0.0162055416437631,0.0191217841562359,0.0218012574508042,0.0245236342819757,0.0271244037748981,0.0294943820224719,0.032058059681575,0.0344586465392248,0.0368440026780656,0.0393638212011435,0.0417816929805515,0.0441967199527573,0.0465657016514942,0.0490814139774878,0.0514766436978118,0.069072143409314,0.085346957577788,0.1012873375090491,0.1160672017841926,0.1299531586276744,0.1479005109867439,0.1653987756098078,0.1813595043961424,0.1960267022696929,0.2102339745651847,0.2266319156498045,0.2425360617242536,0.2566938553561718,0.2700761054979661,0.2826855123674912,0.2961391458483354,0.3081765217973615,0.3207906081514582,0.332258833410894,0.3428070456915619,0.3523331056756225,0.3619448832718975,0.3706871024672202,0.378887649478848,0.3871752161173052,0.3940295192022904,0.4012536826929104,0.407825787614907,0.4144228396264401,0.420865119728756,0.4229203575727249,0.425125780947642,0.427201654250347,0.4289226025105819,0.4301633361254038,0.430994638565354,0.4303125896185833,0.4312645731011559,0.4321000395617249,0.4330401309517385,0.434664298267163,0.4360330512533929,0.4369591435160696,0.4386096014492753,0.4408665105386417,0.4432338084785656,0.4426528485409912,0.4435414200236777,0.4444802175001788,0.444789607455521,0.4451397580308719,0.44535356272013,0.4446798946895267,0.4478656403079076,0.4486321025444806,0.4499031945788964,0.4523584905660377,0.4508076358296622,0.4466130884041331,0.4489065606361829,0.0,2.813096484166612,79.33724022421676,280.34890399036027,420.6292047484095,OR_public_implementation,40 +100000,95786,45355,420.9487816591151,9350,96.2249180464786,7278,75.41811955818179,2965,30.53682166496148,77.331780499572,79.67275891298837,63.32970022966426,65.06283861701469,76.96526058170885,79.30242007318854,63.1956408429125,64.93014972376744,0.3665199178631582,370.3388397998282,0.1340593867517583,132.68889324724853,53.95016,37.52094149193923,56323.63810995344,39171.63415524109,164.22894,87.52739876811413,170879.6692627315,90803.72786014044,249.89501,116.56509818954144,257291.3578184703,118975.69289260187,5248.7817,2341.798997046365,5441554.60088113,2406682.3826512904,1798.68143,777.27691375943,1863213.0687156788,796872.9811866353,2928.56752,1215.0928124695135,3019092.122022008,1236413.1754506822,0.43488,100000,0,245228,2560.165368634247,0,0.0,0,0.0,12849,133.53726014240075,0,0.0,23699,243.8665358194308,2275654,0,81925,0,0,7412,0,0,33,0.34451798801495,0,0.0,0,0.0,0,0.0,0.0935,0.2150018395879323,0.3171122994652406,0.02965,0.3072478459199189,0.6927521540800811,25.91973155483613,4.559308246549279,0.3367683429513602,0.1953833470733718,0.2389392690299532,0.2289090409453146,10.94242975365884,5.490500836540795,31.654628392852715,15681.710472679477,82.4026338640294,16.697676656191035,27.82918594242028,18.77722799755865,19.098543267859448,0.5526243473481726,0.7721518987341772,0.6927784577723378,0.6002400960384153,0.1299597469810235,0.7095100864553314,0.8833333333333333,0.8752107925801011,0.7439353099730458,0.1851851851851851,0.5035179505682843,0.7255489021956087,0.6345532831001076,0.5590733590733591,0.1159942363112391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029880982527222,0.0056161550626495,0.008239723177773,0.0108496891381202,0.01348588863463,0.0159268424322039,0.0186068799575865,0.0215198660623136,0.0242174561959477,0.0267492450222654,0.0294624185016607,0.0318705464402324,0.0343228486524837,0.0370419967243173,0.0395285472484828,0.0420659781451271,0.0444833407558543,0.0469349652525671,0.0491130348031217,0.0515431713107584,0.0693653079539999,0.0860242047677325,0.10104303160543,0.116430582993569,0.1310102106405622,0.1490108217788299,0.1658964194102308,0.1809171345924791,0.1964138961524094,0.2105460546054605,0.2272012747905855,0.2430242245231371,0.2574893941042097,0.2717217688116753,0.2837153488781733,0.297542646227513,0.3100418643594753,0.3222887498311799,0.3334241196563737,0.3436876962210968,0.3539405161439648,0.3632767700409596,0.372162456755604,0.3804225183051254,0.387340139448291,0.3957473621784576,0.4027284478971875,0.4098597307033905,0.415751082448088,0.4218420808543905,0.4243587317890639,0.4267493063512002,0.4287188768080082,0.4302708983949451,0.4321989567920609,0.4332978575725325,0.4345341654562576,0.4367580097690206,0.4383540372670807,0.4397463382996739,0.4405877785983449,0.4409261626977785,0.4415374814185602,0.4424620267513036,0.4426409836466303,0.4441764939711143,0.4460187760778859,0.4477864791433594,0.4477175463623395,0.4489515019026799,0.4508124214348898,0.4536099313949689,0.4575545171339564,0.4578115216030056,0.4608846822484064,0.461482292807594,0.4674790314923247,0.473245887986675,0.4777397260273973,0.4762869882448318,0.0,2.181738792740895,77.45227051728979,281.9314333701328,424.7826368210977,OR_public_implementation,41 +100000,95684,45179,421.1466911918398,9044,93.16082103590988,7043,72.99025960453159,2958,30.506667781447263,77.34192318165195,79.71750110214859,63.32298576779221,65.0749603554362,76.98277621737121,79.35535300202942,63.1925831828597,64.94645304702836,0.3591469642807396,362.1481001191711,0.1304025849325043,128.50730840784763,55.8778,38.83149082523309,58398.26930312278,40583.055500640745,162.68445,87.61091589270994,169409.3683374441,90949.86755953456,244.75012,114.40795334220692,252171.90961916308,116689.6762285548,5125.54861,2293.165870726608,5314336.639354542,2354239.2265783777,1720.00301,745.8563418186674,1782793.1629112496,764853.1263061608,2927.91196,1210.956710752148,3021439.6555327955,1231877.8841187716,0.43281,100000,0,253990,2654.466786505581,0,0.0,0,0.0,12753,132.64495631453534,0,0.0,23146,238.2948037289411,2264546,0,81440,0,0,7718,0,0,36,0.3657873834705907,0,0.0,0,0.0,0,0.0,0.09044,0.2089600517548115,0.3270676691729323,0.02958,0.3125328290786847,0.6874671709213153,25.633722286621303,4.6386113748916005,0.3250035496237399,0.1932415163992616,0.2459179326991339,0.2358370012778645,11.054684038231793,5.344860541291086,31.51861591968724,15565.922426480733,79.54398661009182,15.625156564337354,26.03413799447202,18.862213187794943,19.022478863487507,0.5308817265369871,0.7391623806024982,0.6845784185233726,0.588801926550271,0.1085450346420323,0.7009832272990167,0.923512747875354,0.8587848932676518,0.75,0.1452991452991453,0.4755363191569439,0.6746031746031746,0.6214285714285714,0.5349397590361445,0.0992034757422157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026224395775745,0.0052097586685721,0.0078517301196019,0.0104515814492047,0.0130373323299401,0.015668587485492,0.0182492914381257,0.0209020452758518,0.0231604564603869,0.025526032867455,0.0280019276317813,0.0303341479944959,0.032830724291856,0.0355266140499103,0.0381308256861793,0.0406498180013236,0.0429562875492024,0.0452653539956198,0.047794347039371,0.0500270923641213,0.0669988405252107,0.0837172774869109,0.0999128819287731,0.1151494743931055,0.1287960324997362,0.1469209359423449,0.1630549037512077,0.1787426234048446,0.1940370307021295,0.207561347388308,0.2246304143887685,0.2404922063713861,0.2554954327210966,0.2697418832235042,0.2821515084783087,0.2965996497683594,0.3087765541581969,0.320655479220633,0.3311161307165802,0.3412803025961373,0.3514486879588669,0.3604998418963074,0.3697988883753451,0.3784426249189617,0.386355615591496,0.3941766274819717,0.4022763493079346,0.4098691092797183,0.4161120066559201,0.42216068684085,0.4239479134236636,0.4254682892386925,0.4270365278033707,0.429380335675707,0.4308408287465879,0.4317461782166036,0.4324526381090238,0.4340249648673224,0.4347196857448054,0.4360708824323109,0.4375850597308332,0.4383931248126311,0.4396339913581293,0.4400217484878004,0.4414399065375067,0.4417598649504115,0.4426815900305775,0.4454678735339112,0.44768,0.4485604992953493,0.4482233502538071,0.4521176153223631,0.4555627009646302,0.4568539672738499,0.4550909610439089,0.4616027708109399,0.4606758832565284,0.4689655172413793,0.4685159500693481,0.465680697762609,0.0,2.359135419504166,77.04096619720536,263.88735003690323,410.3271487143534,OR_public_implementation,42 +100000,95733,44927,417.181118318657,9186,94.627766809773,7165,74.20638651248785,2909,30.041887332476783,77.32392886815877,79.68741442122051,63.31606620966248,65.06468035105222,76.96861368416457,79.32677104648263,63.1867885943222,64.9360890720692,0.3553151839942075,360.6433747378759,0.1292776153402783,128.59127898302347,54.68496,38.0340763891735,57122.37159600138,39729.32676211285,162.82566,87.0000889528203,169432.0558219214,90227.3864945425,247.06592,115.05975003589576,253338.0443525221,116741.89947618736,5179.47423,2312.627536851653,5367395.704720421,2372841.954279174,1711.45286,743.8970689106318,1770775.605068263,760217.8604575368,2869.1792,1191.414989183742,2964419.855222337,1216243.3646980152,0.43125,100000,0,248568,2596.471436181881,0,0.0,0,0.0,12671,131.67873147190625,0,0.0,23458,240.31420722217,2272263,0,81807,0,0,7299,0,0,33,0.3447087211306446,0,0.0,0,0.0,0,0.0,0.09186,0.2130086956521739,0.3166775527977357,0.02909,0.3109391124871001,0.6890608875128998,25.810248796912564,4.634895735467824,0.3437543614794138,0.192602930914166,0.2340544312630844,0.2295882763433356,11.05754036624038,5.485818977997735,31.226918106469487,15554.615324195083,81.14462486910786,16.135744564055262,27.819122756733325,18.510119945370928,18.679637602948358,0.5461270062805303,0.7710144927536232,0.6877791311408851,0.5872340425531914,0.1127012522361359,0.6813898704358068,0.9143576826196472,0.8449197860962567,0.7131578947368421,0.1361111111111111,0.504115602707152,0.7131230925737538,0.6414300736067298,0.549407114624506,0.1063022019741837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028462325402372,0.0056474262133855,0.0084843810258387,0.0111869779918307,0.0137526956097164,0.0163543788187372,0.0187590481822074,0.021272469300887,0.0237196985962437,0.0263645578433279,0.0288508858267716,0.031407538219863,0.033875478060616,0.0364018417230617,0.03893423591691,0.0413363240751268,0.04366920782234,0.0461664608135178,0.0486346525799139,0.0511538261186643,0.0686440324062473,0.0845835164145377,0.0995438578094688,0.1145227604916981,0.1286393689827166,0.1454156925387976,0.1621570000636658,0.1774351548192001,0.192667998333636,0.2071638398696314,0.2240295390445023,0.239674694755967,0.2554362007480212,0.2693653501290294,0.281829582205795,0.2944766926621765,0.3073891735601772,0.3191177960663341,0.3306294945639207,0.3411365096851189,0.3514409973905479,0.3611449880388386,0.3700125798105907,0.3785985485653866,0.3867599215294447,0.3944015324723475,0.4017156277866392,0.4082813777596075,0.4146820493477101,0.4210861264319049,0.4233235914921253,0.4251994634881566,0.4270659225473809,0.4284945767541946,0.4301094563071954,0.4312318048089216,0.4315777735295992,0.4325128035684784,0.4329131797361986,0.4341018303547325,0.4353747922019041,0.4373802681992337,0.4389712569531101,0.4400045177320985,0.4403696498054474,0.4416094986807388,0.4426588961657194,0.444241900924238,0.4447391055045872,0.447405669915477,0.4488269454123113,0.4498945432913309,0.4516336093459144,0.4493474207582349,0.4493872430763292,0.4508825319537431,0.452528699968973,0.4495653931675763,0.4532900081234768,0.458997279440342,0.0,2.3466962860701392,75.63144503763932,281.9468735437403,414.1085647694872,OR_public_implementation,43 +100000,95798,45180,419.6329777239608,9180,94.52180630075785,7161,74.19779118561974,2910,30.0319422117372,77.4066300966336,79.74583430823351,63.35719594835807,65.08776829265022,77.05002922824106,79.38453657545513,63.2279153148336,64.95938279715274,0.3566008683925474,361.2977327783824,0.1292806335244734,128.3854954974828,55.01584,38.23797385043444,57429.00686861939,39915.21101738496,163.27767,87.19525136139275,169859.04716173615,90439.7417694918,245.47754,114.35500121777244,252879.9870560972,116785.76002226188,5207.04504,2318.18548782487,5398517.307250673,2382984.06768769,1745.55938,751.7207911093445,1808801.6555669224,771422.88043359,2878.37972,1194.7267508166794,2972391.8662185017,1218203.4324976937,0.43238,100000,0,250072,2610.409403119063,0,0.0,0,0.0,12749,132.49754692164765,0,0.0,23226,239.16992004008435,2273683,0,81819,0,0,7403,0,0,37,0.3653520950332992,0,0.0,0,0.0,0,0.0,0.0918,0.2123132429807114,0.3169934640522875,0.0291,0.3055412238159116,0.6944587761840884,25.664584160967657,4.606016646319791,0.3273285853931015,0.199553135037006,0.2445189219382768,0.2285993576316157,10.76009500712668,5.137454132844416,31.08901252755217,15568.566543624484,80.43955234648281,16.585324030767673,26.24947602854584,18.17426180184425,19.43049048532505,0.5349811478843737,0.7627711686494052,0.6800341296928327,0.5754428833231521,0.1170759565962307,0.6963636363636364,0.9064039408866996,0.8694852941176471,0.7537091988130564,0.1487603305785124,0.4866630375612411,0.7057673509286413,0.6227777777777778,0.5292307692307693,0.1087896253602305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025330820515938,0.0054754517247672,0.0079763753158583,0.0104243926724444,0.0132321681024399,0.0161402008105741,0.0187700087681735,0.0214566426785076,0.0242037695735721,0.0268123951041794,0.029444319183389,0.0319528813002791,0.0343686406709284,0.0366786423858103,0.0389646534929028,0.0412725620585684,0.0437809710023483,0.0460991437397632,0.0483309611129003,0.0509926811239628,0.0680732068699263,0.0850641065863504,0.1006341386719773,0.1156408962878883,0.130508081680821,0.1488244307074549,0.1654105850054589,0.180856380320478,0.1953796083871312,0.2093514005677253,0.2262128923272253,0.2421172145328719,0.256360376025648,0.2699432066404543,0.2826144279153574,0.2959638774222822,0.3081676817705196,0.320491628152796,0.3319304375446676,0.3421676535602616,0.3520984968583298,0.3606839206146865,0.3696100021311359,0.3781816873883487,0.3858733980204761,0.3933930598746236,0.40025830397111,0.4065443791507858,0.4130017134846046,0.4190580822788161,0.4219569566863137,0.4245107111780224,0.4265095020447438,0.4283826177888805,0.4294671782392547,0.4303018176781124,0.4305813898030238,0.4313893512186279,0.4323194958213454,0.433976447005763,0.4345500433193958,0.4352782301306748,0.4360577732861714,0.4368977937865826,0.4370097801878571,0.4381102362204724,0.4385602342202704,0.4414083525947503,0.4417156203552976,0.4446577095329495,0.4465368363035091,0.4458837383577775,0.4459124690338563,0.447420939514891,0.4472789115646258,0.4531473533619456,0.4550711048601344,0.4593711719069008,0.4571026722925457,0.452437106918239,0.0,2.116681598275807,73.39892166883318,276.3306120808731,423.00883279878894,OR_public_implementation,44 +100000,95668,45566,424.0184805786679,9149,94.12760797758916,7180,74.23589915123134,2947,30.292260735042017,77.29491858535671,79.6970841872509,63.29396199958445,65.0739658323162,76.94512644339412,79.34831100757678,63.16642224356101,64.95008354993395,0.3497921419625953,348.7731796741116,0.1275397560234452,123.88228238225452,55.2233,38.42529023563114,57723.8993184764,40165.24881426511,164.19657,87.89888196335185,170804.05151147718,91052.84861600296,248.2771,116.2624593679651,254315.83183509635,117546.57956512897,5188.45801,2307.0547290553136,5368149.747041853,2356382.367861484,1773.08976,758.7075532714624,1832340.1346322696,772078.4607446869,2906.06724,1197.0638184636937,2990606.660534348,1211310.0355003332,0.43625,100000,0,251015,2623.8136053852904,0,0.0,0,0.0,12785,132.7716686875444,0,0.0,23562,241.14646485763265,2268736,0,81584,0,0,7543,0,0,35,0.3658485596019567,0,0.0,0,0.0,0,0.0,0.09149,0.2097191977077364,0.3221117061973986,0.02947,0.315669868815205,0.6843301311847949,25.68424743736948,4.673869111408161,0.3371866295264624,0.1937325905292479,0.2388579387186629,0.2302228412256267,11.209030585401456,5.548435175450568,31.44806211377862,15650.527769626113,80.9648617537798,16.07236490429515,27.57389841784024,18.462314968241465,18.856283463402946,0.5355153203342619,0.7519769949676491,0.6860801321767864,0.574107683000605,0.110204081632653,0.6983568075117371,0.9149484536082474,0.8564437194127243,0.7317073170731707,0.1197604790419161,0.4848429510591672,0.6889332003988036,0.6283185840707964,0.528816199376947,0.1078928312816799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027370320435492,0.0053172597846712,0.0081145584725536,0.0108687916221849,0.0137626352596272,0.0166134966823968,0.0192456834972856,0.021485053431683,0.0239493391169128,0.0263370860180907,0.0287118150298504,0.0312503210297607,0.0335977937620267,0.0363087324408166,0.0389149239249365,0.0412624873316924,0.0437810223516367,0.0461171096345515,0.0485389424627323,0.0510928363715956,0.0687105029508539,0.0848025461702751,0.1009245558249115,0.1155165519708735,0.1295250957510788,0.147689995978921,0.164624954884185,0.1796526424517351,0.1949387109529458,0.2094972366797231,0.2262819338641726,0.2415591723660289,0.2567454405063566,0.2704422456677418,0.2837152506573085,0.2963479879041638,0.3088557014019109,0.3203453943665143,0.3318224161043328,0.3428577983229906,0.3524013672440762,0.3626481750456824,0.3719050384610826,0.3803256640568711,0.3884716965057264,0.3960622427665649,0.4035164780000502,0.4105000063760058,0.4171227724313247,0.423335757255239,0.4261658031088083,0.4279371820149737,0.4291608381727494,0.4314086754678659,0.4328610036880534,0.4338316892725031,0.4344780263619825,0.4353468968828116,0.4381397112037771,0.4387683316196764,0.4402321303267651,0.4413018675313757,0.44203759494208,0.4432237751149568,0.4437900190625152,0.4441618987073532,0.4453369678691567,0.446816683204763,0.4487975451366588,0.4482856104357659,0.4492349193060788,0.4505411255411255,0.4534965707326453,0.4590672771009544,0.459389400921659,0.4620068192888455,0.4637952559300874,0.4648502495840266,0.4693534844668346,0.4687135639331519,0.0,3.0544364685262564,75.11768285073973,275.0990496917195,420.0962758076457,OR_public_implementation,45 +100000,95709,45443,422.8129016079992,9349,96.29188477572642,7304,75.62507183232506,2991,30.8748393568003,77.3593554540744,79.73286045064437,63.33143217950936,65.08501448130296,76.99729473031702,79.36569389832012,63.20102275308035,64.9553788383632,0.3620607237573807,367.1665523242496,0.1304094264290114,129.6356429397605,55.32538,38.45299863006392,57805.828083043394,40176.993417613725,166.09166,88.6627186886327,172813.53895662894,91913.40695122804,258.98689,121.2515077708605,265768.5902057278,123014.18107330822,5284.64624,2352.871969909821,5476779.435580771,2413727.806054913,1811.71228,780.8207548706373,1874804.657869166,797694.328506867,2947.16736,1202.8868615398826,3044571.733065856,1228056.2992559671,0.43538,100000,0,251479,2627.537640138336,0,0.0,0,0.0,12964,134.71042430701397,0,0.0,24491,251.20939514570208,2269027,0,81570,0,0,7725,0,0,38,0.3761401749051813,0,0.0,1,0.0104483381918105,0,0.0,0.09349,0.2147319582893105,0.3199272649481228,0.02991,0.3071081409477521,0.6928918590522479,25.57528523658445,4.5929125333512655,0.3244797371303395,0.2001642935377875,0.2402792990142387,0.2350766703176341,11.2888472966075,5.715761556886629,31.64091879089488,15639.7176204731,82.47945212742688,17.06477286454237,26.994797153324647,19.244561243039215,19.175320866520654,0.553395399780942,0.7660738714090287,0.7063291139240506,0.6039603960396039,0.1202279202279202,0.7261768082663606,0.9427207637231504,0.8569051580698835,0.7931937172774869,0.1529411764705882,0.4992808342322905,0.6951102588686481,0.6551724137931034,0.5498127340823971,0.1123674911660777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026941619738281,0.0054132411527973,0.0082701655047845,0.0108061993459405,0.0135037572577611,0.0163804249340812,0.0191854834599113,0.0216809913643508,0.0243810185847764,0.0268225514184215,0.0291134697226067,0.0318511899259441,0.0341577842709576,0.0365547084277766,0.0390993426687442,0.0412359411180946,0.0436394131715448,0.0459811843292638,0.048539349204699,0.050843220383121,0.0685859883253448,0.0849643103845268,0.1017182058490328,0.1166023490815028,0.1311646543997469,0.1489622781221571,0.1647318491479021,0.1808164047527788,0.1949986641731231,0.2086364904599403,0.2252238661221323,0.2412311089940674,0.2552659065192793,0.2690030317291801,0.2826247424724845,0.2960913063732558,0.309205675343537,0.3215161951065793,0.3327164978883792,0.3438832592049154,0.3541956098916365,0.361856502557021,0.3708906298075785,0.3792467074909823,0.3874671916010498,0.3953683379781488,0.4027420951712556,0.4104340737721622,0.4166958461398799,0.4231501057082452,0.4251375107851596,0.4279548839005019,0.4298120708857904,0.4314553447478019,0.4323571885840194,0.4326319505195144,0.4334792539017891,0.4348491833508957,0.4367545861719836,0.4379732299852872,0.4392620427894329,0.4393171937941211,0.4398973728292445,0.4407906681190995,0.4407689305230289,0.4422690231770558,0.4443350894459561,0.4460887949260042,0.4477959066838414,0.4490480617648247,0.4496840735922691,0.4511155746159275,0.4522280599338392,0.4498869042976366,0.4493841416474211,0.4501452081316553,0.4557279423287886,0.4538318529229498,0.445942151081157,0.4550078247261346,0.0,2.655226640255448,77.12828341704537,279.4537860277146,428.553236927331,OR_public_implementation,46 +100000,95877,45331,421.3836477987422,9316,95.57036619835831,7324,75.69072874620608,3041,31.237940277647404,77.4394230829848,79.71915572790257,63.39129033748679,65.07717729185073,77.06535021118965,79.3453007860964,63.25453346001593,64.94438054158928,0.3740728717951498,373.8549418061723,0.1367568774708587,132.79675026144844,55.39578,38.52408512219633,57777.96551832035,40180.73690478042,164.85755,87.76285960540238,171221.21050929837,90811.21604284908,251.6416,117.62623005579306,258576.09228490668,119684.0827827606,5344.13949,2384.780569617092,5525930.327398646,2439516.8653866253,1855.29639,803.8479379658035,1914373.3846490816,817799.7979157977,3006.63442,1243.1109096593325,3090780.4582955246,1256823.071664653,0.43432,100000,0,251799,2626.271159923652,0,0.0,0,0.0,12772,132.51353296411028,0,0.0,23851,244.87624769235583,2272711,0,81796,0,0,7535,0,0,46,0.458921326282633,0,0.0,0,0.0,0,0.0,0.09316,0.2144962239823171,0.3264276513525118,0.03041,0.3158320687910976,0.6841679312089024,25.69922645439598,4.64566876764396,0.3222282905516111,0.1955215729109776,0.2445385035499727,0.2377116329874385,11.078535341533172,5.433342820553852,32.41356777663287,15598.852129622845,82.60569850573374,16.663292586619814,26.66207386953039,19.55621703667121,19.724115012912325,0.5427362097214636,0.7569832402234636,0.6983050847457627,0.5749569213095922,0.1351200446677833,0.7091954022988506,0.9102244389027432,0.8663194444444444,0.7506234413965087,0.1906077348066298,0.4908667621776504,0.6973811833171678,0.6440582959641256,0.5223880597014925,0.1210636808957312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026118647499493,0.0051988325428675,0.0079530123048519,0.0109047710911878,0.0133147671948529,0.0161067133350969,0.0187624140565317,0.0213484292125663,0.0240488741775979,0.0264326193252726,0.0289042808254267,0.0310476796322707,0.0336645669129509,0.0360506892043524,0.0382708030476426,0.0409954564229657,0.0434022389140646,0.045831822185379,0.0481628754451354,0.0504686898532028,0.067625044304985,0.085040127069052,0.1011310084825636,0.1163030010290442,0.1310500215837185,0.1492365525543283,0.1657467928006186,0.1812636165577342,0.1953960485771252,0.2098987433904908,0.2270381282122965,0.2428535918468804,0.257250904665138,0.2703204932009969,0.2831025113577612,0.2963106495117036,0.3087121845694087,0.3208934252087994,0.3320068929551277,0.3423410024368757,0.351766868187125,0.3607910053528435,0.3694829014317832,0.3777346231764184,0.385676773079822,0.3939831261101243,0.4014807020181142,0.4087465783945509,0.4148500479535498,0.4209344708275006,0.422849665443557,0.4249393672141991,0.4265228927906058,0.427734601554344,0.4295706381519096,0.4306553618415991,0.4311055908533575,0.4333190252922142,0.4352453660717356,0.4370810946793408,0.4381290480956247,0.4384932899958125,0.4392885091262875,0.4410710663330854,0.4418165075364707,0.4434166139574109,0.4450318947186943,0.4461104418943765,0.4476048963418949,0.4486104984561094,0.4499446902654867,0.4493066422057951,0.4501856831860673,0.4463465878141779,0.4487216594307766,0.4543906592070056,0.4564873417721519,0.4560335781741867,0.4591517221747794,0.4578454332552693,0.0,2.768364359163672,76.84285052432084,285.0543925028063,423.1957764999119,OR_public_implementation,47 +100000,95736,45307,421.9833709367427,9344,96.28561878499204,7202,74.64276761093005,2955,30.479652377371103,77.34647984393533,79.69775325796468,63.33814763576003,65.07473010779138,76.97690691651361,79.32487375119517,63.203643003446345,64.94196701757211,0.3695729274217143,372.8795067695074,0.1345046323136856,132.7630902192709,55.05192,38.29287477924685,57503.8856856355,39998.40684721197,163.23,86.83510147124868,169889.59221191608,90099.02897567472,242.44504,112.5877948950385,249657.2553689312,114873.9671649306,5207.18137,2319.6234966606576,5397617.09283864,2382313.003393596,1770.07201,767.5050621846908,1830280.9183588205,783671.5871507861,2911.7673,1211.2873098726504,3004243.0224784827,1233280.1111532515,0.43519,100000,0,250236,2613.812985710704,0,0.0,0,0.0,12768,132.70869892203558,0,0.0,23022,236.8701428929556,2272237,0,81748,0,0,7407,0,0,33,0.3446979192780145,0,0.0,0,0.0,0,0.0,0.09344,0.2147108159654404,0.3162457191780822,0.02955,0.3117700822585559,0.688229917741444,25.76292582077292,4.607534665372414,0.3376839766731463,0.1963343515690086,0.2375728964176617,0.2284087753401832,10.941649906563091,5.34693143301095,31.742032397732245,15697.906431824287,81.43156042325874,16.343001640075666,27.6506278478069,18.45477838563769,18.98315254973848,0.5352679811163565,0.7291371994342292,0.6858552631578947,0.5866261398176292,0.1116306253652834,0.6786769049025398,0.9249329758713136,0.8229342327150084,0.7205479452054795,0.1464088397790055,0.4911962243601379,0.6589817483189241,0.641653072321914,0.5484375,0.1022979985174203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002572412396192,0.0050482011981875,0.0080068194964532,0.0108083947908413,0.0131490633961803,0.0157395341260791,0.0183078491335372,0.0206983129037855,0.0234690435547014,0.0259334718909012,0.028526327658135,0.0311319592708162,0.0335375884191478,0.0360802974590324,0.0387944821039815,0.0410654483813618,0.0433517632685179,0.0459827357237715,0.0483076219385421,0.0502994635696057,0.0675708125828713,0.0846939629908733,0.1008739259523484,0.1153465971229073,0.1296999219754961,0.1478779420161136,0.1646634487879913,0.1802941927792915,0.1948216954943412,0.2095334055073799,0.2269022470579368,0.2430207781251014,0.2579105840407839,0.2716779433143507,0.2847028298775259,0.2977521869117484,0.3107417735638594,0.3226365416207215,0.3334506402688221,0.3439577316279283,0.3548827785817655,0.3647270896981189,0.3739141770261782,0.381987130234345,0.3900729927007299,0.3981964644782453,0.40579401293687,0.4126089119646889,0.4195074403794918,0.4261341810715941,0.4279764721790278,0.4297640603187328,0.4310303339136835,0.4332587404458136,0.4346324617661569,0.4358278462273898,0.4363520509757069,0.4370011732240527,0.4378758378275927,0.4386988706975739,0.4406936722266349,0.4421506578553317,0.4434516861563276,0.4450037412420923,0.4472778740330413,0.4477794305142371,0.4491586992531458,0.4501169010024661,0.4508261211644374,0.451565972923823,0.4509594387399526,0.453257328990228,0.4515880654475457,0.4516355687407292,0.4517938303839087,0.4541676851625519,0.4566792690611216,0.4554579673776662,0.4469001148105626,0.451004016064257,0.0,2.1165919910394195,75.67303385056258,282.6169619135386,418.18306151214426,OR_public_implementation,48 +100000,95740,45381,423.1773553373721,9333,96.26070607896386,7248,75.13056193858367,2973,30.666388134531022,77.41222784566315,79.76849125550436,63.350809200748486,65.08986354492484,77.04289341545986,79.39643750001846,63.216992373856016,64.95793035278206,0.3693344302032955,372.0537554858936,0.1338168268924704,131.93319214278176,55.36102,38.47799652496919,57824.33674535199,40190.094552923736,164.35341,87.6571292774546,171106.9981199081,90998.0773735686,251.64522,117.18600561942544,259646.39649049507,119828.39584325724,5286.39058,2366.6265834858,5483927.971589722,2434247.5908562783,1775.20246,770.4324759809598,1840613.6828911635,791135.947337538,2939.73034,1220.3885216122696,3035130.7917275955,1243887.3952810026,0.43442,100000,0,251641,2628.3789429705453,0,0.0,0,0.0,12813,133.24629204094424,0,0.0,23868,246.11447670775016,2270765,0,81603,0,0,7274,0,0,23,0.2297890119072488,0,0.0,0,0.0,0,0.0,0.09333,0.2148381750379816,0.3185470909675345,0.02973,0.3091313580746284,0.6908686419253717,25.618281470407503,4.586821436235284,0.3305739514348786,0.1938465783664459,0.2419977924944812,0.2335816777041942,10.86781048193692,5.281437689581607,31.875721769145528,15550.663263293123,82.15695637553058,16.381584868486335,27.10626151189302,19.247794006764185,19.421315988387057,0.5480132450331126,0.7658362989323844,0.7032554257095158,0.6024808033077378,0.1088939566704675,0.68760907504363,0.9362244897959184,0.8416206261510129,0.7146282973621103,0.1634877384196185,0.5046120455778622,0.6999012833168805,0.6627091203453859,0.5658307210031348,0.0944484498918529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028863682398217,0.005483200729742,0.0081564744552205,0.0108355674709562,0.0134812269339867,0.0162569349010026,0.0186211957518804,0.0208769119312674,0.0231678776915923,0.025639713408393,0.0279576945150446,0.0305493964030549,0.0329083993009149,0.0352718247633955,0.0378896536068432,0.0403129942218041,0.0427763741042952,0.0452267563108911,0.0474616096399571,0.0498677000645873,0.0675164954480915,0.0839506947932362,0.0999171291002737,0.1144645487060803,0.1287933144810703,0.1470040425847143,0.1635269520180847,0.1796711955364368,0.1937545419569956,0.2083239426038614,0.2246660413364815,0.2402404028371866,0.2550814889007435,0.2685733682262639,0.2814583034937144,0.2952230924541279,0.3081394698892156,0.3212173109641364,0.3325910356189286,0.3430036478766605,0.3522349314512858,0.3619219416202033,0.370992963252541,0.3793521150409575,0.3869504408634843,0.3945566481191319,0.4014103913021694,0.4083780962806446,0.4152258097939413,0.4214554331332057,0.4235211760588029,0.4252153808042718,0.426973897592825,0.4285507519069054,0.4297880562408965,0.4307428291247855,0.4309535886380928,0.4320744173815863,0.4331255992329818,0.4336769390457783,0.4351378766248403,0.4363809410505026,0.4380165289256198,0.4377923713566031,0.4381240911294232,0.4380336827723917,0.4389417138260894,0.4415205605402492,0.4428368794326241,0.4454006884957169,0.4478812390844747,0.4491069507208952,0.4488897396630934,0.4501156515034695,0.4464217738865626,0.4489697553922159,0.4482115085536547,0.4510655907303952,0.453675021120811,0.4590551181102362,0.0,2.273899205720159,76.83657809512462,289.5124511270088,412.88936009267593,OR_public_implementation,49 +100000,95705,45065,419.4765163784546,9229,94.77038817198684,7143,73.8101457604096,2938,30.113369207460423,77.32373385663094,79.69401929672348,63.321321634088775,65.07548381258776,76.95884734072169,79.33101080035148,63.1869061027169,64.94583651234058,0.364886515909248,363.0084963720037,0.1344155313718715,129.64730024718563,55.13816,38.35697192460059,57612.622120056425,40078.33647625578,163.08391,87.00880935791375,169584.95376417116,90095.79369720888,245.89587,114.85860035348576,252078.27177263465,116256.7446854709,5180.90041,2326.3852507863203,5356156.010657751,2373537.381313744,1768.45632,776.0380212260892,1821809.5397314664,784855.9367411532,2899.518,1210.154936258855,2974863.1941904807,1217028.5746833663,0.4326,100000,0,250628,2618.7555509116555,0,0.0,0,0.0,12735,132.20834857113005,0,0.0,23263,238.13802831617997,2272108,0,81695,0,0,7487,0,0,44,0.4597460947703882,0,0.0,1,0.0104487748811451,0,0.0,0.09229,0.21333795654184,0.3183443493336222,0.02938,0.312288266091777,0.6877117339082229,25.82427968198419,4.619097856990946,0.3256334873302534,0.1966960660786784,0.2316953660926781,0.24597508049839,11.143190635074648,5.555147671259624,31.493887353507716,15517.293970071336,80.8606301372767,16.259492159337817,26.38379356381936,19.72621904025335,18.49112537386618,0.5503289934201316,0.7423487544483985,0.7145313843508169,0.5799658508821856,0.1250755287009063,0.6993540810334703,0.8976982097186701,0.8629173989455184,0.7385786802030457,0.166189111747851,0.5036764705882353,0.6824457593688363,0.6664769493454752,0.5341159207630227,0.1140888208269525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029381965552178,0.0053647306986319,0.0084754364596021,0.0110257504623701,0.0135927071463454,0.0161354399046542,0.01887773834292,0.021488464248874,0.0241121552667368,0.0266373086179527,0.0289813456943319,0.0312313854369929,0.0335164496018764,0.0360153335669091,0.0385425268373245,0.0408766670112684,0.0433544271022132,0.0455573539176626,0.0477358981024174,0.0504741064916119,0.0670035814599409,0.0828361489669032,0.0986812425905137,0.1139550786386828,0.1283208707299324,0.1463226352244488,0.1627107494137744,0.1783737760749255,0.19363349890509,0.2075182325182325,0.2243821011254106,0.2403484094351871,0.254747764798016,0.2682446622331116,0.2809896435214228,0.2941391535563926,0.3069225191052602,0.3188205404919286,0.3307917489277691,0.3410131916452913,0.3509605931272193,0.3605333957187975,0.3691661241640528,0.3771290121383678,0.384645319777694,0.3922306847218279,0.3993302059553972,0.4069262964475296,0.4136716821288428,0.4201588352084712,0.4224156574394463,0.4240140494496377,0.4257633263467966,0.426541180577779,0.4281803903971281,0.4292873222931507,0.4295540306016845,0.4314626047018784,0.4324138523674486,0.4330629350504523,0.4337506619260156,0.4356382234831079,0.4379961791551687,0.4384671234741571,0.4394194825185076,0.44044115697659,0.4421982107586848,0.4446941724193289,0.4453573478760046,0.4469937352534375,0.4501986445431175,0.4520091723083643,0.4523146649401101,0.4535686274509803,0.4552547924092091,0.4566890653634697,0.4538485607008761,0.4518610937824912,0.4526493799323562,0.459256329113924,0.0,3.222683414612684,74.73252024021964,276.36743402537945,417.73139635303227,OR_public_implementation,50 +100000,95769,45238,420.00020883584455,9281,95.41709739059613,7238,74.86765028349465,2952,30.36473180256659,77.38153749659537,79.72250260864129,63.350937847410606,65.08258243471836,77.02244972974692,79.36442399209609,63.2184284456989,64.95422037701904,0.3590877668484467,358.0786165451997,0.1325094017117081,128.36205769932008,54.41722,37.847196652903904,56821.33049316584,39519.2563907986,163.55094,87.62967213748178,170006.6827470267,90731.27226710292,251.82551,117.75859661231615,258469.32723532667,119611.9896810224,5252.64231,2358.935497231272,5434801.386670008,2413252.855549575,1780.75166,771.6169803582795,1839644.5718343093,785927.8619614148,2913.67844,1212.48036112029,2999469.473420418,1227251.337954435,0.43353,100000,0,247351,2582.7877496893566,0,0.0,0,0.0,12782,132.72562102559283,0,0.0,23858,244.9748874896887,2274571,0,81806,0,0,7426,0,0,43,0.3967881047102924,0,0.0,0,0.0,0,0.0,0.09281,0.2140797637995063,0.3180691735804331,0.02952,0.3184596577017115,0.6815403422982885,25.791823253709328,4.590601751152942,0.3311688311688311,0.1949433545178226,0.2350096711798839,0.2388781431334622,11.015519820514251,5.449950935859397,31.504979265362916,15605.99083976877,81.90034144715767,16.494408254021124,27.21946641309563,19.28510015509483,18.90136662494611,0.5453163857419177,0.7484053862508859,0.6992073425114727,0.5777906304222094,0.1269841269841269,0.6977272727272728,0.9193154034229828,0.8682042833607908,0.7164948453608248,0.1320224719101123,0.4963490324936108,0.6786427145708582,0.6418994413407821,0.5376584638329605,0.1256505576208178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025927201280155,0.0051391732722444,0.0076295604886165,0.0105521871159724,0.013451410212091,0.0158799637611083,0.0186223345700656,0.0213311015625797,0.0241165770810766,0.0267665295598256,0.0293689668600004,0.0322103836915686,0.0346703132872022,0.0374061756741451,0.0399377004878753,0.0423309397117321,0.0448694068463098,0.0468869860883627,0.0492109828691343,0.051301541024573,0.0691519338746373,0.086238455343228,0.1019165041622109,0.1170721454469024,0.1304645672610767,0.1486163668266283,0.1647269566692105,0.1803005008347245,0.1954465886773119,0.2099016906632932,0.2265778084020585,0.2421757521338857,0.2563519933897955,0.2707515714676141,0.2831205985915493,0.296277426429054,0.3083316598612133,0.32020468987235,0.3308332104074709,0.3410084957292358,0.3506122260028239,0.3597598792375112,0.3688437211285623,0.3776101322906797,0.385860379148072,0.3929558351838144,0.4003406301658067,0.4073332993474715,0.414605036129886,0.4210463686486058,0.4236981661651396,0.4250375950222811,0.4271917420814479,0.4294694055309574,0.431075185273727,0.4313891540664552,0.432376103730809,0.4342226766044456,0.4356028125535928,0.4371746544605995,0.4386080724254998,0.4383867368085445,0.4392177589852008,0.4391998913879712,0.4404527678593116,0.4425887815946388,0.4435864930275441,0.445227662411888,0.4453069615766341,0.445815580030549,0.4493556879589857,0.4505204120153157,0.4529574208464453,0.4532608695652174,0.4544058360529852,0.4565768812658534,0.4582944288826642,0.4543027315670569,0.4557784684939248,0.4677926158680283,0.0,2.7230364544361887,78.02896844909819,281.12452642099,413.5720447074554,OR_public_implementation,51 +100000,95864,45344,420.5019611115747,9309,95.81281815905866,7193,74.51180839522657,2901,29.94867729283151,77.37299817448195,79.67224596759667,63.35320242165369,65.05605092242212,77.01692604467479,79.31074497650198,63.22345985752867,64.92629324055075,0.3560721298071598,361.5009910946867,0.1297425641250242,129.75768187136794,54.47244,37.909747344093866,56822.62371693232,39545.34271894962,163.85023,87.60645146444146,170331.60519068682,90810.48232619636,245.80573,114.46432029601588,252597.03329717097,116527.67836329836,5239.29963,2335.654115776458,5431455.520320454,2403276.2768459464,1744.11854,756.7217548196282,1806855.3471584744,777074.5655219943,2869.66686,1196.0268790471416,2965074.9186347327,1224956.2506523768,0.4346,100000,0,247602,2582.846532587833,0,0.0,0,0.0,12767,132.6358174079947,0,0.0,23310,239.43294667445548,2274289,0,81826,0,0,7492,0,0,38,0.3755320036718684,0,0.0,1,0.0104314445464407,0,0.0,0.09309,0.2141969627243442,0.3116339026748308,0.02901,0.3201300020312817,0.6798699979687183,25.848568743542284,4.652863941136982,0.3342138189906853,0.1901849019880439,0.2391213679966634,0.2364799110246072,10.879226533027277,5.285160807767679,31.248040353701604,15633.998689486089,81.22108441956303,15.792737196450226,27.262648538826355,19.0131998551124,19.152498829174032,0.533991380508828,0.7485380116959064,0.6834442595673876,0.5802469135802469,0.1087209302325581,0.6862630966239813,0.9177377892030848,0.852112676056338,0.7367021276595744,0.1584415584415584,0.4862100456621004,0.6813074565883555,0.6312636165577342,0.5358490566037736,0.0943820224719101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002572412396192,0.0053614683734176,0.0079628333485489,0.0106309526227077,0.0131549519142793,0.0156962540716612,0.0184379236186845,0.0209615364989947,0.0235825440129152,0.0263470235537274,0.0290866246606218,0.031733817599803,0.0343558912697189,0.0369318181818181,0.0394218675903589,0.0422264677027934,0.0444872073414238,0.0469217935565434,0.0493898956332104,0.05153201893565,0.0686199885303164,0.085496342737722,0.1015828785132884,0.1164641765811553,0.1310318680624302,0.1489764012422622,0.1654092315517314,0.1819090348508367,0.1964308585578277,0.210334554962601,0.226150501528262,0.2419112480406464,0.2567583725556268,0.270584118791961,0.2837333685496385,0.2971484911596579,0.3095998035845814,0.3205474518278408,0.3317101962520289,0.3422478888086808,0.3518089859031041,0.3616779647126316,0.3707139641240728,0.3790307101727447,0.3869379119142002,0.3944920168793031,0.4015831995182657,0.4082416110806433,0.4146712029918969,0.4213767348236042,0.4238573533586579,0.4254827962786325,0.4276790140944826,0.4291568576161828,0.4307485432541461,0.4319970430148927,0.4322343154908928,0.4333322318419139,0.4344146685472496,0.4349611063094209,0.4358427136058019,0.436696113426526,0.4394067617314772,0.4416956345086,0.4438834951456311,0.4451295022791347,0.4476495726495726,0.4514238389501178,0.4526064663153397,0.4539249146757679,0.4556525735294117,0.4577154523963034,0.459265890778872,0.4587113282158641,0.4602016322611618,0.4631414117080221,0.4639223665675379,0.4613294314381271,0.4667807242657542,0.4665354330708661,0.0,2.027566229605826,77.0284308076304,277.0714413456716,417.3673610945797,OR_public_implementation,52 +100000,95794,44748,416.1742906653861,9116,93.93072635029334,7098,73.54322817713009,2927,30.179343173893983,77.39816222968327,79.72777226638395,63.35848721039546,65.07970337997207,77.04297203364412,79.36810604078492,63.229994344239735,64.95234085324604,0.3551901960391461,359.66622559902817,0.1284928661557245,127.36252672603143,54.81454,38.0904935662157,57221.266467628455,39762.92206841315,163.53629,87.08954931379635,170167.9228344155,90364.65677787372,243.25835,113.32076026333316,250469.94592563208,115650.91884968552,5144.74893,2283.962984649778,5329523.352193248,2343129.6893853247,1724.9831,747.2294162567379,1781907.7708415976,761321.1728344294,2889.66792,1190.0531400237685,2980231.97695054,1210656.8151015283,0.42886,100000,0,249157,2600.9666576194754,0,0.0,0,0.0,12762,132.6387873979581,0,0.0,23039,237.0607762490344,2274671,0,81753,0,0,7373,0,0,36,0.375806417938493,0,0.0,0,0.0,0,0.0,0.09116,0.2125635405493634,0.321083808688021,0.02927,0.3093487938710011,0.6906512061289989,25.929755435920733,4.5979986653664495,0.3323471400394477,0.1903353057199211,0.2416173570019724,0.2357001972386588,10.983431207409666,5.485090561604421,31.09305594194948,15382.321379665096,79.81717467826908,15.625297279230027,26.557166947262456,18.724916252548645,18.909794199227942,0.5350803043110736,0.7475943745373798,0.6774056803730394,0.5893604303646145,0.1189504373177842,0.6910809214412286,0.9318181818181818,0.8421985815602837,0.7135135135135136,0.1707988980716253,0.4862164662349676,0.6712041884816754,0.6256267409470752,0.5541059094397545,0.1050295857988165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028761823742682,0.0052801199935138,0.0079637219494379,0.0103785847753676,0.0130229248208204,0.0156227736275367,0.0180873286798797,0.0204770844386401,0.0229671328885664,0.0254552895436873,0.0278560378653607,0.0304563319001344,0.0330812077364191,0.0353746397694524,0.0377850633015794,0.0403713878503707,0.0426735909956136,0.045116134384073,0.0476066759503668,0.0499849003946724,0.0670214431053373,0.083595670135439,0.0993762121926927,0.114196233394989,0.1281294471090497,0.1455540991924231,0.1621928326740128,0.1774332563657838,0.1923023526522068,0.2058823529411764,0.2221564044847009,0.2378186616481175,0.2523417295112251,0.265777972027972,0.2780202504370004,0.2910666651908752,0.3041421702607124,0.3156805166458523,0.3266971612771415,0.3374623291203061,0.3477405770610148,0.3573860246376303,0.3659316832738948,0.374817054151971,0.3821748960688498,0.3896486663131543,0.3969267761205244,0.4030438104941416,0.4107817061303925,0.4173189823874755,0.419120526010234,0.4214628628186734,0.4233900604964098,0.4244001449800652,0.4254606115670474,0.4258508416267355,0.4261596668044383,0.4280012534428447,0.4285345717234262,0.4296065880322209,0.4311864278839803,0.4327038249620697,0.433081529444127,0.4341597671847857,0.4344677243550926,0.4339210526315789,0.4361335858151144,0.4373910010463899,0.4408814804350897,0.4411494344750409,0.4424228466144634,0.4435993572576325,0.4446417247939125,0.4429587262328026,0.4454571620454763,0.4505909589374924,0.4575,0.4599875285803367,0.4623015873015873,0.4542267238021036,0.0,2.0997532144065816,75.59650845366069,270.0671661892305,413.21087992551486,OR_public_implementation,53 +100000,95861,44846,415.43484837420846,9308,95.48199997913646,7236,74.73320745662991,2947,30.27299944711613,77.3584022892406,79.6426965003565,63.35300198276878,65.0422573621636,76.99534910109514,79.2774952300004,63.2188570733751,64.91035780013425,0.3630531881454573,365.2012703560956,0.134144909393683,131.89956202934638,53.73192,37.421189393318826,56051.90849250477,39036.927836470335,164.61118,88.28487997006405,170978.30191631633,91357.2256548966,249.08637,117.1121013846812,254916.82748980296,118292.90986795514,5199.4736,2338.705732526412,5378516.257915107,2394270.72450026,1763.56148,765.9953036035012,1823503.2599284376,782900.032060425,2891.91734,1215.2310834731063,2974758.640114332,1232114.7875387098,0.43037,100000,0,244236,2547.8140223865803,0,0.0,0,0.0,12855,133.3284651735325,0,0.0,23651,241.81888359186735,2275026,0,81821,0,0,7266,0,0,42,0.4381343820740447,0,0.0,0,0.0,0,0.0,0.09308,0.2162790157306503,0.3166093682853459,0.02947,0.3125254582484725,0.6874745417515274,25.720581580407902,4.626617479036558,0.3396904367053621,0.1947208402432283,0.2299613045881702,0.2356274184632393,11.04170469322905,5.504443905463729,31.711938319968777,15475.589093754432,81.91638544146406,16.413189462976423,27.87665297449604,19.099451828581163,18.52709117541044,0.5432559425096739,0.7480482611781405,0.6899918633034988,0.5706744868035191,0.125,0.6813370473537604,0.8912037037037037,0.8357487922705314,0.7015706806282722,0.1416666666666666,0.4977026281933468,0.6847492323439099,0.6407185628742516,0.5328798185941043,0.1203987730061349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025615324646397,0.0055932151867951,0.0085200474688358,0.0114429022530434,0.0140170766415938,0.0166498743117678,0.0192856269611638,0.0220205007904533,0.0245244683132025,0.0269783988795632,0.0297173625968655,0.0320378097415445,0.0346010455287725,0.0373414531277324,0.039624060925214,0.0419600636008838,0.0445221421108708,0.0466911955226201,0.0489760312383167,0.0513546131757459,0.0680761452013093,0.0841900702106318,0.1000638817036517,0.1145635349833562,0.1283326135274351,0.1454983413273607,0.1623812955740207,0.1778737251815852,0.1931588892803382,0.2066240645036776,0.2233734342857758,0.2393936443016197,0.2539720515469523,0.2680825003827563,0.281050281050281,0.2942967547637765,0.30628710440566,0.3180161123362887,0.3287649456676015,0.3391173704612703,0.3492677727314858,0.3583922023453883,0.3669058774687148,0.375033034620282,0.3825617791418514,0.3901881288472473,0.3975358878715949,0.4040753752794634,0.4105897355819279,0.4163361148330436,0.4185637333188967,0.4201579551584392,0.4227261139279948,0.4244191118736732,0.4262113548618801,0.4274666584341813,0.4285235327926432,0.4288198757763975,0.4306036935492214,0.4318537859007832,0.4330212765957447,0.4352036741214057,0.4363524572785481,0.4376187460417986,0.4381393083292742,0.4398715011717619,0.4412230900025937,0.442970737913486,0.4429628049214138,0.4439030283505155,0.4429477387399898,0.4447315996338771,0.4456626274283516,0.4502347417840375,0.4540959767329132,0.4580368098159509,0.4633720006356269,0.4671244277985851,0.4721753794266441,0.4754290171606864,0.0,2.94170898760554,79.31737961627142,271.84692341541654,420.0826438947654,OR_public_implementation,54 +100000,95729,44807,417.3552424030336,9102,93.77513606117267,6983,72.32917924557867,2844,29.291019440295,77.38965647392791,79.75459607134903,63.34469261111818,65.09314194701791,77.04863419908068,79.41100481215922,63.221991579161816,64.97185745213578,0.3410222748472336,343.5912591898074,0.1227010319563675,121.28449488213278,55.04224,38.2873863153184,57497.97866895089,39995.59831954622,161.54978,86.36510596840313,168127.7773715384,89588.69931619792,239.98085,111.91502807697049,246393.38131600665,113655.11390643792,5050.00799,2240.240494286174,5235129.584556404,2300002.824939334,1700.35684,731.007145439789,1759912.9626341024,747335.2096050922,2809.46966,1151.9661538176251,2896965.8097337275,1173120.4129247044,0.42961,100000,0,250192,2613.5444849523133,0,0.0,0,0.0,12674,131.7155720836946,0,0.0,22780,233.61781696246695,2274575,0,81724,0,0,7418,0,0,25,0.2611538823136144,0,0.0,0,0.0,0,0.0,0.09102,0.2118665766625544,0.3124588002636783,0.02844,0.3184043328819914,0.6815956671180086,25.921388458564955,4.640222500144827,0.3371043963912358,0.193326650436775,0.2362881283116139,0.2332808248603751,11.17256384672369,5.542374075984007,30.09416628550196,15447.50822743036,78.24359147366962,15.560472916775902,26.368401011655337,18.1472033538871,18.167514191351284,0.5403121867392239,0.7592592592592593,0.6826677994902294,0.5868631062001227,0.1121212121212121,0.6840509399636143,0.9304123711340206,0.8318264014466547,0.7035040431266847,0.1364985163204747,0.4958755155605549,0.6902286902286903,0.6368684064408662,0.5524642289348172,0.1058644325971058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026740134510979,0.0055249738957655,0.0083215782583545,0.0106467277566694,0.0130306081967713,0.0158547513339578,0.0183317869923838,0.0207735731566643,0.0231008259056341,0.0255494252402935,0.0279321019291088,0.0302955639738417,0.0328861475199177,0.0352365751943572,0.0376986787412457,0.0402025630425795,0.0425265337820346,0.0448075526506899,0.0474755243301669,0.0497718227093708,0.0679257890395798,0.0844218370593653,0.0997670807453416,0.1148622347532429,0.1288413456973763,0.1462341480956561,0.1622037386747013,0.177613655712583,0.19288109528183,0.2066469339167363,0.2227558063161521,0.2391090340657082,0.2535365946480803,0.2670975220348621,0.2801654893158161,0.293205603854034,0.305408389752055,0.3179948297178824,0.3289099096033663,0.339201703277206,0.3493538198100219,0.3589449675419615,0.368161440282,0.3766923058490882,0.3845583858702914,0.3921699148207043,0.3988078839940895,0.4057193809311509,0.4116167509399714,0.4178506760418181,0.4202015025019219,0.422042899510311,0.4236819067521392,0.42568017848347,0.4273364381686431,0.4285560840877704,0.4283765347885402,0.4301054050943055,0.4313578009880511,0.4321173104434907,0.4328456199587319,0.4332923638093727,0.4351380890327462,0.4362734090807024,0.4365393910101498,0.4366141732283464,0.4375035884480679,0.43954367790524,0.4388012955119764,0.4376412657410397,0.4390844089516204,0.4399347116430903,0.4446514616125923,0.4474453678054786,0.4522794047957539,0.4554193703436673,0.4582361175921605,0.4558551142210331,0.4574557708508845,0.4556862745098039,0.0,2.403754283671615,73.1779643595367,261.55608704796134,412.0460654231123,OR_public_implementation,55 +100000,95756,45343,421.4566189063871,9305,95.72246125569156,7274,75.31642925769664,2982,30.76569614436693,77.34687979821054,79.70498080911489,63.33382307926016,65.0809106968337,76.98742283204363,79.34310965781567,63.20264382658987,64.95170341607849,0.3594569661669027,361.8711512992121,0.1311792526702859,129.20728075521026,55.38984,38.56369715773198,57844.77212916162,40272.87810448638,165.49058,88.88759474176548,172136.1167968587,92139.467843501,252.38781,118.04208069195282,259443.69021262377,120163.26366433724,5273.69159,2356.136226180228,5464877.72045616,2418528.429289194,1762.81766,765.8865940146335,1826255.8899703408,785453.3565814894,2936.66546,1214.5849589654786,3032209.804085384,1238317.0928754178,0.43498,100000,0,251772,2629.3078240528007,0,0.0,0,0.0,12974,134.78006600108608,0,0.0,23961,246.09423952546052,2269482,0,81621,0,0,7544,0,0,30,0.3132962947491541,0,0.0,0,0.0,0,0.0,0.09305,0.213917881281898,0.3204728640515851,0.02982,0.3095238095238095,0.6904761904761905,25.735409214030884,4.643028209534034,0.3347539180643387,0.1964531207038768,0.2334341490239208,0.2353588122078636,11.223021166959024,5.571249110971477,31.806145956447253,15660.225062152727,82.2954306184426,16.885288983347635,27.37734886375809,19.27901191220137,18.753780859135496,0.5477041517734397,0.7627711686494052,0.6997946611909651,0.5741822429906542,0.1219081272084805,0.7171314741035857,0.9144144144144144,0.8687707641196013,0.7253886010362695,0.1569230769230769,0.4937466014138119,0.6944162436548224,0.6442989634478996,0.5301659125188537,0.1136198106336489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002837339386324,0.0057599480793412,0.0085177664974619,0.0113214833785582,0.013845934727761,0.0167206370542351,0.0193087980426139,0.022029399755002,0.0244525771298889,0.0269074824917066,0.0296707915970349,0.0319632827821301,0.0344299215351549,0.0370332217357713,0.0391871529712882,0.0414534553160696,0.0437430098173232,0.0459996680222425,0.0484942357869788,0.0510371974840671,0.0680772000876799,0.0847133158285648,0.1012655573380306,0.1162262723087595,0.1302304011467358,0.1483191900831686,0.1655554024401878,0.1816654437957912,0.1969740618631499,0.2102787717756969,0.2269719499467404,0.2427197059777321,0.2573136274722886,0.2706467118199694,0.2841255014011759,0.2971818201943725,0.3097474454508946,0.3214823979304915,0.3324741682752356,0.3423161128368542,0.3523382669724133,0.3621491222933964,0.3705322765990214,0.3791295165180661,0.387405786530513,0.3961922365988909,0.4039194065757819,0.4104292211845944,0.4170168612191958,0.4232553222417506,0.424974361742322,0.4270156114124808,0.4293422223477732,0.4302317156230527,0.4320370977842722,0.4322153846153846,0.4333953947263729,0.4343012014344499,0.4356675843083276,0.4368074543099726,0.4391096498686771,0.4405978130736691,0.4417250651027883,0.441820942194829,0.4425497658079625,0.4430440204845172,0.4434709449070179,0.4457216246588537,0.4492053264604811,0.4502594454353819,0.4513859771721407,0.4561727055760469,0.4555433589462129,0.4572696139476961,0.4584688995215311,0.4546666666666666,0.4556882463859208,0.4573055028462998,0.4579493087557603,0.4629032258064516,0.0,2.4337478636033456,78.1096795290287,282.73971934269593,417.9695429535348,OR_public_implementation,56 +100000,95743,44891,417.2002130704072,9292,95.51612128301808,7302,75.5877714297651,3007,30.90565367703122,77.36211040614715,79.72290062149365,63.32787542470121,65.07516368267522,76.99740009735653,79.35650250163333,63.19599187549767,64.94547386080913,0.3647103087906203,366.398119860321,0.1318835492035432,129.68982186609423,54.44076,37.83475749220207,56861.34756587949,39516.99601245216,163.28062,86.6305717617682,169865.98498062522,89807.86246698786,249.01305,116.13346092702,255607.72066887395,117835.197740634,5344.1748,2371.975127879919,5540224.277492872,2435872.3435446136,1834.91041,787.6848385336026,1900295.3009619503,806507.1687053923,2969.71926,1220.2019118321898,3057438.726590978,1238772.2829903092,0.43065,100000,0,247458,2584.606707539977,0,0.0,0,0.0,12730,132.26032190342897,0,0.0,23661,242.7122609485811,2274505,0,81848,0,0,7261,0,0,29,0.292449578559268,0,0.0,0,0.0,0,0.0,0.09292,0.2157668640427261,0.3236117089969866,0.03007,0.3104325699745547,0.6895674300254453,25.921773134248017,4.589869743392636,0.32552725280745,0.1973431936455765,0.2462339085182142,0.2308956450287592,11.295024059269249,5.711127640661341,31.83633874675273,15525.53979920369,82.10924895544584,16.736119131757043,26.71608335689978,18.92386140242054,19.73318506436846,0.5443714050944947,0.765440666204025,0.6886832141354648,0.5925266903914591,0.1312569521690767,0.7066356228172294,0.9221698113207548,0.8540268456375839,0.7211267605633803,0.1690962099125364,0.4944484240687679,0.7000983284169124,0.6333520494104435,0.5582268970698723,0.1223367697594501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029988956769297,0.0057294096172957,0.0086184143741752,0.0114715953544611,0.0140989776715324,0.0166822829673687,0.0192931291171252,0.0215735522339295,0.0242022065214057,0.026921028917834,0.0292476823365329,0.0316165745629352,0.0338782522813551,0.0364897311445677,0.038703684590773,0.0410553849653133,0.0436160298229263,0.0459935880808856,0.0482937122542956,0.0506843322292356,0.0680688935281837,0.0846540919980332,0.1003271880702195,0.115005994825519,0.1289356271161412,0.1467023436838988,0.1630418638205775,0.1789261873582676,0.1933022738929731,0.2071764844663213,0.2243596648068762,0.2398476058533206,0.2538653203782084,0.2671553610503282,0.2796076531847905,0.2935066950430079,0.3057191057682639,0.3177606916504373,0.3290762751308336,0.3395527947463124,0.3497387415568918,0.3590734495034663,0.3679033997321926,0.3762623533508651,0.3849438038242592,0.3926975032721705,0.3994932326488629,0.406450461020494,0.4138338330542684,0.4204613124776688,0.4232479556666892,0.4243123385325283,0.426444387884958,0.4283869095130977,0.4299508977209976,0.4301351725836746,0.4308096489133031,0.4322463469000248,0.4346363152563904,0.4356291723494365,0.4368110644231313,0.438275039745628,0.4392970909014197,0.4392036615336054,0.4401087827501639,0.4417336319325517,0.440914720198151,0.4429557967094166,0.4448589497619555,0.4460258111204921,0.4469686475504456,0.448207171314741,0.4492725757867077,0.4502044279873486,0.4503387081385364,0.4498727118438598,0.4495785201373712,0.4572072072072072,0.4565156988052237,0.4523809523809524,0.0,2.6834766321970114,75.98117813871121,278.3458175712336,429.80588397624,OR_public_implementation,57 +100000,95746,45435,423.547720009191,9170,94.4060326279949,7121,73.64276314415224,2873,29.53648194180436,77.32840490063373,79.68781733242871,63.31625382636724,65.06423310724651,76.98122273458738,79.34218973993286,63.18921748445948,64.94131955218194,0.3471821660463519,345.62759249584474,0.127036341907754,122.9135550645708,54.74898,38.09005838644657,57181.480166273264,39782.40175719777,162.38352,86.49509516120649,168881.26919140224,89623.25437335813,243.98993,113.75522210247422,250037.94414388068,115109.64774523723,5183.25825,2301.701086656064,5364865.51918618,2355547.463109127,1751.41814,752.7626425072211,1808696.049965534,765946.4201325953,2836.86908,1171.7558805701028,2919516.1573329438,1186703.7388531452,0.43547,100000,0,248859,2599.1581893760576,0,0.0,0,0.0,12662,131.49374386397344,0,0.0,23182,237.4616171954964,2272771,0,81740,0,0,7580,0,0,33,0.3342176174461596,0,0.0,0,0.0,0,0.0,0.0917,0.2105770776402507,0.3133042529989094,0.02873,0.3101377239308274,0.6898622760691726,25.82317589430172,4.597310436530128,0.3343631512428029,0.1928099985957028,0.2390113748069091,0.233815475354585,11.015633583313312,5.466665383055469,30.59121870594956,15649.428895337272,80.1899281432481,15.937712973534843,26.919642727647982,18.684829096062742,18.64774334600252,0.545429012779104,0.775673707210488,0.6841663166736666,0.590990990990991,0.1210340775558166,0.6879518072289157,0.9327731092436976,0.8347826086956521,0.7473404255319149,0.1363636363636363,0.5021058414209851,0.7204724409448819,0.6362126245847176,0.5453840186190846,0.117037037037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028069677654712,0.0055173532931702,0.0082950899565446,0.0106506229801418,0.0130414437142682,0.0157777868318122,0.0185899004731603,0.0211745007555029,0.0238504160788402,0.0260507298298769,0.0288965199118446,0.0313366326467749,0.0338657095550047,0.0361744862749137,0.0386056159252035,0.0408505008114282,0.043011086612217,0.0450005704151585,0.0475339305385238,0.0499109477039089,0.0671189979123173,0.0839992469249435,0.0997430923294709,0.1152714123533616,0.1290992244140954,0.1479414407272342,0.1644820565029269,0.1805613206041061,0.1955971416669337,0.2099156005018928,0.2261661100937197,0.2421678011406062,0.2574347925439885,0.2713827843836485,0.284212148905013,0.2975224925763418,0.3098369807949978,0.3211329466749253,0.3320569922283325,0.3435062849802734,0.3534426837179131,0.362543176629003,0.371120699874345,0.3791027920611274,0.387494978269603,0.3946692357096981,0.4021431891559151,0.4094448983760596,0.4159528977501657,0.4224649192480805,0.4246660537558812,0.4268247191942637,0.4286280336800396,0.4299538635638221,0.4321797188904987,0.4333246004715745,0.4354283528811831,0.4379880873593647,0.4393216837393475,0.4411754114300119,0.4427653947865508,0.4442340654522262,0.4454620270526915,0.4465423009169339,0.4474221293551679,0.4489672252081357,0.4494579633260293,0.4504023153007028,0.4528148043108338,0.4552505726801431,0.4560472520880439,0.458105353502843,0.4581399783866251,0.4576754217053069,0.4584409373505499,0.4557388895579911,0.4532418952618454,0.4597701149425287,0.4634560906515581,0.4627702161729383,0.0,2.8533839645746304,73.28125220286525,275.60169572942715,417.465196494526,OR_public_implementation,58 +100000,95713,45362,421.0608799222677,9393,96.663985038605,7234,74.8174229206064,3046,31.28101720769384,77.31464774318667,79.6807480142917,63.30648041847581,65.05599228459458,76.94030628444423,79.3072843325136,63.16908044817103,64.92268323323027,0.3743414587424354,373.463681778091,0.1373999703047772,133.30905136430715,54.5666,37.9709440899854,57010.64641166822,39671.66851941262,164.47826,87.87840336708918,171107.82234388223,91077.04634385002,246.21054,114.97858316412598,252914.2645199712,116711.38911515758,5258.32891,2356.720686856137,5444655.375967737,2413083.673958749,1759.8771,764.4251761730065,1818314.983335597,778391.3524022126,2994.80056,1243.6127593863928,3079504.936633477,1257837.954265311,0.43487,100000,0,248030,2591.393018712192,0,0.0,0,0.0,12873,133.71224389581354,0,0.0,23404,240.2703916918287,2269948,0,81605,0,0,7440,0,0,30,0.2925412430913251,0,0.0,1,0.0104479015389758,0,0.0,0.09393,0.2159955848874376,0.3242840413073565,0.03046,0.3103656693865216,0.6896343306134783,25.814943830865307,4.624756109827651,0.3230577826928393,0.1946364390378767,0.234586674039259,0.2477191042300248,11.027294178582872,5.54972610158059,32.58225858688819,15732.987009168914,81.83035997108165,16.377964831780112,26.45052863256525,20.065548859885748,18.936317646850544,0.5377384572850429,0.7507102272727273,0.6854942233632862,0.5764508928571429,0.1166764879198585,0.6984036488027366,0.908433734939759,0.8547008547008547,0.7487437185929648,0.1404494382022472,0.4863138686131387,0.6847935548841894,0.6289954337899544,0.5272596843615495,0.1103653989560029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025325431798612,0.0055256460950411,0.0081203434905296,0.0108525556345899,0.0137748613866422,0.0164737764375076,0.019404005264178,0.0217986155071368,0.0246560219164639,0.0272716104991605,0.0299593979411885,0.0326727590101653,0.0352513989466754,0.0377640391550747,0.040194469389651,0.0427271787449601,0.0450770441554138,0.0474638884276938,0.0497244462930227,0.0519461576929488,0.0692366324538231,0.0855480075782157,0.1013963637889612,0.1164901505032551,0.1305448332595077,0.1486446452377425,0.1651132672342413,0.1807677972418934,0.1958367189838771,0.2104387584252779,0.2275649322633531,0.2427496965493324,0.2579362052243278,0.2726874081869806,0.2844772431442628,0.2976981358455351,0.3107211210225301,0.3223931469589066,0.3338190262615684,0.3448866510323263,0.3551263001485884,0.3644012109549177,0.3740545931633877,0.3823734519658531,0.390134856920097,0.3975647444217813,0.4049259105908332,0.4120288856566894,0.41812448089701,0.4247021014904844,0.4266133715041929,0.4291946216074436,0.4306181561285764,0.4319451093026966,0.4332984762473857,0.4340369799691833,0.4350737345555998,0.4371347691492708,0.4383620689655172,0.4388648648648648,0.4405237167237432,0.4414400031929117,0.4431597192863786,0.4445900158120623,0.4454339732827214,0.4461124449252038,0.4476251121595415,0.4497464195719435,0.4517426750685321,0.4534958824479251,0.4550770373120475,0.4564816822024712,0.4563445867287544,0.4564195014892616,0.4566524437548487,0.4549566067717883,0.4560735807167776,0.4631713012099342,0.4601438848920863,0.4537781350482315,0.0,2.9281383215916787,77.64834392535344,278.7414501412344,416.6477026205948,OR_public_implementation,59 +100000,95804,45154,419.8780844223623,9084,93.44077491545238,7057,72.97190096446913,2884,29.67517013903386,77.3504688262772,79.68291441892623,63.33176974345843,65.06023649558357,76.99729123326962,79.32829367052517,63.20418603103549,64.93513914711448,0.3531775930075724,354.62074840106084,0.1275837124229397,125.09734846908316,56.01794,38.97271627975478,58471.39994154732,40679.633710236296,162.9441,87.1790251355331,169412.61325205627,90339.13406259032,245.90963,115.00753637726704,252142.37401361112,116536.2362545872,5148.15168,2296.7661155769224,5324270.239238446,2348838.011685991,1739.49365,754.163326810399,1797555.4569746566,769086.6906095028,2853.00628,1173.7098388551838,2937153.981044633,1190466.7941589484,0.43229,100000,0,254627,2657.790906433969,0,0.0,0,0.0,12710,131.9569120287253,0,0.0,23272,238.4764727986305,2266705,0,81552,0,0,7579,0,0,40,0.4070811239614212,0,0.0,0,0.0,0,0.0,0.09084,0.2101367137801013,0.3174812857771906,0.02884,0.3096181931984143,0.6903818068015857,25.850261828657374,4.635132065868448,0.3262009352416041,0.1959756270369845,0.2425960039676916,0.2352274337537197,11.02711098617278,5.481984596113347,30.60068612414301,15558.15347222893,79.44683759189238,15.953864147046936,25.98498695484031,18.56344748301549,18.94453900698965,0.5533512824146237,0.7519884309472162,0.7063423110338836,0.6150602409638555,0.1273364485981308,0.7264957264957265,0.9367088607594936,0.8907103825136612,0.7640449438202247,0.1745562130177514,0.5010149474072707,0.6781376518218624,0.6486023958927553,0.5743865030674846,0.1157205240174672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025730899365844,0.0050698113016233,0.0078757738759768,0.010485354033102,0.0132534532213113,0.0159703407956651,0.0182856560093824,0.020729515562454,0.023353066879339,0.0257357833853713,0.0281474949242222,0.0307956132424217,0.0334738790621143,0.0357676186160516,0.0383346053092964,0.0409063668864045,0.043238375222558,0.045637945877545,0.0480763235019018,0.0505132529618756,0.0675075112669003,0.0839493522652418,0.0993628036638789,0.1142785092097382,0.1285152833826799,0.1470861781056458,0.1638548084366351,0.1795212765957446,0.1943050543443445,0.208394950599027,0.2251277912294861,0.2407913941294124,0.2558369457753441,0.2701603646738595,0.2833628571742933,0.2969414893617021,0.3088542306275328,0.3199522694524496,0.3310918260711527,0.3420268597882385,0.3518179712830014,0.3613178838951311,0.3703782657097515,0.3792714667818118,0.3864747816354833,0.3945034584980237,0.4019497139415838,0.4081854030806927,0.4148777288606641,0.4208937437934458,0.4231809575331349,0.4255024830200163,0.4270967559224593,0.4281169651806336,0.429834782348899,0.4303430851473556,0.4303204208512673,0.4323501679045838,0.4328828441077731,0.4334708287551561,0.4350191759082579,0.436213909714468,0.4372831880869786,0.4383193201338035,0.4394374422112998,0.4409110102396284,0.4415326068154298,0.443056927144723,0.4440181869849389,0.4458549953653327,0.4478969481508841,0.4476631488261899,0.4497283477149248,0.4520664349169563,0.4538483657624844,0.4527573307590201,0.4555104589447393,0.4561584485248607,0.4548494983277591,0.4575009792401097,0.0,2.64397903813112,72.47507370613675,271.7134023397289,416.920999878269,OR_public_implementation,60 +100000,95708,44979,418.4498683495633,9211,94.77786600911104,7154,74.06904334015965,2957,30.44677560914448,77.30949638025908,79.66965899746843,63.31695901961641,65.05964394795788,76.94670000160342,79.3037762014605,63.184479918288325,64.92878419804207,0.3627963786556591,365.8827960079378,0.1324791013280872,130.85974991581395,54.85326,38.172028733623634,57313.13996740084,39883.84328752417,163.14953,87.42013263788944,169714.68424792076,90592.41146757228,248.72524,116.7375995080542,255263.27997659548,118445.48593094132,5197.49574,2329.597350776004,5385417.45726585,2389126.538664068,1741.19885,759.9248541060545,1800540.9788105488,775376.6042496043,2912.36506,1209.8586238423386,3001646.67530405,1230238.3347855003,0.43154,100000,0,249333,2605.142725790948,0,0.0,0,0.0,12705,132.02658085008568,0,0.0,23534,241.27554645379695,2269923,0,81624,0,0,7394,0,0,48,0.4910770259539432,0,0.0,1,0.0104484473607221,0,0.0,0.09211,0.2134448718542893,0.3210292042123548,0.02957,0.3130918073281186,0.6869081926718814,25.67270542768285,4.609032433856474,0.3255521386636846,0.1996086105675146,0.2402851551579536,0.234554095610847,11.053790083222722,5.543264064116803,31.71120400872735,15525.163924159491,81.09918244079812,16.587482015872528,26.711579317794744,18.876755280877905,18.923365826252937,0.5420743639921722,0.7535014005602241,0.7028767711464148,0.5816448152562574,0.1099476439790576,0.6895573212258796,0.8902743142144638,0.8578431372549019,0.7298701298701299,0.1428571428571428,0.493879821958457,0.7000973709834469,0.6476412347117064,0.5375096674400619,0.1011070110701107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026534063864048,0.0050583894250263,0.0078220112003895,0.0103599577476233,0.0130940883444314,0.0158579905747758,0.0184681241400397,0.0209968662917104,0.0237009934180941,0.0262713512296466,0.0286083293186687,0.0311210136148017,0.033491002570694,0.0362188993244356,0.0386737482596813,0.0409141629127577,0.0432609213127309,0.0459730778005932,0.0481515740461664,0.0505213595974958,0.0676983803765546,0.0847794687153293,0.100578992636724,0.1153700548930531,0.1294687111129858,0.1479444520830468,0.1645249944291762,0.1796637957649764,0.1948569475011217,0.208071037137924,0.2253483184810835,0.2407411418175517,0.2550944875032657,0.2691983491882779,0.2823958321860096,0.2957106103619588,0.3081779983013723,0.3197777301878924,0.3306543288468534,0.3410464969541225,0.3511236280611476,0.3599953142388566,0.368699982215899,0.3772404017106338,0.385413116510054,0.3930125067971723,0.3999096702965825,0.4070197830248883,0.413017197675779,0.4190964901812589,0.4212677276171917,0.423431147495644,0.4251894878515265,0.4260034295346877,0.4278577198073414,0.4286926340146548,0.4290322580645161,0.4302350622028592,0.430662477992198,0.432078471043029,0.433007682822726,0.4345829991980753,0.4349978750531236,0.4362344501952238,0.4366741705001468,0.4384766142274485,0.441047400389433,0.4433352530876048,0.4468906361686919,0.4472473361317404,0.4483751160631383,0.4473170731707317,0.4487509657481329,0.4486119775421085,0.4507327419976861,0.45281416787967,0.4540455616653574,0.4495567750105529,0.4486961451247165,0.450910530482977,0.0,2.571335034915736,78.28528734957649,268.4761480914253,419.5280143680373,OR_public_implementation,61 +100000,95724,45169,419.0276210772638,9371,96.39170949814049,7352,76.11466298942794,2973,30.567046926580584,77.40440741590693,79.76146989826807,63.3594678928421,65.09914693517653,77.0364456765496,79.39369672090943,63.22391541319821,64.96753940249476,0.3679617393573267,367.773177358643,0.1355524796438842,131.6075326817696,56.28546,39.15740324657349,58799.73674313652,40906.5680984638,167.46023,89.42370906354557,174266.01479252853,92743.59519404283,254.33456,118.52938898380728,261874.7962893318,120848.64725264403,5326.22884,2381.4045376494773,5514589.225272659,2438219.346923944,1832.54191,795.029544323216,1893310.2879110775,809482.5406953498,2936.4505,1221.671835696121,3021650.913041661,1235668.8098662982,0.43229,100000,0,255843,2672.7153065062053,0,0.0,0,0.0,13109,136.24587355313193,0,0.0,24097,247.91065981363084,2265926,0,81415,0,0,7680,0,0,37,0.3865279344782917,0,0.0,1,0.0104467009318457,0,0.0,0.09371,0.2167757755210622,0.3172553622879095,0.02973,0.315032414910859,0.684967585089141,25.898863091840877,4.643526946929407,0.3246735582154516,0.1961371055495103,0.235582154515778,0.24360718171926,11.23029437035497,5.585701124240194,31.72600356984631,15580.849938020096,82.86784755351395,16.695683642662793,26.99860603770482,20.17156392140798,19.001993951738378,0.550734494015234,0.7538141470180305,0.702136573104315,0.5968732551647125,0.1252886836027713,0.6983758700696056,0.9278350515463918,0.8506944444444444,0.7336561743341404,0.1469740634005763,0.5055081734186212,0.6897533206831119,0.6548868028713418,0.555878084179971,0.11985559566787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025312098170441,0.0054725107676716,0.0081867429545316,0.0109175849286548,0.0135938913912132,0.0161339576547231,0.0188229299363057,0.0217034172423293,0.0245218244237371,0.0271783064722435,0.0297731908046448,0.032392154447763,0.0348209604293248,0.0373071297612426,0.0399422174070061,0.042321806998501,0.0447489151935046,0.0470870160587576,0.0493150969673034,0.0517686763051539,0.0690069226191097,0.0855208071673783,0.1015316827528325,0.1168510262449528,0.1309536359611208,0.1499518808760853,0.1666719716501681,0.1830155130375528,0.1977113183959996,0.2111754611754611,0.2277373835299186,0.2431920512598493,0.2569467110559871,0.2708946326416766,0.2836670225529151,0.2959881228048794,0.308333798492883,0.3202376130687188,0.3309425182999489,0.3415128707426882,0.350989010989011,0.3601524058858592,0.3690757733421625,0.3772351885098743,0.3853902447904657,0.392558930022907,0.3995593279751621,0.4064755068534993,0.4129913865682274,0.4184824928400797,0.4204393916943924,0.4231103029301153,0.4245460061238024,0.4257189192319944,0.4272271109721415,0.4285429049747347,0.4289348576153149,0.4301771734651833,0.4313069439439955,0.4319654040086849,0.4331565937694586,0.4343783050306308,0.4349131823276865,0.4359298467372413,0.4374954478137366,0.4391061157722548,0.4403545629838547,0.4414242568749006,0.4430064708810353,0.4446635544108178,0.4454646119774845,0.4483595942154111,0.4496579939909224,0.4515554867667544,0.4490321350243158,0.4521718204788834,0.4506754633993088,0.4503421107194692,0.4563796533105996,0.4527081649151172,0.0,2.6844469699753373,76.17348848791931,290.1372091530358,423.1685962565376,OR_public_implementation,62 +100000,95739,45416,422.6177419860245,9178,94.48605061678104,7182,74.33752180407149,2951,30.40558184230042,77.33232137485312,79.69871158895988,63.31916690730778,65.07139239294608,76.97700800079187,79.33942299676228,63.19036974577732,64.94387828222332,0.3553133740612537,359.28859219760056,0.1287971615304641,127.51411072275688,54.6271,38.0546801568014,57058.35657360114,39748.35767743699,164.5022,87.75387014009932,171161.12556011658,90997.56000988944,249.02679,116.37036320968404,255514.56564200585,118002.74689791985,5215.27006,2316.509885388167,5404745.056873375,2377041.080579054,1693.0912,735.4561555848618,1751524.2273263768,751297.8729649457,2898.55318,1195.0418875055375,2988969.05127482,1216352.5150897922,0.43437,100000,0,248305,2593.561662436416,0,0.0,0,0.0,12835,133.34168938468127,0,0.0,23571,241.5838895330012,2272794,0,81700,0,0,7426,0,0,40,0.4178025673967766,0,0.0,1,0.0104450641849194,0,0.0,0.09178,0.2112945184980546,0.3215297450424929,0.02951,0.304685076016134,0.695314923983866,25.605745422233863,4.676001797488105,0.328042328042328,0.1972988025619604,0.2354497354497354,0.239209133945976,11.323567835828566,5.692359069652848,31.442307855658356,15583.008883574345,81.03098868295912,16.50044661585969,26.640568215566816,19.415772760008917,18.474201091523703,0.539264828738513,0.7607621736062103,0.700339558573854,0.5634458672875436,0.1046717918391484,0.6951292844257366,0.91183879093199,0.8780918727915195,0.6918918918918919,0.1242424242424242,0.4922993295886936,0.7019607843137254,0.6441340782122905,0.5281899109792285,0.0999265246142542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025335441242044,0.0049194129162482,0.0076252944521159,0.0101837547768111,0.0127879059168226,0.0153828913723372,0.0179387288896141,0.0209190497095427,0.0233628137620776,0.0259009009009009,0.028663105989933,0.0311274459478882,0.0335012853470437,0.0357175961687007,0.0384420944028888,0.0410013126207972,0.0434480973336784,0.045856330663568,0.0482623877618889,0.0507530151852854,0.0686584614742204,0.0848120867163304,0.1002297018071973,0.1147844374342797,0.12928498370889,0.1477227052526919,0.165090986259218,0.1805185957890703,0.1946150313464557,0.2086215216342287,0.2258067990865612,0.2413692344321551,0.2560796474620532,0.2697217998227745,0.2826857457347276,0.2959414253749529,0.3080735358135485,0.319675360491687,0.3314146884188776,0.3415799605811981,0.3513948559980545,0.3607820182627019,0.3695098700960366,0.3781005613395384,0.3861240470313583,0.3940351180266778,0.4017870569953381,0.4088615980432123,0.4152578657152124,0.4218043323018329,0.4237850971922246,0.4253230616302187,0.4271518030052443,0.4293898388664085,0.4306295815231185,0.431048821808101,0.4320392994991865,0.4327495042961005,0.4341768455049906,0.4353857780336836,0.4373060915626182,0.4398297974349754,0.4413771186440678,0.4415002038320424,0.4433552792001951,0.4455429840329914,0.4459163059163059,0.4479836259554191,0.4487778768956289,0.4505512321660181,0.4525710042695378,0.4518748637453673,0.4538092770147706,0.4554765069189274,0.4548684463222585,0.4567440741186379,0.454559529338907,0.4584444900471988,0.4586696354021708,0.4657265961613788,0.0,2.649831400549356,73.59273435427286,285.5833735087867,415.0054542806431,OR_public_implementation,63 +100000,95719,45004,418.4331219507099,9241,95.26844200211036,7199,74.58289367837106,2888,29.76420564360263,77.41699606751023,79.77064733662705,63.36600846061516,65.10071534275242,77.06964013919678,79.42220550757602,63.24021094423336,64.97769388668998,0.3473559283134477,348.4418290510263,0.1257975163818088,123.02145606244608,55.77528,38.73944712548029,58269.81059141863,40472.05583581138,163.27244,86.77875287353832,169944.19080851242,90029.34931783483,244.59157,114.18788447366532,251606.97458184892,116190.99570722108,5209.9367,2301.1304070316346,5401160.605522415,2362258.9319065544,1713.9159,735.1083377413278,1775027.7165453045,752468.0899053966,2849.85124,1171.2299380872937,2939273.3522080258,1189956.359386695,0.43224,100000,0,253524,2648.6277541553927,0,0.0,0,0.0,12742,132.45019275170029,0,0.0,23225,238.8136106729072,2272248,0,81666,0,0,7390,0,0,34,0.344759138728988,0,0.0,0,0.0,0,0.0,0.09241,0.2137932630020359,0.3125202900119034,0.02888,0.3151187684779284,0.6848812315220716,25.670584917737973,4.680849202135191,0.3285178497013474,0.197666342547576,0.2360050006945409,0.2378108070565356,11.00964964629538,5.425526463396675,30.624456194982283,15548.742196401894,80.87490543347066,16.58140707176122,26.823827560465435,18.903531675539394,18.566139125704588,0.5418808167801084,0.7603654251581167,0.7031712473572939,0.5771028037383178,0.0988816951147733,0.7094674556213018,0.9373493975903614,0.8614357262103506,0.7470238095238095,0.1264705882352941,0.4904701397712833,0.6875,0.6494903737259343,0.5356104651162791,0.0919793966151582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027733354926213,0.0054807565672836,0.0083779617007465,0.0109160328597975,0.0132991703269887,0.0158696227529062,0.0183369348065397,0.0208920187793427,0.0234533079894536,0.025955026292636,0.028282455654954,0.0308818095980951,0.033286388354904,0.036054498831138,0.0385936677911547,0.0410664462126692,0.0435259768496469,0.0456676416288091,0.0479857819905213,0.0506620550271385,0.0674957449696666,0.0845872135607408,0.0999632796516812,0.1142406394615061,0.1279387412852939,0.1466600389203824,0.1632440918155203,0.1783395423097392,0.1925279374372342,0.2069960215757133,0.2232846621010466,0.2393270583144001,0.2548096780504771,0.2687879582295626,0.2821856698640824,0.2950529448864202,0.3076657266110064,0.3188363440159171,0.3300557974959172,0.3410795031766928,0.3504904228740631,0.3597544577608886,0.3693103162677331,0.3781276962899051,0.3864293524480622,0.3944389642416769,0.4012018027040561,0.4081624856742646,0.4154248840282997,0.4215665547950635,0.4241749942684522,0.4263424853897894,0.4281981752958789,0.4295373097514617,0.4308048034608786,0.4321074964639321,0.4324401594688606,0.433538572980804,0.4347297181530026,0.4358570302986892,0.4368334932009253,0.4375831199507731,0.4403313868920884,0.4416906345497034,0.4415964759415238,0.4420621157181144,0.4425254324961205,0.442536202034285,0.4444169085888267,0.4447471752544274,0.4472790676332935,0.4486111857304035,0.4489808917197452,0.4489353464963221,0.4495770364033837,0.4518014793605345,0.4541397353031702,0.4623197237456835,0.4668135499862297,0.4691215957038742,0.0,2.431979519136517,75.1802170253538,272.91828584794933,424.5848375948095,OR_public_implementation,64 +100000,95682,45135,420.3298426036245,9185,94.41692272318724,7182,74.31909868104763,2980,30.653623461048053,77.3508434030137,79.7414797438523,63.31502979323547,65.08273208867745,76.9888878332387,79.37968192329936,63.18271124508546,64.95377945980118,0.3619555697749916,361.79782055293686,0.1323185481500104,128.95262887626302,54.8295,38.13433525627895,57301.582324784176,39853.33444803438,164.41433,88.01605004156919,171044.55383457703,91202.38888779627,249.0829,116.53352744845073,256064.57849961327,118435.54615184094,5155.8033,2306.361121596289,5338452.916954078,2360731.785113617,1724.87476,752.3106169954045,1781466.649944608,765443.6805948437,2935.00836,1215.9325539169342,3021577.851633536,1230915.3733410784,0.43289,100000,0,249225,2604.617378399281,0,0.0,0,0.0,12846,133.4942831462553,0,0.0,23656,242.96105850630207,2269862,0,81592,0,0,7557,0,0,27,0.2717334503877427,0,0.0,0,0.0,0,0.0,0.09185,0.2121786135045854,0.3244420250408274,0.0298,0.3101200331125828,0.6898799668874173,25.795399323499776,4.633775902822332,0.3355611250348092,0.1935394040657198,0.2357282094124199,0.2351712614870509,11.119381244356576,5.514049597219082,31.687574218658742,15534.172191556614,81.08899168142989,16.21467631162154,27.269603074048227,18.936154059007915,18.668558236752222,0.5416318574213311,0.7618705035971223,0.6987551867219917,0.5701598579040853,0.1086828115770821,0.7058132706987669,0.9265822784810128,0.8762886597938144,0.736,0.1424501424501424,0.4906004745391494,0.6964824120603015,0.6422319474835886,0.5228310502283106,0.0998509687034277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030389902448413,0.0059121193375992,0.0085575937224009,0.0113220587039596,0.0136930558098842,0.0160652798435239,0.0186985483887421,0.0212227056396429,0.0239003487385074,0.0261875012801868,0.0285098964208799,0.0310285326924262,0.033552076690461,0.0358750862877219,0.0381745564878169,0.0406165360679802,0.0430057396241271,0.0457428147348535,0.0482129483232087,0.050471147431621,0.0678392747098944,0.084423131288806,0.0996546620621608,0.1145081536033666,0.1292687815839724,0.1473130680435495,0.1635226802263245,0.1794896372505165,0.1936477052843138,0.2073391935258825,0.2238908953695218,0.2395659613177102,0.2548330212914181,0.2696758372289064,0.2826601755680629,0.2957588666644479,0.3079140227008669,0.3195173610328744,0.329696060378731,0.3406647621014468,0.3510916929352864,0.3601580175132169,0.369279495148395,0.3779339339339339,0.3857504626473166,0.3936871742942527,0.4012635062297877,0.4083532006578528,0.4150289917110947,0.4210136199388493,0.4224207851194982,0.4237393478170794,0.4254867857294362,0.4274938713935508,0.4289354473386183,0.4292829910220145,0.4301687528827955,0.4313706086095992,0.4321216808455788,0.4343967809154271,0.4352921195652174,0.4360982980753937,0.4369875429462723,0.4377801301831122,0.4391687077139462,0.4395705602189301,0.4407032437548398,0.4423820082356667,0.4436654627859216,0.4445687347688866,0.446302574910657,0.4456872445687244,0.444104134762634,0.4452809686432785,0.4465469215253098,0.4478900644533625,0.4479949874686716,0.4535597381342062,0.4447521462198837,0.4549725920125294,0.0,2.90319357144041,75.24791764912305,282.45089388183845,411.6502272844684,OR_public_implementation,65 +100000,95719,45268,420.7419634555313,9367,96.48032261097588,7335,76.00371921979962,2982,30.819377553045896,77.26691653433518,79.62712718255442,63.2951211478972,65.0392250771399,76.90819651583301,79.26229666019482,63.16565120806677,64.90957567787467,0.3587200185021686,364.8305223595969,0.1294699398304288,129.649399265233,54.75888,38.08429740190667,57207.95244413335,39787.60476175751,165.41562,88.00900676180669,172181.00899507935,91322.35272545414,247.84428,115.87413574222325,254721.46595764687,117832.68997805045,5352.80311,2363.8718068538906,5552779.500412666,2431215.358785392,1820.95599,779.5222839639705,1883334.876043419,796353.257753744,2950.57616,1211.3929485318693,3052138.237967384,1240245.280089035,0.43441,100000,0,248904,2600.361474733334,0,0.0,0,0.0,12885,133.95459626615406,0,0.0,23527,241.5194475495983,2268449,0,81659,0,0,7430,0,0,34,0.3552063853571391,0,0.0,0,0.0,0,0.0,0.09367,0.2156257913031468,0.318351660083271,0.02982,0.3134207870837537,0.6865792129162462,25.77699397985419,4.669344915191101,0.3280163599182004,0.1944103612815269,0.2414451261077028,0.2361281526925698,10.90052623209808,5.294600792456948,31.9613234472572,15673.202529777458,82.81255479504411,16.68004054990852,27.22128884625904,19.42203351672497,19.489191882151584,0.5367416496250852,0.7517531556802244,0.6916043225270158,0.5767898383371824,0.1140598531902879,0.7048054919908466,0.9372093023255814,0.8440677966101695,0.7086419753086419,0.1362229102167182,0.4841596563450868,0.6716867469879518,0.6420704845814978,0.5365486058779201,0.1091160220994475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025827492606247,0.0054953411268491,0.0083208182814466,0.0110015135969768,0.0137501779793747,0.0165558530948041,0.0194097558489219,0.0220291748757158,0.0245852202447277,0.0270635440550278,0.0292968950211679,0.0318980740010677,0.0341299385064681,0.0364922905787473,0.0390384813783142,0.0416563301083271,0.0440198819509164,0.0464669938064757,0.0487391638775128,0.0512809826944916,0.0690069226191097,0.0858907263973205,0.1018709927909587,0.1169402356902356,0.1306352404967135,0.1481211043736838,0.1646177038877211,0.1798971103560663,0.1947578359765161,0.2091138425205303,0.2263823456484007,0.242216707664633,0.2578115640553698,0.2716310347848944,0.2843807172614455,0.2980060396127542,0.3111961251496135,0.3237263300270514,0.3348182830647544,0.3449478151164124,0.3551039314457762,0.3648969935467248,0.3741394224502612,0.3815874768913111,0.3890092502434275,0.396706771746918,0.4039596253797675,0.4101487202399949,0.4166319895968791,0.4228095313909674,0.4243890537957955,0.4259105271910859,0.4278718541965338,0.4293032936005472,0.4314406817739302,0.4320289317507418,0.432576,0.4336399256209324,0.4352103179405612,0.4367849332152475,0.4381143963259574,0.4380851191788786,0.4389687866197933,0.4392561607711194,0.4408054283124709,0.440973329082988,0.4427989525749199,0.4450880072079029,0.4487147040746231,0.4499753977365918,0.4509941849559182,0.4515722581352032,0.45097404698725,0.454424744200578,0.4549744775113166,0.4545454545454545,0.4590752889721962,0.4613156805957799,0.4590117911285794,0.4576740506329114,0.0,2.439957454812315,77.9054821630439,273.5587175110969,439.1885138413182,OR_public_implementation,66 +100000,95699,45036,418.4787719829884,9190,94.6822850813488,7148,74.07600915370067,2936,30.24065037252218,77.288290147924,79.65550283947948,63.294707477804174,65.042974731077,76.92752626890409,79.29281047177749,63.16273806973492,64.9132475664836,0.3607638790199132,362.692367701996,0.1319694080692528,129.7271645933904,54.9549,38.1919182696732,57424.73798054316,39908.37758981097,163.08885,86.87673040172456,169806.2466692442,90168.92590489404,245.78427,114.9535118219018,252619.6929957471,116919.43704756213,5186.52059,2303.589714197772,5376602.409638555,2364103.9762147684,1754.80243,760.8402011120212,1814082.7072383205,775456.1124049712,2900.89288,1198.4402040408877,2991063.8146689096,1218486.9946576634,0.43127,100000,0,249795,2610.215362751962,0,0.0,0,0.0,12739,132.46742390202616,0,0.0,23238,238.72767740519757,2266102,0,81561,0,0,7501,0,0,45,0.4597749192781534,0,0.0,0,0.0,0,0.0,0.0919,0.213091566767918,0.3194776931447225,0.02936,0.3131365085896512,0.6868634914103487,25.81336720976539,4.648967918321051,0.3308617795187465,0.1902630106323447,0.2392277560156687,0.23964745383324,11.095893373000669,5.559141152728055,31.273711564169638,15546.819658054445,80.42792912417032,15.798927444219972,26.691988557761867,19.17289536375264,18.76411775843585,0.5353945159485171,0.7735294117647059,0.678646934460888,0.5685931115002919,0.1146198830409356,0.695677570093458,0.9365079365079364,0.8849407783417935,0.6758104738154613,0.1257309941520467,0.484915378955114,0.7107942973523421,0.6099210822998873,0.5358231707317073,0.1118421052631579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026635878426964,0.0052513660648209,0.0079453667248447,0.0107275645584022,0.0133430965747294,0.0159964972660346,0.0185660977549397,0.0213035267697647,0.0239192877367651,0.026515888041754,0.0286551745341996,0.0311531276303093,0.0336513746375768,0.036333302437668,0.0390820010314595,0.0416180072549891,0.043859558298216,0.0462842851361027,0.0486249791978698,0.0510474205315268,0.0684198982735751,0.0845993571286475,0.0998310261227317,0.1147616892752281,0.1288912816290338,0.1470289271949515,0.1628684903576586,0.1793511267380533,0.1926963588729081,0.2067913829764385,0.2237345902046011,0.2394976649438178,0.254014073767456,0.2680568180573656,0.281209369972895,0.2947503968562326,0.3082611711530286,0.3201182363825082,0.3309882403834113,0.3402795338038206,0.349237682741323,0.359411136286261,0.3691439434444246,0.3779312502255965,0.3860772618045645,0.3938538843302516,0.4013510453619141,0.4083323742663137,0.4153425371190414,0.4219986194445919,0.4239462927370672,0.4255681582118077,0.4276225215379593,0.4298300543185426,0.4312752884759478,0.4314037336133286,0.4314811563203345,0.43288918314988,0.4338831567686945,0.4350030675953661,0.4355881739394284,0.4364966713980128,0.4378197100587948,0.4392624728850325,0.4395727118232581,0.4399326741005681,0.4411739268313777,0.442960081622242,0.4440442225392296,0.444673372924494,0.4470818207204691,0.4464780318253408,0.4465969593944448,0.4463136677261803,0.4486887115165336,0.4522582963939139,0.4500462534690101,0.4544337497440098,0.4473902236951118,0.4515011547344111,0.0,2.3964992906941958,76.3170671154309,263.8727037793222,426.0403107391782,OR_public_implementation,67 +100000,95824,45279,419.5086825847387,9213,94.61095341459342,7152,74.00025045917515,2899,29.94030722992152,77.36488025655099,79.67752152872079,63.35773544642036,65.07012073230683,77.01695695887366,79.3257477596982,63.23041635704541,64.9437867441197,0.3479232976773261,351.7737690225857,0.12731908937495,126.33398818712747,55.12474,38.36779764384955,57527.07046251461,40039.86229321418,164.22281,88.04900873772895,170739.38679245283,91245.939156922,251.10449,117.55632951971386,257015.09016530303,118966.41214791968,5148.7936,2298.509963235049,5337361.903072299,2362863.200487404,1695.75396,736.6375065640275,1756935.7885289695,756021.139342989,2851.65248,1180.0647536514134,2948374.2486224747,1207523.1184216808,0.43358,100000,0,250567,2614.866839205209,0,0.0,0,0.0,12779,132.69118383703457,0,0.0,23761,243.0080146936049,2272891,0,81738,0,0,7568,0,0,43,0.4487393554850559,0,0.0,0,0.0,0,0.0,0.09213,0.2124867383181881,0.3146640616520134,0.02899,0.3160280181293778,0.6839719818706221,25.57673099734868,4.63351342954001,0.338506711409396,0.2013422818791946,0.2298657718120805,0.2302852348993288,11.157551950867584,5.580400301875854,31.033328238193835,15603.403592306797,81.10817398909253,16.80731272427158,27.73522682779124,18.47669745013888,18.08893698689083,0.5429250559284117,0.7479166666666667,0.6964064436183395,0.5701275045537341,0.1100973236009732,0.7094907407407407,0.9236453201970444,0.8803986710963455,0.7101827676240209,0.14540059347181,0.4898598820058997,0.6789168278529981,0.6355140186915887,0.5276898734177216,0.1009946442234124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030284614605489,0.005454397988564,0.0081581297183212,0.0106041522772518,0.0131888022289787,0.0157821854763165,0.0182878346143652,0.0209996528982992,0.0238489532221131,0.0264906085265366,0.0292194482023531,0.0315363853740135,0.0341939197105798,0.0368258542610127,0.0393860679901869,0.0419634561783834,0.0445904013239553,0.047183886609474,0.0495171840930329,0.0521546432510039,0.0687040417209908,0.0844447696295676,0.0997276346113555,0.1140606951590885,0.1283817226381912,0.1465408008109478,0.1638557535436574,0.1800680344424365,0.1947152823707623,0.2087229416364084,0.2261503867795625,0.241472143235558,0.2561831696079283,0.269627817043729,0.2828782482522095,0.2960398230088495,0.3087861632416529,0.3209622688150295,0.3316411517410962,0.3423039956062062,0.3518343003768002,0.3616041693445669,0.3700247211478182,0.3781780295318731,0.3860787960565503,0.3937375904892276,0.400498540703719,0.4075545706935636,0.4142459005768358,0.4210067495277972,0.423532902634099,0.4256510704038843,0.427571382104623,0.4289240239847844,0.4302049235460293,0.432079744865731,0.431841748424663,0.4338957232975148,0.4364780958951362,0.4382202824318719,0.4391188022997666,0.4401057311065721,0.4406891137843973,0.4418220118235973,0.4423600311041991,0.4431938000843526,0.4443836720594162,0.4468302007008601,0.4486960239418555,0.4498927863413844,0.4523765144454799,0.4547833197056418,0.4572949117341641,0.4579409918392969,0.4602388581415671,0.464303118908382,0.4646910466582598,0.4648976180526535,0.463743676222597,0.460749506903353,0.0,2.5300160356139814,76.73691658838148,279.2509470562794,411.5760868650989,OR_public_implementation,68 +100000,95609,45226,420.8285830831826,9166,94.29028647930636,7112,73.49726490183978,2892,29.56834607620622,77.2563444549925,79.66686855372336,63.27473565930678,65.05588176546364,76.8931896850266,79.30571254132782,63.142437167372016,64.92795185072906,0.3631547699659023,361.15601239554,0.1322984919347618,127.9299147345796,53.99218,37.62754042069634,56471.859343785625,39355.64687497656,163.08333,86.87193448482793,169668.7759520547,89957.56183593241,246.97518,115.7470376293408,252926.81651308973,116840.38396195431,5141.99434,2294.916556138871,5317183.110376638,2339555.611126501,1723.58349,744.268593079423,1778520.7459548789,754339.5656852796,2852.60306,1188.3414150993017,2921325.2518068384,1194184.5152239634,0.43249,100000,0,245419,2566.9026974448016,0,0.0,0,0.0,12687,131.7449194113525,0,0.0,23389,239.17204447280068,2270446,0,81736,0,0,7413,0,0,32,0.3346965243857796,0,0.0,0,0.0,0,0.0,0.09166,0.2119355360817591,0.3155138555531311,0.02892,0.3135978507956189,0.686402149204381,25.78218968264748,4.611790717520046,0.3366141732283464,0.1923509561304837,0.2325646794150731,0.2384701912260967,10.951219266495723,5.463206617594333,31.180234248541023,15636.865533649803,80.49955446956359,15.925032675482036,27.17110098677888,19.033448480175807,18.369972327126856,0.5362767154105736,0.7507309941520468,0.6791979949874687,0.5772405660377359,0.1100362756952841,0.6878980891719745,0.9078947368421052,0.8483333333333334,0.7272727272727273,0.131054131054131,0.4876508820798514,0.6902834008097166,0.6226309921962095,0.5315384615384615,0.1043745203376822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027953613207069,0.00543263432087,0.0081795025319924,0.0106773135025855,0.0134092990131244,0.0159938062202662,0.0186775746694956,0.0210981241570967,0.0237199026246343,0.0262257463068822,0.0287719586274831,0.031138241460106,0.0337255628648197,0.0363019630484988,0.0389955168068094,0.0412868244326942,0.0437054237850389,0.0461850101282916,0.0488761706555671,0.0512777719828935,0.0686671056344652,0.0853134691140725,0.1014625132550106,0.1168005389984314,0.1315456214778699,0.1499719550010053,0.1663995414645537,0.1820757228819426,0.1967633666117964,0.2107110276361685,0.2268659291367449,0.2423497030904599,0.257378817428064,0.2710710644874872,0.2839743165420004,0.2970439958247274,0.3100249532825316,0.3214370285173032,0.3325107466963859,0.3431706785128046,0.3529657477025898,0.3628031965452902,0.3715249326065529,0.3793862021710123,0.3880908248378127,0.3954751915246476,0.4024384112619407,0.4099014457184492,0.4169258598925053,0.4227025593422623,0.4241385848954383,0.4264041674748538,0.42784720249929,0.4291482631448521,0.4301388367729831,0.4305914786191088,0.4303384270741659,0.4310736995899121,0.4329232368740253,0.4330374932077522,0.4346047750404261,0.4364066762959396,0.4382801369426074,0.4404823856822861,0.4413198167462716,0.4431989424983477,0.4443092257765414,0.445766561110578,0.4484491978609625,0.4497940059778657,0.4506800352782806,0.4501056967857336,0.4509614143760485,0.454679382802202,0.4581439393939394,0.4587938491110043,0.45880178653935,0.456115107913669,0.4621802002224694,0.4606157536985206,0.0,3.3558293315484464,76.12892270073758,272.11207052820214,411.69678561728455,OR_public_implementation,69 +100000,95675,45116,419.67076038672593,9320,95.73033707865169,7242,74.90985105827019,3041,31.303893389077608,77.32722884548278,79.70388745905804,63.32110870231941,65.07581529831258,76.95518259411311,79.33158383036807,63.18370760473514,64.94173113605146,0.3720462513696674,372.3036286899628,0.1374010975842736,134.08416226111797,54.65394,37.975271908948926,57124.57799843219,39691.948689782,163.28057,87.65962664450745,169915.77737130914,90876.3800831016,248.81264,117.94180562262731,255246.1562581657,119534.11632092792,5274.29244,2379.4197682699646,5460862.231512934,2435669.35777169,1777.67976,779.1097980009883,1837634.941207212,794135.3377151879,2999.91962,1250.6591495845184,3091460.7577737127,1269832.5977969212,0.43287,100000,0,248427,2596.5717272014635,0,0.0,0,0.0,12803,133.02325581395348,0,0.0,23636,242.2158348575908,2269321,0,81677,0,0,7493,0,0,35,0.3658217925267834,0,0.0,0,0.0,0,0.0,0.0932,0.2153071360916672,0.3262875536480686,0.03041,0.3148015913495868,0.6851984086504131,25.67114865939292,4.628514903110852,0.3251864125932063,0.1998066832366749,0.2431648715824358,0.2318420325876829,11.261781309911129,5.66484927012994,32.671930814126725,15603.122730727437,81.8892353335565,16.833225235191954,26.51596031947928,19.039674856301247,19.500374922584022,0.5422535211267606,0.7601935038009675,0.6912951167728237,0.5854675402025015,0.1226575809199318,0.7154882154882155,0.9205607476635514,0.8775862068965518,0.7524038461538461,0.164804469273743,0.4857142857142857,0.6928361138370952,0.6304225352112676,0.5304829770387965,0.1119030648610121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026221475287018,0.0053409816460763,0.0082885259206655,0.010928628741481,0.0134633570941926,0.016056937472636,0.0183549854179838,0.0208246096024021,0.0232139570081606,0.0257754656890354,0.0283047892523843,0.0309043290710214,0.0336755055440126,0.0364863472436888,0.0388870541611624,0.0411082154380739,0.043553934772699,0.0462011254386511,0.0484938004493634,0.0508474576271186,0.068691764509255,0.0853010131457757,0.1010185777675209,0.1159333375418218,0.1307039935866332,0.1479263647905205,0.1643405257962831,0.1792883843278416,0.1942722804017952,0.2084978540772532,0.2255527302503986,0.2409346340829606,0.2557119853773174,0.2704397011039025,0.2838346692504184,0.2968784640624307,0.3091784202709192,0.3211793047550432,0.3324056614489856,0.3429547826286396,0.3530441232716357,0.3625380829622686,0.3709126692433547,0.3783232066091885,0.3864386548275904,0.3949294172909095,0.4024560213960146,0.4096737936495772,0.415970976047437,0.4221415223124942,0.424605968694145,0.4254492136168094,0.4273344387285121,0.4294225348019413,0.4302409097710609,0.4306089966467325,0.4317137019537734,0.4330981843413901,0.4341677419354838,0.4358859155688945,0.4364377974167233,0.4373766176793156,0.4383309340333643,0.4397793303036469,0.4415106299980495,0.4428185859441151,0.4445184455898535,0.4451406649616368,0.4469875222816399,0.4478855017384976,0.4496766088129915,0.448690075008153,0.4496168952417745,0.4499960842665831,0.4495928654517255,0.4577653359298929,0.4586489898989899,0.4576306475119717,0.4652934537246049,0.4632701421800947,0.0,3.1010221322646534,78.25327895847286,273.3068629754391,421.6230827070057,OR_public_implementation,70 +100000,95765,45078,419.537409283141,9174,94.28287996658489,7158,74.0040724690649,2981,30.63749804208218,77.38146625236273,79.70338430128693,63.35451413110488,65.06727079963504,77.01785548359946,79.33955783676144,63.22171680611493,64.9377347752563,0.3636107687632659,363.82646452548784,0.1327973249899443,129.53602437873712,54.9065,38.21000589547808,57334.62120816582,39899.76076382612,163.45247,87.57193980787598,169936.27108024852,90700.7362918596,249.62376,116.95658241475182,255598.21437894847,118248.33654254951,5188.67221,2318.7263464585285,5368121.108964653,2371338.984716924,1776.39007,771.4295449777484,1831358.4712577665,782142.5914106662,2934.70758,1215.4715580655084,3019462.308776693,1231630.9916208962,0.43133,100000,0,249575,2606.119145825719,0,0.0,0,0.0,12719,132.0210933013105,0,0.0,23656,242.0299691954263,2270639,0,81706,0,0,7453,0,0,28,0.2923823944029656,0,0.0,0,0.0,0,0.0,0.09174,0.2126909790647532,0.3249400479616307,0.02981,0.314668039114771,0.6853319608852291,25.59143335004256,4.7286587199401975,0.3386420787929589,0.1943280245878737,0.2381950265437273,0.22883487007544,11.377649181593831,5.7247216100810965,31.69661962543696,15500.683029170235,80.63380498377711,16.243932772620436,27.3482087065702,18.10439668726,18.937266817326496,0.5389773679798826,0.7591660675772826,0.6889438943894389,0.5744810744810744,0.1120234604105571,0.6936781609195403,0.909307875894988,0.8509212730318257,0.7414772727272727,0.1532258064516129,0.4892949427833148,0.6944444444444444,0.6360153256704981,0.5287713841368584,0.1005251312828207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027438592228094,0.0057359438971989,0.0084093283695641,0.0109168088390608,0.0134218634020356,0.0159924262475314,0.0184381115459882,0.0209596114206412,0.0237231684018022,0.0261297484218818,0.0285521099056458,0.0308617275590712,0.0332353606149672,0.0357727427141989,0.0380542925778149,0.0404023712639167,0.0429050418080967,0.0452448342716141,0.0477872428838562,0.0501244260263845,0.0673352884083532,0.0844242138858368,0.100172005118201,0.1151209974139562,0.1289336355489958,0.1464578088972563,0.1627470324284759,0.1791489678813622,0.1943723359933339,0.208550472881683,0.225048186154691,0.2407727921768854,0.2549606196423132,0.2688868703008547,0.2809758138203595,0.2934127089707773,0.3059353080462851,0.3171920738572393,0.3285803556212009,0.3392297897236466,0.3496621034206957,0.3598457318359787,0.369215995447486,0.3781335125340501,0.385936530718986,0.3934094415303918,0.4009650332121819,0.407146862415252,0.4138880232678923,0.4201393940195469,0.4222723101009555,0.4236261537824749,0.4253520330260702,0.4273242300987798,0.4287102513118749,0.4284811492339468,0.4285168439151754,0.4292765058351628,0.4304655122009939,0.4318202231044207,0.4334446519876983,0.4343120872125408,0.4356406355645706,0.4367909604519774,0.4375896002915806,0.4376910911966262,0.4390159589790862,0.4409203584821712,0.440694241917701,0.4426196432894843,0.4444907407407407,0.4441571036043316,0.4487375669472073,0.4495752895752896,0.4495959984609465,0.4509399636143117,0.4508183943881527,0.4503626943005181,0.4519966015293118,0.4463007159904534,0.0,2.8595607163395718,76.9386796303819,271.13953194819214,413.74909333734496,OR_public_implementation,71 +100000,95751,44863,418.0530751637058,9168,94.44287788117094,7115,73.67024887468538,2873,29.660264644755667,77.31912755708531,79.66799281458583,63.32066847763053,65.05806572442377,76.97462095765317,79.32095365529574,63.1964653962936,64.9356719902244,0.3445065994321368,347.039159290091,0.1242030813369297,122.39373419936328,54.11186,37.69003477939329,56513.10169084396,39362.54950798768,162.28295,86.44761897365713,168861.12938768262,89660.56644176786,246.61564,114.86412287114948,252773.75693204248,116418.30057227788,5166.72143,2280.871517977409,5355012.61605623,2341101.6260690857,1763.77383,756.1485104079936,1827850.685632526,775511.4728911358,2849.58388,1160.6146502985598,2944020.4279850866,1183491.1315716698,0.42987,100000,0,245963,2568.7773495838164,0,0.0,0,0.0,12653,131.50776493195892,0,0.0,23353,239.2455431274869,2275345,0,81837,0,0,7383,0,0,35,0.3655314304811438,0,0.0,0,0.0,0,0.0,0.09168,0.2132737804452509,0.3133726003490401,0.02873,0.3088144009931719,0.6911855990068281,25.82996366168212,4.627883577117616,0.3380182712579058,0.1925509486999297,0.2431482782853127,0.2262825017568517,11.04147559873726,5.358148991667537,30.41369135359893,15477.436322009558,80.0600636390611,15.957371409615494,27.20208046007472,17.96811013748403,18.932501631886872,0.5434996486296556,0.7773722627737226,0.6898128898128898,0.5968944099378882,0.1052023121387283,0.7134146341463414,0.93368700265252,0.8711340206185567,0.7449856733524355,0.1536144578313253,0.4926027397260274,0.7180261832829808,0.6319253976961053,0.555908009516257,0.0937052932761087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028759784909214,0.0054722889368558,0.0084615072440241,0.0110199272786365,0.0135155749458461,0.0161213121098245,0.0186999745093041,0.0213617612220724,0.0235986994130999,0.0265146086279969,0.028995314406406,0.0313581337084535,0.0337426467563453,0.0360240641160351,0.0382373273078073,0.0404084247948574,0.0428269736433466,0.0448515149314883,0.0472266672208483,0.04955424095984,0.0666680584115319,0.083347280334728,0.0981938704872983,0.1126779817864429,0.127004375098835,0.1446939897644123,0.1613070869482213,0.1772410491035803,0.1921775063265458,0.2059369003334012,0.2223035837353549,0.2383931083742776,0.2532144022625911,0.2669349723309783,0.2805550359276825,0.2941893179149775,0.3059169020847058,0.3178421088175044,0.3281633209192479,0.3387756505001203,0.3489853595255745,0.3585208438265025,0.3672903179910365,0.3767316680483966,0.3854479928895815,0.3929842776624147,0.3998443989911031,0.4074598677998111,0.4136788345830463,0.4202192448233861,0.4220420298668829,0.4232400104970926,0.4253340505039067,0.4269480047664719,0.4290773253642136,0.4302465331278891,0.4308445337287352,0.4322251062211715,0.4335954302231551,0.4344674636230864,0.4355498333838231,0.4374725581766654,0.4391573677287963,0.4399809571308744,0.4398459588573657,0.4404695803918458,0.4418369118583251,0.4441996359804579,0.4443293445258082,0.4449188383614613,0.4458528010362215,0.4470021123327736,0.448151487826871,0.449761886173784,0.4508592392353736,0.4495479204339964,0.4458489388264669,0.4434981304528458,0.4481491946877649,0.4537617554858934,0.0,2.5143295785524,72.7482720492552,275.93471991974064,419.1406572908271,OR_public_implementation,72 +100000,95664,45087,420.6389028265596,9398,96.84938953002174,7281,75.35750125439037,2956,30.460779394547583,77.34181859432726,79.72541869271997,63.3271521787835,65.08611257049586,76.98077447694274,79.36195808474352,63.19799691888112,64.95929245108108,0.3610441173845231,363.4606079764495,0.129155259902383,126.82011941477356,55.50666,38.5724081049492,58022.51630707476,40320.7142759546,162.95313,87.04203115950357,169583.3228800803,90232.65661437332,251.71312,117.89069914091904,258300.66691754476,119486.63282511209,5246.42925,2329.7562079491017,5439326.632798126,2390549.1423684475,1783.0524,770.161758182427,1845916.9907175112,787177.6524766501,2909.65468,1185.43566852793,3001901.718514802,1204660.8784161198,0.43248,100000,0,252303,2637.3871048670344,0,0.0,0,0.0,12758,132.5681552099013,0,0.0,23899,244.94062552266263,2268856,0,81640,0,0,7549,0,0,29,0.3031443385181468,0,0.0,1,0.0104532530523498,0,0.0,0.09398,0.2173048464668886,0.3145350074483933,0.02956,0.3070905626316317,0.6929094373683683,25.869358142164344,4.545364502950572,0.327015519846175,0.2101359703337453,0.2330723801675594,0.2297761296525202,11.289052730752282,5.74621907514623,31.435985062821118,15513.071266019995,82.26046080025817,17.827011443467896,27.073782048551116,18.706962669813528,18.652704638425604,0.5519846174975965,0.7633986928104575,0.6959260814783704,0.5869695158398087,0.1249263406010607,0.7280453257790368,0.9251700680272108,0.8682926829268293,0.7416879795396419,0.1666666666666666,0.4956490210297317,0.6978879706152433,0.6359003397508494,0.5397815912636506,0.1153009427121102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025619993721582,0.0054228285879359,0.0078224080030031,0.0104202636550141,0.0127303046325293,0.01524191577747,0.017857688897043,0.0205485744617865,0.0231604983697707,0.0255504713939133,0.0277871768843499,0.030379590830663,0.0329005576016954,0.0354574119489726,0.0379931052990112,0.0402565163425734,0.0426001533646971,0.0452148092776012,0.0473644241472219,0.0495600683874734,0.0672864977800992,0.0833272253227647,0.0989346628181579,0.1142619638873689,0.1284350440424073,0.146624215948636,0.1634181795032308,0.1790564993400604,0.1934870403213744,0.2073070035280366,0.2237992677148395,0.2398412234876753,0.2545432794266387,0.2681702890628416,0.2814112366472678,0.2949991692972254,0.3074312633259285,0.318978028283101,0.3301020466077164,0.3401303655505023,0.3505235753543534,0.3610230370535035,0.3690439557838426,0.3771869866052691,0.3848744195093486,0.3932951657083631,0.4008923200320834,0.4075084801958734,0.4144393360866516,0.4202737405024753,0.4227770797022144,0.4239652981157097,0.4263527479684005,0.4281232297703604,0.4304064044927038,0.4300345508390918,0.4313525569539589,0.432205911525491,0.4341423084210345,0.435452516379869,0.4364288410721026,0.4386815027518545,0.4395218449169575,0.4405437806781425,0.4411005600194789,0.4407771101876604,0.4407437442075996,0.4422043010752688,0.4431264334862385,0.445717292746114,0.446397841960839,0.4487527114967462,0.4506366370209226,0.4486880919111939,0.4491963260619977,0.4535579152935433,0.4536847088527694,0.4472204871955028,0.4511213341000575,0.457579412947326,0.0,2.903653946520379,78.11736213043359,276.9008231127831,423.4167075357133,OR_public_implementation,73 +100000,95676,45291,420.6279526736067,9132,94.00476608553868,7071,73.28901709937706,2972,30.61373803252644,77.38307130315455,79.75750238830163,63.34642469116329,65.09657339423904,77.01895015577506,79.39111586123315,63.213604492076186,64.96563990616959,0.3641211473794925,366.3865270684852,0.1328201990871065,130.93348806945926,54.86976,38.15243513883478,57349.55474727204,39876.70381165055,161.99851,86.74371568020409,168731.53141853758,90075.65709290114,247.20392,115.3894502390549,254138.44642334548,117354.03946416348,5132.85783,2293.6930338823536,5325570.634223839,2358092.0647626906,1706.3348,735.4002024529016,1769370.8349011247,754559.7738041949,2928.15166,1211.88580291755,3020774.781554413,1234605.6979885553,0.43385,100000,0,249408,2606.79794305782,0,0.0,0,0.0,12583,130.90012124252686,0,0.0,23401,240.3737614448765,2272730,0,81832,0,0,7491,0,0,43,0.4494335047451816,0,0.0,1,0.0104519419708181,0,0.0,0.09132,0.2104874956782298,0.32544897065265,0.02972,0.316154403394391,0.6838455966056091,25.72595955405392,4.5906482645576565,0.3449299957573186,0.1885164757460048,0.2385801159666242,0.2279734125300523,11.022337570678012,5.507801434809394,31.574743719974045,15622.65359675589,79.97711706327618,15.617617466427514,27.878330455242327,17.90301107526144,18.57815806634489,0.5429217932399943,0.768192048012003,0.7006970069700696,0.5738213399503722,0.1072910491997628,0.7004144464179988,0.9175,0.8541666666666666,0.746031746031746,0.1371428571428571,0.4934968413229282,0.7041800643086816,0.6479338842975206,0.5319969159599075,0.0994764397905759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027028942226901,0.0052681701213705,0.0078498189673532,0.0106320321702749,0.013430938945656,0.0159410405448049,0.0182470590633855,0.0209454010962651,0.0238365377735528,0.026452372421559,0.0290658929431907,0.031617428093199,0.034402254401843,0.0369473857690247,0.0394911949490885,0.0421261510795084,0.0444412215638337,0.0468505122004379,0.0491779411611776,0.0517331221210163,0.0687908069992165,0.085678391959799,0.1010417868795702,0.1158638528753036,0.1294628735317067,0.1478325227320786,0.1642830638749006,0.1801763473340495,0.195342682119912,0.2084529984139911,0.2246147555096418,0.2401397255237003,0.2550554468362687,0.2692841757689069,0.282741468675375,0.2961891460494812,0.308012917211402,0.3198025604038947,0.3311933277276549,0.3424852342450828,0.3521998007552765,0.3617786630734079,0.3708891234478587,0.3791462931148407,0.3872232640833922,0.3942965873427731,0.4019344640706543,0.4094615806735665,0.4159227640691797,0.4218265638661473,0.4241024394197261,0.4258321023786187,0.4279028997186523,0.4301596516690856,0.4321068736472871,0.4328864231776853,0.4331696585148104,0.4354777375460873,0.4370011549931907,0.4384573797080555,0.4402685323125082,0.4419756524506684,0.4423141891891892,0.443698160836639,0.4458762262322877,0.4460495902500525,0.4458858307264013,0.44637708709565,0.4484581810439658,0.4500640717603716,0.451783903383424,0.4524855367473752,0.4535623409669211,0.4544965411222136,0.45701014314153,0.4609412326803631,0.458429383740587,0.4591220298026581,0.4571034482758621,0.4505747126436781,0.0,2.398327602617956,75.08976487017081,276.06943842136985,407.8691016858488,OR_public_implementation,74 +100000,95683,45238,421.4855303449933,9195,94.70856892028888,7196,74.52734550547119,2982,30.71601015854436,77.3960056150407,79.78288030216147,63.35197710932333,65.1142035809211,77.04445235410361,79.4267846571067,63.22503115574549,64.98809727293542,0.351553260937095,356.0956450547792,0.1269459535778381,126.10630798567968,55.24332,38.39239033230327,57735.77333486617,40124.567929834215,163.94898,87.79883847930758,170637.22918386757,91051.36594725038,247.01969,115.58221304483388,253773.70065737903,117394.9965208894,5253.17969,2332.4848275424297,5448341.262293197,2395871.270280436,1761.82443,760.9189709186103,1821793.2339078,775730.968544842,2945.83336,1207.0436796381307,3037841.392932914,1228702.8136776434,0.43316,100000,0,251106,2624.353333403008,0,0.0,0,0.0,12781,132.84491497967244,0,0.0,23398,240.10534786743725,2274470,0,81670,0,0,7652,0,0,37,0.3866935610296499,0,0.0,0,0.0,0,0.0,0.09195,0.2122772185797395,0.3243066884176183,0.02982,0.313053325097797,0.686946674902203,25.62938920894935,4.705637096356292,0.3390772651473041,0.1824624791550861,0.2422178988326848,0.2362423568649249,11.286041559572134,5.612764921547251,31.57470420047216,15529.550162786749,80.87620443345656,15.188961498054494,27.57059224985236,18.958842735809466,19.157807949740224,0.533212896053363,0.718964204112719,0.7065573770491803,0.5805882352941176,0.1044176706827309,0.6947976878612717,0.8865979381443299,0.8585526315789473,0.7506702412868632,0.1551246537396121,0.4820709842663739,0.6486486486486487,0.6561135371179039,0.5327807083647325,0.0911722141823444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027249612528743,0.0052625174910263,0.0079474635106879,0.0108001016002032,0.0132545317681525,0.0158941880829226,0.0182305739368047,0.0210517718404475,0.0234517164530045,0.0259166001351102,0.0283986057002255,0.0310584514923457,0.0335376514387971,0.035897118960065,0.0385674931129476,0.0410163114262678,0.043368826648989,0.0458574661103153,0.0480370235557173,0.0502136529442417,0.0673288837359905,0.0834510690402185,0.0992835639285452,0.1142595785843462,0.1289305855689664,0.1469770196385325,0.1627502360467213,0.1787573315734009,0.1934925653734404,0.2067267988717167,0.2240866793038083,0.239291740578895,0.2537600521625733,0.26773495398203,0.2809909176874189,0.2946184418833792,0.3068119708647979,0.3191216793275497,0.3303034080991942,0.3412605811027225,0.3506661582371361,0.3601201257347184,0.3697073603310671,0.3778224985326002,0.3858716108743428,0.3945064821540696,0.4009774144762333,0.4079607678723431,0.4141284807097867,0.4200532714470318,0.4223182087302868,0.4238477091729364,0.4261340402430942,0.4275249015520037,0.4287352214181482,0.4299074031418436,0.4305985921088175,0.4320965269421596,0.4341594864577254,0.4356789148844553,0.4370688680312111,0.43828620257944,0.4392395469282917,0.4407114624505929,0.4422201781564678,0.4431624043945646,0.4424987081586955,0.4445433731874841,0.446514273525543,0.4464624450094846,0.4488163341239942,0.4485753052917232,0.4507969284377621,0.4521446988045941,0.4528155339805825,0.4542102028272894,0.454473850031506,0.455817839983288,0.4620630861040068,0.4665871121718377,0.0,2.648322138401206,76.7218844019575,272.0235748449927,417.9480489550352,OR_public_implementation,75 +100000,95810,45239,419.5177956371986,9369,96.47218453188604,7261,75.08610792192881,3008,30.946665275023484,77.38566316619061,79.70582294068146,63.36611244363343,65.08377586129718,77.02500195348443,79.34423621719414,63.23513917620072,64.95552801361956,0.3606612127061765,361.5867234873207,0.1309732674327079,128.24784767762765,54.28984,37.78351055132304,56664.06429391504,39435.87365757546,163.7925,87.09686117184614,170239.05646592216,90190.2624533666,249.63418,116.85856841083188,255669.1785826114,118277.3556378786,5292.80212,2364.266078058876,5476276.72476777,2419763.3284663423,1803.28943,786.7107633336022,1865242.4172842083,804290.9842276062,2963.62858,1220.6454509739774,3051460.7034756285,1238454.64027195,0.4337,100000,0,246772,2575.639286087048,0,0.0,0,0.0,12749,132.3139547020144,0,0.0,23676,242.37553491284837,2279614,0,81987,0,0,7448,0,0,43,0.438367602546707,0,0.0,0,0.0,0,0.0,0.09369,0.2160249020059949,0.3210588109723556,0.03008,0.3008813696687266,0.6991186303312734,25.608066147027603,4.708665922598607,0.336179589588211,0.1831703622090621,0.2378460267180829,0.242804021484644,11.156346535373808,5.5194663898125205,32.19235261675936,15637.391415497315,82.06636868785868,15.392006678753985,27.75626392000007,19.846709968173077,19.071388120931548,0.5440022035532296,0.7616541353383459,0.6984842277755019,0.5842314237095859,0.1169658367110596,0.6900389538119087,0.9177377892030848,0.8462783171521036,0.709832134292566,0.1715817694369973,0.4959736456808199,0.6971307120085016,0.648381788261108,0.5453194650817236,0.1019202363367799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026333647311435,0.0053424976937035,0.0079974830256467,0.010759352203686,0.0134464380161926,0.0159861521230017,0.0184386753508852,0.0209511174609654,0.0234554652767131,0.0262797028183139,0.0288279240410334,0.0315511808599082,0.0338742664515267,0.036366069314778,0.0389465760628589,0.0412948273012725,0.0440473480537218,0.0466738531064076,0.0493022096693802,0.0516446581129876,0.069230608753703,0.0850372135808663,0.1013541841355022,0.1165265812145408,0.1308959531483705,0.1493267148967629,0.1658244610413687,0.181576625888805,0.1963053425344241,0.2103825721874732,0.2277771803419722,0.2432893699298962,0.2580907817741638,0.2719750229247631,0.2852152899824253,0.2990191199725752,0.3113243291432647,0.3227999595446525,0.3333937800344546,0.3440517044154655,0.3537264783392667,0.3622133704019531,0.3715565430114516,0.3795579383219846,0.3876731604357213,0.3944703522781804,0.4012503907471085,0.4084424666242848,0.4149281949678204,0.4216315428088523,0.4234759264505511,0.4248986234862486,0.4262021811606487,0.4277362733009356,0.429034184206598,0.4299308624486088,0.4310168951227287,0.4329767357264505,0.4347061258278146,0.4360121194632809,0.4373700328934931,0.4382727145624863,0.4386707205579061,0.4401970353891903,0.4408023483365949,0.4418956590999601,0.4426957809460205,0.4434941379973092,0.4453329508373077,0.4465038935756003,0.4465707501047632,0.447541072493629,0.450852912777599,0.4521955777016506,0.4528320123719311,0.4557008432115361,0.4584513692162417,0.4607091022185361,0.4636697766468758,0.4582516660133281,0.0,2.6014690443619672,79.7874015025301,273.2792373590131,419.7392237960304,OR_public_implementation,76 +100000,95748,45165,419.39257216860926,9199,94.37272841208171,7097,73.3696787400259,2927,30.01629276851736,77.37657405990127,79.72241924540555,63.3458979718325,65.07965168359947,77.01499438525728,79.36040630407163,63.21254201661659,64.94959786865465,0.3615796746439912,362.0129413339157,0.1333559552159116,130.05381494481583,53.97854,37.599423244281766,56375.63186698416,39269.1473913625,161.67143,86.499589410659,168025.96398880394,89515.87438970945,243.08939,113.8488823019266,249497.39942348667,115457.81654374216,5203.88389,2333.2646310429604,5383005.7860216405,2384907.382966704,1764.74121,771.4172975476605,1822545.8390775784,785110.74543579,2896.9818,1212.3639837498174,2975120.148723733,1223881.7570260805,0.43317,100000,0,245357,2562.528721226553,0,0.0,0,0.0,12594,130.74946735179847,0,0.0,23079,236.65246271462587,2278149,0,81853,0,0,7172,0,0,40,0.3968751305510297,0,0.0,0,0.0,0,0.0,0.09199,0.2123646605258905,0.3181867594303729,0.02927,0.3035879510640485,0.6964120489359514,25.89380459565284,4.681236799115485,0.3380301535860223,0.1843032267155136,0.2481330139495561,0.229533605748908,11.040970101768435,5.439669513512872,31.298508303513653,15566.993529785846,80.07934289960544,15.275833025712462,27.095631080160125,18.266512119618568,19.44136667411427,0.5323376074397633,0.7545871559633027,0.681117132138391,0.5911602209944752,0.1101646791595684,0.6843640606767795,0.921875,0.8505154639175257,0.7375690607734806,0.1476683937823834,0.4839308935537804,0.685064935064935,0.6268574573472757,0.5493291239147593,0.0996363636363636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030689759951382,0.005514500907257,0.0084518760526796,0.0111747734568653,0.0140041493775933,0.0165375098013258,0.0190984082960304,0.0218279086862416,0.0241670841043151,0.0268294929932132,0.0293538865201705,0.0320772728672462,0.034387754053026,0.0368169553665218,0.0392324753700933,0.0417575375456077,0.0443484923790589,0.0465668731003433,0.0489770033684035,0.0513867335992584,0.0683039861387998,0.0843556196990138,0.1003795026628087,0.115307001870809,0.1299393939393939,0.1475103076435141,0.1638283884376391,0.1793676638040204,0.1947663551401869,0.2090716032433824,0.225294909776461,0.2407277135033929,0.2552043092660101,0.2689432496032397,0.2817872443529113,0.2954066582385166,0.307852139817018,0.3194464774301059,0.3311112372948725,0.3413974489737448,0.3511079209984024,0.3599049647714238,0.3696187544399716,0.3779174362541678,0.3861894449986617,0.3934788513296625,0.4005962969458572,0.4072366493880306,0.4137068015301822,0.4191615974609891,0.4214217319181648,0.4232052731735569,0.4248927038626609,0.4263906406297569,0.4286225295853578,0.4299575593553942,0.4302876965183629,0.4311295220491154,0.4321405849682755,0.4333255467107509,0.4344417154732666,0.4360384048444285,0.4374194093897309,0.4394185260311021,0.4410671331729718,0.4438729756818061,0.4449059651551863,0.4474830667472255,0.4486686601167592,0.4501472783763063,0.4509758472022623,0.4539754607859034,0.4536267110144557,0.4548055362251604,0.4554644287621591,0.4594333936106088,0.46282151208106,0.4619008603031544,0.4632784138508796,0.464963221060782,0.0,2.88942575756182,75.71200843686438,270.5602620513194,411.9689279624377,OR_public_implementation,77 +100000,95740,45131,420.388552329225,9370,96.53227491121788,7259,75.13056193858367,3025,31.1573010236056,77.3313489084019,79.69883199591509,63.31030609897547,65.0635762410085,76.95175883870006,79.3154106858941,63.17179716410814,64.9266691499094,0.3795900697018481,383.4213100209922,0.1385089348673247,136.90709109910415,54.8922,38.156213215414525,57334.65636097765,39853.99333132914,163.29361,87.0554986335961,169839.72216419468,90216.6610569477,249.56561,116.35383176149632,256103.43639022356,118090.93763968303,5269.33139,2352.006346348645,5457650.313348652,2411120.276530568,1780.87103,770.3267335890727,1841980.4157092124,786560.9520355902,2980.7613,1237.7890678767558,3072238.3120952584,1256962.0047393849,0.43317,100000,0,249510,2606.120743680802,0,0.0,0,0.0,12755,132.47336536452897,0,0.0,23665,242.63630666388136,2270398,0,81683,0,0,7501,0,0,38,0.3969082932943388,0,0.0,0,0.0,0,0.0,0.0937,0.2163123023293395,0.3228388473852721,0.03025,0.3127151245191334,0.6872848754808666,25.62192125986105,4.645491599796982,0.3296597327455572,0.1916241906598705,0.2399779583964733,0.2387381181980989,11.112192438673825,5.545493130097596,32.39826311516329,15598.714896293564,82.10913969767202,16.261260649665385,27.246089705310805,19.289422680813225,19.312366661882628,0.5423612067777931,0.7577282530553558,0.6999582114500627,0.5833814195037508,0.1130884041331802,0.7020057306590258,0.9227166276346604,0.8732638888888888,0.7007481296758105,0.1378299120234604,0.4918389553862894,0.6846473029045643,0.6450192625206385,0.5480480480480481,0.1070663811563169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024721628385292,0.0050092783191538,0.0077543770616594,0.0103535866693761,0.0129605892286719,0.0157753765620067,0.0182010992036381,0.0209216128735819,0.0234430136341785,0.0258004383718786,0.0281219232031506,0.0305542713309703,0.0330342073848433,0.0355457075131402,0.0379021686398777,0.0405443133524284,0.0428065524882473,0.0451389969803567,0.0476081578345564,0.0500671798023143,0.0671524160464315,0.0838696175378014,0.0993412218865391,0.1143617300958009,0.1279447432247179,0.1462073050763193,0.1630441703988283,0.1791055905914436,0.1943693284451522,0.2082166199813258,0.2253713965372259,0.2413991074136661,0.256294376442915,0.270051250602304,0.2827937920627402,0.2962975287279826,0.3092077327075651,0.3210777687663332,0.3326972660465011,0.3437897851743953,0.3537516657975549,0.3630298411209474,0.3715516832059256,0.3799511649446095,0.3884974522758856,0.3957771899028358,0.4031450408503909,0.4097500574433863,0.4163447908132079,0.4231650616613461,0.4248444684879632,0.4261738013343831,0.4276984014712123,0.4294922980879513,0.4312125100719209,0.4322190414627389,0.4332553810910132,0.4343087390184292,0.436026791094888,0.4371425488291788,0.4383538348166204,0.4387995370555134,0.439877235686316,0.4406300210459616,0.4422270955165692,0.4441830963581584,0.4458554606326483,0.4469220202536498,0.4494804729487638,0.4499228332385671,0.4505381855458739,0.4532284319045035,0.4560082383986613,0.4553460099750623,0.4546499377454266,0.4548282876630369,0.4550061425061425,0.4551139802299778,0.4579049736037788,0.4554263565891472,0.0,2.5332689650705547,77.63930918052498,280.6041091835339,419.9391245745337,OR_public_implementation,78 +100000,95481,45310,422.2724940040427,9129,94.14438474670354,7114,73.8262062609315,2885,29.848870455902222,77.22623088476638,79.71310966309764,63.24095407219974,65.07623035882617,76.87216104937708,79.35559195119609,63.1127625421998,64.94955265365236,0.3540698353892964,357.5177119015507,0.1281915299999383,126.6777051738046,53.77746,37.44504358404431,56322.681999560125,39217.27211072812,162.64243,86.77935216843115,169689.7288465768,90236.14349287417,248.59773,116.61987152873373,255623.7576062253,118541.79217861836,5186.32156,2307.228796217601,5387158.167593552,2371801.432973681,1734.36877,747.361964525522,1797900.598024738,764179.9567720515,2848.27656,1172.8644524809636,2948707.1354510323,1198192.3111368096,0.43334,100000,0,244443,2560.1219090709146,0,0.0,0,0.0,12653,131.8168012484159,0,0.0,23454,240.9275143745876,2270119,0,81663,0,0,7472,0,0,41,0.4294048030498215,0,0.0,1,0.0104732878792639,0,0.0,0.09129,0.2106659897540037,0.3160258516814547,0.02885,0.3190609163305409,0.6809390836694591,25.98305784767632,4.6073439463175605,0.3338487489457408,0.1942648299128479,0.2424796176553275,0.2294068034860837,10.858623932792971,5.354707210706732,30.907361404327503,15642.962292108015,80.39047158706445,15.970062833004512,27.103760784915423,18.170889151520885,19.14575881762365,0.5361259488332865,0.7409551374819102,0.6981052631578948,0.5735294117647058,0.1136231884057971,0.693069306930693,0.8952618453865336,0.8576158940397351,0.7381615598885793,0.1359773371104816,0.4861960348341671,0.6778797145769623,0.6437041219649915,0.5271013354281225,0.107871720116618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025839793281653,0.0051629525190948,0.0083456860316364,0.0110726995424504,0.0137237335070858,0.016072975589869,0.0188165185359034,0.0216009645842274,0.024236037934668,0.0269464452208481,0.0291614916395512,0.0317811205132686,0.0342068681460124,0.0364292713114331,0.0390870391800297,0.0414242229722734,0.0439310795531166,0.0462880189601047,0.0487576183778715,0.0510823143671619,0.0676073144436187,0.0842452028494392,0.1001756175533425,0.1149731774922799,0.1293499741088695,0.1473618383397282,0.1640742118972941,0.1799878364969111,0.1951930080116533,0.2087713640761044,0.2252070354254618,0.2403349676747516,0.2552200887551383,0.2688512728309251,0.2814596574858757,0.2956891857350833,0.3080529478242383,0.3211172629988385,0.3327985618059348,0.3427597134196748,0.3526257761271978,0.3630837118144797,0.3727537264683176,0.3813409394519262,0.3898696161734544,0.3978216153255186,0.4042534438036717,0.4110383871504873,0.4165939092247749,0.4229252161440694,0.4250776134376313,0.4273375320091356,0.4295473227699198,0.4314816698391479,0.4333572839949703,0.4333451720996309,0.4336789303001741,0.4347285536676336,0.4368900174465806,0.4381229235880399,0.4383927556549085,0.4392672879254489,0.4401993003286335,0.4421927361652024,0.4431984042035613,0.4447671348611258,0.4464538494872165,0.4483991445079324,0.4511519914270405,0.4527158098933074,0.45262228008183,0.4535664032903994,0.4544522741832159,0.4555564136226736,0.4538308551946207,0.4569757727652464,0.4630149812734082,0.4621338912133891,0.4607759841404701,0.4624459300039323,0.0,2.689897081756872,76.2470014855657,269.9110195937538,415.9006481592692,OR_public_implementation,79 +100000,95683,45177,421.1824462025647,9199,94.70856892028888,7116,73.513581304934,2864,29.367808283603143,77.36399481233721,79.74876294065123,63.33329461681414,65.09743902880297,77.01052352813856,79.39883411906536,63.20378421130045,64.97336355841001,0.3534712841986476,349.9288215858769,0.1295104055136917,124.07547039295252,55.07348,38.29323322814851,57558.27053917624,40020.93708197748,163.03183,87.37947930427538,169531.39011109603,90475.2956486798,250.40897,116.75812854533145,257244.60980529452,118525.36564574017,5118.13531,2289.519805848293,5291687.353030319,2336377.5011255834,1722.11025,742.1790802471837,1781827.3779041208,758418.8301766246,2822.642,1170.31437800797,2897922.0133148,1178877.7930382297,0.43299,100000,0,250334,2616.285024508011,0,0.0,0,0.0,12668,131.49671310473124,0,0.0,23781,243.97228347773373,2272568,0,81769,0,0,7535,0,0,38,0.3971447383547756,0,0.0,0,0.0,0,0.0,0.09199,0.2124529434859927,0.3113381889335797,0.02864,0.312809405940594,0.687190594059406,25.543415379741344,4.605131122743743,0.3464024732996065,0.1912591343451377,0.2297639123102866,0.232574480044969,11.026849327388634,5.40899572603239,30.466145567933385,15581.008678462047,80.46678956285996,15.836729763698065,28.061372434189416,18.607058373939736,17.961628991032743,0.5518549747048904,0.7641440117560617,0.7054766734279919,0.5812688821752265,0.1137614678899082,0.7070938215102975,0.8959390862944162,0.8803680981595092,0.7049180327868853,0.1517857142857142,0.5013040238450075,0.7104446742502585,0.6425813568670712,0.5461598138091543,0.1039260969976905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029280351769485,0.0056385449308872,0.0081621050921789,0.0109762790414049,0.0135025132786585,0.015934144303849,0.0184626055734628,0.0210180154418072,0.0234011434649647,0.0256811968174976,0.0282013680227251,0.030728781529866,0.0332136722245651,0.0355280783101494,0.0381451704457494,0.0404594991417995,0.0427215845522728,0.0452158572021585,0.0476423136097135,0.0499609273248241,0.0671770394894879,0.0835217518737177,0.0992424878294443,0.1144497849202259,0.1287884378195465,0.1465052342180395,0.1632605444846273,0.1796563281374687,0.1948021440621863,0.2081167125813332,0.2250756099923583,0.2405279671102456,0.2550520980618216,0.2688319075852714,0.2819037138927097,0.2957002348145851,0.3083687658330264,0.31982671317655,0.3309831170453126,0.3419982357052024,0.3516347433597592,0.3609407910133396,0.3698727518305253,0.3783790269362289,0.386262754016223,0.3942892383595436,0.4019874437663688,0.4086254330548196,0.4155620343375445,0.4223131766569844,0.4244642135058633,0.4273766877927804,0.4297685048034195,0.4314242270653827,0.4330277413977854,0.4333139106967615,0.4335959170087651,0.4352475442688656,0.4359421777435634,0.437063312909814,0.4383796514366462,0.4388686675815979,0.440773790688353,0.4431543518037453,0.4442556909187982,0.4447553924545238,0.4441521651153379,0.445434865656437,0.4484798802437894,0.4501289075088623,0.4514251397422276,0.452436069986541,0.4541184041184041,0.4540764480575314,0.4524917587744813,0.453787693062025,0.4524339802736239,0.4503913687328115,0.4496837262794709,0.4520547945205479,0.0,3.305203089170904,76.94524584181934,272.90553789358177,406.7085466466505,OR_public_implementation,80 +100000,95658,45266,421.0102657383596,9314,95.93552029103682,7305,75.65493738108678,2947,30.31633527776036,77.31725194233033,79.72585647630723,63.30264576078415,65.0850018937119,76.96436235669582,79.37483800907363,63.172895101755216,64.96021630057479,0.3528895856345144,351.018467233601,0.1297506590289359,124.78559313711912,54.92146,38.18256457337223,57414.39294152084,39915.704461071975,164.34025,87.03079239000108,171111.63729118317,90293.03601371666,247.92615,115.47609124694291,255730.5295950156,117974.34919254374,5285.97148,2348.006384348796,5474085.303895126,2402763.41168412,1737.53835,750.1058649013619,1797623.2097681323,765370.3034783934,2912.33176,1204.2453464655064,2997962.261389533,1216303.72842008,0.43454,100000,0,249643,2609.7451337054927,0,0.0,0,0.0,12798,133.05735014321854,0,0.0,23451,241.64209998118292,2272922,0,81713,0,0,7736,0,0,48,0.5017876183905162,0,0.0,0,0.0,0,0.0,0.09314,0.2143416026142587,0.3164054112089328,0.02947,0.3083248730964467,0.6916751269035533,25.82620813647649,4.5811632322855695,0.3341546885694729,0.1969883641341547,0.2324435318275154,0.2364134154688569,10.826092034679666,5.312117149913707,31.350740680046545,15677.533692131332,82.16276921972683,16.545927190000494,27.555330134862928,19.286430007888637,18.77508188697477,0.5349760438056126,0.749131341209173,0.6792298238426874,0.5819339895773017,0.0983510011778563,0.6974839087185488,0.9187817258883249,0.8686006825938567,0.7061855670103093,0.1378299120234604,0.4853466761972838,0.6851674641148325,0.6194070080862534,0.5459297983569829,0.0884303610906411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002694844337281,0.0053642954925721,0.0083623410495549,0.010710402503836,0.0132878872666225,0.0158602424365895,0.0185869055148634,0.0212998528931023,0.0240326574041865,0.0265862079563965,0.029075613009131,0.0317515773032738,0.0339794332300534,0.0366830596022393,0.0394836044410018,0.0417899637868598,0.0442845739993987,0.0466611278429743,0.0490583706170013,0.0511572143452877,0.06873347752944,0.0853127225503749,0.1017155576087184,0.1169698946681679,0.1304944185359471,0.1488690608495009,0.1656635777898077,0.1812236376805419,0.196840124855689,0.2109854500193141,0.2269999461293972,0.2423097328843509,0.2575686650192142,0.2714909831488355,0.2847352299521805,0.2979409905864351,0.3103683111721427,0.322577740762833,0.3335452089623391,0.3444324770263767,0.3544819759834177,0.363351165322439,0.3722134654357126,0.3806997539458681,0.3887171372930866,0.396445245917838,0.4034432170129528,0.4101149366701496,0.4168968782018858,0.4230321932653169,0.4250552948157738,0.4268933283699384,0.4286803212738026,0.4300601492861801,0.4316871321442442,0.433398070224113,0.4332324840764331,0.4351166479413125,0.4365894722374931,0.4378377407945997,0.4389106967615309,0.4398964246588985,0.4413676299354292,0.4429320792258298,0.4444254779555209,0.4445149352365847,0.4468994598966005,0.4467753231043483,0.4470525378450579,0.4486760972071091,0.4502064103158774,0.4504714425056898,0.4521598968407479,0.4525091703738391,0.4530408006158583,0.4565348809092008,0.4543744120413923,0.4538094249532904,0.4672199170124481,0.4681344148319815,0.0,2.818702563933281,75.61488792526549,276.62099613116686,433.9902122773425,OR_public_implementation,81 +100000,95857,45236,421.57588908478255,9149,94.18195854241212,7063,73.11933400794935,2913,30.05518637136568,77.4717338221379,79.7573753697878,63.40399372213196,65.09028147457683,77.11968644207887,79.39996289695445,63.277412416744326,64.96378421434298,0.3520473800590338,357.4124728333459,0.1265813053876314,126.49726023384744,55.59158,38.66637550118004,57994.28315094359,40337.56063843021,161.41813,86.64262166200487,167810.25903168262,89802.90606007373,245.55471,115.15335164664354,252016.8271487737,117009.0384295907,5142.70872,2279.6359236699677,5329776.458683248,2342959.850266508,1714.87797,734.80514983682,1776118.1238720175,753685.9382588846,2868.24544,1169.8275864934608,2961935.1534055937,1195618.0094649843,0.4338,100000,0,252689,2636.1037795883453,0,0.0,0,0.0,12689,131.77963007396434,0,0.0,23348,239.4295669591162,2272785,0,81656,0,0,7622,0,0,29,0.3025339829120461,0,0.0,0,0.0,0,0.0,0.09149,0.210903642231443,0.3183954530549787,0.02913,0.3081689559020965,0.6918310440979035,25.81218311848135,4.645316953775114,0.3376752088347727,0.1880220869318986,0.2389919297748832,0.2353107744584454,11.215990356232457,5.654969226236719,30.747567167264588,15589.795948538193,79.29649949164681,15.52749454597253,26.97143200438367,18.37422767245043,18.423345268840183,0.5450941526263627,0.7846385542168675,0.6867924528301886,0.5884476534296029,0.1137440758293838,0.715928694652099,0.9189814814814816,0.8588039867109635,0.7324675324675325,0.153125,0.4892937640871525,0.7198660714285714,0.6287156477846326,0.5450274079874706,0.10453216374269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027128251847352,0.0055110372704156,0.0081526698979902,0.0106272838002436,0.0133424111860824,0.0156989225431644,0.0181118083285795,0.0206142453513397,0.0231807691522169,0.0255154217458889,0.0278577207877999,0.0301725022049925,0.0326673172736144,0.0353016225782222,0.0378505973426241,0.0402717829041118,0.0424812263389809,0.0448327322472329,0.0472947015398033,0.049408410252141,0.0665860321564865,0.0827514112481706,0.0987916959223667,0.1139362864587711,0.1286123816951582,0.1472354371498044,0.1643568345934024,0.1794304437092433,0.1947196481188879,0.2087410376499083,0.225700572510869,0.2411776785810788,0.2557417281108493,0.2705187417428237,0.2842831407355332,0.2971607367932247,0.3087267015006851,0.3207322551662174,0.33138467813201,0.3419198389458272,0.351793450008664,0.3607606018513114,0.3691015020267316,0.3782544679730425,0.3862016200527063,0.3938774001133814,0.4014664297690248,0.4086207554611265,0.4156316777828142,0.4222817410578813,0.4243204269484238,0.4266413516042045,0.428752642706131,0.4310763537540836,0.4334989290813898,0.4345406035328754,0.4348260442104595,0.4359598618193782,0.4369038445072352,0.4382436615434164,0.4397345764878378,0.442012174568239,0.443198080646519,0.4439475990382671,0.4456120008696282,0.4461639344262295,0.4457188736594598,0.44607734456656,0.4481143702243036,0.4487409713077138,0.4521966191763251,0.4514414559510388,0.4550863723608445,0.4573625349487418,0.4592821304515631,0.4603019970774476,0.4599406528189911,0.4634448574969021,0.4587513935340022,0.4564541213063763,0.0,2.181637585393028,77.54758710168544,261.3923866800834,408.89372675652936,OR_public_implementation,82 +100000,95747,45123,420.2742644678162,9321,96.1074498417705,7272,75.43839493665598,3025,31.238576665587438,77.34438518034166,79.69652243274476,63.33412346583962,65.07213861420361,76.97468549411043,79.3212118385681,63.20057617364461,64.93853954811512,0.3696996862312289,375.3105941766535,0.1335472921950042,133.59906608849315,55.15158,38.349303205520194,57600.6767836068,40052.07767086195,164.53201,87.62843535247637,171348.55400169195,91029.62439776122,245.052,114.13604807416796,252378.10061934052,116496.4077229674,5288.85238,2346.2644643246526,5492212.017086698,2418970.318735641,1758.44766,753.5491497501399,1825383.4898221355,775887.0607376115,2986.04174,1231.0357367865852,3086618.713902263,1260584.6674374242,0.43261,100000,0,250689,2618.2125810730363,0,0.0,0,0.0,12848,133.66476234242327,0,0.0,23247,239.27642641544904,2270392,0,81692,0,0,7627,0,0,29,0.302881552424619,0,0.0,0,0.0,0,0.0,0.09321,0.2154596518804465,0.3245359939920609,0.03025,0.3029688924916405,0.6970311075083595,25.827782384959622,4.638610704683053,0.3319581958195819,0.194031903190319,0.2418866886688669,0.2321232123212321,10.9391582908442,5.358308432872165,32.2165377997982,15529.468638326887,81.95444316602087,16.531307783775567,27.26539655332453,18.67933820548219,19.478400623438585,0.5335533553355336,0.77462792345854,0.6930405965202983,0.5515402843601895,0.1040363843092666,0.6843033509700176,0.9207459207459208,0.833904109589041,0.7117117117117117,0.1267605633802817,0.4875246813857476,0.7107942973523421,0.6480874316939891,0.5121771217712177,0.0982905982905982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024208905635914,0.0052315148074173,0.0077719944398786,0.0104303139250276,0.0132480631189377,0.0158398908717029,0.0185687205723487,0.0211847543242002,0.0238272828519173,0.0262764760053207,0.0284347077629313,0.0309962948137656,0.0333131124111907,0.0355708430310395,0.0382199114907312,0.0406845167357314,0.0431623400819774,0.0454422897438556,0.0477853297582673,0.0499864591796346,0.0671803063046133,0.0843676092006948,0.0994304773292218,0.1143593248856406,0.1289278333122443,0.1474522326668288,0.1647823689122688,0.1809206676808834,0.1960294321810357,0.2094267215504673,0.2261130726834309,0.2414546555901696,0.2563745691389302,0.2697925093469182,0.2823293879526554,0.2956035437430786,0.3080203635064529,0.3188563970431045,0.3296022159658523,0.3400286450873675,0.3500602074842534,0.3591151810389245,0.3679526980591037,0.3762912602700235,0.3844281646262808,0.3922070218366514,0.3998869772698731,0.4074992015330565,0.4132830777229009,0.4194471303495503,0.4214544373581234,0.4236417135200099,0.4255722759382211,0.4268845315904139,0.428360060378712,0.4290827188300268,0.429835065702288,0.4312849531751547,0.4322931922738942,0.4334114254820688,0.4344634478583321,0.4362101313320825,0.4374073289557297,0.4383254423124844,0.4394977447275387,0.4402063219150905,0.4420226930647215,0.4444978221880604,0.4475256735964504,0.448368241597662,0.4520057639566773,0.4521143602565496,0.4554589371980676,0.4541940471588713,0.4532222541415302,0.4528210704361484,0.4565456545654565,0.4629512349588347,0.4584288990825688,0.452572347266881,0.0,1.9787359050778024,76.20936023898699,280.3070686604526,427.1826884132408,OR_public_implementation,83 +100000,95665,45185,420.8749281346365,9222,95.09224899388492,7156,74.16505514033345,2962,30.54408613390477,77.28108161739658,79.66767733247069,63.29287913429015,65.05538923274719,76.92891741832243,79.31386608961404,63.16458762039735,64.9293828434051,0.3521641990741528,353.81124285665067,0.1282915138928047,126.00638934209483,53.87624,37.54233491150403,56317.60832070246,39243.54247792194,163.61181,87.69781334579935,170316.667537762,90963.8405947726,249.00799,116.182171668322,255931.9082213976,118092.5057664812,5227.72683,2317.651407159005,5419297.297862332,2377476.9635688905,1789.79906,771.9821802966593,1853580.7662154397,789710.2185177731,2933.84656,1213.2252351308443,3026629.6764752,1232828.9724308257,0.4319,100000,0,244892,2559.8912873046565,0,0.0,0,0.0,12729,132.38906601160298,0,0.0,23487,241.23765222390637,2272029,0,81669,0,0,7334,0,0,37,0.3763131761877384,0,0.0,0,0.0,0,0.0,0.09222,0.2135216485297522,0.3211884623725873,0.02962,0.3098043233275279,0.6901956766724721,26.00219091189267,4.577243972138094,0.3228060368921185,0.1899105645612074,0.2437115707098938,0.2435718278367803,10.742583258320872,5.241058313402887,31.64120090048773,15555.459321330763,80.67280056792814,15.803779488358536,26.03611954704204,19.42563387467642,19.40726765785114,0.5377305757406372,0.7365710080941869,0.703030303030303,0.5742971887550201,0.1272935779816513,0.6929611650485437,0.9244791666666666,0.8656716417910447,0.7292817679558011,0.1612021857923497,0.4912854030501089,0.6625641025641026,0.6538895152198422,0.5336712527154236,0.1182873730043541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002664235425214,0.0053427143421973,0.0078244720257365,0.0105048206357753,0.0132721762300917,0.0157223738340597,0.0182617207414809,0.0207457018009556,0.0235113723485816,0.0258242151915577,0.0284422388778952,0.0307818676523435,0.0332685445140324,0.0358864985163204,0.0385171118358584,0.0408097852497492,0.0432886531728438,0.0457611989870054,0.0479960055339997,0.0504679910779429,0.0675010708651545,0.0841125409672994,0.1004209134135972,0.1151057942194585,0.1295526482380249,0.1475501761587862,0.1648371480742282,0.1807530489428556,0.1950901353634283,0.2090715804394047,0.225151276547551,0.2405739614830228,0.2556551476273974,0.2689140053445481,0.2815709437122581,0.2953463863775029,0.307398173097349,0.3191033775483755,0.3299411002205899,0.3403830485523794,0.3507148572024907,0.3604184748187938,0.3687953366337809,0.3774531024531024,0.3854805103023066,0.3935169737638873,0.400924089094242,0.4079549229550507,0.4141591538851812,0.4198970521902943,0.4227518959913326,0.425356401384083,0.4274542641820065,0.4293388068826971,0.4313085162160138,0.4319125615573428,0.4327122483489136,0.4339278912240605,0.4347136229584533,0.4357856035756767,0.4359586769026632,0.4371614301191766,0.4384037138780638,0.439215597164152,0.4394006062383885,0.4405659129974877,0.4414738000753121,0.4450521333077464,0.4471640302123414,0.4501228303330514,0.4504092107088361,0.4530920874966244,0.4530156079388528,0.4553867509832652,0.4538527478807505,0.4527807550315589,0.4521400778210117,0.4574599260172626,0.4589117157134925,0.4563758389261745,0.0,2.4358941448015634,73.36408718395425,276.7068180623753,424.4412879826704,OR_public_implementation,84 +100000,95728,45074,419.0832358348655,9047,93.15978606050476,7021,72.76867792077553,2907,29.99122513789069,77.3612597271838,79.72561927778835,63.34108899169471,65.0886620168255,77.01054327377109,79.3718590511561,63.21310945272253,64.96220031937331,0.3507164534127156,353.7602266322608,0.127979538972184,126.46169745218572,55.52426,38.66498384261143,58002.110145412,40390.46448542896,161.92184,86.8480544483554,168577.47994317234,90156.53788227188,246.79374,115.01636311814032,254254.65903392943,117430.03404853694,5106.21893,2269.0040386452715,5297419.678672906,2333701.6291552437,1743.49802,748.386673567434,1807904.1973090423,768433.0559509759,2867.09424,1177.7379283855876,2961157.3625271604,1201651.2284082512,0.43231,100000,0,252383,2636.459552064182,0,0.0,0,0.0,12700,132.072121009527,0,0.0,23377,240.62970081898715,2270345,0,81605,0,0,7555,0,0,23,0.2402640815644325,0,0.0,0,0.0,0,0.0,0.09047,0.2092711248872337,0.3213219851884603,0.02907,0.3136542851213945,0.6863457148786055,25.776860919604943,4.654732922061411,0.3283008118501638,0.1927075915111807,0.2395670132459763,0.2394245833926791,11.160320548697833,5.620146194234388,30.796480671703897,15528.935682379306,79.14775636835006,15.798032519970466,26.236988086423857,18.54696179950376,18.565773962451992,0.553055120353226,0.7679231337767923,0.7019522776572669,0.5996430696014278,0.1296076099881093,0.7110311750599521,0.911917098445596,0.8576104746317512,0.7264705882352941,0.1903323262839879,0.5038296282458434,0.7104446742502585,0.6458087367178277,0.5674869500372856,0.1147298297557364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024513528023419,0.0050693486900802,0.0077936311420511,0.0104743424327701,0.0130377300925455,0.0154884829229547,0.0184365631309526,0.0211160463572777,0.0237815289294222,0.0264230139230139,0.0286979791455199,0.0310686591691059,0.0338266602215342,0.0358702818526454,0.0387492905422836,0.0412910429244892,0.0436799701758382,0.0461578373890935,0.0482800931702853,0.0508043677586063,0.0673982500469856,0.0837223420066567,0.0995153778374522,0.1141451207587243,0.1288469645868465,0.1466353776875753,0.1633988314263597,0.1792683705390393,0.1936937899211723,0.2081488707135889,0.2249127869417287,0.2404158193068236,0.254688774123403,0.2685003990335735,0.2813878044757244,0.294417198968239,0.3070496374790853,0.318913085026251,0.3298929316758914,0.3410413230712846,0.3513422818791946,0.3594568675149701,0.3688641045677346,0.3775036858570966,0.3858782101876024,0.3933957614588467,0.4001426979934659,0.4072239132926627,0.4138754118776431,0.4203535139712108,0.421616515989745,0.4232799856636753,0.4256926596435733,0.4268142324596394,0.4286289961493686,0.4292619846670156,0.4303803509218459,0.4317941778335203,0.4327058500223283,0.432899421050739,0.4354485363550519,0.4368580905566878,0.4381141985767536,0.4394936136543461,0.4402512660693416,0.4405568494600889,0.444022495361781,0.4457904688651732,0.4471294773718453,0.4489457282771459,0.449759437453738,0.4470467883486781,0.449447531455579,0.4554508956145769,0.4577900447320833,0.4557022809123649,0.4605018587360595,0.4616334087636289,0.4691956645750142,0.4630081300813008,0.0,2.1958511029577017,74.24302606874043,271.6194154461015,407.03097416503584,OR_public_implementation,85 +100000,95640,45442,423.6407360936847,9171,94.28063571727311,7139,73.93350062735257,2954,30.457967377666247,77.2430810454354,79.64996875711007,63.27207635196621,65.0511828795755,76.89040056438907,79.29344238402668,63.143943915271,64.92450949361044,0.3526804810463346,356.52637308339763,0.1281324366952176,126.67338596506283,54.35628,37.84537841577232,56834.25345043915,39570.65915492714,164.36721,88.5449808977196,171102.02843998326,91824.60046872092,251.38519,118.11392708461838,258213.8644918444,119980.24000353708,5284.35703,2355.971277432236,5476140.035549979,2414425.4949764414,1780.57611,763.2911372535849,1843501.9552488497,779841.3814863883,2931.62172,1211.552420553517,3024434.295273944,1232690.2724330672,0.43473,100000,0,247074,2583.375156838143,0,0.0,0,0.0,12813,133.1974069427018,0,0.0,23766,243.90422417398577,2267916,0,81538,0,0,7373,0,0,46,0.4705144291091593,0,0.0,1,0.0104558762024257,0,0.0,0.09171,0.2109585259816437,0.3221022789226911,0.02954,0.3098722176422094,0.6901277823577906,25.729307982784995,4.690289805028201,0.3158705701078582,0.189802493346407,0.2521361535229023,0.2421907830228323,11.046335911544151,5.376814922365511,31.706239089215035,15660.703813254151,80.81431132551951,15.798207074513206,25.748565788168555,19.28866517513319,19.97887328770457,0.5430732595601625,0.7822878228782287,0.7059866962305986,0.5824175824175825,0.1211111111111111,0.6921282798833819,0.9326923076923076,0.8670212765957447,0.7222222222222222,0.103641456582633,0.4959439528023598,0.7156549520766773,0.6522767593140154,0.543301258327165,0.1254331254331254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026045889411383,0.0055788854401233,0.0081621879536663,0.0109734908909864,0.0136604518222412,0.0163959468404704,0.0189650777466224,0.0215344714915863,0.0242351112565445,0.0268294181497941,0.0292377270256689,0.0318353598422609,0.0342972911824595,0.036613508056208,0.0391816849363142,0.0416408156512387,0.0437584170724127,0.0460339208237321,0.0481604377086865,0.0504899916597164,0.0674434400961387,0.0844061298668649,0.0998771614854011,0.1151858362367504,0.129481440817533,0.1475729183208935,0.1641399385936022,0.1797053242073391,0.1949324830405101,0.2094149741695039,0.2262157816934082,0.241584909751206,0.2566523979130586,0.2704653225718134,0.2832249531577207,0.2969854319919227,0.3096542624563914,0.3221504503590472,0.3330300893811549,0.3438733363928407,0.3542981072555205,0.3636438224503909,0.3726255128417957,0.3811005273209931,0.3897918900477629,0.3971554016449199,0.4047663915375821,0.4110203612101691,0.4172219908371511,0.4227074931012524,0.4248274928967663,0.4273387264053101,0.4288265812377739,0.4313619967419129,0.4330358479829894,0.433872561126204,0.4331026989022227,0.4341299985072894,0.4354151207137556,0.4369052992687551,0.4388256964356924,0.4397457491177414,0.4412639089441943,0.4420350670265611,0.4441434185155354,0.445760416390047,0.4460431654676259,0.4482083854617778,0.4516267891093016,0.4528286495085043,0.4533139589387832,0.454505806029548,0.4582633415169919,0.457498434564809,0.4571846078908914,0.4575690877965273,0.4633093525179856,0.4653757103767628,0.4631101021566401,0.4630872483221476,0.0,2.7808804855511786,75.98696876560648,272.18544596520707,419.48036623767103,OR_public_implementation,86 +100000,95802,45029,417.3608066637439,9278,95.35291538798772,7189,74.28863698043881,2952,30.333395962506,77.44904619750217,79.7749031124223,63.38601454967061,65.10676853200707,77.09016033101794,79.41627115471228,63.25465420746417,64.97926954387214,0.3588858664842291,358.631957710017,0.1313603422064417,127.49898813493132,55.28952,38.43853361705381,57712.28158076032,40122.89265052276,164.14736,87.5726987938603,170563.49554289054,90633.58893403882,246.0387,114.87869913119196,252560.56240997056,116666.9654324956,5264.38895,2334.1752604170133,5444646.051230663,2386059.376835546,1803.64229,774.3793839716313,1865996.4510135488,791631.713295789,2923.1986,1207.9497487157237,3006227.6152898683,1220579.5021177684,0.43184,100000,0,251316,2623.285526398196,0,0.0,0,0.0,12826,133.0869919208367,0,0.0,23302,239.02423748982275,2275611,0,81765,0,0,7614,0,0,35,0.3444604496774597,0,0.0,0,0.0,0,0.0,0.09278,0.2148480918858836,0.3181720198318603,0.02952,0.3053364744443306,0.6946635255556693,26.090103239785783,4.640598846153709,0.329948532480178,0.1900125191264431,0.2478787035749061,0.2321602448184726,11.02722617410501,5.42558270219853,31.29263694873122,15550.67436970038,80.51727758955464,15.694298825735297,26.738699456082,18.582347149196178,19.501932158541155,0.5319237724301016,0.7576866764275256,0.6795952782462057,0.585380467345716,0.1122334455667789,0.6875,0.914141414141414,0.8677536231884058,0.6845070422535211,0.1662049861495844,0.4850678733031674,0.6938144329896907,0.6225274725274725,0.558599695585997,0.0985221674876847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027748802446755,0.0054940042370733,0.0083001024829279,0.0113468981420343,0.0140333750266939,0.01650494333744,0.0191674398213757,0.0219638902213739,0.0243842616249361,0.026931065884929,0.0294819900599477,0.031865763546798,0.0347861842105263,0.0372090150009781,0.0396761551155115,0.042336897567023,0.0447836886772924,0.0469618415595188,0.0494862284283473,0.0518036541564728,0.0695939742947755,0.0860650166776456,0.1014925686015554,0.1157285307499133,0.1293745718952526,0.1468129405920712,0.1631824446093501,0.1783944183276254,0.1928399935976097,0.2060688502816992,0.2232859324914484,0.2391316093755065,0.2538581001096884,0.2667510861733947,0.2798985262140613,0.2933312692813782,0.3058118286758479,0.3178617552922679,0.3296177983189469,0.3401438322490653,0.3503552654381607,0.3599701007930297,0.369142978663075,0.3778320347563821,0.385988544245425,0.3936763565175636,0.4009549522523873,0.4076649294521418,0.4143030899021789,0.4207173941711724,0.4230313635751783,0.4247291847324882,0.4265702729745346,0.4280898226119165,0.4302769889531512,0.4304214559386973,0.4321863470095485,0.4325287941770862,0.4329976232409418,0.4345049637778374,0.435322635198617,0.4364840218856554,0.4377343387959725,0.4396143970449119,0.4400251913574266,0.4437422975063586,0.4447160316319195,0.4453690763562444,0.4466403162055335,0.4474487746082764,0.4481673454276194,0.448438261246143,0.4481074481074481,0.44755624515128,0.4466281310211946,0.4474449019132962,0.4450204209864907,0.4438871473354231,0.447672778561354,0.4526233359436178,0.0,2.7960838440002918,73.2042597561608,277.87645531765713,419.55753011284287,OR_public_implementation,87 +100000,95805,45567,423.63133448149887,9197,94.71321956056572,7145,73.9731746777308,2969,30.656020040707684,77.3497797498425,79.6827530448365,63.33168066437421,65.05971234168202,76.99155326132438,79.31873880111704,63.202953024699504,64.9309533801554,0.3582264885181132,364.0142437194669,0.1287276396747074,128.75896152661426,55.02464,38.32794012206655,57433.99613798862,40006.20022135228,165.20191,88.61571257761314,171848.85966285685,91910.5489765477,249.2837,116.5148696173722,255551.4325974636,118092.77653565668,5220.42763,2320.6369921378005,5413892.187255363,2387440.5336677767,1720.42405,742.8584921204756,1783459.3184071812,763434.2938364225,2939.93968,1210.4023005862014,3039386.8378477115,1239951.814780121,0.43518,100000,0,250112,2610.636188090392,0,0.0,0,0.0,12899,134.01179479150358,0,0.0,23617,241.8976045091592,2269144,0,81578,0,0,7480,0,0,27,0.2818224518553311,0,0.0,0,0.0,0,0.0,0.09197,0.2113378372167838,0.3228226595629009,0.02969,0.3126540673788003,0.6873459326211997,25.76828684624161,4.672560310368402,0.3407977606717984,0.1853044086773967,0.2450664800559832,0.2288313505948215,11.156052741996632,5.487114092942727,31.68736346803749,15670.114028921578,80.49484469937224,15.211428011345491,27.42322190303957,18.295033337201406,19.56516144778577,0.5423372988103569,0.7620845921450151,0.6977412731006161,0.5938837920489297,0.1119360365505425,0.7130902570233114,0.9338842975206612,0.8860544217687075,0.7527173913043478,0.1581920903954802,0.4901315789473684,0.6971904266389178,0.6377910124526259,0.5477505919494869,0.1002147458840372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002694653240675,0.005525870197816,0.0085249761503643,0.0113990795395665,0.0139660258366392,0.0164350084007942,0.0190456769983686,0.0214264569276155,0.0241833272006214,0.0268173350529181,0.0293080471553049,0.0320861654722056,0.0345487075081744,0.0368642715187462,0.0392907245420036,0.0418065902726831,0.0440961835063711,0.0465709662697589,0.0488633530047377,0.0510369815092453,0.0676021073496426,0.0844547612325773,0.1002599253762629,0.1156133750866942,0.1296717890343388,0.148294601509801,0.1652754059758801,0.1808439312509977,0.1956038791814414,0.2098974644986914,0.2266110698085356,0.2423757061535464,0.2571708272148801,0.2714582422387407,0.2842745706395572,0.2973757702025799,0.3102270444042596,0.321704205386675,0.3333295497111204,0.3434113145292486,0.3533592628605825,0.3629810786459003,0.3721343311860553,0.3808678973867178,0.389391287436795,0.3968745374710148,0.403536232609975,0.4107333978900158,0.4168709388739737,0.4226479499358321,0.4249425753276584,0.4267250912307862,0.4288929784824462,0.4306018242388094,0.4327710987499252,0.4331683549963766,0.4336984423079989,0.434734421782211,0.4360250800978399,0.4376971466681086,0.4390396185719151,0.4396234711008074,0.4418427403988652,0.4432136721222534,0.4446634065639978,0.4448024508768223,0.4459705110078772,0.4488880404696,0.4509866553094832,0.4518833487103373,0.4521562095132334,0.4539409665909828,0.4542292082715969,0.4581897901659881,0.45626204238921,0.4569247546346783,0.4542176230793352,0.4577421344848859,0.4538868765672889,0.4523527085804666,0.0,2.346417367847822,74.47129242843536,275.45011370728963,419.1546196926921,OR_public_implementation,88 +100000,95786,45152,419.0487127555175,9342,96.05787902198652,7211,74.56204455765979,2927,30.1505439208235,77.41775944651599,79.74632137924185,63.37436231324406,65.09536188029723,77.05708941988097,79.38168304256554,63.24237076608142,64.96474671228357,0.3606700266350202,364.6383366763075,0.1319915471626416,130.61516801366224,54.648,38.058493609811954,57051.94913661704,39732.61250058668,163.34979,87.27444114014821,169844.61194746624,90422.85285965404,252.81256,118.02528266921954,258632.6185455077,119273.23410920404,5199.99948,2332.588981426051,5380797.705301401,2387274.297001703,1764.03469,763.3738866904639,1820711.5340446413,776047.9026397016,2880.75148,1197.40371553384,2968920.7608627565,1217151.823801492,0.43197,100000,0,248400,2593.2704153007744,0,0.0,0,0.0,12751,132.37842690998684,0,0.0,23971,244.97316935669096,2274872,0,81862,0,0,7492,0,0,33,0.3340780489841939,0,0.0,0,0.0,0,0.0,0.09342,0.2162650184040558,0.3133162063797902,0.02927,0.3133029843196763,0.6866970156803237,25.91872058470036,4.610950460230749,0.3393426709194286,0.1953959228955762,0.2322840105394536,0.2329773956455415,11.21962907411663,5.646270111086766,31.219704753940817,15570.755775647833,81.37852155315049,16.300459983984933,27.59448124785477,18.84744436122091,18.636135960089888,0.5429205380668424,0.7565649396735273,0.6832856559051901,0.575595238095238,0.1253731343283582,0.6829268292682927,0.927461139896373,0.8430034129692833,0.7016706443914081,0.1559139784946236,0.4976138032305433,0.6920821114369502,0.6329930145083289,0.5337034099920698,0.1166538756715272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027845563442319,0.0058082369517399,0.0083307120171281,0.0111311978225102,0.0137985032132107,0.0164094629260149,0.0188156151258791,0.021597125826733,0.0244179153294221,0.0271321399695006,0.029633350075339,0.032058059681575,0.0345288391361108,0.0370625842916413,0.0395438281725286,0.041696791918858,0.0443039284679389,0.0465803414993209,0.0488775308795877,0.0510660892016824,0.0680167772630524,0.0845338407175863,0.1008323200134177,0.1157413729712695,0.1299411225682778,0.1479935760623798,0.164256581386726,0.1802417682894415,0.1945837512537613,0.2086306271560498,0.2258983984253154,0.2414422786013744,0.256822945514178,0.2702014962048817,0.2830922759045148,0.2962946566913099,0.3089106260526227,0.3203340113959473,0.3316404035823603,0.342040498620666,0.3512419630880244,0.3601168907071888,0.3688579841771029,0.3768544927258346,0.3846901579586877,0.3924963924963925,0.3995466953843071,0.4061457351705168,0.4130333350614339,0.4194762489600253,0.4215045357128415,0.423176131426128,0.4246315997682928,0.4265609600556554,0.4280600220757137,0.4288571912169752,0.4297592928233012,0.4312596892832404,0.4326052667672473,0.4335540125948651,0.4352850248831247,0.4356429748129329,0.4371957772299134,0.4396394776471646,0.4416088496433943,0.443151604496275,0.4446237178748415,0.4458939196283687,0.4484622222222222,0.451307847082495,0.4514563106796116,0.4517505943375837,0.4523717948717948,0.4510806414129677,0.4541694719630663,0.4567705796395518,0.4528152260111023,0.4546589018302828,0.4619275077268895,0.4637623762376238,0.0,2.820790359544056,78.07821442261233,274.32449122741104,415.00822156015965,OR_public_implementation,89 +100000,95709,45183,419.7410901796069,9139,94.06638874087076,7104,73.4936108411957,2926,30.10166233060632,77.3893283971574,79.74922235303846,63.35181630130408,65.09303345066152,77.0279528315621,79.38724073795724,63.21966960189,64.96421216645159,0.3613755655952957,361.98161508121984,0.1321466994140792,128.8212842099341,55.11308,38.336387567924746,57584.00986323125,40055.15423620009,163.08758,87.12849595378061,169692.56809704416,90329.05776585524,244.26495,114.17618666478862,251060.28691136677,116112.2646255981,5173.42828,2312.909976881063,5354590.0803477205,2365962.376107888,1750.29377,759.8232038366826,1805101.52650221,770224.3820713672,2891.40938,1204.8150763076676,2976873.919903039,1219525.4543287246,0.43285,100000,0,250514,2617.4549937832385,0,0.0,0,0.0,12688,131.81623462788244,0,0.0,23149,237.6161071581565,2272677,0,81689,0,0,7392,0,0,34,0.3552434985215601,0,0.0,0,0.0,0,0.0,0.09139,0.2111354972854337,0.3201663201663202,0.02926,0.3089464451552987,0.6910535548447013,26.01653067101697,4.66390424758596,0.3369932432432432,0.1811655405405405,0.2426801801801801,0.239161036036036,11.028430184858856,5.456788942840307,31.191368284975105,15522.213745020064,79.88177486167567,14.854958054048977,27.03817404211632,19.03769158860513,18.950951176905228,0.5313907657657657,0.7591297591297591,0.6854636591478697,0.5656268393172454,0.1136890951276102,0.6746635459332944,0.9131652661064426,0.8722316865417377,0.6870229007633588,0.1209677419354838,0.4860055607043559,0.7,0.624792473713337,0.5290964777947933,0.1116863905325443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026231301335872,0.0051182259519393,0.0077396711400545,0.0107328168313312,0.013826196575983,0.0163976141522301,0.0192911299527148,0.021764861941593,0.0244208977489858,0.0269213846452946,0.0294702326057997,0.0319181680141174,0.034453703798847,0.0370053938320912,0.0394575362244108,0.0419043485449735,0.0442695931255823,0.0464493911167354,0.048987100998867,0.0512625526063586,0.0682169409406064,0.0831083485067286,0.0986689602366292,0.1139594549125168,0.1283786632932743,0.1460933203604213,0.1623989647198591,0.1780455866540332,0.1928825546735612,0.2063847811866642,0.2235840217122055,0.2395083900423018,0.254248714240668,0.267392136490403,0.2805683343972177,0.2941156914893617,0.3065978736710444,0.318142424617601,0.3297294841801622,0.3399456490580316,0.3498147719379486,0.3590265828563402,0.3681692775863498,0.3764285457314514,0.3842421441774492,0.3922703049442416,0.4001303764620341,0.4070973496432212,0.4136472176079734,0.4195834710743801,0.4217643965645098,0.4231702608791572,0.4245479931176487,0.4266388272652138,0.428909881988318,0.4299734299887884,0.430723560974061,0.4320831138040042,0.4335729111275023,0.4353374012921752,0.4365188549460075,0.4383657060977551,0.4388996873151356,0.4396958277861769,0.4412300960252826,0.4422798853747667,0.4435105494948332,0.446356564534053,0.4478690615368264,0.4491406594287088,0.4514491415912867,0.4527271744418617,0.4527490857766087,0.4513733075435203,0.4522574447646493,0.4556134189172823,0.4566167290886392,0.4531866306829977,0.4622723330442324,0.4639258363563079,0.0,2.813459759849809,75.50246514652373,266.5137682078945,416.14695047052055,OR_public_implementation,90 +100000,95663,45066,419.8070309314991,9168,94.39386178564337,7072,73.24670980420852,2894,29.8025359856998,77.35982293729873,79.7353810268088,63.33991942654043,65.08989425624101,77.00526155229919,79.37747810534078,63.211469507647216,64.96262683663365,0.3545613849995419,357.9029214680105,0.1284499188932173,127.26741960736376,54.90804,38.190417885240215,57396.21379216625,39920.83919719161,161.46151,86.15942711559975,168117.70485976813,89405.09052247922,242.29826,113.38574857773207,248655.42581771428,114974.21351842245,5145.92672,2280.5654946136474,5334531.71027461,2339578.749052841,1719.1324,738.2874939161904,1781193.01088195,756045.4700379207,2869.4241,1185.685539272842,2958251.0897630225,1206287.860140586,0.43266,100000,0,249582,2608.91880873483,0,0.0,0,0.0,12569,130.6774824122179,0,0.0,22876,234.5525438257216,2274523,0,81644,0,0,7587,0,0,43,0.4390412176076435,0,0.0,1,0.0104533623239915,0,0.0,0.09168,0.2118984884204687,0.3156631762652705,0.02894,0.3101311576990602,0.6898688423009398,25.971531585687547,4.693652010867189,0.3262160633484163,0.1894796380090497,0.2417986425339366,0.2425056561085972,11.02142836929674,5.346546911547232,30.842319486826355,15549.350699728153,79.4204334429905,15.557099473847334,26.09107716733151,18.916332050549183,18.855924751262464,0.5336538461538461,0.7574626865671642,0.6879063719115734,0.5778425655976677,0.1058479532163742,0.6984223300970874,0.921832884097035,0.8561525129982669,0.7247956403269755,0.1471471471471471,0.4835914454277286,0.6945304437564499,0.6317919075144509,0.537833827893175,0.0958605664488017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025114432697371,0.0049259585854593,0.0075178816009739,0.0103085454286933,0.0127094517650886,0.0153900961881011,0.0181375396121827,0.0207525609109088,0.0231567549898874,0.0257999836320484,0.0281209662548404,0.0309925621954347,0.0334655785557177,0.0358209262576965,0.0380299123259412,0.0404936127992062,0.0428377692889013,0.0453861870831907,0.0477908306476764,0.050148507112709,0.0673102036125824,0.0841500188465887,0.099843617166427,0.1151980640749118,0.1286005083691055,0.1472573750370339,0.1637388415365509,0.1793326019576725,0.1935345933464466,0.2074361891677221,0.2245667729976722,0.2406346455840147,0.2551179217047767,0.2686720742613817,0.2816771109813984,0.2949727974825206,0.3072499692939849,0.3180018447279026,0.3292670471953973,0.3396600306980367,0.3499797465424454,0.3595317529997073,0.3684759051126876,0.3767398367160994,0.3851918428819549,0.3933145160296311,0.4007735830162227,0.4082019811056505,0.4152173349576216,0.4214867294067886,0.4241623407267579,0.4256099747596651,0.4277635615624955,0.4295966596108678,0.4316420224183162,0.4324361734850815,0.4335504004330727,0.4349651968321677,0.4364143920595533,0.4371520709099753,0.4384053859828284,0.4392702449150681,0.4411808305626734,0.4429775979383774,0.4443850007295365,0.4463230639375395,0.4484885161810898,0.4486427934242386,0.4492212502666951,0.4504635227730754,0.4497315311979263,0.4510335847213933,0.4488158405590786,0.4524387379628904,0.4554503285659064,0.4577826725403818,0.4591323483181389,0.4552038071591144,0.4581717451523546,0.4557210031347962,0.0,2.5951042485052755,72.91299849572883,266.79313073223744,421.7588799606394,OR_public_implementation,91 +100000,95850,45355,421.4188836724048,9152,94.04277516953574,7104,73.4585289514867,2929,30.140845070422536,77.34109898624328,79.63009013146164,63.34986309044478,65.04332986128922,76.98596139728281,79.27351528808809,63.2204214682326,64.91597632045219,0.3551375889604742,356.5748433735507,0.1294416222121768,127.35354083703498,54.69816,38.116291974946016,57066.41627543036,39766.60612931248,164.11207,87.56974061046516,170592.23787167447,90735.86918149728,244.88234,114.8491341002774,251196.48408972356,116441.04314539766,5150.64699,2303.9483090133617,5333372.884715701,2363421.209194954,1738.53972,753.449046886669,1797647.9290558165,769905.96440967,2889.00572,1200.702007038455,2976778.0490349503,1221496.8286323547,0.43364,100000,0,248628,2593.928012519562,0,0.0,0,0.0,12803,132.91601460615547,0,0.0,23214,237.85080855503392,2272451,0,81759,0,0,7703,0,0,23,0.2399582681272822,0,0.0,0,0.0,0,0.0,0.09152,0.2110506410847707,0.3200393356643357,0.02929,0.3093956953642384,0.6906043046357616,25.90516578394073,4.618816761414961,0.3360078828828828,0.1891891891891892,0.2385979729729729,0.2362049549549549,11.065741234136096,5.530358722511657,31.569789541165967,15579.307421683305,80.48924240044276,15.534932243844468,27.023480716933,18.977120877971547,18.953708561693748,0.5371621621621622,0.7522321428571429,0.6862170087976539,0.5697258641239571,0.1244837758112094,0.7014051522248244,0.9408740359897172,0.8411867364746946,0.7493670886075949,0.1538461538461538,0.4851742031134173,0.675392670157068,0.6372657111356119,0.514419329696025,0.1168154761904761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028454255480735,0.0054614909160916,0.0083275010396697,0.0108940646130728,0.0135690037200414,0.0157433037531547,0.018297217722628,0.0214333078296352,0.0237881233019426,0.0264431191628221,0.0288752087025105,0.0311887839348532,0.033801341371979,0.0363804722465147,0.0386089644513137,0.0412624365272674,0.0436657291752833,0.0462706824563039,0.0483996553263498,0.050874436895931,0.0682370361101552,0.0847354889952553,0.1001487409393723,0.1149596706435893,0.1295584503111803,0.1479376815421177,0.1647084997510355,0.1804486497980012,0.1953517654967827,0.2089830562968202,0.225323920623305,0.2408859376858771,0.2548976973755735,0.2696495332211023,0.2829634357016318,0.2962244705725905,0.3091097816866824,0.3215242296698102,0.3326256513890623,0.3429331071866512,0.3529037187977585,0.362407229649053,0.3707037449368737,0.3791539698154857,0.3869453094589334,0.3940120056322719,0.4010159287595635,0.4075065998393082,0.4146142067426228,0.4203389830508474,0.4222645639923785,0.424267955801105,0.4254081069218898,0.4269050077814786,0.4286206019246023,0.4298627178775258,0.4305930026642842,0.431807636219011,0.4336843197261268,0.4351218275949459,0.4359105941384422,0.4368044276003128,0.4385412455584161,0.4389477995722022,0.4400431414844593,0.4400988389085208,0.4400661579084816,0.44126138842551,0.4433221500463987,0.4454086781029263,0.4458852405872273,0.4472234226447709,0.4496661530559835,0.4510823182558771,0.4538059267867519,0.45916493204359,0.4654763785748143,0.4679300291545189,0.4699067533201469,0.4712871287128712,0.0,2.626470388434723,75.81536882731899,271.1405560443239,417.8099524563737,OR_public_implementation,92 +100000,95637,45176,420.7785689638947,9265,95.45468803914802,7239,75.04417746269749,2979,30.730784110752115,77.31769350596971,79.73828607686104,63.289715480586615,65.08059962018656,76.94847667488392,79.36595901899345,63.15469831163466,64.9469116180462,0.3692168310857937,372.3270578675937,0.1350171689519541,133.68800214036014,54.69992,38.05278120202111,57195.35326285852,39788.76501983657,163.6438,87.446699082912,170470.7905935987,90797.72130634933,246.64329,115.27276114970375,253401.40322260212,117067.94057552164,5239.38421,2329.5355960928555,5437658.657214258,2395401.486154054,1773.6105,765.9435290027828,1839439.118751111,785913.0809836113,2944.21202,1220.5815177708778,3040935.74662526,1244993.6248084602,0.43254,100000,0,248636,2599.788784675387,0,0.0,0,0.0,12811,133.2956909982538,0,0.0,23452,240.79592626284807,2269632,0,81550,0,0,7435,0,0,35,0.3555109424176835,0,0.0,0,0.0,0,0.0,0.09265,0.2141998427891062,0.3215326497571505,0.02979,0.3053598774885145,0.6946401225114854,25.656403676957883,4.612243949131983,0.3373394115209283,0.197679237463738,0.2432656444260257,0.2217157065893079,11.050352391291318,5.388373810039043,31.702954596121405,15537.180592293842,81.564712183295,16.584648524746978,27.746301879494425,17.932908754460943,19.300853024592666,0.5388865865451029,0.7456324248777079,0.6965601965601965,0.5862928348909657,0.1090289608177172,0.6987811955890888,0.893719806763285,0.8679549114331723,0.7259036144578314,0.1516853932584269,0.4889412617839014,0.6853490658800393,0.6381109280615047,0.5498821681068342,0.098220640569395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026339249533997,0.0054354439621952,0.0083147208121827,0.010813118019492,0.0134097083032344,0.0162387938060309,0.0188419398934976,0.0209850938403539,0.0236201938329597,0.0261587978433342,0.0287840681619873,0.0313913794521674,0.0339611372553057,0.0364139012388978,0.0390345711156572,0.0414329766758418,0.043618455158113,0.0458483079543802,0.0482137096354573,0.0506288193213339,0.0672268029386253,0.0845679917852427,0.0992794571770686,0.1142041624536568,0.1284943340831564,0.1462298624130151,0.1633490270264525,0.1785230749549588,0.1926755681088715,0.2065616741507853,0.2230194094101654,0.2385055602523249,0.2532388994824298,0.2668945569287405,0.2801402410116757,0.2934622171418424,0.3055866171668828,0.3171910922778704,0.3291857003249926,0.3391568683682248,0.349293390681336,0.3588956336278623,0.3683698643135022,0.3776643037366334,0.3865281060403012,0.394221266923609,0.4024029296679041,0.4092856596363265,0.4155496674979219,0.4222016161080938,0.4242370979299901,0.4259054617786004,0.4276534612826065,0.4295668331204273,0.4313075671398928,0.4325236583335902,0.4329952800102054,0.4341533530490525,0.4359785449044148,0.4370388985621712,0.4381969559975889,0.4389696090318221,0.4394356720842707,0.4402095700665587,0.4414833103381502,0.4438338154088877,0.4437093712247598,0.444229488439948,0.4442393696315752,0.4450038261710097,0.4469605568445475,0.4485859789793043,0.4518161362905818,0.4514099277557679,0.4524795377948964,0.454633555420957,0.4546310832025118,0.4545641025641025,0.4510899944102851,0.455859375,0.0,2.514291796290677,76.48115219689234,275.5040848187663,424.6033578367331,OR_public_implementation,93 +100000,95696,45137,419.78766092626654,9044,93.03419160675472,7016,72.60491556595888,2892,29.698211001504767,77.34880342590687,79.70757512061806,63.338894218876014,65.07758454800585,76.9897077334099,79.3487454710001,63.20762753396803,64.95007581845682,0.3590956924969646,358.8296496179595,0.1312666849079846,127.50872954902091,55.45892,38.55657837820569,57952.30730647049,40289.82342598175,161.98676,86.98455582440566,168482.14136432036,90108.19120337158,243.77197,113.74985659446394,251119.17948503597,115943.79475469924,5139.88116,2298.5131819834096,5319947.84525999,2351150.79757617,1727.79726,750.0536494578448,1785810.786239759,764224.8539778921,2857.89744,1195.937707220524,2937757.3984283563,1206284.2095065257,0.43219,100000,0,252086,2634.195786657749,0,0.0,0,0.0,12642,131.29075405450592,0,0.0,23101,237.77378364821936,2269682,0,81569,0,0,7508,0,0,33,0.3343922420999833,0,0.0,1,0.0104497575656244,0,0.0,0.09044,0.2092598162845045,0.3197700132684652,0.02892,0.3103013756169274,0.6896986243830726,25.844182870481564,4.636027303222895,0.330957810718358,0.1857183580387685,0.2424458380843785,0.2408779931584948,11.019450243594504,5.40229775510805,31.13872958807249,15489.276578240717,79.54597608781062,15.217082767804866,26.20645830249547,19.21833875468755,18.904096262822733,0.5409064994298746,0.7659247889485802,0.6933677863910422,0.578698224852071,0.1228689006466784,0.6918013165769,0.8932291666666666,0.8528864059590316,0.7199017199017199,0.1807580174927113,0.493732460243218,0.7127312295973884,0.6453781512605042,0.5339049103663289,0.1082474226804123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024910635626259,0.0051088675343632,0.0078027497336512,0.0103719054439805,0.0130348137302749,0.0154527408764696,0.0181128767570102,0.0208635296519342,0.0234019723059629,0.0258123944526892,0.0283708297032747,0.0310880297229891,0.0335478697154137,0.0363525923485566,0.03873450104186,0.0413622790068093,0.0437254089873679,0.0460365221000207,0.0484107426931594,0.0507231275788771,0.06776740397268,0.0841784671418254,0.0992361606580769,0.1136012120829519,0.1276779780804,0.1458174663620208,0.1629101404983233,0.1787284787955578,0.1938899811933664,0.2078692675808493,0.2249267304542712,0.2405515390276635,0.2549772623425226,0.2685397929932821,0.2814887386891526,0.2950058200764924,0.3075272662256392,0.3188836706422948,0.3306033895224681,0.3417628649708252,0.3511688251511711,0.3601100573703313,0.3687291168037157,0.3775850487020776,0.3846986296372855,0.3920869522305567,0.3996243425995492,0.4070201357667766,0.4137108792846498,0.4195372682707681,0.4216017058950551,0.4229208645008143,0.4241014619800356,0.4255782549984754,0.4263882041859006,0.4265541508184604,0.4268236343650933,0.4285478329809725,0.4292939719240297,0.4307260357798495,0.4320172127434697,0.4321341779211983,0.4332494767773714,0.4343205968799457,0.4338492990654206,0.4357689264046426,0.4383173243837518,0.4389854331714797,0.4416167664670659,0.442703706694662,0.4454008281766156,0.4457666903215241,0.4490737731556711,0.4502914762880101,0.4532996403926523,0.4503554792841382,0.4518187619655393,0.4545454545454545,0.4529496402877698,0.4572,0.0,2.566311590128295,74.15254179789022,277.5120971366404,403.0490215228922,OR_public_implementation,94 +100000,95625,45125,420.3503267973856,9072,93.41699346405228,7038,72.88888888888889,2805,28.81045751633987,77.26744378178137,79.68076795098376,63.28338998351626,65.06863367089089,76.92620536758605,79.34215634148552,63.15815487104199,64.94785974541034,0.3412384141953168,338.6116094982441,0.1252351124742716,120.77392548054888,54.07446,37.61610079427534,56548.45490196078,39337.09886983042,161.93205,86.68705561472166,168599.4248366013,89916.36905001875,244.23753,114.12200999157662,251172.28758169932,116095.94256478928,5066.49765,2256.5657976038906,5247941.856209151,2309838.66522456,1726.51027,753.199268515332,1783509.0300653593,766076.3076527165,2767.33042,1143.0801805068572,2845677.406535948,1154821.3051071602,0.4328,100000,0,245793,2570.3843137254903,0,0.0,0,0.0,12638,131.37777777777777,0,0.0,23183,238.2640522875817,2273797,0,81696,0,0,7394,0,0,27,0.2823529411764706,0,0.0,0,0.0,0,0.0,0.09072,0.2096118299445471,0.3091931216931217,0.02805,0.3114428899561495,0.6885571100438505,25.82464458515704,4.604349709010718,0.3405797101449275,0.191389599317988,0.2313157146916737,0.2367149758454106,11.07451082445765,5.4882364498274585,29.875517305291552,15545.677516773898,79.3689436922704,15.871764785137376,26.998357314931532,18.47733880052224,18.02148279167925,0.5498721227621484,0.7609502598366741,0.7017104714226116,0.5768307322929171,0.124078624078624,0.70817843866171,0.9175531914893617,0.8555555555555555,0.7423822714681441,0.201780415430267,0.5027654867256637,0.7003089598352215,0.6569736133548735,0.5310344827586206,0.1037955073586367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026951993028958,0.005191644696816,0.0080510883690708,0.0107206731160068,0.0133266869449333,0.0160712103312013,0.0186593796520994,0.0211538657872974,0.0236198734138385,0.0264001392714872,0.0286959643095225,0.0313620347827873,0.0337835752569259,0.0363321621036795,0.038800578034682,0.041208762806662,0.0437070179799486,0.0458664175618869,0.0481926457585686,0.0504295425163684,0.0678400100333399,0.083952194907354,0.0990684436602707,0.1145008424599831,0.12841547362642,0.1458481154754466,0.1624409156089011,0.1782216206422458,0.1928368172190248,0.2068695157184744,0.2243889811678926,0.2399592628305832,0.2541444883475383,0.267936299458217,0.2812527530614043,0.2938249440343994,0.3067673034623672,0.3188183905975593,0.3290313785190066,0.3395161567844729,0.3496036712557363,0.3589788629310849,0.3680972869181808,0.3771828685354663,0.3854227547243327,0.3927026425728623,0.4005595563696585,0.4079675584687189,0.4143667935114355,0.4205561664524847,0.4234582764078077,0.4245552929468839,0.427220743927985,0.4292129279776783,0.4307719917446834,0.4322662186531851,0.4334114944728908,0.4345642296571664,0.4355582315499742,0.4370512981988952,0.4377505483700174,0.4394960503949605,0.4405216284987277,0.442296823782073,0.4430885397637316,0.4448177345114015,0.4475051975051975,0.4492906105531644,0.4515127729413443,0.4515828677839851,0.4528944911297852,0.4537998906506287,0.4560514519586825,0.4594339622641509,0.4592183105421394,0.4640707529787495,0.463685379004123,0.4667508417508417,0.4758701374670956,0.4686591946865919,0.0,2.601765394569544,71.33698501463758,280.3751117503954,408.8784843701943,OR_public_implementation,95 +100000,95832,44882,416.8753652224727,9209,94.5821854912764,7128,73.72276483846733,3007,30.876951331496787,77.40182060844235,79.71468840949538,63.36325590393732,65.07542545153245,77.03932563908722,79.35191807701025,63.23095361142593,64.9463345121749,0.3624949693551258,362.7703324851268,0.1323022925113903,129.09093935755322,55.57156,38.58973056788387,57988.52157943066,40268.105192298885,161.86382,86.32159989157329,168229.80841472576,89403.93557019751,242.24719,113.20156926181686,248715.5021287253,114988.24845106166,5224.96757,2327.0306453259445,5406163.598797896,2382423.1577975154,1798.16505,774.8665462969514,1860054.2303197265,792250.1704339104,2974.87782,1232.3932884125977,3057803.8859671094,1247559.2481567028,0.43104,100000,0,252598,2635.8418899741214,0,0.0,0,0.0,12666,131.46965522998582,0,0.0,22932,235.3597963102096,2272637,0,81782,0,0,7565,0,0,35,0.3547875448701895,0,0.0,0,0.0,0,0.0,0.09209,0.2136460653303637,0.3265283961342165,0.03007,0.3184667557291131,0.6815332442708869,25.88853159440048,4.652403376858564,0.3273007856341189,0.1865881032547699,0.2478956228956229,0.2382154882154882,10.912661535210557,5.352204062987816,32.0995131294631,15470.232394231278,80.39974932768736,15.466041931967348,26.26382156350153,19.06940603678115,19.600479795437334,0.5359147025813692,0.7601503759398496,0.6862408915559366,0.588339222614841,0.1182795698924731,0.6804062126642771,0.9088471849865952,0.8450450450450451,0.7493403693931399,0.1280653950953678,0.4915658232489915,0.7021943573667712,0.6366704161979753,0.5420773313115997,0.1157142857142857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029162194455132,0.0055843273976628,0.0079738668181633,0.0108067481235463,0.0136639521761673,0.0162771285475793,0.0189369617285838,0.0212390283731373,0.0236318662223766,0.0262837374492083,0.0289477730510993,0.0313465466451804,0.033828094484304,0.0362224830625399,0.0384206780605035,0.0407121526809055,0.0431245083019336,0.0454606729921708,0.0479984211729023,0.0504251532529167,0.0663537755527743,0.0824943808478385,0.0983274998428101,0.1134233969241112,0.1269959974720876,0.1458056066079388,0.1627433947072907,0.1782115065697155,0.1932887911712596,0.207226411860485,0.2229022577418279,0.2382882152698978,0.2529934589390877,0.2665530166431717,0.2790618402533427,0.292738024051558,0.3052307417655985,0.3171387432788139,0.3287330753254417,0.3389987745238395,0.348949171373021,0.3590640538169055,0.3680316321577819,0.3765280293669549,0.3843693370468117,0.3922493057698241,0.3998194719554697,0.4066407494742209,0.4129439088632559,0.4199034583085366,0.4212892338845764,0.4234012891827354,0.4249950552400328,0.4267580530640043,0.4279540408029447,0.4290197526306073,0.4299236398345529,0.4313427911580336,0.4322578428340721,0.4336704449514092,0.4343527724845763,0.4354694129599012,0.4361162751394287,0.4374957652957517,0.4379170609788648,0.4396694649859207,0.4405584340817501,0.440439169892746,0.4430738692754856,0.4450743868114193,0.4453078025993247,0.4464797103798563,0.4491964914527178,0.4522888957624497,0.4527854227958622,0.4533221194280908,0.4452588895820337,0.4443982540012471,0.4426321709786276,0.4482079558881449,0.0,2.531266961875435,74.35857278682568,277.6226451897853,414.35033584766535,OR_public_implementation,96 +100000,95695,44944,418.349966037933,9102,93.81890380897644,7104,73.60886148701604,2914,30.116516014420817,77.32145341825886,79.70829872845091,63.3143933609397,65.07993594407466,76.97125955246051,79.35371537091076,63.18678289649376,64.95325734783684,0.3501938657983459,354.58335754015025,0.1276104644459366,126.67859623782364,55.7414,38.76426023248237,58249.02032499086,40508.1354642169,163.72864,87.60696166321564,170482.59574690423,90937.25478863242,246.58689,115.04921456693384,253773.0602434819,117297.97143295027,5131.61455,2292.212043791624,5321040.461884111,2354002.41299254,1736.04649,747.2079184553058,1797021.0773812635,763697.9449869969,2866.61606,1186.9403966492291,2963326.213490778,1211863.8056404355,0.43019,100000,0,253370,2647.682742045039,0,0.0,0,0.0,12752,132.60880923768224,0,0.0,23305,239.5631955692565,2268603,0,81513,0,0,7570,0,0,33,0.344845603218559,0,0.0,0,0.0,0,0.0,0.09102,0.2115809293567958,0.3201494177103933,0.02914,0.307445043550394,0.692554956449606,25.94304377841701,4.611514381236258,0.3337556306306306,0.1935529279279279,0.236768018018018,0.2359234234234234,11.092645459390226,5.607363589703676,31.10704370671984,15489.322375893858,80.13607907834844,15.740183337229846,26.97617218357,18.78458784674192,18.635135710806697,0.5437781531531531,0.7432727272727273,0.6895824546604808,0.5936754176610979,0.1254458977407847,0.684395090590298,0.8849104859335039,0.8496503496503497,0.7480106100795756,0.1536388140161725,0.4991655850176154,0.6869918699186992,0.6386881600889383,0.5488837567359507,0.1174675819984744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023202561400664,0.005212453098063,0.0078873639759623,0.0104673732990518,0.0131043464105485,0.0156466465650721,0.0183974627002661,0.0210434960179701,0.0234412537441601,0.0259995496141011,0.0284809153261772,0.0311668840304377,0.0339570624723539,0.0361687876758205,0.038594137076796,0.0410975899752897,0.0436066083173649,0.0460677888706697,0.0482539154308533,0.0503694594115746,0.0678483022257501,0.0843801030021354,0.0999569693852919,0.1149219646183475,0.1290094538701781,0.1464651276025954,0.1630027492649166,0.1787194154177185,0.1934011671405057,0.2076932978632112,0.2235078646843352,0.2387700968981757,0.2538294168842471,0.2671926119639789,0.2800902239093359,0.2934641753519332,0.3056965909724934,0.3173732148881142,0.3285346402114601,0.3382100222257865,0.3484399592630312,0.3577019832680044,0.3663290089449677,0.3754619630429565,0.3831115112289837,0.3900387300490909,0.398310501710805,0.4060509554140127,0.4124476811237382,0.4188999894280579,0.4210661233961602,0.4227334123549356,0.4247772616240486,0.4268465909090909,0.4287398871540735,0.4290488511057722,0.429848035936156,0.4316706045635543,0.4327434084928538,0.4341347538151454,0.4358901676209913,0.4375797957229492,0.4385040320020318,0.4396946219020434,0.4411865150997707,0.4426598817948106,0.4446218145933708,0.4470087385166928,0.4497910191833673,0.4534254322184521,0.4548530638731807,0.4568651935501384,0.4569781002980432,0.4571563088512241,0.4588803088803089,0.460124954061007,0.4593528018942384,0.4625366262034324,0.4631251766035603,0.4621420164770498,0.0,2.4416276399996444,76.12261017716727,266.8405272054199,418.3350083354502,OR_public_implementation,97 +100000,95689,45146,419.0972839093313,9178,94.1801042962096,7188,74.36591457743314,2935,30.25426120034696,77.3455376358958,79.7318687438035,63.32130932583449,65.08698211911849,76.9836228962892,79.36699608728317,63.18840531140864,64.95566071090376,0.3619147396065898,364.8726565203333,0.1329040144258542,131.32140821473115,54.33802,37.79690439531262,56786.06736406483,39499.73810502004,163.86211,87.56704027245901,170497.80016511824,90766.63421006515,250.25965,117.4021392890292,256445.47440144635,118816.94397631656,5224.5326,2347.441008500737,5412059.829238471,2405443.060303062,1760.43665,770.5913476179106,1819900.594634702,785670.2549789399,2907.41784,1215.672496432279,2999598.0729237427,1238557.3559284378,0.43269,100000,0,246991,2581.184880184765,0,0.0,0,0.0,12729,132.2409054332264,0,0.0,23706,242.59841779096868,2275572,0,81707,0,0,7348,0,0,40,0.4180208801429632,0,0.0,0,0.0,0,0.0,0.09178,0.2121149090572927,0.3197864458487688,0.02935,0.3103448275862069,0.6896551724137931,25.89561175930248,4.613658082414995,0.3347245409015025,0.1889259877573734,0.239844184752365,0.236505286588759,10.904421466983552,5.279275497681746,31.45954647447885,15590.7351619445,81.24868665198741,15.7841943451329,27.299881863306886,18.94586801905983,19.218742424487782,0.5393711741791876,0.7533136966126657,0.6870324189526185,0.5935294117647059,0.111368909512761,0.6981566820276498,0.9251870324189526,0.8591065292096219,0.7526595744680851,0.1538461538461538,0.4888114453411592,0.6812957157784744,0.6321271929824561,0.5483383685800605,0.0994803266518188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028470399902734,0.0057609412242,0.0083862124980963,0.0109250188011951,0.0137136811263937,0.016591973925443,0.018967591931635,0.0214556335079603,0.0239181119109947,0.0265332664284031,0.0293526419428946,0.0319535743631881,0.0345622119815668,0.0367664485547941,0.0395459236326109,0.0419531258076855,0.0445636860860197,0.0470462470939887,0.0494478068259811,0.0517821606809823,0.06911532797928,0.0863754343366684,0.1023372479875738,0.1172614788939859,0.1309319128737935,0.1480098581567785,0.1644046393667031,0.1796830063270914,0.1944361288115297,0.2083718034054065,0.2252579598261938,0.240174625184158,0.2548692991910812,0.2691693115902375,0.2821611027922135,0.2958833048837261,0.3083691586176093,0.320230094672025,0.3312407764786014,0.3411270090385254,0.3514802764880917,0.3602929991458092,0.3688435309717749,0.3774109636662231,0.3853985687730084,0.3934852537004399,0.4012095259559762,0.4082209213540341,0.4148356272577784,0.4209477822633842,0.4230660434542491,0.4248241883764777,0.4265684946964568,0.4292415949960907,0.4305493523894595,0.4310657248157248,0.4312858052196053,0.4329567820578555,0.4340857049394832,0.4350498368810944,0.4361282741366893,0.4372959439158738,0.438523458573158,0.4396766450794801,0.4410201394645731,0.442037037037037,0.4432560559634618,0.4431495258469299,0.4442344719389574,0.4460707229547195,0.4473611239486089,0.449512103078333,0.4515345268542199,0.454215003866976,0.4556633682390239,0.4513252717723219,0.4555887439081905,0.4537481728962205,0.461000838691641,0.466218885815883,0.0,2.888492635850713,76.56423674362063,278.77058821441625,413.3172002529333,OR_public_implementation,98 +100000,95595,45005,418.641142319159,9295,95.73722475024844,7222,74.8051676342905,3025,31.120874522726083,77.23812690061078,79.66763163081325,63.25655152000609,65.0537857616903,76.87655491380536,79.30615018340191,63.12513394512228,64.92546276609738,0.3615719868054157,361.4814474113359,0.1314175748838124,128.32299559292437,55.24046,38.4718791779725,57785.93022647628,40244.65628743398,166.4247,89.10167610146279,173354.80935195356,92469.11379196764,249.13822,116.03806232412136,255697.5887860244,117603.92413275312,5290.79776,2354.5352960328464,5483707.296406715,2412681.792748408,1800.75119,767.0801711831385,1868527.9983262725,787426.7411371198,2986.26532,1227.840319841776,3075732.287253517,1245445.0228469812,0.43073,100000,0,251093,2626.6331921125584,0,0.0,0,0.0,13005,135.27904179088864,0,0.0,23598,242.06286939693496,2262505,0,81376,0,0,7447,0,0,39,0.3870495318792823,0,0.0,1,0.0104607981588995,0,0.0,0.09295,0.21579643860423,0.3254437869822485,0.03025,0.2990235964198535,0.7009764035801465,26.150838215668145,4.614681366426274,0.3231791747438383,0.190944336748823,0.2432844087510385,0.2425920797563002,10.966509900360192,5.470717001732495,32.17288537168815,15518.374098267332,81.58489996382842,15.98734484889659,26.484922256236985,19.53956158355967,19.573071275135163,0.5409858764885074,0.7577955039883973,0.6988003427592117,0.5873287671232876,0.1149686966420034,0.6814683244523386,0.8997555012224939,0.8700361010830325,0.6683804627249358,0.1216617210682492,0.4981022953189951,0.6979381443298969,0.645505617977528,0.5641966250917094,0.1133802816901408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025640505918598,0.0053959206028825,0.0082446592478271,0.010957177561164,0.0137090864680019,0.0163106044398259,0.0185935029833239,0.0212989825522003,0.0239653867397663,0.0266200977128634,0.029056882541246,0.0317088458021228,0.0343241184825343,0.0368442213127429,0.039035472711313,0.0411712970148481,0.0433326767776245,0.0456769475291648,0.0481767173625641,0.0510552176679846,0.0682153199586003,0.0846965616256038,0.1001775564450888,0.1153639552152344,0.1294434470377019,0.1473544833430432,0.1648764940239044,0.1805980491445019,0.1949854464515024,0.2080575848732273,0.2237499595281522,0.2394920621150342,0.2544196185286103,0.2675340048445258,0.2813140778304487,0.294824122276365,0.3067722843173452,0.3180685112286678,0.3287906537590863,0.3392073520964963,0.3487705203520096,0.3575947509888846,0.3661784445790718,0.3749699099706321,0.3830654511282783,0.3908807289474336,0.3986771954531737,0.4061305131779179,0.412355292800125,0.4186719403262413,0.4209599176129434,0.4231600532032809,0.4250545959896764,0.4270070335367185,0.428582119710826,0.4297433837502124,0.4305082577901418,0.4313823080496383,0.4332088778261771,0.4353210926357219,0.4362564899382271,0.4380342308077269,0.4399328573856875,0.4399101205202115,0.4417775607373947,0.4420810044767026,0.4431775321321844,0.4456970822790891,0.4483597467177047,0.4488544691836076,0.4507357049729931,0.4520987385819922,0.4528569585966722,0.454978524014057,0.4551664421781797,0.4576332648374229,0.4655012376237624,0.4655737704918032,0.4655269058295964,0.4760046820132657,0.0,2.804728963238396,74.83186987184962,284.08073983316854,418.772462343052,OR_public_implementation,99 diff --git a/crcsim/experiment/summary/summarized.xlsx b/crcsim/experiment/summary/summarized.xlsx index 3a22a2f..fc93c8e 100644 Binary files a/crcsim/experiment/summary/summarized.xlsx and b/crcsim/experiment/summary/summarized.xlsx differ diff --git a/crcsim/experiment/summary/~$summarized.xlsx b/crcsim/experiment/summary/~$summarized.xlsx new file mode 100644 index 0000000..8798bc1 Binary files /dev/null and b/crcsim/experiment/summary/~$summarized.xlsx differ